diff --git a/.github/CONTRIBUTOR_AGREEMENT.md b/.github/CONTRIBUTOR_AGREEMENT.md index 668b9dba2..c915d48bf 100644 --- a/.github/CONTRIBUTOR_AGREEMENT.md +++ b/.github/CONTRIBUTOR_AGREEMENT.md @@ -87,7 +87,7 @@ U.S. Federal law. Any choice of law rules will not apply. 7. Please place an “x” on one of the applicable statement below. Please do NOT mark both statements: - * [ ] I am signing on behalf of myself as an individual and no other person + * [x] I am signing on behalf of myself as an individual and no other person or entity, including my employer, has or will have rights with respect my contributions. @@ -98,9 +98,9 @@ mark both statements: | Field | Entry | |------------------------------- | -------------------- | -| Name | | +| Name | Shuvanon Razik | | Company name (if applicable) | | | Title or role (if applicable) | | -| Date | | -| GitHub username | | +| Date | 3/12/2017 | +| GitHub username | shuvanon | | Website (optional) | | diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a55f98646..e97a7ea16 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,27 +1,19 @@ ## Description - + + -## Motivation and Context - - - -## How Has This Been Tested? - - - ## Types of changes -- [ ] Bug fix (non-breaking change fixing an issue) -- [ ] New feature (non-breaking change adding functionality to spaCy) -- [ ] Breaking change (fix or feature causing change to spaCy's existing functionality) -- [ ] Documentation (Addition to documentation of spaCy) +- [ ] **Bug fix** (non-breaking change fixing an issue) +- [ ] **New feature** (non-breaking change adding functionality to spaCy) +- [ ] **Breaking change** (fix or feature causing change to spaCy's existing functionality) +- [ ] **Documentation** (addition to documentation of spaCy) ## Checklist: -- [ ] My code follows spaCy's code style. - [ ] My change requires a change to spaCy's documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. diff --git a/.github/contributors/wallinm1.md b/.github/contributors/wallinm1.md new file mode 100644 index 000000000..9c6d0bb88 --- /dev/null +++ b/.github/contributors/wallinm1.md @@ -0,0 +1,106 @@ +# spaCy contributor agreement + +This spaCy Contributor Agreement (**"SCA"**) is based on the +[Oracle Contributor Agreement](http://www.oracle.com/technetwork/oca-405177.pdf). +The SCA applies to any contribution that you make to any product or project +managed by us (the **"project"**), and sets out the intellectual property rights +you grant to us in the contributed materials. The term **"us"** shall mean +[ExplosionAI UG (haftungsbeschränkt)](https://explosion.ai/legal). The term +**"you"** shall mean the person or entity identified below. + +If you agree to be bound by these terms, fill in the information requested +below and include the filled-in version with your first pull request, under the +folder [`.github/contributors/`](/.github/contributors/). The name of the file +should be your GitHub username, with the extension `.md`. For example, the user +example_user would create the file `.github/contributors/example_user.md`. + +Read this agreement carefully before signing. These terms and conditions +constitute a binding legal agreement. + +## Contributor Agreement + +1. The term "contribution" or "contributed materials" means any source code, +object code, patch, tool, sample, graphic, specification, manual, +documentation, or any other material posted or submitted by you to the project. + +2. With respect to any worldwide copyrights, or copyright applications and +registrations, in your contribution: + + * you hereby assign to us joint ownership, and to the extent that such + assignment is or becomes invalid, ineffective or unenforceable, you hereby + grant to us a perpetual, irrevocable, non-exclusive, worldwide, no-charge, + royalty-free, unrestricted license to exercise all rights under those + copyrights. This includes, at our option, the right to sublicense these same + rights to third parties through multiple levels of sublicensees or other + licensing arrangements; + + * you agree that each of us can do all things in relation to your + contribution as if each of us were the sole owners, and if one of us makes + a derivative work of your contribution, the one who makes the derivative + work (or has it made will be the sole owner of that derivative work; + + * you agree that you will not assert any moral rights in your contribution + against us, our licensees or transferees; + + * you agree that we may register a copyright in your contribution and + exercise all ownership rights associated with it; and + + * you agree that neither of us has any duty to consult with, obtain the + consent of, pay or render an accounting to the other for any use or + distribution of your contribution. + +3. With respect to any patents you own, or that you can license without payment +to any third party, you hereby grant to us a perpetual, irrevocable, +non-exclusive, worldwide, no-charge, royalty-free license to: + + * make, have made, use, sell, offer to sell, import, and otherwise transfer + your contribution in whole or in part, alone or in combination with or + included in any product, work or materials arising out of the project to + which your contribution was submitted, and + + * at our option, to sublicense these same rights to third parties through + multiple levels of sublicensees or other licensing arrangements. + +4. Except as set out above, you keep all right, title, and interest in your +contribution. The rights that you grant to us under these terms are effective +on the date you first submitted a contribution to us, even if your submission +took place before the date you sign these terms. + +5. You covenant, represent, warrant and agree that: + + * Each contribution that you submit is and shall be an original work of + authorship and you can legally grant the rights set out in this SCA; + + * to the best of your knowledge, each contribution will not violate any + third party's copyrights, trademarks, patents, or other intellectual + property rights; and + + * each contribution shall be in compliance with U.S. export control laws and + other applicable export and import laws. You agree to notify us if you + become aware of any circumstance which would make any of the foregoing + representations inaccurate in any respect. We may publicly disclose your + participation in the project, including the fact that you have signed the SCA. + +6. This SCA is governed by the laws of the State of California and applicable +U.S. Federal law. Any choice of law rules will not apply. + +7. Please place an “x” on one of the applicable statement below. Please do NOT +mark both statements: + + * [x] I am signing on behalf of myself as an individual and no other person + or entity, including my employer, has or will have rights with respect my + contributions. + + * [ ] I am signing on behalf of my employer or a legal entity and I have the + actual authority to contractually bind that entity. + +## Contributor Details + +| Field | Entry | +|------------------------------- | -------------------------------- | +| Name | Michael Wallin | +| Company name (if applicable) | | +| Title or role (if applicable) | | +| Date | 2017-02-04 | +| GitHub username | wallinm1 | +| Website (optional) | | diff --git a/.gitignore b/.gitignore index da7dde60c..8716a8ef0 100644 --- a/.gitignore +++ b/.gitignore @@ -102,6 +102,10 @@ coverage.xml # Website website/_deploy.sh website/package.json -website/blog/announcement.jade +website/announcement.jade website/www/ website/.gitignore + +# Python virtualenv +venv +venv/* diff --git a/.travis.yml b/.travis.yml index 4bcc4a542..55c080d1d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ group: edge python: - "2.7" - - "3.5" + - "3.6" os: - linux @@ -14,7 +14,8 @@ os: env: - VIA=compile LC_ALL=en_US.ascii - VIA=compile - - VIA=sdist + +# - VIA=sdist install: - "./travis.sh" @@ -22,8 +23,8 @@ install: script: - "pip install pytest" - if [[ "${VIA}" == "compile" ]]; then python -m pytest spacy; fi - - if [[ "${VIA}" == "pypi" ]]; then python -m pytest `python -c "import pathlib; import spacy; print(pathlib.Path(spacy.__file__).parent.resolve())"`; fi - - if [[ "${VIA}" == "sdist" ]]; then python -m pytest `python -c "import pathlib; import spacy; print(pathlib.Path(spacy.__file__).parent.resolve())"`; fi + - if [[ "${VIA}" == "pypi" ]]; then python -m pytest `python -c "import os.path; import spacy; print(os.path.abspath(ospath.dirname(spacy.__file__)))"`; fi + - if [[ "${VIA}" == "sdist" ]]; then python -m pytest `python -c "import os.path; import spacy; print(os.path.abspath(os.path.dirname(spacy.__file__)))"`; fi notifications: slack: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2f699ecd2..09e400e1f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -7,10 +7,11 @@ Following the v1.0 release, it's time to welcome more contributors into the spaC ## Table of contents 1. [Issues and bug reports](#issues-and-bug-reports) 2. [Contributing to the code base](#contributing-to-the-code-base) -3. [Updating the website](#updating-the-website) -4. [Submitting a tutorial](#submitting-a-tutorial) -5. [Submitting a project to the showcase](#submitting-a-project-to-the-showcase) -6. [Code of conduct](#code-of-conduct) +3. [Adding tests](#adding-tests) +4. [Updating the website](#updating-the-website) +5. [Submitting a tutorial](#submitting-a-tutorial) +6. [Submitting a project to the showcase](#submitting-a-project-to-the-showcase) +7. [Code of conduct](#code-of-conduct) ## Issues and bug reports @@ -18,13 +19,13 @@ First, [do a quick search](https://github.com/issues?q=+is%3Aissue+user%3Aexplos If you're looking for help with your code, consider posting a question on [StackOverflow](http://stackoverflow.com/questions/tagged/spacy) instead. If you tag it `spacy` and `python`, more people will see it and hopefully be able to help. -When opening an issue, use a descriptive title and include your environment (operating system, Python version, spaCy version). Our [issue template](https://github.com/explosion/spaCy/issues/new) helps you remember the most important details to include. +When opening an issue, use a descriptive title and include your environment (operating system, Python version, spaCy version). Our [issue template](https://github.com/explosion/spaCy/issues/new) helps you remember the most important details to include. **Pro tip:** If you need to share long blocks of code or logs, you can wrap them in `
` and `
`. This [collapses the content](https://developer.mozilla.org/en/docs/Web/HTML/Element/details) so it only becomes visible on click, making the issue easier to read and follow. If you've discovered a bug, you can also submit a [regression test](#fixing-bugs) straight away. When you're opening an issue to report the bug, simply refer to your pull request in the issue body. ### Issue labels -We use the following system to tag our issues: +To distinguish issues that are opened by us, the maintainers, we usually add a 💫 to the title. We also use the following system to tag our issues: | Issue label | Description | | --- | --- | @@ -33,23 +34,23 @@ We use the following system to tag our issues: | [`install`](https://github.com/explosion/spaCy/labels/install) | Installation problems | | [`performance`](https://github.com/explosion/spaCy/labels/performance) | Accuracy, speed and memory use problems | | [`tests`](https://github.com/explosion/spaCy/labels/tests) | Missing or incorrect [tests](spacy/tests) | +| [`examples`](https://github.com/explosion/spaCy/labels/examples) | Issues related to the [examples](spacy/examples) | | [`english`](https://github.com/explosion/spaCy/labels/english), [`german`](https://github.com/explosion/spaCy/labels/german) | Issues related to the specific languages, models and data | | [`linux`](https://github.com/explosion/spaCy/labels/linux), [`osx`](https://github.com/explosion/spaCy/labels/osx), [`windows`](https://github.com/explosion/spaCy/labels/windows) | Issues related to the specific operating systems | | [`pip`](https://github.com/explosion/spaCy/labels/pip), [`conda`](https://github.com/explosion/spaCy/labels/conda) | Issues related to the specific package managers | | [`duplicate`](https://github.com/explosion/spaCy/labels/duplicate) | Duplicates, i.e. issues that have been reported before | +| [`meta`](https://github.com/explosion/spaCy/labels/meta) | Meta topics, e.g. repo organisation and issue management | | [`help wanted`](https://github.com/explosion/spaCy/labels/help%20wanted) | Requests for contributions | - +| [`help wanted (easy)`](https://github.com/explosion/spaCy/labels/help%20wanted%20%28easy%29) | Requests for contributions suitable for beginners | ## Contributing to the code base -Coming soon. - +You don't have to be an NLP expert or Python pro to contribute, and we're happy to help you get started. If you're new to spaCy, a good place to start is the [`help wanted (easy)`](https://github.com/explosion/spaCy/issues?q=is%3Aissue+is%3Aopen+label%3A%22help+wanted+%28easy%29%22) label, which we use to tag bugs and feature requests that are easy and self-contained. If you've decided to take on one of these problems and you're making good progress, don't forget to add a quick comment to the issue. You can also use the issue to ask questions, or share your work in progress. ### Conventions for Python Coming soon. - ### Conventions for Cython Coming soon. @@ -66,11 +67,21 @@ example_user would create the file `.github/contributors/example_user.md`. ### Fixing bugs -When fixing a bug, first create an [issue](https://github.com/explosion/spaCy/issues) if one does not already exist. The description text can be very short – we don't want to make this too bureaucratic. Next, create a test file named `test_issue[ISSUE NUMBER].py` in the [`spacy/tests/regression`](spacy/tests/regression) folder. +When fixing a bug, first create an [issue](https://github.com/explosion/spaCy/issues) if one does not already exist. The description text can be very short – we don't want to make this too bureaucratic. -Test for the bug you're fixing, and make sure the test fails. If the test requires the models to be loaded, mark it with the `pytest.mark.models` decorator. +Next, create a test file named `test_issue[ISSUE NUMBER].py` in the [`spacy/tests/regression`](spacy/tests/regression) folder. Test for the bug you're fixing, and make sure the test fails. Next, add and commit your test file referencing the issue number in the commit message. Finally, fix the bug, make sure your test passes and reference the issue in your commit message. -Next, add and commit your test file referencing the issue number in the commit message. Finally, fix the bug, make sure your test passes and reference the issue in your commit message. +📖 **For more information on how to add tests, check out the [tests README](spacy/tests/README.md).** + +## Adding tests + +spaCy uses the [pytest](http://doc.pytest.org/) framework for testing. For more info on this, see the [pytest documentation](http://docs.pytest.org/en/latest/contents.html). Tests for spaCy modules and classes live in their own directories of the same name. For example, tests for the `Tokenizer` can be found in [`/spacy/tests/tokenizer`](spacy/tests/tokenizer). To be interpreted and run, all test files and test functions need to be prefixed with `test_`. + +When adding tests, make sure to use descriptive names, keep the code short and concise and only test for one behaviour at a time. Try to `parametrize` test cases wherever possible, use our pre-defined fixtures for spaCy components and avoid unnecessary imports. + +Extensive tests that take a long time should be marked with `@pytest.mark.slow`. Tests that require the model to be loaded should be marked with `@pytest.mark.models`. Loading the models is expensive and not necessary if you're not actually testing the model performance. If all you needs ia a `Doc` object with annotations like heads, POS tags or the dependency parse, you can use the `get_doc()` utility function to construct it manually. + +📖 **For more guidelines and information on how to add tests, check out the [tests README](spacy/tests/README.md).** ## Updating the website @@ -80,13 +91,15 @@ Our [website and docs](https://spacy.io) are implemented in [Jade/Pug](https://w ```bash sudo npm install --global harp git clone https://github.com/explosion/spaCy -cd website +cd spaCy/website harp server ``` The docs can always use another example or more detail, and they should always be up to date and not misleading. To quickly find the correct file to edit, simply click on the "Suggest edits" button at the bottom of a page. -To make it easy to add content components, we use a [collection of custom mixins](_includes/_mixins.jade), like `+table`, `+list` or `+code`. For more info and troubleshooting guides, check out the [website README](website). +To make it easy to add content components, we use a [collection of custom mixins](_includes/_mixins.jade), like `+table`, `+list` or `+code`. + +📖 **For more info and troubleshooting guides, check out the [website README](website).** ### Resources to get you started diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9c34ed174..81a7e71ac 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -4,10 +4,12 @@ This is a list of everyone who has made significant contributions to spaCy, in a * Adam Bittlingmayer, [@bittlingmayer](https://github.com/bittlingmayer) * Andreas Grivas, [@andreasgrv](https://github.com/andreasgrv) +* Aniruddha Adhikary [@aniruddha-adhikary](https://github.com/aniruddha-adhikary) * Bhargav Srinivasa, [@bhargavvader](https://github.com/bhargavvader) * Chris DuBois, [@chrisdubois](https://github.com/chrisdubois) * Christoph Schwienheer, [@chssch](https://github.com/chssch) * Dafne van Kuppevelt, [@dafnevk](https://github.com/dafnevk) +* Daniel Rapp, [@rappdw](https://github.com/rappdw) * Dmytro Sadovnychyi, [@sadovnychyi](https://github.com/sadovnychyi) * György Orosz, [@oroszgy](https://github.com/oroszgy) * Henning Peters, [@henningpeters](https://github.com/henningpeters) @@ -22,11 +24,15 @@ This is a list of everyone who has made significant contributions to spaCy, in a * Mark Amery, [@ExplodingCabbage](https://github.com/ExplodingCabbage) * Matthew Honnibal, [@honnibal](https://github.com/honnibal) * Maxim Samsonov, [@maxirmx](https://github.com/maxirmx) +* Michael Wallin, [@wallinm1](https://github.com/wallinm1) * Oleg Zd, [@olegzd](https://github.com/olegzd) * Pokey Rule, [@pokey](https://github.com/pokey) +* Raphaël Bournhonesque, [@raphael0202](https://github.com/raphael0202) * Rob van Nieuwpoort, [@RvanNieuwpoort](https://github.com/RvanNieuwpoort) * Sam Bozek, [@sambozek](https://github.com/sambozek) -* Sasho Savkov [@savkov](https://github.com/savkov) +* Sasho Savkov, [@savkov](https://github.com/savkov) +* Shuvanon Razik, [@shuvanon](https://github.com/shuvanon) +* Thomas Tanon, [@Tpt](https://github.com/Tpt) * Tiago Rodrigues, [@TiagoMRodrigues](https://github.com/TiagoMRodrigues) * Vsevolod Solovyov, [@vsolovyov](https://github.com/vsolovyov) * Wah Loon Keng, [@kengz](https://github.com/kengz) diff --git a/README.rst b/README.rst index 6e03aa0c4..1f13eeec9 100644 --- a/README.rst +++ b/README.rst @@ -1,64 +1,70 @@ spaCy: Industrial-strength NLP ****************************** -spaCy is a library for advanced natural language processing in Python and -Cython. spaCy is built on the very latest research, but it isn't researchware. -It was designed from day one to be used in real products. spaCy currently supports -English and German, as well as tokenization for Chinese, Spanish, Italian, French, -Portuguese, Dutch, Swedish and Hungarian. It's commercial open-source software, -released under the MIT license. +spaCy is a library for advanced natural language processing in Python and +Cython. spaCy is built on the very latest research, but it isn't researchware. +It was designed from day one to be used in real products. spaCy currently supports +English and German, as well as tokenization for Chinese, Spanish, Italian, French, +Portuguese, Dutch, Swedish, Finnish, Hungarian and Bengali. It's commercial open-source +software, released under the MIT license. -💫 **Version 1.5 out now!** `Read the release notes here. `_ +💫 **Version 1.6 out now!** `Read the release notes here. `_ -.. image:: http://i.imgur.com/wFvLZyJ.png - :target: https://travis-ci.org/explosion/spaCy - :alt: spaCy on Travis CI - -.. image:: https://travis-ci.org/explosion/spaCy.svg?branch=master +.. image:: https://img.shields.io/travis/explosion/spaCy/master.svg?style=flat-square :target: https://travis-ci.org/explosion/spaCy :alt: Build Status - -.. image:: https://img.shields.io/github/release/explosion/spacy.svg - :target: https://github.com/explosion/spaCy/releases + +.. image:: https://img.shields.io/github/release/explosion/spacy.svg?style=flat-square + :target: https://github.com/explosion/spaCy/releases :alt: Current Release Version - -.. image:: https://img.shields.io/pypi/v/spacy.svg + +.. image:: https://img.shields.io/pypi/v/spacy.svg?style=flat-square :target: https://pypi.python.org/pypi/spacy :alt: pypi Version -.. image:: https://badges.gitter.im/explosion.png +.. image:: https://anaconda.org/conda-forge/spacy/badges/version.svg + :target: https://anaconda.org/conda-forge/spacy + :alt: conda Version + +.. image:: https://img.shields.io/badge/gitter-join%20chat%20%E2%86%92-09a3d5.svg?style=flat-square :target: https://gitter.im/explosion/spaCy :alt: spaCy on Gitter +.. image:: https://img.shields.io/twitter/follow/spacy_io.svg?style=social&label=Follow + :target: https://twitter.com/spacy_io + :alt: spaCy on Twitter + 📖 Documentation ================ -+--------------------------------------------------------------------------------+---------------------------------------------------------+ -| `Usage Workflows `_   | How to use spaCy and its features.              | -+--------------------------------------------------------------------------------+---------------------------------------------------------+ -| `API Reference `_   | The detailed reference for spaCy's API. | -+--------------------------------------------------------------------------------+---------------------------------------------------------+ -| `Tutorials `_ | End-to-end examples, with code you can modify and run. | -+--------------------------------------------------------------------------------+---------------------------------------------------------+ -| `Showcase & Demos `_ | Demos, libraries and products from the spaCy community. | -+--------------------------------------------------------------------------------+---------------------------------------------------------+ -| `Contribute `_ | How to contribute to the spaCy project and code base. | -+--------------------------------------------------------------------------------+---------------------------------------------------------+ +=================== === +`Usage Workflows`_ How to use spaCy and its features. +`API Reference`_ The detailed reference for spaCy's API. +`Tutorials`_ End-to-end examples, with code you can modify and run. +`Showcase & Demos`_ Demos, libraries and products from the spaCy community. +`Contribute`_ How to contribute to the spaCy project and code base. +=================== === + +.. _Usage Workflows: https://spacy.io/docs/usage/ +.. _API Reference: https://spacy.io/docs/api/ +.. _Tutorials: https://spacy.io/docs/usage/tutorials +.. _Showcase & Demos: https://spacy.io/docs/usage/showcase +.. _Contribute: https://github.com/explosion/spaCy/blob/master/CONTRIBUTING.md 💬 Where to ask questions ========================== -+---------------------------+------------------------------------------------------------------------------------------------------------+ -| **Bug reports**     | `GitHub Issue tracker `_                                     | -+---------------------------+------------------------------------------------------------------------------------------------------------+ -| **Usage questions**   | `StackOverflow `_, `Reddit usergroup                     | -| | `_, `Gitter chat `_ | -+---------------------------+------------------------------------------------------------------------------------------------------------+ -| **General discussion** |  `Reddit usergroup `_, | -| | `Gitter chat `_  | -+---------------------------+------------------------------------------------------------------------------------------------------------+ -| **Commercial support** | contact@explosion.ai                                                                                     | -+---------------------------+------------------------------------------------------------------------------------------------------------+ +====================== === +**Bug reports** `GitHub issue tracker`_ +**Usage questions** `StackOverflow`_, `Gitter chat`_, `Reddit user group`_ +**General discussion** `Gitter chat`_, `Reddit user group`_ +**Commercial support** contact@explosion.ai +====================== === + +.. _GitHub issue tracker: https://github.com/explosion/spaCy/issues +.. _StackOverflow: http://stackoverflow.com/questions/tagged/spacy +.. _Gitter chat: https://gitter.im/explosion/spaCy +.. _Reddit user group: https://www.reddit.com/r/spacynlp Features ======== @@ -81,7 +87,7 @@ Features See `facts, figures and benchmarks `_. Top Performance -=============== +--------------- * Fastest in the world: <50ms per document. No faster system has ever been announced. @@ -90,95 +96,151 @@ Top Performance accurate systems are an order of magnitude slower or more. Supports -======== +-------- -* CPython 2.6, 2.7, 3.3, 3.4, 3.5 (only 64 bit) -* macOS / OS X -* Linux -* Windows (Cygwin, MinGW, Visual Studio) +==================== === +**Operating system** macOS / OS X, Linux, Windows (Cygwin, MinGW, Visual Studio) +**Python version** CPython 2.6, 2.7, 3.3, 3.4, 3.5. Only 64 bit. +**Package managers** `pip`_ (source packages only), `conda`_ (via ``conda-forge``) +==================== === + +.. _pip: https://pypi.python.org/pypi/spacy +.. _conda: https://anaconda.org/conda-forge/spacy Install spaCy ============= -spaCy is compatible with 64-bit CPython 2.6+/3.3+ and runs on Unix/Linux, OS X -and Windows. Source packages are available via -`pip `_. Please make sure that -you have a working build enviroment set up. See notes on Ubuntu, macOS/OS X and Windows -for details. +Installation requires a working build environment. See notes on Ubuntu, +macOS/OS X and Windows for details. pip --- -When using pip it is generally recommended to install packages in a virtualenv to -avoid modifying system state: +Using pip, spaCy releases are currently only available as source packages. .. code:: bash + pip install -U spacy + +When using pip it is generally recommended to install packages in a ``virtualenv`` +to avoid modifying system state: + +.. code:: bash + + virtualenv .env + source .env/bin/activate pip install spacy -Python packaging is awkward at the best of times, and it's particularly tricky with -C extensions, built via Cython, requiring large data files. So, please report issues -as you encounter them. +conda +----- -Install model -============= +Thanks to our great community, we've finally re-added conda support. You can now +install spaCy via ``conda-forge``: -After installation you need to download a language model. Currently only models for -English and German, named ``en`` and ``de``, are available. +.. code:: bash + +   conda config --add channels conda-forge +   conda install spacy + +For the feedstock including the build recipe and configuration, +check out `this repository `_. +Improvements and pull requests to the recipe and setup are always appreciated. + +Download models +=============== + +After installation you need to download a language model. Models for English +(``en``) and German (``de``) are available. .. code:: bash python -m spacy.en.download all python -m spacy.de.download all -The download command fetches about 1 GB of data which it installs +The download command fetches about 1 GB of data which it installs within the ``spacy`` package directory. -Upgrading spaCy -=============== - -To upgrade spaCy to the latest release: - -pip ---- - -.. code:: bash - - pip install -U spacy - -Sometimes new releases require a new language model. Then you will have to upgrade to -a new model, too. You can also force re-downloading and installing a new language model: +Sometimes new releases require a new language model. Then you will have to +upgrade to a new model, too. You can also force re-downloading and installing a +new language model: .. code:: bash python -m spacy.en.download --force +Download model to custom location +--------------------------------- + +You can specify where ``spacy.en.download`` and ``spacy.de.download`` download +the language model to using the ``--data-path`` or ``-d`` argument: + +.. code:: bash + + python -m spacy.en.download all --data-path /some/dir + +If you choose to download to a custom location, you will need to tell spaCy where to load the model +from in order to use it. You can do this either by calling ``spacy.util.set_data_path()`` before +calling ``spacy.load()``, or by passing a ``path`` argument to the ``spacy.en.English`` or +``spacy.de.German`` constructors. + +Download models manually +------------------------ + +As of v1.6, the models and word vectors are also available as direct downloads +from GitHub, attached to the `releases `_ +as ``.tar.gz`` archives. + +To install the models manually, first find the default data path. You can use +``spacy.util.get_data_path()`` to find the directory where spaCy will look for +its models, or change the default data path with ``spacy.util.set_data_path()``. +Then simply unpack the archive and place the contained folder in that directory. +You can now load the models via ``spacy.load()``. + Compile from source =================== -The other way to install spaCy is to clone its GitHub repository and build it from +The other way to install spaCy is to clone its +`GitHub repository `_ and build it from source. That is the common way if you want to make changes to the code base. - -You'll need to make sure that you have a development enviroment consisting of a -Python distribution including header files, a compiler, pip, virtualenv and git -installed. The compiler part is the trickiest. How to do that depends on your -system. See notes on Ubuntu, OS X and Windows for details. +You'll need to make sure that you have a development enviroment consisting of a +Python distribution including header files, a compiler, +`pip `__, `virtualenv `_ +and `git `_ installed. The compiler part is the trickiest. +How to do that depends on your system. See notes on Ubuntu, OS X and Windows for +details. .. code:: bash # make sure you are using recent pip/virtualenv versions python -m pip install -U pip virtualenv - - # find git install instructions at https://git-scm.com/downloads - git clone https://github.com/explosion/spaCy.git - + git clone https://github.com/explosion/spaCy cd spaCy - virtualenv .env && source .env/bin/activate + + virtualenv .env + source .env/bin/activate pip install -r requirements.txt pip install -e . - -Compared to regular install via pip `requirements.txt `_ -additionally installs developer dependencies such as cython. + +Compared to regular install via pip `requirements.txt `_ +additionally installs developer dependencies such as Cython. + +Instead of the above verbose commands, you can also use the following +`Fabric `_ commands: + +============= === +``fab env`` Create ``virtualenv`` and delete previous one, if it exists. +``fab make`` Compile the source. +``fab clean`` Remove compiled objects, including the generated C++. +``fab test`` Run basic tests, aborting after first failure. +============= === + +All commands assume that your ``virtualenv`` is located in a directory ``.env``. +If you're using a different directory, you can change it via the environment +variable ``VENV_DIR``, for example: + +.. code:: bash + + VENV_DIR=".custom-env" fab clean make Ubuntu ------ @@ -192,388 +254,89 @@ Install system-level dependencies via ``apt-get``: macOS / OS X ------------ -Install a recent version of `XCode `_, -including the so-called "Command Line Tools". macOS and OS X ship with Python +Install a recent version of `XCode `_, +including the so-called "Command Line Tools". macOS and OS X ship with Python and git preinstalled. Windows ------- Install a version of `Visual Studio Express `_ -or higher that matches the version that was used to compile your Python -interpreter. For official distributions these are VS 2008 (Python 2.7), +or higher that matches the version that was used to compile your Python +interpreter. For official distributions these are VS 2008 (Python 2.7), VS 2010 (Python 3.4) and VS 2015 (Python 3.5). Run tests ========= -spaCy comes with an extensive test suite. First, find out where spaCy is -installed: +spaCy comes with an `extensive test suite `_. First, find out where +spaCy is installed: .. code:: bash - + python -c "import os; import spacy; print(os.path.dirname(spacy.__file__))" -Then run ``pytest`` on that directory. The flags ``--vectors``, ``--slow`` +Then run ``pytest`` on that directory. The flags ``--vectors``, ``--slow`` and ``--model`` are optional and enable additional tests: .. code:: bash - + # make sure you are using recent pytest version python -m pip install -U pytest python -m pytest --vectors --model --slow -Download model to custom location -================================= - -You can specify where ``spacy.en.download`` and ``spacy.de.download`` download the language model -to using the ``--data-path`` or ``-d`` argument: - -.. code:: bash - - python -m spacy.en.download all --data-path /some/dir - - -If you choose to download to a custom location, you will need to tell spaCy where to load the model -from in order to use it. You can do this either by calling ``spacy.util.set_data_path()`` before -calling ``spacy.load()``, or by passing a ``path`` argument to the ``spacy.en.English`` or -``spacy.de.German`` constructors. - -Changelog -========= - -2016-12-27 `v1.5.0 `_: *Alpha support for Swedish and Hungarian* -------------------------------------------------------------------------------------------------------------- - -**✨ Major features and improvements** - -* **NEW:** Alpha support for Swedish tokenization. -* **NEW:** Alpha support for Hungarian tokenization. -* Update language data for Spanish tokenization. -* Speed up tokenization when no data is preloaded by caching the first 10,000 vocabulary items seen. - -**🔴 Bug fixes** - -* List the ``language_data`` package in the ``setup.py``. -* Fix missing ``vec_path`` declaration that was failing if ``add_vectors`` was set. -* Allow ``Vocab`` to load without ``serializer_freqs``. - -**📖 Documentation and examples** - -* **NEW:** `spaCy Jupyter notebooks `_ repo: ongoing collection of easy-to-run spaCy examples and tutorials. -* Fix issue `#657 `_: Generalise dependency parsing `annotation specs `_ beyond English. -* Fix various typos and inconsistencies. - -**👥 Contributors** - -Thanks to `@oroszgy `_, `@magnusburton `_, `@jmizgajski `_, `@aikramer2 `_, `@fnorf `_ and `@bhargavvader `_ for the pull requests! - -2016-12-18 `v1.4.0 `_: *Improved language data and alpha Dutch support* -------------------------------------------------------------------------------------------------------------------------------- - -**✨ Major features and improvements** - -* **NEW:** Alpha support for Dutch tokenization. -* Reorganise and improve format for language data. -* Add shared tag map, entity rules, emoticons and punctuation to language data. -* Convert entity rules, morphological rules and lemmatization rules from JSON to Python. -* Update language data for English, German, Spanish, French, Italian and Portuguese. - -**🔴 Bug fixes** - -* Fix issue `#649 `_: Update and reorganise stop lists. -* Fix issue `#672 `_: Make ``token.ent_iob_`` return unicode. -* Fix issue `#674 `_: Add missing lemmas for contracted forms of "be" to ``TOKENIZER_EXCEPTIONS``. -* Fix issue `#683 `_ ``Morphology`` class now supplies tag map value for the special space tag if it's missing. -* Fix issue `#684 `_: Ensure ``spacy.en.English()`` loads the Glove vector data if available. Previously was inconsistent with behaviour of ``spacy.load('en')``. -* Fix issue `#685 `_: Expand ``TOKENIZER_EXCEPTIONS`` with unicode apostrophe (``’``). -* Fix issue `#689 `_: Correct typo in ``STOP_WORDS``. -* Fix issue `#691 `_: Add tokenizer exceptions for "gonna" and "Gonna". - -**⚠️ Backwards incompatibilities** - -No changes to the public, documented API, but the previously undocumented language data and model initialisation processes have been refactored and reorganised. If you were relying on the ``bin/init_model.py`` script, see the new `spaCy Developer Resources `_ repo. Code that references internals of the ``spacy.en`` or ``spacy.de`` packages should also be reviewed before updating to this version. - -**📖 Documentation and examples** - -* **NEW:** `"Adding languages" `_ workflow. -* **NEW:** `"Part-of-speech tagging" `_ workflow. -* **NEW:** `spaCy Developer Resources `_ repo – scripts, tools and resources for developing spaCy. -* Fix various typos and inconsistencies. - -**👥 Contributors** - -Thanks to `@dafnevk `_, `@jvdzwaan `_, `@RvanNieuwpoort `_, `@wrvhage `_, `@jaspb `_, `@savvopoulos `_ and `@davedwards `_ for the pull requests! - -2016-12-03 `v1.3.0 `_: *Improve API consistency* --------------------------------------------------------------------------------------------------------- - -**✨ API improvements** - -* Add ``Span.sentiment`` attribute. -* `#658 `_: Add ``Span.noun_chunks`` iterator (thanks `@pokey `_). -* `#642 `_: Let ``--data-path`` be specified when running download.py scripts (thanks `@ExplodingCabbage `_). -* `#638 `_: Add German stopwords (thanks `@souravsingh `_). -* `#614 `_: Fix ``PhraseMatcher`` to work with new ``Matcher`` (thanks `@sadovnychyi `_). - -**🔴 Bug fixes** - -* Fix issue `#605 `_: ``accept`` argument to ``Matcher`` now rejects matches as expected. -* Fix issue `#617 `_: ``Vocab.load()`` now works with string paths, as well as ``Path`` objects. -* Fix issue `#639 `_: Stop words in ``Language`` class now used as expected. -* Fix issues `#656 `_, `#624 `_: ``Tokenizer`` special-case rules now support arbitrary token attributes. - - -**📖 Documentation and examples** - -* Add `"Customizing the tokenizer" `_ workflow. -* Add `"Training the tagger, parser and entity recognizer" `_ workflow. -* Add `"Entity recognition" `_ workflow. -* Fix various typos and inconsistencies. - -**👥 Contributors** - -Thanks to `@pokey `_, `@ExplodingCabbage `_, `@souravsingh `_, `@sadovnychyi `_, `@manojsakhwar `_, `@TiagoMRodrigues `_, `@savkov `_, `@pspiegelhalter `_, `@chenb67 `_, `@kylepjohnson `_, `@YanhaoYang `_, `@tjrileywisc `_, `@dechov `_, `@wjt `_, `@jsmootiv `_ and `@blarghmatey `_ for the pull requests! - -2016-11-04 `v1.2.0 `_: *Alpha tokenizers for Chinese, French, Spanish, Italian and Portuguese* ------------------------------------------------------------------------------------------------------------------------------------------------------- - -**✨ Major features and improvements** - -* **NEW:** Support Chinese tokenization, via `Jieba `_. -* **NEW:** Alpha support for French, Spanish, Italian and Portuguese tokenization. - -**🔴 Bug fixes** - -* Fix issue `#376 `_: POS tags for "and/or" are now correct. -* Fix issue `#578 `_: ``--force`` argument on download command now operates correctly. -* Fix issue `#595 `_: Lemmatization corrected for some base forms. -* Fix issue `#588 `_: `Matcher` now rejects empty patterns. -* Fix issue `#592 `_: Added exception rule for tokenization of "Ph.D." -* Fix issue `#599 `_: Empty documents now considered tagged and parsed. -* Fix issue `#600 `_: Add missing ``token.tag`` and ``token.tag_`` setters. -* Fix issue `#596 `_: Added missing unicode import when compiling regexes that led to incorrect tokenization. -* Fix issue `#587 `_: Resolved bug that caused ``Matcher`` to sometimes segfault. -* Fix issue `#429 `_: Ensure missing entity types are added to the entity recognizer. - -2016-10-23 `v1.1.0 `_: *Bug fixes and adjustments* ----------------------------------------------------------------------------------------------------------- - -* Rename new ``pipeline`` keyword argument of ``spacy.load()`` to ``create_pipeline``. -* Rename new ``vectors`` keyword argument of ``spacy.load()`` to ``add_vectors``. - -**🔴 Bug fixes** - -* Fix issue `#544 `_: Add ``vocab.resize_vectors()`` method, to support changing to vectors of different dimensionality. -* Fix issue `#536 `_: Default probability was incorrect for OOV words. -* Fix issue `#539 `_: Unspecified encoding when opening some JSON files. -* Fix issue `#541 `_: GloVe vectors were being loaded incorrectly. -* Fix issue `#522 `_: Similarities and vector norms were calculated incorrectly. -* Fix issue `#461 `_: ``ent_iob`` attribute was incorrect after setting entities via ``doc.ents`` -* Fix issue `#459 `_: Deserialiser failed on empty doc -* Fix issue `#514 `_: Serialization failed after adding a new entity label. - -2016-10-18 `v1.0.0 `_: *Support for deep learning workflows and entity-aware rule matcher* --------------------------------------------------------------------------------------------------------------------------------------------------- - -**✨ Major features and improvements** - -* **NEW:** `custom processing pipelines `_, to support deep learning workflows -* **NEW:** `Rule matcher `_ now supports entity IDs and attributes -* **NEW:** Official/documented `training APIs `_ and `GoldParse` class -* Download and use GloVe vectors by default -* Make it easier to load and unload word vectors -* Improved rule matching functionality -* Move basic data into the code, rather than the json files. This makes it simpler to use the tokenizer without the models installed, and makes adding new languages much easier. -* Replace file-system strings with ``Path`` objects. You can now load resources over your network, or do similar trickery, by passing any object that supports the ``Path`` protocol. - -**⚠️ Backwards incompatibilities** - -* The data_dir keyword argument of ``Language.__init__`` (and its subclasses ``English.__init__`` and ``German.__init__``) has been renamed to ``path``. -* Details of how the Language base-class and its sub-classes are loaded, and how defaults are accessed, have been heavily changed. If you have your own subclasses, you should review the changes. -* The deprecated ``token.repvec`` name has been removed. -* The ``.train()`` method of Tagger and Parser has been renamed to ``.update()`` -* The previously undocumented ``GoldParse`` class has a new ``__init__()`` method. The old method has been preserved in ``GoldParse.from_annot_tuples()``. -* Previously undocumented details of the ``Parser`` class have changed. -* The previously undocumented ``get_package`` and ``get_package_by_name`` helper functions have been moved into a new module, ``spacy.deprecated``, in case you still need them while you update. - -**🔴 Bug fixes** - -* Fix ``get_lang_class`` bug when GloVe vectors are used. -* Fix Issue `#411 `_: ``doc.sents`` raised IndexError on empty string. -* Fix Issue `#455 `_: Correct lemmatization logic -* Fix Issue `#371 `_: Make ``Lexeme`` objects hashable -* Fix Issue `#469 `_: Make ``noun_chunks`` detect root NPs - -**👥 Contributors** - -Thanks to `@daylen `_, `@RahulKulhari `_, `@stared `_, `@adamhadani `_, `@izeye `_ and `@crawfordcomeaux `_ for the pull requests! - -2016-05-10 `v0.101.0 `_: *Fixed German model* ------------------------------------------------------------------------------------------------------- - -* Fixed bug that prevented German parses from being deprojectivised. -* Bug fixes to sentence boundary detection. -* Add rich comparison methods to the Lexeme class. -* Add missing ``Doc.has_vector`` and ``Span.has_vector`` properties. -* Add missing ``Span.sent`` property. - -2016-05-05 `v0.100.7 `_: *German!* -------------------------------------------------------------------------------------------- - -spaCy finally supports another language, in addition to English. We're lucky -to have Wolfgang Seeker on the team, and the new German model is just the -beginning. Now that there are multiple languages, you should consider loading -spaCy via the ``load()`` function. This function also makes it easier to load extra -word vector data for English: - -.. code:: python - - import spacy - en_nlp = spacy.load('en', vectors='en_glove_cc_300_1m_vectors') - de_nlp = spacy.load('de') - -To support use of the load function, there are also two new helper functions: -``spacy.get_lang_class`` and ``spacy.set_lang_class``. Once the German model is -loaded, you can use it just like the English model: - -.. code:: python - - doc = nlp(u'''Wikipedia ist ein Projekt zum Aufbau einer Enzyklopädie aus freien Inhalten, zu dem du mit deinem Wissen beitragen kannst. Seit Mai 2001 sind 1.936.257 Artikel in deutscher Sprache entstanden.''') - - for sent in doc.sents: - print(sent.root.text, sent.root.n_lefts, sent.root.n_rights) - - # (u'ist', 1, 2) - # (u'sind', 1, 3) - -The German model provides tokenization, POS tagging, sentence boundary detection, -syntactic dependency parsing, recognition of organisation, location and person -entities, and word vector representations trained on a mix of open subtitles and -Wikipedia data. It doesn't yet provide lemmatisation or morphological analysis, -and it doesn't yet recognise numeric entities such as numbers and dates. - -**Bugfixes** - -* spaCy < 0.100.7 had a bug in the semantics of the ``Token.__str__`` and ``Token.__unicode__`` built-ins: they included a trailing space. -* Improve handling of "infixed" hyphens. Previously the tokenizer struggled with multiple hyphens, such as "well-to-do". -* Improve handling of periods after mixed-case tokens -* Improve lemmatization for English special-case tokens -* Fix bug that allowed spaces to be treated as heads in the syntactic parse -* Fix bug that led to inconsistent sentence boundaries before and after serialisation. -* Fix bug from deserialising untagged documents. - -2016-03-08 `v0.100.6 `_: *Add support for GloVe vectors* ------------------------------------------------------------------------------------------------------------------ - -This release offers improved support for replacing the word vectors used by spaCy. -To install Stanford's GloVe vectors, trained on the Common Crawl, just run: - -.. code:: bash - - sputnik --name spacy install en_glove_cc_300_1m_vectors - -To reduce memory usage and loading time, we've trimmed the vocabulary down to 1m entries. - -This release also integrates all the code necessary for German parsing. A German model -will be released shortly. To assist in multi-lingual processing, we've added a ``load()`` -function. To load the English model with the GloVe vectors: - -.. code:: python - - spacy.load('en', vectors='en_glove_cc_300_1m_vectors') - -2016-02-07 `v0.100.5 `_ --------------------------------------------------------------------------------- - -Fix incorrect use of header file, caused from problem with thinc - -2016-02-07 `v0.100.4 `_: *Fix OSX problem introduced in 0.100.3* -------------------------------------------------------------------------------------------------------------------------- - -Small correction to right_edge calculation - -2016-02-06 `v0.100.3 `_ --------------------------------------------------------------------------------- - -Support multi-threading, via the ``.pipe`` method. spaCy now releases the GIL around the -parser and entity recognizer, so systems that support OpenMP should be able to do -shared memory parallelism at close to full efficiency. - -We've also greatly reduced loading time, and fixed a number of bugs. - -2016-01-21 `v0.100.2 `_ --------------------------------------------------------------------------------- - -Fix data version lock that affected v0.100.1 - -2016-01-21 `v0.100.1 `_: *Fix install for OSX* -------------------------------------------------------------------------------------------------------- - -v0.100 included header files built on Linux that caused installation to fail on OSX. -This should now be corrected. We also update the default data distribution, to -include a small fix to the tokenizer. - -2016-01-19 `v0.100 `_: *Revise setup.py, better model downloads, bug fixes* ----------------------------------------------------------------------------------------------------------------------------------- - -* Redo setup.py, and remove ugly headers_workaround hack. Should result in fewer install problems. -* Update data downloading and installation functionality, by migrating to the Sputnik data-package manager. This will allow us to offer finer grained control of data installation in future. -* Fix bug when using custom entity types in ``Matcher``. This should work by default when using the - ``English.__call__`` method of running the pipeline. If invoking ``Parser.__call__`` directly to do NER, - you should call the ``Parser.add_label()`` method to register your entity type. -* Fix head-finding rules in ``Span``. -* Fix problem that caused ``doc.merge()`` to sometimes hang -* Fix problems in handling of whitespace - -2015-11-08 `v0.99 `_: *Improve span merging, internal refactoring* ------------------------------------------------------------------------------------------------------------------------- - -* Merging multi-word tokens into one, via the ``doc.merge()`` and ``span.merge()`` methods, no longer invalidates existing ``Span`` objects. This makes it much easier to merge multiple spans, e.g. to merge all named entities, or all base noun phrases. Thanks to @andreasgrv for help on this patch. -* Lots of internal refactoring, especially around the machine learning module, thinc. The thinc API has now been improved, and the spacy._ml wrapper module is no longer necessary. -* The lemmatizer now lower-cases non-noun, noun-verb and non-adjective words. -* A new attribute, ``.rank``, is added to Token and Lexeme objects, giving the frequency rank of the word. - -2015-11-03 `v0.98 `_: *Smaller package, bug fixes* ---------------------------------------------------------------------------------------------------------- - -* Remove binary data from PyPi package. -* Delete archive after downloading data -* Use updated cymem, preshed and thinc packages -* Fix information loss in deserialize -* Fix ``__str__`` methods for Python2 - -2015-10-23 `v0.97 `_: *Load the StringStore from a json list, instead of a text file* -------------------------------------------------------------------------------------------------------------------------------------------- - -* Fix bugs in download.py -* Require ``--force`` to over-write the data directory in download.py -* Fix bugs in ``Matcher`` and ``doc.merge()`` - -2015-10-19 `v0.96 `_: *Hotfix to .merge method* ------------------------------------------------------------------------------------------------------ - -* Fix bug that caused text to be lost after ``.merge`` -* Fix bug in Matcher when matched entities overlapped - -2015-10-18 `v0.95 `_: *Bugfixes* --------------------------------------------------------------------------------------- - -* Reform encoding of symbols -* Fix bugs in ``Matcher`` -* Fix bugs in ``Span`` -* Add tokenizer rule to fix numeric range tokenization -* Add specific string-length cap in Tokenizer -* Fix ``token.conjuncts`` - -2015-10-09 `v0.94 `_ --------------------------------------------------------------------------- - -* Fix memory error that caused crashes on 32bit platforms -* Fix parse errors caused by smart quotes and em-dashes - -2015-09-22 `v0.93 `_ --------------------------------------------------------------------------- - -Bug fixes to word vectors +🛠 Changelog +=========== + +=========== ============== =========== +Version Date Description +=========== ============== =========== +`v1.6.0`_ ``2017-01-16`` Improvements to tokenizer and tests +`v1.5.0`_ ``2016-12-27`` Alpha support for Swedish and Hungarian +`v1.4.0`_ ``2016-12-18`` Improved language data and alpha Dutch support +`v1.3.0`_ ``2016-12-03`` Improve API consistency +`v1.2.0`_ ``2016-11-04`` Alpha tokenizers for Chinese, French, Spanish, Italian and Portuguese +`v1.1.0`_ ``2016-10-23`` Bug fixes and adjustments +`v1.0.0`_ ``2016-10-18`` Support for deep learning workflows and entity-aware rule matcher +`v0.101.0`_ ``2016-05-10`` Fixed German model +`v0.100.7`_ ``2016-05-05`` German support +`v0.100.6`_ ``2016-03-08`` Add support for GloVe vectors +`v0.100.5`_ ``2016-02-07`` Fix incorrect use of header file +`v0.100.4`_ ``2016-02-07`` Fix OSX problem introduced in 0.100.3 +`v0.100.3`_ ``2016-02-06`` Multi-threading, faster loading and bugfixes +`v0.100.2`_ ``2016-01-21`` Fix data version lock +`v0.100.1`_ ``2016-01-21`` Fix install for OSX +`v0.100`_ ``2016-01-19`` Revise setup.py, better model downloads, bug fixes +`v0.99`_ ``2015-11-08`` Improve span merging, internal refactoring +`v0.98`_ ``2015-11-03`` Smaller package, bug fixes +`v0.97`_ ``2015-10-23`` Load the StringStore from a json list, instead of a text file +`v0.96`_ ``2015-10-19`` Hotfix to .merge method +`v0.95`_ ``2015-10-18`` Bug fixes +`v0.94`_ ``2015-10-09`` Fix memory and parse errors +`v0.93`_ ``2015-09-22`` Bug fixes to word vectors +=========== ============== =========== + +.. _v1.6.0: https://github.com/explosion/spaCy/releases/tag/v1.6.0 +.. _v1.5.0: https://github.com/explosion/spaCy/releases/tag/v1.5.0 +.. _v1.4.0: https://github.com/explosion/spaCy/releases/tag/v1.4.0 +.. _v1.3.0: https://github.com/explosion/spaCy/releases/tag/v1.3.0 +.. _v1.2.0: https://github.com/explosion/spaCy/releases/tag/v1.2.0 +.. _v1.1.0: https://github.com/explosion/spaCy/releases/tag/v1.1.0 +.. _v1.0.0: https://github.com/explosion/spaCy/releases/tag/v1.0.0 +.. _v0.101.0: https://github.com/explosion/spaCy/releases/tag/0.101.0 +.. _v0.100.7: https://github.com/explosion/spaCy/releases/tag/0.100.7 +.. _v0.100.6: https://github.com/explosion/spaCy/releases/tag/0.100.6 +.. _v0.100.5: https://github.com/explosion/spaCy/releases/tag/0.100.5 +.. _v0.100.4: https://github.com/explosion/spaCy/releases/tag/0.100.4 +.. _v0.100.3: https://github.com/explosion/spaCy/releases/tag/0.100.3 +.. _v0.100.2: https://github.com/explosion/spaCy/releases/tag/0.100.2 +.. _v0.100.1: https://github.com/explosion/spaCy/releases/tag/0.100.1 +.. _v0.100: https://github.com/explosion/spaCy/releases/tag/0.100 +.. _v0.99: https://github.com/explosion/spaCy/releases/tag/0.99 +.. _v0.98: https://github.com/explosion/spaCy/releases/tag/0.98 +.. _v0.97: https://github.com/explosion/spaCy/releases/tag/0.97 +.. _v0.96: https://github.com/explosion/spaCy/releases/tag/0.96 +.. _v0.95: https://github.com/explosion/spaCy/releases/tag/0.95 +.. _v0.94: https://github.com/explosion/spaCy/releases/tag/0.94 +.. _v0.93: https://github.com/explosion/spaCy/releases/tag/0.93 diff --git a/bin/cythonize.py b/bin/cythonize.py index 81e0248d6..47f3b23fc 100755 --- a/bin/cythonize.py +++ b/bin/cythonize.py @@ -55,7 +55,8 @@ def process_pyx(fromfile, tofile): try: try: - r = subprocess.call(['cython'] + flags + ['-o', tofile, fromfile]) + r = subprocess.call(['cython'] + flags + ['-o', tofile, fromfile], + env=os.environ) # See Issue #791 if r != 0: raise Exception('Cython failed') except OSError: diff --git a/bin/parser/train.py b/bin/parser/train.py index 574797ba5..26b545b6d 100755 --- a/bin/parser/train.py +++ b/bin/parser/train.py @@ -66,8 +66,8 @@ def score_model(scorer, nlp, raw_text, annot_tuples, verbose=False): def train(Language, train_data, dev_data, model_dir, tagger_cfg, parser_cfg, entity_cfg, n_iter=15, seed=0, gold_preproc=False, n_sents=0, corruption_level=0): - print("Itn.\tP.Loss\tUAS\tNER F.\tTag %\tToken %") - format_str = '{:d}\t{:d}\t{uas:.3f}\t{ents_f:.3f}\t{tags_acc:.3f}\t{token_acc:.3f}' + print("Itn.\tN weight\tN feats\tUAS\tNER F.\tTag %\tToken %") + format_str = '{:d}\t{:d}\t{:d}\t{uas:.3f}\t{ents_f:.3f}\t{tags_acc:.3f}\t{token_acc:.3f}' with Language.train(model_dir, train_data, tagger_cfg, parser_cfg, entity_cfg) as trainer: loss = 0 @@ -76,11 +76,13 @@ def train(Language, train_data, dev_data, model_dir, tagger_cfg, parser_cfg, ent for doc, gold in epoch: trainer.update(doc, gold) dev_scores = trainer.evaluate(dev_data, gold_preproc=gold_preproc) - print(format_str.format(itn, loss, **dev_scores.scores)) + print(format_str.format(itn, trainer.nlp.parser.model.nr_weight, + trainer.nlp.parser.model.nr_active_feat, **dev_scores.scores)) def evaluate(Language, gold_tuples, model_dir, gold_preproc=False, verbose=False, beam_width=None, cand_preproc=None): + print("Load parser", model_dir) nlp = Language(path=model_dir) if nlp.lang == 'de': nlp.vocab.morphology.lemmatizer = lambda string,pos: set([string]) @@ -145,21 +147,25 @@ def write_parses(Language, dev_loc, model_dir, out_loc): verbose=("Verbose error reporting", "flag", "v", bool), debug=("Debug mode", "flag", "d", bool), pseudoprojective=("Use pseudo-projective parsing", "flag", "p", bool), + L1=("L1 regularization penalty", "option", "L", float), ) def main(language, train_loc, dev_loc, model_dir, n_sents=0, n_iter=15, out_loc="", verbose=False, - debug=False, corruption_level=0.0, gold_preproc=False, eval_only=False, pseudoprojective=False): + debug=False, corruption_level=0.0, gold_preproc=False, eval_only=False, pseudoprojective=False, + L1=1e-6): parser_cfg = dict(locals()) tagger_cfg = dict(locals()) entity_cfg = dict(locals()) lang = spacy.util.get_lang_class(language) - + parser_cfg['features'] = lang.Defaults.parser_features entity_cfg['features'] = lang.Defaults.entity_features if not eval_only: gold_train = list(read_json_file(train_loc)) gold_dev = list(read_json_file(dev_loc)) + if n_sents > 0: + gold_train = gold_train[:n_sents] train(lang, gold_train, gold_dev, model_dir, tagger_cfg, parser_cfg, entity_cfg, n_sents=n_sents, gold_preproc=gold_preproc, corruption_level=corruption_level, n_iter=n_iter) diff --git a/bin/parser/train_ud.py b/bin/parser/train_ud.py index c96faf7b9..c87f40680 100644 --- a/bin/parser/train_ud.py +++ b/bin/parser/train_ud.py @@ -14,7 +14,7 @@ from spacy.language import Language from spacy.gold import GoldParse from spacy.vocab import Vocab from spacy.tagger import Tagger -from spacy.pipeline import DependencyParser +from spacy.pipeline import DependencyParser, BeamDependencyParser from spacy.syntax.parser import get_templates from spacy.syntax.arc_eager import ArcEager from spacy.scorer import Scorer @@ -24,9 +24,10 @@ import io -def read_conllx(loc): +def read_conllx(loc, n=0): with io.open(loc, 'r', encoding='utf8') as file_: text = file_.read() + i = 0 for sent in text.strip().split('\n\n'): lines = sent.strip().split('\n') if lines: @@ -34,8 +35,8 @@ def read_conllx(loc): lines.pop(0) tokens = [] for line in lines: - id_, word, lemma, tag, pos, morph, head, dep, _1, _2 = line.split() - if '-' in id_: + id_, word, lemma, pos, tag, morph, head, dep, _1, _2 = line.split() + if '-' in id_ or '.' in id_: continue try: id_ = int(id_) - 1 @@ -47,6 +48,9 @@ def read_conllx(loc): raise tuples = [list(t) for t in zip(*tokens)] yield (None, [[tuples, []]]) + i += 1 + if n >= 1 and i >= n: + break def score_model(vocab, tagger, parser, gold_docs, verbose=False): @@ -62,26 +66,46 @@ def score_model(vocab, tagger, parser, gold_docs, verbose=False): return scorer -def main(train_loc, dev_loc, model_dir, tag_map_loc=None): - if tag_map_loc: - with open(tag_map_loc) as file_: - tag_map = json.loads(file_.read()) - else: - tag_map = DEFAULT_TAG_MAP +def main(lang_name, train_loc, dev_loc, model_dir, clusters_loc=None): + LangClass = spacy.util.get_lang_class(lang_name) train_sents = list(read_conllx(train_loc)) train_sents = PseudoProjectivity.preprocess_training_data(train_sents) actions = ArcEager.get_actions(gold_parses=train_sents) features = get_templates('basic') - + model_dir = pathlib.Path(model_dir) + if not model_dir.exists(): + model_dir.mkdir() if not (model_dir / 'deps').exists(): (model_dir / 'deps').mkdir() + if not (model_dir / 'pos').exists(): + (model_dir / 'pos').mkdir() with (model_dir / 'deps' / 'config.json').open('wb') as file_: file_.write( json.dumps( {'pseudoprojective': True, 'labels': actions, 'features': features}).encode('utf8')) - vocab = Vocab(lex_attr_getters=Language.Defaults.lex_attr_getters, tag_map=tag_map) + + vocab = LangClass.Defaults.create_vocab() + if not (model_dir / 'vocab').exists(): + (model_dir / 'vocab').mkdir() + else: + if (model_dir / 'vocab' / 'strings.json').exists(): + with (model_dir / 'vocab' / 'strings.json').open() as file_: + vocab.strings.load(file_) + if (model_dir / 'vocab' / 'lexemes.bin').exists(): + vocab.load_lexemes(model_dir / 'vocab' / 'lexemes.bin') + + if clusters_loc is not None: + clusters_loc = pathlib.Path(clusters_loc) + with clusters_loc.open() as file_: + for line in file_: + try: + cluster, word, freq = line.split() + except ValueError: + continue + lex = vocab[word] + lex.cluster = int(cluster[::-1], 2) # Populate vocab for _, doc_sents in train_sents: for (ids, words, tags, heads, deps, ner), _ in doc_sents: @@ -91,29 +115,30 @@ def main(train_loc, dev_loc, model_dir, tag_map_loc=None): _ = vocab[dep] for tag in tags: _ = vocab[tag] - if tag_map: + if vocab.morphology.tag_map: for tag in tags: - assert tag in tag_map, repr(tag) - tagger = Tagger(vocab, tag_map=tag_map) - parser = DependencyParser(vocab, actions=actions, features=features) - - for itn in range(15): + assert tag in vocab.morphology.tag_map, repr(tag) + tagger = Tagger(vocab) + parser = DependencyParser(vocab, actions=actions, features=features, L1=0.0) + + for itn in range(30): + loss = 0. for _, doc_sents in train_sents: for (ids, words, tags, heads, deps, ner), _ in doc_sents: doc = Doc(vocab, words=words) gold = GoldParse(doc, tags=tags, heads=heads, deps=deps) tagger(doc) - parser.update(doc, gold) + loss += parser.update(doc, gold, itn=itn) doc = Doc(vocab, words=words) tagger.update(doc, gold) random.shuffle(train_sents) scorer = score_model(vocab, tagger, parser, read_conllx(dev_loc)) - print('%d:\t%.3f\t%.3f' % (itn, scorer.uas, scorer.tags_acc)) + print('%d:\t%.3f\t%.3f\t%.3f' % (itn, loss, scorer.uas, scorer.tags_acc)) nlp = Language(vocab=vocab, tagger=tagger, parser=parser) nlp.end_training(model_dir) scorer = score_model(vocab, tagger, parser, read_conllx(dev_loc)) print('%d:\t%.3f\t%.3f\t%.3f' % (itn, scorer.uas, scorer.las, scorer.tags_acc)) - + if __name__ == '__main__': plac.call(main) diff --git a/corpora/en/clusters.txt b/corpora/en/clusters.txt deleted file mode 100644 index cdccf62ed..000000000 --- a/corpora/en/clusters.txt +++ /dev/null @@ -1,316709 +0,0 @@ -0000 Titoism 1 -0000 ---Credit 1 -0000 Disintegrated 1 -0000 Gulls 1 -0000 pinschers 1 -0000 cometh 1 -0000 5,520,404 1 -0000 guest. 1 -0000 Reread 1 -0000 Limericks 1 -0000 abuse. 1 -0000 igual 1 -0000 Redux 1 -0000 Septem 1 -0000 Hankies 1 -0000 Contains 1 -0000 whip-sawed 1 -0000 Feels 1 -0000 appropriate. 1 -0000 Downturn 1 -0000 Heighten 1 -0000 BONO 1 -0000 Ut 1 -0000 Hooverism 1 -0000 Ashiver 1 -0000 cytologists 1 -0000 Shareowners 1 -0000 Bulba 1 -0000 sures 1 -0000 lariats 1 -0000 Reopen 1 -0000 3,925,000 1 -0000 pildora 1 -0000 Scribblers 1 -0000 Pyasutsi 1 -0000 MOBY 1 -0000 Serail 1 -0000 Valjean 1 -0000 quo-plus 1 -0000 1650-1750 1 -0000 Hops 1 -0000 chops. 1 -0000 Emission 1 -0000 funnin 1 -0000 non-disclosures 1 -0000 while/ 1 -0000 sexy/ 1 -0000 body/ 1 -0000 amorosa 1 -0000 scoglio 1 -0000 makin 1 -0000 going. 1 -0000 VERY 1 -0000 Higher-Ups 1 -0000 suctioning 1 -0000 Kanal 1 -0000 wenches 1 -0000 Knocking. 1 -0000 1600-1700 1 -0000 Aqueous 1 -0000 rapido 1 -0000 Conspirators 1 -0000 Differential 1 -0000 Lase 1 -0000 Grigori 1 -0000 MEPC. 1 -0000 uprightness 1 -0000 politices 1 -0000 aigre 1 -0000 stinka 1 -0000 weren 1 -0000 minceur 1 -0000 malapportionment 1 -0000 Play-Along 1 -0000 HRI. 1 -0000 Hybridization 1 -0000 Stove 1 -0000 NYU. 1 -0000 funebre 1 -0000 Al-Nahl 1 -0000 DESPICABLE 1 -0000 stinger 1 -0000 Non-Lawyers 1 -0000 Borscht. 1 -0000 3:1 1 -0000 eatin 1 -0000 ESTABLISH 1 -0000 nerally. 1 -0000 Humoreske 1 -0000 Braca 1 -0000 Reconsidered 1 -0000 SCAT. 1 -0000 Rushed 1 -0000 cardboard. 1 -0000 dmonopols 1 -0000 class. 1 -0000 expires. 1 -0000 Nothings 1 -0000 Shrinks 1 -0000 1900-1950 1 -0000 Annihilator 1 -0000 Cometh 1 -0000 cow. 1 -0000 should. 1 -0000 Dorritt 1 -0000 Campfire 1 -0000 weird. 1 -0000 481,500 1 -0000 24024 1 -0000 44299 1 -0000 Tabito 1 -0000 account-holders 1 -0000 non-catastrophic 1 -0000 BALSAMS 1 -0000 Boit. 1 -0000 EXPENSES. 1 -0000 Oye 1 -0000 useless. 1 -0000 Jean-Bedel 1 -0000 Stingy 1 -0000 Partenavia 1 -0000 ellipse 1 -0000 seems/ 1 -0000 of/ 1 -0000 face. 1 -0000 effectors 1 -0000 Dendron 1 -0000 alatus 1 -0000 Termites 1 -0000 feed-dollar 1 -0000 spooler 1 -0000 Masontown-based 1 -0000 slowly. 1 -0000 DRAFTERS 1 -0000 Defers 1 -0000 vinaigrette 1 -0000 dithyrambs 1 -0000 Polkas 1 -0000 lait 1 -0000 birthin 1 -0000 Lentivirus 1 -0000 pneumophilia 1 -0000 word. 1 -0000 Bactrian 1 -0000 hidin 1 -0000 leg-wrappings 1 -0000 Overstepped 1 -0000 Mangoes 1 -0000 prejudicially 1 -0000 tierra 1 -0000 Mega-store 1 -0000 Heldenleben 1 -0000 sensualis 1 -0000 LEARNED 1 -0000 Moth 1 -0000 belongs. 1 -0000 maddens 1 -0000 nuit 1 -0000 Prachuab 1 -0000 Barabbas 1 -0000 Degrees 1 -0000 Fadduh 1 -0000 Infrastructures 1 -0000 mudwrestler 1 -0000 Spiral 1 -0000 -K 1 -0000 jay-zoo-DAH-s 1 -0000 ethos. 1 -0000 exoskeleton 1 -0000 Toady 1 -0000 intitative 1 -0000 L.A./ 1 -0000 capitalisme 1 -0000 perspective. 1 -0000 overlay. 1 -0000 II/Hang 1 -0000 Apple. 1 -0000 animality 1 -0000 self-underwritten 1 -0000 ALL. 1 -0000 getaways 1 -0000 Buzzing 1 -0000 classicus 1 -0000 halibut 1 -0000 Predispose 1 -0000 undergrad 1 -0000 Mishap 1 -0000 Independiente 1 -0000 offstage. 1 -0000 1850-1910 1 -0000 verlange 1 -0000 Chuvalo 1 -0000 blue-stocking 1 -0000 buddie 1 -0000 RECHECK 1 -0000 out-ness 1 -0000 17-Year-Olds 1 -0000 illegal. 1 -0000 answerability 1 -0000 Medine 1 -0000 Implicated 1 -0000 Misled 1 -0000 rippers 1 -0000 Bestows 1 -0000 replied. 1 -0000 bugger 1 -0000 Soars 1 -0000 already. 1 -0000 re-industrialization 1 -0000 Buns 1 -0000 MECO. 1 -0000 Trickling 1 -0000 Resuscitate 1 -0000 Dwellers 1 -0000 substantially. 1 -0000 Weevils 1 -0000 10:00/ 1 -0000 Republicans. 1 -0000 Gamson/Dance 1 -0000 Revisited. 1 -0000 ubcrbe 1 -0000 ipsos 1 -0000 intrest 1 -0000 out-and-out-theft 1 -0000 Fou 1 -0000 Exploits 1 -0000 ich 1 -0000 denk 1 -0000 gratings 1 -0000 Presages 1 -0000 piousness 1 -0000 Meeserables. 1 -0000 Lad 1 -0000 Nkululeko 1 -0000 Approves 1 -0000 boys. 1 -0000 Baiser 1 -0000 Porker 1 -0000 policiers 1 -0000 Deepen 1 -0000 fillin 1 -0000 olds. 1 -0000 Antartica 1 -0000 Mistook 1 -0000 quittin 1 -0000 Ripped 1 -0000 Krappa 1 -0000 Prognosticator 1 -0000 LEFT-HANDERS 1 -0000 Kassetten 1 -0000 SSIF. 1 -0000 Latch 1 -0000 Snowpacks 1 -0000 anything. 1 -0000 Slaw 1 -0000 here/And 1 -0000 Shengli 1 -0000 137,612 1 -0000 tearin 1 -0000 pira 1 -0000 Khin 1 -0000 romanized 1 -0000 interessant 1 -0000 wahs 1 -0000 Couture 1 -0000 rien 1 -0000 doble 1 -0000 terribles 1 -0000 slip. 1 -0000 Simon. 1 -0000 Founder. 1 -0000 FINANCIALLY 1 -0000 as-Sa 1 -0000 disinigration 1 -0000 git 1 -0000 Diavolo 1 -0000 Belgische 1 -0000 etage 1 -0000 reapers 1 -0000 khalodny 1 -0000 jack-in-the-boxes 1 -0000 nympho. 1 -0000 hermano 1 -0000 Anno 1 -0000 Prospers 1 -0000 Conquer 1 -0000 cantilenas 1 -0000 hoverin 1 -0000 Sing-Off 1 -0000 Duckula 1 -0000 operator. 1 -0000 vengefully 1 -0000 Lustschloss 1 -0000 emptors 1 -0000 M-4735 1 -0000 Mornin 1 -0000 UPI. 1 -0000 Pickups 1 -0000 Soeur 1 -0000 Rupture 1 -0000 mississippiensis 1 -0000 anonymity. 1 -0000 kickin 1 -0000 drop-the-handkerchief 1 -0000 trendy. 1 -0000 Commericals 1 -0000 Flamingos 1 -0000 liebe 1 -0000 KHD. 1 -0000 Catchier 1 -0000 Argumenty 1 -0000 watchers. 1 -0000 li 1 -0000 Eats 1 -0000 fluffs 1 -0000 18-49 1 -0000 self-caution 1 -0000 near-elimination 1 -0000 Pirata 1 -0000 Brucie 1 -0000 DULLARDS 1 -0000 puttin 1 -0000 enthusiast. 1 -0000 Novarum 1 -0000 1500-2000 1 -0000 perche 1 -0000 discendere 1 -0000 Lecouvreur. 1 -0000 Oughta 1 -0000 Ljubomir 1 -0000 Malade 1 -0000 assoluta 1 -0000 MFBZ. 1 -0000 TAXMAN 1 -0000 throughout. 1 -0000 HOPE. 1 -0000 Trasho 1 -0000 crassifolium 1 -0000 Top-of-the-Line 1 -0000 ticket. 1 -0000 Bisected 1 -0000 Prescribed 1 -0000 voting. 1 -0000 truley 1 -0000 brand. 1 -0000 Renovating 1 -0000 Boissons 1 -0000 NOTHIN 1 -0000 BLOWING 1 -0000 Ceremony 1 -0000 bidding. 1 -0000 hawsers 1 -0000 nurturance 1 -0000 bankrupt. 1 -0000 Wrecks 1 -0000 Bothers 1 -0000 Boys. 1 -0000 button. 1 -0000 vacation. 1 -0000 get-out 1 -0000 silly. 1 -0000 Marez 1 -0000 Christian-Marxism 1 -0000 Ichiban 1 -0000 Contend 1 -0000 strategies. 1 -0000 +122.4 1 -0000 Interned 1 -0000 patholgy 1 -0000 ashore. 1 -0000 Emigdio 1 -0000 WHOSE 1 -0000 Conceals 1 -0000 Necesarily 1 -0000 Adalbert 1 -0000 better. 1 -0000 Offend 1 -0000 Shui 1 -0000 BILS 1 -0000 Monday. 1 -0000 code. 1 -0000 reunions. 1 -0000 RS. 1 -0000 Court-Martial 1 -0000 El-Fateh 1 -0000 Greenwhich 1 -0000 Messiahs 1 -0000 Inquisitive 1 -0000 facism 1 -0000 Teferi 1 -0000 Frothy 1 -0000 trip. 1 -0000 hangin 1 -0000 248,200 1 -0000 happy. 1 -0000 died. 1 -0000 Winkerbean 1 -0000 pastits 1 -0000 Shalt 1 -0000 feelin 1 -0000 Life-Revco 1 -0000 Theodoros 1 -0000 Diable. 1 -0000 Jolie 1 -0000 poivre 1 -0000 Perspiration 1 -0000 spa-goers 1 -0000 Tycho 1 -0000 Grab-It-All 1 -0000 congratulation 1 -0000 implanters 1 -0000 Earns 1 -0000 Machines. 1 -0000 Swerve 1 -0000 Horseback 1 -0000 heavily. 1 -0000 Gusmao 1 -0000 stink. 1 -0000 Pigeons 1 -0000 Jaroslaw 1 -0000 CHEWING 1 -0000 1,087,875 1 -0000 Low-Rent 1 -0000 Man. 2 -0000 DEDUCTIONS. 2 -0000 ipsa 2 -0000 TAXES. 2 -0000 Necdet 2 -0000 SDS. 2 -0000 Cassius 2 -0000 Lawsuit 2 -0000 Leaps 2 -0000 sinensis 2 -0000 abroad. 2 -0000 Yak 2 -0000 kali 2 -0000 galbula 2 -0000 cristata 2 -0000 AGE. 2 -0000 Nibble 2 -0000 Benefited 2 -0000 Self-Healing 2 -0000 Flaw 2 -0000 Nachtmusik 2 -0000 Emptor 2 -0000 Drood 2 -0000 Barocco 2 -0000 Wlodzimierz 2 -0000 Regains 2 -0000 Stijl 2 -0000 Blankes 2 -0000 LTV. 2 -0000 alls 2 -0000 Lesley-Anne 2 -0000 ,, 2 -0000 MILK 2 -0000 Staked 2 -0000 Flop 2 -0000 Thinks 2 -0000 IV. 2 -0000 Canines 2 -0000 Wake-Up 2 -0000 developments. 2 -0000 Happens 2 -0000 Avoids 2 -0000 tutte 2 -0000 Business-Cost 2 -0000 Sum 2 -0000 Tongue 2 -0000 Solved 2 -0000 NLRB. 2 -0000 Appointees 2 -0000 Disturb 2 -0000 Raisonne 2 -0000 MGM. 2 -0000 oeil 2 -0000 Slept 3 -0000 Zealots 3 -0000 Saddles 3 -0000 !!! 3 -0000 WASN 3 -0000 Lyre 3 -0000 'Til 3 -0000 Lina 3 -0000 BS 3 -0000 with. 3 -0000 Lovin 3 -0000 Yer 3 -0000 Biz 3 -0000 Bush. 3 -0000 end. 3 -0000 Bother 3 -0000 Stuarda 3 -0000 meno 3 -0000 Lets 3 -0000 DIDN 4 -0000 talkin 4 -0000 Pose 4 -0000 jus 4 -0000 Tutte 4 -0000 Mahn 4 -0000 Reptile 4 -0000 Happen 5 -0000 GTE. 5 -0000 Learned 5 -0000 OK. 5 -0000 ME 6 -0000 MCI. 7 -0000 DNA. 7 -0000 HUD. 7 -0000 !! 9 -0000 SDI. 10 -0000 TROOPS 18 -0000 TV. 31 -0000 -RSB- 254 -0000 ? 18919 -0000 ! 2214 -0001 Inflatia 1 -0001 Oxford-based 1 -0001 reppresented 1 -0001 IRRADIATED 1 -0001 Infarction 1 -0001 BLAST 1 -0001 AXP 1 -0001 08/17/87 1 -0001 Malted 1 -0001 consitute 1 -0001 Willemien 1 -0001 KBS. 1 -0001 Testator 1 -0001 Kicks 1 -0001 Forvaltningsaktiebolaget 1 -0001 Euro-Shocker 1 -0001 4,182,083 1 -0001 899,062 1 -0001 Tomoya 1 -0001 Naif 1 -0001 NNY. 1 -0001 Remands 1 -0001 10/08/87 1 -0001 Kyota 1 -0001 lassoed 1 -0001 tov 1 -0001 29,945,762 1 -0001 aller 1 -0001 NYCB. 1 -0001 Momchilo 1 -0001 Wertpapiersparen 1 -0001 Etona 1 -0001 Ammar 1 -0001 Narong 1 -0001 Lifts 1 -0001 Heats 1 -0001 Pongsak 1 -0001 Poonam 1 -0001 CHICAGO-AREA 1 -0001 Bunnies 1 -0001 kanu 1 -0001 Argue 1 -0001 Debie 1 -0001 DNE 1 -0001 VA. 1 -0001 Puzzles 1 -0001 FDP. 1 -0001 Euro-Repackaged 1 -0001 Presage 1 -0001 Eurochart 1 -0001 Snobs 1 -0001 Carrol 1 -0001 Telma 1 -0001 Hidekazu 1 -0001 dran 1 -0001 Eye-ven 1 -0001 Mika 1 -0001 Chohyoh 1 -0001 Keiske 1 -0001 Videnovic 1 -0001 Maja 1 -0001 03/10/87 1 -0001 Anke 1 -0001 Philharmonisches 1 -0001 4,269 1 -0001 2,602 1 -0001 Rodel 1 -0001 Tidnigarnas 1 -0001 RNA. 1 -0001 Tomoyuki 1 -0001 Gerd-Juergen 1 -0001 Faouzi 1 -0001 quede 1 -0001 Lowel 1 -0001 219,664 1 -0001 Gerolamo 1 -0001 DVF. 1 -0001 NOW. 1 -0001 Creeps 1 -0001 sachem 1 -0001 Marjeanne 1 -0001 Luis-Angel 1 -0001 Radha 1 -0001 @@ 1 -0001 Matsujiro 1 -0001 Antos 1 -0001 Moli 1 -0001 Suzan 1 -0001 4,285,917 1 -0001 Ladybug 1 -0001 Gabu 1 -0001 Namio 1 -0001 wordage 1 -0001 132,290 1 -0001 massacre. 1 -0001 Charalambos 1 -0001 Hometowns 1 -0001 Bedsheet 1 -0001 4,624 1 -0001 Kimindo 1 -0001 Sherhan 1 -0001 Maadhava 1 -0001 Cottas 1 -0001 Chaovalit 1 -0001 Siddhi 1 -0001 Blayne 1 -0001 Smarts 1 -0001 Discovers 1 -0001 Yasuichi 1 -0001 UMB. 1 -0001 katchi 1 -0001 only. 1 -0001 WDG. 1 -0001 Einot 1 -0001 WITHHOLD 1 -0001 Margis 1 -0001 239,232 1 -0001 10,616,751 1 -0001 Laima 1 -0001 Mishal 1 -0001 CAE. 1 -0001 Bald/But 1 -0001 ELECTRICITY 1 -0001 Shanter 1 -0001 Weismiller 1 -0001 smooth-speaking 1 -0001 Shunji 1 -0001 Angelos 1 -0001 11,716,681 1 -0001 rep. 1 -0001 Corporate/investor 1 -0001 9,325,093 1 -0001 6,790 1 -0001 Ozker 1 -0001 shelter. 1 -0001 Pagni 1 -0001 Somboon 1 -0001 Ilhan 1 -0001 Anonim 1 -0001 Massinov 1 -0001 Pastures 1 -0001 Etsuro 1 -0001 Tino 1 -0001 Marcell 1 -0001 0.0239 1 -0001 Yasutoshi 1 -0001 Mikie 1 -0001 Giai 1 -0001 SAVOY 1 -0001 Elmar 1 -0001 Vickey 1 -0001 Cento 1 -0001 mah-zoh-VYET-skee 1 -0001 Type-B 1 -0001 XXII. 1 -0001 nthngel 1 -0001 Inches 1 -0001 Lame 1 -0001 thrombocytopenic 2 -0001 Styli 2 -0001 Nadir 2 -0001 Julianne 2 -0001 Akifumi 2 -0001 249,700 2 -0001 Flunks 2 -0001 Seh 2 -0001 Appoints 2 -0001 Shizuka 2 -0001 Sits 2 -0001 Chooses 2 -0001 MBA. 2 -0001 Arkady 2 -0001 Eiichiro 3 -0001 Dolf 4 -0001 AB. 5 -0001 EST. 7 -0001 Loses 9 -0001 USA. 11 -0001 EDT. 16 -0001 . 1787712 -0001 III. 16 -001000 camp-following 1 -001000 Ginevra 1 -001000 Elegans 1 -001000 5070448 1 -001000 effort-and 1 -001000 Creig 1 -001000 sacre 1 -001000 Pleaded 1 -001000 Subsystem 1 -001000 Norns 1 -001000 Relative-Value 1 -001000 Nariz 1 -001000 Spack 1 -001000 76er 1 -001000 D-E-F-A-U-L-T 1 -001000 Moussavi 1 -001000 reggia 1 -001000 bateador 1 -001000 homopolymers 1 -001000 Dallasite 1 -001000 dodderers 1 -001000 Magentas 1 -001000 Baluchi 1 -001000 17-8 1 -001000 growth-factors 1 -001000 Powerplus 1 -001000 Beery 1 -001000 pharmaceutical-grade 1 -001000 graupel 1 -001000 Hund 1 -001000 cornerman 1 -001000 Sole24 1 -001000 C2J 1 -001000 C2K 1 -001000 vanille 1 -001000 game-in 1 -001000 .286 1 -001000 suffragist 1 -001000 Intrigues 1 -001000 Manages 1 -001000 GIROZENTRALE 1 -001000 Fillmores 1 -001000 Smells 1 -001000 HUNTLEY 1 -001000 methysticum 1 -001000 Toodle-oo 1 -001000 Libere 1 -001000 Worsen 1 -001000 stones. 1 -001000 Papo 1 -001000 Tactic 1 -001000 logrollers 1 -001000 navy. 1 -001000 Chiao 2 -001000 Exchangeable 2 -001000 gapped 2 -001000 Farhad 2 -001000 Voisin 2 -001000 tuxes 2 -001000 ENTERS 2 -001000 Sole-24 2 -001000 Bayezid 2 -001000 pizzicatos 2 -001000 spake 2 -001000 WITHDREW 2 -001000 --is 2 -001000 Craze 2 -001000 Chose 2 -001000 antiperspirant 2 -001000 coarsely 2 -001000 89-104 2 -001000 Corp.-- 2 -001000 Poirot 2 -001000 --and 3 -001000 Petroliferos 3 -001000 THREATENED 3 -001000 , 2206890 -001000 Bahman 10 -00100100 destroyer-naval 1 -00100100 Yongsan 1 -00100100 folowing 1 -00100100 Pereulok 1 -00100100 1/2-deck 1 -00100100 Nusserwanji 1 -00100100 lb. 1 -00100100 re-proving 1 -00100100 Hebrew-lettered 1 -00100100 electrical-hydraulic 1 -00100100 silk-and-polyester 1 -00100100 handpainting 1 -00100100 Kombinat 1 -00100100 93,201 1 -00100100 51,919 1 -00100100 2,314 1 -00100100 3,364 1 -00100100 7,882 1 -00100100 .-based 1 -00100100 82,689 1 -00100100 2,856 1 -00100100 44,530 1 -00100100 Talyo 1 -00100100 7,943.7 1 -00100100 41,706 1 -00100100 3,778 1 -00100100 79,238 1 -00100100 analyst. 1 -00100100 parameter 1 -00100100 hazardous-material 1 -00100100 -Includes 1 -00100100 3,525 1 -00100100 49,415 1 -00100100 89,359 1 -00100100 85,575 1 -00100100 5,886 1 -00100100 46,445 1 -00100100 17,934.1 1 -00100100 7,481.6 1 -00100100 16,614.4 1 -00100100 Cmptr 1 -00100100 Eq 1 -00100100 Entm 1 -00100100 til 1 -00100100 96,628 1 -00100100 2,926 1 -00100100 54,932 1 -00100100 3,497 1 -00100100 277,987 1 -00100100 16,040.6 1 -00100100 17,012.4 1 -00100100 22,013.6 1 -00100100 10,355.3 1 -00100100 20,881.5 1 -00100100 685.0 1 -00100100 2,014.9 1 -00100100 1,494.1 1 -00100100 b8.98 1 -00100100 100,711 1 -00100100 57,407 1 -00100100 b11.70 1 -00100100 a9.71 1 -00100100 b9.18 1 -00100100 b8.91 1 -00100100 MWSE 1 -00100100 b11.89 1 -00100100 34,172 1 -00100100 67,985 1 -00100100 38,964 1 -00100100 75,435 1 -00100100 degrees. 2 -00100100 Shipyrd 2 -00100100 2,235 2 -00100100 3,792 2 -00100100 home-attendant 2 -00100100 Aviv-based 3 -00100100 Winbrown 5 -00100100 1071 5 -00100100 x-Includes 7 -00100100 + 372 -00100100 ; 42025 -00100100 - 412 -00100101 WEXC 1 -00100101 Accessibility 1 -00100101 bargain-hunted 1 -00100101 432-9906 1 -00100101 intitiate 1 -00100101 750-5776 1 -00100101 932-4227 1 -00100101 luffed 1 -00100101 broadsheets 1 -00100101 clinked 1 -00100101 961-8183 1 -00100101 Autograf 1 -00100101 Kapral 1 -00100101 Spiritualists 1 -00100101 half-staffed 1 -00100101 Rottweilers 1 -00100101 for-rent 1 -00100101 debentures. 1 -00100101 Gawky 1 -00100101 unseamanlike 1 -00100101 Hilarious 1 -00100101 FERVC 1 -00100101 dam-break 1 -00100101 yapping 1 -00100101 Dogmatic 1 -00100101 WBCS-AM 1 -00100101 WGR-AM 1 -00100101 SACILOR 1 -00100101 SQA-A 1 -00100101 misrouted 1 -00100101 Joffrette 1 -00100101 overinvoicing 1 -00100101 gin-buyers 1 -00100101 5-feet-4 1 -00100101 godowns 1 -00100101 sulfur-cured 1 -00100101 half-forgotten 1 -00100101 KMGI-FM 1 -00100101 stoicaly 1 -00100101 Unpredictable 1 -00100101 Marketing-promotion 1 -00100101 Gangly 1 -00100101 Ebdon 1 -00100101 price-markups 1 -00100101 Siegried 1 -00100101 finalizes 1 -00100101 well-wrapped 1 -00100101 aSante 1 -00100101 864-5400 1 -00100101 Jailings 1 -00100101 stage-four 1 -00100101 Caveats 1 -00100101 Tanned 1 -00100101 overedited 1 -00100101 Massachusetts-born 1 -00100101 heem 1 -00100101 1988-models 1 -00100101 Malfunctions 1 -00100101 BC117 1 -00100101 hedge-buying 1 -00100101 Karajannis 1 -00100101 Aprotinine 1 -00100101 3,675 1 -00100101 Rimbaud 1 -00100101 WARILY 1 -00100101 Mustian 1 -00100101 Qwinzy 1 -00100101 TMSTA 1 -00100101 Dullness 1 -00100101 8825093 1 -00100101 1099-R 1 -00100101 IRAFV 1 -00100101 deplaned 2 -00100101 00-952774 2 -00100101 minkes 2 -00100101 exonerates 2 -00100101 Syrup 2 -00100101 compassionately 2 -00100101 unloosed 2 -00100101 Corpses 2 -00100101 Excursions 2 -00100101 teasers 2 -00100101 WMAQ 2 -00100101 HCM 2 -00100101 Scan 3 -00100101 clank 3 -00100101 Amati 3 -00100101 IROC-Z 3 -00100101 Manohar 3 -00100101 ELECTION 3 -00100101 echos 3 -00100101 Carlotta 4 -00100101 cinched 6 -00100101 Recognized 6 -00100101 BEGAN 10 -00100101 Clever 11 -00100101 blared 13 -00100101 Agrees 20 -00100101 -- 94774 -00100101 HAVE 38 -00100110 Whistler. 1 -00100110 Nippon-Brazil 1 -00100110 Finanzanalyse 1 -00100110 Shuns 1 -00100110 Karnival 1 -00100110 Autologous 1 -00100110 Funis 1 -00100110 Sallee 1 -00100110 bodyslammed 1 -00100110 Hermine 1 -00100110 705.4 1 -00100110 shootup 1 -00100110 3.5127 1 -00100110 2.8218 1 -00100110 Sivaporn 1 -00100110 Mitsunori 1 -00100110 Fredy 1 -00100110 Maintains 1 -00100110 Tega 1 -00100110 Harrison. 1 -00100110 10825 1 -00100110 small-school 1 -00100110 Anniversario 1 -00100110 Ideonomical 1 -00100110 MODERATES 1 -00100110 Ailanthus 1 -00100110 Malcolmn 1 -00100110 3.5273 1 -00100110 3.4956 1 -00100110 2.8345 1 -00100110 2.8090 1 -00100110 descries 1 -00100110 subscribershl 1 -00100110 Fredegond 1 -00100110 Kati 1 -00100110 Luftfahttechnik 1 -00100110 DRYCLEAN 1 -00100110 clA 1 -00100110 -44.3 1 -00100110 Wickhams 1 -00100110 GERALD 1 -00100110 Pocketing 1 -00100110 Tsuneta 1 -00100110 ERWIN 1 -00100110 Veronique 1 -00100110 YORK-James 1 -00100110 ear-marked 1 -00100110 116,228 1 -00100110 society-gossip 1 -00100110 31,707 1 -00100110 64,205 1 -00100110 hel 1 -00100110 Ecton 1 -00100110 Killips 1 -00100110 649-2 1 -00100110 BLENDING 1 -00100110 Karkazis 1 -00100110 desiderat 1 -00100110 saidJohn 1 -00100110 19,152.0 1 -00100110 Mitsuhiro 1 -00100110 Dev 1 -00100110 Nomo 1 -00100110 Dru 1 -00100110 .94 1 -00100110 e-in 1 -00100110 20,110.9 1 -00100110 1,759.6 1 -00100110 Ferrous 1 -00100110 Lorito 1 -00100110 estancias 1 -00100110 7,730 1 -00100110 4344 1 -00100110 Kikuo 1 -00100110 Geotechnical 1 -00100110 Khawaja 1 -00100110 Elvis-shaped 1 -00100110 Lhenya 1 -00100110 Emel 1 -00100110 Soraya 1 -00100110 cos 1 -00100110 Territory/Western 1 -00100110 nobis 1 -00100110 rain. 2 -00100110 Ruslander 2 -00100110 Lyford 2 -00100110 TELL 2 -00100110 Odis 2 -00100110 Lucile 2 -00100110 Versus 2 -00100110 Riken 2 -00100110 PlyGem 2 -00100110 Patio 2 -00100110 Dusen 2 -00100110 Creates 2 -00100110 CANAL 2 -00100110 LAURENCE 2 -00100110 Autoveicoli 2 -00100110 Mailed 2 -00100110 Musicale 2 -00100110 Pola 2 -00100110 Inds 3 -00100110 .27 3 -00100110 Kal 3 -00100110 ar 3 -00100110 ## 3 -00100110 Auguste 5 -00100110 Nicodemo 7 -00100110 Se 7 -00100110 Bless 10 -00100110 ABOUT 15 -00100110 -LRB- 49075 -00100110 Than 51 -00100111 1040-OCR 1 -00100111 venturists 1 -00100111 Chymic 1 -00100111 updating. 1 -00100111 GAMBIT 1 -00100111 Zeffirelli-designed 1 -00100111 L.V. 1 -00100111 wrote. 1 -00100111 claustrophic 1 -00100111 D-flat 1 -00100111 WHOLESALER 1 -00100111 buddleia 1 -00100111 Soared 1 -00100111 Heui 1 -00100111 Brehmer 1 -00100111 wood-and-leather 1 -00100111 dealer. 1 -00100111 BALLS 1 -00100111 warns. 1 -00100111 Shichiro 1 -00100111 ship. 1 -00100111 Terdema 1 -00100111 EARN 1 -00100111 Danah 1 -00100111 programs. 1 -00100111 couldn 1 -00100111 Hocart 1 -00100111 Co-Prosperity 1 -00100111 cannonball 1 -00100111 UP. 1 -00100111 100,000-to-250,000-square-foot 1 -00100111 SHOOK 1 -00100111 SERVICERS 1 -00100111 in-house. 1 -00100111 Vbased 1 -00100111 TRADITIONALLY 1 -00100111 Definition 1 -00100111 page-story 1 -00100111 Chemifix 1 -00100111 apartheid. 1 -00100111 reads. 1 -00100111 Vineyards. 1 -00100111 harvest. 1 -00100111 Grenadiers 1 -00100111 mannequin/ 1 -00100111 againto 1 -00100111 mealymouths 1 -00100111 DISTRICT 1 -00100111 assent. 1 -00100111 listens. 1 -00100111 GAMBLED 1 -00100111 GROW. 1 -00100111 flat-footed. 1 -00100111 WELL. 1 -00100111 living-room-size 1 -00100111 Proprietorships 1 -00100111 Burnis 1 -00100111 Penda 1 -00100111 Thatcher-type 1 -00100111 SPREAD. 1 -00100111 Exceeds 1 -00100111 ZIM 1 -00100111 Riles 1 -00100111 RESIST 1 -00100111 EXPLAINED 1 -00100111 trader. 1 -00100111 Crisanti. 1 -00100111 carol 1 -00100111 court-induced 1 -00100111 56'55 1 -00100111 income-aid 1 -00100111 ALIVE 1 -00100111 ANSWERED 1 -00100111 slot. 1 -00100111 insists. 1 -00100111 prof. 1 -00100111 Gilvin 1 -00100111 reverse. 1 -00100111 ENCORE 1 -00100111 Ilobasco 1 -00100111 RESUMES. 1 -00100111 Offender-Drug 1 -00100111 WDH. 1 -00100111 Leann 1 -00100111 746,792 1 -00100111 Gould. 1 -00100111 STOCKS. 1 -00100111 BACKED 1 -00100111 548,986 1 -00100111 BOG 1 -00100111 CDE. 1 -00100111 HADN 1 -00100111 hemerocallis 1 -00100111 MILLION. 1 -00100111 spokesman. 1 -00100111 YEUNG 1 -00100111 tightly. 1 -00100111 ECHC 1 -00100111 bidder. 1 -00100111 territories. 1 -00100111 long-circulating 1 -00100111 mood. 1 -00100111 GRASS-ROOTS 1 -00100111 Agapito 1 -00100111 67,349 1 -00100111 NOVELIST 1 -00100111 LASHED 1 -00100111 FOLK 1 -00100111 Elyakim 1 -00100111 undenominated 1 -00100111 overmatch 1 -00100111 Morihisa 1 -00100111 scarab 1 -00100111 neocountry 1 -00100111 singalong 1 -00100111 outpitched 1 -00100111 639,975 1 -00100111 bizarre. 1 -00100111 water-lily 1 -00100111 -1.581 1 -00100111 import-free 1 -00100111 Pothole 1 -00100111 REBATE 1 -00100111 BASKETBALL 1 -00100111 -c 1 -00100111 Marteau 1 -00100111 Autumnal 1 -00100111 2,793 1 -00100111 turnovers. 1 -00100111 Irgeen 1 -00100111 Conway. 1 -00100111 FISHIN 1 -00100111 18-month-to-two-year 1 -00100111 Unwarranted 1 -00100111 DISNEYLAND 1 -00100111 street. 1 -00100111 Aloft 1 -00100111 PUNITIVE 1 -00100111 SIL. 1 -00100111 BOURSIN 1 -00100111 Spouse. 1 -00100111 Chaplin-like 1 -00100111 Jeroboam 1 -00100111 Indicate 1 -00100111 HMO-financed 1 -00100111 COULDN 1 -00100111 Suemeg 1 -00100111 SURROUNDING 1 -00100111 pleasure. 1 -00100111 DRAIN 1 -00100111 Theroux. 1 -00100111 KPE. 1 -00100111 MERRELL 1 -00100111 Handwork 1 -00100111 100.00 1 -00100111 POET 1 -00100111 DWIGHT 1 -00100111 Rugunda. 1 -00100111 saereaivl 1 -00100111 littleness. 1 -00100111 Fatah-trained 1 -00100111 Vary 2 -00100111 OSHA. 2 -00100111 ROYALTY 2 -00100111 FEEL 2 -00100111 REMAINS 2 -00100111 driver. 2 -00100111 SOLD 2 -00100111 NFL. 2 -00100111 Poong 2 -00100111 Affect 2 -00100111 MIGHT 2 -00100111 Climbs 2 -00100111 LAACO 2 -00100111 PRAISED 2 -00100111 Database 2 -00100111 RECOMMENDATION 3 -00100111 Draws 3 -00100111 recalls. 3 -00100111 DISCUSSED 3 -00100111 FARE 3 -00100111 Brings 4 -00100111 IBP. 5 -00100111 JITTERS 6 -00100111 LEHMAN 9 -00100111 WORRIES 9 -00100111 = 10 -00100111 : 51250 -00100111 FELL 13 -00101000 out-performs 1 -00101000 technology-security 1 -00101000 carrier-led 1 -00101000 infra-red 1 -00101000 virology-and 1 -00101000 pricesand 1 -00101000 ever-so-properly 1 -00101000 hole-in-the-wall 1 -00101000 EH-60 1 -00101000 directeur 1 -00101000 Queensize 1 -00101000 Kensetsu 1 -00101000 DREW 1 -00101000 aluminate 2 -00101000 technology-control 2 -00101000 reignites 2 -00101000 lounge-lizard 2 -00101000 Bugatti 2 -00101000 Suspends 2 -00101000 V/O 3 -00101000 profiling 6 -00101000 shortens 8 -00101000 cum 11 -00101000 and 743332 -00101000 and/or 162 -0010100100 uncomic 1 -0010100100 beach-and 1 -0010100100 mini-movies 1 -0010100100 indictated 1 -0010100100 neo-hippie 1 -0010100100 minces 1 -0010100100 contrives 1 -0010100100 alternations 1 -0010100100 obbligatos 1 -0010100100 hemetin 1 -0010100100 Mr.Pickens 1 -0010100100 three-putting 1 -0010100100 risktaking 1 -0010100100 howcome 1 -0010100100 constables 1 -0010100100 Tark 2 -0010100100 Letzebuerg 2 -0010100100 Sebastos 2 -0010100100 WHTZ 2 -0010100100 C-W 2 -0010100100 SECCA 3 -0010100100 discoursing 3 -0010100100 Arifin 3 -0010100100 Branwell 3 -0010100100 VAG 4 -0010100100 para 4 -0010100100 but 73730 -0010100100 wherein 15 -001010010100 reined-in 1 -001010010100 long-before 1 -001010010100 ejects 1 -001010010100 lower-intensity 1 -001010010100 Lydenburg 1 -001010010100 rubber-band 1 -001010010100 then-Yale 1 -001010010100 -as 1 -001010010100 non-offsetting 1 -001010010100 daily-double 1 -001010010100 Oestgoeta 1 -001010010100 reconceptualizes 1 -001010010100 ex-junkie 1 -001010010100 nuzzling 1 -001010010100 Biostatistical 1 -001010010100 front-porch 1 -001010010100 Butterhead 1 -001010010100 marketizing 1 -001010010100 then-state 1 -001010010100 38,000-man 1 -001010010100 365,025 1 -001010010100 Reiterated 1 -001010010100 intranasal 1 -001010010100 mega-developer 1 -001010010100 2,594,595 1 -001010010100 re-enforcing 1 -001010010100 tie-died 1 -001010010100 20-gallon 1 -001010010100 N.C.-ased 1 -001010010100 JF 1 -001010010100 better-schooled 1 -001010010100 de-funded 1 -001010010100 one-fiftieth 1 -001010010100 checkmating 1 -001010010100 business-suit-clad 1 -001010010100 low-capacity 1 -001010010100 mineral-oil 1 -001010010100 Enjoys 1 -001010010100 D.F.A. 1 -001010010100 stir-frying 1 -001010010100 super-dry 1 -001010010100 9-foot-long 1 -001010010100 unaccented 1 -001010010100 repurchse 1 -001010010100 T&C 1 -001010010100 DESTROYING 1 -001010010100 3,824,000-kilowatt 1 -001010010100 forever-reviewing-the-troops 1 -001010010100 seldom-traded 1 -001010010100 Gioachino 1 -001010010100 begetting 1 -001010010100 9,250,000 1 -001010010100 Reconstitute 1 -001010010100 Revitalize 1 -001010010100 non-inflating 1 -001010010100 California-manufactured 1 -001010010100 multitoned 1 -001010010100 ex-basketball 1 -001010010100 Amigo 1 -001010010100 slap-you-on-the-back 1 -001010010100 gravel-throated 1 -001010010100 chastizing 1 -001010010100 gabbles 1 -001010010100 refuse-derived 1 -001010010100 amputating 1 -001010010100 Vancenase 1 -001010010100 radioactive-tagged 1 -001010010100 buy-at-any-price 1 -001010010100 no-leadership 1 -001010010100 -but 1 -001010010100 telemarketing-fraud 1 -001010010100 on-the-edge 1 -001010010100 headline-fitting 1 -001010010100 1965-1986 1 -001010010100 461,714 1 -001010010100 circulation-stopping 1 -001010010100 324,744 1 -001010010100 besneakered 1 -001010010100 clucked 1 -001010010100 1986-the 1 -001010010100 Spain-dominated 1 -001010010100 Achieved 1 -001010010100 unbolted 1 -001010010100 /Provides 1 -001010010100 esp. 1 -001010010100 190-proof 1 -001010010100 vacation-business 1 -001010010100 legitimatized 1 -001010010100 stilling 1 -001010010100 unplugs 1 -001010010100 denaturing 1 -001010010100 post-cruzado 1 -001010010100 267,198 1 -001010010100 Two-hundred 1 -001010010100 high-nutrition 1 -001010010100 free-base 1 -001010010100 test-counting 1 -001010010100 2,000-person-strong 1 -001010010100 pre-supposes 1 -001010010100 bone-wearing 1 -001010010100 Holliday/ 1 -001010010100 Naughty 1 -001010010100 1395 1 -001010010100 1,212,000 1 -001010010100 quick-to-prepare 1 -001010010100 4,675,435 1 -001010010100 9-by-12 1 -001010010100 pantomiming 1 -001010010100 once-patient 1 -001010010100 nuclearizing 1 -001010010100 hydrated 1 -001010010100 Chico-San 1 -001010010100 outgeneraling 1 -001010010100 Regulating 1 -001010010100 clutters 1 -001010010100 2,793,875 1 -001010010100 eastern-most 1 -001010010100 uncoiled 1 -001010010100 fellow-Texan 1 -001010010100 208-pound 1 -001010010100 Troxey 1 -001010010100 continung 1 -001010010100 Skanaviska 1 -001010010100 Enable 1 -001010010100 700-acre 1 -001010010100 predciting 1 -001010010100 otherwise-comparable 1 -001010010100 regrooms 1 -001010010100 lower-resistance 1 -001010010100 3,728 1 -001010010100 resketched 1 -001010010100 2,361,112 1 -001010010100 Masseria 1 -001010010100 bemustached 1 -001010010100 dedspite 1 -001010010100 begot 1 -001010010100 capital-stretching 1 -001010010100 10-inch-wide 1 -001010010100 acheived 1 -001010010100 ill-cut 1 -001010010100 head-butting 1 -001010010100 refecting 1 -001010010100 10,660,800 1 -001010010100 CHEM 1 -001010010100 seconding 1 -001010010100 readopting 1 -001010010100 1328 1 -001010010100 faux-Democrats 1 -001010010100 JutlandFunen 1 -001010010100 ursodeoxycholic 1 -001010010100 Viennese-style 1 -001010010100 booby-trapping 1 -001010010100 1,200-for 1 -001010010100 life-filled 1 -001010010100 sayeth 1 -001010010100 company-town 1 -001010010100 cadges 1 -001010010100 black-striped 1 -001010010100 unhousebroken 1 -001010010100 CareFree 1 -001010010100 tousling 1 -001010010100 Jenifer 1 -001010010100 Lebanese-controlled 1 -001010010100 Inpex 1 -001010010100 Sunda 1 -001010010100 skippering 1 -001010010100 elucidates 1 -001010010100 AllenBradley 1 -001010010100 feature-packed 1 -001010010100 suceeding 1 -001010010100 classicize 1 -001010010100 Mid-career 1 -001010010100 intervention-shy 1 -001010010100 Interinsurance 1 -001010010100 soft-footed 1 -001010010100 Fernanda 1 -001010010100 Instill 1 -001010010100 supermodel 1 -001010010100 Communist-designed 1 -001010010100 barrel-aged 1 -001010010100 sinister-looking 1 -001010010100 Pedigree-contemplating 1 -001010010100 1,813,363 1 -001010010100 W.O. 1 -001010010100 R.P.M. 1 -001010010100 commuter-type 1 -001010010100 Recoup 1 -001010010100 slow-changing 1 -001010010100 wheeling-and-dealing 1 -001010010100 breadfruit-carting 1 -001010010100 125-bed 1 -001010010100 Revinex 1 -001010010100 Mollye 1 -001010010100 Tagayasu 1 -001010010100 Pilipinas 1 -001010010100 vide 1 -001010010100 R-Vee 1 -001010010100 Krung 1 -001010010100 much-over-budget 1 -001010010100 enshrouding 1 -001010010100 2537 1 -001010010100 salt-free 1 -001010010100 ectopic 1 -001010010100 cell-transplant 1 -001010010100 less-offensive 1 -001010010100 sycamore 1 -001010010100 lower-performance 1 -001010010100 CH-1201 1 -001010010100 code-naming 1 -001010010100 no-spaghetti 1 -001010010100 contining 1 -001010010100 B.C.-643 1 -001010010100 self-determining 1 -001010010100 broad-gauge 1 -001010010100 scenting 1 -001010010100 Naomichi 1 -001010010100 reconnoiter 1 -001010010100 8-point 1 -001010010100 domesticates 1 -001010010100 Messerschmidt-Boelkow 1 -001010010100 conference-calling 1 -001010010100 all-federal 1 -001010010100 168803 1 -001010010100 outputbased 1 -001010010100 domino-effect 1 -001010010100 dumbfounding 1 -001010010100 Directs 1 -001010010100 salsafied 1 -001010010100 hand-linked 1 -001010010100 business-insurance 1 -001010010100 Leoluca 1 -001010010100 21-branch 1 -001010010100 harder-to-make 1 -001010010100 co-curated 1 -001010010100 club-class 1 -001010010100 waggled 1 -001010010100 protracts 1 -001010010100 Oei 1 -001010010100 vilifies 1 -001010010100 pre-Duarte 1 -001010010100 S.E.H. 1 -001010010100 LEAVING 1 -001010010100 gadget-filled 1 -001010010100 10,551 1 -001010010100 Borj 1 -001010010100 reorganizational 1 -001010010100 Schizophrenic 1 -001010010100 M.Ed 1 -001010010100 Extolling 1 -001010010100 Othal 1 -001010010100 Announces 1 -001010010100 bully-boy 1 -001010010100 carbon-impregnated 1 -001010010100 klutz-proof 1 -001010010100 315-pound 1 -001010010100 coffee-gulping 1 -001010010100 undisposable 1 -001010010100 prefacing 1 -001010010100 AZT-type 1 -001010010100 prpbably 1 -001010010100 Michelin/ 1 -001010010100 seniority-system 1 -001010010100 TRS-80 1 -001010010100 coedited 1 -001010010100 Zug-based 1 -001010010100 ascorbic 1 -001010010100 French-inspired 1 -001010010100 teeth-grinding 1 -001010010100 oil-poor 1 -001010010100 time-blackened 1 -001010010100 let's-get-a-consensus 1 -001010010100 37,000-ton 1 -001010010100 21-foot-long 1 -001010010100 Integrate 2 -001010010100 1309 2 -001010010100 Yetsuo 2 -001010010100 2,076,165 2 -001010010100 a.k.a 2 -001010010100 distrusting 2 -001010010100 elating 2 -001010010100 Hallee 2 -001010010100 miring 2 -001010010100 self-leveling 2 -001010010100 submarine-detecting 2 -001010010100 outdueling 2 -001010010100 Texas.-based 2 -001010010100 Cassiel 2 -001010010100 incuding 2 -001010010100 reelecting 2 -001010010100 outshining 3 -001010010100 sleepy-eyed 3 -001010010100 Information/service 3 -001010010100 ext. 3 -001010010100 7227 3 -001010010100 Soichiro 4 -001010010100 Liberalizing 4 -001010010100 te 4 -001010010100 hefting 4 -001010010100 IL 5 -001010010100 aka 5 -001010010100 nee 7 -001010010100 presaging 7 -001010010100 obviating 7 -001010010100 Permit 8 -001010010100 excepting 14 -001010010100 complementing 14 -001010010100 necessitating 14 -001010010100 rivaling 15 -001010010100 dwarfing 19 -001010010100 surpassing 169 -001010010100 excluding 672 -001010010100 citing 1793 -001010010100 including 19035 -001010010100 via 2810 -001010010101 Ont.-based 1 -001010010101 many-hued 1 -001010010101 bullet-ridden 1 -001010010101 Pa-based 1 -001010010101 plain-folks 1 -001010010101 non-glamorous 1 -001010010101 fix-up 1 -001010010101 angular-boxy 1 -001010010101 state-supplied 1 -001010010101 cast-of-thousands 1 -001010010101 gunmetal-gray 1 -001010010101 pat-you-on-the-back 1 -001010010101 turnof-the-century 1 -001010010101 super-absorbing 1 -001010010101 Nixon-vintage 1 -001010010101 50-stunt 1 -001010010101 half-dog 1 -001010010101 semi-military 1 -001010010101 paint-store 1 -001010010101 semi-ornate 1 -001010010101 soul-killing 1 -001010010101 back-lit 1 -001010010101 home-sweep 1 -001010010101 20-megahertz 1 -001010010101 16-megahertz 1 -001010010101 Levelland-based 1 -001010010101 second-inning 1 -001010010101 less-strenuous 1 -001010010101 Redbirds 1 -001010010101 222,930,000 1 -001010010101 two-station 1 -001010010101 steel-supply 1 -001010010101 Foodorama 1 -001010010101 paper-like 1 -001010010101 245-pound 1 -001010010101 highway-equipment 1 -001010010101 10-exam 1 -001010010101 professional-publishing 1 -001010010101 freethinking 1 -001010010101 IAM/Secure 1 -001010010101 Hammerschmidt 1 -001010010101 208,133,100 1 -001010010101 takeover-generated 1 -001010010101 India-based 1 -001010010101 236,814 1 -001010010101 table-tennis 1 -001010010101 rink-rat 1 -001010010101 low-rimmed 1 -001010010101 wellness-related 1 -001010010101 risk-conscious 1 -001010010101 parallel-strand 1 -001010010101 division-based 1 -001010010101 25,350 1 -001010010101 franchise-oriented 1 -001010010101 ship-killing 1 -001010010101 skimmed-milk 1 -001010010101 Calif.-born 1 -001010010101 class-ridden 1 -001010010101 storage-bin 1 -001010010101 terror-free 1 -001010010101 automotive-window 1 -001010010101 nonretail 1 -001010010101 Catholic-oriented 1 -001010010101 680,000-square-foot 1 -001010010101 good-sense 1 -001010010101 Kirkland-based 1 -001010010101 acknowleding 1 -001010010101 260-megawatt 1 -001010010101 34-mile 1 -001010010101 individual-income-tax 1 -001010010101 gingery 1 -001010010101 non-escrowed 1 -001010010101 low-land 1 -001010010101 gritty-voiced 1 -001010010101 shelter-related 1 -001010010101 NVF-controlled 1 -001010010101 12th-ranked 1 -001010010101 peat-fired 1 -001010010101 deep-socketed 1 -001010010101 175-horsepower 1 -001010010101 silent-screen 1 -001010010101 super-Yalta 1 -001010010101 four-wagon 1 -001010010101 eight-bar 1 -001010010101 electric-red 1 -001010010101 towel-dispenser 1 -001010010101 dead-white 1 -001010010101 regular-shaped 1 -001010010101 spike-marked 1 -001010010101 matterlike 1 -001010010101 grandchild-producing 1 -001010010101 blue-on-blue 1 -001010010101 few-frills 1 -001010010101 three-piece-suited 1 -001010010101 Bralley-Willett 1 -001010010101 108,584 1 -001010010101 multi-hosted 1 -001010010101 generic-goods 1 -001010010101 tough-leadership 1 -001010010101 well-sprung 1 -001010010101 McGovern-style 1 -001010010101 brass-bed 1 -001010010101 five-stadium 1 -001010010101 KNT 1 -001010010101 less-objectionable 1 -001010010101 HookSupeRx 1 -001010010101 Grieving 1 -001010010101 law-skirting 1 -001010010101 non-radar 1 -001010010101 403,105 1 -001010010101 housing-density 1 -001010010101 10-room 1 -001010010101 nine-foot-wide 1 -001010010101 bug-like 1 -001010010101 Houston-bred 1 -001010010101 unfishy 1 -001010010101 358,785 1 -001010010101 preloaded 1 -001010010101 return-to-tradition 1 -001010010101 solarpowered 1 -001010010101 Bisquick 1 -001010010101 4,633,152 1 -001010010101 atom-plant 1 -001010010101 well-considered 1 -001010010101 market-inspired 1 -001010010101 in-town 1 -001010010101 motor-inn 1 -001010010101 overarmed 1 -001010010101 auxilliary 1 -001010010101 blond-tinted 1 -001010010101 single-breadwinner 1 -001010010101 1,264,087 1 -001010010101 uncoerced 1 -001010010101 902,228 1 -001010010101 lubricious 1 -001010010101 Audio/ 1 -001010010101 black-streaked 1 -001010010101 burnt-orange 1 -001010010101 unflavored 1 -001010010101 schoolwide 1 -001010010101 toxin-containing 1 -001010010101 4,681,516 1 -001010010101 human-backboard 1 -001010010101 easier-to-handle 1 -001010010101 chain-like 1 -001010010101 810,000-share 1 -001010010101 600,000-share 1 -001010010101 computer-jockey 1 -001010010101 densely-packed 1 -001010010101 GI-donated 1 -001010010101 storm-drainage 1 -001010010101 wirelike 1 -001010010101 almost-obsessive 1 -001010010101 multi-shift 1 -001010010101 down-tomorrow 1 -001010010101 scrappier 1 -001010010101 28,564,723 1 -001010010101 107,167 1 -001010010101 lispy 1 -001010010101 18,842,200 1 -001010010101 quasi-philosophical 1 -001010010101 CBR 1 -001010010101 688,750 1 -001010010101 foul-tasting 1 -001010010101 misfocused 1 -001010010101 532,676 1 -001010010101 supermarket-discount 1 -001010010101 gimme-gimme 1 -001010010101 non-export-related 1 -001010010101 out-of-tolerance 1 -001010010101 fragile-looking 1 -001010010101 uninflected 1 -001010010101 517,004 1 -001010010101 factory-style 1 -001010010101 long-distance-transmission 1 -001010010101 drug-products 1 -001010010101 hipper-than-thou 1 -001010010101 hawklike 1 -001010010101 994,400 1 -001010010101 wood-trimmed 1 -001010010101 porcupine-like 1 -001010010101 bar-room 1 -001010010101 20-gauge 1 -001010010101 .58 1 -001010010101 laser-systems 1 -001010010101 Bass-owned 1 -001010010101 never-arriving 1 -001010010101 O'Rourke-type 1 -001010010101 86-foot 1 -001010010101 9,706,000 1 -001010010101 457,660 1 -001010010101 Miss.-nuclear 1 -001010010101 N.C.based 1 -001010010101 Singh-distributed 1 -001010010101 stuck-on 1 -001010010101 tails-I-lose 1 -001010010101 economic-crimes 1 -001010010101 fraud-protection 1 -001010010101 liver-red 1 -001010010101 unhomogenized 1 -001010010101 wise-man 1 -001010010101 multiseed 1 -001010010101 onshore-oil 1 -001010010101 opinion-research 1 -001010010101 Kickapoo 1 -001010010101 112-nation 1 -001010010101 Pauliasi 1 -001010010101 listen-here 1 -001010010101 196-square-yard 1 -001010010101 clear-glass 1 -001010010101 parkside 1 -001010010101 no-chemicals 1 -001010010101 low-investment 1 -001010010101 mother-and-child 1 -001010010101 532,734 1 -001010010101 military-oriented 1 -001010010101 416,500 1 -001010010101 Anaheim-based 1 -001010010101 private-operator 1 -001010010101 loyalty-building 1 -001010010101 422,832 1 -001010010101 Perushaan 1 -001010010101 Warrego 1 -001010010101 out-in-right-field 1 -001010010101 barn-door-size 1 -001010010101 rank-smelling 1 -001010010101 economy-model 1 -001010010101 prairie-chicken 1 -001010010101 crew-cutted 1 -001010010101 Peoria-area 1 -001010010101 over-treatment 1 -001010010101 training-school 1 -001010010101 sitar 1 -001010010101 NASA-produced 1 -001010010101 4-ounce 1 -001010010101 pre-caught 1 -001010010101 image-tarnishing 1 -001010010101 trumpet-filled 1 -001010010101 memory-enhancing 1 -001010010101 384,615 1 -001010010101 780,450 1 -001010010101 54,264 1 -001010010101 semi-obscene 1 -001010010101 Balanchine-inspired 1 -001010010101 1,090,000 1 -001010010101 beady-eyed 1 -001010010101 low-carbohydrate 1 -001010010101 Magee-Womens 1 -001010010101 Canadiancontrolled 1 -001010010101 bonier 1 -001010010101 4,767,895 1 -001010010101 PMZ 1 -001010010101 optimizes 1 -001010010101 Moirs 1 -001010010101 unvented 1 -001010010101 thermal-activated 1 -001010010101 Ark.based 1 -001010010101 asbestos-mine 1 -001010010101 grosgrain 1 -001010010101 fumeless 1 -001010010101 tobacco-stained 1 -001010010101 dye-laser 1 -001010010101 Ericsson-designed 1 -001010010101 5,165,000 1 -001010010101 photo-heavy 1 -001010010101 antique-guide 1 -001010010101 more-soothing 1 -001010010101 1.7-ounce 1 -001010010101 13.4-ounce 1 -001010010101 tradition-driven 1 -001010010101 370-person 1 -001010010101 106,251 1 -001010010101 backwoodsy 1 -001010010101 Texasbased 1 -001010010101 114,000-square-foot 1 -001010010101 chocolate-dipped 1 -001010010101 incubator-consulting 1 -001010010101 hand-cramping 1 -001010010101 boy-and-girl-fall-in-love 1 -001010010101 par-70 1 -001010010101 balloon-like 1 -001010010101 2,050,000 1 -001010010101 flower-by-wire 1 -001010010101 gone-tomorrow 1 -001010010101 nontherapeutic 1 -001010010101 Intaglio 1 -001010010101 Clebe 1 -001010010101 pro-alliance 1 -001010010101 Ohio-truck 1 -001010010101 raisin-product 1 -001010010101 mattress-covered 1 -001010010101 pattern-on-pattern 1 -001010010101 108-bed 1 -001010010101 photo-supply 1 -001010010101 inflation-warning 1 -001010010101 apple-wine 1 -001010010101 sermon-like 1 -001010010101 white-faced 1 -001010010101 Blames 1 -001010010101 three-boat 1 -001010010101 one-boat 1 -001010010101 one-stop-shopping 1 -001010010101 MIT-graduate 1 -001010010101 bist 1 -001010010101 3,307-yard 1 -001010010101 Fl.-based 1 -001010010101 232,755 1 -001010010101 cedar-shingled 1 -001010010101 155-day 1 -001010010101 5-foot-6-inch 1 -001010010101 cancer-afflicted 1 -001010010101 no-points 1 -001010010101 group-term 1 -001010010101 fish-bait 1 -001010010101 pictoral 1 -001010010101 pay-cut 1 -001010010101 computer-peripheral-parts 1 -001010010101 confident-looking 1 -001010010101 IVB 1 -001010010101 not-so-volatile 1 -001010010101 seven-pound 1 -001010010101 budget-breaking 1 -001010010101 44-flick 1 -001010010101 big-engined 1 -001010010101 more-confusing 1 -001010010101 customset 1 -001010010101 Houston-supplies 1 -001010010101 11,075,341 1 -001010010101 655,184 1 -001010010101 pouty-faced 1 -001010010101 385-yard 1 -001010010101 eelskin 1 -001010010101 whole-wheat 1 -001010010101 bit-map 1 -001010010101 26,624,375 1 -001010010101 42,000-kilowatt 1 -001010010101 47,806,810 1 -001010010101 adventure-oriented 1 -001010010101 ConVest 1 -001010010101 Ropespinner-inspired 1 -001010010101 Colo.based 1 -001010010101 capital-fed 1 -001010010101 bowler-hatted 1 -001010010101 nonliterary 1 -001010010101 390,783 1 -001010010101 sales-channel 1 -001010010101 cidery 1 -001010010101 unlimited-mileage 1 -001010010101 size-theory 1 -001010010101 express-train 1 -001010010101 elbow-baring 1 -001010010101 back-panel 1 -001010010101 pesd 1 -001010010101 slut-ridden 1 -001010010101 2,178,132 1 -001010010101 Japanese-run 1 -001010010101 649,922 1 -001010010101 long-in-back 1 -001010010101 70,000-share 1 -001010010101 difficult-to-crack 1 -001010010101 ideology-bound 1 -001010010101 spectatorss 1 -001010010101 broadcast-license 1 -001010010101 all-parts 1 -001010010101 863-mile-long 1 -001010010101 wind-knocked 1 -001010010101 indulge-yourself 1 -001010010101 lashless 1 -001010010101 play-by-number 1 -001010010101 half-protesting 1 -001010010101 hard-to-see 1 -001010010101 win-too-soon 1 -001010010101 104,700 1 -001010010101 record-promoter 1 -001010010101 job-offer 1 -001010010101 Ariz.-bank 1 -001010010101 W.Va.-area 1 -001010010101 less-stressful 1 -001010010101 multiple-variable 1 -001010010101 prevously 1 -001010010101 31,353,025 1 -001010010101 Clveland-Cliffs 1 -001010010101 thick-bodied 1 -001010010101 wildland 1 -001010010101 stick-built 1 -001010010101 tire-screeching 1 -001010010101 552,596 1 -001010010101 offshore-drilling-rig 1 -001010010101 pump-style 1 -001010010101 moonlike 1 -001010010101 Minn.based 1 -001010010101 needle-threading 1 -001010010101 dust-covered 1 -001010010101 369-yard 1 -001010010101 slimier 1 -001010010101 not-very-profitable 1 -001010010101 525-room 1 -001010010101 engineering/scientific 1 -001010010101 Ore-based 1 -001010010101 detail-conscious 1 -001010010101 noncompressed 1 -001010010101 Stichting 1 -001010010101 R.I.based 1 -001010010101 323,100 1 -001010010101 76-unit 1 -001010010101 pseudo-metaphysical 1 -001010010101 unatmospheric 1 -001010010101 Silkience 1 -001010010101 folkish 1 -001010010101 four-ringed 1 -001010010101 under-publicized 1 -001010010101 Capitol-EMI 1 -001010010101 jelly-filled 1 -001010010101 once-fierce 1 -001010010101 Uwe-Jens 1 -001010010101 round-white 1 -001010010101 gas-filled 1 -001010010101 1,807 1 -001010010101 28,938 1 -001010010101 638-room 1 -001010010101 arm-slinging 1 -001010010101 angst-filled 1 -001010010101 Maine.-based 1 -001010010101 non-addicting 1 -001010010101 Vietnam-veteran 1 -001010010101 Hutton-commissioned 1 -001010010101 eerie-sounding 1 -001010010101 slang-filled 1 -001010010101 porcelain-enameled 1 -001010010101 mood-influencing 1 -001010010101 index-member 1 -001010010101 ocean-cruise 1 -001010010101 curlicued 1 -001010010101 arm-flapping 1 -001010010101 rug-covered 1 -001010010101 5,614,436 1 -001010010101 banking-holding 1 -001010010101 business-supported 1 -001010010101 MBLE. 1 -001010010101 tune-strangling 1 -001010010101 anti-contractor 1 -001010010101 13-game 1 -001010010101 handnumbing 1 -001010010101 open-to-the 1 -001010010101 more-chicken-for-the-money 1 -001010010101 thrice-widowed 1 -001010010101 Skews 1 -001010010101 non-worldly 1 -001010010101 shipbuiding 1 -001010010101 Kerstin 1 -001010010101 free-rolling 1 -001010010101 videogame-roller-ball 1 -001010010101 GermanRussian 1 -001010010101 most-repeated 1 -001010010101 privately-owned 1 -001010010101 maze-like 1 -001010010101 traditional-sized 1 -001010010101 381-yard 1 -001010010101 10,000-square-foot 1 -001010010101 Tiffanyesque 1 -001010010101 scientific-research 1 -001010010101 actable 1 -001010010101 Dori 1 -001010010101 uncollectivized 1 -001010010101 16-ton 1 -001010010101 tool-scattered 1 -001010010101 fire-and-ice 1 -001010010101 company-commissioned 1 -001010010101 1,626,142 1 -001010010101 5,554 1 -001010010101 Mich.based 1 -001010010101 31-question 1 -001010010101 913,842 1 -001010010101 laugh-at-the-things-that-make-you-cry-as-you-conquer-them 1 -001010010101 Monteverdiesque 1 -001010010101 40-train 1 -001010010101 home-brewed 1 -001010010101 Graves-designed 1 -001010010101 725,287 1 -001010010101 Ericsson-GE 1 -001010010101 Regimental 1 -001010010101 muchsought 1 -001010010101 1,687 1 -001010010101 minimedical 1 -001010010101 11-story-high 1 -001010010101 2,771 1 -001010010101 602,100 1 -001010010101 anti-bacterial 1 -001010010101 pocket-held 1 -001010010101 overawed 1 -001010010101 less-than-spectacular 1 -001010010101 lower-mileage 1 -001010010101 co-axial 1 -001010010101 dango-run 1 -001010010101 non-dango 1 -001010010101 K.B. 1 -001010010101 castlelike 1 -001010010101 gulf-based 1 -001010010101 cowboy-like 1 -001010010101 nonfungible 1 -001010010101 Europeo 1 -001010010101 gibbering 1 -001010010101 factory.The 1 -001010010101 iceberg-busting 1 -001010010101 often-unpopular 1 -001010010101 Bath-based 1 -001010010101 nonfiltered 1 -001010010101 German-nationalist 1 -001010010101 120-pound 1 -001010010101 8,840,205 1 -001010010101 Kans.-based 1 -001010010101 brown-and-gray 1 -001010010101 705,938 1 -001010010101 hard-time 1 -001010010101 out-of-focus 1 -001010010101 Dailey-Thorp 1 -001010010101 Arkansas-reared 1 -001010010101 ORBITEL 1 -001010010101 247,189 1 -001010010101 hamburger-chain 1 -001010010101 technological-services 1 -001010010101 fly-infested 1 -001010010101 nose-wrinkling 1 -001010010101 half-Indian 1 -001010010101 radio-program 1 -001010010101 spy-plane 1 -001010010101 blitzkrieg-style 1 -001010010101 tic-a-minute 1 -001010010101 ever-admiring 1 -001010010101 vitamin-filled 1 -001010010101 Waspy 1 -001010010101 pesticide-heavy 1 -001010010101 process-engineering 1 -001010010101 polymath 1 -001010010101 Quang 1 -001010010101 47,900 1 -001010010101 pear-flavored 1 -001010010101 1,464 1 -001010010101 vinyl-products 1 -001010010101 meat-eating 1 -001010010101 no-muss 1 -001010010101 bathtub-shaped 1 -001010010101 coup-prone 1 -001010010101 quasi-documentary 1 -001010010101 crucifix-dangling 1 -001010010101 sure-shot 1 -001010010101 chloronated 1 -001010010101 arcanely 1 -001010010101 4,400-square-foot 1 -001010010101 PKL 1 -001010010101 drum-driven 1 -001010010101 mismeasuring 1 -001010010101 Daihyaku 1 -001010010101 long-overlooked 1 -001010010101 DAW 1 -001010010101 border-to-border 1 -001010010101 light-weight 1 -001010010101 91,159 1 -001010010101 wood-finishing 1 -001010010101 22-part 1 -001010010101 antioxidants 1 -001010010101 adoption-business 1 -001010010101 telecommunciations 1 -001010010101 one-big-decision-at-a-time 1 -001010010101 white-tennis-shoe 1 -001010010101 risk-assessing 1 -001010010101 200-square-foot 1 -001010010101 CSX/ 1 -001010010101 20-peso 1 -001010010101 86,356 1 -001010010101 proto-feminist 1 -001010010101 hibiscuses 1 -001010010101 federally-supervised 1 -001010010101 Finland-based 1 -001010010101 closed-mouth 1 -001010010101 Rheinish 1 -001010010101 discount-coupon-book 1 -001010010101 oxygen-depleted 1 -001010010101 dominate-the-world 1 -001010010101 Bedav 1 -001010010101 more-exhaustive 1 -001010010101 ever-quarrelsome 1 -001010010101 Saskatchewan-based 1 -001010010101 spend-and-tax 1 -001010010101 Yamatake 1 -001010010101 roll-up-your 1 -001010010101 publicly-owned 1 -001010010101 weakwilled 1 -001010010101 big-equipment 1 -001010010101 female-income 1 -001010010101 loose-credit 1 -001010010101 worked-out 1 -001010010101 Pinstripe 1 -001010010101 technology-linked 1 -001010010101 reading-the-paper 1 -001010010101 SMB 1 -001010010101 171,885 1 -001010010101 251,219 1 -001010010101 163,895 1 -001010010101 339,512 1 -001010010101 310,022 1 -001010010101 410,234 1 -001010010101 agricultural-seed 1 -001010010101 union-fearing 1 -001010010101 egg-on-the-face 1 -001010010101 car-finance 1 -001010010101 aerospace-technology 1 -001010010101 two-evening 1 -001010010101 274,598 1 -001010010101 yield-reducing 1 -001010010101 FAS-related 1 -001010010101 Tokyo-area 1 -001010010101 peace-brokering 1 -001010010101 AM/FM-cassette 1 -001010010101 potbelly 1 -001010010101 8,954,161 1 -001010010101 healthy-looking 1 -001010010101 407,954 1 -001010010101 hunting-gear 1 -001010010101 bar-staged 1 -001010010101 skaking 1 -001010010101 cloud-flecked 1 -001010010101 free-port 1 -001010010101 be-wimpy 1 -001010010101 Socony 1 -001010010101 broken-trumpet 1 -001010010101 kid-pleasing 1 -001010010101 hail-fellow 1 -001010010101 flat-ribbon 1 -001010010101 nonsubsidized 1 -001010010101 hot-pressed 1 -001010010101 white-speckled 1 -001010010101 Angiostat 1 -001010010101 lettristic 1 -001010010101 1,776-foot-long 1 -001010010101 father-like 1 -001010010101 480,000-square-foot 1 -001010010101 sleep-walking 1 -001010010101 drug-avoiding 1 -001010010101 cargo-transportation 1 -001010010101 1,312,500 1 -001010010101 often-curable 1 -001010010101 Metro-Mobile 1 -001010010101 rubicund 1 -001010010101 382-yard 1 -001010010101 organization-minded 1 -001010010101 commodities-oriented 1 -001010010101 corrections-consulting 1 -001010010101 loudspeaker-systems 1 -001010010101 after-church 1 -001010010101 Swedish-bottled 1 -001010010101 10-win 1 -001010010101 radiation-sterilization 1 -001010010101 easy-to-make 1 -001010010101 1,617,100 1 -001010010101 anti-procurement 1 -001010010101 golf-greens 1 -001010010101 solarpanel 1 -001010010101 light-fixture 1 -001010010101 reanimating 1 -001010010101 Western-minded 1 -001010010101 pea-green 1 -001010010101 litigation-management 1 -001010010101 90-bed 1 -001010010101 preprocessed 1 -001010010101 thin-crusted 1 -001010010101 140,266are 1 -001010010101 systems-oriented 1 -001010010101 emotion-stirring 1 -001010010101 land-supply 1 -001010010101 Hemex 1 -001010010101 car-dodging 1 -001010010101 Karo 2 -001010010101 Coosje 2 -001010010101 Va.based 2 -001010010101 uncertified 2 -001010010101 Issey 2 -001010010101 low-status 2 -001010010101 Arizona-based 2 -001010010101 379,422 2 -001010010101 stereo-cassette 2 -001010010101 stone-walled 2 -001010010101 0.272 2 -001010010101 oil-boom-era 2 -001010010101 bejeweled 2 -001010010101 take-away 2 -001010010101 tandoori 2 -001010010101 N.J-based 2 -001010010101 multi-center 2 -001010010101 lower-value 2 -001010010101 five-day-a-week 2 -001010010101 Pa.based 2 -001010010101 camping-gear 2 -001010010101 75-chapter 2 -001010010101 drop-in 2 -001010010101 N.Y.based 2 -001010010101 Md.based 2 -001010010101 spotlit 2 -001010010101 168,598 2 -001010010101 Retractable 2 -001010010101 22,691 2 -001010010101 pocket-chartered 2 -001010010101 ratepayer-supported 2 -001010010101 multiuse 2 -001010010101 steer-roping 2 -001010010101 boutique-style 2 -001010010101 less-fuel-efficient 2 -001010010101 time-capsule 2 -001010010101 Ca.-based 2 -001010010101 Wis.based 2 -001010010101 scrawling 2 -001010010101 Koeppel 2 -001010010101 metal-plate 2 -001010010101 Penn.-based 2 -001010010101 medium-haul 2 -001010010101 slaughter-and-fabrication 2 -001010010101 white-capped 2 -001010010101 columned 2 -001010010101 silty 2 -001010010101 petroleum-derived 2 -001010010101 mio 2 -001010010101 PCC/Drug 2 -001010010101 255-pound 2 -001010010101 Malcolm-Jamal 2 -001010010101 Tenn.based 2 -001010010101 bundled-up 2 -001010010101 easy-chair 2 -001010010101 hardboiled 2 -001010010101 Austria-based 2 -001010010101 deboned 2 -001010010101 Conn-based 2 -001010010101 ultracompetitive 2 -001010010101 45-pound 2 -001010010101 N.J.based 3 -001010010101 Ginji 3 -001010010101 Ohiobased 3 -001010010101 Phar 3 -001010010101 black-haired 3 -001010010101 two-bath 3 -001010010101 batlike 3 -001010010101 high-reward 3 -001010010101 Mont.-based 3 -001010010101 Indonesia-based 3 -001010010101 Grigory 3 -001010010101 Alaska-based 3 -001010010101 rights-oriented 3 -001010010101 his-and-hers 3 -001010010101 baldish 3 -001010010101 Tex.-based 4 -001010010101 N.Y-based 4 -001010010101 shaggy-haired 4 -001010010101 Ill.based 4 -001010010101 Fla.based 4 -001010010101 Ivo 4 -001010010101 1111 4 -001010010101 Bahamas-based 5 -001010010101 Conn.based 5 -001010010101 Wyo.-based 5 -001010010101 France-based 6 -001010010101 Manitoba-based 6 -001010010101 Spain-based 6 -001010010101 Mass.based 7 -001010010101 50,000-mile 8 -001010010101 66th 8 -001010010101 Mexico-based 9 -001010010101 N.M.-based 9 -001010010101 Canada-based 11 -001010010101 Sweden-based 11 -001010010101 Calif-based 12 -001010010101 Calif.based 12 -001010010101 Miss.-based 14 -001010010101 Scotland-based 16 -001010010101 Vt.-based 17 -001010010101 Italy-based 18 -001010010101 W.Va.-based 18 -001010010101 sans 19 -001010010101 -based 23 -001010010101 non-B 24 -001010010101 La.-based 25 -001010010101 Maine-based 27 -001010010101 S.C.-based 27 -001010010101 Idaho-based 37 -001010010101 Nev.-based 37 -001010010101 Kan.-based 40 -001010010101 Ark.-based 41 -001010010101 Ontario-based 46 -001010010101 England-based 48 -001010010101 off-again 49 -001010010101 Neb.-based 50 -001010010101 N.H.-based 53 -001010010101 Iowa-based 53 -001010010101 Wis.-based 62 -001010010101 Switzerland-based 63 -001010010101 Ga.-based 69 -001010010101 Ala.-based 72 -001010010101 R.I.-based 74 -001010010101 Ind.-based 81 -001010010101 Ore.-based 89 -001010010101 Colo.-based 94 -001010010101 Del.-based 99 -001010010101 Mo.-based 102 -001010010101 Ky.-based 105 -001010010101 Okla.-based 107 -001010010101 Wash.-based 111 -001010010101 Alberta-based 114 -001010010101 Minn.-based 130 -001010010101 Tenn.-based 142 -001010010101 D.C.-based 142 -001010010101 N.C.-based 184 -001010010101 Ariz.-based 185 -001010010101 bank-backed 186 -001010010101 Md.-based 192 -001010010101 Fla.-based 277 -001010010101 Va.-based 304 -001010010101 Mich.-based 311 -001010010101 Pa.-based 321 -001010010101 Ill.-based 362 -001010010101 Ohio-based 415 -001010010101 Texas-based 420 -001010010101 N.Y.-based 546 -001010010101 Mass.-based 666 -001010010101 Conn.-based 733 -001010010101 N.J.-based 734 -001010010101 whose 7963 -001010010101 Calif.-based 1744 -001010010110 slike 1 -001010010110 SIDETRACKED 1 -001010010110 big-school 1 -001010010110 Resembled 1 -001010010110 alios 1 -001010010110 derails 1 -001010010110 browner 1 -001010010110 mobbing 1 -001010010110 shortage-prone 1 -001010010110 SEEING 1 -001010010110 diesel-mechanic 1 -001010010110 indelicately 1 -001010010110 pesters 1 -001010010110 disagreed-including 1 -001010010110 lifeless. 1 -001010010110 pre-signed 1 -001010010110 11:20-to-11:50 1 -001010010110 growthy 1 -001010010110 comfirm 1 -001010010110 outvoting 2 -001010010110 confrere 2 -001010010110 Tic 2 -001010010110 stuns 2 -001010010110 GAVE 2 -001010010110 remorseful 2 -001010010110 cash-heavy 3 -001010010110 overcrowd 3 -001010010110 Pippa 3 -001010010110 decisis 3 -001010010110 effeminate 3 -001010010110 ingest 4 -001010010110 fated 5 -001010010110 desiring 5 -001010010110 populating 5 -001010010110 disproves 6 -001010010110 inhabiting 6 -001010010110 salutes 8 -001010010110 dogging 9 -001010010110 imploring 14 -001010010110 like 21594 -001010010110 resembling 82 -001010010111 /Though 1 -001010010111 spacewalk 1 -001010010111 INDICATIONS 1 -001010010111 mid-1963 1 -001010010111 avowing 1 -001010010111 smokescreens 1 -001010010111 hydras 1 -001010010111 hero-images 1 -001010010111 voice-synthesizer 1 -001010010111 single-sum 1 -001010010111 Heath/Zenith 1 -001010010111 anti-missile-tests 1 -001010010111 DLA 1 -001010010111 program-generated 1 -001010010111 Demonstrate 1 -001010010111 notdoing 1 -001010010111 1889-1894 1 -001010010111 deal-doers 1 -001010010111 averring 1 -001010010111 kerogen 1 -001010010111 GUV 1 -001010010111 McSpeak 1 -001010010111 syncytia 1 -001010010111 semitrailers 1 -001010010111 81-81 1 -001010010111 contactors 1 -001010010111 1493-1800 1 -001010010111 mulitiply 1 -001010010111 full-strength 1 -001010010111 1/300th 1 -001010010111 Acknowledged 1 -001010010111 France-conceded 1 -001010010111 self-bailing 1 -001010010111 spiritualism 1 -001010010111 fulminating 1 -001010010111 three-in-four 1 -001010010111 flashlamps 1 -001010010111 self-deregulators 1 -001010010111 Ruhakano 1 -001010010111 deducing 2 -001010010111 intimating 2 -001010010111 ackowledged 2 -001010010111 havin 2 -001010010111 Dosso 2 -001010010111 Wonders 2 -001010010111 5-FU 2 -001010010111 bulldogging 2 -001010010111 loss-leaders 2 -001010010111 rerunning 2 -001010010111 Vajno 2 -001010010111 chancing 2 -001010010111 ascertains 2 -001010010111 cesium-137 2 -001010010111 unobvious 2 -001010010111 quipping 2 -001010010111 Rudolfo 2 -001010010111 captioned 3 -001010010111 relearning 3 -001010010111 open-ending 3 -001010010111 COMPLAIN 3 -001010010111 lugs 4 -001010010111 warbling 4 -001010010111 rubato 4 -001010010111 decreeing 5 -001010010111 oftentimes 5 -001010010111 deface 5 -001010010111 Innocenti 5 -001010010111 reprimanding 5 -001010010111 opining 5 -001010010111 ballyhooing 5 -001010010111 intoning 6 -001010010111 defacing 6 -001010010111 foreseeing 7 -001010010111 regretting 8 -001010010111 draping 8 -001010010111 insinuating 8 -001010010111 exclaiming 9 -001010010111 signifying 14 -001010010111 presuming 15 -001010010111 remarking 16 -001010010111 suspecting 16 -001010010111 stipulating 17 -001010010111 vaulting 18 -001010010111 pausing 22 -001010010111 imagining 24 -001010010111 cautioning 26 -001010010111 attributing 31 -001010010111 reiterating 38 -001010010111 forgetting 41 -001010010111 pretending 45 -001010010111 illustrating 45 -001010010111 boasting 59 -001010010111 hinting 64 -001010010111 remembering 65 -001010010111 sensing 67 -001010010111 proclaiming 70 -001010010111 implying 89 -001010010111 conceding 106 -001010010111 estimating 164 -001010010111 confirming 188 -001010010111 concluding 205 -001010010111 acknowledging 205 -001010010111 realizing 208 -001010010111 recognizing 217 -001010010111 stressing 221 -001010010111 stating 247 -001010010111 fearing 257 -001010010111 signaling 263 -001010010111 believing 267 -001010010111 ensuring 271 -001010010111 asserting 274 -001010010111 contending 278 -001010010111 declaring 304 -001010010111 insisting 311 -001010010111 knowing 545 -001010010111 explaining 550 -001010010111 assuming 740 -001010010111 alleging 818 -001010010111 claiming 842 -001010010111 arguing 852 -001010010111 suggesting 956 -001010010111 indicating 1093 -001010010111 noting 1098 -001010010111 charging 1113 -001010010111 saying 6102 -001010010111 adding 3053 -0010100110 16/ 1 -0010100110 Karamyshevskaya 1 -0010100110 op. 1 -0010100110 godly 1 -0010100110 29/ 1 -0010100110 educnd 1 -0010100110 neoliberally 1 -0010100110 24/ 1 -0010100110 28/ 1 -0010100110 ministate 1 -0010100110 Swifts 1 -0010100110 overscored 1 -0010100110 26/ 1 -0010100110 snored 1 -0010100110 on-base 1 -0010100110 secs. 1 -0010100110 aborbs 1 -0010100110 sanctionably 1 -0010100110 comme 1 -0010100110 most-talked 1 -0010100110 shares-turnover 1 -0010100110 lead-soldered 2 -0010100110 Scrappy 2 -0010100110 380-megabyte 2 -0010100110 hectarage 2 -0010100110 impoverishes 2 -0010100110 fives 3 -0010100110 10/ 3 -0010100110 18/ 3 -0010100110 22.0 3 -0010100110 29.0 4 -0010100110 Kansallis 4 -0010100110 MONTHS 4 -0010100110 turbine-powered 5 -0010100110 --a 5 -0010100110 foreshadowing 8 -0010100110 Op. 13 -0010100110 Ulitsa 16 -0010100110 or 108733 -0010100110 versus 107 -0010100111 1911-1947 1 -0010100111 1945-1959 1 -0010100111 Vilma 1 -0010100111 train-cars 1 -0010100111 customer-related 1 -0010100111 moyesii 1 -0010100111 rubrifolia 1 -0010100111 No-risk 1 -0010100111 lead-by-doing 1 -0010100111 month-and-a-half 1 -0010100111 Gallus 1 -0010100111 deal-oriented 1 -0010100111 ago-an 1 -0010100111 Espagnole 1 -0010100111 1879-1902 1 -0010100111 leaf-moisture 1 -0010100111 Revitalizes 1 -0010100111 Kop 1 -0010100111 Mahal-style 1 -0010100111 Ischia 1 -0010100111 1908-1983 1 -0010100111 COPYRIGHT 1 -0010100111 1898-1922 1 -0010100111 1565-1628 1 -0010100111 Self-justifying 1 -0010100111 no-play 1 -0010100111 mixed-bathing 1 -0010100111 relected 1 -0010100111 deinstitutionalized 1 -0010100111 Major-League 1 -0010100111 Rendered 1 -0010100111 IGNORE 1 -0010100111 bike-ride 1 -0010100111 New-fangled 1 -0010100111 Gimmicks. 1 -0010100111 C128D 1 -0010100111 Omnia 1 -0010100111 1961-63 1 -0010100111 1869-1918 1 -0010100111 1916-1930 1 -0010100111 1870-1930 1 -0010100111 alte 1 -0010100111 fund-drive 1 -0010100111 inyangas 1 -0010100111 1915-1940 1 -0010100111 conservation-related 1 -0010100111 all-will-be-well 1 -0010100111 soit 1 -0010100111 Disli 1 -0010100111 1830-1930 1 -0010100111 Boilerplate 1 -0010100111 SIDERURGICA 1 -0010100111 1,114,300 1 -0010100111 interruped 1 -0010100111 Potted 1 -0010100111 OPPOSE 1 -0010100111 Gibran 1 -0010100111 1920-1987 1 -0010100111 Narcotic 1 -0010100111 1928-1983 1 -0010100111 FURNISH 1 -0010100111 super-civilized 1 -0010100111 Patenting 1 -0010100111 per-body 1 -0010100111 Dominate 1 -0010100111 1918-1941 1 -0010100111 III/Geostar 1 -0010100111 Oppressing 1 -0010100111 10-axis 1 -0010100111 Interbrand 1 -0010100111 1941-1945 1 -0010100111 in-the-box 1 -0010100111 1785-1789 1 -0010100111 Flashlight 1 -0010100111 1550-1900 1 -0010100111 Implores 1 -0010100111 FA-4 1 -0010100111 Corp.-and 1 -0010100111 487,335 1 -0010100111 acrosshe 1 -0010100111 Nansen 1 -0010100111 B-No.1 1 -0010100111 very-good-storing 1 -0010100111 forelorn 1 -0010100111 1979-1989 1 -0010100111 regrette 1 -0010100111 Stadt 1 -0010100111 concrete-bowl 1 -0010100111 Geographical 1 -0010100111 1968-1988 1 -0010100111 3,185 1 -0010100111 Fellas 1 -0010100111 ostensbily 1 -0010100111 1938-39 1 -0010100111 1912-1928 1 -0010100111 Tehiya 1 -0010100111 free-trades 1 -0010100111 Admire 1 -0010100111 braves 1 -0010100111 brainstormed 1 -0010100111 militarily-sensitive 1 -0010100111 two-systems 1 -0010100111 CAUSES 1 -0010100111 Surpassed 1 -0010100111 lawful-to-advertise 1 -0010100111 3,998 1 -0010100111 Trade-Up 1 -0010100111 1940-1977 1 -0010100111 text-retrieval 1 -0010100111 washer-to-dryer 1 -0010100111 .64 1 -0010100111 ship-defense 1 -0010100111 Single-subject 1 -0010100111 Shinn-Liang 1 -0010100111 Underarm 1 -0010100111 TRIPLE-MILEAGE 1 -0010100111 said.EPA 1 -0010100111 Pianos 1 -0010100111 GIS 1 -0010100111 Shrs 1 -0010100111 Inst 1 -0010100111 Kleinians 1 -0010100111 Carrot 1 -0010100111 3,545 1 -0010100111 Ti-da 1 -0010100111 on-the-go 1 -0010100111 Invoke 1 -0010100111 1900-1989 1 -0010100111 reconnected 1 -0010100111 Ashore. 1 -0010100111 Coinoperated 1 -0010100111 analysed 1 -0010100111 7,602 1 -0010100111 politicizes 1 -0010100111 Martov 1 -0010100111 Corp./USPS 1 -0010100111 Reaction. 1 -0010100111 proven-track-record 1 -0010100111 Microeconomic 1 -0010100111 W-owned 1 -0010100111 Cotonelle 1 -0010100111 Skywalker. 1 -0010100111 1751-1809 1 -0010100111 aginst 1 -0010100111 ?? 1 -0010100111 superabsorbent 2 -0010100111 resenting 2 -0010100111 Violate 2 -0010100111 CUTS 2 -0010100111 Continues 2 -0010100111 Flowing 2 -0010100111 Druckmaschinen 2 -0010100111 rimless 2 -0010100111 broker-remarketed 2 -0010100111 Pail 2 -0010100111 snub-nosed 2 -0010100111 MALPRACTICE 2 -0010100111 1940-45 2 -0010100111 MRS. 3 -0010100111 Seduce 3 -0010100111 Ballpark 3 -0010100111 limits-to-growth 3 -0010100111 System/400 3 -0010100111 Crowd 3 -0010100111 Trinitron 3 -0010100111 Toe 3 -0010100111 Brownian 3 -0010100111 Nobuya 4 -0010100111 Fates 4 -0010100111 Query 4 -0010100111 Deliberative 5 -0010100111 Balloon 5 -0010100111 ' 40244 -0010100111 Stockholder 5 -00101010 prototypal 1 -00101010 fourth-game 1 -00101010 eitheir 1 -00101010 2,510,000 1 -00101010 egalitarianly 1 -00101010 TART 1 -00101010 expell 1 -00101010 Ricart 1 -00101010 unchic 1 -00101010 Anglicism 1 -00101010 5,949 1 -00101010 ditherers 1 -00101010 land-grabbers 1 -00101010 ect 1 -00101010 9-JACX 1 -00101010 Varilite 1 -00101010 unfondly 1 -00101010 Clara-Sugar 1 -00101010 Lella 1 -00101010 texturized 1 -00101010 top-100 1 -00101010 out-of-district 1 -00101010 Liahna 1 -00101010 flip-down 1 -00101010 scrapings 1 -00101010 expunging 1 -00101010 scraper 1 -00101010 pre-hype 1 -00101010 small-government 1 -00101010 Amarilloans 1 -00101010 love/hate 1 -00101010 ennobled 1 -00101010 aboutbut 1 -00101010 242,351 1 -00101010 Bohemians 1 -00101010 Relifex 1 -00101010 Dossi 2 -00101010 114,866 2 -00101010 --as 2 -00101010 that 392472 -00101010 censuring 5 -001010110 4-1-1 1 -001010110 cutrate 1 -001010110 nonseasonal 1 -001010110 confidence-inspiring 1 -001010110 E-flats 1 -001010110 mock-scientific 1 -001010110 weekend-plays 1 -001010110 11-1-1-A 1 -001010110 dull-minded 1 -001010110 land-hungry 1 -001010110 Kroc-era 1 -001010110 whereof 1 -001010110 taste-tested 1 -001010110 32-B-1 1 -001010110 unstylishly 1 -001010110 investigatorsand 1 -001010110 pop/jazz 1 -001010110 radar-reflecting 1 -001010110 10-year-life 1 -001010110 surpised 1 -001010110 undergirded 1 -001010110 green-lipped 1 -001010110 sharp-focus 1 -001010110 higher-toned 1 -001010110 ex-Mengers 1 -001010110 extaordinarily 1 -001010110 unspooling 2 -001010110 boding 3 -001010110 outpolled 4 -001010110 boded 5 -001010110 as 196710 -001010110 auguring 8 -001010111000 Caymus 1 -001010111000 Jaboulet 1 -001010111000 Barbi 1 -001010111000 31-17 1 -001010111000 iv 1 -001010111000 Wishbook 1 -001010111000 outpolling 1 -001010111000 reauthorizes 1 -001010111000 Milestones 1 -001010111000 Climens 1 -001010111000 Rieussec 1 -001010111000 Torte 1 -001010111000 Sodaccio 1 -001010111000 formed. 1 -001010111000 1972-December 1 -001010111000 metals-stock 1 -001010111000 snowboards 1 -001010111000 left-vs.-right 1 -001010111000 Dulcie 1 -001010111000 Mullah 1 -001010111000 Lyeth 2 -001010111000 apprehensively 2 -001010111000 litterateur 2 -001010111000 c. 6 -001010111000 since 22918 -001010111000 circa 25 -001010111001 3686 1 -001010111001 GGC 1 -001010111001 role-reversal 1 -001010111001 Post-Oct. 1 -001010111001 half-picked 1 -001010111001 stores-within-stores 1 -001010111001 avis 1 -001010111001 1262.54 1 -001010111001 faxer 1 -001010111001 linguine-lover 1 -001010111001 EDS-GM 1 -001010111001 parents-of-us-all 1 -001010111001 nation-sized 1 -001010111001 392-2 1 -001010111001 69/89 1 -001010111001 bod 1 -001010111001 2216 1 -001010111001 bewteen 1 -001010111001 8752010 1 -001010111001 221,000-job 1 -001010111001 well-rested 2 -001010111001 ornamentals 2 -001010111001 detonates 2 -001010111001 Amend 2 -001010111001 Myint 5 -001010111001 'til 12 -001010111001 until 13766 -001010111001 till 185 -001010111010 windowdressing 1 -001010111010 1,129,000 1 -001010111010 happened. 1 -001010111010 malarky 1 -001010111010 B.C.-fourth 1 -001010111010 nho 1 -001010111010 sightsee 1 -001010111010 headlocks 1 -001010111010 calls. 1 -001010111010 McOne 1 -001010111010 5,923 1 -001010111010 quailing 1 -001010111010 earlier.For 1 -001010111010 invented. 1 -001010111010 uder 1 -001010111010 under-35 1 -001010111010 judgment-proof 2 -001010111010 returner 2 -001010111010 outrank 2 -001010111010 Citrosuco 3 -001010111010 before 25700 -001010111010 unravels 6 -001010111011 52-0 1 -001010111011 primary-mill 1 -001010111011 190,100 1 -001010111011 Re-Create 1 -001010111011 Yogifying 1 -001010111011 steel-trade 1 -001010111011 Aud 1 -001010111011 DM235 1 -001010111011 commercial-satellite 2 -001010111011 discoloring 2 -001010111011 after 41256 -001010111011 secretively 3 -00101011110 More-than-fair 1 -00101011110 swap-related 1 -00101011110 becaue 1 -00101011110 largley 1 -00101011110 Southern-bred 1 -00101011110 non-dessert 1 -00101011110 standards-driven 1 -00101011110 Bach-in-a-box 1 -00101011110 unplumbed 1 -00101011110 demagoging 1 -00101011110 intrinsicate 1 -00101011110 ill-financed 1 -00101011110 abrogates 1 -00101011110 upholder 1 -00101011110 1,000,052 1 -00101011110 polarizations 1 -00101011110 nondrinking 1 -00101011110 exurbia 1 -00101011110 attentuate 1 -00101011110 barbarisms 1 -00101011110 traversal 1 -00101011110 all-print 1 -00101011110 colorations 1 -00101011110 beacuse 1 -00101011110 tongue-in-chic 1 -00101011110 sticklike 1 -00101011110 oppposes 1 -00101011110 non-Greek 2 -00101011110 becasue 2 -00101011110 interweaving 2 -00101011110 molder 2 -00101011110 quarterdeck 2 -00101011110 rehashes 3 -00101011110 heedless 4 -00101011110 f-As 8 -00101011110 smacking 12 -00101011110 because 44087 -00101011110 'cause 18 -0010101111100 vainglorious 1 -0010101111100 nto 1 -0010101111100 RAMIS 1 -0010101111100 rasher 1 -0010101111100 post-Iranamok 1 -0010101111100 Keri 1 -0010101111100 delphiniums 1 -0010101111100 Speller 1 -0010101111100 E-150s 1 -0010101111100 sys 1 -0010101111100 1,541 1 -0010101111100 Pajunen 1 -0010101111100 Petkim 1 -0010101111100 Sumerbank 1 -0010101111100 more-reputable 1 -0010101111100 disrespected 1 -0010101111100 ursurping 1 -0010101111100 Slumming 1 -0010101111100 damming 1 -0010101111100 Tapewatch 1 -0010101111100 Highsmith 1 -0010101111100 glamorizes 1 -0010101111100 I-77 1 -0010101111100 superbly-played 1 -0010101111100 Redirect 1 -0010101111100 fossil-proof 1 -0010101111100 carbonates 1 -0010101111100 OBLIGED 1 -0010101111100 MISURASATA 1 -0010101111100 duking 1 -0010101111100 stone-poor 1 -0010101111100 post-Bork 1 -0010101111100 WTVX 1 -0010101111100 Heigh 1 -0010101111100 4:35 1 -0010101111100 ET. 1 -0010101111100 Glycosphingolipid 1 -0010101111100 weening 1 -0010101111100 dressmakers 1 -0010101111100 autobiographers 1 -0010101111100 Betserai 1 -0010101111100 baggers 1 -0010101111100 ambivalently 1 -0010101111100 individuation 1 -0010101111100 quick-freeze 1 -0010101111100 bromidic 1 -0010101111100 self-cannibalization 1 -0010101111100 Nazilike 1 -0010101111100 ethologists 1 -0010101111100 immigrantrights 1 -0010101111100 Lifebouy 1 -0010101111100 Cured 1 -0010101111100 Adamgrove 1 -0010101111100 nonsexists 1 -0010101111100 alphabetizing 1 -0010101111100 6:59:60 1 -0010101111100 Omit 1 -0010101111100 Satisfy 1 -0010101111100 SAM-5s 1 -0010101111100 fictionalizes 1 -0010101111100 13-to-15-inch-long 1 -0010101111100 Succumbing 1 -0010101111100 uneasier 1 -0010101111100 re-invented 1 -0010101111100 WOPEC 1 -0010101111100 worser 1 -0010101111100 glasnosting 1 -0010101111100 re-written 1 -0010101111100 Harjo 1 -0010101111100 well-operated 1 -0010101111100 once-lowly 1 -0010101111100 further-beyond 1 -0010101111100 Fingernails 1 -0010101111100 tattle 1 -0010101111100 post-freedom 1 -0010101111100 recapitulated 1 -0010101111100 repack 1 -0010101111100 exiling 1 -0010101111100 Staffware 1 -0010101111100 mellifera 1 -0010101111100 Cenemesa 1 -0010101111100 wiggers 1 -0010101111100 yellower 1 -0010101111100 ad-libbing 1 -0010101111100 Funneling 1 -0010101111100 non-Magyars 1 -0010101111100 aduanales 1 -0010101111100 astrophysicists 1 -0010101111100 abolitionists 1 -0010101111100 pokeweed 1 -0010101111100 unhatched 1 -0010101111100 Widowed 1 -0010101111100 Kamenev 1 -0010101111100 cyan 1 -0010101111100 scrooges 1 -0010101111100 1,081 1 -0010101111100 actuate 1 -0010101111100 honde 1 -0010101111100 nonantitrust 1 -0010101111100 Barbariccia 1 -0010101111100 non-secrets 1 -0010101111100 newswomen 1 -0010101111100 Rocephin 2 -0010101111100 no-tar 2 -0010101111100 podiatry 2 -0010101111100 1025 2 -0010101111100 expansion-recession 2 -0010101111100 hybridoma 2 -0010101111100 Pago 2 -0010101111100 Anytown 2 -0010101111100 geez 2 -0010101111100 half-horse 2 -0010101111100 aleatory 2 -0010101111100 decanters 2 -0010101111100 organlike 2 -0010101111100 lidocaine 2 -0010101111100 Women-At-Large 2 -0010101111100 Moledet 2 -0010101111100 LMRCD 2 -0010101111100 zero-coupons 2 -0010101111100 anti-God 2 -0010101111100 stammering 2 -0010101111100 Perkasie 2 -0010101111100 16:30-18:00 2 -0010101111100 Krasnopresnenskaya 2 -0010101111100 no-loss 2 -0010101111100 KREDITBANKEN 2 -0010101111100 pomegranates 2 -0010101111100 tootling 2 -0010101111100 Freudians 2 -0010101111100 charitable-gift 3 -0010101111100 knottier 3 -0010101111100 sparser 3 -0010101111100 ragweed 3 -0010101111100 clammy 6 -0010101111100 Yakov 7 -0010101111100 a.k.a. 16 -0010101111100 whereupon 16 -0010101111100 conversely 16 -0010101111100 er 20 -0010101111100 hey 30 -0010101111100 oh 36 -0010101111100 ironically 131 -0010101111100 i.e. 172 -0010101111100 though 10644 -0010101111100 namely 201 -0010101111101 gutter-to-gutter 1 -0010101111101 Bookbinders 1 -0010101111101 kindergartner 1 -0010101111101 semaphoric 1 -0010101111101 quasijudicial 1 -0010101111101 conga-record 1 -0010101111101 three-masted 1 -0010101111101 CONTRADICTED 1 -0010101111101 tan-colored 1 -0010101111101 dumbly 1 -0010101111101 wracks 1 -0010101111101 printmakers 1 -0010101111101 less-intensive 1 -0010101111101 batter-dipped 1 -0010101111101 non-weapon 1 -0010101111101 29,345,101 1 -0010101111101 begoggled 1 -0010101111101 unphotographable 1 -0010101111101 Legume 1 -0010101111101 maniacally 1 -0010101111101 air-frame 1 -0010101111101 small-parcel 1 -0010101111101 angioplastically 1 -0010101111101 contract-based 1 -0010101111101 food-stores 1 -0010101111101 403,000-person 1 -0010101111101 federal-asset 1 -0010101111101 non-metallurgical 1 -0010101111101 low-contrast 1 -0010101111101 21,189,852 1 -0010101111101 car-part 1 -0010101111101 dairy-product 1 -0010101111101 ever-better 1 -0010101111101 chalky 1 -0010101111101 California-oriented 1 -0010101111101 home-furniture 1 -0010101111101 pathos-filled 1 -0010101111101 ballroom-sized 1 -0010101111101 branch-bank 1 -0010101111101 uncollective 1 -0010101111101 whole-institution 1 -0010101111101 Shirah 1 -0010101111101 eviction-related 1 -0010101111101 therby 1 -0010101111101 haughtily 1 -0010101111101 personal-financial 1 -0010101111101 ESystems 1 -0010101111101 kibbutz-grown 1 -0010101111101 2,911,297 1 -0010101111101 bascially 1 -0010101111101 four-letter-word 1 -0010101111101 dare-devil 1 -0010101111101 brainlike 1 -0010101111101 24-inch-diameter 1 -0010101111101 wraiths 1 -0010101111101 steel-can 1 -0010101111101 great-granddaddy 1 -0010101111101 Polish-style 2 -0010101111101 standardizes 2 -0010101111101 SCOR 2 -0010101111101 94,900 2 -0010101111101 festivalgoers 2 -0010101111101 bedevils 2 -0010101111101 Tharco 2 -0010101111101 skip-stop 2 -0010101111101 Wah-Chang 2 -0010101111101 encodes 2 -0010101111101 therewith 3 -0010101111101 genially 3 -0010101111101 Bozo 3 -0010101111101 slackjawed 3 -0010101111101 metaphorically 4 -0010101111101 encircles 5 -0010101111101 D.C.-area 6 -0010101111101 transcending 9 -0010101111101 likening 10 -0010101111101 terming 21 -0010101111101 whereas 197 -0010101111101 besides 452 -0010101111101 unlike 932 -0010101111101 while 21578 -0010101111101 although 5342 -0010101111110 sogged 1 -0010101111110 5,716,758 1 -0010101111110 counterbalances 1 -0010101111110 depoliticizing 1 -0010101111110 abuts 1 -0010101111110 extricates 1 -0010101111110 post-dates 1 -0010101111110 abhorring 1 -0010101111110 cleaving 1 -0010101111110 Guitar-Shaped 1 -0010101111110 redistricted 1 -0010101111110 privies 1 -0010101111110 Alabama/Inside 1 -0010101111110 armoring 1 -0010101111110 unitswhere 1 -0010101111110 INDICATES 1 -0010101111110 list-less 1 -0010101111110 besmirches 1 -0010101111110 demarcates 1 -0010101111110 assesments 1 -0010101111110 tames 1 -0010101111110 palming 1 -0010101111110 lionizes 1 -0010101111110 ofdatwhat 1 -0010101111110 intersperse 1 -0010101111110 kiddingly 1 -0010101111110 Qopaqhawana 1 -0010101111110 strenghtens 1 -0010101111110 unmotorized 1 -0010101111110 bisect 1 -0010101111110 NATO-member 1 -0010101111110 party-giver 1 -0010101111110 evisions 1 -0010101111110 calumnious 1 -0010101111110 470,591 1 -0010101111110 uncoils 1 -0010101111110 pleasure/For 1 -0010101111110 -about 1 -0010101111110 misspell 1 -0010101111110 crinkle 1 -0010101111110 rejuvenates 1 -0010101111110 re-animates 1 -0010101111110 encases 1 -0010101111110 reenforce 2 -0010101111110 greases 3 -0010101111110 preempts 3 -0010101111110 overexcited 3 -0010101111110 supposing 4 -0010101111110 Necessarily 5 -0010101111110 underpins 6 -0010101111110 paralyzes 7 -0010101111110 befits 23 -0010101111110 if 37718 -0010101111110 unless 2871 -00101011111110 capital-poor 1 -00101011111110 whomp 1 -00101011111110 detention-center 1 -00101011111110 althought 1 -00101011111110 Multigenerational 1 -00101011111110 Meowy 1 -00101011111110 structural-metal 1 -00101011111110 Pro-hotel 1 -00101011111110 gray-headed 1 -00101011111110 accenting 1 -00101011111110 anaylze 1 -00101011111110 corporate-college 1 -00101011111110 fez-wearing 1 -00101011111110 company-devoted 1 -00101011111110 poorer-paid 1 -00101011111110 Ensures 1 -00101011111110 Mousalreza 1 -00101011111110 Connagel 1 -00101011111110 pockmark 1 -00101011111110 bakery-science 1 -00101011111110 3,276 1 -00101011111110 better-read 1 -00101011111110 7,494 1 -00101011111110 580s 1 -00101011111110 amnesty-eligible 1 -00101011111110 multi-generational 1 -00101011111110 vulgarize 1 -00101011111110 all-but-nonexistent 1 -00101011111110 Snow-Belt 1 -00101011111110 indic 1 -00101011111110 109,678 1 -00101011111110 low-scale 1 -00101011111110 single-women 1 -00101011111110 FirstSelect 1 -00101011111110 get-in-line-for-a-job 1 -00101011111110 broad-rumped 1 -00101011111110 Moudad 1 -00101011111110 export-bound 1 -00101011111110 tropical-country 1 -00101011111110 cardiovascular-rehabilitation 1 -00101011111110 fake-snapped 1 -00101011111110 Depauw 1 -00101011111110 neural-net 1 -00101011111110 Insults 1 -00101011111110 empty-headed 1 -00101011111110 sari-clad 1 -00101011111110 wrongminded 1 -00101011111110 2,120,000 2 -00101011111110 2,273,000 2 -00101011111110 coveting 2 -00101011111110 scorch 2 -00101011111110 synchronizing 3 -00101011111110 whilst 3 -00101011111110 decontrolling 4 -00101011111110 publishable 4 -00101011111110 perplexes 7 -00101011111110 where 16421 -00101011111110 whence 14 -00101011111111 coding-machine 1 -00101011111111 theatricals 1 -00101011111111 L-V-S 1 -00101011111111 re-booked 1 -00101011111111 tea-country 1 -00101011111111 rebuckling 1 -00101011111111 aftr 1 -00101011111111 consigns 1 -00101011111111 pistol-holster 1 -00101011111111 DEFENDED 2 -00101011111111 chrome-laden 2 -00101011111111 debug 2 -00101011111111 construes 3 -00101011111111 lest 117 -00101011111111 SAID 134 -00101011111111 wherever 159 -00101011111111 when 41287 -00101011111111 whenever 372 -0010110 art-department 1 -0010110 4000S 1 -0010110 unraveled.The 1 -0010110 earlier-the 1 -0010110 iss 1 -0010110 Meredith-type 1 -0010110 Accunet 1 -0010110 DeVito-like 1 -0010110 season-end 1 -0010110 Topsider 1 -0010110 duck-race 1 -0010110 101/TF 1 -0010110 ExinLines 1 -0010110 center-stage 1 -0010110 narrow-tape 1 -0010110 3510 1 -0010110 WRONGLY 1 -0010110 silver-medalist 1 -0010110 workshop-like 1 -0010110 Steel/Sumitomo 1 -0010110 dashingly 1 -0010110 125-member 1 -0010110 wou 1 -0010110 Perusahan 1 -0010110 ethnic-voter 1 -0010110 hunger-strike 1 -0010110 McCorkle 1 -0010110 Appliance/Oster 1 -0010110 andits 1 -0010110 management-group 1 -0010110 numbs 1 -0010110 entrylevel 1 -0010110 Letterman-style 1 -0010110 NATO-like 1 -0010110 secret-payments 1 -0010110 arms-Contra 1 -0010110 never-wrong 1 -0010110 Kuts 1 -0010110 280,781 1 -0010110 reallocates 1 -0010110 renumbered 1 -0010110 Resendetwo 1 -0010110 engine-fire 1 -0010110 Volcker-isn't-dispensible 1 -0010110 export-weighted 1 -0010110 Rooseveltian 1 -0010110 Antitrust-sensitive 1 -0010110 News/WSJ 1 -0010110 power-saw 1 -0010110 pourriture 1 -0010110 off-his 1 -0010110 utility-index 1 -0010110 criminal-division 1 -0010110 currenci 1 -0010110 corporate-management 1 -0010110 2,500-macrocell 1 -0010110 shoe-industry 1 -0010110 353,241 1 -0010110 Khan-financed 1 -0010110 junk-mail 1 -0010110 Montecruz 1 -0010110 Boxstyle 1 -0010110 Khudozhestvennaya 1 -0010110 Morris-style 1 -0010110 Accepts 1 -0010110 drug-claims 1 -0010110 sweat-shirt 1 -0010110 limestone-clad 1 -0010110 workplace-testing 1 -0010110 inverted-Y 1 -0010110 P.F. 1 -0010110 Al-Islami 1 -0010110 space-futures 1 -0010110 Whitehead-Gould 1 -0010110 Security-Plus 1 -0010110 Elektricitaets 1 -0010110 Mousse/Clarion 1 -0010110 cakes/Ore-Ida 1 -0010110 said.The 1 -0010110 Uhairman 1 -0010110 philosophized 1 -0010110 War.The 1 -0010110 formula-one 1 -0010110 Tax-Overhaul 1 -0010110 Schoenburg 1 -0010110 seventh-most-admired 1 -0010110 drink-'em-up 1 -0010110 Charon 1 -0010110 English-style 1 -0010110 spin-control 1 -0010110 X/MP-48 1 -0010110 test-drives 1 -0010110 Siderurgia 1 -0010110 refineries-the 1 -0010110 AUDITED 2 -0010110 Lures 2 -0010110 Muggs 2 -0010110 Today-type 2 -0010110 planned-community 2 -0010110 Corp.-designed 2 -0010110 Grupe 2 -0010110 Puffs 2 -0010110 Envelope 2 -0010110 free-goods 2 -0010110 109,342 2 -0010110 Foils 2 -0010110 Hagelberger 2 -0010110 Corp.-led 2 -0010110 counselled 3 -0010110 Beng 3 -0010110 refrigerated-warehouse 3 -0010110 L-100-30 3 -0010110 Lucero 3 -0010110 nixes 3 -0010110 PLC-led 4 -0010110 Gangster 8 -0010110 Scotia-based 12 -0010110 's 428205 -0010110 al-Arab 12 -00101110 underdeclared 1 -00101110 khn 1 -00101110 hogged 1 -00101110 outproduces 1 -00101110 Nafcoal 1 -00101110 Suceeding 1 -00101110 First-ranked 1 -00101110 nore 1 -00101110 re-synthesized 1 -00101110 condominum 1 -00101110 retools 1 -00101110 Anglo-Japanese 1 -00101110 nyets 1 -00101110 complained. 1 -00101110 neck-and-necked 1 -00101110 disfavors 1 -00101110 Spook 1 -00101110 pistons. 1 -00101110 Marys 1 -00101110 doublebilled 1 -00101110 scuppered 1 -00101110 extendeds 1 -00101110 Apisz 1 -00101110 soays 1 -00101110 AutoZaz 1 -00101110 Floats 2 -00101110 Weakens 2 -00101110 Corfo 2 -00101110 Wyborcza 2 -00101110 corraled 2 -00101110 pronto 4 -00101110 said 293948 -00101110 drawled 4 -00101111 Dilek 1 -00101111 91-1 1 -00101111 KRISHAN 1 -00101111 90-shot 1 -00101111 SOOTHING 1 -00101111 Battle-ready 1 -00101111 Lincoln-Mercury-Merkur 1 -00101111 Theologian 1 -00101111 vixen 1 -00101111 PASSIONATE 1 -00101111 al-Khalili 1 -00101111 method. 1 -00101111 Cottage. 1 -00101111 PRIME-TIME 1 -00101111 Habil 1 -00101111 Urla 1 -00101111 Yagami 1 -00101111 Alzada 1 -00101111 Pix 1 -00101111 CONSTITUTION 1 -00101111 MISSED 1 -00101111 Jadis 1 -00101111 shellacked 1 -00101111 Kuo-cheng 1 -00101111 CONFUSING 1 -00101111 co-chairman. 1 -00101111 misquotes 1 -00101111 Scoffs 1 -00101111 TANNING 1 -00101111 CHILD-LABOR 1 -00101111 Ponta 1 -00101111 monogram 1 -00101111 Memoria 1 -00101111 Deulonder 1 -00101111 Post-majority 1 -00101111 Huko 1 -00101111 Tzus 1 -00101111 telphoned 1 -00101111 HANS-JORG 1 -00101111 boker 1 -00101111 out-twirling 1 -00101111 INFESTED 1 -00101111 sobers 1 -00101111 Spotlite 1 -00101111 Adversary 1 -00101111 desu 1 -00101111 player-coach 1 -00101111 Voicing 1 -00101111 Firefighter 1 -00101111 Margret 1 -00101111 Sigi 1 -00101111 Thirty-eight-year-old 1 -00101111 Grujic 1 -00101111 esteems 1 -00101111 Reads 1 -00101111 Broadcaster 1 -00101111 snuffboxes 1 -00101111 Mezzo-soprano 1 -00101111 All-conference 1 -00101111 ARMS-SUMMIT 1 -00101111 Cioffimeister 1 -00101111 eastmarks 1 -00101111 Mikhael 1 -00101111 Groans 1 -00101111 deep-breathed 1 -00101111 underutilizes 1 -00101111 steamrolls 1 -00101111 Yifei 1 -00101111 1954-5 1 -00101111 LONGHORN 1 -00101111 determinisms 1 -00101111 Aba 1 -00101111 Ivanon 1 -00101111 Shunheng 1 -00101111 Kangarlu 1 -00101111 Fahri 1 -00101111 MISS 1 -00101111 Irrefutable 1 -00101111 Shou 1 -00101111 executives. 1 -00101111 Jubiliant 1 -00101111 Cherie 1 -00101111 Pufang 1 -00101111 Suspend 1 -00101111 Nonsmoker 1 -00101111 Changhai 1 -00101111 Passionately 1 -00101111 veepstakes 1 -00101111 Gushes 1 -00101111 Poising 1 -00101111 Esiason 1 -00101111 FAKE 1 -00101111 Syssoev 1 -00101111 idealization 1 -00101111 Blue-eyed 1 -00101111 OWENS-CORNING 1 -00101111 ring. 1 -00101111 ROB 1 -00101111 Ying-shek 1 -00101111 Co-curator 1 -00101111 Pradelli 1 -00101111 Brooklyn-bred 1 -00101111 Mayee 1 -00101111 Laconic 1 -00101111 outflew 1 -00101111 missile-killers 1 -00101111 Brags 1 -00101111 IH. 1 -00101111 Satsuki 1 -00101111 Kusto 1 -00101111 Weici 1 -00101111 Nathenson 1 -00101111 Vachratith 1 -00101111 Yukihiro 1 -00101111 D.O. 1 -00101111 BALANCED 1 -00101111 Isaam 1 -00101111 goes. 1 -00101111 non-doctrine 1 -00101111 all-purpose. 1 -00101111 Iordanou 2 -00101111 warbles 2 -00101111 Stepan 2 -00101111 MARCEL 2 -00101111 gurgles 2 -00101111 brays 2 -00101111 Lizondo 2 -00101111 Butowsky 2 -00101111 mammas 2 -00101111 croaks 2 -00101111 Duncanville 2 -00101111 Psychotherapist 2 -00101111 Instructor 2 -00101111 impersonated 2 -00101111 Minoso 2 -00101111 Overexposed 2 -00101111 Sucrose 2 -00101111 grunted 3 -00101111 Laddie 3 -00101111 chirped 3 -00101111 Zivojinovic 3 -00101111 endows 3 -00101111 deadpans 3 -00101111 detests 3 -00101111 MS. 3 -00101111 Baz 3 -00101111 carps 3 -00101111 Vishwanath 4 -00101111 philosophizes 4 -00101111 enthuses 5 -00101111 rejoins 6 -00101111 mourns 6 -00101111 glowed 7 -00101111 exults 7 -00101111 sobs 8 -00101111 huffs 9 -00101111 coos 9 -00101111 inquires 11 -00101111 growled 12 -00101111 chortles 12 -00101111 scolds 12 -00101111 gloats 13 -00101111 intoned 16 -00101111 snorts 17 -00101111 gushes 18 -00101111 thunders 19 -00101111 sighed 19 -00101111 growls 20 -00101111 moans 21 -00101111 grouses 29 -00101111 intones 29 -00101111 mutters 29 -00101111 swears 30 -00101111 sniffs 38 -00101111 exclaimed 42 -00101111 exclaims 46 -00101111 says. 47 -00101111 grumbles 51 -00101111 retorts 51 -00101111 muses 58 -00101111 marvels 61 -00101111 confides 71 -00101111 quips 78 -00101111 sighs 86 -00101111 laments 170 -00101111 observes 349 -00101111 declares 484 -00101111 complains 640 -00101111 warns 693 -00101111 asserts 854 -00101111 concedes 1267 -00101111 asks 1440 -00101111 explains 1665 -00101111 says 94235 -00101111 recalls 1755 -00110 tosell 1 -00110 350-patient 1 -00110 wish-fulfillment 1 -00110 maintainance 1 -00110 Playfair 1 -00110 de-South 1 -00110 predebate 1 -00110 HSR 1 -00110 TREATIES 1 -00110 charcoal-black 1 -00110 Setia 1 -00110 DEBATES 1 -00110 OENOPHILES 1 -00110 offroad 1 -00110 wonder-drug 1 -00110 Rhoadeses 1 -00110 STADIUMS 1 -00110 Marinoto-Jensen 1 -00110 drunkenly 1 -00110 camel-pullers 1 -00110 mayflies 1 -00110 finance-director 1 -00110 toy-TV 1 -00110 bassett 1 -00110 maintenace 1 -00110 2,706 1 -00110 beneficient 1 -00110 survivor-builders 1 -00110 VACATIONERS 1 -00110 15-12 1 -00110 income-leveler 1 -00110 two-panel 1 -00110 unfeminist 1 -00110 exchange-risk 1 -00110 720,722 1 -00110 1,296,018 1 -00110 3,739,700 1 -00110 1,259,939 1 -00110 2,479,761 1 -00110 1,220,469 1 -00110 180,655 1 -00110 QUARREL 1 -00110 30,995 1 -00110 unshirted 1 -00110 530-to-470 1 -00110 comment.The 1 -00110 15-million-person 1 -00110 second-set 2 -00110 to 1008056 -00110 top-of-the-page 2 -001110 GBCB. 1 -001110 JEP. 1 -001110 out-polled 1 -001110 BWAY. 1 -001110 five-ship 1 -001110 passenger-cargo 1 -001110 oustide 1 -001110 Fosforico 1 -001110 Przemyslaw 1 -001110 196,694 1 -001110 Evgeni 1 -001110 artist/composer 1 -001110 ElBee 1 -001110 scanted 1 -001110 WF. 1 -001110 Jasem 1 -001110 BHA. 1 -001110 1,105,150 1 -001110 keg-style 1 -001110 health-warning 1 -001110 nearly-identical 1 -001110 Dussick 1 -001110 resets 1 -001110 Priok 1 -001110 CETH. 1 -001110 RCM. 1 -001110 Stole 1 -001110 CPT. 1 -001110 RII. 1 -001110 AMF. 1 -001110 PDF. 1 -001110 drug-culture 1 -001110 petrifies 1 -001110 ARS. 1 -001110 AFP. 1 -001110 Multichannel 1 -001110 4,751,009 1 -001110 Tokihiko 1 -001110 Esin 1 -001110 Nokia-manufactured 1 -001110 TRANSMARK 1 -001110 872,887 1 -001110 first-offender 1 -001110 Aenne 1 -001110 36W-32L 1 -001110 practical-chore 1 -001110 college-board 1 -001110 Zichron 1 -001110 Renzo 1 -001110 VIAPR. 1 -001110 SAA. 1 -001110 Press/Twentieth 1 -001110 WMRK. 1 -001110 ITAN. 1 -001110 Isam 1 -001110 comedy/dramas 1 -001110 SOCIEDAD 1 -001110 BPL. 1 -001110 VIOLATE 1 -001110 101,665 1 -001110 Parital 1 -001110 4,744,808 1 -001110 overlicensing 1 -001110 Michiyuki 1 -001110 624,750 1 -001110 82,448 1 -001110 Jaromil 1 -001110 investment-and-marketing 1 -001110 MDW. 1 -001110 APGI. 1 -001110 reanimates 1 -001110 BRX. 1 -001110 88-39 1 -001110 SIN. 1 -001110 vitamin-fortified 1 -001110 DAF. 1 -001110 732,229 1 -001110 10340 1 -001110 ASB. 1 -001110 2,320,200 1 -001110 enfolds 1 -001110 Leni 1 -001110 MBN. 1 -001110 14,404 1 -001110 narrow-topped 1 -001110 decoyed 1 -001110 HEXX. 1 -001110 DXR. 1 -001110 property-finance 1 -001110 SPI. 1 -001110 Georges-Marc 1 -001110 CMK. 1 -001110 awes 1 -001110 oversimplifies 1 -001110 DGII. 1 -001110 recapitulates 1 -001110 malo 1 -001110 Cockerill 1 -001110 GEG. 1 -001110 Farbwerke 1 -001110 non-luxury 1 -001110 wherewith 2 -001110 knowledgable 2 -001110 cargo-passenger 2 -001110 lightning-fast 2 -001110 Ea 3 -001110 of 1054553 -001110 adorning 5 -0011110 Mauing 1 -0011110 air-shipping 1 -0011110 bank-rolling 1 -0011110 Gemeinschaftskraftwerk 1 -0011110 Lunacy 1 -0011110 Rio-Sao 1 -0011110 Beto 1 -0011110 Evelio 1 -0011110 U.S.-NATO 1 -0011110 exchanges-the 1 -0011110 twiddling 1 -0011110 beclouds 1 -0011110 fight-make 1 -0011110 pain-bringing 1 -0011110 647,716 1 -0011110 Suites-Downtown 1 -0011110 mist-covered 1 -0011110 rimming 3 -0011110 in 690292 -0011110 --in 4 -001111100 1-in-10 1 -001111100 Mohzen 1 -001111100 ou 1 -001111100 Zenichiro 1 -001111100 567,800 1 -001111100 1,612 1 -001111100 Overwhelms 1 -001111100 715th 1 -001111100 459,600 1 -001111100 Gernot 1 -001111100 mocha 1 -001111100 883,251 1 -001111100 feathers. 1 -001111100 untrueat 1 -001111100 sales-floor 1 -001111100 83,700 1 -001111100 6,103,091 1 -001111100 611,600 1 -001111100 Uslar 2 -001111100 --at 2 -001111100 at 189607 -001111100 318,900 2 -001111101 weeks-with 1 -001111101 fron 1 -001111101 1979-July 1 -001111101 ruby-and-diamond 1 -001111101 Denationalizing 1 -001111101 3,925 1 -001111101 retells 1 -001111101 Ceanothus 1 -001111101 -55.9 1 -001111101 -24.9 1 -001111101 Angolan-related 1 -001111101 church-operated 1 -001111101 lath 1 -001111101 4,171 1 -001111101 ghosting 1 -001111101 purloin 1 -001111101 Charlestonians 1 -001111101 Zdenek 2 -001111101 fom 3 -001111101 from 192850 -001111101 vs. 524 -001111110 oil-barrel 1 -001111110 355,313 1 -001111110 AFDC-Unemployed 1 -001111110 404,900 1 -001111110 608,600 1 -001111110 20,881 1 -001111110 1,072,900 1 -001111110 301,900 1 -001111110 zip-closing 1 -001111110 ALLGEMEINE 1 -001111110 1,176,426 1 -001111110 209,800 1 -001111110 dieticians 1 -001111110 1,000,900 1 -001111110 byu 1 -001111110 848,600 1 -001111110 equitywarrant 1 -001111110 Yaqui 1 -001111110 300-119 1 -001111110 EL. 1 -001111110 1,457,000 1 -001111110 1,818,200 1 -001111110 top-name 1 -001111110 left-to-liberal 1 -001111110 1,956,900 1 -001111110 labor-but 1 -001111110 HEM. 1 -001111110 2,106,000 1 -001111110 1,887,900 1 -001111110 2,486,031 1 -001111110 66,400 1 -001111110 24-16 1 -001111110 non-experienced 1 -001111110 147.42 1 -001111110 239,750 1 -001111110 484,770 1 -001111110 1,631,900 1 -001111110 2,299 1 -001111110 anti-Minorco 1 -001111110 129,400 1 -001111110 futures-commission 1 -001111110 scandal-tarnished 1 -001111110 2,498,000 1 -001111110 16,650,000 1 -001111110 400,500 1 -001111110 91,166 1 -001111110 354,051 1 -001111110 bio-chemical 1 -001111110 betide 1 -001111110 reconfirms 1 -001111110 631,900 1 -001111110 243,400 1 -001111110 value-seekers 1 -001111110 216,049 1 -001111110 2,377,000 1 -001111110 26-15 1 -001111110 4,605,261 1 -001111110 1,930,500 1 -001111110 shareholders-as 1 -001111110 40.56 1 -001111110 F.I. 1 -001111110 cute-beaked 1 -001111110 1,970,900 1 -001111110 48,139 1 -001111110 4,028,850 1 -001111110 2,201,700 1 -001111110 2,704 1 -001111110 1,761,600 1 -001111110 094-B 1 -001111110 889,000 1 -001111110 pensionless 1 -001111110 665,184 1 -001111110 less-combative 1 -001111110 tranport 1 -001111110 485,697 1 -001111110 2,481,000 1 -001111110 1,556,315 1 -001111110 2200/200 1 -001111110 Maestoso-Allegro 1 -001111110 vocational-retraining 1 -001111110 329,225 1 -001111110 54,991 1 -001111110 87,350 1 -001111110 2,207,000 1 -001111110 1,751,900 1 -001111110 1,843,559 1 -001111110 bythe 1 -001111110 chocolate-pudding 1 -001111110 spaces. 1 -001111110 race-of-victim 1 -001111110 2,249,600 1 -001111110 hurricane-ravaged 1 -001111110 4,224,404 1 -001111110 store-front 1 -001111110 2,788,200 1 -001111110 discount-option 1 -001111110 372,089 1 -001111110 2,364 1 -001111110 one-platoon 1 -001111110 Corkin 1 -001111110 2,027,100 1 -001111110 2,018,000 1 -001111110 conclusionthat 1 -001111110 2,123,500 1 -001111110 2,154,200 1 -001111110 2,264,150 1 -001111110 2,784,700 1 -001111110 28,345 1 -001111110 2,091,400 1 -001111110 2,380,237 1 -001111110 530,300 1 -001111110 189,504 1 -001111110 macaque 1 -001111110 725,400 1 -001111110 1,865,000 1 -001111110 2,737,200 1 -001111110 2,193,000 1 -001111110 2,869,700 1 -001111110 2,248,000 1 -001111110 2,774,400 1 -001111110 510,400 1 -001111110 165,400 1 -001111110 game-farm 1 -001111110 2,916,300 1 -001111110 2,551,000 1 -001111110 2,130,900 1 -001111110 2,204,000 1 -001111110 full-flavor 1 -001111110 31,626 1 -001111110 2,462,000 1 -001111110 2,856,500 1 -001111110 2,630,281 1 -001111110 2,710,900 1 -001111110 2,631,400 1 -001111110 965,555 1 -001111110 29-21 1 -001111110 2,134,400 1 -001111110 Musselwhite 1 -001111110 Eastmain 1 -001111110 450,600 1 -001111110 87year-old 1 -001111110 1,516 1 -001111110 1,899,900 1 -001111110 companion-CMO 1 -001111110 2,245,600 1 -001111110 1,883,600 1 -001111110 2,103,000 1 -001111110 2093 1 -001111110 486,200 1 -001111110 2,030,700 1 -001111110 27,677 1 -001111110 2,237,800 1 -001111110 893,933 1 -001111110 anti-shock 1 -001111110 once-prospering 1 -001111110 2,073,700 1 -001111110 2,124,200 1 -001111110 231,500 1 -001111110 2,065,200 1 -001111110 1,940,500 1 -001111110 sonography 1 -001111110 2,353,300 1 -001111110 debt-holder 1 -001111110 1,951,900 1 -001111110 959,403 1 -001111110 259,577 1 -001111110 Moscow-made 1 -001111110 1,910,100 1 -001111110 rebasing 1 -001111110 less-expansive 1 -001111110 Serengeti-like 1 -001111110 ROCK 2 -001111110 Stinnes 2 -001111110 Tomei 2 -001111110 125,700 2 -001111110 Transformer 2 -001111110 then-failing 2 -001111110 197,500 2 -001111110 tighter-than-expected 3 -001111110 by 200097 -001111110 f-Includes 5 -0011111110 re-adjusted 1 -0011111110 Jacobean-style 1 -0011111110 extra-legal 1 -0011111110 1,033,238 1 -0011111110 Damns 1 -0011111110 fora 1 -0011111110 2,894,850 1 -0011111110 megaton 1 -0011111110 32,415,680 1 -0011111110 60,000-70,000 1 -0011111110 11.466 1 -0011111110 Ks 1 -0011111110 testoperations 1 -0011111110 388,800 1 -0011111110 Pipestill 1 -0011111110 increaded 1 -0011111110 world-freight 1 -0011111110 GETAC. 1 -0011111110 rock/heavy 1 -0011111110 ENDORSED 2 -0011111110 Financiera 2 -0011111110 for 374409 -0011111110 Provides 6 -00111111110 Sueo 1 -00111111110 Shia-Sunni 1 -00111111110 Thamir 1 -00111111110 state-inspection 1 -00111111110 Afghan-government 1 -00111111110 school-aged 1 -00111111110 comservative 1 -00111111110 brooking 1 -00111111110 jaywalker 1 -00111111110 Doubleday/Bantam/ 1 -00111111110 what-if-the-communists-attack 1 -00111111110 forseeing 1 -00111111110 medium-diesel 1 -00111111110 ANZUS. 1 -00111111110 USAir-Pacific 1 -00111111110 Arvo 1 -00111111110 Allied-Lyons/Hiram 1 -00111111110 ventilatory 1 -00111111110 Trump-controlled 1 -00111111110 poli 1 -00111111110 Smarty 1 -00111111110 Stoleshnikov 1 -00111111110 re-recording 1 -00111111110 valence 1 -00111111110 semi-verbal 1 -00111111110 7,406,775 1 -00111111110 3,258 1 -00111111110 .233 1 -00111111110 Union-California 1 -00111111110 Maasai 1 -00111111110 diptheria-pertussis-tetanus 1 -00111111110 Rowntree-Nestle 1 -00111111110 red-roofed 1 -00111111110 three-card 2 -00111111110 wtih 2 -00111111110 Szanghaj 2 -00111111110 deposit-taker 2 -00111111110 Cermak 2 -00111111110 enfeebles 2 -00111111110 wih 4 -00111111110 rainbow-colored 4 -00111111110 entailing 6 -00111111110 with 198430 -00111111110 symbolizing 17 -001111111110 open-sea 1 -001111111110 mobil-home 1 -001111111110 8739053 1 -001111111110 static-analysis 1 -001111111110 421,469,000 1 -001111111110 286,500 1 -001111111110 4,484,000 1 -001111111110 cigaret 1 -001111111110 e-In 1 -001111111110 firm-fixed-price 1 -001111111110 employee-funded 1 -001111111110 ruled. 1 -001111111110 throughought 1 -001111111110 aniticipates 1 -001111111110 systems-related 1 -001111111110 reemphasizes 1 -001111111110 ot 3 -001111111110 907,450 3 -001111111110 on 228445 -001111111110 exalting 3 -001111111111000 Indo-Soviet 1 -001111111111000 congregates 1 -001111111111000 1953-69 1 -001111111111000 poll-driven 1 -001111111111000 super-potent 1 -001111111111000 Clete 1 -001111111111000 technology. 1 -001111111111000 lee 1 -001111111111000 hemorrhaged 1 -001111111111000 8,594,324 1 -001111111111000 Balkanizes 1 -001111111111000 fluoresces 1 -001111111111000 icludes 1 -001111111111000 ex-ANC 1 -001111111111000 supercedes 1 -001111111111000 suggestion. 1 -001111111111000 MANmen 1 -001111111111000 trade-press 1 -001111111111000 bedplus 1 -001111111111000 game-ranching 1 -001111111111000 parching 1 -001111111111000 unwonted 2 -001111111111000 Serb 2 -001111111111000 depoliticizes 2 -001111111111000 much-desired 2 -001111111111000 incites 2 -001111111111000 azure-eyed 2 -001111111111000 hobo 2 -001111111111000 vaporizes 3 -001111111111000 adjudicates 3 -001111111111000 befalls 3 -001111111111000 crystallizes 4 -001111111111000 out-performed 5 -001111111111000 supplants 5 -001111111111000 outgained 7 -001111111111000 eclipses 8 -001111111111000 corroborates 9 -001111111111000 foreshadows 12 -001111111111000 approximates 20 -001111111111000 encompassed 20 -001111111111000 entailed 39 -001111111111000 equaled 78 -001111111111000 constituted 160 -001111111111000 comprises 233 -001111111111000 featured 350 -001111111111000 contained 874 -001111111111000 exceeded 1198 -001111111111000 involves 1412 -001111111111000 reflected 2032 -001111111111000 includes 5131 -001111111111000 included 5957 -0011111111110010 senators-who 1 -0011111111110010 unreviewable 1 -0011111111110010 manhauling 1 -0011111111110010 disc-brake 1 -0011111111110010 highballs 1 -0011111111110010 Hispanic-community 1 -0011111111110010 how-do-I-get-a-handle-on-this-guy 1 -0011111111110010 receiving-dish 1 -0011111111110010 karate-chopping 1 -0011111111110010 Manhattan-bred 1 -0011111111110010 kidnaps 1 -0011111111110010 235-page 1 -0011111111110010 city-limit 1 -0011111111110010 still-unconfirmed 1 -0011111111110010 relects 1 -0011111111110010 bowel-clenching 1 -0011111111110010 non-arbitrage 1 -0011111111110010 bewailing 1 -0011111111110010 sourceless 1 -0011111111110010 peremptorily 1 -0011111111110010 gastro-intestinal 1 -0011111111110010 squashes 1 -0011111111110010 pseudoscientific 1 -0011111111110010 enumerating 2 -0011111111110010 doffs 2 -0011111111110010 three-hit 2 -0011111111110010 bides 2 -0011111111110010 forestalls 2 -0011111111110010 evidencing 2 -0011111111110010 embroiders 2 -0011111111110010 Fermina 2 -0011111111110010 Compressing 2 -0011111111110010 joshed 2 -0011111111110010 pantomime 3 -0011111111110010 hamstrings 3 -0011111111110010 rekindles 3 -0011111111110010 precipitates 3 -0011111111110010 irking 3 -0011111111110010 vaporizing 3 -0011111111110010 muffles 3 -0011111111110010 punctuating 4 -0011111111110010 obviates 4 -0011111111110010 exuding 5 -0011111111110010 imbues 5 -0011111111110010 belying 6 -0011111111110010 reinstates 6 -0011111111110010 dooming 6 -0011111111110010 blunts 6 -0011111111110010 besting 7 -0011111111110010 paralleling 8 -0011111111110010 erases 10 -0011111111110010 commemorates 12 -0011111111110010 befitting 12 -0011111111110010 amidst 14 -0011111111110010 underlining 14 -0011111111110010 disrupts 16 -0011111111110010 mirroring 25 -0011111111110010 belies 32 -0011111111110010 heightens 38 -0011111111110010 underscores 259 -0011111111110010 reflecting 1865 -0011111111110010 amid 2438 -0011111111110010 reflects 2634 -0011111111110010 nor 2754 -0011111111110010 despite 6018 -0011111111110011 four-TV-camera 1 -0011111111110011 frothier 1 -0011111111110011 cleverer 1 -0011111111110011 quality-care 1 -0011111111110011 cyclical-type 1 -0011111111110011 bank-product 1 -0011111111110011 strums 1 -0011111111110011 integrated-electronics 1 -0011111111110011 bad-guy 1 -0011111111110011 clear-channel 1 -0011111111110011 sinkings 1 -0011111111110011 50-foot-tall 1 -0011111111110011 non-budgetary 1 -0011111111110011 488th 1 -0011111111110011 1,613 1 -0011111111110011 FORMED 1 -0011111111110011 reinvited 1 -0011111111110011 U.D. 1 -0011111111110011 gut-grabbing 1 -0011111111110011 Immortal 2 -0011111111110011 bannered 2 -0011111111110011 176,037 2 -0011111111110011 synchrotron 2 -0011111111110011 engagingly 2 -0011111111110011 dauntless 2 -0011111111110011 corporate-provided 2 -0011111111110011 unscrews 2 -0011111111110011 anouncing 2 -0011111111110011 bracketing 2 -0011111111110011 5-foot-11 3 -0011111111110011 earth-colored 3 -0011111111110011 Seamus 3 -0011111111110011 clasping 3 -0011111111110011 bedeviling 3 -0011111111110011 strumming 4 -0011111111110011 FDN. 5 -0011111111110011 rebutting 9 -0011111111110011 swamping 10 -0011111111110011 Seek 10 -0011111111110011 pervading 13 -0011111111110011 eclipsing 38 -0011111111110011 constituting 39 -0011111111110011 echoing 71 -0011111111110011 comprising 112 -0011111111110011 following 6292 -0011111111110011 representing 2126 -001111111111010 act-one 1 -001111111111010 SS20s 1 -001111111111010 AMong 1 -001111111111010 tough-but-funny 1 -001111111111010 lens-solution 1 -001111111111010 Egyptian-held 1 -001111111111010 EJS 1 -001111111111010 7,875,000 1 -001111111111010 X-ray-like 1 -001111111111010 IRAKASTEN 1 -001111111111010 3.4453 1 -001111111111010 2.8033 1 -001111111111010 2.7628 1 -001111111111010 EXPLORING 1 -001111111111010 creasing 1 -001111111111010 12,837,000 1 -001111111111010 662,437 1 -001111111111010 wi 1 -001111111111010 303,700 1 -001111111111010 Seascape 1 -001111111111010 RELISHES 1 -001111111111010 wth 1 -001111111111010 270,300 1 -001111111111010 and-file 1 -001111111111010 expenses. 1 -001111111111010 Fernay 1 -001111111111010 ADD. 2 -001111111111010 894,200 2 -001111111111010 576,300 2 -001111111111010 287,700 2 -001111111111010 beween 3 -001111111111010 betwen 5 -001111111111010 between 22612 -001111111111010 betweeen 6 -001111111111011 Vitis 1 -001111111111011 football-team 1 -001111111111011 Maued 1 -001111111111011 coarsening 1 -001111111111011 re-flower 1 -001111111111011 military-clad 1 -001111111111011 half-wit 1 -001111111111011 clean-living 1 -001111111111011 refrigerates 1 -001111111111011 681,400 1 -001111111111011 rerigging 1 -001111111111011 cliche-blinded 1 -001111111111011 medium-lift 1 -001111111111011 coconut-wine 1 -001111111111011 Confuse 1 -001111111111011 4,997 1 -001111111111011 steely-eyed 1 -001111111111011 activist-oriented 1 -001111111111011 equicidal 1 -001111111111011 deep-frying 1 -001111111111011 nonmonogamous 1 -001111111111011 portaging 1 -001111111111011 mid-state 1 -001111111111011 phosphate-based 1 -001111111111011 surounding 1 -001111111111011 discriminated-against 1 -001111111111011 kimono-clad 1 -001111111111011 state-fair 1 -001111111111011 Jofu 1 -001111111111011 subdivides 1 -001111111111011 near-retirement-aged 1 -001111111111011 guitar-solo 1 -001111111111011 motorizing 1 -001111111111011 2,743 1 -001111111111011 5,912 1 -001111111111011 job-conscious 1 -001111111111011 Day/Night 1 -001111111111011 racist-minded 1 -001111111111011 seduming 1 -001111111111011 Mixtec 1 -001111111111011 rifle-carrying 1 -001111111111011 30-ish 1 -001111111111011 all-silk 1 -001111111111011 public-use 1 -001111111111011 anti-impressionist 1 -001111111111011 guts-out 1 -001111111111011 Dickens-Capra 1 -001111111111011 mystery-draped 1 -001111111111011 persauding 1 -001111111111011 spattering 1 -001111111111011 4.5-liter 1 -001111111111011 gay-bashing 1 -001111111111011 all-America 1 -001111111111011 Japanese-related 1 -001111111111011 division-level 1 -001111111111011 uplinking-sending 1 -001111111111011 reinsuring 1 -001111111111011 no-children 1 -001111111111011 lassoing 1 -001111111111011 cause-conscious 1 -001111111111011 Greek-Danish 1 -001111111111011 Underrepresented 1 -001111111111011 Rustico 1 -001111111111011 -sock 1 -001111111111011 proprietary-design 1 -001111111111011 neckless 1 -001111111111011 old-generation 1 -001111111111011 reconnecting 1 -001111111111011 cash-happy 1 -001111111111011 conscripting 1 -001111111111011 shrimp-eating 1 -001111111111011 Christmastree 1 -001111111111011 finger-like 1 -001111111111011 pre-owned 1 -001111111111011 M.B.A.-toting 1 -001111111111011 preferrring 1 -001111111111011 post-1963 1 -001111111111011 spick-and-span 1 -001111111111011 batter-fried 1 -001111111111011 mountain-sized 1 -001111111111011 bezoar 1 -001111111111011 video-mad 1 -001111111111011 topof-the-line 1 -001111111111011 208-seat 2 -001111111111011 debauching 2 -001111111111011 whop 2 -001111111111011 mushed 2 -001111111111011 recentralizing 2 -001111111111011 cherishing 2 -001111111111011 reproaching 2 -001111111111011 permeating 3 -001111111111011 rids 3 -001111111111011 severs 3 -001111111111011 1241 3 -001111111111011 enrages 3 -001111111111011 conquers 3 -001111111111011 foretelling 4 -001111111111011 manifesting 4 -001111111111011 deluging 5 -001111111111011 blitzing 6 -001111111111011 engulfing 9 -001111111111011 implicating 24 -001111111111011 among 14685 -001111111111011 plaguing 43 -001111111111100 Turkish-occupied 1 -001111111111100 0.523 1 -001111111111100 Synchro-Energized 1 -001111111111100 208,800 1 -001111111111100 127,252 1 -001111111111100 antithrombotic 1 -001111111111100 business-governmental 1 -001111111111100 designer-priced 1 -001111111111100 300,499 1 -001111111111100 1,040,000 1 -001111111111100 571,429 1 -001111111111100 railroad-themed 1 -001111111111100 deep-sixed 1 -001111111111100 1,864,649 1 -001111111111100 liabililty 1 -001111111111100 questionning 1 -001111111111100 912,200 1 -001111111111100 363,100 1 -001111111111100 186,542,990 1 -001111111111100 paved-over 1 -001111111111100 402,500 1 -001111111111100 390,573 1 -001111111111100 fr 1 -001111111111100 better-than-standard 1 -001111111111100 balkanizing 1 -001111111111100 1,287,030 1 -001111111111100 AVX-CTS 1 -001111111111100 three-snake 1 -001111111111100 Gotham-area 1 -001111111111100 swiftly-revamping 1 -001111111111100 860,323 1 -001111111111100 horrible-looking 1 -001111111111100 keek 1 -001111111111100 1,511,480 1 -001111111111100 overextends 1 -001111111111100 284,500 1 -001111111111100 115,300 1 -001111111111100 517,350 1 -001111111111100 protester-type 1 -001111111111100 maladaptive 1 -001111111111100 uptrack 1 -001111111111100 credit-financed 1 -001111111111100 737,700 1 -001111111111100 short-borrowing 1 -001111111111100 taxi-fleet 1 -001111111111100 Sirimavo 1 -001111111111100 1,972,515 1 -001111111111100 off-thus 1 -001111111111100 238,300 1 -001111111111100 858,309 1 -001111111111100 platelet 2 -001111111111100 exalts 2 -001111111111100 denoting 3 -001111111111100 into 39448 -001111111111100 onto 1088 -0011111111111010 winegrower-and 1 -0011111111111010 892,262 1 -0011111111111010 deconstructs 1 -0011111111111010 bicontinental 1 -0011111111111010 230,750 1 -0011111111111010 3,765,286 1 -0011111111111010 non-polemic 1 -0011111111111010 hot-wired 1 -0011111111111010 Darla 1 -0011111111111010 lawyer-Naderite 1 -0011111111111010 novelty-seeking 1 -0011111111111010 realleges 1 -0011111111111010 1,399,564 1 -0011111111111010 261,132 1 -0011111111111010 Ranzino 1 -0011111111111010 2,744,600 1 -0011111111111010 predating 1 -0011111111111010 1,469,885 1 -0011111111111010 745,700 1 -0011111111111010 higher-seniority 1 -0011111111111010 mob-dominated 1 -0011111111111010 1,499,966 1 -0011111111111010 438,436 1 -0011111111111010 re-ignited 1 -0011111111111010 proscribing 1 -0011111111111010 935,900 1 -0011111111111010 872,700 1 -0011111111111010 few-including 1 -0011111111111010 deficiency-related 1 -0011111111111010 1,920,527 1 -0011111111111010 Speranza 1 -0011111111111010 floursack 1 -0011111111111010 scaremongered 1 -0011111111111010 267,200 1 -0011111111111010 --just 1 -0011111111111010 348,733 1 -0011111111111010 444,965 1 -0011111111111010 itselfthe 1 -0011111111111010 498,991 1 -0011111111111010 overthrows 1 -0011111111111010 7,215,631 1 -0011111111111010 tippy 1 -0011111111111010 135,033 1 -0011111111111010 339,200 1 -0011111111111010 avium 1 -0011111111111010 6,621,900 1 -0011111111111010 Mousse/Sara 1 -0011111111111010 1,206,827 1 -0011111111111010 136,720 1 -0011111111111010 herder 1 -0011111111111010 Ohne 1 -0011111111111010 yesterdayin 1 -0011111111111010 4,145,998 1 -0011111111111010 againt 3 -0011111111111010 bisecting 3 -0011111111111010 enjoining 39 -0011111111111010 against 25550 -0011111111111010 vis-a-vis 58 -00111111111110110 16,980 1 -00111111111110110 Czarist-era 1 -00111111111110110 post-Aquino 1 -00111111111110110 Brecker 1 -00111111111110110 couch-lined 1 -00111111111110110 mosquito-filled 1 -00111111111110110 Deadheaded 1 -00111111111110110 bbom 1 -00111111111110110 iron-hulled 1 -00111111111110110 shoebox-shaped 1 -00111111111110110 3-from 1 -00111111111110110 permit-holders 1 -00111111111110110 daydreamer 1 -00111111111110110 nonarbitrable 1 -00111111111110110 convenant 1 -00111111111110110 100-0 1 -00111111111110110 tothe 1 -00111111111110110 whithout 1 -00111111111110110 detectably 1 -00111111111110110 afterwords 1 -00111111111110110 benevolently 1 -00111111111110110 stuffer 1 -00111111111110110 chinless 1 -00111111111110110 independently-owned 1 -00111111111110110 large-position 1 -00111111111110110 Plasson 1 -00111111111110110 Pittsburghers 1 -00111111111110110 repetitively 1 -00111111111110110 shrine-like 1 -00111111111110110 endswithout 1 -00111111111110110 spring-and-summer 1 -00111111111110110 sales-free 1 -00111111111110110 humidity-starved 1 -00111111111110110 exudations 1 -00111111111110110 quasi-publicly 1 -00111111111110110 foregoes 1 -00111111111110110 230-megawatt 1 -00111111111110110 Introduces 1 -00111111111110110 prepainted 1 -00111111111110110 reformatory 2 -00111111111110110 Drastically 2 -00111111111110110 fringing 2 -00111111111110110 Emmy-award 2 -00111111111110110 limited-access 2 -00111111111110110 ligament 2 -00111111111110110 cornbread 3 -00111111111110110 rack-and-pinion 4 -00111111111110110 non-income 4 -00111111111110110 deceitfully 5 -00111111111110110 without 12747 -00111111111110110 begets 11 -00111111111110111 hazarded 1 -00111111111110111 jinshi 1 -00111111111110111 --toward 1 -00111111111110111 Soviet-embassy 1 -00111111111110111 out-worn 1 -00111111111110111 slab-sided 1 -00111111111110111 1280 1 -00111111111110111 squad-style 1 -00111111111110111 semi-detached 1 -00111111111110111 school-color 1 -00111111111110111 slip-resistant 1 -00111111111110111 pre-existed 1 -00111111111110111 perceptual-cognitive 1 -00111111111110111 hard-shelled 1 -00111111111110111 antagonised 1 -00111111111110111 ski-racing 1 -00111111111110111 financial-group 1 -00111111111110111 tall-oil 1 -00111111111110111 31,461 1 -00111111111110111 24,118 1 -00111111111110111 agency-licensed 1 -00111111111110111 in-dash 1 -00111111111110111 option-disclosure 1 -00111111111110111 unfastening 1 -00111111111110111 codenamed 2 -00111111111110111 accrual-based 2 -00111111111110111 vexes 2 -00111111111110111 idles 3 -00111111111110111 rousting 3 -00111111111110111 reauthorizing 6 -00111111111110111 shrouding 6 -00111111111110111 abolishes 8 -00111111111110111 enveloping 9 -00111111111110111 besetting 11 -00111111111110111 pre-empts 13 -00111111111110111 encompassing 34 -00111111111110111 afflicting 39 -00111111111110111 documenting 42 -00111111111110111 detailing 121 -00111111111110111 whereby 136 -00111111111110111 towards 148 -00111111111110111 featuring 436 -00111111111110111 containing 445 -00111111111110111 affecting 638 -00111111111110111 surrounding 780 -00111111111110111 concerning 925 -00111111111110111 covering 1106 -00111111111110111 regarding 1265 -00111111111110111 involving 3003 -00111111111110111 toward 6102 -0011111111111100 doff 1 -0011111111111100 Klomfass 1 -0011111111111100 a-From 1 -0011111111111100 tatin 1 -0011111111111100 ridded 1 -0011111111111100 anti-Zionists 1 -0011111111111100 barbae 1 -0011111111111100 higher. 1 -0011111111111100 outshooting 1 -0011111111111100 out-distance 1 -0011111111111100 downrated 1 -0011111111111100 -on 1 -0011111111111100 stake-welcomed 1 -0011111111111100 well-below 1 -0011111111111100 -completed 1 -0011111111111100 problem-meeting 1 -0011111111111100 Akki 1 -0011111111111100 obsesses 1 -0011111111111100 whets 1 -0011111111111100 choco 1 -0011111111111100 disempower 1 -0011111111111100 picked-over 1 -0011111111111100 betoken 1 -0011111111111100 -twice 1 -0011111111111100 Fleabag 1 -0011111111111100 lacerates 1 -0011111111111100 quinone 1 -0011111111111100 saleswise 1 -0011111111111100 contro 1 -0011111111111100 WRIT-TEN 1 -0011111111111100 performance-wise 1 -0011111111111100 Charmers 1 -0011111111111100 disassembling 2 -0011111111111100 -to 2 -0011111111111100 pawing 3 -0011111111111100 08 3 -0011111111111100 outshines 4 -0011111111111100 Riba 6 -0011111111111100 Super-NOW 11 -0011111111111100 undervalues 15 -0011111111111100 approximating 16 -0011111111111100 Thirty-month 62 -0011111111111100 outstripping 65 -0011111111111100 exceeds 542 -0011111111111100 exceeding 611 -0011111111111100 above 5899 -0011111111111100 below 5679 -00111111111111010 abouton 1 -00111111111111010 retail-deposit 1 -00111111111111010 Swiss-listed 1 -00111111111111010 mini-stores 1 -00111111111111010 too-activist 1 -00111111111111010 1,439,498 1 -00111111111111010 pintail 1 -00111111111111010 swain 1 -00111111111111010 1,319,850 1 -00111111111111010 ringworm 1 -00111111111111010 level-further 1 -00111111111111010 royale 1 -00111111111111010 microwave-generated 1 -00111111111111010 767,015 1 -00111111111111010 162,900 1 -00111111111111010 8-8-88 1 -00111111111111010 quashes 1 -00111111111111010 unbecoming 2 -00111111111111010 embroiling 3 -00111111111111010 corrodes 3 -00111111111111010 sun-aged 3 -00111111111111010 inflames 4 -00111111111111010 hogging 5 -00111111111111010 chronicling 15 -00111111111111010 predated 17 -00111111111111010 dramatizes 19 -00111111111111010 over 37398 -00111111111111010 escalates 23 -001111111111110110 outnumbers 1 -001111111111110110 health-endangering 1 -001111111111110110 unhired 1 -001111111111110110 reweaving 1 -001111111111110110 mischaracterized 1 -001111111111110110 A-37 1 -001111111111110110 kaboom 1 -001111111111110110 pre-dating 1 -001111111111110110 undeployed 1 -001111111111110110 streetssomething 1 -001111111111110110 beaching 1 -001111111111110110 Nazi-dominated 1 -001111111111110110 hile 1 -001111111111110110 two-million-electron-volt 1 -001111111111110110 short-dropping 1 -001111111111110110 hatswith 1 -001111111111110110 reat 1 -001111111111110110 once-strident 1 -001111111111110110 encrust 2 -001111111111110110 unprofitably 2 -001111111111110110 cross-examining 2 -001111111111110110 cartelizing 2 -001111111111110110 impelling 3 -001111111111110110 athwart 3 -001111111111110110 destabilizes 3 -001111111111110110 embellishing 3 -001111111111110110 pierces 4 -001111111111110110 Caused 4 -001111111111110110 contravened 4 -001111111111110110 bests 5 -001111111111110110 muddies 6 -001111111111110110 ruffling 6 -001111111111110110 amongst 6 -001111111111110110 punctuate 6 -001111111111110110 wracking 7 -001111111111110110 sharpens 9 -001111111111110110 outweighing 10 -001111111111110110 impairs 17 -001111111111110110 outstrips 18 -001111111111110110 surpasses 29 -001111111111110110 outweighs 37 -001111111111110110 unto 48 -001111111111110110 diminishes 59 -001111111111110110 underneath 92 -001111111111110110 beside 158 -001111111111110110 atop 167 -001111111111110110 alongside 248 -001111111111110110 beneath 287 -001111111111110110 upon 2464 -001111111111110110 beyond 3190 -001111111111110110 across 3343 -001111111111110110 behind 4204 -001111111111110111 detoxing 1 -001111111111110111 adjusted-rate 1 -001111111111110111 custom-tailor 1 -001111111111110111 Hulkamania 1 -001111111111110111 beaux 1 -001111111111110111 leading-edge-up 1 -001111111111110111 hypnotherapists 1 -001111111111110111 cashers 1 -001111111111110111 bannering 1 -001111111111110111 first-release 1 -001111111111110111 1,291,635 1 -001111111111110111 karet 1 -001111111111110111 ferryboats 1 -001111111111110111 flash-freeze 1 -001111111111110111 mein 1 -001111111111110111 2,133,000 2 -001111111111110111 2,153,000 2 -001111111111110111 2,258,000 2 -001111111111110111 2,318,000 2 -001111111111110111 2,483,000 2 -001111111111110111 fogs 2 -001111111111110111 Creedence 2 -001111111111110111 2,549,000 2 -001111111111110111 2,287,000 2 -001111111111110111 malevolently 2 -001111111111110111 2,679,000 2 -001111111111110111 2,010,000 2 -001111111111110111 2,658,000 2 -001111111111110111 1.8338 2 -001111111111110111 2,168,000 2 -001111111111110111 2,323,000 2 -001111111111110111 2,244,000 2 -001111111111110111 2,208,000 2 -001111111111110111 2,431,000 2 -001111111111110111 2,238,000 2 -001111111111110111 2,211,000 2 -001111111111110111 2,319,000 2 -001111111111110111 2,101,000 2 -001111111111110111 2,154,000 2 -001111111111110111 44.27 2 -001111111111110111 2,162,000 2 -001111111111110111 2,056,000 2 -001111111111110111 312,680 2 -001111111111110111 2,069,000 2 -001111111111110111 prowled 2 -001111111111110111 2,052,000 2 -001111111111110111 2,454,000 2 -001111111111110111 2,096,000 2 -001111111111110111 at. 2 -001111111111110111 2,436,000 2 -001111111111110111 2,381,000 2 -001111111111110111 around. 2 -001111111111110111 2,053,000 2 -001111111111110111 2,033,000 2 -001111111111110111 2,507,000 2 -001111111111110111 2,477,000 2 -001111111111110111 2,058,000 2 -001111111111110111 2,071,000 2 -001111111111110111 2,327,000 2 -001111111111110111 2,179,000 2 -001111111111110111 2,467,000 2 -001111111111110111 double-time 2 -001111111111110111 2,256,000 2 -001111111111110111 2,417,000 2 -001111111111110111 2,623,000 2 -001111111111110111 bongos 2 -001111111111110111 2,294,000 2 -001111111111110111 2,384,000 2 -001111111111110111 1,993,000 2 -001111111111110111 2,173,000 2 -001111111111110111 2,463,000 2 -001111111111110111 2,031,000 2 -001111111111110111 2,389,000 2 -001111111111110111 adulterating 2 -001111111111110111 double-parked 3 -001111111111110111 2,275,000 3 -001111111111110111 2,022,000 3 -001111111111110111 2,255,000 3 -001111111111110111 2,132,000 3 -001111111111110111 3,340 3 -001111111111110111 2,077,000 3 -001111111111110111 2,089,000 3 -001111111111110111 2,119,000 3 -001111111111110111 2,107,000 4 -001111111111110111 2,032,000 4 -001111111111110111 2,020,000 4 -001111111111110111 2,090,000 4 -001111111111110111 2,070,000 4 -001111111111110111 2,000,000 4 -001111111111110111 2,247,000 4 -001111111111110111 2,175,000 5 -001111111111110111 voce 5 -001111111111110111 outta 5 -001111111111110111 multiplies 8 -001111111111110111 crisscrossing 8 -001111111111110111 trimmers 11 -001111111111110111 around 10418 -001111111111110111 aboard 524 -0011111111111110 incinerates 1 -0011111111111110 Amphibious 1 -0011111111111110 3-inch 1 -0011111111111110 green-lined 1 -0011111111111110 83,309 1 -0011111111111110 rolled-over 1 -0011111111111110 studding 1 -0011111111111110 quick-sell 1 -0011111111111110 lysing 1 -0011111111111110 lyse 1 -0011111111111110 mosaiclike 1 -0011111111111110 stepped-back 1 -0011111111111110 mallard-suspendered 1 -0011111111111110 WHEELCHAIR 1 -0011111111111110 dperessed 1 -0011111111111110 nonburdensome 1 -0011111111111110 firstserved 1 -0011111111111110 exotoxin 1 -0011111111111110 handicap-accessibility 1 -0011111111111110 six-burner 1 -0011111111111110 populist-tinged 1 -0011111111111110 wood-chip 1 -0011111111111110 185-pound 1 -0011111111111110 Syrian-Lebanese 1 -0011111111111110 excepts 1 -0011111111111110 statistical-quality 1 -0011111111111110 four-inch-wide 1 -0011111111111110 metal-tainted 1 -0011111111111110 high-blood 1 -0011111111111110 Urbanites 1 -0011111111111110 less-painful 1 -0011111111111110 nonaerosol 1 -0011111111111110 flowerlike 1 -0011111111111110 Laser-probe 1 -0011111111111110 285,329 1 -0011111111111110 8,363 1 -0011111111111110 smog-like 1 -0011111111111110 barely-profitable 1 -0011111111111110 20,000-square-feet 1 -0011111111111110 brain-tissue 1 -0011111111111110 insurer-owned 1 -0011111111111110 data-bus 1 -0011111111111110 taxonomical 1 -0011111111111110 well-conditioned 1 -0011111111111110 re-opening 1 -0011111111111110 SHUN 1 -0011111111111110 bet-the-mortgage 1 -0011111111111110 20-pound 1 -0011111111111110 benign-sounding 1 -0011111111111110 22/11 1 -0011111111111110 Deficiences 1 -0011111111111110 688-Class 1 -0011111111111110 letterpress 1 -0011111111111110 38,552 1 -0011111111111110 Brio 1 -0011111111111110 world- 1 -0011111111111110 prelicensed 1 -0011111111111110 black-suited 1 -0011111111111110 exclamatory 1 -0011111111111110 32-degree 1 -0011111111111110 nightgown-clad 1 -0011111111111110 superspeed 1 -0011111111111110 much-bemoaned 1 -0011111111111110 high-mounted 2 -0011111111111110 gleans 2 -0011111111111110 flouts 2 -0011111111111110 out-of-the 2 -0011111111111110 time-urgent 2 -0011111111111110 besieging 2 -0011111111111110 lyses 2 -0011111111111110 reshapes 3 -0011111111111110 warranting 4 -0011111111111110 under 25260 -0011111111111110 bemoaning 11 -00111111111111110 Egypt-Israel 1 -00111111111111110 227,700 1 -00111111111111110 836,902 1 -00111111111111110 micro-gravity 1 -00111111111111110 1/4-inches 1 -00111111111111110 4,877 1 -00111111111111110 99,450 1 -00111111111111110 Giuseppina 1 -00111111111111110 1,082,100 1 -00111111111111110 already-fearful 1 -00111111111111110 Inflicting 1 -00111111111111110 1,289,700 1 -00111111111111110 2,569 1 -00111111111111110 redrew 1 -00111111111111110 tough-federal 1 -00111111111111110 1,745,500 1 -00111111111111110 653,900 1 -00111111111111110 3,253 1 -00111111111111110 205,534 1 -00111111111111110 Israeli-government 1 -00111111111111110 window-side 1 -00111111111111110 1,355,706 1 -00111111111111110 dawdlers 1 -00111111111111110 1,110,600 1 -00111111111111110 car-bombing 2 -00111111111111110 168,882 2 -00111111111111110 through 24695 -00111111111111110 thru 14 -001111111111111110 adjudge 1 -001111111111111110 Archives. 1 -001111111111111110 sub-100-million 1 -001111111111111110 1-ranking 1 -001111111111111110 crude-rose 1 -001111111111111110 generations. 1 -001111111111111110 flowed. 1 -001111111111111110 mantis 1 -001111111111111110 408-6 1 -001111111111111110 2361 1 -001111111111111110 2,652 1 -001111111111111110 24-hours 1 -001111111111111110 nose-wipe 1 -001111111111111110 betokens 1 -001111111111111110 crash-was 1 -001111111111111110 D-88 1 -001111111111111110 transecting 1 -001111111111111110 709,538 1 -001111111111111110 outwait 1 -001111111111111110 833,143 1 -001111111111111110 403,195 1 -001111111111111110 b11.06 1 -001111111111111110 845,681 1 -001111111111111110 1,254,251 1 -001111111111111110 78,607 1 -001111111111111110 14.92 1 -001111111111111110 empaneling 2 -001111111111111110 entrechats 2 -001111111111111110 50,700 2 -001111111111111110 flight-testing 2 -001111111111111110 demolishes 3 -001111111111111110 3-ranked 4 -001111111111111110 toeing 4 -001111111111111110 reformulating 5 -001111111111111110 2-ranked 7 -001111111111111110 dismantles 7 -001111111111111110 astride 11 -001111111111111110 1-ranked 14 -001111111111111110 obscures 41 -001111111111111110 spanning 45 -001111111111111110 within 8546 -001111111111111110 narrows 252 -001111111111111111 tail-wagging 1 -001111111111111111 weathers 1 -001111111111111111 Illustrate 1 -001111111111111111 kibbitzes 1 -001111111111111111 bookending 1 -001111111111111111 grooving 1 -001111111111111111 Crvena 1 -001111111111111111 EVACUATED 1 -001111111111111111 liberates 1 -001111111111111111 wreathing 1 -001111111111111111 leafletted 1 -001111111111111111 acompanying 1 -001111111111111111 inscribes 1 -001111111111111111 --on 1 -001111111111111111 forthlike 1 -001111111111111111 girdling 1 -001111111111111111 Gallically 1 -001111111111111111 hotwired 1 -001111111111111111 inside/outside 1 -001111111111111111 liquefies 1 -001111111111111111 underperforms 1 -001111111111111111 rustles 1 -001111111111111111 Imperils 1 -001111111111111111 libbed 1 -001111111111111111 Billboarding 1 -001111111111111111 substantially-and 1 -001111111111111111 RESIGNING 1 -001111111111111111 stage-manage 1 -001111111111111111 co-own 2 -001111111111111111 mimicks 2 -001111111111111111 transiting 2 -001111111111111111 reclaims 2 -001111111111111111 mediates 2 -001111111111111111 abutting 3 -001111111111111111 retook 3 -001111111111111111 thoughout 4 -001111111111111111 verifies 8 -001111111111111111 predates 18 -001111111111111111 commemorating 31 -001111111111111111 bucked 73 -001111111111111111 during 15713 -001111111111111111 throughout 2235 -0100000 1/2-5 1 -0100000 corn-harvest 1 -0100000 billion-acre 1 -0100000 1/2-month-old 1 -0100000 billionmark 1 -0100000 heavy-volume 1 -0100000 RANKING 1 -0100000 Ziad 1 -0100000 1/2-to-5 1 -0100000 Thes. 1 -0100000 internatonal 1 -0100000 158.43 1 -0100000 3.4896 1 -0100000 726.0 1 -0100000 million-bale 1 -0100000 Who's-News-page 1 -0100000 Naugahyde-encased 1 -0100000 billion-the 1 -0100000 billion-nearly 1 -0100000 gigabits 1 -0100000 1/2-ton 1 -0100000 Weiyun 1 -0100000 a.m.-5 1 -0100000 parts-per-million 1 -0100000 gang-infested 1 -0100000 back-scrubber 1 -0100000 Investissetes 1 -0100000 Smallframe 1 -0100000 taught. 1 -0100000 3/4s 1 -0100000 1/2point 1 -0100000 potato-producing 1 -0100000 pence-ashare 1 -0100000 1/2-mile-high 1 -0100000 marks-a-share 1 -0100000 co-pay 1 -0100000 billion-mile 1 -0100000 b-unchanged 1 -0100000 KKCY 1 -0100000 departmental-size 1 -0100000 5000/80 1 -0100000 trillion-cubic-foot 1 -0100000 Hartfield-Zodys 1 -0100000 Denrees 1 -0100000 barrier-bashing 1 -0100000 bdr 1 -0100000 2,802,832 1 -0100000 2,839,374 1 -0100000 a-Total 1 -0100000 Subfields 1 -0100000 fluorouracil 1 -0100000 unch 1 -0100000 gigawatts 1 -0100000 cent-a-liter 1 -0100000 BILLION 1 -0100000 p.m.EST 1 -0100000 preferred-equity 1 -0100000 Finlandia 1 -0100000 million-passenger-a-year 2 -0100000 Jeanneret 2 -0100000 millionshare 2 -0100000 pm 2 -0100000 million-or-so 2 -0100000 billlion 2 -0100000 gigabit 2 -0100000 microglobulin 2 -0100000 1/4-mile 2 -0100000 ton-a-day 2 -0100000 a.m.-noon 2 -0100000 billion-krona 2 -0100000 mil 2 -0100000 ashare 3 -0100000 bilion 3 -0100000 RBIs 3 -0100000 marks/dollar 3 -0100000 billion-pound 4 -0100000 1/2-foot 4 -0100000 1/2-page 4 -0100000 Fayva 4 -0100000 kilobyte 4 -0100000 1/2-acre 4 -0100000 billion-bushel 4 -0100000 p.m.-conclusion 5 -0100000 million-kilowatt 5 -0100000 cetera 5 -0100000 billion-lire 5 -0100000 1/2-to-1 5 -0100000 milligram 6 -0100000 1/2-minute 7 -0100000 billon 7 -0100000 1/2-week 7 -0100000 trillion-lire 7 -0100000 1/2-day 8 -0100000 a.m 8 -0100000 megawatt 8 -0100000 million-pound 9 -0100000 million-acre 10 -0100000 billion-kroner 10 -0100000 million-unit 12 -0100000 p.m 12 -0100000 billion-asset 16 -0100000 ppm 17 -0100000 million-ton 21 -0100000 billion-franc 23 -0100000 p.m.-midnight 24 -0100000 pence-a-share 25 -0100000 1/2-year-old 25 -0100000 1/2-month 29 -0100000 billion-mark 33 -0100000 1/4-inch 38 -0100000 billion-plus 44 -0100000 1/2-hour 56 -0100000 1/2-inch 67 -0100000 million-a-year 81 -0100000 1/2-year 118 -0100000 billion-a-year 120 -0100000 million-share 129 -0100000 OFFERED 207 -0100000 a.m. 1497 -0100000 trillion 1708 -0100000 billion 64213 -0100000 p.m. 2427 -0100001 BM-12 1 -0100001 Algerian-backed 1 -0100001 million-per-year 1 -0100001 B-1Bs 1 -0100001 686,287 1 -0100001 summer-job 1 -0100001 carved-marble 1 -0100001 million-subscriber 1 -0100001 high-camp 1 -0100001 billional 1 -0100001 2/32-6/32 1 -0100001 XH 1 -0100001 millonassets 1 -0100001 passenges 1 -0100001 billion-won 1 -0100001 million-gain 1 -0100001 karats 1 -0100001 stone-washed 1 -0100001 coral-fringed 1 -0100001 islets 1 -0100001 coastal-barrier 1 -0100001 student-correspondents 1 -0100001 body-shop 1 -0100001 mailsorters 1 -0100001 million-mark-loss 1 -0100001 railroad-transit 1 -0100001 office-visit 1 -0100001 bejungled 1 -0100001 craftspeople 1 -0100001 trusses 1 -0100001 airport-identification 1 -0100001 kilobits 1 -0100001 Toyopets 1 -0100001 offences 1 -0100001 other-model 1 -0100001 telecomunications 1 -0100001 gallons-per-flush 1 -0100001 snow-removal 1 -0100001 lower-altitude 1 -0100001 -57.0 1 -0100001 -73.8 1 -0100001 million-start 1 -0100001 million-expense 1 -0100001 placard-carrying 1 -0100001 seven-gallon 1 -0100001 Soviet-foreign 1 -0100001 T37B 1 -0100001 lbs 1 -0100001 non-staff 1 -0100001 Courtyards 1 -0100001 boozed-up 1 -0100001 million-won 1 -0100001 Stanzas 1 -0100001 mllion 1 -0100001 municipal-court 1 -0100001 decorative-arts 1 -0100001 72,275 1 -0100001 101,111 1 -0100001 23,423 1 -0100001 2,446,078 1 -0100001 1,401,831 1 -0100001 +15.0 1 -0100001 million-the 1 -0100001 realist-expressionist 1 -0100001 square-feet 1 -0100001 skilled-job 1 -0100001 water-softening 1 -0100001 7,333 1 -0100001 15,824 1 -0100001 13,882 1 -0100001 8,325 1 -0100001 11,343,761 1 -0100001 therms 1 -0100001 39,487 1 -0100001 10,837 1 -0100001 5,722 1 -0100001 11,942 1 -0100001 19,655 1 -0100001 8,775,801 1 -0100001 522,669 1 -0100001 478,795 1 -0100001 146,042 1 -0100001 153,070 1 -0100001 +292.4 1 -0100001 55,473 1 -0100001 129,834 1 -0100001 86,481 1 -0100001 398,270 1 -0100001 3,112,744 1 -0100001 1,225,647 1 -0100001 2,208,698 1 -0100001 64,669 1 -0100001 61,840 1 -0100001 204,101 1 -0100001 83,098 1 -0100001 4,083,577 1 -0100001 Swiss-EC 1 -0100001 millilon 1 -0100001 IM 1 -0100001 Evan-Picone 1 -0100001 1/8-bid 1 -0100001 big-index 1 -0100001 muscle-packed 1 -0100001 German-Jewish 1 -0100001 definitive-merger 1 -0100001 DCIS 1 -0100001 Starships 1 -0100001 Natl.Mortgage 1 -0100001 24-pound 1 -0100001 million-car 2 -0100001 million-vehicle 2 -0100001 million-common 2 -0100001 iL 2 -0100001 micrometers 2 -0100001 stated-value 2 -0100001 liftoffs 2 -0100001 million-level 2 -0100001 04/32 2 -0100001 mile-per-gallon 2 -0100001 becerel 2 -0100001 million-barrel-a-day 2 -0100001 kilotons 2 -0100001 GLE 2 -0100001 milligauss 2 -0100001 Blows 3 -0100001 billion-peseta 3 -0100001 lbs. 3 -0100001 Gripen 3 -0100001 S2 3 -0100001 4/5 3 -0100001 ZX 3 -0100001 Kelvins 4 -0100001 millirems 4 -0100001 million-punt 5 -0100001 million-kronor 5 -0100001 ppb 5 -0100001 million-kroner 6 -0100001 million-yen 7 -0100001 kilobit 7 -0100001 mg. 8 -0100001 million-asset 9 -0100001 billion-yen 9 -0100001 million. 10 -0100001 mg 10 -0100001 million-guilder 12 -0100001 millon 14 -0100001 billion-kronor 14 -0100001 million-franc 14 -0100001 hertz 16 -0100001 milllion 17 -0100001 decibels 17 -0100001 milion 21 -0100001 million-mark 24 -0100001 cent-a-share 27 -0100001 million-square-foot 28 -0100001 liter 34 -0100001 mpg 46 -0100001 million 178703 -0100001 million-plus 46 -0100010 billion-a 1 -0100010 638,952 1 -0100010 721,293 1 -0100010 629,255 1 -0100010 323,937 1 -0100010 624,619 1 -0100010 two-slide 1 -0100010 premarital-testing 1 -0100010 Spanish-dubbed 1 -0100010 Dalmatians 1 -0100010 1/2-cents 1 -0100010 3/8s 1 -0100010 million-about 1 -0100010 billion-a-month 1 -0100010 39/32 1 -0100010 non-pitchers 1 -0100010 PDRs 1 -0100010 1/2-cent-a-pound 1 -0100010 frivolous-return 1 -0100010 plane-loads 1 -0100010 Januarys 1 -0100010 cent-a-pound 1 -0100010 FBI-reported 1 -0100010 commuter-drivers 1 -0100010 two-stars 1 -0100010 737-100 1 -0100010 cents-a-pad 1 -0100010 1/2-fold 1 -0100010 1/2-a-share 1 -0100010 Clothesworks 1 -0100010 3,357,864 1 -0100010 cents-a-gallon 1 -0100010 million-share-a-day 1 -0100010 cents-a-bushel 1 -0100010 6,954 1 -0100010 7,095.7 1 -0100010 miligrams 1 -0100010 Friedrichshafen 1 -0100010 cent-a-pack 1 -0100010 +144.55 1 -0100010 million-tie 1 -0100010 bath-supplies 1 -0100010 +120.12 1 -0100010 foundaries 1 -0100010 fire-patrol 1 -0100010 calls-a 1 -0100010 -27.3 1 -0100010 -10.0 1 -0100010 +75.0 1 -0100010 +18.2 1 -0100010 angstroms 2 -0100010 01/32 2 -0100010 25/ 2 -0100010 STAFFERS 2 -0100010 07/32 2 -0100010 lb 2 -0100010 1/2-cent 2 -0100010 cents-an-hour 2 -0100010 399,353 2 -0100010 7/8s 2 -0100010 19/ 2 -0100010 6/ 2 -0100010 +14.8 2 -0100010 kilorads 2 -0100010 cent-a-bushel 3 -0100010 1/ 3 -0100010 3/ 4 -0100010 basis-point 4 -0100010 cosponsors 5 -0100010 11/ 5 -0100010 15/ 6 -0100010 3/4-point 6 -0100010 5/ 7 -0100010 9/ 9 -0100010 13/ 9 -0100010 cents-a-share 10 -0100010 7/ 10 -0100010 1/4-year 12 -0100010 micrograms 20 -0100010 kilobytes 24 -0100010 3/4-year 34 -0100010 28/32 60 -0100010 24/32 61 -0100010 23/32 61 -0100010 31/32 62 -0100010 19/32 80 -0100010 29/32 90 -0100010 27/32 93 -0100010 30/32 96 -0100010 25/32 100 -0100010 mph 115 -0100010 % 185193 -0100010 26/32 126 -01000110 3/8. 1 -01000110 reimbursment 1 -01000110 165,888 1 -01000110 168,888 1 -01000110 950,346 1 -01000110 159,219 1 -01000110 268,535 1 -01000110 -64,814 1 -01000110 284,497 1 -01000110 462,341 1 -01000110 908,196 1 -01000110 1-800-228-0391 1 -01000110 Ocona 1 -01000110 USC:1307 1 -01000110 HRs 1 -01000110 3/8-1/2 1 -01000110 18/32-22/32 1 -01000110 10/32-14/32 1 -01000110 XA4 1 -01000110 2/1 1 -01000110 1/2-cent-a-share 1 -01000110 mini-essays 1 -01000110 wheelboxes 1 -01000110 non-coms 1 -01000110 Heures 1 -01000110 million-loss 1 -01000110 million-profit 1 -01000110 Eurosecurities 1 -01000110 roties 1 -01000110 chip-makers 1 -01000110 roundabouts 1 -01000110 SPARKED 1 -01000110 Januaries 1 -01000110 million-half 1 -01000110 pge 1 -01000110 instititions 1 -01000110 U.S.Hcompanies 1 -01000110 Yow 1 -01000110 letter-legislators 1 -01000110 1-800-233-4050 1 -01000110 1/32-5/32 1 -01000110 mile-an-hour 1 -01000110 ents 1 -01000110 17/32-21/32 1 -01000110 Ogonyoks 1 -01000110 apeice 1 -01000110 island-states 1 -01000110 square-footer 1 -01000110 turbo-props 1 -01000110 million-a-plane 1 -01000110 1,852 1 -01000110 705,663 1 -01000110 in-betweeners 1 -01000110 GREETED 1 -01000110 knotter 1 -01000110 cnets 1 -01000110 WELCOMED 2 -01000110 1/4-3/8 2 -01000110 8,192 2 -01000110 716,686 2 -01000110 hours. 2 -01000110 go-arounds 2 -01000110 non-dailies 3 -01000110 cents. 3 -01000110 mm 4 -01000110 mile-per-hour 6 -01000110 kopeks 9 -01000110 intis 40 -01000110 cents 29969 -01000110 cent 868 -01000111 163.10 1 -01000111 0.0041 1 -01000111 plant-opinionated 1 -01000111 0.0232 1 -01000111 79.24 1 -01000111 0.0051 1 -01000111 170.98 1 -01000111 154.56 1 -01000111 0.0170 1 -01000111 0.0169 1 -01000111 0.0122 1 -01000111 0.0127 1 -01000111 schoolteaching 1 -01000111 232.90 1 -01000111 0.0200 1 -01000111 0.0405 1 -01000111 118.71 1 -01000111 0.0210 1 -01000111 508.32 1 -01000111 0.0410 1 -01000111 35.30 1 -01000111 362.6 1 -01000111 468.41 1 -01000111 809.14 1 -01000111 229.52 1 -01000111 490,868 1 -01000111 955,191 1 -01000111 220,400 1 -01000111 296,973 1 -01000111 4228.06 1 -01000111 335.21 1 -01000111 687.79 1 -01000111 0.0064 1 -01000111 0.0272 1 -01000111 0.0112 1 -01000111 0.0263 1 -01000111 +126.2 1 -01000111 30.0 1 -01000111 0.0043 1 -01000111 160.81 1 -01000111 0.0172 1 -01000111 229.76 1 -01000111 0.0132 1 -01000111 110.94 1 -01000111 0.0235 1 -01000111 57.48 1 -01000111 283.48 1 -01000111 54.77 1 -01000111 0.0081 1 -01000111 0.0162 1 -01000111 29.92 1 -01000111 333.78 1 -01000111 F/A-18Cs 1 -01000111 0.0066 1 -01000111 0.0198 1 -01000111 0.0195 1 -01000111 trekkers 1 -01000111 waste-hauler 1 -01000111 0.0136 1 -01000111 insolvent. 1 -01000111 236.10 1 -01000111 431.69 1 -01000111 352.41 1 -01000111 27.20 1 -01000111 0.0076 1 -01000111 0.0230 1 -01000111 109.64 1 -01000111 Karratha 1 -01000111 201.84 1 -01000111 37.42 1 -01000111 44.54 1 -01000111 0.0063 1 -01000111 78.82 1 -01000111 84.16 1 -01000111 152.84 1 -01000111 0.0262 1 -01000111 166.71 1 -01000111 0.0139 1 -01000111 8559 1 -01000111 33.08 1 -01000111 0.0049 1 -01000111 245.80 1 -01000111 218.21 1 -01000111 0.0171 1 -01000111 289.14 1 -01000111 0.0079 1 -01000111 .0070 1 -01000111 135.42 1 -01000111 p.m.-climax 1 -01000111 Eletrica 1 -01000111 0.0053 1 -01000111 0.0216 1 -01000111 554,028 1 -01000111 0.0163 1 -01000111 0.0253 1 -01000111 0.0106 1 -01000111 205.51 1 -01000111 0.0176 1 -01000111 0.0056 1 -01000111 analogously 1 -01000111 14.01 1 -01000111 267.57 1 -01000111 secs 1 -01000111 69.42 1 -01000111 0.0317 1 -01000111 115.76 1 -01000111 103.10 1 -01000111 147.70 1 -01000111 Malconsorts 1 -01000111 6/16 1 -01000111 134.64 1 -01000111 30.92 1 -01000111 billion-sales 1 -01000111 328.14 1 -01000111 0.0130 1 -01000111 0.0218 1 -01000111 0.0091 1 -01000111 0.0068 1 -01000111 0.0116 1 -01000111 0.0166 1 -01000111 151.36 1 -01000111 0.0037 1 -01000111 288.25 1 -01000111 51.10 1 -01000111 327.82 1 -01000111 0.0129 1 -01000111 22.00 1 -01000111 significantly. 1 -01000111 0.0320 1 -01000111 91.19 1 -01000111 0.0119 1 -01000111 130.27 1 -01000111 89.20 1 -01000111 aphids. 1 -01000111 0.0173 1 -01000111 141.99 1 -01000111 27.98 1 -01000111 0.007 1 -01000111 107.33 1 -01000111 24.41 1 -01000111 0.0220 1 -01000111 24.53 1 -01000111 116.40 1 -01000111 94.39 1 -01000111 97.53 1 -01000111 bagagge 1 -01000111 0.0093 1 -01000111 80.98 1 -01000111 112.42 1 -01000111 142.69 1 -01000111 119.35 1 -01000111 shock-waves 1 -01000111 175.31 1 -01000111 70.76 1 -01000111 60.97 1 -01000111 0.0273 1 -01000111 58.30 1 -01000111 0.0188 1 -01000111 0.0047 1 -01000111 75.42 1 -01000111 3/4three 1 -01000111 NeimanMarcus 1 -01000111 0.0124 1 -01000111 post-college 1 -01000111 counterbidders 1 -01000111 109.61 1 -01000111 0.0184 1 -01000111 160.18 1 -01000111 1-16 1 -01000111 29.53 1 -01000111 251.34 1 -01000111 287.21 1 -01000111 221.07 1 -01000111 165.45 1 -01000111 28.00 1 -01000111 somewhere. 1 -01000111 1/2/ 1 -01000111 151.66 1 -01000111 27.32 1 -01000111 0.0517 1 -01000111 0.0153 1 -01000111 city-rich 1 -01000111 400.90 1 -01000111 291.56 1 -01000111 Janulako 1 -01000111 0.0102 1 -01000111 15.41 1 -01000111 0.438 1 -01000111 260.6 1 -01000111 1/3/4 1 -01000111 52.48 1 -01000111 193.90 1 -01000111 59.81 1 -01000111 0.0131 1 -01000111 0.0158 1 -01000111 0.0036 1 -01000111 0.0094 1 -01000111 42.16 1 -01000111 0.0318 1 -01000111 Jours 1 -01000111 173.47 1 -01000111 27.69 1 -01000111 207.09 1 -01000111 0.0180 1 -01000111 255,214 1 -01000111 datadope 1 -01000111 1/4s 1 -01000111 Frigatronics 1 -01000111 189.18 1 -01000111 3,245,983 1 -01000111 33.48 1 -01000111 434.81 1 -01000111 0.0240 1 -01000111 0.0208 1 -01000111 110.73 1 -01000111 0.0101 1 -01000111 35.39 1 -01000111 Eriskay 1 -01000111 0.0886 1 -01000111 269.69 1 -01000111 0.147 1 -01000111 cents-21 1 -01000111 0.013 1 -01000111 days.10.06 1 -01000111 1016.41 1 -01000111 .53 1 -01000111 0.0297 1 -01000111 0.0201 1 -01000111 30.19 1 -01000111 251.67 1 -01000111 0.0190 1 -01000111 44.43 1 -01000111 79.74 1 -01000111 187.69 1 -01000111 122.16 1 -01000111 billion-a-year-market 1 -01000111 27.94 1 -01000111 391.13 1 -01000111 49.0 1 -01000111 0.0415 1 -01000111 78.97 1 -01000111 rockfalls 1 -01000111 404.95 1 -01000111 71.36 1 -01000111 .5 1 -01000111 80.06 1 -01000111 0.0087 1 -01000111 138.84 1 -01000111 0.0344 1 -01000111 209.34 1 -01000111 0.0207 1 -01000111 19.06 1 -01000111 0.0157 1 -01000111 140.19 1 -01000111 156.62 1 -01000111 0.0303 1 -01000111 11,706 1 -01000111 55.40 1 -01000111 411.49 1 -01000111 0.0237 1 -01000111 652.6 1 -01000111 355.5 1 -01000111 50.18 1 -01000111 61.20 1 -01000111 mimickers 1 -01000111 0.197 1 -01000111 0.0223 1 -01000111 0.0279 1 -01000111 0.0271 1 -01000111 SKr19 1 -01000111 0.0026 1 -01000111 0.0085 1 -01000111 0.0595 1 -01000111 maharajah-bashing 1 -01000111 0.0267 1 -01000111 213.46 1 -01000111 0.0001 1 -01000111 0.0113 1 -01000111 Portsall 1 -01000111 126.88 1 -01000111 25.47 1 -01000111 162.85 2 -01000111 80.41 2 -01000111 33.03 2 -01000111 193.09 2 -01000111 445.57 2 -01000111 256.60 2 -01000111 93.29 2 -01000111 193.07 2 -01000111 215.82 2 -01000111 724.9 2 -01000111 17.46 2 -01000111 23.28 2 -01000111 246.92 2 -01000111 86.51 2 -01000111 09/32 2 -01000111 1/2s 2 -01000111 39.96 2 -01000111 102.74 2 -01000111 0.0016 2 -01000111 +0.3 2 -01000111 146.77 2 -01000111 132.01 2 -01000111 167.00 2 -01000111 0.0061 2 -01000111 0.0165 2 -01000111 0.0144 2 -01000111 484.11 2 -01000111 300.06 2 -01000111 119.69 2 -01000111 0.0008 2 -01000111 32.69 2 -01000111 319.41 2 -01000111 0.0105 2 -01000111 306.55 2 -01000111 171.82 2 -01000111 96.85 2 -01000111 0.0160 2 -01000111 278.66 2 -01000111 84.29 2 -01000111 141.34 2 -01000111 138.19 2 -01000111 274.44 2 -01000111 41.12 2 -01000111 140.39 2 -01000111 164.78 2 -01000111 36.62 2 -01000111 152.56 2 -01000111 57.86 2 -01000111 0.0214 2 -01000111 77.69 2 -01000111 0.0140 2 -01000111 84.94 2 -01000111 144.14 2 -01000111 0.0067 2 -01000111 160.66 2 -01000111 45.60 2 -01000111 54.12 2 -01000111 195.14 2 -01000111 334.48 2 -01000111 82.58 2 -01000111 0.0242 2 -01000111 0.0257 2 -01000111 0.0115 2 -01000111 167.18 2 -01000111 381.68 2 -01000111 509.74 2 -01000111 0.275 2 -01000111 65.69 2 -01000111 0.0039 2 -01000111 230.09 2 -01000111 36.76 2 -01000111 271.15 2 -01000111 257.43 2 -01000111 662.60 2 -01000111 218.64 2 -01000111 158.01 2 -01000111 0.0096 2 -01000111 731.91 2 -01000111 344,330 2 -01000111 672,093 2 -01000111 151.69 2 -01000111 297.05 2 -01000111 288.31 2 -01000111 28.22 2 -01000111 126.76 2 -01000111 0.035 2 -01000111 0.0098 2 -01000111 139.66 2 -01000111 21.77 2 -01000111 139.07 2 -01000111 0.0082 2 -01000111 194.18 2 -01000111 324.55 2 -01000111 416.93 2 -01000111 25.43 2 -01000111 28.41 2 -01000111 0.0104 2 -01000111 99.36 2 -01000111 43.13 2 -01000111 0.0108 2 -01000111 216.78 2 -01000111 172.66 2 -01000111 0.0107 2 -01000111 0.0205 2 -01000111 248.24 2 -01000111 0.0083 2 -01000111 177.90 2 -01000111 113.95 2 -01000111 0.0193 2 -01000111 384.97 2 -01000111 301.99 2 -01000111 28.02 2 -01000111 Nimrods 2 -01000111 0.0032 2 -01000111 21.07 2 -01000111 23.30 2 -01000111 334.41 2 -01000111 395.14 2 -01000111 245.03 2 -01000111 361.82 2 -01000111 17.09 2 -01000111 190.33 2 -01000111 365.45 2 -01000111 146.11 2 -01000111 216.39 2 -01000111 157.24 2 -01000111 86.89 2 -01000111 0.0044 2 -01000111 82.60 2 -01000111 317.0 2 -01000111 p.m.midnight 2 -01000111 0.0069 2 -01000111 80.24 2 -01000111 242.15 2 -01000111 22.55 2 -01000111 0.0019 2 -01000111 0.0168 2 -01000111 550.45 2 -01000111 22.64 2 -01000111 0.0027 2 -01000111 251.20 2 -01000111 222.12 2 -01000111 0.0118 2 -01000111 272.13 2 -01000111 0.0058 2 -01000111 0.0004 2 -01000111 186.48 2 -01000111 38.23 2 -01000111 155.08 2 -01000111 116.64 2 -01000111 30.93 3 -01000111 7/8-point 3 -01000111 0.0182 3 -01000111 30.26 3 -01000111 36.79 3 -01000111 0.0084 3 -01000111 0.0012 3 -01000111 24.89 3 -01000111 0.0095 3 -01000111 0.0123 3 -01000111 430.05 3 -01000111 0.0017 3 -01000111 313.64 3 -01000111 0.0103 3 -01000111 0.0077 3 -01000111 0.0057 3 -01000111 40.26 3 -01000111 0.0142 3 -01000111 40.45 3 -01000111 27.19 3 -01000111 649.70 3 -01000111 0.0059 3 -01000111 225.53 3 -01000111 22.71 3 -01000111 0.0002 3 -01000111 0.0185 3 -01000111 70.64 3 -01000111 47.58 3 -01000111 0.0046 3 -01000111 36.72 3 -01000111 44.92 3 -01000111 0.0031 3 -01000111 26.48 3 -01000111 0.0175 3 -01000111 0.0167 3 -01000111 0.0097 3 -01000111 22.60 3 -01000111 36.47 3 -01000111 0.0088 3 -01000111 70.66 3 -01000111 0.0072 3 -01000111 56.20 3 -01000111 0.0143 3 -01000111 0.0006 3 -01000111 30.12 3 -01000111 384.08 3 -01000111 0.0014 3 -01000111 18.32 3 -01000111 24.01 3 -01000111 19.39 3 -01000111 294.13 3 -01000111 24.00 3 -01000111 22.07 3 -01000111 180.36 3 -01000111 27.03 3 -01000111 0.0155 3 -01000111 17.99 3 -01000111 266.16 3 -01000111 0.0065 4 -01000111 0.0092 4 -01000111 0.0138 4 -01000111 0.075 4 -01000111 42.92 4 -01000111 0.0028 4 -01000111 47.66 4 -01000111 0.0040 4 -01000111 52.56 4 -01000111 2037.32 4 -01000111 28.63 4 -01000111 0.0034 4 -01000111 32.89 4 -01000111 28.64 4 -01000111 27.12 4 -01000111 20.56 4 -01000111 50.56 4 -01000111 flavus 4 -01000111 0.0109 4 -01000111 40.84 4 -01000111 98.05 4 -01000111 46.62 4 -01000111 7/16/ 4 -01000111 0.0110 4 -01000111 0.0024 4 -01000111 658.28 4 -01000111 24.66 4 -01000111 24.90 4 -01000111 34.15 4 -01000111 0.0078 4 -01000111 0.0135 4 -01000111 45.43 4 -01000111 0.0029 4 -01000111 0.0013 4 -01000111 0.0023 4 -01000111 48.41 4 -01000111 32.99 4 -01000111 0.0100 4 -01000111 12.00 4 -01000111 0.0090 4 -01000111 35.71 4 -01000111 37.80 5 -01000111 0.0073 5 -01000111 34.44 5 -01000111 44.99 5 -01000111 51.13 5 -01000111 0.0080 5 -01000111 94.06 5 -01000111 25.78 5 -01000111 35.72 5 -01000111 0.0137 5 -01000111 20.11 5 -01000111 57.39 5 -01000111 0.0035 5 -01000111 61.01 5 -01000111 0.0042 5 -01000111 0.0003 5 -01000111 37.38 5 -01000111 0.0009 5 -01000111 77.42 5 -01000111 44.64 5 -01000111 25.42 5 -01000111 43.84 6 -01000111 r-Revised. 6 -01000111 0.025 6 -01000111 0.0018 6 -01000111 56.70 6 -01000111 51.71 6 -01000111 0.0010 6 -01000111 38.59 6 -01000111 91.51 6 -01000111 31.33 6 -01000111 48.36 6 -01000111 0.0033 6 -01000111 50.07 6 -01000111 0.0060 6 -01000111 46.46 6 -01000111 186.84 6 -01000111 30.23 7 -01000111 101.46 7 -01000111 21.72 7 -01000111 56.53 7 -01000111 0.0005 7 -01000111 0.0038 7 -01000111 0.0075 8 -01000111 52.28 8 -01000111 12.77 8 -01000111 22.05 8 -01000111 0.125 8 -01000111 0.0022 8 -01000111 0.0015 8 -01000111 29.97 9 -01000111 0.0055 9 -01000111 14.0 9 -01000111 74.68 9 -01000111 95.46 9 -01000111 0.0020 9 -01000111 156.83 9 -01000111 43.77 10 -01000111 44.01 10 -01000111 0.0045 10 -01000111 0.0030 10 -01000111 140.58 11 -01000111 0.0025 11 -01000111 43.03 12 -01000111 0.0050 12 -01000111 2/3 14 -01000111 1/4-point 15 -01000111 0.97 16 -01000111 0.86 17 -01000111 0.93 18 -01000111 0.96 18 -01000111 0.98 19 -01000111 0.99 19 -01000111 1/3 21 -01000111 0.61 21 -01000111 0.62 23 -01000111 0.74 23 -01000111 0.88 24 -01000111 0.84 25 -01000111 0.59 27 -01000111 0.41 27 -01000111 0.73 28 -01000111 0.79 28 -01000111 0.82 28 -01000111 0.67 29 -01000111 0.76 31 -01000111 16/32 31 -01000111 0.89 32 -01000111 0.21 32 -01000111 0.37 32 -01000111 0.56 33 -01000111 0.87 33 -01000111 0.78 33 -01000111 0.47 35 -01000111 0.71 35 -01000111 0.49 36 -01000111 0.38 36 -01000111 0.68 36 -01000111 0.44 36 -01000111 0.34 37 -01000111 0.32 37 -01000111 0.51 37 -01000111 0.36 38 -01000111 0.48 38 -01000111 0.29 38 -01000111 0.69 39 -01000111 0.72 39 -01000111 0.57 39 -01000111 0.77 40 -01000111 0.53 41 -01000111 0.26 42 -01000111 0.52 42 -01000111 0.28 42 -01000111 0.46 43 -01000111 0.42 43 -01000111 0.27 45 -01000111 0.11 45 -01000111 0.07 46 -01000111 0.80 46 -01000111 0.70 47 -01000111 0.19 49 -01000111 0.08 50 -01000111 0.33 51 -01000111 0.31 52 -01000111 0.23 52 -01000111 0.03 52 -01000111 0.14 52 -01000111 0.60 52 -01000111 0.16 55 -01000111 12/32 55 -01000111 0.40 55 -01000111 17/32 57 -01000111 0.17 59 -01000111 0.04 60 -01000111 20/32 64 -01000111 0.12 67 -01000111 4/32 74 -01000111 0.35 78 -01000111 0.50 79 -01000111 13/32 80 -01000111 0.01 81 -01000111 8/32 83 -01000111 0.02 85 -01000111 21/32 86 -01000111 0.06 88 -01000111 11/32 89 -01000111 0.18 90 -01000111 0.05 101 -01000111 9/32 102 -01000111 0.30 102 -01000111 18/32 103 -01000111 22/32 110 -01000111 0.20 112 -01000111 15/32 112 -01000111 7/32 113 -01000111 0.15 117 -01000111 14/32 118 -01000111 0.10 130 -01000111 1/32 142 -01000111 3/32 142 -01000111 5/32 157 -01000111 10/32 159 -01000111 6/32 161 -01000111 3/16 167 -01000111 7/16 176 -01000111 2/32 190 -01000111 5/16 206 -01000111 1/16 219 -01000111 9/16 254 -01000111 11/16 261 -01000111 15/16 289 -01000111 13/16 308 -01000111 5/8 3847 -01000111 3/8 4011 -01000111 7/8 4085 -01000111 1/8 4329 -01000111 1/2 8757 -01000111 3/4 6034 -01000111 1/4 6384 -010010 already-painful 1 -010010 Labor. 1 -010010 DN 1 -010010 three-under 1 -010010 recordshattering 1 -010010 cartoons. 1 -010010 then-record-low 1 -010010 laggards. 1 -010010 bench-pressing 1 -010010 five-under 1 -010010 appproximately 1 -010010 even-par 1 -010010 Hals. 1 -010010 Biography. 1 -010010 Intellitronic 1 -010010 9-to- 1 -010010 Praze 1 -010010 heart-breaking 1 -010010 300/DM 1 -010010 3,000/DM 1 -010010 nos. 1 -010010 printmakers. 1 -010010 Chkalova 1 -010010 Lipetskaya 1 -010010 Novatorov 1 -010010 Gilyarovskogo 1 -010010 Chernyshevskogo 1 -010010 Svobody 1 -010010 Nagatinskaya 1 -010010 Druzhby 1 -010010 stereotype-reinforcing 1 -010010 saltcellars. 1 -010010 CYBER 1 -010010 superscript 1 -010010 non-record 1 -010010 Bartender 1 -010010 Dayvilles 1 -010010 OS/ 1 -010010 share-up 1 -010010 fast-by 1 -010010 wallet-emptying 1 -010010 Mercury-Redstone 1 -010010 1920. 1 -010010 Eurodisneyland 1 -010010 copaid 1 -010010 VoiceScribe 1 -010010 DIAL-IT 1 -010010 Benin. 1 -010010 hedgehop 1 -010010 Rt. 1 -010010 650. 1 -010010 CardiOmega 1 -010010 hedge-hop 1 -010010 dividend-adjusted 1 -010010 Design. 1 -010010 poloniun 1 -010010 -25.1 1 -010010 34,809 1 -010010 692,027 1 -010010 Darvocet-N 1 -010010 decade-high 1 -010010 non-Fortune 1 -010010 priceadjusted 1 -010010 3,859 1 -010010 aide. 1 -010010 calendar-adjusted 1 -010010 AS/ 1 -010010 Lichtenstein. 1 -010010 8/ 1 -010010 Faberge. 1 -010010 ceramics. 1 -010010 much-slower 1 -010010 270,000to 1 -010010 12,784.4 1 -010010 148.74. 1 -010010 limit-high 1 -010010 multipacks 1 -010010 36,395 1 -010010 still-light 1 -010010 799,389 1 -010010 Improv 1 -010010 153.55. 1 -010010 nearrecord 1 -010010 resubstantiated 1 -010010 3,438 1 -010010 Velazquez. 1 -010010 non-Firestone-owned 1 -010010 pre-Verdi-era 1 -010010 copies. 1 -010010 six-under 1 -010010 153.76. 1 -010010 four-under-par 1 -010010 sec. 2 -010010 Pop. 2 -010010 induct 2 -010010 AN/ALQ 2 -010010 2/ 2 -010010 gp 2 -010010 Nummi- 2 -010010 interleukin 2 -010010 Sterling-b 3 -010010 Peugeot-b 3 -010010 Noo 3 -010010 course-record 3 -010010 Shosse 4 -010010 Nummi-f 5 -010010 Multimax 5 -010010 much-faster 5 -010010 EXL 6 -010010 Nasdaq-leading 13 -010010 pop. 15 -010010 Accounts-a 72 -010010 Proposition 198 -010010 $ 296500 -010010 # 6410 -010011000 7.152 1 -010011000 5.579 1 -010011000 2.767 1 -010011000 100.78 1 -010011000 208.51 1 -010011000 932.66 1 -010011000 9.188 1 -010011000 28.15 1 -010011000 20.072 1 -010011000 122.508 1 -010011000 131.867 1 -010011000 9.678 1 -010011000 9.768 1 -010011000 9.525 1 -010011000 7.198 1 -010011000 7.171 1 -010011000 7.173 1 -010011000 66.23 1 -010011000 27.22 1 -010011000 422.84 1 -010011000 443.12 1 -010011000 480.84 1 -010011000 464.38 1 -010011000 4.778 1 -010011000 29.68 1 -010011000 85.29 1 -010011000 26.84 1 -010011000 74.29 1 -010011000 138.01 1 -010011000 202.88 1 -010011000 440.42 1 -010011000 643.87 1 -010011000 1,728 1 -010011000 685.6 1 -010011000 8.712 1 -010011000 381.07 1 -010011000 343.59 1 -010011000 2.161 1 -010011000 47.37 1 -010011000 8.808 1 -010011000 9.598 1 -010011000 6.2016 1 -010011000 7.224 1 -010011000 15.034 1 -010011000 21.09 1 -010011000 747.5 1 -010011000 8.076 1 -010011000 8.412 1 -010011000 6.939 1 -010011000 6.9363 1 -010011000 8.272 1 -010011000 1117 1 -010011000 140.03 1 -010011000 1.6002 1 -010011000 314.7 1 -010011000 2.9942 1 -010011000 9.082 1 -010011000 9.313 1 -010011000 8.792 1 -010011000 8.979 1 -010011000 2.024 1 -010011000 3.033 1 -010011000 4.341 1 -010011000 34.29 1 -010011000 41.33 1 -010011000 445.00 1 -010011000 63.00 1 -010011000 795.00 1 -010011000 610.00 1 -010011000 1.7491 1 -010011000 7.195 1 -010011000 743.47 1 -010011000 minus-5 1 -010011000 8.417 1 -010011000 10.214 1 -010011000 1,245 1 -010011000 9.704 1 -010011000 112.15 1 -010011000 0.015 1 -010011000 7.109 1 -010011000 38.60 1 -010011000 35.61 1 -010011000 35.066 1 -010011000 pi 1 -010011000 7.399 1 -010011000 6.376.41 1 -010011000 13.345 1 -010011000 14.860 1 -010011000 1950-1972 1 -010011000 9.872 1 -010011000 32.51 1 -010011000 58.27 1 -010011000 1.3793 1 -010011000 52.49 1 -010011000 1.7107 1 -010011000 417.643 1 -010011000 78.20 1 -010011000 75.20 1 -010011000 47.57 1 -010011000 70.44 1 -010011000 8.706 1 -010011000 7.6375 1 -010011000 3.517 1 -010011000 58.46 1 -010011000 6.822 1 -010011000 6.697 1 -010011000 723.5 1 -010011000 8.537 1 -010011000 966.4 1 -010011000 541.9 1 -010011000 pertussis 1 -010011000 28-5 1 -010011000 26.08 1 -010011000 988.5 1 -010011000 108.97 1 -010011000 84.52 1 -010011000 +748 1 -010011000 1.8842 1 -010011000 10.103 1 -010011000 13.635 1 -010011000 6.785 1 -010011000 8.102 1 -010011000 200.21 1 -010011000 66.59 1 -010011000 95.81 1 -010011000 311.37 1 -010011000 45.55 1 -010011000 10,490 1 -010011000 405.5 1 -010011000 7.495 1 -010011000 7.519 1 -010011000 81.65 1 -010011000 107.19 1 -010011000 9.619 1 -010011000 3.480 1 -010011000 1.710 1 -010011000 41.37 1 -010011000 365.56 1 -010011000 7.689 1 -010011000 335.6 1 -010011000 125.40 1 -010011000 29.998 1 -010011000 9.679 1 -010011000 7.732 1 -010011000 801.13 1 -010011000 666.10 1 -010011000 24,981 1 -010011000 6.669 1 -010011000 4,166.99 1 -010011000 6.690 1 -010011000 6.595 1 -010011000 279.83 1 -010011000 66.53 1 -010011000 8.237 1 -010011000 16.342 1 -010011000 1113 1 -010011000 680.4 1 -010011000 105.475 1 -010011000 104.188 1 -010011000 9.651 1 -010011000 6.607 1 -010011000 6.549 1 -010011000 a- 1 -010011000 144.49 1 -010011000 2.9550 1 -010011000 401.5 1 -010011000 724.5 1 -010011000 6.7499 1 -010011000 6.7395 1 -010011000 2.340 1 -010011000 78.975 1 -010011000 69.845 1 -010011000 9.130 1 -010011000 14.155 1 -010011000 11.830 1 -010011000 1,448 1 -010011000 917.20 1 -010011000 6.679 1 -010011000 1.131 1 -010011000 1.047 1 -010011000 957.82 1 -010011000 172.16 1 -010011000 165.93 1 -010011000 80.13 1 -010011000 85.79 1 -010011000 32.13 1 -010011000 24.16 1 -010011000 2.022 1 -010011000 1.960 1 -010011000 8.191 1 -010011000 42.10 1 -010011000 8.953 1 -010011000 8.9467 1 -010011000 60.57 1 -010011000 54.88 1 -010011000 55.72 1 -010011000 4.925 1 -010011000 8.209 1 -010011000 38.35 1 -010011000 44.84 1 -010011000 1.310 1 -010011000 1.288 1 -010011000 1.294 1 -010011000 19-4 1 -010011000 19-10 1 -010011000 15-7 1 -010011000 1.551 1 -010011000 7.066 1 -010011000 6.381 1 -010011000 4.795 1 -010011000 100.27 1 -010011000 8.184 1 -010011000 8.179 1 -010011000 8.219 1 -010011000 4.765 1 -010011000 1.2193 1 -010011000 Gingival 1 -010011000 266.21 1 -010011000 8.737 1 -010011000 6.479 1 -010011000 4.815 1 -010011000 9.563 1 -010011000 DISTAFF 1 -010011000 7.15076 1 -010011000 7.13253 1 -010011000 3.1342 1 -010011000 9.887 1 -010011000 8.598 1 -010011000 6.691 1 -010011000 1.737 1 -010011000 60.43 1 -010011000 63.79 1 -010011000 50.93 1 -010011000 25.01 1 -010011000 5.255 1 -010011000 5.295 1 -010011000 269,882,000 1 -010011000 5.425 1 -010011000 5.495 1 -010011000 5.765 1 -010011000 614.18 1 -010011000 38.55 1 -010011000 666.56 1 -010011000 still-meager 1 -010011000 6.278 1 -010011000 6.592 1 -010011000 10.085 1 -010011000 5.218 1 -010011000 7.216 1 -010011000 7.698 1 -010011000 8.228 1 -010011000 415.24 1 -010011000 6.668 1 -010011000 8.826 1 -010011000 midnight-to-5 1 -010011000 1.8780 1 -010011000 137.23 1 -010011000 65.04 1 -010011000 9.114 1 -010011000 0.8168 1 -010011000 94.93 1 -010011000 17.76 1 -010011000 237.38 1 -010011000 235.87 1 -010011000 70.109 1 -010011000 2.9900 1 -010011000 599.8 1 -010011000 4.919 1 -010011000 2.300 1 -010011000 7.869 1 -010011000 143.24 1 -010011000 399.75 1 -010011000 454.92 1 -010011000 148.68 1 -010011000 414.62 1 -010011000 526.78 1 -010011000 224.69 1 -010011000 86.55 1 -010011000 624.61 1 -010011000 846.43 1 -010011000 404.75 1 -010011000 390.50 1 -010011000 9.415 1 -010011000 376.79 1 -010011000 8.6245 1 -010011000 8.699 1 -010011000 8.6995 1 -010011000 76.365 1 -010011000 811.5 1 -010011000 22.51 1 -010011000 30.48 1 -010011000 174.70 1 -010011000 992.26 1 -010011000 310.43 1 -010011000 151.43 1 -010011000 2.9968 1 -010011000 LARRY 1 -010011000 7.782 1 -010011000 654.6 1 -010011000 10.032 1 -010011000 96.04 1 -010011000 8.951 1 -010011000 11.828 1 -010011000 8.788 1 -010011000 you-know-who 1 -010011000 4.978 1 -010011000 1.8120 1 -010011000 667.70 1 -010011000 1,148 1 -010011000 NSANY 1 -010011000 NSAANN 1 -010011000 451.9 1 -010011000 27.79 1 -010011000 731.50 1 -010011000 850.5 1 -010011000 4.909 1 -010011000 29.33 1 -010011000 214.71 1 -010011000 8.145 1 -010011000 922.959 1 -010011000 24.213 1 -010011000 9.8391 1 -010011000 1.7727 1 -010011000 143.29 1 -010011000 304.80 1 -010011000 787.02 1 -010011000 35.38 1 -010011000 Orelinha 1 -010011000 4.655 1 -010011000 102.01 1 -010011000 24.37 1 -010011000 2.626 1 -010011000 1.60-to-1.65 1 -010011000 40.03 1 -010011000 27373.48 1 -010011000 30.47 1 -010011000 281.40 1 -010011000 6.7837 1 -010011000 1.7967 1 -010011000 8.310 1 -010011000 8.280 1 -010011000 8.1820 1 -010011000 8.320 1 -010011000 8.290 1 -010011000 54.42 1 -010011000 14.397 1 -010011000 1.054 1 -010011000 251.44 1 -010011000 294.60 1 -010011000 8.390 1 -010011000 8.388 1 -010011000 760.5 1 -010011000 480.94 1 -010011000 38.86 1 -010011000 1.7508 1 -010011000 101.57 1 -010011000 289.29 1 -010011000 Bauxivan 1 -010011000 263.07 1 -010011000 DM3 1 -010011000 59.78 1 -010011000 58.76 1 -010011000 6.276 1 -010011000 303.11 1 -010011000 341.18 1 -010011000 4.715 1 -010011000 6.283 1 -010011000 295.50 1 -010011000 568.20 1 -010011000 40.10 1 -010011000 34.05 1 -010011000 58.51 1 -010011000 43.22 1 -010011000 62.24 1 -010011000 5.759 1 -010011000 5.895 1 -010011000 29.387 1 -010011000 55.51 1 -010011000 9.935 1 -010011000 12,769 1 -010011000 6.975 1 -010011000 8.988 1 -010011000 6.677 1 -010011000 6.268 1 -010011000 7.094 1 -010011000 8.059 1 -010011000 7.472 1 -010011000 29.93 1 -010011000 8.834 1 -010011000 7.926 1 -010011000 8.807 1 -010011000 7.239 1 -010011000 9.564 1 -010011000 9.868 1 -010011000 582.5 1 -010011000 7.124 1 -010011000 7.324 1 -010011000 7.803 1 -010011000 7.276 1 -010011000 8.183 1 -010011000 32.71 1 -010011000 6.102 1 -010011000 6.794 1 -010011000 6.054 1 -010011000 8.172 1 -010011000 35.36 1 -010011000 6.249 1 -010011000 9.289 1 -010011000 8.657 1 -010011000 409.3 1 -010011000 5.9850 1 -010011000 5.903 1 -010011000 5.901 1 -010011000 5.979 1 -010011000 52.71 1 -010011000 1,282 1 -010011000 7.338 1 -010011000 8.414 1 -010011000 Vosne-Romanee 1 -010011000 27.76 1 -010011000 6.256 1 -010011000 8.434 1 -010011000 7.265 1 -010011000 8.711 1 -010011000 7.778 1 -010011000 6.747 1 -010011000 8.104 1 -010011000 9.452 1 -010011000 .7 1 -010011000 6.817 1 -010011000 7.597 1 -010011000 7.959 1 -010011000 JOB-SERVICE 1 -010011000 8.661 1 -010011000 7.149 1 -010011000 10.093 1 -010011000 more-than-20 1 -010011000 10.077 1 -010011000 12.029 1 -010011000 54.43 1 -010011000 26.14 1 -010011000 8.943 1 -010011000 37.84 1 -010011000 1,013.5 1 -010011000 7.923 1 -010011000 9.814 1 -010011000 12.382 1 -010011000 2.605 1 -010011000 9.973 1 -010011000 8.893 1 -010011000 14.063 1 -010011000 61.45 1 -010011000 59.82 1 -010011000 56.56 1 -010011000 60.35 1 -010011000 59.94 1 -010011000 112.67 1 -010011000 12:40 1 -010011000 9.498 1 -010011000 112.30 1 -010011000 2.845 1 -010011000 6.904 1 -010011000 6.644 1 -010011000 5.505 1 -010011000 1027.50 1 -010011000 53.49 1 -010011000 2.9132 1 -010011000 -3.3 1 -010011000 -1.3 1 -010011000 -3.2 1 -010011000 -1.4 1 -010011000 9.503 1 -010011000 65.46 1 -010011000 59.08 1 -010011000 63.36 1 -010011000 67.98 1 -010011000 59.40 1 -010011000 3:00 1 -010011000 0.026 1 -010011000 7.463 1 -010011000 68.26 1 -010011000 1.6086 1 -010011000 579.5 1 -010011000 10.135 1 -010011000 1.772 1 -010011000 6.724 1 -010011000 6.289 1 -010011000 6.247 1 -010011000 2.9547 1 -010011000 -1.29 1 -010011000 -0.76 1 -010011000 8.859 1 -010011000 633.5 1 -010011000 2.107 1 -010011000 760,628 1 -010011000 9.402 1 -010011000 10.036 1 -010011000 7.0625 1 -010011000 30.49 1 -010011000 14.168 1 -010011000 222.01 1 -010011000 270.27 1 -010011000 1.211 1 -010011000 383.50 1 -010011000 927.80 1 -010011000 279.78 1 -010011000 311.17 1 -010011000 99.88 1 -010011000 625.96 1 -010011000 4.620 1 -010011000 4.848 1 -010011000 38.44 1 -010011000 46.87 1 -010011000 7.055 1 -010011000 31.99 1 -010011000 10.195 1 -010011000 3.679 1 -010011000 1.151 1 -010011000 6.165 1 -010011000 59.52 1 -010011000 63.59 1 -010011000 Propose 1 -010011000 1,043.8 1 -010011000 7.686 1 -010011000 226.03 1 -010011000 6.889 1 -010011000 6.874 1 -010011000 35.48 1 -010011000 6.968 1 -010011000 7.682 1 -010011000 9.703 1 -010011000 9.558 1 -010011000 9.772 1 -010011000 5.863 1 -010011000 2.074 1 -010011000 2.499 1 -010011000 6.773 1 -010011000 1.523 1 -010011000 266.40 1 -010011000 2.9864 1 -010011000 7.979 1 -010011000 7.955 1 -010011000 1.321 1 -010011000 6.377 1 -010011000 3.225 1 -010011000 6.812 1 -010011000 13.283 1 -010011000 2.416 1 -010011000 56.06 1 -010011000 non-8 1 -010011000 46.95 1 -010011000 72.59 1 -010011000 6.601 1 -010011000 5.642 1 -010011000 7.679 1 -010011000 7.729 1 -010011000 9.578 1 -010011000 9.346 1 -010011000 1.046 1 -010011000 469.22 1 -010011000 440.69 1 -010011000 909.92 1 -010011000 8.593 1 -010011000 2.768 1 -010011000 3.670 1 -010011000 32.980 1 -010011000 135.989 1 -010011000 146.199 1 -010011000 10.210 1 -010011000 13.480 1 -010011000 14.330 1 -010011000 6.746 1 -010011000 7.303 1 -010011000 7.289 1 -010011000 7.402 1 -010011000 29.07 1 -010011000 10.281 1 -010011000 270.2 1 -010011000 7.783 1 -010011000 7.439 1 -010011000 2.9512 1 -010011000 3.685 1 -010011000 48.79 1 -010011000 55.93 1 -010011000 58.69 1 -010011000 8.203 1 -010011000 52.09 1 -010011000 56.71 1 -010011000 5.814 1 -010011000 59.85 1 -010011000 7.605 1 -010011000 Mundulea 1 -010011000 8.036 1 -010011000 25.21 1 -010011000 3.3069 1 -010011000 7.179 1 -010011000 5.855 1 -010011000 5.905 1 -010011000 6.957 1 -010011000 8.809 1 -010011000 8.061 1 -010011000 7.177 1 -010011000 7.663 1 -010011000 minus-1 1 -010011000 19.798 1 -010011000 32.099 1 -010011000 8.644 1 -010011000 5.789 1 -010011000 13.72 1 -010011000 6.741 1 -010011000 8.358 1 -010011000 208.52 1 -010011000 7.468 1 -010011000 206.55 1 -010011000 10.075 1 -010011000 10.025 1 -010011000 564.1 1 -010011000 1,097.50 1 -010011000 3.635 1 -010011000 3.928 1 -010011000 11.352 1 -010011000 9.245 1 -010011000 363.71 1 -010011000 10.936 1 -010011000 335.50 1 -010011000 8.317 1 -010011000 3.828 1 -010011000 1.142 1 -010011000 34.38 1 -010011000 1,092.50 1 -010011000 13.78 1 -010011000 7.363 1 -010011000 7.054 1 -010011000 1,046.00 1 -010011000 9.915 1 -010011000 9.638 1 -010011000 93.53 1 -010011000 85.23 1 -010011000 6.328 1 -010011000 6.468 1 -010011000 6.448 1 -010011000 1.9663 1 -010011000 461.80 1 -010011000 92.85 1 -010011000 15.390 1 -010011000 150.449 1 -010011000 50.58 1 -010011000 161.587 1 -010011000 11.138 1 -010011000 14.460 1 -010011000 683.8 1 -010011000 7.025 1 -010011000 8.492 1 -010011000 risk-pools 1 -010011000 60.18 1 -010011000 15.524 1 -010011000 1.117 1 -010011000 1.581 1 -010011000 7.0961 1 -010011000 9.169 1 -010011000 10.146 1 -010011000 7.263 1 -010011000 7.115 1 -010011000 348.14-a 1 -010011000 6.548 1 -010011000 8.462 1 -010011000 108.41 1 -010011000 207.95 1 -010011000 114.70 1 -010011000 67.48 1 -010011000 107.071 1 -010011000 3.1853 1 -010011000 3.1892 1 -010011000 34.78 1 -010011000 8.932 1 -010011000 28.74 1 -010011000 578.90 1 -010011000 Mitsubishi/Chrysler 1 -010011000 42.72 1 -010011000 31.433 1 -010011000 8.021 1 -010011000 625.66 1 -010011000 9.194 1 -010011000 346.26 1 -010011000 9.037 1 -010011000 O.1 1 -010011000 72.82 1 -010011000 56.46 1 -010011000 HIA 1 -010011000 519.46 1 -010011000 9.649 1 -010011000 812,419 1 -010011000 103,652 1 -010011000 :8.725 1 -010011000 5.090 1 -010011000 3.938 1 -010011000 2.0500 1 -010011000 2.2000 1 -010011000 6.948 1 -010011000 7.038 1 -010011000 120:1 1 -010011000 332.80 1 -010011000 91.57 1 -010011000 5.070 1 -010011000 6.809 1 -010011000 8.218 1 -010011000 55.89 1 -010011000 53.38 1 -010011000 58.79 1 -010011000 6.436 1 -010011000 7.837 1 -010011000 3.360 1 -010011000 266.20 1 -010011000 20.79 1 -010011000 2.9333 1 -010011000 210.70 1 -010011000 1.357 1 -010011000 244.00 1 -010011000 7.048 1 -010011000 9.021 1 -010011000 631.00 1 -010011000 .9.92 1 -010011000 23.74 1 -010011000 77.52 1 -010011000 430.21 1 -010011000 136.81 1 -010011000 331.13 1 -010011000 4.475 1 -010011000 4.515 1 -010011000 7.673 1 -010011000 3.0875 1 -010011000 3.105 1 -010011000 3.0933 1 -010011000 8.828 1 -010011000 59.29 1 -010011000 54.34 1 -010011000 56.59 1 -010011000 55.31 1 -010011000 560.2 1 -010011000 645.5 1 -010011000 2.368 1 -010011000 6.869 1 -010011000 62.78 1 -010011000 110.57 1 -010011000 9.062 1 -010011000 1.182 1 -010011000 7.6855 1 -010011000 9.017 1 -010011000 3.1130 1 -010011000 1.528 1 -010011000 3.572 1 -010011000 125.47 1 -010011000 112.04 1 -010011000 920.44 1 -010011000 1.010 1 -010011000 1.144 1 -010011000 NYN 1 -010011000 195.25 1 -010011000 182.78 1 -010011000 377.95 1 -010011000 Byblos 1 -010011000 .10.03 1 -010011000 TBSB 1 -010011000 4.472 1 -010011000 7.898 1 -010011000 2,411 1 -010011000 41.48 1 -010011000 124.94 1 -010011000 570.46 1 -010011000 131.72 1 -010011000 7.465 1 -010011000 7.359 1 -010011000 1.85-1.87 1 -010011000 4.823 1 -010011000 10.035 1 -010011000 4.525 1 -010011000 6.788 1 -010011000 HM 1 -010011000 6.841 1 -010011000 1.8010 1 -010011000 8.298 1 -010011000 8.405 1 -010011000 1.9460 1 -010011000 8.313 1 -010011000 8.204 1 -010011000 2.517 1 -010011000 32.0 1 -010011000 284.50 1 -010011000 8.6625 1 -010011000 10.157 1 -010011000 7.388 1 -010011000 9.523 1 -010011000 44.691 1 -010011000 1.729 1 -010011000 3.007 1 -010011000 30.355 1 -010011000 7.991 1 -010011000 68.624 1 -010011000 177.832 1 -010011000 8.4650 1 -010011000 8.4425 1 -010011000 8.6650 1 -010011000 364.09 1 -010011000 62.61 1 -010011000 123.86 1 -010011000 7.448 1 -010011000 7.269 1 -010011000 571.812 1 -010011000 black-and-blue 1 -010011000 67.20 1 -010011000 560.02 1 -010011000 162.60 1 -010011000 8,890 1 -010011000 569.86 1 -010011000 54.26 1 -010011000 448.41 1 -010011000 50.22 1 -010011000 394.87 1 -010011000 191.0 1 -010011000 103.26 1 -010011000 909.27 1 -010011000 936.37 1 -010011000 62.79 1 -010011000 975.93 1 -010011000 42.53 1 -010011000 2.147 1 -010011000 162.83 1 -010011000 872.71 1 -010011000 686.24 1 -010011000 Wassili 1 -010011000 1.510 1 -010011000 4.244 1 -010011000 109.019 1 -010011000 8.588 1 -010011000 0.488 1 -010011000 0.527 1 -010011000 0.557 1 -010011000 0.534 1 -010011000 0.495 1 -010011000 200.03 1 -010011000 0.469 1 -010011000 0.586 1 -010011000 102.392 1 -010011000 149.40 1 -010011000 641.38 1 -010011000 207.61 1 -010011000 848.99 1 -010011000 7.615 1 -010011000 2.008 1 -010011000 39.11 1 -010011000 29.72 1 -010011000 1.431 1 -010011000 1.950 1 -010011000 5.662 1 -010011000 496.74 1 -010011000 +62 1 -010011000 28.94 1 -010011000 40.83 1 -010011000 67.17 1 -010011000 433.4 1 -010011000 4.645 1 -010011000 1.714 1 -010011000 2.304 1 -010011000 83.72 1 -010011000 42.12 1 -010011000 2.046 1 -010011000 10.263 1 -010011000 1.7350-1.7400 1 -010011000 689.2 1 -010011000 38.79 1 -010011000 24.46 1 -010011000 772.17 1 -010011000 2.920 1 -010011000 775.84 1 -010011000 37.04 1 -010011000 1.585 1 -010011000 ScotTissues 1 -010011000 15.195 1 -010011000 919.491 1 -010011000 3.220 1 -010011000 38.100 1 -010011000 147.51 1 -010011000 6.520 1 -010011000 6.511 1 -010011000 6.539 1 -010011000 8.494 1 -010011000 6.515 1 -010011000 10.071 1 -010011000 8.261 1 -010011000 7.604 1 -010011000 5.395 1 -010011000 49.70 1 -010011000 240.80 1 -010011000 819.3 1 -010011000 6.619 1 -010011000 6.709 1 -010011000 11.677 1 -010011000 16.48 1 -010011000 6.745 1 -010011000 9.955 1 -010011000 20.03 1 -010011000 1.290 1 -010011000 102.85 1 -010011000 557.24 1 -010011000 9.429 1 -010011000 41.96 1 -010011000 10.061 1 -010011000 3.818 1 -010011000 LLY 1 -010011000 8.387 1 -010011000 15.91 1 -010011000 12.027 1 -010011000 8.923 1 -010011000 49.13 1 -010011000 12.010 1 -010011000 9.680 1 -010011000 25.287 1 -010011000 109.49 1 -010011000 101.219 1 -010011000 60.82 1 -010011000 1.968 1 -010011000 1.751 1 -010011000 1082 1 -010011000 22.068 1 -010011000 TISHMAN 1 -010011000 8.411 1 -010011000 3.293 1 -010011000 51.86 1 -010011000 6.589 1 -010011000 6.655 1 -010011000 49.53 1 -010011000 48.27 1 -010011000 7.571 1 -010011000 7.687 1 -010011000 8.288 1 -010011000 79.13 1 -010011000 3.0822 1 -010011000 9.425 1 -010011000 1.186 1 -010011000 7.167 1 -010011000 3.0718 1 -010011000 7.814 1 -010011000 7.174 1 -010011000 10:55 1 -010011000 .9.81 1 -010011000 3.1010 1 -010011000 1.6733 1 -010011000 10.706 1 -010011000 440.01 1 -010011000 8.337 1 -010011000 high-20 1 -010011000 9.237 1 -010011000 7.326 1 -010011000 10.201 1 -010011000 111.20 1 -010011000 7.773 1 -010011000 9.724 1 -010011000 8.769 1 -010011000 6.598 1 -010011000 .9.97 1 -010011000 then-7.7 1 -010011000 2.430 1 -010011000 5.330 1 -010011000 9.542 1 -010011000 1.8895 1 -010011000 249.70 1 -010011000 7.945 1 -010011000 30,205 1 -010011000 2.03-to-2.05 1 -010011000 9.142 1 -010011000 CKE 1 -010011000 2X 1 -010011000 8.294 1 -010011000 6.994 1 -010011000 245.34 1 -010011000 557.12 1 -010011000 1.110 1 -010011000 30.81 1 -010011000 Thighs/Hips 1 -010011000 Figure/Physique 1 -010011000 80.21 1 -010011000 257.45 1 -010011000 59.41 1 -010011000 117.91 1 -010011000 67.54 1 -010011000 224.07 1 -010011000 238.47 1 -010011000 193.71 1 -010011000 404.41 1 -010011000 12.460 1 -010011000 112.07 1 -010011000 1199 1 -010011000 79.06 1 -010011000 3.226 1 -010011000 191.50 1 -010011000 46.94 1 -010011000 1.550 1 -010011000 643.36 1 -010011000 10.425 1 -010011000 MKC 1 -010011000 8.628 1 -010011000 98.19 1 -010011000 8.525 1 -010011000 1.8910 1 -010011000 8.4256 1 -010011000 8.585 1 -010011000 118.17 1 -010011000 33.42 1 -010011000 3.1378 1 -010011000 3.1375 1 -010011000 .383 1 -010011000 56.77 1 -010011000 8.748 1 -010011000 Confidence-inspiring 1 -010011000 56.85 1 -010011000 26.58 1 -010011000 221.08 1 -010011000 292.37 1 -010011000 3.671 1 -010011000 1.6910 1 -010011000 7.941 1 -010011000 41.40 1 -010011000 300.10 1 -010011000 259,645 1 -010011000 190.17 1 -010011000 43.128 1 -010011000 WHX 1 -010011000 177.1 1 -010011000 7.146 1 -010011000 2.531 1 -010011000 740.60 1 -010011000 9.642 1 -010011000 .10.06 1 -010011000 1.231 1 -010011000 820.42 1 -010011000 8.074 1 -010011000 8.077 1 -010011000 6.618 1 -010011000 8.649 1 -010011000 8.663 1 -010011000 8.479 1 -010011000 632.50 1 -010011000 8.921 1 -010011000 +23.6 1 -010011000 8.083 1 -010011000 8.253 1 -010011000 8.956 1 -010011000 9.475 1 -010011000 6.819 1 -010011000 4.9261 1 -010011000 4.8963 1 -010011000 10.962 1 -010011000 8.701 1 -010011000 12.464 1 -010011000 209.10 1 -010011000 9.231 1 -010011000 789.5 1 -010011000 8.226 1 -010011000 9.421 1 -010011000 161.50 1 -010011000 40.24 1 -010011000 366.50 1 -010011000 1.358 1 -010011000 21.36 1 -010011000 65.94 1 -010011000 98.84 1 -010011000 1.014 1 -010011000 289.69 1 -010011000 122.95 1 -010011000 43.0 1 -010011000 236.0 1 -010011000 64.0 1 -010011000 78.0 1 -010011000 Electrosound 1 -010011000 234.0 1 -010011000 225.6 1 -010011000 103.0 1 -010011000 97.0 1 -010011000 91.0 1 -010011000 90.0 1 -010011000 45.0 1 -010011000 40.0 1 -010011000 4.955 1 -010011000 300.0 1 -010011000 8.111 1 -010011000 9.293 1 -010011000 200.0 1 -010011000 6.8771 1 -010011000 6.8532 1 -010011000 8.009 1 -010011000 8.018 1 -010011000 1.8790 1 -010011000 10.273 1 -010011000 10.278 1 -010011000 12:06 1 -010011000 1.709 1 -010011000 51.131 1 -010011000 59.88 1 -010011000 1.8688 1 -010011000 BDK 1 -010011000 157.85 1 -010011000 56.72 1 -010011000 58.05 1 -010011000 100.62 1 -010011000 17.31 1 -010011000 383.43 1 -010011000 479.5 1 -010011000 951.99 1 -010011000 1.6852 1 -010011000 1.8803 1 -010011000 8.056 1 -010011000 471.00 1 -010011000 276.3 1 -010011000 NMK 1 -010011000 10.277 1 -010011000 10.276 1 -010011000 5.210 1 -010011000 93.55 1 -010011000 1,396.20 1 -010011000 Adtech 1 -010011000 36.13 1 -010011000 63.12 1 -010011000 972.07 1 -010011000 899.52 1 -010011000 7.230 1 -010011000 7.902 1 -010011000 698.56 1 -010011000 7.935 1 -010011000 9.922 1 -010011000 699.10 1 -010011000 Zahnradfabrik 1 -010011000 430.5 1 -010011000 7.035 1 -010011000 6.992 1 -010011000 7.0184 1 -010011000 6.908 1 -010011000 10.8475 1 -010011000 10.8482 1 -010011000 9.579 1 -010011000 107.10 1 -010011000 113.90 1 -010011000 1.606 1 -010011000 148.09 1 -010011000 1.547 1 -010011000 5.145 1 -010011000 9.155 1 -010011000 7.205 1 -010011000 225.15 1 -010011000 310.14 1 -010011000 NOC 1 -010011000 47.89 1 -010011000 5.215 1 -010011000 251.30 1 -010011000 34.63 1 -010011000 151.257 1 -010011000 192.599 1 -010011000 9.362 1 -010011000 14.700 1 -010011000 1.942 1 -010011000 263.20 1 -010011000 27.267 1 -010011000 463.57 1 -010011000 8.553 1 -010011000 5.758 1 -010011000 2.746 1 -010011000 12.679 1 -010011000 12.310 1 -010011000 9.944 1 -010011000 334.12 1 -010011000 32,429 1 -010011000 08:00:00 1 -010011000 65.060 1 -010011000 5.384 1 -010011000 334.56 1 -010011000 5.245 1 -010011000 1.9020 1 -010011000 3.1775 1 -010011000 40.82 1 -010011000 23.79 1 -010011000 8.141 1 -010011000 8.1255 1 -010011000 138.80 1 -010011000 299.90 1 -010011000 8.285 1 -010011000 81.06 1 -010011000 35.86 1 -010011000 8.6745 1 -010011000 8.733 1 -010011000 9.970 1 -010011000 .10.07 1 -010011000 17.576 1 -010011000 3.638 1 -010011000 7.993 1 -010011000 7.994 1 -010011000 8.007 1 -010011000 62.39 1 -010011000 63.01 1 -010011000 29.71 1 -010011000 58.28 1 -010011000 56.30 1 -010011000 ERB 1 -010011000 9.024 1 -010011000 9.175 1 -010011000 37.61 1 -010011000 23.84 1 -010011000 17.362 1 -010011000 9.404 1 -010011000 8.409 1 -010011000 ACCEPTANCES:8.65 1 -010011000 .9.95 1 -010011000 :8.60 1 -010011000 CMZ 1 -010011000 .9.54 1 -010011000 9.019 1 -010011000 6.998 1 -010011000 10.107 1 -010011000 +5.7 1 -010011000 9.594 1 -010011000 6.703 1 -010011000 +1.7 1 -010011000 890.33 1 -010011000 3.824 1 -010011000 3.154 1 -010011000 1.9695 1 -010011000 10.055 1 -010011000 99.896 1 -010011000 653.50 1 -010011000 6.8845 1 -010011000 220,000,002 1 -010011000 +1.5 1 -010011000 267.70 1 -010011000 SFD 1 -010011000 8.346 1 -010011000 7.004 1 -010011000 9.451 1 -010011000 9.041 1 -010011000 111.31 1 -010011000 96.89 1 -010011000 Certifying 1 -010011000 1.037 1 -010011000 672.555 1 -010011000 55.156 1 -010011000 499.22 1 -010011000 7.707 1 -010011000 8.256 1 -010011000 8.234 1 -010011000 8.289 1 -010011000 8.270 1 -010011000 8.078 1 -010011000 7.005 1 -010011000 9.331 1 -010011000 9.389 1 -010011000 1.1761 1 -010011000 252.04 1 -010011000 66.30 1 -010011000 35.09 1 -010011000 674.22 1 -010011000 417.50 1 -010011000 4.835 1 -010011000 84.0 1 -010011000 -0.1 1 -010011000 -1.1 1 -010011000 4.685 1 -010011000 4.585 1 -010011000 13.365 1 -010011000 6.055 1 -010011000 2.277 1 -010011000 1.333 1 -010011000 67.01 1 -010011000 13.873 1 -010011000 6.966 1 -010011000 2.510 1 -010011000 35.195 1 -010011000 10.437 1 -010011000 955.73 1 -010011000 3.443 1 -010011000 92.40 1 -010011000 3.857 1 -010011000 748.34 1 -010011000 148.97 1 -010011000 8.512 1 -010011000 821.1 1 -010011000 8.153 1 -010011000 8.185 1 -010011000 228.21 1 -010011000 211.53 1 -010011000 15.540 1 -010011000 1.671 1 -010011000 2.229 1 -010011000 8.641 1 -010011000 2.999 1 -010011000 1.7400 1 -010011000 1.7320 1 -010011000 4.196 1 -010011000 6.030 1 -010011000 1.834 1 -010011000 3.0636 1 -010011000 3.815 1 -010011000 717.47 1 -010011000 341.22 1 -010011000 507.09 1 -010011000 8,675 1 -010011000 67.47 1 -010011000 75.17 1 -010011000 4.039 1 -010011000 1.426 1 -010011000 7.549 1 -010011000 7.638 1 -010011000 7.649 1 -010011000 Furness-Houlder 1 -010011000 261.30 1 -010011000 10.058 1 -010011000 8.856 1 -010011000 884.79 1 -010011000 7.421 1 -010011000 8.396 1 -010011000 99.828 1 -010011000 7.446 1 -010011000 57.57 1 -010011000 6.653 1 -010011000 Endorse 1 -010011000 65.31 1 -010011000 62.54 1 -010011000 59.36 1 -010011000 768.61 1 -010011000 261.02 1 -010011000 248.41 1 -010011000 53.43 1 -010011000 8.651 1 -010011000 5.085 1 -010011000 735.7 1 -010011000 679.1 1 -010011000 288.15 1 -010011000 30.61 1 -010011000 8.578 1 -010011000 8.562 1 -010011000 460.88 1 -010011000 4.845 1 -010011000 MCIC 1 -010011000 27.107 1 -010011000 9.065 1 -010011000 10.736 1 -010011000 8.169 1 -010011000 7.799 1 -010011000 7.885 1 -010011000 268.33 1 -010011000 7.603 1 -010011000 32.53 1 -010011000 43.34 1 -010011000 8.963 1 -010011000 5.897 2 -010011000 17.98 2 -010011000 7.358 2 -010011000 32.18 2 -010011000 7.417 2 -010011000 9.495 2 -010011000 then-35.6 2 -010011000 5.851 2 -010011000 1.6218 2 -010011000 6.921 2 -010011000 2.9047 2 -010011000 7.2978 2 -010011000 7.305 2 -010011000 7.4395 2 -010011000 47.30 2 -010011000 3,310 2 -010011000 8.7446 2 -010011000 8.543 2 -010011000 9.492 2 -010011000 8.981 2 -010011000 7.184 2 -010011000 6.152 2 -010011000 5.902 2 -010011000 6.5188 2 -010011000 5.974 2 -010011000 1.8178 2 -010011000 9.479 2 -010011000 9.785 2 -010011000 6.726 2 -010011000 8.774 2 -010011000 3.028 2 -010011000 39.09 2 -010011000 8.832 2 -010011000 71.59 2 -010011000 9.437 2 -010011000 8.565 2 -010011000 2.9254 2 -010011000 7.294 2 -010011000 6.287 2 -010011000 4.894 2 -010011000 1.8453 2 -010011000 6.458 2 -010011000 6.096 2 -010011000 7.017 2 -010011000 6.069 2 -010011000 1.9885 2 -010011000 50.62 2 -010011000 2.8558 2 -010011000 1.9471 2 -010011000 99.77 2 -010011000 54.08 2 -010011000 7.9691 2 -010011000 13.18 2 -010011000 10.806 2 -010011000 1.9440 2 -010011000 7.501 2 -010011000 72.19 2 -010011000 10.958 2 -010011000 55.0 2 -010011000 Kowloon 2 -010011000 7.353 2 -010011000 7.4635 2 -010011000 6.894 2 -010011000 7.6346 2 -010011000 7.694 2 -010011000 6.876 2 -010011000 5.769 2 -010011000 5.812 2 -010011000 19-6 2 -010011000 3.0488 2 -010011000 5.779 2 -010011000 56.699 2 -010011000 7.280 2 -010011000 29.96 2 -010011000 109.28 2 -010011000 701.7 2 -010011000 8.086 2 -010011000 1.9183 2 -010011000 8.085 2 -010011000 7.182 2 -010011000 136.77 2 -010011000 1.8393 2 -010011000 129.73 2 -010011000 9.101 2 -010011000 178.93 2 -010011000 1.9180 2 -010011000 17.68 2 -010011000 A-plus-plus- 2 -010011000 54.05 2 -010011000 2.0056 2 -010011000 6.956 2 -010011000 52.0 2 -010011000 30.55 2 -010011000 1.6360 2 -010011000 5.325 2 -010011000 14.21 2 -010011000 63.08 2 -010011000 2.8741 2 -010011000 61.31 2 -010011000 62.0 2 -010011000 1.9281 2 -010011000 338.6 2 -010011000 7.252 2 -010011000 7.0485 2 -010011000 70.0 2 -010011000 6.7916 2 -010011000 6.879 2 -010011000 8.393 2 -010011000 5.385 2 -010011000 6.667 2 -010011000 7.0634 2 -010011000 6.066 2 -010011000 1.9145 2 -010011000 4,670 2 -010011000 8.686 2 -010011000 6:40 2 -010011000 6.1005 2 -010011000 8.364 2 -010011000 59.95 2 -010011000 1.6677 2 -010011000 9.453 2 -010011000 9.438 2 -010011000 8.3470 2 -010011000 6.431 2 -010011000 6.4306 2 -010011000 5.6875 2 -010011000 7.119 2 -010011000 296.3 2 -010011000 327.7 2 -010011000 2.9936 2 -010011000 6.8756 2 -010011000 7.069 2 -010011000 6.567 2 -010011000 6.6226 2 -010011000 33.06 2 -010011000 2.8818 2 -010011000 1.8421 2 -010011000 1.7982 2 -010011000 64.83 2 -010011000 1.9240 2 -010011000 7.948 2 -010011000 638.5 2 -010011000 1.9303 2 -010011000 106.05 2 -010011000 106.19 2 -010011000 8.6150 2 -010011000 34.13 2 -010011000 30.60 2 -010011000 363.40 2 -010011000 2.0150 2 -010011000 83.83 2 -010011000 8.5825 2 -010011000 1,351 2 -010011000 8.536 2 -010011000 8.483 2 -010011000 7.075 2 -010011000 8.0135 2 -010011000 8.5915 2 -010011000 8.464 2 -010011000 1,305 2 -010011000 7.4295 2 -010011000 7.4852 2 -010011000 4.615 2 -010011000 9.575 2 -010011000 10.042 2 -010011000 256.09 2 -010011000 28.0 2 -010011000 61.48 2 -010011000 8.749 2 -010011000 1,222 2 -010011000 4.535 2 -010011000 1.7640 2 -010011000 7.4737 2 -010011000 7.6182 2 -010011000 9.195 2 -010011000 7.8875 2 -010011000 92.0 2 -010011000 13.997 2 -010011000 1.845 2 -010011000 8.1567 2 -010011000 2.9421 2 -010011000 1.8339 2 -010011000 1.8945 2 -010011000 60.46 2 -010011000 659.50 2 -010011000 5.045 2 -010011000 28.46 2 -010011000 7.583 2 -010011000 7.347 2 -010011000 26,100 2 -010011000 6.243 2 -010011000 6.3234 2 -010011000 5.874 2 -010011000 33.63 2 -010011000 8.142 2 -010011000 7.9688 2 -010011000 262.4 2 -010011000 8.845 2 -010011000 7.8584 2 -010011000 >7 2 -010011000 656.50 2 -010011000 8.224 2 -010011000 11,061 2 -010011000 139.21 2 -010011000 83.0 2 -010011000 7.2614 2 -010011000 7.4094 2 -010011000 7.129 2 -010011000 7.0977 2 -010011000 6.622 2 -010011000 451.50 2 -010011000 6.2861 2 -010011000 6.2536 2 -010011000 6.339 2 -010011000 31.05 2 -010011000 7.1849 2 -010011000 7.1725 2 -010011000 1.6957 2 -010011000 1.7011 2 -010011000 1.6790 2 -010011000 290.5 2 -010011000 66.55 2 -010011000 278.21 2 -010011000 8.687 2 -010011000 7.1175 2 -010011000 6.9367 2 -010011000 7.492 2 -010011000 1.0594 2 -010011000 1.7210 2 -010011000 9.012 2 -010011000 1.8660 2 -010011000 31.81 2 -010011000 21.83 2 -010011000 104.56 2 -010011000 7.3945 2 -010011000 6.385 2 -010011000 61.47 2 -010011000 8.465 2 -010011000 56.29 2 -010011000 53.83 2 -010011000 98.833 2 -010011000 16.71 2 -010011000 7.2694 2 -010011000 7.4376 2 -010011000 7.8769 2 -010011000 1.8354 2 -010011000 2.9513 2 -010011000 6.367 2 -010011000 4.675 2 -010011000 9.269 2 -010011000 6.535 2 -010011000 8.785 2 -010011000 8.1218 2 -010011000 8.1393 2 -010011000 8.2689 2 -010011000 8.249 2 -010011000 8.181 2 -010011000 80.33 2 -010011000 9.001 2 -010011000 424.6 2 -010011000 8.2195 2 -010011000 8.2401 2 -010011000 8.1982 2 -010011000 1,788 2 -010011000 29.67 2 -010011000 9.913 2 -010011000 9.901 2 -010011000 1.905 2 -010011000 4.985 2 -010011000 6.465 2 -010011000 102.42 2 -010011000 8.155 2 -010011000 8.182 2 -010011000 25.92 2 -010011000 4.775 2 -010011000 7.9432 2 -010011000 8.052 2 -010011000 431.22 2 -010011000 9.233 2 -010011000 8.389 2 -010011000 4.575 2 -010011000 2.373 2 -010011000 35.45 2 -010011000 6.7842 2 -010011000 513.50 2 -010011000 6.8785 2 -010011000 34.99 2 -010011000 39.17 2 -010011000 345.53 2 -010011000 19-2 2 -010011000 7.5394 2 -010011000 7.6409 2 -010011000 50.03 2 -010011000 95.63 2 -010011000 7.675 2 -010011000 27.04 2 -010011000 8.2956 2 -010011000 8.3135 2 -010011000 310.85 2 -010011000 6.2415 2 -010011000 6.269 2 -010011000 8.065 2 -010011000 7.567 2 -010011000 7.5943 2 -010011000 3,731,000 2 -010011000 293.50 2 -010011000 100.22 2 -010011000 8.255 2 -010011000 5.881 2 -010011000 5.753 2 -010011000 8.965 2 -010011000 7.282 2 -010011000 7.2118 2 -010011000 7.144 2 -010011000 7.155 2 -010011000 248.50 2 -010011000 6.779 2 -010011000 6.689 2 -010011000 6.642 2 -010011000 7.206 2 -010011000 2.0070 2 -010011000 18,943 2 -010011000 6.826 2 -010011000 6.693 2 -010011000 6.6192 2 -010011000 6.7095 2 -010011000 1.6553 2 -010011000 6.882 2 -010011000 6.7456 2 -010011000 13.367 2 -010011000 9.465 2 -010011000 8.469 2 -010011000 8.491 2 -010011000 6.9216 2 -010011000 6.6483 2 -010011000 6.748 2 -010011000 8.962 2 -010011000 9.165 2 -010011000 8.015 2 -010011000 10.332 2 -010011000 25.31 2 -010011000 8.6557 2 -010011000 6.5941 2 -010011000 6.6472 2 -010011000 8.4740 2 -010011000 1.9665 2 -010011000 7.385 2 -010011000 1.9773 2 -010011000 7.503 2 -010011000 7.5163 2 -010011000 253.85 2 -010011000 8.823 2 -010011000 7.204 2 -010011000 605.50 2 -010011000 10:05 2 -010011000 6.7605 2 -010011000 1.9711 2 -010011000 9.886 2 -010011000 3.0720 2 -010011000 1,318 2 -010011000 7.6695 2 -010011000 7.6529 2 -010011000 48.87 2 -010011000 6.878 2 -010011000 9.422 2 -010011000 9.343 2 -010011000 23.67 2 -010011000 7.1495 2 -010011000 6.5902 2 -010011000 1,809 2 -010011000 2.0003 2 -010011000 1.6396 2 -010011000 1.9693 2 -010011000 57.29 2 -010011000 58.41 2 -010011000 243.24 2 -010011000 6.924 2 -010011000 6.218 2 -010011000 6.1996 2 -010011000 10.596 2 -010011000 9.424 2 -010011000 5.195 2 -010011000 6.187 2 -010011000 6.195 2 -010011000 9.328 2 -010011000 32.08 2 -010011000 8.199 2 -010011000 19,523 2 -010011000 1.8309 2 -010011000 8.4557 2 -010011000 8.6647 2 -010011000 6.989 2 -010011000 6.827 2 -010011000 8.433 2 -010011000 2.9338 2 -010011000 6.9422 2 -010011000 7.034 2 -010011000 28.390 2 -010011000 67.19 2 -010011000 8,410 2 -010011000 6.895 2 -010011000 6.922 2 -010011000 7.2086 2 -010011000 6.9305 2 -010011000 6.9159 2 -010011000 7.049 2 -010011000 6.628 2 -010011000 31.17 2 -010011000 16.44 2 -010011000 6.5894 2 -010011000 5.205 2 -010011000 6.8198 2 -010011000 8.878 2 -010011000 23.46 2 -010011000 2.0163 2 -010011000 2.0100 2 -010011000 27,871 2 -010011000 20.00 2 -010011000 8.545 2 -010011000 6.684 2 -010011000 2,599 2 -010011000 317.4 2 -010011000 58.89 2 -010011000 1.7765 2 -010011000 9.891 2 -010011000 6.961 2 -010011000 6.685 2 -010011000 6.6266 2 -010011000 6.5545 2 -010011000 11.057 2 -010011000 9.469 2 -010011000 6.294 2 -010011000 5.055 2 -010011000 6.967 3 -010011000 7.245 3 -010011000 6.857 3 -010011000 8.925 3 -010011000 8.386 3 -010011000 6.925 3 -010011000 66.29 3 -010011000 1.8098 3 -010011000 8.064 3 -010011000 8.045 3 -010011000 1.7819 3 -010011000 8.214 3 -010011000 8.538 3 -010011000 7.185 3 -010011000 5.065 3 -010011000 8.165 3 -010011000 1.7752 3 -010011000 9.047 3 -010011000 1.7929 3 -010011000 6.605 3 -010011000 :8.75 3 -010011000 2,044 3 -010011000 8.815 3 -010011000 7.297 3 -010011000 2,276 3 -010011000 8.385 3 -010011000 47.73 3 -010011000 5.928 3 -010011000 6.938 3 -010011000 1.8113 3 -010011000 8.347 3 -010011000 8.058 3 -010011000 1.7825 3 -010011000 1.8071 3 -010011000 11.19 3 -010011000 1.8365 3 -010011000 3,170 3 -010011000 1.7914 3 -010011000 1,945 3 -010011000 1.8425 3 -010011000 1.7948 3 -010011000 1.7826 3 -010011000 317.9 3 -010011000 1.8248 3 -010011000 1.8139 3 -010011000 8.427 3 -010011000 92.60 3 -010011000 1.8118 3 -010011000 1.6955 3 -010011000 1.7050 3 -010011000 10.185 3 -010011000 6.845 3 -010011000 364.50 3 -010011000 1.7958 3 -010011000 32.86 3 -010011000 1.289 3 -010011000 1.7780 3 -010011000 1.7575 3 -010011000 1.7065 3 -010011000 1.6965 3 -010011000 1.6848 3 -010011000 7.3946 3 -010011000 1.5980 3 -010011000 1.6913 3 -010011000 601.74 3 -010011000 7.225 3 -010011000 25.00 3 -010011000 17.0 3 -010011000 5:15 3 -010011000 1.6737 3 -010011000 1.7017 3 -010011000 1.6803 3 -010011000 5.075 3 -010011000 1.6760 3 -010011000 99.15 3 -010011000 1.5947 3 -010011000 32.07 3 -010011000 1.6888 3 -010011000 1.6878 3 -010011000 1,098 3 -010011000 97.12 3 -010011000 1.6998 3 -010011000 Function 3 -010011000 3.9375 3 -010011000 1.7905 3 -010011000 1.6917 3 -010011000 1.8224 3 -010011000 11:10 3 -010011000 6.225 3 -010011000 44.23 3 -010011000 1.7270 3 -010011000 6.949 3 -010011000 1.7900 3 -010011000 1.8185 3 -010011000 9.689 3 -010011000 1.8128 3 -010011000 1.8255 3 -010011000 1.8231 3 -010011000 8.715 3 -010011000 36.96 3 -010011000 6.899 3 -010011000 1.8054 3 -010011000 1.6930 3 -010011000 1.8523 3 -010011000 23.64 3 -010011000 1.6558 3 -010011000 10:35 3 -010011000 6.695 3 -010011000 1.8621 3 -010011000 1.8643 3 -010011000 1.8601 3 -010011000 7.128 3 -010011000 1.6919 3 -010011000 1.8583 3 -010011000 1.6522 3 -010011000 1.8933 3 -010011000 1.8836 3 -010011000 1.6555 3 -010011000 1.6702 3 -010011000 1.8899 3 -010011000 1.8924 3 -010011000 1.6690 3 -010011000 1.6892 3 -010011000 1.6793 3 -010011000 1.8173 3 -010011000 1.6600 3 -010011000 7.2295 3 -010011000 1.8288 3 -010011000 1.6307 3 -010011000 564.5 3 -010011000 1.6280 3 -010011000 1.6674 3 -010011000 1.8465 3 -010011000 1.8343 3 -010011000 35.15 3 -010011000 1.8296 3 -010011000 6.725 3 -010011000 16.77 3 -010011000 1.8293 3 -010011000 1.6458 3 -010011000 1.8398 3 -010011000 6.219 3 -010011000 11.82 3 -010011000 1.8329 3 -010011000 1.8285 3 -010011000 255.80 3 -010011000 6.868 3 -010011000 6.898 3 -010011000 1.8438 3 -010011000 6.556 3 -010011000 4.935 3 -010011000 4.965 3 -010011000 1.6580 3 -010011000 0.993 3 -010011000 1.8715 3 -010011000 1.6817 3 -010011000 8.044 3 -010011000 4.975 3 -010011000 1.6295 3 -010011000 8.174 3 -010011000 5.015 3 -010011000 1.9600 3 -010011000 1.7585 3 -010011000 1.9655 3 -010011000 37.14 3 -010011000 5.798 3 -010011000 1.8358 3 -010011000 31.97 3 -010011000 1.8817 3 -010011000 8.489 3 -010011000 1.8765 3 -010011000 5.265 3 -010011000 310.95 3 -010011000 8.575 3 -010011000 20.21 3 -010011000 5.165 3 -010011000 1.6720 3 -010011000 8.0825 3 -010011000 1.8559 3 -010011000 25.0 3 -010011000 35.43 3 -010011000 1.8530 3 -010011000 28.96 3 -010011000 5.105 3 -010011000 5.185 3 -010011000 8.082 3 -010011000 5.915 3 -010011000 5.777 3 -010011000 8.793 3 -010011000 102.80 3 -010011000 23.0 3 -010011000 1.6569 3 -010011000 1.6685 3 -010011000 33.24 3 -010011000 23.73 3 -010011000 438.5 3 -010011000 23.04 3 -010011000 1.8158 3 -010011000 1.7085 3 -010011000 7.589 3 -010011000 7.594 3 -010011000 4.695 3 -010011000 7.985 3 -010011000 12.63 3 -010011000 1.8023 3 -010011000 1.7750 3 -010011000 1.7100 4 -010011000 97.35 4 -010011000 6.752 4 -010011000 20.32 4 -010011000 17.71 4 -010011000 6.525 4 -010011000 16.49 4 -010011000 4.825 4 -010011000 1.8505 4 -010011000 5.175 4 -010011000 5.135 4 -010011000 1.8554 4 -010011000 1.8280 4 -010011000 1.7710 4 -010011000 1.7113 4 -010011000 24.04 4 -010011000 7.147 4 -010011000 1.6585 4 -010011000 1.7995 4 -010011000 8.594 4 -010011000 8.369 4 -010011000 1.7845 4 -010011000 6:45 4 -010011000 1.6704 4 -010011000 36.74 4 -010011000 260.5 4 -010011000 8.325 4 -010011000 6.298 4 -010011000 7:35 4 -010011000 1.8340 4 -010011000 1.6855 4 -010011000 20.66 4 -010011000 1.8143 4 -010011000 335.5 4 -010011000 1.7868 4 -010011000 1.7975 4 -010011000 1.7945 4 -010011000 1.6470 4 -010011000 10.89 4 -010011000 1.6275 4 -010011000 6.099 4 -010011000 4.1875 4 -010011000 1.7960 4 -010011000 6.435 4 -010011000 1.6290 4 -010011000 8.841 4 -010011000 1.8046 4 -010011000 61.30 4 -010011000 1.8403 4 -010011000 1.8065 4 -010011000 21.57 4 -010011000 1.9580 4 -010011000 1.8152 4 -010011000 23.59 4 -010011000 1.6400 4 -010011000 11.83 4 -010011000 1.5945 4 -010011000 6.675 4 -010011000 1.8335 4 -010011000 1.6620 4 -010011000 1.8145 4 -010011000 1.7850 4 -010011000 1.8390 4 -010011000 1.8565 4 -010011000 1.8295 4 -010011000 1.7950 4 -010011000 1.8325 4 -010011000 1.7635 4 -010011000 1.8942 4 -010011000 1.8520 4 -010011000 16.17 4 -010011000 1.6540 4 -010011000 229.2 4 -010011000 1.7120 4 -010011000 4,480 4 -010011000 1.7963 4 -010011000 1.7836 4 -010011000 1.7918 4 -010011000 1.6885 5 -010011000 1.7637 5 -010011000 1.7788 5 -010011000 6.635 5 -010011000 1.8210 5 -010011000 1.8055 5 -010011000 13.91 5 -010011000 1.8160 5 -010011000 1.8595 5 -010011000 16.21 5 -010011000 1.8230 5 -010011000 20.0 5 -010011000 51.33 5 -010011000 1.7023 5 -010011000 1.8050 5 -010011000 1.6895 5 -010011000 1.8725 5 -010011000 1.6595 5 -010011000 1.8668 5 -010011000 1.6815 5 -010011000 19.37 5 -010011000 21.21 5 -010011000 19.0 5 -010011000 1.5705 5 -010011000 1.8373 5 -010011000 99.05 5 -010011000 1.7910 5 -010011000 1.8375 5 -010011000 13.61 5 -010011000 303.5 5 -010011000 1.8220 5 -010011000 1.8405 5 -010011000 1.8242 5 -010011000 98.625 5 -010011000 1.8993 5 -010011000 1.8258 5 -010011000 1.8075 5 -010011000 1.8424 5 -010011000 1.8480 5 -010011000 7.925 5 -010011000 11.69 5 -010011000 13.0 5 -010011000 16.66 5 -010011000 1.8134 5 -010011000 1.8353 5 -010011000 1.7940 5 -010011000 1.6972 5 -010011000 1.6670 5 -010011000 1.6698 5 -010011000 24.0 5 -010011000 373.50 5 -010011000 50.0 5 -010011000 1.8130 5 -010011000 17.29 5 -010011000 1.8333 5 -010011000 1.6783 5 -010011000 7.00 5 -010011000 26.0 5 -010011000 12.05 5 -010011000 1.7885 5 -010011000 1.8885 5 -010011000 29.99 5 -010011000 12.34 5 -010011000 143.91 5 -010011000 7.575 5 -010011000 1.7718 5 -010011000 1.6630 5 -010011000 1.9625 5 -010011000 1.6925 5 -010011000 1.9055 5 -010011000 308.2 5 -010011000 6.775 5 -010011000 1.6938 6 -010011000 1.8175 6 -010011000 7.825 6 -010011000 1.8615 6 -010011000 150.44 6 -010011000 1.6640 6 -010011000 12.0 6 -010011000 7.975 6 -010011000 1.8245 6 -010011000 1.8350 6 -010011000 1.8970 6 -010011000 1.8180 6 -010011000 328.5 6 -010011000 1.8063 6 -010011000 1.6390 6 -010011000 142.03 6 -010011000 1.8195 6 -010011000 1.8310 6 -010011000 11.59 6 -010011000 18.03 6 -010011000 101.25 6 -010011000 1.5880 6 -010011000 1.8605 6 -010011000 7.525 6 -010011000 1.6775 6 -010011000 1.6313 6 -010011000 1.7675 6 -010011000 1.7920 6 -010011000 7.725 6 -010011000 -6 6 -010011000 1.8450 6 -010011000 1.6827 6 -010011000 21.0 6 -010011000 7.475 6 -010011000 1.6795 6 -010011000 1.6710 6 -010011000 1.8170 6 -010011000 16.33 6 -010011000 14.91 6 -010011000 15.19 7 -010011000 1.7095 7 -010011000 1.8085 7 -010011000 1.8600 7 -010011000 1.6650 7 -010011000 15.0 7 -010011000 1.8179 7 -010011000 1.6200 7 -010011000 16.18 7 -010011000 1.9210 7 -010011000 1.8088 7 -010011000 1.7815 7 -010011000 21.68 7 -010011000 1.6768 7 -010011000 7.775 7 -010011000 8.025 7 -010011000 1.8718 7 -010011000 1.6915 7 -010011000 1.8675 7 -010011000 8.175 7 -010011000 1.7020 7 -010011000 1.8155 7 -010011000 8.825 7 -010011000 1.8110 7 -010011000 17.82 7 -010011000 1.7783 7 -010011000 1.8650 7 -010011000 1.8625 7 -010011000 11.57 7 -010011000 1.8105 7 -010011000 1.8305 7 -010011000 13.85 7 -010011000 1.8225 7 -010011000 13.04 7 -010011000 1.8150 7 -010011000 10.72 8 -010011000 1.7938 8 -010011000 1.8535 8 -010011000 24.03 8 -010011000 1.6950 8 -010011000 1.8649 8 -010011000 1.6625 8 -010011000 1.8100 8 -010011000 1.8415 8 -010011000 6.00 8 -010011000 14.35 8 -010011000 18.0 8 -010011000 10.79 8 -010011000 13.68 8 -010011000 1.6695 8 -010011000 1.6325 8 -010011000 1.8103 8 -010011000 1.6335 8 -010011000 1.8273 8 -010011000 13.08 9 -010011000 1.6605 9 -010011000 7.325 9 -010011000 754 9 -010011000 11.76 9 -010011000 1.8205 9 -010011000 259.5 9 -010011000 1.8328 9 -010011000 10.86 9 -010011000 1.8275 9 -010011000 10.63 9 -010011000 1.8580 9 -010011000 1.6765 9 -010011000 50.97 9 -010011000 1.7775 9 -010011000 1.7495 9 -010011000 8.775 9 -010011000 8.225 9 -010011000 1.6745 9 -010011000 10.0 10 -010011000 10.61 10 -010011000 1.6825 10 -010011000 8.675 10 -010011000 3:45 10 -010011000 10.81 10 -010011000 354.5 10 -010011000 33.33 10 -010011000 7.425 10 -010011000 8.275 10 -010011000 1.8153 10 -010011000 11.22 10 -010011000 1.8825 11 -010011000 10.52 11 -010011000 Date- 11 -010011000 1.8183 11 -010011000 12.85 11 -010011000 1.6750 11 -010011000 8.725 11 -010011000 10.64 11 -010011000 1.8278 11 -010011000 8.750 11 -010011000 8.075 12 -010011000 10.12 12 -010011000 11.02 12 -010011000 11.53 12 -010011000 11.08 12 -010011000 9.48 12 -010011000 100.0 12 -010011000 10.47 12 -010011000 9.74 12 -010011000 9.58 12 -010011000 20.04 13 -010011000 9.87 13 -010011000 9.49 13 -010011000 11.05 13 -010011000 9.62 13 -010011000 9.71 13 -010011000 9.96 13 -010011000 10.97 13 -010011000 10.07 13 -010011000 10.29 14 -010011000 10.58 14 -010011000 7.0 14 -010011000 9.61 14 -010011000 9.67 14 -010011000 10.26 15 -010011000 10.17 15 -010011000 9.19 15 -010011000 676 16 -010011000 10.55 16 -010011000 10.22 16 -010011000 10.36 16 -010011000 9.84 17 -010011000 10.21 17 -010011000 10.42 17 -010011000 10.44 17 -010011000 9.66 17 -010011000 9.41 17 -010011000 9.73 17 -010011000 10.43 18 -010011000 1.8300 18 -010011000 10.70 18 -010011000 9.82 18 -010011000 9.91 18 -010011000 10.08 18 -010011000 10.73 19 -010011000 8.0 19 -010011000 9.69 19 -010011000 10.18 19 -010011000 9.57 19 -010011000 5.94 19 -010011000 10.31 19 -010011000 9.36 19 -010011000 10.09 20 -010011000 9.68 20 -010011000 10.33 20 -010011000 10.14 20 -010011000 9.59 20 -010011000 8.46 20 -010011000 9.93 20 -010011000 8.00 20 -010011000 9.44 21 -010011000 10.34 21 -010011000 9.37 21 -010011000 9.43 21 -010011000 6.49 21 -010011000 9.52 22 -010011000 9.38 22 -010011000 9.23 22 -010011000 10.48 23 -010011000 9.63 23 -010011000 7.96 23 -010011000 6.29 23 -010011000 6.48 23 -010011000 10.27 23 -010011000 9.72 23 -010011000 9.92 24 -010011000 8.56 24 -010011000 10.16 24 -010011000 8.61 24 -010011000 9.03 24 -010011000 9.88 25 -010011000 10.05 25 -010011000 9.27 25 -010011000 10.38 25 -010011000 9.16 25 -010011000 10.37 25 -010011000 9.98 25 -010011000 10.04 25 -010011000 8.88 25 -010011000 10.23 26 -010011000 10.03 26 -010011000 9.21 26 -010011000 6.92 26 -010011000 10.32 26 -010011000 6.26 26 -010011000 7.03 26 -010011000 9.81 26 -010011000 10.06 26 -010011000 9.24 26 -010011000 10.28 26 -010011000 6.09 26 -010011000 9.22 27 -010011000 9.97 27 -010011000 10.11 27 -010011000 6.33 27 -010011000 8.39 27 -010011000 6.11 27 -010011000 9.54 27 -010011000 5.56 28 -010011000 10.10 28 -010011000 5.66 28 -010011000 7.01 28 -010011000 7.62 28 -010011000 8.41 28 -010011000 8.59 28 -010011000 10.24 28 -010011000 9.08 28 -010011000 9.85 29 -010011000 10.30 29 -010011000 5.78 29 -010011000 6.66 29 -010011000 9.07 29 -010011000 6.86 29 -010011000 6.61 29 -010011000 5.97 30 -010011000 6.12 30 -010011000 9.39 30 -010011000 6.27 30 -010011000 5.44 30 -010011000 9.18 30 -010011000 6.22 30 -010011000 9.83 31 -010011000 5.61 31 -010011000 5.53 31 -010011000 6.23 31 -010011000 9.34 31 -010011000 9.17 31 -010011000 9.47 31 -010011000 7.87 31 -010011000 6.07 31 -010011000 6.31 32 -010011000 7.12 32 -010011000 7.67 32 -010011000 7.91 32 -010011000 7.61 32 -010011000 6.88 32 -010011000 6.14 32 -010011000 8.67 32 -010011000 9.80 33 -010011000 8.04 33 -010011000 8.99 33 -010011000 8.94 33 -010011000 9.02 33 -010011000 9.70 33 -010011000 7.78 33 -010011000 6.41 33 -010011000 9.42 33 -010011000 10.13 33 -010011000 9.46 33 -010011000 6.96 33 -010011000 5.98 33 -010011000 8.86 33 -010011000 7.16 34 -010011000 9.14 34 -010011000 6.32 34 -010011000 6.89 34 -010011000 7.74 34 -010011000 10.19 34 -010011000 6.34 34 -010011000 9.30 34 -010011000 6.69 34 -010011000 8.34 35 -010011000 8.84 35 -010011000 5.77 35 -010011000 8.24 35 -010011000 7.29 35 -010011000 5.99 35 -010011000 6.03 36 -010011000 8.96 36 -010011000 9.33 36 -010011000 7.66 36 -010011000 8.54 36 -010011000 6.91 36 -010011000 6.74 36 -010011000 6.54 36 -010011000 6.16 36 -010011000 6.53 36 -010011000 9.28 36 -010011000 7.11 37 -010011000 6.51 37 -010011000 7.08 37 -010011000 6.52 37 -010011000 7.42 37 -010011000 9.04 37 -010011000 6.37 37 -010011000 8.64 37 -010011000 5.34 37 -010011000 9.55 37 -010011000 7.69 37 -010011000 5.79 37 -010011000 5.93 37 -010011000 7.81 38 -010011000 7.02 38 -010011000 5.58 38 -010011000 8.58 38 -010011000 8.51 38 -010011000 10.15 38 -010011000 7.07 38 -010011000 8.83 38 -010011000 6.85 38 -010011000 5.48 38 -010011000 6.94 38 -010011000 5.88 38 -010011000 7.68 38 -010011000 9.06 39 -010011000 7.27 39 -010011000 9.90 39 -010011000 7.04 39 -010011000 6.62 39 -010011000 7.41 39 -010011000 6.01 39 -010011000 9.11 39 -010011000 5.57 39 -010011000 8.73 39 -010011000 8.71 39 -010011000 9.13 39 -010011000 6.73 39 -010011000 8.66 39 -010011000 6.87 40 -010011000 7.56 40 -010011000 6.13 40 -010011000 8.74 40 -010011000 7.19 40 -010011000 5.83 40 -010011000 5.74 40 -010011000 7.57 40 -010011000 5.89 40 -010011000 7.76 40 -010011000 5.82 40 -010011000 6.97 40 -010011000 7.86 40 -010011000 7.77 40 -010011000 5.86 41 -010011000 8.89 41 -010011000 8.06 41 -010011000 6.78 41 -010011000 8.63 41 -010011000 6.81 41 -010011000 8.37 41 -010011000 5.87 41 -010011000 7.63 41 -010011000 7.38 42 -010011000 6.39 42 -010011000 6.68 42 -010011000 6.84 42 -010011000 8.11 42 -010011000 6.35 42 -010011000 8.57 42 -010011000 6.76 42 -010011000 7.36 42 -010011000 6.59 42 -010011000 7.21 42 -010011000 8.21 42 -010011000 7.97 42 -010011000 9.15 42 -010011000 9.60 42 -010011000 6.93 43 -010011000 7.89 43 -010011000 7.71 43 -010011000 8.49 43 -010011000 8.69 43 -010011000 6.56 43 -010011000 6.17 43 -010011000 8.81 43 -010011000 8.48 43 -010011000 7.58 43 -010011000 6.05 43 -010011000 9.35 43 -010011000 9.65 43 -010011000 9.20 43 -010011000 8.14 43 -010011000 6.20 43 -010011000 8.44 43 -010011000 7.14 43 -010011000 8.91 44 -010011000 8.98 44 -010011000 8.77 44 -010011000 7.26 44 -010011000 6.43 44 -010011000 6.98 44 -010011000 9.40 45 -010011000 6.77 45 -010011000 5.65 45 -010011000 6.44 45 -010011000 7.51 45 -010011000 8.19 45 -010011000 5.81 45 -010011000 6.99 45 -010011000 6.65 46 -010011000 6.58 46 -010011000 7.22 46 -010011000 7.59 46 -010011000 8.68 46 -010011000 7.52 46 -010011000 5.72 46 -010011000 6.64 46 -010011000 7.44 47 -010011000 6.90 47 -010011000 8.79 47 -010011000 6.28 47 -010011000 7.39 47 -010011000 7.13 47 -010011000 6.46 47 -010011000 7.18 47 -010011000 8.76 47 -010011000 8.36 48 -010011000 7.98 48 -010011000 6.57 48 -010011000 6.04 48 -010011000 7.93 48 -010011000 9.01 48 -010011000 8.92 48 -010011000 7.82 49 -010011000 7.84 49 -010011000 7.88 49 -010011000 7.06 49 -010011000 5.64 49 -010011000 8.01 49 -010011000 6.83 49 -010011000 7.49 50 -010011000 9.09 50 -010011000 7.46 50 -010011000 6.71 50 -010011000 7.64 50 -010011000 8.93 50 -010011000 8.97 51 -010011000 7.33 51 -010011000 8.29 51 -010011000 9.45 51 -010011000 6.06 51 -010011000 5.51 51 -010011000 6.82 51 -010011000 8.22 51 -010011000 8.82 51 -010011000 8.47 52 -010011000 7.83 52 -010011000 6.42 52 -010011000 7.34 52 -010011000 7.99 52 -010011000 8.72 52 -010011000 9.05 52 -010011000 8.43 53 -010011000 8.33 53 -010011000 5.62 53 -010011000 8.78 54 -010011000 8.62 54 -010011000 8.52 55 -010011000 7.43 55 -010011000 7.17 55 -010011000 8.23 55 -010011000 6.67 55 -010011000 8.53 56 -010011000 8.87 56 -010011000 8.26 56 -010011000 8.31 57 -010011000 7.92 57 -010011000 7.79 57 -010011000 6.72 57 -010011000 7.09 57 -010011000 8.18 57 -010011000 7.72 58 -010011000 6.70 58 -010011000 7.73 59 -010011000 6.55 59 -010011000 5.59 60 -010011000 7.23 61 -010011000 8.38 61 -010011000 7.37 61 -010011000 8.02 62 -010011000 8.27 62 -010011000 7.47 62 -010011000 8.09 63 -010011000 8.16 63 -010011000 5.85 63 -010011000 5.80 63 -010011000 7.28 64 -010011000 8.42 68 -010011000 7.94 69 -010011000 8.17 69 -010011000 8.28 69 -010011000 7.48 69 -010011000 8.32 70 -010011000 7:30 70 -010011000 8.08 73 -010011000 7.60 73 -010011000 8.07 74 -010011000 7.54 75 -010011000 6.95 75 -010011000 7.30 75 -010011000 7.70 76 -010011000 9.10 76 -010011000 7.32 76 -010011000 8.12 76 -010011000 7.05 77 -010011000 8.60 80 -010011000 8.03 80 -010011000 8.90 81 -010011000 8.13 84 -010011000 7.15 84 -010011000 8.375 85 -010011000 8.65 87 -010011000 7.10 89 -010011000 7.125 92 -010011000 8.55 93 -010011000 8.40 99 -010011000 7.65 100 -010011000 7.90 102 -010011000 7.45 102 -010011000 8.95 103 -010011000 0 103 -010011000 7.625 106 -010011000 7.85 106 -010011000 7.875 106 -010011000 8.35 109 -010011000 8.625 109 -010011000 7.35 109 -010011000 7.40 110 -010011000 7.95 110 -010011000 7.375 113 -010011000 8.45 114 -010011000 8.80 120 -010011000 7.55 121 -010011000 8.85 122 -010011000 8.70 124 -010011000 7.80 125 -010011000 8.30 128 -010011000 4.875 137 -010011000 8.05 146 -010011000 8.20 157 -010011000 7.20 162 -010011000 8.125 183 -010011000 8.10 188 -010011000 8.15 229 -010011000 3.375 245 -010011000 7.25 289 -010011000 7.75 300 -010011000 8.25 376 -010011000 8.75 390 -010011000 7.50 442 -010011000 12:01 444 -010011000 8.50 491 -010011000 101 817 -010011000 8 9963 -010011000 6 7028 -010011000 9 6611 -010011000 7 7222 -0100110010 32-to- 1 -0100110010 9.359 1 -0100110010 2120 1 -0100110010 6,000- 1 -0100110010 4,000- 1 -0100110010 3S/400 1 -0100110010 12,000- 1 -0100110010 75- 1 -0100110010 42,195 1 -0100110010 57.65 1 -0100110010 420.81 1 -0100110010 214.07 1 -0100110010 1176 1 -0100110010 15.36-a-share 1 -0100110010 3836.46 1 -0100110010 158.19 1 -0100110010 268.87 1 -0100110010 182.711 1 -0100110010 17-to- 1 -0100110010 8.668 1 -0100110010 297-77 1 -0100110010 21,840 1 -0100110010 5.75-to- 1 -0100110010 77,250-a-year 1 -0100110010 4.50-to- 1 -0100110010 Verboten 1 -0100110010 6,197 1 -0100110010 traffic-surveillance 1 -0100110010 45-to- 1 -0100110010 1.6750- 1 -0100110010 6-feet-1 1 -0100110010 150- 1 -0100110010 1.80-to- 1 -0100110010 1,200- 1 -0100110010 380- 1 -0100110010 19,000-a-year 1 -0100110010 11,749 1 -0100110010 450-to- 1 -0100110010 671-a-ton 1 -0100110010 9222 1 -0100110010 13s 1 -0100110010 190-1 1 -0100110010 4.25-to- 1 -0100110010 --the 1 -0100110010 25,000-to- 1 -0100110010 15-per-store 1 -0100110010 105- 1 -0100110010 3,000- 1 -0100110010 103-6020-748 1 -0100110010 8,449 1 -0100110010 80,800 1 -0100110010 60-to- 1 -0100110010 30-million 1 -0100110010 16-28 1 -0100110010 1309.43 1 -0100110010 700.9 1 -0100110010 71,000-a-year 1 -0100110010 5,000-to- 1 -0100110010 462,450 1 -0100110010 200,000. 1 -0100110010 22,290 1 -0100110010 4,638,383 1 -0100110010 stems. 1 -0100110010 717.5 1 -0100110010 3.4006 1 -0100110010 3.3259 1 -0100110010 2.7243 1 -0100110010 2.6671 1 -0100110010 mathematization 1 -0100110010 1.10-to- 1 -0100110010 105,412 1 -0100110010 70-to- 1 -0100110010 42-a-square-foot 1 -0100110010 467.87 1 -0100110010 22,835 1 -0100110010 37,737 1 -0100110010 30,000-to- 1 -0100110010 87-32 1 -0100110010 622.40 1 -0100110010 Slips 1 -0100110010 53.20 1 -0100110010 Bankrupt 1 -0100110010 200,000- 1 -0100110010 5-million-to- 1 -0100110010 4,158 1 -0100110010 1,500- 1 -0100110010 30-billion-to- 1 -0100110010 2.7812 1 -0100110010 715.6 1 -0100110010 3.4615 1 -0100110010 300,000- 1 -0100110010 2085 1 -0100110010 1.026 1 -0100110010 2- 1 -0100110010 110-to- 1 -0100110010 350-to- 1 -0100110010 8,000- 1 -0100110010 16.70-to- 1 -0100110010 36.25-to- 1 -0100110010 3.40-to- 1 -0100110010 41.22 1 -0100110010 397,500 1 -0100110010 20-million-to- 1 -0100110010 5048 1 -0100110010 33-per-share 1 -0100110010 224,860 1 -0100110010 275-to- 1 -0100110010 325-to- 1 -0100110010 300-to- 1 -0100110010 900,000-to- 1 -0100110010 180-and-up 1 -0100110010 12,459 1 -0100110010 30-billion-a-year 1 -0100110010 3.55- 1 -0100110010 37.96 1 -0100110010 2-million-to- 1 -0100110010 1334 1 -0100110010 43,268 1 -0100110010 5.4-million 1 -0100110010 unhelpfully 1 -0100110010 42.55 1 -0100110010 50,000- 1 -0100110010 30,000- 1 -0100110010 100,000- 1 -0100110010 75,000- 1 -0100110010 30,949 1 -0100110010 10,000- 1 -0100110010 20,000- 1 -0100110010 500-to- 1 -0100110010 10-million-a-year 1 -0100110010 9300 1 -0100110010 450- 1 -0100110010 68.0 1 -0100110010 82-to- 1 -0100110010 460- 1 -0100110010 1,494,120-Olson 1 -0100110010 224,860.75 1 -0100110010 1.239 1 -0100110010 037432 1 -0100110010 102,042 1 -0100110010 40- 1 -0100110010 360- 1 -0100110010 12,000-to- 1 -0100110010 ounce. 1 -0100110010 10,819 1 -0100110010 187,187 1 -0100110010 362,793 1 -0100110010 2428 1 -0100110010 34.125-lower 1 -0100110010 250-to- 1 -0100110010 1-to 1 -0100110010 2-a-word 1 -0100110010 600- 1 -0100110010 37.24 1 -0100110010 23.29 1 -0100110010 14289 1 -0100110010 5-ranked 1 -0100110010 reggae-and-rock 1 -0100110010 17,000- 1 -0100110010 513.09 1 -0100110010 1- 1 -0100110010 2,477 1 -0100110010 23-36 1 -0100110010 22,000- 1 -0100110010 P350 1 -0100110010 3,000-to- 1 -0100110010 15-22 1 -0100110010 strenth 1 -0100110010 541,471 1 -0100110010 1,479,440,000 1 -0100110010 1,210,695,000 1 -0100110010 6,605,425,000 1 -0100110010 23,082,435,000 1 -0100110010 2.3-billion 1 -0100110010 27,913,280,000 1 -0100110010 6,403,295,000 1 -0100110010 888,440 1 -0100110010 60,000to- 1 -0100110010 150,000- 1 -0100110010 900,000- 1 -0100110010 1.22- 1 -0100110010 131,600 1 -0100110010 11,413 1 -0100110010 1.50-to- 1 -0100110010 taff 1 -0100110010 worktime 1 -0100110010 1,161,290,000 1 -0100110010 7,202,095,000 1 -0100110010 21,693,695,000 1 -0100110010 190-a-game 1 -0100110010 .62 1 -0100110010 112s 1 -0100110010 1.50- 1 -0100110010 2.10- 1 -0100110010 60,236 1 -0100110010 55SX 2 -0100110010 741.6 2 -0100110010 XIX 2 -0100110010 728.2 2 -0100110010 21- 2 -0100110010 5. 2 -0100110010 351.26 2 -0100110010 717.1 2 -0100110010 4-to- 2 -0100110010 95.43 2 -0100110010 29.38 2 -0100110010 990,003 2 -0100110010 3271 2 -0100110010 40,000- 2 -0100110010 1.40- 2 -0100110010 36.54 2 -0100110010 22.86 2 -0100110010 35,250 2 -0100110010 6-10 2 -0100110010 65- 2 -0100110010 545.2 2 -0100110010 18-to- 2 -0100110010 IMMEDIATELY 2 -0100110010 9.50- 2 -0100110010 20-29 2 -0100110010 30,980 2 -0100110010 687,187 2 -0100110010 13-to- 2 -0100110010 400- 2 -0100110010 20-to- 2 -0100110010 321.4 2 -0100110010 24.12 2 -0100110010 5,000- 2 -0100110010 46- 2 -0100110010 1.8445 2 -0100110010 514.3 2 -0100110010 80.43 2 -0100110010 94.88 2 -0100110010 400-to- 2 -0100110010 30-286 2 -0100110010 360018 2 -0100110010 9- 2 -0100110010 10-to- 2 -0100110010 7. 2 -0100110010 21.52 2 -0100110010 116.75 3 -0100110010 731.1 3 -0100110010 SHARPLY 3 -0100110010 24.78 3 -0100110010 20.61 3 -0100110010 600S 3 -0100110010 3. 3 -0100110010 13.71 3 -0100110010 21.74 4 -0100110010 23.15 4 -0100110010 62.75 4 -0100110010 65.25 4 -0100110010 116.25 4 -0100110010 5-9 5 -0100110010 2. 5 -0100110010 5.00 6 -0100110010 6. 6 -0100110010 8s 7 -0100110010 1 24132 -0100110010 1.0 44 -0100110011 39.52 1 -0100110011 103.33 1 -0100110011 75.56 1 -0100110011 218.41 1 -0100110011 90.97 1 -0100110011 119.47 1 -0100110011 261.39 1 -0100110011 2.376 1 -0100110011 94.37 1 -0100110011 92.84 1 -0100110011 78.86 1 -0100110011 32.94 1 -0100110011 22.28 1 -0100110011 3.777 1 -0100110011 3.841 1 -0100110011 3.016 1 -0100110011 381.82 1 -0100110011 109.27 1 -0100110011 109.57 1 -0100110011 20.54 1 -0100110011 89.79 1 -0100110011 476.90 1 -0100110011 838.57 1 -0100110011 72,500-a-year 1 -0100110011 381,700 1 -0100110011 4.521 1 -0100110011 3.833 1 -0100110011 39.56 1 -0100110011 41.52 1 -0100110011 42.03 1 -0100110011 178.50 1 -0100110011 660.37 1 -0100110011 673.37 1 -0100110011 494.56 1 -0100110011 85.64 1 -0100110011 83.46 1 -0100110011 39.40 1 -0100110011 18,985.16 1 -0100110011 2.040 1 -0100110011 3.211 1 -0100110011 420.24 1 -0100110011 15.899 1 -0100110011 18.474 1 -0100110011 488.38 1 -0100110011 755.8 1 -0100110011 756.1 1 -0100110011 56.66 1 -0100110011 410.79 1 -0100110011 400.19 1 -0100110011 130.79 1 -0100110011 203.30 1 -0100110011 2.262 1 -0100110011 71.79 1 -0100110011 228.65 1 -0100110011 46.53 1 -0100110011 24.06 1 -0100110011 150.31 1 -0100110011 678.44 1 -0100110011 682.42 1 -0100110011 463.80 1 -0100110011 467.28 1 -0100110011 480.89 1 -0100110011 539.63 1 -0100110011 1.096 1 -0100110011 526.09 1 -0100110011 33,899 1 -0100110011 18.403 1 -0100110011 58.67 1 -0100110011 2.573 1 -0100110011 76.14 1 -0100110011 473.25 1 -0100110011 34.76 1 -0100110011 618.41 1 -0100110011 12:43 1 -0100110011 341,100 1 -0100110011 465.40 1 -0100110011 74.37 1 -0100110011 109.42 1 -0100110011 79.12 1 -0100110011 262.91 1 -0100110011 18.46 1 -0100110011 202.20 1 -0100110011 2215 1 -0100110011 40,440 1 -0100110011 558.90 1 -0100110011 293,398 1 -0100110011 447.85 1 -0100110011 446.95 1 -0100110011 78.10 1 -0100110011 25.525 1 -0100110011 375.71 1 -0100110011 749.6 1 -0100110011 69.27 1 -0100110011 6:38 1 -0100110011 386.66 1 -0100110011 29.32 1 -0100110011 333.01 1 -0100110011 472.79 1 -0100110011 390.06 1 -0100110011 67.15 1 -0100110011 593.86 1 -0100110011 90,800 1 -0100110011 509.06 1 -0100110011 375.89 1 -0100110011 380.15 1 -0100110011 320.79 1 -0100110011 321.54 1 -0100110011 195.96 1 -0100110011 196.39 1 -0100110011 200.62 1 -0100110011 200.65 1 -0100110011 1.0017 1 -0100110011 754,100 1 -0100110011 448.00 1 -0100110011 39.69 1 -0100110011 443.15 1 -0100110011 40.36 1 -0100110011 52.70 1 -0100110011 377.90 1 -0100110011 2.335 1 -0100110011 27.185 1 -0100110011 40,450 1 -0100110011 306.96 1 -0100110011 31.52 1 -0100110011 221.68 1 -0100110011 42.46 1 -0100110011 1.360 1 -0100110011 949.37 1 -0100110011 1.061 1 -0100110011 1.068 1 -0100110011 1.331 1 -0100110011 441.95 1 -0100110011 .875 1 -0100110011 790.38 1 -0100110011 362.99 1 -0100110011 367.17 1 -0100110011 102.71 1 -0100110011 106.85 1 -0100110011 25.34 1 -0100110011 229.75 1 -0100110011 259.89 1 -0100110011 184.62 1 -0100110011 209.33 1 -0100110011 2,842 1 -0100110011 19.925 1 -0100110011 62.72 1 -0100110011 187.74 1 -0100110011 36.24 1 -0100110011 164.875 1 -0100110011 690,464 1 -0100110011 12.597 1 -0100110011 445.95 1 -0100110011 35.03 1 -0100110011 40.63 1 -0100110011 4.8725 1 -0100110011 373.43 1 -0100110011 393.31 1 -0100110011 663,950 1 -0100110011 502.49 1 -0100110011 500.67 1 -0100110011 5:30-6:30 1 -0100110011 597.49 1 -0100110011 59.49 1 -0100110011 83.73 1 -0100110011 18,838 1 -0100110011 51.8506 1 -0100110011 441.25 1 -0100110011 612.55 1 -0100110011 61.53 1 -0100110011 11:14 1 -0100110011 46.45 1 -0100110011 52.89 1 -0100110011 10,432.75 1 -0100110011 3.758 1 -0100110011 3.784 1 -0100110011 3.026 1 -0100110011 3.010 1 -0100110011 551.80 1 -0100110011 7.405 1 -0100110011 475.45 1 -0100110011 194.96 1 -0100110011 89.24 1 -0100110011 115.55 1 -0100110011 42.62 1 -0100110011 1,423.88 1 -0100110011 473.60 1 -0100110011 475.85 1 -0100110011 436.50 1 -0100110011 38.61 1 -0100110011 465.52 1 -0100110011 466.30 1 -0100110011 1.7230 1 -0100110011 430,257 1 -0100110011 2.314 1 -0100110011 28.14 1 -0100110011 70.47 1 -0100110011 108.20 1 -0100110011 79.34 1 -0100110011 258.01 1 -0100110011 38.64 1 -0100110011 35.469 1 -0100110011 749.5 1 -0100110011 476.45 1 -0100110011 36.87 1 -0100110011 28.03 1 -0100110011 106.62 1 -0100110011 380.91 1 -0100110011 104.11 1 -0100110011 107.26 1 -0100110011 21,270 1 -0100110011 190.15 1 -0100110011 195.39 1 -0100110011 990.23 1 -0100110011 769.09 1 -0100110011 854.14 1 -0100110011 78.01 1 -0100110011 20.08 1 -0100110011 598.90 1 -0100110011 12:10 1 -0100110011 74.27 1 -0100110011 8:59 1 -0100110011 475.75 1 -0100110011 39.81 1 -0100110011 2:53 1 -0100110011 22.435 1 -0100110011 475.10 1 -0100110011 671.72 1 -0100110011 677.74 1 -0100110011 678.82 1 -0100110011 69.36 1 -0100110011 78.14 1 -0100110011 503.72 1 -0100110011 470.05 1 -0100110011 161.53 1 -0100110011 26.64 1 -0100110011 404.88 1 -0100110011 1376.86 1 -0100110011 543.54 1 -0100110011 468.75 1 -0100110011 122.02 1 -0100110011 31.14 1 -0100110011 32.78 1 -0100110011 56.62 1 -0100110011 29.17 1 -0100110011 34.10 1 -0100110011 32.22 1 -0100110011 59.67 1 -0100110011 462.75 1 -0100110011 19,555 1 -0100110011 202.70 1 -0100110011 379,300 1 -0100110011 462.15 1 -0100110011 341,783 1 -0100110011 1.041 1 -0100110011 2,162 1 -0100110011 464.70 1 -0100110011 604.80 1 -0100110011 503.30 1 -0100110011 5.5475 1 -0100110011 34.40 1 -0100110011 4.981 1 -0100110011 4.986 1 -0100110011 395.58 1 -0100110011 326.46 1 -0100110011 200.64 1 -0100110011 204.77 1 -0100110011 203.39 1 -0100110011 73.05 1 -0100110011 394.64 1 -0100110011 3:18 1 -0100110011 3:17 1 -0100110011 594.59 1 -0100110011 1,736.42 1 -0100110011 11.123 1 -0100110011 2.8225 1 -0100110011 51.41 1 -0100110011 26.43 1 -0100110011 23.43 1 -0100110011 731.15 1 -0100110011 468.65 1 -0100110011 469.75 1 -0100110011 52.69 1 -0100110011 25.84 1 -0100110011 161,444 1 -0100110011 4.160 1 -0100110011 1.170 1 -0100110011 459.20 1 -0100110011 430.88 1 -0100110011 108.11 1 -0100110011 258.07 1 -0100110011 260.52 1 -0100110011 408.3 1 -0100110011 604.69 1 -0100110011 2:40 1 -0100110011 165.37 1 -0100110011 41.15 1 -0100110011 466.20 1 -0100110011 465.25 1 -0100110011 6:30-8 1 -0100110011 113.57 1 -0100110011 455.65 1 -0100110011 3.087 1 -0100110011 9:03 1 -0100110011 8:34 1 -0100110011 24.10 1 -0100110011 136.79 1 -0100110011 6,097 1 -0100110011 672.86 1 -0100110011 301.2 1 -0100110011 66.85 1 -0100110011 68.31 1 -0100110011 241.99 1 -0100110011 39,492 1 -0100110011 424.45 1 -0100110011 417.638 1 -0100110011 277.26 1 -0100110011 190.34 1 -0100110011 1,921.61 1 -0100110011 68.77 1 -0100110011 126.62 1 -0100110011 620.80 1 -0100110011 32. 1 -0100110011 459.65 1 -0100110011 34.54 1 -0100110011 630.85 1 -0100110011 385.56 1 -0100110011 36.82 1 -0100110011 81.73 1 -0100110011 82.375 1 -0100110011 33.91 1 -0100110011 16,811 1 -0100110011 585.31 1 -0100110011 459.05 1 -0100110011 105.93 1 -0100110011 81.36 1 -0100110011 142.72 1 -0100110011 40.54 1 -0100110011 20.624 1 -0100110011 359.64 1 -0100110011 468.45 1 -0100110011 748.1 1 -0100110011 196.12 1 -0100110011 3,764 1 -0100110011 1,936.41 1 -0100110011 197.62 1 -0100110011 1892.4 1 -0100110011 6.3125 1 -0100110011 40.072 1 -0100110011 465.45 1 -0100110011 46.682 1 -0100110011 177.42 1 -0100110011 2,277.60 1 -0100110011 6.305 1 -0100110011 255.19 1 -0100110011 102.54 1 -0100110011 69.79 1 -0100110011 244.79 1 -0100110011 44.32 1 -0100110011 156.56 1 -0100110011 316.87 1 -0100110011 456.45 1 -0100110011 4,380 1 -0100110011 617.91 1 -0100110011 36.70 1 -0100110011 103.70 1 -0100110011 1.1995 1 -0100110011 496.20 1 -0100110011 4:31 1 -0100110011 214.70 1 -0100110011 2,182.85 1 -0100110011 1.1775 1 -0100110011 488.95 1 -0100110011 353.8 1 -0100110011 1.561 1 -0100110011 192.38 1 -0100110011 519.20 1 -0100110011 5.8425 1 -0100110011 164.98 1 -0100110011 183.95 1 -0100110011 141.71 1 -0100110011 86.49 1 -0100110011 162.61 1 -0100110011 823.61 1 -0100110011 843.23 1 -0100110011 634.56 1 -0100110011 189.05 1 -0100110011 13.124 1 -0100110011 4.448 1 -0100110011 3.794 1 -0100110011 905.80 1 -0100110011 628.87 1 -0100110011 454.75 1 -0100110011 41,667 1 -0100110011 500,004 1 -0100110011 372.24 1 -0100110011 104.40 1 -0100110011 102.86 1 -0100110011 109.13 1 -0100110011 17,625 1 -0100110011 105.87 1 -0100110011 50.30 1 -0100110011 430.64 1 -0100110011 34.86 1 -0100110011 232.35 1 -0100110011 422.56 1 -0100110011 743,061 1 -0100110011 460.02 1 -0100110011 4,026 1 -0100110011 27.00 1 -0100110011 938.49 1 -0100110011 2.968 1 -0100110011 2.993 1 -0100110011 3.723 1 -0100110011 3.738 1 -0100110011 43.52 1 -0100110011 753.2 1 -0100110011 104.90 1 -0100110011 67.41 1 -0100110011 238.55 1 -0100110011 3.5701 1 -0100110011 2.8428 1 -0100110011 924.81 1 -0100110011 62.17 1 -0100110011 758,800 1 -0100110011 444.36 1 -0100110011 445.22 1 -0100110011 665.88 1 -0100110011 670.37 1 -0100110011 26.91 1 -0100110011 455.30 1 -0100110011 453.35 1 -0100110011 35.94 1 -0100110011 55,647-a-year 1 -0100110011 1,099.97 1 -0100110011 10.1875 1 -0100110011 389.40 1 -0100110011 206.66 1 -0100110011 15,052.24 1 -0100110011 1,308.90 1 -0100110011 106.28 1 -0100110011 445.45 1 -0100110011 237.61 1 -0100110011 76.64 1 -0100110011 749.8 1 -0100110011 750.1 1 -0100110011 742.4 1 -0100110011 604.90 1 -0100110011 94.875 1 -0100110011 370.08 1 -0100110011 1,032,575 1 -0100110011 24.23 1 -0100110011 445.05 1 -0100110011 89.70 1 -0100110011 580.09 1 -0100110011 399.46 1 -0100110011 28.65 1 -0100110011 26.46 1 -0100110011 662,250 1 -0100110011 912.19 1 -0100110011 913.75 1 -0100110011 611.28 1 -0100110011 41.39 1 -0100110011 447.35 1 -0100110011 1212.43 1 -0100110011 442.25 1 -0100110011 5.4375 1 -0100110011 2,909.09 1 -0100110011 2,089 1 -0100110011 169.875 1 -0100110011 13.428 1 -0100110011 2,092 1 -0100110011 11.62 1 -0100110011 202.91 1 -0100110011 447.75 1 -0100110011 110.86 1 -0100110011 116.81 1 -0100110011 380.35 1 -0100110011 384.63 1 -0100110011 321.85 1 -0100110011 321.41 1 -0100110011 196.93 1 -0100110011 200.54 1 -0100110011 201.40 1 -0100110011 204.82 1 -0100110011 805.32 1 -0100110011 818.31 1 -0100110011 348.27 1 -0100110011 43.11 1 -0100110011 67.66 1 -0100110011 68.23 1 -0100110011 240.85 1 -0100110011 462.30 1 -0100110011 1.5995 1 -0100110011 441b 1 -0100110011 743.5 1 -0100110011 159.375 1 -0100110011 478.05 1 -0100110011 56.58 1 -0100110011 74.80 1 -0100110011 402.82 1 -0100110011 467.85 1 -0100110011 6.5625 1 -0100110011 4,428 1 -0100110011 2.881 1 -0100110011 6.744 1 -0100110011 479.25 1 -0100110011 29.14 1 -0100110011 245.69 1 -0100110011 194.42 1 -0100110011 66.90 1 -0100110011 105.33 1 -0100110011 240.57 1 -0100110011 204.70 1 -0100110011 367.53 1 -0100110011 371.99 1 -0100110011 102.45 1 -0100110011 104.06 1 -0100110011 106.98 1 -0100110011 108.53 1 -0100110011 348.77 1 -0100110011 756.74 1 -0100110011 571.58 1 -0100110011 45.92 1 -0100110011 1.1. 1 -0100110011 375.62 1 -0100110011 2,451,000 1 -0100110011 445.55 1 -0100110011 950.04 1 -0100110011 11.069 1 -0100110011 166.82 1 -0100110011 119.44 1 -0100110011 782.15 1 -0100110011 743.3 1 -0100110011 2.565 1 -0100110011 156.02 1 -0100110011 41.92 1 -0100110011 280.84 1 -0100110011 79.37 1 -0100110011 1.235 1 -0100110011 1.234 1 -0100110011 1.345 1 -0100110011 5.888 1 -0100110011 2111 1 -0100110011 2.014 1 -0100110011 2.021 1 -0100110011 43.56 1 -0100110011 453.05 1 -0100110011 2.669 1 -0100110011 2.841 1 -0100110011 3.022 1 -0100110011 2.505 1 -0100110011 2.714 1 -0100110011 3.109 1 -0100110011 3.327 1 -0100110011 2.936 1 -0100110011 3.731 1 -0100110011 3.796 1 -0100110011 50.69 1 -0100110011 55.54 1 -0100110011 42.08 1 -0100110011 140.07 1 -0100110011 397.80 1 -0100110011 397.50 1 -0100110011 78.58 1 -0100110011 221.29 1 -0100110011 219.88 1 -0100110011 226.64 1 -0100110011 451.89 1 -0100110011 345.56 1 -0100110011 8.482 1 -0100110011 8.654 1 -0100110011 27.83 1 -0100110011 223.54 1 -0100110011 2.038 1 -0100110011 7.952 1 -0100110011 394.40 1 -0100110011 2.365 1 -0100110011 16.325 1 -0100110011 394.70 1 -0100110011 8,522 1 -0100110011 12,814 1 -0100110011 15.878 1 -0100110011 400.30 1 -0100110011 US1.7 1 -0100110011 145.682 1 -0100110011 26.89 1 -0100110011 249.18 1 -0100110011 398.55 1 -0100110011 397.30 1 -0100110011 594,514,000 1 -0100110011 32.55 1 -0100110011 1.2150 1 -0100110011 267.10 1 -0100110011 397.00 1 -0100110011 118.16 1 -0100110011 431.16 1 -0100110011 123.14 1 -0100110011 2,987,000 1 -0100110011 2.319 1 -0100110011 394.75 1 -0100110011 395.20 1 -0100110011 101.84 1 -0100110011 11:37 1 -0100110011 397.65 1 -0100110011 6.2650 1 -0100110011 1.1745 1 -0100110011 389,119 1 -0100110011 143.82 1 -0100110011 796.2 1 -0100110011 113.38 1 -0100110011 84.68 1 -0100110011 266.97 1 -0100110011 113.18 1 -0100110011 399.25 1 -0100110011 3.121 1 -0100110011 224.7 1 -0100110011 4:42 1 -0100110011 37.69 1 -0100110011 39.33 1 -0100110011 113.41 1 -0100110011 267.46 1 -0100110011 827,800 1 -0100110011 4.2875 1 -0100110011 58.19 1 -0100110011 36.21 1 -0100110011 38.74 1 -0100110011 119.75 1 -0100110011 1.3430 1 -0100110011 411.15 1 -0100110011 1.7505 1 -0100110011 86.66 1 -0100110011 170.32 1 -0100110011 53.40 1 -0100110011 68.08 1 -0100110011 1.8865 1 -0100110011 2:47 1 -0100110011 411.80 1 -0100110011 27.70 1 -0100110011 99.32 1 -0100110011 95.96 1 -0100110011 298.94 1 -0100110011 415.08 1 -0100110011 91.625 1 -0100110011 1.253 1 -0100110011 60.124 1 -0100110011 412.55 1 -0100110011 741.71 1 -0100110011 145.45 1 -0100110011 100.56 1 -0100110011 4.546 1 -0100110011 0.7020 1 -0100110011 149.87 1 -0100110011 408.90 1 -0100110011 403.80 1 -0100110011 8.1275 1 -0100110011 1.543 1 -0100110011 69.56 1 -0100110011 112.47 1 -0100110011 267.15 1 -0100110011 19.425 1 -0100110011 4.3275 1 -0100110011 4.335 1 -0100110011 654.78 1 -0100110011 24,548 1 -0100110011 54.61 1 -0100110011 43.16 1 -0100110011 704,500 1 -0100110011 1.2940 1 -0100110011 15,840 1 -0100110011 409.85 1 -0100110011 736.2 1 -0100110011 26.53 1 -0100110011 738.7 1 -0100110011 147.48 1 -0100110011 25.36 1 -0100110011 271.89 1 -0100110011 4.265 1 -0100110011 427.75 1 -0100110011 428.10 1 -0100110011 427.30 1 -0100110011 265.23 1 -0100110011 5,067 1 -0100110011 5:18 1 -0100110011 434.80 1 -0100110011 1.2721 1 -0100110011 44.4453 1 -0100110011 17,035 1 -0100110011 15,195 1 -0100110011 78,795 1 -0100110011 41.63 1 -0100110011 15.0625 1 -0100110011 74.65 1 -0100110011 3.135 1 -0100110011 113.22 1 -0100110011 84.98 1 -0100110011 266.93 1 -0100110011 257.40 1 -0100110011 389.67 1 -0100110011 430.95 1 -0100110011 22,190 1 -0100110011 645.64 1 -0100110011 428.35 1 -0100110011 146.09 1 -0100110011 90.61 1 -0100110011 88.91 1 -0100110011 48.45 1 -0100110011 40.95 1 -0100110011 30.70 1 -0100110011 525.80 1 -0100110011 437.70 1 -0100110011 4,170 1 -0100110011 44.20 1 -0100110011 429.75 1 -0100110011 44.35 1 -0100110011 48.61 1 -0100110011 1.204 1 -0100110011 48.71 1 -0100110011 50.09 1 -0100110011 41,500,000,000 1 -0100110011 11.642 1 -0100110011 2.427 1 -0100110011 2.452 1 -0100110011 262.37 1 -0100110011 23.19 1 -0100110011 531.02 1 -0100110011 477.12 1 -0100110011 808.6 1 -0100110011 805.56 1 -0100110011 57.31 1 -0100110011 1.0020 1 -0100110011 69.04 1 -0100110011 112.96 1 -0100110011 267.04 1 -0100110011 10,404 1 -0100110011 21,983 1 -0100110011 6,133 1 -0100110011 85.375 1 -0100110011 5:24 1 -0100110011 1.435 1 -0100110011 371.75 1 -0100110011 427.10 1 -0100110011 9:19 1 -0100110011 52,910 1 -0100110011 533.90 1 -0100110011 439.90 1 -0100110011 2,426 1 -0100110011 430.20 1 -0100110011 403.45 1 -0100110011 1.1385 1 -0100110011 6:30-10 1 -0100110011 639.56 1 -0100110011 46.86 1 -0100110011 685.84 1 -0100110011 487.71 1 -0100110011 731.48 1 -0100110011 733.69 1 -0100110011 42.84 1 -0100110011 21.54 1 -0100110011 30.84 1 -0100110011 976.47 1 -0100110011 82.01 1 -0100110011 164.71 1 -0100110011 926.44 1 -0100110011 284.35 1 -0100110011 113.36 1 -0100110011 84.82 1 -0100110011 267.24 1 -0100110011 47.78 1 -0100110011 252.80 1 -0100110011 3.614 1 -0100110011 286.05 1 -0100110011 3.257 1 -0100110011 4.079 1 -0100110011 53.77 1 -0100110011 260.70 1 -0100110011 501.82 1 -0100110011 26.07 1 -0100110011 62.34 1 -0100110011 154.94 1 -0100110011 121.12 1 -0100110011 123.28 1 -0100110011 36.94 1 -0100110011 33.34 1 -0100110011 53.24 1 -0100110011 8.935 1 -0100110011 37.09 1 -0100110011 35.4351 1 -0100110011 22.04 1 -0100110011 1.2855 1 -0100110011 153.96 1 -0100110011 1.0390 1 -0100110011 4.2675 1 -0100110011 2.995 1 -0100110011 2.945 1 -0100110011 43.45 1 -0100110011 48.63 1 -0100110011 274.18 1 -0100110011 84.92 1 -0100110011 266.58 1 -0100110011 491.18 1 -0100110011 391.77 1 -0100110011 7-to-8 1 -0100110011 24.67 1 -0100110011 16,447 1 -0100110011 19:00 1 -0100110011 418.60 1 -0100110011 18.0037 1 -0100110011 598.50 1 -0100110011 360.62 1 -0100110011 24.93 1 -0100110011 460.65 1 -0100110011 1.1278 1 -0100110011 27.67 1 -0100110011 211.73 1 -0100110011 64.30 1 -0100110011 71.90 1 -0100110011 244.34 1 -0100110011 462.55 1 -0100110011 71.69 1 -0100110011 27.85 1 -0100110011 7.166 1 -0100110011 7.954 1 -0100110011 35.62 1 -0100110011 6.646 1 -0100110011 46.42 1 -0100110011 1,823 1 -0100110011 454.15 1 -0100110011 413.19 1 -0100110011 173.91 1 -0100110011 391.89 1 -0100110011 394.46 1 -0100110011 323.33 1 -0100110011 325.11 1 -0100110011 199.96 1 -0100110011 202.53 1 -0100110011 72.14 1 -0100110011 68,292 1 -0100110011 68.031 1 -0100110011 11.5625 1 -0100110011 7:21 1 -0100110011 14.318 1 -0100110011 1.647 1 -0100110011 326.80 1 -0100110011 38.13 1 -0100110011 52.18 1 -0100110011 23.69 1 -0100110011 239.68 1 -0100110011 291.29 1 -0100110011 493.58 1 -0100110011 308.51 1 -0100110011 135.62 1 -0100110011 424.30 1 -0100110011 424.50 1 -0100110011 127.34 1 -0100110011 102.87 1 -0100110011 59.58 1 -0100110011 424.10 1 -0100110011 424.40 1 -0100110011 35.047 1 -0100110011 194,426 1 -0100110011 1.1285 1 -0100110011 461.55 1 -0100110011 96.52 1 -0100110011 34.22 1 -0100110011 65.91 1 -0100110011 380.36 1 -0100110011 103.04 1 -0100110011 103.77 1 -0100110011 109.17 1 -0100110011 105.79 1 -0100110011 43.69 1 -0100110011 699.15 1 -0100110011 361.36 1 -0100110011 528.69 1 -0100110011 271.17 1 -0100110011 691.08 1 -0100110011 908.29 1 -0100110011 925.01 1 -0100110011 84.58 1 -0100110011 163.28 1 -0100110011 495.48 1 -0100110011 495.45 1 -0100110011 749.38 1 -0100110011 206,500 1 -0100110011 461.50 1 -0100110011 114.78 1 -0100110011 74.66 1 -0100110011 461.75 1 -0100110011 566.06 1 -0100110011 37.68 1 -0100110011 44,574 1 -0100110011 38,295 1 -0100110011 67.14 1 -0100110011 461.60 1 -0100110011 6,623 1 -0100110011 38.38 1 -0100110011 70,274 1 -0100110011 128.76 1 -0100110011 472.50 1 -0100110011 357.08 1 -0100110011 23.76 1 -0100110011 37.21 1 -0100110011 164,600 1 -0100110011 70.42 1 -0100110011 577.32 1 -0100110011 458.95 1 -0100110011 462.00 1 -0100110011 28.34 1 -0100110011 4.938 1 -0100110011 338.85 1 -0100110011 362.09 1 -0100110011 169.63 1 -0100110011 191.02 1 -0100110011 360.65 1 -0100110011 202.57 1 -0100110011 64.28 1 -0100110011 107.41 1 -0100110011 243.75 1 -0100110011 46.85 1 -0100110011 105.625 1 -0100110011 597.44 1 -0100110011 1.226 1 -0100110011 228.73 1 -0100110011 3.0425 1 -0100110011 461.45 1 -0100110011 107.67 1 -0100110011 73.08 1 -0100110011 107.79 1 -0100110011 211.90 1 -0100110011 399.12 1 -0100110011 35.37 1 -0100110011 7.267 1 -0100110011 20.36 1 -0100110011 358.62 1 -0100110011 827.2 1 -0100110011 532.10 1 -0100110011 410.10 1 -0100110011 214.15 1 -0100110011 87.68 1 -0100110011 281.94 1 -0100110011 401.18 1 -0100110011 908.95 1 -0100110011 51.22 1 -0100110011 122.69 1 -0100110011 169.23 1 -0100110011 149.66 1 -0100110011 413.25 1 -0100110011 412.40 1 -0100110011 70.51 1 -0100110011 114.38 1 -0100110011 85.63 1 -0100110011 124.33 1 -0100110011 186.55 1 -0100110011 6.117 1 -0100110011 112.48 1 -0100110011 14.263 1 -0100110011 777.983 1 -0100110011 8.864 1 -0100110011 408.45 1 -0100110011 260,100 1 -0100110011 170.76 1 -0100110011 407.60 1 -0100110011 788.48 1 -0100110011 60.33 1 -0100110011 824.12 1 -0100110011 25.74 1 -0100110011 30.96 1 -0100110011 26.68 1 -0100110011 112.76 1 -0100110011 121.15 1 -0100110011 1.4445 1 -0100110011 333.75 1 -0100110011 43.95 1 -0100110011 418.24 1 -0100110011 1,190.70 1 -0100110011 146.88 1 -0100110011 170.33 1 -0100110011 191.72 1 -0100110011 82.19 1 -0100110011 237.99 1 -0100110011 1.4740 1 -0100110011 123,529 1 -0100110011 69.55 1 -0100110011 268.76 1 -0100110011 327.12 1 -0100110011 407.10 1 -0100110011 178.21 1 -0100110011 1.4180 1 -0100110011 1.246 1 -0100110011 411.10 1 -0100110011 7.8425 1 -0100110011 2.8625 1 -0100110011 15,311 1 -0100110011 191.74 1 -0100110011 96.88 1 -0100110011 14,937 1 -0100110011 496.35 1 -0100110011 407.25 1 -0100110011 99.51 1 -0100110011 27.71 1 -0100110011 431.86 1 -0100110011 116.89 1 -0100110011 58.54 1 -0100110011 74.69 1 -0100110011 405.80 1 -0100110011 490.02 1 -0100110011 30.554 1 -0100110011 236.47 1 -0100110011 35.69 1 -0100110011 1.0555 1 -0100110011 424.05 1 -0100110011 47.77 1 -0100110011 419.40 1 -0100110011 419.00 1 -0100110011 25.90 1 -0100110011 68.09 1 -0100110011 419.10 1 -0100110011 431.72 1 -0100110011 31.58 1 -0100110011 416.85 1 -0100110011 1.512 1 -0100110011 4.558 1 -0100110011 423.20 1 -0100110011 35.70 1 -0100110011 32.12 1 -0100110011 262.79 1 -0100110011 116.11 1 -0100110011 87.21 1 -0100110011 274.63 1 -0100110011 270.03 1 -0100110011 16,290 1 -0100110011 421.35 1 -0100110011 421.60 1 -0100110011 579.73 1 -0100110011 256.06 1 -0100110011 427.20 1 -0100110011 420.80 1 -0100110011 424.20 1 -0100110011 578.60 1 -0100110011 1.5380 1 -0100110011 1.499 1 -0100110011 4.589 1 -0100110011 422.55 1 -0100110011 422.80 1 -0100110011 580.60 1 -0100110011 660.24 1 -0100110011 81.66 1 -0100110011 44.76 1 -0100110011 1.272 1 -0100110011 319.40 1 -0100110011 201.03 1 -0100110011 201.25 1 -0100110011 70.71 1 -0100110011 114.93 1 -0100110011 86.32 1 -0100110011 271.96 1 -0100110011 198.27 1 -0100110011 340.77 1 -0100110011 423.50 1 -0100110011 121.51 1 -0100110011 222.54 1 -0100110011 238.97 1 -0100110011 117.01 1 -0100110011 24.51 1 -0100110011 479.10 1 -0100110011 109.59 1 -0100110011 393.05 1 -0100110011 112.49 1 -0100110011 236.49 1 -0100110011 73.76 1 -0100110011 1.326 1 -0100110011 27.101 1 -0100110011 388.50 1 -0100110011 545.44 1 -0100110011 368.6 1 -0100110011 365.14 1 -0100110011 196.28 1 -0100110011 276.57 1 -0100110011 192.28 1 -0100110011 63.95 1 -0100110011 593.65 1 -0100110011 65.61 1 -0100110011 104.33 1 -0100110011 391.05 1 -0100110011 545.01 1 -0100110011 45.90 1 -0100110011 701.30 1 -0100110011 33.73 1 -0100110011 66.48 1 -0100110011 180.35 1 -0100110011 727.31 1 -0100110011 546.96 1 -0100110011 257.93 1 -0100110011 58.07 1 -0100110011 239.08 1 -0100110011 5.361 1 -0100110011 391.70 1 -0100110011 711.6 1 -0100110011 32.91 1 -0100110011 3,078,000 1 -0100110011 406.55 1 -0100110011 39,888 1 -0100110011 403.25 1 -0100110011 143.125 1 -0100110011 68.58 1 -0100110011 7.665 1 -0100110011 105.89 1 -0100110011 64.86 1 -0100110011 23.32 1 -0100110011 811.2 1 -0100110011 117.14 1 -0100110011 392.85 1 -0100110011 381.65 1 -0100110011 105.22 1 -0100110011 199.36 1 -0100110011 107.77 1 -0100110011 62.94 1 -0100110011 107.27 1 -0100110011 10.3277 1 -0100110011 353.79 1 -0100110011 104.64 1 -0100110011 110.41 1 -0100110011 102.11 1 -0100110011 25.64 1 -0100110011 68.53 1 -0100110011 713.8 1 -0100110011 713.3 1 -0100110011 734.8 1 -0100110011 26.74 1 -0100110011 124,623 1 -0100110011 5.486 1 -0100110011 123,787 1 -0100110011 463.75 1 -0100110011 35.83 1 -0100110011 958.3 1 -0100110011 394.65 1 -0100110011 435.34 1 -0100110011 588.07 1 -0100110011 591.33 1 -0100110011 18.175 1 -0100110011 50.37 1 -0100110011 3.736 1 -0100110011 4.348 1 -0100110011 106.27 1 -0100110011 106.15 1 -0100110011 102.46 1 -0100110011 99.39 1 -0100110011 362.53 1 -0100110011 358.72 1 -0100110011 40.34 1 -0100110011 75-a-month 1 -0100110011 47.07 1 -0100110011 14,728 1 -0100110011 6,968 1 -0100110011 68.60 1 -0100110011 358.96 1 -0100110011 95.47 1 -0100110011 101.18 1 -0100110011 103.60 1 -0100110011 271.61 1 -0100110011 411.25 1 -0100110011 17.49 1 -0100110011 41.66 1 -0100110011 5.324 1 -0100110011 47.22 1 -0100110011 44.61 1 -0100110011 49.42 1 -0100110011 572.70 1 -0100110011 389.35 1 -0100110011 55.92 1 -0100110011 57.16 1 -0100110011 91.39 1 -0100110011 3.616 1 -0100110011 2.895 1 -0100110011 2.877 1 -0100110011 102.09 1 -0100110011 38.02 1 -0100110011 123.31 1 -0100110011 122.37 1 -0100110011 121.62 1 -0100110011 3.4606 1 -0100110011 2.7801 1 -0100110011 107.96 1 -0100110011 44.93 1 -0100110011 234.87 1 -0100110011 84.19 1 -0100110011 90.92 1 -0100110011 5.374 1 -0100110011 704.70 1 -0100110011 36.53 1 -0100110011 450.45 1 -0100110011 14.150 1 -0100110011 3:30-5:30 1 -0100110011 90.82 1 -0100110011 92.99 1 -0100110011 65.77 1 -0100110011 62.83 1 -0100110011 236.02 1 -0100110011 21.26 1 -0100110011 340.9 1 -0100110011 731.9 1 -0100110011 404.15 1 -0100110011 178.79 1 -0100110011 29.29 1 -0100110011 1.3455 1 -0100110011 2.0829 1 -0100110011 1.5008 1 -0100110011 1.058 1 -0100110011 65.76 1 -0100110011 40.72 1 -0100110011 51.73 1 -0100110011 6.715 1 -0100110011 6,246 1 -0100110011 543.22 1 -0100110011 603.23 1 -0100110011 415,333 1 -0100110011 15.11 1 -0100110011 65.28 1 -0100110011 61.96 1 -0100110011 233.88 1 -0100110011 114.74 1 -0100110011 58.64 1 -0100110011 36.30 1 -0100110011 259.15 1 -0100110011 231.22 1 -0100110011 43.51 1 -0100110011 104.19 1 -0100110011 213.15 1 -0100110011 212.78 1 -0100110011 361.63 1 -0100110011 352.46 1 -0100110011 387.08 1 -0100110011 148.48 1 -0100110011 139.69 1 -0100110011 403.95 1 -0100110011 30.62 1 -0100110011 5.635 1 -0100110011 28.93 1 -0100110011 355.78 1 -0100110011 106.67 1 -0100110011 111.86 1 -0100110011 108.83 1 -0100110011 19.42 1 -0100110011 34.42 1 -0100110011 70.32 1 -0100110011 1.0580 1 -0100110011 529.30 1 -0100110011 13.573 1 -0100110011 6,279 1 -0100110011 5.545 1 -0100110011 403.55 1 -0100110011 10.063 1 -0100110011 367.13 1 -0100110011 365.44 1 -0100110011 203.61 1 -0100110011 276.42 1 -0100110011 199.45 1 -0100110011 201.91 1 -0100110011 406.45 1 -0100110011 402.25 1 -0100110011 404.55 1 -0100110011 398.45 1 -0100110011 48.90 1 -0100110011 118.04 1 -0100110011 107.58 1 -0100110011 65.83 1 -0100110011 107.60 1 -0100110011 236.18 1 -0100110011 35.63 1 -0100110011 4,704 1 -0100110011 17.97 1 -0100110011 464.25 1 -0100110011 4.261 1 -0100110011 6:15-6:30 1 -0100110011 1-2:30 1 -0100110011 1.2755 1 -0100110011 1.2565 1 -0100110011 2.935 1 -0100110011 81.62 1 -0100110011 65.55 1 -0100110011 83.19 1 -0100110011 76.70 1 -0100110011 402.85 1 -0100110011 3.547 1 -0100110011 2.866 1 -0100110011 2.809 1 -0100110011 27.41 1 -0100110011 402.35 1 -0100110011 3.4866 1 -0100110011 3.5115 1 -0100110011 2.7978 1 -0100110011 2.819 1 -0100110011 731.6 1 -0100110011 119.27 1 -0100110011 107.71 1 -0100110011 62.99 1 -0100110011 236.01 1 -0100110011 12,108.50 1 -0100110011 396.25 1 -0100110011 43.08 1 -0100110011 115.43 1 -0100110011 20.91 1 -0100110011 1:53 1 -0100110011 393.15 1 -0100110011 1.185 1 -0100110011 1.1787 1 -0100110011 1.1503 1 -0100110011 48.12 1 -0100110011 62.71 1 -0100110011 7.681 1 -0100110011 7.424 1 -0100110011 6.851 1 -0100110011 246.02 1 -0100110011 26.35 1 -0100110011 8,000-10,000 1 -0100110011 357.29 1 -0100110011 357.78 1 -0100110011 101.94 1 -0100110011 105.37 1 -0100110011 57.32 1 -0100110011 51.11 1 -0100110011 155.94 1 -0100110011 451.25 1 -0100110011 154.25 1 -0100110011 300.22 1 -0100110011 136.34 1 -0100110011 121.93 1 -0100110011 73.69 1 -0100110011 57.78 1 -0100110011 593.10 1 -0100110011 448.75 1 -0100110011 66.83 1 -0100110011 493.22 1 -0100110011 30.14 1 -0100110011 190.63 1 -0100110011 197.36 1 -0100110011 0.995 1 -0100110011 459.85 1 -0100110011 4.339 1 -0100110011 3.735 1 -0100110011 40.71 1 -0100110011 566.56 1 -0100110011 211.69 1 -0100110011 66.43 1 -0100110011 1.2276 1 -0100110011 35.42 1 -0100110011 64.82 1 -0100110011 106.74 1 -0100110011 237.16 1 -0100110011 739.8 1 -0100110011 3.5256 1 -0100110011 2.8256 1 -0100110011 41,498 1 -0100110011 559.94 1 -0100110011 748.8 1 -0100110011 739.2 1 -0100110011 554.48 1 -0100110011 34.45 1 -0100110011 464.75 1 -0100110011 2.8396 1 -0100110011 3.5413 1 -0100110011 81.89 1 -0100110011 124.41 1 -0100110011 125.38 1 -0100110011 148.38 1 -0100110011 45.19 1 -0100110011 611.70 1 -0100110011 2.256 1 -0100110011 21,690 1 -0100110011 108.875 1 -0100110011 437.35 1 -0100110011 20,266 1 -0100110011 30.78 1 -0100110011 63.20 1 -0100110011 2.578 1 -0100110011 609.50 1 -0100110011 1,703 1 -0100110011 369.25 1 -0100110011 370.62 1 -0100110011 320.54 1 -0100110011 319.59 1 -0100110011 195.61 1 -0100110011 197.53 1 -0100110011 194.33 1 -0100110011 198.89 1 -0100110011 75,600 1 -0100110011 64.98 1 -0100110011 106.02 1 -0100110011 67.26 1 -0100110011 238.27 1 -0100110011 41.38 1 -0100110011 120.18 1 -0100110011 86.92 1 -0100110011 227.62 1 -0100110011 19.23 1 -0100110011 459.25 1 -0100110011 25.82 1 -0100110011 20.81 1 -0100110011 51,835 1 -0100110011 464.45 1 -0100110011 194.48 1 -0100110011 41.00 1 -0100110011 4,138,000 1 -0100110011 459.45 1 -0100110011 1.688 1 -0100110011 22.96 1 -0100110011 109.72 1 -0100110011 211.16 1 -0100110011 61.60 1 -0100110011 93.76 1 -0100110011 303.3 1 -0100110011 399.21 1 -0100110011 574.13 1 -0100110011 535.72 1 -0100110011 467.70 1 -0100110011 2.874 1 -0100110011 2.883 1 -0100110011 3.599 1 -0100110011 3.604 1 -0100110011 629.41 1 -0100110011 315.70 1 -0100110011 356.13 1 -0100110011 673.68 1 -0100110011 589.47 1 -0100110011 631.58 1 -0100110011 203.10 1 -0100110011 29.05 1 -0100110011 756.7 1 -0100110011 457.25 1 -0100110011 137.30 1 -0100110011 236.27 1 -0100110011 66.70 1 -0100110011 451.35 1 -0100110011 568.85 1 -0100110011 31.63 1 -0100110011 58.39 1 -0100110011 417.05 1 -0100110011 320.38 1 -0100110011 189.96 1 -0100110011 186.64 1 -0100110011 194.64 1 -0100110011 23.36 1 -0100110011 370.53 1 -0100110011 369.42 1 -0100110011 320.69 1 -0100110011 5,321 1 -0100110011 27.77 1 -0100110011 472.65 1 -0100110011 9,715 1 -0100110011 25.27 1 -0100110011 1,974 1 -0100110011 19,250 1 -0100110011 65.17 1 -0100110011 235.40 1 -0100110011 482.20 1 -0100110011 38.65 1 -0100110011 108.65 1 -0100110011 85.82 1 -0100110011 470.25 1 -0100110011 411.65 1 -0100110011 786.16 1 -0100110011 740.2 1 -0100110011 24.84 1 -0100110011 83.27 1 -0100110011 448.31 1 -0100110011 589.94 1 -0100110011 574.73 1 -0100110011 142.62 1 -0100110011 46.51 1 -0100110011 6.325 1 -0100110011 30.67 1 -0100110011 420.30 1 -0100110011 422.70 1 -0100110011 23.34 1 -0100110011 327.01 1 -0100110011 1993.75 1 -0100110011 119.99 1 -0100110011 154.75 1 -0100110011 431.60 1 -0100110011 250.70 1 -0100110011 437.55 1 -0100110011 12,000,000,000 1 -0100110011 107.31 1 -0100110011 63.80 1 -0100110011 236.77 1 -0100110011 366.67 1 -0100110011 125.32 1 -0100110011 215.09 1 -0100110011 294.39 1 -0100110011 2.672 1 -0100110011 6.805 1 -0100110011 50,000-99,999 1 -0100110011 12,490 1 -0100110011 10,000-19,999 1 -0100110011 850-a-month 1 -0100110011 104.41 1 -0100110011 64.17 1 -0100110011 374.30 1 -0100110011 381.01 1 -0100110011 29.23 1 -0100110011 54.89 1 -0100110011 78,700 1 -0100110011 217.52 1 -0100110011 18,760.94 1 -0100110011 7.354 1 -0100110011 427.76 1 -0100110011 198.54 1 -0100110011 576.05 1 -0100110011 69.15 1 -0100110011 71.70 1 -0100110011 419.85 1 -0100110011 9.763 1 -0100110011 36.0 1 -0100110011 244.85 1 -0100110011 436.66 1 -0100110011 358.22 1 -0100110011 559.50 1 -0100110011 51.07 1 -0100110011 317.07 1 -0100110011 174.23 1 -0100110011 28.087 1 -0100110011 33.37 1 -0100110011 126.375 1 -0100110011 144.01 1 -0100110011 115.875 1 -0100110011 1,637 1 -0100110011 374.16 1 -0100110011 390.89 1 -0100110011 2.109 1 -0100110011 159.68 1 -0100110011 577.91 1 -0100110011 1.1191 1 -0100110011 1.1299 1 -0100110011 355.88 1 -0100110011 3.5551 1 -0100110011 2.8380 1 -0100110011 2.8389 1 -0100110011 753.7 1 -0100110011 38.31 1 -0100110011 151.99 1 -0100110011 35.05 1 -0100110011 16,650 1 -0100110011 2:25 1 -0100110011 104.82 1 -0100110011 68.19 1 -0100110011 236.45 1 -0100110011 221.75 1 -0100110011 214.42 1 -0100110011 18.081 1 -0100110011 462.45 1 -0100110011 338.86 1 -0100110011 33.89 1 -0100110011 50.53 1 -0100110011 369.46 1 -0100110011 359.08 1 -0100110011 55.76 1 -0100110011 2.054 1 -0100110011 1.511 1 -0100110011 46.59 1 -0100110011 3.373 1 -0100110011 22.99 1 -0100110011 59.44 1 -0100110011 46.49 1 -0100110011 84.90 1 -0100110011 1.692 1 -0100110011 38.93 1 -0100110011 371.22 1 -0100110011 375.55 1 -0100110011 320.09 1 -0100110011 195.47 1 -0100110011 199.40 1 -0100110011 199.80 1 -0100110011 515.49 1 -0100110011 1.108 1 -0100110011 16.570 1 -0100110011 23.31 1 -0100110011 119.17 1 -0100110011 1.285 1 -0100110011 36.60 1 -0100110011 31.76 1 -0100110011 127.375 1 -0100110011 21.15 1 -0100110011 14.2661 1 -0100110011 384.1 1 -0100110011 445.15 1 -0100110011 1.493 1 -0100110011 105.36 1 -0100110011 69.11 1 -0100110011 238.91 1 -0100110011 64.43 1 -0100110011 47.04 1 -0100110011 157.69 1 -0100110011 69,871 1 -0100110011 5.010 1 -0100110011 40.32 1 -0100110011 2:09 1 -0100110011 2:06 1 -0100110011 448.25 1 -0100110011 341.08 1 -0100110011 4,930 1 -0100110011 463.35 1 -0100110011 224.56 1 -0100110011 39.90 1 -0100110011 2317 1 -0100110011 34.37 1 -0100110011 107.82 1 -0100110011 198.18 1 -0100110011 385.22 1 -0100110011 390.91 1 -0100110011 321.62 1 -0100110011 200.59 1 -0100110011 199.25 1 -0100110011 205.45 1 -0100110011 204.94 1 -0100110011 391.18 1 -0100110011 70.73 1 -0100110011 120.06 1 -0100110011 591.18 1 -0100110011 181,800 1 -0100110011 217,600 1 -0100110011 1:17 1 -0100110011 463.60 1 -0100110011 760,900 1 -0100110011 1.1615 1 -0100110011 26.86 1 -0100110011 464.35 1 -0100110011 66.13 1 -0100110011 108.01 1 -0100110011 70.36 1 -0100110011 244.25 1 -0100110011 244.51 1 -0100110011 81,643 1 -0100110011 611.87 1 -0100110011 156.92 1 -0100110011 9.485 1 -0100110011 41,422 1 -0100110011 233.09 1 -0100110011 446.75 1 -0100110011 58.43 1 -0100110011 127.73 1 -0100110011 132.37 1 -0100110011 37.98 1 -0100110011 452.10 1 -0100110011 54.54 1 -0100110011 9:25 1 -0100110011 2.893 1 -0100110011 3.630 1 -0100110011 36.46 1 -0100110011 20.52 1 -0100110011 63.78 1 -0100110011 67.46 1 -0100110011 235.75 1 -0100110011 81.60 1 -0100110011 26.5375 1 -0100110011 32.87 1 -0100110011 2.224 1 -0100110011 17.095 1 -0100110011 32.32 1 -0100110011 14.395 1 -0100110011 90.16 1 -0100110011 109.83 1 -0100110011 49.18 1 -0100110011 4.352 1 -0100110011 3.739 1 -0100110011 644,635 1 -0100110011 804.470 1 -0100110011 497.25 1 -0100110011 365.15 1 -0100110011 173.51 1 -0100110011 31.85 1 -0100110011 19.58 1 -0100110011 237.43 1 -0100110011 79.89 1 -0100110011 262.41 1 -0100110011 39.38 1 -0100110011 4.587 1 -0100110011 31.03 1 -0100110011 97.62 1 -0100110011 3,576 1 -0100110011 163.43 1 -0100110011 65.26 1 -0100110011 1:04 1 -0100110011 23.58 1 -0100110011 83.51 1 -0100110011 6.186 1 -0100110011 50.11 1 -0100110011 27.68 1 -0100110011 27.96 1 -0100110011 4,803 1 -0100110011 278.96 1 -0100110011 502.30 1 -0100110011 756.3 1 -0100110011 493.45 1 -0100110011 125.86 1 -0100110011 64.57 1 -0100110011 noon-6 1 -0100110011 64.07 1 -0100110011 428.75 1 -0100110011 448.82 1 -0100110011 4.760 1 -0100110011 2.434 1 -0100110011 46.56 1 -0100110011 40,166 1 -0100110011 8,370 1 -0100110011 14.39 1 -0100110011 328.46 1 -0100110011 398.48 1 -0100110011 110.84 1 -0100110011 188.84 1 -0100110011 208.92 1 -0100110011 486.35 1 -0100110011 1.8203 1 -0100110011 1,822 1 -0100110011 483.60 1 -0100110011 256.70 1 -0100110011 73.15 1 -0100110011 484.45 1 -0100110011 29.20 1 -0100110011 18.23 1 -0100110011 109.86 1 -0100110011 119.72 1 -0100110011 608.75 1 -0100110011 175.23 1 -0100110011 3.5116 1 -0100110011 2.8186 1 -0100110011 2.8202 1 -0100110011 3.5146 1 -0100110011 73.09 1 -0100110011 79.22 1 -0100110011 19,502 1 -0100110011 16.23 1 -0100110011 6.842 1 -0100110011 45.090 1 -0100110011 672.1 1 -0100110011 3.321 1 -0100110011 756.9 1 -0100110011 738.6 1 -0100110011 4.057 1 -0100110011 769.6 1 -0100110011 1.1125 1 -0100110011 1.1525 1 -0100110011 2408 1 -0100110011 31.86 1 -0100110011 33.01 1 -0100110011 44.81 1 -0100110011 23.974 1 -0100110011 6.713 1 -0100110011 16.93 1 -0100110011 392.80 1 -0100110011 46,820 1 -0100110011 486.75 1 -0100110011 300,654 1 -0100110011 484.75 1 -0100110011 485.50 1 -0100110011 493.40 1 -0100110011 1.6515 1 -0100110011 93,150 1 -0100110011 397.82 1 -0100110011 6,167 1 -0100110011 85.05 1 -0100110011 1.20625 1 -0100110011 479.75 1 -0100110011 3.032 1 -0100110011 28.84 1 -0100110011 27.86 1 -0100110011 487.25 1 -0100110011 117.52 1 -0100110011 9:31 1 -0100110011 9.516 1 -0100110011 754.4 1 -0100110011 144.84 1 -0100110011 505.80 1 -0100110011 48.30 1 -0100110011 483.95 1 -0100110011 1.679 1 -0100110011 7.114 1 -0100110011 61.09 1 -0100110011 452.16 1 -0100110011 108.28 1 -0100110011 387.51 1 -0100110011 111.06 1 -0100110011 111.09 1 -0100110011 600,000,000,000 1 -0100110011 45.85 1 -0100110011 484.85 1 -0100110011 23.45 1 -0100110011 6.075 1 -0100110011 483.45 1 -0100110011 482.90 1 -0100110011 59.76 1 -0100110011 2.509 1 -0100110011 1.626 1 -0100110011 164.36 1 -0100110011 119.34 1 -0100110011 80.05 1 -0100110011 1.179 1 -0100110011 481.19 1 -0100110011 597.55 1 -0100110011 65.43 1 -0100110011 234.75 1 -0100110011 1.3402 1 -0100110011 45.72 1 -0100110011 77,400-a-year 1 -0100110011 51.23 1 -0100110011 56.80 1 -0100110011 54.42705 1 -0100110011 325.95 1 -0100110011 410.25 1 -0100110011 237.46 1 -0100110011 62.70 1 -0100110011 409.35 1 -0100110011 169.44 1 -0100110011 5.585 1 -0100110011 61.36 1 -0100110011 68.71 1 -0100110011 207,317 1 -0100110011 63.96 1 -0100110011 63.97 1 -0100110011 63.94 1 -0100110011 231.95 1 -0100110011 34.74 1 -0100110011 23.92 1 -0100110011 367.09 1 -0100110011 198.23 1 -0100110011 276.59 1 -0100110011 200.42 1 -0100110011 335.3 1 -0100110011 18,616 1 -0100110011 66.91 1 -0100110011 65.23 1 -0100110011 403.65 1 -0100110011 26.57 1 -0100110011 31.39 1 -0100110011 470.70 1 -0100110011 356.60 1 -0100110011 2.7625 1 -0100110011 482.40 1 -0100110011 61.90 1 -0100110011 402.75 1 -0100110011 400.10 1 -0100110011 62.52 1 -0100110011 2.762 1 -0100110011 3.487 1 -0100110011 2.864 1 -0100110011 3.527 1 -0100110011 3.555 1 -0100110011 76.10 1 -0100110011 2:304:30 1 -0100110011 19000 1 -0100110011 65.09 1 -0100110011 309.75 1 -0100110011 4.031 1 -0100110011 407.75 1 -0100110011 3.998 1 -0100110011 4.209 1 -0100110011 82.85 1 -0100110011 90.11 1 -0100110011 136.875 1 -0100110011 538.50 1 -0100110011 5.715 1 -0100110011 24.21 1 -0100110011 1.21-an-hour 1 -0100110011 409.25 1 -0100110011 1.0697 1 -0100110011 1.0538 1 -0100110011 1.0534 1 -0100110011 65.01 1 -0100110011 106.88 1 -0100110011 62.20 1 -0100110011 234.09 1 -0100110011 29.698 1 -0100110011 46.14 1 -0100110011 28.98 1 -0100110011 80.46 1 -0100110011 39.47 1 -0100110011 83.01 1 -0100110011 6:01 1 -0100110011 422.50 1 -0100110011 89.43 1 -0100110011 64.76 1 -0100110011 1.445 1 -0100110011 120.94 1 -0100110011 208.77 1 -0100110011 81.56 1 -0100110011 332.06 1 -0100110011 66.87 1 -0100110011 2.8043 1 -0100110011 5.647 1 -0100110011 415.15 1 -0100110011 58.58 1 -0100110011 74.39 1 -0100110011 15.153 1 -0100110011 76.52 1 -0100110011 123.125 1 -0100110011 467,374 1 -0100110011 27.3125 1 -0100110011 275.53 1 -0100110011 363.05 1 -0100110011 365.25 1 -0100110011 194.46 1 -0100110011 202.61 1 -0100110011 196.66 1 -0100110011 204.49 1 -0100110011 277.02 1 -0100110011 1.457 1 -0100110011 2.336 1 -0100110011 365.36 1 -0100110011 419.05 1 -0100110011 673.62 1 -0100110011 672.27 1 -0100110011 674.75 1 -0100110011 676.21 1 -0100110011 1,904 1 -0100110011 40.750 1 -0100110011 41.245 1 -0100110011 19,252 1 -0100110011 915.20 1 -0100110011 24.71 1 -0100110011 458.55 1 -0100110011 41.41 1 -0100110011 604.18 1 -0100110011 883.23 1 -0100110011 126.99 1 -0100110011 580.37 1 -0100110011 458.15 1 -0100110011 138.17 1 -0100110011 36.78 1 -0100110011 411.66 1 -0100110011 415.02 1 -0100110011 19,819 1 -0100110011 67.77 1 -0100110011 37.28 1 -0100110011 3.732 1 -0100110011 2.984 1 -0100110011 185.77 1 -0100110011 117.96 1 -0100110011 502.50 1 -0100110011 626.6 1 -0100110011 64.65 1 -0100110011 72.53 1 -0100110011 245.57 1 -0100110011 95.125 1 -0100110011 3:08 1 -0100110011 362.95 1 -0100110011 610.27 1 -0100110011 34.60 1 -0100110011 699,910 1 -0100110011 182.88 1 -0100110011 18,618 1 -0100110011 583.93 1 -0100110011 1.3505 1 -0100110011 366.68 1 -0100110011 456.35 1 -0100110011 3:51 1 -0100110011 19,255 1 -0100110011 8,726 1 -0100110011 368.87 1 -0100110011 382.40 1 -0100110011 387.91 1 -0100110011 379.47 1 -0100110011 389.07 1 -0100110011 406.80 1 -0100110011 6.489 1 -0100110011 64.58 1 -0100110011 205.88 1 -0100110011 6:33 1 -0100110011 353.63 1 -0100110011 107.44 1 -0100110011 103.57 1 -0100110011 389.65 1 -0100110011 104.48 1 -0100110011 233.81 1 -0100110011 471.80 1 -0100110011 390.20 1 -0100110011 1.631 1 -0100110011 28.51 1 -0100110011 340.47 1 -0100110011 389.75 1 -0100110011 720.9 1 -0100110011 722.5 1 -0100110011 583.6 1 -0100110011 603.2 1 -0100110011 16.295 1 -0100110011 156.58 1 -0100110011 201.80 1 -0100110011 335.09 1 -0100110011 114.92 1 -0100110011 122.68 1 -0100110011 22.856 1 -0100110011 53.19 1 -0100110011 37.74 1 -0100110011 2.7225 1 -0100110011 1.645 1 -0100110011 29.08 1 -0100110011 69.13 1 -0100110011 122.39 1 -0100110011 92.06 1 -0100110011 92.53 1 -0100110011 392.25 1 -0100110011 85.30 1 -0100110011 23.93 1 -0100110011 2.0525 1 -0100110011 392.45 1 -0100110011 5.358 1 -0100110011 52.26 1 -0100110011 169.52 1 -0100110011 84.27 1 -0100110011 33.39 1 -0100110011 206.31 1 -0100110011 148.10 1 -0100110011 66.08 1 -0100110011 64.47 1 -0100110011 235.54 1 -0100110011 394.35 1 -0100110011 720.7 1 -0100110011 125.375 1 -0100110011 2.785 1 -0100110011 2.815 1 -0100110011 2.103 1 -0100110011 2.113 1 -0100110011 3.531 1 -0100110011 386.29 1 -0100110011 380.69 1 -0100110011 384.24 1 -0100110011 893,500 1 -0100110011 982,130 1 -0100110011 176,600 1 -0100110011 540.60 1 -0100110011 321,686 1 -0100110011 122.96 1 -0100110011 1.666 1 -0100110011 8.751 1 -0100110011 8.716 1 -0100110011 9.256 1 -0100110011 1.155 1 -0100110011 2.5625 1 -0100110011 697.45 1 -0100110011 1,138.34 1 -0100110011 695.17 1 -0100110011 716.94 1 -0100110011 887.35 1 -0100110011 3.663 1 -0100110011 17.01 1 -0100110011 13.745 1 -0100110011 14.745 1 -0100110011 49.58 1 -0100110011 121.24 1 -0100110011 25.68 1 -0100110011 8,619 1 -0100110011 447.40 1 -0100110011 112.74 1 -0100110011 223.47 1 -0100110011 36,667 1 -0100110011 147.95 1 -0100110011 450.00 1 -0100110011 13.469 1 -0100110011 6.6450 1 -0100110011 1.3646 1 -0100110011 1.1531 1 -0100110011 363.60 1 -0100110011 363.30 1 -0100110011 1.278 1 -0100110011 88.21 1 -0100110011 442.35 1 -0100110011 112.58 1 -0100110011 563.00 1 -0100110011 553.40 1 -0100110011 109.19 1 -0100110011 61.88 1 -0100110011 105.24 1 -0100110011 105.38 1 -0100110011 10.409 1 -0100110011 444.45 1 -0100110011 700.65 1 -0100110011 391.94 1 -0100110011 392.41 1 -0100110011 30.52 1 -0100110011 38.72 1 -0100110011 28.97 1 -0100110011 30.42 1 -0100110011 563.30 1 -0100110011 111.77 1 -0100110011 51.30 1 -0100110011 48.39 1 -0100110011 780.64 1 -0100110011 122,079 1 -0100110011 52.40 1 -0100110011 157,856 1 -0100110011 65.49 1 -0100110011 438.05 1 -0100110011 25-30 1 -0100110011 72.43 1 -0100110011 82.94 1 -0100110011 270.56 1 -0100110011 79.42 1 -0100110011 24.13 1 -0100110011 452.50 1 -0100110011 369.7 1 -0100110011 1.1533 1 -0100110011 177,720 1 -0100110011 1.862 1 -0100110011 17.729 1 -0100110011 26,292 1 -0100110011 84.21 1 -0100110011 8.1875 1 -0100110011 348.98 1 -0100110011 719.97 1 -0100110011 479.46 1 -0100110011 42.45 1 -0100110011 17.04 1 -0100110011 587.27 1 -0100110011 118.58 1 -0100110011 127.22 1 -0100110011 25.73 1 -0100110011 124.39 1 -0100110011 27.02 1 -0100110011 815.6 1 -0100110011 33.520 1 -0100110011 128,333 1 -0100110011 449.65 1 -0100110011 7.215 1 -0100110011 73.95 1 -0100110011 116.29 1 -0100110011 272.84 1 -0100110011 424.80 1 -0100110011 3,289 1 -0100110011 252.87 1 -0100110011 424.08 1 -0100110011 59.83 1 -0100110011 38.08 1 -0100110011 3.482 1 -0100110011 278.03 1 -0100110011 826.80 1 -0100110011 82.33 1 -0100110011 24.26 1 -0100110011 110.39 1 -0100110011 203.50 1 -0100110011 363.76 1 -0100110011 1.275 1 -0100110011 7,464.84 1 -0100110011 7.317 1 -0100110011 137.04 1 -0100110011 210.06 1 -0100110011 84.28 1 -0100110011 502.61 1 -0100110011 84.79 1 -0100110011 51.69 1 -0100110011 25.99 1 -0100110011 6.291 1 -0100110011 105.96 1 -0100110011 0.1267 1 -0100110011 0.5417 1 -0100110011 0.26875 1 -0100110011 332.78 1 -0100110011 658.52 1 -0100110011 450.16 1 -0100110011 2.3675 1 -0100110011 34.67 1 -0100110011 22.06 1 -0100110011 672.41 1 -0100110011 25.18 1 -0100110011 1.5569 1 -0100110011 113.06 1 -0100110011 35.79 1 -0100110011 247.15 1 -0100110011 4:12 1 -0100110011 449.30 1 -0100110011 85.33 1 -0100110011 148.16 1 -0100110011 6,891 1 -0100110011 325-a-week 1 -0100110011 4.134 1 -0100110011 1.887 1 -0100110011 5.204 1 -0100110011 24.74 1 -0100110011 52.79 1 -0100110011 47.86 1 -0100110011 848.71 1 -0100110011 3-an-hour 1 -0100110011 11:53 1 -0100110011 24.45 1 -0100110011 76.04 1 -0100110011 82.69 1 -0100110011 273.61 1 -0100110011 82.53 1 -0100110011 31.64 1 -0100110011 152.34 1 -0100110011 363.15 1 -0100110011 364.90 1 -0100110011 10:38 1 -0100110011 1.017 1 -0100110011 1.634 1 -0100110011 368.92 1 -0100110011 233.39 1 -0100110011 94.28 1 -0100110011 141.61 1 -0100110011 98.97 1 -0100110011 137.68 1 -0100110011 1.473 1 -0100110011 64.14 1 -0100110011 70.56 1 -0100110011 652.97 1 -0100110011 54.73 1 -0100110011 86.84 1 -0100110011 28.24 1 -0100110011 32.03 1 -0100110011 701.9 1 -0100110011 210.35 1 -0100110011 20,485 1 -0100110011 319.87 1 -0100110011 228.71 1 -0100110011 175.38 1 -0100110011 315.68 1 -0100110011 361.80 1 -0100110011 1,000:8.84 1 -0100110011 1.1597 1 -0100110011 55.78 1 -0100110011 19.650 1 -0100110011 24.378 1 -0100110011 2.901 1 -0100110011 34.34 1 -0100110011 391.78 1 -0100110011 814.91 1 -0100110011 71.98 1 -0100110011 4.849 1 -0100110011 258.31 1 -0100110011 55.56 1 -0100110011 464.40 1 -0100110011 42.49 1 -0100110011 22.98 1 -0100110011 171.67 1 -0100110011 254.67 1 -0100110011 248.59 1 -0100110011 45.33 1 -0100110011 119.91 1 -0100110011 194.15 1 -0100110011 38.01 1 -0100110011 6.1475 1 -0100110011 250.34 1 -0100110011 241.12 1 -0100110011 92.26 1 -0100110011 2.108 1 -0100110011 38.18 1 -0100110011 35,510 1 -0100110011 204.87 1 -0100110011 190.01 1 -0100110011 285.25 1 -0100110011 2.018 1 -0100110011 8.452 1 -0100110011 8.905 1 -0100110011 3.280 1 -0100110011 SFr2 1 -0100110011 4.466 1 -0100110011 66,197 1 -0100110011 35,352 1 -0100110011 112.86 1 -0100110011 1.3747 1 -0100110011 1.3810 1 -0100110011 7.3150 1 -0100110011 467.25 1 -0100110011 466.35 1 -0100110011 113.34 1 -0100110011 80.26 1 -0100110011 274.83 1 -0100110011 78.02 1 -0100110011 87.24 1 -0100110011 88.46 1 -0100110011 86.99 1 -0100110011 18,740 1 -0100110011 1.084722 1 -0100110011 40,816 1 -0100110011 4.598 1 -0100110011 4.486 1 -0100110011 857.63 1 -0100110011 822.501 1 -0100110011 464.80 1 -0100110011 4.235 1 -0100110011 8:56 1 -0100110011 365.80 1 -0100110011 378.03 1 -0100110011 24.185 1 -0100110011 24,333 1 -0100110011 628.75 1 -0100110011 US1.45 1 -0100110011 70.61 1 -0100110011 267.28 1 -0100110011 46.78 1 -0100110011 45.80 1 -0100110011 66,332 1 -0100110011 82,368 1 -0100110011 112,464 1 -0100110011 143,405 1 -0100110011 109.999 1 -0100110011 481.40 1 -0100110011 83.61 1 -0100110011 377.66 1 -0100110011 8,197 1 -0100110011 84.12 1 -0100110011 95.88 1 -0100110011 8,182 1 -0100110011 541.72 1 -0100110011 296.95 1 -0100110011 31.53 1 -0100110011 388.60 1 -0100110011 430.23 1 -0100110011 409.73 1 -0100110011 422.75 1 -0100110011 449.10 1 -0100110011 79.35 1 -0100110011 456.10 1 -0100110011 369.80 1 -0100110011 2.494 1 -0100110011 54.67 1 -0100110011 3.955 1 -0100110011 8.605 1 -0100110011 940,434 1 -0100110011 27.06 1 -0100110011 254.61 1 -0100110011 80.39 1 -0100110011 367.90 1 -0100110011 26.80 1 -0100110011 626.85 1 -0100110011 574.38 1 -0100110011 4.159 1 -0100110011 54.637 1 -0100110011 53.226 1 -0100110011 41.553 1 -0100110011 365.60 1 -0100110011 62.89 1 -0100110011 22.02 1 -0100110011 1.202 1 -0100110011 108.52 1 -0100110011 392.38 1 -0100110011 111.26 1 -0100110011 118.69 1 -0100110011 470.85 1 -0100110011 24.347 1 -0100110011 89.64 1 -0100110011 2,678,000 1 -0100110011 2.260 1 -0100110011 148.093 1 -0100110011 387.44 1 -0100110011 332.44 1 -0100110011 29.83 1 -0100110011 399.47 1 -0100110011 388.82 1 -0100110011 15.79 1 -0100110011 15,548 1 -0100110011 830.8 1 -0100110011 611.26 1 -0100110011 2,417 1 -0100110011 30.59 1 -0100110011 463.566 1 -0100110011 144.09 1 -0100110011 47.20 1 -0100110011 43.09 1 -0100110011 29.27 1 -0100110011 585.90 1 -0100110011 80.66 1 -0100110011 40.08 1 -0100110011 207.71 1 -0100110011 89,931 1 -0100110011 116.28 1 -0100110011 112.57 1 -0100110011 404.12 1 -0100110011 400.42 1 -0100110011 414.7 1 -0100110011 7.835 1 -0100110011 460.00 1 -0100110011 460.60 1 -0100110011 3.440 1 -0100110011 .51 1 -0100110011 368.35 1 -0100110011 17,8100 1 -0100110011 1,682 1 -0100110011 8,807 1 -0100110011 74.44 1 -0100110011 274.12 1 -0100110011 264.20 1 -0100110011 579.30 1 -0100110011 52.45 1 -0100110011 487.93 1 -0100110011 29.340 1 -0100110011 9:40 1 -0100110011 157.59 1 -0100110011 238.01 1 -0100110011 521.71 1 -0100110011 441.75 1 -0100110011 957.29 1 -0100110011 590.97 1 -0100110011 627.09 1 -0100110011 522.07 1 -0100110011 65.73 1 -0100110011 83.99 1 -0100110011 84.31 1 -0100110011 105.03 1 -0100110011 43.46 1 -0100110011 394.79 1 -0100110011 320.71 1 -0100110011 91.05 1 -0100110011 109.875 1 -0100110011 360.70 1 -0100110011 132.92 1 -0100110011 927.82 1 -0100110011 89.99 1 -0100110011 126.24 1 -0100110011 383.77 1 -0100110011 4.479 1 -0100110011 868.59 1 -0100110011 98.41 1 -0100110011 6.751 1 -0100110011 76.26 1 -0100110011 145.92 1 -0100110011 24.97 1 -0100110011 865.35 1 -0100110011 455.55 1 -0100110011 4.273 1 -0100110011 130.71 1 -0100110011 716.3 1 -0100110011 85.85 1 -0100110011 29.98 1 -0100110011 47.33 1 -0100110011 88.30 1 -0100110011 1.038 1 -0100110011 892.37 1 -0100110011 976.48 1 -0100110011 1.681 1 -0100110011 92.24 1 -0100110011 180.19 1 -0100110011 93.58 1 -0100110011 194.09 1 -0100110011 1.571 1 -0100110011 101.44 1 -0100110011 42.02 1 -0100110011 1.268 1 -0100110011 2.051 1 -0100110011 1.921 1 -0100110011 362.35 1 -0100110011 218.89 1 -0100110011 1.843 1 -0100110011 771.7 1 -0100110011 2963 1 -0100110011 235.65 1 -0100110011 622.90 1 -0100110011 2857 1 -0100110011 33.155 1 -0100110011 779.06 1 -0100110011 83.625 1 -0100110011 5,700. 1 -0100110011 367.55 1 -0100110011 24,744 1 -0100110011 31,139 1 -0100110011 2.966 1 -0100110011 1.598 1 -0100110011 3.746 1 -0100110011 193.60 1 -0100110011 80,740 1 -0100110011 6:36 1 -0100110011 9:43 1 -0100110011 10:44 1 -0100110011 10:06 1 -0100110011 42.99 1 -0100110011 42.48 1 -0100110011 17.635 1 -0100110011 6,536 1 -0100110011 4,017 1 -0100110011 459.80 1 -0100110011 83.41 1 -0100110011 28.687 1 -0100110011 40.90 1 -0100110011 36.73 1 -0100110011 148.06 1 -0100110011 5.354 1 -0100110011 357.96 1 -0100110011 73.52 1 -0100110011 84.07 1 -0100110011 273.31 1 -0100110011 28.12 1 -0100110011 2.123 1 -0100110011 455.25 1 -0100110011 74.67 1 -0100110011 110.62 1 -0100110011 109.21 1 -0100110011 42.11 1 -0100110011 89.39 1 -0100110011 9.374 1 -0100110011 2.454 1 -0100110011 343.22 1 -0100110011 85.58 1 -0100110011 31.08 1 -0100110011 147.85 1 -0100110011 109.78 1 -0100110011 33.99 1 -0100110011 179.83 1 -0100110011 91.09 1 -0100110011 62.36 1 -0100110011 845.38 1 -0100110011 2.925 1 -0100110011 53.31 1 -0100110011 89.11 1 -0100110011 726.84 1 -0100110011 2.503 1 -0100110011 41.20 1 -0100110011 866.93 1 -0100110011 150.17 1 -0100110011 70.93 1 -0100110011 33.41 1 -0100110011 894.242 1 -0100110011 42,932 1 -0100110011 26.028 1 -0100110011 72.89 1 -0100110011 93.02 1 -0100110011 5.822 1 -0100110011 117.57 1 -0100110011 112.62 1 -0100110011 1.201 1 -0100110011 4.669 1 -0100110011 4.607 1 -0100110011 275.25 1 -0100110011 281.93 1 -0100110011 54.06 1 -0100110011 31.22 1 -0100110011 3.0725 1 -0100110011 30.95 1 -0100110011 67.45 1 -0100110011 46.90 1 -0100110011 182.75 1 -0100110011 374.6 1 -0100110011 6.4925 1 -0100110011 6.735 1 -0100110011 1.1395 1 -0100110011 785.48 1 -0100110011 P6 1 -0100110011 7.3146 1 -0100110011 6.3775 1 -0100110011 86.33 1 -0100110011 421.61 1 -0100110011 436.72 1 -0100110011 327.25 1 -0100110011 39.14 1 -0100110011 67.43 1 -0100110011 2.3825 1 -0100110011 89.71 1 -0100110011 94.36 1 -0100110011 1.2560 1 -0100110011 93.97 1 -0100110011 373.92 1 -0100110011 40.14 1 -0100110011 26.54 1 -0100110011 18.54 1 -0100110011 176,950 1 -0100110011 73.13 1 -0100110011 103.89 1 -0100110011 431.35 1 -0100110011 123.51 1 -0100110011 16.37 1 -0100110011 89.57 1 -0100110011 699.24 1 -0100110011 15,750 1 -0100110011 1:43 1 -0100110011 10:46 1 -0100110011 394.48 1 -0100110011 397.13 1 -0100110011 108.87 1 -0100110011 113.49 1 -0100110011 359.20 1 -0100110011 50.42 1 -0100110011 510.40 1 -0100110011 38.21 1 -0100110011 961.96 1 -0100110011 141.86 1 -0100110011 455.00 1 -0100110011 1.728 1 -0100110011 15.28 1 -0100110011 547.89 1 -0100110011 957,027 1 -0100110011 3.183 1 -0100110011 270.76 1 -0100110011 3.879 1 -0100110011 3.049 1 -0100110011 31.29 1 -0100110011 34.07 1 -0100110011 39.29 1 -0100110011 61.72 1 -0100110011 84.77 1 -0100110011 110.68 1 -0100110011 149.21 1 -0100110011 276.24 1 -0100110011 344.65 1 -0100110011 26.61 1 -0100110011 464.0 1 -0100110011 473.66 1 -0100110011 956.94 1 -0100110011 33.23 1 -0100110011 207.24 1 -0100110011 338.39 1 -0100110011 336.82 1 -0100110011 408.83 1 -0100110011 55-a-plate 1 -0100110011 37.33 1 -0100110011 273.1 1 -0100110011 2.157 1 -0100110011 23.61 1 -0100110011 24.96 1 -0100110011 33.18 1 -0100110011 6.239 1 -0100110011 474.70 1 -0100110011 612,122 1 -0100110011 83.82 1 -0100110011 121.98 1 -0100110011 151,300 1 -0100110011 278.78 1 -0100110011 387.42 1 -0100110011 51.76 1 -0100110011 240.79 1 -0100110011 431.15 1 -0100110011 2:20 1 -0100110011 5.675 1 -0100110011 1244 1 -0100110011 357.75 1 -0100110011 359.40 1 -0100110011 66.16 1 -0100110011 1.587 1 -0100110011 197.27 1 -0100110011 53.3322 1 -0100110011 127.28 1 -0100110011 173.96 1 -0100110011 797.70 1 -0100110011 7.655 1 -0100110011 8.154 1 -0100110011 8.362 1 -0100110011 800.4 1 -0100110011 49.19 1 -0100110011 441.30 1 -0100110011 701.87 1 -0100110011 150.74 1 -0100110011 84.85 1 -0100110011 347.07 1 -0100110011 93.47 1 -0100110011 8.35-a-share 1 -0100110011 586.2 1 -0100110011 30.39 1 -0100110011 28.68 1 -0100110011 273,636 1 -0100110011 10.3395 1 -0100110011 2.295 1 -0100110011 311.14 1 -0100110011 2.425 1 -0100110011 2.855 1 -0100110011 74,999 1 -0100110011 29,999 1 -0100110011 1.257 1 -0100110011 18.639 1 -0100110011 322,246 1 -0100110011 42,700 1 -0100110011 1.940 1 -0100110011 1.944 1 -0100110011 435.85 1 -0100110011 25.63 1 -0100110011 5.7625 1 -0100110011 3.4625 1 -0100110011 17.53 1 -0100110011 1.181 1 -0100110011 1.240 1 -0100110011 442.05 1 -0100110011 444.50 1 -0100110011 3.446 1 -0100110011 5.020 1 -0100110011 279.53 1 -0100110011 80.11 1 -0100110011 82.02 1 -0100110011 10:04 1 -0100110011 6.425 1 -0100110011 834,263 1 -0100110011 167.86 1 -0100110011 1,000:8.95 1 -0100110011 278.51 1 -0100110011 81.67 1 -0100110011 81.74 1 -0100110011 3.275 1 -0100110011 4.048 1 -0100110011 23.42 1 -0100110011 446.25 1 -0100110011 2.9528 1 -0100110011 3.7242 1 -0100110011 BEAZER 1 -0100110011 1,591 1 -0100110011 1,581 1 -0100110011 693.55 1 -0100110011 40.19 1 -0100110011 211.36 1 -0100110011 336.34 1 -0100110011 333.66 1 -0100110011 408.38 1 -0100110011 207.69 1 -0100110011 213.82 1 -0100110011 67.31 1 -0100110011 682.52 1 -0100110011 228.1 1 -0100110011 116.50 1 -0100110011 37.49 1 -0100110011 88.40 1 -0100110011 44,250 1 -0100110011 88.73 1 -0100110011 567.34 1 -0100110011 372.81 1 -0100110011 420.12 1 -0100110011 58.88 1 -0100110011 105.66 1 -0100110011 115.66 1 -0100110011 160.68 1 -0100110011 203.22 1 -0100110011 21.144 1 -0100110011 215.66 1 -0100110011 1.6575 1 -0100110011 358.55 1 -0100110011 899.4 1 -0100110011 264.18 1 -0100110011 91.12 1 -0100110011 124.27 1 -0100110011 150. 1 -0100110011 225.80 1 -0100110011 228.76 1 -0100110011 D15 1 -0100110011 74.36 1 -0100110011 45,841 1 -0100110011 1,502 1 -0100110011 1.035 1 -0100110011 6.1925 1 -0100110011 53. 1 -0100110011 1.867 1 -0100110011 81.69 1 -0100110011 372.85 1 -0100110011 388.6 1 -0100110011 11,810 1 -0100110011 14,775 1 -0100110011 163.90 1 -0100110011 25.97 1 -0100110011 38.84 1 -0100110011 3.415 1 -0100110011 30.33 1 -0100110011 135.56 1 -0100110011 388.74 1 -0100110011 1.680 1 -0100110011 72.16 1 -0100110011 288.67 1 -0100110011 14,238 1 -0100110011 64.40 1 -0100110011 65.039 1 -0100110011 45.96 1 -0100110011 64.899 1 -0100110011 359.60 1 -0100110011 358.88 1 -0100110011 1,222.81 1 -0100110011 124.11 1 -0100110011 62.13 1 -0100110011 815.77 1 -0100110011 35.34 1 -0100110011 446.70 1 -0100110011 1,069.42 1 -0100110011 1.3461 1 -0100110011 10.24. 1 -0100110011 336.50 1 -0100110011 54.71 1 -0100110011 1,821 1 -0100110011 455.45 1 -0100110011 6.2725 1 -0100110011 75.24 1 -0100110011 1:54 1 -0100110011 37.39 1 -0100110011 329.32 1 -0100110011 465.73 1 -0100110011 468.3 1 -0100110011 715.85 1 -0100110011 186.74 1 -0100110011 232.83 1 -0100110011 525.02 1 -0100110011 1,228.20 1 -0100110011 162.04 1 -0100110011 55.16 1 -0100110011 231.26 1 -0100110011 987.80 1 -0100110011 77.89 1 -0100110011 57.68 1 -0100110011 266.07 1 -0100110011 298.67 1 -0100110011 69.54 1 -0100110011 276.31 1 -0100110011 58.66 1 -0100110011 80.53 1 -0100110011 248.07 1 -0100110011 242.21 1 -0100110011 466.13 1 -0100110011 411.51 1 -0100110011 115.89 1 -0100110011 247.66 1 -0100110011 2.397 1 -0100110011 31.59 1 -0100110011 360.25 1 -0100110011 3.544 1 -0100110011 1.957 1 -0100110011 3.881 1 -0100110011 3.914 1 -0100110011 3.067 1 -0100110011 114.26 1 -0100110011 98.64 1 -0100110011 78.033 1 -0100110011 60.31 1 -0100110011 74.721 1 -0100110011 2,139 1 -0100110011 9.265 1 -0100110011 612.9 1 -0100110011 9.4375 1 -0100110011 22.03 1 -0100110011 80.90 1 -0100110011 65.00 1 -0100110011 717.19 1 -0100110011 1.988 1 -0100110011 600.33 1 -0100110011 24.81 1 -0100110011 71.09 1 -0100110011 455.35 1 -0100110011 347.19 1 -0100110011 276.85 1 -0100110011 81.78 1 -0100110011 114.07 1 -0100110011 8,608 1 -0100110011 356.95 1 -0100110011 216.31 1 -0100110011 380.17 1 -0100110011 998.58 1 -0100110011 123.21 1 -0100110011 506.98 1 -0100110011 530.89 1 -0100110011 411.97 1 -0100110011 408.62 1 -0100110011 23.91 1 -0100110011 64.96 1 -0100110011 94.11 1 -0100110011 17,930 1 -0100110011 17,329 1 -0100110011 17,240 1 -0100110011 73.14 1 -0100110011 117.55 1 -0100110011 83.24 1 -0100110011 453.50 1 -0100110011 6.8225 1 -0100110011 3.712 1 -0100110011 11,650 1 -0100110011 128,650 1 -0100110011 2.9417 1 -0100110011 2.9399 1 -0100110011 760.7 1 -0100110011 19,207 1 -0100110011 249.65 1 -0100110011 19,510 1 -0100110011 279.13 1 -0100110011 184.87 1 -0100110011 6.650 1 -0100110011 3.878 1 -0100110011 4.604 1 -0100110011 107.375 1 -0100110011 18.29 1 -0100110011 53.56 1 -0100110011 543.20 1 -0100110011 6.789 1 -0100110011 40.91 1 -0100110011 63.03 1 -0100110011 135.34 1 -0100110011 456.6 1 -0100110011 525.90 1 -0100110011 101.24 1 -0100110011 1.065 1 -0100110011 93.92 1 -0100110011 87.08 1 -0100110011 35.22 1 -0100110011 751.03 1 -0100110011 279.99 1 -0100110011 83.02 1 -0100110011 117.04 1 -0100110011 82.86 1 -0100110011 278.23 1 -0100110011 214.77 1 -0100110011 145,692 1 -0100110011 75.14 1 -0100110011 10-million-plus 1 -0100110011 1.120 1 -0100110011 77.95 1 -0100110011 336.03 1 -0100110011 2.432 1 -0100110011 979.69 1 -0100110011 84.86 1 -0100110011 35.28 1 -0100110011 2,354 1 -0100110011 1.698 1 -0100110011 47.15 1 -0100110011 11.455 1 -0100110011 4.123 1 -0100110011 6.444 1 -0100110011 535.90 1 -0100110011 1,000:8.87 1 -0100110011 1,154.29 1 -0100110011 1,594,000 1 -0100110011 112.23 1 -0100110011 31.34 1 -0100110011 792.71 1 -0100110011 109.26 1 -0100110011 389.77 1 -0100110011 392.74 1 -0100110011 44.70 1 -0100110011 83.89 1 -0100110011 109.74 1 -0100110011 62.04 1 -0100110011 75.15 1 -0100110011 1.369 1 -0100110011 1.188 1 -0100110011 65.81 1 -0100110011 3:38 1 -0100110011 89.74 1 -0100110011 450.30 1 -0100110011 297.75 1 -0100110011 528.60 1 -0100110011 6.407 1 -0100110011 410.59 1 -0100110011 42,425 1 -0100110011 250.81 1 -0100110011 410.02 1 -0100110011 361.60 1 -0100110011 7.403 1 -0100110011 71.64 1 -0100110011 1.704 1 -0100110011 47.52 1 -0100110011 11.985 1 -0100110011 3:32 1 -0100110011 4,337 1 -0100110011 3.9125 1 -0100110011 361.70 1 -0100110011 360.07 1 -0100110011 36.05 1 -0100110011 35.88 1 -0100110011 619.19 1 -0100110011 40.47 1 -0100110011 450.50 1 -0100110011 12:44 1 -0100110011 8.437 1 -0100110011 4.725 1 -0100110011 83.21 1 -0100110011 68.74 1 -0100110011 206.33 1 -0100110011 432.50 1 -0100110011 266.35 1 -0100110011 462.88 1 -0100110011 1.097 1 -0100110011 349.89 1 -0100110011 716.41 1 -0100110011 1.2405 1 -0100110011 4.807 1 -0100110011 949.3 1 -0100110011 25.12 1 -0100110011 40.57 1 -0100110011 101.72 1 -0100110011 42.85 1 -0100110011 12:05 1 -0100110011 3.549 1 -0100110011 3.581 1 -0100110011 367.30 1 -0100110011 8.005 1 -0100110011 1.2078 1 -0100110011 1.0168 1 -0100110011 429.25 1 -0100110011 542.40 1 -0100110011 2.856 1 -0100110011 117.81 1 -0100110011 1.1453 1 -0100110011 1.3295 1 -0100110011 209.66 1 -0100110011 209.39 1 -0100110011 40,465 1 -0100110011 120.23 1 -0100110011 400.96 1 -0100110011 398.63 1 -0100110011 328.55 1 -0100110011 206.39 1 -0100110011 1022 1 -0100110011 2986 1 -0100110011 .75 1 -0100110011 36.08 1 -0100110011 84.66 1 -0100110011 479.71 1 -0100110011 431.10 1 -0100110011 330.44 1 -0100110011 405.48 1 -0100110011 116.33 1 -0100110011 114.66 1 -0100110011 40.02 1 -0100110011 551.8 1 -0100110011 36,350 1 -0100110011 431.80 1 -0100110011 29,250 1 -0100110011 32,850 1 -0100110011 40.185 1 -0100110011 117.06 1 -0100110011 34.66 1 -0100110011 63.23 1 -0100110011 23.72 1 -0100110011 221,000,000 1 -0100110011 433.45 1 -0100110011 37.77 1 -0100110011 109.08 1 -0100110011 6.855 1 -0100110011 67.74 1 -0100110011 115.37 1 -0100110011 361.75 1 -0100110011 44.10 1 -0100110011 620.5 1 -0100110011 579.8 1 -0100110011 1.479 1 -0100110011 3.214 1 -0100110011 4.042 1 -0100110011 436.10 1 -0100110011 435.60 1 -0100110011 23.85 1 -0100110011 121.08 1 -0100110011 40.027 1 -0100110011 41.35 1 -0100110011 15.47 1 -0100110011 435.55 1 -0100110011 20.65 1 -0100110011 52.92 1 -0100110011 25,614 1 -0100110011 343.8 1 -0100110011 697.54 1 -0100110011 634.51 1 -0100110011 93.56 1 -0100110011 87.76 1 -0100110011 31.98 1 -0100110011 60.701 1 -0100110011 41.02 1 -0100110011 904.54 1 -0100110011 251.17 1 -0100110011 33.87 1 -0100110011 170.29 1 -0100110011 63.98 1 -0100110011 255,216 1 -0100110011 440.20 1 -0100110011 282.65 1 -0100110011 728.39 1 -0100110011 723.97 1 -0100110011 483.68 1 -0100110011 479.53 1 -0100110011 143.73 1 -0100110011 682,038 1 -0100110011 26.62 1 -0100110011 26.03 1 -0100110011 36.33 1 -0100110011 128.54 1 -0100110011 187.16 1 -0100110011 167.96 1 -0100110011 58.62 1 -0100110011 447.50 1 -0100110011 73.625 1 -0100110011 88,550 1 -0100110011 436.40 1 -0100110011 1.3547 1 -0100110011 254.02 1 -0100110011 Botsvadze 1 -0100110011 5,467 1 -0100110011 1,467 1 -0100110011 68.13 1 -0100110011 7,442 1 -0100110011 484.55 1 -0100110011 9:01 1 -0100110011 381.83 1 -0100110011 440.35 1 -0100110011 12:18 1 -0100110011 12:50 1 -0100110011 9.595 1 -0100110011 264.94 1 -0100110011 114.17 1 -0100110011 82.65 1 -0100110011 266.33 1 -0100110011 610.11 1 -0100110011 1.339 1 -0100110011 5:54 1 -0100110011 1:24 1 -0100110011 11:31 1 -0100110011 33.11 1 -0100110011 104.10 1 -0100110011 869.45 1 -0100110011 14.151 1 -0100110011 2.118 1 -0100110011 644,850 1 -0100110011 132.77 1 -0100110011 3:37 1 -0100110011 266.61 1 -0100110011 82.93 1 -0100110011 29.89 1 -0100110011 556.10 1 -0100110011 338.35 1 -0100110011 12.3875 1 -0100110011 492,018 1 -0100110011 81.48 1 -0100110011 71.61 1 -0100110011 300.67 1 -0100110011 368.79 1 -0100110011 130.789 1 -0100110011 182.04 1 -0100110011 677.9 1 -0100110011 120.36 1 -0100110011 757.66 1 -0100110011 799.12 1 -0100110011 637.30 1 -0100110011 681.12 1 -0100110011 21,264 1 -0100110011 21,780 1 -0100110011 24,540 1 -0100110011 18,358 1 -0100110011 1,884 1 -0100110011 504.60 1 -0100110011 854.51 1 -0100110011 83.43 1 -0100110011 284.25 1 -0100110011 9,624 1 -0100110011 142,956 1 -0100110011 364.24 1 -0100110011 512.40 1 -0100110011 9,070,000 1 -0100110011 189.92 1 -0100110011 FM21 1 -0100110011 FM9.4 1 -0100110011 FM12.6 1 -0100110011 769.29 1 -0100110011 110.35 1 -0100110011 340,124 1 -0100110011 380.42 1 -0100110011 444.70 1 -0100110011 442.93 1 -0100110011 113.87 1 -0100110011 112.14 1 -0100110011 324.85 1 -0100110011 482.25 1 -0100110011 11:38 1 -0100110011 4:00 1 -0100110011 3,737 1 -0100110011 15,430 1 -0100110011 357.70 1 -0100110011 260.23 1 -0100110011 A2.14 1 -0100110011 430.90 1 -0100110011 19,278 1 -0100110011 69.22 1 -0100110011 268.56 1 -0100110011 DM33 1 -0100110011 143.21 1 -0100110011 106.32 1 -0100110011 337.03 1 -0100110011 2.4325 1 -0100110011 152.26 1 -0100110011 348.94 1 -0100110011 8.515 1 -0100110011 2.7725 1 -0100110011 554.00 1 -0100110011 546.20 1 -0100110011 253.98 1 -0100110011 578.64 1 -0100110011 534.70 1 -0100110011 142.91 1 -0100110011 844.43 1 -0100110011 883.70 1 -0100110011 741.67 1 -0100110011 86.56 1 -0100110011 41.44 1 -0100110011 12,182 1 -0100110011 7.373 1 -0100110011 429.90 1 -0100110011 61.71 1 -0100110011 431.00 1 -0100110011 30.88 1 -0100110011 2:57 1 -0100110011 429.55 1 -0100110011 26.93 1 -0100110011 43.00 1 -0100110011 17,904 1 -0100110011 716.59 1 -0100110011 26.81 1 -0100110011 43.909 1 -0100110011 30.77 1 -0100110011 76.72 1 -0100110011 154,900 1 -0100110011 71,300 1 -0100110011 1.1250 1 -0100110011 2.567 1 -0100110011 51.782 1 -0100110011 51.620 1 -0100110011 32.49 1 -0100110011 6.6650 1 -0100110011 363.70 1 -0100110011 108,790 1 -0100110011 282.31 1 -0100110011 24,968,000 1 -0100110011 547.70 1 -0100110011 321.47 1 -0100110011 432.70 1 -0100110011 26.31 1 -0100110011 71.83 1 -0100110011 25.66 1 -0100110011 33.22 1 -0100110011 110.48 1 -0100110011 29.52 1 -0100110011 337.79 1 -0100110011 33,622 1 -0100110011 31.48 1 -0100110011 366.85 1 -0100110011 10.318 1 -0100110011 1.115 1 -0100110011 5.448 1 -0100110011 2.818 1 -0100110011 1.934 1 -0100110011 7.349 1 -0100110011 73.11 1 -0100110011 372.15 1 -0100110011 4.724 1 -0100110011 387.8 1 -0100110011 305.30 1 -0100110011 4,734.9 1 -0100110011 2,831.1 1 -0100110011 2,605.2 1 -0100110011 3,290,000 1 -0100110011 1:16 1 -0100110011 211.40 1 -0100110011 123.53 1 -0100110011 269.06 1 -0100110011 85.37 1 -0100110011 69.68 1 -0100110011 229.21 1 -0100110011 59.27 1 -0100110011 6.183 1 -0100110011 363.95 1 -0100110011 60.24 1 -0100110011 47.14 1 -0100110011 254.97 1 -0100110011 75.694 1 -0100110011 75.992 1 -0100110011 551.20 1 -0100110011 1.2632 1 -0100110011 31.47 1 -0100110011 433.60 1 -0100110011 432.90 1 -0100110011 24,805 1 -0100110011 434.90 1 -0100110011 434.25 1 -0100110011 432.40 1 -0100110011 432.20 1 -0100110011 24.14 1 -0100110011 291.38 1 -0100110011 200.55 1 -0100110011 86.12 1 -0100110011 194.22 1 -0100110011 39.36 1 -0100110011 32.74 1 -0100110011 361.44 1 -0100110011 430.40 1 -0100110011 430.60 1 -0100110011 3.045 1 -0100110011 29,586 1 -0100110011 3.278 1 -0100110011 6:05 1 -0100110011 105,374 1 -0100110011 25.72 1 -0100110011 427.40 1 -0100110011 113,768 1 -0100110011 8.5575 1 -0100110011 522.30 1 -0100110011 138.45 1 -0100110011 55.79 1 -0100110011 29.61 1 -0100110011 61.66 1 -0100110011 1,000:8.65 1 -0100110011 82.89 1 -0100110011 264.72 1 -0100110011 7.697 1 -0100110011 35.80 1 -0100110011 26.65 1 -0100110011 9.190 1 -0100110011 15,426,000 1 -0100110011 1.075 1 -0100110011 5.063 1 -0100110011 237.34 1 -0100110011 2.3325 1 -0100110011 108.79 1 -0100110011 638.57 1 -0100110011 370.75 1 -0100110011 4,157,231 1 -0100110011 244.77 1 -0100110011 18,629 1 -0100110011 53,100 1 -0100110011 36.675 1 -0100110011 36,275 1 -0100110011 365.75 1 -0100110011 490.59 1 -0100110011 733.93 1 -0100110011 69.53 1 -0100110011 483.58 1 -0100110011 237.21 1 -0100110011 536.30 1 -0100110011 6.7850 1 -0100110011 8.865 1 -0100110011 14.475 1 -0100110011 1.173 1 -0100110011 65.90 1 -0100110011 5.5675 1 -0100110011 802,350 1 -0100110011 4.0625 1 -0100110011 74,375 1 -0100110011 429.20 1 -0100110011 535.80 1 -0100110011 362.85 1 -0100110011 363.10 1 -0100110011 4.777 1 -0100110011 230.11 1 -0100110011 265.55 1 -0100110011 68.64 1 -0100110011 35,108 1 -0100110011 848,250 1 -0100110011 476.95 1 -0100110011 476.00 1 -0100110011 27.73 1 -0100110011 1.143 1 -0100110011 63.66 1 -0100110011 3.119 1 -0100110011 3.954 1 -0100110011 443.00 1 -0100110011 443.62 1 -0100110011 3,225 1 -0100110011 3.915 1 -0100110011 914,849 1 -0100110011 37.02 1 -0100110011 837.37 1 -0100110011 69.63 1 -0100110011 443.90 1 -0100110011 368.30 1 -0100110011 266.375 1 -0100110011 3.166 1 -0100110011 82,340 1 -0100110011 555.10 1 -0100110011 283.10 1 -0100110011 3.575 1 -0100110011 4.0875 1 -0100110011 .76 1 -0100110011 68.16 1 -0100110011 76.53 1 -0100110011 5.925 1 -0100110011 4.791 1 -0100110011 2.180 1 -0100110011 76.82 1 -0100110011 840.50 1 -0100110011 94.00 1 -0100110011 567.60 1 -0100110011 453.00 1 -0100110011 23.52 1 -0100110011 64.79 1 -0100110011 478.25 1 -0100110011 1.351 1 -0100110011 1,095.90 1 -0100110011 19.02 1 -0100110011 44.87 1 -0100110011 28.73 1 -0100110011 266.28 1 -0100110011 81.83 1 -0100110011 70.95 1 -0100110011 15,454 1 -0100110011 258.95 1 -0100110011 447.65 1 -0100110011 106.23 1 -0100110011 9:33 1 -0100110011 27.46 1 -0100110011 264.36 1 -0100110011 125.77 1 -0100110011 21.62 1 -0100110011 156.15 1 -0100110011 9:41 1 -0100110011 810.8 1 -0100110011 805.3 1 -0100110011 217.97 1 -0100110011 1.078 1 -0100110011 111.35 1 -0100110011 271.51 1 -0100110011 79.15 1 -0100110011 242.02 1 -0100110011 53,400 1 -0100110011 62.47 1 -0100110011 251.75 1 -0100110011 782.036 1 -0100110011 16.937 1 -0100110011 31.262 1 -0100110011 24.104 1 -0100110011 368.23 1 -0100110011 269.24 1 -0100110011 1.536 1 -0100110011 1.341 1 -0100110011 1.168 1 -0100110011 1.071 1 -0100110011 261.93 1 -0100110011 74.94 1 -0100110011 283.13 1 -0100110011 78.39 1 -0100110011 344.36 1 -0100110011 88.34 1 -0100110011 9.234 1 -0100110011 13.914 1 -0100110011 485.75 1 -0100110011 437.20 1 -0100110011 437.45 1 -0100110011 285.16 1 -0100110011 3.8125 1 -0100110011 43.86 1 -0100110011 39.92 1 -0100110011 83.78 1 -0100110011 440.50 1 -0100110011 366.55 1 -0100110011 33.80 1 -0100110011 1.0023 1 -0100110011 1.1964 1 -0100110011 1.2978 1 -0100110011 15.247 1 -0100110011 50.39 1 -0100110011 9.055 1 -0100110011 437.50 1 -0100110011 438.25 1 -0100110011 246.37 1 -0100110011 79.43 1 -0100110011 114.02 1 -0100110011 268.4 1 -0100110011 347.58 1 -0100110011 369.70 1 -0100110011 88.18 1 -0100110011 538.12 1 -0100110011 69.14 1 -0100110011 239.24 1 -0100110011 76.80 1 -0100110011 31.83 1 -0100110011 229.12 1 -0100110011 436.35 1 -0100110011 209.24 1 -0100110011 123.03 1 -0100110011 1.993 1 -0100110011 1.908 1 -0100110011 NZ23 1 -0100110011 64,902 1 -0100110011 64,727 1 -0100110011 1.889 1 -0100110011 49,260 1 -0100110011 39.31 1 -0100110011 106.07 1 -0100110011 12.660 1 -0100110011 10,850 1 -0100110011 5,797 1 -0100110011 6.4375 1 -0100110011 315.75 1 -0100110011 179.70 1 -0100110011 79.76 1 -0100110011 81.09 1 -0100110011 273.55 1 -0100110011 2.695 1 -0100110011 478.77 1 -0100110011 109.70 1 -0100110011 13.060 1 -0100110011 1.483 1 -0100110011 32.057 1 -0100110011 7.685 1 -0100110011 84.09 1 -0100110011 594.12 1 -0100110011 111.78 1 -0100110011 723.72 1 -0100110011 478.75 1 -0100110011 1,212.63 1 -0100110011 25.11 1 -0100110011 25.71 1 -0100110011 131.88 1 -0100110011 41.97 1 -0100110011 56.07 1 -0100110011 24.62 1 -0100110011 38.89 1 -0100110011 86.39 1 -0100110011 9.255 1 -0100110011 452.90 1 -0100110011 449.60 1 -0100110011 116.18 1 -0100110011 124.19 1 -0100110011 l3.4 1 -0100110011 1,407 1 -0100110011 20.07 1 -0100110011 5,187 1 -0100110011 203.49 1 -0100110011 2461 1 -0100110011 38.58 1 -0100110011 26.22 1 -0100110011 .00 1 -0100110011 366.30 1 -0100110011 368.40 1 -0100110011 166.32 1 -0100110011 477.95 1 -0100110011 63.11 1 -0100110011 39.39 1 -0100110011 629.13 1 -0100110011 616.17 1 -0100110011 18.95. 1 -0100110011 38.62 1 -0100110011 31.44 1 -0100110011 83.58 1 -0100110011 229.23 1 -0100110011 1.997 1 -0100110011 32.02 1 -0100110011 2.2975 1 -0100110011 706.57 1 -0100110011 443.89 1 -0100110011 5,960.15 1 -0100110011 171.43 1 -0100110011 365.70 1 -0100110011 1.384 1 -0100110011 60.92 1 -0100110011 709.27 1 -0100110011 674.23 1 -0100110011 263.11 1 -0100110011 374.10 1 -0100110011 11.722 1 -0100110011 108.76 1 -0100110011 146.26 1 -0100110011 85.48 1 -0100110011 340.51 1 -0100110011 127.49 1 -0100110011 119.88 1 -0100110011 35.57 1 -0100110011 83.26 1 -0100110011 581.78 1 -0100110011 1,970.25 1 -0100110011 18,550 1 -0100110011 21.11 1 -0100110011 178,450 1 -0100110011 2.783 1 -0100110011 366.11 1 -0100110011 374.90 1 -0100110011 2.773 1 -0100110011 1.985 1 -0100110011 1.0210 1 -0100110011 3.138 1 -0100110011 847.46 1 -0100110011 804.02 1 -0100110011 110.54 1 -0100110011 10.99-a-share 1 -0100110011 6,184 1 -0100110011 174.61 1 -0100110011 36.02 1 -0100110011 390.36 1 -0100110011 568.80 1 -0100110011 34,328 1 -0100110011 57.56 1 -0100110011 3,006 1 -0100110011 1.381 1 -0100110011 5:40 1 -0100110011 23.07 1 -0100110011 778,100 1 -0100110011 21.96 1 -0100110011 6.9370 1 -0100110011 482.55 1 -0100110011 53.05 1 -0100110011 10,599 1 -0100110011 391.65 1 -0100110011 52.54 1 -0100110011 43.83 1 -0100110011 303.15 1 -0100110011 373.32 1 -0100110011 309.91 1 -0100110011 48.72 1 -0100110011 368.74 1 -0100110011 385.60 1 -0100110011 2.3375 1 -0100110011 3.995 1 -0100110011 5.705 1 -0100110011 453.68 1 -0100110011 2.2775 1 -0100110011 436.80 1 -0100110011 439.75 1 -0100110011 95.58 1 -0100110011 1:35 1 -0100110011 0.390625 1 -0100110011 126.27 1 -0100110011 731.67 1 -0100110011 367.10 1 -0100110011 255.97 1 -0100110011 23.22 1 -0100110011 236.70 1 -0100110011 36.51 1 -0100110011 21.20 1 -0100110011 1.415 1 -0100110011 48.88 1 -0100110011 1,823.8 1 -0100110011 5,587.6 1 -0100110011 7,192.8 1 -0100110011 6,288.9 1 -0100110011 10.811 1 -0100110011 631.77 1 -0100110011 254.25 1 -0100110011 438.90 1 -0100110011 31.79 1 -0100110011 158.15 1 -0100110011 39.20 1 -0100110011 494.93 1 -0100110011 1.174 1 -0100110011 63.19 1 -0100110011 434.59 1 -0100110011 438.75 1 -0100110011 15.471 1 -0100110011 434.60 1 -0100110011 780.84 1 -0100110011 516.43 1 -0100110011 231.89 1 -0100110011 182.74 1 -0100110011 779.74 1 -0100110011 2.816 1 -0100110011 383.47 1 -0100110011 368.60 1 -0100110011 11,032 1 -0100110011 264.84 1 -0100110011 81.76 1 -0100110011 113.44 1 -0100110011 69.64 1 -0100110011 370.70 1 -0100110011 1.745 1 -0100110011 349.23 1 -0100110011 1.197 1 -0100110011 500.60 1 -0100110011 152.07 1 -0100110011 1.805 1 -0100110011 83.76 1 -0100110011 162,971 1 -0100110011 159,860 1 -0100110011 22.57 1 -0100110011 134,250 1 -0100110011 364.18 1 -0100110011 250,958 1 -0100110011 239.91 1 -0100110011 265.51 1 -0100110011 15.29 1 -0100110011 438.30 1 -0100110011 438.10 1 -0100110011 233.56 1 -0100110011 490.34 1 -0100110011 26.69 1 -0100110011 407.1 1 -0100110011 21.512 1 -0100110011 29.88 1 -0100110011 729,180 1 -0100110011 343.2 1 -0100110011 60,585 1 -0100110011 19.34 2 -0100110011 27.56 2 -0100110011 407.90 2 -0100110011 1.195 2 -0100110011 26.10 2 -0100110011 117.37 2 -0100110011 47.96 2 -0100110011 17.34 2 -0100110011 16.89 2 -0100110011 56.51 2 -0100110011 175.85 2 -0100110011 62.35 2 -0100110011 56.99 2 -0100110011 135.11 2 -0100110011 32.4156 2 -0100110011 42.31 2 -0100110011 15.55 2 -0100110011 47.11 2 -0100110011 2.892 2 -0100110011 28.90 2 -0100110011 32.28 2 -0100110011 488.35 2 -0100110011 27.01 2 -0100110011 153.71 2 -0100110011 269.34 2 -0100110011 22.85 2 -0100110011 1944-46 2 -0100110011 379.7 2 -0100110011 187.50 2 -0100110011 IPAC 2 -0100110011 4:45 2 -0100110011 37.89 2 -0100110011 35.07 2 -0100110011 1.371 2 -0100110011 56.24 2 -0100110011 345.00 2 -0100110011 34.64 2 -0100110011 2.601 2 -0100110011 3.315 2 -0100110011 1.438 2 -0100110011 108.39 2 -0100110011 23.70 2 -0100110011 411.30 2 -0100110011 123.77 2 -0100110011 462.25 2 -0100110011 3.4886 2 -0100110011 114.32 2 -0100110011 318.4 2 -0100110011 119.41 2 -0100110011 22.54 2 -0100110011 29.22 2 -0100110011 368.10 2 -0100110011 367.80 2 -0100110011 305.86 2 -0100110011 38.03 2 -0100110011 28.55 2 -0100110011 53.53 2 -0100110011 23.41 2 -0100110011 18.84 2 -0100110011 129.87 2 -0100110011 15.37 2 -0100110011 92.87 2 -0100110011 219.22 2 -0100110011 4.864 2 -0100110011 18.06 2 -0100110011 30.29 2 -0100110011 275.85 2 -0100110011 129.62 2 -0100110011 25.85 2 -0100110011 69.21 2 -0100110011 24.47 2 -0100110011 34.27 2 -0100110011 19.33 2 -0100110011 409.20 2 -0100110011 417.64 2 -0100110011 60.65 2 -0100110011 24.11 2 -0100110011 77.59 2 -0100110011 2.685 2 -0100110011 23.40 2 -0100110011 11:05 2 -0100110011 106.93 2 -0100110011 64.99 2 -0100110011 104.04 2 -0100110011 106.63 2 -0100110011 19.67 2 -0100110011 22.33 2 -0100110011 26.37 2 -0100110011 17.22 2 -0100110011 24.58 2 -0100110011 368.20 2 -0100110011 40.89 2 -0100110011 72.86 2 -0100110011 17.06 2 -0100110011 37.12 2 -0100110011 104.51 2 -0100110011 23.17 2 -0100110011 64.59 2 -0100110011 9:55 2 -0100110011 7:55 2 -0100110011 18.26 2 -0100110011 109.23 2 -0100110011 47.858 2 -0100110011 267.84 2 -0100110011 11,389 2 -0100110011 1.214 2 -0100110011 165.75 2 -0100110011 31.23 2 -0100110011 128.61 2 -0100110011 18.16 2 -0100110011 621.44 2 -0100110011 1215.22 2 -0100110011 402.55 2 -0100110011 60.47 2 -0100110011 14.96 2 -0100110011 37.66 2 -0100110011 43.61 2 -0100110011 2.868 2 -0100110011 28.79 2 -0100110011 98.68 2 -0100110011 96.37 2 -0100110011 59.01 2 -0100110011 111.98 2 -0100110011 109.05 2 -0100110011 164.24 2 -0100110011 24.33 2 -0100110011 107.42 2 -0100110011 105.61 2 -0100110011 21.51 2 -0100110011 3.508 2 -0100110011 .46 2 -0100110011 250.99 2 -0100110011 63.44 2 -0100110011 14.11 2 -0100110011 92.91 2 -0100110011 19.01 2 -0100110011 1.274 2 -0100110011 45.84 2 -0100110011 19.28 2 -0100110011 57.33 2 -0100110011 26.71 2 -0100110011 454.25 2 -0100110011 114.94 2 -0100110011 35.78 2 -0100110011 5.5225 2 -0100110011 481.55 2 -0100110011 45.45 2 -0100110011 1.475 2 -0100110011 83.94 2 -0100110011 106.41 2 -0100110011 25.91 2 -0100110011 81.01 2 -0100110011 61.57 2 -0100110011 21.31 2 -0100110011 26.32 2 -0100110011 4.407 2 -0100110011 4:20 2 -0100110011 115.13 2 -0100110011 10.825 2 -0100110011 61.55 2 -0100110011 172.41 2 -0100110011 173.18 2 -0100110011 .95 2 -0100110011 29.49 2 -0100110011 29.51 2 -0100110011 38.39 2 -0100110011 457.85 2 -0100110011 5:55 2 -0100110011 5.455 2 -0100110011 54.13 2 -0100110011 445.25 2 -0100110011 126.97 2 -0100110011 122.875 2 -0100110011 402.30 2 -0100110011 388.70 2 -0100110011 27.59 2 -0100110011 404.60 2 -0100110011 364.45 2 -0100110011 119.25 2 -0100110011 31.18 2 -0100110011 83.64 2 -0100110011 20,594 2 -0100110011 25.69 2 -0100110011 100,001 2 -0100110011 56.60 2 -0100110011 458.50 2 -0100110011 115.72 2 -0100110011 85.53 2 -0100110011 23.09 2 -0100110011 27.39 2 -0100110011 31.62 2 -0100110011 61.59 2 -0100110011 220.92 2 -0100110011 34.81 2 -0100110011 2.179 2 -0100110011 15.13 2 -0100110011 82.67 2 -0100110011 208.50 2 -0100110011 86.69 2 -0100110011 988.84 2 -0100110011 1.171 2 -0100110011 1.158 2 -0100110011 902.68 2 -0100110011 24.82 2 -0100110011 1.016 2 -0100110011 115.52 2 -0100110011 1.245 2 -0100110011 25.05 2 -0100110011 13.94 2 -0100110011 92.70 2 -0100110011 34.11 2 -0100110011 26.47 2 -0100110011 28.81 2 -0100110011 1.149 2 -0100110011 1.354 2 -0100110011 239.33 2 -0100110011 823.99 2 -0100110011 28.72 2 -0100110011 28.29 2 -0100110011 35.21 2 -0100110011 126.74 2 -0100110011 35.60 2 -0100110011 457.55 2 -0100110011 84.49 2 -0100110011 1.691 2 -0100110011 33.46 2 -0100110011 55.46 2 -0100110011 53.37 2 -0100110011 48.06 2 -0100110011 144.29 2 -0100110011 34.96 2 -0100110011 126.54 2 -0100110011 209.16 2 -0100110011 24.63 2 -0100110011 29.79 2 -0100110011 25.81 2 -0100110011 42.24 2 -0100110011 28.44 2 -0100110011 366.20 2 -0100110011 58.70 2 -0100110011 29.06 2 -0100110011 126.59 2 -0100110011 1,000:8.80 2 -0100110011 114.36 2 -0100110011 23.27 2 -0100110011 38.32 2 -0100110011 377.58 2 -0100110011 30.16 2 -0100110011 1.789 2 -0100110011 3.565 2 -0100110011 51.17 2 -0100110011 144.81 2 -0100110011 30.54 2 -0100110011 197.43 2 -0100110011 320.80 2 -0100110011 114.29 2 -0100110011 19.36 2 -0100110011 198.67 2 -0100110011 19.52 2 -0100110011 16.98 2 -0100110011 555.4 2 -0100110011 71.31 2 -0100110011 3.441 2 -0100110011 16.02 2 -0100110011 114.88 2 -0100110011 25.79 2 -0100110011 68.94 2 -0100110011 1.374 2 -0100110011 126.26 2 -0100110011 34.18 2 -0100110011 3.308 2 -0100110011 380.04 2 -0100110011 88.32 2 -0100110011 20.44 2 -0100110011 53.65 2 -0100110011 406.40 2 -0100110011 23,300 2 -0100110011 346.33 2 -0100110011 363.90 2 -0100110011 23.02 2 -0100110011 3.548 2 -0100110011 48.54 2 -0100110011 26.70 2 -0100110011 124.79 2 -0100110011 14.89 2 -0100110011 63.46 2 -0100110011 456.75 2 -0100110011 108.14 2 -0100110011 245.09 2 -0100110011 276.01 2 -0100110011 109.85 2 -0100110011 114.47 2 -0100110011 56.14 2 -0100110011 46.12 2 -0100110011 68.90 2 -0100110011 22.92 2 -0100110011 21.49 2 -0100110011 7.285 2 -0100110011 34.39 2 -0100110011 774.2 2 -0100110011 505.70 2 -0100110011 356.87 2 -0100110011 277.81 2 -0100110011 383.76 2 -0100110011 1.413 2 -0100110011 159.23 2 -0100110011 23.94 2 -0100110011 108,346 2 -0100110011 36.81 2 -0100110011 458.45 2 -0100110011 437.80 2 -0100110011 47.28 2 -0100110011 131.76 2 -0100110011 154.03 2 -0100110011 21.93 2 -0100110011 37.37 2 -0100110011 162,700 2 -0100110011 1.176 2 -0100110011 1.090 2 -0100110011 1.308 2 -0100110011 221.14 2 -0100110011 2:05 2 -0100110011 40.70 2 -0100110011 848.4 2 -0100110011 81.94 2 -0100110011 22.21 2 -0100110011 35.93 2 -0100110011 381.45 2 -0100110011 45.79 2 -0100110011 22.61 2 -0100110011 21.80 2 -0100110011 165.32 2 -0100110011 69.48 2 -0100110011 92.56 2 -0100110011 16.16 2 -0100110011 256.84 2 -0100110011 115.19 2 -0100110011 811.15 2 -0100110011 39.45 2 -0100110011 414.5 2 -0100110011 20.55 2 -0100110011 69.06 2 -0100110011 17.48 2 -0100110011 1.382 2 -0100110011 45.07 2 -0100110011 2.911 2 -0100110011 75.90 2 -0100110011 146.18 2 -0100110011 38.91 2 -0100110011 29.81 2 -0100110011 26.17 2 -0100110011 24.44 2 -0100110011 20.19 2 -0100110011 451.80 2 -0100110011 447.70 2 -0100110011 128.34 2 -0100110011 62.56 2 -0100110011 471.25 2 -0100110011 46.15 2 -0100110011 3.623 2 -0100110011 159.37 2 -0100110011 448.60 2 -0100110011 73.60 2 -0100110011 7:42 2 -0100110011 372.50 2 -0100110011 30.18 2 -0100110011 42.34 2 -0100110011 28.06 2 -0100110011 25.08 2 -0100110011 51.82 2 -0100110011 46.47 2 -0100110011 27.88 2 -0100110011 450.4 2 -0100110011 2,012 2 -0100110011 23.71 2 -0100110011 20.97 2 -0100110011 31.10 2 -0100110011 268.26 2 -0100110011 450.70 2 -0100110011 38.45 2 -0100110011 109.91 2 -0100110011 33.52 2 -0100110011 49.67 2 -0100110011 1.019 2 -0100110011 901.75 2 -0100110011 506.20 2 -0100110011 60.98 2 -0100110011 465.05 2 -0100110011 .89 2 -0100110011 16.45 2 -0100110011 71.72 2 -0100110011 48.53 2 -0100110011 18.53 2 -0100110011 35.91 2 -0100110011 38.94 2 -0100110011 56.68 2 -0100110011 19.78 2 -0100110011 375.43 2 -0100110011 35.24 2 -0100110011 245.56 2 -0100110011 115.78 2 -0100110011 3.425 2 -0100110011 22.70 2 -0100110011 65.85 2 -0100110011 3.924 2 -0100110011 3.341 2 -0100110011 255.73 2 -0100110011 77.14 2 -0100110011 84.30 2 -0100110011 25.29 2 -0100110011 26.40 2 -0100110011 34.19 2 -0100110011 21.64 2 -0100110011 10:20 2 -0100110011 247.41 2 -0100110011 33.86 2 -0100110011 35.65 2 -0100110011 203.45 2 -0100110011 390.21 2 -0100110011 204.56 2 -0100110011 103.62 2 -0100110011 104.89 2 -0100110011 1.266 2 -0100110011 148.92 2 -0100110011 29.15 2 -0100110011 468.80 2 -0100110011 394.34 2 -0100110011 195.74 2 -0100110011 29.36 2 -0100110011 32.63 2 -0100110011 63.56 2 -0100110011 25.14 2 -0100110011 610.25 2 -0100110011 43.63 2 -0100110011 31.42 2 -0100110011 20.37 2 -0100110011 29.69 2 -0100110011 563.87 2 -0100110011 366.65 2 -0100110011 139.11 2 -0100110011 37.40 2 -0100110011 28.92 2 -0100110011 63.21 2 -0100110011 24.40 2 -0100110011 70.35 2 -0100110011 19.82 2 -0100110011 1.747 2 -0100110011 1.713 2 -0100110011 39.08 2 -0100110011 92.15 2 -0100110011 1.050 2 -0100110011 6,397 2 -0100110011 76.02 2 -0100110011 20.47 2 -0100110011 35.40 2 -0100110011 136.54 2 -0100110011 216.08 2 -0100110011 30.36 2 -0100110011 1.446 2 -0100110011 48.99 2 -0100110011 80.86 2 -0100110011 205.91 2 -0100110011 133.21 2 -0100110011 288.55 2 -0100110011 181.13 2 -0100110011 35.01 2 -0100110011 48.94 2 -0100110011 51.06 2 -0100110011 298.07 2 -0100110011 79.41 2 -0100110011 34.35 2 -0100110011 1,725 2 -0100110011 1.086 2 -0100110011 19.00 2 -0100110011 398.40 2 -0100110011 47.12 2 -0100110011 138.74 2 -0100110011 107.48 2 -0100110011 60.59 2 -0100110011 398.10 2 -0100110011 38.49 2 -0100110011 416.68 2 -0100110011 272.06 2 -0100110011 353.95 2 -0100110011 7.073 2 -0100110011 18.11 2 -0100110011 24.94 2 -0100110011 431.50 2 -0100110011 451.75 2 -0100110011 542.9 2 -0100110011 17.96 2 -0100110011 47.79 2 -0100110011 26.60 2 -0100110011 62.85 2 -0100110011 85.36 2 -0100110011 29.41 2 -0100110011 3.4125 2 -0100110011 19.57 2 -0100110011 33.72 2 -0100110011 132.05 2 -0100110011 26.11 2 -0100110011 92.61 2 -0100110011 96.03 2 -0100110011 270.52 2 -0100110011 27.07 2 -0100110011 2.683 2 -0100110011 46.33 2 -0100110011 2.585 2 -0100110011 1.637 2 -0100110011 52.14 2 -0100110011 40.46 2 -0100110011 18.45 2 -0100110011 59.68 2 -0100110011 64.01 2 -0100110011 19.26 2 -0100110011 17.79 2 -0100110011 22.49 2 -0100110011 16.365 2 -0100110011 235.63 2 -0100110011 35.02 2 -0100110011 19.63 2 -0100110011 1.465 2 -0100110011 379.27 2 -0100110011 67.04 2 -0100110011 273.98 2 -0100110011 357.74 2 -0100110011 69.92 2 -0100110011 1.2250 2 -0100110011 403.20 2 -0100110011 16.82 2 -0100110011 11:33 2 -0100110011 85.12 2 -0100110011 31.07 2 -0100110011 83.14 2 -0100110011 426.60 2 -0100110011 97.42 2 -0100110011 23.82 2 -0100110011 21.37 2 -0100110011 22.46 2 -0100110011 59.71 2 -0100110011 82.17 2 -0100110011 443.40 2 -0100110011 34.53 2 -0100110011 92.32 2 -0100110011 113.35 2 -0100110011 85.04 2 -0100110011 48.04 2 -0100110011 400.80 2 -0100110011 40.06 2 -0100110011 34.04 2 -0100110011 21.03 2 -0100110011 81.44 2 -0100110011 46.61 2 -0100110011 26.12 2 -0100110011 1.674 2 -0100110011 44.67 2 -0100110011 2,821 2 -0100110011 30.46 2 -0100110011 366.35 2 -0100110011 308.88 2 -0100110011 38.435 2 -0100110011 3:24 2 -0100110011 30.73 2 -0100110011 331.05 2 -0100110011 38.14 2 -0100110011 4:50 2 -0100110011 3.218 2 -0100110011 46.70 2 -0100110011 477.25 2 -0100110011 52.02 2 -0100110011 43.33 2 -0100110011 .33 2 -0100110011 372.36 2 -0100110011 372.41 2 -0100110011 423.90 2 -0100110011 2.688 2 -0100110011 124.24 2 -0100110011 .20 2 -0100110011 102.07 2 -0100110011 1.705 2 -0100110011 1.228 2 -0100110011 445.90 2 -0100110011 150.98 2 -0100110011 433.85 2 -0100110011 27.82 2 -0100110011 210.78 2 -0100110011 31.93 2 -0100110011 75.09 2 -0100110011 121.20 2 -0100110011 459.75 2 -0100110011 1.2090 2 -0100110011 19.847 2 -0100110011 42.73 2 -0100110011 13.791 2 -0100110011 28.87 2 -0100110011 2.202 2 -0100110011 22.686 2 -0100110011 29.18 2 -0100110011 24.22 2 -0100110011 24.73 2 -0100110011 93.68 2 -0100110011 761.73 2 -0100110011 86.43 2 -0100110011 23.01 2 -0100110011 378.34 2 -0100110011 435.50 2 -0100110011 366.22 2 -0100110011 348.50 2 -0100110011 22.82 2 -0100110011 456.7 2 -0100110011 11:54 2 -0100110011 115.51 2 -0100110011 433.30 2 -0100110011 23.89 2 -0100110011 22.01 2 -0100110011 234.56 2 -0100110011 411.60 2 -0100110011 16.42 2 -0100110011 1.302 2 -0100110011 24,999 2 -0100110011 18.00 2 -0100110011 421.05 2 -0100110011 4.671 2 -0100110011 23.38 2 -0100110011 8:55 2 -0100110011 423.10 2 -0100110011 1.501 2 -0100110011 25.38 2 -0100110011 53.92 2 -0100110011 12.52 2 -0100110011 60.45 2 -0100110011 44.14 2 -0100110011 21.46 2 -0100110011 27.08 2 -0100110011 439.10 2 -0100110011 273.93 2 -0100110011 5:01 2 -0100110011 13.76 2 -0100110011 436.75 2 -0100110011 17.83 2 -0100110011 212.57 2 -0100110011 129.14 2 -0100110011 453.30 2 -0100110011 78.33 2 -0100110011 3.772 2 -0100110011 57.97 2 -0100110011 701.52 2 -0100110011 83.37 2 -0100110011 62.97 2 -0100110011 2,635 2 -0100110011 1.669 2 -0100110011 37.52 2 -0100110011 32.58 2 -0100110011 53.66 2 -0100110011 67.36 2 -0100110011 105.77 2 -0100110011 359.35 2 -0100110011 42.41 2 -0100110011 457.45 2 -0100110011 26.83 2 -0100110011 93.04 2 -0100110011 105.51 2 -0100110011 77.80 2 -0100110011 117.66 2 -0100110011 6.025 2 -0100110011 29.56 2 -0100110011 28.47 2 -0100110011 97.31 2 -0100110011 45.14 2 -0100110011 429.30 2 -0100110011 21.89 2 -0100110011 3.606 2 -0100110011 66.66 2 -0100110011 41.03 2 -0100110011 65.14 2 -0100110011 367.20 2 -0100110011 25.46 2 -0100110011 109.82 2 -0100110011 376.86 2 -0100110011 461.65 2 -0100110011 20.73 2 -0100110011 2.956 2 -0100110011 89.86 2 -0100110011 390.55 2 -0100110011 23.68 2 -0100110011 258.05 2 -0100110011 42.81 2 -0100110011 72.06 2 -0100110011 257.8 2 -0100110011 175.98 2 -0100110011 50.76 2 -0100110011 65.99 2 -0100110011 69.07 2 -0100110011 30.28 2 -0100110011 39.935 2 -0100110011 40.01 2 -0100110011 361.08 2 -0100110011 17.56 2 -0100110011 43.31 2 -0100110011 23.11 2 -0100110011 1.023 2 -0100110011 55.32 2 -0100110011 31.68 2 -0100110011 3.025 2 -0100110011 104.87 2 -0100110011 11.61 2 -0100110011 29.30 2 -0100110011 65.32 2 -0100110011 107.02 2 -0100110011 29.48 2 -0100110011 26.27 2 -0100110011 276.80 2 -0100110011 8.453 2 -0100110011 106.75 2 -0100110011 241.92 2 -0100110011 238.77 2 -0100110011 44.09 2 -0100110011 101.78 2 -0100110011 30.06 2 -0100110011 360.15 2 -0100110011 4.819 2 -0100110011 6.498 2 -0100110011 2.217 2 -0100110011 1.259 2 -0100110011 132.55 2 -0100110011 108.34 2 -0100110011 43.44 2 -0100110011 23.53 2 -0100110011 442.20 2 -0100110011 93.15 2 -0100110011 38.99 2 -0100110011 67.39 2 -0100110011 138.16 2 -0100110011 14.33 2 -0100110011 62.74 2 -0100110011 109.32 2 -0100110011 73.06 2 -0100110011 109.09 2 -0100110011 23.24 2 -0100110011 249.05 2 -0100110011 67.90 2 -0100110011 9.478 2 -0100110011 68.56 2 -0100110011 41.98 2 -0100110011 47.43 2 -0100110011 37.17 2 -0100110011 3.795 2 -0100110011 3.836 2 -0100110011 109.53 2 -0100110011 359.55 2 -0100110011 359.90 2 -0100110011 442.30 2 -0100110011 21.28 2 -0100110011 1,734 2 -0100110011 127.99 2 -0100110011 18.09 2 -0100110011 1:20 2 -0100110011 39.83 2 -0100110011 49.56 2 -0100110011 68.01 2 -0100110011 122.29 2 -0100110011 432.10 2 -0100110011 27.57 2 -0100110011 16.84 2 -0100110011 291.90 2 -0100110011 22.44 2 -0100110011 390.57 2 -0100110011 93.89 2 -0100110011 299.81 2 -0100110011 4:01 2 -0100110011 223.20 2 -0100110011 233.90 2 -0100110011 264.09 2 -0100110011 206.72 2 -0100110011 448.70 2 -0100110011 41.91 2 -0100110011 818.4 2 -0100110011 7-10 2 -0100110011 20.87 2 -0100110011 2.246 2 -0100110011 23.62 2 -0100110011 347.01 2 -0100110011 84.33 2 -0100110011 489.75 2 -0100110011 33.29 2 -0100110011 17.21 2 -0100110011 1.148 2 -0100110011 1.319 2 -0100110011 1.001 2 -0100110011 45.76 2 -0100110011 79.67 2 -0100110011 38.05 2 -0100110011 481.75 2 -0100110011 2.965 2 -0100110011 245.50 2 -0100110011 431.30 2 -0100110011 21.24 2 -0100110011 36.11 2 -0100110011 712.3 2 -0100110011 403.90 2 -0100110011 404.80 2 -0100110011 36.07 2 -0100110011 44.33 2 -0100110011 81.79 2 -0100110011 112.19 2 -0100110011 65.71 2 -0100110011 28.67 2 -0100110011 23.37 2 -0100110011 365.85 2 -0100110011 84.54 2 -0100110011 2.450 2 -0100110011 24.18 2 -0100110011 88.00 2 -0100110011 31.27 2 -0100110011 16.00 2 -0100110011 426.82 2 -0100110011 1.578 2 -0100110011 43.68 2 -0100110011 45.30 2 -0100110011 288.99 2 -0100110011 936.6 2 -0100110011 84.53 2 -0100110011 84.24 2 -0100110011 506.66 2 -0100110011 67.131 2 -0100110011 119.53 2 -0100110011 105.20 2 -0100110011 97.55 2 -0100110011 239.30 2 -0100110011 87.30 2 -0100110011 91.44 2 -0100110011 347.09 2 -0100110011 207.39 2 -0100110011 210.86 2 -0100110011 619.77 2 -0100110011 84.45 2 -0100110011 39.35 2 -0100110011 29.19 2 -0100110011 75.91 2 -0100110011 258.0 2 -0100110011 3.123 2 -0100110011 44.21 2 -0100110011 5.225 2 -0100110011 24.52 2 -0100110011 18.77 2 -0100110011 405.90 2 -0100110011 178.87 2 -0100110011 23.12 2 -0100110011 14.762 2 -0100110011 3.337 2 -0100110011 554.35 2 -0100110011 421.30 2 -0100110011 4.071 2 -0100110011 47.329 2 -0100110011 32.92 2 -0100110011 67.78 2 -0100110011 11:35 2 -0100110011 60.71 2 -0100110011 383.28 2 -0100110011 147.71 2 -0100110011 78.89 2 -0100110011 69.52 2 -0100110011 262.05 2 -0100110011 18.19 2 -0100110011 140.57 2 -0100110011 117.68 2 -0100110011 1.165 2 -0100110011 1,049 2 -0100110011 104.21 2 -0100110011 37.15 2 -0100110011 35.90 2 -0100110011 552.30 2 -0100110011 48.78 2 -0100110011 38.67 2 -0100110011 1.515 2 -0100110011 23.87 2 -0100110011 622.3 2 -0100110011 28.16 2 -0100110011 16.14 2 -0100110011 .24 2 -0100110011 592.37 2 -0100110011 52.55 2 -0100110011 448.95 2 -0100110011 29.85 2 -0100110011 111.88 2 -0100110011 22.19 2 -0100110011 1,925 2 -0100110011 446.05 2 -0100110011 97.84 2 -0100110011 31.87 2 -0100110011 41.70 2 -0100110011 25.88 2 -0100110011 95.71 2 -0100110011 1.207 2 -0100110011 999.39 2 -0100110011 1.062 2 -0100110011 20.58 2 -0100110011 21.48 2 -0100110011 81.24 2 -0100110011 53.09 2 -0100110011 82.63 2 -0100110011 20.96 2 -0100110011 89.42 2 -0100110011 212.83 2 -0100110011 104.95 2 -0100110011 7:25 2 -0100110011 100.375 2 -0100110011 75.68 2 -0100110011 126.84 2 -0100110011 11:19 2 -0100110011 2,031 2 -0100110011 20.18 2 -0100110011 83.53 2 -0100110011 4.449 2 -0100110011 84.26 2 -0100110011 118.92 2 -0100110011 126.94 2 -0100110011 3.534 2 -0100110011 10:40 2 -0100110011 1,928 2 -0100110011 130.66 2 -0100110011 129.58 2 -0100110011 EG 2 -0100110011 68.73 2 -0100110011 442.21 2 -0100110011 82.23 2 -0100110011 104.73 2 -0100110011 25.688 2 -0100110011 217.78 2 -0100110011 41.30 2 -0100110011 783,000 2 -0100110011 376.21 2 -0100110011 28.70 2 -0100110011 40.92 2 -0100110011 2.185 2 -0100110011 112.25 2 -0100110011 2,024 2 -0100110011 215.99 2 -0100110011 67.11 2 -0100110011 25.39 2 -0100110011 15.74 2 -0100110011 31.90 2 -0100110011 30.31 2 -0100110011 20.68 2 -0100110011 22.97 2 -0100110011 45.03 2 -0100110011 27.11 2 -0100110011 35.18 2 -0100110011 875.72 2 -0100110011 134.02 2 -0100110011 38.95 2 -0100110011 26.05 2 -0100110011 226.05 2 -0100110011 20.64 2 -0100110011 66.24 2 -0100110011 727.82 2 -0100110011 43.06 2 -0100110011 715.72 2 -0100110011 15.69 2 -0100110011 23.78 2 -0100110011 530.40 2 -0100110011 1.215 2 -0100110011 23.26 2 -0100110011 2.330 2 -0100110011 13.675 2 -0100110011 noon-1 2 -0100110011 46.0 2 -0100110011 98.86 2 -0100110011 7.4375 2 -0100110011 28.13 2 -0100110011 27.37 2 -0100110011 32.88 2 -0100110011 353.77 2 -0100110011 335.9 3 -0100110011 36.12 3 -0100110011 206.07 3 -0100110011 11.64 3 -0100110011 78.04 3 -0100110011 79.97 3 -0100110011 20.41 3 -0100110011 34785.28 3 -0100110011 16.56 3 -0100110011 26.76 3 -0100110011 456.95 3 -0100110011 87.22 3 -0100110011 21.13 3 -0100110011 20.93 3 -0100110011 18.39 3 -0100110011 20.49 3 -0100110011 26.42 3 -0100110011 116.21 3 -0100110011 27.63 3 -0100110011 15.76 3 -0100110011 15.51 3 -0100110011 16.97 3 -0100110011 13.12 3 -0100110011 366.90 3 -0100110011 26.82 3 -0100110011 20.28 3 -0100110011 27.16 3 -0100110011 19.69 3 -0100110011 18.37 3 -0100110011 26.38 3 -0100110011 1.025 3 -0100110011 35.56 3 -0100110011 243.83 3 -0100110011 36.44 3 -0100110011 65.51 3 -0100110011 102.65 3 -0100110011 29.09 3 -0100110011 3.696 3 -0100110011 139.89 3 -0100110011 26.21 3 -0100110011 17.67 3 -0100110011 106.25 3 -0100110011 53.27 3 -0100110011 .63 3 -0100110011 .39 3 -0100110011 24.86 3 -0100110011 38.66 3 -0100110011 15.18 3 -0100110011 71.85 3 -0100110011 13.62 3 -0100110011 99.52 3 -0100110011 9:45 3 -0100110011 14.29 3 -0100110011 27.49 3 -0100110011 30.90 3 -0100110011 11.86 3 -0100110011 20.72 3 -0100110011 5.685 3 -0100110011 29.16 3 -0100110011 27.44 3 -0100110011 2:15 3 -0100110011 33.85 3 -0100110011 20.13 3 -0100110011 7:40 3 -0100110011 18.76 3 -0100110011 44.39 3 -0100110011 452.25 3 -0100110011 14.86 3 -0100110011 35.67 3 -0100110011 39.65 3 -0100110011 35.74 3 -0100110011 22.13 3 -0100110011 81.77 3 -0100110011 13.93 3 -0100110011 30.51 3 -0100110011 47.17 3 -0100110011 12.21 3 -0100110011 22.88 3 -0100110011 17.86 3 -0100110011 18.01 3 -0100110011 6.865 3 -0100110011 21.56 3 -0100110011 24.42 3 -0100110011 366.15 3 -0100110011 90.47 3 -0100110011 30.91 3 -0100110011 89.77 3 -0100110011 29.835 3 -0100110011 72.37 3 -0100110011 18.92 3 -0100110011 18.78 3 -0100110011 51.48 3 -0100110011 44.28 3 -0100110011 112.22 3 -0100110011 22.93 3 -0100110011 34.69 3 -0100110011 13.17 3 -0100110011 758.1 3 -0100110011 15.94 3 -0100110011 14.66 3 -0100110011 732.4 3 -0100110011 14.53 3 -0100110011 14.68 3 -0100110011 831.32 3 -0100110011 19.14 3 -0100110011 21.53 3 -0100110011 8:05 3 -0100110011 21.86 3 -0100110011 69.95 3 -0100110011 54.64 3 -0100110011 2:10 3 -0100110011 50.06 3 -0100110011 54.45 3 -0100110011 .10 3 -0100110011 19.89 3 -0100110011 .36 3 -0100110011 31.35 3 -0100110011 30.80 3 -0100110011 16.52 3 -0100110011 39.72 3 -0100110011 27.14 3 -0100110011 316.71 3 -0100110011 558.3 3 -0100110011 64.52 3 -0100110011 15.04 3 -0100110011 21.61 3 -0100110011 44.45 3 -0100110011 34.68 3 -0100110011 41.95 3 -0100110011 20.42 3 -0100110011 268.34 3 -0100110011 60.21 3 -0100110011 70.77 3 -0100110011 384.59 3 -0100110011 632.40 3 -0100110011 178.28 3 -0100110011 94.14 3 -0100110011 543.64 3 -0100110011 15.54 3 -0100110011 16.96 3 -0100110011 4:40 3 -0100110011 30.56 3 -0100110011 16.24 3 -0100110011 1.056 3 -0100110011 33.60 3 -0100110011 233.44 3 -0100110011 539.70 3 -0100110011 422.43 3 -0100110011 19.55 3 -0100110011 22.90 3 -0100110011 14.55 3 -0100110011 737.6 3 -0100110011 30.44 3 -0100110011 92.41 3 -0100110011 14.14 3 -0100110011 30.04 3 -0100110011 171.22 3 -0100110011 34.14 3 -0100110011 1.092 3 -0100110011 7,650 3 -0100110011 90.87 3 -0100110011 12.81 3 -0100110011 38.28 3 -0100110011 43.19 3 -0100110011 18.73 3 -0100110011 166.33 3 -0100110011 1.295 3 -0100110011 1.066 3 -0100110011 11:58 3 -0100110011 28.11 3 -0100110011 13.73 3 -0100110011 28.28 3 -0100110011 1.563 3 -0100110011 46.55 3 -0100110011 26.88 3 -0100110011 146.74 3 -0100110011 21.67 3 -0100110011 12:25 3 -0100110011 40.53 3 -0100110011 13.31 3 -0100110011 37.83 3 -0100110011 19.68 3 -0100110011 543.6 3 -0100110011 16.31 3 -0100110011 1.820 3 -0100110011 20.06 3 -0100110011 148.50 3 -0100110011 20.02 3 -0100110011 32.64 3 -0100110011 20.12 3 -0100110011 32.20 3 -0100110011 98.33 3 -0100110011 86.61 3 -0100110011 20.27 3 -0100110011 37.55 3 -0100110011 113.73 3 -0100110011 109.33 3 -0100110011 949.41 3 -0100110011 15.07 3 -0100110011 35.41 3 -0100110011 46.36 3 -0100110011 36.85 3 -0100110011 29.28 3 -0100110011 25.24 3 -0100110011 29.04 3 -0100110011 34.43 3 -0100110011 52.80 3 -0100110011 29.42 3 -0100110011 30.15 3 -0100110011 50.49 3 -0100110011 19.94 3 -0100110011 18.41 3 -0100110011 441.45 3 -0100110011 14.70 3 -0100110011 30.99 3 -0100110011 13.47 3 -0100110011 1.045 3 -0100110011 34.92 3 -0100110011 1-2 3 -0100110011 41.76 3 -0100110011 24.85 3 -0100110011 32.05 3 -0100110011 21.08 3 -0100110011 13.48 3 -0100110011 55.04 3 -0100110011 24.98 3 -0100110011 420.50 3 -0100110011 22.23 3 -0100110011 1.205 3 -0100110011 221.25 3 -0100110011 16.74 3 -0100110011 28.86 3 -0100110011 4:10 3 -0100110011 14.34 3 -0100110011 23.33 3 -0100110011 24.76 3 -0100110011 150.85 3 -0100110011 11-11:30 3 -0100110011 43.075 3 -0100110011 76.84 3 -0100110011 9:50 3 -0100110011 73.88 3 -0100110011 30.65 3 -0100110011 24.87 3 -0100110011 19.83 3 -0100110011 207.33 3 -0100110011 79.83 3 -0100110011 17.59 3 -0100110011 23.49 3 -0100110011 16.81 3 -0100110011 20.98 3 -0100110011 47.05 3 -0100110011 34.82 3 -0100110011 21.58 3 -0100110011 19.91 3 -0100110011 86.53 3 -0100110011 17.13 3 -0100110011 21.23 3 -0100110011 64.22 3 -0100110011 22.27 3 -0100110011 11:50 3 -0100110011 21.97 3 -0100110011 18.07 3 -0100110011 488.30 3 -0100110011 21.29 3 -0100110011 50.91 3 -0100110011 61.04 3 -0100110011 112.75 3 -0100110011 30.76 3 -0100110011 9:49 3 -0100110011 750.7 3 -0100110011 263.65 3 -0100110011 60.36 3 -0100110011 27.31 3 -0100110011 1.052 3 -0100110011 805.5 3 -0100110011 15.46 3 -0100110011 41.19 3 -0100110011 43.38 3 -0100110011 29.337 3 -0100110011 2.457 3 -0100110011 1.482 3 -0100110011 453.75 3 -0100110011 226.18 3 -0100110011 11.29 3 -0100110011 15.03 3 -0100110011 82.76 3 -0100110011 30.74 3 -0100110011 119.02 3 -0100110011 165.81 3 -0100110011 69.05 3 -0100110011 68.46 3 -0100110011 59.63 3 -0100110011 1.602 3 -0100110011 35.27 3 -0100110011 3.001 3 -0100110011 102.66 3 -0100110011 68.62 3 -0100110011 4.524 3 -0100110011 27.29 3 -0100110011 113.21 3 -0100110011 65.06 3 -0100110011 101.65 3 -0100110011 42.96 3 -0100110011 18.31 3 -0100110011 101.625 3 -0100110011 22.74 3 -0100110011 15.49 3 -0100110011 40.37 3 -0100110011 42.93 3 -0100110011 21.87 3 -0100110011 21.71 3 -0100110011 13.77 3 -0100110011 15.22 3 -0100110011 3:43 3 -0100110011 26.63 3 -0100110011 245.41 3 -0100110011 22.52 3 -0100110011 21.66 3 -0100110011 31.09 3 -0100110011 22.79 3 -0100110011 14.83 3 -0100110011 26.90 3 -0100110011 17.47 3 -0100110011 35.99 3 -0100110011 20.29 3 -0100110011 47.97 3 -0100110011 82.98 3 -0100110011 27.09 3 -0100110011 111.61 3 -0100110011 22.72 3 -0100110011 12.10 3 -0100110011 22.43 3 -0100110011 20.60 3 -0100110011 27.64 3 -0100110011 16.28 3 -0100110011 118.75 3 -0100110011 41.34 3 -0100110011 42.88 3 -0100110011 113.85 3 -0100110011 25.26 3 -0100110011 248.75 3 -0100110011 44.51 3 -0100110011 26.59 3 -0100110011 19.04 3 -0100110011 65.20 3 -0100110011 114.76 3 -0100110011 29.13 3 -0100110011 54.98 3 -0100110011 128.59 3 -0100110011 2.807 3 -0100110011 39.05 3 -0100110011 27.93 3 -0100110011 60.74 3 -0100110011 22.37 3 -0100110011 99.21 3 -0100110011 35.11 3 -0100110011 28.09 3 -0100110011 115.50 3 -0100110011 4.268 3 -0100110011 22.39 3 -0100110011 429.40 3 -0100110011 234.43 3 -0100110011 12.71 3 -0100110011 16.69 3 -0100110011 12.16 3 -0100110011 24.38 3 -0100110011 27.95 3 -0100110011 31.88 3 -0100110011 .42 3 -0100110011 .68 3 -0100110011 23.13 3 -0100110011 6.437 3 -0100110011 18.89 3 -0100110011 131.58 3 -0100110011 13.54 3 -0100110011 428.80 3 -0100110011 83.63 3 -0100110011 60.69 3 -0100110011 .23 3 -0100110011 12:30-2:30 3 -0100110011 22.35 3 -0100110011 718.1 3 -0100110011 124.97 3 -0100110011 60.27 3 -0100110011 681.6 3 -0100110011 17.78 3 -0100110011 34.41 3 -0100110011 15.39 3 -0100110011 26.99 3 -0100110011 40.07 3 -0100110011 37.48 3 -0100110011 25.80 3 -0100110011 12.03 3 -0100110011 24.48 3 -0100110011 54.80 3 -0100110011 98.57 3 -0100110011 18.68 3 -0100110011 32.09 3 -0100110011 66.80 3 -0100110011 15.53 3 -0100110011 52.85 3 -0100110011 24.20 3 -0100110011 33.61 3 -0100110011 4.241 3 -0100110011 38.47 3 -0100110011 20.92 3 -0100110011 111.48 3 -0100110011 43.88 3 -0100110011 10.00 3 -0100110011 4.553 3 -0100110011 17.37 3 -0100110011 29.12 3 -0100110011 18.42 3 -0100110011 4.378 3 -0100110011 4.445 3 -0100110011 139.47 3 -0100110011 47.69 4 -0100110011 16.01 4 -0100110011 55.03 4 -0100110011 12.62 4 -0100110011 438.80 4 -0100110011 22.18 4 -0100110011 28.01 4 -0100110011 56.52 4 -0100110011 239.31 4 -0100110011 .35 4 -0100110011 305.5 4 -0100110011 14.88 4 -0100110011 24.39 4 -0100110011 14.81 4 -0100110011 12.24 4 -0100110011 27.28 4 -0100110011 14.03 4 -0100110011 21.91 4 -0100110011 26.97 4 -0100110011 12.58 4 -0100110011 34.48 4 -0100110011 24.56 4 -0100110011 26.77 4 -0100110011 15.57 4 -0100110011 15.72 4 -0100110011 23.97 4 -0100110011 122.25 4 -0100110011 14.82 4 -0100110011 14.06 4 -0100110011 19.92 4 -0100110011 719.5 4 -0100110011 1.265 4 -0100110011 27.17 4 -0100110011 23.14 4 -0100110011 17.87 4 -0100110011 26.36 4 -0100110011 37.95 4 -0100110011 19.85 4 -0100110011 .15 4 -0100110011 .30 4 -0100110011 18.21 4 -0100110011 129.10 4 -0100110011 14.46 4 -0100110011 33.15 4 -0100110011 311.2 4 -0100110011 20.48 4 -0100110011 .17 4 -0100110011 .66 4 -0100110011 .11 4 -0100110011 11:45 4 -0100110011 957.24 4 -0100110011 1.076 4 -0100110011 1.002 4 -0100110011 40.17 4 -0100110011 60.11 4 -0100110011 15.63 4 -0100110011 20.05 4 -0100110011 21.82 4 -0100110011 23.88 4 -0100110011 21.63 4 -0100110011 20.59 4 -0100110011 36.84 4 -0100110011 11.89 4 -0100110011 17.91 4 -0100110011 17.02 4 -0100110011 45.94 4 -0100110011 17.64 4 -0100110011 96.75 4 -0100110011 17.17 4 -0100110011 31.49 4 -0100110011 18.33 4 -0100110011 11.37 4 -0100110011 19.74 4 -0100110011 13.58 4 -0100110011 22.31 4 -0100110011 355.3 4 -0100110011 54.14 4 -0100110011 20.01 4 -0100110011 22.53 4 -0100110011 55.41 4 -0100110011 20.43 4 -0100110011 246.2 4 -0100110011 15.64 4 -0100110011 20.95 4 -0100110011 26.67 4 -0100110011 13.45 4 -0100110011 36.36 4 -0100110011 13.13 4 -0100110011 18.48 4 -0100110011 32.57 4 -0100110011 24.83 4 -0100110011 36.69 4 -0100110011 41.83 4 -0100110011 .22 4 -0100110011 11.87 4 -0100110011 62.49 4 -0100110011 1:45 4 -0100110011 66.26 4 -0100110011 32.42 4 -0100110011 21.90 4 -0100110011 25.60 4 -0100110011 11.54 4 -0100110011 25.54 4 -0100110011 15.52 4 -0100110011 13.56 4 -0100110011 19.11 4 -0100110011 27.48 4 -0100110011 14.32 4 -0100110011 15.12 4 -0100110011 43.60 4 -0100110011 12.56 4 -0100110011 33.77 4 -0100110011 27.47 4 -0100110011 34.71 4 -0100110011 .40 4 -0100110011 108.75 4 -0100110011 26.78 4 -0100110011 18.91 4 -0100110011 4-7 4 -0100110011 1.079 4 -0100110011 22.78 4 -0100110011 42.60 4 -0100110011 34.91 4 -0100110011 1,000:8.85 4 -0100110011 24.54 4 -0100110011 1.315 4 -0100110011 1:00 4 -0100110011 343.67 4 -0100110011 21.94 4 -0100110011 26.79 4 -0100110011 18.94 4 -0100110011 39.55 4 -0100110011 16.43 4 -0100110011 14.97 4 -0100110011 15.58 4 -0100110011 42.06 4 -0100110011 57.41 4 -0100110011 1.555 4 -0100110011 17.28 4 -0100110011 32.24 4 -0100110011 11.38 4 -0100110011 .05 4 -0100110011 21.30 4 -0100110011 15.61 4 -0100110011 45.20 4 -0100110011 148.01 4 -0100110011 113.50 4 -0100110011 732.2 4 -0100110011 23.60 4 -0100110011 31.74 4 -0100110011 35.20 4 -0100110011 18.58 4 -0100110011 6.645 4 -0100110011 104.50 4 -0100110011 38.11 4 -0100110011 19.81 4 -0100110011 19.97 4 -0100110011 24.09 4 -0100110011 33.71 4 -0100110011 2.352 4 -0100110011 14.61 4 -0100110011 .18 4 -0100110011 17.12 4 -0100110011 16.55 4 -0100110011 22.32 4 -0100110011 12.11 4 -0100110011 22.29 4 -0100110011 14.30 4 -0100110011 18.52 4 -0100110011 20.17 4 -0100110011 1.325 4 -0100110011 25.37 4 -0100110011 .25 4 -0100110011 30.35 4 -0100110011 14.94 4 -0100110011 27.40 4 -0100110011 22.67 4 -0100110011 82.95 4 -0100110011 20.14 4 -0100110011 13.82 4 -0100110011 12.04 4 -0100110011 36.39 4 -0100110011 156.16 4 -0100110011 97.375 4 -0100110011 23.98 4 -0100110011 170.64 4 -0100110011 19.90 4 -0100110011 53.17 4 -0100110011 26.51 4 -0100110011 18.96 4 -0100110011 17.16 4 -0100110011 80.75 4 -0100110011 15.81 4 -0100110011 727.1 4 -0100110011 17.51 4 -0100110011 141.35 4 -0100110011 12.23 4 -0100110011 23.08 4 -0100110011 22.26 4 -0100110011 19.49 4 -0100110011 77.30 4 -0100110011 32.40 4 -0100110011 32.56 4 -0100110011 38.76 4 -0100110011 169.78 4 -0100110011 37.35 4 -0100110011 21.65 4 -0100110011 21.34 4 -0100110011 22.65 4 -0100110011 12.65 4 -0100110011 26.13 4 -0100110011 27.72 4 -0100110011 21.92 4 -0100110011 25.41 4 -0100110011 93.10 4 -0100110011 15.33 4 -0100110011 28.69 4 -0100110011 31.41 4 -0100110011 22.40 4 -0100110011 22.16 4 -0100110011 13.27 4 -0100110011 15.99 4 -0100110011 12:45 4 -0100110011 52.77 4 -0100110011 62.64 4 -0100110011 37.64 4 -0100110011 16.94 4 -0100110011 14.54 4 -0100110011 19.24 4 -0100110011 8:25 4 -0100110011 4.259 5 -0100110011 18.27 5 -0100110011 16.0 5 -0100110011 20.40 5 -0100110011 64.70 5 -0100110011 421.50 5 -0100110011 286.5 5 -0100110011 21.55 5 -0100110011 25.56 5 -0100110011 11.01 5 -0100110011 19.27 5 -0100110011 11:20 5 -0100110011 16.13 5 -0100110011 21.01 5 -0100110011 23.90 5 -0100110011 11.72 5 -0100110011 15.98 5 -0100110011 103.50 5 -0100110011 15.26 5 -0100110011 17.36 5 -0100110011 37.82 5 -0100110011 21.27 5 -0100110011 13.96 5 -0100110011 26.44 5 -0100110011 17.74 5 -0100110011 16.86 5 -0100110011 .34 5 -0100110011 13.21 5 -0100110011 31.31 5 -0100110011 17.32 5 -0100110011 15.56 5 -0100110011 12.69 5 -0100110011 18.22 5 -0100110011 19.32 5 -0100110011 18.99 5 -0100110011 1.024 5 -0100110011 31.36 5 -0100110011 58.85 5 -0100110011 33.36 5 -0100110011 20.63 5 -0100110011 22.09 5 -0100110011 23.48 5 -0100110011 25.49 5 -0100110011 37.16 5 -0100110011 22.30 5 -0100110011 12.41 5 -0100110011 76.25 5 -0100110011 22.77 5 -0100110011 15.67 5 -0100110011 454.50 5 -0100110011 8:40 5 -0100110011 8:15 5 -0100110011 21.33 5 -0100110011 26.04 5 -0100110011 17.58 5 -0100110011 24.35 5 -0100110011 16.12 5 -0100110011 20.33 5 -0100110011 18.66 5 -0100110011 15.01 5 -0100110011 22.59 5 -0100110011 16.78 5 -0100110011 31.65 5 -0100110011 11.27 5 -0100110011 18.82 5 -0100110011 11.84 5 -0100110011 19.45 5 -0100110011 67.58 5 -0100110011 15.42 5 -0100110011 18.38 5 -0100110011 17.89 5 -0100110011 18.36 5 -0100110011 18.67 5 -0100110011 22.24 5 -0100110011 15.32 5 -0100110011 15.05 5 -0100110011 16.88 5 -0100110011 17.94 5 -0100110011 19.76 5 -0100110011 18.13 5 -0100110011 26.06 5 -0100110011 22.56 5 -0100110011 12.86 5 -0100110011 404.90 5 -0100110011 25.10 5 -0100110011 13.37 5 -0100110011 12.06 5 -0100110011 11.68 5 -0100110011 11:40 5 -0100110011 11.98 5 -0100110011 7-9 5 -0100110011 12.74 5 -0100110011 13.97 5 -0100110011 24.64 5 -0100110011 3.091 5 -0100110011 11.09 5 -0100110011 16.54 5 -0100110011 20.38 5 -0100110011 20.74 5 -0100110011 3836.48 5 -0100110011 28.07 5 -0100110011 14.73 5 -0100110011 14.58 5 -0100110011 17.73 5 -0100110011 20.78 5 -0100110011 22.10 5 -0100110011 38.37 5 -0100110011 18.97 5 -0100110011 6:15 5 -0100110011 17.43 5 -0100110011 25.96 5 -0100110011 21.69 5 -0100110011 654.81 5 -0100110011 12.91 5 -0100110011 19.64 5 -0100110011 38.33 5 -0100110011 23.56 5 -0100110011 2.162 5 -0100110011 17.66 5 -0100110011 28.39 5 -0100110011 16.34 5 -0100110011 15.78 5 -0100110011 13.53 5 -0100110011 18.14 5 -0100110011 26.94 5 -0100110011 14.84 5 -0100110011 29.94 5 -0100110011 35.06 5 -0100110011 18.69 5 -0100110011 35.95 5 -0100110011 18.04 5 -0100110011 16.61 5 -0100110011 18.56 5 -0100110011 16.62 5 -0100110011 13.26 5 -0100110011 10:45 5 -0100110011 18.43 5 -0100110011 19.21 5 -0100110011 43.92 5 -0100110011 19.05 5 -0100110011 324.4 5 -0100110011 15.31 5 -0100110011 28.27 5 -0100110011 11.67 5 -0100110011 22.34 5 -0100110011 15.97 5 -0100110011 26.85 5 -0100110011 19.59 5 -0100110011 18.88 5 -0100110011 54.74 5 -0100110011 18.02 5 -0100110011 19.87 5 -0100110011 12.49 5 -0100110011 721.4 5 -0100110011 25.23 5 -0100110011 46.38 5 -0100110011 33.82 5 -0100110011 26.15 5 -0100110011 17.92 5 -0100110011 22.20 5 -0100110011 12.02 5 -0100110011 11.93 5 -0100110011 19.19 5 -0100110011 16.32 5 -0100110011 102.81 5 -0100110011 40.12 5 -0100110011 12.37 5 -0100110011 11.14 5 -0100110011 25.19 5 -0100110011 15.87 5 -0100110011 25.86 5 -0100110011 12.07 5 -0100110011 13.24 5 -0100110011 17.23 5 -0100110011 37.46 5 -0100110011 77.35 5 -0100110011 2:45 5 -0100110011 14.64 5 -0100110011 43.17 6 -0100110011 25.87 6 -0100110011 20.57 6 -0100110011 16.36 6 -0100110011 17.38 6 -0100110011 12.36 6 -0100110011 28.35 6 -0100110011 18.71 6 -0100110011 29.34 6 -0100110011 24.34 6 -0100110011 16.68 6 -0100110011 22.14 6 -0100110011 19.56 6 -0100110011 14.12 6 -0100110011 15.92 6 -0100110011 54.22 6 -0100110011 12.78 6 -0100110011 13.03 6 -0100110011 18.61 6 -0100110011 27.55 6 -0100110011 33.78 6 -0100110011 97.75 6 -0100110011 45.91 6 -0100110011 70.75 6 -0100110011 13.36 6 -0100110011 11.32 6 -0100110011 17.20 6 -0100110011 21.38 6 -0100110011 20.85 6 -0100110011 22.41 6 -0100110011 11.47 6 -0100110011 25.83 6 -0100110011 15.62 6 -0100110011 17.44 6 -0100110011 19.31 6 -0100110011 12.87 6 -0100110011 16.72 6 -0100110011 13.11 6 -0100110011 16.05 6 -0100110011 17.57 6 -0100110011 18.62 6 -0100110011 11.12 6 -0100110011 11:15 6 -0100110011 16.07 6 -0100110011 13.14 6 -0100110011 20.89 6 -0100110011 24.57 6 -0100110011 23.21 6 -0100110011 10.71 6 -0100110011 19.46 6 -0100110011 11.77 6 -0100110011 14.47 6 -0100110011 12.98 6 -0100110011 13.69 6 -0100110011 18.12 6 -0100110011 15.77 6 -0100110011 15.34 6 -0100110011 15.23 6 -0100110011 17.27 6 -0100110011 51.98 6 -0100110011 19.54 6 -0100110011 20.31 6 -0100110011 12.31 6 -0100110011 12.70 6 -0100110011 12.17 6 -0100110011 97.875 6 -0100110011 11.73 6 -0100110011 22.81 6 -0100110011 51.60 6 -0100110011 14.76 6 -0100110011 13.19 6 -0100110011 14.49 6 -0100110011 21.42 6 -0100110011 14.72 6 -0100110011 37.67 6 -0100110011 37.34 6 -0100110011 13.84 6 -0100110011 19.53 6 -0100110011 19.86 6 -0100110011 13.87 6 -0100110011 18.87 6 -0100110011 13.98 6 -0100110011 17.69 6 -0100110011 73.80 6 -0100110011 12.68 6 -0100110011 13.42 6 -0100110011 13.41 6 -0100110011 21.19 6 -0100110011 16.29 6 -0100110011 13.02 6 -0100110011 18.28 6 -0100110011 15.82 6 -0100110011 25.70 6 -0100110011 17.33 6 -0100110011 19.41 6 -0100110011 11.23 6 -0100110011 19.66 6 -0100110011 19.44 6 -0100110011 18.55 6 -0100110011 20.83 6 -0100110011 11.15 6 -0100110011 11.17 6 -0100110011 17.11 6 -0100110011 18.80 6 -0100110011 1:15 6 -0100110011 16.39 6 -0100110011 15.83 6 -0100110011 20.23 6 -0100110011 18.79 6 -0100110011 21.47 6 -0100110011 14.98 6 -0100110011 21.06 6 -0100110011 14.79 7 -0100110011 12.83 7 -0100110011 15.80 7 -0100110011 16.63 7 -0100110011 12.59 7 -0100110011 12.93 7 -0100110011 15.38 7 -0100110011 33.95 7 -0100110011 14.23 7 -0100110011 14.24 7 -0100110011 16.53 7 -0100110011 16.79 7 -0100110011 14.38 7 -0100110011 15.40 7 -0100110011 47.08 7 -0100110011 57.61 7 -0100110011 13.66 7 -0100110011 12.22 7 -0100110011 15.65 7 -0100110011 18.57 7 -0100110011 .12 7 -0100110011 13.64 7 -0100110011 15.09 7 -0100110011 13.60 7 -0100110011 34.09 7 -0100110011 31.60 7 -0100110011 25.20 7 -0100110011 24.30 7 -0100110011 17.45 7 -0100110011 39.53 7 -0100110011 65.75 7 -0100110011 14.40 7 -0100110011 11.04 7 -0100110011 11.00 7 -0100110011 41.54 7 -0100110011 17.19 7 -0100110011 17.62 7 -0100110011 9.00 7 -0100110011 22.80 7 -0100110011 10.69 7 -0100110011 12.26 7 -0100110011 20.90 7 -0100110011 11.46 7 -0100110011 21.14 7 -0100110011 27.58 7 -0100110011 17.61 7 -0100110011 16.22 7 -0100110011 17.07 7 -0100110011 15.59 7 -0100110011 20.62 7 -0100110011 26.95 7 -0100110011 35.32 7 -0100110011 14.07 7 -0100110011 15.90 7 -0100110011 13.57 7 -0100110011 19.20 7 -0100110011 13.88 7 -0100110011 7:15 7 -0100110011 25.95 7 -0100110011 99.45 7 -0100110011 15.21 7 -0100110011 15.35 7 -0100110011 69.89 7 -0100110011 14.69 7 -0100110011 22.17 7 -0100110011 13.28 7 -0100110011 15.60 7 -0100110011 11.91 7 -0100110011 11.21 7 -0100110011 26.28 7 -0100110011 13.92 7 -0100110011 66.47 7 -0100110011 15.08 7 -0100110011 16.65 7 -0100110011 11.31 7 -0100110011 16.06 7 -0100110011 15.96 7 -0100110011 46.40 7 -0100110011 10.77 7 -0100110011 17.03 7 -0100110011 17.15 7 -0100110011 32.95 7 -0100110011 11.40 7 -0100110011 19.12 7 -0100110011 12.89 7 -0100110011 20.77 7 -0100110011 13.70 7 -0100110011 12.19 7 -0100110011 16.73 7 -0100110011 11.97 7 -0100110011 22.84 7 -0100110011 13.90 7 -0100110011 14.42 7 -0100110011 25.89 7 -0100110011 52.97 8 -0100110011 12.13 8 -0100110011 13.55 8 -0100110011 26.55 8 -0100110011 44.60 8 -0100110011 15.30 8 -0100110011 14.16 8 -0100110011 14.87 8 -0100110011 16.38 8 -0100110011 12.82 8 -0100110011 13.49 8 -0100110011 14.67 8 -0100110011 12.14 8 -0100110011 9.0 8 -0100110011 11.44 8 -0100110011 18.15 8 -0100110011 17.26 8 -0100110011 16.46 8 -0100110011 16.85 8 -0100110011 22.58 8 -0100110011 16.59 8 -0100110011 19.65 8 -0100110011 12.51 8 -0100110011 83.25 8 -0100110011 12.57 8 -0100110011 13.30 8 -0100110011 14.71 8 -0100110011 11.52 8 -0100110011 14.74 8 -0100110011 18.51 8 -0100110011 22.94 8 -0100110011 11.92 8 -0100110011 4.00 8 -0100110011 21.85 8 -0100110011 14.26 8 -0100110011 28.38 8 -0100110011 21.05 8 -0100110011 15.36 8 -0100110011 16.83 8 -0100110011 14.57 8 -0100110011 33.65 8 -0100110011 10.91 8 -0100110011 12.53 8 -0100110011 12.72 8 -0100110011 25.07 8 -0100110011 14.99 8 -0100110011 17.41 8 -0100110011 13.51 8 -0100110011 10.74 8 -0100110011 20.88 8 -0100110011 10.59 8 -0100110011 18.63 8 -0100110011 12.79 8 -0100110011 11.43 8 -0100110011 19.30 8 -0100110011 14.48 8 -0100110011 .16 8 -0100110011 19.73 8 -0100110011 12.01 8 -0100110011 21.35 8 -0100110011 19.96 8 -0100110011 12.67 8 -0100110011 15.86 8 -0100110011 17.85 8 -0100110011 12.97 8 -0100110011 11.36 8 -0100110011 16.09 8 -0100110011 16.30 8 -0100110011 14.15 8 -0100110011 11.39 8 -0100110011 20.99 8 -0100110011 14.17 8 -0100110011 14.85 8 -0100110011 14.59 8 -0100110011 17.24 9 -0100110011 15.45 9 -0100110011 14.20 9 -0100110011 17.80 9 -0100110011 11.94 9 -0100110011 14.02 9 -0100110011 20.09 9 -0100110011 17.70 9 -0100110011 289.5 9 -0100110011 15.43 9 -0100110011 13.43 9 -0100110011 11:59 9 -0100110011 12.08 9 -0100110011 15.17 9 -0100110011 14.18 9 -0100110011 17.52 9 -0100110011 19.03 9 -0100110011 11.85 9 -0100110011 11.51 9 -0100110011 14.90 9 -0100110011 16.26 9 -0100110011 20.35 9 -0100110011 .38 9 -0100110011 14.65 9 -0100110011 12.40 9 -0100110011 10.88 9 -0100110011 19.88 9 -0100110011 16.60 9 -0100110011 16.58 9 -0100110011 13.29 9 -0100110011 14.62 9 -0100110011 16.90 9 -0100110011 14.51 9 -0100110011 11.78 9 -0100110011 17.55 9 -0100110011 13.80 9 -0100110011 4:15 9 -0100110011 11.79 9 -0100110011 24.70 9 -0100110011 10.94 9 -0100110011 18.83 9 -0100110011 21.73 9 -0100110011 12.96 9 -0100110011 19.38 9 -0100110011 11.49 9 -0100110011 12.15 9 -0100110011 16.76 9 -0100110011 12.94 9 -0100110011 13.38 9 -0100110011 13.34 9 -0100110011 40.97 9 -0100110011 15.66 9 -0100110011 13.86 9 -0100110011 12.42 9 -0100110011 12.64 9 -0100110011 11.99 9 -0100110011 108.35 9 -0100110011 13.16 9 -0100110011 14.44 9 -0100110011 15.15 9 -0100110011 14.60 9 -0100110011 12:15 9 -0100110011 19.10 9 -0100110011 11.88 9 -0100110011 7:20 9 -0100110011 25.35 9 -0100110011 76.42 9 -0100110011 20.80 9 -0100110011 14.37 9 -0100110011 23.81 9 -0100110011 102.27 10 -0100110011 11.26 10 -0100110011 13.44 10 -0100110011 14.80 10 -0100110011 13.67 10 -0100110011 10.54 10 -0100110011 20.22 10 -0100110011 14.22 10 -0100110011 13.79 10 -0100110011 24.80 10 -0100110011 14.56 10 -0100110011 18.98 10 -0100110011 15.24 10 -0100110011 11.96 10 -0100110011 12.09 10 -0100110011 22.15 10 -0100110011 12.30 10 -0100110011 3:15 10 -0100110011 11.13 10 -0100110011 16.35 10 -0100110011 14.04 10 -0100110011 13.52 10 -0100110011 11.42 10 -0100110011 14.19 10 -0100110011 12.28 10 -0100110011 9:15 10 -0100110011 22.42 10 -0100110011 12.46 10 -0100110011 10.92 10 -0100110011 12.38 10 -0100110011 64.16 10 -0100110011 11.63 10 -0100110011 18.90 10 -0100110011 11.33 10 -0100110011 10.98 10 -0100110011 19.35 10 -0100110011 18.74 10 -0100110011 18.72 10 -0100110011 17.88 10 -0100110011 12.39 10 -0100110011 11.41 10 -0100110011 14.41 10 -0100110011 10.90 10 -0100110011 16.87 10 -0100110011 14.63 11 -0100110011 11.24 11 -0100110011 17.08 11 -0100110011 15.44 11 -0100110011 9.79 11 -0100110011 9.32 11 -0100110011 15.88 11 -0100110011 17.40 11 -0100110011 12.66 11 -0100110011 17.54 11 -0100110011 11.80 11 -0100110011 13.81 11 -0100110011 17.65 11 -0100110011 22.38 11 -0100110011 13.95 11 -0100110011 12.84 11 -0100110011 14.45 11 -0100110011 12.92 11 -0100110011 13.89 11 -0100110011 12.99 11 -0100110011 8:20 11 -0100110011 20.94 11 -0100110011 19.17 11 -0100110011 27.90 11 -0100110011 13.46 11 -0100110011 12.20 11 -0100110011 15.10 11 -0100110011 11.11 11 -0100110011 11.18 11 -0100110011 14.52 11 -0100110011 10.62 11 -0100110011 12.88 11 -0100110011 13.23 11 -0100110011 18.59 11 -0100110011 11.28 11 -0100110011 11.35 12 -0100110011 16.80 12 -0100110011 15.70 12 -0100110011 12.35 12 -0100110011 13.05 12 -0100110011 16.03 12 -0100110011 10.83 12 -0100110011 17.35 12 -0100110011 11.55 12 -0100110011 14.43 12 -0100110011 15.27 12 -0100110011 10.99 12 -0100110011 18.85 12 -0100110011 0.375 12 -0100110011 13.15 12 -0100110011 5:45 12 -0100110011 11.34 12 -0100110011 11.45 12 -0100110011 11.03 12 -0100110011 18.35 12 -0100110011 10.49 12 -0100110011 17.05 12 -0100110011 91.55 12 -0100110011 11.70 12 -0100110011 13.40 12 -0100110011 12.45 12 -0100110011 4.91 12 -0100110011 12.33 13 -0100110011 13.07 13 -0100110011 13.09 13 -0100110011 16.08 13 -0100110011 21.16 13 -0100110011 10.46 13 -0100110011 9.31 13 -0100110011 14.05 13 -0100110011 12.80 13 -0100110011 13.65 13 -0100110011 18.20 13 -0100110011 15.85 13 -0100110011 12.73 13 -0100110011 16.67 13 -0100110011 10.68 13 -0100110011 10.60 13 -0100110011 10.85 13 -0100110011 18.24 13 -0100110011 64.15 14 -0100110011 16.91 14 -0100110011 12.55 14 -0100110011 11.56 14 -0100110011 10.41 14 -0100110011 17.60 14 -0100110011 13.63 14 -0100110011 11.74 14 -0100110011 11.60 14 -0100110011 13.59 14 -0100110011 4.72 14 -0100110011 12.43 14 -0100110011 11.16 14 -0100110011 13.06 14 -0100110011 9.64 14 -0100110011 10.56 14 -0100110011 11.58 14 -0100110011 16.10 14 -0100110011 5.09 15 -0100110011 12.12 15 -0100110011 10.76 15 -0100110011 11.20 15 -0100110011 15.20 15 -0100110011 4.57 15 -0100110011 10.78 15 -0100110011 10.57 15 -0100110011 20.34 15 -0100110011 4.81 15 -0100110011 14.36 15 -0100110011 11.30 15 -0100110011 4.39 15 -0100110011 4.61 15 -0100110011 4.71 15 -0100110011 11.07 15 -0100110011 14.10 15 -0100110011 11.48 15 -0100110011 10.82 16 -0100110011 11.10 16 -0100110011 11.06 16 -0100110011 13.20 16 -0100110011 4.43 17 -0100110011 2.111 17 -0100110011 10.96 17 -0100110011 9.29 17 -0100110011 4.53 17 -0100110011 18.70 17 -0100110011 10.01 17 -0100110011 10.39 17 -0100110011 10.87 17 -0100110011 19.22 18 -0100110011 4.84 18 -0100110011 20.10 18 -0100110011 10.84 18 -0100110011 10.65 18 -0100110011 14.08 18 -0100110011 3.68 18 -0100110011 10.67 18 -0100110011 4.11 19 -0100110011 9.86 19 -0100110011 14.78 19 -0100110011 4.32 19 -0100110011 4.93 20 -0100110011 13.32 20 -0100110011 18.60 20 -0100110011 9.77 20 -0100110011 4.22 20 -0100110011 10.51 20 -0100110011 4.54 20 -0100110011 10.95 20 -0100110011 10.53 20 -0100110011 10.66 21 -0100110011 5.13 21 -0100110011 5.06 21 -0100110011 3.54 21 -0100110011 4.89 21 -0100110011 3.84 21 -0100110011 5.21 21 -0100110011 4.59 21 -0100110011 4.82 21 -0100110011 220.7 21 -0100110011 4.04 22 -0100110011 3.58 22 -0100110011 4.68 22 -0100110011 51.25 22 -0100110011 4.79 22 -0100110011 4.87 22 -0100110011 5.54 22 -0100110011 4.97 22 -0100110011 4.26 22 -0100110011 4.52 22 -0100110011 5.71 22 -0100110011 4.69 22 -0100110011 4.24 22 -0100110011 5.26 22 -0100110011 3.89 22 -0100110011 10.02 22 -0100110011 3.93 22 -0100110011 4.64 23 -0100110011 4.76 23 -0100110011 12.60 23 -0100110011 5.24 23 -0100110011 5.17 23 -0100110011 4.21 23 -0100110011 4.37 23 -0100110011 4.83 23 -0100110011 4.48 23 -0100110011 10.80 23 -0100110011 4.42 23 -0100110011 12.27 24 -0100110011 9.94 24 -0100110011 16.47 24 -0100110011 5.92 24 -0100110011 3.53 24 -0100110011 4.86 24 -0100110011 4.34 24 -0100110011 4.51 24 -0100110011 3.92 24 -0100110011 9.56 24 -0100110011 4.58 24 -0100110011 4.73 24 -0100110011 4.77 25 -0100110011 5.08 25 -0100110011 4.67 25 -0100110011 4.09 25 -0100110011 5.33 25 -0100110011 5.18 25 -0100110011 4.74 25 -0100110011 3.37 25 -0100110011 4.56 25 -0100110011 12.95 25 -0100110011 3.41 25 -0100110011 4.08 25 -0100110011 9.26 25 -0100110011 15.71 26 -0100110011 3.97 26 -0100110011 3.88 26 -0100110011 4.23 26 -0100110011 4.07 26 -0100110011 10.40 26 -0100110011 5.29 26 -0100110011 15.06 26 -0100110011 5.11 26 -0100110011 12.18 26 -0100110011 21.95 26 -0100110011 4.46 26 -0100110011 5.28 27 -0100110011 3.99 27 -0100110011 4.41 27 -0100110011 4.94 27 -0100110011 3.43 27 -0100110011 10.93 27 -0100110011 6.36 27 -0100110011 5.07 27 -0100110011 4.0 27 -0100110011 13.35 27 -0100110011 5.0 27 -0100110011 5.37 27 -0100110011 11.95 27 -0100110011 5.01 28 -0100110011 3.86 28 -0100110011 3.71 28 -0100110011 9.78 28 -0100110011 90.25 28 -0100110011 12.54 28 -0100110011 4.01 28 -0100110011 2.00 29 -0100110011 4.47 29 -0100110011 4.16 29 -0100110011 3.96 29 -0100110011 3.63 29 -0100110011 3.72 29 -0100110011 3.98 29 -0100110011 4.06 29 -0100110011 4.38 30 -0100110011 12.44 30 -0100110011 3.91 30 -0100110011 4.44 30 -0100110011 5.36 30 -0100110011 15.68 30 -0100110011 9.76 30 -0100110011 4.29 30 -0100110011 5.27 30 -0100110011 4.96 30 -0100110011 10.45 31 -0100110011 5.38 31 -0100110011 5.32 31 -0100110011 5.19 31 -0100110011 4.62 31 -0100110011 4.03 31 -0100110011 5.12 31 -0100110011 5.14 31 -0100110011 17.63 31 -0100110011 3.74 31 -0100110011 5.02 32 -0100110011 4.27 32 -0100110011 5.91 32 -0100110011 3.69 32 -0100110011 4.88 32 -0100110011 4.28 32 -0100110011 4.14 32 -0100110011 4.92 33 -0100110011 3.56 33 -0100110011 3.09 33 -0100110011 9.12 33 -0100110011 10.35 33 -0100110011 4.49 33 -0100110011 4.66 33 -0100110011 3.62 33 -0100110011 12:30 33 -0100110011 3.36 33 -0100110011 5.31 34 -0100110011 4.30 34 -0100110011 3.49 34 -0100110011 3.27 34 -0100110011 3.77 34 -0100110011 4.19 34 -0100110011 6.38 34 -0100110011 3.39 34 -0100110011 5.42 34 -0100110011 4.99 34 -0100110011 10.20 34 -0100110011 5.16 34 -0100110011 5.69 34 -0100110011 5.04 34 -0100110011 4.78 34 -0100110011 9.89 35 -0100110011 3.57 35 -0100110011 5.52 35 -0100110011 4.31 35 -0100110011 9.51 35 -0100110011 13.22 35 -0100110011 2.91 35 -0100110011 6.15 35 -0100110011 3.94 35 -0100110011 2.94 36 -0100110011 3.81 36 -0100110011 4.85 36 -0100110011 6.21 36 -0100110011 4.13 36 -0100110011 6.02 36 -0100110011 5.03 36 -0100110011 22.95 36 -0100110011 4.36 36 -0100110011 3.73 36 -0100110011 1.00 36 -0100110011 4.17 36 -0100110011 3.78 36 -0100110011 3.67 37 -0100110011 3.06 37 -0100110011 3.08 37 -0100110011 4.98 37 -0100110011 3.19 37 -0100110011 3.61 37 -0100110011 4:30 38 -0100110011 3.64 38 -0100110011 3.11 38 -0100110011 2.74 38 -0100110011 5.22 38 -0100110011 4.90 39 -0100110011 9.53 39 -0100110011 4.05 39 -0100110011 14.95 39 -0100110011 5.39 39 -0100110011 6.47 39 -0100110011 3.82 39 -0100110011 3.66 39 -0100110011 7.31 39 -0100110011 4.95 39 -0100110011 4.63 39 -0100110011 3.18 39 -0100110011 2.81 39 -0100110011 3.22 39 -0100110011 5.10 39 -0100110011 3.76 39 -0100110011 3.01 39 -0100110011 5.49 39 -0100110011 2.71 40 -0100110011 13.83 40 -0100110011 3.31 40 -0100110011 4.33 40 -0100110011 3.48 40 -0100110011 15.95 40 -0100110011 2.97 40 -0100110011 6.40 40 -0100110011 2.69 41 -0100110011 3.59 41 -0100110011 5.20 41 -0100110011 5.43 41 -0100110011 3.83 42 -0100110011 5.41 42 -0100110011 1:30 42 -0100110011 2.83 42 -0100110011 5.30 42 -0100110011 6.24 43 -0100110011 3.79 43 -0100110011 5.76 43 -0100110011 4.12 43 -0100110011 6:30 43 -0100110011 2.89 43 -0100110011 2.79 43 -0100110011 6.08 43 -0100110011 5.15 44 -0100110011 3.47 44 -0100110011 4.35 44 -0100110011 3.26 44 -0100110011 3.95 45 -0100110011 6.60 45 -0100110011 5.96 45 -0100110011 4.70 45 -0100110011 3.46 45 -0100110011 5.67 45 -0100110011 3.17 45 -0100110011 2.93 46 -0100110011 4.45 46 -0100110011 2.0 46 -0100110011 3.0 46 -0100110011 3.29 46 -0100110011 5.95 46 -0100110011 4.80 46 -0100110011 4.60 46 -0100110011 2.84 47 -0100110011 3.51 47 -0100110011 3.07 47 -0100110011 2.92 48 -0100110011 11.125 48 -0100110011 4.02 48 -0100110011 2.99 48 -0100110011 3.44 48 -0100110011 2.21 48 -0100110011 2.73 48 -0100110011 10:30 48 -0100110011 2.78 48 -0100110011 4.40 49 -0100110011 4.10 49 -0100110011 4.20 49 -0100110011 3.32 49 -0100110011 4.18 49 -0100110011 2.52 49 -0100110011 3.16 49 -0100110011 2.41 49 -0100110011 4.55 49 -0100110011 6.79 49 -0100110011 5.73 50 -0100110011 5.45 50 -0100110011 5.60 50 -0100110011 5.68 50 -0100110011 3.24 50 -0100110011 3.13 51 -0100110011 2.86 51 -0100110011 5.35 51 -0100110011 6.45 51 -0100110011 5.40 51 -0100110011 3.90 51 -0100110011 29.95 51 -0100110011 3.23 52 -0100110011 3.28 52 -0100110011 2.18 53 -0100110011 2.82 53 -0100110011 5.46 53 -0100110011 2.62 53 -0100110011 2.46 54 -0100110011 23.25 54 -0100110011 2.61 54 -0100110011 2.58 54 -0100110011 2.57 54 -0100110011 11:30 54 -0100110011 6.63 54 -0100110011 2:30 54 -0100110011 2.34 55 -0100110011 2.14 55 -0100110011 2.59 55 -0100110011 10.375 55 -0100110011 3.12 55 -0100110011 2.98 55 -0100110011 2.88 55 -0100110011 6.10 55 -0100110011 3.03 55 -0100110011 3.21 55 -0100110011 6.80 55 -0100110011 6.30 56 -0100110011 3.42 56 -0100110011 3.38 56 -0100110011 3.04 56 -0100110011 2.63 56 -0100110011 3.34 56 -0100110011 2.96 56 -0100110011 3:30 57 -0100110011 5.70 57 -0100110011 2.54 57 -0100110011 2.37 57 -0100110011 5:30 57 -0100110011 3.55 57 -0100110011 2.49 58 -0100110011 2.76 58 -0100110011 3.33 58 -0100110011 5.05 58 -0100110011 2.68 59 -0100110011 7.53 59 -0100110011 3.05 59 -0100110011 3.45 59 -0100110011 2.77 59 -0100110011 2.24 60 -0100110011 2.22 60 -0100110011 3.52 60 -0100110011 2.39 60 -0100110011 5.23 60 -0100110011 3.02 61 -0100110011 5.63 61 -0100110011 4.65 62 -0100110011 24.95 62 -0100110011 1.97 63 -0100110011 3.14 63 -0100110011 1.98 63 -0100110011 7.24 63 -0100110011 5.90 64 -0100110011 2.11 64 -0100110011 5.55 65 -0100110011 2.09 65 -0100110011 3.65 65 -0100110011 6.19 65 -0100110011 2.72 66 -0100110011 4.15 67 -0100110011 1.94 67 -0100110011 2.43 67 -0100110011 24.25 67 -0100110011 2.87 67 -0100110011 2.64 67 -0100110011 2.29 68 -0100110011 6.625 68 -0100110011 2.67 69 -0100110011 3.85 69 -0100110011 9.875 69 -0100110011 2.17 69 -0100110011 2.51 69 -0100110011 6.875 69 -0100110011 6.18 70 -0100110011 3.80 70 -0100110011 8.875 70 -0100110011 3.15 71 -0100110011 3.30 71 -0100110011 2.31 71 -0100110011 5.47 71 -0100110011 2.01 72 -0100110011 2.42 72 -0100110011 2.08 72 -0100110011 3.40 72 -0100110011 2.27 72 -0100110011 9.125 72 -0100110011 3.87 73 -0100110011 16.95 73 -0100110011 2.66 74 -0100110011 2.04 74 -0100110011 2.12 74 -0100110011 2.26 74 -0100110011 1.99 75 -0100110011 9:30 75 -0100110011 2.23 76 -0100110011 2.56 77 -0100110011 2.33 78 -0100110011 2.38 78 -0100110011 5.84 79 -0100110011 2.16 79 -0100110011 9.375 80 -0100110011 3.60 81 -0100110011 1.61 81 -0100110011 2.44 81 -0100110011 2.60 82 -0100110011 2.02 82 -0100110011 2.45 82 -0100110011 2.95 83 -0100110011 2.07 83 -0100110011 2.36 83 -0100110011 2.03 83 -0100110011 1.96 83 -0100110011 8:30 84 -0100110011 3.10 85 -0100110011 16.25 86 -0100110011 2.06 88 -0100110011 1.89 88 -0100110011 1.83 89 -0100110011 2.13 90 -0100110011 1.82 90 -0100110011 1.81 92 -0100110011 2.28 93 -0100110011 1.88 93 -0100110011 2.53 94 -0100110011 3.20 94 -0100110011 2.85 95 -0100110011 2.90 96 -0100110011 1.91 98 -0100110011 2.55 98 -0100110011 1.84 99 -0100110011 2.32 100 -0100110011 1.67 100 -0100110011 1.92 100 -0100110011 1.86 101 -0100110011 2.47 101 -0100110011 1.63 102 -0100110011 17.95 105 -0100110011 2.35 105 -0100110011 15.75 106 -0100110011 1.72 106 -0100110011 1.41 106 -0100110011 1.56 107 -0100110011 1.79 107 -0100110011 2.80 107 -0100110011 1.68 110 -0100110011 1.76 111 -0100110011 2.48 111 -0100110011 1.66 111 -0100110011 2.30 111 -0100110011 2.19 111 -0100110011 1.93 111 -0100110011 1.87 111 -0100110011 15.25 112 -0100110011 14.75 112 -0100110011 1.53 115 -0100110011 2.40 116 -0100110011 12.75 117 -0100110011 1.71 118 -0100110011 13.75 119 -0100110011 14.25 120 -0100110011 1.62 120 -0100110011 2.20 121 -0100110011 1.52 122 -0100110011 2.70 124 -0100110011 1.64 125 -0100110011 1.59 125 -0100110011 1.48 126 -0100110011 3.35 126 -0100110011 1.57 127 -0100110011 2.65 129 -0100110011 2.05 129 -0100110011 1.74 129 -0100110011 1.39 130 -0100110011 1.54 131 -0100110011 1.47 131 -0100110011 1.44 132 -0100110011 1.43 133 -0100110011 13.25 134 -0100110011 1.51 134 -0100110011 1.42 136 -0100110011 1.36 136 -0100110011 1.31 136 -0100110011 18.95 138 -0100110011 1.77 140 -0100110011 1.49 140 -0100110011 1.69 141 -0100110011 12.25 141 -0100110011 2.15 141 -0100110011 1.78 142 -0100110011 1.28 143 -0100110011 1.29 143 -0100110011 1.58 143 -0100110011 1.23 146 -0100110011 1.34 146 -0100110011 1.46 146 -0100110011 1.73 148 -0100110011 1.22 149 -0100110011 1.17 151 -0100110011 1.37 154 -0100110011 1.26 156 -0100110011 1.12 156 -0100110011 1.24 157 -0100110011 19.95 158 -0100110011 1.21 163 -0100110011 1.85 163 -0100110011 0.25 164 -0100110011 1.33 171 -0100110011 1.01 171 -0100110011 11.75 172 -0100110011 1.11 173 -0100110011 1.18 175 -0100110011 1.38 176 -0100110011 10.25 180 -0100110011 1.27 181 -0100110011 1.32 184 -0100110011 1.55 186 -0100110011 1.30 188 -0100110011 1.07 191 -0100110011 1.13 195 -0100110011 1.14 199 -0100110011 10.75 201 -0100110011 1.09 202 -0100110011 1.19 206 -0100110011 1.16 207 -0100110011 9.50 207 -0100110011 1.95 207 -0100110011 11.25 208 -0100110011 1.10 212 -0100110011 1.08 213 -0100110011 1.03 217 -0100110011 1.04 218 -0100110011 5.75 219 -0100110011 1.65 219 -0100110011 5.25 220 -0100110011 4.75 222 -0100110011 1.45 226 -0100110011 1.02 228 -0100110011 13.50 235 -0100110011 6.50 251 -0100110011 4.25 252 -0100110011 1.06 254 -0100110011 9.25 255 -0100110011 6.75 268 -0100110011 1.35 272 -0100110011 3.25 283 -0100110011 9.75 287 -0100110011 2.75 292 -0100110011 1.05 303 -0100110011 3.75 354 -0100110011 0.9 468 -0100110011 2.25 507 -0100110011 0.8 536 -0100110011 1.75 575 -0100110011 0.7 622 -0100110011 0.1 679 -0100110011 0.6 707 -0100110011 0.3 798 -0100110011 0.4 807 -0100110011 0.2 886 -0100110011 0.5 976 -0100110011 1.25 1054 -0100110011 5 10057 -0100110011 2 12452 -0100110011 4 7094 -0100110011 3 9223 -01001101000 interoperable 1 -01001101000 Metropolitana 1 -01001101000 1.0975 1 -01001101000 Genossenschafts-Zentralbank 1 -01001101000 1.02-a-share 1 -01001101000 30-on 1 -01001101000 1.375to 1 -01001101000 1,315,000 1 -01001101000 Goradok 1 -01001101000 38.71 1 -01001101000 24.77 1 -01001101000 Estero 1 -01001101000 315,238 1 -01001101000 Luang 1 -01001101000 Corp.9 1 -01001101000 interpretable 1 -01001101000 17-26. 1 -01001101000 57,439,846.75 1 -01001101000 24,384,830.31 1 -01001101000 constructive. 2 -01001101000 1-23 2 -01001101000 1,776,000 2 -01001101000 1,193 2 -01001101000 export. 2 -01001101000 50-60 2 -01001101000 1,005 2 -01001101000 15-20 3 -01001101000 1,058 3 -01001101000 30 17674 -01001101000 1-4 4 -01001101001 27-March 1 -01001101001 15-29 1 -01001101001 TANs 1 -01001101001 RANs 1 -01001101001 semiofficially 1 -01001101001 botanicals 1 -01001101001 re-sales 1 -01001101001 27-Aug. 1 -01001101001 5-June 1 -01001101001 Conin 1 -01001101001 27-31 1 -01001101001 17-29 1 -01001101001 NIC-bashing 1 -01001101001 10-Aug. 1 -01001101001 Aix-la-Chapelle 1 -01001101001 VTV 1 -01001101001 Inhale 1 -01001101001 HARMs 1 -01001101001 7-Jan. 1 -01001101001 6-20 1 -01001101001 2-23 1 -01001101001 24-Dec. 1 -01001101001 30Sept. 1 -01001101001 2-June 1 -01001101001 27-Nov. 1 -01001101001 hat-passing 1 -01001101001 14-18 1 -01001101001 microfilariae 1 -01001101001 creativity. 1 -01001101001 14-May 1 -01001101001 12-Feb. 1 -01001101001 14-Jan. 1 -01001101001 topiary 1 -01001101001 EWI 1 -01001101001 438-8888 1 -01001101001 spacewalks 1 -01001101001 22-24 1 -01001101001 21-29 1 -01001101001 5997 1 -01001101001 15-early 1 -01001101001 proprietorships. 1 -01001101001 7-Sunday 1 -01001101001 congealing 1 -01001101001 8-Sunday 1 -01001101001 MLPs. 1 -01001101001 1,783,548 1 -01001101001 LIC 1 -01001101001 2-27 1 -01001101001 houngans 1 -01001101001 clattering 1 -01001101001 1.40-dollar-a-share 1 -01001101001 10-13 1 -01001101001 46-cent-a-share 1 -01001101001 31-Sept. 1 -01001101001 9-23 1 -01001101001 21-Aug. 1 -01001101001 16-July 1 -01001101001 29-Aug. 1 -01001101001 17,1987-Jan. 1 -01001101001 Bolshevist-Leninist 1 -01001101001 12-Aug. 1 -01001101001 31-nearly 1 -01001101001 16-22 1 -01001101001 8184 1 -01001101001 31-Aug. 1 -01001101001 15-Nov. 1 -01001101001 11-Oct. 1 -01001101001 20-months 1 -01001101001 12-15 1 -01001101001 10. 1 -01001101001 AMRO 1 -01001101001 1416 1 -01001101001 41-cent-a-share 1 -01001101001 12-Dec. 1 -01001101001 9-30 1 -01001101001 8-Jan. 1 -01001101001 23-Jan. 1 -01001101001 21-Nov. 1 -01001101001 16-Nov. 1 -01001101001 15-Sunday 1 -01001101001 15-Dec. 1 -01001101001 23-31 1 -01001101001 7-17 1 -01001101001 26-Dec. 1 -01001101001 Wachses 1 -01001101001 WARN 1 -01001101001 14-17 1 -01001101001 carbonation 1 -01001101001 TCE 1 -01001101001 carbon-containing 1 -01001101001 ties. 1 -01001101001 faddy 1 -01001101001 8-24 1 -01001101001 25th. 1 -01001101001 disappearances. 1 -01001101001 9:6:4 1 -01001101001 Baltimoe 1 -01001101001 1-31 1 -01001101001 15-25 1 -01001101001 14-Nov. 1 -01001101001 6-27 1 -01001101001 11-Jan. 1 -01001101001 30-Oct. 1 -01001101001 21-26 1 -01001101001 26-29 1 -01001101001 un- 1 -01001101001 undyed 1 -01001101001 Puskinskaya 1 -01001101001 1-Dec. 1 -01001101001 11-Nov. 1 -01001101001 flattop 1 -01001101001 9-July 1 -01001101001 16-Jan. 1 -01001101001 19-April 1 -01001101001 IGF-1 1 -01001101001 flecked 1 -01001101001 Existentialism 1 -01001101001 semicoordinated 1 -01001101001 14-25 1 -01001101001 combatted 1 -01001101001 GEN 1 -01001101001 caftan 1 -01001101001 5-12 1 -01001101001 4-18 1 -01001101001 glass-cutters 1 -01001101001 Gunman 1 -01001101001 8-Sept. 1 -01001101001 5-April 1 -01001101001 5-Oct. 1 -01001101001 22-April 1 -01001101001 underbred 1 -01001101001 pro-defendant 1 -01001101001 monoclones 1 -01001101001 three-winker 1 -01001101001 21-Monday 1 -01001101001 13-Dec. 1 -01001101001 Micro-that 1 -01001101001 NIEX 1 -01001101001 Bryde 1 -01001101001 Libid 1 -01001101001 18-May 1 -01001101001 9-14 1 -01001101001 13-Aug. 1 -01001101001 28-May 1 -01001101001 31-March 1 -01001101001 JTIDs 1 -01001101001 Cepal 1 -01001101001 AggieMae 1 -01001101001 geomancy 1 -01001101001 troubadours 1 -01001101001 eightpage 1 -01001101001 MAMA 1 -01001101001 ETM 1 -01001101001 ISDNs 1 -01001101001 DBCP 1 -01001101001 5-Mar. 1 -01001101001 GMCSF 1 -01001101001 1-April 1 -01001101001 non-telephone-company 1 -01001101001 Mongolism 1 -01001101001 OSG 1 -01001101001 hoojin 1 -01001101001 1-Wednesday 1 -01001101001 17-March 1 -01001101001 29-May 1 -01001101001 3-July 1 -01001101001 1,2007 1 -01001101001 hypoglycemia 1 -01001101001 16-June 1 -01001101001 Rihani 1 -01001101001 ETU 1 -01001101001 17-24 1 -01001101001 9-Monday 1 -01001101001 out-trades 1 -01001101001 Nots 1 -01001101001 Not. 1 -01001101001 POs 1 -01001101001 unlivable 1 -01001101001 7-12 1 -01001101001 20-April 1 -01001101001 27-29 1 -01001101001 3-7 1 -01001101001 28-31 1 -01001101001 22-June 1 -01001101001 11-13 1 -01001101001 10-16 1 -01001101001 quasi-alternatives 1 -01001101001 20-Sept. 1 -01001101001 22-Thursday 1 -01001101001 QFs 1 -01001101001 38,288,457 1 -01001101001 11-14 1 -01001101001 4-July 1 -01001101001 1-June 1 -01001101001 5-Sunday 1 -01001101001 ownerhip 1 -01001101001 large-patterned 1 -01001101001 non-frilly 1 -01001101001 spelunking 1 -01001101001 Riccione 1 -01001101001 11,544,000 1 -01001101001 self-repetition 1 -01001101001 21-25 1 -01001101001 15-March 1 -01001101001 10-Dec. 1 -01001101001 28Sept. 1 -01001101001 4-Oct. 1 -01001101001 6-May 1 -01001101001 3-May 1 -01001101001 26-March 1 -01001101001 copy-boys 1 -01001101001 Raisinets 1 -01001101001 23-26 1 -01001101001 23-Sept. 1 -01001101001 24,290 1 -01001101001 21,696 1 -01001101001 19,528 1 -01001101001 16,892 1 -01001101001 12,695 1 -01001101001 IVCs 1 -01001101001 boatsmen 1 -01001101001 2.1-million-barrel 1 -01001101001 5-15 1 -01001101001 25-March 1 -01001101001 solenoid 1 -01001101001 unbelief 1 -01001101001 detention. 1 -01001101001 protist 1 -01001101001 Aquamarines 1 -01001101001 4-June 1 -01001101001 16-May 1 -01001101001 28-Feb. 1 -01001101001 27-Feb. 1 -01001101001 turpentine 1 -01001101001 20-25 1 -01001101001 professons 1 -01001101001 HDTVs 1 -01001101001 go-fer 1 -01001101001 Actup 1 -01001101001 2-19 1 -01001101001 4-Nov. 1 -01001101001 22-28 1 -01001101001 17-May 1 -01001101001 humoresque 1 -01001101001 Iranjersey 1 -01001101001 26-Jan. 1 -01001101001 27-Jan. 1 -01001101001 1-down 1 -01001101001 18-June 1 -01001101001 81-cent-a-share 1 -01001101001 BICs 1 -01001101001 15-23 1 -01001101001 21-Oct. 1 -01001101001 7-March 1 -01001101001 25-June 1 -01001101001 BMIRs 1 -01001101001 Prisa 1 -01001101001 13-Sunday 1 -01001101001 Fourons 1 -01001101001 90-car 1 -01001101001 Vormaerz 1 -01001101001 UBSS 1 -01001101001 24/31 1 -01001101001 11-15 1 -01001101001 yaw 1 -01001101001 Metropolitan. 1 -01001101001 STRIPS 1 -01001101001 SSIDs 1 -01001101001 13-Oct. 1 -01001101001 18-July 1 -01001101001 12-July 1 -01001101001 mothers-in-law 1 -01001101001 Mohau 1 -01001101001 unapproachable 1 -01001101001 jocose 1 -01001101001 lending. 1 -01001101001 deceptive. 1 -01001101001 12-and 1 -01001101001 Sultans 1 -01001101001 20-Sunday 1 -01001101001 19-26 1 -01001101001 Saum 1 -01001101001 154,738 1 -01001101001 23-June 1 -01001101001 EFPs 1 -01001101001 English-fluent 1 -01001101001 19-like 1 -01001101001 2-26 1 -01001101001 SEMI 1 -01001101001 +75 1 -01001101001 +51 1 -01001101001 29-Thursday 1 -01001101001 blocked-artery 1 -01001101001 bouzoukis 1 -01001101001 3l 1 -01001101001 ark-building 1 -01001101001 2-11 1 -01001101001 4-25 1 -01001101001 underpainting 1 -01001101001 11-May 1 -01001101001 P-M-T 1 -01001101001 864-1414 1 -01001101001 56,320 1 -01001101001 18-24 1 -01001101001 17-20 1 -01001101001 non-statements 1 -01001101001 NYCE 1 -01001101001 Collier-Mason 1 -01001101001 Hib 1 -01001101001 arduous-sounding 1 -01001101001 vivax 1 -01001101001 pixel 1 -01001101001 plaice 1 -01001101001 bulk-advertising 1 -01001101001 17-April 1 -01001101001 27-April 1 -01001101001 Finsat 1 -01001101001 leashed 1 -01001101001 6-9 1 -01001101001 1-July 1 -01001101001 8-Aug. 1 -01001101001 21-July 1 -01001101001 6-13 1 -01001101001 26-July 1 -01001101001 17-Nov. 1 -01001101001 '94 1 -01001101001 7-16 1 -01001101001 charter-type 1 -01001101001 21-March 1 -01001101001 2226 1 -01001101001 21-24 1 -01001101001 chaperoning 1 -01001101001 52-cent-a-share 1 -01001101001 17-23 1 -01001101001 Wading 1 -01001101001 Turnverein 1 -01001101001 nasi 1 -01001101001 12-May 1 -01001101001 2231 1 -01001101001 19-Oct. 1 -01001101001 29,536.1 1 -01001101001 3-April 1 -01001101001 174,401.6 1 -01001101001 210,438.2 1 -01001101001 214,455.7 1 -01001101001 5-19 1 -01001101001 ABC-Washington 1 -01001101001 council-member 1 -01001101001 12-Nov. 1 -01001101001 23-Nov. 1 -01001101001 14-Sunday 1 -01001101001 23. 1 -01001101001 22-July 1 -01001101001 11-28 1 -01001101001 21-27 1 -01001101001 retinol 1 -01001101001 17-Feb. 1 -01001101001 17-Apr. 1 -01001101001 overglamorization 1 -01001101001 16-21 1 -01001101001 3-22 1 -01001101001 overexpressed 1 -01001101001 34,542.1 1 -01001101001 20,231.4 1 -01001101001 19,364.4 1 -01001101001 248,454.2 1 -01001101001 400,718.2 1 -01001101001 369,445.0 1 -01001101001 9,496.6 1 -01001101001 pilling 1 -01001101001 birettas 1 -01001101001 1-megs 1 -01001101001 instreams 1 -01001101001 obsequiousness 1 -01001101001 BC118 1 -01001101001 24-June 1 -01001101001 15-April 1 -01001101001 6-Jan. 1 -01001101001 27-Sept. 1 -01001101001 UNESA 1 -01001101001 SV-10 1 -01001101001 BSTS 1 -01001101001 24. 1 -01001101001 11-27 1 -01001101001 28-Dec. 1 -01001101001 13-April 1 -01001101001 26-30 1 -01001101001 bluejays 1 -01001101001 39,620 1 -01001101001 dram 1 -01001101001 171,315 1 -01001101001 takeaways 1 -01001101001 near-tragedy 1 -01001101001 8-31 1 -01001101001 1-Aug. 1 -01001101001 14-16 1 -01001101001 847. 1 -01001101001 noncustomer 1 -01001101001 1,1996 1 -01001101001 seronegative 1 -01001101001 MFLOPS 1 -01001101001 quasi-taxes 1 -01001101001 29-Jan. 1 -01001101001 3-Nov. 1 -01001101001 27-Oct. 1 -01001101001 16-Aug. 1 -01001101001 19-24 1 -01001101001 13-17 1 -01001101001 29-Sept. 1 -01001101001 non-market-oriented 1 -01001101001 fed-fund 1 -01001101001 11-Aug. 1 -01001101001 8-25 1 -01001101001 18-23 1 -01001101001 unsaddling 1 -01001101001 inflation-meter 1 -01001101001 14. 1 -01001101001 2-16 1 -01001101001 2-Dec. 1 -01001101001 2-Nov. 1 -01001101001 1-29 1 -01001101001 3-Jan. 1 -01001101001 16-17 2 -01001101001 26-April 2 -01001101001 21-April 2 -01001101001 29-June 2 -01001101001 1,563 2 -01001101001 12-17 2 -01001101001 10-June 2 -01001101001 28-Oct. 2 -01001101001 25-Friday 2 -01001101001 sheeplike 2 -01001101001 Foray 2 -01001101001 193.10 2 -01001101001 19-23 2 -01001101001 22-27 2 -01001101001 25-Mar. 2 -01001101001 Narkhoz 2 -01001101001 28-Aug. 2 -01001101001 9-Nov. 2 -01001101001 19-Nov. 2 -01001101001 173.60 2 -01001101001 220.75 2 -01001101001 93.62 2 -01001101001 25-28 2 -01001101001 23-27 2 -01001101001 repotting 2 -01001101001 Egalite 2 -01001101001 13-16 2 -01001101001 9-Oct. 2 -01001101001 12-13 2 -01001101001 recapitalizes 2 -01001101001 94.86 2 -01001101001 13-Nov. 2 -01001101001 93.36 2 -01001101001 Prevail 2 -01001101001 3-8 2 -01001101001 7-Aug. 2 -01001101001 22. 2 -01001101001 23-Aug. 2 -01001101001 13-Jan. 2 -01001101001 20-June 2 -01001101001 17-Sept. 2 -01001101001 25-May 2 -01001101001 12-April 2 -01001101001 26-Aug. 2 -01001101001 5-Sept. 2 -01001101001 20-22 2 -01001101001 3-March 2 -01001101001 11-April 2 -01001101001 24-Nov. 2 -01001101001 31-Oct. 2 -01001101001 11-Dec. 2 -01001101001 16-20 2 -01001101001 11-July 2 -01001101001 230,700 2 -01001101001 15-June 2 -01001101001 22-Tuesday 2 -01001101001 30-Nov. 2 -01001101001 1-9 2 -01001101001 179.41 2 -01001101001 174.79 2 -01001101001 183.20 2 -01001101001 177.75 2 -01001101001 221.52 2 -01001101001 29-Oct. 2 -01001101001 24-26 2 -01001101001 LANs 2 -01001101001 25-Dec. 2 -01001101001 18-April 2 -01001101001 9-April 2 -01001101001 14-20 2 -01001101001 2-Aug. 2 -01001101001 Attract 2 -01001101001 Swoon 2 -01001101001 drought-breaking 2 -01001101001 12-Sept. 2 -01001101001 28-30 2 -01001101001 198.58 2 -01001101001 187.71 2 -01001101001 21-28 2 -01001101001 3-11 2 -01001101001 12-June 2 -01001101001 180.65 2 -01001101001 majlis 2 -01001101001 26-27 2 -01001101001 1,342 2 -01001101001 17-Oct. 2 -01001101001 93.20 2 -01001101001 178.70 2 -01001101001 26. 2 -01001101001 180.48 2 -01001101001 29-March 2 -01001101001 175.32 2 -01001101001 Wheelwright 2 -01001101001 DTSA 2 -01001101001 29-31 2 -01001101001 20-Oct. 2 -01001101001 219.71 2 -01001101001 4-8 2 -01001101001 13-Sept. 2 -01001101001 27-30 2 -01001101001 10,335 2 -01001101001 23-24 2 -01001101001 25-Aug. 2 -01001101001 11-Sept. 2 -01001101001 1215 2 -01001101001 5-July 2 -01001101001 30-Aug. 2 -01001101001 27-July 2 -01001101001 12-Oct. 2 -01001101001 20-May 2 -01001101001 11-30 2 -01001101001 1-Sept. 2 -01001101001 14-June 2 -01001101001 10-14 2 -01001101001 10-April 2 -01001101001 26-June 2 -01001101001 94.65 2 -01001101001 23-Oct. 2 -01001101001 14-19 2 -01001101001 4-Aug. 3 -01001101001 17-Dec. 3 -01001101001 12-16 3 -01001101001 7-June 3 -01001101001 20-24 3 -01001101001 22-25 3 -01001101001 16-Dec. 3 -01001101001 5-May 3 -01001101001 5-Aug. 3 -01001101001 12-14 3 -01001101001 28. 3 -01001101001 95.35 3 -01001101001 17-July 3 -01001101001 197.25 3 -01001101001 95.21 3 -01001101001 18-22 3 -01001101001 16-18 3 -01001101001 14-Oct. 3 -01001101001 30-Jan. 3 -01001101001 27-Dec. 3 -01001101001 17-19 3 -01001101001 20-Nov. 3 -01001101001 10-Nov. 3 -01001101001 6-Aug. 3 -01001101001 25-26 3 -01001101001 4-9 3 -01001101001 8-Oct. 3 -01001101001 4-March 3 -01001101001 1-6 3 -01001101001 6-Sept. 3 -01001101001 14-Sept. 3 -01001101001 16-Oct. 3 -01001101001 Kommunist 3 -01001101001 183.97 3 -01001101001 1-15 3 -01001101001 167.67 3 -01001101001 6-17 3 -01001101001 94.90 3 -01001101001 CAM 3 -01001101001 19-21 3 -01001101001 4-April 3 -01001101001 alai 3 -01001101001 16-30 3 -01001101001 18-Oct. 4 -01001101001 30-31 4 -01001101001 20-21 4 -01001101001 14-15 4 -01001101001 8. 4 -01001101001 29. 4 -01001101001 11-12 4 -01001101001 4. 4 -01001101001 17-18 4 -01001101001 16-19 4 -01001101001 19-22 4 -01001101001 25-Sept. 4 -01001101001 28-29 4 -01001101001 5-8 4 -01001101001 10-15 4 -01001101001 18-19 5 -01001101001 23-25 5 -01001101001 21-22 5 -01001101001 21-30 5 -01001101001 5-7 5 -01001101001 6-7 5 -01001101001 22-23 5 -01001101001 27-28 5 -01001101001 21-23 5 -01001101001 20. 5 -01001101001 13-14 5 -01001101001 15-17 6 -01001101001 1-5 6 -01001101001 24-25 6 -01001101001 25-29 6 -01001101001 29-30 6 -01001101001 19-20 6 -01001101001 RIG 6 -01001101001 Strips 7 -01001101001 15. 7 -01001101001 30. 7 -01001101001 5-6 8 -01001101001 15-16 8 -01001101001 10-12 8 -01001101001 3-4 9 -01001101001 18-20 9 -01001101001 31. 10 -01001101001 21-31 15 -01001101001 1. 16 -01001101001 Richstone 16 -01001101001 1-10 16 -01001101001 .... 21 -01001101001 11-20 23 -01001101001 934 27 -01001101001 31 8245 -01001101001 noncontract 44 -01001101010 20-bills 1 -01001101010 cow-pox 1 -01001101010 13-billion 1 -01001101010 FELV 1 -01001101010 1,000-range 1 -01001101010 516-888-9000 1 -01001101010 1.6-billion 1 -01001101010 793,282 1 -01001101010 7/29 1 -01001101010 1,418 1 -01001101010 153,233 1 -01001101010 0.206 1 -01001101010 100-billion-a-year 1 -01001101010 3.60-preference 1 -01001101010 S-VHS-C 1 -01001101010 scuppers 1 -01001101010 43.64 2 -01001101010 15-18 2 -01001101010 49.92 2 -01001101010 1,749,000 2 -01001101010 168.51 2 -01001101010 1,201 2 -01001101010 479.9 2 -01001101010 3,192 2 -01001101010 5-10 2 -01001101010 86.0 2 -01001101010 6,650 2 -01001101010 4,673 2 -01001101010 5,148 2 -01001101010 1,658 2 -01001101010 self-presentation 2 -01001101010 311.5 3 -01001101010 669.5 3 -01001101010 304.1 3 -01001101010 331.8 3 -01001101010 326.3 3 -01001101010 308.9 3 -01001101010 604.54 3 -01001101010 320.7 3 -01001101010 348.70 3 -01001101010 444.9 3 -01001101010 234.60 3 -01001101010 1,161 3 -01001101010 234.5 3 -01001101010 688.5 3 -01001101010 300.81 3 -01001101010 19. 3 -01001101010 1,129 3 -01001101010 253.5 3 -01001101010 449.5 3 -01001101010 301.50 4 -01001101010 1,124 4 -01001101010 250.5 4 -01001101010 2,111 4 -01001101010 1,113 4 -01001101010 1,310 4 -01001101010 comforters 4 -01001101010 6-8 5 -01001101010 1,460 5 -01001101010 2,340 5 -01001101010 501.5 5 -01001101010 forty 6 -01001101010 1,028 6 -01001101010 1,340 6 -01001101010 1,035 6 -01001101010 7-11 6 -01001101010 246.5 7 -01001101010 2,270 8 -01001101010 2,510 8 -01001101010 1,015 8 -01001101010 1,420 8 -01001101010 3,650 8 -01001101010 16.70 8 -01001101010 1,580 9 -01001101010 2-3 9 -01001101010 1,180 9 -01001101010 4-5 9 -01001101010 14,800 9 -01001101010 927 10 -01001101010 1,780 10 -01001101010 1,360 10 -01001101010 2,660 11 -01001101010 2,020 11 -01001101010 1,560 13 -01001101010 1,190 13 -01001101010 248.5 14 -01001101010 763 15 -01001101010 649 16 -01001101010 736 17 -01001101010 646 21 -01001101010 699 21 -01001101010 non-contract 47 -01001101010 29 3328 -01001101010 27 3506 -01001101010 26 3653 -01001101010 23 3861 -01001101010 24 3956 -01001101010 21 4009 -01001101010 19 5451 -01001101010 28 4059 -01001101010 22 4270 -01001101010 13 6337 -01001101010 14 6218 -01001101010 16 5733 -01001101010 17 5155 -01001101011 2-point-something-million 1 -01001101011 18.17 1 -01001101011 791,241 1 -01001101011 9,652-per-person 1 -01001101011 1,131.75 1 -01001101011 250,000-a-month 1 -01001101011 603,000-a-year 1 -01001101011 5-billion 1 -01001101011 5,500-a-copy 1 -01001101011 58.50-ashare 1 -01001101011 130,768 1 -01001101011 4-billion 1 -01001101011 3,000-a-month 1 -01001101011 178,320-a-year 1 -01001101011 rate-31.1 1 -01001101011 2.2-billion-a-year 1 -01001101011 un-tripled 1 -01001101011 270-million 1 -01001101011 700,000-a-month 1 -01001101011 80-89 1 -01001101011 48,000-a-year 1 -01001101011 under-1 1 -01001101011 immigration-linked 1 -01001101011 750-per-couple 2 -01001101011 386/25 2 -01001101011 119.80 2 -01001101011 1.449 2 -01001101011 310,700 2 -01001101011 2,228 2 -01001101011 85.75 2 -01001101011 FRAM 2 -01001101011 49.60 2 -01001101011 2,971 2 -01001101011 106.01 2 -01001101011 1,063 3 -01001101011 1,304 3 -01001101011 .07 4 -01001101011 1,529 4 -01001101011 1,138 4 -01001101011 1,279 5 -01001101011 14.27 5 -01001101011 1,653 6 -01001101011 30.05 6 -01001101011 11.65 7 -01001101011 18- 13 -01001101011 1300 20 -01001101011 535 59 -01001101011 286 75 -01001101011 386 152 -01001101011 11 9587 -01001101011 12 9544 -01001101011 18 6471 -0100110110 five-point-oh-eight 1 -0100110110 68.98 1 -0100110110 70.85 1 -0100110110 221.89 1 -0100110110 486.65 1 -0100110110 369.27 1 -0100110110 4,653 1 -0100110110 49.09 1 -0100110110 54.94 1 -0100110110 0.7317 1 -0100110110 0.0062 1 -0100110110 58.55 1 -0100110110 55.84 1 -0100110110 seven-eights 1 -0100110110 29.86 1 -0100110110 74.85 1 -0100110110 75.98 1 -0100110110 50.86 1 -0100110110 52.59 1 -0100110110 147.11 1 -0100110110 .125 1 -0100110110 57.36 1 -0100110110 2,887 1 -0100110110 165.64 1 -0100110110 297.31 1 -0100110110 28.95 1 -0100110110 narry 1 -0100110110 64.21 1 -0100110110 57.64 1 -0100110110 89.00-90.00 1 -0100110110 159.89 1 -0100110110 79.90 1 -0100110110 457.05 1 -0100110110 55.85 1 -0100110110 96.40 1 -0100110110 94.70 1 -0100110110 54.83 1 -0100110110 157.06 1 -0100110110 88.969 1 -0100110110 68.03 1 -0100110110 36.64 1 -0100110110 4,066 1 -0100110110 86.90 1 -0100110110 252.53 1 -0100110110 85.60 1 -0100110110 206.80 1 -0100110110 68.32 1 -0100110110 9,492 1 -0100110110 86.60 1 -0100110110 86.05 1 -0100110110 163.93 1 -0100110110 484.15 1 -0100110110 55.23 1 -0100110110 77.37 1 -0100110110 79.85 1 -0100110110 51.65 1 -0100110110 163.27 1 -0100110110 75.65 1 -0100110110 0.7507 1 -0100110110 48.29 1 -0100110110 239.11 1 -0100110110 205.81 1 -0100110110 83.15 1 -0100110110 75.35 1 -0100110110 75.48 1 -0100110110 76.35 1 -0100110110 37.31 1 -0100110110 0.343 1 -0100110110 82.30 1 -0100110110 75c 1 -0100110110 283.09 1 -0100110110 Chongqing-style 1 -0100110110 76.85 1 -0100110110 Jiron 1 -0100110110 95.53 1 -0100110110 51.03 1 -0100110110 56.37 1 -0100110110 97.85 1 -0100110110 51.88 1 -0100110110 252.45 1 -0100110110 136.07 1 -0100110110 8,275 1 -0100110110 233.15 1 -0100110110 85.93 1 -0100110110 71.96 1 -0100110110 60.23 1 -0100110110 50.59 1 -0100110110 49.38 1 -0100110110 211.33 1 -0100110110 0.7506 1 -0100110110 0.0086 1 -0100110110 0.7486 1 -0100110110 0.7464 1 -0100110110 0.7485 1 -0100110110 54.20 1 -0100110110 214,842 1 -0100110110 2-1/2 1 -0100110110 146.67 1 -0100110110 70.38 1 -0100110110 75.99 1 -0100110110 164.08 1 -0100110110 169.20 1 -0100110110 34.62 1 -0100110110 348,495 1 -0100110110 176,907 1 -0100110110 55.61 1 -0100110110 52.66 1 -0100110110 skyscaper 1 -0100110110 53.61 1 -0100110110 72.60 1 -0100110110 71.82 1 -0100110110 81.55 1 -0100110110 54.56 1 -0100110110 75.45 1 -0100110110 26.09 1 -0100110110 273.15 1 -0100110110 0.7034 1 -0100110110 87.35 1 -0100110110 72.12 1 -0100110110 56.03 1 -0100110110 1.2601 1 -0100110110 76.39 1 -0100110110 102.32 1 -0100110110 39.58 1 -0100110110 67.40 1 -0100110110 55.39 1 -0100110110 C12.5 1 -0100110110 sterlig 1 -0100110110 aqua-colored 1 -0100110110 140.91 1 -0100110110 48.16 1 -0100110110 78.77 1 -0100110110 C50 1 -0100110110 81.59 1 -0100110110 80.97 1 -0100110110 80.84 1 -0100110110 180.39 1 -0100110110 72.32 1 -0100110110 44.24 1 -0100110110 44.98 1 -0100110110 72.95 1 -0100110110 63.35 1 -0100110110 46.71 1 -0100110110 376.01 1 -0100110110 51.96 1 -0100110110 51.02 1 -0100110110 75.16 1 -0100110110 50-55 1 -0100110110 10.739 1 -0100110110 55.96 1 -0100110110 46.28 1 -0100110110 50.13 1 -0100110110 56.88 1 -0100110110 52.65 1 -0100110110 45.01 1 -0100110110 45.89 1 -0100110110 endlessly. 1 -0100110110 48.58 1 -0100110110 96.83 1 -0100110110 47.74 1 -0100110110 76.46 1 -0100110110 24.32 1 -0100110110 3,384 1 -0100110110 63.85 1 -0100110110 54.38 1 -0100110110 gasoline-intermediate 1 -0100110110 48.56 1 -0100110110 51.20 1 -0100110110 49.77 1 -0100110110 52.53 1 -0100110110 50,000-a-year 1 -0100110110 WITHDRAWAL 1 -0100110110 66.45 1 -0100110110 57.94 1 -0100110110 54.65 1 -0100110110 54.40 1 -0100110110 0.6800 1 -0100110110 0.6839 1 -0100110110 473.52 1 -0100110110 54.10 1 -0100110110 70.30 1 -0100110110 62.45 1 -0100110110 Katia 1 -0100110110 0.6893 1 -0100110110 0.6892 1 -0100110110 ITAs 1 -0100110110 60.95 1 -0100110110 76.73 1 -0100110110 67.1875 1 -0100110110 Exocet-type 1 -0100110110 47.72 1 -0100110110 51.18 1 -0100110110 1.0815 1 -0100110110 more-than-seven 1 -0100110110 51.56 1 -0100110110 70.20 1 -0100110110 84,760 1 -0100110110 69.65 1 -0100110110 Hart-Rice 1 -0100110110 56.45 1 -0100110110 69.90 1 -0100110110 75.01 1 -0100110110 75.39 1 -0100110110 40-a 1 -0100110110 137.83 1 -0100110110 51.58 1 -0100110110 190.56 1 -0100110110 rules-writing 1 -0100110110 65.42 1 -0100110110 53.36 1 -0100110110 205.41 1 -0100110110 55.67 1 -0100110110 48.42 1 -0100110110 56.67 1 -0100110110 46.74 1 -0100110110 54.82 1 -0100110110 162.33 1 -0100110110 150.78 1 -0100110110 67.70 1 -0100110110 44.16 1 -0100110110 51.97 1 -0100110110 40.65 1 -0100110110 49.35 1 -0100110110 63.63 1 -0100110110 jellied-eel 1 -0100110110 10.77-a-share 1 -0100110110 50.96 1 -0100110110 65-67 1 -0100110110 61.73 1 -0100110110 57.15 1 -0100110110 52.22 1 -0100110110 1.0468 1 -0100110110 67.35 1 -0100110110 73.42 1 -0100110110 74.52 1 -0100110110 104.63 1 -0100110110 amethysts 1 -0100110110 144.13 1 -0100110110 25.45 1 -0100110110 71.67 1 -0100110110 239.07 1 -0100110110 30,190 1 -0100110110 97.38 1 -0100110110 58.44 1 -0100110110 63.15 1 -0100110110 95.90 1 -0100110110 84.69 1 -0100110110 165.77 1 -0100110110 140.61 1 -0100110110 74.73 1 -0100110110 61.67 1 -0100110110 61.86 1 -0100110110 83.84 1 -0100110110 62.88 1 -0100110110 51.68 1 -0100110110 48.26 1 -0100110110 89.35 1 -0100110110 52.05 1 -0100110110 53.82 1 -0100110110 91.80 1 -0100110110 49.15 1 -0100110110 36.49 1 -0100110110 29.76 1 -0100110110 33.32 1 -0100110110 46.37 1 -0100110110 41.67 1 -0100110110 43.10 1 -0100110110 .50 1 -0100110110 46.48 1 -0100110110 46.57 1 -0100110110 50.61 1 -0100110110 90.70 1 -0100110110 58.36 1 -0100110110 53.11 1 -0100110110 40.77 1 -0100110110 2.285 1 -0100110110 59.74 1 -0100110110 149.09 1 -0100110110 emergency-claims 1 -0100110110 48.73 1 -0100110110 44.65 1 -0100110110 83.22 1 -0100110110 88.24 1 -0100110110 91.22 1 -0100110110 100.26 1 -0100110110 100.23 1 -0100110110 165.26 1 -0100110110 218.42 1 -0100110110 62.80 1 -0100110110 61.46 1 -0100110110 61.78 1 -0100110110 74.55 1 -0100110110 53.58 1 -0100110110 188.92 1 -0100110110 59.72 1 -0100110110 52.11 1 -0100110110 60.37 1 -0100110110 93.85 1 -0100110110 60.05 1 -0100110110 65.07 1 -0100110110 192.55 1 -0100110110 70.60 1 -0100110110 2,202 1 -0100110110 95.45 1 -0100110110 72.91 1 -0100110110 84.96 1 -0100110110 61.18 1 -0100110110 62.62 1 -0100110110 66.95 1 -0100110110 308.04 1 -0100110110 C62.5 1 -0100110110 90.60 1 -0100110110 3.40-per 1 -0100110110 41.53 1 -0100110110 78.80 1 -0100110110 minus-350 1 -0100110110 44.339 1 -0100110110 117.48 1 -0100110110 75.28 1 -0100110110 42.91 1 -0100110110 269.45 1 -0100110110 45.21 1 -0100110110 83.60 1 -0100110110 66.37 1 -0100110110 49.41 1 -0100110110 42.54 1 -0100110110 43.47 1 -0100110110 57.34 1 -0100110110 79.11 1 -0100110110 70.72 1 -0100110110 tintinnabulations 1 -0100110110 73.77 1 -0100110110 46.17 1 -0100110110 43.94 1 -0100110110 93.95 1 -0100110110 4.3125 1 -0100110110 72.92 1 -0100110110 38.81 1 -0100110110 80.03 1 -0100110110 56.89 1 -0100110110 74.99 1 -0100110110 42.89 1 -0100110110 64.53 1 -0100110110 31-24-40-8 1 -0100110110 17.50-a 1 -0100110110 73.97 1 -0100110110 90.54 1 -0100110110 22.73 1 -0100110110 51.87 1 -0100110110 26734.00 1 -0100110110 milquetoast 1 -0100110110 55.10 1 -0100110110 92.95 1 -0100110110 69.40 1 -0100110110 21.79 1 -0100110110 81.08 1 -0100110110 80.91 1 -0100110110 49.51 1 -0100110110 95.95 1 -0100110110 52.36 1 -0100110110 143.52 1 -0100110110 45.58 1 -0100110110 82.37 1 -0100110110 81.33 1 -0100110110 74.31 1 -0100110110 91.60 1 -0100110110 92.20 1 -0100110110 84.65 1 -0100110110 77.34 1 -0100110110 111.16 1 -0100110110 60.88 1 -0100110110 55.11 1 -0100110110 45.22 1 -0100110110 45.37 1 -0100110110 148.24 1 -0100110110 4.487 1 -0100110110 95.65 1 -0100110110 59.43 1 -0100110110 71.77 1 -0100110110 58.13 1 -0100110110 81.82 1 -0100110110 44.79 1 -0100110110 117.85 1 -0100110110 57.52 1 -0100110110 96.45 1 -0100110110 89.41 1 -0100110110 92.79 1 -0100110110 50.21 1 -0100110110 51.43 1 -0100110110 52.76 1 -0100110110 46.11 1 -0100110110 54.70 1 -0100110110 92.33 1 -0100110110 75.86 1 -0100110110 136.28 1 -0100110110 198.20 1 -0100110110 55.73 1 -0100110110 90.45 1 -0100110110 53.79 1 -0100110110 106.99 1 -0100110110 97.15 1 -0100110110 55.88 1 -0100110110 552.81 1 -0100110110 57.58 1 -0100110110 244.36 1 -0100110110 50.54 1 -0100110110 77.46 1 -0100110110 358.24 1 -0100110110 .675 1 -0100110110 95.05 1 -0100110110 8l 1 -0100110110 54.97 1 -0100110110 57.91 1 -0100110110 2,875 1 -0100110110 0.5625 1 -0100110110 138,410,000 1 -0100110110 39.0 1 -0100110110 46.91 1 -0100110110 409,370 1 -0100110110 73.03 1 -0100110110 58.99 1 -0100110110 54.17 1 -0100110110 5,275 1 -0100110110 78.99 1 -0100110110 374.02 1 -0100110110 50.40 1 -0100110110 48.84 1 -0100110110 120.28 1 -0100110110 91.78 1 -0100110110 94.55 1 -0100110110 114,188 1 -0100110110 109.06 1 -0100110110 67.87 1 -0100110110 93.40 1 -0100110110 53.73 1 -0100110110 55.99 1 -0100110110 59.64 1 -0100110110 68.72 1 -0100110110 71.275 1 -0100110110 161.46 1 -0100110110 computerrelated 1 -0100110110 .0072 1 -0100110110 90.80 1 -0100110110 90.00 1 -0100110110 96.00 1 -0100110110 75.05 1 -0100110110 786.25 1 -0100110110 67.05 1 -0100110110 163.34 1 -0100110110 estradiol 1 -0100110110 98.00 1 -0100110110 53.74 1 -0100110110 66.42 1 -0100110110 65.05 1 -0100110110 36.92 1 -0100110110 117.90 1 -0100110110 49.29 1 -0100110110 66.57 1 -0100110110 49.04 1 -0100110110 67.92 1 -0100110110 4,375 1 -0100110110 67.83 1 -0100110110 59.80 1 -0100110110 203.43 1 -0100110110 117.82 1 -0100110110 93.70 1 -0100110110 72.09 1 -0100110110 76.95 1 -0100110110 36.18 1 -0100110110 48.80 1 -0100110110 58.59 1 -0100110110 59.73 1 -0100110110 174.26 1 -0100110110 25.48 1 -0100110110 95.10 1 -0100110110 57.74 1 -0100110110 72.52 2 -0100110110 41.28 2 -0100110110 53.48 2 -0100110110 62.77 2 -0100110110 68.20 2 -0100110110 51.89 2 -0100110110 43.87 2 -0100110110 68.52 2 -0100110110 96.36 2 -0100110110 82.74 2 -0100110110 53.70 2 -0100110110 52.15 2 -0100110110 62.30 2 -0100110110 82.25 2 -0100110110 60.32 2 -0100110110 47.88 2 -0100110110 49.37 2 -0100110110 72.07 2 -0100110110 45.05 2 -0100110110 99.98 2 -0100110110 154.60 2 -0100110110 33.66 2 -0100110110 50.23 2 -0100110110 45.70 2 -0100110110 49.72 2 -0100110110 66.19 2 -0100110110 22.62 2 -0100110110 84.55 2 -0100110110 50.85 2 -0100110110 43.90 2 -0100110110 .90 2 -0100110110 63.40 2 -0100110110 0.2451 2 -0100110110 77.02 2 -0100110110 46.99 2 -0100110110 85.97 2 -0100110110 49.27 2 -0100110110 65.65 2 -0100110110 62.65 2 -0100110110 1100.94 2 -0100110110 51.47 2 -0100110110 346.96 2 -0100110110 1,879 2 -0100110110 53.85 2 -0100110110 75.95 2 -0100110110 647,000 2 -0100110110 144.93 2 -0100110110 80.08 2 -0100110110 169.50 2 -0100110110 80.85 2 -0100110110 49.78 2 -0100110110 90.15 2 -0100110110 55.57 2 -0100110110 48.20 2 -0100110110 60.93 2 -0100110110 66.61 2 -0100110110 95.70 2 -0100110110 31.12 2 -0100110110 54.15 2 -0100110110 51.74 2 -0100110110 63.70 2 -0100110110 53.81 2 -0100110110 64.85 2 -0100110110 48.15 2 -0100110110 83.30 2 -0100110110 66.06 2 -0100110110 44.97 2 -0100110110 81.91 2 -0100110110 13.99 2 -0100110110 64.81 2 -0100110110 55.74 2 -0100110110 65.45 2 -0100110110 71.27 2 -0100110110 62.90 2 -0100110110 92.35 2 -0100110110 95.00 2 -0100110110 0.0054 2 -0100110110 50.95 2 -0100110110 150.46 2 -0100110110 60.91 2 -0100110110 106.73 2 -0100110110 71.45 2 -0100110110 70.45 2 -0100110110 39.91 2 -0100110110 34.84 2 -0100110110 47.49 2 -0100110110 37.92 2 -0100110110 55.80 2 -0100110110 67.65 2 -0100110110 115.54 2 -0100110110 597.2 2 -0100110110 50.73 2 -0100110110 65.70 2 -0100110110 188.50 2 -0100110110 53.30 2 -0100110110 46.96 2 -0100110110 323.15 2 -0100110110 82.80 2 -0100110110 55.63 2 -0100110110 49.12 2 -0100110110 52.93 2 -0100110110 83.11 2 -0100110110 52.95 2 -0100110110 2.1666 2 -0100110110 154.98 2 -0100110110 35.66 2 -0100110110 45.08 2 -0100110110 73.18 2 -0100110110 Catarey 2 -0100110110 11.66 2 -0100110110 61.62 2 -0100110110 57.07 2 -0100110110 79.78 2 -0100110110 0.175 2 -0100110110 0.71875 2 -0100110110 45.15 2 -0100110110 52.07 2 -0100110110 66.39 2 -0100110110 80.35 2 -0100110110 55.15 2 -0100110110 1.0478 2 -0100110110 68.34 2 -0100110110 74.09 2 -0100110110 64.95 2 -0100110110 41.68 2 -0100110110 43.07 2 -0100110110 99.79 2 -0100110110 69.62 2 -0100110110 145.70 2 -0100110110 597.80 2 -0100110110 54.07 2 -0100110110 17.77 2 -0100110110 32.01 2 -0100110110 81.51 2 -0100110110 48.32 2 -0100110110 49.32 2 -0100110110 311.22 2 -0100110110 0.005 2 -0100110110 68.35 2 -0100110110 83.44 2 -0100110110 15.00 3 -0100110110 54.57 3 -0100110110 53.22 3 -0100110110 11.81 3 -0100110110 12.76 3 -0100110110 102.64 3 -0100110110 23.57 3 -0100110110 73.35 3 -0100110110 32.96 3 -0100110110 52.60 3 -0100110110 17.93 3 -0100110110 45.83 3 -0100110110 44.40 3 -0100110110 29.55 3 -0100110110 79.65 3 -0100110110 55.02 3 -0100110110 0.1875 3 -0100110110 46.26 3 -0100110110 296.72 3 -0100110110 51.70 3 -0100110110 63.45 3 -0100110110 11.0 3 -0100110110 56.01 3 -0100110110 52.38 3 -0100110110 27.36 3 -0100110110 145,300 3 -0100110110 81.35 3 -0100110110 95.50 3 -0100110110 .375 3 -0100110110 69.77 3 -0100110110 79.55 3 -0100110110 54.28 3 -0100110110 49.61 3 -0100110110 31.13 3 -0100110110 25.22 3 -0100110110 99.71 3 -0100110110 81.40 3 -0100110110 37.57 3 -0100110110 48.67 3 -0100110110 64.48 3 -0100110110 65.80 3 -0100110110 42.94 3 -0100110110 27.52 3 -0100110110 42.47 4 -0100110110 20.82 4 -0100110110 28.45 4 -0100110110 0.0007 4 -0100110110 46.76 4 -0100110110 96.50 4 -0100110110 53.80 4 -0100110110 0.0070 4 -0100110110 50.90 4 -0100110110 68.91 4 -0100110110 93.50 4 -0100110110 48.44 4 -0100110110 32.10 4 -0100110110 49.90 5 -0100110110 19.93 5 -0100110110 28.18 5 -0100110110 94.30 5 -0100110110 46.44 5 -0100110110 65.82 5 -0100110110 48.24 5 -0100110110 .01 5 -0100110110 0.0021 5 -0100110110 76.93 5 -0100110110 51.85 5 -0100110110 0.0048 5 -0100110110 0.0125 5 -0100110110 16.20 6 -0100110110 55.20 6 -0100110110 31.82 6 -0100110110 57.03 6 -0100110110 13.39 7 -0100110110 57.20 7 -0100110110 21.22 7 -0100110110 72.44 7 -0100110110 0.875 8 -0100110110 27.74 8 -0100110110 15.14 8 -0100110110 19.77 9 -0100110110 0.625 10 -0100110110 81.25 13 -0100110110 75.23 14 -0100110110 68.75 18 -0100110110 14.09 18 -0100110110 6.0 21 -0100110110 0.94 23 -0100110110 0.81 23 -0100110110 93.75 23 -0100110110 0.66 27 -0100110110 0.91 27 -0100110110 0.64 27 -0100110110 0.92 28 -0100110110 0.39 30 -0100110110 56.25 33 -0100110110 0.58 34 -0100110110 0.54 37 -0100110110 43.75 37 -0100110110 0.63 38 -0100110110 0.43 39 -0100110110 0.83 41 -0100110110 0.24 41 -0100110110 0.90 43 -0100110110 0.85 49 -0100110110 0.95 50 -0100110110 0.22 51 -0100110110 0.09 54 -0100110110 0.55 58 -0100110110 0.13 62 -0100110110 0.45 63 -0100110110 0.65 67 -0100110110 31.25 68 -0100110110 0.75 87 -0100110110 18.75 115 -0100110110 6.25 438 -0100110110 87.5 623 -0100110110 62.5 835 -0100110110 37.5 1340 -0100110110 12.5 2766 -0100110110 25 11991 -0100110110 75 4136 -01001101110 +15 1 -01001101110 minus-10 1 -01001101110 4,110,000 1 -01001101110 +286 1 -01001101110 +315 1 -01001101110 +367 1 -01001101110 +486 1 -01001101110 -24.4 1 -01001101110 +148 1 -01001101110 +267 1 -01001101110 69.16 1 -01001101110 99.64 1 -01001101110 41.47 1 -01001101110 then-13.5 1 -01001101110 54.32 1 -01001101110 C2.12 1 -01001101110 5.345 1 -01001101110 449.7 1 -01001101110 Bush-42 1 -01001101110 56.36 1 -01001101110 upper-50 1 -01001101110 Rusakovskaya 1 -01001101110 0.262 1 -01001101110 262.15 1 -01001101110 39.62 1 -01001101110 painted-on 1 -01001101110 80.55 1 -01001101110 71.35 1 -01001101110 50.16 1 -01001101110 50.38 1 -01001101110 112.06 1 -01001101110 homeowner-mortgage 1 -01001101110 79.0 1 -01001101110 quasilegal 1 -01001101110 -2.4 1 -01001101110 50.79 1 -01001101110 49.76 1 -01001101110 11,685,000 1 -01001101110 36.56 1 -01001101110 37.81 1 -01001101110 99.38 1 -01001101110 above-90 1 -01001101110 Toiten 1 -01001101110 43.54 1 -01001101110 30.735 1 -01001101110 111.163 1 -01001101110 110.783 1 -01001101110 Bibiana 1 -01001101110 84.81 1 -01001101110 95.97 1 -01001101110 99.12 1 -01001101110 305-billion 1 -01001101110 0.664 1 -01001101110 0.524 1 -01001101110 0.498 1 -01001101110 0.635 1 -01001101110 0.654 1 -01001101110 +52 1 -01001101110 then-19.53 1 -01001101110 then-23 1 -01001101110 68.38 1 -01001101110 mid-20 1 -01001101110 60.83 1 -01001101110 76.0 1 -01001101110 51.05 1 -01001101110 -4.3 1 -01001101110 6.094 1 -01001101110 549.8 1 -01001101110 9.9. 1 -01001101110 156.39 1 -01001101110 97.24 1 -01001101110 9,660,826 1 -01001101110 90.84 1 -01001101110 88.09 1 -01001101110 Yes-36 1 -01001101110 No-56 1 -01001101110 catalyze 2 -01001101110 1.004 2 -01001101110 41.1875 2 -01001101110 18-10 2 -01001101110 16.626 2 -01001101110 704.2 2 -01001101110 impliedly 2 -01001101110 more-than-10 2 -01001101110 632.5 2 -01001101110 50.57 2 -01001101110 less-than-1 2 -01001101110 526.5 2 -01001101110 407.8 2 -01001101110 1,642 2 -01001101110 53.96 2 -01001101110 705.2 2 -01001101110 2,048,000 2 -01001101110 90.95 2 -01001101110 96.05 2 -01001101110 1,868 2 -01001101110 52.29 2 -01001101110 29.35 2 -01001101110 84.87 2 -01001101110 50.94 2 -01001101110 54.66 2 -01001101110 0.656 2 -01001101110 50.48 2 -01001101110 33.47 2 -01001101110 83.04 2 -01001101110 112.17 2 -01001101110 693.9 2 -01001101110 63.77 2 -01001101110 81.47 2 -01001101110 45.29 2 -01001101110 91.00 2 -01001101110 22.675 2 -01001101110 62.10 2 -01001101110 75.52 2 -01001101110 528.5 2 -01001101110 99.47 2 -01001101110 283.1 2 -01001101110 7.6125 2 -01001101110 F&F 2 -01001101110 265.87 2 -01001101110 51.24 2 -01001101110 28-8 2 -01001101110 306.5 2 -01001101110 Cheskin+Masten 2 -01001101110 319.5 2 -01001101110 50.64 2 -01001101110 523.5 2 -01001101110 60.52 2 -01001101110 73.96 2 -01001101110 635.5 2 -01001101110 98.40 2 -01001101110 991.8 2 -01001101110 50.89 2 -01001101110 73.45 2 -01001101110 550.5 2 -01001101110 72.35 2 -01001101110 56.18 2 -01001101110 48.28 2 -01001101110 683.5 2 -01001101110 49.93 2 -01001101110 469.8 2 -01001101110 53.64 2 -01001101110 103.875 3 -01001101110 64.90 3 -01001101110 66.65 3 -01001101110 64.13 3 -01001101110 70.875 3 -01001101110 272.5 3 -01001101110 1.013 3 -01001101110 50.08 3 -01001101110 57.43 3 -01001101110 46.32 3 -01001101110 47.01 3 -01001101110 43.41 3 -01001101110 46.39 3 -01001101110 97.25 4 -01001101110 19.99 4 -01001101110 56.81 4 -01001101110 220.5 4 -01001101110 49.99 4 -01001101110 21.76 4 -01001101110 18-8 5 -01001101110 1,084 5 -01001101110 21.12 5 -01001101110 14.13 5 -01001101110 CMV 5 -01001101110 49.97 6 -01001101110 18.34 6 -01001101110 15.93 7 -01001101110 13.33 7 -01001101110 3,760 8 -01001101110 80.25 8 -01001101110 18.08 9 -01001101110 967 12 -01001101110 25.77 14 -01001101110 15.02 14 -01001101110 99.9 43 -01001101110 9.99 46 -01001101110 60.5 53 -01001101110 80.1 54 -01001101110 60.1 61 -01001101110 50.5 73 -01001101110 9.95 81 -01001101110 159 119 -01001101110 50.1 131 -01001101110 49.9 133 -01001101110 124 151 -01001101110 38.5 165 -01001101110 24.9 224 -01001101110 107 255 -01001101110 106 273 -01001101110 104 301 -01001101110 103 421 -01001101110 102 449 -01001101110 91 459 -01001101110 93 526 -01001101110 86 547 -01001101110 94 552 -01001101110 87 559 -01001101110 84 568 -01001101110 9.9 596 -01001101110 88 605 -01001101110 96 609 -01001101110 79 628 -01001101110 81 651 -01001101110 92 657 -01001101110 83 666 -01001101110 71 676 -01001101110 97 680 -01001101110 78 683 -01001101110 76 690 -01001101110 74 690 -01001101110 73 701 -01001101110 77 711 -01001101110 69 736 -01001101110 82 757 -01001101110 98 822 -01001101110 68 848 -01001101110 66 895 -01001101110 72 932 -01001101110 67 1008 -01001101110 61 1021 -01001101110 63 1115 -01001101110 64 1128 -01001101110 99 1157 -01001101110 62 1175 -01001101110 95 1176 -01001101110 59 1177 -01001101110 57 1250 -01001101110 58 1282 -01001101110 56 1381 -01001101110 53 1403 -01001101110 54 1428 -01001101110 85 1534 -01001101110 52 1552 -01001101110 47 1637 -01001101110 41 1664 -01001101110 39 1672 -01001101110 46 1733 -01001101110 43 1789 -01001101110 49 1792 -01001101110 34 1857 -01001101110 44 1899 -01001101110 48 1921 -01001101110 37 1947 -01001101110 42 1953 -01001101110 36 1964 -01001101110 51 1999 -01001101110 38 2075 -01001101110 32 2090 -01001101110 33 2242 -01001101110 65 2460 -01001101110 55 2490 -01001101110 70 3691 -01001101110 35 4112 -01001101110 80 4130 -01001101110 50 13596 -01001101110 40 8287 -010011011110 mid-40 1 -010011011110 28.59 1 -010011011110 32.15 1 -010011011110 31.96 1 -010011011110 47.44 1 -010011011110 80-90 1 -010011011110 8.215 1 -010011011110 26.24 1 -010011011110 186.07 1 -010011011110 0.012 1 -010011011110 101.87 1 -010011011110 7.052 1 -010011011110 mid-60 1 -010011011110 Dukakis-42 1 -010011011110 post-1945 1 -010011011110 1.965 1 -010011011110 1.373 1 -010011011110 109.39 1 -010011011110 32.67 1 -010011011110 91.66 1 -010011011110 65.89 1 -010011011110 5.53. 1 -010011011110 5.801 1 -010011011110 50-billion-a-year 1 -010011011110 40.67 1 -010011011110 83.57 1 -010011011110 98.79 1 -010011011110 2,676.1 1 -010011011110 -5.2 1 -010011011110 91.67 1 -010011011110 10:10 1 -010011011110 110.30 1 -010011011110 27.45 1 -010011011110 36.38 1 -010011011110 11.53-an-hour 1 -010011011110 sub-2 1 -010011011110 high-60 1 -010011011110 20.84 1 -010011011110 early-closing 1 -010011011110 109.84 1 -010011011110 0.3125 1 -010011011110 81.18 1 -010011011110 33.44 1 -010011011110 86.91 1 -010011011110 SFr3 1 -010011011110 19.79 1 -010011011110 28.08 1 -010011011110 +39 1 -010011011110 916,989 1 -010011011110 52.43 1 -010011011110 85-90 1 -010011011110 down-50 1 -010011011110 99.13 1 -010011011110 9-1/16 1 -010011011110 900-a-month 1 -010011011110 non-100 1 -010011011110 7.397 1 -010011011110 4.929988 1 -010011011110 low-30 1 -010011011110 9.483 1 -010011011110 more-than-50 1 -010011011110 1,380.04 1 -010011011110 9.428 1 -010011011110 1388 1 -010011011110 less-than-20 1 -010011011110 tested-70 1 -010011011110 10.406 1 -010011011110 108.29 1 -010011011110 49.57 1 -010011011110 2.912 1 -010011011110 135-million-a-year 1 -010011011110 51.45 2 -010011011110 45.67 2 -010011011110 30.07 2 -010011011110 3,465 2 -010011011110 24.07 2 -010011011110 1,359 2 -010011011110 16.19 2 -010011011110 84.13 2 -010011011110 600-a-week 2 -010011011110 mid-11 2 -010011011110 4.995 2 -010011011110 1.095 2 -010011011110 9.472 2 -010011011110 103.08 2 -010011011110 0.425 2 -010011011110 24.43 2 -010011011110 266.80 2 -010011011110 72.55 2 -010011011110 5,832 2 -010011011110 42.51 2 -010011011110 462.43 2 -010011011110 50.36 2 -010011011110 50.88 3 -010011011110 32.19 3 -010011011110 13.74 3 -010011011110 1,466,000 3 -010011011110 66.67 3 -010011011110 18.49 4 -010011011110 50.05 4 -010011011110 99.99 4 -010011011110 50.01 5 -010011011110 25.13 5 -010011011110 24.99 5 -010011011110 2:00 5 -010011011110 20.15 6 -010011011110 12.48 6 -010011011110 999 32 -010011011110 10 21477 -010011011110 15 13700 -010011011110 20 15792 -010011011111 Vido 1 -010011011111 4023 1 -010011011111 -to-95 1 -010011011111 99.9999 1 -010011011111 ninety 1 -010011011111 knockdown-dragout 1 -010011011111 -to-29 1 -010011011111 97.44 1 -010011011111 -to-47 1 -010011011111 pre-regulated 1 -010011011111 -65 1 -010011011111 417.1 1 -010011011111 -to-40 1 -010011011111 759.2 1 -010011011111 7,771,900 1 -010011011111 -to-27 1 -010011011111 -to-39 1 -010011011111 305.03 1 -010011011111 -37 1 -010011011111 -32 1 -010011011111 -9.8 1 -010011011111 -27 1 -010011011111 -to-20 1 -010011011111 13-billion-a-month 1 -010011011111 -to-16 1 -010011011111 -to-46 1 -010011011111 build-on-the-run 1 -010011011111 -44 1 -010011011111 down-100-point 1 -010011011111 -to-23 1 -010011011111 dragracing 1 -010011011111 video-jockey 1 -010011011111 -13 1 -010011011111 casual-clothing 1 -010011011111 /30 1 -010011011111 langoustines 1 -010011011111 -42 1 -010011011111 -22 1 -010011011111 two-test 1 -010011011111 60-to-120 1 -010011011111 1-to-21 1 -010011011111 aid-not-trade 1 -010011011111 -14 1 -010011011111 149.38 1 -010011011111 Charbon 1 -010011011111 Five-hundred 1 -010011011111 -to-28 1 -010011011111 -12 1 -010011011111 -to-14 1 -010011011111 -to-18 1 -010011011111 -to-9.9 1 -010011011111 85,000-a-year 1 -010011011111 17.000 1 -010011011111 super-profit 1 -010011011111 135.33 1 -010011011111 -26.2 1 -010011011111 -to-10 1 -010011011111 -to-1 1 -010011011111 -48 1 -010011011111 -75 1 -010011011111 121.19 1 -010011011111 9900 1 -010011011111 255.4 1 -010011011111 253,704 1 -010011011111 peace-movement 1 -010011011111 AMNESTY/25 1 -010011011111 14,627.8 1 -010011011111 39,720.84 1 -010011011111 7.83466 1 -010011011111 49.79 1 -010011011111 40.35 1 -010011011111 76,761 1 -010011011111 -34 1 -010011011111 -to-3.5 1 -010011011111 791.47 1 -010011011111 -to-25 1 -010011011111 -to-4 1 -010011011111 4,272 1 -010011011111 mid-50 1 -010011011111 Independentistas 1 -010011011111 -31 1 -010011011111 market:8.95 1 -010011011111 market:8.85 1 -010011011111 46.27 1 -010011011111 115-122 1 -010011011111 46,301 1 -010011011111 -6.63 1 -010011011111 2,176,511 1 -010011011111 14.983 1 -010011011111 market:8.83 1 -010011011111 Xylophila 1 -010011011111 -to-3.75 1 -010011011111 14,023 1 -010011011111 482,186 1 -010011011111 176,184 1 -010011011111 35,491.9 1 -010011011111 105,802.6 1 -010011011111 26,491.8 1 -010011011111 190,555.8 1 -010011011111 185,063.6 1 -010011011111 pre-tax-reform 1 -010011011111 -38 1 -010011011111 2,380,123 1 -010011011111 7,073 1 -010011011111 -7.5 1 -010011011111 -10.5 1 -010011011111 42,744.4 1 -010011011111 17,286.0 1 -010011011111 19,724.9 1 -010011011111 229,741.7 1 -010011011111 8,647.3 1 -010011011111 two-billion-Australian-dollar 1 -010011011111 2.0050 1 -010011011111 27,398 1 -010011011111 46,324 1 -010011011111 159,939 1 -010011011111 290,526 1 -010011011111 2,438,996 1 -010011011111 78,668 1 -010011011111 17,560 1 -010011011111 9,494 1 -010011011111 73,350 1 -010011011111 31,720 1 -010011011111 164,770 1 -010011011111 488,647 1 -010011011111 +20.3 1 -010011011111 -125 1 -010011011111 -16.3 1 -010011011111 -to-49 1 -010011011111 -to-36 1 -010011011111 -18 1 -010011011111 -29 1 -010011011111 162.07 1 -010011011111 Dinks 1 -010011011111 279,973 1 -010011011111 325,000-a-year 1 -010011011111 1227 1 -010011011111 1281 1 -010011011111 pre-white 1 -010011011111 -to-30 1 -010011011111 -100 1 -010011011111 880.4 2 -010011011111 3,970 2 -010011011111 137.75 2 -010011011111 152.85 2 -010011011111 8,310 2 -010011011111 -90 2 -010011011111 36.45 2 -010011011111 .04 2 -010011011111 market:8.90 2 -010011011111 50.24 2 -010011011111 -85 2 -010011011111 30-35 2 -010011011111 -60 2 -010011011111 -to-15 2 -010011011111 mid-30 2 -010011011111 615.1 2 -010011011111 -1.5 2 -010011011111 689.5 2 -010011011111 2,682 2 -010011011111 453.1 2 -010011011111 1,288 2 -010011011111 39.43 2 -010011011111 137.20 2 -010011011111 -to-41 2 -010011011111 221.1 2 -010011011111 -to-8 2 -010011011111 -to-2.5 2 -010011011111 -400 2 -010011011111 -43 2 -010011011111 .44 2 -010011011111 219.67 2 -010011011111 1,132 2 -010011011111 7,250 2 -010011011111 -2 2 -010011011111 -to-43 2 -010011011111 -36 2 -010011011111 460.5 2 -010011011111 -to-11 2 -010011011111 1,153 2 -010011011111 1,353 2 -010011011111 19.72 2 -010011011111 7,320 2 -010011011111 2.9975 2 -010011011111 3,290 2 -010011011111 -to-45 2 -010011011111 2,880 2 -010011011111 26.49 2 -010011011111 1,522 2 -010011011111 100.55 2 -010011011111 24.69 2 -010011011111 -50 2 -010011011111 1,146 2 -010011011111 1195 2 -010011011111 -20 3 -010011011111 -1 3 -010011011111 99.44 3 -010011011111 -to-12 3 -010011011111 -to-7 3 -010011011111 546.7 3 -010011011111 1,107 3 -010011011111 8,950 3 -010011011111 1,807,000 3 -010011011111 41.78 3 -010011011111 258.6 3 -010011011111 30.86 3 -010011011111 16.51 3 -010011011111 5,490 3 -010011011111 -to-2 3 -010011011111 -to-9 3 -010011011111 86,500 3 -010011011111 -70 3 -010011011111 -11 3 -010011011111 -45 3 -010011011111 1,052 3 -010011011111 -9 3 -010011011111 4,290 3 -010011011111 160.00 3 -010011011111 0.0 3 -010011011111 3,540 3 -010011011111 1,764 3 -010011011111 -7 3 -010011011111 -to-38 3 -010011011111 -to-42 3 -010011011111 74.35 3 -010011011111 452.5 3 -010011011111 -to-35 3 -010011011111 1,179 4 -010011011111 625.5 4 -010011011111 98.80 4 -010011011111 -17 4 -010011011111 1,097 4 -010011011111 -41 4 -010011011111 2,910 4 -010011011111 1,247 4 -010011011111 73.30 4 -010011011111 3,110 4 -010011011111 3,950 4 -010011011111 -to-5 4 -010011011111 126.25 4 -010011011111 1,228 4 -010011011111 425.5 4 -010011011111 2,490 4 -010011011111 market:8.80 4 -010011011111 1,076 5 -010011011111 3,560 5 -010011011111 339.5 5 -010011011111 -to-48 5 -010011011111 .14 5 -010011011111 -35 5 -010011011111 3,420 5 -010011011111 5,750 5 -010011011111 1,306 5 -010011011111 1,024 5 -010011011111 1,089 6 -010011011111 922 6 -010011011111 4,250 6 -010011011111 -4 6 -010011011111 12.61 6 -010011011111 -3 6 -010011011111 3,930 6 -010011011111 -25 6 -010011011111 966 7 -010011011111 4,730 7 -010011011111 4,050 7 -010011011111 124.55 8 -010011011111 -8 8 -010011011111 1,260 8 -010011011111 -10 8 -010011011111 993 8 -010011011111 958 8 -010011011111 238.5 8 -010011011111 -30 9 -010011011111 842 9 -010011011111 1,160 9 -010011011111 869 9 -010011011111 252.5 9 -010011011111 898 9 -010011011111 -15 9 -010011011111 849 9 -010011011111 996 9 -010011011111 801 10 -010011011111 998 10 -010011011111 -5 10 -010011011111 891 10 -010011011111 1,054 11 -010011011111 926 11 -010011011111 977 11 -010011011111 901 12 -010011011111 98.75 12 -010011011111 1,010 12 -010011011111 902 12 -010011011111 1,380 12 -010011011111 923 12 -010011011111 -to-6 12 -010011011111 734 12 -010011011111 1,170 13 -010011011111 2,650 13 -010011011111 1,840 13 -010011011111 974 13 -010011011111 491 14 -010011011111 794 14 -010011011111 751 14 -010011011111 897 14 -010011011111 539 14 -010011011111 788 15 -010011011111 972 16 -010011011111 -40 18 -010011011111 698 19 -010011011111 658 19 -010011011111 636 20 -010011011111 599 21 -010011011111 906 21 -010011011111 748 21 -010011011111 2,750 22 -010011011111 553 23 -010011011111 644 23 -010011011111 936 24 -010011011111 807 24 -010011011111 858 24 -010011011111 662 28 -010011011111 847 28 -010011011111 639 29 -010011011111 99.5 34 -010011011111 366 37 -010011011111 501 39 -010011011111 598 41 -010011011111 399 42 -010011011111 403 42 -010011011111 911 45 -010011011111 507 48 -010011011111 486 52 -010011011111 232 71 -010011011111 242 93 -010011011111 401 108 -010011011111 301 110 -010011011111 560 166 -010011011111 149 205 -010011011111 111 209 -010011011111 179 248 -010011011111 119 300 -010011011111 270 536 -010011011111 89 695 -010011011111 180 962 -010011011111 120 1503 -010011011111 45 3451 -010011011111 60 6527 -010011011111 90 3967 -01001110 776.1 1 -01001110 791.5 1 -01001110 757.7 1 -01001110 497.5 1 -01001110 366.5 1 -01001110 891.5 1 -01001110 378.7 1 -01001110 709.8 1 -01001110 210.3 1 -01001110 518.6 1 -01001110 450.1 1 -01001110 665.2 1 -01001110 693.2 1 -01001110 441.9 1 -01001110 573.4 1 -01001110 744.1 1 -01001110 573.5 1 -01001110 810.7 1 -01001110 805.9 1 -01001110 360.7 1 -01001110 687.0 1 -01001110 603.4 1 -01001110 33.0 1 -01001110 432.9 1 -01001110 837.6 1 -01001110 507.2 1 -01001110 819.1 1 -01001110 885.4 1 -01001110 892.1 1 -01001110 821.2 1 -01001110 879.7 1 -01001110 781.2 1 -01001110 746.5 1 -01001110 822.5 1 -01001110 915.9 1 -01001110 614.3 1 -01001110 802.6 1 -01001110 583.2 1 -01001110 878.5 1 -01001110 899.3 1 -01001110 427.5 1 -01001110 795.2 1 -01001110 901.8 1 -01001110 936.2 1 -01001110 401.9 1 -01001110 500.3 1 -01001110 801.6 1 -01001110 857.6 1 -01001110 342.2 1 -01001110 534.7 1 -01001110 117.54 1 -01001110 269.1 1 -01001110 509.9 1 -01001110 843.2 1 -01001110 101,049 1 -01001110 253.8 1 -01001110 330.1 1 -01001110 413.6 1 -01001110 545.1 1 -01001110 951.4 1 -01001110 491.6 1 -01001110 693.7 1 -01001110 684.2 1 -01001110 924.5 1 -01001110 897.7 1 -01001110 742.5 1 -01001110 370.1 1 -01001110 517.9 1 -01001110 602.4 1 -01001110 597.9 1 -01001110 471.6 1 -01001110 824.1 1 -01001110 895.2 1 -01001110 955.4 1 -01001110 521.7 1 -01001110 587.3 1 -01001110 374.2 1 -01001110 399.8 1 -01001110 985.8 1 -01001110 824.5 1 -01001110 554.3 1 -01001110 851.9 1 -01001110 286.8 1 -01001110 972.6 1 -01001110 469.3 1 -01001110 876.2 1 -01001110 697.7 1 -01001110 818.5 1 -01001110 831.4 1 -01001110 42.69 1 -01001110 495.8 1 -01001110 808.3 1 -01001110 170.0 1 -01001110 805.4 1 -01001110 411.7 1 -01001110 468.5 1 -01001110 674.5 1 -01001110 878.1 1 -01001110 767.8 1 -01001110 556.5 1 -01001110 612.2 1 -01001110 759.3 1 -01001110 454.4 1 -01001110 603.9 1 -01001110 437.8 1 -01001110 790.4 1 -01001110 512.9 1 -01001110 495.2 1 -01001110 +140 1 -01001110 700.54 1 -01001110 304.7 1 -01001110 437.5 1 -01001110 574.0 1 -01001110 633.1 1 -01001110 301.0 1 -01001110 54.44 1 -01001110 62.43 1 -01001110 307.7 1 -01001110 939.1 1 -01001110 593.6 1 -01001110 363.2 1 -01001110 276.1 1 -01001110 584.4 1 -01001110 856.8 1 -01001110 977.7 1 -01001110 851.2 1 -01001110 884.5 1 -01001110 959.5 1 -01001110 20.76 1 -01001110 987.9 1 -01001110 928.9 1 -01001110 848.6 1 -01001110 880.3 1 -01001110 816.2 1 -01001110 7.135 1 -01001110 321.6 1 -01001110 533.4 1 -01001110 455.0 1 -01001110 889.3 1 -01001110 690.8 1 -01001110 405.6 1 -01001110 677.4 1 -01001110 422.4 1 -01001110 487.1 1 -01001110 882.1 1 -01001110 824.8 1 -01001110 822.7 1 -01001110 568.3 1 -01001110 610.4 1 -01001110 886.4 1 -01001110 218.0 1 -01001110 961.2 1 -01001110 695.3 1 -01001110 907.7 1 -01001110 577.2 1 -01001110 938.6 1 -01001110 486.1 1 -01001110 715.4 1 -01001110 757.1 1 -01001110 876.4 1 -01001110 821.5 1 -01001110 936.1 1 -01001110 552.2 1 -01001110 894.7 1 -01001110 895.5 1 -01001110 845.9 1 -01001110 604.6 1 -01001110 3.927 1 -01001110 536.4 1 -01001110 890.9 1 -01001110 828.9 1 -01001110 876.3 1 -01001110 556.4 1 -01001110 541.0 1 -01001110 979.8 1 -01001110 820.1 1 -01001110 594.9 1 -01001110 449.2 1 -01001110 615.2 1 -01001110 644.2 1 -01001110 547.7 1 -01001110 601.3 1 -01001110 5,648,192 1 -01001110 550.6 1 -01001110 502.7 1 -01001110 670.2 1 -01001110 759.1 1 -01001110 761.2 1 -01001110 744.4 1 -01001110 705.5 1 -01001110 607.3 1 -01001110 716.2 1 -01001110 564.8 1 -01001110 870.7 1 -01001110 499.7 1 -01001110 433.8 1 -01001110 943.4 1 -01001110 560.4 1 -01001110 829.5 1 -01001110 252.1 1 -01001110 888.2 1 -01001110 679.9 1 -01001110 445.9 1 -01001110 994.4 1 -01001110 577.6 1 -01001110 625.7 1 -01001110 653.8 1 -01001110 255.6 1 -01001110 800.8 1 -01001110 859.8 1 -01001110 761.6 1 -01001110 325.6 1 -01001110 609.2 1 -01001110 447.9 1 -01001110 411.2 1 -01001110 280.2 1 -01001110 680.2 1 -01001110 715.7 1 -01001110 841.9 1 -01001110 833.49 1 -01001110 1.133 1 -01001110 460.1 1 -01001110 840.4 1 -01001110 573.9 1 -01001110 520.8 1 -01001110 797.6 1 -01001110 560.6 1 -01001110 513.4 1 -01001110 571.7 1 -01001110 854.9 1 -01001110 776.6 1 -01001110 990.8 1 -01001110 359.1 1 -01001110 614.7 1 -01001110 514.4 1 -01001110 714.3 1 -01001110 382.9 1 -01001110 320.2 1 -01001110 480.3 1 -01001110 647.9 1 -01001110 785.9 1 -01001110 652.9 1 -01001110 915.4 1 -01001110 998.2 1 -01001110 895.3 1 -01001110 318.6 1 -01001110 356.8 1 -01001110 893.2 1 -01001110 868.2 1 -01001110 807.8 1 -01001110 353.3 1 -01001110 524.5 1 -01001110 793.4 1 -01001110 927.1 1 -01001110 823.5 1 -01001110 258.7 1 -01001110 968.9 1 -01001110 542.1 1 -01001110 467.8 1 -01001110 932.3 1 -01001110 826.8 1 -01001110 561.5 1 -01001110 600.6 1 -01001110 820.6 1 -01001110 473.3 1 -01001110 495.9 1 -01001110 649.5 1 -01001110 382.7 1 -01001110 500.6 1 -01001110 617.7 1 -01001110 782.8 1 -01001110 620.3 1 -01001110 584.6 1 -01001110 747.1 1 -01001110 349.9 1 -01001110 900.1 1 -01001110 909.6 1 -01001110 656.7 1 -01001110 46.43 1 -01001110 174.13 1 -01001110 673.9 1 -01001110 490.3 1 -01001110 419.1 1 -01001110 584.3 1 -01001110 664.6 1 -01001110 937.7 1 -01001110 973.5 1 -01001110 469.5 1 -01001110 561.8 1 -01001110 783.2 1 -01001110 686.9 1 -01001110 584.1 1 -01001110 533.8 1 -01001110 806.9 1 -01001110 392.7 1 -01001110 814.3 1 -01001110 870.2 1 -01001110 903.5 1 -01001110 610.1 1 -01001110 625.4 1 -01001110 651.8 1 -01001110 547.8 1 -01001110 419.2 1 -01001110 653.5 1 -01001110 740.8 1 -01001110 504.3 1 -01001110 301.1 1 -01001110 496.6 1 -01001110 429.2 1 -01001110 586.1 1 -01001110 124.66 1 -01001110 638.6 1 -01001110 916.2 1 -01001110 616.2 1 -01001110 249.96 1 -01001110 949.5 1 -01001110 695.2 1 -01001110 704.9 1 -01001110 764.2 1 -01001110 972.3 1 -01001110 623.4 1 -01001110 699.2 1 -01001110 425.4 1 -01001110 838.7 1 -01001110 C245 1 -01001110 803.1 1 -01001110 916.4 1 -01001110 750.6 1 -01001110 513.54 1 -01001110 820.75 1 -01001110 801.3 1 -01001110 416.6 1 -01001110 958.2 1 -01001110 477.4 1 -01001110 45.36 1 -01001110 847.5 1 -01001110 616.7 1 -01001110 621.2 1 -01001110 928.5 1 -01001110 713.6 1 -01001110 517.1 1 -01001110 820.8 1 -01001110 868.9 1 -01001110 734.3 1 -01001110 595.7 1 -01001110 458.3 1 -01001110 932.9 1 -01001110 571.3 1 -01001110 664.3 1 -01001110 824.9 1 -01001110 370.2 1 -01001110 972.9 1 -01001110 31.61 1 -01001110 952.8 1 -01001110 317.6 1 -01001110 947.9 1 -01001110 868.64 1 -01001110 654.2 1 -01001110 NZ61.8 1 -01001110 NZ57 1 -01001110 639.8 1 -01001110 523.8 1 -01001110 477.3 1 -01001110 291.78 1 -01001110 909.2 1 -01001110 565.1 1 -01001110 829.7 1 -01001110 525.1 1 -01001110 970.5 1 -01001110 303.8 1 -01001110 778.4 1 -01001110 349.6 1 -01001110 34.06 1 -01001110 700.2 1 -01001110 :25 1 -01001110 986.8 1 -01001110 181.2 1 -01001110 459.5 1 -01001110 878.9 1 -01001110 561.7 1 -01001110 355.7 1 -01001110 709.9 1 -01001110 387.7 1 -01001110 886.1 1 -01001110 951.2 1 -01001110 802.1 1 -01001110 839.8 1 -01001110 742.7 1 -01001110 802.3 1 -01001110 986.2 1 -01001110 487.8 1 -01001110 814.9 1 -01001110 605.2 1 -01001110 87.876 1 -01001110 708.9 1 -01001110 857.3 1 -01001110 972.7 1 -01001110 963.9 1 -01001110 935.7 1 -01001110 511.3 1 -01001110 578.5 1 -01001110 968.2 1 -01001110 799.3 1 -01001110 926.7 1 -01001110 576.2 1 -01001110 933.2 1 -01001110 630.9 1 -01001110 965.7 1 -01001110 429.8 1 -01001110 890.3 1 -01001110 690.3 1 -01001110 433.9 1 -01001110 957.7 1 -01001110 305.6 1 -01001110 782.2 1 -01001110 629.6 1 -01001110 708.6 1 -01001110 2,978,500 1 -01001110 921.5 1 -01001110 657.8 1 -01001110 775.5 1 -01001110 344.1 1 -01001110 330.6 1 -01001110 884.6 1 -01001110 733.1 1 -01001110 696.6 1 -01001110 687.2 1 -01001110 669.4 1 -01001110 733.4 1 -01001110 761.9 1 -01001110 712.5 1 -01001110 592.9 1 -01001110 728.6 1 -01001110 345.6 1 -01001110 450.2 1 -01001110 822.9 1 -01001110 897.2 1 -01001110 812.3 1 -01001110 615.3 1 -01001110 743.2 1 -01001110 446.3 1 -01001110 990.5 1 -01001110 18.664 1 -01001110 949.2 1 -01001110 495.3 1 -01001110 620.4 1 -01001110 22.12 1 -01001110 185.59 1 -01001110 961.9 1 -01001110 1.861 1 -01001110 677.5 1 -01001110 1,996 1 -01001110 1,907 1 -01001110 662.5 1 -01001110 696.1 1 -01001110 845.7 1 -01001110 572.7 1 -01001110 934.7 1 -01001110 992.6 1 -01001110 814.8 1 -01001110 844.9 1 -01001110 676.3 1 -01001110 559.9 1 -01001110 503.1 1 -01001110 381.6 1 -01001110 374.3 1 -01001110 599.4 1 -01001110 800.6 1 -01001110 865.9 1 -01001110 634.6 1 -01001110 360.2 1 -01001110 609.3 1 -01001110 612.7 1 -01001110 732.1 1 -01001110 457.7 1 -01001110 421.3 1 -01001110 820.4 1 -01001110 464.7 1 -01001110 531.6 1 -01001110 687.3 1 -01001110 452.7 1 -01001110 871.9 1 -01001110 997.9 1 -01001110 368.9 1 -01001110 738.8 1 -01001110 830.6 1 -01001110 888.7 1 -01001110 711.8 1 -01001110 331.6 1 -01001110 744.9 1 -01001110 597.5 1 -01001110 828.4 1 -01001110 704.1 1 -01001110 526.8 1 -01001110 891.1 1 -01001110 1.509 1 -01001110 872.3 1 -01001110 708.7 1 -01001110 479.3 1 -01001110 942.7 1 -01001110 571.8 1 -01001110 786.2 1 -01001110 689.4 1 -01001110 6-7:30 1 -01001110 328.8 1 -01001110 DM400 1 -01001110 DM135 1 -01001110 DM306 1 -01001110 DM700 1 -01001110 DM136 1 -01001110 993.7 1 -01001110 1:06 1 -01001110 445.4 1 -01001110 407.6 1 -01001110 489.1 1 -01001110 266.6 1 -01001110 374.1 1 -01001110 505.3 1 -01001110 294.2 1 -01001110 70.354 1 -01001110 863.3 1 -01001110 383.6 1 -01001110 471.3 1 -01001110 781.8 1 -01001110 277.7 1 -01001110 618.4 1 -01001110 800.2 1 -01001110 763.4 1 -01001110 118.48 1 -01001110 118.65 1 -01001110 634.7 1 -01001110 379.2 1 -01001110 386.3 1 -01001110 399.1 1 -01001110 l4 1 -01001110 201.0 1 -01001110 646.7 1 -01001110 525.6 1 -01001110 631.9 1 -01001110 958.6 1 -01001110 971.2 1 -01001110 213.3 1 -01001110 435.7 1 -01001110 622.1 1 -01001110 75,000-a-year 1 -01001110 955.1 1 -01001110 678.6 1 -01001110 646.2 1 -01001110 513.3 1 -01001110 883.1 1 -01001110 298.9 1 -01001110 958.9 1 -01001110 756.4 1 -01001110 913.6 1 -01001110 409.5 1 -01001110 982.6 1 -01001110 494.1 1 -01001110 422.0 1 -01001110 952.3 1 -01001110 636.1 1 -01001110 950.8 1 -01001110 50.63 1 -01001110 771.8 1 -01001110 666.4 1 -01001110 928.8 1 -01001110 796.6 1 -01001110 9.745 1 -01001110 792.6 1 -01001110 757.2 1 -01001110 703.4 1 -01001110 535.2 1 -01001110 815.1 1 -01001110 570.3 1 -01001110 652.4 1 -01001110 361.4 1 -01001110 257.5 1 -01001110 488.5 1 -01001110 948.6 1 -01001110 45.81 1 -01001110 857.9 1 -01001110 764.5 1 -01001110 976.9 1 -01001110 360.9 1 -01001110 492.3 1 -01001110 789.3 1 -01001110 498.4 1 -01001110 831.9 1 -01001110 4.135 1 -01001110 359.4 1 -01001110 596.6 1 -01001110 664.9 1 -01001110 525.8 1 -01001110 773.7 1 -01001110 929.5 1 -01001110 474.6 1 -01001110 702.2 1 -01001110 214.3 1 -01001110 929.8 1 -01001110 696.9 1 -01001110 893.5 1 -01001110 542.2 1 -01001110 912.5 1 -01001110 549.4 1 -01001110 554.6 1 -01001110 666.8 1 -01001110 569.1 1 -01001110 580.4 1 -01001110 287.2 1 -01001110 566.2 1 -01001110 785.8 1 -01001110 859.9 1 -01001110 825.1 1 -01001110 890.7 1 -01001110 288.3 1 -01001110 692.3 1 -01001110 894.9 1 -01001110 950.3 1 -01001110 736.1 1 -01001110 308.6 1 -01001110 614.8 1 -01001110 543.7 1 -01001110 888.3 1 -01001110 695.8 1 -01001110 810.3 1 -01001110 949.6 1 -01001110 961.4 1 -01001110 707.1 1 -01001110 626.8 1 -01001110 930.5 1 -01001110 732.7 1 -01001110 891.3 1 -01001110 920.1 1 -01001110 584.9 1 -01001110 512.1 1 -01001110 762.7 1 -01001110 870.6 1 -01001110 204.16 1 -01001110 193.43 1 -01001110 767.5 1 -01001110 727.5 1 -01001110 976.3 1 -01001110 365.4 1 -01001110 659.4 1 -01001110 568.9 1 -01001110 377.7 1 -01001110 462.4 1 -01001110 617.2 1 -01001110 647.4 1 -01001110 453.9 1 -01001110 912.7 1 -01001110 733.6 1 -01001110 938.3 1 -01001110 866.2 1 -01001110 661.8 1 -01001110 946.6 1 -01001110 914.9 1 -01001110 817.3 1 -01001110 938.8 1 -01001110 327.1 1 -01001110 681.1 1 -01001110 826.6 1 -01001110 645.2 1 -01001110 783.8 1 -01001110 427.2 1 -01001110 999.3 1 -01001110 548.7 1 -01001110 172.01 1 -01001110 784.4 1 -01001110 1,700,00 1 -01001110 412.0 1 -01001110 698.5 1 -01001110 858.1 1 -01001110 511.2 1 -01001110 532.4 1 -01001110 957.8 1 -01001110 456.3 1 -01001110 222.9 1 -01001110 388.2 1 -01001110 903.8 1 -01001110 752.3 1 -01001110 918.2 1 -01001110 559.8 1 -01001110 842.9 1 -01001110 932.2 1 -01001110 969.6 1 -01001110 588.7 1 -01001110 554.7 1 -01001110 414.8 1 -01001110 766.4 1 -01001110 449.9 1 -01001110 823.1 1 -01001110 892.3 1 -01001110 739.3 1 -01001110 836.1 1 -01001110 613.4 1 -01001110 655.2 1 -01001110 346.4 1 -01001110 489.4 1 -01001110 628.2 1 -01001110 885.7 1 -01001110 597.4 1 -01001110 921.1 1 -01001110 803.2 1 -01001110 278.2 1 -01001110 538.2 1 -01001110 600.3 1 -01001110 :40 1 -01001110 521.3 1 -01001110 399.5 1 -01001110 688.6 1 -01001110 452.4 1 -01001110 836.3 1 -01001110 910.1 1 -01001110 681.4 1 -01001110 961.6 1 -01001110 542.6 1 -01001110 693.4 1 -01001110 435.9 1 -01001110 711.9 1 -01001110 634.1 1 -01001110 835.5 1 -01001110 570.6 1 -01001110 778.2 1 -01001110 678.8 1 -01001110 639.4 1 -01001110 926.5 1 -01001110 673.6 1 -01001110 622.6 1 -01001110 577.7 1 -01001110 244.1 1 -01001110 368.7 1 -01001110 881.6 1 -01001110 930.1 1 -01001110 980.7 1 -01001110 745.8 1 -01001110 473.8 1 -01001110 904.7 1 -01001110 804.7 1 -01001110 770.2 1 -01001110 515.4 1 -01001110 859.6 1 -01001110 349.4 1 -01001110 727.4 1 -01001110 464.6 1 -01001110 310.6 1 -01001110 644.7 1 -01001110 616.3 1 -01001110 443.5 1 -01001110 555.1 1 -01001110 506.7 1 -01001110 470.7 1 -01001110 662.9 1 -01001110 538.3 1 -01001110 529.8 1 -01001110 520.4 1 -01001110 112.73 1 -01001110 587.9 1 -01001110 821.8 1 -01001110 924.2 1 -01001110 967.9 1 -01001110 280.3 1 -01001110 948.8 1 -01001110 775.8 1 -01001110 832.5 1 -01001110 882.4 1 -01001110 912.8 1 -01001110 530.7 1 -01001110 945.4 1 -01001110 816.8 1 -01001110 847.3 1 -01001110 998.4 1 -01001110 549.7 1 -01001110 141.67 1 -01001110 553.2 1 -01001110 603.5 1 -01001110 376.9 1 -01001110 687.4 1 -01001110 426.8 1 -01001110 351.9 1 -01001110 864.3 1 -01001110 679.8 1 -01001110 588.4 1 -01001110 933.0 1 -01001110 971.7 1 -01001110 244.9 1 -01001110 672.6 1 -01001110 58.09 1 -01001110 47.45 1 -01001110 973.2 1 -01001110 898.2 1 -01001110 993.8 1 -01001110 590.9 1 -01001110 686.4 1 -01001110 733.8 1 -01001110 581.9 1 -01001110 379.1 1 -01001110 816.1 1 -01001110 522.2 1 -01001110 339.3 1 -01001110 614.2 1 -01001110 441.3 1 -01001110 842.6 1 -01001110 570.5 1 -01001110 477.0 1 -01001110 778.3 1 -01001110 503.3 1 -01001110 908.9 1 -01001110 913.1 1 -01001110 919.9 1 -01001110 236.8 1 -01001110 612.4 1 -01001110 510.4 1 -01001110 678.9 1 -01001110 333.7 1 -01001110 432.2 1 -01001110 618.5 1 -01001110 676.9 1 -01001110 399.3 1 -01001110 874.6 1 -01001110 682.8 1 -01001110 459.2 1 -01001110 852.8 1 -01001110 490.4 1 -01001110 745.5 1 -01001110 677.8 1 -01001110 912.1 1 -01001110 778.9 1 -01001110 941.6 1 -01001110 796.4 1 -01001110 659.6 1 -01001110 3,565 1 -01001110 581.3 1 -01001110 2,498,400 1 -01001110 774.4 1 -01001110 99.49 1 -01001110 992.5 1 -01001110 921.0 1 -01001110 398.8 1 -01001110 424.7 1 -01001110 746.2 1 -01001110 550.4 1 -01001110 934.2 1 -01001110 989.9 1 -01001110 480.6 1 -01001110 661.7 1 -01001110 54.85 1 -01001110 103.66 1 -01001110 528.4 1 -01001110 899.6 1 -01001110 372.3 1 -01001110 954.8 1 -01001110 596.3 1 -01001110 546.6 1 -01001110 821.7 1 -01001110 605.7 1 -01001110 934.4 1 -01001110 706.4 1 -01001110 654.1 1 -01001110 940.2 1 -01001110 741.1 1 -01001110 853.8 1 -01001110 848.7 1 -01001110 572.1 1 -01001110 959.3 1 -01001110 653.2 1 -01001110 797.9 1 -01001110 765.8 1 -01001110 787.9 1 -01001110 639.5 1 -01001110 746.4 1 -01001110 728.7 1 -01001110 427.3 1 -01001110 864.5 1 -01001110 938.4 1 -01001110 968.7 1 -01001110 635.0 1 -01001110 149.43 1 -01001110 984.6 1 -01001110 437.7 1 -01001110 706.3 1 -01001110 :05 1 -01001110 745.1 1 -01001110 290.4 1 -01001110 85.87 1 -01001110 788.8 1 -01001110 484.3 1 -01001110 :45 1 -01001110 746.1 1 -01001110 717.8 1 -01001110 404.6 1 -01001110 983.5 1 -01001110 927.4 1 -01001110 987.8 1 -01001110 389.9 1 -01001110 944.1 1 -01001110 673.1 1 -01001110 978.3 1 -01001110 562.6 1 -01001110 907.6 1 -01001110 365.7 1 -01001110 414.6 1 -01001110 723.4 1 -01001110 106.554 1 -01001110 393.8 1 -01001110 761.4 1 -01001110 825.6 1 -01001110 956.9 1 -01001110 483.2 1 -01001110 456.1 1 -01001110 895.7 1 -01001110 667.8 1 -01001110 384.2 1 -01001110 384.9 1 -01001110 397.0 1 -01001110 479.1 1 -01001110 897.9 1 -01001110 982.8 1 -01001110 969.4 1 -01001110 722.1 1 -01001110 848.5 1 -01001110 185.63 1 -01001110 364.3 1 -01001110 914.8 1 -01001110 53,502 1 -01001110 930.3 1 -01001110 553.7 1 -01001110 828.8 1 -01001110 793.5 1 -01001110 540.2 1 -01001110 923.4 1 -01001110 657.1 1 -01001110 957.4 1 -01001110 959.1 1 -01001110 663.2 1 -01001110 504.8 1 -01001110 640.2 1 -01001110 600.5 1 -01001110 677.6 1 -01001110 685.2 1 -01001110 783.3 1 -01001110 362.1 1 -01001110 623.5 1 -01001110 465.3 1 -01001110 954.4 1 -01001110 366.7 1 -01001110 380.4 1 -01001110 833.1 1 -01001110 204.1 1 -01001110 33.14 1 -01001110 903.7 1 -01001110 785.1 1 -01001110 750.3 1 -01001110 470.8 1 -01001110 865.2 1 -01001110 536.8 1 -01001110 659.8 1 -01001110 526.3 1 -01001110 568.1 1 -01001110 509.3 1 -01001110 663.6 1 -01001110 817.5 1 -01001110 225.2 1 -01001110 665.9 1 -01001110 872.6 1 -01001110 525.2 1 -01001110 460.8 1 -01001110 773.1 1 -01001110 613.1 1 -01001110 752.7 1 -01001110 517.0 1 -01001110 861.2 1 -01001110 640.5 1 -01001110 364.8 1 -01001110 546.4 1 -01001110 977.3 1 -01001110 476.2 1 -01001110 432.3 1 -01001110 679.7 1 -01001110 768.8 1 -01001110 478.7 1 -01001110 907.3 1 -01001110 596.2 1 -01001110 698.9 1 -01001110 694.6 1 -01001110 451.5 1 -01001110 523.2 1 -01001110 514.1 1 -01001110 743.8 1 -01001110 65.72 1 -01001110 374.0 1 -01001110 437.4 1 -01001110 394.2 1 -01001110 30,000-a-month 1 -01001110 922.1 1 -01001110 813.8 1 -01001110 622.8 1 -01001110 858.9 1 -01001110 512.6 1 -01001110 373.8 1 -01001110 763.3 1 -01001110 216.0 1 -01001110 390.2 1 -01001110 918.9 1 -01001110 819.8 1 -01001110 674.3 1 -01001110 985.6 1 -01001110 872.4 1 -01001110 941.3 1 -01001110 631.1 1 -01001110 851.7 1 -01001110 287.3 1 -01001110 466.2 1 -01001110 982.1 1 -01001110 620.1 1 -01001110 853.5 1 -01001110 628.1 1 -01001110 853.1 1 -01001110 981.1 1 -01001110 380.5 1 -01001110 5,108,169 1 -01001110 493.6 1 -01001110 557.5 1 -01001110 388.3 1 -01001110 936.7 1 -01001110 780.4 1 -01001110 720,435 1 -01001110 551.5 1 -01001110 501.4 1 -01001110 668.7 1 -01001110 515.7 1 -01001110 578.6 1 -01001110 880.9 1 -01001110 520.1 1 -01001110 350.1 1 -01001110 612.1 1 -01001110 945.2 1 -01001110 372.1 1 -01001110 985.5 1 -01001110 597.8 1 -01001110 513.5 1 -01001110 346.1 1 -01001110 590.1 1 -01001110 564.7 1 -01001110 725.3 1 -01001110 421.7 1 -01001110 919.3 1 -01001110 518.9 1 -01001110 642.8 1 -01001110 730.3 1 -01001110 421.9 1 -01001110 249.1 1 -01001110 670.7 1 -01001110 334.8 1 -01001110 783.5 1 -01001110 505.8 1 -01001110 721.1 1 -01001110 384.4 1 -01001110 621.8 1 -01001110 584.7 1 -01001110 437.9 1 -01001110 881.7 1 -01001110 336.9 1 -01001110 856.3 1 -01001110 714.5 1 -01001110 669.1 1 -01001110 826.3 1 -01001110 792.3 1 -01001110 641.4 1 -01001110 863.1 1 -01001110 589.4 1 -01001110 851.1 1 -01001110 810.6 1 -01001110 744.86 1 -01001110 683.1 1 -01001110 839.6 1 -01001110 372.8 1 -01001110 626.3 1 -01001110 555.6 1 -01001110 835.8 1 -01001110 487.2 1 -01001110 393.3 1 -01001110 600.9 1 -01001110 446.4 1 -01001110 746.8 1 -01001110 546.1 1 -01001110 835.4 1 -01001110 781.5 1 -01001110 147.0 1 -01001110 537.7 1 -01001110 578.2 1 -01001110 694.1 1 -01001110 414.9 1 -01001110 580.7 1 -01001110 960.1 1 -01001110 283.5 1 -01001110 905.7 1 -01001110 486.6 1 -01001110 769.3 1 -01001110 484.9 1 -01001110 935.5 1 -01001110 923.9 1 -01001110 815.8 1 -01001110 645.4 1 -01001110 469.9 1 -01001110 969.5 1 -01001110 1.119 1 -01001110 1.346 1 -01001110 735.9 1 -01001110 779.2 1 -01001110 514.6 1 -01001110 548.5 1 -01001110 576.9 1 -01001110 775.3 1 -01001110 200-a-day 1 -01001110 323.4 1 -01001110 48.476 1 -01001110 432.4 1 -01001110 919.7 1 -01001110 347.6 1 -01001110 670.9 1 -01001110 900.8 1 -01001110 636.8 1 -01001110 751.7 1 -01001110 over-one 1 -01001110 913.3 1 -01001110 856.5 1 -01001110 688.7 1 -01001110 270.4 1 -01001110 431.4 1 -01001110 934.3 1 -01001110 800.9 1 -01001110 689.7 1 -01001110 631.7 1 -01001110 425.3 1 -01001110 774.5 1 -01001110 706.1 1 -01001110 814.4 1 -01001110 618.2 1 -01001110 410.1 1 -01001110 636.9 1 -01001110 805.1 1 -01001110 834.5 1 -01001110 866.9 1 -01001110 314.6 1 -01001110 94.91 1 -01001110 626.1 1 -01001110 611.7 1 -01001110 554.5 1 -01001110 710.4 1 -01001110 458.2 1 -01001110 794.9 1 -01001110 772.9 1 -01001110 293.1 1 -01001110 503.8 1 -01001110 291.9 1 -01001110 902.2 1 -01001110 337.316 1 -01001110 864.8 1 -01001110 611.9 1 -01001110 604.9 1 -01001110 856.4 1 -01001110 49.52 1 -01001110 297.1 1 -01001110 347.3 1 -01001110 590.5 1 -01001110 846.6 1 -01001110 762.4 1 -01001110 372.4 1 -01001110 660.9 1 -01001110 906.4 1 -01001110 909.7 1 -01001110 497.8 1 -01001110 719.9 1 -01001110 486.2 1 -01001110 419.7 1 -01001110 446.6 1 -01001110 sub-100 1 -01001110 429.4 1 -01001110 499.1 1 -01001110 634.9 1 -01001110 809.8 1 -01001110 808.2 1 -01001110 992.1 1 -01001110 929.2 1 -01001110 919.8 1 -01001110 908.4 1 -01001110 646.1 1 -01001110 588.2 1 -01001110 640.8 1 -01001110 936.8 1 -01001110 443.3 1 -01001110 735.1 1 -01001110 833.8 1 -01001110 824.4 1 -01001110 629.7 1 -01001110 897.4 1 -01001110 286.4 1 -01001110 736.5 1 -01001110 476.7 1 -01001110 353.1 1 -01001110 729.5 1 -01001110 468.6 1 -01001110 379.5 1 -01001110 851.8 1 -01001110 625.3 1 -01001110 360.1 1 -01001110 768.9 1 -01001110 496.1 1 -01001110 986.4 1 -01001110 933.6 1 -01001110 539.1 1 -01001110 459.1 1 -01001110 598.8 1 -01001110 457.2 1 -01001110 856.6 1 -01001110 583.8 1 -01001110 458.9 1 -01001110 772.4 1 -01001110 631.3 1 -01001110 714.1 1 -01001110 812.9 1 -01001110 649.1 1 -01001110 788.6 1 -01001110 695.4 1 -01001110 445.6 1 -01001110 38.70 1 -01001110 785.5 1 -01001110 705.7 1 -01001110 347.9 1 -01001110 366.6 1 -01001110 643.4 1 -01001110 321.1 1 -01001110 569.7 1 -01001110 653.3 1 -01001110 849.6 1 -01001110 407.2 1 -01001110 368.8 1 -01001110 829.6 1 -01001110 617.3 1 -01001110 599.7 1 -01001110 486.4 1 -01001110 110.61 1 -01001110 807.4 1 -01001110 565.4 1 -01001110 441.7 1 -01001110 541.3 1 -01001110 535.1 1 -01001110 25.02 1 -01001110 861.6 1 -01001110 911.9 1 -01001110 486.9 1 -01001110 A112 1 -01001110 863.7 1 -01001110 967.6 1 -01001110 527.6 1 -01001110 3,476,797 1 -01001110 166.28 1 -01001110 897.5 1 -01001110 362.2 1 -01001110 850.9 1 -01001110 45,720,000 1 -01001110 952.9 1 -01001110 642.9 1 -01001110 497.3 1 -01001110 213.7 1 -01001110 760.3 1 -01001110 333.1 1 -01001110 837.8 1 -01001110 907.1 1 -01001110 901.3 1 -01001110 562.4 1 -01001110 544.9 1 -01001110 995.8 1 -01001110 844.4 1 -01001110 302.6 1 -01001110 691.3 1 -01001110 934.9 1 -01001110 594.1 1 -01001110 48.0 1 -01001110 880.7 1 -01001110 669.8 1 -01001110 652.3 1 -01001110 467.9 1 -01001110 665.1 1 -01001110 770.7 1 -01001110 15,320 1 -01001110 601.4 1 -01001110 464.1 1 -01001110 30-to-35 1 -01001110 1,168,000 1 -01001110 867.3 1 -01001110 168.75 1 -01001110 645.7 1 -01001110 71.28 1 -01001110 61.51 1 -01001110 770.1 1 -01001110 166.0 1 -01001110 620.8 1 -01001110 514.0 1 -01001110 751.3 1 -01001110 338.9 1 -01001110 490.1 1 -01001110 952.6 1 -01001110 638.8 1 -01001110 689.9 1 -01001110 792.8 1 -01001110 614.6 1 -01001110 743.6 1 -01001110 646.5 1 -01001110 462.1 1 -01001110 727.9 1 -01001110 440.4 1 -01001110 701.1 1 -01001110 950.6 1 -01001110 795.1 1 -01001110 490.9 1 -01001110 363.3 1 -01001110 657.4 1 -01001110 250.6 1 -01001110 672.9 1 -01001110 548.6 1 -01001110 460.7 1 -01001110 885.1 1 -01001110 421.2 1 -01001110 192.68 1 -01001110 939.4 1 -01001110 970.4 1 -01001110 804.6 1 -01001110 370.4 1 -01001110 541.7 1 -01001110 661.1 1 -01001110 517.7 1 -01001110 887.2 1 -01001110 584.5 1 -01001110 777.7 1 -01001110 863.4 1 -01001110 666.2 1 -01001110 733.9 1 -01001110 767.4 1 -01001110 940.5 1 -01001110 586.3 1 -01001110 642.5 1 -01001110 348.2 1 -01001110 351.7 1 -01001110 2.275 1 -01001110 481.6 1 -01001110 708.4 1 -01001110 322.4 1 -01001110 270.1 1 -01001110 977.2 1 -01001110 629.2 1 -01001110 830.4 1 -01001110 849.2 1 -01001110 579.3 1 -01001110 55.07 1 -01001110 587.7 1 -01001110 861.1 1 -01001110 563.5 1 -01001110 472.7 1 -01001110 485.6 1 -01001110 411.4 1 -01001110 311.1 1 -01001110 314.87 1 -01001110 480.8 1 -01001110 855.5 1 -01001110 500.9 1 -01001110 423.7 1 -01001110 503.6 1 -01001110 387.9 1 -01001110 850.1 1 -01001110 823.4 1 -01001110 729.7 1 -01001110 696.3 1 -01001110 911.3 1 -01001110 461.4 1 -01001110 655.1 1 -01001110 821.6 1 -01001110 849.9 1 -01001110 430.4 1 -01001110 967.7 1 -01001110 691.8 1 -01001110 438.7 1 -01001110 631.4 1 -01001110 597.7 1 -01001110 803.4 1 -01001110 598.3 1 -01001110 855.7 1 -01001110 686.5 1 -01001110 100.44 1 -01001110 864.4 1 -01001110 426.7 1 -01001110 884.3 1 -01001110 769.7 1 -01001110 592.2 1 -01001110 409.4 1 -01001110 578.9 1 -01001110 980.6 1 -01001110 521.4 1 -01001110 431.7 1 -01001110 950.7 1 -01001110 874.3 1 -01001110 972.2 1 -01001110 522.3 1 -01001110 729.1 1 -01001110 884.2 1 -01001110 790.2 1 -01001110 350.3 1 -01001110 729.9 1 -01001110 402.9 1 -01001110 850.6 1 -01001110 797.1 1 -01001110 866.3 1 -01001110 883.7 1 -01001110 900.9 1 -01001110 904.4 1 -01001110 879.9 1 -01001110 995.7 1 -01001110 10-billion 1 -01001110 412.6 1 -01001110 453.3 1 -01001110 942.2 1 -01001110 893.9 1 -01001110 719.4 1 -01001110 665.6 1 -01001110 846.2 1 -01001110 478.9 1 -01001110 421.6 1 -01001110 919.1 1 -01001110 773.5 1 -01001110 1,153,700 1 -01001110 552.7 1 -01001110 245.9 1 -01001110 468.4 1 -01001110 763.8 1 -01001110 635.3 1 -01001110 14.175 1 -01001110 423.4 1 -01001110 433.7 1 -01001110 292.2 1 -01001110 959.8 1 -01001110 501.3 1 -01001110 412.9 1 -01001110 841.5 1 -01001110 291.2 1 -01001110 351.2 1 -01001110 254.8 1 -01001110 623.7 1 -01001110 527.0 1 -01001110 833.6 1 -01001110 840.6 1 -01001110 961.3 1 -01001110 781.7 1 -01001110 356.5 1 -01001110 693.8 1 -01001110 635.8 1 -01001110 386.2 1 -01001110 312.4 1 -01001110 334.3 1 -01001110 296.4 1 -01001110 474.9 1 -01001110 752.9 1 -01001110 540.3 1 -01001110 576.6 1 -01001110 751.2 1 -01001110 877.4 1 -01001110 593.7 1 -01001110 693.5 1 -01001110 899.9 1 -01001110 471.8 1 -01001110 977.8 1 -01001110 923.8 1 -01001110 196.9 1 -01001110 9,530 1 -01001110 889.4 1 -01001110 999.6 1 -01001110 886.3 1 -01001110 807.7 1 -01001110 735.6 1 -01001110 864.7 1 -01001110 652.7 1 -01001110 545.73 1 -01001110 590.8 1 -01001110 533.6 1 -01001110 833.9 1 -01001110 548.9 1 -01001110 678.3 1 -01001110 574.9 1 -01001110 628.4 1 -01001110 882.8 1 -01001110 591.4 1 -01001110 578.4 1 -01001110 747.2 1 -01001110 306.03 1 -01001110 441.1 1 -01001110 675.8 1 -01001110 593.2 1 -01001110 568.0 1 -01001110 873.7 1 -01001110 591.9 1 -01001110 637.7 1 -01001110 978.2 1 -01001110 627.2 1 -01001110 870.3 1 -01001110 346.3 1 -01001110 993.1 1 -01001110 672.99 1 -01001110 890.0 1 -01001110 400.8 1 -01001110 702.8 1 -01001110 556.2 1 -01001110 951.3 1 -01001110 915.3 1 -01001110 410.4 1 -01001110 688.3 1 -01001110 740.1 1 -01001110 378.1 1 -01001110 814.1 1 -01001110 846.9 1 -01001110 485.4 1 -01001110 987.2 1 -01001110 991.2 1 -01001110 883.3 1 -01001110 621.7 1 -01001110 991.6 1 -01001110 646.9 1 -01001110 742.9 1 -01001110 378.6 1 -01001110 899.2 1 -01001110 310.5 1 -01001110 893.4 1 -01001110 831.6 1 -01001110 819.7 1 -01001110 483.6 1 -01001110 700.6 1 -01001110 653.1 1 -01001110 418.2 1 -01001110 868.3 1 -01001110 239.0 1 -01001110 830.7 1 -01001110 848.8 1 -01001110 701.6 1 -01001110 284.1 1 -01001110 360.3 1 -01001110 315.7 1 -01001110 57,930,000 1 -01001110 809.3 1 -01001110 420.3 1 -01001110 493.4 1 -01001110 852.4 1 -01001110 209.8 1 -01001110 617.8 1 -01001110 509.2 1 -01001110 606.1 1 -01001110 523.7 1 -01001110 895.1 1 -01001110 606.8 1 -01001110 493.3 1 -01001110 485.1 1 -01001110 850.3 1 -01001110 981.5 1 -01001110 690.4 1 -01001110 759.4 1 -01001110 707.8 1 -01001110 DM100 1 -01001110 857.5 1 -01001110 499.5 1 -01001110 683.6 1 -01001110 US8.9 1 -01001110 838.8 1 -01001110 US72.3 1 -01001110 990.4 1 -01001110 231.7 1 -01001110 346.0 1 -01001110 525.9 1 -01001110 814.5 1 -01001110 910.2 1 -01001110 850.2 1 -01001110 US45.9 1 -01001110 959.0 1 -01001110 528.7 1 -01001110 944.8 1 -01001110 849.4 1 -01001110 747.8 1 -01001110 577.3 1 -01001110 356.7 1 -01001110 548.8 1 -01001110 765.5 1 -01001110 67.94 1 -01001110 1,158,484 1 -01001110 816.7 1 -01001110 455.9 1 -01001110 476.8 1 -01001110 953.5 1 -01001110 897.3 1 -01001110 890.4 1 -01001110 914.3 1 -01001110 529.3 1 -01001110 2.241 1 -01001110 967.5 1 -01001110 319.1 1 -01001110 624.7 1 -01001110 414.3 1 -01001110 191.05 1 -01001110 475.8 1 -01001110 870.4 1 -01001110 767.48 1 -01001110 552.8 1 -01001110 281.73 1 -01001110 666.66 1 -01001110 788.9 1 -01001110 495.6 1 -01001110 768.2 1 -01001110 716.5 1 -01001110 439.7 1 -01001110 301.8 1 -01001110 659.3 1 -01001110 979.1 1 -01001110 373.4 1 -01001110 648.3 1 -01001110 475.1 1 -01001110 464.3 1 -01001110 417.3 1 -01001110 675.6 1 -01001110 51,100,000 1 -01001110 1,195,495,000 1 -01001110 906.7 1 -01001110 544.7 1 -01001110 511.6 1 -01001110 22,217,400,000 1 -01001110 1,209,650,000 1 -01001110 22,152,415,000 1 -01001110 6,601,075,000 1 -01001110 979.7 1 -01001110 88.37 1 -01001110 571.6 1 -01001110 997.4 1 -01001110 714.8 1 -01001110 757.4 1 -01001110 6,403,205,000 1 -01001110 792.1 1 -01001110 542.6. 1 -01001110 607.4 1 -01001110 646.8 1 -01001110 644.4 1 -01001110 857.4 1 -01001110 217.8 1 -01001110 791.1 1 -01001110 393.9 1 -01001110 8,140,000 1 -01001110 440.9 1 -01001110 558.5 1 -01001110 740.9 1 -01001110 414.4 1 -01001110 711.2 1 -01001110 760.6 1 -01001110 425.6 1 -01001110 662.8 1 -01001110 997.3 1 -01001110 975.8 1 -01001110 699.6 1 -01001110 370.7 1 -01001110 162.44 1 -01001110 908.7 1 -01001110 851.3 1 -01001110 887.7 1 -01001110 619.7 1 -01001110 820.3 1 -01001110 599.5 1 -01001110 756.6 1 -01001110 401.4 1 -01001110 63.0 1 -01001110 853.7 1 -01001110 308.4 1 -01001110 828.1 1 -01001110 500,000-to-1 1 -01001110 862.8 1 -01001110 635.2 1 -01001110 588.56 1 -01001110 996.3 1 -01001110 698.1 1 -01001110 677.1 1 -01001110 831.1 1 -01001110 677.7 1 -01001110 573.1 1 -01001110 622.9 1 -01001110 410.9 1 -01001110 863.6 1 -01001110 392.8 1 -01001110 789.2 1 -01001110 418.1 1 -01001110 415.5 1 -01001110 804.4 1 -01001110 523.1 1 -01001110 975.7 1 -01001110 382.0 1 -01001110 952.1 1 -01001110 497.1 1 -01001110 752.5 1 -01001110 546.9 1 -01001110 438.9 1 -01001110 533.5 1 -01001110 898.6 1 -01001110 7,208,935,000 1 -01001110 1,151,040,000 1 -01001110 24,020,385,000 1 -01001110 834.2 1 -01001110 818.6 1 -01001110 517.43 1 -01001110 555.2 1 -01001110 463.2 1 -01001110 715.1 1 -01001110 386.4 1 -01001110 913.5 1 -01001110 960.9 1 -01001110 482.9 1 -01001110 498.0 1 -01001110 489.9 1 -01001110 750.8 1 -01001110 659.2 1 -01001110 574.2 1 -01001110 632.4 1 -01001110 326.2 1 -01001110 676.4 1 -01001110 546.3 1 -01001110 492.2 1 -01001110 843.8 1 -01001110 892.2 1 -01001110 314.8 1 -01001110 695.1 1 -01001110 974.1 1 -01001110 580.2 1 -01001110 777.9 1 -01001110 603.6 1 -01001110 124.59 1 -01001110 932.5 1 -01001110 56.61 1 -01001110 96.76 1 -01001110 358.2 1 -01001110 469.2 1 -01001110 993.5 1 -01001110 324.59 1 -01001110 778.8 1 -01001110 861.7 1 -01001110 434.2 1 -01001110 84.23 1 -01001110 806.4 1 -01001110 250.8 1 -01001110 521.5 1 -01001110 593.4 1 -01001110 864.6 1 -01001110 292.1 1 -01001110 718.4 1 -01001110 468.7 1 -01001110 816.6 1 -01001110 294.8 1 -01001110 521.9 1 -01001110 771.5 1 -01001110 557.9 1 -01001110 237.2 1 -01001110 455.7 1 -01001110 628.3 1 -01001110 466.4 1 -01001110 745.4 1 -01001110 607.8 1 -01001110 156.87 1 -01001110 726.4 1 -01001110 807.9 1 -01001110 834.8 1 -01001110 878.6 1 -01001110 415.1 1 -01001110 572.5 1 -01001110 598.1 1 -01001110 860.4 1 -01001110 726.7 1 -01001110 686.7 1 -01001110 906.3 1 -01001110 843.6 1 -01001110 757.5 1 -01001110 11.578 1 -01001110 12.145 1 -01001110 774.3 1 -01001110 607.6 2 -01001110 491.4 2 -01001110 444.8 2 -01001110 730.6 2 -01001110 674.4 2 -01001110 375.7 2 -01001110 631.5 2 -01001110 546.8 2 -01001110 669.7 2 -01001110 270.3 2 -01001110 599.1 2 -01001110 548.4 2 -01001110 728.3 2 -01001110 370.3 2 -01001110 831.8 2 -01001110 616.5 2 -01001110 834.4 2 -01001110 966.6 2 -01001110 706.8 2 -01001110 323.8 2 -01001110 867.9 2 -01001110 957.9 2 -01001110 754.1 2 -01001110 631.2 2 -01001110 654.5 2 -01001110 931.8 2 -01001110 957.5 2 -01001110 321.3 2 -01001110 961.1 2 -01001110 895.75 2 -01001110 311.8 2 -01001110 720.2 2 -01001110 186.8 2 -01001110 516.3 2 -01001110 766.1 2 -01001110 461.8 2 -01001110 422.7 2 -01001110 740.6 2 -01001110 442.8 2 -01001110 444.1 2 -01001110 804.9 2 -01001110 813.2 2 -01001110 47.53 2 -01001110 751.4 2 -01001110 875.1 2 -01001110 956.2 2 -01001110 628.9 2 -01001110 364.9 2 -01001110 826.5 2 -01001110 304.3 2 -01001110 316.6 2 -01001110 550.7 2 -01001110 671.4 2 -01001110 479.7 2 -01001110 803.7 2 -01001110 379.8 2 -01001110 684.4 2 -01001110 565.7 2 -01001110 442.7 2 -01001110 899.8 2 -01001110 615.8 2 -01001110 404.5 2 -01001110 778.7 2 -01001110 623.9 2 -01001110 530.6 2 -01001110 742.2 2 -01001110 809.6 2 -01001110 438.3 2 -01001110 610.2 2 -01001110 666.6 2 -01001110 352.3 2 -01001110 16.04 2 -01001110 889.2 2 -01001110 424.1 2 -01001110 531.2 2 -01001110 376.3 2 -01001110 679.3 2 -01001110 472.1 2 -01001110 133.9 2 -01001110 197.22 2 -01001110 600.4 2 -01001110 390.9 2 -01001110 248.2 2 -01001110 496.4 2 -01001110 452.1 2 -01001110 360.4 2 -01001110 443.8 2 -01001110 487.7 2 -01001110 450.7 2 -01001110 676.5 2 -01001110 353.7 2 -01001110 330.4 2 -01001110 720.5 2 -01001110 382.2 2 -01001110 492.8 2 -01001110 452.9 2 -01001110 428.2 2 -01001110 290.8 2 -01001110 615.5 2 -01001110 934.5 2 -01001110 492.6 2 -01001110 318.7 2 -01001110 675.2 2 -01001110 748.6 2 -01001110 493.2 2 -01001110 206.4 2 -01001110 612.3 2 -01001110 44.46 2 -01001110 457.3 2 -01001110 839.9 2 -01001110 913.9 2 -01001110 676.7 2 -01001110 839.3 2 -01001110 994.6 2 -01001110 966.3 2 -01001110 470.6 2 -01001110 63,365,000 2 -01001110 533.9 2 -01001110 339.9 2 -01001110 697.5 2 -01001110 397.8 2 -01001110 680.7 2 -01001110 359.8 2 -01001110 852.6 2 -01001110 595.8 2 -01001110 568.6 2 -01001110 754.9 2 -01001110 334.2 2 -01001110 343.6 2 -01001110 288.9 2 -01001110 778.5 2 -01001110 518.7 2 -01001110 630.1 2 -01001110 855.9 2 -01001110 221.5 2 -01001110 639.6 2 -01001110 565.3 2 -01001110 741.7 2 -01001110 650.8 2 -01001110 988.9 2 -01001110 970.7 2 -01001110 812.6 2 -01001110 489.7 2 -01001110 369.1 2 -01001110 765.7 2 -01001110 590.7 2 -01001110 503.2 2 -01001110 454.2 2 -01001110 395.1 2 -01001110 445.2 2 -01001110 401.8 2 -01001110 398.9 2 -01001110 589.7 2 -01001110 534.4 2 -01001110 729.3 2 -01001110 650.7 2 -01001110 387.3 2 -01001110 478.5 2 -01001110 919.2 2 -01001110 655.9 2 -01001110 924.4 2 -01001110 93,900 2 -01001110 833.5 2 -01001110 516.7 2 -01001110 713.9 2 -01001110 202.7 2 -01001110 1.216 2 -01001110 445.3 2 -01001110 978.8 2 -01001110 673.4 2 -01001110 613.7 2 -01001110 636.2 2 -01001110 905.2 2 -01001110 285.1 2 -01001110 490.8 2 -01001110 885.5 2 -01001110 933.1 2 -01001110 629.3 2 -01001110 559.5 2 -01001110 737.9 2 -01001110 470.2 2 -01001110 381.5 2 -01001110 389.2 2 -01001110 207.6 2 -01001110 465.5 2 -01001110 527.3 2 -01001110 506.2 2 -01001110 866.7 2 -01001110 466.1 2 -01001110 551.3 2 -01001110 536.6 2 -01001110 304.4 2 -01001110 412.2 2 -01001110 474.1 2 -01001110 650.5 2 -01001110 787.3 2 -01001110 694.8 2 -01001110 478.4 2 -01001110 874.8 2 -01001110 700.8 2 -01001110 843.1 2 -01001110 247.8 2 -01001110 872.1 2 -01001110 976.4 2 -01001110 223.9 2 -01001110 560.8 2 -01001110 498.7 2 -01001110 585.6 2 -01001110 285.7 2 -01001110 813.5 2 -01001110 639.7 2 -01001110 482.8 2 -01001110 638.9 2 -01001110 972.5 2 -01001110 367.6 2 -01001110 799.7 2 -01001110 958.5 2 -01001110 552.1 2 -01001110 468.9 2 -01001110 395.3 2 -01001110 734.2 2 -01001110 263.8 2 -01001110 755.5 2 -01001110 378.5 2 -01001110 332.1 2 -01001110 32.76 2 -01001110 998.8 2 -01001110 832.1 2 -01001110 588.6 2 -01001110 404.7 2 -01001110 939.5 2 -01001110 764.6 2 -01001110 634.8 2 -01001110 601.5 2 -01001110 796.9 2 -01001110 451.3 2 -01001110 963.6 2 -01001110 485.8 2 -01001110 516.4 2 -01001110 971.8 2 -01001110 790.9 2 -01001110 592.6 2 -01001110 513.1 2 -01001110 963.1 2 -01001110 283.7 2 -01001110 296.6 2 -01001110 825.2 2 -01001110 251.1 2 -01001110 795.8 2 -01001110 807.5 2 -01001110 531.1 2 -01001110 600.1 2 -01001110 894.5 2 -01001110 648.1 2 -01001110 321.8 2 -01001110 753.8 2 -01001110 571.9 2 -01001110 271.2 2 -01001110 552.9 2 -01001110 570.9 2 -01001110 956.7 2 -01001110 519.9 2 -01001110 324.9 2 -01001110 245.2 2 -01001110 812.5 2 -01001110 662.6 2 -01001110 109.68 2 -01001110 774.7 2 -01001110 376.7 2 -01001110 583.3 2 -01001110 752.2 2 -01001110 357.6 2 -01001110 349.8 2 -01001110 651.1 2 -01001110 905.9 2 -01001110 208.3 2 -01001110 644.9 2 -01001110 673.2 2 -01001110 675.4 2 -01001110 562.3 2 -01001110 514.2 2 -01001110 251.8 2 -01001110 463.9 2 -01001110 884.7 2 -01001110 624.9 2 -01001110 993.3 2 -01001110 777.2 2 -01001110 927.7 2 -01001110 802.7 2 -01001110 628.8 2 -01001110 466.9 2 -01001110 563.1 2 -01001110 315.9 2 -01001110 345.2 2 -01001110 336.6 2 -01001110 730.4 2 -01001110 193.6 2 -01001110 780.8 2 -01001110 761.5 2 -01001110 797.3 2 -01001110 699.4 2 -01001110 896.3 2 -01001110 482.2 2 -01001110 736.9 2 -01001110 566.6 2 -01001110 525.7 2 -01001110 190.3 2 -01001110 697.8 2 -01001110 585.5 2 -01001110 398.3 2 -01001110 912.9 2 -01001110 417.7 2 -01001110 552.3 2 -01001110 455.2 2 -01001110 358.6 2 -01001110 297.2 2 -01001110 280.7 2 -01001110 516.1 2 -01001110 617.6 2 -01001110 992.8 2 -01001110 347.4 2 -01001110 848.2 2 -01001110 918.8 2 -01001110 507.7 2 -01001110 439.3 2 -01001110 108.96 2 -01001110 591.6 2 -01001110 364.6 2 -01001110 885.2 2 -01001110 943.7 2 -01001110 632.1 2 -01001110 863.9 2 -01001110 674.6 2 -01001110 806.3 2 -01001110 877.1 2 -01001110 754.3 2 -01001110 273.2 2 -01001110 776.3 2 -01001110 467.7 2 -01001110 811.6 2 -01001110 501.7 2 -01001110 461.2 2 -01001110 856.9 2 -01001110 637.8 2 -01001110 373.6 2 -01001110 467.3 2 -01001110 552.5 2 -01001110 313.4 2 -01001110 344.9 2 -01001110 708.3 2 -01001110 944.5 2 -01001110 128.08 2 -01001110 462.3 2 -01001110 435.3 2 -01001110 726.9 2 -01001110 983.2 2 -01001110 510.1 2 -01001110 364.1 2 -01001110 684.3 2 -01001110 181.3 2 -01001110 229.4 2 -01001110 710.1 2 -01001110 567.6 2 -01001110 359.3 2 -01001110 300.9 2 -01001110 503.9 2 -01001110 295.4 2 -01001110 483.1 2 -01001110 294.4 2 -01001110 371.9 2 -01001110 553.3 2 -01001110 315.3 2 -01001110 871.5 2 -01001110 297.9 2 -01001110 975.4 2 -01001110 983.6 2 -01001110 628.6 2 -01001110 974.5 2 -01001110 670.3 2 -01001110 647.2 2 -01001110 885.8 2 -01001110 366.2 2 -01001110 642.3 2 -01001110 664.2 2 -01001110 837.3 2 -01001110 999.5 2 -01001110 614.9 2 -01001110 619.8 2 -01001110 723.2 2 -01001110 561.2 2 -01001110 344.8 2 -01001110 790.1 2 -01001110 744.6 2 -01001110 435.2 2 -01001110 903.1 2 -01001110 355.1 2 -01001110 692.6 2 -01001110 374.5 2 -01001110 888.9 2 -01001110 703.2 2 -01001110 819.9 2 -01001110 519.3 2 -01001110 274.4 2 -01001110 557.4 2 -01001110 77.29 2 -01001110 904.6 2 -01001110 282.5 2 -01001110 917.5 2 -01001110 681.2 2 -01001110 964.1 2 -01001110 942.6 2 -01001110 782.3 2 -01001110 463.6 2 -01001110 552.4 2 -01001110 925.4 2 -01001110 257.3 2 -01001110 451.2 2 -01001110 344.4 2 -01001110 973.6 2 -01001110 385.7 2 -01001110 663.7 2 -01001110 912.3 2 -01001110 959.2 2 -01001110 914.6 2 -01001110 627.1 2 -01001110 238.8 2 -01001110 4.133 2 -01001110 465.8 2 -01001110 422.1 2 -01001110 535.3 2 -01001110 612.5 2 -01001110 444.6 2 -01001110 405.2 2 -01001110 832.6 2 -01001110 494.5 2 -01001110 963.2 2 -01001110 400.3 2 -01001110 650.6 2 -01001110 722.4 2 -01001110 521.6 2 -01001110 500.5 2 -01001110 461.5 2 -01001110 392.1 2 -01001110 641.3 2 -01001110 684.5 2 -01001110 784.3 2 -01001110 240.9 2 -01001110 385.2 2 -01001110 201.9 2 -01001110 706.7 2 -01001110 385.9 2 -01001110 724.3 2 -01001110 551.7 2 -01001110 289.2 2 -01001110 465.6 2 -01001110 937.5 2 -01001110 762.3 2 -01001110 739.4 2 -01001110 984.2 2 -01001110 582.6 2 -01001110 902.5 2 -01001110 806.2 2 -01001110 549.2 2 -01001110 530.3 2 -01001110 472.4 2 -01001110 506.1 2 -01001110 541.6 2 -01001110 538.8 2 -01001110 865.1 2 -01001110 638.7 2 -01001110 818.7 2 -01001110 734.5 2 -01001110 643.5 2 -01001110 909.4 2 -01001110 995.1 2 -01001110 588.8 2 -01001110 70.05 2 -01001110 732.6 2 -01001110 593.1 2 -01001110 460.4 2 -01001110 74.18 2 -01001110 924.6 2 -01001110 446.7 2 -01001110 580.8 2 -01001110 704.8 2 -01001110 436.1 2 -01001110 655.3 2 -01001110 450.9 2 -01001110 744.2 2 -01001110 931.3 2 -01001110 221.8 2 -01001110 560.1 2 -01001110 374.8 2 -01001110 627.6 2 -01001110 665.4 2 -01001110 497.9 2 -01001110 904.9 2 -01001110 622.2 2 -01001110 678.1 2 -01001110 507.8 2 -01001110 164.6 2 -01001110 732.3 2 -01001110 373.2 2 -01001110 540.6 2 -01001110 345.3 2 -01001110 272.4 2 -01001110 388.1 2 -01001110 697.1 2 -01001110 438.1 2 -01001110 415.9 2 -01001110 510.2 2 -01001110 605.4 2 -01001110 671.2 2 -01001110 857.8 2 -01001110 416.8 2 -01001110 459.4 2 -01001110 995.6 2 -01001110 703.3 2 -01001110 560.7 2 -01001110 515.2 2 -01001110 700.1 2 -01001110 440.3 2 -01001110 342.3 2 -01001110 470.1 2 -01001110 444.4 2 -01001110 832.2 2 -01001110 866.8 2 -01001110 829.4 2 -01001110 520.6 2 -01001110 791.9 2 -01001110 207.9 2 -01001110 623.3 2 -01001110 589.9 2 -01001110 439.5 2 -01001110 454.9 2 -01001110 377.1 2 -01001110 440.5 2 -01001110 354.1 2 -01001110 28.48 2 -01001110 425.8 2 -01001110 767.6 2 -01001110 737.5 2 -01001110 553.5 2 -01001110 711.5 2 -01001110 717.4 2 -01001110 401.7 2 -01001110 428.6 2 -01001110 958.1 2 -01001110 283.9 2 -01001110 680.8 2 -01001110 446.1 2 -01001110 176.1 2 -01001110 371.3 2 -01001110 469.4 2 -01001110 638.4 2 -01001110 297.5 2 -01001110 30.83 2 -01001110 973.3 2 -01001110 215.4 2 -01001110 324.3 2 -01001110 823.7 2 -01001110 984.7 2 -01001110 436.8 2 -01001110 484.8 2 -01001110 639.9 2 -01001110 893.1 2 -01001110 575.4 2 -01001110 692.5 2 -01001110 455.3 2 -01001110 750.2 2 -01001110 380.7 2 -01001110 308.3 2 -01001110 815.3 2 -01001110 107.6 2 -01001110 791.2 2 -01001110 428.1 2 -01001110 555.3 2 -01001110 598.7 2 -01001110 566.8 2 -01001110 582.9 2 -01001110 471.9 2 -01001110 333.9 2 -01001110 642.4 2 -01001110 692.2 2 -01001110 752.6 2 -01001110 387.2 2 -01001110 801.7 2 -01001110 794.2 2 -01001110 666.9 2 -01001110 269.6 2 -01001110 724.4 2 -01001110 348.1 2 -01001110 791.8 2 -01001110 520.3 2 -01001110 767.9 2 -01001110 388.8 2 -01001110 363.7 2 -01001110 423.3 2 -01001110 956.5 2 -01001110 469.6 2 -01001110 468.8 2 -01001110 807.2 2 -01001110 311.6 2 -01001110 439.9 2 -01001110 440.6 2 -01001110 527.5 2 -01001110 909.5 2 -01001110 345.5 2 -01001110 711.1 2 -01001110 745.9 2 -01001110 734.9 2 -01001110 378.9 2 -01001110 340.6 2 -01001110 539.4 2 -01001110 485.5 2 -01001110 280.9 2 -01001110 284.7 2 -01001110 591.5 2 -01001110 1056 2 -01001110 996.9 2 -01001110 962.6 2 -01001110 843.4 2 -01001110 796.5 2 -01001110 299.3 2 -01001110 391.2 2 -01001110 917.9 2 -01001110 392.6 2 -01001110 390.8 2 -01001110 563.8 2 -01001110 299.0 2 -01001110 735.5 2 -01001110 751.8 2 -01001110 597.3 2 -01001110 574.1 2 -01001110 479.2 2 -01001110 738.2 2 -01001110 915.6 2 -01001110 565.2 2 -01001110 413.9 2 -01001110 877.5 2 -01001110 227.9 2 -01001110 594.5 2 -01001110 366.3 2 -01001110 606.2 2 -01001110 877.8 2 -01001110 822.8 2 -01001110 772.7 2 -01001110 295.3 2 -01001110 445.7 2 -01001110 284.6 2 -01001110 509.6 2 -01001110 202.2 2 -01001110 351.8 2 -01001110 326.4 2 -01001110 393.7 2 -01001110 497.4 2 -01001110 915.7 2 -01001110 504.1 2 -01001110 489.2 2 -01001110 381.1 2 -01001110 694.3 2 -01001110 809.2 2 -01001110 442.3 2 -01001110 911.5 2 -01001110 26.96 2 -01001110 342.1 2 -01001110 785.6 2 -01001110 271.3 2 -01001110 667.1 2 -01001110 461.9 2 -01001110 364.4 2 -01001110 286.3 2 -01001110 643.6 2 -01001110 195.2 2 -01001110 562.8 2 -01001110 176.3 2 -01001110 752.8 2 -01001110 535.5 2 -01001110 485.3 2 -01001110 295.2 2 -01001110 572.4 2 -01001110 640.4 2 -01001110 937.3 2 -01001110 306.9 2 -01001110 620.2 2 -01001110 798.7 2 -01001110 219.7 2 -01001110 804.3 2 -01001110 47.67 2 -01001110 522.9 2 -01001110 235.9 2 -01001110 640.6 2 -01001110 477.2 2 -01001110 512.2 2 -01001110 302.2 2 -01001110 369.4 2 -01001110 609.7 2 -01001110 60.04 2 -01001110 478.6 2 -01001110 362.3 2 -01001110 636.7 2 -01001110 448.7 2 -01001110 1.778 2 -01001110 50.83 2 -01001110 677.2 2 -01001110 280.4 2 -01001110 415.7 2 -01001110 540.9 2 -01001110 483.3 2 -01001110 333.6 2 -01001110 590.6 2 -01001110 723.9 2 -01001110 434.9 2 -01001110 13.01 2 -01001110 474.4 2 -01001110 302.9 2 -01001110 33.83 2 -01001110 556.6 2 -01001110 371.6 2 -01001110 911.7 2 -01001110 320.8 2 -01001110 508.4 2 -01001110 349.5 2 -01001110 400.9 2 -01001110 491.8 2 -01001110 558.9 2 -01001110 612.6 2 -01001110 937.8 2 -01001110 523.4 2 -01001110 908.5 2 -01001110 418.3 2 -01001110 478.1 2 -01001110 274.6 2 -01001110 688.4 2 -01001110 434.1 2 -01001110 621.3 2 -01001110 335.8 2 -01001110 736.4 2 -01001110 379.4 2 -01001110 252.9 2 -01001110 550.8 2 -01001110 545.9 2 -01001110 344.3 2 -01001110 494.3 2 -01001110 331.2 2 -01001110 566.7 2 -01001110 343.5 2 -01001110 632.6 2 -01001110 651.5 2 -01001110 902.4 2 -01001110 409.7 2 -01001110 586.9 2 -01001110 369.5 2 -01001110 328.7 2 -01001110 502.1 2 -01001110 912.2 2 -01001110 986.3 2 -01001110 427.1 2 -01001110 59.56 2 -01001110 473.6 2 -01001110 464.4 2 -01001110 670.5 2 -01001110 522.5 2 -01001110 137.1 2 -01001110 247.4 2 -01001110 804.2 2 -01001110 224.1 2 -01001110 153.1 2 -01001110 253.2 2 -01001110 827.5 2 -01001110 727.8 2 -01001110 383.2 2 -01001110 797.8 2 -01001110 831.7 2 -01001110 251.6 2 -01001110 239.6 2 -01001110 485.9 2 -01001110 125.07 2 -01001110 543.5 2 -01001110 140.2 2 -01001110 384.3 2 -01001110 917.4 2 -01001110 594.3 2 -01001110 348.4 2 -01001110 831.5 2 -01001110 993.4 2 -01001110 546.5 2 -01001110 685.9 2 -01001110 960.8 2 -01001110 458.8 2 -01001110 457.1 2 -01001110 323.7 2 -01001110 341.2 2 -01001110 582.3 2 -01001110 529.1 2 -01001110 412.3 2 -01001110 463.3 2 -01001110 596.5 2 -01001110 384.6 2 -01001110 966.8 2 -01001110 525.3 2 -01001110 58.03 2 -01001110 969.7 2 -01001110 811.4 2 -01001110 889.7 2 -01001110 532.9 2 -01001110 491.1 2 -01001110 688.1 2 -01001110 990.6 2 -01001110 516.6 2 -01001110 230.6 2 -01001110 142.1 2 -01001110 604.7 2 -01001110 1,128 2 -01001110 570.7 2 -01001110 432.6 2 -01001110 641.7 2 -01001110 898.4 2 -01001110 261.8 2 -01001110 406.1 2 -01001110 511.1 2 -01001110 753.9 2 -01001110 216.1 2 -01001110 378.3 2 -01001110 290.3 2 -01001110 496.3 2 -01001110 928.4 2 -01001110 922.3 2 -01001110 453.7 2 -01001110 483.4 2 -01001110 531.5 2 -01001110 558.6 2 -01001110 692.9 2 -01001110 629.9 2 -01001110 412.1 2 -01001110 508.7 2 -01001110 507.4 2 -01001110 844.2 2 -01001110 832.3 2 -01001110 287.8 2 -01001110 714.4 2 -01001110 465.1 2 -01001110 272.3 2 -01001110 305.1 2 -01001110 263.4 2 -01001110 381.4 2 -01001110 323.1 2 -01001110 847.9 2 -01001110 926.9 2 -01001110 42.0 2 -01001110 749.2 2 -01001110 369.9 2 -01001110 682.5 2 -01001110 396.9 2 -01001110 779.8 2 -01001110 858.4 2 -01001110 106.48 2 -01001110 838.1 2 -01001110 869.7 2 -01001110 843.9 2 -01001110 498.2 2 -01001110 900.7 2 -01001110 685.5 2 -01001110 569.8 2 -01001110 657.9 2 -01001110 554.8 2 -01001110 606.4 2 -01001110 720.1 2 -01001110 786.3 2 -01001110 658.9 2 -01001110 75.76 2 -01001110 406.7 2 -01001110 409.6 2 -01001110 407.3 2 -01001110 701.3 2 -01001110 352.1 2 -01001110 508.1 2 -01001110 351.3 2 -01001110 318.1 2 -01001110 304.6 2 -01001110 430.1 2 -01001110 334.7 2 -01001110 595.9 2 -01001110 940.6 2 -01001110 994.5 2 -01001110 314.3 2 -01001110 553.4 2 -01001110 199.95 2 -01001110 634.3 2 -01001110 947.5 2 -01001110 491.5 2 -01001110 477.6 2 -01001110 892.6 2 -01001110 799.6 2 -01001110 981.7 2 -01001110 997.1 2 -01001110 878.7 2 -01001110 145.80 2 -01001110 203.4 2 -01001110 499.8 2 -01001110 494.9 2 -01001110 341.3 2 -01001110 210.8 2 -01001110 365.9 2 -01001110 293.8 2 -01001110 409.2 2 -01001110 340.3 2 -01001110 530.2 2 -01001110 786.1 2 -01001110 728.4 2 -01001110 382.8 2 -01001110 541.8 2 -01001110 996.5 2 -01001110 860.9 2 -01001110 341.6 2 -01001110 266.9 2 -01001110 535.6 2 -01001110 400.2 2 -01001110 357.8 2 -01001110 505.2 2 -01001110 589.8 2 -01001110 343.7 2 -01001110 23.83 2 -01001110 30.13 2 -01001110 609.8 2 -01001110 667.7 2 -01001110 73.98 2 -01001110 530.4 2 -01001110 352.8 2 -01001110 805.8 2 -01001110 294.3 2 -01001110 781.1 2 -01001110 536.2 2 -01001110 333.8 2 -01001110 320.9 2 -01001110 531.3 2 -01001110 774.1 2 -01001110 505.7 2 -01001110 224.9 2 -01001110 791.3 2 -01001110 421.1 2 -01001110 431.1 2 -01001110 373.1 2 -01001110 485.7 2 -01001110 470.5 2 -01001110 466.15 2 -01001110 353.9 2 -01001110 266.2 2 -01001110 910.8 2 -01001110 997.6 2 -01001110 702.6 2 -01001110 350.6 2 -01001110 497.7 2 -01001110 533.2 2 -01001110 402.2 2 -01001110 942.8 2 -01001110 484.2 2 -01001110 380.8 2 -01001110 161.0 2 -01001110 603.7 2 -01001110 664.5 2 -01001110 801.9 2 -01001110 605.1 2 -01001110 712.4 2 -01001110 461.1 2 -01001110 862.5 2 -01001110 852.9 2 -01001110 811.8 2 -01001110 504.6 2 -01001110 868.4 2 -01001110 437.2 2 -01001110 765.6 2 -01001110 356.1 2 -01001110 275.2 2 -01001110 713.2 2 -01001110 762.8 2 -01001110 930.8 2 -01001110 397.3 2 -01001110 398.6 2 -01001110 236.16 2 -01001110 351.6 2 -01001110 804.5 2 -01001110 690.5 2 -01001110 65.16 2 -01001110 913.2 2 -01001110 614.4 2 -01001110 903.6 2 -01001110 537.4 2 -01001110 952.2 2 -01001110 868.6 2 -01001110 265.1 2 -01001110 40.76 2 -01001110 403.1 2 -01001110 298.3 2 -01001110 449.6 2 -01001110 867.4 2 -01001110 575.1 2 -01001110 299.1 2 -01001110 849.1 2 -01001110 775.7 2 -01001110 383.1 2 -01001110 809.7 2 -01001110 554.2 2 -01001110 682.9 2 -01001110 767.2 2 -01001110 579.4 2 -01001110 997.2 2 -01001110 338.8 2 -01001110 274.8 2 -01001110 363.1 2 -01001110 470.9 2 -01001110 852.3 2 -01001110 417.2 2 -01001110 575.9 2 -01001110 598.6 2 -01001110 670.1 2 -01001110 881.5 2 -01001110 367.5 2 -01001110 386.6 2 -01001110 531.8 2 -01001110 636.6 2 -01001110 689.1 2 -01001110 433.3 2 -01001110 420.8 2 -01001110 346.9 2 -01001110 2.079 2 -01001110 570.4 2 -01001110 74.15 2 -01001110 366.8 2 -01001110 600.7 2 -01001110 588.9 2 -01001110 639.3 2 -01001110 648.4 2 -01001110 941.7 2 -01001110 582.4 2 -01001110 491.3 2 -01001110 436.6 2 -01001110 323.3 2 -01001110 412.7 2 -01001110 632.8 2 -01001110 460.3 2 -01001110 950.4 2 -01001110 879.3 2 -01001110 585.1 2 -01001110 :00 2 -01001110 567.2 2 -01001110 758.9 2 -01001110 506.6 2 -01001110 607.9 2 -01001110 368.3 2 -01001110 815.7 2 -01001110 1.758 2 -01001110 455.5 2 -01001110 209.2 2 -01001110 730.1 2 -01001110 731.5 2 -01001110 212.1 2 -01001110 751.6 2 -01001110 901.5 2 -01001110 963.7 2 -01001110 524.7 2 -01001110 559.6 2 -01001110 218.6 2 -01001110 984.9 2 -01001110 569.5 2 -01001110 405.3 2 -01001110 627.5 2 -01001110 748.9 2 -01001110 405.8 2 -01001110 492.9 2 -01001110 698.7 2 -01001110 673.5 2 -01001110 253.3 2 -01001110 948.5 2 -01001110 867.2 2 -01001110 484.5 2 -01001110 796.1 2 -01001110 386.5 2 -01001110 522.7 2 -01001110 819.4 2 -01001110 865.5 2 -01001110 458.5 2 -01001110 942.1 2 -01001110 806.6 2 -01001110 603.3 2 -01001110 419.6 2 -01001110 874.1 2 -01001110 523.6 2 -01001110 873.8 2 -01001110 747.3 2 -01001110 643.9 2 -01001110 875.7 2 -01001110 869.4 2 -01001110 517.3 2 -01001110 332.2 2 -01001110 592.8 2 -01001110 982.5 2 -01001110 660.6 2 -01001110 339.7 2 -01001110 696.4 2 -01001110 887.8 2 -01001110 516.8 2 -01001110 314.1 2 -01001110 630.3 2 -01001110 582.7 2 -01001110 273.4 2 -01001110 428.4 2 -01001110 922.5 2 -01001110 478.3 2 -01001110 589.6 2 -01001110 695.7 2 -01001110 702.5 2 -01001110 643.7 2 -01001110 596.8 2 -01001110 508.2 2 -01001110 465.2 2 -01001110 640.9 2 -01001110 748.3 2 -01001110 826.4 2 -01001110 667.2 2 -01001110 99.46 2 -01001110 332.7 2 -01001110 840.3 2 -01001110 383.7 2 -01001110 896.5 2 -01001110 539.6 2 -01001110 806.5 2 -01001110 876.8 2 -01001110 658.4 2 -01001110 462.5 2 -01001110 411.9 2 -01001110 426.1 2 -01001110 783.6 2 -01001110 367.4 2 -01001110 650.3 2 -01001110 740.4 2 -01001110 326.6 2 -01001110 204.4 2 -01001110 615.7 2 -01001110 992.9 2 -01001110 456.5 2 -01001110 644.3 2 -01001110 451.8 2 -01001110 404.3 2 -01001110 686.8 2 -01001110 551.1 2 -01001110 855.8 2 -01001110 321.2 2 -01001110 284.5 2 -01001110 665.3 2 -01001110 709.1 2 -01001110 331.4 2 -01001110 492.5 2 -01001110 608.8 2 -01001110 678.5 2 -01001110 761.7 2 -01001110 848.3 2 -01001110 486.5 2 -01001110 920.8 2 -01001110 547.2 2 -01001110 621.9 2 -01001110 746.7 2 -01001110 749.9 2 -01001110 564.3 2 -01001110 244.2 2 -01001110 309.9 2 -01001110 731.7 2 -01001110 676.6 2 -01001110 738.4 2 -01001110 835.3 2 -01001110 495.4 2 -01001110 570.2 2 -01001110 599.3 2 -01001110 585.9 2 -01001110 832.9 2 -01001110 962.8 2 -01001110 707.5 2 -01001110 765.4 2 -01001110 355.9 2 -01001110 539.3 2 -01001110 351.4 2 -01001110 781.9 2 -01001110 396.7 2 -01001110 561.4 2 -01001110 575.2 2 -01001110 259.1 2 -01001110 686.3 2 -01001110 78.03 2 -01001110 279.3 3 -01001110 684.6 3 -01001110 169.6 3 -01001110 532.7 3 -01001110 206.1 3 -01001110 36.35 3 -01001110 394.7 3 -01001110 592.4 3 -01001110 776.9 3 -01001110 329.2 3 -01001110 929.1 3 -01001110 609.4 3 -01001110 275.6 3 -01001110 257.1 3 -01001110 432.7 3 -01001110 496.8 3 -01001110 751.5 3 -01001110 275.9 3 -01001110 872.5 3 -01001110 221.4 3 -01001110 701.2 3 -01001110 553.9 3 -01001110 214.1 3 -01001110 340.2 3 -01001110 299.8 3 -01001110 742.1 3 -01001110 656.6 3 -01001110 357.3 3 -01001110 301.7 3 -01001110 264.6 3 -01001110 226.7 3 -01001110 286.1 3 -01001110 516.9 3 -01001110 880.2 3 -01001110 375.4 3 -01001110 550.3 3 -01001110 269.2 3 -01001110 668.2 3 -01001110 460.9 3 -01001110 367.2 3 -01001110 387.5 3 -01001110 715.8 3 -01001110 567.5 3 -01001110 444.2 3 -01001110 315.6 3 -01001110 221.7 3 -01001110 276.7 3 -01001110 392.4 3 -01001110 718.9 3 -01001110 400.5 3 -01001110 325.2 3 -01001110 480.1 3 -01001110 526.6 3 -01001110 577.9 3 -01001110 495.7 3 -01001110 233.7 3 -01001110 568.2 3 -01001110 652.5 3 -01001110 716.9 3 -01001110 505.6 3 -01001110 436.9 3 -01001110 177.6 3 -01001110 330.9 3 -01001110 385.4 3 -01001110 668.3 3 -01001110 722.3 3 -01001110 715.5 3 -01001110 397.6 3 -01001110 357.5 3 -01001110 31.16 3 -01001110 51.35 3 -01001110 511.4 3 -01001110 399.7 3 -01001110 526.2 3 -01001110 892.7 3 -01001110 902.9 3 -01001110 372.6 3 -01001110 911.2 3 -01001110 131.4 3 -01001110 181.7 3 -01001110 438.4 3 -01001110 25.53 3 -01001110 399.9 3 -01001110 429.9 3 -01001110 363.6 3 -01001110 556.9 3 -01001110 423.2 3 -01001110 334.4 3 -01001110 475.5 3 -01001110 377.4 3 -01001110 845.8 3 -01001110 487.9 3 -01001110 194.8 3 -01001110 480.5 3 -01001110 897.6 3 -01001110 691.5 3 -01001110 510.6 3 -01001110 453.8 3 -01001110 610.9 3 -01001110 406.6 3 -01001110 121.6 3 -01001110 227.6 3 -01001110 784.7 3 -01001110 188.4 3 -01001110 902.6 3 -01001110 122.90 3 -01001110 429.6 3 -01001110 267.9 3 -01001110 819.5 3 -01001110 255.3 3 -01001110 605.6 3 -01001110 734.6 3 -01001110 367.3 3 -01001110 28.37 3 -01001110 456.2 3 -01001110 736.7 3 -01001110 385.8 3 -01001110 454.8 3 -01001110 430.6 3 -01001110 433.6 3 -01001110 721.3 3 -01001110 810.4 3 -01001110 692.8 3 -01001110 380.3 3 -01001110 285.9 3 -01001110 453.6 3 -01001110 342.6 3 -01001110 535.4 3 -01001110 545.8 3 -01001110 346.8 3 -01001110 410.8 3 -01001110 440.2 3 -01001110 248.4 3 -01001110 205.8 3 -01001110 760.9 3 -01001110 573.7 3 -01001110 285.2 3 -01001110 723.8 3 -01001110 925.6 3 -01001110 818.1 3 -01001110 278.4 3 -01001110 372.7 3 -01001110 682.4 3 -01001110 307.8 3 -01001110 270.8 3 -01001110 475.2 3 -01001110 800.1 3 -01001110 25.04 3 -01001110 312.7 3 -01001110 262.7 3 -01001110 316.5 3 -01001110 355.2 3 -01001110 515.5 3 -01001110 666.1 3 -01001110 480.7 3 -01001110 476.4 3 -01001110 563.4 3 -01001110 353.2 3 -01001110 357.7 3 -01001110 927.5 3 -01001110 558.7 3 -01001110 446.8 3 -01001110 651.2 3 -01001110 280.1 3 -01001110 787.4 3 -01001110 359.6 3 -01001110 339.8 3 -01001110 203.9 3 -01001110 281.8 3 -01001110 738.9 3 -01001110 528.2 3 -01001110 407.4 3 -01001110 675.3 3 -01001110 269.8 3 -01001110 734.4 3 -01001110 470.4 3 -01001110 56.34 3 -01001110 519.8 3 -01001110 436.2 3 -01001110 498.1 3 -01001110 311.9 3 -01001110 430.7 3 -01001110 396.6 3 -01001110 608.5 3 -01001110 242.6 3 -01001110 453.4 3 -01001110 912.4 3 -01001110 502.5 3 -01001110 480.4 3 -01001110 334.6 3 -01001110 499.6 3 -01001110 685.4 3 -01001110 398.4 3 -01001110 433.2 3 -01001110 377.9 3 -01001110 896.8 3 -01001110 208.9 3 -01001110 422.9 3 -01001110 391.5 3 -01001110 871.6 3 -01001110 683.4 3 -01001110 292.5 3 -01001110 502.4 3 -01001110 300.3 3 -01001110 186.1 3 -01001110 232.4 3 -01001110 396.8 3 -01001110 746.9 3 -01001110 822.2 3 -01001110 243.7 3 -01001110 390.3 3 -01001110 886.7 3 -01001110 501.8 3 -01001110 466.3 3 -01001110 238.2 3 -01001110 179.2 3 -01001110 446.9 3 -01001110 615.6 3 -01001110 742.6 3 -01001110 760.2 3 -01001110 329.8 3 -01001110 348.3 3 -01001110 901.9 3 -01001110 227.1 3 -01001110 710.3 3 -01001110 386.1 3 -01001110 668.4 3 -01001110 418.8 3 -01001110 633.3 3 -01001110 208.5 3 -01001110 312.3 3 -01001110 259.3 3 -01001110 317.1 3 -01001110 271.5 3 -01001110 418.6 3 -01001110 352.6 3 -01001110 228.3 3 -01001110 365.2 3 -01001110 860.2 3 -01001110 444.3 3 -01001110 425.1 3 -01001110 929.7 3 -01001110 475.3 3 -01001110 416.3 3 -01001110 508.8 3 -01001110 291.7 3 -01001110 786.5 3 -01001110 319.9 3 -01001110 419.4 3 -01001110 630.6 3 -01001110 400.4 3 -01001110 250.2 3 -01001110 325.8 3 -01001110 306.3 3 -01001110 356.9 3 -01001110 443.7 3 -01001110 815.9 3 -01001110 790.6 3 -01001110 594.2 3 -01001110 407.7 3 -01001110 475.6 3 -01001110 373.5 3 -01001110 427.9 3 -01001110 276.9 3 -01001110 790.5 3 -01001110 987.7 3 -01001110 721.6 3 -01001110 522.6 3 -01001110 241.7 3 -01001110 759.8 3 -01001110 517.8 3 -01001110 367.9 3 -01001110 397.7 3 -01001110 883.8 3 -01001110 542.8 3 -01001110 202.1 3 -01001110 423.1 3 -01001110 395.8 3 -01001110 232.1 3 -01001110 427.4 3 -01001110 276.4 3 -01001110 409.8 3 -01001110 932.8 3 -01001110 380.1 3 -01001110 323.5 3 -01001110 462.7 3 -01001110 434.3 3 -01001110 520.9 3 -01001110 684.9 3 -01001110 370.6 3 -01001110 360.6 3 -01001110 230.3 3 -01001110 598.5 3 -01001110 414.2 3 -01001110 401.3 3 -01001110 399.6 3 -01001110 347.8 3 -01001110 515.9 3 -01001110 286.7 3 -01001110 426.2 3 -01001110 693.3 3 -01001110 357.1 3 -01001110 324.8 3 -01001110 324.2 3 -01001110 512.8 3 -01001110 483.9 3 -01001110 427.8 3 -01001110 772.2 3 -01001110 211.4 3 -01001110 494.7 3 -01001110 581.8 3 -01001110 246.7 3 -01001110 410.3 3 -01001110 101.43 3 -01001110 16.64 3 -01001110 610.6 3 -01001110 391.4 3 -01001110 306.1 3 -01001110 262.9 3 -01001110 736.8 3 -01001110 350.5 3 -01001110 528.6 3 -01001110 189.2 3 -01001110 630.7 3 -01001110 576.1 3 -01001110 396.3 3 -01001110 507.9 3 -01001110 707.4 3 -01001110 649.3 3 -01001110 341.5 3 -01001110 754.7 3 -01001110 694.7 3 -01001110 591.8 3 -01001110 609.5 3 -01001110 265.9 3 -01001110 763.1 3 -01001110 341.4 3 -01001110 228.4 3 -01001110 569.2 3 -01001110 265.2 3 -01001110 416.7 3 -01001110 276.5 3 -01001110 477.5 3 -01001110 353.6 3 -01001110 388.9 3 -01001110 170.2 3 -01001110 939.9 3 -01001110 881.3 3 -01001110 925.9 3 -01001110 564.2 3 -01001110 254.2 3 -01001110 468.2 3 -01001110 386.8 3 -01001110 217.9 3 -01001110 837.4 3 -01001110 251.3 3 -01001110 294.1 3 -01001110 663.4 3 -01001110 836.9 3 -01001110 700.7 3 -01001110 431.6 3 -01001110 802.4 3 -01001110 220.3 3 -01001110 487.6 3 -01001110 344.7 3 -01001110 429.3 3 -01001110 525.5 3 -01001110 364.2 3 -01001110 172.8 3 -01001110 392.3 3 -01001110 837.2 3 -01001110 272.2 3 -01001110 372.2 3 -01001110 419.5 3 -01001110 335.1 3 -01001110 497.6 3 -01001110 683.7 3 -01001110 309.1 3 -01001110 755.4 3 -01001110 784.6 3 -01001110 659.7 3 -01001110 604.3 3 -01001110 312.5 3 -01001110 307.4 3 -01001110 474.8 3 -01001110 449.8 3 -01001110 322.5 3 -01001110 466.5 3 -01001110 268.7 3 -01001110 838.2 3 -01001110 946.2 3 -01001110 212.6 3 -01001110 770.6 3 -01001110 273.8 3 -01001110 316.1 3 -01001110 394.4 3 -01001110 383.9 3 -01001110 359.7 3 -01001110 513.9 3 -01001110 467.6 3 -01001110 237.4 3 -01001110 488.9 3 -01001110 545.4 3 -01001110 511.9 3 -01001110 702.3 3 -01001110 691.4 3 -01001110 739.7 3 -01001110 289.7 3 -01001110 522.4 3 -01001110 283.6 3 -01001110 278.9 3 -01001110 784.9 3 -01001110 553.6 3 -01001110 251.2 3 -01001110 759.6 3 -01001110 271.6 3 -01001110 178.9 3 -01001110 659.5 3 -01001110 406.8 3 -01001110 786.4 3 -01001110 258.9 3 -01001110 448.5 3 -01001110 348.8 3 -01001110 624.5 3 -01001110 191.2 3 -01001110 850.7 3 -01001110 576.3 3 -01001110 291.1 3 -01001110 239.4 3 -01001110 944.4 3 -01001110 228.2 3 -01001110 325.1 3 -01001110 242.2 3 -01001110 515.3 3 -01001110 481.5 3 -01001110 716.8 3 -01001110 359.2 3 -01001110 528.3 3 -01001110 247.9 3 -01001110 521.2 3 -01001110 698.4 3 -01001110 845.1 3 -01001110 219.1 3 -01001110 578.7 3 -01001110 877.7 3 -01001110 773.8 3 -01001110 769.9 3 -01001110 448.2 3 -01001110 829.3 3 -01001110 718.2 3 -01001110 640.3 3 -01001110 536.9 3 -01001110 980.3 3 -01001110 705.9 3 -01001110 641.1 3 -01001110 837.1 3 -01001110 767.1 3 -01001110 493.5 3 -01001110 491.7 3 -01001110 275.5 3 -01001110 827.3 3 -01001110 474.5 3 -01001110 711.7 3 -01001110 471.1 3 -01001110 798.6 3 -01001110 206.6 3 -01001110 411.8 3 -01001110 439.8 3 -01001110 482.5 3 -01001110 637.3 3 -01001110 369.8 3 -01001110 701.5 3 -01001110 562.1 3 -01001110 355.4 3 -01001110 766.2 3 -01001110 806.7 3 -01001110 669.2 3 -01001110 420.7 3 -01001110 757.9 3 -01001110 334.5 3 -01001110 448.8 3 -01001110 528.9 3 -01001110 406.3 3 -01001110 179.1 3 -01001110 334.9 3 -01001110 593.5 3 -01001110 194.9 3 -01001110 317.8 3 -01001110 887.9 3 -01001110 291.3 3 -01001110 336.2 3 -01001110 731.4 3 -01001110 822.1 3 -01001110 569.4 3 -01001110 410.6 3 -01001110 253.6 3 -01001110 320.3 3 -01001110 340.7 3 -01001110 755.1 3 -01001110 524.6 3 -01001110 200.3 3 -01001110 229.8 3 -01001110 839.1 3 -01001110 275.7 3 -01001110 910.4 3 -01001110 231.8 3 -01001110 916.1 3 -01001110 327.3 3 -01001110 364.7 3 -01001110 212.9 3 -01001110 223.8 3 -01001110 180.9 3 -01001110 792.9 3 -01001110 358.1 3 -01001110 393.1 3 -01001110 665.8 3 -01001110 545.6 3 -01001110 604.2 3 -01001110 568.8 3 -01001110 424.4 3 -01001110 395.2 3 -01001110 637.4 3 -01001110 289.8 3 -01001110 387.1 3 -01001110 779.5 3 -01001110 884.1 3 -01001110 861.3 3 -01001110 586.5 3 -01001110 349.3 3 -01001110 457.9 3 -01001110 273.6 3 -01001110 393.5 3 -01001110 413.5 3 -01001110 375.5 3 -01001110 306.6 3 -01001110 579.7 3 -01001110 435.5 3 -01001110 748.2 3 -01001110 256.8 3 -01001110 775.6 3 -01001110 382.5 3 -01001110 768.4 3 -01001110 286.2 3 -01001110 397.4 3 -01001110 436.3 3 -01001110 524.4 3 -01001110 948.2 3 -01001110 586.4 3 -01001110 698.3 3 -01001110 294.6 3 -01001110 317.2 3 -01001110 997.8 3 -01001110 389.1 3 -01001110 251.7 3 -01001110 309.8 3 -01001110 641.5 3 -01001110 464.8 3 -01001110 959.4 3 -01001110 400.7 3 -01001110 481.2 3 -01001110 973.4 3 -01001110 498.5 3 -01001110 220.4 3 -01001110 665.5 3 -01001110 962.5 3 -01001110 886.2 3 -01001110 279.2 3 -01001110 817.6 3 -01001110 565.6 3 -01001110 302.3 3 -01001110 498.3 3 -01001110 908.3 3 -01001110 966.7 3 -01001110 494.4 3 -01001110 780.5 3 -01001110 284.4 3 -01001110 551.2 3 -01001110 279.9 3 -01001110 954.2 3 -01001110 354.4 3 -01001110 463.1 3 -01001110 231.4 3 -01001110 274.9 3 -01001110 550.9 3 -01001110 876.5 3 -01001110 706.2 3 -01001110 544.6 3 -01001110 587.8 3 -01001110 503.7 3 -01001110 680.6 3 -01001110 538.5 3 -01001110 826.1 3 -01001110 770.9 3 -01001110 423.6 3 -01001110 320.4 3 -01001110 599.9 3 -01001110 772.1 3 -01001110 803.8 3 -01001110 560.5 3 -01001110 367.1 3 -01001110 484.1 3 -01001110 420.5 3 -01001110 380.9 3 -01001110 416.1 3 -01001110 397.1 3 -01001110 176.7 3 -01001110 624.4 3 -01001110 465.7 3 -01001110 535.7 3 -01001110 518.1 3 -01001110 442.2 3 -01001110 326.5 3 -01001110 473.2 3 -01001110 196.4 3 -01001110 573.6 3 -01001110 524.1 3 -01001110 543.3 3 -01001110 493.9 3 -01001110 644.6 3 -01001110 508.5 3 -01001110 469.1 3 -01001110 1,433 3 -01001110 330.8 3 -01001110 758.6 3 -01001110 388.5 3 -01001110 633.9 3 -01001110 404.1 3 -01001110 336.3 3 -01001110 482.4 3 -01001110 585.7 3 -01001110 617.5 3 -01001110 249.6 3 -01001110 197.6 3 -01001110 338.2 3 -01001110 305.4 3 -01001110 459.7 3 -01001110 417.6 3 -01001110 390.1 3 -01001110 377.3 3 -01001110 458.7 3 -01001110 688.2 3 -01001110 256.9 3 -01001110 935.2 3 -01001110 317.5 3 -01001110 580.1 3 -01001110 379.3 3 -01001110 691.7 3 -01001110 548.3 3 -01001110 618.1 3 -01001110 538.4 3 -01001110 791.4 3 -01001110 709.2 3 -01001110 387.4 3 -01001110 247.1 3 -01001110 427.6 3 -01001110 288.2 3 -01001110 563.9 3 -01001110 357.9 3 -01001110 668.9 3 -01001110 249.3 3 -01001110 218.1 3 -01001110 923.2 3 -01001110 346.6 3 -01001110 338.7 3 -01001110 25.15 3 -01001110 583.7 3 -01001110 793.8 3 -01001110 228.8 3 -01001110 222.6 3 -01001110 337.8 3 -01001110 563.2 3 -01001110 716.4 3 -01001110 384.8 3 -01001110 501.2 3 -01001110 749.3 3 -01001110 362.8 3 -01001110 798.9 3 -01001110 557.1 3 -01001110 791.7 3 -01001110 897.1 3 -01001110 506.3 3 -01001110 237.9 3 -01001110 408.2 3 -01001110 757.6 3 -01001110 534.9 3 -01001110 357.2 3 -01001110 562.2 3 -01001110 969.3 3 -01001110 337.1 3 -01001110 345.8 3 -01001110 295.5 3 -01001110 438.6 3 -01001110 651.6 3 -01001110 216.5 3 -01001110 537.2 3 -01001110 234.7 3 -01001110 18.18 3 -01001110 270.7 3 -01001110 770.4 3 -01001110 557.6 3 -01001110 555.5 3 -01001110 955.8 3 -01001110 320.6 3 -01001110 376.2 3 -01001110 277.3 3 -01001110 617.4 3 -01001110 348.7 3 -01001110 365.5 3 -01001110 703.8 3 -01001110 303.6 3 -01001110 459.8 3 -01001110 736.6 3 -01001110 209.7 3 -01001110 526.4 3 -01001110 221.9 3 -01001110 310.3 3 -01001110 386.9 3 -01001110 302.7 3 -01001110 301.9 3 -01001110 465.4 3 -01001110 355.6 3 -01001110 414.38 3 -01001110 448.3 3 -01001110 475.7 3 -01001110 891.7 3 -01001110 513.8 3 -01001110 783.7 3 -01001110 558.2 3 -01001110 413.8 3 -01001110 828.6 3 -01001110 570.8 3 -01001110 24.27 3 -01001110 628.7 3 -01001110 808.1 3 -01001110 859.2 3 -01001110 840.7 3 -01001110 327.9 3 -01001110 240.4 3 -01001110 395.9 3 -01001110 536.1 3 -01001110 818.8 3 -01001110 632.2 3 -01001110 310.4 3 -01001110 551.6 3 -01001110 586.6 3 -01001110 811.9 3 -01001110 581.5 3 -01001110 361.8 3 -01001110 376.6 3 -01001110 591.7 3 -01001110 482.3 3 -01001110 509.1 3 -01001110 268.6 3 -01001110 454.6 3 -01001110 365.6 3 -01001110 124.10 3 -01001110 633.6 3 -01001110 514.8 3 -01001110 838.6 3 -01001110 875.2 3 -01001110 169.9 3 -01001110 327.8 3 -01001110 586.8 3 -01001110 442.9 3 -01001110 656.3 3 -01001110 890.8 3 -01001110 265.6 3 -01001110 393.4 3 -01001110 274.2 3 -01001110 866.1 3 -01001110 608.6 3 -01001110 627.8 3 -01001110 402.8 3 -01001110 322.3 3 -01001110 553.8 3 -01001110 547.5 3 -01001110 297.6 3 -01001110 588.5 3 -01001110 9,034 3 -01001110 312.9 3 -01001110 119.8 4 -01001110 589.3 4 -01001110 611.4 4 -01001110 281.1 4 -01001110 298.7 4 -01001110 605.8 4 -01001110 311.4 4 -01001110 937.9 4 -01001110 923.1 4 -01001110 268.3 4 -01001110 428.7 4 -01001110 257.4 4 -01001110 278.8 4 -01001110 401.2 4 -01001110 270.9 4 -01001110 656.4 4 -01001110 248.6 4 -01001110 119.1 4 -01001110 186.3 4 -01001110 296.1 4 -01001110 411.1 4 -01001110 288.8 4 -01001110 637.1 4 -01001110 948.4 4 -01001110 196.3 4 -01001110 586.7 4 -01001110 584.2 4 -01001110 766.3 4 -01001110 338.3 4 -01001110 560.9 4 -01001110 514.9 4 -01001110 289.4 4 -01001110 14.28 4 -01001110 240.6 4 -01001110 357.4 4 -01001110 428.9 4 -01001110 539.5 4 -01001110 180.8 4 -01001110 160.7 4 -01001110 979.5 4 -01001110 209.6 4 -01001110 767.7 4 -01001110 436.7 4 -01001110 447.5 4 -01001110 511.8 4 -01001110 363.4 4 -01001110 361.5 4 -01001110 476.3 4 -01001110 285.3 4 -01001110 481.8 4 -01001110 330.2 4 -01001110 280.5 4 -01001110 537.6 4 -01001110 190.7 4 -01001110 256.4 4 -01001110 193.7 4 -01001110 180.4 4 -01001110 454.3 4 -01001110 618.8 4 -01001110 558.8 4 -01001110 218.8 4 -01001110 382.3 4 -01001110 293.2 4 -01001110 606.6 4 -01001110 214.9 4 -01001110 776.8 4 -01001110 216.4 4 -01001110 299.4 4 -01001110 350.4 4 -01001110 307.9 4 -01001110 191.1 4 -01001110 134.8 4 -01001110 459.9 4 -01001110 245.4 4 -01001110 315.4 4 -01001110 527.1 4 -01001110 549.5 4 -01001110 701.4 4 -01001110 52.98 4 -01001110 291.5 4 -01001110 348.9 4 -01001110 464.2 4 -01001110 425.2 4 -01001110 322.1 4 -01001110 353.4 4 -01001110 588.1 4 -01001110 354.9 4 -01001110 421.4 4 -01001110 649.4 4 -01001110 303.7 4 -01001110 249.7 4 -01001110 402.3 4 -01001110 280.6 4 -01001110 769.1 4 -01001110 488.4 4 -01001110 925.1 4 -01001110 504.5 4 -01001110 309.4 4 -01001110 408.7 4 -01001110 574.5 4 -01001110 692.1 4 -01001110 252.7 4 -01001110 600.2 4 -01001110 616.6 4 -01001110 527.4 4 -01001110 568.5 4 -01001110 910.5 4 -01001110 227.7 4 -01001110 295.9 4 -01001110 284.2 4 -01001110 413.4 4 -01001110 676.8 4 -01001110 161.2 4 -01001110 344.5 4 -01001110 649.8 4 -01001110 315.1 4 -01001110 535.8 4 -01001110 481.7 4 -01001110 685.3 4 -01001110 518.3 4 -01001110 510.8 4 -01001110 789.6 4 -01001110 383.8 4 -01001110 277.8 4 -01001110 707.6 4 -01001110 777.5 4 -01001110 866.6 4 -01001110 170.7 4 -01001110 489.5 4 -01001110 238.4 4 -01001110 178.1 4 -01001110 380.6 4 -01001110 261.5 4 -01001110 371.5 4 -01001110 300.4 4 -01001110 354.2 4 -01001110 479.6 4 -01001110 378.8 4 -01001110 540.1 4 -01001110 466.7 4 -01001110 433.5 4 -01001110 175.7 4 -01001110 256.1 4 -01001110 350.9 4 -01001110 400.1 4 -01001110 346.5 4 -01001110 303.2 4 -01001110 502.6 4 -01001110 396.1 4 -01001110 562.7 4 -01001110 254.6 4 -01001110 230.8 4 -01001110 168.2 4 -01001110 254.7 4 -01001110 408.4 4 -01001110 483.5 4 -01001110 143.9 4 -01001110 157.4 4 -01001110 828.5 4 -01001110 260.2 4 -01001110 279.8 4 -01001110 263.6 4 -01001110 298.8 4 -01001110 805.2 4 -01001110 320.5 4 -01001110 629.4 4 -01001110 417.8 4 -01001110 235.3 4 -01001110 274.3 4 -01001110 358.4 4 -01001110 876.9 4 -01001110 344.2 4 -01001110 348.6 4 -01001110 315.2 4 -01001110 394.8 4 -01001110 299.2 4 -01001110 394.6 4 -01001110 751.1 4 -01001110 422.5 4 -01001110 211.3 4 -01001110 298.4 4 -01001110 255.7 4 -01001110 269.9 4 -01001110 642.1 4 -01001110 213.8 4 -01001110 206.8 4 -01001110 387.6 4 -01001110 412.4 4 -01001110 534.3 4 -01001110 320.1 4 -01001110 512.5 4 -01001110 537.8 4 -01001110 288.5 4 -01001110 260.3 4 -01001110 313.8 4 -01001110 704.7 4 -01001110 318.9 4 -01001110 30.37 4 -01001110 184.9 4 -01001110 275.1 4 -01001110 330.5 4 -01001110 172.7 4 -01001110 282.7 4 -01001110 543.8 4 -01001110 441.5 4 -01001110 424.9 4 -01001110 286.6 4 -01001110 768.3 4 -01001110 251.9 4 -01001110 179.6 4 -01001110 210.2 4 -01001110 256.5 4 -01001110 661.6 4 -01001110 515.6 4 -01001110 476.9 4 -01001110 339.6 4 -01001110 369.3 4 -01001110 252.8 4 -01001110 582.1 4 -01001110 509.8 4 -01001110 454.5 4 -01001110 316.3 4 -01001110 570.1 4 -01001110 310.7 4 -01001110 592.3 4 -01001110 953.6 4 -01001110 450.6 4 -01001110 291.8 4 -01001110 375.3 4 -01001110 602.6 4 -01001110 717.9 4 -01001110 343.1 4 -01001110 494.2 4 -01001110 565.5 4 -01001110 202.9 4 -01001110 314.9 4 -01001110 397.5 4 -01001110 377.8 4 -01001110 166.6 4 -01001110 318.2 4 -01001110 213.4 4 -01001110 178.6 4 -01001110 518.8 4 -01001110 306.7 4 -01001110 356.6 4 -01001110 418.7 4 -01001110 189.7 4 -01001110 310.9 4 -01001110 504.4 4 -01001110 166.8 4 -01001110 292.4 4 -01001110 354.6 4 -01001110 372.9 4 -01001110 171.2 4 -01001110 432.8 4 -01001110 788.3 4 -01001110 419.3 4 -01001110 682.1 4 -01001110 817.8 4 -01001110 199.3 4 -01001110 208.7 4 -01001110 575.5 4 -01001110 229.6 4 -01001110 258.3 4 -01001110 790.8 4 -01001110 277.9 4 -01001110 211.5 4 -01001110 257.6 4 -01001110 398.5 4 -01001110 246.6 4 -01001110 239.9 4 -01001110 337.6 4 -01001110 268.2 4 -01001110 933.4 4 -01001110 183.5 4 -01001110 227.2 4 -01001110 220.2 4 -01001110 556.8 4 -01001110 495.1 4 -01001110 447.2 4 -01001110 183.8 4 -01001110 346.2 4 -01001110 324.7 4 -01001110 788.2 4 -01001110 281.5 4 -01001110 507.5 4 -01001110 342.8 4 -01001110 749.4 4 -01001110 360.5 4 -01001110 658.6 4 -01001110 808.5 4 -01001110 407.9 4 -01001110 337.4 4 -01001110 375.1 4 -01001110 502.8 4 -01001110 300.2 4 -01001110 215.3 4 -01001110 203.3 4 -01001110 619.6 4 -01001110 300.8 4 -01001110 672.8 4 -01001110 284.3 4 -01001110 750.4 4 -01001110 154.5 4 -01001110 311.3 4 -01001110 221.6 4 -01001110 852.2 4 -01001110 230.7 4 -01001110 585.3 4 -01001110 209.9 4 -01001110 261.7 4 -01001110 612.8 4 -01001110 403.7 4 -01001110 351.5 4 -01001110 331.7 4 -01001110 226.9 4 -01001110 289.3 4 -01001110 750.9 4 -01001110 336.1 4 -01001110 361.3 4 -01001110 390.5 4 -01001110 449.4 4 -01001110 249.4 4 -01001110 150.1 4 -01001110 487.5 4 -01001110 260.1 4 -01001110 259.4 4 -01001110 530.5 4 -01001110 721.5 4 -01001110 432.1 4 -01001110 411.5 4 -01001110 226.8 4 -01001110 297.4 4 -01001110 336.7 4 -01001110 930.2 4 -01001110 290.1 4 -01001110 360.8 4 -01001110 450.8 4 -01001110 329.4 4 -01001110 231.6 4 -01001110 215.9 4 -01001110 444.7 4 -01001110 409.9 4 -01001110 173.3 4 -01001110 591.3 4 -01001110 195.6 4 -01001110 340.4 4 -01001110 343.3 4 -01001110 452.6 4 -01001110 339.1 4 -01001110 331.5 4 -01001110 440.1 4 -01001110 302.4 4 -01001110 367.7 4 -01001110 605.9 4 -01001110 371.8 4 -01001110 384.5 4 -01001110 873.6 4 -01001110 220.9 4 -01001110 208.1 4 -01001110 319.3 4 -01001110 20.16 4 -01001110 237.8 4 -01001110 375.2 4 -01001110 443.6 4 -01001110 494.6 4 -01001110 245.3 4 -01001110 342.9 4 -01001110 415.4 4 -01001110 298.1 4 -01001110 385.6 4 -01001110 522.8 4 -01001110 287.4 4 -01001110 700.5 4 -01001110 304.8 4 -01001110 533.7 4 -01001110 231.3 4 -01001110 806.8 4 -01001110 269.4 4 -01001110 362.4 4 -01001110 422.3 4 -01001110 343.4 4 -01001110 303.9 4 -01001110 419.9 4 -01001110 679.5 4 -01001110 563.7 4 -01001110 500.2 4 -01001110 272.1 4 -01001110 319.6 4 -01001110 211.6 4 -01001110 459.6 4 -01001110 675.7 4 -01001110 446.5 4 -01001110 305.8 4 -01001110 605.3 4 -01001110 204.3 4 -01001110 184.3 4 -01001110 369.6 4 -01001110 512.3 4 -01001110 150.7 4 -01001110 738.5 4 -01001110 473.4 4 -01001110 312.1 4 -01001110 549.1 4 -01001110 225.3 4 -01001110 633.4 4 -01001110 447.6 4 -01001110 244.4 4 -01001110 183.6 4 -01001110 477.1 4 -01001110 148.4 4 -01001110 272.6 4 -01001110 290.9 4 -01001110 283.3 4 -01001110 718.3 4 -01001110 408.8 4 -01001110 923.5 4 -01001110 219.4 4 -01001110 260.4 4 -01001110 473.1 4 -01001110 191.5 4 -01001110 361.7 4 -01001110 388.7 4 -01001110 462.9 4 -01001110 322.7 4 -01001110 328.9 4 -01001110 448.4 4 -01001110 510.5 4 -01001110 454.7 4 -01001110 536.7 4 -01001110 215.8 4 -01001110 228.9 4 -01001110 358.9 4 -01001110 547.6 4 -01001110 218.7 4 -01001110 415.8 4 -01001110 358.5 4 -01001110 243.6 4 -01001110 416.4 4 -01001110 924.3 4 -01001110 248.1 4 -01001110 375.6 4 -01001110 351.1 4 -01001110 482.7 4 -01001110 277.1 4 -01001110 242.1 4 -01001110 207.2 4 -01001110 415.6 4 -01001110 201.8 4 -01001110 322.8 4 -01001110 418.9 4 -01001110 167.4 4 -01001110 271.4 4 -01001110 211.1 4 -01001110 446.2 4 -01001110 690.2 4 -01001110 204.5 4 -01001110 271.8 4 -01001110 202.6 4 -01001110 160.5 4 -01001110 368.5 4 -01001110 295.1 4 -01001110 725.9 4 -01001110 754.5 4 -01001110 345.7 4 -01001110 645.1 4 -01001110 721.8 4 -01001110 317.7 4 -01001110 299.7 4 -01001110 214.4 4 -01001110 471.7 4 -01001110 502.9 4 -01001110 236.7 4 -01001110 826.7 4 -01001110 331.1 4 -01001110 593.9 4 -01001110 145.9 4 -01001110 307.2 4 -01001110 544.3 4 -01001110 272.9 4 -01001110 460.6 4 -01001110 571.4 4 -01001110 643.3 4 -01001110 723.1 4 -01001110 424.8 4 -01001110 347.2 4 -01001110 245.1 4 -01001110 213.9 4 -01001110 269.3 4 -01001110 350.2 4 -01001110 159.3 4 -01001110 574.8 4 -01001110 531.9 4 -01001110 413.7 4 -01001110 389.5 4 -01001110 349.2 4 -01001110 404.8 4 -01001110 981.3 4 -01001110 544.4 4 -01001110 881 5 -01001110 126.6 5 -01001110 329.5 5 -01001110 284.8 5 -01001110 225.7 5 -01001110 517.6 5 -01001110 231.9 5 -01001110 391.6 5 -01001110 378.2 5 -01001110 620.9 5 -01001110 186.4 5 -01001110 392.9 5 -01001110 233.9 5 -01001110 322.2 5 -01001110 216.8 5 -01001110 914.4 5 -01001110 461.7 5 -01001110 523.3 5 -01001110 381.9 5 -01001110 154.8 5 -01001110 402.6 5 -01001110 241.6 5 -01001110 259.7 5 -01001110 232.2 5 -01001110 812.2 5 -01001110 420.2 5 -01001110 625.2 5 -01001110 458.4 5 -01001110 402.5 5 -01001110 394.9 5 -01001110 279.4 5 -01001110 247.2 5 -01001110 430.8 5 -01001110 595.5 5 -01001110 264.3 5 -01001110 448.6 5 -01001110 258.2 5 -01001110 308.5 5 -01001110 119.2 5 -01001110 426.3 5 -01001110 732.5 5 -01001110 267.6 5 -01001110 402.4 5 -01001110 216.6 5 -01001110 192.1 5 -01001110 205.5 5 -01001110 327.4 5 -01001110 358.8 5 -01001110 241.8 5 -01001110 517.5 5 -01001110 462.6 5 -01001110 271.7 5 -01001110 499.4 5 -01001110 325.9 5 -01001110 299.9 5 -01001110 215.7 5 -01001110 144.9 5 -01001110 275.4 5 -01001110 262.2 5 -01001110 305.9 5 -01001110 250.3 5 -01001110 292.7 5 -01001110 248.9 5 -01001110 278.3 5 -01001110 663.5 5 -01001110 403.8 5 -01001110 361.6 5 -01001110 340.8 5 -01001110 506.5 5 -01001110 355.8 5 -01001110 271.9 5 -01001110 212.3 5 -01001110 326.7 5 -01001110 801.5 5 -01001110 204.2 5 -01001110 385.1 5 -01001110 220.1 5 -01001110 236.2 5 -01001110 352.9 5 -01001110 287.7 5 -01001110 594.8 5 -01001110 277.5 5 -01001110 515.1 5 -01001110 245.6 5 -01001110 334.1 5 -01001110 154.7 5 -01001110 263.9 5 -01001110 244.6 5 -01001110 500.1 5 -01001110 325.7 5 -01001110 352.2 5 -01001110 403.5 5 -01001110 364.5 5 -01001110 363.9 5 -01001110 263.2 5 -01001110 399.2 5 -01001110 313.1 5 -01001110 233.1 5 -01001110 393.2 5 -01001110 789.8 5 -01001110 222.2 5 -01001110 365.3 5 -01001110 416.9 5 -01001110 549.3 5 -01001110 277.2 5 -01001110 241.2 5 -01001110 235.2 5 -01001110 528.8 5 -01001110 313.9 5 -01001110 332.8 5 -01001110 232.7 5 -01001110 195.8 5 -01001110 166.2 5 -01001110 235.7 5 -01001110 346.7 5 -01001110 217.1 5 -01001110 310.1 5 -01001110 408.9 5 -01001110 575.3 5 -01001110 168.1 5 -01001110 218.4 5 -01001110 194.6 5 -01001110 633.8 5 -01001110 481.4 5 -01001110 219.5 5 -01001110 335.2 5 -01001110 157.1 5 -01001110 255.1 5 -01001110 213.2 5 -01001110 219.3 5 -01001110 429.7 5 -01001110 228.6 5 -01001110 180.2 5 -01001110 396.2 5 -01001110 309.7 5 -01001110 601.7 5 -01001110 181.5 5 -01001110 319.2 5 -01001110 392.5 5 -01001110 261.6 5 -01001110 209.3 5 -01001110 149.8 5 -01001110 174.3 5 -01001110 373.7 5 -01001110 467.5 5 -01001110 365.8 5 -01001110 303.4 5 -01001110 207.1 5 -01001110 541.4 5 -01001110 307.6 5 -01001110 264.1 5 -01001110 428.8 5 -01001110 254.5 5 -01001110 370.9 5 -01001110 587.6 5 -01001110 170.9 5 -01001110 208.8 5 -01001110 203.5 5 -01001110 261.2 5 -01001110 607.5 5 -01001110 803.6 5 -01001110 237.1 5 -01001110 622.5 5 -01001110 471.4 5 -01001110 127.2 5 -01001110 281.6 5 -01001110 210.5 5 -01001110 329.6 5 -01001110 240.1 5 -01001110 841.4 5 -01001110 596.7 5 -01001110 296.2 5 -01001110 753.5 5 -01001110 322.6 5 -01001110 182.4 5 -01001110 288.6 5 -01001110 192.4 5 -01001110 448.1 5 -01001110 165.6 5 -01001110 153.2 5 -01001110 309.2 5 -01001110 920.6 5 -01001110 496.9 5 -01001110 217.6 5 -01001110 511.5 5 -01001110 413.3 5 -01001110 239.8 5 -01001110 347.1 5 -01001110 293.4 5 -01001110 713.5 5 -01001110 762.1 5 -01001110 207.7 5 -01001110 180.7 5 -01001110 408.1 5 -01001110 443.2 5 -01001110 163.7 5 -01001110 472.5 5 -01001110 383.5 5 -01001110 526.9 5 -01001110 207.3 5 -01001110 370.8 5 -01001110 362.7 5 -01001110 340.1 5 -01001110 147.3 5 -01001110 246.4 5 -01001110 124.44 5 -01001110 235.8 5 -01001110 253.9 5 -01001110 213.6 5 -01001110 326.1 5 -01001110 282.1 5 -01001110 36.28 5 -01001110 576.8 5 -01001110 257.2 5 -01001110 669.3 5 -01001110 239.5 5 -01001110 216.3 5 -01001110 378.4 5 -01001110 203.8 5 -01001110 144.34 5 -01001110 268.9 5 -01001110 316.8 5 -01001110 279.5 5 -01001110 474.3 5 -01001110 377.5 5 -01001110 889 5 -01001110 137.5 5 -01001110 301.4 5 -01001110 246.3 5 -01001110 216.9 5 -01001110 167.1 5 -01001110 269.7 5 -01001110 529.5 5 -01001110 382.6 5 -01001110 417.5 5 -01001110 252.4 5 -01001110 175.9 5 -01001110 309.6 5 -01001110 301.3 5 -01001110 302.1 5 -01001110 396.5 5 -01001110 853.4 5 -01001110 293.3 5 -01001110 156.6 5 -01001110 965.8 5 -01001110 500.7 5 -01001110 268.5 5 -01001110 338.1 5 -01001110 112.1 5 -01001110 547.9 5 -01001110 188.2 5 -01001110 253.7 5 -01001110 300.1 5 -01001110 386.7 5 -01001110 737.3 5 -01001110 520.2 5 -01001110 335.7 5 -01001110 635.1 5 -01001110 472.8 5 -01001110 577.1 5 -01001110 376.5 5 -01001110 405.1 5 -01001110 365.1 5 -01001110 257.7 5 -01001110 222.4 5 -01001110 236.6 5 -01001110 390.7 5 -01001110 811.1 5 -01001110 467.4 5 -01001110 287.1 5 -01001110 513.6 5 -01001110 206.9 5 -01001110 488.2 5 -01001110 393.6 5 -01001110 133.6 5 -01001110 670.8 5 -01001110 184.4 5 -01001110 225.4 5 -01001110 236.4 5 -01001110 499.3 5 -01001110 214.6 5 -01001110 302.5 5 -01001110 358.7 5 -01001110 187.3 5 -01001110 300-plus 5 -01001110 261.9 5 -01001110 585.8 5 -01001110 224.2 5 -01001110 423.8 5 -01001110 508.9 5 -01001110 153.7 5 -01001110 143.1 5 -01001110 308.8 5 -01001110 246.8 5 -01001110 242.3 5 -01001110 326.8 5 -01001110 715.3 5 -01001110 172.6 5 -01001110 332.3 5 -01001110 467.2 5 -01001110 397.2 5 -01001110 205.1 5 -01001110 191.6 5 -01001110 267.8 5 -01001110 236.3 5 -01001110 749.1 5 -01001110 237.3 5 -01001110 841.8 5 -01001110 323.9 5 -01001110 341.7 5 -01001110 215.5 5 -01001110 456.4 5 -01001110 132.3 5 -01001110 217.4 5 -01001110 611.2 5 -01001110 421.5 5 -01001110 748.5 5 -01001110 451.4 5 -01001110 354.7 5 -01001110 315.8 5 -01001110 223.4 5 -01001110 342.5 5 -01001110 609.9 5 -01001110 289.9 5 -01001110 773.3 5 -01001110 278.6 5 -01001110 332.5 5 -01001110 304.2 5 -01001110 398.7 5 -01001110 214.5 5 -01001110 398.1 5 -01001110 255.8 5 -01001110 311.7 5 -01001110 205.3 5 -01001110 256.2 5 -01001110 145.4 5 -01001110 476.6 5 -01001110 313.3 5 -01001110 199.1 5 -01001110 561.3 5 -01001110 501.6 5 -01001110 196.7 5 -01001110 259.6 5 -01001110 347.7 5 -01001110 250.1 5 -01001110 415.3 6 -01001110 162.6 6 -01001110 319.4 6 -01001110 295.8 6 -01001110 333.5 6 -01001110 116.7 6 -01001110 195.1 6 -01001110 295.6 6 -01001110 297.8 6 -01001110 250.7 6 -01001110 292.6 6 -01001110 188.7 6 -01001110 267.1 6 -01001110 317.3 6 -01001110 234.3 6 -01001110 205.9 6 -01001110 174.5 6 -01001110 162.4 6 -01001110 391.9 6 -01001110 200.8 6 -01001110 356.2 6 -01001110 275.8 6 -01001110 186.6 6 -01001110 212.7 6 -01001110 720.4 6 -01001110 404.2 6 -01001110 510.7 6 -01001110 241.5 6 -01001110 203.6 6 -01001110 253.1 6 -01001110 175.3 6 -01001110 312.6 6 -01001110 300-odd 6 -01001110 160.1 6 -01001110 258.1 6 -01001110 405.4 6 -01001110 497.2 6 -01001110 316.2 6 -01001110 331.3 6 -01001110 205.2 6 -01001110 345.9 6 -01001110 143.5 6 -01001110 223.1 6 -01001110 332.9 6 -01001110 182.3 6 -01001110 158.1 6 -01001110 177.4 6 -01001110 336.8 6 -01001110 226.3 6 -01001110 190.4 6 -01001110 117.1 6 -01001110 300.7 6 -01001110 278.1 6 -01001110 325.4 6 -01001110 401.1 6 -01001110 187.6 6 -01001110 222.1 6 -01001110 212.4 6 -01001110 454.1 6 -01001110 426.5 6 -01001110 254.1 6 -01001110 191.4 6 -01001110 199.6 6 -01001110 199.4 6 -01001110 196.5 6 -01001110 199.2 6 -01001110 235.6 6 -01001110 183.3 6 -01001110 308.1 6 -01001110 318.8 6 -01001110 117.6 6 -01001110 254.3 6 -01001110 274.5 6 -01001110 231.2 6 -01001110 157.9 6 -01001110 241.3 6 -01001110 293.7 6 -01001110 250.4 6 -01001110 396.4 6 -01001110 285.5 6 -01001110 228.7 6 -01001110 226.2 6 -01001110 154.1 6 -01001110 118.1 6 -01001110 196.8 6 -01001110 169.1 6 -01001110 276.8 6 -01001110 313.7 6 -01001110 637.5 6 -01001110 217.2 6 -01001110 257.9 6 -01001110 459.3 6 -01001110 289.1 6 -01001110 367.8 6 -01001110 217.3 6 -01001110 968.6 6 -01001110 481.3 6 -01001110 538.6 6 -01001110 330.7 6 -01001110 266.8 6 -01001110 394.3 6 -01001110 162.8 6 -01001110 287.9 6 -01001110 237.5 6 -01001110 276.6 6 -01001110 369.2 6 -01001110 256.3 6 -01001110 342.4 6 -01001110 463.8 6 -01001110 432.5 6 -01001110 268.8 6 -01001110 290.7 6 -01001110 292.3 6 -01001110 229.1 6 -01001110 291.6 6 -01001110 325.3 6 -01001110 291.4 6 -01001110 201.1 6 -01001110 305.3 6 -01001110 229.3 6 -01001110 233.5 6 -01001110 192.9 6 -01001110 184.7 6 -01001110 158.2 6 -01001110 193.1 6 -01001110 458.6 6 -01001110 265.3 6 -01001110 195.7 6 -01001110 171.1 6 -01001110 158.3 6 -01001110 215.2 6 -01001110 121.3 6 -01001110 208.2 6 -01001110 277.6 6 -01001110 106.1 6 -01001110 183.9 6 -01001110 234.9 6 -01001110 281.7 6 -01001110 792 6 -01001110 309.3 6 -01001110 210.1 6 -01001110 185.1 6 -01001110 16.15 6 -01001110 200.5 6 -01001110 164.5 6 -01001110 431.2 6 -01001110 112.9 6 -01001110 270.5 6 -01001110 229.5 6 -01001110 308.7 6 -01001110 391.8 6 -01001110 377.2 6 -01001110 167.7 6 -01001110 852 6 -01001110 390.4 6 -01001110 337.2 6 -01001110 264.7 6 -01001110 240.2 6 -01001110 185.2 6 -01001110 224.8 6 -01001110 421.8 6 -01001110 187.4 6 -01001110 684.8 6 -01001110 155.3 6 -01001110 223.5 6 -01001110 282.2 6 -01001110 267.4 6 -01001110 239.2 6 -01001110 224.5 6 -01001110 698.2 6 -01001110 160.6 6 -01001110 455.8 6 -01001110 248.7 6 -01001110 280.8 6 -01001110 520.5 6 -01001110 239.7 6 -01001110 290.6 6 -01001110 374.4 6 -01001110 219.9 6 -01001110 179.7 6 -01001110 223.7 6 -01001110 254.4 6 -01001110 146.8 6 -01001110 375.9 6 -01001110 263.7 6 -01001110 690.6 6 -01001110 125.2 6 -01001110 212.2 6 -01001110 189.4 6 -01001110 174.9 6 -01001110 218.2 6 -01001110 168.3 6 -01001110 341.8 6 -01001110 159.4 6 -01001110 310.2 6 -01001110 222.7 6 -01001110 195.9 6 -01001110 327.5 6 -01001110 130.6 6 -01001110 307.1 6 -01001110 215.6 6 -01001110 281.2 6 -01001110 175.4 6 -01001110 324.6 6 -01001110 496.7 6 -01001110 252.6 6 -01001110 248.3 6 -01001110 435.8 6 -01001110 352.4 6 -01001110 278.5 6 -01001110 144.7 6 -01001110 177.7 6 -01001110 259.8 6 -01001110 354.8 6 -01001110 321.5 6 -01001110 173.9 6 -01001110 441.8 6 -01001110 201.4 6 -01001110 349.7 6 -01001110 180.1 6 -01001110 263.3 6 -01001110 374.9 6 -01001110 204.7 6 -01001110 381.7 6 -01001110 302.8 6 -01001110 631.8 6 -01001110 185.5 6 -01001110 249.8 6 -01001110 269.5 6 -01001110 596.9 6 -01001110 566.3 6 -01001110 471.2 6 -01001110 209.4 6 -01001110 156.7 6 -01001110 406.5 6 -01001110 408.5 6 -01001110 322.9 6 -01001110 501.1 6 -01001110 283.2 6 -01001110 426.9 6 -01001110 246.1 6 -01001110 496.2 6 -01001110 422.2 6 -01001110 160.4 6 -01001110 272.8 6 -01001110 333.4 6 -01001110 245.8 6 -01001110 542.4 6 -01001110 267.2 6 -01001110 252.3 6 -01001110 383.3 6 -01001110 149.1 6 -01001110 173.8 6 -01001110 328.1 6 -01001110 887.5 6 -01001110 281.9 6 -01001110 265.8 6 -01001110 429.5 6 -01001110 261.3 6 -01001110 615.4 6 -01001110 145.3 6 -01001110 212.8 6 -01001110 241.1 6 -01001110 243.9 6 -01001110 836 6 -01001110 244.8 6 -01001110 310.8 6 -01001110 318.5 6 -01001110 113.8 6 -01001110 283.4 6 -01001110 186.7 6 -01001110 235.1 6 -01001110 268.1 6 -01001110 141.1 6 -01001110 475.9 6 -01001110 702.4 6 -01001110 232.6 6 -01001110 464.5 6 -01001110 323.2 6 -01001110 305.7 6 -01001110 219.8 6 -01001110 185.7 6 -01001110 153.3 6 -01001110 270.6 6 -01001110 159.7 7 -01001110 997 7 -01001110 95.8 7 -01001110 262.1 7 -01001110 306.8 7 -01001110 242.7 7 -01001110 109.9 7 -01001110 161.1 7 -01001110 207.4 7 -01001110 211.8 7 -01001110 124.7 7 -01001110 107.4 7 -01001110 309.5 7 -01001110 230.1 7 -01001110 206.7 7 -01001110 146.6 7 -01001110 245.7 7 -01001110 149.7 7 -01001110 919.4 7 -01001110 300.5 7 -01001110 128.2 7 -01001110 776.7 7 -01001110 119.3 7 -01001110 412.8 7 -01001110 392.2 7 -01001110 304.9 7 -01001110 104.9 7 -01001110 199.9 7 -01001110 146.9 7 -01001110 379.6 7 -01001110 234.6 7 -01001110 313.6 7 -01001110 202.4 7 -01001110 911.4 7 -01001110 156.2 7 -01001110 229.9 7 -01001110 562.5 7 -01001110 200.6 7 -01001110 447.8 7 -01001110 455.6 7 -01001110 249.5 7 -01001110 243.4 7 -01001110 123.2 7 -01001110 130.1 7 -01001110 214.2 7 -01001110 244.7 7 -01001110 174.4 7 -01001110 194.5 7 -01001110 154.4 7 -01001110 327.2 7 -01001110 143.6 7 -01001110 120.2 7 -01001110 282.9 7 -01001110 397.9 7 -01001110 201.3 7 -01001110 420.9 7 -01001110 380.2 7 -01001110 97.6 7 -01001110 158.9 7 -01001110 532.2 7 -01001110 335.4 7 -01001110 203.2 7 -01001110 178.4 7 -01001110 230.2 7 -01001110 171.4 7 -01001110 105.1 7 -01001110 490.6 7 -01001110 283.8 7 -01001110 198.7 7 -01001110 163.8 7 -01001110 205.4 7 -01001110 267.3 7 -01001110 200.2 7 -01001110 262.8 7 -01001110 209.5 7 -01001110 550.1 7 -01001110 152.2 7 -01001110 251.5 7 -01001110 516.2 7 -01001110 259.9 7 -01001110 366.4 7 -01001110 411.3 7 -01001110 203.7 7 -01001110 883.4 7 -01001110 342.7 7 -01001110 285.6 7 -01001110 201.7 7 -01001110 214.7 7 -01001110 192.8 7 -01001110 198.1 7 -01001110 192.7 7 -01001110 978 7 -01001110 361.9 7 -01001110 298.5 7 -01001110 197.7 7 -01001110 285.8 7 -01001110 147.2 7 -01001110 197.2 7 -01001110 472.3 7 -01001110 174.1 7 -01001110 169.2 7 -01001110 608.1 7 -01001110 210.6 7 -01001110 162.3 7 -01001110 292.8 7 -01001110 287.6 7 -01001110 191.9 7 -01001110 279.7 7 -01001110 193.2 7 -01001110 238.6 7 -01001110 249.2 7 -01001110 374.7 7 -01001110 169.4 7 -01001110 258.5 7 -01001110 164.1 7 -01001110 218.5 7 -01001110 162.2 7 -01001110 215.1 7 -01001110 2,825 7 -01001110 416.5 7 -01001110 221.3 7 -01001110 146.3 7 -01001110 161.4 7 -01001110 136.3 7 -01001110 198.9 7 -01001110 136.2 7 -01001110 316.7 7 -01001110 195.5 7 -01001110 124.2 7 -01001110 296.5 7 -01001110 141.7 7 -01001110 194.7 7 -01001110 182.7 7 -01001110 198.3 7 -01001110 277.4 7 -01001110 106.6 7 -01001110 137.4 7 -01001110 237.7 7 -01001110 225.1 7 -01001110 274.1 7 -01001110 198.6 7 -01001110 254.9 7 -01001110 264.4 7 -01001110 908.8 7 -01001110 488.7 7 -01001110 158.8 7 -01001110 394.5 7 -01001110 189.3 7 -01001110 188.6 7 -01001110 190.1 7 -01001110 234.8 7 -01001110 119.6 7 -01001110 167.2 7 -01001110 129.4 7 -01001110 199.7 7 -01001110 208.6 7 -01001110 177.9 7 -01001110 939 7 -01001110 314.5 7 -01001110 438.2 7 -01001110 536.5 7 -01001110 460.2 7 -01001110 185.4 7 -01001110 314.2 7 -01001110 348.5 7 -01001110 134.3 7 -01001110 130.8 7 -01001110 205.6 7 -01001110 120.7 7 -01001110 187.1 7 -01001110 208.4 7 -01001110 871.1 7 -01001110 274.7 7 -01001110 151.9 7 -01001110 325.5 7 -01001110 305.2 7 -01001110 94.9 7 -01001110 222.3 7 -01001110 417.9 7 -01001110 281.4 7 -01001110 225.5 7 -01001110 192.2 7 -01001110 303.1 7 -01001110 127.7 7 -01001110 149.6 7 -01001110 293.5 7 -01001110 129.7 7 -01001110 121.8 7 -01001110 233.6 7 -01001110 284.9 7 -01001110 242.9 7 -01001110 332.6 7 -01001110 151.1 7 -01001110 139.4 7 -01001110 163.9 7 -01001110 201.6 7 -01001110 223.2 7 -01001110 167.8 7 -01001110 172.1 7 -01001110 282.3 7 -01001110 504.2 7 -01001110 196.1 7 -01001110 637.6 7 -01001110 250.9 7 -01001110 298.2 7 -01001110 158.6 7 -01001110 211.7 7 -01001110 164.7 7 -01001110 227.4 7 -01001110 203.1 7 -01001110 219.6 7 -01001110 119.9 7 -01001110 197.8 7 -01001110 273.7 7 -01001110 226.6 7 -01001110 210.9 7 -01001110 160.3 7 -01001110 18.86 7 -01001110 190.5 7 -01001110 887.4 7 -01001110 236.9 7 -01001110 143.8 7 -01001110 296.7 7 -01001110 194.4 7 -01001110 266.7 7 -01001110 25.55 7 -01001110 298.6 7 -01001110 237.6 7 -01001110 184.5 7 -01001110 155.9 7 -01001110 214.8 8 -01001110 188.8 8 -01001110 240.7 8 -01001110 177.3 8 -01001110 181.8 8 -01001110 577.5 8 -01001110 188.1 8 -01001110 150.8 8 -01001110 166.1 8 -01001110 161.7 8 -01001110 423.5 8 -01001110 925.3 8 -01001110 125.23 8 -01001110 126.9 8 -01001110 169.7 8 -01001110 163.5 8 -01001110 182.1 8 -01001110 337.9 8 -01001110 167.3 8 -01001110 231.1 8 -01001110 144.2 8 -01001110 223.6 8 -01001110 228.5 8 -01001110 288.1 8 -01001110 177.5 8 -01001110 169.8 8 -01001110 140.8 8 -01001110 137.6 8 -01001110 576.4 8 -01001110 196.6 8 -01001110 496.5 8 -01001110 221.2 8 -01001110 232.3 8 -01001110 883 8 -01001110 128.3 8 -01001110 142.6 8 -01001110 186.2 8 -01001110 174.8 8 -01001110 157.2 8 -01001110 235.4 8 -01001110 256.7 8 -01001110 198.8 8 -01001110 155.7 8 -01001110 107.1 8 -01001110 359.5 8 -01001110 327.6 8 -01001110 282.8 8 -01001110 95.6 8 -01001110 247.7 8 -01001110 771.2 8 -01001110 134.6 8 -01001110 151.6 8 -01001110 931.2 8 -01001110 197.4 8 -01001110 131.3 8 -01001110 391.7 8 -01001110 156.5 8 -01001110 111.3 8 -01001110 174.2 8 -01001110 344.6 8 -01001110 545.5 8 -01001110 229.7 8 -01001110 337.7 8 -01001110 352.7 8 -01001110 587.5 8 -01001110 538.9 8 -01001110 159.1 8 -01001110 616.8 8 -01001110 314.4 8 -01001110 150.3 8 -01001110 143.3 8 -01001110 140.9 8 -01001110 144.4 8 -01001110 152.9 8 -01001110 166.9 8 -01001110 262.5 8 -01001110 125.6 8 -01001110 267.5 8 -01001110 233.2 8 -01001110 146.1 8 -01001110 110.7 8 -01001110 231.5 8 -01001110 948 8 -01001110 294.5 8 -01001110 149.5 8 -01001110 812.8 8 -01001110 181.1 8 -01001110 395.7 8 -01001110 233.8 8 -01001110 187.2 8 -01001110 107.3 8 -01001110 153.4 8 -01001110 366.1 8 -01001110 135.7 8 -01001110 216.7 8 -01001110 200.9 8 -01001110 152.1 8 -01001110 179.8 8 -01001110 425.9 8 -01001110 248.8 8 -01001110 505.5 8 -01001110 292.9 8 -01001110 172.9 8 -01001110 201.5 8 -01001110 132.9 8 -01001110 227.5 8 -01001110 222.8 8 -01001110 205.7 8 -01001110 265.7 8 -01001110 183.2 8 -01001110 703.5 8 -01001110 173.4 8 -01001110 324.5 8 -01001110 539.9 8 -01001110 112.2 8 -01001110 196.2 8 -01001110 204.6 8 -01001110 235.5 8 -01001110 118.7 8 -01001110 111.4 8 -01001110 493.1 8 -01001110 390.6 8 -01001110 177.2 8 -01001110 172.3 8 -01001110 233.4 8 -01001110 240.8 8 -01001110 315.5 8 -01001110 110.9 8 -01001110 232.9 8 -01001110 288.4 8 -01001110 986.6 8 -01001110 243.8 8 -01001110 247.5 8 -01001110 353.5 8 -01001110 184.8 8 -01001110 412.5 8 -01001110 133.1 8 -01001110 194.2 8 -01001110 114.8 8 -01001110 239.1 8 -01001110 476.5 8 -01001110 664.4 8 -01001110 441.6 8 -01001110 287.5 8 -01001110 293.6 8 -01001110 138.1 8 -01001110 264.9 8 -01001110 184.6 8 -01001110 160.8 8 -01001110 110.5 8 -01001110 170.3 8 -01001110 134.2 8 -01001110 125.3 8 -01001110 175.8 8 -01001110 260.7 8 -01001110 154.2 8 -01001110 157.3 8 -01001110 140.7 8 -01001110 782.5 8 -01001110 200.1 8 -01001110 246.9 8 -01001110 178.2 8 -01001110 234.4 8 -01001110 338.4 9 -01001110 190.8 9 -01001110 195.4 9 -01001110 238.9 9 -01001110 478.2 9 -01001110 108.2 9 -01001110 148.2 9 -01001110 318.3 9 -01001110 907 9 -01001110 179.9 9 -01001110 324.1 9 -01001110 206.5 9 -01001110 188.9 9 -01001110 127.3 9 -01001110 182.9 9 -01001110 131.6 9 -01001110 178.8 9 -01001110 202.3 9 -01001110 189.1 9 -01001110 262.3 9 -01001110 159.5 9 -01001110 991 9 -01001110 282.4 9 -01001110 165.4 9 -01001110 197.9 9 -01001110 255.9 9 -01001110 791 9 -01001110 164.4 9 -01001110 102.2 9 -01001110 896 9 -01001110 120.5 9 -01001110 137.3 9 -01001110 133.2 9 -01001110 184.2 9 -01001110 242.8 9 -01001110 139.3 9 -01001110 :30 9 -01001110 456.8 9 -01001110 199.8 9 -01001110 230.9 9 -01001110 260.8 9 -01001110 187.9 9 -01001110 472.9 9 -01001110 122.6 9 -01001110 223.3 9 -01001110 151.4 9 -01001110 161.3 9 -01001110 219.2 9 -01001110 149.3 9 -01001110 241.9 9 -01001110 142.3 9 -01001110 220.6 9 -01001110 118.2 9 -01001110 173.5 9 -01001110 182.5 9 -01001110 296.8 9 -01001110 220.8 9 -01001110 947 9 -01001110 979 9 -01001110 240.5 9 -01001110 128.5 9 -01001110 130.2 9 -01001110 294.7 9 -01001110 166.3 9 -01001110 162.9 9 -01001110 227.8 9 -01001110 135.1 9 -01001110 233.3 9 -01001110 266.4 9 -01001110 992 9 -01001110 147.9 9 -01001110 134.5 9 -01001110 973 9 -01001110 156.8 9 -01001110 183.7 9 -01001110 333.2 9 -01001110 145.8 9 -01001110 93.9 9 -01001110 193.9 9 -01001110 154.3 9 -01001110 265.5 9 -01001110 190.2 9 -01001110 173.7 9 -01001110 185.6 9 -01001110 260.9 9 -01001110 445.1 9 -01001110 193.4 9 -01001110 662.3 9 -01001110 142.8 9 -01001110 178.3 9 -01001110 114.1 9 -01001110 202.8 9 -01001110 288.7 9 -01001110 137.8 9 -01001110 152.6 9 -01001110 164.9 9 -01001110 165.1 9 -01001110 131.8 9 -01001110 117.7 9 -01001110 111.1 9 -01001110 130.5 9 -01001110 133.7 9 -01001110 197.3 9 -01001110 447.7 9 -01001110 173.6 9 -01001110 183.1 9 -01001110 182.2 9 -01001110 142.9 9 -01001110 234.2 9 -01001110 247.3 9 -01001110 961 9 -01001110 174.7 9 -01001110 102.1 9 -01001110 273.9 9 -01001110 167.6 9 -01001110 224.3 9 -01001110 128.6 9 -01001110 962 9 -01001110 239.3 9 -01001110 140.4 9 -01001110 395.6 9 -01001110 537.5 9 -01001110 217.7 9 -01001110 341.1 9 -01001110 252.2 9 -01001110 176.9 9 -01001110 224.4 9 -01001110 585.2 9 -01001110 199.5 9 -01001110 176.6 9 -01001110 100.8 9 -01001110 152.4 9 -01001110 343.9 9 -01001110 104.8 9 -01001110 159.6 9 -01001110 122.8 9 -01001110 211.9 9 -01001110 138.4 9 -01001110 104.7 10 -01001110 851 10 -01001110 128.4 10 -01001110 238.3 10 -01001110 403.4 10 -01001110 123.4 10 -01001110 138.3 10 -01001110 681 10 -01001110 137.2 10 -01001110 148.3 10 -01001110 521.1 10 -01001110 195.3 10 -01001110 129.2 10 -01001110 189.5 10 -01001110 148.9 10 -01001110 279.6 10 -01001110 121.1 10 -01001110 127.9 10 -01001110 102.7 10 -01001110 131.7 10 -01001110 172.2 10 -01001110 177.8 10 -01001110 198.4 10 -01001110 125.4 10 -01001110 361.1 10 -01001110 135.2 10 -01001110 156.3 10 -01001110 721 10 -01001110 120.4 10 -01001110 859 10 -01001110 159.2 10 -01001110 166.5 10 -01001110 139.2 10 -01001110 163.6 10 -01001110 175.1 10 -01001110 258.8 10 -01001110 120.3 10 -01001110 113.2 10 -01001110 91.4 10 -01001110 132.7 10 -01001110 238.7 10 -01001110 143.4 10 -01001110 236.5 10 -01001110 149.4 10 -01001110 194.3 10 -01001110 226.5 10 -01001110 245.5 10 -01001110 694.4 10 -01001110 140.5 10 -01001110 133.3 10 -01001110 708.5 10 -01001110 101.7 10 -01001110 164.3 10 -01001110 138.9 10 -01001110 146.4 10 -01001110 126.2 10 -01001110 337.5 10 -01001110 323.6 10 -01001110 146.2 10 -01001110 130.4 10 -01001110 983 10 -01001110 933 10 -01001110 834 10 -01001110 125.1 10 -01001110 141.6 10 -01001110 240.3 10 -01001110 108.4 10 -01001110 307.5 10 -01001110 876 10 -01001110 138.6 10 -01001110 226.1 10 -01001110 155.8 10 -01001110 136.1 10 -01001110 139.1 10 -01001110 143.7 10 -01001110 156.1 10 -01001110 336.5 10 -01001110 227.3 10 -01001110 118.3 10 -01001110 232.5 10 -01001110 127.1 10 -01001110 313.5 10 -01001110 183.4 10 -01001110 163.4 10 -01001110 168.6 10 -01001110 216.2 10 -01001110 854 10 -01001110 204.8 10 -01001110 165.9 10 -01001110 138.5 10 -01001110 733 10 -01001110 289.6 10 -01001110 110.1 10 -01001110 187.8 10 -01001110 107.2 10 -01001110 455.1 10 -01001110 161.6 10 -01001110 93.4 10 -01001110 115.4 10 -01001110 175.6 10 -01001110 803.5 10 -01001110 158.7 10 -01001110 121.9 10 -01001110 678.4 10 -01001110 191.3 10 -01001110 141.9 10 -01001110 96.1 10 -01001110 189.9 10 -01001110 123.1 10 -01001110 207.8 10 -01001110 457.8 10 -01001110 154.9 10 -01001110 395.5 10 -01001110 189.8 10 -01001110 107.7 10 -01001110 959 10 -01001110 168.8 10 -01001110 180.5 10 -01001110 163.1 10 -01001110 151.3 10 -01001110 163.2 10 -01001110 166.7 10 -01001110 226.4 10 -01001110 114.4 10 -01001110 846 10 -01001110 178.7 10 -01001110 117.2 10 -01001110 184.1 10 -01001110 839 10 -01001110 161.9 10 -01001110 218.9 10 -01001110 879 11 -01001110 193.8 11 -01001110 141.4 11 -01001110 124.9 11 -01001110 172.4 11 -01001110 242.5 11 -01001110 230.4 11 -01001110 165.8 11 -01001110 206.2 11 -01001110 168.4 11 -01001110 180.6 11 -01001110 139.9 11 -01001110 151.5 11 -01001110 182.6 11 -01001110 126.5 11 -01001110 175.5 11 -01001110 316.4 11 -01001110 362.5 11 -01001110 243.3 11 -01001110 817 11 -01001110 140.1 11 -01001110 121.7 11 -01001110 164.8 11 -01001110 265.4 11 -01001110 166.4 11 -01001110 749 11 -01001110 175.2 11 -01001110 115.8 11 -01001110 994 11 -01001110 821 11 -01001110 899 11 -01001110 368.4 11 -01001110 161.5 11 -01001110 112.6 11 -01001110 188.3 11 -01001110 103.9 11 -01001110 176.2 11 -01001110 200.4 11 -01001110 101.9 11 -01001110 756 11 -01001110 244.5 11 -01001110 168.5 11 -01001110 159.8 11 -01001110 179.4 11 -01001110 134.9 11 -01001110 150.6 11 -01001110 119.4 11 -01001110 192.6 11 -01001110 137.7 11 -01001110 144.5 11 -01001110 149.2 11 -01001110 200.7 11 -01001110 488.3 11 -01001110 406.2 11 -01001110 198.2 11 -01001110 170.6 11 -01001110 209.1 11 -01001110 116.8 11 -01001110 161.8 11 -01001110 171.7 11 -01001110 102.9 11 -01001110 190.9 11 -01001110 120.9 11 -01001110 247.6 11 -01001110 144.6 11 -01001110 232.8 11 -01001110 150.5 11 -01001110 802 11 -01001110 224.6 11 -01001110 150.9 11 -01001110 116.5 11 -01001110 371.4 11 -01001110 943 11 -01001110 156.4 11 -01001110 147.6 11 -01001110 340.5 11 -01001110 659 11 -01001110 424.2 11 -01001110 167.9 11 -01001110 126.8 11 -01001110 185.9 11 -01001110 186.5 11 -01001110 145.1 11 -01001110 132.8 11 -01001110 147.7 11 -01001110 276.2 11 -01001110 131.5 11 -01001110 173.1 11 -01001110 261.4 11 -01001110 179.3 11 -01001110 93.1 11 -01001110 170.4 11 -01001110 91.7 11 -01001110 157.7 11 -01001110 162.7 11 -01001110 126.3 11 -01001110 160.9 11 -01001110 158.5 11 -01001110 134.7 11 -01001110 137.9 11 -01001110 100.1 11 -01001110 140.3 11 -01001110 110.2 11 -01001110 171.5 11 -01001110 108.7 11 -01001110 157.8 12 -01001110 279.1 12 -01001110 123.7 12 -01001110 190.6 12 -01001110 92.2 12 -01001110 112.3 12 -01001110 213.5 12 -01001110 264.5 12 -01001110 949 12 -01001110 285.4 12 -01001110 162.5 12 -01001110 244.3 12 -01001110 98.1 12 -01001110 264.8 12 -01001110 187.5 12 -01001110 188.5 12 -01001110 96.6 12 -01001110 129.5 12 -01001110 256.6 12 -01001110 301.5 12 -01001110 150.4 12 -01001110 128.7 12 -01001110 142.4 12 -01001110 953 12 -01001110 185.3 12 -01001110 110.3 12 -01001110 117.3 12 -01001110 122.2 12 -01001110 170.8 12 -01001110 243.2 12 -01001110 189.6 12 -01001110 946 12 -01001110 150.2 12 -01001110 669 12 -01001110 96.8 12 -01001110 131.1 12 -01001110 148.7 12 -01001110 191.7 12 -01001110 147.8 12 -01001110 112.4 12 -01001110 140.6 12 -01001110 170.5 12 -01001110 110.4 12 -01001110 114.3 12 -01001110 146.5 12 -01001110 856 12 -01001110 101.3 12 -01001110 113.9 12 -01001110 222.5 12 -01001110 155.4 12 -01001110 629 12 -01001110 893 12 -01001110 121.5 12 -01001110 174.6 12 -01001110 156.9 12 -01001110 831 12 -01001110 164.2 12 -01001110 99.4 12 -01001110 722 12 -01001110 101.6 12 -01001110 339.2 12 -01001110 145.2 12 -01001110 912 12 -01001110 171.9 12 -01001110 647 12 -01001110 132.2 12 -01001110 116.1 12 -01001110 130.3 12 -01001110 130.7 12 -01001110 125.7 12 -01001110 877 12 -01001110 313.2 12 -01001110 109.6 12 -01001110 266.5 12 -01001110 128.1 12 -01001110 133.5 12 -01001110 122.5 12 -01001110 132.4 12 -01001110 152.8 12 -01001110 987 12 -01001110 151.2 12 -01001110 118.6 12 -01001110 88.7 12 -01001110 207.5 12 -01001110 153.5 12 -01001110 110.8 12 -01001110 952 13 -01001110 119.5 13 -01001110 168.7 13 -01001110 97.2 13 -01001110 113.3 13 -01001110 122.7 13 -01001110 784 13 -01001110 120.6 13 -01001110 193.3 13 -01001110 242.4 13 -01001110 123.8 13 -01001110 186.9 13 -01001110 728 13 -01001110 124.4 13 -01001110 138.7 13 -01001110 743 13 -01001110 251.4 13 -01001110 149.9 13 -01001110 106.4 13 -01001110 185.8 13 -01001110 108.8 13 -01001110 857 13 -01001110 122.4 13 -01001110 111.9 13 -01001110 781 13 -01001110 759 13 -01001110 108.9 13 -01001110 113.7 13 -01001110 299.6 13 -01001110 163.3 13 -01001110 117.9 13 -01001110 93.3 13 -01001110 130.9 13 -01001110 141.3 13 -01001110 107.9 13 -01001110 273.5 13 -01001110 73.9 13 -01001110 144.3 13 -01001110 951 13 -01001110 643 13 -01001110 719 13 -01001110 153.8 13 -01001110 98.8 13 -01001110 114.6 13 -01001110 147.1 13 -01001110 98.7 13 -01001110 210.7 13 -01001110 679 13 -01001110 116.6 13 -01001110 180.3 13 -01001110 210.4 13 -01001110 117.8 13 -01001110 874 13 -01001110 103.3 13 -01001110 155.1 13 -01001110 144.8 13 -01001110 861 13 -01001110 853 13 -01001110 984 13 -01001110 697 13 -01001110 887 13 -01001110 136.5 13 -01001110 871 13 -01001110 116.9 13 -01001110 157.6 13 -01001110 142.7 13 -01001110 204.9 13 -01001110 159.9 13 -01001110 141.2 13 -01001110 126.7 13 -01001110 148.5 13 -01001110 769 13 -01001110 171.8 13 -01001110 179.5 13 -01001110 91.1 13 -01001110 108.1 13 -01001110 121.4 13 -01001110 138.2 14 -01001110 935 14 -01001110 145.7 14 -01001110 225.8 14 -01001110 107.5 14 -01001110 682 14 -01001110 123.9 14 -01001110 708 14 -01001110 106.7 14 -01001110 706 14 -01001110 84.7 14 -01001110 142.5 14 -01001110 151.7 14 -01001110 744 14 -01001110 132.6 14 -01001110 115.6 14 -01001110 192.5 14 -01001110 117.4 14 -01001110 127.4 14 -01001110 124.8 14 -01001110 74.1 14 -01001110 573.8 14 -01001110 124.6 14 -01001110 123.3 14 -01001110 866 14 -01001110 147.4 14 -01001110 656.8 14 -01001110 813 14 -01001110 77.9 14 -01001110 115.9 14 -01001110 571 14 -01001110 169.3 14 -01001110 823 14 -01001110 151.8 14 -01001110 356.3 14 -01001110 127.6 14 -01001110 127.5 14 -01001110 135.6 14 -01001110 118.8 14 -01001110 181.4 14 -01001110 118.9 14 -01001110 135.5 14 -01001110 954 14 -01001110 131.2 14 -01001110 275.3 14 -01001110 596 14 -01001110 152.7 14 -01001110 148.6 14 -01001110 230.5 14 -01001110 129.8 14 -01001110 124.1 14 -01001110 714 14 -01001110 119.7 14 -01001110 963 14 -01001110 894 14 -01001110 841 14 -01001110 968 14 -01001110 132.1 14 -01001110 109.5 14 -01001110 176.5 14 -01001110 113.6 14 -01001110 129.3 14 -01001110 88.9 14 -01001110 131.9 14 -01001110 109.4 14 -01001110 133.8 14 -01001110 969 14 -01001110 206.3 14 -01001110 583 14 -01001110 241.4 14 -01001110 115.1 14 -01001110 462.8 14 -01001110 111.7 14 -01001110 191.8 14 -01001110 139.7 14 -01001110 96.7 14 -01001110 116.3 14 -01001110 101.8 14 -01001110 85.8 14 -01001110 864 14 -01001110 187.7 14 -01001110 122.3 15 -01001110 862 15 -01001110 155.2 15 -01001110 878 15 -01001110 165.5 15 -01001110 197.1 15 -01001110 105.8 15 -01001110 181.6 15 -01001110 83.4 15 -01001110 173.2 15 -01001110 110.6 15 -01001110 725.2 15 -01001110 182.8 15 -01001110 105.9 15 -01001110 125.5 15 -01001110 181.9 15 -01001110 236.1 15 -01001110 100.6 15 -01001110 111.5 15 -01001110 84.1 15 -01001110 778 15 -01001110 637 15 -01001110 904 15 -01001110 109.7 15 -01001110 826 15 -01001110 170.1 15 -01001110 96.9 15 -01001110 122.9 15 -01001110 822 15 -01001110 424.3 15 -01001110 89.2 15 -01001110 986 15 -01001110 94.6 15 -01001110 888 15 -01001110 225.9 15 -01001110 507.6 15 -01001110 914 15 -01001110 153.9 15 -01001110 67.2 15 -01001110 103.2 15 -01001110 112.8 15 -01001110 104.4 15 -01001110 981 15 -01001110 141.8 15 -01001110 155.6 15 -01001110 145.6 15 -01001110 105.7 15 -01001110 108.5 15 -01001110 771 15 -01001110 873 15 -01001110 171.3 15 -01001110 96.4 15 -01001110 192.3 15 -01001110 165.7 15 -01001110 129.6 15 -01001110 787 15 -01001110 134.4 15 -01001110 243.5 15 -01001110 139.8 15 -01001110 971 15 -01001110 104.1 15 -01001110 843 15 -01001110 804 15 -01001110 689 15 -01001110 73.1 15 -01001110 136.6 15 -01001110 816 15 -01001110 139.5 15 -01001110 106.8 15 -01001110 982 15 -01001110 577 15 -01001110 178.5 15 -01001110 913 16 -01001110 97.7 16 -01001110 153.6 16 -01001110 201.2 16 -01001110 686 16 -01001110 90.6 16 -01001110 158.4 16 -01001110 591 16 -01001110 160.2 16 -01001110 109.3 16 -01001110 109.8 16 -01001110 779 16 -01001110 176.4 16 -01001110 832 16 -01001110 113.1 16 -01001110 128.9 16 -01001110 95.9 16 -01001110 746 16 -01001110 152.3 16 -01001110 833 16 -01001110 519 16 -01001110 114.9 16 -01001110 723 16 -01001110 148.8 16 -01001110 102.4 16 -01001110 809 16 -01001110 138.8 16 -01001110 97.1 16 -01001110 97.3 16 -01001110 93.7 16 -01001110 87.1 16 -01001110 678 16 -01001110 774 16 -01001110 127.8 16 -01001110 557 16 -01001110 193.5 16 -01001110 772 16 -01001110 123.5 16 -01001110 136.9 16 -01001110 101.4 16 -01001110 867 16 -01001110 554 16 -01001110 938 16 -01001110 782 16 -01001110 764 16 -01001110 104.5 16 -01001110 768 16 -01001110 114.5 16 -01001110 103.7 16 -01001110 761 16 -01001110 937 16 -01001110 829 16 -01001110 115.2 16 -01001110 105.2 16 -01001110 123.6 16 -01001110 918 16 -01001110 88.8 16 -01001110 886 16 -01001110 338.5 16 -01001110 884 16 -01001110 903 16 -01001110 85.7 16 -01001110 73.2 16 -01001110 95.3 16 -01001110 731 16 -01001110 421 16 -01001110 238.1 16 -01001110 106.5 16 -01001110 104.3 16 -01001110 683 16 -01001110 147.5 16 -01001110 121.2 16 -01001110 142.2 17 -01001110 808 17 -01001110 100.3 17 -01001110 932 17 -01001110 143.2 17 -01001110 108.3 17 -01001110 114.2 17 -01001110 799 17 -01001110 806 17 -01001110 145.5 17 -01001110 84.4 17 -01001110 663 17 -01001110 112.7 17 -01001110 111.8 17 -01001110 602 17 -01001110 92.3 17 -01001110 789 17 -01001110 113.5 17 -01001110 176.8 17 -01001110 692 17 -01001110 169.5 17 -01001110 134.1 17 -01001110 818 17 -01001110 103.8 17 -01001110 96.3 17 -01001110 81.9 17 -01001110 503 17 -01001110 125.8 17 -01001110 96.2 17 -01001110 109.1 17 -01001110 76.8 17 -01001110 118.5 17 -01001110 931 17 -01001110 101.1 17 -01001110 104.6 17 -01001110 964 17 -01001110 172.5 17 -01001110 135.8 17 -01001110 732 17 -01001110 845 17 -01001110 94.8 17 -01001110 125.9 17 -01001110 88.1 17 -01001110 162.1 17 -01001110 91.9 17 -01001110 91.6 17 -01001110 94.4 17 -01001110 114.7 17 -01001110 674 17 -01001110 87.7 17 -01001110 72.1 17 -01001110 905 17 -01001110 471 17 -01001110 111.6 17 -01001110 709 17 -01001110 916 17 -01001110 99.1 17 -01001110 957 18 -01001110 812 18 -01001110 86.3 18 -01001110 654 18 -01001110 633 18 -01001110 157.5 18 -01001110 113.4 18 -01001110 762 18 -01001110 155.5 18 -01001110 87.8 18 -01001110 942 18 -01001110 74.4 18 -01001110 100.9 18 -01001110 93.8 18 -01001110 586 18 -01001110 167.5 18 -01001110 135.9 18 -01001110 154.6 18 -01001110 103.4 18 -01001110 105.6 18 -01001110 135.4 18 -01001110 872 18 -01001110 84.8 18 -01001110 838 18 -01001110 165.3 18 -01001110 136.7 18 -01001110 165.2 18 -01001110 100.4 18 -01001110 868 18 -01001110 882 18 -01001110 667 18 -01001110 97.4 18 -01001110 217.5 18 -01001110 102.8 18 -01001110 148.1 18 -01001110 352.5 18 -01001110 122.1 18 -01001110 712 18 -01001110 803 18 -01001110 623 18 -01001110 88.4 18 -01001110 136.8 18 -01001110 726 18 -01001110 282.6 18 -01001110 111.2 18 -01001110 102.5 18 -01001110 797 18 -01001110 102.3 18 -01001110 83.9 18 -01001110 711 18 -01001110 197.5 18 -01001110 651 18 -01001110 141.5 18 -01001110 664 18 -01001110 115.3 18 -01001110 547 19 -01001110 618 19 -01001110 96.5 19 -01001110 89.9 19 -01001110 69.9 19 -01001110 71.3 19 -01001110 989 19 -01001110 106.9 19 -01001110 136.4 19 -01001110 892 19 -01001110 77.1 19 -01001110 107.8 19 -01001110 100.7 19 -01001110 798 19 -01001110 641 19 -01001110 106.3 19 -01001110 717 19 -01001110 103.1 19 -01001110 716 19 -01001110 739 19 -01001110 753 19 -01001110 95.5 19 -01001110 811 19 -01001110 92.9 19 -01001110 115.5 19 -01001110 81.4 19 -01001110 76.1 19 -01001110 634 19 -01001110 84.2 19 -01001110 85.4 19 -01001110 120.1 19 -01001110 924 19 -01001110 91.2 19 -01001110 71.8 19 -01001110 87.2 19 -01001110 126.4 19 -01001110 701 19 -01001110 88.3 19 -01001110 106.2 19 -01001110 863 19 -01001110 124.5 19 -01001110 694 20 -01001110 718 20 -01001110 135.3 20 -01001110 90.9 20 -01001110 94.7 20 -01001110 556 20 -01001110 104.2 20 -01001110 66.8 20 -01001110 108.6 20 -01001110 69.2 20 -01001110 786 20 -01001110 76.6 20 -01001110 666 20 -01001110 103.6 20 -01001110 684 20 -01001110 72.6 20 -01001110 76.4 20 -01001110 724 20 -01001110 541 20 -01001110 93.2 20 -01001110 814 20 -01001110 844 20 -01001110 129.9 20 -01001110 742.8 20 -01001110 129.1 20 -01001110 94.1 20 -01001110 85.9 20 -01001110 653 20 -01001110 661 20 -01001110 677 20 -01001110 116.4 20 -01001110 597 20 -01001110 668 20 -01001110 100.2 20 -01001110 657 20 -01001110 73.6 20 -01001110 622 20 -01001110 941 20 -01001110 87.9 20 -01001110 128.8 20 -01001110 729 20 -01001110 93.6 20 -01001110 92.8 20 -01001110 124.3 20 -01001110 105.5 20 -01001110 601 20 -01001110 704 20 -01001110 956 20 -01001110 90.7 20 -01001110 68.7 21 -01001110 120.8 21 -01001110 921 21 -01001110 85.3 21 -01001110 702 21 -01001110 673 21 -01001110 642 21 -01001110 99.6 21 -01001110 146.7 21 -01001110 579 21 -01001110 498 21 -01001110 626 21 -01001110 885 21 -01001110 945 21 -01001110 489 21 -01001110 68.9 21 -01001110 652 21 -01001110 100.5 21 -01001110 796 21 -01001110 71.6 21 -01001110 90.5 21 -01001110 752 21 -01001110 109.2 21 -01001110 202.5 21 -01001110 75.7 21 -01001110 132.5 21 -01001110 493 21 -01001110 133.4 21 -01001110 627 21 -01001110 562 21 -01001110 617 21 -01001110 94.5 21 -01001110 84.9 21 -01001110 171.6 21 -01001110 517 21 -01001110 909 21 -01001110 89.1 21 -01001110 908 21 -01001110 828 21 -01001110 86.7 21 -01001110 95.1 21 -01001110 82.2 21 -01001110 144.1 21 -01001110 568 22 -01001110 95.7 22 -01001110 68.2 22 -01001110 929 22 -01001110 99.3 22 -01001110 815 22 -01001110 92.1 22 -01001110 139.6 22 -01001110 76.3 22 -01001110 742 22 -01001110 101.2 22 -01001110 638 22 -01001110 574 22 -01001110 78.4 22 -01001110 529 22 -01001110 67.1 22 -01001110 758 22 -01001110 990 22 -01001110 614 22 -01001110 90.3 22 -01001110 116.2 22 -01001110 741 22 -01001110 616 22 -01001110 74.7 22 -01001110 117.5 22 -01001110 98.3 22 -01001110 671 22 -01001110 98.2 22 -01001110 955 22 -01001110 74.6 22 -01001110 917 23 -01001110 514 23 -01001110 87.3 23 -01001110 609 23 -01001110 72.2 23 -01001110 73.3 23 -01001110 90.2 23 -01001110 88.6 23 -01001110 928 23 -01001110 66.9 23 -01001110 713 23 -01001110 75.8 23 -01001110 827 23 -01001110 92.7 23 -01001110 85.1 23 -01001110 90.8 23 -01001110 92.6 23 -01001110 607 23 -01001110 582 23 -01001110 738 23 -01001110 95.4 23 -01001110 198.5 23 -01001110 89.7 23 -01001110 793 23 -01001110 64.1 23 -01001110 118.4 23 -01001110 115.7 23 -01001110 98.9 23 -01001110 91.3 23 -01001110 497 24 -01001110 437 24 -01001110 152.5 24 -01001110 86.9 24 -01001110 58.1 24 -01001110 71.7 24 -01001110 92.4 24 -01001110 687 24 -01001110 91.8 24 -01001110 103.5 24 -01001110 93.5 24 -01001110 75.9 24 -01001110 613 24 -01001110 74.2 24 -01001110 126.1 24 -01001110 84.3 24 -01001110 86.2 24 -01001110 619 24 -01001110 783 24 -01001110 549 24 -01001110 168.9 24 -01001110 524 24 -01001110 78.1 24 -01001110 80.7 24 -01001110 672 24 -01001110 546 24 -01001110 78.3 25 -01001110 84.5 25 -01001110 72.3 25 -01001110 94.2 25 -01001110 688 25 -01001110 87.6 25 -01001110 79.3 25 -01001110 84.6 25 -01001110 766 25 -01001110 73.4 25 -01001110 548 25 -01001110 105.4 25 -01001110 584 25 -01001110 86.5 25 -01001110 895 25 -01001110 469 25 -01001110 735 25 -01001110 608 25 -01001110 75.3 25 -01001110 75.1 25 -01001110 773 25 -01001110 212.5 25 -01001110 79.1 25 -01001110 542 25 -01001110 499 25 -01001110 64.2 25 -01001110 521 25 -01001110 53.7 25 -01001110 71.2 25 -01001110 569 25 -01001110 819 25 -01001110 805 25 -01001110 656 25 -01001110 573 25 -01001110 691 25 -01001110 534 25 -01001110 68.1 25 -01001110 995 25 -01001110 89.4 26 -01001110 461 26 -01001110 86.1 26 -01001110 82.8 26 -01001110 88.2 26 -01001110 835 26 -01001110 55.1 26 -01001110 438 26 -01001110 70.7 26 -01001110 587 26 -01001110 78.6 26 -01001110 78.5 26 -01001110 632 26 -01001110 79.6 26 -01001110 479 26 -01001110 69.1 26 -01001110 915 26 -01001110 492 26 -01001110 561 26 -01001110 604 26 -01001110 92.5 26 -01001110 105.3 26 -01001110 63.3 26 -01001110 528 26 -01001110 581 26 -01001110 848 26 -01001110 59.4 26 -01001110 102.6 26 -01001110 606 26 -01001110 77.8 26 -01001110 60.9 26 -01001110 976 26 -01001110 411 26 -01001110 693 26 -01001110 94.3 27 -01001110 696 27 -01001110 86.6 27 -01001110 628 27 -01001110 89.8 27 -01001110 487 27 -01001110 82.3 27 -01001110 413 27 -01001110 552 27 -01001110 611 27 -01001110 67.6 27 -01001110 436 27 -01001110 51.1 27 -01001110 99.2 27 -01001110 77.3 27 -01001110 837 27 -01001110 589 27 -01001110 86.8 27 -01001110 944 27 -01001110 91.5 27 -01001110 80.9 27 -01001110 63.1 27 -01001110 481 27 -01001110 424 27 -01001110 81.1 27 -01001110 785 27 -01001110 83.2 28 -01001110 563 28 -01001110 567 28 -01001110 70.9 28 -01001110 85.6 28 -01001110 776 28 -01001110 624 28 -01001110 631 28 -01001110 75.4 28 -01001110 54.1 28 -01001110 81.6 28 -01001110 506 28 -01001110 63.7 28 -01001110 523 28 -01001110 79.4 28 -01001110 67.3 28 -01001110 919 28 -01001110 74.8 28 -01001110 75.2 28 -01001110 531 28 -01001110 77.4 28 -01001110 621 28 -01001110 74.5 28 -01001110 446 28 -01001110 516 29 -01001110 865 29 -01001110 85.5 29 -01001110 81.3 29 -01001110 75.6 29 -01001110 61.4 29 -01001110 72.4 29 -01001110 95.2 29 -01001110 55.9 29 -01001110 965 29 -01001110 65.2 29 -01001110 77.2 29 -01001110 89.3 29 -01001110 62.6 29 -01001110 77.7 29 -01001110 76.9 29 -01001110 68.4 29 -01001110 484 29 -01001110 346 29 -01001110 533 29 -01001110 551 29 -01001110 71.4 29 -01001110 448 29 -01001110 38.9 29 -01001110 69.4 29 -01001110 82.7 29 -01001110 79.2 29 -01001110 603 29 -01001110 40.7 29 -01001110 453 29 -01001110 824 29 -01001110 63.8 29 -01001110 526 29 -01001110 99.7 29 -01001110 592 29 -01001110 97.9 29 -01001110 77.5 30 -01001110 82.9 30 -01001110 61.2 30 -01001110 80.2 30 -01001110 331 30 -01001110 66.3 30 -01001110 86.4 30 -01001110 379 30 -01001110 527 30 -01001110 112.5 30 -01001110 70.4 30 -01001110 429 30 -01001110 75.5 30 -01001110 777 30 -01001110 68.6 30 -01001110 59.6 30 -01001110 488 30 -01001110 60.3 30 -01001110 65.8 30 -01001110 59.1 30 -01001110 81.7 31 -01001110 79.5 31 -01001110 71.5 31 -01001110 299.5 31 -01001110 72.8 31 -01001110 532 31 -01001110 564 31 -01001110 70.3 31 -01001110 482 31 -01001110 62.1 31 -01001110 392 31 -01001110 73.5 31 -01001110 58.7 31 -01001110 98.6 31 -01001110 81.2 31 -01001110 59.7 31 -01001110 55.2 31 -01001110 594 31 -01001110 795 32 -01001110 474 32 -01001110 72.9 32 -01001110 67.9 32 -01001110 67.4 32 -01001110 90.1 32 -01001110 462 32 -01001110 89.5 32 -01001110 65.1 32 -01001110 605 32 -01001110 578 32 -01001110 558 32 -01001110 46.9 32 -01001110 648 32 -01001110 64.4 32 -01001110 477 32 -01001110 76.7 32 -01001110 69.5 32 -01001110 71.9 32 -01001110 494 32 -01001110 442 32 -01001110 80.3 32 -01001110 65.3 32 -01001110 396 32 -01001110 82.1 33 -01001110 63.9 33 -01001110 98.4 33 -01001110 98.5 33 -01001110 43.1 33 -01001110 62.4 33 -01001110 80.6 33 -01001110 522 33 -01001110 62.8 33 -01001110 431 33 -01001110 67.8 33 -01001110 576 33 -01001110 68.8 33 -01001110 63.4 33 -01001110 70.8 33 -01001110 89.6 33 -01001110 99.8 33 -01001110 537 33 -01001110 70.1 33 -01001110 78.9 33 -01001110 69.6 33 -01001110 74.3 33 -01001110 61.1 34 -01001110 417 34 -01001110 97.8 34 -01001110 83.3 34 -01001110 57.9 34 -01001110 78.7 34 -01001110 593 34 -01001110 745 34 -01001110 434 34 -01001110 57.8 34 -01001110 80.8 34 -01001110 79.9 34 -01001110 79.7 34 -01001110 458 34 -01001110 468 34 -01001110 703 34 -01001110 69.7 34 -01001110 373 34 -01001110 496 34 -01001110 439 34 -01001110 705 34 -01001110 361 34 -01001110 64.9 34 -01001110 478 34 -01001110 394 34 -01001110 441 34 -01001110 765 34 -01001110 342 34 -01001110 53.1 34 -01001110 71.1 34 -01001110 511 34 -01001110 427 34 -01001110 66.1 34 -01001110 79.8 35 -01001110 62.9 35 -01001110 353 35 -01001110 62.2 35 -01001110 336 35 -01001110 755 35 -01001110 588 35 -01001110 404 35 -01001110 509 35 -01001110 69.8 35 -01001110 538 35 -01001110 362 35 -01001110 457 35 -01001110 65.5 35 -01001110 42.3 35 -01001110 451 36 -01001110 58.4 36 -01001110 46.7 36 -01001110 504 36 -01001110 463 36 -01001110 87.4 36 -01001110 46.4 36 -01001110 80.4 36 -01001110 74.9 36 -01001110 63.2 36 -01001110 68.5 36 -01001110 73.7 36 -01001110 76.2 36 -01001110 432 36 -01001110 56.7 36 -01001110 391 36 -01001110 81.8 36 -01001110 369 36 -01001110 78.8 36 -01001110 422 36 -01001110 483 36 -01001110 64.6 36 -01001110 45.2 36 -01001110 66.2 37 -01001110 61.3 37 -01001110 73.8 37 -01001110 416 37 -01001110 45.8 37 -01001110 566 37 -01001110 57.2 37 -01001110 64.7 37 -01001110 65.9 37 -01001110 78.2 37 -01001110 57.4 37 -01001110 52.1 37 -01001110 66.5 37 -01001110 61.7 37 -01001110 48.2 37 -01001110 41.6 37 -01001110 277 37 -01001110 44.4 37 -01001110 83.7 37 -01001110 55.6 37 -01001110 572 38 -01001110 559 38 -01001110 985 38 -01001110 62.3 38 -01001110 68.3 38 -01001110 51.3 38 -01001110 518 38 -01001110 454 38 -01001110 70.2 38 -01001110 45.9 38 -01001110 39.1 38 -01001110 85.2 38 -01001110 56.1 38 -01001110 60.2 38 -01001110 855 38 -01001110 77.6 38 -01001110 502 38 -01001110 443 38 -01001110 54.7 38 -01001110 555 38 -01001110 54.5 38 -01001110 46.6 38 -01001110 406 39 -01001110 60.7 39 -01001110 90.4 39 -01001110 407 39 -01001110 65.6 39 -01001110 61.6 39 -01001110 47.1 39 -01001110 612 39 -01001110 476 39 -01001110 49.2 39 -01001110 389 39 -01001110 59.8 39 -01001110 65.7 39 -01001110 466 39 -01001110 585 39 -01001110 359 39 -01001110 44.6 39 -01001110 54.4 39 -01001110 53.6 39 -01001110 58.8 39 -01001110 70.5 39 -01001110 53.2 40 -01001110 66.6 40 -01001110 35.1 40 -01001110 67.7 40 -01001110 372 40 -01001110 447 40 -01001110 60.8 40 -01001110 311 40 -01001110 287 40 -01001110 456 40 -01001110 66.4 40 -01001110 870 40 -01001110 60.6 40 -01001110 323 40 -01001110 88.5 40 -01001110 423 40 -01001110 42.1 40 -01001110 35.9 40 -01001110 54.8 40 -01001110 58.3 40 -01001110 48.1 41 -01001110 419 41 -01001110 97.5 41 -01001110 54.6 41 -01001110 56.6 41 -01001110 40.2 41 -01001110 32.1 41 -01001110 49.8 41 -01001110 645 41 -01001110 82.6 41 -01001110 76.5 41 -01001110 82.4 41 -01001110 920 41 -01001110 42.6 41 -01001110 433 41 -01001110 50.6 41 -01001110 910 41 -01001110 368 41 -01001110 249 41 -01001110 293 41 -01001110 536 41 -01001110 428 41 -01001110 695 41 -01001110 43.7 41 -01001110 321 42 -01001110 48.3 42 -01001110 363 42 -01001110 55.4 42 -01001110 328 42 -01001110 54.2 42 -01001110 101.5 42 -01001110 343 42 -01001110 297 42 -01001110 31.9 42 -01001110 45.3 42 -01001110 229 42 -01001110 50.8 42 -01001110 358 42 -01001110 65.4 42 -01001110 51.9 42 -01001110 291 42 -01001110 371 42 -01001110 34.3 42 -01001110 59.2 42 -01001110 449 42 -01001110 329 42 -01001110 51.7 42 -01001110 54.3 42 -01001110 47.4 43 -01001110 51.2 43 -01001110 57.3 43 -01001110 565 43 -01001110 298 43 -01001110 48.9 43 -01001110 339 43 -01001110 324 43 -01001110 55.3 43 -01001110 398 43 -01001110 388 43 -01001110 43.9 43 -01001110 57.7 43 -01001110 464 43 -01001110 940 43 -01001110 64.3 43 -01001110 57.1 43 -01001110 37.7 43 -01001110 414 43 -01001110 83.6 43 -01001110 381 43 -01001110 44.2 43 -01001110 83.1 43 -01001110 64.5 44 -01001110 56.4 44 -01001110 595 44 -01001110 62.7 44 -01001110 40.1 44 -01001110 49.4 44 -01001110 63.5 44 -01001110 383 44 -01001110 55.7 44 -01001110 38.7 44 -01001110 357 44 -01001110 51.4 44 -01001110 382 44 -01001110 665 44 -01001110 41.3 45 -01001110 472 45 -01001110 35.8 45 -01001110 319 45 -01001110 47.7 45 -01001110 44.8 45 -01001110 56.8 45 -01001110 72.5 45 -01001110 56.2 45 -01001110 33.9 45 -01001110 47.9 45 -01001110 48.4 45 -01001110 393 45 -01001110 715 45 -01001110 69.3 45 -01001110 341 46 -01001110 46.3 46 -01001110 318 46 -01001110 83.8 46 -01001110 47.2 46 -01001110 52.2 46 -01001110 83.5 46 -01001110 49.3 46 -01001110 44.9 46 -01001110 615 46 -01001110 975 46 -01001110 41.8 46 -01001110 512 46 -01001110 513 46 -01001110 70.6 46 -01001110 376 46 -01001110 51.6 46 -01001110 52.7 46 -01001110 322 46 -01001110 82.5 46 -01001110 45.4 46 -01001110 41.1 46 -01001110 40.8 46 -01001110 364 46 -01001110 36.1 46 -01001110 39.8 46 -01001110 56.3 46 -01001110 58.2 47 -01001110 53.4 47 -01001110 42.4 47 -01001110 49.6 47 -01001110 418 47 -01001110 52.6 47 -01001110 32.9 47 -01001110 348 47 -01001110 426 47 -01001110 685 47 -01001110 44.7 47 -01001110 58.5 48 -01001110 327 48 -01001110 39.6 48 -01001110 347 48 -01001110 444 48 -01001110 61.9 48 -01001110 40.4 48 -01001110 37.3 48 -01001110 56.9 48 -01001110 59.9 48 -01001110 49.1 48 -01001110 635 48 -01001110 42.8 49 -01001110 57.6 49 -01001110 58.6 49 -01001110 314 49 -01001110 54.9 49 -01001110 39.7 49 -01001110 43.6 49 -01001110 544 49 -01001110 790 49 -01001110 378 49 -01001110 309 49 -01001110 351 49 -01001110 384 49 -01001110 45.6 49 -01001110 459 49 -01001110 52.9 49 -01001110 44.3 49 -01001110 33.1 49 -01001110 43.8 49 -01001110 55.8 50 -01001110 710 50 -01001110 58.9 50 -01001110 349 50 -01001110 63.6 50 -01001110 42.9 50 -01001110 66.7 50 -01001110 367 50 -01001110 246 51 -01001110 53.9 51 -01001110 37.1 51 -01001110 81.5 51 -01001110 32.7 51 -01001110 307 51 -01001110 61.8 51 -01001110 354 51 -01001110 374 51 -01001110 467 51 -01001110 47.3 51 -01001110 452 51 -01001110 296 51 -01001110 48.7 52 -01001110 42.7 52 -01001110 590 52 -01001110 72.7 52 -01001110 209 52 -01001110 344 52 -01001110 337 52 -01001110 655 52 -01001110 37.4 52 -01001110 48.6 52 -01001110 56.5 52 -01001110 543 52 -01001110 46.8 52 -01001110 59.5 52 -01001110 820 52 -01001110 42.2 53 -01001110 37.2 53 -01001110 272 53 -01001110 445 53 -01001110 60.4 53 -01001110 40.6 53 -01001110 41.9 53 -01001110 505 53 -01001110 52.3 53 -01001110 306 53 -01001110 35.4 53 -01001110 810 54 -01001110 408 54 -01001110 50.2 54 -01001110 27.8 54 -01001110 244 54 -01001110 261 54 -01001110 38.1 54 -01001110 397 55 -01001110 40.3 55 -01001110 36.9 55 -01001110 55.5 55 -01001110 64.8 55 -01001110 356 55 -01001110 292 55 -01001110 284 56 -01001110 760 56 -01001110 194 56 -01001110 334 56 -01001110 35.3 56 -01001110 47.8 56 -01001110 402 56 -01001110 279 56 -01001110 495 56 -01001110 37.8 56 -01001110 50.9 56 -01001110 266 56 -01001110 51.8 56 -01001110 48.8 57 -01001110 409 57 -01001110 35.7 57 -01001110 41.4 57 -01001110 545 57 -01001110 860 57 -01001110 32.3 57 -01001110 303 57 -01001110 247 57 -01001110 80.5 57 -01001110 253 57 -01001110 33.7 58 -01001110 231 58 -01001110 67.5 58 -01001110 53.8 58 -01001110 352 58 -01001110 59.3 58 -01001110 37.6 58 -01001110 53.3 58 -01001110 52.8 58 -01001110 219 58 -01001110 473 58 -01001110 201 58 -01001110 46.2 58 -01001110 880 59 -01001110 40.5 59 -01001110 34.8 59 -01001110 289 59 -01001110 830 59 -01001110 50.4 59 -01001110 890 60 -01001110 50.7 60 -01001110 46.1 60 -01001110 485 60 -01001110 740 60 -01001110 36.3 60 -01001110 465 60 -01001110 38.2 60 -01001110 251 60 -01001110 38.4 60 -01001110 269 60 -01001110 925 61 -01001110 304 61 -01001110 207 61 -01001110 45.1 61 -01001110 61.5 61 -01001110 213 61 -01001110 316 61 -01001110 690 61 -01001110 455 62 -01001110 43.4 62 -01001110 39.4 62 -01001110 48.5 62 -01001110 29.1 62 -01001110 28.9 62 -01001110 775 63 -01001110 227 63 -01001110 197 63 -01001110 333 63 -01001110 51.5 63 -01001110 34.4 63 -01001110 258 63 -01001110 326 63 -01001110 970 63 -01001110 273 63 -01001110 33.2 63 -01001110 515 63 -01001110 33.4 64 -01001110 257 64 -01001110 405 64 -01001110 45.5 64 -01001110 33.8 64 -01001110 49.7 64 -01001110 412 64 -01001110 825 64 -01001110 31.4 64 -01001110 36.8 65 -01001110 271 65 -01001110 39.5 65 -01001110 37.9 65 -01001110 32.4 65 -01001110 282 65 -01001110 40.9 65 -01001110 44.1 65 -01001110 53.5 65 -01001110 31.1 65 -01001110 31.6 66 -01001110 34.1 66 -01001110 237 66 -01001110 32.8 66 -01001110 46.5 66 -01001110 34.6 67 -01001110 332 67 -01001110 29.8 67 -01001110 38.3 67 -01001110 610 67 -01001110 30.3 67 -01001110 395 67 -01001110 35.2 67 -01001110 34.7 68 -01001110 52.4 68 -01001110 274 68 -01001110 30.2 68 -01001110 302 68 -01001110 39.2 68 -01001110 202 68 -01001110 36.4 69 -01001110 33.6 69 -01001110 28.1 69 -01001110 24.1 70 -01001110 203 70 -01001110 216 70 -01001110 204 70 -01001110 299 70 -01001110 281 70 -01001110 30.1 70 -01001110 725 70 -01001110 45.7 71 -01001110 254 71 -01001110 625 71 -01001110 31.7 71 -01001110 29.7 71 -01001110 770 71 -01001110 41.5 71 -01001110 25.7 71 -01001110 377 71 -01001110 38.8 71 -01001110 36.7 71 -01001110 41.2 71 -01001110 980 71 -01001110 259 72 -01001110 278 72 -01001110 193 72 -01001110 31.3 72 -01001110 268 72 -01001110 31.2 72 -01001110 338 72 -01001110 47.6 72 -01001110 248 73 -01001110 27.3 73 -01001110 52.5 73 -01001110 228 73 -01001110 36.2 73 -01001110 206 73 -01001110 39.3 73 -01001110 313 73 -01001110 670 73 -01001110 43.2 73 -01001110 34.2 74 -01001110 226 74 -01001110 236 74 -01001110 283 74 -01001110 27.4 74 -01001110 28.2 74 -01001110 308 74 -01001110 317 75 -01001110 31.8 75 -01001110 222 75 -01001110 187 75 -01001110 177 75 -01001110 355 75 -01001110 26.9 75 -01001110 28.7 75 -01001110 189 76 -01001110 263 76 -01001110 221 76 -01001110 41.7 76 -01001110 223 76 -01001110 30.9 76 -01001110 385 76 -01001110 29.6 76 -01001110 211 77 -01001110 252 77 -01001110 36.5 77 -01001110 28.3 77 -01001110 35.5 77 -01001110 276 77 -01001110 30.6 77 -01001110 29.2 77 -01001110 294 77 -01001110 24.3 78 -01001110 267 78 -01001110 208 78 -01001110 49.5 78 -01001110 186 78 -01001110 43.3 78 -01001110 720 78 -01001110 39.9 78 -01001110 510 78 -01001110 288 79 -01001110 233 79 -01001110 580 79 -01001110 34.9 79 -01001110 30.7 79 -01001110 27.6 79 -01001110 241 79 -01001110 32.2 79 -01001110 25.8 79 -01001110 218 80 -01001110 490 80 -01001110 43.5 80 -01001110 27.7 80 -01001110 960 80 -01001110 27.9 80 -01001110 930 81 -01001110 184 81 -01001110 38.6 81 -01001110 33.5 81 -01001110 234 81 -01001110 44.5 81 -01001110 264 81 -01001110 183 82 -01001110 345 82 -01001110 26.6 82 -01001110 26.1 82 -01001110 680 82 -01001110 24.7 82 -01001110 262 82 -01001110 730 82 -01001110 32.6 82 -01001110 196 83 -01001110 387 83 -01001110 312 83 -01001110 27.2 83 -01001110 238 84 -01001110 57.5 84 -01001110 25.2 84 -01001110 50.3 84 -01001110 188 85 -01001110 875 85 -01001110 36.6 86 -01001110 47.5 86 -01001110 24.6 86 -01001110 23.2 86 -01001110 30.4 86 -01001110 243 86 -01001110 25.1 86 -01001110 28.8 86 -01001110 27.1 86 -01001110 26.3 87 -01001110 217 87 -01001110 23.6 88 -01001110 25.9 88 -01001110 28.4 88 -01001110 630 88 -01001110 23.9 89 -01001110 570 89 -01001110 508 89 -01001110 192 89 -01001110 34.5 89 -01001110 171 90 -01001110 30.8 90 -01001110 169 90 -01001110 24.4 90 -01001110 173 90 -01001110 181 90 -01001110 26.4 91 -01001110 151 91 -01001110 172 91 -01001110 675 92 -01001110 30.5 92 -01001110 23.4 92 -01001110 29.3 92 -01001110 28.6 93 -01001110 178 93 -01001110 182 93 -01001110 295 94 -01001110 191 94 -01001110 26.7 94 -01001110 163 94 -01001110 174 94 -01001110 33.3 95 -01001110 239 95 -01001110 20.9 96 -01001110 25.4 96 -01001110 20.8 96 -01001110 22.3 96 -01001110 23.8 96 -01001110 840 96 -01001110 22.9 97 -01001110 410 99 -01001110 305 99 -01001110 780 99 -01001110 29.4 100 -01001110 214 100 -01001110 224 101 -01001110 199 102 -01001110 23.1 103 -01001110 161 103 -01001110 26.8 103 -01001110 22.4 103 -01001110 21.2 103 -01001110 575 103 -01001110 620 104 -01001110 24.8 104 -01001110 22.1 104 -01001110 22.8 104 -01001110 415 104 -01001110 25.6 104 -01001110 28.5 105 -01001110 32.5 105 -01001110 20.1 107 -01001110 168 107 -01001110 23.7 108 -01001110 21.6 108 -01001110 176 108 -01001110 21.1 109 -01001110 22.7 110 -01001110 21.3 110 -01001110 29.5 110 -01001110 23.3 110 -01001110 139 110 -01001110 198 111 -01001110 21.4 111 -01001110 22.2 112 -01001110 660 113 -01001110 19.1 114 -01001110 31.5 114 -01001110 18.1 114 -01001110 365 114 -01001110 20.4 115 -01001110 20.3 116 -01001110 35.6 116 -01001110 19.7 116 -01001110 26.2 116 -01001110 158 117 -01001110 520 117 -01001110 20.7 117 -01001110 24.2 118 -01001110 17.1 118 -01001110 435 119 -01001110 133 119 -01001110 255 119 -01001110 16.1 119 -01001110 21.7 120 -01001110 25.3 120 -01001110 166 121 -01001110 167 121 -01001110 21.8 122 -01001110 21.9 122 -01001110 540 122 -01001110 19.2 123 -01001110 153 123 -01001110 42.5 123 -01001110 141 124 -01001110 164 124 -01001110 245 124 -01001110 20.2 125 -01001110 154 125 -01001110 19.4 125 -01001110 26.5 125 -01001110 17.9 125 -01001110 256 126 -01001110 19.3 127 -01001110 25.5 127 -01001110 18.2 127 -01001110 335 127 -01001110 127 129 -01001110 480 129 -01001110 315 129 -01001110 131 131 -01001110 162 132 -01001110 525 132 -01001110 640 132 -01001110 195 133 -01001110 470 133 -01001110 129 133 -01001110 17.2 134 -01001110 530 134 -01001110 390 135 -01001110 142 136 -01001110 17.8 137 -01001110 24.5 137 -01001110 285 139 -01001110 310 139 -01001110 16.4 139 -01001110 147 139 -01001110 17.4 140 -01001110 16.9 141 -01001110 148 142 -01001110 265 145 -01001110 215 145 -01001110 156 145 -01001110 460 146 -01001110 152 146 -01001110 16.7 147 -01001110 16.3 147 -01001110 18.4 147 -01001110 430 147 -01001110 19.8 148 -01001110 146 149 -01001110 29.9 150 -01001110 157 150 -01001110 420 150 -01001110 18.9 150 -01001110 136 150 -01001110 137 151 -01001110 235 151 -01001110 23.5 151 -01001110 22.6 151 -01001110 17.7 152 -01001110 18.8 152 -01001110 15.3 153 -01001110 11.9 153 -01001110 123 153 -01001110 18.3 153 -01001110 18.7 153 -01001110 17.3 153 -01001110 121 154 -01001110 440 154 -01001110 425 154 -01001110 15.4 155 -01001110 475 156 -01001110 20.6 157 -01001110 134 158 -01001110 16.8 158 -01001110 143 162 -01001110 205 168 -01001110 122 171 -01001110 370 172 -01001110 138 172 -01001110 380 175 -01001110 13.1 176 -01001110 117 177 -01001110 14.2 179 -01001110 19.9 179 -01001110 15.1 179 -01001110 950 180 -01001110 16.2 181 -01001110 340 181 -01001110 14.1 182 -01001110 19.6 183 -01001110 126 185 -01001110 15.9 186 -01001110 18.6 188 -01001110 144 189 -01001110 27.5 189 -01001110 15.7 190 -01001110 20.5 191 -01001110 12.9 191 -01001110 14.4 191 -01001110 12.1 193 -01001110 14.6 194 -01001110 15.6 198 -01001110 118 198 -01001110 15.2 199 -01001110 13.3 199 -01001110 290 200 -01001110 13.9 201 -01001110 16.6 201 -01001110 21.5 203 -01001110 13.7 203 -01001110 116 204 -01001110 375 204 -01001110 128 205 -01001110 14.7 206 -01001110 132 207 -01001110 14.3 208 -01001110 114 209 -01001110 17.6 210 -01001110 13.8 212 -01001110 109 214 -01001110 185 214 -01001110 113 215 -01001110 14.8 226 -01001110 13.4 226 -01001110 360 230 -01001110 10.9 231 -01001110 11.8 231 -01001110 19.5 232 -01001110 12.7 242 -01001110 11.1 242 -01001110 112 243 -01001110 12.6 249 -01001110 11.2 250 -01001110 13.2 250 -01001110 11.7 254 -01001110 12.4 256 -01001110 11.6 259 -01001110 12.3 261 -01001110 15.8 262 -01001110 330 264 -01001110 155 268 -01001110 10.1 268 -01001110 280 269 -01001110 13.6 269 -01001110 325 274 -01001110 22.5 276 -01001110 12.2 276 -01001110 320 281 -01001110 210 282 -01001110 165 282 -01001110 12.8 284 -01001110 15.5 289 -01001110 145 289 -01001110 18.5 291 -01001110 10.6 291 -01001110 16.5 292 -01001110 10.4 294 -01001110 14.9 295 -01001110 190 297 -01001110 850 301 -01001110 11.3 301 -01001110 10.7 302 -01001110 10.2 308 -01001110 275 311 -01001110 11.4 314 -01001110 8.1 331 -01001110 14.5 334 -01001110 260 336 -01001110 10.8 338 -01001110 17.5 345 -01001110 220 349 -01001110 9.3 361 -01001110 230 362 -01001110 1.15 364 -01001110 9.7 367 -01001110 8.7 368 -01001110 9.2 376 -01001110 8.9 381 -01001110 240 385 -01001110 9.1 394 -01001110 9.6 406 -01001110 7.9 415 -01001110 13.5 421 -01001110 8.6 425 -01001110 9.4 433 -01001110 108 433 -01001110 8.8 447 -01001110 9.8 448 -01001110 8.3 450 -01001110 135 451 -01001110 8.4 458 -01001110 6.1 462 -01001110 8.2 473 -01001110 115 478 -01001110 650 479 -01001110 6.9 479 -01001110 6.4 482 -01001110 11.5 483 -01001110 175 483 -01001110 7.8 486 -01001110 7.1 488 -01001110 7.6 496 -01001110 7.7 500 -01001110 550 502 -01001110 6.2 506 -01001110 7.4 507 -01001110 7.3 514 -01001110 170 515 -01001110 7.2 525 -01001110 6.6 530 -01001110 10.3 533 -01001110 6.8 538 -01001110 105 552 -01001110 6.3 566 -01001110 10.5 572 -01001110 6.7 579 -01001110 5.9 607 -01001110 4.7 621 -01001110 5.6 628 -01001110 5.8 640 -01001110 5.1 640 -01001110 4.1 650 -01001110 4.8 658 -01001110 5.7 658 -01001110 5.4 667 -01001110 225 671 -01001110 160 686 -01001110 4.6 715 -01001110 4.9 720 -01001110 9.5 724 -01001110 3.9 738 -01001110 900 754 -01001110 750 754 -01001110 5.3 758 -01001110 4.4 761 -01001110 450 783 -01001110 4.3 785 -01001110 5.2 786 -01001110 130 793 -01001110 3.4 838 -01001110 3.1 839 -01001110 3.7 847 -01001110 140 856 -01001110 110 882 -01001110 8.5 884 -01001110 3.6 884 -01001110 3.8 900 -01001110 2.9 907 -01001110 3.2 914 -01001110 6.5 926 -01001110 4.2 928 -01001110 3.3 929 -01001110 125 959 -01001110 350 1013 -01001110 2.8 1048 -01001110 5.5 1069 -01001110 2.7 1079 -01001110 2.6 1123 -01001110 2.1 1136 -01001110 7.5 1139 -01001110 2.4 1152 -01001110 2.3 1152 -01001110 1.9 1258 -01001110 700 1313 -01001110 2.2 1317 -01001110 4.5 1423 -01001110 800 1433 -01001110 1.8 1530 -01001110 1.6 1631 -01001110 1.7 1658 -01001110 3.5 1696 -01001110 600 1847 -01001110 1.4 1892 -01001110 1.3 1937 -01001110 1.1 2038 -01001110 250 2181 -01001110 1.2 2263 -01001110 2.5 2623 -01001110 400 2663 -01001110 150 3186 -01001110 300 3409 -01001110 1.5 3570 -01001110 100 11001 -01001110 500 4852 -01001110 200 4834 -01001111 820,111 1 -01001111 945,568 1 -01001111 189,101 1 -01001111 711,731 1 -01001111 648,087 1 -01001111 69,241 1 -01001111 337,349 1 -01001111 5,597 1 -01001111 125,457 1 -01001111 1.80s 1 -01001111 11-a-unit 1 -01001111 1.7943 1 -01001111 779,172 1 -01001111 249,676 1 -01001111 26,364 1 -01001111 89,900 1 -01001111 19-a-barrel 1 -01001111 474.50 1 -01001111 35,470,000 1 -01001111 3,711.4 1 -01001111 292,972 1 -01001111 +185.0 1 -01001111 1.033 1 -01001111 1.113 1 -01001111 122,623 1 -01001111 270,268 1 -01001111 40,000-45,000 1 -01001111 55,900 1 -01001111 188,900 1 -01001111 36,980,000 1 -01001111 32,430 1 -01001111 16,490 1 -01001111 513,731 1 -01001111 83,593 1 -01001111 10.428 1 -01001111 1,400,100 1 -01001111 59.90 1 -01001111 82.147 1 -01001111 2,332 1 -01001111 2,244 1 -01001111 463.90 1 -01001111 782,425 1 -01001111 4,988 1 -01001111 condom-sharing 1 -01001111 610,265 1 -01001111 22.917 1 -01001111 16.675 1 -01001111 12,601 1 -01001111 309,939 1 -01001111 15,958,000 1 -01001111 51,750,000 1 -01001111 8,980,000 1 -01001111 3,475,000 1 -01001111 182,300 1 -01001111 49.67-a-share 1 -01001111 37.93 1 -01001111 12,900,000 1 -01001111 469.60 1 -01001111 222,800 1 -01001111 377,101 1 -01001111 26,965 1 -01001111 103,826 1 -01001111 40,293 1 -01001111 29,046 1 -01001111 362,348 1 -01001111 78.94 1 -01001111 65.38 1 -01001111 315.98 1 -01001111 842,810 1 -01001111 237,615 1 -01001111 76,887 1 -01001111 70.125-a-share 1 -01001111 67,617 1 -01001111 742,700 1 -01001111 3.438 1 -01001111 903,800 1 -01001111 3.5-million 1 -01001111 465.00 1 -01001111 1.2925 1 -01001111 750K 1 -01001111 10,955 1 -01001111 275,182 1 -01001111 254,634 1 -01001111 130-a-day 1 -01001111 7.438 1 -01001111 6,698 1 -01001111 3,190,000 1 -01001111 12.50-ashare 1 -01001111 181,060 1 -01001111 12,610 1 -01001111 222,617 1 -01001111 417,508 1 -01001111 12,154 1 -01001111 552.80 1 -01001111 7.312 1 -01001111 106,800 1 -01001111 491,136 1 -01001111 121,600 1 -01001111 75-a-week 1 -01001111 26,438 1 -01001111 173,638 1 -01001111 347,051 1 -01001111 603,917 1 -01001111 8,498 1 -01001111 623,327 1 -01001111 104,025 1 -01001111 26,300 1 -01001111 56.973 1 -01001111 56.848 1 -01001111 715,459 1 -01001111 442.50 1 -01001111 1.0057 1 -01001111 197,382 1 -01001111 1,900-a-person 1 -01001111 225-a-term 1 -01001111 16,629 1 -01001111 6,719 1 -01001111 15,089 1 -01001111 7,339 1 -01001111 100-a-head 1 -01001111 born-in-America 1 -01001111 25,168.39 1 -01001111 23,282.28 1 -01001111 725,392 1 -01001111 357,435 1 -01001111 1.0613 1 -01001111 26.438 1 -01001111 26.063 1 -01001111 276.75 1 -01001111 229,480 1 -01001111 204,950 1 -01001111 311.46 1 -01001111 7.217 1 -01001111 2.423 1 -01001111 2,006 1 -01001111 25-per-shipment 1 -01001111 56,957,000 1 -01001111 1,895,000 1 -01001111 989,714 1 -01001111 1.0075 1 -01001111 1.0226 1 -01001111 96.25 1 -01001111 243,845 1 -01001111 199,097 1 -01001111 79,575 1 -01001111 97,100 1 -01001111 39.6285 1 -01001111 103.54 1 -01001111 23,950,000 1 -01001111 104.45 1 -01001111 6.935 1 -01001111 2,125 1 -01001111 13,875 1 -01001111 18,831 1 -01001111 280,000,000 1 -01001111 9.9-billion 1 -01001111 446.60 1 -01001111 11,088,000 1 -01001111 20,240,000 1 -01001111 27,710 1 -01001111 12,679 1 -01001111 13,093 1 -01001111 27,797 1 -01001111 28,390 1 -01001111 17,920 1 -01001111 15,327 1 -01001111 23,168 1 -01001111 23,484 1 -01001111 29,070 1 -01001111 508,461 1 -01001111 26.45 1 -01001111 9,139 1 -01001111 4.8775 1 -01001111 10,046 1 -01001111 18,754 1 -01001111 20,812 1 -01001111 6,139 1 -01001111 471,157 1 -01001111 3.2525 1 -01001111 56.02 1 -01001111 445,859 1 -01001111 211,766 1 -01001111 14.992 1 -01001111 29.46 1 -01001111 447.10 1 -01001111 7,560 1 -01001111 455,400 1 -01001111 852,162 1 -01001111 4-a-night 1 -01001111 2-a-night 1 -01001111 682,500 1 -01001111 1.7044 1 -01001111 13.0489 1 -01001111 17.7988 1 -01001111 79,889,110 1 -01001111 147,392 1 -01001111 712,900 1 -01001111 5.955 1 -01001111 1,573,200 1 -01001111 27,000,000 1 -01001111 54.7142 1 -01001111 42.4242 1 -01001111 9,250 1 -01001111 118.10 1 -01001111 23,180 1 -01001111 473.40 1 -01001111 3,821,000,000 1 -01001111 476.20 1 -01001111 9.125-a-share 1 -01001111 315.58 1 -01001111 314.80 1 -01001111 200,000-a-month 1 -01001111 617,700 1 -01001111 526.90 1 -01001111 22.75-a-share 1 -01001111 92,200 1 -01001111 25.3-million 1 -01001111 29.587 1 -01001111 17.075 1 -01001111 327.60 1 -01001111 143,819 1 -01001111 calico-clad 1 -01001111 40,980,000 1 -01001111 44,750,000 1 -01001111 1-an-ounce 1 -01001111 1,000,100 1 -01001111 749,300 1 -01001111 1,162.50 1 -01001111 17.497 1 -01001111 30.225 1 -01001111 246,300 1 -01001111 25,000-plus 1 -01001111 98,575,000 1 -01001111 687,500 1 -01001111 281,202 1 -01001111 101,431 1 -01001111 26.18 1 -01001111 8,801 1 -01001111 175.875 1 -01001111 153.875 1 -01001111 496,850 1 -01001111 397,480 1 -01001111 58,150 1 -01001111 4,506 1 -01001111 5,764 1 -01001111 10,650 1 -01001111 11,380 1 -01001111 101,496 1 -01001111 47.47 1 -01001111 52.686 1 -01001111 39.7213 1 -01001111 5,834,070 1 -01001111 3,878,700 1 -01001111 10,000-per-contract 1 -01001111 8.349 1 -01001111 12,849 1 -01001111 14,349 1 -01001111 14,999 1 -01001111 7.863 1 -01001111 3,149 1 -01001111 8,520,000 1 -01001111 135,718 1 -01001111 21,831 1 -01001111 104,671 1 -01001111 94,705 1 -01001111 59,772 1 -01001111 1-a-week 1 -01001111 27,720 1 -01001111 985,470 1 -01001111 319,553 1 -01001111 175,754 1 -01001111 93,250 1 -01001111 368,500 1 -01001111 476.30 1 -01001111 797.50 1 -01001111 415,600 1 -01001111 lower-power 1 -01001111 437,972 1 -01001111 469.80 1 -01001111 571.50 1 -01001111 508,109 1 -01001111 18,042 1 -01001111 277,400 1 -01001111 171,896 1 -01001111 165.25 1 -01001111 2,275 1 -01001111 40-per-barrel 1 -01001111 12.963 1 -01001111 499,000 1 -01001111 41,644 1 -01001111 2,734,912 1 -01001111 311,500 1 -01001111 11.424 1 -01001111 231,600 1 -01001111 2,364,000 1 -01001111 2,016.39 1 -01001111 3,110.34 1 -01001111 4,325 1 -01001111 307,176 1 -01001111 214.94 1 -01001111 399.01 1 -01001111 458.66 1 -01001111 35.67-a-share 1 -01001111 768,200 1 -01001111 464.60 1 -01001111 8.97-a-share 1 -01001111 275,537 1 -01001111 85,930 1 -01001111 41,677 1 -01001111 13,035 1 -01001111 1,056.30 1 -01001111 18,633 1 -01001111 132.79 1 -01001111 258.87 1 -01001111 8.043 1 -01001111 3,055,000 1 -01001111 4,444,000 1 -01001111 468.40 1 -01001111 121.875 1 -01001111 139,800 1 -01001111 12,669,000 1 -01001111 16,240 1 -01001111 14,090 1 -01001111 17,525 1 -01001111 2,015 1 -01001111 50.20 1 -01001111 72.10 1 -01001111 470.10 1 -01001111 1.7398 1 -01001111 48,434,000 1 -01001111 475.30 1 -01001111 308,636 1 -01001111 60.25-a-share 1 -01001111 171.50 1 -01001111 2.20. 1 -01001111 493.20 1 -01001111 500.30 1 -01001111 5.85-a-share 1 -01001111 120.625 1 -01001111 24.138 1 -01001111 21.478 1 -01001111 68,660 1 -01001111 3,048.50 1 -01001111 29.82 1 -01001111 1,103.65 1 -01001111 1,964 1 -01001111 347,863 1 -01001111 96,250 1 -01001111 1.5793 1 -01001111 75.92 1 -01001111 6,068,200 1 -01001111 79.44 1 -01001111 32,540 1 -01001111 103.375 1 -01001111 2,333 1 -01001111 371,516 1 -01001111 172.875 1 -01001111 3,335,000 1 -01001111 33,047,000 1 -01001111 34,347,000 1 -01001111 364,981,000 1 -01001111 592.30 1 -01001111 29,905 1 -01001111 26,654 1 -01001111 14,224 1 -01001111 15,576 1 -01001111 3,391,915 1 -01001111 3,394,604 1 -01001111 12,821,000 1 -01001111 74.34 1 -01001111 63,503 1 -01001111 112,452 1 -01001111 1,952 1 -01001111 939,499 1 -01001111 412,550 1 -01001111 964,376 1 -01001111 149,800 1 -01001111 426,211 1 -01001111 5,570 1 -01001111 189,454 1 -01001111 174,659 1 -01001111 190,950 1 -01001111 353,850 1 -01001111 410,329 1 -01001111 97,033 1 -01001111 116.325 1 -01001111 5.179 1 -01001111 21,612 1 -01001111 1.5645 1 -01001111 579,859 1 -01001111 24,048 1 -01001111 1,086.36 1 -01001111 1,090.94 1 -01001111 1,037.50 1 -01001111 412,500 1 -01001111 100-million-a-year 1 -01001111 6,897 1 -01001111 46.325 1 -01001111 627.80 1 -01001111 217,198 1 -01001111 719,000 1 -01001111 6,813 1 -01001111 1,032,900 1 -01001111 116,700 1 -01001111 28.041 1 -01001111 1,425,000 1 -01001111 78,337.81 1 -01001111 692,390 1 -01001111 20.53 1 -01001111 209,010 1 -01001111 147,328 1 -01001111 118,300 1 -01001111 265,628 1 -01001111 1.5728 1 -01001111 629.20 1 -01001111 6-a-week 1 -01001111 194,076,000 1 -01001111 199,788,000 1 -01001111 623,061 1 -01001111 44.412 1 -01001111 616,940 1 -01001111 196.75 1 -01001111 1,119.78 1 -01001111 76,909,000 1 -01001111 23,091,000 1 -01001111 8.9583 1 -01001111 1,556,420 1 -01001111 9,950 1 -01001111 888,888 1 -01001111 16,595 1 -01001111 310,321 1 -01001111 940,043 1 -01001111 4,966 1 -01001111 166.50 1 -01001111 914,831 1 -01001111 1.6303 1 -01001111 1,097.20 1 -01001111 45,690 1 -01001111 983,212 1 -01001111 335,373 1 -01001111 280,267 1 -01001111 103,637 1 -01001111 312,579 1 -01001111 18,087 1 -01001111 149,363.10 1 -01001111 12.534 1 -01001111 118.625 1 -01001111 1,085.10 1 -01001111 7,695 1 -01001111 19,115,984,000 1 -01001111 230,727 1 -01001111 3,393,000 1 -01001111 517.40 1 -01001111 394,473 1 -01001111 20-per-barrel 1 -01001111 2.545 1 -01001111 788,220 1 -01001111 28,500-a-year 1 -01001111 1,508,000 1 -01001111 1,124,000 1 -01001111 7.037 1 -01001111 534.50 1 -01001111 1.683 1 -01001111 2,087,000 1 -01001111 81.30 1 -01001111 165,774 1 -01001111 294,141 1 -01001111 513,900 1 -01001111 20-a-bottle 1 -01001111 35,440,000 1 -01001111 54,750 1 -01001111 51,501 1 -01001111 412,520 1 -01001111 312.20 1 -01001111 311.11 1 -01001111 310.91 1 -01001111 5,814 1 -01001111 48-a-year 1 -01001111 458.30 1 -01001111 591.10 1 -01001111 5.50-an-hour 1 -01001111 2,297,700 1 -01001111 403,816 1 -01001111 1,687,617 1 -01001111 50,000-per-farmer 1 -01001111 1.1437 1 -01001111 799,520 1 -01001111 413,919 1 -01001111 651,710 1 -01001111 7.795 1 -01001111 612.50 1 -01001111 4.35-a-share 1 -01001111 5,695 1 -01001111 42,177 1 -01001111 861,727 1 -01001111 327,712 1 -01001111 77,512 1 -01001111 65-an-acre 1 -01001111 243,600 1 -01001111 463,500 1 -01001111 377,979 1 -01001111 23,676 1 -01001111 19,544 1 -01001111 20,462 1 -01001111 54,795 1 -01001111 95.375 1 -01001111 183.125 1 -01001111 1.6255 1 -01001111 8.1866 1 -01001111 22.76 1 -01001111 100,000-is 1 -01001111 43.075-a-share 1 -01001111 200-commission 1 -01001111 580.80 1 -01001111 914,202 1 -01001111 799,751 1 -01001111 753,317 1 -01001111 1-a-gallon 1 -01001111 218,666 1 -01001111 199,851 1 -01001111 418,517 1 -01001111 23.635 1 -01001111 1,092,000 1 -01001111 9.9125 1 -01001111 119,681 1 -01001111 858,625 1 -01001111 62,810 1 -01001111 448.10 1 -01001111 304,800 1 -01001111 883,000 1 -01001111 509,787 1 -01001111 128.375 1 -01001111 35,960,000 1 -01001111 567,002 1 -01001111 573.90 1 -01001111 5.3475 1 -01001111 451.30 1 -01001111 1.5990 1 -01001111 380,615 1 -01001111 539,575 1 -01001111 20.10-a-share 1 -01001111 1,119.03 1 -01001111 525,788 1 -01001111 1.6176 1 -01001111 257,339 1 -01001111 71,660 1 -01001111 56,132 1 -01001111 483,332 1 -01001111 55.175 1 -01001111 48.1141 1 -01001111 340,500 1 -01001111 1,369 1 -01001111 446.80 1 -01001111 150-a-month 1 -01001111 177.375 1 -01001111 167,104.83 1 -01001111 377-a-year 1 -01001111 881,094 1 -01001111 100-an-ounce 1 -01001111 181.50 1 -01001111 6,051 1 -01001111 167.50 1 -01001111 65,967.50 1 -01001111 90-million 1 -01001111 13,462 1 -01001111 2,489 1 -01001111 27,379 1 -01001111 109,040 1 -01001111 2,928 1 -01001111 7,338 1 -01001111 10,000-a-day 1 -01001111 100,920 1 -01001111 28,429 1 -01001111 68,036.98 1 -01001111 11.09-a-share 1 -01001111 742,545 1 -01001111 28.058 1 -01001111 246,949 1 -01001111 31.954 1 -01001111 25.0156 1 -01001111 27.233 1 -01001111 139,700 1 -01001111 198.41 1 -01001111 121,275 1 -01001111 1,006.45 1 -01001111 913,388 1 -01001111 14.094 1 -01001111 67.33 1 -01001111 23,333 1 -01001111 50,000-plus 1 -01001111 18.018 1 -01001111 29,460 1 -01001111 10,939 1 -01001111 2.8125 1 -01001111 21.00 1 -01001111 4,090,000 1 -01001111 1.5930 1 -01001111 1.5888 1 -01001111 624.80 1 -01001111 847,193 1 -01001111 50-a-week 1 -01001111 17,502 1 -01001111 291,758 1 -01001111 178,570 1 -01001111 764,493 1 -01001111 2,500-astore 1 -01001111 5,863,981 1 -01001111 477.60 1 -01001111 1.5788 1 -01001111 648.70 1 -01001111 6,773,000 1 -01001111 13,138,462 1 -01001111 719,516 1 -01001111 1,697,366 1 -01001111 17,714 1 -01001111 Blend-A-Med 1 -01001111 464,996 1 -01001111 899,997 1 -01001111 313,841 1 -01001111 634.60 1 -01001111 87,840 1 -01001111 5,280,000 1 -01001111 1,316 1 -01001111 762,693 1 -01001111 880,243 1 -01001111 161.375 1 -01001111 108.91 1 -01001111 6,775 1 -01001111 1.5970 1 -01001111 371,369 1 -01001111 310.76 1 -01001111 312.55 1 -01001111 312.01 1 -01001111 3,001,895 1 -01001111 49,409 1 -01001111 203,210 1 -01001111 319,737 1 -01001111 3.30-a-share 1 -01001111 188.125 1 -01001111 15,384 1 -01001111 63,450 1 -01001111 1,001,000 1 -01001111 1.50-a-unit 1 -01001111 610.30 1 -01001111 7.951 1 -01001111 781,739 1 -01001111 12,232,400 1 -01001111 19.475 1 -01001111 349,762 1 -01001111 13,250 1 -01001111 371,030 1 -01001111 23.275 1 -01001111 1.5983 1 -01001111 1.0391 1 -01001111 2,016 1 -01001111 1,241,965 1 -01001111 1.70-a-bushel 1 -01001111 24,005 1 -01001111 135,281 1 -01001111 1,685,350 1 -01001111 258,482 1 -01001111 1,016,800 1 -01001111 982,046 1 -01001111 106,199 1 -01001111 2,798 1 -01001111 12,527 1 -01001111 43,956 1 -01001111 505.40 1 -01001111 1.0915 1 -01001111 1.1060 1 -01001111 1.1870 1 -01001111 1.1740 1 -01001111 1.2629 1 -01001111 1.7019 1 -01001111 64,952 1 -01001111 139,420 1 -01001111 158,222 1 -01001111 73,375 1 -01001111 171,288 1 -01001111 42,235 1 -01001111 155,363 1 -01001111 6,516,000 1 -01001111 C2.50 1 -01001111 C29.50 1 -01001111 9,378 1 -01001111 11,587 1 -01001111 12,730 1 -01001111 780,071 1 -01001111 750-per-employee 1 -01001111 7.705 1 -01001111 503,263 1 -01001111 9,362 1 -01001111 9,295 1 -01001111 8,595 1 -01001111 13,276 1 -01001111 17,575 1 -01001111 6,595 1 -01001111 26,001 1 -01001111 761,499 1 -01001111 17,355 1 -01001111 129,052 1 -01001111 7,497 1 -01001111 30,480 1 -01001111 39,995 1 -01001111 172,995 1 -01001111 142,300 1 -01001111 145,200 1 -01001111 0.8280 1 -01001111 934,786 1 -01001111 321,980 1 -01001111 1.1990 1 -01001111 510.60 1 -01001111 6.3850 1 -01001111 400.00 1 -01001111 0.8196 1 -01001111 0.8274 1 -01001111 0.8266 1 -01001111 4,921,000 1 -01001111 7,927 1 -01001111 1.6920 1 -01001111 1,220,950 1 -01001111 509.80 1 -01001111 1.2385 1 -01001111 1.2440 1 -01001111 2.80-a-share 1 -01001111 107,579.75 1 -01001111 3,150,000 1 -01001111 85,178 1 -01001111 594,541,000 1 -01001111 3,714 1 -01001111 1.2924 1 -01001111 1.0850 1 -01001111 1.0825 1 -01001111 1.2140 1 -01001111 614,500 1 -01001111 10,550 1 -01001111 25,883 1 -01001111 2,733-per-person 1 -01001111 42-billion 1 -01001111 14-a-barrel 1 -01001111 288,750 1 -01001111 898,000 1 -01001111 82.05 1 -01001111 40-a-barrel 1 -01001111 112.875 1 -01001111 144,481 1 -01001111 89.636 1 -01001111 491,231 1 -01001111 722,446 1 -01001111 270,864 1 -01001111 10,255 1 -01001111 335,242 1 -01001111 1.0655 1 -01001111 89-ashare 1 -01001111 10,753,627 1 -01001111 401.60 1 -01001111 503.80 1 -01001111 1.0945 1 -01001111 1.1735 1 -01001111 25,014 1 -01001111 166,765 1 -01001111 222,354 1 -01001111 74.64 1 -01001111 46.20 1 -01001111 12,299 1 -01001111 6.90-an-hour 1 -01001111 5,080,000 1 -01001111 2.28125 1 -01001111 89-a-share 1 -01001111 138,900 1 -01001111 10.342 1 -01001111 1.0705 1 -01001111 1.1500 1 -01001111 1.2290 1 -01001111 1.3025 1 -01001111 494.40 1 -01001111 844,800 1 -01001111 8.63-a-share 1 -01001111 11.125-a-share 1 -01001111 259,252 1 -01001111 1.2535 1 -01001111 1.2550 1 -01001111 1.7463 1 -01001111 18.25-a-share 1 -01001111 2.30-a-share 1 -01001111 4995 1 -01001111 5495 1 -01001111 1,024.50 1 -01001111 35,978,360 1 -01001111 322,700 1 -01001111 518.40 1 -01001111 6.3750 1 -01001111 1.7525 1 -01001111 157,784.59 1 -01001111 1008.96 1 -01001111 1,019.06 1 -01001111 88.25-a-share 1 -01001111 1,341 1 -01001111 1.2270 1 -01001111 1.2780 1 -01001111 318,294 1 -01001111 13,430 1 -01001111 452,125 1 -01001111 1.2471 1 -01001111 538.90 1 -01001111 1.2460 1 -01001111 1.3410 1 -01001111 38,805 1 -01001111 33,405 1 -01001111 5,399 1 -01001111 4,993 1 -01001111 116,135 1 -01001111 4,778 1 -01001111 0.77775 1 -01001111 20-million 1 -01001111 315,777 1 -01001111 90,347 1 -01001111 1.1350 1 -01001111 1.1340 1 -01001111 1.2240 1 -01001111 40,805 1 -01001111 313,757 1 -01001111 44,850 1 -01001111 31,590 1 -01001111 1,760,000 1 -01001111 160.625 1 -01001111 39,362 1 -01001111 144,338 1 -01001111 7,944 1 -01001111 11,851 1 -01001111 1.2180 1 -01001111 1.2930 1 -01001111 6.3950 1 -01001111 519.40 1 -01001111 527.50 1 -01001111 28,440 1 -01001111 95,995 1 -01001111 107,450 1 -01001111 49,200 1 -01001111 178.125 1 -01001111 8.5625 1 -01001111 236,460 1 -01001111 79,910 1 -01001111 271,550 1 -01001111 116,440 1 -01001111 179,170 1 -01001111 510.10 1 -01001111 6.2750 1 -01001111 1,216 1 -01001111 798,000 1 -01001111 196,900 1 -01001111 7.816 1 -01001111 50,000-a-day 1 -01001111 2,767,361 1 -01001111 5,668,000 1 -01001111 527.90 1 -01001111 6.6850 1 -01001111 1,022 1 -01001111 25,862.80 1 -01001111 24,362.80 1 -01001111 11.9625 1 -01001111 168.08 1 -01001111 426.70 1 -01001111 169,200 1 -01001111 379,900 1 -01001111 549,100 1 -01001111 1,167,000 1 -01001111 64,769 1 -01001111 31,349 1 -01001111 29.73 1 -01001111 13,880 1 -01001111 2,151 1 -01001111 29,852 1 -01001111 6,020 1 -01001111 9,963 1 -01001111 43,042 1 -01001111 53,179 1 -01001111 1,063,069 1 -01001111 949,300 1 -01001111 267,315 1 -01001111 384,224 1 -01001111 524.10 1 -01001111 1,796,850 1 -01001111 10,000. 1 -01001111 22,235 1 -01001111 14,770 1 -01001111 11,120 1 -01001111 9,690 1 -01001111 298,355 1 -01001111 80,370 1 -01001111 250,518 1 -01001111 444,219 1 -01001111 1,005,479,643.75 1 -01001111 6,199 1 -01001111 36.42 1 -01001111 44.02 1 -01001111 85,619 1 -01001111 12-or 1 -01001111 1,079.13 1 -01001111 24-ashare 1 -01001111 1.7005 1 -01001111 273,527 1 -01001111 234,428 1 -01001111 630,678. 1 -01001111 1.0010 1 -01001111 6.7450 1 -01001111 436.30 1 -01001111 282,517 1 -01001111 585,520 1 -01001111 712,200 1 -01001111 27,501 1 -01001111 825,549 1 -01001111 445,750 1 -01001111 480,108 1 -01001111 217,518 1 -01001111 253.01 1 -01001111 15.73 1 -01001111 304,300 1 -01001111 2.9075 1 -01001111 8.5925 1 -01001111 4.1475 1 -01001111 4,086,521 1 -01001111 46.80 1 -01001111 90.30 1 -01001111 66.40 1 -01001111 11,009 1 -01001111 25,253 1 -01001111 92,100 1 -01001111 15,260 1 -01001111 235,055 1 -01001111 888,648 1 -01001111 253,778 1 -01001111 104,590 1 -01001111 5,434,730 1 -01001111 9,584,327 1 -01001111 9,946,000 1 -01001111 9-an-acre 1 -01001111 7,885 1 -01001111 6,702 1 -01001111 1.0090 1 -01001111 1098.87 1 -01001111 1,525 1 -01001111 9,731,251 1 -01001111 432.51 1 -01001111 10,000-a-person 1 -01001111 32,387 1 -01001111 6,194 1 -01001111 26,193 1 -01001111 19,154 1 -01001111 225,964 1 -01001111 6,000-a-month 1 -01001111 2,000-a-month 1 -01001111 1,494 1 -01001111 643,425 1 -01001111 148,147 1 -01001111 345,071 1 -01001111 7.10-a-share 1 -01001111 16,909 1 -01001111 26,008 1 -01001111 28,250 1 -01001111 20,306 1 -01001111 18,098 1 -01001111 32,274 1 -01001111 20.7178 1 -01001111 eveything 1 -01001111 587,645 1 -01001111 117,529 1 -01001111 19,850 1 -01001111 6,149 1 -01001111 21,920 1 -01001111 12,909 1 -01001111 6.357 1 -01001111 1.1465 1 -01001111 1.2713 1 -01001111 204,100 1 -01001111 7.6425 1 -01001111 303,547 1 -01001111 22,004 1 -01001111 2,845 1 -01001111 5.825 1 -01001111 1,088.45 1 -01001111 1,085.38 1 -01001111 1.1390 1 -01001111 35-a-ton 1 -01001111 0.8175 1 -01001111 0.8203 1 -01001111 0.8200 1 -01001111 125,136 1 -01001111 1,154,592 1 -01001111 114,624 1 -01001111 359,925 1 -01001111 331,986 1 -01001111 226,582 1 -01001111 400,335 1 -01001111 190,264 1 -01001111 250-billion-a-year 1 -01001111 68,670 1 -01001111 70,975 1 -01001111 44,466 1 -01001111 36,830 1 -01001111 45,285 1 -01001111 419,536 1 -01001111 415.40 1 -01001111 413.20 1 -01001111 1.8495 1 -01001111 86.80-a-share 1 -01001111 21,890,000 1 -01001111 386,600 1 -01001111 24,301 1 -01001111 10,485,959 1 -01001111 657,010 1 -01001111 925,819 1 -01001111 522.80 1 -01001111 845,674 1 -01001111 1,518,180 1 -01001111 0.8223 1 -01001111 0.8216 1 -01001111 0.8250 1 -01001111 0.8207 1 -01001111 1.1230 1 -01001111 399.20 1 -01001111 204.89 1 -01001111 10,481.86 1 -01001111 1.1535 1 -01001111 1.1515 1 -01001111 1.0395 1 -01001111 490.60 1 -01001111 6.3530 1 -01001111 399.55 1 -01001111 27.78 1 -01001111 10,418 1 -01001111 22,360 1 -01001111 314.69 1 -01001111 324.92 1 -01001111 322.13 1 -01001111 10,248 1 -01001111 2,056,480 1 -01001111 788,600 1 -01001111 522.00 1 -01001111 430.30 1 -01001111 1.0530 1 -01001111 1.0370 1 -01001111 21.203 1 -01001111 195,333 1 -01001111 18.924 1 -01001111 0.5351 1 -01001111 12,000-a-year 1 -01001111 18.635 1 -01001111 4,869 1 -01001111 123,868 1 -01001111 2,776 1 -01001111 6,964 1 -01001111 14,102 1 -01001111 16,208 1 -01001111 28,032 1 -01001111 520.10 1 -01001111 6.5650 1 -01001111 1.0245 1 -01001111 789,321 1 -01001111 421.75 1 -01001111 489,200 1 -01001111 152,900 1 -01001111 30.98 1 -01001111 868,683 1 -01001111 350,909 1 -01001111 580,909 1 -01001111 1.2366 1 -01001111 418.75 1 -01001111 0.8182 1 -01001111 1.6794 1 -01001111 7,549 1 -01001111 11,849 1 -01001111 792,500-a-year 1 -01001111 4,654,000 1 -01001111 12,654,000 1 -01001111 6,849 1 -01001111 22,299 1 -01001111 4-a-bag 1 -01001111 800-million-a-year 1 -01001111 14,250 1 -01001111 460.10 1 -01001111 13,184 1 -01001111 9,594 1 -01001111 8,997 1 -01001111 10,989 1 -01001111 11,793 1 -01001111 7,449 1 -01001111 8,195 1 -01001111 1,094.09 1 -01001111 1.1479 1 -01001111 8,480 1 -01001111 303,543 1 -01001111 530,651 1 -01001111 7,499 1 -01001111 157,938 1 -01001111 1,079.57 1 -01001111 44,750 1 -01001111 899,800 1 -01001111 6,095 1 -01001111 10,535 1 -01001111 11,105 1 -01001111 13,599 1 -01001111 12,782 1 -01001111 11,562 1 -01001111 12,449 1 -01001111 30.27 1 -01001111 1.3825 1 -01001111 1.1277 1 -01001111 562.60 1 -01001111 88,731 1 -01001111 85,782 1 -01001111 29,633,815,000 1 -01001111 2,174 1 -01001111 43.97 1 -01001111 13,113 1 -01001111 212,750 1 -01001111 6,810,000 1 -01001111 40.44 1 -01001111 1,438,000 1 -01001111 10,000-a-week 1 -01001111 1.3495 1 -01001111 1.1704 1 -01001111 6.0275 1 -01001111 736,100 1 -01001111 1.6244 1 -01001111 131,900 1 -01001111 2,082,000 1 -01001111 703,210 1 -01001111 1,854 1 -01001111 155.875 1 -01001111 1.6273 1 -01001111 25,550,000 1 -01001111 20-a-ton 1 -01001111 629,976 1 -01001111 53.60 1 -01001111 90.90 1 -01001111 5,627 1 -01001111 10,347 1 -01001111 25-per-head 1 -01001111 300-a-month 1 -01001111 1.67-a-share 1 -01001111 43.50-a-share 1 -01001111 24,037 1 -01001111 24,445 1 -01001111 15,432 1 -01001111 16,995 1 -01001111 16.875-a-share 1 -01001111 3,172 1 -01001111 578.20 1 -01001111 6.3930 1 -01001111 40,597 1 -01001111 13,494 1 -01001111 6,661 1 -01001111 250-a-yard 1 -01001111 315.94 1 -01001111 316.05 1 -01001111 563,597 1 -01001111 551,342 1 -01001111 442,406 1 -01001111 711,900 1 -01001111 737,715 1 -01001111 652,576 1 -01001111 721,525 1 -01001111 1,250-an-ounce 1 -01001111 1-a-night 1 -01001111 40,793 1 -01001111 1.1178 1 -01001111 1.6543 1 -01001111 73.825 1 -01001111 1.2426 1 -01001111 196,940 1 -01001111 840,626 1 -01001111 461.70 1 -01001111 137,000-a-year 1 -01001111 139,741 1 -01001111 159.14 1 -01001111 858,840 1 -01001111 137.92 1 -01001111 40-a-ton 1 -01001111 14.935 1 -01001111 6,980 1 -01001111 26.39 1 -01001111 183.75 1 -01001111 168,900 1 -01001111 6,977 1 -01001111 33,830 1 -01001111 21,260 1 -01001111 190.25 1 -01001111 400-a-night 1 -01001111 66,795 1 -01001111 218.25 1 -01001111 567,500 1 -01001111 15-per-ton 1 -01001111 125-per-square-foot 1 -01001111 459.10 1 -01001111 884,705 1 -01001111 973,000 1 -01001111 519,900 1 -01001111 1,264,000 1 -01001111 1,654,000 1 -01001111 8,020,000 1 -01001111 740,898 1 -01001111 1.6100 1 -01001111 1.2468 1 -01001111 745,329 1 -01001111 718,677 1 -01001111 210,575 1 -01001111 13.985 1 -01001111 772,685 1 -01001111 165,756 1 -01001111 613,695 1 -01001111 2.985 1 -01001111 393,372 1 -01001111 809,243 1 -01001111 6,260,000 1 -01001111 1.6190 1 -01001111 1.2015 1 -01001111 12.945 1 -01001111 97.39 1 -01001111 990-a-year 1 -01001111 1.6438 1 -01001111 96.375 1 -01001111 272,495 1 -01001111 65,365 1 -01001111 71,077 1 -01001111 1,838 1 -01001111 461.40 1 -01001111 1,204,358 1 -01001111 159.52 1 -01001111 225,455 1 -01001111 3,366 1 -01001111 29,188,000 1 -01001111 220-million 1 -01001111 35,374 1 -01001111 25,748 1 -01001111 8,990 1 -01001111 9,975 1 -01001111 8,490 1 -01001111 477,862 1 -01001111 942,923 1 -01001111 2,063 1 -01001111 32.695 1 -01001111 28.906 1 -01001111 20.39375 1 -01001111 1.3360 1 -01001111 1.3265 1 -01001111 6.2480 1 -01001111 16.572 1 -01001111 543.80 1 -01001111 379,842 1 -01001111 11,851,809 1 -01001111 21,400 1 -01001111 851,968 1 -01001111 3,680,000 1 -01001111 2-a-pound 1 -01001111 1.3100 1 -01001111 1.3610 1 -01001111 21,995 1 -01001111 32.5903 1 -01001111 7,554 1 -01001111 27,977 1 -01001111 14,070 1 -01001111 1.79-a-can 1 -01001111 174,094 1 -01001111 563.20 1 -01001111 1.4190 1 -01001111 10,000-a-plate 1 -01001111 12.30-a-barrel 1 -01001111 71,250 1 -01001111 279,141 1 -01001111 207,500 1 -01001111 120.75 1 -01001111 414.90 1 -01001111 219,700 1 -01001111 1.398 1 -01001111 1.448 1 -01001111 95,715 1 -01001111 A7.90 1 -01001111 Muschocho 1 -01001111 2.40-a-unit 1 -01001111 876,922 1 -01001111 919,285 1 -01001111 691,896 1 -01001111 501,634 1 -01001111 1,497,945 1 -01001111 1.4115 1 -01001111 1.4380 1 -01001111 970,049 1 -01001111 91.125 1 -01001111 323.75 1 -01001111 HK6-a-share 1 -01001111 540,355 1 -01001111 377,200 1 -01001111 1.4170 1 -01001111 537.70 1 -01001111 6.4050 1 -01001111 414.70 1 -01001111 1.3335 1 -01001111 40,950 1 -01001111 25,630 1 -01001111 12,430 1 -01001111 13,086 1 -01001111 10,158,277 1 -01001111 34.95. 1 -01001111 2,561,500 1 -01001111 100-per-visit 1 -01001111 11,195 1 -01001111 7,595 1 -01001111 423,077 1 -01001111 16.94-a-barrel 1 -01001111 26.479 1 -01001111 2.1125 1 -01001111 1,160,143 1 -01001111 1.3940 1 -01001111 433,500 1 -01001111 77,100 1 -01001111 tea-vendors 1 -01001111 2,576,000,000 1 -01001111 2,581,000,000 1 -01001111 1.3325 1 -01001111 1.4140 1 -01001111 1.4650 1 -01001111 527.20 1 -01001111 6.2550 1 -01001111 408.80 1 -01001111 852,500 1 -01001111 1.7922 1 -01001111 1.4560 1 -01001111 590.50 1 -01001111 178,770 1 -01001111 1.3675 1 -01001111 1.4325 1 -01001111 579.70 1 -01001111 16,836 1 -01001111 1.30-a-unit 1 -01001111 371,875 1 -01001111 444.08 1 -01001111 159.74 1 -01001111 559.35 1 -01001111 651,000 1 -01001111 232,034 1 -01001111 1.4230 1 -01001111 1.4880 1 -01001111 6.4250 1 -01001111 800,000-a-year 1 -01001111 78,000-a-year 1 -01001111 523,800 1 -01001111 731,018 1 -01001111 287,300 1 -01001111 5,382 1 -01001111 1.3130 1 -01001111 185,847 1 -01001111 101,380 1 -01001111 14.9375 1 -01001111 4.2billion 1 -01001111 6.4450 1 -01001111 425.20 1 -01001111 1.2727 1 -01001111 19.98 1 -01001111 34,000-a-month 1 -01001111 1,383,000 1 -01001111 12,470,766 1 -01001111 315,119 1 -01001111 146,300 1 -01001111 50,371 1 -01001111 34,999 1 -01001111 192,063 1 -01001111 423.70 1 -01001111 577.70 1 -01001111 13.10-a-share 1 -01001111 20,198,917 1 -01001111 1,250,828 1 -01001111 582,887,000 1 -01001111 1,082,887 1 -01001111 156,020 1 -01001111 199,760 1 -01001111 500,625 1 -01001111 7,257,000 1 -01001111 7,348,000 1 -01001111 495,650 1 -01001111 125,825 1 -01001111 7,458,000 1 -01001111 905,744 1 -01001111 Undercurrent 1 -01001111 26,070 1 -01001111 1.4630 1 -01001111 303,293 1 -01001111 1.3890 1 -01001111 314,300 1 -01001111 1.2725 1 -01001111 587.80 1 -01001111 6.5350 1 -01001111 160,950 1 -01001111 64,380 1 -01001111 38.46 1 -01001111 1,403 1 -01001111 3.687 1 -01001111 12,155,647 1 -01001111 23,997 1 -01001111 24,595 1 -01001111 129,604.76 1 -01001111 19,275.58 1 -01001111 134,716 1 -01001111 5,175 1 -01001111 2,602.60 1 -01001111 831,847 1 -01001111 9,133 1 -01001111 94,104 1 -01001111 59,533 1 -01001111 41,288 1 -01001111 38,492 1 -01001111 22,240 1 -01001111 23,204 1 -01001111 15,768 1 -01001111 14,064 1 -01001111 81.375 1 -01001111 273,701 1 -01001111 564,854 1 -01001111 507,618 1 -01001111 500-per-employee 1 -01001111 286,700-a-year 1 -01001111 18,954 1 -01001111 37,908 1 -01001111 621,100 1 -01001111 1.4317 1 -01001111 454.30 1 -01001111 442,638 1 -01001111 57,236 1 -01001111 375,745 1 -01001111 581,662 1 -01001111 41.69 1 -01001111 86.10 1 -01001111 556.26 1 -01001111 1,051,000 1 -01001111 26,435 1 -01001111 36,291 1 -01001111 3,162,245 1 -01001111 8,930,856 1 -01001111 8,536,181 1 -01001111 1,158.00 1 -01001111 1,203.05 1 -01001111 233.375 1 -01001111 140-a-share 1 -01001111 119.20 1 -01001111 117.07 1 -01001111 48,250,000 1 -01001111 389.50 1 -01001111 47.03 1 -01001111 2,503,500 1 -01001111 2,866,200 1 -01001111 221,222 1 -01001111 1,215.22 1 -01001111 1,094.01 1 -01001111 19-a-pound 1 -01001111 707.87 1 -01001111 10,513,717 1 -01001111 10,758,000 1 -01001111 461,618 1 -01001111 7,515 1 -01001111 233-a-night 1 -01001111 18,646 1 -01001111 105.875 1 -01001111 5,397 1 -01001111 333,200 1 -01001111 544,400 1 -01001111 5,969 1 -01001111 63,121 1 -01001111 25,156,000 1 -01001111 299,930 1 -01001111 23,562 1 -01001111 34,560 1 -01001111 420,147 1 -01001111 141,486 1 -01001111 535,500 1 -01001111 153,150 1 -01001111 71,950 1 -01001111 34,902 1 -01001111 14.45-a-share 1 -01001111 15.469 1 -01001111 403.10 1 -01001111 64.67 1 -01001111 2,076,000 1 -01001111 170,366 1 -01001111 143.375 1 -01001111 1,026.25 1 -01001111 32.775 1 -01001111 168,328 1 -01001111 582.70 1 -01001111 1,044.40 1 -01001111 11.833 1 -01001111 26.6875 1 -01001111 2,806 1 -01001111 9,915 1 -01001111 1,571 1 -01001111 11,622 1 -01001111 10,499 1 -01001111 2,004 1 -01001111 10,625 1 -01001111 33.30-a-share 1 -01001111 21.49-a-share 1 -01001111 2.15-a-share 1 -01001111 390.90 1 -01001111 167,400 1 -01001111 1,080.50 1 -01001111 1,284,100 1 -01001111 133,503 1 -01001111 408,727 1 -01001111 174,700 1 -01001111 73,600 1 -01001111 672.51 1 -01001111 393.80 1 -01001111 1.4379 1 -01001111 10,714.65 1 -01001111 8,897,000 1 -01001111 7,565,000 1 -01001111 87,750 1 -01001111 61,992 1 -01001111 10.559 1 -01001111 135,605 1 -01001111 16.595 1 -01001111 1.3011 1 -01001111 108,907 1 -01001111 11.247 1 -01001111 18.325 1 -01001111 21.18 1 -01001111 36,300 1 -01001111 482,050,000 1 -01001111 15,950 1 -01001111 1.4293 1 -01001111 17.825 1 -01001111 6,887,700 1 -01001111 493.70 1 -01001111 8,166 1 -01001111 7.80-a-share 1 -01001111 756,507 1 -01001111 56-a-month 1 -01001111 937.2 1 -01001111 111,700 1 -01001111 1.4282 1 -01001111 22,872 1 -01001111 19,518 1 -01001111 309.72 1 -01001111 157,680 1 -01001111 2,500-a-store 1 -01001111 33,530 1 -01001111 8,741 1 -01001111 1,773 1 -01001111 177,245 1 -01001111 1,088.82 1 -01001111 414.10 1 -01001111 5.986 1 -01001111 5.945 1 -01001111 238,735 1 -01001111 2,083,094 1 -01001111 1,116.50 1 -01001111 413.50 1 -01001111 20,750 1 -01001111 2,013,991 1 -01001111 149.75 1 -01001111 410.80 1 -01001111 74,900 1 -01001111 110,849 1 -01001111 23.674 1 -01001111 740,274 1 -01001111 315,133 1 -01001111 158,952 1 -01001111 58,400 1 -01001111 77,862 1 -01001111 23.63 1 -01001111 476.10 1 -01001111 12.37-a-share 1 -01001111 54.33 1 -01001111 34.70 1 -01001111 23.339 1 -01001111 235,841 1 -01001111 305,341 1 -01001111 25,750 1 -01001111 219,509 1 -01001111 1-off 1 -01001111 844,400 1 -01001111 1.4225 1 -01001111 7,335,200 1 -01001111 571,000-a-year 1 -01001111 487,389 1 -01001111 363,324 1 -01001111 58.82 1 -01001111 1196.95 1 -01001111 1,165.77 1 -01001111 2.9033 1 -01001111 623,506 1 -01001111 5,000-a-couple 1 -01001111 68,400-a-year 1 -01001111 39,925 1 -01001111 79,850 1 -01001111 75,100 1 -01001111 14,840 1 -01001111 12,144 1 -01001111 1,481 1 -01001111 10,992 1 -01001111 11,288 1 -01001111 2,792 1 -01001111 1.4267 1 -01001111 44,541 1 -01001111 4,095 1 -01001111 482.30 1 -01001111 629.19 1 -01001111 671.14 1 -01001111 1.4258 1 -01001111 451.40 1 -01001111 20.51 1 -01001111 160.24-a-share 1 -01001111 14.015 1 -01001111 1,120.40 1 -01001111 285,998 1 -01001111 1,074.25 1 -01001111 667,455 1 -01001111 1,617,455 1 -01001111 86.95 1 -01001111 150,216 1 -01001111 348,200 1 -01001111 39,150 1 -01001111 11.17-a-share 1 -01001111 886,565 1 -01001111 5,765 1 -01001111 12.80-a-share 1 -01001111 28.61 1 -01001111 5,000-base-price 1 -01001111 7,926 1 -01001111 10,125 1 -01001111 22.525 1 -01001111 28,000-plus 1 -01001111 119,100 1 -01001111 100,700 1 -01001111 209,094 1 -01001111 333,057 1 -01001111 23,910 1 -01001111 22,995 1 -01001111 78,415 1 -01001111 66,083,000 1 -01001111 1,077.60 1 -01001111 12,550 1 -01001111 18-million 1 -01001111 43.617 1 -01001111 424,527 1 -01001111 60.50-a-share 1 -01001111 774,036 1 -01001111 242,350 1 -01001111 11,210,433 1 -01001111 117.75 1 -01001111 7.056 1 -01001111 512.84 1 -01001111 4-an-hour 1 -01001111 728,906 1 -01001111 3.40-an-hour 1 -01001111 1.5075 1 -01001111 512,358 1 -01001111 228,812 1 -01001111 1.88-a-share 1 -01001111 258,600 1 -01001111 26.3684 1 -01001111 15.316 1 -01001111 110.15 1 -01001111 1.2411 1 -01001111 27.648 1 -01001111 289,700 1 -01001111 2-a-gallon 1 -01001111 153,000-a-year 1 -01001111 50.60 1 -01001111 44.30 1 -01001111 146.375 1 -01001111 410.60 1 -01001111 501,807 1 -01001111 23-million-a-year 1 -01001111 636,300 1 -01001111 8,088 1 -01001111 6,978 1 -01001111 6,548 1 -01001111 7,878 1 -01001111 26.512 1 -01001111 511,011 1 -01001111 1.0803 1 -01001111 2,135 1 -01001111 13.063 1 -01001111 10.313 1 -01001111 1,380,300 1 -01001111 447,138 1 -01001111 290,564 1 -01001111 58.478 1 -01001111 55.12 1 -01001111 525.70 1 -01001111 124,800 1 -01001111 9,623 1 -01001111 105.75 1 -01001111 4,425 1 -01001111 4.6325 1 -01001111 1,091.75 1 -01001111 726,436 1 -01001111 425,557 1 -01001111 401.10 1 -01001111 405.40 1 -01001111 514.50 1 -01001111 39.60 1 -01001111 305.17 1 -01001111 305.47 1 -01001111 308.17 1 -01001111 306.40 1 -01001111 46,965 1 -01001111 42,475 1 -01001111 392.70 1 -01001111 141.375 1 -01001111 25,150 1 -01001111 24,370 1 -01001111 28-a-unit 1 -01001111 21,150 1 -01001111 731,715 1 -01001111 51,981 1 -01001111 42.70 1 -01001111 29,483 1 -01001111 41,988 1 -01001111 62,273 1 -01001111 63,231 1 -01001111 66,111 1 -01001111 67,595 1 -01001111 71,628 1 -01001111 15,510 1 -01001111 11,110 1 -01001111 8,390 1 -01001111 1,097.49 1 -01001111 72,032 1 -01001111 1.5390 1 -01001111 1.2465 1 -01001111 3,430,849 1 -01001111 139.625 1 -01001111 606,250 1 -01001111 2,702,458 1 -01001111 38,239,241 1 -01001111 995.74 1 -01001111 5,195 1 -01001111 7,095 1 -01001111 7,245 1 -01001111 7.30-a-share 1 -01001111 726,667 1 -01001111 1,107,500 1 -01001111 100,285 1 -01001111 450,298 1 -01001111 236.53 1 -01001111 WRIV 1 -01001111 5.0625 1 -01001111 27,700 1 -01001111 5,849 1 -01001111 23,508 1 -01001111 22,973 1 -01001111 10,039 1 -01001111 9,859 1 -01001111 10,415.90 1 -01001111 131.25 1 -01001111 308,900 1 -01001111 5-a-week 1 -01001111 15,475 1 -01001111 1.5188 1 -01001111 1.5180 1 -01001111 68-a-day 1 -01001111 50.68 1 -01001111 10,457 1 -01001111 27.075 1 -01001111 31-a-unit 1 -01001111 12,150 1 -01001111 85.40 1 -01001111 457,500 1 -01001111 3.3975 1 -01001111 2.7245 1 -01001111 788,042 1 -01001111 1.5213 1 -01001111 1.5290 1 -01001111 394.90 1 -01001111 11,780 1 -01001111 48.10 1 -01001111 Rifadin 1 -01001111 1,499,995 1 -01001111 1-million 1 -01001111 70.10 1 -01001111 49.40 1 -01001111 138.375 1 -01001111 50,815 1 -01001111 23,274 1 -01001111 2,787,000 1 -01001111 777,900 1 -01001111 33,861 1 -01001111 25,257 1 -01001111 628,193 1 -01001111 164.80 1 -01001111 205.70 1 -01001111 78.95 1 -01001111 1-a-ticket 1 -01001111 42.80 1 -01001111 2,700,000 1 -01001111 7,000-a-year 1 -01001111 191,800 1 -01001111 518,800 1 -01001111 601.50 1 -01001111 8.149 1 -01001111 51.254 1 -01001111 57,900 1 -01001111 102,600 1 -01001111 3,065 1 -01001111 45.26 1 -01001111 27.534 1 -01001111 31.60-a-share 1 -01001111 641,702 1 -01001111 1.6682 1 -01001111 1,045,000 1 -01001111 0.08330 1 -01001111 44,543,000 1 -01001111 232,401,000 1 -01001111 9,451 1 -01001111 111,470 1 -01001111 127.625 1 -01001111 621.80 1 -01001111 8,795 1 -01001111 10,295 1 -01001111 8,089 1 -01001111 7,748 1 -01001111 455.90 1 -01001111 8,322 1 -01001111 457.70 1 -01001111 34,470 1 -01001111 2.225 1 -01001111 14.185 1 -01001111 1,190,000 1 -01001111 17.3875 1 -01001111 4,188 1 -01001111 574.60 1 -01001111 1,226.00 1 -01001111 122.60 1 -01001111 28,738 1 -01001111 184,789 1 -01001111 119.50 1 -01001111 10,050 1 -01001111 1.6696 1 -01001111 1.26-a-share 1 -01001111 20M 1 -01001111 1,984 1 -01001111 1,572 1 -01001111 137,824,000 1 -01001111 153,497,000 1 -01001111 589.80 1 -01001111 14,461 1 -01001111 17,744 1 -01001111 18,284 1 -01001111 9,552 1 -01001111 19,208 1 -01001111 12.665 1 -01001111 835,500 1 -01001111 1.1416 1 -01001111 469.90 1 -01001111 18,580 1 -01001111 254,400 1 -01001111 269,400 1 -01001111 82,085 1 -01001111 310,525 1 -01001111 87.125 1 -01001111 1,492,000 1 -01001111 1,110.20 1 -01001111 1,127.70 1 -01001111 281,561 1 -01001111 26.581 1 -01001111 16,349 1 -01001111 6,273 1 -01001111 9,919 1 -01001111 2,251 1 -01001111 13,485 1 -01001111 19,838 1 -01001111 13.736 1 -01001111 155,496 1 -01001111 1,135,000 1 -01001111 642,421 1 -01001111 774,024 1 -01001111 551,560 1 -01001111 1.1850 1 -01001111 7.984 1 -01001111 1.6622 1 -01001111 110.29 1 -01001111 6.75-a-share 1 -01001111 29.43 1 -01001111 1,067.50 1 -01001111 1,027.60 1 -01001111 1.1587 1 -01001111 1.6978 1 -01001111 15,101 1 -01001111 12,890 1 -01001111 35.236 1 -01001111 69,279 1 -01001111 362,526 1 -01001111 32,990 1 -01001111 34,810 1 -01001111 925,300 1 -01001111 49,523 1 -01001111 41,175 1 -01001111 1,608,300 1 -01001111 13,722 1 -01001111 618,000 1 -01001111 630.50 1 -01001111 8.685 1 -01001111 4,013,000 1 -01001111 35/bbl 1 -01001111 1.6851 1 -01001111 148.02 1 -01001111 203.60 1 -01001111 134,200 1 -01001111 130,200 1 -01001111 147,500 1 -01001111 25.93 1 -01001111 7,894,000 1 -01001111 8,763,000 1 -01001111 80,000-plus 1 -01001111 395-a-month 1 -01001111 163.375 1 -01001111 12,149 1 -01001111 54,800 1 -01001111 63,270 1 -01001111 2-a-day 1 -01001111 111.80 1 -01001111 1,126.70 1 -01001111 309.37 1 -01001111 107.3-million 1 -01001111 89,538 1 -01001111 2,235,000 1 -01001111 10.435 1 -01001111 9.685 1 -01001111 457.60 1 -01001111 94,800 1 -01001111 37.58 1 -01001111 10,374 1 -01001111 456,047 1 -01001111 32,267 1 -01001111 94,450 1 -01001111 602.80 1 -01001111 33-a-barrel 1 -01001111 41,775 1 -01001111 45,960 1 -01001111 304,724 1 -01001111 8,083 1 -01001111 41,147 1 -01001111 8,682 1 -01001111 9,153 1 -01001111 61.00 1 -01001111 44,600 1 -01001111 612.20 1 -01001111 11,750 1 -01001111 908,320 1 -01001111 10.0625 1 -01001111 18,832 1 -01001111 98,832 1 -01001111 10,354,000 1 -01001111 165.36 1 -01001111 19.0956 1 -01001111 1.7186 1 -01001111 1,091.70 1 -01001111 203,500 1 -01001111 1,105.93 1 -01001111 31,475 1 -01001111 1.6073 1 -01001111 54.78 1 -01001111 473.30 1 -01001111 9.124 1 -01001111 624.60 1 -01001111 677,265 1 -01001111 822,250,000 1 -01001111 73.58 1 -01001111 17.18 1 -01001111 1.0004 1 -01001111 55,468 1 -01001111 1,857.95 1 -01001111 116.675 1 -01001111 327,889 1 -01001111 340,689 1 -01001111 472.30 1 -01001111 47,480 1 -01001111 97,853 1 -01001111 350-a-month 1 -01001111 129,014 1 -01001111 365,309 1 -01001111 8,553 1 -01001111 478.30 1 -01001111 628.00 1 -01001111 636,200 1 -01001111 307,135 1 -01001111 868,117 1 -01001111 313,814 1 -01001111 75.94 1 -01001111 156.75 1 -01001111 143,708 1 -01001111 201,890 1 -01001111 419.70 1 -01001111 368,195 1 -01001111 322,348 1 -01001111 138,667 1 -01001111 82,400 1 -01001111 63,200 1 -01001111 8.855 1 -01001111 617.70 1 -01001111 17.857 1 -01001111 1,100.31 1 -01001111 51.72 1 -01001111 27,172 1 -01001111 2,728,332 1 -01001111 7,644,228 1 -01001111 661,500 1 -01001111 470.30 1 -01001111 25.16 1 -01001111 374,300 1 -01001111 485,622 1 -01001111 1,069,547 1 -01001111 90,307 1 -01001111 5,086 1 -01001111 18,339 1 -01001111 966,764 1 -01001111 657,184 1 -01001111 31-per-unit 1 -01001111 11,741 1 -01001111 10,411 1 -01001111 1,895 1 -01001111 6-an-ounce 1 -01001111 23.47 1 -01001111 1,953,000 1 -01001111 155,781,000 1 -01001111 1,118.30 1 -01001111 116.375 1 -01001111 96,300 1 -01001111 380,273 1 -01001111 1,040,533 1 -01001111 2,125,000 1 -01001111 305.13 1 -01001111 307.28 1 -01001111 310.45 1 -01001111 564.10 1 -01001111 9,075 1 -01001111 6,011 1 -01001111 2,306 1 -01001111 94.375 1 -01001111 3,113 1 -01001111 56.43 1 -01001111 36.43 1 -01001111 151,775 1 -01001111 206,770 1 -01001111 125,478 1 -01001111 474.80 1 -01001111 23,597 1 -01001111 28-as-hare 1 -01001111 47,050 1 -01001111 350-a-night 1 -01001111 47,620 1 -01001111 45.62 1 -01001111 1.0997 1 -01001111 584.50 1 -01001111 72,300-a-year 1 -01001111 486,225 1 -01001111 1,038,919.33 1 -01001111 1.6254 1 -01001111 147.625 1 -01001111 746.14 1 -01001111 144,500 1 -01001111 402,797 1 -01001111 63,317.02 1 -01001111 13,432 1 -01001111 22,439 1 -01001111 694,137 1 -01001111 44,925 1 -01001111 301,800 1 -01001111 119,669 1 -01001111 45,561 1 -01001111 147,180 1 -01001111 9,458 1 -01001111 5,629 1 -01001111 55,943 1 -01001111 3,453 1 -01001111 655,356 1 -01001111 448.58 1 -01001111 465.60 1 -01001111 617.10 1 -01001111 8,169 1 -01001111 10,648 1 -01001111 591.90 1 -01001111 370,0000 1 -01001111 11,076 1 -01001111 8,645 1 -01001111 10,690 1 -01001111 12,013 1 -01001111 8,474 1 -01001111 6,107 1 -01001111 9,918 1 -01001111 379,159 1 -01001111 432.25 1 -01001111 18,650 1 -01001111 363,931 1 -01001111 7,970,000 1 -01001111 20,460 1 -01001111 607.70 1 -01001111 2,000-a-day 1 -01001111 66,026 1 -01001111 53,063 1 -01001111 394,492 1 -01001111 31,057 1 -01001111 123,517 1 -01001111 251.82 1 -01001111 350.03 1 -01001111 357.58 1 -01001111 1,052.86 1 -01001111 103.79 1 -01001111 267,750 1 -01001111 501,530 1 -01001111 923,000 1 -01001111 1.09375 1 -01001111 91.875 1 -01001111 330,468 1 -01001111 1,003,229 1 -01001111 567.10 1 -01001111 6.765 1 -01001111 1.0250 1 -01001111 363,388 1 -01001111 70,196 1 -01001111 1.6240 1 -01001111 26,967 1 -01001111 29,440 1 -01001111 13,483 1 -01001111 400,100 1 -01001111 54.27 1 -01001111 438,202 1 -01001111 106,131 1 -01001111 561,900 1 -01001111 147.59 1 -01001111 102.04 1 -01001111 6.18-an-ounce 1 -01001111 6.603 1 -01001111 23.428 1 -01001111 2.2-billion 1 -01001111 32,840 1 -01001111 3.8956 1 -01001111 1.3615 1 -01001111 6.888 1 -01001111 504,491 1 -01001111 1.2354 1 -01001111 949,829 1 -01001111 128,024 1 -01001111 381,218 1 -01001111 2,393,000 1 -01001111 10,481 1 -01001111 365,883 1 -01001111 400,662 1 -01001111 962,912 1 -01001111 15,630 1 -01001111 31,125 1 -01001111 412,355 1 -01001111 44.05 1 -01001111 794,727 1 -01001111 447,740 1 -01001111 1,527,043 1 -01001111 582.40 1 -01001111 106,944 1 -01001111 439,887 1 -01001111 80,741 1 -01001111 26.25-a-share 1 -01001111 28-per-share 1 -01001111 3,585 1 -01001111 589,800 1 -01001111 67-a-week 1 -01001111 2,245,000 1 -01001111 3.312 1 -01001111 117,513 1 -01001111 9-a-ticket 1 -01001111 34.56 1 -01001111 1.146 1 -01001111 157.625 1 -01001111 260,400 1 -01001111 817,200 1 -01001111 49.33 1 -01001111 110,863 1 -01001111 1.1222 1 -01001111 583.70 1 -01001111 12,368 1 -01001111 12,468 1 -01001111 6,456 1 -01001111 6,918 1 -01001111 463.70 1 -01001111 1.6647 1 -01001111 1.6665 1 -01001111 1.6562 1 -01001111 35.54 1 -01001111 457,111 1 -01001111 586.30 1 -01001111 7.796 1 -01001111 22,721 1 -01001111 118,800 1 -01001111 966,759 1 -01001111 200-a-month 1 -01001111 1,105.20 1 -01001111 1,066.60 1 -01001111 96,127 1 -01001111 438,819 1 -01001111 382.4 1 -01001111 60.67 1 -01001111 1.1444 1 -01001111 7.415 1 -01001111 250,031 1 -01001111 100,000-a-day 1 -01001111 15,394,000 1 -01001111 42.29 1 -01001111 35.17 1 -01001111 541,667 1 -01001111 124,000-a-year 1 -01001111 453.80 1 -01001111 72,242 1 -01001111 139,133 1 -01001111 861,327 1 -01001111 561,125 1 -01001111 188,300 1 -01001111 12-a-day 1 -01001111 133,700 1 -01001111 119,224 1 -01001111 182,039 1 -01001111 605,984 1 -01001111 15-20M 1 -01001111 1.6480 1 -01001111 1,485,000 1 -01001111 813,450 1 -01001111 618.30 1 -01001111 7.785 1 -01001111 549,028 1 -01001111 288,254 1 -01001111 7,725 1 -01001111 45-million 1 -01001111 465.30 1 -01001111 9,500-a-year 1 -01001111 540,871 1 -01001111 122.80 1 -01001111 19.938 1 -01001111 14.188 1 -01001111 47,450 1 -01001111 50,450 1 -01001111 171,400 1 -01001111 172.125 1 -01001111 22,341 1 -01001111 10,395 1 -01001111 4,899 1 -01001111 1,461,000 1 -01001111 205.375 1 -01001111 210.50 1 -01001111 10,000-an-acre 1 -01001111 7,324 1 -01001111 7,758,000 1 -01001111 1.6527 1 -01001111 244,361 1 -01001111 70,120 1 -01001111 7,460,000 1 -01001111 30,403 1 -01001111 166,953 1 -01001111 196,800 1 -01001111 165.125 1 -01001111 404,198 1 -01001111 840,851 1 -01001111 205,152 1 -01001111 647,036 1 -01001111 30.22 1 -01001111 372,736 1 -01001111 601,467 1 -01001111 78,569 1 -01001111 355,235 1 -01001111 4,111,000 1 -01001111 166.125 1 -01001111 12,499 1 -01001111 12,649 1 -01001111 10,799 1 -01001111 10,949 1 -01001111 1.5840 1 -01001111 1.6000 1 -01001111 159.625 1 -01001111 484,600 1 -01001111 39,750 1 -01001111 576.70 1 -01001111 172.61 1 -01001111 496.52 1 -01001111 256.81 1 -01001111 452.60 1 -01001111 250-a-person 1 -01001111 1,071.88 1 -01001111 713,795 1 -01001111 400,119 1 -01001111 91.47 1 -01001111 1.895 1 -01001111 1.83125 1 -01001111 824,600,000 1 -01001111 1,036.06 1 -01001111 135,500 1 -01001111 129,200 1 -01001111 36,308 1 -01001111 61.10 1 -01001111 80.30 1 -01001111 131,815 1 -01001111 163,465 1 -01001111 83,407 1 -01001111 782,176 1 -01001111 23.35 1 -01001111 12,820 1 -01001111 18,197 1 -01001111 447.80 1 -01001111 7,395 1 -01001111 1,424 1 -01001111 2,281 1 -01001111 10,416.67 1 -01001111 497.10 1 -01001111 1.8378 1 -01001111 475,700 1 -01001111 44.825 1 -01001111 541,100 1 -01001111 12.745 1 -01001111 380,800 1 -01001111 159.95 1 -01001111 501.70 1 -01001111 5,789 1 -01001111 11,982 1 -01001111 5,932 1 -01001111 23.084 1 -01001111 1.8382 1 -01001111 600-billion 1 -01001111 12,766 1 -01001111 303,589 1 -01001111 603,192 1 -01001111 307,784 1 -01001111 894,498 1 -01001111 6.978 1 -01001111 30-a-hundred-weight 1 -01001111 6.139 1 -01001111 4.4643 1 -01001111 4.461 1 -01001111 1,000-a-person 1 -01001111 3.2-billion 1 -01001111 14,000-a-year 1 -01001111 52,174 1 -01001111 22,737,370 1 -01001111 22,729,000 1 -01001111 926,000 1 -01001111 879,000 1 -01001111 5,215 1 -01001111 28,400 1 -01001111 75-odd 1 -01001111 488.80 1 -01001111 299,061 1 -01001111 13,698,056 1 -01001111 215,050 1 -01001111 722,272 1 -01001111 14,079 1 -01001111 532,815 1 -01001111 103,375 1 -01001111 971,289 1 -01001111 340,338 1 -01001111 950,287 1 -01001111 417,472 1 -01001111 484.50 1 -01001111 1.8052 1 -01001111 45,362 1 -01001111 73,851 1 -01001111 1.042 1 -01001111 59,790,000 1 -01001111 422.41 1 -01001111 621.49 1 -01001111 824,000 1 -01001111 3,379 1 -01001111 15,966 1 -01001111 1,342.30 1 -01001111 800,000-plus 1 -01001111 1.52-a-share 1 -01001111 105,806 1 -01001111 118,363 1 -01001111 12,400-per-interest 1 -01001111 840,767 1 -01001111 80,001 1 -01001111 54,001 1 -01001111 8,088,000 1 -01001111 890,497 1 -01001111 40-billion 1 -01001111 102,668 1 -01001111 1.0694 1 -01001111 57.95 1 -01001111 50-and-up 1 -01001111 22,688 1 -01001111 5,848 1 -01001111 10,668 1 -01001111 13,344 1 -01001111 54.30 1 -01001111 32.97 1 -01001111 89,500-a-year 1 -01001111 40,760.86 1 -01001111 8,149 1 -01001111 17,226 1 -01001111 158.875 1 -01001111 140,300 1 -01001111 2.375-a-share 1 -01001111 6,760 1 -01001111 471,200 1 -01001111 348,719 1 -01001111 25-a-barrel 1 -01001111 50-an-employee 1 -01001111 suburb-to-city 1 -01001111 479.80 1 -01001111 316.54 1 -01001111 140,912 1 -01001111 424,123,000 1 -01001111 133,843,000 1 -01001111 501,021 1 -01001111 1.8355 1 -01001111 475,000-a-year 1 -01001111 491.10 1 -01001111 6.756 1 -01001111 6.915 1 -01001111 48.064 1 -01001111 357,542 1 -01001111 70,351 1 -01001111 735,382 1 -01001111 604,500 1 -01001111 4,998 1 -01001111 639,096 1 -01001111 1,870.38 1 -01001111 189.99 1 -01001111 160-ashare 1 -01001111 2.32-a-share 1 -01001111 1.8318 1 -01001111 7.0781 1 -01001111 662,700,000 1 -01001111 25,105 1 -01001111 520.90 1 -01001111 400,200 1 -01001111 22,062 1 -01001111 34,547 1 -01001111 310,500 1 -01001111 28.689 1 -01001111 75,350 1 -01001111 70,600 1 -01001111 233,321 1 -01001111 2,677,000 1 -01001111 3,165,000 1 -01001111 987,799 1 -01001111 901,453 1 -01001111 33,000-plus 1 -01001111 811,002 1 -01001111 152,839 1 -01001111 58,000-a-year 1 -01001111 22,000-a-year 1 -01001111 200,000-a-year 1 -01001111 50,000-per-farm 1 -01001111 468,722 1 -01001111 35,652 1 -01001111 410.90 1 -01001111 18,784,000 1 -01001111 717.0 1 -01001111 157,704 1 -01001111 8.98-a-share 1 -01001111 482,665 1 -01001111 172,750 1 -01001111 19,029 1 -01001111 152,823 1 -01001111 188,922 1 -01001111 133,794 1 -01001111 422,650 1 -01001111 526,299 1 -01001111 313,599 1 -01001111 1.4765 1 -01001111 1.4867 1 -01001111 17.535 1 -01001111 1,017.90 1 -01001111 15,000-a-year 1 -01001111 412.30 1 -01001111 52.90 1 -01001111 530.70 1 -01001111 687,446 1 -01001111 4,118,000 1 -01001111 508,257,000 1 -01001111 43.05 1 -01001111 21.935 1 -01001111 5,550,000 1 -01001111 828,266 1 -01001111 993,907 1 -01001111 68,116,000 1 -01001111 406.20 1 -01001111 9.13-a-share 1 -01001111 228,688 1 -01001111 271,312 1 -01001111 151.50 1 -01001111 80,712 1 -01001111 6,378 1 -01001111 1.4860 1 -01001111 1,052.50 1 -01001111 1,118.75 1 -01001111 777,959 1 -01001111 54,555 1 -01001111 7,190 1 -01001111 8,178 1 -01001111 154,165 1 -01001111 0.028169 1 -01001111 480,154 1 -01001111 173,185 1 -01001111 4,555 1 -01001111 48,155 1 -01001111 11,860 1 -01001111 600-and-up 1 -01001111 79,400 1 -01001111 1,448,000 1 -01001111 29,400 1 -01001111 1.4728 1 -01001111 28.62 1 -01001111 5,912,711 1 -01001111 5,870,304 1 -01001111 402.90 1 -01001111 1.4885 1 -01001111 612,600 1 -01001111 180-a-share 1 -01001111 457,350 1 -01001111 133,200 1 -01001111 95,050 1 -01001111 24.935 1 -01001111 102,700 1 -01001111 1,867 1 -01001111 460,800 1 -01001111 390,144 1 -01001111 1,084.25 1 -01001111 243,500 1 -01001111 320-million-grossing 1 -01001111 37,986 1 -01001111 30,504 1 -01001111 415.70 1 -01001111 3,730 1 -01001111 410.30 1 -01001111 460,350 1 -01001111 4,583 1 -01001111 6,944 1 -01001111 1.13249 1 -01001111 42.22 1 -01001111 4,121 1 -01001111 16,841 1 -01001111 18,544 1 -01001111 25,644 1 -01001111 1.5245 1 -01001111 1.5231 1 -01001111 110.50 1 -01001111 979,000 1 -01001111 1,656,000 1 -01001111 64.34 1 -01001111 10,479 1 -01001111 10,693 1 -01001111 9,965 1 -01001111 387,858 1 -01001111 1,000-a-month 1 -01001111 1,157.98 1 -01001111 1,117.51 1 -01001111 1,141.88 1 -01001111 4,788,000 1 -01001111 250,011 1 -01001111 8,425,000 1 -01001111 3,014 1 -01001111 11-a-day 1 -01001111 9.64-a-share 1 -01001111 7.71-a-share 1 -01001111 96-a-week 1 -01001111 60-a-week 1 -01001111 demystifying 1 -01001111 53,547 1 -01001111 416.30 1 -01001111 412.66 1 -01001111 392,700 1 -01001111 309,517 1 -01001111 105,016 1 -01001111 250-an-hour 1 -01001111 415.90 1 -01001111 5,688 1 -01001111 7.50-a-unit 1 -01001111 893,117 1 -01001111 72,593 1 -01001111 127,906 1 -01001111 2,940,000 1 -01001111 7,482 1 -01001111 1,778 1 -01001111 5,512 1 -01001111 5,561 1 -01001111 59,251 1 -01001111 2,119,400 1 -01001111 1.2525 1 -01001111 519.50 1 -01001111 5.515 1 -01001111 5s 1 -01001111 730,800 1 -01001111 1,388,600 1 -01001111 1,474.45 1 -01001111 82,802 1 -01001111 307.98 1 -01001111 6-a-ton 1 -01001111 632,705 1 -01001111 422.40 1 -01001111 1.5191 1 -01001111 1.5340 1 -01001111 155.50 1 -01001111 423.40 1 -01001111 279,300 1 -01001111 1,086.11 1 -01001111 17.325 1 -01001111 40.61 1 -01001111 20-and-up 1 -01001111 690,250 1 -01001111 409,715 1 -01001111 43,180 1 -01001111 339,344 1 -01001111 265,199 1 -01001111 623,803 1 -01001111 342,583 1 -01001111 2,048,700 1 -01001111 7,657 1 -01001111 22.635 1 -01001111 673,800 1 -01001111 957,770 1 -01001111 437,444 1 -01001111 1,166.25 1 -01001111 26,698 1 -01001111 41,700 1 -01001111 144,470 1 -01001111 190,723 1 -01001111 20,250 1 -01001111 10,898 1 -01001111 8,898 1 -01001111 5,948 1 -01001111 435,611 1 -01001111 16,949 1 -01001111 11,899 1 -01001111 11,649 1 -01001111 578.50 1 -01001111 369.50 1 -01001111 104.75 1 -01001111 2,562,000 1 -01001111 1,655,000 1 -01001111 601.60 1 -01001111 411.35 1 -01001111 55.82 1 -01001111 43,562,000 1 -01001111 43,599,000 1 -01001111 16.5248 1 -01001111 997,486 1 -01001111 11,230 1 -01001111 10-a-unit 1 -01001111 1.6603 1 -01001111 insincerely 1 -01001111 135,925 1 -01001111 11,024 1 -01001111 10,875 1 -01001111 103.125 1 -01001111 456.05 1 -01001111 1.50. 1 -01001111 1,847 1 -01001111 134,600 1 -01001111 11,666 1 -01001111 19,509 1 -01001111 16,612 1 -01001111 7,938 1 -01001111 50,025 1 -01001111 255,199 1 -01001111 101,131 1 -01001111 48,507 1 -01001111 19.13 1 -01001111 456.80 1 -01001111 3,146 1 -01001111 2,136 1 -01001111 40,377,000 1 -01001111 10,096 1 -01001111 43.15 1 -01001111 1,391,000 1 -01001111 467.30 1 -01001111 239.75 1 -01001111 1,377 1 -01001111 244,960 1 -01001111 48.125-a-share 1 -01001111 300,232 1 -01001111 200,076 1 -01001111 137,268 1 -01001111 38.73 1 -01001111 1,458.33 1 -01001111 1,022,539 1 -01001111 740,352 1 -01001111 127,605 1 -01001111 47.94 1 -01001111 54.90 1 -01001111 1,858 1 -01001111 29,750 1 -01001111 2.90-a-share 1 -01001111 96-a-share 1 -01001111 482,667 1 -01001111 4-a-year 1 -01001111 41.628 1 -01001111 40,412,692 1 -01001111 4,299,000 1 -01001111 81.625 1 -01001111 1,055.63 1 -01001111 612,700 1 -01001111 47.91 1 -01001111 362,710 1 -01001111 212.50 1 -01001111 1.4617 1 -01001111 2,244,200 1 -01001111 15,000,000 1 -01001111 39,204 1 -01001111 2,025,888 1 -01001111 64,800 1 -01001111 2,341,000 1 -01001111 43.25-a-share 1 -01001111 3,237,193 1 -01001111 41.79 1 -01001111 421,874 1 -01001111 403,784 1 -01001111 105,463 1 -01001111 14.954 1 -01001111 8,503 1 -01001111 11,610 1 -01001111 10,766 1 -01001111 81,110 1 -01001111 175-a-person 1 -01001111 109.125 1 -01001111 1,224,000 1 -01001111 1,202,000 1 -01001111 7.677 1 -01001111 1.1549 1 -01001111 cama 1 -01001111 1.56-a-share 1 -01001111 32,739 1 -01001111 37,481 1 -01001111 6,375,000 1 -01001111 392.90 1 -01001111 393,000 1 -01001111 305.36 1 -01001111 308.52 1 -01001111 1,406 1 -01001111 400,914 1 -01001111 3,029,000 1 -01001111 39.87 1 -01001111 5,547 1 -01001111 44,376,000 1 -01001111 394.80 1 -01001111 283,783 1 -01001111 60.94 1 -01001111 705,850 1 -01001111 12,036 1 -01001111 22,755 1 -01001111 745,901 1 -01001111 236,755 1 -01001111 13,170 1 -01001111 1,440,000 1 -01001111 400,000-a-month 1 -01001111 979,003 1 -01001111 827,982 1 -01001111 1.5670 1 -01001111 27.05 1 -01001111 32,005 1 -01001111 33,648 1 -01001111 26-a-month 1 -01001111 84,800 1 -01001111 150.125 1 -01001111 10.93-a-share 1 -01001111 286,870 1 -01001111 200,445 1 -01001111 200,784 1 -01001111 201,930 1 -01001111 2,300-a-dose 1 -01001111 144,569 1 -01001111 74,812.50 1 -01001111 153,068 1 -01001111 8,779 1 -01001111 9,239 1 -01001111 7,349 1 -01001111 12,579 1 -01001111 611,200 1 -01001111 279-a-pair 1 -01001111 447.30 1 -01001111 1.32-a-share 1 -01001111 68,662.50 1 -01001111 239,375 1 -01001111 2,626,278 1 -01001111 763,364 1 -01001111 26,554 1 -01001111 40,424 1 -01001111 28,031 1 -01001111 900,938 1 -01001111 29,203 1 -01001111 440,200 1 -01001111 904,900 1 -01001111 94,023 1 -01001111 189,951 1 -01001111 7,634 1 -01001111 80,300 1 -01001111 81,800 1 -01001111 168,800 1 -01001111 462,003 1 -01001111 162,400 1 -01001111 857,227 1 -01001111 749,482 1 -01001111 107,745 1 -01001111 275,000-a-year 1 -01001111 450.10 1 -01001111 l8,758 1 -01001111 7,952 1 -01001111 539.50 1 -01001111 6.5450 1 -01001111 634,262 1 -01001111 3,344,352 1 -01001111 441.60 1 -01001111 456.40 1 -01001111 542.50 1 -01001111 10.296 1 -01001111 38.20-an-ounce 1 -01001111 7.250 1 -01001111 10,402 1 -01001111 240,600 1 -01001111 684,713 1 -01001111 295,296 1 -01001111 128,663 1 -01001111 12,913 1 -01001111 5,066,904 1 -01001111 5,070,029 1 -01001111 298,421 1 -01001111 8,695 1 -01001111 258,851 1 -01001111 7,225 1 -01001111 1,008,000 1 -01001111 184,770 1 -01001111 189,361 1 -01001111 389,263 1 -01001111 1,000-for-everyone 1 -01001111 1,000-a-seat 1 -01001111 407,500 1 -01001111 1,104.81 1 -01001111 11,142 1 -01001111 18.50-per-share 1 -01001111 928,522 1 -01001111 1.309 1 -01001111 74,850 1 -01001111 147,300 1 -01001111 18,000. 1 -01001111 165,900 1 -01001111 1,200-a-car 1 -01001111 12.40-a-share 1 -01001111 1,034,438 1 -01001111 21,091 1 -01001111 346.50 1 -01001111 111.625 1 -01001111 307,500 1 -01001111 941,900 1 -01001111 5.335 1 -01001111 5.095 1 -01001111 530,800 1 -01001111 897,969 1 -01001111 758,729 1 -01001111 832,240 1 -01001111 4,888 1 -01001111 857,100 1 -01001111 845,700 1 -01001111 300,940 1 -01001111 164,025 1 -01001111 158.125 1 -01001111 282,962 1 -01001111 151.625 1 -01001111 1.328 1 -01001111 28,332 1 -01001111 2,883.60 1 -01001111 20,550 1 -01001111 177,800 1 -01001111 59,202 1 -01001111 310,276 1 -01001111 823,500 1 -01001111 680,287 1 -01001111 28,125 1 -01001111 86,134 1 -01001111 82,440 1 -01001111 75,978 1 -01001111 63,339 1 -01001111 78,300 1 -01001111 129,775 1 -01001111 3,745 1 -01001111 3,161 1 -01001111 992,017 1 -01001111 952,500 1 -01001111 151,115 1 -01001111 66,987 1 -01001111 8.3875 1 -01001111 1.8729 1 -01001111 74,692 1 -01001111 49,990 1 -01001111 163,340 1 -01001111 21,990 1 -01001111 59,179 1 -01001111 11,583,553 1 -01001111 11,702 1 -01001111 18,683 1 -01001111 805.50 1 -01001111 515.90 1 -01001111 106,034 1 -01001111 88,414 1 -01001111 7,309 1 -01001111 665,869 1 -01001111 652,361 1 -01001111 11,333 1 -01001111 743.45 1 -01001111 365.40 1 -01001111 473.50 1 -01001111 1.2895 1 -01001111 279,711 1 -01001111 2,126,000 1 -01001111 24,100 1 -01001111 526.20 1 -01001111 181,700 1 -01001111 9,088,000 1 -01001111 105,121 1 -01001111 65,836,000 1 -01001111 1,026,000 1 -01001111 22,195 1 -01001111 8,669 1 -01001111 6,269 1 -01001111 22,094.93 1 -01001111 791,500 1 -01001111 517,066 1 -01001111 cliff-hanging 1 -01001111 2,379,000 1 -01001111 2,511,000 1 -01001111 22.45 1 -01001111 254,409 1 -01001111 850.27 1 -01001111 377,620 1 -01001111 1.2375 1 -01001111 25,892 1 -01001111 84,884 1 -01001111 2,855 1 -01001111 369.30 1 -01001111 5,075 1 -01001111 108,957 1 -01001111 445.40 1 -01001111 1,942,782 1 -01001111 163.625 1 -01001111 376.60 1 -01001111 5,001,485 1 -01001111 483,600 1 -01001111 1.3553 1 -01001111 306.56 1 -01001111 1.6050 1 -01001111 11,499 1 -01001111 17,499 1 -01001111 447.20 1 -01001111 801,600 1 -01001111 1.256 1 -01001111 63.47 1 -01001111 69.08 1 -01001111 2.25-a-share 1 -01001111 26,983 1 -01001111 822,093 1 -01001111 292,403 1 -01001111 45.598 1 -01001111 1.2670 1 -01001111 101,100 1 -01001111 445.60 1 -01001111 11.375-a-share 1 -01001111 95.20 1 -01001111 5.2150 1 -01001111 8,535 1 -01001111 10,459 1 -01001111 13,593 1 -01001111 59,453 1 -01001111 187,839 1 -01001111 186,043 1 -01001111 2,145 1 -01001111 6,784 1 -01001111 4,703 1 -01001111 53,019 1 -01001111 209,358 1 -01001111 100-a-person 1 -01001111 185-a-person 1 -01001111 657,658 1 -01001111 415.84-a-month 1 -01001111 16-a-common-share 1 -01001111 229,725 1 -01001111 374,017 1 -01001111 230,324 1 -01001111 2-per-unit 1 -01001111 1.343 1 -01001111 3.675 1 -01001111 1.3801 1 -01001111 231,300 1 -01001111 1,255 1 -01001111 2,168 1 -01001111 1,059.50 1 -01001111 1,092.79 1 -01001111 2,147.49 1 -01001111 27,000-a-year 1 -01001111 12,270 1 -01001111 8,329 1 -01001111 5,373,322 1 -01001111 11,361,046 1 -01001111 576,720 1 -01001111 270,800 1 -01001111 290,871 1 -01001111 240,245,000 1 -01001111 87,136 1 -01001111 2,004.23 1 -01001111 2,593.74 1 -01001111 1,593.74 1 -01001111 3,699 1 -01001111 15,565 1 -01001111 24,915 1 -01001111 4,912 1 -01001111 1,213 1 -01001111 46,600 1 -01001111 148.25 1 -01001111 1,566,000 1 -01001111 70,000-a-year 1 -01001111 1.0650 1 -01001111 1.3832 1 -01001111 2.5725 1 -01001111 227,800 1 -01001111 3.28-a-share 1 -01001111 4,486,969 1 -01001111 40,000-a-month 1 -01001111 5,280,825 1 -01001111 2,293,408 1 -01001111 54,391,453.80 1 -01001111 26,295,590 1 -01001111 2,655,800 1 -01001111 231,548 1 -01001111 191,071 1 -01001111 91,054 1 -01001111 93,959 1 -01001111 233,637 1 -01001111 60-billion-a-year 1 -01001111 614.50 1 -01001111 1.7952 1 -01001111 446,700 1 -01001111 717,564 1 -01001111 773,260 1 -01001111 1.7810 1 -01001111 1.7838 1 -01001111 16.50-a 1 -01001111 1.2785 1 -01001111 39.5625 1 -01001111 136,749 1 -01001111 274,712 1 -01001111 953,730 1 -01001111 695,400 1 -01001111 106,175 1 -01001111 1.8574 1 -01001111 1.7964 1 -01001111 5,445 1 -01001111 25,414,000 1 -01001111 514,800 1 -01001111 71,901 1 -01001111 89,561 1 -01001111 43,151 1 -01001111 1,557 1 -01001111 24.063 1 -01001111 1.0175 1 -01001111 l.02 1 -01001111 7.3050 1 -01001111 1.3488 1 -01001111 186,774 1 -01001111 6,272,786 1 -01001111 1,641,000 1 -01001111 325-a-year 1 -01001111 58,800 1 -01001111 1.712 1 -01001111 112,890 1 -01001111 85,100 1 -01001111 659,725,000 1 -01001111 1.003 1 -01001111 1,950,000,000 1 -01001111 1.430 1 -01001111 47,800 1 -01001111 5,578 1 -01001111 222,500 1 -01001111 12.625-a-share 1 -01001111 88,200 1 -01001111 138,200 1 -01001111 73,500 1 -01001111 1.0750 1 -01001111 1.4072 1 -01001111 8.3125 1 -01001111 35-40 1 -01001111 5.243 1 -01001111 1.2545 1 -01001111 300-an-hour 1 -01001111 156.25 1 -01001111 19.53125 1 -01001111 6,772 1 -01001111 964,000-a-year 1 -01001111 1.60-a-year 1 -01001111 1,108.10 1 -01001111 141,100 1 -01001111 5.3750 1 -01001111 372,417 1 -01001111 734,843 1 -01001111 1.2280 1 -01001111 126,868 1 -01001111 50-plus-per-ton 1 -01001111 489.80 1 -01001111 5.235 1 -01001111 1.5800 1 -01001111 2,065 1 -01001111 60-a-night 1 -01001111 471,176 1 -01001111 93.625 1 -01001111 21,955,000 1 -01001111 11,855,000 1 -01001111 7.3125 1 -01001111 WNRW-TV 1 -01001111 3,481 1 -01001111 2.183 1 -01001111 30-a-day 1 -01001111 .72 1 -01001111 1,970,625 1 -01001111 8,908 1 -01001111 8,597 1 -01001111 433,400 1 -01001111 60,100 1 -01001111 40,531 1 -01001111 475,500 1 -01001111 700,169 1 -01001111 171,090 1 -01001111 38-a-unit 1 -01001111 3.40-a-share 1 -01001111 12.30-an-ounce 1 -01001111 25.916 1 -01001111 39.666 1 -01001111 8,670,000 1 -01001111 30,228 1 -01001111 17,108 1 -01001111 28.87-a-share 1 -01001111 6.7950 1 -01001111 0.363 1 -01001111 5.6546 1 -01001111 239,893 1 -01001111 579.40 1 -01001111 44.49 1 -01001111 2,855,000 1 -01001111 597.50 1 -01001111 590.60 1 -01001111 539,717 1 -01001111 65-a-month 1 -01001111 458.20 1 -01001111 6.6750 1 -01001111 557.50 1 -01001111 241,405 1 -01001111 1,068.25 1 -01001111 1.15-a-share 1 -01001111 3.965 1 -01001111 465,600 1 -01001111 310,387 1 -01001111 39,575 1 -01001111 9,825 1 -01001111 13,678 1 -01001111 4,032 1 -01001111 2.5-billion 1 -01001111 5,270 1 -01001111 4,868 1 -01001111 1,084.38 1 -01001111 1,558,000 1 -01001111 257,258 1 -01001111 51,887,168 1 -01001111 567,890 1 -01001111 466,034 1 -01001111 30-a-barrel 1 -01001111 144,241 1 -01001111 317.06 1 -01001111 320.86 1 -01001111 522,650 1 -01001111 112,390,000 1 -01001111 7,784 1 -01001111 87,710 1 -01001111 83,943 1 -01001111 16.625-a-share 1 -01001111 626,650 1 -01001111 5,121,000 1 -01001111 86.20 1 -01001111 25,000-a-month 1 -01001111 42,777,000 1 -01001111 2,409,000 1 -01001111 2,411,000 1 -01001111 600,000-a-year 1 -01001111 22.47 1 -01001111 1.5723 1 -01001111 507.50 1 -01001111 11,883 1 -01001111 13,776 1 -01001111 473.16 1 -01001111 5,583 1 -01001111 22,330 1 -01001111 771,428 1 -01001111 27.15 1 -01001111 2-million 1 -01001111 462.40 1 -01001111 6.8650 1 -01001111 3,337,000 1 -01001111 3,167,000 1 -01001111 75-80 1 -01001111 110,500 1 -01001111 91.90 1 -01001111 47.80 1 -01001111 634,839 1 -01001111 10,298 1 -01001111 14,411 1 -01001111 610.90 1 -01001111 615.70 1 -01001111 33.70 1 -01001111 1.3377 1 -01001111 13,700,000 1 -01001111 1.813 1 -01001111 584.00 1 -01001111 2,395,413 1 -01001111 3,882,046 1 -01001111 3,990,503 1 -01001111 7,629 1 -01001111 162,248 1 -01001111 15,799 1 -01001111 147,350 1 -01001111 17.71-a-share 1 -01001111 6,975,000 1 -01001111 78.84 1 -01001111 16.59-a-share 1 -01001111 28.1256 1 -01001111 61,800 1 -01001111 8,000-a-year 1 -01001111 456,499 1 -01001111 4,947.75 1 -01001111 390,600 1 -01001111 1.7535 1 -01001111 581,665 1 -01001111 612,631 1 -01001111 8.735 1 -01001111 251,711 1 -01001111 478,645 1 -01001111 10.125-a-share 1 -01001111 24,348 1 -01001111 982.50 1 -01001111 190,565 1 -01001111 8,750,000 1 -01001111 16,690 1 -01001111 14,330 1 -01001111 14,820 1 -01001111 1.273 1 -01001111 5,000-plus 1 -01001111 598,412 1 -01001111 11.75-a-share 1 -01001111 835,800 1 -01001111 778,200 1 -01001111 948,894 1 -01001111 6,635 1 -01001111 13,140 1 -01001111 12,810 1 -01001111 11,150 1 -01001111 8,895 1 -01001111 9,145 1 -01001111 461,610 1 -01001111 150-a-plate 1 -01001111 556,036 1 -01001111 3,579,000 1 -01001111 69,380 1 -01001111 26,560 1 -01001111 178,314 1 -01001111 219,819 1 -01001111 125-a-head 1 -01001111 24,545,000 1 -01001111 17.09-a-share 1 -01001111 53- 1 -01001111 90,940 1 -01001111 191,172 1 -01001111 75,131 1 -01001111 13.806 1 -01001111 8.695 1 -01001111 201,100 1 -01001111 174,399 1 -01001111 41,485,000 1 -01001111 11,225,000 1 -01001111 336,312 1 -01001111 143,761 1 -01001111 1,515.15 1 -01001111 347,565 1 -01001111 337,570,000 1 -01001111 12.75-a-share 1 -01001111 107-a-share 1 -01001111 1,547 1 -01001111 339,821 1 -01001111 280.25 1 -01001111 37,790 1 -01001111 39,880 1 -01001111 16,585 1 -01001111 45-by 1 -01001111 6.447 1 -01001111 6,747 1 -01001111 7,127 1 -01001111 92,800 1 -01001111 8,977 1 -01001111 9,093 1 -01001111 6,586 1 -01001111 40.93 1 -01001111 15,074 1 -01001111 3,166,825 1 -01001111 109,400 1 -01001111 7,358 1 -01001111 1.6260 1 -01001111 1,014.26 1 -01001111 1,072.50 1 -01001111 1.8302 1 -01001111 62.48 1 -01001111 288.75 1 -01001111 9,156 1 -01001111 33,245 1 -01001111 6,345 1 -01001111 12.50-a-gallon 1 -01001111 138,850 1 -01001111 243,075 1 -01001111 53,398,497 1 -01001111 120-million 1 -01001111 129,374 1 -01001111 554,806 1 -01001111 16,897,000 1 -01001111 1,127,000 1 -01001111 2.188 1 -01001111 24,215,000 1 -01001111 27,685,000 1 -01001111 82,332 1 -01001111 110,800 1 -01001111 1.5650 1 -01001111 3,333,334 1 -01001111 423,990 1 -01001111 1,205,000 1 -01001111 214,488 1 -01001111 17,975 1 -01001111 1.0325 1 -01001111 304,999 1 -01001111 840,896 1 -01001111 315.77 1 -01001111 35,700 1 -01001111 95,000-a-year 1 -01001111 158.08 1 -01001111 867.50 1 -01001111 13,810 1 -01001111 32,928 1 -01001111 156.375 1 -01001111 2,852 1 -01001111 757,720 1 -01001111 9,133.35 1 -01001111 27,660,000 1 -01001111 4,994,000 1 -01001111 4.2-billion 1 -01001111 514,558 1 -01001111 2.205 1 -01001111 269,131 1 -01001111 60,961 1 -01001111 1,813,414 1 -01001111 1,920,226 1 -01001111 472,896 1 -01001111 721,330 1 -01001111 300,809 1 -01001111 8,581 1 -01001111 187,316 1 -01001111 66,912 1 -01001111 44,910 1 -01001111 31,497 1 -01001111 20,535 1 -01001111 1,203.50 1 -01001111 199,500 1 -01001111 15.45-a-share 1 -01001111 25,720 1 -01001111 65,400 1 -01001111 7,614 1 -01001111 1,140,335 1 -01001111 840,300 1 -01001111 604,215 1 -01001111 207,610 1 -01001111 650-million 1 -01001111 26,250 1 -01001111 24.1-million 1 -01001111 36,250 1 -01001111 488,990 1 -01001111 7,374 1 -01001111 222,187 1 -01001111 296,981 1 -01001111 1.8705 1 -01001111 977,086 1 -01001111 192,370 1 -01001111 900,730 1 -01001111 2,448,400.66 1 -01001111 19,630 1 -01001111 16,672 1 -01001111 59.00 1 -01001111 584,881 1 -01001111 30.64 1 -01001111 2.905 1 -01001111 2.442 1 -01001111 283.25 1 -01001111 7,458 1 -01001111 19,864 1 -01001111 267,900 1 -01001111 2.38194 1 -01001111 36,985 1 -01001111 7,445 1 -01001111 11,152 1 -01001111 10,423 1 -01001111 37.25-a-share 1 -01001111 855,796 1 -01001111 200,322 1 -01001111 437.30 1 -01001111 30.24 1 -01001111 400.29 1 -01001111 9,000-a-year 1 -01001111 117,847 1 -01001111 19.25-a-share 1 -01001111 18,000-a-year 1 -01001111 473,408 1 -01001111 5.1720 1 -01001111 77,065 1 -01001111 37,845 1 -01001111 365.00 1 -01001111 162,461 1 -01001111 22,513 1 -01001111 441.90 1 -01001111 124-a-share 1 -01001111 184,250,000 1 -01001111 664.37 1 -01001111 73.80-a-share 1 -01001111 1,206,180,000 1 -01001111 62,400,000 1 -01001111 74.50-a-share 1 -01001111 9,776 1 -01001111 1,000-a-year 1 -01001111 163,628 1 -01001111 4,951,000 1 -01001111 1,059.06 1 -01001111 21,958 1 -01001111 38,346 1 -01001111 25,803 1 -01001111 13,647 1 -01001111 1,176.25 1 -01001111 1,167.50 1 -01001111 33,908 1 -01001111 436.20 1 -01001111 27.65 1 -01001111 33,803 1 -01001111 1,325.76 1 -01001111 100,000-per-deposit 1 -01001111 32,137 1 -01001111 7-an-ounce 1 -01001111 5.1570 1 -01001111 20.71 1 -01001111 20,505 1 -01001111 1.2870 1 -01001111 113,366 1 -01001111 546,305 1 -01001111 1.8477 1 -01001111 2.9750 1 -01001111 29.50-a-share 1 -01001111 19,640 1 -01001111 329.90 1 -01001111 923,832 1 -01001111 1.2570 1 -01001111 59.93 1 -01001111 1,986,950 1 -01001111 1,455 1 -01001111 803,369 1 -01001111 86.37 1 -01001111 33,005 1 -01001111 18,929 1 -01001111 67,331 1 -01001111 26,075 1 -01001111 3,572,000 1 -01001111 31,010 1 -01001111 49,030 1 -01001111 41,690 1 -01001111 29,154 1 -01001111 10,744 1 -01001111 111.875 1 -01001111 25,294 1 -01001111 179,474 1 -01001111 444,589 1 -01001111 148,070 1 -01001111 9,000-plus 1 -01001111 1.7699 1 -01001111 819,000 1 -01001111 2,091 1 -01001111 12,590 1 -01001111 1,975,000 1 -01001111 399.95 1 -01001111 550,596 1 -01001111 1,411 1 -01001111 8,384 1 -01001111 1.8455 1 -01001111 432,035 1 -01001111 12,388 1 -01001111 13,250,000 1 -01001111 50-limit 1 -01001111 75-a-shift 1 -01001111 47.250 1 -01001111 36.731 1 -01001111 139,391 1 -01001111 313,625 1 -01001111 813,996 1 -01001111 24,615 1 -01001111 47.31 1 -01001111 9,650 1 -01001111 14,753 1 -01001111 16,437 1 -01001111 41,200 1 -01001111 61.766 1 -01001111 165,000-a-year 1 -01001111 21.40-a-share 1 -01001111 359.95 1 -01001111 165,200 1 -01001111 117.625 1 -01001111 101,930 1 -01001111 154,848 1 -01001111 25,800 1 -01001111 792,954 1 -01001111 556,086 1 -01001111 61,886 1 -01001111 14,529 1 -01001111 11,929 1 -01001111 2,075,000 1 -01001111 5,495 1 -01001111 73.50-a-share 1 -01001111 98,082 1 -01001111 2,380,952,414 1 -01001111 694,574 1 -01001111 5-billion-a-year 1 -01001111 402,871 1 -01001111 850,340,136 1 -01001111 8,760 1 -01001111 12.435 1 -01001111 73,523 1 -01001111 513,121 1 -01001111 79,648.21 1 -01001111 9,706 1 -01001111 13,543 1 -01001111 161,649 1 -01001111 37,808 1 -01001111 40,602,915 1 -01001111 4,319,313 1 -01001111 27.825 1 -01001111 27.61 1 -01001111 24,900 1 -01001111 445.10 1 -01001111 1.8940 1 -01001111 29,841 1 -01001111 6.4650 1 -01001111 5-per-share 1 -01001111 47.75-a-share 1 -01001111 2.9-million 1 -01001111 13.4-billion 1 -01001111 30-a-hundredweight 1 -01001111 106,600 1 -01001111 871,309 1 -01001111 91.20 1 -01001111 1.5533 1 -01001111 1.5500 1 -01001111 1,259,072 1 -01001111 829.55 1 -01001111 2,355,709 1 -01001111 4.5-billion 1 -01001111 1.16-a-share 1 -01001111 108.375 1 -01001111 861,589 1 -01001111 32,959 1 -01001111 8,958 1 -01001111 27,624 1 -01001111 7,694 1 -01001111 748,458 1 -01001111 77,235 1 -01001111 14,880 1 -01001111 1.2450 1 -01001111 1.6554 1 -01001111 365.10 1 -01001111 477.30 1 -01001111 1.2380 1 -01001111 192,930 1 -01001111 400-million-a-year 1 -01001111 30,230 1 -01001111 6,285 1 -01001111 8,252,992 1 -01001111 540.40 1 -01001111 1,001.43 1 -01001111 1,696 1 -01001111 22,850 1 -01001111 7,149 1 -01001111 21,550 1 -01001111 2,115,527,100 1 -01001111 120-a-square-foot 1 -01001111 2,850,783 1 -01001111 2,973,544 1 -01001111 51,550 1 -01001111 50,900 1 -01001111 622,500 1 -01001111 14,424 1 -01001111 600,723 1 -01001111 1,019.54 1 -01001111 65,137 1 -01001111 600-a-person 1 -01001111 272,795 1 -01001111 112,549 1 -01001111 10,283 1 -01001111 69.60 1 -01001111 35.10 1 -01001111 8,550 1 -01001111 504.70 1 -01001111 9,099 1 -01001111 15,240 1 -01001111 29,757 1 -01001111 1-per-acre 1 -01001111 78,600 1 -01001111 20-per-passenger 1 -01001111 6.135 1 -01001111 247,830 1 -01001111 11,999 1 -01001111 156.125 1 -01001111 4.5625 1 -01001111 18.93 1 -01001111 356,192 1 -01001111 86,815 1 -01001111 72,400 1 -01001111 87,420 1 -01001111 457.00 1 -01001111 332,122.50 1 -01001111 6,801 1 -01001111 6,906 1 -01001111 72,681 1 -01001111 15,920 1 -01001111 14,180 1 -01001111 14,895 1 -01001111 18,645 1 -01001111 316.48 1 -01001111 317.72 1 -01001111 317.97 1 -01001111 200,004 1 -01001111 88.375 1 -01001111 305,638 1 -01001111 17,515 1 -01001111 470,474 1 -01001111 39,600 1 -01001111 35,125 1 -01001111 168,790 1 -01001111 34,375 1 -01001111 9,283 1 -01001111 845,257 1 -01001111 154,402 1 -01001111 18,840 1 -01001111 834,457 1 -01001111 12,635 1 -01001111 480,916 1 -01001111 774,302 1 -01001111 3,975 1 -01001111 2,501,915 1 -01001111 1.8995 1 -01001111 .54 1 -01001111 6,700,000 1 -01001111 526.70 1 -01001111 0.8451 1 -01001111 0.8530 1 -01001111 1.7540 1 -01001111 448,200 1 -01001111 80,000-a-year 1 -01001111 1.8878 1 -01001111 36,254 1 -01001111 646,855 1 -01001111 107.50 1 -01001111 39,645 1 -01001111 3,346,775 1 -01001111 401,250 1 -01001111 107,835,293 1 -01001111 41.74 1 -01001111 63,384 1 -01001111 1.0375 1 -01001111 6.434 1 -01001111 999,999,999.99 1 -01001111 2,000-a-dose 1 -01001111 25,866 1 -01001111 19,164 1 -01001111 940,872 1 -01001111 633,300 1 -01001111 7.1125 1 -01001111 28.333 1 -01001111 31.421 1 -01001111 817,447 1 -01001111 342,411 1 -01001111 1.685 1 -01001111 1.3190 1 -01001111 1.2155 1 -01001111 480.80 1 -01001111 2,531 1 -01001111 49,576 1 -01001111 1.5525 1 -01001111 5,289 1 -01001111 12,317,743 1 -01001111 29,160 1 -01001111 11,950 1 -01001111 29,610 1 -01001111 565,901 1 -01001111 615,967 1 -01001111 28,846 1 -01001111 52,096 1 -01001111 5,601 1 -01001111 35,173 1 -01001111 118.80 1 -01001111 5,699,000 1 -01001111 866.49 1 -01001111 306.25 1 -01001111 1.8905 1 -01001111 1.2480 1 -01001111 366.00 1 -01001111 5.9675 1 -01001111 13,458 1 -01001111 23.16-a-share 1 -01001111 158,700 1 -01001111 111,263 1 -01001111 87,559 1 -01001111 1,717,311 1 -01001111 488,800 1 -01001111 238,108 1 -01001111 1,087,500 1 -01001111 2,869 1 -01001111 975,266 1 -01001111 800,700 1 -01001111 726,923 1 -01001111 39.13 1 -01001111 659,656 1 -01001111 838,268 1 -01001111 479,370 1 -01001111 531,889 1 -01001111 Deladumone 1 -01001111 1.8596 1 -01001111 Tace 1 -01001111 206,880,000 1 -01001111 41.99 1 -01001111 48.21 1 -01001111 471,280 1 -01001111 250,000,000 1 -01001111 196,609 1 -01001111 46,750 1 -01001111 39,450 1 -01001111 3,863 1 -01001111 961,800 1 -01001111 20.85-a-share 1 -01001111 999,042 1 -01001111 31.95 1 -01001111 47,999 1 -01001111 591,821 1 -01001111 790,445 1 -01001111 290.75 1 -01001111 3,730,000 1 -01001111 11.479 1 -01001111 5,666 1 -01001111 110-aashare 1 -01001111 16,116 1 -01001111 124,989 1 -01001111 137,154 1 -01001111 16.425 1 -01001111 144,600 1 -01001111 139,400 1 -01001111 12.662 1 -01001111 1.5526 1 -01001111 647,452 1 -01001111 31.675 1 -01001111 17.42-a-share 1 -01001111 15,066,700 1 -01001111 808,835 1 -01001111 949,760 1 -01001111 791,883 1 -01001111 25,516 1 -01001111 717,625 1 -01001111 549,661 1 -01001111 1.2770 1 -01001111 10,754 1 -01001111 25,407 1 -01001111 92,460 1 -01001111 345,359 1 -01001111 86,638 1 -01001111 165.375 1 -01001111 34,120,000 1 -01001111 12,025 1 -01001111 12,535 1 -01001111 440-an-ounce 1 -01001111 568,700 1 -01001111 18,959 1 -01001111 8,759 1 -01001111 14,639 1 -01001111 15,519 1 -01001111 23.55 1 -01001111 54-an-ounce 1 -01001111 6,929 1 -01001111 14.183-a-share 1 -01001111 85.875 1 -01001111 36.10 1 -01001111 91.40 1 -01001111 102,525 1 -01001111 HK50,000 1 -01001111 HK20,000 1 -01001111 48,038 1 -01001111 22,917 1 -01001111 507,698 1 -01001111 946,106 1 -01001111 236,100 1 -01001111 301,650 1 -01001111 346,890 1 -01001111 10.925 1 -01001111 486.20 1 -01001111 518.10 1 -01001111 1,509 1 -01001111 1.107 1 -01001111 173,008 1 -01001111 500,229 1 -01001111 472,190 1 -01001111 26,524 1 -01001111 1.3705 1 -01001111 1.3035 1 -01001111 5.1530 1 -01001111 8,098 1 -01001111 6,148 1 -01001111 8,620 1 -01001111 6,477 1 -01001111 138.875 1 -01001111 954.93 1 -01001111 914.74 1 -01001111 16,495 1 -01001111 533.80 1 -01001111 439.00 1 -01001111 1.2572 1 -01001111 3,898 1 -01001111 3,039 1 -01001111 8,737 1 -01001111 1,694 1 -01001111 17,246,000 1 -01001111 5,292 1 -01001111 7,923 1 -01001111 3,795 1 -01001111 7.50-ashare 1 -01001111 44.38-a-share 1 -01001111 107,212 1 -01001111 3,117 1 -01001111 175-per-person 1 -01001111 1,000-a-ticket 1 -01001111 1.1647 1 -01001111 1.3057 1 -01001111 8,770,000 1 -01001111 435-an-ounce 1 -01001111 185-a-night 1 -01001111 1.3150 1 -01001111 88-a-month 1 -01001111 79,690 1 -01001111 99,956 1 -01001111 7,249 1 -01001111 194.50 1 -01001111 6,188 1 -01001111 14,725,000 1 -01001111 1.1225 1 -01001111 18.50-a-barrel 1 -01001111 .56 1 -01001111 .60 1 -01001111 10,035,000 1 -01001111 .41 1 -01001111 30,933 1 -01001111 31,380 1 -01001111 37,905 1 -01001111 38,475 1 -01001111 29,763 1 -01001111 32,700 1 -01001111 60,300 1 -01001111 469,000 1 -01001111 800-a-month 1 -01001111 122,976 1 -01001111 10,088 1 -01001111 1.0883 1 -01001111 35,805 1 -01001111 250,000. 1 -01001111 53,185,000 1 -01001111 440,300 1 -01001111 68,075 1 -01001111 1.7070 1 -01001111 1.7192 1 -01001111 16,575 1 -01001111 20,126 1 -01001111 34,850 1 -01001111 19,422 1 -01001111 17,865 1 -01001111 28,505 1 -01001111 200-a-share 1 -01001111 143.625 1 -01001111 3.0625 1 -01001111 4761373 1 -01001111 22,916-a-month 1 -01001111 200-a-bottle 1 -01001111 137,191 1 -01001111 24,810 1 -01001111 20-an-hour 1 -01001111 cutsie 1 -01001111 8,048 1 -01001111 24,460 1 -01001111 78,039 1 -01001111 7,530,802,000 1 -01001111 18,457,957,000 1 -01001111 388,889 1 -01001111 24,462 1 -01001111 3,926 1 -01001111 4,308 1 -01001111 1.2675 1 -01001111 2.415 1 -01001111 207.50 1 -01001111 11.71 1 -01001111 9,023,000 1 -01001111 5.766 1 -01001111 3,574,000 1 -01001111 346,800,000 1 -01001111 1.5463 1 -01001111 47.10 1 -01001111 half-a-billion 1 -01001111 136,255 1 -01001111 13,650 1 -01001111 8,465 1 -01001111 45,050 1 -01001111 1,308 1 -01001111 2,915 1 -01001111 3,214 1 -01001111 30,388 1 -01001111 1.2860 1 -01001111 7,428,000 1 -01001111 411.99 1 -01001111 486.30 1 -01001111 366.10 1 -01001111 5.1430 1 -01001111 434.40 1 -01001111 9,750,000,000 1 -01001111 8.324 1 -01001111 1.1667 1 -01001111 1.1906 1 -01001111 35-billion 1 -01001111 45-per-share 1 -01001111 181,677 1 -01001111 442,168 1 -01001111 642,916 1 -01001111 1,559 1 -01001111 15,910 1 -01001111 995,335 1 -01001111 8,023,034 1 -01001111 288,229 1 -01001111 736,501 1 -01001111 6,035,219 1 -01001111 8,006,682 1 -01001111 11.495 1 -01001111 13.245 1 -01001111 300,518 1 -01001111 15.047 1 -01001111 754,802 1 -01001111 126,533 1 -01001111 1.5445 1 -01001111 426,500 1 -01001111 1,406,512 1 -01001111 1,772,506 1 -01001111 646,232 1 -01001111 887,497 1 -01001111 481.20 1 -01001111 21.9-million 1 -01001111 997,231 1 -01001111 1,063,000 1 -01001111 108,550,000 1 -01001111 2,395 1 -01001111 443,400 1 -01001111 17.15-a-share 1 -01001111 7.1550 1 -01001111 569.50 1 -01001111 105.88 1 -01001111 144,900 1 -01001111 255,608 1 -01001111 77,922 1 -01001111 435.10 1 -01001111 7.2250 1 -01001111 551.30 1 -01001111 72,530 1 -01001111 24,081 1 -01001111 64,434 1 -01001111 814,801 1 -01001111 9.505 1 -01001111 3,902 1 -01001111 551.40 1 -01001111 7.1650 1 -01001111 3.3350 1 -01001111 18,895 1 -01001111 65,300 1 -01001111 105,100 1 -01001111 111,100 1 -01001111 108,900 1 -01001111 58,700 1 -01001111 221,025 1 -01001111 24,895 1 -01001111 209,072 1 -01001111 94,774 1 -01001111 483.70 1 -01001111 11,953 1 -01001111 76,200 1 -01001111 12,017 1 -01001111 26.841 1 -01001111 7,960 1 -01001111 157,356 1 -01001111 1.1498 1 -01001111 1.70-a-share 1 -01001111 525,687 1 -01001111 618,871 1 -01001111 106,308 1 -01001111 10,350,000 1 -01001111 90,872 1 -01001111 29,190 1 -01001111 76,380 1 -01001111 127,600 1 -01001111 1,017.42 1 -01001111 370,941 1 -01001111 551.50 1 -01001111 79.625 1 -01001111 27.60 1 -01001111 616,800 1 -01001111 172,920 1 -01001111 442.70 1 -01001111 16.313 1 -01001111 732,900 1 -01001111 582,000 1 -01001111 12-per-share 1 -01001111 13,239 1 -01001111 12,846 1 -01001111 3,840,000 1 -01001111 15,644 1 -01001111 1.676 1 -01001111 1.7060 1 -01001111 320.05 1 -01001111 323.05 1 -01001111 321.67 1 -01001111 322.60 1 -01001111 86.625 1 -01001111 1,128,000 1 -01001111 1,078,000 1 -01001111 10,703 1 -01001111 526,992 1 -01001111 466,284 1 -01001111 6,290 1 -01001111 7,280 1 -01001111 585,109 1 -01001111 25,995 1 -01001111 20,804 1 -01001111 1.8265 1 -01001111 38,304 1 -01001111 33,492 1 -01001111 24,120 1 -01001111 1,812 1 -01001111 1,815 1 -01001111 29,580 1 -01001111 2,791 1 -01001111 313.875 1 -01001111 77,800 1 -01001111 1.7425 1 -01001111 7,205 1 -01001111 16,149 1 -01001111 8,376 1 -01001111 564-million 1 -01001111 13,408 1 -01001111 10,066 1 -01001111 9,084 1 -01001111 14,272 1 -01001111 13,734 1 -01001111 46,129 1 -01001111 28,006 1 -01001111 793,625 1 -01001111 195,663 1 -01001111 108.625 1 -01001111 17,221 1 -01001111 198,681 1 -01001111 962,000,000 1 -01001111 115,748,000 1 -01001111 198,175,000 1 -01001111 23,175,000 1 -01001111 1,237,000 1 -01001111 17,127,000 1 -01001111 2,177,000 1 -01001111 2,527,000 1 -01001111 2,057,000 1 -01001111 73,800 1 -01001111 71,405,000 1 -01001111 83,630,000 1 -01001111 295,337.30 1 -01001111 301,400 1 -01001111 1.183 1 -01001111 31,370,000 1 -01001111 16,619,000 1 -01001111 280,012 1 -01001111 1,039,000 1 -01001111 1,651,689 1 -01001111 76,125 1 -01001111 233,874 1 -01001111 1,047.25 1 -01001111 1,151,000 1 -01001111 2,439 1 -01001111 445.70 1 -01001111 559.40 1 -01001111 501,210 1 -01001111 167,070 1 -01001111 55,999 1 -01001111 123.625 1 -01001111 20,521 1 -01001111 34,950 1 -01001111 165,479 1 -01001111 39,950 1 -01001111 123,400 1 -01001111 550.33 1 -01001111 4,165 1 -01001111 54,956 1 -01001111 181,200 1 -01001111 83,460 1 -01001111 479,374 1 -01001111 431,464 1 -01001111 30,253 1 -01001111 113,220 1 -01001111 112,900 1 -01001111 102,591 1 -01001111 347,500 1 -01001111 763,220 1 -01001111 423,155 1 -01001111 352,800 1 -01001111 252,800 1 -01001111 2-an-hour 1 -01001111 1.2865 1 -01001111 100-plus-a-share 1 -01001111 1.6125 1 -01001111 153,883 1 -01001111 5.7138 1 -01001111 143,877 1 -01001111 755.70 1 -01001111 510.57 1 -01001111 28-a-barrel 1 -01001111 12,325,000 1 -01001111 9,695 1 -01001111 7,949 1 -01001111 6,449 1 -01001111 8,484 1 -01001111 8,979 1 -01001111 2,854.77 1 -01001111 1,369,700 1 -01001111 807.06 1 -01001111 2.00-a-share 1 -01001111 1,891,000 1 -01001111 590,834 1 -01001111 2,140,000 1 -01001111 646,632 1 -01001111 303,884 1 -01001111 119,250,000 1 -01001111 97,115,000 1 -01001111 80,625,000 1 -01001111 113,325,000 1 -01001111 24,280,000 1 -01001111 94,970,000 1 -01001111 11,969 1 -01001111 11,429 1 -01001111 11,819 1 -01001111 14,829 1 -01001111 15,269 1 -01001111 10,971 1 -01001111 10,719 1 -01001111 more-seasoned 1 -01001111 34,391 1 -01001111 24,701 1 -01001111 1,108.92 1 -01001111 half-a-million 1 -01001111 31,545 1 -01001111 531.10 1 -01001111 6.6350 1 -01001111 35.50-a-share 1 -01001111 10.90-per-share 1 -01001111 84.189 1 -01001111 30.50-a-share 1 -01001111 93.262 1 -01001111 92,520,000 1 -01001111 62,495,000 1 -01001111 1,045.75 1 -01001111 42,000-a-year 1 -01001111 772,181 1 -01001111 3,860,903 1 -01001111 1,322,265 1 -01001111 106,904 1 -01001111 1,335,759 1 -01001111 1,803,196 1 -01001111 2-plus 1 -01001111 790,094 1 -01001111 254,280 1 -01001111 758,454 1 -01001111 251,254 1 -01001111 1,318,242 1 -01001111 1,253.55 1 -01001111 143,829,000 1 -01001111 154,671,000 1 -01001111 25,819,000 1 -01001111 546.18 1 -01001111 1,042.72 1 -01001111 566,866 1 -01001111 2,800-per-home 1 -01001111 2,634 1 -01001111 1,487,116 1 -01001111 774.12 1 -01001111 662,594 1 -01001111 326,270 1 -01001111 991,892 1 -01001111 982,831 1 -01001111 7,035,831 1 -01001111 904,101 1 -01001111 240,003 1 -01001111 7,345,000 1 -01001111 13,000-a-year 1 -01001111 5.333 1 -01001111 15,738 1 -01001111 87-a-share 1 -01001111 66,781 1 -01001111 83,696 1 -01001111 1.2760 1 -01001111 1.126 1 -01001111 109,599 1 -01001111 770,301 1 -01001111 282.375 1 -01001111 53.26 1 -01001111 1.1265 1 -01001111 68,140 1 -01001111 282.75 1 -01001111 5.313 1 -01001111 506.50 1 -01001111 9,995,000 1 -01001111 9,857,000 1 -01001111 3,235,000 1 -01001111 397,611 1 -01001111 22,352 1 -01001111 311.50 1 -01001111 324.68 1 -01001111 325.27 1 -01001111 100-par 1 -01001111 2,636.49 1 -01001111 1,400-a-worker 1 -01001111 1,429,500 1 -01001111 17.50-a-share-offer 1 -01001111 31,563 1 -01001111 46,630 1 -01001111 72-ashare 1 -01001111 24,350 1 -01001111 638,400 1 -01001111 38,461 1 -01001111 183,799 1 -01001111 2,762 1 -01001111 17,644 1 -01001111 29,573 1 -01001111 21,286 1 -01001111 154,143 1 -01001111 139,647 1 -01001111 905,106 1 -01001111 117,545 1 -01001111 108,750 1 -01001111 1.1778 1 -01001111 1.3184 1 -01001111 1.2170 1 -01001111 1.0926 1 -01001111 1.0307 1 -01001111 1,379,000 1 -01001111 271.92 1 -01001111 6,319 1 -01001111 18,805 1 -01001111 4,509.61 1 -01001111 974,720 1 -01001111 25,495 1 -01001111 70-a-ton 1 -01001111 32.16 1 -01001111 10,140,000 1 -01001111 10,120,000 1 -01001111 519.90 1 -01001111 28,715 1 -01001111 631,300 1 -01001111 117.375 1 -01001111 1,390,000 1 -01001111 1,140,909 1 -01001111 16,328,000 1 -01001111 10,190,712 1 -01001111 1,317,000 1 -01001111 992,000 1 -01001111 37,306 1 -01001111 591,400 1 -01001111 120,806 1 -01001111 89.06 1 -01001111 127,446 1 -01001111 112,383 1 -01001111 166,537 1 -01001111 328,446 1 -01001111 16.57 1 -01001111 23,763.77 1 -01001111 308.32 1 -01001111 27,468 1 -01001111 15,744 1 -01001111 16,594 1 -01001111 25,205 1 -01001111 27,218 1 -01001111 9,118 1 -01001111 6,076 1 -01001111 1,668 1 -01001111 65,663 1 -01001111 428,154 1 -01001111 6.80-a-share 1 -01001111 96,095,000 1 -01001111 66,250,000 1 -01001111 240,800 1 -01001111 10,025,000 1 -01001111 14.425 1 -01001111 42,087 1 -01001111 7,963 1 -01001111 15,972,000 1 -01001111 1.2805 1 -01001111 1.3370 1 -01001111 1.2790 1 -01001111 4.75-a-share 1 -01001111 11.96-a-share 1 -01001111 130.625 1 -01001111 543.85 1 -01001111 486.90 1 -01001111 279,375 1 -01001111 408,750 1 -01001111 13,595 1 -01001111 1.7079 1 -01001111 1,062.50 1 -01001111 1.375-a-share 1 -01001111 10.9375 1 -01001111 10,608,901 1 -01001111 2,652,026 1 -01001111 6,842,500 1 -01001111 608,971 1 -01001111 454,569 1 -01001111 420,624 1 -01001111 432.60 1 -01001111 67,131,430 1 -01001111 12.185 1 -01001111 68,135,000 1 -01001111 56,300,000 1 -01001111 7,375 1 -01001111 9,894 1 -01001111 11,495 1 -01001111 88,375,000 1 -01001111 57,980,000 1 -01001111 291,350 1 -01001111 9,985 1 -01001111 12,227 1 -01001111 337,182 1 -01001111 729.03 1 -01001111 532,231 1 -01001111 100-a-year 1 -01001111 36,277,800 1 -01001111 73,895,000 1 -01001111 1,585,277 1 -01001111 41-billion-a-year 1 -01001111 5,055 1 -01001111 44,579 1 -01001111 401,211 1 -01001111 3.055 1 -01001111 12.850 1 -01001111 200-a-couple 1 -01001111 4.25-a-share 1 -01001111 24,501 1 -01001111 60,000-plus 1 -01001111 24-a-year 1 -01001111 221.70 1 -01001111 330.80 1 -01001111 4,442 1 -01001111 4,525 1 -01001111 118.875 1 -01001111 450-a-month 1 -01001111 7,269 1 -01001111 491.30 1 -01001111 5.1230 1 -01001111 467,198 1 -01001111 594,351 1 -01001111 1.33-a-share 1 -01001111 27,776 1 -01001111 439,422 1 -01001111 329,409 1 -01001111 316,829 1 -01001111 13,999 1 -01001111 1.1055 1 -01001111 484.60 1 -01001111 104.875 1 -01001111 54,738 1 -01001111 439.40 1 -01001111 397,437 1 -01001111 20.94-a-share 1 -01001111 2,963,000 1 -01001111 4,886,000 1 -01001111 3,662,800 1 -01001111 83,050 1 -01001111 2,243,000 1 -01001111 1,153,000 1 -01001111 13,675,000 1 -01001111 9,105,000 1 -01001111 450-an-hour 1 -01001111 1,338,306 1 -01001111 14,520 1 -01001111 38,800 1 -01001111 18,750,000 1 -01001111 50,000. 1 -01001111 560,780 1 -01001111 79,260 1 -01001111 371.40 1 -01001111 498.60 1 -01001111 359,550 1 -01001111 92,426 1 -01001111 158,669 1 -01001111 14,738 1 -01001111 191,600 1 -01001111 1,343,902 1 -01001111 1,902 1 -01001111 734,527 1 -01001111 113.625 1 -01001111 125.125 1 -01001111 57.40 1 -01001111 10,022.65 1 -01001111 768,948.67 1 -01001111 1,000-a-plate 1 -01001111 3,599 1 -01001111 231,051 1 -01001111 70,685 1 -01001111 5,416 1 -01001111 120,696 1 -01001111 17,765 1 -01001111 16,476 1 -01001111 431,986 1 -01001111 15-a-month 1 -01001111 34.98 1 -01001111 7.0390 1 -01001111 486.40 1 -01001111 1.2625 1 -01001111 1,118,700 1 -01001111 .67 1 -01001111 9.69-an-hour 1 -01001111 35,000-a-year 1 -01001111 456,728 1 -01001111 5,054,067 1 -01001111 31,033 1 -01001111 7,275 1 -01001111 676,323 1 -01001111 1.7899 1 -01001111 15.l0 1 -01001111 7.1180 1 -01001111 16,660,490 1 -01001111 228,710 1 -01001111 446,451 1 -01001111 438,671 1 -01001111 27,243 1 -01001111 113,967 1 -01001111 690,478 1 -01001111 1.3452 1 -01001111 23,080 1 -01001111 19,618 1 -01001111 16,617 1 -01001111 10,503 1 -01001111 36,253 1 -01001111 33,308 1 -01001111 49,962 1 -01001111 496,550 1 -01001111 53,079 1 -01001111 78,867 1 -01001111 758,187 1 -01001111 864,559 1 -01001111 7,207 1 -01001111 27,475 1 -01001111 171,130 1 -01001111 17,604 1 -01001111 172,345,000 1 -01001111 840,556 1 -01001111 31.57 1 -01001111 6.872 1 -01001111 488.20 1 -01001111 104,900 1 -01001111 16.633 1 -01001111 16.830 1 -01001111 126,600 1 -01001111 21-million 1 -01001111 18.6252 1 -01001111 4,599 1 -01001111 2,799 1 -01001111 3.075 1 -01001111 63,225 1 -01001111 558,167 1 -01001111 38,225 1 -01001111 74,189,000 1 -01001111 180,700 1 -01001111 530,900 1 -01001111 654,967 1 -01001111 40,373 1 -01001111 19,695,000 1 -01001111 4,197,000 1 -01001111 4,023,000 1 -01001111 1.2185 1 -01001111 350s 1 -01001111 5.207 1 -01001111 374.70 1 -01001111 9,705 1 -01001111 27,420 1 -01001111 19,739 1 -01001111 33,776 1 -01001111 13,225 1 -01001111 946,188 1 -01001111 15,658,000 1 -01001111 18,557 1 -01001111 9,085 1 -01001111 40,510 1 -01001111 19,758 1 -01001111 21,337 1 -01001111 6,745 1 -01001111 5,395 1 -01001111 11,898 1 -01001111 567.90 1 -01001111 508,078 1 -01001111 133,856 1 -01001111 1.1592 1 -01001111 30-ashare 1 -01001111 2,982,000 1 -01001111 13,114.79 1 -01001111 4,179 1 -01001111 404,520 1 -01001111 600,000-plus 1 -01001111 63,846 1 -01001111 4.124 1 -01001111 11,312 1 -01001111 302,562 1 -01001111 5,699 1 -01001111 69.30 1 -01001111 86.70 1 -01001111 415,684 1 -01001111 2,965,000 1 -01001111 5.3350 1 -01001111 500-an-ounce 1 -01001111 504.50 1 -01001111 68,922 1 -01001111 22,864,000 1 -01001111 737,744 1 -01001111 521,310 1 -01001111 90-a-night 1 -01001111 1.2120 1 -01001111 63,400 1 -01001111 372.30 1 -01001111 63,705 1 -01001111 229,145 1 -01001111 113,118 1 -01001111 18.758 1 -01001111 1.0590 1 -01001111 92,600 1 -01001111 4.437 1 -01001111 1.975 1 -01001111 3,829,500,000 1 -01001111 1,170,500,000 1 -01001111 24.68 1 -01001111 1.718 1 -01001111 566.70 1 -01001111 1.0385 1 -01001111 93,200 1 -01001111 338.53 1 -01001111 560,600 1 -01001111 459.00 1 -01001111 595.00 1 -01001111 1.0380 1 -01001111 1,555 1 -01001111 48,750,995 1 -01001111 899.65 1 -01001111 367,300 1 -01001111 935,800 1 -01001111 230,100 1 -01001111 53.95 1 -01001111 53.42 1 -01001111 2,695 1 -01001111 80,498 1 -01001111 24,680 1 -01001111 105.58 1 -01001111 1.3630 1 -01001111 103,325 1 -01001111 737,900 1 -01001111 7,273 1 -01001111 2,203 1 -01001111 11.437 1 -01001111 23.925 1 -01001111 16,257 1 -01001111 17,393-a-month 1 -01001111 2,025,000 1 -01001111 68,828 1 -01001111 150,971 1 -01001111 1.7854 1 -01001111 1.8167 1 -01001111 1.7830 1 -01001111 13,000-a-page 1 -01001111 1.5660 1 -01001111 6,034,000 1 -01001111 197,310 1 -01001111 20,139 1 -01001111 490.90 1 -01001111 1.1890 1 -01001111 12,079 1 -01001111 16,599 1 -01001111 11,909 1 -01001111 16,399 1 -01001111 13,749 1 -01001111 13,499 1 -01001111 200,000,000 1 -01001111 43.906 1 -01001111 85,800 1 -01001111 11,550 1 -01001111 373.10 1 -01001111 5.355 1 -01001111 25,950,000 1 -01001111 320.40 1 -01001111 319.93 1 -01001111 46,060 1 -01001111 discreetness 1 -01001111 861,000 1 -01001111 4,109 1 -01001111 4,595 1 -01001111 5,720,000 1 -01001111 362,651 1 -01001111 1,631.55 1 -01001111 85.31 1 -01001111 340,050 1 -01001111 1,096.83 1 -01001111 71,750 1 -01001111 32,450 1 -01001111 5-a-month 1 -01001111 5,731 1 -01001111 19,450 1 -01001111 75.90-a-share 1 -01001111 1.0165 1 -01001111 975-a-night 1 -01001111 24,414 1 -01001111 10,620 1 -01001111 4,370,000 1 -01001111 36,320 1 -01001111 85,895,000 1 -01001111 26,915 1 -01001111 36,980 1 -01001111 31,785,000 1 -01001111 30,365 1 -01001111 3,424 1 -01001111 44.73 1 -01001111 47.64 1 -01001111 29,258 1 -01001111 1,783 1 -01001111 237,565,000 1 -01001111 78,218 1 -01001111 102,811 1 -01001111 1.6475 1 -01001111 66,181 1 -01001111 245,843 1 -01001111 348,500 1 -01001111 360.69 1 -01001111 1,684,875 1 -01001111 7.2950 1 -01001111 585.60 1 -01001111 670,193 1 -01001111 2,197,000 1 -01001111 9,924 1 -01001111 50,600 1 -01001111 51,433 1 -01001111 2,175 1 -01001111 3,664 1 -01001111 36,891 1 -01001111 316.12 1 -01001111 5,199 1 -01001111 10,299 1 -01001111 110.375 1 -01001111 1,582,925 1 -01001111 3.688 1 -01001111 3-a-passenger 1 -01001111 543.50 1 -01001111 3.1125 1 -01001111 12,500-a-month 1 -01001111 14,329 1 -01001111 9,149 1 -01001111 81,818 1 -01001111 18,125 1 -01001111 18,325 1 -01001111 13,375 1 -01001111 14,718 1 -01001111 17,395 1 -01001111 14,995 1 -01001111 14,564 1 -01001111 1.2075 1 -01001111 6,113,085 1 -01001111 1,987,588 1 -01001111 1,536,469.72 1 -01001111 480.20 1 -01001111 5,212 1 -01001111 964,008 1 -01001111 1.0885 1 -01001111 1.5825 1 -01001111 57.21 1 -01001111 66,394 1 -01001111 830,500 1 -01001111 258.50 1 -01001111 250-a-share 1 -01001111 575.90 1 -01001111 6.9050 1 -01001111 1.3417 1 -01001111 1.825 1 -01001111 146-billion 1 -01001111 376,573 1 -01001111 25,157 1 -01001111 21,860 1 -01001111 7,383,500 1 -01001111 400,000-plus 1 -01001111 Chartist 1 -01001111 7,925 1 -01001111 WPMI-TV 1 -01001111 20,534 1 -01001111 8,884.50 1 -01001111 3,676.50 1 -01001111 6,539 1 -01001111 873,494 1 -01001111 17,280 1 -01001111 985,440 1 -01001111 299,520 1 -01001111 135,972 1 -01001111 8,494 1 -01001111 348,594 1 -01001111 685,920 1 -01001111 455,500 1 -01001111 151,800 1 -01001111 456,500,000 1 -01001111 1,245.85 1 -01001111 124,585 1 -01001111 441.10 1 -01001111 18,990 1 -01001111 8,545 1 -01001111 10,925 1 -01001111 6,195 1 -01001111 17,699 1 -01001111 13,640 1 -01001111 10,915 1 -01001111 430,165 1 -01001111 172,066 1 -01001111 45.71 1 -01001111 22,216 1 -01001111 115,486 1 -01001111 150,000-in-earnings 1 -01001111 7,767,481 1 -01001111 522.67 1 -01001111 480.70 1 -01001111 5.7725 1 -01001111 3,076 1 -01001111 352,420 1 -01001111 18,134 1 -01001111 19,789 1 -01001111 13,698 1 -01001111 616,733 1 -01001111 11,588 1 -01001111 156-million 1 -01001111 931,328 1 -01001111 13,078 1 -01001111 83,116 1 -01001111 902,800 1 -01001111 72,912 1 -01001111 46,080 1 -01001111 494,697 1 -01001111 261,732 1 -01001111 102,475,000 1 -01001111 49,275,000 1 -01001111 198,179 1 -01001111 159,100 1 -01001111 501.20 1 -01001111 201,833 1 -01001111 772,703 1 -01001111 13,794 1 -01001111 10,660 1 -01001111 9.585 1 -01001111 140,594 1 -01001111 104,810 1 -01001111 17,964 1 -01001111 37,950 1 -01001111 56,739 1 -01001111 440.30 1 -01001111 1.1155 1 -01001111 6.8550 1 -01001111 61,774 1 -01001111 41,854 1 -01001111 402,676 1 -01001111 8.795 1 -01001111 766,057 1 -01001111 3.8825 1 -01001111 27.13 1 -01001111 26,423 1 -01001111 5,620 1 -01001111 1,654 1 -01001111 67.60 1 -01001111 323.40 2 -01001111 3,972 2 -01001111 120.375 2 -01001111 7.9375 2 -01001111 1.6175 2 -01001111 10-million 2 -01001111 10,120 2 -01001111 937,500 2 -01001111 100-million-plus 2 -01001111 3.0775 2 -01001111 1.4573 2 -01001111 18,888 2 -01001111 122,400 2 -01001111 1.3050 2 -01001111 67.875 2 -01001111 62,800 2 -01001111 278,888 2 -01001111 16,150 2 -01001111 101,500 2 -01001111 408.20 2 -01001111 12. 2 -01001111 8,037 2 -01001111 1,031 2 -01001111 212,425 2 -01001111 Antioquia 2 -01001111 397.27 2 -01001111 51.61 2 -01001111 2,970,000 2 -01001111 1.6298 2 -01001111 82,700 2 -01001111 26,700 2 -01001111 318.64 2 -01001111 2,075 2 -01001111 481.90 2 -01001111 89.125 2 -01001111 1,913 2 -01001111 9,509 2 -01001111 393.20 2 -01001111 646,000 2 -01001111 349,700 2 -01001111 4,585 2 -01001111 14,160 2 -01001111 4,068 2 -01001111 132,700 2 -01001111 282,127 2 -01001111 293,676 2 -01001111 1.6281 2 -01001111 1.8612 2 -01001111 3,670 2 -01001111 317.24 2 -01001111 318.07 2 -01001111 311,224 2 -01001111 483.30 2 -01001111 1.5408 2 -01001111 1,123 2 -01001111 123,790 2 -01001111 10,920 2 -01001111 brushfires 2 -01001111 489.70 2 -01001111 15.641 2 -01001111 1.7465 2 -01001111 152.50 2 -01001111 370,823 2 -01001111 6,399 2 -01001111 30,825 2 -01001111 6,650,000 2 -01001111 1,446 2 -01001111 12,145 2 -01001111 20,050 2 -01001111 6,699 2 -01001111 1.5600 2 -01001111 133,400 2 -01001111 116,800 2 -01001111 1.6822 2 -01001111 43,150 2 -01001111 263,000 2 -01001111 12,226 2 -01001111 162.875 2 -01001111 1,934 2 -01001111 415.50 2 -01001111 74.49 2 -01001111 11,595,000 2 -01001111 100-million 2 -01001111 406.50 2 -01001111 ejido 2 -01001111 106,500 2 -01001111 1.5393 2 -01001111 1.7760 2 -01001111 503,000 2 -01001111 558,000 2 -01001111 288.46 2 -01001111 54.55 2 -01001111 408.30 2 -01001111 469.10 2 -01001111 4.9375 2 -01001111 530.90 2 -01001111 1.6020 2 -01001111 374.60 2 -01001111 374,119 2 -01001111 408.50 2 -01001111 11.90 2 -01001111 43.40 2 -01001111 1.5715 2 -01001111 6,012 2 -01001111 367.45 2 -01001111 40.75-a-share 2 -01001111 1.5853 2 -01001111 440.60 2 -01001111 1,295,000 2 -01001111 1.7510 2 -01001111 2,769 2 -01001111 2,195 2 -01001111 2,688,000 2 -01001111 546,250 2 -01001111 29.70 2 -01001111 1.6505 2 -01001111 40,100 2 -01001111 36,400 2 -01001111 8,350 2 -01001111 256,500 2 -01001111 23,740 2 -01001111 2,840,000 2 -01001111 1,331 2 -01001111 118.25 2 -01001111 410.40 2 -01001111 5.445 2 -01001111 483.90 2 -01001111 370.10 2 -01001111 1.5480 2 -01001111 1,535 2 -01001111 1,897 2 -01001111 127,200 2 -01001111 20.39 2 -01001111 286,154 2 -01001111 408.25 2 -01001111 4,359 2 -01001111 24.28 2 -01001111 59.99 2 -01001111 1.7685 2 -01001111 15-a-ton 2 -01001111 570.50 2 -01001111 1,499 2 -01001111 1,899 2 -01001111 63,995 2 -01001111 1.4688 2 -01001111 1.5933 2 -01001111 3,588 2 -01001111 85,795,000 2 -01001111 406.90 2 -01001111 400.20 2 -01001111 200-million-a-year 2 -01001111 1.175 2 -01001111 1.4685 2 -01001111 6.0625 2 -01001111 10,720 2 -01001111 283,417 2 -01001111 1,569 2 -01001111 1,540,230 2 -01001111 47-range 2 -01001111 23,675 2 -01001111 1,657,810 2 -01001111 2,422 2 -01001111 1.7673 2 -01001111 1.8182 2 -01001111 290,109 2 -01001111 17,195 2 -01001111 479.60 2 -01001111 150,100 2 -01001111 19.6875 2 -01001111 1.6365 2 -01001111 427,678 2 -01001111 1.6155 2 -01001111 9,270 2 -01001111 194,169 2 -01001111 10,465 2 -01001111 483,870 2 -01001111 6,950 2 -01001111 596.50 2 -01001111 111.25 2 -01001111 1.5203 2 -01001111 5,724 2 -01001111 599,000 2 -01001111 92,700 2 -01001111 166.25 2 -01001111 474,500 2 -01001111 1.6085 2 -01001111 146,800 2 -01001111 26,990 2 -01001111 24,650 2 -01001111 1.5275 2 -01001111 126.16 2 -01001111 1.6288 2 -01001111 80.625 2 -01001111 1,353,000 2 -01001111 359.50 2 -01001111 2.675 2 -01001111 15,250 2 -01001111 433.40 2 -01001111 392.10 2 -01001111 1,335,000 2 -01001111 310,200 2 -01001111 5,390 2 -01001111 1.2595 2 -01001111 45,700 2 -01001111 48.23 2 -01001111 578,000 2 -01001111 4,125 2 -01001111 1,540,000 2 -01001111 188,001 2 -01001111 4,549 2 -01001111 919,000 2 -01001111 47.36 2 -01001111 629,000 2 -01001111 24,772 2 -01001111 8,150,000 2 -01001111 382,500 2 -01001111 370,500 2 -01001111 15.777 2 -01001111 159,900 2 -01001111 554,537,766 2 -01001111 174,800 2 -01001111 1.4795 2 -01001111 402.40 2 -01001111 94,500 2 -01001111 352,500 2 -01001111 9,360 2 -01001111 59,900 2 -01001111 1,508 2 -01001111 1.7420 2 -01001111 17-a-barrel 2 -01001111 160,200 2 -01001111 317,500 2 -01001111 248,846 2 -01001111 285,004 2 -01001111 26.41 2 -01001111 95.625 2 -01001111 170,134 2 -01001111 404.30 2 -01001111 124,875 2 -01001111 77.625 2 -01001111 1,386 2 -01001111 114,500 2 -01001111 33.10 2 -01001111 10-an-ounce 2 -01001111 1.4313 2 -01001111 40.62 2 -01001111 265,900 2 -01001111 1.7570 2 -01001111 41,800 2 -01001111 1.6318 2 -01001111 63,873.75 2 -01001111 8,808 2 -01001111 55,400 2 -01001111 683,100 2 -01001111 1,263,000 2 -01001111 1.5185 2 -01001111 56,250 2 -01001111 1,810,000 2 -01001111 1,866 2 -01001111 50,400 2 -01001111 19,900 2 -01001111 1.6655 2 -01001111 70,800 2 -01001111 2,530,000 2 -01001111 10,670 2 -01001111 72,300 2 -01001111 355,200 2 -01001111 46,800 2 -01001111 15-million 2 -01001111 32,000-a-year 2 -01001111 494.90 2 -01001111 498.80 2 -01001111 1,441 2 -01001111 1.5835 2 -01001111 6.9375 2 -01001111 514.70 2 -01001111 5.475 2 -01001111 1.7485 2 -01001111 232,500 2 -01001111 1.5643 2 -01001111 1,891 2 -01001111 9,549 2 -01001111 9,555 2 -01001111 1.4430 2 -01001111 1.4575 2 -01001111 652,500 2 -01001111 688,667 2 -01001111 1,287 2 -01001111 5.293 2 -01001111 137,500 2 -01001111 833.34 2 -01001111 1,469 2 -01001111 286,837 2 -01001111 1.3730 2 -01001111 84,500 2 -01001111 273,800 2 -01001111 389,700 2 -01001111 151,994 2 -01001111 1,005,000 2 -01001111 242,863 2 -01001111 345,400 2 -01001111 133,600 2 -01001111 141.75 2 -01001111 236,500 2 -01001111 1.4850 2 -01001111 74,700 2 -01001111 1.5225 2 -01001111 11,770 2 -01001111 3,402 2 -01001111 70,300 2 -01001111 986,000 2 -01001111 68,750 2 -01001111 152,300 2 -01001111 698,000 2 -01001111 1.7695 2 -01001111 9,750,000 2 -01001111 150.375 2 -01001111 30-a-month 2 -01001111 30-a-week 2 -01001111 459.50 2 -01001111 452.55 2 -01001111 32.25-a-share 2 -01001111 201,028 2 -01001111 12,425,000 2 -01001111 51,135,000 2 -01001111 1,912 2 -01001111 395.30 2 -01001111 9,840 2 -01001111 348.10 2 -01001111 5,000-a-day 2 -01001111 104.25 2 -01001111 17,775 2 -01001111 1,493,000 2 -01001111 2,443 2 -01001111 256,600 2 -01001111 astrophysics 2 -01001111 460,600 2 -01001111 21.10 2 -01001111 167,800 2 -01001111 103,700 2 -01001111 90,200 2 -01001111 96,600 2 -01001111 3,299 2 -01001111 19,999 2 -01001111 208,699 2 -01001111 28.88 2 -01001111 4,810 2 -01001111 7.98-a-share 2 -01001111 89.625 2 -01001111 10,215.50 2 -01001111 223.50 2 -01001111 137,900 2 -01001111 1,684 2 -01001111 687,000 2 -01001111 121,400 2 -01001111 2,639 2 -01001111 3,135 2 -01001111 1.7740 2 -01001111 409.10 2 -01001111 1,095 2 -01001111 30,950 2 -01001111 281.125 2 -01001111 123,900 2 -01001111 164,350 2 -01001111 513,153 2 -01001111 1,546,686 2 -01001111 1.4314 2 -01001111 42,800 2 -01001111 2,000-plus 2 -01001111 2,086 2 -01001111 1.5644 2 -01001111 13,134 2 -01001111 287,669 2 -01001111 150-a-share 2 -01001111 2.1875 2 -01001111 1,584 2 -01001111 45,000-a-year 2 -01001111 1.5798 2 -01001111 145,790 2 -01001111 627,500 2 -01001111 34.24 2 -01001111 16.27 2 -01001111 474,900 2 -01001111 82.50-a-share 2 -01001111 506.70 2 -01001111 442,200 2 -01001111 36,800 2 -01001111 1.2376 2 -01001111 1,805 2 -01001111 3.4638 2 -01001111 5.435 2 -01001111 477.80 2 -01001111 358.50 2 -01001111 610,600 2 -01001111 2.7835 2 -01001111 5,980,000 2 -01001111 1,006 2 -01001111 731,000 2 -01001111 7,895 2 -01001111 3,045 2 -01001111 2,231,000 2 -01001111 20,300 2 -01001111 419.20 2 -01001111 61.13 2 -01001111 6- 2 -01001111 464.90 2 -01001111 2,121,000 2 -01001111 29.25-a-share 2 -01001111 1.5383 2 -01001111 365.20 2 -01001111 74.95 2 -01001111 226,600 2 -01001111 8,190 2 -01001111 1.7530 2 -01001111 1,056 2 -01001111 1,795 2 -01001111 1.4710 2 -01001111 7,260 2 -01001111 81.125 2 -01001111 438,000 2 -01001111 1,667 2 -01001111 480.90 2 -01001111 370.50 2 -01001111 8,399 2 -01001111 83,200 2 -01001111 14,600 2 -01001111 194.30 2 -01001111 1.7672 2 -01001111 4,410 2 -01001111 1-billion 2 -01001111 1.4297 2 -01001111 2,295 2 -01001111 863,000 2 -01001111 1.5883 2 -01001111 454.70 2 -01001111 25.23-a-share 2 -01001111 1,699 2 -01001111 94.25 2 -01001111 284,417 2 -01001111 2,399 2 -01001111 4,240 2 -01001111 10,250,000 2 -01001111 1,309 2 -01001111 2,160,000 2 -01001111 36.20 2 -01001111 2-a-year 2 -01001111 456.20 2 -01001111 92.875 2 -01001111 10,998 2 -01001111 263,600 2 -01001111 231,495 2 -01001111 20,900 2 -01001111 279.75 2 -01001111 23.10 2 -01001111 65.10 2 -01001111 319,600 2 -01001111 90,500 2 -01001111 7,199 2 -01001111 20,649 2 -01001111 1.7680 2 -01001111 491.50 2 -01001111 427.70 2 -01001111 1.7012 2 -01001111 468.10 2 -01001111 103.625 2 -01001111 103.25 2 -01001111 122.75 2 -01001111 1,322 2 -01001111 641,000 2 -01001111 2.10-a-share 2 -01001111 100,500 2 -01001111 209,500 2 -01001111 7.1875 2 -01001111 1.1970 2 -01001111 151,043 2 -01001111 1.8920 2 -01001111 131,500 2 -01001111 25,238 2 -01001111 20,198 2 -01001111 160,379 2 -01001111 2,180,000 2 -01001111 2,309 2 -01001111 471.60 2 -01001111 592,129 2 -01001111 302,600 2 -01001111 800-plus 2 -01001111 365.90 2 -01001111 1.4565 2 -01001111 320,500 2 -01001111 310.10 2 -01001111 1.6070 2 -01001111 693,336 2 -01001111 1,769 2 -01001111 307.94 2 -01001111 1,521 2 -01001111 475.70 2 -01001111 1.6845 2 -01001111 151,400 2 -01001111 1,785,000 2 -01001111 43,700 2 -01001111 418.50 2 -01001111 361,200 2 -01001111 277,200 2 -01001111 966,000 2 -01001111 411.70 2 -01001111 70,500 2 -01001111 2,473 2 -01001111 384,600 2 -01001111 6,225 2 -01001111 338,975 2 -01001111 26,078 2 -01001111 305,149 2 -01001111 1.6043 2 -01001111 22,653.79 2 -01001111 1,806,300 2 -01001111 1.0765 2 -01001111 420.20 2 -01001111 330,390 2 -01001111 4,430 2 -01001111 8,010 2 -01001111 15,495 2 -01001111 7,990 2 -01001111 457.20 2 -01001111 7,299 2 -01001111 130,300 2 -01001111 25,700 2 -01001111 110.25 2 -01001111 155.90 2 -01001111 15,160,000 2 -01001111 3.70-a-share 2 -01001111 7-plus 2 -01001111 63.60 2 -01001111 1.6784 2 -01001111 39,200 2 -01001111 471.50 2 -01001111 2,000-per-subscriber 2 -01001111 10,154,000 2 -01001111 1.7660 2 -01001111 10,290,000 2 -01001111 1.1860 2 -01001111 101.375 2 -01001111 9,593 2 -01001111 1,167 2 -01001111 33,400 2 -01001111 28,600 2 -01001111 1,000- 2 -01001111 1.6530 2 -01001111 7,618 2 -01001111 74,400 2 -01001111 361.20 2 -01001111 860,998 2 -01001111 1.0425 2 -01001111 148.75 2 -01001111 422.20 2 -01001111 148,500 2 -01001111 531.25 2 -01001111 125,635 2 -01001111 1.6713 2 -01001111 1.6900 2 -01001111 aquiline 2 -01001111 83-a-share 2 -01001111 1,981 2 -01001111 36,700 2 -01001111 60,500 2 -01001111 17,150 2 -01001111 1-an-hour 2 -01001111 91-a-share 2 -01001111 67.38 2 -01001111 301,545 2 -01001111 1,985 2 -01001111 25,000-a-day 2 -01001111 2,407,000 2 -01001111 5.75-a-share 2 -01001111 463.30 2 -01001111 562,500 2 -01001111 1,796 2 -01001111 80- 2 -01001111 400-a-month 2 -01001111 83,800 2 -01001111 58.50-a-share 2 -01001111 74,600 2 -01001111 1.2695 2 -01001111 454.40 2 -01001111 1,969 2 -01001111 794,423 2 -01001111 .19 2 -01001111 104,330 2 -01001111 4,574 2 -01001111 112.625 2 -01001111 463.50 2 -01001111 598,000 2 -01001111 444,000 2 -01001111 17- 2 -01001111 22,397 2 -01001111 1.6064 2 -01001111 3,780,000 2 -01001111 453.95 2 -01001111 7,313 2 -01001111 8,960,000 2 -01001111 644,900 2 -01001111 65,500 2 -01001111 134,800 2 -01001111 5,975 2 -01001111 1.064 2 -01001111 486.80 2 -01001111 93,750 2 -01001111 1,825 2 -01001111 2,987 2 -01001111 2,199,000 2 -01001111 314.38 2 -01001111 312.09 2 -01001111 10,000-a-year 2 -01001111 808,500 2 -01001111 1,663 2 -01001111 366.25 2 -01001111 1,236 2 -01001111 475.40 2 -01001111 5,220 2 -01001111 2,034 2 -01001111 3,620 2 -01001111 11,100 2 -01001111 7,988 2 -01001111 70.62 2 -01001111 1.7615 2 -01001111 1.6960 2 -01001111 317.28 2 -01001111 607,000 2 -01001111 15-billion 2 -01001111 284,207 2 -01001111 28.80 2 -01001111 1.8047 2 -01001111 434,745 2 -01001111 100-a-week 2 -01001111 19.62 2 -01001111 41.16 2 -01001111 912,763 2 -01001111 1.7220 2 -01001111 1.7715 2 -01001111 468.20 2 -01001111 1.5890 2 -01001111 13,410 2 -01001111 1.5915 2 -01001111 1.7450 2 -01001111 45.63 2 -01001111 8,035 2 -01001111 17.81 2 -01001111 678,000 2 -01001111 39.99 2 -01001111 29,676 2 -01001111 207,148 2 -01001111 6,295 2 -01001111 2,395,000 2 -01001111 10,609 2 -01001111 611,000 2 -01001111 50,675 2 -01001111 5.275 2 -01001111 14,450 2 -01001111 1.6747 2 -01001111 321.78 2 -01001111 1.7170 2 -01001111 3,146,413 2 -01001111 3,485,927 2 -01001111 1,497,000 2 -01001111 52,552 2 -01001111 1.8785 2 -01001111 158,400 2 -01001111 1.0100 2 -01001111 103.72 2 -01001111 1.5717 2 -01001111 2,560,000 2 -01001111 33,800 2 -01001111 1.6680 2 -01001111 143,900 2 -01001111 461.10 2 -01001111 6.355 2 -01001111 546,700 2 -01001111 1.8136 2 -01001111 467.00 2 -01001111 1.063 2 -01001111 175,500 2 -01001111 22.425 2 -01001111 4,176 2 -01001111 1.8360 2 -01001111 1.6343 2 -01001111 46.75-a-share 2 -01001111 118,900 2 -01001111 1.6433 2 -01001111 10,943 2 -01001111 398.30 2 -01001111 69.31 2 -01001111 1,427,000 2 -01001111 6.3350 2 -01001111 39.63 2 -01001111 102,500 2 -01001111 2,352,000 2 -01001111 1.7605 2 -01001111 137,100 2 -01001111 1.6080 2 -01001111 1.154 2 -01001111 72,783 2 -01001111 464.20 2 -01001111 3,814 2 -01001111 7,152 2 -01001111 9,995 2 -01001111 9,920 2 -01001111 17,225,000 2 -01001111 6,668,000 2 -01001111 121,185,000 2 -01001111 1.3440 2 -01001111 1,964,000 2 -01001111 518.50 2 -01001111 1,852,000 2 -01001111 290,700 2 -01001111 16,415 2 -01001111 5,856 2 -01001111 653,100 2 -01001111 34,381,743 2 -01001111 1.7507 2 -01001111 969,000 2 -01001111 15.675 2 -01001111 1,088,000 2 -01001111 29,300 2 -01001111 453.60 2 -01001111 131,100 2 -01001111 38,910 2 -01001111 1.8815 2 -01001111 1.925 2 -01001111 8.9375 2 -01001111 2,442 2 -01001111 5,470 2 -01001111 4,733 2 -01001111 469,700 2 -01001111 3,267,000 2 -01001111 914,000 2 -01001111 42.23 2 -01001111 94.75 2 -01001111 869,000 2 -01001111 12,995 2 -01001111 578,981 2 -01001111 1,305,610 2 -01001111 479.20 2 -01001111 1,533,000 2 -01001111 1.7518 2 -01001111 287,931 2 -01001111 443.10 2 -01001111 60,700 2 -01001111 3,669 2 -01001111 109.25 2 -01001111 2,465 2 -01001111 74,815,000 2 -01001111 1,438 2 -01001111 1.7676 2 -01001111 12,998 2 -01001111 1,000-deductible 2 -01001111 19.375-a-share 2 -01001111 1.3750 2 -01001111 527,400 2 -01001111 121.50 2 -01001111 1.2010 2 -01001111 172,406 2 -01001111 144,800 2 -01001111 1.6989 2 -01001111 1.2030 2 -01001111 3-a-unit 2 -01001111 1,701 2 -01001111 4,050,000 2 -01001111 1.7156 2 -01001111 1,085,000 2 -01001111 10-a-month 2 -01001111 16.3125 2 -01001111 400,400 2 -01001111 1.6949 2 -01001111 1.6265 2 -01001111 243.875 2 -01001111 79,840 2 -01001111 9,386 2 -01001111 438.20 2 -01001111 1,230,000 2 -01001111 761,000 2 -01001111 279,916 2 -01001111 408.60 2 -01001111 1.7127 2 -01001111 251.125 2 -01001111 105.50 2 -01001111 459,393,918 2 -01001111 667,500 2 -01001111 1.7470 2 -01001111 1.1090 2 -01001111 1.1170 2 -01001111 121.125 2 -01001111 46,300 2 -01001111 6.4750 2 -01001111 1.2750 2 -01001111 16-a-barrel 2 -01001111 5,725 2 -01001111 183,950 2 -01001111 2,775 2 -01001111 5,714 2 -01001111 411.40 2 -01001111 1.8190 2 -01001111 3,520 2 -01001111 1.2830 2 -01001111 1.7285 2 -01001111 1,864 2 -01001111 444.10 2 -01001111 83,445,000 2 -01001111 17.41-a-share 2 -01001111 1.7338 2 -01001111 54,050 2 -01001111 122.625 2 -01001111 1.9090 2 -01001111 3,495 2 -01001111 1.6952 2 -01001111 974,000 2 -01001111 1.077 2 -01001111 938,000 2 -01001111 2-a-month 2 -01001111 5,999 2 -01001111 69.875 2 -01001111 1.6221 2 -01001111 19,750 2 -01001111 58.22 2 -01001111 1.5750 2 -01001111 30-billion 2 -01001111 1,759 2 -01001111 736,000 2 -01001111 45.50-a-share 2 -01001111 1.1750 2 -01001111 396.80 2 -01001111 28,085 2 -01001111 6,970 2 -01001111 2,699 2 -01001111 1.4820 2 -01001111 1.2990 2 -01001111 268,080 2 -01001111 1,560,000 2 -01001111 47.40 2 -01001111 86.25 2 -01001111 1.6901 2 -01001111 398.20 2 -01001111 29.835-a-share 2 -01001111 1.8330 2 -01001111 43.70 2 -01001111 39.10 2 -01001111 425.60 2 -01001111 24,760 2 -01001111 6,385 2 -01001111 8,859 2 -01001111 5,499 2 -01001111 1.3510 2 -01001111 77,300 2 -01001111 33.50-a-share 2 -01001111 1,566 2 -01001111 .37 2 -01001111 419,500 2 -01001111 97,000-a-year 2 -01001111 576.50 2 -01001111 1,980,000 2 -01001111 579.80 2 -01001111 500,000-plus 2 -01001111 7,999 2 -01001111 188,400 2 -01001111 1,010,000 2 -01001111 143.75 2 -01001111 491,200 2 -01001111 433.50 2 -01001111 4,720 2 -01001111 304,331 2 -01001111 241,500 2 -01001111 34,600 2 -01001111 24,700 2 -01001111 4,657 2 -01001111 1.7091 2 -01001111 502,202 2 -01001111 165,500 2 -01001111 77.125 2 -01001111 27,495 2 -01001111 31.75-a-share 2 -01001111 440.70 2 -01001111 908,500 2 -01001111 7.865 2 -01001111 319.50 2 -01001111 34.75-a-share 2 -01001111 580.40 2 -01001111 447.60 2 -01001111 44,900 2 -01001111 837,000 2 -01001111 872,220 2 -01001111 26.575 2 -01001111 94.125 2 -01001111 1,615 2 -01001111 165.50 2 -01001111 346,600 2 -01001111 313.50 2 -01001111 670,400 2 -01001111 260,600 2 -01001111 279.60 2 -01001111 257,879 2 -01001111 492,500 2 -01001111 11- 2 -01001111 259,200 2 -01001111 128,600 2 -01001111 428.90 2 -01001111 3,240 2 -01001111 313,125 2 -01001111 537.50 2 -01001111 1.7768 2 -01001111 8,150 2 -01001111 1.7688 2 -01001111 1.6935 2 -01001111 15,249 2 -01001111 1.4840 2 -01001111 10,495 2 -01001111 42,900 2 -01001111 23.25-a-share 2 -01001111 8,883,000 2 -01001111 957.50 2 -01001111 727,830 2 -01001111 410,700 2 -01001111 205,400 2 -01001111 22-million 2 -01001111 219.25 2 -01001111 2.9375 2 -01001111 1.03125 2 -01001111 446,300 2 -01001111 121,300 2 -01001111 1.7722 2 -01001111 30,487 2 -01001111 1.3650 2 -01001111 118.125 2 -01001111 123.90 2 -01001111 3,080 2 -01001111 424.70 2 -01001111 1.5991 2 -01001111 303,838 2 -01001111 182.89 2 -01001111 1,270,000 2 -01001111 206,600 2 -01001111 1,901,000 2 -01001111 817,000 2 -01001111 268,700 2 -01001111 422,500 2 -01001111 9,221 2 -01001111 2,028 2 -01001111 1,905 2 -01001111 270.50 2 -01001111 1.7797 2 -01001111 276,260 2 -01001111 1.5772 2 -01001111 6,850,000 2 -01001111 265,421 2 -01001111 1.6160 2 -01001111 500-million 2 -01001111 100,031 2 -01001111 6.6250 2 -01001111 78.92 2 -01001111 221,127 2 -01001111 52,234 2 -01001111 185,300 2 -01001111 311.85 2 -01001111 Mednews 2 -01001111 281.75 2 -01001111 77,250 2 -01001111 16,000-a-year 2 -01001111 1,488,000 2 -01001111 2,437,000 2 -01001111 50-a-day 2 -01001111 132,300 2 -01001111 24,400 2 -01001111 30,850 2 -01001111 1,772 2 -01001111 89,400 2 -01001111 1.4218 2 -01001111 1.5512 2 -01001111 88.875 2 -01001111 1,032 2 -01001111 1.0150 2 -01001111 1.005 2 -01001111 2,072,900 2 -01001111 8,653 2 -01001111 1,954 2 -01001111 147,325 2 -01001111 167.875 2 -01001111 1.397 2 -01001111 1.405 2 -01001111 66,800 2 -01001111 160.23 2 -01001111 417,455 2 -01001111 21,900 2 -01001111 84,400 2 -01001111 483,000 2 -01001111 2,431 2 -01001111 145,700 2 -01001111 1,556 2 -01001111 1.6320 2 -01001111 119.875 2 -01001111 1.114 2 -01001111 455.10 2 -01001111 297,523 2 -01001111 5,715,000 2 -01001111 11,130 2 -01001111 322.02 2 -01001111 402.50 2 -01001111 116,810 2 -01001111 14.75-a-share 2 -01001111 126,887 2 -01001111 3.5625 2 -01001111 6,425 2 -01001111 80.125 2 -01001111 40-a-week 2 -01001111 292,400 2 -01001111 2,220,000 2 -01001111 15.75-a-share 2 -01001111 357,200 2 -01001111 1.4265 2 -01001111 183,789 2 -01001111 1.6651 2 -01001111 1,396 2 -01001111 50-a-barrel 2 -01001111 809,700 2 -01001111 32- 2 -01001111 109.975 2 -01001111 11,542 2 -01001111 10,440 2 -01001111 1.5797 2 -01001111 45,125 2 -01001111 500,726 2 -01001111 943,000 2 -01001111 3-a-person 2 -01001111 82-a-share 2 -01001111 1.5773 2 -01001111 64.80 2 -01001111 59,100 2 -01001111 26.01 2 -01001111 360.20 2 -01001111 6,740 2 -01001111 6,640 2 -01001111 5,790 2 -01001111 33,600 2 -01001111 1.7043 2 -01001111 10.15-a-share 2 -01001111 1,559,000 2 -01001111 299,985 2 -01001111 5,822,000 2 -01001111 1,241,000 2 -01001111 456.70 2 -01001111 11.250 2 -01001111 389.80 2 -01001111 44,400 2 -01001111 393.10 2 -01001111 33.65-a-share 2 -01001111 11,407 2 -01001111 10,798 2 -01001111 84.125 2 -01001111 387,500 2 -01001111 1,625,000 2 -01001111 462.05 2 -01001111 16.92 2 -01001111 289,255 2 -01001111 13,566 2 -01001111 1.5385 2 -01001111 1.5792 2 -01001111 139,300 2 -01001111 1.6552 2 -01001111 1.6270 2 -01001111 1.8515 2 -01001111 proverty 2 -01001111 281,192 2 -01001111 14.183 2 -01001111 150,700 2 -01001111 2.175 2 -01001111 81.875 2 -01001111 786,000 2 -01001111 55.44 2 -01001111 222.10 2 -01001111 575.50 2 -01001111 3,574 2 -01001111 6.7150 2 -01001111 273,121 2 -01001111 10,385 2 -01001111 1.5460 2 -01001111 370.35 2 -01001111 32,200 2 -01001111 492.30 2 -01001111 146.94 2 -01001111 445.30 2 -01001111 54,100 2 -01001111 43,300 2 -01001111 23,800 2 -01001111 31,700 2 -01001111 100,000-plus 2 -01001111 1,142.86 2 -01001111 150,800 2 -01001111 1.4340 2 -01001111 39,400 2 -01001111 56,900 2 -01001111 14.93 2 -01001111 2,025 2 -01001111 29.31 2 -01001111 717,000 2 -01001111 500-a-day 2 -01001111 27,315 2 -01001111 272,726 2 -01001111 4-a-barrel 2 -01001111 12,329 2 -01001111 6,660 2 -01001111 15,468 2 -01001111 57,700 2 -01001111 1,555,000 2 -01001111 485,547 2 -01001111 1,321,700 2 -01001111 1.5488 2 -01001111 734,900 2 -01001111 788,000 2 -01001111 1,410,000 2 -01001111 2,112,000 2 -01001111 532.60 2 -01001111 20.25-a-share 2 -01001111 120,300 2 -01001111 490.40 2 -01001111 35,400 2 -01001111 1.8290 2 -01001111 26,850 2 -01001111 21,750,000 2 -01001111 28,800 2 -01001111 485.30 2 -01001111 337,993 2 -01001111 854,669 2 -01001111 7,569 2 -01001111 288,514 2 -01001111 2,027,000 2 -01001111 286,110 2 -01001111 315.79 2 -01001111 1.6982 2 -01001111 5,040 2 -01001111 217,500 2 -01001111 317.16 2 -01001111 318,500 2 -01001111 500-a-plate 2 -01001111 233,325 2 -01001111 148,200 2 -01001111 1.5375 2 -01001111 113.75 2 -01001111 2,490,000 2 -01001111 51,700 2 -01001111 53,700 2 -01001111 300,196,770.97 2 -01001111 1,312 2 -01001111 66,710 2 -01001111 25,910 2 -01001111 109.75 2 -01001111 3,462 2 -01001111 1.4310 2 -01001111 279,507 2 -01001111 17,250 2 -01001111 40.80 2 -01001111 2,829 2 -01001111 1,392,000 2 -01001111 1,442,000 2 -01001111 156,576 2 -01001111 481,250 2 -01001111 1,595 2 -01001111 69,333 2 -01001111 53.35 2 -01001111 620,200 2 -01001111 1,256 2 -01001111 481.50 2 -01001111 6,723 2 -01001111 11.1875 2 -01001111 12,287 2 -01001111 3,571 2 -01001111 448.20 2 -01001111 12,474 2 -01001111 802,200 2 -01001111 325,400 2 -01001111 45- 2 -01001111 23-a-barrel 2 -01001111 41.05 2 -01001111 79,700 2 -01001111 5,000-a-month 2 -01001111 483.50 2 -01001111 1.7863 2 -01001111 112,400 2 -01001111 93,600 2 -01001111 1,743 2 -01001111 31,600 2 -01001111 10-an-hour 2 -01001111 449.20 2 -01001111 502.70 2 -01001111 478.20 2 -01001111 1.5875 2 -01001111 1.4333 2 -01001111 388.40 2 -01001111 566,000 2 -01001111 87.625 2 -01001111 75,500 2 -01001111 48.66 2 -01001111 9,495 2 -01001111 123,100 2 -01001111 2,187,000 2 -01001111 276.50 2 -01001111 83.375 2 -01001111 10,680 2 -01001111 8,802 2 -01001111 133,500 2 -01001111 4,295 2 -01001111 761,250 2 -01001111 110.75 2 -01001111 266,005 2 -01001111 229,407 2 -01001111 105,200 2 -01001111 469.50 2 -01001111 155,131 2 -01001111 1,305,000 2 -01001111 14,822 2 -01001111 1.7144 2 -01001111 1,936,000 2 -01001111 405.60 2 -01001111 1,395 2 -01001111 95,600 2 -01001111 443.80 2 -01001111 1.6238 2 -01001111 7,775 2 -01001111 445.50 2 -01001111 5.9325 2 -01001111 1.20-a-share 2 -01001111 17,945 2 -01001111 12,230 2 -01001111 17,345 2 -01001111 13,495 2 -01001111 10,275 2 -01001111 629,847 2 -01001111 937,000 2 -01001111 1.6138 2 -01001111 1.5637 2 -01001111 448.80 2 -01001111 .06 2 -01001111 24,464 2 -01001111 368,400 2 -01001111 80.375 2 -01001111 2,393 2 -01001111 12,999 2 -01001111 411.50 2 -01001111 200,000-plus 2 -01001111 5,590 2 -01001111 4,944 2 -01001111 34.72 2 -01001111 956,000 2 -01001111 1,127 2 -01001111 lytic 2 -01001111 152,500 2 -01001111 74.625 2 -01001111 32,300 2 -01001111 7,425 2 -01001111 1,232,000 2 -01001111 31,800 2 -01001111 446.50 2 -01001111 8,500,000 2 -01001111 1.6113 2 -01001111 412.60 2 -01001111 702,044 2 -01001111 1.6163 2 -01001111 738,996 2 -01001111 1.011 2 -01001111 444.30 2 -01001111 92.625 2 -01001111 1.6042 2 -01001111 175,100 2 -01001111 43,200 2 -01001111 5.975 2 -01001111 442.80 2 -01001111 444.90 2 -01001111 28,855 2 -01001111 25,200 2 -01001111 81,500 2 -01001111 164.50 2 -01001111 405.70 2 -01001111 36.15 2 -01001111 227,412 2 -01001111 305,741 2 -01001111 401,464 2 -01001111 47,418 2 -01001111 14,214 2 -01001111 12,539 2 -01001111 555.80 2 -01001111 13,899 2 -01001111 44,200 2 -01001111 1.8832 2 -01001111 1.5878 2 -01001111 1.5344 2 -01001111 547.50 2 -01001111 1,327 2 -01001111 62.125 2 -01001111 310,300 2 -01001111 3,660 2 -01001111 228,306 2 -01001111 3.25-a-share 2 -01001111 124,500 2 -01001111 100,100 2 -01001111 1.7915 2 -01001111 42,927 2 -01001111 2,340,000 2 -01001111 922,000 2 -01001111 1,248 2 -01001111 1,665 2 -01001111 17,697 2 -01001111 859,700 2 -01001111 1,180,000 2 -01001111 1.8608 2 -01001111 421.10 2 -01001111 455.50 2 -01001111 563.60 2 -01001111 262,540 2 -01001111 16,062 2 -01001111 6,075,329 2 -01001111 56,500 2 -01001111 7,742 2 -01001111 48.69 2 -01001111 64.15-a-share 2 -01001111 156.50 2 -01001111 32.98 2 -01001111 9,419 2 -01001111 33,900 2 -01001111 4,990 2 -01001111 22,650 2 -01001111 6,490 2 -01001111 20.24 2 -01001111 298,010 2 -01001111 421.80 2 -01001111 421,250 2 -01001111 30,264,116 2 -01001111 1,803 2 -01001111 1.1160 2 -01001111 30,200 2 -01001111 52,600 2 -01001111 129,600 2 -01001111 1,423 2 -01001111 2,895 2 -01001111 1.6008 2 -01001111 451.60 2 -01001111 7,747,000 2 -01001111 934,153 2 -01001111 443.70 2 -01001111 1.6038 2 -01001111 705,000 2 -01001111 871,000 2 -01001111 71,500 2 -01001111 309.18 2 -01001111 291,900 2 -01001111 2,045 2 -01001111 131.625 2 -01001111 3,261,000 2 -01001111 1,860,000 2 -01001111 6,042 2 -01001111 460.80 2 -01001111 299,366 2 -01001111 1,951 2 -01001111 21.32 2 -01001111 9,399 2 -01001111 1.6283 2 -01001111 577,500 2 -01001111 1.132 2 -01001111 5,470,000 2 -01001111 81,600 2 -01001111 535.70 2 -01001111 278,300 2 -01001111 107,200 2 -01001111 190,809 2 -01001111 408,500 2 -01001111 1.4338 2 -01001111 395.50 2 -01001111 1.6025 2 -01001111 2,360 2 -01001111 1,984,000 2 -01001111 936,000 2 -01001111 370.80 2 -01001111 13.00 2 -01001111 29.59 2 -01001111 1.8870 2 -01001111 614,000 2 -01001111 61,275 2 -01001111 15,150 2 -01001111 288,970 2 -01001111 453.70 2 -01001111 8,690,000 2 -01001111 32.77 2 -01001111 500-a-store 2 -01001111 1.6590 2 -01001111 4,299 2 -01001111 26,600 2 -01001111 27,900 2 -01001111 116.125 2 -01001111 58,540 2 -01001111 1.5735 2 -01001111 9,850 2 -01001111 39-a-share 2 -01001111 307.59 2 -01001111 129,764 2 -01001111 10.75-a-share 2 -01001111 294,510 2 -01001111 708,333 2 -01001111 459.40 2 -01001111 31,850 2 -01001111 1.9005 2 -01001111 36.125-a-share 2 -01001111 165,630 2 -01001111 11,203 2 -01001111 8.365 2 -01001111 88,900 2 -01001111 171.07 2 -01001111 1,351.50 2 -01001111 1,110,000 2 -01001111 1,567 2 -01001111 293,566 2 -01001111 1.6030 2 -01001111 1,361 2 -01001111 769,000 2 -01001111 6,800,000 2 -01001111 58.45 2 -01001111 1.5780 2 -01001111 1.5683 2 -01001111 1.6296 2 -01001111 21.88 2 -01001111 1.305 2 -01001111 66,100 2 -01001111 18.385 2 -01001111 294,858 2 -01001111 440.90 2 -01001111 1.6185 2 -01001111 1,226 2 -01001111 7,529 2 -01001111 9,136 2 -01001111 8,823 2 -01001111 545.20 2 -01001111 70-million 2 -01001111 310.42 2 -01001111 155,453 2 -01001111 7,653 2 -01001111 77.75 2 -01001111 1.6977 2 -01001111 263,344 2 -01001111 18,484 2 -01001111 831,000 2 -01001111 1,789 2 -01001111 311.81 2 -01001111 58,995 2 -01001111 3,539,000 2 -01001111 201,141 2 -01001111 91.375 2 -01001111 478.50 2 -01001111 6,488 2 -01001111 994,000 2 -01001111 1.0465 2 -01001111 280.50 2 -01001111 56,700 2 -01001111 410.20 2 -01001111 470.60 2 -01001111 1,670,000 2 -01001111 949,000 2 -01001111 3,769 2 -01001111 32,639 2 -01001111 3,169 2 -01001111 200-billion 2 -01001111 134,467 2 -01001111 282,297 2 -01001111 15,600 3 -01001111 367.60 3 -01001111 59,700 3 -01001111 1,360,000 3 -01001111 25.40 3 -01001111 1.5610 3 -01001111 30.10 3 -01001111 87,500 3 -01001111 25,400 3 -01001111 70.625 3 -01001111 462.90 3 -01001111 452.75 3 -01001111 2165 3 -01001111 14,700 3 -01001111 18,900 3 -01001111 132-a-share 3 -01001111 82.625 3 -01001111 10,450 3 -01001111 111.125 3 -01001111 73.125 3 -01001111 1,815,000 3 -01001111 431,000 3 -01001111 383,000 3 -01001111 98,100 3 -01001111 210.75 3 -01001111 1,140,000 3 -01001111 57,600 3 -01001111 4,760 3 -01001111 699,000 3 -01001111 116,500 3 -01001111 10,350 3 -01001111 57,183 3 -01001111 250,000-a-year 3 -01001111 2,514 3 -01001111 899,443 3 -01001111 3.4375 3 -01001111 92.50-a-share 3 -01001111 106,900 3 -01001111 41.875 3 -01001111 23.95 3 -01001111 308.14 3 -01001111 306.71 3 -01001111 18,100 3 -01001111 882,000 3 -01001111 1.702 3 -01001111 14,240 3 -01001111 .21 3 -01001111 2,516 3 -01001111 402.20 3 -01001111 864,000 3 -01001111 4,499 3 -01001111 5,795 3 -01001111 1,116 3 -01001111 64.125 3 -01001111 114.25 3 -01001111 123,700 3 -01001111 66.625 3 -01001111 117.50 3 -01001111 65.375 3 -01001111 2,898 3 -01001111 79.375 3 -01001111 71,900 3 -01001111 84.875 3 -01001111 916,000 3 -01001111 638,000 3 -01001111 1.6045 3 -01001111 262,500 3 -01001111 450.20 3 -01001111 11,250,000 3 -01001111 2,099 3 -01001111 3,840 3 -01001111 4,770,000 3 -01001111 134,500 3 -01001111 392.20 3 -01001111 91,700 3 -01001111 111,600 3 -01001111 79.125 3 -01001111 5,000-a-year 3 -01001111 69.375 3 -01001111 759,000 3 -01001111 828,000 3 -01001111 1,451,000 3 -01001111 452.20 3 -01001111 400-an-ounce 3 -01001111 1,253 3 -01001111 125-a-share 3 -01001111 108-a-share 3 -01001111 1,840,000 3 -01001111 Yawk 3 -01001111 violence-prone 3 -01001111 26,000-a-year 3 -01001111 154.50 3 -01001111 921,000 3 -01001111 125,800 3 -01001111 2,686 3 -01001111 71.625 3 -01001111 Acutrim 3 -01001111 622,725 3 -01001111 172,500 3 -01001111 1.5535 3 -01001111 122,600 3 -01001111 133,250 3 -01001111 25-million 3 -01001111 26,800 3 -01001111 121.31 3 -01001111 390.30 3 -01001111 911,000 3 -01001111 12,340 3 -01001111 693,000 3 -01001111 147.75 3 -01001111 1.6220 3 -01001111 48.50-a-share 3 -01001111 841-a-share 3 -01001111 100.125 3 -01001111 514,000 3 -01001111 1,637,000 3 -01001111 92.25 3 -01001111 76,500 3 -01001111 58,900 3 -01001111 5-million 3 -01001111 34,500 3 -01001111 103.75 3 -01001111 127,100 3 -01001111 68,500 3 -01001111 494,000 3 -01001111 43,400 3 -01001111 1.3625 3 -01001111 912,000 3 -01001111 2,060 3 -01001111 24.61 3 -01001111 1,757,000 3 -01001111 72.375 3 -01001111 99,300 3 -01001111 68,100 3 -01001111 23.20 3 -01001111 23,700 3 -01001111 894,000 3 -01001111 39,700 3 -01001111 42,300 3 -01001111 18.47 3 -01001111 801,000 3 -01001111 307,491 3 -01001111 8,230,000 3 -01001111 1,973 3 -01001111 1.6800 3 -01001111 621,000 3 -01001111 429,000 3 -01001111 297,400 3 -01001111 29,900 3 -01001111 1.8030 3 -01001111 1.8315 3 -01001111 5,799 3 -01001111 15,790 3 -01001111 477.10 3 -01001111 1,370,000 3 -01001111 696,000 3 -01001111 766,000 3 -01001111 33,500 3 -01001111 8,495 3 -01001111 5,295 3 -01001111 939,000 3 -01001111 .32 3 -01001111 41.45 3 -01001111 543,000 3 -01001111 459,000 3 -01001111 336,640 3 -01001111 714,000 3 -01001111 2,370,000 3 -01001111 1,671 3 -01001111 169,500 3 -01001111 812,500 3 -01001111 1,665,000 3 -01001111 8,999 3 -01001111 23,900 3 -01001111 82,800 3 -01001111 46,500 3 -01001111 1,736 3 -01001111 1,820,000 3 -01001111 21,250 3 -01001111 103,900 3 -01001111 1,261,000 3 -01001111 48,600 3 -01001111 6,299 3 -01001111 403.40 3 -01001111 403.60 3 -01001111 .13 3 -01001111 66,342 3 -01001111 1,999 3 -01001111 3-a-barrel 3 -01001111 76.875 3 -01001111 1,489 3 -01001111 84.625 3 -01001111 453.10 3 -01001111 19.07 3 -01001111 1.8915 3 -01001111 1.7075 3 -01001111 666,666 3 -01001111 89.875 3 -01001111 17.05-a-share 3 -01001111 82.875 3 -01001111 928,000 3 -01001111 51,200 3 -01001111 92.375 3 -01001111 701,000 3 -01001111 1,409 3 -01001111 456.60 3 -01001111 40,000-plus 3 -01001111 301,774 3 -01001111 33,200 3 -01001111 11,995 3 -01001111 7,995 3 -01001111 2,184 3 -01001111 6,120 3 -01001111 115,600 3 -01001111 1,730,000 3 -01001111 278,503 3 -01001111 52,200 3 -01001111 11,295 3 -01001111 24.25-a-share 3 -01001111 50.72 3 -01001111 1.7735 3 -01001111 953,000 3 -01001111 10,480 3 -01001111 486,000 3 -01001111 486.10 3 -01001111 1.7405 3 -01001111 1.7645 3 -01001111 7.75-a-share 3 -01001111 52.725 3 -01001111 450.80 3 -01001111 461.90 3 -01001111 2,026,000 3 -01001111 876,000 3 -01001111 53.15 3 -01001111 978,000 3 -01001111 2,025,850 3 -01001111 14.80-a-share 3 -01001111 3,985,000 3 -01001111 303,390 3 -01001111 1.0920 3 -01001111 7,380 3 -01001111 2,095 3 -01001111 1.7030 3 -01001111 1,035,000 3 -01001111 1,103 3 -01001111 463.55 3 -01001111 244,949 3 -01001111 269,537 3 -01001111 56.875 3 -01001111 1,475,000 3 -01001111 2,046,000 3 -01001111 102.25 3 -01001111 316,500 3 -01001111 106.50 3 -01001111 1,023,000 3 -01001111 113.125 3 -01001111 4,450 3 -01001111 896,000 3 -01001111 1,332 3 -01001111 1,012 3 -01001111 79,900 3 -01001111 758,000 3 -01001111 779,000 3 -01001111 55.60 3 -01001111 405.10 3 -01001111 963,000 3 -01001111 405.50 3 -01001111 1,240,000 3 -01001111 74,800 3 -01001111 456.90 3 -01001111 5,460,000 3 -01001111 135,900 3 -01001111 84.75 3 -01001111 45,200 3 -01001111 1,476,000 3 -01001111 84.25 3 -01001111 1,385 3 -01001111 1,002.31 3 -01001111 1,477 3 -01001111 71.875 3 -01001111 1.6615 3 -01001111 1.6566 3 -01001111 451.20 3 -01001111 804,000 3 -01001111 155-a-share 3 -01001111 466.50 3 -01001111 4,699 3 -01001111 652.50 3 -01001111 2.65-a-share 3 -01001111 451.90 3 -01001111 261,650 3 -01001111 481.70 3 -01001111 456.50 3 -01001111 996,000 3 -01001111 626,000 3 -01001111 2,083,000 3 -01001111 98.60 3 -01001111 7,010 3 -01001111 25.30 3 -01001111 4,350,000 3 -01001111 92,885,000 3 -01001111 450.60 3 -01001111 163,400 3 -01001111 1,105 3 -01001111 453.90 3 -01001111 476,000 3 -01001111 1,659 3 -01001111 653,000 3 -01001111 113.25 3 -01001111 276,030 3 -01001111 31,250 3 -01001111 22,180 3 -01001111 284,396 3 -01001111 1.7580 3 -01001111 2,945 3 -01001111 455.80 3 -01001111 8,364 3 -01001111 774,000 3 -01001111 609,000 3 -01001111 1.6060 3 -01001111 457.10 3 -01001111 158.50 3 -01001111 9.50-a-share 3 -01001111 958,000 3 -01001111 7,150,000 3 -01001111 1,470,000 3 -01001111 884,000 3 -01001111 103,500 3 -01001111 39,900 3 -01001111 457.40 3 -01001111 488.10 3 -01001111 48,250 3 -01001111 113.875 3 -01001111 21.70 3 -01001111 1.8860 3 -01001111 86.375 3 -01001111 449.80 3 -01001111 1.775 3 -01001111 452.30 3 -01001111 22.25-a-share 3 -01001111 16,300 3 -01001111 66.375 3 -01001111 1,975 3 -01001111 149.95 3 -01001111 298.95 3 -01001111 597,000 3 -01001111 1,809,000 3 -01001111 3,050,000 3 -01001111 1.5760 3 -01001111 1,546 3 -01001111 41.93 3 -01001111 15,509 3 -01001111 17,373 3 -01001111 7,110 3 -01001111 217,392 3 -01001111 37,152 3 -01001111 453,750 3 -01001111 82.125 3 -01001111 10,450,000 3 -01001111 258.72 3 -01001111 862,000 3 -01001111 623,000 3 -01001111 183,500 3 -01001111 6,990 3 -01001111 6,890 3 -01001111 632,000 3 -01001111 878,000 3 -01001111 642,000 3 -01001111 38,900 3 -01001111 165.09 3 -01001111 15,800 3 -01001111 464.10 3 -01001111 2.6875 3 -01001111 838,000 3 -01001111 460.70 3 -01001111 8,610 3 -01001111 440.80 3 -01001111 32,900 3 -01001111 466.80 3 -01001111 74.375 3 -01001111 100,800 3 -01001111 1,352 3 -01001111 449.70 3 -01001111 5,690 3 -01001111 5,998 3 -01001111 476.50 3 -01001111 97,900 3 -01001111 53,500 3 -01001111 2,415 3 -01001111 559,287 3 -01001111 1,266 3 -01001111 485.10 3 -01001111 1.6140 3 -01001111 15.84 3 -01001111 2,257,000 3 -01001111 2,873 3 -01001111 5,899 3 -01001111 2,320,000 3 -01001111 1,130,000 3 -01001111 107,500 3 -01001111 9,870,000 3 -01001111 22,458 3 -01001111 14,400 3 -01001111 724,000 3 -01001111 117,500 3 -01001111 497,000 3 -01001111 1.8880 3 -01001111 9,815 3 -01001111 62-a-share 3 -01001111 68,900 3 -01001111 64,300 3 -01001111 706,000 3 -01001111 366.99 3 -01001111 408.70 3 -01001111 35,479 3 -01001111 981,000 3 -01001111 126,826 3 -01001111 258,995 3 -01001111 443.20 3 -01001111 43,600 3 -01001111 2.50-a-share 3 -01001111 16,750 3 -01001111 212,500 3 -01001111 1,215 3 -01001111 318.29 3 -01001111 437.40 3 -01001111 22,600 3 -01001111 446.90 3 -01001111 237,500 3 -01001111 34.95 3 -01001111 430.50 3 -01001111 29,700 3 -01001111 289,997 3 -01001111 187,317 3 -01001111 453.20 3 -01001111 117,200 3 -01001111 48,451 3 -01001111 697,000 3 -01001111 34,300 3 -01001111 446.10 3 -01001111 842,000 3 -01001111 1,600,000 3 -01001111 444.20 3 -01001111 6.1875 3 -01001111 121,700 3 -01001111 1.6169 3 -01001111 1.039 3 -01001111 1.7993 3 -01001111 1.6003 3 -01001111 2,064.35 3 -01001111 23,100 3 -01001111 273,400 3 -01001111 369,000 3 -01001111 134,400 3 -01001111 129,900 3 -01001111 909,000 3 -01001111 23,750 3 -01001111 1.5838 3 -01001111 21.78 3 -01001111 1.6380 3 -01001111 552.90 3 -01001111 514.43 3 -01001111 267,668 3 -01001111 285,148 3 -01001111 95,500 3 -01001111 71,125 3 -01001111 906,000 3 -01001111 897,000 3 -01001111 13,245 3 -01001111 1,154 3 -01001111 2,459,000 3 -01001111 23.80 3 -01001111 478.10 3 -01001111 92,500 3 -01001111 433.20 3 -01001111 13,700 3 -01001111 157.50 3 -01001111 624,000 3 -01001111 3,860,000 3 -01001111 4,605 3 -01001111 75-an-hour 3 -01001111 7,148 3 -01001111 30,900 3 -01001111 10.25-a-share 3 -01001111 479,000 3 -01001111 1.4320 3 -01001111 374.50 3 -01001111 447,212,558 3 -01001111 85.25 3 -01001111 88.25 3 -01001111 462.80 3 -01001111 91,300 3 -01001111 88.125 3 -01001111 1-a-barrel 3 -01001111 408.40 3 -01001111 200-an-hour 3 -01001111 24.08 3 -01001111 17.25-a-share 3 -01001111 88.625 3 -01001111 37,400 3 -01001111 6,450 3 -01001111 275,356 3 -01001111 905,000 3 -01001111 843,000 3 -01001111 25,441 3 -01001111 671,000 3 -01001111 1.7135 3 -01001111 682,000 3 -01001111 463,000 3 -01001111 5,957 3 -01001111 959,000 3 -01001111 407.40 3 -01001111 435.70 3 -01001111 947,000 3 -01001111 512.50 3 -01001111 453,740 3 -01001111 407.20 3 -01001111 1.8460 3 -01001111 120.50 3 -01001111 246,533 3 -01001111 2,240,000 3 -01001111 877,000 3 -01001111 1,573 3 -01001111 1.80-a-share 3 -01001111 1,316,000 3 -01001111 204,500 3 -01001111 11,778 3 -01001111 1.6995 3 -01001111 432.30 3 -01001111 230,119 3 -01001111 226,197 3 -01001111 83.10 3 -01001111 362,500 3 -01001111 1,493 3 -01001111 435.30 3 -01001111 1,251 3 -01001111 19.125-a-share 3 -01001111 987,000 3 -01001111 105.25 3 -01001111 1,227 3 -01001111 16,400 3 -01001111 726,000 3 -01001111 236,496 3 -01001111 444.40 3 -01001111 425.90 3 -01001111 .26 3 -01001111 90.375 3 -01001111 1,373 3 -01001111 235,730 3 -01001111 399.30 3 -01001111 130,800 3 -01001111 984,000 3 -01001111 1.5725 3 -01001111 21,740 3 -01001111 500,000-a-year 3 -01001111 429.60 3 -01001111 367.40 3 -01001111 40,600 3 -01001111 1.5700 3 -01001111 27,300 3 -01001111 3,050 3 -01001111 68.625 3 -01001111 1,880,000 3 -01001111 1.5530 3 -01001111 482,000 3 -01001111 149,500 3 -01001111 31.87-a-share 3 -01001111 201,800 3 -01001111 1,890,000 3 -01001111 1,104 3 -01001111 927,000 3 -01001111 918,000 3 -01001111 1.75-a-share 3 -01001111 97.125 3 -01001111 2,127,000 3 -01001111 2,153 3 -01001111 121,200 3 -01001111 1,625 3 -01001111 236,305 3 -01001111 20,600 3 -01001111 2,285 3 -01001111 2,999 3 -01001111 1.7613 3 -01001111 684,000 3 -01001111 19.425-a-share 3 -01001111 523,500 3 -01001111 421.20 3 -01001111 1.40-a-share 3 -01001111 132,600 3 -01001111 1,630,000 3 -01001111 11,611 3 -01001111 54,400 3 -01001111 1,765 3 -01001111 140,929 3 -01001111 10,250 3 -01001111 106-a-share 3 -01001111 3.1625 3 -01001111 30,100 3 -01001111 6.335 3 -01001111 14,145 3 -01001111 141,200 3 -01001111 458,000 3 -01001111 30.40 3 -01001111 19.15 3 -01001111 34,400 3 -01001111 723,000 3 -01001111 1.7700 3 -01001111 8,250,000 3 -01001111 1,598,000 3 -01001111 1,652 3 -01001111 907,000 3 -01001111 500-million-a-year 3 -01001111 17,850 3 -01001111 2,200-a-dose 3 -01001111 34,700 3 -01001111 1.7475 3 -01001111 9,642 3 -01001111 123,500 3 -01001111 21.25-a-share 3 -01001111 7,920 3 -01001111 2,375 3 -01001111 529.50 3 -01001111 1,334 3 -01001111 1,254 3 -01001111 360.50 3 -01001111 295,107 3 -01001111 365.50 3 -01001111 140,200 3 -01001111 1,014,000 3 -01001111 463.10 3 -01001111 4,349 3 -01001111 22,700 3 -01001111 1,068 3 -01001111 462.10 3 -01001111 2,505 3 -01001111 1.2950 3 -01001111 95,300 4 -01001111 4,360 4 -01001111 454.90 4 -01001111 76.625 4 -01001111 85.625 4 -01001111 511,000 4 -01001111 812,000 4 -01001111 3,849 4 -01001111 20-a-barrel 4 -01001111 1,979,000 4 -01001111 567,000 4 -01001111 1,325,000 4 -01001111 100,000,000 4 -01001111 73.875 4 -01001111 1,533 4 -01001111 45,500 4 -01001111 50-million 4 -01001111 1,846 4 -01001111 1,570,000 4 -01001111 751,000 4 -01001111 866,000 4 -01001111 962,000 4 -01001111 106.625 4 -01001111 442.90 4 -01001111 1.25-a-share 4 -01001111 20.20 4 -01001111 452.80 4 -01001111 972,000 4 -01001111 56,533 4 -01001111 437.10 4 -01001111 145.10 4 -01001111 1,018 4 -01001111 449.40 4 -01001111 10,800 4 -01001111 745,000 4 -01001111 252,500 4 -01001111 89.25 4 -01001111 2,480,000 4 -01001111 633,000 4 -01001111 66.125 4 -01001111 792,000 4 -01001111 1,680,000 4 -01001111 441.80 4 -01001111 844,000 4 -01001111 1,209 4 -01001111 1.6865 4 -01001111 1.5815 4 -01001111 432.80 4 -01001111 386,000 4 -01001111 989,000 4 -01001111 1.6975 4 -01001111 447,000 4 -01001111 430.80 4 -01001111 81,100 4 -01001111 88,800 4 -01001111 454.20 4 -01001111 39,500 4 -01001111 1,948 4 -01001111 1,889 4 -01001111 934,000 4 -01001111 16,200 4 -01001111 821,000 4 -01001111 7,495 4 -01001111 21,300 4 -01001111 892,000 4 -01001111 2,143,000 4 -01001111 577,000 4 -01001111 1,117 4 -01001111 20,760 4 -01001111 1,325 4 -01001111 6.6875 4 -01001111 1,062 4 -01001111 1.8755 4 -01001111 2,131,000 4 -01001111 9.25-a-share 4 -01001111 87.875 4 -01001111 901,000 4 -01001111 57.50-a-share 4 -01001111 908,000 4 -01001111 2,099,000 4 -01001111 1,033 4 -01001111 606,000 4 -01001111 836,000 4 -01001111 79.875 4 -01001111 1.6850 4 -01001111 1,186 4 -01001111 78.125 4 -01001111 135,600 4 -01001111 111.50 4 -01001111 1,799 4 -01001111 976,000 4 -01001111 130,500 4 -01001111 1.6120 4 -01001111 771,000 4 -01001111 77.15 4 -01001111 1,200,000 4 -01001111 2,028,000 4 -01001111 86.75 4 -01001111 474.90 4 -01001111 1.4050 4 -01001111 797,000 4 -01001111 12.25-a-share 4 -01001111 71.125 4 -01001111 84-a-share 4 -01001111 9.75-a-share 4 -01001111 477.50 4 -01001111 10,930 4 -01001111 16,700 4 -01001111 57.125 4 -01001111 468.70 4 -01001111 3,595 4 -01001111 1.7720 4 -01001111 4,190 4 -01001111 10,995 4 -01001111 1,135 4 -01001111 292,000 4 -01001111 229,000 4 -01001111 1.6180 4 -01001111 1.6183 4 -01001111 3,220 4 -01001111 226,000 4 -01001111 22,100 4 -01001111 111.75 4 -01001111 459.70 4 -01001111 1.6810 4 -01001111 83.125 4 -01001111 145-a-share 4 -01001111 446.30 4 -01001111 454.80 4 -01001111 69,500 4 -01001111 40,000-a-year 4 -01001111 746,000 4 -01001111 92,885 4 -01001111 84.375 4 -01001111 59,500 4 -01001111 93.25 4 -01001111 964,000 4 -01001111 895,000 4 -01001111 451.10 4 -01001111 444.80 4 -01001111 870,000 4 -01001111 3,252 4 -01001111 1,109 4 -01001111 78.625 4 -01001111 1,142 4 -01001111 119,500 4 -01001111 2,995 4 -01001111 563,000 4 -01001111 2,595 4 -01001111 412.20 4 -01001111 807,000 4 -01001111 789,000 4 -01001111 15,300 4 -01001111 1.5870 4 -01001111 37,100 4 -01001111 31,400 4 -01001111 3,995 4 -01001111 2,205 4 -01001111 1,495,000 4 -01001111 17,900 4 -01001111 957,000 4 -01001111 11,300 4 -01001111 737,000 4 -01001111 160,618 4 -01001111 6,599 4 -01001111 893,000 4 -01001111 448.90 4 -01001111 1,720,000 4 -01001111 983,000 4 -01001111 55.875 4 -01001111 659,000 4 -01001111 1,348 4 -01001111 649,000 4 -01001111 802,000 4 -01001111 20,800 4 -01001111 1.6135 4 -01001111 1.1440 4 -01001111 45,400 4 -01001111 1.6173 4 -01001111 3.3125 4 -01001111 19.08 4 -01001111 121-a-share 4 -01001111 453.40 4 -01001111 431.90 4 -01001111 5,336 4 -01001111 631,000 4 -01001111 29,500 4 -01001111 94.50 4 -01001111 15,802 4 -01001111 21,600 4 -01001111 1,330,000 4 -01001111 11,700 4 -01001111 19.61 4 -01001111 1,475 4 -01001111 704,000 4 -01001111 3.1875 4 -01001111 447.90 4 -01001111 3,125 4 -01001111 721,000 4 -01001111 655,000 4 -01001111 458.10 4 -01001111 24,000-a-year 4 -01001111 char 4 -01001111 1,149 4 -01001111 457.90 4 -01001111 1,801 4 -01001111 833,000 4 -01001111 596,000 4 -01001111 533,000 4 -01001111 449.50 4 -01001111 6,495 4 -01001111 40-million 4 -01001111 4,750 4 -01001111 37.50-a-share 4 -01001111 1,863,000 4 -01001111 14,750 4 -01001111 8,995 4 -01001111 50,100 4 -01001111 35,500 4 -01001111 458.60 4 -01001111 1,453,000 4 -01001111 593,000 4 -01001111 85.125 4 -01001111 1,465 4 -01001111 17,416 4 -01001111 6,949 4 -01001111 53,200 4 -01001111 17.72 4 -01001111 1,770 4 -01001111 652,000 4 -01001111 446.20 4 -01001111 1,615,000 4 -01001111 28.50-a-share 4 -01001111 1,175 4 -01001111 508,000 4 -01001111 1,009 4 -01001111 51,900 4 -01001111 72.50-a-share 4 -01001111 3.35-an-hour 4 -01001111 839,000 4 -01001111 729,000 4 -01001111 389.30 4 -01001111 811,000 4 -01001111 47,500 4 -01001111 1.1875 4 -01001111 1.6225 4 -01001111 495.50 4 -01001111 1,174.24 4 -01001111 51.77 4 -01001111 1,120,000 4 -01001111 942,000 4 -01001111 3,469 4 -01001111 971,000 4 -01001111 2,105,000 4 -01001111 67.625 4 -01001111 91.75 4 -01001111 462.20 4 -01001111 473,000 4 -01001111 77.375 4 -01001111 1,745,000 4 -01001111 2,850,000 4 -01001111 2,495 4 -01001111 1.6770 4 -01001111 120,500 4 -01001111 1,938 4 -01001111 107.75 4 -01001111 1,300,000 4 -01001111 14.77 4 -01001111 49.375 4 -01001111 457.50 4 -01001111 1,000-a-day 4 -01001111 2.4375 4 -01001111 454.60 4 -01001111 54,700 4 -01001111 469.30 4 -01001111 1,382 4 -01001111 2,370 4 -01001111 1,870 4 -01001111 1,299 4 -01001111 496,000 4 -01001111 497,600 4 -01001111 89,560 4 -01001111 9,232 4 -01001111 93,500 4 -01001111 1,935 4 -01001111 7,350 4 -01001111 2,199 4 -01001111 1,060,000 4 -01001111 1.5865 4 -01001111 280,125 4 -01001111 419,000 4 -01001111 402.70 4 -01001111 1,869 4 -01001111 78.375 4 -01001111 7,250,000 4 -01001111 988,000 4 -01001111 4,350 4 -01001111 394,000 4 -01001111 8,175 4 -01001111 144.50 4 -01001111 76.125 4 -01001111 8,220,000 4 -01001111 16,900 4 -01001111 22,800 4 -01001111 15-a-barrel 4 -01001111 1.006 4 -01001111 3,999 4 -01001111 .28 4 -01001111 99,800 4 -01001111 118.50 4 -01001111 36.40 4 -01001111 156,500 4 -01001111 396,000 4 -01001111 32,800 4 -01001111 30-a-ton 4 -01001111 5,760 4 -01001111 681,000 4 -01001111 999,000 4 -01001111 86.875 4 -01001111 586,000 4 -01001111 392,000 4 -01001111 25,300 4 -01001111 1,596 4 -01001111 7,450,000 4 -01001111 2,150,000 4 -01001111 1.5775 4 -01001111 467.80 4 -01001111 12,594 4 -01001111 7.25-a-share 4 -01001111 16,100 4 -01001111 457.30 4 -01001111 245-a-share 4 -01001111 931,000 4 -01001111 694,000 4 -01001111 1,280,000 4 -01001111 68.875 4 -01001111 104.625 4 -01001111 589,000 4 -01001111 75.375 4 -01001111 1,460,000 4 -01001111 168,700 4 -01001111 1,052.63 4 -01001111 443,000 4 -01001111 373.70 4 -01001111 14,200 5 -01001111 101.125 5 -01001111 753,000 5 -01001111 509,000 5 -01001111 302,000 5 -01001111 4,999 5 -01001111 1,080,000 5 -01001111 818,000 5 -01001111 791,000 5 -01001111 .09 5 -01001111 26,200 5 -01001111 12.32 5 -01001111 5,350 5 -01001111 1.6263 5 -01001111 22,900 5 -01001111 12,600 5 -01001111 553,000 5 -01001111 841,000 5 -01001111 993,000 5 -01001111 561,000 5 -01001111 48,500 5 -01001111 49,500 5 -01001111 455.40 5 -01001111 507,000 5 -01001111 281,000 5 -01001111 728,000 5 -01001111 449,000 5 -01001111 136,900 5 -01001111 982,000 5 -01001111 527,000 5 -01001111 51,500 5 -01001111 18,400 5 -01001111 101,300 5 -01001111 637,000 5 -01001111 466,000 5 -01001111 763,000 5 -01001111 1,870,000 5 -01001111 784,000 5 -01001111 689,000 5 -01001111 881,000 5 -01001111 8,880 5 -01001111 66.875 5 -01001111 12,450 5 -01001111 998,000 5 -01001111 551,000 5 -01001111 405.30 5 -01001111 11,450 5 -01001111 55.625 5 -01001111 529,000 5 -01001111 3,990 5 -01001111 672,000 5 -01001111 2.3125 5 -01001111 782,000 5 -01001111 83.875 5 -01001111 955,000 5 -01001111 504,000 5 -01001111 63.875 5 -01001111 92.75 5 -01001111 19,200 5 -01001111 608,000 5 -01001111 1.8720 5 -01001111 915,000 5 -01001111 1.8930 5 -01001111 6,590 5 -01001111 506,000 5 -01001111 1,126 5 -01001111 431.70 5 -01001111 1.725 5 -01001111 539,000 5 -01001111 20.30 5 -01001111 59.875 5 -01001111 460.40 5 -01001111 76.375 5 -01001111 1,970,000 5 -01001111 8,600 5 -01001111 1.5625 5 -01001111 1,340,000 5 -01001111 484,000 5 -01001111 259,000 5 -01001111 13.75-a-share 5 -01001111 15.16 5 -01001111 1,118 5 -01001111 82.75 5 -01001111 487.70 5 -01001111 4,160 5 -01001111 80.875 5 -01001111 1,295 5 -01001111 65.625 5 -01001111 762,000 5 -01001111 8,750 5 -01001111 30,000-a-year 5 -01001111 1,970 5 -01001111 756,000 5 -01001111 21,050 5 -01001111 47.50-a-share 5 -01001111 7,750 5 -01001111 463.20 5 -01001111 856,000 5 -01001111 28.40 5 -01001111 1,425 5 -01001111 11,800 5 -01001111 1,417 5 -01001111 15,900 5 -01001111 516,000 5 -01001111 768,000 5 -01001111 716,000 5 -01001111 36.50-a-share 5 -01001111 1.8090 5 -01001111 324,000 5 -01001111 78.75 5 -01001111 481,000 5 -01001111 809,000 5 -01001111 81.50 5 -01001111 150,000-a-year 5 -01001111 75.875 5 -01001111 84,700 5 -01001111 373,000 5 -01001111 72.625 5 -01001111 1.6700 5 -01001111 2,540 5 -01001111 43,800 5 -01001111 90.625 5 -01001111 376,000 5 -01001111 1,257 5 -01001111 62.625 5 -01001111 303,000 5 -01001111 21.60 5 -01001111 778,000 5 -01001111 49-a-share 5 -01001111 121,500 5 -01001111 18,600 5 -01001111 443.50 5 -01001111 639,000 5 -01001111 99,900 5 -01001111 4,650 5 -01001111 627,000 5 -01001111 21.84 5 -01001111 100.50 5 -01001111 163.50 5 -01001111 73.375 5 -01001111 1.8745 5 -01001111 676,000 5 -01001111 67.125 5 -01001111 66.50-a-share 5 -01001111 6,750,000 5 -01001111 776,000 5 -01001111 2,080 5 -01001111 78.25 5 -01001111 849,000 5 -01001111 482.70 5 -01001111 707,000 5 -01001111 1,620 5 -01001111 826,000 5 -01001111 591,000 5 -01001111 108.25 5 -01001111 33,700 5 -01001111 10,300 5 -01001111 773,000 5 -01001111 13.25-a-share 5 -01001111 2-a-barrel 5 -01001111 379,000 5 -01001111 648,000 5 -01001111 852,000 5 -01001111 63.375 5 -01001111 434,000 5 -01001111 857,000 5 -01001111 5-a-barrel 5 -01001111 654,000 5 -01001111 732,000 5 -01001111 17.42 5 -01001111 37,700 5 -01001111 77.50 5 -01001111 77.875 5 -01001111 657,000 5 -01001111 562,000 5 -01001111 1,770,000 5 -01001111 1,290,000 5 -01001111 3.6875 5 -01001111 368,000 5 -01001111 19.50-a-share 5 -01001111 587,000 5 -01001111 636,000 5 -01001111 58,500 5 -01001111 1,971,000 5 -01001111 64.625 5 -01001111 222,000 5 -01001111 99,500 5 -01001111 829,000 5 -01001111 1.8850 5 -01001111 468,000 5 -01001111 13,995 5 -01001111 10,400 5 -01001111 970,000 5 -01001111 1,328 5 -01001111 199.50 5 -01001111 1,326 5 -01001111 2,550 5 -01001111 888,000 5 -01001111 452,000 5 -01001111 1,780,000 5 -01001111 6,999 5 -01001111 72.875 5 -01001111 221,000 5 -01001111 41.75-a-share 5 -01001111 622,000 5 -01001111 368.50 5 -01001111 4,199 5 -01001111 64.375 5 -01001111 961,000 5 -01001111 674,000 5 -01001111 3,850,000 5 -01001111 663,000 5 -01001111 75.625 5 -01001111 1,281 5 -01001111 5,990 5 -01001111 3,370,000 5 -01001111 17,600 5 -01001111 108.50 5 -01001111 854,000 5 -01001111 808,000 5 -01001111 2,240 5 -01001111 6,250 5 -01001111 153,100 5 -01001111 1,675,000 5 -01001111 5.8125 5 -01001111 851,000 5 -01001111 31,500 5 -01001111 727,000 6 -01001111 87.375 6 -01001111 13,600 6 -01001111 1,205 6 -01001111 835,000 6 -01001111 79.25 6 -01001111 72.125 6 -01001111 478,000 6 -01001111 97,500 6 -01001111 4,150 6 -01001111 489,000 6 -01001111 4.035 6 -01001111 1,660 6 -01001111 1,275 6 -01001111 268,000 6 -01001111 1.50-a-share 6 -01001111 1,669,000 6 -01001111 1,930,000 6 -01001111 194,000 6 -01001111 1,044 6 -01001111 461,000 6 -01001111 933,000 6 -01001111 68.125 6 -01001111 11,600 6 -01001111 450.90 6 -01001111 433,000 6 -01001111 374,846 6 -01001111 109,576 6 -01001111 554,000 6 -01001111 151,000 6 -01001111 1,017 6 -01001111 518,000 6 -01001111 604,000 6 -01001111 1.6840 6 -01001111 92-a-share 6 -01001111 17.10 6 -01001111 924,000 6 -01001111 733,000 6 -01001111 722,000 6 -01001111 662,000 6 -01001111 22,400 6 -01001111 41,900 6 -01001111 34.90 6 -01001111 708,000 6 -01001111 612,000 6 -01001111 21,700 6 -01001111 2,170 6 -01001111 366,000 6 -01001111 7,750,000 6 -01001111 491,000 6 -01001111 1.225 6 -01001111 3.50-a-share 6 -01001111 886,000 6 -01001111 90.50 6 -01001111 288,000 6 -01001111 90.75 6 -01001111 61.625 6 -01001111 68.375 6 -01001111 453,000 6 -01001111 17.30 6 -01001111 74.84 6 -01001111 428,000 6 -01001111 832,000 6 -01001111 79.95 6 -01001111 1,099 6 -01001111 3,030 6 -01001111 452.70 6 -01001111 1,972,000 6 -01001111 20.50-a-share 6 -01001111 658,000 6 -01001111 1.6860 6 -01001111 1,042 6 -01001111 427,000 6 -01001111 457,000 6 -01001111 1,160,000 6 -01001111 437,000 6 -01001111 388,000 6 -01001111 50.375 6 -01001111 95.75 6 -01001111 859,000 6 -01001111 240-a-share 6 -01001111 21,800 6 -01001111 4,750,000 6 -01001111 50,500 6 -01001111 913,000 6 -01001111 703,000 6 -01001111 19.60 6 -01001111 474,000 6 -01001111 2,464,000 6 -01001111 30- 6 -01001111 1,666 6 -01001111 477,000 6 -01001111 584,000 6 -01001111 946,000 6 -01001111 6.50-a-share 6 -01001111 1,359,000 6 -01001111 73.75 6 -01001111 149,250 6 -01001111 457.80 6 -01001111 702,000 6 -01001111 1,115 6 -01001111 794,000 6 -01001111 1,495 6 -01001111 46.50-a-share 6 -01001111 61,500 6 -01001111 382,000 6 -01001111 43,500 6 -01001111 81.75 6 -01001111 2,030 6 -01001111 734,000 6 -01001111 277,000 6 -01001111 454.10 6 -01001111 6.25-a-share 6 -01001111 1,019 6 -01001111 673,000 6 -01001111 93.875 6 -01001111 58.625 6 -01001111 521,000 6 -01001111 777,000 6 -01001111 351,000 6 -01001111 50.50-a-share 6 -01001111 378,000 6 -01001111 413,000 6 -01001111 32.50-a-share 6 -01001111 806,000 6 -01001111 555,000 6 -01001111 32,400 6 -01001111 1,740,000 6 -01001111 493,000 6 -01001111 557,000 6 -01001111 60.125 6 -01001111 5,050 6 -01001111 79.75 6 -01001111 399,000 6 -01001111 421,000 6 -01001111 1,075,000 6 -01001111 406,000 6 -01001111 2,450,000 6 -01001111 19,800 6 -01001111 576,000 6 -01001111 20.70 6 -01001111 9,100 6 -01001111 944,000 6 -01001111 422,000 6 -01001111 35,800 6 -01001111 1,025,000 6 -01001111 36,500 6 -01001111 822,000 6 -01001111 74.125 6 -01001111 603,000 6 -01001111 90.27 6 -01001111 1.067 6 -01001111 1,400,000 6 -01001111 814,000 6 -01001111 799,000 6 -01001111 440.40 6 -01001111 951,000 6 -01001111 .08 6 -01001111 464,000 6 -01001111 1,195 6 -01001111 796,000 6 -01001111 1.6105 6 -01001111 1,320 6 -01001111 44,500 6 -01001111 502,000 6 -01001111 583,000 6 -01001111 661,000 6 -01001111 501,000 6 -01001111 149.50 6 -01001111 12,800 6 -01001111 932,000 6 -01001111 22,300 6 -01001111 1,330 6 -01001111 954,000 6 -01001111 71.375 6 -01001111 33,938 6 -01001111 458.40 6 -01001111 83.75 6 -01001111 2,010 6 -01001111 546,000 6 -01001111 27.25-a-share 6 -01001111 616,000 6 -01001111 1,430,000 6 -01001111 16.25-a-share 6 -01001111 1,375,000 6 -01001111 8.75-a-share 6 -01001111 711,000 6 -01001111 130-a-share 6 -01001111 785,000 6 -01001111 32.60 6 -01001111 5,250,000 6 -01001111 515,000 6 -01001111 12,200 6 -01001111 10-a-barrel 6 -01001111 2,347 6 -01001111 187,500 6 -01001111 57.625 6 -01001111 688,000 6 -01001111 4,850 6 -01001111 441,000 6 -01001111 286,000 7 -01001111 5,995 7 -01001111 45.77 7 -01001111 403,000 7 -01001111 65.50 7 -01001111 56.375 7 -01001111 85.50 7 -01001111 11,200 7 -01001111 747,000 7 -01001111 5,450 7 -01001111 467,000 7 -01001111 902,000 7 -01001111 63.125 7 -01001111 89.75 7 -01001111 941,000 7 -01001111 88.75 7 -01001111 67.25 7 -01001111 643,000 7 -01001111 19,300 7 -01001111 1,575 7 -01001111 2,120 7 -01001111 2,940 7 -01001111 451,000 7 -01001111 1,125,000 7 -01001111 20,000-a-year 7 -01001111 891,000 7 -01001111 1,480,000 7 -01001111 198,000 7 -01001111 772,000 7 -01001111 28,200 7 -01001111 38,500 7 -01001111 69.125 7 -01001111 23,600 7 -01001111 1,001 7 -01001111 23.16 7 -01001111 1,620,000 7 -01001111 1,225 7 -01001111 100,000-a-year 7 -01001111 512,000 7 -01001111 72.75 7 -01001111 160.24 7 -01001111 1,199 7 -01001111 25,500 7 -01001111 426,000 7 -01001111 538,000 7 -01001111 412,000 7 -01001111 666,000 7 -01001111 17.39 7 -01001111 23.50-a-share 7 -01001111 853,000 7 -01001111 423,000 7 -01001111 886.66 7 -01001111 15.25-a-share 7 -01001111 4,950 7 -01001111 1.6785 7 -01001111 438.70 7 -01001111 91.25 7 -01001111 79.50 7 -01001111 90.05 7 -01001111 407,000 7 -01001111 273,000 7 -01001111 97.50 7 -01001111 91.50 7 -01001111 60.10 7 -01001111 995,000 7 -01001111 15.50-a-share 7 -01001111 1,008 7 -01001111 526,000 7 -01001111 68.50-a-share 7 -01001111 26,500 7 -01001111 771.01 7 -01001111 1,077 7 -01001111 455,000 7 -01001111 536,000 7 -01001111 191,000 7 -01001111 534,000 7 -01001111 2,480 7 -01001111 31.50-a-share 7 -01001111 397,000 7 -01001111 6,750 7 -01001111 75.125 7 -01001111 683,000 7 -01001111 644,000 7 -01001111 398,000 7 -01001111 11,400 7 -01001111 69.625 7 -01001111 67.375 7 -01001111 1,235 7 -01001111 885,000 7 -01001111 59.375 7 -01001111 592,000 7 -01001111 1,530 7 -01001111 537,000 7 -01001111 31,900 7 -01001111 14,900 7 -01001111 361,000 7 -01001111 12,700 7 -01001111 352,000 7 -01001111 887,000 7 -01001111 101,250 7 -01001111 72.25 7 -01001111 233,000 7 -01001111 985,000 7 -01001111 424,000 7 -01001111 279,000 7 -01001111 71.25 7 -01001111 16.40 7 -01001111 377,000 7 -01001111 64.75 7 -01001111 74.25 7 -01001111 588,000 7 -01001111 98.30 7 -01001111 47.875 7 -01001111 206,000 7 -01001111 211,000 7 -01001111 57,500 7 -01001111 74,500 7 -01001111 14,300 7 -01001111 1,240 7 -01001111 991,000 7 -01001111 11,900 7 -01001111 269,000 7 -01001111 572,000 7 -01001111 556,000 7 -01001111 94,600 7 -01001111 664,000 7 -01001111 74.875 7 -01001111 61.125 7 -01001111 61.875 7 -01001111 322,000 7 -01001111 59.125 7 -01001111 472,000 7 -01001111 251,000 7 -01001111 668,000 7 -01001111 12,100 7 -01001111 569,000 7 -01001111 1,580,000 8 -01001111 713,000 8 -01001111 65.125 8 -01001111 59.25 8 -01001111 52,500 8 -01001111 241,000 8 -01001111 574,000 8 -01001111 357,000 8 -01001111 581,000 8 -01001111 243,000 8 -01001111 12.47 8 -01001111 1,075 8 -01001111 348,000 8 -01001111 66.25 8 -01001111 40,500 8 -01001111 141,000 8 -01001111 28,500 8 -01001111 12,900 8 -01001111 30,500 8 -01001111 76.75 8 -01001111 18.10 8 -01001111 712,000 8 -01001111 68.25 8 -01001111 816,000 8 -01001111 73.25 8 -01001111 846,000 8 -01001111 1,599 8 -01001111 952,000 8 -01001111 1.9375 8 -01001111 748,000 8 -01001111 297,000 8 -01001111 11.25-a-share 8 -01001111 602,000 8 -01001111 387,000 8 -01001111 60.625 8 -01001111 9,900 8 -01001111 9,700 8 -01001111 679,000 8 -01001111 65.875 8 -01001111 13,800 8 -01001111 98.50 8 -01001111 10,600 8 -01001111 14.50-a-share 8 -01001111 1,485 8 -01001111 402,000 8 -01001111 78-a-share 8 -01001111 87.75 8 -01001111 24,300 8 -01001111 83,500 8 -01001111 53.625 8 -01001111 940,000 8 -01001111 544,000 8 -01001111 58.125 8 -01001111 78.875 8 -01001111 6,250,000 8 -01001111 59.625 8 -01001111 1,025 8 -01001111 120-a-share 8 -01001111 1.8250 8 -01001111 522,000 8 -01001111 541,000 8 -01001111 86.80 8 -01001111 332,000 8 -01001111 677,000 8 -01001111 124,000 8 -01001111 42.375 8 -01001111 462,000 8 -01001111 528,000 8 -01001111 54,600 8 -01001111 793,000 8 -01001111 872,000 8 -01001111 564,000 8 -01001111 439,000 8 -01001111 26.50-a-share 8 -01001111 60.875 8 -01001111 18.40 8 -01001111 12,400 8 -01001111 718,000 8 -01001111 10,200 8 -01001111 62.875 8 -01001111 1.6170 8 -01001111 308,000 8 -01001111 246,000 8 -01001111 10,100 8 -01001111 46.375 8 -01001111 21.40 8 -01001111 744,000 8 -01001111 1,710 8 -01001111 63.625 8 -01001111 517,000 8 -01001111 628,000 8 -01001111 89.50-a-share 8 -01001111 199,000 8 -01001111 343,000 8 -01001111 14,100 8 -01001111 13,900 8 -01001111 53.375 8 -01001111 70.125 8 -01001111 492,000 8 -01001111 70.375 8 -01001111 997,000 8 -01001111 48.625 8 -01001111 52.35-a-share 8 -01001111 70.25 8 -01001111 7,100 8 -01001111 77.25 9 -01001111 1,510 9 -01001111 237,000 9 -01001111 197,000 9 -01001111 253,000 9 -01001111 9,800 9 -01001111 55.25 9 -01001111 847,000 9 -01001111 49.875 9 -01001111 284,000 9 -01001111 519,000 9 -01001111 813,000 9 -01001111 619,000 9 -01001111 4.50-a-share 9 -01001111 236,000 9 -01001111 271,000 9 -01001111 328,000 9 -01001111 1,399 9 -01001111 823,000 9 -01001111 695,000 9 -01001111 417,000 9 -01001111 19.70 9 -01001111 56.125 9 -01001111 173,000 9 -01001111 935,000 9 -01001111 258,000 9 -01001111 488,000 9 -01001111 127,500 9 -01001111 80.50 9 -01001111 77,400 9 -01001111 594,000 9 -01001111 14.25-a-share 9 -01001111 88.50 9 -01001111 965,000 9 -01001111 2,140 9 -01001111 2,560 9 -01001111 945,000 9 -01001111 289,000 9 -01001111 244,000 9 -01001111 17.14 9 -01001111 64.875 9 -01001111 456,000 9 -01001111 51.125 9 -01001111 667,000 9 -01001111 1,540 9 -01001111 411,000 9 -01001111 8,250 9 -01001111 134,000 9 -01001111 767,000 9 -01001111 749,000 9 -01001111 58.875 9 -01001111 781,000 9 -01001111 61.75 9 -01001111 4,995 9 -01001111 2,225,000 9 -01001111 414,000 9 -01001111 559,000 9 -01001111 54.625 9 -01001111 21.50-a-share 9 -01001111 634,000 9 -01001111 552,000 9 -01001111 12.90 9 -01001111 18.30 9 -01001111 60.375 9 -01001111 46-a-share 9 -01001111 18.64 9 -01001111 418,000 9 -01001111 848,000 9 -01001111 845,000 9 -01001111 548,000 9 -01001111 568,000 9 -01001111 57.875 9 -01001111 21,500 9 -01001111 8.25-a-share 9 -01001111 90.05-a-share 9 -01001111 52.35 9 -01001111 84.50 9 -01001111 1.8125 9 -01001111 313,000 9 -01001111 1.7745 9 -01001111 82.50 10 -01001111 1,995 10 -01001111 314,000 10 -01001111 354,000 10 -01001111 487,000 10 -01001111 3,750,000 10 -01001111 505,000 10 -01001111 89.95 10 -01001111 358,000 10 -01001111 72,500 10 -01001111 13.10 10 -01001111 105-a-share 10 -01001111 446,000 10 -01001111 56.625 10 -01001111 56.75 10 -01001111 372,000 10 -01001111 13,200 10 -01001111 40.50-a-share 10 -01001111 1,760 10 -01001111 55.125 10 -01001111 9,400 10 -01001111 87.25 10 -01001111 223,000 10 -01001111 925,000 10 -01001111 523,000 10 -01001111 55.75 10 -01001111 62.25 10 -01001111 10,700 10 -01001111 51.375 10 -01001111 39.125 10 -01001111 49.125 10 -01001111 296,000 10 -01001111 75.50 10 -01001111 968,000 10 -01001111 4,250,000 10 -01001111 10.50-a-share 10 -01001111 3,250 10 -01001111 1,125 10 -01001111 349,000 10 -01001111 177,000 10 -01001111 112.50 10 -01001111 83.50 10 -01001111 2,450 10 -01001111 1,000,000 10 -01001111 341,000 10 -01001111 890,000 10 -01001111 4-a-share 10 -01001111 9,300 10 -01001111 810,000 10 -01001111 19.80 10 -01001111 2,350 10 -01001111 127.50 10 -01001111 78.50 10 -01001111 975,000 10 -01001111 2.0625 10 -01001111 401,000 10 -01001111 2-a-share 10 -01001111 75.25 10 -01001111 38.125 10 -01001111 124.75 10 -01001111 710,000 10 -01001111 339,000 10 -01001111 874,000 10 -01001111 1400 10 -01001111 69-a-share 10 -01001111 193,000 10 -01001111 9,200 10 -01001111 815,000 10 -01001111 1,630 10 -01001111 5,250 10 -01001111 20,500 10 -01001111 513,000 10 -01001111 64.25 10 -01001111 18.65 10 -01001111 16.50-a-share 10 -01001111 344,000 10 -01001111 409,000 10 -01001111 454,000 10 -01001111 1.4375 10 -01001111 1,590 10 -01001111 93-a-share 10 -01001111 54.875 10 -01001111 904,000 10 -01001111 1,016 10 -01001111 1,480 10 -01001111 855,000 10 -01001111 312,000 10 -01001111 196,000 10 -01001111 90.25-a-share 10 -01001111 62.375 10 -01001111 204,000 10 -01001111 54.375 10 -01001111 69.25 10 -01001111 242,000 10 -01001111 432,000 10 -01001111 41,500 10 -01001111 436,000 10 -01001111 442,000 10 -01001111 76-a-share 10 -01001111 408,000 10 -01001111 2,280 10 -01001111 765,000 10 -01001111 66.75 10 -01001111 336,000 10 -01001111 743,000 10 -01001111 920,000 10 -01001111 545,000 10 -01001111 299,000 10 -01001111 63.75 10 -01001111 24,500 10 -01001111 15,500 10 -01001111 52.25 10 -01001111 22.50-a-share 10 -01001111 207,000 10 -01001111 112,500 10 -01001111 19.40 10 -01001111 23,500 11 -01001111 686,000 11 -01001111 6,995 11 -01001111 203,000 11 -01001111 735,000 11 -01001111 334,000 11 -01001111 46.625 11 -01001111 257,000 11 -01001111 329,000 11 -01001111 266,000 11 -01001111 212,000 11 -01001111 166,000 11 -01001111 1,695 11 -01001111 267,000 11 -01001111 18.05 11 -01001111 362,000 11 -01001111 69.75 11 -01001111 213,000 11 -01001111 1,875,000 11 -01001111 39.625 11 -01001111 74.75 11 -01001111 73-a-share 11 -01001111 1,640 11 -01001111 77,500 11 -01001111 340,783 11 -01001111 49.625 11 -01001111 371,000 11 -01001111 571,000 11 -01001111 381,000 11 -01001111 163,000 11 -01001111 61.25 11 -01001111 52.50-a-share 11 -01001111 61.375 11 -01001111 2,550,000 11 -01001111 613,000 11 -01001111 6,550 11 -01001111 1,030 11 -01001111 3,350 11 -01001111 50.125 11 -01001111 82,500 11 -01001111 980,000 11 -01001111 27,400 11 -01001111 47.125 11 -01001111 23-a-share 11 -01001111 261,000 11 -01001111 542,000 11 -01001111 617,000 11 -01001111 1.3125 11 -01001111 247,000 11 -01001111 218,000 11 -01001111 18,500 11 -01001111 795,000 11 -01001111 1-a-share 11 -01001111 62,500 11 -01001111 730,000 12 -01001111 101.50 12 -01001111 276,000 12 -01001111 1,960 12 -01001111 54-a-share 12 -01001111 910,000 12 -01001111 3,450 12 -01001111 63.25 12 -01001111 755,000 12 -01001111 1,050,000 12 -01001111 333,000 12 -01001111 149,000 12 -01001111 535,000 12 -01001111 129,000 12 -01001111 1,140 12 -01001111 1,950 12 -01001111 40.125 12 -01001111 549,000 12 -01001111 865,000 12 -01001111 805,000 12 -01001111 231,000 12 -01001111 298,000 12 -01001111 159,000 12 -01001111 51.625 12 -01001111 75.75 12 -01001111 740,000 12 -01001111 111,000 12 -01001111 58.375 12 -01001111 54.125 12 -01001111 171,000 12 -01001111 309,000 12 -01001111 217,000 12 -01001111 405,000 12 -01001111 3,150 12 -01001111 176,000 12 -01001111 157,000 12 -01001111 601,000 12 -01001111 52.75 12 -01001111 184,000 12 -01001111 416,000 12 -01001111 152,000 12 -01001111 25.50-a-share 12 -01001111 3,250,000 12 -01001111 239,000 12 -01001111 615,000 12 -01001111 384,000 12 -01001111 232,000 12 -01001111 645,000 12 -01001111 274,000 12 -01001111 1,430 12 -01001111 2,050 12 -01001111 1,040 12 -01001111 990,000 12 -01001111 71.75 12 -01001111 605,000 12 -01001111 359,000 12 -01001111 2-a-unit 12 -01001111 579,000 12 -01001111 52.375 12 -01001111 471,000 13 -01001111 7.50-a-share 13 -01001111 36.375 13 -01001111 485,000 13 -01001111 275-a-share 13 -01001111 178,000 13 -01001111 43.375 13 -01001111 9,999 13 -01001111 6,900 13 -01001111 42.125 13 -01001111 66.50 13 -01001111 39.375 13 -01001111 321,000 13 -01001111 256,000 13 -01001111 445,000 13 -01001111 64.50 13 -01001111 317,000 13 -01001111 49.95 13 -01001111 51-a-share 13 -01001111 319,000 13 -01001111 8,400 13 -01001111 293,000 13 -01001111 47.625 13 -01001111 41.625 13 -01001111 8,700 13 -01001111 665,000 13 -01001111 37.125 13 -01001111 48.875 13 -01001111 172,000 13 -01001111 133,000 13 -01001111 685,000 13 -01001111 50.875 13 -01001111 820,000 13 -01001111 495,000 13 -01001111 63.50 13 -01001111 181,000 13 -01001111 311,000 13 -01001111 85-a-share 13 -01001111 70.50 13 -01001111 187,000 13 -01001111 1,370 13 -01001111 162,000 13 -01001111 389,000 13 -01001111 7,400 13 -01001111 347,000 13 -01001111 395,000 13 -01001111 202,000 13 -01001111 7,300 13 -01001111 306,000 13 -01001111 1,680 13 -01001111 101,000 13 -01001111 24.60 14 -01001111 775,000 14 -01001111 860,000 14 -01001111 278,000 14 -01001111 760,000 14 -01001111 53-a-share 14 -01001111 55.375 14 -01001111 2,390 14 -01001111 356,000 14 -01001111 1200 14 -01001111 1.6875 14 -01001111 565,000 14 -01001111 363,000 14 -01001111 790,000 14 -01001111 327,000 14 -01001111 364,000 14 -01001111 60.25 14 -01001111 595,000 14 -01001111 57.75 14 -01001111 76.50 14 -01001111 307,000 14 -01001111 374,000 14 -01001111 404,000 14 -01001111 254,000 14 -01001111 40.875 14 -01001111 52.625 14 -01001111 1.0625 14 -01001111 1,440 14 -01001111 282,000 14 -01001111 182,000 14 -01001111 840,000 14 -01001111 391,000 14 -01001111 1,120 14 -01001111 216,000 14 -01001111 1,850,000 14 -01001111 164,000 14 -01001111 51.75 14 -01001111 1.8750 14 -01001111 1,830 14 -01001111 161,000 14 -01001111 51.875 14 -01001111 138,000 14 -01001111 100.25 14 -01001111 57.375 14 -01001111 189,000 14 -01001111 59.75 14 -01001111 331,000 14 -01001111 532,000 14 -01001111 43.625 14 -01001111 720,000 14 -01001111 86.50 14 -01001111 224,000 14 -01001111 252,000 15 -01001111 318,000 15 -01001111 715,000 15 -01001111 41.375 15 -01001111 40.375 15 -01001111 45.375 15 -01001111 137,000 15 -01001111 227,000 15 -01001111 39.875 15 -01001111 305,000 15 -01001111 52.875 15 -01001111 531,000 15 -01001111 38.875 15 -01001111 1,130 15 -01001111 44.125 15 -01001111 45.625 15 -01001111 122,000 15 -01001111 1,450,000 15 -01001111 367,000 15 -01001111 67.75 15 -01001111 635,000 15 -01001111 81,000 15 -01001111 48.75 15 -01001111 830,000 15 -01001111 61.32 15 -01001111 68-a-share 15 -01001111 8.50-a-share 15 -01001111 2,150 15 -01001111 69.50 15 -01001111 40.625 15 -01001111 154,000 15 -01001111 8,900 15 -01001111 1,280 15 -01001111 342,000 15 -01001111 3,850 15 -01001111 234,000 15 -01001111 135-a-share 15 -01001111 498,000 15 -01001111 291,000 15 -01001111 57.25 15 -01001111 5,100 15 -01001111 99,000 15 -01001111 272,000 16 -01001111 337,000 16 -01001111 201,000 16 -01001111 169,000 16 -01001111 153,000 16 -01001111 131,000 16 -01001111 53.875 16 -01001111 770,000 16 -01001111 490,000 16 -01001111 43.125 16 -01001111 620,000 16 -01001111 25.125 16 -01001111 48.375 16 -01001111 89.50 16 -01001111 33.125 16 -01001111 87.50 16 -01001111 47.75 16 -01001111 33.625 16 -01001111 77,000 16 -01001111 33.375 16 -01001111 238,000 16 -01001111 42,500 16 -01001111 29-a-share 16 -01001111 50.625 16 -01001111 19,500 16 -01001111 3-a-share 16 -01001111 208,000 16 -01001111 119,000 16 -01001111 188,000 16 -01001111 1,080 16 -01001111 121,000 16 -01001111 1.675 16 -01001111 29.875 16 -01001111 353,000 16 -01001111 71.50 16 -01001111 22,500 17 -01001111 38-a-share 17 -01001111 6,499 17 -01001111 192,000 17 -01001111 114,000 17 -01001111 44.375 17 -01001111 44.625 17 -01001111 32.875 17 -01001111 52.125 17 -01001111 34-a-share 17 -01001111 167,000 17 -01001111 148,000 17 -01001111 96,000 17 -01001111 174,000 17 -01001111 139,000 17 -01001111 47.375 17 -01001111 610,000 17 -01001111 168,000 17 -01001111 95-a-share 17 -01001111 109,000 17 -01001111 36.625 17 -01001111 37,500 17 -01001111 1,920 17 -01001111 89,000 17 -01001111 690,000 17 -01001111 58-a-share 17 -01001111 228,000 17 -01001111 6-a-share 17 -01001111 248,000 17 -01001111 214,000 17 -01001111 62.50-a-share 17 -01001111 54.75 17 -01001111 20.375 17 -01001111 97,000 17 -01001111 880,000 17 -01001111 50.75 17 -01001111 45.125 17 -01001111 1,550,000 17 -01001111 147,000 17 -01001111 99.95 17 -01001111 59,000 17 -01001111 7,900 17 -01001111 316,000 18 -01001111 8,100 18 -01001111 179,000 18 -01001111 32.375 18 -01001111 2,850 18 -01001111 35.625 18 -01001111 158,000 18 -01001111 8,300 18 -01001111 38.625 18 -01001111 58.50 18 -01001111 117,000 18 -01001111 40.25 18 -01001111 48.125 18 -01001111 33.875 18 -01001111 28.875 18 -01001111 294,000 18 -01001111 146,000 18 -01001111 61.50-a-share 18 -01001111 41.125 18 -01001111 465,000 18 -01001111 45.875 18 -01001111 6,700 18 -01001111 46.875 19 -01001111 27.50-a-share 19 -01001111 102,000 19 -01001111 86,000 19 -01001111 37.625 19 -01001111 92,000 19 -01001111 23.625 19 -01001111 249,000 19 -01001111 1,850 19 -01001111 50.25 19 -01001111 38.375 19 -01001111 448,000 19 -01001111 58.25 19 -01001111 53.25 19 -01001111 32.625 19 -01001111 66-a-share 19 -01001111 28.625 19 -01001111 300-a-share 19 -01001111 48-a-share 19 -01001111 60.50 19 -01001111 48.25 19 -01001111 156,000 19 -01001111 1,450 19 -01001111 67.50 19 -01001111 2,750,000 19 -01001111 13.50-a-share 19 -01001111 36.125 19 -01001111 56.50 19 -01001111 752,000 19 -01001111 1,550 19 -01001111 143,000 19 -01001111 144,000 19 -01001111 345,000 20 -01001111 60.75 20 -01001111 5-a-share 20 -01001111 32.125 20 -01001111 264,000 20 -01001111 780,000 20 -01001111 304,000 20 -01001111 67-a-share 20 -01001111 106,000 20 -01001111 283,000 20 -01001111 930,000 20 -01001111 287,000 20 -01001111 54.50 20 -01001111 31.375 20 -01001111 73.50 20 -01001111 5,900 20 -01001111 42.625 20 -01001111 9,600 20 -01001111 1,060 20 -01001111 91,000 20 -01001111 346,000 20 -01001111 77-a-share 20 -01001111 53.125 20 -01001111 35.375 20 -01001111 8,800 20 -01001111 570,000 20 -01001111 123,000 20 -01001111 7,800 20 -01001111 87,000 20 -01001111 69,000 20 -01001111 262,000 20 -01001111 3,750 20 -01001111 585,000 20 -01001111 209,000 20 -01001111 326,000 20 -01001111 520,000 20 -01001111 98,000 21 -01001111 36.875 21 -01001111 113,000 21 -01001111 58.75 21 -01001111 17.90 21 -01001111 44.875 21 -01001111 28.375 21 -01001111 126,000 21 -01001111 183,000 21 -01001111 825,000 21 -01001111 29.125 21 -01001111 44.50 21 -01001111 14,500 21 -01001111 42.875 21 -01001111 132,000 21 -01001111 1,650,000 21 -01001111 245,000 21 -01001111 27.125 21 -01001111 355,000 21 -01001111 56-a-share 21 -01001111 35.875 21 -01001111 30.375 21 -01001111 45.75 21 -01001111 118,000 22 -01001111 410,000 22 -01001111 219,000 22 -01001111 18.50-a-share 22 -01001111 31.625 22 -01001111 53.75 22 -01001111 112,000 22 -01001111 128,000 22 -01001111 335,000 22 -01001111 142,000 22 -01001111 49.75 22 -01001111 49.25 22 -01001111 39.95 22 -01001111 93,000 22 -01001111 61,000 22 -01001111 100-a-share 22 -01001111 136,000 22 -01001111 46.125 22 -01001111 630,000 22 -01001111 6,600 23 -01001111 590,000 23 -01001111 11-a-share 23 -01001111 34.375 23 -01001111 290,000 23 -01001111 71,000 23 -01001111 26.125 23 -01001111 323,000 23 -01001111 43.875 23 -01001111 12.50-a-share 23 -01001111 38.75 23 -01001111 435,000 23 -01001111 64-a-share 23 -01001111 11.50-a-share 23 -01001111 4,900 23 -01001111 74.50 23 -01001111 13-a-share 23 -01001111 59.50 23 -01001111 8,200 23 -01001111 1,150,000 23 -01001111 36-a-share 23 -01001111 2,250 23 -01001111 31.875 23 -01001111 32,500 24 -01001111 27.625 24 -01001111 61-a-share 24 -01001111 116,000 24 -01001111 110-a-share 24 -01001111 34.625 24 -01001111 44.25 24 -01001111 205,000 24 -01001111 67,000 24 -01001111 92.50 24 -01001111 76,000 24 -01001111 30.875 24 -01001111 68.50 24 -01001111 265,000 24 -01001111 43-a-share 24 -01001111 235,000 24 -01001111 42.75 24 -01001111 37.375 24 -01001111 27.375 24 -01001111 510,000 25 -01001111 670,000 25 -01001111 38.25 25 -01001111 7,700 25 -01001111 27-a-share 25 -01001111 25.375 25 -01001111 365,000 25 -01001111 21.375 25 -01001111 24.875 25 -01001111 20.875 25 -01001111 55.50 25 -01001111 18-a-share 25 -01001111 660,000 25 -01001111 22.125 25 -01001111 41.25 25 -01001111 73,000 26 -01001111 107,000 26 -01001111 16,500 26 -01001111 285,000 26 -01001111 127,000 26 -01001111 26.625 26 -01001111 18.125 26 -01001111 415,000 26 -01001111 475,000 26 -01001111 9-a-share 26 -01001111 1,650 26 -01001111 640,000 26 -01001111 17,500 26 -01001111 21-a-share 26 -01001111 5,600 26 -01001111 460,000 26 -01001111 22.625 26 -01001111 21.125 26 -01001111 88,000 27 -01001111 54.25 27 -01001111 27,500 27 -01001111 34.125 27 -01001111 17.50-a-share 27 -01001111 37.875 27 -01001111 72.50 27 -01001111 94,000 27 -01001111 24.125 27 -01001111 11,500 27 -01001111 78,000 27 -01001111 19.125 28 -01001111 37-a-share 28 -01001111 31.125 28 -01001111 39.25 28 -01001111 27.875 28 -01001111 23.875 28 -01001111 53.50 28 -01001111 84,000 28 -01001111 103,000 28 -01001111 22.875 28 -01001111 3,900 28 -01001111 47.25 28 -01001111 4,700 28 -01001111 83,000 28 -01001111 37.75 28 -01001111 30.625 28 -01001111 46.25 28 -01001111 29.375 28 -01001111 6,800 28 -01001111 5,700 28 -01001111 1,150 29 -01001111 17.125 29 -01001111 19-a-share 29 -01001111 875,000 29 -01001111 35.125 29 -01001111 74-a-share 29 -01001111 37.25 29 -01001111 6,400 29 -01001111 82,000 29 -01001111 51.50 29 -01001111 23.375 29 -01001111 470,000 29 -01001111 34.875 30 -01001111 26.875 30 -01001111 29.625 30 -01001111 40.75 30 -01001111 960,000 30 -01001111 7,600 30 -01001111 74,000 30 -01001111 32.75 30 -01001111 1,350 30 -01001111 24.375 30 -01001111 26.375 30 -01001111 385,000 30 -01001111 19.875 30 -01001111 530,000 30 -01001111 1,350,000 30 -01001111 28.125 31 -01001111 36.75 31 -01001111 25.875 31 -01001111 30.125 31 -01001111 5,300 31 -01001111 19.625 31 -01001111 18.625 31 -01001111 580,000 31 -01001111 45.25 31 -01001111 57.50 31 -01001111 49,000 31 -01001111 22.375 31 -01001111 315,000 31 -01001111 25.625 31 -01001111 295,000 31 -01001111 2,250,000 31 -01001111 215,000 31 -01001111 6,200 31 -01001111 20.125 32 -01001111 4,100 32 -01001111 50.50 32 -01001111 23.125 32 -01001111 10,500 32 -01001111 39.50 32 -01001111 79,000 32 -01001111 66,000 32 -01001111 68,000 32 -01001111 6,300 32 -01001111 24.625 32 -01001111 33.25 32 -01001111 63,000 32 -01001111 89,500 32 -01001111 42.25 32 -01001111 390,000 32 -01001111 185,000 32 -01001111 90-a-share 32 -01001111 560,000 33 -01001111 39.75 33 -01001111 680,000 33 -01001111 34.50 33 -01001111 13.875 33 -01001111 105,000 33 -01001111 255,000 33 -01001111 9,500 33 -01001111 104,000 33 -01001111 480,000 33 -01001111 52-a-share 33 -01001111 16-a-share 33 -01001111 5,800 33 -01001111 24-a-share 33 -01001111 55-a-share 34 -01001111 540,000 34 -01001111 575,000 34 -01001111 49.50 34 -01001111 36.25 34 -01001111 430,000 34 -01001111 44.75 34 -01001111 6,100 34 -01001111 16.375 35 -01001111 3.00 35 -01001111 33.75 35 -01001111 41.75 35 -01001111 108,000 35 -01001111 725,000 35 -01001111 21.875 35 -01001111 43.50 35 -01001111 195,000 35 -01001111 26-a-share 35 -01001111 43.25 35 -01001111 17.375 36 -01001111 41.50 36 -01001111 58,000 37 -01001111 61.50 37 -01001111 1,050 37 -01001111 1,950,000 37 -01001111 19.375 37 -01001111 15.375 37 -01001111 52.50 37 -01001111 420,000 37 -01001111 62.50 38 -01001111 17.625 38 -01001111 7,200 38 -01001111 28.25 38 -01001111 46.75 38 -01001111 1,750 38 -01001111 13,500 38 -01001111 35.75 38 -01001111 14.125 39 -01001111 45.50 39 -01001111 370,000 39 -01001111 145,000 39 -01001111 20.625 39 -01001111 18-a-barrel 39 -01001111 46.50 40 -01001111 16.625 40 -01001111 13.625 40 -01001111 42.50 40 -01001111 56,000 40 -01001111 14-a-share 40 -01001111 32-a-share 41 -01001111 11.375 41 -01001111 8-a-share 41 -01001111 22-a-share 42 -01001111 72,000 42 -01001111 13.375 42 -01001111 51,000 42 -01001111 3,100 42 -01001111 44-a-share 43 -01001111 14.625 43 -01001111 5,400 43 -01001111 440,000 43 -01001111 95,000 43 -01001111 11.625 43 -01001111 35-a-share 43 -01001111 5,200 43 -01001111 18.375 43 -01001111 41-a-share 43 -01001111 380,000 44 -01001111 15-a-share 44 -01001111 38.50 44 -01001111 12.375 44 -01001111 34.75 44 -01001111 53,000 44 -01001111 16.875 45 -01001111 17.875 45 -01001111 18.875 45 -01001111 57,000 45 -01001111 4,400 45 -01001111 21.625 45 -01001111 52,000 45 -01001111 17-a-share 46 -01001111 30.25 46 -01001111 80-a-share 46 -01001111 31-a-share 46 -01001111 15.125 46 -01001111 72-a-share 47 -01001111 13.125 47 -01001111 4,600 47 -01001111 31.75 47 -01001111 33-a-share 47 -01001111 42-a-share 47 -01001111 15.625 47 -01001111 4,300 47 -01001111 41,000 47 -01001111 4,200 47 -01001111 40.50 47 -01001111 7-a-share 48 -01001111 16.125 48 -01001111 25.75 48 -01001111 4,800 48 -01001111 25-a-share 48 -01001111 33.50 48 -01001111 28.75 48 -01001111 28-a-share 48 -01001111 39,000 49 -01001111 62,000 49 -01001111 425,000 49 -01001111 30.75 49 -01001111 47.50 49 -01001111 310,000 49 -01001111 35.50 49 -01001111 3.70 50 -01001111 36.50 50 -01001111 21.75 50 -01001111 23.75 50 -01001111 35.25 51 -01001111 6.125 51 -01001111 950,000 51 -01001111 675,000 51 -01001111 32.25 51 -01001111 280,000 51 -01001111 14.875 52 -01001111 12.875 52 -01001111 320,000 52 -01001111 54,000 52 -01001111 75-a-share 52 -01001111 270,000 53 -01001111 12.625 53 -01001111 34.25 53 -01001111 155,000 53 -01001111 48.50 54 -01001111 3,700 54 -01001111 9.625 54 -01001111 325,000 54 -01001111 64,000 54 -01001111 27.75 54 -01001111 10.625 54 -01001111 38,000 54 -01001111 12,500 55 -01001111 525,000 55 -01001111 330,000 56 -01001111 1,750,000 56 -01001111 3,800 56 -01001111 70-a-share 56 -01001111 2,900 57 -01001111 47-a-share 57 -01001111 34,000 57 -01001111 31.50 57 -01001111 24.75 57 -01001111 3,400 57 -01001111 10.875 57 -01001111 12.125 58 -01001111 46,000 59 -01001111 29.75 59 -01001111 22.75 59 -01001111 44,000 59 -01001111 26.75 59 -01001111 8,500 59 -01001111 625,000 60 -01001111 15.875 60 -01001111 165,000 60 -01001111 20.75 60 -01001111 29.25 60 -01001111 22.25 61 -01001111 210,000 61 -01001111 29,000 61 -01001111 31,000 62 -01001111 43,000 62 -01001111 4.375 62 -01001111 135,000 62 -01001111 3,600 62 -01001111 25.25 62 -01001111 47,000 63 -01001111 1,250 64 -01001111 10-a-share 64 -01001111 19.75 64 -01001111 5.375 64 -01001111 275,000 64 -01001111 27.25 64 -01001111 65-a-share 64 -01001111 20.25 65 -01001111 10.125 65 -01001111 42,000 65 -01001111 260,000 65 -01001111 63-a-share 66 -01001111 14.375 66 -01001111 33,000 66 -01001111 29.50 66 -01001111 30.50 67 -01001111 37,000 67 -01001111 12-a-share 67 -01001111 11.875 69 -01001111 21.25 69 -01001111 360,000 72 -01001111 5.625 72 -01001111 340,000 72 -01001111 4.125 73 -01001111 190,000 73 -01001111 26.25 73 -01001111 5.125 73 -01001111 375,000 74 -01001111 6.375 74 -01001111 24.50 74 -01001111 4.625 74 -01001111 220,000 75 -01001111 5.875 75 -01001111 170,000 75 -01001111 28.50 76 -01001111 40-a-share 77 -01001111 37.50 77 -01001111 230,000 78 -01001111 25.50 78 -01001111 18.25 78 -01001111 30-a-share 81 -01001111 23.50 81 -01001111 2,600 82 -01001111 240,000 82 -01001111 32.50 82 -01001111 17.75 83 -01001111 19.25 84 -01001111 85,000 85 -01001111 45-a-share 86 -01001111 3,300 87 -01001111 1,250,000 87 -01001111 20-a-share 87 -01001111 19,000 88 -01001111 3.625 89 -01001111 50-a-share 91 -01001111 21,000 92 -01001111 48,000 92 -01001111 16.75 93 -01001111 20.50 93 -01001111 32,000 94 -01001111 115,000 96 -01001111 225,000 97 -01001111 27,000 97 -01001111 27.50 97 -01001111 36,000 98 -01001111 26,000 98 -01001111 19.50 99 -01001111 3.875 99 -01001111 21.50 100 -01001111 175,000 100 -01001111 2,400 101 -01001111 850,000 101 -01001111 17.25 102 -01001111 3.125 102 -01001111 2,700 104 -01001111 140,000 104 -01001111 2,300 105 -01001111 1,900 105 -01001111 28,000 107 -01001111 1000 108 -01001111 5,500 108 -01001111 2,100 110 -01001111 6,500 110 -01001111 110,000 113 -01001111 3,200 115 -01001111 26.50 116 -01001111 2.875 116 -01001111 160,000 118 -01001111 7,500 119 -01001111 2.625 123 -01001111 23,000 125 -01001111 65,000 126 -01001111 22.50 128 -01001111 2.10 129 -01001111 15.50 130 -01001111 130,000 131 -01001111 2,800 131 -01001111 24,000 136 -01001111 180,000 138 -01001111 22,000 143 -01001111 650,000 143 -01001111 55,000 147 -01001111 2,200 149 -01001111 550,000 150 -01001111 16.50 151 -01001111 17,000 155 -01001111 2.375 156 -01001111 14.50 160 -01001111 11.50 161 -01001111 1,700 167 -01001111 4,500 168 -01001111 18.50 171 -01001111 13,000 176 -01001111 2.125 180 -01001111 1.40 185 -01001111 125,000 191 -01001111 450,000 192 -01001111 60-a-share 194 -01001111 1,800 194 -01001111 17.50 196 -01001111 45,000 198 -01001111 1.875 201 -01001111 1.90 202 -01001111 1.70 203 -01001111 3,500 203 -01001111 14,000 204 -01001111 1,100 204 -01001111 1,600 206 -01001111 18,000 206 -01001111 120,000 207 -01001111 1,400 210 -01001111 16,000 212 -01001111 10.50 212 -01001111 90,000 214 -01001111 5.50 216 -01001111 1.60 228 -01001111 1.80 229 -01001111 9,000 231 -01001111 11,000 236 -01001111 1,300 247 -01001111 12.50 247 -01001111 1.625 254 -01001111 900,000 264 -01001111 35,000 267 -01001111 350,000 268 -01001111 1.20 280 -01001111 80,000 281 -01001111 70,000 281 -01001111 4.50 285 -01001111 75,000 315 -01001111 1.375 331 -01001111 3.50 344 -01001111 7,000 373 -01001111 12,000 379 -01001111 8,000 380 -01001111 1.125 387 -01001111 750,000 387 -01001111 700,000 397 -01001111 800,000 404 -01001111 60,000 465 -01001111 1,200 474 -01001111 6,000 490 -01001111 2,500 497 -01001111 600,000 567 -01001111 150,000 577 -01001111 2.50 600 -01001111 15,000 642 -01001111 40,000 666 -01001111 4,000 668 -01001111 400,000 679 -01001111 1,500 682 -01001111 25,000 702 -01001111 1.50 752 -01001111 30,000 754 -01001111 250,000 812 -01001111 300,000 896 -01001111 3,000 946 -01001111 20,000 989 -01001111 200,000 1118 -01001111 50,000 1320 -01001111 2,000 1364 -01001111 5,000 1375 -01001111 500,000 1486 -01001111 10,000 2146 -01001111 1,000 3632 -01001111 100,000 2353 -01010000000 6,863,863 1 -01010000000 mistranslated 1 -01010000000 3,839,039 1 -01010000000 9,616,584 1 -01010000000 14,302,517 1 -01010000000 9,327,601 1 -01010000000 1,164,000 1 -01010000000 147,200 1 -01010000000 overeaten 1 -01010000000 58,649,744 1 -01010000000 jerrybuilt 1 -01010000000 bossing 1 -01010000000 541,617 1 -01010000000 5,011,166 1 -01010000000 17,038,415 1 -01010000000 3,582 1 -01010000000 43,600,000 1 -01010000000 3,054,044 1 -01010000000 6,294,912 1 -01010000000 re-insert 1 -01010000000 14,078,066 1 -01010000000 7,682,127 1 -01010000000 9,480,380 1 -01010000000 out-traded 1 -01010000000 1,835,250 1 -01010000000 7,606,465 1 -01010000000 cigarette-caused 1 -01010000000 77,099 1 -01010000000 2,193,102 1 -01010000000 2,227,846 1 -01010000000 9,119,889 1 -01010000000 10,269,000 1 -01010000000 Chinese-Malay 1 -01010000000 2,808,404 1 -01010000000 1,691 1 -01010000000 10,751,300 1 -01010000000 outbranched 1 -01010000000 7,963,000 1 -01010000000 4,436,000 1 -01010000000 4,791,073 1 -01010000000 reembrace 1 -01010000000 7,169,648 1 -01010000000 7,557,670 1 -01010000000 faired 1 -01010000000 err/ 1 -01010000000 379,628 1 -01010000000 11,868,148 1 -01010000000 1,976,000 1 -01010000000 5,450,000 1 -01010000000 4,552,693 1 -01010000000 spoilt 1 -01010000000 4,074 1 -01010000000 misspecified 1 -01010000000 redominated 1 -01010000000 5,776,500 1 -01010000000 10,312,234 1 -01010000000 droppped 1 -01010000000 strenghened 1 -01010000000 9,310,603 1 -01010000000 1,785,867 1 -01010000000 48,950 1 -01010000000 warrent 1 -01010000000 5,225,000 1 -01010000000 2,052,970 1 -01010000000 detoothed 1 -01010000000 self-initiate 1 -01010000000 7,178,808 1 -01010000000 3,624,266 1 -01010000000 9,960,033 1 -01010000000 citied 1 -01010000000 1,949 1 -01010000000 11,842,694 1 -01010000000 well-fitted 1 -01010000000 13,053,000 1 -01010000000 1,895,650 1 -01010000000 2,128,000 1 -01010000000 underperfomed 1 -01010000000 19,043,380 1 -01010000000 harrass 1 -01010000000 overpromoted 1 -01010000000 566,100 1 -01010000000 unbundled 1 -01010000000 Kremlinized 1 -01010000000 26,810,911 1 -01010000000 jaw-boned 1 -01010000000 2,702,248 1 -01010000000 14,432,000 1 -01010000000 4,056 1 -01010000000 advocated/predicted 1 -01010000000 caulked 1 -01010000000 labelled 1 -01010000000 18,829,530 1 -01010000000 8,719 1 -01010000000 outsubsidized 1 -01010000000 quick-fired 1 -01010000000 burn-related 1 -01010000000 ex-housing 1 -01010000000 549,917 1 -01010000000 71,255,000 1 -01010000000 13,134,000 1 -01010000000 1,992 2 -01010000000 trespassed 2 -01010000000 flailed 2 -01010000000 61,400 3 -01010000000 become 11573 -01010000000 undergone 131 -010100000010 reburbish 1 -010100000010 MCA-machine 1 -010100000010 out-of-the-ghetto 1 -010100000010 PowerJet 1 -010100000010 Reagan-cabinet 1 -010100000010 787,800 1 -010100000010 asume 1 -010100000010 daily-item 1 -010100000010 noshes 1 -010100000010 aspirate 1 -010100000010 Southern-based 1 -010100000010 faculty-sponsored 1 -010100000010 Caliph 1 -010100000010 called-for 1 -010100000010 unring 1 -010100000010 Ozal-was-shot-for-defending-the-Greeks 1 -010100000010 thwack 1 -010100000010 stengthen 2 -010100000010 appall 2 -010100000010 Stifle 2 -010100000010 befit 2 -010100000010 business-sponsored 2 -010100000010 prefigure 2 -010100000010 obstructs 2 -010100000010 antagonizes 2 -010100000010 recieve 2 -010100000010 refloated 2 -010100000010 pre-date 5 -010100000010 denote 8 -010100000010 predate 8 -010100000010 bespeak 8 -010100000010 brandish 9 -010100000010 hearten 9 -010100000010 secrete 10 -010100000010 typify 11 -010100000010 epitomize 11 -010100000010 outsell 15 -010100000010 obligate 18 -010100000010 adorn 19 -010100000010 underlie 25 -010100000010 exemplify 26 -010100000010 transcend 27 -010100000010 afflict 42 -010100000010 foreshadow 44 -010100000010 precede 47 -010100000010 presage 50 -010100000010 encompass 53 -010100000010 depict 77 -010100000010 portend 83 -010100000010 outnumber 99 -010100000010 comprise 133 -010100000010 outweigh 139 -010100000010 resemble 221 -010100000010 exclude 352 -010100000010 constitute 454 -010100000010 contain 907 -010100000010 involve 1395 -010100000010 represent 2324 -010100000010 include 8935 -010100000010 reflect 2946 -010100000011 re-inspect 1 -010100000011 outstay 1 -010100000011 overfish 1 -010100000011 cremate 1 -010100000011 inititate 1 -010100000011 misguide 1 -010100000011 sanctifying 1 -010100000011 more-significant 1 -010100000011 --for 1 -010100000011 bow-hunt 1 -010100000011 outbox 1 -010100000011 non-Brazilian 1 -010100000011 overcentralize 1 -010100000011 alway 1 -010100000011 whiffing 1 -010100000011 out-give 1 -010100000011 retitle 1 -010100000011 discomfit 1 -010100000011 relight 1 -010100000011 re-acquire 1 -010100000011 fulfull 1 -010100000011 asssume 1 -010100000011 apprises 1 -010100000011 revalidate 1 -010100000011 guest-starring 1 -010100000011 adduce 1 -010100000011 re-affirms 1 -010100000011 excecute 1 -010100000011 addresssing 1 -010100000011 memorialize 2 -010100000011 overstimulate 2 -010100000011 embitter 2 -010100000011 double-deck 2 -010100000011 comanage 2 -010100000011 bureaucratize 2 -010100000011 Widen 2 -010100000011 re-educate 3 -010100000011 spot-check 3 -010100000011 resolicit 4 -010100000011 titillate 4 -010100000011 mystify 4 -010100000011 impel 4 -010100000011 ensnare 4 -010100000011 stigmatize 5 -010100000011 suffocate 5 -010100000011 abridge 5 -010100000011 shadowing 5 -010100000011 daunt 5 -010100000011 proscribe 6 -010100000011 shackle 6 -010100000011 vex 7 -010100000011 bedevil 7 -010100000011 fascinate 8 -010100000011 undervalue 8 -010100000011 befall 9 -010100000011 roil 9 -010100000011 co-manage 10 -010100000011 shortchange 10 -010100000011 contravene 10 -010100000011 glorify 10 -010100000011 disenfranchise 11 -010100000011 rile 11 -010100000011 embolden 12 -010100000011 renationalize 12 -010100000011 handcuff 14 -010100000011 relegate 14 -010100000011 pollute 14 -010100000011 outshine 16 -010100000011 infuriate 18 -010100000011 confound 20 -010100000011 pervade 21 -010100000011 strangle 21 -010100000011 reassume 22 -010100000011 necessitate 23 -010100000011 negate 23 -010100000011 preempt 24 -010100000011 signify 27 -010100000011 skew 29 -010100000011 devastate 30 -010100000011 supersede 30 -010100000011 imperil 31 -010100000011 condone 35 -010100000011 empower 43 -010100000011 tempt 53 -010100000011 disappoint 53 -010100000011 overwhelm 67 -010100000011 pre-empt 78 -010100000011 entail 95 -010100000011 distort 96 -010100000011 cripple 98 -010100000011 impair 101 -010100000011 forbid 108 -010100000011 penalize 119 -010100000011 inhibit 120 -010100000011 exacerbate 122 -010100000011 endanger 126 -010100000011 hinder 134 -010100000011 hamper 157 -010100000011 impede 167 -010100000011 preclude 167 -010100000011 entitle 210 -010100000011 jeopardize 228 -010100000011 invite 257 -010100000011 urge 521 -010100000011 prohibit 536 -010100000011 discourage 649 -010100000011 prompt 683 -010100000011 violate 721 -010100000011 enable 1151 -010100000011 permit 1462 -010100000011 encourage 1536 -010100000011 assume 1634 -010100000011 affect 2285 -010100000011 mean 3130 -010100000011 allow 5771 -010100000011 require 4422 -0101000001000 high-fived 1 -0101000001000 arent 1 -0101000001000 high-salaried 1 -0101000001000 swaddle 1 -0101000001000 out-busy 1 -0101000001000 32,449 1 -0101000001000 high-tax-bracket 1 -0101000001000 over-commit 1 -0101000001000 overexpose 1 -0101000001000 nonfarmer 1 -0101000001000 heckle 1 -0101000001000 perturb 1 -0101000001000 prime-plus 1 -0101000001000 flagellated 1 -0101000001000 scuffing 1 -0101000001000 undesiring 1 -0101000001000 addling 1 -0101000001000 no-strings 1 -0101000001000 outshout 1 -0101000001000 re-educating 1 -0101000001000 non-Finnish 1 -0101000001000 unmix 1 -0101000001000 out-yell 1 -0101000001000 saddens 1 -0101000001000 razz 1 -0101000001000 arraying 1 -0101000001000 harrassed 1 -0101000001000 for/with/to 1 -0101000001000 compell 1 -0101000001000 air-freighted 1 -0101000001000 bad-rapping 1 -0101000001000 bumiputra 1 -0101000001000 non-Mafia 1 -0101000001000 red-flags 1 -0101000001000 goldstock 1 -0101000001000 electonically 1 -0101000001000 re-propose 1 -0101000001000 sadden 1 -0101000001000 reimplanted 1 -0101000001000 remold 2 -0101000001000 Shenzen 2 -0101000001000 waylay 2 -0101000001000 disconcert 2 -0101000001000 recoated 2 -0101000001000 Margarite 2 -0101000001000 enumerate 2 -0101000001000 astonish 2 -0101000001000 outpolitic 2 -0101000001000 complimenting 2 -0101000001000 spank 2 -0101000001000 enmesh 2 -0101000001000 outwork 2 -0101000001000 convenience-minded 2 -0101000001000 obsess 2 -0101000001000 hoodwink 2 -0101000001000 unshackle 2 -0101000001000 apprise 2 -0101000001000 dehumanize 2 -0101000001000 out-compete 2 -0101000001000 anesthetize 3 -0101000001000 regale 3 -0101000001000 squish 3 -0101000001000 circumscribe 3 -0101000001000 predispose 3 -0101000001000 disabuse 3 -0101000001000 debrief 3 -0101000001000 situate 3 -0101000001000 one-up 3 -0101000001000 squirreling 4 -0101000001000 shoo 4 -0101000001000 astound 4 -0101000001000 excoriate 5 -0101000001000 smite 5 -0101000001000 terrify 5 -0101000001000 pester 5 -0101000001000 disown 5 -0101000001000 crucify 6 -0101000001000 re-elect 6 -0101000001000 begrudge 7 -0101000001000 persecute 7 -0101000001000 detach 7 -0101000001000 accost 7 -0101000001000 tabulate 8 -0101000001000 debase 8 -0101000001000 divvy 8 -0101000001000 abet 8 -0101000001000 freshen 10 -0101000001000 pummel 10 -0101000001000 endear 13 -0101000001000 dub 14 -0101000001000 consign 14 -0101000001000 liven 14 -0101000001000 seduce 15 -0101000001000 outlive 18 -0101000001000 annoy 19 -0101000001000 disparage 19 -0101000001000 devour 24 -0101000001000 bless 24 -0101000001000 catapult 26 -0101000001000 implicate 29 -0101000001000 summon 47 -0101000001000 distract 51 -0101000001000 lighten 57 -0101000001000 soak 59 -0101000001000 surround 62 -0101000001000 greet 74 -0101000001000 rob 76 -0101000001000 frighten 77 -0101000001000 deprive 107 -0101000001000 compel 160 -0101000001000 accuse 212 -0101000001000 remind 250 -0101000001000 lend 973 -0101000001000 pick 1493 -0101000001000 let 3989 -0101000001000 give 10621 -0101000001001 Reliance-associated 1 -0101000001001 vacation-sensitive 1 -0101000001001 recyle 1 -0101000001001 synopsize 1 -0101000001001 ingore 1 -0101000001001 SmithKline-making 1 -0101000001001 re-raise 1 -0101000001001 41,979 1 -0101000001001 47,443 1 -0101000001001 interlink 1 -0101000001001 3,655 1 -0101000001001 ENJOY 1 -0101000001001 out-service 1 -0101000001001 more-remote 1 -0101000001001 incourage 1 -0101000001001 enflame 1 -0101000001001 schmoozed 1 -0101000001001 rerelease 1 -0101000001001 franker 1 -0101000001001 price/quality 1 -0101000001001 83,340 1 -0101000001001 lower-asset 1 -0101000001001 more-visceral 1 -0101000001001 protray 1 -0101000001001 768,318 1 -0101000001001 696,192 1 -0101000001001 unrequest 1 -0101000001001 gold-standard 1 -0101000001001 conflictive 1 -0101000001001 prettify 1 -0101000001001 unmerciful 1 -0101000001001 outstrategize 1 -0101000001001 fire-and-brimstone 1 -0101000001001 dogrant 1 -0101000001001 regurgitate 1 -0101000001001 thriftless 1 -0101000001001 finance-driven 1 -0101000001001 sear 1 -0101000001001 more-popular 1 -0101000001001 flay 1 -0101000001001 strenthen 1 -0101000001001 forcefeed 1 -0101000001001 20.46 1 -0101000001001 equilibrate 1 -0101000001001 non-university 1 -0101000001001 CNB. 1 -0101000001001 over-price 1 -0101000001001 dimiss 1 -0101000001001 969,091 1 -0101000001001 underdo 1 -0101000001001 pre-emptory 1 -0101000001001 long-stagnant 1 -0101000001001 nursingcare 1 -0101000001001 full-board 1 -0101000001001 official-priced 1 -0101000001001 non-maritime 1 -0101000001001 overinterpret 2 -0101000001001 reattach 2 -0101000001001 repave 2 -0101000001001 divebomb 2 -0101000001001 7,540 2 -0101000001001 high-tail 2 -0101000001001 mechanize 2 -0101000001001 serialize 2 -0101000001001 hand-deliver 2 -0101000001001 annotate 2 -0101000001001 rephrase 2 -0101000001001 unhinge 2 -0101000001001 incapacitate 2 -0101000001001 disinvite 2 -0101000001001 recirculate 3 -0101000001001 dislose 3 -0101000001001 subjugate 3 -0101000001001 test-fire 3 -0101000001001 re-direct 3 -0101000001001 christen 3 -0101000001001 cadge 3 -0101000001001 discombobulate 3 -0101000001001 botch 4 -0101000001001 imbue 4 -0101000001001 encrypt 4 -0101000001001 encapsulate 4 -0101000001001 decriminalize 4 -0101000001001 unwrap 5 -0101000001001 pooh-pooh 5 -0101000001001 force-feed 5 -0101000001001 repulse 5 -0101000001001 dehydrate 5 -0101000001001 crumple 6 -0101000001001 pulverize 6 -0101000001001 muffle 7 -0101000001001 baffle 7 -0101000001001 reroute 9 -0101000001001 cheapen 11 -0101000001001 ruffle 12 -0101000001001 obliterate 13 -0101000001001 nab 13 -0101000001001 contaminate 16 -0101000001001 etch 17 -0101000001001 stymie 34 -0101000001001 elude 48 -0101000001001 elicit 53 -0101000001001 furnish 82 -0101000001001 deflect 103 -0101000001001 accompany 124 -0101000001001 prescribe 124 -0101000001001 render 152 -0101000001001 deter 393 -0101000001001 make 26950 -0101000001001 prevent 2834 -0101000001010 families/you 1 -0101000001010 100-times 1 -0101000001010 shivered 1 -0101000001010 tip-toe 1 -0101000001010 veg 1 -0101000001010 deputize 2 -0101000001010 roust 2 -0101000001010 foot-drag 2 -0101000001010 expiate 2 -0101000001010 reconvert 2 -0101000001010 prance 2 -0101000001010 misinform 2 -0101000001010 chickened 2 -0101000001010 fondle 3 -0101000001010 slink 3 -0101000001010 blurt 5 -0101000001010 peter 6 -0101000001010 bulldoze 6 -0101000001010 mete 6 -0101000001010 leach 7 -0101000001010 wriggle 7 -0101000001010 chug 8 -0101000001010 flail 9 -0101000001010 whisk 10 -0101000001010 radiate 10 -0101000001010 winnow 10 -0101000001010 thrash 17 -0101000001010 spew 20 -0101000001010 lug 23 -0101000001010 ferret 27 -0101000001010 drown 28 -0101000001010 eke 31 -0101000001010 flatten 33 -0101000001010 pry 36 -0101000001010 don 38 -0101000001010 churn 43 -0101000001010 straighten 49 -0101000001010 unleash 87 -0101000001010 carve 97 -0101000001010 pour 176 -0101000001010 wipe 248 -0101000001010 translate 283 -0101000001010 throw 679 -0101000001010 pull 1050 -0101000001010 get 20821 -0101000001010 carry 2721 -0101000001011 reward-based 1 -0101000001011 ESCALATES 1 -0101000001011 railpolitik 1 -0101000001011 more-desperate 1 -0101000001011 hurdy-gurdy 1 -0101000001011 ciphers 1 -0101000001011 suports 1 -0101000001011 conveythat 1 -0101000001011 contraction-oriented 1 -0101000001011 phone-ordered 1 -0101000001011 dust-reducing 1 -0101000001011 lower-than-forecast 1 -0101000001011 post-court 1 -0101000001011 post-market-crash 1 -0101000001011 minmal 1 -0101000001011 cantilever 1 -0101000001011 smoothe 1 -0101000001011 airline-takeover 1 -0101000001011 post-audit 1 -0101000001011 Newsday/WNBC 1 -0101000001011 ct 1 -0101000001011 ad-ban 1 -0101000001011 pencil-neck 1 -0101000001011 slower-than-normal 1 -0101000001011 tyrannize 2 -0101000001011 productivity-enhancing 2 -0101000001011 steepen 3 -0101000001011 sate 5 -0101000001011 consecrate 5 -0101000001011 skewer 7 -0101000001011 agonize 9 -0101000001011 gloat 11 -0101000001011 compress 15 -0101000001011 haggle 23 -0101000001011 mull 26 -0101000001011 pore 32 -0101000001011 cede 45 -0101000001011 take 18920 -0101000001011 preside 89 -0101000001100 sheathe 1 -0101000001100 WASP-dom 1 -0101000001100 out-Lenin 1 -0101000001100 reprove 1 -0101000001100 de-Yogi 1 -0101000001100 demonstate 1 -0101000001100 mislay 1 -0101000001100 relitigate 1 -0101000001100 overindulge 1 -0101000001100 rechannel 1 -0101000001100 outgross 1 -0101000001100 double-teamed 1 -0101000001100 recondition 1 -0101000001100 34440.09 1 -0101000001100 hardhead 1 -0101000001100 Godforsaken 1 -0101000001100 whap 1 -0101000001100 34529.22 1 -0101000001100 bethought 1 -0101000001100 less-provincial 1 -0101000001100 Carter-bashing 1 -0101000001100 hagiographic 1 -0101000001100 high-teens 1 -0101000001100 outcuss 1 -0101000001100 exhume 2 -0101000001100 inveigle 2 -0101000001100 reengage 2 -0101000001100 unplug 2 -0101000001100 hero-worship 2 -0101000001100 Wore 2 -0101000001100 rerecorded 2 -0101000001100 overemphasize 2 -0101000001100 pooh-poohs 3 -0101000001100 conciliate 3 -0101000001100 sentimentalize 3 -0101000001100 refresh 3 -0101000001100 tantalize 3 -0101000001100 pigeonhole 3 -0101000001100 disassemble 3 -0101000001100 relearn 3 -0101000001100 fumigate 3 -0101000001100 overpower 4 -0101000001100 beseech 4 -0101000001100 interject 4 -0101000001100 ostracize 4 -0101000001100 demobilize 4 -0101000001100 intone 5 -0101000001100 transcribe 5 -0101000001100 underrate 6 -0101000001100 smother 8 -0101000001100 maim 8 -0101000001100 adore 8 -0101000001100 belabor 8 -0101000001100 overhear 9 -0101000001100 double-check 11 -0101000001100 repress 12 -0101000001100 nourish 13 -0101000001100 peruse 14 -0101000001100 boo 15 -0101000001100 misunderstand 15 -0101000001100 corroborate 15 -0101000001100 despise 16 -0101000001100 mourn 17 -0101000001100 assail 20 -0101000001100 congratulate 29 -0101000001100 infer 31 -0101000001100 cherish 32 -0101000001100 fathom 37 -0101000001100 ascertain 42 -0101000001100 pronounce 43 -0101000001100 exaggerate 51 -0101000001100 comprehend 62 -0101000001100 discern 68 -0101000001100 ponder 91 -0101000001100 underestimate 100 -0101000001100 characterize 118 -0101000001100 admire 132 -0101000001100 applaud 150 -0101000001100 thank 160 -0101000001100 calculate 239 -0101000001100 criticize 294 -0101000001100 define 341 -0101000001100 discover 349 -0101000001100 accomplish 373 -0101000001100 reveal 404 -0101000001100 appreciate 409 -0101000001100 assure 548 -0101000001100 imagine 550 -0101000001100 describe 651 -0101000001100 explain 1400 -0101000001100 hear 1771 -0101000001100 ask 2797 -0101000001100 tell 3111 -0101000001100 see 12169 -0101000001101 functionless 1 -0101000001101 tiger-team 1 -0101000001101 over-stock 1 -0101000001101 inscribe 1 -0101000001101 evalute 1 -0101000001101 recraft 1 -0101000001101 undercharge 1 -0101000001101 rebill 1 -0101000001101 relfect 1 -0101000001101 recognie 1 -0101000001101 overinflate 2 -0101000001101 deconglomerate 2 -0101000001101 ding 2 -0101000001101 annualize 2 -0101000001101 sublimate 2 -0101000001101 Finlandize 2 -0101000001101 demote 3 -0101000001101 supercede 3 -0101000001101 plagiarize 3 -0101000001101 recentralize 3 -0101000001101 bewail 3 -0101000001101 conceptualize 4 -0101000001101 misjudge 4 -0101000001101 unfreeze 4 -0101000001101 disclaim 4 -0101000001101 delude 7 -0101000001101 amaze 7 -0101000001101 mutilate 7 -0101000001101 fertilize 7 -0101000001101 gainsay 7 -0101000001101 startle 7 -0101000001101 misappropriate 9 -0101000001101 misinterpret 9 -0101000001101 insinuate 9 -0101000001101 traverse 10 -0101000001101 unscramble 11 -0101000001101 disobey 12 -0101000001101 construe 13 -0101000001101 berate 13 -0101000001101 extol 13 -0101000001101 mar 13 -0101000001101 detest 14 -0101000001101 patronize 15 -0101000001101 belittle 15 -0101000001101 flout 16 -0101000001101 forsake 18 -0101000001101 disavow 19 -0101000001101 arbitrate 19 -0101000001101 bemoan 20 -0101000001101 accentuate 21 -0101000001101 misrepresent 21 -0101000001101 abhor 21 -0101000001101 scour 22 -0101000001101 espouse 23 -0101000001101 dedicate 25 -0101000001101 incite 25 -0101000001101 countenance 25 -0101000001101 betray 27 -0101000001101 recite 31 -0101000001101 decry 32 -0101000001101 deplore 32 -0101000001101 spurn 34 -0101000001101 repudiate 40 -0101000001101 downplay 40 -0101000001101 affirm 47 -0101000001101 delete 54 -0101000001101 refute 56 -0101000001101 evoke 64 -0101000001101 obey 68 -0101000001101 inherit 74 -0101000001101 proclaim 75 -0101000001101 denounce 80 -0101000001101 contradict 90 -0101000001101 certify 90 -0101000001101 hasten 91 -0101000001101 overlook 93 -0101000001101 invent 96 -0101000001101 contemplate 105 -0101000001101 possess 116 -0101000001101 defy 123 -0101000001101 invoke 129 -0101000001101 shun 132 -0101000001101 derail 149 -0101000001101 ratify 162 -0101000001101 convey 184 -0101000001101 attach 190 -0101000001101 observe 203 -0101000001101 await 214 -0101000001101 interpret 231 -0101000001101 tolerate 236 -0101000001101 endorse 338 -0101000001101 miss 444 -0101000001101 declare 486 -0101000001101 emphasize 490 -0101000001101 ignore 662 -0101000001101 resist 666 -0101000001101 enjoy 761 -0101000001101 submit 767 -0101000001101 reject 838 -0101000001101 recommend 923 -0101000001101 confirm 928 -0101000001101 propose 959 -0101000001101 deny 1112 -0101000001101 recognize 1152 -0101000001101 oppose 1177 -0101000001101 approve 1824 -0101000001101 accept 3240 -0101000001101 consider 5031 -0101000001101 find 7418 -0101000001110 HartScott-Rodino 1 -0101000001110 misapply 1 -0101000001110 creat 1 -0101000001110 capsulize 1 -0101000001110 determinine 1 -0101000001110 stiff-arm 1 -0101000001110 side-step 1 -0101000001110 Reich-like 1 -0101000001110 intuit 2 -0101000001110 oscillate 4 -0101000001110 arrogate 7 -0101000001110 affix 9 -0101000001110 wreak 31 -0101000001110 designate 86 -0101000001110 dictate 197 -0101000001110 distinguish 210 -0101000001110 elect 443 -0101000001110 threaten 611 -0101000001110 contribute 1005 -0101000001110 choose 1359 -0101000001110 learn 1462 -0101000001110 prove 2077 -0101000001110 determine 2163 -0101000001110 decide 2670 -0101000001110 add 2814 -0101000001110 seek 5219 -0101000001111 INSIST 1 -0101000001111 --mdespite 1 -0101000001111 70-0 1 -0101000001111 time-trial 1 -0101000001111 concering 1 -0101000001111 cumulate 1 -0101000001111 shoewear 1 -0101000001111 downstream-refining 1 -0101000001111 SS-16s 1 -0101000001111 relighted 1 -0101000001111 overtrain 1 -0101000001111 forewarn 1 -0101000001111 deficit-competitiveness 1 -0101000001111 acknowlege 1 -0101000001111 GROWN 1 -0101000001111 specifiy 1 -0101000001111 ACCEPT 1 -0101000001111 nostalgize 1 -0101000001111 Thubten 1 -0101000001111 outbacks 1 -0101000001111 Mexico-U.S. 1 -0101000001111 Chicago-centric 1 -0101000001111 receivable-supported 1 -0101000001111 soft-play 1 -0101000001111 unintimidating 1 -0101000001111 pursuade 1 -0101000001111 tank-engine 1 -0101000001111 durably 2 -0101000001111 WALK 2 -0101000001111 pinch-hit 2 -0101000001111 microwaving 2 -0101000001111 fly-line 2 -0101000001111 prayable 2 -0101000001111 opticians 2 -0101000001111 buzzers 2 -0101000001111 upbraiding 3 -0101000001111 localize 3 -0101000001111 presuppose 4 -0101000001111 idiot-proof 5 -0101000001111 prophesy 6 -0101000001111 Hide 9 -0101000001111 snicker 14 -0101000001111 upstage 19 -0101000001111 hound 19 -0101000001111 belie 24 -0101000001111 paraphrase 25 -0101000001111 receivable 116 -0101000001111 illustrate 216 -0101000001111 imply 221 -0101000001111 conclude 653 -0101000001111 demonstrate 675 -0101000001111 ensure 1609 -0101000001111 show 9165 -0101000001111 indicate 2099 -01010000100 de-sleazed 1 -01010000100 overdevelop 1 -01010000100 barehanded 1 -01010000100 hitchhiked 1 -01010000100 municipalize 1 -01010000100 reindustrialize 1 -01010000100 maitain 1 -01010000100 TELLING 1 -01010000100 limn 1 -01010000100 re-formulating 1 -01010000100 Deflect 1 -01010000100 dive-bomb 1 -01010000100 re-orient 1 -01010000100 asphyxiate 1 -01010000100 out-hoity-toity 1 -01010000100 reoganize 1 -01010000100 out-reform 1 -01010000100 regild 1 -01010000100 launders 1 -01010000100 out-jab 1 -01010000100 rehears 1 -01010000100 divy 1 -01010000100 out-propagandize 1 -01010000100 Affirming 1 -01010000100 body-block 1 -01010000100 rebait 1 -01010000100 triangulate 1 -01010000100 restage 1 -01010000100 rains/Until 1 -01010000100 harrumphing 1 -01010000100 refire 1 -01010000100 knead 1 -01010000100 Shamoo 1 -01010000100 end-all 1 -01010000100 regin 1 -01010000100 38,662 1 -01010000100 5,372,190 1 -01010000100 overplay 1 -01010000100 air-ship 1 -01010000100 out-white 1 -01010000100 filch 1 -01010000100 net-debtor 1 -01010000100 just-in-case 1 -01010000100 challange 1 -01010000100 Deceive 1 -01010000100 deinstitutionalize 1 -01010000100 smooth-talk 1 -01010000100 re-address 1 -01010000100 circumnavigate 1 -01010000100 re-marketed 1 -01010000100 relink 1 -01010000100 rustproof 1 -01010000100 pre-heat 1 -01010000100 joned 1 -01010000100 air-condition 1 -01010000100 pre-determine 1 -01010000100 underserviced 1 -01010000100 recode 1 -01010000100 copyread 1 -01010000100 over-regulates 1 -01010000100 underly 1 -01010000100 Savoring 1 -01010000100 rein-in 1 -01010000100 dynamize 1 -01010000100 hand-pick 1 -01010000100 enamor 1 -01010000100 Japanese-Nicaraguan 1 -01010000100 unbutton 1 -01010000100 overquote 1 -01010000100 randomize 1 -01010000100 push-start 1 -01010000100 abbetting 1 -01010000100 Trudeau-style 1 -01010000100 front-load 1 -01010000100 administrates 1 -01010000100 more-accommodating 1 -01010000100 test-run 1 -01010000100 re-lease 1 -01010000100 thresh 1 -01010000100 repopen 1 -01010000100 overrate 1 -01010000100 emblazon 1 -01010000100 wrests 1 -01010000100 re-approved 1 -01010000100 investigators-- 1 -01010000100 reconsecrate 1 -01010000100 refortify 1 -01010000100 streamlime 1 -01010000100 out-cheap 1 -01010000100 outstep 1 -01010000100 3,463,164 1 -01010000100 renotify 1 -01010000100 hand-paint 1 -01010000100 reinculcate 1 -01010000100 over-stress 1 -01010000100 recork 1 -01010000100 ever-racier 1 -01010000100 rehouse 1 -01010000100 retell 1 -01010000100 misdirect 1 -01010000100 primary-dealership 1 -01010000100 illumine 1 -01010000100 retracting 1 -01010000100 re-stabilize 1 -01010000100 re-buy 1 -01010000100 re-nationalize 1 -01010000100 recopy 1 -01010000100 satistfy 1 -01010000100 outglitz 1 -01010000100 84,897 1 -01010000100 bioengineer 1 -01010000100 resew 1 -01010000100 redistrict 1 -01010000100 bobtail 1 -01010000100 uncapping 1 -01010000100 re-boost 1 -01010000100 McDonaldize 1 -01010000100 uncap 1 -01010000100 federalize 1 -01010000100 re-cut 1 -01010000100 miscoloring 1 -01010000100 annoint 1 -01010000100 pedantify 1 -01010000100 Sweeten 1 -01010000100 snipping 1 -01010000100 re-state 1 -01010000100 European-subsidized 1 -01010000100 decapitalize 1 -01010000100 distend 1 -01010000100 ever-shorter 1 -01010000100 re-adjust 1 -01010000100 re-enforce 1 -01010000100 down-played 1 -01010000100 overmanage 1 -01010000100 reprovision 1 -01010000100 re-auction 1 -01010000100 city-like 1 -01010000100 overfatten 1 -01010000100 reinvoke 1 -01010000100 lobotomize 1 -01010000100 de-list 1 -01010000100 overdiagnose 1 -01010000100 unfetter 1 -01010000100 circumcise 1 -01010000100 underdeclare 1 -01010000100 restaurantize 1 -01010000100 Gennarosince 1 -01010000100 Knight-Ridder. 1 -01010000100 exempt-fund 1 -01010000100 underemphasize 1 -01010000100 reborrow 1 -01010000100 festoon 1 -01010000100 uninterpretable 1 -01010000100 embellishes 1 -01010000100 undeceive 1 -01010000100 12,655 1 -01010000100 box-in 1 -01010000100 liquidize 1 -01010000100 Discourage 1 -01010000100 caging 1 -01010000100 reconceive 1 -01010000100 out-dove 1 -01010000100 overfulfill 1 -01010000100 re-audit 2 -01010000100 defames 2 -01010000100 individualize 2 -01010000100 reintegrate 2 -01010000100 capsize 2 -01010000100 re-open 2 -01010000100 prefund 2 -01010000100 vitiate 2 -01010000100 dislocate 2 -01010000100 Defraud 2 -01010000100 strenghten 2 -01010000100 aggrandize 2 -01010000100 destablize 2 -01010000100 decolonize 2 -01010000100 redub 2 -01010000100 re-start 2 -01010000100 depoliticize 2 -01010000100 satiate 2 -01010000100 reconnect 2 -01010000100 leaven 2 -01010000100 enchance 2 -01010000100 overgraze 2 -01010000100 reweave 2 -01010000100 sex-blind 2 -01010000100 requite 2 -01010000100 re-extend 2 -01010000100 reincarnate 2 -01010000100 excrete 3 -01010000100 Impoverished 3 -01010000100 regionalize 3 -01010000100 garnishee 3 -01010000100 de-escalate 3 -01010000100 truncate 3 -01010000100 exorcise 3 -01010000100 civilize 3 -01010000100 plumb 3 -01010000100 transmute 3 -01010000100 baptize 3 -01010000100 congest 3 -01010000100 pollutes 3 -01010000100 pilfer 3 -01010000100 remarket 3 -01010000100 reargue 3 -01010000100 recompute 4 -01010000100 captivate 4 -01010000100 delegitimize 4 -01010000100 mismanage 4 -01010000100 re-think 4 -01010000100 prioritize 4 -01010000100 unclog 4 -01010000100 radicalize 4 -01010000100 ravage 5 -01010000100 overvalue 5 -01010000100 besmirch 5 -01010000100 reawaken 5 -01010000100 elucidate 5 -01010000100 condense 5 -01010000100 prorate 5 -01010000100 immobilize 5 -01010000100 overtax 6 -01010000100 reassemble 6 -01010000100 enrage 6 -01010000100 reconfirm 7 -01010000100 jump-start 7 -01010000100 defund 7 -01010000100 redraft 7 -01010000100 retest 8 -01010000100 eviscerate 8 -01010000100 optimize 9 -01010000100 sully 9 -01010000100 outgrow 9 -01010000100 relabel 9 -01010000100 disable 9 -01010000100 puncture 10 -01010000100 jawbone 10 -01010000100 broach 10 -01010000100 rework 10 -01010000100 unnerve 10 -01010000100 constrict 10 -01010000100 reorient 10 -01010000100 instigate 10 -01010000100 embroil 10 -01010000100 reconfigure 10 -01010000100 restock 11 -01010000100 rediscover 11 -01010000100 redo 12 -01010000100 degrade 13 -01010000100 desegregate 13 -01010000100 reflate 13 -01010000100 blurs 14 -01010000100 downsize 14 -01010000100 internationalize 14 -01010000100 delineate 14 -01010000100 polarize 14 -01010000100 obviate 15 -01010000100 douse 16 -01010000100 reorder 16 -01010000100 reenter 16 -01010000100 burnish 16 -01010000100 readjust 17 -01010000100 democratize 17 -01010000100 apportion 18 -01010000100 redouble 18 -01010000100 summarize 19 -01010000100 codify 20 -01010000100 criminalize 20 -01010000100 darken 20 -01010000100 computerize 21 -01010000100 paralyze 21 -01010000100 sterilize 22 -01010000100 abrogate 22 -01010000100 magnify 22 -01010000100 politicize 23 -01010000100 foment 24 -01010000100 stoke 24 -01010000100 revalue 24 -01010000100 formalize 24 -01010000100 usurp 25 -01010000100 underpin 25 -01010000100 falsify 25 -01010000100 de-emphasize 25 -01010000100 inflame 26 -01010000100 flex 26 -01010000100 legitimize 26 -01010000100 invigorate 27 -01010000100 deflate 28 -01010000100 hone 28 -01010000100 harden 28 -01010000100 reinvigorate 29 -01010000100 decentralize 30 -01010000100 redistribute 30 -01010000100 normalize 30 -01010000100 reignite 31 -01010000100 shatter 32 -01010000100 spearhead 33 -01010000100 centralize 33 -01010000100 reexamine 34 -01010000100 substantiate 34 -01010000100 realign 36 -01010000100 harmonize 36 -01010000100 reevaluate 37 -01010000100 reestablish 38 -01010000100 deplete 38 -01010000100 renounce 39 -01010000100 refurbish 39 -01010000100 understate 40 -01010000100 redefine 41 -01010000100 constrain 41 -01010000100 stanch 42 -01010000100 redirect 43 -01010000100 fine-tune 43 -01010000100 reconstruct 43 -01010000100 re-establish 43 -01010000100 fatten 43 -01010000100 re-examine 43 -01010000100 revolutionize 44 -01010000100 underline 45 -01010000100 rejuvenate 45 -01010000100 outstrip 46 -01010000100 re-evaluate 48 -01010000100 retard 48 -01010000100 overstate 49 -01010000100 devalue 49 -01010000100 disband 50 -01010000100 stiffen 51 -01010000100 compute 53 -01010000100 aggravate 54 -01010000100 solidify 57 -01010000100 buttress 61 -01010000100 automate 62 -01010000100 mitigate 62 -01010000100 sever 63 -01010000100 halve 63 -01010000100 defray 63 -01010000100 lengthen 64 -01010000100 augment 64 -01010000100 re-enter 65 -01010000100 reassess 66 -01010000100 reclaim 67 -01010000100 dampen 69 -01010000100 refine 71 -01010000100 sharpen 72 -01010000100 unify 75 -01010000100 rekindle 75 -01010000100 deepen 77 -01010000100 deregulate 79 -01010000100 publicize 84 -01010000100 outpace 85 -01010000100 expedite 88 -01010000100 reaffirm 89 -01010000100 replenish 91 -01010000100 inflate 92 -01010000100 heighten 93 -01010000100 toughen 95 -01010000100 restate 97 -01010000100 omit 97 -01010000100 stifle 97 -01010000100 reshape 98 -01010000100 revitalize 101 -01010000100 escalate 101 -01010000100 prolong 105 -01010000100 buoy 106 -01010000100 rethink 107 -01010000100 allay 110 -01010000100 enlarge 110 -01010000100 shorten 110 -01010000100 loosen 122 -01010000100 simplify 126 -01010000100 revamp 129 -01010000100 recapitalize 138 -01010000100 discontinue 144 -01010000100 liberalize 147 -01010000100 pave 148 -01010000100 complicate 164 -01010000100 dismantle 169 -01010000100 alleviate 180 -01010000100 pare 198 -01010000100 conceal 207 -01010000100 intensify 210 -01010000100 reinforce 210 -01010000100 soften 214 -01010000100 lessen 217 -01010000100 reorganize 224 -01010000100 relax 227 -01010000100 erode 232 -01010000100 streamline 233 -01010000100 disrupt 246 -01010000100 diminish 249 -01010000100 sweeten 251 -01010000100 damp 253 -01010000100 restrain 259 -01010000100 widen 276 -01010000100 dilute 278 -01010000100 amend 278 -01010000100 curtail 282 -01010000100 revise 287 -01010000100 minimize 290 -01010000100 modernize 309 -01010000100 facilitate 314 -01010000100 coordinate 318 -01010000100 rebuild 327 -01010000100 renew 337 -01010000100 depress 362 -01010000100 maximize 364 -01010000100 suspend 393 -01010000100 broaden 402 -01010000100 reconsider 424 -01010000100 diversify 435 -01010000100 undermine 439 -01010000100 regain 457 -01010000100 consolidate 459 -01010000100 slash 460 -01010000100 revive 464 -01010000100 weaken 518 -01010000100 adjust 548 -01010000100 abandon 595 -01010000100 alter 599 -01010000100 accelerate 606 -01010000100 shrink 614 -01010000100 restrict 675 -01010000100 stabilize 700 -01010000100 stimulate 710 -01010000100 spur 720 -01010000100 trim 755 -01010000100 tighten 761 -01010000100 preserve 773 -01010000100 enhance 800 -01010000100 curb 807 -01010000100 restore 849 -01010000100 bolster 919 -01010000100 strengthen 1205 -01010000100 extend 1476 -01010000100 ease 1602 -01010000100 expand 3341 -01010000100 improve 3371 -01010000100 reduce 7423 -010100001010 beging 1 -010100001010 retracts 1 -010100001010 re-register 1 -010100001010 pro-female 1 -010100001010 self-identify 1 -010100001010 idemnify 1 -010100001010 RHII 1 -010100001010 Laude 1 -010100001010 more-prosaic 1 -010100001010 troubleshoot 1 -010100001010 conflict-ridden 1 -010100001010 fermentable 1 -010100001010 gang-up 1 -010100001010 near-Classical 1 -010100001010 parse 2 -010100001010 effectuate 2 -010100001010 224.84 2 -010100001010 bestride 2 -010100001010 overstaff 2 -010100001010 three-times 2 -010100001010 recalibrate 2 -010100001010 re-engage 2 -010100001010 cartelize 2 -010100001010 re-issue 2 -010100001010 160,160 2 -010100001010 Westernize 2 -010100001010 reenlist 3 -010100001010 homogenize 3 -010100001010 overextend 3 -010100001010 dispell 3 -010100001010 unlink 4 -010100001010 5,090 4 -010100001010 refloat 4 -010100001010 proofread 5 -010100001010 foist 5 -010100001010 embroider 6 -010100001010 deep-six 6 -010100001010 reregulate 6 -010100001010 displease 6 -010100001010 outguess 6 -010100001010 reunify 6 -010100001010 contrive 6 -010100001010 lampoon 6 -010100001010 implore 7 -010100001010 slay 7 -010100001010 dignify 8 -010100001010 colonize 8 -010100001010 re-emphasize 9 -010100001010 vibrate 9 -010100001010 declassify 9 -010100001010 calibrate 9 -010100001010 debunk 9 -010100001010 soft-pedal 9 -010100001010 promulgate 10 -010100001010 recant 10 -010100001010 recalculate 14 -010100001010 retract 15 -010100001010 short-circuit 15 -010100001010 flaunt 18 -010100001010 redraw 18 -010100001010 reunite 19 -010100001010 parlay 19 -010100001010 flunk 21 -010100001010 disarm 24 -010100001010 savor 24 -010100001010 finalize 25 -010100001010 visualize 27 -010100001010 quicken 29 -010100001010 activate 30 -010100001010 revisit 31 -010100001010 equate 32 -010100001010 bankroll 32 -010100001010 illuminate 32 -010100001010 decipher 36 -010100001010 rebut 39 -010100001010 rectify 41 -010100001010 reiterate 42 -010100001010 dramatize 42 -010100001010 abort 50 -010100001010 adjourn 51 -010100001010 replicate 55 -010100001010 unwind 57 -010100001010 heal 66 -010100001010 mend 72 -010100001010 uncover 83 -010100001010 tailor 83 -010100001010 outlaw 87 -010100001010 pinpoint 91 -010100001010 quantify 99 -010100001010 recapture 102 -010100001010 digest 103 -010100001010 divulge 106 -010100001010 relish 113 -010100001010 dispel 116 -010100001010 unravel 122 -010100001010 reconcile 134 -010100001010 underscore 144 -010100001010 salvage 149 -010100001010 verify 165 -010100001010 duplicate 177 -010100001010 connect 181 -010100001010 tackle 212 -010100001010 celebrate 215 -010100001010 clarify 236 -010100001010 unveil 238 -010100001010 consult 240 -010100001010 embrace 260 -010100001010 override 366 -010100001010 compare 469 -010100001010 assess 497 -010100001010 capture 503 -010100001010 reopen 552 -010100001010 express 558 -010100001010 examine 562 -010100001010 overcome 667 -010100001010 monitor 758 -010100001010 escape 791 -010100001010 solve 824 -010100001010 investigate 827 -010100001010 merge 1099 -010100001010 resolve 1451 -010100001010 announce 1502 -010100001010 match 1520 -010100001010 address 1691 -010100001010 identify 1836 -010100001010 disclose 2583 -010100001010 discuss 2745 -010100001010 cover 3528 -010100001010 complete 3686 -010100001010 meet 5787 -010100001010 win 4011 -0101000010110 fossilize 1 -0101000010110 remilitarize 1 -0101000010110 12-pound 1 -0101000010110 hyrdrofluoric 1 -0101000010110 118,647 1 -0101000010110 soft-peddle 1 -0101000010110 Merge 1 -0101000010110 high-seniority 1 -0101000010110 early-retiring 1 -0101000010110 5,596 1 -0101000010110 perjures 1 -0101000010110 multiproblem 1 -0101000010110 sod-grass 1 -0101000010110 out-did 1 -0101000010110 glad-hand 1 -0101000010110 flood-devastated 1 -0101000010110 bestir 1 -0101000010110 financea 1 -0101000010110 fence-post 1 -0101000010110 muscle-straining 1 -0101000010110 resplices 1 -0101000010110 4,297 1 -0101000010110 reclothe 1 -0101000010110 pocket-television 1 -0101000010110 minority-dominated 1 -0101000010110 British-administered 1 -0101000010110 26,295 1 -0101000010110 investment-starved 1 -0101000010110 high-limit 1 -0101000010110 impale 1 -0101000010110 famishing 1 -0101000010110 leather-draped 1 -0101000010110 outmuscle 1 -0101000010110 3,020,000 1 -0101000010110 25,306 1 -0101000010110 Eject 1 -0101000010110 non-drug-using 1 -0101000010110 out-pay 1 -0101000010110 Eretz 1 -0101000010110 overcommit 1 -0101000010110 convince/pressure 1 -0101000010110 28.57 1 -0101000010110 7.7855 1 -0101000010110 class-traitor 1 -0101000010110 devirginize 1 -0101000010110 machete-wielding 1 -0101000010110 7,432 1 -0101000010110 more-skeptical 1 -0101000010110 tranform 1 -0101000010110 disported 1 -0101000010110 solvent-laden 1 -0101000010110 4,439,000 1 -0101000010110 extradict 1 -0101000010110 57,188 1 -0101000010110 18,751 1 -0101000010110 disburden 1 -0101000010110 1,874 1 -0101000010110 re-prove 1 -0101000010110 restigmatize 1 -0101000010110 private-paying 1 -0101000010110 rolling-mill 1 -0101000010110 finger-pointer 1 -0101000010110 Nikhil 1 -0101000010110 cross-reference 1 -0101000010110 war-devasted 1 -0101000010110 betaken 1 -0101000010110 now-excluded 1 -0101000010110 533,692 1 -0101000010110 baseball-starved 1 -0101000010110 Shanghai-strain 1 -0101000010110 memory-chips 1 -0101000010110 85,273 1 -0101000010110 Silverstone 1 -0101000010110 sandblast 1 -0101000010110 black-American 1 -0101000010110 life.But 1 -0101000010110 less-than-half-time 1 -0101000010110 2,327 1 -0101000010110 reoil 1 -0101000010110 28-stories 1 -0101000010110 abasing 1 -0101000010110 allout 1 -0101000010110 re-election-minded 1 -0101000010110 heat-sterilize 1 -0101000010110 once-off-limits 1 -0101000010110 blues-loving 1 -0101000010110 freedom-of-choice 2 -0101000010110 incubate 2 -0101000010110 re-sign 2 -0101000010110 demonize 2 -0101000010110 Pursue 2 -0101000010110 unseparate 2 -0101000010110 renumber 2 -0101000010110 torching 2 -0101000010110 depopulate 2 -0101000010110 rededicate 2 -0101000010110 outfox 2 -0101000010110 torn-down 2 -0101000010110 re-employ 2 -0101000010110 lower-to-middle-income 2 -0101000010110 reprogram 2 -0101000010110 deify 2 -0101000010110 reacquaint 2 -0101000010110 unburden 2 -0101000010110 brutalize 3 -0101000010110 bamboozle 3 -0101000010110 debilitate 3 -0101000010110 disembowel 3 -0101000010110 propound 3 -0101000010110 sensitize 3 -0101000010110 engrave 3 -0101000010110 coopt 3 -0101000010110 jumpstart 3 -0101000010110 hypnotize 3 -0101000010110 shunt 3 -0101000010110 befuddle 3 -0101000010110 extrude 3 -0101000010110 remunerate 3 -0101000010110 bewilder 3 -0101000010110 propitiate 3 -0101000010110 kick-start 3 -0101000010110 upbraid 3 -0101000010110 accustom 3 -0101000010110 molest 3 -0101000010110 slake 3 -0101000010110 dilate 3 -0101000010110 deform 3 -0101000010110 Defend 4 -0101000010110 accomodate 4 -0101000010110 prejudge 4 -0101000010110 perjure 4 -0101000010110 inundate 4 -0101000010110 outdraw 4 -0101000010110 1,004 4 -0101000010110 accredit 4 -0101000010110 browbeat 4 -0101000010110 quench 4 -0101000010110 levitate 4 -0101000010110 entrap 4 -0101000010110 Americanize 4 -0101000010110 flog 4 -0101000010110 refight 4 -0101000010110 2,215 4 -0101000010110 brainwash 4 -0101000010110 re-enact 4 -0101000010110 trounce 4 -0101000010110 rearm 5 -0101000010110 misstate 5 -0101000010110 blacken 5 -0101000010110 embellish 5 -0101000010110 incarcerate 5 -0101000010110 enslave 5 -0101000010110 industrialize 5 -0101000010110 exterminate 5 -0101000010110 refashion 5 -0101000010110 defame 5 -0101000010110 disentangle 5 -0101000010110 reappraise 5 -0101000010110 unmask 6 -0101000010110 coddle 6 -0101000010110 inoculate 6 -0101000010110 entangle 6 -0101000010110 amputate 6 -0101000010110 abduct 6 -0101000010110 vilify 6 -0101000010110 immerse 6 -0101000010110 besiege 6 -0101000010110 idolize 6 -0101000010110 recheck 6 -0101000010110 re-equip 7 -0101000010110 narrate 7 -0101000010110 hospitalize 7 -0101000010110 recommit 7 -0101000010110 befriend 7 -0101000010110 undersell 7 -0101000010110 outsmart 7 -0101000010110 dissociate 7 -0101000010110 tweak 7 -0101000010110 oppress 7 -0101000010110 exhort 7 -0101000010110 out-perform 7 -0101000010110 chastise 7 -0101000010110 enshrine 7 -0101000010110 pervert 8 -0101000010110 underprice 8 -0101000010110 outflank 8 -0101000010110 envelop 8 -0101000010110 inculcate 8 -0101000010110 castigate 8 -0101000010110 disassociate 8 -0101000010110 reflag 8 -0101000010110 modulate 8 -0101000010110 pre-sell 8 -0101000010110 acquit 9 -0101000010110 bad-mouth 9 -0101000010110 annul 9 -0101000010110 expropriate 9 -0101000010110 admonish 9 -0101000010110 badger 9 -0101000010110 irk 9 -0101000010110 incriminate 9 -0101000010110 exonerate 9 -0101000010110 submerge 9 -0101000010110 preoccupy 10 -0101000010110 trivialize 10 -0101000010110 demystify 10 -0101000010110 subdue 10 -0101000010110 retry 10 -0101000010110 impoverish 10 -0101000010110 goad 10 -0101000010110 encircle 10 -0101000010110 annihilate 11 -0101000010110 pamper 11 -0101000010110 impugn 11 -0101000010110 categorize 11 -0101000010110 humanize 11 -0101000010110 reinterpret 11 -0101000010110 permeate 11 -0101000010110 clobber 11 -0101000010110 decimate 11 -0101000010110 pacify 12 -0101000010110 apprehend 12 -0101000010110 Quit 12 -0101000010110 imprison 12 -0101000010110 disprove 12 -0101000010110 demean 12 -0101000010110 adjudicate 12 -0101000010110 re-regulate 12 -0101000010110 dissect 12 -0101000010110 fortify 12 -0101000010110 bombard 13 -0101000010110 impeach 13 -0101000010110 unsettle 13 -0101000010110 animate 13 -0101000010110 glean 13 -0101000010110 uproot 13 -0101000010110 reconstitute 14 -0101000010110 purify 14 -0101000010110 denigrate 14 -0101000010110 bilk 14 -0101000010110 immunize 14 -0101000010110 banish 14 -0101000010110 outwit 14 -0101000010110 decouple 14 -0101000010110 familiarize 14 -0101000010110 whet 15 -0101000010110 outmaneuver 15 -0101000010110 ingratiate 15 -0101000010110 hurl 15 -0101000010110 humiliate 15 -0101000010110 dismember 15 -0101000010110 populate 15 -0101000010110 lambaste 16 -0101000010110 cross-examine 16 -0101000010110 co-opt 16 -0101000010110 resettle 16 -0101000010110 terrorize 16 -0101000010110 untangle 16 -0101000010110 enlighten 16 -0101000010110 acquaint 16 -0101000010110 sew 16 -0101000010110 interdict 17 -0101000010110 outspend 17 -0101000010110 detain 17 -0101000010110 interrogate 18 -0101000010110 entrust 18 -0101000010110 equalize 18 -0101000010110 outlast 19 -0101000010110 amuse 19 -0101000010110 ply 20 -0101000010110 institutionalize 20 -0101000010110 enliven 21 -0101000010110 disconnect 21 -0101000010110 cleanse 21 -0101000010110 engulf 21 -0101000010110 depose 21 -0101000010110 recreate 21 -0101000010110 antagonize 22 -0101000010110 cajole 22 -0101000010110 spook 22 -0101000010110 rouse 22 -0101000010110 vindicate 23 -0101000010110 amplify 23 -0101000010110 yank 24 -0101000010110 recuse 24 -0101000010110 demolish 24 -0101000010110 overshadow 24 -0101000010110 meld 24 -0101000010110 segregate 25 -0101000010110 reinvent 25 -0101000010110 pierce 25 -0101000010110 assimilate 25 -0101000010110 absolve 25 -0101000010110 avenge 25 -0101000010110 unlock 27 -0101000010110 reassign 27 -0101000010110 rehire 27 -0101000010110 retrain 28 -0101000010110 eschew 28 -0101000010110 ameliorate 28 -0101000010110 infect 29 -0101000010110 galvanize 29 -0101000010110 outdo 29 -0101000010110 squelch 29 -0101000010110 reposition 29 -0101000010110 confiscate 29 -0101000010110 extricate 30 -0101000010110 infuse 30 -0101000010110 irritate 32 -0101000010110 evict 32 -0101000010110 infiltrate 32 -0101000010110 hobble 33 -0101000010110 tarnish 33 -0101000010110 second-guess 33 -0101000010110 excite 34 -0101000010110 energize 34 -0101000010110 validate 34 -0101000010110 amortize 34 -0101000010110 evacuate 35 -0101000010110 decorate 35 -0101000010110 nationalize 36 -0101000010110 dislodge 36 -0101000010110 injure 36 -0101000010110 deport 36 -0101000010110 wean 36 -0101000010110 clog 36 -0101000010110 resuscitate 37 -0101000010110 orchestrate 38 -0101000010110 assassinate 38 -0101000010110 snatch 39 -0101000010110 supplant 41 -0101000010110 legalize 42 -0101000010110 harass 42 -0101000010110 overtake 45 -0101000010110 liberate 45 -0101000010110 displace 46 -0101000010110 rename 46 -0101000010110 juggle 46 -0101000010110 eradicate 46 -0101000010110 subvert 47 -0101000010110 monopolize 47 -0101000010110 confine 47 -0101000010110 discard 48 -0101000010110 coerce 49 -0101000010110 expel 49 -0101000010110 deceive 50 -0101000010110 commemorate 51 -0101000010110 elevate 52 -0101000010110 extradite 53 -0101000010110 rehabilitate 53 -0101000010110 rationalize 53 -0101000010110 perpetuate 54 -0101000010110 indulge 54 -0101000010110 intercept 55 -0101000010110 reassert 56 -0101000010110 spoil 58 -0101000010110 mollify 59 -0101000010110 destabilize 59 -0101000010110 conquer 60 -0101000010110 soothe 61 -0101000010110 align 61 -0101000010110 symbolize 61 -0101000010110 cultivate 61 -0101000010110 disperse 62 -0101000010110 disturb 62 -0101000010110 assuage 63 -0101000010110 enrich 64 -0101000010110 instruct 64 -0101000010110 coax 65 -0101000010110 overrule 65 -0101000010110 snare 66 -0101000010110 classify 67 -0101000010110 neutralize 67 -0101000010110 rejoin 67 -0101000010110 imitate 68 -0101000010110 utilize 73 -0101000010110 indict 74 -0101000010110 indemnify 74 -0101000010110 frustrate 76 -0101000010110 isolate 76 -0101000010110 interrupt 76 -0101000010110 entrench 79 -0101000010110 counteract 81 -0101000010110 alienate 82 -0101000010110 mimic 85 -0101000010110 enlist 85 -0101000010110 mobilize 87 -0101000010110 intimidate 89 -0101000010110 scuttle 89 -0101000010110 disqualify 89 -0101000010110 motivate 89 -0101000010110 emulate 90 -0101000010110 placate 90 -0101000010110 tout 90 -0101000010110 scrutinize 91 -0101000010110 differentiate 92 -0101000010110 bury 92 -0101000010110 sidestep 94 -0101000010110 condemn 94 -0101000010110 reinvest 95 -0101000010110 discredit 96 -0101000010110 embarrass 97 -0101000010110 dissuade 97 -0101000010110 retrieve 98 -0101000010110 unseat 98 -0101000010110 haunt 99 -0101000010110 invade 100 -0101000010110 erase 100 -0101000010110 entice 101 -0101000010110 topple 103 -0101000010110 revoke 105 -0101000010110 entertain 106 -0101000010110 propel 108 -0101000010110 prod 111 -0101000010110 mislead 111 -0101000010110 offend 112 -0101000010110 assign 116 -0101000010110 safeguard 117 -0101000010110 appease 120 -0101000010110 reinstate 124 -0101000010110 insulate 125 -0101000010110 undo 131 -0101000010110 dissolve 146 -0101000010110 enjoin 148 -0101000010110 impress 148 -0101000010110 confuse 149 -0101000010110 penetrate 151 -0101000010110 educate 161 -0101000010110 abolish 161 -0101000010110 insure 177 -0101000010110 supervise 192 -0101000010110 deploy 193 -0101000010110 outperform 197 -0101000010110 punish 199 -0101000010110 reimburse 204 -0101000010110 manipulate 205 -0101000010110 expose 206 -0101000010110 prosecute 208 -0101000010110 woo 208 -0101000010110 induce 218 -0101000010110 reassure 223 -0101000010110 nominate 232 -0101000010110 inform 234 -0101000010110 defraud 239 -0101000010110 transform 239 -0101000010110 divest 243 -0101000010110 steer 244 -0101000010110 portray 251 -0101000010110 steal 251 -0101000010110 notify 256 -0101000010110 relieve 271 -0101000010110 divide 274 -0101000010110 subsidize 277 -0101000010110 confront 278 -0101000010110 recruit 298 -0101000010110 exploit 309 -0101000010110 oust 311 -0101000010110 regulate 446 -0101000010110 accommodate 479 -0101000010110 oversee 494 -0101000010110 advise 497 -0101000010110 dismiss 513 -0101000010110 dominate 514 -0101000010110 teach 535 -0101000010110 destroy 564 -0101000010110 absorb 566 -0101000010110 sustain 571 -0101000010110 commit 571 -0101000010110 assist 573 -0101000010110 justify 674 -0101000010110 satisfy 727 -0101000010110 convince 772 -0101000010110 persuade 917 -0101000010110 treat 956 -0101000010110 kill 960 -0101000010110 deliver 1049 -0101000010110 remove 1270 -0101000010110 defend 1299 -0101000010110 fill 1316 -0101000010110 manage 1459 -0101000010110 eliminate 1693 -0101000010110 handle 1831 -0101000010110 send 1850 -0101000010110 replace 1913 -0101000010110 join 2047 -0101000010110 protect 2763 -0101000010110 stop 3251 -0101000010110 keep 8548 -0101000010110 bring 4413 -0101000010111 NDF-sponsored 1 -0101000010111 government-established 1 -0101000010111 general-revenue 1 -0101000010111 329,999 1 -0101000010111 massmarketed 1 -0101000010111 1,195.5 1 -0101000010111 out-connive 1 -0101000010111 Vigorously 1 -0101000010111 shoplift 1 -0101000010111 Truls 1 -0101000010111 Immortalize 1 -0101000010111 mah 1 -0101000010111 robin's-egg 1 -0101000010111 VQT. 1 -0101000010111 177,679 1 -0101000010111 board-assisted 1 -0101000010111 joint-managing 1 -0101000010111 forment 1 -0101000010111 confect 1 -0101000010111 Elect 1 -0101000010111 honey-coat 1 -0101000010111 post-1972 1 -0101000010111 verbalize 1 -0101000010111 Adelia 1 -0101000010111 Bluebell 1 -0101000010111 Relieve 1 -0101000010111 Rima 1 -0101000010111 non-patentable 1 -0101000010111 four-times-larger 1 -0101000010111 mislabel 1 -0101000010111 Torvald 1 -0101000010111 already-excessive 1 -0101000010111 grow-but 1 -0101000010111 less-congested 1 -0101000010111 consumate 1 -0101000010111 ever-deeper 1 -0101000010111 macadamia-nut 1 -0101000010111 U.S-financed 1 -0101000010111 opppose 1 -0101000010111 central-plan 1 -0101000010111 664,945 1 -0101000010111 alliterate 1 -0101000010111 babysit 1 -0101000010111 skin-diving 1 -0101000010111 Morteo 1 -0101000010111 2,830. 1 -0101000010111 1,710. 1 -0101000010111 persue 1 -0101000010111 Madelaine 1 -0101000010111 late-filing 1 -0101000010111 government-developed 1 -0101000010111 fluoresce 1 -0101000010111 Europeanize 1 -0101000010111 4,743 1 -0101000010111 reinoculate 1 -0101000010111 Nduka 1 -0101000010111 disinfest 1 -0101000010111 Vladmir 1 -0101000010111 wacked-out 1 -0101000010111 green-light 1 -0101000010111 resod 1 -0101000010111 ceteris 1 -0101000010111 conflict-free 1 -0101000010111 misbrand 1 -0101000010111 sex-for-hire 1 -0101000010111 overcommercialize 1 -0101000010111 deficit-finance 1 -0101000010111 extinquish 1 -0101000010111 SSMC. 1 -0101000010111 AKER 1 -0101000010111 203,899 1 -0101000010111 more-upscale 1 -0101000010111 zero-out 1 -0101000010111 Alzheimertype 1 -0101000010111 alumina-production 1 -0101000010111 mulct 1 -0101000010111 custom-make 1 -0101000010111 re-route 1 -0101000010111 24,418 1 -0101000010111 custom-fit 1 -0101000010111 Nyckeln 1 -0101000010111 Ostlandske 1 -0101000010111 Kimsong 1 -0101000010111 overexplain 1 -0101000010111 Naberizhniye 1 -0101000010111 guerrilla-affiliated 1 -0101000010111 similarly-equipped 1 -0101000010111 impregnate 1 -0101000010111 Consorzio 1 -0101000010111 1,918,499 1 -0101000010111 Mitterrandian 1 -0101000010111 Netcenter 1 -0101000010111 defang 1 -0101000010111 download 1 -0101000010111 full-house 1 -0101000010111 synchronize 2 -0101000010111 impanel 2 -0101000010111 282,358 2 -0101000010111 impersonate 2 -0101000010111 restimulate 2 -0101000010111 twirl 2 -0101000010111 recommission 2 -0101000010111 SKW 2 -0101000010111 evince 2 -0101000010111 2180 2 -0101000010111 titrate 2 -0101000010111 beatify 2 -0101000010111 detoxify 2 -0101000010111 legitimatize 2 -0101000010111 underplay 2 -0101000010111 doublecheck 2 -0101000010111 extirpating 2 -0101000010111 re-energize 3 -0101000010111 reinspect 3 -0101000010111 deaden 3 -0101000010111 transfuse 3 -0101000010111 handpick 3 -0101000010111 reapportion 3 -0101000010111 sanctify 3 -0101000010111 empanel 3 -0101000010111 oversimplify 3 -0101000010111 administrate 3 -0101000010111 enunciate 3 -0101000010111 excavate 3 -0101000010111 reforest 4 -0101000010111 commandeer 4 -0101000010111 unblock 4 -0101000010111 ventilate 4 -0101000010111 readmit 4 -0101000010111 disinfect 4 -0101000010111 1230 4 -0101000010111 decertify 4 -0101000010111 pressurize 5 -0101000010111 pillory 5 -0101000010111 colorize 6 -0101000010111 dethrone 6 -0101000010111 reauthorize 6 -0101000010111 reenact 6 -0101000010111 saturate 6 -0101000010111 refile 7 -0101000010111 unseal 7 -0101000010111 underreport 7 -0101000010111 vaporize 7 -0101000010111 micromanage 7 -0101000010111 perpetrate 8 -0101000010111 subdivide 8 -0101000010111 personify 8 -0101000010111 sculpt 9 -0101000010111 decode 9 -0101000010111 encode 10 -0101000010111 co-produce 10 -0101000010111 forswear 11 -0101000010111 collateralize 11 -0101000010111 popularize 12 -0101000010111 co-develop 12 -0101000010111 transact 13 -0101000010111 synthesize 13 -0101000010111 regenerate 15 -0101000010111 detonate 15 -0101000010111 redevelop 15 -0101000010111 inaugurate 16 -0101000010111 endow 20 -0101000010111 delist 20 -0101000010111 appraise 22 -0101000010111 fabricate 22 -0101000010111 reactivate 22 -0101000010111 sidetrack 24 -0101000010111 concoct 26 -0101000010111 re-create 26 -0101000010111 surmount 26 -0101000010111 clinch 27 -0101000010111 impart 28 -0101000010111 shelve 28 -0101000010111 procure 31 -0101000010111 rehear 32 -0101000010111 reintroduce 38 -0101000010111 disseminate 39 -0101000010111 instill 44 -0101000010111 compile 46 -0101000010111 commercialize 46 -0101000010111 reimpose 47 -0101000010111 standardize 49 -0101000010111 smuggle 50 -0101000010111 simulate 52 -0101000010111 renovate 55 -0101000010111 nullify 59 -0101000010111 repel 63 -0101000010111 quash 65 -0101000010111 obstruct 69 -0101000010111 diagnose 70 -0101000010111 resurrect 73 -0101000010111 mediate 74 -0101000010111 wrest 82 -0101000010111 formulate 91 -0101000010111 convene 92 -0101000010111 privatize 93 -0101000010111 suppress 98 -0101000010111 invalidate 113 -0101000010111 evade 120 -0101000010111 attain 123 -0101000010111 rescind 146 -0101000010111 circumvent 147 -0101000010111 defuse 152 -0101000010111 uphold 155 -0101000010111 integrate 176 -0101000010111 forestall 178 -0101000010111 forgo 186 -0101000010111 quell 193 -0101000010111 incorporate 194 -0101000010111 withstand 201 -0101000010111 forge 201 -0101000010111 inspect 208 -0101000010111 locate 211 -0101000010111 undertake 214 -0101000010111 construct 215 -0101000010111 administer 217 -0101000010111 waive 223 -0101000010111 devise 226 -0101000010111 initiate 240 -0101000010111 assemble 265 -0101000010111 enact 281 -0101000010111 overturn 298 -0101000010111 analyze 301 -0101000010111 avert 305 -0101000010111 seize 317 -0101000010111 terminate 378 -0101000010111 postpone 399 -0101000010111 organize 404 -0101000010111 publish 420 -0101000010111 detect 452 -0101000010111 thwart 471 -0101000010111 install 473 -0101000010111 enforce 531 -0101000010111 implement 613 -0101000010111 arrange 678 -0101000010111 evaluate 684 -0101000010111 explore 695 -0101000010111 adopt 928 -0101000010111 introduce 1075 -0101000010111 promote 1254 -0101000010111 achieve 1285 -0101000010111 enter 1540 -0101000010111 establish 1604 -0101000010111 negotiate 1687 -0101000010111 obtain 1698 -0101000010111 pursue 1938 -0101000010111 settle 2032 -0101000010111 maintain 2705 -0101000010111 develop 3227 -0101000010111 avoid 3602 -0101000010111 acquire 7850 -0101000010111 build 4446 -010100001100 blemish-free 1 -010100001100 estrange 1 -010100001100 midriver 1 -010100001100 self-defined 1 -010100001100 deemphasize 1 -010100001100 race-specific 1 -010100001100 reclean 1 -010100001100 simplifiy 1 -010100001100 deconstruct 1 -010100001100 low-financing 1 -010100001100 elasticize 1 -010100001100 eulogize 1 -010100001100 publicly-financed 1 -010100001100 eye-irritant 1 -010100001100 sousing 1 -010100001100 forward-sales 1 -010100001100 bank-subsidized 1 -010100001100 insinuates 1 -010100001100 jeopordizing 1 -010100001100 interstate-compact 1 -010100001100 abbreviate 1 -010100001100 fine-diameter 1 -010100001100 76.92 1 -010100001100 3.435 1 -010100001100 sieze 1 -010100001100 single-priced 1 -010100001100 Latinize 1 -010100001100 unspools 1 -010100001100 scuff 1 -010100001100 stoploss 1 -010100001100 regrowing 1 -010100001100 dry-dock 1 -010100001100 secreting 1 -010100001100 consoliate 1 -010100001100 repunch 1 -010100001100 sneak-preview 1 -010100001100 lip-synch 1 -010100001100 center-based 1 -010100001100 deep-fry 1 -010100001100 red-flag 1 -010100001100 mailing-list 1 -010100001100 revaccinate 1 -010100001100 defease 1 -010100001100 re-rescue 1 -010100001100 billboard-sized 1 -010100001100 overstaying 1 -010100001100 retargets 1 -010100001100 no-fat 1 -010100001100 share-purchasing 1 -010100001100 fourth-fifths 1 -010100001100 revaluate 1 -010100001100 2,502,338 1 -010100001100 inactivate 2 -010100001100 685,365 2 -010100001100 recommence 2 -010100001100 re-transmit 2 -010100001100 reevalute 2 -010100001100 gladden 2 -010100001100 redesignate 2 -010100001100 re-evalute 2 -010100001100 re-impose 2 -010100001100 emboss 2 -010100001100 139,500 2 -010100001100 restyle 2 -010100001100 garble 2 -010100001100 109,628 2 -010100001100 Scrooge-like 2 -010100001100 desalinate 2 -010100001100 co-sign 3 -010100001100 reoffer 3 -010100001100 overbook 3 -010100001100 glamorize 3 -010100001100 monetize 3 -010100001100 refigure 3 -010100001100 reinstall 3 -010100001100 ruing 3 -010100001100 encase 3 -010100001100 87,900 3 -010100001100 lead-manage 3 -010100001100 Promote 3 -010100001100 quadruples 3 -010100001100 re-sell 4 -010100001100 gnash 4 -010100001100 denominate 4 -010100001100 decommission 4 -010100001100 tape-record 4 -010100001100 rezone 4 -010100001100 superimpose 4 -010100001100 retype 4 -010100001100 obfuscate 5 -010100001100 ogle 5 -010100001100 incinerate 5 -010100001100 reemphasize 5 -010100001100 reprocess 5 -010100001100 re-flag 5 -010100001100 deactivate 6 -010100001100 propagate 6 -010100001100 enclose 6 -010100001100 recombine 7 -010100001100 unpack 7 -010100001100 overdraw 7 -010100001100 embed 7 -010100001100 remanufacture 8 -010100001100 self-insure 8 -010100001100 wend 9 -010100001100 refuel 9 -010100001100 shuck 9 -010100001100 bequeath 9 -010100001100 bide 10 -010100001100 reprice 10 -010100001100 encumber 10 -010100001100 raze 12 -010100001100 pre-pay 12 -010100001100 unearth 12 -010100001100 personalize 13 -010100001100 reread 16 -010100001100 customize 17 -010100001100 mothball 17 -010100001100 televise 18 -010100001100 extinguish 18 -010100001100 sublease 18 -010100001100 memorize 19 -010100001100 reacquire 20 -010100001100 rearrange 23 -010100001100 remodel 25 -010100001100 resubmit 25 -010100001100 vacate 29 -010100001100 jettison 30 -010100001100 denationalize 32 -010100001100 reclassify 33 -010100001100 redeploy 34 -010100001100 repackage 37 -010100001100 prepay 47 -010100001100 depreciate 47 -010100001100 recycle 71 -010100001100 peddle 84 -010100001100 equip 84 -010100001100 resell 142 -010100001100 relocate 175 -010100001100 renegotiate 177 -010100001100 unload 210 -010100001100 execute 228 -010100001100 modify 284 -010100001100 fulfill 295 -010100001100 refinance 340 -010100001100 liquidate 344 -010100001100 cancel 391 -010100001100 underwrite 453 -010100001100 combine 510 -010100001100 shed 793 -010100001100 distribute 799 -010100001100 repay 860 -010100001100 restructure 912 -010100001100 convert 936 -010100001100 sell 17748 -010100001100 redeem 1082 -010100001101 333,731 1 -010100001101 still-virgin 1 -010100001101 48,700 1 -010100001101 126,997 1 -010100001101 98,489 1 -010100001101 172,552 1 -010100001101 111,376 1 -010100001101 168,111 1 -010100001101 100,221 1 -010100001101 271,135 1 -010100001101 161,266 1 -010100001101 173,702 1 -010100001101 80,206 1 -010100001101 175,626 1 -010100001101 162,904 1 -010100001101 57.85 1 -010100001101 Avante/Garde 1 -010100001101 74,141 1 -010100001101 465,465,564 1 -010100001101 394,300 1 -010100001101 32,494,029 1 -010100001101 653,284 1 -010100001101 65,048 1 -010100001101 30,115,616 1 -010100001101 63,073 1 -010100001101 24636.46 1 -010100001101 635,693 1 -010100001101 3.7919 1 -010100001101 286,634 1 -010100001101 pre-place 1 -010100001101 868,709 1 -010100001101 775,843 1 -010100001101 246,828,744 1 -010100001101 2.29751 1 -010100001101 232,199,275 1 -010100001101 1,239,000 1 -010100001101 89,619 1 -010100001101 19,909 1 -010100001101 46,335 1 -010100001101 76,509 1 -010100001101 8,640,762 1 -010100001101 274,194 1 -010100001101 non-finished 1 -010100001101 outgoon 1 -010100001101 350,500 1 -010100001101 3665.93 1 -010100001101 201,786 1 -010100001101 14,893 1 -010100001101 98,664 1 -010100001101 159,449 1 -010100001101 141,895 1 -010100001101 84,240 1 -010100001101 101,374 1 -010100001101 36,249,159 1 -010100001101 988,300 1 -010100001101 Marshmallows 1 -010100001101 demimunicipal 1 -010100001101 214,574 1 -010100001101 264,824 1 -010100001101 334,165 1 -010100001101 841,850 1 -010100001101 beand 1 -010100001101 446.76 1 -010100001101 unspool 1 -010100001101 72.098 1 -010100001101 654.74 1 -010100001101 450,741 1 -010100001101 4,493,470 1 -010100001101 8,677,500 1 -010100001101 331.90 1 -010100001101 989,568 1 -010100001101 self-regulate 1 -010100001101 510,675 1 -010100001101 35,235,783 1 -010100001101 249,183,477 1 -010100001101 Asianet 1 -010100001101 7,849,000 1 -010100001101 fledglings 1 -010100001101 276,074 1 -010100001101 4,809 1 -010100001101 33,495,843 1 -010100001101 crumble/ 1 -010100001101 6,240 1 -010100001101 21,430 1 -010100001101 80,986 1 -010100001101 50,255 1 -010100001101 507,868 1 -010100001101 433.57 1 -010100001101 74,531 1 -010100001101 decaffeinate 1 -010100001101 35,719 1 -010100001101 militarize 1 -010100001101 250,557 1 -010100001101 23,362 1 -010100001101 96,746 1 -010100001101 1,071,327 1 -010100001101 MANIFATTURA 1 -010100001101 428.87 1 -010100001101 576,535 1 -010100001101 250,759 1 -010100001101 319,326 1 -010100001101 131,915 1 -010100001101 494,395 1 -010100001101 96,521 1 -010100001101 1,130,338 1 -010100001101 76,663 1 -010100001101 113,720,000 1 -010100001101 115,200 1 -010100001101 24,566 1 -010100001101 33,574 1 -010100001101 278,932 1 -010100001101 8,374,291 1 -010100001101 26,268 1 -010100001101 5,556,533 1 -010100001101 lasso 1 -010100001101 32,772,671 1 -010100001101 pre-order 1 -010100001101 deferred-month 1 -010100001101 Israel-aimed 1 -010100001101 399,300 1 -010100001101 363,517 1 -010100001101 497,632 1 -010100001101 5,721,100 1 -010100001101 4,130 1 -010100001101 110,712 1 -010100001101 30,752 1 -010100001101 69,644 1 -010100001101 1,591,900 1 -010100001101 25,120 1 -010100001101 143,300 1 -010100001101 79,442 1 -010100001101 2,201,589 1 -010100001101 157,316 1 -010100001101 978,091 1 -010100001101 512,962 1 -010100001101 1,093,067 1 -010100001101 34,391,764 1 -010100001101 150,804 1 -010100001101 3,310,500 1 -010100001101 21.245 1 -010100001101 21.293 1 -010100001101 34,364 1 -010100001101 75,845 1 -010100001101 87,237 1 -010100001101 236,143,019 1 -010100001101 Komanoff 1 -010100001101 camera-clicking 1 -010100001101 Engender 1 -010100001101 19,329 1 -010100001101 6,316 1 -010100001101 3,502 1 -010100001101 Prentiss/ 1 -010100001101 77,573 1 -010100001101 disrobe 1 -010100001101 76.48 1 -010100001101 higher-rent 1 -010100001101 53,796 1 -010100001101 881,612 1 -010100001101 26,425,000 1 -010100001101 STC. 1 -010100001101 10,089 1 -010100001101 535,632 1 -010100001101 1.4985 1 -010100001101 9,103 1 -010100001101 13,775 1 -010100001101 takoevers 1 -010100001101 36,013,289 1 -010100001101 461,539,056 1 -010100001101 3,954,510 1 -010100001101 421,714 1 -010100001101 1,456,436 1 -010100001101 province-related 1 -010100001101 14,870,200 1 -010100001101 more-usable 1 -010100001101 741.5 1 -010100001101 17,140 1 -010100001101 6,205,654 1 -010100001101 73,899 1 -010100001101 1,003,913 1 -010100001101 85,553 1 -010100001101 6,048,900 1 -010100001101 63,059,170 1 -010100001101 304,706 1 -010100001101 840,723 1 -010100001101 363.04 1 -010100001101 521,074 1 -010100001101 1.6473 1 -010100001101 364.07 1 -010100001101 33,768 1 -010100001101 21,100 1 -010100001101 Mastery 1 -010100001101 Iran/Iraq 1 -010100001101 1,810,692 1 -010100001101 213,983,702 1 -010100001101 222,223 1 -010100001101 357.87 1 -010100001101 1,878,770 1 -010100001101 11,404 1 -010100001101 1.6413 1 -010100001101 27,572 1 -010100001101 292,102 1 -010100001101 399,579 1 -010100001101 1,383,068 1 -010100001101 355,551 1 -010100001101 279,582 1 -010100001101 184,936,231 1 -010100001101 359.03 1 -010100001101 111,519 1 -010100001101 3.2737 1 -010100001101 361.01 1 -010100001101 357.73 1 -010100001101 162.47 1 -010100001101 Supersteak 1 -010100001101 74.81 1 -010100001101 300,108 1 -010100001101 1,646,180 1 -010100001101 1.5243 1 -010100001101 Generate 1 -010100001101 392.04 1 -010100001101 399.38 1 -010100001101 over-regulate 1 -010100001101 Mudville 1 -010100001101 169,248 1 -010100001101 106,435 1 -010100001101 310,583 1 -010100001101 24,867 1 -010100001101 162.82 1 -010100001101 160-seat 1 -010100001101 417.39 1 -010100001101 59,225 1 -010100001101 26,130 1 -010100001101 91,716 1 -010100001101 306,381 1 -010100001101 31,704,221 1 -010100001101 287,734 1 -010100001101 68,912 1 -010100001101 409.18 1 -010100001101 1.2121 1 -010100001101 1,033,598 1 -010100001101 1.5368 1 -010100001101 mass-manufacture 1 -010100001101 428.3 1 -010100001101 33,912,960 1 -010100001101 5450 1 -010100001101 winkle 1 -010100001101 59,916 1 -010100001101 133,834 1 -010100001101 24,074 1 -010100001101 neoexpressionist 1 -010100001101 1.4753 1 -010100001101 2,093,000 1 -010100001101 conscientize 1 -010100001101 4950 1 -010100001101 74,915 1 -010100001101 1.4870 1 -010100001101 420.53 1 -010100001101 88,632 1 -010100001101 168,456 1 -010100001101 691,803 1 -010100001101 355.86 1 -010100001101 570,002 1 -010100001101 74.74 1 -010100001101 1,144,178 1 -010100001101 1.4648 1 -010100001101 101,352 1 -010100001101 97,317 1 -010100001101 670,977 1 -010100001101 1,840,811 1 -010100001101 1,510,361 1 -010100001101 726,255 1 -010100001101 197,942,072 1 -010100001101 hitchhike 1 -010100001101 16,635 1 -010100001101 31,373 1 -010100001101 5250 1 -010100001101 5.9413 1 -010100001101 149,777 1 -010100001101 70,198 1 -010100001101 1.4995 1 -010100001101 4,044 1 -010100001101 2,873,300 1 -010100001101 458,143,918 1 -010100001101 63,300 1 -010100001101 13,862 1 -010100001101 68,275 1 -010100001101 2,371 1 -010100001101 sucrose-intoxicated 1 -010100001101 115,536 1 -010100001101 outruns 1 -010100001101 413.54 1 -010100001101 87,542 1 -010100001101 22,576,570 1 -010100001101 whistle-blow 1 -010100001101 694,208 1 -010100001101 1.4838 1 -010100001101 more-colorful 1 -010100001101 13,392,500 1 -010100001101 61,451 1 -010100001101 308,232 1 -010100001101 1.5220 1 -010100001101 1.4983 1 -010100001101 325,540 1 -010100001101 de-ice 1 -010100001101 3,979,619 1 -010100001101 296,574 1 -010100001101 585,830 1 -010100001101 882,404 1 -010100001101 8,124 1 -010100001101 5.6545 1 -010100001101 19,939,200 1 -010100001101 190,552,351 1 -010100001101 41,153 1 -010100001101 83,174 1 -010100001101 124,327 1 -010100001101 27,126 1 -010100001101 39,182 1 -010100001101 91,286 1 -010100001101 11,432,000 1 -010100001101 113,309 1 -010100001101 21,851 1 -010100001101 overpreach 1 -010100001101 MLX. 1 -010100001101 CJI. 1 -010100001101 21,138 1 -010100001101 24,882 1 -010100001101 16,657 1 -010100001101 32,087,854 1 -010100001101 U.S.-distilled 1 -010100001101 385.46 1 -010100001101 726,700 1 -010100001101 1.6039 1 -010100001101 1,381,438 1 -010100001101 1353.63 1 -010100001101 Arkwright-Boston 1 -010100001101 diesel-electric-powered 1 -010100001101 366.02 1 -010100001101 111,138 1 -010100001101 145,176 1 -010100001101 313,978 1 -010100001101 586,025 1 -010100001101 5,960,776 1 -010100001101 28,591 1 -010100001101 62,558 1 -010100001101 105,963 1 -010100001101 2,521,600 1 -010100001101 28,523 1 -010100001101 secede. 1 -010100001101 73.71 1 -010100001101 27,632,052 1 -010100001101 409,286,890 1 -010100001101 Garp 1 -010100001101 390.75 1 -010100001101 1.4928 1 -010100001101 984,012 1 -010100001101 7,521,798 1 -010100001101 335,327 1 -010100001101 1.5438 1 -010100001101 389.55 1 -010100001101 972,500 1 -010100001101 59,797 1 -010100001101 Write-Downs 1 -010100001101 S.T.E.W. 1 -010100001101 43,692 1 -010100001101 60,944 1 -010100001101 920,940 1 -010100001101 241,700 1 -010100001101 35,124,731 1 -010100001101 429.39 1 -010100001101 113,077 1 -010100001101 Self-Promotion 1 -010100001101 1979-model 1 -010100001101 Whet 1 -010100001101 349.62 1 -010100001101 206,245,304 1 -010100001101 351.30 1 -010100001101 348.76 1 -010100001101 348.03 1 -010100001101 347.32 1 -010100001101 6.4775 1 -010100001101 516,928 1 -010100001101 352.29 1 -010100001101 Iran-inspired 1 -010100001101 Agitate 1 -010100001101 3,630,000 1 -010100001101 27,641,267 1 -010100001101 8,444,449 1 -010100001101 97,849 1 -010100001101 41,793 1 -010100001101 78,983 1 -010100001101 2,645,923 1 -010100001101 high-absorbency 1 -010100001101 LIPA. 1 -010100001101 BAR/LNS 1 -010100001101 637,768 1 -010100001101 1.4232 1 -010100001101 509.5 1 -010100001101 786,668 1 -010100001101 re-excite 1 -010100001101 78.83 1 -010100001101 204,270 1 -010100001101 football-helmet-shaped 1 -010100001101 192,001 1 -010100001101 308,277 1 -010100001101 104,920 1 -010100001101 dangerous-bone-marrow 1 -010100001101 98,938 1 -010100001101 65,626 1 -010100001101 33,842 1 -010100001101 621.5 1 -010100001101 190,417,798 1 -010100001101 140,275,780 1 -010100001101 50,142,018 1 -010100001101 77,746 1 -010100001101 62,563 1 -010100001101 Oklahoma-based 1 -010100001101 319,500 1 -010100001101 saccharine/cutsey 1 -010100001101 54,217 1 -010100001101 1,350,358 1 -010100001101 284,085 1 -010100001101 1,003,142 1 -010100001101 62,064 1 -010100001101 211,966 1 -010100001101 hedging-type 1 -010100001101 306,758 1 -010100001101 104,243 1 -010100001101 10,684 1 -010100001101 40,390 1 -010100001101 90,590 1 -010100001101 Alberic 1 -010100001101 378,653 1 -010100001101 163,473 1 -010100001101 178,448,097 1 -010100001101 543,459 1 -010100001101 52,076,794 1 -010100001101 Anglicanism 1 -010100001101 77,966 1 -010100001101 77,501 1 -010100001101 198,172 1 -010100001101 161,911 1 -010100001101 332,057 1 -010100001101 119,356 1 -010100001101 287,537 1 -010100001101 29.64 1 -010100001101 954,161 1 -010100001101 5,352 1 -010100001101 12,952 1 -010100001101 313,204 1 -010100001101 576.5 1 -010100001101 487,199 1 -010100001101 460,173,531 1 -010100001101 2,807,681 1 -010100001101 55,984 1 -010100001101 1.3830 1 -010100001101 547,347,585 1 -010100001101 50,246 1 -010100001101 495,904 1 -010100001101 1.3695 1 -010100001101 0.8145 1 -010100001101 Balzac. 1 -010100001101 2,213 1 -010100001101 95,426 1 -010100001101 242.89 1 -010100001101 3,084,750 1 -010100001101 247,550 1 -010100001101 fin-tailed 1 -010100001101 78.73 1 -010100001101 54,186 1 -010100001101 11,707 1 -010100001101 55,068 1 -010100001101 4,838 1 -010100001101 24,691 1 -010100001101 890,168 1 -010100001101 14,718,106 1 -010100001101 45.98 1 -010100001101 896,468 1 -010100001101 3,865 1 -010100001101 208,266 1 -010100001101 borrow-and-pay 1 -010100001101 near-front-runner 1 -010100001101 OH58D 1 -010100001101 56,676,853 1 -010100001101 193,099,772 1 -010100001101 convey. 1 -010100001101 freeze-dry 1 -010100001101 587,534 1 -010100001101 516.50 1 -010100001101 388.46 1 -010100001101 hard-boiling 1 -010100001101 272,167 1 -010100001101 80.09 1 -010100001101 1,365,000 1 -010100001101 12,027 1 -010100001101 20,038 1 -010100001101 22,536 1 -010100001101 95,482 1 -010100001101 terminal-related 1 -010100001101 144,954 1 -010100001101 22,640 1 -010100001101 42,979 1 -010100001101 71,284 1 -010100001101 740,500 1 -010100001101 domestic-theme 1 -010100001101 CGS. 1 -010100001101 Latino-owned 1 -010100001101 103,273 1 -010100001101 56,574 1 -010100001101 non-U.S.flag 1 -010100001101 RealData 1 -010100001101 NTC. 1 -010100001101 297.72 1 -010100001101 80.51 1 -010100001101 536,050 1 -010100001101 537,076 1 -010100001101 denude 1 -010100001101 105,632 1 -010100001101 1.3605 1 -010100001101 24,683 1 -010100001101 3,563 1 -010100001101 14,251 1 -010100001101 5,926 1 -010100001101 115,106 1 -010100001101 339,997 1 -010100001101 209,961,787 1 -010100001101 139,029,369 1 -010100001101 76,198 1 -010100001101 63,288,585 1 -010100001101 152,520,428 1 -010100001101 WesPar 1 -010100001101 707,593 1 -010100001101 intra-Community 1 -010100001101 quasisports 1 -010100001101 5,128,206 1 -010100001101 5,208,000 1 -010100001101 367,413 1 -010100001101 224,889 1 -010100001101 18,950 1 -010100001101 overbill 1 -010100001101 32,021 1 -010100001101 misroute 1 -010100001101 20,4l6,216 1 -010100001101 reinter 1 -010100001101 228,870 1 -010100001101 7,070,000 1 -010100001101 jackknife 1 -010100001101 WSY 1 -010100001101 2,442,405 1 -010100001101 OPEC-decreed 1 -010100001101 7,735 1 -010100001101 1,173,675 1 -010100001101 1,500,398 1 -010100001101 1,398,969 1 -010100001101 807,995 1 -010100001101 34,403,291 1 -010100001101 156,806 1 -010100001101 151,092,000 1 -010100001101 safekeep 1 -010100001101 52,902 1 -010100001101 2,670,876 1 -010100001101 92,454 1 -010100001101 14,489,200 1 -010100001101 108,132 1 -010100001101 43,859 1 -010100001101 persist. 1 -010100001101 203,977 1 -010100001101 16,171 1 -010100001101 342,637 1 -010100001101 80,134 1 -010100001101 124,674 1 -010100001101 deworm 1 -010100001101 gerry-rigged 1 -010100001101 111,250 1 -010100001101 2.9762 1 -010100001101 33,943 1 -010100001101 19,156 1 -010100001101 289,640 1 -010100001101 puffers 1 -010100001101 72,941 1 -010100001101 1,180,335 1 -010100001101 4,308,144 1 -010100001101 public/society 1 -010100001101 cityfolk 1 -010100001101 129,090 1 -010100001101 42,223 1 -010100001101 52,641 1 -010100001101 forstall 1 -010100001101 SKr413 1 -010100001101 1.1753 1 -010100001101 224,100 1 -010100001101 29,284,965 1 -010100001101 380,369,863 1 -010100001101 900,360 1 -010100001101 666,800 1 -010100001101 adulterate 1 -010100001101 371,819 1 -010100001101 691,700 1 -010100001101 self-induce 1 -010100001101 206,354 1 -010100001101 1,022,725 1 -010100001101 79,636 1 -010100001101 1,174,841 1 -010100001101 83,329 1 -010100001101 150,396 1 -010100001101 1,770,937 1 -010100001101 128,104 1 -010100001101 30,880,000 1 -010100001101 499,136 1 -010100001101 11,772.69 1 -010100001101 1.3450 1 -010100001101 18,680,000 1 -010100001101 Goudchaux/Maison 1 -010100001101 99,430 1 -010100001101 29,225 1 -010100001101 38,948 1 -010100001101 179,297 1 -010100001101 11,975 1 -010100001101 13,985 1 -010100001101 3,193 1 -010100001101 59,368 1 -010100001101 out-guess 2 -010100001101 3,590 2 -010100001101 Vaseretic 2 -010100001101 bright-colored 2 -010100001101 exasperate 2 -010100001101 889,301 2 -010100001101 30,800 2 -010100001101 deregister 2 -010100001101 Civilize 2 -010100001101 3,475 2 -010100001101 strategize 2 -010100001101 pre-announce 2 -010100001101 consumers. 2 -010100001101 Evict 2 -010100001101 161,800 2 -010100001101 denuclearize 2 -010100001101 Bountiful 2 -010100001101 8,786,497 2 -010100001101 1,898 2 -010100001101 242.20 2 -010100001101 embezzel 2 -010100001101 co-found 2 -010100001101 1,383 2 -010100001101 winter-sown 2 -010100001101 1,431 2 -010100001101 innoculate 2 -010100001101 Diagnose 2 -010100001101 30,197,347 2 -010100001101 336,806 2 -010100001101 2,160,292 2 -010100001101 supercharge 2 -010100001101 Interhome 2 -010100001101 1,207 2 -010100001101 backdate 2 -010100001101 idealize 2 -010100001101 tailor-make 2 -010100001101 sicken 2 -010100001101 nark 2 -010100001101 14-pound 2 -010100001101 Handle 2 -010100001101 4680 2 -010100001101 Unite 2 -010100001101 debar 3 -010100001101 emasculate 3 -010100001101 co-finance 3 -010100001101 repropose 3 -010100001101 asbestos-laden 3 -010100001101 A-plus- 3 -010100001101 3,025 3 -010100001101 reconquer 3 -010100001101 658.5 3 -010100001101 decapitate 3 -010100001101 achieve. 3 -010100001101 decontaminate 3 -010100001101 328,098 3 -010100001101 co-market 3 -010100001101 vaccinate 3 -010100001101 liquefy 4 -010100001101 guzzle 4 -010100001101 Swallow 4 -010100001101 4,340 4 -010100001101 Acquire 4 -010100001101 1,085 4 -010100001101 3,010 5 -010100001101 4,260 5 -010100001101 1,020,000 5 -010100001101 poach 6 -010100001101 remarry 6 -010100001101 micro-manage 7 -010100001101 Replace 8 -010100001101 repossess 8 -010100001101 Prevent 9 -010100001101 irrigate 10 -010100001101 rehearse 10 -010100001101 reinsure 10 -010100001101 reformulate 11 -010100001101 retake 11 -010100001101 securitize 15 -010100001101 accumulate 177 -010100001101 buy 17951 -010100001101 plead 407 -0101000011100 3,715 1 -0101000011100 near-historic 1 -0101000011100 quicky 1 -0101000011100 vaunting 1 -0101000011100 coagulate 1 -0101000011100 laser-scan 1 -0101000011100 higher-skill 1 -0101000011100 float-building 1 -0101000011100 Sumitomo-group 1 -0101000011100 self-inject 1 -0101000011100 desalt 1 -0101000011100 high-default 1 -0101000011100 pre-Sterling 1 -0101000011100 ECU-based 1 -0101000011100 ungrudging 1 -0101000011100 muff 1 -0101000011100 Poloniuslike 1 -0101000011100 misplace 1 -0101000011100 mesmerize 2 -0101000011100 expunge 2 -0101000011100 hand-make 2 -0101000011100 co-fund 2 -0101000011100 dicate 2 -0101000011100 fulfil 2 -0101000011100 publicity-conscious 2 -0101000011100 pre-screen 2 -0101000011100 outdistance 3 -0101000011100 cross-subsidize 4 -0101000011100 connote 5 -0101000011100 pre-fund 5 -0101000011100 distill 7 -0101000011100 feign 7 -0101000011100 proffer 7 -0101000011100 kindle 7 -0101000011100 exude 10 -0101000011100 reinstitute 12 -0101000011100 brook 12 -0101000011100 forego 15 -0101000011100 reallocate 24 -0101000011100 embody 26 -0101000011100 engender 28 -0101000011100 herald 39 -0101000011100 emit 40 -0101000011100 amass 54 -0101000011100 arouse 59 -0101000011100 inflict 61 -0101000011100 precipitate 65 -0101000011100 spawn 67 -0101000011100 ignite 76 -0101000011100 erect 77 -0101000011100 wield 86 -0101000011100 garner 89 -0101000011100 inspire 141 -0101000011100 exert 160 -0101000011100 transmit 180 -0101000011100 extract 185 -0101000011100 undergo 198 -0101000011100 provoke 205 -0101000011100 divert 226 -0101000011100 inject 236 -0101000011100 incur 239 -0101000011100 withhold 242 -0101000011100 authorize 315 -0101000011100 appoint 327 -0101000011100 reap 343 -0101000011100 foster 349 -0101000011100 solicit 362 -0101000011100 spark 422 -0101000011100 employ 545 -0101000011100 pose 620 -0101000011100 hire 1010 -0101000011100 impose 1224 -0101000011100 generate 1395 -0101000011100 attract 1570 -0101000011100 create 3479 -0101000011100 produce 4251 -0101000011100 provide 8696 -0101000011100 receive 5283 -0101000011101 finished-product 1 -0101000011101 94,645,000 1 -0101000011101 17,049,000 1 -0101000011101 remortgage 1 -0101000011101 relends 1 -0101000011101 Thursdayfor 1 -0101000011101 underfund 1 -0101000011101 re-award 1 -0101000011101 cross-pollinate 1 -0101000011101 6,673,026 1 -0101000011101 17,992,000 1 -0101000011101 51,540,000 1 -0101000011101 electrify 1 -0101000011101 productivity-oriented 1 -0101000011101 1,549 1 -0101000011101 whosever 1 -0101000011101 48,599,000 1 -0101000011101 316,372,000 1 -0101000011101 re-insure 1 -0101000011101 3,039,697 1 -0101000011101 267,773,000 1 -0101000011101 41,790,000 1 -0101000011101 foreignersso 1 -0101000011101 509,635 1 -0101000011101 20-times 1 -0101000011101 overexpand 2 -0101000011101 underpay 2 -0101000011101 overstay 2 -0101000011101 2,036 2 -0101000011101 re-invest 2 -0101000011101 ransack 2 -0101000011101 discolor 2 -0101000011101 pre-position 2 -0101000011101 regularize 3 -0101000011101 snacked 3 -0101000011101 out-earn 3 -0101000011101 marshall 4 -0101000011101 outsource 4 -0101000011101 mangle 6 -0101000011101 overstep 6 -0101000011101 relend 6 -0101000011101 deduce 10 -0101000011101 relive 10 -0101000011101 allot 10 -0101000011101 embezzle 11 -0101000011101 retrace 13 -0101000011101 generalize 15 -0101000011101 dangle 15 -0101000011101 abdicate 15 -0101000011101 earmark 17 -0101000011101 extrapolate 19 -0101000011101 disburse 20 -0101000011101 impound 20 -0101000011101 cull 21 -0101000011101 remit 25 -0101000011101 squander 27 -0101000011101 subtract 28 -0101000011101 expend 28 -0101000011101 repatriate 35 -0101000011101 launder 35 -0101000011101 disallow 37 -0101000011101 extort 48 -0101000011101 disgorge 63 -0101000011101 wring 65 -0101000011101 derive 73 -0101000011101 accrue 79 -0101000011101 forfeit 88 -0101000011101 funnel 101 -0101000011101 forgive 112 -0101000011101 reschedule 114 -0101000011101 conserve 125 -0101000011101 surpass 149 -0101000011101 donate 153 -0101000011101 allocate 154 -0101000011101 consume 164 -0101000011101 relinquish 186 -0101000011101 devote 246 -0101000011101 recoup 271 -0101000011101 deduct 328 -0101000011101 fetch 368 -0101000011101 defer 399 -0101000011101 collect 793 -0101000011101 suffer 837 -0101000011101 borrow 897 -0101000011101 withdraw 994 -0101000011101 recover 1168 -0101000011101 exceed 1649 -0101000011101 earn 1652 -0101000011101 retain 1887 -0101000011101 save 2001 -0101000011101 lose 2570 -0101000011101 raise 7161 -0101000011101 spend 3314 -0101000011110 chowing 1 -0101000011110 plough 2 -0101000011110 imbibe 3 -0101000011110 jaywalk 3 -0101000011110 overbuild 3 -0101000011110 declaim 3 -0101000011110 controvert 3 -0101000011110 choreograph 4 -0101000011110 quaff 4 -0101000011110 victimize 4 -0101000011110 fillet 4 -0101000011110 eject 5 -0101000011110 mass-produce 6 -0101000011110 unfurl 6 -0101000011110 remand 6 -0101000011110 scavenge 6 -0101000011110 procrastinate 7 -0101000011110 sprinkle 9 -0101000011110 expound 9 -0101000011110 replant 9 -0101000011110 scribble 9 -0101000011110 drape 9 -0101000011110 shoehorn 10 -0101000011110 honk 10 -0101000011110 trample 11 -0101000011110 revere 12 -0101000011110 crisscross 12 -0101000011110 jot 12 -0101000011110 munch 13 -0101000011110 mow 13 -0101000011110 ripen 13 -0101000011110 bathe 14 -0101000011110 splice 15 -0101000011110 corral 16 -0101000011110 inhale 17 -0101000011110 reprint 17 -0101000011110 gouge 17 -0101000011110 tuck 19 -0101000011110 underperform 19 -0101000011110 unionize 20 -0101000011110 improvise 22 -0101000011110 bestow 25 -0101000011110 zap 25 -0101000011110 awaken 26 -0101000011110 regroup 31 -0101000011110 weave 33 -0101000011110 rotate 34 -0101000011110 inhabit 34 -0101000011110 bleed 36 -0101000011110 starve 36 -0101000011110 stagger 36 -0101000011110 compose 38 -0101000011110 brighten 39 -0101000011110 navigate 39 -0101000011110 chop 39 -0101000011110 dissipate 41 -0101000011110 nurture 44 -0101000011110 rattle 45 -0101000011110 litigate 46 -0101000011110 roam 51 -0101000011110 oblige 53 -0101000011110 retrench 54 -0101000011110 preach 55 -0101000011110 edit 58 -0101000011110 tread 59 -0101000011110 legislate 65 -0101000011110 clamp 66 -0101000011110 plow 71 -0101000011110 enroll 71 -0101000011110 dispense 72 -0101000011110 circulate 74 -0101000011110 multiply 76 -0101000011110 reproduce 79 -0101000011110 shave 80 -0101000011110 skip 96 -0101000011110 unite 114 -0101000011110 breathe 117 -0101000011110 heed 122 -0101000011110 marry 131 -0101000011110 flee 138 -0101000011110 endure 158 -0101000011110 muster 169 -0101000011110 occupy 173 -0101000011110 swallow 189 -0101000011110 sing 213 -0101000011110 worsen 216 -0101000011110 sink 240 -0101000011110 weigh 262 -0101000011110 govern 269 -0101000011110 grab 293 -0101000011110 burn 297 -0101000011110 advertise 323 -0101000011110 shoot 328 -0101000011110 gather 337 -0101000011110 mount 362 -0101000011110 register 378 -0101000011110 hide 386 -0101000011110 tap 437 -0101000011110 sue 626 -0101000011110 attend 680 -0101000011110 wear 695 -0101000011110 eat 727 -0101000011110 perform 934 -0101000011110 fly 976 -0101000011110 survive 983 -0101000011110 draw 1288 -0101000011110 write 1710 -0101000011110 pass 1790 -0101000011110 file 1954 -0101000011110 serve 2367 -0101000011110 follow 2511 -0101000011110 grow 2732 -0101000011110 operate 2811 -0101000011110 reach 3559 -0101000011110 hold 6236 -0101000011110 leave 4168 -0101000011111 40,958 1 -0101000011111 80,628 1 -0101000011111 54,762 1 -0101000011111 13,167 1 -0101000011111 70,593 1 -0101000011111 126,064 1 -0101000011111 81,317 1 -0101000011111 45,005 1 -0101000011111 349,328 1 -0101000011111 86,264 1 -0101000011111 64,299 1 -0101000011111 328,455 1 -0101000011111 130,493 1 -0101000011111 191,340 1 -0101000011111 108,619 1 -0101000011111 88,730 1 -0101000011111 31,651 1 -0101000011111 446,686 1 -0101000011111 21,452 1 -0101000011111 544,246 1 -0101000011111 531,253 1 -0101000011111 557,086 1 -0101000011111 95,689 1 -0101000011111 48,265 1 -0101000011111 329,295 1 -0101000011111 78,555 1 -0101000011111 vye 1 -0101000011111 142,248 1 -0101000011111 296,965 1 -0101000011111 207,823 1 -0101000011111 499.56 1 -0101000011111 1,834,188 1 -0101000011111 2,034,000 1 -0101000011111 484,875 1 -0101000011111 332,781 1 -0101000011111 730,545 1 -0101000011111 558,887 1 -0101000011111 1,093,169 1 -0101000011111 160,509 1 -0101000011111 2,531,000 1 -0101000011111 non-craft 1 -0101000011111 116,162 1 -0101000011111 196,988 1 -0101000011111 163,210 1 -0101000011111 150,704 1 -0101000011111 82,109 1 -0101000011111 191,525 1 -0101000011111 263,629 1 -0101000011111 242,171 1 -0101000011111 121,121 1 -0101000011111 842,322 1 -0101000011111 382.38 1 -0101000011111 135,540 1 -0101000011111 3,689,000 1 -0101000011111 1,782,000 1 -0101000011111 149,134 1 -0101000011111 24,714 1 -0101000011111 19,667 1 -0101000011111 2412.7 1 -0101000011111 381,124 1 -0101000011111 WQBA 1 -0101000011111 442,221 1 -0101000011111 1,979 1 -0101000011111 71,674 1 -0101000011111 144,566 1 -0101000011111 346,536 1 -0101000011111 infrastucture 1 -0101000011111 423,681 1 -0101000011111 320,030 1 -0101000011111 577,533 1 -0101000011111 633,869 1 -0101000011111 344,068 1 -0101000011111 scimitars 1 -0101000011111 88,722 1 -0101000011111 144,816 1 -0101000011111 1,031,382 1 -0101000011111 expatiate 1 -0101000011111 2,766 1 -0101000011111 605,309 1 -0101000011111 380,00 1 -0101000011111 1,033,305 1 -0101000011111 0.5600 1 -0101000011111 474,336 1 -0101000011111 936,916 1 -0101000011111 688,708 1 -0101000011111 777,682 1 -0101000011111 27,775 1 -0101000011111 10,528 1 -0101000011111 225,995 1 -0101000011111 157,386 1 -0101000011111 71,146 1 -0101000011111 331,471 1 -0101000011111 259,413 1 -0101000011111 120,913 1 -0101000011111 52,975 1 -0101000011111 plea-bargains 1 -0101000011111 119,762 1 -0101000011111 444,975 1 -0101000011111 324,915 1 -0101000011111 747,608 1 -0101000011111 42,948 1 -0101000011111 123,380 1 -0101000011111 109,254 1 -0101000011111 184,425 1 -0101000011111 134,598 1 -0101000011111 304,266 1 -0101000011111 123,580 1 -0101000011111 65,331 1 -0101000011111 178,261 1 -0101000011111 medium-income 1 -0101000011111 315,100 1 -0101000011111 31.406 1 -0101000011111 56,529 1 -0101000011111 26,362 1 -0101000011111 32,645 1 -0101000011111 174,133 1 -0101000011111 157,129 1 -0101000011111 168,695 1 -0101000011111 138,208 1 -0101000011111 184,812 1 -0101000011111 295,422 1 -0101000011111 pro-rate 1 -0101000011111 1,059,000 1 -0101000011111 230,238 1 -0101000011111 154,578 1 -0101000011111 11,168 1 -0101000011111 704,390 1 -0101000011111 800,300 1 -0101000011111 1,088,095 1 -0101000011111 731,795 1 -0101000011111 483,254 1 -0101000011111 1,899,000 1 -0101000011111 2,612,000 1 -0101000011111 1,786,000 1 -0101000011111 111,086 1 -0101000011111 1,492 1 -0101000011111 105,429 1 -0101000011111 10,401 1 -0101000011111 2,603 1 -0101000011111 322,200 1 -0101000011111 65,853 1 -0101000011111 86,049 1 -0101000011111 84,906 1 -0101000011111 137,844 1 -0101000011111 148,734 1 -0101000011111 53,907 1 -0101000011111 40,767 1 -0101000011111 89,288 1 -0101000011111 228,398 1 -0101000011111 88,913 1 -0101000011111 126,667 1 -0101000011111 32,608 1 -0101000011111 20,893 1 -0101000011111 fivemember 1 -0101000011111 958,623 1 -0101000011111 125,406 1 -0101000011111 re-tool 1 -0101000011111 5,178 1 -0101000011111 486,645 1 -0101000011111 36,820 1 -0101000011111 10,675 1 -0101000011111 45,817 1 -0101000011111 393,091 1 -0101000011111 244,940 1 -0101000011111 260,387 1 -0101000011111 Baal 1 -0101000011111 1,248,783 1 -0101000011111 918,892 1 -0101000011111 3,060,742 1 -0101000011111 472,293 1 -0101000011111 aviation-engine 1 -0101000011111 300,513 1 -0101000011111 462,468 1 -0101000011111 140,128 1 -0101000011111 137,483 1 -0101000011111 2,214,000 1 -0101000011111 3,012,000 1 -0101000011111 6,268,000 1 -0101000011111 164,6893 1 -0101000011111 418,600 1 -0101000011111 890,339 1 -0101000011111 155,589 1 -0101000011111 1,042,956 1 -0101000011111 6,361 1 -0101000011111 12,249,174 1 -0101000011111 161,643 1 -0101000011111 22,011 1 -0101000011111 352,550 1 -0101000011111 103,013 1 -0101000011111 32,234 1 -0101000011111 2,215,173 1 -0101000011111 1,807,377 1 -0101000011111 1,138,069 1 -0101000011111 1,048,528 1 -0101000011111 592,063 1 -0101000011111 86,240 1 -0101000011111 393,740 1 -0101000011111 ponied-up 1 -0101000011111 827,199 1 -0101000011111 528,605 1 -0101000011111 1,086,988 1 -0101000011111 gold-card-carrying 1 -0101000011111 95,687 1 -0101000011111 49,879 1 -0101000011111 399,532 1 -0101000011111 39,533 1 -0101000011111 91,491 1 -0101000011111 141,297 1 -0101000011111 508,319 1 -0101000011111 6,080 1 -0101000011111 32,190 1 -0101000011111 49,806 1 -0101000011111 340,806 1 -0101000011111 18,704 1 -0101000011111 88,188 1 -0101000011111 73,268 1 -0101000011111 8,161 1 -0101000011111 183,196 1 -0101000011111 118,669 1 -0101000011111 294,333 1 -0101000011111 76,934 1 -0101000011111 172,865 1 -0101000011111 98,094 1 -0101000011111 141,649 1 -0101000011111 12,349,000 1 -0101000011111 874,718 1 -0101000011111 955,171 1 -0101000011111 1,929,000 1 -0101000011111 1,134,238 1 -0101000011111 319,427 1 -0101000011111 150,631 1 -0101000011111 54,931 1 -0101000011111 14,008 1 -0101000011111 25,137 1 -0101000011111 83,826 1 -0101000011111 31,132 1 -0101000011111 33,156 1 -0101000011111 118,019 1 -0101000011111 248,367 1 -0101000011111 57,911 1 -0101000011111 127,676 1 -0101000011111 10,887 1 -0101000011111 11,976 1 -0101000011111 780,489 1 -0101000011111 304,471 1 -0101000011111 112,985 1 -0101000011111 487,196 1 -0101000011111 8,848 1 -0101000011111 1,218.5 1 -0101000011111 359,391 1 -0101000011111 502,234 1 -0101000011111 140,830 1 -0101000011111 29,518 1 -0101000011111 86,676 1 -0101000011111 210,441 1 -0101000011111 17,339 1 -0101000011111 McCarthyist 1 -0101000011111 391.03 1 -0101000011111 39,495 1 -0101000011111 440,737 1 -0101000011111 2,226,313 1 -0101000011111 168,904 1 -0101000011111 547,779 1 -0101000011111 40,379 1 -0101000011111 49,971 1 -0101000011111 3,638,279 1 -0101000011111 289,638 1 -0101000011111 906,739 1 -0101000011111 67,353 1 -0101000011111 fly-fish 1 -0101000011111 446,614 1 -0101000011111 21,015 1 -0101000011111 18,749 1 -0101000011111 58,474 1 -0101000011111 206,721 1 -0101000011111 247,470 1 -0101000011111 507,860 1 -0101000011111 366.03 2 -0101000011111 pontificate 2 -0101000011111 27,189 2 -0101000011111 countersue 3 -0101000011111 ce 3 -0101000011111 finagle 3 -0101000011111 base-pay 4 -0101000011111 impute 5 -0101000011111 high- 6 -0101000011111 reapply 9 -0101000011111 atone 9 -0101000011111 itemize 28 -0101000011111 retool 31 -0101000011111 compensate 505 -0101000011111 qualify 676 -0101000011111 pay 17356 -0101000011111 prepare 775 -01010001000 HOPEFUL 1 -01010001000 footers 1 -01010001000 unaccidental 1 -01010001000 agreeed 1 -01010001000 municpalities 1 -01010001000 CONTEND 1 -01010001000 hotfooting 1 -01010001000 disobeys 1 -01010001000 counterargue 1 -01010001000 scald 1 -01010001000 decked-out 1 -01010001000 cobs 1 -01010001000 hallucinates 1 -01010001000 posit 2 -01010001000 hypothesize 4 -01010001000 INDICATED 5 -01010001000 opine 7 -01010001000 chide 7 -01010001000 aver 8 -01010001000 theorize 22 -01010001000 laud 22 -01010001000 presume 34 -01010001000 stipulate 37 -01010001000 reckon 52 -01010001000 resent 136 -01010001000 allege 296 -01010001000 assert 414 -01010001000 warn 613 -01010001000 acknowledge 614 -01010001000 concede 626 -01010001000 admit 763 -01010001000 insist 1004 -01010001000 contend 1544 -01010001000 argue 2071 -01010001000 believe 8477 -01010001000 suggest 2314 -01010001001 Delfs-Haven 1 -01010001001 groats 1 -01010001001 overeat 1 -01010001001 Comptables 1 -01010001001 purvey 1 -01010001001 Berghuys 1 -01010001001 re-loading. 1 -01010001001 Seguradora 1 -01010001001 BLISS 1 -01010001001 spiderweb 1 -01010001001 1542 1 -01010001001 nurserymen 1 -01010001001 ADMITTED 1 -01010001001 snooped 1 -01010001001 agreement-in-principle 1 -01010001001 SERIOUS 1 -01010001001 underordered 1 -01010001001 SUFFER 1 -01010001001 Visnik 1 -01010001001 Lawhorn 1 -01010001001 AWAIT 1 -01010001001 overspeculated 1 -01010001001 Hou 1 -01010001001 osf 1 -01010001001 naturalize 1 -01010001001 Amochaev 1 -01010001001 misspecify 1 -01010001001 dragoon 1 -01010001001 Yabunaka 1 -01010001001 Seipen 1 -01010001001 firmwide 1 -01010001001 might. 1 -01010001001 111C 1 -01010001001 P2 1 -01010001001 Danan 1 -01010001001 back-checked 1 -01010001001 Bodil 1 -01010001001 offguard 1 -01010001001 intersected 1 -01010001001 includee 1 -01010001001 misbill 1 -01010001001 righthander 1 -01010001001 RECRUIT 1 -01010001001 poultices 1 -01010001001 issurers 1 -01010001001 Vater 1 -01010001001 clumped 1 -01010001001 yukked 1 -01010001001 Schornsteinfeger 1 -01010001001 misconverted 1 -01010001001 duelled 1 -01010001001 Mespel 1 -01010001001 Musikfreunde 1 -01010001001 T-cuirasses 1 -01010001001 influence-lawmakers 1 -01010001001 JOIN 1 -01010001001 descibe 1 -01010001001 dosed 1 -01010001001 226.45 2 -01010001001 225.93 2 -01010001001 171.35 2 -01010001001 belive 2 -01010001001 224.61 2 -01010001001 218.16 2 -01010001001 emeriti 2 -01010001001 211.02 2 -01010001001 223.00 2 -01010001001 non-Germans 2 -01010001001 183.44 2 -01010001001 210.39 2 -01010001001 212.69 2 -01010001001 want. 2 -01010001001 Slabbert 2 -01010001001 199.39 2 -01010001001 Eb 2 -01010001001 Haik 2 -01010001001 216.23 2 -01010001001 192.83 2 -01010001001 171.29 2 -01010001001 174.37 2 -01010001001 210.04 2 -01010001001 Lengthen 2 -01010001001 Erde 2 -01010001001 170.52 2 -01010001001 Lap-Chee 2 -01010001001 Unwisely 2 -01010001001 games. 2 -01010001001 177.39 2 -01010001001 175.08 2 -01010001001 202.84 3 -01010001001 STEAM 3 -01010001001 198.47 3 -01010001001 185.87 3 -01010001001 176.33 3 -01010001001 180.24 3 -01010001001 179.53 3 -01010001001 Gomberg 3 -01010001001 176.51 3 -01010001001 174.25 3 -01010001001 180.54 3 -01010001001 say. 4 -01010001001 203.71 4 -01010001001 180.06 4 -01010001001 oversell 4 -01010001001 216.49 4 -01010001001 Heyden 4 -01010001001 Embrace 5 -01010001001 squealed 5 -01010001001 demur 5 -01010001001 do. 7 -01010001001 say 30847 -01010001001 predict 1485 -01010001010 Nesterenko 1 -01010001010 possest 1 -01010001010 backslapped 1 -01010001010 manage. 1 -01010001010 mortuum 1 -01010001010 overlent 1 -01010001010 detoxed 1 -01010001010 learn. 1 -01010001010 failed. 1 -01010001010 asks. 1 -01010001010 skinny-dipped 1 -01010001010 populi 2 -01010001010 vulgarized 2 -01010001010 did. 2 -01010001010 trespasses 2 -01010001010 baby-sat 2 -01010001010 offed 3 -01010001010 grumped 3 -01010001010 dunno 3 -01010001010 yukking 3 -01010001010 can. 3 -01010001010 encapsulates 3 -01010001010 ar-re 3 -01010001010 Improvise 4 -01010001010 rhapsodized 4 -01010001010 unscrewed 5 -01010001010 Corinthians 5 -01010001010 Pagliacci 5 -01010001010 Rusticana 5 -01010001010 conjectures 6 -01010001010 overdid 6 -01010001010 dreamt 6 -01010001010 despaired 7 -01010001010 willed 8 -01010001010 snore 9 -01010001010 bragged 30 -01010001010 Attraction 36 -01010001010 whispered 41 -01010001010 swear 52 -01010001010 inquired 59 -01010001010 confess 84 -01010001010 guessed 90 -01010001010 cared 105 -01010001010 forgot 110 -01010001010 hated 114 -01010001010 regrets 127 -01010001010 regret 233 -01010001010 loved 274 -01010001010 liked 499 -01010001010 guess 712 -01010001010 realized 879 -01010001010 wish 898 -01010001010 suspect 964 -01010001010 learned 1873 -01010001010 knew 2215 -01010001010 felt 2279 -01010001010 thought 4901 -01010001010 hope 4013 -010100010110 Teure 1 -010100010110 cover-short-range 1 -010100010110 relabels 1 -010100010110 stylize 1 -010100010110 node-negative 1 -010100010110 overengineered 1 -010100010110 Fiamminghi 1 -010100010110 prize-winners 1 -010100010110 Pont-a-Mousson 1 -010100010110 avez 1 -010100010110 masturbate 1 -010100010110 mooned 1 -010100010110 teure 1 -010100010110 testify/Donald 1 -010100010110 Volgas 1 -010100010110 gots 1 -010100010110 anti-BST 1 -010100010110 Graham-and-Dodder 1 -010100010110 remolded 1 -010100010110 venerate 1 -010100010110 monkeymaking 1 -010100010110 air-evac 1 -010100010110 hoover 1 -010100010110 domesticate 1 -010100010110 stick-and-ball 1 -010100010110 saound 1 -010100010110 re-lay 1 -010100010110 outscore 2 -010100010110 deprecate 3 -010100010110 Shrunk 4 -010100010110 horrify 4 -010100010110 daresay 4 -010100010110 doin' 4 -010100010110 overdo 8 -010100010110 Hate 13 -010100010110 commend 26 -010100010110 suppose 230 -010100010110 feel 3861 -010100010110 think 13443 -010100010111 shanked 1 -010100010111 Vach 1 -010100010111 unclench 1 -010100010111 Dazzle 1 -010100010111 JIMBO 1 -010100010111 e-a-r-l-y 1 -010100010111 terrestris 1 -010100010111 Exercens 1 -010100010111 DEPRECIATE 1 -010100010111 imagaine 1 -010100010111 andrewsi 1 -010100010111 Bugger 1 -010100010111 cloudiness 1 -010100010111 name-it 1 -010100010111 elastica 1 -010100010111 Tittle 1 -010100010111 rasa 1 -010100010111 vivisectionists 1 -010100010111 Eichmanns 1 -010100010111 overpromise 1 -010100010111 genealogically 1 -010100010111 contract/strike 1 -010100010111 Cellini 1 -010100010111 understimate 1 -010100010111 sons-a-bleeps 1 -010100010111 non-fans 1 -010100010111 shido 1 -010100010111 trolled 1 -010100010111 Madecasses 1 -010100010111 cheerers 1 -010100010111 ghilianii 1 -010100010111 Mexiko 1 -010100010111 mistyeyed 1 -010100010111 masticate 1 -010100010111 virtueless 1 -010100010111 curled/But 1 -010100010111 capsulizes 1 -010100010111 Senbonzakura 1 -010100010111 dies. 1 -010100010111 gano 1 -010100010111 Florez 1 -010100010111 thirstier 1 -010100010111 three-on-one 1 -010100010111 bought-but 1 -010100010111 loped 1 -010100010111 byting 1 -010100010111 Redress 1 -010100010111 Zajick 1 -010100010111 birdhead 1 -010100010111 shimasu 1 -010100010111 generationally 1 -010100010111 threat-reactive 1 -010100010111 syem 2 -010100010111 Ordinis 2 -010100010111 need. 2 -010100010111 recollect 2 -010100010111 sugarcoat 3 -010100010111 know. 3 -010100010111 Patriarch 3 -010100010111 have. 4 -010100010111 shirk 7 -010100010111 faze 18 -010100010111 wondered 224 -010100010111 forget 571 -010100010111 specify 770 -010100010111 remember 957 -010100010111 wonder 1212 -010100010111 realize 1361 -010100010111 understand 2065 -010100010111 know 9243 -010100011000 bantered 1 -010100011000 re-allocate 1 -010100011000 tut-tut 1 -010100011000 figure-eights 1 -010100011000 primp 1 -010100011000 clomp 1 -010100011000 skulk 1 -010100011000 burble 1 -010100011000 fulminate 2 -010100011000 equivocate 2 -010100011000 huffy 2 -010100011000 free-associate 2 -010100011000 lolled 2 -010100011000 dawdle 2 -010100011000 enthuse 3 -010100011000 rhapsodize 4 -010100011000 fidget 4 -010100011000 Insist 4 -010100011000 prattling 4 -010100011000 moan 5 -010100011000 ruminate 5 -010100011000 screech 5 -010100011000 grieve 5 -010100011000 comport 5 -010100011000 chortle 5 -010100011000 dickered 5 -010100011000 bruise 6 -010100011000 seethe 7 -010100011000 fume 8 -010100011000 exclaim 8 -010100011000 reminisce 9 -010100011000 fantasize 10 -010100011000 dicker 10 -010100011000 confide 11 -010100011000 bicker 12 -010100011000 mutter 12 -010100011000 incline 15 -010100011000 congregate 19 -010100011000 jibe 21 -010100011000 squeal 24 -010100011000 quibble 33 -010100011000 grouse 34 -010100011000 brag 37 -010100011000 grumble 41 -010100011000 correspond 46 -010100011000 gripe 56 -010100011000 concur 58 -010100011000 attest 72 -010100011000 pretend 125 -010100011000 fret 138 -010100011000 boast 154 -010100011000 conform 155 -010100011000 bother 275 -010100011000 disagree 494 -010100011000 speculate 586 -010100011000 stick 768 -010100011000 complain 927 -010100011000 worry 2223 -010100011000 appear 3192 -010100011000 agree 3502 -010100011000 talk 3737 -010100011001 streetball 1 -010100011001 Backstairs 1 -010100011001 dead-ends 1 -010100011001 drooler 1 -010100011001 Heston-like 1 -010100011001 long-divisioning 1 -010100011001 bench-press 1 -010100011001 plumbs 1 -010100011001 preconizes 1 -010100011001 colorup 1 -010100011001 Mugged 1 -010100011001 Weirdos 1 -010100011001 salivates 1 -010100011001 Balk 1 -010100011001 Skit 1 -010100011001 non-adept 1 -010100011001 lookin' 1 -010100011001 eloped 1 -010100011001 affluents 1 -010100011001 unconsious 1 -010100011001 heresiarchs 1 -010100011001 Schwab-Free 1 -010100011001 loyalities 1 -010100011001 Take-Off 1 -010100011001 susan 1 -010100011001 choke-point 1 -010100011001 peskiest 1 -010100011001 Localities 1 -010100011001 hitmakers 1 -010100011001 straightaways 1 -010100011001 overbids 1 -010100011001 46-36 1 -010100011001 jingoists 1 -010100011001 reconstitutes 1 -010100011001 non-medalists 1 -010100011001 flamingly 1 -010100011001 slabmakers 1 -010100011001 vengefulness 1 -010100011001 non-swimmer 1 -010100011001 bottlenecked 1 -010100011001 sinker-baller 1 -010100011001 1,713 1 -010100011001 Gawd 1 -010100011001 SLOGANS 1 -010100011001 Humorists 1 -010100011001 leave-taking 1 -010100011001 devlopments 1 -010100011001 noodger 1 -010100011001 idea-mongers 1 -010100011001 salivated 1 -010100011001 Rooftops 1 -010100011001 melter 1 -010100011001 Unsafe 1 -010100011001 coheres 1 -010100011001 squared-off 1 -010100011001 Misfires 1 -010100011001 picketeers 1 -010100011001 assurance-but 1 -010100011001 Kermesse 1 -010100011001 townsmen 1 -010100011001 semiologists 1 -010100011001 step-downs 1 -010100011001 560th 1 -010100011001 squiggling 1 -010100011001 sentinels 1 -010100011001 superhub 1 -010100011001 body-and-assembly 1 -010100011001 boondoggler 2 -010100011001 scoffer 2 -010100011001 misbehaved 2 -010100011001 drool 2 -010100011001 caddied 2 -010100011001 Tilting 2 -010100011001 spritz 2 -010100011001 twinkled 2 -010100011001 two-pounder 2 -010100011001 tinkle 2 -010100011001 titter 2 -010100011001 particpate 3 -010100011001 loudmouth 3 -010100011001 jokester 3 -010100011001 salivate 3 -010100011001 ached 3 -010100011001 gnawed 3 -010100011001 gaped 4 -010100011001 billow 4 -010100011001 scamper 5 -010100011001 teeter 5 -010100011001 snipe 7 -010100011001 ditties 7 -010100011001 trembled 7 -010100011001 sniped 8 -010100011001 glittered 8 -010100011001 gawk 8 -010100011001 glared 8 -010100011001 chafes 8 -010100011001 sneeze 10 -010100011001 gnaws 10 -010100011001 peeks 11 -010100011001 bridle 12 -010100011001 gazed 13 -010100011001 swipes 14 -010100011001 blanch 14 -010100011001 ache 16 -010100011001 chafe 20 -010100011001 sneer 22 -010100011001 glances 28 -010100011001 cringe 28 -010100011001 stab 30 -010100011001 bristle 31 -010100011001 smelled 36 -010100011001 shudder 36 -010100011001 swipe 41 -010100011001 stare 47 -010100011001 marvel 50 -010100011001 stares 54 -010100011001 peek 58 -010100011001 scoff 63 -010100011001 balk 104 -010100011001 sounded 268 -010100011001 sounds 785 -010100011001 looked 1547 -010100011001 look 6585 -010100011001 looks 2255 -010100011010 Datsun-hunting 1 -010100011010 35,955 1 -010100011010 53,800 1 -010100011010 low-40s 1 -010100011010 stockpile-building 1 -010100011010 1361.00 1 -010100011010 included> 1 -010100011010 1565.4 1 -010100011010 24297.15 1 -010100011010 21500 1 -010100011010 24118.01 1 -010100011010 2,176,000 1 -010100011010 23964.91 1 -010100011010 1.8537 1 -010100011010 27324.02 1 -010100011010 homeport 1 -010100011010 Vneshechnombank 1 -010100011010 27532.25 1 -010100011010 1,579.9 1 -010100011010 376.49 1 -010100011010 resprout 1 -010100011010 reintensify 1 -010100011010 27894.81 1 -010100011010 969,522 1 -010100011010 fraternize 1 -010100011010 28970.03 1 -010100011010 783,170 1 -010100011010 2,618 1 -010100011010 28134.33 1 -010100011010 27976.92 1 -010100011010 particiapte 1 -010100011010 27582.29 1 -010100011010 27521.00 1 -010100011010 28234.51 1 -010100011010 pressure-test 1 -010100011010 28049.27 1 -010100011010 7ucceed 1 -010100011010 sooth 1 -010100011010 2,157,000 1 -010100011010 PERUSHAAN 1 -010100011010 Bangui 1 -010100011010 WCZY 1 -010100011010 whistlestops 1 -010100011010 emote 1 -010100011010 26,533 1 -010100011010 extirpate 1 -010100011010 counterretaliate 1 -010100011010 repond 1 -010100011010 top-notchers 1 -010100011010 bushwhack 1 -010100011010 69,149 1 -010100011010 35,036 1 -010100011010 245,827 1 -010100011010 273,441 1 -010100011010 2.9187 1 -010100011010 12,114,000 1 -010100011010 fill-light 1 -010100011010 anotherwise 1 -010100011010 9,739 1 -010100011010 198,818 1 -010100011010 14,890 1 -010100011010 computerdom 1 -010100011010 10,544 1 -010100011010 94.0 1 -010100011010 2,284 1 -010100011010 2,997 1 -010100011010 208.0 1 -010100011010 49,172 1 -010100011010 153,512 1 -010100011010 370.23-still 1 -010100011010 dial-switch 1 -010100011010 euthanize 1 -010100011010 Sevastapol 1 -010100011010 94-17 1 -010100011010 pyrite 1 -010100011010 saybut 1 -010100011010 nitpick 1 -010100011010 27628.88 1 -010100011010 281,392 1 -010100011010 34801.99 1 -010100011010 233,710 1 -010100011010 Kordofan 1 -010100011010 roosted 1 -010100011010 466.89 1 -010100011010 under-perform 1 -010100011010 664.50 1 -010100011010 49-30 1 -010100011010 hire-and-fire 1 -010100011010 nonreaders 1 -010100011010 106,667 1 -010100011010 254th 1 -010100011010 694,900 1 -010100011010 1060 1 -010100011010 1260 1 -010100011010 1250 1 -010100011010 1,149,341 1 -010100011010 3,936,000 1 -010100011010 3,939,000 1 -010100011010 21,657.67 1 -010100011010 171,730 1 -010100011010 20,675 1 -010100011010 1,880,776 1 -010100011010 373.73 1 -010100011010 1,359,020 1 -010100011010 3,788,325 1 -010100011010 1,233,158 1 -010100011010 2,555,167 1 -010100011010 1,256,471 1 -010100011010 155,398 1 -010100011010 387.66 1 -010100011010 fence-sit 1 -010100011010 wakefulness 1 -010100011010 aggress 1 -010100011010 remonstrated 1 -010100011010 23077.86 1 -010100011010 undertreat 1 -010100011010 equityholders 1 -010100011010 rusticate 1 -010100011010 555,194 1 -010100011010 zoologists 2 -010100011010 cohabit 2 -010100011010 partake 2 -010100011010 glower 2 -010100011010 6,822 2 -010100011010 2,198 2 -010100011010 23947.40 2 -010100011010 3362.39 2 -010100011010 1,182 2 -010100011010 27554.87 2 -010100011010 abscond 2 -010100011010 4,020 2 -010100011010 reaffiliate 2 -010100011010 luxuriate 2 -010100011010 procede 2 -010100011010 1240 2 -010100011010 narrow-shouldered 2 -010100011010 1,389 2 -010100011010 24483.82 2 -010100011010 hibernate 2 -010100011010 Menus 3 -010100011010 matted 3 -010100011010 partied 3 -010100011010 self-medicate 3 -010100011010 sup 4 -010100011010 235.41 4 -010100011010 exult 4 -010100011010 commiserate 4 -010100011010 exalt 4 -010100011010 collude 5 -010100011010 disembarked 5 -010100011010 macadamia 5 -010100011010 bottom-fish 5 -010100011010 dally 5 -010100011010 connive 5 -010100011010 puttering 5 -010100011010 misbehave 6 -010100011010 meditate 6 -010100011010 empathize 7 -010100011010 loiter 8 -010100011010 dovetail 8 -010100011010 cavort 9 -010100011010 decompose 9 -010100011010 overproduce 9 -010100011010 germinate 9 -010100011010 chime 9 -010100011010 hobnob 9 -010100011010 wallow 10 -010100011010 militate 10 -010100011010 flirt 11 -010100011010 simmer 11 -010100011010 persevere 13 -010100011010 resonate 14 -010100011010 meddle 16 -010100011010 gyrate 16 -010100011010 predominate 18 -010100011010 bask 19 -010100011010 culminate 19 -010100011010 socialize 20 -010100011010 revel 20 -010100011010 weep 20 -010100011010 collide 22 -010100011010 dabble 24 -010100011010 huddle 24 -010100011010 correlate 26 -010100011010 coexist 28 -010100011010 mingle 30 -010100011010 excel 31 -010100011010 converge 32 -010100011010 reincorporate 33 -010100011010 innovate 40 -010100011010 dine 41 -010100011010 tamper 44 -010100011010 languish 46 -010100011010 tinker 48 -010100011010 interact 49 -010100011010 err 51 -010100011010 collaborate 52 -010100011010 usher 54 -010100011010 originate 54 -010100011010 sympathize 57 -010100011010 wrestle 57 -010100011010 reside 68 -010100011010 confer 70 -010100011010 grapple 73 -010100011010 hover 82 -010100011010 thrive 109 -010100011010 grips 110 -010100011010 fluctuate 116 -010100011010 coincide 141 -010100011010 explode 148 -010100011010 behave 173 -010100011010 discriminate 182 -010100011010 specialize 183 -010100011010 rein 197 -010100011010 retaliate 230 -010100011010 communicate 298 -010100011010 interfere 305 -010100011010 prevail 334 -010100011010 intervene 435 -010100011010 cope 443 -010100011010 engage 479 -010100011010 arrive 518 -010100011010 testify 571 -010100011010 comply 746 -010100011010 cooperate 769 -010100011010 proceed 1207 -010100011010 participate 1382 -010100011010 invest 2032 -010100011010 compete 2168 -010100011010 live 2543 -010100011010 remain 6770 -010100011010 stay 2992 -0101000110110 1678.3 1 -0101000110110 rostand 1 -0101000110110 slunk 1 -0101000110110 respire 1 -0101000110110 21,644.32 1 -0101000110110 25512.79 1 -0101000110110 589.50 1 -0101000110110 RNT 1 -0101000110110 288.90 1 -0101000110110 2143.3 1 -0101000110110 24009.03 1 -0101000110110 panted 1 -0101000110110 negogiate 1 -0101000110110 glopped 1 -0101000110110 2214.2 1 -0101000110110 exapnd 1 -0101000110110 runes 1 -0101000110110 cash-needy 1 -0101000110110 shilly-shally 1 -0101000110110 riffled 1 -0101000110110 whiles 1 -0101000110110 1734.6 1 -0101000110110 lazing 1 -0101000110110 shooing 1 -0101000110110 wetted 1 -0101000110110 beavered 1 -0101000110110 check-signing 1 -0101000110110 Karelia 1 -0101000110110 riffle 1 -0101000110110 34759.48 1 -0101000110110 391.63 1 -0101000110110 2,010.85 1 -0101000110110 unshackling 1 -0101000110110 284.30 1 -0101000110110 Cauce 1 -0101000110110 sub-basement 1 -0101000110110 30MAY90 1 -0101000110110 387.10 1 -0101000110110 34515.83 1 -0101000110110 rewire 1 -0101000110110 27728.13 1 -0101000110110 rappel 2 -0101000110110 blackbirds 2 -0101000110110 1320 2 -0101000110110 pranced 2 -0101000110110 schlep 2 -0101000110110 cohere 2 -0101000110110 fudges 2 -0101000110110 Jask 2 -0101000110110 straggle 3 -0101000110110 vegetate 3 -0101000110110 marinate 3 -0101000110110 bobble 3 -0101000110110 pussyfoot 3 -0101000110110 sleepwalk 3 -0101000110110 slither 3 -0101000110110 obtrude 4 -0101000110110 Eternite 4 -0101000110110 devolve 4 -0101000110110 declasse 4 -0101000110110 fritter 5 -0101000110110 taketh 5 -0101000110110 gnaw 5 -0101000110110 flit 7 -0101000110110 regress 7 -0101000110110 meander 7 -0101000110110 trudge 7 -0101000110110 waft 7 -0101000110110 plod 8 -0101000110110 trundle 8 -0101000110110 zigzag 8 -0101000110110 zipping 9 -0101000110110 ramble 9 -0101000110110 slosh 9 -0101000110110 clamber 9 -0101000110110 careen 9 -0101000110110 tiptoe 10 -0101000110110 hark 11 -0101000110110 chisel 11 -0101000110110 rummage 12 -0101000110110 mince 13 -0101000110110 browse 13 -0101000110110 cower 13 -0101000110110 tagging 14 -0101000110110 coalesce 16 -0101000110110 scurry 18 -0101000110110 veer 19 -0101000110110 gravitate 20 -0101000110110 degenerate 22 -0101000110110 seep 22 -0101000110110 pounce 24 -0101000110110 wade 24 -0101000110110 disintegrate 26 -0101000110110 whittle 30 -0101000110110 sift 32 -0101000110110 intrude 33 -0101000110110 revolve 39 -0101000110110 migrate 40 -0101000110110 delve 43 -0101000110110 inquire 44 -0101000110110 descend 50 -0101000110110 wander 71 -0101000110110 evolve 76 -0101000110110 creep 82 -0101000110110 sail 108 -0101000110110 fade 176 -0101000110110 bounce 210 -0101000110110 slip 417 -0101000110110 lie 585 -0101000110110 walk 751 -0101000110110 sit 1096 -0101000110110 go 12662 -0101000110110 happen 1900 -0101000110111 213,164,234 1 -0101000110111 1,731,100 1 -0101000110111 two-putt 1 -0101000110111 5,290,000 1 -0101000110111 1,788,600 1 -0101000110111 A-1/single-A 1 -0101000110111 26,681,500 1 -0101000110111 6,605,000 1 -0101000110111 29,689 1 -0101000110111 4,023 1 -0101000110111 9,080 1 -0101000110111 1,589,300 1 -0101000110111 1,742,800 1 -0101000110111 mean. 1 -0101000110111 1,779,200 1 -0101000110111 534,771 1 -0101000110111 3,097,726 1 -0101000110111 6,007,645 1 -0101000110111 350,017 1 -0101000110111 672,192 1 -0101000110111 1,776,300 1 -0101000110111 2,215,500 1 -0101000110111 4,937 1 -0101000110111 4,240,000 1 -0101000110111 7,439,000 1 -0101000110111 34,958,000 1 -0101000110111 776,844 1 -0101000110111 17,492,000 1 -0101000110111 760,522 1 -0101000110111 2,230,500 1 -0101000110111 2,156,700 1 -0101000110111 2,200,100 1 -0101000110111 totter 1 -0101000110111 2,093,500 1 -0101000110111 6,098 1 -0101000110111 20900 1 -0101000110111 2,251,600 1 -0101000110111 178,384 1 -0101000110111 CFQ 1 -0101000110111 ELXSI 1 -0101000110111 40,709 1 -0101000110111 44,109 1 -0101000110111 10,143 1 -0101000110111 55,686 1 -0101000110111 7,163 1 -0101000110111 0.6500 1 -0101000110111 4,139,000 1 -0101000110111 100.35 1 -0101000110111 279,575 1 -0101000110111 31,362 1 -0101000110111 1,817,400 1 -0101000110111 3,195,500 1 -0101000110111 Entebbe 1 -0101000110111 979,919 1 -0101000110111 1,021,333 1 -0101000110111 triple-B-minus/A3 1 -0101000110111 single-A-two 1 -0101000110111 27149.55 1 -0101000110111 8,164,535 1 -0101000110111 343,008 1 -0101000110111 1,717,600 1 -0101000110111 7,195,999 1 -0101000110111 1,906,900 1 -0101000110111 1,957,900 1 -0101000110111 5,092,464 1 -0101000110111 1,729,800 1 -0101000110111 provisional-single-A-1 1 -0101000110111 966,538 1 -0101000110111 1,888,900 1 -0101000110111 1,684,600 1 -0101000110111 21,350 1 -0101000110111 4,947,049 1 -0101000110111 2,314,949 1 -0101000110111 1,797,200 1 -0101000110111 5,123 1 -0101000110111 990,383 1 -0101000110111 77,032 1 -0101000110111 673,987 1 -0101000110111 suffer. 1 -0101000110111 1,899,400 1 -0101000110111 309,561 1 -0101000110111 572,051 1 -0101000110111 2,746,997 1 -0101000110111 5,336,235 1 -0101000110111 1,434 1 -0101000110111 1,633,100 1 -0101000110111 678,405 1 -0101000110111 Arequipa 1 -0101000110111 733,750 1 -0101000110111 330,671 1 -0101000110111 1,656,400 1 -0101000110111 1,699,300 1 -0101000110111 27,931.24 1 -0101000110111 139,002 1 -0101000110111 600,573 1 -0101000110111 2,434,200 1 -0101000110111 2387.92 1 -0101000110111 Ba3 1 -0101000110111 2,317,200 1 -0101000110111 3,110,400 1 -0101000110111 60,158 1 -0101000110111 94,120 1 -0101000110111 2,212,500 1 -0101000110111 2,659,300 1 -0101000110111 3,148,000 1 -0101000110111 3,296,900 1 -0101000110111 5,614 1 -0101000110111 3,356 1 -0101000110111 24-1 1 -0101000110111 6,238 1 -0101000110111 104,479 1 -0101000110111 3,248 1 -0101000110111 23,286 1 -0101000110111 18,064 1 -0101000110111 16,607 1 -0101000110111 20,802 1 -0101000110111 Aa-2 1 -0101000110111 2,639,700 1 -0101000110111 12,857 1 -0101000110111 2,570,000 1 -0101000110111 2,687,500 1 -0101000110111 3,057,100 1 -0101000110111 342,150 1 -0101000110111 742,922 1 -0101000110111 Compri 1 -0101000110111 2,292,200 1 -0101000110111 594,080 1 -0101000110111 41,019 1 -0101000110111 3,079,200 1 -0101000110111 439.2 1 -0101000110111 441.2 1 -0101000110111 2,492,300 1 -0101000110111 21,913 1 -0101000110111 4,193 1 -0101000110111 2,895,200 1 -0101000110111 3,540,872 1 -0101000110111 2,246,400 1 -0101000110111 259,551 1 -0101000110111 hang-glided 1 -0101000110111 281,384 1 -0101000110111 412,824 1 -0101000110111 2,077,600 1 -0101000110111 74,081 1 -0101000110111 2,215,600 1 -0101000110111 1,763,200 1 -0101000110111 1,976,900 1 -0101000110111 12,099 1 -0101000110111 275,061 1 -0101000110111 3,223,100 1 -0101000110111 1,037,000 1 -0101000110111 2,132,400 1 -0101000110111 2,199,700 1 -0101000110111 27,638 1 -0101000110111 820,860 1 -0101000110111 852,650 1 -0101000110111 Not-Prime 1 -0101000110111 2,469,000 1 -0101000110111 3,116,800 1 -0101000110111 223,551 1 -0101000110111 384,196 1 -0101000110111 596,159 1 -0101000110111 305,483 1 -0101000110111 859,355 1 -0101000110111 2,783,300 1 -0101000110111 556,9535 1 -0101000110111 15,183,000 1 -0101000110111 2,925,200 1 -0101000110111 38,441 1 -0101000110111 83,600 1 -0101000110111 1,952,600 1 -0101000110111 doubleA-3 1 -0101000110111 2,014,100 1 -0101000110111 18964.01 1 -0101000110111 673,334 1 -0101000110111 2,685,800 1 -0101000110111 stop. 1 -0101000110111 2,869,200 1 -0101000110111 retire. 1 -0101000110111 26,234 1 -0101000110111 4,717 1 -0101000110111 4,858,537 1 -0101000110111 2,156,200 1 -0101000110111 2,786,300 1 -0101000110111 16,710 1 -0101000110111 2,914,300 1 -0101000110111 228,991 1 -0101000110111 124,323 1 -0101000110111 97,184 1 -0101000110111 A-1/single-A-plus 1 -0101000110111 SUPR 1 -0101000110111 3,817,675 1 -0101000110111 277,615 1 -0101000110111 352,867 1 -0101000110111 245,667 1 -0101000110111 299,915 1 -0101000110111 2,252,600 1 -0101000110111 1,343,822 1 -0101000110111 boy-size 1 -0101000110111 reaccelerate 1 -0101000110111 2,019,100 1 -0101000110111 1,953,900 1 -0101000110111 re-secede 1 -0101000110111 low-single-A 1 -0101000110111 ex-spouses 1 -0101000110111 42,961 1 -0101000110111 78,659 1 -0101000110111 33,036 1 -0101000110111 233,293 1 -0101000110111 11,855 1 -0101000110111 2,131,800 1 -0101000110111 8,020 1 -0101000110111 39,734 1 -0101000110111 1,191 1 -0101000110111 102.038 1 -0101000110111 228,789 1 -0101000110111 2,092,400 1 -0101000110111 58,904,000 1 -0101000110111 15,211 1 -0101000110111 6,386 1 -0101000110111 2,028,100 1 -0101000110111 30,801 1 -0101000110111 189,245 1 -0101000110111 2,711,900 1 -0101000110111 1,978,000 1 -0101000110111 24,798 1 -0101000110111 39,611 1 -0101000110111 hyprocrisy 1 -0101000110111 132,004 1 -0101000110111 mid-2600s 1 -0101000110111 2,233,400 1 -0101000110111 Triple-B-Plus 1 -0101000110111 2,716,700 1 -0101000110111 2,771,900 1 -0101000110111 46,121 1 -0101000110111 2,731,600 1 -0101000110111 Toscani 1 -0101000110111 42,489 1 -0101000110111 95,372 1 -0101000110111 34,667 1 -0101000110111 25,287 1 -0101000110111 68,859 1 -0101000110111 46,073 1 -0101000110111 Single-B-minus/C 1 -0101000110111 Triple-C-minus 1 -0101000110111 2,859,500 1 -0101000110111 85,533 1 -0101000110111 snigger 1 -0101000110111 843,234 1 -0101000110111 917,450 1 -0101000110111 2,777,100 1 -0101000110111 2.3-to-1 1 -0101000110111 3.1-to-1 1 -0101000110111 2,633,400 1 -0101000110111 2,552,000 1 -0101000110111 2,066,200 1 -0101000110111 4673 1 -0101000110111 34719.80 1 -0101000110111 2,244,600 1 -0101000110111 see. 1 -0101000110111 2,701,896 1 -0101000110111 6,384,178 1 -0101000110111 1,883,100 1 -0101000110111 2,729 1 -0101000110111 sell. 1 -0101000110111 46,182 1 -0101000110111 read. 1 -0101000110111 1,807,300 1 -0101000110111 1.3290 1 -0101000110111 2,123,200 1 -0101000110111 5,264 1 -0101000110111 orginate 1 -0101000110111 Televisionland 1 -0101000110111 1198.35 1 -0101000110111 51,093 1 -0101000110111 1,840,600 1 -0101000110111 376.03 1 -0101000110111 2,004,600 1 -0101000110111 A/A-1 1 -0101000110111 21,475 1 -0101000110111 2,072,700 1 -0101000110111 29,619,992 1 -0101000110111 1,818,351 1 -0101000110111 2,032,700 1 -0101000110111 833,404 1 -0101000110111 2,355,300 1 -0101000110111 2141 1 -0101000110111 1,911,100 1 -0101000110111 312,074 1 -0101000110111 2,808,700 1 -0101000110111 4,301,787 1 -0101000110111 1,854,300 1 -0101000110111 1,134,400 1 -0101000110111 22,688,000 1 -0101000110111 7,354,000 1 -0101000110111 1,900,600 1 -0101000110111 16,950,000 1 -0101000110111 181,843 1 -0101000110111 double-C-minus 2 -0101000110111 65,200 2 -0101000110111 Single-B-1 2 -0101000110111 1,939,500 2 -0101000110111 burgeon 2 -0101000110111 347,052 2 -0101000110111 triple-B-A2 2 -0101000110111 2,518 2 -0101000110111 transpire 2 -0101000110111 3160 2 -0101000110111 unroll 2 -0101000110111 triple-B-plus/A-2 2 -0101000110111 234.55 2 -0101000110111 2,135,900 2 -0101000110111 1160 2 -0101000110111 perspire 3 -0101000110111 genuflect 3 -0101000110111 1767.9 3 -0101000110111 Single-C 3 -0101000110111 wheeze 3 -0101000110111 pulsate 4 -0101000110111 digress 4 -0101000110111 be. 4 -0101000110111 superconduct 4 -0101000110111 atrophy 5 -0101000110111 forbear 5 -0101000110111 overreach 5 -0101000110111 snuggle 6 -0101000110111 mutate 7 -0101000110111 reemerge 9 -0101000110111 decelerate 9 -0101000110111 sputter 9 -0101000110111 elapse 9 -0101000110111 wilt 10 -0101000110111 tremble 11 -0101000110111 percolate 11 -0101000110111 reverberate 11 -0101000110111 relent 12 -0101000110111 re-emerge 13 -0101000110111 self-destruct 13 -0101000110111 disengage 13 -0101000110111 flounder 15 -0101000110111 recuperate 15 -0101000110111 flinch 15 -0101000110111 emanate 16 -0101000110111 secede 16 -0101000110111 shrivel 18 -0101000110111 recoil 18 -0101000110111 stagnate 18 -0101000110111 waver 19 -0101000110111 slacken 21 -0101000110111 resurface 23 -0101000110111 blossom 25 -0101000110111 diverge 25 -0101000110111 overheat 30 -0101000110111 skyrocket 31 -0101000110111 reappear 32 -0101000110111 deviate 33 -0101000110111 sprout 35 -0101000110111 abstain 36 -0101000110111 ensue 37 -0101000110111 detract 41 -0101000110111 wither 41 -0101000110111 recur 46 -0101000110111 abate 50 -0101000110111 unfold 52 -0101000110111 proliferate 53 -0101000110111 vanish 53 -0101000110111 dwindle 57 -0101000110111 crumble 58 -0101000110111 subside 61 -0101000110111 falter 65 -0101000110111 linger 66 -0101000110111 evaporate 68 -0101000110111 budge 73 -0101000110111 erupt 85 -0101000110111 loom 90 -0101000110111 emigrate 96 -0101000110111 depart 119 -0101000110111 backfire 123 -0101000110111 prosper 140 -0101000110111 materialize 166 -0101000110111 persist 277 -0101000110111 refrain 280 -0101000110111 arise 295 -0101000110111 disappear 325 -0101000110111 differ 388 -0101000110111 die 706 -0101000110111 resign 854 -0101000110111 exist 898 -0101000110111 emerge 1006 -0101000110111 come 10902 -0101000110111 occur 1178 -010100011100 curare 1 -010100011100 Clamor 1 -010100011100 counter-bidder 1 -010100011100 snookers 1 -010100011100 Flocking 1 -010100011100 rememeber 1 -010100011100 ophthamologist 1 -010100011100 taker-bartender-porter 1 -010100011100 cruddy 1 -010100011100 commited 1 -010100011100 mamba-ing 1 -010100011100 likley 1 -010100011100 Awaken 1 -010100011100 two-stepping 1 -010100011100 tring 1 -010100011100 boogey 1 -010100011100 inbounded 2 -010100011100 waggle 2 -010100011100 Pierced 2 -010100011100 connnected 2 -010100011100 colorfast 3 -010100011100 hestitate 3 -010100011100 deign 4 -010100011100 enchant 5 -010100011100 Ought 5 -010100011100 kowtow 5 -010100011100 bequeaths 5 -010100011100 purport 30 -010100011100 aspire 54 -010100011100 deem 58 -010100011100 profess 69 -010100011100 hesitate 152 -010100011100 belong 326 -010100011100 hate 334 -010100011100 intend 1046 -010100011100 prefer 1085 -010100011100 tend 1820 -010100011100 seem 4212 -010100011100 want 11950 -0101000111010 supersale 1 -0101000111010 Quadrupedis 1 -0101000111010 Piso 1 -0101000111010 week-did 1 -0101000111010 vulgare 1 -0101000111010 orientale 1 -0101000111010 Jubilate 1 -0101000111010 Makewater 1 -0101000111010 duhMAHko 1 -0101000111010 Atomica 1 -0101000111010 Maku 1 -0101000111010 Dink 1 -0101000111010 Chaplain 1 -0101000111010 cathartica 1 -0101000111010 betacea 1 -0101000111010 tithymaloides 1 -0101000111010 japonica 1 -0101000111010 quamoclit 1 -0101000111010 elegans 1 -0101000111010 Nevesta 1 -0101000111010 icones 1 -0101000111010 Cantato 1 -0101000111010 passu 1 -0101000111010 government-though 1 -0101000111010 bisporus 1 -0101000111010 chives 1 -0101000111010 pleurer 1 -0101000111010 Battleground 1 -0101000111010 bako 1 -0101000111010 unaesthetic 1 -0101000111010 indica 1 -0101000111010 1961-1987 1 -0101000111010 1:25:87 1 -0101000111010 Careline 1 -0101000111010 fantasia 1 -0101000111010 Tracts 1 -0101000111010 Mucho 1 -0101000111010 Ghostrider 1 -0101000111010 nei/wai 1 -0101000111010 giocoso 1 -0101000111010 miniata 1 -0101000111010 wing-building 1 -0101000111010 60-to 1 -0101000111010 acuta 1 -0101000111010 step-if 1 -0101000111010 jasminoides 1 -0101000111010 pygmea 1 -0101000111010 semidecandra 1 -0101000111010 bitchiuense 1 -0101000111010 olde 1 -0101000111010 bijin 1 -0101000111010 card-replacement 1 -0101000111010 unrolls 2 -0101000111010 pitying 2 -0101000111010 Kabanova 2 -0101000111010 bitingly 2 -0101000111010 ADOPT 2 -0101000111010 acculturated 2 -0101000111010 USES 2 -0101000111010 yearn 31 -0101000111010 prowl 50 -0101000111010 dare 122 -0101000111010 regard 957 -0101000111010 need 9114 -0101000111011 duetize 1 -0101000111011 prodcuced 1 -0101000111011 rescreened 1 -0101000111011 unbolt 1 -0101000111011 ossify 1 -0101000111011 undercalled 1 -0101000111011 exorcize 1 -0101000111011 dispirit 1 -0101000111011 boggle 1 -0101000111011 unlease 1 -0101000111011 overanswers 1 -0101000111011 dishearten 1 -0101000111011 outswim 1 -0101000111011 forcast 1 -0101000111011 de-link 1 -0101000111011 overflown 1 -0101000111011 re-leverage 1 -0101000111011 excpect 1 -0101000111011 abso- 1 -0101000111011 reachng 1 -0101000111011 overdramatize 1 -0101000111011 countermand 1 -0101000111011 unfasten 1 -0101000111011 uneducate 1 -0101000111011 orientate 1 -0101000111011 unbunch 1 -0101000111011 misconceive 1 -0101000111011 beleive 1 -0101000111011 spoon-feed 1 -0101000111011 Captures 1 -0101000111011 sensationalize 1 -0101000111011 outstare 1 -0101000111011 spindled 1 -0101000111011 incriminated 1 -0101000111011 transmogrify 1 -0101000111011 forwent 2 -0101000111011 re-embrace 2 -0101000111011 behoove 2 -0101000111011 forsee 2 -0101000111011 prefered 2 -0101000111011 miscalculate 3 -0101000111011 indentify 3 -0101000111011 misconstrue 3 -0101000111011 outclass 4 -0101000111011 ill-afford 4 -0101000111011 Seem 5 -0101000111011 FIELDER 5 -0101000111011 foretell 15 -0101000111011 ascribe 17 -0101000111011 deride 19 -0101000111011 envisage 19 -0101000111011 liken 20 -0101000111011 covet 22 -0101000111011 crave 41 -0101000111011 envision 117 -0101000111011 perceive 190 -0101000111011 attribute 222 -0101000111011 foresee 237 -0101000111011 owe 304 -0101000111011 deserve 376 -0101000111011 cite 465 -0101000111011 anticipate 535 -0101000111011 expect 7315 -0101000111011 afford 1458 -010100011110 pamphleteering 1 -010100011110 Serbo-Croatians 1 -010100011110 102.10 1 -010100011110 1.7350 1 -010100011110 103.35 1 -010100011110 Pentecostalism 1 -010100011110 Dalmatia 1 -010100011110 reoperate 1 -010100011110 reallow 1 -010100011110 Totalcorp 1 -010100011110 103.39 1 -010100011110 gether 1 -010100011110 31000 1 -010100011110 97.78 1 -010100011110 Lou-ah-vull 1 -010100011110 SCURRY 1 -010100011110 98.48 1 -010100011110 100.475 1 -010100011110 Tarawa 2 -010100011110 harken 2 -010100011110 98.175 2 -010100011110 cleave 2 -010100011110 hearken 2 -010100011110 98.85 2 -010100011110 append 2 -010100011110 Corneille 2 -010100011110 contine 2 -010100011110 condescend 3 -010100011110 redound 5 -010100011110 overspend 5 -010100011110 grovel 8 -010100011110 allude 8 -010100011110 ascend 11 -010100011110 capitulate 13 -010100011110 immigrate 15 -010100011110 pander 15 -010100011110 hew 16 -010100011110 conspire 16 -010100011110 pertain 21 -010100011110 acquiesce 22 -010100011110 accede 30 -010100011110 overreact 35 -010100011110 succumb 50 -010100011110 suffice 68 -010100011110 cling 80 -010100011110 strive 83 -010100011110 revert 89 -010100011110 cater 120 -010100011110 subscribe 139 -010100011110 adhere 151 -010100011110 adapt 193 -010100011110 relate 230 -010100011110 refer 382 -010100011110 listen 489 -010100011110 react 538 -010100011110 refuse 671 -010100011110 fail 1125 -010100011110 respond 1617 -010100011110 apply 1696 -010100011110 continue 10565 -010100011110 try 5146 -010100011111 crosscheck 1 -010100011111 24158.52 1 -010100011111 need-tough 1 -010100011111 1779.58 1 -010100011111 1730.59 1 -010100011111 1767.23 1 -010100011111 pre-tourney 1 -010100011111 sixth-best 1 -010100011111 long-complaining 1 -010100011111 Ladbrokes 1 -010100011111 Pulitzer-prize 1 -010100011111 624,679 1 -010100011111 testifiy 1 -010100011111 10-billion-dollar 1 -010100011111 single-molecule 1 -010100011111 2114.10 1 -010100011111 heaviness 1 -010100011111 25862.45 1 -010100011111 spring-for 1 -010100011111 31,217 1 -010100011111 sypathetic 1 -010100011111 1097.28 1 -010100011111 Israel-Jordan 1 -010100011111 1,850,395 1 -010100011111 2139.63 1 -010100011111 fifth-longest 1 -010100011111 submachine-gun 1 -010100011111 less-central 1 -010100011111 BNKW 1 -010100011111 once-high 1 -010100011111 40-voice 1 -010100011111 7.7525 1 -010100011111 Basra-region 1 -010100011111 269.30 1 -010100011111 carbon-14 1 -010100011111 2,838 1 -010100011111 14,572 1 -010100011111 2197.20 1 -010100011111 Disney-generation 1 -010100011111 creap 1 -010100011111 34855.45 1 -010100011111 2208.13 1 -010100011111 unmold 1 -010100011111 devilish-looking 1 -010100011111 2197.49 1 -010100011111 Singapura 1 -010100011111 33,286 1 -010100011111 Decentralize 1 -010100011111 re-charge 1 -010100011111 historial 1 -010100011111 27,427 1 -010100011111 broken-field 1 -010100011111 doyens 1 -010100011111 ostinato 1 -010100011111 1986-returns 1 -010100011111 2206.55 1 -010100011111 re-canonizations 1 -010100011111 2,600-member 1 -010100011111 extra-market 1 -010100011111 Jonathan-the-53-year-old 1 -010100011111 14,651 1 -010100011111 35063.14 1 -010100011111 7,980 2 -010100011111 tri-service 2 -010100011111 telecommute 2 -010100011111 incease 2 -010100011111 configure 2 -010100011111 crystal-ball 2 -010100011111 heritages 3 -010100011111 reinject 3 -010100011111 exhale 4 -010100011111 Alkem 4 -010100011111 squint 6 -010100011111 reconvene 39 -010100011111 commence 57 -010100011111 cease 235 -010100011111 finish 744 -010100011111 retire 1153 -010100011111 resume 1281 -010100011111 expire 1406 -010100011111 begin 6010 -010100011111 start 5628 -01010010 proably 1 -01010010 straight-in 1 -01010010 SPELLED 1 -01010010 site-characterization 1 -01010010 unmindfully 1 -01010010 drug-surveillance 1 -01010010 tetherball 1 -01010010 conscionably 1 -01010010 thenceforward 1 -01010010 posibly 1 -01010010 CHEAPER 1 -01010010 ENJOYING 1 -01010010 SIMPLY 1 -01010010 crowd-controlling 1 -01010010 PROMOTING 1 -01010010 listenership 1 -01010010 JOINING 1 -01010010 Beshada 1 -01010010 Denetim 1 -01010010 frostily 1 -01010010 82,434 1 -01010010 incontrovertibly 2 -01010010 n't 158802 -01010010 't 7 -010100110 MH-53 1 -010100110 365,207 1 -010100110 wrong-doers 1 -010100110 fled. 1 -010100110 stablilizers 1 -010100110 foxhounds 1 -010100110 low-thrust 1 -010100110 wrily 1 -010100110 bleakly 1 -010100110 twanged 1 -010100110 subminimums 1 -010100110 forehandedly 1 -010100110 two-games-of-three 1 -010100110 pridefully 1 -010100110 season-long 1 -010100110 1984-are 1 -010100110 planning-never 1 -010100110 monkeyed 1 -010100110 SLOVO 1 -010100110 molded-in 1 -010100110 consitently 1 -010100110 21-foot-seas 1 -010100110 been 75150 -010100110 lain 6 -010100111 expresss 1 -010100111 formaldehyde-treated 1 -010100111 25-year-olds 1 -010100111 Jettas 1 -010100111 groin-muscle 1 -010100111 particulartly 1 -010100111 dollar-Deutsche 1 -010100111 Perunding 1 -010100111 posess 1 -010100111 3/30A-4 1 -010100111 cutification 1 -010100111 castrate 1 -010100111 Appease 1 -010100111 straight-arming 1 -010100111 non-publicly 1 -010100111 13,140,000 1 -010100111 612,400 1 -010100111 475,800 1 -010100111 attact 2 -010100111 be 172150 -010100111 stablilize 2 -0101010000000 sleaze-ridden 1 -0101010000000 capital-bred 1 -0101010000000 bounteous 1 -0101010000000 braggarts 1 -0101010000000 oftener 1 -0101010000000 roquefort 1 -0101010000000 deep-dyed 1 -0101010000000 impactful 1 -0101010000000 sub-optimal 1 -0101010000000 optimisitc 1 -0101010000000 testaments 1 -0101010000000 chocolaty 1 -0101010000000 ruble-spending 1 -0101010000000 anther 1 -0101010000000 resource-starved 1 -0101010000000 employee-guests 1 -0101010000000 budget-sensitive 1 -0101010000000 wellplaced 1 -0101010000000 feelings/Time 1 -0101010000000 obeisant 1 -0101010000000 coldhearted 1 -0101010000000 drams 1 -0101010000000 worthwile 1 -0101010000000 offhanded 1 -0101010000000 throughput 2 -0101010000000 milds 2 -0101010000000 fool-hardy 2 -0101010000000 poppycock 3 -0101010000000 PACTS 3 -0101010000000 devoutly 8 -0101010000000 antithetical 19 -0101010000000 attuned 45 -0101010000000 analogous 54 -0101010000000 amenable 69 -0101010000000 resistant 102 -0101010000000 susceptible 149 -0101010000000 apt 200 -0101010000000 vulnerable 1192 -0101010000000 likely 12640 -0101010000000 unlikely 1943 -0101010000001 self-walking 1 -0101010000001 Veriano 1 -0101010000001 fiddling. 1 -0101010000001 Ionamin 1 -0101010000001 metolazone 1 -0101010000001 reformed-politically 1 -0101010000001 piezoelectric 1 -0101010000001 truck-served 1 -0101010000001 rail-served 1 -0101010000001 disclosure-overkill 1 -0101010000001 non-racist 1 -0101010000001 underinflated 1 -0101010000001 tourniquets 1 -0101010000001 accepatable 1 -0101010000001 Ashurbanipal 1 -0101010000001 Beny 1 -0101010000001 halfbacks 1 -0101010000001 bimbettes 1 -0101010000001 half-German 1 -0101010000001 Munawir 1 -0101010000001 Enso 1 -0101010000001 sardine-sized 1 -0101010000001 naked. 1 -0101010000001 sol 1 -0101010000001 fa 1 -0101010000001 half-deserted 1 -0101010000001 equanimical 1 -0101010000001 scrambling. 1 -0101010000001 semimorons 1 -0101010000001 gastly 1 -0101010000001 Sandknit 1 -0101010000001 non-Muslims 1 -0101010000001 unconstitional 1 -0101010000001 communist-inspired 1 -0101010000001 unfair. 1 -0101010000001 Franco-Russian 1 -0101010000001 selfsupporting 1 -0101010000001 prolix 1 -0101010000001 ultra-reliable 1 -0101010000001 KFBK-AM 1 -0101010000001 A.S.A.P. 1 -0101010000001 107.018 1 -0101010000001 helpful. 1 -0101010000001 N.O. 1 -0101010000001 Chucho 1 -0101010000001 completed. 1 -0101010000001 DISASTERS 1 -0101010000001 selfserving 1 -0101010000001 naturally-occurring 1 -0101010000001 Ba-a-ad 1 -0101010000001 issueless. 1 -0101010000001 hazel. 1 -0101010000001 PRO-LIFE 1 -0101010000001 THC 1 -0101010000001 Relaxin 1 -0101010000001 GOfer 1 -0101010000001 233.45 1 -0101010000001 schedued 1 -0101010000001 crated 1 -0101010000001 Nelusko 1 -0101010000001 inarticulable 1 -0101010000001 spending-crazy 1 -0101010000001 job-caused 1 -0101010000001 oversimple 1 -0101010000001 sectorized 1 -0101010000001 AMBAC-insured 1 -0101010000001 anerotic 1 -0101010000001 self-deceptive 1 -0101010000001 right-hand-drive 1 -0101010000001 AK-47s 1 -0101010000001 involved. 1 -0101010000001 semi-big 1 -0101010000001 co-responsible 1 -0101010000001 109.448 1 -0101010000001 repeat-Caesareans 1 -0101010000001 Formigao 1 -0101010000001 event-neutral 1 -0101010000001 irrecoverable 1 -0101010000001 part-Japanese 1 -0101010000001 overfolded 1 -0101010000001 under-capitalized 1 -0101010000001 functionalists 1 -0101010000001 undefensive 1 -0101010000001 antiAmerican 1 -0101010000001 disputable 1 -0101010000001 company-induced 1 -0101010000001 1.535 1 -0101010000001 naturals 1 -0101010000001 negotiability 1 -0101010000001 flavorless 1 -0101010000001 12-2 1 -0101010000001 Sepakat 1 -0101010000001 pre-analytical 1 -0101010000001 threathening 1 -0101010000001 hep 1 -0101010000001 microfilm-based 1 -0101010000001 diptychs 1 -0101010000001 disodium 1 -0101010000001 Lota 1 -0101010000001 terrorist-proof 1 -0101010000001 103.65 1 -0101010000001 clofibrate 1 -0101010000001 hotsy-totsy 1 -0101010000001 kin-deep 1 -0101010000001 BYUWI 1 -0101010000001 overaddiction 1 -0101010000001 Pro-urokinase 1 -0101010000001 140/90 1 -0101010000001 cloudly 1 -0101010000001 off-cream 1 -0101010000001 antipathetic 1 -0101010000001 Megaproject 1 -0101010000001 Neuschwanstein 1 -0101010000001 Imminent 1 -0101010000001 120,261 1 -0101010000001 budget-neutral 1 -0101010000001 KIOI-FM 1 -0101010000001 employee-related 1 -0101010000001 everwatchful 1 -0101010000001 belived 1 -0101010000001 Magellanesque 1 -0101010000001 helium-neon 1 -0101010000001 demonized 1 -0101010000001 Calcimar 1 -0101010000001 submetered 1 -0101010000001 over-taxed 1 -0101010000001 800-843-4315 1 -0101010000001 country-sized 1 -0101010000001 spy-proof 1 -0101010000001 Josabeth 1 -0101010000001 Canadian-sourced 1 -0101010000001 nondisciplinary 1 -0101010000001 self-exhausting 1 -0101010000001 inalienable. 1 -0101010000001 calcuated 1 -0101010000001 polygamous 1 -0101010000001 dazzlers 1 -0101010000001 TGT 1 -0101010000001 rolling. 1 -0101010000001 KD-TV 1 -0101010000001 KWEX 1 -0101010000001 revenue-oriented 1 -0101010000001 shoutingly 1 -0101010000001 colossally 1 -0101010000001 mean-minded 1 -0101010000001 nizatidine 1 -0101010000001 crumbly 1 -0101010000001 targetting 1 -0101010000001 unfearing 1 -0101010000001 WOWIQ 1 -0101010000001 fiiming 1 -0101010000001 unlikley 1 -0101010000001 semifree 1 -0101010000001 do-able 1 -0101010000001 demassifying 1 -0101010000001 Papuans 1 -0101010000001 education-minded 1 -0101010000001 Hysterical 1 -0101010000001 1,3-butadiene 1 -0101010000001 marriageableness 1 -0101010000001 Vitellia 1 -0101010000001 under-worked 1 -0101010000001 qinsha 1 -0101010000001 Blagoveshchensk 1 -0101010000001 actorish 1 -0101010000001 Non-Trivial 1 -0101010000001 on-target 1 -0101010000001 taxable. 1 -0101010000001 aboil 1 -0101010000001 Renault-appointed 1 -0101010000001 Fengdu 1 -0101010000001 uncalculated 1 -0101010000001 debt-led 1 -0101010000001 capacity-short 1 -0101010000001 soroche 1 -0101010000001 two-posted 1 -0101010000001 Pennsylvania-born 1 -0101010000001 well-poised 1 -0101010000001 resilient. 1 -0101010000001 relicensed 1 -0101010000001 23-feet-long 1 -0101010000001 militant. 1 -0101010000001 strong. 1 -0101010000001 racketeer-dominated 1 -0101010000001 moisture-stressed 1 -0101010000001 Lulamae 1 -0101010000001 steel-based 1 -0101010000001 eclectic-omelettes 1 -0101010000001 b.s 1 -0101010000001 triaged 1 -0101010000001 Chandrapore 1 -0101010000001 whiskey-colored 1 -0101010000001 monosuppliers 1 -0101010000001 Eurobaseball 1 -0101010000001 tenant-driven 1 -0101010000001 Bayou-bound 1 -0101010000001 fungibility 1 -0101010000001 liquid-fueled 1 -0101010000001 jam-proof 1 -0101010000001 orange-red 1 -0101010000001 J-sized 1 -0101010000001 state-procured 1 -0101010000001 remediable 1 -0101010000001 Yuhua 1 -0101010000001 wallpapering 1 -0101010000001 Hosiden 1 -0101010000001 agit-prop 1 -0101010000001 hypericin 1 -0101010000001 handleable 1 -0101010000001 Anckarstroem 1 -0101010000001 4-feet-8 1 -0101010000001 thoughtprovoking 1 -0101010000001 anti-plot 1 -0101010000001 PIM 1 -0101010000001 14-14 1 -0101010000001 baseliners 1 -0101010000001 overprescribed 1 -0101010000001 unpoliceable 1 -0101010000001 timesaving 1 -0101010000001 1969-86 1 -0101010000001 KBJR-TV 1 -0101010000001 0-3 1 -0101010000001 DPC-Strittmatter 1 -0101010000001 illsuited 1 -0101010000001 sanctions-containment 1 -0101010000001 postmen 1 -0101010000001 contracyclical 1 -0101010000001 sanctions-proof 1 -0101010000001 discovere 1 -0101010000001 diacetyl 1 -0101010000001 non-ephemeral 1 -0101010000001 106.222 1 -0101010000001 Gadjah 1 -0101010000001 Primedica 1 -0101010000001 better-maintained 1 -0101010000001 un-Quaker-like 1 -0101010000001 KPP 1 -0101010000001 bantay-kotse 1 -0101010000001 shampooed 1 -0101010000001 ascribable 1 -0101010000001 slowing. 1 -0101010000001 countable 1 -0101010000001 un-European 1 -0101010000001 thin-hipped 1 -0101010000001 trend-followers 1 -0101010000001 doubled-edged 1 -0101010000001 widely-expected 1 -0101010000001 Dresylon 1 -0101010000001 Acarbose 1 -0101010000001 providin 1 -0101010000001 unsafe. 1 -0101010000001 inconstant 1 -0101010000001 expcted 1 -0101010000001 pseudoregulated 1 -0101010000001 overstored 1 -0101010000001 fawn-colored 1 -0101010000001 tailgating 1 -0101010000001 overserved 1 -0101010000001 fortyish 1 -0101010000001 Andrex 1 -0101010000001 Saami 1 -0101010000001 Unverity 1 -0101010000001 staff-on-loan 1 -0101010000001 past-oriented 1 -0101010000001 difluoromethylornithine 1 -0101010000001 gun-crazed 1 -0101010000001 1,311,792 2 -0101010000001 chuffed 2 -0101010000001 beatable 2 -0101010000001 mindboggling 2 -0101010000001 116.191 2 -0101010000001 116.374 2 -0101010000001 WAXY-FM 2 -0101010000001 absorbents 2 -0101010000001 attemping 2 -0101010000001 10-fold 2 -0101010000001 lagniappe 3 -0101010000001 semiretired 3 -0101010000001 countersuing 3 -0101010000001 jejune 4 -0101010000001 unelectable 5 -0101010000001 expected 23370 -0101010000001 anathema 59 -0101010000010 re-integrated 1 -0101010000010 pro-FESS-ionals 1 -0101010000010 wilfully 1 -0101010000010 crudites 1 -0101010000010 hog-tied 1 -0101010000010 translatable 1 -0101010000010 graveyardish 1 -0101010000010 arrestados 1 -0101010000010 chickening 1 -0101010000010 cock-ahoop 1 -0101010000010 assimilable 1 -0101010000010 auroras 1 -0101010000010 loupe 1 -0101010000010 schoolseager 1 -0101010000010 atrophying 2 -0101010000010 pimping 2 -0101010000010 mutating 2 -0101010000010 capital-constrained 2 -0101010000010 refracted 3 -0101010000010 psyched 4 -0101010000010 hellbent 5 -0101010000010 goin' 5 -0101010000010 cottoned 6 -0101010000010 hurrying 20 -0101010000010 venturing 28 -0101010000010 flocking 67 -0101010000010 going 14078 -0101010000010 rushing 252 -01010100000110 duty-bound 1 -01010100000110 Eurotechnica 1 -01010100000110 re-analyzed 1 -01010100000110 protestant 1 -01010100000110 103.59 1 -01010100000110 better-suited 1 -01010100000110 re-landscaped 1 -01010100000110 preferrable 1 -01010100000110 111.93 1 -01010100000110 reloaned 1 -01010100000110 109.79 1 -01010100000110 downscaled 1 -01010100000110 h--- 1 -01010100000110 103.46 1 -01010100000110 110.69 1 -01010100000110 104.86 1 -01010100000110 hard-stretched 1 -01010100000110 computer-selected 1 -01010100000110 retimed 1 -01010100000110 redelivered 1 -01010100000110 profit-sensitive 1 -01010100000110 debited 1 -01010100000110 willling 1 -01010100000110 re-introduced 1 -01010100000110 comitted 1 -01010100000110 hesistant 2 -01010100000110 executioners 2 -01010100000110 tranferred 2 -01010100000110 hard-put 2 -01010100000110 entreated 2 -01010100000110 re-rated 2 -01010100000110 best-positioned 2 -01010100000110 reconverted 5 -01010100000110 readier 6 -01010100000110 unfaithful 11 -01010100000110 well-advised 16 -01010100000110 relegated 56 -01010100000110 tempted 179 -01010100000110 subjected 195 -01010100000110 obliged 196 -01010100000110 able 6698 -01010100000110 compelled 267 -01010100000111 gulph 1 -01010100000111 acclimated 1 -01010100000111 oversensitized 1 -01010100000111 beginnning 1 -01010100000111 more-than-adequate 1 -01010100000111 sidebars 1 -01010100000111 desiged 1 -01010100000111 exected 1 -01010100000111 boorishly 1 -01010100000111 1,947,792 1 -01010100000111 honorbound 1 -01010100000111 upper-middle- 1 -01010100000111 jabberwocky 1 -01010100000111 clammily 1 -01010100000111 scambling 1 -01010100000111 underexposed 1 -01010100000111 sold/donated 1 -01010100000111 counter-cyclically 1 -01010100000111 preprogrammed 1 -01010100000111 nonattention 1 -01010100000111 oh-so-crucial 1 -01010100000111 Allrez 1 -01010100000111 privvy 1 -01010100000111 abjectly 1 -01010100000111 raring 2 -01010100000111 65-35 2 -01010100000111 frontloaded 2 -01010100000111 buttermilk 2 -01010100000111 qual 2 -01010100000111 throwbacks 3 -01010100000111 incitement 3 -01010100000111 Belongs 4 -01010100000111 irrelevent 4 -01010100000111 kowtowing 5 -01010100000111 unequipped 5 -01010100000111 gravitating 7 -01010100000111 unafraid 9 -01010100000111 readmitted 9 -01010100000111 predisposed 11 -01010100000111 inimical 12 -01010100000111 hesitating 15 -01010100000111 disinclined 15 -01010100000111 answerable 17 -01010100000111 impervious 20 -01010100000111 well-equipped 20 -01010100000111 subscribing 22 -01010100000111 beholden 26 -01010100000111 itching 30 -01010100000111 wedded 34 -01010100000111 averse 36 -01010100000111 adhering 46 -01010100000111 clinging 51 -01010100000111 privy 51 -01010100000111 conducive 52 -01010100000111 intending 55 -01010100000111 oblivious 56 -01010100000111 objecting 57 -01010100000111 addicted 60 -01010100000111 tantamount 82 -01010100000111 resorting 87 -01010100000111 loath 95 -01010100000111 preferable 110 -01010100000111 wishing 112 -01010100000111 akin 124 -01010100000111 hesitant 140 -01010100000111 prone 169 -01010100000111 obligated 201 -01010100000111 reacting 231 -01010100000111 glad 256 -01010100000111 accustomed 268 -01010100000111 scrambling 316 -01010100000111 inclined 412 -01010100000111 unwilling 414 -01010100000111 anxious 425 -01010100000111 responding 589 -01010100000111 attempting 835 -01010100000111 entitled 938 -01010100000111 reluctant 1145 -01010100000111 eager 1206 -01010100000111 unable 1336 -01010100000111 supposed 1562 -01010100000111 trying 8229 -01010100000111 willing 3502 -0101010000100 304-100 1 -0101010000100 Birthrights 1 -0101010000100 101.682 1 -0101010000100 check-offs 1 -0101010000100 99.108 1 -0101010000100 Destroyers 1 -0101010000100 bivouacked 1 -0101010000100 10,150,000 1 -0101010000100 362,959 1 -0101010000100 114,400,000 1 -0101010000100 price-comparing 1 -0101010000100 relevence 1 -0101010000100 self-select 1 -0101010000100 asset-building 1 -0101010000100 agri-operations 1 -0101010000100 docketed 1 -0101010000100 well-inventoried 1 -0101010000100 Canticle 1 -0101010000100 50.32 1 -0101010000100 re-launched 1 -0101010000100 BEES 1 -0101010000100 99.173 1 -0101010000100 Masontown 1 -0101010000100 Cocktails 1 -0101010000100 11-related 1 -0101010000100 bumming 1 -0101010000100 99.325 1 -0101010000100 42-1 1 -0101010000100 79-11 1 -0101010000100 106.78 1 -0101010000100 neccesary 1 -0101010000100 big-account 1 -0101010000100 reknowned 1 -0101010000100 French-led 1 -0101010000100 schedueld 1 -0101010000100 caddies 1 -0101010000100 99.224 1 -0101010000100 fishermen-shareholders 1 -0101010000100 207-178 1 -0101010000100 unretrievable 1 -0101010000100 98.415 1 -0101010000100 99.368 1 -0101010000100 Romances 1 -0101010000100 ghostwritten 1 -0101010000100 273-127 1 -0101010000100 grapsing 1 -0101010000100 mine-strewn 1 -0101010000100 Shepodies 1 -0101010000100 99.617 1 -0101010000100 razzing 1 -0101010000100 100.591 1 -0101010000100 polystrene 1 -0101010000100 outperformance 1 -0101010000100 gang-busters 1 -0101010000100 all-searching 1 -0101010000100 Unavailable 1 -0101010000100 99.013 1 -0101010000100 dairying 1 -0101010000100 code-language 1 -0101010000100 welltailored 1 -0101010000100 unpropitious 1 -0101010000100 gimping 1 -0101010000100 Nachus 1 -0101010000100 warehouse-showroom 1 -0101010000100 18-14 1 -0101010000100 consumer-satisfaction 1 -0101010000100 ever-alert 1 -0101010000100 49.23 1 -0101010000100 83.56 1 -0101010000100 Wearever-ProctorSilex 1 -0101010000100 368-to-29 1 -0101010000100 246-155 1 -0101010000100 rock-steady 1 -0101010000100 world-beaters 1 -0101010000100 celebs 1 -0101010000100 Cheeseheads 1 -0101010000100 heliports 1 -0101010000100 3,116 1 -0101010000100 Corlopam 1 -0101010000100 hungers 1 -0101010000100 230-170 1 -0101010000100 BOON 1 -0101010000100 chest-thumping 1 -0101010000100 leg-shaking 1 -0101010000100 full-deductibility 1 -0101010000100 even-steven 2 -0101010000100 clowned 2 -0101010000100 25-9 2 -0101010000100 Electrosila 2 -0101010000100 53-43 2 -0101010000100 Fanfare 2 -0101010000100 thirsting 2 -0101010000100 re-recorded 2 -0101010000100 hogtied 2 -0101010000100 33-3 2 -0101010000100 pined 2 -0101010000100 overbudgeted 2 -0101010000100 named. 2 -0101010000100 Gluttons 2 -0101010000100 sodding 2 -0101010000100 Clapping 2 -0101010000100 responsibile 3 -0101010000100 well-compensated 3 -0101010000100 note-takers 3 -0101010000100 overcompensating 3 -0101010000100 reponsible 3 -0101010000100 disfranchised 3 -0101010000100 adusted 3 -0101010000100 rebalanced 4 -0101010000100 co-agents 4 -0101010000100 thirsts 4 -0101010000100 hungering 5 -0101010000100 abstinent 5 -0101010000100 tit 5 -0101010000100 reapplying 6 -0101010000100 shoehorned 6 -0101010000100 pining 7 -0101010000100 foursquare 8 -0101010000100 uncalled 8 -0101010000100 scrounging 10 -0101010000100 puttable 14 -0101010000100 incommunicado 14 -0101010000100 unaccounted 17 -0101010000100 grist 22 -0101010000100 agitating 22 -0101010000100 zoned 23 -0101010000100 tailor-made 24 -0101010000100 rooting 30 -0101010000100 girding 30 -0101010000100 ill-prepared 33 -0101010000100 gunning 33 -0101010000100 apologizing 36 -0101010000100 angling 38 -0101010000100 delving 39 -0101010000100 starved 44 -0101010000100 nonrefundable 51 -0101010000100 groping 52 -0101010000100 yearning 57 -0101010000100 ineligible 59 -0101010000100 opting 62 -0101010000100 scurrying 63 -0101010000100 jockeying 73 -0101010000100 braced 79 -0101010000100 staring 89 -0101010000100 clamoring 106 -0101010000100 vying 107 -0101010000100 non-callable 132 -0101010000100 bracing 149 -0101010000100 caring 172 -0101010000100 accountable 203 -0101010000100 aiming 204 -0101010000100 noncallable 210 -0101010000100 ripe 220 -0101010000100 unavailable 322 -0101010000100 searching 402 -0101010000100 liable 496 -0101010000100 waiting 1864 -0101010000100 responsible 2428 -0101010000100 adjusted 3109 -0101010000100 looking 5063 -0101010000101 dull-witted 1 -0101010000101 dutiable 1 -0101010000101 good-selling 1 -0101010000101 deficit-prone 1 -0101010000101 surplus-prone 1 -0101010000101 mistakes. 1 -0101010000101 sycophantive 1 -0101010000101 well-flagged 1 -0101010000101 half-metric 1 -0101010000101 anti-papal 1 -0101010000101 rodeoing 1 -0101010000101 riffed 1 -0101010000101 skin-deep 1 -0101010000101 six-feet 1 -0101010000101 dose-rate 1 -0101010000101 classified. 1 -0101010000101 reframed 1 -0101010000101 passenger-oriented 1 -0101010000101 platinum-crazy 1 -0101010000101 Mabuse 1 -0101010000101 agreedupon 1 -0101010000101 acclaiming 1 -0101010000101 gasoholics 1 -0101010000101 acccepted 1 -0101010000101 peccadillo 1 -0101010000101 creative. 1 -0101010000101 reinfused 1 -0101010000101 soley 1 -0101010000101 purred 1 -0101010000101 unsuppressed 1 -0101010000101 pump-primers 1 -0101010000101 re-announced 1 -0101010000101 inititiated 1 -0101010000101 jockographies 1 -0101010000101 presented. 1 -0101010000101 downside-oriented 1 -0101010000101 pre-registered 1 -0101010000101 true-Blue 1 -0101010000101 waterholes 1 -0101010000101 superpatriotic 1 -0101010000101 animalized 1 -0101010000101 half-Hispanic 1 -0101010000101 small. 1 -0101010000101 candy-coated 1 -0101010000101 America-dependent 1 -0101010000101 recompensed 1 -0101010000101 shovelling 1 -0101010000101 19041.24 1 -0101010000101 overemotional 1 -0101010000101 isssued 1 -0101010000101 underchoreographed 1 -0101010000101 NEVA 1 -0101010000101 Ostrowsized 1 -0101010000101 place-kicker 1 -0101010000101 demythologized 1 -0101010000101 ept 1 -0101010000101 knuckling 1 -0101010000101 slickered 1 -0101010000101 narcotized 1 -0101010000101 andhealth-care 1 -0101010000101 multi-technological 1 -0101010000101 higher-ticket 1 -0101010000101 U.K.-oriented 1 -0101010000101 loitered 1 -0101010000101 triazolam 1 -0101010000101 winless 1 -0101010000101 junkless 1 -0101010000101 interdealing 1 -0101010000101 Trilene 1 -0101010000101 PLAM-scam 1 -0101010000101 paper-waste 1 -0101010000101 non-issues 1 -0101010000101 credentialized 1 -0101010000101 w/respect 1 -0101010000101 organized-U.S. 1 -0101010000101 overmalled 1 -0101010000101 shoplifted 1 -0101010000101 ahead. 1 -0101010000101 quasipsychiatrists 1 -0101010000101 evaluted 1 -0101010000101 condo-ized 1 -0101010000101 opium-free 1 -0101010000101 ransom-paying 1 -0101010000101 black. 2 -0101010000101 altruists 2 -0101010000101 imams 2 -0101010000101 Indian-owned 2 -0101010000101 shorthanded 2 -0101010000101 backless 2 -0101010000101 fumigated 2 -0101010000101 smelted 2 -0101010000101 germinating 2 -0101010000101 crumpling 2 -0101010000101 class-consciousness 2 -0101010000101 certificated 2 -0101010000101 on-hand 2 -0101010000101 reinflation 2 -0101010000101 time-saving 2 -0101010000101 CWEP 2 -0101010000101 re-exported 2 -0101010000101 reoiled 2 -0101010000101 determinable 2 -0101010000101 prosperity-proof 2 -0101010000101 oxymorons 2 -0101010000101 show-stoppers 2 -0101010000101 watertight 2 -0101010000101 air-dropped 2 -0101010000101 earlobes 2 -0101010000101 409,951,390 3 -0101010000101 D-day 3 -0101010000101 767,892 3 -0101010000101 well-handled 3 -0101010000101 strip-searched 3 -0101010000101 unhorsed 3 -0101010000101 transferrable 3 -0101010000101 available. 3 -0101010000101 remastered 3 -0101010000101 market-ready 3 -0101010000101 Italian-Americans 3 -0101010000101 Izmir 3 -0101010000101 kaput 3 -0101010000101 MIRVed 3 -0101010000101 domiciled 4 -0101010000101 non-redeemable 4 -0101010000101 pre-packaged 4 -0101010000101 court-martialed 5 -0101010000101 flogged 5 -0101010000101 nuisances 5 -0101010000101 part-owners 5 -0101010000101 serialized 6 -0101010000101 reevaluated 6 -0101010000101 actionable 6 -0101010000101 dunned 6 -0101010000101 wallowed 6 -0101010000101 expensed 6 -0101010000101 de-iced 6 -0101010000101 backfiring 7 -0101010000101 sellouts 7 -0101010000101 habit-forming 7 -0101010000101 overcooked 7 -0101010000101 safeguarded 8 -0101010000101 budging 9 -0101010000101 auditioned 9 -0101010000101 recyclable 10 -0101010000101 quarantined 10 -0101010000101 redistributed 11 -0101010000101 retrained 12 -0101010000101 admissible 12 -0101010000101 moored 12 -0101010000101 fleeced 13 -0101010000101 incapacitated 13 -0101010000101 microwaved 14 -0101010000101 obtainable 14 -0101010000101 overexposed 19 -0101010000101 configured 19 -0101010000101 irradiated 20 -0101010000101 repatriated 21 -0101010000101 reachable 25 -0101010000101 incarcerated 28 -0101010000101 rationed 28 -0101010000101 embargoed 30 -0101010000101 tradable 36 -0101010000101 vaccinated 37 -0101010000101 abating 44 -0101010000101 transferable 47 -0101010000101 callable 51 -0101010000101 off-limits 56 -0101010000101 fattened 64 -0101010000101 subscribed 73 -0101010000101 commonplace 114 -0101010000101 harvested 160 -0101010000101 stored 283 -0101010000101 exercisable 288 -0101010000101 processed 294 -0101010000101 vacant 501 -0101010000101 deductible 501 -0101010000101 manufactured 595 -0101010000101 eligible 807 -0101010000101 available 7189 -0101010000101 tendered 1518 -0101010000110 reword 1 -0101010000110 overbullish 1 -0101010000110 162-days 1 -0101010000110 singled-out 1 -0101010000110 tailormade 1 -0101010000110 blamed-air 1 -0101010000110 well-cared 1 -0101010000110 backwards-looking 1 -0101010000110 soldered 1 -0101010000110 reducible 2 -0101010000110 pre-subscribed 2 -0101010000110 99.892 2 -0101010000110 99.622 2 -0101010000110 sidehill 2 -0101010000110 ill-fitted 2 -0101010000110 well-situated 5 -0101010000110 analagous 5 -0101010000110 unready 5 -0101010000110 hankering 5 -0101010000110 sops 6 -0101010000110 beckoning 6 -0101010000110 hardpressed 7 -0101010000110 ill-suited 12 -0101010000110 inured 13 -0101010000110 unsuited 14 -0101010000110 tethered 18 -0101010000110 well-suited 19 -0101010000110 primed 23 -0101010000110 traceable 26 -0101010000110 keyed 43 -0101010000110 unprepared 55 -0101010000110 well-positioned 66 -0101010000110 striving 125 -0101010000110 tailored 149 -0101010000110 destined 164 -0101010000110 suited 171 -0101010000110 geared 219 -0101010000110 attributable 289 -0101010000110 confined 323 -0101010000110 poised 340 -0101010000110 slated 625 -0101010000110 bound 693 -0101010000110 rumored 720 -0101010000110 hoping 1159 -0101010000110 tied 1242 -0101010000110 linked 1322 -0101010000110 ready 2156 -0101010000110 intended 2582 -0101010000110 prepared 2878 -0101010000110 designed 4605 -0101010000110 scheduled 6131 -01010100001110 deathtraps 1 -01010100001110 softies 1 -01010100001110 valentines 2 -01010100001110 insensate 2 -01010100001110 inadvisable 2 -01010100001110 necesssary 3 -01010100001110 rezoned 3 -01010100001110 reloaded 3 -01010100001110 desensitized 3 -01010100001110 metabolized 3 -01010100001110 unperceived 3 -01010100001110 transmogrified 3 -01010100001110 best-suited 4 -01010100001110 re-regulated 4 -01010100001110 neccessary 4 -01010100001110 suprised 5 -01010100001110 degenerates 5 -01010100001110 germane 6 -01010100001110 transposed 8 -01010100001110 destabilized 8 -01010100001110 shamed 8 -01010100001110 appended 8 -01010100001110 harnessed 9 -01010100001110 brainwashed 9 -01010100001110 deluded 9 -01010100001110 redone 11 -01010100001110 counter-productive 11 -01010100001110 conscripted 13 -01010100001110 affixed 15 -01010100001110 cowed 16 -01010100001110 fine-tuned 16 -01010100001110 inapplicable 17 -01010100001110 renominated 18 -01010100001110 unsympathetic 20 -01010100001110 riveted 21 -01010100001110 ill-equipped 22 -01010100001110 loathe 22 -01010100001110 chained 22 -01010100001110 likelier 22 -01010100001110 inaccessible 23 -01010100001110 razed 23 -01010100001110 attested 24 -01010100001110 redeployed 24 -01010100001110 subsiding 25 -01010100001110 thankful 32 -01010100001110 awakened 40 -01010100001110 extradited 52 -01010100001110 afoot 54 -01010100001110 overreacting 54 -01010100001110 coerced 63 -01010100001110 transplanted 65 -01010100001110 astonished 70 -01010100001110 empowered 79 -01010100001110 accorded 86 -01010100001110 allotted 89 -01010100001110 timed 102 -01010100001110 programmed 110 -01010100001110 hard-pressed 113 -01010100001110 presumed 136 -01010100001110 adapted 146 -01010100001110 constrained 153 -01010100001110 trusted 154 -01010100001110 forbidden 167 -01010100001110 bothered 169 -01010100001110 warranted 179 -01010100001110 pegged 182 -01010100001110 doomed 187 -01010100001110 allocated 289 -01010100001110 shocked 412 -01010100001110 attached 542 -01010100001110 devoted 576 -01010100001110 exposed 708 -01010100001110 permitted 912 -01010100001110 converted 1046 -01010100001110 meant 1511 -01010100001110 committed 1642 -01010100001110 surprised 1837 -01010100001110 determined 2188 -01010100001110 necessary 3197 -01010100001110 allowed 3985 -01010100001110 required 4671 -01010100001110 needed 4735 -01010100001111 tough-fisted 1 -01010100001111 expropiated 1 -01010100001111 dopamine-producing 1 -01010100001111 screaching 1 -01010100001111 stimulators 1 -01010100001111 tolled 1 -01010100001111 25,000-30,000 1 -01010100001111 supersensitized 1 -01010100001111 palavered 1 -01010100001111 retroruns 1 -01010100001111 tidied 1 -01010100001111 low-beam 1 -01010100001111 critiqued 2 -01010100001111 merchandised 2 -01010100001111 mutilates 2 -01010100001111 upgradable 2 -01010100001111 handier 2 -01010100001111 slurped 2 -01010100001111 benched 3 -01010100001111 crewed 3 -01010100001111 MX-6s 3 -01010100001111 besmirched 4 -01010100001111 pre-addressed 4 -01010100001111 reoriented 4 -01010100001111 swaddled 5 -01010100001111 proffered 22 -01010100001111 consigned 26 -01010100001111 peddled 27 -01010100001111 apportioned 27 -01010100001111 glued 34 -01010100001111 groomed 53 -01010100001111 anchored 60 -01010100001111 tuned 118 -01010100001111 judged 246 -01010100001111 marketed 521 -01010100001111 distributed 984 -01010100001111 used 15489 -01010100001111 applied 1286 -010101000100 3,212 1 -010101000100 herniating 1 -010101000100 Decides 1 -010101000100 1445 1 -010101000100 immigrates 1 -010101000100 chivalrous 1 -010101000100 misportrayed 1 -010101000100 5-inches 1 -010101000100 long-exposed 1 -010101000100 -or 1 -010101000100 Amounting 1 -010101000100 1,339 1 -010101000100 Chained 1 -010101000100 1,239 1 -010101000100 1,412 1 -010101000100 elegiacally 1 -010101000100 2,471 1 -010101000100 3/8- 1 -010101000100 fund-hoping 1 -010101000100 Norkay 1 -010101000100 genus-mates 1 -010101000100 Resorting 1 -010101000100 1,374 1 -010101000100 1,392 1 -010101000100 acccording 1 -010101000100 Tributes 1 -010101000100 Disconcerted 1 -010101000100 unbeholden 1 -010101000100 ostensibily 1 -010101000100 .420 1 -010101000100 1,4543 1 -010101000100 Xayt 1 -010101000100 7,573 1 -010101000100 1592 1 -010101000100 1,057 1 -010101000100 49,037 1 -010101000100 Pariahs 1 -010101000100 Wuth 1 -010101000100 ambassador-designee 1 -010101000100 endeavour 2 -010101000100 acording 2 -010101000100 truckling 2 -010101000100 redounds 3 -010101000100 Veniamin 3 -010101000100 refering 6 -010101000100 unbeknownst 7 -010101000100 unbeknown 8 -010101000100 alluding 53 -010101000100 vowing 74 -010101000100 preferring 97 -010101000100 amounting 173 -010101000100 thanks 536 -010101000100 according 13599 -010101000100 referring 774 -0101010001010 illpositioned 1 -0101010001010 Marya 1 -0101010001010 Ofelia 1 -0101010001010 108,000,000 1 -0101010001010 99-year-old 1 -0101010001010 relucant 1 -0101010001010 110,485,479 1 -0101010001010 less-than-absolute 1 -0101010001010 Wendie 1 -0101010001010 Congress-by-opinion-poll 1 -0101010001010 Min-Yau 1 -0101010001010 59-cent 1 -0101010001010 4,283,306 1 -0101010001010 Reveres 1 -0101010001010 Octaviano 1 -0101010001010 excitingly 1 -0101010001010 quarrelsomely 1 -0101010001010 self-insuring 1 -0101010001010 Jerrydoe 1 -0101010001010 Nicholaas 1 -0101010001010 unlicenseable 1 -0101010001010 small-store 1 -0101010001010 Elene 1 -0101010001010 215-200 1 -0101010001010 bullmarket 1 -0101010001010 Chava 1 -0101010001010 scythed 1 -0101010001010 Southern-grown 1 -0101010001010 test-flying 1 -0101010001010 boosterish 1 -0101010001010 disapppointing 1 -0101010001010 unclamped 1 -0101010001010 yoked 1 -0101010001010 42-degree 1 -0101010001010 Jacques-Louis 1 -0101010001010 misspending 1 -0101010001010 Rong 1 -0101010001010 more-typical 1 -0101010001010 Shawon 1 -0101010001010 art-theater 1 -0101010001010 sandbagging 1 -0101010001010 ex-Detroiters 1 -0101010001010 Shogo 1 -0101010001010 4,713 1 -0101010001010 artists-in-residence 1 -0101010001010 106-pounder 1 -0101010001010 harrowed 1 -0101010001010 Diedra 1 -0101010001010 professional-grade 1 -0101010001010 director-class 1 -0101010001010 51,207 1 -0101010001010 ex-Eagle 1 -0101010001010 widely-thought 1 -0101010001010 sex-abuse 1 -0101010001010 2,789 1 -0101010001010 WestDeutsche 1 -0101010001010 37-to-1 1 -0101010001010 non-banker 1 -0101010001010 Nawser 1 -0101010001010 insufficent 2 -0101010001010 WRU 2 -0101010001010 postulating 2 -0101010001010 recertified 2 -0101010001010 tasked 2 -0101010001010 Meets 2 -0101010001010 co-piloting 3 -0101010001010 kayoed 3 -0101010001010 reappointed 47 -0101010001010 reelected 64 -0101010001010 re-elected 119 -0101010001010 sentenced 684 -0101010001010 appointed 1717 -0101010001010 named 10201 -0101010001010 elected 2969 -01010100010110 smooooooother 1 -01010100010110 ratheir 1 -01010100010110 sodomites 1 -01010100010110 citizen-king 1 -01010100010110 paper-shuffling-faster 1 -01010100010110 Gloomier 1 -01010100010110 Mame 1 -01010100010110 31-more 1 -01010100010110 percentage-wise 1 -01010100010110 rotaters 1 -01010100010110 bond-picker 1 -01010100010110 crayfishing 1 -01010100010110 Disorganized 1 -01010100010110 lovelier 1 -01010100010110 subventions 1 -01010100010110 handsomer 1 -01010100010110 witre 1 -01010100010110 Cinematheque 1 -01010100010110 pile-ons 1 -01010100010110 footings 1 -01010100010110 1981less 1 -01010100010110 tomorrows 1 -01010100010110 picure 1 -01010100010110 accident-longer 1 -01010100010110 grainier 1 -01010100010110 neater 1 -01010100010110 post-Hugo 1 -01010100010110 billionmore 1 -01010100010110 REALLY 2 -01010100010110 ozone-destroyer 2 -01010100010110 righter 3 -01010100010110 skinnier 3 -01010100010110 genteelly 4 -01010100010110 rather 7492 -01010100010110 mightier 5 -01010100010111 star-turned-mayor 1 -01010100010111 iron-glove 1 -01010100010111 Ati 1 -01010100010111 Maximiano 1 -01010100010111 noon-2 1 -01010100010111 8:30-9:30 1 -01010100010111 Merri 1 -01010100010111 10-10:50 1 -01010100010111 9-10:53 1 -01010100010111 2:30-6 1 -01010100010111 Mamma 1 -01010100010111 director/choreographer 1 -01010100010111 too-pale 1 -01010100010111 134,975 1 -01010100010111 fast-flowing 1 -01010100010111 maladept 1 -01010100010111 federal-Judge 1 -01010100010111 Binkow 1 -01010100010111 8.279 1 -01010100010111 Lubriderm 1 -01010100010111 1:30-2:30 1 -01010100010111 Tyrus 1 -01010100010111 40.73 1 -01010100010111 conventional-adjustable 1 -01010100010111 conventional-fixed 1 -01010100010111 inn-owner 1 -01010100010111 47.013 1 -01010100010111 et. 1 -01010100010111 1:56-8 1 -01010100010111 producer-writer-director 1 -01010100010111 more-sustainable 1 -01010100010111 director-designer 1 -01010100010111 P.D. 1 -01010100010111 Disregards 1 -01010100010111 1:30-3:30 1 -01010100010111 Ecclesiae 1 -01010100010111 Ventura/Santa 1 -01010100010111 5:45-6 1 -01010100010111 Zehli 1 -01010100010111 butane-powered 1 -01010100010111 8:05-10:20 1 -01010100010111 onevote 1 -01010100010111 museum-like 1 -01010100010111 3:30-8 1 -01010100010111 2:30-7 1 -01010100010111 12th-seeded 1 -01010100010111 bacteria-free 1 -01010100010111 unphilosophical 1 -01010100010111 founder-director 1 -01010100010111 4:45-8 1 -01010100010111 1:30-5 1 -01010100010111 1:30-4:30 1 -01010100010111 7:30-9 1 -01010100010111 colpoon 1 -01010100010111 10:05-11 1 -01010100010111 9:30-10:30 1 -01010100010111 8-9:20 1 -01010100010111 succeeeds 1 -01010100010111 ADA-producing 1 -01010100010111 dim-bulb 1 -01010100010111 8-10:30 1 -01010100010111 wallows 1 -01010100010111 Pani 1 -01010100010111 Nezhari 1 -01010100010111 2-4:30 1 -01010100010111 171.78 1 -01010100010111 1.967 1 -01010100010111 264.38 1 -01010100010111 2.137 1 -01010100010111 121.04 1 -01010100010111 282.33 1 -01010100010111 74.72 1 -01010100010111 1.854 1 -01010100010111 113.05 1 -01010100010111 111.24 1 -01010100010111 2.448 1 -01010100010111 2.443 1 -01010100010111 284.23 1 -01010100010111 2.120 1 -01010100010111 2:30-3:30 1 -01010100010111 87.88 1 -01010100010111 neo-Mahlerian 1 -01010100010111 5663 1 -01010100010111 19-year-incumbent 1 -01010100010111 stutter-steps 1 -01010100010111 Beta2 1 -01010100010111 two-commercial 1 -01010100010111 8:05-10:05 1 -01010100010111 8-9:45 1 -01010100010111 eight-pound 1 -01010100010111 CG&E 1 -01010100010111 20.86 1 -01010100010111 Hojjatolislam 1 -01010100010111 580.32 1 -01010100010111 1,051.52 1 -01010100010111 long-legged 1 -01010100010111 caiman 1 -01010100010111 PFC 1 -01010100010111 Montclairian 1 -01010100010111 Ambassador-at-Large 1 -01010100010111 citizeness 1 -01010100010111 10-11:15 1 -01010100010111 5-6:30 1 -01010100010111 Secutities 1 -01010100010111 8:05-9:05 1 -01010100010111 super-lawyer 1 -01010100010111 Ellisse 1 -01010100010111 Elektronische 1 -01010100010111 Upholds 1 -01010100010111 Estrellita 1 -01010100010111 8-9:50 1 -01010100010111 13th-seeded 1 -01010100010111 Orejuela 1 -01010100010111 diammonium 1 -01010100010111 53.511 1 -01010100010111 zim 1 -01010100010111 Midbar 1 -01010100010111 36.55 1 -01010100010111 thin-lipped 1 -01010100010111 3-4:30 1 -01010100010111 Aye 1 -01010100010111 10:30-11:30 1 -01010100010111 first-named 1 -01010100010111 7.064 1 -01010100010111 Zulfiqar 1 -01010100010111 businessman-racer 1 -01010100010111 1:30-3 1 -01010100010111 2.098 1 -01010100010111 Jackson-appointee 1 -01010100010111 publisher-developer 1 -01010100010111 4:30-6:30 1 -01010100010111 9.504 1 -01010100010111 market-to-book 1 -01010100010111 SpainJose 1 -01010100010111 13.247 1 -01010100010111 Muppeteer 1 -01010100010111 first-baseman 1 -01010100010111 1:01 1 -01010100010111 Azlan 2 -01010100010111 noon-3 2 -01010100010111 Charles-Edouard 2 -01010100010111 9-10:20 2 -01010100010111 8:30-10 2 -01010100010111 noon-3:30 2 -01010100010111 3:30-7 2 -01010100010111 2:30-4 2 -01010100010111 4.025 2 -01010100010111 8:05-11:05 2 -01010100010111 8:30-11 2 -01010100010111 Mahmad 2 -01010100010111 Navarrete 2 -01010100010111 10:05-11:05 2 -01010100010111 12:38 2 -01010100010111 HARRY 2 -01010100010111 2-3:30 2 -01010100010111 295.17 2 -01010100010111 8:00 2 -01010100010111 RheothRx 2 -01010100010111 Vienna-born 2 -01010100010111 California-born 2 -01010100010111 Muhammed 2 -01010100010111 stock-only 2 -01010100010111 raspy-voiced 2 -01010100010111 oafish 2 -01010100010111 225-pound 2 -01010100010111 Physik 2 -01010100010111 Xiao 2 -01010100010111 Arnim 2 -01010100010111 poulet 2 -01010100010111 Alok 3 -01010100010111 2:30-4:30 3 -01010100010111 unthreatening 3 -01010100010111 7-7:30 3 -01010100010111 exec 3 -01010100010111 3-6 3 -01010100010111 National-Oilwell 3 -01010100010111 midnight-1:30 3 -01010100010111 202-restaurant 3 -01010100010111 3:30-6 3 -01010100010111 2-6 3 -01010100010111 Jigme 3 -01010100010111 9-9:30 3 -01010100010111 7:30-8 3 -01010100010111 reptilian 3 -01010100010111 6-6:30 3 -01010100010111 Marrel 4 -01010100010111 9:30-10 4 -01010100010111 5-foot-6 4 -01010100010111 suceeds 4 -01010100010111 co-starring 4 -01010100010111 3-5 4 -01010100010111 midnight-1 4 -01010100010111 8-9:30 5 -01010100010111 Jr.-led 5 -01010100010111 1-3 5 -01010100010111 6:30-7 5 -01010100010111 2-4 5 -01010100010111 demoting 5 -01010100010111 10:30-11 6 -01010100010111 9:30-11 6 -01010100010111 8-8:30 6 -01010100010111 4:30-6 7 -01010100010111 10-10:30 7 -01010100010111 10-11:30 7 -01010100010111 7-8 8 -01010100010111 Vetere 8 -01010100010111 8:30-9 10 -01010100010111 9-11:30 10 -01010100010111 4-6 12 -01010100010111 8-11 16 -01010100010111 Wrote 26 -01010100010111 8-10 39 -01010100010111 9-10:30 41 -01010100010111 8-9 85 -01010100010111 10-11 106 -01010100010111 one-vote 111 -01010100010111 et 114 -01010100010111 9-10 114 -01010100010111 9-11 162 -01010100010111 starring 184 -01010100010111 6/2 193 -01010100010111 succeeding 1035 -01010100010111 formerly 2740 -01010100010111 succeeds 2451 -0101010001100 well-stacked 1 -0101010001100 emotes 1 -0101010001100 timpanists 1 -0101010001100 I-80 1 -0101010001100 woodsmoke 1 -0101010001100 WXEX-TV 1 -0101010001100 capitalizating 1 -0101010001100 basses 1 -0101010001100 calcluated 1 -0101010001100 price-setters 1 -0101010001100 Divergences 1 -0101010001100 vivaciously 1 -0101010001100 best-dressed 1 -0101010001100 noshing 1 -0101010001100 out-manuevered 1 -0101010001100 Reposing 1 -0101010001100 wispy-bearded 1 -0101010001100 Fixation 1 -0101010001100 counterpunching 1 -0101010001100 Laertes 1 -0101010001100 BankWest 1 -0101010001100 sub-.500 1 -0101010001100 Big-Steel 1 -0101010001100 Namco 1 -0101010001100 0.3-point 1 -0101010001100 flowerbeds 1 -0101010001100 smack-dab 1 -0101010001100 Erring 1 -0101010001100 remelted 1 -0101010001100 Capitalize 1 -0101010001100 hydroplaning 1 -0101010001100 hand-writing 1 -0101010001100 WBKO 1 -0101010001100 H.Q. 1 -0101010001100 barn-burners 1 -0101010001100 Placated 1 -0101010001100 silted 1 -0101010001100 ensconsed 1 -0101010001100 buiding 1 -0101010001100 requiescat 1 -0101010001100 25,311 1 -0101010001100 then-commander 1 -0101010001100 dabbed 1 -0101010001100 Malmstrom 1 -0101010001100 homeported 1 -0101010001100 DRL 1 -0101010001100 headquarterd 1 -0101010001100 AOSWI 1 -0101010001100 ductwork 1 -0101010001100 alights 1 -0101010001100 convenienced 1 -0101010001100 tightlipped 1 -0101010001100 excessively-overshooting 1 -0101010001100 pressure-proof 1 -0101010001100 Salvationists 1 -0101010001100 PNW 1 -0101010001100 glommed 1 -0101010001100 fixating 1 -0101010001100 power-brokering 1 -0101010001100 well-based 1 -0101010001100 evildoers 1 -0101010001100 WXYZ 1 -0101010001100 Wordsmiths 1 -0101010001100 Kyungje 1 -0101010001100 poseurs 1 -0101010001100 TKOs 1 -0101010001100 goo-goo 1 -0101010001100 Fumbles 1 -0101010001100 Unice 1 -0101010001100 Cybelia 1 -0101010001100 Economize 1 -0101010001100 Gilden 1 -0101010001100 soft-shoeing 1 -0101010001100 impecuniosity 1 -0101010001100 WBMW-FM 1 -0101010001100 non-cytopathic 1 -0101010001100 KBIM 1 -0101010001100 fence-straddling 1 -0101010001100 sub-editors 1 -0101010001100 WABC 1 -0101010001100 grandpas 1 -0101010001100 growingup 1 -0101010001100 Egged 1 -0101010001100 Nimmer 1 -0101010001100 rabbiting 1 -0101010001100 bugsnug 1 -0101010001100 blamable 1 -0101010001100 WKQX 1 -0101010001100 Pile 1 -0101010001100 WEBE-FM 1 -0101010001100 WMMR-FM 1 -0101010001100 KRLD-AM 1 -0101010001100 Seabats 1 -0101010001100 WJAR-TV 1 -0101010001100 WRC 1 -0101010001100 WNYC-TV 1 -0101010001100 OSW 1 -0101010001100 RICO-able 1 -0101010001100 buying-off 1 -0101010001100 eighth-highest 1 -0101010001100 Clozaril 1 -0101010001100 3,378 1 -0101010001100 market-supportive 1 -0101010001100 waaay 1 -0101010001100 economizes 1 -0101010001100 WJZ-TV 1 -0101010001100 hooped 1 -0101010001100 prevarication 1 -0101010001100 luxuriating 1 -0101010001100 due-dates 1 -0101010001100 KCTV 2 -0101010001100 overdependent 2 -0101010001100 26-1 2 -0101010001100 ratting 2 -0101010001100 garaged 2 -0101010001100 plops 2 -0101010001100 piggybacks 2 -0101010001100 WGBO-TV 2 -0101010001100 Luncheon 2 -0101010001100 StageWest 2 -0101010001100 impinging 2 -0101010001100 WTLV 2 -0101010001100 blathering 2 -0101010001100 seventh-graders 2 -0101010001100 KSPR 2 -0101010001100 tatooed 2 -0101010001100 verged 3 -0101010001100 erring 3 -0101010001100 excelling 3 -0101010001100 alighting 3 -0101010001100 ruminating 3 -0101010001100 mirabile 3 -0101010001100 reneges 3 -0101010001100 lounged 3 -0101010001100 hinging 3 -0101010001100 preying 4 -0101010001100 crouching 5 -0101010001100 impaled 5 -0101010001100 dibs 5 -0101010001100 Fiddler 7 -0101010001100 pouncing 7 -0101010001100 preyed 8 -0101010001100 encroached 8 -0101010001100 encroaches 9 -0101010001100 egged 10 -0101010001100 expounding 12 -0101010001100 ushering 14 -0101010001100 verging 15 -0101010001100 verges 18 -0101010001100 superimposed 19 -0101010001100 premised 19 -0101010001100 fixated 21 -0101010001100 frowned 22 -0101010001100 nestled 23 -0101010001100 centering 31 -0101010001100 hinged 37 -0101010001100 embarking 39 -0101010001100 predicated 46 -0101010001100 perched 63 -0101010001100 patterned 65 -0101010001100 headquartered 71 -0101010001100 capitalizing 71 -0101010001100 depended 102 -0101010001100 hinges 115 -0101010001100 modeled 136 -0101010001100 centered 291 -0101010001100 concentrating 333 -0101010001100 focuses 333 -0101010001100 relying 361 -0101010001100 conditioned 404 -0101010001100 contingent 683 -0101010001100 located 770 -0101010001100 focusing 900 -0101010001100 depends 993 -0101010001100 based 13880 -0101010001100 depending 1067 -0101010001101 colada 1 -0101010001101 lechuzas 1 -0101010001101 WPGH 1 -0101010001101 sub-underwritten 1 -0101010001101 well-summarized 1 -0101010001101 doingbusiness 1 -0101010001101 MODELS 1 -0101010001101 2,626 1 -0101010001101 unclipped 1 -0101010001101 gloried 1 -0101010001101 coproducing 1 -0101010001101 ESP. 1 -0101010001101 sun-blue 1 -0101010001101 Readings 1 -0101010001101 spluttering 1 -0101010001101 failsafe 1 -0101010001101 well-invested 1 -0101010001101 Claimant 1 -0101010001101 lobotomized 1 -0101010001101 Shake-up 1 -0101010001101 upper-classmen 1 -0101010001101 Primatologist 1 -0101010001101 revalidated 1 -0101010001101 moldered 1 -0101010001101 0-5 1 -0101010001101 cocooned 1 -0101010001101 Reinvesting 1 -0101010001101 KARK-TV 1 -0101010001101 semi-stranded 1 -0101010001101 rejected/suppressed 1 -0101010001101 pretested 1 -0101010001101 abuilding 1 -0101010001101 refired 1 -0101010001101 self-front-runnning 1 -0101010001101 thrillingly 1 -0101010001101 guffaw 1 -0101010001101 order-filler 1 -0101010001101 ball-bashing 1 -0101010001101 beltways 1 -0101010001101 0-14 1 -0101010001101 non-programmatic 1 -0101010001101 Pan-Arab 1 -0101010001101 yield-driven 1 -0101010001101 grip-squeezers 1 -0101010001101 strategizing 1 -0101010001101 WAPT 1 -0101010001101 unchanaged 1 -0101010001101 doo-wopping 1 -0101010001101 Topless 1 -0101010001101 Fuel-switching 1 -0101010001101 ill-cast 1 -0101010001101 reclined 1 -0101010001101 plenipotentiary 1 -0101010001101 ADMINISTRATORS 1 -0101010001101 Showroom 1 -0101010001101 incubated 1 -0101010001101 Spurts 1 -0101010001101 consensuses 1 -0101010001101 monologuists 1 -0101010001101 nose-deep 1 -0101010001101 dirty-danced 1 -0101010001101 etherialized 1 -0101010001101 glorying 1 -0101010001101 birthed 1 -0101010001101 ERUPTED 1 -0101010001101 unfetching 1 -0101010001101 Ceprano 1 -0101010001101 resurveyed 1 -0101010001101 elbow-deep 1 -0101010001101 Sewn 1 -0101010001101 Slumber 1 -0101010001101 headquarted 1 -0101010001101 Murmurs 1 -0101010001101 caparisoned 1 -0101010001101 17,000-strong 1 -0101010001101 stormless 1 -0101010001101 underspending 1 -0101010001101 over-sensitive 1 -0101010001101 Hugger-Mugger 1 -0101010001101 re-educated 1 -0101010001101 mega-players 1 -0101010001101 Upsurges 1 -0101010001101 bonked 1 -0101010001101 bottom-picking 1 -0101010001101 Pyramide 1 -0101010001101 COLLAPSED 1 -0101010001101 invulnerable-bases 1 -0101010001101 management-sheltering 1 -0101010001101 Oktyabr 1 -0101010001101 WFMY 1 -0101010001101 clumpy 1 -0101010001101 35-0 1 -0101010001101 motes 1 -0101010001101 Comiso 1 -0101010001101 dog-catcher 1 -0101010001101 850th 1 -0101010001101 rising-especially 1 -0101010001101 panelled 1 -0101010001101 binging 1 -0101010001101 WTXF 1 -0101010001101 braggable 1 -0101010001101 Gored 1 -0101010001101 Bathed 1 -0101010001101 unprotectionist 1 -0101010001101 Antibiotici 1 -0101010001101 de-worse-ification 1 -0101010001101 heat-sealed 1 -0101010001101 freeloads 1 -0101010001101 footsoldiers 1 -0101010001101 patchworked 1 -0101010001101 Muesli 1 -0101010001101 inhere 1 -0101010001101 nugatory 1 -0101010001101 swelter 1 -0101010001101 hereof 1 -0101010001101 TINTING 1 -0101010001101 non-status 1 -0101010001101 headhunted 1 -0101010001101 non-conformists 1 -0101010001101 Bordeauxlike 1 -0101010001101 Nini 1 -0101010001101 Paddler 1 -0101010001101 believeth 1 -0101010001101 Bozyk 1 -0101010001101 FAILURES 1 -0101010001101 reinvolved 1 -0101010001101 Medicare-eligible 1 -0101010001101 re-enrolled 1 -0101010001101 under-invested 1 -0101010001101 glassed 1 -0101010001101 globules 1 -0101010001101 WDBD 1 -0101010001101 right-on 1 -0101010001101 goose-step 1 -0101010001101 value-neutral 1 -0101010001101 Ballo 1 -0101010001101 luxuriates 2 -0101010001101 reargued 2 -0101010001101 over-stored 2 -0101010001101 Ninety-Two 2 -0101010001101 WJIB 2 -0101010001101 walketh 2 -0101010001101 LHXs 2 -0101010001101 DOCKYARD 2 -0101010001101 forevermore 2 -0101010001101 lubricated 2 -0101010001101 spottier 2 -0101010001101 enshrouded 2 -0101010001101 eighty-sixed 2 -0101010001101 luxuriated 2 -0101010001101 disembark 2 -0101010001101 drop-outs 2 -0101010001101 under-investing 2 -0101010001101 sanctified 2 -0101010001101 moonwalking 2 -0101010001101 jingling 2 -0101010001101 SOARS 2 -0101010001101 Herodias 2 -0101010001101 neglectful 2 -0101010001101 abstemious 2 -0101010001101 co-educational 3 -0101010001101 WKRP 3 -0101010001101 interlocked 3 -0101010001101 disinvesting 3 -0101010001101 unfrozen 3 -0101010001101 cradled 3 -0101010001101 subjugated 3 -0101010001101 puckering 3 -0101010001101 complicit 4 -0101010001101 wreathed 4 -0101010001101 encamped 4 -0101010001101 homed 5 -0101010001101 compensations 5 -0101010001101 meddled 5 -0101010001101 overweighted 5 -0101010001101 welled 5 -0101010001101 memorialized 6 -0101010001101 garbed 6 -0101010001101 Gorillas 6 -0101010001101 overrepresented 7 -0101010001101 ascendant 7 -0101010001101 encased 7 -0101010001101 uppermost 7 -0101010001101 cashes 7 -0101010001101 infeasible 8 -0101010001101 basked 8 -0101010001101 occuring 8 -0101010001101 sheathed 9 -0101010001101 indoctrinated 9 -0101010001101 knee-deep 9 -0101010001101 swathed 9 -0101010001101 engrossed 10 -0101010001101 ensnarled 10 -0101010001101 closeted 10 -0101010001101 zapped 11 -0101010001101 remiss 11 -0101010001101 versed 11 -0101010001101 uninvolved 12 -0101010001101 interned 12 -0101010001101 entwined 13 -0101010001101 well-versed 13 -0101010001101 schooled 13 -0101010001101 attired 15 -0101010001101 cloaked 16 -0101010001101 underrepresented 16 -0101010001101 ARRIVED 16 -0101010001101 chimed 18 -0101010001101 imbedded 19 -0101010001101 majoring 19 -0101010001101 revels 19 -0101010001101 reveling 19 -0101010001101 enumerated 19 -0101010001101 hemmed 20 -0101010001101 underweighted 20 -0101010001101 wallowing 21 -0101010001101 zeroing 21 -0101010001101 ensnared 22 -0101010001101 basking 23 -0101010001101 reveled 23 -0101010001101 resettled 24 -0101010001101 couched 25 -0101010001101 bathed 25 -0101010001101 snarled 27 -0101010001101 enmeshed 27 -0101010001101 enshrined 31 -0101010001101 immersed 32 -0101010001101 shrouded 32 -0101010001101 reined 33 -0101010001101 steeped 33 -0101010001101 raked 34 -0101010001101 zeroed 34 -0101010001101 residing 34 -0101010001101 stashed 35 -0101010001101 raking 35 -0101010001101 underway 37 -0101010001101 caved 37 -0101010001101 uninterested 40 -0101010001101 engages 46 -0101010001101 participates 46 -0101010001101 etched 47 -0101010001101 fluent 55 -0101010001101 entangled 56 -0101010001101 clad 60 -0101010001101 embodied 62 -0101010001101 ushered 63 -0101010001101 resides 64 -0101010001101 embedded 68 -0101010001101 factored 68 -0101010001101 implanted 74 -0101010001101 awash 96 -0101010001101 housed 105 -0101010001101 prominently 130 -0101010001101 mired 132 -0101010001101 stationed 133 -0101010001101 enrolled 143 -0101010001101 rooted 153 -0101010001101 embroiled 163 -0101010001101 instrumental 183 -0101010001101 trapped 187 -0101010001101 denominated 233 -0101010001101 implicated 263 -0101010001101 occurring 267 -0101010001101 invests 284 -0101010001101 dressed 303 -0101010001101 lacking 320 -0101010001101 incorporated 391 -0101010001101 specializing 397 -0101010001101 participated 423 -0101010001101 locked 564 -0101010001101 specializes 567 -0101010001101 evident 612 -0101010001101 engaged 1095 -0101010001101 interested 3499 -0101010001101 involved 6763 -0101010001110 negotiatons 1 -0101010001110 relined 1 -0101010001110 Toying 1 -0101010001110 Lily-White 1 -0101010001110 watercourses 1 -0101010001110 solemnized 1 -0101010001110 interefere 1 -0101010001110 co-authoring 1 -0101010001110 aglitter 1 -0101010001110 administraton 1 -0101010001110 coruscate 1 -0101010001110 free-handed 1 -0101010001110 co-invested 1 -0101010001110 nonaffiliation 1 -0101010001110 simulataneously 1 -0101010001110 coterminous 1 -0101010001110 beautified 1 -0101010001110 comingling 1 -0101010001110 teemed 1 -0101010001110 chocka-block 1 -0101010001110 inter-operably 1 -0101010001110 overglazed 1 -0101010001110 Chenonceaux 1 -0101010001110 seethed 1 -0101010001110 inconversant 1 -0101010001110 likenot 1 -0101010001110 asssociated 1 -0101010001110 over-saturated 1 -0101010001110 cobbled-together 1 -0101010001110 jousted 1 -0101010001110 ad-men 1 -0101010001110 Colonials 1 -0101010001110 dealed 1 -0101010001110 field-checked 1 -0101010001110 Flirt 1 -0101010001110 copulating 1 -0101010001110 rasp 1 -0101010001110 innocent-students 1 -0101010001110 honeymooning 1 -0101010001110 overcomply 1 -0101010001110 skirmished 1 -0101010001110 bedizened 1 -0101010001110 middays 1 -0101010001110 incrusted 1 -0101010001110 10-zip 1 -0101010001110 chivvied 1 -0101010001110 scatology 1 -0101010001110 Absraction 1 -0101010001110 peroxides 1 -0101010001110 nonowners 1 -0101010001110 tortellini 1 -0101010001110 fancy-free 1 -0101010001110 familier 1 -0101010001110 lock-curlers 1 -0101010001110 21-year-olds 1 -0101010001110 refurnished 1 -0101010001110 fist-fighting 1 -0101010001110 aswarm 1 -0101010001110 EMI/Angel 1 -0101010001110 micro-epidemics 1 -0101010001110 frolicked 1 -0101010001110 activitated 1 -0101010001110 picnicking 1 -0101010001110 pre-injected 1 -0101010001110 satori 1 -0101010001110 Beauharnois 1 -0101010001110 concert-goer 1 -0101010001110 QE-2 1 -0101010001110 synonomous 1 -0101010001110 co-CEO 1 -0101010001110 SWATed 1 -0101010001110 hued 1 -0101010001110 beloveds 1 -0101010001110 atria 1 -0101010001110 decompressing 1 -0101010001110 incontinencies 1 -0101010001110 overfortified 1 -0101010001110 interfaced 1 -0101010001110 interchangable 1 -0101010001110 Korobytsins 1 -0101010001110 xerophilous 1 -0101010001110 stablized 1 -0101010001110 gabbed 1 -0101010001110 jives 1 -0101010001110 dissatisfation 1 -0101010001110 cosy 1 -0101010001110 interlocks 1 -0101010001110 hobnobbed 1 -0101010001110 caucusing 1 -0101010001110 conferrals 1 -0101010001110 disapointed 1 -0101010001110 yeasty 1 -0101010001110 refusniks 1 -0101010001110 smilodons 1 -0101010001110 20-10 2 -0101010001110 affilated 2 -0101010001110 non-annualized 2 -0101010001110 well-satisfied 2 -0101010001110 funning 2 -0101010001110 unacquainted 2 -0101010001110 fresh-looking 2 -0101010001110 twangs 2 -0101010001110 intercut 2 -0101010001110 sugar-coated 2 -0101010001110 overidentified 2 -0101010001110 freighted 2 -0101010001110 out-of-step 2 -0101010001110 kissy-kissy 2 -0101010001110 trifled 2 -0101010001110 aggregated 2 -0101010001110 chock-a-block 2 -0101010001110 overconcerned 2 -0101010001110 intermingled 2 -0101010001110 Odalisque 2 -0101010001110 racqueteers 2 -0101010001110 tinkers 2 -0101010001110 oneness 2 -0101010001110 GRAPPLE 2 -0101010001110 inset 2 -0101010001110 specked 2 -0101010001110 snitched 2 -0101010001110 contra-cyclical 2 -0101010001110 interferred 3 -0101010001110 rumba 3 -0101010001110 misaligned 3 -0101010001110 Filled 3 -0101010001110 30-year-olds 3 -0101010001110 spray-painted 3 -0101010001110 appliqued 3 -0101010001110 collides 3 -0101010001110 inculcated 3 -0101010001110 well-acquainted 3 -0101010001110 teem 3 -0101010001110 overprogrammed 3 -0101010001110 dueled 4 -0101010001110 resonating 4 -0101010001110 collaborates 4 -0101010001110 consonant 4 -0101010001110 protectable 4 -0101010001110 absconded 4 -0101010001110 parsimonious 4 -0101010001110 incised 4 -0101010001110 bantering 4 -0101010001110 mispositioned 4 -0101010001110 aglow 5 -0101010001110 slathered 5 -0101010001110 lathered 5 -0101010001110 federated 5 -0101010001110 brims 5 -0101010001110 commiserating 5 -0101010001110 interacted 5 -0101010001110 ribbed 5 -0101010001110 sympathizing 5 -0101010001110 comports 5 -0101010001110 tangling 5 -0101010001110 interacts 6 -0101010001110 crackled 6 -0101010001110 fraternizing 6 -0101010001110 pre-printed 6 -0101010001110 congruent 6 -0101010001110 interlaced 6 -0101010001110 jam-packed 7 -0101010001110 coexisting 7 -0101010001110 suffused 7 -0101010001110 ornamented 7 -0101010001110 marbled 7 -0101010001110 scuffled 7 -0101010001110 bedecked 7 -0101010001110 infatuated 8 -0101010001110 drugged 8 -0101010001110 booby-trapped 8 -0101010001110 hobnobbing 8 -0101010001110 meshed 9 -0101010001110 juxtaposed 9 -0101010001110 flirts 9 -0101010001110 conversant 9 -0101010001110 encoded 9 -0101010001110 interacting 10 -0101010001110 familar 11 -0101010001110 interwoven 12 -0101010001110 inlaid 12 -0101010001110 Casuals 13 -0101010001110 festooned 13 -0101010001110 commingled 13 -0101010001110 scented 13 -0101010001110 larded 13 -0101010001110 embossed 13 -0101010001110 imprinted 14 -0101010001110 encrusted 14 -0101010001110 colliding 15 -0101010001110 embellished 16 -0101010001110 neck-and-neck 17 -0101010001110 correlated 19 -0101010001110 flavored 22 -0101010001110 affiliating 22 -0101010001110 infested 23 -0101010001110 grappled 23 -0101010001110 bristling 23 -0101010001110 tinged 23 -0101010001110 unconnected 24 -0101010001110 tinkered 24 -0101010001110 mingled 24 -0101010001110 interspersed 25 -0101010001110 disagreeing 25 -0101010001110 stained 26 -0101010001110 imbued 26 -0101010001110 dripping 26 -0101010001110 toying 29 -0101010001110 fungible 29 -0101010001110 tampered 30 -0101010001110 bubbling 31 -0101010001110 abuzz 31 -0101010001110 studded 32 -0101010001110 peppered 32 -0101010001110 flirted 32 -0101010001110 sprinkled 33 -0101010001110 flirting 33 -0101010001110 chatting 33 -0101010001110 toyed 34 -0101010001110 fortified 34 -0101010001110 conflicted 35 -0101010001110 conferring 36 -0101010001110 brimming 38 -0101010001110 overflowing 40 -0101010001110 parted 40 -0101010001110 replete 41 -0101010001110 clashing 44 -0101010001110 acquainted 45 -0101010001110 collaborating 46 -0101010001110 endowed 47 -0101010001110 teeming 49 -0101010001110 commensurate 50 -0101010001110 laden 51 -0101010001110 outfitted 51 -0101010001110 experimented 52 -0101010001110 bursting 53 -0101010001110 laced 53 -0101010001110 interferes 54 -0101010001110 dotted 57 -0101010001110 fitted 59 -0101010001110 cluttered 61 -0101010001110 adorned 62 -0101010001110 riddled 62 -0101010001110 littered 64 -0101010001110 blessed 71 -0101010001110 synonymous 76 -0101010001110 grappling 76 -0101010001110 aligned 78 -0101010001110 blended 78 -0101010001110 disenchanted 78 -0101010001110 fraught 79 -0101010001110 siding 80 -0101010001110 stocked 82 -0101010001110 crammed 83 -0101010001110 reconciled 89 -0101010001110 rife 105 -0101010001110 incompatible 107 -0101010001110 associating 107 -0101010001110 coping 113 -0101010001110 interfering 122 -0101010001110 sided 125 -0101010001110 unfamiliar 131 -0101010001110 decorated 136 -0101010001110 experimenting 140 -0101010001110 obsessed 151 -0101010001110 complied 155 -0101010001110 complying 159 -0101010001110 flush 162 -0101010001110 dissatisfied 165 -0101010001110 interfered 178 -0101010001110 preoccupied 181 -0101010001110 saddled 186 -0101010001110 stuffed 188 -0101010001110 wrestling 190 -0101010001110 clashed 207 -0101010001110 inconsistent 220 -0101010001110 allied 240 -0101010001110 loaded 282 -0101010001110 compatible 356 -0101010001110 cooperating 453 -0101010001110 credited 480 -0101010001110 infected 511 -0101010001110 connected 521 -0101010001110 equipped 557 -0101010001110 affiliated 613 -0101010001110 consistent 852 -0101010001110 merged 1046 -0101010001110 dealing 1471 -0101010001110 associated 1826 -0101010001110 familiar 3055 -0101010001110 combined 2844 -01010100011110 Grappling 1 -01010100011110 Milwaukeeans 1 -01010100011110 BORED 1 -01010100011110 raddle 1 -01010100011110 rebuilders 1 -01010100011110 tag-teamed 1 -01010100011110 emblazened 1 -01010100011110 D.C.-Dulles 1 -01010100011110 bebops 1 -01010100011110 dragster 1 -01010100011110 breakfasting 1 -01010100011110 Releases 1 -01010100011110 socializes 1 -01010100011110 hopitals 1 -01010100011110 basted 1 -01010100011110 Thrilled 1 -01010100011110 overcompliance 1 -01010100011110 americans 1 -01010100011110 85-pounder 1 -01010100011110 bonbons 1 -01010100011110 COMPETE 1 -01010100011110 -flat 1 -01010100011110 unaligned 1 -01010100011110 rebetting 1 -01010100011110 vacherin 1 -01010100011110 furbished 1 -01010100011110 cross-react 1 -01010100011110 garlanded 2 -01010100011110 Restauracja 2 -01010100011110 resounds 2 -01010100011110 garnished 4 -01010100011110 coinciding 19 -01010100011110 coupled 451 -01010100011110 compared 10435 -01010100011110 compares 556 -01010100011111 palpitates 1 -01010100011111 discriminatorily 1 -01010100011111 stewn 1 -01010100011111 pipleines 1 -01010100011111 girdled 1 -01010100011111 convulsed 1 -01010100011111 BUMBERSHOOT 1 -01010100011111 uncommemorated 1 -01010100011111 Webern 1 -01010100011111 Disagreed 1 -01010100011111 surfeited 1 -01010100011111 acquaintanceship 1 -01010100011111 banters 1 -01010100011111 twirlers 1 -01010100011111 extra-special 1 -01010100011111 flesh-tone 1 -01010100011111 drearier 1 -01010100011111 lations 1 -01010100011111 crusted 1 -01010100011111 bus-way 1 -01010100011111 MDs 1 -01010100011111 invisibly 1 -01010100011111 pro-Hoosier 1 -01010100011111 cavorts 1 -01010100011111 upcourt 1 -01010100011111 technicolored 1 -01010100011111 15-5 1 -01010100011111 now-simmering 1 -01010100011111 choreographs 1 -01010100011111 auto-exposure 1 -01010100011111 crack-the-whip 1 -01010100011111 preoccuption 1 -01010100011111 27-week 1 -01010100011111 swagged 1 -01010100011111 cantatas 1 -01010100011111 separation-by-law 1 -01010100011111 jalapenos 1 -01010100011111 incorporator 1 -01010100011111 Binoche 1 -01010100011111 caressed 1 -01010100011111 drug-runners 1 -01010100011111 chummier 1 -01010100011111 Nattiel 1 -01010100011111 abracadabra 1 -01010100011111 untampered 1 -01010100011111 converses 1 -01010100011111 intersects 1 -01010100011111 gleamed 1 -01010100011111 footsy 1 -01010100011111 natural-fabric 1 -01010100011111 co-existed 1 -01010100011111 skiless 1 -01010100011111 Landcruiser 1 -01010100011111 consorted 1 -01010100011111 stride-for-stride 1 -01010100011111 compacter 1 -01010100011111 Associating 1 -01010100011111 no-hitters 1 -01010100011111 intermixed 1 -01010100011111 brimmed 1 -01010100011111 unflatteringly 1 -01010100011111 cuirasses 1 -01010100011111 Schotz 1 -01010100011111 nest-making 1 -01010100011111 beach-blasting 1 -01010100011111 decamps 1 -01010100011111 Pyongyang-bashing 1 -01010100011111 down-the-line 1 -01010100011111 ruminative-narrative 1 -01010100011111 rationalist 2 -01010100011111 peaceably 2 -01010100011111 comported 2 -01010100011111 warred 2 -01010100011111 twined 2 -01010100011111 cutesiness 2 -01010100011111 hob 2 -01010100011111 beserk 2 -01010100011111 woofy 2 -01010100011111 five-record 2 -01010100011111 blotched 2 -01010100011111 pedants 2 -01010100011111 gargles 2 -01010100011111 shambling 2 -01010100011111 razzed 2 -01010100011111 anti-Tory 3 -01010100011111 chockablock 3 -01010100011111 jibed 3 -01010100011111 half-filled 3 -01010100011111 hobnobs 3 -01010100011111 sociologically 3 -01010100011111 swatter 3 -01010100011111 glistens 3 -01010100011111 caked 3 -01010100011111 retouched 4 -01010100011111 coexists 4 -01010100011111 roofed 4 -01010100011111 eyeball-to-eyeball 5 -01010100011111 vibrates 5 -01010100011111 dovetails 6 -01010100011111 consorting 6 -01010100011111 lettered 6 -01010100011111 teems 7 -01010100011111 overflows 7 -01010100011111 overflowed 7 -01010100011111 reverberates 8 -01010100011111 dovetailed 9 -01010100011111 vies 9 -01010100011111 copes 9 -01010100011111 fiddles 9 -01010100011111 overlapped 11 -01010100011111 toe-to-toe 12 -01010100011111 hand-in-hand 13 -01010100011111 corresponded 14 -01010100011111 merrily 14 -01010100011111 grapples 15 -01010100011111 sympathizes 16 -01010100011111 wrestles 19 -01010100011111 rhymes 24 -01010100011111 merges 30 -01010100011111 side-by-side 34 -01010100011111 collided 44 -01010100011111 complies 52 -01010100011111 emblazoned 66 -01010100011111 coincides 70 -01010100011111 head-on 88 -01010100011111 head-to-head 90 -01010100011111 contrasted 107 -01010100011111 coincided 116 -01010100011111 competes 118 -01010100011111 contrasts 185 -01010100011111 disagrees 206 -01010100011111 along 5981 -01010100011111 capped 550 -010101001000 1959-1961 1 -010101001000 246,370 1 -010101001000 TEMPERED 1 -010101001000 ATL 1 -010101001000 nine-volume 1 -010101001000 onwards 1 -010101001000 hip-deep 1 -010101001000 2147 1 -010101001000 9988 1 -010101001000 volume-wise 1 -010101001000 CROWING 1 -010101001000 because. 1 -010101001000 Financieros 1 -010101001000 retrying 1 -010101001000 light-haters 1 -010101001000 hacienda 1 -010101001000 ago.The 1 -010101001000 2065 1 -010101001000 anecdotally 1 -010101001000 ealier 2 -010101001000 off-target 2 -010101001000 plumper 2 -010101001000 earlier. 2 -010101001000 leafless 2 -010101001000 Diazyde 2 -010101001000 stiff-armed 2 -010101001000 2045 2 -010101001000 1575 2 -010101001000 2040 3 -010101001000 outrider 3 -010101001000 1975-76 6 -010101001000 earlier 25082 -010101001000 2000 699 -0101010010010 collegiate-hoops 1 -0101010010010 small-flowered 1 -0101010010010 1960-75 1 -0101010010010 Sakonnet 1 -0101010010010 coal-state 1 -0101010010010 EDS-led 1 -0101010010010 horse-head 1 -0101010010010 firefly 1 -0101010010010 Gauche 1 -0101010010010 Arab-Christian 1 -0101010010010 MITI-sponsored 1 -0101010010010 Occidental-led 1 -0101010010010 dollar-bill 1 -0101010010010 Madonna-meets-the-Duchess-of-Windsor 1 -0101010010010 11-10 1 -0101010010010 Cravers 1 -0101010010010 Tau-Con 1 -0101010010010 1895-1906 1 -0101010010010 creamy-colored 1 -0101010010010 croc-hunting 1 -0101010010010 Hamlet-like 1 -0101010010010 pre-motherhood 1 -0101010010010 guy-bad 1 -0101010010010 85-pound 1 -0101010010010 tax-abatement 1 -0101010010010 cop-avenges-his-buddy 1 -0101010010010 industrial-recruiting 1 -0101010010010 drug-ravaged 1 -0101010010010 military-testing 1 -0101010010010 cop/bad 1 -0101010010010 Ohio-businessman 1 -0101010010010 stock-playing 1 -0101010010010 ferret-like 1 -0101010010010 Woodstock-goers 1 -0101010010010 art-dealing 1 -0101010010010 history-amid 1 -0101010010010 art-through-the-ages 1 -0101010010010 obsessiveness 2 -0101010010010 gimpy 2 -0101010010010 Epiphany 2 -0101010010010 acropolis 2 -0101010010010 18-foot-high 2 -0101010010010 chukar 2 -0101010010010 two-tone 2 -0101010010010 Bloomsbury 2 -0101010010010 auto-da-fe 2 -0101010010010 Cucuta 2 -0101010010010 Wailing 2 -0101010010010 Hoschton 2 -0101010010010 2405 2 -0101010010010 arrhythmia 2 -0101010010010 east-side 2 -0101010010010 undemonstrative 2 -0101010010010 omphalos 2 -0101010010010 unplaceable 2 -0101010010010 slutty 2 -0101010010010 Kanda 2 -0101010010010 Amdo 2 -0101010010010 undershirt 2 -0101010010010 semiprecious 2 -0101010010010 Yakuza 2 -0101010010010 rum-runners 2 -0101010010010 drunkest 2 -0101010010010 Misfit 2 -0101010010010 almost-forgotten 2 -0101010010010 faith-healing 2 -0101010010010 slow-flying 2 -0101010010010 much-traveled 2 -0101010010010 steambath 2 -0101010010010 Ultraswitch 2 -0101010010010 corniche 2 -0101010010010 single-seat 2 -0101010010010 apple-cheeked 2 -0101010010010 inch-long 2 -0101010010010 25-to-34 2 -0101010010010 M0 2 -0101010010010 Tajo 2 -0101010010010 airfoil 2 -0101010010010 gullet 2 -0101010010010 undersigned 2 -0101010010010 ulema 2 -0101010010010 overenthusiastic 2 -0101010010010 kuroyon 2 -0101010010010 Nexrad 2 -0101010010010 ionized 2 -0101010010010 heads-I-win 2 -0101010010010 not-so-old 2 -0101010010010 1970-87 2 -0101010010010 1982-1988 2 -0101010010010 hammock 2 -0101010010010 enforcement-minded 2 -0101010010010 Ainsophia 2 -0101010010010 continental-shelf 3 -0101010010010 1960-1965 3 -0101010010010 ministering 3 -0101010010010 achievement-oriented 3 -0101010010010 male-determining 3 -0101010010010 Melaleuca 3 -0101010010010 5-foot-4 3 -0101010010010 Wirtschaftswunder 3 -0101010010010 unfeeling 3 -0101010010010 old. 3 -0101010010010 Dyna 3 -0101010010010 witchy 4 -0101010010010 sweet-natured 4 -0101010010010 11-hour 4 -0101010010010 oracular 4 -0101010010010 good-guy 4 -0101010010010 beechwood 4 -0101010010010 Clairtone 4 -0101010010010 gladiator 4 -0101010010010 deadliest 5 -0101010010010 HIV-positive 5 -0101010010010 1982-1985 6 -0101010010010 Serengeti 6 -0101010010010 commercial-grade 6 -0101010010010 Obrenovich 6 -0101010010010 ole 6 -0101010010010 Ridiculous 6 -0101010010010 Acusyst 8 -0101010010010 beta-amyloid 8 -0101010010010 Jima 12 -0101010010010 non-A 23 -0101010010010 old 10355 -0101010010010 11-year-old 45 -0101010010011 a-coming 1 -0101010010011 330,355 1 -0101010010011 98,414 1 -0101010010011 1,033,373 1 -0101010010011 --conspiracy 1 -0101010010011 eyeballing 1 -0101010010011 later-long 1 -0101010010011 Entity 1 -0101010010011 1951-1980 1 -0101010010011 ago-though 1 -0101010010011 MCMXXV 1 -0101010010011 Flagellator 1 -0101010010011 Gudjewg 1 -0101010010011 1912-40 1 -0101010010011 week-in 1 -0101010010011 2098 1 -0101010010011 ago.They 1 -0101010010011 PETROBRAS 1 -0101010010011 1990-93 1 -0101010010011 438.0 1 -0101010010011 547.1 1 -0101010010011 2,188 1 -0101010010011 1966-1981 1 -0101010010011 ago-quarter 1 -0101010010011 semimemorial 1 -0101010010011 year-olds 1 -0101010010011 1984-89 2 -0101010010011 earier 2 -0101010010011 xanh 2 -0101010010011 Styne 2 -0101010010011 Publicos 2 -0101010010011 after. 2 -0101010010011 oiler 3 -0101010010011 ago. 4 -0101010010011 AGO 11 -0101010010011 ago 15503 -0101010010011 olds 20 -0101010010100 1,513,000 1 -0101010010100 6,503,000 1 -0101010010100 12,509,100 1 -0101010010100 stock-touting 1 -0101010010100 3.7748 1 -0101010010100 59-11 1 -0101010010100 late-middle 1 -0101010010100 5-to-2 1 -0101010010100 guest-room 1 -0101010010100 gamines 1 -0101010010100 Penfolds 1 -0101010010100 729,942 1 -0101010010100 I.P.E. 1 -0101010010100 29-1 1 -0101010010100 6,381 1 -0101010010100 color-clashing 1 -0101010010100 53,935 1 -0101010010100 ROMEOS 1 -0101010010100 103,896 1 -0101010010100 RUMMAGING 1 -0101010010100 91,654 1 -0101010010100 computer-giant 1 -0101010010100 1.8695 1 -0101010010100 417-0 1 -0101010010100 42-8 1 -0101010010100 1,426 1 -0101010010100 8,350,000 1 -0101010010100 11,350,000 1 -0101010010100 strike-split 1 -0101010010100 50-46 1 -0101010010100 279,838 1 -0101010010100 Shawn-dynasty 1 -0101010010100 Demirsar 1 -0101010010100 8,840,000 1 -0101010010100 light-volume 1 -0101010010100 64,430 1 -0101010010100 Irish-born 1 -0101010010100 Schlosses 1 -0101010010100 wools 1 -0101010010100 LOOMS 1 -0101010010100 1,015,190 1 -0101010010100 defir 1 -0101010010100 91.16 1 -0101010010100 650-person 1 -0101010010100 47,224 1 -0101010010100 166,788 1 -0101010010100 1.7395 1 -0101010010100 socialist-leaning 1 -0101010010100 1,569.3 1 -0101010010100 40,819 1 -0101010010100 22,012 1 -0101010010100 16,449 1 -0101010010100 much-acclaimed 1 -0101010010100 late-late 1 -0101010010100 204.63 1 -0101010010100 24,589.23 1 -0101010010100 178,732 1 -0101010010100 Pernand-Vergelesses 1 -0101010010100 Meursault 1 -0101010010100 Aligote 1 -0101010010100 1097.93 1 -0101010010100 often-invoked 1 -0101010010100 Olivetti-style 1 -0101010010100 156,545 1 -0101010010100 184-154 1 -0101010010100 786,268 1 -0101010010100 5,236 1 -0101010010100 no-results 1 -0101010010100 once-blighted 1 -0101010010100 301,100 1 -0101010010100 debarring 1 -0101010010100 2,020,300 1 -0101010010100 statesmanly 1 -0101010010100 liquor-saturated 1 -0101010010100 75-00 1 -0101010010100 Pfc 1 -0101010010100 now-blossoming 1 -0101010010100 30,875 1 -0101010010100 arts-minded 1 -0101010010100 219,677 1 -0101010010100 195,190 1 -0101010010100 899,462 1 -0101010010100 246.11 1 -0101010010100 242.23 1 -0101010010100 67,672 1 -0101010010100 104,842 1 -0101010010100 three-set 1 -0101010010100 97,487 1 -0101010010100 26,046 1 -0101010010100 50,407 1 -0101010010100 Sawgrass 1 -0101010010100 1736.74 1 -0101010010100 34-restaurant 1 -0101010010100 lumpen-intellectual 1 -0101010010100 Dubaih 1 -0101010010100 Purushothaman 1 -0101010010100 better-than-usual 1 -0101010010100 32,380,000 1 -0101010010100 adobe-style 1 -0101010010100 31,516 1 -0101010010100 strike-shortened 1 -0101010010100 revolution-from-the-throne 1 -0101010010100 Malang 1 -0101010010100 HORRORS 1 -0101010010100 116,090 1 -0101010010100 1,062,200 1 -0101010010100 x-Year-to-date 2 -0101010010100 Sabry 2 -0101010010100 7,000-square-foot 2 -0101010010100 drizzly 2 -0101010010100 Petrograd 2 -0101010010100 Michalis 2 -0101010010100 Nebula 2 -0101010010100 2,535 2 -0101010010100 360,380 2 -0101010010100 114.86 2 -0101010010100 62,700 2 -0101010010100 65-8 2 -0101010010100 263-85 2 -0101010010100 Western-Central 3 -0101010010100 August-September 3 -0101010010100 late- 3 -0101010010100 August-October 3 -0101010010100 dead-center 3 -0101010010100 117-year-old 3 -0101010010100 new-year 3 -0101010010100 blow-up 3 -0101010010100 mid-to-late 5 -0101010010100 Tysons 8 -0101010010100 mid-morning 42 -0101010010100 Papua 67 -0101010010100 late 12948 -0101010010100 upstate 83 -0101010010101 inflation-powered 1 -0101010010101 nonhedged 1 -0101010010101 Canadianizing 1 -0101010010101 post-expansion 1 -0101010010101 ZOOMS 1 -0101010010101 HALLOWEEN 1 -0101010010101 pre-deregulation 1 -0101010010101 0.6-hour 1 -0101010010101 Rhodesian-war 1 -0101010010101 India-brokered 1 -0101010010101 verification-process 1 -0101010010101 earlier-than-planned 1 -0101010010101 pre-Nazi 1 -0101010010101 Restaurante 1 -0101010010101 Yuppified 1 -0101010010101 zaftig 1 -0101010010101 Egyptian-Israeli 1 -0101010010101 pre-stock-market 1 -0101010010101 then-mandatory 1 -0101010010101 vetoability 1 -0101010010101 negotiable-options 1 -0101010010101 astigmatic 1 -0101010010101 all-Wagner 1 -0101010010101 2,478 1 -0101010010101 Abominable 1 -0101010010101 Cleveland-McKinley 1 -0101010010101 Harding-Coolidge-Hoover 1 -0101010010101 Wright-endorsed 1 -0101010010101 Qattara 1 -0101010010101 July-October 1 -0101010010101 38-to-65 1 -0101010010101 morale-busting 1 -0101010010101 conservation-oriented 1 -0101010010101 dyed-blonde 1 -0101010010101 encainide 1 -0101010010101 682,953 1 -0101010010101 toyland 1 -0101010010101 full-price 1 -0101010010101 energy-conscious 1 -0101010010101 Kotto 1 -0101010010101 1985-1991 1 -0101010010101 gunsights 1 -0101010010101 hot-ticket 1 -0101010010101 Corybantic 1 -0101010010101 forshadowing 1 -0101010010101 less-famished 1 -0101010010101 sharky 2 -0101010010101 Sabri 2 -0101010010101 inflation-ridden 2 -0101010010101 Virtuous 2 -0101010010101 quads 2 -0101010010101 21-hour 2 -0101010010101 Rennes 2 -0101010010101 co-plaintiffs 2 -0101010010101 takeover-crazed 2 -0101010010101 Wassily 2 -0101010010101 Beville 2 -0101010010101 Centenaire 3 -0101010010101 11-point 3 -0101010010101 8-5 3 -0101010010101 Israeli-Egyptian 3 -0101010010101 8-6 3 -0101010010101 Jader 3 -0101010010101 counterfeits 3 -0101010010101 recession-plagued 3 -0101010010101 Indian-brokered 4 -0101010010101 credulous 5 -0101010010101 early- 5 -0101010010101 pre-recession 5 -0101010010101 palmy 5 -0101010010101 pre-October 8 -0101010010101 Roaring 12 -0101010010101 early 15777 -0101010010101 mid 49 -0101010010110 electronics-retailing 1 -0101010010110 DIRECT/36 1 -0101010010110 beatnik 1 -0101010010110 already-weakened 1 -0101010010110 defensive-type 1 -0101010010110 entrepreneurial-investment 1 -0101010010110 lower-capitalized 1 -0101010010110 O'Hara-style 1 -0101010010110 Carter/Ward 1 -0101010010110 Iranian-laid 1 -0101010010110 500-level 1 -0101010010110 2,486 1 -0101010010110 Co-chairwoman 1 -0101010010110 IMF-administered 1 -0101010010110 urge-to-merge 1 -0101010010110 forward-currency 1 -0101010010110 retail-intensive 1 -0101010010110 teaching-excellence 1 -0101010010110 twoweek 1 -0101010010110 largest-capitalized 1 -0101010010110 price-to-book-ratio 1 -0101010010110 pollutioncontrol 1 -0101010010110 theme-oriented 1 -0101010010110 night-session 1 -0101010010110 low-information 1 -0101010010110 uptrending 1 -0101010010110 mortgage-issue 1 -0101010010110 listed-option 1 -0101010010110 energy-project 1 -0101010010110 1963-82 1 -0101010010110 five-a-month 1 -0101010010110 under-merchandised 1 -0101010010110 Granddad 1 -0101010010110 Gleaner 1 -0101010010110 65-stock 1 -0101010010110 OPEC-eve 1 -0101010010110 domestic-sector 1 -0101010010110 export-sector 1 -0101010010110 Off-exchange 1 -0101010010110 off-bourse 1 -0101010010110 day-today 1 -0101010010110 lube-oil 1 -0101010010110 unreclaimed 1 -0101010010110 1,284 1 -0101010010110 already-competitive 1 -0101010010110 Yellowstain 1 -0101010010110 Gordon-like 1 -0101010010110 variable-life-insurance 1 -0101010010110 feather-light 1 -0101010010110 largest-insider 1 -0101010010110 superliquidity 1 -0101010010110 1,192 1 -0101010010110 high-profitability 1 -0101010010110 global-portfolio 1 -0101010010110 AIDS-control 1 -0101010010110 Ex-Drexel 1 -0101010010110 operating-business 1 -0101010010110 least-favorite 1 -0101010010110 later-round 1 -0101010010110 perservation 1 -0101010010110 salvation-by-society 1 -0101010010110 stocks-boosted 1 -0101010010110 2,524 1 -0101010010110 generic-drug-company 1 -0101010010110 4,948,840x 1 -0101010010110 fishmarket 1 -0101010010110 ad-linage 1 -0101010010110 institution-sized 1 -0101010010110 per-capita-income 1 -0101010010110 aspirin-company 1 -0101010010110 Chinese-government 1 -0101010010110 asset-related 1 -0101010010110 Choppy 1 -0101010010110 then-rising 1 -0101010010110 626,995 1 -0101010010110 Pre-market 1 -0101010010110 sleepiest 1 -0101010010110 highyielding 1 -0101010010110 once-distinct 1 -0101010010110 1,926 1 -0101010010110 already-lackluster 1 -0101010010110 silver-coated 1 -0101010010110 MMI-contract 1 -0101010010110 Spooks 1 -0101010010110 Stale 1 -0101010010110 5,503 1 -0101010010110 insder 1 -0101010010110 retroviral 1 -0101010010110 SMALL-COMPANY 1 -0101010010110 second-lightest 1 -0101010010110 inter-market 1 -0101010010110 shuttle-service 1 -0101010010110 4,419,768-x 1 -0101010010110 Toronto-listed 1 -0101010010110 periferico 1 -0101010010110 2,413 1 -0101010010110 1,321 1 -0101010010110 British-bond 1 -0101010010110 225-selected 1 -0101010010110 most-used 1 -0101010010110 early-cycle 2 -0101010010110 stock-index-option 2 -0101010010110 Blinder-underwritten 2 -0101010010110 once-banned 2 -0101010010110 X-shaped 2 -0101010010110 4,715 2 -0101010010110 East-Bloc 2 -0101010010110 non-UMW 2 -0101010010110 Japanese-stock 2 -0101010010110 Stuttgarter 2 -0101010010110 off-board 2 -0101010010110 gymnasium-sized 2 -0101010010110 most-liquid 2 -0101010010110 least-liquid 2 -0101010010110 non-floor 2 -0101010010110 triple-witching-hour 2 -0101010010110 own-account 2 -0101010010110 top-60 2 -0101010010110 4,401 3 -0101010010110 smaller-company 3 -0101010010110 off-floor 3 -0101010010110 country-debt 3 -0101010010110 narrow-range 3 -0101010010110 index-options 3 -0101010010110 4,635 3 -0101010010110 initial-public-offering 4 -0101010010110 Prearranged 4 -0101010010110 Sueddeutsche 4 -0101010010110 overthe-counter 4 -0101010010110 screen-based 5 -0101010010110 market-system 5 -0101010010110 pre-issue 5 -0101010010110 inter-dealer 5 -0101010010110 fund-company 5 -0101010010110 over-thecounter 6 -0101010010110 emerging-growth 9 -0101010010110 larger-capitalization 10 -0101010010110 third-market 11 -0101010010110 first-section 12 -0101010010110 pre-announcement 13 -0101010010110 off-exchange 14 -0101010010110 mortgage-securities 15 -0101010010110 pre-bid 16 -0101010010110 non-NMS 18 -0101010010110 interdealer 39 -0101010010110 dividend-related 55 -0101010010110 exchange-listed 57 -0101010010110 insider 1848 -0101010010110 over-the-counter 5083 -0101010010110 OTC 2176 -0101010010111 100-sized 1 -0101010010111 400-industrials 1 -0101010010111 Commission/Commodity 1 -0101010010111 interest-rate-swaps 1 -0101010010111 Tornto 1 -0101010010111 post-settlement 1 -0101010010111 straight-dollar 1 -0101010010111 Saturnia 1 -0101010010111 snail-paced 1 -0101010010111 dividendrelated 1 -0101010010111 Other-Finance 1 -0101010010111 warehouse-copper 2 -0101010010111 Hill-based 2 -0101010010111 national-over-the-counter 6 -0101010010111 composite 10233 -0101010010111 Composite 288 -0101010011000 94.77 1 -0101010011000 94.87 1 -0101010011000 1,848 1 -0101010011000 7l 1 -0101010011000 ousttanding 1 -0101010011000 757-695 1 -0101010011000 736-719 1 -0101010011000 963-959 1 -0101010011000 743-717 1 -0101010011000 crustacea 1 -0101010011000 92.96 1 -0101010011000 839-713 1 -0101010011000 93.41 1 -0101010011000 95.06 1 -0101010011000 95.07 1 -0101010011000 92.92 1 -0101010011000 92.81 1 -0101010011000 93.06 1 -0101010011000 93.17 1 -0101010011000 conventionally. 1 -0101010011000 814-735 1 -0101010011000 93.35 1 -0101010011000 95.51 1 -0101010011000 95.48 1 -0101010011000 95.25 1 -0101010011000 95.30 1 -0101010011000 95.38 1 -0101010011000 94.99 1 -0101010011000 95.11 1 -0101010011000 95.01 1 -0101010011000 94.98 1 -0101010011000 95.12 1 -0101010011000 respresent 1 -0101010011000 yestersday 1 -0101010011000 94.95 1 -0101010011000 94.97 1 -0101010011000 logics 1 -0101010011000 94.96 1 -0101010011000 94.67 1 -0101010011000 95.03 1 -0101010011000 94.83 1 -0101010011000 94.18 1 -0101010011000 94.49 1 -0101010011000 93.94 1 -0101010011000 95.39 1 -0101010011000 celibacy 1 -0101010011000 95.26 1 -0101010011000 stock-redesignated 1 -0101010011000 95.17 1 -0101010011000 94.78 1 -0101010011000 93.37 1 -0101010011000 93.65 1 -0101010011000 1012 1 -0101010011000 835-629 1 -0101010011000 916-583 1 -0101010011000 Radhakrishnan 1 -0101010011000 1.09-for-1 1 -0101010011000 981-483 1 -0101010011000 948-670 1 -0101010011000 794-624 1 -0101010011000 656-334 1 -0101010011000 388,309 1 -0101010011000 2,186 1 -0101010011000 6,927 1 -0101010011000 coupon-clippers 1 -0101010011000 0.775 1 -0101010011000 816-720 1 -0101010011000 67-3890 1 -0101010011000 1,001-538 1 -0101010011000 outstandings 2 -0101010011000 95.40 2 -0101010011000 dweeb 2 -0101010011000 95.02 2 -0101010011000 94.62 2 -0101010011000 outstanding. 2 -0101010011000 94.94 2 -0101010011000 93.27 2 -0101010011000 93.21 2 -0101010011000 94.71 2 -0101010011000 93.01 3 -0101010011000 93.43 3 -0101010011000 94.85 4 -0101010011000 oustanding 15 -0101010011000 outstanding 11000 -0101010011000 issuable 16 -0101010011001 Bifocal 1 -0101010011001 Bustanil 1 -0101010011001 Can-Can 1 -0101010011001 Saxatilis 1 -0101010011001 Italics 1 -0101010011001 Teile 1 -0101010011001 po-kah-zoo-kah 1 -0101010011001 21-15 1 -0101010011001 Palmahol 1 -0101010011001 658-8063 1 -0101010011001 overadjustment 1 -0101010011001 scatterometer 1 -0101010011001 850-2000 1 -0101010011001 623-9001 1 -0101010011001 273-7877 1 -0101010011001 deoperfumes 1 -0101010011001 info-mercials 1 -0101010011001 violated. 1 -0101010011001 Zebedee 1 -0101010011001 OHHaww 1 -0101010011001 Torque-speak 1 -0101010011001 peruke-makers 1 -0101010011001 Mazstang 1 -0101010011001 N.F.W. 1 -0101010011001 preclearance 1 -0101010011001 beatup. 1 -0101010011001 techno-burbs 1 -0101010011001 deathspiral 1 -0101010011001 246-6807 1 -0101010011001 971-9150 1 -0101010011001 581-7907 1 -0101010011001 were. 1 -0101010011001 MaxSafety 1 -0101010011001 materalized 1 -0101010011001 wah-kah-ho-ri-ku 1 -0101010011001 Banques 1 -0101010011001 PATRICIA 1 -0101010011001 482,673 1 -0101010011001 wonderful. 1 -0101010011001 /FDP 1 -0101010011001 545-6555 1 -0101010011001 547-7424 1 -0101010011001 797-0657 1 -0101010011001 872-4700 1 -0101010011001 864-4130 1 -0101010011001 585-2573 1 -0101010011001 footsie 1 -0101010011001 STYLES 1 -0101010011001 Chevrolet-Buick-Pontiac-Oldsmobile 1 -0101010011001 hushhush 1 -0101010011001 Sa-low-mi 1 -0101010011001 EAVN 1 -0101010011001 mousetrapped 1 -0101010011001 atklatiba 1 -0101010011001 takeover-itis 1 -0101010011001 537-3507 1 -0101010011001 Okogie 1 -0101010011001 unstable-stability 1 -0101010011001 Aide 1 -0101010011001 Stumpfel 1 -0101010011001 ooey-pooey 1 -0101010011001 Monjardin 1 -0101010011001 Matull 1 -0101010011001 work-doh 1 -0101010011001 pitchpoling 1 -0101010011001 Galveas 1 -0101010011001 mega-contracts 1 -0101010011001 Freeburg 1 -0101010011001 superplane 1 -0101010011001 219-3910 1 -0101010011001 220-8616 1 -0101010011001 Ingramii 1 -0101010011001 625-4275 1 -0101010011001 I.L.J. 1 -0101010011001 Torquemada 1 -0101010011001 925-2750 1 -0101010011001 Key-paw 1 -0101010011001 housebroken 1 -0101010011001 Hornaday 1 -0101010011001 praiseries 1 -0101010011001 nottori 1 -0101010011001 862-7352 1 -0101010011001 intolerable. 1 -0101010011001 NPH 1 -0101010011001 572-6037 1 -0101010011001 621-0379 1 -0101010011001 crunchies 1 -0101010011001 Topper 1 -0101010011001 MESSERSCHMIDT-BOELKOW 1 -0101010011001 overdrawing 1 -0101010011001 VanDevender 1 -0101010011001 beasted 1 -0101010011001 overcomplicated 1 -0101010011001 Musafe 1 -0101010011001 superbe 1 -0101010011001 621-9893 1 -0101010011001 hightest 1 -0101010011001 D.-Ga 1 -0101010011001 Debtman 1 -0101010011001 unartistic 1 -0101010011001 SOES-ed 1 -0101010011001 junkers 1 -0101010011001 Hodur 1 -0101010011001 582-1821 1 -0101010011001 Terrific 1 -0101010011001 straightforward. 1 -0101010011001 Dreamstage 1 -0101010011001 finger-paintings 1 -0101010011001 Meisterschlocker 1 -0101010011001 Abair 1 -0101010011001 Indiscreet 1 -0101010011001 symphonia 1 -0101010011001 265-7300 1 -0101010011001 Toshiba-bashing 1 -0101010011001 Dougster 1 -0101010011001 Danger-Explosives 1 -0101010011001 unfood-looking 1 -0101010011001 up-phase 1 -0101010011001 DuhMAWko 1 -0101010011001 Ooooh 1 -0101010011001 over-prescribing 1 -0101010011001 underdogged 1 -0101010011001 Movietone 1 -0101010011001 Bordello 1 -0101010011001 Pana-dollars 1 -0101010011001 towny 1 -0101010011001 warrigal 1 -0101010011001 dude-oir 1 -0101010011001 hardtack 1 -0101010011001 hopscotching 1 -0101010011001 870-5690 1 -0101010011001 Markstein 1 -0101010011001 counter-sanctions 1 -0101010011001 769-5305 1 -0101010011001 assetstripping 1 -0101010011001 Kost 1 -0101010011001 airyfairy 1 -0101010011001 Lamotte 1 -0101010011001 Prieskel 1 -0101010011001 salary-men 1 -0101010011001 McPinion 1 -0101010011001 Bodywatching 1 -0101010011001 Resonance 1 -0101010011001 YEEEEEH 1 -0101010011001 WHEEEARG 1 -0101010011001 Minimize 1 -0101010011001 Eggzibitions 1 -0101010011001 677-8960 1 -0101010011001 871-0090 1 -0101010011001 732-5813 1 -0101010011001 598-7150 1 -0101010011001 Ram-bro 1 -0101010011001 ecclesiastical-medieval 1 -0101010011001 disadvantaged. 1 -0101010011001 vacationland 1 -0101010011001 governmentinsured 1 -0101010011001 exist. 1 -0101010011001 Distinctions 1 -0101010011001 Adios 1 -0101010011001 Dizziest 1 -0101010011001 Rockschool 1 -0101010011001 Zardoz 1 -0101010011001 Upheavals 1 -0101010011001 D.-Calif 1 -0101010011001 734-3614 1 -0101010011001 624-2345 1 -0101010011001 yech 1 -0101010011001 lowballing 1 -0101010011001 steamroller. 1 -0101010011001 mini-trial 1 -0101010011001 than. 1 -0101010011001 chickenhawk 1 -0101010011001 Jolles 1 -0101010011001 handfasting 1 -0101010011001 Exonerated 1 -0101010011001 484-7278 1 -0101010011001 775-8169 1 -0101010011001 Mmm-minestrone 1 -0101010011001 Cato-logs 1 -0101010011001 cateologue 1 -0101010011001 cauterized 1 -0101010011001 ill-bred 1 -0101010011001 insistences 1 -0101010011001 non-comedogenic 1 -0101010011001 Finke 1 -0101010011001 Pahkahs 1 -0101010011001 Blanding 1 -0101010011001 Somethings 1 -0101010011001 Marmaduke 1 -0101010011001 1208 1 -0101010011001 Anticipate 1 -0101010011001 fisk 1 -0101010011001 Indianized 1 -0101010011001 cash-crisis 1 -0101010011001 burajah 1 -0101010011001 Martern 1 -0101010011001 xxx 1 -0101010011001 shah-WEE 1 -0101010011001 tac-tac 1 -0101010011001 903-9600 1 -0101010011001 362-8719 1 -0101010011001 874-SING 1 -0101010011001 eye-poppers 1 -0101010011001 307-5320 1 -0101010011001 690-4100 1 -0101010011001 642-LIVE 1 -0101010011001 de-rocker 1 -0101010011001 fanciful. 1 -0101010011001 dumpster-diving 1 -0101010011001 misgraded 1 -0101010011001 Coma 1 -0101010011001 Hee-Haw 1 -0101010011001 Barril 1 -0101010011001 institution-power 1 -0101010011001 Self-exile 1 -0101010011001 smokosphere 1 -0101010011001 Persevere 1 -0101010011001 trolls 1 -0101010011001 Terry-yakis 1 -0101010011001 presidents-for-life 1 -0101010011001 Greenbride 1 -0101010011001 Tech-Busters 1 -0101010011001 681-3344 1 -0101010011001 2420800 1 -0101010011001 236-6510 1 -0101010011001 Reaganize 1 -0101010011001 sissies 1 -0101010011001 Svenson 1 -0101010011001 answerse 1 -0101010011001 paper-profiteering 1 -0101010011001 Tzamarelatos 1 -0101010011001 aggiornamento 1 -0101010011001 744-4430 1 -0101010011001 cd-v 1 -0101010011001 POINK 1 -0101010011001 globe-trot 1 -0101010011001 Rembleske 1 -0101010011001 out-butterflied 1 -0101010011001 Libuse 1 -0101010011001 628-0888 1 -0101010011001 769-5315 1 -0101010011001 pinang 1 -0101010011001 Knoop 1 -0101010011001 -savings 1 -0101010011001 Pray-SEE 1 -0101010011001 SHOAH 1 -0101010011001 Ltd.said 1 -0101010011001 roadworthy 1 -0101010011001 v-e-t-o 1 -0101010011001 Fairman 1 -0101010011001 entreprementors 1 -0101010011001 horsepreneurs 1 -0101010011001 aliteracy 1 -0101010011001 amhain 1 -0101010011001 honneur 1 -0101010011001 Loops 1 -0101010011001 de-Christianization 1 -0101010011001 Grisdela 1 -0101010011001 greater. 1 -0101010011001 WHITEHAT 1 -0101010011001 Voland 1 -0101010011001 nonendorsable 1 -0101010011001 spritzer 1 -0101010011001 996-1100 1 -0101010011001 Brunsman 1 -0101010011001 682-9346 1 -0101010011001 922-0061 1 -0101010011001 592-7111 1 -0101010011001 359-0009 1 -0101010011001 attitudinally 1 -0101010011001 blurrier 1 -0101010011001 consciousnesses 1 -0101010011001 Ecownomics 1 -0101010011001 Meza 1 -0101010011001 Borelando 1 -0101010011001 Bedenracher 1 -0101010011001 giance 1 -0101010011001 M.A.S.H. 1 -0101010011001 customer-focused 1 -0101010011001 663-0048 1 -0101010011001 799-3100 1 -0101010011001 guesstimated 1 -0101010011001 Tevis 1 -0101010011001 442-7666 1 -0101010011001 Umali 1 -0101010011001 Deadland 1 -0101010011001 Keinath 1 -0101010011001 undefeatable 1 -0101010011001 Surferboy 1 -0101010011001 mouth-feel 1 -0101010011001 Kinabalu 1 -0101010011001 dedo 1 -0101010011001 Copass 1 -0101010011001 Slapshot 1 -0101010011001 643-4550 1 -0101010011001 266-3605 1 -0101010011001 Athalia 1 -0101010011001 533-5555 1 -0101010011001 accelerato 1 -0101010011001 profitflation 1 -0101010011001 publishere 1 -0101010011001 abated. 1 -0101010011001 Tirale 1 -0101010011001 338-1433 1 -0101010011001 Schmook 1 -0101010011001 argutas 1 -0101010011001 744-3315 1 -0101010011001 684-4059 1 -0101010011001 agritourism 1 -0101010011001 871-1881 1 -0101010011001 9311255 1 -0101010011001 622-3771 1 -0101010011001 826-6837 1 -0101010011001 587-8681 1 -0101010011001 362-8060 1 -0101010011001 L.N. 1 -0101010011001 parented 1 -0101010011001 Jijunagrandisimas 1 -0101010011001 Gunslingers 1 -0101010011001 243-0745 1 -0101010011001 357-2700 1 -0101010011001 disambiguation 1 -0101010011001 Zygalski 1 -0101010011001 cocktailed 1 -0101010011001 Besky 1 -0101010011001 Zaslove 1 -0101010011001 535-7710 1 -0101010011001 822-4757 1 -0101010011001 559-2330 1 -0101010011001 695-3738 1 -0101010011001 Torchon 1 -0101010011001 Haefele 1 -0101010011001 Austropa 1 -0101010011001 life-costing 1 -0101010011001 nonpersonal 1 -0101010011001 chn 1 -0101010011001 accessibly 1 -0101010011001 alpo 1 -0101010011001 380-5031 1 -0101010011001 220-8700 1 -0101010011001 UOAs 1 -0101010011001 Epargne 1 -0101010011001 nitpicky 1 -0101010011001 immemorable 1 -0101010011001 544-4477 1 -0101010011001 724-8700 1 -0101010011001 Gabarro 1 -0101010011001 lumpfish 1 -0101010011001 matter-of-actly 1 -0101010011001 voltigeurs 1 -0101010011001 houngan 1 -0101010011001 anti-hunting/anti-gun 1 -0101010011001 A-wham-bam-alamb-bam-a-lamb-bam-bam 1 -0101010011001 pro-imperialist 1 -0101010011001 unsurveyed 1 -0101010011001 drk 1 -0101010011001 AUSIMONT 1 -0101010011001 1904-5 1 -0101010011001 jardin 1 -0101010011001 bravo 1 -0101010011001 Husick 1 -0101010011001 Societally-Conscious 1 -0101010011001 cured. 1 -0101010011001 GOWN 1 -0101010011001 multiskilled 1 -0101010011001 datuk 1 -0101010011001 imagineers 1 -0101010011001 interesting. 1 -0101010011001 Billis 1 -0101010011001 Malarkey 1 -0101010011001 Fledermice 1 -0101010011001 924-0070 1 -0101010011001 Helzer 1 -0101010011001 suc 1 -0101010011001 unregulation 1 -0101010011001 popcorn-like 1 -0101010011001 lawyer-to-lawyer 1 -0101010011001 epifelacticos 1 -0101010011001 Sandinocommunism 1 -0101010011001 Hospitaliano 1 -0101010011001 minidress 1 -0101010011001 Greensleaves 1 -0101010011001 Mixed-Up 1 -0101010011001 wojrk 1 -0101010011001 w-o-j-r 1 -0101010011001 DupontF 1 -0101010011001 Ohhhhh 1 -0101010011001 Crillon 1 -0101010011001 midpreneurs 1 -0101010011001 Humbug 1 -0101010011001 but-untrue-to-the-Agatha-Christie- 1 -0101010011001 Heroism 1 -0101010011001 Pulchritude 1 -0101010011001 non-material 1 -0101010011001 maltuition 1 -0101010011001 Ooohhhhhhh. 1 -0101010011001 Swist 1 -0101010011001 Strouss 1 -0101010011001 organoleptically 1 -0101010011001 Sociale 1 -0101010011001 Standiford 1 -0101010011001 Gunbelt 1 -0101010011001 Radarange 1 -0101010011001 KEISHI 1 -0101010011001 Moonwalk 1 -0101010011001 head-shaking 1 -0101010011001 Schilffarth 1 -0101010011001 577-7863 1 -0101010011001 deal-blocker 1 -0101010011001 downhearted 1 -0101010011001 Vicenzo 1 -0101010011001 Insensitive 1 -0101010011001 Bushism 1 -0101010011001 ENCYCLOPAEDIA 1 -0101010011001 Evident 1 -0101010011001 Longstocking 1 -0101010011001 usurers 1 -0101010011001 DeLorenzo 1 -0101010011001 Pagulayan 1 -0101010011001 Lynett 1 -0101010011001 men-o-rama 1 -0101010011001 nemawashi 1 -0101010011001 mah-zo-VYET-ski 1 -0101010011001 contra-selection 1 -0101010011001 class-to-the-class 1 -0101010011001 Carmilla 1 -0101010011001 Vetr 1 -0101010011001 fully. 1 -0101010011001 over-imbibing 1 -0101010011001 Lincolnpoops 1 -0101010011001 Pudge 1 -0101010011001 feuding. 1 -0101010011001 Generelli 1 -0101010011001 medicinalis 1 -0101010011001 Eurocentrism 1 -0101010011001 GATT-illegal 1 -0101010011001 sprinklered 1 -0101010011001 people-meters 1 -0101010011001 Porres 1 -0101010011001 889-5581 1 -0101010011001 Charal 1 -0101010011001 227-3227 1 -0101010011001 mapbook 1 -0101010011001 RAY 1 -0101010011001 Heyns 1 -0101010011001 Givray 1 -0101010011001 colorblindness 1 -0101010011001 camou-mail 1 -0101010011001 Marinkovich 1 -0101010011001 mega-warehouses 1 -0101010011001 kimilbee 1 -0101010011001 Chopsticks 1 -0101010011001 tubefeeder 1 -0101010011001 Winterson 1 -0101010011001 Mikro-Quat 1 -0101010011001 firetrap 1 -0101010011001 network-legal 1 -0101010011001 collectivas 1 -0101010011001 We. 1 -0101010011001 reLBO 1 -0101010011001 fastigheter 1 -0101010011001 727-8787 1 -0101010011001 Slaughterhouse-Five 1 -0101010011001 pavian 1 -0101010011001 contextualized 1 -0101010011001 believa 1 -0101010011001 self-correct 1 -0101010011001 automaticity 1 -0101010011001 Dinersaurs 1 -0101010011001 bathroom. 1 -0101010011001 super-banker 1 -0101010011001 Boum 1 -0101010011001 superannuation 1 -0101010011001 patrie 1 -0101010011001 Ginley 1 -0101010011001 Vercillo 1 -0101010011001 Weinburg 1 -0101010011001 546-7391 1 -0101010011001 Lucrezia 1 -0101010011001 Vasilyev 1 -0101010011001 CHRONIC 1 -0101010011001 Luminas 1 -0101010011001 preservations 1 -0101010011001 Grantchester 1 -0101010011001 Hard-Liners 1 -0101010011001 Iri 1 -0101010011001 conking 1 -0101010011001 guruism 1 -0101010011001 SSSSSSS 1 -0101010011001 Medication 1 -0101010011001 Velde 1 -0101010011001 mixologists 1 -0101010011001 787-8000 1 -0101010011001 Kneuttel 1 -0101010011001 Star-News 1 -0101010011001 Noids 1 -0101010011001 Diosese 1 -0101010011001 963-5246 1 -0101010011001 553-2230 1 -0101010011001 861-7500 1 -0101010011001 492-2777 1 -0101010011001 647-8789 1 -0101010011001 951-1011 1 -0101010011001 631-3307 1 -0101010011001 546-WINE 1 -0101010011001 579-0577 1 -0101010011001 bushido 1 -0101010011001 533-7400 1 -0101010011001 McFrozen 1 -0101010011001 Dis-Service 1 -0101010011001 unretire 1 -0101010011001 456-6666 1 -0101010011001 Ablove 1 -0101010011001 producer/writers 1 -0101010011001 bravissimo 1 -0101010011001 pumpers 1 -0101010011001 Wattoo/Wattoo 1 -0101010011001 higher-profit-goods 1 -0101010011001 Moto-ized 1 -0101010011001 clapboards 1 -0101010011001 kvetchmeisters 1 -0101010011001 broke. 1 -0101010011001 revisal 1 -0101010011001 Caygillomics 1 -0101010011001 alopecia 1 -0101010011001 Masquerade 1 -0101010011001 Lower-quality 1 -0101010011001 psycho-boom 1 -0101010011001 panderer 1 -0101010011001 596-9507 1 -0101010011001 972-7211 1 -0101010011001 537-6191 1 -0101010011001 355-6100 1 -0101010011001 Jardincour 1 -0101010011001 bell-ringers 1 -0101010011001 625-8250 1 -0101010011001 678-3268 1 -0101010011001 658-2507 1 -0101010011001 prophetism 1 -0101010011001 Cowett 1 -0101010011001 Rendira 1 -0101010011001 yellow-carded 1 -0101010011001 Trexler 1 -0101010011001 661-7067 1 -0101010011001 pitless 1 -0101010011001 Krocak 1 -0101010011001 break-evens 1 -0101010011001 YS-11s 1 -0101010011001 flushometer 1 -0101010011001 capitulatory 1 -0101010011001 show-runners 1 -0101010011001 overhour 1 -0101010011001 emollient 1 -0101010011001 uvulopalatopharyngoplasty 1 -0101010011001 alles 1 -0101010011001 MASTERCARD 1 -0101010011001 technostress 1 -0101010011001 Escaler 1 -0101010011001 0.450 1 -0101010011001 6.0s 1 -0101010011001 I-Ching 1 -0101010011001 successful. 1 -0101010011001 Bruccoli 1 -0101010011001 Bissel 1 -0101010011001 232-7636 1 -0101010011001 799-9595 1 -0101010011001 quarteritis 1 -0101010011001 Ser 1 -0101010011001 10,192,201 1 -0101010011001 STALIN 1 -0101010011001 Mahathir-beset 1 -0101010011001 trouble-makers 1 -0101010011001 Rogerama 1 -0101010011001 Mezquitillo 1 -0101010011001 sluts 1 -0101010011001 Shulevitz 1 -0101010011001 disconnected. 1 -0101010011001 Bakhtiar 1 -0101010011001 rustout 1 -0101010011001 deer. 1 -0101010011001 Mentum 1 -0101010011001 Orgasm 1 -0101010011001 Funakoshi 1 -0101010011001 Hibberd 1 -0101010011001 Karangelen 1 -0101010011001 Run-D.M.C. 1 -0101010011001 CR103 1 -0101010011001 Memoriale 1 -0101010011001 1974-83 1 -0101010011001 ineffective. 1 -0101010011001 Victor/Victoria 1 -0101010011001 heat-pasteurized 1 -0101010011001 Montredon 1 -0101010011001 willies 1 -0101010011001 Mazess 1 -0101010011001 paper. 1 -0101010011001 macrosociety 1 -0101010011001 Hiristo 1 -0101010011001 Champaigne 1 -0101010011001 Geisert 1 -0101010011001 affected. 1 -0101010011001 nerveux 1 -0101010011001 domaine 1 -0101010011001 singularized 1 -0101010011001 Swarns 1 -0101010011001 Groark 1 -0101010011001 Harlettes 1 -0101010011001 Telecomunicazioni 1 -0101010011001 j.g. 1 -0101010011001 N.F. 1 -0101010011001 Cereno 1 -0101010011001 meltdowns 1 -0101010011001 indeterminable 1 -0101010011001 mensch 1 -0101010011001 3447381 1 -0101010011001 caro 1 -0101010011001 Gottardo 1 -0101010011001 panderetas 1 -0101010011001 856-7500 1 -0101010011001 577-5198 1 -0101010011001 Rouen 1 -0101010011001 has. 1 -0101010011001 877-2011 1 -0101010011001 945-0505 1 -0101010011001 cimbalom 1 -0101010011001 Raffaello 1 -0101010011001 Trackdown 1 -0101010011001 two-reeler 1 -0101010011001 Endings 1 -0101010011001 W.I.L.D. 1 -0101010011001 non-conventional. 1 -0101010011001 Feehan 1 -0101010011001 we. 1 -0101010011001 Gar-nay 1 -0101010011001 beautitul 1 -0101010011001 overearning 1 -0101010011001 Karpa 1 -0101010011001 Tarbell 1 -0101010011001 Yalim 1 -0101010011001 Hizmetleri 1 -0101010011001 round-robins 1 -0101010011001 DuTAXus 1 -0101010011001 palliated 1 -0101010011001 253-5900 1 -0101010011001 547-2255 1 -0101010011001 733-3050 1 -0101010011001 684-6402 1 -0101010011001 54-29-58 1 -0101010011001 R-A-V-I-N-I-A 1 -0101010011001 Wed 1 -0101010011001 Foege 1 -0101010011001 Froslid 1 -0101010011001 Konuntakiet 1 -0101010011001 Politan 1 -0101010011001 Dopebusters 1 -0101010011001 Amalfitano 1 -0101010011001 TAH-day-OOSH 1 -0101010011001 344-5910 1 -0101010011001 Jarvi 1 -0101010011001 989-2987 1 -0101010011001 Dance/France 1 -0101010011001 eveners 1 -0101010011001 Sayin 1 -0101010011001 Spoelberch 1 -0101010011001 erythrae 1 -0101010011001 heh-JEM-a-ne 1 -0101010011001 Trash-Dos 1 -0101010011001 Tris-Dos 1 -0101010011001 Kong-Tokyo 1 -0101010011001 committed. 1 -0101010011001 Rundfunk/Hamburg 1 -0101010011001 write-top 1 -0101010011001 re-instated 1 -0101010011001 Serai 1 -0101010011001 JUCHE 1 -0101010011001 Pauletta 1 -0101010011001 mini-meltdown 1 -0101010011001 first-to-apply 1 -0101010011001 Satirino 1 -0101010011001 re-Germanization 1 -0101010011001 debottlenecking 1 -0101010011001 623-1223 1 -0101010011001 college-educated. 1 -0101010011001 Bagawan 1 -0101010011001 Corporal 1 -0101010011001 dumbbells 1 -0101010011001 Broner 1 -0101010011001 Lile 1 -0101010011001 I.R.S. 2 -0101010011001 coeur 2 -0101010011001 Servicios 2 -0101010011001 Ordained 2 -0101010011001 unlatch 2 -0101010011001 premillennialists 2 -0101010011001 461-9541 2 -0101010011001 Goldfinger 2 -0101010011001 Gala 2 -0101010011001 supercautious 2 -0101010011001 Lawns 2 -0101010011001 but. 2 -0101010011001 874-2424 2 -0101010011001 Ger 2 -0101010011001 intertwine 2 -0101010011001 cryoprobe 2 -0101010011001 everything. 2 -0101010011001 VAX-killer 2 -0101010011001 Manguno 2 -0101010011001 Five-0 2 -0101010011001 Cheeseburger 2 -0101010011001 compacting 2 -0101010011001 961-0644 2 -0101010011001 854-7890 2 -0101010011001 480-3232 2 -0101010011001 Salchow 2 -0101010011001 857-0900 2 -0101010011001 Nightingales 2 -0101010011001 outsources 2 -0101010011001 jells 2 -0101010011001 288-8889 2 -0101010011001 Evolutionary 2 -0101010011001 audit-proof 2 -0101010011001 Urbervilles 2 -0101010011001 Espagna 2 -0101010011001 changarros 2 -0101010011001 otlichno 2 -0101010011001 Oppornockety 2 -0101010011001 371-5656 2 -0101010011001 1-800-4-CANCER 2 -0101010011001 stardust 2 -0101010011001 Strut 2 -0101010011001 marginalize 2 -0101010011001 beanbag 2 -0101010011001 farfetched 2 -0101010011001 623-5775 2 -0101010011001 Peilin 2 -0101010011001 Artistes 2 -0101010011001 Icelanders 2 -0101010011001 outplaced 2 -0101010011001 Marmion 2 -0101010011001 Pieta 2 -0101010011001 thunk 2 -0101010011001 normalizes 2 -0101010011001 muffs 2 -0101010011001 reported. 2 -0101010011001 517-ASIA 2 -0101010011001 Bartee 2 -0101010011001 220-2322 2 -0101010011001 .............................. 2 -0101010011001 commie 2 -0101010011001 aeruginosa 2 -0101010011001 Satie 2 -0101010011001 443-4711 2 -0101010011001 596-5556 2 -0101010011001 loan. 2 -0101010011001 392-4900 2 -0101010011001 extortionist 2 -0101010011001 860-1335 2 -0101010011001 Adam-12 2 -0101010011001 Nibelungen 2 -0101010011001 Desarrollo 2 -0101010011001 476-9064 2 -0101010011001 Riz 2 -0101010011001 893-1930 3 -0101010011001 636-4100 3 -0101010011001 prepossessing 3 -0101010011001 Melo 3 -0101010011001 notes. 3 -0101010011001 Rev 3 -0101010011001 crystalized 3 -0101010011001 unarguable 3 -0101010011001 Capt 3 -0101010011001 Ternyila 3 -0101010011001 creaming 3 -0101010011001 864-3330 3 -0101010011001 diclosed 3 -0101010011001 minimis 3 -0101010011001 721-8222 3 -0101010011001 Ets 3 -0101010011001 vended 3 -0101010011001 mine-related 3 -0101010011001 Adm 3 -0101010011001 Taps 3 -0101010011001 status. 3 -0101010011001 652-5577 3 -0101010011001 924-0077 3 -0101010011001 Gama 4 -0101010011001 avows 4 -0101010011001 overstretch 4 -0101010011001 Lt 4 -0101010011001 2-8 4 -0101010011001 Grieux 4 -0101010011001 Lammermoor 4 -0101010011001 362-1911 4 -0101010011001 inc 4 -0101010011001 Regatta 4 -0101010011001 sloo 4 -0101010011001 ................ 4 -0101010011001 Bhd 4 -0101010011001 874-6770 5 -0101010011001 dislosed 5 -0101010011001 .......................... 5 -0101010011001 332-2244 5 -0101010011001 minimus 5 -0101010011001 na 5 -0101010011001 ........................... 5 -0101010011001 procrastinated 5 -0101010011001 disclosed. 5 -0101010011001 870-5570 6 -0101010011001 Tues 6 -0101010011001 ing 6 -0101010011001 Sgt 6 -0101010011001 246-8989 6 -0101010011001 Tombs 6 -0101010011001 227-ARTS 6 -0101010011001 Dromey 7 -0101010011001 242-0800 7 -0101010011001 Thurs 8 -0101010011001 affaires 8 -0101010011001 Dept 8 -0101010011001 247-7800 9 -0101010011001 ............................. 10 -0101010011001 Ret 10 -0101010011001 beckoned 11 -0101010011001 ........................ 12 -0101010011001 Gov 12 -0101010011001 ................. 12 -0101010011001 mon 12 -0101010011001 ......................... 12 -0101010011001 .............. 12 -0101010011001 ........... 12 -0101010011001 Sdn 13 -0101010011001 Msgr 13 -0101010011001 ............ 13 -0101010011001 Col 14 -0101010011001 Gen 14 -0101010011001 ............... 14 -0101010011001 Pte 15 -0101010011001 362-6000 15 -0101010011001 ....... 15 -0101010011001 ..................... 15 -0101010011001 DIFF 17 -0101010011001 ........ 17 -0101010011001 .......... 17 -0101010011001 .................. 17 -0101010011001 ...... 19 -0101010011001 ............. 19 -0101010011001 ................... 19 -0101010011001 ....................... 19 -0101010011001 ...................... 20 -0101010011001 ..... 22 -0101010011001 sic 22 -0101010011001 .................... 23 -0101010011001 Ms 30 -0101010011001 Brig 31 -0101010011001 Mrs 32 -0101010011001 Sen 44 -0101010011001 Pty 47 -0101010011001 Zarett 76 -0101010011001 s 96 -0101010011001 .. 107 -0101010011001 Bros 121 -0101010011001 Ludcke 122 -0101010011001 v 266 -0101010011001 vs 302 -0101010011001 disclosed 6271 -0101010011001 Mr 848 -0101010011010 gawps 1 -0101010011010 document-checking 1 -0101010011010 Naef 1 -0101010011010 Roadhouse 1 -0101010011010 snow-plowing 1 -0101010011010 asset-switching 1 -0101010011010 Kwang-Sun 1 -0101010011010 ranger-naturalist 1 -0101010011010 outsanding 1 -0101010011010 close-downs 1 -0101010011010 re-gasified 1 -0101010011010 stock-valued 1 -0101010011010 Amwas 1 -0101010011010 7756 1 -0101010011010 5,858 1 -0101010011010 Cafes 1 -0101010011010 constructor 1 -0101010011010 1013 1 -0101010011010 priceclosed 1 -0101010011010 3E 1 -0101010011010 pavillion 1 -0101010011010 Themepark 1 -0101010011010 law-in-practice 1 -0101010011010 oinked 1 -0101010011010 trend-spotter 1 -0101010011010 Porczak 1 -0101010011010 berms 1 -0101010011010 2,606 1 -0101010011010 scotch-sodas 1 -0101010011010 pallbearer 1 -0101010011010 apothecaries 1 -0101010011010 unsurprised 1 -0101010011010 hazard-free 1 -0101010011010 position-balancing 1 -0101010011010 C-18 1 -0101010011010 re-arrested 1 -0101010011010 information-selling 1 -0101010011010 patient-advocates 1 -0101010011010 Fless 1 -0101010011010 shares-valued 1 -0101010011010 consomme 1 -0101010011010 dislcosed 1 -0101010011010 scholar-in-residence 1 -0101010011010 1014 2 -0101010011010 closed 19470 -0101010011010 sneered 17 -01010100110110 miscoded 1 -01010100110110 rescreens 1 -01010100110110 squishing 1 -01010100110110 crash-tested 1 -01010100110110 waybills 1 -01010100110110 fawn-pink 1 -01010100110110 boogying 1 -01010100110110 Curators 1 -01010100110110 F-15Es 1 -01010100110110 bah-humbugs 1 -01010100110110 Dismissals 1 -01010100110110 Schoene 1 -01010100110110 avaiable 1 -01010100110110 stuttered 1 -01010100110110 Asleep 1 -01010100110110 gapes 1 -01010100110110 provident 1 -01010100110110 surgeon-in-chief 1 -01010100110110 R-1 1 -01010100110110 re-looking 1 -01010100110110 wakened 1 -01010100110110 de-accessioned 1 -01010100110110 jaggedly 1 -01010100110110 availble 1 -01010100110110 Caniaris 1 -01010100110110 guffawed 1 -01010100110110 M-Z 1 -01010100110110 A-L 1 -01010100110110 yowled 1 -01010100110110 feinting 1 -01010100110110 rematerializes 1 -01010100110110 Greekfest 1 -01010100110110 121,761 1 -01010100110110 2105 1 -01010100110110 mid-park 1 -01010100110110 ascendent 1 -01010100110110 interning 2 -01010100110110 potlines 2 -01010100110110 transshipped 3 -01010100110110 congregating 3 -01010100110110 base-priced 3 -01010100110110 putable 4 -01010100110110 bridles 4 -01010100110110 champing 5 -01010100110110 cringes 5 -01010100110110 scoffing 5 -01010100110110 marveling 5 -01010100110110 berthed 5 -01010100110110 winked 7 -01010100110110 repriced 13 -01010100110110 hooted 14 -01010100110110 nipping 18 -01010100110110 scoffed 51 -01010100110110 balking 68 -01010100110110 scoffs 74 -01010100110110 adept 128 -01010100110110 aimed 2759 -01010100110110 quoted 3344 -01010100110110 valued 4237 -01010100110110 priced 3965 -01010100110111 1668.1 1 -01010100110111 1244.98 1 -01010100110111 1260.68 1 -01010100110111 1304.41 1 -01010100110111 1311.22 1 -01010100110111 1222.41 1 -01010100110111 1248.01 1 -01010100110111 upthrust 1 -01010100110111 46-0 1 -01010100110111 1291.49 1 -01010100110111 1299.96 1 -01010100110111 93.711 1 -01010100110111 1299.72 1 -01010100110111 1305.85 1 -01010100110111 deadsville 1 -01010100110111 unprofessional. 1 -01010100110111 301-115 1 -01010100110111 1314.38 1 -01010100110111 1303.70 1 -01010100110111 1312.41 1 -01010100110111 1324.74 1 -01010100110111 99.949 1 -01010100110111 spoonfed 1 -01010100110111 1297.63 1 -01010100110111 1303.40 1 -01010100110111 prevaricating 1 -01010100110111 over-compensated 1 -01010100110111 62-25 1 -01010100110111 1109.08 1 -01010100110111 whomped 1 -01010100110111 437,195,449 1 -01010100110111 marketwise 1 -01010100110111 122.30 1 -01010100110111 void. 1 -01010100110111 Waukee 1 -01010100110111 faux-naif 1 -01010100110111 1246.13 1 -01010100110111 1256.80 1 -01010100110111 1257.38 1 -01010100110111 1264.48 1 -01010100110111 honeycoated 1 -01010100110111 juridically 1 -01010100110111 Stormin 1 -01010100110111 disconsolately 1 -01010100110111 barnburners 1 -01010100110111 unsweepable 1 -01010100110111 tire-kickers 1 -01010100110111 1219.50 1 -01010100110111 sayin 1 -01010100110111 38-24 1 -01010100110111 99.804 1 -01010100110111 pro-steel 1 -01010100110111 entreat 1 -01010100110111 badness 1 -01010100110111 368,579,336 1 -01010100110111 floozies 1 -01010100110111 lightkeepers 1 -01010100110111 1312.52 1 -01010100110111 false-first 1 -01010100110111 1289.24 1 -01010100110111 piebald 1 -01010100110111 99.936 1 -01010100110111 1261.09 1 -01010100110111 1240.24 1 -01010100110111 1249.18 1 -01010100110111 1281.20 1 -01010100110111 higgledy-piggledy 1 -01010100110111 1262.23 1 -01010100110111 279,969,907 1 -01010100110111 shocked. 1 -01010100110111 1251.94 1 -01010100110111 rear- 1 -01010100110111 1238.54 1 -01010100110111 1250.17 1 -01010100110111 1253.69 1 -01010100110111 1245.67 1 -01010100110111 250-170 1 -01010100110111 272-152 1 -01010100110111 269-141 1 -01010100110111 1236.35 1 -01010100110111 1227.75 1 -01010100110111 1230.00 1 -01010100110111 1239.40 1 -01010100110111 1224.89 1 -01010100110111 88,211 1 -01010100110111 1252.29 1 -01010100110111 1248.03 1 -01010100110111 1949-58 1 -01010100110111 1260.28 1 -01010100110111 1254.34 1 -01010100110111 0-and-5 1 -01010100110111 reunites 1 -01010100110111 1257.40 1 -01010100110111 short-changing 1 -01010100110111 tube-like 1 -01010100110111 1426.18 1 -01010100110111 1431.64 1 -01010100110111 fluoric 1 -01010100110111 1205.65 1 -01010100110111 unindustrialized 1 -01010100110111 Downer 1 -01010100110111 1236.13 1 -01010100110111 meaninglessly 1 -01010100110111 sacreligious 1 -01010100110111 1247.08 1 -01010100110111 1648 1 -01010100110111 Oxford-cloth 1 -01010100110111 Kalyayevskaya 1 -01010100110111 1256.88 1 -01010100110111 dilutants 1 -01010100110111 1239.62 1 -01010100110111 1250.29 1 -01010100110111 rapine 1 -01010100110111 1176.54 1 -01010100110111 three-deep 1 -01010100110111 1189.29 1 -01010100110111 1172.04 1 -01010100110111 1162.27 1 -01010100110111 1166.90 1 -01010100110111 1170.79 1 -01010100110111 waist-long 1 -01010100110111 99.117 1 -01010100110111 dark-Dawson 1 -01010100110111 1248.56 1 -01010100110111 64-34 1 -01010100110111 transgressed 1 -01010100110111 protected. 1 -01010100110111 1148.38 1 -01010100110111 restudied 1 -01010100110111 motivated. 1 -01010100110111 1160.55 1 -01010100110111 1181.28 1 -01010100110111 1169.74 1 -01010100110111 1163.64 1 -01010100110111 1171.71 1 -01010100110111 1253.43 1 -01010100110111 exprostitutes 1 -01010100110111 1256.10 1 -01010100110111 1251.20 1 -01010100110111 concerti 1 -01010100110111 self-financeable 1 -01010100110111 pigmented 1 -01010100110111 1241.47 1 -01010100110111 overswinging 1 -01010100110111 President. 1 -01010100110111 42.890 1 -01010100110111 1254.95 1 -01010100110111 1250.31 1 -01010100110111 unforecastable 1 -01010100110111 1264.03 1 -01010100110111 digressive 1 -01010100110111 Enco 1 -01010100110111 pre-worn 1 -01010100110111 national-security-related 1 -01010100110111 11,612 1 -01010100110111 1286.18 1 -01010100110111 1273.68 1 -01010100110111 off-line 1 -01010100110111 unfulfillable 1 -01010100110111 under-declared 1 -01010100110111 1417.28 1 -01010100110111 1421.01 1 -01010100110111 14-7 1 -01010100110111 peevish 1 -01010100110111 dimmest 1 -01010100110111 45-to-1 1 -01010100110111 682,800 1 -01010100110111 99.968 1 -01010100110111 patrilineage 1 -01010100110111 1410.39 1 -01010100110111 8:26.52 1 -01010100110111 penitence 1 -01010100110111 1429.91 1 -01010100110111 liquid. 1 -01010100110111 pro-Long 1 -01010100110111 consumer-controlled 1 -01010100110111 94.196 1 -01010100110111 de-Americanized 1 -01010100110111 pushed. 1 -01010100110111 99.863 1 -01010100110111 58,632 1 -01010100110111 frowned-upon 1 -01010100110111 hammy 1 -01010100110111 Nembutal 1 -01010100110111 tape-delayed 1 -01010100110111 93.367 1 -01010100110111 gender- 1 -01010100110111 Conquistadore 1 -01010100110111 1292.94 1 -01010100110111 1280.64 1 -01010100110111 underpraised 1 -01010100110111 1282.15 1 -01010100110111 1296.37 1 -01010100110111 orthopod 1 -01010100110111 satiable 1 -01010100110111 99.908 1 -01010100110111 163,235,000 1 -01010100110111 Togolese 1 -01010100110111 1315.95 1 -01010100110111 1256.91 1 -01010100110111 1293.83 1 -01010100110111 1291.47 1 -01010100110111 refranchised 1 -01010100110111 weakest. 1 -01010100110111 99.909 1 -01010100110111 194,100 1 -01010100110111 99.681 1 -01010100110111 99.849 1 -01010100110111 99.772 1 -01010100110111 99.862 1 -01010100110111 1397.04 1 -01010100110111 1380.65 1 -01010100110111 non-failure 1 -01010100110111 out-dealt 1 -01010100110111 1420.75 1 -01010100110111 1408.79 1 -01010100110111 contaminant-free 1 -01010100110111 1345.48 1 -01010100110111 oversleeping 1 -01010100110111 94.014 1 -01010100110111 2230 1 -01010100110111 Westville 1 -01010100110111 1319.87 1 -01010100110111 1335.74 1 -01010100110111 undertreated 1 -01010100110111 1385.61 1 -01010100110111 1391.19 1 -01010100110111 war-crazy 1 -01010100110111 1376.29 1 -01010100110111 1383.79 1 -01010100110111 Malwenn 1 -01010100110111 under-collateralized 1 -01010100110111 Wendelike 1 -01010100110111 1276.70 1 -01010100110111 1288.86 1 -01010100110111 1282.10 1 -01010100110111 1289.09 1 -01010100110111 1291.20 1 -01010100110111 107-106 1 -01010100110111 330,967 1 -01010100110111 entertainments. 1 -01010100110111 undiscussed 1 -01010100110111 1292.53 1 -01010100110111 1302.90 1 -01010100110111 collectable 1 -01010100110111 93.387 1 -01010100110111 1268.02 1 -01010100110111 1280.52 1 -01010100110111 Tokyo-bound 1 -01010100110111 1274.81 1 -01010100110111 1287.66 1 -01010100110111 1265.02 1 -01010100110111 1274.44 1 -01010100110111 non-sexy 1 -01010100110111 180th 1 -01010100110111 euthanized 1 -01010100110111 acrylonitrile 1 -01010100110111 steelworking 1 -01010100110111 appeasement-minded 1 -01010100110111 1307.88 1 -01010100110111 1313.74 1 -01010100110111 unexposable 1 -01010100110111 1299.63 1 -01010100110111 1310.42 1 -01010100110111 1305.55 1 -01010100110111 1315.81 1 -01010100110111 62,234 1 -01010100110111 1306.88 1 -01010100110111 1313.09 1 -01010100110111 1313.14 1 -01010100110111 1321.01 1 -01010100110111 241.60 1 -01010100110111 1210.63 1 -01010100110111 1227.84 1 -01010100110111 lower-seeming 1 -01010100110111 1198.90 1 -01010100110111 guilt-avoidance 1 -01010100110111 239.65 1 -01010100110111 overlighted 1 -01010100110111 1219.82 1 -01010100110111 no-bones-about-it 1 -01010100110111 1286.60 1 -01010100110111 1293.89 1 -01010100110111 649,312 1 -01010100110111 1253.06 1 -01010100110111 postscripts 1 -01010100110111 1234.39 1 -01010100110111 1216.95 1 -01010100110111 94.257 1 -01010100110111 1244.74 1 -01010100110111 1253.61 1 -01010100110111 communist-funded 1 -01010100110111 hyper-achievers 1 -01010100110111 orchidic 1 -01010100110111 requested. 1 -01010100110111 266,578,847 1 -01010100110111 2,098,800 1 -01010100110111 Mozartian 1 -01010100110111 equivlent 1 -01010100110111 undercompensated 1 -01010100110111 86,999 1 -01010100110111 1,599.63 1 -01010100110111 pro-consumer. 1 -01010100110111 1440.32 1 -01010100110111 require. 1 -01010100110111 1172.45 1 -01010100110111 1184.35 1 -01010100110111 roly-poly 1 -01010100110111 20,862 1 -01010100110111 35,625 1 -01010100110111 attenuate 1 -01010100110111 time-comsuming 1 -01010100110111 yours. 1 -01010100110111 1,577,000 1 -01010100110111 94.353 1 -01010100110111 1426.28 1 -01010100110111 unaired 1 -01010100110111 1427.92 1 -01010100110111 1429.31 1 -01010100110111 bowwow 1 -01010100110111 99.889 1 -01010100110111 LeCar 1 -01010100110111 Iranistan 1 -01010100110111 Contradeception 1 -01010100110111 301,850,875 1 -01010100110111 99.948 1 -01010100110111 3-and-1 1 -01010100110111 lyin 1 -01010100110111 disqualifed 1 -01010100110111 17,268 1 -01010100110111 1227.73 1 -01010100110111 1223.98 1 -01010100110111 canceled. 1 -01010100110111 1231.90 1 -01010100110111 uncombed 1 -01010100110111 illogical. 1 -01010100110111 1216.98 1 -01010100110111 1205.75 1 -01010100110111 1329.22 1 -01010100110111 untheatrical 1 -01010100110111 318,169 1 -01010100110111 re-leasable 1 -01010100110111 127,166 1 -01010100110111 roughshot 1 -01010100110111 23981.94 1 -01010100110111 Carson-related 1 -01010100110111 out-organized 1 -01010100110111 abridges 1 -01010100110111 chairwomen 1 -01010100110111 378,225 1 -01010100110111 652,261 1 -01010100110111 bottom-feeding 1 -01010100110111 134,207,800 1 -01010100110111 nonacquisitive 1 -01010100110111 1948-1964 1 -01010100110111 yearly. 1 -01010100110111 1232.86 1 -01010100110111 1239.32 1 -01010100110111 palatially 1 -01010100110111 uncataloged 1 -01010100110111 frost-riven 1 -01010100110111 scratchers 1 -01010100110111 1228.59 1 -01010100110111 retch 1 -01010100110111 part-Western 1 -01010100110111 1294.25 1 -01010100110111 1287.18 1 -01010100110111 redskins 1 -01010100110111 lowwage 1 -01010100110111 1243.76 1 -01010100110111 1237.73 1 -01010100110111 shifty-eyed 1 -01010100110111 Mengistus 1 -01010100110111 224-197 1 -01010100110111 24,036 1 -01010100110111 359,239 1 -01010100110111 128,679 1 -01010100110111 rapers 1 -01010100110111 taxdeductible 1 -01010100110111 Flopsy 1 -01010100110111 1204.80 1 -01010100110111 electromedicine 1 -01010100110111 1327.83 1 -01010100110111 adornments 1 -01010100110111 Parmesan 1 -01010100110111 1281.50 1 -01010100110111 1267.42 1 -01010100110111 1277.71 1 -01010100110111 Alar-free 1 -01010100110111 genuflected 1 -01010100110111 uncrated 1 -01010100110111 418-to-0 1 -01010100110111 1280.07 1 -01010100110111 textbook. 1 -01010100110111 1276.45 1 -01010100110111 1286.40 1 -01010100110111 1265.72 1 -01010100110111 1314.41 1 -01010100110111 mega-inventory 1 -01010100110111 1275.89 1 -01010100110111 12-and-8 1 -01010100110111 1281.36 1 -01010100110111 parous 1 -01010100110111 85.876 1 -01010100110111 true/false 1 -01010100110111 1282.71 1 -01010100110111 1326.77 1 -01010100110111 1323.41 1 -01010100110111 23,530 1 -01010100110111 1311.70 1 -01010100110111 1298.32 1 -01010100110111 1249.82 1 -01010100110111 nonrealistic 1 -01010100110111 1251.40 1 -01010100110111 1240.88 1 -01010100110111 Underperform 1 -01010100110111 1305.28 1 -01010100110111 1265.56 1 -01010100110111 1253.24 1 -01010100110111 easy. 1 -01010100110111 feeble-hearted 1 -01010100110111 1249.85 1 -01010100110111 eliminated. 1 -01010100110111 1243.78 1 -01010100110111 born. 1 -01010100110111 competition-oriented 1 -01010100110111 1258.24 1 -01010100110111 nine-inches 1 -01010100110111 5.9s 1 -01010100110111 DOA 1 -01010100110111 1280.49 1 -01010100110111 assents 1 -01010100110111 1323.15 1 -01010100110111 1306.15 1 -01010100110111 1273.88 1 -01010100110111 1270.19 1 -01010100110111 1271.90 1 -01010100110111 shor 1 -01010100110111 1216.92 1 -01010100110111 well-qualified. 1 -01010100110111 34911.80 1 -01010100110111 1223.62 1 -01010100110111 423-28 1 -01010100110111 aphasic 1 -01010100110111 pouty-looking 1 -01010100110111 858,899 1 -01010100110111 1,275,848 1 -01010100110111 unprospected 1 -01010100110111 1219.94 1 -01010100110111 1216.00 1 -01010100110111 61,077,000 1 -01010100110111 seven-years 1 -01010100110111 1219.02 1 -01010100110111 1221.47 1 -01010100110111 11,135 1 -01010100110111 unjustifiable. 1 -01010100110111 metalheads 1 -01010100110111 unspontaneous 1 -01010100110111 1217.90 1 -01010100110111 1212.35 1 -01010100110111 1208.76 1 -01010100110111 1210.92 1 -01010100110111 bull-forward 1 -01010100110111 1211.82 1 -01010100110111 national/international 1 -01010100110111 cholorfluorocarbons 1 -01010100110111 1212.60 1 -01010100110111 1219.33 1 -01010100110111 Shapinsay 1 -01010100110111 Rousay 1 -01010100110111 172,283 1 -01010100110111 431,933 1 -01010100110111 cost-prohibitive 1 -01010100110111 1202.19 1 -01010100110111 1201.04 1 -01010100110111 yen- 1 -01010100110111 owl-shaped 1 -01010100110111 70,000- 1 -01010100110111 semi-demoralized 1 -01010100110111 given. 1 -01010100110111 Dicarban 1 -01010100110111 639,720 1 -01010100110111 90-3 1 -01010100110111 177,145 1 -01010100110111 hyper-ambitious 1 -01010100110111 sorry. 1 -01010100110111 fly-free 1 -01010100110111 flipper-free 1 -01010100110111 Methotrexata 1 -01010100110111 1248.21 1 -01010100110111 drought-triggered 1 -01010100110111 flight-tested 1 -01010100110111 1241.53 1 -01010100110111 816,700 1 -01010100110111 malled 1 -01010100110111 1236.92 1 -01010100110111 active. 1 -01010100110111 deliberate. 1 -01010100110111 bid-only 1 -01010100110111 bodice-ripping 1 -01010100110111 impressive. 1 -01010100110111 13-5 1 -01010100110111 .292 1 -01010100110111 1251.68 1 -01010100110111 1245.68 1 -01010100110111 112,945 1 -01010100110111 28,224.16 1 -01010100110111 bum-rushed 1 -01010100110111 unbankable 1 -01010100110111 1222.07 1 -01010100110111 1230.38 1 -01010100110111 demythologize 1 -01010100110111 1228.99 1 -01010100110111 1223.45 1 -01010100110111 Symmetrel 1 -01010100110111 autarkies 1 -01010100110111 1228.38 1 -01010100110111 Japan-related 1 -01010100110111 4,280,000 1 -01010100110111 1244.42 1 -01010100110111 1249.35 1 -01010100110111 1229.12 1 -01010100110111 offputting 2 -01010100110111 torchbearer 2 -01010100110111 uno 2 -01010100110111 discontinued. 2 -01010100110111 1244.05 2 -01010100110111 beefcake 2 -01010100110111 de-alignment 2 -01010100110111 cupcakes 2 -01010100110111 misanthropes 2 -01010100110111 ingloriously 2 -01010100110111 900-1900 2 -01010100110111 flyover 2 -01010100110111 product-short 2 -01010100110111 Birdland 2 -01010100110111 silent. 2 -01010100110111 Geolite 2 -01010100110111 99.893 2 -01010100110111 Xeroxed 2 -01010100110111 menudo 2 -01010100110111 Italy. 2 -01010100110111 captious 2 -01010100110111 barefoot. 2 -01010100110111 mini-warehouse 2 -01010100110111 99.502 2 -01010100110111 2,944 2 -01010100110111 declaimed 2 -01010100110111 something. 2 -01010100110111 Giardia 2 -01010100110111 decontaminated 2 -01010100110111 Trandate 2 -01010100110111 2.6-to-1 2 -01010100110111 mortared 2 -01010100110111 unreviewed 2 -01010100110111 Cottontail 2 -01010100110111 unsellable 2 -01010100110111 druggie 2 -01010100110111 Calfou 2 -01010100110111 unnoticeable 2 -01010100110111 1226.72 2 -01010100110111 well-secured 2 -01010100110111 perspicacious 2 -01010100110111 dead-even 2 -01010100110111 untraceable 2 -01010100110111 underequipped 2 -01010100110111 signal-caller 2 -01010100110111 1268.19 2 -01010100110111 detonography 2 -01010100110111 1246.88 2 -01010100110111 oxytocin 2 -01010100110111 13-3 2 -01010100110111 irretrievable 2 -01010100110111 valedictorian 2 -01010100110111 crosscut 2 -01010100110111 hushmail 2 -01010100110111 unpegged 2 -01010100110111 262-155 2 -01010100110111 goggling 2 -01010100110111 fit-looking 2 -01010100110111 trammeled 2 -01010100110111 filched 2 -01010100110111 tails-you-lose 2 -01010100110111 riches-to-rags 2 -01010100110111 flossing 2 -01010100110111 xericity 2 -01010100110111 henna 2 -01010100110111 46-10 2 -01010100110111 polarizer 2 -01010100110111 yo 2 -01010100110111 formals 2 -01010100110111 fly-casting 2 -01010100110111 beer-drinkers 2 -01010100110111 sneezed 2 -01010100110111 WAGA-TV 3 -01010100110111 WTAF-TV 3 -01010100110111 over-represented 3 -01010100110111 Notch 3 -01010100110111 302-102 3 -01010100110111 manana 3 -01010100110111 profanities 3 -01010100110111 stultified 3 -01010100110111 half-completed 3 -01010100110111 pollinating 3 -01010100110111 treasonable 3 -01010100110111 Bubbles 3 -01010100110111 cantaloupe 3 -01010100110111 unimpressively 3 -01010100110111 sombreros 3 -01010100110111 awestruck 3 -01010100110111 watercooled 3 -01010100110111 LIES 3 -01010100110111 underperformers 4 -01010100110111 quartered 4 -01010100110111 10-0 4 -01010100110111 16-1 4 -01010100110111 decriminalized 4 -01010100110111 keening 4 -01010100110111 administrable 4 -01010100110111 unpolitical 4 -01010100110111 morons 4 -01010100110111 psychodrama 4 -01010100110111 C- 4 -01010100110111 whoopee 4 -01010100110111 shirtless 5 -01010100110111 noncancerous 5 -01010100110111 embroideries 5 -01010100110111 cringing 5 -01010100110111 bougainvillea 5 -01010100110111 tonton 5 -01010100110111 shucks 5 -01010100110111 water-skiing 5 -01010100110111 debugged 6 -01010100110111 unhurt 6 -01010100110111 little-changed 6 -01010100110111 23-20 6 -01010100110111 seceded 6 -01010100110111 conniving 7 -01010100110111 uninhabitable 7 -01010100110111 inaudible 7 -01010100110111 unrecognizable 7 -01010100110111 bleary-eyed 7 -01010100110111 unobtainable 7 -01010100110111 imperceptibly 7 -01010100110111 first-timers 7 -01010100110111 under-represented 7 -01010100110111 groggy 7 -01010100110111 blah 8 -01010100110111 Gabriela 9 -01010100110111 unaltered 10 -01010100110111 zilch 10 -01010100110111 inconclusively 10 -01010100110111 unshaken 12 -01010100110111 7-6 12 -01010100110111 imperceptible 12 -01010100110111 unavailing 12 -01010100110111 6-4 13 -01010100110111 ands 15 -01010100110111 finders 16 -01010100110111 trembling 17 -01010100110111 6-1 19 -01010100110111 indistinguishable 39 -01010100110111 aghast 46 -01010100110111 nil 57 -01010100110111 aloof 70 -01010100110111 peaking 92 -01010100110111 asleep 105 -01010100110111 oversubscribed 148 -01010100110111 yes 499 -01010100110111 flat 1814 -01010100110111 mixed 2415 -01010100110111 unchanged 4314 -01010100111000 disinformational 1 -01010100111000 unstyled 1 -01010100111000 1.70s 1 -01010100111000 fullbacks 1 -01010100111000 self-seeding 1 -01010100111000 adds. 1 -01010100111000 game-show-host 1 -01010100111000 unitized 1 -01010100111000 elevator-repair 1 -01010100111000 distract-the-guard 1 -01010100111000 reawakens 1 -01010100111000 back-fits 1 -01010100111000 polytonal 1 -01010100111000 line-readings 1 -01010100111000 less-specific 1 -01010100111000 assimilationism 1 -01010100111000 body-language 1 -01010100111000 sendoff 1 -01010100111000 Moonie 1 -01010100111000 re-registered 1 -01010100111000 free-verse 1 -01010100111000 cranium 1 -01010100111000 eforts 1 -01010100111000 weapons-sales 1 -01010100111000 bitchiness 1 -01010100111000 tile-walled 1 -01010100111000 internal-body 1 -01010100111000 metaloids 1 -01010100111000 positive-working 1 -01010100111000 sweptback 1 -01010100111000 tmes 1 -01010100111000 seminar-cruises 1 -01010100111000 gray-shingled 1 -01010100111000 untillable 1 -01010100111000 l-lysine 1 -01010100111000 puts-rights 1 -01010100111000 cement-and-glass 1 -01010100111000 center-party 1 -01010100111000 ropey 1 -01010100111000 white-glove 1 -01010100111000 redefection 1 -01010100111000 acid-neutralizing 1 -01010100111000 African-language 1 -01010100111000 7-iron 1 -01010100111000 frontpage 1 -01010100111000 penetrative 1 -01010100111000 china-doll 1 -01010100111000 arms-for-oil 1 -01010100111000 workstation-like 1 -01010100111000 admissions-test 1 -01010100111000 precedent-making 1 -01010100111000 odes 1 -01010100111000 anti-defamation 1 -01010100111000 woodfiber 1 -01010100111000 dissembled 1 -01010100111000 jawan 1 -01010100111000 human-scale 1 -01010100111000 trout. 1 -01010100111000 electricty 1 -01010100111000 counterreaction 1 -01010100111000 travel-cost 1 -01010100111000 corporate-pilot 1 -01010100111000 print-ready 1 -01010100111000 counterattck 1 -01010100111000 draft-Hart 1 -01010100111000 silver-grey 1 -01010100111000 terrain-reading 1 -01010100111000 dismissed. 1 -01010100111000 Washington-PAC 1 -01010100111000 brother-director 1 -01010100111000 loan-defaulters 1 -01010100111000 arbitration-eligibility 1 -01010100111000 Franco-French 1 -01010100111000 medical-record 1 -01010100111000 proem 1 -01010100111000 four-footers 1 -01010100111000 reinfested 1 -01010100111000 non-Texas-based 1 -01010100111000 scroll-like 1 -01010100111000 precooking 1 -01010100111000 Tudorstyle 1 -01010100111000 jargoned 1 -01010100111000 wine-marinated 1 -01010100111000 ferromanganese 1 -01010100111000 split-uppable 1 -01010100111000 cocaine-tainted 1 -01010100111000 2-4-6-8-10 1 -01010100111000 technical-personnel 1 -01010100111000 vase-like 1 -01010100111000 Aebi 1 -01010100111000 1.8430-mark 1 -01010100111000 casuals 1 -01010100111000 hot-formed 1 -01010100111000 grow-up 1 -01010100111000 10th-century 1 -01010100111000 rock-lined 1 -01010100111000 extra-high 1 -01010100111000 suggestible 1 -01010100111000 sections. 1 -01010100111000 recombined 1 -01010100111000 oil-on-canvas 1 -01010100111000 multi-union 1 -01010100111000 pre-first 1 -01010100111000 1,017,000 2 -01010100111000 software-driven 2 -01010100111000 plated 2 -01010100111000 aleck 2 -01010100111000 bondmarket 2 -01010100111000 overenforced 2 -01010100111000 extra-early 2 -01010100111000 pinch-hitting 2 -01010100111000 counterarguments 2 -01010100111000 drug-tainted 2 -01010100111000 Somocistas 2 -01010100111000 busy-work 2 -01010100111000 procreative 2 -01010100111000 biocomputing 2 -01010100111000 preferrential 2 -01010100111000 self-inspired 2 -01010100111000 automatons 2 -01010100111000 stayers 2 -01010100111000 left-over 2 -01010100111000 gangways 3 -01010100111000 determinative 3 -01010100111000 11-2 3 -01010100111000 1,278 3 -01010100111000 attention-getters 3 -01010100111000 returnable 3 -01010100111000 fonder 3 -01010100111000 basmati 3 -01010100111000 suction 4 -01010100111000 correctable 4 -01010100111000 fealty 6 -01010100111000 on-call 6 -01010100111000 amniocentesis 7 -01010100111000 sufficent 7 -01010100111000 fructose 10 -01010100111000 facie 15 -01010100111000 uncommon 136 -01010100111000 ample 292 -01010100111000 insufficient 350 -01010100111000 adequate 972 -01010100111000 enough 9349 -01010100111000 sufficient 1272 -01010100111001 redefected 1 -01010100111001 yaws 1 -01010100111001 reexported 1 -01010100111001 twice-rejected 1 -01010100111001 situation-based 1 -01010100111001 3:59:50 1 -01010100111001 1,548 1 -01010100111001 1398 1 -01010100111001 14,029 1 -01010100111001 shimmies 1 -01010100111001 22- 1 -01010100111001 fetishistic 1 -01010100111001 7,890 1 -01010100111001 Sulaimaniya 1 -01010100111001 10,104 1 -01010100111001 Veritys 1 -01010100111001 non-actors 1 -01010100111001 Cuapa 1 -01010100111001 adjustability 1 -01010100111001 jacket-flap 1 -01010100111001 Northeast-originated 1 -01010100111001 unenlightening 1 -01010100111001 eligibles 1 -01010100111001 1,197 1 -01010100111001 embarkation 1 -01010100111001 8,657 1 -01010100111001 date-of-birth 1 -01010100111001 run-the-company 1 -01010100111001 263-254 1 -01010100111001 physician-administrators 1 -01010100111001 non-Babbitts 1 -01010100111001 280.93 1 -01010100111001 30.08 1 -01010100111001 1,531 1 -01010100111001 5,343 1 -01010100111001 Transcaucasia 1 -01010100111001 Cuxhaven 1 -01010100111001 reel-life 1 -01010100111001 hortatory 1 -01010100111001 0.5500 1 -01010100111001 underreact 1 -01010100111001 150-152 1 -01010100111001 2240 1 -01010100111001 WRLT-FM 1 -01010100111001 144,050 1 -01010100111001 staff/counselor 1 -01010100111001 non-diabetics 1 -01010100111001 16,496 1 -01010100111001 99.055 1 -01010100111001 brainwork 1 -01010100111001 electrifyingly 1 -01010100111001 worker-days 1 -01010100111001 Tranyslvania 1 -01010100111001 post-romantic 1 -01010100111001 99.682 1 -01010100111001 9-Ball 1 -01010100111001 fusion-breakthroughs 1 -01010100111001 99.655 1 -01010100111001 Fugger 1 -01010100111001 trans-shipping 1 -01010100111001 8,531 1 -01010100111001 Pennsylvanians 1 -01010100111001 99.812 1 -01010100111001 charge-related 1 -01010100111001 key-light 1 -01010100111001 KZEW-FM 1 -01010100111001 hexachlorobenzene 1 -01010100111001 yawing 1 -01010100111001 1,547,500 1 -01010100111001 Ponchatoula 1 -01010100111001 aversions 1 -01010100111001 5.7305 1 -01010100111001 3.4026 1 -01010100111001 99.542 1 -01010100111001 2,211 1 -01010100111001 oedipal 1 -01010100111001 97.14 1 -01010100111001 Johnny-come-latelys 1 -01010100111001 36-hour-drive 1 -01010100111001 rock-scissors-paper 1 -01010100111001 capital-recycling 1 -01010100111001 1/4-percentage-point 1 -01010100111001 0.008000 1 -01010100111001 Busser 1 -01010100111001 Lupron 1 -01010100111001 talent-management 1 -01010100111001 retrospects 1 -01010100111001 discriminatry 1 -01010100111001 net-leased 1 -01010100111001 multileveled 1 -01010100111001 leonine 1 -01010100111001 recommitting 1 -01010100111001 Shatilla 1 -01010100111001 NOD 1 -01010100111001 re-enlisted 1 -01010100111001 uncommitteds 1 -01010100111001 technocracy 1 -01010100111001 overcooks 1 -01010100111001 9,230 1 -01010100111001 CBS/Records 1 -01010100111001 accompnaying 1 -01010100111001 WJLA 1 -01010100111001 retransmited 1 -01010100111001 Bensonhurt 1 -01010100111001 stock-heavy 1 -01010100111001 anti-big-business 1 -01010100111001 canners 1 -01010100111001 reconversion 1 -01010100111001 3,019,449 1 -01010100111001 sublets 1 -01010100111001 linen-services 1 -01010100111001 disencentives 1 -01010100111001 inthe 1 -01010100111001 97.37 1 -01010100111001 porticoes 1 -01010100111001 Nov.30 1 -01010100111001 two-wheelers 1 -01010100111001 antitrypsin 1 -01010100111001 Vashi 1 -01010100111001 240.90 1 -01010100111001 97.04 1 -01010100111001 hairpins 1 -01010100111001 106-33 1 -01010100111001 1,212 2 -01010100111001 devotional 2 -01010100111001 Wallpapers 2 -01010100111001 re-sale 2 -01010100111001 non-specialists 2 -01010100111001 1,086 2 -01010100111001 1,272 2 -01010100111001 1,646 2 -01010100111001 2375 2 -01010100111001 enshrines 2 -01010100111001 arrestees 2 -01010100111001 hell-for-leather 2 -01010100111001 ungenerous 2 -01010100111001 odd-ball 2 -01010100111001 hewing 3 -01010100111001 hydrogenated 3 -01010100111001 49-month 3 -01010100111001 tie-dyed 3 -01010100111001 1,087 3 -01010100111001 1,106 3 -01010100111001 Summons 3 -01010100111001 1,091 3 -01010100111001 1,078 3 -01010100111001 capitulating 4 -01010100111001 indecipherable 4 -01010100111001 1,144 4 -01010100111001 1,343 4 -01010100111001 1,069 5 -01010100111001 1,178 5 -01010100111001 1,021 5 -01010100111001 35- 5 -01010100111001 25- 6 -01010100111001 perpendicular 6 -01010100111001 acquiescing 8 -01010100111001 60- 11 -01010100111001 acceding 12 -01010100111001 unaccountable 12 -01010100111001 Cruelty 14 -01010100111001 inattentive 16 -01010100111001 reverting 22 -01010100111001 succumbing 25 -01010100111001 consenting 32 -01010100111001 purporting 32 -01010100111001 scheming 35 -01010100111001 pandering 35 -01010100111001 unaccustomed 41 -01010100111001 pursuant 78 -01010100111001 pertaining 90 -01010100111001 catering 134 -01010100111001 belonging 135 -01010100111001 applicable 163 -01010100111001 retroactive 205 -01010100111001 adjacent 283 -01010100111001 conspiring 284 -01010100111001 listening 371 -01010100111001 dedicated 374 -01010100111001 identical 384 -01010100111001 relating 519 -01010100111001 refusing 532 -01010100111001 unrelated 546 -01010100111001 agreeing 693 -01010100111001 failing 1384 -01010100111001 closer 1423 -01010100111001 equal 2389 -01010100111001 related 5157 -01010100111010 292,527 1 -01010100111010 1/500th 1 -01010100111010 .175 1 -01010100111010 546,686 1 -01010100111010 3/5-second 1 -01010100111010 fetchingly 1 -01010100111010 1,421,484 1 -01010100111010 700,714 1 -01010100111010 quilty 1 -01010100111010 67,500 1 -01010100111010 straight-arm 1 -01010100111010 wastrels 2 -01010100111010 self-regulator 2 -01010100111010 cultch 2 -01010100111010 Abra 2 -01010100111010 1,011 3 -01010100111010 co-chair 4 -01010100111010 overtaxing 4 -01010100111010 scuffling 4 -01010100111010 adjuncts 9 -01010100111010 replying 16 -01010100111010 innocent 592 -01010100111010 content 734 -01010100111010 guilty 2192 -01010100111010 starting 2637 -01010100111010 subject 6178 -01010100111010 beginning 4510 -010101001110110 bright/Be 1 -010101001110110 sample-collecting 1 -010101001110110 redogmatizing 1 -010101001110110 abutments 1 -010101001110110 sugarcoated 1 -010101001110110 Inboards 1 -010101001110110 blood-letting 1 -010101001110110 price-battering 1 -010101001110110 Owenites 1 -010101001110110 nuclear-dump 1 -010101001110110 top-of-the-charts 1 -010101001110110 Becketts 1 -010101001110110 barbie 1 -010101001110110 aff-idav-it 1 -010101001110110 1,000-yen-level 1 -010101001110110 ritz 1 -010101001110110 Perrys 1 -010101001110110 secretariate 1 -010101001110110 early-comers 1 -010101001110110 hokier 1 -010101001110110 doodoo 1 -010101001110110 Spares 1 -010101001110110 pro-pledge 1 -010101001110110 300,000-ton 1 -010101001110110 Mandela-mania 1 -010101001110110 gloaming 1 -010101001110110 curacy 1 -010101001110110 Euroministers 1 -010101001110110 parapets 1 -010101001110110 no-brains 1 -010101001110110 not-so-in-love 1 -010101001110110 proletariats 1 -010101001110110 cancer-producing 1 -010101001110110 Bumsteads 1 -010101001110110 Getty-Texaco 1 -010101001110110 Chippendale 1 -010101001110110 tax-burden 1 -010101001110110 broadsword 1 -010101001110110 most-admirable 1 -010101001110110 phantasmagorical 1 -010101001110110 low-80s 1 -010101001110110 ex-fox 1 -010101001110110 herbicide-exposure 1 -010101001110110 abilility 1 -010101001110110 offset-printed 1 -010101001110110 Guelphs 1 -010101001110110 weak-hearted 1 -010101001110110 J-curvers 1 -010101001110110 conservative/moderate 1 -010101001110110 always-voters 1 -010101001110110 Preamble 1 -010101001110110 SH60s 1 -010101001110110 on-the-one 1 -010101001110110 counterattempt 1 -010101001110110 Crucifix 1 -010101001110110 Souvlaki 1 -010101001110110 unconventionality 1 -010101001110110 traditional-conservative 1 -010101001110110 kidnappable 1 -010101001110110 guerrilla-linked 1 -010101001110110 farthest-left 1 -010101001110110 5:02 1 -010101001110110 88-18 1 -010101001110110 least-depressed 1 -010101001110110 underjaw 1 -010101001110110 SOCIALITES 1 -010101001110110 mulelifts 1 -010101001110110 technospeak 1 -010101001110110 gateman 1 -010101001110110 market-goers 1 -010101001110110 Galillee 1 -010101001110110 knout 1 -010101001110110 preferred-stockholders 1 -010101001110110 semi-famous 1 -010101001110110 1,600- 1 -010101001110110 Martells 1 -010101001110110 under-privileged 1 -010101001110110 Orifice 1 -010101001110110 commision 1 -010101001110110 oppositionin-exile 1 -010101001110110 Prelims 1 -010101001110110 Rockefeller-Feldstein 1 -010101001110110 investor-company 1 -010101001110110 MWRA 1 -010101001110110 crash-stocks 1 -010101001110110 root-and-branch 1 -010101001110110 crash-proof 1 -010101001110110 Ardennes 1 -010101001110110 foreward 1 -010101001110110 sceptered 1 -010101001110110 MC6300 1 -010101001110110 Bible-inspired 1 -010101001110110 Everlys 1 -010101001110110 originalists 1 -010101001110110 1.8550-mark 1 -010101001110110 wifey 1 -010101001110110 ex-arbitrager 1 -010101001110110 gunpit 1 -010101001110110 Cleavers 1 -010101001110110 nonspecialist 1 -010101001110110 then-17-year-old 1 -010101001110110 story-mongering 1 -010101001110110 chromosome-altering 1 -010101001110110 coolies 1 -010101001110110 525i 1 -010101001110110 where-was-George 1 -010101001110110 Preliminaries 1 -010101001110110 successor-state 1 -010101001110110 distaff 1 -010101001110110 PMs 1 -010101001110110 stanchion 1 -010101001110110 high-cultural 1 -010101001110110 lik 1 -010101001110110 dirt-blackened 1 -010101001110110 hinderance 1 -010101001110110 driers 1 -010101001110110 raod 1 -010101001110110 seedings 1 -010101001110110 maintenanceare 1 -010101001110110 checkout-stand 1 -010101001110110 shabbiest 2 -010101001110110 dampness 2 -010101001110110 director-defendants 2 -010101001110110 marshlands 2 -010101001110110 Maypo 2 -010101001110110 melanocytes 2 -010101001110110 impressor 2 -010101001110110 spindle 2 -010101001110110 walnut-sized 2 -010101001110110 heave-ho 2 -010101001110110 gridirons 2 -010101001110110 Ramparts 2 -010101001110110 hypotenuse 2 -010101001110110 disinfected 2 -010101001110110 ICCH 2 -010101001110110 suicidally 2 -010101001110110 Annunciation 2 -010101001110110 revivified 2 -010101001110110 larks 2 -010101001110110 hide-out 2 -010101001110110 Rhones 2 -010101001110110 88-38 2 -010101001110110 dose-related 2 -010101001110110 civic-action 2 -010101001110110 sclerotic 2 -010101001110110 non-specialist 2 -010101001110110 16-0 2 -010101001110110 san 2 -010101001110110 family-wage 2 -010101001110110 communistic 2 -010101001110110 do-si-do 2 -010101001110110 unconcealed 3 -010101001110110 seamier 3 -010101001110110 sacraments 3 -010101001110110 ambiguously 3 -010101001110110 unresolvable 3 -010101001110110 approvers 3 -010101001110110 steamier 3 -010101001110110 keffiyeh 3 -010101001110110 SS-23s 3 -010101001110110 ionosphere 3 -010101001110110 lumbered 3 -010101001110110 twerp 3 -010101001110110 rabble 3 -010101001110110 IBF 3 -010101001110110 hungriest 3 -010101001110110 Russkies 3 -010101001110110 sloths 3 -010101001110110 initative 3 -010101001110110 judicial-restraint 3 -010101001110110 half-Japanese 4 -010101001110110 horny 4 -010101001110110 mile-high 4 -010101001110110 pavements 5 -010101001110110 TIN 5 -010101001110110 2655 5 -010101001110110 nahcolyte 5 -010101001110110 D-mark 5 -010101001110110 elasticity 5 -010101001110110 mountaineering 5 -010101001110110 Excalibur 6 -010101001110110 hourglass 6 -010101001110110 gloomiest 6 -010101001110110 Zeitgeist 6 -010101001110110 vagina 6 -010101001110110 supine 7 -010101001110110 floorboards 8 -010101001110110 meanness 9 -010101001110110 prancing 9 -010101001110110 temerity 9 -010101001110110 wont 12 -010101001110110 credulity 14 -010101001110110 fizzling 15 -010101001110110 cornea 16 -010101001110110 totem 16 -010101001110110 farthest 24 -010101001110110 uptown 25 -010101001110110 heir-apparent 25 -010101001110110 furthest 28 -010101001110110 J-curve 31 -010101001110110 waist 47 -010101001110110 heir 209 -010101001110110 upside 277 -010101001110110 hardest 322 -010101001110110 contrary 626 -010101001110110 right 10808 -010101001110110 opposite 689 -010101001110111 CFC-made 1 -010101001110111 four-wheel-steering 1 -010101001110111 walk-ons 1 -010101001110111 1,163,100 1 -010101001110111 Nov.9 1 -010101001110111 industry-ranging 1 -010101001110111 tax-increasers 1 -010101001110111 brain-tuner 1 -010101001110111 six-gun 1 -010101001110111 Citicorp-led 1 -010101001110111 baler 1 -010101001110111 334,640 1 -010101001110111 clorazepate 1 -010101001110111 boogeyman 1 -010101001110111 augmentees 1 -010101001110111 Whiffenpoofs 1 -010101001110111 BAMM 1 -010101001110111 chorale 1 -010101001110111 214,425 1 -010101001110111 industrial-distribution 1 -010101001110111 margin-slashing 1 -010101001110111 FAA-approved 1 -010101001110111 375,940 1 -010101001110111 2,265,140 1 -010101001110111 superregion 1 -010101001110111 immnue 1 -010101001110111 BuckPac 1 -010101001110111 Plaza-Suites 1 -010101001110111 662,400 1 -010101001110111 Lifer 1 -010101001110111 already-deployed 1 -010101001110111 ribaldry 1 -010101001110111 curency 1 -010101001110111 T46A 1 -010101001110111 324,250 1 -010101001110111 6,480,500 1 -010101001110111 PDQ 1 -010101001110111 much-litigated 1 -010101001110111 trade-checking 1 -010101001110111 2,200-employee 1 -010101001110111 Atlanta-bound 1 -010101001110111 then-senator 1 -010101001110111 proprietarily 1 -010101001110111 carhop 1 -010101001110111 MedCare 1 -010101001110111 Hendlers 1 -010101001110111 we've-never-had-it-so-good 1 -010101001110111 herbicide-tainting 1 -010101001110111 no-nothings 1 -010101001110111 myelodysplastic 1 -010101001110111 1,006,592 1 -010101001110111 Meretrends 1 -010101001110111 wrsales 1 -010101001110111 103,100 1 -010101001110111 warrantee 1 -010101001110111 few/Who 1 -010101001110111 Bolsheviki 1 -010101001110111 1,073,000 1 -010101001110111 investigationally 1 -010101001110111 843,833 1 -010101001110111 12-to-15-year-olds 1 -010101001110111 battlefronts 1 -010101001110111 price-shares 1 -010101001110111 643,690 1 -010101001110111 6,042,250 1 -010101001110111 non-expert 1 -010101001110111 newest-comers 1 -010101001110111 flagstick 1 -010101001110111 L-phenylalanine 1 -010101001110111 non-competitively 1 -010101001110111 432,795 1 -010101001110111 shiploadings 1 -010101001110111 free-marketers 1 -010101001110111 Trotters 1 -010101001110111 M-Whatever 1 -010101001110111 Decatron 1 -010101001110111 Federalsburg 1 -010101001110111 Kitchen-Aid 1 -010101001110111 PCB-burning 1 -010101001110111 dominance. 1 -010101001110111 correspondent/doctor 1 -010101001110111 All-in-one 1 -010101001110111 228,200 1 -010101001110111 843,691 1 -010101001110111 conpletion 1 -010101001110111 560,700 1 -010101001110111 2,820,500 1 -010101001110111 477,555 1 -010101001110111 716,333 1 -010101001110111 419,564 1 -010101001110111 handle-pullers 1 -010101001110111 Rabbis 1 -010101001110111 4,928,600 1 -010101001110111 boat/bank 1 -010101001110111 Loganair 1 -010101001110111 455,200 1 -010101001110111 patient-consumer 1 -010101001110111 335,300 1 -010101001110111 294,133 1 -010101001110111 670,300 1 -010101001110111 386SX-technology 1 -010101001110111 918,240 1 -010101001110111 75,300 1 -010101001110111 overspill 1 -010101001110111 RIT 1 -010101001110111 hand-helds 1 -010101001110111 4,441,816 1 -010101001110111 rifleman 2 -010101001110111 re-legalization 2 -010101001110111 withdrawl 2 -010101001110111 drawal 2 -010101001110111 Dewe 2 -010101001110111 hyper-reality 2 -010101001110111 Zolfo 2 -010101001110111 stonemasons 2 -010101001110111 Wimp 2 -010101001110111 glossies 2 -010101001110111 immune-deficiency 3 -010101001110111 1930-33 3 -010101001110111 admixture 3 -010101001110111 goodnight 3 -010101001110111 Shang 3 -010101001110111 high-point 3 -010101001110111 copy-guard 5 -010101001110111 materiality 5 -010101001110111 Levitts 5 -010101001110111 effrontery 5 -010101001110111 phalanxes 5 -010101001110111 bounties 12 -010101001110111 excerpts 128 -010101001110111 immune 986 -010101001110111 proceeds 3397 -010101001110111 equivalent 2789 -01010100111100 pre-science 1 -01010100111100 2,829,100 1 -01010100111100 triskaidekaphobia 1 -01010100111100 all-GOP 1 -01010100111100 casket-shaped 1 -01010100111100 unplannable 1 -01010100111100 Ucak 1 -01010100111100 bronze-and-jade-tinted 1 -01010100111100 PROMOTION 1 -01010100111100 ORATORY 1 -01010100111100 ACADEMIA 1 -01010100111100 Versenden 1 -01010100111100 Grungy 1 -01010100111100 Vicarious 1 -01010100111100 1,476 1 -01010100111100 Tokelau 1 -01010100111100 torchbearers 1 -01010100111100 5146B3 1 -01010100111100 re-exerted 1 -01010100111100 Dukakis-Bentsen-Jackson 1 -01010100111100 Snips 1 -01010100111100 election-time 1 -01010100111100 10:00-18:00 1 -01010100111100 49,536 1 -01010100111100 tongs-wielding 1 -01010100111100 stationary-bicycle 1 -01010100111100 10/12/52-6/17/85 1 -01010100111100 rule-breaking 1 -01010100111100 Rulav 1 -01010100111100 Gratuities 1 -01010100111100 copper-nickel 1 -01010100111100 squally 1 -01010100111100 Installment-sale 1 -01010100111100 Joint-return 1 -01010100111100 hackneyitis 1 -01010100111100 back-lighted 1 -01010100111100 402.7 1 -01010100111100 Aguila 1 -01010100111100 2,062 1 -01010100111100 formalistic 1 -01010100111100 warehouse-size 1 -01010100111100 chip-consuming 1 -01010100111100 Eccles. 1 -01010100111100 108.555 1 -01010100111100 album-sized 1 -01010100111100 Underview 1 -01010100111100 AmeriSteel 1 -01010100111100 semi-legal 1 -01010100111100 gentrify 1 -01010100111100 School-based 1 -01010100111100 reburied 1 -01010100111100 power-breakfast 1 -01010100111100 WOWI 1 -01010100111100 30-D 1 -01010100111100 Gliding 1 -01010100111100 surface-active 1 -01010100111100 Carverian 1 -01010100111100 camel-herding 1 -01010100111100 maskirovka 1 -01010100111100 nonwithheld 1 -01010100111100 uncontained 1 -01010100111100 Assuranties 1 -01010100111100 Consolidate 1 -01010100111100 AUTOGRAPHS 1 -01010100111100 2,858 1 -01010100111100 radar-absorbent 1 -01010100111100 anti-consumption 1 -01010100111100 108,146 1 -01010100111100 48222 1 -01010100111100 unhypocritical 1 -01010100111100 cratering 1 -01010100111100 A-shaped 1 -01010100111100 by-wheelchair 1 -01010100111100 illimitable 1 -01010100111100 Millersport 1 -01010100111100 Baker/Meese/Deaver/Stockman/Darman/Fuller 1 -01010100111100 Jacqui 1 -01010100111100 VOLUME 1 -01010100111100 lowin 1 -01010100111100 Restock 1 -01010100111100 wooly 1 -01010100111100 12,607,350 1 -01010100111100 welladvanced 1 -01010100111100 unlinked 1 -01010100111100 freedom-fighting 1 -01010100111100 sixth-form 1 -01010100111100 Carnivale 1 -01010100111100 mushroom-like 1 -01010100111100 Jeekill 1 -01010100111100 Pre-hearing 1 -01010100111100 no-smokers 1 -01010100111100 yearslong 1 -01010100111100 inflationlinked 1 -01010100111100 mortar-launcher 1 -01010100111100 Linger 2 -01010100111100 mooing 2 -01010100111100 WCAU-TV 2 -01010100111100 3,705 2 -01010100111100 begining 2 -01010100111100 Lt.-Gen 2 -01010100111100 Pays 2 -01010100111100 news-oriented 2 -01010100111100 Nesuhi 3 -01010100111100 NC 3 -01010100111100 self-referential 3 -01010100111100 censorious 3 -01010100111100 emotionless 4 -01010100111100 well-located 4 -01010100111100 centralism 4 -01010100111100 Sanka 6 -01010100111100 Louisa 10 -01010100111100 amendable 15 -01010100111100 matures 43 -01010100111100 expiring 153 -01010100111100 dated 481 -01010100111100 mature 766 -01010100111100 WSJ 1021 -01010100111100 expired 1032 -01010100111100 expires 1143 -01010100111100 payable 1424 -01010100111100 effective 4123 -01010100111101 Mthiyane 1 -01010100111101 ago-before 1 -01010100111101 thromboses 1 -01010100111101 Buy-Backs 1 -01010100111101 1950-1965 1 -01010100111101 699.98 1 -01010100111101 1965-1982 1 -01010100111101 hair-raiser 1 -01010100111101 18561.25 1 -01010100111101 1555-64 1 -01010100111101 endingSept. 1 -01010100111101 3912.93 1 -01010100111101 work-turn 1 -01010100111101 palavering 1 -01010100111101 601,516 1 -01010100111101 ago-that 1 -01010100111101 TOR 1 -01010100111101 elapses 2 -01010100111101 ending 2729 -01010100111101 ended 12294 -01010100111110 optics. 1 -01010100111110 culminatingin 1 -01010100111110 4,514 1 -01010100111110 tough-procedures 1 -01010100111110 squattish 1 -01010100111110 Raptors 1 -01010100111110 1986-April 1 -01010100111110 1,692 1 -01010100111110 5,340 1 -01010100111110 1482 1 -01010100111110 1184.32 1 -01010100111110 1491.12 1 -01010100111110 Kishori 1 -01010100111110 marketin 1 -01010100111110 Bylines 1 -01010100111110 ^alling 1 -01010100111110 Carnegie-style 1 -01010100111110 ### 1 -01010100111110 365.01 1 -01010100111110 Sept.-Oct. 1 -01010100111110 suppressions 1 -01010100111110 over-target 1 -01010100111110 anthropic 1 -01010100111110 non-graded 1 -01010100111110 pulped 2 -01010100111110 funds-with 4 -01010100111110 95.19 4 -01010100111110 due 9716 -01010100111110 maturing 443 -01010100111111 joshing 1 -01010100111111 Medserve 1 -01010100111111 Mornaghia 1 -01010100111111 purling 1 -01010100111111 oboists 1 -01010100111111 1652 1 -01010100111111 exculpated 1 -01010100111111 DEMURRAGE 1 -01010100111111 pruners 1 -01010100111111 ingress 1 -01010100111111 DECIDE 1 -01010100111111 PDs 1 -01010100111111 upwind 1 -01010100111111 battle-worn 1 -01010100111111 dowm 1 -01010100111111 wiched 1 -01010100111111 Houston-formed 1 -01010100111111 outlawry 1 -01010100111111 jinni 1 -01010100111111 Diehards 1 -01010100111111 Vegetables 1 -01010100111111 de-listed 1 -01010100111111 line-of-sight 1 -01010100111111 gleened 1 -01010100111111 protrudes 1 -01010100111111 fuzzing 1 -01010100111111 Refraining 1 -01010100111111 fall-out 1 -01010100111111 puddle-jumped 1 -01010100111111 concededly 1 -01010100111111 softener/whitener 1 -01010100111111 jut 1 -01010100111111 growingcompetition 1 -01010100111111 punchdrunk 1 -01010100111111 cumulating 1 -01010100111111 fencelike 1 -01010100111111 croaky 1 -01010100111111 kitty-cornered 1 -01010100111111 suctioned 1 -01010100111111 desisted 1 -01010100111111 convalesced 1 -01010100111111 ladled 2 -01010100111111 small-combo 2 -01010100111111 rifled 2 -01010100111111 skitter 2 -01010100111111 1970-85 2 -01010100111111 18-to-24 2 -01010100111111 half-remembered 2 -01010100111111 bombmakers 2 -01010100111111 souffles 2 -01010100111111 Reply 2 -01010100111111 leafing 3 -01010100111111 slicked 3 -01010100111111 tapioca 3 -01010100111111 decoupled 4 -01010100111111 flax 4 -01010100111111 gentrified 5 -01010100111111 re-imported 5 -01010100111111 emanates 6 -01010100111111 detracting 6 -01010100111111 Mongols 7 -01010100111111 scampering 7 -01010100111111 jutting 8 -01010100111111 distinguishable 10 -01010100111111 harking 11 -01010100111111 lurching 12 -01010100111111 inseparable 12 -01010100111111 darting 15 -01010100111111 emigrating 15 -01010100111111 refraining 18 -01010100111111 seeping 20 -01010100111111 erupting 21 -01010100111111 wedged 21 -01010100111111 sandwiched 22 -01010100111111 cascading 25 -01010100111111 recuperating 34 -01010100111111 smarting 40 -01010100111111 emanating 53 -01010100111111 midway 56 -01010100111111 originating 59 -01010100111111 culled 60 -01010100111111 gleaned 64 -01010100111111 profiting 64 -01010100111111 retreating 84 -01010100111111 graduating 133 -01010100111111 reeling 184 -01010100111111 dating 225 -01010100111111 flowing 270 -01010100111111 arising 308 -01010100111111 derived 319 -01010100111111 benefiting 357 -01010100111111 exempt 663 -01010100111111 stemming 695 -01010100111111 emerging 719 -01010100111111 ranged 806 -01010100111111 ranging 1345 -01010100111111 coming 4763 -01010100111111 resulting 1658 -010101010000 fleshes 1 -010101010000 jutted 1 -010101010000 conks 1 -010101010000 Dragged 1 -010101010000 Seouled 1 -010101010000 pooching 1 -010101010000 cluckings 1 -010101010000 77,443 1 -010101010000 weaseled 1 -010101010000 wimping 1 -010101010000 Lashing 1 -010101010000 clip-clopping 1 -010101010000 pasing 1 -010101010000 jotting 1 -010101010000 hunkers 1 -010101010000 Ironing 1 -010101010000 mainstreamed 1 -010101010000 Qataris 1 -010101010000 fast-forwarded 1 -010101010000 perambulate 1 -010101010000 bawling 1 -010101010000 kayaked 1 -010101010000 gawping 1 -010101010000 rafted 1 -010101010000 yapped 1 -010101010000 oven-dried 1 -010101010000 Carve 1 -010101010000 HURRIES 1 -010101010000 whited 1 -010101010000 Warding 1 -010101010000 Shirttail 1 -010101010000 scud 1 -010101010000 weirded 1 -010101010000 lops 1 -010101010000 highballing 1 -010101010000 2,966 1 -010101010000 devotions 1 -010101010000 canoed 1 -010101010000 congeal 1 -010101010000 averageran 1 -010101010000 liquefying 1 -010101010000 capering 1 -010101010000 achievement-orientation 1 -010101010000 gouges 1 -010101010000 re-expanded 1 -010101010000 browned 1 -010101010000 wolfs 1 -010101010000 shinnied 1 -010101010000 pincushioned 1 -010101010000 slaloming 2 -010101010000 toddles 2 -010101010000 straightens 2 -010101010000 ricocheted 2 -010101010000 hewn 2 -010101010000 clacks 2 -010101010000 hones 2 -010101010000 ekes 2 -010101010000 wolfed 2 -010101010000 trundling 2 -010101010000 wimped 2 -010101010000 leaches 2 -010101010000 waddles 2 -010101010000 dozes 2 -010101010000 fends 2 -010101010000 saunters 2 -010101010000 snuffs 2 -010101010000 wobbled 3 -010101010000 slithered 3 -010101010000 reinserted 3 -010101010000 evens 3 -010101010000 thronging 3 -010101010000 whiled 3 -010101010000 creaked 3 -010101010000 smoothes 3 -010101010000 raffled 3 -010101010000 wriggled 3 -010101010000 pawed 3 -010101010000 mows 3 -010101010000 sauntered 3 -010101010000 careering 3 -010101010000 chomped 3 -010101010000 wafts 3 -010101010000 clambered 4 -010101010000 skims 4 -010101010000 telescoped 4 -010101010000 clambers 4 -010101010000 lugged 4 -010101010000 divisible 4 -010101010000 pecked 4 -010101010000 conked 4 -010101010000 oozed 4 -010101010000 keeled 4 -010101010000 ambled 4 -010101010000 doodled 4 -010101010000 peeping 5 -010101010000 scrounged 5 -010101010000 flamed 5 -010101010000 bedded 5 -010101010000 bails 5 -010101010000 barreled 5 -010101010000 warded 5 -010101010000 twirled 5 -010101010000 reintegrated 5 -010101010000 juts 5 -010101010000 metamorphosed 5 -010101010000 lucked 5 -010101010000 hollowed 5 -010101010000 rinsed 5 -010101010000 flattens 5 -010101010000 dripped 5 -010101010000 freaked 6 -010101010000 careened 6 -010101010000 leached 6 -010101010000 jotted 6 -010101010000 drowns 6 -010101010000 jetted 6 -010101010000 smooths 6 -010101010000 trundled 6 -010101010000 hosed 6 -010101010000 thronged 7 -010101010000 plumped 7 -010101010000 shooed 7 -010101010000 gravitated 7 -010101010000 calms 7 -010101010000 galloped 7 -010101010000 teed 7 -010101010000 hashed 7 -010101010000 crunched 7 -010101010000 churns 7 -010101010000 ferreted 7 -010101010000 tiptoed 8 -010101010000 dozed 8 -010101010000 clawed 8 -010101010000 coalesced 8 -010101010000 belted 8 -010101010000 sheared 8 -010101010000 winnowed 8 -010101010000 dribbled 8 -010101010000 bubbled 8 -010101010000 spaced 8 -010101010000 lashes 8 -010101010000 bogging 8 -010101010000 glares 8 -010101010000 blurts 8 -010101010000 blurted 9 -010101010000 snuck 9 -010101010000 fleshed 10 -010101010000 carves 10 -010101010000 stomped 10 -010101010000 scribbles 11 -010101010000 slung 11 -010101010000 squirreled 11 -010101010000 spits 11 -010101010000 blacked 11 -010101010000 rowed 11 -010101010000 barged 11 -010101010000 plucks 11 -010101010000 hunkered 12 -010101010000 doles 12 -010101010000 dashes 12 -010101010000 stampeding 12 -010101010000 zipped 12 -010101010000 frittered 12 -010101010000 shuttled 12 -010101010000 hitched 13 -010101010000 forked 13 -010101010000 mowed 13 -010101010000 trekked 13 -010101010000 buzzed 13 -010101010000 plopped 13 -010101010000 elbowed 13 -010101010000 streamed 13 -010101010000 rips 14 -010101010000 sneaks 14 -010101010000 nosed 14 -010101010000 dished 14 -010101010000 banged 14 -010101010000 weeded 15 -010101010000 thumbed 15 -010101010000 trickled 15 -010101010000 petered 16 -010101010000 snuffed 16 -010101010000 spews 16 -010101010000 peered 16 -010101010000 thundered 17 -010101010000 crystallized 17 -010101010000 jerked 17 -010101010000 pored 17 -010101010000 swooped 17 -010101010000 parceled 17 -010101010000 swam 18 -010101010000 ascended 18 -010101010000 veering 18 -010101010000 seeped 18 -010101010000 carted 19 -010101010000 latched 19 -010101010000 scurried 19 -010101010000 rotated 19 -010101010000 flung 19 -010101010000 stampeded 20 -010101010000 buckled 20 -010101010000 evened 20 -010101010000 delved 20 -010101010000 degenerated 20 -010101010000 peeled 20 -010101010000 hiked 21 -010101010000 meted 21 -010101010000 straightened 21 -010101010000 wipes 21 -010101010000 drummed 22 -010101010000 shrugging 22 -010101010000 swarmed 22 -010101010000 trotted 23 -010101010000 tricked 23 -010101010000 reeled 23 -010101010000 camped 23 -010101010000 piped 24 -010101010000 rammed 24 -010101010000 agonized 24 -010101010000 herded 24 -010101010000 pasted 25 -010101010000 ticked 25 -010101010000 cleans 25 -010101010000 ducked 25 -010101010000 wrung 26 -010101010000 spewed 26 -010101010000 sewn 26 -010101010000 doled 27 -010101010000 booted 27 -010101010000 smoothed 27 -010101010000 slimmed 28 -010101010000 sneaked 28 -010101010000 clamped 29 -010101010000 toned 29 -010101010000 bundled 29 -010101010000 decked 29 -010101010000 chewed 30 -010101010000 cranked 30 -010101010000 plunked 30 -010101010000 farmed 31 -010101010000 skimmed 32 -010101010000 lopped 32 -010101010000 tripped 33 -010101010000 ironed 33 -010101010000 mapped 33 -010101010000 shuts 33 -010101010000 branched 34 -010101010000 sketched 35 -010101010000 sped 36 -010101010000 panned 36 -010101010000 filtered 37 -010101010000 nailed 37 -010101010000 veered 37 -010101010000 eked 38 -010101010000 ticks 38 -010101010000 churned 38 -010101010000 gunned 38 -010101010000 pours 39 -010101010000 shoved 40 -010101010000 boiled 41 -010101010000 whittled 43 -010101010000 flipped 43 -010101010000 chipped 45 -010101010000 lashed 45 -010101010000 punched 45 -010101010000 shelled 46 -010101010000 snatched 47 -010101010000 siphoned 48 -010101010000 plowed 50 -010101010000 warmed 51 -010101010000 squared 51 -010101010000 wandered 51 -010101010000 melted 52 -010101010000 ventured 53 -010101010000 tilted 54 -010101010000 choked 55 -010101010000 boarded 56 -010101010000 pinned 56 -010101010000 sorted 58 -010101010000 plugged 60 -010101010000 nudged 61 -010101010000 pops 62 -010101010000 sucked 63 -010101010000 tore 64 -010101010000 yanked 64 -010101010000 brushed 65 -010101010000 chopped 65 -010101010000 pounded 67 -010101010000 slammed 72 -010101010000 watered 72 -010101010000 staked 73 -010101010000 lays 75 -010101010000 bumped 77 -010101010000 stormed 77 -010101010000 hauled 81 -010101010000 smashed 82 -010101010000 popped 86 -010101010000 tucked 88 -010101010000 washed 90 -010101010000 shied 97 -010101010000 bowed 100 -010101010000 bailed 104 -010101010000 dug 122 -010101010000 rode 122 -010101010000 tipped 124 -010101010000 ripped 131 -010101010000 cracked 133 -010101010000 bogged 135 -010101010000 bottomed 137 -010101010000 tossed 138 -010101010000 singled 140 -010101010000 carved 141 -010101010000 folded 146 -010101010000 leveled 147 -010101010000 spelled 152 -010101010000 shrugged 156 -010101010000 stumbled 160 -010101010000 presided 169 -010101010000 pumped 170 -010101010000 spilled 173 -010101010000 pulls 178 -010101010000 blew 191 -010101010000 weighed 219 -010101010000 scaled 220 -010101010000 kicked 227 -010101010000 translated 230 -010101010000 bounced 264 -010101010000 poured 268 -010101010000 hung 293 -010101010000 dragged 310 -010101010000 rolled 318 -010101010000 knocked 318 -010101010000 wiped 370 -010101010000 handed 434 -010101010000 touched 469 -010101010000 threw 481 -010101010000 thrown 516 -010101010000 walked 517 -010101010000 fought 786 -010101010000 stepped 811 -010101010000 pointed 868 -010101010000 laid 949 -010101010000 pulled 1033 -010101010000 turns 1239 -010101010000 broke 1673 -010101010000 entered 1683 -010101010000 ran 1851 -010101010000 opened 2743 -010101010000 moved 4081 -010101010000 turned 4609 -0101010100010 mucks 1 -0101010100010 scrounges 1 -0101010100010 Pumped 1 -0101010100010 roughs 1 -0101010100010 bulked 1 -0101010100010 849.91 1 -0101010100010 gussies 1 -0101010100010 suiting 1 -0101010100010 quacked 1 -0101010100010 sliming 1 -0101010100010 shit 1 -0101010100010 tidies 1 -0101010100010 louses 1 -0101010100010 bellied 1 -0101010100010 anteed 1 -0101010100010 henhouses 1 -0101010100010 peashooter 1 -0101010100010 spiffed 1 -0101010100010 limbers 1 -0101010100010 wrong-side 1 -0101010100010 Lofting 1 -0101010100010 hepped 1 -0101010100010 Summing 1 -0101010100010 gussy 1 -0101010100010 hushes 1 -0101010100010 goosed 1 -0101010100010 dolled 1 -0101010100010 flubbing 1 -0101010100010 divvies 1 -0101010100010 Categorizing 1 -0101010100010 smarten 1 -0101010100010 wooshes 1 -0101010100010 one-minute-plus 1 -0101010100010 limbering 1 -0101010100010 gooses 1 -0101010100010 toking 1 -0101010100010 creepier 1 -0101010100010 jazzing 1 -0101010100010 mosey 1 -0101010100010 squinches 1 -0101010100010 wising 1 -0101010100010 Generalities 1 -0101010100010 sidled 1 -0101010100010 levering 1 -0101010100010 over-swept 1 -0101010100010 vacuumed 2 -0101010100010 mussed 2 -0101010100010 juiced 2 -0101010100010 buttering 2 -0101010100010 whomping 2 -0101010100010 Picked 2 -0101010100010 wheezed 2 -0101010100010 ponying 2 -0101010100010 souping 2 -0101010100010 sidles 2 -0101010100010 teeing 2 -0101010100010 clammed 3 -0101010100010 boning 3 -0101010100010 pent 3 -0101010100010 queued 3 -0101010100010 fogging 3 -0101010100010 dirtied 3 -0101010100010 pouted 3 -0101010100010 holing 3 -0101010100010 totting 3 -0101010100010 ramping 3 -0101010100010 fessing 3 -0101010100010 tidying 3 -0101010100010 spiff 3 -0101010100010 cozies 3 -0101010100010 clamming 3 -0101010100010 sopped 4 -0101010100010 pepping 4 -0101010100010 dammed 4 -0101010100010 tanked 4 -0101010100010 bellying 4 -0101010100010 ratcheted 4 -0101010100010 divvying 4 -0101010100010 lightens 4 -0101010100010 wised 4 -0101010100010 cozied 4 -0101010100010 ganged 4 -0101010100010 Acuras 4 -0101010100010 waked 4 -0101010100010 cooped 5 -0101010100010 sidle 5 -0101010100010 mopped 5 -0101010100010 ponied 5 -0101010100010 chalking 5 -0101010100010 woken 5 -0101010100010 gobbles 5 -0101010100010 revs 5 -0101010100010 right-side 6 -0101010100010 boned 6 -0101010100010 souped 6 -0101010100010 chalks 6 -0101010100010 spiffing 6 -0101010100010 shucked 6 -0101010100010 gussied 7 -0101010100010 trumped 7 -0101010100010 revved 7 -0101010100010 anted 7 -0101010100010 divvied 7 -0101010100010 roughed 7 -0101010100010 tots 8 -0101010100010 jazzed 8 -0101010100010 revving 8 -0101010100010 livened 8 -0101010100010 fess 8 -0101010100010 cozying 8 -0101010100010 spruced 9 -0101010100010 ganging 9 -0101010100010 crumpled 10 -0101010100010 cranks 10 -0101010100010 beefs 10 -0101010100010 buttoned 10 -0101010100010 jacked 11 -0101010100010 welling 11 -0101010100010 sprucing 12 -0101010100010 spiced 14 -0101010100010 summing 14 -0101010100010 perking 14 -0101010100010 soaks 15 -0101010100010 rev 16 -0101010100010 mopping 17 -0101010100010 conjured 19 -0101010100010 dredged 19 -0101010100010 coughed 19 -0101010100010 smacked 19 -0101010100010 scooping 20 -0101010100010 patching 20 -0101010100010 shored 21 -0101010100010 messed 22 -0101010100010 pony 22 -0101010100010 puffed 23 -0101010100010 warms 23 -0101010100010 hushed 24 -0101010100010 mop 26 -0101010100010 patched 26 -0101010100010 wakes 28 -0101010100010 screwed 30 -0101010100010 cropping 30 -0101010100010 spiked 31 -0101010100010 dries 31 -0101010100010 holed 31 -0101010100010 scooped 31 -0101010100010 conjure 33 -0101010100010 racking 34 -0101010100010 conjures 35 -0101010100010 gobble 36 -0101010100010 jack 37 -0101010100010 shoring 42 -0101010100010 speeded 45 -0101010100010 soaked 46 -0101010100010 gobbled 46 -0101010100010 woke 47 -0101010100010 perked 47 -0101010100010 springing 47 -0101010100010 chalked 52 -0101010100010 cropped 57 -0101010100010 spruce 59 -0101010100010 summed 64 -0101010100010 propped 68 -0101010100010 beefed 70 -0101010100010 whipped 70 -0101010100010 heats 75 -0101010100010 sprung 84 -0101010100010 beefing 85 -0101010100010 drying 86 -0101010100010 rounded 102 -0101010100010 gearing 107 -0101010100010 cooked 112 -0101010100010 racked 119 -0101010100010 cleaned 129 -0101010100010 teamed 138 -0101010100010 piled 142 -0101010100010 dreamed 153 -0101010100010 drum 156 -0101010100010 wrapped 167 -0101010100010 hooked 177 -0101010100010 dried 219 -0101010100010 lining 256 -0101010100010 snapped 279 -0101010100010 prop 340 -0101010100010 lined 346 -0101010100010 picks 373 -0101010100010 shore 392 -0101010100010 fed 403 -0101010100010 wound 445 -0101010100010 cast 1102 -0101010100010 picked 1216 -0101010100010 set 12192 -0101010100010 shot 1729 -01010101000110 Mysticism 1 -01010101000110 Scroll 1 -01010101000110 bodied 1 -01010101000110 106mm 1 -01010101000110 scarfing 1 -01010101000110 resplicing 1 -01010101000110 Danders 1 -01010101000110 now-worthless 1 -01010101000110 sapper 1 -01010101000110 764,000 1 -01010101000110 pre-positioned 1 -01010101000110 rachet 1 -01010101000110 Fruit-of-the-Loom 1 -01010101000110 dirty-dance 1 -01010101000110 fenisch 1 -01010101000110 perms 1 -01010101000110 756,975 1 -01010101000110 Holderlin 1 -01010101000110 similiarity 1 -01010101000110 ungutted 1 -01010101000110 pre-shut 1 -01010101000110 tamp 1 -01010101000110 puchase 2 -01010101000110 sallied 2 -01010101000110 jangled 2 -01010101000110 stir-fried 2 -01010101000110 fastens 2 -01010101000110 matriculating 2 -01010101000110 whupped 3 -01010101000110 nestle 3 -01010101000110 recut 3 -01010101000110 pyramided 3 -01010101000110 uncoupling 3 -01010101000110 swerving 3 -01010101000110 Balsam 3 -01010101000110 clued 4 -01010101000110 winnows 4 -01010101000110 disbelieve 5 -01010101000110 batten 7 -01010101000110 plop 8 -01010101000110 cobble 8 -01010101000110 perused 9 -01010101000110 fasten 9 -01010101000110 lob 9 -01010101000110 hunker 13 -01010101000110 stitch 14 -01010101000110 underbid 17 -01010101000110 plunk 19 -01010101000110 hoist 23 -01010101000110 stitched 27 -01010101000110 pieced 31 -01010101000110 banded 34 -01010101000110 suck 36 -01010101000110 rip 59 -01010101000110 knock 235 -01010101000110 shake 337 -01010101000110 lay 760 -01010101000110 beat 1043 -01010101000110 shut 1057 -01010101000110 put 11397 -01010101000110 read 2317 -01010101000111 tuppence 1 -01010101000111 three-iron 1 -01010101000111 Vasconcelos 1 -01010101000111 palmed 1 -01010101000111 rail-restructuring 1 -01010101000111 mooch 1 -01010101000111 hied 1 -01010101000111 U-turned 1 -01010101000111 bollix 1 -01010101000111 non-claim 1 -01010101000111 rose-gold 1 -01010101000111 re-investigate 1 -01010101000111 hived 1 -01010101000111 non-itemized 1 -01010101000111 syphon 1 -01010101000111 2,021 1 -01010101000111 house-turned-office 1 -01010101000111 issus 1 -01010101000111 thow 1 -01010101000111 fobbing 1 -01010101000111 pissed 1 -01010101000111 wheatland 1 -01010101000111 foists 1 -01010101000111 tharaises 1 -01010101000111 one-star 2 -01010101000111 scatted 2 -01010101000111 non-discretionary 2 -01010101000111 1.56-to-1 2 -01010101000111 1,903 2 -01010101000111 187.99 2 -01010101000111 fob 2 -01010101000111 typecast 4 -01010101000111 sloughed 4 -01010101000111 glints 5 -01010101000111 cordon 6 -01010101000111 ricochet 7 -01010101000111 tailed 8 -01010101000111 slacked 9 -01010101000111 slough 9 -01010101000111 roped 12 -01010101000111 cordoned 12 -01010101000111 dusted 14 -01010101000111 taper 16 -01010101000111 tapers 18 -01010101000111 lop 20 -01010101000111 staved 23 -01010101000111 tapered 37 -01010101000111 fended 38 -01010101000111 siphon 40 -01010101000111 recast 48 -01010101000111 shrug 97 -01010101000111 leveling 102 -01010101000111 stave 137 -01010101000111 ward 273 -01010101000111 fend 391 -01010101000111 spun 457 -01010101000111 cut 9969 -01010101000111 spin 530 -0101010100100 writer-producers 1 -0101010100100 Kosicka 1 -0101010100100 trick-or-treat 1 -0101010100100 succeeed 1 -0101010100100 gate-crash 1 -0101010100100 Yello 1 -0101010100100 teachs 1 -0101010100100 Fenley 1 -0101010100100 hallucinated 1 -0101010100100 loafed 1 -0101010100100 Curves 1 -0101010100100 overdelegates 1 -0101010100100 Arbiter 1 -0101010100100 Savignac 1 -0101010100100 partakes 1 -0101010100100 vieta 1 -0101010100100 Feedyards 1 -0101010100100 resurfaces 1 -0101010100100 Mavropoulos 1 -0101010100100 Wenying 1 -0101010100100 Oldsmobile-Jeep-Renault 1 -0101010100100 Ozenfant 1 -0101010100100 Sarthy 1 -0101010100100 Xuedong 1 -0101010100100 backbites 1 -0101010100100 forages 1 -0101010100100 vituperates 1 -0101010100100 Lixiu 1 -0101010100100 slather 1 -0101010100100 writhed 1 -0101010100100 Kanellopolus 1 -0101010100100 Nakhirunkanok 1 -0101010100100 Gattai 1 -0101010100100 Tschanz 1 -0101010100100 blathers 1 -0101010100100 sunned 1 -0101010100100 Paskalis 1 -0101010100100 Bennings 1 -0101010100100 moonlighted 1 -0101010100100 Pelada 1 -0101010100100 Szuros 1 -0101010100100 perishes 1 -0101010100100 Yongkuan 1 -0101010100100 Staniszkis 1 -0101010100100 gesticulate 1 -0101010100100 normalytechs 1 -0101010100100 Scarpa 2 -0101010100100 non-concur 2 -0101010100100 disinterred 2 -0101010100100 handwrote 2 -0101010100100 supped 2 -0101010100100 skulked 2 -0101010100100 Stertz 2 -0101010100100 masqueraded 2 -0101010100100 foraged 2 -0101010100100 thomped 2 -0101010100100 special-ordered 2 -0101010100100 conversed 2 -0101010100100 squatted 2 -0101010100100 moos 2 -0101010100100 rasped 2 -0101010100100 homesteaded 2 -0101010100100 cornflakes 2 -0101010100100 quivered 2 -0101010100100 patios 2 -0101010100100 tootle 2 -0101010100100 miscarried 2 -0101010100100 cavorted 2 -0101010100100 gesticulates 2 -0101010100100 picnicked 2 -0101010100100 empathizes 2 -0101010100100 sashaying 2 -0101010100100 droops 2 -0101010100100 reddens 2 -0101010100100 coexisted 2 -0101010100100 Tecco 2 -0101010100100 imbibes 2 -0101010100100 reemerges 2 -0101010100100 droned 3 -0101010100100 fasted 3 -0101010100100 dallied 3 -0101010100100 ratchets 3 -0101010100100 burped 3 -0101010100100 meddles 3 -0101010100100 discoursed 3 -0101010100100 matriculated 3 -0101010100100 dotes 3 -0101010100100 commiserates 3 -0101010100100 cowers 3 -0101010100100 belches 3 -0101010100100 skimps 3 -0101010100100 Emerges 3 -0101010100100 jousts 3 -0101010100100 Derrida 3 -0101010100100 stammered 3 -0101010100100 slinks 3 -0101010100100 twine 3 -0101010100100 breakfasted 3 -0101010100100 blanches 3 -0101010100100 golfed 3 -0101010100100 thomp 3 -0101010100100 co-starred 3 -0101010100100 eavesdropped 3 -0101010100100 Choonhavan 3 -0101010100100 crunchy 3 -0101010100100 chortled 3 -0101010100100 festered 3 -0101010100100 moonlights 4 -0101010100100 crooned 4 -0101010100100 expounds 4 -0101010100100 throb 4 -0101010100100 loll 4 -0101010100100 vomits 4 -0101010100100 gestured 4 -0101010100100 fidgets 4 -0101010100100 filibustered 4 -0101010100100 bunked 4 -0101010100100 roomed 4 -0101010100100 disinvested 4 -0101010100100 fidgeted 4 -0101010100100 vomited 4 -0101010100100 creak 4 -0101010100100 crouches 5 -0101010100100 apprenticed 5 -0101010100100 overdosed 5 -0101010100100 dawdled 5 -0101010100100 babbled 5 -0101010100100 sobbed 5 -0101010100100 pounces 5 -0101010100100 officiated 5 -0101010100100 seethes 5 -0101010100100 caucused 5 -0101010100100 lunged 5 -0101010100100 repented 5 -0101010100100 nudges 5 -0101010100100 winces 5 -0101010100100 blanched 5 -0101010100100 recuperated 5 -0101010100100 knelt 5 -0101010100100 cluck 5 -0101010100100 clerked 5 -0101010100100 grimaced 6 -0101010100100 crash-landed 6 -0101010100100 bridled 6 -0101010100100 squats 6 -0101010100100 squirms 6 -0101010100100 meanders 6 -0101010100100 boomeranged 6 -0101010100100 three-putted 6 -0101010100100 winced 7 -0101010100100 scouted 7 -0101010100100 weaved 7 -0101010100100 lunched 7 -0101010100100 CRASHED 7 -0101010100100 agonizes 7 -0101010100100 browsed 7 -0101010100100 decamped 7 -0101010100100 putted 7 -0101010100100 cringed 7 -0101010100100 overreached 7 -0101010100100 commiserated 7 -0101010100100 grinned 7 -0101010100100 twinkles 7 -0101010100100 hissed 7 -0101010100100 feasted 8 -0101010100100 rejoiced 8 -0101010100100 hustles 8 -0101010100100 moaned 8 -0101010100100 vacationed 8 -0101010100100 brooded 8 -0101010100100 dabbles 8 -0101010100100 fantasized 8 -0101010100100 giggled 8 -0101010100100 recurred 8 -0101010100100 whistled 8 -0101010100100 backpedaled 8 -0101010100100 fainted 8 -0101010100100 sympathized 9 -0101010100100 predominated 9 -0101010100100 bloomed 9 -0101010100100 barked 9 -0101010100100 bickered 9 -0101010100100 re-emerged 9 -0101010100100 swooned 9 -0101010100100 flinched 9 -0101010100100 crouched 9 -0101010100100 snickered 10 -0101010100100 flickered 10 -0101010100100 lusted 10 -0101010100100 jogs 10 -0101010100100 errs 11 -0101010100100 dwelt 11 -0101010100100 simmered 11 -0101010100100 GROWS 12 -0101010100100 wrangled 12 -0101010100100 skated 12 -0101010100100 pounced 12 -0101010100100 regrouped 12 -0101010100100 wince 12 -0101010100100 squabbled 13 -0101010100100 waffled 13 -0101010100100 feuded 13 -0101010100100 dines 13 -0101010100100 haggled 14 -0101010100100 chuckled 16 -0101010100100 immigrated 16 -0101010100100 majored 16 -0101010100100 bristled 16 -0101010100100 persevered 16 -0101010100100 swims 17 -0101010100100 revolted 17 -0101010100100 resided 17 -0101010100100 gasped 17 -0101010100100 toiled 17 -0101010100100 nodded 18 -0101010100100 blundered 18 -0101010100100 blinked 20 -0101010100100 quarreled 20 -0101010100100 malfunctioned 20 -0101010100100 wept 21 -0101010100100 excels 22 -0101010100100 interceded 22 -0101010100100 excelled 22 -0101010100100 rebelled 22 -0101010100100 converged 23 -0101010100100 demurred 23 -0101010100100 sparred 24 -0101010100100 awoke 24 -0101010100100 sputtered 24 -0101010100100 prayed 25 -0101010100100 dabbled 26 -0101010100100 chatted 26 -0101010100100 coped 27 -0101010100100 reappeared 27 -0101010100100 reigned 27 -0101010100100 rioted 27 -0101010100100 resigns 29 -0101010100100 remarried 29 -0101010100100 floundered 30 -0101010100100 intervenes 30 -0101010100100 perished 30 -0101010100100 hails 31 -0101010100100 lingered 32 -0101010100100 dawned 32 -0101010100100 migrated 32 -0101010100100 bolted 33 -0101010100100 starred 34 -0101010100100 stared 34 -0101010100100 shopped 38 -0101010100100 chafed 38 -0101010100100 sleeps 39 -0101010100100 consults 40 -0101010100100 blossomed 41 -0101010100100 resurfaced 42 -0101010100100 relented 44 -0101010100100 departs 45 -0101010100100 bristles 45 -0101010100100 collaborated 46 -0101010100100 rested 46 -0101010100100 paused 47 -0101010100100 yelled 47 -0101010100100 abstained 48 -0101010100100 behaved 51 -0101010100100 functioned 52 -0101010100100 raged 52 -0101010100100 unraveled 55 -0101010100100 screamed 58 -0101010100100 foundered 61 -0101010100100 thrived 61 -0101010100100 danced 61 -0101010100100 labored 64 -0101010100100 drowned 68 -0101010100100 descended 70 -0101010100100 smiled 72 -0101010100100 huddled 81 -0101010100100 qualifies 83 -0101010100100 erred 83 -0101010100100 flourished 83 -0101010100100 slept 87 -0101010100100 cried 100 -0101010100100 laughed 112 -0101010100100 competed 116 -0101010100100 flopped 124 -0101010100100 campaigned 133 -0101010100100 persisted 136 -0101010100100 differed 139 -0101010100100 dissented 143 -0101010100100 retires 143 -0101010100100 profited 162 -0101010100100 cooperated 170 -0101010100100 arrives 217 -0101010100100 graduated 219 -0101010100100 lobbied 244 -0101010100100 prevailed 300 -0101010100100 waited 323 -0101010100100 exploded 344 -0101010100100 landed 350 -0101010100100 surfaced 381 -0101010100100 disappeared 407 -0101010100100 intervened 418 -0101010100100 speaks 435 -0101010100100 sat 460 -0101010100100 gathered 535 -0101010100100 spoke 674 -0101010100100 lived 750 -0101010100100 acted 996 -0101010100100 arrived 1040 -0101010100100 emerged 1099 -0101010100100 died 1914 -0101010100100 served 2271 -0101010100100 resigned 3529 -0101010100100 worked 3896 -0101010100101 cross-licensed 1 -0101010100101 1,862,100 1 -0101010100101 porkbarrel 1 -0101010100101 overcorrected 1 -0101010100101 abortions. 1 -0101010100101 de-Islamized 1 -0101010100101 Blondchen 1 -0101010100101 trepidations 1 -0101010100101 underachieved 1 -0101010100101 mine-infested 1 -0101010100101 ZIPP 1 -0101010100101 microshakes 1 -0101010100101 .214 1 -0101010100101 reason. 1 -0101010100101 1,074 1 -0101010100101 pop-sounding 1 -0101010100101 Indians. 1 -0101010100101 cowritten 1 -0101010100101 film-musical 1 -0101010100101 releveraged 1 -0101010100101 Life-Palmer 1 -0101010100101 Peepokun 1 -0101010100101 repurcussions 1 -0101010100101 cheapies 1 -0101010100101 unravelled 1 -0101010100101 disappeared-seized 1 -0101010100101 begun. 1 -0101010100101 on-the-field 1 -0101010100101 chickenpox 1 -0101010100101 digressed 1 -0101010100101 2-by-3 1 -0101010100101 bodybuilding 1 -0101010100101 expresssed 1 -0101010100101 55,418 1 -0101010100101 70-foot-tall 1 -0101010100101 Indiatowns 1 -0101010100101 over-plotted 1 -0101010100101 entoiled 1 -0101010100101 sufferd 1 -0101010100101 oversedation 1 -0101010100101 Tele-PrompTers 1 -0101010100101 reskinned 1 -0101010100101 THX 1 -0101010100101 scarily 1 -0101010100101 awoken 1 -0101010100101 decreases. 1 -0101010100101 offbase 1 -0101010100101 panic. 1 -0101010100101 double-cast 1 -0101010100101 luged 1 -0101010100101 Napoleons 1 -0101010100101 overpromised 1 -0101010100101 Xephrey 1 -0101010100101 jet-propelled 1 -0101010100101 hob-nobbed 1 -0101010100101 effects. 1 -0101010100101 6,176 1 -0101010100101 gardened 1 -0101010100101 marketed. 1 -0101010100101 learnt 1 -0101010100101 costsharing 1 -0101010100101 bulletholes 1 -0101010100101 contiued 1 -0101010100101 gotton 1 -0101010100101 casted 2 -0101010100101 lazuli 2 -0101010100101 flouncy 2 -0101010100101 beastie 2 -0101010100101 well-fortified 2 -0101010100101 selling. 2 -0101010100101 lazed 2 -0101010100101 slumbered 2 -0101010100101 propagandized 2 -0101010100101 urinated 2 -0101010100101 travelled 2 -0101010100101 been. 2 -0101010100101 prospected 2 -0101010100101 overinvested 2 -0101010100101 fledged 2 -0101010100101 bummed 2 -0101010100101 undershipped 2 -0101010100101 cohabited 2 -0101010100101 bumbled 3 -0101010100101 self-destructed 3 -0101010100101 battened 3 -0101010100101 ratted 3 -0101010100101 sizzled 4 -0101010100101 rots 4 -0101010100101 punted 4 -0101010100101 slouched 4 -0101010100101 temporized 4 -0101010100101 separable 4 -0101010100101 relapsed 4 -0101010100101 regressed 4 -0101010100101 hiccuped 4 -0101010100101 decelerated 5 -0101010100101 deputized 5 -0101010100101 zigzagged 5 -0101010100101 beeped 5 -0101010100101 devolved 6 -0101010100101 swerved 7 -0101010100101 congregated 7 -0101010100101 overproduced 7 -0101010100101 reemerged 8 -0101010100101 clasped 9 -0101010100101 outshone 9 -0101010100101 striven 9 -0101010100101 retrenched 10 -0101010100101 burgeoned 10 -0101010100101 clicked 12 -0101010100101 sufficed 12 -0101010100101 slackens 15 -0101010100101 vacillated 15 -0101010100101 snowballed 16 -0101010100101 diverged 19 -0101010100101 outgrown 19 -0101010100101 mellowed 20 -0101010100101 steadied 21 -0101010100101 transpired 23 -0101010100101 shriveled 27 -0101010100101 wavered 28 -0101010100101 wilted 29 -0101010100101 triumphed 33 -0101010100101 ebbed 33 -0101010100101 unfolded 35 -0101010100101 sprouted 38 -0101010100101 stagnated 39 -0101010100101 withered 44 -0101010100101 mattered 47 -0101010100101 brightened 49 -0101010100101 receded 49 -0101010100101 lapsed 51 -0101010100101 mushroomed 53 -0101010100101 strayed 54 -0101010100101 proliferated 57 -0101010100101 crumbled 58 -0101010100101 slackened 59 -0101010100101 matured 59 -0101010100101 dimmed 62 -0101010100101 abated 64 -0101010100101 dissipated 65 -0101010100101 subsided 66 -0101010100101 budged 71 -0101010100101 fluctuated 80 -0101010100101 waned 80 -0101010100101 multiplied 84 -0101010100101 skyrocketed 84 -0101010100101 boomed 87 -0101010100101 evaporated 89 -0101010100101 arisen 89 -0101010100101 backfired 89 -0101010100101 deepened 92 -0101010100101 progressed 92 -0101010100101 prospered 99 -0101010100101 ballooned 99 -0101010100101 faltered 103 -0101010100101 languished 111 -0101010100101 dwindled 123 -0101010100101 vanished 130 -0101010100101 sunk 140 -0101010100101 cooled 178 -0101010100101 deteriorated 182 -0101010100101 evolved 186 -0101010100101 worsened 186 -0101010100101 faded 240 -0101010100101 stabilized 240 -0101010100101 shrunk 248 -0101010100101 lagged 360 -0101010100101 existed 421 -0101010100101 shifted 531 -0101010100101 gotten 895 -0101010100101 slowed 1140 -0101010100101 grown 1583 -0101010100101 risen 1710 -0101010100101 fallen 1779 -0101010100101 occurred 1804 -0101010100101 happened 1829 -0101010100101 gone 2570 -0101010100101 changed 4498 -0101010100101 begun 2588 -0101010100110 rumor-fueled 1 -0101010100110 out-hyped 1 -0101010100110 Kops-paced 1 -0101010100110 CONSIDERS 1 -0101010100110 Third-market 1 -0101010100110 rototills 1 -0101010100110 Kannen 1 -0101010100110 pre-session 1 -0101010100110 dollar-inspired 1 -0101010100110 raucously 1 -0101010100110 investment-type 1 -0101010100110 PA-32s 1 -0101010100110 out-glitz 1 -0101010100110 Ltd.-1983 1 -0101010100110 puddle-of-consciousness 1 -0101010100110 COMPUTER-SCREEN 1 -0101010100110 welded-wire 1 -0101010100110 disgorges 1 -0101010100110 MiG-26 1 -0101010100110 deficiency-notice 1 -0101010100110 1058 2 -0101010100110 overexpanding 2 -0101010100110 mini-skirts 2 -0101010100110 exchange-based 2 -0101010100110 equal-quantity 2 -0101010100110 spooks 3 -0101010100110 RESUMED 4 -0101010100110 thickened 4 -0101010100110 climaxing 4 -0101010100110 sucks 9 -0101010100110 commences 10 -0101010100110 debuted 13 -0101010100110 reconvenes 20 -0101010100110 premiered 24 -0101010100110 ceases 26 -0101010100110 climaxed 31 -0101010100110 convenes 36 -0101010100110 reopens 36 -0101010100110 commenced 64 -0101010100110 culminated 68 -0101010100110 ceased 183 -0101010100110 closes 284 -0101010100110 crashed 480 -0101010100110 opens 527 -0101010100110 resumed 602 -0101010100110 collapsed 763 -0101010100110 starts 1418 -0101010100110 begins 1578 -0101010100110 began 11586 -0101010100110 started 4500 -01010101001110 Kepone 1 -01010101001110 putt-putt 1 -01010101001110 helmet-first 1 -01010101001110 dishware 1 -01010101001110 sculpin 1 -01010101001110 sluiced 1 -01010101001110 peeped 1 -01010101001110 roughnecked 1 -01010101001110 interweave 1 -01010101001110 over-expanded 1 -01010101001110 palpitate 1 -01010101001110 re-orienting 1 -01010101001110 jouncing 1 -01010101001110 Holmeses 1 -01010101001110 Phelpses 1 -01010101001110 break-dances 1 -01010101001110 Polovchak 1 -01010101001110 peeps 1 -01010101001110 swishes 1 -01010101001110 drowsing 1 -01010101001110 clattered 1 -01010101001110 posses 1 -01010101001110 corkscrewed 1 -01010101001110 chartboards 1 -01010101001110 Hopscotching 1 -01010101001110 bops 1 -01010101001110 goalward 1 -01010101001110 litigates 1 -01010101001110 modulates 1 -01010101001110 sups 1 -01010101001110 airlock 1 -01010101001110 Tenzing 1 -01010101001110 dead-ending 1 -01010101001110 lanked 1 -01010101001110 themsselves 1 -01010101001110 ice-skated 1 -01010101001110 canters 1 -01010101001110 illegalized 1 -01010101001110 media-manipulated 1 -01010101001110 teeters 1 -01010101001110 rusts 1 -01010101001110 rummages 1 -01010101001110 desklegs 1 -01010101001110 expatiated 1 -01010101001110 re-injecting 1 -01010101001110 taxies 1 -01010101001110 boogied 1 -01010101001110 Papen 1 -01010101001110 tap-danced 1 -01010101001110 non-REIT 1 -01010101001110 voyaged 1 -01010101001110 self-navigates 1 -01010101001110 traipsing 1 -01010101001110 Knocks 1 -01010101001110 POURED 1 -01010101001110 Lucretius 1 -01010101001110 traipses 1 -01010101001110 scoots 1 -01010101001110 Faltered 1 -01010101001110 L1011 1 -01010101001110 shinny 1 -01010101001110 hushed-up 1 -01010101001110 pulsed 1 -01010101001110 record-buying 1 -01010101001110 hove 1 -01010101001110 snoozes 1 -01010101001110 splish-splashing 1 -01010101001110 Coursing 1 -01010101001110 fatigue-testing 1 -01010101001110 EIS 1 -01010101001110 Weeding 1 -01010101001110 somnambulates 1 -01010101001110 shoe-horned 1 -01010101001110 trenched 1 -01010101001110 laser-carved 1 -01010101001110 tropical-looking 1 -01010101001110 Subcommission 1 -01010101001110 Kleissas 1 -01010101001110 fentanyl 1 -01010101001110 orate 2 -01010101001110 ramrodded 2 -01010101001110 trebles 2 -01010101001110 ferments 2 -01010101001110 bulled 2 -01010101001110 sloshes 2 -01010101001110 thrashes 2 -01010101001110 detoured 2 -01010101001110 wiggled 2 -01010101001110 tromping 2 -01010101001110 soldiered 2 -01010101001110 clangs 2 -01010101001110 antes 2 -01010101001110 1373 2 -01010101001110 segued 2 -01010101001110 intercedes 2 -01010101001110 captivates 2 -01010101001110 Tumbles 2 -01010101001110 reclines 2 -01010101001110 bicycled 2 -01010101001110 writhes 2 -01010101001110 motored 2 -01010101001110 exhaling 2 -01010101001110 totters 2 -01010101001110 glom 2 -01010101001110 slobbing 2 -01010101001110 galumphing 2 -01010101001110 disowning 2 -01010101001110 whooshed 2 -01010101001110 tramped 3 -01010101001110 limps 3 -01010101001110 impinged 3 -01010101001110 trembles 3 -01010101001110 coursed 3 -01010101001110 impinges 3 -01010101001110 genealogies 3 -01010101001110 prances 3 -01010101001110 snuggled 3 -01010101001110 harkens 3 -01010101001110 quiets 3 -01010101001110 faints 3 -01010101001110 cartwheeled 3 -01010101001110 cartwheeling 3 -01010101001110 spread-eagled 3 -01010101001110 BUILDS 3 -01010101001110 scrimped 3 -01010101001110 converges 3 -01010101001110 hurtles 3 -01010101001110 squints 3 -01010101001110 welshed 3 -01010101001110 expends 3 -01010101001110 urinates 3 -01010101001110 bobs 3 -01010101001110 flapped 3 -01010101001110 room-nights 3 -01010101001110 gravitates 3 -01010101001110 bustles 4 -01010101001110 bobbed 4 -01010101001110 plods 4 -01010101001110 partway 4 -01010101001110 leafs 4 -01010101001110 slogs 4 -01010101001110 segues 4 -01010101001110 scampers 4 -01010101001110 waltzed 4 -01010101001110 percolated 4 -01010101001110 rambles 4 -01010101001110 whirls 4 -01010101001110 preys 4 -01010101001110 snaked 4 -01010101001110 flits 4 -01010101001110 tiptoes 4 -01010101001110 doted 4 -01010101001110 rummaged 4 -01010101001110 scurries 4 -01010101001110 swerves 4 -01010101001110 nestles 4 -01010101001110 decomposes 4 -01010101001110 squinting 4 -01010101001110 rapped 5 -01010101001110 zips 5 -01010101001110 tramping 5 -01010101001110 heaves 5 -01010101001110 decays 5 -01010101001110 traipse 5 -01010101001110 eavesdrops 5 -01010101001110 subsists 5 -01010101001110 skitters 5 -01010101001110 hurtled 5 -01010101001110 sashays 5 -01010101001110 pivots 5 -01010101001110 kneels 5 -01010101001110 darted 6 -01010101001110 capitalizes 6 -01010101001110 coasted 6 -01010101001110 crumbles 6 -01010101001110 ambles 6 -01010101001110 rampaged 6 -01010101001110 paddled 6 -01010101001110 migrates 6 -01010101001110 wafted 6 -01010101001110 careens 6 -01010101001110 secreted 6 -01010101001110 roams 6 -01010101001110 mutates 6 -01010101001110 countenances 6 -01010101001110 reconciles 6 -01010101001110 peeked 6 -01010101001110 muddles 7 -01010101001110 inflicts 7 -01010101001110 tramples 7 -01010101001110 seeps 7 -01010101001110 meshes 7 -01010101001110 plodded 7 -01010101001110 sifts 7 -01010101001110 flutters 7 -01010101001110 cascaded 7 -01010101001110 slogged 7 -01010101001110 scampered 7 -01010101001110 sprawls 8 -01010101001110 wades 8 -01010101001110 parachuted 8 -01010101001110 rambled 8 -01010101001110 trudges 8 -01010101001110 straggled 9 -01010101001110 forges 9 -01010101001110 hums 9 -01010101001110 swoops 9 -01010101001110 forecloses 9 -01010101001110 harks 9 -01010101001110 coursing 10 -01010101001110 goofed 10 -01010101001110 elaborates 10 -01010101001110 whizzed 10 -01010101001110 breezed 10 -01010101001110 taxied 10 -01010101001110 glanced 11 -01010101001110 delves 11 -01010101001110 mumbles 11 -01010101001110 trudged 11 -01010101001110 crawls 11 -01010101001110 shies 12 -01010101001110 intrudes 12 -01010101001110 intruded 12 -01010101001110 glided 12 -01010101001110 rumbled 12 -01010101001110 trickles 12 -01010101001110 gazes 12 -01010101001110 waded 13 -01010101001110 veers 13 -01010101001110 hurries 13 -01010101001110 limped 14 -01010101001110 strode 14 -01010101001110 scrambles 15 -01010101001110 embarks 15 -01010101001110 strolled 15 -01010101001110 zooms 16 -01010101001110 squeaked 16 -01010101001110 tumbles 17 -01010101001110 dwells 17 -01010101001110 weaves 18 -01010101001110 shuffles 19 -01010101001110 lurches 19 -01010101001110 evolves 20 -01010101001110 descends 20 -01010101001110 skips 20 -01010101001110 melts 20 -01010101001110 cools 20 -01010101001110 crawled 21 -01010101001110 hopped 21 -01010101001110 glides 23 -01010101001110 strolls 23 -01010101001110 infringes 23 -01010101001110 lurks 24 -01010101001110 roars 25 -01010101001110 shone 25 -01010101001110 grinds 27 -01010101001110 flips 27 -01010101001110 drifts 29 -01010101001110 shines 30 -01010101001110 rained 31 -01010101001110 frowns 31 -01010101001110 fluctuates 32 -01010101001110 wanders 35 -01010101001110 stumbles 37 -01010101001110 bounces 42 -01010101001110 rushes 47 -01010101001110 thrives 49 -01010101001110 sprinted 50 -01010101001110 leaned 56 -01010101001110 drags 58 -01010101001110 boils 60 -01010101001110 revolves 60 -01010101001110 lingers 62 -01010101001110 flashed 66 -01010101001110 roared 76 -01010101001110 rang 77 -01010101001110 climbs 79 -01010101001110 sailed 83 -01010101001110 raced 91 -01010101001110 leans 92 -01010101001110 disappears 95 -01010101001110 concentrates 116 -01010101001110 translates 162 -01010101001110 hangs 171 -01010101001110 marched 194 -01010101001110 rests 199 -01010101001110 walks 226 -01010101001110 extends 276 -01010101001110 relies 284 -01010101001110 sits 501 -01010101001110 flew 581 -01010101001110 falls 878 -01010101001110 went 5810 -01010101001110 goes 3196 -01010101001111 triggerman 1 -01010101001111 Brayer 1 -01010101001111 jerkily 1 -01010101001111 abstains 1 -01010101001111 ZTR 1 -01010101001111 Kagero 1 -01010101001111 Want-not 1 -01010101001111 Kwang-Su 1 -01010101001111 I-79 1 -01010101001111 epiphyte 1 -01010101001111 HWY 1 -01010101001111 Applewhite 1 -01010101001111 inqueries 1 -01010101001111 mini-breaks 1 -01010101001111 Buckets 1 -01010101001111 prefunded 1 -01010101001111 SUFFERS 1 -01010101001111 smarted 1 -01010101001111 1294 1 -01010101001111 first-timer 1 -01010101001111 plains-dwellers 1 -01010101001111 instated 1 -01010101001111 FVF 1 -01010101001111 HYP 1 -01010101001111 ACD 1 -01010101001111 CHT 1 -01010101001111 somersaulted 1 -01010101001111 fummoxed 1 -01010101001111 preventers 1 -01010101001111 ONA 1 -01010101001111 filches 1 -01010101001111 price-9 1 -01010101001111 Cabo 1 -01010101001111 PNF 1 -01010101001111 berrying 1 -01010101001111 reflows 1 -01010101001111 glowers 2 -01010101001111 smouldering 2 -01010101001111 exerpts 2 -01010101001111 steepens 2 -01010101001111 recuperates 2 -01010101001111 discolors 2 -01010101001111 throbbed 2 -01010101001111 zigged 2 -01010101001111 unreels 2 -01010101001111 WASH-FM 2 -01010101001111 undulates 3 -01010101001111 blurting 4 -01010101001111 protruded 4 -01010101001111 condenses 4 -01010101001111 simmers 5 -01010101001111 shuddered 5 -01010101001111 beeps 5 -01010101001111 flitted 5 -01010101001111 snipped 5 -01010101001111 throbs 5 -01010101001111 concetion 6 -01010101001111 recoils 6 -01010101001111 fluttering 6 -01010101001111 protrude 6 -01010101001111 emanated 7 -01010101001111 germinated 7 -01010101001111 recoiled 7 -01010101001111 deviates 7 -01010101001111 diverges 7 -01010101001111 steepened 7 -01010101001111 disintegrates 7 -01010101001111 lurked 9 -01010101001111 detracted 9 -01010101001111 deviated 10 -01010101001111 benefitted 10 -01010101001111 reverberated 13 -01010101001111 accrues 14 -01010101001111 rakes 15 -01010101001111 lurk 15 -01010101001111 refrains 15 -01010101001111 paled 16 -01010101001111 detracts 16 -01010101001111 resonates 16 -01010101001111 lurched 17 -01010101001111 occured 17 -01010101001111 circulates 18 -01010101001111 revolved 19 -01010101001111 erupts 22 -01010101001111 pales 36 -01010101001111 loomed 36 -01010101001111 fades 53 -01010101001111 swirled 61 -01010101001111 refrained 64 -01010101001111 sprang 83 -01010101001111 flared 83 -01010101001111 looms 109 -01010101001111 varies 112 -01010101001111 fizzled 119 -01010101001111 derives 119 -01010101001111 differs 145 -01010101001111 arises 169 -01010101001111 suffers 196 -01010101001111 flowed 209 -01010101001111 erupted 294 -01010101001111 emerges 302 -01010101001111 arose 364 -01010101001111 occurs 457 -01010101001111 stemmed 560 -01010101001111 stems 604 -01010101001111 benefited 785 -01010101001111 lies 808 -01010101001111 resulted 1940 -01010101001111 came 8787 -01010101001111 comes 4408 -0101010101000 uninflated 1 -0101010101000 scathed 1 -0101010101000 confuted 1 -0101010101000 notifed 1 -0101010101000 embowered 1 -0101010101000 disapponted 1 -0101010101000 1,732 1 -0101010101000 whiplashed 1 -0101010101000 out-hit 1 -0101010101000 Fertilised 1 -0101010101000 Bactrim 1 -0101010101000 Pared 1 -0101010101000 re-jigging 1 -0101010101000 overtopped 1 -0101010101000 subpoened 1 -0101010101000 Fooled 1 -0101010101000 counterpointed 1 -0101010101000 Justified 1 -0101010101000 Riled 1 -0101010101000 dismisssed 1 -0101010101000 outmuscled 1 -0101010101000 embrittled 1 -0101010101000 reinfected 1 -0101010101000 Comex-inspired 1 -0101010101000 engrosses 1 -0101010101000 offet 1 -0101010101000 near-maddened 1 -0101010101000 prefigured 1 -0101010101000 peformed 2 -0101010101000 offest 2 -0101010101000 superceded 2 -0101010101000 Streptase 2 -0101010101000 backstopped 2 -0101010101000 misplayed 2 -0101010101000 scourged 2 -0101010101000 bushwhacked 2 -0101010101000 Seventh-Day 2 -0101010101000 marketize 2 -0101010101000 rechoreographed 2 -0101010101000 monetized 3 -0101010101000 nonplused 3 -0101010101000 titillates 3 -0101010101000 cued 3 -0101010101000 singed 3 -0101010101000 sideswiped 3 -0101010101000 overfilled 3 -0101010101000 quenched 4 -0101010101000 overhung 4 -0101010101000 co-financed 4 -0101010101000 wagged 4 -0101010101000 outproduced 4 -0101010101000 intimidates 4 -0101010101000 scandalized 4 -0101010101000 outclassed 4 -0101010101000 telegraphing 5 -0101010101000 sundered 5 -0101010101000 outdistanced 5 -0101010101000 obviated 5 -0101010101000 walloped 5 -0101010101000 damps 6 -0101010101000 beguiled 6 -0101010101000 startles 6 -0101010101000 co-written 7 -0101010101000 nagged 7 -0101010101000 mauled 7 -0101010101000 denuded 7 -0101010101000 outdistancing 7 -0101010101000 shadowed 7 -0101010101000 blind-sided 7 -0101010101000 nettled 7 -0101010101000 ringed 9 -0101010101000 occasioned 9 -0101010101000 waylaid 10 -0101010101000 surmounted 10 -0101010101000 sowed 11 -0101010101000 presaged 11 -0101010101000 outrun 12 -0101010101000 blindsided 13 -0101010101000 dazzled 13 -0101010101000 invigorated 13 -0101010101000 belied 13 -0101010101000 obliterated 13 -0101010101000 enveloped 14 -0101010101000 buffered 14 -0101010101000 assuaged 14 -0101010101000 enlivened 14 -0101010101000 soothed 14 -0101010101000 brutalized 14 -0101010101000 reignited 15 -0101010101000 nourished 16 -0101010101000 rivaled 17 -0101010101000 felled 17 -0101010101000 crimped 17 -0101010101000 perpetuated 17 -0101010101000 mobbed 18 -0101010101000 daunted 18 -0101010101000 furthered 18 -0101010101000 bettered 18 -0101010101000 co-produced 19 -0101010101000 corroborated 20 -0101010101000 spotlighted 20 -0101010101000 usurped 20 -0101010101000 blanketed 20 -0101010101000 torpedoed 20 -0101010101000 muddied 21 -0101010101000 piqued 21 -0101010101000 pervaded 22 -0101010101000 sullied 22 -0101010101000 humbled 23 -0101010101000 personified 23 -0101010101000 permeated 23 -0101010101000 dampened 23 -0101010101000 bedeviled 24 -0101010101000 graced 24 -0101010101000 whetted 25 -0101010101000 squelched 26 -0101010101000 traumatized 26 -0101010101000 pierced 27 -0101010101000 whipsawed 27 -0101010101000 allayed 27 -0101010101000 thinned 27 -0101010101000 ruffled 28 -0101010101000 quelled 28 -0101010101000 instigated 28 -0101010101000 blinded 30 -0101010101000 mitigated 31 -0101010101000 necessitated 32 -0101010101000 buttressed 32 -0101010101000 embittered 32 -0101010101000 paralleled 32 -0101010101000 upstaged 33 -0101010101000 dispelled 34 -0101010101000 alleviated 34 -0101010101000 rankled 34 -0101010101000 jarred 34 -0101010101000 superseded 35 -0101010101000 defused 37 -0101010101000 accentuated 37 -0101010101000 decimated 39 -0101010101000 dramatized 39 -0101010101000 cushioned 40 -0101010101000 blunted 42 -0101010101000 dented 44 -0101010101000 stunted 44 -0101010101000 supplanted 45 -0101010101000 confounded 49 -0101010101000 wracked 49 -0101010101000 sapped 50 -0101010101000 irked 50 -0101010101000 impeded 50 -0101010101000 roiled 51 -0101010101000 unnerved 56 -0101010101000 facilitated 57 -0101010101000 ravaged 57 -0101010101000 calmed 58 -0101010101000 pinched 58 -0101010101000 gripped 61 -0101010101000 stifled 61 -0101010101000 spooked 63 -0101010101000 overtaken 63 -0101010101000 rattled 65 -0101010101000 clobbered 66 -0101010101000 hobbled 67 -0101010101000 fanned 71 -0101010101000 underperformed 74 -0101010101000 infuriated 74 -0101010101000 outweighed 75 -0101010101000 mirrored 76 -0101010101000 outstripped 79 -0101010101000 afforded 79 -0101010101000 overrun 83 -0101010101000 marred 85 -0101010101000 obscured 86 -0101010101000 eclipsed 87 -0101010101000 fostered 89 -0101010101000 hindered 90 -0101010101000 irritated 91 -0101010101000 reassured 92 -0101010101000 stung 96 -0101010101000 jolted 97 -0101010101000 startled 97 -0101010101000 ignited 101 -0101010101000 precipitated 103 -0101010101000 overseen 105 -0101010101000 aggravated 110 -0101010101000 masked 114 -0101010101000 offended 118 -0101010101000 stimulated 121 -0101010101000 rocked 123 -0101010101000 clouded 123 -0101010101000 buffeted 127 -0101010101000 devastated 130 -0101010101000 dogged 132 -0101010101000 dictated 138 -0101010101000 beset 142 -0101010101000 stymied 142 -0101010101000 aroused 142 -0101010101000 overshadowed 145 -0101010101000 harmed 146 -0101010101000 damped 153 -0101010101000 erased 156 -0101010101000 trailed 160 -0101010101000 highlighted 168 -0101010101000 abide 176 -0101010101000 outperformed 179 -0101010101000 cheered 179 -0101010101000 underscored 188 -0101010101000 disrupted 201 -0101010101000 exacerbated 202 -0101010101000 overwhelmed 205 -0101010101000 spawned 207 -0101010101000 guided 216 -0101010101000 undermined 220 -0101010101000 illustrated 225 -0101010101000 surpassed 234 -0101010101000 reinforced 237 -0101010101000 hampered 253 -0101010101000 tracked 257 -0101010101000 angered 272 -0101010101000 undercut 318 -0101010101000 stunned 344 -0101010101000 inspired 379 -0101010101000 plagued 430 -0101010101000 matched 443 -0101010101000 influenced 455 -0101010101000 bolstered 472 -0101010101000 topped 513 -0101010101000 spurred 675 -0101010101000 fueled 846 -0101010101000 sparked 932 -0101010101000 triggered 1087 -0101010101000 marked 1189 -0101010101000 generated 1423 -0101010101000 prompted 1920 -0101010101000 offset 2233 -0101010101000 hit 4306 -0101010101000 caused 4120 -0101010101000 hurt 4154 -01010101010010 1,013 1 -01010101010010 greenmailed 1 -01010101010010 more-pressing 1 -01010101010010 caustically 1 -01010101010010 Wesblot 1 -01010101010010 30-megabyte 1 -01010101010010 ornithologists 1 -01010101010010 unfixable 1 -01010101010010 hepled 1 -01010101010010 pre-conceived 1 -01010101010010 flannel-shirted 1 -01010101010010 jigsawed 1 -01010101010010 Discreetly 1 -01010101010010 fall-caught 1 -01010101010010 extrudes 1 -01010101010010 humored 1 -01010101010010 nick-named 1 -01010101010010 rest-room 1 -01010101010010 midcourt 1 -01010101010010 grinningly 1 -01010101010010 anti-religion 1 -01010101010010 grocery-based 1 -01010101010010 portentiously 1 -01010101010010 non-athletes 1 -01010101010010 Senghor 1 -01010101010010 way-out 1 -01010101010010 Expresses 2 -01010101010010 catholic 2 -01010101010010 misappropriates 2 -01010101010010 Tollison 2 -01010101010010 internalized 2 -01010101010010 feigns 3 -01010101010010 democratized 3 -01010101010010 evinced 6 -01010101010010 prods 8 -01010101010010 deflects 10 -01010101010010 exuded 10 -01010101010010 dared 90 -01010101010010 voiced 303 -01010101010010 enabled 382 -01010101010010 helps 1085 -01010101010010 expressed 2550 -01010101010010 helped 6236 -01010101010011 drill-avoiders 1 -01010101010011 Spartanized 1 -01010101010011 subunderwritten 1 -01010101010011 R&V 1 -01010101010011 recommeded 1 -01010101010011 unmodulated 1 -01010101010011 footballdom 1 -01010101010011 unfelt 1 -01010101010011 smarminess 1 -01010101010011 hexed 1 -01010101010011 rear-ended 1 -01010101010011 underknown 1 -01010101010011 officered 1 -01010101010011 weeny 1 -01010101010011 Leuker 1 -01010101010011 adventitiously 1 -01010101010011 singleA-plus 1 -01010101010011 Andropovs 1 -01010101010011 well-defended 1 -01010101010011 unalarmed 1 -01010101010011 diltiazen 1 -01010101010011 nicardipine 1 -01010101010011 slinked 1 -01010101010011 blinkered 1 -01010101010011 uncrushed 1 -01010101010011 OPERATE 1 -01010101010011 unshrouded 1 -01010101010011 2,625,000 1 -01010101010011 GMHE 1 -01010101010011 282,090 1 -01010101010011 657,100 1 -01010101010011 283,428 1 -01010101010011 73-22 1 -01010101010011 unappeased 1 -01010101010011 profferred 1 -01010101010011 pre-screened 1 -01010101010011 Screg 1 -01010101010011 reinvestigated 1 -01010101010011 tripleB 1 -01010101010011 sportshirts 1 -01010101010011 INFORM 1 -01010101010011 Televizor 1 -01010101010011 equilibriums 1 -01010101010011 retailated 1 -01010101010011 under-invoicing 1 -01010101010011 reapproved 1 -01010101010011 Aliran 1 -01010101010011 tongue-lashed 1 -01010101010011 undistracted 1 -01010101010011 Melded 1 -01010101010011 BA-3 1 -01010101010011 Unhindered 1 -01010101010011 unthreatened 1 -01010101010011 recopied 1 -01010101010011 mid-drunk 1 -01010101010011 PROMISED 1 -01010101010011 half-choked 1 -01010101010011 over-hired 1 -01010101010011 SP1 1 -01010101010011 tripleB-plus 1 -01010101010011 selfemployment 1 -01010101010011 Grille 1 -01010101010011 tootled 1 -01010101010011 unsheathed 1 -01010101010011 rebadged 1 -01010101010011 outshown 1 -01010101010011 Hedren 1 -01010101010011 multipled 1 -01010101010011 schadkhan 1 -01010101010011 105,280 1 -01010101010011 mis-shifted 1 -01010101010011 lept 1 -01010101010011 40-14 1 -01010101010011 Duerer 1 -01010101010011 ABBA 1 -01010101010011 out-maneuvered 1 -01010101010011 613,689 1 -01010101010011 double-Aminus 1 -01010101010011 unshaped 1 -01010101010011 unfleshed 1 -01010101010011 Coupes 1 -01010101010011 physician-bashing 1 -01010101010011 Meps 1 -01010101010011 409,293 1 -01010101010011 succored 1 -01010101010011 court-bashing 1 -01010101010011 Helmsleyed 1 -01010101010011 propositioned 1 -01010101010011 assumably 1 -01010101010011 coled 1 -01010101010011 micro-managed 2 -01010101010011 uncowed 2 -01010101010011 Reprinted 2 -01010101010011 emplacements 2 -01010101010011 unflustered 2 -01010101010011 midwifed 2 -01010101010011 doubleA 2 -01010101010011 singleA 2 -01010101010011 bedazzled 2 -01010101010011 buffaloed 2 -01010101010011 unmarred 3 -01010101010011 defrayed 3 -01010101010011 menaced 3 -01010101010011 atoned 3 -01010101010011 micromanaged 3 -01010101010011 aped 3 -01010101010011 SP1-plus 4 -01010101010011 co-signed 4 -01010101010011 pocked 4 -01010101010011 buffed 4 -01010101010011 leavened 5 -01010101010011 bouyed 5 -01010101010011 rubber-stamped 6 -01010101010011 unburdened 7 -01010101010011 trod 7 -01010101010011 beseiged 7 -01010101010011 tantalized 7 -01010101010011 co-published 7 -01010101010011 co-chaired 9 -01010101010011 heckled 9 -01010101010011 serenaded 10 -01010101010011 vetted 13 -01010101010011 impelled 13 -01010101010011 abides 15 -01010101010011 complemented 18 -01010101010011 transfixed 19 -01010101010011 narrated 20 -01010101010011 frequented 20 -01010101010011 typified 20 -01010101010011 flanked 27 -01010101010011 underpinned 31 -01010101010011 symbolized 40 -01010101010011 co-managed 41 -01010101010011 authored 57 -01010101010011 supplemented 60 -01010101010011 punctuated 60 -01010101010011 emboldened 64 -01010101010011 chaired 82 -01010101010011 spearheaded 92 -01010101010011 paced 124 -01010101010011 propelled 190 -01010101010011 preceded 198 -01010101010011 surrounded 306 -01010101010011 buoyed 475 -01010101010011 accompanied 571 -01010101010011 sponsored 782 -01010101010011 aided 787 -01010101010011 dominated 946 -01010101010011 supported 1651 -01010101010011 backed 1770 -01010101010011 led 8086 -01010101010011 headed 2324 -0101010101010 group-led 1 -0101010101010 fact-fudging 1 -0101010101010 arrranged 1 -0101010101010 cossetted 1 -0101010101010 breathable 1 -0101010101010 resistible 1 -0101010101010 -guaranteed 1 -0101010101010 hopscotched 1 -0101010101010 acquiried 1 -0101010101010 no-frill 1 -0101010101010 unawed 1 -0101010101010 enruptured 1 -0101010101010 out-recruited 1 -0101010101010 unhobbled 1 -0101010101010 tureens 1 -0101010101010 partly-owned 1 -0101010101010 long-controlled 1 -0101010101010 part-owned 1 -0101010101010 overdominance 1 -0101010101010 shockable 1 -0101010101010 Sketches 1 -0101010101010 waivable 1 -0101010101010 over-persuaded 1 -0101010101010 lashings 1 -0101010101010 overowned 1 -0101010101010 re-equipped 1 -0101010101010 onlent 1 -0101010101010 organzied 1 -0101010101010 acqired 1 -0101010101010 administrated 1 -0101010101010 well-covered 1 -0101010101010 -refundable 1 -0101010101010 herbed-out 1 -0101010101010 Giftwraps 1 -0101010101010 well-fattened 1 -0101010101010 pre-sorted 1 -0101010101010 overarched 1 -0101010101010 Suppressed 1 -0101010101010 expiated 1 -0101010101010 roadblocked 1 -0101010101010 re-xamined 1 -0101010101010 long-opposed 1 -0101010101010 -acquired 1 -0101010101010 Dutch-state-owned 1 -0101010101010 unstained 1 -0101010101010 trisected 1 -0101010101010 bulletpocked 1 -0101010101010 percieved 1 -0101010101010 unimplemented 1 -0101010101010 contolled 1 -0101010101010 -full 1 -0101010101010 half-crazed 1 -0101010101010 criticism- 1 -0101010101010 imaged 1 -0101010101010 Wrongdoing 1 -0101010101010 non-reimbursed 1 -0101010101010 deafened 1 -0101010101010 co-supported 1 -0101010101010 Permanone 1 -0101010101010 wrapups 1 -0101010101010 limned 2 -0101010101010 edified 2 -0101010101010 Mode 2 -0101010101010 co-anchored 2 -0101010101010 merchandized 2 -0101010101010 unscarred 2 -0101010101010 long-practiced 2 -0101010101010 Energiverk 2 -0101010101010 -backed 2 -0101010101010 inflected 2 -0101010101010 co-headed 2 -0101010101010 theatened 2 -0101010101010 co-led 2 -0101010101010 curtained 3 -0101010101010 terminable 3 -0101010101010 one-upped 3 -0101010101010 gulled 3 -0101010101010 identifed 3 -0101010101010 represented. 3 -0101010101010 unmonitored 3 -0101010101010 discomfited 3 -0101010101010 trivialized 4 -0101010101010 subsumed 4 -0101010101010 awe-struck 4 -0101010101010 bisected 4 -0101010101010 asphyxiated 4 -0101010101010 sired 4 -0101010101010 ill-served 4 -0101010101010 augured 4 -0101010101010 expounded 4 -0101010101010 excreted 4 -0101010101010 metered 5 -0101010101010 underserved 5 -0101010101010 unaccompanied 6 -0101010101010 fettered 6 -0101010101010 cross-examined 7 -0101010101010 reinsured 7 -0101010101010 hypnotized 7 -0101010101010 muzzled 7 -0101010101010 lead-managed 8 -0101010101010 riven 8 -0101010101010 unswayed 8 -0101010101010 overspent 8 -0101010101010 encircled 10 -0101010101010 mistrusted 10 -0101010101010 abided 10 -0101010101010 co-owned 11 -0101010101010 undersubscribed 12 -0101010101010 comforted 12 -0101010101010 counterbalanced 12 -0101010101010 policed 14 -0101010101010 peopled 14 -0101010101010 patronized 14 -0101010101010 unhampered 14 -0101010101010 half-owned 16 -0101010101010 fazed 20 -0101010101010 gauged 21 -0101010101010 unmoved 24 -0101010101010 -controlled 25 -0101010101010 mesmerized 25 -0101010101010 unfazed 26 -0101010101010 captivated 27 -0101010101010 sampled 29 -0101010101010 inhabited 30 -0101010101010 undeterred 30 -0101010101010 pre-empted 31 -0101010101010 piloted 31 -0101010101010 amplified 32 -0101010101010 impacted 35 -0101010101010 encumbered 36 -0101010101010 hamstrung 37 -0101010101010 scarred 38 -0101010101010 -held 44 -0101010101010 augmented 47 -0101010101010 exemplified 50 -0101010101010 punishable 56 -0101010101010 magnified 58 -0101010101010 evidenced 67 -0101010101010 dwarfed 70 -0101010101010 victimized 70 -0101010101010 heartened 71 -0101010101010 majority-owned 73 -0101010101010 serviced 74 -0101010101010 haunted 76 -0101010101010 baffled 86 -0101010101010 sung 93 -0101010101010 staffed 95 -0101010101010 intimidated 96 -0101010101010 swayed 98 -0101010101010 besieged 100 -0101010101010 unaffected 103 -0101010101010 tempered 127 -0101010101010 populated 128 -0101010101010 powered 159 -0101010101010 governed 173 -0101010101010 monitored 212 -0101010101010 administered 240 -0101010101010 compounded 255 -0101010101010 polled 297 -0101010101010 underwritten 321 -0101010101010 motivated 374 -0101010101010 funded 587 -0101010101010 compiled 650 -0101010101010 measured 754 -0101010101010 shared 795 -0101010101010 surveyed 854 -0101010101010 protected 926 -0101010101010 calculated 1216 -0101010101010 -owned 1381 -0101010101010 covered 1707 -0101010101010 affected 2535 -0101010101010 owned 4961 -0101010101010 controlled 2665 -01010101010110 bewitches 1 -01010101010110 high-cube 1 -01010101010110 critizied 1 -01010101010110 prices.Ono 1 -01010101010110 Hans-Jorg 1 -01010101010110 Erdoel-Raffinerie 1 -01010101010110 A.I.B.C. 1 -01010101010110 JDM 1 -01010101010110 tided 1 -01010101010110 Xiangying 1 -01010101010110 Baker-watchers 1 -01010101010110 badmouthed 1 -01010101010110 tapered-shape 1 -01010101010110 Asian-Far 1 -01010101010110 pro-financial 1 -01010101010110 16,481 1 -01010101010110 1,405 1 -01010101010110 Dwell 1 -01010101010110 Khoo-owned 1 -01010101010110 ALARMED 1 -01010101010110 seascape 1 -01010101010110 AGAINST 1 -01010101010110 Janitrol 1 -01010101010110 outguessed 1 -01010101010110 nickel-and-dimed 1 -01010101010110 Kewpie 1 -01010101010110 HOVER 1 -01010101010110 360KB 1 -01010101010110 direcly 1 -01010101010110 constrictors 1 -01010101010110 round-table 1 -01010101010110 underwriten 1 -01010101010110 Japanee 1 -01010101010110 Jheryl 1 -01010101010110 assimilables 1 -01010101010110 all-textile 1 -01010101010110 Price-Fixing 2 -01010101010110 Clip 2 -01010101010110 skippered 2 -01010101010110 gossip-column 2 -01010101010110 defoliated 4 -01010101010110 constrictor 5 -01010101010110 wagered 7 -01010101010110 HELD 7 -01010101010110 mimicked 16 -01010101010110 scrutinized 106 -01010101010110 held 12561 -01010101010110 watched 1085 -01010101010111 comprehending 1 -01010101010111 race-neutral 1 -01010101010111 superior-performing 1 -01010101010111 cash-price 1 -01010101010111 co-obligators 1 -01010101010111 hope-springs-eternal 1 -01010101010111 A-I-D-S 1 -01010101010111 embearrassed 1 -01010101010111 renegged 1 -01010101010111 added. 1 -01010101010111 silk-crazed 1 -01010101010111 1,026 1 -01010101010111 over-sold 1 -01010101010111 fox-trotting 1 -01010101010111 synomymous 1 -01010101010111 7485 1 -01010101010111 messageless 1 -01010101010111 1,602 1 -01010101010111 1,644 1 -01010101010111 1,704 1 -01010101010111 1,384 1 -01010101010111 Await 1 -01010101010111 edes 1 -01010101010111 794-575 1 -01010101010111 2,984 1 -01010101010111 semi-numismatic 1 -01010101010111 Mac-II 1 -01010101010111 plebe 1 -01010101010111 799-712 1 -01010101010111 4,712 1 -01010101010111 747SP 1 -01010101010111 pluralized 1 -01010101010111 847-725 1 -01010101010111 keeling 1 -01010101010111 runneth 1 -01010101010111 drug-and-crime-infested 1 -01010101010111 bicolored 1 -01010101010111 noticable 1 -01010101010111 ratesensitive 1 -01010101010111 hanker 1 -01010101010111 well-wired 1 -01010101010111 182nd 1 -01010101010111 1,206 1 -01010101010111 ARISES 1 -01010101010111 Robinson-underwritten 2 -01010101010111 GOOF 2 -01010101010111 blinkers 2 -01010101010111 1,271 2 -01010101010111 Believes 2 -01010101010111 drooled 2 -01010101010111 garrisoned 2 -01010101010111 Bloombergs 2 -01010101010111 speared 2 -01010101010111 obsessing 2 -01010101010111 standardless 2 -01010101010111 371.25 2 -01010101010111 Differ 2 -01010101010111 strenghtened 2 -01010101010111 reposed 2 -01010101010111 1,172 2 -01010101010111 Slams 2 -01010101010111 hair-splitting 3 -01010101010111 1,121 3 -01010101010111 laze 3 -01010101010111 gyrates 3 -01010101010111 trodden 3 -01010101010111 1,293 3 -01010101010111 bogeys 4 -01010101010111 grazed 4 -01010101010111 fawned 4 -01010101010111 harped 5 -01010101010111 1,366 5 -01010101010111 skimped 5 -01010101010111 short-sold 6 -01010101010111 mutilating 7 -01010101010111 impacting 10 -01010101010111 tattooed 10 -01010101010111 dwelled 11 -01010101010111 outnumbering 12 -01010101010111 replayed 13 -01010101010111 backtracked 14 -01010101010111 foisted 14 -01010101010111 teetered 16 -01010101010111 glossed 17 -01010101010111 repayable 27 -01010101010111 draped 31 -01010101010111 lavished 33 -01010101010111 heaped 38 -01010101010111 bordering 38 -01010101010111 splintered 42 -01010101010111 reliant 44 -01010101010111 elaborated 51 -01010101010111 reneged 54 -01010101010111 tacked 70 -01010101010111 deadlocked 88 -01010101010111 infringed 106 -01010101010111 embarked 137 -01010101010111 presiding 149 -01010101010111 outpaced 245 -01010101010111 capitalized 250 -01010101010111 outnumbered 290 -01010101010111 defaulted 310 -01010101010111 relied 396 -01010101010111 concentrated 598 -01010101010111 dependent 687 -01010101010111 focused 1198 -01010101010111 divided 1247 -01010101010111 traded 4981 -01010101010111 listed 1797 -01010101011000 1233.54 1 -01010101011000 resizing 1 -01010101011000 unraced 1 -01010101011000 1238.57 1 -01010101011000 1229.06 1 -01010101011000 1241.09 1 -01010101011000 Beingness 1 -01010101011000 1258.93 1 -01010101011000 ill-manned 1 -01010101011000 coachable 1 -01010101011000 tummy-warming 1 -01010101011000 1204.50 1 -01010101011000 1261.34 1 -01010101011000 1261.44 1 -01010101011000 overdubbed 1 -01010101011000 78,160 1 -01010101011000 themeless 1 -01010101011000 overriden 1 -01010101011000 1273.55 1 -01010101011000 1284.06 1 -01010101011000 1301.01 1 -01010101011000 media-loving 1 -01010101011000 low-capability 1 -01010101011000 1246.74 1 -01010101011000 1,163,700 1 -01010101011000 1210.56 1 -01010101011000 1219.00 1 -01010101011000 677,300 1 -01010101011000 1215.89 1 -01010101011000 1218.11 1 -01010101011000 1194.10 1 -01010101011000 mob-run 1 -01010101011000 overglorified 1 -01010101011000 American-raised 1 -01010101011000 snuggling 2 -01010101011000 Tubing 2 -01010101011000 teargassed 2 -01010101011000 pistol-whipped 2 -01010101011000 gamboling 2 -01010101011000 goosestepping 2 -01010101011000 clench 2 -01010101011000 sun-tanned 2 -01010101011000 cold-shouldered 2 -01010101011000 miswired 2 -01010101011000 reaccelerating 2 -01010101011000 re-spent 2 -01010101011000 diddles 2 -01010101011000 indented 2 -01010101011000 comingled 2 -01010101011000 pacified 2 -01010101011000 1227.90 2 -01010101011000 nervosa 2 -01010101011000 over-extended 2 -01010101011000 wise. 2 -01010101011000 re-indicted 2 -01010101011000 hibernating 3 -01010101011000 battle-weary 3 -01010101011000 retold 3 -01010101011000 exhumed 3 -01010101011000 countermanded 3 -01010101011000 uplifted 3 -01010101011000 cross-referenced 3 -01010101011000 assayed 3 -01010101011000 deflowered 3 -01010101011000 defrosted 3 -01010101011000 pre-placed 3 -01010101011000 saxophonists 3 -01010101011000 gang-raped 3 -01010101011000 debarred 3 -01010101011000 Christianized 3 -01010101011000 hunky-dory 3 -01010101011000 bellmen 3 -01010101011000 entombed 4 -01010101011000 vacates 4 -01010101011000 indisposed 4 -01010101011000 waltzing 4 -01010101011000 foulmouthed 4 -01010101011000 cribbed 4 -01010101011000 desecrated 4 -01010101011000 paraphrased 4 -01010101011000 browbeaten 4 -01010101011000 avenged 4 -01010101011000 sedated 4 -01010101011000 slandered 4 -01010101011000 impaneled 4 -01010101011000 tear-gassed 4 -01010101011000 inseminated 5 -01010101011000 mummified 5 -01010101011000 fingerprinted 5 -01010101011000 exterminated 5 -01010101011000 shipshape 5 -01010101011000 resealed 5 -01010101011000 becalmed 5 -01010101011000 re-enacted 5 -01010101011000 innoculated 5 -01010101011000 perspiring 5 -01010101011000 desiccated 5 -01010101011000 worshipped 6 -01010101011000 defanged 6 -01010101011000 sited 6 -01010101011000 equalized 6 -01010101011000 mislaid 6 -01010101011000 debriefed 6 -01010101011000 overlaid 6 -01010101011000 pricked 6 -01010101011000 harangued 6 -01010101011000 wincing 6 -01010101011000 splattered 6 -01010101011000 rearrested 7 -01010101011000 expunged 7 -01010101011000 gassed 7 -01010101011000 blemished 7 -01010101011000 steamrollered 7 -01010101011000 interred 7 -01010101011000 mended 7 -01010101011000 sighing 7 -01010101011000 annihilated 7 -01010101011000 colonized 8 -01010101011000 misspent 8 -01010101011000 X-rayed 8 -01010101011000 reappraised 8 -01010101011000 nonplussed 8 -01010101011000 drubbed 8 -01010101011000 sated 8 -01010101011000 decommissioned 8 -01010101011000 stilled 8 -01010101011000 enslaved 9 -01010101011000 ransacked 9 -01010101011000 firebombed 9 -01010101011000 cashiered 9 -01010101011000 decertified 9 -01010101011000 outflanked 9 -01010101011000 finessed 9 -01010101011000 fiddled 9 -01010101011000 second-guessed 9 -01010101011000 hassled 9 -01010101011000 disfigured 10 -01010101011000 groaned 10 -01010101011000 lynched 10 -01010101011000 reenacted 10 -01010101011000 refiled 10 -01010101011000 reassembled 10 -01010101011000 electrocuted 10 -01010101011000 deduced 10 -01010101011000 transcribed 11 -01010101011000 beheaded 11 -01010101011000 incinerated 11 -01010101011000 envied 11 -01010101011000 ditched 11 -01010101011000 impregnated 11 -01010101011000 paroled 11 -01010101011000 excised 12 -01010101011000 baptized 12 -01010101011000 jeered 12 -01010101011000 torched 12 -01010101011000 retrofitted 12 -01010101011000 dislodged 12 -01010101011000 outvoted 12 -01010101011000 chiseled 12 -01010101011000 excavated 12 -01010101011000 inoculated 12 -01010101011000 partitioned 12 -01010101011000 fused 12 -01010101011000 slighted 13 -01010101011000 tarred 13 -01010101011000 mutilated 13 -01010101011000 repainted 13 -01010101011000 mislabeled 14 -01010101011000 misquoted 14 -01010101011000 disbarred 14 -01010101011000 disengaged 14 -01010101011000 relaunched 14 -01010101011000 milked 14 -01010101011000 jostled 14 -01010101011000 barraged 15 -01010101011000 bankrupted 15 -01010101011000 reassessed 15 -01010101011000 resuscitated 15 -01010101011000 axed 15 -01010101011000 outgunned 15 -01010101011000 drenched 15 -01010101011000 excerpted 16 -01010101011000 rationalized 16 -01010101011000 tabulated 16 -01010101011000 wined 16 -01010101011000 devoured 16 -01010101011000 distrusted 17 -01010101011000 initialed 17 -01010101011000 pelted 17 -01010101011000 blacklisted 17 -01010101011000 plundered 17 -01010101011000 disarmed 17 -01010101011000 accosted 17 -01010101011000 smothered 17 -01010101011000 feted 17 -01010101011000 junked 18 -01010101011000 overpowered 18 -01010101011000 emulated 18 -01010101011000 tamed 18 -01010101011000 counterattacked 18 -01010101011000 resubmitted 18 -01010101011000 ostracized 18 -01010101011000 butchered 19 -01010101011000 inferred 19 -01010101011000 reused 19 -01010101011000 squashed 19 -01010101011000 replenished 20 -01010101011000 rehearsed 20 -01010101011000 obstructed 20 -01010101011000 pardoned 20 -01010101011000 reconvened 21 -01010101011000 smeared 21 -01010101011000 mistreated 21 -01010101011000 ejected 21 -01010101011000 bugged 21 -01010101011000 equated 22 -01010101011000 reborn 22 -01010101011000 infused 22 -01010101011000 tabled 22 -01010101011000 overthrown 22 -01010101011000 dismembered 23 -01010101011000 immobilized 23 -01010101011000 maimed 23 -01010101011000 proscribed 23 -01010101011000 crowned 23 -01010101011000 stumped 24 -01010101011000 reared 24 -01010101011000 vanquished 24 -01010101011000 uprooted 24 -01010101011000 deliberated 24 -01010101011000 mugged 25 -01010101011000 disintegrated 25 -01010101011000 nabbed 25 -01010101011000 doused 25 -01010101011000 seeded 25 -01010101011000 shortchanged 25 -01010101011000 splashed 25 -01010101011000 sidetracked 25 -01010101011000 vilified 25 -01010101011000 profiled 26 -01010101011000 retracted 26 -01010101011000 punctured 26 -01010101011000 sequestered 26 -01010101011000 trounced 26 -01010101011000 looted 27 -01010101011000 extinguished 27 -01010101011000 ambushed 30 -01010101011000 massacred 30 -01010101011000 nullified 31 -01010101011000 bloodied 31 -01010101011000 evicted 31 -01010101011000 censored 31 -01010101011000 cloned 31 -01010101011000 apprehended 32 -01010101011000 insulted 32 -01010101011000 duped 33 -01010101011000 silenced 33 -01010101011000 seduced 33 -01010101011000 hounded 33 -01010101011000 sown 34 -01010101011000 energized 34 -01010101011000 dissuaded 35 -01010101011000 sabotaged 35 -01010101011000 formalized 35 -01010101011000 corrupted 36 -01010101011000 booed 36 -01010101011000 demoted 36 -01010101011000 cancelled 36 -01010101011000 recessed 37 -01010101011000 pummeled 37 -01010101011000 brewed 38 -01010101011000 stabbed 38 -01010101011000 subtracted 39 -01010101011000 recaptured 39 -01010101011000 hanged 39 -01010101011000 intercepted 39 -01010101011000 handcuffed 39 -01010101011000 deceiving 40 -01010101011000 persecuted 41 -01010101011000 rehabilitated 41 -01010101011000 delisted 41 -01010101011000 reunited 41 -01010101011000 banished 42 -01010101011000 dispensed 42 -01010101011000 snagged 42 -01010101011000 slain 43 -01010101011000 poisoned 44 -01010101011000 sacked 44 -01010101011000 digested 45 -01010101011000 overextended 45 -01010101011000 hatched 45 -01010101011000 engulfed 45 -01010101011000 scratched 45 -01010101011000 gutted 46 -01010101011000 minimized 46 -01010101011000 slaughtered 47 -01010101011000 humiliated 47 -01010101011000 sidelined 47 -01010101011000 demolished 48 -01010101011000 plucked 48 -01010101011000 assaulted 49 -01010101011000 purged 50 -01010101011000 reprinted 50 -01010101011000 deluged 51 -01010101011000 restarted 52 -01010101011000 inhibited 52 -01010101011000 raped 52 -01010101011000 exonerated 53 -01010101011000 excused 54 -01010101011000 reckoned 55 -01010101011000 inundated 58 -01010101011000 conferred 58 -01010101011000 tagged 58 -01010101011000 precluded 62 -01010101011000 abducted 63 -01010101011000 evacuated 64 -01010101011000 liberated 66 -01010101011000 stricken 67 -01010101011000 activated 67 -01010101011000 sprayed 67 -01010101011000 stranded 68 -01010101011000 enraged 68 -01010101011000 bombarded 69 -01010101011000 mismanaged 70 -01010101011000 insulated 70 -01010101011000 photographed 70 -01010101011000 assassinated 71 -01010101011000 sheltered 72 -01010101011000 heralded 72 -01010101011000 shielded 74 -01010101011000 discredited 76 -01010101011000 deported 76 -01010101011000 scuttled 77 -01010101011000 toppled 77 -01010101011000 misunderstood 80 -01010101011000 deleted 82 -01010101011000 rebuilt 85 -01010101011000 harassed 86 -01010101011000 disqualified 89 -01010101011000 censured 89 -01010101011000 clarified 92 -01010101011000 numbered 93 -01010101011000 suppressed 98 -01010101011000 dispersed 98 -01010101011000 framed 98 -01010101011000 cheated 98 -01010101011000 confiscated 100 -01010101011000 afflicted 102 -01010101011000 derailed 102 -01010101011000 disbanded 103 -01010101011000 shelved 103 -01010101011000 dashed 108 -01010101011000 slapped 108 -01010101011000 betrayed 108 -01010101011000 discharged 109 -01010101011000 inspected 112 -01010101011000 discarded 113 -01010101011000 extracted 113 -01010101011000 averted 113 -01010101011000 ruined 118 -01010101011000 repaired 120 -01010101011000 enjoined 120 -01010101011000 hospitalized 122 -01010101011000 kidnapped 123 -01010101011000 grounded 126 -01010101011000 compromised 126 -01010101011000 dismantled 129 -01010101011000 distracted 129 -01010101011000 jammed 135 -01010101011000 diagnosed 137 -01010101011000 rescued 137 -01010101011000 copied 140 -01010101011000 shattered 142 -01010101011000 swamped 156 -01010101011000 repealed 161 -01010101011000 deducted 162 -01010101011000 paralyzed 163 -01010101011000 honored 164 -01010101011000 abolished 166 -01010101011000 concealed 168 -01010101011000 crushed 169 -01010101011000 burdened 174 -01010101011000 exempted 175 -01010101011000 departed 180 -01010101011000 abused 183 -01010101011000 dissolved 183 -01010101011000 rewarded 185 -01010101011000 murdered 187 -01010101011000 divorced 188 -01010101011000 imprisoned 189 -01010101011000 searched 190 -01010101011000 jailed 197 -01010101011000 flooded 199 -01010101011000 consulted 199 -01010101011000 crippled 208 -01010101011000 interrupted 209 -01010101011000 expelled 216 -01010101011000 sealed 219 -01010101011000 disciplined 219 -01010101011000 separated 223 -01010101011000 subpoenaed 226 -01010101011000 reopened 233 -01010101011000 scrapped 237 -01010101011000 confronted 242 -01010101011000 exhausted 245 -01010101011000 detained 246 -01010101011000 buried 271 -01010101011000 debated 272 -01010101011000 absent 286 -01010101011000 greeted 290 -01010101011000 packed 298 -01010101011000 withheld 306 -01010101011000 discouraged 312 -01010101011000 freed 345 -01010101011000 disagreed 375 -01010101011000 restored 394 -01010101011000 ousted 411 -01010101011000 excluded 431 -01010101011000 wounded 435 -01010101011000 recalled 480 -01010101011000 prohibited 486 -01010101011000 stalled 488 -01010101011000 dealt 544 -01010101011000 withdrawn 545 -01010101011000 defeated 610 -01010101011000 interviewed 619 -01010101011000 postponed 660 -01010101011000 damaged 663 -01010101011000 destroyed 664 -01010101011000 injured 714 -01010101011000 banned 720 -01010101011000 halted 749 -01010101011000 ignored 863 -01010101011000 born 884 -01010101011000 indicted 928 -01010101011000 canceled 945 -01010101011000 eliminated 952 -01010101011000 barred 957 -01010101011000 arrested 1112 -01010101011000 faced 1187 -01010101011000 replaced 1232 -01010101011000 removed 1331 -01010101011000 discussed 1382 -01010101011000 filled 1396 -01010101011000 delayed 1472 -01010101011000 dismissed 1537 -01010101011000 suspended 1665 -01010101011000 fired 1915 -01010101011000 killed 2340 -01010101011000 charged 4110 -01010101011000 met 3280 -010101010110010 non-Orthodox 1 -010101010110010 disfigure 1 -010101010110010 intrepreted 1 -010101010110010 execrated 1 -010101010110010 proprerties 1 -010101010110010 well-cast 1 -010101010110010 PROLIFERATE 1 -010101010110010 veiwed 1 -010101010110010 prissiness 1 -010101010110010 intepreted 1 -010101010110010 image-builders 1 -010101010110010 Fuling 1 -010101010110010 Krabbe 1 -010101010110010 anesthetizing 1 -010101010110010 platinum-driven 1 -010101010110010 oooed 1 -010101010110010 graylisted 1 -010101010110010 recaptured-repaid 1 -010101010110010 marsh/ 1 -010101010110010 free-lanced 1 -010101010110010 oil-finder 1 -010101010110010 pre-billed 1 -010101010110010 meticulousness 1 -010101010110010 Shintoism 1 -010101010110010 dissociates 1 -010101010110010 product-swap 1 -010101010110010 re-classified 1 -010101010110010 peyote 2 -010101010110010 cudgeled 2 -010101010110010 EMERGED 2 -010101010110010 esthetic 2 -010101010110010 5-11 2 -010101010110010 inflators 2 -010101010110010 tabbed 2 -010101010110010 spoofed 2 -010101010110010 noncontenders 2 -010101010110010 whirred 3 -010101010110010 reemerging 3 -010101010110010 slam-dunks 3 -010101010110010 singeing 3 -010101010110010 asparagine 3 -010101010110010 masquerades 3 -010101010110010 debuting 3 -010101010110010 intentioned 4 -010101010110010 nauseated 4 -010101010110010 damnable 5 -010101010110010 stigmatized 5 -010101010110010 RESIGNED 6 -010101010110010 modulated 6 -010101010110010 reincarnated 6 -010101010110010 footnoted 7 -010101010110010 caricatured 7 -010101010110010 burnished 9 -010101010110010 ticketed 9 -010101010110010 miscast 12 -010101010110010 classed 17 -010101010110010 masquerading 21 -010101010110010 reviled 22 -010101010110010 categorized 22 -010101010110010 politic 24 -010101010110010 styled 29 -010101010110010 construed 91 -010101010110010 disguised 118 -010101010110010 strapped 161 -010101010110010 positioned 229 -010101010110010 touted 244 -010101010110010 billed 316 -010101010110010 structured 351 -010101010110010 interpreted 443 -010101010110010 defined 572 -010101010110010 perceived 635 -010101010110010 regarded 946 -010101010110010 known 6634 -010101010110010 viewed 1501 -010101010110011 hangable 1 -010101010110011 over-collateralized 1 -010101010110011 whined 1 -010101010110011 non-sterilized 1 -010101010110011 prefixized 1 -010101010110011 superconducted 1 -010101010110011 shawl-clad 1 -010101010110011 orating 1 -010101010110011 placarded 1 -010101010110011 unquotable 1 -010101010110011 tearyeyed 1 -010101010110011 hacked-together 1 -010101010110011 repairable 1 -010101010110011 surfed 1 -010101010110011 executed. 1 -010101010110011 holdsway 1 -010101010110011 presumptuously 1 -010101010110011 Noriegismo 1 -010101010110011 leakproof 1 -010101010110011 convulsively 1 -010101010110011 conquering. 1 -010101010110011 semiautobiographical 1 -010101010110011 Populares 1 -010101010110011 off-the-mark 1 -010101010110011 got. 1 -010101010110011 deceives 1 -010101010110011 ten-foured 1 -010101010110011 Bowenized 1 -010101010110011 dissavers 1 -010101010110011 consequences. 1 -010101010110011 predeceased 1 -010101010110011 to. 1 -010101010110011 hypothecated 2 -010101010110011 bridling 2 -010101010110011 splurging 2 -010101010110011 written. 2 -010101010110011 fathomed 2 -010101010110011 interdicted 2 -010101010110011 declawed 2 -010101010110011 steeled 2 -010101010110011 craftsmanlike 2 -010101010110011 re-set 2 -010101010110011 lanced 2 -010101010110011 Austens 2 -010101010110011 optimized 2 -010101010110011 necessary. 3 -010101010110011 outplayed 3 -010101010110011 expected. 3 -010101010110011 strip-mined 3 -010101010110011 pigeon-holed 3 -010101010110011 kneaded 3 -010101010110011 redressed 3 -010101010110011 thumped 3 -010101010110011 reemployed 3 -010101010110011 immolated 3 -010101010110011 elucidated 4 -010101010110011 glamorized 4 -010101010110011 resonated 4 -010101010110011 indentified 4 -010101010110011 mumbled 4 -010101010110011 unpacked 4 -010101010110011 cowered 4 -010101010110011 misfired 4 -010101010110011 spoon-fed 5 -010101010110011 gagged 5 -010101010110011 rethought 5 -010101010110011 demobilized 5 -010101010110011 undersold 5 -010101010110011 short-handed 6 -010101010110011 adjudicated 6 -010101010110011 immortalized 6 -010101010110011 shafted 6 -010101010110011 vaporized 6 -010101010110011 countenanced 6 -010101010110011 overmatched 7 -010101010110011 cataloged 7 -010101010110011 incubating 7 -010101010110011 sandbagged 7 -010101010110011 neutered 7 -010101010110011 retried 7 -010101010110011 pigeonholed 7 -010101010110011 re-offered 7 -010101010110011 conserved 7 -010101010110011 propagated 7 -010101010110011 overplayed 8 -010101010110011 deciphered 8 -010101010110011 explainable 8 -010101010110011 ameliorated 8 -010101010110011 misdiagnosed 8 -010101010110011 unmasked 8 -010101010110011 lampooned 9 -010101010110011 accessed 9 -010101010110011 reprogrammed 9 -010101010110011 lionized 9 -010101010110011 recreated 9 -010101010110011 stowed 9 -010101010110011 ascertained 9 -010101010110011 readjusted 11 -010101010110011 rectified 11 -010101010110011 denigrated 11 -010101010110011 bridged 11 -010101010110011 disproved 12 -010101010110011 blackmailed 12 -010101010110011 forewarned 12 -010101010110011 reciprocated 12 -010101010110011 re-evaluated 12 -010101010110011 reexamined 13 -010101010110011 plateaued 13 -010101010110011 impeached 13 -010101010110011 appeased 13 -010101010110011 re-created 13 -010101010110011 foretold 14 -010101010110011 inconvenienced 14 -010101010110011 flip-flopped 16 -010101010110011 discerned 17 -010101010110011 pilloried 17 -010101010110011 re-established 17 -010101010110011 eradicated 17 -010101010110011 mollified 18 -010101010110011 repositioned 18 -010101010110011 validated 18 -010101010110011 co-opted 19 -010101010110011 obeyed 19 -010101010110011 misconstrued 19 -010101010110011 phrased 20 -010101010110011 instilled 20 -010101010110011 maximized 21 -010101010110011 arbitrated 21 -010101010110011 negated 22 -010101010110011 inhaled 22 -010101010110011 redefined 23 -010101010110011 outdone 23 -010101010110011 glimpsed 23 -010101010110011 litigated 25 -010101010110011 ordained 26 -010101010110011 indulged 26 -010101010110011 healed 26 -010101010110011 replicated 28 -010101010110011 manifested 28 -010101010110011 flouted 30 -010101010110011 envisaged 31 -010101010110011 accommodated 31 -010101010110011 neutralized 32 -010101010110011 grasped 32 -010101010110011 condoned 34 -010101010110011 coached 35 -010101010110011 salvaged 38 -010101010110011 reconsidered 39 -010101010110011 rehired 39 -010101010110011 imitated 42 -010101010110011 misinterpreted 43 -010101010110011 rewritten 44 -010101010110011 overridden 45 -010101010110011 summarized 45 -010101010110011 foreseen 46 -010101010110011 substantiated 47 -010101010110011 disseminated 47 -010101010110011 resurrected 48 -010101010110011 utilized 49 -010101010110011 articulated 52 -010101010110011 communicated 56 -010101010110011 duplicated 56 -010101010110011 fooled 57 -010101010110011 uttered 58 -010101010110011 penetrated 61 -010101010110011 cured 62 -010101010110011 verified 63 -010101010110011 attained 80 -010101010110011 forgiven 82 -010101010110011 deterred 84 -010101010110011 sacrificed 94 -010101010110011 tolerated 110 -010101010110011 vindicated 110 -010101010110011 imagined 121 -010101010110011 materialized 121 -010101010110011 depicted 124 -010101010110011 exploited 125 -010101010110011 fulfilled 137 -010101010110011 explored 140 -010101010110011 spared 143 -010101010110011 evaluated 152 -010101010110011 punished 160 -010101010110011 preserved 161 -010101010110011 practiced 169 -010101010110011 overlooked 185 -010101010110011 conceived 189 -010101010110011 constructed 197 -010101010110011 enforced 197 -010101010110011 prosecuted 208 -010101010110011 deployed 227 -010101010110011 remembered 258 -010101010110011 corrected 270 -010101010110011 forgotten 298 -010101010110011 solved 328 -010101010110011 justified 428 -010101010110011 accomplished 461 -010101010110011 taxed 469 -010101010110011 counted 493 -010101010110011 addressed 521 -010101010110011 recognized 841 -010101010110011 performed 863 -010101010110011 mentioned 906 -010101010110011 resolved 944 -010101010110011 achieved 976 -010101010110011 treated 1099 -010101010110011 succeeded 1179 -010101010110011 heard 1938 -010101010110011 identified 2038 -010101010110011 done 5732 -010101010110011 seen 5071 -0101010101101000 under-prime 1 -0101010101101000 insurance-theft-claim 1 -0101010101101000 Strengthened 2 -0101010101101000 braked 5 -0101010101101000 craved 5 -0101010101101000 fomented 7 -0101010101101000 imparted 7 -0101010101101000 marshaled 13 -0101010101101000 wreaked 18 -0101010101101000 delegated 43 -0101010101101000 plotted 46 -0101010101101000 hastened 46 -0101010101101000 misused 65 -0101010101101000 loaned 70 -0101010101101000 mobilized 72 -0101010101101000 nurtured 81 -0101010101101000 formulated 84 -0101010101101000 conveyed 88 -0101010101101000 cultivated 90 -0101010101101000 championed 99 -0101010101101000 misappropriated 104 -0101010101101000 crafted 125 -0101010101101000 edited 138 -0101010101101000 surrendered 154 -0101010101101000 shunned 184 -0101010101101000 neglected 234 -0101010101101000 envisioned 263 -0101010101101000 advocated 276 -0101010101101000 donated 295 -0101010101101000 lent 385 -0101010101101000 promoted 577 -0101010101101000 supplied 582 -0101010101101000 appealed 637 -0101010101101000 favored 852 -0101010101101000 attracted 1013 -0101010101101000 arranged 1089 -0101010101101000 presented 1252 -0101010101101000 requested 1253 -0101010101101000 encouraged 1256 -0101010101101000 submitted 1275 -0101010101101000 proved 1403 -0101010101101000 promised 1629 -0101010101101000 threatened 1814 -0101010101101000 opposed 2080 -0101010101101000 managed 2178 -0101010101101000 sought 3475 -0101010101101000 offered 7334 -0101010101101000 provided 3539 -0101010101101001 dead-heading 1 -0101010101101001 pooped 1 -0101010101101001 helmeted 1 -0101010101101001 projectable 1 -0101010101101001 de-academicized 1 -0101010101101001 hand-stuffed 1 -0101010101101001 Bolcomized 1 -0101010101101001 fast-followers 1 -0101010101101001 forklifted 1 -0101010101101001 chanelled 1 -0101010101101001 reabsorbed 1 -0101010101101001 82,271 1 -0101010101101001 braille 1 -0101010101101001 sledgehammered 2 -0101010101101001 wheedling 2 -0101010101101001 donwgraded 2 -0101010101101001 swatted 2 -0101010101101001 squired 2 -0101010101101001 co-advisers 2 -0101010101101001 blissed 2 -0101010101101001 relegates 2 -0101010101101001 coverted 2 -0101010101101001 helicoptered 2 -0101010101101001 refashioned 3 -0101010101101001 trilling 3 -0101010101101001 subleased 3 -0101010101101001 64,101 3 -0101010101101001 haled 3 -0101010101101001 transmuted 3 -0101010101101001 blanked 4 -0101010101101001 reinjected 4 -0101010101101001 recommitted 4 -0101010101101001 rousted 6 -0101010101101001 hoarded 6 -0101010101101001 extrapolated 7 -0101010101101001 kidded 7 -0101010101101001 rebated 7 -0101010101101001 pestered 8 -0101010101101001 reallocated 8 -0101010101101001 deeded 9 -0101010101101001 bludgeoned 9 -0101010101101001 transfered 9 -0101010101101001 blazed 9 -0101010101101001 melded 9 -0101010101101001 rippled 10 -0101010101101001 airlifted 11 -0101010101101001 spliced 11 -0101010101101001 faxed 11 -0101010101101001 inducted 13 -0101010101101001 hacked 14 -0101010101101001 incited 14 -0101010101101001 bused 15 -0101010101101001 ferried 15 -0101010101101001 goaded 15 -0101010101101001 trooped 16 -0101010101101001 tugged 16 -0101010101101001 trucked 17 -0101010101101001 bullied 18 -0101010101101001 shunted 19 -0101010101101001 hustled 19 -0101010101101001 whizzing 20 -0101010101101001 whisked 20 -0101010101101001 terrorized 22 -0101010101101001 thrashed 22 -0101010101101001 combed 24 -0101010101101001 hoisted 24 -0101010101101001 maneuvered 24 -0101010101101001 lulled 25 -0101010101101001 bequeathed 28 -0101010101101001 paraded 28 -0101010101101001 towed 29 -0101010101101001 bled 29 -0101010101101001 enticed 31 -0101010101101001 coaxed 33 -0101010101101001 stalked 35 -0101010101101001 beamed 36 -0101010101101001 bilked 40 -0101010101101001 relayed 43 -0101010101101001 catapulted 44 -0101010101101001 shuffled 45 -0101010101101001 pitted 54 -0101010101101001 escorted 59 -0101010101101001 routed 59 -0101010101101001 forwarded 64 -0101010101101001 relocated 66 -0101010101101001 wired 77 -0101010101101001 chased 79 -0101010101101001 smuggled 83 -0101010101101001 channeled 101 -0101010101101001 funneled 110 -0101010101101001 inserted 126 -0101010101101001 drained 128 -0101010101101001 dispatched 164 -0101010101101001 induced 164 -0101010101101001 traced 179 -0101010101101001 stretched 203 -0101010101101001 hammered 210 -0101010101101001 phased 254 -0101010101101001 lured 257 -0101010101101001 mailed 310 -0101010101101001 transformed 324 -0101010101101001 pressured 347 -0101010101101001 leaked 365 -0101010101101001 rushed 371 -0101010101101001 diverted 380 -0101010101101001 swept 408 -0101010101101001 switched 491 -0101010101101001 invited 744 -0101010101101001 assigned 800 -0101010101101001 transferred 827 -0101010101101001 carried 1500 -0101010101101001 pushed 2080 -0101010101101001 forced 3817 -0101010101101001 brought 4612 -0101010101101001 sent 4054 -0101010101101010 biopsy-proven 1 -0101010101101010 one-technique 1 -0101010101101010 piddled 1 -0101010101101010 cashback 1 -0101010101101010 super-8 1 -0101010101101010 jurisidiction 1 -0101010101101010 sharp-witted 1 -0101010101101010 Sahara-like 1 -0101010101101010 Trumplane 1 -0101010101101010 driverside 1 -0101010101101010 ploughs 1 -0101010101101010 re-amortized 1 -0101010101101010 .22-second 1 -0101010101101010 quelched 1 -0101010101101010 rescored 1 -0101010101101010 deforested 2 -0101010101101010 resculpted 2 -0101010101101010 Finlandized 2 -0101010101101010 red-lined 2 -0101010101101010 waddled 3 -0101010101101010 begrudged 3 -0101010101101010 collated 3 -0101010101101010 fogged 4 -0101010101101010 nicked 4 -0101010101101010 misspoken 4 -0101010101101010 previewing 4 -0101010101101010 second-string 4 -0101010101101010 interposed 4 -0101010101101010 entrapped 4 -0101010101101010 catalyzed 4 -0101010101101010 transcended 6 -0101010101101010 sickened 6 -0101010101101010 chortling 7 -0101010101101010 subdivided 8 -0101010101101010 seared 9 -0101010101101010 swindled 10 -0101010101101010 papered 10 -0101010101101010 befallen 10 -0101010101101010 snookered 10 -0101010101101010 massaged 11 -0101010101101010 forsworn 11 -0101010101101010 pruned 11 -0101010101101010 bowled 12 -0101010101101010 sobered 14 -0101010101101010 wrenched 14 -0101010101101010 lightened 16 -0101010101101010 rerouted 17 -0101010101101010 dulled 19 -0101010101101010 weaned 23 -0101010101101010 fouled 27 -0101010101101010 amortized 32 -0101010101101010 bitten 34 -0101010101101010 trampled 35 -0101010101101010 ridden 37 -0101010101101010 woven 65 -0101010101101010 eaten 120 -0101010101101010 borne 157 -0101010101101010 blown 169 -0101010101101010 sworn 174 -0101010101101010 torn 183 -0101010101101010 worn 214 -0101010101101010 shaken 239 -0101010101101010 beaten 266 -0101010101101010 spoken 285 -0101010101101010 squeezed 329 -0101010101101010 driven 973 -0101010101101010 broken 978 -0101010101101010 chosen 988 -0101010101101010 drawn 1108 -0101010101101010 shown 1797 -0101010101101010 written 2594 -0101010101101010 given 6248 -0101010101101010 taken 6490 -01010101011010110 Medicaid-reliant 1 -01010101011010110 intercessory 1 -01010101011010110 no-rub 1 -01010101011010110 latently 1 -01010101011010110 shipworkers 1 -01010101011010110 de-averaged 1 -01010101011010110 13,715 1 -01010101011010110 cuddled 1 -01010101011010110 restaurant-style 1 -01010101011010110 strum 2 -01010101011010110 calloused 2 -01010101011010110 Bernabe 2 -01010101011010110 B.A.s 2 -01010101011010110 transgress 2 -01010101011010110 abut 2 -01010101011010110 hocked 2 -01010101011010110 outtalk 2 -01010101011010110 jackhammered 2 -01010101011010110 steamrolled 2 -01010101011010110 outraced 2 -01010101011010110 obscurantist 2 -01010101011010110 pitied 2 -01010101011010110 bade 3 -01010101011010110 castrated 3 -01010101011010110 shoos 3 -01010101011010110 alphabetized 3 -01010101011010110 wallpapered 3 -01010101011010110 money-losers 4 -01010101011010110 Render 4 -01010101011010110 criss-crossed 4 -01010101011010110 disbelieved 4 -01010101011010110 colicky 4 -01010101011010110 mingles 4 -01010101011010110 chanced 4 -01010101011010110 belabored 4 -01010101011010110 hollered 4 -01010101011010110 bustled 4 -01010101011010110 flayed 4 -01010101011010110 beggared 4 -01010101011010110 worshiped 5 -01010101011010110 downstage 5 -01010101011010110 fudged 5 -01010101011010110 suceeded 5 -01010101011010110 pries 5 -01010101011010110 streaked 5 -01010101011010110 carded 5 -01010101011010110 inventoried 5 -01010101011010110 rechecked 6 -01010101011010110 defaced 6 -01010101011010110 dunked 6 -01010101011010110 invades 6 -01010101011010110 unmentionable 6 -01010101011010110 commemorated 7 -01010101011010110 impugned 7 -01010101011010110 tutored 7 -01010101011010110 delineated 7 -01010101011010110 minced 7 -01010101011010110 squeals 7 -01010101011010110 decapitated 7 -01010101011010110 tussled 7 -01010101011010110 outscored 8 -01010101011010110 replanted 8 -01010101011010110 barricaded 8 -01010101011010110 thawed 8 -01010101011010110 blitzed 9 -01010101011010110 stiffed 9 -01010101011010110 stapled 9 -01010101011010110 whirled 9 -01010101011010110 reinvented 9 -01010101011010110 straddled 9 -01010101011010110 saps 9 -01010101011010110 juggles 9 -01010101011010110 cocked 10 -01010101011010110 overstayed 10 -01010101011010110 parodied 10 -01010101011010110 corralled 10 -01010101011010110 teased 10 -01010101011010110 suckered 10 -01010101011010110 ingested 11 -01010101011010110 plied 12 -01010101011010110 gored 12 -01010101011010110 de-emphasized 12 -01010101011010110 dissected 12 -01010101011010110 memorized 13 -01010101011010110 remade 13 -01010101011010110 cajoled 13 -01010101011010110 clocked 13 -01010101011010110 wagging 13 -01010101011010110 loathed 13 -01010101011010110 cruised 14 -01010101011010110 grafted 14 -01010101011010110 greased 14 -01010101011010110 fumbled 14 -01010101011010110 relished 14 -01010101011010110 outlasted 14 -01010101011010110 crucified 15 -01010101011010110 walled 15 -01010101011010110 pried 16 -01010101011010110 slit 16 -01010101011010110 eyed 16 -01010101011010110 creamed 16 -01010101011010110 forsaken 17 -01010101011010110 whacked 17 -01010101011010110 reworked 17 -01010101011010110 vented 17 -01010101011010110 disdained 18 -01010101011010110 chucked 18 -01010101011010110 mulled 18 -01010101011010110 roused 19 -01010101011010110 wed 19 -01010101011010110 waxed 19 -01010101011010110 commuted 19 -01010101011010110 faked 19 -01010101011010110 roamed 20 -01010101011010110 socked 20 -01010101011010110 bagged 21 -01010101011010110 pokes 22 -01010101011010110 cursed 23 -01010101011010110 wrestled 23 -01010101011010110 cobbled 23 -01010101011010110 stoned 24 -01010101011010110 rediscovered 25 -01010101011010110 cemented 26 -01010101011010110 scribbled 26 -01010101011010110 endures 26 -01010101011010110 circled 27 -01010101011010110 licked 27 -01010101011010110 bashed 28 -01010101011010110 dialed 29 -01010101011010110 showered 29 -01010101011010110 divulged 30 -01010101011010110 docked 30 -01010101011010110 scrubbed 31 -01010101011010110 circumvented 33 -01010101011010110 scrawled 34 -01010101011010110 busted 35 -01010101011010110 scraped 35 -01010101011010110 inscribed 36 -01010101011010110 dined 37 -01010101011010110 charted 37 -01010101011010110 rubbed 37 -01010101011010110 strung 37 -01010101011010110 cornered 37 -01010101011010110 plastered 38 -01010101011010110 flunked 40 -01010101011010110 sighted 41 -01010101011010110 overheard 41 -01010101011010110 clipped 42 -01010101011010110 hunted 45 -01010101011010110 mastered 49 -01010101011010110 riled 50 -01010101011010110 lumped 50 -01010101011010110 pictured 52 -01010101011010110 disregarded 52 -01010101011010110 resented 52 -01010101011010110 conquered 53 -01010101011010110 heeded 54 -01010101011010110 galvanized 56 -01010101011010110 shaved 57 -01010101011010110 sliced 58 -01010101011010110 wrecked 60 -01010101011010110 skipped 61 -01010101011010110 hurled 63 -01010101011010110 flattened 65 -01010101011010110 panicked 69 -01010101011010110 robbed 71 -01010101011010110 stamped 71 -01010101011010110 risked 74 -01010101011010110 shakes 87 -01010101011010110 alienated 103 -01010101011010110 lit 109 -01010101011010110 deserted 113 -01010101011010110 weathered 113 -01010101011010110 smoked 115 -01010101011010110 paved 118 -01010101011010110 shouted 120 -01010101011010110 bore 147 -01010101011010110 soured 148 -01010101011010110 parked 165 -01010101011010110 checked 272 -01010101011010110 crossed 290 -01010101011010110 escaped 317 -01010101011010110 scared 330 -01010101011010110 fled 347 -01010101011010110 painted 396 -01010101011010110 burned 437 -01010101011010110 survived 450 -01010101011010110 resisted 481 -01010101011010110 saved 604 -01010101011010110 stuck 624 -01010101011010110 avoided 668 -01010101011010110 missed 773 -01010101011010110 married 819 -01010101011010110 quit 997 -01010101011010110 caught 1429 -01010101011010110 stopped 1680 -01010101011010110 left 7675 -01010101011010110 kept 2734 -01010101011010111 out-chirps 1 -01010101011010111 grow/A 1 -01010101011010111 over-stretching 1 -01010101011010111 sashayed 1 -01010101011010111 fluffed 1 -01010101011010111 443,151 1 -01010101011010111 glasnost-happy 1 -01010101011010111 puchased 1 -01010101011010111 stabled 2 -01010101011010111 fronted 3 -01010101011010111 gladdened 3 -01010101011010111 flubbed 3 -01010101011010111 scarfed 3 -01010101011010111 strafed 4 -01010101011010111 righted 5 -01010101011010111 unwinds 5 -01010101011010111 cannibalized 5 -01010101011010111 purveyed 5 -01010101011010111 skewered 5 -01010101011010111 requisitioned 5 -01010101011010111 suffocated 5 -01010101011010111 relearned 6 -01010101011010111 chugged 6 -01010101011010111 loosed 7 -01010101011010111 prefaced 8 -01010101011010111 catalogued 8 -01010101011010111 lobbed 8 -01010101011010111 extorted 8 -01010101011010111 padlocked 9 -01010101011010111 flaunted 10 -01010101011010111 approximated 10 -01010101011010111 scanned 10 -01010101011010111 short-changed 10 -01010101011010111 clutched 11 -01010101011010111 threaded 14 -01010101011010111 bulldozed 14 -01010101011010111 enunciated 14 -01010101011010111 shined 15 -01010101011010111 shouldered 21 -01010101011010111 emptied 22 -01010101011010111 stockpiled 27 -01010101011010111 flagged 29 -01010101011010111 eschewed 29 -01010101011010111 hyped 30 -01010101011010111 deflected 30 -01010101011010111 bestowed 34 -01010101011010111 honed 36 -01010101011010111 penned 37 -01010101011010111 engendered 37 -01010101011010111 infiltrated 43 -01010101011010111 tasted 44 -01010101011010111 unearthed 45 -01010101011010111 emitted 46 -01010101011010111 perfected 48 -01010101011010111 exerted 49 -01010101011010111 wielded 52 -01010101011010111 perpetrated 55 -01010101011010111 wrought 61 -01010101011010111 bred 70 -01010101011010111 exhibited 82 -01010101011010111 inflicted 96 -01010101011010111 erected 98 -01010101011010111 steered 108 -01010101011010111 fashioned 111 -01010101011010111 swallowed 116 -01010101011010111 analyzed 151 -01010101011010111 bombed 159 -01010101011010111 originated 174 -01010101011010111 waged 175 -01010101011010111 spotted 179 -01010101011010111 rendered 216 -01010101011010111 shaped 222 -01010101011010111 detected 232 -01010101011010111 aired 264 -01010101011010111 invented 264 -01010101011010111 stirred 265 -01010101011010111 undertaken 286 -01010101011010111 planted 296 -01010101011010111 absorbed 302 -01010101011010111 uncovered 338 -01010101011010111 displayed 346 -01010101011010111 pursued 444 -01010101011010111 mounted 457 -01010101011010111 assembled 488 -01010101011010111 prevented 534 -01010101011010111 reviewed 666 -01010101011010111 handled 1007 -01010101011010111 developed 3072 -01010101011010111 produced 3293 -01010101011010111 made 25061 -01010101011010111 built 3416 -0101010101101100 acccounted 1 -0101010101101100 harder-pressed 1 -0101010101101100 summered 1 -0101010101101100 broken-slowed 1 -0101010101101100 thirsted 1 -0101010101101100 --10 1 -0101010101101100 subsitituted 1 -0101010101101100 magical. 1 -0101010101101100 100.83 1 -0101010101101100 104.22 1 -0101010101101100 evangelized 1 -0101010101101100 catheterized 1 -0101010101101100 sweatened 1 -0101010101101100 nonselected 1 -0101010101101100 0.901 1 -0101010101101100 Equivalents 1 -0101010101101100 avilable 1 -0101010101101100 WHSI 1 -0101010101101100 Creayted 1 -0101010101101100 half-weeks 1 -0101010101101100 well-rewarded 1 -0101010101101100 overbidding 1 -0101010101101100 job-slashing 1 -0101010101101100 jelling 1 -0101010101101100 requalifies 1 -0101010101101100 consumated 1 -0101010101101100 exhanged 1 -0101010101101100 overcompensated 1 -0101010101101100 underaccounted 1 -0101010101101100 TRIA 1 -0101010101101100 easer 1 -0101010101101100 well-remembered 2 -0101010101101100 misattributed 2 -0101010101101100 clamors 2 -0101010101101100 seamed 2 -0101010101101100 market-focused 2 -0101010101101100 bayed 2 -0101010101101100 interchanged 2 -0101010101101100 103.82 2 -0101010101101100 amerced 2 -0101010101101100 payed 3 -0101010101101100 apppointed 3 -0101010101101100 overpays 3 -0101010101101100 cross-checked 3 -0101010101101100 jockeyed 3 -0101010101101100 gropes 3 -0101010101101100 retailed 7 -0101010101101100 vouched 11 -0101010101101100 retested 11 -0101010101101100 substituted 85 -0101010101101100 swapped 205 -0101010101101100 earmarked 224 -0101010101101100 exchanged 457 -0101010101101100 reserved 465 -0101010101101100 reached 9709 -0101010101101100 accounted 1645 -0101010101101101 owns. 1 -0101010101101101 110.5885 1 -0101010101101101 inhered 1 -0101010101101101 over-obligated 1 -0101010101101101 truth-in-labeling 1 -0101010101101101 Waston 1 -0101010101101101 Cesmig 1 -0101010101101101 pro-patent 1 -0101010101101101 anti-anti-communist 1 -0101010101101101 social-religious 1 -0101010101101101 aerated 1 -0101010101101101 resolved. 1 -0101010101101101 sold. 1 -0101010101101101 choosers 1 -0101010101101101 coir 1 -0101010101101101 assumed. 1 -0101010101101101 terminated. 1 -0101010101101101 119-111 1 -0101010101101101 full-cycle 1 -0101010101101101 KFAC-AM/FM 1 -0101010101101101 pro-sex 1 -0101010101101101 mistated 1 -0101010101101101 derisory 1 -0101010101101101 Arriagada 1 -0101010101101101 Ottmers 1 -0101010101101101 Ozyegin 1 -0101010101101101 Taga 1 -0101010101101101 Zummoff 1 -0101010101101101 zip-deedo 1 -0101010101101101 well-predicted 1 -0101010101101101 delegitimized 1 -0101010101101101 reprocessed 1 -0101010101101101 Kallaor 1 -0101010101101101 Kitahara 1 -0101010101101101 Adedeji 1 -0101010101101101 pro-red 1 -0101010101101101 Horinouchi 1 -0101010101101101 Andreassen 1 -0101010101101101 112.41 1 -0101010101101101 re-sliced 1 -0101010101101101 defeminizing 1 -0101010101101101 roo-lay 1 -0101010101101101 drug-production 1 -0101010101101101 dropped. 1 -0101010101101101 self-incriminating 1 -0101010101101101 copy-proof 1 -0101010101101101 Petkevich 1 -0101010101101101 Jeffersonians 1 -0101010101101101 reinstalled 1 -0101010101101101 Mositho 1 -0101010101101101 reworded 1 -0101010101101101 prereserved 1 -0101010101101101 concussed 1 -0101010101101101 experience-rated 1 -0101010101101101 McTheater 1 -0101010101101101 shriller 1 -0101010101101101 well-advanced 1 -0101010101101101 badgered. 1 -0101010101101101 SQA-Pf 1 -0101010101101101 well-taken 1 -0101010101101101 111.981 1 -0101010101101101 non-subsidizers 1 -0101010101101101 Europe-sized 1 -0101010101101101 118-110 1 -0101010101101101 Albanianized 1 -0101010101101101 interruptable 1 -0101010101101101 Steimer 1 -0101010101101101 Lendel 1 -0101010101101101 mulched 1 -0101010101101101 4.056 1 -0101010101101101 105.867 1 -0101010101101101 fired. 1 -0101010101101101 anathematized 1 -0101010101101101 susto 1 -0101010101101101 roseas 1 -0101010101101101 self-composed 1 -0101010101101101 dango-related 1 -0101010101101101 Mac-driven 1 -0101010101101101 inadequate. 1 -0101010101101101 Ravnholt 1 -0101010101101101 antidilutive 1 -0101010101101101 tting 1 -0101010101101101 OPEC-driven 1 -0101010101101101 Augenfeld 1 -0101010101101101 Feddis 1 -0101010101101101 re-earned 1 -0101010101101101 a. 1 -0101010101101101 Newark-by-theSwamp 1 -0101010101101101 Pendle 1 -0101010101101101 Bloca-bomb 1 -0101010101101101 Katy-bar-the-door 1 -0101010101101101 mega-hits 1 -0101010101101101 internal. 1 -0101010101101101 obstructionists 1 -0101010101101101 objectified 1 -0101010101101101 top-of-the-wallet 1 -0101010101101101 unenergetic 1 -0101010101101101 masochists 1 -0101010101101101 getable 1 -0101010101101101 emboldening 1 -0101010101101101 Nunez-Lagos 1 -0101010101101101 recylable 1 -0101010101101101 purveys 1 -0101010101101101 general-distribution 1 -0101010101101101 Ersparniskasse 1 -0101010101101101 coagulating 1 -0101010101101101 identitied 1 -0101010101101101 Japanese-engineered 1 -0101010101101101 Paprocki 1 -0101010101101101 anti-conservative 1 -0101010101101101 Srisilpavongse 1 -0101010101101101 Leshem 1 -0101010101101101 Ohl 1 -0101010101101101 specific. 1 -0101010101101101 workas 1 -0101010101101101 pealing 1 -0101010101101101 Annah 1 -0101010101101101 Friday-oriented 1 -0101010101101101 weapons-capable 1 -0101010101101101 under-reported 1 -0101010101101101 McFooled 1 -0101010101101101 well-spent 1 -0101010101101101 268-233 1 -0101010101101101 EPSN 1 -0101010101101101 well-bought 1 -0101010101101101 re-anointed 1 -0101010101101101 big. 1 -0101010101101101 overharvested 1 -0101010101101101 Khachadour 1 -0101010101101101 Probed 1 -0101010101101101 faster-operating 1 -0101010101101101 undersold. 1 -0101010101101101 reincarcerated 1 -0101010101101101 Soviet-ocentric 1 -0101010101101101 landfilled 1 -0101010101101101 grandioso 1 -0101010101101101 build-ups 1 -0101010101101101 17-7 1 -0101010101101101 severe. 1 -0101010101101101 Grow-by-Chance 1 -0101010101101101 heard. 1 -0101010101101101 20-7 1 -0101010101101101 moneylosers 1 -0101010101101101 strike. 1 -0101010101101101 reuses 1 -0101010101101101 surface-level 1 -0101010101101101 bedmates. 1 -0101010101101101 commission-based 1 -0101010101101101 action-results 1 -0101010101101101 re-emphasizes 1 -0101010101101101 project-specific 1 -0101010101101101 recasts 1 -0101010101101101 rewarded. 1 -0101010101101101 Hackstein 1 -0101010101101101 restubbing 1 -0101010101101101 demerged 1 -0101010101101101 cost-justified 1 -0101010101101101 31-24 1 -0101010101101101 28-10 1 -0101010101101101 tough-going 1 -0101010101101101 still-born 1 -0101010101101101 bird-useful 1 -0101010101101101 unblipped 1 -0101010101101101 AitLaoussine 1 -0101010101101101 72-60 1 -0101010101101101 upticked 1 -0101010101101101 counterproductive. 1 -0101010101101101 technophobic 1 -0101010101101101 Fidis 1 -0101010101101101 894,350 1 -0101010101101101 overdecorated 1 -0101010101101101 occurred. 2 -0101010101101101 wowing 2 -0101010101101101 regularized 2 -0101010101101101 outsourced 2 -0101010101101101 overidden 2 -0101010101101101 unstopped 2 -0101010101101101 short-winded 2 -0101010101101101 blackjacked 2 -0101010101101101 infection-free 2 -0101010101101101 rephrased 2 -0101010101101101 composted 2 -0101010101101101 reshot 3 -0101010101101101 retrenches 3 -0101010101101101 itches 3 -0101010101101101 placated 3 -0101010101101101 resupplied 3 -0101010101101101 Ait-Laoussine 3 -0101010101101101 staunched 4 -0101010101101101 undercharged 5 -0101010101101101 reheated 5 -0101010101101101 mourned 5 -0101010101101101 preplaced 6 -0101010101101101 re-examined 8 -0101010101101101 reorganizes 8 -0101010101101101 reauthorized 9 -0101010101101101 stanched 9 -0101010101101101 revisited 10 -0101010101101101 refueled 11 -0101010101101101 quantified 14 -0101010101101101 remedied 15 -0101010101101101 annulled 15 -0101010101101101 abrogated 15 -0101010101101101 commercialized 17 -0101010101101101 reactivated 20 -0101010101101101 misidentified 20 -0101010101101101 repulsed 28 -0101010101101101 misspelled 37 -0101010101101101 effected 39 -0101010101101101 undone 48 -0101010101101101 arraigned 56 -0101010101101101 consummated 58 -0101010101101101 finalized 81 -0101010101101101 rescinded 92 -0101010101101101 jeopardized 109 -0101010101101101 misstated 400 -0101010101101101 exercised 500 -0101010101101101 implemented 502 -0101010101101101 completed 6614 -0101010101101101 terminated 594 -01010101011011100 flatted 1 -01010101011011100 modularized 1 -01010101011011100 race- 1 -01010101011011100 underinsured 1 -01010101011011100 redetained 1 -01010101011011100 resentenced 1 -01010101011011100 overwithheld 1 -01010101011011100 pro-freedom 1 -01010101011011100 trailer-mounted 1 -01010101011011100 cross-trained 1 -01010101011011100 DOUBLED 1 -01010101011011100 proapartheid 1 -01010101011011100 pinballs 1 -01010101011011100 outshot 1 -01010101011011100 privitized 1 -01010101011011100 silk-screened 1 -01010101011011100 bewitched 2 -01010101011011100 offerred 2 -01010101011011100 139.39 2 -01010101011011100 hydroponically 2 -01010101011011100 leafed 2 -01010101011011100 cedes 2 -01010101011011100 raddled 2 -01010101011011100 refigured 2 -01010101011011100 retransmitted 3 -01010101011011100 depreciates 3 -01010101011011100 tilled 3 -01010101011011100 cherry-picked 3 -01010101011011100 spattered 3 -01010101011011100 prepped 3 -01010101011011100 ransomed 3 -01010101011011100 field-tested 3 -01010101011011100 grieved 4 -01010101011011100 recharged 4 -01010101011011100 burgled 4 -01010101011011100 preened 4 -01010101011011100 paged 5 -01010101011011100 innovated 7 -01010101011011100 snowed 9 -01010101011011100 gouged 9 -01010101011011100 wafting 12 -01010101011011100 nibbled 14 -01010101011011100 dangled 17 -01010101011011100 readied 17 -01010101011011100 procured 18 -01010101011011100 sifted 19 -01010101011011100 unwound 19 -01010101011011100 reclassified 24 -01010101011011100 reproduced 38 -01010101011011100 reintroduced 40 -01010101011011100 grouped 55 -01010101011011100 tallied 57 -01010101011011100 screened 75 -01010101011011100 disbursed 76 -01010101011011100 reoffered 77 -01010101011011100 transported 85 -01010101011011100 cashed 104 -01010101011011100 resold 106 -01010101011011100 refinanced 110 -01010101011011100 reassigned 126 -01010101011011100 floated 148 -01010101011011100 drilled 158 -01010101011011100 consumed 236 -01010101011011100 auctioned 262 -01010101011011100 dumped 319 -01010101011011100 exported 323 -01010101011011100 liquidated 329 -01010101011011100 executed 349 -01010101011011100 redeemed 440 -01010101011011100 investigated 480 -01010101011011100 shipped 774 -01010101011011100 tested 1042 -01010101011011100 operated 1245 -01010101011011100 sold 15771 -01010101011011100 settled 2184 -01010101011011101 1,888,008 1 -01010101011011101 Remington. 1 -01010101011011101 6,835,000 1 -01010101011011101 28,130,000 1 -01010101011011101 re-markets 1 -01010101011011101 SUFFERED 1 -01010101011011101 OVERTURNED 1 -01010101011011101 ALREADY 1 -01010101011011101 BUOYANT 1 -01010101011011101 QUOTED 1 -01010101011011101 6,320,758 1 -01010101011011101 3,787,798 1 -01010101011011101 oeconomicus 1 -01010101011011101 7,920,579 1 -01010101011011101 REFORMS 1 -01010101011011101 EMPLOYED 1 -01010101011011101 27,988,000 1 -01010101011011101 1,524,743 1 -01010101011011101 858,767 1 -01010101011011101 11,020,505 1 -01010101011011101 CONCLUDED 1 -01010101011011101 3,456,400 1 -01010101011011101 BOMBED 1 -01010101011011101 23,154,506 1 -01010101011011101 ENROLLMENT 1 -01010101011011101 3,392,575 1 -01010101011011101 6,518,991 1 -01010101011011101 ELUDES 1 -01010101011011101 169,338 1 -01010101011011101 114,266,381 1 -01010101011011101 2,367,782 1 -01010101011011101 INCLUDE 1 -01010101011011101 poo-poos 1 -01010101011011101 9,544,385 1 -01010101011011101 17,545,000 1 -01010101011011101 49,850,000 1 -01010101011011101 MEALS 1 -01010101011011101 RECESSED 1 -01010101011011101 22,943,000 1 -01010101011011101 9,452,346 1 -01010101011011101 POLITICOS 1 -01010101011011101 9,994,484 1 -01010101011011101 civilization. 1 -01010101011011101 39,624,286 1 -01010101011011101 CAST 1 -01010101011011101 21,275,170 1 -01010101011011101 10,637,771 1 -01010101011011101 93,984,000 1 -01010101011011101 CORNER 1 -01010101011011101 1,684,573 1 -01010101011011101 UNDERGO 1 -01010101011011101 1,986,316 1 -01010101011011101 DRAW 1 -01010101011011101 769,744 1 -01010101011011101 coregroup 1 -01010101011011101 6,950,000 1 -01010101011011101 36,978,525 1 -01010101011011101 ATTEMPT 1 -01010101011011101 FLOODED 1 -01010101011011101 571,920 1 -01010101011011101 342,243 1 -01010101011011101 4,573,235 1 -01010101011011101 BATTERIES 1 -01010101011011101 SURPLUS 1 -01010101011011101 1,584,700 1 -01010101011011101 INTENSIFIED 1 -01010101011011101 5,610,000 1 -01010101011011101 35,493,771 1 -01010101011011101 PARTICIPATED 1 -01010101011011101 BREWS 1 -01010101011011101 FOILED 1 -01010101011011101 STOPPAGES 1 -01010101011011101 46,289,657 1 -01010101011011101 8,276,810 1 -01010101011011101 harked 1 -01010101011011101 spooned 2 -01010101011011101 airmailed 2 -01010101011011101 SANK 2 -01010101011011101 re-embraced 2 -01010101011011101 ford 2 -01010101011011101 levitates 2 -01010101011011101 SEIZED 2 -01010101011011101 conjugated 2 -01010101011011101 interjecting 2 -01010101011011101 retyped 3 -01010101011011101 PROPOSE 3 -01010101011011101 PLUMMETED 3 -01010101011011101 guzzled 3 -01010101011011101 tunneled 3 -01010101011011101 good-for-nothing 3 -01010101011011101 overbilled 4 -01010101011011101 MOUNTED 4 -01010101011011101 PASSED 4 -01010101011011101 EASED 4 -01010101011011101 QUIT 5 -01010101011011101 SKIDDED 6 -01010101011011101 scoot 6 -01010101011011101 REBOUNDED 6 -01010101011011101 alternated 8 -01010101011011101 SOARED 9 -01010101011011101 SEEK 9 -01010101011011101 TUMBLED 9 -01010101011011101 reacquired 9 -01010101011011101 fished 10 -01010101011011101 GREW 10 -01010101011011101 dangles 10 -01010101011011101 hawked 14 -01010101011011101 RALLIED 15 -01010101011011101 outsold 15 -01010101011011101 PLUNGED 15 -01010101011011101 SURGED 19 -01010101011011101 exited 22 -01010101011011101 snared 32 -01010101011011101 shorted 42 -01010101011011101 retrieved 51 -01010101011011101 unloaded 105 -01010101011011101 repurchased 190 -01010101011011101 injected 209 -01010101011011101 ranked 491 -01010101011011101 seized 660 -01010101011011101 placed 2687 -01010101011011101 bought 7281 -01010101011011101 purchased 3939 -01010101011011110 wacked 1 -01010101011011110 fun-mobiles 1 -01010101011011110 Wednesdayfor 1 -01010101011011110 flyable 2 -01010101011011110 mated 2 -01010101011011110 disinherited 3 -01010101011011110 quaffed 4 -01010101011011110 sloshed 5 -01010101011011110 sways 6 -01010101011011110 ploughed 6 -01010101011011110 angled 7 -01010101011011110 transacted 11 -01010101011011110 reissued 19 -01010101011011110 indemnified 26 -01010101011011110 graded 29 -01010101011011110 furloughed 30 -01010101011011110 flushed 31 -01010101011011110 expended 42 -01010101011011110 bargained 50 -01010101011011110 entrusted 54 -01010101011011110 mined 54 -01010101011011110 computed 55 -01010101011011110 paired 59 -01010101011011110 refunded 60 -01010101011011110 overpaid 69 -01010101011011110 furnished 94 -01010101011011110 penalized 100 -01010101011011110 pitched 111 -01010101011011110 reinvested 127 -01010101011011110 hedged 139 -01010101011011110 reimbursed 141 -01010101011011110 appropriated 160 -01010101011011110 budgeted 161 -01010101011011110 transmitted 173 -01010101011011110 compensated 174 -01010101011011110 levied 187 -01010101011011110 rented 194 -01010101011011110 assessed 209 -01010101011011110 deposited 225 -01010101011011110 booked 226 -01010101011011110 leased 395 -01010101011011110 contracted 397 -01010101011011110 repaid 447 -01010101011011110 licensed 490 -01010101011011110 trained 541 -01010101011011110 collected 644 -01010101011011110 targeted 691 -01010101011011110 fined 785 -01010101011011110 employed 812 -01010101011011110 owed 955 -01010101011011110 incurred 978 -01010101011011110 recorded 999 -01010101011011110 registered 1048 -01010101011011110 financed 1199 -01010101011011110 paid 9061 -01010101011011110 negotiated 1383 -01010101011011111 arms-control-centered 1 -01010101011011111 3,371,000 1 -01010101011011111 7,032,000 1 -01010101011011111 3,843,000 1 -01010101011011111 52,165,826 1 -01010101011011111 3,738,500 1 -01010101011011111 fund-and 1 -01010101011011111 4,410,459 1 -01010101011011111 outwitted 1 -01010101011011111 2,391,000 1 -01010101011011111 6,550,000 1 -01010101011011111 3,885,000 1 -01010101011011111 18,776,000 1 -01010101011011111 498,120 1 -01010101011011111 980,741 1 -01010101011011111 3,031,546 1 -01010101011011111 4,809,389 1 -01010101011011111 5,027,730 1 -01010101011011111 4,521,834 1 -01010101011011111 11,285 1 -01010101011011111 3,760,885 1 -01010101011011111 20,040,000 1 -01010101011011111 1,451,407 1 -01010101011011111 9,413,107 1 -01010101011011111 480,206 1 -01010101011011111 1,557,994 1 -01010101011011111 907,600 1 -01010101011011111 137,614,844 1 -01010101011011111 18,092,609 1 -01010101011011111 10,888,000 1 -01010101011011111 2,514,000 1 -01010101011011111 7,429,310 1 -01010101011011111 13,414,075 1 -01010101011011111 11,760,828 1 -01010101011011111 13,557,700 1 -01010101011011111 2,540,000 1 -01010101011011111 8,912,822 1 -01010101011011111 custom-tailors 1 -01010101011011111 reactor-grade 1 -01010101011011111 settled.These 1 -01010101011011111 602,698 1 -01010101011011111 2,781,632 1 -01010101011011111 25,856,000 1 -01010101011011111 2,122,500 1 -01010101011011111 5,765,000 1 -01010101011011111 6,878,721 1 -01010101011011111 47,214,318 1 -01010101011011111 1,177,000 1 -01010101011011111 6,063,828 1 -01010101011011111 dirty-field 1 -01010101011011111 9,853,290 1 -01010101011011111 3,426,861 1 -01010101011011111 429,787 1 -01010101011011111 613,979 1 -01010101011011111 5,853,595 1 -01010101011011111 256,340 1 -01010101011011111 504,700 1 -01010101011011111 1,293,660 1 -01010101011011111 23,614,393 1 -01010101011011111 3,912,099 1 -01010101011011111 749,937 1 -01010101011011111 8,063,652 1 -01010101011011111 2,617,040 1 -01010101011011111 14,720 1 -01010101011011111 4,683,575 1 -01010101011011111 628,360 1 -01010101011011111 25,175,000 1 -01010101011011111 5,476,759 1 -01010101011011111 1,084,000 1 -01010101011011111 10,332 1 -01010101011011111 Craf-Cassini 1 -01010101011011111 22,575,000 1 -01010101011011111 2,882,000 1 -01010101011011111 79,529,000 1 -01010101011011111 1,036,625 1 -01010101011011111 1,789,165 1 -01010101011011111 7,247,278 1 -01010101011011111 6,724,892 1 -01010101011011111 more-ordinary 1 -01010101011011111 12,349,493 1 -01010101011011111 by-guess-and-by-golly 1 -01010101011011111 2,442,000 1 -01010101011011111 7,181,000 1 -01010101011011111 3,375,000 1 -01010101011011111 3,626,790 1 -01010101011011111 1,998 1 -01010101011011111 450,535 1 -01010101011011111 1,682,436 1 -01010101011011111 parches 1 -01010101011011111 futures-the 1 -01010101011011111 12,489,000 1 -01010101011011111 897,728 1 -01010101011011111 4,266,080 1 -01010101011011111 re-invested 2 -01010101011011111 slimed 2 -01010101011011111 unleased 2 -01010101011011111 lances 2 -01010101011011111 pontificated 2 -01010101011011111 second-guesses 2 -01010101011011111 umpired 2 -01010101011011111 recommissioned 2 -01010101011011111 tappet 2 -01010101011011111 develped 2 -01010101011011111 curried 3 -01010101011011111 stinky 3 -01010101011011111 treaded 3 -01010101011011111 birdied 4 -01010101011011111 mimed 4 -01010101011011111 husbanded 4 -01010101011011111 grated 5 -01010101011011111 ruminated 6 -01010101011011111 raved 8 -01010101011011111 shoveled 9 -01010101011011111 sweated 10 -01010101011011111 muscled 11 -01010101011011111 fathered 14 -01010101011011111 retraced 17 -01010101011011111 bared 17 -01010101011011111 massed 21 -01010101011011111 spanned 26 -01010101011011111 jettisoned 26 -01010101011011111 batted 28 -01010101011011111 impounded 28 -01010101011011111 banked 29 -01010101011011111 laundered 30 -01010101011011111 wrested 35 -01010101011011111 squandered 37 -01010101011011111 embezzled 37 -01010101011011111 logged 69 -01010101011011111 grossed 73 -01010101011011111 recouped 78 -01010101011011111 wasted 193 -01010101011011111 regained 196 -01010101011011111 appreciated 242 -01010101011011111 equals 277 -01010101011011111 lasted 308 -01010101011011111 yielding 363 -01010101011011111 yielded 372 -01010101011011111 captured 470 -01010101011011111 accumulated 582 -01010101011011111 borrowed 984 -01010101011011111 invested 1598 -01010101011011111 spent 3949 -01010101011011111 lost 6788 -010101010111000 outnegotiated 1 -010101010111000 revolutionizes 1 -010101010111000 556,625 1 -010101010111000 2,563,238 1 -010101010111000 re-configured 1 -010101010111000 quells 1 -010101010111000 refaced 1 -010101010111000 test-smoked 1 -010101010111000 outmarketed 1 -010101010111000 out-negotiating 1 -010101010111000 parroted 1 -010101010111000 pre-ordered 1 -010101010111000 reconverting 1 -010101010111000 blackball 1 -010101010111000 outdrew 1 -010101010111000 pipe-bombed 1 -010101010111000 disorients 1 -010101010111000 challeneged 1 -010101010111000 majority.The 1 -010101010111000 suppported 1 -010101010111000 overstimulates 1 -010101010111000 88,752 1 -010101010111000 master-minded 1 -010101010111000 digitizes 1 -010101010111000 similar-raising 1 -010101010111000 transcribes 1 -010101010111000 suceeed 1 -010101010111000 private-but 1 -010101010111000 slayed 1 -010101010111000 preceeded 2 -010101010111000 outmanuevered 2 -010101010111000 knifed 2 -010101010111000 treed 2 -010101010111000 inveigled 2 -010101010111000 scammed 2 -010101010111000 humanized 2 -010101010111000 enervated 2 -010101010111000 whopped 2 -010101010111000 falsifies 2 -010101010111000 petted 2 -010101010111000 outpriced 2 -010101010111000 reproached 2 -010101010111000 seduces 2 -010101010111000 reproved 3 -010101010111000 under-performed 3 -010101010111000 carped 3 -010101010111000 impugns 4 -010101010111000 out-earned 4 -010101010111000 misperceived 4 -010101010111000 ogled 4 -010101010111000 eulogized 4 -010101010111000 greasing 4 -010101010111000 blackballed 4 -010101010111000 beseeched 5 -010101010111000 importuned 5 -010101010111000 parried 5 -010101010111000 outranked 6 -010101010111000 hoodwinked 6 -010101010111000 regaled 6 -010101010111000 upbraided 6 -010101010111000 reinterpreted 7 -010101010111000 prejudged 7 -010101010111000 spanked 7 -010101010111000 footed 7 -010101010111000 detested 8 -010101010111000 machine-gunned 8 -010101010111000 plagiarized 8 -010101010111000 propounded 8 -010101010111000 adjudged 8 -010101010111000 antagonized 9 -010101010111000 coddled 9 -010101010111000 pooh-poohed 9 -010101010111000 molested 9 -010101010111000 seconded 10 -010101010111000 previewed 10 -010101010111000 disowned 10 -010101010111000 unlocked 10 -010101010111000 clubbed 11 -010101010111000 subverted 11 -010101010111000 blockaded 11 -010101010111000 emasculated 12 -010101010111000 libeled 12 -010101010111000 belittled 12 -010101010111000 badgered 13 -010101010111000 nursed 13 -010101010111000 bemoaned 13 -010101010111000 complimented 13 -010101010111000 radioed 14 -010101010111000 leapfrogged 14 -010101010111000 scoured 14 -010101010111000 fingered 15 -010101010111000 remanded 15 -010101010111000 canvassed 16 -010101010111000 outmaneuvered 17 -010101010111000 hugged 17 -010101010111000 shepherded 18 -010101010111000 implored 18 -010101010111000 misapplied 19 -010101010111000 saluted 19 -010101010111000 savaged 20 -010101010111000 quizzed 20 -010101010111000 revolutionized 20 -010101010111000 trashed 20 -010101010111000 snubbed 21 -010101010111000 toasted 22 -010101010111000 disparaged 22 -010101010111000 scolded 22 -010101010111000 probed 22 -010101010111000 befriended 23 -010101010111000 refuted 23 -010101010111000 annexed 23 -010101010111000 defamed 24 -010101010111000 castigated 25 -010101010111000 outspent 25 -010101010111000 berated 26 -010101010111000 patrolled 27 -010101010111000 interrogated 27 -010101010111000 pinpointed 28 -010101010111000 kissed 29 -010101010111000 christened 31 -010101010111000 queried 33 -010101010111000 chronicled 33 -010101010111000 picketed 34 -010101010111000 abetted 34 -010101010111000 bested 35 -010101010111000 broached 35 -010101010111000 thanked 35 -010101010111000 scorned 36 -010101010111000 pondered 36 -010101010111000 congratulated 37 -010101010111000 reshaped 39 -010101010111000 co-founded 39 -010101010111000 lambasted 39 -010101010111000 miscalculated 41 -010101010111000 lectured 42 -010101010111000 misjudged 42 -010101010111000 clinched 43 -010101010111000 misread 44 -010101010111000 chastised 45 -010101010111000 begged 46 -010101010111000 deceived 46 -010101010111000 disliked 46 -010101010111000 preached 47 -010101010111000 rebuked 47 -010101010111000 countersued 48 -010101010111000 repudiated 49 -010101010111000 tackled 52 -010101010111000 chided 54 -010101010111000 coined 55 -010101010111000 assailed 56 -010101010111000 counseled 57 -010101010111000 bypassed 59 -010101010111000 ridiculed 62 -010101010111000 bribed 64 -010101010111000 researched 66 -010101010111000 trumpeted 67 -010101010111000 entertained 67 -010101010111000 lauded 68 -010101010111000 reprimanded 68 -010101010111000 prodded 71 -010101010111000 wooed 73 -010101010111000 eluded 76 -010101010111000 courted 82 -010101010111000 overcharged 85 -010101010111000 alerted 101 -010101010111000 telephoned 109 -010101010111000 petitioned 111 -010101010111000 phoned 114 -010101010111000 raided 117 -010101010111000 admired 119 -010101010111000 summoned 130 -010101010111000 invaded 132 -010101010111000 manipulated 152 -010101010111000 grabbed 160 -010101010111000 battled 161 -010101010111000 underestimated 169 -010101010111000 faulted 177 -010101010111000 briefed 178 -010101010111000 invoked 179 -010101010111000 condemned 205 -010101010111000 supervised 207 -010101010111000 misled 224 -010101010111000 applauded 228 -010101010111000 embraced 234 -010101010111000 renamed 250 -010101010111000 denounced 258 -010101010111000 tapped 262 -010101010111000 instructed 286 -010101010111000 examined 352 -010101010111000 answered 391 -010101010111000 nominated 467 -010101010111000 welcomed 489 -010101010111000 contacted 518 -010101010111000 pressed 555 -010101010111000 taught 562 -010101010111000 persuaded 568 -010101010111000 praised 571 -010101010111000 visited 632 -010101010111000 studied 676 -010101010111000 challenged 787 -010101010111000 attacked 792 -010101010111000 approached 857 -010101010111000 advised 910 -010101010111000 directed 957 -010101010111000 questioned 994 -010101010111000 criticized 1703 -010101010111000 sued 1774 -010101010111000 urged 2015 -010101010111000 asked 7817 -010101010111000 ordered 2925 -010101010111001 suckled 1 -010101010111001 propounds 1 -010101010111001 gilds 1 -010101010111001 Cevallos 1 -010101010111001 variable-account 1 -010101010111001 parsed 1 -010101010111001 Disparaged 1 -010101010111001 burnishes 1 -010101010111001 reattaches 1 -010101010111001 slow-to-perform 1 -010101010111001 Gained 1 -010101010111001 four-putted 1 -010101010111001 dynamites 1 -010101010111001 Captivates 1 -010101010111001 chivied 1 -010101010111001 4,173 1 -010101010111001 cuddles 1 -010101010111001 out-toughs 1 -010101010111001 riden 1 -010101010111001 Berlinguer 1 -010101010111001 deports 1 -010101010111001 envokes 1 -010101010111001 whitens 1 -010101010111001 wisked 1 -010101010111001 Punctured 1 -010101010111001 Phuangrach 1 -010101010111001 crooking 1 -010101010111001 unchains 1 -010101010111001 bird-dogs 1 -010101010111001 Sued 1 -010101010111001 patronizes 1 -010101010111001 less-patient 1 -010101010111001 hectored 1 -010101010111001 inducts 1 -010101010111001 outlives 1 -010101010111001 re-accelerates 1 -010101010111001 gate-crashed 1 -010101010111001 cuckolds 1 -010101010111001 poleaxed 1 -010101010111001 big-turnout 1 -010101010111001 forewarns 1 -010101010111001 illegalled 1 -010101010111001 disbands 1 -010101010111001 Lapse 1 -010101010111001 synopsizes 1 -010101010111001 dislodges 1 -010101010111001 Self-wringing 1 -010101010111001 re-retired. 1 -010101010111001 clenches 1 -010101010111001 Benedetti-type 1 -010101010111001 upbraids 1 -010101010111001 Haris 1 -010101010111001 hyperexaggerates 1 -010101010111001 Han-ming 1 -010101010111001 cross-examines 1 -010101010111001 psychoanalyzing 1 -010101010111001 Fishworm 1 -010101010111001 Cranach 1 -010101010111001 Polked 1 -010101010111001 plan-six 1 -010101010111001 ladles 1 -010101010111001 puckers 1 -010101010111001 gasconade 1 -010101010111001 reprieved 1 -010101010111001 Teng-tsung 1 -010101010111001 unholstered 1 -010101010111001 Jikun 1 -010101010111001 gaveled 1 -010101010111001 reprised 1 -010101010111001 sex-starved 1 -010101010111001 1,229 1 -010101010111001 reinvents 1 -010101010111001 pricking 1 -010101010111001 unglamorized 1 -010101010111001 much-sought-after 1 -010101010111001 gladhands 1 -010101010111001 Lanqing 1 -010101010111001 re-reinterprets 1 -010101010111001 eviscerated 2 -010101010111001 extolls 2 -010101010111001 fast-talks 2 -010101010111001 reconnoitered 2 -010101010111001 zinged 2 -010101010111001 gypped 2 -010101010111001 overfills 2 -010101010111001 Cleared 2 -010101010111001 double-crossed 2 -010101010111001 pursuaded 2 -010101010111001 dazzles 2 -010101010111001 botches 2 -010101010111001 patent-process 2 -010101010111001 Lira 2 -010101010111001 buttonholes 2 -010101010111001 parlays 2 -010101010111001 whistle-stopped 2 -010101010111001 crucifying 2 -010101010111001 redeposited 2 -010101010111001 decapitalizing 2 -010101010111001 upended 3 -010101010111001 disarms 3 -010101010111001 outscoring 3 -010101010111001 rues 3 -010101010111001 slugged 3 -010101010111001 toed 3 -010101010111001 regales 3 -010101010111001 hand-carried 3 -010101010111001 douses 4 -010101010111001 familiarized 4 -010101010111001 excoriates 4 -010101010111001 blackmailing 4 -010101010111001 bootstrapped 4 -010101010111001 bad-mouthed 4 -010101010111001 conceives 4 -010101010111001 stroked 5 -010101010111001 insulates 5 -010101010111001 patted 5 -010101010111001 defunded 5 -010101010111001 satirized 5 -010101010111001 overhears 5 -010101010111001 outearned 5 -010101010111001 quizzing 5 -010101010111001 persecuting 5 -010101010111001 excommunicated 6 -010101010111001 teases 6 -010101010111001 decribed 6 -010101010111001 conned 6 -010101010111001 titillated 6 -010101010111001 scours 7 -010101010111001 outfoxed 7 -010101010111001 fancied 7 -010101010111001 buttonholed 7 -010101010111001 co-chairs 7 -010101010111001 consoled 7 -010101010111001 savoring 8 -010101010111001 despairs 9 -010101010111001 stonewalled 9 -010101010111001 reassumed 10 -010101010111001 mouthed 11 -010101010111001 mispriced 11 -010101010111001 wowed 12 -010101010111001 savored 12 -010101010111001 crisscrossed 16 -010101010111001 unseated 16 -010101010111001 badgering 17 -010101010111001 endeared 17 -010101010111001 excoriated 19 -010101010111001 strangled 19 -010101010111001 re-entered 21 -010101010111001 taunted 22 -010101010111001 absolved 22 -010101010111001 mocked 25 -010101010111001 recited 28 -010101010111001 greets 28 -010101010111001 thanking 30 -010101010111001 exhorted 30 -010101010111001 admonished 30 -010101010111001 rejoined 33 -010101010111001 informs 47 -010101010111001 recounted 56 -010101010111001 derided 74 -010101010111001 toured 80 -010101010111001 possessed 90 -010101010111001 praises 99 -010101010111001 defrauded 189 -010101010111001 joins 204 -010101010111001 accuses 236 -010101010111001 reminded 267 -010101010111001 portrayed 304 -010101010111001 hailed 337 -010101010111001 notified 535 -010101010111001 defended 569 -010101010111001 characterized 571 -010101010111001 assured 673 -010101010111001 informed 891 -010101010111001 tells 1246 -010101010111001 accused 2251 -010101010111001 described 2301 -010101010111001 told 9410 -010101010111001 joined 2463 -010101010111010 ribonuclease 1 -010101010111010 Industrializing 1 -010101010111010 forswears 1 -010101010111010 shoulder-carried 1 -010101010111010 computer-languages 1 -010101010111010 co-created 1 -010101010111010 RAW. 1 -010101010111010 star-actor 1 -010101010111010 job-loyalty 1 -010101010111010 10-country 1 -010101010111010 confides. 1 -010101010111010 black-edged 1 -010101010111010 auditorium-like 1 -010101010111010 WRITING. 1 -010101010111010 tobacco-extract 1 -010101010111010 forbearance. 1 -010101010111010 crime-and-car-chase 1 -010101010111010 recalled. 1 -010101010111010 disappointed. 1 -010101010111010 auburn-haired- 1 -010101010111010 legs-together 1 -010101010111010 twerpy 1 -010101010111010 McDill 1 -010101010111010 tools-North 1 -010101010111010 secure. 1 -010101010111010 N.C-based 1 -010101010111010 Sambac 1 -010101010111010 B40 1 -010101010111010 incumbent-protected 1 -010101010111010 day-before-the-race 1 -010101010111010 lo-fi 1 -010101010111010 Gals 1 -010101010111010 Schuykill 1 -010101010111010 wanted. 1 -010101010111010 Clerverly 1 -010101010111010 Mid-Size 1 -010101010111010 Club. 1 -010101010111010 Margaretta 1 -010101010111010 retitled 1 -010101010111010 hipped-up 1 -010101010111010 Predict 1 -010101010111010 explains. 1 -010101010111010 WBEZ. 1 -010101010111010 Sankai 1 -010101010111010 mistitled 1 -010101010111010 retorts. 1 -010101010111010 fake-looking 1 -010101010111010 mercenary. 1 -010101010111010 explained. 1 -010101010111010 sewers- 1 -010101010111010 coreopsis 1 -010101010111010 agrees. 1 -010101010111010 brainlessly 1 -010101010111010 sentimentalizing 1 -010101010111010 SLIPPED 1 -010101010111010 warbled 1 -010101010111010 venture. 1 -010101010111010 regulator-inspired 1 -010101010111010 condensing 1 -010101010111010 low-decibel 1 -010101010111010 WFXT. 1 -010101010111010 ratings-obsessed 1 -010101010111010 subWagnerian 1 -010101010111010 FX. 1 -010101010111010 34-inch 1 -010101010111010 financial-offering 1 -010101010111010 BLUEPRINT 1 -010101010111010 Marhaba 1 -010101010111010 critized 2 -010101010111010 stonelike 2 -010101010111010 anoints 2 -010101010111010 unconvincingly 2 -010101010111010 clanged 2 -010101010111010 redubbed 2 -010101010111010 Jello 2 -010101010111010 didn 2 -010101010111010 analogized 2 -010101010111010 interleukin-4 2 -010101010111010 Setemer 2 -010101010111010 Vecernje 2 -010101010111010 plumping 2 -010101010111010 forded 2 -010101010111010 blotted 2 -010101010111010 propagandizes 2 -010101010111010 co-edited 2 -010101010111010 foretells 2 -010101010111010 re-enters 2 -010101010111010 sloughs 2 -010101010111010 brand-named 2 -010101010111010 commends 2 -010101010111010 Police-man 2 -010101010111010 skewers 2 -010101010111010 sandblasts 2 -010101010111010 Earvin 3 -010101010111010 re-sold 3 -010101010111010 glorifies 3 -010101010111010 topples 3 -010101010111010 debunks 3 -010101010111010 tarnishes 3 -010101010111010 steams 4 -010101010111010 groped 4 -010101010111010 Urges 4 -010101010111010 wends 4 -010101010111010 reentered 5 -010101010111010 mistreats 5 -010101010111010 substantiates 6 -010101010111010 needled 6 -010101010111010 crooning 7 -010101010111010 mischarged 8 -010101010111010 chastises 9 -010101010111010 aced 10 -010101010111010 repays 10 -010101010111010 assails 11 -010101010111010 rechristened 14 -010101010111010 spied 19 -010101010111010 dubs 23 -010101010111010 deplored 23 -010101010111010 extolled 27 -010101010111010 subtitled 29 -010101010111010 chanted 32 -010101010111010 downplayed 34 -010101010111010 said. 37 -010101010111010 commended 42 -010101010111010 decried 46 -010101010111010 code-named 50 -010101010111010 headlined 53 -010101010111010 nicknamed 70 -010101010111010 likened 86 -010101010111010 ascribed 113 -010101010111010 blasted 139 -010101010111010 titled 182 -010101010111010 dubbed 323 -010101010111010 labeled 335 -010101010111010 termed 436 -010101010111010 blamed 1208 -010101010111010 called 12429 -010101010111010 attributed 2067 -010101010111011 superprotection 1 -010101010111011 atmospheres 1 -010101010111011 atoning 1 -010101010111011 income-supports 1 -010101010111011 duetizing 1 -010101010111011 candiate 1 -010101010111011 Hodsell 1 -010101010111011 point-for-point 1 -010101010111011 value-packed 1 -010101010111011 Strelzin 1 -010101010111011 over-buying 1 -010101010111011 chaffs 1 -010101010111011 101.22 1 -010101010111011 Juventus 1 -010101010111011 meteorlogist 1 -010101010111011 You. 1 -010101010111011 slap-and-tickle 1 -010101010111011 overleaps 1 -010101010111011 Muranyi 1 -010101010111011 Rouault 1 -010101010111011 111.37 1 -010101010111011 111.13 1 -010101010111011 Gaullette 1 -010101010111011 disports 1 -010101010111011 reseating 1 -010101010111011 cannibalizes 1 -010101010111011 methylsalicylate 1 -010101010111011 press-basher 1 -010101010111011 78.59 1 -010101010111011 Air-Head 1 -010101010111011 gourmands 1 -010101010111011 patterning 1 -010101010111011 limited-English-speakers 1 -010101010111011 non-cholesterol 1 -010101010111011 closeting 1 -010101010111011 Free-World 1 -010101010111011 fill-ins 1 -010101010111011 acounted 1 -010101010111011 tub-thump 1 -010101010111011 bargain-seekers 1 -010101010111011 alllowing 1 -010101010111011 emceed 1 -010101010111011 reapplied 1 -010101010111011 employer-testing 1 -010101010111011 cheesing 1 -010101010111011 deadlines. 1 -010101010111011 realpolitik 1 -010101010111011 queueing 1 -010101010111011 dispiritedly 1 -010101010111011 Jahan 1 -010101010111011 photo-tools 1 -010101010111011 succesors 1 -010101010111011 checkoffs 1 -010101010111011 90day 1 -010101010111011 unburdening 1 -010101010111011 bleach-filled 1 -010101010111011 transmutes 2 -010101010111011 affixes 2 -010101010111011 quarterhorses 2 -010101010111011 teleprompters 2 -010101010111011 semiparalyzed 2 -010101010111011 plumps 2 -010101010111011 VMIG-1 2 -010101010111011 fly-rodding 2 -010101010111011 Waites 2 -010101010111011 antiperspirants 2 -010101010111011 recoiling 2 -010101010111011 chaining 3 -010101010111011 reproaches 3 -010101010111011 rechristening 3 -010101010111011 meterologist 3 -010101010111011 spokesdog 3 -010101010111011 perjuring 3 -010101010111011 raps 3 -010101010111011 underprepared 3 -010101010111011 baiting 3 -010101010111011 Isidore 3 -010101010111011 sentencings 4 -010101010111011 reasons. 4 -010101010111011 availing 4 -010101010111011 girds 5 -010101010111011 confiding 10 -010101010111011 deluding 12 -010101010111011 apologizes 12 -010101010111011 opts 25 -010101010111011 distancing 30 -010101010111011 amends 44 -010101010111011 begging 72 -010101010111011 pleading 155 -010101010111011 adjusting 426 -010101010111011 calling 2069 -010101010111011 calls 6670 -010101010111100 decollectivized 1 -010101010111100 price-leader 1 -010101010111100 9,477 1 -010101010111100 desmadre 1 -010101010111100 organo-phosphorus 1 -010101010111100 InterAgency 1 -010101010111100 appproached 1 -010101010111100 deposit-guarantee 1 -010101010111100 AIDS-acquired 1 -010101010111100 34,427 1 -010101010111100 45,530 1 -010101010111100 automatic-braking 1 -010101010111100 sub-clinical 1 -010101010111100 2,859 1 -010101010111100 69,375 1 -010101010111100 24-karat-gold 1 -010101010111100 2,566 1 -010101010111100 4,006,796 1 -010101010111100 not-unimpressive 1 -010101010111100 171,185 1 -010101010111100 matched-sale 1 -010101010111100 552,774 1 -010101010111100 embezzles 1 -010101010111100 flexicoker 1 -010101010111100 4,844 1 -010101010111100 28,083 1 -010101010111100 286-type 1 -010101010111100 ether-substitutes 1 -010101010111100 18,419 2 -010101010111100 2,655 2 -010101010111100 transfigured 2 -010101010111100 canonized 3 -010101010111100 amnestied 3 -010101010111100 Spectrums 3 -010101010111100 co-developed 3 -010101010111100 air-shipped 3 -010101010111100 re-released 3 -010101010111100 9mm 3 -010101010111100 bludgeons 3 -010101010111100 reattached 4 -010101010111100 idolized 4 -010101010111100 aquired 4 -010101010111100 retaken 4 -010101010111100 radiated 5 -010101010111100 reincorporated 5 -010101010111100 scavenged 5 -010101010111100 bamboozled 5 -010101010111100 enfranchised 6 -010101010111100 reinvests 6 -010101010111100 undefeated 9 -010101010111100 anointed 10 -010101010111100 dethroned 11 -010101010111100 refreshed 13 -010101010111100 disassembled 13 -010101010111100 synthesized 31 -010101010111100 remodeled 33 -010101010111100 minted 40 -010101010111100 reconstituted 42 -010101010111100 denationalized 67 -010101010111100 downed 71 -010101010111100 divested 104 -010101010111100 filmed 114 -010101010111100 severed 125 -010101010111100 outbid 125 -010101010111100 orchestrated 137 -010101010111100 enlisted 149 -010101010111100 privatized 162 -010101010111100 branded 171 -010101010111100 displaced 177 -010101010111100 forged 203 -010101010111100 assisted 289 -010101010111100 inherited 292 -010101010111100 reorganized 294 -010101010111100 recruited 356 -010101010111100 engineered 590 -010101010111100 experienced 1062 -010101010111100 founded 1088 -010101010111100 organized 1230 -010101010111100 retained 1263 -010101010111100 selected 1273 -010101010111100 hired 2237 -010101010111100 established 2393 -010101010111100 acquired 8443 -010101010111100 formed 2946 -0101010101111010 27,019 1 -0101010101111010 14,375 1 -0101010101111010 flaw-prone 1 -0101010101111010 copycatting 1 -0101010101111010 cattle-drive 1 -0101010101111010 out-slicked 1 -0101010101111010 helpful-established 1 -0101010101111010 4,909 1 -0101010101111010 20,620 1 -0101010101111010 redesignated 2 -0101010101111010 speed-ups 2 -0101010101111010 legitimated 3 -0101010101111010 mooted 4 -0101010101111010 force-fed 4 -0101010101111010 empaneled 7 -0101010101111010 cradling 7 -0101010101111010 showcased 8 -0101010101111010 short-circuited 8 -0101010101111010 postmarked 12 -0101010101111010 codified 14 -0101010101111010 unfurled 14 -0101010101111010 reimposed 20 -0101010101111010 test-marketed 21 -0101010101111010 promulgated 36 -0101010101111010 inaugurated 54 -0101010101111010 vacated 96 -0101010101111010 convened 162 -0101010101111010 adjourned 188 -0101010101111010 instituted 236 -0101010101111010 commissioned 269 -0101010101111010 drafted 372 -0101010101111010 outlined 399 -0101010101111010 enacted 744 -0101010101111010 installed 748 -0101010101111010 delivered 1136 -0101010101111010 conducted 1487 -0101010101111010 imposed 1516 -0101010101111010 awarded 1853 -0101010101111010 published 2129 -0101010101111010 introduced 2528 -0101010101111010 launched 3003 -0101010101111010 released 3473 -0101010101111010 issued 5827 -0101010101111010 created 3962 -0101010101111011 dead-set 1 -0101010101111011 ill-armed 1 -0101010101111011 II-low 1 -0101010101111011 3,183 1 -0101010101111011 spruce-pine-fir 1 -0101010101111011 fulminates 1 -0101010101111011 haggles 1 -0101010101111011 cumulates 1 -0101010101111011 man-tailored 1 -0101010101111011 ranted 1 -0101010101111011 militated 1 -0101010101111011 portering 1 -0101010101111011 appproved 1 -0101010101111011 52-42 1 -0101010101111011 ultra-expensive 1 -0101010101111011 6-1-1 1 -0101010101111011 17-0-1 1 -0101010101111011 inveighed 1 -0101010101111011 Bets 2 -0101010101111011 Triathlon 2 -0101010101111011 rereleased 2 -0101010101111011 shish 2 -0101010101111011 inveighing 3 -0101010101111011 subbed 3 -0101010101111011 referenced 3 -0101010101111011 fulminated 3 -0101010101111011 inveighs 3 -0101010101111011 silhouetted 3 -0101010101111011 SLIPS 4 -0101010101111011 knighted 4 -0101010101111011 vied 23 -0101010101111011 discriminates 52 -0101010101111011 retaliated 66 -0101010101111011 unsealed 66 -0101010101111011 lodged 89 -0101010101111011 filed 8542 -0101010101111011 discriminated 121 -0101010101111100 wangles 1 -0101010101111100 Fixedincome 1 -0101010101111100 Amex-traded 1 -0101010101111100 Bankrupted 1 -0101010101111100 underplays 1 -0101010101111100 systematizes 1 -0101010101111100 soldified 1 -0101010101111100 uncompensated-care 1 -0101010101111100 Viacheslav 1 -0101010101111100 early-logged 1 -0101010101111100 60.81 1 -0101010101111100 52,198 1 -0101010101111100 underpays 2 -0101010101111100 kited 2 -0101010101111100 reassigns 2 -0101010101111100 finagled 2 -0101010101111100 fixed-priced 2 -0101010101111100 proffers 2 -0101010101111100 re-examines 2 -0101010101111100 munched 3 -0101010101111100 nix 4 -0101010101111100 discerns 4 -0101010101111100 Ishino 5 -0101010101111100 muffed 5 -0101010101111100 swiped 6 -0101010101111100 kindled 10 -0101010101111100 disobeyed 12 -0101010101111100 copped 14 -0101010101111100 juggled 15 -0101010101111100 forestalled 15 -0101010101111100 dodged 16 -0101010101111100 merited 16 -0101010101111100 solicits 16 -0101010101111100 parlayed 18 -0101010101111100 exacted 18 -0101010101111100 mustered 22 -0101010101111100 harbored 32 -0101010101111100 withstood 44 -0101010101111100 fielded 51 -0101010101111100 pocketed 52 -0101010101111100 elicited 55 -0101010101111100 fetched 62 -0101010101111100 neared 88 -0101010101111100 netted 94 -0101010101111100 commanded 98 -0101010101111100 garnered 119 -0101010101111100 endured 129 -0101010101111100 reaped 151 -0101010101111100 witnessed 167 -0101010101111100 amassed 184 -0101010101111100 solicited 186 -0101010101111100 encountered 338 -0101010101111100 lacked 361 -0101010101111100 scored 403 -0101010101111100 enjoyed 587 -0101010101111100 suffered 1291 -0101010101111100 violated 1370 -0101010101111100 obtained 1384 -0101010101111100 received 9488 -0101010101111100 won 5006 -0101010101111101 tulipically 1 -0101010101111101 SCRAPPED 1 -0101010101111101 cut-back 1 -0101010101111101 rebroke 1 -0101010101111101 FORESEES 1 -0101010101111101 sbig 1 -0101010101111101 ANT 1 -0101010101111101 opertes 1 -0101010101111101 scowled 1 -0101010101111101 expectorated 1 -0101010101111101 chisels 1 -0101010101111101 Finn-type 1 -0101010101111101 redecorates 1 -0101010101111101 STIR 1 -0101010101111101 Princetonian 1 -0101010101111101 positing 1 -0101010101111101 DETAINED 1 -0101010101111101 plaits 1 -0101010101111101 Corp.and 1 -0101010101111101 DRINKING 1 -0101010101111101 Foresee 1 -0101010101111101 ESTABLISHED 1 -0101010101111101 PRODUCED 1 -0101010101111101 PLC-despite 1 -0101010101111101 PLAYED 1 -0101010101111101 SPENDS 1 -0101010101111101 vocalized 1 -0101010101111101 ENLISTED 1 -0101010101111101 Blesse 1 -0101010101111101 Wspolnota 1 -0101010101111101 co-teaches 1 -0101010101111101 RATIFIES 1 -0101010101111101 off-setting 1 -0101010101111101 SWUNG 1 -0101010101111101 asembled 1 -0101010101111101 KONINKLIJKE 1 -0101010101111101 GAINED 1 -0101010101111101 telecopied 1 -0101010101111101 Inc.said 1 -0101010101111101 RIPS 1 -0101010101111101 Davidowitz. 1 -0101010101111101 Decker-Slaney 1 -0101010101111101 unfurls 1 -0101010101111101 connived 1 -0101010101111101 chancelleries 1 -0101010101111101 ABORTED 1 -0101010101111101 CHOOSE 1 -0101010101111101 prophesies 1 -0101010101111101 raisesanother 1 -0101010101111101 IMPOSE 2 -0101010101111101 shirks 2 -0101010101111101 ISSUED 2 -0101010101111101 fondles 2 -0101010101111101 PLAYS 2 -0101010101111101 SCHEDULED 2 -0101010101111101 UNVEILED 2 -0101010101111101 DEPORTED 2 -0101010101111101 ESCORTED 2 -0101010101111101 NEARED 2 -0101010101111101 SCORED 2 -0101010101111101 INHERITS 2 -0101010101111101 DECLINED 2 -0101010101111101 KIDNAPPED 3 -0101010101111101 included. 3 -0101010101111101 plunks 3 -0101010101111101 blistered 3 -0101010101111101 Detect 3 -0101010101111101 STRUCK 3 -0101010101111101 unwraps 3 -0101010101111101 plumbed 3 -0101010101111101 soft-pedaled 3 -0101010101111101 PROCLAIMED 3 -0101010101111101 beatified 4 -0101010101111101 Evolves 4 -0101010101111101 SIGNED 4 -0101010101111101 CONDUCTED 4 -0101010101111101 STAGED 4 -0101010101111101 concocts 4 -0101010101111101 REPORTED 5 -0101010101111101 ADOPTED 5 -0101010101111101 PRESENTED 5 -0101010101111101 RELEASED 5 -0101010101111101 CHARGED 5 -0101010101111101 LAUNCHED 7 -0101010101111101 ARRESTED 7 -0101010101111101 Becomes 8 -0101010101111101 IMPOSED 8 -0101010101111101 ATTACKED 9 -0101010101111101 APPROVED 11 -0101010101111101 RECEIVED 12 -0101010101111101 REJECTED 16 -0101010101111101 FACES 22 -0101010101111101 notched 23 -0101010101111101 foresees 137 -0101010101111101 awaited 186 -0101010101111101 cites 509 -0101010101111101 faces 2369 -0101010101111101 posted 4309 -0101010101111101 cited 3517 -0101010101111110 reoccupied 1 -0101010101111110 matings 1 -0101010101111110 rompts 1 -0101010101111110 micro-manages 1 -0101010101111110 atacked 1 -0101010101111110 Maisky 1 -0101010101111110 more-concrete 1 -0101010101111110 salvages 2 -0101010101111110 spouted 2 -0101010101111110 backstops 2 -0101010101111110 denoted 3 -0101010101111110 alighted 3 -0101010101111110 shrieked 4 -0101010101111110 squirmed 4 -0101010101111110 test-fired 4 -0101010101111110 repudiates 5 -0101010101111110 uncorked 5 -0101010101111110 interjected 6 -0101010101111110 imbibed 7 -0101010101111110 entrenches 7 -0101010101111110 traversed 7 -0101010101111110 nipped 9 -0101010101111110 mediated 16 -0101010101111110 culminates 17 -0101010101111110 brandished 18 -0101010101111110 epitomized 20 -0101010101111110 sported 22 -0101010101111110 commandeered 23 -0101010101111110 choreographed 23 -0101010101111110 quieted 24 -0101010101111110 detonated 25 -0101010101111110 foreshadowed 26 -0101010101111110 masterminded 32 -0101010101111110 bankrolled 33 -0101010101111110 repelled 33 -0101010101111110 popularized 40 -0101010101111110 evoked 42 -0101010101111110 espoused 44 -0101010101111110 underlined 44 -0101010101111110 co-authored 46 -0101010101111110 co-sponsored 48 -0101010101111110 resembled 57 -0101010101111110 concocted 75 -0101010101111110 contradicted 81 -0101010101111110 defied 112 -0101010101111110 unleashed 118 -0101010101111110 hosted 124 -0101010101111110 pioneered 145 -0101010101111110 echoed 182 -0101010101111110 provoked 245 -0101010101111110 posed 360 -0101010101111110 devised 378 -0101010101111110 staged 501 -0101010101111110 initiated 567 -0101010101111110 attended 697 -0101010101111110 struck 1087 -0101010101111110 follows 1657 -0101010101111110 represented 1710 -0101010101111110 played 2159 -0101010101111110 passed 3230 -0101010101111110 followed 3563 -0101010101111110 signed 4740 -0101010101111111 mud-plaster 1 -0101010101111111 3,611,947 1 -0101010101111111 6,595,721 1 -0101010101111111 31,330,395 1 -0101010101111111 Rundfunk 1 -0101010101111111 5,743,151 1 -0101010101111111 5,263,620 1 -0101010101111111 5,165,859 1 -0101010101111111 interleaves 1 -0101010101111111 6,459,939 1 -0101010101111111 1,326,478 1 -0101010101111111 15.8446 1 -0101010101111111 upends 1 -0101010101111111 9,432,279 1 -0101010101111111 1,072,028,302 1 -0101010101111111 12,740,000 1 -0101010101111111 handwrites 1 -0101010101111111 2,565,513 1 -0101010101111111 9,968,000 1 -0101010101111111 5,701,500 1 -0101010101111111 6,718,996 1 -0101010101111111 2,674,551 1 -0101010101111111 aproved 1 -0101010101111111 scribing 1 -0101010101111111 ammended 1 -0101010101111111 68,174,113 1 -0101010101111111 71,583,889 1 -0101010101111111 2,304,000 1 -0101010101111111 okays 1 -0101010101111111 7,029,050 1 -0101010101111111 re-count 1 -0101010101111111 11,473,986 1 -0101010101111111 7,538,874 1 -0101010101111111 8,462,631 1 -0101010101111111 44,059,930 1 -0101010101111111 Pursues 1 -0101010101111111 8,146,128 1 -0101010101111111 sicked 1 -0101010101111111 669,964 2 -0101010101111111 apprising 2 -0101010101111111 Herself 2 -0101010101111111 collared 2 -0101010101111111 3,068,167 2 -0101010101111111 proofreads 2 -0101010101111111 convoked 2 -0101010101111111 4,159,454 2 -0101010101111111 coo 2 -0101010101111111 winches 3 -0101010101111111 deemphasized 4 -0101010101111111 counteracted 4 -0101010101111111 OPENED 4 -0101010101111111 butted 5 -0101010101111111 navigated 6 -0101010101111111 reheard 6 -0101010101111111 cosponsored 6 -0101010101111111 redrafted 6 -0101010101111111 UPHELD 7 -0101010101111111 reestablished 8 -0101010101111111 pocket-vetoed 10 -0101010101111111 appropriates 10 -0101010101111111 overturns 11 -0101010101111111 ratifies 14 -0101010101111111 preempted 16 -0101010101111111 enacts 18 -0101010101111111 scotched 20 -0101010101111111 nixed 21 -0101010101111111 disavowed 24 -0101010101111111 skirted 29 -0101010101111111 boycotted 43 -0101010101111111 foiled 52 -0101010101111111 quashed 52 -0101010101111111 upholds 60 -0101010101111111 sidestepped 60 -0101010101111111 voided 62 -0101010101111111 invalidated 85 -0101010101111111 overruled 91 -0101010101111111 sanctioned 93 -0101010101111111 revoked 111 -0101010101111111 thwarted 162 -0101010101111111 spurned 179 -0101010101111111 reinstated 183 -0101010101111111 approves 202 -0101010101111111 vetoed 232 -0101010101111111 overturned 266 -0101010101111111 ratified 305 -0101010101111111 rebuffed 501 -0101010101111111 endorsed 697 -0101010101111111 reversed 712 -0101010101111111 blocked 749 -0101010101111111 upheld 846 -0101010101111111 cleared 952 -0101010101111111 granted 1788 -0101010101111111 authorized 2191 -0101010101111111 adopted 2315 -0101010101111111 accepted 2361 -0101010101111111 declared 2483 -0101010101111111 approved 7628 -0101010101111111 rejected 4089 -0101010110000 irradiating 1 -0101010110000 de-funds 1 -0101010110000 decontrols 1 -0101010110000 undergird 1 -0101010110000 Nander 1 -0101010110000 matching-grant 1 -0101010110000 BOUSSAC 1 -0101010110000 Parviz 1 -0101010110000 jingled 1 -0101010110000 1975-87 1 -0101010110000 juxtapose 1 -0101010110000 chlorofluorocarbon-containing 1 -0101010110000 3,964 1 -0101010110000 road-racing 1 -0101010110000 ennobles 1 -0101010110000 enthralls 1 -0101010110000 minnow-sized 1 -0101010110000 ionizes 1 -0101010110000 pre-rigged 1 -0101010110000 repossesses 1 -0101010110000 weeth 1 -0101010110000 mass-produces 1 -0101010110000 relaunches 1 -0101010110000 lymphokine 1 -0101010110000 quite-interesting 1 -0101010110000 enthrall 1 -0101010110000 neighbored 1 -0101010110000 shore-grown 1 -0101010110000 disenfranchises 1 -0101010110000 primarycare 1 -0101010110000 one-ton-cargo 1 -0101010110000 eye-straining 1 -0101010110000 sates 1 -0101010110000 blank-tape 1 -0101010110000 humbles 1 -0101010110000 crash-tests 1 -0101010110000 characterizered 1 -0101010110000 remounts 1 -0101010110000 beguiles 1 -0101010110000 14,435 1 -0101010110000 outdistances 1 -0101010110000 re-reciting 1 -0101010110000 conect 1 -0101010110000 late-coming 1 -0101010110000 charactized 1 -0101010110000 Boojumr 1 -0101010110000 harasses 1 -0101010110000 shortchanges 1 -0101010110000 co-brokered 1 -0101010110000 ailed 1 -0101010110000 Danuta 1 -0101010110000 specially-trained 1 -0101010110000 grubstaked 1 -0101010110000 befouled 1 -0101010110000 NASD-developed 1 -0101010110000 Contessa 1 -0101010110000 hard-to-ship 1 -0101010110000 super-conservative 1 -0101010110000 Class-2600 1 -0101010110000 approval-consumer 1 -0101010110000 support-structure 1 -0101010110000 practieow 1 -0101010110000 out-fished 1 -0101010110000 get-away-from-it-all 1 -0101010110000 nourishes 2 -0101010110000 predisposes 2 -0101010110000 televises 2 -0101010110000 immunizes 2 -0101010110000 imprisons 2 -0101010110000 swaddles 2 -0101010110000 emboldens 2 -0101010110000 appalls 2 -0101010110000 encloses 2 -0101010110000 disables 2 -0101010110000 unsettles 2 -0101010110000 conserves 2 -0101010110000 warps 2 -0101010110000 pre-terminal 2 -0101010110000 calibrates 2 -0101010110000 wallops 2 -0101010110000 bombards 2 -0101010110000 dignifies 2 -0101010110000 garbling 2 -0101010110000 enmeshes 2 -0101010110000 breast-fed 2 -0101010110000 piques 2 -0101010110000 delists 2 -0101010110000 doffed 2 -0101010110000 Wintergreen 2 -0101010110000 lipped 2 -0101010110000 enshrouds 2 -0101010110000 unifies 2 -0101010110000 appeases 2 -0101010110000 reconverts 3 -0101010110000 centralizes 3 -0101010110000 goads 3 -0101010110000 tabulates 3 -0101010110000 co-organized 3 -0101010110000 galvanizes 3 -0101010110000 prowls 3 -0101010110000 blesses 3 -0101010110000 enjoins 3 -0101010110000 splatters 3 -0101010110000 shames 3 -0101010110000 mitigates 3 -0101010110000 lubricates 3 -0101010110000 Ate 3 -0101010110000 emulates 3 -0101010110000 vitiates 3 -0101010110000 terrorizes 3 -0101010110000 devalues 3 -0101010110000 purifies 3 -0101010110000 bankrupts 3 -0101010110000 displeases 3 -0101010110000 disallows 3 -0101010110000 refreshes 3 -0101010110000 sickens 3 -0101010110000 contaminates 3 -0101010110000 traverses 3 -0101010110000 detaches 3 -0101010110000 interposes 3 -0101010110000 remarkets 3 -0101010110000 segregates 3 -0101010110000 re-establishes 3 -0101010110000 behooves 4 -0101010110000 pre-dated 4 -0101010110000 instills 4 -0101010110000 implicates 4 -0101010110000 wows 4 -0101010110000 remits 4 -0101010110000 roils 4 -0101010110000 refurbishes 4 -0101010110000 relabeled 4 -0101010110000 devastates 4 -0101010110000 mutes 4 -0101010110000 horrifies 4 -0101010110000 accentuates 4 -0101010110000 mobilizes 4 -0101010110000 reveres 4 -0101010110000 cheapens 4 -0101010110000 revokes 4 -0101010110000 bisects 4 -0101010110000 squanders 4 -0101010110000 rehabilitates 4 -0101010110000 siphons 4 -0101010110000 criminalizes 4 -0101010110000 Drives 4 -0101010110000 fortifies 4 -0101010110000 astonishes 5 -0101010110000 mystifies 5 -0101010110000 counteracts 5 -0101010110000 bewilders 5 -0101010110000 envelops 5 -0101010110000 replenishes 5 -0101010110000 reasserts 5 -0101010110000 hobbles 5 -0101010110000 equips 5 -0101010110000 suffuses 5 -0101010110000 punctuates 5 -0101010110000 disseminates 5 -0101010110000 augments 5 -0101010110000 penetrates 5 -0101010110000 bestows 5 -0101010110000 circumvents 5 -0101010110000 impels 5 -0101010110000 infest 5 -0101010110000 arbitrates 5 -0101010110000 depletes 5 -0101010110000 overrules 5 -0101010110000 repels 6 -0101010110000 imperils 6 -0101010110000 trivializes 6 -0101010110000 absolving 6 -0101010110000 stymies 6 -0101010110000 aligns 6 -0101010110000 bakes 6 -0101010110000 adorns 6 -0101010110000 misunderstands 6 -0101010110000 discredits 6 -0101010110000 subverts 6 -0101010110000 adjoins 6 -0101010110000 unloads 6 -0101010110000 preoccupies 6 -0101010110000 reintroduces 6 -0101010110000 categorizes 7 -0101010110000 revamps 7 -0101010110000 alienates 7 -0101010110000 retards 7 -0101010110000 orchestrates 7 -0101010110000 mars 7 -0101010110000 animates 7 -0101010110000 bathes 7 -0101010110000 proscribes 7 -0101010110000 dims 7 -0101010110000 crimps 7 -0101010110000 infests 7 -0101010110000 differentiates 7 -0101010110000 recoups 7 -0101010110000 satirizes 7 -0101010110000 prosecutes 7 -0101010110000 demeans 7 -0101010110000 misleads 8 -0101010110000 codifies 8 -0101010110000 usurps 8 -0101010110000 displaces 8 -0101010110000 repackages 8 -0101010110000 infuses 8 -0101010110000 tolerates 8 -0101010110000 appraises 8 -0101010110000 alleviates 8 -0101010110000 taints 8 -0101010110000 distresses 8 -0101010110000 automates 8 -0101010110000 propels 8 -0101010110000 disappoints 8 -0101010110000 peddles 8 -0101010110000 toughens 8 -0101010110000 injures 8 -0101010110000 absolves 8 -0101010110000 unleashes 8 -0101010110000 imitates 9 -0101010110000 stiffens 9 -0101010110000 overshadows 9 -0101010110000 withstands 9 -0101010110000 fascinates 9 -0101010110000 enriches 9 -0101010110000 smothers 9 -0101010110000 isolates 9 -0101010110000 elevates 9 -0101010110000 replicates 9 -0101010110000 sterilizes 9 -0101010110000 galls 9 -0101010110000 annoys 10 -0101010110000 repeals 10 -0101010110000 rotates 10 -0101010110000 tempts 10 -0101010110000 reassures 10 -0101010110000 amplifies 10 -0101010110000 enlarges 10 -0101010110000 distracts 10 -0101010110000 dooms 10 -0101010110000 utilizes 10 -0101010110000 spawns 10 -0101010110000 envisages 11 -0101010110000 devours 11 -0101010110000 solidifies 11 -0101010110000 corrupts 11 -0101010110000 suppresses 11 -0101010110000 baffles 11 -0101010110000 reproduces 11 -0101010110000 constrains 11 -0101010110000 outpaces 11 -0101010110000 fabricates 11 -0101010110000 notifies 11 -0101010110000 outperforms 11 -0101010110000 dismays 11 -0101010110000 refutes 11 -0101010110000 bespeaks 11 -0101010110000 condones 12 -0101010110000 furnishes 12 -0101010110000 undid 12 -0101010110000 activates 12 -0101010110000 pares 12 -0101010110000 averts 12 -0101010110000 funnels 12 -0101010110000 rebuilds 12 -0101010110000 obligates 12 -0101010110000 legitimizes 12 -0101010110000 boggles 13 -0101010110000 reimburses 13 -0101010110000 postpones 13 -0101010110000 punishes 13 -0101010110000 validates 13 -0101010110000 negates 13 -0101010110000 excites 13 -0101010110000 eludes 13 -0101010110000 magnifies 13 -0101010110000 impresses 13 -0101010110000 denotes 13 -0101010110000 accommodates 14 -0101010110000 simplifies 14 -0101010110000 confounds 14 -0101010110000 modifies 14 -0101010110000 infuriates 14 -0101010110000 befell 14 -0101010110000 maximizes 15 -0101010110000 deters 15 -0101010110000 vindicates 15 -0101010110000 revises 15 -0101010110000 aggravates 15 -0101010110000 diverts 15 -0101010110000 locates 16 -0101010110000 hinders 16 -0101010110000 facilitates 16 -0101010110000 empowers 16 -0101010110000 suspends 16 -0101010110000 angers 16 -0101010110000 endangers 17 -0101010110000 ails 17 -0101010110000 entertains 17 -0101010110000 stifles 17 -0101010110000 elicits 17 -0101010110000 integrates 17 -0101010110000 uncovers 17 -0101010110000 renews 18 -0101010110000 overwhelms 18 -0101010110000 irks 18 -0101010110000 permeates 18 -0101010110000 withholds 18 -0101010110000 frustrates 18 -0101010110000 initiates 18 -0101010110000 supersedes 18 -0101010110000 offends 19 -0101010110000 mimics 19 -0101010110000 waives 19 -0101010110000 spotlights 19 -0101010110000 riles 19 -0101010110000 misrepresents 19 -0101010110000 compels 19 -0101010110000 inspects 20 -0101010110000 minimizes 20 -0101010110000 restrains 20 -0101010110000 provokes 20 -0101010110000 impedes 20 -0101010110000 unites 20 -0101010110000 overrides 20 -0101010110000 simulates 21 -0101010110000 epitomizes 21 -0101010110000 exacerbates 21 -0101010110000 robs 21 -0101010110000 confuses 21 -0101010110000 obliges 22 -0101010110000 furthers 22 -0101010110000 harms 22 -0101010110000 condemns 22 -0101010110000 thwarts 22 -0101010110000 irritates 23 -0101010110000 dilutes 23 -0101010110000 transforms 23 -0101010110000 rankles 24 -0101010110000 overtook 24 -0101010110000 confers 25 -0101010110000 frightens 25 -0101010110000 depresses 25 -0101010110000 understates 25 -0101010110000 jeopardizes 25 -0101010110000 perpetuates 26 -0101010110000 illuminates 26 -0101010110000 penalizes 27 -0101010110000 overstates 27 -0101010110000 overthrew 27 -0101010110000 resells 27 -0101010110000 emits 28 -0101010110000 hampers 28 -0101010110000 trims 29 -0101010110000 erodes 29 -0101010110000 heralds 29 -0101010110000 lessens 29 -0101010110000 forbade 30 -0101010110000 fulfills 30 -0101010110000 relieves 31 -0101010110000 transcends 31 -0101010110000 precedes 32 -0101010110000 motivates 32 -0101010110000 affirms 32 -0101010110000 reaffirms 32 -0101010110000 sustains 33 -0101010110000 organizes 33 -0101010110000 executes 33 -0101010110000 convinces 33 -0101010110000 clarifies 34 -0101010110000 renders 34 -0101010110000 enforces 34 -0101010110000 omits 34 -0101010110000 complements 34 -0101010110000 plagues 35 -0101010110000 evaluates 35 -0101010110000 underlies 36 -0101010110000 undercuts 36 -0101010110000 inhibits 37 -0101010110000 embodies 37 -0101010110000 retails 37 -0101010110000 induces 37 -0101010110000 typifies 38 -0101010110000 restores 38 -0101010110000 complicates 38 -0101010110000 distinguishes 39 -0101010110000 revives 39 -0101010110000 disturbs 40 -0101010110000 fosters 40 -0101010110000 solves 41 -0101010110000 affords 42 -0101010110000 deprives 42 -0101010110000 connects 43 -0101010110000 distorts 43 -0101010110000 pleases 43 -0101010110000 upsets 44 -0101010110000 stimulates 44 -0101010110000 transmits 44 -0101010110000 entitling 44 -0101010110000 pervades 45 -0101010110000 alters 45 -0101010110000 instructs 45 -0101010110000 overlooks 45 -0101010110000 satisfies 47 -0101010110000 subsidizes 48 -0101010110000 confronts 49 -0101010110000 afflicts 50 -0101010110000 coordinates 51 -0101010110000 exposes 52 -0101010110000 paves 53 -0101010110000 bolsters 53 -0101010110000 defies 53 -0101010110000 detects 54 -0101010110000 compensates 54 -0101010110000 symbolizes 54 -0101010110000 scares 55 -0101010110000 investigates 55 -0101010110000 precludes 55 -0101010110000 encompasses 55 -0101010110000 divides 58 -0101010110000 accompanies 60 -0101010110000 explores 63 -0101010110000 incorporates 66 -0101010110000 contradicts 67 -0101010110000 surrounds 68 -0101010110000 destroys 68 -0101010110000 frees 68 -0101010110000 resolves 71 -0101010110000 depicts 71 -0101010110000 prompts 72 -0101010110000 analyzes 73 -0101010110000 undermines 75 -0101010110000 justifies 75 -0101010110000 exempts 75 -0101010110000 gathers 77 -0101010110000 eases 81 -0101010110000 bothers 84 -0101010110000 governs 84 -0101010110000 discourages 87 -0101010110000 triggers 88 -0101010110000 enhances 89 -0101010110000 separates 91 -0101010110000 authorizes 92 -0101010110000 reinforces 92 -0101010110000 forbids 99 -0101010110000 invites 102 -0101010110000 awaits 102 -0101010110000 lowers 109 -0101010110000 weakens 110 -0101010110000 establishes 120 -0101010110000 strengthens 125 -0101010110000 assures 125 -0101010110000 attracts 129 -0101010110000 saves 138 -0101010110000 entitles 143 -0101010110000 restricts 144 -0101010110000 insures 149 -0101010110000 kills 150 -0101010110000 clears 151 -0101010110000 imposes 164 -0101010110000 treats 172 -0101010110000 promotes 173 -0101010110000 improves 179 -0101010110000 excludes 181 -0101010110000 removes 183 -0101010110000 resembles 184 -0101010110000 replaces 185 -0101010110000 combines 194 -0101010110000 hurts 195 -0101010110000 eliminates 200 -0101010110000 manufactures 217 -0101010110000 regulates 237 -0101010110000 constitutes 242 -0101010110000 prevents 251 -0101010110000 enables 268 -0101010110000 protects 274 -0101010110000 encourages 294 -0101010110000 violates 307 -0101010110000 poses 350 -0101010110000 lets 373 -0101010110000 presents 425 -0101010110000 prohibits 437 -0101010110000 distributes 440 -0101010110000 affects 462 -0101010110000 reduces 468 -0101010110000 creates 569 -0101010110000 contains 866 -0101010110000 covers 979 -0101010110000 leaves 1449 -0101010110000 puts 1501 -0101010110000 allows 1861 -0101010110000 requires 2454 -0101010110000 gives 3009 -0101010110000 makes 9769 -0101010110000 provides 3050 -0101010110001 posseses 1 -0101010110001 Marathon. 1 -0101010110001 pre-breathe 1 -0101010110001 Televisor 1 -0101010110001 rehires 1 -0101010110001 tut-tuts 1 -0101010110001 product-purchase 1 -0101010110001 2,390,000 1 -0101010110001 incudes 1 -0101010110001 ghostwrite 1 -0101010110001 undershoot 1 -0101010110001 clomped 1 -0101010110001 reconnects 1 -0101010110001 Haag. 1 -0101010110001 News-Tribune 1 -0101010110001 respresents 1 -0101010110001 high-taxed 1 -0101010110001 WSCV-TV/Channel 1 -0101010110001 nonpermissible 1 -0101010110001 banana-pineapple 1 -0101010110001 meow 1 -0101010110001 Brown-baggers 1 -0101010110001 300-B4 1 -0101010110001 devlops 1 -0101010110001 rebalances 1 -0101010110001 2,521 1 -0101010110001 Hall. 1 -0101010110001 Serra. 1 -0101010110001 pro-private 1 -0101010110001 2,174,000 1 -0101010110001 enwraps 1 -0101010110001 doctor-dominated 1 -0101010110001 fissions 1 -0101010110001 9,957,530 1 -0101010110001 self-reflecting 1 -0101010110001 Washlet-style 1 -0101010110001 REAPED 1 -0101010110001 contitute 1 -0101010110001 joint-ventured 1 -0101010110001 disaffiliated 1 -0101010110001 circumnavigated 1 -0101010110001 2,526 1 -0101010110001 plys 1 -0101010110001 bench-presses 1 -0101010110001 outspends 2 -0101010110001 forsees 2 -0101010110001 recieved 2 -0101010110001 browses 2 -0101010110001 trounces 2 -0101010110001 refereed 2 -0101010110001 scatters 2 -0101010110001 pollinates 2 -0101010110001 diversifies 2 -0101010110001 securitizes 2 -0101010110001 amasses 2 -0101010110001 haberdashers 2 -0101010110001 grazes 2 -0101010110001 existent 2 -0101010110001 inverts 2 -0101010110001 adminsters 2 -0101010110001 eelgrass 2 -0101010110001 repatriates 3 -0101010110001 dulls 3 -0101010110001 declaims 3 -0101010110001 compresses 3 -0101010110001 unwrapped 3 -0101010110001 lavishes 3 -0101010110001 juxtaposes 3 -0101010110001 co-manages 3 -0101010110001 barnstormed 4 -0101010110001 disburses 4 -0101010110001 entices 4 -0101010110001 WBBM 4 -0101010110001 accredits 4 -0101010110001 enrolls 5 -0101010110001 Launches 5 -0101010110001 spearheads 5 -0101010110001 crams 6 -0101010110001 composes 6 -0101010110001 garners 7 -0101010110001 nurtures 7 -0101010110001 outsells 7 -0101010110001 refinances 7 -0101010110001 allots 8 -0101010110001 grasps 8 -0101010110001 formulates 8 -0101010110001 wholesales 9 -0101010110001 reminisces 9 -0101010110001 secures 13 -0101010110001 communicates 14 -0101010110001 co-owns 14 -0101010110001 bypasses 15 -0101010110001 infects 15 -0101010110001 reaps 16 -0101010110001 recycles 18 -0101010110001 fetches 19 -0101010110001 donates 19 -0101010110001 underwrites 19 -0101010110001 terminates 20 -0101010110001 refines 21 -0101010110001 deploys 22 -0101010110001 undergoes 22 -0101010110001 researches 23 -0101010110001 incurs 24 -0101010110001 designates 24 -0101010110001 dispenses 26 -0101010110001 accumulates 27 -0101010110001 originates 29 -0101010110001 classifies 29 -0101010110001 adjusts 35 -0101010110001 absorbs 35 -0101010110001 allocates 35 -0101010110001 restructures 36 -0101010110001 consolidates 38 -0101010110001 devises 40 -0101010110001 withdraws 46 -0101010110001 consumes 48 -0101010110001 installs 49 -0101010110001 arranges 51 -0101010110001 spans 52 -0101010110001 compiles 55 -0101010110001 possesses 62 -0101010110001 edits 63 -0101010110001 obtains 65 -0101010110001 advertises 68 -0101010110001 devotes 70 -0101010110001 occupies 80 -0101010110001 borrows 80 -0101010110001 supervises 81 -0101010110001 assembles 86 -0101010110001 underwrote 87 -0101010110001 administers 88 -0101010110001 negotiates 104 -0101010110001 lasts 120 -0101010110001 weighs 125 -0101010110001 delivers 144 -0101010110001 performs 152 -0101010110001 collects 177 -0101010110001 dominates 228 -0101010110001 generates 237 -0101010110001 conducts 247 -0101010110001 earns 253 -0101010110001 builds 412 -0101010110001 retains 427 -0101010110001 reaches 478 -0101010110001 handles 481 -0101010110001 develops 486 -0101010110001 oversees 486 -0101010110001 owes 490 -0101010110001 spends 532 -0101010110001 publishes 557 -0101010110001 acquires 594 -0101010110001 receives 618 -0101010110001 employs 643 -0101010110001 carries 839 -0101010110001 manages 880 -0101010110001 serves 888 -0101010110001 buys 890 -0101010110001 pays 1101 -0101010110001 produces 1264 -0101010110001 sells 2111 -0101010110001 runs 2170 -0101010110001 operates 2615 -0101010110001 represents 2981 -0101010110001 owns 5398 -0101010110001 holds 5255 -01010101100100 Torques 1 -01010101100100 BOMBARDED 1 -01010101100100 Carlton-Jones 1 -01010101100100 lip-syncs 1 -01010101100100 Geyser 1 -01010101100100 writhe 1 -01010101100100 hijacks 1 -01010101100100 adovocate 1 -01010101100100 176-cubic-foot 1 -01010101100100 mesmerizes 1 -01010101100100 driven-labeled 1 -01010101100100 9/2-1 1 -01010101100100 consitutes 1 -01010101100100 sparklingly 1 -01010101100100 Canchari 1 -01010101100100 manager-wife 1 -01010101100100 basely 1 -01010101100100 belives 1 -01010101100100 loks 1 -01010101100100 quadrangles 1 -01010101100100 long-timers 1 -01010101100100 infuriatingly 1 -01010101100100 pacifies 1 -01010101100100 Prodotti 1 -01010101100100 bravoed 1 -01010101100100 Castro-Munoz 1 -01010101100100 Bracamonte 1 -01010101100100 WINDOW 1 -01010101100100 perspired 1 -01010101100100 whosoever 1 -01010101100100 rhetorician 1 -01010101100100 fat-cholesterol 1 -01010101100100 reimplanting 1 -01010101100100 underlay 2 -01010101100100 hospitalizing 2 -01010101100100 daubed 2 -01010101100100 de-emphasizes 2 -01010101100100 hurdled 2 -01010101100100 peripherally 2 -01010101100100 renovates 2 -01010101100100 scandalizes 2 -01010101100100 forebode 2 -01010101100100 co-directed 2 -01010101100100 Manku 2 -01010101100100 disperses 3 -01010101100100 Recommends 3 -01010101100100 upstages 3 -01010101100100 contort 3 -01010101100100 portended 3 -01010101100100 flunks 5 -01010101100100 deducts 8 -01010101100100 conceals 12 -01010101100100 arouses 17 -01010101100100 presages 22 -01010101100100 evokes 51 -01010101100100 deems 66 -01010101100100 becomes 1728 -01010101100100 remains 5569 -01010101100100 became 4780 -010101011001010 sprucely 1 -010101011001010 one-putted 1 -010101011001010 dumbfounds 1 -010101011001010 lane-without 1 -010101011001010 Strabo 1 -010101011001010 encompassses 1 -010101011001010 half-expecting 1 -010101011001010 twines 1 -010101011001010 solders 1 -010101011001010 got-from 1 -010101011001010 Godwinand 1 -010101011001010 27,292 1 -010101011001010 DISLIKED 1 -010101011001010 re-target 1 -010101011001010 restringing 1 -010101011001010 near-lifelike 1 -010101011001010 demystifies 1 -010101011001010 misgauged 1 -010101011001010 definitiely 1 -010101011001010 jump-started 1 -010101011001010 certanly 1 -010101011001010 uncorks 1 -010101011001010 hibernates 1 -010101011001010 overrendered 1 -010101011001010 spraining 1 -010101011001010 Palin 1 -010101011001010 abrupty 1 -010101011001010 Upped 1 -010101011001010 Jackness 1 -010101011001010 personifying 1 -010101011001010 deregulates 1 -010101011001010 contravenes 2 -010101011001010 hefted 2 -010101011001010 Bailkin 2 -010101011001010 CONSIDERATIONS 2 -010101011001010 Covers 2 -010101011001010 convulse 2 -010101011001010 weds 2 -010101011001010 harmonizes 2 -010101011001010 camouflages 2 -010101011001010 LIMIT 2 -010101011001010 bobbled 2 -010101011001010 unpacks 2 -010101011001010 co-invented 2 -010101011001010 mopes 2 -010101011001010 Spent 2 -010101011001010 Ching-ling 2 -010101011001010 pedaled 2 -010101011001010 dirtiness 2 -010101011001010 scuttles 3 -010101011001010 tinkled 3 -010101011001010 Uehling 3 -010101011001010 relocates 4 -010101011001010 institutionalizes 4 -010101011001010 meditated 4 -010101011001010 berates 5 -010101011001010 unfurling 6 -010101011001010 etches 6 -010101011001010 flaunts 7 -010101011001010 totes 7 -010101011001010 wove 8 -010101011001010 wangled 8 -010101011001010 soothes 8 -010101011001010 croons 8 -010101011001010 readies 9 -010101011001010 Loved 9 -010101011001010 degrades 10 -010101011001010 oozes 11 -010101011001010 sipped 13 -010101011001010 braved 17 -010101011001010 heaved 17 -010101011001010 slams 20 -010101011001010 poked 21 -010101011001010 donned 26 -010101011001010 breathed 34 -010101011001010 hid 60 -010101011001010 ate 127 -010101011001010 wears 255 -010101011001010 deserves 341 -010101011001010 got 8419 -010101011001010 gets 2779 -010101011001011 Mondalizes 1 -010101011001011 out-earns 1 -010101011001011 stay-fresh 1 -010101011001011 adult-only 1 -010101011001011 astounds 1 -010101011001011 jilts 1 -010101011001011 tooks 1 -010101011001011 disgusts 1 -010101011001011 doglegs 1 -010101011001011 canonizes 1 -010101011001011 out-snatched 1 -010101011001011 twohanded 1 -010101011001011 neo-Marxists 1 -010101011001011 hagiographical 1 -010101011001011 compatibly 1 -010101011001011 funnelled 1 -010101011001011 delimited 1 -010101011001011 not-so-minor 1 -010101011001011 money-jingling 1 -010101011001011 ventilates 1 -010101011001011 intoxicates 1 -010101011001011 behooved 1 -010101011001011 water-soaked 1 -010101011001011 ousts 1 -010101011001011 repulses 1 -010101011001011 four-stanza 1 -010101011001011 stupefies 1 -010101011001011 reassembles 1 -010101011001011 moseys 1 -010101011001011 leapfrogs 1 -010101011001011 air-expressed 1 -010101011001011 crafstmen 1 -010101011001011 frizz 1 -010101011001011 misinforming 1 -010101011001011 many-leveled 1 -010101011001011 customizes 1 -010101011001011 well-arranged 1 -010101011001011 fuzzed 1 -010101011001011 rechristens 1 -010101011001011 discretely 1 -010101011001011 flounces 1 -010101011001011 unembarrassedly 1 -010101011001011 demoralizes 1 -010101011001011 emptiest 1 -010101011001011 superimposes 2 -010101011001011 sublimated 2 -010101011001011 procures 2 -010101011001011 sandblasted 2 -010101011001011 pre-dates 2 -010101011001011 anguishes 2 -010101011001011 expropriates 2 -010101011001011 nabs 2 -010101011001011 immune-based 2 -010101011001011 piercingly 2 -010101011001011 wangle 2 -010101011001011 recharges 3 -010101011001011 flails 3 -010101011001011 confiscates 3 -010101011001011 freshens 3 -010101011001011 chugs 3 -010101011001011 ensnares 3 -010101011001011 lorded 3 -010101011001011 vibrated 3 -010101011001011 papery 3 -010101011001011 accosts 3 -010101011001011 undoes 3 -010101011001011 fusses 4 -010101011001011 embeds 4 -010101011001011 outran 4 -010101011001011 humiliates 4 -010101011001011 forfeits 4 -010101011001011 constricts 4 -010101011001011 munches 4 -010101011001011 yanks 4 -010101011001011 sews 4 -010101011001011 evinces 4 -010101011001011 flatters 4 -010101011001011 clapped 4 -010101011001011 redid 4 -010101011001011 wrings 4 -010101011001011 legalizes 4 -010101011001011 evades 5 -010101011001011 decorates 5 -010101011001011 gloated 5 -010101011001011 loathes 5 -010101011001011 buries 6 -010101011001011 digests 6 -010101011001011 refocuses 6 -010101011001011 whisks 6 -010101011001011 erects 7 -010101011001011 fussed 7 -010101011001011 stuffs 8 -010101011001011 exhorts 8 -010101011001011 glosses 8 -010101011001011 embarrasses 8 -010101011001011 distills 8 -010101011001011 sewed 9 -010101011001011 staggers 10 -010101011001011 outdid 10 -010101011001011 forgave 11 -010101011001011 rubs 11 -010101011001011 amazes 13 -010101011001011 begat 15 -010101011001011 mistook 15 -010101011001011 mulls 16 -010101011001011 overran 16 -010101011001011 seizes 16 -010101011001011 loosens 17 -010101011001011 slaps 19 -010101011001011 corrects 21 -010101011001011 injects 21 -010101011001011 regains 23 -010101011001011 pegs 25 -010101011001011 persuades 25 -010101011001011 appoints 25 -010101011001011 cancels 27 -010101011001011 tosses 29 -010101011001011 betrays 31 -010101011001011 overrode 32 -010101011001011 wields 34 -010101011001011 prolongs 35 -010101011001011 inspires 38 -010101011001011 waved 39 -010101011001011 dissolves 43 -010101011001011 stirs 46 -010101011001011 presides 56 -010101011001011 overcame 67 -010101011001011 commits 69 -010101011001011 eats 73 -010101011001011 lifts 81 -010101011001011 undertook 115 -010101011001011 introduces 116 -010101011001011 underwent 117 -010101011001011 stole 125 -010101011001011 lends 127 -010101011001011 froze 129 -010101011001011 throws 152 -010101011001011 pushes 161 -010101011001011 shook 162 -010101011001011 reminds 183 -010101011001011 enters 201 -010101011001011 wore 226 -010101011001011 fills 262 -010101011001011 completes 292 -010101011001011 draws 346 -010101011001011 sends 399 -010101011001011 drove 680 -010101011001011 drew 817 -010101011001011 brings 994 -010101011001011 keeps 1060 -010101011001011 takes 3366 -010101011001011 gave 4461 -010101011001011 took 8657 -01010101100110 short-oils 1 -01010101100110 hectors 1 -01010101100110 Nagi 1 -01010101100110 anglicized 1 -01010101100110 tiger-teamed 1 -01010101100110 kneads 1 -01010101100110 rewrap 1 -01010101100110 disassociates 1 -01010101100110 codirected 1 -01010101100110 annihilates 1 -01010101100110 impunes 1 -01010101100110 Confessing 1 -01010101100110 code-names 1 -01010101100110 short-shrifts 1 -01010101100110 Dukakisas 1 -01010101100110 overexerts 1 -01010101100110 co-insure 1 -01010101100110 out-flanked 1 -01010101100110 renationalized 1 -01010101100110 italicizes 1 -01010101100110 recrossed 1 -01010101100110 spritzed 1 -01010101100110 pillaged 1 -01010101100110 coauthored 1 -01010101100110 cadging 1 -01010101100110 clinks 1 -01010101100110 interweaves 1 -01010101100110 foreswore 1 -01010101100110 reshuffles 1 -01010101100110 Passe 1 -01010101100110 mangages 1 -01010101100110 readjusts 1 -01010101100110 Sheinon 1 -01010101100110 sub-licenses 1 -01010101100110 overrates 1 -01010101100110 self-boodling 1 -01010101100110 swats 1 -01010101100110 adminstered 1 -01010101100110 deprecates 1 -01010101100110 hoboed 1 -01010101100110 re-elects 1 -01010101100110 beseeches 1 -01010101100110 superintended 1 -01010101100110 MONTHLY 1 -01010101100110 scalded 1 -01010101100110 misplaces 1 -01010101100110 scrawls 1 -01010101100110 reorchestrated 1 -01010101100110 sentimentalizes 1 -01010101100110 mentionable 1 -01010101100110 flays 1 -01010101100110 importunes 1 -01010101100110 accelerates. 1 -01010101100110 bilks 1 -01010101100110 hand-printed 1 -01010101100110 assassinates 1 -01010101100110 marvelled 1 -01010101100110 recuses 1 -01010101100110 captained 1 -01010101100110 underestmated 1 -01010101100110 scants 1 -01010101100110 detoxified 1 -01010101100110 disinflate 1 -01010101100110 comprehends 1 -01010101100110 terrifies 1 -01010101100110 demonopolizes 1 -01010101100110 RELAXES 1 -01010101100110 mail-ordered 2 -01010101100110 submerges 2 -01010101100110 divined 2 -01010101100110 misconstrues 2 -01010101100110 misinforms 2 -01010101100110 chain-smokes 2 -01010101100110 mistrusts 2 -01010101100110 infiltrates 2 -01010101100110 inhabits 2 -01010101100110 hurls 2 -01010101100110 deludes 2 -01010101100110 stuccoed 2 -01010101100110 overdoes 2 -01010101100110 oversteps 2 -01010101100110 micromanages 2 -01010101100110 flipflopped 2 -01010101100110 reviles 2 -01010101100110 pampers 2 -01010101100110 Dazs 2 -01010101100110 serenades 2 -01010101100110 curated 2 -01010101100110 peruses 2 -01010101100110 junks 2 -01010101100110 clinches 2 -01010101100110 breeched 2 -01010101100110 flub 2 -01010101100110 tut-tutted 2 -01010101100110 disentangles 2 -01010101100110 populates 2 -01010101100110 diffuses 2 -01010101100110 denigrates 2 -01010101100110 intertwines 2 -01010101100110 jiggled 2 -01010101100110 reinjured 2 -01010101100110 sabotages 3 -01010101100110 entrusts 3 -01010101100110 relives 3 -01010101100110 honks 3 -01010101100110 forsakes 3 -01010101100110 fondling 3 -01010101100110 interrogates 3 -01010101100110 postulated 3 -01010101100110 proferred 3 -01010101100110 divines 3 -01010101100110 suctions 3 -01010101100110 leavens 3 -01010101100110 mans 3 -01010101100110 decisioned 3 -01010101100110 retraces 3 -01010101100110 bares 4 -01010101100110 divulges 4 -01010101100110 rebuts 4 -01010101100110 enumerates 4 -01010101100110 blushes 4 -01010101100110 castigates 4 -01010101100110 ruffles 4 -01010101100110 rehearses 4 -01010101100110 foots 4 -01010101100110 jabbed 4 -01010101100110 spouts 4 -01010101100110 DEMANDED 4 -01010101100110 resurrects 4 -01010101100110 re-emphasized 4 -01010101100110 imparts 4 -01010101100110 obeys 4 -01010101100110 saddles 4 -01010101100110 strangles 4 -01010101100110 damns 4 -01010101100110 envies 4 -01010101100110 reconstructs 4 -01010101100110 renames 5 -01010101100110 subtracts 5 -01010101100110 paraphrases 5 -01010101100110 dedicates 5 -01010101100110 crisscrosses 5 -01010101100110 quantifies 5 -01010101100110 babbles 5 -01010101100110 mischaracterizes 5 -01010101100110 whacks 5 -01010101100110 wreaks 5 -01010101100110 retrieves 5 -01010101100110 frequents 5 -01010101100110 visualizes 5 -01010101100110 acquits 5 -01010101100110 busied 5 -01010101100110 CONFIRMED 5 -01010101100110 congratulates 5 -01010101100110 cofounded 5 -01010101100110 redefines 5 -01010101100110 laces 5 -01010101100110 weeps 5 -01010101100110 disavows 6 -01010101100110 forgives 6 -01010101100110 attains 6 -01010101100110 hollers 6 -01010101100110 lauds 6 -01010101100110 chews 6 -01010101100110 enlists 6 -01010101100110 hoists 6 -01010101100110 articulates 6 -01010101100110 cabled 6 -01010101100110 restates 6 -01010101100110 recreates 6 -01010101100110 re-creates 6 -01010101100110 disqualifies 6 -01010101100110 musters 6 -01010101100110 rasps 6 -01010101100110 lambastes 7 -01010101100110 crushes 7 -01010101100110 savors 7 -01010101100110 disregards 7 -01010101100110 cherishes 7 -01010101100110 flings 7 -01010101100110 despises 7 -01010101100110 heeds 7 -01010101100110 inaugurates 7 -01010101100110 implores 7 -01010101100110 befriends 7 -01010101100110 outgrew 7 -01010101100110 bluffed 7 -01010101100110 manipulates 7 -01010101100110 admonishes 8 -01010101100110 monopolizes 8 -01010101100110 amuses 8 -01010101100110 sculpts 8 -01010101100110 bemoans 8 -01010101100110 dissects 8 -01010101100110 shoves 8 -01010101100110 forsook 8 -01010101100110 sprinkles 8 -01010101100110 worships 8 -01010101100110 forgoes 8 -01010101100110 belittles 9 -01010101100110 radiates 9 -01010101100110 divests 9 -01010101100110 adores 9 -01010101100110 brandishes 9 -01010101100110 DECLARED 9 -01010101100110 Runs 9 -01010101100110 derides 10 -01010101100110 utters 10 -01010101100110 snorted 10 -01010101100110 relinquishes 10 -01010101100110 pronounces 10 -01010101100110 ridicules 10 -01010101100110 disparages 11 -01010101100110 liquidates 11 -01010101100110 nominates 11 -01010101100110 interjects 11 -01010101100110 distrusts 11 -01010101100110 abhors 11 -01010101100110 spurns 12 -01010101100110 dispels 12 -01010101100110 extols 12 -01010101100110 scorns 12 -01010101100110 narrates 12 -01010101100110 shaves 13 -01010101100110 invents 13 -01010101100110 coaxes 13 -01010101100110 sips 13 -01010101100110 redeems 13 -01010101100110 cultivates 13 -01010101100110 breathes 13 -01010101100110 whooped 14 -01010101100110 co-wrote 14 -01010101100110 personifies 14 -01010101100110 decries 14 -01010101100110 waxes 14 -01010101100110 reiterates 14 -01010101100110 brightens 15 -01010101100110 fancies 15 -01010101100110 downplays 15 -01010101100110 discards 15 -01010101100110 scrutinizes 15 -01010101100110 craves 16 -01010101100110 mocks 16 -01010101100110 indulges 17 -01010101100110 woos 17 -01010101100110 denounces 17 -01010101100110 invokes 17 -01010101100110 sidesteps 17 -01010101100110 presumes 18 -01010101100110 chides 18 -01010101100110 equates 18 -01010101100110 exudes 18 -01010101100110 disdains 19 -01010101100110 recites 19 -01010101100110 covets 20 -01010101100110 underestimates 21 -01010101100110 espouses 21 -01010101100110 assesses 21 -01010101100110 tackles 21 -01010101100110 inherits 22 -01010101100110 rewrote 23 -01010101100110 muttered 23 -01010101100110 swore 24 -01010101100110 certifies 24 -01010101100110 summarizes 24 -01010101100110 softens 25 -01010101100110 ponders 25 -01010101100110 prescribes 27 -01010101100110 smokes 27 -01010101100110 submits 28 -01010101100110 abandons 28 -01010101100110 resents 28 -01010101100110 accomplishes 29 -01010101100110 unveils 30 -01010101100110 marries 30 -01010101100110 deplores 31 -01010101100110 forgets 32 -01010101100110 sues 32 -01010101100110 interrupts 33 -01010101100110 interprets 33 -01010101100110 applauds 34 -01010101100110 exemplifies 34 -01010101100110 chronicles 35 -01010101100110 eschews 36 -01010101100110 imagines 37 -01010101100110 conveys 37 -01010101100110 relishes 37 -01010101100110 selects 39 -01010101100110 quits 41 -01010101100110 begs 41 -01010101100110 appreciates 43 -01010101100110 celebrates 44 -01010101100110 dislikes 47 -01010101100110 contemplates 49 -01010101100110 resists 50 -01010101100110 yells 51 -01010101100110 shuns 51 -01010101100110 foresaw 52 -01010101100110 touts 52 -01010101100110 embraces 54 -01010101100110 prides 54 -01010101100110 preaches 56 -01010101100110 perceives 57 -01010101100110 attends 58 -01010101100110 admires 59 -01010101100110 hates 60 -01010101100110 achieves 65 -01010101100110 drank 65 -01010101100110 likens 66 -01010101100110 captures 69 -01010101100110 characterizes 70 -01010101100110 adopts 74 -01010101100110 proclaims 78 -01010101100110 discovers 79 -01010101100110 shrugs 79 -01010101100110 examines 79 -01010101100110 welcomes 88 -01010101100110 endorses 89 -01010101100110 recounts 91 -01010101100110 discusses 93 -01010101100110 sang 95 -01010101100110 pursues 99 -01010101100110 criticizes 103 -01010101100110 finishes 106 -01010101100110 discloses 107 -01010101100110 portrays 108 -01010101100110 learns 114 -01010101100110 identifies 117 -01010101100110 expresses 119 -01010101100110 mentions 123 -01010101100110 sings 126 -01010101100110 oversaw 133 -01010101100110 hears 133 -01010101100110 realizes 148 -01010101100110 defines 153 -01010101100110 cares 154 -01010101100110 determines 158 -01010101100110 misses 165 -01010101100110 avoids 172 -01010101100110 envisions 175 -01010101100110 regards 183 -01010101100110 directs 184 -01010101100110 dismisses 188 -01010101100110 defends 194 -01010101100110 announces 201 -01010101100110 ignores 212 -01010101100110 loves 223 -01010101100110 emphasizes 233 -01010101100110 rejects 235 -01010101100110 stresses 237 -01010101100110 accepts 244 -01010101100110 blames 255 -01010101100110 urges 256 -01010101100110 wonders 256 -01010101100110 enjoys 267 -01010101100110 teaches 274 -01010101100110 boasts 303 -01010101100110 remembers 315 -01010101100110 recognizes 317 -01010101100110 advises 318 -01010101100110 understands 330 -01010101100110 reads 342 -01010101100110 recommends 378 -01010101100110 loses 418 -01010101100110 assumes 425 -01010101100110 lacks 478 -01010101100110 meets 569 -01010101100110 opposes 633 -01010101100110 wins 655 -01010101100110 describes 725 -01010101100110 favors 771 -01010101100110 denies 805 -01010101100110 supports 825 -01010101100110 feels 835 -01010101100110 considers 862 -01010101100110 writes 961 -01010101100110 finds 1072 -01010101100110 sees 1841 -01010101100110 knows 2097 -01010101100110 thinks 2316 -01010101100110 saw 2638 -01010101100110 believes 4484 -01010101100110 wrote 2663 -010101011001110 respresented 1 -010101011001110 87-42 1 -010101011001110 underrepresents 1 -010101011001110 graphed 1 -010101011001110 ACKNOWLEDGE 1 -010101011001110 node 1 -010101011001110 atomizer 1 -010101011001110 datelined 1 -010101011001110 cockateel 1 -010101011001110 237,800 1 -010101011001110 8716058 1 -010101011001110 bandwaves 1 -010101011001110 dency 1 -010101011001110 piercer 1 -010101011001110 endears 1 -010101011001110 pestle 1 -010101011001110 37,767 1 -010101011001110 12-session 1 -010101011001110 CONCUR 1 -010101011001110 pictureas 1 -010101011001110 clockings 1 -010101011001110 boot-maker 1 -010101011001110 obfuscates 1 -010101011001110 out-weigh 1 -010101011001110 channel-witching 1 -010101011001110 suggesets 1 -010101011001110 trotter 1 -010101011001110 keypads 1 -010101011001110 SPECIFY 1 -010101011001110 tailgunner 1 -010101011001110 impeaches 2 -010101011001110 technicalese 2 -010101011001110 reemphasized 2 -010101011001110 spicing 2 -010101011001110 ecoles 2 -010101011001110 assuages 3 -010101011001110 rouses 3 -010101011001110 equalled 3 -010101011001110 exacts 4 -010101011001110 swoons 4 -010101011001110 posits 5 -010101011001110 skews 5 -010101011001110 cruncher 6 -010101011001110 delineates 6 -010101011001110 silences 8 -010101011001110 clogs 9 -010101011001110 formalizes 10 -010101011001110 relievers 13 -010101011001110 engenders 14 -010101011001110 picturing 16 -010101011001110 signifies 26 -010101011001110 underlines 50 -010101011001110 stipulates 53 -010101011001110 sheds 55 -010101011001110 portends 58 -010101011001110 specifies 64 -010101011001110 ensures 133 -010101011001110 reveals 243 -010101011001110 demonstrates 274 -010101011001110 implies 279 -010101011001110 confirms 311 -010101011001110 illustrates 458 -010101011001110 indicates 1515 -010101011001110 suggests 2436 -010101011001110 showing 2539 -010101011001110 shows 4577 -010101011001110 showed 3834 -010101011001111 TBS/Audubon/WETA-TV 1 -010101011001111 tantalizes 1 -010101011001111 Berthe 1 -010101011001111 wounded-puppy 1 -010101011001111 sensitive-type 1 -010101011001111 MORALITY 1 -010101011001111 Launch. 1 -010101011001111 A&E/BBC 1 -010101011001111 Teen-Ager 1 -010101011001111 neo-Palladian 1 -010101011001111 well-sourced 1 -010101011001111 INTERVIEWS 1 -010101011001111 exludes 1 -010101011001111 anti-Manhattan 1 -010101011001111 loan-pricing 1 -010101011001111 link-and 1 -010101011001111 Endures 1 -010101011001111 outranks 1 -010101011001111 preliterate 1 -010101011001111 Swallowed 1 -010101011001111 two-faceted 1 -010101011001111 Engelbert 1 -010101011001111 Loin 1 -010101011001111 55-64 1 -010101011001111 dissuades 1 -010101011001111 soft-mindedness 1 -010101011001111 Blossomed 1 -010101011001111 Vale/Of 1 -010101011001111 energizes 1 -010101011001111 pact-under 1 -010101011001111 Western-subsidized 1 -010101011001111 woolly-minded 1 -010101011001111 innovates 2 -010101011001111 Zazz 2 -010101011001111 extinguishes 2 -010101011001111 expels 2 -010101011001111 nips 3 -010101011001111 caresses 3 -010101011001111 Houdini 3 -010101011001111 V.V. 3 -010101011001111 mano 3 -010101011001111 trills 3 -010101011001111 perverts 3 -010101011001111 parries 3 -010101011001111 posited 4 -010101011001111 oppresses 4 -010101011001111 undergirding 4 -010101011001111 glisten 5 -010101011001111 evidences 5 -010101011001111 nullifies 6 -010101011001111 heals 7 -010101011001111 spoofs 7 -010101011001111 manifests 8 -010101011001111 strays 8 -010101011001111 neutralizes 9 -010101011001111 signified 10 -010101011001111 pinpoints 11 -010101011001111 presupposes 11 -010101011001111 lengthens 13 -010101011001111 cripples 13 -010101011001111 rewrites 13 -010101011001111 buttresses 14 -010101011001111 tailors 14 -010101011001111 connotes 15 -010101011001111 messes 17 -010101011001111 disguises 18 -010101011001111 augurs 23 -010101011001111 slashes 25 -010101011001111 intensifies 49 -010101011001111 accelerates 52 -010101011001111 entails 76 -010101011001111 echoes 85 -010101011001111 dictates 86 -010101011001111 reverses 88 -010101011001111 casts 125 -010101011001111 traces 151 -010101011001111 highlights 195 -010101011001111 proves 256 -010101011001111 fits 345 -010101011001111 meaning 989 -010101011001111 causes 997 -010101011001111 raises 1239 -010101011001111 ends 1318 -010101011001111 means 5022 -0101010110100 MARATHON 1 -0101010110100 wheedles 1 -0101010110100 fast-spawning 1 -0101010110100 Koapeng 1 -0101010110100 Hears 1 -0101010110100 wrinkle-removing 1 -0101010110100 nonpolluting 1 -0101010110100 Pashukanis 1 -0101010110100 babysits 1 -0101010110100 off-footnote 1 -0101010110100 Ornament 1 -0101010110100 Yongzhi 1 -0101010110100 cardboard-like 1 -0101010110100 bogeyed 1 -0101010110100 margin-buying 1 -0101010110100 remonstrates 1 -0101010110100 sermonizes 1 -0101010110100 garbles 1 -0101010110100 wau 1 -0101010110100 Jr 1 -0101010110100 blustered 1 -0101010110100 grovels 1 -0101010110100 surfs 1 -0101010110100 Saint-Fort 1 -0101010110100 cash-shy 1 -0101010110100 Quencher 1 -0101010110100 Seigal 1 -0101010110100 cogitate 1 -0101010110100 soft-soaps 1 -0101010110100 Cahier 1 -0101010110100 McClusky 1 -0101010110100 foreign-sponsored 1 -0101010110100 Jiahai 1 -0101010110100 SAGA 1 -0101010110100 Nightmares 1 -0101010110100 profit-poor 1 -0101010110100 exclams 1 -0101010110100 desponded 1 -0101010110100 double-bogeyed 1 -0101010110100 Vainglory 1 -0101010110100 FEAST 1 -0101010110100 TRENDS 1 -0101010110100 LIEDTKE 1 -0101010110100 convulses 1 -0101010110100 sports-talk 1 -0101010110100 overwrote 1 -0101010110100 non-adoption 1 -0101010110100 Loathing 1 -0101010110100 Dongchang 1 -0101010110100 half-animal 1 -0101010110100 Pengnian 1 -0101010110100 vilely 1 -0101010110100 rationalizes 1 -0101010110100 protrusive 1 -0101010110100 cackles 1 -0101010110100 EXIT 1 -0101010110100 superpessimists 1 -0101010110100 pie-in-the-skyish 1 -0101010110100 round-trips 1 -0101010110100 Meathead 1 -0101010110100 blubbers 1 -0101010110100 Wuon 1 -0101010110100 harrumphs 1 -0101010110100 Derails 1 -0101010110100 1866-1943 1 -0101010110100 moonbeams 1 -0101010110100 nepenthes 1 -0101010110100 Bingan 1 -0101010110100 preens 1 -0101010110100 emphazised 1 -0101010110100 warning-signals 1 -0101010110100 undiplomatically 1 -0101010110100 sure-footedness 1 -0101010110100 comanages 1 -0101010110100 habilitation 1 -0101010110100 proselytizes 1 -0101010110100 Guangwei 1 -0101010110100 photo-portrait 1 -0101010110100 Blackston 1 -0101010110100 unillusioned 1 -0101010110100 dinks 1 -0101010110100 counter-attacked 1 -0101010110100 lies. 1 -0101010110100 DOCTOR 1 -0101010110100 improvises 2 -0101010110100 BUYS 2 -0101010110100 Disagree 2 -0101010110100 goeth 2 -0101010110100 sulks 2 -0101010110100 dicta 2 -0101010110100 Orta 2 -0101010110100 Pavillion 2 -0101010110100 sass 2 -0101010110100 exhales 2 -0101010110100 daydreams 2 -0101010110100 soloed 2 -0101010110100 HESS 2 -0101010110100 Va 2 -0101010110100 stunk 2 -0101010110100 cajoles 2 -0101010110100 recollects 2 -0101010110100 chainsmokes 2 -0101010110100 propellors 2 -0101010110100 Mehren 2 -0101010110100 reconsiders 2 -0101010110100 Veruschka 2 -0101010110100 Sande 3 -0101010110100 bellum 3 -0101010110100 burbles 3 -0101010110100 re-shot 3 -0101010110100 warmups 3 -0101010110100 knows. 3 -0101010110100 Vows 3 -0101010110100 dreads 3 -0101010110100 averred 4 -0101010110100 grumps 6 -0101010110100 moors 7 -0101010110100 postulates 7 -0101010110100 jests 8 -0101010110100 reminisced 11 -0101010110100 surmises 11 -0101010110100 mused 11 -0101010110100 demurs 21 -0101010110100 opines 21 -0101010110100 avers 35 -0101010110100 chuckles 39 -0101010110100 concurs 58 -0101010110100 quipped 58 -0101010110100 whispers 61 -0101010110100 confesses 75 -0101010110100 responds 239 -0101010110100 replies 256 -0101010110100 counters 261 -0101010110100 replied 542 -0101010110100 agrees 1068 -0101010110100 added 14143 -0101010110100 adds 4999 -01010101101010 el-Beit 1 -01010101101010 eye-rollings 1 -01010101101010 Festschrift 1 -01010101101010 exorcises 1 -01010101101010 Holzschuher 1 -01010101101010 Bellotto 1 -01010101101010 nutsiness 1 -01010101101010 Firgau 1 -01010101101010 acknolwedged 1 -01010101101010 draglines 1 -01010101101010 grater 1 -01010101101010 sublayers 1 -01010101101010 inisted 1 -01010101101010 predicited 1 -01010101101010 thundershowers 1 -01010101101010 linalool 1 -01010101101010 1973-years 1 -01010101101010 demagogued 1 -01010101101010 syllabuses 1 -01010101101010 Nepomuk 1 -01010101101010 countercharged 1 -01010101101010 target-prices 1 -01010101101010 mangles 1 -01010101101010 bidets 1 -01010101101010 Fyt 1 -01010101101010 Ahram 1 -01010101101010 ackowledges 1 -01010101101010 Flad 1 -01010101101010 turbulently 1 -01010101101010 ations 1 -01010101101010 paper-industries 1 -01010101101010 X-MP12 1 -01010101101010 abolitionism 1 -01010101101010 incident-ridden 1 -01010101101010 Tijd 1 -01010101101010 88-67 1 -01010101101010 Bolden 1 -01010101101010 supersuckers 1 -01010101101010 a-hoping 1 -01010101101010 rescinds 2 -01010101101010 rants 2 -01010101101010 jested 2 -01010101101010 Honglin 3 -01010101101010 hypothesizes 4 -01010101101010 testifed 5 -01010101101010 editorializes 5 -01010101101010 wailed 8 -01010101101010 murmured 8 -01010101101010 snipes 8 -01010101101010 exulted 9 -01010101101010 rhapsodizes 9 -01010101101010 hypothesized 10 -01010101101010 intimated 12 -01010101101010 griped 13 -01010101101010 bellowed 15 -01010101101010 surmised 16 -01010101101010 crowed 17 -01010101101010 acknowleged 17 -01010101101010 marveled 18 -01010101101010 howled 18 -01010101101010 theorizes 19 -01010101101010 groused 19 -01010101101010 editorialized 19 -01010101101010 sniffed 26 -01010101101010 fumed 27 -01010101101010 theorized 28 -01010101101010 gambled 34 -01010101101010 grumbled 34 -01010101101010 retorted 39 -01010101101010 opined 39 -01010101101010 brags 40 -01010101101010 confided 51 -01010101101010 fretted 55 -01010101101010 lamented 57 -01010101101010 reckons 60 -01010101101010 decreed 68 -01010101101010 concurred 76 -01010101101010 speculates 78 -01010101101010 joked 96 -01010101101010 frets 100 -01010101101010 boasted 126 -01010101101010 reasoned 158 -01010101101010 remarked 158 -01010101101010 calculates 194 -01010101101010 countered 209 -01010101101010 cautions 226 -01010101101010 commented 226 -01010101101010 doubted 253 -01010101101010 hinted 376 -01010101101010 observed 504 -01010101101010 concludes 544 -01010101101010 cautioned 634 -01010101101010 admits 644 -01010101101010 reiterated 651 -01010101101010 emphasized 738 -01010101101010 stressed 746 -01010101101010 feared 783 -01010101101010 acknowledges 793 -01010101101010 conceded 812 -01010101101010 maintains 842 -01010101101010 speculated 854 -01010101101010 alleges 952 -01010101101010 testified 979 -01010101101010 contended 981 -01010101101010 explained 1045 -01010101101010 insists 1046 -01010101101010 asserted 1187 -01010101101010 insisted 1210 -01010101101010 predicts 1251 -01010101101010 complained 1354 -01010101101010 argues 1498 -01010101101010 acknowledged 1727 -01010101101010 contends 1773 -01010101101010 claimed 1799 -01010101101010 recommended 1813 -01010101101010 concluded 1838 -01010101101010 warned 1960 -01010101101010 argued 2253 -01010101101010 confirmed 2588 -01010101101010 predicted 3008 -01010101101010 noted 5169 -01010101101010 suggested 3201 -01010101101011 absented 1 -01010101101011 notifified 1 -01010101101011 undertsood 1 -01010101101011 bandanas 1 -01010101101011 recommits 1 -01010101101011 tape-recordings 1 -01010101101011 re-paid 1 -01010101101011 gorged 2 -01010101101011 wormed 2 -01010101101011 Nilde 2 -01010101101011 flagellating 2 -01010101101011 insinuated 3 -01010101101011 dissociated 3 -01010101101011 extricated 3 -01010101101011 vitiated 3 -01010101101011 belched 4 -01010101101011 ingratiated 4 -01010101101011 outsmarted 4 -01010101101011 tweaked 5 -01010101101011 disassociated 5 -01010101101011 signalled 6 -01010101101011 prophesied 6 -01010101101011 disclaims 7 -01010101101011 availed 7 -01010101101011 rebutted 8 -01010101101011 perjured 9 -01010101101011 recused 15 -01010101101011 disclaimed 16 -01010101101011 reasserted 23 -01010101101011 recanted 25 -01010101101011 renounced 30 -01010101101011 prided 34 -01010101101011 distanced 34 -01010101101011 regretted 38 -01010101101011 sensed 75 -01010101101011 ensured 93 -01010101101011 proclaimed 194 -01010101101011 circulated 275 -01010101101011 protested 293 -01010101101011 signaled 393 -01010101101011 noticed 406 -01010101101011 revealed 463 -01010101101011 figured 599 -01010101101011 demonstrated 660 -01010101101011 demanded 840 -01010101101011 admitted 941 -01010101101011 assumed 1036 -01010101101011 maintained 1134 -01010101101011 discovered 1515 -01010101101011 ruled 2699 -01010101101011 found 8999 -01010101101011 denied 3191 -01010101101100 castelike 1 -01010101101100 Technion 1 -01010101101100 Massport-type 1 -01010101101100 stock-accumulation 1 -01010101101100 idemnity 1 -01010101101100 pay-for-knowledge 1 -01010101101100 punched-in 1 -01010101101100 RADIATOR 1 -01010101101100 super-saver 1 -01010101101100 zero-coinsurance 1 -01010101101100 genteeler 1 -01010101101100 Omegas 1 -01010101101100 ASSOCIATIONS 1 -01010101101100 DEBT-RELIEF 1 -01010101101100 restaffed 1 -01010101101100 line-drawers 1 -01010101101100 energy-tax 1 -01010101101100 cafeteria-benefit 1 -01010101101100 no-energy 1 -01010101101100 65,144 1 -01010101101100 debt-syndication 1 -01010101101100 frequent-buyer 1 -01010101101100 decribes 2 -01010101101100 annnounced 2 -01010101101100 Betacam 2 -01010101101100 value-maximizing 2 -01010101101100 SUSPENDED 3 -01010101101100 DISCLOSED 3 -01010101101100 anounced 3 -01010101101100 MAPS 5 -01010101101100 computes 5 -01010101101100 stock-rights 5 -01010101101100 ANNOUNCED 13 -01010101101100 REACHED 15 -01010101101100 announced 10730 -01010101101100 unveiled 723 -01010101101101 parodic 1 -01010101101101 graduate/ex-law 1 -01010101101101 2915 1 -01010101101101 addressed. 1 -01010101101101 AGVET 1 -01010101101101 more-controlled 1 -01010101101101 gonfalon 1 -01010101101101 Mapimpianti 1 -01010101101101 Dojo 1 -01010101101101 Strafford 1 -01010101101101 BISF 1 -01010101101101 Unf. 1 -01010101101101 Unfrn. 1 -01010101101101 Bandido 1 -01010101101101 re-regulates 1 -01010101101101 replow 1 -01010101101101 incarnated 1 -01010101101101 Heartbook 1 -01010101101101 Logabax 1 -01010101101101 softwoods 1 -01010101101101 80X 1 -01010101101101 Mihajlov 1 -01010101101101 Gesselshaft 1 -01010101101101 Abeto 1 -01010101101101 overproduces 1 -01010101101101 EFE 1 -01010101101101 unrevealed 1 -01010101101101 Qaboos 1 -01010101101101 Abderahmane 1 -01010101101101 Harkabi 1 -01010101101101 System/PCW-1 1 -01010101101101 unvisualizable 1 -01010101101101 LGFE 1 -01010101101101 Moriches 1 -01010101101101 Euralliance 1 -01010101101101 drought-propelled 1 -01010101101101 unstraps 1 -01010101101101 Gambier 1 -01010101101101 cholangitis 1 -01010101101101 Teresina 1 -01010101101101 2-loss 2 -01010101101101 Awards-type 2 -01010101101101 Ogonek 2 -01010101101101 reported 16784 -01010101101101 written-off 4 -01010101101110 multibillion-mark 1 -01010101101110 Clarins-Lanvin 1 -01010101101110 Coke-G&W 1 -01010101101110 panic-fueled 1 -01010101101110 Conquest-Cenergy 1 -01010101101110 heavist 1 -01010101101110 inflation-rate 1 -01010101101110 peach-and-gilt 1 -01010101101110 Senate-Commons 1 -01010101101110 federalizes 1 -01010101101110 Bass-sponsored 1 -01010101101110 staff-proposed 1 -01010101101110 Harsher 1 -01010101101110 GE-Thomson 1 -01010101101110 Isenheim 1 -01010101101110 pre-expiration 1 -01010101101110 Pinball 1 -01010101101110 1376 1 -01010101101110 copper-foil 1 -01010101101110 IEWJ 1 -01010101101110 hurricane-panic 1 -01010101101110 Soviet-Hungarian 1 -01010101101110 superaggressive 1 -01010101101110 industrial-vehicles 1 -01010101101110 flower-bedecked 1 -01010101101110 RepublicBank-InterFirst 1 -01010101101110 cross-hatched 1 -01010101101110 artifical 1 -01010101101110 celebrity-laden 1 -01010101101110 Vietnamese-Soviet 1 -01010101101110 revolte 1 -01010101101110 AT&T-requested 1 -01010101101110 rock-film 1 -01010101101110 Aeronica 1 -01010101101110 ITT/CGE 1 -01010101101110 Corp.a 1 -01010101101110 Guinness/Distillers 1 -01010101101110 neo-rococo 1 -01010101101110 Pacific-Overnite 1 -01010101101110 3,300-foot 1 -01010101101110 air-pressure 1 -01010101101110 cable-channel 1 -01010101101110 23,400 1 -01010101101110 96-cent-a-bushel 1 -01010101101110 less-humid 1 -01010101101110 mould 1 -01010101101110 television-dictated 1 -01010101101110 Nord-Highland 1 -01010101101110 freight-passenger 1 -01010101101110 Korean-airliner 1 -01010101101110 3.9-point 1 -01010101101110 shareholder-payout 1 -01010101101110 underenforces 1 -01010101101110 recently-filed 1 -01010101101110 Johnson-Mundell 1 -01010101101110 highest-capacity 1 -01010101101110 dog-rose 1 -01010101101110 median-income 1 -01010101101110 4,235,000 1 -01010101101110 blue/white 1 -01010101101110 1910-29 1 -01010101101110 fist-and-rifle 1 -01010101101110 Nippon-Inland 1 -01010101101110 Gothamite 1 -01010101101110 Coniston-Gillette 1 -01010101101110 13,008 1 -01010101101110 minimum-age 2 -01010101101110 one-syllable 2 -01010101101110 IBM-Chen 2 -01010101101110 USAir-PSA 2 -01010101101110 Jeep-making 2 -01010101101110 American-AirCal 2 -01010101101110 TAN 2 -01010101101110 Onoda-Brierley 2 -01010101101110 U.S.-brokered 2 -01010101101110 SF-SP 2 -01010101101110 Robins-Rorer 2 -01010101101110 long-anticipated 2 -01010101101110 Peat-KMG 3 -01010101101110 late-March 3 -01010101101110 team-concept 3 -01010101101110 twice-delayed 3 -01010101101110 Thatcher-style 3 -01010101101110 nine-day-old 4 -01010101101110 Chandlers 4 -01010101101110 now-notorious 4 -01010101101110 transurethral 4 -01010101101110 Libera 4 -01010101101110 VAX-station 4 -01010101101110 Presque 5 -01010101101110 now-completed 5 -01010101101110 star-crossed 6 -01010101101110 almost-completed 8 -01010101101110 much-delayed 15 -01010101101110 FTS 23 -01010101101110 bylaw 31 -01010101101110 proposed 12035 -01010101101110 planned 5469 -010101011011110 once-dry 1 -010101011011110 noodlings 1 -010101011011110 architectwhat 1 -010101011011110 instrinsic 1 -010101011011110 constuctive 1 -010101011011110 highwax 1 -010101011011110 PLEADED 1 -010101011011110 Boetcker 1 -010101011011110 unascertainable 1 -010101011011110 1s 1 -010101011011110 real-market 1 -010101011011110 ensnaring 1 -010101011011110 not-very-exciting 1 -010101011011110 rain-gutter 1 -010101011011110 unsexy 1 -010101011011110 even-earlier 1 -010101011011110 PERVADES 1 -010101011011110 seven-mile-long 1 -010101011011110 WCBC 1 -010101011011110 toughed 2 -010101011011110 high-sodium 2 -010101011011110 controverted 2 -010101011011110 pled 8 -010101011011110 pleads 48 -010101011011110 stipulated 97 -010101011011110 widens 236 -010101011011110 implied 323 -010101011011110 stated 1074 -010101011011110 pleaded 1229 -010101011011110 indicated 5112 -010101011011111 DISCLOSURES 1 -010101011011111 unknownprobably 1 -010101011011111 operating-budget 1 -010101011011111 deficitof 1 -010101011011111 adduces 1 -010101011011111 almost-crushing 1 -010101011011111 123.33 1 -010101011011111 unbridgeable 1 -010101011011111 18-cent-a-share 1 -010101011011111 tithed 1 -010101011011111 export-favorable 1 -010101011011111 Excedrin-sized 1 -010101011011111 officiate 1 -010101011011111 Gaullists 2 -010101011011111 FUME 2 -010101011011111 armrest 2 -010101011011111 interpolated 2 -010101011011111 Creek-related 2 -010101011011111 unrevised 4 -010101011011111 upward-revised 4 -010101011011111 indictable 5 -010101011011111 forecasted 19 -010101011011111 appraised 91 -010101011011111 approximate 138 -010101011011111 anticipated 1464 -010101011011111 estimated 7422 -010101011011111 projected 1787 -010101011100 re-accelerated 1 -010101011100 1984-and 1 -010101011100 WTVJ-Channel 1 -010101011100 Contribute 1 -010101011100 CONFORM 1 -010101011100 beta-type 1 -010101011100 Vladimirskaya 1 -010101011100 4x4 1 -010101011100 hydromatic 1 -010101011100 Stuermer. 1 -010101011100 KMEX-TV/Channel 1 -010101011100 5,308.5 1 -010101011100 12,410.8 1 -010101011100 3,460.8 1 -010101011100 yen-about 1 -010101011100 farmer. 1 -010101011100 worker. 1 -010101011100 SPRINTS 1 -010101011100 Dance. 1 -010101011100 29,234.5 1 -010101011100 16,490.4 1 -010101011100 8,281.7 1 -010101011100 7.252.5 1 -010101011100 14,022.7 1 -010101011100 12,142.0 1 -010101011100 5,143.7 1 -010101011100 5,394.5 1 -010101011100 12,369.9 1 -010101011100 6,022.5 1 -010101011100 tholins 1 -010101011100 trading/sales 1 -010101011100 EURODOLLARS:8 1 -010101011100 Excell 1 -010101011100 27,749.3 1 -010101011100 28,466.7 1 -010101011100 21,270.8 1 -010101011100 32,645.9 1 -010101011100 13,752.0 1 -010101011100 15,179.7 1 -010101011100 1,902.5 1 -010101011100 2,408.1 1 -010101011100 2,075.4 1 -010101011100 547.0 1 -010101011100 375.0 1 -010101011100 1,089.6 1 -010101011100 b14.05 1 -010101011100 b39.27 1 -010101011100 2,986 1 -010101011100 OWED 1 -010101011100 30.58 1 -010101011100 bc58.82 1 -010101011100 f14.02 1 -010101011100 b48.58 1 -010101011100 66.35 1 -010101011100 2,321 1 -010101011100 Av. 1 -010101011100 SIMMER 1 -010101011100 14,247.4 2 -010101011100 Rover-c 3 -010101011100 Romeo-b 3 -010101011100 29-April 3 -010101011100 20-Aug. 3 -010101011100 6-June 4 -010101011100 18-Aug. 4 -010101011100 Sys 4 -010101011100 d-NAV 6 -010101011100 ROSE 20 -010101011100 spurted 112 -010101011100 leaped 165 -010101011100 skidded 251 -010101011100 dipped 320 -010101011100 slid 827 -010101011100 tumbled 968 -010101011100 plunged 1638 -010101011100 soared 1862 -010101011100 surged 2146 -010101011100 climbed 2764 -010101011100 jumped 3310 -010101011100 rose 28575 -010101011100 fell 17907 -0101010111010 PREVAILS 1 -0101010111010 name-both 1 -0101010111010 sitting-in 1 -0101010111010 20-cents-a-barrel 1 -0101010111010 juice-added 1 -0101010111010 adjustment-related 1 -0101010111010 transited 1 -0101010111010 SUCCEED 1 -0101010111010 subsidiary-posted 1 -0101010111010 reporta 1 -0101010111010 132.56 1 -0101010111010 Noordaa 1 -0101010111010 industriously 1 -0101010111010 represenatives 2 -0101010111010 woofing 2 -0101010111010 COOL 2 -0101010111010 refract 2 -0101010111010 sunbathe 2 -0101010111010 rustled 2 -0101010111010 zig-zagged 3 -0101010111010 wobbles 3 -0101010111010 burrowed 3 -0101010111010 oscillated 3 -0101010111010 scooted 4 -0101010111010 lapped 6 -0101010111010 jogged 7 -0101010111010 spirals 7 -0101010111010 bulged 7 -0101010111010 crested 8 -0101010111010 toted 8 -0101010111010 yawned 9 -0101010111010 meandered 10 -0101010111010 trended 10 -0101010111010 curled 10 -0101010111010 sags 10 -0101010111010 spiraled 12 -0101010111010 gyrated 20 -0101010111010 balks 26 -0101010111010 hovers 44 -0101010111010 soars 48 -0101010111010 crept 89 -0101010111010 slows 187 -0101010111010 hovered 192 -0101010111010 balked 248 -0101010111010 inched 328 -0101010111010 fared 340 -0101010111010 drifted 347 -0101010111010 grows 367 -0101010111010 stays 396 -0101010111010 peaked 410 -0101010111010 stayed 854 -0101010111010 edged 967 -0101010111010 stood 1774 -0101010111010 finished 2062 -0101010111010 grew 3138 -0101010111010 remained 2398 -0101010111011 yo-yoing 1 -0101010111011 perianth 1 -0101010111011 studies. 1 -0101010111011 30/32-100 1 -0101010111011 out-shined 1 -0101010111011 Custodian-B 1 -0101010111011 REFINE 1 -0101010111011 post-Jan. 1 -0101010111011 1981. 1 -0101010111011 X-PM 1 -0101010111011 thyristor 1 -0101010111011 Wheelwriters 1 -0101010111011 forJapanese 1 -0101010111011 radome 1 -0101010111011 2,001.4 1 -0101010111011 28,540.0 1 -0101010111011 20,355.6 1 -0101010111011 24,226.6 1 -0101010111011 +142 1 -0101010111011 Grp 1 -0101010111011 Htls 1 -0101010111011 +172 1 -0101010111011 7700 1 -0101010111011 plummetted 1 -0101010111011 30,711.5 1 -0101010111011 31,771.4 1 -0101010111011 39,317.7 1 -0101010111011 1,625.9 1 -0101010111011 1/4-90 1 -0101010111011 3/4-99 1 -0101010111011 little-employed 1 -0101010111011 Resourcesrose 1 -0101010111011 3/8-89 1 -0101010111011 3/4-107 1 -0101010111011 Doer 2 -0101010111011 engineer. 3 -0101010111011 130.30 3 -0101010111011 Bake 4 -0101010111011 pivoted 5 -0101010111011 Res 8 -0101010111011 Intl 13 -0101010111011 nosedived 15 -0101010111011 bounded 16 -0101010111011 seesawed 18 -0101010111011 nose-dived 26 -0101010111011 zoomed 34 -0101010111011 dived 44 -0101010111011 rocketed 49 -0101010111011 recovers 49 -0101010111011 vaulted 49 -0101010111011 skidding 57 -0101010111011 leapt 62 -0101010111011 sagged 110 -0101010111011 firmed 341 -0101010111011 retreated 351 -0101010111011 sank 520 -0101010111011 slumped 523 -0101010111011 plummeted 612 -0101010111011 rallied 704 -0101010111011 rebounded 711 -0101010111011 recovered 964 -0101010111011 eased 1652 -0101010111011 slipped 1924 -0101010111011 advanced 2995 -0101010111011 dropped 6424 -0101010111011 gained 4473 -0101010111100 dificulties 1 -0101010111100 intramarketing 1 -0101010111100 HIGHS 1 -0101010111100 Ex-Tax 1 -0101010111100 ambulance-chasers 1 -0101010111100 trick-or-treating 1 -0101010111100 face-out 1 -0101010111100 cheeseballs 1 -0101010111100 savior-like 1 -0101010111100 ressemblance 1 -0101010111100 print-out 1 -0101010111100 chokecherries 1 -0101010111100 over-publicized 1 -0101010111100 picture-takers 1 -0101010111100 care-adviser 1 -0101010111100 bumbles 2 -0101010111100 plodders 2 -0101010111100 REPAIRS 2 -0101010111100 plans 19313 -0101010111100 Broughams 2 -01010101111010 appropropriate 1 -01010101111010 sublimed 1 -01010101111010 underspent 1 -01010101111010 well-euipped 1 -01010101111010 Cardiol 1 -01010101111010 acceeded 1 -01010101111010 hasn 1 -01010101111010 believesis 1 -01010101111010 inudustry 1 -01010101111010 re-christen 1 -01010101111010 underweights 1 -01010101111010 runby 1 -01010101111010 succors 1 -01010101111010 impalatable 1 -01010101111010 re-lent 1 -01010101111010 exhumes 1 -01010101111010 refects 1 -01010101111010 criss-crosses 1 -01010101111010 acknowleges 1 -01010101111010 Participazioni 1 -01010101111010 Ait 1 -01010101111010 prostituting 1 -01010101111010 doubled-checked 1 -01010101111010 aspirating 1 -01010101111010 whiffed 1 -01010101111010 wholesaled 1 -01010101111010 Husqvarna 1 -01010101111010 frame-by-frame 1 -01010101111010 refits 1 -01010101111010 reenters 2 -01010101111010 extradites 2 -01010101111010 overemphasizes 2 -01010101111010 double-billed 5 -01010101111010 anticipates 318 -01010101111010 expects 12577 -01010101111010 intends 2382 -010101011110110 Intasun 1 -010101011110110 dixon 1 -010101011110110 Kaji 1 -010101011110110 wearies 1 -010101011110110 Franca 2 -010101011110110 splurges 2 -010101011110110 places. 2 -010101011110110 trestles 2 -010101011110110 brainstorms 2 -010101011110110 misjudges 2 -010101011110110 supersensitive 3 -010101011110110 artifices 3 -010101011110110 Boghammar 3 -010101011110110 milks 3 -010101011110110 equivocated 3 -010101011110110 is. 4 -010101011110110 motioned 4 -010101011110110 2,625 4 -010101011110110 flinches 4 -010101011110110 Tuffier 4 -010101011110110 quizzes 6 -010101011110110 boogie 6 -010101011110110 screeches 8 -010101011110110 15- 8 -010101011110110 fly-by 8 -010101011110110 cradles 9 -010101011110110 prays 12 -010101011110110 Seeks 12 -010101011110110 disapproves 13 -010101011110110 adapts 14 -010101011110110 yearns 15 -010101011110110 hesitates 21 -010101011110110 Goes 37 -010101011110110 attaches 54 -010101011110110 pauses 82 -010101011110110 desires 111 -010101011110110 waits 120 -010101011110110 prepares 157 -010101011110110 vows 179 -010101011110110 travels 201 -010101011110110 pledges 231 -010101011110110 struggles 231 -010101011110110 wishes 421 -010101011110110 aims 524 -010101011110110 likes 914 -010101011110110 promises 1186 -010101011110110 hopes 3860 -010101011110110 needs 4570 -010101011110111 Adhere 1 -010101011110111 guarantied 1 -010101011110111 deputizes 1 -010101011110111 deputed 1 -010101011110111 Aerospacial 1 -010101011110111 cottons 1 -010101011110111 emigrates 1 -010101011110111 TEND 1 -010101011110111 stuggles 1 -010101011110111 revisits 2 -010101011110111 drooped 2 -010101011110111 ill-positioned 2 -010101011110111 itched 3 -010101011110111 Tries 3 -010101011110111 drop-kicked 3 -010101011110111 LEARN 3 -010101011110111 educates 4 -010101011110111 awakes 4 -010101011110111 Apt 4 -010101011110111 zaps 6 -010101011110111 ascends 7 -010101011110111 accedes 7 -010101011110111 Wants 10 -010101011110111 flees 10 -010101011110111 subscribes 11 -010101011110111 ascribes 12 -010101011110111 succumbs 15 -010101011110111 aspired 15 -010101011110111 defers 20 -010101011110111 aspires 21 -010101011110111 undertakes 21 -010101011110111 pretended 23 -010101011110111 strives 24 -010101011110111 hastens 27 -010101011110111 adheres 28 -010101011110111 neglects 29 -010101011110111 dares 30 -010101011110111 pretends 30 -010101011110111 elects 41 -010101011110111 assigns 52 -010101011110111 professes 54 -010101011110111 listens 62 -010101011110111 deserved 134 -010101011110111 chooses 206 -010101011110111 prefers 367 -010101011110111 refuses 436 -010101011110111 proposes 509 -010101011110111 tries 833 -010101011110111 leads 858 -010101011110111 chose 906 -010101011110111 ought 1026 -010101011110111 seeks 1554 -010101011110111 wants 6143 -010101011110111 wanted 4604 -01010101111100 conitinue 1 -01010101111100 Bounties 1 -01010101111100 PACked 1 -01010101111100 witheld 1 -01010101111100 2-2-1 1 -01010101111100 hungered 2 -01010101111100 day-trade 2 -01010101111100 vouches 2 -01010101111100 responsed 2 -01010101111100 inveigh 2 -01010101111100 commendably 2 -01010101111100 four-square 3 -01010101111100 deigned 3 -01010101111100 refered 3 -01010101111100 sulked 3 -01010101111100 subsisted 3 -01010101111100 sinned 3 -01010101111100 crusaded 4 -01010101111100 clamored 9 -01010101111100 yearned 15 -01010101111100 longed 18 -01010101111100 railed 27 -01010101111100 hesitated 68 -01010101111100 apologized 95 -01010101111100 confessed 112 -01010101111100 volunteered 112 -01010101111100 lied 113 -01010101111100 wished 145 -01010101111100 proceeded 163 -01010101111100 opted 186 -01010101111100 decides 557 -01010101111100 reacted 610 -01010101111100 pledged 847 -01010101111100 talked 924 -01010101111100 responded 1013 -01010101111100 understood 1028 -01010101111100 hoped 1344 -01010101111100 voted 2826 -01010101111100 decided 6084 -01010101111100 believed 2898 -010101011111010 Sanayi 1 -010101011111010 telefaxed 1 -010101011111010 automaticaqual 1 -010101011111010 Beckoning 1 -010101011111010 treasonably 1 -010101011111010 WENT 1 -010101011111010 sexists 1 -010101011111010 ro0 1 -010101011111010 22,407 1 -010101011111010 WWAY-TV 1 -010101011111010 retransferred 1 -010101011111010 Batcave 1 -010101011111010 contribued 1 -010101011111010 Stickers 1 -010101011111010 22,270 1 -010101011111010 trans-shipped 1 -010101011111010 tarried 1 -010101011111010 re-applied 1 -010101011111010 abdicates 2 -010101011111010 Delivers 2 -010101011111010 Addicted 2 -010101011111010 SHRANK 2 -010101011111010 SWELLED 2 -010101011111010 arrogated 3 -010101011111010 conspires 4 -010101011111010 Sought 4 -010101011111010 strived 6 -010101011111010 colluded 7 -010101011111010 assented 8 -010101011111010 strove 12 -010101011111010 endeavored 14 -010101011111010 schemed 15 -010101011111010 acceded 25 -010101011111010 AGREED 47 -010101011111010 definitively 182 -010101011111010 consented 228 -010101011111010 conspired 250 -010101011111010 agreed 16135 -010101011111010 vowed 576 -010101011111011 midchapter 1 -010101011111011 under-taxed 1 -010101011111011 slaved 1 -010101011111011 plannned 1 -010101011111011 gondola-maker 1 -010101011111011 asbestos-like 1 -010101011111011 re-formed 1 -010101011111011 back-dated 1 -010101011111011 open-letter 1 -010101011111011 pleged 1 -010101011111011 ballfield 1 -010101011111011 JETTED 1 -010101011111011 reshipped 1 -010101011111011 law-amendments 1 -010101011111011 long-nurtured 1 -010101011111011 crinkled 2 -010101011111011 non-adherence 2 -010101011111011 sleepwalked 2 -010101011111011 overreacts 2 -010101011111011 cooing 2 -010101011111011 half-crown 2 -010101011111011 redounded 2 -010101011111011 air-time 3 -010101011111011 pandered 3 -010101011111011 condescended 3 -010101011111011 ministered 3 -010101011111011 hewed 4 -010101011111011 journeying 6 -010101011111011 enroute 6 -010101011111011 hews 7 -010101011111011 screeched 8 -010101011111011 conformed 12 -010101011111011 journeyed 21 -010101011111011 catered 23 -010101011111011 capitulated 25 -010101011111011 carte 31 -010101011111011 reverted 33 -010101011111011 emigrated 42 -010101011111011 acquiesced 42 -010101011111011 adhered 48 -010101011111011 alluded 51 -010101011111011 clung 52 -010101011111011 overreacted 65 -010101011111011 succumbed 77 -010101011111011 flocked 86 -010101011111011 resorted 93 -010101011111011 defected 104 -010101011111011 scrambled 144 -010101011111011 listened 151 -010101011111011 belonged 174 -010101011111011 struggled 242 -010101011111011 traveled 380 -010101011111011 objected 403 -010101011111011 tended 447 -010101011111011 referred 715 -010101011111011 attempted 749 -010101011111011 returned 1939 -010101011111011 refused 2731 -010101011111011 access 2848 -010101011111011 failed 5347 -010101011111011 tried 3584 -01010101111110 Theater. 1 -01010101111110 Culotta 1 -01010101111110 Sieckman 1 -01010101111110 1,217 1 -01010101111110 Papoulias 1 -01010101111110 Jean-Jack 1 -01010101111110 Mtshali 1 -01010101111110 Mosavi 1 -01010101111110 Vorotnikov 1 -01010101111110 1,286 1 -01010101111110 Ribalta. 1 -01010101111110 Wurman 1 -01010101111110 aquiesced 1 -01010101111110 workgroups 1 -01010101111110 HANDSHAKE 1 -01010101111110 Loek 1 -01010101111110 premieres. 1 -01010101111110 Witkowicz 1 -01010101111110 mananged 1 -01010101111110 MOTHER 1 -01010101111110 F13 1 -01010101111110 Warms 1 -01010101111110 congresssmen 1 -01010101111110 declinced 1 -01010101111110 Nome-based 1 -01010101111110 Cask 1 -01010101111110 Scheler 1 -01010101111110 TRANSITION 1 -01010101111110 TONIGHT 1 -01010101111110 1437 1 -01010101111110 political-relation 1 -01010101111110 subcribers 1 -01010101111110 engraves 1 -01010101111110 Efimov 1 -01010101111110 Otters 1 -01010101111110 1,566.0 1 -01010101111110 tribulation 1 -01010101111110 935s 1 -01010101111110 over-payments 1 -01010101111110 Parmigianino. 1 -01010101111110 Sandals 1 -01010101111110 expedition. 1 -01010101111110 Krawcyk 1 -01010101111110 Caniglia 1 -01010101111110 23,352.8 1 -01010101111110 7,786.8 1 -01010101111110 nigun 1 -01010101111110 northwestward 1 -01010101111110 32,287.1 1 -01010101111110 1,079 1 -01010101111110 Weilbacher 1 -01010101111110 Six-Packs 1 -01010101111110 Benzinger 1 -01010101111110 11,442 1 -01010101111110 Mudhens 1 -01010101111110 Decimalists 1 -01010101111110 garbage-dumpers 1 -01010101111110 1,428 1 -01010101111110 ontributed 1 -01010101111110 car-pooled 2 -01010101111110 747-100s 2 -01010101111110 Contributed 2 -01010101111110 EXPLODED 5 -01010101111110 swung 252 -01010101111110 declined 14771 -01010101111110 contributed 2574 -01010101111111 apears 1 -01010101111111 sider 1 -01010101111111 conduce 1 -01010101111111 degasser 1 -01010101111111 shelfspace 1 -01010101111111 React 1 -01010101111111 revaluated 1 -01010101111111 rock-making 1 -01010101111111 intrusted 1 -01010101111111 apppears 1 -01010101111111 asets 1 -01010101111111 repledged 1 -01010101111111 happenened 1 -01010101111111 reconveyed 1 -01010101111111 sinecure-counsel 1 -01010101111111 sandpapered 1 -01010101111111 referrred 1 -01010101111111 windsurfs 1 -01010101111111 danciness 1 -01010101111111 reprises 2 -01010101111111 Crucians 2 -01010101111111 KIND 2 -01010101111111 quivers 2 -01010101111111 Hibby 2 -01010101111111 Maretha 2 -01010101111111 rejoices 3 -01010101111111 CONTINUES 3 -01010101111111 SITE 3 -01010101111111 Happened 4 -01010101111111 panders 5 -01010101111111 hardens 6 -01010101111111 attesting 6 -01010101111111 suffices 6 -01010101111111 pertained 10 -01010101111111 transpires 10 -01010101111111 pertains 13 -01010101111111 alludes 16 -01010101111111 behaves 23 -01010101111111 conforms 25 -01010101111111 attests 27 -01010101111111 reverts 28 -01010101111111 clings 32 -01010101111111 corresponds 34 -01010101111111 Agreed 34 -01010101111111 testifies 38 -01010101111111 purports 42 -01010101111111 reacts 52 -01010101111111 caters 63 -01010101111111 relates 179 -01010101111111 contributes 183 -01010101111111 belongs 270 -01010101111111 refers 304 -01010101111111 threatens 459 -01010101111111 amounted 527 -01010101111111 tends 573 -01010101111111 applies 591 -01010101111111 fails 728 -01010101111111 happens 1205 -01010101111111 seemed 2418 -01010101111111 appeared 2684 -01010101111111 continues 3638 -01010101111111 appears 3892 -01010101111111 seems 5446 -0101011000 stress-caused 1 -0101011000 state-return 1 -0101011000 Tolkienlike 1 -0101011000 Deltas 1 -0101011000 wine-grape 1 -0101011000 doctrinarily 1 -0101011000 lives/more 1 -0101011000 democratically-minded 1 -0101011000 underwhelmingly 1 -0101011000 Polski 1 -0101011000 cofinancing 1 -0101011000 fairy-talelike 1 -0101011000 ultraviolent 1 -0101011000 camp-aged 1 -0101011000 incentive-sensitive 1 -0101011000 repugnantly 1 -0101011000 positive-to-negative 1 -0101011000 ta 1 -0101011000 tempus 1 -0101011000 deflation-adjusted 1 -0101011000 unstylish 1 -0101011000 exculpating 1 -0101011000 semihardened 1 -0101011000 speculative-oriented 1 -0101011000 difficult. 1 -0101011000 regulatory-minded 1 -0101011000 minicompanies 1 -0101011000 airlines-even 1 -0101011000 Russian-Orthodox-patriotically 1 -0101011000 fuel-making 1 -0101011000 doodle 1 -0101011000 partisanly 1 -0101011000 SU-26 1 -0101011000 early-redemption 1 -0101011000 audience-friendly 1 -0101011000 yield-sensitive 1 -0101011000 non-Islam 1 -0101011000 murkily 1 -0101011000 nimble-like 1 -0101011000 rate-competitive 1 -0101011000 blunt. 1 -0101011000 academic-minded 1 -0101011000 exercise-conscious 1 -0101011000 damned-hard-to-put-down 1 -0101011000 ploddingly 1 -0101011000 than 76811 -0101011000 individual-investor-oriented 1 -01010110010 shis 1 -01010110010 11,279 1 -01010110010 realising 1 -01010110010 sports-media 1 -01010110010 Proyezd 1 -01010110010 horse-and-rabbit 1 -01010110010 NBW 1 -01010110010 8,799,291 1 -01010110010 389,600 1 -01010110010 Beckettian 1 -01010110010 sea-otter 1 -01010110010 offerring 1 -01010110010 3,195,000 1 -01010110010 elide 1 -01010110010 771,794 1 -01010110010 1,053,900 1 -01010110010 Countdown 1 -01010110010 dirties 1 -01010110010 144,376 1 -01010110010 hydro-jet 1 -01010110010 119,400 1 -01010110010 designs. 1 -01010110010 122,100 1 -01010110010 garroting 1 -01010110010 138,500 1 -01010110010 pet-store 1 -01010110010 Dozzzy 1 -01010110010 1,048,500 1 -01010110010 ional 1 -01010110010 voter-abstention 1 -01010110010 populaces 1 -01010110010 1,893 2 -01010110010 respresenting 2 -01010110010 tickles 4 -01010110010 about 104397 -01010110010 molesting 5 -010101100110 light-your-cigars-with- 1 -010101100110 COVERED 1 -010101100110 pro-hard 1 -010101100110 600-plus-ship 1 -010101100110 Yaroslavskoye 1 -010101100110 Leningradskoye 1 -010101100110 Mozhayskoye 1 -010101100110 Leningradsky 1 -010101100110 84B 1 -010101100110 personal-insurance 1 -010101100110 orginated 1 -010101100110 Brith 1 -010101100110 273,874 1 -010101100110 21,017 1 -010101100110 26-ranking 1 -010101100110 Motoyawata 1 -010101100110 4,021 1 -010101100110 Kyon 1 -010101100110 34628.71 1 -010101100110 wona 1 -010101100110 Juanjui 1 -010101100110 playits 1 -010101100110 PGA-tour-leading 1 -010101100110 37,334 1 -010101100110 408,570 1 -010101100110 absorbedthe 1 -010101100110 Pharm 1 -010101100110 Scientif 1 -010101100110 two-processor 1 -010101100110 TriState 2 -010101100110 film-products 2 -010101100110 Quietwriter 2 -010101100110 Exceed 3 -010101100110 Sec. 3 -010101100110 $$ 3 -010101100110 ADDED 4 -010101100110 reschedules 5 -010101100110 totalled 6 -010101100110 totalling 9 -010101100110 grossing 10 -010101100110 numbering 26 -010101100110 NZ 57 -010101100110 HK 210 -010101100110 totals 439 -010101100110 averaging 445 -010101100110 averaged 1037 -010101100110 US 1496 -010101100110 C 1602 -010101100110 totaling 2469 -010101100110 earned 4255 -010101100110 totaled 3079 -010101100111 1660.7 1 -010101100111 Heffalump 1 -010101100111 25-1 1 -010101100111 2-5 1 -010101100111 1633.4 1 -010101100111 1:26 1 -010101100111 Kabi 1 -010101100111 two-under-par 1 -010101100111 2647.72 1 -010101100111 WTOP 1 -010101100111 2:55 1 -010101100111 2,775,300 1 -010101100111 Lockheed. 1 -010101100111 1749.8 1 -010101100111 WZZM-TV 1 -010101100111 KPIX-TV 1 -010101100111 1578.5 1 -010101100111 43.27 1 -010101100111 25,929 1 -010101100111 banking/commerce 1 -010101100111 eleventeen 1 -010101100111 Chilectra 1 -010101100111 Suedwestdeutsche 1 -010101100111 2082.86 1 -010101100111 1312.03 1 -010101100111 2116.40 1 -010101100111 Maderas 1 -010101100111 2070.95 1 -010101100111 KARE 1 -010101100111 2058.32 1 -010101100111 59,830,000 1 -010101100111 farmacias 1 -010101100111 Dimitrovgrad 1 -010101100111 388.59 1 -010101100111 considerble 1 -010101100111 Brest-Litovsk 1 -010101100111 2017.2 1 -010101100111 Liebherr 1 -010101100111 Targu-Jiu 1 -010101100111 63,870 1 -010101100111 tableside 1 -010101100111 Fulda 1 -010101100111 Marienbad 1 -010101100111 Assane 1 -010101100111 99.02 1 -010101100111 Qadhima 1 -010101100111 Knifepoint 1 -010101100111 Bely 1 -010101100111 229.24 1 -010101100111 Softguard. 1 -010101100111 unhorsing 1 -010101100111 11:17 1 -010101100111 Continentale 1 -010101100111 7:27 1 -010101100111 51,320 1 -010101100111 7.7965 1 -010101100111 8:16 1 -010101100111 1698.1 1 -010101100111 1582.8 1 -010101100111 3:55 1 -010101100111 Chiredzi 1 -010101100111 Wombun 1 -010101100111 1747.4 1 -010101100111 1771.4 1 -010101100111 seven-card 1 -010101100111 240.01 1 -010101100111 Lympstone 1 -010101100111 Ciaris 1 -010101100111 1,473.10 1 -010101100111 2,568.30 1 -010101100111 sub-normal 1 -010101100111 Palikula 1 -010101100111 forty-nine 1 -010101100111 CREF. 1 -010101100111 18936.98 1 -010101100111 2452 1 -010101100111 1574 1 -010101100111 85-02 1 -010101100111 243.27 1 -010101100111 KTLA-TV 1 -010101100111 27277.00 1 -010101100111 LLNL 1 -010101100111 21-to-1 1 -010101100111 23633.51 1 -010101100111 Sanam 1 -010101100111 KEK 1 -010101100111 German-organized 1 -010101100111 2057.25 1 -010101100111 trickle-pace 1 -010101100111 2076.80 1 -010101100111 2066.68 1 -010101100111 274,444 1 -010101100111 23719.13 1 -010101100111 Semipalatinski 1 -010101100111 brunches 1 -010101100111 Peterhof 1 -010101100111 999.9 1 -010101100111 IBEC 1 -010101100111 34115.81 1 -010101100111 Croyton 1 -010101100111 25629.96 1 -010101100111 25569.35 1 -010101100111 mid-1971 1 -010101100111 industry-hopping 1 -010101100111 less-than-maximum 1 -010101100111 111-112 1 -010101100111 50:50 1 -010101100111 2,110,600 1 -010101100111 98.555 1 -010101100111 5:47 1 -010101100111 48.91 1 -010101100111 UBS. 1 -010101100111 3160.05 1 -010101100111 1094 1 -010101100111 Phanat 1 -010101100111 Entitlements 1 -010101100111 inactivating 1 -010101100111 4112.86 1 -010101100111 knifepoint 1 -010101100111 Broadmoor 1 -010101100111 Ekaterinburg 1 -010101100111 Argenteuil 1 -010101100111 Ceret 1 -010101100111 35209.35 1 -010101100111 2021.34 1 -010101100111 Medtronics 1 -010101100111 Wad 1 -010101100111 2076.12 1 -010101100111 34,093 1 -010101100111 2018.67 1 -010101100111 2032.01 1 -010101100111 1786.7 1 -010101100111 Babyland 1 -010101100111 1743.4 1 -010101100111 2120.91 1 -010101100111 35444.82 1 -010101100111 KSL-AM 1 -010101100111 2075 1 -010101100111 WSB-TV 1 -010101100111 al-Harf 1 -010101100111 7:10 2 -010101100111 Nummi. 2 -010101100111 24773.41 2 -010101100111 2218.8 2 -010101100111 Sandringham 2 -010101100111 98.875 2 -010101100111 M5 2 -010101100111 Pietri 2 -010101100111 1839.9 2 -010101100111 27320.94 2 -010101100111 1608.1 2 -010101100111 Windfalls 2 -010101100111 28162.25 2 -010101100111 370.34 2 -010101100111 267.40 2 -010101100111 Agrivisor 2 -010101100111 Yaddo 2 -010101100111 Shoshoni 2 -010101100111 241.89 2 -010101100111 103.15 2 -010101100111 Travemuende 2 -010101100111 Cieplan 2 -010101100111 Estrategia 5 -010101100111 MIT. 5 -010101100111 Colonus 8 -010101100111 least 13911 -010101100111 loggerheads 30 -010101101000 Pups 1 -010101101000 Iran-bolstering 1 -010101101000 hair-do 1 -010101101000 minimum-performance 1 -010101101000 unconventionally 1 -010101101000 crash-performance 1 -010101101000 WHOA 1 -010101101000 Josh. 1 -010101101000 aspersion 1 -010101101000 ankle-to-thigh 1 -010101101000 cross-contamination 1 -010101101000 cross-shopping 1 -010101101000 envying 1 -010101101000 deliriously 1 -010101101000 hard-to-meet 1 -010101101000 shambled 1 -010101101000 mach 1 -010101101000 Konkani 1 -010101101000 bobsleds 1 -010101101000 slider 1 -010101101000 toga-style 1 -010101101000 auditor-shopping 1 -010101101000 peel-off 1 -010101101000 molton 1 -010101101000 clonazepam 2 -010101101000 acetates 2 -010101101000 first. 2 -010101101000 soul-satisfying 2 -010101101000 stoppers 2 -010101101000 Ergon 2 -010101101000 excising 2 -010101101000 breakwaters 2 -010101101000 John-John 3 -010101101000 sullenly 4 -010101101000 expectantly 4 -010101101000 demotions 4 -010101101000 aflame 5 -010101101000 clasp 5 -010101101000 up 68862 -010101101000 aside 1415 -0101011010010 15/21 1 -0101011010010 netward 1 -0101011010010 choosen 1 -0101011010010 123-23 1 -0101011010010 1989-March 1 -0101011010010 x. 1 -0101011010010 thumbs-down 1 -0101011010010 24-18 1 -0101011010010 fiscal-1987 1 -0101011010010 248-170 1 -0101011010010 Ma. 1 -0101011010010 lovably 1 -0101011010010 384-20 1 -0101011010010 V-8-engine-equipped 1 -0101011010010 legislation-by-initiative 1 -0101011010010 Pentam 1 -0101011010010 Hlth 1 -0101011010010 Alfalfa 1 -0101011010010 Local-news 1 -0101011010010 rainless 1 -0101011010010 Trigger 2 -0101011010010 nurturant 2 -0101011010010 paydirt 2 -0101011010010 Fafner 2 -0101011010010 366-40 2 -0101011010010 crosslegged 2 -0101011010010 dismounts 2 -0101011010010 bloodily 2 -0101011010010 rearranges 3 -0101011010010 reducers 3 -0101011010010 co-producers 3 -0101011010010 ajar 5 -0101011010010 marring 5 -0101011010010 down 28116 -0101011010010 benefitting 6 -0101011010011 Naziism 1 -0101011010011 incorrectedly 1 -0101011010011 Channnel 1 -0101011010011 109,856 1 -0101011010011 short/ 1 -0101011010011 124,617 1 -0101011010011 2,649 1 -0101011010011 turbotrains 1 -0101011010011 banger 1 -0101011010011 anthemic 1 -0101011010011 crop-devouring 1 -0101011010011 gem-quality 1 -0101011010011 once-reluctant 1 -0101011010011 claims-settlement 1 -0101011010011 near-lethal 1 -0101011010011 inning-by-inning 1 -0101011010011 175,524 1 -0101011010011 1,354 1 -0101011010011 Carducci 1 -0101011010011 tongue-in-your-ear 1 -0101011010011 B-scales 1 -0101011010011 DM1,200 1 -0101011010011 car-exhaust 1 -0101011010011 Newark-bound 1 -0101011010011 26.20 1 -0101011010011 TRS-DOS 1 -0101011010011 forest-road 1 -0101011010011 25-to-one 1 -0101011010011 inside-out 2 -0101011010011 vaccinating 2 -0101011010011 yet. 2 -0101011010011 heeler 2 -0101011010011 1,648 2 -0101011010011 soulfully 2 -0101011010011 ex-distribution 2 -0101011010011 expense-control 3 -0101011010011 behind. 3 -0101011010011 aspergillus 4 -0101011010011 off. 7 -0101011010011 off 22454 -0101011010011 mignon 8 -010101101010 uprootings 1 -010101101010 4,298 1 -010101101010 OQ 1 -010101101010 367,800 1 -010101101010 disturbers 1 -010101101010 Bikinians 1 -010101101010 armfuls 1 -010101101010 agglutinations 1 -010101101010 scrolling 1 -010101101010 distillations 1 -010101101010 taxpayer-subsidization 1 -010101101010 27,167 1 -010101101010 marl 1 -010101101010 slice-of-surrealism 1 -010101101010 phone-solicitation 1 -010101101010 Pennfield 1 -010101101010 Parnassian 1 -010101101010 Centigrade 1 -010101101010 remorsefully 1 -010101101010 6,073 1 -010101101010 job-applicant 1 -010101101010 navigates 1 -010101101010 wout 1 -010101101010 308,300 1 -010101101010 full-speed 1 -010101101010 hand-punched 1 -010101101010 Facilitation 1 -010101101010 refixes 1 -010101101010 146,456 1 -010101101010 593,100 1 -010101101010 2378.5 1 -010101101010 vortexes 1 -010101101010 fullspread 1 -010101101010 48,526 1 -010101101010 2383.7 1 -010101101010 spandrels 1 -010101101010 hoarsely 1 -010101101010 181,818 1 -010101101010 billets-doux 1 -010101101010 extra-point 1 -010101101010 nobs 1 -010101101010 2297.5 1 -010101101010 1,278,000 1 -010101101010 investers 1 -010101101010 toddlerhood 1 -010101101010 463,779 1 -010101101010 Massraf 1 -010101101010 Constants 1 -010101101010 nail-bed 1 -010101101010 2319.9 1 -010101101010 Farenheit 1 -010101101010 DM200 1 -010101101010 slightingly 1 -010101101010 Aspercreme 1 -010101101010 4-foot 1 -010101101010 2356.8 1 -010101101010 2285.8 1 -010101101010 slab-like 1 -010101101010 1,430,500 1 -010101101010 47,766 1 -010101101010 hir 1 -010101101010 policy-cancellation 1 -010101101010 blue-violet 1 -010101101010 anemically 2 -010101101010 403,600 2 -010101101010 ceremonially 2 -010101101010 updrafts 2 -010101101010 articulately 2 -010101101010 collectivizations 2 -010101101010 sentinel 2 -010101101010 re-focused 2 -010101101010 140,550 2 -010101101010 140,500 2 -010101101010 erotically 2 -010101101010 docklands 2 -010101101010 effigies 3 -010101101010 bedclothes 3 -010101101010 Appears 3 -010101101010 storyboards 3 -010101101010 cohesively 3 -010101101010 miming 3 -010101101010 uncalled-for 3 -010101101010 massages 4 -010101101010 ahold 4 -010101101010 deadlocks 6 -010101101010 sundae 8 -010101101010 out. 9 -010101101010 roughshod 17 -010101101010 abreast 43 -010101101010 out 42634 -010101101010 afoul 97 -0101011010110 three-for-my-one 1 -0101011010110 drawbars 1 -0101011010110 tomahawked 1 -0101011010110 saddlebags 1 -0101011010110 semi-independence 1 -0101011010110 declaiming 1 -0101011010110 ampler 1 -0101011010110 boink 1 -0101011010110 open-collared 1 -0101011010110 4-for-4 1 -0101011010110 limply 1 -0101011010110 unavenged 1 -0101011010110 down-slowly 1 -0101011010110 WPHL 1 -0101011010110 0-for-3 1 -0101011010110 Jezebel 1 -0101011010110 bargain-shopping 1 -0101011010110 squatty 1 -0101011010110 testier 1 -0101011010110 carbacephems 1 -0101011010110 jenny 1 -0101011010110 lawyerism 1 -0101011010110 rust-proofed 1 -0101011010110 unpruned 1 -0101011010110 lawsuit-crazy 1 -0101011010110 resliced 1 -0101011010110 PICKINGS 1 -0101011010110 shorewards 1 -0101011010110 teledramas 1 -0101011010110 abegging 1 -0101011010110 cross-pollenized 1 -0101011010110 plastic-free 1 -0101011010110 oh-for-seven 1 -0101011010110 semi-serious 1 -0101011010110 120-fold 1 -0101011010110 runback 1 -0101011010110 cappuccinos 1 -0101011010110 judgements 1 -0101011010110 untallied 1 -0101011010110 septum 1 -0101011010110 3-12-1 1 -0101011010110 inthecolumn 1 -0101011010110 over-intense 1 -0101011010110 woodenness 1 -0101011010110 reapprovals 1 -0101011010110 unprosecuted 1 -0101011010110 chillier 1 -0101011010110 witchlike 1 -0101011010110 13-fold 1 -0101011010110 despondently 1 -0101011010110 un-fixed 1 -0101011010110 emblazoning 1 -0101011010110 untangled 1 -0101011010110 exdividend 1 -0101011010110 unrecruited 1 -0101011010110 dimensionally 1 -0101011010110 amuck 1 -0101011010110 season. 1 -0101011010110 lightly. 1 -0101011010110 psychoanalyzed 1 -0101011010110 bang-bang 1 -0101011010110 shuffle-bored 1 -0101011010110 titters 1 -0101011010110 34-1 1 -0101011010110 unredressed 1 -0101011010110 price-shopping 1 -0101011010110 out-rebounded 1 -0101011010110 scotfree 1 -0101011010110 96-69 1 -0101011010110 marketward 1 -0101011010110 recontaminated 1 -0101011010110 rancidity 1 -0101011010110 unflaggingly 1 -0101011010110 hartebeest 1 -0101011010110 tailwinds 1 -0101011010110 2,546,900 1 -0101011010110 Day-Glo-mail 1 -0101011010110 uncaught 1 -0101011010110 2384.6 1 -0101011010110 brown-red 1 -0101011010110 warrier 1 -0101011010110 pensively 1 -0101011010110 biters 1 -0101011010110 sloooow 1 -0101011010110 fishin' 1 -0101011010110 reacquainted 1 -0101011010110 7,319,400 1 -0101011010110 Gelucil 1 -0101011010110 Yepikhodov 1 -0101011010110 Tuesdays-Saturdays 1 -0101011010110 church-goers 1 -0101011010110 Olympically 1 -0101011010110 creatives 1 -0101011010110 44,450 1 -0101011010110 untrumpeted 1 -0101011010110 one-on-two 1 -0101011010110 literately 1 -0101011010110 out-foxed 1 -0101011010110 home. 1 -0101011010110 sackless 1 -0101011010110 along. 1 -0101011010110 cost-efficiently 1 -0101011010110 wheelcover 1 -0101011010110 unsnarled 1 -0101011010110 high. 1 -0101011010110 2347.7 1 -0101011010110 rat-arsed 1 -0101011010110 currents. 1 -0101011010110 precociously 1 -0101011010110 leftwards 1 -0101011010110 cloak-and-daggerish 1 -0101011010110 50,517 1 -0101011010110 2298 1 -0101011010110 +32 1 -0101011010110 71,011 1 -0101011010110 aglimmering 1 -0101011010110 self-discipline. 1 -0101011010110 27-fold 1 -0101011010110 2323.9 1 -0101011010110 4-and-6 1 -0101011010110 spill-up 1 -0101011010110 midnights 1 -0101011010110 furasato 1 -0101011010110 softballs 1 -0101011010110 a-glimmering 1 -0101011010110 bahhh 1 -0101011010110 35,780 1 -0101011010110 m-o-n-e-y 2 -0101011010110 uselessly 2 -0101011010110 firebases 2 -0101011010110 minutes/flight 2 -0101011010110 apart. 2 -0101011010110 tip-toeing 2 -0101011010110 commendations 2 -0101011010110 confusedly 2 -0101011010110 handsprings 2 -0101011010110 punitively 2 -0101011010110 350-fold 2 -0101011010110 cumbersomely 2 -0101011010110 canteens 2 -0101011010110 neutrally 2 -0101011010110 suport 2 -0101011010110 ghouls 2 -0101011010110 bondsman 2 -0101011010110 downrange 2 -0101011010110 Bumstead 2 -0101011010110 Banpais 2 -0101011010110 second-raters 2 -0101011010110 undotted 2 -0101011010110 wheelies 2 -0101011010110 16th- 2 -0101011010110 firetrucks 3 -0101011010110 masala 3 -0101011010110 convalescing 3 -0101011010110 unrewarded 3 -0101011010110 Kandi 3 -0101011010110 flutists 3 -0101011010110 gaga 3 -0101011010110 aye 3 -0101011010110 unrepaired 3 -0101011010110 unfixed 3 -0101011010110 puncher 3 -0101011010110 counterclockwise 3 -0101011010110 spitballs 3 -0101011010110 meat-eaters 3 -0101011010110 semi-conscious 3 -0101011010110 tousled 4 -0101011010110 stolidly 4 -0101011010110 on. 5 -0101011010110 deviating 5 -0101011010110 handstands 5 -0101011010110 forlornly 5 -0101011010110 slaw 7 -0101011010110 listlessly 7 -0101011010110 downriver 8 -0101011010110 haywire 9 -0101011010110 asunder 9 -0101011010110 motionless 10 -0101011010110 unmentioned 10 -0101011010110 berserk 16 -0101011010110 unpunished 19 -0101011010110 unheeded 20 -0101011010110 northward 21 -0101011010110 idly 25 -0101011010110 amok 28 -0101011010110 astray 30 -0101011010110 ashore 38 -0101011010110 aground 39 -0101011010110 afield 40 -0101011010110 erratically 41 -0101011010110 shear 43 -0101011010110 someplace 44 -0101011010110 aback 46 -0101011010110 undetected 51 -0101011010110 overboard 56 -0101011010110 awry 71 -0101011010110 unnoticed 81 -0101011010110 somewhere 501 -0101011010110 anywhere 777 -0101011010110 apart 942 -0101011010110 away 7267 -0101011010111 WAFB-TV 1 -0101011010111 Tinkertoys 1 -0101011010111 34,554 1 -0101011010111 insignificantly 1 -0101011010111 503th 1 -0101011010111 76.2mm 1 -0101011010111 K-Tel-Products 1 -0101011010111 BROADLY 1 -0101011010111 9,991 1 -0101011010111 Krupp/Taylor-USA 1 -0101011010111 Orthello 1 -0101011010111 uncertainities 1 -0101011010111 Purolator. 1 -0101011010111 European. 1 -0101011010111 jolters 1 -0101011010111 WHBF-TV 1 -0101011010111 9,014 1 -0101011010111 .600 1 -0101011010111 haring 1 -0101011010111 2,631 1 -0101011010111 1,340th 1 -0101011010111 Chillico 1 -0101011010111 concertgoers 1 -0101011010111 2,073 1 -0101011010111 krugerrand 1 -0101011010111 1-2-3-4-6-11 1 -0101011010111 8,406 1 -0101011010111 discreetely 1 -0101011010111 sculling 1 -0101011010111 WYLDFM 1 -0101011010111 775,630 1 -0101011010111 140.71 1 -0101011010111 527th 1 -0101011010111 casssettes 1 -0101011010111 Abearham 1 -0101011010111 poinsettia 1 -0101011010111 full-blast 1 -0101011010111 order-backlog 1 -0101011010111 doughtily 1 -0101011010111 less-upholstered 1 -0101011010111 beseechingly 1 -0101011010111 4,829 1 -0101011010111 passers-through 1 -0101011010111 crabbing 1 -0101011010111 8,821 1 -0101011010111 a-begging 1 -0101011010111 big-eyed 1 -0101011010111 ski-touring 1 -0101011010111 emptily 1 -0101011010111 demagogically 1 -0101011010111 2,339 1 -0101011010111 414,305 1 -0101011010111 boisterously 1 -0101011010111 4,395 1 -0101011010111 Canadian-fir 1 -0101011010111 women-buddies 1 -0101011010111 world-size 1 -0101011010111 258,700 1 -0101011010111 mini-pianos 1 -0101011010111 lousily 1 -0101011010111 Bell-owned 1 -0101011010111 reflectively 1 -0101011010111 1,339,000 1 -0101011010111 well-comfortable 1 -0101011010111 V-8-and 1 -0101011010111 WUTV 1 -0101011010111 1-2-5 1 -0101011010111 subsections 1 -0101011010111 937,700 1 -0101011010111 1.015 1 -0101011010111 bridalwear 1 -0101011010111 40,994 1 -0101011010111 recommendaton 1 -0101011010111 over-inflated 1 -0101011010111 willynilly 1 -0101011010111 delicieux 1 -0101011010111 now-drive 1 -0101011010111 ceremoniously 1 -0101011010111 692,000 1 -0101011010111 devotedly 1 -0101011010111 264,812 1 -0101011010111 resettlements 1 -0101011010111 frowzy 1 -0101011010111 temptingly 1 -0101011010111 4,575 1 -0101011010111 smarties 1 -0101011010111 elephant-ivory 1 -0101011010111 pityingly 1 -0101011010111 49,626 1 -0101011010111 hefam 1 -0101011010111 267,229 1 -0101011010111 sexpertise 1 -0101011010111 soundlessly 1 -0101011010111 obloquy 1 -0101011010111 float-trips 1 -0101011010111 changer 2 -0101011010111 head-first 2 -0101011010111 70.18 2 -0101011010111 Ozarka 2 -0101011010111 headwinds 2 -0101011010111 8,777 2 -0101011010111 266,667 2 -0101011010111 whole-hog 2 -0101011010111 vibrantly 2 -0101011010111 1,153,318 2 -0101011010111 31,808,363 2 -0101011010111 114,023 2 -0101011010111 syrupy 2 -0101011010111 untucked 2 -0101011010111 unfindable 2 -0101011010111 bread-baking 2 -0101011010111 right-to-left 2 -0101011010111 Damien 2 -0101011010111 high-fives 2 -0101011010111 2,091,000 2 -0101011010111 30,141,114 2 -0101011010111 2,501,897 2 -0101011010111 dragooned 2 -0101011010111 solitaire 2 -0101011010111 greater-than-average 3 -0101011010111 masas 3 -0101011010111 Umtata 3 -0101011010111 1,214 3 -0101011010111 feet-first 3 -0101011010111 835,350 3 -0101011010111 959,901 3 -0101011010111 unstuck 4 -0101011010111 slam-dunked 4 -0101011010111 morosely 4 -0101011010111 glassy-eyed 4 -0101011010111 hooky 5 -0101011010111 heavenward 5 -0101011010111 longingly 6 -0101011010111 fence-row 6 -0101011010111 dejectedly 6 -0101011010111 majestically 8 -0101011010111 foward 8 -0101011010111 belly-up 8 -0101011010111 blankly 12 -0101011010111 uneasily 15 -0101011010111 shivers 16 -0101011010111 inversely 17 -0101011010111 southward 18 -0101011010111 eastward 19 -0101011010111 aimlessly 21 -0101011010111 askance 26 -0101011010111 inward 26 -0101011010111 westward 26 -0101011010111 headlong 32 -0101011010111 downstairs 36 -0101011010111 thumbs 41 -0101011010111 nearer 50 -0101011010111 sideways 67 -0101011010111 back 17447 -0101011010111 forward 1718 -010101101100 NBCTV 1 -010101101100 injury-free 1 -010101101100 threshholds 1 -010101101100 Ariosto 1 -010101101100 calamitously 1 -010101101100 body-hugging 1 -010101101100 Aug.6 1 -010101101100 WWOZ-FM 1 -010101101100 78-70 1 -010101101100 takedowns 1 -010101101100 Melodiya 1 -010101101100 PespsiCo 1 -010101101100 Rocinante 1 -010101101100 playwriting 1 -010101101100 396-0 1 -010101101100 26-14 1 -010101101100 3.2851 1 -010101101100 subsdiaries 1 -010101101100 caramels 1 -010101101100 Supraphon 1 -010101101100 Psychoneuroimmunology 1 -010101101100 belay 1 -010101101100 Abeche 1 -010101101100 non-glamourous 1 -010101101100 Dieppe 1 -010101101100 Shimonoseki 1 -010101101100 steadies 1 -010101101100 solipsism 1 -010101101100 character-delving 1 -010101101100 Visula 1 -010101101100 Mercutio 1 -010101101100 ABC-TVs 1 -010101101100 hostiles 1 -010101101100 over-the-header 1 -010101101100 cusp 1 -010101101100 program-by-program 1 -010101101100 Ranaskaya 1 -010101101100 anannualized 1 -010101101100 Histrionix 1 -010101101100 dummy-making 1 -010101101100 trickledown 1 -010101101100 WNYC-FM 1 -010101101100 Kadarists 1 -010101101100 cost-per-thousand-viewers 1 -010101101100 cross-rates 1 -010101101100 DC-10-10s 1 -010101101100 8,284 1 -010101101100 out-er 1 -010101101100 81-0 1 -010101101100 Xanthippe 1 -010101101100 exile/trade 1 -010101101100 philology 1 -010101101100 89-2 1 -010101101100 Heimaey 1 -010101101100 346-54 1 -010101101100 Shakespeare-In-The-Park 1 -010101101100 201-175 1 -010101101100 19-14 1 -010101101100 Nostradamus 1 -010101101100 1,436 1 -010101101100 WRC-TV 1 -010101101100 C31G 1 -010101101100 weather-worries 1 -010101101100 314-96 1 -010101101100 index-participation 1 -010101101100 Fadda 1 -010101101100 8-to-4 1 -010101101100 el-Azhar 1 -010101101100 230-196 2 -010101101100 SeaEscape 2 -010101101100 CD-4 2 -010101101100 tenterhooks 2 -010101101100 WGN-TV 2 -010101101100 millages 2 -010101101100 Harassed 2 -010101101100 Q.E.D. 2 -010101101100 Stockwatch 2 -010101101100 pigmentosa 2 -010101101100 Jan.4 2 -010101101100 Zerbinetta 2 -010101101100 Dreadful 2 -010101101100 PRAY-sus 2 -010101101100 Thurday 2 -010101101100 advertising. 2 -010101101100 mitoxantrone 2 -010101101100 Suffrage 2 -010101101100 Terfenadine 2 -010101101100 Sinfonietta 2 -010101101100 Itab 2 -010101101100 Pimpernel 2 -010101101100 CBS-News 2 -010101101100 Lydda 2 -010101101100 HGP-30 2 -010101101100 Aurolin 3 -010101101100 Yaguzhinsky 3 -010101101100 2C 3 -010101101100 costuming 3 -010101101100 Minkey 3 -010101101100 Tenerife 3 -010101101100 kebabs 3 -010101101100 centigrade 4 -010101101100 a-Ex-dividend 4 -010101101100 Dec.31 5 -010101101100 bloomer 5 -010101101100 bivouac 5 -010101101100 10-year-olds 5 -010101101100 sleeplessness 6 -010101101100 Gosteleradio 6 -010101101100 Cryptoclearance 6 -010101101100 Camels 7 -010101101100 Midsummer 10 -010101101100 Creditwatch 10 -010101101100 Wednesdays 33 -010101101100 Celsius 35 -010101101100 Tuesdays 40 -010101101100 weekdays 46 -010101101100 Fridays 48 -010101101100 semiannually 50 -010101101100 Thursdays 50 -010101101100 Mondays 77 -010101101100 Saturdays 93 -010101101100 Fahrenheit 129 -010101101100 Sundays 129 -010101101100 Sunday 2252 -010101101100 Saturday 2623 -010101101100 Friday 13547 -010101101100 Thursday 4291 -010101101100 Monday 8087 -010101101100 Wednesday 5796 -010101101100 Tuesday 6827 -010101101101 Cotman 1 -010101101101 stamps. 1 -010101101101 system-pork-barreling 1 -010101101101 Meemies 1 -010101101101 373,494 1 -010101101101 Windwoman 1 -010101101101 gridlocks 1 -010101101101 focusedalmost 1 -010101101101 Inevitable 1 -010101101101 Transbrazil 1 -010101101101 Aviogenex 1 -010101101101 8743063 1 -010101101101 levelly 1 -010101101101 Europefor 1 -010101101101 T.A.S. 1 -010101101101 8725067 1 -010101101101 didemnin-B 1 -010101101101 8728080 1 -010101101101 slammajamma 1 -010101101101 ultrasonically 1 -010101101101 offseason 1 -010101101101 951-889 1 -010101101101 combusts 1 -010101101101 DayTimers 1 -010101101101 1,003,520 1 -010101101101 impersonally 1 -010101101101 partners/creditors 1 -010101101101 Sameness 1 -010101101101 kao 1 -010101101101 sonofabitch 1 -010101101101 Francophiles 1 -010101101101 251,597 1 -010101101101 lullabys 1 -010101101101 4-inch-wide 1 -010101101101 15-25-35 1 -010101101101 2,362,616 1 -010101101101 B-ball 1 -010101101101 faceplate 1 -010101101101 29,078 1 -010101101101 lossses 1 -010101101101 brigading 1 -010101101101 stockades 1 -010101101101 Warschavski 1 -010101101101 inquinans 1 -010101101101 executives-on-loan 1 -010101101101 tourisma 1 -010101101101 Selva 1 -010101101101 Contraband 1 -010101101101 semi-independently 1 -010101101101 Lifebuoy 1 -010101101101 dismissively 1 -010101101101 KOMA-AM/KRXO-FM 1 -010101101101 8803018 1 -010101101101 Supt 1 -010101101101 Middendorp 1 -010101101101 SMA 1 -010101101101 506-390 1 -010101101101 496-378 1 -010101101101 456-423 1 -010101101101 KitKats 1 -010101101101 analsyts 1 -010101101101 536-348 1 -010101101101 201-181 1 -010101101101 abstemiousness 1 -010101101101 Business-Driven 1 -010101101101 Adolescence 1 -010101101101 profit-free 1 -010101101101 Brasted 1 -010101101101 services-ADT 1 -010101101101 583-363 1 -010101101101 biblically 1 -010101101101 Cariaga 1 -010101101101 microturbine 1 -010101101101 Herberg 1 -010101101101 608-386 1 -010101101101 netmen 1 -010101101101 KRCG-TV 1 -010101101101 reprehensibly 1 -010101101101 drop-boxes 1 -010101101101 617.18 1 -010101101101 unseaworthy 1 -010101101101 Saddiq 1 -010101101101 532-439 1 -010101101101 579-395 1 -010101101101 535-438 1 -010101101101 Mevalotin 1 -010101101101 549-411 1 -010101101101 rightie 1 -010101101101 491-383 1 -010101101101 man-hater 1 -010101101101 454-423 1 -010101101101 50,265 1 -010101101101 8824047 1 -010101101101 627-334 1 -010101101101 Cloth 2 -010101101101 1980-1983 2 -010101101101 midwifery 2 -010101101101 91-9 2 -010101101101 Tavist-1 2 -010101101101 aforethought 2 -010101101101 95.15 2 -010101101101 8-3 2 -010101101101 ESB 2 -010101101101 Ceclor 2 -010101101101 Interpress 2 -010101101101 mediations 2 -010101101101 local-area-networks 2 -010101101101 Kodak-Pathe 2 -010101101101 1318.98 2 -010101101101 suppers 2 -010101101101 Imuvert 2 -010101101101 27-14 2 -010101101101 signee 2 -010101101101 69-27 2 -010101101101 95.04 3 -010101101101 yesteray 3 -010101101101 yeterday 3 -010101101101 drily 3 -010101101101 resurged 3 -010101101101 183.50 3 -010101101101 Militia 3 -010101101101 Zeebra 3 -010101101101 49-47 4 -010101101101 yesteday 4 -010101101101 yesterday 34352 -010101101101 Sabatini 7 -0101011011100 descripion 1 -0101011011100 engine-vibration 1 -0101011011100 lawamkers 1 -0101011011100 unsped 1 -0101011011100 peradventure 1 -0101011011100 caulks 1 -0101011011100 flours 1 -0101011011100 measureably 1 -0101011011100 gelignite 1 -0101011011100 Ansari 1 -0101011011100 SOAP 1 -0101011011100 cafeteria-goers 1 -0101011011100 Tommies 1 -0101011011100 Shandong 1 -0101011011100 smudging 1 -0101011011100 cowtalk 1 -0101011011100 cling-film 1 -0101011011100 repoers 1 -0101011011100 resistances 1 -0101011011100 CD-quality 1 -0101011011100 waggishly 1 -0101011011100 somatostatin 1 -0101011011100 restitching 1 -0101011011100 drug-abusers 1 -0101011011100 photolabs 1 -0101011011100 Spinner. 1 -0101011011100 goal-advantages 1 -0101011011100 CS1 1 -0101011011100 undertreatment 1 -0101011011100 ex-patients 1 -0101011011100 MicroStix 1 -0101011011100 Anglophilia 1 -0101011011100 near-crashes 1 -0101011011100 abrazos 1 -0101011011100 Shooter 1 -0101011011100 shockwaves 1 -0101011011100 WBAI-FM 1 -0101011011100 Philadelphia. 1 -0101011011100 public-spiritedness 1 -0101011011100 McCheaper 1 -0101011011100 Joulumaa 1 -0101011011100 Janneau 1 -0101011011100 Imokolee 1 -0101011011100 moorland 1 -0101011011100 Hiago 1 -0101011011100 Multibanco 1 -0101011011100 screw-in 1 -0101011011100 Bluefish 1 -0101011011100 Khomeinism 1 -0101011011100 nonlawyer 1 -0101011011100 intermodalism 1 -0101011011100 Newark-by-the-Bay 1 -0101011011100 sweetenings 1 -0101011011100 Yolu 1 -0101011011100 banklines 1 -0101011011100 beach-by-beach 1 -0101011011100 magnetrons 1 -0101011011100 gurglings 1 -0101011011100 Kelthane 1 -0101011011100 48,847 1 -0101011011100 non-programmers 1 -0101011011100 slothfulness 1 -0101011011100 rightwingers 1 -0101011011100 Somersworth 1 -0101011011100 MCV 1 -0101011011100 burger-cooking 1 -0101011011100 Insightful 1 -0101011011100 front-loaders 1 -0101011011100 drugs-not 1 -0101011011100 belief. 1 -0101011011100 member-countries 1 -0101011011100 Venusharps 1 -0101011011100 autoclaves 1 -0101011011100 dvandvanabhighata 1 -0101011011100 AIDS-type 1 -0101011011100 momentum-building 1 -0101011011100 jockstraps 1 -0101011011100 Newports 1 -0101011011100 Fal-V 1 -0101011011100 drivetrain 1 -0101011011100 2070 1 -0101011011100 Barclaycard 1 -0101011011100 small-towners 1 -0101011011100 30-year-terms 1 -0101011011100 WRGT-TV 1 -0101011011100 blood-therapy 1 -0101011011100 latebloomers 1 -0101011011100 lap-times 1 -0101011011100 AIT 1 -0101011011100 Honfed 1 -0101011011100 Transjordan 1 -0101011011100 Kannon 1 -0101011011100 stereolithography 1 -0101011011100 lezzies 1 -0101011011100 neuroblastoma 1 -0101011011100 garam 1 -0101011011100 pseudo-adventure 1 -0101011011100 C-31G 1 -0101011011100 jurors. 1 -0101011011100 turncoats 1 -0101011011100 racegoers 1 -0101011011100 ketorolac 1 -0101011011100 BursonMarsteller 1 -0101011011100 Ga-Thlose 2 -0101011011100 HDL-cholesterol 2 -0101011011100 Raimu 2 -0101011011100 1,632,028 2 -0101011011100 price-fixers 2 -0101011011100 genuflecting 2 -0101011011100 non-experts 2 -0101011011100 85-15 2 -0101011011100 privacy. 2 -0101011011100 onchocerciasis 2 -0101011011100 Preuves 2 -0101011011100 biodegradability 2 -0101011011100 Telawi 2 -0101011011100 trenchantly 2 -0101011011100 Hereth 2 -0101011011100 Adms 2 -0101011011100 GLYN/NET 2 -0101011011100 glass-edge 2 -0101011011100 circuit-boards 2 -0101011011100 G-4 2 -0101011011100 Cornflakes 2 -0101011011100 profitibility 2 -0101011011100 artemisia 2 -0101011011100 A&B 3 -0101011011100 LP-88 3 -0101011011100 shrouds 3 -0101011011100 Suprax 3 -0101011011100 cordwood 3 -0101011011100 Norbrook 3 -0101011011100 certiorari 3 -0101011011100 bayonets 3 -0101011011100 tachyarrhythmia 3 -0101011011100 sledgehammers 3 -0101011011100 then-Col 3 -0101011011100 chaperone 3 -0101011011100 Astilleros 3 -0101011011100 go. 3 -0101011011100 kielbasa 3 -0101011011100 Newco 4 -0101011011100 Dramamine 4 -0101011011100 so-and-so 4 -0101011011100 grasshoppers 5 -0101011011100 Lentinan 5 -0101011011100 Dagwood 6 -0101011011100 Yogiisms 8 -0101011011100 thee 8 -0101011011100 Apopa 8 -0101011011100 him. 14 -0101011011100 firewood 14 -0101011011100 us. 18 -0101011011100 aloud 57 -0101011011100 him 18490 -0101011011100 us 9518 -0101011011100 me 7016 -0101011011101 returners 1 -0101011011101 payphones 1 -0101011011101 profanity. 1 -0101011011101 1.9030 1 -0101011011101 exam-takers 1 -0101011011101 backrests 1 -0101011011101 thereof. 1 -0101011011101 overtime-related 1 -0101011011101 jongg 1 -0101011011101 banjos 1 -0101011011101 counterlegislation 1 -0101011011101 long-span 1 -0101011011101 God. 1 -0101011011101 4,902 1 -0101011011101 remote. 1 -0101011011101 sumptuousness 1 -0101011011101 corazon 1 -0101011011101 inflation-consciousness 1 -0101011011101 counter-legislation 1 -0101011011101 ClergyCard 1 -0101011011101 cultishness 1 -0101011011101 meeted 1 -0101011011101 BWAC. 1 -0101011011101 sulphur-dioxide 1 -0101011011101 242.10 1 -0101011011101 positives. 1 -0101011011101 Atheism 1 -0101011011101 non-action 1 -0101011011101 Nebenaussenpolitik 1 -0101011011101 sunbeams 1 -0101011011101 insoles 1 -0101011011101 overdesign 1 -0101011011101 loyalties. 1 -0101011011101 biotherapy 1 -0101011011101 potholders 1 -0101011011101 fiveinch 1 -0101011011101 ammends 1 -0101011011101 23-year-olds 1 -0101011011101 toolings 1 -0101011011101 minibureaus 1 -0101011011101 casuistry 1 -0101011011101 reduced-instruction 1 -0101011011101 incompatibles 1 -0101011011101 AEWRs 1 -0101011011101 temporary-residence 1 -0101011011101 non-Latins 1 -0101011011101 contracep 1 -0101011011101 five-layer 1 -0101011011101 price-competition 1 -0101011011101 miserliness 1 -0101011011101 counterblow 1 -0101011011101 drawers. 1 -0101011011101 SOPEC 1 -0101011011101 peaveys 1 -0101011011101 Molsems 1 -0101011011101 FACA 1 -0101011011101 roadshows 1 -0101011011101 Dwarves 1 -0101011011101 XL/ 1 -0101011011101 ENTEL 1 -0101011011101 Navenchauc 1 -0101011011101 1,733,539 1 -0101011011101 Okushava 1 -0101011011101 deprogramming 1 -0101011011101 superscalar 1 -0101011011101 all-text 1 -0101011011101 Speakes-be-Reagan 1 -0101011011101 chidren 1 -0101011011101 CFC-11 1 -0101011011101 follow-ons 1 -0101011011101 PSNH. 1 -0101011011101 filmings 1 -0101011011101 cross-party 1 -0101011011101 bronco 1 -0101011011101 blow-torches 1 -0101011011101 paydays 1 -0101011011101 refuse-derived-fuel 1 -0101011011101 greater-than-ever 1 -0101011011101 disbursesments 1 -0101011011101 retinyl 1 -0101011011101 complexity. 1 -0101011011101 Factor-VIII 1 -0101011011101 ex-Sen 1 -0101011011101 McBreakfast 1 -0101011011101 feather-bedding 1 -0101011011101 life-changing 1 -0101011011101 pigs. 1 -0101011011101 newsracks 1 -0101011011101 supersalespeople 1 -0101011011101 part-interests 1 -0101011011101 housebreaking 1 -0101011011101 marginalia 2 -0101011011101 Scruples 2 -0101011011101 playtime 2 -0101011011101 harmonicas 2 -0101011011101 carrion 2 -0101011011101 second-stringers 2 -0101011011101 shortselling 2 -0101011011101 ethanolamines 2 -0101011011101 alarmism 2 -0101011011101 prices. 2 -0101011011101 unentitled 2 -0101011011101 ripoffs 2 -0101011011101 Euro-products 2 -0101011011101 Strouds 2 -0101011011101 securities. 2 -0101011011101 Resolved 2 -0101011011101 145.02 2 -0101011011101 hari-kari 2 -0101011011101 financing. 2 -0101011011101 farmers. 2 -0101011011101 selfrule 2 -0101011011101 Papeete 2 -0101011011101 signification 2 -0101011011101 21,497.95 2 -0101011011101 tunability 2 -0101011011101 competitivity 2 -0101011011101 Huhudi 2 -0101011011101 high-brow 2 -0101011011101 dandyism 2 -0101011011101 sandostatin 2 -0101011011101 salepeople 2 -0101011011101 non-utilities 2 -0101011011101 MBF 2 -0101011011101 312.8 2 -0101011011101 1,763,000 2 -0101011011101 Eprex 2 -0101011011101 basketballs 2 -0101011011101 non- 2 -0101011011101 eggshells 2 -0101011011101 kachinas 2 -0101011011101 47-seat 2 -0101011011101 Linpack 2 -0101011011101 alkylbenzene 2 -0101011011101 246.80 2 -0101011011101 manicurists 2 -0101011011101 factly 2 -0101011011101 dynamically 2 -0101011011101 21,312.96 2 -0101011011101 241.90 2 -0101011011101 1924-25 2 -0101011011101 Amarante 2 -0101011011101 21,470.20 2 -0101011011101 icky 2 -0101011011101 Wavelength 2 -0101011011101 voiceprints 2 -0101011011101 Betaseron 2 -0101011011101 plant-maintenance 2 -0101011011101 SESDAQ 3 -0101011011101 aimlessness 3 -0101011011101 sunfish 3 -0101011011101 self-congratulations 3 -0101011011101 Enfamil 3 -0101011011101 non-Socialists 3 -0101011011101 xerography 3 -0101011011101 moonshiners 3 -0101011011101 wetting 3 -0101011011101 Kaunas 3 -0101011011101 him/her 3 -0101011011101 albumin 3 -0101011011101 suey 3 -0101011011101 Doomed 3 -0101011011101 Corregidor 3 -0101011011101 humanity-in-general 3 -0101011011101 pantsuits 3 -0101011011101 Kontum 3 -0101011011101 captioning 3 -0101011011101 cornrows 3 -0101011011101 propfans 3 -0101011011101 Karafuto 3 -0101011011101 dribbleware 3 -0101011011101 flurbiprofen 3 -0101011011101 Dumanjug 4 -0101011011101 ghostwriters 4 -0101011011101 SPL 4 -0101011011101 beachgoers 4 -0101011011101 alpha-interferon 4 -0101011011101 ricochets 4 -0101011011101 ouzo 4 -0101011011101 Despond 4 -0101011011101 agranulocytosis 4 -0101011011101 seatbelts 4 -0101011011101 transmittal 4 -0101011011101 prourokinase 5 -0101011011101 birthmarks 5 -0101011011101 Tshikota 6 -0101011011101 bathers 6 -0101011011101 buy-ins 6 -0101011011101 self-experimentation 6 -0101011011101 HFC-134a 6 -0101011011101 somersaults 7 -0101011011101 Ebby 7 -0101011011101 protectively 7 -0101011011101 2443.4 8 -0101011011101 lecithin 8 -0101011011101 WTVJ 19 -0101011011101 polygraphs 19 -0101011011101 them. 20 -0101011011101 home-workers 21 -0101011011101 it. 37 -0101011011101 B.A.T. 47 -0101011011101 them 31313 -0101011011101 'em 238 -01010110111100 civilisatrice 1 -01010110111100 ever-harder 1 -01010110111100 Ahrends 1 -01010110111100 Orota 1 -01010110111100 KNXV-TV 1 -01010110111100 catalog. 1 -01010110111100 high-prescribers 1 -01010110111100 judges. 1 -01010110111100 Castine 1 -01010110111100 Unmasked 1 -01010110111100 20-to-1 1 -01010110111100 leaver 1 -01010110111100 contouring 1 -01010110111100 Riche 1 -01010110111100 gawks 1 -01010110111100 27333 1 -01010110111100 lollygaggers 1 -01010110111100 27813 1 -01010110111100 Celebre 1 -01010110111100 Marinol 1 -01010110111100 predicts. 1 -01010110111100 23:01 1 -01010110111100 27218 1 -01010110111100 27579 1 -01010110111100 Qalquilya 1 -01010110111100 poverty-bound 1 -01010110111100 28034 1 -01010110111100 tittering 1 -01010110111100 slumming 1 -01010110111100 uninstalled 1 -01010110111100 27750 1 -01010110111100 neomycin 1 -01010110111100 communicate. 1 -01010110111100 Thundervolt 1 -01010110111100 Hvoineva 1 -01010110111100 Biomechanics 1 -01010110111100 Nagurski 1 -01010110111100 28063 1 -01010110111100 copyist 1 -01010110111100 Harab 1 -01010110111100 Pressbox 1 -01010110111100 FASTBACs 1 -01010110111100 heil 1 -01010110111100 Kalcheim 1 -01010110111100 headon 1 -01010110111100 kick-boxing 1 -01010110111100 gigging 1 -01010110111100 Bashar 1 -01010110111100 Cadafe 1 -01010110111100 bloomwise 1 -01010110111100 boardgame 1 -01010110111100 Forestiere 1 -01010110111100 Modane 1 -01010110111100 Lorox 1 -01010110111100 estimates. 1 -01010110111100 cupward 1 -01010110111100 down-tooled 1 -01010110111100 96.14 1 -01010110111100 Staline 1 -01010110111100 Dictatorial 1 -01010110111100 attention. 1 -01010110111100 misbehaves 1 -01010110111100 serviceably 1 -01010110111100 tonight. 1 -01010110111100 Prinivil 1 -01010110111100 bullpens 1 -01010110111100 Fundal 1 -01010110111100 Galecron 1 -01010110111100 mid-day 1 -01010110111100 1:18-32 1 -01010110111100 Isoptin-SR 1 -01010110111100 27501 1 -01010110111100 Unifie 1 -01010110111100 aquiver 1 -01010110111100 N-Y-N-E-X 1 -01010110111100 1978-1982 1 -01010110111100 Dzhugashvili 1 -01010110111100 quickly. 1 -01010110111100 Intron-A 1 -01010110111100 unemotionally 1 -01010110111100 Dinkelsbuehl 1 -01010110111100 simultanteously 1 -01010110111100 green-and-yellow 1 -01010110111100 dominate. 1 -01010110111100 De-Reaganization 1 -01010110111100 ParaGard 1 -01010110111100 Dist 1 -01010110111100 Dunnells 1 -01010110111100 Halpert 1 -01010110111100 66-10 1 -01010110111100 crashed. 1 -01010110111100 mousers 1 -01010110111100 isocaproate 1 -01010110111100 Griffin/Muppet 1 -01010110111100 post-Watt 1 -01010110111100 Danocrine 1 -01010110111100 omeprazole 1 -01010110111100 5.8s 1 -01010110111100 comique 1 -01010110111100 WH20. 1 -01010110111100 Syncal 1 -01010110111100 27940 1 -01010110111100 36000 1 -01010110111100 Finexpa 1 -01010110111100 sabres 1 -01010110111100 2a 1 -01010110111100 39B 1 -01010110111100 InterContemporain 1 -01010110111100 Datasoft 1 -01010110111100 Hachiya 1 -01010110111100 inoperant 1 -01010110111100 Co-Renitec 1 -01010110111100 holds. 1 -01010110111100 Isoptin 1 -01010110111100 buffa 1 -01010110111100 Selegiline 1 -01010110111100 28475 1 -01010110111100 Cuauh-te-moc 1 -01010110111100 frothed 1 -01010110111100 Kissettes. 1 -01010110111100 prewashed 1 -01010110111100 Temik 1 -01010110111100 Analisis 1 -01010110111100 Radissons 1 -01010110111100 Kator 1 -01010110111100 CPP/Pinkerton 1 -01010110111100 asparaginase 1 -01010110111100 tribesman 1 -01010110111100 lip-quivering 1 -01010110111100 22240 1 -01010110111100 x2 1 -01010110111100 contest. 1 -01010110111100 impaired. 1 -01010110111100 PolyVision 1 -01010110111100 out-muscled 2 -01010110111100 grottoes 2 -01010110111100 hatchings 2 -01010110111100 attenders 2 -01010110111100 BLI 2 -01010110111100 Sportverein 2 -01010110111100 Nietzche 2 -01010110111100 Straker 2 -01010110111100 decisons 2 -01010110111100 Haugland 2 -01010110111100 waifs 2 -01010110111100 mutinied 2 -01010110111100 Vashem 2 -01010110111100 reports-Unisys 2 -01010110111100 sideshows 2 -01010110111100 Keota 2 -01010110111100 Z-100 2 -01010110111100 hereabout 2 -01010110111100 blubber 2 -01010110111100 business-wise 2 -01010110111100 Bonavent 2 -01010110111100 smoldered 2 -01010110111100 uninjured 2 -01010110111100 REMOVAL 2 -01010110111100 deliberates 3 -01010110111100 Techmashimport 3 -01010110111100 greeters 3 -01010110111100 flacks 3 -01010110111100 Jade 3 -01010110111100 held. 3 -01010110111100 starves 3 -01010110111100 Peptide-T 3 -01010110111100 cooed 3 -01010110111100 dictu 3 -01010110111100 eliminators 3 -01010110111100 facelifts 3 -01010110111100 agape 3 -01010110111100 conversationally 3 -01010110111100 Esmeralda 3 -01010110111100 Abbokinase 3 -01010110111100 Gataoulline 3 -01010110111100 Loyale 3 -01010110111100 Goldbrick 3 -01010110111100 slammers 3 -01010110111100 everywhere. 3 -01010110111100 dry-cleaned 3 -01010110111100 quaked 3 -01010110111100 WCCO 3 -01010110111100 checklists 3 -01010110111100 recurs 4 -01010110111100 HAPPY 4 -01010110111100 goer 4 -01010110111100 retardants 4 -01010110111100 gulped 4 -01010110111100 benders 4 -01010110111100 synonyms 4 -01010110111100 appreciatively 4 -01010110111100 niacin 4 -01010110111100 Testaverde 5 -01010110111100 snatchers 5 -01010110111100 Overtake 5 -01010110111100 thickens 5 -01010110111100 aborning 5 -01010110111100 Daze 5 -01010110111100 chirping 6 -01010110111100 off-guard 6 -01010110111100 warmers 6 -01010110111100 giveth 7 -01010110111100 withers 7 -01010110111100 solvers 7 -01010110111100 culpa 7 -01010110111100 galore 8 -01010110111100 in. 9 -01010110111100 hesitantly 10 -01010110111100 recedes 10 -01010110111100 now. 10 -01010110111100 burners 10 -01010110111100 here. 11 -01010110111100 underfoot 12 -01010110111100 setter 13 -01010110111100 Inform 14 -01010110111100 unturned 15 -01010110111100 squirm 16 -01010110111100 washers 17 -01010110111100 goers 17 -01010110111100 dwindles 20 -01010110111100 abounded 28 -01010110111100 indoors 35 -01010110111100 onstage 36 -01010110111100 thereof 38 -01010110111100 hereabouts 42 -01010110111100 nowadays 127 -01010110111100 abound 177 -01010110111100 whatsoever 180 -01010110111100 alike 420 -01010110111100 here 13874 -01010110111100 everywhere 502 -010101101111010 CVU 1 -010101101111010 defect-free 1 -010101101111010 formation-style 1 -010101101111010 BDNI 1 -010101101111010 RSUWI 1 -010101101111010 LDUWI 1 -010101101111010 strudels 1 -010101101111010 amoebas 1 -010101101111010 herdsman 1 -010101101111010 de-recognition 1 -010101101111010 Marketote 1 -010101101111010 CARTHAGE 1 -010101101111010 Wagneritis 1 -010101101111010 thataway 1 -010101101111010 494-0 1 -010101101111010 UGNE 1 -010101101111010 wrung-out 1 -010101101111010 CAIRO 1 -010101101111010 trhemselves 1 -010101101111010 CELL 1 -010101101111010 listand 1 -010101101111010 unglazed 1 -010101101111010 BNHNU 1 -010101101111010 XPU 1 -010101101111010 KKUWI 1 -010101101111010 GCUWI 1 -010101101111010 RFUWI 1 -010101101111010 V-E-T-O 1 -010101101111010 flagstone 1 -010101101111010 vindictively 1 -010101101111010 XXUWI 1 -010101101111010 HMUWI 1 -010101101111010 HLUWI 1 -010101101111010 voice-recognizer 1 -010101101111010 BZU 1 -010101101111010 conjointly 1 -010101101111010 rumrunners 1 -010101101111010 unwakened 1 -010101101111010 longer. 1 -010101101111010 slantways 1 -010101101111010 standing-growing 1 -010101101111010 anonyously 1 -010101101111010 unattained 1 -010101101111010 Citidollars 1 -010101101111010 ear-to-ear 1 -010101101111010 reciprocally 1 -010101101111010 FLAGSTAFF 1 -010101101111010 MAKANDA 1 -010101101111010 DAVENPORT 1 -010101101111010 hieroglyphs 1 -010101101111010 pro-socialist 1 -010101101111010 countercyclically 1 -010101101111010 Eastern-fast 1 -010101101111010 10th-seeded 1 -010101101111010 g-o-l-d 1 -010101101111010 unviewable 1 -010101101111010 5-feet 1 -010101101111010 blank-again 1 -010101101111010 distibutor 1 -010101101111010 Nightranger 1 -010101101111010 unplowed 1 -010101101111010 Peelu 1 -010101101111010 progress. 1 -010101101111010 prep-riced 1 -010101101111010 Tanning 1 -010101101111010 ballistically 1 -010101101111010 SHCO 1 -010101101111010 feelingly 1 -010101101111010 ATUWI 1 -010101101111010 un-Malay 1 -010101101111010 undefinitive 1 -010101101111010 mega-dollars 1 -010101101111010 undramatized 1 -010101101111010 scapula 1 -010101101111010 KDUWI 1 -010101101111010 GNU 1 -010101101111010 DOUWI 1 -010101101111010 UPUWI 1 -010101101111010 AOUWI 1 -010101101111010 clothing-optional 1 -010101101111010 undelayed 1 -010101101111010 Dorbane 1 -010101101111010 MKUWI 1 -010101101111010 OGUWI 1 -010101101111010 under-reserved 1 -010101101111010 unscaled 1 -010101101111010 NEUF-BRISACH 1 -010101101111010 crosswise 1 -010101101111010 spasmodically 1 -010101101111010 6-feet-4 1 -010101101111010 FCUWI 1 -010101101111010 Kali 1 -010101101111010 segment-oriented 1 -010101101111010 a-laying 1 -010101101111010 paternalistically 1 -010101101111010 DPUW 1 -010101101111010 2,000-50 1 -010101101111010 GUADALAJARA 1 -010101101111010 clothesline-style 1 -010101101111010 870310-0011 1 -010101101111010 UGC-7394 1 -010101101111010 offbalance 1 -010101101111010 state-building 1 -010101101111010 petticoats 1 -010101101111010 Kiryat 1 -010101101111010 RoadRailing 1 -010101101111010 Ptisenbon 1 -010101101111010 anti-Oakland 1 -010101101111010 templates 1 -010101101111010 1-800-IMDYING 1 -010101101111010 indepedent 1 -010101101111010 untracked 1 -010101101111010 agree. 1 -010101101111010 HUHO 1 -010101101111010 SPRINGFIELD 1 -010101101111010 Kentwood 1 -010101101111010 facedown 1 -010101101111010 executive-finance 1 -010101101111010 LP-only 1 -010101101111010 hograisers 1 -010101101111010 firement 1 -010101101111010 CHL 1 -010101101111010 baby-kissing 1 -010101101111010 menstruating 1 -010101101111010 unalive 1 -010101101111010 STARING 1 -010101101111010 NO-PEC 1 -010101101111010 unremedied 1 -010101101111010 idiotically 1 -010101101111010 arm-in-arm 1 -010101101111010 tranquilly 1 -010101101111010 Cine-Fi 1 -010101101111010 1,062-922 1 -010101101111010 Eday 1 -010101101111010 concertina-style 1 -010101101111010 pulsated 1 -010101101111010 operations. 1 -010101101111010 unperformed 1 -010101101111010 audences 1 -010101101111010 Ashkelon 1 -010101101111010 side-tracked 1 -010101101111010 post-Cipollone 1 -010101101111010 non-days 1 -010101101111010 archaically 1 -010101101111010 wingtip-to-wingtip 1 -010101101111010 enchants 2 -010101101111010 Vif 2 -010101101111010 slurping 2 -010101101111010 thwupped 2 -010101101111010 crowbars 2 -010101101111010 supinely 2 -010101101111010 effort. 2 -010101101111010 Serbo-Croatian 2 -010101101111010 larva 2 -010101101111010 flirtatiously 2 -010101101111010 catamarans 2 -010101101111010 Archimedes 2 -010101101111010 suramin 2 -010101101111010 uneaten 2 -010101101111010 refilled 2 -010101101111010 9-12 2 -010101101111010 raptly 2 -010101101111010 adulteress 2 -010101101111010 too. 2 -010101101111010 extemporaneously 2 -010101101111010 assimilates 2 -010101101111010 turfs 2 -010101101111010 Moncayo 2 -010101101111010 1773 2 -010101101111010 jobhunting 2 -010101101111010 pulsates 2 -010101101111010 intermingle 2 -010101101111010 unpoliced 2 -010101101111010 a-twinkle 2 -010101101111010 ratatouille 2 -010101101111010 wimpish 2 -010101101111010 Stallions 2 -010101101111010 uncast 2 -010101101111010 synergistically 2 -010101101111010 wanly 3 -010101101111010 russets 3 -010101101111010 ventricle 3 -010101101111010 cheek-by-jowl 3 -010101101111010 SF 3 -010101101111010 vacillates 3 -010101101111010 sententious 3 -010101101111010 sanctimoniously 3 -010101101111010 uncriticized 3 -010101101111010 riper 3 -010101101111010 WXIN-TV 3 -010101101111010 brunettes 3 -010101101111010 unsaid 3 -010101101111010 unmercifully 3 -010101101111010 magna 3 -010101101111010 seaworthy 3 -010101101111010 beatifically 3 -010101101111010 Adriamycin 3 -010101101111010 again. 3 -010101101111010 miked 3 -010101101111010 clockwise 3 -010101101111010 skyrockets 3 -010101101111010 unasked 3 -010101101111010 gunshy 3 -010101101111010 grouchy 4 -010101101111010 post-forming 4 -010101101111010 unawares 4 -010101101111010 Westphalia 4 -010101101111010 unobserved 4 -010101101111010 aflutter 4 -010101101111010 14- 4 -010101101111010 modernizes 4 -010101101111010 whitefish 4 -010101101111010 codfish 4 -010101101111010 rearming 4 -010101101111010 VLDL 4 -010101101111010 unformed 4 -010101101111010 smolder 5 -010101101111010 agog 5 -010101101111010 coherently 5 -010101101111010 unethically 5 -010101101111010 resound 5 -010101101111010 thinkable 5 -010101101111010 oilers 5 -010101101111010 chest-high 5 -010101101111010 vaccinations 6 -010101101111010 regally 6 -010101101111010 unmolested 6 -010101101111010 unaided 6 -010101101111010 unassisted 7 -010101101111010 vicariously 7 -010101101111010 unremarked 7 -010101101111010 lifes 7 -010101101111010 noirs 8 -010101101111010 Archipelago 8 -010101101111010 undamaged 8 -010101101111010 predominates 8 -010101101111010 uncontrollably 8 -010101101111010 spellbound 9 -010101101111010 dawns 9 -010101101111010 cross-legged 9 -010101101111010 impassively 9 -010101101111010 crackles 9 -010101101111010 unread 10 -010101101111010 fastened 10 -010101101111010 interchangeably 10 -010101101111010 unaddressed 10 -010101101111010 quickens 11 -010101101111010 sparkles 12 -010101101111010 flat-footed 13 -010101101111010 cooperates 16 -010101101111010 fallow 16 -010101101111010 intravenously 17 -010101101111010 prospers 17 -010101101111010 vanishes 17 -010101101111010 sours 18 -010101101111010 unglued 18 -010101101111010 deepens 19 -010101101111010 subsides 20 -010101101111010 afire 22 -010101101111010 undisturbed 25 -010101101111010 deteriorates 31 -010101101111010 adrift 32 -010101101111010 abounds 34 -010101101111010 falters 35 -010101101111010 concurrently 36 -010101101111010 unopposed 39 -010101101111010 aloft 42 -010101101111010 worsens 45 -010101101111010 mum 47 -010101101111010 unfolds 52 -010101101111010 ablaze 53 -010101101111010 activator 54 -010101101111010 awake 65 -010101101111010 unscathed 65 -010101101111010 progresses 72 -010101101111010 untouched 90 -010101101111010 persists 140 -010101101111010 afloat 146 -010101101111010 notwithstanding 193 -010101101111010 intact 385 -010101101111010 forth 496 -010101101111010 alive 589 -010101101111010 together 4328 -010101101111010 alone 2912 -010101101111011 advisedly 1 -010101101111011 gelded 1 -010101101111011 Samanthaphile 1 -010101101111011 isolators 1 -010101101111011 prophylactically 1 -010101101111011 Schlemiel 1 -010101101111011 pro-Semite 1 -010101101111011 zippo 1 -010101101111011 Mike. 1 -010101101111011 management-by-objectives 1 -010101101111011 are. 1 -010101101111011 brokenhearted 1 -010101101111011 reviewed. 1 -010101101111011 out/Heretic 1 -010101101111011 Bo-Diddley 1 -010101101111011 America-in-miniature 1 -010101101111011 reengagements 1 -010101101111011 associations. 1 -010101101111011 2,4-D 1 -010101101111011 dimer 1 -010101101111011 mozarella 1 -010101101111011 frowziness 1 -010101101111011 ex-workers 1 -010101101111011 40,454 1 -010101101111011 war-readiness 1 -010101101111011 refutations 1 -010101101111011 three-years 1 -010101101111011 autodidact 1 -010101101111011 esophagi 1 -010101101111011 E=MC2 1 -010101101111011 2237 1 -010101101111011 unhooked 1 -010101101111011 idiomatically 1 -010101101111011 exports. 1 -010101101111011 Birne 1 -010101101111011 bingxiang 1 -010101101111011 globalists 1 -010101101111011 Pukki 1 -010101101111011 goatmeat-on-a-stick 1 -010101101111011 decaf. 1 -010101101111011 title-holder 1 -010101101111011 2,589,148 1 -010101101111011 frivolities 1 -010101101111011 bushier 1 -010101101111011 voracity 1 -010101101111011 few. 1 -010101101111011 anthologized 1 -010101101111011 unstanched 1 -010101101111011 nation-to-nation 1 -010101101111011 spirit. 1 -010101101111011 framer 1 -010101101111011 before-strike 1 -010101101111011 Tuturno 1 -010101101111011 Feb.9-10 1 -010101101111011 about. 1 -010101101111011 249-172 1 -010101101111011 nonverbally 1 -010101101111011 operatorship 1 -010101101111011 800-554-4477. 1 -010101101111011 dwarves 1 -010101101111011 offsite 1 -010101101111011 time-servers 1 -010101101111011 Kabuki-style 1 -010101101111011 791-729 1 -010101101111011 posthaste 1 -010101101111011 mayoralties 2 -010101101111011 13-10 2 -010101101111011 PPA 2 -010101101111011 Pelargonium 2 -010101101111011 full-circle 2 -010101101111011 acculturation 2 -010101101111011 disgracefully 2 -010101101111011 Tavoy 2 -010101101111011 stomachaches 2 -010101101111011 shimmers 2 -010101101111011 dilated 2 -010101101111011 Doritos 2 -010101101111011 195.82 2 -010101101111011 east-to-west 2 -010101101111011 unobjectionable 2 -010101101111011 Shelfvision 2 -010101101111011 part-way 2 -010101101111011 anti-establishmentarian 2 -010101101111011 tropicals 2 -010101101111011 2,092,000 2 -010101101111011 Bilhah 2 -010101101111011 minimization 2 -010101101111011 CRV 2 -010101101111011 why. 2 -010101101111011 2,045,000 2 -010101101111011 inwards 2 -010101101111011 insolvents 2 -010101101111011 2,043,000 2 -010101101111011 -Ed 2 -010101101111011 oxidizes 2 -010101101111011 Kyprianou 2 -010101101111011 tidily 2 -010101101111011 records. 2 -010101101111011 Dionysus 2 -010101101111011 elsewhere. 2 -010101101111011 tolerantly 2 -010101101111011 clanked 2 -010101101111011 jiggle 2 -010101101111011 Rudolpho 2 -010101101111011 talk. 2 -010101101111011 hollow-eyed 2 -010101101111011 smoking. 2 -010101101111011 ebulliently 2 -010101101111011 ASAPT 2 -010101101111011 alright 2 -010101101111011 commensurately 2 -010101101111011 malabsorption 2 -010101101111011 imploringly 2 -010101101111011 ABK 2 -010101101111011 worshipfully 2 -010101101111011 nauseous 3 -010101101111011 dale 3 -010101101111011 seven. 3 -010101101111011 orgasms 3 -010101101111011 mournfully 3 -010101101111011 insensitively 3 -010101101111011 Morals 3 -010101101111011 for. 3 -010101101111011 1065 3 -010101101111011 snorkel 3 -010101101111011 serendipitously 3 -010101101111011 later. 3 -010101101111011 enough. 3 -010101101111011 Ecclesiastes 3 -010101101111011 enigmatically 3 -010101101111011 back. 3 -010101101111011 smirked 3 -010101101111011 100-fold 3 -010101101111011 2,149,000 3 -010101101111011 cheerily 3 -010101101111011 tuneups 3 -010101101111011 gin-and-tonics 3 -010101101111011 sevens 3 -010101101111011 disapprovingly 3 -010101101111011 retail-wise 3 -010101101111011 seropositive 3 -010101101111011 darkens 3 -010101101111011 multilaterally 4 -010101101111011 putty 4 -010101101111011 abstractly 4 -010101101111011 skateboards 4 -010101101111011 PREE-sus 4 -010101101111011 saucers 4 -010101101111011 absent-mindedly 4 -010101101111011 ............................ 4 -010101101111011 trios 4 -010101101111011 Putsch 4 -010101101111011 swimmingly 4 -010101101111011 takeover-proof 4 -010101101111011 Polyana 4 -010101101111011 WHBQ 4 -010101101111011 accusingly 4 -010101101111011 presto 5 -010101101111011 thistles 5 -010101101111011 shears 5 -010101101111011 Hammerstein 5 -010101101111011 uneventfully 5 -010101101111011 worriedly 5 -010101101111011 expansively 5 -010101101111011 Glib 5 -010101101111011 facetiously 5 -010101101111011 cyanazine 5 -010101101111011 harmlessly 5 -010101101111011 yesterday. 5 -010101101111011 consecutively 5 -010101101111011 wrinkle-resistant 5 -010101101111011 humanely 5 -010101101111011 before. 5 -010101101111011 seashells 5 -010101101111011 undependable 5 -010101101111011 begrudgingly 5 -010101101111011 uncertainly 6 -010101101111011 inconsistently 6 -010101101111011 dishonestly 6 -010101101111011 shyly 6 -010101101111011 incongruously 6 -010101101111011 incredulously 6 -010101101111011 down. 6 -010101101111011 soberly 6 -010101101111011 Mme 7 -010101101111011 hypothetically 7 -010101101111011 alphabetically 7 -010101101111011 you. 7 -010101101111011 pirouettes 7 -010101101111011 up. 8 -010101101111011 scot-free 8 -010101101111011 reverently 8 -010101101111011 contemptuously 8 -010101101111011 offensively 8 -010101101111011 abates 8 -010101101111011 smugly 9 -010101101111011 indignantly 9 -010101101111011 merlot 9 -010101101111011 forthwith 10 -010101101111011 unopened 10 -010101101111011 apologetically 11 -010101101111011 there. 11 -010101101111011 ensues 11 -010101101111011 amiably 11 -010101101111011 speechless 11 -010101101111011 profusely 11 -010101101111011 imploded 11 -010101101111011 externally 12 -010101101111011 unpredictably 12 -010101101111011 honorably 12 -010101101111011 exponentially 14 -010101101111011 imminently 14 -010101101111011 breathlessly 15 -010101101111011 buckles 15 -010101101111011 aplenty 16 -010101101111011 evaporates 17 -010101101111011 impatiently 19 -010101101111011 wanes 20 -010101101111011 haphazardly 20 -010101101111011 unharmed 20 -010101101111011 incessantly 21 -010101101111011 skyward 21 -010101101111011 mechanically 21 -010101101111011 wearily 22 -010101101111011 horizontally 22 -010101101111011 defensively 23 -010101101111011 regionally 24 -010101101111011 triumphantly 25 -010101101111011 materializes 26 -010101101111011 empty-handed 26 -010101101111011 apace 30 -010101101111011 amicably 30 -010101101111011 intermittently 30 -010101101111011 warily 31 -010101101111011 rationally 31 -010101101111011 anyhow 34 -010101101111011 miserably 35 -010101101111011 spontaneously 36 -010101101111011 unabated 36 -010101101111011 rhetorically 36 -010101101111011 anonymously 36 -010101101111011 onscreen 38 -010101101111011 sporadically 39 -010101101111011 patiently 40 -010101101111011 afterwards 47 -010101101111011 momentarily 54 -010101101111011 satisfactorily 58 -010101101111011 softly 58 -010101101111011 ensued 61 -010101101111011 backwards 63 -010101101111011 responsibly 65 -010101101111011 beforehand 71 -010101101111011 peacefully 75 -010101101111011 dearly 77 -010101101111011 globally 81 -010101101111011 briskly 112 -010101101111011 prematurely 113 -010101101111011 anew 128 -010101101111011 accordingly 148 -010101101111011 individually 172 -010101101111011 internally 230 -010101101111011 thereafter 292 -010101101111011 afterward 333 -010101101111011 internationally 392 -010101101111011 differently 404 -010101101111011 nationally 409 -010101101111011 indefinitely 415 -010101101111011 forever 451 -010101101111011 altogether 491 -010101101111011 briefly 530 -010101101111011 anymore 691 -010101101111011 anyway 986 -010101101111011 lately 998 -010101101111011 elsewhere 1567 -010101101111011 abroad 2270 -010101101111011 again 7819 -01010110111110 Dutralene 1 -01010110111110 whodunits 1 -01010110111110 cytotechnology 1 -01010110111110 prognosticating 1 -01010110111110 anti-Islam 1 -01010110111110 intimidators 1 -01010110111110 Fisher/IL 1 -01010110111110 5070447 1 -01010110111110 Geschwitz 1 -01010110111110 selfincrimination 1 -01010110111110 caressingly 1 -01010110111110 white-collar-workers 1 -01010110111110 nonscholars 1 -01010110111110 mackeral 1 -01010110111110 1425-35 1 -01010110111110 strike-busting 1 -01010110111110 resubscribing 1 -01010110111110 take-offs 1 -01010110111110 ripcords 1 -01010110111110 Neurogen 1 -01010110111110 Tijuana-style 1 -01010110111110 cardiomegaly 1 -01010110111110 Manrico 1 -01010110111110 scandalmongering 1 -01010110111110 976-CHAT 1 -01010110111110 T-80s 1 -01010110111110 money-watcher 1 -01010110111110 hara-kari 1 -01010110111110 Dial-A-Writer 1 -01010110111110 Flask 1 -01010110111110 Jochanaan 1 -01010110111110 Jazzercise 1 -01010110111110 banking-credit 1 -01010110111110 alliance-to-alliance 1 -01010110111110 excommunication 1 -01010110111110 Cio-Cio-san 1 -01010110111110 exultingly 1 -01010110111110 pogonotomy 1 -01010110111110 prolifically 1 -01010110111110 CO2 1 -01010110111110 physician-managers 1 -01010110111110 dictatorially 1 -01010110111110 checkerboarded 1 -01010110111110 Dazu 1 -01010110111110 Winstons 1 -01010110111110 N2 1 -01010110111110 front-suspension 1 -01010110111110 non-English-speakers 1 -01010110111110 double-cropping 1 -01010110111110 extraditability 1 -01010110111110 regulation/deregulation 1 -01010110111110 engine-surging 1 -01010110111110 parodias 1 -01010110111110 dial-a-joke 1 -01010110111110 gas-guzzlers 1 -01010110111110 iself 1 -01010110111110 MDphones 1 -01010110111110 Clickers 1 -01010110111110 harikari 1 -01010110111110 alleg 1 -01010110111110 keye/donna/pearlstein 1 -01010110111110 1-800-843-9388 1 -01010110111110 landmines 1 -01010110111110 1-800-283-7800 1 -01010110111110 8-billion-yen 1 -01010110111110 caucusgoers 1 -01010110111110 mycobacterium 1 -01010110111110 less-complete-than-usual 1 -01010110111110 Messr 1 -01010110111110 Akhnaten 1 -01010110111110 everybody. 1 -01010110111110 subtopics 1 -01010110111110 RNs 1 -01010110111110 loss-dumping 1 -01010110111110 Bennettsville 1 -01010110111110 direct-hire 1 -01010110111110 most-dress 1 -01010110111110 sublimity 1 -01010110111110 sleaziness 1 -01010110111110 Vitrax 1 -01010110111110 chelation 1 -01010110111110 Japanese-type 1 -01010110111110 E-III 2 -01010110111110 Shungen 2 -01010110111110 210/24A 2 -01010110111110 luging 2 -01010110111110 requisitions 2 -01010110111110 cryogenics 2 -01010110111110 AD/Cycle 2 -01010110111110 Popsicles 2 -01010110111110 mutely 2 -01010110111110 SunLink 2 -01010110111110 amikacin 2 -01010110111110 Hilarion 2 -01010110111110 Kostadinova 2 -01010110111110 Iotti 2 -01010110111110 48/23 2 -01010110111110 chloracne 2 -01010110111110 Schopenhauer 2 -01010110111110 crossties 2 -01010110111110 themselve 2 -01010110111110 Nonni 2 -01010110111110 indulgently 2 -01010110111110 chomps 2 -01010110111110 entropy 2 -01010110111110 magisterially 2 -01010110111110 teleprinters 2 -01010110111110 lethargically 2 -01010110111110 Carriles 2 -01010110111110 recreationally 2 -01010110111110 bellybutton 2 -01010110111110 deportable 2 -01010110111110 Goneril 2 -01010110111110 formularies 2 -01010110111110 ferrets 2 -01010110111110 ANPP 2 -01010110111110 bunts 2 -01010110111110 Salieri 3 -01010110111110 clippers 3 -01010110111110 Tipple 3 -01010110111110 cheek-to-cheek 3 -01010110111110 Orachel 3 -01010110111110 Dex 3 -01010110111110 besuboru 3 -01010110111110 N-Bloctin 3 -01010110111110 exultantly 3 -01010110111110 SmartLease 3 -01010110111110 voraciously 4 -01010110111110 Neenah 4 -01010110111110 Clausewitz 4 -01010110111110 roughage 4 -01010110111110 Leafy 4 -01010110111110 Calypso 4 -01010110111110 nonoxynol-9 4 -01010110111110 Dermo 4 -01010110111110 Leninism 4 -01010110111110 enshrining 4 -01010110111110 airily 4 -01010110111110 oiling 4 -01010110111110 recitatives 4 -01010110111110 orgotein 4 -01010110111110 protons 5 -01010110111110 cogently 5 -01010110111110 professorships 5 -01010110111110 tendon 5 -01010110111110 creditably 5 -01010110111110 originalism 5 -01010110111110 alibis 6 -01010110111110 alight 6 -01010110111110 sandpaper 6 -01010110111110 civilly 6 -01010110111110 Kisan 6 -01010110111110 Venie 6 -01010110111110 ostriches 9 -01010110111110 intersect 11 -01010110111110 helplessly 13 -01010110111110 biz 15 -01010110111110 CD-Vs 17 -01010110111110 oneself 23 -01010110111110 gallstones 28 -01010110111110 yourselves 32 -01010110111110 awhile 116 -01010110111110 grabs 140 -01010110111110 yourself 474 -01010110111110 herself 567 -01010110111110 myself 681 -01010110111110 ourselves 723 -01010110111110 itself 6583 -01010110111110 themselves 5118 -01010110111110 himself 4882 -01010110111111 Luchetti 1 -01010110111111 PrePaid 1 -01010110111111 Primm 1 -01010110111111 Sjadzali 1 -01010110111111 1659 1 -01010110111111 Gutzeit 1 -01010110111111 fatuities 1 -01010110111111 sanguinarine 1 -01010110111111 decision-by-decision 1 -01010110111111 card. 1 -01010110111111 clinically. 1 -01010110111111 youself 1 -01010110111111 2054 1 -01010110111111 Aug.31 1 -01010110111111 Quisling 1 -01010110111111 archimandrite 1 -01010110111111 Reveille 1 -01010110111111 salves 1 -01010110111111 Sarasate 1 -01010110111111 legionnaire 1 -01010110111111 1995-96 1 -01010110111111 ShinDaiwa 1 -01010110111111 GISSI-2. 1 -01010110111111 prize-fighting 1 -01010110111111 northwest. 1 -01010110111111 accident-proneness 1 -01010110111111 veto-resistant 1 -01010110111111 deficit-tough 1 -01010110111111 Alexandrov 1 -01010110111111 4-chloro-2 1 -01010110111111 lota 1 -01010110111111 Heer 1 -01010110111111 Feb.23-27 1 -01010110111111 veggies 1 -01010110111111 thyself 1 -01010110111111 Patlagean 1 -01010110111111 79,249 1 -01010110111111 Rashovich 1 -01010110111111 Suitor 1 -01010110111111 Ixion 1 -01010110111111 24,292 1 -01010110111111 w/RR 1 -01010110111111 Pursuits 1 -01010110111111 pocus 1 -01010110111111 IR-88-23 1 -01010110111111 beanies 1 -01010110111111 B-I-G 1 -01010110111111 328-72 1 -01010110111111 Shostakovitch 1 -01010110111111 fabrications. 1 -01010110111111 CD/M&A 1 -01010110111111 Compute 1 -01010110111111 surchages 1 -01010110111111 something/That 1 -01010110111111 pincushioning 1 -01010110111111 process-design 1 -01010110111111 midstate 1 -01010110111111 itsshareholders 1 -01010110111111 firer 1 -01010110111111 Guber-Peter 1 -01010110111111 program-supply 1 -01010110111111 taken. 1 -01010110111111 tomorrow. 1 -01010110111111 Yoshitora 1 -01010110111111 94.80 2 -01010110111111 backsliders 2 -01010110111111 imports. 2 -01010110111111 together. 2 -01010110111111 sangioveto 2 -01010110111111 fare-setting 2 -01010110111111 21,176.03 2 -01010110111111 Videoway 2 -01010110111111 Salen 2 -01010110111111 Wheatena 2 -01010110111111 write-ins 2 -01010110111111 Treckie 2 -01010110111111 Ragalyi 2 -01010110111111 spongers 2 -01010110111111 AT&T. 2 -01010110111111 hippos 2 -01010110111111 exhumation 2 -01010110111111 PVCs 2 -01010110111111 Secoinsa 2 -01010110111111 Ogura 2 -01010110111111 Piranesi 2 -01010110111111 GISSI-2 2 -01010110111111 culler 2 -01010110111111 serially 2 -01010110111111 Ektachrome 2 -01010110111111 scurvy 2 -01010110111111 genesplicing 2 -01010110111111 themselves. 2 -01010110111111 Scoobydoo 2 -01010110111111 charge. 2 -01010110111111 1384.04 2 -01010110111111 Ferenczi 2 -01010110111111 KCET 2 -01010110111111 surgery. 3 -01010110111111 indiscreetly 3 -01010110111111 Newtex 3 -01010110111111 balderdash 3 -01010110111111 Began 3 -01010110111111 ERT 3 -01010110111111 tommorow 3 -01010110111111 decaf 3 -01010110111111 Mepco 3 -01010110111111 2-4-D 3 -01010110111111 itself. 3 -01010110111111 midazolam 3 -01010110111111 peacemakers 3 -01010110111111 Primaxin 3 -01010110111111 Sunette 3 -01010110111111 Agretech 3 -01010110111111 Sieglinde 3 -01010110111111 ever. 3 -01010110111111 Josipovic 3 -01010110111111 JAIL 4 -01010110111111 Kachoos 4 -01010110111111 upperclassmen 4 -01010110111111 94-2 4 -01010110111111 transcriptase 4 -01010110111111 Spim 4 -01010110111111 afresh 4 -01010110111111 Talleyrand 4 -01010110111111 Scarpia 5 -01010110111111 Ristretto 5 -01010110111111 A&T 5 -01010110111111 today. 5 -01010110111111 WQUE 6 -01010110111111 semiotics 6 -01010110111111 Despina 6 -01010110111111 tommorrow 7 -01010110111111 tokenism 7 -01010110111111 Constantinople 7 -01010110111111 Leonora 8 -01010110111111 daminozide 9 -01010110111111 over-allotments 25 -01010110111111 overallotments 52 -01010110111111 tonight 327 -01010110111111 today 11252 -01010110111111 tomorrow 2731 -010101110000 enticingly 1 -010101110000 Cretan 1 -010101110000 97-foot-tall 1 -010101110000 140-year-old 1 -010101110000 5-cent-a-gallon 1 -010101110000 45-match 1 -010101110000 one-sidedly 1 -010101110000 egocentrically 1 -010101110000 one-stroke 1 -010101110000 solid-looking 1 -010101110000 Best-Dressed 1 -010101110000 singles-hitting 1 -010101110000 lodgers 1 -010101110000 blue-suit 1 -010101110000 before-watch 1 -010101110000 cable-competitive 1 -010101110000 attack-a 1 -010101110000 demythify 1 -010101110000 2.8-mile 1 -010101110000 lousy/ 1 -010101110000 six-dozen 1 -010101110000 Bahrainian 1 -010101110000 hard-swinging 1 -010101110000 claustrophobically 1 -010101110000 sugar-sweetened 1 -010101110000 small-L 1 -010101110000 dark-brown 1 -010101110000 16-percentage-point 1 -010101110000 tiredlooking 1 -010101110000 thin-sided 1 -010101110000 waifish 1 -010101110000 three-stroke 1 -010101110000 seven-foot-tall 1 -010101110000 five-hour-long 1 -010101110000 108-year-old 1 -010101110000 four-carat 1 -010101110000 American-inspired 1 -010101110000 invitingly 1 -010101110000 wackily 1 -010101110000 schlemiel 1 -010101110000 inch-and-a-half 1 -010101110000 26-to-1 1 -010101110000 unswervingly 1 -010101110000 six-run 1 -010101110000 1980-style 1 -010101110000 real-honest-to-God 1 -010101110000 submicroscopically 1 -010101110000 resultingly 1 -010101110000 scorchingly 1 -010101110000 natural-looking 1 -010101110000 most-pressing 1 -010101110000 unthinkably 1 -010101110000 chrome-colored 1 -010101110000 100-megabyte 1 -010101110000 300-megabyte 1 -010101110000 decolonizing 1 -010101110000 circumstancially 1 -010101110000 one-run 1 -010101110000 seeingness 1 -010101110000 insipidly 1 -010101110000 spoon-petaled 1 -010101110000 exessively 1 -010101110000 blondbearded 1 -010101110000 once-unthinkably 1 -010101110000 indomitably 1 -010101110000 unrelentingly 1 -010101110000 4,640-mile 1 -010101110000 crimp-haired 1 -010101110000 drunk-tank 1 -010101110000 wobbly-wheeled 1 -010101110000 out-of-this-world 1 -010101110000 106,000-ton 1 -010101110000 1,131,721-share 1 -010101110000 pro-derelict 1 -010101110000 hula-hoop 1 -010101110000 75-66 1 -010101110000 1,024,562-share 1 -010101110000 40-pound 1 -010101110000 glass-lens 1 -010101110000 fallen-away 1 -010101110000 214-year-old 1 -010101110000 soft-on-defense 1 -010101110000 Majorica 1 -010101110000 wage-structure 1 -010101110000 110-outlet 1 -010101110000 stultifyingly 1 -010101110000 single-color 1 -010101110000 3.5-knot 1 -010101110000 pulverizingly 1 -010101110000 two-on-one 1 -010101110000 disgustingly 1 -010101110000 hard-up 1 -010101110000 2,200-kilometer 1 -010101110000 then-200 1 -010101110000 endemically 1 -010101110000 archfiend 1 -010101110000 ignobly 1 -010101110000 post-reform 1 -010101110000 U.S.-organized 1 -010101110000 non-capital 1 -010101110000 plumminess 1 -010101110000 double-wind-up 1 -010101110000 nine-figure 1 -010101110000 insensately 1 -010101110000 super-rifle 1 -010101110000 weed-ridden 1 -010101110000 inexpressibly 1 -010101110000 non-fruiting 1 -010101110000 Goddamn 1 -010101110000 seven-carat 1 -010101110000 topflight 1 -010101110000 radio-tagged 1 -010101110000 Connecticut-sized 1 -010101110000 stone-like 1 -010101110000 FOOTBALL 1 -010101110000 77-59 1 -010101110000 seal-oil 1 -010101110000 one-second 1 -010101110000 nuclear-fueled 1 -010101110000 Carrara 1 -010101110000 49-3 1 -010101110000 politico-psychologically 1 -010101110000 medical-practice 1 -010101110000 224-bed 1 -010101110000 park-bench 1 -010101110000 chubby-faced 1 -010101110000 pothead 1 -010101110000 fast-tracking 1 -010101110000 hot-sheets 1 -010101110000 16,500-foot 1 -010101110000 dressed-up 1 -010101110000 hand-embroidered 1 -010101110000 fatalistically 1 -010101110000 identifiably 1 -010101110000 unexceptionably 1 -010101110000 grape-flavored 1 -010101110000 1,589-944 1 -010101110000 turquoise-studded 1 -010101110000 becomed 1 -010101110000 telekinetic 1 -010101110000 office-and-apartment 1 -010101110000 mythologized 1 -010101110000 purse-holsters 1 -010101110000 offshore-discovery 1 -010101110000 quarter-carat 1 -010101110000 11-carat 1 -010101110000 Cuban-style 1 -010101110000 oil-tank 1 -010101110000 stemwinding 1 -010101110000 10-game 1 -010101110000 18,000-worker 1 -010101110000 abhorrently 1 -010101110000 corrosively 1 -010101110000 up-to-now 1 -010101110000 non-consecutive 1 -010101110000 203-bed 1 -010101110000 noncritically 1 -010101110000 1,443 1 -010101110000 waist-length 1 -010101110000 pink-and-beige 1 -010101110000 island-wide 1 -010101110000 50th-percentile 1 -010101110000 contagiously 1 -010101110000 Extraordinarily 1 -010101110000 surpriseat 1 -010101110000 nine-game 1 -010101110000 ordered-prepaid-two 1 -010101110000 immigrant-run 1 -010101110000 filthy-rich 1 -010101110000 usual-pretty 1 -010101110000 Wishful 1 -010101110000 as-yet-unpublished 1 -010101110000 rain-drenched 1 -010101110000 Gangetic 1 -010101110000 1.1-million-share 1 -010101110000 68-60 1 -010101110000 lean-over-backwards 1 -010101110000 nine-million-share 1 -010101110000 preponderantly 1 -010101110000 worrisomely 1 -010101110000 36-horse 1 -010101110000 14-ton 1 -010101110000 strong-jawed 1 -010101110000 hydroponic 1 -010101110000 ice-dancing 1 -010101110000 mindbogglingly 1 -010101110000 420,000-bushel 1 -010101110000 interlockings 1 -010101110000 33,000-barrel-a-day 1 -010101110000 quarter-term 1 -010101110000 debilitatingly 1 -010101110000 seven-months 1 -010101110000 four-by-six-foot 1 -010101110000 poll-defying 1 -010101110000 county-guaranteed 1 -010101110000 tigerish 1 -010101110000 1,747 1 -010101110000 2,110,700 1 -010101110000 lullaby 1 -010101110000 dirty-green 1 -010101110000 Conradically 1 -010101110000 barge-transported 1 -010101110000 London-educated 1 -010101110000 Moroccan-born 1 -010101110000 territorially 1 -010101110000 rock-rib 1 -010101110000 poison-control 1 -010101110000 unshakably 1 -010101110000 88-octane 1 -010101110000 vexingly 1 -010101110000 retakes 1 -010101110000 unbashedly 1 -010101110000 periodicity 1 -010101110000 diachronically 1 -010101110000 pathologically 1 -010101110000 Damascus-based 1 -010101110000 26-foot 1 -010101110000 Campaigned 1 -010101110000 Respirar 1 -010101110000 Trans-Pecos 1 -010101110000 Fed-engineered 1 -010101110000 fervant 1 -010101110000 teleological 1 -010101110000 chemise 1 -010101110000 still-commanding 1 -010101110000 socio-economically 1 -010101110000 Dearly 1 -010101110000 10-percentage-point 1 -010101110000 more-natural 1 -010101110000 Religiously 1 -010101110000 crashingly 1 -010101110000 problem-the 1 -010101110000 seven-percentage-point 1 -010101110000 infernally 1 -010101110000 glum-looking 1 -010101110000 minifactory 1 -010101110000 audaciously 1 -010101110000 unnervingly 1 -010101110000 Sanctimonious 1 -010101110000 wayward-looking 1 -010101110000 sunlight-simulating 1 -010101110000 dizzyingly 1 -010101110000 150-megabyte 1 -010101110000 670-megabyte 1 -010101110000 Republican-inspired 1 -010101110000 resource-wasting 1 -010101110000 longer-than-average 1 -010101110000 nightmarishly 1 -010101110000 gratingly 1 -010101110000 meditation-loving 1 -010101110000 receivera 1 -010101110000 smoothed-muscled 1 -010101110000 vase-shaped 1 -010101110000 overusing 1 -010101110000 110-foot 1 -010101110000 immuno 1 -010101110000 pinkish-gray 1 -010101110000 wellnigh 1 -010101110000 neurotically 1 -010101110000 fly-fisherman 1 -010101110000 half-week 1 -010101110000 slavedriving 1 -010101110000 terrier-like 1 -010101110000 unsurpassedly 1 -010101110000 four-act 1 -010101110000 benign-looking 1 -010101110000 12-square-mile 1 -010101110000 man-and-a-half 1 -010101110000 unbitably 1 -010101110000 unspeakably 2 -010101110000 terrifyingly 2 -010101110000 stupefyingly 2 -010101110000 out-of-place 2 -010101110000 gratifyingly 2 -010101110000 fascinatingly 2 -010101110000 amorously 2 -010101110000 hip-grinding 2 -010101110000 compactly 2 -010101110000 vanishingly 2 -010101110000 silver-painted 2 -010101110000 by-now 2 -010101110000 extemely 2 -010101110000 6-foot-8-inch 2 -010101110000 luxuriously 2 -010101110000 one-calorie 2 -010101110000 arithmetically 2 -010101110000 unusally 2 -010101110000 bio-proteotone 2 -010101110000 geologically 2 -010101110000 nine-party 2 -010101110000 unmanageably 2 -010101110000 deceivingly 2 -010101110000 nihonteki 2 -010101110000 union-controlled 2 -010101110000 unsatisfactorily 2 -010101110000 unsentimentally 2 -010101110000 humiliatingly 2 -010101110000 calorie-and-cholesterol-free 2 -010101110000 yellow-billed 2 -010101110000 developmentally 2 -010101110000 hellishly 2 -010101110000 rabidly 2 -010101110000 heartbreakingly 2 -010101110000 pivotally 2 -010101110000 inhumanly 2 -010101110000 sickeningly 2 -010101110000 antistatist 2 -010101110000 rampantly 2 -010101110000 blazingly 2 -010101110000 unconscionably 2 -010101110000 thorough-going 2 -010101110000 office-hotel 2 -010101110000 unseasonally 2 -010101110000 glacially 2 -010101110000 consummately 3 -010101110000 leprous 3 -010101110000 not-at-all 3 -010101110000 dreadfully 3 -010101110000 exhilaratingly 3 -010101110000 well-nigh 3 -010101110000 oppressively 3 -010101110000 danse 3 -010101110000 boringly 3 -010101110000 unrelievedly 3 -010101110000 wrenchingly 3 -010101110000 irrepressibly 3 -010101110000 atypically 3 -010101110000 undesirably 3 -010101110000 irrefutably 3 -010101110000 unsually 3 -010101110000 electorally 3 -010101110000 passably 4 -010101110000 triply 4 -010101110000 incomparably 4 -010101110000 infinitesimally 4 -010101110000 ever-more 4 -010101110000 primum 4 -010101110000 drolly 4 -010101110000 incurably 4 -010101110000 unprecedentedly 4 -010101110000 choreographically 4 -010101110000 fiendishly 4 -010101110000 forbiddingly 4 -010101110000 endearingly 4 -010101110000 tolerably 4 -010101110000 discouragingly 4 -010101110000 dauntingly 4 -010101110000 calculatedly 4 -010101110000 unremittingly 4 -010101110000 Kinda 4 -010101110000 exaggeratedly 4 -010101110000 questionably 4 -010101110000 formidably 4 -010101110000 blessedly 4 -010101110000 staggeringly 5 -010101110000 numbingly 5 -010101110000 shamefully 5 -010101110000 suprisingly 5 -010101110000 outlandishly 5 -010101110000 acceptably 5 -010101110000 dazzlingly 5 -010101110000 achingly 5 -010101110000 restlessly 5 -010101110000 journalistically 5 -010101110000 therapeutically 5 -010101110000 unnaturally 6 -010101110000 ruinously 6 -010101110000 exorbitantly 6 -010101110000 Neanderthal 6 -010101110000 devastatingly 6 -010101110000 les 6 -010101110000 screamingly 6 -010101110000 preposterously 6 -010101110000 devilishly 7 -010101110000 distinctively 7 -010101110000 ruggedly 7 -010101110000 enfant 7 -010101110000 hauntingly 7 -010101110000 artifically 7 -010101110000 distressingly 7 -010101110000 lushly 7 -010101110000 deathly 7 -010101110000 uncannily 8 -010101110000 memorably 8 -010101110000 deliciously 8 -010101110000 ultra 8 -010101110000 agonizingly 8 -010101110000 abysmally 9 -010101110000 confusingly 9 -010101110000 outwardly 9 -010101110000 disarmingly 9 -010101110000 analytically 9 -010101110000 irresistibly 10 -010101110000 breathtakingly 10 -010101110000 40-megabyte 10 -010101110000 one-count 10 -010101110000 fantastically 10 -010101110000 unbearably 10 -010101110000 unjustifiably 10 -010101110000 wickedly 10 -010101110000 appallingly 10 -010101110000 tantalizingly 10 -010101110000 darned 11 -010101110000 ludicrously 11 -010101110000 pitifully 11 -010101110000 fashionably 11 -010101110000 depressingly 12 -010101110000 gloriously 12 -010101110000 unsustainably 13 -010101110000 maddeningly 13 -010101110000 hilariously 13 -010101110000 frighteningly 15 -010101110000 disturbingly 15 -010101110000 uncommonly 16 -010101110000 supremely 16 -010101110000 excruciatingly 17 -010101110000 fabulously 17 -010101110000 impossibly 19 -010101110000 intrinsically 19 -010101110000 ridiculously 20 -010101110000 embarrassingly 21 -010101110000 inordinately 21 -010101110000 shockingly 21 -010101110000 unseasonably 21 -010101110000 singularly 21 -010101110000 startlingly 21 -010101110000 absurdly 23 -010101110000 disappointingly 23 -010101110000 outrageously 24 -010101110000 vitally 24 -010101110000 unbelievably 25 -010101110000 deceptively 26 -010101110000 suspiciously 27 -010101110000 eerily 28 -010101110000 astonishingly 29 -010101110000 unacceptably 29 -010101110000 amazingly 30 -010101110000 alarmingly 30 -010101110000 phenomenally 30 -010101110000 uncomfortably 31 -010101110000 perilously 35 -010101110000 correspondingly 36 -010101110000 uncharacteristically 37 -010101110000 unrealistically 37 -010101110000 eminently 46 -010101110000 darn 49 -010101110000 doubly 49 -010101110000 abnormally 49 -010101110000 patently 50 -010101110000 unreasonably 52 -010101110000 wonderfully 55 -010101110000 woefully 59 -010101110000 strikingly 64 -010101110000 wishful 67 -010101110000 exceedingly 78 -010101110000 immensely 79 -010101110000 chronically 79 -010101110000 downright 95 -010101110000 statistically 101 -010101110000 awfully 106 -010101110000 distinctly 107 -010101110000 excessively 114 -010101110000 decidedly 135 -010101110000 notoriously 139 -010101110000 dangerously 146 -010101110000 comparatively 147 -010101110000 inherently 147 -010101110000 incredibly 164 -010101110000 mutually 193 -010101110000 extraordinarily 200 -010101110000 exceptionally 202 -010101110000 terribly 209 -010101110000 grossly 269 -010101110000 remarkably 273 -010101110000 overly 376 -010101110000 perfectly 447 -010101110000 reasonably 498 -010101110000 unexpectedly 501 -010101110000 surprisingly 784 -010101110000 unusually 966 -010101110000 fairly 1393 -010101110000 extremely 1664 -010101110000 pretty 2205 -010101110000 very 16502 -010101110000 relatively 3756 -0101011100010 ENTAIL 1 -0101011100010 cancelable 1 -0101011100010 PROCEEDS 1 -0101011100010 SGS. 1 -0101011100010 molests 1 -0101011100010 indescribably 1 -0101011100010 five-length 1 -0101011100010 half-war 1 -0101011100010 Raisuli 1 -0101011100010 self-recrimination 1 -0101011100010 swordfights 1 -0101011100010 radicalisms 1 -0101011100010 plastic-and-fiberglass 1 -0101011100010 conceptionally 1 -0101011100010 higher-private 1 -0101011100010 two-shot 1 -0101011100010 FANG. 1 -0101011100010 companionably 1 -0101011100010 broil 1 -0101011100010 inhales 1 -0101011100010 six-people 1 -0101011100010 gnashes 1 -0101011100010 ex-franchisees 1 -0101011100010 Glenn-are 1 -0101011100010 middle-term 1 -0101011100010 rivetingly 1 -0101011100010 /transformed 1 -0101011100010 Imrene 2 -0101011100010 regressing 2 -0101011100010 Engesa 2 -0101011100010 nags 2 -0101011100010 ere 2 -0101011100010 maximally 2 -0101011100010 Isro 2 -0101011100010 caregiver 2 -0101011100010 nakedly 3 -0101011100010 what-have-you 3 -0101011100010 buffering 3 -0101011100010 well-acted 3 -0101011100010 Lineup 4 -0101011100010 so 29279 -0101011100010 admonishing 6 -0101011100011 29.62 1 -0101011100011 threateningly 1 -0101011100011 deli-style 1 -0101011100011 24-23 1 -0101011100011 .03-second 1 -0101011100011 WGPH-TV 1 -0101011100011 pre-Gilbert 1 -0101011100011 rallyed 1 -0101011100011 barkeeps 1 -0101011100011 long-maned 1 -0101011100011 268-foot 1 -0101011100011 refighting 1 -0101011100011 2.9948 1 -0101011100011 half-capacity 1 -0101011100011 unaffordably 1 -0101011100011 oxidize 1 -0101011100011 record-buyers 1 -0101011100011 fistally 1 -0101011100011 tetraethyl 1 -0101011100011 escapeway 1 -0101011100011 2.9827 1 -0101011100011 223.71 1 -0101011100011 5-foot-7-inches 1 -0101011100011 untypically 1 -0101011100011 neo-modern 1 -0101011100011 Occupation-style 1 -0101011100011 bamboozling 1 -0101011100011 ae 1 -0101011100011 26928.82 1 -0101011100011 4-feet-8-inches 1 -0101011100011 repaneling 1 -0101011100011 rightand 1 -0101011100011 price-controllers 1 -0101011100011 3.1233 1 -0101011100011 bruinish 1 -0101011100011 40-ish 1 -0101011100011 uppossibly 1 -0101011100011 erned 1 -0101011100011 re-entrench 1 -0101011100011 unresealable 1 -0101011100011 WEIGHING 1 -0101011100011 nitrate-laden 1 -0101011100011 Othello 2 -0101011100011 thwup 2 -0101011100011 sooo 2 -0101011100011 croaked 2 -0101011100011 Drixoral 2 -0101011100011 Vench 2 -0101011100011 uncompetitively 2 -0101011100011 childishly 2 -0101011100011 irresistable 2 -0101011100011 Libertine 2 -0101011100011 bemusedly 2 -0101011100011 disppointed 2 -0101011100011 snakily 2 -0101011100011 swill 3 -0101011100011 Ravier 3 -0101011100011 ROVs 3 -0101011100011 fogies 3 -0101011100011 despairingly 3 -0101011100011 beer-swilling 3 -0101011100011 imploding 3 -0101011100011 insanely 4 -0101011100011 gesticulating 4 -0101011100011 frustratingly 4 -0101011100011 boyishly 4 -0101011100011 figureheads 5 -0101011100011 stylistically 5 -0101011100011 unreadable 6 -0101011100011 horrendously 7 -0101011100011 chewy 7 -0101011100011 nigh 11 -0101011100011 Dimetapp 16 -0101011100011 too 16042 -0101011100011 anytime 288 -010101110010 RESPONDING 1 -010101110010 rust-and-green 1 -010101110010 yuppie-moguls 1 -010101110010 PREPARING 1 -010101110010 UNDETERRED 1 -010101110010 zurui 1 -010101110010 finaglings 1 -010101110010 towheads 1 -010101110010 line-standing 1 -010101110010 Baring/But 1 -010101110010 NEEDED 1 -010101110010 five-album 1 -010101110010 sex-phobic 1 -010101110010 higher-reward 1 -010101110010 DETERMINED 1 -010101110010 teeth-gnashing 1 -010101110010 victimse 1 -010101110010 front-stoop 1 -010101110010 une 1 -010101110010 Pan-Pacific 1 -010101110010 whole-heartedly 1 -010101110010 Cadum 1 -010101110010 owner-tenants 1 -010101110010 probaby 1 -010101110010 preplacing 1 -010101110010 eco-evangelists 1 -010101110010 big-big 1 -010101110010 CHALLENGED 1 -010101110010 f--- 1 -010101110010 lenders-was 1 -010101110010 121,653 1 -010101110010 NBC-Sears 1 -010101110010 proactively 1 -010101110010 little-boy 1 -010101110010 uncoached 1 -010101110010 34-20 1 -010101110010 cheapo 1 -010101110010 ajury 1 -010101110010 dust-streaked 1 -010101110010 juss 1 -010101110010 ve-ry 1 -010101110010 meagerly 1 -010101110010 nverhav 1 -010101110010 single-proprietorships 1 -010101110010 bucketshops 1 -010101110010 219-211 2 -010101110010 verifiably 2 -010101110010 P.A.s 2 -010101110010 impotently 2 -010101110010 56-game 2 -010101110010 expostulate 3 -010101110010 inescapably 3 -010101110010 SEEKING 3 -010101110010 98-0 3 -010101110010 ineluctably 4 -010101110010 'tis 4 -010101110010 temperamentally 8 -010101110010 unavoidably 10 -010101110010 EXPECTED 16 -010101110010 not 54062 -010101110010 gonna 76 -01010111001100 whadda 1 -01010111001100 well-scarred 1 -01010111001100 preregistered 1 -01010111001100 116.2645082 1 -01010111001100 pre-saging 1 -01010111001100 well-performed 1 -01010111001100 oneliners 1 -01010111001100 end-over-end 1 -01010111001100 jouiniana 1 -01010111001100 demandingand 1 -01010111001100 Circe 1 -01010111001100 Appreciably 1 -01010111001100 MISCALCULATED 1 -01010111001100 unstratified 1 -01010111001100 stripsearched 1 -01010111001100 tenses 1 -01010111001100 Trekker 1 -01010111001100 IVANs 1 -01010111001100 re-form 1 -01010111001100 double-hopped 1 -01010111001100 nonseriousness 1 -01010111001100 Mitscherlich 1 -01010111001100 much-advocated 1 -01010111001100 Tarabu 1 -01010111001100 socialistically 1 -01010111001100 21,867 1 -01010111001100 Woomera 1 -01010111001100 Speke 1 -01010111001100 Gordana 1 -01010111001100 debacleeven 1 -01010111001100 fulla 1 -01010111001100 59,200 1 -01010111001100 kaffeeklatsch 1 -01010111001100 25,251 1 -01010111001100 Shemona 1 -01010111001100 shinguards 1 -01010111001100 profession-and 1 -01010111001100 step-father 1 -01010111001100 Ragbrai 1 -01010111001100 HUBER 1 -01010111001100 Apis 1 -01010111001100 slighter 1 -01010111001100 questioning- 1 -01010111001100 co-invest 1 -01010111001100 fucntions 1 -01010111001100 subscriber-scaring 1 -01010111001100 anti-ethic 1 -01010111001100 Evelyne 2 -01010111001100 sizably 2 -01010111001100 kibitz 2 -01010111001100 often-unprofitable 2 -01010111001100 maillot 2 -01010111001100 bawdily 2 -01010111001100 pout 3 -01010111001100 stupidly 3 -01010111001100 Neve 3 -01010111001100 incomprehensibly 4 -01010111001100 medflies 4 -01010111001100 even 24610 -01010111001100 infinitely 58 -010101110011010 treed-in 1 -010101110011010 patent-leather-shiny 1 -010101110011010 lipoplasty 1 -010101110011010 Black-Scholes 1 -010101110011010 cool-hearted 1 -010101110011010 KPIX 1 -010101110011010 2-inches 1 -010101110011010 Antilles-proof 1 -010101110011010 unusual-and 1 -010101110011010 186-bed 1 -010101110011010 waxily 1 -010101110011010 swimmingdom 1 -010101110011010 anguishings 1 -010101110011010 Ill.- 1 -010101110011010 flattest 1 -010101110011010 zig-zagging 1 -010101110011010 ProfitTaker 1 -010101110011010 calf-high 1 -010101110011010 pennypinching 1 -010101110011010 psalmists 1 -010101110011010 3-inches 1 -010101110011010 semi-farcical 1 -010101110011010 utility-produced 1 -010101110011010 zero-degree 1 -010101110011010 radiopharmacists 1 -010101110011010 watchfully 1 -010101110011010 1-inch 1 -010101110011010 contingently 1 -010101110011010 slushed 1 -010101110011010 green-striped 1 -010101110011010 1,100-student 1 -010101110011010 medicinally 1 -010101110011010 stomach-pumped 1 -010101110011010 mansarded 1 -010101110011010 Shinmun 1 -010101110011010 power-oriented 1 -010101110011010 BRILLIANTLY 1 -010101110011010 IVE 1 -010101110011010 shiveringly 1 -010101110011010 parasitically 1 -010101110011010 re-LBO 1 -010101110011010 sturdier-looking 1 -010101110011010 necktie-wearing 1 -010101110011010 modern/Tory 1 -010101110011010 chicly 1 -010101110011010 ballpoints 1 -010101110011010 12,675 1 -010101110011010 14,177 1 -010101110011010 longhaired 1 -010101110011010 walli 1 -010101110011010 media-babble 1 -010101110011010 horticulturally 1 -010101110011010 triple-blade 1 -010101110011010 introspectively 1 -010101110011010 improvment 1 -010101110011010 think-alike 1 -010101110011010 sale-purchases 1 -010101110011010 trampy 1 -010101110011010 deflationist 1 -010101110011010 7/16. 1 -010101110011010 OncoTrac 1 -010101110011010 big-taxing 1 -010101110011010 sharp-jawed 1 -010101110011010 cherce 1 -010101110011010 10-foot-tall 1 -010101110011010 snaggle-toothed 1 -010101110011010 anti-little 1 -010101110011010 wispy-haired 1 -010101110011010 reapportioned 1 -010101110011010 13,497 1 -010101110011010 75,411 1 -010101110011010 necklines 1 -010101110011010 all-expenses 1 -010101110011010 particuarly 1 -010101110011010 unbidden 2 -010101110011010 suavely 2 -010101110011010 intitially 2 -010101110011010 district-by-district 2 -010101110011010 coldbloodedly 2 -010101110011010 conk 2 -010101110011010 anachronistically 2 -010101110011010 primarly 2 -010101110011010 currrently 2 -010101110011010 creakily 2 -010101110011010 B-747 2 -010101110011010 35,922 2 -010101110011010 differentially 3 -010101110011010 UCF 3 -010101110011010 grimacing 3 -010101110011010 assemblages 3 -010101110011010 copiously 3 -010101110011010 begotten 3 -010101110011010 Mitsubishis 3 -010101110011010 1,198 4 -010101110011010 dully 5 -010101110011010 movingly 7 -010101110011010 predominately 16 -010101110011010 bordered 18 -010101110011010 smack 48 -010101110011010 nominally 56 -010101110011010 ostensibly 117 -010101110011010 chiefly 206 -010101110011010 principally 349 -010101110011010 partially 422 -010101110011010 solely 594 -010101110011010 primarily 2606 -010101110011010 mainly 3179 -010101110011010 mostly 3545 -010101110011010 largely 4822 -010101110011010 partly 3707 -0101011100110110 wimpiness 1 -0101011100110110 polically 1 -0101011100110110 girlishly 1 -0101011100110110 precision-engineered 1 -0101011100110110 KTXL 1 -0101011100110110 abidingly 1 -0101011100110110 seat-shakingly 1 -0101011100110110 Passably 1 -0101011100110110 ex-Bayreuth 1 -0101011100110110 broker-to-broker 1 -0101011100110110 brickishly 1 -0101011100110110 despicably 1 -0101011100110110 mind-bogglingly 1 -0101011100110110 irreligious 1 -0101011100110110 Intimidate 1 -0101011100110110 encumbers 1 -0101011100110110 yard-deep 1 -0101011100110110 spotlessly 1 -0101011100110110 Pentagon-style 1 -0101011100110110 Instituting 1 -0101011100110110 vulnerably 1 -0101011100110110 guilefully 1 -0101011100110110 Ensure 1 -0101011100110110 sedulously 1 -0101011100110110 Brahmsian 1 -0101011100110110 football-sized 1 -0101011100110110 65,536 1 -0101011100110110 seismically 1 -0101011100110110 Virulent 1 -0101011100110110 Terminates 1 -0101011100110110 ash-colored 1 -0101011100110110 437-unit 1 -0101011100110110 60,583 1 -0101011100110110 shair-design 1 -0101011100110110 holographically 1 -0101011100110110 famished 1 -0101011100110110 non-Fina 1 -0101011100110110 Horse-play 1 -0101011100110110 surreally 1 -0101011100110110 nixing 1 -0101011100110110 inconsolable 1 -0101011100110110 visting 1 -0101011100110110 7,822 1 -0101011100110110 eight-hotel 1 -0101011100110110 school-year 1 -0101011100110110 Backpedal 1 -0101011100110110 Gephardt-type 1 -0101011100110110 revealingly 2 -0101011100110110 unhealthily 2 -0101011100110110 paticularly 2 -0101011100110110 impermeable 2 -0101011100110110 Archangelsk 2 -0101011100110110 Designates 2 -0101011100110110 comparison-shopping 2 -0101011100110110 reprising 2 -0101011100110110 KROQ-FM 2 -0101011100110110 Ga 2 -0101011100110110 half-buried 2 -0101011100110110 -is 2 -0101011100110110 IIA 2 -0101011100110110 290-pound 2 -0101011100110110 ferroelectronic 2 -0101011100110110 decreasingly 2 -0101011100110110 monstrously 2 -0101011100110110 bulkily 2 -0101011100110110 KTWV-FM 2 -0101011100110110 WWBA-FM 2 -0101011100110110 customer-driven 2 -0101011100110110 KMID 2 -0101011100110110 smooching 2 -0101011100110110 crushingly 2 -0101011100110110 Landed 2 -0101011100110110 expecially 3 -0101011100110110 Immad 3 -0101011100110110 trivially 3 -0101011100110110 sorta 3 -0101011100110110 evocatively 3 -0101011100110110 all-too-often 3 -0101011100110110 particularily 3 -0101011100110110 glass-sheathed 3 -0101011100110110 reenacting 4 -0101011100110110 swatting 4 -0101011100110110 delighting 6 -0101011100110110 fermented 7 -0101011100110110 unadulterated 11 -0101011100110110 particulary 12 -0101011100110110 culminating 62 -0101011100110110 albeit 296 -0101011100110110 notably 528 -0101011100110110 particularly 5183 -0101011100110110 especially 5368 -0101011100110111 narrow-issue 1 -0101011100110111 1,444,800 1 -0101011100110111 Forbid 1 -0101011100110111 photographs. 1 -0101011100110111 dirty-blond 1 -0101011100110111 compensible 1 -0101011100110111 collectivize 1 -0101011100110111 malapportionments 1 -0101011100110111 TUXX 1 -0101011100110111 noncontrolling 1 -0101011100110111 domineered 1 -0101011100110111 limited-term 1 -0101011100110111 debars 1 -0101011100110111 stashed-away 1 -0101011100110111 2,948 1 -0101011100110111 bag-person 1 -0101011100110111 1,440,500 1 -0101011100110111 outearns 1 -0101011100110111 asset-buyer 1 -0101011100110111 ascertainable 1 -0101011100110111 big-defense 1 -0101011100110111 Rebating 1 -0101011100110111 property-income 1 -0101011100110111 High-volume 1 -0101011100110111 KNOWN 1 -0101011100110111 69,283 1 -0101011100110111 Rubens. 1 -0101011100110111 123,200 1 -0101011100110111 Prohibits 1 -0101011100110111 debt-less-excess 1 -0101011100110111 profit-motivated 1 -0101011100110111 vandalizing 1 -0101011100110111 mnus 1 -0101011100110111 family-out 1 -0101011100110111 technical-based 1 -0101011100110111 Money-launderer 1 -0101011100110111 rsponsible 1 -0101011100110111 de-glitz 1 -0101011100110111 bullet-like 1 -0101011100110111 PROVED 1 -0101011100110111 morasses 1 -0101011100110111 predeliction 1 -0101011100110111 pantherine 1 -0101011100110111 testfired 1 -0101011100110111 non-viable 1 -0101011100110111 45,100 1 -0101011100110111 mendicants 2 -0101011100110111 blowoff 2 -0101011100110111 1,111 2 -0101011100110111 comradely 2 -0101011100110111 Awakened 2 -0101011100110111 deep-sixing 2 -0101011100110111 forbearing 2 -0101011100110111 nationalizes 2 -0101011100110111 unimaginably 2 -0101011100110111 unpublishable 2 -0101011100110111 minister-counselor 2 -0101011100110111 Establish 2 -0101011100110111 Allerest 2 -0101011100110111 mistrusting 3 -0101011100110111 flicked 3 -0101011100110111 cliche-ridden 3 -0101011100110111 13,300 3 -0101011100110111 push-ups 3 -0101011100110111 inconveniencing 4 -0101011100110111 gimme 4 -0101011100110111 affixing 4 -0101011100110111 hummed 4 -0101011100110111 Prostin 5 -0101011100110111 ergo 5 -0101011100110111 skied 5 -0101011100110111 punchy 6 -0101011100110111 Refused 8 -0101011100110111 Prohibit 9 -0101011100110111 Impose 9 -0101011100110111 60,000-mile 11 -0101011100110111 Extend 13 -0101011100110111 portending 21 -0101011100110111 gesturing 23 -0101011100110111 Require 23 -0101011100110111 preferably 70 -0101011100110111 wounding 72 -0101011100110111 minus 578 -0101011100110111 maybe 1183 -0101011100110111 possibly 2045 -0101011100110111 except 2232 -0101011100110111 plus 2961 -0101011100110111 perhaps 3503 -01010111001110 back-ordered 1 -01010111001110 marine-oil-field 1 -01010111001110 re-bid 1 -01010111001110 liabilitiies 1 -01010111001110 fan-pleasing 1 -01010111001110 28,121,192 1 -01010111001110 aboiut 1 -01010111001110 falling-outs 1 -01010111001110 upscaled 1 -01010111001110 flexibility-and 1 -01010111001110 Resisted 1 -01010111001110 wise/And 1 -01010111001110 work-places 1 -01010111001110 peelings 1 -01010111001110 Gaynors 1 -01010111001110 PL 1 -01010111001110 literal-mindedness 1 -01010111001110 Sarhua 1 -01010111001110 sub-leasing 1 -01010111001110 rechecks 1 -01010111001110 1985-about 1 -01010111001110 highfidelity 1 -01010111001110 drench 1 -01010111001110 over-analyze 1 -01010111001110 not-quite 1 -01010111001110 redlined 1 -01010111001110 Briney 1 -01010111001110 course-and 1 -01010111001110 rechristen 1 -01010111001110 nonAIDS 1 -01010111001110 reprocure 1 -01010111001110 skiied 1 -01010111001110 overindebtedness 1 -01010111001110 outplays 1 -01010111001110 interlinking 1 -01010111001110 unchangedat 1 -01010111001110 fudge-filled 1 -01010111001110 hallucinogens 1 -01010111001110 selfcorrecting 1 -01010111001110 soapboxes 1 -01010111001110 demonstratively 1 -01010111001110 shoring-up 1 -01010111001110 941,357 1 -01010111001110 4/ 1 -01010111001110 chinchillas 1 -01010111001110 4,314 1 -01010111001110 outcleans 1 -01010111001110 flunky 1 -01010111001110 thermoses 2 -01010111001110 slathering 2 -01010111001110 -and 2 -01010111001110 more-than 2 -01010111001110 3,176 2 -01010111001110 Dixville 2 -01010111001110 Naberezhnaya 2 -01010111001110 virtualy 2 -01010111001110 sandwiching 2 -01010111001110 numero 3 -01010111001110 abducting 3 -01010111001110 Kilometer 4 -01010111001110 rebid 8 -01010111001110 MARRIED 10 -01010111001110 Prop 19 -01010111001110 Prop. 29 -01010111001110 practically 548 -01010111001110 approximately 1184 -01010111001110 virtually 1409 -01010111001110 roughly 2152 -01010111001110 nearly 8823 -01010111001110 almost 8313 -010101110011110 exlude 1 -010101110011110 meriting 1 -010101110011110 NICE. 1 -010101110011110 survey-takers 1 -010101110011110 Guilties 1 -010101110011110 channel-zapping 1 -010101110011110 poor-mouth 1 -010101110011110 cry/Keep 1 -010101110011110 misstepped 1 -010101110011110 informaton 1 -010101110011110 satisifed 1 -010101110011110 stressfully 1 -010101110011110 newsfolks 1 -010101110011110 canabilizing 1 -010101110011110 good-heartedness 1 -010101110011110 86-76 2 -010101110011110 older-skewing 2 -010101110011110 movie-actor 2 -010101110011110 weak-armed 2 -010101110011110 uncorking 2 -010101110011110 L-shaped 2 -010101110011110 21.98 2 -010101110011110 chivalrously 2 -010101110011110 unction 3 -010101110011110 Pasteje 3 -010101110011110 nattering 4 -010101110011110 flatfooted 4 -010101110011110 Tronacarb 5 -010101110011110 troll 6 -010101110011110 only 37840 -010101110011110 nary 23 -010101110011111 seasonnaly 1 -010101110011111 negativesthey 1 -010101110011111 boated 1 -010101110011111 Policromo 1 -010101110011111 pay-as-you 1 -010101110011111 perfomance 1 -010101110011111 catch-as-catch 1 -010101110011111 Starlanes 1 -010101110011111 30-feet 1 -010101110011111 government-dictated 1 -010101110011111 overwarning 1 -010101110011111 televisionland 1 -010101110011111 preambles 1 -010101110011111 SERVE 1 -010101110011111 Riviere 2 -010101110011111 visualized 2 -010101110011111 GT-2000 2 -010101110011111 onna 3 -010101110011111 cognizable 3 -010101110011111 nostalgically 4 -010101110011111 towered 4 -010101110011111 just 21244 -010101110011111 herewith 4 -010101110100 allencompassing 1 -010101110100 garbalogists 1 -010101110100 adobe-brick-making 1 -010101110100 Hypo-Clear 1 -010101110100 co-writer 1 -010101110100 Bergdorf-Goodman 1 -010101110100 9/16-inch 1 -010101110100 phylloxera 1 -010101110100 micro-injection 1 -010101110100 outbulked 1 -010101110100 ultra-clean 1 -010101110100 cynical-motivated 1 -010101110100 DHPG 1 -010101110100 Cytovene 1 -010101110100 wire-redemption 1 -010101110100 Tacjam 1 -010101110100 weathervanes 1 -010101110100 sludgy 1 -010101110100 anti-women 1 -010101110100 usual. 1 -010101110100 uncareful 1 -010101110100 discriminatory. 1 -010101110100 conization 1 -010101110100 Soquem 1 -010101110100 pre-breathing 1 -010101110100 cannon-fodder 1 -010101110100 businesschange 1 -010101110100 pigheaded 1 -010101110100 0.6889 1 -010101110100 ogles 1 -010101110100 conductive 1 -010101110100 real. 1 -010101110100 neocolonialists 1 -010101110100 nonpictorial 1 -010101110100 Anneliese 1 -010101110100 332.50 1 -010101110100 TickeTellers 1 -010101110100 anti-constitutional 1 -010101110100 BBL 1 -010101110100 photopolymerization 1 -010101110100 SLUGs 1 -010101110100 Ivest 1 -010101110100 microcontrollers 1 -010101110100 manoalide 1 -010101110100 pseudopterosins 1 -010101110100 Pacman 1 -010101110100 PAIN 1 -010101110100 pre-used 1 -010101110100 aniseed 1 -010101110100 toxin-free 1 -010101110100 wig-wearers 1 -010101110100 Unicet 1 -010101110100 maturely 1 -010101110100 vomitoxin 1 -010101110100 footstools 1 -010101110100 catchalls 1 -010101110100 many. 1 -010101110100 Tofranil 1 -010101110100 6025B 1 -010101110100 12/98 1 -010101110100 wayf 1 -010101110100 Usual 1 -010101110100 Hicom 1 -010101110100 Perryopolis 1 -010101110100 CD-1 1 -010101110100 closely. 1 -010101110100 2000.00 1 -010101110100 retagged 1 -010101110100 bankruptive 1 -010101110100 tenseness 1 -010101110100 idolatrous 1 -010101110100 31,574 1 -010101110100 blinis 1 -010101110100 tortes 1 -010101110100 ACR 1 -010101110100 Nordtrom 1 -010101110100 1184.58 1 -010101110100 beginning. 1 -010101110100 Eoin 1 -010101110100 undenied 1 -010101110100 unneighborly 1 -010101110100 SCATologists 1 -010101110100 Demopoulos 1 -010101110100 10-to-10 1 -010101110100 1.7955 1 -010101110100 141.68 1 -010101110100 unfeminine 1 -010101110100 2385.1 1 -010101110100 FIBV 1 -010101110100 longlasting 1 -010101110100 Chamberline 1 -010101110100 familiar-sounding 1 -010101110100 pollwatchers 1 -010101110100 fly-tying 1 -010101110100 raindrops 1 -010101110100 burgoo 1 -010101110100 Jordan. 1 -010101110100 disk-drives 1 -010101110100 pseudofolliculitis 1 -010101110100 co-driver 1 -010101110100 simit 1 -010101110100 suprofen 1 -010101110100 enalapril 1 -010101110100 shrink-proof 1 -010101110100 A-T-O 1 -010101110100 Tuvalu 1 -010101110100 286.50 1 -010101110100 Capezio 1 -010101110100 F-14Ds 1 -010101110100 invalidism 1 -010101110100 radioimmunoassay 1 -010101110100 picture-telephones 1 -010101110100 ALE 1 -010101110100 retinoids 1 -010101110100 wild. 1 -010101110100 slummy 1 -010101110100 GRAPEFRUITS 1 -010101110100 circumstantial. 1 -010101110100 265.00 1 -010101110100 250.00 1 -010101110100 Enke 1 -010101110100 0.5552 1 -010101110100 pro-Catholic 1 -010101110100 unsporting 1 -010101110100 increasily 1 -010101110100 287.00 1 -010101110100 Magnavision 1 -010101110100 ribaminol 1 -010101110100 something-for-everyone 1 -010101110100 pre-apprentices 1 -010101110100 FreezeFrame 1 -010101110100 neutrinos 1 -010101110100 antiprotons 1 -010101110100 phunny 1 -010101110100 un-self-consciously 1 -010101110100 secretaries. 1 -010101110100 Qualicare 1 -010101110100 Denver-Bozeman 1 -010101110100 crypto-warmongers 1 -010101110100 E-COM 1 -010101110100 E2PLDs 1 -010101110100 Ojars 1 -010101110100 Towncenter 1 -010101110100 sharpish 1 -010101110100 canstock 1 -010101110100 liasion 1 -010101110100 Malizoo 1 -010101110100 contra-indicators 1 -010101110100 Florestan 1 -010101110100 lender-employer 1 -010101110100 414,750 1 -010101110100 repellant 1 -010101110100 money-intensive 1 -010101110100 Principal-Only 1 -010101110100 Kodak-san 1 -010101110100 wine-growers 1 -010101110100 fakey 1 -010101110100 crypto-communications 1 -010101110100 AN/SLQ-32 1 -010101110100 inflation-fighters 1 -010101110100 275.90 1 -010101110100 citizen-of-the-world 1 -010101110100 stunned. 1 -010101110100 trustingly 1 -010101110100 WDIV-TV 1 -010101110100 Gwendell 1 -010101110100 pre-requisites 1 -010101110100 seriously. 1 -010101110100 well-automated 1 -010101110100 1274.91 1 -010101110100 tricksy 1 -010101110100 Rostock 1 -010101110100 kaisers 1 -010101110100 Seemed 1 -010101110100 Pitfall 1 -010101110100 anarchical 1 -010101110100 Dairen 1 -010101110100 cooperators 1 -010101110100 54.0 1 -010101110100 underhedged 1 -010101110100 Wallendas 1 -010101110100 primacord 1 -010101110100 un-campaign 1 -010101110100 pro-expropriation 1 -010101110100 media-indifferent 1 -010101110100 autofocusing 1 -010101110100 Cauca 1 -010101110100 skreeking 1 -010101110100 pedometers 1 -010101110100 scruffily 1 -010101110100 DBI 1 -010101110100 windbags 1 -010101110100 Youngchang 1 -010101110100 2021.5 1 -010101110100 propellents 1 -010101110100 1940-ish 1 -010101110100 7-by-3-inches 1 -010101110100 torch-waving 1 -010101110100 308.70 1 -010101110100 blunderers 1 -010101110100 plunderers 1 -010101110100 gender-conscious 1 -010101110100 waqfs 1 -010101110100 kneejerks 1 -010101110100 Petroline 1 -010101110100 Norina 1 -010101110100 risible 1 -010101110100 Shani 1 -010101110100 tattletales 1 -010101110100 biogenetics 1 -010101110100 made-for-home-video 1 -010101110100 over-committed 1 -010101110100 gamete 1 -010101110100 Telemaco 1 -010101110100 Eumete 1 -010101110100 84-26 1 -010101110100 34/32 1 -010101110100 bracketeers 1 -010101110100 zestfully 1 -010101110100 PSO/Delphi 1 -010101110100 Katahdin 1 -010101110100 kimpap 1 -010101110100 Plumrose 1 -010101110100 radiosensitizers 1 -010101110100 weak. 1 -010101110100 sing-along-without-substance 1 -010101110100 Compelling 1 -010101110100 Falke 1 -010101110100 uncorrupt 1 -010101110100 456.49 1 -010101110100 goiter 1 -010101110100 single-B-plus/single-B 1 -010101110100 unvisited 1 -010101110100 macrophagescells 1 -010101110100 Datacomp 1 -010101110100 no-men 1 -010101110100 So-Lite 1 -010101110100 Dunyasha 1 -010101110100 Firs 1 -010101110100 HEMTTs 1 -010101110100 reader-friendly 1 -010101110100 motorscooters 1 -010101110100 oro 1 -010101110100 overselves 1 -010101110100 expeditously 1 -010101110100 owners/managers 1 -010101110100 cockatoos 1 -010101110100 toadying 1 -010101110100 unfitting 1 -010101110100 EDSA 1 -010101110100 Jackson-Shaw 1 -010101110100 toity 1 -010101110100 yogobabble 1 -010101110100 Koevoet 1 -010101110100 gruesomely 1 -010101110100 WTKR-TV 1 -010101110100 unsteadily 1 -010101110100 stonewallers 1 -010101110100 All-Stars 1 -010101110100 Rathole 1 -010101110100 rabiblancos 1 -010101110100 282-1375 1 -010101110100 mahi-mahi 1 -010101110100 ITX 1 -010101110100 tax-cheap 1 -010101110100 self-revealing 1 -010101110100 alkalines 1 -010101110100 service-sensitive 1 -010101110100 1826.8 1 -010101110100 restoratives 1 -010101110100 WWOR-9 1 -010101110100 SADUSEA 1 -010101110100 pillowcases 1 -010101110100 mini-companies 1 -010101110100 PetroJam 1 -010101110100 Mennonites 1 -010101110100 never-weres 1 -010101110100 pyrroloquinoline 1 -010101110100 Bolanter 1 -010101110100 Labotec 1 -010101110100 quasi-homosexuals 1 -010101110100 reformist-liberal 1 -010101110100 vendidos 1 -010101110100 pochos 1 -010101110100 twent-yfold 1 -010101110100 tangencies 1 -010101110100 fraud-resistant 1 -010101110100 SRA/Pergamon 1 -010101110100 jacuzzis 1 -010101110100 prepping 1 -010101110100 Digalen 1 -010101110100 depresssing 1 -010101110100 DM5,000 1 -010101110100 DM6,000 1 -010101110100 stochastics 1 -010101110100 1184.61 1 -010101110100 Atlanta-Portland-Seoul 1 -010101110100 Giorgetta 1 -010101110100 documentarian 1 -010101110100 catsup 1 -010101110100 Bila 1 -010101110100 WNEW-FM 1 -010101110100 Korkeasaari 1 -010101110100 MOPP 1 -010101110100 different. 1 -010101110100 11a-3 1 -010101110100 anti-building 1 -010101110100 balanced. 1 -010101110100 pro-Taiwanese 1 -010101110100 factory-fresh 1 -010101110100 fenoldopam 1 -010101110100 441.91 1 -010101110100 over-exposed 1 -010101110100 EquiFlex 1 -010101110100 anti-fascism 1 -010101110100 Immies 1 -010101110100 Peppo 1 -010101110100 Potsie 1 -010101110100 M-85 1 -010101110100 income-providers 1 -010101110100 lodestar 1 -010101110100 Vu/Text 1 -010101110100 Smithfields 1 -010101110100 taxi-drivers 1 -010101110100 240.40 1 -010101110100 cladding 1 -010101110100 Golaud 2 -010101110100 conurbation 2 -010101110100 well-tuned 2 -010101110100 idiopathic 2 -010101110100 1,893,000 2 -010101110100 ignominiously 2 -010101110100 musclemen 2 -010101110100 Teiresias 2 -010101110100 troopships 2 -010101110100 monocyte-macrophages 2 -010101110100 Engenheiros 2 -010101110100 tonsillectomies 2 -010101110100 1,355,898 2 -010101110100 snugly 2 -010101110100 tarte 2 -010101110100 Montblanc 2 -010101110100 mifepristone 2 -010101110100 Kabanicha 2 -010101110100 Pamina 2 -010101110100 manipulable 2 -010101110100 president-for-life 2 -010101110100 OUCH 2 -010101110100 co-inventors 3 -010101110100 courteously 3 -010101110100 phosphorothioates 3 -010101110100 obdurate 3 -010101110100 unobtrusively 3 -010101110100 Santuzza 3 -010101110100 giri 3 -010101110100 laser-printers 3 -010101110100 isotretinoin 3 -010101110100 CFC-12 3 -010101110100 astir 3 -010101110100 barratry 3 -010101110100 p24 3 -010101110100 outpatients 5 -010101110100 Cavaradossi 5 -010101110100 cartwheels 5 -010101110100 well 19186 -010101110100 Deadly 6 -0101011101010 contract-basis 1 -0101011101010 fleshless 1 -0101011101010 Souplantation 1 -0101011101010 RID 1 -0101011101010 1,269 1 -0101011101010 Brylcreem 1 -0101011101010 well-for 1 -0101011101010 whey 1 -0101011101010 unreflective 1 -0101011101010 intersectional 1 -0101011101010 sportings 1 -0101011101010 limousined 1 -0101011101010 thick-wooled 1 -0101011101010 unstereotypical 1 -0101011101010 SPOTs 1 -0101011101010 Boart-MSA 1 -0101011101010 membership-renewal 1 -0101011101010 pricy 1 -0101011101010 well-something 1 -0101011101010 1930s-bred 1 -0101011101010 then-booming 1 -0101011101010 muchy 1 -0101011101010 whinging 1 -0101011101010 owner-tenant 1 -0101011101010 director-corporate 1 -0101011101010 polyvinylidene 1 -0101011101010 Einsteinian 1 -0101011101010 nonkosher 1 -0101011101010 gray-flannel-suited 1 -0101011101010 1784.50 1 -0101011101010 nondepreciable 1 -0101011101010 brick-wall 1 -0101011101010 leather-wrapped 1 -0101011101010 fivetimes 1 -0101011101010 KFAC-FM 1 -0101011101010 goldarned 1 -0101011101010 overemoting 1 -0101011101010 well-bid 1 -0101011101010 DM2,000 1 -0101011101010 she-crab 1 -0101011101010 minnow-like 1 -0101011101010 male-earnings 1 -0101011101010 anyhydrous 1 -0101011101010 dayold 1 -0101011101010 beef-and-citrus 1 -0101011101010 predicates 2 -0101011101010 CASA 2 -0101011101010 attention-attracting 2 -0101011101010 surface-mounted 2 -0101011101010 cogon 2 -0101011101010 overleveraging 2 -0101011101010 Marinespeak 2 -0101011101010 Desenex 2 -0101011101010 misrun 3 -0101011101010 joyously 3 -0101011101010 depraved 3 -0101011101010 much 31909 -0101011101010 dimwitted 4 -0101011101011 five-oh-eight 1 -0101011101011 mind-blowing 1 -0101011101011 disgusted. 1 -0101011101011 intimitated 1 -0101011101011 impetuously 1 -0101011101011 off-nights 1 -0101011101011 FOOTS 1 -0101011101011 earnings-spooked 1 -0101011101011 overcool 1 -0101011101011 forth. 1 -0101011101011 explicitly. 1 -0101011101011 reinspected 1 -0101011101011 FIDO 1 -0101011101011 skittering 1 -0101011101011 often. 1 -0101011101011 wiling 1 -0101011101011 PCGG 1 -0101011101011 PAYING 1 -0101011101011 pubby 1 -0101011101011 YODER 1 -0101011101011 meteorically 1 -0101011101011 Khanyile 1 -0101011101011 non-IBMers 1 -0101011101011 half-a-world 1 -0101011101011 21,528 1 -0101011101011 froufrou 1 -0101011101011 somesuch 1 -0101011101011 superstabilized 1 -0101011101011 3-13 1 -0101011101011 cosmically 1 -0101011101011 Cabbie 1 -0101011101011 nose-diving 1 -0101011101011 gigantically 1 -0101011101011 Muddah 1 -0101011101011 munchy 1 -0101011101011 prosperously 1 -0101011101011 distraught. 1 -0101011101011 Demur 1 -0101011101011 actressy 1 -0101011101011 obvious. 1 -0101011101011 unauthentic 1 -0101011101011 Shying 1 -0101011101011 refugee-ride 1 -0101011101011 pro-urokinase 1 -0101011101011 cheap-near 1 -0101011101011 desparate 1 -0101011101011 Insistence 1 -0101011101011 self-assuredly 1 -0101011101011 Swallows 1 -0101011101011 Charo 1 -0101011101011 kerplunk 1 -0101011101011 dog-tired 1 -0101011101011 open-textured 1 -0101011101011 pro-inflation 1 -0101011101011 singer-friendly 1 -0101011101011 under-fertilization 1 -0101011101011 over-fertilization 1 -0101011101011 Suspected. 1 -0101011101011 KDKA-TV 1 -0101011101011 fast-dialing 1 -0101011101011 --but 1 -0101011101011 well-loved 1 -0101011101011 far-down 1 -0101011101011 anti-entertainment 1 -0101011101011 anti-hype 1 -0101011101011 stretchy 1 -0101011101011 de-unionizing 1 -0101011101011 yachties 1 -0101011101011 flu-sufferers 1 -0101011101011 all-but-ignored 1 -0101011101011 Pollizzi 1 -0101011101011 pitchy 1 -0101011101011 uncountered 1 -0101011101011 laugh. 1 -0101011101011 information-rich 1 -0101011101011 insinuatingly 1 -0101011101011 obstreperously 1 -0101011101011 romantic. 1 -0101011101011 slow. 1 -0101011101011 No.3 1 -0101011101011 Htin 1 -0101011101011 38-31 1 -0101011101011 Octoberfest 1 -0101011101011 distributionally 1 -0101011101011 labor- 1 -0101011101011 word-processors 2 -0101011101011 ineffectively 2 -0101011101011 curios 2 -0101011101011 Enalapril 2 -0101011101011 racier 2 -0101011101011 Hobo 2 -0101011101011 KEA 2 -0101011101011 thrill-seekers 2 -0101011101011 tone-deaf 2 -0101011101011 unscored 2 -0101011101011 Dursban 2 -0101011101011 menacingly 2 -0101011101011 dammit 2 -0101011101011 promisingly 2 -0101011101011 SLIM 2 -0101011101011 biannually 2 -0101011101011 143,780 2 -0101011101011 Kosakusho 2 -0101011101011 mancozeb 2 -0101011101011 Honsha 3 -0101011101011 aggregating 3 -0101011101011 Kum 3 -0101011101011 Decisionline 3 -0101011101011 mainstreaming 3 -0101011101011 enthralling 3 -0101011101011 Thoughters 4 -0101011101011 far 13168 -0101011101011 Babu 7 -01010111011000 WIMP 1 -01010111011000 trade-promoting 1 -01010111011000 stage-worthy 1 -01010111011000 higher-priority 1 -01010111011000 Xiaolin 1 -01010111011000 government-screened 1 -01010111011000 Egyptomania 1 -01010111011000 cotton/polyester 1 -01010111011000 enticeable 1 -01010111011000 brain/left 1 -01010111011000 Dobruja 1 -01010111011000 worst-performer 1 -01010111011000 Livius 1 -01010111011000 fresh-baked-cookie 1 -01010111011000 SLIPPAGE 1 -01010111011000 ORGANIZING 1 -01010111011000 Feldmuehle-Nobel 2 -01010111011000 ANDERSON 2 -01010111011000 citizen-legislators 2 -01010111011000 swiveled 2 -01010111011000 franchisors 2 -01010111011000 Zajic 2 -01010111011000 perjurers 2 -01010111011000 distractedly 2 -01010111011000 television-broadcasting 2 -01010111011000 atomized 2 -01010111011000 Nassau-Suffolk 2 -01010111011000 POTATO 2 -01010111011000 Montrachet 2 -01010111011000 Arabicas 2 -01010111011000 egomaniacs 2 -01010111011000 underfed 2 -01010111011000 Turkmenia 2 -01010111011000 bleeps 3 -01010111011000 KCST-TV 3 -01010111011000 Hamburgers 3 -01010111011000 cinematically 3 -01010111011000 overzealously 3 -01010111011000 Bilak 3 -01010111011000 selfishly 3 -01010111011000 numbers-oriented 3 -01010111011000 Celimene 3 -01010111011000 quixotically 3 -01010111011000 either. 3 -01010111011000 offhandedly 3 -01010111011000 inter-service 3 -01010111011000 fortuitously 3 -01010111011000 Sauvy 4 -01010111011000 Missy 4 -01010111011000 subliminally 5 -01010111011000 alternatively 27 -01010111011000 sadly 94 -01010111011000 likewise 163 -01010111011000 frankly 169 -01010111011000 now 30204 -01010111011000 indeed 1300 -01010111011001 re-housed 1 -01010111011001 antiwealth 1 -01010111011001 ultranationalism 1 -01010111011001 Ski-Haus 1 -01010111011001 Adapin 1 -01010111011001 quirkily 1 -01010111011001 layo-ffs 1 -01010111011001 Rustoleum 1 -01010111011001 recooled 1 -01010111011001 eponym 1 -01010111011001 strong-boned 1 -01010111011001 Reagan-bashing 1 -01010111011001 1429.58 1 -01010111011001 coyness 1 -01010111011001 WSUR 1 -01010111011001 Haemostasis 1 -01010111011001 FILIPACCHI 1 -01010111011001 reinjects 1 -01010111011001 Achitophel 1 -01010111011001 video-telephone 1 -01010111011001 anti-king 1 -01010111011001 TIGRS 1 -01010111011001 2:42 1 -01010111011001 landlessness 1 -01010111011001 circularity 1 -01010111011001 Defaulters 1 -01010111011001 3695 1 -01010111011001 Zdenka 1 -01010111011001 red-and-gray 1 -01010111011001 self-report 1 -01010111011001 CAUTIOUS 1 -01010111011001 Eufaula 1 -01010111011001 biweeklies 1 -01010111011001 Amdahl-Fujitsu 1 -01010111011001 WFTS-TV 1 -01010111011001 fatefully 1 -01010111011001 millet 1 -01010111011001 broker/owners 1 -01010111011001 graphy 1 -01010111011001 koalas 1 -01010111011001 mint-flavor 1 -01010111011001 Denquel 1 -01010111011001 Brownsville-Harlingen 1 -01010111011001 expresident 1 -01010111011001 MOTIVATED 1 -01010111011001 nicotiana 1 -01010111011001 bio-engineering 1 -01010111011001 affronting 1 -01010111011001 WROR 1 -01010111011001 Ivermectin 1 -01010111011001 caboodle 1 -01010111011001 Chagalls 1 -01010111011001 overprotection 1 -01010111011001 freaky 1 -01010111011001 Italscai 1 -01010111011001 GCSF 1 -01010111011001 plastique 1 -01010111011001 redstriped 1 -01010111011001 heretofores 1 -01010111011001 86-point 1 -01010111011001 KAER-FM 1 -01010111011001 Mauboussin 1 -01010111011001 Koreatown 1 -01010111011001 Dilaudid 1 -01010111011001 new-Marxists 1 -01010111011001 anti-individualist 1 -01010111011001 vicissitude 1 -01010111011001 non-innovative 1 -01010111011001 Hooksett 1 -01010111011001 22500 1 -01010111011001 Illiopolis 1 -01010111011001 belayed 1 -01010111011001 Debrecen 1 -01010111011001 SMURFS 1 -01010111011001 clergy/seminarians 1 -01010111011001 ILFC 1 -01010111011001 high-heels 1 -01010111011001 medal-stealing 1 -01010111011001 JSON 1 -01010111011001 nonagenarians 1 -01010111011001 over-large 1 -01010111011001 indistinctly 1 -01010111011001 oil-company-owned 1 -01010111011001 CTX-4000 1 -01010111011001 Clorets 1 -01010111011001 wood-preservative 1 -01010111011001 psychoneuropharmacology 1 -01010111011001 creasers 1 -01010111011001 cutlasses 1 -01010111011001 inkstands 1 -01010111011001 VULGAH 1 -01010111011001 antitrade 1 -01010111011001 H-Bombs 1 -01010111011001 Memorabilia 1 -01010111011001 GTIs 1 -01010111011001 hyperwhatnot 1 -01010111011001 4H 1 -01010111011001 Lala 1 -01010111011001 muscle-and-bone 1 -01010111011001 personnally 1 -01010111011001 Unidynamics 1 -01010111011001 DESY 1 -01010111011001 liberal-bashing 1 -01010111011001 eczema 1 -01010111011001 primordially 1 -01010111011001 tret 1 -01010111011001 sellability 1 -01010111011001 corruptible 1 -01010111011001 166-161 1 -01010111011001 monkshood 1 -01010111011001 Cetinje 1 -01010111011001 McHappy 1 -01010111011001 refiring 1 -01010111011001 Castilla-Leon 1 -01010111011001 tanka 1 -01010111011001 well-excavator 1 -01010111011001 re-investing 1 -01010111011001 WXYV-FM 1 -01010111011001 WVEE-FM 1 -01010111011001 KAZY-FM 1 -01010111011001 KMEZ-FM 1 -01010111011001 WTUE-FM 1 -01010111011001 WONE-FM 1 -01010111011001 KFRX-FM 1 -01010111011001 KWTO-FM 1 -01010111011001 Metseach 1 -01010111011001 KISAN 1 -01010111011001 possibly-signaled 1 -01010111011001 dapple 1 -01010111011001 quackers 1 -01010111011001 perchloroethylene 1 -01010111011001 groom-to-be 1 -01010111011001 Sangatte 1 -01010111011001 Secab 1 -01010111011001 heavier-browed 1 -01010111011001 FEPVC 1 -01010111011001 Tobishima 1 -01010111011001 Lotrisone 1 -01010111011001 HTLV-2 1 -01010111011001 molecule-for-molecule 1 -01010111011001 Tuesday-Wednesday 1 -01010111011001 Armida 1 -01010111011001 pirs 1 -01010111011001 Talgo-Renfe 1 -01010111011001 jetports 1 -01010111011001 Gomic 1 -01010111011001 Swainsboro 1 -01010111011001 ZZZZZs 1 -01010111011001 spired 1 -01010111011001 footbridges 1 -01010111011001 third-trimester 1 -01010111011001 victimizer 1 -01010111011001 hotel/motels 1 -01010111011001 Dardilly 1 -01010111011001 Sedgefield 1 -01010111011001 1,007 1 -01010111011001 time-tables 1 -01010111011001 clamour 1 -01010111011001 Gallicized 1 -01010111011001 Chika 1 -01010111011001 O24s 1 -01010111011001 WXPN-FM 1 -01010111011001 rearites 1 -01010111011001 stockbrokering 1 -01010111011001 low-pitched 1 -01010111011001 FR3 1 -01010111011001 stage-bound 1 -01010111011001 Dublin-Paris 1 -01010111011001 Marieville 1 -01010111011001 thirdhand 1 -01010111011001 plenties 1 -01010111011001 Neomed 1 -01010111011001 1,177 1 -01010111011001 sober-blue 1 -01010111011001 dejection 1 -01010111011001 four-wheelers 1 -01010111011001 capitilizations 1 -01010111011001 pressurizers 1 -01010111011001 Teutons 1 -01010111011001 Allemanni 1 -01010111011001 multivitamins 1 -01010111011001 Uranerz 1 -01010111011001 1430.82 1 -01010111011001 120-foot-wide 1 -01010111011001 mycology 1 -01010111011001 inducting 1 -01010111011001 Canoletto 1 -01010111011001 sundecks 1 -01010111011001 unhook 1 -01010111011001 CARDs 1 -01010111011001 OPOSSMS 1 -01010111011001 Crandon 1 -01010111011001 KOSA-TV 1 -01010111011001 Boniato 1 -01010111011001 Oh-God-if-I-pull-this-one-off-I'll-be-great 1 -01010111011001 chlorthalidone 1 -01010111011001 kremlins 1 -01010111011001 anthophyllite 1 -01010111011001 ATSWI 1 -01010111011001 nitrites 1 -01010111011001 W-100 1 -01010111011001 1512 1 -01010111011001 unposed 1 -01010111011001 Nickey 1 -01010111011001 Misalliances 1 -01010111011001 Hartbreaks 1 -01010111011001 semicolons 1 -01010111011001 WHTQ-FM 1 -01010111011001 pruney 1 -01010111011001 286.09 1 -01010111011001 EFINT 1 -01010111011001 Tulumayo 1 -01010111011001 serivices 1 -01010111011001 Scotchguard 1 -01010111011001 tantrum-proof 1 -01010111011001 Cyanothymidine 1 -01010111011001 USINOR 1 -01010111011001 KDSWI 1 -01010111011001 dispersals 1 -01010111011001 CNC 1 -01010111011001 DOSWI 1 -01010111011001 KKOB-FM 1 -01010111011001 WLAC-FM 1 -01010111011001 WMTG-AM 1 -01010111011001 feeble-spirited 1 -01010111011001 Eneleven 1 -01010111011001 fumewise 1 -01010111011001 Consuls 1 -01010111011001 non-hierarchical 1 -01010111011001 mispackaged 1 -01010111011001 stock-brokerages 1 -01010111011001 Kepler 1 -01010111011001 Respicare 1 -01010111011001 Perdiem 1 -01010111011001 Anscor 1 -01010111011001 1386.74 1 -01010111011001 1282.39 1 -01010111011001 Petainette 1 -01010111011001 PIKS 1 -01010111011001 Psychos 1 -01010111011001 Exhibit. 1 -01010111011001 jiggery-pokery 1 -01010111011001 Sukie 1 -01010111011001 beakers 1 -01010111011001 Humbrol 1 -01010111011001 dried-cocoon 1 -01010111011001 Lekoa 1 -01010111011001 spumante 1 -01010111011001 Amphibians 1 -01010111011001 terracotta 1 -01010111011001 not-so-hardy 1 -01010111011001 stevedores 1 -01010111011001 DEET 1 -01010111011001 rib-cracking 1 -01010111011001 sno-cones 1 -01010111011001 Sequin 1 -01010111011001 Townships 1 -01010111011001 tickety-tickety 1 -01010111011001 collocation 1 -01010111011001 Alia 1 -01010111011001 Furth-Bislohe 1 -01010111011001 KF-TV 1 -01010111011001 Nordette 1 -01010111011001 '33 1 -01010111011001 vigour 1 -01010111011001 Nagir 1 -01010111011001 elaborations 1 -01010111011001 1598 1 -01010111011001 big-broker 1 -01010111011001 Zendentsu 1 -01010111011001 untransparent 1 -01010111011001 methamphetamines 1 -01010111011001 Fajardo 1 -01010111011001 Oxnard-Ventura 1 -01010111011001 near-neighbor 1 -01010111011001 FuelCo. 1 -01010111011001 1430.67 1 -01010111011001 cyclamen 1 -01010111011001 self-advertisement 1 -01010111011001 Apulia 1 -01010111011001 pump-storage 1 -01010111011001 orthodontia 1 -01010111011001 order-slip 1 -01010111011001 Atlantic-Richfield 1 -01010111011001 eductive 1 -01010111011001 tableauxs 1 -01010111011001 ethnologically 1 -01010111011001 anti-victim 1 -01010111011001 color-tinted 1 -01010111011001 holy-moly 1 -01010111011001 Tompkinsville 1 -01010111011001 Rockmont 1 -01010111011001 deconglomerization 1 -01010111011001 homeworker 1 -01010111011001 higher-bouncing 1 -01010111011001 sanded 1 -01010111011001 CalTex 1 -01010111011001 Fariborz 1 -01010111011001 Blairsville 1 -01010111011001 vanpools 1 -01010111011001 radish 1 -01010111011001 Mercury- 1 -01010111011001 WXIA-TV 1 -01010111011001 1437.84 1 -01010111011001 KFRC 1 -01010111011001 day-out 1 -01010111011001 zurnas 1 -01010111011001 T0024 1 -01010111011001 hungry-looking 1 -01010111011001 Chinois 1 -01010111011001 Washingtonit 1 -01010111011001 beiges 1 -01010111011001 Rabguard-TC 1 -01010111011001 ignorantly 1 -01010111011001 multi-accent 1 -01010111011001 Upanishads 1 -01010111011001 Dartford 1 -01010111011001 tax-incentives 1 -01010111011001 mesquite 1 -01010111011001 Pili 1 -01010111011001 mid-Monday 1 -01010111011001 funkified 1 -01010111011001 shushing 1 -01010111011001 mainlines 1 -01010111011001 short-shipping 1 -01010111011001 cedar-paneled 1 -01010111011001 1,294 1 -01010111011001 Authoritarians 1 -01010111011001 froing 1 -01010111011001 reelections 1 -01010111011001 Camline 1 -01010111011001 MEMBERSHIPS 1 -01010111011001 200s 1 -01010111011001 Pater 1 -01010111011001 Drug-War 1 -01010111011001 charwomen 1 -01010111011001 infra.s 1 -01010111011001 Criminology 1 -01010111011001 Joss 1 -01010111011001 Douala 1 -01010111011001 wisecrackers 1 -01010111011001 Wenda 1 -01010111011001 satins 1 -01010111011001 mini-groups 1 -01010111011001 9:34 1 -01010111011001 unzapped 1 -01010111011001 seabirds 1 -01010111011001 game-shows 1 -01010111011001 grinnier 1 -01010111011001 equipper 1 -01010111011001 anti-interventionist 1 -01010111011001 Coverups 1 -01010111011001 Vapona 1 -01010111011001 AIDS/HTLV-I 1 -01010111011001 Tomsky 1 -01010111011001 Sciroccos 1 -01010111011001 Richardson/Smith 1 -01010111011001 112,207 1 -01010111011001 pseudoephedrine 1 -01010111011001 fresh-voiced 1 -01010111011001 U.S.-level 1 -01010111011001 Zelinda 1 -01010111011001 a-half 1 -01010111011001 farseeing 1 -01010111011001 lacquerware 1 -01010111011001 Grenadas 1 -01010111011001 Emigsville 1 -01010111011001 backhandedly 1 -01010111011001 Synthroid 1 -01010111011001 ProSobee 1 -01010111011001 Isomil 1 -01010111011001 Medipren 1 -01010111011001 Rosalia 1 -01010111011001 inapt 1 -01010111011001 turgidity 1 -01010111011001 grand-daughter 1 -01010111011001 Surgut 1 -01010111011001 head-scarves 1 -01010111011001 longest-standing 1 -01010111011001 rationalityand 1 -01010111011001 Mycerinus 1 -01010111011001 Coajone 1 -01010111011001 HUHOW 1 -01010111011001 Empressa 1 -01010111011001 Harriot 1 -01010111011001 Ikarusz 1 -01010111011001 clock-TV 1 -01010111011001 mindings 1 -01010111011001 tactlessness 1 -01010111011001 everytime 1 -01010111011001 BusinessWeek 1 -01010111011001 Keren 1 -01010111011001 Berisford> 1 -01010111011001 drought-speculation 1 -01010111011001 tsunamis 1 -01010111011001 Kelvinator 1 -01010111011001 patchily 1 -01010111011001 foresightedness 1 -01010111011001 cha-chas 1 -01010111011001 Godspeed 1 -01010111011001 ultra-fine 1 -01010111011001 periwigs 1 -01010111011001 businesssmen 1 -01010111011001 systematized 1 -01010111011001 grade-obsessed 1 -01010111011001 dollar-watching 1 -01010111011001 jovibarba 1 -01010111011001 subclimates 1 -01010111011001 archbishops 1 -01010111011001 fabulism 1 -01010111011001 Ticha 1 -01010111011001 TNM&O 1 -01010111011001 2021-2026 1 -01010111011001 carcinogenicity 1 -01010111011001 Etruria 1 -01010111011001 salmanazars 1 -01010111011001 Pipefitters 1 -01010111011001 Actaeon 1 -01010111011001 redesignings 1 -01010111011001 collagist 1 -01010111011001 arbitrages 1 -01010111011001 self-disciplines 1 -01010111011001 Laforge-1 1 -01010111011001 Pallis 1 -01010111011001 Reznor 1 -01010111011001 KYW 1 -01010111011001 terns 1 -01010111011001 extralegally 1 -01010111011001 G-Tech 1 -01010111011001 granulocyte-colony 1 -01010111011001 undigestible 1 -01010111011001 phenols 1 -01010111011001 gutter-fighting 1 -01010111011001 9400 1 -01010111011001 sur-titles 1 -01010111011001 freeze-packed 1 -01010111011001 propagates 1 -01010111011001 unguents 1 -01010111011001 Furyo 1 -01010111011001 capnographs 1 -01010111011001 Gingers 1 -01010111011001 Bretten 1 -01010111011001 Ocoee 1 -01010111011001 nonbeing 1 -01010111011001 Halicon 1 -01010111011001 80:20 1 -01010111011001 Rico. 1 -01010111011001 Jodl 1 -01010111011001 Laica 1 -01010111011001 oh-so-reasonable 1 -01010111011001 '85-86 1 -01010111011001 soarers 1 -01010111011001 apple-polisher 1 -01010111011001 backflips 1 -01010111011001 Hussel 1 -01010111011001 sulfamethoxazole 1 -01010111011001 powertrains 1 -01010111011001 synthetic-fertilizer 1 -01010111011001 Sumba 1 -01010111011001 otherness 1 -01010111011001 elsewise 1 -01010111011001 hyperbolically 1 -01010111011001 askers 1 -01010111011001 weedeaters 1 -01010111011001 mokus 1 -01010111011001 Lovington 1 -01010111011001 meditates 1 -01010111011001 Isefi 1 -01010111011001 Nipro 1 -01010111011001 zonk 1 -01010111011001 P-51s 1 -01010111011001 Jiyeh 1 -01010111011001 Pulaskis 1 -01010111011001 Tabacaleras 1 -01010111011001 miscolored 1 -01010111011001 Omnipol 1 -01010111011001 X/Open 1 -01010111011001 Dahling 1 -01010111011001 Tycesa 1 -01010111011001 Levantines 1 -01010111011001 Polop 1 -01010111011001 countercoups 1 -01010111011001 lightstruck 1 -01010111011001 entractes 1 -01010111011001 non-advocacy 1 -01010111011001 Hartford/Springfield 1 -01010111011001 autographer 1 -01010111011001 Syrian-operated 1 -01010111011001 Aziza 1 -01010111011001 duplicities 1 -01010111011001 bore/Are 1 -01010111011001 minitrucks 1 -01010111011001 mescal 1 -01010111011001 22/6a 1 -01010111011001 others.But 1 -01010111011001 techno-junkies 1 -01010111011001 microwave-safe 1 -01010111011001 oleochemicals 1 -01010111011001 JGC 1 -01010111011001 Avtoexport 1 -01010111011001 Sary-Shagan 1 -01010111011001 colloquiums 1 -01010111011001 unmoral 1 -01010111011001 pwes 1 -01010111011001 morels 1 -01010111011001 non-oil-field 1 -01010111011001 Runty 1 -01010111011001 McReally 1 -01010111011001 Siemenses 1 -01010111011001 diabetologists 1 -01010111011001 phototypography 1 -01010111011001 heartrate 1 -01010111011001 CEO-Elect 1 -01010111011001 Ewarton 1 -01010111011001 demerol 1 -01010111011001 Guadalahara 1 -01010111011001 Shochiku 1 -01010111011001 hanger-on 1 -01010111011001 Crediop 1 -01010111011001 Frinton 1 -01010111011001 5-fluorouracil 1 -01010111011001 monocrotophos 1 -01010111011001 gp41 1 -01010111011001 non-appealable 1 -01010111011001 SLOWING 1 -01010111011001 Al-Gomhouria 1 -01010111011001 hospital-like 1 -01010111011001 outward-projecting 1 -01010111011001 Valleyfair 1 -01010111011001 snivel 1 -01010111011001 pseudo-Kennedyism 1 -01010111011001 Vomit 1 -01010111011001 cross-complained 1 -01010111011001 Boursault 1 -01010111011001 wristbands 1 -01010111011001 washbasins 1 -01010111011001 aleurophiles 1 -01010111011001 more-direct 1 -01010111011001 Bronkolixir 1 -01010111011001 anti-men 1 -01010111011001 self-cleans 1 -01010111011001 Pierce-Arrow 1 -01010111011001 Clueless 1 -01010111011001 MortgageBanque 1 -01010111011001 double-density 1 -01010111011001 crysanthemum 1 -01010111011001 panhandled 1 -01010111011001 deep-feeling 1 -01010111011001 Squeeze-Fresh 1 -01010111011001 benomyl 1 -01010111011001 '31 1 -01010111011001 steamrollering 1 -01010111011001 recoats 1 -01010111011001 Mr.Galvin 1 -01010111011001 Peoria/Bloomington 1 -01010111011001 Criseyde 1 -01010111011001 churros 1 -01010111011001 bings 1 -01010111011001 Agamemnons 1 -01010111011001 LUNCHING 1 -01010111011001 pluralisms 1 -01010111011001 foggy-eyed 1 -01010111011001 scientology 1 -01010111011001 1263.33 1 -01010111011001 100-inch 1 -01010111011001 fermions 1 -01010111011001 HANDELSBANKEN 1 -01010111011001 chaimran 1 -01010111011001 tae 1 -01010111011001 junkman 1 -01010111011001 lie-detectors 1 -01010111011001 Austro-Hungary 1 -01010111011001 sanitary-waste 1 -01010111011001 Corotrope/milrinone 1 -01010111011001 Godfearing 1 -01010111011001 rewraps 1 -01010111011001 relet 1 -01010111011001 red-winged 1 -01010111011001 F4s 1 -01010111011001 non-occasion 1 -01010111011001 up-a-bit 1 -01010111011001 travel/subsistence 1 -01010111011001 TMSTB 1 -01010111011001 quaver 1 -01010111011001 big-fisted 1 -01010111011001 body-guards 1 -01010111011001 Nhatrang 1 -01010111011001 fair-complexioned 1 -01010111011001 Wal-Marts 1 -01010111011001 hard-to-navigate 1 -01010111011001 orchestrally 1 -01010111011001 sunbonnets 1 -01010111011001 .167 1 -01010111011001 Ammo 1 -01010111011001 jackals 1 -01010111011001 Heileg-Meyers 1 -01010111011001 gunkier 1 -01010111011001 Freeze-It 1 -01010111011001 914,350 1 -01010111011001 crossly 1 -01010111011001 thankyous 1 -01010111011001 9120 1 -01010111011001 89-105 1 -01010111011001 covetousness 2 -01010111011001 Clemiss 2 -01010111011001 MESBICs 2 -01010111011001 KRXY-FM 2 -01010111011001 bookish-looking 2 -01010111011001 life-like 2 -01010111011001 1,065 2 -01010111011001 Dristan 2 -01010111011001 Vibes 2 -01010111011001 directionally 2 -01010111011001 seed-bearing 2 -01010111011001 uncorrupted 2 -01010111011001 Montesquieu 2 -01010111011001 Duprez 2 -01010111011001 adeptly 2 -01010111011001 reordered 2 -01010111011001 Zung 2 -01010111011001 Arjuna 2 -01010111011001 Zeroes 2 -01010111011001 Gypsies 2 -01010111011001 zurna 2 -01010111011001 Kyaw 2 -01010111011001 Huatulco 2 -01010111011001 Cashmere 2 -01010111011001 sarongs 2 -01010111011001 Masaniello 2 -01010111011001 Menominee 2 -01010111011001 Scarlatti 2 -01010111011001 Madda 2 -01010111011001 Doro 2 -01010111011001 Primextra 2 -01010111011001 Desarollos 2 -01010111011001 calligraphies 2 -01010111011001 Leibniz 2 -01010111011001 Speedring-Troy 2 -01010111011001 Sokol-Blosser 2 -01010111011001 unassertive 2 -01010111011001 on-lending 2 -01010111011001 non-affluent 2 -01010111011001 RCAs 2 -01010111011001 yon 2 -01010111011001 nastily 2 -01010111011001 Situs 2 -01010111011001 OAMCAF 2 -01010111011001 golf-ball 2 -01010111011001 Workouts 2 -01010111011001 year-out 2 -01010111011001 re-use 2 -01010111011001 Inabata 2 -01010111011001 Mattoon 2 -01010111011001 unfeelingly 2 -01010111011001 Anja 2 -01010111011001 1725 2 -01010111011001 tucking 2 -01010111011001 WOOD-FM 2 -01010111011001 Samuil 2 -01010111011001 '65 2 -01010111011001 15-19 2 -01010111011001 Petronella 2 -01010111011001 winterfat 2 -01010111011001 cajun 2 -01010111011001 Team-Mates 2 -01010111011001 Neikrug 2 -01010111011001 Vusi 2 -01010111011001 Wolfensberger 2 -01010111011001 1350 2 -01010111011001 blusters 2 -01010111011001 achy 2 -01010111011001 Henriette 2 -01010111011001 Tasha 2 -01010111011001 Ondo 2 -01010111011001 abortionists 2 -01010111011001 maneb 2 -01010111011001 goal-setting 3 -01010111011001 VidAmerica 3 -01010111011001 disingenuously 3 -01010111011001 tetracycline 3 -01010111011001 Haislmaier 3 -01010111011001 Volodya 3 -01010111011001 lamentably 3 -01010111011001 Makower 3 -01010111011001 Mountaintop 3 -01010111011001 Unigate 3 -01010111011001 dicing 3 -01010111011001 jaundice 3 -01010111011001 Klausner 3 -01010111011001 textually 3 -01010111011001 GUS 3 -01010111011001 Bynoe 3 -01010111011001 cyclones 3 -01010111011001 longitude 3 -01010111011001 Hercegovina 3 -01010111011001 Effron 3 -01010111011001 semps 4 -01010111011001 Yakult 4 -01010111011001 20-year-olds 4 -01010111011001 Librium 4 -01010111011001 Deminex 4 -01010111011001 secondly 4 -01010111011001 Platonov 4 -01010111011001 freckled 4 -01010111011001 crossbones 4 -01010111011001 purples 4 -01010111011001 incompletely 5 -01010111011001 WSBK-TV 5 -01010111011001 full-bodied 5 -01010111011001 girdles 5 -01010111011001 Snickers 5 -01010111011001 Shute 5 -01010111011001 isoprinosine 5 -01010111011001 voila 6 -01010111011001 sardonically 6 -01010111011001 Scooter 6 -01010111011001 Woollcott 6 -01010111011001 thankfully 7 -01010111011001 Eisai 7 -01010111011001 Kara 8 -01010111011001 golly 10 -01010111011001 regrettably 11 -01010111011001 Gynecologists 12 -01010111011001 luckily 12 -01010111011001 feathering 13 -01010111011001 conceptually 15 -01010111011001 furthermore 18 -01010111011001 unhappily 26 -01010111011001 fortunately 31 -01010111011001 paradoxically 34 -01010111011001 therein 39 -01010111011001 consequently 87 -01010111011001 hopefully 103 -01010111011001 unfortunately 190 -01010111011001 hence 241 -01010111011001 thereby 594 -01010111011001 therefore 1130 -01010111011001 then 14943 -01010111011001 thus 2831 -010101110110100 friendless 1 -010101110110100 82,600 1 -010101110110100 nonmembership 1 -010101110110100 participitating 1 -010101110110100 deal-cutting 1 -010101110110100 gut-shoot 1 -010101110110100 meassure 1 -010101110110100 recline 1 -010101110110100 Shigekazu 1 -010101110110100 Macridis 1 -010101110110100 underutilize 1 -010101110110100 initiations 1 -010101110110100 guerillas 1 -010101110110100 amplifications 1 -010101110110100 sorcerers 1 -010101110110100 Venerian 1 -010101110110100 frontally 1 -010101110110100 immediaely 1 -010101110110100 unreleasable 1 -010101110110100 precancer 1 -010101110110100 flows-underlies 1 -010101110110100 melds 1 -010101110110100 bummers 1 -010101110110100 ago/ 1 -010101110110100 intra-administration 1 -010101110110100 USA-produced 1 -010101110110100 GM-300 1 -010101110110100 disinter 1 -010101110110100 wosen 1 -010101110110100 Dolphin/Doubleday 2 -010101110110100 Og 2 -010101110110100 deadpanned 2 -010101110110100 Caemi 2 -010101110110100 satires 2 -010101110110100 Brinton 2 -010101110110100 unplugged 2 -010101110110100 1982-1986 2 -010101110110100 snowfields 2 -010101110110100 dolefully 2 -010101110110100 pay-in 2 -010101110110100 undergirds 2 -010101110110100 rehashed 3 -010101110110100 Teng 3 -010101110110100 19,600 3 -010101110110100 70,000-mile 3 -010101110110100 implausibly 3 -010101110110100 tartly 3 -010101110110100 waltzes 3 -010101110110100 dideoxyinosine 3 -010101110110100 quarter-by-quarter 4 -010101110110100 mischievously 5 -010101110110100 DIA 7 -010101110110100 thereabouts 8 -010101110110100 ha 9 -010101110110100 admiringly 10 -010101110110100 dryly 14 -010101110110100 sheepishly 16 -010101110110100 matter-of-factly 20 -010101110110100 adjourns 23 -010101110110100 ruefully 35 -010101110110100 parent-company 67 -010101110110100 later 9516 -010101110110100 sometime 531 -010101110110101 Intensifies 1 -010101110110101 inflects 1 -010101110110101 nonexclusively 1 -010101110110101 3,092 1 -010101110110101 1,439 1 -010101110110101 glamourous 1 -010101110110101 double-crosses 1 -010101110110101 emplaced 1 -010101110110101 haircutting 1 -010101110110101 half-identity 1 -010101110110101 disbelievers 1 -010101110110101 2,121 1 -010101110110101 ummatched 1 -010101110110101 at-me 1 -010101110110101 again-off 1 -010101110110101 glimmered 1 -010101110110101 fraiche 1 -010101110110101 unretired 1 -010101110110101 1.8838 1 -010101110110101 woodworms 1 -010101110110101 quadrennially 1 -010101110110101 undercared 1 -010101110110101 EXEMPTIONS 2 -010101110110101 shortsightedly 2 -010101110110101 sketchily 2 -010101110110101 trumps 2 -010101110110101 deviously 2 -010101110110101 squawked 2 -010101110110101 felicitously 2 -010101110110101 Regaining 2 -010101110110101 putatively 2 -010101110110101 PENSIONS 2 -010101110110101 Aminoil 3 -010101110110101 overpowers 3 -010101110110101 spooking 3 -010101110110101 plies 3 -010101110110101 Spyros 3 -010101110110101 Burton-Campbell 3 -010101110110101 Ortrud 3 -010101110110101 condescendingly 3 -010101110110101 Pepto-Bismol 4 -010101110110101 Yasnaya 4 -010101110110101 Esterhazy 4 -010101110110101 Calpurnia 7 -010101110110101 Faymonville 8 -010101110110101 dissipates 8 -010101110110101 thrice 10 -010101110110101 generically 29 -010101110110101 doubles 95 -010101110110101 once 6828 -010101110110101 twice 2067 -010101110110110 crediblity 1 -010101110110110 unpackaged 1 -010101110110110 60/40 1 -010101110110110 Hellebore 1 -010101110110110 pre-subscription 1 -010101110110110 Vlassis 1 -010101110110110 glancingly 1 -010101110110110 fastidiously 2 -010101110110110 incautiously 2 -010101110110110 puckishly 2 -010101110110110 airboats 2 -010101110110110 fraudently 2 -010101110110110 lightheartedly 2 -010101110110110 synthetically 2 -010101110110110 cooly 2 -010101110110110 utlimately 2 -010101110110110 unattractively 2 -010101110110110 tearily 2 -010101110110110 unsuccesfully 2 -010101110110110 illegaly 2 -010101110110110 hot-dipped 2 -010101110110110 vehmently 2 -010101110110110 wishfully 3 -010101110110110 Detko 3 -010101110110110 sucessfully 3 -010101110110110 buoyantly 3 -010101110110110 1,051 3 -010101110110110 unsuccessfuly 3 -010101110110110 Stronsay 3 -010101110110110 agressively 3 -010101110110110 helpfully 4 -010101110110110 humorously 4 -010101110110110 dowries 4 -010101110110110 tenatively 4 -010101110110110 abrasions 4 -010101110110110 mockingly 4 -010101110110110 thoughtlessly 4 -010101110110110 undeservedly 4 -010101110110110 artichokes 4 -010101110110110 selflessly 5 -010101110110110 promotionally 5 -010101110110110 cannily 5 -010101110110110 self-righteously 5 -010101110110110 perceptively 5 -010101110110110 sportingly 6 -010101110110110 obligingly 6 -010101110110110 laughingly 6 -010101110110110 furtively 6 -010101110110110 unwillingly 6 -010101110110110 nobly 6 -010101110110110 unashamedly 6 -010101110110110 preferentially 7 -010101110110110 humbly 7 -010101110110110 fruitlessly 7 -010101110110110 cavalierly 7 -010101110110110 Outdoors 8 -010101110110110 coyly 8 -010101110110110 disparagingly 8 -010101110110110 brusquely 8 -010101110110110 lamely 8 -010101110110110 exhaustively 9 -010101110110110 ineptly 9 -010101110110110 joyfully 9 -010101110110110 tersely 9 -010101110110110 arrogantly 9 -010101110110110 improbably 10 -010101110110110 subconsciously 10 -010101110110110 shamelessly 10 -010101110110110 crisply 10 -010101110110110 stoically 10 -010101110110110 playfully 10 -010101110110110 gratefully 10 -010101110110110 loyally 10 -010101110110110 obediently 10 -010101110110110 accidently 11 -010101110110110 courageously 11 -010101110110110 conscientiously 12 -010101110110110 meekly 12 -010101110110110 valiantly 12 -010101110110110 good-naturedly 13 -010101110110110 testily 13 -010101110110110 unceremoniously 13 -010101110110110 obliquely 14 -010101110110110 tenaciously 14 -010101110110110 unwisely 15 -010101110110110 unknowingly 15 -010101110110110 truthfully 15 -010101110110110 graciously 16 -010101110110110 stoutly 16 -010101110110110 figuratively 16 -010101110110110 judiciously 17 -010101110110110 affectionately 17 -010101110110110 orginally 17 -010101110110110 expertly 17 -010101110110110 carelessly 17 -010101110110110 unconsciously 18 -010101110110110 vociferously 19 -010101110110110 assiduously 19 -010101110110110 shrewdly 19 -010101110110110 ruthlessly 19 -010101110110110 irrevocably 20 -010101110110110 brazenly 20 -010101110110110 vainly 20 -010101110110110 derisively 21 -010101110110110 glumly 21 -010101110110110 illicitly 21 -010101110110110 gamely 22 -010101110110110 foolishly 22 -010101110110110 negligently 22 -010101110110110 tirelessly 22 -010101110110110 thoughtfully 24 -010101110110110 defiantly 24 -010101110110110 ardently 24 -010101110110110 successively 24 -010101110110110 laboriously 24 -010101110110110 studiously 24 -010101110110110 unjustly 24 -010101110110110 respectfully 25 -010101110110110 covertly 25 -010101110110110 excitedly 25 -010101110110110 unofficially 26 -010101110110110 methodically 26 -010101110110110 inaccurately 27 -010101110110110 provisionally 27 -010101110110110 passively 28 -010101110110110 verbally 28 -010101110110110 heartily 29 -010101110110110 bravely 30 -010101110110110 heatedly 30 -010101110110110 inadequately 31 -010101110110110 doggedly 31 -010101110110110 wryly 31 -010101110110110 surreptitiously 31 -010101110110110 tacitly 32 -010101110110110 wholeheartedly 33 -010101110110110 preliminarily 34 -010101110110110 fondly 38 -010101110110110 forcibly 39 -010101110110110 recklessly 40 -010101110110110 conditionally 40 -010101110110110 blindly 41 -010101110110110 summarily 41 -010101110110110 blithely 42 -010101110110110 painstakingly 43 -010101110110110 scrupulously 43 -010101110110110 hurriedly 43 -010101110110110 discreetly 43 -010101110110110 cleverly 43 -010101110110110 handily 44 -010101110110110 deftly 47 -010101110110110 gleefully 48 -010101110110110 mysteriously 48 -010101110110110 dutifully 49 -010101110110110 unlawfully 52 -010101110110110 unequivocally 52 -010101110110110 staunchly 53 -010101110110110 erroneously 53 -010101110110110 soundly 54 -010101110110110 frantically 54 -010101110110110 consciously 54 -010101110110110 belatedly 55 -010101110110110 faithfully 55 -010101110110110 categorically 56 -010101110110110 cheerfully 57 -010101110110110 willfully 59 -010101110110110 skillfully 63 -010101110110110 convincingly 63 -010101110110110 purposely 63 -010101110110110 arbitrarily 64 -010101110110110 emphatically 65 -010101110110110 unwittingly 73 -010101110110110 randomly 75 -010101110110110 adamantly 76 -010101110110110 grudgingly 77 -010101110110110 willingly 78 -010101110110110 wrongfully 79 -010101110110110 casually 79 -010101110110110 confidently 79 -010101110110110 strenuously 80 -010101110110110 wisely 84 -010101110110110 boldly 85 -010101110110110 politely 92 -010101110110110 expressly 92 -010101110110110 implicitly 98 -010101110110110 wrongly 107 -010101110110110 accidentally 111 -010101110110110 fraudulently 118 -010101110110110 systematically 118 -010101110110110 enthusiastically 128 -010101110110110 vehemently 135 -010101110110110 inadvertently 137 -010101110110110 informally 139 -010101110110110 mistakenly 143 -010101110110110 hastily 148 -010101110110110 happily 158 -010101110110110 intentionally 168 -010101110110110 proudly 168 -010101110110110 flatly 171 -010101110110110 reluctantly 175 -010101110110110 unilaterally 182 -010101110110110 falsely 186 -010101110110110 knowingly 189 -010101110110110 explicitly 243 -010101110110110 artificially 247 -010101110110110 periodically 293 -010101110110110 secretly 307 -010101110110110 deliberately 327 -010101110110110 correctly 333 -010101110110110 unfairly 334 -010101110110110 unsuccessfully 348 -010101110110110 openly 383 -010101110110110 permanently 417 -010101110110110 voluntarily 471 -010101110110110 promptly 505 -010101110110110 improperly 583 -010101110110110 consistently 622 -010101110110110 tentatively 652 -010101110110110 illegally 652 -010101110110110 officially 715 -010101110110110 quietly 718 -010101110110110 personally 775 -010101110110110 regularly 840 -010101110110110 formally 870 -010101110110110 successfully 916 -010101110110110 temporarily 1213 -010101110110110 originally 1646 -010101110110110 allegedly 1654 -010101110110110 ever 5833 -010101110110110 initially 1952 -010101110110111 tulipomanias 1 -010101110110111 312-Futures 1 -010101110110111 Boncompagni 1 -010101110110111 speakerphones 1 -010101110110111 implicity 1 -010101110110111 24-seven 1 -010101110110111 CelebrityAmericans 1 -010101110110111 Parness 1 -010101110110111 mini-trek 1 -010101110110111 Bugarin 1 -010101110110111 job-searching 1 -010101110110111 prevalently 1 -010101110110111 poetically 1 -010101110110111 DiLieto 1 -010101110110111 sensuously 1 -010101110110111 62,431 1 -010101110110111 GUIDANCE 1 -010101110110111 Kerckerinck 1 -010101110110111 puma 1 -010101110110111 Saund 1 -010101110110111 pseudonymously 1 -010101110110111 seismograph 1 -010101110110111 1,382,179 1 -010101110110111 Shangchi 1 -010101110110111 boat-builders 1 -010101110110111 partnerhship 1 -010101110110111 larder 1 -010101110110111 something-or-other 1 -010101110110111 Levarek 1 -010101110110111 Holomisa 1 -010101110110111 Sarathy 1 -010101110110111 post-Olympic-year 1 -010101110110111 fly-screen 1 -010101110110111 circuitously 1 -010101110110111 CONDITIONS 1 -010101110110111 Huttonites 1 -010101110110111 HTLV-3 2 -010101110110111 Nereids 2 -010101110110111 Orchestras 2 -010101110110111 half-seriously 2 -010101110110111 Yaik 2 -010101110110111 latterly 2 -010101110110111 presciently 2 -010101110110111 Rapport 2 -010101110110111 lowlifes 2 -010101110110111 over. 2 -010101110110111 deplaning 2 -010101110110111 Xuegian 2 -010101110110111 abrubtly 2 -010101110110111 seismographs 2 -010101110110111 Calonne 2 -010101110110111 pejoratively 3 -010101110110111 laconically 3 -010101110110111 nonvoters 3 -010101110110111 hypocritically 3 -010101110110111 fleetingly 4 -010101110110111 premier-designate 4 -010101110110111 Leijon 4 -010101110110111 loftily 4 -010101110110111 impishly 4 -010101110110111 placidly 4 -010101110110111 sourly 4 -010101110110111 acidly 5 -010101110110111 scornfully 5 -010101110110111 Soe 5 -010101110110111 effusively 6 -010101110110111 tactfully 6 -010101110110111 manfully 6 -010101110110111 somberly 6 -010101110110111 animatedly 6 -010101110110111 archly 7 -010101110110111 curtly 9 -010101110110111 half-jokingly 10 -010101110110111 half-heartedly 10 -010101110110111 tellingly 11 -010101110110111 thereupon 12 -010101110110111 posthumously 14 -010101110110111 sarcastically 18 -010101110110111 sternly 29 -010101110110111 ominously 29 -010101110110111 approvingly 37 -010101110110111 jokingly 40 -010101110110111 variously 56 -010101110110111 aptly 57 -010101110110111 pointedly 96 -010101110110111 bluntly 117 -010101110110111 angrily 125 -010101110110111 abruptly 373 -010101110110111 unanimously 427 -010101110110111 subsequently 666 -010101110110111 recently 13578 -010101110110111 repeatedly 1193 -01010111011100 integrations 1 -01010111011100 minimum-expense 1 -01010111011100 77,132 1 -01010111011100 biotechnologically 1 -01010111011100 invidiously 1 -01010111011100 Indpendence 1 -01010111011100 price-caps 1 -01010111011100 Crinos 1 -01010111011100 loan-losses 1 -01010111011100 Slovakia 1 -01010111011100 CORE 1 -01010111011100 more-frequently 1 -01010111011100 74,216 1 -01010111011100 seat-miles 1 -01010111011100 Vanish 1 -01010111011100 SR-71s 1 -01010111011100 955,133 1 -01010111011100 28,169 1 -01010111011100 16,584 1 -01010111011100 11,155 1 -01010111011100 severly 1 -01010111011100 five-to-15-minute 1 -01010111011100 701,978 1 -01010111011100 superluminaries 1 -01010111011100 Nixonesque 1 -01010111011100 irritatingly 1 -01010111011100 Gummiwerke 1 -01010111011100 festively 1 -01010111011100 ideograms 1 -01010111011100 745,219 1 -01010111011100 prompters 1 -01010111011100 blowdryers 1 -01010111011100 stably 1 -01010111011100 GBGI 1 -01010111011100 Oriental-style 1 -01010111011100 puchases 1 -01010111011100 Equitcorp 1 -01010111011100 48,497,000 1 -01010111011100 raidership 1 -01010111011100 248.00 1 -01010111011100 Phalangists 1 -01010111011100 5,852 1 -01010111011100 reprocesses 1 -01010111011100 dually 1 -01010111011100 wispily 1 -01010111011100 messily 1 -01010111011100 2382.1 1 -01010111011100 unimaginatively 1 -01010111011100 Rafalsky 1 -01010111011100 integrally 1 -01010111011100 Saint-gobain 1 -01010111011100 intransigently 1 -01010111011100 patient-financing 1 -01010111011100 MIG-2/SP1-Plus 1 -01010111011100 WAFERS 1 -01010111011100 Lyme-disease 1 -01010111011100 straighteners 1 -01010111011100 130,261 1 -01010111011100 boomingly 1 -01010111011100 gefuffle 1 -01010111011100 omnia 1 -01010111011100 Kanab 1 -01010111011100 miniumum 1 -01010111011100 homosexually 2 -01010111011100 prophylactics 2 -01010111011100 49,400 2 -01010111011100 tingles 2 -01010111011100 gentamicin 2 -01010111011100 afterthoughts 2 -01010111011100 occupationally 2 -01010111011100 photographically 3 -01010111011100 ususally 3 -01010111011100 lucidly 3 -01010111011100 anatomically 4 -01010111011100 statutorily 4 -01010111011100 ornately 4 -01010111011100 1,003 4 -01010111011100 being 18454 -01010111011100 hermetically 7 -010101110111010 fourth-layer 1 -010101110111010 Queyranne 1 -010101110111010 wayfarers 1 -010101110111010 less-severely 1 -010101110111010 as-yet-to-be 1 -010101110111010 potent-looking 1 -010101110111010 manically 1 -010101110111010 higher-than 1 -010101110111010 causally 1 -010101110111010 self-seekers 1 -010101110111010 hair-pullingly 1 -010101110111010 sinfully 1 -010101110111010 all-but 1 -010101110111010 nationalistically 1 -010101110111010 1,768 1 -010101110111010 obnoxiously 1 -010101110111010 dosimeter 1 -010101110111010 backhoe-loader 1 -010101110111010 bannisters 1 -010101110111010 feasible. 1 -010101110111010 lastingly 1 -010101110111010 highy 1 -010101110111010 agriculteurs 1 -010101110111010 Derringer 1 -010101110111010 vigourously 1 -010101110111010 bullseye 1 -010101110111010 vocationally 1 -010101110111010 satisfactority 1 -010101110111010 intrafaith 1 -010101110111010 insensibly 1 -010101110111010 ragamuffin 1 -010101110111010 collaterally 1 -010101110111010 more-than-amply 1 -010101110111010 imperatively 2 -010101110111010 smashingly 2 -010101110111010 pleasurably 2 -010101110111010 lethally 2 -010101110111010 inspirationally 2 -010101110111010 potently 2 -010101110111010 pointlessly 2 -010101110111010 remunerated 2 -010101110111010 expectable 2 -010101110111010 modally 2 -010101110111010 sonically 2 -010101110111010 well-enough 2 -010101110111010 straight-forwardly 2 -010101110111010 implacably 2 -010101110111010 fuzzily 2 -010101110111010 DETECTORS 2 -010101110111010 outstandingly 2 -010101110111010 aberrantly 2 -010101110111010 aurora 2 -010101110111010 murderously 2 -010101110111010 corporately 2 -010101110111010 statutorially 2 -010101110111010 throughly 2 -010101110111010 noiselessly 2 -010101110111010 9-6 2 -010101110111010 topically 2 -010101110111010 illegitimately 2 -010101110111010 colorfully 2 -010101110111010 immorally 2 -010101110111010 distractingly 2 -010101110111010 senselessly 2 -010101110111010 levamisole 3 -010101110111010 scathingly 3 -010101110111010 unkindly 3 -010101110111010 publically 3 -010101110111010 crazily 3 -010101110111010 methodologically 3 -010101110111010 illogically 3 -010101110111010 luridly 3 -010101110111010 unendurable 3 -010101110111010 grammatically 3 -010101110111010 tortuously 3 -010101110111010 bewilderingly 3 -010101110111010 enviably 3 -010101110111010 colloquially 3 -010101110111010 imprecisely 3 -010101110111010 penetratingly 3 -010101110111010 adorably 3 -010101110111010 assertively 3 -010101110111010 office-and-hotel 3 -010101110111010 inequitably 3 -010101110111010 tautly 3 -010101110111010 horrifyingly 3 -010101110111010 entertainingly 3 -010101110111010 believably 4 -010101110111010 drearily 4 -010101110111010 agriculturally 4 -010101110111010 atrociously 4 -010101110111010 unceasingly 4 -010101110111010 outspokenly 4 -010101110111010 divinely 4 -010101110111010 acoustically 4 -010101110111010 distantly 4 -010101110111010 tenuously 4 -010101110111010 superlatively 4 -010101110111010 unalterably 4 -010101110111010 defectively 4 -010101110111010 glaringly 4 -010101110111010 monumentally 4 -010101110111010 catastrophically 4 -010101110111010 volubly 4 -010101110111010 harmoniously 4 -010101110111010 decidely 4 -010101110111010 monolithically 4 -010101110111010 insufferably 4 -010101110111010 inconveniently 4 -010101110111010 radioactively 4 -010101110111010 laughably 4 -010101110111010 unsparingly 4 -010101110111010 monotonously 4 -010101110111010 nutritionally 4 -010101110111010 organizationally 4 -010101110111010 ponderously 5 -010101110111010 righteously 5 -010101110111010 uncritically 5 -010101110111010 bureaucratically 5 -010101110111010 unapologetically 5 -010101110111010 frenetically 5 -010101110111010 obscurely 5 -010101110111010 insidiously 5 -010101110111010 gorgeously 5 -010101110111010 familiarly 5 -010101110111010 compulsorily 5 -010101110111010 whitener 5 -010101110111010 authoritatively 5 -010101110111010 cozily 5 -010101110111010 unreservedly 5 -010101110111010 chillingly 5 -010101110111010 daringly 5 -010101110111010 speculatively 5 -010101110111010 touchingly 5 -010101110111010 intriguingly 5 -010101110111010 brashly 5 -010101110111010 optically 5 -010101110111010 misleadingly 5 -010101110111010 annoyingly 5 -010101110111010 hysterically 6 -010101110111010 thematically 6 -010101110111010 usefully 6 -010101110111010 pragmatically 6 -010101110111010 pervasively 6 -010101110111010 20-fold 6 -010101110111010 romantically 6 -010101110111010 dreamily 6 -010101110111010 inwardly 6 -010101110111010 exuberantly 6 -010101110111010 single-mindedly 6 -010101110111010 minutely 7 -010101110111010 stylishly 7 -010101110111010 indelibly 7 -010101110111010 ceaselessly 7 -010101110111010 amusingly 7 -010101110111010 5-5 7 -010101110111010 glowingly 7 -010101110111010 tastefully 7 -010101110111010 hideously 7 -010101110111010 obscenely 7 -010101110111010 baldly 7 -010101110111010 heroically 7 -010101110111010 immaculately 7 -010101110111010 palpably 7 -010101110111010 excellently 7 -010101110111010 wantonly 7 -010101110111010 wittily 8 -010101110111010 austerely 8 -010101110111010 ambitiously 8 -010101110111010 respectably 8 -010101110111010 unpleasantly 8 -010101110111010 tactically 8 -010101110111010 self-consciously 8 -010101110111010 egregiously 8 -010101110111010 authentically 8 -010101110111010 sloppily 8 -010101110111010 resoundingly 8 -010101110111010 intolerably 8 -010101110111010 appealingly 8 -010101110111010 compellingly 9 -010101110111010 theatrically 9 -010101110111010 straightforwardly 9 -010101110111010 contentedly 9 -010101110111010 ostentatiously 9 -010101110111010 demurely 9 -010101110111010 grievously 9 -010101110111010 nearby. 9 -010101110111010 charmingly 9 -010101110111010 comprehensively 10 -010101110111010 comically 10 -010101110111010 cruelly 10 -010101110111010 mindlessly 10 -010101110111010 clumsily 10 -010101110111010 slyly 10 -010101110111010 empirically 10 -010101110111010 transparently 10 -010101110111010 quaintly 10 -010101110111010 blissfully 10 -010101110111010 diametrically 10 -010101110111010 sensitively 10 -010101110111010 slavishly 10 -010101110111010 charitably 11 -010101110111010 ingeniously 11 -010101110111010 stunningly 11 -010101110111010 grotesquely 11 -010101110111010 virulently 11 -010101110111010 dismally 11 -010101110111010 disastrously 11 -010101110111010 famously 12 -010101110111010 experimentally 12 -010101110111010 reassuringly 12 -010101110111010 glibly 12 -010101110111010 irresponsibly 12 -010101110111010 pathetically 12 -010101110111010 viciously 13 -010101110111010 delightfully 13 -010101110111010 insistently 13 -010101110111010 determinedly 13 -010101110111010 fitfully 13 -010101110111010 savagely 13 -010101110111010 flagrantly 13 -010101110111010 rudely 13 -010101110111010 cynically 13 -010101110111010 magnificently 13 -010101110111010 irreversibly 13 -010101110111010 artfully 13 -010101110111010 splendidly 14 -010101110111010 mortally 14 -010101110111010 extravagantly 14 -010101110111010 compulsively 14 -010101110111010 guardedly 14 -010101110111010 biologically 14 -010101110111010 spiritually 14 -010101110111010 precariously 14 -010101110111010 superficially 14 -010101110111010 weirdly 14 -010101110111010 demographically 14 -010101110111010 blandly 14 -010101110111010 irrationally 14 -010101110111010 impeccably 14 -010101110111010 obsessively 14 -010101110111010 stridently 14 -010101110111010 operationally 15 -010101110111010 industrially 15 -010101110111010 grandly 15 -010101110111010 legislatively 15 -010101110111010 serenely 15 -010101110111010 persuasively 15 -010101110111010 thickly 15 -010101110111010 aesthetically 16 -010101110111010 mercilessly 16 -010101110111010 musically 16 -010101110111010 eternally 16 -010101110111010 intricately 16 -010101110111010 stiffly 17 -010101110111010 ethnically 17 -010101110111010 perennially 17 -010101110111010 artistically 17 -010101110111010 exquisitely 17 -010101110111010 securely 17 -010101110111010 vocally 18 -010101110111010 avidly 18 -010101110111010 crudely 18 -010101110111010 marvelously 19 -010101110111010 clinically 19 -010101110111010 functionally 19 -010101110111010 perpetually 19 -010101110111010 coldly 19 -010101110111010 horribly 20 -010101110111010 miraculously 21 -010101110111010 tragically 21 -010101110111010 electrically 21 -010101110111010 proportionally 21 -010101110111010 suitably 21 -010101110111010 factually 22 -010101110111010 structurally 22 -010101110111010 purposefully 22 -010101110111010 inappropriately 22 -010101110111010 grimly 23 -010101110111010 elaborately 23 -010101110111010 admirably 24 -010101110111010 sweetly 24 -010101110111010 irreparably 25 -010101110111010 crucially 25 -010101110111010 surgically 25 -010101110111010 symbolically 26 -010101110111010 unevenly 27 -010101110111010 ferociously 27 -010101110111010 superbly 27 -010101110111010 creatively 27 -010101110111010 academically 27 -010101110111010 jealously 28 -010101110111010 insufficiently 29 -010101110111010 vertically 29 -010101110111010 minimally 29 -010101110111010 ethically 30 -010101110111010 lovingly 31 -010101110111010 unintentionally 32 -010101110111010 rigorously 33 -010101110111010 candidly 33 -010101110111010 diplomatically 34 -010101110111010 needlessly 34 -010101110111010 earnestly 35 -010101110111010 starkly 35 -010101110111010 darkly 35 -010101110111010 hitherto 35 -010101110111010 resolutely 36 -010101110111010 elegantly 36 -010101110111010 strangely 36 -010101110111010 unabashedly 37 -010101110111010 philosophically 37 -010101110111010 conventionally 37 -010101110111010 impressively 37 -010101110111010 dimly 37 -010101110111010 inextricably 38 -010101110111010 meticulously 39 -010101110111010 massively 40 -010101110111010 characteristically 40 -010101110111010 unconstitutionally 40 -010101110111010 fervently 42 -010101110111010 endlessly 42 -010101110111010 justly 42 -010101110111010 rigidly 42 -010101110111010 popularly 43 -010101110111010 overtly 44 -010101110111010 gravely 45 -010101110111010 religiously 45 -010101110111010 pleasantly 45 -010101110111010 culturally 46 -010101110111010 roundly 47 -010101110111010 duly 47 -010101110111010 finely 48 -010101110111010 spectacularly 48 -010101110111010 attractively 49 -010101110111010 chemically 49 -010101110111010 delicately 50 -010101110111010 powerfully 51 -010101110111010 passionately 51 -010101110111010 ideologically 52 -010101110111010 fatally 52 -010101110111010 lavishly 54 -010101110111010 curiously 55 -010101110111010 criminally 55 -010101110111010 amply 55 -010101110111010 constitutionally 55 -010101110111010 intimately 55 -010101110111010 freshly 57 -010101110111010 brutally 58 -010101110111010 keenly 58 -010101110111010 brilliantly 58 -010101110111010 scientifically 60 -010101110111010 generously 62 -010101110111010 visibly 62 -010101110111010 blatantly 63 -010101110111010 visually 63 -010101110111010 oddly 66 -010101110111010 richly 66 -010101110111010 medically 68 -010101110111010 anxiously 69 -010101110111010 sorely 69 -010101110111010 geographically 69 -010101110111010 unnecessarily 69 -010101110111010 brightly 70 -010101110111010 acutely 71 -010101110111010 furiously 73 -010101110111010 uniformly 74 -010101110111010 abundantly 74 -010101110111010 conspicuously 77 -010101110111010 persistently 78 -010101110111010 warmly 78 -010101110111010 racially 79 -010101110111010 universally 80 -010101110111010 predictably 80 -010101110111010 intellectually 83 -010101110111010 subtly 85 -010101110111010 relentlessly 87 -010101110111010 tremendously 94 -010101110111010 morally 94 -010101110111010 stubbornly 96 -010101110111010 beautifully 98 -010101110111010 psychologically 98 -010101110111010 urgently 101 -010101110111010 disproportionately 102 -010101110111010 harshly 102 -010101110111010 vaguely 103 -010101110111010 vividly 104 -010101110111010 profoundly 105 -010101110111010 professionally 105 -010101110111010 appropriately 106 -010101110111010 hopelessly 115 -010101110111010 neatly 117 -010101110111010 mildly 120 -010101110111010 loosely 121 -010101110111010 solidly 123 -010101110111010 painfully 132 -010101110111010 unduly 133 -010101110111010 critically 134 -010101110111010 comfortably 135 -010101110111010 emotionally 146 -010101110111010 continuously 147 -010101110111010 genuinely 149 -010101110111010 militarily 152 -010101110111010 utterly 153 -010101110111010 intensely 164 -010101110111010 enormously 168 -010101110111010 hotly 169 -010101110111010 extensively 173 -010101110111010 eagerly 181 -010101110111010 commercially 194 -010101110111010 fiercely 196 -010101110111010 lightly 202 -010101110111010 physically 205 -010101110111010 bitterly 250 -010101110111010 wildly 251 -010101110111010 tightly 265 -010101110111010 thoroughly 270 -010101110111010 desperately 275 -010101110111010 fundamentally 276 -010101110111010 cautiously 304 -010101110111010 evenly 311 -010101110111010 sufficiently 332 -010101110111010 commonly 382 -010101110111010 readily 382 -010101110111010 overwhelmingly 402 -010101110111010 firmly 417 -010101110111010 strictly 432 -010101110111010 narrowly 493 -010101110111010 similarly 505 -010101110111010 economically 521 -010101110111010 poorly 561 -010101110111010 severely 677 -010101110111010 truly 707 -010101110111010 deeply 864 -010101110111010 badly 968 -010101110111010 totally 990 -010101110111010 carefully 996 -010101110111010 equally 1073 -010101110111010 completely 1119 -010101110111010 seriously 1566 -010101110111010 strongly 1761 -010101110111010 heavily 2423 -010101110111010 widely 3475 -010101110111010 increasingly 3156 -010101110111011 advsersly 1 -010101110111011 worked-over 1 -010101110111011 swim-off 1 -010101110111011 10-inch-longer 1 -010101110111011 vacantly 1 -010101110111011 Ponderosa-pine 1 -010101110111011 mini-coffin 1 -010101110111011 soberingly 1 -010101110111011 non-politically 1 -010101110111011 mellifluously 1 -010101110111011 Australian-owned 1 -010101110111011 four-drawer 1 -010101110111011 genitally 1 -010101110111011 knotting 1 -010101110111011 Maniatises 1 -010101110111011 Jimenezes 1 -010101110111011 bull-breeders 1 -010101110111011 sod-chunk 1 -010101110111011 theologically 1 -010101110111011 megamerger 1 -010101110111011 monoplane 1 -010101110111011 six-yard 1 -010101110111011 quantifiably 1 -010101110111011 355,600 1 -010101110111011 coffee-cup 1 -010101110111011 clawlike 1 -010101110111011 business-of-your 1 -010101110111011 quasimarket 1 -010101110111011 1,000-rat 1 -010101110111011 mostactively 1 -010101110111011 ADRsfreely 1 -010101110111011 wetsuit 1 -010101110111011 4,750-cubic-foot 1 -010101110111011 ravishingly 1 -010101110111011 24-yard 1 -010101110111011 microcamera 1 -010101110111011 explicity 1 -010101110111011 cow-blood 1 -010101110111011 27,600,000 1 -010101110111011 first-string 1 -010101110111011 Beirut. 1 -010101110111011 unqualifiedly 1 -010101110111011 closley 1 -010101110111011 non-IBMer 1 -010101110111011 dominees 2 -010101110111011 ritually 2 -010101110111011 numbly 2 -010101110111011 Dorran 2 -010101110111011 38-7 2 -010101110111011 4,168 2 -010101110111011 Bronfman-family 2 -010101110111011 torturously 2 -010101110111011 Khrushchevs 2 -010101110111011 Oppland 2 -010101110111011 diffusely 2 -010101110111011 150-seater 3 -010101110111011 shoddily 3 -010101110111011 megacontracts 3 -010101110111011 24-game 3 -010101110111011 lengthily 3 -010101110111011 punctually 3 -010101110111011 Democratically 3 -010101110111011 expressively 4 -010101110111011 leaseholds 4 -010101110111011 non-highly 4 -010101110111011 sumptuously 5 -010101110111011 aerodynamically 5 -010101110111011 sturdily 5 -010101110111011 nattily 5 -010101110111011 boa 8 -010101110111011 enviously 9 -010101110111011 most-actively 12 -010101110111011 scantily 12 -010101110111011 municipally 17 -010101110111011 cooperatively 20 -010101110111011 numerically 23 -010101110111011 institutionally 23 -010101110111011 provincially 34 -010101110111011 comparably 46 -010101110111011 sparsely 46 -010101110111011 densely 52 -010101110111011 centrally 79 -010101110111011 dealer-to-dealer 80 -010101110111011 specially 154 -010101110111011 thinly 155 -010101110111011 locally 248 -010101110111011 wholly 456 -010101110111011 jointly 999 -010101110111011 actively 1216 -010101110111011 privately 1498 -010101110111011 closely 5035 -010101110111011 publicly 2627 -01010111011110 crownless 1 -01010111011110 hard-to-plumb 1 -01010111011110 1096.22 1 -01010111011110 241.00 1 -01010111011110 satisfyingly 1 -01010111011110 worker-hours 1 -01010111011110 169.14 1 -01010111011110 incalculably 1 -01010111011110 Generalizing 1 -01010111011110 .0052 1 -01010111011110 11,052 1 -01010111011110 NAMnet 1 -01010111011110 slighly 1 -01010111011110 substantialy 1 -01010111011110 88,866 1 -01010111011110 crotch-stroking 1 -01010111011110 icicle-stiff 1 -01010111011110 1,238 1 -01010111011110 out-of-range 1 -01010111011110 curdle 1 -01010111011110 flashily 1 -01010111011110 18-fold 1 -01010111011110 32.54 1 -01010111011110 1/2-inchers 1 -01010111011110 dartlike 1 -01010111011110 77.13 1 -01010111011110 countertrends 1 -01010111011110 verk 1 -01010111011110 Non-Withdrawal 1 -01010111011110 596.49 1 -01010111011110 skosh 1 -01010111011110 droving 1 -01010111011110 appearences 1 -01010111011110 profitdraining 1 -01010111011110 speech-learning 1 -01010111011110 50-cents-an-hour 1 -01010111011110 1033.74 1 -01010111011110 0.000018 1 -01010111011110 I95 1 -01010111011110 cost-reductions 1 -01010111011110 13,100 1 -01010111011110 negligible-far 1 -01010111011110 47,915 1 -01010111011110 facially 1 -01010111011110 macs 1 -01010111011110 seasonably 1 -01010111011110 962,638 1 -01010111011110 219,100 1 -01010111011110 .0073 1 -01010111011110 .0166 1 -01010111011110 369.41 1 -01010111011110 162.36 1 -01010111011110 flutterred 1 -01010111011110 fifteenfold 2 -01010111011110 0.0154 2 -01010111011110 eighteenfold 2 -01010111011110 8-to-5 2 -01010111011110 cudgels 2 -01010111011110 75.60 2 -01010111011110 fifteen-fold 2 -01010111011110 procedurally 2 -01010111011110 welched 2 -01010111011110 invaluably 2 -01010111011110 Malinchismo 2 -01010111011110 A1-plus 2 -01010111011110 indecisively 2 -01010111011110 11-fold 2 -01010111011110 hot-fat 2 -01010111011110 thousandfold 2 -01010111011110 boundlessly 2 -01010111011110 occupier 2 -01010111011110 ethereally 2 -01010111011110 rowdyism 2 -01010111011110 ad-free 2 -01010111011110 Senderistas 2 -01010111011110 many-fold 3 -01010111011110 17-fold 3 -01010111011110 splayed 3 -01010111011110 unmentionables 3 -01010111011110 pix 3 -01010111011110 seven-fold 3 -01010111011110 Bosie 4 -01010111011110 shakily 4 -01010111011110 30-fold 4 -01010111011110 overearn 4 -01010111011110 0.0150 4 -01010111011110 signficantly 5 -01010111011110 1,059 5 -01010111011110 perceptibly 5 -01010111011110 four-fold 5 -01010111011110 concomitantly 6 -01010111011110 twentyfold 6 -01010111011110 unaccountably 6 -01010111011110 secondarily 7 -01010111011110 geopolitically 7 -01010111011110 geometrically 9 -01010111011110 astronomically 9 -01010111011110 incrementally 10 -01010111011110 measurably 13 -01010111011110 irretrievably 13 -01010111011110 meaningfully 18 -01010111011110 weakly 19 -01010111011110 explosively 20 -01010111011110 immeasurably 24 -01010111011110 irregularly 33 -01010111011110 swoop 37 -01010111011110 precipitously 48 -01010111011110 appreciably 51 -01010111011110 noticeably 57 -01010111011110 smartly 63 -01010111011110 fractionally 68 -01010111011110 progressively 80 -01010111011110 steeply 96 -01010111011110 proportionately 114 -01010111011110 materially 191 -01010111011110 radically 196 -01010111011110 markedly 221 -01010111011110 vastly 240 -01010111011110 marginally 272 -01010111011110 drastically 295 -01010111011110 modestly 354 -01010111011110 moderately 443 -01010111011110 broadly 533 -01010111011110 dramatically 571 -01010111011110 steadily 823 -01010111011110 considerably 865 -01010111011110 greatly 967 -01010111011110 somewhat 2178 -01010111011110 substantially 2350 -01010111011110 significantly 2441 -01010111011110 sharply 5059 -01010111011110 slightly 5391 -010101110111110 commandeers 1 -010101110111110 raucus 1 -010101110111110 Hollywood-bright 1 -010101110111110 far. 1 -010101110111110 long. 1 -010101110111110 boxlike 1 -010101110111110 pessimistically 1 -010101110111110 quail-egg 1 -010101110111110 new. 1 -010101110111110 simpleminded 1 -010101110111110 constrictive 1 -010101110111110 alluringly 1 -010101110111110 getters 1 -010101110111110 outlandishness 1 -010101110111110 striped-bass 1 -010101110111110 grandiloquently 1 -010101110111110 youth-athletic 1 -010101110111110 shortwinded 1 -010101110111110 troups 1 -010101110111110 headachy 1 -010101110111110 controlled. 1 -010101110111110 paraplegics 2 -010101110111110 fun. 2 -010101110111110 rushers 2 -010101110111110 throughputs 2 -010101110111110 soused 2 -010101110111110 flumes 2 -010101110111110 well-fixed 2 -010101110111110 doubtfully 2 -010101110111110 prudes 2 -010101110111110 frivolously 2 -010101110111110 dubiously 2 -010101110111110 free. 2 -010101110111110 small-businessmen 2 -010101110111110 Metrotech 2 -010101110111110 Siderbras 2 -010101110111110 TDs 2 -010101110111110 away. 2 -010101110111110 accident-free 2 -010101110111110 sideward 2 -010101110111110 feasibly 2 -010101110111110 Complexity 2 -010101110111110 appealing. 2 -010101110111110 autocratically 3 -010101110111110 cordially 3 -010101110111110 dogmatically 3 -010101110111110 Rhome 3 -010101110111110 companionable 3 -010101110111110 proficiently 3 -010101110111110 hairpin 3 -010101110111110 defenselessness 3 -010101110111110 advantageously 3 -010101110111110 people-intensive 3 -010101110111110 imperiously 3 -010101110111110 cicadas 3 -010101110111110 humanlike 3 -010101110111110 healthily 3 -010101110111110 Frisbees 3 -010101110111110 decapitalized 3 -010101110111110 fruitfully 3 -010101110111110 contemporaneously 3 -010101110111110 dishonorably 4 -010101110111110 sentimentally 4 -010101110111110 much. 4 -010101110111110 inventively 4 -010101110111110 rant 4 -010101110111110 COINS 4 -010101110111110 1,083 4 -010101110111110 shabbily 5 -010101110111110 lustily 5 -010101110111110 vigilantly 5 -010101110111110 soothingly 5 -010101110111110 fluently 6 -010101110111110 hungrily 6 -010101110111110 prodigiously 6 -010101110111110 full-tilt 6 -010101110111110 haltingly 6 -010101110111110 decently 6 -010101110111110 impartially 7 -010101110111110 leniently 7 -010101110111110 tenderly 7 -010101110111110 immemorial 7 -010101110111110 lazily 7 -010101110111110 uncouth 7 -010101110111110 imaginatively 8 -010101110111110 capriciously 8 -010101110111110 timidly 8 -010101110111110 concisely 8 -010101110111110 astutely 8 -010101110111110 seamlessly 9 -010101110111110 competently 9 -010101110111110 attentively 10 -010101110111110 piously 10 -010101110111110 robustly 10 -010101110111110 poignantly 10 -010101110111110 painlessly 11 -010101110111110 nimbly 11 -010101110111110 flexibly 12 -010101110111110 flawlessly 13 -010101110111110 hereafter 14 -010101110111110 editorially 14 -010101110111110 noisily 14 -010101110111110 stringently 14 -010101110111110 madly 15 -010101110111110 effortlessly 16 -010101110111110 productively 16 -010101110111110 awkwardly 18 -010101110111110 credibly 18 -010101110111110 cleanly 20 -010101110111110 equitably 21 -010101110111110 inexpensively 21 -010101110111110 zealously 21 -010101110111110 succinctly 22 -010101110111110 willy-nilly 23 -010101110111110 adroitly 25 -010101110111110 magically 25 -010101110111110 innocently 25 -010101110111110 lawfully 27 -010101110111110 intensively 28 -010101110111110 energetically 28 -010101110111110 sparingly 30 -010101110111110 sluggishly 31 -010101110111110 ably 33 -010101110111110 intelligently 33 -010101110111110 objectively 33 -010101110111110 sensibly 33 -010101110111110 diligently 33 -010101110111110 indiscriminately 35 -010101110111110 eloquently 36 -010101110111110 speedily 36 -010101110111110 expeditiously 45 -010101110111110 reliably 46 -010101110111110 inexorably 47 -010101110111110 prudently 51 -010101110111110 gracefully 52 -010101110111110 gingerly 57 -010101110111110 silently 59 -010101110111110 realistically 63 -010101110111110 violently 71 -010101110111110 conservatively 81 -010101110111110 competitively 92 -010101110111110 gently 100 -010101110111110 selectively 100 -010101110111110 decisively 101 -010101110111110 forcefully 105 -010101110111110 profitably 146 -010101110111110 loudly 164 -010101110111110 nicely 205 -010101110111110 cheaply 207 -010101110111110 smoothly 225 -010101110111110 swiftly 241 -010101110111110 safely 251 -010101110111110 someday 252 -010101110111110 efficiently 301 -010101110111110 accurately 321 -010101110111110 freely 415 -010101110111110 simultaneously 491 -010101110111110 vigorously 664 -010101110111110 gradually 805 -010101110111110 aggressively 995 -010101110111110 slowly 1062 -010101110111110 rapidly 1799 -010101110111110 easily 1816 -010101110111110 fast 2034 -010101110111110 quickly 4384 -010101110111110 soon 6694 -0101011101111110 Comex-driven 1 -0101011101111110 Merc-driven 1 -0101011101111110 snooze-inducing 1 -0101011101111110 radio-produced 1 -0101011101111110 Breathe 1 -0101011101111110 cha 1 -0101011101111110 over-specific 1 -0101011101111110 didactically 1 -0101011101111110 self-enforcing 1 -0101011101111110 accelerating. 1 -0101011101111110 talpengi 1 -0101011101111110 happen. 1 -0101011101111110 gaspingly 1 -0101011101111110 Trekkies 1 -0101011101111110 well-configured 1 -0101011101111110 underoptimism 1 -0101011101111110 unclever 1 -0101011101111110 Misbehavin 1 -0101011101111110 overborrow 1 -0101011101111110 Bolshevik-controlled 1 -0101011101111110 WXPN 1 -0101011101111110 conflict-oriented 1 -0101011101111110 forseen 1 -0101011101111110 waiting. 1 -0101011101111110 publicaly 1 -0101011101111110 Vacillated 1 -0101011101111110 mosquitos 1 -0101011101111110 self-celebratory 1 -0101011101111110 atonement 1 -0101011101111110 Thumbelina 1 -0101011101111110 imaginings 1 -0101011101111110 cocaines 1 -0101011101111110 currenty 1 -0101011101111110 stellarly 1 -0101011101111110 puritannical 1 -0101011101111110 reconcilable 1 -0101011101111110 vetoable 1 -0101011101111110 dismantlers 1 -0101011101111110 fluffier 1 -0101011101111110 English-Danish 1 -0101011101111110 monolingual 1 -0101011101111110 revanchism 1 -0101011101111110 true. 1 -0101011101111110 immmediately 1 -0101011101111110 supersophisticated 1 -0101011101111110 guiltless 1 -0101011101111110 cravat 1 -0101011101111110 super-idealistic. 1 -0101011101111110 know/no 1 -0101011101111110 quality-competitive 1 -0101011101111110 exciting. 1 -0101011101111110 body-watching 1 -0101011101111110 unimportantly 1 -0101011101111110 laxly 2 -0101011101111110 faultlessly 2 -0101011101111110 stupid. 2 -0101011101111110 tamperproof 2 -0101011101111110 jubilantly 2 -0101011101111110 91-4 2 -0101011101111110 rashly 2 -0101011101111110 naturists 2 -0101011101111110 juggernauts 2 -0101011101111110 66-28 2 -0101011101111110 massagers 2 -0101011101111110 governmentally 3 -0101011101111110 Trevelyan 3 -0101011101111110 craning 4 -0101011101111110 opportunistically 4 -0101011101111110 ALWAYS 4 -0101011101111110 Afford 5 -0101011101111110 thusly 6 -0101011101111110 typography 6 -0101011101111110 earth-shattering 6 -0101011101111110 conclusively 43 -0101011101111110 coincidentally 47 -0101011101111110 yet 7726 -0101011101111110 necessarily 1125 -0101011101111111 shipt 1 -0101011101111111 Nazareth/Century 1 -0101011101111111 156-92 1 -0101011101111111 125-50 1 -0101011101111111 Stayfree 1 -0101011101111111 21-13 1 -0101011101111111 20-0 1 -0101011101111111 anyways 1 -0101011101111111 discernibly 1 -0101011101111111 eunuchs 1 -0101011101111111 77-13 1 -0101011101111111 cosier 1 -0101011101111111 247-130 1 -0101011101111111 45-45 1 -0101011101111111 highly-susceptible 1 -0101011101111111 atmospherically 1 -0101011101111111 re-detain 1 -0101011101111111 9,034-to-4,498 1 -0101011101111111 proud. 1 -0101011101111111 phan 1 -0101011101111111 actuarially 1 -0101011101111111 301-122 1 -0101011101111111 fifty-one 1 -0101011101111111 youth-death 1 -0101011101111111 Undertaking 1 -0101011101111111 64,500,000 1 -0101011101111111 fleabag 1 -0101011101111111 scruffier 1 -0101011101111111 717-92 1 -0101011101111111 wimpishly 1 -0101011101111111 Sealand 1 -0101011101111111 --Lord 1 -0101011101111111 Shergar 1 -0101011101111111 meneer 1 -0101011101111111 sugar-substitutes 1 -0101011101111111 unlatched 1 -0101011101111111 46-15 1 -0101011101111111 perfunctorily 1 -0101011101111111 29-20 1 -0101011101111111 38-19 1 -0101011101111111 253-167 1 -0101011101111111 sleep-related 1 -0101011101111111 interal 1 -0101011101111111 9,122-to-3,535 1 -0101011101111111 foreign-affairs-only 1 -0101011101111111 1,594 1 -0101011101111111 amytrophic 1 -0101011101111111 palmitate 1 -0101011101111111 prayerfully 1 -0101011101111111 incautious 1 -0101011101111111 fast. 1 -0101011101111111 acquisition-proof 1 -0101011101111111 Brussels-London-Hong 1 -0101011101111111 shoulder-to-shoulder 1 -0101011101111111 detonologists 1 -0101011101111111 escargots 2 -0101011101111111 130-124 2 -0101011101111111 18-13 2 -0101011101111111 prison-like 2 -0101011101111111 laterally 2 -0101011101111111 8-pound 2 -0101011101111111 manyfold 2 -0101011101111111 97-0 2 -0101011101111111 88-9 2 -0101011101111111 game-winners 2 -0101011101111111 90-4 2 -0101011101111111 unhitched 2 -0101011101111111 ravished 2 -0101011101111111 11-4 2 -0101011101111111 baas 2 -0101011101111111 28-14 2 -0101011101111111 29-19 2 -0101011101111111 11-0 2 -0101011101111111 16-14 2 -0101011101111111 346-11 2 -0101011101111111 286-136 2 -0101011101111111 five-to-one 2 -0101011101111111 33-8 2 -0101011101111111 unenthusiastically 2 -0101011101111111 51-39 2 -0101011101111111 ad-libs 2 -0101011101111111 51-33 2 -0101011101111111 icily 2 -0101011101111111 nothing. 2 -0101011101111111 mandatorily 2 -0101011101111111 downlink 2 -0101011101111111 49-44 2 -0101011101111111 tepidly 2 -0101011101111111 illegible 3 -0101011101111111 sensationally 3 -0101011101111111 satirically 3 -0101011101111111 401-26 3 -0101011101111111 equidistant 3 -0101011101111111 51-48 3 -0101011101111111 gainfully 3 -0101011101111111 unsucessfully 3 -0101011101111111 incompetently 3 -0101011101111111 87-4 3 -0101011101111111 thereon 3 -0101011101111111 52-48 3 -0101011101111111 immutably 4 -0101011101111111 59-31 4 -0101011101111111 unquestioningly 4 -0101011101111111 fearfully 4 -0101011101111111 pilfered 4 -0101011101111111 craftily 5 -0101011101111111 tangentially 5 -0101011101111111 retrospectively 5 -0101011101111111 adieu 6 -0101011101111111 provocatively 6 -0101011101111111 homeward 6 -0101011101111111 94-0 6 -0101011101111111 affirmatively 6 -0101011101111111 ecstatically 7 -0101011101111111 confidentially 8 -0101011101111111 evenhandedly 8 -0101011101111111 digitally 8 -0101011101111111 impulsively 8 -0101011101111111 concretely 9 -0101011101111111 wittingly 9 -0101011101111111 substantively 9 -0101011101111111 diagonally 10 -0101011101111111 bullishly 10 -0101011101111111 viscerally 10 -0101011101111111 lusting 10 -0101011101111111 bearishly 11 -0101011101111111 clandestinely 12 -0101011101111111 autonomously 12 -0101011101111111 bygones 12 -0101011101111111 unambiguously 13 -0101011101111111 bilaterally 13 -0101011101111111 singly 15 -0101011101111111 inefficiently 17 -0101011101111111 forthrightly 18 -0101011101111111 unimpeded 18 -0101011101111111 administratively 21 -0101011101111111 unconditionally 21 -0101011101111111 constructively 21 -0101011101111111 sympathetically 25 -0101011101111111 instantaneously 27 -0101011101111111 involuntarily 27 -0101011101111111 optimistically 29 -0101011101111111 5-0 30 -0101011101111111 liberally 32 -0101011101111111 intently 35 -0101011101111111 validly 37 -0101011101111111 unfavorably 37 -0101011101111111 feverishly 39 -0101011101111111 orally 41 -0101011101111111 infrequently 44 -0101011101111111 manually 47 -0101011101111111 skeptically 52 -0101011101111111 mightily 59 -0101011101111111 calmly 66 -0101011101111111 coolly 73 -0101011101111111 remotely 74 -0101011101111111 nervously 88 -0101011101111111 retroactively 98 -0101011101111111 negatively 104 -0101011101111111 squarely 134 -0101011101111111 handsomely 145 -0101011101111111 instantly 147 -0101011101111111 adversely 155 -0101011101111111 electronically 192 -0101011101111111 positively 199 -0101011101111111 independently 326 -0101011101111111 indirectly 398 -0101011101111111 favorably 403 -0101011101111111 exclusively 435 -0101011101111111 adequately 443 -0101011101111111 separately 721 -0101011101111111 properly 828 -0101011101111111 specifically 979 -0101011101111111 entirely 1324 -0101011101111111 shortly 1365 -0101011101111111 immediately 3227 -0101011101111111 directly 3684 -0101011110000 graduate-student 1 -0101011110000 semidepressed 1 -0101011110000 projectingmoney 1 -0101011110000 Pan-Africanism 1 -0101011110000 synthetism 1 -0101011110000 custom-sewn 1 -0101011110000 re-learned 1 -0101011110000 doing. 1 -0101011110000 heavy-handed-suggesting 1 -0101011110000 unrepairable 1 -0101011110000 nonviolently 1 -0101011110000 ultra-spiffed 1 -0101011110000 necessarly 1 -0101011110000 obfuscated 1 -0101011110000 among-the-most-dependable-of-catalog-se 1 -0101011110000 self-administering 1 -0101011110000 swinish 1 -0101011110000 mortgage-financed 1 -0101011110000 here/All 1 -0101011110000 frustated 1 -0101011110000 Othello. 1 -0101011110000 protracted. 1 -0101011110000 rocket-science 1 -0101011110000 equity-led 1 -0101011110000 dependants 1 -0101011110000 asking. 1 -0101011110000 Exec-U-Punch 1 -0101011110000 Cabots 1 -0101011110000 atwitter 1 -0101011110000 popup 1 -0101011110000 someBODY 1 -0101011110000 SOMEbody 1 -0101011110000 tightrope-tense 1 -0101011110000 perfuses 1 -0101011110000 commmitments 1 -0101011110000 overdiversify 1 -0101011110000 evalauate 1 -0101011110000 townsite 1 -0101011110000 uneqivocal 1 -0101011110000 refillable 1 -0101011110000 petrified. 1 -0101011110000 praise-worthy 1 -0101011110000 untraced 1 -0101011110000 immortalizing 1 -0101011110000 Mings 1 -0101011110000 egg-processing 1 -0101011110000 Equron 1 -0101011110000 unlucrative 1 -0101011110000 spinouts 1 -0101011110000 unzipping 1 -0101011110000 stinkers 2 -0101011110000 superexpensive 2 -0101011110000 unrefuted 2 -0101011110000 undisputable 2 -0101011110000 guesstimating 2 -0101011110000 coopted 2 -0101011110000 half-complete 2 -0101011110000 long-past 2 -0101011110000 day-trading 3 -0101011110000 touch-and-go 3 -0101011110000 discomforting 3 -0101011110000 Madge 3 -0101011110000 lowkey 4 -0101011110000 mincing 5 -0101011110000 purloined 5 -0101011110000 materializing 7 -0101011110000 printable 7 -0101011110000 overproducing 8 -0101011110000 debatable 61 -0101011110000 inconceivable 77 -0101011110000 kidding 84 -0101011110000 conceivable 111 -0101011110000 doubtful 289 -0101011110000 wondering 338 -0101011110000 unclear 758 -0101011110000 surprising 986 -0101011110000 convinced 1408 -0101011110000 clear 6451 -0101011110000 sure 3902 -0101011110001 disembarrassed 1 -0101011110001 well-learned 1 -0101011110001 well-postured 1 -0101011110001 maldistributed 1 -0101011110001 buho 1 -0101011110001 super-confident 1 -0101011110001 overblowing 1 -0101011110001 molecular- 1 -0101011110001 unplagued 1 -0101011110001 yuk-yuks 1 -0101011110001 eruptive 1 -0101011110001 barer 1 -0101011110001 Sortileges 1 -0101011110001 swishing 1 -0101011110001 evenements 1 -0101011110001 Gourmandes 1 -0101011110001 WHJJ-AM 1 -0101011110001 26962 1 -0101011110001 methodic 1 -0101011110001 tenderer 1 -0101011110001 munchies 1 -0101011110001 -vegetation 1 -0101011110001 nam 1 -0101011110001 non-Singaporeans 1 -0101011110001 hissy 1 -0101011110001 made-over 1 -0101011110001 nice. 1 -0101011110001 competititive 1 -0101011110001 squealings 1 -0101011110001 relook 1 -0101011110001 gashed 1 -0101011110001 womanish 1 -0101011110001 bayensis 1 -0101011110001 sedumesque 1 -0101011110001 leap-frogging 1 -0101011110001 broadminded 1 -0101011110001 800-835-7667 1 -0101011110001 misapprehensions 1 -0101011110001 pursued. 1 -0101011110001 seculorum 1 -0101011110001 concered 1 -0101011110001 inboards 1 -0101011110001 hair-cutted 1 -0101011110001 clomping 1 -0101011110001 isolated. 1 -0101011110001 extra-so 1 -0101011110001 quicksandy 1 -0101011110001 tacts-exempt 1 -0101011110001 persnickety 1 -0101011110001 snoozers 1 -0101011110001 sceptical 1 -0101011110001 overlicensed 1 -0101011110001 mei 1 -0101011110001 incurious 1 -0101011110001 heading. 1 -0101011110001 imposters 1 -0101011110001 hungry. 1 -0101011110001 frumpy-looking 1 -0101011110001 dim-wits 1 -0101011110001 upticking 1 -0101011110001 27997 1 -0101011110001 piu 1 -0101011110001 underinvestigated 1 -0101011110001 excessive. 1 -0101011110001 uncceptable 1 -0101011110001 PC-itis. 1 -0101011110001 neck-to-neck 1 -0101011110001 aspirated 1 -0101011110001 well-contained 1 -0101011110001 shaving-product 1 -0101011110001 anchorless 1 -0101011110001 counterpunchers 1 -0101011110001 scrubbable 1 -0101011110001 wife-beaters 1 -0101011110001 six-feet-seven 1 -0101011110001 Bubbas 1 -0101011110001 enthusiatic 1 -0101011110001 well-rendered 1 -0101011110001 field-operating 1 -0101011110001 uspet 1 -0101011110001 barracked 1 -0101011110001 mad. 1 -0101011110001 A-300-310s 1 -0101011110001 pro-people 1 -0101011110001 expensive. 1 -0101011110001 crypto-fascists 1 -0101011110001 overinsistent 1 -0101011110001 user-inviting 1 -0101011110001 correct. 1 -0101011110001 well-protected 1 -0101011110001 sneaky. 1 -0101011110001 minimal. 1 -0101011110001 goners 1 -0101011110001 goal-focused 1 -0101011110001 zigging 1 -0101011110001 middle-class. 1 -0101011110001 convincible 1 -0101011110001 combat-trained 1 -0101011110001 wedge-designed 1 -0101011110001 Disneyland-cute 1 -0101011110001 told. 1 -0101011110001 prosecuted. 1 -0101011110001 threatened. 1 -0101011110001 wanning 1 -0101011110001 inbetweeners 1 -0101011110001 tepidity 1 -0101011110001 well-rotted 1 -0101011110001 transferable. 1 -0101011110001 estatic 1 -0101011110001 Manhattan-long 1 -0101011110001 science-oriented 1 -0101011110001 escapists 1 -0101011110001 flight-worthy 1 -0101011110001 private. 1 -0101011110001 a-wishing 1 -0101011110001 bumm 1 -0101011110001 well-cushioned 2 -0101011110001 hand-in-glove 2 -0101011110001 overcollateralized 2 -0101011110001 haw 2 -0101011110001 optmistic 2 -0101011110001 defiles 2 -0101011110001 commission-free 2 -0101011110001 nonhumanitarian 2 -0101011110001 sniffy 2 -0101011110001 anti-political 2 -0101011110001 Cassetten 2 -0101011110001 batty 2 -0101011110001 unexcited 2 -0101011110001 outmatched 2 -0101011110001 oversensitive 2 -0101011110001 closemouthed 2 -0101011110001 not. 2 -0101011110001 monetary-related 2 -0101011110001 backpeddling 2 -0101011110001 explicable 2 -0101011110001 thinking. 2 -0101011110001 overladen 2 -0101011110001 demucked 2 -0101011110001 hot-dogging 2 -0101011110001 clairvoyance 2 -0101011110001 ultrasensitive 2 -0101011110001 underowned 2 -0101011110001 unusual-looking 2 -0101011110001 mind-bending 2 -0101011110001 presentable 2 -0101011110001 teeny 2 -0101011110001 communing 2 -0101011110001 KOA-AM 2 -0101011110001 gossiped 2 -0101011110001 Neapolitans 2 -0101011110001 stammer 2 -0101011110001 prettified 2 -0101011110001 telecopier 2 -0101011110001 doublecrossed 2 -0101011110001 clearheaded 2 -0101011110001 nachus 2 -0101011110001 depression-proof 2 -0101011110001 undertaxed 2 -0101011110001 aah 2 -0101011110001 closed. 2 -0101011110001 un-Filipino 2 -0101011110001 paler 2 -0101011110001 atingle 2 -0101011110001 disquieted 2 -0101011110001 abominably 2 -0101011110001 desensitizes 2 -0101011110001 dolts 2 -0101011110001 hot-tempered 2 -0101011110001 paranoic 2 -0101011110001 over-earning 2 -0101011110001 star-struck 2 -0101011110001 tippling 3 -0101011110001 well-supplied 3 -0101011110001 half-right 3 -0101011110001 undressed 3 -0101011110001 fatalistic 3 -0101011110001 oui 3 -0101011110001 guffawing 3 -0101011110001 unembarrassed 3 -0101011110001 anti-climactic 3 -0101011110001 pussycats 3 -0101011110001 reviewable 3 -0101011110001 honeycombed 3 -0101011110001 reverse-engineered 3 -0101011110001 over-reserved 3 -0101011110001 hunchbacked 3 -0101011110001 besotted 3 -0101011110001 misfiring 3 -0101011110001 abjured 3 -0101011110001 overanxious 3 -0101011110001 two-fold 3 -0101011110001 wrong-headed 3 -0101011110001 delicensed 3 -0101011110001 uninvestigated 3 -0101011110001 pokey 3 -0101011110001 wrong. 3 -0101011110001 out-negotiated 3 -0101011110001 Superwoman 3 -0101011110001 dearer 3 -0101011110001 knowable 3 -0101011110001 reverentially 3 -0101011110001 bruited 3 -0101011110001 choosier 4 -0101011110001 good. 4 -0101011110001 warier 4 -0101011110001 auditioning 4 -0101011110001 overbroad 4 -0101011110001 overmanned 4 -0101011110001 unpersuaded 4 -0101011110001 committal 4 -0101011110001 warping 4 -0101011110001 stupefied 4 -0101011110001 grandkids 4 -0101011110001 self-explanatory 4 -0101011110001 quick-tempered 4 -0101011110001 toppish 4 -0101011110001 satisified 4 -0101011110001 galled 4 -0101011110001 noncommital 4 -0101011110001 satiated 4 -0101011110001 soapy 4 -0101011110001 eleemosynary 4 -0101011110001 self-destructing 4 -0101011110001 underleveraged 4 -0101011110001 twinned 4 -0101011110001 overoptimistic 4 -0101011110001 foreordained 4 -0101011110001 closed-mouthed 4 -0101011110001 reproducible 5 -0101011110001 obsequious 5 -0101011110001 unemotional 5 -0101011110001 depopulated 5 -0101011110001 consecrated 5 -0101011110001 pallbearers 5 -0101011110001 true-blue 5 -0101011110001 G.M. 5 -0101011110001 bellyaching 5 -0101011110001 ill-educated 5 -0101011110001 out-of-touch 5 -0101011110001 unbowed 5 -0101011110001 enraptured 5 -0101011110001 inquisitive 5 -0101011110001 bleating 5 -0101011110001 confirmable 5 -0101011110001 under-performing 5 -0101011110001 undimmed 5 -0101011110001 co-hosts 5 -0101011110001 debunked 5 -0101011110001 underwhelmed 5 -0101011110001 thunderstruck 5 -0101011110001 betrothed 5 -0101011110001 unsinkable 5 -0101011110001 close-mouthed 6 -0101011110001 bedridden 6 -0101011110001 grumblings 6 -0101011110001 well-served 6 -0101011110001 solvable 6 -0101011110001 preordained 6 -0101011110001 unworried 6 -0101011110001 congeniality 6 -0101011110001 underwithheld 6 -0101011110001 overleveraged 6 -0101011110001 smirks 6 -0101011110001 babbling 6 -0101011110001 undermanaged 6 -0101011110001 handholding 6 -0101011110001 over-priced 6 -0101011110001 weak-kneed 6 -0101011110001 feistier 6 -0101011110001 moping 6 -0101011110001 discombobulated 6 -0101011110001 unwinnable 6 -0101011110001 absent-minded 7 -0101011110001 slobs 7 -0101011110001 murmuring 7 -0101011110001 window-shopping 7 -0101011110001 delirious 7 -0101011110001 abhorred 7 -0101011110001 pickier 7 -0101011110001 praiseworthy 7 -0101011110001 hyper 7 -0101011110001 snobby 7 -0101011110001 fidgeting 7 -0101011110001 entranced 7 -0101011110001 salivating 7 -0101011110001 heartbroken 7 -0101011110001 cuckoo 7 -0101011110001 snooty 7 -0101011110001 gossiping 8 -0101011110001 affronted 8 -0101011110001 floored 8 -0101011110001 chattering 8 -0101011110001 snorting 8 -0101011110001 quaking 8 -0101011110001 legible 8 -0101011110001 fishy 9 -0101011110001 faint-hearted 9 -0101011110001 contrite 9 -0101011110001 pockmarked 9 -0101011110001 ill-informed 9 -0101011110001 reminiscing 9 -0101011110001 unapologetic 9 -0101011110001 rhapsodic 9 -0101011110001 nonchalant 9 -0101011110001 despondent 10 -0101011110001 egotistical 10 -0101011110001 off-base 10 -0101011110001 axiomatic 10 -0101011110001 untroubled 10 -0101011110001 askew 10 -0101011110001 drooling 10 -0101011110001 debilitated 10 -0101011110001 unemployable 10 -0101011110001 crowing 10 -0101011110001 loathsome 11 -0101011110001 garbled 11 -0101011110001 cagey 11 -0101011110001 fastidious 11 -0101011110001 vexed 11 -0101011110001 underpowered 11 -0101011110001 squawking 12 -0101011110001 wronged 12 -0101011110001 mortified 12 -0101011110001 nitpicking 12 -0101011110001 tickled 13 -0101011110001 sheepish 13 -0101011110001 itchy 13 -0101011110001 radicalized 13 -0101011110001 illustrative 13 -0101011110001 curable 13 -0101011110001 choosy 13 -0101011110001 amputated 13 -0101011110001 over-optimistic 13 -0101011110001 undiminished 14 -0101011110001 blase 14 -0101011110001 inexcusable 14 -0101011110001 disoriented 14 -0101011110001 overtaxed 14 -0101011110001 unruffled 15 -0101011110001 oversupplied 15 -0101011110001 unsatisfied 15 -0101011110001 overqualified 15 -0101011110001 hoot 15 -0101011110001 shellshocked 16 -0101011110001 smitten 16 -0101011110001 overjoyed 16 -0101011110001 antsy 17 -0101011110001 blameless 17 -0101011110001 fatigued 17 -0101011110001 thirsty 18 -0101011110001 petrified 18 -0101011110001 enthused 18 -0101011110001 stalemated 18 -0101011110001 fussy 18 -0101011110001 gloating 18 -0101011110001 evaporating 18 -0101011110001 jumpy 18 -0101011110001 bluffing 19 -0101011110001 assimilated 19 -0101011110001 perturbed 19 -0101011110001 peeved 19 -0101011110001 chagrined 19 -0101011110001 intoxicated 19 -0101011110001 livid 19 -0101011110001 flustered 19 -0101011110001 unperturbed 19 -0101011110001 enchanted 20 -0101011110001 gung-ho 20 -0101011110001 overstaffed 20 -0101011110001 apathetic 21 -0101011110001 bashful 21 -0101011110001 bandied 21 -0101011110001 dumbfounded 21 -0101011110001 carping 21 -0101011110001 equivocal 21 -0101011110001 despairing 22 -0101011110001 coy 22 -0101011110001 shackled 22 -0101011110001 griping 23 -0101011110001 squeamish 23 -0101011110001 arguable 23 -0101011110001 quarreling 24 -0101011110001 self-evident 24 -0101011110001 awed 24 -0101011110001 seething 24 -0101011110001 misinformed 24 -0101011110001 enthralled 25 -0101011110001 numb 25 -0101011110001 mystified 25 -0101011110001 befuddled 25 -0101011110001 uninformed 26 -0101011110001 picky 26 -0101011110001 shell-shocked 26 -0101011110001 queasy 26 -0101011110001 panicking 27 -0101011110001 amiss 27 -0101011110001 indignant 27 -0101011110001 twofold 28 -0101011110001 despised 28 -0101011110001 glum 28 -0101011110001 circumspect 28 -0101011110001 gun-shy 28 -0101011110001 agitated 30 -0101011110001 attainable 30 -0101011110001 jubilant 30 -0101011110001 flattered 30 -0101011110001 tight-lipped 30 -0101011110001 passe 30 -0101011110001 atypical 31 -0101011110001 emphatic 31 -0101011110001 incredulous 32 -0101011110001 apologetic 32 -0101011110001 unenthusiastic 32 -0101011110001 unconcerned 33 -0101011110001 fuming 34 -0101011110001 disingenuous 34 -0101011110001 stingy 35 -0101011110001 joking 35 -0101011110001 jaded 35 -0101011110001 saddened 36 -0101011110001 bragging 37 -0101011110001 flabbergasted 38 -0101011110001 undaunted 38 -0101011110001 intertwined 39 -0101011110001 displeased 39 -0101011110001 elated 39 -0101011110001 astounded 42 -0101011110001 miffed 43 -0101011110001 reticent 45 -0101011110001 buzzing 45 -0101011110001 inquiring 46 -0101011110001 unconvinced 46 -0101011110001 blurred 47 -0101011110001 overloaded 48 -0101011110001 exasperated 48 -0101011110001 complacent 51 -0101011110001 incensed 51 -0101011110001 ecstatic 53 -0101011110001 disgusted 53 -0101011110001 insecure 54 -0101011110001 oppressed 54 -0101011110001 edgy 54 -0101011110001 regrettable 54 -0101011110001 overburdened 54 -0101011110001 unimpressed 54 -0101011110001 paranoid 55 -0101011110001 agonizing 56 -0101011110001 coincidental 57 -0101011110001 bewildered 58 -0101011110001 far-fetched 58 -0101011110001 perplexed 59 -0101011110001 hypocritical 62 -0101011110001 fascinated 62 -0101011110001 horrified 64 -0101011110001 proliferating 64 -0101011110001 terrified 66 -0101011110001 fretting 69 -0101011110001 gratified 74 -0101011110001 disillusioned 76 -0101011110001 irate 78 -0101011110001 adamant 82 -0101011110001 apprehensive 82 -0101011110001 annoyed 82 -0101011110001 okay 85 -0101011110001 ambivalent 86 -0101011110001 intrigued 86 -0101011110001 amused 97 -0101011110001 overdone 99 -0101011110001 unsure 101 -0101011110001 imperative 110 -0101011110001 unthinkable 112 -0101011110001 appalled 114 -0101011110001 grateful 114 -0101011110001 thrilled 115 -0101011110001 amazed 127 -0101011110001 arrogant 130 -0101011110001 sanguine 133 -0101011110001 bored 135 -0101011110001 jittery 140 -0101011110001 saturated 141 -0101011110001 dismayed 141 -0101011110001 skittish 145 -0101011110001 nuts 157 -0101011110001 undecided 158 -0101011110001 fortunate 162 -0101011110001 knowledgeable 167 -0101011110001 frightened 168 -0101011110001 impatient 172 -0101011110001 muted 174 -0101011110001 alarmed 175 -0101011110001 furious 177 -0101011110001 puzzled 185 -0101011110001 speculating 187 -0101011110001 disturbed 202 -0101011110001 outraged 214 -0101011110001 mad 217 -0101011110001 uneasy 231 -0101011110001 embarrassed 240 -0101011110001 hungry 252 -0101011110001 delighted 262 -0101011110001 sorry 265 -0101011110001 OK 272 -0101011110001 excited 273 -0101011110001 uncomfortable 283 -0101011110001 worrying 302 -0101011110001 pessimistic 304 -0101011110001 lucky 338 -0101011110001 hopeful 343 -0101011110001 exaggerated 362 -0101011110001 complaining 379 -0101011110001 enthusiastic 395 -0101011110001 crazy 465 -0101011110001 unhappy 501 -0101011110001 confused 501 -0101011110001 frustrated 535 -0101011110001 impressed 547 -0101011110001 angry 680 -0101011110001 satisfied 711 -0101011110001 upset 743 -0101011110001 inevitable 749 -0101011110001 skeptical 904 -0101011110001 nervous 960 -0101011110001 uncertain 991 -0101011110001 comfortable 1017 -0101011110001 disappointed 1097 -0101011110001 pleased 1107 -0101011110001 happy 1385 -0101011110001 confident 1393 -0101011110001 optimistic 1551 -0101011110001 thinking 1649 -0101011110001 worried 1906 -0101011110001 talking 2407 -0101011110001 wrong 2636 -0101011110001 concerned 3253 -0101011110001 true 2689 -01010111100100 two-on-two 1 -01010111100100 bell-ringing 1 -01010111100100 miserables 1 -01010111100100 5,500-member 1 -01010111100100 321,000-employee 1 -01010111100100 5,500-person 1 -01010111100100 uneventfulness 1 -01010111100100 178th 1 -01010111100100 dificult 1 -01010111100100 1,800-person 1 -01010111100100 gay-related 1 -01010111100100 multidirectionally 1 -01010111100100 1,300-member 1 -01010111100100 typographically 1 -01010111100100 un-Method 1 -01010111100100 unfitted 1 -01010111100100 look-out-below 1 -01010111100100 observational 1 -01010111100100 hyperreactive 1 -01010111100100 9,600-member 1 -01010111100100 finger-biting 1 -01010111100100 action-picture 1 -01010111100100 unsoliciated 1 -01010111100100 Uncapping 1 -01010111100100 Yankee-go-home 1 -01010111100100 technology-conscious 1 -01010111100100 shoddier 1 -01010111100100 deterence 2 -01010111100100 spiritedly 2 -01010111100100 ultraright 2 -01010111100100 toppy 2 -01010111100100 harmful. 2 -01010111100100 uncreative 2 -01010111100100 crosscutting 2 -01010111100100 overreported 2 -01010111100100 double-dipping 2 -01010111100100 unutterable 2 -01010111100100 ill-received 2 -01010111100100 complaisant 2 -01010111100100 decomposed 2 -01010111100100 smutty 2 -01010111100100 pro-Taiwan 2 -01010111100100 hyperspace 2 -01010111100100 less-widespread 2 -01010111100100 preternatural 2 -01010111100100 ninnies 2 -01010111100100 375-member 2 -01010111100100 stooping 2 -01010111100100 well-structured 2 -01010111100100 Inhumanoids 3 -01010111100100 persevering 3 -01010111100100 levelheaded 3 -01010111100100 watchable 3 -01010111100100 dumbstruck 3 -01010111100100 seemly 3 -01010111100100 hankered 3 -01010111100100 ungentlemanly 4 -01010111100100 criminalized 4 -01010111100100 full-throttle 5 -01010111100100 inconsiderate 5 -01010111100100 uncharismatic 5 -01010111100100 costless 5 -01010111100100 bagman 6 -01010111100100 catchup 6 -01010111100100 gauche 6 -01010111100100 impolitic 7 -01010111100100 wan 8 -01010111100100 deferential 9 -01010111100100 hypersensitive 9 -01010111100100 sidestream 10 -01010111100100 unreceptive 11 -01010111100100 injurious 12 -01010111100100 immobile 12 -01010111100100 impolite 14 -01010111100100 presumptuous 14 -01010111100100 galling 15 -01010111100100 well-prepared 15 -01010111100100 disadvantageous 16 -01010111100100 unreachable 16 -01010111100100 propitious 22 -01010111100100 newsworthy 24 -01010111100100 invulnerable 32 -01010111100100 gratifying 32 -01010111100100 advisable 33 -01010111100100 demeaning 47 -01010111100100 allergic 51 -01010111100100 unfit 58 -01010111100100 wiser 59 -01010111100100 powerless 68 -01010111100100 insensitive 71 -01010111100100 detrimental 79 -01010111100100 impractical 95 -01010111100100 tempting 117 -01010111100100 advantageous 125 -01010111100100 foolish 161 -01010111100100 receptive 172 -01010111100100 worthwhile 178 -01010111100100 responsive 179 -01010111100100 tricky 233 -01010111100100 keen 242 -01010111100100 suitable 263 -01010111100100 wise 282 -01010111100100 helpful 352 -01010111100100 sympathetic 357 -01010111100100 careful 680 -01010111100100 harder 1143 -01010111100100 impossible 1367 -01010111100100 easier 1871 -01010111100100 easy 2320 -01010111100100 tough 2772 -01010111100100 hard 5631 -01010111100100 difficult 5265 -01010111100101 enforcement-assistance 1 -01010111100101 money-supply-minded 1 -01010111100101 un-Raveled 1 -01010111100101 Trumpisms 1 -01010111100101 polymorphous 1 -01010111100101 synapses 1 -01010111100101 deal-boggling 1 -01010111100101 anon 1 -01010111100101 operating-expense 1 -01010111100101 unfelicitous 1 -01010111100101 detail. 1 -01010111100101 eleven-and-a-half-billion-dollar 1 -01010111100101 un-Sumitomo 1 -01010111100101 affluental 1 -01010111100101 free-spoken 1 -01010111100101 pro-owner 1 -01010111100101 condonable 1 -01010111100101 aggresively 1 -01010111100101 reporter/prosecutors 1 -01010111100101 ATR-42s 1 -01010111100101 manufacturing-and-engineering-driven 1 -01010111100101 rashness 1 -01010111100101 customer-responsive 1 -01010111100101 hateable 1 -01010111100101 pro-Raider 1 -01010111100101 sell-outs 1 -01010111100101 campus-wide 1 -01010111100101 ominious 1 -01010111100101 inadvertant 1 -01010111100101 information-packed 1 -01010111100101 leg-room 1 -01010111100101 problem-ridden 1 -01010111100101 young-looking 1 -01010111100101 un-Republican 1 -01010111100101 crash-resistant 1 -01010111100101 chocolatey 1 -01010111100101 megatransactions 1 -01010111100101 walleyes 1 -01010111100101 private-sector-oriented 1 -01010111100101 eight-million-square 1 -01010111100101 gas-oriented 1 -01010111100101 non-Tibetans 1 -01010111100101 democratic-looking 1 -01010111100101 Penthouselike 1 -01010111100101 barbarically 1 -01010111100101 conceptualized 1 -01010111100101 streety 1 -01010111100101 media-damning 1 -01010111100101 credit-responsive 1 -01010111100101 technical-sounding 1 -01010111100101 good-spirited 1 -01010111100101 mouthwatering 1 -01010111100101 Nobels 1 -01010111100101 risk-laden 1 -01010111100101 car-crash 1 -01010111100101 damage-resistant 1 -01010111100101 dirty-beige 1 -01010111100101 sales-oriented 1 -01010111100101 intregal 1 -01010111100101 papist 1 -01010111100101 listenings 1 -01010111100101 income-assistance 1 -01010111100101 investment-driven 1 -01010111100101 asset- 1 -01010111100101 photogenically 1 -01010111100101 followerfish 1 -01010111100101 unsharklike 1 -01010111100101 never-published 1 -01010111100101 Egyptologists 1 -01010111100101 Arkansas-made 1 -01010111100101 punctual-courteous 1 -01010111100101 user-ports 1 -01010111100101 conflated 1 -01010111100101 antiCommunists 1 -01010111100101 unreasoning 1 -01010111100101 ratifiable 1 -01010111100101 Basildon 1 -01010111100101 Lotts 1 -01010111100101 sale-priced 1 -01010111100101 asexual 1 -01010111100101 hall-of-famers 1 -01010111100101 fee-sensitive 1 -01010111100101 maintainable 1 -01010111100101 suppressive 1 -01010111100101 eyecatching 1 -01010111100101 middle-oriented 1 -01010111100101 introspected 1 -01010111100101 gender-determined 1 -01010111100101 unorganizable 1 -01010111100101 sober-headed 1 -01010111100101 understaff 1 -01010111100101 Darwinistic 1 -01010111100101 Willies 1 -01010111100101 damagingly 1 -01010111100101 bottom-line-driven 1 -01010111100101 offensive-weapons 1 -01010111100101 cross-culturally 1 -01010111100101 newsy 1 -01010111100101 disunified 1 -01010111100101 who-what-when-where-and-why 1 -01010111100101 explicably 1 -01010111100101 realistic-looking 1 -01010111100101 donate-aholics 1 -01010111100101 important. 1 -01010111100101 batmoves 1 -01010111100101 Lebanons 1 -01010111100101 agency-dealing 1 -01010111100101 markets-driven 1 -01010111100101 extra-Idaho 1 -01010111100101 influenced. 1 -01010111100101 celebrity-related 1 -01010111100101 cytopathic 1 -01010111100101 household-oriented 1 -01010111100101 capitalintensive 1 -01010111100101 underanalyzed 1 -01010111100101 glasnosted 1 -01010111100101 alertly 1 -01010111100101 dollar-hungry 1 -01010111100101 import-prone 1 -01010111100101 frequent. 1 -01010111100101 jock-oriented 1 -01010111100101 anti-Honecker 1 -01010111100101 thiamine 1 -01010111100101 weighty-sounding 1 -01010111100101 ex-smokers 1 -01010111100101 competitive. 1 -01010111100101 Soviet-Bolshevik-Marxist 1 -01010111100101 combat-engineer 1 -01010111100101 autonomy-minded 1 -01010111100101 coattailing 1 -01010111100101 nice-to-know 1 -01010111100101 ex-hippie 1 -01010111100101 highrollers 1 -01010111100101 pleasure-oriented 1 -01010111100101 non-defense-related 1 -01010111100101 3Bs 1 -01010111100101 worksites 1 -01010111100101 pro-adjustment 1 -01010111100101 winnable. 1 -01010111100101 teachable 1 -01010111100101 self-controlled 1 -01010111100101 overscheduled 1 -01010111100101 rumbas 1 -01010111100101 efficient. 1 -01010111100101 all-round 1 -01010111100101 gas-focused 1 -01010111100101 Lebanese-like 1 -01010111100101 all-but-invisible 1 -01010111100101 stocks. 1 -01010111100101 effortful 1 -01010111100101 wealthly 1 -01010111100101 impulse-related 1 -01010111100101 userfriendly 1 -01010111100101 importantthing 1 -01010111100101 unadmirable 1 -01010111100101 document-swapping 1 -01010111100101 Aframe 1 -01010111100101 SU-25s 1 -01010111100101 already-adopted 1 -01010111100101 output-oriented 1 -01010111100101 unhistoric 1 -01010111100101 Refcorps 1 -01010111100101 recession-averse 1 -01010111100101 anxiety-provoking 1 -01010111100101 proof-of-concept 1 -01010111100101 Christmasy 2 -01010111100101 countrified 2 -01010111100101 crassly 2 -01010111100101 flexible-fuel 2 -01010111100101 assignable 2 -01010111100101 ultra-nationalist 2 -01010111100101 boodle 2 -01010111100101 unprogressive 2 -01010111100101 unheroic 2 -01010111100101 funds. 2 -01010111100101 debt-related 2 -01010111100101 unintelligent 2 -01010111100101 unflinchingly 2 -01010111100101 likely. 2 -01010111100101 in-bred 2 -01010111100101 pasos 2 -01010111100101 cofradias 2 -01010111100101 cost-ineffective 2 -01010111100101 preservation-minded 2 -01010111100101 reflationary 2 -01010111100101 unrevealing 2 -01010111100101 un-British 2 -01010111100101 ego-boosting 2 -01010111100101 heat-tight 2 -01010111100101 symbolical 2 -01010111100101 science-based 2 -01010111100101 customer-specific 2 -01010111100101 ever-bigger 2 -01010111100101 ennobling 2 -01010111100101 tetchy 2 -01010111100101 probingly 2 -01010111100101 hayseed 2 -01010111100101 mutagenic 2 -01010111100101 knockdowns 2 -01010111100101 popular. 2 -01010111100101 alsoran 2 -01010111100101 iffier 2 -01010111100101 forward-thinking 2 -01010111100101 demeaned 2 -01010111100101 statesman-like 2 -01010111100101 ineradicable 2 -01010111100101 self-adjusting 2 -01010111100101 undefensible 2 -01010111100101 cocaine-addicted 2 -01010111100101 discriminately 2 -01010111100101 tunelessly 2 -01010111100101 over-ambitious 2 -01010111100101 hypermodern 2 -01010111100101 Olympic-sized 2 -01010111100101 unscrambled 3 -01010111100101 Vietnams 3 -01010111100101 heart-rending 3 -01010111100101 immoderate 3 -01010111100101 uncivil 3 -01010111100101 heart-wrenching 3 -01010111100101 God-awful 3 -01010111100101 18-inch 3 -01010111100101 R/V 3 -01010111100101 airbrushed 3 -01010111100101 unforgiveable 3 -01010111100101 vunerable 3 -01010111100101 many-sided 3 -01010111100101 femininely 3 -01010111100101 indescribable 3 -01010111100101 ex-football 3 -01010111100101 sellable 3 -01010111100101 self-generated 3 -01010111100101 consensus-oriented 3 -01010111100101 Frills 3 -01010111100101 money-oriented 3 -01010111100101 indiscernible 3 -01010111100101 awe-inspiring 3 -01010111100101 anti-religious 3 -01010111100101 concealable 3 -01010111100101 undermarketed 3 -01010111100101 habitable 3 -01010111100101 incontestable 3 -01010111100101 unaggressive 3 -01010111100101 inauthentic 3 -01010111100101 capillary 3 -01010111100101 unviable 3 -01010111100101 unserious 3 -01010111100101 over-banked 3 -01010111100101 embarassing 4 -01010111100101 scintillating 4 -01010111100101 hurtful 4 -01010111100101 untruthful 4 -01010111100101 unhelpful 4 -01010111100101 agreeably 4 -01010111100101 McBagel 4 -01010111100101 drought-resistant 4 -01010111100101 ingrown 4 -01010111100101 unpardonable 4 -01010111100101 counterintuitive 4 -01010111100101 airworthy 4 -01010111100101 befuddling 4 -01010111100101 inextricable 4 -01010111100101 parochially 4 -01010111100101 apropos 4 -01010111100101 unimposing 4 -01010111100101 inconsiderable 4 -01010111100101 conjectural 5 -01010111100101 unimpeachable 5 -01010111100101 Nicaraguas 5 -01010111100101 epochal 5 -01010111100101 ungracious 5 -01010111100101 surmountable 5 -01010111100101 quantifiable 5 -01010111100101 verboten 5 -01010111100101 instrumented 5 -01010111100101 savory 5 -01010111100101 ordinary-looking 5 -01010111100101 picayune 5 -01010111100101 error-free 5 -01010111100101 excusable 5 -01010111100101 undernourished 5 -01010111100101 outward-looking 5 -01010111100101 keystrokes 5 -01010111100101 avuncular 5 -01010111100101 apocryphal 6 -01010111100101 nonthreatening 6 -01010111100101 aboveboard 6 -01010111100101 un-Japanese 6 -01010111100101 rankling 6 -01010111100101 87-7 6 -01010111100101 dimensional 6 -01010111100101 inexact 6 -01010111100101 tractable 6 -01010111100101 unfathomable 6 -01010111100101 ingenuous 6 -01010111100101 untypical 6 -01010111100101 digestible 6 -01010111100101 addicting 6 -01010111100101 distended 6 -01010111100101 anti-gay 6 -01010111100101 earth-shaking 6 -01010111100101 tongue-tied 6 -01010111100101 uninviting 6 -01010111100101 sociable 6 -01010111100101 underfinanced 7 -01010111100101 unenlightened 7 -01010111100101 insupportable 7 -01010111100101 approachable 7 -01010111100101 maneuverable 7 -01010111100101 indelicate 7 -01010111100101 intelligible 7 -01010111100101 elbowroom 7 -01010111100101 unanswerable 7 -01010111100101 indivisible 7 -01010111100101 inviolate 7 -01010111100101 inarticulate 8 -01010111100101 impertinent 8 -01010111100101 inviolable 8 -01010111100101 revolting 8 -01010111100101 unquestionable 8 -01010111100101 efficacious 8 -01010111100101 ignoble 8 -01010111100101 impure 8 -01010111100101 impassable 8 -01010111100101 thin-skinned 8 -01010111100101 inoffensive 8 -01010111100101 Gladje 8 -01010111100101 unprintable 8 -01010111100101 incorrigible 8 -01010111100101 nerve-racking 9 -01010111100101 atrocity 9 -01010111100101 empathetic 9 -01010111100101 unintelligible 9 -01010111100101 anticlimactic 9 -01010111100101 Prejudice 9 -01010111100101 attenuated 9 -01010111100101 apoplectic 9 -01010111100101 accident-prone 9 -01010111100101 inhospitable 10 -01010111100101 unbuildable 10 -01010111100101 dispensable 10 -01010111100101 problematical 10 -01010111100101 sacrilege 10 -01010111100101 impressionable 10 -01010111100101 flavorful 10 -01010111100101 unbuttoned 10 -01010111100101 comprehensible 10 -01010111100101 electable 10 -01010111100101 immutable 10 -01010111100101 unfeasible 10 -01010111100101 heartwarming 11 -01010111100101 all-inclusive 11 -01010111100101 eventful 11 -01010111100101 indispensible 11 -01010111100101 actives 11 -01010111100101 expandable 11 -01010111100101 unsurprising 11 -01010111100101 dispiriting 11 -01010111100101 edifying 12 -01010111100101 proportioned 12 -01010111100101 overused 12 -01010111100101 abhorrent 12 -01010111100101 inexhaustible 12 -01010111100101 inclusive 12 -01010111100101 ostentatious 13 -01010111100101 inoperable 13 -01010111100101 unverifiable 13 -01010111100101 anti-consumer 13 -01010111100101 enchanting 13 -01010111100101 unsatisfying 13 -01010111100101 unfocused 14 -01010111100101 ungrateful 14 -01010111100101 unobtrusive 14 -01010111100101 unaffordable 14 -01010111100101 inoperative 14 -01010111100101 effusive 14 -01010111100101 unequaled 14 -01010111100101 avoidable 14 -01010111100101 insoluble 15 -01010111100101 titillating 15 -01010111100101 inane 15 -01010111100101 engrossing 15 -01010111100101 off-putting 15 -01010111100101 opaque 15 -01010111100101 impermissible 16 -01010111100101 irreconcilable 16 -01010111100101 alarmist 16 -01010111100101 exasperating 16 -01010111100101 insincere 16 -01010111100101 repulsive 16 -01010111100101 disagreeable 16 -01010111100101 cost-competitive 16 -01010111100101 inopportune 16 -01010111100101 bearable 17 -01010111100101 invasive 17 -01010111100101 appetizing 17 -01010111100101 expensively 17 -01010111100101 invigorating 17 -01010111100101 insubstantial 18 -01010111100101 expeditious 18 -01010111100101 anomalous 18 -01010111100101 consequential 18 -01010111100101 overpowering 18 -01010111100101 atrocious 18 -01010111100101 indisputable 19 -01010111100101 unmanageable 19 -01010111100101 controllable 19 -01010111100101 ill-timed 19 -01010111100101 unstoppable 19 -01010111100101 interestingly 19 -01010111100101 impregnable 20 -01010111100101 unappealing 21 -01010111100101 livable 21 -01010111100101 irreplaceable 21 -01010111100101 Americanized 22 -01010111100101 irksome 22 -01010111100101 disheartening 22 -01010111100101 creditworthy 22 -01010111100101 untouchable 22 -01010111100101 defensible 22 -01010111100101 maddening 22 -01010111100101 exalted 23 -01010111100101 enlightening 23 -01010111100101 interrelated 23 -01010111100101 unkind 23 -01010111100101 bothersome 23 -01010111100101 inconsequential 23 -01010111100101 out-of-date 24 -01010111100101 auspicious 24 -01010111100101 unexciting 24 -01010111100101 unassailable 24 -01010111100101 unglamorous 25 -01010111100101 inverted 25 -01010111100101 audible 25 -01010111100101 unrepentant 25 -01010111100101 unreal 25 -01010111100101 iffy 25 -01010111100101 deplorable 25 -01010111100101 intransigent 26 -01010111100101 odious 26 -01010111100101 ephemeral 26 -01010111100101 implausible 27 -01010111100101 adroit 27 -01010111100101 open-minded 27 -01010111100101 invincible 27 -01010111100101 8-0 28 -01010111100101 indefensible 28 -01010111100101 incongruous 28 -01010111100101 tiresome 29 -01010111100101 adaptable 29 -01010111100101 dissimilar 30 -01010111100101 overrated 30 -01010111100101 uninspiring 30 -01010111100101 unpalatable 30 -01010111100101 endearing 30 -01010111100101 uneconomic 30 -01010111100101 imprecise 30 -01010111100101 exacting 31 -01010111100101 reprehensible 31 -01010111100101 inequitable 32 -01010111100101 immature 32 -01010111100101 unresponsive 34 -01010111100101 courteous 34 -01010111100101 unconvincing 35 -01010111100101 perplexing 35 -01010111100101 repugnant 36 -01010111100101 opportune 37 -01010111100101 inescapable 37 -01010111100101 imaginable 37 -01010111100101 inconvenient 38 -01010111100101 enjoyable 38 -01010111100101 unnerving 39 -01010111100101 tolerable 39 -01010111100101 insular 39 -01010111100101 unimportant 39 -01010111100101 inexplicable 40 -01010111100101 nettlesome 40 -01010111100101 distasteful 41 -01010111100101 oppressive 42 -01010111100101 hospitable 42 -01010111100101 believable 43 -01010111100101 obnoxious 43 -01010111100101 insidious 43 -01010111100101 untenable 43 -01010111100101 heartening 43 -01010111100101 illuminating 43 -01010111100101 disconcerting 44 -01010111100101 unconscionable 44 -01010111100101 unmistakable 44 -01010111100101 insistent 44 -01010111100101 exhilarating 44 -01010111100101 invaluable 45 -01010111100101 ill-advised 45 -01010111100101 incomprehensible 46 -01010111100101 irritating 46 -01010111100101 unsuitable 46 -01010111100101 attentive 47 -01010111100101 achievable 48 -01010111100101 illogical 48 -01010111100101 accommodative 49 -01010111100101 agreeable 50 -01010111100101 alluring 53 -01010111100101 distressing 53 -01010111100101 intrusive 54 -01010111100101 inflexible 54 -01010111100101 objectionable 57 -01010111100101 unsustainable 59 -01010111100101 unproven 60 -01010111100101 innocuous 60 -01010111100101 addictive 62 -01010111100101 pertinent 62 -01010111100101 intimidating 63 -01010111100101 assertive 63 -01010111100101 identifiable 64 -01010111100101 unavoidable 66 -01010111100101 enticing 66 -01010111100101 illiquid 68 -01010111100101 up-to-date 68 -01010111100101 problematic 70 -01010111100101 untested 71 -01010111100101 palatable 71 -01010111100101 esoteric 73 -01010111100101 annoying 74 -01010111100101 improbable 76 -01010111100101 intractable 80 -01010111100101 accommodating 81 -01010111100101 intolerable 83 -01010111100101 appalling 83 -01010111100101 indispensable 84 -01010111100101 informative 86 -01010111100101 unwise 86 -01010111100101 egregious 88 -01010111100101 instructive 89 -01010111100101 economical 93 -01010111100101 unbelievable 94 -01010111100101 unattractive 99 -01010111100101 puzzling 105 -01010111100101 irrational 107 -01010111100101 irresistible 108 -01010111100101 integral 109 -01010111100101 noteworthy 118 -01010111100101 insignificant 123 -01010111100101 invalid 131 -01010111100101 unsettling 131 -01010111100101 unreliable 138 -01010111100101 equitable 138 -01010111100101 ambiguous 138 -01010111100101 unstable 148 -01010111100101 plentiful 156 -01010111100101 amusing 158 -01010111100101 ominous 161 -01010111100101 onerous 163 -01010111100101 alarming 164 -01010111100101 accessible 166 -01010111100101 outdated 167 -01010111100101 alien 168 -01010111100101 reassuring 170 -01010111100101 unpleasant 172 -01010111100101 intriguing 176 -01010111100101 elusive 177 -01010111100101 importantly 182 -01010111100101 understandable 184 -01010111100101 amazing 190 -01010111100101 entertaining 191 -01010111100101 worrisome 204 -01010111100101 updated 207 -01010111100101 feasible 214 -01010111100101 outrageous 216 -01010111100101 frustrating 218 -01010111100101 awkward 226 -01010111100101 incorrect 234 -01010111100101 troubling 235 -01010111100101 affordable 241 -01010111100101 absurd 255 -01010111100101 intelligent 258 -01010111100101 ironic 260 -01010111100101 irrelevant 262 -01010111100101 harmful 277 -01010111100101 inexpensive 286 -01010111100101 inappropriate 307 -01010111100101 obscure 327 -01010111100101 unfortunate 342 -01010111100101 unacceptable 354 -01010111100101 desirable 370 -01010111100101 exciting 384 -01010111100101 embarrassing 387 -01010111100101 relevant 396 -01010111100101 damaging 407 -01010111100101 unconstitutional 475 -01010111100101 appealing 602 -01010111100101 impressive 636 -01010111100101 accurate 647 -01010111100101 essential 900 -01010111100101 acceptable 933 -01010111100101 obvious 1004 -01010111100101 interesting 1033 -01010111100101 efficient 1053 -01010111100101 sensitive 1409 -01010111100101 appropriate 1557 -01010111100101 attractive 2370 -01010111100101 expensive 3220 -01010111100101 important 8445 -01010111100110 uncolloquial 1 -01010111100110 outcompete 1 -01010111100110 dinged 1 -01010111100110 near-market 1 -01010111100110 stippled 1 -01010111100110 caramelized 1 -01010111100110 felon. 1 -01010111100110 verify. 1 -01010111100110 one-day-on-the-job 1 -01010111100110 anti-Williams 1 -01010111100110 unponderous 1 -01010111100110 professional-middle-class 1 -01010111100110 optionee 1 -01010111100110 unbuttered 1 -01010111100110 Anti-lock 1 -01010111100110 phonorecords 1 -01010111100110 all-too-obvious 1 -01010111100110 melt-down 1 -01010111100110 preadmission 1 -01010111100110 micronite 1 -01010111100110 Queene 1 -01010111100110 anti-energy 2 -01010111100110 intelligence-related 2 -01010111100110 chudaiko 2 -01010111100110 SilverHawks 2 -01010111100110 tongue-twisting 2 -01010111100110 outre 2 -01010111100110 EFI 2 -01010111100110 spellbinder 2 -01010111100110 auteurs 2 -01010111100110 dramedy 2 -01010111100110 narco-terrorism 2 -01010111100110 toylike 2 -01010111100110 Emancipists 2 -01010111100110 yuppie-ish 2 -01010111100110 anti-lawyer 2 -01010111100110 anti-progressive 2 -01010111100110 well-maintained 2 -01010111100110 abusable 2 -01010111100110 squarish 2 -01010111100110 Queenie 2 -01010111100110 frictional 2 -01010111100110 grayer 2 -01010111100110 goose-stepping 2 -01010111100110 trashes 2 -01010111100110 tax-sensitive 2 -01010111100110 unidentifiable 2 -01010111100110 survival-oriented 2 -01010111100110 anti-shareholder 2 -01010111100110 scientist-managers 2 -01010111100110 immunomodulators 2 -01010111100110 base-car 2 -01010111100110 statization 2 -01010111100110 kansei 2 -01010111100110 photonic 2 -01010111100110 demurring 2 -01010111100110 net-back 2 -01010111100110 direct-to-home 2 -01010111100110 porters 2 -01010111100110 glasnostic 2 -01010111100110 blarney 2 -01010111100110 restimulation 2 -01010111100110 submersion 2 -01010111100110 trackball 2 -01010111100110 Stoli 2 -01010111100110 housewarming 2 -01010111100110 warmheartedness 2 -01010111100110 pureness 2 -01010111100110 dilettantes 2 -01010111100110 sourced 2 -01010111100110 Afro-centric 2 -01010111100110 revenue-enhancing 2 -01010111100110 pro-free 2 -01010111100110 supermom 2 -01010111100110 Sidewaters 2 -01010111100110 nonalignment 2 -01010111100110 kiting 2 -01010111100110 Korbel 2 -01010111100110 maidnapping 2 -01010111100110 barn-burning 2 -01010111100110 pro-Stalin 2 -01010111100110 AT&Ts 2 -01010111100110 interconnects 2 -01010111100110 nativists 2 -01010111100110 sadomasochistic 2 -01010111100110 Pushtunistan 2 -01010111100110 two-fer 2 -01010111100110 tangents 2 -01010111100110 note-perfect 2 -01010111100110 coloureds 2 -01010111100110 dumb-looking 2 -01010111100110 Bleeding 2 -01010111100110 IIB 2 -01010111100110 transgenerational 2 -01010111100110 unabrasive 2 -01010111100110 immunogenic 2 -01010111100110 jibaro 2 -01010111100110 product-specific 2 -01010111100110 techie 2 -01010111100110 crudity 2 -01010111100110 greenways 2 -01010111100110 neglible 2 -01010111100110 unfree 2 -01010111100110 Pillow-Inhaler 2 -01010111100110 foodie 2 -01010111100110 faultless 2 -01010111100110 holly 2 -01010111100110 voidable 2 -01010111100110 MFP 2 -01010111100110 pill-popping 2 -01010111100110 short-oil 2 -01010111100110 Surtax 2 -01010111100110 boom-boxes 2 -01010111100110 rich-looking 2 -01010111100110 paddymelon 2 -01010111100110 Earthworks 2 -01010111100110 proceduralists 2 -01010111100110 pied-a-terre 2 -01010111100110 moonwalk 2 -01010111100110 bookout 2 -01010111100110 rewording 2 -01010111100110 pickpockets 3 -01010111100110 Sinhala 3 -01010111100110 Mousetrap 3 -01010111100110 Minx 3 -01010111100110 bumpier 3 -01010111100110 financer 3 -01010111100110 obliteration 3 -01010111100110 hypertechnical 3 -01010111100110 over-ripe 3 -01010111100110 ter 3 -01010111100110 supertwist 3 -01010111100110 daydream 3 -01010111100110 multi-faceted 3 -01010111100110 Carefree 3 -01010111100110 graft-vs.-host 3 -01010111100110 unpersuasive 3 -01010111100110 parastatal 3 -01010111100110 fly-off 3 -01010111100110 straitjacketed 3 -01010111100110 fly-by-wire 3 -01010111100110 beeswax 3 -01010111100110 sex-neutral 3 -01010111100110 regurgitated 3 -01010111100110 E.Z. 3 -01010111100110 nuclear-age 3 -01010111100110 indistinct 3 -01010111100110 transmissible 3 -01010111100110 unchangeable 3 -01010111100110 average-guy 3 -01010111100110 paupers 3 -01010111100110 contumacious 3 -01010111100110 undeliverable 3 -01010111100110 heads-up 3 -01010111100110 purpose-bred 3 -01010111100110 non-discriminatory 3 -01010111100110 insubordinate 3 -01010111100110 non-coercive 3 -01010111100110 means-test 3 -01010111100110 olympic 3 -01010111100110 non-Chinese 3 -01010111100110 touch-up 3 -01010111100110 parvenu 3 -01010111100110 unerotic 3 -01010111100110 unexposed 3 -01010111100110 crueler 3 -01010111100110 flag-raising 3 -01010111100110 nots 3 -01010111100110 tamper-proof 3 -01010111100110 knifing 3 -01010111100110 out-of-hand 3 -01010111100110 team-building 3 -01010111100110 touchback 3 -01010111100110 indigestible 3 -01010111100110 appealable 3 -01010111100110 bribable 3 -01010111100110 Neo-Europes 3 -01010111100110 regenerated 3 -01010111100110 sun-dried 3 -01010111100110 middle-America 3 -01010111100110 avaricious 3 -01010111100110 nuttier 3 -01010111100110 Lyricgrove 3 -01010111100110 veto-bait 3 -01010111100110 lean-and-mean 3 -01010111100110 contraindicated 3 -01010111100110 anesthetized 3 -01010111100110 pumped-up 3 -01010111100110 anxiety-ridden 3 -01010111100110 disinvited 4 -01010111100110 better-organized 4 -01010111100110 infomercials 4 -01010111100110 friable 4 -01010111100110 KKK 4 -01010111100110 Venda 4 -01010111100110 promotable 4 -01010111100110 undercounting 4 -01010111100110 predestined 4 -01010111100110 homophobic 4 -01010111100110 salvageable 4 -01010111100110 honkies 4 -01010111100110 phlegmatic 4 -01010111100110 AIDS-free 4 -01010111100110 treasonous 4 -01010111100110 self-administered 4 -01010111100110 under-utilized 4 -01010111100110 pranksters 4 -01010111100110 undiplomatic 4 -01010111100110 deficit-neutral 4 -01010111100110 stock-split 4 -01010111100110 well-meant 4 -01010111100110 Spartacus 4 -01010111100110 unoriginal 4 -01010111100110 tactless 4 -01010111100110 5,000-mile 4 -01010111100110 noninvasive 4 -01010111100110 gender-neutral 4 -01010111100110 anti-Catholic 4 -01010111100110 manufacturable 4 -01010111100110 unachievable 4 -01010111100110 Visionaries 4 -01010111100110 bucketing 4 -01010111100110 well-preserved 4 -01010111100110 silversmiths 4 -01010111100110 globalizing 4 -01010111100110 FUD 4 -01010111100110 stupider 4 -01010111100110 symptom-free 4 -01010111100110 incorporeal 4 -01010111100110 two-faced 4 -01010111100110 unenforced 4 -01010111100110 get-well 4 -01010111100110 canonical 4 -01010111100110 nonviable 4 -01010111100110 obstreperous 5 -01010111100110 COW 5 -01010111100110 haddock 5 -01010111100110 unbreakable 5 -01010111100110 hypersensitivity 5 -01010111100110 undereducated 5 -01010111100110 unproduced 5 -01010111100110 back-of-the-envelope 5 -01010111100110 unloved 5 -01010111100110 penumbras 5 -01010111100110 lip-smacking 5 -01010111100110 better-informed 5 -01010111100110 probated 5 -01010111100110 well-adjusted 5 -01010111100110 stillborn 5 -01010111100110 Groovy 5 -01010111100110 window-dressing 5 -01010111100110 cherry-picking 5 -01010111100110 insurable 5 -01010111100110 what-if 5 -01010111100110 heretics 5 -01010111100110 in-between 5 -01010111100110 jeer 5 -01010111100110 self-funding 5 -01010111100110 pre-selling 5 -01010111100110 self-limiting 5 -01010111100110 financeable 5 -01010111100110 gatekeepers 5 -01010111100110 recessive 5 -01010111100110 Portenos 5 -01010111100110 infidels 5 -01010111100110 facilitators 5 -01010111100110 well-earned 6 -01010111100110 leaderless 6 -01010111100110 inkblot 6 -01010111100110 slobbering 6 -01010111100110 geometrical 6 -01010111100110 She-Devil 6 -01010111100110 shunto 6 -01010111100110 stage-managed 6 -01010111100110 recession-sensitive 6 -01010111100110 make-good 6 -01010111100110 parachuting 6 -01010111100110 marmalade 6 -01010111100110 violative 6 -01010111100110 fixable 6 -01010111100110 tactful 6 -01010111100110 uncashed 6 -01010111100110 redder 6 -01010111100110 classifiable 6 -01010111100110 swordfish 6 -01010111100110 discountable 6 -01010111100110 uninhabited 6 -01010111100110 ventilated 6 -01010111100110 idiomatic 6 -01010111100110 implode 6 -01010111100110 asymptomatic 6 -01010111100110 Finlandization 6 -01010111100110 revelatory 6 -01010111100110 unstinting 6 -01010111100110 contestable 6 -01010111100110 worshipful 6 -01010111100110 prospectively 6 -01010111100110 unallowable 6 -01010111100110 unexamined 6 -01010111100110 impracticable 6 -01010111100110 scoundrel 6 -01010111100110 inedible 6 -01010111100110 color-blind 6 -01010111100110 rad 7 -01010111100110 overregulated 7 -01010111100110 daft 7 -01010111100110 heave 7 -01010111100110 multi-tasking 7 -01010111100110 micro-management 7 -01010111100110 pro-management 7 -01010111100110 meteorology 7 -01010111100110 androgynous 7 -01010111100110 frilly 7 -01010111100110 masterfully 7 -01010111100110 dual-use 7 -01010111100110 valueless 7 -01010111100110 networked 7 -01010111100110 off-color 7 -01010111100110 lunatics 7 -01010111100110 see-through 7 -01010111100110 rainmaker 7 -01010111100110 dysfunctional 7 -01010111100110 omniscient 7 -01010111100110 facetious 7 -01010111100110 patsies 7 -01010111100110 Rasputin 7 -01010111100110 kooks 7 -01010111100110 breaded 7 -01010111100110 problem-free 7 -01010111100110 inadmissible 7 -01010111100110 tenable 7 -01010111100110 cloudless 7 -01010111100110 hillbilly 7 -01010111100110 extraterritorial 7 -01010111100110 Americanization 7 -01010111100110 bye-bye 7 -01010111100110 infidel 7 -01010111100110 shortlived 8 -01010111100110 deployable 8 -01010111100110 redlining 8 -01010111100110 sycophantic 8 -01010111100110 creation-science 8 -01010111100110 misconceived 8 -01010111100110 Kristallnacht 8 -01010111100110 irritable 8 -01010111100110 braver 8 -01010111100110 misshapen 8 -01010111100110 spiteful 8 -01010111100110 overconfident 8 -01010111100110 down-market 8 -01010111100110 GRAS 8 -01010111100110 leak-proof 8 -01010111100110 top-down 8 -01010111100110 dishonorable 8 -01010111100110 He-Man 8 -01010111100110 hassle-free 8 -01010111100110 consoling 8 -01010111100110 emptier 9 -01010111100110 compartmentalized 9 -01010111100110 luxuriant 9 -01010111100110 copyrightable 9 -01010111100110 gimmicky 9 -01010111100110 repricing 9 -01010111100110 penniless 9 -01010111100110 fawning 9 -01010111100110 blasphemous 9 -01010111100110 nourishing 9 -01010111100110 survivable 9 -01010111100110 unbundling 9 -01010111100110 inelastic 9 -01010111100110 fallacious 9 -01010111100110 pro-competitive 9 -01010111100110 benignly 9 -01010111100110 holier-than-thou 10 -01010111100110 approvable 10 -01010111100110 trouble-free 10 -01010111100110 snazzier 10 -01010111100110 trenchant 10 -01010111100110 ungovernable 10 -01010111100110 unpatriotic 10 -01010111100110 provable 10 -01010111100110 oiled 10 -01010111100110 5-to-1 10 -01010111100110 nit-picking 10 -01010111100110 Realpolitik 10 -01010111100110 nontoxic 10 -01010111100110 ill-founded 10 -01010111100110 supportable 10 -01010111100110 dehumanizing 10 -01010111100110 scurrilous 11 -01010111100110 unoccupied 11 -01010111100110 serviceable 11 -01010111100110 vandalized 11 -01010111100110 sacrilegious 11 -01010111100110 witless 11 -01010111100110 extant 11 -01010111100110 uncomplicated 11 -01010111100110 impassive 11 -01010111100110 rudderless 11 -01010111100110 churlish 11 -01010111100110 forested 12 -01010111100110 half-full 12 -01010111100110 unrepresentative 12 -01010111100110 solicitous 12 -01010111100110 messianic 12 -01010111100110 disfiguring 12 -01010111100110 uninsurable 12 -01010111100110 unsalable 12 -01010111100110 operable 12 -01010111100110 harmonized 12 -01010111100110 unsupportable 12 -01010111100110 meritless 13 -01010111100110 unbeatable 13 -01010111100110 untrustworthy 13 -01010111100110 underweight 13 -01010111100110 monotonous 13 -01010111100110 prudish 13 -01010111100110 leapfrogging 13 -01010111100110 imprudently 13 -01010111100110 baited 13 -01010111100110 wishy-washy 14 -01010111100110 earthbound 14 -01010111100110 self-supporting 14 -01010111100110 trade-ins 14 -01010111100110 fly-by-night 14 -01010111100110 junket 14 -01010111100110 hand-to-mouth 14 -01010111100110 verbatim 14 -01010111100110 nonstrategic 14 -01010111100110 overdrawn 14 -01010111100110 unproved 14 -01010111100110 whitewash 14 -01010111100110 conspiratorial 14 -01010111100110 null 14 -01010111100110 superhuman 15 -01010111100110 nay 15 -01010111100110 claustrophobic 15 -01010111100110 hateful 15 -01010111100110 sensitized 15 -01010111100110 repetitious 15 -01010111100110 grandfathered 15 -01010111100110 specious 16 -01010111100110 wanton 16 -01010111100110 nepotism 16 -01010111100110 uninteresting 16 -01010111100110 mushy 16 -01010111100110 me. 16 -01010111100110 sanitized 16 -01010111100110 nonproductive 16 -01010111100110 deceitful 16 -01010111100110 reversible 16 -01010111100110 liars 16 -01010111100110 maliciously 16 -01010111100110 priceless 17 -01010111100110 drooping 17 -01010111100110 sinful 17 -01010111100110 suffocating 17 -01010111100110 infallible 17 -01010111100110 winnable 17 -01010111100110 testimonial 17 -01010111100110 unconstrained 17 -01010111100110 unattainable 17 -01010111100110 unusable 18 -01010111100110 autographed 18 -01010111100110 subservient 18 -01010111100110 disloyal 18 -01010111100110 misdirected 18 -01010111100110 colorblind 18 -01010111100110 disgraceful 18 -01010111100110 defamatory 18 -01010111100110 sound-alike 18 -01010111100110 blossoming 18 -01010111100110 unforgivable 18 -01010111100110 irrigated 19 -01010111100110 payola 19 -01010111100110 underemployed 19 -01010111100110 improvised 19 -01010111100110 prophetic 19 -01010111100110 condescending 19 -01010111100110 crackling 19 -01010111100110 racketeers 20 -01010111100110 non-existent 20 -01010111100110 predictive 20 -01010111100110 collectible 20 -01010111100110 blindfolded 20 -01010111100110 uneconomical 20 -01010111100110 value-impaired 21 -01010111100110 noncommittal 21 -01010111100110 tutoring 21 -01010111100110 fail-safe 21 -01010111100110 colorized 21 -01010111100110 pap 21 -01010111100110 recession-proof 21 -01010111100110 childish 21 -01010111100110 unprofessional 21 -01010111100110 incoherent 21 -01010111100110 unmet 21 -01010111100110 muffled 21 -01010111100110 underrated 21 -01010111100110 fragmentary 22 -01010111100110 self-sustaining 22 -01010111100110 un-American 22 -01010111100110 pro-American 22 -01010111100110 comical 22 -01010111100110 unfashionable 22 -01010111100110 unworthy 22 -01010111100110 callous 23 -01010111100110 undistinguished 23 -01010111100110 inhumane 23 -01010111100110 pitiful 23 -01010111100110 immaterial 23 -01010111100110 liberating 23 -01010111100110 defenseless 24 -01010111100110 unforgiving 24 -01010111100110 nonsensical 25 -01010111100110 coded 25 -01010111100110 childlike 25 -01010111100110 flat-out 25 -01010111100110 weather-related 25 -01010111100110 taut 26 -01010111100110 self-financing 26 -01010111100110 libelous 26 -01010111100110 Graceland 26 -01010111100110 extinct 27 -01010111100110 infrequent 27 -01010111100110 well-founded 27 -01010111100110 prejudicial 28 -01010111100110 naughty 28 -01010111100110 laughable 28 -01010111100110 sized 29 -01010111100110 banal 29 -01010111100110 debt-free 30 -01010111100110 unsupported 30 -01010111100110 bunk 31 -01010111100110 foolhardy 31 -01010111100110 flawless 31 -01010111100110 transitory 31 -01010111100110 commendable 31 -01010111100110 borderline 31 -01010111100110 Irangate 32 -01010111100110 unfulfilled 32 -01010111100110 preventable 32 -01010111100110 interchangeable 33 -01010111100110 sleaze 33 -01010111100110 pointless 33 -01010111100110 senseless 33 -01010111100110 shameful 34 -01010111100110 limitless 34 -01010111100110 rusting 34 -01010111100110 sterilized 34 -01010111100110 superfluous 35 -01010111100110 kinder 35 -01010111100110 padded 36 -01010111100110 doable 36 -01010111100110 dizzy 36 -01010111100110 regressive 37 -01010111100110 sputtering 37 -01010111100110 scandalous 37 -01010111100110 stealth 38 -01010111100110 lighted 38 -01010111100110 foolproof 38 -01010111100110 unconscious 38 -01010111100110 respectful 39 -01010111100110 incidental 39 -01010111100110 underpriced 39 -01010111100110 verifiable 40 -01010111100110 expendable 40 -01010111100110 sacrosanct 42 -01010111100110 unenforceable 43 -01010111100110 endemic 45 -01010111100110 impotent 46 -01010111100110 gravy 47 -01010111100110 self-defeating 48 -01010111100110 compressed 49 -01010111100110 sterile 49 -01010111100110 enforceable 49 -01010111100110 undercapitalized 49 -01010111100110 institutionalized 50 -01010111100110 baseless 50 -01010111100110 outward 50 -01010111100110 stale 50 -01010111100110 insulting 51 -01010111100110 euphoric 51 -01010111100110 palpable 51 -01010111100110 sexist 52 -01010111100110 uncompetitive 54 -01010111100110 defiant 54 -01010111100110 farewell 54 -01010111100110 risk-free 54 -01010111100110 groundless 56 -01010111100110 unchecked 56 -01010111100110 prospering 57 -01010111100110 suicidal 57 -01010111100110 comforting 58 -01010111100110 lame 59 -01010111100110 lawful 62 -01010111100110 disinterested 62 -01010111100110 pleasing 62 -01010111100110 deficient 63 -01010111100110 malicious 63 -01010111100110 disconnected 64 -01010111100110 careless 64 -01010111100110 taboo 66 -01010111100110 prohibitive 66 -01010111100110 unworkable 67 -01010111100110 fruitless 67 -01010111100110 helpless 68 -01010111100110 sketchy 68 -01010111100110 fleeting 68 -01010111100110 insane 69 -01010111100110 starving 69 -01010111100110 shortsighted 70 -01010111100110 overblown 70 -01010111100110 overbought 72 -01010111100110 unchallenged 72 -01010111100110 misplaced 72 -01010111100110 fuzzy 73 -01010111100110 substandard 74 -01010111100110 inactive 74 -01010111100110 kindly 75 -01010111100110 humorous 76 -01010111100110 polluted 76 -01010111100110 imprudent 78 -01010111100110 detached 78 -01010111100110 moot 79 -01010111100110 flourishing 79 -01010111100110 inconclusive 80 -01010111100110 immoral 80 -01010111100110 destabilizing 81 -01010111100110 redundant 82 -01010111100110 unjustified 83 -01010111100110 segregated 83 -01010111100110 faint 85 -01010111100110 dormant 86 -01010111100110 upstairs 87 -01010111100110 indecent 87 -01010111100110 illusory 89 -01010111100110 rigged 91 -01010111100110 indifferent 91 -01010111100110 barter 94 -01010111100110 hopeless 95 -01010111100110 paramount 95 -01010111100110 harmless 96 -01010111100110 untrue 103 -01010111100110 dear 106 -01010111100110 preposterous 108 -01010111100110 wasteful 109 -01010111100110 sincere 114 -01010111100110 ludicrous 115 -01010111100110 incompetent 115 -01010111100110 rude 118 -01010111100110 reckless 120 -01010111100110 static 122 -01010111100110 negligible 123 -01010111100110 fitting 125 -01010111100110 privileged 126 -01010111100110 biased 126 -01010111100110 unanswered 127 -01010111100110 negligent 133 -01010111100110 futile 134 -01010111100110 racist 140 -01010111100110 faithful 141 -01010111100110 frivolous 143 -01010111100110 solvent 144 -01010111100110 conscious 146 -01010111100110 meaningless 146 -01010111100110 inferior 147 -01010111100110 trivial 150 -01010111100110 worthless 150 -01010111100110 drunk 150 -01010111100110 overpriced 154 -01010111100110 deceptive 155 -01010111100110 useless 156 -01010111100110 captive 157 -01010111100110 invisible 160 -01010111100110 nonexistent 161 -01010111100110 irresponsible 164 -01010111100110 ineffective 181 -01010111100110 unfounded 183 -01010111100110 endangered 191 -01010111100110 oversold 193 -01010111100110 short-lived 197 -01010111100110 unsafe 199 -01010111100110 mistaken 201 -01010111100110 backward 203 -01010111100110 naive 204 -01010111100110 counterproductive 214 -01010111100110 unresolved 216 -01010111100110 unrealistic 220 -01010111100110 obsolete 223 -01010111100110 overvalued 229 -01010111100110 inaccurate 257 -01010111100110 flawed 264 -01010111100110 ridiculous 265 -01010111100110 defective 266 -01010111100110 universal 267 -01010111100110 conditional 279 -01010111100110 silent 304 -01010111100110 prudent 304 -01010111100110 scarce 307 -01010111100110 greenmail 337 -01010111100110 parallel 367 -01010111100110 fatal 387 -01010111100110 valid 394 -01010111100110 desperate 403 -01010111100110 binding 412 -01010111100110 loyal 422 -01010111100110 unnecessary 444 -01010111100110 loose 459 -01010111100110 hidden 475 -01010111100110 pure 482 -01010111100110 neutral 484 -01010111100110 warm 491 -01010111100110 premature 512 -01010111100110 hazardous 580 -01010111100110 undervalued 602 -01010111100110 superior 607 -01010111100110 zero 631 -01010111100110 ill 657 -01010111100110 unique 667 -01010111100110 vital 732 -01010111100110 routine 758 -01010111100110 qualified 784 -01010111100110 misleading 808 -01010111100110 inadequate 1262 -01010111100110 safe 1325 -01010111100110 dead 1370 -01010111100110 crucial 1419 -01010111100110 sound 1904 -01010111100110 fair 2064 -01010111100110 critical 2082 -01010111100110 free 5276 -01010111100110 fully 3043 -01010111100111 glamour-prompted 1 -01010111100111 long-oiled 1 -01010111100111 on-the-button 1 -01010111100111 media-wise 1 -01010111100111 Mexican-descended 1 -01010111100111 voluntary-retirement 1 -01010111100111 car-populated 1 -01010111100111 anti-arms-control 1 -01010111100111 railmobile 1 -01010111100111 alcoholized 1 -01010111100111 media-conscious 1 -01010111100111 M-shaped 1 -01010111100111 sealed-up 1 -01010111100111 wellconnected 1 -01010111100111 distortion-free 1 -01010111100111 alligned 1 -01010111100111 unpretty 1 -01010111100111 accoutered 1 -01010111100111 beautiful-looking 1 -01010111100111 mildewed 1 -01010111100111 widely-held 1 -01010111100111 authentic-looking 1 -01010111100111 exhibitionistic 1 -01010111100111 popular-the 1 -01010111100111 petite-size 1 -01010111100111 market-orientated 1 -01010111100111 un-Reaganite 1 -01010111100111 rapidly. 1 -01010111100111 MTV-produced 1 -01010111100111 prison-conditions 1 -01010111100111 fly-drive-sleep 1 -01010111100111 class-divided 1 -01010111100111 self-censored 1 -01010111100111 liability-expanding 1 -01010111100111 data-dense 1 -01010111100111 dividend-hungry 1 -01010111100111 unperceptive 1 -01010111100111 Saracen 1 -01010111100111 snickered-about 1 -01010111100111 pro-employee 1 -01010111100111 unflamboyant 1 -01010111100111 levered 1 -01010111100111 leftward-leaning 1 -01010111100111 snow-fearing 1 -01010111100111 unfavorite 1 -01010111100111 tillable 1 -01010111100111 line-focused 1 -01010111100111 sensitve 1 -01010111100111 Europhoria 1 -01010111100111 mortgageable 1 -01010111100111 nitrogenous 1 -01010111100111 womb-leasing 1 -01010111100111 annnoying 1 -01010111100111 rough-sounding 1 -01010111100111 scatological 1 -01010111100111 lustrious 1 -01010111100111 IBM-only 1 -01010111100111 550-megawatt 1 -01010111100111 reform-oriented 1 -01010111100111 leisure-based 1 -01010111100111 warrior-hero 1 -01010111100111 leisured 1 -01010111100111 non-diva-like 1 -01010111100111 transit-dependent 1 -01010111100111 unsoothing 1 -01010111100111 tunnel-visioned 1 -01010111100111 mass-reproduced 1 -01010111100111 Asian-owned 1 -01010111100111 grow-or-die 1 -01010111100111 egalitarian-minded 1 -01010111100111 markets-like 1 -01010111100111 U.S.-Middle 1 -01010111100111 un-nuclear 1 -01010111100111 information-intensive 1 -01010111100111 European-type 1 -01010111100111 antiCommunist 1 -01010111100111 telephone-oriented 1 -01010111100111 replacement-fuel 1 -01010111100111 re-chromed 1 -01010111100111 farm-refinancing 1 -01010111100111 earthquake-causing 1 -01010111100111 pro-big 1 -01010111100111 pro-Russian 1 -01010111100111 post-Marcos-era 1 -01010111100111 visable 1 -01010111100111 longest-lasting 1 -01010111100111 non-donors 1 -01010111100111 fitness-equipment 1 -01010111100111 rouged 2 -01010111100111 taxpapers 2 -01010111100111 career-destroying 2 -01010111100111 deregulatory-minded 2 -01010111100111 well-honed 2 -01010111100111 Pollyannish 2 -01010111100111 scentless 2 -01010111100111 anti-worker 2 -01010111100111 trussed 2 -01010111100111 sulphurous 2 -01010111100111 sedulous 2 -01010111100111 project-oriented 2 -01010111100111 anxiety-producing 2 -01010111100111 job-saving 2 -01010111100111 bigname 2 -01010111100111 unsterile 2 -01010111100111 temperature-sensitive 2 -01010111100111 patient-oriented 2 -01010111100111 value-free 2 -01010111100111 value-laden 2 -01010111100111 optimistic. 2 -01010111100111 distortive 2 -01010111100111 creative-writing-program 2 -01010111100111 ungrounded 2 -01010111100111 1,319 2 -01010111100111 overprotective 2 -01010111100111 oppositon 2 -01010111100111 fever-pitch 2 -01010111100111 leathered 2 -01010111100111 oldfashioned 2 -01010111100111 decipherable 2 -01010111100111 grabby 2 -01010111100111 wretchedly 2 -01010111100111 odoriferous 2 -01010111100111 anti-NRC 2 -01010111100111 coiffed 2 -01010111100111 uptempo 2 -01010111100111 hyper-technical 2 -01010111100111 southerly 2 -01010111100111 particularistic 2 -01010111100111 self-obsessed 3 -01010111100111 magniloquent 3 -01010111100111 illusive 3 -01010111100111 publicity-hungry 3 -01010111100111 tannic 3 -01010111100111 astringent 3 -01010111100111 virtuosic 3 -01010111100111 diagnosable 3 -01010111100111 unknowledgeable 3 -01010111100111 far-ranging 3 -01010111100111 unchallengeable 3 -01010111100111 seven-iron 3 -01010111100111 bond-like 3 -01010111100111 intellectualized 3 -01010111100111 communicative 3 -01010111100111 Beethovenian 3 -01010111100111 non-fashion 3 -01010111100111 fastballs 3 -01010111100111 quavering 3 -01010111100111 footloose 3 -01010111100111 non-cyclical 3 -01010111100111 truth-in-advertising 3 -01010111100111 hardcore 3 -01010111100111 vituperative 3 -01010111100111 pollution-free 3 -01010111100111 non-dilutive 3 -01010111100111 Panglossian 3 -01010111100111 inchoate 3 -01010111100111 bristly 3 -01010111100111 trading-oriented 3 -01010111100111 open-mouthed 3 -01010111100111 overlong 3 -01010111100111 overwritten 3 -01010111100111 perfidious 3 -01010111100111 ill-managed 3 -01010111100111 widespead 3 -01010111100111 brand-conscious 3 -01010111100111 coolheaded 3 -01010111100111 marketing-oriented 3 -01010111100111 top-line 3 -01010111100111 non-controversial 3 -01010111100111 1987-1989 3 -01010111100111 pusillanimous 3 -01010111100111 postponable 3 -01010111100111 underappreciated 3 -01010111100111 well-settled 3 -01010111100111 stagy 3 -01010111100111 nonparty 4 -01010111100111 mingy 4 -01010111100111 weightless 4 -01010111100111 conceited 4 -01010111100111 self-sacrificing 4 -01010111100111 ductile 4 -01010111100111 unlikable 4 -01010111100111 shaven 4 -01010111100111 radiotherapy 4 -01010111100111 lightheaded 4 -01010111100111 slow-acting 4 -01010111100111 relativistic 4 -01010111100111 100-ton 4 -01010111100111 well-illustrated 4 -01010111100111 allusive 4 -01010111100111 quick-witted 4 -01010111100111 standoffish 4 -01010111100111 long-form 4 -01010111100111 touristy 4 -01010111100111 book-squaring 4 -01010111100111 obtrusive 4 -01010111100111 angst-ridden 4 -01010111100111 halfhearted 4 -01010111100111 straitened 4 -01010111100111 common-sensical 4 -01010111100111 corporatist 4 -01010111100111 misanthropic 4 -01010111100111 non-committal 4 -01010111100111 issues-oriented 4 -01010111100111 dyspeptic 4 -01010111100111 customer-oriented 4 -01010111100111 electrifying 4 -01010111100111 instinctual 4 -01010111100111 cocksure 4 -01010111100111 self-disciplined 5 -01010111100111 repeatable 5 -01010111100111 dreamlike 5 -01010111100111 unexplainable 5 -01010111100111 plotless 5 -01010111100111 misnamed 5 -01010111100111 off-key 5 -01010111100111 merciful 5 -01010111100111 graceless 5 -01010111100111 malodorous 5 -01010111100111 lotus 5 -01010111100111 uncrowded 5 -01010111100111 effete 5 -01010111100111 detail-oriented 5 -01010111100111 miniaturized 5 -01010111100111 well-integrated 5 -01010111100111 dexterous 5 -01010111100111 non-liquid 5 -01010111100111 consumer-minded 5 -01010111100111 starchy 5 -01010111100111 charmless 5 -01010111100111 combustible 5 -01010111100111 well-rehearsed 5 -01010111100111 savvier 5 -01010111100111 Balkanized 5 -01010111100111 stratified 5 -01010111100111 anti-Zionist 5 -01010111100111 velvety 5 -01010111100111 error-prone 5 -01010111100111 disordered 5 -01010111100111 thickening 5 -01010111100111 compensable 5 -01010111100111 deregulation-minded 5 -01010111100111 streetwise 5 -01010111100111 flighty 5 -01010111100111 succesful 5 -01010111100111 joyless 5 -01010111100111 forfeitable 5 -01010111100111 self-possessed 5 -01010111100111 moldy 6 -01010111100111 blander 6 -01010111100111 discursive 6 -01010111100111 majoritarian 6 -01010111100111 competitve 6 -01010111100111 interlinked 6 -01010111100111 tendentious 6 -01010111100111 unromantic 6 -01010111100111 venerated 6 -01010111100111 public-spirited 6 -01010111100111 pitiable 6 -01010111100111 schematic 6 -01010111100111 flatulent 6 -01010111100111 ravishing 6 -01010111100111 sensationalistic 6 -01010111100111 four-foot 6 -01010111100111 bankable 6 -01010111100111 well-traveled 6 -01010111100111 munificent 6 -01010111100111 glossier 6 -01010111100111 submissive 6 -01010111100111 beached 6 -01010111100111 raccoon 6 -01010111100111 means-testing 6 -01010111100111 fidgety 6 -01010111100111 research-oriented 6 -01010111100111 well-behaved 7 -01010111100111 segmented 7 -01010111100111 unsullied 7 -01010111100111 restful 7 -01010111100111 chauvinistic 7 -01010111100111 pacific 7 -01010111100111 craven 7 -01010111100111 manic-depressive 7 -01010111100111 yuppified 7 -01010111100111 venturesome 7 -01010111100111 formulaic 7 -01010111100111 conformist 7 -01010111100111 homogenous 7 -01010111100111 lustrous 7 -01010111100111 business-like 7 -01010111100111 expressionistic 7 -01010111100111 self-directed 7 -01010111100111 adult-oriented 7 -01010111100111 remunerative 7 -01010111100111 uncontroversial 7 -01010111100111 cash-poor 7 -01010111100111 unremarkable 7 -01010111100111 crestfallen 7 -01010111100111 Reaganesque 7 -01010111100111 crackpot 7 -01010111100111 changeable 7 -01010111100111 self-reinforcing 7 -01010111100111 episodic 7 -01010111100111 chipper 8 -01010111100111 undermanned 8 -01010111100111 jocular 8 -01010111100111 captivating 8 -01010111100111 polemical 8 -01010111100111 snobbish 8 -01010111100111 unstructured 8 -01010111100111 spineless 8 -01010111100111 smooth-running 8 -01010111100111 inconspicuous 8 -01010111100111 sainted 8 -01010111100111 colloquial 8 -01010111100111 grating 8 -01010111100111 clear-eyed 8 -01010111100111 multicultural 8 -01010111100111 nervy 8 -01010111100111 lugubrious 8 -01010111100111 nonlinear 8 -01010111100111 pro-plaintiff 8 -01010111100111 contemptible 8 -01010111100111 hallucinatory 8 -01010111100111 crisper 9 -01010111100111 unexploited 9 -01010111100111 results-oriented 9 -01010111100111 saleable 9 -01010111100111 hand-painted 9 -01010111100111 heavyhanded 9 -01010111100111 paunchy 9 -01010111100111 regimented 9 -01010111100111 Mozartean 9 -01010111100111 security-conscious 9 -01010111100111 slovenly 9 -01010111100111 drafty 9 -01010111100111 technology-driven 9 -01010111100111 postmodern 9 -01010111100111 swampy 9 -01010111100111 tart 9 -01010111100111 workmanlike 9 -01010111100111 7-3 9 -01010111100111 4-2 9 -01010111100111 staccato 9 -01010111100111 retrograde 9 -01010111100111 homing 10 -01010111100111 exhilarated 10 -01010111100111 well-intended 10 -01010111100111 bombastic 10 -01010111100111 shapely 10 -01010111100111 duplicitous 10 -01010111100111 fitful 10 -01010111100111 passable 10 -01010111100111 stereotyped 10 -01010111100111 mannered 10 -01010111100111 chummy 10 -01010111100111 anti-intellectual 10 -01010111100111 vacuous 10 -01010111100111 saccharine 10 -01010111100111 didactic 10 -01010111100111 brutish 10 -01010111100111 cloying 10 -01010111100111 curt 11 -01010111100111 pedantic 11 -01010111100111 soft-sell 11 -01010111100111 self-financed 11 -01010111100111 pensive 11 -01010111100111 brusque 11 -01010111100111 self-critical 11 -01010111100111 price-competitive 11 -01010111100111 lamentable 11 -01010111100111 hyperbolic 11 -01010111100111 impetuous 11 -01010111100111 militarized 11 -01010111100111 vexatious 11 -01010111100111 straight-forward 11 -01010111100111 quiescent 11 -01010111100111 talked-about 11 -01010111100111 rubbery 11 -01010111100111 high-toned 11 -01010111100111 advantaged 12 -01010111100111 simple-minded 12 -01010111100111 spellbinding 12 -01010111100111 telegenic 12 -01010111100111 fevered 12 -01010111100111 loopy 12 -01010111100111 Grape-Nuts 12 -01010111100111 lackadaisical 12 -01010111100111 tiled 12 -01010111100111 morose 12 -01010111100111 metaphorical 12 -01010111100111 creamy 12 -01010111100111 treatable 12 -01010111100111 thrifty 12 -01010111100111 homogenized 12 -01010111100111 droll 12 -01010111100111 magnanimous 12 -01010111100111 naturalistic 12 -01010111100111 self-perpetuating 12 -01010111100111 self-correcting 12 -01010111100111 pliant 12 -01010111100111 ghoulish 13 -01010111100111 self-absorbed 13 -01010111100111 laconic 13 -01010111100111 profit-oriented 13 -01010111100111 humorless 13 -01010111100111 rapacious 13 -01010111100111 surrealistic 13 -01010111100111 well-stocked 13 -01010111100111 opinionated 13 -01010111100111 wilder 13 -01010111100111 lifelike 13 -01010111100111 supplicant 13 -01010111100111 hardheaded 13 -01010111100111 level-headed 14 -01010111100111 employable 14 -01010111100111 helter-skelter 14 -01010111100111 adventuresome 14 -01010111100111 internationalized 14 -01010111100111 heinous 14 -01010111100111 jovial 14 -01010111100111 erodible 14 -01010111100111 unimaginative 14 -01010111100111 beneficent 14 -01010111100111 obtuse 14 -01010111100111 well-liked 14 -01010111100111 absorbent 14 -01010111100111 militaristic 14 -01010111100111 self-effacing 14 -01010111100111 feckless 14 -01010111100111 malleable 14 -01010111100111 categorical 14 -01010111100111 romanticized 14 -01010111100111 hidebound 14 -01010111100111 nutritious 14 -01010111100111 participatory 15 -01010111100111 fragrant 15 -01010111100111 bellicose 15 -01010111100111 slipshod 15 -01010111100111 well-written 15 -01010111100111 jaundiced 15 -01010111100111 laudatory 15 -01010111100111 landscaped 15 -01010111100111 preventative 15 -01010111100111 matter-of-fact 15 -01010111100111 superstitious 15 -01010111100111 unrivaled 15 -01010111100111 pro-consumer 15 -01010111100111 stoic 15 -01010111100111 Machiavellian 15 -01010111100111 faddish 16 -01010111100111 forgettable 16 -01010111100111 vindictive 16 -01010111100111 sprightly 16 -01010111100111 mystifying 16 -01010111100111 pallid 16 -01010111100111 self-centered 16 -01010111100111 inhuman 16 -01010111100111 tyrannical 16 -01010111100111 user-friendly 16 -01010111100111 60-40 16 -01010111100111 judgmental 16 -01010111100111 slimy 16 -01010111100111 venal 16 -01010111100111 short-sighted 16 -01010111100111 cogent 17 -01010111100111 fatuous 17 -01010111100111 profane 17 -01010111100111 farsighted 17 -01010111100111 treasured 17 -01010111100111 sadistic 17 -01010111100111 scanty 17 -01010111100111 polarizing 17 -01010111100111 deadpan 17 -01010111100111 one-of-a-kind 17 -01010111100111 tempestuous 17 -01010111100111 nebulous 17 -01010111100111 byzantine 17 -01010111100111 mythic 17 -01010111100111 promiscuous 17 -01010111100111 haughty 17 -01010111100111 truncated 17 -01010111100111 photogenic 17 -01010111100111 globalized 17 -01010111100111 degrading 17 -01010111100111 barbaric 18 -01010111100111 garish 18 -01010111100111 demented 18 -01010111100111 greasy 18 -01010111100111 sensuous 18 -01010111100111 culpable 18 -01010111100111 demoralizing 18 -01010111100111 hypnotic 18 -01010111100111 individualistic 18 -01010111100111 high-handed 18 -01010111100111 defeatist 18 -01010111100111 headstrong 18 -01010111100111 vapid 18 -01010111100111 stilted 18 -01010111100111 self-indulgent 18 -01010111100111 symmetrical 18 -01010111100111 temperamental 19 -01010111100111 succinct 19 -01010111100111 finicky 19 -01010111100111 localized 19 -01010111100111 dandy 19 -01010111100111 vile 19 -01010111100111 fearless 19 -01010111100111 chancy 19 -01010111100111 mesmerizing 19 -01010111100111 disheveled 19 -01010111100111 purposeful 19 -01010111100111 rarefied 20 -01010111100111 heartfelt 20 -01010111100111 heretical 20 -01010111100111 cultured 20 -01010111100111 disorganized 20 -01010111100111 well-timed 20 -01010111100111 cuddly 20 -01010111100111 regal 20 -01010111100111 lucid 20 -01010111100111 homespun 20 -01010111100111 price-sensitive 21 -01010111100111 thought-provoking 21 -01010111100111 self-reliant 21 -01010111100111 flammable 21 -01010111100111 wrongheaded 21 -01010111100111 flaky 21 -01010111100111 ponderous 21 -01010111100111 compliant 21 -01010111100111 colder 21 -01010111100111 utilitarian 21 -01010111100111 humdrum 21 -01010111100111 market-driven 21 -01010111100111 funky 21 -01010111100111 tasteless 21 -01010111100111 deep-rooted 21 -01010111100111 frosty 22 -01010111100111 healthful 22 -01010111100111 vitriolic 22 -01010111100111 gruesome 22 -01010111100111 facile 22 -01010111100111 textured 22 -01010111100111 desolate 22 -01010111100111 breathless 22 -01010111100111 wobbly 22 -01010111100111 visceral 22 -01010111100111 cantankerous 22 -01010111100111 legalistic 23 -01010111100111 long-winded 23 -01010111100111 sordid 23 -01010111100111 spartan 23 -01010111100111 tight-fisted 23 -01010111100111 glib 23 -01010111100111 despicable 23 -01010111100111 self-deprecating 23 -01010111100111 proficient 23 -01010111100111 clubby 23 -01010111100111 reactive 24 -01010111100111 forward-looking 24 -01010111100111 drug-free 24 -01010111100111 disjointed 24 -01010111100111 well-respected 24 -01010111100111 steadfast 24 -01010111100111 temperate 24 -01010111100111 grisly 24 -01010111100111 omnipresent 24 -01010111100111 virtuous 24 -01010111100111 numbing 25 -01010111100111 self-interested 25 -01010111100111 multifaceted 25 -01010111100111 colorless 25 -01010111100111 resonant 25 -01010111100111 service-oriented 25 -01010111100111 brooding 25 -01010111100111 noxious 25 -01010111100111 riveting 25 -01010111100111 classy 26 -01010111100111 lurid 26 -01010111100111 tasteful 26 -01010111100111 joyous 26 -01010111100111 doctrinaire 26 -01010111100111 rumpled 26 -01010111100111 cost-efficient 26 -01010111100111 hierarchical 26 -01010111100111 mean-spirited 26 -01010111100111 evenhanded 27 -01010111100111 morbid 27 -01010111100111 masculine 27 -01010111100111 uncooperative 28 -01010111100111 schizophrenic 28 -01010111100111 patronizing 28 -01010111100111 scrupulous 28 -01010111100111 minded 28 -01010111100111 pernicious 28 -01010111100111 complimentary 28 -01010111100111 dicey 28 -01010111100111 credit-worthy 29 -01010111100111 resourceful 29 -01010111100111 evocative 29 -01010111100111 prescient 29 -01010111100111 damning 29 -01010111100111 gentlemanly 29 -01010111100111 utopian 29 -01010111100111 dogmatic 29 -01010111100111 melodramatic 29 -01010111100111 mellow 29 -01010111100111 festive 29 -01010111100111 self-contained 30 -01010111100111 congenial 30 -01010111100111 corrosive 30 -01010111100111 suggestive 30 -01010111100111 collegial 30 -01010111100111 docile 30 -01010111100111 cosmopolitan 30 -01010111100111 porous 30 -01010111100111 lifeless 30 -01010111100111 leftward 30 -01010111100111 serene 31 -01010111100111 trustworthy 31 -01010111100111 luminous 31 -01010111100111 risk-averse 31 -01010111100111 well-organized 31 -01010111100111 squalid 31 -01010111100111 personable 31 -01010111100111 anachronistic 31 -01010111100111 dovish 31 -01010111100111 quixotic 31 -01010111100111 laudable 32 -01010111100111 concise 32 -01010111100111 free-wheeling 32 -01010111100111 crooked 32 -01010111100111 gentler 32 -01010111100111 blighted 32 -01010111100111 resolute 32 -01010111100111 lovable 32 -01010111100111 carcinogenic 32 -01010111100111 unyielding 32 -01010111100111 prosaic 32 -01010111100111 well-financed 33 -01010111100111 down-to-earth 33 -01010111100111 frayed 33 -01010111100111 myopic 33 -01010111100111 disorderly 33 -01010111100111 belligerent 33 -01010111100111 long-lived 33 -01010111100111 disparaging 33 -01010111100111 profligate 33 -01010111100111 shady 33 -01010111100111 purified 33 -01010111100111 descriptive 33 -01010111100111 downbeat 34 -01010111100111 pluralistic 34 -01010111100111 horrifying 34 -01010111100111 idiosyncratic 34 -01010111100111 homogeneous 34 -01010111100111 testy 34 -01010111100111 hawkish 34 -01010111100111 dictatorial 35 -01010111100111 fruitful 35 -01010111100111 high-minded 35 -01010111100111 self-conscious 36 -01010111100111 cocky 36 -01010111100111 methodical 36 -01010111100111 surreal 37 -01010111100111 Byzantine 37 -01010111100111 brazen 37 -01010111100111 acidic 37 -01010111100111 cavalier 38 -01010111100111 self-destructive 38 -01010111100111 understaffed 38 -01010111100111 ruinous 38 -01010111100111 sedate 38 -01010111100111 prickly 38 -01010111100111 shrill 38 -01010111100111 easygoing 38 -01010111100111 tranquil 38 -01010111100111 readable 38 -01010111100111 laid-back 38 -01010111100111 haphazard 38 -01010111100111 fearsome 39 -01010111100111 stylized 39 -01010111100111 nimble 39 -01010111100111 tantalizing 39 -01010111100111 well-off 40 -01010111100111 autobiographical 40 -01010111100111 gracious 40 -01010111100111 permissive 40 -01010111100111 paternalistic 40 -01010111100111 plodding 40 -01010111100111 paradoxical 40 -01010111100111 neurotic 40 -01010111100111 cohesive 41 -01010111100111 distracting 41 -01010111100111 raucous 41 -01010111100111 well-informed 41 -01010111100111 menacing 42 -01010111100111 vehement 42 -01010111100111 pro-business 42 -01010111100111 adventurous 43 -01010111100111 ingrained 43 -01010111100111 dependable 43 -01010111100111 salable 43 -01010111100111 frugal 44 -01010111100111 slippery 44 -01010111100111 truthful 44 -01010111100111 top-heavy 44 -01010111100111 businesslike 44 -01010111100111 playful 44 -01010111100111 whimsical 44 -01010111100111 terrifying 45 -01010111100111 virulent 45 -01010111100111 fanciful 45 -01010111100111 diligent 45 -01010111100111 versatile 46 -01010111100111 capricious 46 -01010111100111 restive 46 -01010111100111 perceptive 46 -01010111100111 pristine 46 -01010111100111 low-tech 46 -01010111100111 single-minded 47 -01010111100111 impersonal 47 -01010111100111 convoluted 47 -01010111100111 sought-after 47 -01010111100111 smug 48 -01010111100111 low-profile 48 -01010111100111 wholesome 48 -01010111100111 dignified 49 -01010111100111 perilous 50 -01010111100111 stressful 50 -01010111100111 one-sided 50 -01010111100111 harmonious 50 -01010111100111 dilutive 50 -01010111100111 compulsive 50 -01010111100111 panicky 51 -01010111100111 zealous 51 -01010111100111 brittle 51 -01010111100111 capital-intensive 52 -01010111100111 well-intentioned 53 -01010111100111 meticulous 53 -01010111100111 solemn 53 -01010111100111 poisonous 53 -01010111100111 muddled 53 -01010111100111 long-lasting 53 -01010111100111 poetic 53 -01010111100111 literal 53 -01010111100111 vigilant 54 -01010111100111 revered 54 -01010111100111 fuel-efficient 54 -01010111100111 subversive 54 -01010111100111 seductive 55 -01010111100111 vexing 55 -01010111100111 well-regarded 55 -01010111100111 cost-conscious 55 -01010111100111 dishonest 56 -01010111100111 self-sufficient 56 -01010111100111 cloudy 56 -01010111100111 contagious 56 -01010111100111 simplistic 57 -01010111100111 feminine 57 -01010111100111 grotesque 57 -01010111100111 tenacious 57 -01010111100111 recognizable 58 -01010111100111 congested 58 -01010111100111 painless 60 -01010111100111 vociferous 60 -01010111100111 resilient 62 -01010111100111 debilitating 62 -01010111100111 genteel 63 -01010111100111 fickle 63 -01010111100111 hilarious 63 -01010111100111 selfish 64 -01010111100111 feeble 64 -01010111100111 glutted 64 -01010111100111 tolerant 65 -01010111100111 forthright 65 -01010111100111 well-established 65 -01010111100111 sinister 67 -01010111100111 ferocious 67 -01010111100111 overbuilt 67 -01010111100111 strident 67 -01010111100111 politicized 69 -01010111100111 fervent 69 -01010111100111 bulky 69 -01010111100111 bolder 69 -01010111100111 humiliating 69 -01010111100111 frenetic 69 -01010111100111 clumsy 69 -01010111100111 quirky 70 -01010111100111 cheerful 70 -01010111100111 futuristic 70 -01010111100111 luxurious 70 -01010111100111 self-serving 71 -01010111100111 manipulative 71 -01010111100111 tenuous 73 -01010111100111 heavy-handed 73 -01010111100111 dense 74 -01010111100111 lyrical 74 -01010111100111 treacherous 74 -01010111100111 touchy 75 -01010111100111 transparent 76 -01010111100111 glorious 76 -01010111100111 acclaimed 76 -01010111100111 discreet 77 -01010111100111 decentralized 77 -01010111100111 magical 78 -01010111100111 poignant 78 -01010111100111 somber 79 -01010111100111 timid 79 -01010111100111 populous 79 -01010111100111 tedious 80 -01010111100111 skillful 83 -01010111100111 courageous 84 -01010111100111 witty 86 -01010111100111 cherished 88 -01010111100111 confrontational 88 -01010111100111 compassionate 88 -01010111100111 sober 90 -01010111100111 frank 92 -01010111100111 spontaneous 92 -01010111100111 lightweight 95 -01010111100111 vibrant 96 -01010111100111 precarious 96 -01010111100111 prevalent 97 -01010111100111 ruthless 100 -01010111100111 cozy 101 -01010111100111 conspicuous 101 -01010111100111 cramped 101 -01010111100111 candid 102 -01010111100111 hard-nosed 103 -01010111100111 humane 104 -01010111100111 complementary 104 -01010111100111 tangled 105 -01010111100111 ubiquitous 105 -01010111100111 perverse 107 -01010111100111 workable 108 -01010111100111 flashy 109 -01010111100111 sloppy 112 -01010111100111 manageable 114 -01010111100111 combative 115 -01010111100111 polished 115 -01010111100111 pricey 116 -01010111100111 divisive 119 -01010111100111 greedy 120 -01010111100111 primitive 121 -01010111100111 murky 122 -01010111100111 messy 122 -01010111100111 cumbersome 125 -01010111100111 lethal 125 -01010111100111 lax 128 -01010111100111 rewarding 128 -01010111100111 glamorous 128 -01010111100111 passionate 128 -01010111100111 disruptive 130 -01010111100111 mundane 130 -01010111100111 secretive 131 -01010111100111 lenient 131 -01010111100111 benign 134 -01010111100111 prized 134 -01010111100111 turbulent 136 -01010111100111 contradictory 138 -01010111100111 persuasive 139 -01010111100111 thoughtful 141 -01010111100111 misguided 141 -01010111100111 stubborn 142 -01010111100111 provocative 142 -01010111100111 blockbuster 143 -01010111100111 time-consuming 144 -01010111100111 charming 144 -01010111100111 memorable 144 -01010111100111 cost-effective 145 -01010111100111 plausible 148 -01010111100111 shrewd 149 -01010111100111 renowned 150 -01010111100111 conciliatory 151 -01010111100111 daring 154 -01010111100111 sacred 154 -01010111100111 fragmented 155 -01010111100111 fascinating 158 -01010111100111 cynical 158 -01010111100111 forceful 159 -01010111100111 destructive 160 -01010111100111 discriminatory 161 -01010111100111 low-key 161 -01010111100111 burdensome 163 -01010111100111 chaotic 163 -01010111100111 notorious 164 -01010111100111 rigorous 164 -01010111100111 cosmetic 170 -01010111100111 centralized 171 -01010111100111 tense 177 -01010111100111 vivid 178 -01010111100111 fluid 180 -01010111100111 thriving 184 -01010111100111 straightforward 184 -01010111100111 pervasive 185 -01010111100111 fashionable 186 -01010111100111 oriented 189 -01010111100111 colorful 195 -01010111100111 peculiar 195 -01010111100111 brutal 197 -01010111100111 distinctive 197 -01010111100111 contentious 199 -01010111100111 gloomy 207 -01010111100111 deadly 209 -01010111100111 prosperous 209 -01010111100111 convenient 219 -01010111100111 distressed 219 -01010111100111 pragmatic 225 -01010111100111 troublesome 228 -01010111100111 boring 237 -01010111100111 mysterious 242 -01010111100111 vocal 249 -01010111100111 dubious 256 -01010111100111 unpopular 267 -01010111100111 fragile 270 -01010111100111 relaxed 274 -01010111100111 educated 280 -01010111100111 confusing 289 -01010111100111 devastating 290 -01010111100111 predictable 293 -01010111100111 bizarre 295 -01010111100111 symbolic 297 -01010111100111 thick 303 -01010111100111 disturbing 307 -01010111100111 potent 308 -01010111100111 stringent 312 -01010111100111 rigid 331 -01010111100111 forthcoming 331 -01010111100111 publicized 332 -01010111100111 dynamic 339 -01010111100111 dull 342 -01010111100111 selective 348 -01010111100111 brilliant 349 -01010111100111 uniform 354 -01010111100111 compelling 356 -01010111100111 distant 361 -01010111100111 viable 363 -01010111100111 disastrous 375 -01010111100111 restrictive 391 -01010111100111 vague 460 -01010111100111 diverse 468 -01010111100111 remote 473 -01010111100111 realistic 475 -01010111100111 respected 482 -01010111100111 crowded 490 -01010111100111 reliable 505 -01010111100111 productive 520 -01010111100111 painful 524 -01010111100111 specialized 552 -01010111100111 visible 579 -01010111100111 flexible 627 -01010111100111 liquid 651 -01010111100111 protectionist 700 -01010111100111 generous 706 -01010111100111 speculative 783 -01010111100111 useful 814 -01010111100111 busy 823 -01010111100111 risky 831 -01010111100111 bearish 846 -01010111100111 lucrative 861 -01010111100111 complicated 871 -01010111100111 promising 910 -01010111100111 famous 926 -01010111100111 defensive 946 -01010111100111 valuable 949 -01010111100111 cautious 1102 -01010111100111 sophisticated 1111 -01010111100111 volatile 1117 -01010111100111 dangerous 1153 -01010111100111 bullish 1293 -01010111100111 costly 1685 -01010111100111 controversial 1743 -01010111100111 complex 2576 -01010111100111 powerful 2611 -01010111100111 profitable 2916 -01010111100111 popular 3069 -01010111100111 competitive 3516 -01010111100111 successful 3488 -0101011110100 falser 1 -0101011110100 climatically 1 -0101011110100 singable 1 -0101011110100 dictatorialization 1 -0101011110100 troublingly 1 -0101011110100 pricklier 1 -0101011110100 11,712 1 -0101011110100 radiccio 1 -0101011110100 trade-constricting 1 -0101011110100 maximizers 1 -0101011110100 squeezed-out 1 -0101011110100 growingly 1 -0101011110100 trihalomethane 1 -0101011110100 WRANGLING 1 -0101011110100 eight-foot-square 1 -0101011110100 gramatically 1 -0101011110100 unworkably 2 -0101011110100 64-megabit 2 -0101011110100 bread-quality 3 -0101011110100 cloudier 3 -0101011110100 unmerited 3 -0101011110100 1,378 3 -0101011110100 deadlier 3 -0101011110100 more 90721 -0101011110100 fewer 2272 -0101011110101 first-borns 1 -0101011110101 disquietingly 1 -0101011110101 Seattle/Spokane 1 -0101011110101 unmodifiable 1 -0101011110101 quantitate 1 -0101011110101 non-truths 1 -0101011110101 office-hotel-retail 1 -0101011110101 charier 1 -0101011110101 papaya-passion 1 -0101011110101 over-advertise 1 -0101011110101 hotel-office 1 -0101011110101 senior-manager 1 -0101011110101 Arabic-like 1 -0101011110101 -less 1 -0101011110101 bonehead 1 -0101011110101 prohibitvely 1 -0101011110101 1,721 1 -0101011110101 better-liked 1 -0101011110101 unsaleably 1 -0101011110101 inner-focused 1 -0101011110101 territory-run 1 -0101011110101 fuel-energy 1 -0101011110101 shares-higher 1 -0101011110101 apartment-and-office 1 -0101011110101 unemployment-tax 1 -0101011110101 Cominform 1 -0101011110101 wear-and-tear 1 -0101011110101 paunchier 1 -0101011110101 joint-venturing 1 -0101011110101 fare-raising 1 -0101011110101 strike-happy 1 -0101011110101 brasher 1 -0101011110101 Freedent 1 -0101011110101 irredeemably 1 -0101011110101 exclusiveness 1 -0101011110101 manageability 1 -0101011110101 sweatier 1 -0101011110101 nuttily 1 -0101011110101 clingier 1 -0101011110101 frostier 1 -0101011110101 1,387 2 -0101011110101 wealth-building 2 -0101011110101 esthetically 2 -0101011110101 1,285 2 -0101011110101 flimsier 2 -0101011110101 corruptive 2 -0101011110101 better-positioned 2 -0101011110101 unhappier 2 -0101011110101 QUITE 2 -0101011110101 unwarrantedly 2 -0101011110101 allergenic 3 -0101011110101 better-reserved 3 -0101011110101 1,791 3 -0101011110101 thyme 3 -0101011110101 unpalatably 4 -0101011110101 pleasingly 4 -0101011110101 cashew 6 -0101011110101 2,630 6 -0101011110101 prouder 7 -0101011110101 chock 9 -0101011110101 less 16437 -0101011110101 prohibitively 155 -0101011110110 anti-Europeanism 1 -0101011110110 Lukewarm 1 -0101011110110 photochemical 1 -0101011110110 20-below 1 -0101011110110 commodity-chemical 1 -0101011110110 underamortized 1 -0101011110110 71,066 1 -0101011110110 stock-dividend 1 -0101011110110 inflation-pegged 1 -0101011110110 Terminology 1 -0101011110110 wage-fueled 1 -0101011110110 hard-to-kill 1 -0101011110110 tongue-incheek 1 -0101011110110 26,514 1 -0101011110110 heeled 1 -0101011110110 union-endorsed 1 -0101011110110 undernourishes 1 -0101011110110 incorect 1 -0101011110110 less-generous-than-usual 1 -0101011110110 underassessed 1 -0101011110110 1,230-pound 1 -0101011110110 expensive-to-maintain 1 -0101011110110 blackbacked 1 -0101011110110 juvenile-onset 1 -0101011110110 bio-pharmaceutical 1 -0101011110110 grain-ration 1 -0101011110110 impalpable 1 -0101011110110 perjurious 1 -0101011110110 state-income 1 -0101011110110 moneyfund 1 -0101011110110 below-union 1 -0101011110110 zee 1 -0101011110110 special-use 1 -0101011110110 hospital-plan 1 -0101011110110 palm-tree 1 -0101011110110 state-school 1 -0101011110110 full-fare-coach 1 -0101011110110 new-camera 1 -0101011110110 white-tablecloth 1 -0101011110110 lower-than-market 1 -0101011110110 haute-cuisine 1 -0101011110110 Consortia 1 -0101011110110 feedcorn 1 -0101011110110 energy-crisis 1 -0101011110110 per-term 1 -0101011110110 overstated. 1 -0101011110110 less-light 1 -0101011110110 early-17th-century 1 -0101011110110 3.3130 1 -0101011110110 hormone-deficiency-related 1 -0101011110110 different-seeming 1 -0101011110110 higher-than-retail 1 -0101011110110 still-warmer 1 -0101011110110 non-promotional 1 -0101011110110 preferredstock 1 -0101011110110 options-generated 1 -0101011110110 big-investor 1 -0101011110110 deep-plunge 1 -0101011110110 below-industry 1 -0101011110110 dissimiliar 1 -0101011110110 still-restrained 1 -0101011110110 higher-than-prevailing 1 -0101011110110 energy-company 1 -0101011110110 diclofenac 1 -0101011110110 Syrian-inspired 1 -0101011110110 non-monopolistic 1 -0101011110110 delphic 1 -0101011110110 corporate-sector 1 -0101011110110 1,234,500 1 -0101011110110 pre-transfer 1 -0101011110110 requsting 1 -0101011110110 drafted. 1 -0101011110110 celsius 1 -0101011110110 early-onset 1 -0101011110110 psychopolitical 1 -0101011110110 market-interest 1 -0101011110110 exhorbitant 1 -0101011110110 Tokyo-originating 1 -0101011110110 more-trusted 1 -0101011110110 underdressed 1 -0101011110110 above-zero 1 -0101011110110 top-market 1 -0101011110110 non-accrued 2 -0101011110110 fourth-class 2 -0101011110110 2,397 2 -0101011110110 NIC 2 -0101011110110 Medicare-catastrophic-care 2 -0101011110110 below-prime 2 -0101011110110 less-vigorous 2 -0101011110110 1/32nd 2 -0101011110110 union-scale 2 -0101011110110 well-targeted 2 -0101011110110 shod 2 -0101011110110 cheaper-to-maintain 2 -0101011110110 paleontology 2 -0101011110110 super-high 2 -0101011110110 near-wholesale 2 -0101011110110 sugarcoating 2 -0101011110110 U.S.C. 2 -0101011110110 government-fixed 3 -0101011110110 near-peak 3 -0101011110110 time-and-a-half 4 -0101011110110 snacking 4 -0101011110110 more-complicated 4 -0101011110110 underinvested 4 -0101011110110 skyhigh 4 -0101011110110 colder-than-normal 5 -0101011110110 risk-related 5 -0101011110110 waist-high 5 -0101011110110 cheapened 6 -0101011110110 still-higher 7 -0101011110110 market-determined 7 -0101011110110 below-cost 8 -0101011110110 state-set 10 -0101011110110 ever-higher 13 -0101011110110 higher-than-anticipated 20 -0101011110110 higher-than-market 22 -0101011110110 uncollected 22 -0101011110110 triple-digit 24 -0101011110110 fire-sale 29 -0101011110110 above-normal 30 -0101011110110 nondeductible 38 -0101011110110 bargain-basement 41 -0101011110110 below-market 96 -0101011110110 higher-than-expected 112 -0101011110110 firmer 482 -0101011110110 higher 17782 -0101011110110 lower 13659 -010101111011100 alike. 1 -010101111011100 post-marital 1 -010101111011100 index-futures-related 1 -010101111011100 inviable 1 -010101111011100 aboutcha 1 -010101111011100 sports-club 1 -010101111011100 misery. 1 -010101111011100 over-zealously 1 -010101111011100 noise-measuring 1 -010101111011100 informationally 1 -010101111011100 non-Christians 1 -010101111011100 toters 1 -010101111011100 cornier 1 -010101111011100 unisons 1 -010101111011100 departmental-level 1 -010101111011100 zig-zaggy 1 -010101111011100 Arab-language 1 -010101111011100 frou-frou 1 -010101111011100 half-days 1 -010101111011100 rockier 1 -010101111011100 virus-receptor 1 -010101111011100 squarer 1 -010101111011100 snootier 1 -010101111011100 stand. 1 -010101111011100 1989-65 1 -010101111011100 drabber 1 -010101111011100 Fed-local 1 -010101111011100 cocktailish 1 -010101111011100 anti-white 1 -010101111011100 half-well 1 -010101111011100 hooplah 1 -010101111011100 health-care-related 1 -010101111011100 droughty 1 -010101111011100 1989-76 1 -010101111011100 child-run 1 -010101111011100 more-compelling 1 -010101111011100 range-finder 1 -010101111011100 unaccrued 1 -010101111011100 Mahlerian 2 -010101111011100 indocumentados 2 -010101111011100 bullfights 2 -010101111011100 duelling 2 -010101111011100 springier 2 -010101111011100 hearses 2 -010101111011100 bellman 2 -010101111011100 fusty 2 -010101111011100 vote-winning 2 -010101111011100 machine-age 2 -010101111011100 Ambassadors 2 -010101111011100 pre-Inca 2 -010101111011100 gamier 2 -010101111011100 catchier 2 -010101111011100 flusher 2 -010101111011100 drunker 2 -010101111011100 must-buy 2 -010101111011100 holier 2 -010101111011100 soggier 2 -010101111011100 mid-calf 2 -010101111011100 eerier 2 -010101111011100 touchier 2 -010101111011100 trainable 3 -010101111011100 tenser 3 -010101111011100 worse. 3 -010101111011100 stogie 3 -010101111011100 stutters 3 -010101111011100 fisher 3 -010101111011100 cash-outs 3 -010101111011100 dewy-eyed 3 -010101111011100 she-male 3 -010101111011100 cruder 3 -010101111011100 lonelier 3 -010101111011100 corruptly 3 -010101111011100 fast-pitch 3 -010101111011100 slacking 4 -010101111011100 winded 4 -010101111011100 muddier 4 -010101111011100 blacker 4 -010101111011100 discomfiting 4 -010101111011100 trite 4 -010101111011100 C++ 4 -010101111011100 cuter 4 -010101111011100 more. 4 -010101111011100 ruder 4 -010101111011100 better-looking 4 -010101111011100 sturdier 4 -010101111011100 funnier 5 -010101111011100 buttery 5 -010101111011100 fuzzier 5 -010101111011100 hazier 5 -010101111011100 lengthier 5 -010101111011100 jaywalking 5 -010101111011100 tastier 6 -010101111011100 stickier 6 -010101111011100 vaguer 6 -010101111011100 crazier 6 -010101111011100 saltier 6 -010101111011100 scarier 6 -010101111011100 nobler 6 -010101111011100 sadder 6 -010101111011100 seasick 6 -010101111011100 fitter 6 -010101111011100 hardier 6 -010101111011100 misty-eyed 6 -010101111011100 disorienting 7 -010101111011100 sillier 7 -010101111011100 dicier 7 -010101111011100 nastier 7 -010101111011100 dispassionately 7 -010101111011100 sexier 7 -010101111011100 juicier 7 -010101111011100 bloodier 7 -010101111011100 dumber 8 -010101111011100 whiter 8 -010101111011100 weirder 8 -010101111011100 dirtier 8 -010101111011100 chintzy 8 -010101111011100 murkier 10 -010101111011100 briefer 10 -010101111011100 grimmer 11 -010101111011100 blunter 11 -010101111011100 stingier 11 -010101111011100 prettier 12 -010101111011100 duller 13 -010101111011100 messier 13 -010101111011100 truer 14 -010101111011100 ya 15 -010101111011100 shakier 15 -010101111011100 angrier 16 -010101111011100 hungrier 16 -010101111011100 purer 17 -010101111011100 dimmer 18 -010101111011100 shallower 18 -010101111011100 keener 19 -010101111011100 livelier 19 -010101111011100 luckier 20 -010101111011100 rougher 21 -010101111011100 fiercer 21 -010101111011100 greener 22 -010101111011100 meaner 24 -010101111011100 thicker 24 -010101111011100 grander 25 -010101111011100 keel 25 -010101111011100 bleaker 25 -010101111011100 sicker 27 -010101111011100 trickier 28 -010101111011100 scarcer 28 -010101111011100 sweeter 29 -010101111011100 rarer 30 -010101111011100 fresher 32 -010101111011100 friendlier 37 -010101111011100 nicer 37 -010101111011100 busier 38 -010101111011100 hotter 40 -010101111011100 smoother 48 -010101111011100 taller 49 -010101111011100 fairer 51 -010101111011100 louder 54 -010101111011100 thinner 61 -010101111011100 costlier 67 -010101111011100 harsher 76 -010101111011100 firsthand 80 -010101111011100 smarter 84 -010101111011100 warmer 91 -010101111011100 happier 99 -010101111011100 riskier 134 -010101111011100 brighter 153 -010101111011100 quicker 170 -010101111011100 richer 190 -010101111011100 simpler 229 -010101111011100 clearer 270 -010101111011100 safer 299 -010101111011100 sooner 544 -010101111011100 tougher 1006 -010101111011100 cheaper 1059 -010101111011100 worse 1837 -010101111011100 better 10296 -010101111011100 faster 1938 -010101111011101 one-and-a-half-billion 1 -010101111011101 algae-based 1 -010101111011101 daylower 1 -010101111011101 well-supervised 1 -010101111011101 one-to-10 1 -010101111011101 hurricane-survival 1 -010101111011101 photo-sensitive 1 -010101111011101 plasterlike 1 -010101111011101 commercial-financial 1 -010101111011101 stagings 1 -010101111011101 cow-elk 1 -010101111011101 ton-mile 1 -010101111011101 three-times-greater 1 -010101111011101 services-tax 1 -010101111011101 unpaid-leave 1 -010101111011101 gold/commodity-backed 1 -010101111011101 three-base 1 -010101111011101 confetti-like 1 -010101111011101 more-diverse 1 -010101111011101 Gettelman 1 -010101111011101 ill-grounded 1 -010101111011101 near-bionic 1 -010101111011101 conscience-keeper 1 -010101111011101 snoop-and-spy 1 -010101111011101 dream-like 1 -010101111011101 steel-weighted 1 -010101111011101 high-valued 1 -010101111011101 glue-like 1 -010101111011101 non-raunchy 1 -010101111011101 nolo 1 -010101111011101 self-avowed 1 -010101111011101 more-heavily 1 -010101111011101 stiff-legged 1 -010101111011101 toing 1 -010101111011101 still-weaker 1 -010101111011101 Rototiller 1 -010101111011101 military-marketing 1 -010101111011101 Bruegelesque 1 -010101111011101 less-than-ingenuous 1 -010101111011101 hundred-million 1 -010101111011101 much-clearer 1 -010101111011101 Nazi-style 1 -010101111011101 done-unto 1 -010101111011101 1-to-10 1 -010101111011101 more-personal 1 -010101111011101 creamery 1 -010101111011101 further-weakening 1 -010101111011101 mouth-stinging 1 -010101111011101 mine-detection 1 -010101111011101 military-commercial 1 -010101111011101 epistemological 1 -010101111011101 neo-Stalinist 1 -010101111011101 multi-multi-multimillion 1 -010101111011101 back-disability 1 -010101111011101 digest-size 1 -010101111011101 car-based 1 -010101111011101 traffic-cop 2 -010101111011101 single-class 2 -010101111011101 formula-determined 2 -010101111011101 pig-iron 2 -010101111011101 uproarious 2 -010101111011101 team-oriented 2 -010101111011101 pop-cultural 2 -010101111011101 still-fragile 2 -010101111011101 widepread 2 -010101111011101 nimbler 2 -010101111011101 chewed-up 2 -010101111011101 moonstruck 2 -010101111011101 cents-per-share 2 -010101111011101 personage 2 -010101111011101 still-larger 2 -010101111011101 starker 2 -010101111011101 string-bean 2 -010101111011101 lowercost 2 -010101111011101 far-removed 3 -010101111011101 tax-incentive 3 -010101111011101 bullheaded 3 -010101111011101 tonier 3 -010101111011101 recession-like 3 -010101111011101 telephonic 3 -010101111011101 still-lower 3 -010101111011101 northerly 3 -010101111011101 juridical 3 -010101111011101 plastic-foam 3 -010101111011101 meeker 3 -010101111011101 well-priced 4 -010101111011101 1,184 4 -010101111011101 sunnier 4 -010101111011101 timelier 4 -010101111011101 twice-daily 4 -010101111011101 under-leveraged 4 -010101111011101 deathlike 4 -010101111011101 longer-lasting 4 -010101111011101 ironical 5 -010101111011101 thornier 5 -010101111011101 wetter 5 -010101111011101 larger-than-anticipated 5 -010101111011101 glitzier 6 -010101111011101 well-coordinated 6 -010101111011101 more-lenient 6 -010101111011101 straighter 7 -010101111011101 desegregated 7 -010101111011101 hipper 8 -010101111011101 week-to-week 8 -010101111011101 graver 9 -010101111011101 sleeker 9 -010101111011101 lower-than-average 9 -010101111011101 tinier 10 -010101111011101 roomier 11 -010101111011101 skimpier 11 -010101111011101 bulkier 13 -010101111011101 broader-based 15 -010101111011101 drier 15 -010101111011101 pricier 16 -010101111011101 loftier 16 -010101111011101 brisker 17 -010101111011101 subtler 21 -010101111011101 swifter 22 -010101111011101 heftier 22 -010101111011101 sounder 22 -010101111011101 gloomier 24 -010101111011101 tamer 24 -010101111011101 rosier 32 -010101111011101 steadier 33 -010101111011101 fatter 43 -010101111011101 calmer 47 -010101111011101 shrunken 48 -010101111011101 fuller 53 -010101111011101 slimmer 56 -010101111011101 looser 57 -010101111011101 milder 63 -010101111011101 darker 68 -010101111011101 quieter 95 -010101111011101 steeper 101 -010101111011101 stiffer 118 -010101111011101 leaner 120 -010101111011101 freer 157 -010101111011101 softer 158 -010101111011101 healthier 163 -010101111011101 heavier 193 -010101111011101 sharper 199 -010101111011101 stricter 200 -010101111011101 lighter 201 -010101111011101 shorter 399 -010101111011101 narrower 402 -010101111011101 deeper 430 -010101111011101 tighter 561 -010101111011101 wider 798 -010101111011101 slower 1051 -010101111011101 weaker 1160 -010101111011101 broader 1510 -010101111011101 bigger 2124 -010101111011101 stronger 2269 -010101111011101 larger 3469 -010101111011101 smaller 4059 -010101111011101 greater 4157 -010101111011110 groundswells 1 -010101111011110 rapproachement 1 -010101111011110 Superego 1 -010101111011110 suasiveness 1 -010101111011110 tomates 1 -010101111011110 Libels 1 -010101111011110 IMIPs 1 -010101111011110 johnny-come-lately 1 -010101111011110 sappiness 1 -010101111011110 non-poaching 1 -010101111011110 simultaneous-translation 1 -010101111011110 roadmaps 1 -010101111011110 stunt-flying 1 -010101111011110 plans./But 1 -010101111011110 awnings 1 -010101111011110 Leaf-Burning 1 -010101111011110 leafburning 1 -010101111011110 Supersavers 1 -010101111011110 city-suburban 1 -010101111011110 pullet 1 -010101111011110 wisdom/Too 1 -010101111011110 Norn 1 -010101111011110 criss-cross 1 -010101111011110 hootch 1 -010101111011110 unsavory-looking 1 -010101111011110 Fluffinella 1 -010101111011110 reinitiates 1 -010101111011110 ship-to-satellite-to-allover-the-galaxy 1 -010101111011110 Atlanticist 1 -010101111011110 submarine-search 1 -010101111011110 choice. 1 -010101111011110 repeating. 1 -010101111011110 made-in-the-U.S. 1 -010101111011110 thin-slab 1 -010101111011110 swifty 1 -010101111011110 tenderfoot. 1 -010101111011110 Friedmanite 1 -010101111011110 Habitual 1 -010101111011110 pleasanter 1 -010101111011110 Kremlinological 1 -010101111011110 yucky 1 -010101111011110 mo 1 -010101111011110 interfacer 1 -010101111011110 counterproposals. 1 -010101111011110 gainsaying 1 -010101111011110 state-dictated 1 -010101111011110 inarguable 1 -010101111011110 Ecstasy 1 -010101111011110 owner-boss 1 -010101111011110 non-newspaper 1 -010101111011110 non-meat 1 -010101111011110 grown-up-sized 1 -010101111011110 self-disciplining 1 -010101111011110 crosssectional 1 -010101111011110 showstoppers 1 -010101111011110 stiff-haired 1 -010101111011110 self-deprecation 1 -010101111011110 prows 1 -010101111011110 quids 1 -010101111011110 explanation. 1 -010101111011110 in-and-outer 1 -010101111011110 Chin-Use 1 -010101111011110 pre-sorting 1 -010101111011110 truth-teller 1 -010101111011110 counteragents 1 -010101111011110 vertical-restraint 1 -010101111011110 dino 1 -010101111011110 majeures 1 -010101111011110 battered-fedora 1 -010101111011110 film-colorization 1 -010101111011110 geroscope 1 -010101111011110 gearshift 1 -010101111011110 megaseller 1 -010101111011110 wildlife-protection 1 -010101111011110 arroz 2 -010101111011110 playhouses 2 -010101111011110 administration-wide 2 -010101111011110 murmers 2 -010101111011110 brainer 2 -010101111011110 baptisms 2 -010101111011110 Greenwichers 2 -010101111011110 toxicities 2 -010101111011110 snots 2 -010101111011110 pickoff 2 -010101111011110 cakewalk 3 -010101111011110 flaks 3 -010101111011110 huzzahs 3 -010101111011110 mutagen 3 -010101111011110 commandments 4 -010101111011110 CITES 6 -010101111011110 deader 7 -010101111011110 slouches 8 -010101111011110 compunction 8 -010101111011110 mistaking 10 -010101111011110 rave 34 -010101111011110 majeure 47 -010101111011110 avail 79 -010101111011110 doubt 2237 -010101111011110 longer 4683 -010101111011111 pulse-racing 1 -010101111011111 pre-poll 1 -010101111011111 grain-policy 1 -010101111011111 22-foot-long 1 -010101111011111 maintenance-complaint 1 -010101111011111 Carter-style 1 -010101111011111 house-fire 1 -010101111011111 anti-disclosure 1 -010101111011111 Keatsian 1 -010101111011111 chemical-related 1 -010101111011111 uninterruptedly 1 -010101111011111 DISINTERMEDIATION 1 -010101111011111 drought-produced 1 -010101111011111 sausagelike 1 -010101111011111 equipment-design 1 -010101111011111 arresters 1 -010101111011111 missile-repair 1 -010101111011111 wire-tapped 1 -010101111011111 post-contest 1 -010101111011111 ad-page 1 -010101111011111 Renaults 1 -010101111011111 alcohol-labeling 1 -010101111011111 sea-level 1 -010101111011111 interregulatory 1 -010101111011111 perfumer 1 -010101111011111 barrier-crash 1 -010101111011111 phase-3 1 -010101111011111 more-strident 1 -010101111011111 union-instigated 1 -010101111011111 narcotics-laws 1 -010101111011111 Catholic-Jewish 1 -010101111011111 scatalogical 1 -010101111011111 munitions-plant 1 -010101111011111 acerbically 1 -010101111011111 closed-circuit-quality 1 -010101111011111 i2 1 -010101111011111 sphincter 1 -010101111011111 surface-mining 1 -010101111011111 police-issued 1 -010101111011111 tungsten-carbide 1 -010101111011111 sacred-cow 1 -010101111011111 preexisting 1 -010101111011111 plant-cell 1 -010101111011111 market-caused 1 -010101111011111 import-tariff 1 -010101111011111 Boeing-designed 1 -010101111011111 non-sale 1 -010101111011111 steel-galvanizing 1 -010101111011111 crop-enriching 1 -010101111011111 tax-vs.-book 1 -010101111011111 ice-skate 1 -010101111011111 ore-production 1 -010101111011111 bias-related 1 -010101111011111 lung-function 1 -010101111011111 premarket 1 -010101111011111 Feb.1 1 -010101111011111 engine-mount 1 -010101111011111 fancily 1 -010101111011111 simulation-facility 1 -010101111011111 as-yet-unrecognized 1 -010101111011111 domestic-inflation 1 -010101111011111 U.S.-Israel-Egyptian 1 -010101111011111 microwave-landing-system 1 -010101111011111 debtor-relief 1 -010101111011111 procurement-overhaul 1 -010101111011111 midnight-only 1 -010101111011111 sign-ordinance 1 -010101111011111 local-station 1 -010101111011111 real-estate-venture 1 -010101111011111 Egyptian-American 2 -010101111011111 biggger 2 -010101111011111 cumene 2 -010101111011111 furtheir 2 -010101111011111 bodily-injury 2 -010101111011111 cost-effectively 2 -010101111011111 probative 2 -010101111011111 elbow-to-elbow 2 -010101111011111 shorter-than-normal 2 -010101111011111 glasnost-related 2 -010101111011111 electrolytically 2 -010101111011111 sugar-price 2 -010101111011111 wide-based 2 -010101111011111 callously 2 -010101111011111 plea-bargained 2 -010101111011111 Nimby 3 -010101111011111 moped 3 -010101111011111 twenty-one 3 -010101111011111 more-stimulative 4 -010101111011111 permanent-resident 4 -010101111011111 jovially 4 -010101111011111 widowhood 4 -010101111011111 near-limit 5 -010101111011111 microscopically 6 -010101111011111 jauntily 6 -010101111011111 Chinese-style 6 -010101111011111 barrel-for-barrel 6 -010101111011111 hairline 9 -010101111011111 rightward 10 -010101111011111 futher 11 -010101111011111 wide-scale 11 -010101111011111 currency-related 13 -010101111011111 dollar-related 15 -010101111011111 pep 41 -010101111011111 limp 59 -010101111011111 staggered 131 -010101111011111 farther 212 -010101111011111 further 11087 -010101111011111 sour 297 -01010111110000 SOFTENS 1 -01010111110000 stock-bashing 1 -01010111110000 REAFFIRMED 1 -01010111110000 restocked 1 -01010111110000 envoke 1 -01010111110000 HOISTED 1 -01010111110000 reapproaching 1 -01010111110000 refracting 1 -01010111110000 co-mingled 1 -01010111110000 plasters 1 -01010111110000 dandling 1 -01010111110000 beseeching 1 -01010111110000 slathers 1 -01010111110000 manacled 1 -01010111110000 extrapolates 1 -01010111110000 internationalizes 1 -01010111110000 flame-broils 1 -01010111110000 enraptures 1 -01010111110000 evil-tempered-toaster 1 -01010111110000 recommenced 1 -01010111110000 lobs 1 -01010111110000 leap-frogged 1 -01010111110000 suffocates 1 -01010111110000 drubs 1 -01010111110000 splays 1 -01010111110000 VOIDED 1 -01010111110000 expunges 1 -01010111110000 SWEETENED 1 -01010111110000 fufilling 1 -01010111110000 acclaims 1 -01010111110000 overdrafted 1 -01010111110000 out-Dukakising 1 -01010111110000 poor-mouthing 1 -01010111110000 jumpstarted 1 -01010111110000 unstrapped 2 -01010111110000 rolled-back 2 -01010111110000 twiddled 2 -01010111110000 BOOSTED 2 -01010111110000 aborts 2 -01010111110000 wended 2 -01010111110000 out-gunned 2 -01010111110000 unsheathing 2 -01010111110000 misdelivered 2 -01010111110000 deadened 2 -01010111110000 disordering 2 -01010111110000 relived 3 -01010111110000 prostituted 3 -01010111110000 gritted 3 -01010111110000 reassuming 3 -01010111110000 arbitraged 3 -01010111110000 re-edited 3 -01010111110000 burnishing 4 -01010111110000 mends 4 -01010111110000 discontinues 4 -01010111110000 disconcerted 4 -01010111110000 overexpanded 5 -01010111110000 publicizes 5 -01010111110000 revisiting 5 -01010111110000 bided 5 -01010111110000 renounces 5 -01010111110000 underplayed 5 -01010111110000 shirked 6 -01010111110000 rejiggered 6 -01010111110000 flexes 6 -01010111110000 allays 7 -01010111110000 stubbed 7 -01010111110000 redoubled 8 -01010111110000 comprehended 8 -01010111110000 downsized 9 -01010111110000 inactivated 9 -01010111110000 reinstituted 9 -01010111110000 curtails 9 -01010111110000 sweetens 10 -01010111110000 rears 11 -01010111110000 flexed 11 -01010111110000 underreported 11 -01010111110000 telegraphed 11 -01010111110000 redrawn 11 -01010111110000 subcontracted 12 -01010111110000 overcomes 12 -01010111110000 legitimized 12 -01010111110000 inflates 13 -01010111110000 reconfirmed 14 -01010111110000 recalculated 15 -01010111110000 overstepped 16 -01010111110000 outlived 16 -01010111110000 stoked 16 -01010111110000 revalued 16 -01010111110000 abdicated 20 -01010111110000 overshot 21 -01010111110000 redirected 22 -01010111110000 upped 23 -01010111110000 broadens 25 -01010111110000 refocused 26 -01010111110000 solidified 27 -01010111110000 reclaimed 27 -01010111110000 stiffened 27 -01010111110000 quickened 29 -01010111110000 rearranged 29 -01010111110000 monopolized 29 -01010111110000 reshuffled 31 -01010111110000 exaggerates 32 -01010111110000 evaded 36 -01010111110000 ceded 37 -01010111110000 forfeited 40 -01010111110000 tightens 48 -01010111110000 sharpened 51 -01010111110000 moderated 54 -01010111110000 toughened 55 -01010111110000 overestimated 58 -01010111110000 realigned 62 -01010111110000 loosened 73 -01010111110000 rekindled 77 -01010111110000 overhauled 78 -01010111110000 lessened 87 -01010111110000 disallowed 99 -01010111110000 relinquished 108 -01010111110000 devalued 112 -01010111110000 misrepresented 125 -01010111110000 shortened 131 -01010111110000 waived 133 -01010111110000 escalated 135 -01010111110000 rescheduled 138 -01010111110000 halved 139 -01010111110000 revamped 146 -01010111110000 pared 157 -01010111110000 curbed 161 -01010111110000 overstated 169 -01010111110000 broadened 169 -01010111110000 softened 177 -01010111110000 curtailed 205 -01010111110000 expands 219 -01010111110000 breached 258 -01010111110000 omitted 274 -01010111110000 reaffirmed 280 -01010111110000 eroded 295 -01010111110000 intensified 333 -01010111110000 affirmed 349 -01010111110000 revived 370 -01010111110000 inflated 406 -01010111110000 tightened 407 -01010111110000 upgraded 439 -01010111110000 altered 445 -01010111110000 restructured 485 -01010111110000 trimmed 487 -01010111110000 slashed 534 -01010111110000 strengthened 544 -01010111110000 downgraded 561 -01010111110000 accelerated 609 -01010111110000 amended 638 -01010111110000 lifted 732 -01010111110000 withdrew 931 -01010111110000 abandoned 969 -01010111110000 boosted 1991 -01010111110000 lowered 2064 -01010111110000 extended 2360 -01010111110000 reduced 4776 -01010111110000 raised 6447 -010101111100010 Operating-unit 1 -010101111100010 4000-point 1 -010101111100010 80-days 1 -010101111100010 550point 1 -010101111100010 Garbo-like 1 -010101111100010 PREDICT 1 -010101111100010 eye-of-newt 1 -010101111100010 ecclesiastic 1 -010101111100010 Barnum-like 1 -010101111100010 87-point 1 -010101111100010 state-orchestrated 1 -010101111100010 sextupled 1 -010101111100010 hard-resource 1 -010101111100010 1.5-pfennig 1 -010101111100010 OUTLINED 1 -010101111100010 38-point 1 -010101111100010 one-third-or 1 -010101111100010 investment-market 1 -010101111100010 inferable 1 -010101111100010 hix 1 -010101111100010 Hooveresque 1 -010101111100010 hyper-American 1 -010101111100010 per-share-earnings 1 -010101111100010 deviant 1 -010101111100010 incentive-fueled 1 -010101111100010 50-cities 1 -010101111100010 nine-fold 1 -010101111100010 compulsiveness 1 -010101111100010 snowbound 2 -010101111100010 1,237 2 -010101111100010 50-fold 2 -010101111100010 genuflects 2 -010101111100010 16-fold 2 -010101111100010 daydreaming 3 -010101111100010 ingenuously 3 -010101111100010 44-point 3 -010101111100010 deified 4 -010101111100010 twelvefold 5 -010101111100010 three-fold 6 -010101111100010 six-fold 7 -010101111100010 five-fold 15 -010101111100010 ninefold 16 -010101111100010 quintupled 26 -010101111100010 eightfold 28 -010101111100010 sevenfold 33 -010101111100010 threefold 41 -010101111100010 trebled 48 -010101111100010 fourfold 59 -010101111100010 sixfold 63 -010101111100010 tenfold 79 -010101111100010 fivefold 97 -010101111100010 quadrupled 143 -010101111100010 swelled 210 -010101111100010 shrank 244 -010101111100010 tripled 536 -010101111100010 widened 931 -010101111100010 narrowed 1099 -010101111100010 continued 7182 -010101111100010 doubled 1645 -010101111100011 KILLS 1 -010101111100011 reregistered 1 -010101111100011 revenue.The 1 -010101111100011 Reviewed 1 -010101111100011 demand-pull 1 -010101111100011 skilled-labor 1 -010101111100011 surprisedItalian 1 -010101111100011 film-looking 1 -010101111100011 generating-plant 1 -010101111100011 university-funded 1 -010101111100011 PURSUED 1 -010101111100011 Colorful 1 -010101111100011 full-height 2 -010101111100011 tooth-and-nail 2 -010101111100011 nonrecoverable 2 -010101111100011 xenon 2 -010101111100011 progestin 2 -010101111100011 artists. 2 -010101111100011 off-kilter 2 -010101111100011 liberalizes 4 -010101111100011 maximal 4 -010101111100011 misallocated 7 -010101111100011 lengthened 45 -010101111100011 decreased 462 -010101111100011 expanded 1888 -010101111100011 increased 12486 -010101111100011 improved 3021 -010101111100100 Fiberweb 1 -010101111100100 TULIPS 1 -010101111100100 WALKS 1 -010101111100100 cash-discount 1 -010101111100100 MMI. 1 -010101111100100 REPRESENT 1 -010101111100100 KNOXVILLE 1 -010101111100100 BRITANNIA 1 -010101111100100 NWIB. 1 -010101111100100 Exits 1 -010101111100100 EXPORTED 1 -010101111100100 SUSTAINS 1 -010101111100100 THUNDER 1 -010101111100100 OECD. 1 -010101111100100 Decemeber 1 -010101111100100 2727 1 -010101111100100 MIDWESTERN 1 -010101111100100 DRG. 1 -010101111100100 sur 1 -010101111100100 CONCERTS 1 -010101111100100 CIE 1 -010101111100100 PRODUCTIVITY 1 -010101111100100 COUNTS. 1 -010101111100100 REDUCES 1 -010101111100100 CONFLICTS 1 -010101111100100 Cronista 1 -010101111100100 DISTINGUISHES 1 -010101111100100 Upturn 1 -010101111100100 BOOMING 1 -010101111100100 Squandering 1 -010101111100100 EVENING 1 -010101111100100 Verenigd 1 -010101111100100 SHUFFLED 1 -010101111100100 million-ayear 1 -010101111100100 Coke-Classic 1 -010101111100100 WELCOME 1 -010101111100100 ATTRACTED 1 -010101111100100 OUTDOORSY 1 -010101111100100 TRAFFICKING 1 -010101111100100 post-authoritarian 1 -010101111100100 GEMAYEL 1 -010101111100100 BATTERED 1 -010101111100100 PRI. 1 -010101111100100 Abkhazskiy 1 -010101111100100 UNVEILS 1 -010101111100100 air-sampling 1 -010101111100100 anti-Sununu 1 -010101111100100 HUNG 1 -010101111100100 COURT. 1 -010101111100100 still-favorable 1 -010101111100100 Retrench 1 -010101111100100 16-cent 1 -010101111100100 AWARDED 1 -010101111100100 MULLS 1 -010101111100100 construction-safety 1 -010101111100100 CARES 1 -010101111100100 tight-spending 1 -010101111100100 COURTED 1 -010101111100100 SHOPPER 1 -010101111100100 REIGNED 1 -010101111100100 Loaded 1 -010101111100100 RVI. 1 -010101111100100 GUYS 1 -010101111100100 PAID. 1 -010101111100100 NCPAC. 1 -010101111100100 Rittenhouse 1 -010101111100100 WMAL 1 -010101111100100 TOA 1 -010101111100100 HAPAG 1 -010101111100100 MEXICANA 1 -010101111100100 AFRIC 1 -010101111100100 STARFISH 1 -010101111100100 BYZANTINE 1 -010101111100100 CHOCOLATES 1 -010101111100100 Tyril 1 -010101111100100 NOTE. 1 -010101111100100 WROTE 1 -010101111100100 UNDERWRITING 1 -010101111100100 CAPITOL 1 -010101111100100 TRASH. 1 -010101111100100 VIDEO. 1 -010101111100100 Cash-Rich 1 -010101111100100 LAUNCHES 1 -010101111100100 TEMPER 1 -010101111100100 OBTAINED 1 -010101111100100 Thigh-high 1 -010101111100100 BATTERY 1 -010101111100100 ENABLED 1 -010101111100100 CREATE 1 -010101111100100 COCKATOO 1 -010101111100100 TOE 1 -010101111100100 LOAN. 1 -010101111100100 IMPRESSIVE 1 -010101111100100 feed-mixing 1 -010101111100100 40-49 1 -010101111100100 Unquiet 1 -010101111100100 Jars 1 -010101111100100 HELP-WANTED 1 -010101111100100 MANDATING 1 -010101111100100 FINED 1 -010101111100100 STRENGTHENS 1 -010101111100100 IT. 1 -010101111100100 ATROCITY. 1 -010101111100100 ALTERED 1 -010101111100100 TASKS 1 -010101111100100 Hebgen 1 -010101111100100 ABDUCTED 1 -010101111100100 WOR. 1 -010101111100100 RE-ENTERED 1 -010101111100100 MEDITERRANEAN 1 -010101111100100 6-sized 1 -010101111100100 below/ 1 -010101111100100 FAHD 1 -010101111100100 easels 1 -010101111100100 FINISHED 1 -010101111100100 NETWORKS 1 -010101111100100 SUPPORTED 1 -010101111100100 TRIED 1 -010101111100100 single-used-car 1 -010101111100100 PAOLO 1 -010101111100100 SENDS 1 -010101111100100 Bait-and-Switch 1 -010101111100100 SUBMITTED 1 -010101111100100 RESPONSIBILITY 1 -010101111100100 PATROL 1 -010101111100100 Work-Study 1 -010101111100100 BANDWAGON 1 -010101111100100 People-brand 1 -010101111100100 -white 1 -010101111100100 INTENDED 1 -010101111100100 UNDERCUT 1 -010101111100100 Malivai 1 -010101111100100 ESPANOLA 1 -010101111100100 HARDLY 1 -010101111100100 LABELS 1 -010101111100100 DRI. 1 -010101111100100 STOKE 1 -010101111100100 145,831 1 -010101111100100 TRAIT 1 -010101111100100 octopus-like 1 -010101111100100 -black 1 -010101111100100 perceivable 1 -010101111100100 POLITBURO 1 -010101111100100 PLANT-CLOSINGS 1 -010101111100100 Leninism. 1 -010101111100100 RAIDED 1 -010101111100100 BROADENS 1 -010101111100100 Projets 1 -010101111100100 Angelika 1 -010101111100100 NOTION 1 -010101111100100 HEADHUNTERS 1 -010101111100100 FMP 1 -010101111100100 newly-constructed 1 -010101111100100 TRIM 1 -010101111100100 Milken. 1 -010101111100100 Dakins 1 -010101111100100 thousand-plus 1 -010101111100100 146,268 1 -010101111100100 GRINTEN 1 -010101111100100 GENERALES 1 -010101111100100 NEGATIVE 1 -010101111100100 18,715 1 -010101111100100 672,471 1 -010101111100100 CLAMPED 1 -010101111100100 certain. 1 -010101111100100 McCay 1 -010101111100100 ion-implanting 1 -010101111100100 VW-b 1 -010101111100100 TRUMAN 1 -010101111100100 SOFTENED 1 -010101111100100 POPULATION 1 -010101111100100 SEVENTH 1 -010101111100100 ULTRAFAST 1 -010101111100100 INFINITI 1 -010101111100100 JOKE. 1 -010101111100100 1/2-by-11 1 -010101111100100 KUMBLE 1 -010101111100100 DIVISION 1 -010101111100100 SPEYER 1 -010101111100100 DEVICE 1 -010101111100100 141,967 1 -010101111100100 TRIMMED 1 -010101111100100 4,072 1 -010101111100100 Plots 1 -010101111100100 INSTALLED 1 -010101111100100 THWARTED 1 -010101111100100 ALL-PURPOSE 1 -010101111100100 FREES 1 -010101111100100 TILL 1 -010101111100100 COUNTERS 1 -010101111100100 DURANT 1 -010101111100100 CARGO 1 -010101111100100 RELOCATING 1 -010101111100100 ARMY 1 -010101111100100 62,430 1 -010101111100100 138,407 1 -010101111100100 ENCOURAGED 1 -010101111100100 DRAMATIC 1 -010101111100100 DENVER-BASED 1 -010101111100100 BLUE-PENCIL 1 -010101111100100 SX. 1 -010101111100100 chalet 1 -010101111100100 11-TON 1 -010101111100100 +53.8 1 -010101111100100 48,908 1 -010101111100100 67,478 1 -010101111100100 94,151 1 -010101111100100 77,987 1 -010101111100100 101,720 1 -010101111100100 16,563 1 -010101111100100 26,224 1 -010101111100100 -67.2 1 -010101111100100 -72.7 1 -010101111100100 3,504 1 -010101111100100 23,496 1 -010101111100100 3,594,930 1 -010101111100100 2,651,496 1 -010101111100100 434,429 1 -010101111100100 KAYCLIFF 1 -010101111100100 1,533,180 1 -010101111100100 CHG 1 -010101111100100 COLUMNIST 1 -010101111100100 973,252 1 -010101111100100 POUNDED 1 -010101111100100 3,433 1 -010101111100100 LIKED 1 -010101111100100 KLLM 1 -010101111100100 Attorneys-at-Large 1 -010101111100100 non-amortizing 1 -010101111100100 IMPEACHED 1 -010101111100100 VETOED 1 -010101111100100 Bouwer 1 -010101111100100 Democratizing 1 -010101111100100 139,605 1 -010101111100100 5,525 1 -010101111100100 Amiloride 1 -010101111100100 life-in-the-year-2000 1 -010101111100100 Muncho 1 -010101111100100 SCHEDULE 1 -010101111100100 Knocked 1 -010101111100100 1/2-by-11-inch 1 -010101111100100 Software-and-service 1 -010101111100100 EASES 1 -010101111100100 environing 1 -010101111100100 SKIPPED 1 -010101111100100 hydrophones 1 -010101111100100 14,913 1 -010101111100100 4,544 1 -010101111100100 rule-like 1 -010101111100100 12,460 1 -010101111100100 18,296 1 -010101111100100 EX-OFFICIALS 1 -010101111100100 26,006 1 -010101111100100 26,029 1 -010101111100100 +113.8 1 -010101111100100 regime. 1 -010101111100100 Wastrel 1 -010101111100100 7,695,583 1 -010101111100100 3,648,178 1 -010101111100100 ZIA 1 -010101111100100 Nagorno-Karabakh. 1 -010101111100100 bid-offered 1 -010101111100100 communications- 1 -010101111100100 maudlin. 1 -010101111100100 BURNISH 1 -010101111100100 Chrysler-a 1 -010101111100100 Ford-a 1 -010101111100100 Mazda-a 1 -010101111100100 VW-a 1 -010101111100100 Honda-a 1 -010101111100100 Nissan-a 1 -010101111100100 Toyota-a 1 -010101111100100 MITSUBISHI-c 1 -010101111100100 3,821 1 -010101111100100 11,436 1 -010101111100100 8,042 1 -010101111100100 5,972,969 1 -010101111100100 3,047 1 -010101111100100 18,089 1 -010101111100100 40,285 1 -010101111100100 10,142 1 -010101111100100 13,347 1 -010101111100100 22,245 1 -010101111100100 Drogerias 1 -010101111100100 12/31/88 1 -010101111100100 Perro 1 -010101111100100 465,805 1 -010101111100100 498,621 1 -010101111100100 208,966 1 -010101111100100 Ruisdael. 1 -010101111100100 104,138 1 -010101111100100 266,630 1 -010101111100100 1,561,770 1 -010101111100100 4,215,448 1 -010101111100100 80,301 1 -010101111100100 88,723 1 -010101111100100 63,074 1 -010101111100100 49,887 1 -010101111100100 111,175 1 -010101111100100 85,029 1 -010101111100100 period. 1 -010101111100100 512,017 1 -010101111100100 1,365,631 1 -010101111100100 452,955 1 -010101111100100 373,754 1 -010101111100100 3,361,262 1 -010101111100100 SHUT 1 -010101111100100 2,280,626 1 -010101111100100 60,947 1 -010101111100100 78,391 1 -010101111100100 42,192 1 -010101111100100 57,935 1 -010101111100100 111,888 1 -010101111100100 211,247 1 -010101111100100 109,477 1 -010101111100100 1,162,611 1 -010101111100100 Cars-a 1 -010101111100100 101,817 1 -010101111100100 3,028,467 1 -010101111100100 479,746 1 -010101111100100 41,071 1 -010101111100100 84,387 1 -010101111100100 Composer/Orchestra 1 -010101111100100 Pripps 1 -010101111100100 ESCAPED 1 -010101111100100 out-plunging 1 -010101111100100 Quickie 1 -010101111100100 bitch-goddess 1 -010101111100100 non-Italian-looking 1 -010101111100100 Corp./Central 1 -010101111100100 Pepper/Seven 1 -010101111100100 134,924 1 -010101111100100 Nissan- 1 -010101111100100 7,454 1 -010101111100100 LAUNCHER 1 -010101111100100 Missile-warning 1 -010101111100100 BGR 1 -010101111100100 7,227 1 -010101111100100 32,372 1 -010101111100100 price-47 1 -010101111100100 RULERS 1 -010101111100100 TUNGSTEN 1 -010101111100100 DISPLAYED 1 -010101111100100 SETTING 1 -010101111100100 -10.3 1 -010101111100100 MAVERICK 1 -010101111100100 29,710 1 -010101111100100 +0.5 1 -010101111100100 ELWOOD 1 -010101111100100 UPROAR 1 -010101111100100 EXTRAVAGANZA 1 -010101111100100 WWL-TV 1 -010101111100100 TURNS 1 -010101111100100 PROMOTE 1 -010101111100100 SIMPLIFY 1 -010101111100100 All-You-Can-Eat 1 -010101111100100 COPY 1 -010101111100100 -34.4 1 -010101111100100 +23.8 1 -010101111100100 +28.3 1 -010101111100100 +39.7 1 -010101111100100 +14.3 1 -010101111100100 +14.7 1 -010101111100100 +19.5 1 -010101111100100 +108 1 -010101111100100 Abortions 1 -010101111100100 SEIZES 1 -010101111100100 LISA 1 -010101111100100 UPON 1 -010101111100100 Changjang 1 -010101111100100 DVM 1 -010101111100100 Langrehr 1 -010101111100100 matif 1 -010101111100100 INFRARED 1 -010101111100100 KISZCZAK 1 -010101111100100 THROUGH 1 -010101111100100 OBSCURE 1 -010101111100100 CORP 2 -010101111100100 KWIK 2 -010101111100100 RETURNED 2 -010101111100100 filler-cap 2 -010101111100100 SUSPECT 2 -010101111100100 Chand 2 -010101111100100 89,396 2 -010101111100100 AUTHORIZED 2 -010101111100100 URGES 2 -010101111100100 Showbiz 2 -010101111100100 LM 2 -010101111100100 -financing 2 -010101111100100 post-1979 2 -010101111100100 LOCATION 2 -010101111100100 Gonna 2 -010101111100100 Contl 2 -010101111100100 80,000-seat 2 -010101111100100 OTOMOBIL 2 -010101111100100 -14.5 2 -010101111100100 Industrikredit 2 -010101111100100 ALIENS 2 -010101111100100 APPROVES 2 -010101111100100 WORTH 2 -010101111100100 PRECISELY 2 -010101111100100 -10.2 2 -010101111100100 Signor 2 -010101111100100 DONE 2 -010101111100100 NOMINATION 2 -010101111100100 RAISED 2 -010101111100100 SIMPLE 2 -010101111100100 Defends 2 -010101111100100 WRITES 2 -010101111100100 NOMINATED 2 -010101111100100 DESCRIBED 2 -010101111100100 CAPTURED 2 -010101111100100 DEBATED 2 -010101111100100 Crispy 2 -010101111100100 Panty 2 -010101111100100 LIFTED 2 -010101111100100 Multi-Action 2 -010101111100100 HOLDS 2 -010101111100100 NAPA 2 -010101111100100 WITHHELD 2 -010101111100100 PAN. 2 -010101111100100 LARGEST 2 -010101111100100 ERA. 2 -010101111100100 INCREASE 2 -010101111100100 4,600-page 2 -010101111100100 then-fledgling 2 -010101111100100 CID. 2 -010101111100100 Stimulate 2 -010101111100100 EXTEND 2 -010101111100100 REJECTS 2 -010101111100100 soon-to-debut 2 -010101111100100 Reassess 2 -010101111100100 SIT 2 -010101111100100 sky-lit 2 -010101111100100 Multi 2 -010101111100100 SVERIGE 2 -010101111100100 PRESSES 2 -010101111100100 SURVIVED 2 -010101111100100 waybill 2 -010101111100100 Clarify 2 -010101111100100 GROCERY 2 -010101111100100 SEES 2 -010101111100100 ACCELERATE 2 -010101111100100 Vinh 2 -010101111100100 FUNDS. 2 -010101111100100 Pregnancies 2 -010101111100100 SCORES 2 -010101111100100 TENANTS 2 -010101111100100 POSTED 2 -010101111100100 Yugo-b 3 -010101111100100 DIVIDE 3 -010101111100100 Daihatsu-b 3 -010101111100100 Porsche-b 3 -010101111100100 e-Melville 3 -010101111100100 d-May 3 -010101111100100 c-Sears 3 -010101111100100 f-Limited 3 -010101111100100 g-Ames 3 -010101111100100 MEET 3 -010101111100100 GOES 3 -010101111100100 M.V. 3 -010101111100100 BIGGEST 3 -010101111100100 Fncl 3 -010101111100100 PMDB. 3 -010101111100100 Subtotals 3 -010101111100100 Restructure 3 -010101111100100 Topped 3 -010101111100100 EXTENDED 3 -010101111100100 JOINS 3 -010101111100100 KNEW 3 -010101111100100 a-Includes 3 -010101111100100 TRANSFER 3 -010101111100100 LOSING 3 -010101111100100 pre-divestiture 3 -010101111100100 POSTPONED 3 -010101111100100 STANDARDS 3 -010101111100100 JOINED 3 -010101111100100 Scimed 3 -010101111100100 JFA 3 -010101111100100 DROPPED 3 -010101111100100 Tyrannosaurus 3 -010101111100100 Cross-Blue 3 -010101111100100 Galeries 3 -010101111100100 ICC. 3 -010101111100100 KEEPS 3 -010101111100100 TEAMS 3 -010101111100100 Quarry 3 -010101111100100 EASE 3 -010101111100100 ENTERED 3 -010101111100100 DAMAGED 3 -010101111100100 close-in 3 -010101111100100 Redneck 3 -010101111100100 CRITICIZED 3 -010101111100100 REIT. 3 -010101111100100 EXPELLED 3 -010101111100100 million.The 3 -010101111100100 Hokey-Pokey 3 -010101111100100 FREED 3 -010101111100100 COMMUNISTS 3 -010101111100100 150-room 3 -010101111100100 UNO. 3 -010101111100100 LEADS 3 -010101111100100 FIND 4 -010101111100100 TAKES 4 -010101111100100 NRC. 4 -010101111100100 9,450 4 -010101111100100 CSX. 4 -010101111100100 800-unit 4 -010101111100100 aux 4 -010101111100100 ASKED 4 -010101111100100 COMPLETED 4 -010101111100100 INCOME. 4 -010101111100100 commons 4 -010101111100100 MAKES 4 -010101111100100 Residencies 4 -010101111100100 RENEWED 5 -010101111100100 PUERTO 5 -010101111100100 FCC. 5 -010101111100100 TOTALS 5 -010101111100100 SUBTOTALS 5 -010101111100100 KGB. 5 -010101111100100 INC 5 -010101111100100 ANC. 5 -010101111100100 BULL 5 -010101111100100 ELECTED 5 -010101111100100 THOUGHT 5 -010101111100100 CLOSED 5 -010101111100100 GETS 5 -010101111100100 SELL 5 -010101111100100 TOOK 5 -010101111100100 post-1997 6 -010101111100100 MADE 6 -010101111100100 ALSO 6 -010101111100100 z 6 -010101111100100 THAN 6 -010101111100100 FAA. 6 -010101111100100 DEFIED 6 -010101111100100 ACCUSED 6 -010101111100100 INS. 6 -010101111100100 DISMISSED 6 -010101111100100 LEAD 6 -010101111100100 THINK 7 -010101111100100 NAMED 7 -010101111100100 LONSDALE 7 -010101111100100 WINS 7 -010101111100100 HIT 7 -010101111100100 EMS. 7 -010101111100100 GIVE 8 -010101111100100 CLEARED 8 -010101111100100 SEE 8 -010101111100100 Draw 8 -010101111100100 FEAR 8 -010101111100100 FOUND 8 -010101111100100 ENDED 8 -010101111100100 WOULD 8 -010101111100100 KEEP 9 -010101111100100 ACCEPTED 9 -010101111100100 LOST 9 -010101111100100 FACE 9 -010101111100100 Cross/Blue 9 -010101111100100 SAYS 10 -010101111100100 HAD 11 -010101111100100 Become 11 -010101111100100 EC. 11 -010101111100100 FDIC. 12 -010101111100100 PER 13 -010101111100100 Reflects 14 -010101111100100 IMF. 15 -010101111100100 PROPOSED 16 -010101111100100 GET 16 -010101111100100 Sing 16 -010101111100100 URGED 18 -010101111100100 not-too-distant 19 -010101111100100 INDUSTRY 21 -010101111100100 forseeable 24 -010101111100100 Gets 24 -010101111100100 BE 34 -010101111100100 SEC. 49 -010101111100100 L.M. 69 -010101111100100 Includes 86 -010101111100100 WAS 88 -010101111100100 overlooking 133 -010101111100100 foreseeable 181 -010101111100100 en 205 -010101111100100 Dalkon 359 -010101111100100 * 424 -010101111100100 OF 482 -010101111100100 'S 955 -010101111100100 near 4957 -010101111100100 @ 1356 -0101011111001010 Originale 1 -0101011111001010 Pembrokeshire 1 -0101011111001010 Ososky 1 -0101011111001010 Wildcatter 1 -0101011111001010 lower-case 1 -0101011111001010 Safetytech 1 -0101011111001010 Dillenia 1 -0101011111001010 preemptively 1 -0101011111001010 post-Roe 1 -0101011111001010 nigger-loving 1 -0101011111001010 NTEU 1 -0101011111001010 1,270-acre 1 -0101011111001010 8256C 1 -0101011111001010 oki 1 -0101011111001010 Internationalism 1 -0101011111001010 Vanna. 1 -0101011111001010 Panagiotis 1 -0101011111001010 implementations 1 -0101011111001010 buah 1 -0101011111001010 Froot 1 -0101011111001010 white-wine 1 -0101011111001010 alle 1 -0101011111001010 Fullilove 1 -0101011111001010 Kota 1 -0101011111001010 Hansjoerg 1 -0101011111001010 Lemmings 1 -0101011111001010 va-va-voom 1 -0101011111001010 surnamed 1 -0101011111001010 Blackledge 1 -0101011111001010 you-can't-be-serious 1 -0101011111001010 Pippi 1 -0101011111001010 Hirudo 1 -0101011111001010 semicomatose 1 -0101011111001010 boathouse 1 -0101011111001010 2,865 1 -0101011111001010 Calero-Toledo 1 -0101011111001010 higher-priced-and 1 -0101011111001010 androgenetic 1 -0101011111001010 irrationalist 1 -0101011111001010 60-passenger 1 -0101011111001010 Narcisa 1 -0101011111001010 +9.7 1 -0101011111001010 Shapour 1 -0101011111001010 unstimulated 1 -0101011111001010 Katsura 1 -0101011111001010 Rondanini 1 -0101011111001010 chocolate-scented 1 -0101011111001010 Byon 1 -0101011111001010 Cruzan 1 -0101011111001010 Preseault 1 -0101011111001010 futures-driven 1 -0101011111001010 Hungarian-gypsy 1 -0101011111001010 Tidy 1 -0101011111001010 Clardy 1 -0101011111001010 McGonagle 1 -0101011111001010 once-ignored 1 -0101011111001010 Chenopodium 1 -0101011111001010 Nejat 1 -0101011111001010 Dumri 1 -0101011111001010 mid-game 1 -0101011111001010 Breedlove 1 -0101011111001010 represses 1 -0101011111001010 Norddeutscher 1 -0101011111001010 Togh 1 -0101011111001010 prostrated 2 -0101011111001010 Ampara 2 -0101011111001010 co-located 2 -0101011111001010 ths 2 -0101011111001010 Pseudomonas 2 -0101011111001010 sacramental 3 -0101011111001010 Boilermakers 3 -0101011111001010 corking 3 -0101011111001010 constr. 3 -0101011111001010 bldg. 3 -0101011111001010 c' 3 -0101011111001010 pivoting 3 -0101011111001010 short-staffed 3 -0101011111001010 1,358 3 -0101011111001010 KMT. 3 -0101011111001010 cannabis 3 -0101011111001010 renegotiates 3 -0101011111001010 Pliny 3 -0101011111001010 Barneveld 3 -0101011111001010 pre-eminently 4 -0101011111001010 C-plus 4 -0101011111001010 400-plus 4 -0101011111001010 pouting 4 -0101011111001010 off-camera 4 -0101011111001010 untethered 4 -0101011111001010 strong-armed 4 -0101011111001010 schizoid 4 -0101011111001010 .400 4 -0101011111001010 defrocked 5 -0101011111001010 brutalizing 5 -0101011111001010 jazzier 5 -0101011111001010 Pennell 5 -0101011111001010 Plessy 5 -0101011111001010 backlogged 5 -0101011111001010 miscalculating 5 -0101011111001010 nonideological 5 -0101011111001010 disbelieving 6 -0101011111001010 authenticated 6 -0101011111001010 vis 6 -0101011111001010 Chat 7 -0101011111001010 arching 7 -0101011111001010 headlining 7 -0101011111001010 radiating 7 -0101011111001010 sprained 8 -0101011111001010 oversimplified 8 -0101011111001010 twinkling 8 -0101011111001010 Deck 9 -0101011111001010 Delphic 9 -0101011111001010 exonerating 9 -0101011111001010 Perce 9 -0101011111001010 re 10 -0101011111001010 Kemner 10 -0101011111001010 Y' 10 -0101011111001010 bleeping 10 -0101011111001010 adored 10 -0101011111001010 unhinged 11 -0101011111001010 superseding 11 -0101011111001010 o 11 -0101011111001010 whirling 12 -0101011111001010 solder 13 -0101011111001010 resplendent 13 -0101011111001010 scripted 14 -0101011111001010 capsized 14 -0101011111001010 premiering 15 -0101011111001010 n' 15 -0101011111001010 kneeling 15 -0101011111001010 sculpted 16 -0101011111001010 telexed 16 -0101011111001010 indentured 16 -0101011111001010 B.A. 16 -0101011111001010 thumping 16 -0101011111001010 photocopied 16 -0101011111001010 arched 16 -0101011111001010 Oskar 16 -0101011111001010 blaring 19 -0101011111001010 C' 20 -0101011111001010 meandering 20 -0101011111001010 respecting 21 -0101011111001010 billowing 22 -0101011111001010 Hun 23 -0101011111001010 Merlin 24 -0101011111001010 cushioning 25 -0101011111001010 ballyhooed 27 -0101011111001010 festering 27 -0101011111001010 paralyzing 29 -0101011111001010 tape-recorded 33 -0101011111001010 admiring 37 -0101011111001010 rotting 38 -0101011111001010 botched 42 -0101011111001010 trusting 42 -0101011111001010 unmatched 44 -0101011111001010 shattering 45 -0101011111001010 typed 46 -0101011111001010 shredded 47 -0101011111001010 mishandled 48 -0101011111001010 contrasting 49 -0101011111001010 floundering 49 -0101011111001010 Ming 50 -0101011111001010 gripping 61 -0101011111001010 hijacked 62 -0101011111001010 dot 65 -0101011111001010 haunting 66 -0101011111001010 dreaded 69 -0101011111001010 piecemeal 96 -0101011111001010 deposed 135 -0101011111001010 taped 136 -0101011111001010 coveted 139 -0101011111001010 looming 147 -0101011111001010 departing 171 -0101011111001010 outlawed 172 -0101011111001010 contested 285 -0101011111001010 scattered 303 -0101011111001010 celebrated 315 -0101011111001010 pronounced 327 -0101011111001010 bearing 455 -0101011111001010 printed 498 -0101011111001010 governing 580 -0101011111001010 disputed 693 -0101011111001010 repeated 1117 -0101011111001010 retired 2053 -0101011111001010 pending 3042 -0101011111001010 -LCB- 4150 -0101011111001011 star-television 1 -0101011111001011 exchange-of-trade 1 -0101011111001011 236,515,128 1 -0101011111001011 ship-pricing 1 -0101011111001011 dose-response 1 -0101011111001011 2,116,000 1 -0101011111001011 already-reeling 1 -0101011111001011 income-tax-return 1 -0101011111001011 value-increasing 1 -0101011111001011 flight-scheduling 1 -0101011111001011 technical-minded 1 -0101011111001011 107,163 1 -0101011111001011 2,269,000 1 -0101011111001011 3,161,900 1 -0101011111001011 annualizing 1 -0101011111001011 as-yet-unordered 1 -0101011111001011 E/S 1 -0101011111001011 heart-monitor 1 -0101011111001011 Communist-infiltrated 1 -0101011111001011 hospital-bond 1 -0101011111001011 tax-fighting 1 -0101011111001011 little-visited 1 -0101011111001011 97.89 1 -0101011111001011 reframing 1 -0101011111001011 child-resistant 1 -0101011111001011 state-related 1 -0101011111001011 telephone-supported 1 -0101011111001011 85-foot 1 -0101011111001011 2,307,000 1 -0101011111001011 not-so-shimmering 1 -0101011111001011 non-stolen 1 -0101011111001011 now-departed 1 -0101011111001011 private-network 1 -0101011111001011 product-usage 1 -0101011111001011 youth-organization 1 -0101011111001011 health-use 1 -0101011111001011 gadgeteer 1 -0101011111001011 non-Southam 1 -0101011111001011 stretch-drive 1 -0101011111001011 athletic-conference 1 -0101011111001011 baseball-playing 1 -0101011111001011 terrorist-sponsoring 1 -0101011111001011 health-survey 1 -0101011111001011 business-sector 1 -0101011111001011 federal-agency 1 -0101011111001011 1,978,900 1 -0101011111001011 eighth-generation 1 -0101011111001011 3,001 1 -0101011111001011 co 1 -0101011111001011 sports-franchise 1 -0101011111001011 --including 1 -0101011111001011 desalted 1 -0101011111001011 tax-account 1 -0101011111001011 Love-appointed 1 -0101011111001011 ill-sorted 1 -0101011111001011 emotional-support 1 -0101011111001011 2,607,900 1 -0101011111001011 enciphered 1 -0101011111001011 3,064,900 1 -0101011111001011 3,040,600 1 -0101011111001011 WSTS 1 -0101011111001011 Telerate-supplied 1 -0101011111001011 2,103 1 -0101011111001011 talent/potential 1 -0101011111001011 poising 1 -0101011111001011 Fleet-appointed 1 -0101011111001011 funeral-parlor 1 -0101011111001011 often-cryptic 1 -0101011111001011 harness-shop 1 -0101011111001011 longer-serving 1 -0101011111001011 raw-crude 1 -0101011111001011 PHInet 1 -0101011111001011 1,689,800 1 -0101011111001011 465,465,565 1 -0101011111001011 28,415 1 -0101011111001011 Marcos-linked 1 -0101011111001011 1,350-person 1 -0101011111001011 beachfront-property 1 -0101011111001011 board-meeting 1 -0101011111001011 30,697 1 -0101011111001011 scanting 1 -0101011111001011 once-prominent 1 -0101011111001011 exmerger 1 -0101011111001011 sidewalk-paving 1 -0101011111001011 Maxxam-sponsored 1 -0101011111001011 seismological 1 -0101011111001011 ting 1 -0101011111001011 10,291 1 -0101011111001011 174,316 1 -0101011111001011 sugarbush 1 -0101011111001011 3,290,476 1 -0101011111001011 pro-Macy 1 -0101011111001011 difficult-to-forecast 1 -0101011111001011 theater-force 1 -0101011111001011 46,087 1 -0101011111001011 old-house 1 -0101011111001011 rom 1 -0101011111001011 collates 1 -0101011111001011 admissions-related 1 -0101011111001011 anti-Ford 1 -0101011111001011 Turnerian 1 -0101011111001011 placates 1 -0101011111001011 6,594,876 1 -0101011111001011 1,011,222 1 -0101011111001011 one-third-mile-long 1 -0101011111001011 erawhere 1 -0101011111001011 computer-stored 1 -0101011111001011 older-car 1 -0101011111001011 18,267 1 -0101011111001011 system-neutral 1 -0101011111001011 ever-dangerous 1 -0101011111001011 68,775,524 1 -0101011111001011 3,352,674 1 -0101011111001011 management-appointed 1 -0101011111001011 claims-loss 1 -0101011111001011 2,196,000 1 -0101011111001011 ex-Skandinaviska 1 -0101011111001011 rooming-house 1 -0101011111001011 eye-numbing 1 -0101011111001011 287,00 1 -0101011111001011 old-maidenly 1 -0101011111001011 insurance-statistical 1 -0101011111001011 vacation-home 1 -0101011111001011 car-company 1 -0101011111001011 home-front 1 -0101011111001011 on-the-ground 2 -0101011111001011 967,508 2 -0101011111001011 television-commercial 2 -0101011111001011 supplyside 2 -0101011111001011 geochemical 2 -0101011111001011 All-Tame 2 -0101011111001011 critiquing 2 -0101011111001011 automatic-shift 2 -0101011111001011 electronic-market 2 -0101011111001011 wardroom 2 -0101011111001011 Arabic-speaking 2 -0101011111001011 order-imbalance 2 -0101011111001011 ABN/LaSalle 2 -0101011111001011 Sandinista-controlled 2 -0101011111001011 CD-based 2 -0101011111001011 fu 2 -0101011111001011 2,251,000 2 -0101011111001011 inelegant 2 -0101011111001011 radar-detector 2 -0101011111001011 staining 3 -0101011111001011 unrehearsed 3 -0101011111001011 defaming 3 -0101011111001011 patroling 3 -0101011111001011 EMS-style 3 -0101011111001011 Lynyrd 3 -0101011111001011 working-interest 3 -0101011111001011 privatizes 3 -0101011111001011 university-educated 4 -0101011111001011 Conestoga 4 -0101011111001011 bespoke 5 -0101011111001011 importuning 5 -0101011111001011 Nadia 6 -0101011111001011 Sulgrave 6 -0101011111001011 IRAS 7 -0101011111001011 avenging 7 -0101011111001011 satellite-dish 7 -0101011111001011 traversing 7 -0101011111001011 encircling 8 -0101011111001011 cable-operator 8 -0101011111001011 humbler 8 -0101011111001011 Moldavian 9 -0101011111001011 saluting 11 -0101011111001011 overhanging 21 -0101011111001011 invading 83 -0101011111001011 nonpublic 122 -0101011111001011 accompanying 435 -0101011111001011 outside 6293 -0101011111001011 inside 2200 -010101111100110 inverting 1 -010101111100110 laqgging 1 -010101111100110 such/A 1 -010101111100110 pilotline 1 -010101111100110 already-increasing 1 -010101111100110 below-replacement 1 -010101111100110 noisome 1 -010101111100110 one-price 1 -010101111100110 super-smooth 1 -010101111100110 89,300 1 -010101111100110 positive-looking 1 -010101111100110 undulate 1 -010101111100110 problem-preventive 1 -010101111100110 inclining 1 -010101111100110 commodityprice 1 -010101111100110 low-balling 2 -010101111100110 repacked 2 -010101111100110 polysyllabic 2 -010101111100110 underplaying 2 -010101111100110 TMA 2 -010101111100110 downturned 2 -010101111100110 puissant 2 -010101111100110 twoway 2 -010101111100110 cresting 2 -010101111100110 1,002 2 -010101111100110 swearword 3 -010101111100110 reflating 3 -010101111100110 hocking 3 -010101111100110 larding 3 -010101111100110 encumbering 3 -010101111100110 Eurocentric 3 -010101111100110 1,108 3 -010101111100110 1,122 3 -010101111100110 contorting 3 -010101111100110 pro-active 3 -010101111100110 abets 3 -010101111100110 non-Steelworker 3 -010101111100110 1,047 3 -010101111100110 unravelling 4 -010101111100110 decimating 4 -010101111100110 export-sensitive 4 -010101111100110 wedging 4 -010101111100110 re-emerging 4 -010101111100110 unscrew 4 -010101111100110 bureaucratized 4 -010101111100110 hallucinating 4 -010101111100110 low-value 4 -010101111100110 internationalizing 5 -010101111100110 rubber-stamping 5 -010101111100110 frostbite 5 -010101111100110 superstrong 5 -010101111100110 2110 5 -010101111100110 cartelized 5 -010101111100110 rounder 5 -010101111100110 1,041 6 -010101111100110 spiralling 6 -010101111100110 contractionary 6 -010101111100110 pillaging 6 -010101111100110 unimpaired 6 -010101111100110 resurging 6 -010101111100110 clobbering 6 -010101111100110 televising 6 -010101111100110 ever-stronger 7 -010101111100110 fracturing 7 -010101111100110 dulling 7 -010101111100110 unredeemed 7 -010101111100110 fragmenting 8 -010101111100110 throttling 8 -010101111100110 shriveling 8 -010101111100110 overselling 8 -010101111100110 reallocating 8 -010101111100110 degenerating 9 -010101111100110 abdicating 10 -010101111100110 deflating 11 -010101111100110 disengaging 11 -010101111100110 vibrating 11 -010101111100110 dissipating 12 -010101111100110 solidifying 13 -010101111100110 disintegrating 13 -010101111100110 thawing 13 -010101111100110 reigniting 13 -010101111100110 unchanging 14 -010101111100110 ravaging 14 -010101111100110 prying 15 -010101111100110 seesawing 15 -010101111100110 sapping 16 -010101111100110 intruding 16 -010101111100110 buffeting 16 -010101111100110 rationalizing 16 -010101111100110 unhedged 16 -010101111100110 rocketing 17 -010101111100110 trampling 18 -010101111100110 decelerating 18 -010101111100110 crimping 19 -010101111100110 slimming 19 -010101111100110 brightening 20 -010101111100110 gyrating 20 -010101111100110 undervaluing 21 -010101111100110 dimming 22 -010101111100110 constraining 24 -010101111100110 mushrooming 25 -010101111100110 galloping 25 -010101111100110 mitigating 25 -010101111100110 sharpening 26 -010101111100110 stiffening 28 -010101111100110 disarming 29 -010101111100110 piercing 31 -010101111100110 blurring 31 -010101111100110 grinning 31 -010101111100110 toughening 31 -010101111100110 rekindling 32 -010101111100110 ebbing 33 -010101111100110 smoothing 35 -010101111100110 spurting 35 -010101111100110 depreciating 35 -010101111100110 stagnating 40 -010101111100110 multiplying 40 -010101111100110 receding 42 -010101111100110 heightening 44 -010101111100110 licking 45 -010101111100110 compounding 45 -010101111100110 lengthening 45 -010101111100110 ballooning 48 -010101111100110 accruing 51 -010101111100110 refocusing 53 -010101111100110 damping 55 -010101111100110 shortening 56 -010101111100110 exhausting 57 -010101111100110 calming 60 -010101111100110 appreciating 61 -010101111100110 subtracting 63 -010101111100110 stifling 64 -010101111100110 spiraling 65 -010101111100110 moderating 67 -010101111100110 fluctuating 70 -010101111100110 paring 75 -010101111100110 dipping 78 -010101111100110 exploding 85 -010101111100110 roaring 93 -010101111100110 draining 95 -010101111100110 relaxing 103 -010101111100110 skyrocketing 106 -010101111100110 evolving 110 -010101111100110 collapsing 116 -010101111100110 decreasing 118 -010101111100110 disappearing 123 -010101111100110 plummeting 131 -010101111100110 eroding 138 -010101111100110 swelling 139 -010101111100110 diversifying 147 -010101111100110 intensifying 152 -010101111100110 fading 154 -010101111100110 firming 155 -010101111100110 broadening 157 -010101111100110 overheating 158 -010101111100110 freezing 171 -010101111100110 diminishing 184 -010101111100110 tumbling 199 -010101111100110 rebounding 213 -010101111100110 sliding 220 -010101111100110 stimulating 222 -010101111100110 slashing 240 -010101111100110 depressing 242 -010101111100110 worsening 244 -010101111100110 slumping 260 -010101111100110 trimming 265 -010101111100110 stabilizing 269 -010101111100110 escalating 270 -010101111100110 lagging 280 -010101111100110 slipping 292 -010101111100110 plunging 350 -010101111100110 recovering 392 -010101111100110 accelerating 407 -010101111100110 surging 415 -010101111100110 approaching 460 -010101111100110 shifting 494 -010101111100110 climbing 494 -010101111100110 strengthening 518 -010101111100110 advancing 557 -010101111100110 weakening 579 -010101111100110 lowering 582 -010101111100110 shrinking 621 -010101111100110 soaring 689 -010101111100110 dropping 935 -010101111100110 slowing 986 -010101111100110 improving 1299 -010101111100110 declining 1950 -010101111100110 expanding 1984 -010101111100110 changing 2014 -010101111100110 cutting 2220 -010101111100110 falling 2690 -010101111100110 increasing 4634 -010101111100110 rising 4804 -010101111100111 DeBartolo-led 1 -010101111100111 over-extending 1 -010101111100111 Bass/Taft 1 -010101111100111 formeda 1 -010101111100111 untelegenic 1 -010101111100111 return-mail 1 -010101111100111 export-fed 1 -010101111100111 skewering 1 -010101111100111 undiverse 1 -010101111100111 Manville-funded 1 -010101111100111 testamentary 1 -010101111100111 patient-doctor 1 -010101111100111 well-performing 1 -010101111100111 cash-funded 1 -010101111100111 peanut-buying 1 -010101111100111 community-owned 1 -010101111100111 interstellar 1 -010101111100111 mortgage-owning 1 -010101111100111 public-benefit 1 -010101111100111 reckless-disregard 1 -010101111100111 domestic-minded 1 -010101111100111 anti-investment 1 -010101111100111 enflamed 2 -010101111100111 revsied 2 -010101111100111 multidisciplinary 2 -010101111100111 unbolting 2 -010101111100111 caramel-colored 2 -010101111100111 Bilzerian-led 2 -010101111100111 integrated-services 2 -010101111100111 dividend-received 2 -010101111100111 demonetized 2 -010101111100111 3-cent 2 -010101111100111 Stern-Barovsky 2 -010101111100111 beautify 2 -010101111100111 anti-totalitarian 2 -010101111100111 nontransferrable 2 -010101111100111 20-80 2 -010101111100111 counterfeited 2 -010101111100111 scale-up 2 -010101111100111 republished 2 -010101111100111 nonpreventable 2 -010101111100111 people-sensitive 2 -010101111100111 personal-services 2 -010101111100111 EPZ 2 -010101111100111 de-regulated 2 -010101111100111 overcapitalized 3 -010101111100111 dual-trading 3 -010101111100111 back-breaking 3 -010101111100111 public/private 3 -010101111100111 bazooka 3 -010101111100111 demarcated 3 -010101111100111 test-driven 3 -010101111100111 22-foot 3 -010101111100111 bossed 3 -010101111100111 well-regulated 4 -010101111100111 bracketed 4 -010101111100111 Mesa-led 4 -010101111100111 self-initiated 4 -010101111100111 hand-built 4 -010101111100111 restaged 4 -010101111100111 23-13 4 -010101111100111 well-supported 5 -010101111100111 grooved 5 -010101111100111 ghost-written 5 -010101111100111 cuffed 5 -010101111100111 anti-Stalinist 5 -010101111100111 useable 5 -010101111100111 annointed 5 -010101111100111 re-engineered 5 -010101111100111 grained 5 -010101111100111 unbound 5 -010101111100111 unleavened 5 -010101111100111 dirt-cheap 5 -010101111100111 unserved 5 -010101111100111 smudged 5 -010101111100111 scalped 5 -010101111100111 redeveloped 6 -010101111100111 sensationalized 6 -010101111100111 redecorated 6 -010101111100111 unconverted 6 -010101111100111 well-controlled 6 -010101111100111 perforated 7 -010101111100111 growling 7 -010101111100111 degradable 7 -010101111100111 acidified 7 -010101111100111 skinned 7 -010101111100111 reconfigured 7 -010101111100111 unshackled 7 -010101111100111 unleveraged 7 -010101111100111 remitted 8 -010101111100111 annotated 8 -010101111100111 diced 8 -010101111100111 alloted 8 -010101111100111 bartered 8 -010101111100111 dehumanized 8 -010101111100111 dual-purpose 8 -010101111100111 slotted 8 -010101111100111 hand-delivered 8 -010101111100111 mumbling 8 -010101111100111 jilted 9 -010101111100111 numbed 9 -010101111100111 untainted 9 -010101111100111 throttled 9 -010101111100111 unsaleable 9 -010101111100111 deactivated 9 -010101111100111 SEPP 9 -010101111100111 thought-out 11 -010101111100111 decontrolled 11 -010101111100111 peer-reviewed 11 -010101111100111 milled 11 -010101111100111 rotted 11 -010101111100111 calibrated 11 -010101111100111 gerrymandered 11 -010101111100111 whitewashed 11 -010101111100111 overstocked 12 -010101111100111 differentiated 12 -010101111100111 pulverized 12 -010101111100111 debased 12 -010101111100111 trademarked 12 -010101111100111 warehoused 12 -010101111100111 perverted 13 -010101111100111 veto-proof 13 -010101111100111 synchronized 13 -010101111100111 confiscatory 14 -010101111100111 diffused 14 -010101111100111 unsurpassed 14 -010101111100111 unhindered 14 -010101111100111 glorified 15 -010101111100111 disheartened 15 -010101111100111 refitted 15 -010101111100111 glazed 16 -010101111100111 stooped 16 -010101111100111 mangled 16 -010101111100111 warped 17 -010101111100111 shaded 17 -010101111100111 declassified 18 -010101111100111 camouflaged 18 -010101111100111 corroded 19 -010101111100111 constricted 19 -010101111100111 reinvigorated 20 -010101111100111 flatter 20 -010101111100111 tormented 20 -010101111100111 electrified 21 -010101111100111 prorated 21 -010101111100111 blackened 22 -010101111100111 degraded 22 -010101111100111 accented 23 -010101111100111 bonded 24 -010101111100111 retooled 24 -010101111100111 circumscribed 26 -010101111100111 fertilized 26 -010101111100111 reconstructed 26 -010101111100111 maligned 27 -010101111100111 tardy 27 -010101111100111 unprotected 28 -010101111100111 disgorged 28 -010101111100111 charmed 28 -010101111100111 reformulated 29 -010101111100111 uncollectible 29 -010101111100111 chastened 29 -010101111100111 doctored 29 -010101111100111 mortgaged 30 -010101111100111 submerged 30 -010101111100111 rejuvenated 31 -010101111100111 charred 32 -010101111100111 scorched 33 -010101111100111 expropriated 33 -010101111100111 bungled 33 -010101111100111 inflamed 34 -010101111100111 bemused 34 -010101111100111 forgone 34 -010101111100111 shuttered 36 -010101111100111 soiled 36 -010101111100111 prejudiced 37 -010101111100111 condensed 37 -010101111100111 repressed 38 -010101111100111 depreciated 38 -010101111100111 unencumbered 39 -010101111100111 deflated 41 -010101111100111 repackaged 41 -010101111100111 repossessed 42 -010101111100111 imperiled 42 -010101111100111 polarized 43 -010101111100111 overfunded 43 -010101111100111 illuminated 46 -010101111100111 fractured 46 -010101111100111 pooled 47 -010101111100111 grilled 48 -010101111100111 mothballed 48 -010101111100111 underpaid 49 -010101111100111 boxed 49 -010101111100111 prepaid 49 -010101111100111 immunized 49 -010101111100111 abiding 50 -010101111100111 contrived 52 -010101111100111 handpicked 52 -010101111100111 legislated 52 -010101111100111 enclosed 54 -010101111100111 hurried 54 -010101111100111 demoralized 54 -010101111100111 refundable 56 -010101111100111 refurbished 57 -010101111100111 reformed 59 -010101111100111 revitalized 59 -010101111100111 hard-hit 60 -010101111100111 enriched 61 -010101111100111 videotaped 62 -010101111100111 legalized 63 -010101111100111 usable 64 -010101111100111 recoverable 65 -010101111100111 renewable 66 -010101111100111 modernized 67 -010101111100111 tax-deductible 68 -010101111100111 well-received 71 -010101111100111 bruised 72 -010101111100111 simplified 74 -010101111100111 spoiled 75 -010101111100111 liberalized 75 -010101111100111 renovated 75 -010101111100111 twisted 78 -010101111100111 underfunded 83 -010101111100111 bulging 88 -010101111100111 minuscule 90 -010101111100111 brokered 93 -010101111100111 hardened 95 -010101111100111 skewed 98 -010101111100111 non-refundable 99 -010101111100111 chilled 99 -010101111100111 renegotiated 99 -010101111100111 swollen 108 -010101111100111 indexed 110 -010101111100111 tortured 110 -010101111100111 impaired 113 -010101111100111 tarnished 113 -010101111100111 enlarged 116 -010101111100111 patented 117 -010101111100111 falsified 119 -010101111100111 recycled 127 -010101111100111 streamlined 135 -010101111100111 aborted 135 -010101111100111 documented 137 -010101111100111 nationalized 137 -010101111100111 understated 142 -010101111100111 guarded 149 -010101111100111 audited 150 -010101111100111 bloated 150 -010101111100111 subordinate 155 -010101111100111 depleted 155 -010101111100111 elevated 158 -010101111100111 manned 162 -010101111100111 idled 170 -010101111100111 unsettled 173 -010101111100111 delinquent 174 -010101111100111 colored 179 -010101111100111 prescribed 179 -010101111100111 contemplated 192 -010101111100111 redesigned 196 -010101111100111 deregulated 202 -010101111100111 tainted 208 -010101111100111 staggering 223 -010101111100111 desired 223 -010101111100111 distorted 237 -010101111100111 strained 244 -010101111100111 varied 254 -010101111100111 united 255 -010101111100111 contaminated 266 -010101111100111 restrained 269 -010101111100111 certified 273 -010101111100111 weighted 278 -010101111100111 advertised 305 -010101111100111 mandated 338 -010101111100111 stolen 338 -010101111100111 chartered 346 -010101111100111 diminished 359 -010101111100111 floating 392 -010101111100111 modified 396 -010101111100111 enhanced 402 -010101111100111 blind 407 -010101111100111 designated 445 -010101111100111 coordinated 445 -010101111100111 tax-free 446 -010101111100111 subsidized 466 -010101111100111 battered 473 -010101111100111 discounted 508 -010101111100111 regulated 510 -010101111100111 balanced 510 -010101111100111 specified 547 -010101111100111 proven 552 -010101111100111 deferred 572 -010101111100111 restated 635 -010101111100111 frozen 688 -010101111100111 weakened 731 -010101111100111 restricted 812 -010101111100111 sustained 866 -010101111100111 insured 893 -010101111100111 guaranteed 1154 -010101111100111 fixed 1613 -010101111100111 depressed 1645 -010101111100111 revised 2463 -010101111100111 limited 5066 -010101111101000 considered-recombinant 1 -010101111101000 adjoined 1 -010101111101000 ex-race 1 -010101111101000 power-driven 1 -010101111101000 balloon-type 1 -010101111101000 subletting 1 -010101111101000 non-polluting 2 -010101111101000 shampooing 2 -010101111101000 porting 2 -010101111101000 pogo 2 -010101111101000 plusher 2 -010101111101000 KVIL-AM 2 -010101111101000 rectilinear 2 -010101111101000 hurricane-force 2 -010101111101000 proofing 2 -010101111101000 faits 2 -010101111101000 tele-conferencing 2 -010101111101000 unbanned 2 -010101111101000 refrigerating 2 -010101111101000 suburb-to-suburb 2 -010101111101000 pressurizing 2 -010101111101000 twixt 2 -010101111101000 irreproachable 3 -010101111101000 panhandling 3 -010101111101000 sinning 3 -010101111101000 three-wheeler 3 -010101111101000 anti-development 3 -010101111101000 mismarked 3 -010101111101000 doping 3 -010101111101000 imputing 3 -010101111101000 redrafting 4 -010101111101000 dotting 4 -010101111101000 gorging 4 -010101111101000 tows 4 -010101111101000 refilling 4 -010101111101000 counterbalancing 4 -010101111101000 stapling 4 -010101111101000 sanding 4 -010101111101000 regionalized 4 -010101111101000 moldering 4 -010101111101000 doffing 4 -010101111101000 pikers 4 -010101111101000 reconfiguring 4 -010101111101000 nitroglycerin 4 -010101111101000 hosing 5 -010101111101000 baying 5 -010101111101000 mellower 5 -010101111101000 resettling 5 -010101111101000 precooked 5 -010101111101000 matte 5 -010101111101000 sunning 5 -010101111101000 tunneling 5 -010101111101000 conceiving 5 -010101111101000 retelling 5 -010101111101000 tape-recording 5 -010101111101000 fermenting 5 -010101111101000 divining 5 -010101111101000 excavating 6 -010101111101000 snorkeling 6 -010101111101000 soldiering 6 -010101111101000 pampering 6 -010101111101000 gilding 6 -010101111101000 calcified 6 -010101111101000 shunting 6 -010101111101000 spray-painting 6 -010101111101000 humanizing 6 -010101111101000 sneezing 6 -010101111101000 subleasing 6 -010101111101000 mangling 6 -010101111101000 doctoring 6 -010101111101000 smirking 7 -010101111101000 caged 7 -010101111101000 booing 7 -010101111101000 expensing 7 -010101111101000 emanations 7 -010101111101000 queuing 7 -010101111101000 defunding 7 -010101111101000 hissing 7 -010101111101000 misbehaving 7 -010101111101000 schmoozing 7 -010101111101000 mothering 7 -010101111101000 decoding 7 -010101111101000 noisier 8 -010101111101000 papermaking 8 -010101111101000 grafting 8 -010101111101000 coining 8 -010101111101000 mislabeling 8 -010101111101000 rebalancing 8 -010101111101000 detonating 8 -010101111101000 mellowing 9 -010101111101000 rebukes 9 -010101111101000 unfiltered 9 -010101111101000 knotted 9 -010101111101000 recasting 9 -010101111101000 wrinkling 9 -010101111101000 hemming 9 -010101111101000 parsing 9 -010101111101000 clustering 9 -010101111101000 pirating 9 -010101111101000 proselytizing 10 -010101111101000 resurfacing 10 -010101111101000 customizing 10 -010101111101000 savaging 10 -010101111101000 double-checking 10 -010101111101000 bellowing 10 -010101111101000 seeding 10 -010101111101000 splintering 10 -010101111101000 razing 11 -010101111101000 rustling 11 -010101111101000 videotaping 11 -010101111101000 waxing 11 -010101111101000 zigzagging 11 -010101111101000 plastering 11 -010101111101000 mass-marketed 11 -010101111101000 winnowing 11 -010101111101000 hemline 11 -010101111101000 coddling 11 -010101111101000 oozing 11 -010101111101000 roasting 11 -010101111101000 wiggling 11 -010101111101000 sawing 11 -010101111101000 flapping 12 -010101111101000 patenting 12 -010101111101000 groaning 12 -010101111101000 gushing 12 -010101111101000 whores 12 -010101111101000 baby-sitting 12 -010101111101000 dyed 12 -010101111101000 uprooting 12 -010101111101000 restocking 13 -010101111101000 spacing 13 -010101111101000 faxing 13 -010101111101000 thundering 13 -010101111101000 buckling 13 -010101111101000 encapsulated 13 -010101111101000 remaking 13 -010101111101000 overripe 13 -010101111101000 moonlighting 14 -010101111101000 overshooting 14 -010101111101000 littering 14 -010101111101000 bartering 15 -010101111101000 cajoling 15 -010101111101000 pasting 15 -010101111101000 hatching 15 -010101111101000 carting 15 -010101111101000 venting 15 -010101111101000 plucking 15 -010101111101000 stitching 15 -010101111101000 cursing 15 -010101111101000 reworking 15 -010101111101000 rearing 15 -010101111101000 wilting 16 -010101111101000 crunching 16 -010101111101000 gnashing 16 -010101111101000 paddling 16 -010101111101000 retrofitting 16 -010101111101000 snarling 16 -010101111101000 teasing 17 -010101111101000 grilling 17 -010101111101000 bugging 17 -010101111101000 branding 17 -010101111101000 sobbing 17 -010101111101000 legislating 18 -010101111101000 colorizing 18 -010101111101000 shivering 18 -010101111101000 flushing 18 -010101111101000 mocking 19 -010101111101000 commissioning 19 -010101111101000 rowing 19 -010101111101000 cleansing 19 -010101111101000 rote 19 -010101111101000 mugging 19 -010101111101000 squandering 19 -010101111101000 rehearsing 19 -010101111101000 clam 19 -010101111101000 splicing 19 -010101111101000 carpeted 19 -010101111101000 mowing 19 -010101111101000 coughing 19 -010101111101000 regrouping 20 -010101111101000 induction 20 -010101111101000 curling 20 -010101111101000 spewing 20 -010101111101000 busting 21 -010101111101000 stonewalling 21 -010101111101000 shelving 21 -010101111101000 manifold 21 -010101111101000 clicking 21 -010101111101000 drip 22 -010101111101000 bobbing 22 -010101111101000 scrubbing 22 -010101111101000 purging 23 -010101111101000 wailing 23 -010101111101000 jostling 24 -010101111101000 snoring 24 -010101111101000 cloning 25 -010101111101000 blinking 27 -010101111101000 bullying 27 -010101111101000 tailoring 27 -010101111101000 fumbling 27 -010101111101000 flouting 28 -010101111101000 bungling 28 -010101111101000 hugging 28 -010101111101000 jailing 28 -010101111101000 hustling 28 -010101111101000 melding 29 -010101111101000 wrecking 29 -010101111101000 fattening 29 -010101111101000 misreading 30 -010101111101000 chartering 30 -010101111101000 stuffing 30 -010101111101000 flowering 32 -010101111101000 ripening 32 -010101111101000 second-guessing 32 -010101111101000 hiking 33 -010101111101000 stockpiling 33 -010101111101000 welded 33 -010101111101000 pacing 33 -010101111101000 blazing 34 -010101111101000 hemorrhaging 34 -010101111101000 sealing 34 -010101111101000 filtering 36 -010101111101000 skimming 37 -010101111101000 zapping 39 -010101111101000 tasting 39 -010101111101000 furnishing 39 -010101111101000 crediting 39 -010101111101000 shredding 40 -010101111101000 poaching 40 -010101111101000 composing 40 -010101111101000 grooming 40 -010101111101000 watering 42 -010101111101000 test-marketing 42 -010101111101000 looting 43 -010101111101000 custom-made 44 -010101111101000 weaving 44 -010101111101000 surfacing 46 -010101111101000 typing 46 -010101111101000 orbiting 47 -010101111101000 dialing 47 -010101111101000 grading 47 -010101111101000 retooling 48 -010101111101000 grouping 48 -010101111101000 twisting 49 -010101111101000 tooling 49 -010101111101000 repositioning 49 -010101111101000 prescribing 49 -010101111101000 vanishing 50 -010101111101000 rocking 50 -010101111101000 mapping 50 -010101111101000 commuting 50 -010101111101000 melting 51 -010101111101000 mourning 52 -010101111101000 thinning 52 -010101111101000 nurturing 52 -010101111101000 insulating 53 -010101111101000 spraying 54 -010101111101000 routing 54 -010101111101000 stocking 54 -010101111101000 repackaging 55 -010101111101000 tuning 55 -010101111101000 jamming 55 -010101111101000 modeling 58 -010101111101000 shuffling 58 -010101111101000 punching 58 -010101111101000 awakening 58 -010101111101000 refurbishing 60 -010101111101000 reshaping 60 -010101111101000 fools 61 -010101111101000 updating 61 -010101111101000 dispensing 61 -010101111101000 kissing 62 -010101111101000 coaching 62 -010101111101000 fine-tuning 63 -010101111101000 wrapping 64 -010101111101000 blending 64 -010101111101000 short-selling 67 -010101111101000 shaving 67 -010101111101000 juggling 68 -010101111101000 chanting 69 -010101111101000 guessing 73 -010101111101000 qualifying 76 -010101111101000 dreaming 77 -010101111101000 rotating 77 -010101111101000 hauling 81 -010101111101000 diving 81 -010101111101000 rendering 81 -010101111101000 overcharging 81 -010101111101000 rethinking 82 -010101111101000 chewing 84 -010101111101000 bashing 85 -010101111101000 folding 86 -010101111101000 scanning 86 -010101111101000 budgeting 90 -010101111101000 stalling 92 -010101111101000 filming 93 -010101111101000 idling 94 -010101111101000 taping 94 -010101111101000 flashing 95 -010101111101000 boarding 97 -010101111101000 cheering 97 -010101111101000 prodding 98 -010101111101000 policing 100 -010101111101000 harvesting 101 -010101111101000 tracing 108 -010101111101000 booking 111 -010101111101000 editing 112 -010101111101000 crumbling 117 -010101111101000 scoring 125 -010101111101000 packing 126 -010101111101000 pounding 128 -010101111101000 positioning 138 -010101111101000 connecting 140 -010101111101000 washing 145 -010101111101000 loading 148 -010101111101000 pitching 154 -010101111101000 flooding 157 -010101111101000 warming 161 -010101111101000 judging 170 -010101111101000 shouting 172 -010101111101000 dressing 172 -010101111101000 screaming 175 -010101111101000 functioning 176 -010101111101000 bleeding 176 -010101111101000 labeling 178 -010101111101000 leaking 183 -010101111101000 undertaking 184 -010101111101000 copying 184 -010101111101000 breeding 186 -010101111101000 staging 191 -010101111101000 smuggling 194 -010101111101000 cracking 201 -010101111101000 balancing 208 -010101111101000 hiding 224 -010101111101000 rebuilding 224 -010101111101000 viewing 225 -010101111101000 breathing 226 -010101111101000 planting 238 -010101111101000 dancing 244 -010101111101000 feeding 247 -010101111101000 scheduling 248 -010101111101000 measuring 256 -010101111101000 casting 260 -010101111101000 upgrading 260 -010101111101000 targeting 261 -010101111101000 cooling 264 -010101111101000 tracking 276 -010101111101000 answering 279 -010101111101000 drafting 286 -010101111101000 cooking 297 -010101111101000 steering 311 -010101111101000 mailing 319 -010101111101000 burning 321 -010101111101000 organizing 323 -010101111101000 recruiting 334 -010101111101000 discounting 356 -010101111101000 singing 360 -010101111101000 racing 364 -010101111101000 cleaning 397 -010101111101000 dying 399 -010101111101000 screening 399 -010101111101000 hunting 439 -010101111101000 checking 471 -010101111101000 shooting 485 -010101111101000 firing 499 -010101111101000 drinking 508 -010101111101000 questioning 510 -010101111101000 gathering 516 -010101111101000 sharing 516 -010101111101000 forecasting 517 -010101111101000 switching 520 -010101111101000 recording 528 -010101111101000 teaching 581 -010101111101000 monitoring 661 -010101111101000 dumping 663 -010101111101000 learning 704 -010101111101000 missing 729 -010101111101000 suffering 773 -010101111101000 drawing 820 -010101111101000 backing 1071 -010101111101000 hiring 1178 -010101111101000 reading 1270 -010101111101000 writing 1591 -010101111101000 reporting 1740 -010101111101000 testing 2669 -010101111101000 planning 3322 -010101111101000 building 6116 -010101111101001 crocheting 1 -010101111101001 prepositioned 1 -010101111101001 winterizing 1 -010101111101001 GM-izing 1 -010101111101001 363.92 1 -010101111101001 harvest-related 1 -010101111101001 molasses-like 1 -010101111101001 118,700 1 -010101111101001 57,200 1 -010101111101001 testmarketing 1 -010101111101001 foaled 1 -010101111101001 302,016 1 -010101111101001 joing 1 -010101111101001 deeppockets 1 -010101111101001 big-deal 1 -010101111101001 fantasy-at-home 1 -010101111101001 14,607,350 1 -010101111101001 re-allocating 1 -010101111101001 homebred 1 -010101111101001 prepetition 1 -010101111101001 proclaming 1 -010101111101001 nonpension 1 -010101111101001 muncipalities 1 -010101111101001 anti-retroviral 1 -010101111101001 commission-hungry 1 -010101111101001 re-collecting 1 -010101111101001 67,600 1 -010101111101001 co-underwriting 1 -010101111101001 gin-clear 1 -010101111101001 250,000-kilowatt 1 -010101111101001 Giovanna 1 -010101111101001 22,591 1 -010101111101001 135,422,977 1 -010101111101001 Moscovy 1 -010101111101001 214,900 1 -010101111101001 accosting 1 -010101111101001 member-country 1 -010101111101001 INF-range 1 -010101111101001 harkening 1 -010101111101001 165,600 1 -010101111101001 Odilon 1 -010101111101001 11,313 1 -010101111101001 100,8l3,833 1 -010101111101001 risk-adverse 1 -010101111101001 campaign-contributor 1 -010101111101001 14,807 1 -010101111101001 reconceiving 1 -010101111101001 1,109,150 1 -010101111101001 juxtaposing 1 -010101111101001 revetments 1 -010101111101001 Oxfam 2 -010101111101001 under-followed 2 -010101111101001 felling 2 -010101111101001 entrepeneurial 2 -010101111101001 rebuying 2 -010101111101001 supercooling 2 -010101111101001 191,772 2 -010101111101001 gray-listed 2 -010101111101001 twitting 2 -010101111101001 ex-Chicago 2 -010101111101001 3,080,000 2 -010101111101001 blabbing 2 -010101111101001 538,750 2 -010101111101001 garnishing 2 -010101111101001 hamming 2 -010101111101001 puchasing 2 -010101111101001 prime-related 2 -010101111101001 1,170,400 2 -010101111101001 declassifying 2 -010101111101001 prepackaging 2 -010101111101001 all-conquering 2 -010101111101001 disrobing 2 -010101111101001 8,550,000 2 -010101111101001 old-model 2 -010101111101001 re-importing 2 -010101111101001 2:39 2 -010101111101001 castrating 2 -010101111101001 171,144 2 -010101111101001 overgrading 2 -010101111101001 undercharging 3 -010101111101001 29,600 3 -010101111101001 clivia 3 -010101111101001 handcuffing 3 -010101111101001 cross-held 3 -010101111101001 co-opting 3 -010101111101001 subdividing 3 -010101111101001 156,445 3 -010101111101001 cataloging 3 -010101111101001 25,850 3 -010101111101001 195,919 3 -010101111101001 snitching 3 -010101111101001 dishonored 4 -010101111101001 impoverishing 4 -010101111101001 romancing 4 -010101111101001 overworking 4 -010101111101001 Halo 4 -010101111101001 retransmitting 4 -010101111101001 1,133 4 -010101111101001 reusing 4 -010101111101001 hoeing 4 -010101111101001 bar-hopping 4 -010101111101001 anointing 4 -010101111101001 unionizing 5 -010101111101001 deposing 5 -010101111101001 less-valuable 5 -010101111101001 tranquilizing 5 -010101111101001 puncturing 5 -010101111101001 renationalizing 5 -010101111101001 cabdrivers 5 -010101111101001 747,700 5 -010101111101001 reincorporating 5 -010101111101001 bad-mouthing 5 -010101111101001 toasting 5 -010101111101001 micromanaging 5 -010101111101001 piggybacking 6 -010101111101001 overvaluing 6 -010101111101001 Suleiman 6 -010101111101001 replaying 6 -010101111101001 abstracted 6 -010101111101001 allotting 6 -010101111101001 dyeing 7 -010101111101001 tilling 7 -010101111101001 Asics 7 -010101111101001 airlifting 7 -010101111101001 culturing 7 -010101111101001 slitting 7 -010101111101001 cash-settled 8 -010101111101001 dislodging 8 -010101111101001 rerouting 8 -010101111101001 13,400 8 -010101111101001 exportable 8 -010101111101001 swiping 8 -010101111101001 transfering 9 -010101111101001 snagging 9 -010101111101001 shucking 9 -010101111101001 myocardial 9 -010101111101001 evacuating 10 -010101111101001 plundering 10 -010101111101001 sterilizing 10 -010101111101001 redeploying 12 -010101111101001 canvassing 12 -010101111101001 procuring 12 -010101111101001 securitizing 14 -010101111101001 revaluing 15 -010101111101001 cramming 15 -010101111101001 petitioning 15 -010101111101001 overloading 16 -010101111101001 underpricing 17 -010101111101001 pinching 17 -010101111101001 syndicating 17 -010101111101001 disbursing 17 -010101111101001 honing 17 -010101111101001 dusting 18 -010101111101001 sanctioning 19 -010101111101001 meshing 20 -010101111101001 reclaiming 20 -010101111101001 dollar-buying 22 -010101111101001 centralizing 23 -010101111101001 contaminating 24 -010101111101001 chopping 28 -010101111101001 souring 30 -010101111101001 exiting 30 -010101111101001 pruning 34 -010101111101001 forgiving 44 -010101111101001 hoarding 46 -010101111101001 rigging 52 -010101111101001 auctioning 52 -010101111101001 repurchasing 55 -010101111101001 shorting 61 -010101111101001 sweetening 64 -010101111101001 raiding 80 -010101111101001 underperforming 84 -010101111101001 unloading 96 -010101111101001 peddling 148 -010101111101001 swapping 153 -010101111101001 tendering 161 -010101111101001 airing 194 -010101111101001 shedding 209 -010101111101001 awarding 220 -010101111101001 importing 236 -010101111101001 accumulating 239 -010101111101001 liquidating 254 -010101111101001 consolidating 263 -010101111101001 withdrawing 311 -010101111101001 merging 379 -010101111101001 saving 633 -010101111101001 issuing 830 -010101111101001 purchasing 1188 -010101111101001 acquiring 2075 -010101111101001 selling 10540 -010101111101001 buying 8931 -010101111101010 troughing 1 -010101111101010 bricked 1 -010101111101010 fixed-coupon-issues 1 -010101111101010 48,612 1 -010101111101010 12,212 1 -010101111101010 coalescence 1 -010101111101010 non-originalism 1 -010101111101010 ekeing 1 -010101111101010 148,750 1 -010101111101010 4,342 1 -010101111101010 intensifed 1 -010101111101010 Maniamates 1 -010101111101010 deadpanning 1 -010101111101010 gumshoeing 1 -010101111101010 skinnying 1 -010101111101010 half-a-mile 1 -010101111101010 well-thought 1 -010101111101010 cannoning 1 -010101111101010 bollixing 1 -010101111101010 dummying 1 -010101111101010 1,079,470 1 -010101111101010 indebting 1 -010101111101010 1,011,402 1 -010101111101010 958,354 1 -010101111101010 4,204,000 1 -010101111101010 full-motion 1 -010101111101010 reaming 1 -010101111101010 buddying 1 -010101111101010 vegging 1 -010101111101010 1,051,693 1 -010101111101010 975,810 1 -010101111101010 4,843,000 1 -010101111101010 7,984,445 1 -010101111101010 992,120 1 -010101111101010 tripledigit 1 -010101111101010 4,265,000 1 -010101111101010 2,731 1 -010101111101010 1,344,000 1 -010101111101010 1,302,000 1 -010101111101010 1,554,000 1 -010101111101010 1,055,053 1 -010101111101010 dormers 1 -010101111101010 caroming 1 -010101111101010 49,027 1 -010101111101010 bopping 1 -010101111101010 blotting 1 -010101111101010 WEEI 2 -010101111101010 gagging 2 -010101111101010 strutted 2 -010101111101010 506th 2 -010101111101010 ramped 2 -010101111101010 12,350,156 2 -010101111101010 raffling 2 -010101111101010 anteing 2 -010101111101010 four-footed 2 -010101111101010 pigging 2 -010101111101010 301,884 2 -010101111101010 blackening 2 -010101111101010 tuckered 2 -010101111101010 certifiably 2 -010101111101010 straggling 2 -010101111101010 nickel-and-diming 2 -010101111101010 spritzing 2 -010101111101010 re-energized 2 -010101111101010 80-feet 2 -010101111101010 lathering 2 -010101111101010 bleeped 2 -010101111101010 winched 2 -010101111101010 evasively 2 -010101111101010 meting 3 -010101111101010 wolfing 3 -010101111101010 livening 3 -010101111101010 spooning 3 -010101111101010 stowing 3 -010101111101010 mauling 3 -010101111101010 plopping 3 -010101111101010 co-publishing 3 -010101111101010 rapping 3 -010101111101010 twanging 3 -010101111101010 socking 3 -010101111101010 clunking 3 -010101111101010 dabbing 3 -010101111101010 trolling 3 -010101111101010 whiling 3 -010101111101010 blacking 3 -010101111101010 goofing 3 -010101111101010 fouling 3 -010101111101010 pawning 3 -010101111101010 splattering 3 -010101111101010 rasping 3 -010101111101010 immunizing 3 -010101111101010 eluding 3 -010101111101010 clanking 4 -010101111101010 hassling 4 -010101111101010 re-emphasizing 4 -010101111101010 doodling 4 -010101111101010 ladling 4 -010101111101010 mucking 4 -010101111101010 trundles 4 -010101111101010 ricocheting 4 -010101111101010 filibustering 4 -010101111101010 remitting 4 -010101111101010 lapping 4 -010101111101010 flanking 4 -010101111101010 fleshing 4 -010101111101010 whisking 4 -010101111101010 hunching 4 -010101111101010 slaving 4 -010101111101010 navigable 4 -010101111101010 pelting 5 -010101111101010 waddling 5 -010101111101010 baring 5 -010101111101010 stubbing 5 -010101111101010 dribbling 5 -010101111101010 frittering 5 -010101111101010 lumbers 5 -010101111101010 mutated 5 -010101111101010 cluttering 5 -010101111101010 swilling 5 -010101111101010 snuffing 5 -010101111101010 lofted 5 -010101111101010 slithering 5 -010101111101010 glowering 5 -010101111101010 ramming 6 -010101111101010 latching 6 -010101111101010 co-producing 6 -010101111101010 haranguing 6 -010101111101010 trooping 6 -010101111101010 goading 6 -010101111101010 pestering 6 -010101111101010 snaking 6 -010101111101010 rappelling 6 -010101111101010 bulldozing 7 -010101111101010 sawed 7 -010101111101010 elbowing 7 -010101111101010 muscling 7 -010101111101010 eking 7 -010101111101010 twitching 7 -010101111101010 winging 7 -010101111101010 clubbing 7 -010101111101010 battening 7 -010101111101010 motoring 7 -010101111101010 burrowing 7 -010101111101010 ambling 7 -010101111101010 trots 7 -010101111101010 barnstorming 7 -010101111101010 lapsing 7 -010101111101010 flicking 7 -010101111101010 threading 8 -010101111101010 petering 8 -010101111101010 parceling 8 -010101111101010 flitting 8 -010101111101010 belching 8 -010101111101010 barreling 8 -010101111101010 squeaking 8 -010101111101010 striding 9 -010101111101010 forking 9 -010101111101010 toning 9 -010101111101010 gulping 9 -010101111101010 navigating 9 -010101111101010 swooping 9 -010101111101010 trotting 9 -010101111101010 slinging 9 -010101111101010 needling 9 -010101111101010 straightening 9 -010101111101010 panning 9 -010101111101010 curving 9 -010101111101010 sopping 9 -010101111101010 skateboarding 9 -010101111101010 braided 10 -010101111101010 warding 10 -010101111101010 pedaling 10 -010101111101010 screwing 10 -010101111101010 spiking 10 -010101111101010 percolating 10 -010101111101010 roughing 10 -010101111101010 ferreting 10 -010101111101010 tailing 10 -010101111101010 lopping 10 -010101111101010 butting 10 -010101111101010 jetting 10 -010101111101010 flopping 10 -010101111101010 lightening 10 -010101111101010 staving 10 -010101111101010 lunging 10 -010101111101010 overrunning 10 -010101111101010 clawing 10 -010101111101010 stumping 11 -010101111101010 hobbling 11 -010101111101010 plunking 11 -010101111101010 bounding 11 -010101111101010 bolting 11 -010101111101010 stringing 12 -010101111101010 hunkering 12 -010101111101010 jacking 12 -010101111101010 nailing 12 -010101111101010 whacking 12 -010101111101010 scribbling 13 -010101111101010 tallying 13 -010101111101010 wending 13 -010101111101010 thumbing 13 -010101111101010 heaping 13 -010101111101010 messing 13 -010101111101010 belting 13 -010101111101010 ratcheting 13 -010101111101010 tiptoeing 13 -010101111101010 strutting 13 -010101111101010 nosing 13 -010101111101010 powering 13 -010101111101010 stomping 14 -010101111101010 sloshing 14 -010101111101010 lashing 14 -010101111101010 dishing 14 -010101111101010 splashing 14 -010101111101010 clapping 15 -010101111101010 taxiing 15 -010101111101010 emptying 15 -010101111101010 strangling 15 -010101111101010 fenced 16 -010101111101010 parading 16 -010101111101010 gnawing 16 -010101111101010 hurtling 16 -010101111101010 zooming 16 -010101111101010 doling 17 -010101111101010 whittling 17 -010101111101010 hounding 17 -010101111101010 trudging 17 -010101111101010 stroking 17 -010101111101010 sprinting 17 -010101111101010 straying 17 -010101111101010 salted 17 -010101111101010 peeking 17 -010101111101010 rumbling 18 -010101111101010 tripping 18 -010101111101010 gliding 18 -010101111101010 hunched 19 -010101111101010 flailing 19 -010101111101010 storming 19 -010101111101010 trickling 19 -010101111101010 flaring 19 -010101111101010 tapering 19 -010101111101010 weeding 20 -010101111101010 careening 20 -010101111101010 sizing 20 -010101111101010 glancing 20 -010101111101010 stacking 20 -010101111101010 wading 21 -010101111101010 slanted 21 -010101111101010 limping 21 -010101111101010 prowling 21 -010101111101010 roaming 21 -010101111101010 tugging 21 -010101111101010 hooking 22 -010101111101010 nodding 22 -010101111101010 ironing 22 -010101111101010 streaming 22 -010101111101010 trending 22 -010101111101010 muttering 23 -010101111101010 rippling 23 -010101111101010 telephoning 23 -010101111101010 slogging 24 -010101111101010 singling 24 -010101111101010 steamed 24 -010101111101010 hacking 25 -010101111101010 strolling 25 -010101111101010 slamming 25 -010101111101010 combing 25 -010101111101010 muddling 26 -010101111101010 smelling 26 -010101111101010 whispering 26 -010101111101010 rounding 26 -010101111101010 hurling 27 -010101111101010 scraping 27 -010101111101010 slicing 27 -010101111101010 munching 27 -010101111101010 polishing 27 -010101111101010 roiling 27 -010101111101010 chipping 28 -010101111101010 snatching 28 -010101111101010 cranking 28 -010101111101010 litigating 29 -010101111101010 gazing 29 -010101111101010 beaming 30 -010101111101010 chugging 30 -010101111101010 thrashing 31 -010101111101010 fooling 31 -010101111101010 uniting 31 -010101111101010 puffing 32 -010101111101010 siphoning 32 -010101111101010 burnt 32 -010101111101010 spoiling 33 -010101111101010 skipping 34 -010101111101010 sniffing 34 -010101111101010 wheeled 34 -010101111101010 shoving 34 -010101111101010 drumming 34 -010101111101010 banging 34 -010101111101010 humming 35 -010101111101010 robbing 35 -010101111101010 brushing 35 -010101111101010 phoning 35 -010101111101010 peeling 35 -010101111101010 nibbling 35 -010101111101010 sneaking 36 -010101111101010 hopping 36 -010101111101010 grasping 36 -010101111101010 plowing 36 -010101111101010 bothering 37 -010101111101010 clamping 37 -010101111101010 rattling 37 -010101111101010 shuttling 38 -010101111101010 fanning 38 -010101111101010 gobbling 38 -010101111101010 soaking 38 -010101111101010 harassing 39 -010101111101010 spitting 39 -010101111101010 inching 39 -010101111101010 lecturing 39 -010101111101010 flipping 40 -010101111101010 sprouting 40 -010101111101010 cruising 41 -010101111101010 tilting 41 -010101111101010 stalking 41 -010101111101010 scaring 41 -010101111101010 plugging 41 -010101111101010 dashing 41 -010101111101010 whipping 41 -010101111101010 scouting 42 -010101111101010 squaring 42 -010101111101010 patrolling 43 -010101111101010 staking 43 -010101111101010 branching 43 -010101111101010 poking 44 -010101111101010 rubbing 44 -010101111101010 scratching 44 -010101111101010 applauding 44 -010101111101010 ripping 46 -010101111101010 circling 46 -010101111101010 sifting 48 -010101111101010 nudging 48 -010101111101010 peering 48 -010101111101010 pinning 49 -010101111101010 leaping 49 -010101111101010 shelling 50 -010101111101010 crawling 53 -010101111101010 ticking 54 -010101111101010 bottoming 55 -010101111101010 propping 55 -010101111101010 hammering 55 -010101111101010 bumping 55 -010101111101010 spilling 57 -010101111101010 dangling 57 -010101111101010 tossing 57 -010101111101010 bending 58 -010101111101010 choking 58 -010101111101010 teaming 59 -010101111101010 waking 59 -010101111101010 swirling 60 -010101111101010 boiling 63 -010101111101010 crashing 65 -010101111101010 tipping 66 -010101111101010 carving 67 -010101111101010 crowding 67 -010101111101010 yelling 70 -010101111101010 reserving 70 -010101111101010 fending 70 -010101111101010 grinding 77 -010101111101010 preaching 78 -010101111101010 tearing 84 -010101111101010 wandering 85 -010101111101010 stripping 86 -010101111101010 bouncing 87 -010101111101010 churning 87 -010101111101010 sorting 93 -010101111101010 bailing 94 -010101111101010 wiping 95 -010101111101010 quitting 95 -010101111101010 piling 97 -010101111101010 locking 98 -010101111101010 biting 99 -010101111101010 popping 100 -010101111101010 touring 101 -010101111101010 waving 108 -010101111101010 interviewing 110 -010101111101010 swinging 110 -010101111101010 kicking 114 -010101111101010 renting 117 -010101111101010 digging 117 -010101111101010 creeping 123 -010101111101010 celebrating 125 -010101111101010 spelling 125 -010101111101010 phasing 126 -010101111101010 snapping 130 -010101111101010 scaling 134 -010101111101010 drifting 135 -010101111101010 courting 135 -010101111101010 edging 135 -010101111101010 shaking 139 -010101111101010 shutting 140 -010101111101010 crossing 141 -010101111101010 ringing 141 -010101111101010 handing 143 -010101111101010 knocking 144 -010101111101010 sounding 147 -010101111101010 fleeing 150 -010101111101010 rallying 155 -010101111101010 trailing 156 -010101111101010 blowing 158 -010101111101010 dragging 158 -010101111101010 splitting 159 -010101111101010 speeding 161 -010101111101010 winding 162 -010101111101010 stirring 162 -010101111101010 touching 167 -010101111101010 stretching 169 -010101111101010 halfway 175 -010101111101010 leaning 178 -010101111101010 practicing 199 -010101111101010 chasing 208 -010101111101010 shaping 231 -010101111101010 figuring 239 -010101111101010 spinning 250 -010101111101010 jumping 269 -010101111101010 catching 271 -010101111101010 finishing 295 -010101111101010 battling 334 -010101111101010 laying 362 -010101111101010 riding 364 -010101111101010 hurting 365 -010101111101010 advising 369 -010101111101010 applying 376 -010101111101010 throwing 389 -010101111101010 suing 392 -010101111101010 hanging 404 -010101111101010 spreading 407 -010101111101010 pointing 410 -010101111101010 rolling 427 -010101111101010 beating 429 -010101111101010 stepping 435 -010101111101010 eating 479 -010101111101010 walking 481 -010101111101010 performing 493 -010101111101010 pulling 515 -010101111101010 settling 524 -010101111101010 heading 605 -010101111101010 challenging 620 -010101111101010 picking 621 -010101111101010 pressing 750 -010101111101010 breaking 807 -010101111101010 flying 847 -010101111101010 passing 850 -010101111101010 urging 912 -010101111101010 driving 1148 -010101111101010 watching 1154 -010101111101010 telling 1256 -010101111101010 pushing 1574 -010101111101010 playing 1743 -010101111101010 turning 1795 -010101111101010 asking 1929 -010101111101010 fighting 1980 -010101111101010 moving 3159 -010101111101010 running 4234 -010101111101010 paying 4055 -010101111101011 234,259,112 1 -010101111101011 WFBQ-FM 1 -010101111101011 1.6705 1 -010101111101011 78,270 1 -010101111101011 2,427 1 -010101111101011 3,989 1 -010101111101011 638,024 1 -010101111101011 670,333 1 -010101111101011 776.91 1 -010101111101011 250,553 1 -010101111101011 621,349 1 -010101111101011 13,750 1 -010101111101011 1,527 1 -010101111101011 7,855 1 -010101111101011 2,167,000 1 -010101111101011 CIA-sponsorship 1 -010101111101011 681,700 1 -010101111101011 long-reigning 1 -010101111101011 Lizabear 1 -010101111101011 823.58 1 -010101111101011 132.95 1 -010101111101011 818,143 1 -010101111101011 god-knows-where 1 -010101111101011 7,131,400 1 -010101111101011 60,423 1 -010101111101011 32,582 1 -010101111101011 261,603 1 -010101111101011 2,249,000 1 -010101111101011 2,165,000 1 -010101111101011 946,980 1 -010101111101011 244,760 1 -010101111101011 mid-evening 1 -010101111101011 404.86 1 -010101111101011 39,315 1 -010101111101011 1/2-length 1 -010101111101011 677,977 1 -010101111101011 2,170,000 1 -010101111101011 189,942 1 -010101111101011 73,894 1 -010101111101011 22,798 1 -010101111101011 6,751 1 -010101111101011 1.7818 1 -010101111101011 16-7 1 -010101111101011 mortgage-banker 1 -010101111101011 Best-Paid 1 -010101111101011 293,400 1 -010101111101011 57,253 1 -010101111101011 391,769 1 -010101111101011 triglyceride-rich 1 -010101111101011 723.84 1 -010101111101011 172,372 1 -010101111101011 70,173 1 -010101111101011 333,817 1 -010101111101011 1,349 1 -010101111101011 472,956 1 -010101111101011 556,711 1 -010101111101011 503,271 1 -010101111101011 2,228,000 1 -010101111101011 gyno-Americans 1 -010101111101011 617,909 1 -010101111101011 543,313 1 -010101111101011 1,409,267 1 -010101111101011 1,478 1 -010101111101011 7,084,600 1 -010101111101011 8,863 1 -010101111101011 285,101 1 -010101111101011 50,138 1 -010101111101011 unappealable 1 -010101111101011 669,000 1 -010101111101011 Upheaval 1 -010101111101011 296,225 1 -010101111101011 286,439 1 -010101111101011 57,811,000 1 -010101111101011 3,913 1 -010101111101011 bark-cloth 1 -010101111101011 black-cloaked 1 -010101111101011 3,385 1 -010101111101011 1,523,000 1 -010101111101011 governmentfunded 1 -010101111101011 13,657 1 -010101111101011 3,539 1 -010101111101011 52,869 1 -010101111101011 Aihui 1 -010101111101011 1.4845 1 -010101111101011 7,145,500 1 -010101111101011 MCLF 1 -010101111101011 48,565 1 -010101111101011 pseudoscholars 1 -010101111101011 2,526,100 1 -010101111101011 24,945 1 -010101111101011 61,601 1 -010101111101011 hypoallergic 1 -010101111101011 interrelate 1 -010101111101011 2,261,000 1 -010101111101011 Wickford 1 -010101111101011 142,600 1 -010101111101011 721,668 1 -010101111101011 18,420 1 -010101111101011 1.55-to-1 1 -010101111101011 7,342,400 1 -010101111101011 2,546,400 1 -010101111101011 2,185,000 1 -010101111101011 124,663 1 -010101111101011 217,939 1 -010101111101011 31,699 1 -010101111101011 253,092 1 -010101111101011 31,085 1 -010101111101011 47,732 1 -010101111101011 skateboarders 1 -010101111101011 evesdropping 1 -010101111101011 2,124,000 1 -010101111101011 13,411 1 -010101111101011 Igloolik 1 -010101111101011 institution-yellow 1 -010101111101011 raw-material-intensity 1 -010101111101011 240th 1 -010101111101011 1,620,800 1 -010101111101011 four-feet 1 -010101111101011 Tiflis 1 -010101111101011 expatiating 1 -010101111101011 2:37 1 -010101111101011 Turkish-owned 1 -010101111101011 945,128 1 -010101111101011 9,650,000 1 -010101111101011 35.0 1 -010101111101011 Gainsborough 1 -010101111101011 133,880 1 -010101111101011 10,824,914 1 -010101111101011 793,909 1 -010101111101011 82,321 1 -010101111101011 445,844 1 -010101111101011 469,762 1 -010101111101011 cost-transfer 1 -010101111101011 DM10,000 1 -010101111101011 384,018 1 -010101111101011 swabbed 1 -010101111101011 191,121 1 -010101111101011 174,667 1 -010101111101011 3,923 1 -010101111101011 110,076 1 -010101111101011 364,523 1 -010101111101011 near-hysteria 1 -010101111101011 2,447 1 -010101111101011 33,173 1 -010101111101011 41,629 1 -010101111101011 47,057 1 -010101111101011 33,635 1 -010101111101011 20,941 1 -010101111101011 1,672,337 1 -010101111101011 oldster 1 -010101111101011 1.6940 1 -010101111101011 317,004 1 -010101111101011 inoculates 1 -010101111101011 rejigger 1 -010101111101011 recombinants 1 -010101111101011 49,600 1 -010101111101011 Arsen 1 -010101111101011 2,453,000 1 -010101111101011 19,206,000 1 -010101111101011 7,319,000 1 -010101111101011 32,680 1 -010101111101011 75.0 2 -010101111101011 rifling 2 -010101111101011 Glavlit 2 -010101111101011 pajama-clad 2 -010101111101011 travelogues 2 -010101111101011 tulle 2 -010101111101011 cogitating 2 -010101111101011 unmoving 2 -010101111101011 1,805,400 2 -010101111101011 852,400 2 -010101111101011 blanching 2 -010101111101011 perching 2 -010101111101011 cobbling 2 -010101111101011 palpitating 2 -010101111101011 diddling 2 -010101111101011 monkeying 2 -010101111101011 freeloading 2 -010101111101011 dogbite 2 -010101111101011 braying 2 -010101111101011 121,609 2 -010101111101011 foments 2 -010101111101011 deconstructed 2 -010101111101011 4,540 2 -010101111101011 Witherspoons 2 -010101111101011 snoops 2 -010101111101011 clumping 2 -010101111101011 overzealousness 2 -010101111101011 doormats 2 -010101111101011 1,249 2 -010101111101011 odd-lotters 3 -010101111101011 triumphing 3 -010101111101011 improvisers 3 -010101111101011 loafing 3 -010101111101011 North-Rhine 3 -010101111101011 36,782 3 -010101111101011 skulking 3 -010101111101011 WNBC-AM 3 -010101111101011 subsisting 3 -010101111101011 wriggling 3 -010101111101011 remarrying 3 -010101111101011 frothing 3 -010101111101011 tentativeness 3 -010101111101011 exulting 3 -010101111101011 billeted 3 -010101111101011 WOMC-FM 4 -010101111101011 procompetitive 4 -010101111101011 ripened 4 -010101111101011 hitchhiking 4 -010101111101011 icebound 4 -010101111101011 jiggling 4 -010101111101011 unschooled 4 -010101111101011 burping 4 -010101111101011 foaming 4 -010101111101011 transfused 5 -010101111101011 squished 5 -010101111101011 worshiping 5 -010101111101011 skimping 5 -010101111101011 roosting 5 -010101111101011 manuevering 5 -010101111101011 recirculated 5 -010101111101011 hell-bent 5 -010101111101011 fence-sitting 5 -010101111101011 nested 5 -010101111101011 co-adviser 5 -010101111101011 relenting 5 -010101111101011 recumbent 5 -010101111101011 undressing 5 -010101111101011 stewing 6 -010101111101011 bicycling 6 -010101111101011 meditating 6 -010101111101011 handicapping 6 -010101111101011 travelling 6 -010101111101011 free-lancing 6 -010101111101011 oxidized 6 -010101111101011 gridlocked 6 -010101111101011 conversing 6 -010101111101011 gawking 6 -010101111101011 squatting 6 -010101111101011 fallible 6 -010101111101011 cross-dressing 6 -010101111101011 reappearing 6 -010101111101011 chargeable 7 -010101111101011 brawling 7 -010101111101011 streaking 7 -010101111101011 dozing 7 -010101111101011 coalescing 7 -010101111101011 buttered 7 -010101111101011 coasting 7 -010101111101011 well-represented 7 -010101111101011 abounding 7 -010101111101011 frosting 7 -010101111101011 lolling 8 -010101111101011 sulking 8 -010101111101011 frowning 8 -010101111101011 romping 8 -010101111101011 harping 8 -010101111101011 urinating 8 -010101111101011 sunbathing 9 -010101111101011 cavorting 9 -010101111101011 snoozing 9 -010101111101011 massing 9 -010101111101011 keying 10 -010101111101011 writhing 10 -010101111101011 penciled 10 -010101111101011 quilting 10 -010101111101011 flip-flopping 10 -010101111101011 chomping 10 -010101111101011 lounging 10 -010101111101011 rebelling 11 -010101111101011 loitering 11 -010101111101011 interceding 11 -010101111101011 lunching 12 -010101111101011 reverberating 12 -010101111101011 swearing 12 -010101111101011 squealing 12 -010101111101011 unbeaten 12 -010101111101011 trekking 12 -010101111101011 converging 13 -010101111101011 feasting 13 -010101111101011 frolicking 13 -010101111101011 cowering 13 -010101111101011 sleepwalking 14 -010101111101011 trespassing 14 -010101111101011 tacking 14 -010101111101011 backpedaling 14 -010101111101011 marooned 14 -010101111101011 hollering 15 -010101111101011 sprawled 15 -010101111101011 rummaging 16 -010101111101011 volunteering 16 -010101111101011 fencing 17 -010101111101011 abstaining 17 -010101111101011 migrating 17 -010101111101011 banding 17 -010101111101011 chuckling 17 -010101111101011 co-counsel 19 -010101111101011 huddling 19 -010101111101011 giggling 19 -010101111101011 squirming 19 -010101111101011 chafing 20 -010101111101011 gasping 20 -010101111101011 foreclosing 20 -010101111101011 toiling 20 -010101111101011 derelict 20 -010101111101011 browsing 20 -010101111101011 embroidered 21 -010101111101011 arrayed 21 -010101111101011 ensconced 21 -010101111101011 raining 21 -010101111101011 tottering 21 -010101111101011 caving 23 -010101111101011 retaliating 23 -010101111101011 crusading 24 -010101111101011 napping 24 -010101111101011 teetering 25 -010101111101011 socializing 26 -010101111101011 fiddling 26 -010101111101011 encroaching 26 -010101111101011 reining 27 -010101111101011 dwelling 27 -010101111101011 bunched 27 -010101111101011 overpaying 28 -010101111101011 whistling 28 -010101111101011 dabbling 28 -010101111101011 waffling 29 -010101111101011 indulging 29 -010101111101011 deliberating 30 -010101111101011 defecting 31 -010101111101011 retrenching 31 -010101111101011 foundering 31 -010101111101011 enrolling 32 -010101111101011 elaborating 32 -010101111101011 laboring 33 -010101111101011 strewn 34 -010101111101011 howling 35 -010101111101011 sparring 36 -010101111101011 swarming 36 -010101111101011 barking 37 -010101111101011 wavering 37 -010101111101011 clustered 37 -010101111101011 descending 41 -010101111101011 drowning 41 -010101111101011 reneging 41 -010101111101011 lurking 41 -010101111101011 sucking 42 -010101111101011 praying 46 -010101111101011 steaming 48 -010101111101011 sweating 54 -010101111101011 infringing 55 -010101111101011 behaving 56 -010101111101011 defaulting 61 -010101111101011 progressing 63 -010101111101011 resting 67 -010101111101011 vacationing 76 -010101111101011 discriminating 77 -010101111101011 languishing 79 -010101111101011 cashing 79 -010101111101011 communicating 81 -010101111101011 situated 113 -010101111101011 stacked 113 -010101111101011 hovering 116 -010101111101011 marching 123 -010101111101011 testifying 123 -010101111101011 laughing 125 -010101111101011 seated 127 -010101111101011 commenting 133 -010101111101011 sailing 166 -010101111101011 intervening 167 -010101111101011 crying 173 -010101111101011 smiling 181 -010101111101011 circulating 195 -010101111101011 sleeping 209 -010101111101011 resigning 232 -010101111101011 bent 238 -010101111101011 arriving 259 -010101111101011 engaging 313 -010101111101011 campaigning 329 -010101111101011 lying 332 -010101111101011 appearing 339 -010101111101011 retiring 508 -010101111101011 staying 542 -010101111101011 proceeding 544 -010101111101011 traveling 569 -010101111101011 counting 611 -010101111101011 happening 702 -010101111101011 participating 731 -010101111101011 speaking 759 -010101111101011 sitting 991 -010101111101011 standing 994 -010101111101011 investing 1391 -010101111101011 acting 1737 -010101111101011 working 6486 -010101111101011 living 2560 -01010111110110 underusing 1 -01010111110110 out-homering 1 -01010111110110 conquesting 1 -01010111110110 over-counting 1 -01010111110110 239-175 1 -01010111110110 quick-spending 1 -01010111110110 becase 1 -01010111110110 liquifying 1 -01010111110110 re-exporting 1 -01010111110110 re-basing 1 -01010111110110 CIA-conducted 1 -01010111110110 subservicing 1 -01010111110110 attuning 1 -01010111110110 excommunicating 1 -01010111110110 superimposing 1 -01010111110110 Bouquet 1 -01010111110110 dispossessing 1 -01010111110110 re-launching 1 -01010111110110 blanking 1 -01010111110110 re-emit 1 -01010111110110 sublimating 1 -01010111110110 disabusing 1 -01010111110110 Chicago-forcing 1 -01010111110110 Boleslaus 1 -01010111110110 barbarizing 1 -01010111110110 absenting 1 -01010111110110 silvering 1 -01010111110110 cloistering 1 -01010111110110 de-indexing 1 -01010111110110 re-processing 1 -01010111110110 humped 1 -01010111110110 stengthening 1 -01010111110110 molluscs 1 -01010111110110 1649 1 -01010111110110 sequestering 1 -01010111110110 underfinancing 1 -01010111110110 2,676 1 -01010111110110 overlaying 1 -01010111110110 anathematizing 1 -01010111110110 re-registering 1 -01010111110110 strenghtening 1 -01010111110110 overarming 1 -01010111110110 misclassifying 1 -01010111110110 misdirecting 1 -01010111110110 pauperizing 1 -01010111110110 overplaying 1 -01010111110110 uncluttering 1 -01010111110110 stymying 1 -01010111110110 optioning 1 -01010111110110 unshelving 1 -01010111110110 incarcerating 1 -01010111110110 humoring 1 -01010111110110 demonetizing 1 -01010111110110 cinching 1 -01010111110110 re-enacting 1 -01010111110110 miseducating 1 -01010111110110 caculating 1 -01010111110110 shortshrifting 1 -01010111110110 prostrating 1 -01010111110110 metabolizing 1 -01010111110110 de-fanging 1 -01010111110110 delegitimizing 1 -01010111110110 tiding 1 -01010111110110 eviscerating 1 -01010111110110 liberal-style 1 -01010111110110 reinspiring 1 -01010111110110 nitrogen-based 2 -01010111110110 rebroadcasting 2 -01010111110110 blockading 2 -01010111110110 renominating 2 -01010111110110 government-licensed 2 -01010111110110 padlocking 2 -01010111110110 venerating 2 -01010111110110 perfuming 2 -01010111110110 defraying 2 -01010111110110 cueing 2 -01010111110110 electrocuting 2 -01010111110110 heartens 2 -01010111110110 short-circuiting 2 -01010111110110 collateralizing 2 -01010111110110 retouching 2 -01010111110110 slandering 2 -01010111110110 construing 2 -01010111110110 digitize 2 -01010111110110 disadvantaging 2 -01010111110110 hyperopia 2 -01010111110110 resubmitting 2 -01010111110110 imbedding 2 -01010111110110 mispricing 2 -01010111110110 parrying 2 -01010111110110 dignifying 2 -01010111110110 slurring 2 -01010111110110 forswearing 2 -01010111110110 familiarizing 2 -01010111110110 Bulat 2 -01010111110110 stymieing 2 -01010111110110 outlasting 2 -01010111110110 elasticizing 2 -01010111110110 stunting 3 -01010111110110 hand-delivering 3 -01010111110110 cocking 3 -01010111110110 vilifying 3 -01010111110110 vindicating 3 -01010111110110 scorning 3 -01010111110110 slating 3 -01010111110110 prejudicing 3 -01010111110110 alloting 3 -01010111110110 disproving 3 -01010111110110 chauffeuring 3 -01010111110110 commending 3 -01010111110110 sidetracking 3 -01010111110110 reinjecting 3 -01010111110110 toughing 3 -01010111110110 disinviting 3 -01010111110110 oppressing 3 -01010111110110 refashioning 3 -01010111110110 aggrandizing 3 -01010111110110 couching 3 -01010111110110 blighting 3 -01010111110110 criticising 3 -01010111110110 exterminating 3 -01010111110110 prearranging 3 -01010111110110 lampooning 3 -01010111110110 disliking 3 -01010111110110 duping 3 -01010111110110 ordaining 3 -01010111110110 monetizing 3 -01010111110110 extricating 3 -01010111110110 narrating 3 -01010111110110 besmirching 3 -01010111110110 repressing 3 -01010111110110 over-zealous 3 -01010111110110 reappraising 3 -01010111110110 stiffing 3 -01010111110110 appending 3 -01010111110110 reinfusing 3 -01010111110110 mollifying 4 -01010111110110 restaging 4 -01010111110110 re-electing 4 -01010111110110 counterattacking 4 -01010111110110 outmaneuvering 4 -01010111110110 decking 4 -01010111110110 lacing 4 -01010111110110 encasing 4 -01010111110110 redistributes 4 -01010111110110 accessing 4 -01010111110110 gracing 4 -01010111110110 relaunching 4 -01010111110110 remolding 4 -01010111110110 crystallizing 4 -01010111110110 elucidating 4 -01010111110110 readmitting 4 -01010111110110 reviling 4 -01010111110110 reacquiring 4 -01010111110110 resupplying 4 -01010111110110 glutting 4 -01010111110110 glorifying 4 -01010111110110 plagiarizing 4 -01010111110110 assassinating 4 -01010111110110 circumscribing 4 -01010111110110 pooh-poohing 4 -01010111110110 delineating 4 -01010111110110 outdoing 4 -01010111110110 re-regulating 4 -01010111110110 obliterating 4 -01010111110110 overstimulating 4 -01010111110110 clenching 4 -01010111110110 preoccupying 4 -01010111110110 finessing 4 -01010111110110 upstaging 4 -01010111110110 reunifying 4 -01010111110110 obligating 4 -01010111110110 ejecting 4 -01010111110110 partitioning 4 -01010111110110 prejudging 4 -01010111110110 sullying 4 -01010111110110 jerking 4 -01010111110110 lofting 4 -01010111110110 riling 5 -01010111110110 substantiating 5 -01010111110110 assuaging 5 -01010111110110 aping 5 -01010111110110 reassembling 5 -01010111110110 reorienting 5 -01010111110110 refereeing 5 -01010111110110 vanquishing 5 -01010111110110 relishing 5 -01010111110110 outraging 5 -01010111110110 ascribing 5 -01010111110110 parodying 5 -01010111110110 hamstringing 5 -01010111110110 collaring 5 -01010111110110 bludgeoning 5 -01010111110110 querying 5 -01010111110110 disentangling 5 -01010111110110 invalidates 5 -01010111110110 immersing 5 -01010111110110 upending 5 -01010111110110 diffusing 5 -01010111110110 hating 5 -01010111110110 inflaming 5 -01010111110110 muddying 5 -01010111110110 consigning 5 -01010111110110 accentuating 5 -01010111110110 dissuading 5 -01010111110110 cloaking 5 -01010111110110 underbidding 5 -01010111110110 disdaining 5 -01010111110110 parlaying 5 -01010111110110 disassociating 5 -01010111110110 recanting 5 -01010111110110 outliving 5 -01010111110110 befriending 5 -01010111110110 dreading 5 -01010111110110 counteracting 6 -01010111110110 buttressing 6 -01010111110110 impugning 6 -01010111110110 disclaiming 6 -01010111110110 ingesting 6 -01010111110110 silencing 6 -01010111110110 bestowing 6 -01010111110110 entangling 6 -01010111110110 repulsing 6 -01010111110110 overdoing 6 -01010111110110 proffering 6 -01010111110110 interdicting 6 -01010111110110 signalling 6 -01010111110110 redoing 6 -01010111110110 immobilizing 6 -01010111110110 redeveloping 6 -01010111110110 cheapening 6 -01010111110110 exemplifying 6 -01010111110110 strong-arming 6 -01010111110110 encapsulating 6 -01010111110110 surmounting 6 -01010111110110 hitching 6 -01010111110110 denigrating 6 -01010111110110 disobeying 6 -01010111110110 spoofing 6 -01010111110110 stanching 6 -01010111110110 muting 6 -01010111110110 guzzling 6 -01010111110110 underselling 6 -01010111110110 broaching 6 -01010111110110 rectifying 6 -01010111110110 rebuking 6 -01010111110110 corralling 6 -01010111110110 paraphrasing 6 -01010111110110 outwitting 6 -01010111110110 relaying 6 -01010111110110 reissuing 7 -01010111110110 outspending 7 -01010111110110 peppering 7 -01010111110110 lauding 7 -01010111110110 nabbing 7 -01010111110110 hoisting 7 -01010111110110 arbitrating 7 -01010111110110 resuscitating 7 -01010111110110 torpedoing 7 -01010111110110 subordinating 7 -01010111110110 discrediting 7 -01010111110110 detaining 7 -01010111110110 deciphering 7 -01010111110110 mothballing 7 -01010111110110 disavowing 7 -01010111110110 copping 7 -01010111110110 pardoning 7 -01010111110110 deemphasizing 7 -01010111110110 tainting 7 -01010111110110 inferring 7 -01010111110110 ambushing 7 -01010111110110 squashing 7 -01010111110110 recreating 7 -01010111110110 perpetrating 7 -01010111110110 categorizing 7 -01010111110110 subduing 7 -01010111110110 shirking 7 -01010111110110 legitimizing 7 -01010111110110 instigating 7 -01010111110110 penning 8 -01010111110110 retarding 8 -01010111110110 envisioning 8 -01010111110110 regaling 8 -01010111110110 downplaying 8 -01010111110110 codifying 8 -01010111110110 spotlighting 8 -01010111110110 bombarding 8 -01010111110110 formalizing 8 -01010111110110 reinterpreting 8 -01010111110110 monopolizing 8 -01010111110110 extinguishing 8 -01010111110110 synthesizing 8 -01010111110110 seducing 8 -01010111110110 incinerating 8 -01010111110110 segregating 8 -01010111110110 braving 8 -01010111110110 implanting 8 -01010111110110 booting 8 -01010111110110 visualizing 8 -01010111110110 propagating 8 -01010111110110 extraditing 8 -01010111110110 endowing 8 -01010111110110 bettering 8 -01010111110110 nullifying 8 -01010111110110 castigating 8 -01010111110110 reinstituting 8 -01010111110110 overextending 8 -01010111110110 lobbing 9 -01010111110110 vacuuming 9 -01010111110110 reentering 9 -01010111110110 catapulting 9 -01010111110110 tweaking 9 -01010111110110 dubbing 9 -01010111110110 debasing 9 -01010111110110 yanking 9 -01010111110110 affording 9 -01010111110110 extrapolating 9 -01010111110110 raping 9 -01010111110110 misinterpreting 9 -01010111110110 reinventing 9 -01010111110110 deriding 9 -01010111110110 mismanaging 9 -01010111110110 massaging 9 -01010111110110 dunning 9 -01010111110110 stoking 9 -01010111110110 ditching 9 -01010111110110 consummating 9 -01010111110110 stranding 9 -01010111110110 replicating 9 -01010111110110 memorizing 9 -01010111110110 remedying 9 -01010111110110 placating 9 -01010111110110 subpoenaing 9 -01010111110110 unlocking 10 -01010111110110 abrogating 10 -01010111110110 untangling 10 -01010111110110 enraging 10 -01010111110110 eliciting 10 -01010111110110 indemnifying 10 -01010111110110 junking 10 -01010111110110 dramatizing 10 -01010111110110 equalizing 10 -01010111110110 transplanting 10 -01010111110110 upping 10 -01010111110110 inaugurating 10 -01010111110110 saturating 10 -01010111110110 reclassifying 10 -01010111110110 mouthing 10 -01010111110110 validating 10 -01010111110110 faulting 10 -01010111110110 eradicating 10 -01010111110110 interrogating 10 -01010111110110 chastising 10 -01010111110110 tricking 10 -01010111110110 excoriating 10 -01010111110110 fortifying 10 -01010111110110 jettisoning 11 -01010111110110 camouflaging 11 -01010111110110 co-sponsoring 11 -01010111110110 anchoring 11 -01010111110110 skewing 11 -01010111110110 retrieving 11 -01010111110110 showering 11 -01010111110110 popularizing 11 -01010111110110 promulgating 11 -01010111110110 fusing 11 -01010111110110 refuting 11 -01010111110110 blanketing 11 -01010111110110 politicizing 11 -01010111110110 dismembering 11 -01010111110110 squelching 11 -01010111110110 quieting 11 -01010111110110 expediting 11 -01010111110110 forestalling 12 -01010111110110 photographing 12 -01010111110110 activating 12 -01010111110110 evicting 12 -01010111110110 espousing 12 -01010111110110 emulating 12 -01010111110110 tarnishing 12 -01010111110110 assailing 12 -01010111110110 imprisoning 12 -01010111110110 slighting 12 -01010111110110 impressing 12 -01010111110110 snubbing 12 -01010111110110 embodying 12 -01010111110110 prepaying 12 -01010111110110 reactivating 12 -01010111110110 dispersing 12 -01010111110110 denting 12 -01010111110110 dedicating 12 -01010111110110 dissecting 12 -01010111110110 chucking 12 -01010111110110 quantifying 12 -01010111110110 unseating 12 -01010111110110 reuniting 12 -01010111110110 aborting 12 -01010111110110 denationalizing 12 -01010111110110 renouncing 12 -01010111110110 bankrupting 12 -01010111110110 terrorizing 12 -01010111110110 snaring 13 -01010111110110 priming 13 -01010111110110 straddling 13 -01010111110110 relegating 13 -01010111110110 allying 13 -01010111110110 pre-empting 13 -01010111110110 precluding 13 -01010111110110 foiling 13 -01010111110110 conjuring 13 -01010111110110 disapproving 13 -01010111110110 simulating 13 -01010111110110 bankrolling 13 -01010111110110 misstating 13 -01010111110110 censoring 13 -01010111110110 imperiling 13 -01010111110110 summoning 13 -01010111110110 reprinting 13 -01010111110110 compressing 13 -01010111110110 re-creating 14 -01010111110110 ridiculing 14 -01010111110110 subverting 14 -01010111110110 overestimating 14 -01010111110110 effecting 14 -01010111110110 repatriating 14 -01010111110110 flunking 14 -01010111110110 revolutionizing 14 -01010111110110 showcasing 14 -01010111110110 commercializing 14 -01010111110110 neutralizing 15 -01010111110110 computerizing 15 -01010111110110 reimposing 15 -01010111110110 rejoining 15 -01010111110110 negating 15 -01010111110110 blunting 15 -01010111110110 coercing 15 -01010111110110 quashing 15 -01010111110110 re-entering 15 -01010111110110 redirecting 15 -01010111110110 sowing 15 -01010111110110 conquering 15 -01010111110110 torturing 15 -01010111110110 chiding 15 -01010111110110 marshaling 15 -01010111110110 elevating 15 -01010111110110 congratulating 15 -01010111110110 pinpointing 15 -01010111110110 deleting 15 -01010111110110 deporting 15 -01010111110110 taunting 15 -01010111110110 decentralizing 15 -01010111110110 flinging 15 -01010111110110 reassigning 16 -01010111110110 extorting 16 -01010111110110 augmenting 16 -01010111110110 entrenching 16 -01010111110110 divorcing 16 -01010111110110 devouring 16 -01010111110110 outfitting 16 -01010111110110 appraising 16 -01010111110110 infiltrating 16 -01010111110110 apportioning 16 -01010111110110 salvaging 16 -01010111110110 de-emphasizing 16 -01010111110110 taming 16 -01010111110110 piloting 16 -01010111110110 obeying 16 -01010111110110 pronouncing 16 -01010111110110 replenishing 16 -01010111110110 fingering 17 -01010111110110 re-establishing 17 -01010111110110 empowering 17 -01010111110110 reestablishing 17 -01010111110110 cornering 17 -01010111110110 shepherding 17 -01010111110110 mortgaging 17 -01010111110110 reconstructing 17 -01010111110110 assimilating 17 -01010111110110 condoning 17 -01010111110110 overshadowing 17 -01010111110110 confiscating 17 -01010111110110 impairing 17 -01010111110110 antagonizing 17 -01010111110110 forsaking 17 -01010111110110 disconnecting 17 -01010111110110 lumping 17 -01010111110110 nationalizing 17 -01010111110110 demolishing 17 -01010111110110 berating 18 -01010111110110 indicting 18 -01010111110110 dispelling 18 -01010111110110 reinvigorating 18 -01010111110110 convicting 18 -01010111110110 supplanting 18 -01010111110110 lamenting 18 -01010111110110 reasserting 18 -01010111110110 obscuring 18 -01010111110110 belittling 18 -01010111110110 disguising 18 -01010111110110 redistributing 18 -01010111110110 sabotaging 18 -01010111110110 discarding 19 -01010111110110 amortizing 19 -01010111110110 disseminating 19 -01010111110110 eschewing 19 -01010111110110 reproducing 19 -01010111110110 bilking 19 -01010111110110 perpetuating 19 -01010111110110 mastering 19 -01010111110110 trashing 19 -01010111110110 patting 19 -01010111110110 deploring 19 -01010111110110 saddling 20 -01010111110110 designating 20 -01010111110110 culling 20 -01010111110110 plying 20 -01010111110110 reintroducing 20 -01010111110110 divulging 20 -01010111110110 defusing 20 -01010111110110 equating 20 -01010111110110 netting 20 -01010111110110 fomenting 20 -01010111110110 hyping 20 -01010111110110 harnessing 20 -01010111110110 disallowing 20 -01010111110110 appeasing 20 -01010111110110 weaning 21 -01010111110110 aligning 21 -01010111110110 gutting 21 -01010111110110 earmarking 21 -01010111110110 concocting 21 -01010111110110 conserving 21 -01010111110110 derailing 21 -01010111110110 repudiating 22 -01010111110110 ferrying 22 -01010111110110 lambasting 22 -01010111110110 diagnosing 22 -01010111110110 infecting 22 -01010111110110 thrusting 22 -01010111110110 burdening 22 -01010111110110 deflecting 22 -01010111110110 assaulting 22 -01010111110110 levying 23 -01010111110110 tolerating 23 -01010111110110 clouding 23 -01010111110110 perfecting 23 -01010111110110 flexing 23 -01010111110110 classifying 23 -01010111110110 overtaking 23 -01010111110110 sidestepping 23 -01010111110110 quelling 23 -01010111110110 standardizing 23 -01010111110110 overthrowing 24 -01010111110110 precipitating 24 -01010111110110 revoking 24 -01010111110110 arousing 24 -01010111110110 heeding 24 -01010111110110 summarizing 24 -01010111110110 trapping 24 -01010111110110 expelling 24 -01010111110110 equipping 24 -01010111110110 exhorting 24 -01010111110110 enriching 24 -01010111110110 outbidding 25 -01010111110110 evoking 25 -01010111110110 rescinding 25 -01010111110110 reciting 25 -01010111110110 donning 25 -01010111110110 understating 25 -01010111110110 rearranging 25 -01010111110110 recapturing 25 -01010111110110 usurping 25 -01010111110110 ridding 26 -01010111110110 decrying 26 -01010111110110 resurrecting 26 -01010111110110 tempering 26 -01010111110110 isolating 26 -01010111110110 manning 26 -01010111110110 simplifying 26 -01010111110110 disregarding 27 -01010111110110 betraying 27 -01010111110110 renaming 27 -01010111110110 contradicting 27 -01010111110110 alleviating 27 -01010111110110 masterminding 27 -01010111110110 mimicking 27 -01010111110110 reconciling 28 -01010111110110 imitating 28 -01010111110110 rehabilitating 28 -01010111110110 devaluing 28 -01010111110110 framing 28 -01010111110110 pegging 28 -01010111110110 appropriating 28 -01010111110110 skirting 28 -01010111110110 enlisting 29 -01010111110110 rebuffing 29 -01010111110110 erecting 29 -01010111110110 spurning 29 -01010111110110 restating 29 -01010111110110 coaxing 29 -01010111110110 championing 29 -01010111110110 overruling 29 -01010111110110 masking 29 -01010111110110 redefining 29 -01010111110110 displacing 29 -01010111110110 inciting 29 -01010111110110 supplementing 29 -01010111110110 orchestrating 30 -01010111110110 revitalizing 30 -01010111110110 legalizing 30 -01010111110110 automating 31 -01010111110110 prolonging 31 -01010111110110 curing 31 -01010111110110 sparing 31 -01010111110110 discharging 31 -01010111110110 alerting 31 -01010111110110 depleting 31 -01010111110110 scuttling 32 -01010111110110 conveying 32 -01010111110110 renovating 32 -01010111110110 sheltering 32 -01010111110110 toppling 32 -01010111110110 unleashing 32 -01010111110110 extolling 32 -01010111110110 murdering 32 -01010111110110 invalidating 33 -01010111110110 hosting 33 -01010111110110 heralding 33 -01010111110110 underestimating 33 -01010111110110 exhibiting 33 -01010111110110 buoying 33 -01010111110110 slapping 34 -01010111110110 suppressing 34 -01010111110110 bucking 34 -01010111110110 dodging 34 -01010111110110 characterizing 34 -01010111110110 duplicating 34 -01010111110110 disciplining 35 -01010111110110 hailing 35 -01010111110110 misusing 35 -01010111110110 certifying 36 -01010111110110 reimbursing 36 -01010111110110 recounting 36 -01010111110110 outlawing 36 -01010111110110 hindering 36 -01010111110110 confounding 36 -01010111110110 boycotting 36 -01010111110110 restarting 37 -01010111110110 interrupting 37 -01010111110110 halving 37 -01010111110110 uncovering 37 -01010111110110 recapitalizing 37 -01010111110110 recouping 38 -01010111110110 reinvesting 38 -01010111110110 safeguarding 38 -01010111110110 gauging 38 -01010111110110 sipping 38 -01010111110110 clutching 39 -01010111110110 accomplishing 39 -01010111110110 redesigning 39 -01010111110110 attaining 39 -01010111110110 channeling 39 -01010111110110 furthering 40 -01010111110110 trumpeting 40 -01010111110110 reaffirming 40 -01010111110110 burying 40 -01010111110110 dispatching 41 -01010111110110 misrepresenting 41 -01010111110110 impeding 41 -01010111110110 reinstating 41 -01010111110110 shielding 41 -01010111110110 crafting 42 -01010111110110 arming 42 -01010111110110 omitting 42 -01010111110110 utilizing 42 -01010111110110 facilitating 42 -01010111110110 overstating 42 -01010111110110 penalizing 43 -01010111110110 forgoing 43 -01010111110110 abetting 44 -01010111110110 enlarging 44 -01010111110110 inventing 44 -01010111110110 subjecting 44 -01010111110110 inhibiting 45 -01010111110110 exaggerating 45 -01010111110110 severing 45 -01010111110110 waiving 46 -01010111110110 relinquishing 46 -01010111110110 instructing 46 -01010111110110 circumventing 46 -01010111110110 neglecting 46 -01010111110110 escorting 46 -01010111110110 propelling 48 -01010111110110 privatizing 48 -01010111110110 countering 48 -01010111110110 angering 49 -01010111110110 deterring 49 -01010111110110 fining 49 -01010111110110 extracting 50 -01010111110110 inserting 50 -01010111110110 repealing 51 -01010111110110 blasting 51 -01010111110110 distorting 51 -01010111110110 deregulating 51 -01010111110110 ruining 51 -01010111110110 highlighting 51 -01010111110110 rescuing 52 -01010111110110 publicizing 52 -01010111110110 locating 52 -01010111110110 vetoing 52 -01010111110110 obstructing 53 -01010111110110 justifying 53 -01010111110110 attaching 54 -01010111110110 spotting 54 -01010111110110 reselling 55 -01010111110110 renegotiating 55 -01010111110110 digesting 55 -01010111110110 inducing 56 -01010111110110 rewriting 56 -01010111110110 hampering 56 -01010111110110 clarifying 56 -01010111110110 harming 57 -01010111110110 swallowing 57 -01010111110110 donating 57 -01010111110110 instituting 57 -01010111110110 depriving 57 -01010111110110 hawking 57 -01010111110110 affirming 58 -01010111110110 guarding 59 -01010111110110 contacting 59 -01010111110110 ousting 59 -01010111110110 voicing 60 -01010111110110 fostering 60 -01010111110110 relieving 61 -01010111110110 capping 61 -01010111110110 inspecting 61 -01010111110110 minimizing 62 -01010111110110 formulating 62 -01010111110110 transmitting 63 -01010111110110 abolishing 63 -01010111110110 tackling 64 -01010111110110 exempting 64 -01010111110110 misappropriating 64 -01010111110110 endangering 64 -01010111110110 breaching 65 -01010111110110 bribing 65 -01010111110110 discontinuing 65 -01010111110110 injecting 65 -01010111110110 evading 65 -01010111110110 insuring 65 -01010111110110 amending 66 -01010111110110 exacerbating 66 -01010111110110 structuring 66 -01010111110110 complicating 66 -01010111110110 combating 66 -01010111110110 undercutting 68 -01010111110110 welcoming 68 -01010111110110 bypassing 69 -01010111110110 divesting 69 -01010111110110 overturning 70 -01010111110110 abusing 70 -01010111110110 concealing 72 -01010111110110 erasing 72 -01010111110110 disrupting 72 -01010111110110 underscoring 73 -01010111110110 electing 73 -01010111110110 honoring 74 -01010111110110 occupying 74 -01010111110110 transporting 74 -01010111110110 liberalizing 74 -01010111110110 jeopardizing 74 -01010111110110 overcoming 74 -01010111110110 compiling 75 -01010111110110 outperforming 76 -01010111110110 condemning 78 -01010111110110 initiating 79 -01010111110110 funneling 79 -01010111110110 reforming 80 -01010111110110 modifying 80 -01010111110110 pitting 80 -01010111110110 compensating 80 -01010111110110 denouncing 81 -01010111110110 shunning 81 -01010111110110 incorporating 81 -01010111110110 educating 81 -01010111110110 outpacing 82 -01010111110110 substituting 82 -01010111110110 mandating 82 -01010111110110 defying 82 -01010111110110 provoking 82 -01010111110110 repaying 83 -01010111110110 falsifying 83 -01010111110110 diluting 83 -01010111110110 inflating 84 -01010111110110 overhauling 84 -01010111110110 averting 84 -01010111110110 thwarting 86 -01010111110110 punishing 87 -01010111110110 reinforcing 87 -01010111110110 dissolving 88 -01010111110110 invoking 88 -01010111110110 mixing 88 -01010111110110 storing 88 -01010111110110 deferring 89 -01010111110110 alienating 89 -01010111110110 detecting 89 -01010111110110 reminding 90 -01010111110110 enacting 91 -01010111110110 allocating 94 -01010111110110 depicting 94 -01010111110110 portraying 95 -01010111110110 forbidding 96 -01010111110110 curtailing 97 -01010111110110 deducting 98 -01010111110110 fulfilling 98 -01010111110110 observing 99 -01010111110110 paving 99 -01010111110110 repairing 99 -01010111110110 embracing 101 -01010111110110 notifying 101 -01010111110110 maximizing 101 -01010111110110 luring 103 -01010111110110 modernizing 104 -01010111110110 integrating 104 -01010111110110 deploying 104 -01010111110110 reorganizing 106 -01010111110110 appointing 106 -01010111110110 sustaining 106 -01010111110110 scrapping 108 -01010111110110 transforming 108 -01010111110110 praising 109 -01010111110110 administering 110 -01010111110110 influencing 111 -01010111110110 renewing 112 -01010111110110 assigning 113 -01010111110110 correcting 113 -01010111110110 informing 115 -01010111110110 exposing 115 -01010111110110 terminating 116 -01010111110110 prosecuting 116 -01010111110110 mentioning 118 -01010111110110 dismissing 118 -01010111110110 interpreting 120 -01010111110110 defeating 120 -01010111110110 postponing 120 -01010111110110 exploiting 121 -01010111110110 dominating 122 -01010111110110 displaying 122 -01010111110110 manipulating 126 -01010111110110 defrauding 127 -01010111110110 executing 128 -01010111110110 undermining 129 -01010111110110 wooing 129 -01010111110110 assuring 129 -01010111110110 diverting 132 -01010111110110 dividing 133 -01010111110110 squeezing 134 -01010111110110 supervising 134 -01010111110110 assisting 135 -01010111110110 capturing 138 -01010111110110 sparking 138 -01010111110110 spurring 139 -01010111110110 assembling 143 -01010111110110 suspending 144 -01010111110110 resuming 144 -01010111110110 subsidizing 144 -01010111110110 bolstering 145 -01010111110110 separating 148 -01010111110110 revising 149 -01010111110110 tapping 151 -01010111110110 outlining 151 -01010111110110 repeating 155 -01010111110110 enhancing 155 -01010111110110 freeing 156 -01010111110110 tying 157 -01010111110110 altering 158 -01010111110110 canceling 160 -01010111110110 endorsing 163 -01010111110110 halting 163 -01010111110110 touting 163 -01010111110110 employing 165 -01010111110110 exchanging 167 -01010111110110 coordinating 169 -01010111110110 securing 172 -01010111110110 upholding 174 -01010111110110 solving 174 -01010111110110 quoting 174 -01010111110110 defining 175 -01010111110110 advocating 175 -01010111110110 submitting 177 -01010111110110 reviving 181 -01010111110110 selecting 190 -01010111110110 persuading 191 -01010111110110 pressuring 192 -01010111110110 presenting 194 -01010111110110 inviting 195 -01010111110110 blaming 195 -01010111110110 committing 196 -01010111110110 guaranteeing 196 -01010111110110 preserving 197 -01010111110110 analyzing 201 -01010111110110 authorizing 202 -01010111110110 valuing 203 -01010111110110 assessing 203 -01010111110110 protesting 205 -01010111110110 installing 205 -01010111110110 taxing 207 -01010111110110 fueling 218 -01010111110110 identifying 218 -01010111110110 triggering 222 -01010111110110 curbing 225 -01010111110110 enforcing 227 -01010111110110 regulating 227 -01010111110110 topping 229 -01010111110110 calculating 230 -01010111110110 favoring 231 -01010111110110 comparing 235 -01010111110110 directing 237 -01010111110110 destroying 238 -01010111110110 aiding 251 -01010111110110 stopping 252 -01010111110110 abandoning 261 -01010111110110 criticizing 269 -01010111110110 releasing 269 -01010111110110 expressing 271 -01010111110110 emphasizing 272 -01010111110110 naming 274 -01010111110110 delivering 276 -01010111110110 transferring 276 -01010111110110 disclosing 277 -01010111110110 restoring 286 -01010111110110 prohibiting 288 -01010111110110 designing 289 -01010111110110 accusing 290 -01010111110110 achieving 292 -01010111110110 implementing 296 -01010111110110 enabling 297 -01010111110110 addressing 299 -01010111110110 marking 300 -01010111110110 reversing 302 -01010111110110 restricting 305 -01010111110110 resolving 306 -01010111110110 overseeing 311 -01010111110110 retaining 313 -01010111110110 ignoring 316 -01010111110110 distributing 330 -01010111110110 approving 333 -01010111110110 banning 339 -01010111110110 delaying 343 -01010111110110 permitting 344 -01010111110110 supplying 351 -01010111110110 combining 352 -01010111110110 arranging 353 -01010111110110 linking 362 -01010111110110 ordering 367 -01010111110110 rejecting 373 -01010111110110 describing 375 -01010111110110 adopting 379 -01010111110110 attacking 382 -01010111110110 matching 403 -01010111110110 converting 410 -01010111110110 granting 418 -01010111110110 avoiding 444 -01010111110110 preventing 452 -01010111110110 imposing 468 -01010111110110 introducing 470 -01010111110110 removing 479 -01010111110110 prompting 480 -01010111110110 blocking 499 -01010111110110 completing 510 -01010111110110 establishing 519 -01010111110110 defending 524 -01010111110110 placing 533 -01010111110110 replacing 540 -01010111110110 treating 542 -01010111110110 opposing 568 -01010111110110 extending 575 -01010111110110 protecting 584 -01010111110110 barring 593 -01010111110110 letting 601 -01010111110110 filling 649 -01010111110110 denying 663 -01010111110110 announcing 712 -01010111110110 limiting 716 -01010111110110 maintaining 720 -01010111110110 promoting 736 -01010111110110 violating 738 -01010111110110 accepting 759 -01010111110110 eliminating 771 -01010111110110 joining 815 -01010111110110 boosting 869 -01010111110110 forcing 952 -01010111110110 sending 956 -01010111110110 supporting 1015 -01010111110110 causing 1077 -01010111110110 requiring 1493 -01010111110110 bringing 1504 -01010111110110 creating 1548 -01010111110110 setting 1815 -01010111110110 allowing 1971 -01010111110110 keeping 2020 -01010111110110 providing 2059 -01010111110110 reducing 2320 -01010111110110 leaving 2451 -01010111110110 raising 2800 -01010111110110 giving 3692 -01010111110110 using 5391 -01010111110110 making 10400 -0101011111011100 bin-busters 1 -0101011111011100 Lookin 1 -0101011111011100 irreconcilably 1 -0101011111011100 surmising 1 -0101011111011100 GarBarge 1 -0101011111011100 dinning 1 -0101011111011100 common-interest 1 -0101011111011100 inimitably 1 -0101011111011100 DENTISTRY 1 -0101011111011100 business-the 1 -0101011111011100 penmaker 1 -0101011111011100 Chi-Chi-Jima 1 -0101011111011100 abolutely 1 -0101011111011100 bone-induction 1 -0101011111011100 anti-small 1 -0101011111011100 axiomatically 1 -0101011111011100 rarin 1 -0101011111011100 hazarding 1 -0101011111011100 gaucheness 1 -0101011111011100 re-sorted 1 -0101011111011100 Weiter 1 -0101011111011100 by-and-large 1 -0101011111011100 profferring 1 -0101011111011100 screwin 1 -0101011111011100 fighter-engine 1 -0101011111011100 fangling 1 -0101011111011100 diversifing 1 -0101011111011100 Ronzi 1 -0101011111011100 white-knuckling 1 -0101011111011100 Rereading 1 -0101011111011100 put/store/carry 1 -0101011111011100 going-out-of-business-sale 1 -0101011111011100 imbed 1 -0101011111011100 ivnestigating 1 -0101011111011100 demonopolize 1 -0101011111011100 CSCEC 1 -0101011111011100 super-hardened 1 -0101011111011100 deletes 2 -0101011111011100 pertriz 2 -0101011111011100 penciling 2 -0101011111011100 Slavery 2 -0101011111011100 MAMMOTH 2 -0101011111011100 optimally 2 -0101011111011100 gift-wrapping 2 -0101011111011100 dead-on 2 -0101011111011100 barraging 2 -0101011111011100 fanatically 2 -0101011111011100 unambitious 2 -0101011111011100 overregulating 3 -0101011111011100 qualitatively 3 -0101011111011100 mistreating 3 -0101011111011100 rededicating 3 -0101011111011100 excusing 4 -0101011111011100 terrifically 7 -0101011111011100 Ze 7 -0101011111011100 reevaluating 11 -0101011111011100 slugging 23 -0101011111011100 augur 25 -0101011111011100 faring 64 -0101011111011100 bode 102 -0101011111011100 precisely 630 -0101011111011100 absolutely 896 -0101011111011100 exactly 1476 -0101011111011100 doing 5349 -0101011111011100 quite 2850 -0101011111011101 propounding 1 -0101011111011101 outearning 1 -0101011111011101 lead-managing 1 -0101011111011101 over-reaching 1 -0101011111011101 lowone 1 -0101011111011101 stomaching 1 -0101011111011101 haling 1 -0101011111011101 Stefka 1 -0101011111011101 inscrutably 1 -0101011111011101 necessary-if 1 -0101011111011101 underminining 1 -0101011111011101 Novacorp 1 -0101011111011101 director/North 1 -0101011111011101 made. 1 -0101011111011101 chiseling 1 -0101011111011101 outfoxing 1 -0101011111011101 essentally 1 -0101011111011101 required. 1 -0101011111011101 acculturating 1 -0101011111011101 esssentially 1 -0101011111011101 sluicing 1 -0101011111011101 KEZO 1 -0101011111011101 re-releasing 1 -0101011111011101 indexing-adjusting 1 -0101011111011101 vacuum-cleaning 1 -0101011111011101 strugggling 1 -0101011111011101 one-thirteenth 1 -0101011111011101 sufficently 1 -0101011111011101 extinquishing 1 -0101011111011101 revaluating 1 -0101011111011101 Tyche 1 -0101011111011101 skeptical. 1 -0101011111011101 based- 1 -0101011111011101 Xanthe 1 -0101011111011101 oversaturating 1 -0101011111011101 outproducing 1 -0101011111011101 Yuasa-Exide 1 -0101011111011101 reinvestigating 1 -0101011111011101 xerigation 1 -0101011111011101 jaw-dropping 1 -0101011111011101 mispronouncing 1 -0101011111011101 undergrowing 1 -0101011111011101 virutally 1 -0101011111011101 reconfirming 2 -0101011111011101 deindustrializing 2 -0101011111011101 discomforted 2 -0101011111011101 eying 2 -0101011111011101 contenting 2 -0101011111011101 obstensibly 2 -0101011111011101 outgaining 2 -0101011111011101 bastardizing 2 -0101011111011101 outdrawing 2 -0101011111011101 outgrowing 2 -0101011111011101 foisting 2 -0101011111011101 twitted 2 -0101011111011101 Breathalyzer 2 -0101011111011101 gleaning 3 -0101011111011101 criss-crossing 3 -0101011111011101 calorie-and-cholesterol 3 -0101011111011101 burglarized 3 -0101011111011101 perverting 3 -0101011111011101 inundating 4 -0101011111011101 outrunning 4 -0101011111011101 steeling 4 -0101011111011101 overemphasized 5 -0101011111011101 misreported 7 -0101011111011101 overstepping 7 -0101011111011101 humanly 8 -0101011111011101 recognizably 9 -0101011111011101 re-evaluating 15 -0101011111011101 reexamining 16 -0101011111011101 minding 19 -0101011111011101 re-examining 25 -0101011111011101 spearheading 37 -0101011111011101 busily 48 -0101011111011101 readying 48 -0101011111011101 reassessing 49 -0101011111011101 witnessing 62 -0101011111011101 reconsidering 69 -0101011111011101 eyeing 69 -0101011111011101 pondering 73 -0101011111011101 mulling 93 -0101011111011101 contesting 101 -0101011111011101 scrutinizing 104 -0101011111011101 probing 139 -0101011111011101 projecting 167 -0101011111011101 debating 181 -0101011111011101 contemplating 196 -0101011111011101 undergoing 207 -0101011111011101 anticipating 228 -0101011111011101 resisting 239 -0101011111011101 nearing 242 -0101011111011101 recalling 255 -0101011111011101 experiencing 288 -0101011111011101 weighing 319 -0101011111011101 evaluating 355 -0101011111011101 examining 413 -0101011111011101 deemed 430 -0101011111011101 exploring 495 -0101011111011101 awaiting 547 -0101011111011101 discussing 949 -0101011111011101 expecting 958 -0101011111011101 reviewing 999 -0101011111011101 studying 1164 -0101011111011101 rated 1487 -0101011111011101 investigating 1599 -0101011111011101 considering 4073 -0101011111011101 considered 5181 -0101011111011110 10,830 1 -0101011111011110 1,787,600 1 -0101011111011110 646,843 1 -0101011111011110 679,435 1 -0101011111011110 2,989 1 -0101011111011110 154,158 1 -0101011111011110 588,196 1 -0101011111011110 abrading 1 -0101011111011110 653,704 1 -0101011111011110 291,536 1 -0101011111011110 27,277 1 -0101011111011110 41,875 1 -0101011111011110 1,772,000 1 -0101011111011110 1,743,100 1 -0101011111011110 1,768,200 1 -0101011111011110 75,400 1 -0101011111011110 M-what-have-you 1 -0101011111011110 6,606,255 1 -0101011111011110 205,898,800 1 -0101011111011110 repenting 1 -0101011111011110 299,634 1 -0101011111011110 2,229,500 1 -0101011111011110 4,813 1 -0101011111011110 611,409 1 -0101011111011110 2,254,600 1 -0101011111011110 2,200,900 1 -0101011111011110 5,246,195 1 -0101011111011110 2,214,500 1 -0101011111011110 denuding 1 -0101011111011110 1,714 1 -0101011111011110 17,276 1 -0101011111011110 2,081,100 1 -0101011111011110 impaneling 1 -0101011111011110 3.6496 1 -0101011111011110 7,476 1 -0101011111011110 2,133,900 1 -0101011111011110 finished-products 1 -0101011111011110 99,606 1 -0101011111011110 169,924 1 -0101011111011110 352,389 1 -0101011111011110 2,091,500 1 -0101011111011110 32,263 1 -0101011111011110 27,526 1 -0101011111011110 47,708 1 -0101011111011110 2,156 1 -0101011111011110 242,825,000 1 -0101011111011110 evidence-diagnosing 1 -0101011111011110 160,235 1 -0101011111011110 68,744 1 -0101011111011110 1,727,800 1 -0101011111011110 3,230,100 1 -0101011111011110 25,206 1 -0101011111011110 348,456 1 -0101011111011110 1,716,700 1 -0101011111011110 5,700,508 1 -0101011111011110 24,095 1 -0101011111011110 369,597 1 -0101011111011110 7,211,974 1 -0101011111011110 413,912 1 -0101011111011110 21,477 1 -0101011111011110 1,880,800 1 -0101011111011110 4,212,510 1 -0101011111011110 1,952,100 1 -0101011111011110 14,848,000 1 -0101011111011110 1,901,700 1 -0101011111011110 6,965,700 1 -0101011111011110 137,030 1 -0101011111011110 19,954 1 -0101011111011110 42,047 1 -0101011111011110 28,564 1 -0101011111011110 1,798,200 1 -0101011111011110 5,876,312 1 -0101011111011110 582,300 1 -0101011111011110 256,271 1 -0101011111011110 1,700,300 1 -0101011111011110 6,333,123 1 -0101011111011110 24,186 1 -0101011111011110 80,024 1 -0101011111011110 6,177,900 1 -0101011111011110 159,544 1 -0101011111011110 1,597,800 1 -0101011111011110 396,857 1 -0101011111011110 2,175,300 1 -0101011111011110 2,290,200 1 -0101011111011110 2,535,900 1 -0101011111011110 62,957 1 -0101011111011110 26,302 1 -0101011111011110 3,292,900 1 -0101011111011110 5,586 1 -0101011111011110 172,391 1 -0101011111011110 3,268,900 1 -0101011111011110 1,689 1 -0101011111011110 2,444 1 -0101011111011110 161,400 1 -0101011111011110 148,068 1 -0101011111011110 102,352 1 -0101011111011110 73,444 1 -0101011111011110 3,147,000 1 -0101011111011110 566,273 1 -0101011111011110 spoon-feeding 1 -0101011111011110 2,283 1 -0101011111011110 3,727 1 -0101011111011110 193,772 1 -0101011111011110 535,531 1 -0101011111011110 607,429 1 -0101011111011110 163,518 1 -0101011111011110 2,892,200 1 -0101011111011110 28,323 1 -0101011111011110 16,330 1 -0101011111011110 15,451 1 -0101011111011110 2,688,500 1 -0101011111011110 2,635,700 1 -0101011111011110 10,582,500 1 -0101011111011110 569,366 1 -0101011111011110 2,752 1 -0101011111011110 3,077,200 1 -0101011111011110 236,735 1 -0101011111011110 2,490,400 1 -0101011111011110 3,188,500 1 -0101011111011110 tiptop 1 -0101011111011110 2,566,900 1 -0101011111011110 out-banana-ing 1 -0101011111011110 3,056,100 1 -0101011111011110 4,668,975 1 -0101011111011110 6,938,500 1 -0101011111011110 2,245,700 1 -0101011111011110 97th 1 -0101011111011110 puking 1 -0101011111011110 2,315,200 1 -0101011111011110 13,105,000 1 -0101011111011110 2,157,700 1 -0101011111011110 371,150 1 -0101011111011110 627,905 1 -0101011111011110 550,307 1 -0101011111011110 34,341,000 1 -0101011111011110 misquoting 1 -0101011111011110 91,220 1 -0101011111011110 up-to-the-decade 1 -0101011111011110 1,732,100 1 -0101011111011110 5,246 1 -0101011111011110 3,121,800 1 -0101011111011110 207,575,317 1 -0101011111011110 25,513 1 -0101011111011110 2,779,300 1 -0101011111011110 3,100,400 1 -0101011111011110 702,157 1 -0101011111011110 186,353 1 -0101011111011110 2,939,500 1 -0101011111011110 612,632 1 -0101011111011110 218,651 1 -0101011111011110 20,791,000 1 -0101011111011110 2,475,000 1 -0101011111011110 1,414 1 -0101011111011110 2,061 1 -0101011111011110 underserving 1 -0101011111011110 57,972 1 -0101011111011110 52,189 1 -0101011111011110 85,500 1 -0101011111011110 2,013,000 1 -0101011111011110 150,872 1 -0101011111011110 2,076,600 1 -0101011111011110 6,942,900 1 -0101011111011110 2,872,200 1 -0101011111011110 him-either 1 -0101011111011110 502,244 1 -0101011111011110 2,213,500 1 -0101011111011110 scoping 1 -0101011111011110 325,282 1 -0101011111011110 4,395,000 1 -0101011111011110 263,075 1 -0101011111011110 86,567 1 -0101011111011110 1,034 1 -0101011111011110 339,021 1 -0101011111011110 240,610 1 -0101011111011110 326,626 1 -0101011111011110 969,894 1 -0101011111011110 130,687 1 -0101011111011110 breezing 1 -0101011111011110 258,039 1 -0101011111011110 967,960 1 -0101011111011110 205,191 1 -0101011111011110 592,401 1 -0101011111011110 11,722 1 -0101011111011110 115,254 1 -0101011111011110 99,268 1 -0101011111011110 omnipresence 1 -0101011111011110 5,596,665 1 -0101011111011110 16,924 1 -0101011111011110 1,977,800 1 -0101011111011110 32,224 1 -0101011111011110 998,240 1 -0101011111011110 slops 1 -0101011111011110 10,062,730 1 -0101011111011110 634,322 1 -0101011111011110 492,659 1 -0101011111011110 38,327 1 -0101011111011110 52,830,000 1 -0101011111011110 78,753 1 -0101011111011110 glimpsing 1 -0101011111011110 6,518,224 1 -0101011111011110 354,430 1 -0101011111011110 7,928,720 1 -0101011111011110 2,834 1 -0101011111011110 1,774,500 1 -0101011111011110 119,393 1 -0101011111011110 6,960,000 1 -0101011111011110 17,141 1 -0101011111011110 88,544 1 -0101011111011110 53,479 1 -0101011111011110 1,981,100 1 -0101011111011110 4,277,000 1 -0101011111011110 Junefrom 1 -0101011111011110 Panam 1 -0101011111011110 31,069,423 1 -0101011111011110 3,140,975 1 -0101011111011110 48,456 1 -0101011111011110 4,995,000 1 -0101011111011110 4,536,169 1 -0101011111011110 666,859 1 -0101011111011110 736,545 1 -0101011111011110 tearjerker 1 -0101011111011110 6,514.97 1 -0101011111011110 9,162,673 1 -0101011111011110 cuffing 1 -0101011111011110 196,960 1 -0101011111011110 reverse-engineering 1 -0101011111011110 24,335 1 -0101011111011110 169,562 1 -0101011111011110 29,130 1 -0101011111011110 vouchsafed 2 -0101011111011110 174,376 2 -0101011111011110 15,700 2 -0101011111011110 out-earning 2 -0101011111011110 innocuously 2 -0101011111011110 776.92 2 -0101011111011110 notching 2 -0101011111011110 tip-top 2 -0101011111011110 1,778,300 2 -0101011111011110 pre-revolution 2 -0101011111011110 2,612 2 -0101011111011110 cremated 2 -0101011111011110 2,119,800 2 -0101011111011110 63,642 2 -0101011111011110 17,511 2 -0101011111011110 1,774 3 -0101011111011110 maligning 3 -0101011111011110 detaching 3 -0101011111011110 regionalizing 3 -0101011111011110 devolving 3 -0101011111011110 slopping 3 -0101011111011110 enunciating 3 -0101011111011110 enclosing 3 -0101011111011110 prizing 3 -0101011111011110 acing 3 -0101011111011110 tormenting 3 -0101011111011110 administrating 3 -0101011111011110 spherical 3 -0101011111011110 147,496 3 -0101011111011110 prophesying 3 -0101011111011110 loosing 4 -0101011111011110 commandeering 4 -0101011111011110 whetting 4 -0101011111011110 consecrating 4 -0101011111011110 marshalling 4 -0101011111011110 geostationary 5 -0101011111011110 worshipping 5 -0101011111011110 recalculating 5 -0101011111011110 Badia 5 -0101011111011110 gritting 5 -0101011111011110 piecing 5 -0101011111011110 lulling 6 -0101011111011110 stashing 7 -0101011111011110 spouting 7 -0101011111011110 expending 8 -0101011111011110 dousing 8 -0101011111011110 reliving 8 -0101011111011110 kindling 9 -0101011111011110 perceiving 10 -0101011111011110 biding 10 -0101011111011110 cancelling 10 -0101011111011110 sketching 10 -0101011111011110 rediscovering 10 -0101011111011110 vacating 10 -0101011111011110 overhearing 10 -0101011111011110 impersonating 11 -0101011111011110 loaning 12 -0101011111011110 perusing 12 -0101011111011110 instilling 12 -0101011111011110 mustering 12 -0101011111011110 shouldering 13 -0101011111011110 differentiating 13 -0101011111011110 deriving 13 -0101011111011110 finalizing 13 -0101011111011110 outselling 13 -0101011111011110 lavishing 13 -0101011111011110 faking 14 -0101011111011110 commencing 14 -0101011111011110 redoubling 14 -0101011111011110 uttering 15 -0101011111011110 wresting 16 -0101011111011110 infusing 17 -0101011111011110 forfeiting 17 -0101011111011110 pocketing 19 -0101011111011110 inheriting 20 -0101011111011110 emitting 20 -0101011111011110 shoveling 21 -0101011111011110 brandishing 22 -0101011111011110 depositing 24 -0101011111011110 harboring 24 -0101011111011110 garnering 25 -0101011111011110 ducking 26 -0101011111011110 treading 27 -0101011111011110 toting 27 -0101011111011110 igniting 29 -0101011111011110 delegating 31 -0101011111011110 wringing 32 -0101011111011110 scouring 32 -0101011111011110 ceding 36 -0101011111011110 inflicting 37 -0101011111011110 fashioning 38 -0101011111011110 possessing 38 -0101011111011110 marrying 39 -0101011111011110 exerting 43 -0101011111011110 translating 47 -0101011111011110 embezzling 50 -0101011111011110 fielding 53 -0101011111011110 amassing 57 -0101011111011110 wielding 58 -0101011111011110 devoting 68 -0101011111011110 encountering 70 -0101011111011110 grabbing 79 -0101011111011110 escaping 87 -0101011111011110 regaining 87 -0101011111011110 constructing 88 -0101011111011110 registering 92 -0101011111011110 wasting 103 -0101011111011110 seizing 109 -0101011111011110 reaping 110 -0101011111011110 incurring 120 -0101011111011110 redeeming 128 -0101011111011110 risking 130 -0101011111011110 waging 139 -0101011111011110 posing 148 -0101011111011110 confronting 164 -0101011111011110 injuring 167 -0101011111011110 sponsoring 168 -0101011111011110 exercising 184 -0101011111011110 pumping 206 -0101011111011110 pouring 215 -0101011111011110 enjoying 246 -0101011111011110 soliciting 330 -0101011111011110 costing 354 -0101011111011110 collecting 393 -0101011111011110 attending 415 -0101011111011110 hitting 437 -0101011111011110 posting 459 -0101011111011110 forming 462 -0101011111011110 attracting 522 -0101011111011110 owning 556 -0101011111011110 obtaining 607 -0101011111011110 earning 617 -0101011111011110 conducting 625 -0101011111011110 wearing 649 -0101011111011110 launching 651 -0101011111011110 entering 793 -0101011111011110 pursuing 872 -0101011111011110 gaining 913 -0101011111011110 reaching 962 -0101011111011110 serving 1093 -0101011111011110 carrying 1250 -0101011111011110 seeing 1264 -0101011111011110 facing 1425 -0101011111011110 receiving 1585 -0101011111011110 losing 1889 -0101011111011110 putting 2094 -0101011111011110 becoming 2185 -0101011111011110 taking 6094 -0101011111011110 getting 5639 -01010111110111110 broadscale 1 -01010111110111110 36.09 1 -01010111110111110 ever-more-intense 1 -01010111110111110 media-sown 1 -01010111110111110 unfair-trade-practices 1 -01010111110111110 matinee-idol 1 -01010111110111110 recirculating 2 -01010111110111110 connoting 3 -01010111110111110 arrogating 3 -01010111110111110 motioning 3 -01010111110111110 traumatizing 3 -01010111110111110 feting 3 -01010111110111110 Conversant 3 -01010111110111110 detouring 4 -01010111110111110 sui 4 -01010111110111110 colluding 8 -01010111110111110 conforming 22 -01010111110111110 bowing 78 -01010111110111110 tending 81 -01010111110111110 owing 100 -01010111110111110 straining 101 -01010111110111110 needing 109 -01010111110111110 pledging 118 -01010111110111110 requesting 222 -01010111110111110 sticking 326 -01010111110111110 wanting 339 -01010111110111110 contributing 552 -01010111110111110 proposing 654 -01010111110111110 returning 718 -01010111110111110 threatening 745 -01010111110111110 struggling 988 -01010111110111110 preparing 1040 -01010111110111110 negotiating 2260 -01010111110111110 seeking 6418 -01010111110111111 determing 1 -01010111110111111 thirty-two 1 -01010111110111111 shrilly 1 -01010111110111111 thatwhole 1 -01010111110111111 dirtying 1 -01010111110111111 pro-guns 1 -01010111110111111 power-saving 1 -01010111110111111 mini-welfare 1 -01010111110111111 blood-pumping 1 -01010111110111111 331,900 1 -01010111110111111 trammeling 1 -01010111110111111 unhooking 1 -01010111110111111 undesignated 1 -01010111110111111 half-mental 1 -01010111110111111 Sikh-Hindu 1 -01010111110111111 forty-three 1 -01010111110111111 retraversing 1 -01010111110111111 demotivating 1 -01010111110111111 base-host 1 -01010111110111111 singularities 1 -01010111110111111 Tswana 1 -01010111110111111 less-developing 1 -01010111110111111 extirpated 1 -01010111110111111 10,000-50,000 1 -01010111110111111 college- 1 -01010111110111111 unwearable 1 -01010111110111111 drought-ridden 1 -01010111110111111 proliferation-prone 1 -01010111110111111 Znamia 1 -01010111110111111 ThirdWorld 1 -01010111110111111 sports-hungry 1 -01010111110111111 Homoine 2 -01010111110111111 chosing 2 -01010111110111111 1950s-style 2 -01010111110111111 soft-currency 2 -01010111110111111 stigmatizing 2 -01010111110111111 35,518 2 -01010111110111111 joint-effort 2 -01010111110111111 re-tooling 2 -01010111110111111 Votkinsk 2 -01010111110111111 test-driving 2 -01010111110111111 breastfeeding 2 -01010111110111111 ascertaining 2 -01010111110111111 overstocking 3 -01010111110111111 stage-managing 3 -01010111110111111 non-oil-exporting 3 -01010111110111111 mock-Tudor 3 -01010111110111111 151,932 3 -01010111110111111 halfheartedly 3 -01010111110111111 expropriating 4 -01010111110111111 soft-pedaling 4 -01010111110111111 colonizing 4 -01010111110111111 purveying 4 -01010111110111111 glamorizing 4 -01010111110111111 fair-skinned 4 -01010111110111111 charring 4 -01010111110111111 scripting 5 -01010111110111111 ill-treated 5 -01010111110111111 skinning 5 -01010111110111111 butchering 5 -01010111110111111 fathering 6 -01010111110111111 field-testing 6 -01010111110111111 th 6 -01010111110111111 misstates 7 -01010111110111111 clinching 7 -01010111110111111 entrusting 7 -01010111110111111 disillusioning 7 -01010111110111111 readjusting 7 -01010111110111111 annexing 8 -01010111110111111 withstanding 8 -01010111110111111 mass-producing 9 -01010111110111111 imparting 9 -01010111110111111 bagging 9 -01010111110111111 ordain 9 -01010111110111111 cannibalizing 10 -01010111110111111 self-promoting 10 -01010111110111111 energizing 12 -01010111110111111 deserting 12 -01010111110111111 swindling 13 -01010111110111111 heaving 13 -01010111110111111 inhaling 14 -01010111110111111 shortchanging 14 -01010111110111111 cementing 14 -01010111110111111 articulating 16 -01010111110111111 mending 17 -01010111110111111 rejuvenating 18 -01010111110111111 realigning 19 -01010111110111111 discerning 19 -01010111110111111 swaying 20 -01010111110111111 infuriating 20 -01010111110111111 weathering 20 -01010111110111111 repelling 20 -01010111110111111 doubting 20 -01010111110111111 charting 20 -01010111110111111 ascending 21 -01010111110111111 professing 21 -01010111110111111 confessing 22 -01010111110111111 confining 22 -01010111110111111 hastening 22 -01010111110111111 ratifying 23 -01010111110111111 lugging 24 -01010111110111111 milking 24 -01010111110111111 jolting 26 -01010111110111111 disabling 29 -01010111110111111 aggravating 29 -01010111110111111 fetching 30 -01010111110111111 corrupting 32 -01010111110111111 contiguous 33 -01010111110111111 noticing 35 -01010111110111111 reoffering 36 -01010111110111111 polluting 39 -01010111110111111 dictating 40 -01010111110111111 mobilizing 44 -01010111110111111 disputing 45 -01010111110111111 distinguishing 46 -01010111110111111 surveying 46 -01010111110111111 spawning 46 -01010111110111111 surrendering 50 -01010111110111111 cultivating 59 -01010111110111111 relocating 61 -01010111110111111 verifying 63 -01010111110111111 specifying 66 -01010111110111111 compromising 69 -01010111110111111 upsetting 69 -01010111110111111 adapting 71 -01010111110111111 penetrating 72 -01010111110111111 sacrificing 82 -01010111110111111 arresting 88 -01010111110111111 researching 90 -01010111110111111 plotting 97 -01010111110111111 forging 110 -01010111110111111 basing 119 -01010111110111111 devising 129 -01010111110111111 absorbing 146 -01010111110111111 satisfying 149 -01010111110111111 demonstrating 171 -01010111110111111 revealing 192 -01010111110111111 discovering 202 -01010111110111111 consuming 206 -01010111110111111 discouraging 228 -01010111110111111 stealing 242 -01010111110111111 offsetting 259 -01010111110111111 proving 302 -01010111110111111 recommending 380 -01010111110111111 convincing 396 -01010111110111111 choosing 406 -01010111110111111 exporting 425 -01010111110111111 determining 458 -01010111110111111 admitting 521 -01010111110111111 betting 631 -01010111110111111 predicting 674 -01010111110111111 generating 682 -01010111110111111 deciding 692 -01010111110111111 demanding 880 -01010111110111111 encouraging 1026 -01010111110111111 winning 1455 -01010111110111111 helping 1783 -01010111110111111 producing 1876 -01010111110111111 finding 2078 -01010111110111111 developing 2790 -01010111110111111 having 5461 -010101111110000 outgun 1 -010101111110000 Groszkowski 1 -010101111110000 becuase 1 -010101111110000 skull-shattering 1 -010101111110000 Brunelleschi 1 -010101111110000 Mr.Perelman 1 -010101111110000 ritualizing 1 -010101111110000 expurgating 1 -010101111110000 super-VHS 1 -010101111110000 al-Mutwaa 1 -010101111110000 mega-orders 1 -010101111110000 isometrics 1 -010101111110000 near-war 1 -010101111110000 parish-house 1 -010101111110000 Follow-on-Forces-Attack 1 -010101111110000 ukuleles 1 -010101111110000 apostrophe 1 -010101111110000 glugging 1 -010101111110000 racquets-master 1 -010101111110000 postions 1 -010101111110000 Lindel 1 -010101111110000 653,974 1 -010101111110000 thesame 1 -010101111110000 nonchangers 1 -010101111110000 it/how 1 -010101111110000 lopsidedness 1 -010101111110000 21,190 1 -010101111110000 2680 1 -010101111110000 Neuharths 1 -010101111110000 yoghurt 1 -010101111110000 200-plus-patient-age 1 -010101111110000 PSO 1 -010101111110000 Olympic-style 1 -010101111110000 8/10-inch 1 -010101111110000 Beechnut 1 -010101111110000 Camargo 1 -010101111110000 DiMag 1 -010101111110000 Xerxes 1 -010101111110000 foot-binding 1 -010101111110000 ensoulment 1 -010101111110000 drought-powered 1 -010101111110000 monday 1 -010101111110000 Mlynar 1 -010101111110000 I75 1 -010101111110000 nondoctors 1 -010101111110000 telemedicine 1 -010101111110000 xeriscapism 1 -010101111110000 everydayness 1 -010101111110000 quagmires 1 -010101111110000 R.E.M. 2 -010101111110000 spiffier 2 -010101111110000 cuddling 2 -010101111110000 Clytemnestra 3 -010101111110000 transcribing 4 -010101111110000 reappointing 4 -010101111110000 Grandpa 5 -010101111110000 JWT. 10 -010101111110000 whomever 22 -010101111110000 what 28274 -010101111110000 whatever 1293 -010101111110001 Outfox 1 -010101111110001 turquoise-eyed 1 -010101111110001 WORKWEEK 1 -010101111110001 BOSOM 1 -010101111110001 EDGED 1 -010101111110001 THROUGHOUT 1 -010101111110001 pain-reduction 1 -010101111110001 SWINGS 1 -010101111110001 GYRATIONS 1 -010101111110001 REVERSED 1 -010101111110001 ASSUMED 1 -010101111110001 interpretating 1 -010101111110001 291-111 1 -010101111110001 indeeeed 1 -010101111110001 delegitimating 1 -010101111110001 Reuel 1 -010101111110001 PIPER 1 -010101111110001 ewer 1 -010101111110001 non-bankrupt 1 -010101111110001 infamies 1 -010101111110001 Imeldiana 1 -010101111110001 still-cumbersome 1 -010101111110001 petrodollar-rich 1 -010101111110001 FLAW 1 -010101111110001 G-force 1 -010101111110001 INTENSIVE 1 -010101111110001 personhood 1 -010101111110001 Johnniac 1 -010101111110001 LIQUIDATION 1 -010101111110001 carrot-tinted 1 -010101111110001 SHOWS 1 -010101111110001 DISPLAY 1 -010101111110001 Neeewww 1 -010101111110001 Vahit 1 -010101111110001 6,959 1 -010101111110001 whamo 1 -010101111110001 Cappadocia 1 -010101111110001 pleease 1 -010101111110001 FMI. 1 -010101111110001 grreat 1 -010101111110001 CHAUFFEURS 1 -010101111110001 ARISE 1 -010101111110001 REBOUND 1 -010101111110001 Commish 1 -010101111110001 squalorous 1 -010101111110001 course-there 1 -010101111110001 steamrolling 1 -010101111110001 Peaked 1 -010101111110001 THROWN 1 -010101111110001 Noriega-breath 1 -010101111110001 AIG. 1 -010101111110001 180. 1 -010101111110001 1923-25 1 -010101111110001 AMAZING 1 -010101111110001 7780 1 -010101111110001 PAYMENT 1 -010101111110001 COSBY 1 -010101111110001 DISGRACE 1 -010101111110001 DISTRIBUTOR 1 -010101111110001 Libermanism 1 -010101111110001 Minding 1 -010101111110001 heathland 1 -010101111110001 Tainted 1 -010101111110001 ATTIRE 1 -010101111110001 geobotany 1 -010101111110001 Yonne 1 -010101111110001 YOQ. 1 -010101111110001 COUNTERED 1 -010101111110001 PRELUDE 1 -010101111110001 TERM 1 -010101111110001 AID. 1 -010101111110001 TRAPPED 1 -010101111110001 MISTER 1 -010101111110001 CMS. 1 -010101111110001 pricefixing 1 -010101111110001 DENOUNCED 1 -010101111110001 CHANGED 1 -010101111110001 thunderbolts 1 -010101111110001 LEMANS 1 -010101111110001 bimetallism 1 -010101111110001 EXECFLEX 1 -010101111110001 Mouth/Does 1 -010101111110001 TMOC. 1 -010101111110001 outcompeting 1 -010101111110001 CHURCH 1 -010101111110001 under-organization 1 -010101111110001 FOES 1 -010101111110001 TOWARD 1 -010101111110001 power-brake 1 -010101111110001 PONCE 1 -010101111110001 WMS. 1 -010101111110001 right-mindedness 1 -010101111110001 SOLVERS 1 -010101111110001 2,312,450 1 -010101111110001 booklet-sized 1 -010101111110001 Stratified 1 -010101111110001 HANDED 1 -010101111110001 CEI. 1 -010101111110001 Sucks 1 -010101111110001 COLLECTORS 1 -010101111110001 Lthyroxine 1 -010101111110001 63,726 1 -010101111110001 overworshipping 1 -010101111110001 sobersides 1 -010101111110001 oatless 1 -010101111110001 spending-and 1 -010101111110001 HUSBAND 1 -010101111110001 colophons 1 -010101111110001 chlorotic 1 -010101111110001 809,912 1 -010101111110001 re-enriching 1 -010101111110001 kind-spirited 1 -010101111110001 remediating 1 -010101111110001 distractibility 1 -010101111110001 misallocating 1 -010101111110001 SQUABBLING 1 -010101111110001 EVICTION 1 -010101111110001 Punch-Out 1 -010101111110001 2,241,520 1 -010101111110001 1,226,919 1 -010101111110001 1,902,846 1 -010101111110001 revivifying 1 -010101111110001 12-meters 1 -010101111110001 order-takers 1 -010101111110001 stock.In 1 -010101111110001 rearresting 1 -010101111110001 Adil 1 -010101111110001 remotes 1 -010101111110001 outguessing 1 -010101111110001 richer-than-thou 1 -010101111110001 show-goers 1 -010101111110001 Miracle-Gro 1 -010101111110001 roulades 1 -010101111110001 101-lawyer 1 -010101111110001 EXCLUSIVES 1 -010101111110001 Hueller 1 -010101111110001 Sardar 1 -010101111110001 1909-10 1 -010101111110001 control-numbering 1 -010101111110001 GIULIANI 1 -010101111110001 fender-benders 1 -010101111110001 oldtimer 1 -010101111110001 revalidating 1 -010101111110001 dialect-speaking 1 -010101111110001 intervention-buying 1 -010101111110001 healthand 1 -010101111110001 white-wood 1 -010101111110001 ORBITED 1 -010101111110001 HTS 1 -010101111110001 overexposing 1 -010101111110001 COMPENSATE 1 -010101111110001 equilibrium-provided 1 -010101111110001 DODGER 2 -010101111110001 ALLOW 2 -010101111110001 sugar-coating 2 -010101111110001 PICNICS 2 -010101111110001 CAA. 2 -010101111110001 city-building 2 -010101111110001 aaah 2 -010101111110001 SLID 2 -010101111110001 Katusas 2 -010101111110001 Castilian 2 -010101111110001 Pimen 2 -010101111110001 POWERS 2 -010101111110001 ICEE. 2 -010101111110001 BUILDERS 2 -010101111110001 unadventurous 2 -010101111110001 Hilaire 2 -010101111110001 NL. 2 -010101111110001 hyperreality 2 -010101111110001 Brigada 2 -010101111110001 Hagar 2 -010101111110001 misjudging 2 -010101111110001 Mexico-born 2 -010101111110001 aha 2 -010101111110001 LAGGED 2 -010101111110001 Shirakawa 2 -010101111110001 ATLAS 2 -010101111110001 t-PA 2 -010101111110001 pop-Darwinism 2 -010101111110001 buncombe 3 -010101111110001 POOLS 3 -010101111110001 ICN. 3 -010101111110001 BTR. 3 -010101111110001 VISIT 3 -010101111110001 satirizing 3 -010101111110001 ETHIC 3 -010101111110001 Almighty 3 -010101111110001 woodenly 3 -010101111110001 BHP. 4 -010101111110001 BOXES 4 -010101111110001 flaying 4 -010101111110001 VW. 4 -010101111110001 cloaks 4 -010101111110001 countermanding 4 -010101111110001 cramping 5 -010101111110001 Leos 5 -010101111110001 whither 7 -010101111110001 EPS 19 -010101111110001 READY 196 -010101111110001 whom 2503 -010101111110001 why 4910 -010101111110010 rubber-stamps 1 -010101111110010 infantilizing 1 -010101111110010 Resistant 1 -010101111110010 formaldehyded 1 -010101111110010 unfashionably 1 -010101111110010 higher-than-budgeted 1 -010101111110010 desensitize 1 -010101111110010 nuturing 1 -010101111110010 fish-it 1 -010101111110010 anneal 1 -010101111110010 skimpily 1 -010101111110010 switchover 1 -010101111110010 stron 1 -010101111110010 predetermines 1 -010101111110010 250:1 1 -010101111110010 ward-heeling-type 1 -010101111110010 bussing 1 -010101111110010 whomps 1 -010101111110010 unproductively 1 -010101111110010 Tsui 1 -010101111110010 Kjer 1 -010101111110010 mad/Sad 1 -010101111110010 enlightens 1 -010101111110010 seven-feet 1 -010101111110010 pop-lit 1 -010101111110010 sermons/From 1 -010101111110010 photographic-like 1 -010101111110010 two-inches 1 -010101111110010 92.45 1 -010101111110010 drug-fighters 2 -010101111110010 how 16957 -010101111110010 ningas 2 -010101111110011 21-11 1 -010101111110011 228-166 1 -010101111110011 2500-before 1 -010101111110011 53-45 1 -010101111110011 1,720,500 1 -010101111110011 nonwood 1 -010101111110011 aboveaverage 1 -010101111110011 3,751-1,471 1 -010101111110011 subtantially 1 -010101111110011 278,709 1 -010101111110011 1983-87-model 1 -010101111110011 61-38 1 -010101111110011 666,667 1 -010101111110011 282-108 1 -010101111110011 1,873,800 1 -010101111110011 250,600 1 -010101111110011 Everts 1 -010101111110011 347-53 1 -010101111110011 28-23 1 -010101111110011 56-35 1 -010101111110011 geodes 1 -010101111110011 88-0 1 -010101111110011 64-25 1 -010101111110011 79-cent 1 -010101111110011 82-7 1 -010101111110011 63-48 1 -010101111110011 335-67 1 -010101111110011 299-111 1 -010101111110011 259-134 1 -010101111110011 PPP. 1 -010101111110011 bimetalism 1 -010101111110011 320,218 1 -010101111110011 4,032,139 1 -010101111110011 13-8 1 -010101111110011 26-7 1 -010101111110011 Centana 1 -010101111110011 black/ethnic 1 -010101111110011 146-1 1 -010101111110011 re-authorizing 1 -010101111110011 15MM 1 -010101111110011 outspecializing 1 -010101111110011 347-7 1 -010101111110011 A+ 1 -010101111110011 15-1 1 -010101111110011 energy-usage 1 -010101111110011 sunbursts 1 -010101111110011 MTBE. 1 -010101111110011 62-34 1 -010101111110011 219-199 1 -010101111110011 268-156 1 -010101111110011 1,661 1 -010101111110011 102-72 1 -010101111110011 1,499,985 1 -010101111110011 229-188 1 -010101111110011 2.822 1 -010101111110011 upend 1 -010101111110011 230-192 1 -010101111110011 WBZ. 1 -010101111110011 1.263 1 -010101111110011 221-209 1 -010101111110011 vandalize 1 -010101111110011 more-up-market 1 -010101111110011 29-10 1 -010101111110011 3,024 1 -010101111110011 revenue-production 1 -010101111110011 post-Anschluss 1 -010101111110011 675,603 1 -010101111110011 78-21 1 -010101111110011 defense-coverage 1 -010101111110011 aboveground 1 -010101111110011 2,412 1 -010101111110011 whehter 1 -010101111110011 65-24 1 -010101111110011 10,449,606 1 -010101111110011 11,070,000 1 -010101111110011 outsmarting 1 -010101111110011 skittishly 1 -010101111110011 dthat 1 -010101111110011 9,550,000 1 -010101111110011 244-174 1 -010101111110011 emend 1 -010101111110011 cop-every-50-feet 1 -010101111110011 mainland-born 1 -010101111110011 interalia 1 -010101111110011 4,075 1 -010101111110011 sanctions-squeezed 1 -010101111110011 65-31 1 -010101111110011 61-37 1 -010101111110011 0.297 1 -010101111110011 1,113-600 1 -010101111110011 plaid-jacketed 1 -010101111110011 non-execution 1 -010101111110011 319-102 1 -010101111110011 50-47 1 -010101111110011 CIR. 1 -010101111110011 non-beneficiaries 1 -010101111110011 82-0 1 -010101111110011 463,700 1 -010101111110011 1,622 1 -010101111110011 93-7 1 -010101111110011 74.45 1 -010101111110011 1,017,300 1 -010101111110011 narcotics-law 1 -010101111110011 35-14 1 -010101111110011 357-54 1 -010101111110011 74-22 1 -010101111110011 de-nationalizing 1 -010101111110011 662,161 1 -010101111110011 60-21 1 -010101111110011 2.745 1 -010101111110011 ATA. 1 -010101111110011 92-4 1 -010101111110011 229-183 1 -010101111110011 Gang-of-Four 1 -010101111110011 departmentalizing 1 -010101111110011 819-76 1 -010101111110011 neuroselective 1 -010101111110011 333-91 1 -010101111110011 78-17 1 -010101111110011 373-90 1 -010101111110011 50-44 1 -010101111110011 85-0 1 -010101111110011 badmouth 1 -010101111110011 108-44 1 -010101111110011 256-166 1 -010101111110011 wage-driven 1 -010101111110011 250-173 1 -010101111110011 13,195,000 1 -010101111110011 26,616,000 1 -010101111110011 371-40 1 -010101111110011 reckless-endangerment 1 -010101111110011 granter 1 -010101111110011 labor-corruption 1 -010101111110011 250-138 1 -010101111110011 223-186 1 -010101111110011 mechanizing 2 -010101111110011 CGE. 2 -010101111110011 97-2 2 -010101111110011 245-137 2 -010101111110011 63-30 2 -010101111110011 BOILER 2 -010101111110011 TW. 2 -010101111110011 belaboring 2 -010101111110011 55-41 2 -010101111110011 Revamping 2 -010101111110011 CTS. 2 -010101111110011 diapering 3 -010101111110011 disbar 3 -010101111110011 yea 5 -010101111110011 displeasing 5 -010101111110011 whether 14288 -010101111110011 SuperStation 8 -01010111111010 yardwork 1 -01010111111010 early-discharge 1 -01010111111010 1,256,000 1 -01010111111010 disqualifyng 1 -01010111111010 surtitling 1 -01010111111010 nonrubber 1 -01010111111010 21,207 1 -01010111111010 misspeaking 1 -01010111111010 discussion-group 1 -01010111111010 '50s-type 1 -01010111111010 Tueday 1 -01010111111010 unresourceful 1 -01010111111010 prosection 1 -01010111111010 97,300 1 -01010111111010 18,000-19,000 1 -01010111111010 160,111 1 -01010111111010 always-steamy 1 -01010111111010 142.49 1 -01010111111010 gutstringed 1 -01010111111010 pikes 1 -01010111111010 sundown/By 1 -01010111111010 yomping 1 -01010111111010 2,646 1 -01010111111010 racquets-club 1 -01010111111010 prefixing 1 -01010111111010 unregal 1 -01010111111010 at-sea 1 -01010111111010 underrates 1 -01010111111010 manhandling 1 -01010111111010 crash-wary 1 -01010111111010 midAugust 1 -01010111111010 mussing 1 -01010111111010 Thermodynamics 1 -01010111111010 40,700 1 -01010111111010 non-Detroiters 1 -01010111111010 flowerless 2 -01010111111010 pre-paying 2 -01010111111010 sit-coms 2 -01010111111010 356,220 2 -01010111111010 Vespers 2 -01010111111010 loin 2 -01010111111010 non-aficionados 2 -01010111111010 3,273,910 2 -01010111111010 250,000-350,000 2 -01010111111010 389,159 2 -01010111111010 Rewrite 2 -01010111111010 6,269,690 2 -01010111111010 weeks. 2 -01010111111010 Amharic 2 -01010111111010 quartering 2 -01010111111010 sovereignity 2 -01010111111010 cussedness 2 -01010111111010 Hecks 2 -01010111111010 78s 2 -01010111111010 Shina 2 -01010111111010 Montaigne 2 -01010111111010 unselfishly 2 -01010111111010 Jolu 2 -01010111111010 punky 3 -01010111111010 3,592,800 3 -01010111111010 bloating 3 -01010111111010 1,112 3 -01010111111010 nuked 3 -01010111111010 pocket-size 3 -01010111111010 rereading 3 -01010111111010 procrastinating 4 -01010111111010 optimizing 4 -01010111111010 1/200th 4 -01010111111010 over-the-hill 4 -01010111111010 sixteen 4 -01010111111010 righting 5 -01010111111010 undercounted 5 -01010111111010 Intersil 6 -01010111111010 institutionalizing 6 -01010111111010 cross-selling 7 -01010111111010 adjudicating 7 -01010111111010 redressing 8 -01010111111010 brainwashing 10 -01010111111010 all 46524 -01010111111010 tabulating 12 -010101111110110 high-kicking 1 -010101111110110 mini-czars 1 -010101111110110 bushed 1 -010101111110110 unchartered 1 -010101111110110 three-hour-long 1 -010101111110110 440,000-metric 1 -010101111110110 33,445 1 -010101111110110 7:24 1 -010101111110110 half-to 1 -010101111110110 hookworms 1 -010101111110110 well-hidden 1 -010101111110110 1,771 1 -010101111110110 valuewise 1 -010101111110110 computerese 1 -010101111110110 arguendo 1 -010101111110110 250,456 1 -010101111110110 Panglossing 1 -010101111110110 recreation-wise 1 -010101111110110 3,312,162 1 -010101111110110 claim-jumping 1 -010101111110110 mockers 1 -010101111110110 com-PRISS 1 -010101111110110 un-Brazilian 1 -010101111110110 yoo-hoo 1 -010101111110110 reputation-wise 1 -010101111110110 obsequiously 1 -010101111110110 half-human 1 -010101111110110 comediennes 1 -010101111110110 2.149 1 -010101111110110 Miriana 1 -010101111110110 newspapering 1 -010101111110110 520,522 1 -010101111110110 14:34 1 -010101111110110 15:10 1 -010101111110110 intrerests 1 -010101111110110 285,700 1 -010101111110110 toughies 1 -010101111110110 tautologically 1 -010101111110110 asset-stripping 1 -010101111110110 anthing 1 -010101111110110 never-to-be-stated 1 -010101111110110 cockfighting 1 -010101111110110 sligthly 1 -010101111110110 Delphically 1 -010101111110110 verifiers 1 -010101111110110 non-violently 1 -010101111110110 softer-spoken 1 -010101111110110 neigh 1 -010101111110110 20-to-life 1 -010101111110110 systems-strategies 1 -010101111110110 our. 1 -010101111110110 A10s 1 -010101111110110 print-for-profit 1 -010101111110110 Pro-Family 2 -010101111110110 excercised 2 -010101111110110 inter 2 -010101111110110 GIANTS 2 -010101111110110 homogenizing 2 -010101111110110 behaviorally 2 -010101111110110 Smuckers 2 -010101111110110 any. 2 -010101111110110 9-to-3 2 -010101111110110 symmetrically 2 -010101111110110 engulfs 2 -010101111110110 pre-positioning 2 -010101111110110 so. 2 -010101111110110 mega-dealers 2 -010101111110110 Senta 3 -010101111110110 arsine 3 -010101111110110 uninsurables 3 -010101111110110 splinters 3 -010101111110110 315-98 3 -010101111110110 9:20 3 -010101111110110 snowmen 3 -010101111110110 LCGs 3 -010101111110110 open-mindedness 3 -010101111110110 Kimbies 4 -010101111110110 audibly 4 -010101111110110 piggy-backing 5 -010101111110110 hi 5 -010101111110110 Mustapha 6 -010101111110110 nyet 7 -010101111110110 this. 7 -010101111110110 that. 16 -010101111110110 anyplace 19 -010101111110110 gangbusters 20 -010101111110110 hello 24 -010101111110110 Brasil 40 -010101111110110 goodbye 54 -010101111110110 yours 83 -010101111110110 nowhere 365 -010101111110110 everything 2547 -010101111110110 nothing 4373 -010101111110110 something 6287 -010101111110110 anything 4616 -010101111110111 1,200-cubic 1 -010101111110111 more-caring 1 -010101111110111 push'em-around 1 -010101111110111 heroic-looking 1 -010101111110111 arms-control-at-any-cost 1 -010101111110111 ex-entrepreneurs 1 -010101111110111 11-Bushes 1 -010101111110111 shriner 1 -010101111110111 Serkin 1 -010101111110111 tariff-based 1 -010101111110111 Fancy-Free 1 -010101111110111 GZB 1 -010101111110111 sez 1 -010101111110111 easy-to-organize 1 -010101111110111 non-indigents 1 -010101111110111 new-round 1 -010101111110111 vowel-laden 1 -010101111110111 ill-spoken 1 -010101111110111 2,418,244 1 -010101111110111 thumbwhere 1 -010101111110111 entrepeneurs 1 -010101111110111 COMPLAINER 1 -010101111110111 asocial 1 -010101111110111 grain-short 1 -010101111110111 2,342,314 1 -010101111110111 1,289,870 1 -010101111110111 1,941,891 1 -010101111110111 Miss.-attorney 1 -010101111110111 coily 1 -010101111110111 anti-Keynesianism 1 -010101111110111 war-weakened 1 -010101111110111 IROCZ 1 -010101111110111 falling-on-the-sword 1 -010101111110111 more-harmful 1 -010101111110111 BCED 1 -010101111110111 Kingbridge 1 -010101111110111 Paul-Kennedy 1 -010101111110111 Sundaya 1 -010101111110111 fly-by-nighters 2 -010101111110111 RR 2 -010101111110111 crop-price 2 -010101111110111 Michelin/Uniroyal 2 -010101111110111 Jase 2 -010101111110111 copyists 2 -010101111110111 woodchucks 2 -010101111110111 soundoffs 2 -010101111110111 toyota 2 -010101111110111 Propulsa 2 -010101111110111 sneeringly 2 -010101111110111 tiresomely 2 -010101111110111 self-publishing 2 -010101111110111 unrefrigerated 2 -010101111110111 Linnaeus 2 -010101111110111 Reaganland 2 -010101111110111 Wellcrafts 2 -010101111110111 divorcees 2 -010101111110111 glitters 3 -010101111110111 mousetraps 3 -010101111110111 parroting 3 -010101111110111 regenerating 3 -010101111110111 Annibale 3 -010101111110111 hitmen 3 -010101111110111 CDE 3 -010101111110111 cannibals 3 -010101111110111 anti-national 3 -010101111110111 nonparticipants 3 -010101111110111 Bonzo 4 -010101111110111 whimsically 4 -010101111110111 Ubol 4 -010101111110111 Fievel 4 -010101111110111 Lopakhin 4 -010101111110111 Chichikov 4 -010101111110111 clear-coat 5 -010101111110111 Polonius 5 -010101111110111 octogenarians 5 -010101111110111 INPO 6 -010101111110111 evermore 7 -010101111110111 Agildo 8 -010101111110111 nonprofessionals 9 -010101111110111 Nonesuch 10 -010101111110111 plaintively 12 -010101111110111 ICG 12 -010101111110111 thou 13 -010101111110111 Attila 20 -010101111110111 whoever 130 -010101111110111 somebody 730 -010101111110111 anybody 821 -010101111110111 nobody 848 -010101111110111 everybody 1092 -010101111110111 neither 1956 -010101111110111 everyone 2271 -010101111110111 someone 2769 -010101111110111 either 5631 -010101111110111 anyone 2806 -01010111111100 press-jock 1 -01010111111100 non-peaceful 1 -01010111111100 197-year-old 1 -01010111111100 well-forged 1 -01010111111100 101,588 1 -01010111111100 boistrous 1 -01010111111100 mealy-mouthed 1 -01010111111100 syndrome-aspirin 1 -01010111111100 chartguided 1 -01010111111100 hoursold 1 -01010111111100 incriminatory 1 -01010111111100 ship-to-stock 1 -01010111111100 drill-indicated 1 -01010111111100 Sportin 1 -01010111111100 HEWLETT 1 -01010111111100 short-range-long-range 1 -01010111111100 high-reaching 1 -01010111111100 indefinable 1 -01010111111100 401-K 1 -01010111111100 surety-bond 1 -01010111111100 often-antagonistic 1 -01010111111100 Disneylike 1 -01010111111100 embalms 1 -01010111111100 payroll-withholding 1 -01010111111100 uncontradicted 1 -01010111111100 construction-business 1 -01010111111100 momumental 1 -01010111111100 foam-filled 1 -01010111111100 now-improving 1 -01010111111100 1-800-US 1 -01010111111100 life-shaping 1 -01010111111100 think-tank/academic 1 -01010111111100 congressional-executive 1 -01010111111100 jangly 1 -01010111111100 Jewish-Arab 1 -01010111111100 cigarette-package 1 -01010111111100 extrordinary 1 -01010111111100 macerating 1 -01010111111100 don't-litter 1 -01010111111100 distance-running 1 -01010111111100 marmot 1 -01010111111100 optical-character 1 -01010111111100 large-lunged 1 -01010111111100 throw-aways 1 -01010111111100 staff-member 1 -01010111111100 squeaky-voiced 2 -01010111111100 graffiti-like 2 -01010111111100 down-sized 2 -01010111111100 half-jesting 2 -01010111111100 higher-than-permitted 2 -01010111111100 commonsense 2 -01010111111100 field-test 2 -01010111111100 Cartesian 2 -01010111111100 BeechNut 2 -01010111111100 near-absolute 2 -01010111111100 computer-addressed 2 -01010111111100 quadruple-bypass 2 -01010111111100 extra-wide 3 -01010111111100 60-days 4 -01010111111100 unalterable 6 -01010111111100 no 31616 -01010111111100 habeas 10 -010101111111010 on-farm 1 -010101111111010 87,183 1 -010101111111010 40,218 1 -010101111111010 preempting 1 -010101111111010 reshipping 1 -010101111111010 EMPLOYEE-STOCK 1 -010101111111010 stoppered 1 -010101111111010 19,630,000 1 -010101111111010 vocations 1 -010101111111010 Russian-minority 1 -010101111111010 expiration-day 1 -010101111111010 non-policies 1 -010101111111010 disparity-reducing 1 -010101111111010 wrist-stress 1 -010101111111010 value-creating 1 -010101111111010 1,587,838 1 -010101111111010 brake-system 1 -010101111111010 biologically-based 1 -010101111111010 broadcast-industry 1 -010101111111010 whole-hearted 1 -010101111111010 valuating 1 -010101111111010 fine-print 1 -010101111111010 organizatonal 1 -010101111111010 alginate 1 -010101111111010 Soviet-produced 1 -010101111111010 Korea-related 1 -010101111111010 1,983,000 1 -010101111111010 debt-restructirng 1 -010101111111010 48-hours 1 -010101111111010 more-explicit 1 -010101111111010 severity-of-illness 1 -010101111111010 0.101815 1 -010101111111010 yacht-charter 1 -010101111111010 journalists-supposedly 1 -010101111111010 eye-brain 1 -010101111111010 down-then-up 1 -010101111111010 airline-financed 1 -010101111111010 car-display 1 -010101111111010 TURNBRIDGE 1 -010101111111010 voir 1 -010101111111010 4,186 1 -010101111111010 40-45 1 -010101111111010 FELONY 1 -010101111111010 U.S.-Salvadoran 1 -010101111111010 vote-losing 1 -010101111111010 once-frosty 1 -010101111111010 electrostatic-charge 1 -010101111111010 751,500 1 -010101111111010 one-quarter-million 1 -010101111111010 truth-finding 1 -010101111111010 troublespots 1 -010101111111010 auto-pollution 1 -010101111111010 pro-Dreyfus 1 -010101111111010 less-than-persuasive 1 -010101111111010 Israeli-PLO 1 -010101111111010 looking-glass 1 -010101111111010 indemnity-insurance 1 -010101111111010 freemail 1 -010101111111010 too-easy-to-clean 1 -010101111111010 extrinsic 2 -010101111111010 heavy-hitter 2 -010101111111010 guinea-pig 2 -010101111111010 45,540 2 -010101111111010 4,737 2 -010101111111010 employer-funded 2 -010101111111010 Ferranti-type 2 -010101111111010 nuclear-emergency 2 -010101111111010 brake-pedal 2 -010101111111010 cancer-related 3 -010101111111010 productivity-boosting 3 -010101111111010 front-brake 3 -010101111111010 any 37808 -010101111111010 immeasurable 5 -0101011111110110 cash-preserving 1 -0101011111110110 mutual-reinforcing 1 -0101011111110110 one-inch-thick 1 -0101011111110110 superpsychoanalytic 1 -0101011111110110 settled-area 1 -0101011111110110 crime-prone 1 -0101011111110110 talent-packed 1 -0101011111110110 social-economic 1 -0101011111110110 130-company 1 -0101011111110110 Libras 1 -0101011111110110 87-57 1 -0101011111110110 60,950 1 -0101011111110110 self-renewing 1 -0101011111110110 26-city 1 -0101011111110110 dangerous-drug 1 -0101011111110110 single-nation 1 -0101011111110110 624-page 1 -0101011111110110 anti-bases 1 -0101011111110110 tough-as-nails 1 -0101011111110110 fee-burdened 1 -0101011111110110 longwinded 1 -0101011111110110 advertising-less 1 -0101011111110110 12-county 1 -0101011111110110 Egyptian-style 1 -0101011111110110 character-based 1 -0101011111110110 pile-driven 1 -0101011111110110 eggheads 1 -0101011111110110 potental 1 -0101011111110110 type-written 1 -0101011111110110 outdoes 1 -0101011111110110 6-11 1 -0101011111110110 72-loss 1 -0101011111110110 too-noisy 1 -0101011111110110 close-harmony 1 -0101011111110110 single-segment 1 -0101011111110110 long-misunderstood 1 -0101011111110110 all-Irish 1 -0101011111110110 tuberose 1 -0101011111110110 added-on 1 -0101011111110110 1527 1 -0101011111110110 well-identified 1 -0101011111110110 anti-clone 1 -0101011111110110 81-jet 1 -0101011111110110 overborrowed 1 -0101011111110110 sharea 1 -0101011111110110 close-it 1 -0101011111110110 mitteleuropaisch 1 -0101011111110110 unassessed 1 -0101011111110110 elementary-level 1 -0101011111110110 non-Pennzoil 1 -0101011111110110 pro-veterans 1 -0101011111110110 unchoreographed 1 -0101011111110110 travel-size 1 -0101011111110110 comsymp 1 -0101011111110110 direct-credit 1 -0101011111110110 semi-announced 1 -0101011111110110 blue-fur 1 -0101011111110110 ear-shaped 1 -0101011111110110 80-hours-a-week 1 -0101011111110110 well-announced 1 -0101011111110110 advanced-equipment 1 -0101011111110110 rare-animal 1 -0101011111110110 once-daily 1 -0101011111110110 factitious 1 -0101011111110110 often-identified 1 -0101011111110110 semi-gelatinous 1 -0101011111110110 1987-vintage 1 -0101011111110110 GARDENERS 1 -0101011111110110 power-couple 1 -0101011111110110 toll-call 1 -0101011111110110 egg-salad 1 -0101011111110110 idea-generation 1 -0101011111110110 Newark-Paris 1 -0101011111110110 Boodles 1 -0101011111110110 call-and-response 1 -0101011111110110 unaccepted 1 -0101011111110110 unchosen 1 -0101011111110110 land-seizure 1 -0101011111110110 anti-occupation 1 -0101011111110110 two-inch-high 1 -0101011111110110 graffiti-marred 1 -0101011111110110 overpoweringly 1 -0101011111110110 5.5-million-barrel 1 -0101011111110110 pro-Stevenson 1 -0101011111110110 great-maned 1 -0101011111110110 post-acute 1 -0101011111110110 nonreplicable 1 -0101011111110110 Poseidon-class 1 -0101011111110110 Lenin-forsaken 1 -0101011111110110 commercial-use 1 -0101011111110110 rich-vs.-poor 1 -0101011111110110 seven-volume 1 -0101011111110110 banner-waving 1 -0101011111110110 dollar-convertible 1 -0101011111110110 non-King 1 -0101011111110110 4,277 1 -0101011111110110 work-saving 1 -0101011111110110 concert-going 1 -0101011111110110 employment-participation 1 -0101011111110110 gilded-age 1 -0101011111110110 garbage-truck 1 -0101011111110110 three-I 1 -0101011111110110 25,946 1 -0101011111110110 lustiest 1 -0101011111110110 rough-cut 1 -0101011111110110 thousand-acre 1 -0101011111110110 high-cut 1 -0101011111110110 biotech-based 2 -0101011111110110 Ferruccio 2 -0101011111110110 1.5695 2 -0101011111110110 unilluminating 2 -0101011111110110 goodhearted 2 -0101011111110110 bareheaded 2 -0101011111110110 near-identical 2 -0101011111110110 1.5093 2 -0101011111110110 WPPS 2 -0101011111110110 frostbitten 2 -0101011111110110 undeciphered 2 -0101011111110110 group-oriented 2 -0101011111110110 Bach-like 2 -0101011111110110 let-it-all-hang-out 2 -0101011111110110 quarter-horse 2 -0101011111110110 Sbarro 2 -0101011111110110 EFerol 2 -0101011111110110 Fermont 2 -0101011111110110 1.5710 2 -0101011111110110 HEAL 2 -0101011111110110 Quechua 3 -0101011111110110 better-coordinated 3 -0101011111110110 occluded 3 -0101011111110110 FAG 3 -0101011111110110 literal-minded 4 -0101011111110110 leather-bound 5 -0101011111110110 deductive 5 -0101011111110110 another 17693 -0101011111110110 mid-season 6 -0101011111110111 never-to-be-repeated 1 -0101011111110111 track-record-tying 1 -0101011111110111 .248 1 -0101011111110111 Nyquil 1 -0101011111110111 186,204 1 -0101011111110111 powder-puff 1 -0101011111110111 prohibition-era 1 -0101011111110111 jack-up 1 -0101011111110111 Kennedy-like 1 -0101011111110111 crash-anniversary 1 -0101011111110111 .194 1 -0101011111110111 social-engineering 1 -0101011111110111 4-by-6 1 -0101011111110111 Sukenickian 1 -0101011111110111 undersea-warfare 1 -0101011111110111 Novotrade 1 -0101011111110111 100-head 1 -0101011111110111 test-launch 1 -0101011111110111 MONSTER 1 -0101011111110111 plant-sustaining 1 -0101011111110111 impossible-to-fill-out 1 -0101011111110111 license-processing 1 -0101011111110111 less-sweet 1 -0101011111110111 ofinfant 1 -0101011111110111 Uitenhage 1 -0101011111110111 daylight-shifting 1 -0101011111110111 misogynistic 1 -0101011111110111 trip-taking 1 -0101011111110111 MARCONI 1 -0101011111110111 wouldn't-it-be-nice-if 1 -0101011111110111 married-in-real-life 1 -0101011111110111 30-by-100-foot 1 -0101011111110111 ritzy-sounding 1 -0101011111110111 unlived-in 1 -0101011111110111 Euro-beach 1 -0101011111110111 uninhabitably 1 -0101011111110111 cheese-selling 1 -0101011111110111 unnavigable 1 -0101011111110111 lowand 1 -0101011111110111 class-preparation 1 -0101011111110111 Breezes 1 -0101011111110111 diva-pleasing 1 -0101011111110111 apres-sail 1 -0101011111110111 16K 1 -0101011111110111 sky-topped 1 -0101011111110111 sans-serif 1 -0101011111110111 club-wielding 1 -0101011111110111 61st-ranked 1 -0101011111110111 880,600 1 -0101011111110111 red-plush 1 -0101011111110111 experience-oriented 1 -0101011111110111 unwatchable 1 -0101011111110111 kindergarten-to-eighth-grade 1 -0101011111110111 nicotine-free 1 -0101011111110111 missile-range 1 -0101011111110111 pop-out 1 -0101011111110111 protein-rich 1 -0101011111110111 four-pfennig 1 -0101011111110111 four-million-share 1 -0101011111110111 zitless 1 -0101011111110111 parodist 1 -0101011111110111 two-inch-square 1 -0101011111110111 10-share 1 -0101011111110111 ornithological 1 -0101011111110111 operations/Midwest 1 -0101011111110111 tax-deadline 1 -0101011111110111 131,110 1 -0101011111110111 DAISHOWA 1 -0101011111110111 kick-and-tell 1 -0101011111110111 12-to-14 1 -0101011111110111 post-Tower 2 -0101011111110111 trash-collection 2 -0101011111110111 masochistic 2 -0101011111110111 Joycean 2 -0101011111110111 below-zero 2 -0101011111110111 investment-linked 2 -0101011111110111 Weleda 2 -0101011111110111 iconic 2 -0101011111110111 androgens 2 -0101011111110111 true-blooded 2 -0101011111110111 90-lawyer 2 -0101011111110111 multisymptom 2 -0101011111110111 rain-slicked 2 -0101011111110111 0.239 2 -0101011111110111 recertifying 2 -0101011111110111 first-notice 2 -0101011111110111 ASSUBEL 2 -0101011111110111 cast-aluminum 3 -0101011111110111 every 7500 -0101011111110111 daylight-saving 12 -01010111111110 academic-turned-capitalist 1 -01010111111110 Moslem-majority 1 -01010111111110 trash-collecting 1 -01010111111110 none-too-subtly 1 -01010111111110 30-40 1 -01010111111110 Thiam 1 -01010111111110 coeducational 1 -01010111111110 Getty-Pennzoil 1 -01010111111110 international-exchange 1 -01010111111110 major-league-baseball 1 -01010111111110 semiautomated 1 -01010111111110 resource-endowed 1 -01010111111110 import-protection 1 -01010111111110 imputed-interest 1 -01010111111110 brew-free 1 -01010111111110 mythy 1 -01010111111110 riflelike 1 -01010111111110 greased-pig 1 -01010111111110 patricians 1 -01010111111110 Nuralli 1 -01010111111110 Dundees 1 -01010111111110 Nikhom 1 -01010111111110 1.386 1 -01010111111110 money-poor 1 -01010111111110 Marinites 2 -01010111111110 fradulently 2 -01010111111110 22.89 2 -01010111111110 derogation 2 -01010111111110 3:50 2 -01010111111110 raper 2 -01010111111110 off-reservation 2 -01010111111110 aphid 2 -01010111111110 1/16th 2 -01010111111110 1/5 2 -01010111111110 Qausuittuq 2 -01010111111110 1/40th 2 -01010111111110 0.05042 2 -01010111111110 4,850,000 2 -01010111111110 unrestored 2 -01010111111110 non-urban 2 -01010111111110 2.325 2 -01010111111110 open-hearted 2 -01010111111110 0.01133 2 -01010111111110 whirlwinds 3 -01010111111110 1/20 3 -01010111111110 Ludovico 3 -01010111111110 Becker-type 3 -01010111111110 1,855 3 -01010111111110 crime-infested 3 -01010111111110 0.8825 4 -01010111111110 one-sixteenth 4 -01010111111110 crybabies 4 -01010111111110 soft-hearted 5 -01010111111110 Paddy 5 -01010111111110 three-quarter 5 -01010111111110 disdainfully 5 -01010111111110 one 63902 -01010111111110 0.8125 8 -010101111111110 insurance-analyst 1 -010101111111110 Seyval 1 -010101111111110 a.m.-1 1 -010101111111110 league-championship 1 -010101111111110 28,208 1 -010101111111110 295,522 1 -010101111111110 3,409 1 -010101111111110 18th-century-style 1 -010101111111110 not-yet-opened 1 -010101111111110 Sifuentes 1 -010101111111110 suffragan 1 -010101111111110 Mets-Dodgers 1 -010101111111110 jetsetting 1 -010101111111110 billion-2.8 1 -010101111111110 personal-consulting 1 -010101111111110 Reimbursed 1 -010101111111110 p.m.-3 1 -010101111111110 18,300 1 -010101111111110 calibrations 1 -010101111111110 million-barrels-a-day 1 -010101111111110 PESTICIDES 1 -010101111111110 ex-Moscow 1 -010101111111110 football-preview 1 -010101111111110 billion-ton 1 -010101111111110 point-decline 1 -010101111111110 regular-bed 1 -010101111111110 Sunsilk 1 -010101111111110 :15 1 -010101111111110 a.m.-9 1 -010101111111110 p.m.-2 1 -010101111111110 months-and-longer 1 -010101111111110 DRAWS 1 -010101111111110 Stellenbosch-area 1 -010101111111110 meals-and-sundries 1 -010101111111110 crayoned 1 -010101111111110 p.m-11 1 -010101111111110 minimumn 1 -010101111111110 highest-placed 1 -010101111111110 MHz. 1 -010101111111110 electric-services 1 -010101111111110 1.083 1 -010101111111110 consecutives 1 -010101111111110 1,651 1 -010101111111110 ton-per-year 1 -010101111111110 1,172,473 1 -010101111111110 79,455 1 -010101111111110 day-before-the-Derby 1 -010101111111110 722,742 1 -010101111111110 picket-line 1 -010101111111110 0.049 1 -010101111111110 complete-game 1 -010101111111110 B.C-A.D. 1 -010101111111110 wpm 1 -010101111111110 d-for 1 -010101111111110 rating/13 1 -010101111111110 brutalizes 1 -010101111111110 rating/14 1 -010101111111110 a-day 1 -010101111111110 Fall/Christmas 1 -010101111111110 a.m.-11 1 -010101111111110 fun-filled 1 -010101111111110 Last-Minute 1 -010101111111110 hundred-fifty 1 -010101111111110 a.m.-6 1 -010101111111110 40-to-59 1 -010101111111110 1.620 1 -010101111111110 34,000-kilowatt 1 -010101111111110 Pompadur-Rule 1 -010101111111110 station-crew 1 -010101111111110 a.m.-to-12 1 -010101111111110 venture-funded 1 -010101111111110 p.m.-5 1 -010101111111110 million-or-bigger 1 -010101111111110 but-bulls 1 -010101111111110 performances. 1 -010101111111110 749,767 1 -010101111111110 6,021,071 1 -010101111111110 21.43 1 -010101111111110 3,446 1 -010101111111110 149,277 1 -010101111111110 succesive 1 -010101111111110 37-inch 1 -010101111111110 37/40 1 -010101111111110 40,000-to-45,000 1 -010101111111110 p.m.-to-4 1 -010101111111110 month/12,000 1 -010101111111110 3,519 1 -010101111111110 3,793 1 -010101111111110 343,031 1 -010101111111110 Farmaco 1 -010101111111110 negative-option 1 -010101111111110 122,704 1 -010101111111110 4,286 1 -010101111111110 2,882 1 -010101111111110 Sterno 1 -010101111111110 onshore-exploration 1 -010101111111110 squarefoot 1 -010101111111110 years-from 1 -010101111111110 3/8-a 1 -010101111111110 Stat. 2 -010101111111110 at-will 2 -010101111111110 BAe 2 -010101111111110 peak/ 2 -010101111111110 a.m.-3 2 -010101111111110 million-and-counting 2 -010101111111110 Arabic-language 2 -010101111111110 10:00 2 -010101111111110 p.m.-to-9 2 -010101111111110 a.m.-8 2 -010101111111110 barrel-per-day 2 -010101111111110 0.485 2 -010101111111110 1,950,000-share 2 -010101111111110 billion-to- 3 -010101111111110 a.m.-2 3 -010101111111110 p.m.-4 3 -010101111111110 a.m.-7 3 -010101111111110 one-million 4 -010101111111110 Jax 5 -010101111111110 a.m.-10 6 -010101111111110 p.m.-12 6 -010101111111110 million-a-month 6 -010101111111110 Finanziario 7 -010101111111110 million- 8 -010101111111110 billion- 8 -010101111111110 Bancario 9 -010101111111110 million-to- 9 -010101111111110 p.m.-1 9 -010101111111110 million-member 21 -010101111111110 kilowatt 50 -010101111111110 o' 80 -010101111111110 witching 90 -010101111111110 equaling 596 -010101111111110 per 3565 -010101111111110 consecutive 1693 -010101111111111 2.315 1 -010101111111111 Occupation-bred 1 -010101111111111 soon-to-be-laid-off 1 -010101111111111 futures-based 1 -010101111111111 5,269,374 1 -010101111111111 hand-molded 1 -010101111111111 doctoral-level 1 -010101111111111 1.1852 1 -010101111111111 612,745 1 -010101111111111 466,834 1 -010101111111111 0.7225 1 -010101111111111 body-turn 1 -010101111111111 11,732,074 1 -010101111111111 4.464 1 -010101111111111 aone 1 -010101111111111 15.579 1 -010101111111111 Panasonic-brand 1 -010101111111111 furfural-based 1 -010101111111111 1/2-foot-long 1 -010101111111111 constituentsin 1 -010101111111111 1,963,696 1 -010101111111111 45,078 1 -010101111111111 Subzero 1 -010101111111111 2,178,000 1 -010101111111111 0.8333 1 -010101111111111 container-maker 1 -010101111111111 193,827 1 -010101111111111 6,702,906 1 -010101111111111 150,195 1 -010101111111111 329,412 1 -010101111111111 0.78394 1 -010101111111111 152,200 1 -010101111111111 .64764 1 -010101111111111 0.1365 1 -010101111111111 2.222 1 -010101111111111 280,600 1 -010101111111111 winter-weather 1 -010101111111111 3.2032 1 -010101111111111 49,730 1 -010101111111111 snowshoe 1 -010101111111111 4-by-5 1 -010101111111111 1.818 1 -010101111111111 0.285 1 -010101111111111 1,112,412 1 -010101111111111 18.218 1 -010101111111111 0.592 1 -010101111111111 amethyst 1 -010101111111111 1.311 1 -010101111111111 0.8658 1 -010101111111111 3,268,069 1 -010101111111111 caffeine-loaded 1 -010101111111111 unconsidered 1 -010101111111111 MIPS. 1 -010101111111111 63,710 1 -010101111111111 cents-per- 1 -010101111111111 271,702 1 -010101111111111 16,645,859 1 -010101111111111 5,320 1 -010101111111111 923,539 1 -010101111111111 bankruptcy-and 1 -010101111111111 3,872 1 -010101111111111 lesser-voting 1 -010101111111111 coal-fire 1 -010101111111111 20,202 1 -010101111111111 321,459 1 -010101111111111 1/2-furlong 1 -010101111111111 1.0782 1 -010101111111111 1,488,244 1 -010101111111111 714,285 1 -010101111111111 2,766,400 1 -010101111111111 colour 1 -010101111111111 1,813,689 1 -010101111111111 1,180,950 1 -010101111111111 15,757,350 1 -010101111111111 6,877,049 1 -010101111111111 1.856 1 -010101111111111 5,750,000 1 -010101111111111 5,089,958 1 -010101111111111 passenger-cabin 1 -010101111111111 caricaturing 1 -010101111111111 Cabrio 1 -010101111111111 fancy-labeled 1 -010101111111111 cordoba-a-month 1 -010101111111111 1/2-pound 1 -010101111111111 Diasonic 1 -010101111111111 outbowling 1 -010101111111111 6,485,918 1 -010101111111111 Foat 1 -010101111111111 copies/ 1 -010101111111111 Cycare 1 -010101111111111 8,005,667 1 -010101111111111 462,696 1 -010101111111111 95.24 2 -010101111111111 0.958 2 -010101111111111 7,631,486 2 -010101111111111 five-on-five 2 -010101111111111 WRAP 2 -010101111111111 1,185,000 2 -010101111111111 five-card 2 -010101111111111 3,057,000 2 -010101111111111 Bioethics 2 -010101111111111 311,654 2 -010101111111111 each. 2 -010101111111111 .57 2 -010101111111111 1,225,000 2 -010101111111111 Galants 2 -010101111111111 Oggi 2 -010101111111111 2,640,836 2 -010101111111111 7,124 2 -010101111111111 Ananda 2 -010101111111111 1.3043 2 -010101111111111 1,083,478 2 -010101111111111 ofthe 2 -010101111111111 unneccesary 2 -010101111111111 828,210 2 -010101111111111 1/2-ounce 3 -010101111111111 2,410 3 -010101111111111 0.9524 3 -010101111111111 LIN. 3 -010101111111111 0.5084 3 -010101111111111 0.415 5 -010101111111111 780,300 5 -010101111111111 each 19097 -010101111111111 E.&J 6 -01011000 48/23-3 1 -01011000 Campsa 1 -01011000 Holsum 1 -01011000 69-72 1 -01011000 war-loving 1 -01011000 Langhorn 1 -01011000 Viridiflora 1 -01011000 Lily-flowering 1 -01011000 156-10 1 -01011000 not-too-great 1 -01011000 15-39 1 -01011000 27,30 1 -01011000 late-running 1 -01011000 school-teachers 1 -01011000 Arijs 1 -01011000 61-34 1 -01011000 unraceable 1 -01011000 dinero 1 -01011000 some-all-Republican 1 -01011000 Horsesham 1 -01011000 Blasting 1 -01011000 FLYX 1 -01011000 Montdomaine 1 -01011000 then-Prof 1 -01011000 Expressen 1 -01011000 finance-administration 1 -01011000 Qiryat 1 -01011000 Pfaelzer 1 -01011000 depersonalization 1 -01011000 AWOLs 1 -01011000 walleyed 1 -01011000 Dmarks 1 -01011000 stadia 1 -01011000 KCNC-TV 1 -01011000 grenadine 1 -01011000 Kohat 1 -01011000 flans 1 -01011000 nah 1 -01011000 116.2643583 1 -01011000 Kilian 1 -01011000 roll-ons 1 -01011000 lagely 1 -01011000 Reno-Sparks 1 -01011000 hankywise 1 -01011000 Faina 1 -01011000 Pescara 1 -01011000 Florencia 1 -01011000 Minitote 1 -01011000 Sogexport 1 -01011000 self-asserting 1 -01011000 Lachine 1 -01011000 Magin 1 -01011000 leasure-oriented 1 -01011000 schistomsomiasis 1 -01011000 chain-locked 1 -01011000 261,850,700 1 -01011000 meanhwile 1 -01011000 31-28 1 -01011000 JD 1 -01011000 sellout-wise 1 -01011000 all-place 1 -01011000 parterre 1 -01011000 heartsease 1 -01011000 achilleas 1 -01011000 campanulas 1 -01011000 tooism 1 -01011000 Rafaella 1 -01011000 auto-dialer 1 -01011000 james 1 -01011000 stephen 1 -01011000 Ok. 1 -01011000 WWBT-TV 1 -01011000 Herlinda 1 -01011000 Estevan 1 -01011000 Queeg 1 -01011000 Wrexham 1 -01011000 Lakeport 1 -01011000 half-British 1 -01011000 microchange 1 -01011000 Nadhatul 1 -01011000 Tadahiro 1 -01011000 Nelli 1 -01011000 Olka. 1 -01011000 leasors 1 -01011000 wh 1 -01011000 w 1 -01011000 Papageno 1 -01011000 800-572-6037 1 -01011000 Mitsuaki 1 -01011000 Wilmington. 1 -01011000 phrasemongering 1 -01011000 Rached 1 -01011000 muffling 1 -01011000 Pentheus 1 -01011000 Odes 1 -01011000 chow-chow 1 -01011000 dispossession 1 -01011000 rocking-chair 1 -01011000 12-11 1 -01011000 Defreestville 1 -01011000 Appell 1 -01011000 valetudinarianated 1 -01011000 embiciliated 1 -01011000 Atromid-S 1 -01011000 TDF-1 1 -01011000 Zdzislawa 1 -01011000 Nyri 1 -01011000 Mirta 1 -01011000 1967-85 1 -01011000 Gif-sur-Yvette 1 -01011000 1969-71 1 -01011000 reporter/educators 1 -01011000 Mangum 1 -01011000 K-Daffy 1 -01011000 azurophil-derived 1 -01011000 W-O-L-S-F-E-L-D 1 -01011000 Eudoxia 1 -01011000 Johnny. 1 -01011000 honour 1 -01011000 research-pooling 1 -01011000 advice-oriented 1 -01011000 metiram 1 -01011000 754-767 1 -01011000 213-972-7550 1 -01011000 415-864-3330 1 -01011000 1894-1985 1 -01011000 Lampasas 1 -01011000 Waldir 1 -01011000 Gossnab 1 -01011000 exercycles 1 -01011000 Kenyahs 1 -01011000 Bidayuhs 1 -01011000 three-hole 1 -01011000 Secausus 1 -01011000 Flutterwheel 1 -01011000 18-wheelers 1 -01011000 Salvadorean 1 -01011000 422pages 1 -01011000 non-democracies 1 -01011000 Cukor 1 -01011000 EGAD 1 -01011000 Batac 1 -01011000 NF 1 -01011000 Gambia 1 -01011000 1971-81 1 -01011000 GCPWI 1 -01011000 RFPWI 1 -01011000 F.S.L.A. 1 -01011000 chiropractor-veterinarian 1 -01011000 pipepuffing 1 -01011000 Scio 1 -01011000 4.4-liter 1 -01011000 Valmai 1 -01011000 XXPWI 1 -01011000 HMPWI 1 -01011000 HLPWI 1 -01011000 Eko 1 -01011000 52-35 1 -01011000 73-57 1 -01011000 1734 1 -01011000 Haigs 1 -01011000 Kissingers 1 -01011000 Rostows 1 -01011000 1981-1986. 1 -01011000 Zi 1 -01011000 antibiotic-resistant 1 -01011000 Joop 1 -01011000 apartheid-style 1 -01011000 reroofing 1 -01011000 Eufala 1 -01011000 bronco-busting 1 -01011000 Blanchester 1 -01011000 226-193 1 -01011000 childrenswear 1 -01011000 Reshat 1 -01011000 N.U. 1 -01011000 prayer-like 1 -01011000 Taillevent 1 -01011000 stilleven 1 -01011000 Summerfield 1 -01011000 1943- 1 -01011000 Syre 1 -01011000 butadyne 1 -01011000 Silliac 1 -01011000 Illiac 1 -01011000 HVG 1 -01011000 Ekstaza 1 -01011000 tsimmis 1 -01011000 gadempta 1 -01011000 monazite 1 -01011000 Lascivious 1 -01011000 Lecherous 1 -01011000 Lewd 1 -01011000 nonanswer 1 -01011000 Fromberg 1 -01011000 punk-rock-worshipping 1 -01011000 Dibold 1 -01011000 Cullina 1 -01011000 Smithlike 1 -01011000 Ormonte 1 -01011000 Prairietek 1 -01011000 commune-style 1 -01011000 Franceville 1 -01011000 Clackamus 1 -01011000 Buthayna 1 -01011000 BUCKPAC 1 -01011000 rebirthers 1 -01011000 KNBC 1 -01011000 Pashayan 1 -01011000 tretinoin 1 -01011000 MINPECO 1 -01011000 L-S 1 -01011000 Knudsen-Erath 1 -01011000 THC/dronabinol 1 -01011000 Galanos 1 -01011000 749-669 1 -01011000 CentoRx 1 -01011000 autopilots 1 -01011000 C.D.P. 1 -01011000 Suanne 1 -01011000 Issaquahn 1 -01011000 711-681 1 -01011000 395-21 1 -01011000 WW3 1 -01011000 Ekho 1 -01011000 Transfer-Metallisierte 1 -01011000 Spanbok 1 -01011000 split-screening 1 -01011000 Abdul-Malek 1 -01011000 127-83 1 -01011000 Liviu 1 -01011000 Moelmann 1 -01011000 ciprofloxacin 1 -01011000 rodentlike 1 -01011000 Kundry-style 1 -01011000 Kachin 1 -01011000 DaNang 1 -01011000 Hisamitsu 1 -01011000 Starnberg 1 -01011000 Leominister 1 -01011000 Franz-Olivier 1 -01011000 scrapple 1 -01011000 duBois 1 -01011000 Metsys 1 -01011000 214-seat 1 -01011000 green-flecked 1 -01011000 Swindell-Dressler 1 -01011000 Crowell-Collier 1 -01011000 Vi 1 -01011000 muggiest 1 -01011000 Ken. 1 -01011000 208-169 1 -01011000 Witbank 1 -01011000 Mohammad-Mehdi 1 -01011000 Dissertation 1 -01011000 non-medal 1 -01011000 281-119 1 -01011000 lupen 1 -01011000 chunkyish 1 -01011000 lavash 1 -01011000 26658-13 1 -01011000 Kurskogo 1 -01011000 143-97-95 1 -01011000 Litowitz 1 -01011000 regular-exercising 1 -01011000 Deiter 1 -01011000 Retires 1 -01011000 vacant-cranium 1 -01011000 McGod 1 -01011000 McArt 1 -01011000 McFashion 1 -01011000 McSurgery 1 -01011000 McNews 1 -01011000 McTax 1 -01011000 ECON 1 -01011000 299-31-11 1 -01011000 238-88-88 1 -01011000 6:00-8:00 1 -01011000 22:00-23:00 1 -01011000 Tovarishcheskiyi 1 -01011000 147-04-84 1 -01011000 18:00-23:00 1 -01011000 nymphomaniacs 1 -01011000 Sicklerville 1 -01011000 child-mutilating 1 -01011000 37,640 1 -01011000 radarless 1 -01011000 Bina 1 -01011000 Gosconcert 1 -01011000 '70 1 -01011000 Reynoldsburg 1 -01011000 Medfield 1 -01011000 Vassily 1 -01011000 Flexilink 1 -01011000 post-punk 1 -01011000 builder-developer 1 -01011000 embroidering 1 -01011000 high-pressure-fluid 1 -01011000 Janio 1 -01011000 Samira 1 -01011000 pin-striped-suited 1 -01011000 38-33 1 -01011000 30-7 1 -01011000 34-14 1 -01011000 5-5-1 1 -01011000 Stolzberg 1 -01011000 Mezan 1 -01011000 Ingeborg 1 -01011000 Jure 1 -01011000 GILLES 1 -01011000 Keesha 1 -01011000 2,713 1 -01011000 Phorcys 1 -01011000 WYO. 1 -01011000 oxymoronically 1 -01011000 Volzhsprodmash 1 -01011000 Bankamerica 1 -01011000 Bananarama 1 -01011000 osteoradionecrosis 1 -01011000 Sotero 1 -01011000 Bluebeard 1 -01011000 52,029,664 1 -01011000 4,457 1 -01011000 Hartshorne 1 -01011000 Durham. 1 -01011000 Saeko 1 -01011000 marine-power 1 -01011000 84-12 1 -01011000 liquidizers 1 -01011000 eyestrain 1 -01011000 Souderton 1 -01011000 Wisc 1 -01011000 Ulend 1 -01011000 Walleye 1 -01011000 Wildbird 1 -01011000 plumeria 1 -01011000 yellow-off 1 -01011000 Croton-on-Hudson 1 -01011000 kiddo 1 -01011000 trust-inspiring 1 -01011000 Hofin 1 -01011000 Wy. 1 -01011000 Uzwil 1 -01011000 sulprotone 1 -01011000 1788-1980 1 -01011000 Shass 1 -01011000 Bertand-Anna 1 -01011000 pound-for-pound 1 -01011000 Ozmum 1 -01011000 creamless 1 -01011000 749-702 1 -01011000 KLDO-TV 1 -01011000 912-550 1 -01011000 Oldwick 1 -01011000 Octreotide 1 -01011000 866-596 1 -01011000 counterbluffing 1 -01011000 PIKs 1 -01011000 anti-junkbond 1 -01011000 anti-LBO 1 -01011000 bigger-than-life 1 -01011000 drei 1 -01011000 zwei 1 -01011000 Zarathustra 1 -01011000 Annalee 1 -01011000 Maternite 1 -01011000 912-561 1 -01011000 Maschinenfabrik 1 -01011000 mind-wearying 1 -01011000 Agudat 1 -01011000 Bush-and-Quayle-land 1 -01011000 hanh 1 -01011000 reddening 1 -01011000 post-binge 1 -01011000 Jamsetji 1 -01011000 F.K. 1 -01011000 WWVH 1 -01011000 Sandnes 1 -01011000 BCBGs 1 -01011000 45-3 1 -01011000 253.83 1 -01011000 well-collateralized 1 -01011000 unpaged 1 -01011000 Orpington 1 -01011000 797-758 1 -01011000 Blountville 1 -01011000 cornered-rat-style 1 -01011000 Macungie 1 -01011000 signlike 1 -01011000 WTVS-TV 1 -01011000 Sarong 1 -01011000 inter-alia 1 -01011000 SOLOMON 1 -01011000 COHEN 1 -01011000 unpromisingly 1 -01011000 Pappagallo 1 -01011000 Pres. 1 -01011000 freckled-faced 1 -01011000 LaserLand 1 -01011000 flute-playing 1 -01011000 Glenmora 1 -01011000 Simbari 1 -01011000 rear-engine 1 -01011000 Quirst 1 -01011000 direct-face 1 -01011000 20-19 1 -01011000 43-19 1 -01011000 euthanasists. 1 -01011000 technical/sales 1 -01011000 Ecorse 1 -01011000 no-sugar 1 -01011000 toy-making 1 -01011000 Christoval 1 -01011000 isostretinoin 1 -01011000 Manu 1 -01011000 Stevensville 1 -01011000 Havertown 1 -01011000 armored-transport 1 -01011000 ready-to-go 1 -01011000 Kaszovitz 1 -01011000 Shiviyacu-20 1 -01011000 seabeaten 1 -01011000 al-Shiraa 1 -01011000 6406/3-2 1 -01011000 91-89 1 -01011000 145-119 1 -01011000 112-104 1 -01011000 Carvedilol 1 -01011000 soundproof 1 -01011000 Chichester 1 -01011000 Republican-Democrat 1 -01011000 Lafox 1 -01011000 50-27 1 -01011000 804-782 1 -01011000 pre-cognitive 1 -01011000 Jan.14 1 -01011000 Istmo 1 -01011000 whiteflies 1 -01011000 sconces 1 -01011000 D.C.-Baltimore 1 -01011000 heresay 1 -01011000 Kristoff 1 -01011000 Hallgarden 1 -01011000 Saeid 1 -01011000 Soyuznefte-export 1 -01011000 Newnham 1 -01011000 1722 1 -01011000 zaimu 1 -01011000 WINOOSKI 1 -01011000 Spartansburg 1 -01011000 880-718 1 -01011000 Spelled 1 -01011000 Jan.5 1 -01011000 CONN. 1 -01011000 V.C. 1 -01011000 Melburne 1 -01011000 homophobes 1 -01011000 larchwood 1 -01011000 2'-iminodibenzoate 1 -01011000 dirges 1 -01011000 CHOYANG 1 -01011000 11-9 1 -01011000 1955-1959 1 -01011000 CS-807 1 -01011000 Virachai 1 -01011000 Lav 1 -01011000 Dietmar 1 -01011000 Brookses 1 -01011000 purple-trimmed 1 -01011000 gemfibrizol 1 -01011000 synvinolin 1 -01011000 Gandal 1 -01011000 94-85 1 -01011000 none. 1 -01011000 Telepress 1 -01011000 fictionally 1 -01011000 privee 1 -01011000 KEYT 1 -01011000 glugs 1 -01011000 suh 1 -01011000 61-59 1 -01011000 Japan-style 1 -01011000 keychains 1 -01011000 instigations 1 -01011000 playsets 1 -01011000 agroprocessing 1 -01011000 emus 1 -01011000 Dosal 1 -01011000 LAOS 1 -01011000 salmeterol 1 -01011000 Romaldo 1 -01011000 Mustard 1 -01011000 Gherkin 1 -01011000 unassumingly 1 -01011000 blackballing 1 -01011000 Register-Herald 1 -01011000 Enquirer-Journal 1 -01011000 teacherly 1 -01011000 216-203 1 -01011000 gift-wrapped 1 -01011000 chimp-style 1 -01011000 sweetie. 1 -01011000 FLA. 1 -01011000 Melbourne-Titusville 1 -01011000 Intevep 1 -01011000 SS-22s 1 -01011000 Floodgate 1 -01011000 Guilherme 1 -01011000 Austalia 1 -01011000 Alwyn 1 -01011000 gits 1 -01011000 whitey 1 -01011000 Pennsville 1 -01011000 DOPWI 1 -01011000 Taurean 1 -01011000 SeaCo. 1 -01011000 Leesville 1 -01011000 133-123 1 -01011000 44-years-old 1 -01011000 Maddock 1 -01011000 UPPWI 1 -01011000 Hammonton 1 -01011000 Brazleton 1 -01011000 AL721 1 -01011000 MORS 1 -01011000 Mountainville 1 -01011000 Rashomet 1 -01011000 Simla 1 -01011000 urinalyses 1 -01011000 1957-1984 1 -01011000 mounding 1 -01011000 AOPWI 1 -01011000 plumpish 1 -01011000 neoisolationism 1 -01011000 credit-wise 1 -01011000 white-knuckled 1 -01011000 Addys 1 -01011000 Janni 1 -01011000 Earlene 1 -01011000 Woodinville 1 -01011000 Eleudora 1 -01011000 Bitte 1 -01011000 MKSWI 1 -01011000 MKPWI 1 -01011000 Humacao 1 -01011000 gastroenterology 1 -01011000 Red-baiting 1 -01011000 driveability 1 -01011000 Franciszek 1 -01011000 girl-almost-eaten-by-croc 1 -01011000 one-hole 1 -01011000 Brownstown 1 -01011000 Parowan 1 -01011000 58-36 1 -01011000 776-769 1 -01011000 21201 1 -01011000 20910 1 -01011000 48235 1 -01011000 37801 1 -01011000 Picibanil 1 -01011000 Liebfraumilch 1 -01011000 Peterhead 1 -01011000 copra 1 -01011000 Csangos 1 -01011000 Kirstin 1 -01011000 Tengesic 1 -01011000 PROFESSIONALS 1 -01011000 hesaid 1 -01011000 85-12 1 -01011000 394-27 1 -01011000 Harmoko 1 -01011000 somersaulting 1 -01011000 Leonida 1 -01011000 117-115 1 -01011000 DanielFiori 1 -01011000 pedal-pushers 1 -01011000 15-10 1 -01011000 overemployment 1 -01011000 macaques 1 -01011000 HL-721 1 -01011000 MISS. 1 -01011000 Ballwin 1 -01011000 Medicare/Medicaid 1 -01011000 sir. 1 -01011000 103-95 1 -01011000 small-capacity 1 -01011000 aide-de-camp 1 -01011000 tonguing 1 -01011000 symptomatically 1 -01011000 Kultur 1 -01011000 Frisco 1 -01011000 810-739 1 -01011000 podiatrists 1 -01011000 Littletown 1 -01011000 Hullera 1 -01011000 no-peel 1 -01011000 slick-skinned 1 -01011000 green-mauve 1 -01011000 Chelan 1 -01011000 khaki-colored 1 -01011000 sociobiologists 1 -01011000 Viveca 1 -01011000 Cefodizime 1 -01011000 Messimvrini 1 -01011000 WVUE 1 -01011000 triangulating 1 -01011000 Itsik 1 -01011000 knobby-kneed 1 -01011000 acetaldehyde 1 -01011000 par-58 1 -01011000 rototilling 1 -01011000 maybe. 1 -01011000 300CD 1 -01011000 Lockland 1 -01011000 incidently 1 -01011000 meter-maid 1 -01011000 Semra 1 -01011000 Medusa-style 1 -01011000 238-pound 1 -01011000 demoded 1 -01011000 Royersford 1 -01011000 Cerrillos 1 -01011000 Poilly-lez-Gien 1 -01011000 Danno 1 -01011000 bottled-in-bond 1 -01011000 10-11p.m. 1 -01011000 Sam-I-Am 1 -01011000 1596 1 -01011000 WTNH 1 -01011000 Escajeda 1 -01011000 welcome-home-husband-though-never-so-drunk 1 -01011000 272-149 1 -01011000 schmistory 1 -01011000 rosewise 1 -01011000 Rugosas 1 -01011000 Musks 1 -01011000 Noisettes 1 -01011000 Boursaults 1 -01011000 Mosses 1 -01011000 Centifolias 1 -01011000 Albas 1 -01011000 Damasks 1 -01011000 Ferari 1 -01011000 rispetto 1 -01011000 Vari-lite 1 -01011000 WCYS 1 -01011000 sogoody 1 -01011000 fibromyositis 1 -01011000 cockiest 1 -01011000 Sousse 1 -01011000 Msaken 1 -01011000 Sfax 1 -01011000 Gabes 1 -01011000 Iraklion 1 -01011000 Slidel 1 -01011000 257-162 1 -01011000 259-157 1 -01011000 220-198 1 -01011000 Moville 1 -01011000 Neligh 1 -01011000 Garabet 1 -01011000 89-84 1 -01011000 94104 1 -01011000 20416 1 -01011000 Burton-Campbell/EPB 1 -01011000 STRESSED 1 -01011000 Shahjahan 1 -01011000 Sidiqullah 1 -01011000 rubber-wheeled 1 -01011000 145-to-1 1 -01011000 8,854 1 -01011000 Yoe 1 -01011000 Lutcher 1 -01011000 Protropen 1 -01011000 nits 1 -01011000 mastigophorans 1 -01011000 FCSWI 1 -01011000 FCPWI 1 -01011000 Galva 1 -01011000 Geometry 1 -01011000 unfortuntely 1 -01011000 Oneonta 1 -01011000 zig-zags 1 -01011000 Kurrachee 1 -01011000 Nicklausse 1 -01011000 Zinka 1 -01011000 continent-hopping 1 -01011000 Upholstery 1 -01011000 Mandolina 1 -01011000 Musette 1 -01011000 85-2 1 -01011000 sore-armed 1 -01011000 Stanham 1 -01011000 251-173 1 -01011000 Teredata 1 -01011000 Iacocca-style 1 -01011000 209-208 1 -01011000 Zlatopol 1 -01011000 Belz 1 -01011000 turtledoves 1 -01011000 Savuka 1 -01011000 Juluka 1 -01011000 404-549-8279 1 -01011000 14-9 1 -01011000 23-21 1 -01011000 80-yarder 1 -01011000 Lybia 1 -01011000 Porcari 1 -01011000 lullingly 1 -01011000 1957-59 1 -01011000 primroses 1 -01011000 109-102 1 -01011000 kelpies 1 -01011000 silkies 1 -01011000 Christian/Jew 1 -01011000 America/Europe 1 -01011000 duty/rebellion 1 -01011000 family/individual 1 -01011000 self/society 1 -01011000 sex/love 1 -01011000 goodia 1 -01011000 cardoon 1 -01011000 gunnera 1 -01011000 grewia 1 -01011000 delphinium 1 -01011000 beebalm 1 -01011000 conjugation 1 -01011000 halitosis 1 -01011000 MCATs 1 -01011000 GREs 1 -01011000 LSATs 1 -01011000 Char 1 -01011000 alibied 1 -01011000 Gewurztraminer 1 -01011000 74-23 1 -01011000 Enoteca 1 -01011000 Ashville 1 -01011000 writeable 1 -01011000 1868-1963 1 -01011000 Chernobyl. 1 -01011000 19-16 1 -01011000 Shannel 1 -01011000 Itaru 1 -01011000 hmm 1 -01011000 Cantv 1 -01011000 monsieur 1 -01011000 Sudan-style 1 -01011000 Tantung 1 -01011000 bland-tasting 1 -01011000 Charger 1 -01011000 1/12/87 1 -01011000 Servilia 1 -01011000 Saed 1 -01011000 branch-line 1 -01011000 diet-wise 1 -01011000 rectively 1 -01011000 wht 1 -01011000 uncoordination 1 -01011000 Addsion 1 -01011000 Pro-Air 1 -01011000 fast-living 1 -01011000 p.608 1 -01011000 Elserino 1 -01011000 D2-WI 1 -01011000 cretin 1 -01011000 Humphrey-McGovern 1 -01011000 defecating 1 -01011000 Chestertown 1 -01011000 gouache 1 -01011000 NewPark 1 -01011000 900-year-old 1 -01011000 hoorah 1 -01011000 radiotelephones 1 -01011000 Aussat-II 1 -01011000 LAV 1 -01011000 Vino 1 -01011000 dressmaking 1 -01011000 Rogersville 1 -01011000 BQC 1 -01011000 never. 1 -01011000 Bhishma 1 -01011000 Greeneville 1 -01011000 Cranston/Prescott 1 -01011000 64-24 1 -01011000 part-autobiography 1 -01011000 anti-artistic 1 -01011000 Guntersville 1 -01011000 951-570 1 -01011000 non-refueled 1 -01011000 Blocadren 1 -01011000 impudent 1 -01011000 Mariya 1 -01011000 YUE 1 -01011000 Wakarusa 1 -01011000 planers 1 -01011000 sex-maniac 1 -01011000 sandal-wearer 1 -01011000 scientist-run 1 -01011000 Backwaren 1 -01011000 Succasunna 1 -01011000 Tamaqua 1 -01011000 argees 1 -01011000 Pasolini 1 -01011000 Bunuel 1 -01011000 Ken-A-Go-Go 1 -01011000 uncompassionate 1 -01011000 townscapes 1 -01011000 measuredly 1 -01011000 R-12 1 -01011000 elliptically 1 -01011000 LaVargne 1 -01011000 Lueders 1 -01011000 semi-coherent 1 -01011000 Kataizyna 1 -01011000 neocon 1 -01011000 muscle-ache 1 -01011000 ho-ing 1 -01011000 Opelika 1 -01011000 ethnicityn 1 -01011000 252172 1 -01011000 Vinland 1 -01011000 Formanized 1 -01011000 Judases 1 -01011000 corporate-trained 1 -01011000 un-Joneslike 1 -01011000 Boochever 1 -01011000 Bhangali-1 1 -01011000 Etobicoke 1 -01011000 USA-DIRECT 1 -01011000 September. 1 -01011000 ex-lovers 1 -01011000 Barfko-Swill 1 -01011000 Riverwoods 1 -01011000 Prestonsburg 1 -01011000 902F 1 -01011000 726-697 1 -01011000 micro-skirts 1 -01011000 Dyersburg 1 -01011000 15/17-16 1 -01011000 cooperative-owned 1 -01011000 hyphen-not-space 1 -01011000 drinkwise 1 -01011000 buyable 1 -01011000 S.430 1 -01011000 Connersville 1 -01011000 Publicis/FCB 1 -01011000 10-string 1 -01011000 legal-authority-for-hire 1 -01011000 Bounty-style 1 -01011000 Masetto 1 -01011000 still-here 1 -01011000 unwimpily 1 -01011000 rocklike 1 -01011000 PKU 1 -01011000 anomalously 1 -01011000 BBDO/West 1 -01011000 graph-making 1 -01011000 Paternelle 1 -01011000 dial-an-oddsmaker 1 -01011000 dial-a-preacher 1 -01011000 petroleum-service 1 -01011000 Utah. 1 -01011000 ageism 1 -01011000 Nokomis 1 -01011000 ASALA 1 -01011000 rosins 1 -01011000 Bowlmor 1 -01011000 anemones 1 -01011000 801-672 1 -01011000 238-plank 1 -01011000 Tsutako 1 -01011000 undercoached 1 -01011000 Randee 1 -01011000 1038 1 -01011000 1966-69 1 -01011000 harebells 1 -01011000 salsify 1 -01011000 Harrogate 1 -01011000 49-49 1 -01011000 honeybunch 1 -01011000 free-marketism 1 -01011000 Hinesburg 1 -01011000 Alimate 1 -01011000 55-ish 1 -01011000 145-1 1 -01011000 quick-response 1 -01011000 D.D.S. 1 -01011000 rosebushes 1 -01011000 Oilton 1 -01011000 gutty 1 -01011000 bullhead 1 -01011000 bowfin 1 -01011000 gar 1 -01011000 high-cost-per-unit 1 -01011000 unprompted 1 -01011000 Caffey 1 -01011000 novelettes 1 -01011000 HASTINGS 1 -01011000 Waren 1 -01011000 3,628 1 -01011000 819-679 1 -01011000 anti-farmer 1 -01011000 946-548 1 -01011000 Viberts 1 -01011000 Geromes 1 -01011000 36-22 1 -01011000 Meissoniers 1 -01011000 Hodgenville 1 -01011000 74-14 1 -01011000 decadences 1 -01011000 Winesburg 1 -01011000 1969-1973 1 -01011000 double-checked 1 -01011000 tear-proof 1 -01011000 industrial-chemical 1 -01011000 Capozide 1 -01011000 Rockledge 1 -01011000 Barbara. 1 -01011000 251-120 1 -01011000 ADP-BIS 1 -01011000 inventorying 1 -01011000 ill-nourished 1 -01011000 Stanya 1 -01011000 Manju 1 -01011000 Savita 1 -01011000 Artemis 1 -01011000 Betula 1 -01011000 Sinarundinaria 1 -01011000 Nafinsa 1 -01011000 Cleveland. 1 -01011000 capitalism-communism-capitalism-communi 1 -01011000 Elvire 1 -01011000 K.475 1 -01011000 Lucette 1 -01011000 Carld 1 -01011000 Juma 1 -01011000 Ibel 1 -01011000 hockey-style 1 -01011000 Goldsmiths 1 -01011000 Aragvi 1 -01011000 country-poor 1 -01011000 Fatmah 1 -01011000 Ubaldo 1 -01011000 Couse 1 -01011000 white-built 1 -01011000 birdwatching 1 -01011000 155,662-122,315 1 -01011000 Sadiq 1 -01011000 Londontowne 1 -01011000 neo-evolutionary 1 -01011000 Fleischmanns 1 -01011000 129,139111,683 1 -01011000 21,557-17,042 1 -01011000 7,364-4,601 1 -01011000 308-113 1 -01011000 Wyondotte 1 -01011000 Ind.-Owensboro 1 -01011000 opera-style 1 -01011000 Communist-style 1 -01011000 843-640 1 -01011000 Bucuresti 1 -01011000 cheeping 1 -01011000 druggers 1 -01011000 recyled 1 -01011000 active-player 1 -01011000 Jerseyville 1 -01011000 841-605 1 -01011000 563-8300 1 -01011000 fluvoxamine 1 -01011000 496-7070 1 -01011000 macho-type 1 -01011000 1-800-782-4369 1 -01011000 Sojuzpushnina 1 -01011000 Mopsy 1 -01011000 futures-hedging 1 -01011000 Bandini 1 -01011000 74-71 1 -01011000 R.I 1 -01011000 Xang 1 -01011000 2B 1 -01011000 809-633 1 -01011000 160-strong 1 -01011000 acerbities 1 -01011000 Sophomoric 1 -01011000 Buprenex 1 -01011000 Weirdo 1 -01011000 Anarchist 1 -01011000 Pinko 1 -01011000 silver-templed 1 -01011000 Rosane 1 -01011000 gerbils 1 -01011000 Saskia 1 -01011000 pedophiles 1 -01011000 transsexuals 1 -01011000 Arcaro 1 -01011000 kaffeeklatsches 1 -01011000 haloperidol 1 -01011000 Karbassion 1 -01011000 Loreen 1 -01011000 unself-pitying 1 -01011000 Toodles 1 -01011000 cockfight 1 -01011000 unexcitable 1 -01011000 Forida 1 -01011000 Cockeysville 1 -01011000 jeroboams 1 -01011000 Alprin 1 -01011000 Mannino 1 -01011000 FLAHERTY 1 -01011000 Selectibles 1 -01011000 neo-African 1 -01011000 Kovno 1 -01011000 1956-66 1 -01011000 Malibu-style 1 -01011000 flared-wing 1 -01011000 Nemer 1 -01011000 prototyped 1 -01011000 71-58 1 -01011000 C+ 1 -01011000 Rosenthal-Collins 1 -01011000 biathletes 1 -01011000 Hytech 1 -01011000 mulattos 1 -01011000 suntanned 1 -01011000 Cheekwood 1 -01011000 near-takeovers 1 -01011000 ratings-wise 1 -01011000 N.D 1 -01011000 Mitsue 1 -01011000 Nipisi 1 -01011000 Ferlibs 1 -01011000 Weatherbys 1 -01011000 Nykredit 1 -01011000 eventing 1 -01011000 fraternally 1 -01011000 300TE 1 -01011000 560SEL 1 -01011000 MICH. 1 -01011000 Moerdiono 1 -01011000 CALIF. 1 -01011000 BSB/Dorland 1 -01011000 1911-1949 1 -01011000 Leopardi 1 -01011000 VO 1 -01011000 Duryee 1 -01011000 Feb.3 1 -01011000 Kintner 1 -01011000 2038 1 -01011000 Kiyomi 1 -01011000 pension-drawing 1 -01011000 generosities 1 -01011000 Garvis 1 -01011000 thymine 1 -01011000 cockchafers 1 -01011000 Ubud 1 -01011000 afterall 1 -01011000 772-684 1 -01011000 215-210 1 -01011000 chloroquine 1 -01011000 Sljeme 1 -01011000 mene 1 -01011000 heinasirkka 1 -01011000 66-33 1 -01011000 quartermasters 1 -01011000 flag-bearers 1 -01011000 morale-boosters 1 -01011000 811-696 1 -01011000 43-pound 1 -01011000 Angelton 1 -01011000 bathmats 1 -01011000 tetrachlorophenol 1 -01011000 lucine 1 -01011000 benzol 1 -01011000 cyclohexane 1 -01011000 nectarines 1 -01011000 55-43 1 -01011000 co-generators 1 -01011000 Bridgforth 1 -01011000 Tenzin 1 -01011000 Hamendra 1 -01011000 Confucians 1 -01011000 hmmm 1 -01011000 Carter-Anne 1 -01011000 Outperform 1 -01011000 R-shaped 1 -01011000 score-settling 1 -01011000 Sojuzplodoimport 1 -01011000 105-97 1 -01011000 Anatol 1 -01011000 Lubao 1 -01011000 Mvelisi 1 -01011000 research- 1 -01011000 Croyden 1 -01011000 non-maneuvers 1 -01011000 Junket. 1 -01011000 heh 1 -01011000 Levina 1 -01011000 1,017,012 1 -01011000 Campy 1 -01011000 punk-dunk 1 -01011000 18-7 1 -01011000 kidnaped 1 -01011000 Nordica 1 -01011000 Derrell 1 -01011000 anti-absolutist 1 -01011000 undeclarable. 1 -01011000 additive-free 1 -01011000 Aspidistra 1 -01011000 808-729 1 -01011000 1976-78 1 -01011000 all-too-female 1 -01011000 egad 1 -01011000 Wauwatosa 1 -01011000 Veritas 1 -01011000 Supat 1 -01011000 Munhall 1 -01011000 regretably 1 -01011000 9,321 1 -01011000 Floey 1 -01011000 Roachdale 1 -01011000 walrus-like 1 -01011000 Friesland 1 -01011000 reminiscently 1 -01011000 Gilberg 1 -01011000 Hlavka 1 -01011000 Uzwiak 1 -01011000 Vermonty 1 -01011000 Mueger 1 -01011000 Grazioso 1 -01011000 Schwartzenhauer 1 -01011000 McGervey 1 -01011000 Arleta 1 -01011000 Parbury 1 -01011000 pig-tailed 1 -01011000 Lengfelder 1 -01011000 Hladky 1 -01011000 Helie 1 -01011000 Dowdey 1 -01011000 Caponi 1 -01011000 826-618 1 -01011000 manicotti 1 -01011000 timetables. 1 -01011000 6b7 1 -01011000 Cornas 1 -01011000 St.-Joseph 1 -01011000 Kingswood 1 -01011000 Lela 1 -01011000 gelatins 1 -01011000 8828011 1 -01011000 1910-1930 1 -01011000 876-636 1 -01011000 Wolfy 1 -01011000 Nick-at-Nite 1 -01011000 Vanagons 1 -01011000 consultants. 1 -01011000 ego-wise 1 -01011000 Band-aided 1 -01011000 Beverage-Air 1 -01011000 pul-eeze 1 -01011000 mastiffs 1 -01011000 Rubina 1 -01011000 Diboli 1 -01011000 Tintas 1 -01011000 limited-run 1 -01011000 terpy 1 -01011000 Refreshed 1 -01011000 tarantulas 1 -01011000 Geertz 1 -01011000 in-accord-with-nature 1 -01011000 Attacca 1 -01011000 22-13 1 -01011000 egoistical 1 -01011000 364-56 1 -01011000 twin-bladed 1 -01011000 861-598 1 -01011000 Monitor-Plus 1 -01011000 EPREX 1 -01011000 781-221 1 -01011000 narrow-mindedly 1 -01011000 Jolene 1 -01011000 Burchette 1 -01011000 Myrella 1 -01011000 Leitchfield 1 -01011000 stomachwise 1 -01011000 Rodchenko 1 -01011000 Lissitzky 1 -01011000 Burien 1 -01011000 sexless 1 -01011000 Testskin 1 -01011000 Ellinwood 1 -01011000 see-nothing 1 -01011000 Kutuzov 1 -01011000 re-everything 1 -01011000 re-leveraged 1 -01011000 Horry 1 -01011000 Bactroban 1 -01011000 unresponsiveness 1 -01011000 64-30 1 -01011000 Chandons 1 -01011000 Rufenacht 1 -01011000 JIL 1 -01011000 Altemur 1 -01011000 Cir 1 -01011000 Wolffe 1 -01011000 Schaffhausen 1 -01011000 Switz. 1 -01011000 Abdon 1 -01011000 whammo 1 -01011000 866-680 1 -01011000 riv.vu 1 -01011000 3a. 1 -01011000 BTV 1 -01011000 moussaka 1 -01011000 egotistic 1 -01011000 Buttrey 1 -01011000 Cheswick 1 -01011000 plotwise 1 -01011000 neopopulist 1 -01011000 Maos 1 -01011000 Hitlers 1 -01011000 magnanimously 1 -01011000 Syrias 1 -01011000 pro-regulationist 1 -01011000 Marmero 1 -01011000 drugrunners 1 -01011000 Olenegorsk 1 -01011000 Mishelevka 1 -01011000 pro-jobs 1 -01011000 Isocracy 1 -01011000 articulateness 1 -01011000 defaces 1 -01011000 44-0 1 -01011000 37-7 1 -01011000 76-24 1 -01011000 69-31 1 -01011000 SFX 1 -01011000 GLD 1 -01011000 Novolin 1 -01011000 save-the-whalers 1 -01011000 hard-worked 1 -01011000 map-making 1 -01011000 non-ratified 1 -01011000 Icehouse 1 -01011000 Austrade 1 -01011000 Bush/Kirkpatrick 1 -01011000 Bush/Kemp 1 -01011000 Sarcoxie 1 -01011000 Caffedrine 1 -01011000 Sportscreme 1 -01011000 269-156 1 -01011000 goateed 1 -01011000 230-195 1 -01011000 285-140 1 -01011000 then-U.S. 1 -01011000 boodleoo 1 -01011000 Janatha 1 -01011000 Wigand 1 -01011000 Cozmopole 1 -01011000 country-music-loving 1 -01011000 Motherwell 1 -01011000 HaNegev 1 -01011000 juicers 1 -01011000 ceramists 1 -01011000 profspeak 1 -01011000 Birgitta 1 -01011000 718-636-4100 1 -01011000 1-800-492-9696 1 -01011000 alpenglow 1 -01011000 NDN 1 -01011000 Iturup 1 -01011000 Soliz 1 -01011000 Olszewski 1 -01011000 354-10 1 -01011000 Rohwer 1 -01011000 Minidoka 1 -01011000 Calvinita 1 -01011000 Lutheranism 1 -01011000 sub-headlines 1 -01011000 TransmancheLink 1 -01011000 Weissler 1 -01011000 unfeathered 1 -01011000 wisher 1 -01011000 Reagan-administration-style 1 -01011000 Terranomics 1 -01011000 Ronell 1 -01011000 mRNA 1 -01011000 75-20 1 -01011000 TexGenPar 1 -01011000 846-566 1 -01011000 six-four 1 -01011000 1945-1988 1 -01011000 62-35 1 -01011000 Abd-al-Aziz 1 -01011000 Sofya 1 -01011000 double-action 1 -01011000 Zoladex 1 -01011000 Santurce 1 -01011000 Diprivan 1 -01011000 1923-1929 1 -01011000 starshaped 1 -01011000 Sovtransavto 1 -01011000 Bonacquist 1 -01011000 Zauderer 1 -01011000 Ellenhorn 1 -01011000 Akenside 1 -01011000 pipedreams 1 -01011000 Ajman 1 -01011000 Noelle 1 -01011000 consumer-housewares 1 -01011000 be-sweatered 1 -01011000 887-561 1 -01011000 84-14 1 -01011000 Ignazio 1 -01011000 Lavvie 1 -01011000 '62 1 -01011000 France-Plus 1 -01011000 father-to-son 1 -01011000 Aptox 1 -01011000 740-634 1 -01011000 MalletProvost 1 -01011000 413-0 1 -01011000 SportLabs 1 -01011000 826-626 1 -01011000 CanadianMen 1 -01011000 BlackMen 1 -01011000 Liberacion 1 -01011000 Marciano-Charles 1 -01011000 McAulay 1 -01011000 orioles 1 -01011000 smartweed 1 -01011000 MRBI 1 -01011000 Coltin 1 -01011000 hard-to-maintain 1 -01011000 chickadees 1 -01011000 martins 1 -01011000 Kurnool 1 -01011000 Magda 1 -01011000 irrelevantly 1 -01011000 sir-r-r 1 -01011000 grimfaced 1 -01011000 FPC-by-the-Sea 1 -01011000 mouflons 1 -01011000 362-46 1 -01011000 7129 1 -01011000 Aggies 1 -01011000 Moonstones 1 -01011000 Subcontracts 1 -01011000 Carmenet 1 -01011000 98-1 1 -01011000 Messager 1 -01011000 sadomasochists 1 -01011000 DLT 1 -01011000 Alamogordo 1 -01011000 uncapitalized 1 -01011000 Whirlaway 1 -01011000 mud-crusted 1 -01011000 WTPI-FM 1 -01011000 54-41 1 -01011000 Viraid 1 -01011000 Dr-Panda 1 -01011000 Flu-shot+ 1 -01011000 N-acetylcysteine 1 -01011000 methaqualone 1 -01011000 Gayfryd 1 -01011000 849-662 1 -01011000 aminophyllin 1 -01011000 Nirvalur 1 -01011000 Bykov 1 -01011000 Mordukova 1 -01011000 524td 1 -01011000 61799-9903. 1 -01011000 Jamey 1 -01011000 Ottmar 1 -01011000 Xeres 1 -01011000 67-3891 1 -01011000 67-3892 1 -01011000 1-800-242-9034 1 -01011000 15522 1 -01011000 horseshoers 1 -01011000 Polian 1 -01011000 buckboards 1 -01011000 CJIIA 1 -01011000 surreys 1 -01011000 stagecoaches 1 -01011000 ahh 1 -01011000 percentagewise 1 -01011000 212-431-1590 1 -01011000 unwomaned 1 -01011000 Vosper 1 -01011000 TTS-fentanyl 1 -01011000 Kurosowa 1 -01011000 Antonioni 1 -01011000 boot-stomping 1 -01011000 professional-audio 1 -01011000 WOJB-FM 1 -01011000 Digsa 1 -01011000 986-473 1 -01011000 52-43 1 -01011000 Periodicos 1 -01011000 one-bath 1 -01011000 A-B-C-D-E 1 -01011000 A-B-C-D 1 -01011000 Copenhagan 1 -01011000 wild-riding 1 -01011000 articulate. 1 -01011000 Avel 2 -01011000 AMPS 2 -01011000 bitte 2 -01011000 Massoud 2 -01011000 39-20 2 -01011000 Sigrid 2 -01011000 gazpacho 2 -01011000 rah 2 -01011000 textureless 2 -01011000 Morganville 2 -01011000 Dollie 2 -01011000 Seedsman 2 -01011000 transduction 2 -01011000 MA 2 -01011000 Chickasha 2 -01011000 WA 2 -01011000 bam 2 -01011000 hollyhocks 2 -01011000 foxgloves 2 -01011000 click-plop 2 -01011000 Maribel 2 -01011000 Sebille 2 -01011000 YM 2 -01011000 Urzula 2 -01011000 MBOs 2 -01011000 Thorgrimson 2 -01011000 gordsadul 2 -01011000 PLEASE 2 -01011000 8808081 2 -01011000 Lafont 2 -01011000 yarrow 2 -01011000 Tionesta 2 -01011000 conspiratorially 2 -01011000 Enichen 2 -01011000 asters 2 -01011000 239-177 2 -01011000 24-0 2 -01011000 marketing-wise 2 -01011000 viz. 2 -01011000 choker 2 -01011000 GOH 2 -01011000 Clow/RSCG 2 -01011000 foreigner-bashing 2 -01011000 Checkup 2 -01011000 1-800-ACS-2345 2 -01011000 boy-meets-girl 2 -01011000 Zivley 2 -01011000 mockingbirds 2 -01011000 DHPrint 2 -01011000 1a 2 -01011000 Edelca 2 -01011000 guv 2 -01011000 N.Y 2 -01011000 Fibras 2 -01011000 Shevin 2 -01011000 24-14 2 -01011000 Prosen 2 -01011000 N312RC 2 -01011000 40244 2 -01011000 B- 2 -01011000 Wieser 2 -01011000 83-79 2 -01011000 EKGs 2 -01011000 874-628 2 -01011000 sorrel 2 -01011000 LaJoe 2 -01011000 Smedley 2 -01011000 292-133 2 -01011000 Gaims 2 -01011000 pro-school-prayer 2 -01011000 Wisc. 2 -01011000 pirozhki 2 -01011000 Carmella 2 -01011000 Machu 2 -01011000 Derck 2 -01011000 Collinsville 2 -01011000 ill-clad 2 -01011000 Reinbeck 2 -01011000 Wa. 2 -01011000 WFAN-AM 2 -01011000 S-A-T 2 -01011000 Gianluca 2 -01011000 295-115 2 -01011000 Hadi 2 -01011000 1890-1976 2 -01011000 Al-Watan 2 -01011000 no-kids 2 -01011000 Merchantville 3 -01011000 Yacimientos 3 -01011000 Fiscales 3 -01011000 WCVB-TV 3 -01011000 02138 3 -01011000 ahem 3 -01011000 Valdese 3 -01011000 Ohio. 3 -01011000 Cal. 3 -01011000 Ellenoff 3 -01011000 dideoxyadenosine 3 -01011000 universalistic 3 -01011000 Seguela 3 -01011000 Fla 3 -01011000 Menands 3 -01011000 tsk 3 -01011000 Euless 3 -01011000 wo 3 -01011000 physostigmine 3 -01011000 Allain 3 -01011000 Sonsini 3 -01011000 Edgewood 3 -01011000 Bella 3 -01011000 Redeemable 3 -01011000 Azima 3 -01011000 Oradell 3 -01011000 Chinka 3 -01011000 defiling 3 -01011000 Leezy 3 -01011000 yip 3 -01011000 Palomba 3 -01011000 Sebastopol 3 -01011000 Hubie 4 -01011000 Crossley 4 -01011000 Hackettstown 4 -01011000 um 4 -01011000 Glenville 4 -01011000 lactose 4 -01011000 Q-tips 4 -01011000 Sian 4 -01011000 Thackeray 4 -01011000 Ilse 5 -01011000 Spahr 5 -01011000 Mallet-Prevost 5 -01011000 Bursatil 5 -01011000 Greene/Worldwide 5 -01011000 Pickard 6 -01011000 Mich 6 -01011000 N.J 6 -01011000 Fairlawn 6 -01011000 Ont. 6 -01011000 unsurprisingly 7 -01011000 Hallgarten 7 -01011000 Sirowitz 9 -01011000 Calif 10 -01011000 Trull 10 -01011000 splat 10 -01011000 Karbassioun 10 -01011000 Bushby 10 -01011000 Seema 11 -01011000 Penn. 11 -01011000 ah 12 -01011000 Salaried 12 -01011000 1989. 14 -01011000 Tex. 14 -01011000 ho 18 -01011000 Fierman 18 -01011000 first-out 18 -01011000 uh 19 -01011000 Labouisse 19 -01011000 Nessen 20 -01011000 Scholer 22 -01011000 yeah 22 -01011000 Underberg 39 -01011000 Mont 54 -01011000 Neb 54 -01011000 sir 59 -01011000 incidentally 65 -01011000 S.D. 79 -01011000 Nev 79 -01011000 Federico 83 -01011000 N.D. 83 -01011000 Mont. 90 -01011000 Okla 91 -01011000 alas 91 -01011000 Minn 97 -01011000 Slate 100 -01011000 Wyo. 102 -01011000 Ind 107 -01011000 Colo 114 -01011000 etc 117 -01011000 Ore 123 -01011000 Unterberg 131 -01011000 Ariz 146 -01011000 Miss. 148 -01011000 Kan 148 -01011000 Tenn 148 -01011000 etc. 150 -01011000 Vt. 171 -01011000 Neb. 202 -01011000 N.M. 209 -01011000 Ark. 224 -01011000 Nev. 247 -01011000 W.Va. 262 -01011000 Del. 280 -01011000 moreover 329 -01011000 Minn. 360 -01011000 Okla. 361 -01011000 La. 366 -01011000 Ore. 366 -01011000 N.H. 367 -01011000 Kan. 380 -01011000 R.I. 385 -01011000 S.C. 394 -01011000 Colo. 396 -01011000 Ala. 400 -01011000 Ind. 408 -01011000 Ky. 448 -01011000 Ariz. 542 -01011000 Wash. 549 -01011000 Wis. 554 -01011000 Tenn. 564 -01011000 Ga. 600 -01011000 Md. 667 -01011000 Mo. 747 -01011000 N.C. 851 -01011000 respectively 954 -01011000 D.C. 1276 -01011000 Va. 1307 -01011000 meanwhile 1531 -01011000 Pa. 1568 -01011000 Mich. 1572 -01011000 Ill. 1579 -01011000 Fla. 1907 -01011000 Conn. 1963 -01011000 Mass. 2286 -01011000 N.Y. 2783 -01011000 N.J. 2921 -01011000 however 13248 -01011000 Calif. 6104 -010110010 Korean-assembled 1 -010110010 dramaturgy 1 -010110010 brokerage-type 1 -010110010 skin-cutting 1 -010110010 Affilated 1 -010110010 equity-laden 1 -010110010 378,882 1 -010110010 wind-shift 1 -010110010 1,813 1 -010110010 housedresses 1 -010110010 biocontrol 1 -010110010 ElderBeerman 1 -010110010 4,118,400 1 -010110010 BANG 1 -010110010 officer-candidates 1 -010110010 head-of-state-style 1 -010110010 lost-shareholder 1 -010110010 cow-talk 1 -010110010 column-mounted 1 -010110010 earthiness 1 -010110010 Wasterville 1 -010110010 freckle 1 -010110010 guilelessness 1 -010110010 170-mile-per-hour 1 -010110010 Dionex 1 -010110010 1,812,500 1 -010110010 206,869 1 -010110010 2,068,686 1 -010110010 Limnoreia 1 -010110010 Actaea 1 -010110010 Cymothoe 1 -010110010 wig-wagging 1 -010110010 1387 1 -010110010 high-money 1 -010110010 429,053 1 -010110010 cost-splitting 1 -010110010 BI 1 -010110010 Goettingen 1 -010110010 LVADS 1 -010110010 work-period 1 -010110010 VMS. 1 -010110010 Mr.DeNunzio 1 -010110010 jam-jar 1 -010110010 Iznik 1 -010110010 gold-edged 1 -010110010 ICN-financed 1 -010110010 Atlasair 1 -010110010 farm-bill 1 -010110010 whomhe 1 -010110010 8,089,926 1 -010110010 sliva 1 -010110010 afghans 1 -010110010 well-footnoted 1 -010110010 between-you-and-me-style 1 -010110010 non-incestuous 1 -010110010 pushiness 1 -010110010 Mr.Giuliani 1 -010110010 thigh-deep 1 -010110010 Southvaal 1 -010110010 8:41 1 -010110010 SAPC. 1 -010110010 half-watt 1 -010110010 palm-sweating 1 -010110010 advance-boarding 1 -010110010 1,000,001 1 -010110010 soft-toy 1 -010110010 730,431 1 -010110010 Neilsen-Massey 1 -010110010 Islington 1 -010110010 Adeptec 1 -010110010 Panteras 1 -010110010 Piggly-Wiggly 1 -010110010 residential-housing 1 -010110010 inanity-yelling 1 -010110010 spot-copper 1 -010110010 2,164,300 1 -010110010 Mr.Cosby 1 -010110010 9,052 1 -010110010 Tokyo.Salomon 1 -010110010 WALA 1 -010110010 cardiopulmonary-resuscitation 1 -010110010 carcinomas 1 -010110010 three-prong 1 -010110010 documentary-like 1 -010110010 vapor-seal 1 -010110010 malt-liquor 1 -010110010 HLTs 1 -010110010 cash-level 1 -010110010 konafa 1 -010110010 ranger-led 1 -010110010 down-to-the-decimal 1 -010110010 dishwater-blond 1 -010110010 You-Know-Who 1 -010110010 pro-government-regulation 1 -010110010 Arusha 1 -010110010 non-lobbying 1 -010110010 partakers 1 -010110010 AAnytime 1 -010110010 cash-only 1 -010110010 Woodblock 1 -010110010 Botnes 1 -010110010 smoke-filled-rooms 1 -010110010 KTC. 1 -010110010 surtitles 1 -010110010 7,451,000 1 -010110010 spaghettilike 1 -010110010 easy-to-grasp 1 -010110010 400-foot-high 1 -010110010 from-this-day-forward 1 -010110010 Novatmetrix 1 -010110010 25-mile-an-hour 1 -010110010 Hachette-Filipacchi 1 -010110010 bioresearch 1 -010110010 slate-colored 1 -010110010 USMX 1 -010110010 Sagunto 1 -010110010 Unitika 1 -010110010 non-yellow 1 -010110010 Goldsmith-style 1 -010110010 Maruzen 1 -010110010 1966-70 1 -010110010 creasingly 1 -010110010 junk-bond-funded 1 -010110010 criminal-record 1 -010110010 low-vibration 1 -010110010 AsiaSat-1 1 -010110010 assymetrical 1 -010110010 WNAC 1 -010110010 Levine-Tessler 1 -010110010 Yeravan 1 -010110010 Viewmaster 2 -010110010 apparantly 2 -010110010 pebbled 2 -010110010 Ulrike 2 -010110010 permethrine 2 -010110010 ball-points 2 -010110010 childlessness 2 -010110010 drunken-looking 2 -010110010 two-timing 2 -010110010 Roessner 2 -010110010 fishmongers 2 -010110010 000 3 -010110010 one-trial 3 -010110010 Jellyroll 3 -010110010 YATAMA 5 -010110010 which 100200 -010110010 whichever 139 -010110011 Mkhize 1 -010110011 Vova 1 -010110011 judge-emperors 1 -010110011 getup 1 -010110011 confidantes 1 -010110011 oxygenates 1 -010110011 cartoon-watchers 1 -010110011 Vyvyan 1 -010110011 turnrounds 1 -010110011 WSNI-FM 1 -010110011 Magis 1 -010110011 understatedly 1 -010110011 mistakingly 1 -010110011 Molissa 1 -010110011 marshmallow-squashy 1 -010110011 4-to-6 1 -010110011 lang 1 -010110011 non-swollen 1 -010110011 Eckankar 1 -010110011 xylophonists 1 -010110011 Sternly 1 -010110011 Rabelais 1 -010110011 thrill-free 1 -010110011 UPDATING 1 -010110011 waterfall-like 1 -010110011 Rachid 1 -010110011 Akis 1 -010110011 Petronius 1 -010110011 jusque 1 -010110011 firewater 1 -010110011 Chirico 1 -010110011 lewdly 1 -010110011 Scheltema 1 -010110011 unitedly 1 -010110011 Geneva.To 1 -010110011 sick-cow 1 -010110011 Amedee 1 -010110011 cistern 1 -010110011 Pre-Raphaelite 1 -010110011 cash-in 1 -010110011 tumbleweeds 1 -010110011 Mischa 1 -010110011 30-34 1 -010110011 football-game 1 -010110011 no-good-bums 1 -010110011 soapsuds 1 -010110011 Shprintze 1 -010110011 Pespi 1 -010110011 dictums 1 -010110011 Anemone 1 -010110011 fumblingly 1 -010110011 epoque 1 -010110011 deloused 1 -010110011 lozenge-decorated 1 -010110011 Zelia 1 -010110011 unbuilded 1 -010110011 henceforward 1 -010110011 Nevil 1 -010110011 greenhorns 1 -010110011 Sceryl 1 -010110011 sweaty-palms 1 -010110011 sestet 1 -010110011 Heribert 1 -010110011 strong-armers 1 -010110011 Threatha 1 -010110011 jazzily 1 -010110011 Alabaman 1 -010110011 Obliquely 1 -010110011 Alsi 1 -010110011 crisis-solvers 1 -010110011 218,100 1 -010110011 Wesley-on-the-loose 1 -010110011 boxedup 1 -010110011 ust 1 -010110011 doom-criers 1 -010110011 neoplasia 2 -010110011 ti 2 -010110011 Guo 2 -010110011 Jadwiga 2 -010110011 balefully 2 -010110011 Matyas 2 -010110011 money-winning 2 -010110011 Vepa 2 -010110011 Farmaceutici 2 -010110011 Romuald 2 -010110011 Kanellos 2 -010110011 hast 3 -010110011 Dolora 3 -010110011 snidely 3 -010110011 unwaveringly 3 -010110011 Vasil 3 -010110011 no-lockout 3 -010110011 SEASON 4 -010110011 CCSCE 4 -010110011 Cristal 5 -010110011 who 76389 -010110011 000s 16 -0101101000 woolly-bear 1 -0101101000 home-shoppers 1 -0101101000 adventure-comedies 1 -0101101000 sick-slips 1 -0101101000 13,949,647 1 -0101101000 presciptions 1 -0101101000 TERMINALS 1 -0101101000 plasmids 1 -0101101000 tyres 1 -0101101000 15,818 1 -0101101000 sweetbreads 1 -0101101000 pasquinade 1 -0101101000 48,939 1 -0101101000 180/115 1 -0101101000 Razzberry 1 -0101101000 undoubtably 1 -0101101000 poolrooms 1 -0101101000 issues-people 1 -0101101000 accelerants 1 -0101101000 1,373,850 1 -0101101000 westernization 1 -0101101000 parathion 1 -0101101000 less-than-prime-time 1 -0101101000 5,233 1 -0101101000 IRCA 1 -0101101000 Oakland/Irwindale/Sacramento/ 1 -0101101000 Neepol 1 -0101101000 re-closed 1 -0101101000 Brunnhildes 1 -0101101000 Penneys 1 -0101101000 connivers 1 -0101101000 146,710 1 -0101101000 knuckles-down 1 -0101101000 tetrahedrons 1 -0101101000 Skinheads 1 -0101101000 paternalists 1 -0101101000 umps 2 -0101101000 coproductions 2 -0101101000 grownups 2 -0101101000 Leninists 2 -0101101000 Valencians 2 -0101101000 home-brewers 2 -0101101000 ex-members 2 -0101101000 they 83881 -0101101000 dentalphobes 2 -01011010010 self-growth 1 -01011010010 hybridizers 1 -01011010010 2,600-square-foot-home 1 -01011010010 Remodeled 1 -01011010010 EDSers 1 -01011010010 Ebe 1 -01011010010 anti-abortionist 1 -01011010010 polyurethanes 1 -01011010010 1-800-525-7455 1 -01011010010 citicorp 1 -01011010010 WRKI 1 -01011010010 Alaric 1 -01011010010 Y.A. 1 -01011010010 ityou 1 -01011010010 Replacements 1 -01011010010 non-diet 1 -01011010010 McCarthylike 1 -01011010010 English-lovers 1 -01011010010 NEC-Japan 1 -01011010010 laypeople 1 -01011010010 race-trackers 1 -01011010010 free-lances 1 -01011010010 Ohmae-san 1 -01011010010 durians 1 -01011010010 unctuousness 1 -01011010010 Briarcliffe 1 -01011010010 gift-shopping 1 -01011010010 non-moguls 1 -01011010010 Iacocca-mania 1 -01011010010 Plectrantus 1 -01011010010 birders 1 -01011010010 Prundale 1 -01011010010 prototytpes 1 -01011010010 homo-hatred 1 -01011010010 Edythe 1 -01011010010 bruddah 1 -01011010010 Rose-you 1 -01011010010 Monstroid 1 -01011010010 only-available-here 1 -01011010010 cast-offs 1 -01011010010 too-slick 1 -01011010010 channelled 1 -01011010010 Ixtapa 1 -01011010010 half-elected 1 -01011010010 stripminers 1 -01011010010 beer-bellied 1 -01011010010 neuropsychologists 1 -01011010010 FELLA 1 -01011010010 Goodmanson 1 -01011010010 DeRigueur 1 -01011010010 inelegantly 1 -01011010010 well-exploited 1 -01011010010 ANYWAY 1 -01011010010 all-motherly 1 -01011010010 BAKKER 1 -01011010010 ribbon-cuttings 1 -01011010010 difficult-to-pull 1 -01011010010 I-5 1 -01011010010 misfeasors 1 -01011010010 luxury-suite 1 -01011010010 whaddaya 1 -01011010010 Ethel-Jane 1 -01011010010 Southies 1 -01011010010 non-participants 2 -01011010010 Shiver 2 -01011010010 B-Cal 2 -01011010010 multihulls 2 -01011010010 GAMBLING 2 -01011010010 talons 2 -01011010010 Goretex 2 -01011010010 microbursts 3 -01011010010 geophysicists 3 -01011010010 perchance 3 -01011010010 Tucumanos 3 -01011010010 regurgitating 3 -01011010010 netbacks 3 -01011010010 PLAMs 3 -01011010010 speeders 4 -01011010010 eh 4 -01011010010 Tav 5 -01011010010 Sul 6 -01011010010 you 26594 -01011010010 ye 18 -01011010011 occurences 1 -01011010011 Shevardnazde 1 -01011010011 personel 1 -01011010011 pseudo-reform 1 -01011010011 econometricians 1 -01011010011 wood-cutters 1 -01011010011 pub-goers 1 -01011010011 Consolidated-Bathhurst 1 -01011010011 partwriting 1 -01011010011 R-TPA 1 -01011010011 mezzanines 1 -01011010011 GAMBLER 1 -01011010011 allergists 1 -01011010011 broaderolicies 1 -01011010011 everone 1 -01011010011 wage-indexing 1 -01011010011 +1.0 1 -01011010011 charterees 1 -01011010011 fineness 1 -01011010011 --he 1 -01011010011 Trockenbeerenauslese 1 -01011010011 sttitis 1 -01011010011 Wyomingites 1 -01011010011 Vietnamese-Americans 1 -01011010011 S&P-Moodys 1 -01011010011 high-yields 1 -01011010011 whaddya 1 -01011010011 brothers-inlaw 1 -01011010011 Frida 1 -01011010011 herbals 1 -01011010011 kleptomaniacs 1 -01011010011 re-orders 1 -01011010011 Sadas 1 -01011010011 strap-hangers 1 -01011010011 Tirza 1 -01011010011 Baltimoreans 1 -01011010011 chatterers 1 -01011010011 super-nostalgia 1 -01011010011 half-brain 1 -01011010011 disclosable 1 -01011010011 mafiosos 1 -01011010011 left-police 1 -01011010011 sports-functions 1 -01011010011 SCJ 1 -01011010011 coup-plotters 1 -01011010011 card-issuers 1 -01011010011 Nelson-worshippers 1 -01011010011 FIGHTS 2 -01011010011 nonessentials 2 -01011010011 --you 2 -01011010011 motorcades 2 -01011010011 Vrdolyaks 2 -01011010011 Snipers 2 -01011010011 accompanists 2 -01011010011 Zairians 4 -01011010011 we 38775 -01011010011 y' 4 -0101101010 tir 1 -0101101010 Philippine-watchers 1 -0101101010 niobium-tin 1 -0101101010 Industry-affiliated 1 -0101101010 occultists 1 -0101101010 punkish 1 -0101101010 Pacifism 1 -0101101010 -obsessed 1 -0101101010 broad-side 1 -0101101010 Disclaiming 1 -0101101010 inadvertantly 1 -0101101010 Productively 1 -0101101010 Denuclearization 1 -0101101010 Whatcha 1 -0101101010 ticket-scalpers 1 -0101101010 down-and-outers 1 -0101101010 Proxies 1 -0101101010 trying.I 1 -0101101010 Interpersonal 1 -0101101010 kwon 1 -0101101010 mullions 1 -0101101010 Milord 1 -0101101010 weather-watchers 1 -0101101010 vicars-general 1 -0101101010 Jenna 1 -0101101010 Lemme 2 -0101101010 Windsorites 2 -0101101010 Calcuttans 2 -0101101010 avant-gardists 2 -0101101010 Migraines 2 -0101101010 Steamboats 2 -0101101010 Ni 2 -0101101010 Kleiny 2 -0101101010 Lil 2 -0101101010 Toxicologists 2 -0101101010 Pickles 2 -0101101010 OMC 2 -0101101010 ve 3 -0101101010 Whaddya 3 -0101101010 .I 3 -0101101010 belligerently 3 -0101101010 Bucky 5 -0101101010 I 55162 -0101101010 WOES 5 -01011010110 Technologists 1 -01011010110 irradiaton 1 -01011010110 28-hour 1 -01011010110 Ritu 1 -01011010110 Sospen 1 -01011010110 Razzle 1 -01011010110 RAMBO 1 -01011010110 Sexto 1 -01011010110 F-i-l-e 1 -01011010110 Lumbricus 1 -01011010110 JOB-HOPPING 1 -01011010110 Blitzschlag 1 -01011010110 Missing-persons 1 -01011010110 Laborem 1 -01011010110 caput 1 -01011010110 multimegawatt 1 -01011010110 Papaver 1 -01011010110 Gerrymanders 1 -01011010110 Sempre 1 -01011010110 Five-year-olds 1 -01011010110 Collegiality 1 -01011010110 Exultate 1 -01011010110 Mes 1 -01011010110 Galleys 1 -01011010110 Mamas 1 -01011010110 Appellants 1 -01011010110 Codpiece 1 -01011010110 NONFOOD 1 -01011010110 ANXIETIES 1 -01011010110 Cults 1 -01011010110 Thrombolytics 1 -01011010110 oew 1 -01011010110 Protoceratops 1 -01011010110 Non-Americans 1 -01011010110 Bardin 1 -01011010110 Hormiga 1 -01011010110 Biggu 1 -01011010110 Cyanide 1 -01011010110 tidying-up 1 -01011010110 Unilateralism 1 -01011010110 Swimmers 1 -01011010110 Winky 1 -01011010110 Odontoglossum 1 -01011010110 Canonist 1 -01011010110 Privatizations 1 -01011010110 Allamanda 1 -01011010110 Cyphomandra 1 -01011010110 Ficus 1 -01011010110 Pedilanthus 1 -01011010110 Camellia 1 -01011010110 Ipomoea 1 -01011010110 Aristolochia 1 -01011010110 aywa 1 -01011010110 Immobility 1 -01011010110 nipple 1 -01011010110 Bezrodna 1 -01011010110 Vesali 1 -01011010110 divisons 1 -01011010110 Moguls 1 -01011010110 Basso 1 -01011010110 BRENDA 1 -01011010110 pari 1 -01011010110 de-skilling 1 -01011010110 ASPARAGUS 1 -01011010110 tabula 1 -01011010110 Pseudo 1 -01011010110 agaricus 1 -01011010110 Vous 1 -01011010110 Euphydryas 1 -01011010110 Grandchildren 1 -01011010110 Ab-so-lute-ly 1 -01011010110 mini-Adolf 1 -01011010110 saule 1 -01011010110 Tejido 1 -01011010110 Kesedapanya 1 -01011010110 Addresses 1 -01011010110 Pencil-Necked 1 -01011010110 Back-Seat 1 -01011010110 H-bombs 1 -01011010110 substantailly 1 -01011010110 Submarines 1 -01011010110 doru 1 -01011010110 Mangifera 1 -01011010110 Eine 1 -01011010110 upchucked 1 -01011010110 Berlinart 1 -01011010110 Necesitamos 1 -01011010110 Hypermarkets 1 -01011010110 novus 1 -01011010110 Pneumonoultramicroscopicsilicovolcanoc 1 -01011010110 Er 1 -01011010110 Detentists 1 -01011010110 kaffee 1 -01011010110 Benvenuto 1 -01011010110 Ctomegalovirus 1 -01011010110 BERNIE 1 -01011010110 KSC 1 -01011010110 Quis 1 -01011010110 Tallis 1 -01011010110 Untimely 1 -01011010110 gyosei 1 -01011010110 Walruses 1 -01011010110 Two-wheel 1 -01011010110 Sycophants 1 -01011010110 Violadores 1 -01011010110 Besame 1 -01011010110 Whadya 1 -01011010110 preternaturally 1 -01011010110 Chansons 1 -01011010110 Dissolution 1 -01011010110 hogmen 1 -01011010110 F-19A 1 -01011010110 Hola 1 -01011010110 Jihua 1 -01011010110 Haementeria 1 -01011010110 Megapools 1 -01011010110 Quantity 1 -01011010110 Imago 1 -01011010110 Platforms 1 -01011010110 PLATINUM 1 -01011010110 dramma 1 -01011010110 Attrition 1 -01011010110 nihil 1 -01011010110 Policymakers 1 -01011010110 Claustrophobes 1 -01011010110 Raters 1 -01011010110 Eels 1 -01011010110 Battlefields 1 -01011010110 megasophisticated 1 -01011010110 Den-san 1 -01011010110 Digesting 1 -01011010110 Broker-finders 1 -01011010110 Defibrillation 1 -01011010110 RAAF 1 -01011010110 Clivia 1 -01011010110 democratitis 1 -01011010110 virgorously 1 -01011010110 Yoshitsune 1 -01011010110 Nymphaea 1 -01011010110 Heptacodium 1 -01011010110 vil 1 -01011010110 Outlooks 1 -01011010110 Direct-market 1 -01011010110 Fourteen-year-olds 1 -01011010110 Mariela 1 -01011010110 Viburnum 1 -01011010110 Sycoparrotia 1 -01011010110 Jailers 1 -01011010110 Penises 1 -01011010110 Lampposts 1 -01011010110 happo 1 -01011010110 Interventions 1 -01011010110 Sportscasters 1 -01011010110 Shrinkage 1 -01011010110 tromped 1 -01011010110 Belated 1 -01011010110 Kittens 1 -01011010110 Synergies 1 -01011010110 turndowns 1 -01011010110 Dailies 1 -01011010110 One-megabit 1 -01011010110 Wiretaps 1 -01011010110 Zensho 1 -01011010110 vox 2 -01011010110 Dich 2 -01011010110 Sincerely 2 -01011010110 Mazes 2 -01011010110 dvyesti 2 -01011010110 Quien 2 -01011010110 Tranquillitas 2 -01011010110 Tanacetum 2 -01011010110 Upscale 2 -01011010110 Adapters 2 -01011010110 Ratepayers 2 -01011010110 YEAHNjuhluh 2 -01011010110 Katya 2 -01011010110 Hoxsey-Quacks 2 -01011010110 Beggars 2 -01011010110 Didja 3 -01011010110 Roaches 3 -01011010110 homme 3 -01011010110 Coalitions 4 -01011010110 Totally 4 -01011010110 Cavalleria 5 -01011010110 Circumstances 7 -01011010110 Fatal 40 -01011010110 We 27833 -01011010110 You 6653 -01011010111 Satirists 1 -01011010111 Emergencies 1 -01011010111 TECHNOLOGICAL 1 -01011010111 Antagonists 1 -01011010111 Odder 1 -01011010111 Passers-by 1 -01011010111 Matremonial 1 -01011010111 SOLE 1 -01011010111 Vacuums 1 -01011010111 Closures 1 -01011010111 Virgos 1 -01011010111 Migrants 1 -01011010111 Translators 1 -01011010111 Freshly 1 -01011010111 Anomalies 1 -01011010111 Rogues 1 -01011010111 Freebasing 1 -01011010111 Kickers 1 -01011010111 Pickets 1 -01011010111 Pseudopterosins 1 -01011010111 Automakers 1 -01011010111 Moonshiners 1 -01011010111 Permeability 1 -01011010111 Dictators 1 -01011010111 Habitues 1 -01011010111 Go-getters 1 -01011010111 Looters 1 -01011010111 Brooms 1 -01011010111 .They 1 -01011010111 Owner-operators 1 -01011010111 Urchins 1 -01011010111 Valves 1 -01011010111 Jabs 1 -01011010111 Potholes 1 -01011010111 Underlings 1 -01011010111 Sirens 1 -01011010111 Hoopsters 1 -01011010111 Repairmen 1 -01011010111 Burglaries 1 -01011010111 Polish-Americans 1 -01011010111 Parishioners 1 -01011010111 Analayts 1 -01011010111 Marathons 1 -01011010111 Admen 1 -01011010111 Ce 1 -01011010111 Plums 1 -01011010111 WORK-RULE 1 -01011010111 fraudian 1 -01011010111 Mini-cities 1 -01011010111 Competitions 1 -01011010111 GREEKS 1 -01011010111 Jiggling 1 -01011010111 Geniuses 1 -01011010111 Cogenerators 1 -01011010111 Seminarians 1 -01011010111 Conversions 1 -01011010111 Peppery 1 -01011010111 Atrocities 1 -01011010111 Holly-watchers 1 -01011010111 Haitian-Americans 1 -01011010111 Stalemate 1 -01011010111 Imperfections 1 -01011010111 Telegrams 1 -01011010111 Burley 1 -01011010111 Contrarians 1 -01011010111 exercis 1 -01011010111 Suntans 1 -01011010111 Directorships 1 -01011010111 Emoluments 1 -01011010111 Periodicals 1 -01011010111 Mallku 1 -01011010111 Moviemakers 1 -01011010111 Workweeks 1 -01011010111 Mullahs 1 -01011010111 Nationalsozialistische 1 -01011010111 Montrealers 1 -01011010111 .you 1 -01011010111 Unavailability 1 -01011010111 Bathrooms 1 -01011010111 Beauticians 1 -01011010111 Grads 1 -01011010111 Frames 1 -01011010111 Barbs 1 -01011010111 Headrests 1 -01011010111 Juveniles 1 -01011010111 plata 1 -01011010111 Bookies 1 -01011010111 Intersections 1 -01011010111 Formats 1 -01011010111 Tremors 1 -01011010111 Standstills 1 -01011010111 Adoptees 1 -01011010111 Farthest 1 -01011010111 Bracket 1 -01011010111 Non-divers 1 -01011010111 Vitriol 1 -01011010111 Phrases 1 -01011010111 Bassoonists 1 -01011010111 LATE-BREAKING 1 -01011010111 COUNTEROFFERS 1 -01011010111 Prelates 1 -01011010111 Constituents 1 -01011010111 Tractor-pullers 1 -01011010111 Technocrats 1 -01011010111 Obscenities 1 -01011010111 Minidynasties 1 -01011010111 Duller 1 -01011010111 Arms-makers 1 -01011010111 PENSION-ACT 1 -01011010111 Gladiolas 1 -01011010111 Homeopaths 1 -01011010111 Dispersals 1 -01011010111 Jokesters 1 -01011010111 non-weight 1 -01011010111 Recriminations 1 -01011010111 Jalal 1 -01011010111 Decks 1 -01011010111 First-timers 1 -01011010111 Nightclubs 1 -01011010111 Tidbits 1 -01011010111 Toshin 1 -01011010111 Surtitles 1 -01011010111 Sequels 1 -01011010111 Kenneling 1 -01011010111 Implants 1 -01011010111 Malignant 1 -01011010111 Chilies 1 -01011010111 Bed-makers 1 -01011010111 Valets 1 -01011010111 Tragedies 1 -01011010111 Bifurcation 1 -01011010111 Come-ons 1 -01011010111 Cyclists 1 -01011010111 Flumes 1 -01011010111 Insulin 1 -01011010111 tals 1 -01011010111 Troublemakers 1 -01011010111 .they 1 -01011010111 Tribesmen 1 -01011010111 Separations 2 -01011010111 Superpowers 2 -01011010111 Teammates 2 -01011010111 Salvagers 2 -01011010111 Leeches 2 -01011010111 Neatly 2 -01011010111 Tuitions 2 -01011010111 Actresses 2 -01011010111 Newspapermen 2 -01011010111 Cherubs 2 -01011010111 Middlemen 2 -01011010111 Wrongdoers 2 -01011010111 Sprinklers 2 -01011010111 Maquilas 2 -01011010111 Mini-supercomputers 2 -01011010111 Bargain-hunters 2 -01011010111 Harps 2 -01011010111 Scallops 2 -01011010111 ESOPS 2 -01011010111 Scherzo 2 -01011010111 Lifeguards 2 -01011010111 Clone-makers 2 -01011010111 Locusts 2 -01011010111 Wetlands 2 -01011010111 Vaccines 2 -01011010111 Supersalespeople 2 -01011010111 Cardholders 2 -01011010111 Reparations 2 -01011010111 Capacitors 2 -01011010111 FEVER 2 -01011010111 .will 2 -01011010111 Bottlenecks 2 -01011010111 Barges 2 -01011010111 Videocassettes 2 -01011010111 Detectives 2 -01011010111 Loggers 2 -01011010111 Baths 2 -01011010111 Droughts 2 -01011010111 Triangles 2 -01011010111 Technicalities 2 -01011010111 Churchmen 2 -01011010111 Marchers 2 -01011010111 .we 2 -01011010111 Earthquakes 2 -01011010111 Sulfites 2 -01011010111 Saboteurs 2 -01011010111 Spoilsports 2 -01011010111 Flavorists 2 -01011010111 Tuk-tuks 2 -01011010111 Geomancers 2 -01011010111 Aficionados 3 -01011010111 Foreclosures 3 -01011010111 Anchors 3 -01011010111 Moviegoers 3 -01011010111 Bankruptcies 3 -01011010111 Cameras 3 -01011010111 Sedums 3 -01011010111 Giveaways 3 -01011010111 Apologies 3 -01011010111 Snaggers 3 -01011010111 Blackouts 3 -01011010111 Avocados 3 -01011010111 Nominations 3 -01011010111 Thunderstorms 3 -01011010111 Feet 3 -01011010111 Kibbutzniks 3 -01011010111 Licensees 3 -01011010111 Microwaves 3 -01011010111 Petitions 3 -01011010111 Alligators 3 -01011010111 Traffickers 3 -01011010111 Percentages 3 -01011010111 Vouchers 3 -01011010111 Represented 3 -01011010111 .We 3 -01011010111 Chinooks 3 -01011010111 Non-members 3 -01011010111 Hashers 3 -01011010111 Doubters 3 -01011010111 Elephants 3 -01011010111 Hobbyists 3 -01011010111 Faxes 4 -01011010111 Chongqingians 4 -01011010111 Herein 4 -01011010111 Syndicates 4 -01011010111 Zones 4 -01011010111 Cracks 4 -01011010111 Rivalries 4 -01011010111 Searches 4 -01011010111 Incubators 4 -01011010111 Dissenters 4 -01011010111 Allotments 4 -01011010111 Markdowns 4 -01011010111 Biosensors 4 -01011010111 Bookers 4 -01011010111 Noteholders 4 -01011010111 Purists 5 -01011010111 Reservations 5 -01011010111 Shopkeepers 5 -01011010111 Bulldozers 5 -01011010111 Buybacks 5 -01011010111 Mice 5 -01011010111 Revisions 5 -01011010111 Campaigns 5 -01011010111 Conservationists 5 -01011010111 Pundits 5 -01011010111 Violators 6 -01011010111 Salespeople 6 -01011010111 Arbs 6 -01011010111 Programmers 7 -01011010111 Horns 7 -01011010111 Stubs 7 -01011010111 Riots 7 -01011010111 Litigants 7 -01011010111 Townspeople 7 -01011010111 Inquiries 7 -01011010111 Ballots 7 -01011010111 Supply-siders 7 -01011010111 Strikers 7 -01011010111 Chickens 7 -01011010111 Recruits 8 -01011010111 Females 8 -01011010111 Tempers 9 -01011010111 Arbitrators 10 -01011010111 Bureaucrats 11 -01011010111 Thieves 12 -01011010111 Motorists 12 -01011010111 Audiences 13 -01011010111 Humans 14 -01011010111 Items 14 -01011010111 Cigarettes 14 -01011010111 Managements 15 -01011010111 Conferees 15 -01011010111 Market-makers 19 -01011010111 Superconductors 20 -01011010111 Tourists 28 -01011010111 COMPANIES 44 -01011010111 Speculators 54 -01011010111 Foreigners 119 -01011010111 They 21148 -01011010111 Things 349 -010110110 amove 1 -010110110 Re-entry 1 -010110110 Wrongfully 1 -010110110 nonbeneficiaries 1 -010110110 Single-Crystal 1 -010110110 Castrophobia 1 -010110110 Pulsifer 1 -010110110 Megabanks 1 -010110110 Wohlstetterism 1 -010110110 15,433 1 -010110110 FETE 1 -010110110 Kikkert 1 -010110110 Columia 1 -010110110 Punitives 1 -010110110 anti-autobiography 1 -010110110 Strauss-the-insider 1 -010110110 oddsmaker 1 -010110110 HUNGERLAND 1 -010110110 Crevecoeur 1 -010110110 direct-marketers 1 -010110110 V-NNA 1 -010110110 capital-inflow 1 -010110110 Self-directed 1 -010110110 IZOD 1 -010110110 MOOG 1 -010110110 Bentivegna 1 -010110110 BETTE 1 -010110110 vegetatively 1 -010110110 DECA 1 -010110110 Skweyiya 1 -010110110 LEIBOVITZ 1 -010110110 Swedenborg 1 -010110110 Indissolubly 1 -010110110 MIDWIFERY 1 -010110110 15:9-11 1 -010110110 GILROY 1 -010110110 between-the-covers 1 -010110110 Concert-goers 1 -010110110 CREATIVITY 1 -010110110 trunk-mounting 1 -010110110 Yoanne 1 -010110110 vehicle-emission 1 -010110110 EMMA 1 -010110110 windshear 1 -010110110 Cannibalization 1 -010110110 Briereley 1 -010110110 Aspirin-takers 1 -010110110 Stealth-watchers 1 -010110110 praepart 1 -010110110 Downsizing 1 -010110110 Tia 1 -010110110 Adequately 1 -010110110 Rentenanstalt 1 -010110110 SmithKline-Beecham 1 -010110110 Coca-Coca 1 -010110110 Mr.Davis 1 -010110110 Uneasiness 1 -010110110 Eliseu 1 -010110110 salary-earners 1 -010110110 Tokens 1 -010110110 science-watchers 1 -010110110 WIN/Ayer 1 -010110110 CDK 1 -010110110 FABRIC 1 -010110110 JTI 1 -010110110 Meat-eaters 1 -010110110 ILM 1 -010110110 ravenously 1 -010110110 mobile-source 1 -010110110 Ilotycin 2 -010110110 Oce 2 -010110110 kawajima-Harima 2 -010110110 Nielsen-Massey 2 -010110110 SCECorp 2 -010110110 Debasis 2 -010110110 Overuse 2 -010110110 Greenlaw 2 -010110110 Foxal 2 -010110110 LNBA 2 -010110110 ALAS 2 -010110110 Evgeny 2 -010110110 Sorge 2 -010110110 ETC. 2 -010110110 Motsamai 2 -010110110 Ukase 2 -010110110 WXEX 3 -010110110 Lenchen 3 -010110110 he/she 3 -010110110 Spanberg 3 -010110110 Dieuliphete 4 -010110110 everbody 4 -010110110 Squeaky 4 -010110110 Neri 6 -010110110 Giammalva 9 -010110110 McLish 18 -010110110 he 141960 -010110110 she 16586 -0101101110 self-cutting 1 -0101101110 Darvis 1 -0101101110 report-matching 1 -0101101110 Cem 1 -0101101110 credit-payments 1 -0101101110 raud 1 -0101101110 Three-right 1 -0101101110 GBL-Tractebel 1 -0101101110 110-inch-wide 1 -0101101110 steve 1 -0101101110 Genaro 1 -0101101110 Kingsbery 1 -0101101110 Husnu 1 -0101101110 Shizuo 1 -0101101110 Debbi 1 -0101101110 placque 1 -0101101110 Mashahiko 1 -0101101110 Carolita 1 -0101101110 Yushi 1 -0101101110 Adebayo 1 -0101101110 race-hatred 1 -0101101110 wordplays 1 -0101101110 Aki 1 -0101101110 Tormod 1 -0101101110 Hispano-Americano 1 -0101101110 coverups 1 -0101101110 boat-rocking 1 -0101101110 shorelines 1 -0101101110 treasonously 1 -0101101110 Scherings 1 -0101101110 organ-rejection 1 -0101101110 Misha 1 -0101101110 Sima 1 -0101101110 approval-to-prescribe 1 -0101101110 pre-packaging 1 -0101101110 HUTCHISON 1 -0101101110 ICERC 1 -0101101110 Eiler 1 -0101101110 self-accreditation 1 -0101101110 Rivka 1 -0101101110 pro-Aquino 1 -0101101110 Nessa 1 -0101101110 Sior 1 -0101101110 Roussell-UCLAF 1 -0101101110 pronunciamento 1 -0101101110 half-answers 1 -0101101110 Jose-Manuel 1 -0101101110 gentlefolk 1 -0101101110 debureaucratization 1 -0101101110 Lockeed 1 -0101101110 Sueanne 1 -0101101110 Kanitha 1 -0101101110 Boiseans 1 -0101101110 Tamar 1 -0101101110 localism 1 -0101101110 Owens-Ilinois 1 -0101101110 68,870,000 1 -0101101110 Thortech 1 -0101101110 Mr.Decker 1 -0101101110 LNA 1 -0101101110 Angele 1 -0101101110 Euro-drift 1 -0101101110 M-1s 1 -0101101110 BAI 1 -0101101110 now-Rep 1 -0101101110 faultfinding 1 -0101101110 golfdom 1 -0101101110 inclusiveness 1 -0101101110 WPEC-TV 1 -0101101110 Jane/Jase/Jasmine/Jyoti 1 -0101101110 R.J.S. 1 -0101101110 2,252 1 -0101101110 readmittances 1 -0101101110 Karl-Gerhard 1 -0101101110 WIVB 1 -0101101110 Mr.Gravitt 1 -0101101110 prizefighting 1 -0101101110 brittleness 1 -0101101110 Agrokomputer 2 -0101101110 coalition-building 2 -0101101110 Demetrius 2 -0101101110 prozac 2 -0101101110 Hans-Ulrich 2 -0101101110 Prue 2 -0101101110 Hef 2 -0101101110 KWVT 2 -0101101110 Avaray 2 -0101101110 1,027 2 -0101101110 non-Indonesians 2 -0101101110 EHI 2 -0101101110 ex-Nazis 2 -0101101110 Shelftalk 2 -0101101110 1,643 2 -0101101110 Boras 2 -0101101110 Energix-B 2 -0101101110 femto- 2 -0101101110 Fearn 2 -0101101110 Walliser 2 -0101101110 Adcock-Ingram 2 -0101101110 029 2 -0101101110 non-physicians 3 -0101101110 LG&E 3 -0101101110 ChrisCraft 3 -0101101110 TDD 3 -0101101110 hydrofoils 3 -0101101110 Mikiya 3 -0101101110 Tca 3 -0101101110 Confirm 3 -0101101110 metrication 3 -0101101110 Oberon 3 -0101101110 Pregnagym 3 -0101101110 MPR 3 -0101101110 Robot-Coupe 4 -0101101110 Oatbake 4 -0101101110 Radames 4 -0101101110 Nordine 5 -0101101110 chlordimeform 5 -0101101110 Shinei 5 -0101101110 oceanographers 5 -0101101110 checkerboarding 6 -0101101110 NCMS 6 -0101101110 BBV 6 -0101101110 Pyrament 6 -0101101110 Omexin 6 -0101101110 it 222481 -0101101110 mummification 8 -0101101111 bimbosis 1 -0101101111 ex-executives 1 -0101101111 self-hedging 1 -0101101111 price-chopping 1 -0101101111 tecolote 1 -0101101111 Japanese-speakers 1 -0101101111 Hulme 1 -0101101111 Paps 1 -0101101111 aggressed 1 -0101101111 cardizem 1 -0101101111 re-called 1 -0101101111 Fed-fighter 1 -0101101111 sanctimoniousness 1 -0101101111 spit-shined 1 -0101101111 tuk-tuk-phobia 1 -0101101111 43,283 1 -0101101111 cortoplazismo 1 -0101101111 noneconomists 1 -0101101111 leafleters 1 -0101101111 non-performers 1 -0101101111 CFC-12B1 1 -0101101111 also-stroked 1 -0101101111 SALONS 1 -0101101111 Hembrick-Ha 1 -0101101111 non-VIPs 1 -0101101111 glutton 1 -0101101111 DumenilLeble 1 -0101101111 scrapyards 1 -0101101111 milord 1 -0101101111 Kashoggi/Marcos 1 -0101101111 five-tenths 1 -0101101111 Void/There 1 -0101101111 Odd/There 1 -0101101111 4,508,000 1 -0101101111 anti-Zionism 1 -0101101111 15,525,000 1 -0101101111 solstices 1 -0101101111 minstrelsy 1 -0101101111 456,042 1 -0101101111 5,244,036 1 -0101101111 Krupp-Taylor/USA 1 -0101101111 grievants 1 -0101101111 non-drug-users 1 -0101101111 non-tax-paying 1 -0101101111 pre-shrinking 1 -0101101111 self-conceit 1 -0101101111 slimness 1 -0101101111 melt-through 1 -0101101111 Brown-Tougaloo 1 -0101101111 gallery-hopping 1 -0101101111 GSC 1 -0101101111 crepuscule 1 -0101101111 1933-1945 1 -0101101111 subtractions 1 -0101101111 case-histories 1 -0101101111 anti-Somocista 1 -0101101111 gloving 1 -0101101111 oversales 1 -0101101111 BenGurion 1 -0101101111 cablecasters 1 -0101101111 3,300,000 1 -0101101111 cracker-maker 1 -0101101111 Tokay 1 -0101101111 Stryker 1 -0101101111 dian 1 -0101101111 pro-Jimmy 1 -0101101111 poro 1 -0101101111 Iranscab 1 -0101101111 left-handers 1 -0101101111 1,173,000 1 -0101101111 point-counterpoint 1 -0101101111 Whittler 1 -0101101111 Hokuriki 1 -0101101111 controllables 1 -0101101111 0.4s 1 -0101101111 manufacturing-for-export 1 -0101101111 321,134 1 -0101101111 470.00 1 -0101101111 Tosbiba 1 -0101101111 Sprayberry 1 -0101101111 coercively 1 -0101101111 Eidelman 1 -0101101111 ARNOTT 1 -0101101111 1,653,571 1 -0101101111 Faysal 1 -0101101111 EAPs 1 -0101101111 102,200 1 -0101101111 public-government-ownership 1 -0101101111 countertactic 1 -0101101111 citizen-plaintiffs 1 -0101101111 appovals 1 -0101101111 fromseven 1 -0101101111 Sedans 1 -0101101111 overrealists 1 -0101101111 implementedthere 1 -0101101111 gunsmiths 1 -0101101111 UTLs 1 -0101101111 eclectically 1 -0101101111 boll-weevils 1 -0101101111 depcreciation 1 -0101101111 1973-82 1 -0101101111 competion 1 -0101101111 junk-buyers 1 -0101101111 hizzoner 1 -0101101111 catbirds 1 -0101101111 Roxas 1 -0101101111 notetaking 1 -0101101111 lienholders 1 -0101101111 non-scrooges 1 -0101101111 reallowance 1 -0101101111 thatAmerica 1 -0101101111 aldrin 2 -0101101111 English-Canada 2 -0101101111 airheads 2 -0101101111 Jongkind 2 -0101101111 Hyperlite 2 -0101101111 fenofibrate 2 -0101101111 blackmailers 2 -0101101111 1928-1933 2 -0101101111 Mcdonald 2 -0101101111 Humperdinck 2 -0101101111 wrist-slitting 2 -0101101111 Pandu 2 -0101101111 Raydale 2 -0101101111 C.V.J. 2 -0101101111 megatrials 2 -0101101111 Keftab 2 -0101101111 career-switchers 2 -0101101111 uglification 2 -0101101111 Cholet-Dupont 2 -0101101111 Libertarianism 2 -0101101111 Groundwork 2 -0101101111 WOOD-AM 2 -0101101111 CNB 2 -0101101111 Andina 2 -0101101111 Gur 2 -0101101111 Avias 2 -0101101111 Geisha 2 -0101101111 Elinga 2 -0101101111 Lieserl 2 -0101101111 fashionability 2 -0101101111 snitches 2 -0101101111 GNMAs 2 -0101101111 1,241,149 2 -0101101111 djinns 2 -0101101111 trichotillomania 3 -0101101111 microcodes 3 -0101101111 TMJ 3 -0101101111 SCOTUS 3 -0101101111 WILI 3 -0101101111 NEES 3 -0101101111 punts 3 -0101101111 SzexPress 3 -0101101111 galecron 3 -0101101111 etoposide 3 -0101101111 KNON 4 -0101101111 Holyfield 4 -0101101111 KCST 4 -0101101111 WSBK 4 -0101101111 temping 4 -0101101111 Bernadean 4 -0101101111 EEI 4 -0101101111 E-Mann 4 -0101101111 Tige 4 -0101101111 Viewtron 4 -0101101111 taekwondo 5 -0101101111 there 33591 -0101101111 BPCA 5 -01011100 shouldst 1 -01011100 Easler 1 -01011100 patroller 1 -01011100 non-teachers 1 -01011100 nine-mile 1 -01011100 ex-soldier 1 -01011100 TRIPS 1 -01011100 CHIMPS 1 -01011100 non-research 1 -01011100 camped-up 1 -01011100 gradualness 1 -01011100 dont 2 -01011100 Yongchaiyudh 2 -01011100 shutoff 2 -01011100 damned-if-you-do 6 -01011100 can 46842 -01011100 cannot 2129 -0101110100 maligns 1 -0101110100 difficultthough 1 -0101110100 nontechnicians 1 -0101110100 florentine 1 -0101110100 less-intrusive 1 -0101110100 nicknamers 1 -0101110100 Prunedalians 1 -0101110100 integrative 1 -0101110100 rent-a-cops 1 -0101110100 Tendency 1 -0101110100 88-52 1 -0101110100 3,115 1 -0101110100 doth 2 -0101110100 CLUBS 4 -0101110100 bodes 69 -0101110100 may 34269 -0101110100 might 17381 -0101110101 Tendency-that 1 -0101110101 Hacketts 1 -0101110101 -would 1 -0101110101 APPLICATIONS 1 -0101110101 geckos 1 -0101110101 padders 1 -0101110101 export-licensers 1 -0101110101 mappers 1 -0101110101 tamely 1 -0101110101 LR-29-88 1 -0101110101 patentholders 1 -0101110101 road-repair 1 -0101110101 coud 1 -0101110101 yer 2 -0101110101 Shagari 2 -0101110101 shalt 5 -0101110101 shall 343 -0101110101 should 20798 -0101110101 must 12133 -0101110110 tyo 1 -0101110110 mass-burning 1 -0101110110 retests 1 -0101110110 Berbers 1 -0101110110 particles-should 1 -0101110110 Euro-politicians 1 -0101110110 resume-preparation 1 -0101110110 Hamiltonto 1 -0101110110 machnists 1 -0101110110 utility-unit 1 -0101110110 3,148 1 -0101110110 NEWSLETTERS 1 -0101110110 2,128 1 -0101110110 NORMALLY 1 -0101110110 28-27 1 -0101110110 VOF 1 -0101110110 pseudo-Christmas 1 -0101110110 anti-reformers 2 -0101110110 will 151081 -0101110110 wil 2 -01011101110 bare-room 1 -01011101110 coconutlike 1 -01011101110 row-house 1 -01011101110 Anchia 1 -01011101110 -lutely 1 -01011101110 not-accidental 1 -01011101110 Oop 1 -01011101110 bicultural 1 -01011101110 Virrueta 1 -01011101110 pre-recovery 1 -01011101110 DETRACTORS 1 -01011101110 UNIFORMS 1 -01011101110 length-of-the-court 1 -01011101110 employer-offered 1 -01011101110 ast 1 -01011101110 TREATMENTS 1 -01011101110 wished-for 1 -01011101110 could 51308 -01011101110 hard-drug 2 -01011101111 anti-hypertensives 1 -01011101111 GLUTS 1 -01011101111 amajor 1 -01011101111 takovers 1 -01011101111 Louys 1 -01011101111 pugilists 1 -01011101111 Cornona 1 -01011101111 arms-suppliers 1 -01011101111 would 110246 -01011101111 intially 1 -0101111000 10b-18 1 -0101111000 Weizsaeker 1 -0101111000 campaign-brochure 1 -0101111000 1970-84 1 -0101111000 broodingly 1 -0101111000 OWNER 1 -0101111000 shagged 1 -0101111000 litigator/lobbyists 1 -0101111000 Zhengyou 1 -0101111000 Taraporevala 1 -0101111000 Edsall 1 -0101111000 Lockhed 1 -0101111000 Iruz 1 -0101111000 two-handed-behind-the-head 1 -0101111000 ultima 1 -0101111000 immediateley 1 -0101111000 DanceBrazil 1 -0101111000 Hegleman 1 -0101111000 Qinji 1 -0101111000 previosly 1 -0101111000 yards-rushing 1 -0101111000 brutishly 1 -0101111000 PRESIDENCY 1 -0101111000 Santovenia 1 -0101111000 Goulding 1 -0101111000 stumblingly 1 -0101111000 Artiodactyla 1 -0101111000 specificially 1 -0101111000 Kylberg 2 -0101111000 Sankorp 2 -0101111000 Manarov 2 -0101111000 sleepily 2 -0101111000 Veltri 2 -0101111000 flippantly 3 -0101111000 portentously 3 -0101111000 Fernandel 3 -0101111000 sagely 3 -0101111000 irreverently 3 -0101111000 gloomily 4 -0101111000 jocularly 4 -0101111000 solemnly 21 -0101111000 additionally 38 -0101111000 also 68984 -0101111000 reportedly 1026 -010111100100 artitragers 1 -010111100100 MIDLER 1 -010111100100 Shiek 1 -010111100100 FEUDING 1 -010111100100 6,513,389 1 -010111100100 consisently 1 -010111100100 alreadly 1 -010111100100 PGC 1 -010111100100 Tomma 1 -010111100100 trans-Canadian 1 -010111100100 self-regulators 2 -010111100100 theretofore 2 -010111100100 oft-times 3 -010111100100 decorously 3 -010111100100 curently 3 -010111100100 aleady 4 -010111100100 historically 391 -010111100100 already 14913 -010111100100 traditionally 848 -010111100101 Tenacity 1 -010111100101 KSTS 1 -010111100101 Kosloff 1 -010111100101 Boschi 1 -010111100101 S.1265 1 -010111100101 service-charged 1 -010111100101 ice-blue 1 -010111100101 co-publishes 1 -010111100101 Renzetti 1 -010111100101 Rescigno 1 -010111100101 Wessel-Therhorn 1 -010111100101 tradionally 1 -010111100101 Oxy-Bridas 1 -010111100101 unimpeached 1 -010111100101 Fantis 1 -010111100101 Spideyphiles 1 -010111100101 vote-switching 1 -010111100101 KNON-FM 1 -010111100101 Deductions-The 1 -010111100101 1,064,776 1 -010111100101 minute/flight 1 -010111100101 withholders 1 -010111100101 anti-perspirants 1 -010111100101 Ltd.is 1 -010111100101 Solidarnosc 1 -010111100101 bolshoi 1 -010111100101 Co.-designed 1 -010111100101 paste-job 1 -010111100101 checkwriter 1 -010111100101 1,621,539 1 -010111100101 WCSX-FM 1 -010111100101 Discman 1 -010111100101 knick-knacks 1 -010111100101 werer 1 -010111100101 XJ6s 1 -010111100101 WCXR 1 -010111100101 accustoms 1 -010111100101 beleives 1 -010111100101 34,645 1 -010111100101 variably 1 -010111100101 Propulsora 1 -010111100101 ad-filled 1 -010111100101 Bank/Virginia 1 -010111100101 explictly 2 -010111100101 Chailly 2 -010111100101 resend 2 -010111100101 utimately 2 -010111100101 f-stop 2 -010111100101 misbilled 2 -010111100101 Santi 2 -010111100101 Brillo 3 -010111100101 currently 9133 -010111100101 beneficially 42 -0101111001100 mass-scale 1 -0101111001100 goody-goodies 1 -0101111001100 highest-flyers 1 -0101111001100 motherhood-and-apple-pie 1 -0101111001100 dourly 1 -0101111001100 Sandinismo 1 -0101111001100 wombat 1 -0101111001100 soul-deep 1 -0101111001100 exhaustible 1 -0101111001100 produce-which 1 -0101111001100 volitionally 1 -0101111001100 Metamucil. 1 -0101111001100 Khalqis 1 -0101111001100 uninhibitedly 1 -0101111001100 abhored 1 -0101111001100 assasinations 1 -0101111001100 Dallasites 1 -0101111001100 fatiegued 1 -0101111001100 ataxia 1 -0101111001100 passenger-tire 1 -0101111001100 overpriced. 1 -0101111001100 self-evidently 2 -0101111001100 unyieldingly 2 -0101111001100 hydrology 2 -0101111001100 bohemia 2 -0101111001100 match-play 2 -0101111001100 78th 3 -0101111001100 still 21122 -0101111001100 doubtlessly 4 -0101111001101 PROPRIETORSHIPS 1 -0101111001101 irreligion 1 -0101111001101 NutriMetics 1 -0101111001101 democratizer 1 -0101111001101 HRBSinger 1 -0101111001101 Reckendorf 1 -0101111001101 remedially 1 -0101111001101 half-controlled 1 -0101111001101 minimum-taxpayers 1 -0101111001101 Ethelred 1 -0101111001101 ZCCBs 1 -0101111001101 sunscreens 1 -0101111001101 Dominon 1 -0101111001101 runoffs 1 -0101111001101 Cincinnatian 1 -0101111001101 1,030,000 1 -0101111001101 Perfumery 1 -0101111001101 2,068,966 1 -0101111001101 1,657,736 1 -0101111001101 742,264 1 -0101111001101 WKYS 1 -0101111001101 cliff-hanger 1 -0101111001101 over-invoicing 1 -0101111001101 Oaklanders 1 -0101111001101 TransAmerica 1 -0101111001101 Constitutition 1 -0101111001101 mostaccioli 1 -0101111001101 Studds-Miller 1 -0101111001101 8,191,727 1 -0101111001101 1,308,273 1 -0101111001101 foreseeably 2 -0101111001101 Garrison-Steves 2 -0101111001101 pee 2 -0101111001101 sentimentalists 2 -0101111001101 refrigerate 2 -0101111001101 redialing 2 -0101111001101 gaily 4 -0101111001101 cumulatively 9 -0101111001101 CHANGES 9 -0101111001101 perforce 10 -0101111001101 assuredly 19 -0101111001101 henceforth 41 -0101111001101 gladly 71 -0101111001101 doubtless 71 -0101111001101 conceivably 103 -0101111001101 undoubtedly 293 -0101111001101 inevitably 325 -0101111001101 presumably 500 -0101111001101 surely 688 -0101111001101 ultimately 1711 -0101111001101 certainly 2615 -0101111001101 probably 8216 -0101111001101 eventually 3059 -0101111001110 infesting 1 -0101111001110 snifflers 1 -0101111001110 mistily 2 -0101111001110 greedily 2 -0101111001110 roller-skate 2 -0101111001110 offically 2 -0101111001110 inflexibly 2 -0101111001110 contradictorily 2 -0101111001110 pompously 3 -0101111001110 oftens 3 -0101111001110 gruffly 3 -0101111001110 fernlike 3 -0101111001110 recurrently 3 -0101111001110 absently 4 -0101111001110 fancifully 4 -0101111001110 resonantly 4 -0101111001110 sharpshooters 4 -0101111001110 oft 4 -0101111001110 herein 4 -0101111001110 cunningly 4 -0101111001110 fluidly 5 -0101111001110 entrepreneurially 5 -0101111001110 smilingly 5 -0101111001110 okayed 6 -0101111001110 unhesitatingly 7 -0101111001110 fittingly 9 -0101111001110 reflexively 9 -0101111001110 imperfectly 10 -0101111001110 assertedly 10 -0101111001110 deservedly 11 -0101111001110 RULES 14 -0101111001110 whooping 14 -0101111001110 euphemistically 15 -0101111001110 graphically 20 -0101111001110 reputedly 24 -0101111001110 inexplicably 27 -0101111001110 habitually 31 -0101111001110 alternately 41 -0101111001110 heretofore 64 -0101111001110 customarily 71 -0101111001110 purportedly 89 -0101111001110 collectively 131 -0101111001110 evidently 145 -0101111001110 invariably 163 -0101111001110 seldom 267 -0101111001110 supposedly 357 -0101111001110 nevertheless 415 -0101111001110 nonetheless 468 -0101111001110 occasionally 558 -0101111001110 routinely 559 -0101111001110 rarely 896 -0101111001110 normally 1043 -0101111001110 frequently 1498 -0101111001110 effectively 1554 -0101111001110 typically 1758 -0101111001110 sometimes 2986 -0101111001110 often 8344 -0101111001110 usually 3948 -0101111001110 generally 5511 -0101111001110 apparently 4280 -01011110011110 kow-towing 1 -01011110011110 yogibberish 1 -01011110011110 harmfully 2 -01011110011110 28-21-37-5 2 -01011110011110 Shave 2 -01011110011110 hard-copy 2 -01011110011110 occassionally 2 -01011110011110 tormentedly 3 -01011110011110 heedlessly 3 -01011110011110 euphorically 3 -01011110011110 mystically 4 -01011110011110 immodestly 5 -01011110011110 matchmakers 6 -01011110011110 unequivocably 7 -01011110011110 naively 10 -01011110011110 gratuitously 11 -01011110011110 nonchalantly 11 -01011110011110 mercifully 12 -01011110011110 intuitively 15 -01011110011110 unfailingly 16 -01011110011110 plausibly 18 -01011110011110 demonstrably 18 -01011110011110 indisputably 19 -01011110011110 perversely 20 -01011110011110 unmistakably 21 -01011110011110 justifiably 24 -01011110011110 contractually 28 -01011110011110 undeniably 29 -01011110011110 rightfully 41 -01011110011110 logically 41 -01011110011110 ideally 43 -01011110011110 sincerely 47 -01011110011110 conveniently 51 -01011110011110 legitimately 53 -01011110011110 instinctively 55 -01011110011110 unquestionably 72 -01011110011110 admittedly 78 -01011110011110 understandably 87 -01011110011110 arguably 96 -01011110011110 honestly 96 -01011110011110 plainly 100 -01011110011110 presently 101 -01011110011110 rightly 103 -01011110011110 ordinarily 118 -01011110011110 theoretically 127 -01011110011110 scarcely 160 -01011110011110 continually 198 -01011110011110 literally 325 -01011110011110 technically 359 -01011110011110 naturally 377 -01011110011110 constantly 472 -01011110011110 legally 525 -01011110011110 somehow 532 -01011110011110 definitely 609 -01011110011110 automatically 630 -01011110011110 basically 708 -01011110011110 barely 798 -01011110011110 obviously 974 -01011110011110 essentially 1058 -01011110011110 suddenly 1090 -01011110011110 hardly 1338 -01011110011110 otherwise 1563 -01011110011110 merely 1595 -01011110011110 finally 2365 -01011110011110 clearly 2852 -01011110011110 actually 3379 -01011110011110 really 5953 -01011110011110 simply 4101 -01011110011111 faux-Poland 1 -01011110011111 presumedly 1 -01011110011111 flat-wrongly 1 -01011110011111 Puni 1 -01011110011111 officehad 1 -01011110011111 statistics-keepers 1 -01011110011111 Soulages 1 -01011110011111 druther 1 -01011110011111 Mountaineers 2 -01011110011111 topicality 2 -01011110011111 futilely 2 -01011110011111 wanna 5 -01011110011111 ritualistically 6 -01011110011111 unthinkingly 8 -01011110011111 hereby 15 -01011110011111 singlehandedly 15 -01011110011111 single-handedly 54 -01011110011111 steadfastly 82 -01011110011111 never 8649 -01011110011111 always 5342 -0101111010 Stignani 1 -0101111010 Kunste 1 -0101111010 essentiallly 1 -0101111010 ithad 1 -0101111010 have 145455 -0101111010 237.25 1 -01011110110 Wiebe 1 -01011110110 Yijian 1 -01011110110 incisively 1 -01011110110 plot-line 1 -01011110110 civilians-have 1 -01011110110 haved 1 -01011110110 expediters 1 -01011110110 Hsiao-feng 1 -01011110110 Trimmers 1 -01011110110 Qingrung 1 -01011110110 Hurter 1 -01011110110 saloonkeepers 1 -01011110110 articifially 1 -01011110110 re-allocated 1 -01011110110 Shihuang 1 -01011110110 Ramberg 1 -01011110110 Guangwen 1 -01011110110 Haitao 1 -01011110110 Lansford 1 -01011110110 dockers 1 -01011110110 illusionistically 1 -01011110110 Vezirov 1 -01011110110 considerately 1 -01011110110 meeting/audience 1 -01011110110 overtightens 1 -01011110110 lapus 1 -01011110110 stickpins 1 -01011110110 Fairland 1 -01011110110 Micawber 1 -01011110110 KPRC 2 -01011110110 has 160633 -01011110110 recalculates 3 -01011110111 huffily 1 -01011110111 Hui-qing 1 -01011110111 Jr.had 1 -01011110111 brooked 1 -01011110111 heff 1 -01011110111 pratically 1 -01011110111 Suleimanov 1 -01011110111 marshalled 1 -01011110111 8,523 1 -01011110111 costumer 2 -01011110111 brooks 3 -01011110111 straight-facedly 3 -01011110111 succesfully 3 -01011110111 had 80475 -01011110111 wuz 5 -0101111100 Xaviera 1 -0101111100 stongly 1 -0101111100 covetously 1 -0101111100 Mattino 1 -0101111100 prissily 1 -0101111100 mini-Michelangelo 1 -0101111100 Deserter 1 -0101111100 8651085 1 -0101111100 cuttingand 1 -0101111100 dapperly 1 -0101111100 Benedettti 1 -0101111100 cookouts 1 -0101111100 demarcations 1 -0101111100 Yunchao 1 -0101111100 nose-counters 1 -0101111100 Pittson 1 -0101111100 UNWED 1 -0101111100 Mr.Schulof 1 -0101111100 book-burning-by-continuing-resolution 1 -0101111100 overtakes 2 -0101111100 groggily 2 -0101111100 was 177469 -0101111100 inaptly 2 -0101111101 beginneth 1 -0101111101 savorable 1 -0101111101 Columbia-watchers 1 -0101111101 time-starved 1 -0101111101 closers 1 -0101111101 Schermer 1 -0101111101 Winterflood 1 -0101111101 germalists 1 -0101111101 be-bopper 1 -0101111101 Kriek 1 -0101111101 Likes 1 -0101111101 CP-2000 1 -0101111101 tankerload 1 -0101111101 Dolciaria 1 -0101111101 Co.-unit 1 -0101111101 well-begot 1 -0101111101 cost-wise 1 -0101111101 inexcusably 1 -0101111101 Adulyadej 1 -0101111101 COLLAPSE 1 -0101111101 premeditatedly 1 -0101111101 RELEASES 2 -0101111101 128s 2 -0101111101 indicts 5 -0101111101 necessitates 10 -0101111101 hath 12 -0101111101 is 324613 -0101111101 exerts 21 -01011111100 CCNU 1 -01011111100 15-a 1 -01011111100 BATTLING 1 -01011111100 allegedy 1 -01011111100 income-generating 1 -01011111100 Ongais 1 -01011111100 post-colonialism 1 -01011111100 treacherously 2 -01011111100 were 79880 -01011111100 wer 4 -01011111101 times/The 1 -01011111101 gawkily 1 -01011111101 whittles 1 -01011111101 PUMP 1 -01011111101 Hi-Band 1 -01011111101 wabbits 1 -01011111101 Dickenses 1 -01011111101 non-concurs 1 -01011111101 Zephyrhills 1 -01011111101 reading. 1 -01011111101 snootily 1 -01011111101 M.B.A.holder 1 -01011111101 inflationso 1 -01011111101 Fulfills 1 -01011111101 ESCHEW 1 -01011111101 pellmell 1 -01011111101 SPENT 1 -01011111101 red-draped 1 -01011111101 vincit 1 -01011111101 atth 1 -01011111101 heterosexually 2 -01011111101 are 160516 -01011111101 trumping 2 -0101111111000 Louis-Philippe 1 -0101111111000 giddily 1 -0101111111000 coulda 1 -0101111111000 cramm 1 -0101111111000 Decry 1 -0101111111000 Porat 1 -0101111111000 've 8294 -0101111111000 Are. 1 -0101111111001 brings/To 1 -0101111111001 yabbering 1 -0101111111001 belly-laughingly 1 -0101111111001 just-a 1 -0101111111001 aswered. 1 -0101111111001 cogenerate 1 -0101111111001 neogotiate 1 -0101111111001 RSVP 1 -0101111111001 Manhattaners 1 -0101111111001 hearby 1 -0101111111001 waitin 1 -0101111111001 snuffles 1 -0101111111001 B-cells 1 -0101111111001 Fisherites 1 -0101111111001 oughta 8 -0101111111001 gotta 52 -0101111111001 'll 5778 -0101111111001 'd 4263 -0101111111010 Sepolcri 1 -0101111111010 comprehend/ 1 -0101111111010 Gerrymandered 1 -0101111111010 up-put 1 -0101111111010 overpraised 1 -0101111111010 Zhongjun 1 -0101111111010 puked 1 -0101111111010 glad-handed 1 -0101111111010 Cobra-brand 1 -0101111111010 cold-turkeyed 1 -0101111111010 Mansuy 1 -0101111111010 Fakti 1 -0101111111010 lened 1 -0101111111010 tortoised 1 -0101111111010 vant 1 -0101111111010 figger 1 -0101111111010 birdgarden 1 -0101111111010 flower-garden 1 -0101111111010 modo 1 -0101111111010 oul 1 -0101111111010 Masnadieri 1 -0101111111010 Wound 1 -0101111111010 video-taped 2 -0101111111010 'm 5412 -0101111111010 am 1703 -0101111111011 ever-so-expressive 1 -0101111111011 mit 1 -0101111111011 Etapes 1 -0101111111011 scarify 1 -0101111111011 Clawed 1 -0101111111011 BESIEGE 1 -0101111111011 pork-pie-wearing 1 -0101111111011 cadged 1 -0101111111011 walla 1 -0101111111011 THICKER 1 -0101111111011 editha 1 -0101111111011 Hingga 1 -0101111111011 operadoras 1 -0101111111011 ordo 1 -0101111111011 focusted 1 -0101111111011 BROADEN 1 -0101111111011 monger 1 -0101111111011 oufond 1 -0101111111011 hand-crank 1 -0101111111011 seran 1 -0101111111011 BLONDE 1 -0101111111011 necked 1 -0101111111011 guys/gals 1 -0101111111011 fatsos 1 -0101111111011 drowse 1 -0101111111011 oscillation 1 -0101111111011 oversurged 1 -0101111111011 're 15656 -0101111111011 APPEARING 1 -010111111110 libera 1 -010111111110 noew 1 -010111111110 duhMAWko 1 -010111111110 underdelegates 1 -010111111110 warmingii 1 -010111111110 Gi-Ai 1 -010111111110 sub-contracted 1 -010111111110 Look. 1 -010111111110 Pronounceable 1 -010111111110 su-perb 1 -010111111110 Geek 1 -010111111110 Kleine 1 -010111111110 oniosis 1 -010111111110 Ist 1 -010111111110 klatsch 1 -010111111110 custodiet 1 -010111111110 cunado 1 -010111111110 room-to-room 1 -010111111110 obstat 1 -010111111110 superpundits 1 -010111111110 Talked 1 -010111111110 McDo 1 -010111111110 Sigh 1 -010111111110 Addictions 1 -010111111110 parthenium 1 -010111111110 Overreacting 1 -010111111110 non-traders 1 -010111111110 understudied 1 -010111111110 sabe 1 -010111111110 ran. 1 -010111111110 sha 2 -010111111110 baby-sit 3 -010111111110 do 42884 -010111111110 mus 3 -0101111111110 canst 1 -0101111111110 decline-do 1 -0101111111110 misallocates 1 -0101111111110 doese 1 -0101111111110 Hall-could 1 -0101111111110 singsongs 1 -0101111111110 foreordains 1 -0101111111110 doens 1 -0101111111110 unpriestly 1 -0101111111110 wa 3 -0101111111110 does 22870 -0101111111110 knoweth 4 -0101111111111 NOR 1 -0101111111111 confidentially/Ai 1 -0101111111111 impersonates 1 -0101111111111 damned-if-he-did 1 -0101111111111 hymned 1 -0101111111111 retrains 1 -0101111111111 wissen 1 -0101111111111 escudo-are 1 -0101111111111 Arti 1 -0101111111111 id 3 -0101111111111 did 29733 -0101111111111 IS 316 -01100000 Whiney 1 -01100000 2217 1 -01100000 Koralek 1 -01100000 Kittrell 1 -01100000 Realization 1 -01100000 Coining 1 -01100000 Sons. 1 -01100000 Denisov 1 -01100000 Zwirner 1 -01100000 Violich 1 -01100000 Filson 1 -01100000 Counterpoint 1 -01100000 Gersdorff 1 -01100000 Stall 1 -01100000 Slom 1 -01100000 Assoc 1 -01100000 Hapgood 1 -01100000 Klimpl 1 -01100000 Hengt 1 -01100000 Shefelman 1 -01100000 Hebenton 1 -01100000 Cuiffo 1 -01100000 Babka 1 -01100000 Mop 1 -01100000 Grind-A-Gram 1 -01100000 Haas-led 1 -01100000 Selskab 1 -01100000 Zirbel 1 -01100000 kassen 1 -01100000 Albertson. 1 -01100000 ASSOCIES 1 -01100000 Mcrae 1 -01100000 Scheurick 1 -01100000 Gumpert 1 -01100000 furniture-retailing 1 -01100000 Swartchild 1 -01100000 Kerker 1 -01100000 Gosseen 1 -01100000 Berick 1 -01100000 Prone 1 -01100000 Gesmer 1 -01100000 SLUMP 1 -01100000 MONTALBANO 1 -01100000 Zellmer 1 -01100000 Bytes 1 -01100000 Odesser 1 -01100000 Predestination 1 -01100000 FRANCAISES 1 -01100000 Curiale 1 -01100000 Zvetina 1 -01100000 Mechanalysis 1 -01100000 Dubofsky 1 -01100000 rose3/4 1 -01100000 M/Mars 1 -01100000 Wilcoxes 1 -01100000 Alexander. 1 -01100000 Howath 1 -01100000 Paines 1 -01100000 Neuf 1 -01100000 Politik 1 -01100000 Guestier 1 -01100000 Ghurka 1 -01100000 Pinkstone 1 -01100000 Bress 1 -01100000 Munter 1 -01100000 McManimon 1 -01100000 Sandak 1 -01100000 LAVAN 1 -01100000 Rehabilition 1 -01100000 Slye 1 -01100000 Silversmiths 1 -01100000 Mitzna 1 -01100000 Rheindell 1 -01100000 Werson 1 -01100000 Hesitate 1 -01100000 Quilters 1 -01100000 Co.Moody 1 -01100000 SHOWER 1 -01100000 Tele-Hachette 1 -01100000 Hopwod 1 -01100000 SBI 1 -01100000 Lorwin 1 -01100000 Schomer 1 -01100000 Afloat 1 -01100000 Allsop 1 -01100000 Danssesse 1 -01100000 Hergott 1 -01100000 Rynett 1 -01100000 Keelips 1 -01100000 Karabell 1 -01100000 Co.Mr 1 -01100000 Latman 1 -01100000 SCHEETZ 1 -01100000 1C 1 -01100000 Bio-Sciences 1 -01100000 Kotkin 1 -01100000 Schuster/Touchstone 1 -01100000 Barell 1 -01100000 Liapakis 1 -01100000 Hutensky 1 -01100000 Hardies 1 -01100000 Bellis 1 -01100000 Hootch 1 -01100000 ueber 1 -01100000 Zachry 1 -01100000 CHAMBER 1 -01100000 Dalglish 1 -01100000 Perretti 1 -01100000 Holguin 1 -01100000 Bergendoff 1 -01100000 Beld 1 -01100000 Cressy 1 -01100000 McCauliffe 1 -01100000 Kanaday 1 -01100000 HIGGINS 1 -01100000 Partner/BBDO 1 -01100000 Petrino 1 -01100000 r-Revised 1 -01100000 Beutenmuller 1 -01100000 Baillieu 1 -01100000 1989-59 1 -01100000 3082 1 -01100000 Look-Alikes 1 -01100000 Norander 1 -01100000 64,212 1 -01100000 14,701 1 -01100000 64,167 1 -01100000 50,719 1 -01100000 310,453 1 -01100000 11,471 1 -01100000 Waldenburg 1 -01100000 Razook 1 -01100000 Sitterson 1 -01100000 Barkett 1 -01100000 Thibeault 1 -01100000 Hanburys 1 -01100000 Turben. 1 -01100000 Macuga 1 -01100000 Turbin 1 -01100000 Brega 1 -01100000 Schmerling 1 -01100000 Ingersoll. 1 -01100000 GLOVES 1 -01100000 Dilday 1 -01100000 Luchs 2 -01100000 DiVosta 2 -01100000 Norrander 2 -01100000 Fairgrounds 2 -01100000 Iberica 2 -01100000 Sherrerd 2 -01100000 Naturals 2 -01100000 Hasen 2 -01100000 Goudard 2 -01100000 cans. 2 -01100000 Agzuerich 2 -01100000 Vecchione 2 -01100000 Technic 2 -01100000 Enersen 2 -01100000 Breakfasts 2 -01100000 Reath 2 -01100000 Proops 2 -01100000 1989-C 2 -01100000 Geck 2 -01100000 Privatbank 2 -01100000 Lazo 2 -01100000 Terhune 2 -01100000 Corp.-insured 2 -01100000 Burkinshaw 2 -01100000 Binnington 2 -01100000 Kommerzialbank 3 -01100000 Pegler 3 -01100000 Youngberg 3 -01100000 Eckstut 3 -01100000 Publicite 3 -01100000 Futuro 3 -01100000 Associados 3 -01100000 Broadfoot 3 -01100000 Hallman 3 -01100000 Tannenholz 3 -01100000 Geraldson 3 -01100000 Cederquist 3 -01100000 Kammholz 3 -01100000 Magnolias 3 -01100000 Raber 3 -01100000 Felts 3 -01100000 Alai 4 -01100000 Catherwood 4 -01100000 MacRae 4 -01100000 Mathebe 4 -01100000 Poulain 4 -01100000 Landesrentenbank 4 -01100000 Co.-led 5 -01100000 Flax 5 -01100000 Kreditkasse 5 -01100000 Kreditbanken 5 -01100000 ROSSI 5 -01100000 co. 6 -01100000 Wirtschaft 6 -01100000 Cihlar 7 -01100000 CO 7 -01100000 KG 8 -01100000 Zabel 8 -01100000 Associes 9 -01100000 Co.-backed 10 -01100000 Signatures 10 -01100000 Kudner 11 -01100000 Burling 12 -01100000 Abrutyn 13 -01100000 Mendelsohn 18 -01100000 Bockius 20 -01100000 Wardwell 22 -01100000 Mfg 27 -01100000 Co 73 -01100000 Co. 47398 -01100000 Lybrand 191 -011000010 Dreamcoat 1 -011000010 2000+ 1 -011000010 Crp. 1 -011000010 Automalls 1 -011000010 Correia 1 -011000010 Luthra 1 -011000010 superflack 1 -011000010 Brookner 1 -011000010 establishment-wing 1 -011000010 Grinding 1 -011000010 Glasbruk 1 -011000010 Dorme 1 -011000010 CMT-600 1 -011000010 Corp.-1 1 -011000010 Inno 1 -011000010 Emphasizes 1 -011000010 Corp.-U.S.A. 1 -011000010 Cumbo 1 -011000010 plastic-injection-molding 1 -011000010 executive-recruiter 1 -011000010 RC-250 1 -011000010 Alacakaptan 1 -011000010 Rip-Off 1 -011000010 1011s 1 -011000010 Terrarium 1 -011000010 VER 1 -011000010 McMicken 1 -011000010 Repairman 1 -011000010 11-B 1 -011000010 Jinkins 1 -011000010 HZ 1 -011000010 Franzos 1 -011000010 Changer 1 -011000010 Inernational 1 -011000010 Jetstar 1 -011000010 Recorder 1 -011000010 1100/84 1 -011000010 Communicatons 1 -011000010 DINK 1 -011000010 Pictus 1 -011000010 Multispeed 1 -011000010 affilite 1 -011000010 5+10 1 -011000010 Lindqvist 1 -011000010 Segales 1 -011000010 Yalcin 1 -011000010 Gelfand 1 -011000010 calfskin 1 -011000010 Bauer-style 1 -011000010 One-Shot 1 -011000010 chauffer 1 -011000010 Jillette 1 -011000010 Grewan 1 -011000010 VanCamp 1 -011000010 combinaton 1 -011000010 Scotia-born 1 -011000010 Knockers 1 -011000010 20,700 1 -011000010 Macrocab 1 -011000010 components-making 1 -011000010 bellyflops 1 -011000010 Condominiums 1 -011000010 shovel-manufacturing 1 -011000010 paint-making 1 -011000010 andMatsushita 1 -011000010 Mil-Spec 1 -011000010 Flyway 1 -011000010 Felzer 1 -011000010 Bhosle 1 -011000010 1-Step 1 -011000010 Brasileiras 1 -011000010 Nouri 1 -011000010 movie-of-the-week 1 -011000010 Adde 1 -011000010 co-investment 1 -011000010 Davours 1 -011000010 Breezers 1 -011000010 News. 1 -011000010 Tele-Messager 1 -011000010 Corp.systems 1 -011000010 Fensterer 1 -011000010 Closes 1 -011000010 VOLKSBANK 1 -011000010 Supercenters 1 -011000010 Aircaft 1 -011000010 Korbich 1 -011000010 Shazar 1 -011000010 Communications-Boston 1 -011000010 Interconnects 1 -011000010 12,886 1 -011000010 Air-Jordan 1 -011000010 Cheques 1 -011000010 Space-net 1 -011000010 Airphone 1 -011000010 Gruppe 1 -011000010 Edington 1 -011000010 Playworld 1 -011000010 Heupel 1 -011000010 Slippers 1 -011000010 Merighi 1 -011000010 Aicor 1 -011000010 gen 1 -011000010 15,550 1 -011000010 10,156 1 -011000010 441,069 1 -011000010 Speedier 1 -011000010 DataPlan 1 -011000010 BankTexas 1 -011000010 Records/SONY 1 -011000010 Cashway 1 -011000010 SUITOR 1 -011000010 OnLine 1 -011000010 Comten 2 -011000010 Boast 2 -011000010 Bank-Texas 2 -011000010 Vnet 2 -011000010 Ponselle 2 -011000010 Musick 2 -011000010 Armani 2 -011000010 T3100 2 -011000010 80386-SX 2 -011000010 Credietbank 2 -011000010 Rohrabacher 2 -011000010 Hospital-Sunrise 2 -011000010 Vliegtuigenfabriek 2 -011000010 Kunikov 2 -011000010 Parlor 2 -011000010 Gindi 2 -011000010 Downes 2 -011000010 Stic 2 -011000010 Prawiro 2 -011000010 Musk 2 -011000010 Catheter 2 -011000010 Turbomach 2 -011000010 Disturbances 2 -011000010 MD-91/92 2 -011000010 Delavel 2 -011000010 synthase 2 -011000010 Corp.-built 3 -011000010 Jospin 3 -011000010 corp. 3 -011000010 Employes 3 -011000010 Tradecenter 3 -011000010 LaFontant 3 -011000010 Intermediaries 3 -011000010 Turkiye 3 -011000010 Ronchi 3 -011000010 Mates 3 -011000010 WorldCom 3 -011000010 Group. 4 -011000010 Aerostructures 4 -011000010 Poszgay 4 -011000010 Siniora 4 -011000010 Bank-Detroit 4 -011000010 Pallo 4 -011000010 Sat 4 -011000010 Co-Operation 5 -011000010 Bookshop 5 -011000010 potato-processing 6 -011000010 Remembered 6 -011000010 Corp.-compatible 6 -011000010 Massimi 6 -011000010 Darlin 6 -011000010 Francaises 8 -011000010 Globcom 10 -011000010 Trilling 11 -011000010 Simcha 13 -011000010 Lycoming 13 -011000010 Whaler 15 -011000010 seaboard 17 -011000010 Storyboard 24 -011000010 Mahe 24 -011000010 Puat 29 -011000010 K.K. 64 -011000010 Manac 86 -011000010 Corp 95 -011000010 Bros. 150 -011000010 Scotia 170 -011000010 Bancorp 1097 -011000010 Corp. 59743 -011000010 Cos. 1811 -0110000110 AGRICOLE 1 -0110000110 Sipler 1 -0110000110 3861 1 -0110000110 Kido 1 -0110000110 Mij 1 -0110000110 Uitz 1 -0110000110 Mansouri 1 -0110000110 manyok 1 -0110000110 Datavio 1 -0110000110 MoneyGram 1 -0110000110 racetack 1 -0110000110 Godmother 1 -0110000110 Versicherungsgruppe 1 -0110000110 Luxemburg 1 -0110000110 Kohout 1 -0110000110 Shimposha 1 -0110000110 Getter 1 -0110000110 Harkleroad 1 -0110000110 Alperson 1 -0110000110 pipe-coating 1 -0110000110 Stadion 1 -0110000110 12:00-16:00 1 -0110000110 Pspective 1 -0110000110 18198 1 -0110000110 Corp.-U.S. 1 -0110000110 From. 1 -0110000110 Shikiba 1 -0110000110 yesterdy 1 -0110000110 Month. 1 -0110000110 4411-4414 1 -0110000110 8801 1 -0110000110 Tay 1 -0110000110 Inc.-Salomon 1 -0110000110 86-43 1 -0110000110 Karz 1 -0110000110 Unlimited. 1 -0110000110 Command/Vietnam 1 -0110000110 Estanislao 1 -0110000110 Peixia 1 -0110000110 HPH 1 -0110000110 broker-adviser 1 -0110000110 Neufeldt 1 -0110000110 Selectivo 1 -0110000110 Corp.-TRW 1 -0110000110 34-42-58 1 -0110000110 Pervert 1 -0110000110 INC.Moody 1 -0110000110 Bagneris 1 -0110000110 Ezquerra 1 -0110000110 Spectrometer 1 -0110000110 comestics 1 -0110000110 Commute 1 -0110000110 Lasters 1 -0110000110 rail-link 1 -0110000110 1466 1 -0110000110 offered. 1 -0110000110 87-24. 1 -0110000110 Chitto 1 -0110000110 Silva-Herzog 1 -0110000110 Inc.-E.F. 1 -0110000110 Mamoulian 1 -0110000110 Tilt 1 -0110000110 Economia 1 -0110000110 Viewpoints 1 -0110000110 Shoaib 1 -0110000110 7900 1 -0110000110 Board. 1 -0110000110 aculeatum 1 -0110000110 Kalweit 1 -0110000110 divsion 1 -0110000110 Warbucks 1 -0110000110 Inc.Terms 1 -0110000110 Troyer 1 -0110000110 Adamovich 1 -0110000110 Aeronautiques 1 -0110000110 Corp.Moody 1 -0110000110 Inc.Moody 1 -0110000110 12-D 1 -0110000110 VII-B 1 -0110000110 Kosatka 1 -0110000110 book-making 1 -0110000110 Ibanez 1 -0110000110 Mikaelian 1 -0110000110 Delacre 1 -0110000110 Galban 1 -0110000110 Gerow 1 -0110000110 Menda 1 -0110000110 Pudovkin 1 -0110000110 Foundries 1 -0110000110 debut. 1 -0110000110 Mxenge 1 -0110000110 Pharmaceutica 1 -0110000110 Ashore 1 -0110000110 Entertains 1 -0110000110 V.O.F. 1 -0110000110 23345 1 -0110000110 poll. 1 -0110000110 7,818 1 -0110000110 RISK. 1 -0110000110 SemiTech 1 -0110000110 Glitch 1 -0110000110 Rostagno 1 -0110000110 Pasos 1 -0110000110 rejectionists 1 -0110000110 Malal 1 -0110000110 Wohlers 1 -0110000110 DeFrantz 1 -0110000110 Manteris 1 -0110000110 +10.5 1 -0110000110 NTSA 1 -0110000110 Bank-Manistee 1 -0110000110 89-46 1 -0110000110 Beckroge 1 -0110000110 cookie-and-cracker 1 -0110000110 Himmelblau 1 -0110000110 83,242 1 -0110000110 Doratio 1 -0110000110 Offfice 1 -0110000110 cardmembers 1 -0110000110 Migliorino 1 -0110000110 Tripartite 1 -0110000110 Civelek 1 -0110000110 54,745 1 -0110000110 Artukovic 1 -0110000110 Oley 1 -0110000110 Atomique 1 -0110000110 Sidbury 1 -0110000110 Four/England 1 -0110000110 Ltda 1 -0110000110 9903 1 -0110000110 Research-U.S.A. 1 -0110000110 Tamarin 1 -0110000110 judicata 1 -0110000110 Zagaria 1 -0110000110 GMBH 1 -0110000110 Scrolls 2 -0110000110 Fei 2 -0110000110 Linson 2 -0110000110 al-Urabi 2 -0110000110 MarketNet 2 -0110000110 Kross 2 -0110000110 Ltee. 2 -0110000110 Tirlemontoise 2 -0110000110 McFarlin 2 -0110000110 Vivas 2 -0110000110 Rockne 2 -0110000110 ordinis 2 -0110000110 NT&SA 2 -0110000110 Sukhishvili 2 -0110000110 Reborn 2 -0110000110 Kishi 2 -0110000110 magazine. 2 -0110000110 Commission. 2 -0110000110 Cheatham 3 -0110000110 Volksbeleggings 3 -0110000110 Holden-Brown 3 -0110000110 Informatique 3 -0110000110 Swarup 4 -0110000110 Ltee 4 -0110000110 MICHELIN 4 -0110000110 Funktion 4 -0110000110 SCOTIA 4 -0110000110 Ruppin 4 -0110000110 Karamazov 4 -0110000110 Indices 4 -0110000110 Sec 5 -0110000110 Drift 5 -0110000110 1771 5 -0110000110 Karno 6 -0110000110 1141 6 -0110000110 Moosa 6 -0110000110 Abdul-Jabbar 7 -0110000110 Flame 9 -0110000110 Statutes 11 -0110000110 Goer 12 -0110000110 G.M.B.H. 16 -0110000110 Inc 28 -0110000110 Scouts 48 -0110000110 Attendants 76 -0110000110 C.D.s 188 -0110000110 Marwick 356 -0110000110 Inc. 63901 -0110000110 Perspective 574 -0110000111 ALPERT 1 -0110000111 Yatsen 1 -0110000111 Diversifund 1 -0110000111 Bomer 1 -0110000111 Esquetini 1 -0110000111 F27s 1 -0110000111 Sportif 1 -0110000111 OPPORTUNITIES 1 -0110000111 220-2311 1 -0110000111 Jagdwagen 1 -0110000111 Corton-Charlemagne 1 -0110000111 Lease-owned 1 -0110000111 PERIOD 1 -0110000111 Pushes 1 -0110000111 venography 1 -0110000111 Fodio 1 -0110000111 Fearlessly 1 -0110000111 Mennea 1 -0110000111 RECYCLING 1 -0110000111 Organizaton 1 -0110000111 STINKS 1 -0110000111 Thabit 1 -0110000111 Bulletins 1 -0110000111 T-Shirts 1 -0110000111 Yaikis 1 -0110000111 Specs 1 -0110000111 Parlors 1 -0110000111 Changjiang 1 -0110000111 Telecasters 1 -0110000111 ATS 1 -0110000111 Carneiro 1 -0110000111 Baek 1 -0110000111 Fertilization 1 -0110000111 Racor 1 -0110000111 Thijm 1 -0110000111 Sweetens 1 -0110000111 Belters 1 -0110000111 Oldsmobile-Honda 1 -0110000111 Bondware 1 -0110000111 Capoor 1 -0110000111 RATIOS 1 -0110000111 SMILES 1 -0110000111 Spergel 1 -0110000111 Sonn 1 -0110000111 PRESIDENTS 1 -0110000111 Lodhi 1 -0110000111 RANKINGS 1 -0110000111 Nabicso 1 -0110000111 Kronenberger 1 -0110000111 Morellino 1 -0110000111 Dagbladet 1 -0110000111 BED 1 -0110000111 DISPOSAL 1 -0110000111 Cheuk-Wu 1 -0110000111 Partners> 1 -0110000111 Illustrator 1 -0110000111 757-232s 1 -0110000111 BIRDSALL 1 -0110000111 moonshots 1 -0110000111 Kie 1 -0110000111 automotive-accessories 1 -0110000111 .S.p.A. 1 -0110000111 AGRICULTURE 1 -0110000111 SOAPS 1 -0110000111 Nabisco. 1 -0110000111 Bashers 1 -0110000111 Cipolletta 1 -0110000111 SJL 1 -0110000111 foot-sore 1 -0110000111 Jianguo 1 -0110000111 nightshirts 1 -0110000111 Quebec-Amerique 1 -0110000111 McLintock 1 -0110000111 Ambrust 1 -0110000111 IIe- 1 -0110000111 LOSS. 1 -0110000111 Birley 1 -0110000111 Bracho 1 -0110000111 JV 1 -0110000111 Narayanan 1 -0110000111 negra 1 -0110000111 Books/Morrow 1 -0110000111 SARL 1 -0110000111 49057 1 -0110000111 Convertini 1 -0110000111 Achber 1 -0110000111 Voicesystem 1 -0110000111 Futhermore 1 -0110000111 Inc.-Houston 1 -0110000111 PROGRAM-II 1 -0110000111 Wicklow 1 -0110000111 Gattini 1 -0110000111 ABOUND 1 -0110000111 mutuals 1 -0110000111 ZICKLER 1 -0110000111 DEARBORN 1 -0110000111 Wahi 1 -0110000111 Compendium 1 -0110000111 1970-1975 1 -0110000111 30:1 1 -0110000111 Fleurs 1 -0110000111 Furrow 1 -0110000111 Faltungen 1 -0110000111 power-station 1 -0110000111 Resultant 1 -0110000111 Domingues 1 -0110000111 Williard 1 -0110000111 Atelier 1 -0110000111 Romazoff 1 -0110000111 Boyett 1 -0110000111 Diplomatique 1 -0110000111 bills. 1 -0110000111 Bank-East 1 -0110000111 Puy 1 -0110000111 Reuff 1 -0110000111 KR200 1 -0110000111 LX. 1 -0110000111 huggers 1 -0110000111 Inc.-Federal 1 -0110000111 DILEMMAS 1 -0110000111 agachate 1 -0110000111 Fiduciare 1 -0110000111 Duchene 1 -0110000111 Guglielmini 1 -0110000111 gulch 1 -0110000111 Pharmacetical 1 -0110000111 Eletronica 1 -0110000111 INC.This 1 -0110000111 Kiep 1 -0110000111 Cynicism 1 -0110000111 NOTICES 1 -0110000111 Gentileschi 1 -0110000111 CHAPTER 1 -0110000111 Sparcal 1 -0110000111 Heights-based 1 -0110000111 BARGAIN 1 -0110000111 Gless 1 -0110000111 MOUNTS 1 -0110000111 MONOPOLY 1 -0110000111 investmests 1 -0110000111 Judkins 1 -0110000111 Propjet 1 -0110000111 Mikhailovna 1 -0110000111 City/Midland 1 -0110000111 Skypak 1 -0110000111 Monoplane 1 -0110000111 Mistreats 1 -0110000111 Williams-Jones 1 -0110000111 One-Cleveland 1 -0110000111 Concomitantly 1 -0110000111 carmn 1 -0110000111 Carangi 1 -0110000111 Kugzruk 1 -0110000111 Fidenza 1 -0110000111 Cuivre 1 -0110000111 BREAKTHROUGHS 1 -0110000111 Dymo 1 -0110000111 Gasset 1 -0110000111 1700-1900 1 -0110000111 Turgot 1 -0110000111 Schotters 1 -0110000111 202-343-8900 1 -0110000111 Enterprises/Stouffers 1 -0110000111 Continuiteit 1 -0110000111 Siddely 1 -0110000111 225.00 1 -0110000111 Economiste 1 -0110000111 redaction 1 -0110000111 Bruises 1 -0110000111 Oesterich 1 -0110000111 Rinko 1 -0110000111 CUPS 1 -0110000111 Kiko 1 -0110000111 Crank-it-up 1 -0110000111 Rimer 1 -0110000111 Five-O 1 -0110000111 Gying 1 -0110000111 Tomodachi 1 -0110000111 Jianmin 1 -0110000111 Shaikholislam 1 -0110000111 Ragans 1 -0110000111 Cv 1 -0110000111 Datacenter 1 -0110000111 7,114 1 -0110000111 77.78 1 -0110000111 PANTYHOSE 1 -0110000111 CARTIER 1 -0110000111 Diggers/Noise 1 -0110000111 A300-600s 1 -0110000111 587-1111 1 -0110000111 Alphand 1 -0110000111 G.m.b.h. 1 -0110000111 empolyees 1 -0110000111 Karkaba 1 -0110000111 94574 1 -0110000111 93401 1 -0110000111 95403 1 -0110000111 Infiltrating 1 -0110000111 Maschinen 1 -0110000111 Fracturing 1 -0110000111 Michelangeli 1 -0110000111 beer-packaging 1 -0110000111 S.r.I. 1 -0110000111 Cralle 1 -0110000111 McNight 1 -0110000111 Rosenhause 1 -0110000111 Lepovetsky 1 -0110000111 Universitaria 1 -0110000111 HiBred 1 -0110000111 freewheel 1 -0110000111 S.p.a 1 -0110000111 1:28 1 -0110000111 26,259 1 -0110000111 members. 1 -0110000111 Laserjet 1 -0110000111 X-MP/18 1 -0110000111 Pictures. 1 -0110000111 Rheinstahl 1 -0110000111 Sadr 1 -0110000111 OUTSTANDING 1 -0110000111 RUBIN 1 -0110000111 L.P.V 1 -0110000111 affilate 1 -0110000111 MicroSystems 1 -0110000111 Press-Dispatch 1 -0110000111 Uk 1 -0110000111 12.559 1 -0110000111 11.055 1 -0110000111 BORROWING 1 -0110000111 recording-company 1 -0110000111 303,841 1 -0110000111 8490.00 1 -0110000111 151.00 1 -0110000111 534.5 1 -0110000111 acquisitiion 1 -0110000111 1345.00 1 -0110000111 1159.00 1 -0110000111 1960.00 1 -0110000111 6380.00 1 -0110000111 3460.00 1 -0110000111 3790.00 1 -0110000111 4080.00 1 -0110000111 Shoppsers 1 -0110000111 Aerocoupe 1 -0110000111 Register-Tribune 1 -0110000111 Action-Paks 1 -0110000111 Buds 1 -0110000111 al-Husseini 1 -0110000111 Infoline 1 -0110000111 MessengerSiegfried 1 -0110000111 877-1800 1 -0110000111 36.59 1 -0110000111 FLARE-OFF 1 -0110000111 737-205 1 -0110000111 114762 1 -0110000111 35.00 1 -0110000111 irst 1 -0110000111 PINDLING 1 -0110000111 S&LA 1 -0110000111 DEFECT 1 -0110000111 228s 1 -0110000111 model. 1 -0110000111 Reyes-Requena 1 -0110000111 photo- 1 -0110000111 Mousawi 1 -0110000111 Backinoff 1 -0110000111 Humfrey 1 -0110000111 Biologique 1 -0110000111 1,393,641 1 -0110000111 Cresvale 1 -0110000111 Peramuna 1 -0110000111 Greeg 1 -0110000111 Siu-kwong 1 -0110000111 AR-15s 1 -0110000111 Spills 1 -0110000111 TRACY 1 -0110000111 Fosdick 1 -0110000111 Flintridge 1 -0110000111 DeMyer 1 -0110000111 hydrogel 1 -0110000111 Vers 1 -0110000111 VERSUS 1 -0110000111 61.54 1 -0110000111 29,028 1 -0110000111 Filmakers 1 -0110000111 clandestina 1 -0110000111 paralela 1 -0110000111 thirty-nine 1 -0110000111 Elektromagneter 1 -0110000111 Campins 1 -0110000111 COUNSELING 1 -0110000111 fine-chemical 1 -0110000111 director-nominees 1 -0110000111 Engelbrecht 1 -0110000111 witnesses-for-hire 1 -0110000111 returneth 1 -0110000111 BOYCOTT 1 -0110000111 M-A-T-T-R-E-S-S 1 -0110000111 SONG 1 -0110000111 42.86 1 -0110000111 Daisies 1 -0110000111 CORP.-affiliated 1 -0110000111 quota-breakers 1 -0110000111 Ediciones 1 -0110000111 POINTS 2 -0110000111 AS. 2 -0110000111 Interconnection 2 -0110000111 Aktiebolaget 2 -0110000111 Gonne 2 -0110000111 Electronique 2 -0110000111 Wiedenski 2 -0110000111 DIED 2 -0110000111 PROS 2 -0110000111 subterranea 2 -0110000111 LEUMI 2 -0110000111 Mondiales 2 -0110000111 Recorders 2 -0110000111 Inoac 2 -0110000111 Hose 2 -0110000111 Coven 2 -0110000111 RADIOS 2 -0110000111 Belfond 2 -0110000111 Presente 2 -0110000111 Monte-Carlo 2 -0110000111 HELPED 2 -0110000111 Sawicka 2 -0110000111 CAMBODIA 2 -0110000111 49,445 2 -0110000111 349,627 2 -0110000111 Doehler-Jarvis 2 -0110000111 COMPLEX 2 -0110000111 Mantrust 2 -0110000111 Koki 2 -0110000111 Bhakti 2 -0110000111 Cucchi 2 -0110000111 Fisherman 2 -0110000111 Cullinen 2 -0110000111 Marshner 2 -0110000111 Cutters 2 -0110000111 Kealey 2 -0110000111 LANDED 2 -0110000111 LPG 2 -0110000111 Roepke 2 -0110000111 CONTINUE 2 -0110000111 MINERS 2 -0110000111 94103 2 -0110000111 Ferroviarie 2 -0110000111 40.00 2 -0110000111 BARBIE 2 -0110000111 EXPORTS 2 -0110000111 Obrow 2 -0110000111 NAMES 2 -0110000111 INDUSTRIER 2 -0110000111 Persists 2 -0110000111 Barilla 2 -0110000111 Synagogue 2 -0110000111 DELLA 2 -0110000111 SX-V500 2 -0110000111 722-2764 2 -0110000111 Charta 2 -0110000111 Spurs 2 -0110000111 Chol 2 -0110000111 Countach 3 -0110000111 Appraisers 3 -0110000111 Mecanique 3 -0110000111 Laguera 3 -0110000111 COUNTY 3 -0110000111 Escrow 3 -0110000111 Center. 3 -0110000111 Crivellaro 3 -0110000111 Thye 3 -0110000111 Riffat 3 -0110000111 Souzas 3 -0110000111 Onn 3 -0110000111 DieCast 3 -0110000111 Espace 3 -0110000111 PART 3 -0110000111 Sleeps 3 -0110000111 Palazzolo 3 -0110000111 TPAe 3 -0110000111 Filipacchi 3 -0110000111 Bogdanor 3 -0110000111 OUTPUT 3 -0110000111 COUNCIL 3 -0110000111 344-7381 3 -0110000111 Tho 3 -0110000111 Consumenten 3 -0110000111 SOGETI 4 -0110000111 FS&LA 4 -0110000111 Prompts 4 -0110000111 Grinten 4 -0110000111 Gel 4 -0110000111 G.m.b.H 4 -0110000111 ACCOUNTING 4 -0110000111 Redel 4 -0110000111 Seekers 4 -0110000111 SA. 4 -0110000111 L.P 4 -0110000111 Lebans 5 -0110000111 Zelle 5 -0110000111 Armbrust 5 -0110000111 SpA 5 -0110000111 Yat-sen 5 -0110000111 Aktiengesellschaft 5 -0110000111 Expedition 5 -0110000111 Bomber 5 -0110000111 Duk 5 -0110000111 AUTHORITY 5 -0110000111 NV. 5 -0110000111 Tzu 5 -0110000111 Kirstein 5 -0110000111 RENAULT 6 -0110000111 Poupon 6 -0110000111 finds. 7 -0110000111 Pte. 7 -0110000111 CLAIMS 7 -0110000111 Mundi 7 -0110000111 BENSON 7 -0110000111 INDUSTRIALE 7 -0110000111 IDROCARBURI 8 -0110000111 Listener 8 -0110000111 Sunia 8 -0110000111 Soir 8 -0110000111 Dominicana 9 -0110000111 Kops 9 -0110000111 Handelsbanken 9 -0110000111 Presse 9 -0110000111 NW 11 -0110000111 N.L. 13 -0110000111 Fiduciares 13 -0110000111 Ltda. 13 -0110000111 FSB 13 -0110000111 GAINS 14 -0110000111 GmbH 15 -0110000111 Etc. 15 -0110000111 OFFICE 16 -0110000111 Carta 17 -0110000111 S.p.A 17 -0110000111 Wagon 18 -0110000111 A/S 18 -0110000111 Ltd 22 -0110000111 Bhd. 24 -0110000111 ......... 24 -0110000111 COS. 24 -0110000111 Ziemian 27 -0110000111 BANCORP. 31 -0110000111 Diseases 38 -0110000111 BANCORP 40 -0110000111 AG. 40 -0110000111 McDougall 44 -0110000111 Industriale 48 -0110000111 Pty. 53 -0110000111 LP 56 -0110000111 NV 62 -0110000111 N.A. 74 -0110000111 Shimbun 89 -0110000111 SA 95 -0110000111 S.P.A. 99 -0110000111 W 120 -0110000111 B.V. 122 -0110000111 PLC. 129 -0110000111 AS 172 -0110000111 Industrie 240 -0110000111 ASSOCIATION 251 -0110000111 G.m.b.H. 260 -0110000111 LTD. 432 -0110000111 AB 572 -0110000111 S.p.A. 689 -0110000111 CO. 791 -0110000111 N.V. 837 -0110000111 L.P. 1024 -0110000111 INC. 1046 -0110000111 CORP. 1354 -0110000111 AG 2004 -0110000111 S.A. 2048 -0110000111 Ltd. 9923 -0110000111 PLC 5644 -0110001000 Mcdougall 1 -0110001000 SHINE 1 -0110001000 Pacs 1 -0110001000 Aeradio 1 -0110001000 ANGELES-MCA 1 -0110001000 Lasersonics 1 -0110001000 EDITIONS 1 -0110001000 Transmissie 1 -0110001000 IMPORT-EXPORT 1 -0110001000 Functioning 1 -0110001000 Chemsecurities 1 -0110001000 Zien 1 -0110001000 Equitities 1 -0110001000 Skadium 1 -0110001000 Phenolics 1 -0110001000 Manufactory 1 -0110001000 Bank/WPG 1 -0110001000 Droops 1 -0110001000 ASSISTANCE 1 -0110001000 INTERTECHNOLOGY 1 -0110001000 Preschools 1 -0110001000 ROBARD 1 -0110001000 LP1 1 -0110001000 Mangement 1 -0110001000 Na-Con 1 -0110001000 WORLDPASS 1 -0110001000 Baskett 1 -0110001000 Inc.-Intervest 1 -0110001000 XP1 1 -0110001000 HOST 1 -0110001000 GAETANO 1 -0110001000 Biases 1 -0110001000 Broking 1 -0110001000 Hairgoods 1 -0110001000 Cooperativa 1 -0110001000 Magni-Viewer 1 -0110001000 Aerotronics 1 -0110001000 Finanziarie 1 -0110001000 Sintonia 1 -0110001000 Combinat 1 -0110001000 Victuallers 1 -0110001000 Lexicography 1 -0110001000 MicroFab 1 -0110001000 Vulcanite 1 -0110001000 Freighters 1 -0110001000 1960-74 1 -0110001000 Sytems 1 -0110001000 Oljeselskap 1 -0110001000 Line-Westours 1 -0110001000 Angleterre 1 -0110001000 Factors/Industrial 1 -0110001000 var. 1 -0110001000 lueddemanniana 1 -0110001000 Grower 1 -0110001000 Halfords 1 -0110001000 EAP 1 -0110001000 Behbehani 1 -0110001000 Polymorphisms 1 -0110001000 ASSSOCIATION 1 -0110001000 Raffle 1 -0110001000 Vincit 1 -0110001000 T-Line 1 -0110001000 SafeTec 1 -0110001000 PNEUMATIC 1 -0110001000 Telekurs 1 -0110001000 Allied/Imaging 1 -0110001000 MULTIFOODS 1 -0110001000 ORGAN 1 -0110001000 Kueisen 1 -0110001000 Sanctae 1 -0110001000 Boissiers 1 -0110001000 KISEN 1 -0110001000 Gellert 1 -0110001000 LAMBORGHINI 1 -0110001000 17333 1 -0110001000 Enlist 1 -0110001000 KEEGAN 1 -0110001000 Bancorps 1 -0110001000 MARREL 1 -0110001000 Delinquent 1 -0110001000 Intenational 1 -0110001000 CONVERTIBLES 1 -0110001000 chicken-restaurant 1 -0110001000 Stylist 1 -0110001000 MCDOUGAL 1 -0110001000 Tolerances 1 -0110001000 NOALL 1 -0110001000 Privatizer 1 -0110001000 Moralist 1 -0110001000 Shares-led 1 -0110001000 Abramowicz. 1 -0110001000 DWELLERS 1 -0110001000 Clamps. 1 -0110001000 Disgusting 1 -0110001000 Inc./Weather 1 -0110001000 BANKNOTE 1 -0110001000 Olie-Kompagniet 1 -0110001000 BARN 1 -0110001000 Industrieholding 1 -0110001000 Plansee 1 -0110001000 CRAFT 1 -0110001000 TVT 1 -0110001000 Rejser 1 -0110001000 ACRES 1 -0110001000 Tissues 1 -0110001000 Alessi 1 -0110001000 Marionettes 1 -0110001000 Industriales 1 -0110001000 Matignon 1 -0110001000 Charlsworth 1 -0110001000 Impairment 1 -0110001000 Pacering 1 -0110001000 AMUSEMENTS 1 -0110001000 VERSICHERUNGS-GESELLSCHAFT 1 -0110001000 WAERTSILAE 1 -0110001000 Limpo 1 -0110001000 Drummonds 1 -0110001000 Gilardini 1 -0110001000 AirTech 1 -0110001000 co-designed 1 -0110001000 Toyosaki 1 -0110001000 Airtrade 1 -0110001000 Griesheim 1 -0110001000 Buillding 1 -0110001000 Kullagerfabriken 1 -0110001000 Stal 1 -0110001000 Chalet 1 -0110001000 Keepsakes 1 -0110001000 Holtzbrink 1 -0110001000 Gems/CST 1 -0110001000 Nelya 1 -0110001000 Services/PSA 1 -0110001000 CLICQUOT 1 -0110001000 Tankrederi 1 -0110001000 9:45/ 1 -0110001000 BIOLOGICS 1 -0110001000 Fertilizers 1 -0110001000 WHEELER 1 -0110001000 Cabinetry 1 -0110001000 BancGroup 1 -0110001000 Instrumente 1 -0110001000 PETERS 1 -0110001000 chicken-line 1 -0110001000 Fakes 1 -0110001000 Incotel 1 -0110001000 Tikes 1 -0110001000 Laboratorium 1 -0110001000 Pewter 1 -0110001000 Dwyers 1 -0110001000 silence. 1 -0110001000 CONWAY 1 -0110001000 Telephonics 1 -0110001000 Nabsico 1 -0110001000 Weeklies 1 -0110001000 Florestais 1 -0110001000 Superstore 1 -0110001000 Lijnen 1 -0110001000 Beaters 1 -0110001000 DISPENSING 1 -0110001000 Ieteren 1 -0110001000 OEL 1 -0110001000 Sumat 1 -0110001000 Strategic-Europe 1 -0110001000 Nathan-Bond 1 -0110001000 Bottelmaatschappij 1 -0110001000 EMPORIUM 1 -0110001000 Gilsbar 1 -0110001000 Datebook 1 -0110001000 Sternau 1 -0110001000 MIDDENSTANDSBANK 1 -0110001000 STAHL 1 -0110001000 nauticas 1 -0110001000 Turbocharger 1 -0110001000 Sarget 1 -0110001000 VW-BMW 1 -0110001000 Flutes 1 -0110001000 Parenterals 1 -0110001000 Napkins 1 -0110001000 Autographs 1 -0110001000 Network. 1 -0110001000 Mecaniques 1 -0110001000 Sogeti 1 -0110001000 CONVENIENCE 1 -0110001000 VCD2-47/48 1 -0110001000 Loreto 1 -0110001000 Technlogy 1 -0110001000 Parnters 1 -0110001000 Fjerfabric 1 -0110001000 BankShares 1 -0110001000 VERKEHRS-KREDIT-BANK 1 -0110001000 Nutzfahrzeuge 1 -0110001000 20002 1 -0110001000 Billerud 1 -0110001000 FEDERATION 1 -0110001000 Kuei-sen 1 -0110001000 tments 1 -0110001000 Bookmakers 1 -0110001000 Masten 1 -0110001000 Datatech 1 -0110001000 CELANESE 1 -0110001000 Elektronik 1 -0110001000 Loisirs 1 -0110001000 HEALTHCORP 1 -0110001000 SUBSCRIBER 1 -0110001000 Accurcast 1 -0110001000 Perchdale 1 -0110001000 Half-man 1 -0110001000 Crisps 1 -0110001000 Tel-Com 1 -0110001000 0.247 1 -0110001000 0.687 1 -0110001000 Co.-Texaco 1 -0110001000 RICCI 1 -0110001000 Brot 1 -0110001000 Overand 1 -0110001000 Capodimonte 1 -0110001000 Vivigen 1 -0110001000 Steenkoolmijnen 1 -0110001000 Moviles 1 -0110001000 Centerfold 1 -0110001000 Aftermarkets 1 -0110001000 Knits 1 -0110001000 Teleinvest 1 -0110001000 Drug-Valda 1 -0110001000 Spring/Togo 1 -0110001000 Beteiligungsgesellschaft 1 -0110001000 Messtechnik 1 -0110001000 Neurotron 1 -0110001000 Hemorrhage 1 -0110001000 Luftfahrt 1 -0110001000 Gentofte 1 -0110001000 Impex 1 -0110001000 Exitosa 1 -0110001000 Exportkredit 1 -0110001000 AIRCRAFT 1 -0110001000 GRX 1 -0110001000 Grabber 1 -0110001000 JACUZZI 1 -0110001000 GABLE 1 -0110001000 Services/Japan 1 -0110001000 Electrizitaetswerke 1 -0110001000 Tiofine 1 -0110001000 KOEKI 1 -0110001000 Tankships 1 -0110001000 UNABLE 1 -0110001000 Post-Summit 1 -0110001000 Imput 1 -0110001000 Elektrizitatswerk 1 -0110001000 Eckrich 1 -0110001000 Taurio 1 -0110001000 Campground 1 -0110001000 Holdings> 1 -0110001000 Telemetries 1 -0110001000 ultrasonic-products 1 -0110001000 EPSON 1 -0110001000 Beaujon 1 -0110001000 uninspected 1 -0110001000 Carbonara 1 -0110001000 Taino 1 -0110001000 Inc./Films 1 -0110001000 CANYON 1 -0110001000 Eyewear 1 -0110001000 Buromaschinen 1 -0110001000 STATIONERS 1 -0110001000 SHINPAN 1 -0110001000 Defensa 1 -0110001000 Sues 1 -0110001000 SEIKI 1 -0110001000 Eldor 1 -0110001000 MID-AMERICA 1 -0110001000 UNDERSTAND 1 -0110001000 Zilog 1 -0110001000 Opthalmic 1 -0110001000 LUKENS 2 -0110001000 TOOLWORKS 2 -0110001000 CASUALTY 2 -0110001000 RECEIVABLES 2 -0110001000 Computations 2 -0110001000 Caterers 2 -0110001000 Chrysotile 2 -0110001000 Arouse 2 -0110001000 Flugdienst 2 -0110001000 Sportwear 2 -0110001000 Tecnologia 2 -0110001000 GENERICS 2 -0110001000 FREIGHTWAYS 2 -0110001000 Momus 2 -0110001000 WOULDN 2 -0110001000 APPAREL 2 -0110001000 Ratio 2 -0110001000 HOSTENCH 2 -0110001000 BIOCHEM 2 -0110001000 Saban 2 -0110001000 Enteprises 2 -0110001000 BELGE 2 -0110001000 Getriebe 2 -0110001000 EQUITIES 2 -0110001000 Murox 2 -0110001000 PRODUCTIONS 2 -0110001000 CINEMA 2 -0110001000 Dirac 2 -0110001000 JOURNALS 2 -0110001000 INTERGROUP 2 -0110001000 FREIGHT 2 -0110001000 Newyork 2 -0110001000 Analyzers 2 -0110001000 Phosphate 2 -0110001000 COMPARE 2 -0110001000 Tessile 2 -0110001000 Jugglers 2 -0110001000 Tampella 2 -0110001000 Celulosa 2 -0110001000 Databank 2 -0110001000 Diode 2 -0110001000 CARBON 2 -0110001000 DESIGNS 2 -0110001000 Copysystems 2 -0110001000 SHIPYARDS 2 -0110001000 Resuscitator 2 -0110001000 Nonviolence 2 -0110001000 REGISTER 2 -0110001000 MERCHANDISE 2 -0110001000 Batignolles 2 -0110001000 Gyro 2 -0110001000 LEU 2 -0110001000 Hana-Maui 2 -0110001000 Tri-View 2 -0110001000 MFG. 2 -0110001000 BOTTLING 2 -0110001000 Exploracion 2 -0110001000 CITIES/ABC 2 -0110001000 GENOSSENSCHAFTS 2 -0110001000 Santan 2 -0110001000 Transparencies 2 -0110001000 REFINING 2 -0110001000 Dispensary 2 -0110001000 CAMP 2 -0110001000 PRINTERS 2 -0110001000 Laminators 2 -0110001000 Services. 2 -0110001000 R.V. 2 -0110001000 Pessimistic 2 -0110001000 Instrumentation 2 -0110001000 Husbandry 2 -0110001000 FORTE 2 -0110001000 Neurosciences 2 -0110001000 Vendomes 2 -0110001000 Plumbingware 2 -0110001000 Seisakusyo 2 -0110001000 INSTRUMENT 2 -0110001000 NUTS 2 -0110001000 ESTABLISSEMENTS 2 -0110001000 GYPSUM 2 -0110001000 Anglers/3M 2 -0110001000 Financeiros 2 -0110001000 Ridesharing 2 -0110001000 FUELS 2 -0110001000 Resins 2 -0110001000 Cams 2 -0110001000 Biogenics 2 -0110001000 Lavigne 2 -0110001000 Aliment 2 -0110001000 Audiotex 2 -0110001000 BREWERY 2 -0110001000 RESTAURANT 2 -0110001000 Venceremos 2 -0110001000 Stables 2 -0110001000 Sasoned 2 -0110001000 KWONG 2 -0110001000 Riconstruzione 2 -0110001000 MEMORIES 2 -0110001000 Cliquot 2 -0110001000 Delancey 2 -0110001000 DUNLOP 2 -0110001000 GREETINGS 2 -0110001000 SHOES 2 -0110001000 Landfill 2 -0110001000 BINDING 2 -0110001000 Petcord 2 -0110001000 HILLS 2 -0110001000 ROMEO 2 -0110001000 Beausejour 2 -0110001000 Duplication 2 -0110001000 Imex 2 -0110001000 Sevices 2 -0110001000 Staniswalis 2 -0110001000 Metanopoli 2 -0110001000 PAINT 2 -0110001000 Crewmembers 3 -0110001000 QUARTERLY 3 -0110001000 Printer 3 -0110001000 Eyeworks 3 -0110001000 KAISHA 3 -0110001000 Displays 3 -0110001000 Eyecare 3 -0110001000 Ferroviaria 3 -0110001000 Produkten 3 -0110001000 Wira 3 -0110001000 Guan 3 -0110001000 AUTOMATION 3 -0110001000 ACCEPTANCE 3 -0110001000 PGH 3 -0110001000 Compo 3 -0110001000 Glow 3 -0110001000 Group/Business 3 -0110001000 Wallcoverings 3 -0110001000 JEWELERS 3 -0110001000 INSTITUTE 3 -0110001000 Oceanics 3 -0110001000 SHOPS 3 -0110001000 Manors 3 -0110001000 Bruk 3 -0110001000 CAV 3 -0110001000 LABS 3 -0110001000 TELE-COMMUNICATIONS 3 -0110001000 Tricks 3 -0110001000 Elastomers 3 -0110001000 Terminus 3 -0110001000 Britches 3 -0110001000 SULZER 3 -0110001000 McGlynn 3 -0110001000 TRACE 3 -0110001000 NOKIA 3 -0110001000 Biosciences 3 -0110001000 Sequence 3 -0110001000 VENTURES 3 -0110001000 ETABLISSEMENTS 3 -0110001000 Miniere 3 -0110001000 Filmpartners 3 -0110001000 Couriers 3 -0110001000 Epicure 3 -0110001000 Tectonics 3 -0110001000 Placering 3 -0110001000 CANNON 3 -0110001000 Kraayenhof 3 -0110001000 ORGANISATION 3 -0110001000 HOUSES 3 -0110001000 RECTIFIER 3 -0110001000 Siderurgica 3 -0110001000 ZDS 3 -0110001000 Boelkow-Blohm 3 -0110001000 Centres 3 -0110001000 LYONS 3 -0110001000 Consort 3 -0110001000 Nickless 3 -0110001000 Coordinators 4 -0110001000 Editori 4 -0110001000 Petroli 4 -0110001000 GEMINI 4 -0110001000 Internacional 4 -0110001000 Piedboeuf 4 -0110001000 FORMS 4 -0110001000 PUBLICATIONS 4 -0110001000 Chrome 4 -0110001000 Snatchers 4 -0110001000 Jetprop 4 -0110001000 Recostruzione 4 -0110001000 Brasileiro 4 -0110001000 XL 4 -0110001000 Busters 4 -0110001000 Teknika 4 -0110001000 Sacilor 4 -0110001000 Pitfield 4 -0110001000 SCHERER 4 -0110001000 TOYS 4 -0110001000 BOX 4 -0110001000 CONTAINER 4 -0110001000 SCIENCE 4 -0110001000 Systemes 4 -0110001000 Bissonnet 4 -0110001000 Trattori 4 -0110001000 Mantha 4 -0110001000 Easson 4 -0110001000 LYONNAIS 4 -0110001000 SHOWBOAT 4 -0110001000 NEECO 4 -0110001000 Consultancy 4 -0110001000 Industriels 4 -0110001000 Moderne 4 -0110001000 Finanzaria 4 -0110001000 Transform 4 -0110001000 DIAL 4 -0110001000 Surfaces 4 -0110001000 Hi-Fi 4 -0110001000 BUREAU 4 -0110001000 Feud 4 -0110001000 MICROSYSTEMS 4 -0110001000 Int 4 -0110001000 Cleaners 4 -0110001000 Interbrew 4 -0110001000 Amylaces 4 -0110001000 FUNDING 4 -0110001000 BOSCH 4 -0110001000 Backlot 4 -0110001000 FURNITURE 4 -0110001000 SUCHARD 5 -0110001000 BREWERIES 5 -0110001000 Partecipazioni 5 -0110001000 Silex 5 -0110001000 Lumber-Southwest 5 -0110001000 Clicquot 5 -0110001000 INSURANCES 5 -0110001000 Conseil 5 -0110001000 Bancorporation 5 -0110001000 MACHINERY 5 -0110001000 AVIATION 5 -0110001000 Vending 5 -0110001000 Subsidiary 5 -0110001000 DEALERS 5 -0110001000 BREWING 5 -0110001000 CONSTRUCTION 5 -0110001000 AFFILIATES 5 -0110001000 Buffets 5 -0110001000 SEMICONDUCTOR 5 -0110001000 TRANSMISSION 5 -0110001000 Mate 5 -0110001000 Warehouses 5 -0110001000 Caribe 5 -0110001000 GOODS 5 -0110001000 Petroleums 5 -0110001000 Gouinlock 5 -0110001000 Directive 5 -0110001000 DRILLING 5 -0110001000 Basford 5 -0110001000 DEVICES 5 -0110001000 RIUNITE 5 -0110001000 DYNAMICS 5 -0110001000 Candies 5 -0110001000 INNS 5 -0110001000 Logicals 5 -0110001000 Bookstores 5 -0110001000 Alloys 5 -0110001000 Foundry 5 -0110001000 TRUCKS 5 -0110001000 CENTERS 5 -0110001000 BERISFORD 5 -0110001000 BORDEN 6 -0110001000 Capades 6 -0110001000 Versicherungs 6 -0110001000 Industritillbehor 6 -0110001000 Afield 6 -0110001000 SCIENTIFIC 6 -0110001000 MATERIALS 6 -0110001000 ILLUMINATING 6 -0110001000 CARBIDE 6 -0110001000 ALUMINIUM 6 -0110001000 Marts 6 -0110001000 PHARMACEUTICAL 6 -0110001000 Electrique 6 -0110001000 GROEP 6 -0110001000 Chemcat 6 -0110001000 Shoppe 6 -0110001000 CHALLENGE 6 -0110001000 Biotechnologies 6 -0110001000 SUPPLY 7 -0110001000 TASMAN 7 -0110001000 MCDOUGALL 7 -0110001000 Stamping 7 -0110001000 Cellulosa 7 -0110001000 Cruiser 7 -0110001000 Germe 7 -0110001000 I/O 7 -0110001000 LIGHTING 7 -0110001000 Glaris 7 -0110001000 Furs 7 -0110001000 EDDIE 7 -0110001000 HAVAS 7 -0110001000 Norge 7 -0110001000 Verlag 7 -0110001000 SHARES 7 -0110001000 DOUGLAS 7 -0110001000 Measurements 7 -0110001000 Muenchen 8 -0110001000 Structures 8 -0110001000 LEASING 8 -0110001000 PHARMACEUTICALS 8 -0110001000 HOVIS 8 -0110001000 COAL 8 -0110001000 Aids 8 -0110001000 NAZIONALE 8 -0110001000 Qualcast 8 -0110001000 Planner 8 -0110001000 McMuffin 8 -0110001000 Galore 8 -0110001000 Shinko 8 -0110001000 Versicherung 8 -0110001000 Nasional 8 -0110001000 PICTURES 8 -0110001000 GRAPHICS 8 -0110001000 Ranches 8 -0110001000 Profiles 8 -0110001000 SIGNAL 9 -0110001000 QUALCAST 9 -0110001000 STEAMSHIP 9 -0110001000 AREN 9 -0110001000 HYDRO 9 -0110001000 Laval 9 -0110001000 Biochem 9 -0110001000 Catolica 9 -0110001000 COMMUNICATION 9 -0110001000 Fibers 9 -0110001000 Phillips/Copus 9 -0110001000 Kaisha 9 -0110001000 ASSURANCE 9 -0110001000 Dames 9 -0110001000 Hamlets 9 -0110001000 Shirts 9 -0110001000 WORKS 9 -0110001000 Handyman 10 -0110001000 Rebuilders 10 -0110001000 Fondkommission 10 -0110001000 SOCIETY 10 -0110001000 Toolworks 10 -0110001000 Tile 10 -0110001000 Homecare 10 -0110001000 BANKSHARES 10 -0110001000 FINANCE 10 -0110001000 Generics 10 -0110001000 MANUFACTURING 11 -0110001000 Monitors 11 -0110001000 AirFreight 11 -0110001000 EQUIPMENT 11 -0110001000 Insurances 11 -0110001000 Pharma 11 -0110001000 LAMBERT 11 -0110001000 NABISCO 11 -0110001000 GENERALI 11 -0110001000 Aviazione 11 -0110001000 Bran 11 -0110001000 Coatings 11 -0110001000 Sterilizers 12 -0110001000 Explorations 12 -0110001000 Elektrizitaetswerk 12 -0110001000 NETWORK 12 -0110001000 Leclerc 12 -0110001000 MILLS 12 -0110001000 Substances 12 -0110001000 BANCSHARES 13 -0110001000 Display 13 -0110001000 E&P 13 -0110001000 Tankers 13 -0110001000 RESEARCH 13 -0110001000 MARKETS 13 -0110001000 Experiment 13 -0110001000 Comics 13 -0110001000 OR 13 -0110001000 Pools 14 -0110001000 Optics 14 -0110001000 Theaters 14 -0110001000 Polymers 14 -0110001000 Groep 14 -0110001000 Perspectives 14 -0110001000 ELECTRIQUE 14 -0110001000 MACHINES 14 -0110001000 LABORATORIES 15 -0110001000 Appliances 15 -0110001000 Zosen 15 -0110001000 EXPLORATION 15 -0110001000 MINES 15 -0110001000 FINANZIARIA 16 -0110001000 Estates 16 -0110001000 Boxes 16 -0110001000 BioSciences 16 -0110001000 Device 16 -0110001000 BRANDS 16 -0110001000 Processors 16 -0110001000 BROTHERS 17 -0110001000 Procedure 17 -0110001000 Helicopters 17 -0110001000 Sverige 17 -0110001000 Merchandising 18 -0110001000 Fashions 18 -0110001000 LINE 19 -0110001000 Beverages 20 -0110001000 PROPERTIES 20 -0110001000 Nylex 20 -0110001000 Hospitality 20 -0110001000 METROPOLITAN 20 -0110001000 PROPRIETARY 20 -0110001000 ASSOCIATES 20 -0110001000 EDISON 20 -0110001000 ESTATE 21 -0110001000 Simulation 21 -0110001000 Terminals 21 -0110001000 Constructors 21 -0110001000 AUSTRALIA 22 -0110001000 HOMES 22 -0110001000 FOODS 22 -0110001000 HOLDING 23 -0110001000 Beaubien 24 -0110001000 ELECTRONICS 24 -0110001000 Printers 24 -0110001000 Dairies 24 -0110001000 Cinemas 25 -0110001000 Lanes 25 -0110001000 Handling 25 -0110001000 UTILITIES 25 -0110001000 Energies 25 -0110001000 MINING 26 -0110001000 Diagnostics 26 -0110001000 Unlimited 27 -0110001000 TELEPHONE 27 -0110001000 Lonsdale 28 -0110001000 Packers 28 -0110001000 Jukebox 28 -0110001000 Theatres 28 -0110001000 Italia 28 -0110001000 INVESTMENTS 29 -0110001000 CANADA 29 -0110001000 TECHNOLOGIES 29 -0110001000 Ricostruzione 30 -0110001000 Circuits 30 -0110001000 BANKING 30 -0110001000 Wattie 30 -0110001000 Superstores 30 -0110001000 PRODUCTS 31 -0110001000 Solutions 31 -0110001000 Dimensions 32 -0110001000 Seasonings 32 -0110001000 Telecharge 32 -0110001000 PARTNERS 33 -0110001000 Consoles 33 -0110001000 Allsopp 33 -0110001000 INDUSTRIAL 33 -0110001000 DEVELOPMENT 33 -0110001000 Peripherals 34 -0110001000 ENTERPRISES 35 -0110001000 Watchers 36 -0110001000 SECURITIES 36 -0110001000 SERVICES 37 -0110001000 INVESTMENT 37 -0110001000 Specialties 37 -0110001000 Fuels 39 -0110001000 SERVICE 40 -0110001000 Architects 40 -0110001000 Stations 40 -0110001000 Cosmetics 40 -0110001000 Vineyards 40 -0110001000 Cafeterias 41 -0110001000 Tools 42 -0110001000 FUND 42 -0110001000 Shops 42 -0110001000 TECHNOLOGY 43 -0110001000 MOTORS 43 -0110001000 CAPITAL 44 -0110001000 Organisation 45 -0110001000 STORES 45 -0110001000 Mart 48 -0110001000 Mahon 48 -0110001000 COMMUNICATIONS 49 -0110001000 CHEMICAL 50 -0110001000 Breweries 51 -0110001000 STEEL 51 -0110001000 INSURANCE 52 -0110001000 Switch 53 -0110001000 Engines 54 -0110001000 Trucks 55 -0110001000 Draft 57 -0110001000 SYSTEMS 57 -0110001000 Scanning 57 -0110001000 RESOURCES 58 -0110001000 Cream 59 -0110001000 Components 60 -0110001000 Boat 63 -0110001000 Trades 64 -0110001000 Barn 65 -0110001000 Illustrated 67 -0110001000 Shack 69 -0110001000 Networks 70 -0110001000 Distributors 70 -0110001000 Ludlum 71 -0110001000 Concepts 72 -0110001000 Strategies 73 -0110001000 Italiana 82 -0110001000 Hut 87 -0110001000 Warehouse 88 -0110001000 Goods 89 -0110001000 Hovis 92 -0110001000 Processing 93 -0110001000 FINANCIAL 94 -0110001000 Affiliates 97 -0110001000 Containers 98 -0110001000 Bankshares 99 -0110001000 Treatment 102 -0110001000 Assistance 104 -0110001000 Factors 116 -0110001000 HOLDINGS 116 -0110001000 Finanziaria 117 -0110001000 Tape 118 -0110001000 Restaurants 125 -0110001000 ELECTRIC 127 -0110001000 Cars 130 -0110001000 Schweppes 131 -0110001000 MOTOR 135 -0110001000 IXL 140 -0110001000 Labs 151 -0110001000 Hathaway 159 -0110001000 Conversion 169 -0110001000 Card 169 -0110001000 INTERNATIONAL 176 -0110001000 INDUSTRIES 188 -0110001000 Devices 196 -0110001000 BANK 206 -0110001000 Advisors 215 -0110001000 Memories 220 -0110001000 Newspapers 233 -0110001000 Ventures 245 -0110001000 Productions 247 -0110001000 Farms 250 -0110001000 Graphics 258 -0110001000 Controls 259 -0110001000 Books 269 -0110001000 Publications 287 -0110001000 Chemicals 340 -0110001000 Estate 360 -0110001000 GROUP 362 -0110001000 Hotels 362 -0110001000 Works 376 -0110001000 Microsystems 378 -0110001000 Equities 381 -0110001000 MORTGAGE 415 -0110001000 Properties 447 -0110001000 Investments 771 -0110001000 Pictures 801 -0110001000 Laboratories 870 -0110001000 Network 1048 -0110001000 Enterprises 1256 -0110001000 Products 1538 -0110001000 Partners 2326 -0110001000 Resources 2423 -0110001000 Associates 2565 -0110001000 Holdings 2803 -0110001000 Systems 3592 -0110001000 Services 3652 -0110001000 Group 12198 -0110001000 Service 5678 -011000100100 Broacasting 1 -011000100100 Telgraph 1 -011000100100 Unisupply 1 -011000100100 Matsuyadenki 1 -011000100100 Floridin 1 -011000100100 ElectroSystems 1 -011000100100 9-Criminal 1 -011000100100 Coinco 1 -011000100100 Trachem 1 -011000100100 Wallcovering 1 -011000100100 B.F.Goodrich 1 -011000100100 Whisky 1 -011000100100 Snail 1 -011000100100 Sargent-Fletcher 1 -011000100100 Adorence 1 -011000100100 Wealthiload 1 -011000100100 Cartridge 1 -011000100100 Virtis 1 -011000100100 Toei 1 -011000100100 Varnish 1 -011000100100 Harvestor 1 -011000100100 Livelihood 1 -011000100100 Diener/Hauser/Bates 1 -011000100100 MONTAGU 1 -011000100100 Exchanger 1 -011000100100 Foodstuffs 1 -011000100100 Obion 1 -011000100100 Shokubai 1 -011000100100 Daishinpan 1 -011000100100 Triest 1 -011000100100 Elecric 1 -011000100100 Siedlungs-und 1 -011000100100 Dic-Degremont 1 -011000100100 Mills-Jennings 1 -011000100100 Alum 1 -011000100100 Marsman 1 -011000100100 Batiment 1 -011000100100 music-store-chain 1 -011000100100 Seiren 1 -011000100100 Uny 1 -011000100100 Telegragh 1 -011000100100 Lithographing 1 -011000100100 Seimitsu 1 -011000100100 Copal 1 -011000100100 Durion 1 -011000100100 Casulty 1 -011000100100 Spound 1 -011000100100 ALBERTO-CULVER 1 -011000100100 SINGER 1 -011000100100 Metrecs 1 -011000100100 Terminaling 1 -011000100100 Forfaiting 1 -011000100100 DERRICK 1 -011000100100 Pont-GM 1 -011000100100 Shogi 1 -011000100100 Phamaceuticals 1 -011000100100 Refrigerating 1 -011000100100 Fretay 1 -011000100100 Skim 1 -011000100100 Melott 1 -011000100100 Industriebeteiligungen 1 -011000100100 Glassmaster 1 -011000100100 Daishinku 1 -011000100100 Senshukai 1 -011000100100 SEAL 1 -011000100100 Kirjapaino 1 -011000100100 Pont-Toray 1 -011000100100 Amerinvest 1 -011000100100 Guerillas 1 -011000100100 Sherwin-William 1 -011000100100 Lathe 1 -011000100100 Katke 1 -011000100100 News/ 1 -011000100100 HEWLETT-PACKARD 1 -011000100100 Panoramex 1 -011000100100 D-Con 1 -011000100100 Siedlungsund 1 -011000100100 Buttes 2 -011000100100 Insitute 2 -011000100100 Bedding 2 -011000100100 Meatpacking 2 -011000100100 Horticultural 2 -011000100100 Cocoa-Gerkens 2 -011000100100 Faucet 2 -011000100100 Participacoes 2 -011000100100 Embroidery 2 -011000100100 Wile 2 -011000100100 Utilites 2 -011000100100 Assemblers 2 -011000100100 Coils 2 -011000100100 Forgings 2 -011000100100 Obligation/Matching 2 -011000100100 com 2 -011000100100 Cashew 2 -011000100100 Herter 2 -011000100100 Non-Fiction 2 -011000100100 Electrosystems 2 -011000100100 Inupiat 2 -011000100100 Decorating 2 -011000100100 Toatsu 2 -011000100100 Shigyo 2 -011000100100 Noritake 2 -011000100100 Axle 2 -011000100100 Slush 2 -011000100100 Leakless 2 -011000100100 Avionic 2 -011000100100 Latex 2 -011000100100 Boyeki 2 -011000100100 Kikaku 3 -011000100100 Utilities-case 3 -011000100100 Rayon 3 -011000100100 Convoy 3 -011000100100 Reiki 3 -011000100100 Lithograph 3 -011000100100 Rigging 3 -011000100100 Hauling 3 -011000100100 Flesch 3 -011000100100 Hydroelectric 3 -011000100100 Electrochemical 3 -011000100100 Casket 3 -011000100100 Adhesives 3 -011000100100 XX 3 -011000100100 Implement 3 -011000100100 Atomics 3 -011000100100 Paints 4 -011000100100 Shinpan 4 -011000100100 Ribbons 4 -011000100100 Refurbishing 4 -011000100100 Croson 4 -011000100100 Gravel 4 -011000100100 Motorcars 4 -011000100100 Abrasives 4 -011000100100 Mortage 4 -011000100100 Drydock 4 -011000100100 Boatbuilding 4 -011000100100 PRODUCING 4 -011000100100 Kredit 5 -011000100100 Kisen 5 -011000100100 Catamaran 5 -011000100100 Wig 5 -011000100100 Mosby 5 -011000100100 Novelty 5 -011000100100 Warranty 6 -011000100100 Jai 6 -011000100100 Hydro-Electric 6 -011000100100 Bulb 6 -011000100100 Kosan 6 -011000100100 Chocolat 6 -011000100100 Squares 6 -011000100100 Lace 6 -011000100100 Heminway 6 -011000100100 Vertol 7 -011000100100 Fabricating 7 -011000100100 Mold 7 -011000100100 Poly 7 -011000100100 Forklift 7 -011000100100 Bancwest 7 -011000100100 Reassurance 7 -011000100100 Wrecking 8 -011000100100 Cables 8 -011000100100 Ticonderoga 8 -011000100100 Masonry 8 -011000100100 Sausage 8 -011000100100 Castings 8 -011000100100 RUBBER 9 -011000100100 Refrigeration 9 -011000100100 Bottlers 10 -011000100100 TELEGRAPH 10 -011000100100 Indicator 10 -011000100100 Foam 10 -011000100100 Importing 10 -011000100100 Flavors 11 -011000100100 Kiki 11 -011000100100 Scale 11 -011000100100 Sangyo 12 -011000100100 Shirt 12 -011000100100 Skiing 12 -011000100100 Seating 12 -011000100100 Elevator 13 -011000100100 Smelting 14 -011000100100 Denki 16 -011000100100 SAMUEL 16 -011000100100 Valve 17 -011000100100 Fibre 19 -011000100100 Plug 19 -011000100100 Seiyaku 19 -011000100100 Pump 19 -011000100100 Biscuit 20 -011000100100 Organ 20 -011000100100 Goldfields 21 -011000100100 Avionics 23 -011000100100 Stainless 24 -011000100100 Banknote 24 -011000100100 Cheese 25 -011000100100 Tube 25 -011000100100 Astronautics 27 -011000100100 Shareowner 28 -011000100100 Bioscience 28 -011000100100 Surety 28 -011000100100 Pattern 28 -011000100100 Distributing 29 -011000100100 Seed 29 -011000100100 Bakeries 29 -011000100100 Partner 30 -011000100100 Packing 33 -011000100100 Baking 33 -011000100100 Petrochemical 35 -011000100100 Harvester 36 -011000100100 Metallurgical 36 -011000100100 BioScience 39 -011000100100 Kogyo 40 -011000100100 Cooler 41 -011000100100 Paint 42 -011000100100 Physics 42 -011000100100 Indemnity 46 -011000100100 Brass 47 -011000100100 Refractories 59 -011000100100 Fitness 60 -011000100100 Steamship 61 -011000100100 Dock 61 -011000100100 Illuminating 69 -011000100100 Accident 72 -011000100100 Airplane 73 -011000100100 Reinsurance 77 -011000100100 Gypsum 83 -011000100100 Nutrition 85 -011000100100 Proprietary 89 -011000100100 Bottling 98 -011000100100 Cascade 99 -011000100100 Wire 104 -011000100100 Wine 110 -011000100100 Cement 114 -011000100100 Machinery 116 -011000100100 Oats 145 -011000100100 Furniture 160 -011000100100 Transmission 165 -011000100100 Refining 169 -011000100100 Drilling 176 -011000100100 Instrument 178 -011000100100 Soup 179 -011000100100 Brewing 180 -011000100100 Tool 187 -011000100100 Trustco 218 -011000100100 Signal 233 -011000100100 Pipeline 258 -011000100100 Leasing 272 -011000100100 Lighting 277 -011000100100 Communication 280 -011000100100 Railroad 293 -011000100100 Casualty 294 -011000100100 Assurance 308 -011000100100 Homes 346 -011000100100 Film 352 -011000100100 Pharmaceutical 366 -011000100100 Minerals 392 -011000100100 Aluminum 393 -011000100100 Exploration 441 -011000100100 Publishing 489 -011000100100 Rubber 518 -011000100100 Aircraft 602 -011000100100 Holding 684 -011000100100 Light 718 -011000100100 Marketing 749 -011000100100 Paper 777 -011000100100 Manufacturing 873 -011000100100 Mining 1004 -011000100100 Telegraph 1077 -011000100100 Edison 1295 -011000100100 Broadcasting 1353 -011000100100 Pont 1432 -011000100100 Steel 2310 -011000100100 Development 2351 -011000100100 Power 2774 -011000100100 Insurance 3770 -011000100100 Electric 4649 -011000100100 Trust 4047 -011000100101 benefitsalso 1 -011000100101 ValueMart 1 -011000100101 Comtek 1 -011000100101 Demachy 1 -011000100101 R.I.N. 1 -011000100101 Outperforms 1 -011000100101 Ahmadi 1 -011000100101 Chronotis 1 -011000100101 Parametrics 1 -011000100101 Sydom 1 -011000100101 Goldberg-like 1 -011000100101 Bouzet 1 -011000100101 Beefheart 1 -011000100101 EO 1 -011000100101 Electrico 1 -011000100101 carpettile 1 -011000100101 Life-Shearson 1 -011000100101 Kogya 1 -011000100101 Stepstone 1 -011000100101 lieber 1 -011000100101 Monceau 1 -011000100101 Aktielselskab 1 -011000100101 Amurcon 1 -011000100101 Cloutier 1 -011000100101 Torq 1 -011000100101 Kokusaku 1 -011000100101 Catamount 1 -011000100101 Terrorisme 1 -011000100101 Industries/Knoll 1 -011000100101 CARRIERS 1 -011000100101 Refinance 1 -011000100101 IMPORTING 1 -011000100101 Taylor-Thermos 1 -011000100101 seigneur 1 -011000100101 MUELLER 1 -011000100101 Bramall 1 -011000100101 subdidiary 1 -011000100101 KRUEGER 1 -011000100101 Quitting 1 -011000100101 Acounting 1 -011000100101 Thomas-Memphis 1 -011000100101 Peloux 1 -011000100101 Variazioni 1 -011000100101 Kayaku 1 -011000100101 Ikeya 1 -011000100101 Speleology 1 -011000100101 Runsheng 1 -011000100101 InnoPak 1 -011000100101 bulletineers 1 -011000100101 Croslin 1 -011000100101 Stoppani 1 -011000100101 Yunsheng 1 -011000100101 Psarras 1 -011000100101 Comermex 1 -011000100101 Elfab 1 -011000100101 Suisan 1 -011000100101 Indusries 1 -011000100101 Hustled 1 -011000100101 Photonics 1 -011000100101 Mesnil 1 -011000100101 Crafters 1 -011000100101 Motors-SEC 1 -011000100101 d'Or-based 1 -011000100101 Toit 1 -011000100101 LaserType 1 -011000100101 VI-S 1 -011000100101 Teatr 1 -011000100101 Loblaws 1 -011000100101 Compson 1 -011000100101 Climates 1 -011000100101 Urdc 1 -011000100101 Memtek 1 -011000100101 Truvel 1 -011000100101 Gakko 1 -011000100101 Centron 1 -011000100101 Substructures 1 -011000100101 Toggs 1 -011000100101 Unclear 1 -011000100101 Pharmceutical 1 -011000100101 Assocaition 1 -011000100101 Glico 1 -011000100101 TELEX 1 -011000100101 Corp.-Central 1 -011000100101 Silgan 1 -011000100101 SANSO 1 -011000100101 Berjaya 1 -011000100101 16,114 1 -011000100101 13,318 1 -011000100101 Papes 1 -011000100101 Boozer 1 -011000100101 Kissner-Moran 1 -011000100101 Galtieri 1 -011000100101 Boseki 1 -011000100101 Conferation 1 -011000100101 Detti 1 -011000100101 Iard 1 -011000100101 Informationssysteme 1 -011000100101 McCaskill 1 -011000100101 Atomics/Combustion 1 -011000100101 10,512 1 -011000100101 Unto 1 -011000100101 Hiedegger 1 -011000100101 Tele-Media 1 -011000100101 Finanical 1 -011000100101 CASCADE 1 -011000100101 Machines-compatible 1 -011000100101 Neurex 1 -011000100101 Bimetalicos 1 -011000100101 Disregard 1 -011000100101 Linkages 1 -011000100101 tresor 1 -011000100101 Culea 1 -011000100101 Caseres 1 -011000100101 Corp.-Bendix 1 -011000100101 Barbaud 1 -011000100101 mammies 1 -011000100101 Dynmaics 1 -011000100101 Soldat 1 -011000100101 Dynamics. 1 -011000100101 Tourisme 2 -011000100101 Roaco 2 -011000100101 Spacecab 2 -011000100101 Sert 2 -011000100101 Moda 2 -011000100101 Talese 2 -011000100101 Escan 2 -011000100101 Resou 2 -011000100101 Tree/Morrow 2 -011000100101 Erba 2 -011000100101 Farebox 2 -011000100101 Denso 2 -011000100101 Calaminus 2 -011000100101 Electrics 2 -011000100101 Heavey 2 -011000100101 McLeish 2 -011000100101 Tunneling 2 -011000100101 East/Africa 2 -011000100101 Tastevin 2 -011000100101 Baynes 2 -011000100101 Cardiosystems 2 -011000100101 66-156 2 -011000100101 Jeudi 2 -011000100101 Lestrade 2 -011000100101 Speeds 2 -011000100101 Elson 2 -011000100101 Senso 2 -011000100101 Optimization 2 -011000100101 TELEPICTURES 2 -011000100101 16V 2 -011000100101 Zeon 3 -011000100101 BOT 3 -011000100101 Tresor 3 -011000100101 deBraak 3 -011000100101 Printemps 3 -011000100101 Hodo 3 -011000100101 Picone 3 -011000100101 Negra 3 -011000100101 Rabanne 3 -011000100101 Waterworks 3 -011000100101 Synthetics 3 -011000100101 Hiker 3 -011000100101 Rober 4 -011000100101 GS&B 4 -011000100101 Clutch 4 -011000100101 Curie 4 -011000100101 Cosmetiques 4 -011000100101 Clouseau 4 -011000100101 jour 5 -011000100101 Swerdlow 5 -011000100101 Jour 5 -011000100101 Kogaku 5 -011000100101 Dialogue 5 -011000100101 Brunton 5 -011000100101 STEARNS 6 -011000100101 Sanso 6 -011000100101 Ponts 6 -011000100101 Kasei 6 -011000100101 O.S.K. 6 -011000100101 Secteur 7 -011000100101 Talcott 7 -011000100101 Yusen 7 -011000100101 Forsch 7 -011000100101 Pharmacology 7 -011000100101 Togs 7 -011000100101 Denney 7 -011000100101 Breco 9 -011000100101 Week-related 9 -011000100101 Travail 10 -011000100101 Fudosan 10 -011000100101 Meter 10 -011000100101 Denwa 12 -011000100101 Joist 13 -011000100101 Denshin 13 -011000100101 Raid 13 -011000100101 Viejo 13 -011000100101 Stadler 14 -011000100101 Journals 17 -011000100101 Plessis 18 -011000100101 Binding 18 -011000100101 DataComm 20 -011000100101 Bois 22 -011000100101 Housewares 23 -011000100101 Denko 24 -011000100101 Bureaus 26 -011000100101 Cycle 35 -011000100101 Quotations 41 -011000100101 Quotation 46 -011000100101 Hannifin 51 -011000100101 Felt 51 -011000100101 Electron 57 -011000100101 VII 60 -011000100101 Shipyards 61 -011000100101 Deposits-a 62 -011000100101 Bache 63 -011000100101 Host 91 -011000100101 Kokan 99 -011000100101 Voltage 124 -011000100101 Container 195 -011000100101 Agreement 332 -011000100101 Acceptance 378 -011000100101 Cinema 430 -011000100101 Marietta 475 -011000100101 Accounting 582 -011000100101 Mills 585 -011000100101 Acquisition 606 -011000100101 Dynamics 797 -011000100101 Foods 1220 -011000100101 Machines 1625 -011000100101 Motors 3160 -011000100110 REHABILITATION 1 -011000100110 HOWELL 1 -011000100110 Olufsen 1 -011000100110 BODE 1 -011000100110 Wilcox-designed 1 -011000100110 Azzam 1 -011000100110 Bucuvalas 1 -011000100110 Blinkhorn 1 -011000100110 Kest 1 -011000100110 Armpit 1 -011000100110 KOMMERZIAL 1 -011000100110 GRAINGER 1 -011000100110 Muenchner 1 -011000100110 TENNIS 1 -011000100110 Systems/2 1 -011000100110 SEGREGATION 1 -011000100110 FIGLI 1 -011000100110 Responsiblity 1 -011000100110 Filner 1 -011000100110 Spaceship 1 -011000100110 Mauritz 1 -011000100110 Oide 1 -011000100110 Workstation-2 1 -011000100110 Splinter 1 -011000100110 Reversionary 1 -011000100110 WECHSEL-BANK 1 -011000100110 Bauser 1 -011000100110 Sohne 1 -011000100110 Raiding 1 -011000100110 Thiotos 1 -011000100110 PAYNE 1 -011000100110 dispatchbox 1 -011000100110 Heger 1 -011000100110 Sliva 1 -011000100110 Ostrowski 1 -011000100110 JENRETTE 1 -011000100110 Shelling 1 -011000100110 Hordern 1 -011000100110 Opportunties 1 -011000100110 Vanven 1 -011000100110 casual-wear 1 -011000100110 Gha 1 -011000100110 Zappala 1 -011000100110 Cadenhead 1 -011000100110 Szilard 1 -011000100110 deMilly 1 -011000100110 Recommendation 1 -011000100110 Co.is 1 -011000100110 REILLY 1 -011000100110 Wilcox-built 1 -011000100110 Raketen 1 -011000100110 Relapse 1 -011000100110 COMPOSITES 1 -011000100110 PLATT 1 -011000100110 Mortar 1 -011000100110 Millikin 1 -011000100110 PACKETS 1 -011000100110 Muenchener 1 -011000100110 Insulations 1 -011000100110 Hanover-arranged 1 -011000100110 Caspari 1 -011000100110 Dyce 1 -011000100110 Bedspreads 1 -011000100110 Aidekman 1 -011000100110 Colegrave 1 -011000100110 Erker 1 -011000100110 Westrup 1 -011000100110 Tailors 1 -011000100110 WAKEFIELD 1 -011000100110 Foodie 1 -011000100110 Cunningham-Castegren 1 -011000100110 30:26 1 -011000100110 Kakamura 1 -011000100110 Tetrazzini 1 -011000100110 WORTS 1 -011000100110 TurbinenUnion 1 -011000100110 Zoon 1 -011000100110 Kozin 1 -011000100110 Outfitters 1 -011000100110 Spindle 1 -011000100110 Remainder 1 -011000100110 Vaults 1 -011000100110 Jalkh 1 -011000100110 Anti-Smoking 1 -011000100110 Petroleum-Gas 1 -011000100110 PSYCHOTHERAPY 1 -011000100110 Hanover-led 1 -011000100110 Miselson 1 -011000100110 Huppe 1 -011000100110 REVISITED 1 -011000100110 Viscera 1 -011000100110 Malaspina 1 -011000100110 KNOWLTON 1 -011000100110 Travaux 1 -011000100110 pink-slippers 1 -011000100110 Hollidge 1 -011000100110 NEAVE 1 -011000100110 Serasin 1 -011000100110 Casterline 1 -011000100110 Clubhouse 1 -011000100110 Live-Stock 1 -011000100110 Herfurth 1 -011000100110 Airpower 1 -011000100110 2,628 1 -011000100110 Forsters 1 -011000100110 FILS 1 -011000100110 BLOW 1 -011000100110 Reserved 1 -011000100110 Grenard 1 -011000100110 Fils 1 -011000100110 Bodyworks 1 -011000100110 Kattus 1 -011000100110 Caregivers 1 -011000100110 Landstreet 1 -011000100110 Isolde. 1 -011000100110 Schab 1 -011000100110 Implements 1 -011000100110 Qualities 1 -011000100110 Corp.-Time 1 -011000100110 Beekeeping 1 -011000100110 Chewy 1 -011000100110 Batch 1 -011000100110 LABATT 1 -011000100110 Boraine 1 -011000100110 Ponsbach 1 -011000100110 Schuster/CATO 1 -011000100110 Karras 1 -011000100110 Fizzell 1 -011000100110 832448-2 1 -011000100110 SURGEON 1 -011000100110 Rubber> 1 -011000100110 OAK 1 -011000100110 BARGE 1 -011000100110 Propone 1 -011000100110 Billionaires 1 -011000100110 Eckhardt/Poppe 1 -011000100110 Hofmeyr 1 -011000100110 Hudner 1 -011000100110 Hanovers 1 -011000100110 Dubillier 1 -011000100110 Risi 1 -011000100110 2,302 1 -011000100110 OOUTLOOK 1 -011000100110 Jovanovich/Bruccoli 1 -011000100110 Frankson 1 -011000100110 Stelling 1 -011000100110 Lewis/Wellington 1 -011000100110 LOMB 1 -011000100110 Gro. 1 -011000100110 COLEMAN 1 -011000100110 Hutch 1 -011000100110 Fizz 1 -011000100110 BEAVER 1 -011000100110 Card/Gold 1 -011000100110 Quotables 1 -011000100110 Publicaciones 1 -011000100110 Schule 1 -011000100110 THURSDAY 1 -011000100110 GISLER/BBDO 1 -011000100110 SUTER 1 -011000100110 Normalzeit 1 -011000100110 Overview 1 -011000100110 LaBue 1 -011000100110 McLennon 1 -011000100110 Bran. 1 -011000100110 BRADSTREET 1 -011000100110 Hoenemeyer 1 -011000100110 Colombatto 1 -011000100110 Briseno 1 -011000100110 Lewtas 1 -011000100110 Woos 1 -011000100110 Hid 1 -011000100110 ni-yun 1 -011000100110 Wechsel-Bank 1 -011000100110 Saatchi/DFS 1 -011000100110 DeRose 1 -011000100110 Housekeeping-style 1 -011000100110 Old-Fashioned 1 -011000100110 Formby 1 -011000100110 Gaitskill. 1 -011000100110 Dublier 1 -011000100110 Pretzels 1 -011000100110 Krumholz 1 -011000100110 LaRosa 1 -011000100110 Indenture 1 -011000100110 Annunity 1 -011000100110 REVERSIONARY 1 -011000100110 Mitten 1 -011000100110 SIMS 1 -011000100110 Fund-Investment 1 -011000100110 PERRINS 1 -011000100110 Grosset 1 -011000100110 1-800-828-ARTS 1 -011000100110 Goldaber 1 -011000100110 Tellerico 2 -011000100110 Aussenhandel 2 -011000100110 IWAI 2 -011000100110 McClennan 2 -011000100110 Glatt 2 -011000100110 Bartolomeo 2 -011000100110 Freidman 2 -011000100110 Zackin 2 -011000100110 SUTHERLAND 2 -011000100110 Luxuries 2 -011000100110 Threatens 2 -011000100110 Hanger-Silas 2 -011000100110 Grondahl 2 -011000100110 Starling 2 -011000100110 World-News 2 -011000100110 CoGen 2 -011000100110 Oshinsky 2 -011000100110 Marinello 2 -011000100110 Lessors 2 -011000100110 TALBOT 2 -011000100110 Cookin 2 -011000100110 Durables 2 -011000100110 ORIENTAL 2 -011000100110 Kisin 2 -011000100110 Hessen 2 -011000100110 Bagel 2 -011000100110 Donkersloot 2 -011000100110 12C 2 -011000100110 Prud 2 -011000100110 Portner 2 -011000100110 Vose 2 -011000100110 Fastening 2 -011000100110 DeBarr 2 -011000100110 Anlage 2 -011000100110 LEWIS 2 -011000100110 Lingwood 2 -011000100110 Poor's-500 2 -011000100110 Hartung 2 -011000100110 Laybourne 2 -011000100110 Asser 2 -011000100110 Mellott 2 -011000100110 Kassabaum 2 -011000100110 Smack 2 -011000100110 NETTLETON 2 -011000100110 Sterlacci 2 -011000100110 Spokespersons 2 -011000100110 Parcels 2 -011000100110 Skauyen 2 -011000100110 Bieler 2 -011000100110 IRIS 2 -011000100110 Lysaght 2 -011000100110 Goodkind 2 -011000100110 Bridport 2 -011000100110 Ponzo 2 -011000100110 McNamar 2 -011000100110 BRASS 2 -011000100110 Homestyle 2 -011000100110 Chauvinist 2 -011000100110 Bradsby 2 -011000100110 Latz 2 -011000100110 Ohno 2 -011000100110 Calene 2 -011000100110 NEWALL 2 -011000100110 McKinzie 2 -011000100110 Denisia 2 -011000100110 Anchin 2 -011000100110 LYLE 2 -011000100110 Kliegman 2 -011000100110 Trebek 2 -011000100110 Goldsmid 2 -011000100110 ORDNANCE 2 -011000100110 Madole 2 -011000100110 Creekmore 2 -011000100110 Celulose 2 -011000100110 BALDWIN 2 -011000100110 Garfunkel 2 -011000100110 Bushing 2 -011000100110 RUBICAM 2 -011000100110 Bogue 3 -011000100110 Ravenscroft 3 -011000100110 ENVIRONMENT 3 -011000100110 Greist 3 -011000100110 Maniacs 3 -011000100110 Numismatics 3 -011000100110 Fowle 3 -011000100110 Loewe 3 -011000100110 Hoke 3 -011000100110 Chante 3 -011000100110 HARDART 3 -011000100110 Acores 3 -011000100110 DECKER 3 -011000100110 HORTON 3 -011000100110 Taff 3 -011000100110 Arpels 3 -011000100110 Thins 3 -011000100110 Deitsch 3 -011000100110 Wechselbank 3 -011000100110 Vanadium 3 -011000100110 Kruthers 3 -011000100110 Consignations 3 -011000100110 Overdevest 3 -011000100110 Tsao 3 -011000100110 Moring 3 -011000100110 Chex 3 -011000100110 Domsjoe 3 -011000100110 Asociados 3 -011000100110 Contratas 3 -011000100110 Aitchison 3 -011000100110 Murphey 3 -011000100110 Lomason 3 -011000100110 Knupp 3 -011000100110 Burk 3 -011000100110 Scheetz 3 -011000100110 FARMING 3 -011000100110 Minken 3 -011000100110 Bacek 3 -011000100110 GAMBLE 3 -011000100110 deRose 3 -011000100110 Rotman 3 -011000100110 Macaroni 3 -011000100110 Osh 3 -011000100110 Hammerling 3 -011000100110 Rosenwein 3 -011000100110 Spritcentralen 4 -011000100110 Replogle 4 -011000100110 NEWCASTLE 4 -011000100110 Mechanix 4 -011000100110 Storrs 4 -011000100110 Janachowski 4 -011000100110 Thong 4 -011000100110 Messina 4 -011000100110 Clothier 4 -011000100110 Span 4 -011000100110 Drang 4 -011000100110 Coots 4 -011000100110 Wechsel 4 -011000100110 GIBBS 4 -011000100110 Solis-Cohen 4 -011000100110 Zettl 4 -011000100110 Tillman 4 -011000100110 Excavators 4 -011000100110 Strudwick 4 -011000100110 Naxos 4 -011000100110 Pfau 4 -011000100110 Narver 4 -011000100110 Rosenau 4 -011000100110 SPENCER 4 -011000100110 Grainger 4 -011000100110 KUHN 4 -011000100110 Murashige 4 -011000100110 Pitti 4 -011000100110 Additives 4 -011000100110 Brosamer 4 -011000100110 Neave 4 -011000100110 Sinks 4 -011000100110 Pumps 4 -011000100110 Everard 4 -011000100110 Rosati 4 -011000100110 Flory 4 -011000100110 Pals 4 -011000100110 Feldesman 4 -011000100110 Rix 5 -011000100110 Explosifs 5 -011000100110 Ales 5 -011000100110 Stiebel 5 -011000100110 Ferdon 5 -011000100110 Jacks 5 -011000100110 Crosfield 5 -011000100110 Kissel 5 -011000100110 Turbinen-Union 5 -011000100110 Begone 5 -011000100110 Martyrs 5 -011000100110 Tiernan 5 -011000100110 Edmonds 5 -011000100110 Shoulders 5 -011000100110 Feeders 5 -011000100110 Waltch 5 -011000100110 COOKE 5 -011000100110 ARTS 5 -011000100110 Fales 5 -011000100110 Dislocation 5 -011000100110 Kubs 5 -011000100110 CHEMICALS 5 -011000100110 Pow 5 -011000100110 Gartlan 5 -011000100110 Taxis 6 -011000100110 Drinker 6 -011000100110 Feiss 6 -011000100110 Schnacke 6 -011000100110 Righter 6 -011000100110 Bowser 6 -011000100110 ENDS 6 -011000100110 Wagnalls 6 -011000100110 Doornbos 6 -011000100110 Perrins 6 -011000100110 AEROSPACE 6 -011000100110 Shevack 6 -011000100110 Dunlevy 6 -011000100110 Steers 7 -011000100110 Santow 7 -011000100110 Deitz 7 -011000100110 Krupman 7 -011000100110 McCauley 7 -011000100110 IGON 7 -011000100110 Haddock 7 -011000100110 Schielke 7 -011000100110 Druggists 7 -011000100110 Nicolson 7 -011000100110 Hansberger 7 -011000100110 Kotlowitz 8 -011000100110 Milburn 8 -011000100110 Brutsche 8 -011000100110 Ehrman 8 -011000100110 DOBSON 8 -011000100110 CALEDONIAN 8 -011000100110 Kist 8 -011000100110 Cate 8 -011000100110 Timmins 9 -011000100110 Burdett 9 -011000100110 Reinecke 9 -011000100110 Paget 9 -011000100110 Hartson 9 -011000100110 TRUSTCO 9 -011000100110 Swasey 9 -011000100110 Quarters 10 -011000100110 Foerster 10 -011000100110 Chandon 10 -011000100110 Certification 10 -011000100110 Crowne 10 -011000100110 Coverings 10 -011000100110 Igon 10 -011000100110 Schley 10 -011000100110 Kakumaru 10 -011000100110 Guttmacher 10 -011000100110 Pullen 11 -011000100110 WIRELESS 11 -011000100110 SHANGHAI 11 -011000100110 Gyr 11 -011000100110 Palumbo 11 -011000100110 Quotable 11 -011000100110 Dohme 11 -011000100110 DUTCH/SHELL 11 -011000100110 Worts 11 -011000100110 Poors 12 -011000100110 Sime 12 -011000100110 Indulgence 12 -011000100110 Yost 12 -011000100110 Parsley 12 -011000100110 Gertz 12 -011000100110 Aitken 13 -011000100110 Cashman 13 -011000100110 Samaritan 13 -011000100110 Biologicals 14 -011000100110 Reindel 14 -011000100110 Cruikshank 14 -011000100110 Montague 14 -011000100110 Chimicles 14 -011000100110 CHARTERED 14 -011000100110 Marketer 15 -011000100110 Weeden 15 -011000100110 Ensign 15 -011000100110 Seidman/BDO 15 -011000100110 Isolde 15 -011000100110 Accountability 15 -011000100110 Propane 16 -011000100110 Barrel 16 -011000100110 Blow 17 -011000100110 Lundy 17 -011000100110 Nephew 17 -011000100110 Spa 17 -011000100110 Cressey 17 -011000100110 Sinsabaugh 17 -011000100110 Parke 18 -011000100110 Plimpton 18 -011000100110 Crafts 18 -011000100110 Lavan 18 -011000100110 Stream 18 -011000100110 Feld 18 -011000100110 COMMONWEALTH 18 -011000100110 Rohstoff 18 -011000100110 Spogli 19 -011000100110 Duffus 19 -011000100110 Gargano 19 -011000100110 Strawn 19 -011000100110 Friedrichs 20 -011000100110 Dare 20 -011000100110 LIGHT 20 -011000100110 Lothrop 20 -011000100110 Margulies 20 -011000100110 Rhoads 21 -011000100110 Puris 21 -011000100110 Stringfellow 22 -011000100110 Newall 22 -011000100110 Giroux 22 -011000100110 Jaworski 22 -011000100110 Ahn 23 -011000100110 McCloy 24 -011000100110 Jaymes 24 -011000100110 Botts 24 -011000100110 TELECOMMUNICATIONS 25 -011000100110 Ries 25 -011000100110 Crutcher 26 -011000100110 Betts 26 -011000100110 Supervision 27 -011000100110 Casinos 27 -011000100110 Furnishings 27 -011000100110 Pickering 28 -011000100110 Companion 28 -011000100110 AIRWAYS 28 -011000100110 Farnham 29 -011000100110 Ragen 29 -011000100110 Beranek 29 -011000100110 Hedges 30 -011000100110 Loewi 31 -011000100110 Proctor 32 -011000100110 Buyer 32 -011000100110 Renshaw 33 -011000100110 Farming 33 -011000100110 System/2 34 -011000100110 Struggles 35 -011000100110 Wesson 35 -011000100110 McGinley 36 -011000100110 OUTLOOK 36 -011000100110 Maffei 37 -011000100110 Mosle 37 -011000100110 Manges 37 -011000100110 Handler 39 -011000100110 Derrick 40 -011000100110 Knowles 41 -011000100110 Annuity 42 -011000100110 Intensive 43 -011000100110 Vining 44 -011000100110 Pogue 45 -011000100110 Vault 47 -011000100110 McLennan 47 -011000100110 Frankfurter 48 -011000100110 Birney 49 -011000100110 Ilsley 50 -011000100110 Eckhardt 50 -011000100110 Cruickshank 51 -011000100110 Parenthood 52 -011000100110 Morin 53 -011000100110 Lamont 55 -011000100110 Trecker 56 -011000100110 PETROLEUM 60 -011000100110 Ale 63 -011000100110 Lomb 66 -011000100110 R.L. 71 -011000100110 Horwath 71 -011000100110 Aikman 76 -011000100110 Belding 80 -011000100110 Root 83 -011000100110 Bowles 85 -011000100110 Turben 86 -011000100110 Wakefield 88 -011000100110 Amplifications 90 -011000100110 Shaykin 93 -011000100110 Newcastle 95 -011000100110 Dobson 95 -011000100110 Knowlton 96 -011000100110 Spielvogel 97 -011000100110 Hardart 98 -011000100110 Dubilier 104 -011000100110 Nettleton 115 -011000100110 Kuhn 123 -011000100110 Garrison 125 -011000100110 Wilcox 126 -011000100110 Hopwood 129 -011000100110 Son 132 -011000100110 Mather 134 -011000100110 Flom 140 -011000100110 Broad 162 -011000100110 Builders 194 -011000100110 'N 204 -011000100110 Cromwell 216 -011000100110 Quist 221 -011000100110 Box 232 -011000100110 Wireless 247 -011000100110 Whinney 250 -011000100110 Haas 260 -011000100110 Schuster 265 -011000100110 Rubicam 268 -011000100110 Lyle 287 -011000100110 Row 288 -011000100110 Cooke 299 -011000100110 Drew 312 -011000100110 Bradstreet 352 -011000100110 Shop 354 -011000100110 Owners 365 -011000100110 Woods 377 -011000100110 Gamble 412 -011000100110 Decker 541 -011000100110 Howell 558 -011000100110 Whitney 579 -011000100110 Jenrette 591 -011000100110 Fields 630 -011000100110 Shopping 668 -011000100110 Sons 700 -011000100110 Loan 3051 -011000100110 Hanover 1246 -011000100111 Burnmham 1 -011000100111 Vaapenfrabrik 1 -011000100111 Cavoukian 1 -011000100111 Slipsager 1 -011000100111 Herba 1 -011000100111 Rigs 1 -011000100111 GUNDY 1 -011000100111 cytotechnician 1 -011000100111 Stock-Index 1 -011000100111 Amiet 1 -011000100111 PETROLES. 1 -011000100111 Celebrity/Buick 1 -011000100111 Cavalier/Pontiac 1 -011000100111 Teammates/Reflex 1 -011000100111 Petroleum-Amoco 1 -011000100111 FREY 1 -011000100111 LTB 1 -011000100111 Abibiti-Price 1 -011000100111 Semmons-Taylor 1 -011000100111 Rueckversicherungs-Gesellschaft 1 -011000100111 Vesicherungs-Gesellschaft 1 -011000100111 Khanashvili-Artyushkina 1 -011000100111 Microelectronica 1 -011000100111 Burnam 1 -011000100111 gutbuster 1 -011000100111 Eni-Chem 1 -011000100111 Seacraft 1 -011000100111 Konika 1 -011000100111 Pugachova 1 -011000100111 LAGS 1 -011000100111 G-3 1 -011000100111 Directa 1 -011000100111 Burmham 1 -011000100111 Petrolum 1 -011000100111 Aimcor 1 -011000100111 deutschen 1 -011000100111 Rozanova 1 -011000100111 Knipper 1 -011000100111 Korbut 1 -011000100111 Desgane 1 -011000100111 Virick 1 -011000100111 1887-1987 1 -011000100111 mold-fighter 1 -011000100111 ofMr 1 -011000100111 Borisova 1 -011000100111 Techline 1 -011000100111 Brunst 1 -011000100111 PERCEPTIONS 1 -011000100111 Plastics-Pacific 1 -011000100111 compatiblity 1 -011000100111 Wozchod-Handelsbank 1 -011000100111 chassis-design 1 -011000100111 Haloid 1 -011000100111 Shatai 1 -011000100111 Alliance/Encore 1 -011000100111 Camelia 1 -011000100111 Acushnet 1 -011000100111 Affiliates-led 1 -011000100111 EXERCISE 1 -011000100111 Cordura 1 -011000100111 Morduant 1 -011000100111 Niosome 1 -011000100111 Marcliff 1 -011000100111 Perlite 1 -011000100111 50-Stock 1 -011000100111 Delco-Remy 1 -011000100111 Sieglar 1 -011000100111 PCATs 1 -011000100111 Mardian 1 -011000100111 Economico 1 -011000100111 Beefcake 1 -011000100111 Supras 1 -011000100111 FATHERLY 1 -011000100111 GoldWings 1 -011000100111 Scoular 1 -011000100111 Herbert-Verkamp-Calvert 1 -011000100111 S/T-10 1 -011000100111 Nooney 1 -011000100111 Grotius 1 -011000100111 entertainment-sector 1 -011000100111 frequent-use 1 -011000100111 Lowers 1 -011000100111 BIOMEDICALS 1 -011000100111 OHG 1 -011000100111 325/2 1 -011000100111 Fourment 1 -011000100111 Hydration 1 -011000100111 datebooks 1 -011000100111 C10 1 -011000100111 1972-1977 1 -011000100111 Nalge 1 -011000100111 Bertram-Trojan 1 -011000100111 PC3 1 -011000100111 Aptek 1 -011000100111 JOLLA 1 -011000100111 Tonnerre 1 -011000100111 Industrie-Unternehmungen 1 -011000100111 Casmalia 1 -011000100111 Franciere 1 -011000100111 hatboxes 1 -011000100111 Udyog 1 -011000100111 Pankratov 1 -011000100111 Selectrics 1 -011000100111 T-bird 1 -011000100111 Quartz-Synthesizer 1 -011000100111 6,230 1 -011000100111 Villagra 1 -011000100111 Foristall 1 -011000100111 commercials-but 1 -011000100111 Swerin 1 -011000100111 Sciacca 1 -011000100111 Matais 1 -011000100111 MR6 1 -011000100111 POS 1 -011000100111 winter-training 1 -011000100111 LTDs 1 -011000100111 Metais 1 -011000100111 spacetelescope 1 -011000100111 Suleman 1 -011000100111 Buehrle 1 -011000100111 title-unification 1 -011000100111 Geraetetechnik 1 -011000100111 Risp 1 -011000100111 5,210 1 -011000100111 280Z 1 -011000100111 Finanaciere 1 -011000100111 Accumaster 1 -011000100111 COLLOID 1 -011000100111 Ohrn 1 -011000100111 Omni-Physicians 1 -011000100111 Foundation-sponsored 1 -011000100111 Michiana 1 -011000100111 MLR 1 -011000100111 Bib 1 -011000100111 Pre-Kinder 1 -011000100111 300-series 1 -011000100111 Aeropace 1 -011000100111 olive-processing 1 -011000100111 BIBB 1 -011000100111 Summer. 1 -011000100111 Fairmonts 1 -011000100111 Privin 1 -011000100111 Consultec 1 -011000100111 6,560 1 -011000100111 Sameric 1 -011000100111 Hilton-Davis 1 -011000100111 N.V 1 -011000100111 32,616 1 -011000100111 Lipson-Alport-Glass 1 -011000100111 Aeromotive 1 -011000100111 Informational 1 -011000100111 guffahs 1 -011000100111 Osodi 1 -011000100111 343,150 1 -011000100111 35,131 1 -011000100111 Enviroponics 1 -011000100111 Burhnam 1 -011000100111 900S 1 -011000100111 Napoleao 1 -011000100111 Valenciano 1 -011000100111 Rodamco 1 -011000100111 CytoDiagnostics 1 -011000100111 Develops 1 -011000100111 Aero-Space 1 -011000100111 Baratelli 1 -011000100111 Aravidze 1 -011000100111 68,728 1 -011000100111 3,740 1 -011000100111 Kapila 1 -011000100111 Ivestments 1 -011000100111 LaGuardias 1 -011000100111 Folksam 1 -011000100111 Jones-controlled 1 -011000100111 WORSENED 1 -011000100111 ES250 1 -011000100111 Tatiesi 1 -011000100111 Sangetsu 1 -011000100111 50,835 1 -011000100111 59,277 1 -011000100111 10,064 1 -011000100111 72,971 1 -011000100111 55,608 1 -011000100111 320,260 1 -011000100111 13,364 1 -011000100111 Fariview 1 -011000100111 Laminados 1 -011000100111 Kanetsu 1 -011000100111 MetroCorp 1 -011000100111 silkily 1 -011000100111 34,308 1 -011000100111 Bio-technology 1 -011000100111 48,682 1 -011000100111 Reifenwerke 1 -011000100111 Landcruisers 1 -011000100111 Christodoulou 1 -011000100111 K-10 1 -011000100111 Harris-Hub 1 -011000100111 Metapraxis 1 -011000100111 LHW 1 -011000100111 StyleWare 1 -011000100111 J100 1 -011000100111 Pharmholding 2 -011000100111 WALKING 2 -011000100111 Frocks 2 -011000100111 Matton 2 -011000100111 Pintos 2 -011000100111 C-30 2 -011000100111 Accordion 2 -011000100111 Royces 2 -011000100111 Amram 2 -011000100111 BIAS 2 -011000100111 MGK 2 -011000100111 Benzol 2 -011000100111 Kurimoto 2 -011000100111 Cieras 2 -011000100111 Howarth 2 -011000100111 100LSs 2 -011000100111 Ryosan 2 -011000100111 MICROELETTRONICA 2 -011000100111 Oil-owned 2 -011000100111 McEntire 2 -011000100111 Angeloff 2 -011000100111 2,658 2 -011000100111 Tele-Trip 2 -011000100111 Expertec 2 -011000100111 T/Maker 2 -011000100111 8,873,702 2 -011000100111 Electrik 2 -011000100111 Biochemical 2 -011000100111 Decurion 2 -011000100111 Anthracite 2 -011000100111 downsizes 2 -011000100111 AbitibiPrice 2 -011000100111 DFT 2 -011000100111 Vespucci 2 -011000100111 State-Record 2 -011000100111 Banziger 2 -011000100111 Escher 2 -011000100111 Mecar 2 -011000100111 5000CS 2 -011000100111 Camsco 2 -011000100111 Scrimgeour-Vickers 2 -011000100111 ELECTRICALS 2 -011000100111 Xerographic 2 -011000100111 Haskin 3 -011000100111 Breguet 3 -011000100111 LS400 3 -011000100111 Exploradora 3 -011000100111 Deutschen 3 -011000100111 Sunwear 3 -011000100111 PC-ATs 3 -011000100111 Micro-electronics 3 -011000100111 Undergarment 3 -011000100111 Grew 3 -011000100111 Zephyr 3 -011000100111 Cimarrons 3 -011000100111 Fleetwoods 3 -011000100111 98s 3 -011000100111 Wesfarmers 3 -011000100111 Rorie 3 -011000100111 Asado 3 -011000100111 TRAFFIC 3 -011000100111 Rolled 3 -011000100111 2,232 3 -011000100111 Thermometer 3 -011000100111 Burham 3 -011000100111 Biarritz 3 -011000100111 Microcircuits 3 -011000100111 Fasteners 3 -011000100111 Meccanotecnica 3 -011000100111 Corvair 3 -011000100111 Seikan 3 -011000100111 Bankverein 4 -011000100111 Hostench 4 -011000100111 Vaapenfabrik 4 -011000100111 AML 4 -011000100111 Intervest 4 -011000100111 Umpanki 4 -011000100111 Frosst 4 -011000100111 Lio 4 -011000100111 Heberlein 4 -011000100111 FRIED. 4 -011000100111 Carl/312 4 -011000100111 Towing 4 -011000100111 Bio-Science 4 -011000100111 Exterminating 4 -011000100111 Laundry 4 -011000100111 Petfoods 4 -011000100111 Vehicules 4 -011000100111 VICKERS 4 -011000100111 GANNETT 4 -011000100111 Humboldt-Deutz 4 -011000100111 Aria 4 -011000100111 Expeditions 4 -011000100111 BPD 5 -011000100111 Shokai 5 -011000100111 Rinfret 5 -011000100111 AgResource 5 -011000100111 Kopparbergs 5 -011000100111 Kravis-led 5 -011000100111 Smelters 5 -011000100111 Bucket 5 -011000100111 Doody 5 -011000100111 Corolla. 6 -011000100111 Rydin 6 -011000100111 Minnett 6 -011000100111 PRINTING 6 -011000100111 RICOSTRUZIONE 6 -011000100111 5000S 6 -011000100111 Silicones 6 -011000100111 Editore 7 -011000100111 Microelettronica 7 -011000100111 Alsthom 7 -011000100111 Finanz 7 -011000100111 Citation 7 -011000100111 ENGINEERING 8 -011000100111 Presents 8 -011000100111 Geigy 8 -011000100111 Aluminio 8 -011000100111 Paging 9 -011000100111 Celica 9 -011000100111 Exterior 9 -011000100111 Electro-Optics 10 -011000100111 Luminoso 10 -011000100111 Deutschland 11 -011000100111 Soda 11 -011000100111 Scania 11 -011000100111 Oils 11 -011000100111 Menka 12 -011000100111 Bearing 12 -011000100111 Meares 12 -011000100111 Prizm 13 -011000100111 Camaros 13 -011000100111 Sash 13 -011000100111 5000s 14 -011000100111 Ingelheim 14 -011000100111 Brillstein 14 -011000100111 Baetjer 14 -011000100111 Isotoner 15 -011000100111 Cavaliers 16 -011000100111 Humboldt 17 -011000100111 Shaiken 18 -011000100111 Lingus 18 -011000100111 Biomedicals 19 -011000100111 Firenza 19 -011000100111 Mannheim 19 -011000100111 9000 20 -011000100111 Tractor 22 -011000100111 Caprice 23 -011000100111 Pipelines 27 -011000100111 Jeans 27 -011000100111 Vaapenfabrikk 31 -011000100111 Marconi 31 -011000100111 Ricard 31 -011000100111 Fairview 33 -011000100111 Gumi 34 -011000100111 Calais 35 -011000100111 Fertilizer 36 -011000100111 Cola 38 -011000100111 Timber 39 -011000100111 Benz 40 -011000100111 Bruxelles 46 -011000100111 Whampoa 46 -011000100111 OIL 56 -011000100111 Royce 57 -011000100111 Diesel 58 -011000100111 Engine 62 -011000100111 Cavalier 63 -011000100111 POWER 64 -011000100111 EMI 68 -011000100111 PipeLines 68 -011000100111 GAS 74 -011000100111 Celebrity 75 -011000100111 Fiberglas 77 -011000100111 Tea 80 -011000100111 Teller 91 -011000100111 Shipping 106 -011000100111 Cards 108 -011000100111 Nast 117 -011000100111 Aluminium 128 -011000100111 5000 133 -011000100111 Shipbuilding 153 -011000100111 Lumber 156 -011000100111 Beckman 206 -011000100111 Printing 262 -011000100111 Siegler 294 -011000100111 Pharmaceuticals 305 -011000100111 Coal 320 -011000100111 Richfield 346 -011000100111 Mines 457 -011000100111 Telecom 674 -011000100111 Aerospace 700 -011000100111 Tire 804 -011000100111 Kravis 941 -011000100111 Burnham 2334 -011000100111 Gas 2385 -011000100111 Petroleum 3108 -011000100111 Oil 3286 -011000100111 Motor 3473 -0110001010 882.2 1 -0110001010 Vapor 1 -0110001010 Yokado 1 -0110001010 Briefcase 1 -0110001010 Grom 1 -0110001010 Cylinder 1 -0110001010 Turbomachinery 1 -0110001010 Labouisee 1 -0110001010 Group/Wells 1 -0110001010 Brine 1 -0110001010 Kallistos 1 -0110001010 Drustev 1 -0110001010 Electro-Galvanizing 1 -0110001010 CoastSouthwestern 1 -0110001010 Gordon/Clarkson 1 -0110001010 NK 1 -0110001010 Langue 1 -0110001010 STARRETT 1 -0110001010 Pecan 1 -0110001010 Co.-Austin 1 -0110001010 Pipline 1 -0110001010 Starfish 1 -0110001010 Fuzz 1 -0110001010 Thru 1 -0110001010 Bk-Madison 1 -0110001010 Shigemasa 1 -0110001010 Langua 1 -0110001010 Society/Little 1 -0110001010 Proppants 1 -0110001010 Tsusho 1 -0110001010 Bandler 1 -0110001010 Books/William 1 -0110001010 Sachs/Kidder 1 -0110001010 Barriman 1 -0110001010 Frigoriferi 1 -0110001010 Alido 1 -0110001010 Devincenzi 1 -0110001010 Kolle 1 -0110001010 Conveyer 1 -0110001010 Southdale 1 -0110001010 Steamships 1 -0110001010 System-Eastern 1 -0110001010 PFBC 1 -0110001010 Productos 1 -0110001010 Bysshe 1 -0110001010 Suan 1 -0110001010 Perot-Roger 1 -0110001010 Pictures-Keith 1 -0110001010 Hall-Dietrich 1 -0110001010 Jushi 1 -0110001010 Realty/New 1 -0110001010 Omega/Vauxhall 1 -0110001010 Laroche 1 -0110001010 Atlantic-Tricon 1 -0110001010 Unso 1 -0110001010 Factoring/Manufacturers 1 -0110001010 Dauny 1 -0110001010 Air/Industrial 1 -0110001010 HOPING 1 -0110001010 Fume 1 -0110001010 Enseignement 1 -0110001010 SALIM 1 -0110001010 Reconditioning 1 -0110001010 House/William 1 -0110001010 School-McLean 1 -0110001010 Doboku 1 -0110001010 okiep 1 -0110001010 Press-On 1 -0110001010 Cheow 1 -0110001010 Finishes 1 -0110001010 Tanzo 1 -0110001010 Grossart 1 -0110001010 Lapa 1 -0110001010 tial 1 -0110001010 Oeil 1 -0110001010 Lammers 1 -0110001010 Hyo 1 -0110001010 Parfumerie 1 -0110001010 Faire 1 -0110001010 Attribute 1 -0110001010 Clans 1 -0110001010 Orimono 1 -0110001010 Malyshkin 1 -0110001010 Ock 1 -0110001010 Brunt 1 -0110001010 Gumbel/Walt 1 -0110001010 SPECULATION 1 -0110001010 Co.and 1 -0110001010 Kidding 1 -0110001010 Gust 1 -0110001010 Big-10 1 -0110001010 Equit 1 -0110001010 Kanyo 1 -0110001010 Handelsund 1 -0110001010 Jaechul 1 -0110001010 Transmission-Pacific 1 -0110001010 Komuten 1 -0110001010 Fund-Teachers 1 -0110001010 Press/Warner 1 -0110001010 Seisakusho 1 -0110001010 Douls 1 -0110001010 Antenna 2 -0110001010 GOODRICH 2 -0110001010 Viande 2 -0110001010 och 2 -0110001010 Cable/ 2 -0110001010 Angler 2 -0110001010 Malchman 2 -0110001010 Handels-und 2 -0110001010 WORLDWIDE 2 -0110001010 Fabriken 2 -0110001010 MTP 2 -0110001010 2,724 2 -0110001010 Multi-Sector 2 -0110001010 Weldin 2 -0110001010 Traction 2 -0110001010 Elektrik 2 -0110001010 Shau 2 -0110001010 Choon 2 -0110001010 Brandford 3 -0110001010 Inti 3 -0110001010 Yassin 3 -0110001010 Comiteau 3 -0110001010 Abod 3 -0110001010 MATTHEY 4 -0110001010 Hollowell 4 -0110001010 og 4 -0110001010 Kagaku 5 -0110001010 Testamentary 7 -0110001010 Foong 8 -0110001010 Distilling 13 -0110001010 Amicable 14 -0110001010 Heritable 14 -0110001010 & 44791 -0110001010 und 37 -01100010110 hypernationalism 1 -01100010110 dogmatist 1 -01100010110 timber- 1 -01100010110 Belmont-Morgan 1 -01100010110 marine-defense 1 -01100010110 corn- 1 -01100010110 sales-slip 1 -01100010110 dyer 1 -01100010110 Old-Timers 1 -01100010110 craniotomy 1 -01100010110 Krishnas 1 -01100010110 hoagie 1 -01100010110 half-smile 1 -01100010110 Toyland 1 -01100010110 Inter-War 1 -01100010110 narrator-wife 1 -01100010110 talkiest 1 -01100010110 quasi-isolationist 1 -01100010110 arts-management 1 -01100010110 mahonia 1 -01100010110 Vietnam-veterans 1 -01100010110 reliablity 1 -01100010110 Honda-Volkswagen-Saab 1 -01100010110 legislative-veto 1 -01100010110 Ds 1 -01100010110 100- 1 -01100010110 skullcap 1 -01100010110 Penmans 1 -01100010110 breach-of-duty 1 -01100010110 SHEET 1 -01100010110 mining-machinery 1 -01100010110 Tete 1 -01100010110 Aegisthus 1 -01100010110 Scharanskys 1 -01100010110 attornies 1 -01100010110 horse-lover 1 -01100010110 work-habits 1 -01100010110 one-bedrooms 1 -01100010110 Repressed 1 -01100010110 Bycom 1 -01100010110 Defector 1 -01100010110 special-mechanism 1 -01100010110 drawing-office 1 -01100010110 language-school 1 -01100010110 futures- 1 -01100010110 Welleszes 1 -01100010110 '82s 1 -01100010110 multiprocessors 1 -01100010110 timbers 1 -01100010110 Honourable 1 -01100010110 National-American 1 -01100010110 noncoms 1 -01100010110 Dalmatian 1 -01100010110 1570s 1 -01100010110 hunchback 1 -01100010110 Springsteens 1 -01100010110 Vakson 1 -01100010110 Oil-Dri 1 -01100010110 Inkeles 1 -01100010110 15th- 1 -01100010110 ground-corn 1 -01100010110 Newsweek-Bush 1 -01100010110 engine-machining 1 -01100010110 murderee 1 -01100010110 Lynchberg 1 -01100010110 REFLUB-LICANS 1 -01100010110 drug-demented 1 -01100010110 Knight-Ridder-Tribune 1 -01100010110 academization 1 -01100010110 upsies 1 -01100010110 once-expected 1 -01100010110 spray-bottle 1 -01100010110 signed-on 1 -01100010110 brocades 1 -01100010110 glassfiber 1 -01100010110 LINs 1 -01100010110 then-incumbent 1 -01100010110 very-well-thought-out 1 -01100010110 Launderettes 1 -01100010110 tureen 1 -01100010110 videotape-cassette 1 -01100010110 Steffis 1 -01100010110 non-HCE 1 -01100010110 rumor-laden 1 -01100010110 Ethicals 1 -01100010110 Ruperts 1 -01100010110 brokerage-services 1 -01100010110 Videotel 1 -01100010110 family-products 1 -01100010110 be-all 1 -01100010110 quarter-earlier 1 -01100010110 Disaster-Prone 1 -01100010110 Sartorial 1 -01100010110 Karvama 1 -01100010110 logic-defying 1 -01100010110 FINCH 1 -01100010110 reopener 1 -01100010110 household-cleaner 1 -01100010110 tastiness 1 -01100010110 Prudentials 1 -01100010110 Saudi- 1 -01100010110 basic-steel 1 -01100010110 Solec 1 -01100010110 Procters 1 -01100010110 Blanc-Warner 1 -01100010110 service- 1 -01100010110 food- 1 -01100010110 Omnific 1 -01100010110 nitty 1 -01100010110 best- 1 -01100010110 Flier 1 -01100010110 phone-radio 1 -01100010110 legal-resources 1 -01100010110 Labor-Health 1 -01100010110 Draino 1 -01100010110 Arikara 1 -01100010110 connoisseurship 1 -01100010110 neurosciences 1 -01100010110 Ninian 1 -01100010110 static-tax-revenue 1 -01100010110 Merensky 1 -01100010110 Czars 1 -01100010110 international-management 1 -01100010110 woodpile 1 -01100010110 Hirosawas 1 -01100010110 razor-blades 1 -01100010110 accident- 1 -01100010110 Havoc 1 -01100010110 Fitzgeralds 1 -01100010110 real- 1 -01100010110 Epping 1 -01100010110 Carringtons 1 -01100010110 sometimes-garbled 1 -01100010110 coin-flip 1 -01100010110 Amur 1 -01100010110 gunwales 1 -01100010110 101-megabyte 1 -01100010110 shoulds 1 -01100010110 Antisocial 1 -01100010110 filtration-systems 1 -01100010110 land-swap 1 -01100010110 woodcutters 1 -01100010110 drought- 1 -01100010110 quasi-rape 1 -01100010110 patched-up 1 -01100010110 Kokomba 1 -01100010110 Smokenders 1 -01100010110 flame-spreading 1 -01100010110 pickaxes 1 -01100010110 Blue-Collar 1 -01100010110 grammar- 1 -01100010110 Locap 1 -01100010110 regulatin 1 -01100010110 PA-28s 1 -01100010110 domestic- 1 -01100010110 fastest-changing 1 -01100010110 rotors 1 -01100010110 expropriators 1 -01100010110 Sirindhorn 1 -01100010110 debt-negotiator 1 -01100010110 Goethals 1 -01100010110 color- 1 -01100010110 Racketeered-Influenced 1 -01100010110 Beteiligungs 1 -01100010110 inefficiences 1 -01100010110 gay-bashers 1 -01100010110 Beau-Rivage 1 -01100010110 supertall 1 -01100010110 pre-primary 1 -01100010110 assets-acquisition 1 -01100010110 7-foot-2 1 -01100010110 personal- 1 -01100010110 pro-work 1 -01100010110 Xynetics 1 -01100010110 McCaskeys 1 -01100010110 Furrever 1 -01100010110 Cullens 1 -01100010110 Apollo-killer 1 -01100010110 pamphleteer 1 -01100010110 musicologist 1 -01100010110 Dodecanese 1 -01100010110 Gilberts 1 -01100010110 gambler/bookmaker 1 -01100010110 N-bomb 1 -01100010110 better-armed 1 -01100010110 Slatkin-Schwantner 1 -01100010110 Badlands 1 -01100010110 Sioux-owned 1 -01100010110 MNR. 1 -01100010110 Baldwin-Hamilton 1 -01100010110 pick-ax 1 -01100010110 Badoit 1 -01100010110 erecta 1 -01100010110 pocketknife 1 -01100010110 KRQX-AM 1 -01100010110 wharfs 1 -01100010110 grapeskin 1 -01100010110 service-rationed 1 -01100010110 Lows 1 -01100010110 4th-Quarter 1 -01100010110 Cutrales 1 -01100010110 Carribbean 1 -01100010110 Muskie-McGovern 1 -01100010110 chili-doused 1 -01100010110 chips-supply 1 -01100010110 Evaporated 1 -01100010110 large- 1 -01100010110 disfranchisement 1 -01100010110 spiral-shaped 1 -01100010110 pipe-laying 1 -01100010110 pea-brained 1 -01100010110 Publics 1 -01100010110 pump-making 1 -01100010110 Rimpa 1 -01100010110 Alaska-oil 1 -01100010110 freights 1 -01100010110 dried-fruit 1 -01100010110 Furies 1 -01100010110 big-boned 1 -01100010110 kneeling-bus 1 -01100010110 Tinkers 1 -01100010110 1390s 1 -01100010110 Harrys 1 -01100010110 not-so-rich 1 -01100010110 war-fighter 1 -01100010110 neo-isolationism 1 -01100010110 Blowpipes 1 -01100010110 Cuban-inspired 1 -01100010110 Riveter 1 -01100010110 pipeline-systems 1 -01100010110 Outstrips 1 -01100010110 Hatchery 1 -01100010110 Riverboat 1 -01100010110 Re-Solve 1 -01100010110 J- 1 -01100010110 Second-Guess 1 -01100010110 hot-rodding 1 -01100010110 Fugs 1 -01100010110 marquetry 1 -01100010110 drear 1 -01100010110 three-bean 1 -01100010110 two-defense 1 -01100010110 late-70s 1 -01100010110 32/450 1 -01100010110 dealer/broker 1 -01100010110 Inc./Tomy 1 -01100010110 Strudel 1 -01100010110 fiver 1 -01100010110 kinglet 1 -01100010110 Jordans 1 -01100010110 Mag-Lite 1 -01100010110 industrial-coatings 1 -01100010110 1.9055-mark 1 -01100010110 9-year-olds 1 -01100010110 16-megabit 1 -01100010110 Welli 1 -01100010110 technology- 1 -01100010110 NRA. 1 -01100010110 Fintech 1 -01100010110 Euro-housewife 1 -01100010110 ranter 1 -01100010110 raver 1 -01100010110 radar- 1 -01100010110 radio- 1 -01100010110 kaihatsu 1 -01100010110 pornographer 1 -01100010110 Poppin 1 -01100010110 agro-alimentary 1 -01100010110 Plantin 1 -01100010110 100-mark 1 -01100010110 anti-work 1 -01100010110 hyper-channel 1 -01100010110 photo-story 1 -01100010110 DPIC 1 -01100010110 Kunitz 1 -01100010110 IMI. 1 -01100010110 cardiogram 1 -01100010110 lambing 1 -01100010110 BSU-49B 1 -01100010110 specialized-pipeline 1 -01100010110 linga 1 -01100010110 congressional-district 1 -01100010110 bath. 1 -01100010110 greedseekers 1 -01100010110 twiggiest 1 -01100010110 X-Pensive 1 -01100010110 Jacobin 1 -01100010110 Jardaneh 1 -01100010110 pinkroses 1 -01100010110 Saracens 1 -01100010110 tree-topper 1 -01100010110 transferor 1 -01100010110 Parchamis 1 -01100010110 construction-supply 1 -01100010110 sports-fitness 1 -01100010110 746th 1 -01100010110 Fatted 1 -01100010110 exploiters 1 -01100010110 defect-finding 1 -01100010110 SA-3B 1 -01100010110 MEBA/NMU 1 -01100010110 aquas 1 -01100010110 ex-champion 1 -01100010110 patent- 1 -01100010110 Compresssors 1 -01100010110 Veribank 1 -01100010110 wood-waste 1 -01100010110 Israeli-settled 1 -01100010110 broadcast-management 1 -01100010110 stronghearted 1 -01100010110 TWU 1 -01100010110 porte-cochere 1 -01100010110 Fetisov 1 -01100010110 semiconductor-producers 1 -01100010110 Spartak 1 -01100010110 Mikes 1 -01100010110 heiresses 1 -01100010110 film- 1 -01100010110 lamp-post 1 -01100010110 missionizing 1 -01100010110 on-the-stove 1 -01100010110 electronic-part 1 -01100010110 incorrigibles 1 -01100010110 Hirokawa 1 -01100010110 geochemist 1 -01100010110 electronic- 1 -01100010110 oil-purchasing 1 -01100010110 seasonally- 1 -01100010110 Khare 1 -01100010110 kidnaping 1 -01100010110 milfoil 1 -01100010110 snootfull 1 -01100010110 serape 1 -01100010110 intra- 1 -01100010110 Pitches 1 -01100010110 hardest-driving 1 -01100010110 fixed-income-sales 1 -01100010110 switchblade 1 -01100010110 properites 1 -01100010110 1.60-mark 1 -01100010110 Weingartens 1 -01100010110 plumbing-repair 1 -01100010110 rumor-monger 1 -01100010110 Nestles 1 -01100010110 Bradys 1 -01100010110 road-machinery 1 -01100010110 Tavoularis 1 -01100010110 flag- 1 -01100010110 X-chromosome 1 -01100010110 Kirkvine 1 -01100010110 delicensing 1 -01100010110 Ostade 1 -01100010110 2.0040-mark 1 -01100010110 marketing/promotion/research 1 -01100010110 Gnostics 1 -01100010110 American- 1 -01100010110 Middleman 1 -01100010110 porcupine 1 -01100010110 compulsories 1 -01100010110 McShine 1 -01100010110 steel-treatment 1 -01100010110 Voroshilov 1 -01100010110 unionbuster 1 -01100010110 commenters 1 -01100010110 audiotext 1 -01100010110 computer-publishing 1 -01100010110 ascot 1 -01100010110 trans-Baikal 1 -01100010110 Dazed 1 -01100010110 pulmonologist 1 -01100010110 time- 1 -01100010110 greeds 1 -01100010110 egrets 1 -01100010110 Rainwater-Meyerson 1 -01100010110 neo-Stalinists 1 -01100010110 BANKEN 1 -01100010110 advanced-software 1 -01100010110 IW115 1 -01100010110 technlogy 1 -01100010110 Inept 1 -01100010110 fumigator 1 -01100010110 hows 1 -01100010110 hunting-mad 1 -01100010110 budget-shortfall 1 -01100010110 sylph 1 -01100010110 Saidiners 1 -01100010110 better-growing 1 -01100010110 Searns 1 -01100010110 mid-south 1 -01100010110 Monongohela 1 -01100010110 bat- 1 -01100010110 CanadianImmigration 1 -01100010110 Domsjo 1 -01100010110 crustiness 1 -01100010110 banker-training 1 -01100010110 U.K./Europe 1 -01100010110 drug-processing 1 -01100010110 UPP 1 -01100010110 Yardbirds 1 -01100010110 preamplifier 1 -01100010110 Tikki 2 -01100010110 white- 2 -01100010110 Flindt 2 -01100010110 metal-reclamation 2 -01100010110 Securties 2 -01100010110 GameTek 2 -01100010110 Tolar 2 -01100010110 V.J.s 2 -01100010110 300SL 2 -01100010110 Weserhuette 2 -01100010110 1986- 2 -01100010110 Power-plant 2 -01100010110 Research-and-development 2 -01100010110 Waterway 2 -01100010110 Powerplant 2 -01100010110 silencer 2 -01100010110 inattentiveness 2 -01100010110 explicitness 2 -01100010110 Spoilers 2 -01100010110 co-development 2 -01100010110 Campania 2 -01100010110 servicewoman 2 -01100010110 J-platform 2 -01100010110 notepads 2 -01100010110 Tsezar 2 -01100010110 ReChem 2 -01100010110 Cursor 2 -01100010110 Mirages 2 -01100010110 furred 2 -01100010110 Watercraft 2 -01100010110 oil-man 2 -01100010110 Heater 2 -01100010110 crushers 2 -01100010110 Horace-Mann 2 -01100010110 torturer 2 -01100010110 Americal 2 -01100010110 sackcloth 2 -01100010110 Trilateralist 2 -01100010110 fire- 2 -01100010110 pinkie 2 -01100010110 alembics 2 -01100010110 Hoyas 2 -01100010110 cornstalks 2 -01100010110 impeachers 2 -01100010110 Baskir 2 -01100010110 gurney 2 -01100010110 management-recruiting 2 -01100010110 straightest 2 -01100010110 Sac 2 -01100010110 Foil 2 -01100010110 Armament 2 -01100010110 Commonwealth-Journal 2 -01100010110 SSN 2 -01100010110 Barbers 2 -01100010110 Freightcor 2 -01100010110 export- 2 -01100010110 Nixons 2 -01100010110 hazardous- 3 -01100010110 Phonogram 3 -01100010110 sex- 3 -01100010110 Deluge 3 -01100010110 500- 3 -01100010110 Bambino 3 -01100010110 Sabra 3 -01100010110 elementary- 3 -01100010110 HELICOPTERS 3 -01100010110 glycerol 3 -01100010110 Computax 3 -01100010110 Omnis 3 -01100010110 Whore 3 -01100010110 Sweats 4 -01100010110 Verdicts 4 -01100010110 Clown 4 -01100010110 Tu-204 4 -01100010110 Gaudi 4 -01100010110 Matrimonial 4 -01100010110 UNHRC 4 -01100010110 Closet 4 -01100010110 Ranson 4 -01100010110 TUNG 4 -01100010110 Syntelligence 4 -01100010110 Knitwear 5 -01100010110 Cobrins 5 -01100010110 Blueberry 5 -01100010110 Grief 6 -01100010110 Sweetener 6 -01100010110 nooks 9 -01100010110 gold- 9 -01100010110 Racketeer-Influenced 10 -01100010110 Theatrical 11 -01100010110 first- 12 -01100010110 Cardiovascular 13 -01100010110 ins 15 -01100010110 Securites 15 -01100010110 Allgemeine 15 -01100010110 Humanities 27 -01100010110 Boardwalk 33 -01100010110 Clothing 41 -01100010110 Loom 47 -01100010110 Influenced 115 -01100010110 Monopolies 121 -01100010110 Omni 124 -01100010110 Immigration 246 -01100010110 Metals 413 -01100010110 Tobacco 416 -01100010110 Ways 774 -01100010110 Securities 12312 -01100010110 Food 1534 -011000101110 Herrold 1 -011000101110 7100 1 -011000101110 Groussman 1 -011000101110 Shangquan 1 -011000101110 Bankstock 1 -011000101110 Kocina 1 -011000101110 Glace 1 -011000101110 Schnaut 1 -011000101110 Largeau 1 -011000101110 FWI 1 -011000101110 Skyways 1 -011000101110 Hamson 1 -011000101110 ethnobiologist 1 -011000101110 TECHNIK 1 -011000101110 Crane-Houdaille 1 -011000101110 cenotaph 1 -011000101110 Macroeconomia 1 -011000101110 PA28 1 -011000101110 Farmaceutica 1 -011000101110 Landrum 1 -011000101110 Balkind 1 -011000101110 Gaxiora 1 -011000101110 Redko 1 -011000101110 Heilmann 1 -011000101110 Frisell 1 -011000101110 Macom 1 -011000101110 Quong 1 -011000101110 Tronics 1 -011000101110 Hutton-Golub 1 -011000101110 ImmuneSciences 1 -011000101110 SysteMetrics 1 -011000101110 Airships 1 -011000101110 Santon 1 -011000101110 Sachses 1 -011000101110 Panamerica 1 -011000101110 Reducer 1 -011000101110 Tiles 1 -011000101110 al-Radydeh 1 -011000101110 Saxena 1 -011000101110 KNW 1 -011000101110 Skylar 1 -011000101110 COM 1 -011000101110 Mulitbin 1 -011000101110 Ovshinksy 1 -011000101110 Industries-Chemical 1 -011000101110 Beylen 1 -011000101110 Larrgeau 1 -011000101110 Correctors 1 -011000101110 Pesos 1 -011000101110 mansion-turned-museum 1 -011000101110 Guitars 1 -011000101110 Oritsky 1 -011000101110 Jamboree 1 -011000101110 Inter-Funding 1 -011000101110 BancShares 1 -011000101110 Failey 1 -011000101110 pelt 1 -011000101110 Seigler 1 -011000101110 Sunroofs 1 -011000101110 Metalcraft 1 -011000101110 Vanpier 1 -011000101110 Lumacell 1 -011000101110 Werries 1 -011000101110 Witterr 1 -011000101110 Bonsar 1 -011000101110 Exsura 1 -011000101110 CONCEPTS 1 -011000101110 Gulis 1 -011000101110 Insustries 1 -011000101110 XI 1 -011000101110 Industies 1 -011000101110 Whitter 1 -011000101110 Hedley-Noble 1 -011000101110 Pixely 1 -011000101110 Moneysworth 1 -011000101110 Eberling 1 -011000101110 Beranger 1 -011000101110 Fres 1 -011000101110 Baim 1 -011000101110 Setter 1 -011000101110 Carbonics 1 -011000101110 Foremost-McKesson 1 -011000101110 Newgett 1 -011000101110 Telematica 1 -011000101110 Baquet 1 -011000101110 Dafna 1 -011000101110 Almog 1 -011000101110 FCMC 1 -011000101110 Chipsoft 1 -011000101110 Witter-led 1 -011000101110 BARD 1 -011000101110 Scheff 1 -011000101110 Aros 1 -011000101110 DeCosse 1 -011000101110 Sendzimir 1 -011000101110 Industries-developed 1 -011000101110 B-School 1 -011000101110 Peabody. 1 -011000101110 Cryogenics 1 -011000101110 Stitching 1 -011000101110 Brothers-E.F. 1 -011000101110 Emmerling 1 -011000101110 Airmen 1 -011000101110 Hennebach 1 -011000101110 Ryberg 1 -011000101110 Bros.will 1 -011000101110 Teletec 1 -011000101110 Scheib 1 -011000101110 Kloman 1 -011000101110 Pharmacal 2 -011000101110 Eicher 2 -011000101110 Taqi 2 -011000101110 Sachs-led 2 -011000101110 Pantries 2 -011000101110 Ei 2 -011000101110 Girdler 2 -011000101110 Bulfinch 2 -011000101110 Vikingolje 2 -011000101110 Fienberg 2 -011000101110 University-educated 2 -011000101110 Akroyd 2 -011000101110 McKie 2 -011000101110 Sach 2 -011000101110 Abud 2 -011000101110 Mellody 2 -011000101110 Pouncy 2 -011000101110 Rossow 2 -011000101110 Rogan 2 -011000101110 Skelos 2 -011000101110 Danchi 2 -011000101110 CITE 2 -011000101110 Bullaty 2 -011000101110 SAE 2 -011000101110 Feeds 3 -011000101110 Tabell 3 -011000101110 Adib 3 -011000101110 Teito 3 -011000101110 MacCannell 3 -011000101110 Sachs/CPM 3 -011000101110 Macris 3 -011000101110 PERIPHERALS 3 -011000101110 Folmar 3 -011000101110 Stearn 3 -011000101110 Marsteller 4 -011000101110 Powdered 4 -011000101110 Grievson 4 -011000101110 Beckley-Cardy 4 -011000101110 Valli 4 -011000101110 Cedarbaum 4 -011000101110 Ederer 4 -011000101110 DSLT 4 -011000101110 Fibres 4 -011000101110 Jimusho 4 -011000101110 Kamisar 4 -011000101110 Industries-EMI 5 -011000101110 Reitzfeld 5 -011000101110 Gilt-Edged 5 -011000101110 Pixley 5 -011000101110 Kfar 5 -011000101110 Coop 5 -011000101110 Rovins 6 -011000101110 Wrap 6 -011000101110 Hakuhodo 6 -011000101110 Acoustics 6 -011000101110 Soditic 9 -011000101110 Imhoff 9 -011000101110 Yarns 10 -011000101110 Deland 10 -011000101110 Goutal 10 -011000101110 Poynton 11 -011000101110 Milln 12 -011000101110 Interfunding 12 -011000101110 Banken 16 -011000101110 Koeki 18 -011000101110 Cosmopulos 20 -011000101110 Amdec 31 -011000101110 Refsnes 35 -011000101110 Maclaine 41 -011000101110 Hung 43 -011000101110 Speyer 46 -011000101110 Eichler 55 -011000101110 Deacon 56 -011000101110 Grieveson 96 -011000101110 Bowes 105 -011000101110 Hydro 144 -011000101110 Kumble 152 -011000101110 Govett 173 -011000101110 McKinnon 310 -011000101110 Benson 340 -011000101110 Witter 1151 -011000101110 Hutton 3034 -011000101110 Brothers 4427 -011000101110 Industries 5634 -011000101111 Independent-business 1 -011000101111 Cluj-Napoca 1 -011000101111 1,194,822 1 -011000101111 Izumo 1 -011000101111 Malcomb-Pirnie 1 -011000101111 Miserable 1 -011000101111 Sex-wise 1 -011000101111 Bloomcraft 1 -011000101111 Assay 1 -011000101111 Nowsco 1 -011000101111 815,500 1 -011000101111 spacco 1 -011000101111 Cattle-future 1 -011000101111 Corona-Hemlo 1 -011000101111 Truevision 1 -011000101111 Technogenetics 1 -011000101111 Nearby-futures 1 -011000101111 Venison 1 -011000101111 Pro- 1 -011000101111 314,010 1 -011000101111 176,476 1 -011000101111 Watergroup 1 -011000101111 282,986 1 -011000101111 Lotfi 1 -011000101111 COUGH 1 -011000101111 33,236 1 -011000101111 MCBKA 1 -011000101111 Stepper 1 -011000101111 488,154 1 -011000101111 rejectionist 1 -011000101111 Rache 1 -011000101111 302,820 1 -011000101111 152,482 1 -011000101111 Non-priority 1 -011000101111 235,094 1 -011000101111 Sabag 1 -011000101111 CerBay 1 -011000101111 FOULED 1 -011000101111 HECHINGER 1 -011000101111 848,690 1 -011000101111 Fat-Cutting 1 -011000101111 Fayman 1 -011000101111 159,666 1 -011000101111 BLOHM 1 -011000101111 anisette 1 -011000101111 DB/VMS 1 -011000101111 Simhas 1 -011000101111 Barricading 1 -011000101111 poled 1 -011000101111 Heatilator 1 -011000101111 Bentech 1 -011000101111 317,211 1 -011000101111 Substantiation 1 -011000101111 linters 1 -011000101111 14:00-16:00 1 -011000101111 9:00-midday 1 -011000101111 Molodezhnaya 1 -011000101111 zakuski 1 -011000101111 Babushkinskaya 1 -011000101111 8:00-17:00 1 -011000101111 9:00-18:00 1 -011000101111 Vodnyy 1 -011000101111 Tushinskaya 1 -011000101111 15:00-18:00 1 -011000101111 Novoslobodskaya 1 -011000101111 Linino 1 -011000101111 Lolo 1 -011000101111 9:30-20:00 1 -011000101111 12:00-20:00 1 -011000101111 Smolenskaya 1 -011000101111 Sviblivo 1 -011000101111 12:0023:00 1 -011000101111 Nogina 1 -011000101111 17:00-22:00 1 -011000101111 10:00-12:00 1 -011000101111 7:30-23:00 1 -011000101111 13:00-23:00 1 -011000101111 9:00-23:00 1 -011000101111 Sviblovo 1 -011000101111 12:00-24:00 1 -011000101111 Aviamotornaya 1 -011000101111 15:00-16:00 1 -011000101111 8:00-18:00 1 -011000101111 Kolomenskaya 1 -011000101111 Izmaylovskaya 1 -011000101111 Novokuznetskaya 1 -011000101111 Voikovskaya 1 -011000101111 Taganskaya 1 -011000101111 Universitet 1 -011000101111 11:00-22:00 1 -011000101111 Profsouznaya 1 -011000101111 Mondays-Saturdays 1 -011000101111 half-inch-thick 1 -011000101111 654,908 1 -011000101111 559,949 1 -011000101111 Aerospace/defense 1 -011000101111 709,192 1 -011000101111 KOW-BLOHM 1 -011000101111 RUSTLE 1 -011000101111 WAGATV 1 -011000101111 slum-dwellers 1 -011000101111 SwimWare 1 -011000101111 Corp.-boosted 1 -011000101111 Cymbiosis 1 -011000101111 Kayal 1 -011000101111 ROBINSON-HUMPHREY 1 -011000101111 Zippora 1 -011000101111 McNeilab 1 -011000101111 Erbeaneignung 1 -011000101111 ChemMark 1 -011000101111 Dublin-Manchester 1 -011000101111 43,433 1 -011000101111 CHIRON 1 -011000101111 Russellsteel 1 -011000101111 Jive 1 -011000101111 BUCKLE 1 -011000101111 Bernstein-Macaulay 1 -011000101111 Dorr-Oliver 1 -011000101111 InfoPlus 1 -011000101111 FIRSTS 1 -011000101111 Alandco 1 -011000101111 succotash 1 -011000101111 VSOP 1 -011000101111 CYPRESS 1 -011000101111 JENNIFER 1 -011000101111 332,700 1 -011000101111 Illinois-Sweet 1 -011000101111 893,909 1 -011000101111 Systeme 1 -011000101111 40,080 1 -011000101111 Privatizador 1 -011000101111 Halal 1 -011000101111 home-supply 1 -011000101111 677,305 1 -011000101111 Eldergames 1 -011000101111 FNI 1 -011000101111 Vernel 1 -011000101111 Syarikai 1 -011000101111 Frozen-sperm 1 -011000101111 Mexicano 1 -011000101111 Nearer-term 1 -011000101111 part-inventor 1 -011000101111 slaloms 1 -011000101111 Gasearch 1 -011000101111 Super-VHS 1 -011000101111 Alphamation 1 -011000101111 nihonga 1 -011000101111 Stateset 1 -011000101111 Vanillas 1 -011000101111 Biopharmaceutics 1 -011000101111 424,328 1 -011000101111 End-User 1 -011000101111 Adamantech 1 -011000101111 Construction-related 1 -011000101111 Cal-Almond 1 -011000101111 Ambrit 1 -011000101111 CHAIR 1 -011000101111 Rouben 1 -011000101111 Selectronics 1 -011000101111 1948-54 1 -011000101111 80,736 1 -011000101111 fact/fiction 1 -011000101111 Calonyction 1 -011000101111 GEODYNE 1 -011000101111 Hazcon 1 -011000101111 Van-pooling 1 -011000101111 Hansac 1 -011000101111 25,071 1 -011000101111 southern-pine 1 -011000101111 210,486 1 -011000101111 Drywall 1 -011000101111 Lebhar-Friedman 1 -011000101111 PRAXIS 1 -011000101111 CENTRES 1 -011000101111 gas-card 1 -011000101111 Machine-Tool 1 -011000101111 Non-nationals 1 -011000101111 Curses 1 -011000101111 539,992 1 -011000101111 68,949 1 -011000101111 manumission 1 -011000101111 RISA 1 -011000101111 ER 1 -011000101111 Direlco 1 -011000101111 Docteur 1 -011000101111 Degasification 1 -011000101111 dincs 1 -011000101111 Iran-a-Lam-a-Ding-Dong 1 -011000101111 Reagan-armics 1 -011000101111 HPU.WI 1 -011000101111 Erzurum 1 -011000101111 385,291 1 -011000101111 scram 1 -011000101111 Peo 1 -011000101111 grave-robbers 1 -011000101111 re-selling 1 -011000101111 BRITANNICA 1 -011000101111 First-in 1 -011000101111 Non-Switching 1 -011000101111 Bourgeoisie 1 -011000101111 Cogentrix 1 -011000101111 5,179 1 -011000101111 Off-The-Wall 1 -011000101111 jigsawlike 1 -011000101111 GREETING 1 -011000101111 288,374 1 -011000101111 Conforama 1 -011000101111 144,909 1 -011000101111 Care/Quest 1 -011000101111 Execute 1 -011000101111 343,440 1 -011000101111 Etiquettone 1 -011000101111 Triage 1 -011000101111 258,046 1 -011000101111 2,565 1 -011000101111 Modulus 1 -011000101111 Board-9,534,499 1 -011000101111 77,191 1 -011000101111 REVVING 1 -011000101111 Beaumont-Bennett 1 -011000101111 Integrator 1 -011000101111 polivinylchloride 1 -011000101111 5x7 1 -011000101111 Macy's-Federated 1 -011000101111 Ceremonial 1 -011000101111 One-track 1 -011000101111 2,155 1 -011000101111 385,838 1 -011000101111 425,599 1 -011000101111 Imposed 1 -011000101111 Exabyte 1 -011000101111 Casually 1 -011000101111 Enserve 1 -011000101111 mainframe-sized 1 -011000101111 thigh-high 1 -011000101111 Whoopps 1 -011000101111 5,872 1 -011000101111 Sumaria 1 -011000101111 Steaks 1 -011000101111 Kluin 1 -011000101111 011-33-74500010 1 -011000101111 011-691-9-797 1 -011000101111 011-441-491-4840 1 -011000101111 011-4122-31-1400 1 -011000101111 452,895 1 -011000101111 Decommissioning 1 -011000101111 140,866 1 -011000101111 Weill/Bertolt 1 -011000101111 Qualcorp 1 -011000101111 Go-go 1 -011000101111 Chempower 1 -011000101111 Qui 1 -011000101111 Gogh-like 1 -011000101111 Octogenarian 1 -011000101111 Memory-Tech 1 -011000101111 Preempted 1 -011000101111 Cancerous 1 -011000101111 Proclaiming 1 -011000101111 Pharmavite 1 -011000101111 Debt-futures 1 -011000101111 31,779 1 -011000101111 Creo 1 -011000101111 6,651 1 -011000101111 retractability 1 -011000101111 333,308 1 -011000101111 free-slung 1 -011000101111 70,902 1 -011000101111 Zycor 1 -011000101111 138,415 1 -011000101111 Harperner 1 -011000101111 Swimming/Diving 1 -011000101111 InView 1 -011000101111 Bush/Dole 1 -011000101111 Matchbook-sized 1 -011000101111 398,444 1 -011000101111 232,508 1 -011000101111 TAG-Heuer 1 -011000101111 67,257 1 -011000101111 Gasification 1 -011000101111 Maruetsu 1 -011000101111 water-efficient 1 -011000101111 45,117 1 -011000101111 MARKITSTAR 1 -011000101111 43,511 1 -011000101111 Alaina 1 -011000101111 38,703 1 -011000101111 Andrija 1 -011000101111 pop-leftish 1 -011000101111 37,935 1 -011000101111 59,217 1 -011000101111 AussieMen 1 -011000101111 648,169 1 -011000101111 Capcor 1 -011000101111 karapo 1 -011000101111 neo-Gothic 1 -011000101111 Paperworx 1 -011000101111 Foul-language 1 -011000101111 Iuiyu 1 -011000101111 197,891 1 -011000101111 1,794,737 1 -011000101111 InterMedia 1 -011000101111 MESSERSCHMITT-BOEKLOWBLOHM 1 -011000101111 Thirty-five-to-59-year-olds 1 -011000101111 55,042 1 -011000101111 Soybean-oil 2 -011000101111 Clearinghouse 2 -011000101111 PNS 2 -011000101111 MACK 2 -011000101111 Datacomputer 2 -011000101111 1975-1990 2 -011000101111 three-chamber 2 -011000101111 Aviall 2 -011000101111 Chesebrough-Ponds 2 -011000101111 HEATS 2 -011000101111 Angles 2 -011000101111 STEPS 2 -011000101111 Serv-Air 2 -011000101111 Turbines 2 -011000101111 Qualex 2 -011000101111 Wespace 2 -011000101111 FirstMiss 2 -011000101111 Bakeware 2 -011000101111 RJR-Macdonald 2 -011000101111 Carabo 2 -011000101111 Unimed 2 -011000101111 Enthone 2 -011000101111 Chemrex 2 -011000101111 Yousri 2 -011000101111 Hydroscience 2 -011000101111 DOUBTS 2 -011000101111 Beddows 2 -011000101111 non-Hodgkins 2 -011000101111 BAe-146 2 -011000101111 Bond-futures 2 -011000101111 15:00-17:00 2 -011000101111 10:00-22:00 2 -011000101111 Nobusuke 2 -011000101111 17:00-18:00 2 -011000101111 home-insurance 2 -011000101111 Vistakon 2 -011000101111 11:00-21:00 2 -011000101111 Charters 2 -011000101111 Zenger-Miller 2 -011000101111 APAC-Arizona 2 -011000101111 Steamroller 3 -011000101111 Barnes-Hind 3 -011000101111 Owns 3 -011000101111 Canine 3 -011000101111 Howard-Sloan 3 -011000101111 Metronet 3 -011000101111 Bertolt 3 -011000101111 12:00-22:00 3 -011000101111 Vishnu 4 -011000101111 Digilog 4 -011000101111 Poly-Tech 4 -011000101111 Bergslags 5 -011000101111 Textbook 5 -011000101111 V.I. 5 -011000101111 KRUPP 5 -011000101111 Gold-futures 5 -011000101111 Oil-futures 5 -011000101111 BusLease 5 -011000101111 Orit 5 -011000101111 Aristar 6 -011000101111 Plane 6 -011000101111 256-K 6 -011000101111 Plazas 6 -011000101111 TIE/communications 8 -011000101111 GEAR 8 -011000101111 Plasma 8 -011000101111 Fray 10 -011000101111 Cattle-futures 10 -011000101111 Kemal 10 -011000101111 Deutz 11 -011000101111 a-Discounted 12 -011000101111 B&E 13 -011000101111 Foggy 13 -011000101111 Wheat-futures 16 -011000101111 Soybean-futures 16 -011000101111 Cahora 20 -011000101111 Compound 30 -011000101111 Comanche 74 -011000101111 Peach 177 -011000101111 High-grade 191 -011000101111 Posted 393 -011000101111 Exporting 590 -011000101111 Telerate 684 -011000101111 Lambert 2180 -011000101111 Futures 1683 -011000110000 Leflaive 1 -011000110000 GUADALCANAL 1 -011000110000 Department. 1 -011000110000 Briefing-dominated 1 -011000110000 Atans 1 -011000110000 Reconstitution 1 -011000110000 AlbertoCardemil 1 -011000110000 Office. 1 -011000110000 Department/NAACP 1 -011000110000 Department-congressional 1 -011000110000 Party-backed 1 -011000110000 A330/340 1 -011000110000 Deptartment 1 -011000110000 chummily 1 -011000110000 steam-explosion 1 -011000110000 driving-hour 1 -011000110000 Cyane 1 -011000110000 Saint-Lazare 1 -011000110000 Corp.was 1 -011000110000 Department-headed 1 -011000110000 Buildup 1 -011000110000 Missurveys 1 -011000110000 Talal 1 -011000110000 Spelunking 1 -011000110000 sub-lieutenant 1 -011000110000 Department-appointed 1 -011000110000 Department-owned 1 -011000110000 Deartment 1 -011000110000 Bacons 1 -011000110000 University-EPA 1 -011000110000 Raspail 1 -011000110000 General-AP 1 -011000110000 Barberini 1 -011000110000 Department/ 1 -011000110000 consumer-litigation 1 -011000110000 Department-sponsored 1 -011000110000 ein 2 -011000110000 dei 2 -011000110000 Day. 2 -011000110000 Shortage 2 -011000110000 Growler 2 -011000110000 Department-CIA 2 -011000110000 Paik 3 -011000110000 Bank-McAllen 3 -011000110000 Lasalle 3 -011000110000 Deparment 3 -011000110000 Bonefish 3 -011000110000 Bank-Houston 3 -011000110000 Supplement 5 -011000110000 Sinnathuray 5 -011000110000 Exterieur 6 -011000110000 Southin 7 -011000110000 Racketeering 9 -011000110000 Analyses 9 -011000110000 Dept. 10 -011000110000 Briefing 12 -011000110000 Liacos 18 -011000110000 E&G 26 -011000110000 Legislatures 33 -011000110000 Departments 36 -011000110000 Scalia 225 -011000110000 Department 13612 -011000110000 Initiative 351 -011000110001 MacAulay 1 -011000110001 teaching-communications 1 -011000110001 Erxleben 1 -011000110001 Seaf 1 -011000110001 Shabsin 1 -011000110001 Soogil 1 -011000110001 Sung-Un 1 -011000110001 Rauff 1 -011000110001 Raybourn 1 -011000110001 Yonghua 1 -011000110001 Vellu 1 -011000110001 warrior-pilots 1 -011000110001 Tzong-shian 1 -011000110001 Futurama 1 -011000110001 Dunaev 1 -011000110001 Susonphitaphong 1 -011000110001 Broecker 1 -011000110001 Hoiseth 1 -011000110001 Zhengqing 1 -011000110001 Ruizhen 1 -011000110001 Brodar 1 -011000110001 nonenforcement 1 -011000110001 Whisenton 1 -011000110001 35/11 1 -011000110001 Meerestechnik 1 -011000110001 Clowns 1 -011000110001 Teele 1 -011000110001 Xiao-hua 1 -011000110001 Amours 1 -011000110001 Lagniappe 1 -011000110001 Shiau 1 -011000110001 Aeroplane 1 -011000110001 Ece 1 -011000110001 Gassama 1 -011000110001 Bybel 1 -011000110001 Ronay 1 -011000110001 Ghashir 1 -011000110001 Lites 1 -011000110001 Manisah 1 -011000110001 Il-the 1 -011000110001 Couvillion 1 -011000110001 Setters 1 -011000110001 Urso 1 -011000110001 Olier 1 -011000110001 Melsungen 1 -011000110001 Eiden 1 -011000110001 Juxian 1 -011000110001 scioness 1 -011000110001 el-Deeb 1 -011000110001 Patrolman 2 -011000110001 Mindich 2 -011000110001 Waitz 2 -011000110001 Innkeepers 2 -011000110001 Kiehl 2 -011000110001 Pavements 2 -011000110001 Hansmann 2 -011000110001 erosions 2 -011000110001 Palast 2 -011000110001 fig-leaf 2 -011000110001 Compatible 2 -011000110001 Mowers 2 -011000110001 Teen-Agers 2 -011000110001 Berlizov 2 -011000110001 Bar. 2 -011000110001 Spang 2 -011000110001 atoll 2 -011000110001 Conditional 2 -011000110001 Magician 2 -011000110001 faro 2 -011000110001 Makos 2 -011000110001 Roches 2 -011000110001 President-Secretary 2 -011000110001 Enigmas 2 -011000110001 Frenzy 2 -011000110001 speaker-elect 3 -011000110001 Jewels 3 -011000110001 Bidco 3 -011000110001 Glossary 3 -011000110001 019 3 -011000110001 Blumenfrucht 3 -011000110001 Descendants 3 -011000110001 Journal-Bulletin 3 -011000110001 craw 3 -011000110001 Greening 3 -011000110001 Shroud 3 -011000110001 Rape 5 -011000110001 Fellowship 5 -011000110001 Roster 5 -011000110001 Synod 5 -011000110001 Clerk 6 -011000110001 Penitentiary 6 -011000110001 Bombeck 7 -011000110001 Observateur 9 -011000110001 Archdiocese 10 -011000110001 Advocate 11 -011000110001 Allensbach 11 -011000110001 KK 12 -011000110001 Minit-Lube 19 -011000110001 Borough 31 -011000110001 Medal 37 -011000110001 Gang 50 -011000110001 Prevention 50 -011000110001 Preservation 57 -011000110001 Sultan 60 -011000110001 Declaration 81 -011000110001 borough 87 -011000110001 Study 130 -011000110001 Strait 144 -011000110001 Voice 169 -011000110001 Comptroller 250 -011000110001 Guild 286 -011000110001 Chamber 414 -011000110001 Organization 1701 -011000110001 Bureau 1906 -011000110001 Office 2444 -011000110001 Ministry 2472 -011000110001 University 6913 -011000110010 Nigam 1 -011000110010 Plast 1 -011000110010 NEDERLANDEN 1 -011000110010 Rescripts 1 -011000110010 aggrandizes 1 -011000110010 Reveiew 1 -011000110010 Hedland 1 -011000110010 Assoociation 1 -011000110010 Iberoamericana 1 -011000110010 Opec 1 -011000110010 lease-offering 1 -011000110010 O-Ring 1 -011000110010 sooners 1 -011000110010 Kelang 1 -011000110010 Rioux 1 -011000110010 Distict 1 -011000110010 Waffelmaschinen 1 -011000110010 Cacao 1 -011000110010 Dutchmen 1 -011000110010 Pilaf 1 -011000110010 Gasunie 1 -011000110010 Rutilee 1 -011000110010 Ufa 1 -011000110010 Academies 1 -011000110010 DRINKS 1 -011000110010 Institue 1 -011000110010 Act-guaranteed 1 -011000110010 not-so-crypto-pros 1 -011000110010 MEW 1 -011000110010 ARAL-88 1 -011000110010 dialers 1 -011000110010 Vertriebs 1 -011000110010 Mobilfunk 1 -011000110010 Electrica-Fenosa 1 -011000110010 Munchen 1 -011000110010 Bank/IMF 1 -011000110010 Check-List 1 -011000110010 NARROWING 1 -011000110010 Detachment 1 -011000110010 Closest 2 -011000110010 Association/College 2 -011000110010 Uitgeversbedrijven 2 -011000110010 Gardner-Denver 2 -011000110010 Norvo 2 -011000110010 OCCIDENTALE 2 -011000110010 Bank/Tidewater 2 -011000110010 Gallipoli 2 -011000110010 Inroads 2 -011000110010 Electrica 2 -011000110010 Disobedience 2 -011000110010 Wabco 2 -011000110010 Visy 2 -011000110010 Chorale 2 -011000110010 Amihud 2 -011000110010 Samrin 2 -011000110010 Janes 2 -011000110010 Inevitability 2 -011000110010 Kaufhaus 2 -011000110010 Turbomeca 2 -011000110010 1,657 2 -011000110010 AGACHE 2 -011000110010 Sportsmen 3 -011000110010 Stollar 3 -011000110010 PIRELLI 3 -011000110010 Mammals 3 -011000110010 Einfuhr 3 -011000110010 Insitutes 3 -011000110010 Hydrocarbons 3 -011000110010 Exhibitions 3 -011000110010 Cranes 3 -011000110010 Manufacture 3 -011000110010 Gelatine 4 -011000110010 Beginnings 4 -011000110010 Delusions 4 -011000110010 ITALIANA 4 -011000110010 Oceans 5 -011000110010 Commitment 5 -011000110010 Receipt 5 -011000110010 Badge 5 -011000110010 SSB 5 -011000110010 Landerbank 5 -011000110010 Delegation 6 -011000110010 Metalicos 6 -011000110010 Association-College 6 -011000110010 Alchemy 6 -011000110010 Missions 7 -011000110010 Tragedy 7 -011000110010 Telesystem 7 -011000110010 Middenstandsbank 7 -011000110010 Certificate 7 -011000110010 Tooling 8 -011000110010 Kontrollbank 8 -011000110010 Coins 9 -011000110010 Ministries 10 -011000110010 Wintershall 10 -011000110010 Slough 11 -011000110010 Origins 12 -011000110010 Jewellers 13 -011000110010 Grapes 13 -011000110010 Laenderbank 14 -011000110010 MerchantsBank 14 -011000110010 Witches 14 -011000110010 Dorland 24 -011000110010 Pagette 24 -011000110010 Biology 25 -011000110010 PTA 26 -011000110010 Mediation 52 -011000110010 Spirit 62 -011000110010 Aerospatiale 66 -011000110010 Fruit 92 -011000110010 Confederation 96 -011000110010 Order 123 -011000110010 Chiefs 149 -011000110010 Institutes 203 -011000110010 Palace 215 -011000110010 Aeronautics 289 -011000110010 Bancorp. 493 -011000110010 Conference 632 -011000110010 Bank 22457 -011000110010 Alliance 667 -011000110011 Sweaters 1 -011000110011 Shanty 1 -011000110011 Lusso 1 -011000110011 Numbering 1 -011000110011 Pvt. 1 -011000110011 SHOP 1 -011000110011 Loaf 1 -011000110011 Pfandbriefanstalt 1 -011000110011 BanCorp. 1 -011000110011 Pharmaka-Gesellschaft 1 -011000110011 Historiques 1 -011000110011 19-1/6 1 -011000110011 Siciliani 1 -011000110011 Shrines 1 -011000110011 Chongfa 1 -011000110011 Devotion 1 -011000110011 Committeeman 1 -011000110011 Bootery 1 -011000110011 Army. 1 -011000110011 arketing 1 -011000110011 BBQ 1 -011000110011 Stewardship 1 -011000110011 Osaky 1 -011000110011 Halmen 1 -011000110011 League. 1 -011000110011 Donegal 1 -011000110011 Carozza 1 -011000110011 Beaujolaise 1 -011000110011 AFRAID 1 -011000110011 Pacts 1 -011000110011 Lyngdoh 1 -011000110011 Loaeza 1 -011000110011 Prerogative 1 -011000110011 Xmas 1 -011000110011 Draught 1 -011000110011 Aurabauch 1 -011000110011 Brigades-style 1 -011000110011 FIG 1 -011000110011 Club-basher 1 -011000110011 Lointain 1 -011000110011 Curtains 1 -011000110011 Fairytales 1 -011000110011 Collides 1 -011000110011 1386/86 1 -011000110011 Ponchartrain 1 -011000110011 Chummy 1 -011000110011 Oxymoron 1 -011000110011 Allegany 1 -011000110011 Eyres 1 -011000110011 Notre-Dame 1 -011000110011 Pontiff 1 -011000110011 Pass-throughs 1 -011000110011 box/automaton 1 -011000110011 ahora 1 -011000110011 Quests 1 -011000110011 Hosiptal 1 -011000110011 Healthcorp 1 -011000110011 shot-putters 1 -011000110011 Spatiale 1 -011000110011 Unitrust 1 -011000110011 Humiliation 1 -011000110011 Taamu 1 -011000110011 Bleaker 1 -011000110011 Brickle 1 -011000110011 Vert 1 -011000110011 MV/Family 1 -011000110011 2358 1 -011000110011 Bucanneers 1 -011000110011 Resse 1 -011000110011 97-322 1 -011000110011 C-V 1 -011000110011 WEARY 1 -011000110011 Iscovesco 1 -011000110011 Liben 1 -011000110011 Race. 1 -011000110011 Disgrace 1 -011000110011 Ealy 1 -011000110011 Sepulcher 1 -011000110011 Aldwin 1 -011000110011 Colborne 1 -011000110011 1078 1 -011000110011 Johnson/Y&R 1 -011000110011 Genossenesschaftsbank 1 -011000110011 I85 1 -011000110011 Guichard 1 -011000110011 Rundschau 1 -011000110011 Tribunals 1 -011000110011 81,687 1 -011000110011 Antelopes 1 -011000110011 Bartelstein 1 -011000110011 Siu-Kwong 1 -011000110011 Gie 1 -011000110011 91452 1 -011000110011 Contentions 1 -011000110011 Styx 1 -011000110011 Communications. 1 -011000110011 Convairs 1 -011000110011 Seashore 1 -011000110011 Nevadas 1 -011000110011 Journal/LEXIS 1 -011000110011 International-Japan 1 -011000110011 Rosarians 1 -011000110011 Bank-South 1 -011000110011 Grassland 1 -011000110011 Orgy 2 -011000110011 Peaks 2 -011000110011 Porkettes 2 -011000110011 Arrays 2 -011000110011 Glories 2 -011000110011 Pies 2 -011000110011 engravers 2 -011000110011 Sann 2 -011000110011 Moresby 2 -011000110011 Varieties 2 -011000110011 Leaguer 2 -011000110011 Goddesses 2 -011000110011 Mojahedin 2 -011000110011 Administration. 2 -011000110011 Revolutionaries 2 -011000110011 Posturing 2 -011000110011 Grocer 2 -011000110011 snowpack 2 -011000110011 Stockings 2 -011000110011 Fairs 2 -011000110011 Casaroli 2 -011000110011 House. 2 -011000110011 Juices 2 -011000110011 Ridinghood 2 -011000110011 Chaser 2 -011000110011 Degree 2 -011000110011 Epopt 2 -011000110011 Segments 2 -011000110011 Styling 2 -011000110011 Gastronomy 2 -011000110011 Guru 2 -011000110011 Insititute 2 -011000110011 Harvesters 2 -011000110011 Underworld 2 -011000110011 Patrolmen 2 -011000110011 Rhythms 2 -011000110011 Zinger 2 -011000110011 Grouping 2 -011000110011 Roylan 2 -011000110011 Briefs 2 -011000110011 Geographics 2 -011000110011 Caddy 2 -011000110011 Ausgleichsbank 2 -011000110011 Ryders 2 -011000110011 Mu 3 -011000110011 Porcelain 3 -011000110011 Structure 3 -011000110011 Raceway 3 -011000110011 Professions 3 -011000110011 Assn 3 -011000110011 Saves 3 -011000110011 Wagnerians 3 -011000110011 Transformation 3 -011000110011 Atrium 3 -011000110011 Rovers 3 -011000110011 Mints 3 -011000110011 Stairs 3 -011000110011 Welders 3 -011000110011 Teaches 3 -011000110011 Roost 3 -011000110011 Freemasonry 3 -011000110011 Week. 4 -011000110011 committeewoman 4 -011000110011 Assn. 4 -011000110011 Bundesbahn 4 -011000110011 Omen 4 -011000110011 Implications 4 -011000110011 Marketeers 4 -011000110011 TELEPHONIQUES 4 -011000110011 Council. 4 -011000110011 Treaties 4 -011000110011 Treuhand 4 -011000110011 Employed 4 -011000110011 Bulbs 4 -011000110011 Incidence 4 -011000110011 Zil 4 -011000110011 Molders 5 -011000110011 Kea 5 -011000110011 Exam 5 -011000110011 Mania 5 -011000110011 Conservatory 5 -011000110011 Regiment 5 -011000110011 Olmsted 5 -011000110011 Brigades 5 -011000110011 Ghosts 5 -011000110011 Assocation 5 -011000110011 Woodman 5 -011000110011 Associaton 5 -011000110011 Cruisers 6 -011000110011 Faction 6 -011000110011 Seizure 6 -011000110011 Blend 6 -011000110011 Regime 6 -011000110011 Cycles 6 -011000110011 IX 6 -011000110011 Advisor 6 -011000110011 Pad 6 -011000110011 Association. 6 -011000110011 Cellars 7 -011000110011 Revival 7 -011000110011 Expressions 7 -011000110011 Goddess 7 -011000110011 Madre 7 -011000110011 Fighters 8 -011000110011 Noon 8 -011000110011 Address 8 -011000110011 Microbiology 8 -011000110011 Speedway 8 -011000110011 Apartments 8 -011000110011 Bubble 9 -011000110011 Apparatus 10 -011000110011 Genossenschaftsbank 10 -011000110011 Nouveau 11 -011000110011 Maiden 11 -011000110011 Memoirs 11 -011000110011 Woodworkers 12 -011000110011 Observatory 12 -011000110011 Inquiry 12 -011000110011 Shipyard 12 -011000110011 Effect 12 -011000110011 Ensemble 13 -011000110011 Ordinance 15 -011000110011 Grail 16 -011000110011 Workshop 16 -011000110011 Registry 17 -011000110011 Seminary 17 -011000110011 Leaguers 17 -011000110011 Archives 17 -011000110011 Conduct 19 -011000110011 F.A. 19 -011000110011 Societies 19 -011000110011 Reservation 19 -011000110011 Update 19 -011000110011 Handbook 19 -011000110011 Almanac 20 -011000110011 Choir 20 -011000110011 Encyclopedia 20 -011000110011 Guardsmen 21 -011000110011 Manual 22 -011000110011 Forests 24 -011000110011 Boards 24 -011000110011 Enquirer 25 -011000110011 Galleries 25 -011000110011 Oy 31 -011000110011 Surgery 32 -011000110011 Legion 33 -011000110011 Pit 33 -011000110011 Railways 34 -011000110011 Course 35 -011000110011 Consortium 38 -011000110011 Marti 38 -011000110011 Dictionary 39 -011000110011 Secretariat 44 -011000110011 Heat 45 -011000110011 Bulletin 47 -011000110011 Associations 50 -011000110011 Refuge 52 -011000110011 Province 54 -011000110011 Curtain 56 -011000110011 Rentals 58 -011000110011 Bonds-b 62 -011000110011 Assessment 72 -011000110011 Roundtable 76 -011000110011 Sector 79 -011000110011 Collection 79 -011000110011 Settlements 83 -011000110011 Brotherhood 103 -011000110011 Drive 107 -011000110011 Mall 115 -011000110011 Cause 118 -011000110011 Endowment 122 -011000110011 Award 123 -011000110011 Orchestra 127 -011000110011 Coalition 168 -011000110011 Corporation 171 -011000110011 Library 189 -011000110011 Ballet 190 -011000110011 Gallery 204 -011000110011 Laboratory 248 -011000110011 Festival 255 -011000110011 Institutions 329 -011000110011 Centers 390 -011000110011 Project 430 -011000110011 Assembly 441 -011000110011 Studies 460 -011000110011 Division 508 -011000110011 Academy 510 -011000110011 Federation 588 -011000110011 Airport 617 -011000110011 Museum 739 -011000110011 Authority 808 -011000110011 League 957 -011000110011 Foundation 994 -011000110011 College 1121 -011000110011 Society 1150 -011000110011 School 1841 -011000110011 Council 2434 -011000110011 Center 2690 -011000110011 Association 7455 -011000110011 Institute 3901 -01100011010 Uneffected 1 -01100011010 Shuoxun 1 -01100011010 Administration-approved 1 -01100011010 Birdcage 1 -01100011010 fellow-travelling 1 -01100011010 Jersild 1 -01100011010 Creasemann 1 -01100011010 Arsenals 1 -01100011010 Rivadeneira 1 -01100011010 Ciekanski 1 -01100011010 Bonis 1 -01100011010 chic. 1 -01100011010 Beeferman 1 -01100011010 Jiru 1 -01100011010 Shu-jen 1 -01100011010 Jip 1 -01100011010 Alavi 1 -01100011010 Ingersol 1 -01100011010 Meadway 1 -01100011010 Bethancourt 1 -01100011010 Mechanism 1 -01100011010 Zuguang 1 -01100011010 factions-another 1 -01100011010 Shudong 1 -01100011010 Jinlan 1 -01100011010 Yakub 1 -01100011010 crats 1 -01100011010 Su-yung 1 -01100011010 Chi-chu 1 -01100011010 panel. 1 -01100011010 Barnaard 1 -01100011010 microwave-owner 1 -01100011010 Armella 1 -01100011010 Daniken 1 -01100011010 Coppie 1 -01100011010 Trik 1 -01100011010 Chi-yau 1 -01100011010 Xinzhen 1 -01100011010 Ju-Yung 1 -01100011010 Bin-Nahyan 1 -01100011010 Xuejian 1 -01100011010 Committe 1 -01100011010 Ziegesar 1 -01100011010 Corbala 1 -01100011010 C.A.-Citimerca 1 -01100011010 sweeties 1 -01100011010 Weyer 1 -01100011010 Fissore 1 -01100011010 Marclay 1 -01100011010 Lorimer 1 -01100011010 Gasztowtt 1 -01100011010 Xiaoyue 1 -01100011010 Hor 1 -01100011010 taxwriters 1 -01100011010 Geslin 1 -01100011010 Tavara 1 -01100011010 1185-1868 1 -01100011010 Abou-Afia 1 -01100011010 Administraton 1 -01100011010 Wilkerson-Hollins 1 -01100011010 Golzman 1 -01100011010 Chia-wen 1 -01100011010 Spendthrifts 1 -01100011010 Obrador 1 -01100011010 Statecraft 1 -01100011010 Geerdes 1 -01100011010 Alami 1 -01100011010 Efim 1 -01100011010 Wenhua 1 -01100011010 Germeten 1 -01100011010 203H 1 -01100011010 Committeee 1 -01100011010 Hung-chuan 1 -01100011010 Ullmann 1 -01100011010 Hsinliang 1 -01100011010 Worldscan 1 -01100011010 See-ming 1 -01100011010 Yunqing 1 -01100011010 Zhenglong 1 -01100011010 Banc-Corp. 1 -01100011010 Glub 1 -01100011010 Triltsch 1 -01100011010 Larios 1 -01100011010 Baldocchi 1 -01100011010 Manotoc 1 -01100011010 Scrumptious 1 -01100011010 Mingqun 1 -01100011010 Sub-Group 1 -01100011010 Guojian 1 -01100011010 Muqiao 1 -01100011010 In-Yong 1 -01100011010 Beadsman 1 -01100011010 Ramoowalia 1 -01100011010 Barahena 1 -01100011010 Altenburger 1 -01100011010 votecounters 1 -01100011010 Milmo 1 -01100011010 Choong-Sung 1 -01100011010 Party-controlled 1 -01100011010 Duanxu 1 -01100011010 Zhiren 1 -01100011010 Shcheglov 1 -01100011010 Multiplier 1 -01100011010 Bjelke-Peterson 1 -01100011010 Gremp 1 -01100011010 Stancill 1 -01100011010 subcommmittee 1 -01100011010 Peide 1 -01100011010 Hader 1 -01100011010 Sprauve 1 -01100011010 Openers 1 -01100011010 Nears 1 -01100011010 Wetenhall 1 -01100011010 Chi-Cheng 1 -01100011010 Yueh-chin 1 -01100011010 Falkenhorst 1 -01100011010 Pacioli 1 -01100011010 Fuerstenau 1 -01100011010 Viso 1 -01100011010 Wenhao 1 -01100011010 Shizhong 1 -01100011010 Kanin 1 -01100011010 Werssowetz 1 -01100011010 Nostitz 1 -01100011010 Breland 1 -01100011010 subcommitteee 1 -01100011010 Set-Asides 1 -01100011010 hang-out 1 -01100011010 Demosthenes 1 -01100011010 Galino 1 -01100011010 Funderburke 1 -01100011010 Shanmou 1 -01100011010 Zilin 1 -01100011010 Coues 1 -01100011010 Clementine 1 -01100011010 Baotao 1 -01100011010 Organziation 1 -01100011010 Pazzos 1 -01100011010 Chung-tung 1 -01100011010 King-yuk 1 -01100011010 Cabiallavetta 1 -01100011010 cravenness 1 -01100011010 Opportun 1 -01100011010 Debevois 1 -01100011010 Galvis 1 -01100011010 Conventioneers 1 -01100011010 Westrem 1 -01100011010 Autocracy 1 -01100011010 Potholm 1 -01100011010 Hui-yuan 1 -01100011010 Fai 1 -01100011010 Mini-Marshmallows 1 -01100011010 Xulan 1 -01100011010 Ayub 1 -01100011010 theory-and 1 -01100011010 Lambertsen 1 -01100011010 Democratic-Socialist-Flemish 1 -01100011010 fluctions 1 -01100011010 Salive 1 -01100011010 Tangle 1 -01100011010 Schaff 1 -01100011010 Boda 1 -01100011010 Huanting 1 -01100011010 alter-ego 1 -01100011010 Li-an 1 -01100011010 Yen-huan 1 -01100011010 Bielas 1 -01100011010 Gaos 1 -01100011010 Hsing-kuo 1 -01100011010 Chirativat 1 -01100011010 Yizi 1 -01100011010 Lautz 1 -01100011010 Schilcher 1 -01100011010 Hertzen 1 -01100011010 Qingzheng 1 -01100011010 Rongnan 1 -01100011010 Yunying 1 -01100011010 Ta-Lin 1 -01100011010 Ratz 1 -01100011010 Shih-yuan 1 -01100011010 Tsao-teh 1 -01100011010 Gershon/Pon/GGk 1 -01100011010 Jellinek 1 -01100011010 Chuanfang 1 -01100011010 Tobacs 1 -01100011010 Ponzoni 1 -01100011010 Coello 1 -01100011010 Yizhou 1 -01100011010 Ideen 1 -01100011010 Deveopment 1 -01100011010 Committtee 1 -01100011010 big-wigs 1 -01100011010 Malpractices 1 -01100011010 Cuccia 1 -01100011010 Guixian 1 -01100011010 Qianxu 1 -01100011010 Kehua 1 -01100011010 Haerpfer 1 -01100011010 Barcelo 1 -01100011010 Mein 1 -01100011010 Zigesar 1 -01100011010 Bingliang 1 -01100011010 Laureates 1 -01100011010 professoriat 1 -01100011010 Agosto 1 -01100011010 Ageny 1 -01100011010 Yongjie 1 -01100011010 Multi-Wheeled 1 -01100011010 Holleman 1 -01100011010 convasser 1 -01100011010 Baotai 1 -01100011010 administrator/regulators 1 -01100011010 Erjun 1 -01100011010 1846-1876 1 -01100011010 Party-dominated 1 -01100011010 Hypothesis 1 -01100011010 Gronan 1 -01100011010 Enclosure 1 -01100011010 Winterfeld 1 -01100011010 deWindt 1 -01100011010 Commiteee 1 -01100011010 al-Omair 1 -01100011010 demogogy 1 -01100011010 Muckenfuss 1 -01100011010 Fabregat 1 -01100011010 Pathet 1 -01100011010 Trafficking 1 -01100011010 Waldau 1 -01100011010 Kingpin 1 -01100011010 Yuen-chun 1 -01100011010 Hang-ming 1 -01100011010 Owasso 1 -01100011010 Xinyu 1 -01100011010 Huanyou 1 -01100011010 Buek 1 -01100011010 Mahecha 1 -01100011010 Yuping 1 -01100011010 Dianlai 1 -01100011010 Erred 1 -01100011010 Madrid-Salinas 1 -01100011010 Domberger 1 -01100011010 Comnmittee 1 -01100011010 Dallastown 1 -01100011010 un-electable 1 -01100011010 Networkknown 1 -01100011010 Spreckelsen 1 -01100011010 Hari 1 -01100011010 Govt 1 -01100011010 Canonici 1 -01100011010 Noorani 1 -01100011010 Graphoconsultants 1 -01100011010 Stolzing 1 -01100011010 JOCKEYING 1 -01100011010 Wersebe 1 -01100011010 ,47 1 -01100011010 Enterprisers 1 -01100011010 Siu-leun 1 -01100011010 Chien-kuo 1 -01100011010 Yijin 1 -01100011010 conventioners 1 -01100011010 Hoyong 1 -01100011010 Keqiang 1 -01100011010 Jianhua 1 -01100011010 al-Zouman 1 -01100011010 muscatel 1 -01100011010 Karre 1 -01100011010 Anguiano 1 -01100011010 LOTS 1 -01100011010 Picot 1 -01100011010 Berthier 1 -01100011010 Bilgore 1 -01100011010 Bistricer 1 -01100011010 Epigraphs 1 -01100011010 Inkpen 1 -01100011010 Xing-Rong 1 -01100011010 Party/NPA 1 -01100011010 Keli 1 -01100011010 Rapide 1 -01100011010 Cho-cheung 1 -01100011010 Guimet 1 -01100011010 also-runs 1 -01100011010 commericals 1 -01100011010 Yiyong 1 -01100011010 Chang-lo 1 -01100011010 caucus-goer 1 -01100011010 Rong-i 1 -01100011010 Aubin 2 -01100011010 Bressersdorf 2 -01100011010 Eschenbach 2 -01100011010 Yuanwen 2 -01100011010 Bind 2 -01100011010 Bank-Dallas 2 -01100011010 Lamas 2 -01100011010 Somsakulrungrueng 2 -01100011010 Administration-insured 2 -01100011010 Hian 2 -01100011010 Stumbles 2 -01100011010 Vasena 2 -01100011010 Rovere 2 -01100011010 Helpline 2 -01100011010 Kuo-shu 2 -01100011010 Crosswell 2 -01100011010 Tellez 2 -01100011010 Recklinghausen 2 -01100011010 Delon 2 -01100011010 Tianming 2 -01100011010 Wilentz 2 -01100011010 Dannis 2 -01100011010 Siyuan 2 -01100011010 Eng 2 -01100011010 Cardoza 2 -01100011010 Siemaszko 2 -01100011010 Liqueur 2 -01100011010 blueblood 2 -01100011010 Tieying 2 -01100011010 Suggests 2 -01100011010 Texas-style 2 -01100011010 Junsheng 2 -01100011010 Parada 2 -01100011010 Barcena 2 -01100011010 Bothmer 2 -01100011010 Scoreboard 2 -01100011010 Administration-guaranteed 2 -01100011010 Cheat 2 -01100011010 Cordaro 2 -01100011010 Tellem 2 -01100011010 Liebermann 2 -01100011010 Hairstyle 2 -01100011010 Weiqun 2 -01100011010 Hoa 2 -01100011010 Ferran 2 -01100011010 Attache 2 -01100011010 Shaozhi 2 -01100011010 Begonia 2 -01100011010 Saabye 2 -01100011010 Ond 2 -01100011010 Larrain 2 -01100011010 FRUSTRATION 2 -01100011010 Aeronautica 2 -01100011010 Skaneateles 2 -01100011010 Wan-an 2 -01100011010 Gacha 2 -01100011010 McGivern 2 -01100011010 Telethon 2 -01100011010 Atance 2 -01100011010 Yegen 2 -01100011010 Honored 2 -01100011010 Cheats 2 -01100011010 remarries 2 -01100011010 Spreader 2 -01100011010 Afshar 2 -01100011010 Crack-Up 2 -01100011010 Committee. 2 -01100011010 Kozai 2 -01100011010 S.N.C. 2 -01100011010 Lijun 3 -01100011010 Commmittee 3 -01100011010 Directe 3 -01100011010 Zhiqiang 3 -01100011010 1989-A 3 -01100011010 Squash 3 -01100011010 Arizpe 3 -01100011010 Exemption 3 -01100011010 Theology 3 -01100011010 Cooks 3 -01100011010 Cheevers 3 -01100011010 Castellanos 3 -01100011010 Qingfeng 3 -01100011010 Merkley 3 -01100011010 Lecturer 3 -01100011010 Xiang 3 -01100011010 Moltke 3 -01100011010 Bidder 3 -01100011010 Souk 3 -01100011010 Ranpura 3 -01100011010 INVENTORY 3 -01100011010 Ratcliffe 3 -01100011010 Convergence 3 -01100011010 Commitee 3 -01100011010 Voznesensky 3 -01100011010 Jirga 3 -01100011010 Invaders 3 -01100011010 Served 3 -01100011010 F.S.A. 3 -01100011010 Gullet 3 -01100011010 Londono 3 -01100011010 Ruete 3 -01100011010 Shoals 3 -01100011010 Exch 3 -01100011010 Modem 4 -01100011010 Boufford 4 -01100011010 Littel 4 -01100011010 Greyerz 4 -01100011010 Ka-Shing 4 -01100011010 HEAP 4 -01100011010 Ambrosio 4 -01100011010 Chacon 4 -01100011010 Scheme 4 -01100011010 Harries 4 -01100011010 Chalasani 4 -01100011010 Schwarz-Schilling 4 -01100011010 Allowance 4 -01100011010 Puttkamer 4 -01100011010 Bleu 4 -01100011010 Collectibles 4 -01100011010 Nationaux 4 -01100011010 Timberlands 4 -01100011010 Package 5 -01100011010 Xiannian 5 -01100011010 Circles 5 -01100011010 Ruihuan 5 -01100011010 Curriculum 5 -01100011010 Lineas 5 -01100011010 Fiord 5 -01100011010 Netzer 5 -01100011010 Kemi 5 -01100011010 Etzioni 5 -01100011010 Zaikov 5 -01100011010 Dussen 5 -01100011010 Kyong 5 -01100011010 Seminar 5 -01100011010 Brosnan 5 -01100011010 Yearbook 5 -01100011010 Lantzsch 5 -01100011010 Seldeneck 5 -01100011010 Bluffs 6 -01100011010 Listings 6 -01100011010 Scare 6 -01100011010 Sandwiches 6 -01100011010 Bacal 6 -01100011010 Lubbers 6 -01100011010 Zinser 6 -01100011010 Millau 6 -01100011010 Adminstration 6 -01100011010 Pati 6 -01100011010 Codes 6 -01100011010 Abstract 7 -01100011010 Parity 7 -01100011010 Yul 7 -01100011010 Bust 7 -01100011010 Manifesto 7 -01100011010 Saloon 8 -01100011010 Joong 8 -01100011010 Choong 8 -01100011010 Hoon 8 -01100011010 Galicia 8 -01100011010 Sassoon 8 -01100011010 Corral 8 -01100011010 bashers 8 -01100011010 Yunis 8 -01100011010 Pub 9 -01100011010 Staffing 9 -01100011010 Telescope 9 -01100011010 Councils 9 -01100011010 Mechanisms 9 -01100011010 laureates 10 -01100011010 Estrada 10 -01100011010 Bunch 10 -01100011010 Blvd. 11 -01100011010 Privilege 11 -01100011010 Rebellion 11 -01100011010 Weizsaecker 11 -01100011010 Scientist 11 -01100011010 Grows 12 -01100011010 Fraga 12 -01100011010 Kumar 12 -01100011010 Arx 13 -01100011010 Hwa 13 -01100011010 Hayek 13 -01100011010 Gym 13 -01100011010 Squad 13 -01100011010 Trap 14 -01100011010 Dal 14 -01100011010 Platform 14 -01100011010 Lizhi 14 -01100011010 Parc 14 -01100011010 Mena 14 -01100011010 Yong 15 -01100011010 Invitational 15 -01100011010 Guevara 15 -01100011010 Grocers 15 -01100011010 Ju 18 -01100011010 Sword 19 -01100011010 Macoutes 19 -01100011010 Nostra 20 -01100011010 Rivas 20 -01100011010 Auditorium 21 -01100011010 Plantation 21 -01100011010 Gras 21 -01100011010 Parkway 23 -01100011010 Industrier 24 -01100011010 KGaA 25 -01100011010 Amendments 25 -01100011010 Activities 26 -01100011010 Forecast 26 -01100011010 Region 29 -01100011010 Priorities 30 -01100011010 Landing 30 -01100011010 Tournament 32 -01100011010 Lacroix 34 -01100011010 Emporium 34 -01100011010 Flyer 34 -01100011010 Hosts 36 -01100011010 Newsletter 36 -01100011010 Syndrome 38 -01100011010 Prizes 39 -01100011010 Tribunal 39 -01100011010 Trials 42 -01100011010 laureate 42 -01100011010 Theory 42 -01100011010 Hole 43 -01100011010 Grants 45 -01100011010 Trends 46 -01100011010 BV 49 -01100011010 Committees 51 -01100011010 Indicators 53 -01100011010 Quartet 56 -01100011010 Wing 56 -01100011010 Principles 56 -01100011010 Abuse 57 -01100011010 Dam 58 -01100011010 Facility 63 -01100011010 Awards 65 -01100011010 Poll 66 -01100011010 Crisis 70 -01100011010 Dior 75 -01100011010 Branch 81 -01100011010 Magazines 83 -01100011010 Rent 90 -01100011010 Zone 92 -01100011010 Shuttle 92 -01100011010 Advocates 109 -01100011010 Stadium 111 -01100011010 Outlook 122 -01100011010 Caucus 122 -01100011010 Movement 124 -01100011010 Command 146 -01100011010 Survey 157 -01100011010 Station 170 -01100011010 Analysis 176 -01100011010 Place 197 -01100011010 Prize 209 -01100011010 Digest 209 -01100011010 Subcommittee 216 -01100011010 Theatre 216 -01100011010 Letter 233 -01100011010 Plans 249 -01100011010 Cooperation 251 -01100011010 Convention 278 -01100011010 Advisers 280 -01100011010 Theater 317 -01100011010 Front 319 -01100011010 Week 462 -01100011010 Program 469 -01100011010 Plan 471 -01100011010 Review 533 -01100011010 Club 1045 -01100011010 III 1109 -01100011010 Press 1180 -01100011010 Day 1320 -01100011010 Agency 2026 -01100011010 Act 2688 -01100011010 Administration 3245 -01100011010 Fund 3616 -01100011010 Party 3807 -01100011010 Jr. 4212 -01100011010 Committee 5504 -0110001101100 Practioners 1 -0110001101100 Commissiion 1 -0110001101100 Fluff 1 -0110001101100 Ouitstanding 1 -0110001101100 Doorman 1 -0110001101100 Backgrounder 1 -0110001101100 Workbook 1 -0110001101100 XXVIII 1 -0110001101100 FAITHFULS 1 -0110001101100 TOUR 1 -0110001101100 PEGS 1 -0110001101100 COUPLES 1 -0110001101100 Caeciliae 1 -0110001101100 Tumble 1 -0110001101100 Department-related 1 -0110001101100 UNCOVERED 1 -0110001101100 ASSISTANTS 1 -0110001101100 Admnistration 1 -0110001101100 THEMES 1 -0110001101100 Vs 1 -0110001101100 9:55/ 1 -0110001101100 SCHULMAN 1 -0110001101100 Hak 1 -0110001101100 Blindly 1 -0110001101100 PERISH 1 -0110001101100 SCRAMBLED 1 -0110001101100 PREPARES 1 -0110001101100 SKATING 1 -0110001101100 Two-Step 1 -0110001101100 854-641 1 -0110001101100 ANYMORE 1 -0110001101100 LONGEVITY 1 -0110001101100 CLEARLY 1 -0110001101100 RB055 1 -0110001101100 Stokers 1 -0110001101100 Assocs 1 -0110001101100 Comisssion 1 -0110001101100 SOUVENIRS 1 -0110001101100 MORNING 1 -0110001101100 CHEATING 1 -0110001101100 SB-152 1 -0110001101100 Purygin 1 -0110001101100 remainedlight 1 -0110001101100 437.0 1 -0110001101100 PULSE 1 -0110001101100 Service-qualified 1 -0110001101100 Banzi 1 -0110001101100 MISFIRE 1 -0110001101100 Return-free 1 -0110001101100 Widower 1 -0110001101100 FAMILIARITY 2 -0110001101100 Ladder 2 -0110001101100 Commmission 2 -0110001101100 Dandy 2 -0110001101100 DECISIONS 2 -0110001101100 KIT 2 -0110001101100 Out-of-Doors 2 -0110001101100 Debacle 2 -0110001101100 Commisson 3 -0110001101100 Commisssion 3 -0110001101100 Commision 6 -0110001101100 Spotlight 8 -0110001101100 Commission 9902 -0110001101100 Ruling 49 -0110001101101 PVBA 1 -0110001101101 Zamona 1 -0110001101101 80,558 1 -0110001101101 necessaries 1 -0110001101101 megachange 1 -0110001101101 brewmasters 1 -0110001101101 Steamatic 1 -0110001101101 Nastase 1 -0110001101101 murray 1 -0110001101101 Ibragimbekov 1 -0110001101101 Grievance 1 -0110001101101 Entrepose 1 -0110001101101 SERIES 1 -0110001101101 wala 1 -0110001101101 Pandang 1 -0110001101101 accordingingly 1 -0110001101101 Leghorn 1 -0110001101101 TaylorUSA 1 -0110001101101 Beat. 1 -0110001101101 Shlaimon 1 -0110001101101 Angrily 1 -0110001101101 Instants 1 -0110001101101 brisket 1 -0110001101101 Liens 1 -0110001101101 Kote 1 -0110001101101 Schori 1 -0110001101101 Quadrangle 1 -0110001101101 Adar 1 -0110001101101 1199P 1 -0110001101101 PvbA 1 -0110001101101 Chevrolet-Oldsmobile-Buick 1 -0110001101101 Tolkien 1 -0110001101101 CONDITIONALLY 1 -0110001101101 jokes. 1 -0110001101101 Comission 1 -0110001101101 kabunushi 1 -0110001101101 Sommernachstraum 1 -0110001101101 anaphylaxis 1 -0110001101101 thuringiensis 1 -0110001101101 Kanakaria 1 -0110001101101 Hikes 1 -0110001101101 Cheaters 1 -0110001101101 Fortescu 1 -0110001101101 Addict 1 -0110001101101 Decree 1 -0110001101101 Zaffius 1 -0110001101101 Comissioner 1 -0110001101101 Habab 1 -0110001101101 Daba 1 -0110001101101 Calendars 2 -0110001101101 Hosogane 2 -0110001101101 Preparer 2 -0110001101101 Withheld 2 -0110001101101 court. 2 -0110001101101 Aversion 2 -0110001101101 Lifesavers 2 -0110001101101 Tug-of-War 2 -0110001101101 Blonde 3 -0110001101101 Hike 3 -0110001101101 Court. 3 -0110001101101 Curling 3 -0110001101101 Octanos 4 -0110001101101 meliloti 4 -0110001101101 tokuwan 4 -0110001101101 Obligations 5 -0110001101101 Revolt 8 -0110001101101 turner 9 -0110001101101 Worm 10 -0110001101101 Lie 21 -0110001101101 Path 62 -0110001101101 Reform 360 -0110001101101 Court 7150 -0110001101101 Code 960 -0110001101110 Crust 1 -0110001101110 Pennisula 1 -0110001101110 PaSA 1 -0110001101110 Ages. 1 -0110001101110 Lightship 1 -0110001101110 Cowgirl 1 -0110001101110 Dunc 1 -0110001101110 Penninsula 1 -0110001101110 Boar 1 -0110001101110 Canners 1 -0110001101110 Swindles 1 -0110001101110 Confidentially 1 -0110001101110 spicemaker 1 -0110001101110 susbidiary 1 -0110001101110 Sugans 1 -0110001101110 Supervisers 1 -0110001101110 Tradin 1 -0110001101110 Esat 1 -0110001101110 rehabilitation-hospital 1 -0110001101110 Polska 1 -0110001101110 Symphon 1 -0110001101110 Board-NASD 1 -0110001101110 308/616 1 -0110001101110 revoir 1 -0110001101110 Board-Reebok 1 -0110001101110 Roll-Ups 1 -0110001101110 Markazi 1 -0110001101110 LEFTIST 1 -0110001101110 Brother-style 1 -0110001101110 Owe 1 -0110001101110 Dipper. 1 -0110001101110 Brotherish 1 -0110001101110 11,526.4 1 -0110001101110 Chill. 1 -0110001101110 footballer 1 -0110001101110 Ambush 1 -0110001101110 Stufs 1 -0110001101110 caviarteria 1 -0110001101110 management-in-exile 1 -0110001101110 pretender 1 -0110001101110 Adyga 1 -0110001101110 InterAmerica 1 -0110001101110 Misconduct 1 -0110001101110 Street-Wellesley 1 -0110001101110 9981 1 -0110001101110 Spenders 1 -0110001101110 12630 1 -0110001101110 Weart 1 -0110001101110 buildings. 1 -0110001101110 9066 1 -0110001101110 Almashrek 1 -0110001101110 Horizonte 1 -0110001101110 Herald/WBZ-TV 1 -0110001101110 Thicket 1 -0110001101110 Heyford 2 -0110001101110 Mixes 2 -0110001101110 Rolla 2 -0110001101110 Cando 2 -0110001101110 Handlowy 2 -0110001101110 Kahuna 2 -0110001101110 12333 2 -0110001101110 Blends 2 -0110001101110 Mistake 2 -0110001101110 Helmet 2 -0110001101110 Tent 2 -0110001101110 Bruisers 2 -0110001101110 Hoop 2 -0110001101110 CORPORATION 3 -0110001101110 Herald/WBZ 3 -0110001101110 Bopper 3 -0110001101110 F.S.B. 3 -0110001101110 Brotherism 3 -0110001101110 Board/Merc 3 -0110001101110 Dig 4 -0110001101110 PKO 4 -0110001101110 Rivet 4 -0110001101110 Melli 4 -0110001101110 Suga 5 -0110001101110 Board-listed 5 -0110001101110 Clothiers 5 -0110001101110 Hapoalim 6 -0110001101110 Stationery 6 -0110001101110 Hustle 7 -0110001101110 Vontobel 9 -0110001101110 Negara 9 -0110001101110 Huallaga 9 -0110001101110 Century-Fox 10 -0110001101110 Leumi 11 -0110001101110 Chill 13 -0110001101110 Macs 13 -0110001101110 300-DAY 17 -0110001101110 fuer 18 -0110001101110 Species 20 -0110001101110 Tatars 23 -0110001101110 Nederland 32 -0110001101110 Ages 47 -0110001101110 Peninsula 72 -0110001101110 O 110 -0110001101110 Bang 137 -0110001101110 Leu 143 -0110001101110 Board 9654 -0110001101110 Rate 241 -0110001101111 Deliberation 1 -0110001101111 Bank-Lanston 1 -0110001101111 appeasers 1 -0110001101111 Doh 1 -0110001101111 amphibious-landing 1 -0110001101111 Squab 1 -0110001101111 Wars-type 1 -0110001101111 Conduits 1 -0110001101111 Furnishers 1 -0110001101111 Wagnerienne 1 -0110001101111 Erving-led 1 -0110001101111 Dies. 1 -0110001101111 Kalsha 1 -0110001101111 Slighty 1 -0110001101111 Zauberflote 1 -0110001101111 co-winner 1 -0110001101111 CHESTER 1 -0110001101111 University-Indianapolis 1 -0110001101111 Chongguan 1 -0110001101111 ZOOM 1 -0110001101111 MULLER 1 -0110001101111 eX 1 -0110001101111 Skirt 1 -0110001101111 BESEN 1 -0110001101111 MANAMA 1 -0110001101111 Worry-Free 1 -0110001101111 Juk 1 -0110001101111 Skoeyen 1 -0110001101111 Arns 1 -0110001101111 Comfort. 1 -0110001101111 Pacfic 1 -0110001101111 functionalism 1 -0110001101111 Restorer 1 -0110001101111 Fronts 1 -0110001101111 Over-the-Line 1 -0110001101111 HERRING 1 -0110001101111 Mojado 1 -0110001101111 Gaur 1 -0110001101111 Intimates 1 -0110001101111 gravestones 1 -0110001101111 Rewarded 1 -0110001101111 slumberers 1 -0110001101111 Cites/ABC 1 -0110001101111 Economicus 1 -0110001101111 Warsy 1 -0110001101111 Setinc 1 -0110001101111 SuperCab 1 -0110001101111 Cookiesauruses 1 -0110001101111 1383 1 -0110001101111 Suisse-concede 1 -0110001101111 Ringers 1 -0110001101111 mistletoe 1 -0110001101111 food-pies 1 -0110001101111 Vernadskogo 1 -0110001101111 food-shashlik 1 -0110001101111 1903-1939 1 -0110001101111 Dissect-an-Alien 1 -0110001101111 fairrieanum 1 -0110001101111 Sneetches 1 -0110001101111 Bellied 1 -0110001101111 Gas-Gathering 1 -0110001101111 Nanky-Poo 1 -0110001101111 wing. 1 -0110001101111 Roundelay 1 -0110001101111 hallucinate 1 -0110001101111 Aviator 1 -0110001101111 V/386 1 -0110001101111 Berardino 1 -0110001101111 Baros 1 -0110001101111 tos 1 -0110001101111 Corpse 1 -0110001101111 Voice-type 1 -0110001101111 Domestica 1 -0110001101111 Hooked 1 -0110001101111 Mistica 1 -0110001101111 Intimidated 1 -0110001101111 1922.81 1 -0110001101111 1912.26 1 -0110001101111 Partners. 1 -0110001101111 Buyouts 1 -0110001101111 Agro-Alimentaires 1 -0110001101111 Whatchamacallit 1 -0110001101111 Co.are 1 -0110001101111 Airfreight 1 -0110001101111 Hultsch 1 -0110001101111 Bazaars 1 -0110001101111 Gracida 1 -0110001101111 Energizing 1 -0110001101111 Anstalt/Bankverein 1 -0110001101111 Pollutions 1 -0110001101111 Vaderland 1 -0110001101111 Michigan-Sweet 1 -0110001101111 Cathedrals 1 -0110001101111 Immobilier 1 -0110001101111 2335.37 1 -0110001101111 flashcards. 1 -0110001101111 Bibliography 1 -0110001101111 Cob 1 -0110001101111 Fledermaus. 1 -0110001101111 Publique 1 -0110001101111 Aggression 1 -0110001101111 ex-guard 1 -0110001101111 hirers 1 -0110001101111 106-93 1 -0110001101111 fria 1 -0110001101111 Broadous 1 -0110001101111 Generates 1 -0110001101111 Zentralbank 1 -0110001101111 06/15/87 1 -0110001101111 Yai 1 -0110001101111 EINDHOVEN 1 -0110001101111 Busters. 1 -0110001101111 IIb 1 -0110001101111 Mediums 1 -0110001101111 International- 1 -0110001101111 Ibarakiites 1 -0110001101111 Maravilhas 1 -0110001101111 IV-type 1 -0110001101111 TORINO 1 -0110001101111 mantelpiece 1 -0110001101111 Tours-type 1 -0110001101111 Lescauts 1 -0110001101111 Prez 1 -0110001101111 Environments 1 -0110001101111 Canaria 1 -0110001101111 2524.64 1 -0110001101111 Tigeresses 1 -0110001101111 indutrial 1 -0110001101111 Mastatstva 1 -0110001101111 Lavarello-Obrenovich 1 -0110001101111 Trek-style 1 -0110001101111 Malmberg 1 -0110001101111 Preguson 1 -0110001101111 cranberry-juice 1 -0110001101111 Extraordinaire 1 -0110001101111 Langspielplatten 1 -0110001101111 dir 1 -0110001101111 agrarians 1 -0110001101111 Yunlong 1 -0110001101111 L-Plus 1 -0110001101111 2355 1 -0110001101111 educational-book 1 -0110001101111 Melancolique 1 -0110001101111 3042 1 -0110001101111 Malebane-Metsing 1 -0110001101111 Blossoms 1 -0110001101111 Management-SCA 1 -0110001101111 II-A 1 -0110001101111 Five-B 1 -0110001101111 Lorio 1 -0110001101111 Siong 1 -0110001101111 I-vintage 1 -0110001101111 BUILDUP 1 -0110001101111 Lusia 1 -0110001101111 Odor 1 -0110001101111 Sheva 1 -0110001101111 Wirkkala 1 -0110001101111 Elijio 1 -0110001101111 Unio 1 -0110001101111 Waikikians 1 -0110001101111 554. 1 -0110001101111 Ly 1 -0110001101111 Kien 1 -0110001101111 Guano/Bed 1 -0110001101111 rel 1 -0110001101111 32/700 1 -0110001101111 Juggler 1 -0110001101111 XL-200 1 -0110001101111 ALMOST 1 -0110001101111 Cookers 1 -0110001101111 CHEAT 1 -0110001101111 anti-cellulite 1 -0110001101111 Pro-Collagen 1 -0110001101111 Intnational 1 -0110001101111 Dangerously 1 -0110001101111 2015.09 1 -0110001101111 Feliners 1 -0110001101111 Xuanping 1 -0110001101111 Mukha 1 -0110001101111 Jianying 1 -0110001101111 Suisse-Zurich 1 -0110001101111 Seigner 1 -0110001101111 Hldgs 1 -0110001101111 Ufgood 1 -0110001101111 NewsWorld 1 -0110001101111 Schwert 1 -0110001101111 1407-A 1 -0110001101111 Bullying 1 -0110001101111 Hlthcr 1 -0110001101111 union. 1 -0110001101111 Ins. 1 -0110001101111 Imperfect 1 -0110001101111 Pct 1 -0110001101111 Aldrin 1 -0110001101111 Markets-led 1 -0110001101111 expeditionary-shelter 1 -0110001101111 Kerkbode 1 -0110001101111 Hydrochlorothiazide 1 -0110001101111 Thuot 1 -0110001101111 Databases 1 -0110001101111 GOOFED 1 -0110001101111 Scream 1 -0110001101111 Kayak 1 -0110001101111 Divided-II 1 -0110001101111 flints 1 -0110001101111 2010.85 1 -0110001101111 Lubrication 1 -0110001101111 1989.33 1 -0110001101111 lector 1 -0110001101111 Corp./Europe 1 -0110001101111 Burchenal 1 -0110001101111 4-foot-8 1 -0110001101111 Rides 1 -0110001101111 Gr 1 -0110001101111 THIEVES 1 -0110001101111 4/40 1 -0110001101111 Smut 1 -0110001101111 Modernes 1 -0110001101111 Youheng 1 -0110001101111 Grannies 1 -0110001101111 Henricksen 1 -0110001101111 Ghaznavi 1 -0110001101111 PGGM 1 -0110001101111 Sensation 1 -0110001101111 Hangers 1 -0110001101111 user-demand 1 -0110001101111 Wernli 1 -0110001101111 Constituencies 1 -0110001101111 Sprawling 1 -0110001101111 Annicchino 1 -0110001101111 18-30 1 -0110001101111 1969-74 1 -0110001101111 Campestre 2 -0110001101111 Transplantation 2 -0110001101111 Bosies 2 -0110001101111 Scorecard 2 -0110001101111 Conv 2 -0110001101111 Harmful 2 -0110001101111 Solemnis 2 -0110001101111 Steppers 2 -0110001101111 Choraria 2 -0110001101111 2237.63 2 -0110001101111 Marchetti 2 -0110001101111 Incarnate 2 -0110001101111 FLOWER 2 -0110001101111 Haferkamp 2 -0110001101111 Mgmt. 2 -0110001101111 Cristo 2 -0110001101111 Brigadoon 2 -0110001101111 Hypothecaire 2 -0110001101111 Cheeses 2 -0110001101111 Dreamer 2 -0110001101111 Geothrml 2 -0110001101111 PARTECIPAZIONI 2 -0110001101111 2005.91 2 -0110001101111 Britannicas 2 -0110001101111 Economique 2 -0110001101111 Beamers 2 -0110001101111 Managment 2 -0110001101111 Phuong 2 -0110001101111 avions 2 -0110001101111 2CV 2 -0110001101111 tacklers 2 -0110001101111 Gris 2 -0110001101111 divinas 2 -0110001101111 Gutted 2 -0110001101111 Feedyard 2 -0110001101111 Beart 2 -0110001101111 Execs 2 -0110001101111 Sorter 2 -0110001101111 boneyard 2 -0110001101111 Lasnick 2 -0110001101111 Lacayo 2 -0110001101111 Fiduciaries 2 -0110001101111 Crull 2 -0110001101111 Collen 2 -0110001101111 Frizzell 2 -0110001101111 PILL 2 -0110001101111 Faustus 2 -0110001101111 Backpack 2 -0110001101111 Averaged 2 -0110001101111 Villas 2 -0110001101111 Golem 2 -0110001101111 Cities/ 2 -0110001101111 Haze 2 -0110001101111 Adamu 2 -0110001101111 WITNESSES 2 -0110001101111 HEINZ 2 -0110001101111 Robbery 2 -0110001101111 Oilfields 2 -0110001101111 Maidel 2 -0110001101111 Bourke-White 2 -0110001101111 Notification 2 -0110001101111 1945-46 2 -0110001101111 Al-Anbaa 2 -0110001101111 Mobilier 2 -0110001101111 FREEZE 2 -0110001101111 Andronicus 2 -0110001101111 Myopia 2 -0110001101111 Taray 2 -0110001101111 BEWARE 2 -0110001101111 Pyung 2 -0110001101111 Uns 2 -0110001101111 Barnathan 3 -0110001101111 Brunch 3 -0110001101111 Micrographics 3 -0110001101111 CARD 3 -0110001101111 Destroyer 3 -0110001101111 Homeward 3 -0110001101111 Westcott 3 -0110001101111 anglaise 3 -0110001101111 Gases 3 -0110001101111 1989-5 3 -0110001101111 Cardholder 3 -0110001101111 Aire 3 -0110001101111 Qasr 3 -0110001101111 RAW 3 -0110001101111 Cubism 3 -0110001101111 II-era 3 -0110001101111 36s 3 -0110001101111 Quotient 3 -0110001101111 Panza 3 -0110001101111 Classification 3 -0110001101111 Severinsen 3 -0110001101111 Accents 3 -0110001101111 Strategist 3 -0110001101111 Xing 3 -0110001101111 Docket 3 -0110001101111 Rudel 3 -0110001101111 Cierra 3 -0110001101111 Direction 3 -0110001101111 Mecir 3 -0110001101111 Butterflies 3 -0110001101111 Chee 3 -0110001101111 GIRLS 3 -0110001101111 Lick 3 -0110001101111 ab 3 -0110001101111 Lantern 3 -0110001101111 Indigo 3 -0110001101111 baccata 4 -0110001101111 Boros 4 -0110001101111 Flew 4 -0110001101111 Capwell 4 -0110001101111 Windmill 4 -0110001101111 HCI 4 -0110001101111 Duo 4 -0110001101111 Gloves 4 -0110001101111 Woodmac 4 -0110001101111 Service. 4 -0110001101111 Vans 4 -0110001101111 II-vintage 4 -0110001101111 Pants 4 -0110001101111 Petrolieres 4 -0110001101111 2276.43 4 -0110001101111 BONN 4 -0110001101111 fatale 4 -0110001101111 Maharaj 4 -0110001101111 BUYERS 5 -0110001101111 Perfumes 5 -0110001101111 Messengers 5 -0110001101111 Forfeiture 5 -0110001101111 Anymore 5 -0110001101111 Pharmacies 5 -0110001101111 Crisp 5 -0110001101111 Gees 5 -0110001101111 Laundrette 5 -0110001101111 Desc 5 -0110001101111 Krolik 5 -0110001101111 Industriel 5 -0110001101111 Infirmary 5 -0110001101111 Cos 5 -0110001101111 Sourcebook 5 -0110001101111 Popcorn 5 -0110001101111 Weirdness 6 -0110001101111 Mediterranee 6 -0110001101111 twang 6 -0110001101111 sapiens 6 -0110001101111 Districts 6 -0110001101111 Airmotive 7 -0110001101111 2506 7 -0110001101111 Mirrors 7 -0110001101111 Nicley 7 -0110001101111 Erving 7 -0110001101111 FRANKFURT 7 -0110001101111 Forecaster 7 -0110001101111 Vendome 7 -0110001101111 Daylights 7 -0110001101111 Naj 7 -0110001101111 Vane 7 -0110001101111 Ones 7 -0110001101111 Finds 8 -0110001101111 Chant 8 -0110001101111 Wagons 8 -0110001101111 Server 8 -0110001101111 Cranberries 8 -0110001101111 Conduit 8 -0110001101111 Phagan 9 -0110001101111 Dearth 9 -0110001101111 Approach 9 -0110001101111 Walkure 9 -0110001101111 Grosso 9 -0110001101111 Sampling 9 -0110001101111 Dartboard 9 -0110001101111 Gromes 10 -0110001101111 Specials 10 -0110001101111 Interlude 10 -0110001101111 Newhart 11 -0110001101111 Builder 11 -0110001101111 Seeds 11 -0110001101111 Flute 12 -0110001101111 Rus 13 -0110001101111 MUST 13 -0110001101111 Pickup 13 -0110001101111 Basics 13 -0110001101111 LE 13 -0110001101111 Dolls 13 -0110001101111 Allocation 14 -0110001101111 Detection 14 -0110001101111 Bancor 14 -0110001101111 Zeit 14 -0110001101111 Contest 14 -0110001101111 Squadron 14 -0110001101111 WoodMac 15 -0110001101111 commandant 15 -0110001101111 Foncier 15 -0110001101111 Idea 15 -0110001101111 FIRM 15 -0110001101111 SYSTEM 15 -0110001101111 Disposal 15 -0110001101111 rea 15 -0110001101111 Speaks 15 -0110001101111 Fury 16 -0110001101111 Avenger 16 -0110001101111 Maze 17 -0110001101111 Marketplace 17 -0110001101111 Nominees 19 -0110001101111 Fail 19 -0110001101111 Freightways 20 -0110001101111 Cruises 20 -0110001101111 Coating 21 -0110001101111 Seafoods 22 -0110001101111 Spray 23 -0110001101111 Formation 24 -0110001101111 Edition 24 -0110001101111 VI 24 -0110001101111 Integrators 25 -0110001101111 Agricole 26 -0110001101111 Forms 29 -0110001101111 Behavior 29 -0110001101111 Examiner 29 -0110001101111 Appreciation 30 -0110001101111 Welt 31 -0110001101111 Alert 32 -0110001101111 Mixte 34 -0110001101111 Dancing 34 -0110001101111 Tours 35 -0110001101111 Tag 37 -0110001101111 Ciera 37 -0110001101111 Brief 39 -0110001101111 Maldutis 42 -0110001101111 Accounts 51 -0110001101111 Med 53 -0110001101111 Trek 54 -0110001101111 Account 60 -0110001101111 AIRLINES 61 -0110001101111 Band 65 -0110001101111 Papers 69 -0110001101111 Matters 73 -0110001101111 Maung 77 -0110001101111 Clubs 79 -0110001101111 II. 86 -0110001101111 Baer 95 -0110001101111 Responsibility 97 -0110001101111 Flats 101 -0110001101111 Mountains 107 -0110001101111 V 119 -0110001101111 Lyonnais 119 -0110001101111 Story 158 -0110001101111 X 168 -0110001101111 Powers 214 -0110001101111 Plus 293 -0110001101111 Corps 294 -0110001101111 Cities/ABC 338 -0110001101111 Show 417 -0110001101111 Wars 436 -0110001101111 Partnership 508 -0110001101111 Report 1289 -0110001101111 Markets 1899 -0110001101111 II 2224 -0110001101111 Average 2423 -0110001101111 System 2264 -011000111000 pro-Star 1 -011000111000 Columbia. 1 -011000111000 sloppiest 1 -011000111000 do-gooderism 1 -011000111000 Grizzlies 1 -011000111000 abductees 1 -011000111000 Skiwear 1 -011000111000 Streebek 1 -011000111000 oo-pples 1 -011000111000 foodchains 1 -011000111000 Punic 1 -011000111000 entrepeneur 1 -011000111000 Trailblazers 1 -011000111000 Seika 1 -011000111000 Comproller 1 -011000111000 Teik 1 -011000111000 beach-head 1 -011000111000 facilty 1 -011000111000 Pinkum 1 -011000111000 University/Purdue 1 -011000111000 sideros 1 -011000111000 Valderrivas 1 -011000111000 Bank/United 1 -011000111000 actress-model 1 -011000111000 Furioso 1 -011000111000 Sweeper 1 -011000111000 Lacks 1 -011000111000 cantonment 1 -011000111000 Sirti 1 -011000111000 Twirl 1 -011000111000 gunsmith 1 -011000111000 Disposalens 1 -011000111000 strategy. 1 -011000111000 Evaristo 1 -011000111000 Pilsner 1 -011000111000 leakathon 1 -011000111000 Herald. 1 -011000111000 Post-ABC 1 -011000111000 Vise 1 -011000111000 Surroundings 1 -011000111000 find. 1 -011000111000 Gozo 1 -011000111000 Bank-backed 1 -011000111000 pinots 1 -011000111000 comopany 1 -011000111000 Pastors 1 -011000111000 Walters-style 1 -011000111000 Glorifying 1 -011000111000 Hydroflex 1 -011000111000 sub-continent 1 -011000111000 50,551 1 -011000111000 Classicism 1 -011000111000 Iodice 1 -011000111000 Girardeau 1 -011000111000 Staatsgalerie 1 -011000111000 value-for-shareholders 1 -011000111000 Maluf 1 -011000111000 too./Eve 1 -011000111000 Transcript 1 -011000111000 Oiler 1 -011000111000 Aviary 1 -011000111000 Overholser 1 -011000111000 Patriot-Ledger 1 -011000111000 Wildest 1 -011000111000 Boys-Manny 1 -011000111000 prattlers 1 -011000111000 gypsum-board 1 -011000111000 big-wig 1 -011000111000 P.U.C. 1 -011000111000 Sweepers 1 -011000111000 Spring-on-Hudson 1 -011000111000 researchers. 1 -011000111000 Tribuna 1 -011000111000 residents. 1 -011000111000 AGI. 1 -011000111000 elephant-shaped 1 -011000111000 Rhapsodies 1 -011000111000 land-fraud 1 -011000111000 research-support 1 -011000111000 sack-master 1 -011000111000 Sponges 1 -011000111000 Liberities 1 -011000111000 Yescas 1 -011000111000 Boven 1 -011000111000 Cod. 1 -011000111000 Guertin 1 -011000111000 based-carrier 1 -011000111000 Nunnery 1 -011000111000 slicksters 1 -011000111000 Capitols 1 -011000111000 Giselles 1 -011000111000 entreprendre 1 -011000111000 arms-manufacturer 1 -011000111000 Futurity 1 -011000111000 parochial-schoolteacher 1 -011000111000 CARTE 1 -011000111000 72-73 1 -011000111000 Colla 1 -011000111000 Saddleback 1 -011000111000 Humour 1 -011000111000 Mural 1 -011000111000 1766-72 1 -011000111000 Vivacqua 1 -011000111000 schoolchildren. 1 -011000111000 horning 1 -011000111000 Gynecologist 1 -011000111000 University. 1 -011000111000 subidiary 1 -011000111000 post-Vatican 1 -011000111000 Columbians 1 -011000111000 Glickburg 1 -011000111000 Genossenschaftliche 1 -011000111000 Habitats 1 -011000111000 Airways-Braniff 1 -011000111000 LeGates 1 -011000111000 debt-swappers 1 -011000111000 Grinches 1 -011000111000 water-folk 1 -011000111000 Irregulars 1 -011000111000 foundling 1 -011000111000 Cliffs. 1 -011000111000 Schlageter 1 -011000111000 Media-Advertising 1 -011000111000 Gid 1 -011000111000 Monorail 1 -011000111000 Bank-Fiat 1 -011000111000 punditocracy 1 -011000111000 Times-Herald 1 -011000111000 Barroso 1 -011000111000 Marlantes 1 -011000111000 oarsman 1 -011000111000 Cordillera 1 -011000111000 consulant 1 -011000111000 osteopaths 1 -011000111000 1492 1 -011000111000 ADV-Part 1 -011000111000 Chicks 1 -011000111000 Cod-style 1 -011000111000 empire-builder 1 -011000111000 Herald-News 1 -011000111000 daredevil-guru 1 -011000111000 Journal. 1 -011000111000 Cup-circuit 1 -011000111000 ragas 1 -011000111000 Vermogensverwaltung 1 -011000111000 Gainsbourg 1 -011000111000 Tatra 1 -011000111000 Azuelos 1 -011000111000 Krimendahl 1 -011000111000 Slammers 1 -011000111000 Cays 1 -011000111000 Sundances 1 -011000111000 Catechism 1 -011000111000 coutouriers 1 -011000111000 interlocutor 1 -011000111000 clairvoyants 1 -011000111000 hurlers 1 -011000111000 DELPHI 1 -011000111000 Abeldt 1 -011000111000 Caravelles 1 -011000111000 Outman 1 -011000111000 NS&I 1 -011000111000 executive-placement 1 -011000111000 ex. 1 -011000111000 CULTURE 1 -011000111000 YM-YWHA 1 -011000111000 Plantmobile 1 -011000111000 abstractionists 1 -011000111000 chablis 1 -011000111000 Iscariot 1 -011000111000 Ponosuk 1 -011000111000 comestibles 1 -011000111000 Goldeye 1 -011000111000 E-Street 1 -011000111000 IBM/Europe 1 -011000111000 Menthols 1 -011000111000 Foleys 1 -011000111000 Hoodlums 1 -011000111000 Vassy 1 -011000111000 Univ 1 -011000111000 Spiders 1 -011000111000 downhiller 1 -011000111000 ----s 1 -011000111000 SynderGeneral 1 -011000111000 buinessman 1 -011000111000 Casacade 1 -011000111000 winemaster 1 -011000111000 Browning-type 1 -011000111000 Sundt-Actus 1 -011000111000 Suite. 1 -011000111000 Senderista 1 -011000111000 Sharpshooters 1 -011000111000 paddler 1 -011000111000 Bio-Resources 1 -011000111000 Dreamin 1 -011000111000 foxhound 1 -011000111000 Khustndinov 1 -011000111000 quake-prone 1 -011000111000 Warsoon 1 -011000111000 1963-66 1 -011000111000 Wogan 1 -011000111000 Aiport 1 -011000111000 Ripper-haters 1 -011000111000 Farms. 1 -011000111000 semieye 1 -011000111000 Selectwoman 1 -011000111000 Magica 1 -011000111000 ex-nightclub 1 -011000111000 Lagoons 1 -011000111000 Briones 1 -011000111000 Limits. 1 -011000111000 Bank-Casper 1 -011000111000 Nthwst 1 -011000111000 Frishman 1 -011000111000 Bebete 1 -011000111000 vicarage 1 -011000111000 car-owners 1 -011000111000 supercompanies 1 -011000111000 best-mannered 1 -011000111000 FRONTERA 1 -011000111000 whillikers 1 -011000111000 pork-barreler 1 -011000111000 Geoscape 1 -011000111000 datelines 1 -011000111000 sycophantishness 1 -011000111000 Roulo 2 -011000111000 SW 2 -011000111000 FilmWorks 2 -011000111000 CDU/CSU 2 -011000111000 Bandeirantes 2 -011000111000 All-Starr 2 -011000111000 Scientech 2 -011000111000 Pygmy 2 -011000111000 Leas 2 -011000111000 Bai 2 -011000111000 Descent 2 -011000111000 Levin/Stern 2 -011000111000 Windchimes 2 -011000111000 Shinbun 2 -011000111000 Calista 2 -011000111000 Wacko 2 -011000111000 shiksa 2 -011000111000 Wirtschaftsforschung 2 -011000111000 lumberjacks 2 -011000111000 governmental-affairs 2 -011000111000 luncheonette 2 -011000111000 perls 2 -011000111000 Gemeinwirtschaft 2 -011000111000 Boomerang 2 -011000111000 viaduct 2 -011000111000 Maladies 2 -011000111000 Amboy 2 -011000111000 Cecchini 2 -011000111000 Star-Ledger 2 -011000111000 Bank-Midwest 2 -011000111000 paradis 2 -011000111000 Times-CBS 2 -011000111000 superlawyer 2 -011000111000 Bank-IMF 2 -011000111000 Swindler 2 -011000111000 Songwriters 2 -011000111000 Telegram 2 -011000111000 Babee 2 -011000111000 Goldfund 2 -011000111000 Bimbos 2 -011000111000 romanticist 2 -011000111000 Journal/ 2 -011000111000 World-Herald 2 -011000111000 car-seat 2 -011000111000 Subilosky 2 -011000111000 Brom 2 -011000111000 Heavyweight 2 -011000111000 Fitzhugh 2 -011000111000 Bitterroot 2 -011000111000 Quivar 2 -011000111000 Balcony 2 -011000111000 Balm 2 -011000111000 Two-Tier 2 -011000111000 Globe-News 2 -011000111000 Defiant 2 -011000111000 FONDIARIA 2 -011000111000 Air-UAL 2 -011000111000 Rattlesnake 2 -011000111000 meadowlands 2 -011000111000 Aftenbladet 2 -011000111000 Womens 2 -011000111000 brasserie 2 -011000111000 Either/Or 2 -011000111000 Lirazan 2 -011000111000 Deception 2 -011000111000 Gladiators 2 -011000111000 bakery-restaurants 2 -011000111000 Deforestation 2 -011000111000 Bash 3 -011000111000 Dearest 3 -011000111000 Loa 3 -011000111000 Magnani 3 -011000111000 Coachworks 3 -011000111000 boatmen 3 -011000111000 HB 3 -011000111000 Supersonics 3 -011000111000 Post-Intelligencer 3 -011000111000 Racquets 3 -011000111000 Mid-West 3 -011000111000 Volksbank 3 -011000111000 Barnes-Connally 3 -011000111000 Hatchet 3 -011000111000 Knot 3 -011000111000 Star-Tribune 3 -011000111000 Blacklist 3 -011000111000 Letelier 3 -011000111000 Fragile 3 -011000111000 Bombers 3 -011000111000 MacDowell 3 -011000111000 Moods 3 -011000111000 winegrowers 3 -011000111000 Neolithic 3 -011000111000 Jameses 3 -011000111000 Intellect 3 -011000111000 76ers 3 -011000111000 oom-pah-pah 3 -011000111000 Discall 3 -011000111000 myc 3 -011000111000 Falcons 3 -011000111000 Al-Ahram 3 -011000111000 titanate 3 -011000111000 Flemings 3 -011000111000 GISSI 4 -011000111000 Aspern 4 -011000111000 Sidekicks 4 -011000111000 Sultanes 4 -011000111000 Kildare 4 -011000111000 Bruin 4 -011000111000 Teeth 4 -011000111000 Times-Dispatch 4 -011000111000 CIO 4 -011000111000 Desperadoes 4 -011000111000 Palacio 4 -011000111000 conquistadors 4 -011000111000 American-Statesman 4 -011000111000 Koss 5 -011000111000 Phenomenon 5 -011000111000 Nordiques 5 -011000111000 Ural 5 -011000111000 T-birds 5 -011000111000 LaserWriter 5 -011000111000 Sidonia 5 -011000111000 Savings-Share 5 -011000111000 Blech 5 -011000111000 Rothschilds 5 -011000111000 Bengals 5 -011000111000 Anthology 5 -011000111000 Post-Gazette 5 -011000111000 Hartings 5 -011000111000 Rockets 5 -011000111000 Rhapsody 5 -011000111000 Kreditbank 5 -011000111000 Leopard 5 -011000111000 ................................. 5 -011000111000 V.P. 5 -011000111000 Tecolotes 5 -011000111000 Bentsens 6 -011000111000 Globetrotters 6 -011000111000 Flyers 6 -011000111000 Shuffle 6 -011000111000 Canadiens 6 -011000111000 Harmel 6 -011000111000 War-era 6 -011000111000 Journal-NBC 6 -011000111000 Nets 6 -011000111000 Topitsch 6 -011000111000 Partch 6 -011000111000 Fuhrer 6 -011000111000 Pita 6 -011000111000 Slugger 6 -011000111000 Airway 7 -011000111000 Harshaw/Filtrol 7 -011000111000 Frog 7 -011000111000 Raisins 7 -011000111000 Apostles 7 -011000111000 Menthol 7 -011000111000 Neddick 7 -011000111000 Knife 7 -011000111000 Johnsons 7 -011000111000 Broom 7 -011000111000 Mahindra 7 -011000111000 DA 8 -011000111000 endive 8 -011000111000 Serpent 8 -011000111000 Cleanup 9 -011000111000 Steelers 9 -011000111000 Mariners 9 -011000111000 Bollettieri 9 -011000111000 Oregonian 9 -011000111000 Shores 9 -011000111000 Franc 9 -011000111000 Globo 10 -011000111000 Ranney 10 -011000111000 Padres 10 -011000111000 Berlitz 11 -011000111000 Seahawks 11 -011000111000 Prado 11 -011000111000 Vader 12 -011000111000 Suns 12 -011000111000 Plunkitt 13 -011000111000 Expos 13 -011000111000 Buccaneers 13 -011000111000 Opium 13 -011000111000 Seaport 14 -011000111000 Dibb 14 -011000111000 USSR 14 -011000111000 Nederlander 14 -011000111000 XV 15 -011000111000 Freaks 15 -011000111000 Rocks 16 -011000111000 Rat 16 -011000111000 Prune 16 -011000111000 Guiana 16 -011000111000 Gong 17 -011000111000 Lackawanna 17 -011000111000 Roof 17 -011000111000 Gerais 17 -011000111000 Everglades 17 -011000111000 Bat 18 -011000111000 Generalized 18 -011000111000 Sentinel 19 -011000111000 Cowboy 19 -011000111000 Phillies 19 -011000111000 Wrestling 19 -011000111000 Astros 19 -011000111000 L&P 20 -011000111000 Colts 20 -011000111000 Nuggets 20 -011000111000 Vikings 21 -011000111000 Athletics 21 -011000111000 Knights 22 -011000111000 Ababa 22 -011000111000 Pops 22 -011000111000 Dolphins 23 -011000111000 Monument 24 -011000111000 Saw 24 -011000111000 Courier-Journal 24 -011000111000 Tires 26 -011000111000 Pirates 28 -011000111000 Gran 30 -011000111000 Rep 30 -011000111000 Pack 31 -011000111000 Brewers 31 -011000111000 Reds 32 -011000111000 Cod 32 -011000111000 Lions 32 -011000111000 Bazaar 33 -011000111000 Championships 34 -011000111000 Orioles 35 -011000111000 Keys 36 -011000111000 krone 36 -011000111000 Royals 36 -011000111000 Patriots 37 -011000111000 Federalist 40 -011000111000 Inquirer 42 -011000111000 Oilers 43 -011000111000 Championship 43 -011000111000 Devil 43 -011000111000 inc. 44 -011000111000 Saints 45 -011000111000 Otsego 45 -011000111000 Nilson 45 -011000111000 guilder 47 -011000111000 P&L 49 -011000111000 Winfrey 49 -011000111000 Coliseum 50 -011000111000 Broncos 50 -011000111000 Braves 51 -011000111000 Cowboys 51 -011000111000 Kid 52 -011000111000 Match 53 -011000111000 Hawks 54 -011000111000 Eagles 54 -011000111000 Universe 57 -011000111000 Boss 58 -011000111000 Gazette 59 -011000111000 Columbia-based 59 -011000111000 Canaveral 61 -011000111000 Zoo 62 -011000111000 Redskins 63 -011000111000 Reporter 64 -011000111000 Safe 64 -011000111000 Miracle 64 -011000111000 Twins 74 -011000111000 Browns 77 -011000111000 Celtics 80 -011000111000 Dundee 82 -011000111000 Yard 83 -011000111000 Blues 93 -011000111000 Derby 97 -011000111000 Aviv 98 -011000111000 Observer 101 -011000111000 Bee 102 -011000111000 Journal/Europe 105 -011000111000 Cubs 113 -011000111000 Chronicle 124 -011000111000 Americas 146 -011000111000 Cup 154 -011000111000 Liberties 155 -011000111000 Bears 155 -011000111000 Boys 186 -011000111000 Monitor 216 -011000111000 Globe 233 -011000111000 Journal/NBC 239 -011000111000 Cosby 255 -011000111000 Village 266 -011000111000 Caledonian 279 -011000111000 Tribune 332 -011000111000 Tower 515 -011000111000 franc 557 -011000111000 Herald 790 -011000111000 Airways 1126 -011000111000 Post 1444 -011000111000 War 2448 -011000111000 Journal 3792 -0110001110010 Oceanographers 1 -0110001110010 trash-theft 1 -0110001110010 Sts. 1 -0110001110010 sugarbeet-producing 1 -0110001110010 2586 1 -0110001110010 Sensors 1 -0110001110010 Trignant 1 -0110001110010 jazz/rock 1 -0110001110010 C-137 1 -0110001110010 Heurich 1 -0110001110010 regional-carrier 1 -0110001110010 internal-guidance 1 -0110001110010 Force-provided 1 -0110001110010 oil-producer 1 -0110001110010 Mysticus 1 -0110001110010 700S2 1 -0110001110010 Lines-Western 1 -0110001110010 palmate-antlered 1 -0110001110010 AMRAAM 1 -0110001110010 UK. 1 -0110001110010 mandrake 1 -0110001110010 videodrone 1 -0110001110010 Mae-backed 1 -0110001110010 equities. 1 -0110001110010 Community-wide 1 -0110001110010 Atlanta-KLM 1 -0110001110010 Dolomiti 1 -0110001110010 Thumper 1 -0110001110010 Force-Army 1 -0110001110010 Force-Ret 1 -0110001110010 water-purity 1 -0110001110010 chatelaine 1 -0110001110010 Coproduction 1 -0110001110010 Medals 1 -0110001110010 Mac-77 1 -0110001110010 Dumpling 1 -0110001110010 France-Lufthansa 1 -0110001110010 mutual-defense 1 -0110001110010 Rework 1 -0110001110010 C-35 2 -0110001110010 Jerky 2 -0110001110010 Force-owned 2 -0110001110010 Algerie 2 -0110001110010 Olie 2 -0110001110010 Notions 2 -0110001110010 3,228 2 -0110001110010 Outlets 2 -0110001110010 Afrique 2 -0110001110010 Vent 3 -0110001110010 Races 4 -0110001110010 Maroc 5 -0110001110010 Self-Defense 6 -0110001110010 Cavalry 7 -0110001110010 Conditioning 8 -0110001110010 Brake 10 -0110001110010 Caballero 13 -0110001110010 Filter 14 -0110001110010 Liquide 22 -0110001110010 Inter 45 -0110001110010 Cargo 65 -0110001110010 Maes 79 -0110001110010 Base 170 -0110001110010 Freight 171 -0110001110010 Wis 218 -0110001110010 Transport 398 -0110001110010 Line 730 -0110001110010 Mac 811 -0110001110010 Lines 922 -0110001110010 Mae 1137 -0110001110010 Force 3002 -0110001110010 Community 1362 -0110001110011 Phase-Out 1 -0110001110011 Odometer 1 -0110001110011 Defunct 1 -0110001110011 Reverve 1 -0110001110011 Reseve 1 -0110001110011 Hokkoku 1 -0110001110011 Resrve 1 -0110001110011 Bust-Up 1 -0110001110011 Ltd.-Fuji 1 -0110001110011 Reactors 1 -0110001110011 Reserv 1 -0110001110011 Slamma 1 -0110001110011 Old-Age 1 -0110001110011 Supplier 2 -0110001110011 Rule-making 3 -0110001110011 Nonproliferation 3 -0110001110011 Karte 3 -0110001110011 warS 5 -0110001110011 Rulemaking 9 -0110001110011 Standards 207 -0110001110011 Deposit 643 -0110001110011 Reserve 4653 -011000111010 Signoroni 1 -011000111010 Japanologist 1 -011000111010 Rosa-based 1 -011000111010 Fe/ 1 -011000111010 Supercycle 1 -011000111010 IIIs 1 -011000111010 Bank/Levelland 1 -011000111010 catastrophists 1 -011000111010 Ami 1 -011000111010 flophouse 1 -011000111010 Gulfcoast 1 -011000111010 specialty-applications 1 -011000111010 Lobotomy 1 -011000111010 Bornand 1 -011000111010 Heure 1 -011000111010 Astree 1 -011000111010 cocaine-using 1 -011000111010 Nonissue 1 -011000111010 walkaway. 1 -011000111010 vov 1 -011000111010 president-a 1 -011000111010 arabica 1 -011000111010 FTA 1 -011000111010 Coteau 1 -011000111010 Amphitheater 1 -011000111010 Corp.-Group 1 -011000111010 Kingdom-listed 1 -011000111010 Lsi 1 -011000111010 Observatories 1 -011000111010 Rapidians. 1 -011000111010 :: 1 -011000111010 Nations-affiliated 1 -011000111010 U-Turn 1 -011000111010 Kindom 1 -011000111010 pronghorns 1 -011000111010 Heuristics 1 -011000111010 Techologies 1 -011000111010 PipeLine 1 -011000111010 Scrambler 1 -011000111010 Lakes-Northeast 1 -011000111010 djamena 1 -011000111010 Remittances 1 -011000111010 Knolls 1 -011000111010 Weatherman 1 -011000111010 mandataries 1 -011000111010 Contraction 1 -011000111010 Grandparent 1 -011000111010 Escapes 1 -011000111010 Complication 1 -011000111010 pictus 1 -011000111010 snappers 1 -011000111010 Speckled 1 -011000111010 wine-lovers 1 -011000111010 Fe-based 1 -011000111010 Offre 1 -011000111010 Arabia. 1 -011000111010 Agri-Women 1 -011000111010 Ana-based 1 -011000111010 Nations-supported 1 -011000111010 Am-Braniff 1 -011000111010 port. 1 -011000111010 Ermitage 1 -011000111010 rustics 1 -011000111010 Aventure 1 -011000111010 sBC 1 -011000111010 W.A.C. 1 -011000111010 Hoeschst 1 -011000111010 Holmesians 1 -011000111010 States-Soviet 1 -011000111010 Sleep-Out 1 -011000111010 Forks-Ronalane 1 -011000111010 Kingdom-Small 1 -011000111010 Flexi-Pax 1 -011000111010 Forgers 1 -011000111010 Anse 1 -011000111010 Personality. 1 -011000111010 plastic-injection 1 -011000111010 TeleMedia 1 -011000111010 Gulf-1 1 -011000111010 Airgroup 1 -011000111010 States-type 1 -011000111010 Duchy 1 -011000111010 Cynamid 1 -011000111010 Tollway 1 -011000111010 money-spinners 1 -011000111010 Steel-workers 1 -011000111010 Asia. 1 -011000111010 car-buyers 1 -011000111010 Ambience 1 -011000111010 Minco 1 -011000111010 near-left 1 -011000111010 XFI 1 -011000111010 Prix-circuit 1 -011000111010 Keizaisha 1 -011000111010 Clarita 1 -011000111010 Kohden 1 -011000111010 Fable 1 -011000111010 Acetyls 1 -011000111010 AngeluzziCorbo 1 -011000111010 Emancipator 1 -011000111010 Greetings-designed 1 -011000111010 Monday-type 1 -011000111010 Exp 1 -011000111010 Stores-Lucky 1 -011000111010 Physcians 1 -011000111010 Nations-backed 1 -011000111010 Kingdom-Europe 1 -011000111010 Gumnut 1 -011000111010 Unmentionable 1 -011000111010 Psychologist 1 -011000111010 commmuter 1 -011000111010 Depresssion 1 -011000111010 Fe. 1 -011000111010 Getrudis 1 -011000111010 parvenus 1 -011000111010 member-partners 1 -011000111010 utility-equipment 1 -011000111010 bad-neighbor 1 -011000111010 horrida 1 -011000111010 Nations-mediated 1 -011000111010 Ornithological 1 -011000111010 Clausism 1 -011000111010 folk-satirist 1 -011000111010 Echafaud 1 -011000111010 Unwashed 1 -011000111010 Corp./McCrory 1 -011000111010 Zengxi 1 -011000111010 Ensoleillad 1 -011000111010 Obfuscator 1 -011000111010 Salesperson 1 -011000111010 Telecomunications 1 -011000111010 Defile 1 -011000111010 Keizei 1 -011000111010 Reopening 2 -011000111010 Guignol 2 -011000111010 Kezai 2 -011000111010 Nucleonics 2 -011000111010 Nations-monitored 2 -011000111010 educational-assistance 2 -011000111010 Oiseau 2 -011000111010 Shoma 2 -011000111010 Papermakers 2 -011000111010 Marnier 2 -011000111010 Powerlink 2 -011000111010 Barbara-based 2 -011000111010 Tourister 2 -011000111010 Coulee 2 -011000111010 Mortell 2 -011000111010 GlobalPartners 2 -011000111010 Nations-brokered 2 -011000111010 Histoire 2 -011000111010 Armee 2 -011000111010 Explainer 2 -011000111010 Society. 2 -011000111010 Humanite 2 -011000111010 Kindgom 2 -011000111010 Agronomics 2 -011000111010 Match-Up 2 -011000111010 Enfant 2 -011000111010 Exhaust 3 -011000111010 Woolen 3 -011000111010 Africanist 3 -011000111010 Tractors 3 -011000111010 Energie 3 -011000111010 Acquirer 3 -011000111010 Bradleys 3 -011000111010 Rossa 3 -011000111010 Insecticide 3 -011000111010 Croce 3 -011000111010 Automar 3 -011000111010 Procession 3 -011000111010 AgriSeeds 3 -011000111010 Steelworker 3 -011000111010 TeleSpectrum 3 -011000111010 Beta-Lucky 3 -011000111010 Espresso 3 -011000111010 Tamerlane 3 -011000111010 Graffiti 4 -011000111010 Africaine 4 -011000111010 Ams 4 -011000111010 Telecontrol 4 -011000111010 Bananas 4 -011000111010 Electorate 4 -011000111010 Re-Insurance 4 -011000111010 Catarina 4 -011000111010 Esperance 4 -011000111010 Laugh 4 -011000111010 Balls 4 -011000111010 Travellers 5 -011000111010 Datacom 5 -011000111010 Tochi 5 -011000111010 Caravan/Voyager 5 -011000111010 Heureux 6 -011000111010 Bandstand 6 -011000111010 Mosque 6 -011000111010 Ref-Fuel 6 -011000111010 Homeware 6 -011000111010 Mercies 6 -011000111010 Keno 7 -011000111010 Ambiance 7 -011000111010 Illusion 8 -011000111010 States. 8 -011000111010 Siscoe 8 -011000111010 Djamena 9 -011000111010 Wagoneers 9 -011000111010 Tail 9 -011000111010 Tote 9 -011000111010 Multi-Cinema 10 -011000111010 Biomaterials 10 -011000111010 Refrigerated 10 -011000111010 Kingdom-based 11 -011000111010 Communicator 12 -011000111010 Arabians 12 -011000111010 Nations-sponsored 12 -011000111010 Bionetics 13 -011000111010 Canso 13 -011000111010 Pathologists 14 -011000111010 Chem-Con 14 -011000111010 Amour 16 -011000111010 Ballroom 17 -011000111010 Dour 17 -011000111010 Stationers 17 -011000111010 Lido 17 -011000111010 Therapeutics 19 -011000111010 Coasts 19 -011000111010 Aggregates 19 -011000111010 Performances 20 -011000111010 Maize-Products 20 -011000111010 Forks 20 -011000111010 Airlink 21 -011000111010 Samoa 21 -011000111010 007 22 -011000111010 Harp 24 -011000111010 Stockyards 26 -011000111010 Steam 27 -011000111010 Oreal 28 -011000111010 Territories 33 -011000111010 Junction 34 -011000111010 Sanitation 35 -011000111010 Marquis 50 -011000111010 Spectator 58 -011000111010 Keizai 61 -011000111010 Parcel 61 -011000111010 Biscuits 62 -011000111010 Anita 64 -011000111010 Neck 70 -011000111010 Prix 72 -011000111010 Greetings 90 -011000111010 Rosa 99 -011000111010 Ana 100 -011000111010 Claus 103 -011000111010 Magnetics 143 -011000111010 Rapids 151 -011000111010 Steelworkers 230 -011000111010 Way 236 -011000111010 Monica 273 -011000111010 Artists 313 -011000111010 Lakes 324 -011000111010 Clara 324 -011000111010 Nations 515 -011000111010 Telecommunications 649 -011000111010 Kingdom 676 -011000111010 Met 822 -011000111010 Brands 1081 -011000111010 Technologies 1245 -011000111010 Arabia 1344 -011000111010 Fe 1588 -011000111010 States 1646 -011000111010 Am 1838 -011000111010 Express 2640 -011000111010 Airlines 4788 -0110001110110 arbitrageuse 1 -0110001110110 Hoefner 1 -0110001110110 Industries-Wagner 1 -0110001110110 Interscholastic 1 -0110001110110 AEROSPAZIALE 1 -0110001110110 Servisi 1 -0110001110110 consumer-sciences 1 -0110001110110 Hosptial 1 -0110001110110 Fernseh 1 -0110001110110 MARZOTTO 1 -0110001110110 Lenotre 1 -0110001110110 Pullmann 1 -0110001110110 Sunbathing 1 -0110001110110 HighTech 1 -0110001110110 Fold 1 -0110001110110 548-21-06 1 -0110001110110 266-48-56 1 -0110001110110 489-29-04 1 -0110001110110 180-05-83 1 -0110001110110 459-70-62 1 -0110001110110 491-30-69 1 -0110001110110 246-63-58 1 -0110001110110 258-13-15 1 -0110001110110 356-43-80 1 -0110001110110 215-42-01 1 -0110001110110 329-71-00 1 -0110001110110 299-67-57 1 -0110001110110 208-45-97 1 -0110001110110 288-84-25 1 -0110001110110 240-15-28 1 -0110001110110 180-3054 1 -0110001110110 923-02-82 1 -0110001110110 264-95-74 1 -0110001110110 201-75-00 1 -0110001110110 164-36-30 1 -0110001110110 305-44-49 1 -0110001110110 166-74-90 1 -0110001110110 449-58-40 1 -0110001110110 180-30-54 1 -0110001110110 360-68-40 1 -0110001110110 111-42-62 1 -0110001110110 197-19-75 1 -0110001110110 238-87-72 1 -0110001110110 159-99-51 1 -0110001110110 271-09-98 1 -0110001110110 438-51-12 1 -0110001110110 124-11-49 1 -0110001110110 diddled 1 -0110001110110 Gargano/MCA 1 -0110001110110 Transist 1 -0110001110110 AIDS-Free 1 -0110001110110 Anthropological 1 -0110001110110 Abatement 1 -0110001110110 Cantril 1 -0110001110110 Turnipike 1 -0110001110110 Batory 1 -0110001110110 Coast/Southwestern 1 -0110001110110 Goshdang 1 -0110001110110 Lamagna 1 -0110001110110 Tunaboat 1 -0110001110110 Watercolors 1 -0110001110110 Town-based 1 -0110001110110 All-Terrain 1 -0110001110110 Borderers 1 -0110001110110 GOODE 1 -0110001110110 Thoracic 1 -0110001110110 Temperance 1 -0110001110110 Blancmange 1 -0110001110110 Waterjet 1 -0110001110110 Collon 1 -0110001110110 Urological 1 -0110001110110 Gewandhaus 1 -0110001110110 Liqueurs 1 -0110001110110 peach-flavored 1 -0110001110110 ster 1 -0110001110110 Dyeing 1 -0110001110110 Chasis 1 -0110001110110 Folklife 1 -0110001110110 Consultors 1 -0110001110110 battle-tank 1 -0110001110110 Antico 1 -0110001110110 Wissenschaft 1 -0110001110110 Aquatics 1 -0110001110110 Kreuzaler 1 -0110001110110 Bookshops 1 -0110001110110 Kurier 1 -0110001110110 Jersey-Connecticut 1 -0110001110110 University-Behrend 1 -0110001110110 Broske 1 -0110001110110 beet-refining 1 -0110001110110 Signatory 1 -0110001110110 Nicoud 1 -0110001110110 DFS/Torrance 1 -0110001110110 KENLEY 1 -0110001110110 Optometric 1 -0110001110110 Sanchini 1 -0110001110110 TODAY/Apple 1 -0110001110110 DARTY 1 -0110001110110 Radioelectriques 1 -0110001110110 Reichhart 1 -0110001110110 Maggetto 1 -0110001110110 SELL-OFFS 1 -0110001110110 Anti-Religious 1 -0110001110110 Equestrian 1 -0110001110110 Kosciuszko 1 -0110001110110 Ruska 1 -0110001110110 Intermediation 1 -0110001110110 Boxwood 1 -0110001110110 Pea 1 -0110001110110 Yoga 1 -0110001110110 Voima 1 -0110001110110 society-measured 1 -0110001110110 Keskuspankki 1 -0110001110110 Olii 1 -0110001110110 MINIERE 1 -0110001110110 Cardiologists 1 -0110001110110 Baddie 1 -0110001110110 Floorcovering 1 -0110001110110 Volksopern 1 -0110001110110 90-10 1 -0110001110110 Bk 1 -0110001110110 kommt 1 -0110001110110 Inju 1 -0110001110110 life-lover 1 -0110001110110 Furnishing 1 -0110001110110 Kian 1 -0110001110110 Shinju 1 -0110001110110 BACKGROUNDS 1 -0110001110110 Chaissac 1 -0110001110110 Juggle-In 1 -0110001110110 Dusters 1 -0110001110110 Cockerel 1 -0110001110110 Vaumati 1 -0110001110110 Grosseteste 1 -0110001110110 Wallstreet 1 -0110001110110 DFS/Pacific 1 -0110001110110 scholarships. 1 -0110001110110 Sverdrup 1 -0110001110110 Corngrowers 1 -0110001110110 Oreilles 1 -0110001110110 Lawyer/Simon 1 -0110001110110 Waterfowl 2 -0110001110110 Luge 2 -0110001110110 Tretyakov 2 -0110001110110 Factbook 2 -0110001110110 Televison 2 -0110001110110 Pigments 2 -0110001110110 Econometrics/Ward 2 -0110001110110 Tootsies 2 -0110001110110 Depressive 2 -0110001110110 Maritain 2 -0110001110110 Rheumatism 2 -0110001110110 Chocolatier 2 -0110001110110 Subscriber 2 -0110001110110 Herzig 2 -0110001110110 galy 2 -0110001110110 Microfilms 2 -0110001110110 Halsell 2 -0110001110110 Thermo-Flood 2 -0110001110110 Leroux 2 -0110001110110 Telesystems 2 -0110001110110 Spine 2 -0110001110110 Drayss 2 -0110001110110 Faithfull 2 -0110001110110 Tongues 2 -0110001110110 Argento 2 -0110001110110 Zook 2 -0110001110110 Defamation 2 -0110001110110 Artichoke 2 -0110001110110 Dystrophy 2 -0110001110110 Biographical 2 -0110001110110 Shipboard 2 -0110001110110 Standard-Kelso 2 -0110001110110 Ahoy 2 -0110001110110 Windsurfing 2 -0110001110110 Heusser 2 -0110001110110 Dietetic 2 -0110001110110 Cycling 2 -0110001110110 Mambazo 3 -0110001110110 Bissau 3 -0110001110110 Profitt 3 -0110001110110 Chicle 3 -0110001110110 Underwear 3 -0110001110110 Philatelic 3 -0110001110110 Convalescent 3 -0110001110110 Massif 3 -0110001110110 Fructose 3 -0110001110110 Paddock 3 -0110001110110 Matanzima 3 -0110001110110 Mfg. 3 -0110001110110 Equine 3 -0110001110110 Proprietors 3 -0110001110110 Anthropologist 3 -0110001110110 Archivists 3 -0110001110110 Blackstock 3 -0110001110110 Caperton 3 -0110001110110 Consulters 3 -0110001110110 Astro-Space 3 -0110001110110 Meteorological 4 -0110001110110 Psychoanalytic 4 -0110001110110 Solarco 4 -0110001110110 Collegian 4 -0110001110110 Preparatory 4 -0110001110110 Picks 4 -0110001110110 Preschool 4 -0110001110110 Mainline 4 -0110001110110 Gerontology 4 -0110001110110 Blakeslee 4 -0110001110110 Colloid 4 -0110001110110 Ecosystem 4 -0110001110110 Maternity 4 -0110001110110 Trivia 5 -0110001110110 Maize 5 -0110001110110 Benevolent 5 -0110001110110 Keynote 5 -0110001110110 Fitting 5 -0110001110110 Waterways 5 -0110001110110 Uclaf 5 -0110001110110 SHIPBUILDING 5 -0110001110110 Coloring 5 -0110001110110 Processor 5 -0110001110110 Softball 5 -0110001110110 Oceanographic 5 -0110001110110 Forgan 5 -0110001110110 Incorporation 6 -0110001110110 Slag 6 -0110001110110 T.V. 6 -0110001110110 Explosions 6 -0110001110110 Consciousness 6 -0110001110110 Chiropractic 6 -0110001110110 Libraries 7 -0110001110110 Cometra 7 -0110001110110 Zoological 7 -0110001110110 Astrology 7 -0110001110110 Shrimp 7 -0110001110110 Fin 7 -0110001110110 Ambulance 7 -0110001110110 Cake 7 -0110001110110 Bankcorp 7 -0110001110110 LAND 8 -0110001110110 Expression 8 -0110001110110 Sociological 8 -0110001110110 Lizard 9 -0110001110110 Booksellers 9 -0110001110110 Tie 9 -0110001110110 DISTILLERS 9 -0110001110110 Machining 9 -0110001110110 Hydraulics 9 -0110001110110 Heng 10 -0110001110110 Plate 10 -0110001110110 Photographer 10 -0110001110110 Doors 10 -0110001110110 Panthers 10 -0110001110110 Panther 11 -0110001110110 Exposition 11 -0110001110110 MINERALS 12 -0110001110110 Diabetes 12 -0110001110110 Tally 12 -0110001110110 Relocation 13 -0110001110110 Literacy 13 -0110001110110 Geriatric 13 -0110001110110 Numismatic 14 -0110001110110 Plywood 14 -0110001110110 Bed 14 -0110001110110 Sarasin 14 -0110001110110 Olean 14 -0110001110110 Accessories 15 -0110001110110 Label 15 -0110001110110 Elementary 15 -0110001110110 Depository 15 -0110001110110 Howse 15 -0110001110110 Expressway 15 -0110001110110 Kopy 16 -0110001110110 Superconductor 17 -0110001110110 Pasta 18 -0110001110110 Demographics 19 -0110001110110 Reinvestment 19 -0110001110110 Queensway 21 -0110001110110 Spirits 22 -0110001110110 Depositary 22 -0110001110110 Metall 26 -0110001110110 Nursery 26 -0110001110110 Novel 27 -0110001110110 IH 28 -0110001110110 Correctional 29 -0110001110110 Loving 29 -0110001110110 Playhouse 30 -0110001110110 Hoist 32 -0110001110110 Wagg 33 -0110001110110 Polytechnic 33 -0110001110110 Arbitration 37 -0110001110110 Reference 39 -0110001110110 Cablesystems 39 -0110001110110 Ecology 40 -0110001110110 Physical 44 -0110001110110 Dental 45 -0110001110110 Econometric 49 -0110001110110 Lawyer 52 -0110001110110 Tunnel 54 -0110001110110 Ink 54 -0110001110110 DFS 55 -0110001110110 Psychiatric 62 -0110001110110 Trucking 65 -0110001110110 Vision 65 -0110001110110 Missiles 66 -0110001110110 Beta 75 -0110001110110 Meat 75 -0110001110110 Econometrics 77 -0110001110110 Pulp 92 -0110001110110 Turnpike 96 -0110001110110 Banker 111 -0110001110110 Barrick 127 -0110001110110 Centennial 133 -0110001110110 Picture 141 -0110001110110 Cyanamid 152 -0110001110110 Casino 162 -0110001110110 Graduate 171 -0110001110110 Register 182 -0110001110110 Heart 189 -0110001110110 Pilots 200 -0110001110110 Fire 270 -0110001110110 Chartered 305 -0110001110110 depositary 340 -0110001110110 Enterprise 382 -0110001110110 Bar 384 -0110001110110 Building 435 -0110001110110 Iron 504 -0110001110110 Land 625 -0110001110110 Television 799 -0110001110110 Upham 800 -0110001110110 Telephone 1518 -0110001110110 Savings 4758 -0110001110110 Medical 1977 -0110001110111 Ousts 1 -0110001110111 ShoeSource 1 -0110001110111 Corp.-made 1 -0110001110111 Etak 1 -0110001110111 composer-conductor 1 -0110001110111 Titane 1 -0110001110111 Banker-Bond 1 -0110001110111 Biltrite 1 -0110001110111 Multi-Cinemas 1 -0110001110111 Cytogenetics 1 -0110001110111 SIRRINE 1 -0110001110111 Walker-Godderham 1 -0110001110111 Widens 1 -0110001110111 Sarus 1 -0110001110111 light-welterweight 1 -0110001110111 Wheeled 1 -0110001110111 Brownfeld 1 -0110001110111 Encycle 1 -0110001110111 leaders. 1 -0110001110111 Magnescale 1 -0110001110111 Timed 1 -0110001110111 InteCom 1 -0110001110111 Handbag 1 -0110001110111 TradeCenter 1 -0110001110111 Kunststoffen 1 -0110001110111 K.H. 1 -0110001110111 Hospital-Audubon 1 -0110001110111 Cablesystem 1 -0110001110111 Stores> 1 -0110001110111 Cylinders 1 -0110001110111 St.-Felicien 1 -0110001110111 Nidrei 1 -0110001110111 Applix 1 -0110001110111 Albertini. 1 -0110001110111 rooms. 1 -0110001110111 Funds/Managed 1 -0110001110111 Metrology 1 -0110001110111 Sees 1 -0110001110111 Hurghada 1 -0110001110111 Supercollider 1 -0110001110111 Bros.-Seven 1 -0110001110111 Stone-Mix 1 -0110001110111 Healthplans 1 -0110001110111 Reglatory 1 -0110001110111 DeLaval 1 -0110001110111 Pharmics 1 -0110001110111 Bankorp 1 -0110001110111 Valleylab 1 -0110001110111 FACILITIES 1 -0110001110111 steak-house 1 -0110001110111 Technocrat. 1 -0110001110111 Katei 1 -0110001110111 computer-stores 1 -0110001110111 Settles 1 -0110001110111 Scrubs 1 -0110001110111 McMoran 1 -0110001110111 Piney 1 -0110001110111 Limnological 1 -0110001110111 Alcoa/TRE 1 -0110001110111 Kanygo 1 -0110001110111 LABORATORY 1 -0110001110111 Funashoku 1 -0110001110111 DowBrands 1 -0110001110111 Daimler-Puch 1 -0110001110111 Biopool 1 -0110001110111 Flygt 1 -0110001110111 Bandcorp 1 -0110001110111 LEARJET 1 -0110001110111 iw 1 -0110001110111 635,450 1 -0110001110111 Support. 1 -0110001110111 Strocal 1 -0110001110111 car-washing 1 -0110001110111 Hygene 1 -0110001110111 Enery 1 -0110001110111 Demostration 1 -0110001110111 Greenmoss 1 -0110001110111 Diamanti 1 -0110001110111 Kenway 1 -0110001110111 Pastry 1 -0110001110111 Microscopes 1 -0110001110111 Eagle-East 1 -0110001110111 Flotation 1 -0110001110111 Aerofab 2 -0110001110111 Bong 2 -0110001110111 MART 2 -0110001110111 Optronics 2 -0110001110111 Reit 2 -0110001110111 Gyms 2 -0110001110111 Raymart 2 -0110001110111 Graphix 2 -0110001110111 RS/Expert 2 -0110001110111 Off-Shore 2 -0110001110111 USFA 2 -0110001110111 Ophthalmics 2 -0110001110111 Autolite 2 -0110001110111 Interfinancial 2 -0110001110111 Aktienverein 2 -0110001110111 Artworks 2 -0110001110111 Diamonstein 2 -0110001110111 HighYield 2 -0110001110111 Geotech 2 -0110001110111 Politicking 2 -0110001110111 Cheque 2 -0110001110111 Ammunition 2 -0110001110111 Bretagne 2 -0110001110111 Laminates 2 -0110001110111 BioPharm 2 -0110001110111 ERS 2 -0110001110111 Concessionaires 2 -0110001110111 Booster 3 -0110001110111 Charlevoix 3 -0110001110111 Pauling 3 -0110001110111 Envirosystems 3 -0110001110111 Coil/Frick 3 -0110001110111 Acoustical 3 -0110001110111 Sevcon 3 -0110001110111 Houtex 3 -0110001110111 Lenya 3 -0110001110111 Magnesium 3 -0110001110111 Hovercraft 3 -0110001110111 Enhancements 3 -0110001110111 Insulation 4 -0110001110111 Kinetics 4 -0110001110111 Plough 4 -0110001110111 Opthalmics 4 -0110001110111 Ponds 4 -0110001110111 Divide 4 -0110001110111 Telcom 4 -0110001110111 Tyres 4 -0110001110111 Copco 5 -0110001110111 auf 5 -0110001110111 Ultrasound 5 -0110001110111 Medica 5 -0110001110111 Carpets 5 -0110001110111 Roofing 5 -0110001110111 Summerfare 6 -0110001110111 Bom 6 -0110001110111 Stodgell 6 -0110001110111 Haynie 6 -0110001110111 Mobilnet 7 -0110001110111 Sterilizer 7 -0110001110111 Scientifics 7 -0110001110111 Gummi-Werke 7 -0110001110111 Phosphates 7 -0110001110111 Rent-a-Car 7 -0110001110111 Mogul 7 -0110001110111 Telemanagement 8 -0110001110111 Inmobiliaria 8 -0110001110111 McMoRan 9 -0110001110111 Doodle 9 -0110001110111 PubliTech 9 -0110001110111 CATV 10 -0110001110111 Metcom 10 -0110001110111 Agribusiness 11 -0110001110111 AmeriGas 11 -0110001110111 Intertechnology 11 -0110001110111 Industri 11 -0110001110111 KONG 11 -0110001110111 Businessphones 12 -0110001110111 Telemedia 12 -0110001110111 Produce 12 -0110001110111 Rambler 12 -0110001110111 Worldcom 14 -0110001110111 Chair 14 -0110001110111 Foodservice 14 -0110001110111 Airfone 14 -0110001110111 Directories 15 -0110001110111 Spacenet 15 -0110001110111 Trace 17 -0110001110111 Creations 17 -0110001110111 Shelf 17 -0110001110111 Hosiery 18 -0110001110111 ASC 18 -0110001110111 Distilleries 18 -0110001110111 Rayonier 20 -0110001110111 Fax 20 -0110001110111 Fragrances 20 -0110001110111 Coppee 21 -0110001110111 Knitting 23 -0110001110111 Aptitude 23 -0110001110111 Antibodies 27 -0110001110111 Seaboard 28 -0110001110111 Suites 32 -0110001110111 Rent-A-Car 33 -0110001110111 Designs 34 -0110001110111 Jewelry 38 -0110001110111 Cashways 43 -0110001110111 Appliance 43 -0110001110111 R&M 44 -0110001110111 Producing 50 -0110001110111 Biologics 51 -0110001110111 Bloedel 51 -0110001110111 Royalty 54 -0110001110111 Brewery 56 -0110001110111 Sirrine 57 -0110001110111 D.S. 66 -0110001110111 Odeon 72 -0110001110111 Delaval 76 -0110001110111 Telepictures 87 -0110001110111 Biotech 95 -0110001110111 Films 101 -0110001110111 Purina 109 -0110001110111 Store 130 -0110001110111 Logic 134 -0110001110111 Kangyo 163 -0110001110111 Petrofina 176 -0110001110111 Brace 216 -0110001110111 Utility 249 -0110001110111 Inn 310 -0110001110111 Inns 319 -0110001110111 Toys 361 -0110001110111 Records 379 -0110001110111 Machine 411 -0110001110111 Bancshares 425 -0110001110111 Regulatory 573 -0110001110111 mart 634 -0110001110111 Utilities 850 -0110001110111 Equipment 908 -0110001110111 Stores 2432 -0110001110111 Communications 3312 -0110001110111 Home 4308 -01100011110 purple-suiter 1 -01100011110 WHISTLE-BLOWER 1 -01100011110 base-building 1 -01100011110 ranching-for-wildlife 1 -01100011110 rightism 1 -01100011110 Kapital 1 -01100011110 secu 1 -01100011110 Bolf 1 -01100011110 burn-in 1 -01100011110 Recognitions 1 -01100011110 coronels 1 -01100011110 packet-switch 1 -01100011110 Pelvis 1 -01100011110 quasi-utility 1 -01100011110 violentologos 1 -01100011110 anti-thrombotic 1 -01100011110 unCOLAs 1 -01100011110 flexibilty 1 -01100011110 CCCP 1 -01100011110 Announcers 1 -01100011110 shinjinrui 1 -01100011110 atentado 1 -01100011110 ring-around-the-collar 1 -01100011110 Anti-Aids 1 -01100011110 heir-conditioned 1 -01100011110 miniaturize 1 -01100011110 field-of-interest 1 -01100011110 J-Curve 1 -01100011110 devaluationist 1 -01100011110 boom-box 1 -01100011110 Overdone 1 -01100011110 Chunnel 1 -01100011110 backlit 1 -01100011110 boom-chug-a-lugga-lugga 1 -01100011110 glitz-monger 1 -01100011110 Humanism 1 -01100011110 insectorium 1 -01100011110 we-are-so-powerful-we-can-do-anything 1 -01100011110 Indiscretion-II 1 -01100011110 chinovniki 1 -01100011110 Torque-line 1 -01100011110 erRRAWS 1 -01100011110 OHHawws 1 -01100011110 land-grabbing 1 -01100011110 garbitrage 1 -01100011110 Sillies 1 -01100011110 diet-resistant 1 -01100011110 less-than-fair-market 1 -01100011110 oversampling 1 -01100011110 173-room 1 -01100011110 CorporateWatch 1 -01100011110 Once. 1 -01100011110 techno-cities 1 -01100011110 commingle 1 -01100011110 On-call 1 -01100011110 Ting-Ting 1 -01100011110 optionaholics 1 -01100011110 destabilizers 1 -01100011110 obdurately 1 -01100011110 Offertorium 1 -01100011110 Metamorphoser 1 -01100011110 banjo-hitting 1 -01100011110 Gemuetlichkeit 1 -01100011110 delinkage 1 -01100011110 easy-come-easy-go 1 -01100011110 ultra-easy 1 -01100011110 Payment-in-kind 1 -01100011110 co-bosses 1 -01100011110 superchilling 1 -01100011110 peel-and-seal 1 -01100011110 Sunflowers. 1 -01100011110 Fervaal 1 -01100011110 Winter-kill 1 -01100011110 minimum-speed 1 -01100011110 teraflop 1 -01100011110 product-neutral 1 -01100011110 toyi-toyi 1 -01100011110 Mute 1 -01100011110 show-the-folks-a-good-time-even-if-the-home-team-loses 1 -01100011110 Plagues 1 -01100011110 baho 1 -01100011110 spacebridge 1 -01100011110 afterboomers 1 -01100011110 demi-ronde 1 -01100011110 neo 1 -01100011110 nonpersons 1 -01100011110 schoolmarms 1 -01100011110 Aquaman 1 -01100011110 pro-education 1 -01100011110 Marauder 1 -01100011110 extortionary 1 -01100011110 Ox 1 -01100011110 Screeners 1 -01100011110 blindpool 1 -01100011110 Paquita 1 -01100011110 company-to-company 1 -01100011110 Stuffed 1 -01100011110 Radiovisions 1 -01100011110 Desiring 1 -01100011110 consumer-durable 1 -01100011110 caudillo 1 -01100011110 Stayin 1 -01100011110 stingers 1 -01100011110 ulemas 1 -01100011110 openaccess 1 -01100011110 Kiku 1 -01100011110 bag-in-a-box 1 -01100011110 micro-genesis 1 -01100011110 Chips. 1 -01100011110 won't-work 1 -01100011110 Sepulchers 1 -01100011110 settlement-day 1 -01100011110 bricolage 1 -01100011110 Bet-A-Million 1 -01100011110 Prince. 1 -01100011110 above-budget 1 -01100011110 lite-generic 1 -01100011110 jawboned 1 -01100011110 Runways 1 -01100011110 semi-optimistic 1 -01100011110 neoprohibitionists 1 -01100011110 maharajas 1 -01100011110 Papadocracy 1 -01100011110 Pag 1 -01100011110 genemachine 1 -01100011110 human-interface 1 -01100011110 ufficialito 1 -01100011110 quasi-equity 1 -01100011110 Nazdrovia 1 -01100011110 promise-as-you-go 1 -01100011110 Jenufa 1 -01100011110 Echinops 1 -01100011110 Prairiescapes 1 -01100011110 hold-up 1 -01100011110 parolee 1 -01100011110 Aints 1 -01100011110 ring-dealing 1 -01100011110 hat-sized 1 -01100011110 pseudoseal 1 -01100011110 make-war-not-law 1 -01100011110 newstalk 1 -01100011110 motivators 1 -01100011110 euthanast 1 -01100011110 motherboards 1 -01100011110 Weathered 1 -01100011110 mini-hubs 1 -01100011110 Jointness 1 -01100011110 Slobwear 1 -01100011110 organigramme 1 -01100011110 anti-sexism 1 -01100011110 joint-education 1 -01100011110 MacMan 1 -01100011110 trash-to-cash 1 -01100011110 American. 1 -01100011110 non-designer 1 -01100011110 MM 1 -01100011110 Thinkers 1 -01100011110 evangelize 1 -01100011110 Divertissement 1 -01100011110 Rewarding 1 -01100011110 asistance 1 -01100011110 incentivized 1 -01100011110 rollaway 1 -01100011110 curlique 1 -01100011110 death-haunted 1 -01100011110 equivalently 1 -01100011110 farm-out 1 -01100011110 dirty-collar 1 -01100011110 parker 1 -01100011110 Laughed 1 -01100011110 Lothye 1 -01100011110 anti-imperialistic 1 -01100011110 trashier 1 -01100011110 Appeared 1 -01100011110 wunderkinder 1 -01100011110 Ameriachi 1 -01100011110 Butley 1 -01100011110 Conzertstueck 1 -01100011110 Gnat 1 -01100011110 presidenciables 1 -01100011110 mega-trade 1 -01100011110 oaters 1 -01100011110 nabes 1 -01100011110 Guild/AIDS 1 -01100011110 In-a-gadda-da-vida 1 -01100011110 click-whir 1 -01100011110 Eothen 1 -01100011110 Nonbanks 1 -01100011110 TICA 1 -01100011110 back-fitting 1 -01100011110 over-reporting 1 -01100011110 anticipatorially 1 -01100011110 caxixi 1 -01100011110 birdcage 1 -01100011110 qual-coms 1 -01100011110 cock-a-doodle-doo 1 -01100011110 cocorico 1 -01100011110 Continental-bashing 1 -01100011110 Dudes 1 -01100011110 minibuster 1 -01100011110 Yearling 1 -01100011110 dividend-like 1 -01100011110 corporate-potential 1 -01100011110 microshake 1 -01100011110 minibonds 1 -01100011110 Salary-men 1 -01100011110 Tuk-Tuk 1 -01100011110 Self-reliance 1 -01100011110 Froggie 1 -01100011110 I-can-have-it-all 1 -01100011110 mediocracy 1 -01100011110 mega-position 1 -01100011110 Lovesexy 1 -01100011110 Phaedra. 1 -01100011110 head-up 1 -01100011110 Mondale/Ferarro 1 -01100011110 corpocratic 1 -01100011110 Monika 1 -01100011110 nourisher 1 -01100011110 de-clutter 1 -01100011110 Pastificio 1 -01100011110 Piangero 1 -01100011110 .45-to-the-temple 1 -01100011110 Off-line 1 -01100011110 petroleros 1 -01100011110 Fascinacion 1 -01100011110 G--d--- 1 -01100011110 work-fare 1 -01100011110 Floccinaucinihilipilification 1 -01100011110 under-65s 1 -01100011110 McAirbus 1 -01100011110 Birchite 1 -01100011110 Japanized 1 -01100011110 jellyroll 1 -01100011110 missing-link 1 -01100011110 moral-hazard 1 -01100011110 God's-eye-view 1 -01100011110 classist 1 -01100011110 rule-based 1 -01100011110 strumpet 1 -01100011110 near-maximum 1 -01100011110 reward/risk 1 -01100011110 body-wire 1 -01100011110 de-consolidate 1 -01100011110 1960-88 1 -01100011110 nonrecognition 1 -01100011110 tariffication 1 -01100011110 easy-drive 1 -01100011110 guestimate 1 -01100011110 flaps-up 1 -01100011110 Aggressor 1 -01100011110 no-news 1 -01100011110 miscertified 1 -01100011110 dirty-war 1 -01100011110 non-bid 1 -01100011110 40-40 1 -01100011110 spin-terviews. 1 -01100011110 fault-tolerance 1 -01100011110 vinaigre 1 -01100011110 mood-mapping 1 -01100011110 30-something 1 -01100011110 At-Your-Service 1 -01100011110 single-use 1 -01100011110 vacancy-control 1 -01100011110 Tippecanoe 1 -01100011110 high-opportunity 1 -01100011110 Chilenidad 1 -01100011110 Hojotoho 1 -01100011110 Dreamchild 1 -01100011110 walkup 1 -01100011110 flexbanking 1 -01100011110 draft-dodger 1 -01100011110 fast-breeder 1 -01100011110 superstretch 1 -01100011110 phocomele 1 -01100011110 monocephalus 1 -01100011110 re-colonized 1 -01100011110 Hart-to-Hart 1 -01100011110 teraglin 1 -01100011110 pippy 1 -01100011110 fratry 1 -01100011110 butch 1 -01100011110 ji 1 -01100011110 unchi 1 -01100011110 copy-oriented 1 -01100011110 PTs 1 -01100011110 bongs 1 -01100011110 intervener 1 -01100011110 copolymer 1 -01100011110 Pro-family 1 -01100011110 folkabilly 1 -01100011110 Shoeless 1 -01100011110 rip-and-skip 1 -01100011110 Agronsky 1 -01100011110 de-cop 1 -01100011110 D/E 1 -01100011110 azerty 1 -01100011110 qwerty 1 -01100011110 Toothbrush 1 -01100011110 camel's-nose-under-the-tent 1 -01100011110 KOR-E-A 1 -01100011110 you-go-first 1 -01100011110 tagout 1 -01100011110 Multi-Location 1 -01100011110 arbolitos 1 -01100011110 Sabre-ize 1 -01100011110 Sabre-izing 1 -01100011110 pro-social 1 -01100011110 Shutout 1 -01100011110 pos.Razvilka 1 -01100011110 gladness 1 -01100011110 -est 1 -01100011110 Scorpion 1 -01100011110 Nibbles 1 -01100011110 BHHS 1 -01100011110 Self-Helpless 1 -01100011110 Snorty 1 -01100011110 Krasnosel 1 -01100011110 Ptich 1 -01100011110 holocaust. 1 -01100011110 Minstrel 1 -01100011110 shooting-star 1 -01100011110 level-3 1 -01100011110 abdicators 1 -01100011110 hojotohos 1 -01100011110 superbill 1 -01100011110 tin-parachute 1 -01100011110 Duce 1 -01100011110 Maximize 1 -01100011110 arm-chair 1 -01100011110 pair-off 1 -01100011110 Perception-Reality 1 -01100011110 Manhattanization 1 -01100011110 Dismantlement 1 -01100011110 sanctions-busters 1 -01100011110 lock-on 1 -01100011110 HFII 1 -01100011110 Laeliocattleya 1 -01100011110 Cattleyas 1 -01100011110 studyin 1 -01100011110 Lynched 1 -01100011110 wasting-asset 1 -01100011110 gravlax 1 -01100011110 cross-margined 1 -01100011110 Huckster 1 -01100011110 Trellis. 1 -01100011110 bimodal 1 -01100011110 minivacation 1 -01100011110 Presences 1 -01100011110 cathedral-type 1 -01100011110 bow-wave 1 -01100011110 limne 1 -01100011110 Actae 1 -01100011110 cym 1 -01100011110 Aliens. 1 -01100011110 food-pension 1 -01100011110 contrabandistas 1 -01100011110 superliens 1 -01100011110 Super-Regional 1 -01100011110 frequent-parker 1 -01100011110 L.H.O.O.Q. 1 -01100011110 All-Around 1 -01100011110 oyama 1 -01100011110 West-West 1 -01100011110 Cocom-like 1 -01100011110 tarted-up 1 -01100011110 Caco-Calo 1 -01100011110 right-to-sue 1 -01100011110 Juba 1 -01100011110 fine-spun 1 -01100011110 Dollar-sterling 1 -01100011110 1908-1910 1 -01100011110 Altruism 1 -01100011110 virtucrat 1 -01100011110 borderline-high 1 -01100011110 hot-tagged 1 -01100011110 phaelanopsis 1 -01100011110 T-r-i-a-g-e 1 -01100011110 Hymies 1 -01100011110 factory-of-the-future 1 -01100011110 black-box 1 -01100011110 Intending 1 -01100011110 Regen 1 -01100011110 Roni 1 -01100011110 loy 1 -01100011110 aa 1 -01100011110 Idiot 1 -01100011110 samhain 1 -01100011110 FaxTrax 1 -01100011110 keyboard-phobic 1 -01100011110 very/fairly 1 -01100011110 S/A 1 -01100011110 surfistas 1 -01100011110 Interruptible 1 -01100011110 1966-1988 1 -01100011110 Delete 1 -01100011110 picture-within-a-picture 1 -01100011110 spin-doctors 1 -01100011110 half-original 1 -01100011110 symplegma 1 -01100011110 Polluter 1 -01100011110 General-purpose 1 -01100011110 Slamdunk 1 -01100011110 Pandemonium 1 -01100011110 multifocal 1 -01100011110 lapware 1 -01100011110 Stately 1 -01100011110 allah 1 -01100011110 Insha 1 -01100011110 etfaddal 1 -01100011110 Headbangers 1 -01100011110 supersites 1 -01100011110 self-revival 1 -01100011110 moisturize 1 -01100011110 Magazine. 1 -01100011110 Sclairtech 1 -01100011110 Nymph 1 -01100011110 omniverous 1 -01100011110 super-energized 1 -01100011110 dechlorinate 1 -01100011110 Stakeholder 1 -01100011110 Maybellene 1 -01100011110 outflanking 1 -01100011110 trilemma 1 -01100011110 delphi 1 -01100011110 there's-no-mandate 1 -01100011110 buy-into-Medicaid 1 -01100011110 Conrack 1 -01100011110 unendorsed 1 -01100011110 veepette 1 -01100011110 Svatba 1 -01100011110 overtopping 1 -01100011110 Mossflower 1 -01100011110 Ants 1 -01100011110 Lazardo 1 -01100011110 Hominids 1 -01100011110 VIRUS 1 -01100011110 Jigger 1 -01100011110 Pookins 1 -01100011110 consumer-friendly 1 -01100011110 Scrapple 1 -01100011110 chickenhawks 1 -01100011110 Tragicomedy 1 -01100011110 Geraldo. 1 -01100011110 multi-management 1 -01100011110 no-iron 1 -01100011110 pick-your-own 1 -01100011110 Pics 1 -01100011110 Roger-bashing 1 -01100011110 restudy 1 -01100011110 sounds-good 1 -01100011110 mileage-purchase 1 -01100011110 Asthma. 1 -01100011110 chitsu 1 -01100011110 burahza 1 -01100011110 Gumbo 1 -01100011110 Louisianify 1 -01100011110 galimachas 1 -01100011110 Frenglish 1 -01100011110 Raccoon 1 -01100011110 charismaticians 1 -01100011110 Clutch-Hitter 1 -01100011110 ride-along 1 -01100011110 man-in-the-house 1 -01100011110 Qu 1 -01100011110 wordmen 1 -01100011110 enteron 1 -01100011110 Enteron 1 -01100011110 Seniligate. 1 -01100011110 pre-queened 1 -01100011110 most-underrated 1 -01100011110 unreasonableness 1 -01100011110 Transcriber 1 -01100011110 non-wimp 1 -01100011110 Possessions 1 -01100011110 alphabet-stock 1 -01100011110 semi-flaky 1 -01100011110 ever-aggressive 1 -01100011110 Fairchildren 1 -01100011110 marginal-risk 1 -01100011110 agree/disagree 1 -01100011110 GM-80 1 -01100011110 gobelas 1 -01100011110 Trans-Figurations 1 -01100011110 industrial-rationalization 1 -01100011110 spiritedness 1 -01100011110 sippin 1 -01100011110 Conditionality 1 -01100011110 Outbreak 1 -01100011110 upscaling 1 -01100011110 can-dos 1 -01100011110 Beachless 1 -01100011110 subliminal-message 1 -01100011110 Prairie-style 1 -01100011110 aasafeer 1 -01100011110 hanblechiya 1 -01100011110 Escenas 1 -01100011110 baqanga 1 -01100011110 de-skill 1 -01100011110 freons 1 -01100011110 un-tender 1 -01100011110 misdispense 1 -01100011110 Footsteps 1 -01100011110 Hammie 1 -01100011110 Hits-1 1 -01100011110 Sentimentalism 1 -01100011110 peaceful-use 1 -01100011110 double-square 1 -01100011110 preexisting-condition 1 -01100011110 autofacturing 1 -01100011110 caballero 1 -01100011110 back-solving 1 -01100011110 Happening 1 -01100011110 piel 1 -01100011110 cryogenesis 1 -01100011110 rebellion-vulgarity-violence-sex 1 -01100011110 decommunization 1 -01100011110 Lun 1 -01100011110 Stosh 1 -01100011110 informance 1 -01100011110 madchen 1 -01100011110 fund-of-funds 1 -01100011110 speak-English-only 1 -01100011110 defiled 1 -01100011110 cf. 1 -01100011110 foreign-appearing 1 -01100011110 remaindered 1 -01100011110 po 1 -01100011110 belongers 1 -01100011110 us-against-them 1 -01100011110 de-Americanizing 1 -01100011110 Greenback 1 -01100011110 Crossbreed 1 -01100011110 Arsenic 1 -01100011110 Manageable 1 -01100011110 ikat 1 -01100011110 debunching 1 -01100011110 dum-dum 1 -01100011110 Woodsmoke 1 -01100011110 B.A.M.F.V. 1 -01100011110 cinnamint 1 -01100011110 Strog 1 -01100011110 Exactly. 1 -01100011110 Psych 1 -01100011110 Exerballs 1 -01100011110 Tweedledum 1 -01100011110 boody 1 -01100011110 Searchin 1 -01100011110 well-dones 1 -01100011110 Paranoid 1 -01100011110 steuerreformchen 1 -01100011110 succo 1 -01100011110 Yolanta 1 -01100011110 woman-liking 1 -01100011110 Febuary 1 -01100011110 Phaedra 1 -01100011110 micro-marketing 1 -01100011110 Phoebus 1 -01100011110 broadcastmail 1 -01100011110 bang-them-over-the-head 1 -01100011110 de-Germanize 1 -01100011110 pseudo-male 1 -01100011110 vous 1 -01100011110 campesinas 1 -01100011110 scintillation 1 -01100011110 confrontationism 1 -01100011110 guero 1 -01100011110 obligator 1 -01100011110 Agios 1 -01100011110 G-Man 1 -01100011110 information-driven 1 -01100011110 user-charge 1 -01100011110 videolog 1 -01100011110 stop-lending 1 -01100011110 Scherenschnitt 1 -01100011110 McDonald's-fashion 1 -01100011110 multi-ton 1 -01100011110 compensation-based 1 -01100011110 hard-loan 1 -01100011110 Militants 1 -01100011110 nganga 1 -01100011110 ph 1 -01100011110 Oatsleaf 1 -01100011110 Low-impact 1 -01100011110 Canadianize 1 -01100011110 mindfulness 1 -01100011110 sanctuarization 1 -01100011110 nuclear-supplier 1 -01100011110 collegially 1 -01100011110 Rheingold-size 1 -01100011110 Jetsons 1 -01100011110 Sale. 1 -01100011110 water's-edge 1 -01100011110 Byrdles 1 -01100011110 self-certified 1 -01100011110 Dumpy 1 -01100011110 guardia 1 -01100011110 Loot 1 -01100011110 cokome 1 -01100011110 1901-1970 1 -01100011110 rate-based 1 -01100011110 copy-cat 1 -01100011110 no-holds 1 -01100011110 Kechitomo 1 -01100011110 quasi-flaky 1 -01100011110 Coverup 1 -01100011110 Destroy-it 1 -01100011110 new-man 1 -01100011110 rotopreneur 1 -01100011110 acquipreneur 1 -01100011110 Ramburger 1 -01100011110 Mannequin 1 -01100011110 Tastiness 1 -01100011110 Europeanizing 1 -01100011110 Mgt. 1 -01100011110 Talegate 1 -01100011110 derats 1 -01100011110 zero-zeroing 1 -01100011110 Livability 1 -01100011110 discreditable 1 -01100011110 do-sa-do 1 -01100011110 Zephyrus 1 -01100011110 U.S.-content 1 -01100011110 midlist 1 -01100011110 multisitus 1 -01100011110 self-Finlandization 1 -01100011110 forget. 1 -01100011110 Glutted 1 -01100011110 fairness-seeking 1 -01100011110 beautiful-music 1 -01100011110 unknowables 1 -01100011110 low-balled 1 -01100011110 kabuya 1 -01100011110 under-the-desk 1 -01100011110 open-warfare 1 -01100011110 B&G 1 -01100011110 machineness 1 -01100011110 spreadload 1 -01100011110 machine-readable 1 -01100011110 Rickenbacher 1 -01100011110 compris 1 -01100011110 Basia 1 -01100011110 Dozen. 1 -01100011110 PearlyGate 1 -01100011110 chapitre 1 -01100011110 Limbs 1 -01100011110 superman 1 -01100011110 crisis-ridden 1 -01100011110 stolen-information 1 -01100011110 chain-reaction 1 -01100011110 Windshield 1 -01100011110 heavy-rain 1 -01100011110 Masking 1 -01100011110 superbrokers 1 -01100011110 Grecified 1 -01100011110 Tails 1 -01100011110 cohabits 1 -01100011110 Fuge 1 -01100011110 anything-is-possible 1 -01100011110 N-country 1 -01100011110 Vietnamize 1 -01100011110 Florida-style 1 -01100011110 caromball 1 -01100011110 duchesse 1 -01100011110 fauteuil 1 -01100011110 Dissimilar 1 -01100011110 remeasure 1 -01100011110 bubblecar 1 -01100011110 Lotus-itis 1 -01100011110 emergin 1 -01100011110 retargeting 1 -01100011110 Scepticism 1 -01100011110 Salespaq 1 -01100011110 Conservationist 1 -01100011110 multi-team 1 -01100011110 Insulls 1 -01100011110 shiksas 1 -01100011110 shuttle-unique 1 -01100011110 Sixty-One 1 -01100011110 BillyBall 1 -01100011110 fortress-economy 1 -01100011110 BusinessSaver 1 -01100011110 kartser 1 -01100011110 Topaze 1 -01100011110 Retro 1 -01100011110 gar-barge 1 -01100011110 semi-embarrassed 1 -01100011110 silkworm 1 -01100011110 supertechies 1 -01100011110 tradmark 1 -01100011110 Archon 1 -01100011110 coat-tail 1 -01100011110 fashion-forward 1 -01100011110 looney-left 1 -01100011110 less-than-fair-value 1 -01100011110 aficion 1 -01100011110 Feudal 1 -01100011110 shunpiking 1 -01100011110 crisis-level 1 -01100011110 polygamodioecious 1 -01100011110 dismuted 1 -01100011110 metonymy 1 -01100011110 world-open 1 -01100011110 nature/nurture 1 -01100011110 Pinafore 1 -01100011110 TeenLink 1 -01100011110 narrowback 1 -01100011110 Mid-September 1 -01100011110 Unrecognized 1 -01100011110 semi-urban 1 -01100011110 immobilisme 1 -01100011110 beer-consumption 1 -01100011110 bop-bop-bop-bop 1 -01100011110 innocent-child 1 -01100011110 kiddie-tax 1 -01100011110 butt-sprung 1 -01100011110 hoody 1 -01100011110 Travesties 1 -01100011110 medi-cant 1 -01100011110 gorditas 1 -01100011110 defeat-proof 1 -01100011110 Pre-flight 1 -01100011110 boleros 1 -01100011110 me-generation 1 -01100011110 Businesschoolus 1 -01100011110 deo-cologne 1 -01100011110 Euro-bottle 1 -01100011110 refurbishers 1 -01100011110 Peab 1 -01100011110 mini-majors 1 -01100011110 megaproblem 1 -01100011110 Shakuhachi 1 -01100011110 mini-equity 1 -01100011110 Loonyopoly 1 -01100011110 in-migrants 1 -01100011110 prestrategic 1 -01100011110 steam-users 1 -01100011110 Countdown-to-Bankruptcy 1 -01100011110 open-mindedly 1 -01100011110 MasterSingers 1 -01100011110 comprimario 1 -01100011110 juros 1 -01100011110 Chaster 1 -01100011110 Resurrexit 1 -01100011110 voter-education 1 -01100011110 nonworker 1 -01100011110 non-workers 1 -01100011110 SILK-STOCKING 1 -01100011110 Campesinos 1 -01100011110 Bipman 1 -01100011110 functionoids 1 -01100011110 Herbicide 1 -01100011110 tecretary 1 -01100011110 style-personality 1 -01100011110 hyper-aggressive 1 -01100011110 double-financing 1 -01100011110 Grifters 1 -01100011110 cleanhands 1 -01100011110 beaten-up 1 -01100011110 maxed-out 1 -01100011110 Birdie 1 -01100011110 sub-participate 1 -01100011110 anti-abuse 1 -01100011110 simpatico 1 -01100011110 Tropism 1 -01100011110 social-scientific 1 -01100011110 black-night 1 -01100011110 stateroom 1 -01100011110 nofrills 1 -01100011110 must-be-a-tourist 1 -01100011110 boycott-free 1 -01100011110 balloon-frame 1 -01100011110 right-brain 1 -01100011110 Carols 1 -01100011110 rentier 1 -01100011110 second-rung 1 -01100011110 sure-bet 1 -01100011110 Cacciatore 1 -01100011110 annihilator 1 -01100011110 Back. 1 -01100011110 un-campaigns 1 -01100011110 overhoused 1 -01100011110 thumbless 1 -01100011110 self-strangulation 1 -01100011110 hotdogging 1 -01100011110 Daydreams 1 -01100011110 Exorcist 1 -01100011110 semi-shock 1 -01100011110 overcooling 1 -01100011110 upper-moderate 1 -01100011110 Shoebox 1 -01100011110 store-crawling 1 -01100011110 macandal 1 -01100011110 shund 1 -01100011110 Europackages 1 -01100011110 detentes 1 -01100011110 fixed-but-adjustable 1 -01100011110 creag 1 -01100011110 Starfighter 1 -01100011110 Wassernixen 1 -01100011110 wonderbowl 1 -01100011110 paras 1 -01100011110 decongester 1 -01100011110 C.O.D. 1 -01100011110 Vandover 1 -01100011110 Bainies 1 -01100011110 faellespisning 1 -01100011110 faellesspisning 1 -01100011110 Astrologer. 1 -01100011110 Red-Right-88 1 -01100011110 old-codgerism 1 -01100011110 stereo-capable 1 -01100011110 Lundahl 1 -01100011110 Chronology 1 -01100011110 semiserious 1 -01100011110 Clarification 1 -01100011110 celebutant 1 -01100011110 verligte 1 -01100011110 verkrampte 1 -01100011110 quarantine-the-aggressors 1 -01100011110 P.O.W. 1 -01100011110 Dangermouse 1 -01100011110 half-commission 1 -01100011110 pomato 1 -01100011110 chicklet 1 -01100011110 Heartbeeps 1 -01100011110 sugarplum 1 -01100011110 Rigolettos 1 -01100011110 stony-hearted 1 -01100011110 convictry 1 -01100011110 bushrangers 1 -01100011110 bolters 1 -01100011110 EMBERS 1 -01100011110 popcorny 1 -01100011110 tomb-building 1 -01100011110 brigadista 1 -01100011110 ultra-luxury 1 -01100011110 Tanzlieder 1 -01100011110 Bronzes 1 -01100011110 Memento 1 -01100011110 informances 1 -01100011110 infotainment 1 -01100011110 Alphaville 1 -01100011110 glanzrolle 1 -01100011110 bank-eligible 1 -01100011110 Strauss-to-Strauss 1 -01100011110 buttery-nutty 1 -01100011110 de-Maoification 1 -01100011110 Representations 1 -01100011110 vises 1 -01100011110 demand-use 1 -01100011110 civilianizing 1 -01100011110 sweethearting 1 -01100011110 sub-limits 1 -01100011110 Perversities 1 -01100011110 audio-grams 1 -01100011110 techno-bandits 1 -01100011110 rostak 1 -01100011110 Borens 1 -01100011110 bombsight 1 -01100011110 supersweet 1 -01100011110 Pomp 1 -01100011110 Elegy 1 -01100011110 Wojrse 1 -01100011110 w-o-r 1 -01100011110 Preppymint 1 -01100011110 biometric 1 -01100011110 Squeegee 1 -01100011110 reliquification 1 -01100011110 Vaterland 1 -01100011110 de-stressing 1 -01100011110 Carabineros 1 -01100011110 Phone-a-Moan 1 -01100011110 McNallyed 1 -01100011110 intentionalism 1 -01100011110 Yippie-Yuppie-I-Ay 1 -01100011110 no-future 1 -01100011110 super-antibiotic 1 -01100011110 super-felons 1 -01100011110 5-foot-7-and-a-half-inch 1 -01100011110 Ps 1 -01100011110 pistol-whip 1 -01100011110 Carats 1 -01100011110 Creationists 1 -01100011110 Yippie-Yupppie-I-Ay 1 -01100011110 filmic 1 -01100011110 big-organization 1 -01100011110 gaffer 1 -01100011110 oooh 1 -01100011110 mini-factories 1 -01100011110 Who-What-When-Where-and-Why 1 -01100011110 min-max 1 -01100011110 deproclaimed 1 -01100011110 cuted-up 1 -01100011110 unmixable 1 -01100011110 war-support 1 -01100011110 Bulgarize 1 -01100011110 seignior 1 -01100011110 junk-related 1 -01100011110 non-stimulative 1 -01100011110 post-history 1 -01100011110 multistore 1 -01100011110 over-recoveries 1 -01100011110 Sued-Nord-Gefaelle 1 -01100011110 MORTGAGE-interest 1 -01100011110 dream-breaker 1 -01100011110 scapegrace 1 -01100011110 Metalsmith 1 -01100011110 narcotraficantes 1 -01100011110 Trotskyites 1 -01100011110 Intrapreneurship 1 -01100011110 get-to-know 1 -01100011110 Carries 1 -01100011110 back-burnered 1 -01100011110 Fugitives 1 -01100011110 mischarge 1 -01100011110 too-big-to-fail 1 -01100011110 anti-racist 1 -01100011110 Vindictiveness 1 -01100011110 Dancin 1 -01100011110 management-by-objective 1 -01100011110 object-based 1 -01100011110 upstreaming 1 -01100011110 quasi-fascist 1 -01100011110 first-black 1 -01100011110 cryovolcanoes 1 -01100011110 Rot 1 -01100011110 Menudo 1 -01100011110 Altruists 1 -01100011110 come-as-you-are 1 -01100011110 FortressEurope 1 -01100011110 Fast-tracking 1 -01100011110 derecognized 1 -01100011110 belike 1 -01100011110 methought 1 -01100011110 demogrant 1 -01100011110 abscissa 1 -01100011110 ci-devant 1 -01100011110 arrivistes 1 -01100011110 authentics 1 -01100011110 landslide. 1 -01100011110 superregulator 1 -01100011110 meier 1 -01100011110 Bieder 1 -01100011110 EJD 1 -01100011110 Helps 1 -01100011110 ALEX 1 -01100011110 Stingray 1 -01100011110 Lectio 1 -01100011110 Trotskistka 1 -01100011110 prequalify 1 -01100011110 fuel-cycle 1 -01100011110 student-go-home 1 -01100011110 bolsas 1 -01100011110 corros 1 -01100011110 boneheads 1 -01100011110 sole-sponsored 1 -01100011110 dumping-price 1 -01100011110 Charlie-class 1 -01100011110 Silhouettes 1 -01100011110 non-destructive 1 -01100011110 BOWLING 1 -01100011110 Batmobile 1 -01100011110 bingo-like 1 -01100011110 gweilo 1 -01100011110 eloping 1 -01100011110 America-in-Decline 1 -01100011110 documents. 1 -01100011110 matcher 1 -01100011110 Wozzeck 1 -01100011110 geschrei 1 -01100011110 quella 1 -01100011110 Whirlwind 1 -01100011110 Advise 1 -01100011110 celestials 1 -01100011110 mini-Glass-Steagall 1 -01100011110 taxmobiles 1 -01100011110 artistas 1 -01100011110 hard-to-count 1 -01100011110 Simpsons 1 -01100011110 CoverUps 1 -01100011110 mini-fiestas 1 -01100011110 recertify 1 -01100011110 Alcell 1 -01100011110 doo-wops 1 -01100011110 split-liver 1 -01100011110 standing-tall 1 -01100011110 Tender-Cuts 1 -01100011110 Olympiques 1 -01100011110 hamburgerology 1 -01100011110 competition-enhancers 1 -01100011110 caritas 1 -01100011110 grosser-looking 1 -01100011110 billpayer 1 -01100011110 biofidelity 1 -01100011110 rent-seekers 1 -01100011110 slurper 1 -01100011110 Deficit-neutral 1 -01100011110 Icebreaker 1 -01100011110 Suvorov 1 -01100011110 fee-shifting 1 -01100011110 Laverne 1 -01100011110 pechii 1 -01100011110 mini-rush 1 -01100011110 Borklet 1 -01100011110 fate-worse-than-death 1 -01100011110 education-oriented 1 -01100011110 open-architecture 1 -01100011110 DEF 1 -01100011110 Superbank 1 -01100011110 RENT-A-CRATS 1 -01100011110 war-makers 1 -01100011110 A.F.R.I.C.A. 1 -01100011110 Busted 1 -01100011110 open-shelf 1 -01100011110 downwash 1 -01100011110 inner-committee 1 -01100011110 dissapointed 1 -01100011110 Sealite 1 -01100011110 port-running 1 -01100011110 Improved-definition 1 -01100011110 beisbol 1 -01100011110 Sieve 1 -01100011110 dockominiums 1 -01100011110 Over-cite 1 -01100011110 form-follows-meaning 1 -01100011110 on-plan 1 -01100011110 overtrading 1 -01100011110 pavane 1 -01100011110 arb-mania 1 -01100011110 narco-terrorists 1 -01100011110 pre-arbitrage 1 -01100011110 underpredict 1 -01100011110 keep-healthy 1 -01100011110 pixilated 1 -01100011110 noncola 1 -01100011110 Pussy 1 -01100011110 soap. 1 -01100011110 brand-focused 1 -01100011110 narco-guerrillas 1 -01100011110 informate 1 -01100011110 Panti-Legs 1 -01100011110 megacities 1 -01100011110 Temperaments 1 -01100011110 Shamoooo 1 -01100011110 arriviste 1 -01100011110 Anti-Kickback 1 -01100011110 Puttin 1 -01100011110 quasi-monopolies 1 -01100011110 bonus-day 1 -01100011110 deAmericanized 1 -01100011110 Silkwood 1 -01100011110 Reverberator 1 -01100011110 revenooers 1 -01100011110 sand-in-the-gears 1 -01100011110 alley-oop 1 -01100011110 Dukes. 1 -01100011110 pastoralize 1 -01100011110 skeggings 1 -01100011110 Asian-bashing 1 -01100011110 super-minority 1 -01100011110 universalist 1 -01100011110 patent-flooding 1 -01100011110 iridology 1 -01100011110 astronomic 1 -01100011110 preconditioning 1 -01100011110 welching 1 -01100011110 end-around 1 -01100011110 moteliers 1 -01100011110 minicomedy 1 -01100011110 minimusical 1 -01100011110 tail-backers 1 -01100011110 intrasigence 1 -01100011110 hold-separate 1 -01100011110 egocentrics 1 -01100011110 over-representation 1 -01100011110 Yajok 1 -01100011110 quasi-criminal 1 -01100011110 Per-program 1 -01100011110 Orchidata 1 -01100011110 Nationalstaat 1 -01100011110 squishiness 1 -01100011110 hoedad 1 -01100011110 auto-dialers 1 -01100011110 leaf-cutter 1 -01100011110 regisseurs 1 -01100011110 Clints 1 -01100011110 mini-Europe 1 -01100011110 Spiegelritter 1 -01100011110 Create-a-Print 1 -01100011110 gemutlichkeit 1 -01100011110 self-reporting 1 -01100011110 Behaviour 1 -01100011110 GATT-consistent 1 -01100011110 fellahin 1 -01100011110 Chlorinol 1 -01100011110 Newswatch. 1 -01100011110 non-factor 1 -01100011110 Sledgehammer 1 -01100011110 louse-proof 1 -01100011110 rope-a-dope 1 -01100011110 borrow-and-payback 1 -01100011110 Wildflowers 1 -01100011110 sinless 1 -01100011110 workpapers 1 -01100011110 nuisance-alligator 1 -01100011110 kurogo 1 -01100011110 Asters 1 -01100011110 Boerebrood 1 -01100011110 Cheatin 1 -01100011110 flipin 1 -01100011110 floor-stocks 1 -01100011110 Bewitched 1 -01100011110 Battleball 1 -01100011110 Bundesnachrichtendienst 1 -01100011110 Quatsch 1 -01100011110 bowlegs 1 -01100011110 war-chest 1 -01100011110 Job-Bias 1 -01100011110 Hotlanta 1 -01100011110 lower-than-targeted 1 -01100011110 off-the-book-page 1 -01100011110 man-and-machine 1 -01100011110 Fiddler-on-the-Roof 1 -01100011110 Selar 1 -01100011110 mooning 1 -01100011110 player-manager 1 -01100011110 yogi 1 -01100011110 executive-only 1 -01100011110 splittist 1 -01100011110 Ridin 1 -01100011110 Girolato 1 -01100011110 docutainment 1 -01100011110 WASHLOADS 1 -01100011110 much-worse-than-average 1 -01100011110 godful 1 -01100011110 teriffic 1 -01100011110 laidback 1 -01100011110 techno-commandos 1 -01100011110 assets. 1 -01100011110 keiretsu 1 -01100011110 much-better-than-average 1 -01100011110 ABE 1 -01100011110 Pearlkillers 1 -01100011110 Serf 1 -01100011110 immiseration 1 -01100011110 Sematary 1 -01100011110 Nintendo-related 1 -01100011110 Northworst 1 -01100011110 Yankee-dollar 1 -01100011110 word-nerd 1 -01100011110 re-integration 1 -01100011110 down-converted 1 -01100011110 most-improved 1 -01100011110 Volcanoscapes 1 -01100011110 false-positives 1 -01100011110 FEATHERS 1 -01100011110 master-slave 1 -01100011110 Heal. 1 -01100011110 non-black-earth 1 -01100011110 Blue-sky 1 -01100011110 Bureaucrat 1 -01100011110 Autonomists 1 -01100011110 bio-equivalent 1 -01100011110 non-signer 1 -01100011110 boom-boom 1 -01100011110 septigon 1 -01100011110 Beave 1 -01100011110 Shortnin 1 -01100011110 non-refugees 1 -01100011110 multinationalization 1 -01100011110 Scandall 1 -01100011110 gas-to-gas 1 -01100011110 black-English 1 -01100011110 untying 1 -01100011110 disfellow 1 -01100011110 Bookend 1 -01100011110 Psychoteam 1 -01100011110 ginzie 1 -01100011110 mega-independent 1 -01100011110 genograms 1 -01100011110 DYNOMITE 1 -01100011110 pasodoble 1 -01100011110 out-of-my-hands 1 -01100011110 Gaslight 1 -01100011110 Super-Kabuki 1 -01100011110 Escaped 1 -01100011110 Perdido 1 -01100011110 Ex-Colleagues 1 -01100011110 Business. 1 -01100011110 supplementals 1 -01100011110 wordmarks 1 -01100011110 mineing 1 -01100011110 anti-welfare 1 -01100011110 State-influenced 1 -01100011110 state-of-the-market 1 -01100011110 Darbie 1 -01100011110 unairworthy 1 -01100011110 Alina 1 -01100011110 mine-like 1 -01100011110 McBeaver 1 -01100011110 no-significant-risk 1 -01100011110 Prosaic 1 -01100011110 southwestern-style 1 -01100011110 non-concealable 1 -01100011110 Concealable 1 -01100011110 gut-check 1 -01100011110 Idyll 1 -01100011110 kombos 1 -01100011110 Zaitech 1 -01100011110 Ramonaland 1 -01100011110 extreme-case 1 -01100011110 unreimbursable 1 -01100011110 overnighty 1 -01100011110 homogamous 1 -01100011110 dollarization 1 -01100011110 Helvola 1 -01100011110 OTN-ization 1 -01100011110 Gourdhead 1 -01100011110 overanticipation 1 -01100011110 quasi-reorganization 1 -01100011110 add-ins 1 -01100011110 moral-social 1 -01100011110 Satchmo 1 -01100011110 enzyme-helper 1 -01100011110 visuelle 1 -01100011110 polyphonic 1 -01100011110 rent-a-mob 1 -01100011110 Vexations 1 -01100011110 T-Bird 1 -01100011110 Upstreaming 1 -01100011110 Arik 1 -01100011110 catalyzing 1 -01100011110 milieux 1 -01100011110 GOTIMUS 1 -01100011110 macumba-like 1 -01100011110 Pizzazz 1 -01100011110 Dial-ogue 1 -01100011110 Counterswarm 1 -01100011110 Putzi 1 -01100011110 bento 1 -01100011110 battle-commissioned 1 -01100011110 traded-in 1 -01100011110 doublebreasting 1 -01100011110 hold/sell 1 -01100011110 clear-it-out 1 -01100011110 sugar-coat 1 -01100011110 wrongfooted 1 -01100011110 pre-SAL 1 -01100011110 Ben-Hur 1 -01100011110 1-800-BALONEY 1 -01100011110 dualist 1 -01100011110 mulligan 1 -01100011110 Subordinating 1 -01100011110 Malepartus 1 -01100011110 Odoroma 1 -01100011110 plan-directed 1 -01100011110 nature-conquering 1 -01100011110 Pointsman 1 -01100011110 cash-consolidated 1 -01100011110 sword-and-sorcery 1 -01100011110 Jackson-Arafat. 1 -01100011110 Wishbone 1 -01100011110 Hoiotoho 1 -01100011110 ja 1 -01100011110 decreeship 1 -01100011110 non-prominent 1 -01100011110 Slovik 1 -01100011110 learnfare 1 -01100011110 Bladerunner 1 -01100011110 Muscles 1 -01100011110 public-opposition 1 -01100011110 -like 1 -01100011110 Unisys-Computer 1 -01100011110 six-star 1 -01100011110 JudeoNazis 1 -01100011110 unsociable 1 -01100011110 Swinburne 1 -01100011110 hammocked 1 -01100011110 Structuralism 1 -01100011110 reduced-coverage 1 -01100011110 higher-capital 1 -01100011110 Comin 1 -01100011110 early-closure 1 -01100011110 1860-1940 1 -01100011110 maddog 1 -01100011110 pipelining 1 -01100011110 three-circle 1 -01100011110 barmy 1 -01100011110 U.B.U 1 -01100011110 infiraj 1 -01100011110 Mondale-izing 1 -01100011110 marketization 1 -01100011110 fin-syn 1 -01100011110 Protections 1 -01100011110 McCarthywasms 1 -01100011110 8-foot 1 -01100011110 Derive 1 -01100011110 tough. 1 -01100011110 Entombment 1 -01100011110 Mascara 1 -01100011110 badhats 1 -01100011110 Ironsides 1 -01100011110 comedy-drama 1 -01100011110 out-placing 1 -01100011110 videocorder 1 -01100011110 Want-to-see 1 -01100011110 Biocenter 1 -01100011110 Saralicious 1 -01100011110 Diminuendo 1 -01100011110 co-presidency 1 -01100011110 Neo-Panistas 1 -01100011110 Tax-Deductibility 1 -01100011110 whitemail 1 -01100011110 Me-too 1 -01100011110 management-leaseback 1 -01100011110 megadealerships 1 -01100011110 stable-to-improving 1 -01100011110 Executions 1 -01100011110 super-cop 1 -01100011110 Shango 1 -01100011110 nortenos 1 -01100011110 shock-proof 1 -01100011110 hurtin 1 -01100011110 YAK-esh 1 -01100011110 high-order 1 -01100011110 two-hit 1 -01100011110 employee-owner 1 -01100011110 Roadie 1 -01100011110 Peruvianization 1 -01100011110 Affiniti 1 -01100011110 just-say-maybe 1 -01100011110 Fragging 1 -01100011110 Pursuer 1 -01100011110 ItsaGem 1 -01100011110 Auriga 1 -01100011110 Geotek 1 -01100011110 Fiandre 1 -01100011110 tourist. 1 -01100011110 Jackson-Dukakis-Bentsen 1 -01100011110 bottle-bill 1 -01100011110 pappa-mamma 1 -01100011110 singularizes 1 -01100011110 Helibor 1 -01100011110 marked-to-market 1 -01100011110 GEES. 1 -01100011110 one-and-a-two 1 -01100011110 solubilize 1 -01100011110 Hyperinstrument 1 -01100011110 camera-ready 1 -01100011110 whiparound 1 -01100011110 Stagnant 1 -01100011110 corteggiamento 1 -01100011110 seduzione 1 -01100011110 hip-checked 1 -01100011110 legal-length 1 -01100011110 bratpack 1 -01100011110 Alferd 1 -01100011110 defile 1 -01100011110 ill-reasoned 1 -01100011110 anticapitalist 1 -01100011110 resiliently 1 -01100011110 salariazo 1 -01100011110 beyond-belief-revolting 1 -01100011110 Ostentatious 1 -01100011110 anti-switching 1 -01100011110 Impostors 1 -01100011110 Airedales 1 -01100011110 svoboda 1 -01100011110 CORNUCOPIA 1 -01100011110 Ducactus 1 -01100011110 swap-meets 1 -01100011110 Mary. 1 -01100011110 Strohman 1 -01100011110 four-piper 1 -01100011110 Tancredi 1 -01100011110 cuatros 1 -01100011110 Quique 1 -01100011110 oversimplifying 1 -01100011110 chevre 1 -01100011110 Khevsuri 1 -01100011110 firee 1 -01100011110 not-tax-exempt 1 -01100011110 flimflammer 1 -01100011110 Junk-Bond 1 -01100011110 Buiness 1 -01100011110 Euroflics 1 -01100011110 Badvertising 1 -01100011110 relatedness 1 -01100011110 favorableness 1 -01100011110 wawas 1 -01100011110 kensai 1 -01100011110 fetter 1 -01100011110 oooooo 1 -01100011110 Wrightwash 1 -01100011110 Transferable 1 -01100011110 maladministration 1 -01100011110 evil-empire 1 -01100011110 Illustrateds 1 -01100011110 Lord. 1 -01100011110 superquake 1 -01100011110 Deerhunter 1 -01100011110 Slug 1 -01100011110 Chronographia 1 -01100011110 Carltons 1 -01100011110 Republic. 1 -01100011110 adcentives 1 -01100011110 Joggers 1 -01100011110 de-Americanization 1 -01100011110 CULTURES 1 -01100011110 echt 1 -01100011110 xeros 1 -01100011110 De-Nic 1 -01100011110 hard/soft 1 -01100011110 family-friendly 1 -01100011110 miniclub 1 -01100011110 Fed-packing 1 -01100011110 Businesslike 1 -01100011110 front-loads 1 -01100011110 piggy-backed 1 -01100011110 Californication 1 -01100011110 Radhaz 1 -01100011110 Snort 1 -01100011110 Kafaoglu 1 -01100011110 Flap 1 -01100011110 Red-Greens 1 -01100011110 Gonzo 1 -01100011110 under-owned 1 -01100011110 informationless 1 -01100011110 blues-ologist 1 -01100011110 suprapartisan 1 -01100011110 narrow-casting 1 -01100011110 Live-In 1 -01100011110 Detroit-bashing 1 -01100011110 MasterCard. 1 -01100011110 swather 1 -01100011110 parallel-financing 1 -01100011110 Unliberating 1 -01100011110 non-authoritarian 1 -01100011110 bargainbasement 1 -01100011110 doorbusters 1 -01100011110 God-seeking 1 -01100011110 Nitespark 1 -01100011110 Foreglow 1 -01100011110 Entice 1 -01100011110 Sojourn 1 -01100011110 cross-marketplace 1 -01100011110 Miore 1 -01100011110 Premeditate 1 -01100011110 Relinquish 1 -01100011110 Surfeit 1 -01100011110 DeLaseure 1 -01100011110 Sashay 1 -01100011110 Softspark 1 -01100011110 labelling 1 -01100011110 D-score 1 -01100011110 Pre-production 1 -01100011110 Technospeak 1 -01100011110 picayunish 1 -01100011110 semi- 1 -01100011110 Deadheads 1 -01100011110 DRY 1 -01100011110 Jobo 1 -01100011110 bankification 1 -01100011110 un-aided 1 -01100011110 Troilus 1 -01100011110 toe-hold 1 -01100011110 much-higher-than-expected 1 -01100011110 earnings. 1 -01100011110 nonprocurement 1 -01100011110 descramblers 1 -01100011110 moosecake 1 -01100011110 Gorbachevism 1 -01100011110 parallel-track 1 -01100011110 break-the-rules 1 -01100011110 1760-1850 1 -01100011110 set-off 1 -01100011110 whitelist 1 -01100011110 B2B 1 -01100011110 janglers 1 -01100011110 self-committed 1 -01100011110 tropicalization 1 -01100011110 Beginner 1 -01100011110 ouverture 1 -01100011110 microliberalism 1 -01100011110 Luann 1 -01100011110 Heathcliff 1 -01100011110 slower-than-planned 1 -01100011110 radio-location 1 -01100011110 petro-dollar 1 -01100011110 rent-a-general/rent-an-admiral 1 -01100011110 comanagers 1 -01100011110 dysgenic 1 -01100011110 bio-equivalents 1 -01100011110 sex-stereotyping 1 -01100011110 UNDERPAID 1 -01100011110 flim-flamming 1 -01100011110 Glinkaiana 1 -01100011110 Guernica 1 -01100011110 market-can-only-go-up 1 -01100011110 lipo 1 -01100011110 Airotor 1 -01100011110 masers 1 -01100011110 Maser 1 -01100011110 meistersinger 1 -01100011110 That-a-way 1 -01100011110 indigenization 1 -01100011110 one-milligram-tar 1 -01100011110 Shug 1 -01100011110 job-wanted 1 -01100011110 rck.video 1 -01100011110 Flu-shot4 1 -01100011110 Discontents 1 -01100011110 vendings 1 -01100011110 narrow-caster 1 -01100011110 dogity 1 -01100011110 talkie 1 -01100011110 unitizing 1 -01100011110 supervote 1 -01100011110 Fifth-Generation 1 -01100011110 Teseo 1 -01100011110 Petrushka 1 -01100011110 juche 1 -01100011110 telescreens 1 -01100011110 Pappy 1 -01100011110 bush-league 1 -01100011110 Haymakers 1 -01100011110 Fedwire 1 -01100011110 babyboom 1 -01100011110 two-Chinas 1 -01100011110 def 1 -01100011110 dop 1 -01100011110 draggin 1 -01100011110 Ron-Nobu 1 -01100011110 overclassification 1 -01100011110 mystery-ware 1 -01100011110 Disastrous 1 -01100011110 mystere 1 -01100011110 dead-bang 1 -01100011110 mushier 1 -01100011110 jalabiyeh 1 -01100011110 blue-chipper 1 -01100011110 spoonfeeds 1 -01100011110 detect-to-engage 1 -01100011110 fortuna 1 -01100011110 team-player 1 -01100011110 Trespassing 1 -01100011110 whites-of-their-eyes 1 -01100011110 Tidewatch 1 -01100011110 Tranquilandia 1 -01100011110 Pacem 1 -01100011110 counter-programming 1 -01100011110 kosherization 1 -01100011110 gun-totin 1 -01100011110 televangelist 2 -01100011110 fraud-on-the-market 2 -01100011110 Crockery 2 -01100011110 Idomeneo 2 -01100011110 anti-nukes 2 -01100011110 Valentines 2 -01100011110 Hesitation 2 -01100011110 Memo 2 -01100011110 Jogger 2 -01100011110 Murderer 2 -01100011110 Suburbanites 2 -01100011110 Slang 2 -01100011110 Hearsay 2 -01100011110 Peacekeepers 2 -01100011110 hipo 2 -01100011110 Blossoming 2 -01100011110 Accomplishments 2 -01100011110 eros 2 -01100011110 homoeroticism 2 -01100011110 Notations 2 -01100011110 MALL 2 -01100011110 Filofaxes 2 -01100011110 Stricken 2 -01100011110 Wanderer 2 -01100011110 Beatlemania 2 -01100011110 income-shifting 2 -01100011110 Chlorofluorocarbon 2 -01100011110 Proceed 2 -01100011110 Insignificance 2 -01100011110 Mens 2 -01100011110 Yets 2 -01100011110 federales 2 -01100011110 Crumbling 2 -01100011110 1900-1930 2 -01100011110 highwall 2 -01100011110 Huntmix 2 -01100011110 Repercussions 2 -01100011110 Misfortunes 2 -01100011110 Dubliners 2 -01100011110 Transitions 2 -01100011110 overbuilds 2 -01100011110 RECORDS 2 -01100011110 embrittlement 2 -01100011110 Assembled 2 -01100011110 Barbarosa 2 -01100011110 Dede 2 -01100011110 GOULD 2 -01100011110 Rainman 2 -01100011110 Nightshade 2 -01100011110 Wonderworks 2 -01100011110 Wuzzles 2 -01100011110 Unreal 2 -01100011110 market-response 2 -01100011110 Empires 2 -01100011110 Permanently 2 -01100011110 non-attributable 2 -01100011110 Castroism 2 -01100011110 guesstimates 2 -01100011110 Extortion 2 -01100011110 MacGyver 2 -01100011110 1929-1939 2 -01100011110 left-brain 2 -01100011110 Celebrations 2 -01100011110 machos 2 -01100011110 Caving 2 -01100011110 Disks 2 -01100011110 Hamiltons 2 -01100011110 whup 2 -01100011110 Bonding 2 -01100011110 Detail 2 -01100011110 Olympos 2 -01100011110 Yesterdays 2 -01100011110 Ostriches 2 -01100011110 Imperialism 2 -01100011110 overdesigned 2 -01100011110 Cav 2 -01100011110 Femininity 2 -01100011110 dreg 2 -01100011110 Flee 2 -01100011110 Handguns 2 -01100011110 desuetude 2 -01100011110 verifier 2 -01100011110 reassembly 2 -01100011110 tekkies 2 -01100011110 PASSION 2 -01100011110 Projection 2 -01100011110 Ostrich 2 -01100011110 Commencement 2 -01100011110 AmToys 2 -01100011110 Tout 2 -01100011110 McTeague 2 -01100011110 iconology 2 -01100011110 Immunesciences 2 -01100011110 prohibitionists 2 -01100011110 Woes 2 -01100011110 Stakeout 2 -01100011110 wheat-dollar 2 -01100011110 real-sports 2 -01100011110 Egos 2 -01100011110 Chlordane 2 -01100011110 Insecticides 2 -01100011110 Slava 2 -01100011110 Curlee 2 -01100011110 imminent-danger 2 -01100011110 Avant-Garde 2 -01100011110 Takers 2 -01100011110 Petition 2 -01100011110 Landscaping 2 -01100011110 blue-collar-mail 2 -01100011110 action-forcing 2 -01100011110 kisaeng 2 -01100011110 over-emphasis 2 -01100011110 Paved 2 -01100011110 DEPOSITS 2 -01100011110 Preposterous 2 -01100011110 Oboe 2 -01100011110 clonemakers 2 -01100011110 PP 2 -01100011110 adopt-a-pothole 2 -01100011110 Benefactors 2 -01100011110 Camila 2 -01100011110 reproving 2 -01100011110 Graduation 2 -01100011110 Amor 2 -01100011110 Jallali 2 -01100011110 Supply-Siders 2 -01100011110 wai-gaya 2 -01100011110 Snapshots 2 -01100011110 Sculpting 2 -01100011110 Narrative 2 -01100011110 doyen 2 -01100011110 Go-Bots 2 -01100011110 Stacking 2 -01100011110 object-oriented 2 -01100011110 Paperbacks 2 -01100011110 not-in-my-backyard 2 -01100011110 Gumboots 2 -01100011110 Bromine 2 -01100011110 Azalea 2 -01100011110 Hands-on 2 -01100011110 1850-1946 2 -01100011110 Boe 2 -01100011110 brigadistas 2 -01100011110 Bombshell 2 -01100011110 Blondes 2 -01100011110 bitchin 2 -01100011110 cakewalks 2 -01100011110 Cites-Cines 2 -01100011110 DOWNSIZING 2 -01100011110 Laughing 2 -01100011110 Tabs 2 -01100011110 Nighthawks 2 -01100011110 Rhinestone 2 -01100011110 Truffles 2 -01100011110 hit-and-miss 2 -01100011110 Pushcart 2 -01100011110 Appassionata 2 -01100011110 Pathetique 2 -01100011110 Peepers 2 -01100011110 lightheartedness 2 -01100011110 knave 2 -01100011110 Mayta 2 -01100011110 Calfornia 2 -01100011110 Contemporaries 2 -01100011110 wordman 2 -01100011110 Nostrums 2 -01100011110 disestablished 2 -01100011110 Renegades 2 -01100011110 Toupee 2 -01100011110 Sculptors 2 -01100011110 superchip 2 -01100011110 Superchannel 2 -01100011110 breakpoint 2 -01100011110 Diagnosis 2 -01100011110 Jo-Jo 2 -01100011110 deincrease 2 -01100011110 vigorish 2 -01100011110 Nukes 2 -01100011110 PROBABLY 2 -01100011110 Left-Wing 2 -01100011110 Debutante 2 -01100011110 Irritation 2 -01100011110 petrolization 2 -01100011110 Scams 2 -01100011110 Texasville 2 -01100011110 Puzzle 2 -01100011110 Superstitions 2 -01100011110 Heel 2 -01100011110 Simpson-Volstead-Mazzoli 2 -01100011110 ch 2 -01100011110 pensees 2 -01100011110 ACME 2 -01100011110 Apocalyptic 2 -01100011110 self-nurturing 2 -01100011110 Rugs 2 -01100011110 cost-of-production 2 -01100011110 asinine 2 -01100011110 A-rated 2 -01100011110 Yikes 2 -01100011110 flow-through 2 -01100011110 Mules 2 -01100011110 Infantrymen 2 -01100011110 Slide 2 -01100011110 Leucovorin 2 -01100011110 two-treaty 2 -01100011110 tipees 2 -01100011110 mediator-arbitrator 2 -01100011110 Soapy 2 -01100011110 Dung 2 -01100011110 non-intrusive 2 -01100011110 Lockjaw 2 -01100011110 Phap 2 -01100011110 slotmail 2 -01100011110 Deductibles 2 -01100011110 Offended 2 -01100011110 Weddings 2 -01100011110 Disrespect 2 -01100011110 Barfly 2 -01100011110 damn-the-torpedoes 2 -01100011110 YUPPIE 2 -01100011110 Sextet 2 -01100011110 houseparents 2 -01100011110 Dependents 2 -01100011110 non-players 2 -01100011110 TAXI 2 -01100011110 Squads 2 -01100011110 Nabucco 2 -01100011110 Evangelists 2 -01100011110 Monasteries 2 -01100011110 Bulletproof 2 -01100011110 boardmail 2 -01100011110 Matador 2 -01100011110 Copycat 2 -01100011110 Blended 2 -01100011110 pinatas 2 -01100011110 desaparecidos 2 -01100011110 biotowers 2 -01100011110 TIPPING 2 -01100011110 Bumpy 2 -01100011110 Brother-in-Law 2 -01100011110 Fifties 2 -01100011110 Three-dimensional 2 -01100011110 Seafarers 2 -01100011110 thirty-something 2 -01100011110 Eraserhead 2 -01100011110 Fabrications 2 -01100011110 Duet 2 -01100011110 Roaming 2 -01100011110 roamer 2 -01100011110 Inconvenience 2 -01100011110 supermed 2 -01100011110 Boiling 2 -01100011110 nonlinearity 2 -01100011110 Myfanwy 2 -01100011110 violencia 2 -01100011110 Ooo 2 -01100011110 if-then 2 -01100011110 Spinners 2 -01100011110 Noa 2 -01100011110 Ghandi 2 -01100011110 Substandard 2 -01100011110 design-in 2 -01100011110 Sclavo 2 -01100011110 Comedians 2 -01100011110 GOETABANKEN 2 -01100011110 BLAME 2 -01100011110 czarina 2 -01100011110 Mythology 2 -01100011110 porpoise 2 -01100011110 Poppy 2 -01100011110 megadealers 2 -01100011110 Slowdown 2 -01100011110 Exception 2 -01100011110 dog-hair 2 -01100011110 RPD 2 -01100011110 Tai-Pan 2 -01100011110 Bloopers 2 -01100011110 Buy-Back 2 -01100011110 fair-value 2 -01100011110 Adjust 2 -01100011110 yea-nay 2 -01100011110 Radiovision 2 -01100011110 Assent 2 -01100011110 A.L.F. 2 -01100011110 HealthPITCH 2 -01100011110 Interactions 2 -01100011110 cambistas 2 -01100011110 Slides 2 -01100011110 Spree 2 -01100011110 Freemen 2 -01100011110 Deaky 2 -01100011110 Constitutionalists 2 -01100011110 Enchantment 2 -01100011110 Marauders 2 -01100011110 Turangalila 2 -01100011110 Speedo 2 -01100011110 Discord 2 -01100011110 Dispirited 2 -01100011110 slavefare 2 -01100011110 Eyewitness 2 -01100011110 Trade-a-Teen 2 -01100011110 PREFERRED 2 -01100011110 Scarecrow 2 -01100011110 Non-Profits 2 -01100011110 jeito 2 -01100011110 Retinol 2 -01100011110 Smuggler 2 -01100011110 Vaccinations 2 -01100011110 Orthodoxy 2 -01100011110 arcologies 2 -01100011110 Adhesive 2 -01100011110 share-price-enhancement 2 -01100011110 Blow-Up 2 -01100011110 Claw 2 -01100011110 Balinese-style 2 -01100011110 Bayonets 2 -01100011110 Tutankhamen 2 -01100011110 JOE 2 -01100011110 Blunder 2 -01100011110 brown-water 2 -01100011110 Booze 2 -01100011110 Magical 2 -01100011110 Poetic 2 -01100011110 Doruntine 2 -01100011110 Bastards 2 -01100011110 Roofs 2 -01100011110 compensatory-financing 2 -01100011110 OnePass 2 -01100011110 3:16 2 -01100011110 rectifies 2 -01100011110 McCool 2 -01100011110 Midget 2 -01100011110 Wildtrack 2 -01100011110 BusCapade 2 -01100011110 Remembrances 2 -01100011110 Asteroid 2 -01100011110 Eterna 2 -01100011110 Fantasticks 2 -01100011110 Looms 2 -01100011110 Corderie 2 -01100011110 Aperto 2 -01100011110 Obsessions 2 -01100011110 Seers 2 -01100011110 On-line 2 -01100011110 V&V 2 -01100011110 Tolerance 2 -01100011110 humanoids 2 -01100011110 Paphiopedilum 2 -01100011110 Brassolaeliocattleya 2 -01100011110 punch-through 2 -01100011110 Phalaenopsis 2 -01100011110 stewpot 2 -01100011110 full-figured 2 -01100011110 Scrimshaw 2 -01100011110 Asylums 2 -01100011110 Fete 2 -01100011110 Distress 2 -01100011110 Nerves 2 -01100011110 Bouncin 2 -01100011110 Distributor 2 -01100011110 Gears 2 -01100011110 Detained 2 -01100011110 Cendrillon 2 -01100011110 Bunkie 2 -01100011110 Exaggerated 2 -01100011110 Addressless 2 -01100011110 Mujahideen 2 -01100011110 Aliteracy 2 -01100011110 Feuersnot 2 -01100011110 BUILDINGS 2 -01100011110 Esplanade 2 -01100011110 Dabbling 2 -01100011110 Yuck 2 -01100011110 Carrots 2 -01100011110 Isolationism 2 -01100011110 Antiquated 2 -01100011110 Nocturne 2 -01100011110 drys 2 -01100011110 Imbalances 2 -01100011110 Downstream 2 -01100011110 Edwardians 2 -01100011110 lickspittle 2 -01100011110 Japonisme 2 -01100011110 Toilette 2 -01100011110 Ornithology 2 -01100011110 Trevis 2 -01100011110 Just-in-time 2 -01100011110 Cooter 2 -01100011110 Ideals 2 -01100011110 waaa 2 -01100011110 sanitize 2 -01100011110 Buyback 2 -01100011110 Efficiencies 2 -01100011110 Favorites 2 -01100011110 Brainstorm 2 -01100011110 MATERNITY 2 -01100011110 pickaninny 2 -01100011110 Archeology 2 -01100011110 microparts 2 -01100011110 micromachines 2 -01100011110 copycode 2 -01100011110 catholics 2 -01100011110 /2 2 -01100011110 Expressionism 2 -01100011110 Piu 2 -01100011110 streetscape 2 -01100011110 one-hours 2 -01100011110 Really. 2 -01100011110 pentapartito 2 -01100011110 Aunts 2 -01100011110 Embryos 2 -01100011110 anti-racism 2 -01100011110 Enlargement 2 -01100011110 Qi 2 -01100011110 Stalls 2 -01100011110 Lianna 2 -01100011110 Starmites 2 -01100011110 Drummer 2 -01100011110 PROTECTIVE 2 -01100011110 Epidemiology 2 -01100011110 Dummies 2 -01100011110 Wacky 2 -01100011110 front-loading 2 -01100011110 Liver 2 -01100011110 Cleaned 2 -01100011110 Deacs 2 -01100011110 EMPTY 2 -01100011110 Chill-ee 2 -01100011110 bookmen 2 -01100011110 Brownshirt 2 -01100011110 Trunks 2 -01100011110 Crows 2 -01100011110 Sultanate 2 -01100011110 Ghoulies 2 -01100011110 Blowin 2 -01100011110 Ninograms 2 -01100011110 Dolt 2 -01100011110 Cannots 2 -01100011110 Hokey-Pokey-Athon 2 -01100011110 thin-out 2 -01100011110 Mortally 2 -01100011110 Dilly 2 -01100011110 over-reaction 2 -01100011110 Spoiled 2 -01100011110 Animale 2 -01100011110 metier 2 -01100011110 Sportswriters 2 -01100011110 confessors 2 -01100011110 CYPRIOT 2 -01100011110 Absurd 2 -01100011110 asset-mail 2 -01100011110 non-responders 2 -01100011110 Bather 2 -01100011110 Removed 2 -01100011110 Hitlerite 2 -01100011110 Makeover 2 -01100011110 Lotteries 2 -01100011110 Filmmaking 2 -01100011110 Ruddigore 2 -01100011110 Phooey 2 -01100011110 Radarsat 2 -01100011110 Diggers 2 -01100011110 Trousers 2 -01100011110 Liquids 2 -01100011110 Sell-Off 2 -01100011110 Adoptions 2 -01100011110 Stockholdings 2 -01100011110 Masks 2 -01100011110 Brides 2 -01100011110 Intentions 2 -01100011110 Farewell 2 -01100011110 Blunders 2 -01100011110 Tov 2 -01100011110 Lollipops 2 -01100011110 Particles 2 -01100011110 Semi-Tough 2 -01100011110 Partsa 2 -01100011110 Invitation 2 -01100011110 Nyet 2 -01100011110 Lebanonization 2 -01100011110 Kartuli 2 -01100011110 cantilevered 2 -01100011110 Eurodesign 2 -01100011110 gemutlich 2 -01100011110 Lieutenants 2 -01100011110 Shayna 2 -01100011110 petanque 2 -01100011110 dealignment 2 -01100011110 zoku 2 -01100011110 Sensitivity 2 -01100011110 Philosophers 2 -01100011110 now-nowism 2 -01100011110 Wimpys 2 -01100011110 Yea 2 -01100011110 Calcestruzzi 2 -01100011110 shared-time 2 -01100011110 Husher 2 -01100011110 Notebooks 2 -01100011110 Politeness 2 -01100011110 Nihonga 2 -01100011110 Dialogues 2 -01100011110 Adversarial 2 -01100011110 minitreaty 2 -01100011110 Pilgrimage 2 -01100011110 TGV 2 -01100011110 de-bottlenecking 2 -01100011110 cold-calling 2 -01100011110 P.U. 2 -01100011110 Racehorse 2 -01100011110 Doves 2 -01100011110 nonhuman 2 -01100011110 Bombastic 2 -01100011110 FOCUSED 2 -01100011110 god-self 2 -01100011110 wanna-bes 2 -01100011110 Straightforward 2 -01100011110 self-referral 2 -01100011110 notario 2 -01100011110 Consolidators 2 -01100011110 Blackout 2 -01100011110 Morose 2 -01100011110 Zamoskvorech 2 -01100011110 Simmer 2 -01100011110 Parasites 2 -01100011110 Pets 2 -01100011110 seltzers 2 -01100011110 Shootout 2 -01100011110 castaway 2 -01100011110 Hitlerites 2 -01100011110 midi 2 -01100011110 B-scalers 2 -01100011110 Nausea 2 -01100011110 orientations 2 -01100011110 Chapters 2 -01100011110 Ausstieg 2 -01100011110 legging 2 -01100011110 JOK 2 -01100011110 Anti-Communism 2 -01100011110 Victimless 2 -01100011110 Chilly 2 -01100011110 allegators 2 -01100011110 Manuscripts 2 -01100011110 Browsing 2 -01100011110 Idols 2 -01100011110 Beta-West 2 -01100011110 DISKS 2 -01100011110 Roustabout 2 -01100011110 otayenee 2 -01100011110 Walk-in 2 -01100011110 centralistic 2 -01100011110 debt-shock 2 -01100011110 civilianization 2 -01100011110 Temples 2 -01100011110 VATs 2 -01100011110 teeny-boppers 2 -01100011110 EMS-like 2 -01100011110 lipsticks 2 -01100011110 Treading 2 -01100011110 reindustrialization 2 -01100011110 soft-dollar 2 -01100011110 Cashing 2 -01100011110 Newsmakers 2 -01100011110 Dropouts 2 -01100011110 Zoraide 2 -01100011110 Attic 2 -01100011110 N.O.L. 2 -01100011110 Incident 2 -01100011110 Commandos 2 -01100011110 Healers 2 -01100011110 brokered-time 2 -01100011110 Leftovers 2 -01100011110 Collects 2 -01100011110 Intercom 2 -01100011110 Expands 2 -01100011110 Additions 2 -01100011110 corporatization 2 -01100011110 X75 2 -01100011110 Gluts 2 -01100011110 Gyroscopes 2 -01100011110 Redefined 2 -01100011110 Sugarbaby 2 -01100011110 Non-banks 2 -01100011110 Eurocommunists 2 -01100011110 Snoops 2 -01100011110 Fulfill 2 -01100011110 kafeneion 2 -01100011110 Owls 2 -01100011110 Complicated 3 -01100011110 Object 3 -01100011110 Scar 3 -01100011110 disaster-subsidy 3 -01100011110 Salty 3 -01100011110 Payoffs 3 -01100011110 bioequivalent 3 -01100011110 Indecent 3 -01100011110 Reciprocity 3 -01100011110 Loopholes 3 -01100011110 de-nicotined 3 -01100011110 Truths 3 -01100011110 Massage 3 -01100011110 ROY 3 -01100011110 Beowulf 3 -01100011110 Anarchy 3 -01100011110 Moviegoer 3 -01100011110 Compassion 3 -01100011110 WarGames 3 -01100011110 D.K. 3 -01100011110 super-large 3 -01100011110 percentage-of-completion 3 -01100011110 Millionaires 3 -01100011110 Chesty 3 -01100011110 superfish 3 -01100011110 Extremities 3 -01100011110 Poachers 3 -01100011110 Laugh-In 3 -01100011110 Applause 3 -01100011110 Starve 3 -01100011110 Themselves 3 -01100011110 LVADs 3 -01100011110 Hiroshige 3 -01100011110 Unicorn 3 -01100011110 Verities 3 -01100011110 Plummet 3 -01100011110 Provocative 3 -01100011110 Useless 3 -01100011110 Salvage 3 -01100011110 Fireworks 3 -01100011110 Skeleton 3 -01100011110 sashimi 3 -01100011110 Whispers 3 -01100011110 Credentials 3 -01100011110 Rebate 3 -01100011110 Factions 3 -01100011110 MALLS 3 -01100011110 Fantasie 3 -01100011110 Limousine 3 -01100011110 Deduction 3 -01100011110 Comrades 3 -01100011110 tu 3 -01100011110 Challenged 3 -01100011110 Pavane 3 -01100011110 Virtuoso 3 -01100011110 Missa 3 -01100011110 Frauds 3 -01100011110 Contribution 3 -01100011110 Touches 3 -01100011110 urbanity 3 -01100011110 Corporatism 3 -01100011110 Srini 3 -01100011110 Rashomon 3 -01100011110 Resurrection 3 -01100011110 PETER 3 -01100011110 out-sourcing 3 -01100011110 Streamers 3 -01100011110 Giveaway 3 -01100011110 Normalization 3 -01100011110 Bees 3 -01100011110 SharpVision 3 -01100011110 Civilisation 3 -01100011110 Preserved 3 -01100011110 Colleague 3 -01100011110 Demographically 3 -01100011110 Lava 3 -01100011110 Explosion 3 -01100011110 RECENTLY 3 -01100011110 fixe 3 -01100011110 Prepare 3 -01100011110 Japanization 3 -01100011110 Fought 3 -01100011110 FOREIGNERS 3 -01100011110 INTELLIGENCE 3 -01100011110 Wraps 3 -01100011110 Conclusions 3 -01100011110 Lui 3 -01100011110 Violins 3 -01100011110 TOMATOES 3 -01100011110 Backward 3 -01100011110 Niches 3 -01100011110 mini-budget 3 -01100011110 Cans 3 -01100011110 Revivals 3 -01100011110 extender 3 -01100011110 Scylla 3 -01100011110 Cartoon 3 -01100011110 Oranges 3 -01100011110 ultra-right 3 -01100011110 ism 3 -01100011110 TREE 3 -01100011110 Rivalry 3 -01100011110 Outlaws 3 -01100011110 Lovers 3 -01100011110 Offspring 3 -01100011110 Nun 3 -01100011110 Nightwatch 3 -01100011110 T-Bondo 3 -01100011110 Profession 3 -01100011110 mi 3 -01100011110 Mingling 3 -01100011110 Jumpin 3 -01100011110 Condos 3 -01100011110 Cujo 3 -01100011110 tax-spared 3 -01100011110 Cigars 3 -01100011110 COLOR 3 -01100011110 Superfight 3 -01100011110 Dasibi 3 -01100011110 Bottles 3 -01100011110 WELL 3 -01100011110 ayu 3 -01100011110 Pickers 3 -01100011110 Roles 3 -01100011110 Hartsville 3 -01100011110 Hoses 3 -01100011110 Timm 3 -01100011110 Unworthy 3 -01100011110 Origin 3 -01100011110 Lock-Up 3 -01100011110 Sonatas 3 -01100011110 Horsemen 3 -01100011110 Non-Nasdaq 3 -01100011110 Snakes 3 -01100011110 subjectivism 3 -01100011110 Maneuver 3 -01100011110 Prayers 3 -01100011110 Tomatoes 3 -01100011110 Venerable 3 -01100011110 greediness 3 -01100011110 Insulated 3 -01100011110 No-No 3 -01100011110 Fantasia 3 -01100011110 Hippo 3 -01100011110 Goin 3 -01100011110 Ante 3 -01100011110 Peping 3 -01100011110 Rikky 3 -01100011110 Ketchup 3 -01100011110 ultra-left 3 -01100011110 Umbrella 3 -01100011110 abnormals 3 -01100011110 Chasers 3 -01100011110 Hedgehog 3 -01100011110 Suburbia 3 -01100011110 Essay 3 -01100011110 over-prescribe 3 -01100011110 Soap-Powders 3 -01100011110 Ritual 3 -01100011110 Vitamins 3 -01100011110 Dread 3 -01100011110 Lieder 3 -01100011110 Harmonielehre 3 -01100011110 big-bang 3 -01100011110 Monuments 3 -01100011110 Arthus 3 -01100011110 Kisha 3 -01100011110 Reminiscences 3 -01100011110 comps 3 -01100011110 Fence 3 -01100011110 Appraisals 3 -01100011110 ABZs 3 -01100011110 Iolanthe 3 -01100011110 Canyons 3 -01100011110 Congestion 3 -01100011110 intrapreneurship 3 -01100011110 mean-spiritedness 3 -01100011110 Freak 3 -01100011110 Marked 3 -01100011110 Leases 3 -01100011110 rededication 3 -01100011110 Editing 3 -01100011110 Mermaids 3 -01100011110 Awesome 3 -01100011110 bakso 3 -01100011110 Passages 3 -01100011110 Speed-up 3 -01100011110 ist 3 -01100011110 Ventilation 3 -01100011110 debunch 3 -01100011110 microchannel 3 -01100011110 Extremists 3 -01100011110 Coppelia 3 -01100011110 Agon 3 -01100011110 Spaces 3 -01100011110 Swifty 3 -01100011110 S.P.E.B.S.Q.S.A. 3 -01100011110 Comeback 3 -01100011110 COMPUTERIZED 3 -01100011110 nous 3 -01100011110 mini-devaluations 3 -01100011110 Leftists 3 -01100011110 Rx 3 -01100011110 PROTESTS 3 -01100011110 Hai 3 -01100011110 Satin 3 -01100011110 Socks 3 -01100011110 Nimbys 3 -01100011110 Chimpanzees 3 -01100011110 Spoons 3 -01100011110 Iceman 3 -01100011110 Waltzing 3 -01100011110 Appalling 3 -01100011110 Um 3 -01100011110 Competent 3 -01100011110 kulaks 3 -01100011110 remanufacturing 3 -01100011110 unemployables 3 -01100011110 illegales 3 -01100011110 Falter 3 -01100011110 Ills 3 -01100011110 BUGS 3 -01100011110 THINGS 3 -01100011110 Renidero 3 -01100011110 Sleepwalkers 3 -01100011110 Crock 3 -01100011110 gotcha 3 -01100011110 Strains 3 -01100011110 Hovering 3 -01100011110 Poem 3 -01100011110 internetting 3 -01100011110 PILLS 3 -01100011110 Adversity 3 -01100011110 Megatrends 3 -01100011110 Rampage/2 3 -01100011110 Buz 3 -01100011110 peoplemeter 3 -01100011110 Painted 3 -01100011110 Newsletters 3 -01100011110 APSAC 3 -01100011110 Equitymaker 3 -01100011110 TBN 3 -01100011110 Goonies 3 -01100011110 bye 3 -01100011110 Walkmans 3 -01100011110 Sermon 3 -01100011110 bloodsuckers 3 -01100011110 Resume 3 -01100011110 Lectures 3 -01100011110 Evaluations 3 -01100011110 Communicators 3 -01100011110 cram-down 3 -01100011110 apparatchiki 3 -01100011110 Entities 3 -01100011110 Pre-March 3 -01100011110 isms 3 -01100011110 Klute 3 -01100011110 megabanks 3 -01100011110 Approaches 3 -01100011110 Quack 3 -01100011110 Stink 3 -01100011110 one-couple-one-child 3 -01100011110 Khovanshchina 3 -01100011110 skunkworks 3 -01100011110 FRANCHISEES 3 -01100011110 ence 3 -01100011110 Yanzhong 3 -01100011110 Interlacing 3 -01100011110 Foxfire 3 -01100011110 work-stoppage 3 -01100011110 writer-proof 3 -01100011110 Year-End 3 -01100011110 gutless 3 -01100011110 F/X 3 -01100011110 intrapreneur 3 -01100011110 Harassment 3 -01100011110 gravedancer 3 -01100011110 PATIENTS 3 -01100011110 wetback 3 -01100011110 Noises 3 -01100011110 Sitco 3 -01100011110 pakikisama 3 -01100011110 pseudopalate 3 -01100011110 Jackets 3 -01100011110 counsellor 3 -01100011110 Dutch-auction 3 -01100011110 Stimulation 3 -01100011110 Seduced 3 -01100011110 Shines 3 -01100011110 Sexism 3 -01100011110 Habits 3 -01100011110 beautifying 3 -01100011110 Rabid 3 -01100011110 HeartBeat 3 -01100011110 Steal 3 -01100011110 NEWSPRINT 3 -01100011110 mega-deals 3 -01100011110 Filonov 3 -01100011110 Crafted 3 -01100011110 BOSSES 3 -01100011110 institution-building 3 -01100011110 Scam 3 -01100011110 Incarceration 3 -01100011110 Shed 3 -01100011110 Souvenirs 3 -01100011110 out-of-the-mainstream 3 -01100011110 Wanderlust 3 -01100011110 Banjo 3 -01100011110 front-loaded 3 -01100011110 Mambo 3 -01100011110 Allure 3 -01100011110 Hachiyas 3 -01100011110 Break-Throughs 3 -01100011110 Torx 3 -01100011110 Ugh 3 -01100011110 Crackdown 3 -01100011110 zaiteku 3 -01100011110 PENALTIES 3 -01100011110 Fixit 3 -01100011110 obon 3 -01100011110 batmobile 3 -01100011110 Spur 3 -01100011110 Individualism 3 -01100011110 Faxing 3 -01100011110 Intimacy 3 -01100011110 Torture 3 -01100011110 Vain 3 -01100011110 for-hire 3 -01100011110 samizdat 3 -01100011110 Eurosaver 3 -01100011110 burnouts 3 -01100011110 old-timey 3 -01100011110 Polluters 3 -01100011110 Organs 3 -01100011110 Fault 3 -01100011110 Boycott 3 -01100011110 clinkers 3 -01100011110 Geopolitics 3 -01100011110 Awakener 3 -01100011110 Witchcraft 3 -01100011110 Enhancer 3 -01100011110 Flippers 3 -01100011110 Revisionism 3 -01100011110 Lingerie 3 -01100011110 Mansions 3 -01100011110 cop-killer 3 -01100011110 Breakdown 3 -01100011110 flextime 3 -01100011110 Leopards 3 -01100011110 Patron 3 -01100011110 Whats 3 -01100011110 Incomes 4 -01100011110 Privates 4 -01100011110 Classrooms 4 -01100011110 Prospekt 4 -01100011110 Opticians 4 -01100011110 anti-trade 4 -01100011110 Importance 4 -01100011110 Drugstores 4 -01100011110 Maometto 4 -01100011110 Contenders 4 -01100011110 kacho 4 -01100011110 cross-training 4 -01100011110 Disco 4 -01100011110 Aerobics 4 -01100011110 Sweetheart 4 -01100011110 Ancestors 4 -01100011110 RESORTS 4 -01100011110 Taekwondo 4 -01100011110 Obesity 4 -01100011110 Mummies 4 -01100011110 Journeys 4 -01100011110 ENTREPRENEURS 4 -01100011110 Inequality 4 -01100011110 FLIGHT 4 -01100011110 Bicycles 4 -01100011110 POLITICIANS 4 -01100011110 Travels 4 -01100011110 Rarities 4 -01100011110 SMOKERS 4 -01100011110 Tubes 4 -01100011110 Discoveries 4 -01100011110 Pockets 4 -01100011110 ALLOWED 4 -01100011110 LANGUAGE 4 -01100011110 Billing 4 -01100011110 Gunsmoke 4 -01100011110 Onyx 4 -01100011110 Caps 4 -01100011110 Gays 4 -01100011110 Crossfire 4 -01100011110 Seller 4 -01100011110 Showers 4 -01100011110 Bandit 4 -01100011110 Abound 4 -01100011110 BOYS 4 -01100011110 SATISFACTION 4 -01100011110 Nuke 4 -01100011110 dee-doo 4 -01100011110 Continuity 4 -01100011110 Painters 4 -01100011110 UOP 4 -01100011110 Leak 4 -01100011110 Headhunters 4 -01100011110 DESIGNERS 4 -01100011110 Moonchildren 4 -01100011110 ABROAD 4 -01100011110 Defendant 4 -01100011110 Schoolchildren 4 -01100011110 Intolerance 4 -01100011110 Brushstrokes 4 -01100011110 Molding 4 -01100011110 GM10 4 -01100011110 Operator 4 -01100011110 Memoir 4 -01100011110 Dude 4 -01100011110 Hottest 4 -01100011110 Custody 4 -01100011110 Shower 4 -01100011110 Ol 4 -01100011110 SCHOOL 4 -01100011110 Cows 4 -01100011110 Documentation 4 -01100011110 Cited 4 -01100011110 Offenders 4 -01100011110 free-riding 4 -01100011110 Composition 4 -01100011110 Temps 4 -01100011110 Entertaining 4 -01100011110 Networking 4 -01100011110 Mirth 4 -01100011110 Ron-Yasu 4 -01100011110 Euro-equities 4 -01100011110 Thoughts 4 -01100011110 Reception 4 -01100011110 Quote 4 -01100011110 Gumby 4 -01100011110 Guardians 4 -01100011110 Stagnation 4 -01100011110 Regards 4 -01100011110 Smiles 4 -01100011110 Salsa 4 -01100011110 Punks 4 -01100011110 Duration 4 -01100011110 Be-bop 4 -01100011110 Cantos 4 -01100011110 megathrift 4 -01100011110 U.B.U. 4 -01100011110 Pumpkinhead 4 -01100011110 Goodnight 4 -01100011110 Sewage 4 -01100011110 Hazards 4 -01100011110 STORAGE 4 -01100011110 Friedenstag 4 -01100011110 vaporware 4 -01100011110 KNOWS 4 -01100011110 Lithium 4 -01100011110 Prostitutes 4 -01100011110 Stoic 4 -01100011110 Breath 4 -01100011110 Skinny 4 -01100011110 Dinosaurs 4 -01100011110 Coaches 4 -01100011110 reality-based 4 -01100011110 Bar-Lev 4 -01100011110 Holds 4 -01100011110 Spell 4 -01100011110 Woogie 4 -01100011110 Distrust 4 -01100011110 Ferries 4 -01100011110 Suburbs 4 -01100011110 Rap 4 -01100011110 Slender 4 -01100011110 Entrance 4 -01100011110 TAXPAYERS 4 -01100011110 Generals 4 -01100011110 Cartoonists 4 -01100011110 uncopyrightable 4 -01100011110 Complications 4 -01100011110 Suspect 4 -01100011110 Realities 4 -01100011110 Swim 4 -01100011110 Errand 4 -01100011110 Obstacles 4 -01100011110 Recordings 4 -01100011110 Burglar 4 -01100011110 Beetlejuice 4 -01100011110 Perils 4 -01100011110 Grenas 4 -01100011110 Liposuction 4 -01100011110 MURDER 4 -01100011110 Hurrah 4 -01100011110 Usage 4 -01100011110 Glitz 4 -01100011110 Belongers 4 -01100011110 Reversal 4 -01100011110 Post-it 4 -01100011110 Realignment 4 -01100011110 Sovereignty 4 -01100011110 Providers 4 -01100011110 Candor 4 -01100011110 Serpico 4 -01100011110 Minds 4 -01100011110 Painless 4 -01100011110 Yesson 4 -01100011110 Asinamali 4 -01100011110 Nutcrackers 4 -01100011110 Accuse 4 -01100011110 hombre 4 -01100011110 Nonsmokers 4 -01100011110 Currencies 4 -01100011110 Hurdles 4 -01100011110 Intuition 4 -01100011110 juku 4 -01100011110 Oppression 4 -01100011110 Closings 4 -01100011110 Ja 4 -01100011110 Revolutions 4 -01100011110 Rockin 4 -01100011110 Mythologies 4 -01100011110 g 4 -01100011110 Criticized 4 -01100011110 Typing 4 -01100011110 Emmanuelle 4 -01100011110 Bye 4 -01100011110 Tasks 4 -01100011110 Homecoming 4 -01100011110 Insects 4 -01100011110 GUARANTEED 4 -01100011110 Dreamgirl 4 -01100011110 Closeup 4 -01100011110 Restructurings 4 -01100011110 Refrigerants 4 -01100011110 Kuhlmeier 4 -01100011110 skinhead 4 -01100011110 Insanity 4 -01100011110 Martyrdom 4 -01100011110 cramdown 4 -01100011110 professionalize 4 -01100011110 Mishima 4 -01100011110 Billiards 4 -01100011110 Thirtysomething 4 -01100011110 Ironweed 4 -01100011110 Elusive 4 -01100011110 DOESN 4 -01100011110 Sayang 4 -01100011110 Herbs 4 -01100011110 Marriages 4 -01100011110 Superstars 4 -01100011110 Involvement 4 -01100011110 Dependency 4 -01100011110 Cultures 4 -01100011110 BROKERS 4 -01100011110 garoupa 4 -01100011110 GRADS 4 -01100011110 RESTAURANTS 4 -01100011110 Absalom 4 -01100011110 Credit-Card 4 -01100011110 Retaliation 4 -01100011110 Yaaba 4 -01100011110 Revue 4 -01100011110 Joke 4 -01100011110 Dads 4 -01100011110 Fragments 4 -01100011110 Kojak 4 -01100011110 PROMISES 4 -01100011110 Delayed 4 -01100011110 Picnic 4 -01100011110 Links 4 -01100011110 PARTS 4 -01100011110 Fidelio 4 -01100011110 Bargains 4 -01100011110 Flashes 4 -01100011110 Ecological 4 -01100011110 Octavian 4 -01100011110 Proficiency 4 -01100011110 Clinique 4 -01100011110 Mishaps 4 -01100011110 Summertime 4 -01100011110 Tightrope 4 -01100011110 Bait 4 -01100011110 Yeast 4 -01100011110 Motels 4 -01100011110 Guesstimates 4 -01100011110 Passes 4 -01100011110 Supremacy 4 -01100011110 Washingtoons 4 -01100011110 Panache 4 -01100011110 Onward 4 -01100011110 Overcome 4 -01100011110 Un 4 -01100011110 EXPERTS 4 -01100011110 Scheduling 4 -01100011110 Whew 4 -01100011110 PRESSURES 4 -01100011110 Coy 4 -01100011110 Shunned 4 -01100011110 Personalities 4 -01100011110 Joking 4 -01100011110 Bully 4 -01100011110 Poltergeist 4 -01100011110 Wrinkles 4 -01100011110 skip-a-month 4 -01100011110 Excuses 4 -01100011110 Distant 4 -01100011110 SLOWLY 4 -01100011110 Payers 4 -01100011110 Complaint 4 -01100011110 Math 5 -01100011110 Tracks 5 -01100011110 Spots 5 -01100011110 Speed-the-Plow 5 -01100011110 stakeholder 5 -01100011110 Treatments 5 -01100011110 Hurricanes 5 -01100011110 Philosopher 5 -01100011110 Nej 5 -01100011110 Hymietown 5 -01100011110 Shout 5 -01100011110 niggers 5 -01100011110 Microcosm 5 -01100011110 Willful 5 -01100011110 Cares 5 -01100011110 Microprocessor 5 -01100011110 Audits 5 -01100011110 Vets 5 -01100011110 Decision/Capital 5 -01100011110 Postcards 5 -01100011110 News-Press 5 -01100011110 Climb 5 -01100011110 P.O.V. 5 -01100011110 Representation 5 -01100011110 RED 5 -01100011110 Backs 5 -01100011110 Map 5 -01100011110 Concessions 5 -01100011110 EDUCATION 5 -01100011110 Persuasion 5 -01100011110 Disadvantaged 5 -01100011110 boum 5 -01100011110 Turnarounds 5 -01100011110 Lit 5 -01100011110 Marziano 5 -01100011110 Wires 5 -01100011110 Basket 5 -01100011110 Sonnets 5 -01100011110 Poems 5 -01100011110 Burden-sharing 5 -01100011110 Non 5 -01100011110 Candide 5 -01100011110 Ingredients 5 -01100011110 Slogan 5 -01100011110 Earthbeat 5 -01100011110 Obon 5 -01100011110 BasketWeave 5 -01100011110 Garments 5 -01100011110 Bikini 5 -01100011110 TRUSTS 5 -01100011110 Foe 5 -01100011110 Virtue 5 -01100011110 TOLL 5 -01100011110 Postage 5 -01100011110 Mongooses 5 -01100011110 corpocracy 5 -01100011110 Butter 5 -01100011110 duopoly 5 -01100011110 Dining 5 -01100011110 Transfers 5 -01100011110 Blessings 5 -01100011110 Tips 5 -01100011110 Outsider 5 -01100011110 Europa 5 -01100011110 Concise 5 -01100011110 Anthem 5 -01100011110 Sailors 5 -01100011110 Surprises 5 -01100011110 Mammon 5 -01100011110 si 5 -01100011110 Despair 5 -01100011110 POISON 5 -01100011110 Torch 5 -01100011110 Conventions 5 -01100011110 Flowts 5 -01100011110 sterilizer 5 -01100011110 Affliction 5 -01100011110 Dynamite 5 -01100011110 Entrants 5 -01100011110 Pisces 5 -01100011110 Blimps 5 -01100011110 Trick 5 -01100011110 Paralysis 5 -01100011110 Substitute 5 -01100011110 Columbo 5 -01100011110 DEALS 5 -01100011110 Fedora 5 -01100011110 Stoics 5 -01100011110 Yards 5 -01100011110 Continents 5 -01100011110 Oven 5 -01100011110 flowback 5 -01100011110 Sacrifice 5 -01100011110 Villages 5 -01100011110 Stance 5 -01100011110 Thriller 5 -01100011110 Percent 5 -01100011110 Movements 5 -01100011110 Chairs 5 -01100011110 compassionate-use 5 -01100011110 Budgeting 5 -01100011110 Agony 5 -01100011110 Calendar 5 -01100011110 Caller 5 -01100011110 Neighbor 5 -01100011110 Blaze 5 -01100011110 pickaninnies 5 -01100011110 Liar 5 -01100011110 Starman 5 -01100011110 Yachts 5 -01100011110 EECO 5 -01100011110 Costumes 5 -01100011110 Reclining 5 -01100011110 Treasures 5 -01100011110 Regrets 5 -01100011110 unbundle 5 -01100011110 Enemies 5 -01100011110 Fantasies 5 -01100011110 Pal 5 -01100011110 Heirs 5 -01100011110 super-delegates 5 -01100011110 Sentences 5 -01100011110 waterblot 5 -01100011110 Housewife 5 -01100011110 Streak 5 -01100011110 Volkov 5 -01100011110 Beep 5 -01100011110 Uneasy 5 -01100011110 Discussion 5 -01100011110 Appearances 5 -01100011110 Singin 5 -01100011110 Jam 5 -01100011110 Werewolf 5 -01100011110 Teens 5 -01100011110 Salome 5 -01100011110 Passions 5 -01100011110 ADVANCE 5 -01100011110 Episode 5 -01100011110 Feathers 5 -01100011110 Giang 5 -01100011110 Fugitive 5 -01100011110 Delusion 5 -01100011110 Microprocessors 5 -01100011110 Resumes 5 -01100011110 Sinfonia 5 -01100011110 carpetbaggers 5 -01100011110 Coolers 5 -01100011110 Prep 5 -01100011110 Prayer 5 -01100011110 Niche 5 -01100011110 Graft 5 -01100011110 Vermummungsverbot 5 -01100011110 salarymen 5 -01100011110 Disillusioned 5 -01100011110 Brains 5 -01100011110 Disasters 5 -01100011110 Contention 5 -01100011110 cocooning 5 -01100011110 Filmed 5 -01100011110 voluntarism 5 -01100011110 Experiences 5 -01100011110 Phones 5 -01100011110 Billboards 5 -01100011110 Concertos 5 -01100011110 SPOUSES 5 -01100011110 Holidays 5 -01100011110 Yuk 5 -01100011110 Seduction 5 -01100011110 Permission 5 -01100011110 Decoration 5 -01100011110 Mutiny 5 -01100011110 rectification 5 -01100011110 Guercoeur 5 -01100011110 Bookstore 5 -01100011110 Hostage 5 -01100011110 Cover-Up 5 -01100011110 Creativity 5 -01100011110 Teenagers 5 -01100011110 Grievances 5 -01100011110 Kindergarten 5 -01100011110 Explanation 5 -01100011110 Divertimento 5 -01100011110 OY 5 -01100011110 Intercourse 5 -01100011110 Poets 5 -01100011110 jointness 6 -01100011110 Gurrelieder 6 -01100011110 Crashes 6 -01100011110 Relationship 6 -01100011110 Writings 6 -01100011110 Keeps 6 -01100011110 PROSECUTORS 6 -01100011110 TEACHERS 6 -01100011110 Misery 6 -01100011110 Gossip 6 -01100011110 Chains 6 -01100011110 Perfection 6 -01100011110 Affiliation 6 -01100011110 Landslide 6 -01100011110 Daytime 6 -01100011110 Clauses 6 -01100011110 Masterpieces 6 -01100011110 MACHINE 6 -01100011110 Orchids 6 -01100011110 Betrayed 6 -01100011110 Fatherhood 6 -01100011110 Interpretation 6 -01100011110 Assassination 6 -01100011110 Cousin 6 -01100011110 m 6 -01100011110 Concentrate 6 -01100011110 Phantasm 6 -01100011110 Cartoons 6 -01100011110 Unthinkable 6 -01100011110 TURN 6 -01100011110 Dwarf 6 -01100011110 Salmonella 6 -01100011110 RAISES 6 -01100011110 Hum 6 -01100011110 Syndications 6 -01100011110 Safeguards 6 -01100011110 Washing 6 -01100011110 rent-a-plane 6 -01100011110 Gum 6 -01100011110 Hybrids 6 -01100011110 Zangezi 6 -01100011110 Bimbo 6 -01100011110 TRADERS 6 -01100011110 Partenope 6 -01100011110 Environmentalism 6 -01100011110 Catalogs 6 -01100011110 Needed 6 -01100011110 Totals 6 -01100011110 Prisoner 6 -01100011110 Elegance 6 -01100011110 Chocolates 6 -01100011110 Flesh 6 -01100011110 p 6 -01100011110 SCHOOLS 6 -01100011110 Macho 6 -01100011110 Protein 6 -01100011110 LIVE 6 -01100011110 Met-Coil 6 -01100011110 Dentistry 6 -01100011110 Persistence 6 -01100011110 O.K. 6 -01100011110 Betrayal 6 -01100011110 COLUMBIA 6 -01100011110 LIMITED 6 -01100011110 Precedents 6 -01100011110 PARTNERSHIPS 6 -01100011110 Assault 6 -01100011110 Asphalt 6 -01100011110 Ran 6 -01100011110 Indictments 6 -01100011110 Lists 6 -01100011110 LOW 6 -01100011110 Clemenza 6 -01100011110 Pennies 6 -01100011110 Satellites 6 -01100011110 Client 6 -01100011110 Whiz 6 -01100011110 Currents 6 -01100011110 Melody 6 -01100011110 Instruction 6 -01100011110 Genes 6 -01100011110 Boogie 6 -01100011110 LOVE 6 -01100011110 Tourney 6 -01100011110 R.I.P. 6 -01100011110 Raging 6 -01100011110 Smile 6 -01100011110 Novels 6 -01100011110 Bolero 6 -01100011110 Believers 6 -01100011110 Beloved 6 -01100011110 Boring 6 -01100011110 Poker 6 -01100011110 ENGLISH 6 -01100011110 Cockroaches 6 -01100011110 Peril 6 -01100011110 Shifts 6 -01100011110 Criteria 6 -01100011110 Fruits 6 -01100011110 Repentance 6 -01100011110 Asparagus 6 -01100011110 Caddyshack 6 -01100011110 Smog 6 -01100011110 Prostitution 6 -01100011110 Dirt 6 -01100011110 Windmills 6 -01100011110 VIRGINIA 6 -01100011110 Notorious 6 -01100011110 Engaged 6 -01100011110 Festivals 6 -01100011110 Buntz 6 -01100011110 Ears 6 -01100011110 Slump 6 -01100011110 Deliberations 6 -01100011110 PHOENIX 6 -01100011110 Lieutenant 6 -01100011110 Werther 6 -01100011110 Earthquake 6 -01100011110 Castaways 6 -01100011110 Parsifal 6 -01100011110 Log 6 -01100011110 Outrage 6 -01100011110 Ant 6 -01100011110 Fringe 6 -01100011110 Selections 6 -01100011110 Lem 6 -01100011110 Nose 6 -01100011110 Attitude 6 -01100011110 Hairspray 6 -01100011110 Physically 6 -01100011110 Bullets 6 -01100011110 Breakthrough 6 -01100011110 Patriotism 6 -01100011110 buy-hold 6 -01100011110 Lassie 6 -01100011110 TOPS 6 -01100011110 Moderation 6 -01100011110 Combination 6 -01100011110 Messenger 7 -01100011110 Perennial 7 -01100011110 Fingers 7 -01100011110 FARMERS 7 -01100011110 Batteries 7 -01100011110 LOSS 7 -01100011110 Lighter 7 -01100011110 Stranger 7 -01100011110 Potatoes 7 -01100011110 Closure 7 -01100011110 singularization 7 -01100011110 Gasohol 7 -01100011110 INSURERS 7 -01100011110 Workout 7 -01100011110 Clue 7 -01100011110 Clouds 7 -01100011110 Econ 7 -01100011110 bumper-to-bumper 7 -01100011110 Oath 7 -01100011110 Bosses 7 -01100011110 Rats 7 -01100011110 Collapse 7 -01100011110 Relationships 7 -01100011110 Creature 7 -01100011110 Industrialists 7 -01100011110 GBM2 7 -01100011110 Serenade 7 -01100011110 Handsome 7 -01100011110 Hashem 7 -01100011110 Drops 7 -01100011110 Honors 7 -01100011110 Essays 7 -01100011110 Beaches 7 -01100011110 Concentration 7 -01100011110 Rigoletto 7 -01100011110 Rotten 7 -01100011110 Hostages 7 -01100011110 Cops 7 -01100011110 Spenser 7 -01100011110 Husband 7 -01100011110 Whistle 7 -01100011110 Nebraskans 7 -01100011110 Wired 7 -01100011110 Terelya 7 -01100011110 Guilty 7 -01100011110 Bonecrusher 7 -01100011110 Holes 7 -01100011110 PRODUCT 7 -01100011110 Steroids 7 -01100011110 circuit-breakers 7 -01100011110 Grab 7 -01100011110 Zoom 7 -01100011110 AUSTRALIAN 7 -01100011110 Theft 7 -01100011110 Gotterdammerung 7 -01100011110 Discs 7 -01100011110 Difficulties 7 -01100011110 Dilemma 7 -01100011110 Blondie 7 -01100011110 Mailing 7 -01100011110 Diversity 7 -01100011110 Boo 7 -01100011110 Euthanasia 7 -01100011110 Marbles 7 -01100011110 Beginners 7 -01100011110 Quiz 7 -01100011110 Caveat 7 -01100011110 Mc 7 -01100011110 Method 7 -01100011110 Pitch 7 -01100011110 Momma 7 -01100011110 wampum 7 -01100011110 Arrangements 7 -01100011110 Servicing 7 -01100011110 Shelters 7 -01100011110 Lasers 7 -01100011110 Homeowner 7 -01100011110 Files 7 -01100011110 Cocoon 7 -01100011110 Propaganda 7 -01100011110 Coping 7 -01100011110 Alachlor 7 -01100011110 Goals 7 -01100011110 Famine 7 -01100011110 Fails 7 -01100011110 Amigos 7 -01100011110 Mushrooms 7 -01100011110 Matlock 7 -01100011110 Divers 7 -01100011110 Excitement 7 -01100011110 Hoteliers 7 -01100011110 Continue 7 -01100011110 Methods 7 -01100011110 Irradiation 7 -01100011110 Overture 7 -01100011110 Otello 7 -01100011110 Position 7 -01100011110 Fools 7 -01100011110 Franchises 7 -01100011110 Tab 7 -01100011110 RECRUITING 7 -01100011110 Capitalist 7 -01100011110 Bouncers 7 -01100011110 Tar 7 -01100011110 Thundercats 7 -01100011110 enteritidis 7 -01100011110 Snap 7 -01100011110 Tapes 7 -01100011110 Cooling 7 -01100011110 Hygienists 7 -01100011110 Yourself 7 -01100011110 Coupons 7 -01100011110 Treasurers 7 -01100011110 Seals 7 -01100011110 Resolutions 7 -01100011110 Reorganization 7 -01100011110 Succession 7 -01100011110 Arrogance 7 -01100011110 Dusk 7 -01100011110 RETAILERS 7 -01100011110 CARDS 7 -01100011110 Quintet 7 -01100011110 Catcher 7 -01100011110 Bureaucracy 8 -01100011110 Buys 8 -01100011110 Ourselves 8 -01100011110 Squeeze 8 -01100011110 Surge 8 -01100011110 Conscience 8 -01100011110 Fundamentals 8 -01100011110 Spycatcher 8 -01100011110 SCIENTISTS 8 -01100011110 Bags 8 -01100011110 Failed 8 -01100011110 Barred 8 -01100011110 Detention 8 -01100011110 Landscape 8 -01100011110 Robot 8 -01100011110 Hybrid 8 -01100011110 Cheating 8 -01100011110 Nonprofits 8 -01100011110 Disk 8 -01100011110 Banquet 8 -01100011110 Lowest 8 -01100011110 Polka 8 -01100011110 Auctioneers 8 -01100011110 Dances 8 -01100011110 Default 8 -01100011110 PHILADELPHIA 8 -01100011110 Flo 8 -01100011110 Commentaries 8 -01100011110 Gods 8 -01100011110 Plague 8 -01100011110 Skills 8 -01100011110 Shippers 8 -01100011110 Respect 8 -01100011110 Brilliant 8 -01100011110 Ended 8 -01100011110 McPaper 8 -01100011110 Obscene 8 -01100011110 Rings 8 -01100011110 Pozner 8 -01100011110 HOTELS 8 -01100011110 Lefty 8 -01100011110 Buzz 8 -01100011110 Cries 8 -01100011110 Raises 8 -01100011110 Ideology 8 -01100011110 Smugglers 8 -01100011110 Harm 8 -01100011110 Shadows 8 -01100011110 Weeds 8 -01100011110 Zydeco 8 -01100011110 Promises 8 -01100011110 Traviata 8 -01100011110 L-word 8 -01100011110 Boutique 8 -01100011110 Album 8 -01100011110 Click 8 -01100011110 Conversation 8 -01100011110 Ducks 8 -01100011110 look-and-feel 8 -01100011110 Dump 8 -01100011110 Excellent 8 -01100011110 Angst 8 -01100011110 Boosters 8 -01100011110 Responsibilities 8 -01100011110 Warfare 8 -01100011110 Hits 8 -01100011110 Seriously 8 -01100011110 Gringo 8 -01100011110 Witch 8 -01100011110 pokazukha 8 -01100011110 Supper 8 -01100011110 Cells 8 -01100011110 FAIR 8 -01100011110 Turtles 8 -01100011110 Rational 8 -01100011110 just-say-no 8 -01100011110 Nurse 8 -01100011110 Kick 8 -01100011110 Composites 8 -01100011110 CONSUMERS 8 -01100011110 Refrigerator 8 -01100011110 Sociology 8 -01100011110 EMPLOYEES 8 -01100011110 Alliances 9 -01100011110 Drunk 9 -01100011110 Boats 9 -01100011110 Mikado 9 -01100011110 Charisma 9 -01100011110 Curiosity 9 -01100011110 Civilians 9 -01100011110 Vacancy 9 -01100011110 Roots 9 -01100011110 CHARITIES 9 -01100011110 Leads 9 -01100011110 Punchline 9 -01100011110 Buses 9 -01100011110 backwardation 9 -01100011110 Whales 9 -01100011110 Blade 9 -01100011110 CHECK 9 -01100011110 Protest 9 -01100011110 Trip 9 -01100011110 Bits 9 -01100011110 Mask 9 -01100011110 Destiny 9 -01100011110 Jumping 9 -01100011110 Retrospective 9 -01100011110 Mercy 9 -01100011110 Theories 9 -01100011110 Stardust 9 -01100011110 Bars 9 -01100011110 Poet 9 -01100011110 hooligans 9 -01100011110 Fledermaus 9 -01100011110 FEARS 9 -01100011110 Shape 9 -01100011110 Shake 9 -01100011110 Moneyline 9 -01100011110 TRAVELERS 9 -01100011110 Malls 9 -01100011110 Criminals 9 -01100011110 Scarface 9 -01100011110 Boxers 9 -01100011110 Cabaret 9 -01100011110 Revisited 9 -01100011110 Shame 9 -01100011110 Champions 9 -01100011110 Superstar 9 -01100011110 ACQUISITIONS 9 -01100011110 Availability 9 -01100011110 snapper 9 -01100011110 Transition 9 -01100011110 Indicted 9 -01100011110 Agree 9 -01100011110 Gin 9 -01100011110 Verdict 9 -01100011110 Changed 9 -01100011110 Slime 9 -01100011110 / 9 -01100011110 Awakening 9 -01100011110 Orphee 9 -01100011110 Looks 9 -01100011110 Bargaining 9 -01100011110 Owned 9 -01100011110 Bodies 9 -01100011110 Commissar 9 -01100011110 Person 9 -01100011110 bundling 9 -01100011110 Visit 9 -01100011110 Uses 9 -01100011110 VEIL 9 -01100011110 McDeal 9 -01100011110 Integration 9 -01100011110 Raymonda 9 -01100011110 Positioning 9 -01100011110 Veto 9 -01100011110 Maids 9 -01100011110 Husbands 9 -01100011110 Sheep 9 -01100011110 RIGHTS 9 -01100011110 Alumina 9 -01100011110 Governing 9 -01100011110 Lohengrin 9 -01100011110 Mommy 9 -01100011110 Payout 9 -01100011110 Weird 9 -01100011110 Conservatism 9 -01100011110 Collision 9 -01100011110 YTT 9 -01100011110 Slim 9 -01100011110 Legs 9 -01100011110 Childhood 9 -01100011110 Twisted 9 -01100011110 Encounter 9 -01100011110 Lover 9 -01100011110 Session 9 -01100011110 Hobbes 9 -01100011110 Breakers 9 -01100011110 Reckless 9 -01100011110 Came 10 -01100011110 Videos 10 -01100011110 Cooking 10 -01100011110 Harmony 10 -01100011110 Underwriter 10 -01100011110 Location 10 -01100011110 Natives 10 -01100011110 Objects 10 -01100011110 Leverage 10 -01100011110 Screening 10 -01100011110 Porgy 10 -01100011110 Navigator 10 -01100011110 Patents 10 -01100011110 Divorced 10 -01100011110 Wife 10 -01100011110 Controlled 10 -01100011110 Tempest 10 -01100011110 Tannhauser 10 -01100011110 Shock 10 -01100011110 Trio 10 -01100011110 Difference 10 -01100011110 Weavers 10 -01100011110 Prints 10 -01100011110 Realism 10 -01100011110 Charm 10 -01100011110 Techniques 10 -01100011110 Bones 10 -01100011110 Patterns 10 -01100011110 Expense 10 -01100011110 Bullet 10 -01100011110 Voyage 10 -01100011110 Philosophy 10 -01100011110 Deficits 10 -01100011110 EMPLOYERS 10 -01100011110 Thief 10 -01100011110 FIRE 10 -01100011110 Runners 10 -01100011110 Scandals 10 -01100011110 Housewives 10 -01100011110 Fit 10 -01100011110 Lolita 10 -01100011110 ISN 10 -01100011110 Bandits 10 -01100011110 Lightning 10 -01100011110 Fill 10 -01100011110 Departures 10 -01100011110 Wins 10 -01100011110 Newcomers 10 -01100011110 Genius 10 -01100011110 Quotes 10 -01100011110 Fertility 10 -01100011110 Catastrophe 10 -01100011110 Stonewall 10 -01100011110 Hip 10 -01100011110 Bigness 10 -01100011110 Thou 10 -01100011110 Gotcha 10 -01100011110 Bounty 10 -01100011110 Zhivago 10 -01100011110 Grandparents 10 -01100011110 Rider 10 -01100011110 Spoils 10 -01100011110 Crowds 10 -01100011110 Tanks 11 -01100011110 Yours 11 -01100011110 Terror 11 -01100011110 Eroica 11 -01100011110 Finances 11 -01100011110 Positions 11 -01100011110 Classes 11 -01100011110 UNIONS 11 -01100011110 GS 11 -01100011110 Splash 11 -01100011110 Shandling 11 -01100011110 Waltz 11 -01100011110 Clan 11 -01100011110 Diving 11 -01100011110 Stealthies 11 -01100011110 Fences 11 -01100011110 Minorities 11 -01100011110 Findings 11 -01100011110 Deterrence 11 -01100011110 Buzzy 11 -01100011110 Fanny 11 -01100011110 Teenage 11 -01100011110 Calm 11 -01100011110 Invasion 11 -01100011110 Targets 11 -01100011110 Ghost 11 -01100011110 Tampopo 11 -01100011110 Perfume 11 -01100011110 Telephones 11 -01100011110 Tango 11 -01100011110 Bum 11 -01100011110 Auxiliary 11 -01100011110 Procedures 11 -01100011110 Thought 11 -01100011110 Errors 11 -01100011110 Evita 11 -01100011110 MARKETERS 11 -01100011110 Signals 11 -01100011110 Sticks 11 -01100011110 Relax 11 -01100011110 Follies 11 -01100011110 Cheer 11 -01100011110 Cabin 11 -01100011110 megacarriers 11 -01100011110 Bag 11 -01100011110 Trovatore 11 -01100011110 Risky 11 -01100011110 Honeymooners 11 -01100011110 Corners 11 -01100011110 Voila 11 -01100011110 Innerspace 11 -01100011110 Risks 11 -01100011110 Spaceballs 11 -01100011110 Guitar 11 -01100011110 Accidents 11 -01100011110 DOCTORS 11 -01100011110 Lift 11 -01100011110 Surrender 11 -01100011110 Garage 11 -01100011110 Photographers 11 -01100011110 Channels 11 -01100011110 Gives 11 -01100011110 Reformers 11 -01100011110 Golfers 11 -01100011110 Riches 11 -01100011110 Condition 11 -01100011110 Speakers 11 -01100011110 Em 11 -01100011110 Amen 11 -01100011110 Marijuana 11 -01100011110 Moms 11 -01100011110 Bel-Air 12 -01100011110 Rents 12 -01100011110 Sunlight 12 -01100011110 Wholesalers 12 -01100011110 Shift 12 -01100011110 Stakes 12 -01100011110 Mathematics 12 -01100011110 Murders 12 -01100011110 Wash 12 -01100011110 Proposal 12 -01100011110 Chemistry 12 -01100011110 Speak 12 -01100011110 Riders 12 -01100011110 Drawings 12 -01100011110 Cookies 12 -01100011110 Liberalism 12 -01100011110 Metropolis 12 -01100011110 Centuries 12 -01100011110 Dramatic 12 -01100011110 Dispensing 12 -01100011110 NOVA 12 -01100011110 TALKS 12 -01100011110 Voodoo 12 -01100011110 Satisfaction 12 -01100011110 Ships 12 -01100011110 Strangers 12 -01100011110 Level 12 -01100011110 OWNERS 12 -01100011110 Careers 12 -01100011110 MarketAmerica 12 -01100011110 Daughter 12 -01100011110 Robocop 12 -01100011110 Robots 12 -01100011110 Secure 12 -01100011110 Split 12 -01100011110 Alarm 12 -01100011110 Remote 12 -01100011110 EastEnders 12 -01100011110 Correct 12 -01100011110 Psycho 12 -01100011110 Able 12 -01100011110 Crunch 12 -01100011110 Foundations 12 -01100011110 Favor 12 -01100011110 Threat 12 -01100011110 Danger 12 -01100011110 Towns 12 -01100011110 Jokes 12 -01100011110 Alumni 12 -01100011110 Answers 12 -01100011110 Cookie 12 -01100011110 Fliers 12 -01100011110 Reforms 12 -01100011110 Collections 12 -01100011110 Huh 12 -01100011110 Hardball 12 -01100011110 Pros 12 -01100011110 Counseling 12 -01100011110 Plaintiff 12 -01100011110 r 12 -01100011110 Engineer 12 -01100011110 Radon 12 -01100011110 COMPUTERS 12 -01100011110 Voices 12 -01100011110 Conflict 12 -01100011110 Sunflowers 12 -01100011110 Pesticides 12 -01100011110 Step 12 -01100011110 nigger 12 -01100011110 Philanthropy 12 -01100011110 Collectors 12 -01100011110 Subtle 12 -01100011110 Seniors 12 -01100011110 Contact 13 -01100011110 Battles 13 -01100011110 Exclusive 13 -01100011110 Cure 13 -01100011110 Wartime 13 -01100011110 Accused 13 -01100011110 Shan 13 -01100011110 Horses 13 -01100011110 Panorama 13 -01100011110 Forever 13 -01100011110 Graduates 13 -01100011110 Elite 13 -01100011110 Gypsy 13 -01100011110 WARS 13 -01100011110 Trader 13 -01100011110 Feast 13 -01100011110 Examination 13 -01100011110 Rheingold 13 -01100011110 AMERICANS 13 -01100011110 Pieces 13 -01100011110 LAWYERS 13 -01100011110 Dangerous 13 -01100011110 Souls 13 -01100011110 Widow 13 -01100011110 Doonesbury 13 -01100011110 Enjoy 13 -01100011110 STAR 13 -01100011110 Sense 13 -01100011110 Sections 13 -01100011110 Meals 13 -01100011110 Directly 13 -01100011110 Godot 13 -01100011110 Federalism 13 -01100011110 Offers 13 -01100011110 Literally 13 -01100011110 Exempt 13 -01100011110 Profile 13 -01100011110 Solution 13 -01100011110 Choices 13 -01100011110 Armor 13 -01100011110 CARS 13 -01100011110 Runner 13 -01100011110 Singing 13 -01100011110 Portraits 13 -01100011110 Legacy 13 -01100011110 Fiction 13 -01100011110 Depreciation 13 -01100011110 Event 13 -01100011110 Sole 13 -01100011110 imperialists 13 -01100011110 Predator 13 -01100011110 Anger 14 -01100011110 Iliad 14 -01100011110 Suffering 14 -01100011110 Messiah 14 -01100011110 Guidelines 14 -01100011110 Discipline 14 -01100011110 Diamonds 14 -01100011110 Correction 14 -01100011110 Annuities 14 -01100011110 Frontiers 14 -01100011110 Application 14 -01100011110 Trains 14 -01100011110 Swimming 14 -01100011110 Desire 14 -01100011110 Done 14 -01100011110 Grains 14 -01100011110 poof 14 -01100011110 Mahabharata 14 -01100011110 Role 14 -01100011110 Handlers 14 -01100011110 Requiem 14 -01100011110 Struggle 14 -01100011110 Lies 14 -01100011110 Nude 14 -01100011110 Fantastic 14 -01100011110 Airplanes 14 -01100011110 Spreads 14 -01100011110 Brain 14 -01100011110 Rises 14 -01100011110 turbas 14 -01100011110 Whiskey 14 -01100011110 Forgotten 14 -01100011110 Devils 14 -01100011110 Dating 14 -01100011110 Bitter 14 -01100011110 Milagro 14 -01100011110 Acts 14 -01100011110 Innocent 15 -01100011110 Clerks 15 -01100011110 Plays 15 -01100011110 Fishermen 15 -01100011110 Weapon 15 -01100011110 Cheap 15 -01100011110 Radar 15 -01100011110 Heroes 15 -01100011110 Request 15 -01100011110 Mood 15 -01100011110 Financiers 15 -01100011110 Destruction 15 -01100011110 Nicky 15 -01100011110 Recruiters 15 -01100011110 Prisons 15 -01100011110 Stability 15 -01100011110 Autumn 15 -01100011110 Shooting 15 -01100011110 Reviews 15 -01100011110 Matewan 15 -01100011110 Attitudes 15 -01100011110 Fights 15 -01100011110 Autobiography 15 -01100011110 Secrecy 15 -01100011110 Airports 15 -01100011110 Adults 15 -01100011110 nomenklatura 15 -01100011110 Scene 15 -01100011110 Utamaro 15 -01100011110 Feelings 15 -01100011110 Fact 15 -01100011110 Pot 15 -01100011110 Intimate 15 -01100011110 Titus 15 -01100011110 Withholding 15 -01100011110 Deals 15 -01100011110 MANAGEMENT 15 -01100011110 Slam 16 -01100011110 Cooperatives 16 -01100011110 Examiners 16 -01100011110 Immigrants 16 -01100011110 Tactics 16 -01100011110 Promise 16 -01100011110 Museums 16 -01100011110 Mortgages 16 -01100011110 Preserve 16 -01100011110 Biography 16 -01100011110 Fragonard 16 -01100011110 Suppliers 16 -01100011110 Tuition 16 -01100011110 Survivors 16 -01100011110 Whoops 16 -01100011110 Wives 16 -01100011110 Soul 16 -01100011110 Exposure 16 -01100011110 Fare 16 -01100011110 Mess 16 -01100011110 Sample 16 -01100011110 Wiseguy 16 -01100011110 Roses 16 -01100011110 Swing 16 -01100011110 Peanuts 16 -01100011110 Privacy 16 -01100011110 Message 16 -01100011110 Opinions 16 -01100011110 Entrepreneurship 16 -01100011110 Delay 16 -01100011110 Maus 16 -01100011110 Consensus 16 -01100011110 SECURITY 16 -01100011110 Enemy 16 -01100011110 Antigone 16 -01100011110 Flashdance 16 -01100011110 Prescription 16 -01100011110 RESEARCHERS 16 -01100011110 Gosh 16 -01100011110 Auctions 16 -01100011110 Offer 16 -01100011110 Chaos 16 -01100011110 Lesson 16 -01100011110 Ahead 16 -01100011110 Turns 16 -01100011110 Modernization 17 -01100011110 Myth 17 -01100011110 Divorce 17 -01100011110 hearsay 17 -01100011110 Volunteers 17 -01100011110 Intellectuals 17 -01100011110 Hooperman 17 -01100011110 Bold 17 -01100011110 cohabitation 17 -01100011110 Founder 17 -01100011110 Checks 17 -01100011110 Item 17 -01100011110 Characters 17 -01100011110 Prisoners 17 -01100011110 AW 17 -01100011110 Trusts 17 -01100011110 Aida 17 -01100011110 Prosperity 17 -01100011110 Guns 17 -01100011110 Surveillance 17 -01100011110 Comment 17 -01100011110 Velvet 17 -01100011110 Suit 17 -01100011110 Attack 17 -01100011110 Scenes 17 -01100011110 MANAGERS 17 -01100011110 Aspirin 17 -01100011110 Gilts 17 -01100011110 Minoxidil 17 -01100011110 Mondo 17 -01100011110 Composers 17 -01100011110 Fever 18 -01100011110 Terrorism 18 -01100011110 Hotline 18 -01100011110 Cocktail 18 -01100011110 Confessions 18 -01100011110 Geography 18 -01100011110 Scholar 18 -01100011110 Diner 18 -01100011110 COSTS 18 -01100011110 Trees 18 -01100011110 Darkness 18 -01100011110 Dragnet 18 -01100011110 Drama 18 -01100011110 Feed 18 -01100011110 Surprise 18 -01100011110 MAKERS 18 -01100011110 Available 18 -01100011110 Paintings 18 -01100011110 Priority 18 -01100011110 Biggest 18 -01100011110 Rebels 18 -01100011110 Bonfire 18 -01100011110 Diplomacy 18 -01100011110 Hunting 18 -01100011110 mens 19 -01100011110 Exhibition 19 -01100011110 Mixed 19 -01100011110 Hunters 19 -01100011110 Views 19 -01100011110 Faces 19 -01100011110 TAXES 19 -01100011110 Vacation 19 -01100011110 Athletes 19 -01100011110 Gambling 19 -01100011110 Libra 19 -01100011110 Tosca 19 -01100011110 Alien 19 -01100011110 Punishment 19 -01100011110 Vremya 19 -01100011110 Gifts 19 -01100011110 Scholars 19 -01100011110 Winds 19 -01100011110 Flip 19 -01100011110 Subsidies 19 -01100011110 Revenge 19 -01100011110 Roads 19 -01100011110 MASH 19 -01100011110 Semiconductors 19 -01100011110 Donors 19 -01100011110 Hat 19 -01100011110 Speech 20 -01100011110 Offices 20 -01100011110 ART 20 -01100011110 Brigade 20 -01100011110 Rugby 20 -01100011110 Sad 20 -01100011110 Literature 20 -01100011110 Gain 20 -01100011110 Least 20 -01100011110 Franchising 20 -01100011110 Moves 20 -01100011110 Racism 20 -01100011110 Judgment 20 -01100011110 Frontline 20 -01100011110 Conspiracy 20 -01100011110 Dancers 20 -01100011110 Humor 20 -01100011110 Directions 20 -01100011110 Tears 20 -01100011110 Fan 20 -01100011110 Status 20 -01100011110 Tex 20 -01100011110 Points 20 -01100011110 Actions 20 -01100011110 Effects 21 -01100011110 MORGAN 21 -01100011110 Shows 21 -01100011110 Lock 21 -01100011110 Alternatives 21 -01100011110 Turandot 21 -01100011110 Transactions 21 -01100011110 Reach 21 -01100011110 Champagne 21 -01100011110 Scandal 21 -01100011110 Dates 21 -01100011110 Friendship 21 -01100011110 Romance 21 -01100011110 CAR 21 -01100011110 Rusalka 21 -01100011110 DAY 21 -01100011110 Babies 21 -01100011110 Trim 21 -01100011110 Clothes 21 -01100011110 Ye 21 -01100011110 Reunion 22 -01100011110 Date 22 -01100011110 Personality 22 -01100011110 Impossible 22 -01100011110 Hearts 22 -01100011110 Mysteries 22 -01100011110 Compliance 22 -01100011110 Switching 22 -01100011110 Marriage 22 -01100011110 Peasants 22 -01100011110 Auditors 22 -01100011110 Escape 22 -01100011110 Secretaries 22 -01100011110 Rivals 22 -01100011110 Partnerships 22 -01100011110 Author 22 -01100011110 Nights 22 -01100011110 Fishing 22 -01100011110 Guides 22 -01100011110 Artist 22 -01100011110 Alone 22 -01100011110 Numbers 22 -01100011110 Mean 22 -01100011110 Neighbors 22 -01100011110 Heads 22 -01100011110 Cleaning 22 -01100011110 Greed 22 -01100011110 Professors 22 -01100011110 Moonstruck 22 -01100011110 Tradition 22 -01100011110 Autos 23 -01100011110 Actress 23 -01100011110 Patience 23 -01100011110 superstation 23 -01100011110 Cholesterol 23 -01100011110 Efficiency 23 -01100011110 Smoke 23 -01100011110 Recession 23 -01100011110 Madness 23 -01100011110 Rating 23 -01100011110 Planes 23 -01100011110 thirtysomething 23 -01100011110 Coverage 23 -01100011110 Vote 23 -01100011110 EXECUTIVES 23 -01100011110 Capitalism 23 -01100011110 Couples 23 -01100011110 Measures 23 -01100011110 Selection 23 -01100011110 Variations 23 -01100011110 Held 23 -01100011110 Bread 23 -01100011110 Twist 23 -01100011110 Verification 23 -01100011110 Crack 23 -01100011110 Butterfly 23 -01100011110 Lessons 23 -01100011110 Whites 23 -01100011110 Timing 23 -01100011110 Dogs 24 -01100011110 Cry 24 -01100011110 Showdown 24 -01100011110 Yogurt 24 -01100011110 Drink 24 -01100011110 Discrimination 24 -01100011110 Pathfinder 24 -01100011110 Images 24 -01100011110 Lot 24 -01100011110 Shot 24 -01100011110 ADS 24 -01100011110 Ghostbusters 24 -01100011110 Amerika 24 -01100011110 BANKS 24 -01100011110 Balance 24 -01100011110 Secrets 24 -01100011110 Diary 24 -01100011110 t 24 -01100011110 OFFICIALS 24 -01100011110 Steps 24 -01100011110 REAL 25 -01100011110 Celebration 25 -01100011110 Agreements 25 -01100011110 Creation 25 -01100011110 Movies 25 -01100011110 Season 25 -01100011110 Kiss 25 -01100011110 Sit 25 -01100011110 Painting 25 -01100011110 Mechanics 25 -01100011110 Luck 25 -01100011110 Garbage 25 -01100011110 Thing 25 -01100011110 WEST 25 -01100011110 Reality 25 -01100011110 Homeowners 25 -01100011110 Gathering 25 -01100011110 Aliens 25 -01100011110 Apartheid 25 -01100011110 Tune 26 -01100011110 Eggs 26 -01100011110 Viva 26 -01100011110 Wear 26 -01100011110 Stress 26 -01100011110 Taxi 26 -01100011110 Cover 26 -01100011110 Tall 26 -01100011110 Terrorist 26 -01100011110 Hunger 26 -01100011110 Cuts 26 -01100011110 Disaster 26 -01100011110 Greatest 26 -01100011110 Cheers 26 -01100011110 Headquarters 26 -01100011110 Programming 26 -01100011110 Them 26 -01100011110 Incentives 26 -01100011110 Controllers 26 -01100011110 Touch 27 -01100011110 Midnight 27 -01100011110 Window 27 -01100011110 Regulations 27 -01100011110 Miners 27 -01100011110 Taste 27 -01100011110 Beat 27 -01100011110 Practice 27 -01100011110 List 27 -01100011110 Bride 27 -01100011110 Fires 27 -01100011110 Innovation 27 -01100011110 Decline 27 -01100011110 i 27 -01100011110 Oedipus 27 -01100011110 Inventory 27 -01100011110 Concert 27 -01100011110 Exercise 27 -01100011110 Sign 27 -01100011110 Hands 27 -01100011110 Ready 28 -01100011110 Straight 28 -01100011110 Hour 28 -01100011110 Irises 28 -01100011110 DON 28 -01100011110 20/20 28 -01100011110 Dollars 28 -01100011110 Deficit 28 -01100011110 Missing 28 -01100011110 Lab 28 -01100011110 Nightmare 28 -01100011110 Poison 28 -01100011110 Incredible 28 -01100011110 Ha 29 -01100011110 Month 29 -01100011110 Manon 29 -01100011110 Words 29 -01100011110 Trilogy 29 -01100011110 Funny 29 -01100011110 Wheels 29 -01100011110 Warning 29 -01100011110 CREDIT 29 -01100011110 Frankenstein 29 -01100011110 Pollution 29 -01100011110 Tales 29 -01100011110 Interview 29 -01100011110 Lunch 29 -01100011110 Advice 30 -01100011110 Crimes 30 -01100011110 Wanted 30 -01100011110 Suits 30 -01100011110 INVESTORS 30 -01100011110 Rally 30 -01100011110 Folks 30 -01100011110 Vehicles 30 -01100011110 Bondholders 30 -01100011110 WE 30 -01100011110 Moments 30 -01100011110 Participation 30 -01100011110 WORKERS 30 -01100011110 Names 31 -01100011110 Survival 31 -01100011110 Problem 31 -01100011110 Lulu 31 -01100011110 PEOPLE 31 -01100011110 Colors 31 -01100011110 Dealing 31 -01100011110 Vacations 31 -01100011110 Macbeth 31 -01100011110 Streets 31 -01100011110 Nurses 31 -01100011110 Religion 31 -01100011110 Walk 31 -01100011110 Strength 32 -01100011110 Mothers 32 -01100011110 Away 32 -01100011110 Corruption 32 -01100011110 Door 32 -01100011110 Birth 32 -01100011110 Elections 32 -01100011110 Glory 32 -01100011110 Dreams 32 -01100011110 Slap 32 -01100011110 ALF 32 -01100011110 Jaws 32 -01100011110 Universities 32 -01100011110 Purple 33 -01100011110 Adoption 33 -01100011110 Own 34 -01100011110 Teaching 34 -01100011110 Songs 34 -01100011110 Opportunities 34 -01100011110 Hair 34 -01100011110 Track 34 -01100011110 Returns 34 -01100011110 Initiatives 34 -01100011110 Magnum 34 -01100011110 Trustees 34 -01100011110 Bravo 35 -01100011110 Fight 35 -01100011110 Reporting 35 -01100011110 Policies 35 -01100011110 Chance 35 -01100011110 Moonlighting 35 -01100011110 Passion 35 -01100011110 Strikes 35 -01100011110 Confidence 35 -01100011110 Score 35 -01100011110 Charge 35 -01100011110 Plants 35 -01100011110 Nonsense 35 -01100011110 Knowledge 36 -01100011110 Railroads 36 -01100011110 Toxic 36 -01100011110 Break 36 -01100011110 Fly 36 -01100011110 Places 37 -01100011110 Ties 37 -01100011110 LAW 37 -01100011110 Alive 38 -01100011110 Journalists 38 -01100011110 Housekeeping 38 -01100011110 Articles 38 -01100011110 Spitz 38 -01100011110 Birds 38 -01100011110 Architecture 38 -01100011110 Debate 38 -01100011110 Portrait 38 -01100011110 Beautiful 39 -01100011110 Chess 39 -01100011110 Auction 39 -01100011110 Fellow 39 -01100011110 Doctor 39 -01100011110 Nutcracker 39 -01100011110 Sanctions 39 -01100011110 Liquidity 39 -01100011110 SALES 39 -01100011110 Dragon 39 -01100011110 Lives 39 -01100011110 MAY 39 -01100011110 Mystery 39 -01100011110 Perestroika 39 -01100011110 Planners 40 -01100011110 Question 40 -01100011110 Wealth 40 -01100011110 Dividend 40 -01100011110 Language 40 -01100011110 Concept 40 -01100011110 Cinderella 41 -01100011110 Consumption 41 -01100011110 Refugees 41 -01100011110 Professionals 41 -01100011110 Bulls 41 -01100011110 Authors 41 -01100011110 Factories 41 -01100011110 Ishtar 42 -01100011110 Editors 42 -01100011110 Months 42 -01100011110 Parties 42 -01100011110 Tops 42 -01100011110 Batman 43 -01100011110 Importers 43 -01100011110 Tiny 43 -01100011110 Stand 43 -01100011110 Supplies 43 -01100011110 Cats 43 -01100011110 Pop 43 -01100011110 Designers 43 -01100011110 Fast 43 -01100011110 Hamlet 44 -01100011110 Restructuring 44 -01100011110 Ideas 44 -01100011110 Violence 44 -01100011110 Intervention 44 -01100011110 Guys 44 -01100011110 Perfect 44 -01100011110 Circulation 44 -01100011110 Values 44 -01100011110 Trend 44 -01100011110 Cat 45 -01100011110 Murder 45 -01100011110 Journey 45 -01100011110 Areas 45 -01100011110 Jeopardy 45 -01100011110 Exporters 45 -01100011110 Giselle 45 -01100011110 Parking 46 -01100011110 Play 46 -01100011110 Visitors 46 -01100011110 Lands 46 -01100011110 Doc 47 -01100011110 Eyes 47 -01100011110 Speed 48 -01100011110 Shoppers 48 -01100011110 Translation 48 -01100011110 Soldiers 48 -01100011110 Communities 49 -01100011110 Enough 49 -01100011110 Surveys 49 -01100011110 Guess 49 -01100011110 Laws 49 -01100011110 Fraud 49 -01100011110 Weekend 50 -01100011110 Entrepreneurs 50 -01100011110 Facts 50 -01100011110 Payment 50 -01100011110 Fat 50 -01100011110 Biosystems 51 -01100011110 Rise 51 -01100011110 Strange 51 -01100011110 Rain 51 -01100011110 Projects 51 -01100011110 Generation 51 -01100011110 Candidates 51 -01100011110 Issue 51 -01100011110 Hoosiers 51 -01100011110 Applications 52 -01100011110 Body 52 -01100011110 Truth 53 -01100011110 Pool 53 -01100011110 UNION 53 -01100011110 Complex 54 -01100011110 Experience 54 -01100011110 Ring 54 -01100011110 Move 54 -01100011110 Pricing 54 -01100011110 Focus 54 -01100011110 Publication 55 -01100011110 Nightline 55 -01100011110 Dirty 55 -01100011110 Roseanne 56 -01100011110 Bills 56 -01100011110 Mind 56 -01100011110 Benefits 57 -01100011110 Victims 57 -01100011110 Concerto 57 -01100011110 Colleges 58 -01100011110 Passengers 58 -01100011110 Ground 58 -01100011110 Happy 59 -01100011110 Horse 59 -01100011110 Houses 59 -01100011110 Regulation 59 -01100011110 Quarter 60 -01100011110 Compensation 60 -01100011110 Sex 60 -01100011110 Meeting 61 -01100011110 Contractors 61 -01100011110 Commissioners 62 -01100011110 E.T. 62 -01100011110 BUSINESS 62 -01100011110 Train 63 -01100011110 Girls 63 -01100011110 Wrong 64 -01100011110 Nice 64 -01100011110 Moon 65 -01100011110 Agencies 65 -01100011110 Privatization 65 -01100011110 Decisions 66 -01100011110 Broadcasters 66 -01100011110 Officers 67 -01100011110 Stories 68 -01100011110 J 68 -01100011110 ... 69 -01100011110 Smoking 70 -01100011110 Drawing 71 -01100011110 Victory 73 -01100011110 Rental 73 -01100011110 Agents 73 -01100011110 Schools 73 -01100011110 Really 74 -01100011110 Married 74 -01100011110 Dream 74 -01100011110 Loans 75 -01100011110 Seasons 75 -01100011110 Events 75 -01100011110 Passage 75 -01100011110 N 77 -01100011110 Angels 77 -01100011110 Testing 77 -01100011110 YOU 80 -01100011110 Taxes 80 -01100011110 Willow 83 -01100011110 Performance 84 -01100011110 Note 85 -01100011110 Dead 85 -01100011110 Glasnost 86 -01100011110 Programs 86 -01100011110 Return 86 -01100011110 Legislation 86 -01100011110 Courts 88 -01100011110 Players 88 -01100011110 Beauty 89 -01100011110 Wave 89 -01100011110 Investing 90 -01100011110 Eye 90 -01100011110 Tour 91 -01100011110 Letters 92 -01100011110 Risk 92 -01100011110 Patients 92 -01100011110 Families 93 -01100011110 Anybody 94 -01100011110 Dear 95 -01100011110 Blacks 95 -01100011110 Stars 98 -01100011110 Girl 98 -01100011110 Dynasty 99 -01100011110 Win 99 -01100011110 Problems 102 -01100011110 Businesses 103 -01100011110 Notes 104 -01100011110 Parents 108 -01100011110 Opinion 109 -01100011110 Change 110 -01100011110 Edge 113 -01100011110 Jazz 114 -01100011110 Carriers 115 -01100011110 Physicians 116 -01100011110 Costs 116 -01100011110 Test 118 -01100011110 Death 120 -01100011110 Tonight 120 -01100011110 Living 121 -01100011110 Taxpayers 121 -01100011110 Room 122 -01100011110 Advertisers 123 -01100011110 Judges 124 -01100011110 Me 126 -01100011110 Success 126 -01100011110 Coming 127 -01100011110 Standing 128 -01100011110 Drugs 129 -01100011110 Platoon 131 -01100011110 Crime 131 -01100011110 Hours 132 -01100011110 Hospitals 133 -01100011110 Parts 133 -01100011110 Born 133 -01100011110 Rambo 138 -01100011110 Corporations 139 -01100011110 Watch 146 -01100011110 Manager 147 -01100011110 Accountants 151 -01100011110 Debt 152 -01100011110 Support 154 -01100011110 Firms 155 -01100011110 Politics 161 -01100011110 Engineers 161 -01100011110 Producers 166 -01100011110 Unions 168 -01100011110 Issues 184 -01100011110 Buyers 185 -01100011110 Go 185 -01100011110 Portfolio 186 -01100011110 Competition 186 -01100011110 Kids 192 -01100011110 Customers 197 -01100011110 Employers 202 -01100011110 Years 205 -01100011110 Students 206 -01100011110 Managers 211 -01100011110 History 216 -01100011110 Work 217 -01100011110 Funds 226 -01100011110 Typical 245 -01100011110 Computers 246 -01100011110 Consultants 248 -01100011110 Working 262 -01100011110 Us 294 -01100011110 Men 312 -01100011110 Look 321 -01100011110 R 334 -01100011110 Reports 418 -01100011110 Children 438 -01100011110 Employees 439 -01100011110 Real 586 -01100011110 Women 587 -01100011110 Right 632 -01100011110 Consumers 705 -01100011110 Interest 712 -01100011110 Companies 903 -01100011110 Money 932 -01100011110 Banks 1181 -01100011110 Workers 1398 -01100011110 Investors 3319 -01100011110 People 3621 -01100011111 Molinar 1 -01100011111 Requires 1 -01100011111 Baudoin 1 -01100011111 Pacepa 1 -01100011111 Two-Shoes 1 -01100011111 Aniello 1 -01100011111 Ruocheng 1 -01100011111 Aisin-Gioro 1 -01100011111 49/28 1 -01100011111 Guardiano 1 -01100011111 Coie 1 -01100011111 McLuhan 1 -01100011111 Hartke 1 -01100011111 Narcissist 1 -01100011111 Brisko 1 -01100011111 Delfino 1 -01100011111 Ranen 1 -01100011111 Zinchuk 1 -01100011111 McCoskey 1 -01100011111 Berrondo 1 -01100011111 Olmedo 1 -01100011111 Aries/600 1 -01100011111 Jum 1 -01100011111 Feo 1 -01100011111 defoliants 1 -01100011111 Coq 1 -01100011111 Fraiche 1 -01100011111 Gamlen 1 -01100011111 Schuyt 1 -01100011111 Northwest-based 1 -01100011111 Assortment 1 -01100011111 Bjoerk 1 -01100011111 Okeson 1 -01100011111 Meo 1 -01100011111 Osegueda 1 -01100011111 Haberdashers 1 -01100011111 Island-type 1 -01100011111 Metropolitans 1 -01100011111 Fajerson 1 -01100011111 Hingson 1 -01100011111 Ermy 1 -01100011111 Siporin 1 -01100011111 Schoof 1 -01100011111 Gardeur 1 -01100011111 Nesses 1 -01100011111 Brigdale 1 -01100011111 Olins 1 -01100011111 Bauw 1 -01100011111 Malespin 1 -01100011111 Brodfeld 1 -01100011111 Omni-Plymouth 1 -01100011111 Mesones 1 -01100011111 Cisnero 1 -01100011111 12:13-21 1 -01100011111 Tak-Ching 1 -01100011111 Maccanico 1 -01100011111 Cleireachain 1 -01100011111 Ellender 1 -01100011111 Colom 1 -01100011111 Rubinsohn 1 -01100011111 solid-rocket-motor 1 -01100011111 Shiffrer 1 -01100011111 Montresor 1 -01100011111 businessman-developer 1 -01100011111 Reinicke 1 -01100011111 Werkzeugmaschinen 1 -01100011111 Potentializer 1 -01100011111 Fulscher 1 -01100011111 Holzhausen 1 -01100011111 Mackta 1 -01100011111 harpies 1 -01100011111 Ordinances 1 -01100011111 Symphoniques 1 -01100011111 Betanco 1 -01100011111 Ybarra-Rojas 1 -01100011111 Shocker 1 -01100011111 Hye 1 -01100011111 Mayoka 1 -01100011111 Buick-Nissan 1 -01100011111 Malmaison 1 -01100011111 Soon-Hak 1 -01100011111 family-shoe 1 -01100011111 Entertaiment 1 -01100011111 Gaylinn 1 -01100011111 Yiu 1 -01100011111 Na-yuet 1 -01100011111 Muzhi 1 -01100011111 Enzensberger 1 -01100011111 Munchausen 1 -01100011111 Alspaugh 1 -01100011111 chit-chats 1 -01100011111 Brasloff 1 -01100011111 Rifai 1 -01100011111 Mengzhen 1 -01100011111 Gasparian 1 -01100011111 Hiorns 1 -01100011111 Group/CNI 1 -01100011111 Huneycutt 1 -01100011111 Olympus. 1 -01100011111 dan 1 -01100011111 Gwarzo 1 -01100011111 Esham 1 -01100011111 Funian 1 -01100011111 Avino 1 -01100011111 Locales 1 -01100011111 Bosquet 1 -01100011111 malt-based 1 -01100011111 ibn 1 -01100011111 goblets 1 -01100011111 Thrower 1 -01100011111 Coultre 1 -01100011111 Thuilleaux 1 -01100011111 Veillard 1 -01100011111 sculptor-in-residence 1 -01100011111 Pitzer 1 -01100011111 Faut 1 -01100011111 Giubba 1 -01100011111 Hapo 1 -01100011111 Wooton 1 -01100011111 Cristos 1 -01100011111 Hin 1 -01100011111 Macayo 1 -01100011111 Bartleth 1 -01100011111 Bingshan 1 -01100011111 Chunhe 1 -01100011111 champion. 1 -01100011111 Ruoshui 1 -01100011111 Xianyang 1 -01100011111 Maggiore 1 -01100011111 Yungong 1 -01100011111 Nakache 1 -01100011111 Holliger 1 -01100011111 Edey 1 -01100011111 Layun 1 -01100011111 Alnafisi 1 -01100011111 Lewenthal 1 -01100011111 Benedettis 1 -01100011111 Carloses 1 -01100011111 Barbatalli 1 -01100011111 Blois 1 -01100011111 Callam 1 -01100011111 Goudonov 1 -01100011111 Skalbania 1 -01100011111 Doo-Young 1 -01100011111 LaSabre 1 -01100011111 Mazzoli 1 -01100011111 Han-yol 1 -01100011111 Kottman 1 -01100011111 Ex-Officer 1 -01100011111 Rentas 1 -01100011111 lefts 1 -01100011111 Virsaladze 1 -01100011111 Whiplash 1 -01100011111 Kibler 1 -01100011111 Un-Suh 1 -01100011111 Lix 1 -01100011111 controlee 1 -01100011111 Chengguang 1 -01100011111 Jinshan 1 -01100011111 Jianfeng 1 -01100011111 Hailin 1 -01100011111 Villes 1 -01100011111 Werbellin 1 -01100011111 al-Maktoum 1 -01100011111 Warr 1 -01100011111 Univers 1 -01100011111 Jacquillat 1 -01100011111 Huiping 1 -01100011111 Zhihui 1 -01100011111 Pickerell 1 -01100011111 Inserts 1 -01100011111 Sang-Soo 1 -01100011111 Moshensky 1 -01100011111 Kathwari 1 -01100011111 barbecue-rib 1 -01100011111 14a-3 1 -01100011111 Xingqing 1 -01100011111 Hollenstein 1 -01100011111 moonlanding 1 -01100011111 Mingzhi 1 -01100011111 Zhenghua 1 -01100011111 Geeski 1 -01100011111 V.M.D. 1 -01100011111 Barrette 1 -01100011111 Hillsgrove 1 -01100011111 Schavrien 1 -01100011111 Salvan 1 -01100011111 Watermaster 1 -01100011111 Luzar 1 -01100011111 General-affiliated 1 -01100011111 Barbas 1 -01100011111 Futian 1 -01100011111 Dunsong 1 -01100011111 Hondt 1 -01100011111 MacRury 1 -01100011111 Diekoetter 1 -01100011111 Yelland 1 -01100011111 Reiman 1 -01100011111 Chung-Hoon 1 -01100011111 YongJa 1 -01100011111 Charrington 1 -01100011111 Kuang-chien 1 -01100011111 Yu-ching 1 -01100011111 Hills-style 1 -01100011111 Tourhotel 1 -01100011111 Grau 1 -01100011111 Toque 1 -01100011111 Carvajal 1 -01100011111 Tulasne 1 -01100011111 Gorre 1 -01100011111 Muehlmann 1 -01100011111 sheepdogs 1 -01100011111 Misaka 1 -01100011111 Sepio 1 -01100011111 Dornfeld 1 -01100011111 Grosche 1 -01100011111 16/29a 1 -01100011111 Hiriart-Balderrama 1 -01100011111 Delcambre 1 -01100011111 Waialeale 1 -01100011111 Bettleheim 1 -01100011111 dreamland 1 -01100011111 Pahilga 1 -01100011111 Sanchis 1 -01100011111 Kwae 1 -01100011111 Mansdorf 1 -01100011111 Kernel 1 -01100011111 Weitsen 1 -01100011111 Vorkin 1 -01100011111 Stonesifer 1 -01100011111 Jennett 1 -01100011111 Hoodbhoy 1 -01100011111 Gasces 1 -01100011111 Marmolejo 1 -01100011111 Santeiro 1 -01100011111 istry 1 -01100011111 Stats 1 -01100011111 Commmunication 1 -01100011111 Gainey 1 -01100011111 City-owned 1 -01100011111 cake-mix 1 -01100011111 Marroquin 1 -01100011111 Weese 1 -01100011111 Senfleben 1 -01100011111 Plesser 1 -01100011111 Bong-Hwan 1 -01100011111 Shortwave 1 -01100011111 Adabachian 1 -01100011111 offfice 1 -01100011111 Shwarma 1 -01100011111 Tableaux 1 -01100011111 Tomasini 1 -01100011111 Milde 1 -01100011111 Kirchhausen 1 -01100011111 Jabalera 1 -01100011111 boue 1 -01100011111 Abdul-Hadi 1 -01100011111 Samadikun 1 -01100011111 methode 1 -01100011111 Jingkun 1 -01100011111 Mpanda 1 -01100011111 Harnoncourt 1 -01100011111 Llona 1 -01100011111 Lianfu 1 -01100011111 Shangyu 1 -01100011111 Forssman 1 -01100011111 Wallensky 1 -01100011111 depute 1 -01100011111 Acquarone 1 -01100011111 Imel 1 -01100011111 Schisgal 1 -01100011111 Zenghai 1 -01100011111 In-jaw 1 -01100011111 Riveira 1 -01100011111 Pergolesi 1 -01100011111 Stomper 1 -01100011111 Bunshaft 1 -01100011111 Frederici 1 -01100011111 Salolainen 1 -01100011111 400s 1 -01100011111 Aviner 1 -01100011111 Rayford 1 -01100011111 Goerner 1 -01100011111 Zhaoguo 1 -01100011111 Pinqing 1 -01100011111 Dembsky 1 -01100011111 McAdory 1 -01100011111 Ferror 1 -01100011111 Saldanha 1 -01100011111 Botica 1 -01100011111 Buescher 1 -01100011111 Froelen 1 -01100011111 Jacmel 1 -01100011111 Germucio 1 -01100011111 Sieben 1 -01100011111 pertness 1 -01100011111 Reehling 1 -01100011111 Stegner 1 -01100011111 Sueur 1 -01100011111 Lagrave 1 -01100011111 guyed 1 -01100011111 Pignatelli 1 -01100011111 Memon 1 -01100011111 Woebegon 1 -01100011111 Tremaine 1 -01100011111 Youngkook 1 -01100011111 Musket 1 -01100011111 Javanalikikorn 1 -01100011111 Lemnitzer 1 -01100011111 &McMeel 1 -01100011111 Megalon 1 -01100011111 Hampers 1 -01100011111 bookbag 1 -01100011111 Tub 1 -01100011111 rockfish 1 -01100011111 AmeriSuite 1 -01100011111 Poidevin 1 -01100011111 Guiyi 1 -01100011111 Benhao 1 -01100011111 al-Masri 1 -01100011111 Piatti 1 -01100011111 Flassbeck 1 -01100011111 Heisenberg 1 -01100011111 amnestia 1 -01100011111 Merceron 1 -01100011111 Kotite 1 -01100011111 Hillhouse 1 -01100011111 Zednick 1 -01100011111 Brinckerhoff 1 -01100011111 Ninghsiang 1 -01100011111 Ratowsky 1 -01100011111 Petracchi 1 -01100011111 Sperlazza 1 -01100011111 nuclear-free-zone 1 -01100011111 Thanesvorakul 1 -01100011111 Droit 1 -01100011111 O.H.L. 1 -01100011111 Maull 1 -01100011111 Favorita 1 -01100011111 Trulzsch 1 -01100011111 Varia 1 -01100011111 Pokem 1 -01100011111 Cakobau 1 -01100011111 Huabiao 1 -01100011111 Cinematographiques 1 -01100011111 andirons 1 -01100011111 Washabaugh 1 -01100011111 chispa 1 -01100011111 Nardinelli 1 -01100011111 Jong-shong 1 -01100011111 ville 1 -01100011111 batallions 1 -01100011111 airborne-warning-and-control-system 1 -01100011111 Kontecki 1 -01100011111 Niessen 1 -01100011111 Woroniak 1 -01100011111 County-based 1 -01100011111 Schrumpf 1 -01100011111 Shaogang 1 -01100011111 Guangdi 1 -01100011111 Ruiyong 1 -01100011111 Belges 1 -01100011111 Houze 1 -01100011111 Dekker 1 -01100011111 Jie 1 -01100011111 Hamblin 1 -01100011111 Cruso 1 -01100011111 Ringle 1 -01100011111 Andrzejewski 1 -01100011111 Jiafan 1 -01100011111 Hiajun 1 -01100011111 Kaicheng 1 -01100011111 Lamkin 1 -01100011111 Colada 1 -01100011111 Erchia 1 -01100011111 Dixin 1 -01100011111 Baader 1 -01100011111 Tittel 1 -01100011111 Brunetti 1 -01100011111 Isbell 1 -01100011111 Nios 1 -01100011111 Filipopoulos 1 -01100011111 Velta 1 -01100011111 Abbes 1 -01100011111 Fleecer 1 -01100011111 T-1000s 1 -01100011111 Bay-based 1 -01100011111 Saijwar 1 -01100011111 Delang 1 -01100011111 Valley-based 1 -01100011111 Ken-Suk 1 -01100011111 Alliance. 1 -01100011111 Springs-area 1 -01100011111 Metabolism 1 -01100011111 Roston 1 -01100011111 Solidaridad 1 -01100011111 Schulfer 1 -01100011111 Tausz 1 -01100011111 Sanz 1 -01100011111 TRAVAUX 1 -01100011111 Tingcheng 1 -01100011111 Bitensky 1 -01100011111 Zarate 1 -01100011111 colorliner 1 -01100011111 Backenroth 1 -01100011111 Liposomes 1 -01100011111 Clinic/Deaconess 1 -01100011111 Kornik 1 -01100011111 Progress-Times 1 -01100011111 Gaters 1 -01100011111 Pavlovsky 1 -01100011111 Tseung 1 -01100011111 Comenius 1 -01100011111 Siwoff 1 -01100011111 Sonderling 1 -01100011111 Sannino 1 -01100011111 TV-retailer 1 -01100011111 Callaghans 1 -01100011111 Lebens-Versicherungs-Gesellschaft 1 -01100011111 well-patterned 1 -01100011111 Babakian 1 -01100011111 Klaw 1 -01100011111 Trashmore 1 -01100011111 Vieillard 1 -01100011111 Pincher 1 -01100011111 Kisor 1 -01100011111 Kezhong 1 -01100011111 Hengyuan 1 -01100011111 Guifeng 1 -01100011111 Skrowaczewski 1 -01100011111 Toffee 1 -01100011111 Ravino 1 -01100011111 Kociolak 1 -01100011111 offre 1 -01100011111 prefectures 1 -01100011111 Buick-Subaru 1 -01100011111 Gartenberg 1 -01100011111 Sanctis 1 -01100011111 Refai 1 -01100011111 Forquer 1 -01100011111 Merican 1 -01100011111 Speel 1 -01100011111 Pegaso 1 -01100011111 Reiswig 1 -01100011111 Perahia 1 -01100011111 Estorino 1 -01100011111 madrugada 1 -01100011111 Changfa 1 -01100011111 Quanzuo 1 -01100011111 Xiuhua 1 -01100011111 Prato 1 -01100011111 Gestermann 1 -01100011111 Parasiuk 1 -01100011111 Bachelder 1 -01100011111 Zhaoruo 1 -01100011111 Twer 1 -01100011111 Neathercoat 1 -01100011111 Mtwa 1 -01100011111 Sopkin 1 -01100011111 cerveza 1 -01100011111 Elbel 1 -01100011111 Falls-based 1 -01100011111 Terrier 1 -01100011111 Schonebeck 1 -01100011111 Ita-liano 1 -01100011111 Zunino 1 -01100011111 Zarling 1 -01100011111 Odham 1 -01100011111 Tahoe-area 1 -01100011111 Watterson 1 -01100011111 Choreographers 1 -01100011111 Mo-ping 1 -01100011111 Sejong 1 -01100011111 Chishti 1 -01100011111 XXV 1 -01100011111 Faggioli 1 -01100011111 Metallurgic 1 -01100011111 Watershed 1 -01100011111 Loftin 1 -01100011111 Pagnell 1 -01100011111 Skyhawk-Oldsmobile 1 -01100011111 executivies 1 -01100011111 Branard 1 -01100011111 Hoggart 1 -01100011111 Bortell 1 -01100011111 Lombarda 1 -01100011111 Tafoya 1 -01100011111 Parascenzo 1 -01100011111 Sowerwine 1 -01100011111 Concheiro 1 -01100011111 Sophonpanich 1 -01100011111 albicans 1 -01100011111 Boccanegra 1 -01100011111 Crame 1 -01100011111 Wadlington 1 -01100011111 Dioxide 1 -01100011111 Cuisines 1 -01100011111 Allessio 1 -01100011111 Artagnan 1 -01100011111 Chienshien 1 -01100011111 Church-connected 1 -01100011111 Leisler 1 -01100011111 Masotti 1 -01100011111 EAUX 1 -01100011111 Quickset 1 -01100011111 Travelair 1 -01100011111 Pichon 1 -01100011111 Topridge 1 -01100011111 Kora 1 -01100011111 Teichert 1 -01100011111 Frisby 1 -01100011111 Cumaraswamy 1 -01100011111 tirania 1 -01100011111 Oller 1 -01100011111 Savoye 1 -01100011111 Jenney 1 -01100011111 Antonelliana 1 -01100011111 Fith 1 -01100011111 Jarrousse 1 -01100011111 Rife 1 -01100011111 Jiaheng 1 -01100011111 Dipper 1 -01100011111 Albums 1 -01100011111 Vantrease 1 -01100011111 Songfeng 1 -01100011111 Etsu 1 -01100011111 Mavag 1 -01100011111 Ellstein 1 -01100011111 vieille 1 -01100011111 McKinon 1 -01100011111 Xin 1 -01100011111 Yidong 1 -01100011111 Bustillo 1 -01100011111 Kruh 1 -01100011111 Gowanus 1 -01100011111 Kinsmen 1 -01100011111 Metallurgie 1 -01100011111 Soiman 1 -01100011111 Faolain 1 -01100011111 Jiashan 1 -01100011111 Sereno 1 -01100011111 Byung-mun 1 -01100011111 Suayluk 1 -01100011111 Cantey 1 -01100011111 Mercantils 1 -01100011111 Interpreted 1 -01100011111 D1-W 1 -01100011111 Gentil 1 -01100011111 Hinman 1 -01100011111 Hermansen 1 -01100011111 Soenksen 1 -01100011111 Fadiman 1 -01100011111 Locle 1 -01100011111 Maconochie 1 -01100011111 Creason 1 -01100011111 Houzi 1 -01100011111 Treadmills 1 -01100011111 Yosnow 1 -01100011111 Bartoletti 1 -01100011111 Unsuh 1 -01100011111 Hong-Kyu 1 -01100011111 LaForce 1 -01100011111 Cinematographique 1 -01100011111 Corriedoa 1 -01100011111 Valance 1 -01100011111 Ctiy 1 -01100011111 Graf/Roper 1 -01100011111 boeuf 1 -01100011111 Defibrator 1 -01100011111 Cong-Chol 1 -01100011111 Arrechea 1 -01100011111 Telegraaf 1 -01100011111 Schulhan 1 -01100011111 Keffee 1 -01100011111 Bakalar 1 -01100011111 Chun-on 1 -01100011111 Bonczek 1 -01100011111 Aboussie 1 -01100011111 Banfi 1 -01100011111 Pergola 1 -01100011111 Pake 1 -01100011111 Bluesberry 1 -01100011111 Picher 1 -01100011111 Whorehouse 1 -01100011111 Leoni 1 -01100011111 Jandl 1 -01100011111 Bobcats 1 -01100011111 Soother 1 -01100011111 Lorientais 1 -01100011111 Tabou 1 -01100011111 Mephisto 1 -01100011111 Parrr-tee 1 -01100011111 Thapa 1 -01100011111 Huegel 1 -01100011111 Bruce-Novoa 1 -01100011111 2000/Sunbird 1 -01100011111 Decaluwe 1 -01100011111 Quainn 1 -01100011111 Dunxun 1 -01100011111 Maskenozha 1 -01100011111 Erdem 1 -01100011111 Gayoso 1 -01100011111 Coffees 1 -01100011111 Cappetta 1 -01100011111 Coghill 1 -01100011111 Philharmoniker 1 -01100011111 Weilin 1 -01100011111 Kejian 1 -01100011111 Illustrations 1 -01100011111 Kumgang 1 -01100011111 Prudente 1 -01100011111 Opico 1 -01100011111 Lawsmiths 1 -01100011111 Softworks 1 -01100011111 Kath 1 -01100011111 star-gazer 1 -01100011111 Steifel 1 -01100011111 Dermatologics 1 -01100011111 Seeker 1 -01100011111 15/17 1 -01100011111 Frayser 1 -01100011111 Vivienda 1 -01100011111 Shaaban 1 -01100011111 Crees 1 -01100011111 Institute. 1 -01100011111 Fty 1 -01100011111 Broadasting 1 -01100011111 testfied 1 -01100011111 Fjelstad 1 -01100011111 Stoutt 1 -01100011111 Stalone 1 -01100011111 Yangles 1 -01100011111 Boccitto 1 -01100011111 Radecic 1 -01100011111 Townsen 1 -01100011111 Spicewood 1 -01100011111 Shaevitz 1 -01100011111 Dudevant 1 -01100011111 Ferrero 1 -01100011111 Pen-jen 1 -01100011111 Marenco 1 -01100011111 Kort 1 -01100011111 Kenley 1 -01100011111 Yuanzhou 1 -01100011111 Gekkos 1 -01100011111 McCanless 1 -01100011111 Solmon 1 -01100011111 surgest 1 -01100011111 Bisceglie 1 -01100011111 Zawia 1 -01100011111 Manesse 1 -01100011111 Yansheng 1 -01100011111 Drigo 1 -01100011111 Arnon 1 -01100011111 Loux 1 -01100011111 Gatherer 1 -01100011111 Munnich 1 -01100011111 Ballenger 1 -01100011111 Strasberg 1 -01100011111 Xiaoman 1 -01100011111 Besins 1 -01100011111 Mohtashami 1 -01100011111 Radziwill 1 -01100011111 Edibel 1 -01100011111 Salom 1 -01100011111 Ferriter 1 -01100011111 Times-Observer 1 -01100011111 48/17B 1 -01100011111 Cincotta 1 -01100011111 Sc.D. 1 -01100011111 Cybulski 1 -01100011111 Brauman 1 -01100011111 Chayet 1 -01100011111 Gongrong 1 -01100011111 Herald-Post 1 -01100011111 al-Faysal 1 -01100011111 Ke 1 -01100011111 Gonclaves 1 -01100011111 Dornelles 1 -01100011111 Benedetti-style 1 -01100011111 Aspenstrom 1 -01100011111 Giacconi 1 -01100011111 Qingyi 1 -01100011111 Stoop 1 -01100011111 Rodes 1 -01100011111 Chavalitcheevin 1 -01100011111 Ahsan 1 -01100011111 Drills 1 -01100011111 Gigante 1 -01100011111 Til 1 -01100011111 Ethic 1 -01100011111 Palacios 1 -01100011111 Kadetts 1 -01100011111 Yearsley 1 -01100011111 Gerbig 1 -01100011111 Stickell 1 -01100011111 Sergeyevich 1 -01100011111 Coimbra 1 -01100011111 Kaltschmitt 1 -01100011111 Widener 1 -01100011111 Ding-yuan 1 -01100011111 Infirmary-Beekman 1 -01100011111 Abello 1 -01100011111 incunabula 1 -01100011111 Cascos 1 -01100011111 Mester 1 -01100011111 DeLauro 1 -01100011111 EQUITAINE 1 -01100011111 Systsov 1 -01100011111 Montesano 1 -01100011111 Republique 1 -01100011111 Folkedal 1 -01100011111 politique 1 -01100011111 Bough 1 -01100011111 Mei-ling 1 -01100011111 Verdy 1 -01100011111 Joscelyn 1 -01100011111 Ya-lit 1 -01100011111 Pulcinella 1 -01100011111 Yao-tung 1 -01100011111 Shaoqi 1 -01100011111 Findling 1 -01100011111 Devleopment 1 -01100011111 Fluffo 1 -01100011111 wiener. 1 -01100011111 re-opens 1 -01100011111 Rempsberger 1 -01100011111 Illanes 1 -01100011111 crispy-chewy 1 -01100011111 Tubers 1 -01100011111 Leaflet 1 -01100011111 Kadett 1 -01100011111 G-U-M 1 -01100011111 Ribar 1 -01100011111 Palmeiro 1 -01100011111 Toevs 1 -01100011111 Massagli 1 -01100011111 paper-rich 1 -01100011111 Calvo 1 -01100011111 Galusha 1 -01100011111 Ahmadzadeh 1 -01100011111 Corsaire 1 -01100011111 Zhengzhi 1 -01100011111 Yonggang 1 -01100011111 Eleuteri 1 -01100011111 Auchinclosses 1 -01100011111 Hills. 1 -01100011111 Sviridoff 1 -01100011111 McKissick 1 -01100011111 Miskowski 1 -01100011111 sextets 1 -01100011111 chaudes 1 -01100011111 Mitchman 1 -01100011111 aubuisson 1 -01100011111 Sota 1 -01100011111 Apertura 1 -01100011111 Liebaut 1 -01100011111 Gulden 1 -01100011111 el-Turabi 1 -01100011111 Heins 1 -01100011111 Emberg 1 -01100011111 Zhiwei 1 -01100011111 Rabinovic 1 -01100011111 Glove 1 -01100011111 Lastra 1 -01100011111 Janon 1 -01100011111 Pittner 1 -01100011111 huskily 1 -01100011111 Byrom 1 -01100011111 Petzel 1 -01100011111 Speight 1 -01100011111 Automall 1 -01100011111 Tze 1 -01100011111 Tyrmand 1 -01100011111 Bonnyman 1 -01100011111 Ready-to-Serve 1 -01100011111 Xinqin 1 -01100011111 Gorek 1 -01100011111 Bryantown 1 -01100011111 Fouchardiere 1 -01100011111 Solem 1 -01100011111 plc 1 -01100011111 Simson 1 -01100011111 Akhenaten 1 -01100011111 Khama 1 -01100011111 Cannibals 1 -01100011111 Sable-cars 1 -01100011111 Beame 1 -01100011111 Libre 1 -01100011111 Doul 1 -01100011111 Silin 1 -01100011111 Yaoxian 1 -01100011111 Allemandi 1 -01100011111 Whisk 1 -01100011111 Fechtig 1 -01100011111 Actuel 1 -01100011111 Sotaras 1 -01100011111 Agilipour 1 -01100011111 Tardy 1 -01100011111 Bluffers 1 -01100011111 Keteyian 1 -01100011111 Critzer 1 -01100011111 Hewn 1 -01100011111 Veranda 1 -01100011111 Haleakala 1 -01100011111 Bendettti 1 -01100011111 Oel 1 -01100011111 Homosassa 1 -01100011111 Trellis 1 -01100011111 T1000 1 -01100011111 Supplee 1 -01100011111 Newtons 1 -01100011111 Baykal 1 -01100011111 Winnipesaukee 1 -01100011111 Jingsong 1 -01100011111 Broch 1 -01100011111 Fenger 1 -01100011111 Shichun 1 -01100011111 Pagliai 1 -01100011111 Farrill 1 -01100011111 Tsai-chiao 1 -01100011111 Chambon-sur-Lignon 1 -01100011111 Bonna 1 -01100011111 Yunian 1 -01100011111 Kullers 1 -01100011111 Guoxuan 1 -01100011111 deadline-writing 1 -01100011111 Capital-Times 1 -01100011111 Stucki 1 -01100011111 Concerti 1 -01100011111 Konopacki 1 -01100011111 Laughead 1 -01100011111 Diable 1 -01100011111 Cusine 1 -01100011111 Plavoukas 1 -01100011111 Milgate 1 -01100011111 House/Morrow 1 -01100011111 Kallick 1 -01100011111 Pavillon 1 -01100011111 Ming-chao 1 -01100011111 Janvry 1 -01100011111 Ruml 1 -01100011111 Stepak 1 -01100011111 Namen 1 -01100011111 Weddig 1 -01100011111 Arbery 1 -01100011111 Jearreald 1 -01100011111 pochita 1 -01100011111 patria 1 -01100011111 Kaeckenhoff 1 -01100011111 Xinxin 1 -01100011111 Charpulski 1 -01100011111 brassiness 1 -01100011111 al-Faisal 1 -01100011111 DKNY 1 -01100011111 Corrao 1 -01100011111 Torruella 1 -01100011111 Armement 1 -01100011111 Willingham 1 -01100011111 Cockerell 1 -01100011111 Hanaya 1 -01100011111 Craddick 1 -01100011111 Geylin 1 -01100011111 Hilsberg 1 -01100011111 Galin 1 -01100011111 -47.74 1 -01100011111 Taek 1 -01100011111 Fitzwilliams 1 -01100011111 Corwith 1 -01100011111 Garcia-Delgado 1 -01100011111 Rowbury 1 -01100011111 Ringl 1 -01100011111 Tancred 1 -01100011111 Chayovan 1 -01100011111 Bek 1 -01100011111 Slumbered 1 -01100011111 Tanpinco 1 -01100011111 Buscetta 1 -01100011111 reliables 1 -01100011111 Cosmica 1 -01100011111 mismeasured 1 -01100011111 Tarkeshian 1 -01100011111 Salustri 1 -01100011111 Wishnack 1 -01100011111 Song-sam 1 -01100011111 Shau-kong 1 -01100011111 7-Up/ 1 -01100011111 Epoque 1 -01100011111 Siming 1 -01100011111 Voskanyan 1 -01100011111 City-Columbia 1 -01100011111 ccessfully 1 -01100011111 Guofang 1 -01100011111 Terrazas 1 -01100011111 Bechtolsheim 1 -01100011111 Jung-ja 1 -01100011111 Sun-dae 1 -01100011111 MountainBikes 1 -01100011111 Cracraft 1 -01100011111 Yee-Ah 1 -01100011111 Lebovits 1 -01100011111 Propagating 1 -01100011111 Horniman 1 -01100011111 Damato 1 -01100011111 Pitz 1 -01100011111 Canals 1 -01100011111 Dogoloff 1 -01100011111 Mruquli 1 -01100011111 nuora 1 -01100011111 Steinmann 1 -01100011111 Gellman 1 -01100011111 Igartua 1 -01100011111 Acchioli 1 -01100011111 Doughtery 1 -01100011111 Zucco 1 -01100011111 McWhite 1 -01100011111 al-Zuwawi 1 -01100011111 Tigner 1 -01100011111 Jitney 1 -01100011111 Jong-ku 1 -01100011111 Angemi 1 -01100011111 Shevel 1 -01100011111 Lofton 1 -01100011111 Nucleaires 1 -01100011111 Druyvesteyn 1 -01100011111 Leisten 1 -01100011111 Poschenrieder 1 -01100011111 Percell 1 -01100011111 Liriano 1 -01100011111 Zaichenko 1 -01100011111 two-reelers 1 -01100011111 Drever 1 -01100011111 Near-Term 1 -01100011111 Seca 1 -01100011111 wannabees 1 -01100011111 Lashaway 1 -01100011111 Div 1 -01100011111 Soggiu 1 -01100011111 Evarsito 1 -01100011111 Escalada 1 -01100011111 Pinion 1 -01100011111 Franzoni 1 -01100011111 Trittico 1 -01100011111 Lube-owned 1 -01100011111 Lubes 1 -01100011111 Carrio 1 -01100011111 Plateadas 1 -01100011111 Hern 1 -01100011111 el-Husseini 1 -01100011111 Hombrecher 1 -01100011111 Apostolides 1 -01100011111 Weisenborn 1 -01100011111 11a 1 -01100011111 Tapies 1 -01100011111 Lollar 1 -01100011111 Magots 1 -01100011111 Penabaz 1 -01100011111 Tyner 1 -01100011111 Polisena 1 -01100011111 perseveres 1 -01100011111 Casalino 1 -01100011111 JenMar 1 -01100011111 reconditions 1 -01100011111 Disotell 1 -01100011111 Champignon 1 -01100011111 Kariba 1 -01100011111 Dahloff 1 -01100011111 Llauget 1 -01100011111 Airtel 1 -01100011111 Tamales 1 -01100011111 Mayorga 1 -01100011111 horribilis 1 -01100011111 commercial-fishing 1 -01100011111 Bhumibol 1 -01100011111 City-bound 1 -01100011111 Ndamera 1 -01100011111 Judd-Boston 1 -01100011111 66/U.S. 1 -01100011111 Hopatcong 1 -01100011111 Dweller 1 -01100011111 Brazelton 1 -01100011111 Sunblock 1 -01100011111 Kiggins 1 -01100011111 Duel 1 -01100011111 Enzhao 1 -01100011111 Stemer 1 -01100011111 Hemmelman 1 -01100011111 Guanfu 1 -01100011111 Kuohwa 1 -01100011111 Brownridge 1 -01100011111 initiative. 1 -01100011111 Onston 1 -01100011111 Inderbinen 1 -01100011111 Yili 1 -01100011111 Haben 1 -01100011111 Rutberg 1 -01100011111 Trigano 1 -01100011111 Bencheickh-El-Hossine 1 -01100011111 Fensterstock 1 -01100011111 Zhenliang 1 -01100011111 Incomic 1 -01100011111 Agius 1 -01100011111 Semenchuck 1 -01100011111 Bikkenin 1 -01100011111 Kuo-hua 1 -01100011111 Zuosheng 1 -01100011111 Girders 1 -01100011111 Stiemerling 1 -01100011111 Yien-si 1 -01100011111 Tourster 1 -01100011111 Chongkyu 1 -01100011111 ACQUITAINE 1 -01100011111 Tetterton 1 -01100011111 Giants-Houston 1 -01100011111 Fehrenbach 1 -01100011111 Krasselt 1 -01100011111 Teng-Hui 1 -01100011111 Spoerli 1 -01100011111 Oliefabrik 1 -01100011111 Luckhurst 1 -01100011111 Jeong-Gi 1 -01100011111 Chong-Kyu 1 -01100011111 Sung-Min 1 -01100011111 Harasawa 1 -01100011111 U.S.A./Chicago 1 -01100011111 Helicopter-Textron 1 -01100011111 Koncert 1 -01100011111 Hongru 1 -01100011111 Vanderburgh 1 -01100011111 Facto 1 -01100011111 Trefle 1 -01100011111 Xianzeng 1 -01100011111 legge 1 -01100011111 inganno 1 -01100011111 Bungalow 1 -01100011111 Femina-Udell 1 -01100011111 sendups 1 -01100011111 Qingye 1 -01100011111 bombinette 1 -01100011111 Villamil 1 -01100011111 26-12 1 -01100011111 Kuo-ming 1 -01100011111 Kai-yin 1 -01100011111 Simmling 1 -01100011111 State-based 1 -01100011111 Timpanogos 1 -01100011111 ever-after 1 -01100011111 Telegraf 1 -01100011111 Och 1 -01100011111 Ceia 1 -01100011111 Banion 1 -01100011111 ComfortCare 1 -01100011111 Sockers 1 -01100011111 Liebfred 1 -01100011111 Chica 1 -01100011111 Hills-Hollywood 1 -01100011111 Syne 2 -01100011111 Petain 2 -01100011111 Planetarium 2 -01100011111 Stever 2 -01100011111 Fick 2 -01100011111 Maazel 2 -01100011111 Tuobin 2 -01100011111 Aguinaldo 2 -01100011111 Saltiel 2 -01100011111 K-3 2 -01100011111 Borsa 2 -01100011111 Fassbinder 2 -01100011111 Guen 2 -01100011111 Avenue-style 2 -01100011111 REDOUTE 2 -01100011111 Leitz 2 -01100011111 Fuchsberg 2 -01100011111 Kye 2 -01100011111 Ogorodnikov 2 -01100011111 Markwardt 2 -01100011111 Moron 2 -01100011111 Heredia 2 -01100011111 T-man 2 -01100011111 Utils 2 -01100011111 Riveria 2 -01100011111 Meggs 2 -01100011111 Lollypop 2 -01100011111 Akida 2 -01100011111 21/20A 2 -01100011111 Vertine 2 -01100011111 Ellett 2 -01100011111 Billheimer 2 -01100011111 Hory 2 -01100011111 Ravioli 2 -01100011111 Scenza 2 -01100011111 Fumagalli 2 -01100011111 Rohmer 2 -01100011111 Tytler 2 -01100011111 Piga 2 -01100011111 Matthies 2 -01100011111 Pfaffenberger 2 -01100011111 Salii 2 -01100011111 Wizards 2 -01100011111 Lamarr 2 -01100011111 Dumaine 2 -01100011111 Poppenberg 2 -01100011111 yi 2 -01100011111 Culbert 2 -01100011111 Tabarro 2 -01100011111 Tussle 2 -01100011111 Barreto 2 -01100011111 Chrysostomos 2 -01100011111 cereal-processing 2 -01100011111 inna 2 -01100011111 Gaska 2 -01100011111 Wareing 2 -01100011111 Sovremennik 2 -01100011111 Creditbanken 2 -01100011111 Junctions 2 -01100011111 Skillet 2 -01100011111 Townsquare 2 -01100011111 Maxivans 2 -01100011111 Pits 2 -01100011111 Simai 2 -01100011111 Shijie 2 -01100011111 Gon 2 -01100011111 Hillbillies 2 -01100011111 Aurelius 2 -01100011111 Soups 2 -01100011111 Ludington 2 -01100011111 Harkey 2 -01100011111 Bersten 2 -01100011111 Navon 2 -01100011111 Teves 2 -01100011111 Giffin 2 -01100011111 Rossoff 2 -01100011111 Banding 2 -01100011111 Jadot 2 -01100011111 McManaway 2 -01100011111 Argenio 2 -01100011111 Leman 2 -01100011111 midfield 2 -01100011111 Intersong 2 -01100011111 Koldunov 2 -01100011111 1421 2 -01100011111 Stokowski 2 -01100011111 Trappers 2 -01100011111 Chapala 2 -01100011111 Geingob 2 -01100011111 LifeSavers 2 -01100011111 Klemperer 2 -01100011111 Brinsky 2 -01100011111 Khalidi 2 -01100011111 Zela 2 -01100011111 Parisien 2 -01100011111 Govil 2 -01100011111 Ciannella 2 -01100011111 Blon 2 -01100011111 Acucar 2 -01100011111 Pharmacuetica 2 -01100011111 Wasendorf 2 -01100011111 Fillmore 2 -01100011111 Tinello 2 -01100011111 Husain 2 -01100011111 Garcin 2 -01100011111 Welby 2 -01100011111 Shweiheh 2 -01100011111 Urshel 2 -01100011111 Waltzes 2 -01100011111 Monnaie 2 -01100011111 Loizeaux 2 -01100011111 Commerciales 2 -01100011111 Bendetti 2 -01100011111 MacManaway 2 -01100011111 Fante 2 -01100011111 Gruben 2 -01100011111 Arion 2 -01100011111 Bodenheim 2 -01100011111 Geeslin 2 -01100011111 Balaro 2 -01100011111 Bening 2 -01100011111 Tsouderos 2 -01100011111 Avaucourt 2 -01100011111 Finamex 2 -01100011111 Futter 2 -01100011111 Volkskrant 2 -01100011111 Borth 2 -01100011111 Gold/Resources 2 -01100011111 Bugatch 2 -01100011111 Sink 2 -01100011111 Luise 2 -01100011111 Pittard 2 -01100011111 Jerkunica 2 -01100011111 Waterfall 2 -01100011111 Queux 2 -01100011111 Sampler 2 -01100011111 Apasco 2 -01100011111 Homeshield 2 -01100011111 Athos 2 -01100011111 Mazzilli 2 -01100011111 XVIII 2 -01100011111 Mans 2 -01100011111 Screven 2 -01100011111 Jara 2 -01100011111 Padwo 2 -01100011111 Isquith 2 -01100011111 Giornale 2 -01100011111 Werdyger 2 -01100011111 Manh 2 -01100011111 Cossotto 2 -01100011111 Kaden 2 -01100011111 Plavoukos 2 -01100011111 Poblete 2 -01100011111 Horeb 2 -01100011111 Ratteray 2 -01100011111 Lianping 2 -01100011111 Regier 2 -01100011111 MacNeill 2 -01100011111 Maracaibo 2 -01100011111 Bruggeling 2 -01100011111 Jofre 2 -01100011111 Immenga 2 -01100011111 NAPLES 2 -01100011111 Mellio 2 -01100011111 Ribalta 2 -01100011111 Charlupski 2 -01100011111 Borgne 2 -01100011111 Staat 2 -01100011111 Goward 2 -01100011111 Zensius 2 -01100011111 Vedra 2 -01100011111 Gillenwater 2 -01100011111 Qichen 2 -01100011111 Aloia 2 -01100011111 Tsou 2 -01100011111 Marlieb 2 -01100011111 Rydge 2 -01100011111 Nazur 2 -01100011111 Kalleen 2 -01100011111 Milquetoast 2 -01100011111 McLane 2 -01100011111 Pottery 2 -01100011111 Stangle 2 -01100011111 Durieux 2 -01100011111 Times/Washington 2 -01100011111 Limpet 2 -01100011111 Garnica 2 -01100011111 Kriwet 2 -01100011111 Manifatturiera 2 -01100011111 Rd. 2 -01100011111 Neece 2 -01100011111 Tres 2 -01100011111 Koutoulakos 2 -01100011111 Canute 2 -01100011111 Strachey 2 -01100011111 Neills 2 -01100011111 Arvisenet 2 -01100011111 Febvre 2 -01100011111 Chuangzhi 2 -01100011111 Bani 2 -01100011111 Croonen 2 -01100011111 Bertea 2 -01100011111 Kardon 2 -01100011111 Borchert 2 -01100011111 Iungerich 2 -01100011111 Sotirelis 2 -01100011111 Nicolesco 2 -01100011111 Kasper-Ansermet 2 -01100011111 Walthall 2 -01100011111 Prynne 2 -01100011111 Zhai 2 -01100011111 Construzion 2 -01100011111 Norins 2 -01100011111 Roulin 2 -01100011111 Michelis 2 -01100011111 Wadman 2 -01100011111 Pachecho 2 -01100011111 Morganroth 2 -01100011111 Cordray 2 -01100011111 Quisenberry 2 -01100011111 Roquette 2 -01100011111 Mohs 2 -01100011111 Chomsky 2 -01100011111 Tarkington 2 -01100011111 Villez 2 -01100011111 Dandonneau 2 -01100011111 Kaemmer 2 -01100011111 Silverthorne 2 -01100011111 Bumbry 2 -01100011111 Musawi 2 -01100011111 Reattas 2 -01100011111 Pair 2 -01100011111 Wagman 2 -01100011111 Est 2 -01100011111 Matkari 2 -01100011111 Shilin 2 -01100011111 Jardin 2 -01100011111 Kupferman 2 -01100011111 Jandel 2 -01100011111 Balian 2 -01100011111 Cartons 2 -01100011111 Negretti 2 -01100011111 Konover 2 -01100011111 Jueren 2 -01100011111 Arlt 2 -01100011111 Mortel 2 -01100011111 ALENE 2 -01100011111 Dehesa 2 -01100011111 Duffryn 2 -01100011111 Kultury 2 -01100011111 Danz 2 -01100011111 Chalandon 2 -01100011111 Lazenby 2 -01100011111 Maly 2 -01100011111 Monarchs 2 -01100011111 Brandao 2 -01100011111 Ambrosia 2 -01100011111 City-Philadelphia 2 -01100011111 Lusby 2 -01100011111 Dams 2 -01100011111 Fluetsch 2 -01100011111 Carigali 2 -01100011111 Vergara 2 -01100011111 Sofie 2 -01100011111 Weasels 2 -01100011111 russe 2 -01100011111 Lymburner 2 -01100011111 Titicaca 2 -01100011111 Haussler 2 -01100011111 Tricon 2 -01100011111 Aquifer 2 -01100011111 LeMers 2 -01100011111 Heung 2 -01100011111 Lips 2 -01100011111 Bonanome 2 -01100011111 Giovanelli 2 -01100011111 Shelepin 2 -01100011111 Pavao 2 -01100011111 Erhart 2 -01100011111 Fadely 2 -01100011111 STEs 2 -01100011111 Challet 2 -01100011111 Luigs 2 -01100011111 Kadrich 2 -01100011111 Mei 2 -01100011111 Haeng 2 -01100011111 Constabulary 2 -01100011111 Rechnitz 2 -01100011111 Freeways 2 -01100011111 Amiante 2 -01100011111 Fluggesellschaft 2 -01100011111 Handwerker 2 -01100011111 Doria 2 -01100011111 Borrie 2 -01100011111 Diuguid 2 -01100011111 al-Nowais 2 -01100011111 Ardabili 2 -01100011111 Flore 2 -01100011111 Lilo 2 -01100011111 Karaklajic 2 -01100011111 Holme 2 -01100011111 Oldies 2 -01100011111 Runyan 2 -01100011111 Shivers 3 -01100011111 Praver 3 -01100011111 Nath 3 -01100011111 Wiesenthal 3 -01100011111 Ricupero 3 -01100011111 Corelli 3 -01100011111 Hitam 3 -01100011111 Tohmatsu 3 -01100011111 Vollenweider 3 -01100011111 Feininger 3 -01100011111 Innocenzo 3 -01100011111 Cerf 3 -01100011111 Byfield 3 -01100011111 Ning-hsiang 3 -01100011111 Cacheris 3 -01100011111 Grandes 3 -01100011111 Batty 3 -01100011111 14e-3 3 -01100011111 Hergenhan 3 -01100011111 Medberry 3 -01100011111 Gagliardini 3 -01100011111 McCaskey 3 -01100011111 Bingqian 3 -01100011111 Xi 3 -01100011111 McKelvie 3 -01100011111 Fourche 3 -01100011111 Jiaqi 3 -01100011111 Haberler 3 -01100011111 Rongji 3 -01100011111 Tokoi 3 -01100011111 Fuente 3 -01100011111 Luxe 3 -01100011111 Appetit 3 -01100011111 Androsch 3 -01100011111 Yon 3 -01100011111 Presidente 3 -01100011111 Mitsotakis 3 -01100011111 Knickerbockers 3 -01100011111 Hasenfeld 3 -01100011111 Maglite 3 -01100011111 Alvira 3 -01100011111 Sofro 3 -01100011111 Steger 3 -01100011111 Soopers 3 -01100011111 odham 3 -01100011111 Macwhinnie 3 -01100011111 Patriarchate 3 -01100011111 Jiatun 3 -01100011111 Hayr 3 -01100011111 Pree 3 -01100011111 Kojima 3 -01100011111 Tsetung 3 -01100011111 Fabius 3 -01100011111 Eychaner 3 -01100011111 Bouton 3 -01100011111 Bettelheim 3 -01100011111 Waehler 3 -01100011111 Cleireacain 3 -01100011111 Lecture 3 -01100011111 Hay-Roe 3 -01100011111 Loboda 3 -01100011111 Wailea 3 -01100011111 Yu-ming 3 -01100011111 Waikoloa 3 -01100011111 Ajr 3 -01100011111 Albano 3 -01100011111 Morote 3 -01100011111 Paulucci 3 -01100011111 Musashi 3 -01100011111 Shiraa 3 -01100011111 Sackville-West 3 -01100011111 City. 3 -01100011111 Olivas 3 -01100011111 10b-5 3 -01100011111 Van-Heusen 3 -01100011111 Gyu 3 -01100011111 Summerstage 3 -01100011111 Shurgin 3 -01100011111 Eichenholtz 3 -01100011111 Vanderwarker 3 -01100011111 Shew 3 -01100011111 Keng 3 -01100011111 Anap 3 -01100011111 Farouk 3 -01100011111 Howeidi 3 -01100011111 Schleifer 3 -01100011111 Statesmen 3 -01100011111 Legree 3 -01100011111 Joo 3 -01100011111 Tranche 3 -01100011111 Alelio 3 -01100011111 Solmssen 3 -01100011111 Claver 3 -01100011111 Tolls 3 -01100011111 Barons 3 -01100011111 Pettingill 3 -01100011111 Sagne 3 -01100011111 Proyect 3 -01100011111 Flug 3 -01100011111 Crackers 3 -01100011111 Chao-ming 3 -01100011111 Meara 3 -01100011111 Calle 3 -01100011111 Servant 3 -01100011111 Ammidon 3 -01100011111 Agefi 3 -01100011111 Saenz 3 -01100011111 Jarpa 3 -01100011111 Alvite 3 -01100011111 Sipe 3 -01100011111 Bainum 3 -01100011111 Archery 3 -01100011111 Meridien 3 -01100011111 Testarossa 3 -01100011111 Distillery 3 -01100011111 Koolers 3 -01100011111 Bewkes 3 -01100011111 Ruffner 3 -01100011111 Godoy 3 -01100011111 Shao-kang 3 -01100011111 Hocke 3 -01100011111 Longridge 3 -01100011111 BRIEN 3 -01100011111 Narayana 3 -01100011111 Strasse 3 -01100011111 Baikal 3 -01100011111 Fixture 3 -01100011111 Sennett 3 -01100011111 Xiaobo 3 -01100011111 Kohrman 3 -01100011111 Carsberg 3 -01100011111 Baunton 3 -01100011111 Remsperger 3 -01100011111 Beirne 3 -01100011111 Katoff 3 -01100011111 Vandenburgh 3 -01100011111 Bowyer 3 -01100011111 Earp 3 -01100011111 Camoes 3 -01100011111 Wolves 3 -01100011111 Goldbeck 3 -01100011111 Altantic 3 -01100011111 Martiniere 3 -01100011111 Poynter 3 -01100011111 Klappa 3 -01100011111 Cantus 3 -01100011111 Ichi 3 -01100011111 Gakuin 3 -01100011111 Grizzard 3 -01100011111 Clic 3 -01100011111 Olinghouse 3 -01100011111 Taferner 3 -01100011111 Borgo 3 -01100011111 Moultrie 3 -01100011111 Warmbrand 3 -01100011111 Renthal 3 -01100011111 Higdon 4 -01100011111 Guelar 4 -01100011111 Diaries 4 -01100011111 Noce 4 -01100011111 Tenghui 4 -01100011111 Berko 4 -01100011111 Tut 4 -01100011111 Velho 4 -01100011111 Crusoe 4 -01100011111 Metaltech 4 -01100011111 Sides 4 -01100011111 Hae 4 -01100011111 Bandshell 4 -01100011111 Springs-based 4 -01100011111 Cecco 4 -01100011111 Glanzer 4 -01100011111 Strommen 4 -01100011111 Bulgares 4 -01100011111 Stampede 4 -01100011111 Tattoo 4 -01100011111 Kupersmith 4 -01100011111 Vlasov 4 -01100011111 Electras 4 -01100011111 Westray 4 -01100011111 Hrbek 4 -01100011111 Arendt 4 -01100011111 Pym 4 -01100011111 Eichmann 4 -01100011111 Zhongji 4 -01100011111 Lani 4 -01100011111 600s 4 -01100011111 Villars 4 -01100011111 Caldas 4 -01100011111 Tuckson 4 -01100011111 Sucker 4 -01100011111 Granik 4 -01100011111 Trichardt 4 -01100011111 Floch-Prigent 4 -01100011111 Rousselle 4 -01100011111 Kirkby 4 -01100011111 Centurys 4 -01100011111 6000s 4 -01100011111 Coroni 4 -01100011111 LaHaye 4 -01100011111 Ya-li 4 -01100011111 Tinsulanonda 4 -01100011111 TSi 4 -01100011111 Menestrel 4 -01100011111 Shwiel 4 -01100011111 Gymnasium 4 -01100011111 Agricoltura 4 -01100011111 CONSTRUCTIONS 4 -01100011111 Bement 4 -01100011111 Caro-Quintero 4 -01100011111 Prange 4 -01100011111 arcy 4 -01100011111 Times/CBS 4 -01100011111 Keach 4 -01100011111 Germanica 4 -01100011111 Schmetterer 4 -01100011111 Boppers 4 -01100011111 Calcio 4 -01100011111 Ruowang 4 -01100011111 Fliakos 4 -01100011111 Hoxie 4 -01100011111 Waldrop 4 -01100011111 Finebaum 4 -01100011111 Risien 4 -01100011111 Burgers 4 -01100011111 Rock-based 4 -01100011111 Scholarships 4 -01100011111 10b-4 4 -01100011111 Pietra 4 -01100011111 economia 4 -01100011111 Sauter 4 -01100011111 XXI 4 -01100011111 Ratjen 4 -01100011111 Ardebili 4 -01100011111 Santis 4 -01100011111 Roett 4 -01100011111 Keepers 4 -01100011111 Linkon 4 -01100011111 Chopper 4 -01100011111 Antics 4 -01100011111 Lasman 4 -01100011111 Tedi 4 -01100011111 Rigsby 4 -01100011111 Medizintechnik 4 -01100011111 Johnson-Morris 4 -01100011111 Grete 4 -01100011111 Walborn 4 -01100011111 Ramcharger 4 -01100011111 Inx 4 -01100011111 Cronyn 4 -01100011111 Bergan 4 -01100011111 Schoenhuber 4 -01100011111 Marsh-Florida 4 -01100011111 1-AB 4 -01100011111 Pon/GGK 4 -01100011111 Cardenal 5 -01100011111 Havre 5 -01100011111 Grinder 5 -01100011111 retrospectives 5 -01100011111 Mittler 5 -01100011111 Otte 5 -01100011111 Maugham 5 -01100011111 Hamlyn 5 -01100011111 Lugosi 5 -01100011111 Regals 5 -01100011111 Dellsy 5 -01100011111 Canard 5 -01100011111 Matthei 5 -01100011111 10B6 5 -01100011111 Thruway 5 -01100011111 Schultheis 5 -01100011111 Mariam 5 -01100011111 Skyhawks 5 -01100011111 Diodati 5 -01100011111 Isola 5 -01100011111 Faison 5 -01100011111 Glade 5 -01100011111 XIII 5 -01100011111 Leafs 5 -01100011111 Prettyman 5 -01100011111 Helper 5 -01100011111 Mithun 5 -01100011111 3b-9 5 -01100011111 Balmer 5 -01100011111 Como 5 -01100011111 Janowitz 5 -01100011111 Muti 5 -01100011111 Broyd 5 -01100011111 Kwinter 5 -01100011111 Atlanticom 5 -01100011111 Reindeer 5 -01100011111 Subways 5 -01100011111 Jaroslovsky 5 -01100011111 Yup 5 -01100011111 Conor 5 -01100011111 Myer 5 -01100011111 Mugavero 5 -01100011111 Alessio 5 -01100011111 Nagano 5 -01100011111 Matin 5 -01100011111 Ning 5 -01100011111 Ferroviaires 5 -01100011111 Delight 5 -01100011111 Beach-based 5 -01100011111 McGillis 5 -01100011111 Candles 5 -01100011111 Racetrack 5 -01100011111 Maradona 5 -01100011111 Barbosa 5 -01100011111 Estenssoro 5 -01100011111 Rubinson 5 -01100011111 Bruemmer 5 -01100011111 Beret 5 -01100011111 Auria 5 -01100011111 Vesuvius 5 -01100011111 Whitehouse 5 -01100011111 Monsters 5 -01100011111 Bogdanich 5 -01100011111 Rivieras 5 -01100011111 Wedgwood 5 -01100011111 Wagoner 5 -01100011111 Bello 5 -01100011111 Fauna 5 -01100011111 Toothpaste 6 -01100011111 Materie 6 -01100011111 USINES 6 -01100011111 Creditbank 6 -01100011111 Koos 6 -01100011111 Tice 6 -01100011111 Bautista 6 -01100011111 Bourget 6 -01100011111 Shade 6 -01100011111 Dragons 6 -01100011111 Jenks 6 -01100011111 Binyan 6 -01100011111 Muenchhausen 6 -01100011111 Domke 6 -01100011111 Salaam 6 -01100011111 Fisch 6 -01100011111 Maza 6 -01100011111 Belair 6 -01100011111 Shaughnessy 6 -01100011111 Sok 6 -01100011111 Shim 6 -01100011111 Santos-Alvite 6 -01100011111 Berets 6 -01100011111 Trailers 6 -01100011111 Patman 6 -01100011111 Eitan 6 -01100011111 En-lai 6 -01100011111 Zemin 6 -01100011111 Loughlin 6 -01100011111 Muenchmeyer 6 -01100011111 Aeriens 6 -01100011111 Daytonas 6 -01100011111 Agrosa 6 -01100011111 Tai 7 -01100011111 Okeechobee 7 -01100011111 Sauce 7 -01100011111 Dolgin 7 -01100011111 Combines 7 -01100011111 Lokey 7 -01100011111 Bondt 7 -01100011111 Talon 7 -01100011111 Aletti 7 -01100011111 Untermeyer 7 -01100011111 Mauna 7 -01100011111 Poarch 7 -01100011111 Cougars 7 -01100011111 PETROLES 7 -01100011111 Weevil 7 -01100011111 Hamner 7 -01100011111 Boudin 7 -01100011111 Shangkun 7 -01100011111 Lynxes 7 -01100011111 Capistrano 7 -01100011111 Courthouse 7 -01100011111 Finanza 7 -01100011111 Polsby 7 -01100011111 Hawn 8 -01100011111 Fong 8 -01100011111 Cirque 8 -01100011111 Puzzo 8 -01100011111 LeSabres 8 -01100011111 Arau 8 -01100011111 Rascals 8 -01100011111 XVI 8 -01100011111 Islander 8 -01100011111 Patons 8 -01100011111 Nang 8 -01100011111 McGaw 8 -01100011111 Slipper 8 -01100011111 Jingsheng 8 -01100011111 Jarryd 8 -01100011111 Lansky 8 -01100011111 Menagerie 8 -01100011111 Sera 8 -01100011111 Stroebel 8 -01100011111 Modigliani 9 -01100011111 Ruhnau 9 -01100011111 Kilimanjaro 9 -01100011111 Woong 9 -01100011111 Rivkind 9 -01100011111 Blossom 9 -01100011111 Dirksen 9 -01100011111 Canosa 9 -01100011111 Grounds 9 -01100011111 Sunbirds 9 -01100011111 Carreras 9 -01100011111 Island-based 9 -01100011111 Pooley 9 -01100011111 Dew 9 -01100011111 Bolivar 9 -01100011111 Biller 9 -01100011111 Escoto 9 -01100011111 Savikas 9 -01100011111 Rielly 9 -01100011111 Chambon 9 -01100011111 Shots 10 -01100011111 Rajaratnam 10 -01100011111 Qing 10 -01100011111 Faso 10 -01100011111 Nouvel 10 -01100011111 Lagoon 10 -01100011111 Chamberlayne 10 -01100011111 MacLellan 10 -01100011111 Dewhurst 10 -01100011111 Crouse 10 -01100011111 Mille 10 -01100011111 Clays 10 -01100011111 Torre 10 -01100011111 Ramo 10 -01100011111 Ayr 10 -01100011111 Romagnolo 10 -01100011111 Situations 10 -01100011111 Jae 10 -01100011111 Kun 10 -01100011111 Viyella 10 -01100011111 Eralp 11 -01100011111 Tanenbaum 11 -01100011111 Inlet 11 -01100011111 AQUITAINE 11 -01100011111 Kuo-hwa 11 -01100011111 Martyre 11 -01100011111 Boulangerie 11 -01100011111 Baudouin 11 -01100011111 Bacall 11 -01100011111 Bonnevilles 11 -01100011111 Breeze 11 -01100011111 Puder 11 -01100011111 Kyu 11 -01100011111 Amico 11 -01100011111 Weidenbaum 11 -01100011111 Menu 11 -01100011111 Bonaventure 11 -01100011111 Koenen 11 -01100011111 ELECTRICITE 11 -01100011111 Santana 11 -01100011111 Reatta 12 -01100011111 Farrakhan 12 -01100011111 Carnevale 12 -01100011111 Cleaver 12 -01100011111 Staebler 12 -01100011111 Gutfeld 12 -01100011111 Gael 12 -01100011111 Dembeck 12 -01100011111 Quain 12 -01100011111 Beavers 12 -01100011111 Loong 12 -01100011111 Canseco 12 -01100011111 Skyhawk 12 -01100011111 Boehlert 12 -01100011111 Mabley 12 -01100011111 Kartasasmita 12 -01100011111 Leg 12 -01100011111 Krispies 12 -01100011111 Duc 12 -01100011111 Tunes 12 -01100011111 Guzman 13 -01100011111 Dubcek 13 -01100011111 Gekko 13 -01100011111 Crosthwaite 13 -01100011111 Prodi 13 -01100011111 Wobegon 13 -01100011111 Merrin 13 -01100011111 Mix 13 -01100011111 Stamps 13 -01100011111 Diff 13 -01100011111 migra 13 -01100011111 Drum 13 -01100011111 Wylie 13 -01100011111 Bernbach 13 -01100011111 Barnum 13 -01100011111 Sa 14 -01100011111 Gestal 14 -01100011111 XIV 14 -01100011111 Bookseller 14 -01100011111 Powerboat 14 -01100011111 Features 14 -01100011111 Laue 14 -01100011111 Haan 14 -01100011111 Astoria 14 -01100011111 Hine 15 -01100011111 Ki 15 -01100011111 Lobby 15 -01100011111 Hollow 15 -01100011111 Airy 15 -01100011111 Huan 15 -01100011111 Marschalk 15 -01100011111 Bershad 15 -01100011111 Millers 16 -01100011111 Distance 16 -01100011111 Zinder 16 -01100011111 Wilhelmsen 16 -01100011111 Botanical 16 -01100011111 Fleece 16 -01100011111 Alessandro 16 -01100011111 Greenshields 16 -01100011111 Niro 16 -01100011111 Chul 16 -01100011111 Islanders 16 -01100011111 Wootton 16 -01100011111 Crimson 16 -01100011111 Grayling 16 -01100011111 Prins 16 -01100011111 Telephoniques 17 -01100011111 Limon 17 -01100011111 Huron 17 -01100011111 Rushmore 17 -01100011111 Firebirds 17 -01100011111 Howard-Spink 17 -01100011111 Bautzer 17 -01100011111 Hills-based 17 -01100011111 Infantry 17 -01100011111 Terrace 17 -01100011111 Oakar 17 -01100011111 Locker 18 -01100011111 Paulsen 18 -01100011111 Smithson 18 -01100011111 Locks 18 -01100011111 Copy 18 -01100011111 Cite 18 -01100011111 Furstenberg 18 -01100011111 Lounge 18 -01100011111 Meidinger 19 -01100011111 Sunbird 19 -01100011111 Navarro 19 -01100011111 Cemetery 19 -01100011111 Milling 19 -01100011111 Mita 19 -01100011111 Puppies 19 -01100011111 Cuisine 20 -01100011111 Clemens 20 -01100011111 Berland 20 -01100011111 Dijker 20 -01100011111 Nam 20 -01100011111 Pollen 20 -01100011111 Pavilion 21 -01100011111 Diplomat 21 -01100011111 Jaya 21 -01100011111 Everest 21 -01100011111 Niguel 21 -01100011111 Teng-hui 21 -01100011111 Screw 21 -01100011111 Corbusier 21 -01100011111 Juice 21 -01100011111 Sur 22 -01100011111 Melveny 22 -01100011111 Sang 22 -01100011111 Interests 22 -01100011111 Bluff 22 -01100011111 Valens 23 -01100011111 Budiman 23 -01100011111 Balsbaugh 23 -01100011111 Trail 23 -01100011111 Matchbox 24 -01100011111 LeMans 24 -01100011111 Opax 24 -01100011111 Meadow 24 -01100011111 LaserSonics 24 -01100011111 Caravan 24 -01100011111 Shoes 24 -01100011111 Skylark 25 -01100011111 Carre 25 -01100011111 Keeffe 25 -01100011111 Solzhenitsyn 25 -01100011111 Pil 25 -01100011111 LeSabre 26 -01100011111 Selassie 26 -01100011111 Tracer 27 -01100011111 Bober 27 -01100011111 Italiano 27 -01100011111 Burrough 28 -01100011111 Chong 28 -01100011111 Lynx 29 -01100011111 Hock 29 -01100011111 Pavarotti 29 -01100011111 Won 29 -01100011111 Sills 29 -01100011111 Figaro 30 -01100011111 Monde 30 -01100011111 Pond 30 -01100011111 Soliday 30 -01100011111 Tuck 31 -01100011111 Redbook 31 -01100011111 McElligott 31 -01100011111 49ers 31 -01100011111 Pfister 31 -01100011111 Bogart 32 -01100011111 Palisades 32 -01100011111 Technicon 33 -01100011111 Firebird 33 -01100011111 Tomaso 33 -01100011111 Aubuisson 34 -01100011111 Highlands 34 -01100011111 Girozentrale 34 -01100011111 Cougar 35 -01100011111 Faber 35 -01100011111 Ballantine 35 -01100011111 Kisco 35 -01100011111 Nuts 36 -01100011111 Tahoe 36 -01100011111 Marckesano 36 -01100011111 Smurfit 37 -01100011111 Folk 37 -01100011111 Udall 38 -01100011111 Honey 38 -01100011111 Lights 38 -01100011111 6000 39 -01100011111 Winery 39 -01100011111 Herrera 39 -01100011111 Downs 39 -01100011111 Navratilova 40 -01100011111 Gables 41 -01100011111 Dea 42 -01100011111 Doherty 42 -01100011111 Clercq 42 -01100011111 G&E 42 -01100011111 Style 45 -01100011111 Parish 46 -01100011111 Hickman 46 -01100011111 Pleasant 46 -01100011111 Weinger 46 -01100011111 VIII 47 -01100011111 Ruchlamer 47 -01100011111 Ferry 47 -01100011111 All-Star 48 -01100011111 Colony 48 -01100011111 Acres 48 -01100011111 Serrano 49 -01100011111 10b-13 49 -01100011111 Agostino 49 -01100011111 Hara 50 -01100011111 Brunswig 50 -01100011111 Tse-tung 50 -01100011111 Keynes 50 -01100011111 Lawn 52 -01100011111 Trails 52 -01100011111 Dunlop 53 -01100011111 Matthey 54 -01100011111 Chi 54 -01100011111 Mifflin 54 -01100011111 Ram 54 -01100011111 Palma 55 -01100011111 Gate 56 -01100011111 Toole 58 -01100011111 Hutchins 58 -01100011111 Garza 58 -01100011111 Alsop 58 -01100011111 Travenol 58 -01100011111 Rourke 59 -01100011111 Judd 60 -01100011111 Aries 61 -01100011111 Shadow 61 -01100011111 Helicopter 64 -01100011111 Selz 70 -01100011111 Rim 73 -01100011111 Schloss 74 -01100011111 Leary 77 -01100011111 Lite 78 -01100011111 Sands 78 -01100011111 Area 79 -01100011111 Stallone 80 -01100011111 Sung 81 -01100011111 Boulevard 82 -01100011111 Fielder 82 -01100011111 Malley 83 -01100011111 Arcy 84 -01100011111 Clinic 85 -01100011111 Ranch 85 -01100011111 Township 86 -01100011111 Challenge 88 -01100011111 Holliday 89 -01100011111 Mackenzie 91 -01100011111 Ave. 93 -01100011111 Tabak 94 -01100011111 Gardens 97 -01100011111 Online 97 -01100011111 Pirie 98 -01100011111 Learjet 98 -01100011111 Leaf 100 -01100011111 Lorean 102 -01100011111 Regal 102 -01100011111 Cliffs 103 -01100011111 Wedd 106 -01100011111 Tree 108 -01100011111 Monthly 120 -01100011111 Knudsen 123 -01100011111 Pen 123 -01100011111 Bunker 125 -01100011111 Start 128 -01100011111 Amato 129 -01100011111 Mandela 129 -01100011111 Boveri 132 -01100011111 Connell 133 -01100011111 Weir 134 -01100011111 Forge 136 -01100011111 Femina 136 -01100011111 Fahd 140 -01100011111 Basin 141 -01100011111 Gear 144 -01100011111 Lube 145 -01100011111 Vuitton 148 -01100011111 City-based 153 -01100011111 Beers 165 -01100011111 Oaks 171 -01100011111 Bridge 174 -01100011111 Studios 186 -01100011111 Chicken 187 -01100011111 Canal 188 -01100011111 Fry 189 -01100011111 Road 191 -01100011111 Canyon 192 -01100011111 Sr. 194 -01100011111 Ridge 208 -01100011111 Hare 225 -01100011111 Heights 228 -01100011111 Wheeler 229 -01100011111 Thornton 230 -01100011111 Brook 232 -01100011111 Sinai 233 -01100011111 View 239 -01100011111 Creek 248 -01100011111 McCormack 261 -01100011111 Gundy 266 -01100011111 Falls 268 -01100011111 Donnell 270 -01100011111 Nugget 276 -01100011111 Harbor 277 -01100011111 Magazine 282 -01100011111 Laurentiis 296 -01100011111 Analytical 304 -01100011111 Brien 306 -01100011111 Waterhouse 312 -01100011111 Springs 320 -01100011111 Islands 322 -01100011111 Hussein 334 -01100011111 Telesis 352 -01100011111 Plaza 398 -01100011111 Madrid 432 -01100011111 Connor 445 -01100011111 Rock 455 -01100011111 Square 543 -01100011111 Treaty 557 -01100011111 Neill 588 -01100011111 Fargo 626 -01100011111 Avenue 664 -01100011111 Benedetti 982 -01100011111 Bay 1025 -01100011111 Beach 1080 -01100011111 River 1267 -01100011111 Hills 1277 -01100011111 Barney 1326 -01100011111 Island 1477 -01100011111 Valley 1548 -01100011111 County 2331 -01100011111 City 7505 -01100011111 Times 2804 -011001000 Pict 1 -011001000 NUMAC 1 -011001000 PICT 1 -011001000 SCRIMGEOUR 1 -011001000 culture-ministry 1 -011001000 779,503 1 -011001000 injury-wracked 1 -011001000 Abubakar 1 -011001000 BethEnergy 1 -011001000 Tongwon 1 -011001000 JN 1 -011001000 Webex 1 -011001000 sportsmanlike 1 -011001000 Cukurova 1 -011001000 NEVADA 1 -011001000 Samling 1 -011001000 Hijau 1 -011001000 Boo-Ker 1 -011001000 E&M 1 -011001000 HARKEN 1 -011001000 Chadwill 1 -011001000 Campa 1 -011001000 JCR 1 -011001000 Trancontinental 1 -011001000 Toppan 1 -011001000 stocks-Standard 1 -011001000 Douglas-British 1 -011001000 KRM 1 -011001000 Kokasai 1 -011001000 RACIAL 1 -011001000 KELLEY 1 -011001000 Choyang 1 -011001000 COMBUSTION 1 -011001000 FITCHBURG 1 -011001000 Tann 1 -011001000 Hoechst-Roussell 1 -011001000 Donice 1 -011001000 Johnsby 1 -011001000 Hippie 1 -011001000 113,100 1 -011001000 PROVIDENCE 1 -011001000 archdiocesan 1 -011001000 ex-Ford 1 -011001000 Mitsubushi 1 -011001000 Hudbay 1 -011001000 Chaz 1 -011001000 Saarberg 1 -011001000 BTA 1 -011001000 Boehringer-Ingelheim 1 -011001000 ALABAMA 1 -011001000 5,528 1 -011001000 said.Yamanouchi 1 -011001000 Economdis 1 -011001000 Glamore 1 -011001000 Tesoro-Alaska 1 -011001000 NON-BUYING 1 -011001000 Nynas 1 -011001000 AGL 1 -011001000 BURMAH 1 -011001000 Goodtime 1 -011001000 PEDAL 1 -011001000 Sigma-Tau 1 -011001000 Nynaes 1 -011001000 then-Saudi 1 -011001000 Harcorn 1 -011001000 R.T.Z. 1 -011001000 Smith-Kline 1 -011001000 Kwaishinsha 1 -011001000 B&N 1 -011001000 Penn-East 1 -011001000 SYRUPY 1 -011001000 Hohnen 1 -011001000 CTW 1 -011001000 Belmoral 1 -011001000 Mitsusbishi 1 -011001000 ACRE 2 -011001000 Hazlitt 2 -011001000 Marylanders 2 -011001000 Sub-Ocean 2 -011001000 Tricorp 2 -011001000 Scurry-Rainbow 2 -011001000 Lebedeff 2 -011001000 Candel 2 -011001000 WisPark 2 -011001000 DynaCirc 2 -011001000 Etty 2 -011001000 Poisonous 2 -011001000 Guglielmo 2 -011001000 Camflo 2 -011001000 Hombre 2 -011001000 Helios 2 -011001000 APPALACHIAN 2 -011001000 Neues 2 -011001000 Scepter 2 -011001000 Laureno 2 -011001000 Inexco 2 -011001000 BFM 2 -011001000 Meldisco 2 -011001000 Duveneck 2 -011001000 UIP 2 -011001000 PALM 2 -011001000 Lajes 2 -011001000 Seleine 2 -011001000 Kaiser-Francis 2 -011001000 Keitel 2 -011001000 Harmless 2 -011001000 ATID 2 -011001000 OKB 2 -011001000 BG&E 2 -011001000 Frookie 2 -011001000 Tranquilidade 2 -011001000 Ritzy 2 -011001000 Kittaning 2 -011001000 Darmac 2 -011001000 Mabou 2 -011001000 SNIA 2 -011001000 Singatronics 2 -011001000 KDLZ 2 -011001000 Atmosphere 2 -011001000 ISH 2 -011001000 Avacare 2 -011001000 Hoya 2 -011001000 Togco 2 -011001000 Fipp 2 -011001000 NWSI 2 -011001000 Exergon 2 -011001000 Grabill 2 -011001000 Horrible 2 -011001000 Wickland 2 -011001000 Teflon-treated 2 -011001000 Bougainvillea 2 -011001000 Linjeflyg 2 -011001000 ECMO 2 -011001000 Matrix-Churchill 2 -011001000 Mosca 2 -011001000 Edwards-Warren 2 -011001000 Earthwatch 2 -011001000 Listeria 2 -011001000 Levengood 2 -011001000 DXplain 2 -011001000 R-Win 2 -011001000 fur-lined 2 -011001000 300TD 2 -011001000 Simonetta 2 -011001000 PICO 2 -011001000 Beth-Energy 2 -011001000 IRN 2 -011001000 ESDA 2 -011001000 MONTANA 2 -011001000 Caspen 2 -011001000 Rudeness 3 -011001000 Bio-Scan 3 -011001000 Aouita 3 -011001000 Brodigan 3 -011001000 Oclassen 3 -011001000 Yucaipa 3 -011001000 Pinpoint 3 -011001000 Competitor 3 -011001000 ARKANSAS 3 -011001000 Jouett 3 -011001000 PAR 3 -011001000 Tenco 3 -011001000 Cortex 3 -011001000 Yucan 3 -011001000 Chengbei 3 -011001000 Milacki 3 -011001000 SFSP 3 -011001000 DELMARVA 3 -011001000 Rit 3 -011001000 Merrell-Dow 3 -011001000 Ikem 3 -011001000 Skye 3 -011001000 Commercio 3 -011001000 Denka 3 -011001000 AOI 3 -011001000 Fimbra 3 -011001000 Granma 3 -011001000 BRAT 3 -011001000 Polonoroeste 3 -011001000 Gogol 3 -011001000 KG&E 3 -011001000 Arabian-American 3 -011001000 Stettner 3 -011001000 Zonians 3 -011001000 Envirosat 3 -011001000 Inforum 3 -011001000 Niaid 3 -011001000 CitiCorp 3 -011001000 Lavino 3 -011001000 Spigolizzi 3 -011001000 Delfzee 3 -011001000 NWIB 3 -011001000 Netas 3 -011001000 Lolly 3 -011001000 Nopsi 3 -011001000 Huttig 3 -011001000 Khovansky 3 -011001000 CuraCare 3 -011001000 Dreieck 3 -011001000 NASA-Ames 3 -011001000 Xport 3 -011001000 Rennoco 3 -011001000 Methotrexate 3 -011001000 PENN 3 -011001000 Forget-Me-Not 3 -011001000 PUCO 3 -011001000 WPEC 3 -011001000 PennEast 3 -011001000 TIS 3 -011001000 Krauthamer 3 -011001000 Vereinigte 3 -011001000 Otsuka 3 -011001000 SPEEDY 3 -011001000 CCE 3 -011001000 MGF 3 -011001000 Kolhberg 3 -011001000 BondData 3 -011001000 ImuVert 3 -011001000 UpRight 3 -011001000 Jackson-Mitchell 3 -011001000 Shoppingtown 3 -011001000 Motif 3 -011001000 Freestyle 3 -011001000 theophylline 4 -011001000 Hayashibara 4 -011001000 Butka 4 -011001000 DIEGO 4 -011001000 Cofir 4 -011001000 Tresch 4 -011001000 Najwa 4 -011001000 IPA 4 -011001000 SNYDER 4 -011001000 Neti 4 -011001000 Mellegers 4 -011001000 Stavely 4 -011001000 Chemex 4 -011001000 Dogue 4 -011001000 EIA 4 -011001000 Abideen 4 -011001000 Caraiba 4 -011001000 Enel 4 -011001000 Santoprene 4 -011001000 Spoelstra 4 -011001000 CGIL 4 -011001000 Conagra 4 -011001000 Prentiss/Copley 4 -011001000 IATSE 4 -011001000 Anabib 4 -011001000 Rotexchemie 4 -011001000 Tjaereborg 4 -011001000 CBre3 4 -011001000 Usacafes 4 -011001000 Fiorello 4 -011001000 CBTU 4 -011001000 Northop 4 -011001000 Gondo 4 -011001000 NALU 4 -011001000 RC 4 -011001000 Rostand 4 -011001000 CTB/McGraw-Hill 4 -011001000 Occidential 4 -011001000 Towneley 4 -011001000 Saia 4 -011001000 Cacex 4 -011001000 Katevan 4 -011001000 Creamette 4 -011001000 Omnibank 4 -011001000 M&M/Mars 4 -011001000 Norbeau 4 -011001000 LuLu 4 -011001000 Kandu 4 -011001000 Datafin 4 -011001000 Gunthrop-Warren 4 -011001000 Homelite 4 -011001000 Steuart 4 -011001000 Caltech 4 -011001000 Fed-watching 4 -011001000 Larotonda 4 -011001000 RL 4 -011001000 CUE 4 -011001000 BankAmerilease 4 -011001000 interactivity 5 -011001000 SNPE 5 -011001000 CTHK 5 -011001000 Ben-Gurion 5 -011001000 Mich-Con 5 -011001000 Pecten 5 -011001000 Munch 5 -011001000 Herkimer 5 -011001000 Picquart 5 -011001000 Kem 5 -011001000 Carillon 5 -011001000 Threadneedle 5 -011001000 Orly 5 -011001000 TEP 5 -011001000 Cuno 5 -011001000 Holborn 5 -011001000 Lebhar 5 -011001000 Saarinen 5 -011001000 M&H 5 -011001000 Raterpillar 5 -011001000 Ehrig 5 -011001000 Urrutia 5 -011001000 Chlorine 5 -011001000 Luxeville 5 -011001000 Gossaert 5 -011001000 Vai 5 -011001000 WesPac 5 -011001000 Quigly 5 -011001000 Draugen 5 -011001000 INI 5 -011001000 Zena 5 -011001000 Quintette 5 -011001000 Sapphire 5 -011001000 Statex 5 -011001000 T-ball 5 -011001000 Brook-Wein 5 -011001000 Schweizerische 5 -011001000 Metrocast 5 -011001000 Fomento 5 -011001000 RVI 5 -011001000 Herodotus 5 -011001000 Investcorp. 5 -011001000 NACA 5 -011001000 ChinAmerica 5 -011001000 Americares 5 -011001000 Smithkline 5 -011001000 KUNM 5 -011001000 CM&W 5 -011001000 Yoo-Hoo 5 -011001000 MINNESOTA 5 -011001000 Norbec 6 -011001000 Sobek 6 -011001000 WNCN 6 -011001000 NARFE 6 -011001000 Soffex 6 -011001000 CKFM 6 -011001000 Stendhal 6 -011001000 Oerlikon 6 -011001000 RFE 6 -011001000 Perifax 6 -011001000 WalMart 6 -011001000 WAINOCO 6 -011001000 Earthworm 6 -011001000 Nat-West 6 -011001000 Nemak 6 -011001000 WTTV 6 -011001000 Wiggly 6 -011001000 WOOD 6 -011001000 Shanti 6 -011001000 Flag-Redfern 6 -011001000 Collio 6 -011001000 Audiographics 6 -011001000 IDV 6 -011001000 Danzar 6 -011001000 Callon 6 -011001000 Thurston 6 -011001000 Longevity 6 -011001000 Shiyuan 6 -011001000 Timotei 6 -011001000 Transnautic 6 -011001000 Idec 6 -011001000 Austrac 6 -011001000 VSEL 6 -011001000 Pelto 6 -011001000 Snia 6 -011001000 Marsam 6 -011001000 WWL 6 -011001000 Voiceworks 6 -011001000 SIAC 6 -011001000 Farid 6 -011001000 Krahmer 6 -011001000 Monitronix 6 -011001000 BARGAINING 6 -011001000 PFM 6 -011001000 Boccaccio 6 -011001000 MCFL 6 -011001000 Gwenda 6 -011001000 Sucden 6 -011001000 Dorby 6 -011001000 Darcy 6 -011001000 Halley 7 -011001000 UnitedBank 7 -011001000 BEHR 7 -011001000 Firemen 7 -011001000 Mountaineer 7 -011001000 Westbridge 7 -011001000 Carbajal 7 -011001000 Dalafield 7 -011001000 Teleway 7 -011001000 Saier 7 -011001000 Eurofima 7 -011001000 InfoScan 7 -011001000 Moor 7 -011001000 Orky 7 -011001000 WNYC 7 -011001000 Yefim 7 -011001000 ICSL 7 -011001000 Panora 7 -011001000 Immunetech 7 -011001000 CNOOC 7 -011001000 OSF 7 -011001000 Zlogar 7 -011001000 DJS/Inverness 7 -011001000 RichardsonSmith 7 -011001000 Kimbark 7 -011001000 Ysleta 7 -011001000 Farmstead 7 -011001000 NIDA 7 -011001000 Rumrill-Hoyt 7 -011001000 PBA 7 -011001000 Multitech 7 -011001000 Dalgliesh 7 -011001000 THORN 7 -011001000 Slick 7 -011001000 Nalco 7 -011001000 Maxcell 7 -011001000 Qiaotou 7 -011001000 UIC 7 -011001000 Eurofer 7 -011001000 KDD 8 -011001000 Oahu 8 -011001000 Cibro 8 -011001000 Durer 8 -011001000 Gnomon 8 -011001000 Berklee 8 -011001000 CableOne 8 -011001000 Longmeadow 8 -011001000 Kenmare 8 -011001000 Roebling 8 -011001000 Howdy 8 -011001000 BAM 8 -011001000 Gimbel 8 -011001000 Bitesize 8 -011001000 Bruckner 8 -011001000 Wiser 8 -011001000 Azactam 8 -011001000 Kilby 8 -011001000 UTC 8 -011001000 Hall-Houston 8 -011001000 Cultor 8 -011001000 Veronese 8 -011001000 ETS 8 -011001000 CAID 8 -011001000 Claudius 8 -011001000 Mladina 8 -011001000 Rezaq 8 -011001000 Finnair 8 -011001000 Sinopec 8 -011001000 Squibb-Novo 8 -011001000 Millet 8 -011001000 Bollore 8 -011001000 Nacobre 8 -011001000 IDEC 8 -011001000 Tushum 8 -011001000 Jobete 8 -011001000 HBM 8 -011001000 Omron 8 -011001000 Daelim 8 -011001000 Daytop 8 -011001000 Dunedin 9 -011001000 Henrik 9 -011001000 Jetro 9 -011001000 Fedeccredito 9 -011001000 Agouron 9 -011001000 Tunde 9 -011001000 Fela 9 -011001000 Quarante 9 -011001000 UNLV 9 -011001000 UBAF 9 -011001000 Tek 9 -011001000 SCORE 9 -011001000 MOCA 9 -011001000 workman 9 -011001000 GFI 9 -011001000 PanCanadian 9 -011001000 AGT 9 -011001000 ShareLink 9 -011001000 Baoguang 9 -011001000 AMD 9 -011001000 Sabta 9 -011001000 Nadja 9 -011001000 RNC 9 -011001000 MOHAWK 9 -011001000 PacifiCorp. 9 -011001000 Newtonchik 9 -011001000 BCA 9 -011001000 Biosis 9 -011001000 Recadi 9 -011001000 Sandro 9 -011001000 NETAAC 9 -011001000 Jonathon 10 -011001000 Bellini 10 -011001000 Mettur 10 -011001000 Reba 10 -011001000 Laclede 10 -011001000 Shionogi 10 -011001000 Levis 10 -011001000 Durkee 10 -011001000 Winooski 10 -011001000 Y&R 10 -011001000 BB 10 -011001000 JR 10 -011001000 Monteverdi 10 -011001000 SES 10 -011001000 Nordbanken 10 -011001000 InfoCorp. 10 -011001000 Necker 10 -011001000 GAC 10 -011001000 Kanrisha 10 -011001000 Frago 10 -011001000 Peary 10 -011001000 Navip 10 -011001000 MFL 10 -011001000 Goetabanken 10 -011001000 Losec 10 -011001000 Poqet 10 -011001000 Samedan 10 -011001000 KGF 10 -011001000 Siderca 10 -011001000 TCC 10 -011001000 Tonda 10 -011001000 NOME 10 -011001000 SAMI 11 -011001000 Rofin-Sinar 11 -011001000 IOS 11 -011001000 Agnico-Eagle 11 -011001000 Kreg 11 -011001000 Aerolift 11 -011001000 JAMA 11 -011001000 Uniroyal-Goodrich 11 -011001000 Vivaldi 11 -011001000 WOJB 11 -011001000 MSOE 11 -011001000 Grenouille 11 -011001000 Lancome 11 -011001000 FIFA 11 -011001000 Q8 11 -011001000 Graham-McCormick 11 -011001000 Virago 11 -011001000 Maruti 11 -011001000 MIS 11 -011001000 Ingemar 11 -011001000 Flonorial 11 -011001000 Magten 11 -011001000 Kyokuto 11 -011001000 Gwaltney 11 -011001000 NEPA 11 -011001000 Petrolear 11 -011001000 Invesco 11 -011001000 CITICORP 12 -011001000 PRB 12 -011001000 Reprise 12 -011001000 Agrokomerc 12 -011001000 Cancom 12 -011001000 Transnational 12 -011001000 Zentralsparkasse 12 -011001000 Filofax 12 -011001000 Transpac 12 -011001000 Arenaball 12 -011001000 BCG 12 -011001000 Pan-Alberta 12 -011001000 VQT 12 -011001000 GFT 12 -011001000 Kiwi 12 -011001000 WEG 12 -011001000 Evian 12 -011001000 NJT 12 -011001000 Barb 12 -011001000 WMMS 12 -011001000 M.C. 12 -011001000 Elizabethtown 12 -011001000 Margolies 12 -011001000 Bubka 12 -011001000 Arcosanti 12 -011001000 Fermilab 12 -011001000 Erte 12 -011001000 MOMA 12 -011001000 Kukje-ICC 12 -011001000 Voest 12 -011001000 ZapMail 12 -011001000 BMI 13 -011001000 Biopharm 13 -011001000 Haavelmo 13 -011001000 Perulac 13 -011001000 FKI 13 -011001000 KPC 13 -011001000 Acre 13 -011001000 texaco 13 -011001000 Lusk 13 -011001000 Qawi 13 -011001000 Alla 13 -011001000 Clermont 13 -011001000 Bit 13 -011001000 Pictet 13 -011001000 Bufferin 13 -011001000 Frikkie 13 -011001000 Orkin 13 -011001000 Finesse 13 -011001000 Nepool 13 -011001000 ECI 13 -011001000 Ribi 13 -011001000 Hoechst-Roussel 13 -011001000 Quasar 13 -011001000 Solo 13 -011001000 Olga 13 -011001000 Rakovica 13 -011001000 Kipling 13 -011001000 Kodo 14 -011001000 Guston 14 -011001000 Avanti 14 -011001000 Carlon 14 -011001000 Systran 14 -011001000 Brutus 14 -011001000 Zenchu 14 -011001000 Venable 14 -011001000 Damson 14 -011001000 Biff 14 -011001000 Creditanstalt 14 -011001000 PEP 14 -011001000 Humble 14 -011001000 NATURAL 14 -011001000 NutriClean 14 -011001000 Ullenberg 15 -011001000 Melon 15 -011001000 Culinova 15 -011001000 RCM 15 -011001000 Gazelle 15 -011001000 Poco 15 -011001000 Rizzoli 15 -011001000 Coretech 15 -011001000 Pirandello 15 -011001000 IRNA 15 -011001000 Bose 15 -011001000 Herod 15 -011001000 ZANU 15 -011001000 Excoa 15 -011001000 Jasmine 15 -011001000 Dyco 15 -011001000 CEA 16 -011001000 IFAR 16 -011001000 IMM 16 -011001000 SeniorNet 16 -011001000 SH 16 -011001000 Sundai 16 -011001000 Kysor 16 -011001000 Lomak 16 -011001000 KBS 16 -011001000 CU 16 -011001000 DeLorean 16 -011001000 Diamond/Obie 16 -011001000 Martingale 16 -011001000 Faulding 16 -011001000 Lakeside 16 -011001000 Airco 16 -011001000 Lilli 17 -011001000 Chiat/Day/Mojo 17 -011001000 Buisson 17 -011001000 Frunze 17 -011001000 PSE&G 17 -011001000 M&R 17 -011001000 Santayana 17 -011001000 CVG 17 -011001000 CoCa 17 -011001000 Riyad 17 -011001000 Pymm 17 -011001000 Elgar 17 -011001000 Varlam 17 -011001000 Sasha 17 -011001000 Agassi 17 -011001000 ADP 17 -011001000 IKEA 18 -011001000 Champlin 18 -011001000 Velsicol 18 -011001000 Vector 18 -011001000 H-P 18 -011001000 GBL 18 -011001000 Schlitz 18 -011001000 Zembriski 18 -011001000 Aer 18 -011001000 E&B 18 -011001000 PNOC 18 -011001000 Re/Max 18 -011001000 Donnay 18 -011001000 Ciba 18 -011001000 Alusuisse 18 -011001000 AGE 18 -011001000 Serex 18 -011001000 ANMC 18 -011001000 Fleischmann 18 -011001000 Siebel 19 -011001000 Telmex 19 -011001000 Tow 19 -011001000 Kepco 19 -011001000 NAEIR 19 -011001000 Ispra 19 -011001000 CEI 19 -011001000 Moutse 19 -011001000 GHF 19 -011001000 GECC 19 -011001000 Quemoy 19 -011001000 Tejas 19 -011001000 Debussy 19 -011001000 Carner 19 -011001000 Ashburn 19 -011001000 Trunkline 19 -011001000 Chilmark 19 -011001000 Cicero 19 -011001000 Mussolini 19 -011001000 Jafco 20 -011001000 Coca 20 -011001000 Satriani 20 -011001000 Valsella 20 -011001000 TCI 20 -011001000 Samoth 20 -011001000 Robyn 20 -011001000 Calmaquip 20 -011001000 Skylite 20 -011001000 Snap-on 20 -011001000 IFF 21 -011001000 Wagons-Lits 21 -011001000 Kingsbridge 21 -011001000 MG 21 -011001000 AEI 21 -011001000 VAAP 21 -011001000 Kis 21 -011001000 Hypo-Bank 21 -011001000 Normandy 22 -011001000 NWQ 22 -011001000 BiiN 22 -011001000 Saamstaan 22 -011001000 Torras 22 -011001000 Amexco 22 -011001000 PCC 22 -011001000 Faldo 22 -011001000 Sendero 22 -011001000 Imagineering 22 -011001000 LBJ 22 -011001000 TSA 22 -011001000 IFI 23 -011001000 Burdines 23 -011001000 Liszt 23 -011001000 Sohio 23 -011001000 Consob 23 -011001000 Wolohan 23 -011001000 Solvay 24 -011001000 Amcor 24 -011001000 Vestar 24 -011001000 Rebo 24 -011001000 Stora 24 -011001000 Bruford 24 -011001000 Hondo 24 -011001000 Arbitron 24 -011001000 Distron 24 -011001000 Mingus 24 -011001000 ARCO 24 -011001000 Shaine 24 -011001000 Massport 24 -011001000 Quattro 25 -011001000 Stihl 25 -011001000 Holderbank 25 -011001000 TNA 25 -011001000 Orbital 25 -011001000 PNM 25 -011001000 Stake 25 -011001000 Teenie 25 -011001000 Jindo 25 -011001000 WYLD 26 -011001000 Rengo 26 -011001000 GAP 26 -011001000 Swapo 26 -011001000 Aris 26 -011001000 Miro 26 -011001000 Consol 26 -011001000 Gemma 26 -011001000 Mize 26 -011001000 Witherspoon 26 -011001000 Sukarno 27 -011001000 Alpo 27 -011001000 Takeda 27 -011001000 WIN 27 -011001000 Denning 27 -011001000 Pringle 27 -011001000 Troma 27 -011001000 Goya 27 -011001000 Avtex 27 -011001000 AIL 27 -011001000 Baedeker 28 -011001000 MIGA 28 -011001000 Ryka 28 -011001000 SPI 28 -011001000 Ore-Ida 28 -011001000 Posco 28 -011001000 Megaquest 28 -011001000 Dassault 28 -011001000 LPL 28 -011001000 Sunkist 29 -011001000 Lindy 29 -011001000 Ascap 29 -011001000 WFIA 29 -011001000 JTPA 29 -011001000 CopyTele 29 -011001000 NCI 29 -011001000 Eveready 30 -011001000 Isham 31 -011001000 SMU 31 -011001000 Kagins 31 -011001000 CAAC 32 -011001000 PIR 32 -011001000 Gotaas-Larsen 32 -011001000 Pauley 32 -011001000 Dvorak 32 -011001000 Troll 32 -011001000 M.I.T. 33 -011001000 Michelob 33 -011001000 Micoin 33 -011001000 ABT 33 -011001000 Pru-Bache 33 -011001000 Proceso 33 -011001000 ECD 34 -011001000 Duchamp 34 -011001000 Fina 34 -011001000 Atalanta/Sosnoff 34 -011001000 Trintex 34 -011001000 JCB 35 -011001000 Raffi 35 -011001000 Kumagai 35 -011001000 Cosatu 35 -011001000 Degas 35 -011001000 Mondadori 35 -011001000 Botham 36 -011001000 Monet 36 -011001000 Tupperware 36 -011001000 BNP 36 -011001000 Boehringer 36 -011001000 AIPAC 37 -011001000 Spar 37 -011001000 Wainoco 37 -011001000 Galaxy 38 -011001000 Valvoline 38 -011001000 Cofide 38 -011001000 JVC 38 -011001000 Noah 39 -011001000 SGS 39 -011001000 Equicor 39 -011001000 CAMI 39 -011001000 Hornsby 40 -011001000 KHD 40 -011001000 Sandino 40 -011001000 Cezanne 40 -011001000 EPIC 41 -011001000 Arcanum 41 -011001000 Nummi 42 -011001000 Pinkerton 42 -011001000 ALPA 43 -011001000 Citgo 43 -011001000 Consolidation 43 -011001000 Steinway 43 -011001000 Prodigy 45 -011001000 Tito 45 -011001000 BZW 46 -011001000 B&C 46 -011001000 Burmah 46 -011001000 Branford 46 -011001000 KWU 47 -011001000 Abitibi 47 -011001000 Daihatsu 47 -011001000 CREF 48 -011001000 OPIC 48 -011001000 Hagler 50 -011001000 Olds 50 -011001000 Komori 50 -011001000 MMWEC 50 -011001000 Televisa 51 -011001000 NUM 51 -011001000 Liffe 51 -011001000 Duramed 52 -011001000 Pathmark 53 -011001000 Toyo 53 -011001000 Harken 53 -011001000 Dickenson 54 -011001000 Gulfstream 55 -011001000 Spuds 56 -011001000 Edgington 56 -011001000 Amcast 57 -011001000 Dickens 57 -011001000 Vitarine 57 -011001000 Chaumet 57 -011001000 LIPA 58 -011001000 CARE 58 -011001000 Ingalls 58 -011001000 Verdi 60 -011001000 MSHA 63 -011001000 USIA 63 -011001000 Spectra 64 -011001000 Pemex 64 -011001000 Gurit 65 -011001000 Bullock 65 -011001000 Zico 66 -011001000 Bellcore 67 -011001000 CAA 67 -011001000 Inter-City 68 -011001000 Yamaha 68 -011001000 Galileo 69 -011001000 Proudfoot 69 -011001000 WOW 70 -011001000 ABF 70 -011001000 MCC 70 -011001000 ITG 70 -011001000 Balanchine 71 -011001000 Saab 72 -011001000 Spinks 72 -011001000 Aristech 72 -011001000 AID 73 -011001000 Tri-State 74 -011001000 Anadarko 77 -011001000 Industrielle 78 -011001000 Stauffer 78 -011001000 Rolls 79 -011001000 Lego 79 -011001000 Bach 80 -011001000 AIG 80 -011001000 Bernie 80 -011001000 Lafeyette 80 -011001000 CDA 80 -011001000 Harley 82 -011001000 Sasson 84 -011001000 BCCI 85 -011001000 NHTSA 86 -011001000 Nautilus 87 -011001000 Hemingway 87 -011001000 UPI 87 -011001000 Outboard 88 -011001000 Freud 90 -011001000 Anheuser 93 -011001000 BA 93 -011001000 Helena 94 -011001000 Swissair 95 -011001000 Wesray 97 -011001000 PTL 97 -011001000 Infiniti 97 -011001000 CSFB 97 -011001000 Kelvin 97 -011001000 NOW 99 -011001000 FCA 99 -011001000 Bonwit 100 -011001000 Audio/Video 101 -011001000 Hutchison 101 -011001000 MeraBank 101 -011001000 3M 103 -011001000 O&Y 105 -011001000 Bryson 105 -011001000 Presidio 105 -011001000 Denison 106 -011001000 IRI 106 -011001000 UPS 106 -011001000 Lexus 107 -011001000 Carnival 118 -011001000 BNL 120 -011001000 Pernod 121 -011001000 Kloeckner 123 -011001000 Conde 123 -011001000 Cain 125 -011001000 CNN 126 -011001000 SCEcorp 127 -011001000 Mercedes-Benz 129 -011001000 Esprit 132 -011001000 D&B 134 -011001000 Donnelley 135 -011001000 JAL 140 -011001000 Kongsberg 142 -011001000 Cummins 144 -011001000 Thorn 149 -011001000 Tateho 150 -011001000 KMG 150 -011001000 Hugo 153 -011001000 IMC 156 -011001000 Subaru 160 -011001000 Hydro-Quebec 162 -011001000 Hallmark 162 -011001000 Intelsat 164 -011001000 Deloitte 165 -011001000 Apex 175 -011001000 Tiffany 178 -011001000 CGE 182 -011001000 Husky 183 -011001000 Barbie 183 -011001000 Daimler 192 -011001000 Michelin 195 -011001000 Owens-Corning 198 -011001000 PG&E 204 -011001000 Ericsson 219 -011001000 Monarch 222 -011001000 Colgate 229 -011001000 Amtrak 237 -011001000 A&P 238 -011001000 MIT 240 -011001000 GEC 247 -011001000 Daewoo 256 -011001000 Tesoro 266 -011001000 SAS 275 -011001000 Saturn 280 -011001000 Deere 288 -011001000 Suzuki 314 -011001000 TransCanada 320 -011001000 Alcoa 325 -011001000 BMW 330 -011001000 Paribas 344 -011001000 Oldsmobile 346 -011001000 Emery 361 -011001000 Searle 368 -011001000 Olivetti 372 -011001000 Christie 374 -011001000 Alcan 375 -011001000 Placid 386 -011001000 Cadillac 389 -011001000 Conrail 403 -011001000 Mazda 404 -011001000 Pepsi 413 -011001000 MITI 426 -011001000 VW 451 -011001000 ICN 466 -011001000 HBO 471 -011001000 Lilly 474 -011001000 Audi 476 -011001000 Renault 505 -011001000 Macy 517 -011001000 Suez 519 -011001000 Lear 571 -011001000 Ashland 572 -011001000 Hyundai 573 -011001000 OSHA 592 -011001000 Chevrolet 605 -011001000 P&G 633 -011001000 Arco 640 -011001000 SmithKline 666 -011001000 Citibank 673 -011001000 HUD 678 -011001000 Shell 679 -011001000 KKR 691 -011001000 Firestone 696 -011001000 Merck 699 -011001000 Coke 721 -011001000 Goodyear 809 -011001000 Getty 908 -011001000 EDS 966 -011001000 Kohlberg 997 -011001000 NASA 1027 -011001000 Nissan 1086 -011001000 Mesa 1115 -011001000 Occidental 1140 -011001000 Honda 1204 -011001000 Toyota 1253 -011001000 McDonald 1264 -011001000 Dome 1285 -011001000 Sears 2051 -011001000 GE 2280 -011001000 Citicorp 3265 -011001000 AT&T 3592 -011001000 Drexel 6024 -011001000 IBM 6035 -011001000 Ford 7188 -011001000 GM 6485 -0110010010 Talentbank 1 -0110010010 Quatro 1 -0110010010 Hardlines 1 -0110010010 Leksi 1 -0110010010 Tokico 1 -0110010010 Shuh-Riese 1 -0110010010 ATCO 1 -0110010010 Troop 1 -0110010010 Steelastic 1 -0110010010 COE 1 -0110010010 Seimens 1 -0110010010 SNIA-BPD 1 -0110010010 Meredyth 1 -0110010010 VanAmerongen 1 -0110010010 Rohoel-Aufsuchungs 1 -0110010010 OHBAYASHI 1 -0110010010 CALEDONIA 1 -0110010010 Monkem 1 -0110010010 Apparelcraft 1 -0110010010 Corpoven 1 -0110010010 HAPAG-LLOYD 1 -0110010010 Olin-Asahi 1 -0110010010 Bio-Logic 1 -0110010010 Helig-Meyers 1 -0110010010 Agipcoal 1 -0110010010 Sundaram-Clayton 1 -0110010010 Robeco 1 -0110010010 Cotricom 1 -0110010010 Randfontein 1 -0110010010 Santeuspacchio 1 -0110010010 Donauwerke 1 -0110010010 Barc 1 -0110010010 VERSICHERUNGS 1 -0110010010 Nadler-Philopena 1 -0110010010 PLM-BALL 1 -0110010010 Rosemount 1 -0110010010 Gentor 1 -0110010010 Eurotech 1 -0110010010 MARMON 1 -0110010010 Jordoniss 1 -0110010010 King-Size 1 -0110010010 Tianlong 1 -0110010010 Tweco 1 -0110010010 Compositek 1 -0110010010 Contain-A-Way 1 -0110010010 Thorn/EMI 1 -0110010010 Oiltex 1 -0110010010 Charcoal 1 -0110010010 Etma 1 -0110010010 ABV 1 -0110010010 Aker-Norcem 1 -0110010010 Toyoba 1 -0110010010 GENE-TRAK 1 -0110010010 Vicat 1 -0110010010 MicroSmart 1 -0110010010 JetStream 1 -0110010010 OMT 1 -0110010010 SAINT-FRERES 1 -0110010010 Koitaki 1 -0110010010 AECI 1 -0110010010 Optimem 1 -0110010010 McChild 1 -0110010010 Allia 1 -0110010010 Prodest 1 -0110010010 VCH 1 -0110010010 QINTEX 1 -0110010010 SOPAMED 1 -0110010010 Novatel 1 -0110010010 Venrock 1 -0110010010 Luchaire 1 -0110010010 Zantop 1 -0110010010 Nationale-Nederlanden 1 -0110010010 Diadora 1 -0110010010 Brasif 1 -0110010010 BurroughsWellcome 1 -0110010010 Fincentro 1 -0110010010 Saibu-Saison 1 -0110010010 Paktank 1 -0110010010 Competrol 1 -0110010010 Apco 1 -0110010010 Tele-Columbus 1 -0110010010 Magnetbahn 1 -0110010010 M.A.G. 1 -0110010010 Intamin 1 -0110010010 Bankasi 1 -0110010010 Woodlink 1 -0110010010 Multitasking 1 -0110010010 Vinters 1 -0110010010 Loeks-Star 1 -0110010010 co-publish 1 -0110010010 Starckjohann-Telko 1 -0110010010 Cen-Gold 1 -0110010010 Parasitic 1 -0110010010 Massuh 1 -0110010010 Morton-Norwich 1 -0110010010 Thoratec 1 -0110010010 Euro-Magnetics 1 -0110010010 Nolton 1 -0110010010 Bershire 1 -0110010010 SuperComputer 1 -0110010010 Bakso 1 -0110010010 FAMILIAN 1 -0110010010 Foervaltnings 1 -0110010010 Crosshaven 1 -0110010010 Reunida 1 -0110010010 BreakTime 1 -0110010010 Fastigehets 1 -0110010010 Rumbo 1 -0110010010 Interoil 1 -0110010010 BOUVET 1 -0110010010 QPL 1 -0110010010 Medlantic 1 -0110010010 BOLIDEN 1 -0110010010 Volador 1 -0110010010 Argali 1 -0110010010 Coldwrap 1 -0110010010 Lucky-Allied 1 -0110010010 Borlem 1 -0110010010 Salumi 1 -0110010010 Benson/Landberg 1 -0110010010 Katanning 1 -0110010010 Chequecard 1 -0110010010 Consolidator-Granaten 1 -0110010010 FRP 1 -0110010010 Villares 1 -0110010010 Industrikreditbank 1 -0110010010 Gerling 1 -0110010010 Pinetree 1 -0110010010 Bio-recovery 1 -0110010010 Silcorp 1 -0110010010 Sea-Alaska 1 -0110010010 Zaerix 1 -0110010010 Schwarzhaupt 1 -0110010010 Double-Double 1 -0110010010 Liande 1 -0110010010 Cameron-Brown 1 -0110010010 Far-Mac 1 -0110010010 Harris-Magnavox 1 -0110010010 Nordstress 1 -0110010010 EXEL 1 -0110010010 Cityquest 1 -0110010010 Kloeckner-Humbolt-Deutz 1 -0110010010 Fulkroad 1 -0110010010 ProForma 1 -0110010010 2323 1 -0110010010 Perbadanan 1 -0110010010 Luditec 1 -0110010010 Pegulan-Werke 1 -0110010010 TELIT 1 -0110010010 Herlitz 1 -0110010010 Transoil 1 -0110010010 WESTFIELD 1 -0110010010 Metdist 1 -0110010010 Cem-A-Care 1 -0110010010 Media-News 1 -0110010010 967,600 1 -0110010010 Rhodia 1 -0110010010 Messerschmitt-Boelkow-Bloehm 1 -0110010010 Boller/Coates/Spadaro 1 -0110010010 Gunze 1 -0110010010 Tel-Optik 1 -0110010010 Preventable 1 -0110010010 Kuntzle 1 -0110010010 Westmex 1 -0110010010 Dunavant 1 -0110010010 Snamprogetti 1 -0110010010 Tel-Optick 1 -0110010010 Goliad 1 -0110010010 Meditec 1 -0110010010 Cargocaire 1 -0110010010 Morris-Rospond 1 -0110010010 Lafarge-Coppee 1 -0110010010 Boart 1 -0110010010 HLS 1 -0110010010 GREENWOOD 1 -0110010010 OFP 1 -0110010010 Compagnia 1 -0110010010 Runglin 1 -0110010010 Newland 1 -0110010010 PETROCORP 1 -0110010010 VBB 1 -0110010010 Availco 1 -0110010010 ALFA-LAVAL 1 -0110010010 DataLab 1 -0110010010 Asset-Chile 1 -0110010010 Arbed-Saarstahl 1 -0110010010 Woodville 1 -0110010010 DENISON 1 -0110010010 MIP 1 -0110010010 NAVIGATION 1 -0110010010 Pick-Vanoff 1 -0110010010 R/Greenberg 1 -0110010010 Westfalenbank 1 -0110010010 Rank/Xerox 1 -0110010010 Hafslund 1 -0110010010 MOET-HENNESSY 1 -0110010010 MACARTHY 1 -0110010010 MANPOWER 1 -0110010010 Transammo 1 -0110010010 Serfina 1 -0110010010 Soprefin 1 -0110010010 Finalter 1 -0110010010 KemaNobel 1 -0110010010 REIL 1 -0110010010 DidierWerke 1 -0110010010 Tri-South 1 -0110010010 Provida 1 -0110010010 Etko 1 -0110010010 SOCS 1 -0110010010 Helming 1 -0110010010 Goirand 1 -0110010010 Mingold 1 -0110010010 San-co 1 -0110010010 Ubena 1 -0110010010 K.F.O. 1 -0110010010 GHK 1 -0110010010 SANGEMINI 1 -0110010010 Danaos 1 -0110010010 Heatube 1 -0110010010 Kissell 1 -0110010010 High/Low 1 -0110010010 Princeton/Montrose 1 -0110010010 Fairey 1 -0110010010 Treelane 1 -0110010010 VEUVE 1 -0110010010 Bosch-Siemens 1 -0110010010 Cauzin 1 -0110010010 Citropectina 1 -0110010010 C.P 1 -0110010010 Oakhill 1 -0110010010 HOCHTIEF 1 -0110010010 Lexitech 1 -0110010010 Miller-Wohl 1 -0110010010 Wildfire 1 -0110010010 Industrieverwaltungsgesellschaft 1 -0110010010 Industrievaerden 1 -0110010010 Lacarriere 1 -0110010010 Hidraulica 1 -0110010010 Serv-Mor 1 -0110010010 Lifetree 1 -0110010010 ScaniaVabis 1 -0110010010 Metalsa 1 -0110010010 Adience 1 -0110010010 FGR 1 -0110010010 Kanemori 1 -0110010010 Five-Star 1 -0110010010 Scott-Levin 1 -0110010010 FITZGERALD 1 -0110010010 Genelcan 1 -0110010010 Multilayer 1 -0110010010 Elisra 1 -0110010010 Travcan 1 -0110010010 Kawaguchi 1 -0110010010 ALSTHOM 1 -0110010010 Duty-Free 1 -0110010010 Papelok 1 -0110010010 Simco 1 -0110010010 US-Travel 1 -0110010010 G.N.W. 1 -0110010010 OKAMOTO 1 -0110010010 Stanwich 1 -0110010010 Indamerica 1 -0110010010 Transgene 1 -0110010010 A&L 1 -0110010010 Hydrocarbon 1 -0110010010 TCR 1 -0110010010 Marimpex 1 -0110010010 DWO 1 -0110010010 YAMASHITA-SHINNIHON 1 -0110010010 Bottelo 1 -0110010010 WhitMar 1 -0110010010 Brel 1 -0110010010 Unigestion 1 -0110010010 J.A.M. 1 -0110010010 DPCE 1 -0110010010 Interesow 1 -0110010010 Torras-Hostench 1 -0110010010 Lamy-Lutti 1 -0110010010 Reteitalia 1 -0110010010 GIROBANK 1 -0110010010 AirShuttle 1 -0110010010 FRANCOIS-DUFOUR-KERVERN 1 -0110010010 Payline 1 -0110010010 McCormick-Publicis 1 -0110010010 KaisterTech 1 -0110010010 NEDERLANDSCHE 1 -0110010010 Kagome 1 -0110010010 PHL 1 -0110010010 ED&D 1 -0110010010 Macmoter 1 -0110010010 Ecomat 1 -0110010010 Kelhan 1 -0110010010 Genpharm 1 -0110010010 Kiarti 1 -0110010010 GOTAGRUPPEN 1 -0110010010 Noritsu 1 -0110010010 Suttle 1 -0110010010 Finmec-canica 1 -0110010010 Computer/Management 1 -0110010010 Clarel 1 -0110010010 Boojum 1 -0110010010 Ibca 1 -0110010010 Nyland 1 -0110010010 SONANCE 1 -0110010010 Enroe 1 -0110010010 Bonso 1 -0110010010 Oberland-Glas 1 -0110010010 Greencash 1 -0110010010 RHINRHONE 1 -0110010010 MENEBA 1 -0110010010 Tca-IV 1 -0110010010 Korry 1 -0110010010 Golodetz 1 -0110010010 Winstone 1 -0110010010 A/W 1 -0110010010 Bimak 1 -0110010010 Papyrus 1 -0110010010 Pegulan 1 -0110010010 JJS 1 -0110010010 HOOKER 1 -0110010010 Cameo 1 -0110010010 CROS 1 -0110010010 Landbase 1 -0110010010 Downeast 1 -0110010010 Vismara 1 -0110010010 Davigel 1 -0110010010 Synercom 1 -0110010010 Asanuma 1 -0110010010 FIBERGLAS 1 -0110010010 Otto-Versand 1 -0110010010 FNR 1 -0110010010 Seiniger 1 -0110010010 In-Store 1 -0110010010 Nosac 1 -0110010010 Courtelis 1 -0110010010 Sartorius 1 -0110010010 SOGO 1 -0110010010 ITO-YOKADO 1 -0110010010 LBB 1 -0110010010 Brown-Williamson 1 -0110010010 Meadowbrook 1 -0110010010 Telerate-Radiocor 1 -0110010010 MITSUKOSHI 1 -0110010010 IAG 1 -0110010010 Cerestar 1 -0110010010 Loews/CNA 1 -0110010010 Arbco 1 -0110010010 Elektrowatt 1 -0110010010 Altamera 1 -0110010010 MicSa 1 -0110010010 SEMA-METRA 1 -0110010010 Kibon 1 -0110010010 AUSTRAC 1 -0110010010 HERON 1 -0110010010 AVIS 1 -0110010010 Imofo 1 -0110010010 Unigraphics 1 -0110010010 Caramba 1 -0110010010 Koolmees 1 -0110010010 Medchem 1 -0110010010 Permodalan 1 -0110010010 Sawyer-Miller 1 -0110010010 1,261,848 1 -0110010010 OSI/Network 1 -0110010010 Ame 1 -0110010010 Lladro 1 -0110010010 Japonica 1 -0110010010 Coner 1 -0110010010 Rosegate 1 -0110010010 Flugleasing 1 -0110010010 Stenexport 1 -0110010010 Shochiku-Fuji 1 -0110010010 Zeron 1 -0110010010 Neurotech 1 -0110010010 Arbobyl 1 -0110010010 Sappi 1 -0110010010 ADAC 1 -0110010010 Perinatal 1 -0110010010 Louis-Vuitton 1 -0110010010 Tunggal 1 -0110010010 Danaswara 1 -0110010010 Quoteplan 1 -0110010010 Caci 1 -0110010010 MLD 1 -0110010010 Georget 1 -0110010010 Saupiquet 1 -0110010010 Wirth-Gallo 1 -0110010010 Buckley/DeCerchio 1 -0110010010 Conticommodity 1 -0110010010 Kunick 1 -0110010010 WAZ 1 -0110010010 Comprhensive 1 -0110010010 Leathers 1 -0110010010 Kuhmo 1 -0110010010 Neodata 1 -0110010010 Intelsa 1 -0110010010 Galbani 1 -0110010010 Cydsa 1 -0110010010 Feralloys 1 -0110010010 Tripod 1 -0110010010 Highbury 1 -0110010010 Exley-Giles 1 -0110010010 114,375 1 -0110010010 SunBox 1 -0110010010 Eddot 1 -0110010010 Cati 1 -0110010010 Breon 1 -0110010010 Conspiracies 1 -0110010010 S.E.V. 1 -0110010010 ENICHEM 1 -0110010010 Locus 1 -0110010010 DUMENIL-LEBLE 1 -0110010010 Wal 1 -0110010010 Auchan 1 -0110010010 Firema 1 -0110010010 pre-Magna 1 -0110010010 Petroconsultants 1 -0110010010 BEGHIN-SAY 1 -0110010010 Mittel 1 -0110010010 Arvedi 1 -0110010010 EDIPRESSE 1 -0110010010 WESTLAND 1 -0110010010 GMP 1 -0110010010 Auto-Trol 1 -0110010010 Bioline 1 -0110010010 JED 1 -0110010010 BUITIONI 1 -0110010010 PERUGINA 1 -0110010010 Brocacef 1 -0110010010 Dagra 1 -0110010010 Medicopharma 1 -0110010010 Nogepha 1 -0110010010 Pharbita 1 -0110010010 Pharmachemie 1 -0110010010 Celtona 1 -0110010010 Intermedia 1 -0110010010 Rangenine 1 -0110010010 PetroFina 1 -0110010010 Zambon 1 -0110010010 Execucom 1 -0110010010 SIAB 1 -0110010010 Swedegas 1 -0110010010 Harmonia 1 -0110010010 Kedaung 1 -0110010010 Ceva 1 -0110010010 Reedpack 1 -0110010010 PICKWICK 1 -0110010010 Atlas-Alchem 1 -0110010010 LOWNDES 1 -0110010010 Sefinco 1 -0110010010 Instalaza 1 -0110010010 Shato 1 -0110010010 Trian 1 -0110010010 Cogefar 1 -0110010010 Longform 1 -0110010010 R&W 1 -0110010010 BOOKER 1 -0110010010 Carbon/Graphite 1 -0110010010 BTO 1 -0110010010 Aviofer 1 -0110010010 Semperit 1 -0110010010 Komodo 2 -0110010010 Cofreth 2 -0110010010 TAB 2 -0110010010 Micro-Economics 2 -0110010010 Bungener 2 -0110010010 Seven-arts 2 -0110010010 Nash-Finch 2 -0110010010 Primera 2 -0110010010 Hemglo 2 -0110010010 Steppan 2 -0110010010 Bizerba-Werke 2 -0110010010 PEKO-WALLSEND 2 -0110010010 Libby-Owens-Ford 2 -0110010010 Petitio 2 -0110010010 Hubinger 2 -0110010010 Chuckles 2 -0110010010 CANON 2 -0110010010 Merrico 2 -0110010010 Opsjonsentralen 2 -0110010010 ANTIBIOTICOS 2 -0110010010 Nightwing 2 -0110010010 Nippon-Gakki 2 -0110010010 CMD 2 -0110010010 Ransomes 2 -0110010010 Coopervision 2 -0110010010 Barber-Greene 2 -0110010010 Pierrel 2 -0110010010 Hapimag 2 -0110010010 Sonauto 2 -0110010010 Homco 2 -0110010010 DEG 2 -0110010010 Tahari 2 -0110010010 Euro-Belge 2 -0110010010 WFRR 2 -0110010010 1,734,075 2 -0110010010 Sige 2 -0110010010 Tel-Thermco 2 -0110010010 Vitalie 2 -0110010010 Thermos 2 -0110010010 CDF-CHIMIE 2 -0110010010 Chemco 2 -0110010010 METALLGESELLSCHAFT 2 -0110010010 Aril 2 -0110010010 DoveBar 2 -0110010010 HewlettPackard 2 -0110010010 Delftaland 2 -0110010010 Imetal 2 -0110010010 KEE 2 -0110010010 1,234,075 2 -0110010010 Dunmore 2 -0110010010 KREDIETBANK 2 -0110010010 Tomy 2 -0110010010 AirCruisers 2 -0110010010 Belvieu 2 -0110010010 SUPERDRUG 2 -0110010010 Prodome 2 -0110010010 Bettoja 2 -0110010010 RBW 2 -0110010010 Dawani 2 -0110010010 Vollrath 2 -0110010010 Willo 2 -0110010010 Albright-Knox 2 -0110010010 Wharfedale 2 -0110010010 Handlingair 2 -0110010010 Sielox 2 -0110010010 Keller-Crescent 2 -0110010010 Steris 2 -0110010010 Boarts 2 -0110010010 Investech 2 -0110010010 INDUSTRI 2 -0110010010 Sportstattenbau 2 -0110010010 Kemper/Bedford 2 -0110010010 BEAUTY 2 -0110010010 SoCal 2 -0110010010 AFSA 2 -0110010010 Accupham 2 -0110010010 Mojonnier 2 -0110010010 Sperrings 2 -0110010010 Post-Och 2 -0110010010 Vitarel 2 -0110010010 Farmers-Citizens 2 -0110010010 Arbi 2 -0110010010 D.M. 2 -0110010010 Basf 2 -0110010010 Hydril 2 -0110010010 Edap 2 -0110010010 Bancpro 2 -0110010010 Plumsters 2 -0110010010 Penn-Med 2 -0110010010 Geppetto 2 -0110010010 FLUOROCARBON 2 -0110010010 BVPS 2 -0110010010 Sellon 2 -0110010010 ITM 2 -0110010010 ANHEUSER-BUSCH 2 -0110010010 Rondeleux 2 -0110010010 Bio-Trends 2 -0110010010 Norcros 2 -0110010010 Hertie 2 -0110010010 BI/MS 2 -0110010010 Hatchette 2 -0110010010 Linvure 2 -0110010010 Gipharmex 2 -0110010010 Katenac 2 -0110010010 Hargitay 2 -0110010010 Salamander 2 -0110010010 IMOFO 2 -0110010010 National-Standard 2 -0110010010 Gruy 2 -0110010010 Lampyre 2 -0110010010 Gregorys 2 -0110010010 Hexatec 2 -0110010010 Pluess-Staufer 2 -0110010010 Intercooperation 2 -0110010010 Amoy 2 -0110010010 Headway 2 -0110010010 Munksjoe 2 -0110010010 Sicame 2 -0110010010 Grillet 2 -0110010010 DWJ 2 -0110010010 Germfree 2 -0110010010 Beeck-Feinkost 2 -0110010010 Kampmann 2 -0110010010 Amtrade 2 -0110010010 Envirosure 2 -0110010010 Hygena 2 -0110010010 Ontio 2 -0110010010 Godwins 2 -0110010010 Arkel 2 -0110010010 udc 2 -0110010010 Lancy 2 -0110010010 Keppel 2 -0110010010 ND 2 -0110010010 Unimar 2 -0110010010 DISC 2 -0110010010 Ratti 2 -0110010010 SeedTec 2 -0110010010 REPSOL 2 -0110010010 AJS 2 -0110010010 Solvac 2 -0110010010 Elopak 2 -0110010010 SELM 2 -0110010010 Seikosha 2 -0110010010 Rothbury 2 -0110010010 McLarnon 2 -0110010010 Inisel 2 -0110010010 Sofati 2 -0110010010 Kemet 2 -0110010010 ARBED 2 -0110010010 Ball-Onex 2 -0110010010 Z-Coat 2 -0110010010 Carnicon 2 -0110010010 Paravant 2 -0110010010 Nurol 2 -0110010010 Re-Entry 2 -0110010010 OmniChem 2 -0110010010 Cariplant 2 -0110010010 HK-TVB 2 -0110010010 Detailing 2 -0110010010 RHP 2 -0110010010 H&W 2 -0110010010 Rancourt 2 -0110010010 Permacel 2 -0110010010 Citmoco 2 -0110010010 Volkwagen 2 -0110010010 Visix 2 -0110010010 Swingster 2 -0110010010 Tarco 2 -0110010010 LifeStar 2 -0110010010 Nichiei 2 -0110010010 Gildemeister 2 -0110010010 ASKO 2 -0110010010 4,150,000 2 -0110010010 Robertshaw 2 -0110010010 Wardley-Thomson 2 -0110010010 Shadowfax 2 -0110010010 Salora 2 -0110010010 Preventa 2 -0110010010 Whitesmiths 2 -0110010010 Pelapack 2 -0110010010 Macaple 2 -0110010010 Arcorp 2 -0110010010 SIGE 2 -0110010010 Maljack 2 -0110010010 Kimm 2 -0110010010 Messerschmidt-Boelkow-Blohm 2 -0110010010 Flairdial 2 -0110010010 Telemetrix 2 -0110010010 CRAY 2 -0110010010 Mercapital 2 -0110010010 Marline 2 -0110010010 Softguard 2 -0110010010 Infosystems 2 -0110010010 Novar 2 -0110010010 Blero 2 -0110010010 Morubel 2 -0110010010 Trostberg 2 -0110010010 Penhall 2 -0110010010 Double-Cola 2 -0110010010 Nichii 2 -0110010010 Viro 2 -0110010010 Faygo 2 -0110010010 0.001 2 -0110010010 BioSurface 2 -0110010010 Lague 2 -0110010010 TAKASHIMAYA 2 -0110010010 Unicord 2 -0110010010 Nashoba 2 -0110010010 Syncon 2 -0110010010 Ecofuel 2 -0110010010 Instinct 2 -0110010010 MDU 2 -0110010010 Emb-Tex 2 -0110010010 Opubco 2 -0110010010 Grip-Rite 2 -0110010010 Goodweather 2 -0110010010 Ipsoa 2 -0110010010 Parco 2 -0110010010 NSI 2 -0110010010 Trachte 2 -0110010010 Unidev 2 -0110010010 Geocapital 2 -0110010010 Chopp 2 -0110010010 SD-Scicon 2 -0110010010 Fiti 2 -0110010010 Nexus 2 -0110010010 Iberduero 2 -0110010010 Motor-Columbus 2 -0110010010 Ablekind 2 -0110010010 Afora 2 -0110010010 Dolco 2 -0110010010 Bioassay 2 -0110010010 Osmose 2 -0110010010 Ultron 2 -0110010010 AUTOMOTIVE 2 -0110010010 Andelsbanken 2 -0110010010 LEF&C 2 -0110010010 Albadoro 2 -0110010010 Semacap 2 -0110010010 EBRO 2 -0110010010 Audifi 2 -0110010010 Remy-Martin 2 -0110010010 Vendamerica 2 -0110010010 Swedpoint 2 -0110010010 DSP 2 -0110010010 VBL 2 -0110010010 GEBRUEDER 2 -0110010010 Netherlines 2 -0110010010 Monder 2 -0110010010 Siga 2 -0110010010 Queue 2 -0110010010 Cergnul 2 -0110010010 AMLO 2 -0110010010 Soundcraft 2 -0110010010 Amerihost 2 -0110010010 Anglovaal 2 -0110010010 Distiller 2 -0110010010 Hesta 2 -0110010010 PACCAR 2 -0110010010 Centrafarm 2 -0110010010 Caschem 2 -0110010010 NewTel 2 -0110010010 Immunization 2 -0110010010 Fairbear 2 -0110010010 Qualla 2 -0110010010 Plitt 2 -0110010010 Morrith 2 -0110010010 ATE 2 -0110010010 SHERWIN-WILLIAMS 2 -0110010010 Fox-Morris 2 -0110010010 Saint-Louis 2 -0110010010 GRANINGEVERKEN 2 -0110010010 Artemisia 2 -0110010010 Locke-Sweatman 2 -0110010010 DMR 2 -0110010010 HACHETTE 2 -0110010010 ACCOR 2 -0110010010 PULLMAN 2 -0110010010 Franklins 2 -0110010010 Unitron 2 -0110010010 Teksid 2 -0110010010 ChemLink 2 -0110010010 StanChart 2 -0110010010 NEWELL 2 -0110010010 Entrad 2 -0110010010 TELUGU 2 -0110010010 ManTech 2 -0110010010 Polychimie 2 -0110010010 ENGINEERED 2 -0110010010 Chem-Security 2 -0110010010 FlighTrak 2 -0110010010 Vocam 2 -0110010010 BonTon 2 -0110010010 Generra 2 -0110010010 American-Standard 2 -0110010010 Nedam 2 -0110010010 Alcar 2 -0110010010 JRM 2 -0110010010 L.A 2 -0110010010 Millenium 2 -0110010010 Sumitomo-Yale 2 -0110010010 CBS-Sony 2 -0110010010 Brooktrout 2 -0110010010 Nutri-Cheese 2 -0110010010 Simulations 2 -0110010010 Banacol 2 -0110010010 Tallant/Yates 2 -0110010010 KOPPERS 2 -0110010010 Insite 2 -0110010010 ALFA 2 -0110010010 SCHINDLER 2 -0110010010 FUNNY 2 -0110010010 Seeq 2 -0110010010 Asmo 2 -0110010010 Shama 2 -0110010010 GUTHRIE 2 -0110010010 Cinemerica 2 -0110010010 Mineweld 2 -0110010010 Amtek 2 -0110010010 Electro-Plating 2 -0110010010 Merlin-Gerin 2 -0110010010 ENERGIES 2 -0110010010 Ceres 2 -0110010010 H&J 2 -0110010010 DENTSU 2 -0110010010 Fata 2 -0110010010 Dataserv 2 -0110010010 Uniplex 2 -0110010010 Sunair 2 -0110010010 TMP 2 -0110010010 Dupee 3 -0110010010 Amatil 3 -0110010010 Nyambui 3 -0110010010 Espa 3 -0110010010 Digi 3 -0110010010 Incon 3 -0110010010 Cabletron 3 -0110010010 ALLIED-SIGNAL 3 -0110010010 Guerbet 3 -0110010010 Kedem 3 -0110010010 Pafinvest 3 -0110010010 Nocopi 3 -0110010010 Sunkyong 3 -0110010010 Dupey 3 -0110010010 PW-Allison 3 -0110010010 VISTA 3 -0110010010 Petroleo 3 -0110010010 BANCA 3 -0110010010 Equi-Cor 3 -0110010010 Bayberry 3 -0110010010 Willas 3 -0110010010 Houghton-Mifflin 3 -0110010010 Filmtrax 3 -0110010010 Norbay 3 -0110010010 ERO 3 -0110010010 POTLATCH 3 -0110010010 Whitehot 3 -0110010010 TUBE 3 -0110010010 RENT-A-CENTER 3 -0110010010 Sidmak 3 -0110010010 GM-Fanuc 3 -0110010010 Gatoil 3 -0110010010 Sanyang 3 -0110010010 INGERSOLL-RAND 3 -0110010010 Eurexpansion 3 -0110010010 OEC 3 -0110010010 YJR 3 -0110010010 H&T 3 -0110010010 Cafaro 3 -0110010010 Tatung 3 -0110010010 Aectra 3 -0110010010 BREL 3 -0110010010 Tessek 3 -0110010010 Senetek 3 -0110010010 Altech 3 -0110010010 Progas 3 -0110010010 Comart 3 -0110010010 Packerland 3 -0110010010 Maritrans 3 -0110010010 Neilsen 3 -0110010010 Jackson-Cross 3 -0110010010 Guiness 3 -0110010010 MITAC 3 -0110010010 Kellow-Brown 3 -0110010010 Tollman-Hundley 3 -0110010010 Theurer 3 -0110010010 BRNF 3 -0110010010 Kyotaru 3 -0110010010 Robertsons 3 -0110010010 CRANE 3 -0110010010 FLF 3 -0110010010 Craisec 3 -0110010010 GULL 3 -0110010010 Banff 3 -0110010010 Sogevalor 3 -0110010010 HOESCH 3 -0110010010 BENETTON 3 -0110010010 Corabi 3 -0110010010 Hypothermia 3 -0110010010 Vacharaphol 3 -0110010010 Rowley-Scher 3 -0110010010 Omnichem 3 -0110010010 Comprimo 3 -0110010010 Greenlee 3 -0110010010 Wurltech 3 -0110010010 Westan 3 -0110010010 Voicemail 3 -0110010010 Corange 3 -0110010010 Linair 3 -0110010010 Farra 3 -0110010010 Bioplan 3 -0110010010 Middlewest 3 -0110010010 Skandifond 3 -0110010010 EFS 3 -0110010010 Updyke 3 -0110010010 Videojet 3 -0110010010 DMA 3 -0110010010 Caetec 3 -0110010010 Holmens 3 -0110010010 WorldInvest 3 -0110010010 UMP 3 -0110010010 Ametex 3 -0110010010 Cynba 3 -0110010010 Nieman-Marcus 3 -0110010010 Smedvig 3 -0110010010 Tirrena 3 -0110010010 IndieProd 3 -0110010010 Alkaril 3 -0110010010 PAE 3 -0110010010 Haromu 3 -0110010010 Sino 3 -0110010010 Amedo 3 -0110010010 Glenex 3 -0110010010 Innogenetics 3 -0110010010 Sargento 3 -0110010010 Hardaway 3 -0110010010 EDC 3 -0110010010 Nantahala 3 -0110010010 Phicom 3 -0110010010 Oakley-Sutton 3 -0110010010 COMMERZBANK 3 -0110010010 Computerbase 3 -0110010010 Debenhams 3 -0110010010 Clevite-Bridgestone 3 -0110010010 RHIN-RHONE 3 -0110010010 Macrodyne 3 -0110010010 Bassak 3 -0110010010 Cistron 3 -0110010010 Scholarly 3 -0110010010 Terminix 3 -0110010010 Essington 3 -0110010010 Email 3 -0110010010 CKD 3 -0110010010 Sema-Metra 3 -0110010010 T.O.S. 3 -0110010010 Roxboro 3 -0110010010 Syva 3 -0110010010 Lantor 3 -0110010010 Asher/Gould 3 -0110010010 Permutit 3 -0110010010 McAhn 3 -0110010010 Sasol 3 -0110010010 Birla 3 -0110010010 McDuff 3 -0110010010 Taggares 3 -0110010010 KSI 3 -0110010010 MBf 3 -0110010010 Mendik 3 -0110010010 BPT 3 -0110010010 EMAIL 3 -0110010010 Softlab 3 -0110010010 Irlemp 3 -0110010010 Gotco 3 -0110010010 Sasea 3 -0110010010 GCR 3 -0110010010 Pan-American 3 -0110010010 Elta 3 -0110010010 Vulnax 3 -0110010010 Nobelpharma 3 -0110010010 Cercast 3 -0110010010 Anjou 3 -0110010010 Tasselli 3 -0110010010 Bertlesmann 3 -0110010010 Broere 3 -0110010010 Miller-Valentine 3 -0110010010 Parkmount 3 -0110010010 Oxted 3 -0110010010 Rock-Tenn 3 -0110010010 Kanebo 3 -0110010010 Nestar 3 -0110010010 GMI 3 -0110010010 Cetia 3 -0110010010 EWA 3 -0110010010 Barings 3 -0110010010 Cue 3 -0110010010 Grattan 3 -0110010010 ADI 3 -0110010010 Metra 3 -0110010010 M.A.S.T. 3 -0110010010 Monenco 3 -0110010010 Asix 3 -0110010010 Ruetgerswerke 3 -0110010010 ASDA-MFI 3 -0110010010 Frontec 3 -0110010010 Saarbergwerke 3 -0110010010 CIN 3 -0110010010 NMI 3 -0110010010 MidFirst 3 -0110010010 Cyklop 3 -0110010010 Bayswater 3 -0110010010 Gorman-Rupp 3 -0110010010 Nisshinbo 3 -0110010010 Unibanco 3 -0110010010 Acwoo 3 -0110010010 Carphone 3 -0110010010 Symphar 3 -0110010010 Stratos 3 -0110010010 IWC 3 -0110010010 Ametalco 3 -0110010010 Henlys 3 -0110010010 Mazer 3 -0110010010 Bridon 3 -0110010010 Deshen 3 -0110010010 Ohio-Ferro 3 -0110010010 Allmat 3 -0110010010 Victorinox 3 -0110010010 Sunprene 3 -0110010010 Inoco 3 -0110010010 Marketcorp 3 -0110010010 Southwark 3 -0110010010 WDL 3 -0110010010 SRS 3 -0110010010 CYBO 3 -0110010010 Nanomask 3 -0110010010 Vitromatic 3 -0110010010 Carless 3 -0110010010 Comalco 3 -0110010010 Rockwell-Rimoldi 3 -0110010010 Shoudu 3 -0110010010 Mitac 3 -0110010010 Rederi 3 -0110010010 ITEL 3 -0110010010 SEBA 3 -0110010010 Blomfield 3 -0110010010 Bongrain 3 -0110010010 Postbank 3 -0110010010 Novalta 3 -0110010010 Merbanco 3 -0110010010 Chromine 3 -0110010010 Descente 3 -0110010010 Tune-In 3 -0110010010 Bayernwerk 3 -0110010010 Selame 3 -0110010010 Ilva 3 -0110010010 Kuraray 3 -0110010010 Zukor 3 -0110010010 Storwall 3 -0110010010 Deutscher 3 -0110010010 Kinnett 3 -0110010010 Fulham 3 -0110010010 1,275,000 3 -0110010010 SoGen 3 -0110010010 Intercon 3 -0110010010 TJ 3 -0110010010 BDF 3 -0110010010 Ciba-Corning 3 -0110010010 Pay-Per-View 3 -0110010010 Feruzzi 3 -0110010010 Industriekreditbank 3 -0110010010 Renusagar 3 -0110010010 FC 3 -0110010010 WATTIE 3 -0110010010 Grillmaster 3 -0110010010 FINSIDER 3 -0110010010 Caronan 3 -0110010010 Summey 3 -0110010010 Paradene 3 -0110010010 Gemaire 3 -0110010010 Ceilcote 3 -0110010010 Cordin 3 -0110010010 Kushner-Locke 3 -0110010010 MOUNTLEIGH 3 -0110010010 Debron 3 -0110010010 Carnaud 3 -0110010010 Danzas 3 -0110010010 UNDERWOODS 3 -0110010010 Thermadyne 3 -0110010010 Ringier 4 -0110010010 Cellmark 4 -0110010010 SYO 4 -0110010010 Polymotor 4 -0110010010 guinness 4 -0110010010 Amylum 4 -0110010010 Wetex 4 -0110010010 UV 4 -0110010010 W.E.T. 4 -0110010010 Kockums 4 -0110010010 ANF 4 -0110010010 Dong-ah 4 -0110010010 Spitman 4 -0110010010 Bia-Cor 4 -0110010010 Selcore 4 -0110010010 UNR 4 -0110010010 Furnas 4 -0110010010 MacLaren 4 -0110010010 Canimp 4 -0110010010 Ares-Serono 4 -0110010010 Rayan 4 -0110010010 Ajay 4 -0110010010 Bayshore 4 -0110010010 Ergo 4 -0110010010 WII 4 -0110010010 EAL 4 -0110010010 Interlego 4 -0110010010 GP 4 -0110010010 ANB 4 -0110010010 Biosource 4 -0110010010 Cagle 4 -0110010010 Holophone 4 -0110010010 Tavora 4 -0110010010 Tri 4 -0110010010 RoyWest 4 -0110010010 Carrefour 4 -0110010010 Shasta 4 -0110010010 Panini 4 -0110010010 Linter 4 -0110010010 Forbo 4 -0110010010 Frost-Nevada 4 -0110010010 Klorin 4 -0110010010 Carboloy 4 -0110010010 BBA 4 -0110010010 UPJOHN 4 -0110010010 Metier 4 -0110010010 Fluoromed 4 -0110010010 Scopus 4 -0110010010 Bejam 4 -0110010010 SWT 4 -0110010010 HealthWays 4 -0110010010 QFB 4 -0110010010 PPGH 4 -0110010010 DeLonghi 4 -0110010010 Fodor 4 -0110010010 FCB 4 -0110010010 SVG 4 -0110010010 Chartwell 4 -0110010010 Gist-Brocades 4 -0110010010 Hofi 4 -0110010010 Deprenyl 4 -0110010010 Stern/Monroe 4 -0110010010 Trailmobile 4 -0110010010 Saztec 4 -0110010010 Syscorp 4 -0110010010 Albion 4 -0110010010 Southbury 4 -0110010010 Windfields 4 -0110010010 Kustom 4 -0110010010 Bakrie 4 -0110010010 Muiden-Chemie 4 -0110010010 Cayzer 4 -0110010010 CHC 4 -0110010010 Karkar 4 -0110010010 HD 4 -0110010010 Dista 4 -0110010010 Maclean-Hunter 4 -0110010010 Siboney 4 -0110010010 Killearn 4 -0110010010 Amev 4 -0110010010 Canopus 4 -0110010010 ALCATEL 4 -0110010010 Topgallant 4 -0110010010 Coditel 4 -0110010010 Careal 4 -0110010010 Kao-Didak 4 -0110010010 Rajawali 4 -0110010010 Saxpy 4 -0110010010 Dairylea 4 -0110010010 Semitek 4 -0110010010 Tropigas 4 -0110010010 Cardkey 4 -0110010010 Berlex 4 -0110010010 Cannons 4 -0110010010 EWE 4 -0110010010 Schreder 4 -0110010010 Robotool 4 -0110010010 Trans-Pan 4 -0110010010 Borman/Gray 4 -0110010010 Timberline 4 -0110010010 Hillards 4 -0110010010 Sofina 4 -0110010010 Abt 4 -0110010010 Wunderman 4 -0110010010 Pharmakinetics 4 -0110010010 Cinecom 4 -0110010010 BDS 4 -0110010010 Mahanagar 4 -0110010010 Trompeter 4 -0110010010 Suisun 4 -0110010010 Facit 4 -0110010010 R.A.B. 4 -0110010010 Pavion 4 -0110010010 Luz 4 -0110010010 Siossigeno 4 -0110010010 Comrealty 4 -0110010010 Quintex 4 -0110010010 Wella 4 -0110010010 Saipem 4 -0110010010 Novopharm 4 -0110010010 Comp-U-Card 4 -0110010010 Wcrs 4 -0110010010 Koba 4 -0110010010 Gescan 4 -0110010010 AIResearch 4 -0110010010 Ann-Margret 4 -0110010010 TIMKEN 4 -0110010010 Beaudril 4 -0110010010 Lawrie 4 -0110010010 UI 4 -0110010010 Transnuklear 4 -0110010010 Linc 4 -0110010010 Madill 4 -0110010010 KROGER 4 -0110010010 Sealright 4 -0110010010 LINDE 4 -0110010010 Kikusui 4 -0110010010 Tecolote 4 -0110010010 MRB 4 -0110010010 Volkswagenwerk 4 -0110010010 Ophthalmic 4 -0110010010 Fitzwilton 4 -0110010010 Tadiran 4 -0110010010 Racal-Redac 4 -0110010010 InterTrade 4 -0110010010 Transpharma 4 -0110010010 Ste-Genevieve 4 -0110010010 TMG 4 -0110010010 Kindness 4 -0110010010 Vanzetti 4 -0110010010 CSFB-Effectenbank 4 -0110010010 Pandair 4 -0110010010 Sammi 4 -0110010010 IIT 4 -0110010010 DAIHATSU 4 -0110010010 Ifil 4 -0110010010 Toyco 4 -0110010010 IEOC 4 -0110010010 TLI 4 -0110010010 MTECH 4 -0110010010 Fieldstone 4 -0110010010 D.P. 4 -0110010010 Austexport 4 -0110010010 Sanko 4 -0110010010 Egyptair 4 -0110010010 EIC 4 -0110010010 Lunar 4 -0110010010 Trenwick 4 -0110010010 Eastville 4 -0110010010 Dixilyn-Field 4 -0110010010 PUMA 4 -0110010010 Backroom 4 -0110010010 Kabivitrum 4 -0110010010 Gunlocke 4 -0110010010 Marketel 4 -0110010010 Amertex 4 -0110010010 Durr 4 -0110010010 Castex 4 -0110010010 Quadrum 4 -0110010010 Sovardino 4 -0110010010 Informetrica 4 -0110010010 Yukong 4 -0110010010 arms-maker 4 -0110010010 Binks 4 -0110010010 GME 4 -0110010010 SMD 4 -0110010010 KBA 4 -0110010010 HonFed 4 -0110010010 ULTRAMAR 4 -0110010010 Hoescht 4 -0110010010 Zanuck/Brown 4 -0110010010 Nitsuko 4 -0110010010 Aisin 4 -0110010010 Graycliff 4 -0110010010 Fiap 4 -0110010010 ASDA 4 -0110010010 Moorgate 4 -0110010010 CoastFed 4 -0110010010 Hytek 4 -0110010010 Boursin 4 -0110010010 Mangrove 4 -0110010010 TODD 4 -0110010010 WD-40 4 -0110010010 Cybermedix 4 -0110010010 Trine 4 -0110010010 H&M 4 -0110010010 M.A.N. 5 -0110010010 Optionsmaeklarna 5 -0110010010 Imparc 5 -0110010010 MSP 5 -0110010010 Sulbath 5 -0110010010 Minox 5 -0110010010 W-L 5 -0110010010 Baupost 5 -0110010010 Tuscarora 5 -0110010010 Designhouse 5 -0110010010 Whitestone 5 -0110010010 Tartar 5 -0110010010 Sunbank 5 -0110010010 Vigilant 5 -0110010010 ARK 5 -0110010010 Clevebaco 5 -0110010010 Audio-Video 5 -0110010010 Glenborough 5 -0110010010 Ropart 5 -0110010010 KfW 5 -0110010010 HCS 5 -0110010010 Charms 5 -0110010010 Continuous 5 -0110010010 Cinamerica 5 -0110010010 BeautiControl 5 -0110010010 Weightman 5 -0110010010 Sludge 5 -0110010010 Sonrise 5 -0110010010 Datachecker 5 -0110010010 Adaptive 5 -0110010010 Kinkead 5 -0110010010 CreditBanc 5 -0110010010 Cristallina 5 -0110010010 BDR 5 -0110010010 WMG 5 -0110010010 Telesensory 5 -0110010010 WM 5 -0110010010 XTC 5 -0110010010 Asuka 5 -0110010010 Vorias 5 -0110010010 Hochtief 5 -0110010010 MicroProse 5 -0110010010 Wescol 5 -0110010010 Laaco 5 -0110010010 Kanematsu-Gosho 5 -0110010010 Clearpoint 5 -0110010010 Messerschmitt-Bolkow-Blohm 5 -0110010010 Umpqua 5 -0110010010 TPS 5 -0110010010 Antibioticos 5 -0110010010 SUZUKI 5 -0110010010 PPN 5 -0110010010 Riblet 5 -0110010010 BSB 5 -0110010010 Input 5 -0110010010 Moelnlycke 5 -0110010010 Petrochemicals 5 -0110010010 Phebo 5 -0110010010 Twyford 5 -0110010010 Ziba 5 -0110010010 DCC 5 -0110010010 Barnwell 5 -0110010010 BTU 5 -0110010010 Ellistan 5 -0110010010 Glastic 5 -0110010010 Webcott 5 -0110010010 WSGP 5 -0110010010 Intersec 5 -0110010010 Bio-Electro 5 -0110010010 BIC 5 -0110010010 Shidler 5 -0110010010 Lorilleux 5 -0110010010 Arup 5 -0110010010 Antica 5 -0110010010 Aska 5 -0110010010 Dan-Air 5 -0110010010 Carter-Glogau 5 -0110010010 Sema-Matra 5 -0110010010 HUDSON 5 -0110010010 RHM 5 -0110010010 Protexa 5 -0110010010 Playball 5 -0110010010 Bandai 5 -0110010010 Sealion 5 -0110010010 MI 5 -0110010010 AZL 5 -0110010010 Bioengineering 5 -0110010010 SEAGRAM 5 -0110010010 ProGas 5 -0110010010 Ansco 5 -0110010010 Columbine 5 -0110010010 Marzotto 5 -0110010010 Nonoc 5 -0110010010 Hitech 5 -0110010010 Miller-Klutznick-Davis-Gray 5 -0110010010 Canamax 5 -0110010010 CIGNA 5 -0110010010 KabiVitrum 5 -0110010010 Pluspetrol 5 -0110010010 XEROX 5 -0110010010 ZeroOne 5 -0110010010 SGB 5 -0110010010 Dixieline 5 -0110010010 SCHERING 5 -0110010010 Europcar 5 -0110010010 SQUIBB 5 -0110010010 VIAG 5 -0110010010 Avatar 5 -0110010010 LION 5 -0110010010 ACEC 5 -0110010010 Kaolin 5 -0110010010 Apricot 5 -0110010010 Jamco 5 -0110010010 MK-Ferguson 5 -0110010010 FFV 5 -0110010010 Avcorp 5 -0110010010 Iscor 5 -0110010010 GENCORP 5 -0110010010 Kaisertech 5 -0110010010 Birdview 5 -0110010010 Croesus 5 -0110010010 LEGRAND 5 -0110010010 Trebor 5 -0110010010 Grandview 5 -0110010010 Kennington 5 -0110010010 LSB 5 -0110010010 Finning 5 -0110010010 Paravision 5 -0110010010 RCA/Columbia 5 -0110010010 Manoil 5 -0110010010 Lesieur-Cotelle 5 -0110010010 Structured 5 -0110010010 Aneco 5 -0110010010 Fofo 5 -0110010010 Riker 5 -0110010010 IBL 5 -0110010010 Bilbao-Vizcaya 5 -0110010010 Gavilan 5 -0110010010 Agusta 5 -0110010010 Emess 5 -0110010010 Decoma 5 -0110010010 Andor 5 -0110010010 JBM 5 -0110010010 Apoyo 5 -0110010010 Southbrook 5 -0110010010 CompuCom 5 -0110010010 Keg 5 -0110010010 Neslemur 5 -0110010010 QMax 5 -0110010010 Fastenal 5 -0110010010 Glaverbel 5 -0110010010 C-Cor 5 -0110010010 Feltex 5 -0110010010 Betz 6 -0110010010 Winterland 6 -0110010010 Broadbeach 6 -0110010010 BMT 6 -0110010010 FUJITSU 6 -0110010010 CVB 6 -0110010010 DuroTest 6 -0110010010 Tele 6 -0110010010 PSI 6 -0110010010 Jatel 6 -0110010010 REDLAND 6 -0110010010 Hazelton 6 -0110010010 ElectroCom 6 -0110010010 TechAmerica 6 -0110010010 I.M.P. 6 -0110010010 Ralston-Purina 6 -0110010010 Carisbrook 6 -0110010010 EXTEL 6 -0110010010 Teijin 6 -0110010010 Mercatura 6 -0110010010 Coseka 6 -0110010010 Veuve 6 -0110010010 Disston 6 -0110010010 Inter-Pacific 6 -0110010010 Kebo 6 -0110010010 Krauss-Maffei 6 -0110010010 Alcoholic 6 -0110010010 Benckiser 6 -0110010010 SAINT-GOBAIN 6 -0110010010 PanCana 6 -0110010010 Masterman 6 -0110010010 LawPlan 6 -0110010010 GILLETTE 6 -0110010010 Tootal 6 -0110010010 MATRA 6 -0110010010 KD 6 -0110010010 Usinor 6 -0110010010 Prime-Coat 6 -0110010010 Amada 6 -0110010010 Altex 6 -0110010010 186,000 6 -0110010010 P.A.M. 6 -0110010010 TAG 6 -0110010010 Magistrates 6 -0110010010 DH 6 -0110010010 Orkem 6 -0110010010 Scallop 6 -0110010010 Girobank 6 -0110010010 Infodata 6 -0110010010 Yearpledge 6 -0110010010 Hypoint 6 -0110010010 Curragh 6 -0110010010 Wessanen 6 -0110010010 Ache 6 -0110010010 Kenaf 6 -0110010010 Cygnus 6 -0110010010 Paladin 6 -0110010010 Merksamer 6 -0110010010 TRICENTROL 6 -0110010010 SDA 6 -0110010010 FN 6 -0110010010 ASM 6 -0110010010 Nisker 6 -0110010010 Lesieur 6 -0110010010 Cotelle 6 -0110010010 BVL 6 -0110010010 JACOBS 6 -0110010010 Webcor 6 -0110010010 Wartsila 6 -0110010010 Cosipa 6 -0110010010 RealCap 6 -0110010010 Secor 6 -0110010010 XOMA 6 -0110010010 JMB/Federated 6 -0110010010 All-North 6 -0110010010 Schiess 6 -0110010010 Rayrock 6 -0110010010 SHARP 6 -0110010010 Martin/Williams 6 -0110010010 Healthco 6 -0110010010 Organon 6 -0110010010 Rax 6 -0110010010 Kinder 6 -0110010010 Protex 6 -0110010010 VJN 6 -0110010010 Aloka 6 -0110010010 NOBEL 6 -0110010010 GMFanuc 6 -0110010010 Infante 6 -0110010010 BARCLAYS 6 -0110010010 Allenvest 6 -0110010010 Carlsberg 6 -0110010010 Forsayth 6 -0110010010 Tye 6 -0110010010 Columbian 6 -0110010010 Unison 6 -0110010010 Mechtron 6 -0110010010 Pioneer-Standard 6 -0110010010 Compass 6 -0110010010 Hema 6 -0110010010 MetLife 6 -0110010010 Cadence 6 -0110010010 FLETCHER 6 -0110010010 Televents 6 -0110010010 BENEDICTINE 6 -0110010010 AFA 6 -0110010010 GSD&M 6 -0110010010 Millbrook 6 -0110010010 PrimeBank 6 -0110010010 Fibronics 6 -0110010010 RXR 6 -0110010010 STOREHOUSE 6 -0110010010 Inageya 6 -0110010010 Lopat 6 -0110010010 Inacomp 6 -0110010010 Petrosar 6 -0110010010 Caiola 6 -0110010010 COCA-COLA 6 -0110010010 Tsugami 6 -0110010010 CMB 6 -0110010010 Sithe-Energies 6 -0110010010 DKB 6 -0110010010 Interstrat 6 -0110010010 NORTHROP 6 -0110010010 Novametrix 7 -0110010010 Elron 7 -0110010010 CIBA-GEIGY 7 -0110010010 Cecos 7 -0110010010 Huntco 7 -0110010010 CitiSteel 7 -0110010010 Taneyev 7 -0110010010 EastGroup 7 -0110010010 TFBA 7 -0110010010 Piaget 7 -0110010010 DMW 7 -0110010010 PAT 7 -0110010010 Banknorth 7 -0110010010 McCorquodale 7 -0110010010 Arnell/Bickford 7 -0110010010 Libbey-Owens-Ford 7 -0110010010 Harleysville 7 -0110010010 Laurdan 7 -0110010010 GPG 7 -0110010010 FREEMANS 7 -0110010010 AAP 7 -0110010010 PILKINGTON 7 -0110010010 IFIL 7 -0110010010 ICF 7 -0110010010 Caradon 7 -0110010010 Selm 7 -0110010010 Accent 7 -0110010010 Leasco 7 -0110010010 Detox 7 -0110010010 TRANSPORTATION 7 -0110010010 JLG 7 -0110010010 Montenay 7 -0110010010 Lowrance 7 -0110010010 Beddors 7 -0110010010 Panfida 7 -0110010010 IATA 7 -0110010010 Harrods 7 -0110010010 KOP 7 -0110010010 INCO 7 -0110010010 Stolt 7 -0110010010 Medstat 7 -0110010010 Labinal 7 -0110010010 Texstar 7 -0110010010 BJ-Titan 7 -0110010010 Perugina 7 -0110010010 Cobe 7 -0110010010 S-K-I 7 -0110010010 Lurgi 7 -0110010010 Marquest 7 -0110010010 Gurit-Essex 7 -0110010010 InterContinental 7 -0110010010 MedMaster 7 -0110010010 Micros 7 -0110010010 d-Con 7 -0110010010 MRS 7 -0110010010 HRB 7 -0110010010 Fujikura 7 -0110010010 Avdel 7 -0110010010 Takashimaya 7 -0110010010 JAGUAR 7 -0110010010 Mentholatum 7 -0110010010 Sourcing 7 -0110010010 Data-Design 7 -0110010010 Grubstein 7 -0110010010 Harland 7 -0110010010 Transway 7 -0110010010 Asbestec 7 -0110010010 WNW 7 -0110010010 Brascade 7 -0110010010 Cluett-Peabody 7 -0110010010 Agassiz 7 -0110010010 NVRyan 7 -0110010010 KBGS 7 -0110010010 Michie 7 -0110010010 Twiglet 7 -0110010010 Heilig-Meyers 7 -0110010010 Occupational-Urgent 7 -0110010010 Portal 7 -0110010010 Kuney 7 -0110010010 Sellier 7 -0110010010 UMC 7 -0110010010 Jetborne 7 -0110010010 Beijer 7 -0110010010 Myson 7 -0110010010 NPM 7 -0110010010 Hanjin 7 -0110010010 Germania 7 -0110010010 Meggitt 7 -0110010010 AMEV 7 -0110010010 BEC 7 -0110010010 Grid 7 -0110010010 Capitalcorp 7 -0110010010 Newgateway 7 -0110010010 Goodtab 7 -0110010010 Skanska 7 -0110010010 THYSSEN 7 -0110010010 Boral 7 -0110010010 Gemina 7 -0110010010 Plexus 7 -0110010010 Safco 7 -0110010010 Adra 7 -0110010010 PDA 7 -0110010010 Dic 7 -0110010010 Handleman 7 -0110010010 Bogues 7 -0110010010 LONRHO 7 -0110010010 Hanna-Barbera 7 -0110010010 BancServe 7 -0110010010 DIM 7 -0110010010 NetFrame 7 -0110010010 SAAB-SCANIA 7 -0110010010 Conder 7 -0110010010 Metrobank 7 -0110010010 Anaconda 7 -0110010010 Konishiroku 7 -0110010010 CI 7 -0110010010 Bunzl 7 -0110010010 Chefs 8 -0110010010 Sym-Tek 8 -0110010010 Polycast 8 -0110010010 Marui 8 -0110010010 Conifer 8 -0110010010 Aiwa 8 -0110010010 AVAQ 8 -0110010010 DYR 8 -0110010010 Logica 8 -0110010010 Modular 8 -0110010010 PEARSON 8 -0110010010 Diagnostic/Retrieval 8 -0110010010 MCM 8 -0110010010 RHONE-POULENC 8 -0110010010 Texcel 8 -0110010010 Peko-Wallsend 8 -0110010010 ENTE 8 -0110010010 Embraer 8 -0110010010 CACI 8 -0110010010 FERRUZZI 8 -0110010010 Whitemont 8 -0110010010 Sonoco 8 -0110010010 Meson 8 -0110010010 PIP 8 -0110010010 Multimate 8 -0110010010 Faraday 8 -0110010010 Drackett 8 -0110010010 QO 8 -0110010010 Gambro 8 -0110010010 Alfa-Laval 8 -0110010010 J.D.S. 8 -0110010010 Helix 8 -0110010010 PORSCHE 8 -0110010010 AKZO 8 -0110010010 Superdrug 8 -0110010010 TENN-USS 8 -0110010010 CJM 8 -0110010010 Genlyte 8 -0110010010 BL 8 -0110010010 MANNESMANN 8 -0110010010 Paloma 8 -0110010010 Athena 8 -0110010010 Tyndall 8 -0110010010 BRIERLEY 8 -0110010010 Doyon 8 -0110010010 Klynveld 8 -0110010010 D&R 8 -0110010010 Safecard 8 -0110010010 Petrosynthese 8 -0110010010 Sabaudia 8 -0110010010 Exel 8 -0110010010 Abrams/Gentile 8 -0110010010 Paramax 8 -0110010010 RealAmerica 8 -0110010010 REED 8 -0110010010 Decom 8 -0110010010 Rhoto 8 -0110010010 ArtCarved 8 -0110010010 Rockrose 8 -0110010010 Carello 8 -0110010010 LPC 8 -0110010010 NCC 8 -0110010010 EDP 8 -0110010010 Sedco 8 -0110010010 Grundig 8 -0110010010 Secom 8 -0110010010 IBIS 8 -0110010010 Cogeco 8 -0110010010 Fasig-Tipton 8 -0110010010 Marmac 8 -0110010010 Zotos 8 -0110010010 STATOIL 8 -0110010010 Proventus 8 -0110010010 Ifint 8 -0110010010 Finmeccanica 8 -0110010010 JMR 8 -0110010010 Seabright 8 -0110010010 KCS 8 -0110010010 Amerifirst 8 -0110010010 MC 8 -0110010010 WILLIAMS 8 -0110010010 ROWNTREE 8 -0110010010 Oceaneering 8 -0110010010 Florafax 9 -0110010010 Nippondenso 9 -0110010010 Toyobo 9 -0110010010 VM 9 -0110010010 Luxor 9 -0110010010 Pembina 9 -0110010010 Fresenius 9 -0110010010 Optek 9 -0110010010 D.O.C. 9 -0110010010 Bricom 9 -0110010010 Envirosafe 9 -0110010010 B&O 9 -0110010010 EniChem 9 -0110010010 Proximity 9 -0110010010 ContiCommodity 9 -0110010010 Westside 9 -0110010010 Centram 9 -0110010010 Comtrex 9 -0110010010 Petainer 9 -0110010010 MetroBanc 9 -0110010010 HON 9 -0110010010 Poclain 9 -0110010010 CLC 9 -0110010010 ECL 9 -0110010010 Parke-Davis 9 -0110010010 Hycroft 9 -0110010010 Tooth 9 -0110010010 ALLIED-LYONS 9 -0110010010 Toto 9 -0110010010 Rediffusion 9 -0110010010 Aancor 9 -0110010010 Moulinex 9 -0110010010 JC 9 -0110010010 Gousha 9 -0110010010 Carborundum 9 -0110010010 Datron 9 -0110010010 Transohio 9 -0110010010 SEEQ 9 -0110010010 OMV 9 -0110010010 DME 9 -0110010010 FKB 9 -0110010010 BDDP 9 -0110010010 Pathonic 9 -0110010010 Mediamark 9 -0110010010 VPI 9 -0110010010 MoneyCard 9 -0110010010 SANDOZ 9 -0110010010 Cilva 9 -0110010010 Ansaldo 9 -0110010010 Gene-Trak 9 -0110010010 WOOLWORTH 9 -0110010010 Agra 9 -0110010010 Kingfisher 9 -0110010010 ISS 10 -0110010010 Richemont 10 -0110010010 BRE 10 -0110010010 Marmon 10 -0110010010 I.M.S. 10 -0110010010 Pengo 10 -0110010010 BEI 10 -0110010010 Rostuca 10 -0110010010 Worldvision 10 -0110010010 SOUTHLAND 10 -0110010010 PEUGEOT 10 -0110010010 JTM 10 -0110010010 Mesta 10 -0110010010 Ruberoid 10 -0110010010 EA 10 -0110010010 MEM 10 -0110010010 Crowborough 10 -0110010010 AEG-Telefunken 10 -0110010010 Alizac 10 -0110010010 IPM 10 -0110010010 Gilbreth 10 -0110010010 TELEFON 10 -0110010010 DeVilbiss 10 -0110010010 Bekaert 10 -0110010010 Dim 10 -0110010010 Bemis 10 -0110010010 Imprimis 10 -0110010010 AC&R 10 -0110010010 Micropro 10 -0110010010 McGraw-Edison 10 -0110010010 Lep 10 -0110010010 Telematics 10 -0110010010 Zanussi 10 -0110010010 Gencor 10 -0110010010 Stansbury 10 -0110010010 SFE 10 -0110010010 EDM 10 -0110010010 Chujitsuya 10 -0110010010 SBK 10 -0110010010 Bulova 10 -0110010010 Inchcape 10 -0110010010 HPB 10 -0110010010 Abcotek 10 -0110010010 Moosehead 10 -0110010010 DEE 10 -0110010010 Methode 10 -0110010010 VEBA 10 -0110010010 Cinram 10 -0110010010 T&N 10 -0110010010 KPMG 10 -0110010010 OKC 10 -0110010010 RECO 10 -0110010010 Telit 10 -0110010010 Alcon 10 -0110010010 Statewide 10 -0110010010 Fawcett 10 -0110010010 Boliden 10 -0110010010 Decorator 10 -0110010010 STET 10 -0110010010 Interpore 10 -0110010010 Clematis 10 -0110010010 Cros 10 -0110010010 Marbil 10 -0110010010 Ficom 10 -0110010010 Harris-Teeter 10 -0110010010 Glidden 10 -0110010010 AEP 10 -0110010010 RANKS 10 -0110010010 Morlan 10 -0110010010 ELSEVIER 10 -0110010010 KLUWER 10 -0110010010 Everex 10 -0110010010 Assubel 11 -0110010010 Grosvenor 11 -0110010010 Pipetec 11 -0110010010 Oasis 11 -0110010010 Scintilore 11 -0110010010 Roussel-Uclaf 11 -0110010010 Feltrax 11 -0110010010 SONY 11 -0110010010 NPD 11 -0110010010 MICC 11 -0110010010 Zeus 11 -0110010010 Konsultat 11 -0110010010 ALLIED 11 -0110010010 Kanghua 11 -0110010010 UNILEVER 11 -0110010010 Fujiya 11 -0110010010 NSM 11 -0110010010 CES 11 -0110010010 Eksportfinans 11 -0110010010 GPD 11 -0110010010 Okabe 11 -0110010010 AgriVisor 11 -0110010010 CAMPEAU 11 -0110010010 Voest-Alpine 11 -0110010010 Tri-County 11 -0110010010 Raine 11 -0110010010 Orogil 11 -0110010010 Mennen 11 -0110010010 Bowcan 11 -0110010010 PharmaKinetics 11 -0110010010 Rex-PT 11 -0110010010 Gechem 11 -0110010010 Ladish 11 -0110010010 GRiD 11 -0110010010 FRAMATOME 11 -0110010010 Hoskyns 11 -0110010010 Intex 11 -0110010010 Addington 11 -0110010010 TriStar 11 -0110010010 Bekins 11 -0110010010 Cockerill-Sambre 11 -0110010010 Erly 11 -0110010010 GB-Inno-BM 11 -0110010010 BGS 11 -0110010010 Ertl 11 -0110010010 Standex 11 -0110010010 Incom 11 -0110010010 Sapporo 11 -0110010010 BCM 11 -0110010010 Heldor 11 -0110010010 Wicat 11 -0110010010 Sonex 11 -0110010010 SFC 11 -0110010010 Wyle 11 -0110010010 Galt 11 -0110010010 Nedlloyd 11 -0110010010 Times-Mirror 11 -0110010010 Amerford 11 -0110010010 C&S 11 -0110010010 Dalgety 11 -0110010010 Rowenta 11 -0110010010 Landbank 11 -0110010010 Leeco 11 -0110010010 Saurer 11 -0110010010 C&P 11 -0110010010 Thorn-EMI 12 -0110010010 Stiffel 12 -0110010010 BRITOIL 12 -0110010010 ISM 12 -0110010010 Wiltron 12 -0110010010 Behringwerke 12 -0110010010 Constar 12 -0110010010 IMG 12 -0110010010 Accor 12 -0110010010 Biocine 12 -0110010010 Sega 12 -0110010010 SmartCard 12 -0110010010 Bison 12 -0110010010 Heinold 12 -0110010010 Payload 12 -0110010010 FCD 12 -0110010010 ASSUBEL-VIE 12 -0110010010 Detector 12 -0110010010 Astrophysics 12 -0110010010 Troon 12 -0110010010 Clydesdale 12 -0110010010 TreeSweet 12 -0110010010 Napco 12 -0110010010 MDC 12 -0110010010 Finarte 12 -0110010010 MBS 12 -0110010010 Transrapid 12 -0110010010 Modine 12 -0110010010 Buehler 12 -0110010010 Gilead 12 -0110010010 Massey-Ferguson 12 -0110010010 TRIG 12 -0110010010 Riverbend 12 -0110010010 Altus 12 -0110010010 Snap-On 12 -0110010010 Lockheed-Georgia 12 -0110010010 Pennex 12 -0110010010 BAYER 12 -0110010010 ASSICURAZIONI 12 -0110010010 Tenglemann 12 -0110010010 KMW 12 -0110010010 Spie 12 -0110010010 Bio-Rad 12 -0110010010 WordStar 12 -0110010010 U.E. 12 -0110010010 Arcata 12 -0110010010 Heritage-NIS 12 -0110010010 OMI 13 -0110010010 Kaysersberg 13 -0110010010 EBS 13 -0110010010 Checkpoint 13 -0110010010 Friendswood 13 -0110010010 OPT 13 -0110010010 Hiway 13 -0110010010 Lockheed-California 13 -0110010010 Nasco 13 -0110010010 DeLaurentiis 13 -0110010010 Octopus 13 -0110010010 Acer 13 -0110010010 Groundwater 13 -0110010010 Powercise 13 -0110010010 Plenmeer 13 -0110010010 Mor-Flo 13 -0110010010 Rapoca 13 -0110010010 WestFed 13 -0110010010 Sfernice 13 -0110010010 Aeritalia 13 -0110010010 Watkins-Johnson 13 -0110010010 Penwest 13 -0110010010 GEO 13 -0110010010 CyCare 13 -0110010010 Frontiers-Alaska 13 -0110010010 Stuart-James 13 -0110010010 RMC 13 -0110010010 Coronet 13 -0110010010 Geac 13 -0110010010 Dowty 13 -0110010010 Purex 13 -0110010010 Schwinn 13 -0110010010 Designcraft 13 -0110010010 Transtector 13 -0110010010 Graningeverken 13 -0110010010 Robeson 13 -0110010010 Lummus 13 -0110010010 U.E.I. 13 -0110010010 Ero 13 -0110010010 Beco 13 -0110010010 Blenheim 13 -0110010010 PLESSEY 13 -0110010010 Ruhrgas 13 -0110010010 Almys 13 -0110010010 Kloeckner-Werke 13 -0110010010 Ormand 13 -0110010010 EUROTUNNEL 13 -0110010010 Apogee 13 -0110010010 Hermes 13 -0110010010 Lawter 13 -0110010010 Telettra 13 -0110010010 Burda 13 -0110010010 ROLLS-ROYCE 13 -0110010010 Solitron 13 -0110010010 Pawnee 13 -0110010010 Moore-McCormack 13 -0110010010 Dense-Pac 14 -0110010010 Pietro 14 -0110010010 Espey 14 -0110010010 Pocket 14 -0110010010 Asko 14 -0110010010 Tesco 14 -0110010010 Seiyu 14 -0110010010 CTI 14 -0110010010 Pacholder 14 -0110010010 Camro 14 -0110010010 Mojo 14 -0110010010 Sedgwick 14 -0110010010 Sifco 14 -0110010010 TMOC 14 -0110010010 PI 14 -0110010010 ORI 14 -0110010010 MHI 14 -0110010010 Winterthur 14 -0110010010 Varitronic 14 -0110010010 Asda 14 -0110010010 Siebe 14 -0110010010 MB 14 -0110010010 Acco 14 -0110010010 GMF 14 -0110010010 HOECHST 14 -0110010010 Igene 14 -0110010010 Euromoney 14 -0110010010 Forschner 14 -0110010010 PCM 14 -0110010010 Qmax 14 -0110010010 Keebler 14 -0110010010 Tulip 14 -0110010010 AFP 14 -0110010010 Hambro 14 -0110010010 Arley 14 -0110010010 Maybelline 14 -0110010010 SKF 14 -0110010010 Cosma 14 -0110010010 Mast 14 -0110010010 Fluorocarbon 14 -0110010010 Campofrio 14 -0110010010 Koll 14 -0110010010 Pembridge 14 -0110010010 Lucasfilm 14 -0110010010 InterDyne 14 -0110010010 Abaco 14 -0110010010 TELEMECANIQUE 14 -0110010010 UEI 14 -0110010010 Hydraulic 14 -0110010010 Telectronics 15 -0110010010 Gruen 15 -0110010010 Cardiac 15 -0110010010 SIEMENS 15 -0110010010 Weldwood 15 -0110010010 Galveston-Houston 15 -0110010010 Jordache 15 -0110010010 SAI 15 -0110010010 BroadBeach 15 -0110010010 GriD 15 -0110010010 Manischewitz 15 -0110010010 SunPoint 15 -0110010010 Evergood 15 -0110010010 Broderbund 15 -0110010010 ChinTung 15 -0110010010 Boddington 15 -0110010010 Halcyon 15 -0110010010 Suncook 15 -0110010010 Threshold 15 -0110010010 Sumter 15 -0110010010 Modelo 15 -0110010010 Finalco 15 -0110010010 Wendt-Bristol 15 -0110010010 Wiland 15 -0110010010 Presto 15 -0110010010 Aberford 15 -0110010010 Wyeth-Ayerst 15 -0110010010 Comfinance 15 -0110010010 Lex 15 -0110010010 Beghin-Say 15 -0110010010 Atco 15 -0110010010 ERG 16 -0110010010 Amro 16 -0110010010 Weider 16 -0110010010 R.B. 16 -0110010010 Manitowoc 16 -0110010010 Amblin 16 -0110010010 Modulaire 16 -0110010010 Looart 16 -0110010010 Connoisseur 16 -0110010010 Amca 16 -0110010010 SEARS 16 -0110010010 Riverhead 16 -0110010010 Zeta 16 -0110010010 Metaphor 16 -0110010010 Enex 16 -0110010010 Ellesse 16 -0110010010 Continuum 16 -0110010010 TR 16 -0110010010 Orient-Express 16 -0110010010 Develcon 16 -0110010010 Nutri-Metics 16 -0110010010 Accel 16 -0110010010 WGBH 16 -0110010010 Mainichi 16 -0110010010 Signet 16 -0110010010 BPI 16 -0110010010 DAEWOO 16 -0110010010 Hyster 16 -0110010010 Bralorne 16 -0110010010 Auxton 16 -0110010010 SGS-Thomson 16 -0110010010 Kredietbank 16 -0110010010 Arbed 16 -0110010010 Nasta 16 -0110010010 MSA 17 -0110010010 Paperback 17 -0110010010 Christies 17 -0110010010 Energas 17 -0110010010 Wyman-Gordon 17 -0110010010 Metro-Goldwyn-Mayer 17 -0110010010 Richco 17 -0110010010 FHP 17 -0110010010 Landor 17 -0110010010 Campbell-Mithun 17 -0110010010 Proler 17 -0110010010 VTX 17 -0110010010 Relational 17 -0110010010 NESTLE 17 -0110010010 Jusco 17 -0110010010 Lam 17 -0110010010 Guardsman 17 -0110010010 TeleVideo 17 -0110010010 Richton 17 -0110010010 Scribe 17 -0110010010 TCA-IV 17 -0110010010 Vesta 17 -0110010010 Cookson 17 -0110010010 Interlink 17 -0110010010 Entre 17 -0110010010 Parkside 17 -0110010010 RAM 17 -0110010010 MITSUBISHI 17 -0110010010 Cogema 17 -0110010010 Enigma 17 -0110010010 Lucky-Goldstar 17 -0110010010 Mitsukoshi 17 -0110010010 Advent 17 -0110010010 Emigrant 17 -0110010010 Halston 18 -0110010010 Park-Ohio 18 -0110010010 PNB 18 -0110010010 RMS 18 -0110010010 GNI 18 -0110010010 Natomas 18 -0110010010 WTC 18 -0110010010 BEA 18 -0110010010 Crush 18 -0110010010 OAG 18 -0110010010 Ayerst 18 -0110010010 TBK 18 -0110010010 Minebea 18 -0110010010 Hillsdown 18 -0110010010 Teleprobe 18 -0110010010 Daishowa 18 -0110010010 SCHNEIDER 18 -0110010010 Procordia 18 -0110010010 Ito-Yokado 18 -0110010010 Metallgesellschaft 18 -0110010010 KSZ 18 -0110010010 LCP 18 -0110010010 Softsoap 18 -0110010010 NHK 18 -0110010010 DAIMLER-BENZ 18 -0110010010 Intelco 18 -0110010010 Beiersdorf 18 -0110010010 Starpointe 18 -0110010010 THOMSON 18 -0110010010 Drillbit 18 -0110010010 Hazleton 18 -0110010010 Ebro 18 -0110010010 P&O 18 -0110010010 ServiceMaster 18 -0110010010 ILC 18 -0110010010 SportsChannel 18 -0110010010 ISL 18 -0110010010 Eljer 18 -0110010010 PT 18 -0110010010 Duriron 18 -0110010010 Societa 19 -0110010010 Culligan 19 -0110010010 TBS 19 -0110010010 Poseidon 19 -0110010010 CGS 19 -0110010010 Leyland 19 -0110010010 Perrigo 19 -0110010010 Ratier-Forest 19 -0110010010 FlightSafety 19 -0110010010 Calgroup 19 -0110010010 Tierco 19 -0110010010 Blendax 19 -0110010010 S.O.Q. 19 -0110010010 Alamito 19 -0110010010 Amersham 19 -0110010010 Dolby 19 -0110010010 JVC/Victor 19 -0110010010 HRE 19 -0110010010 Ceco 19 -0110010010 Ebasco 19 -0110010010 PHH 19 -0110010010 IMI 19 -0110010010 Datarex 19 -0110010010 Paperboard 19 -0110010010 FERMENTA 19 -0110010010 CPM 19 -0110010010 TNP 19 -0110010010 TA 19 -0110010010 MacPherson 19 -0110010010 Tanabe 20 -0110010010 Wells-Gardner 20 -0110010010 VLSI 20 -0110010010 Valor 20 -0110010010 Wardley 20 -0110010010 Repap 20 -0110010010 Hi-Port 20 -0110010010 Biovest 20 -0110010010 C&W 20 -0110010010 SCA 20 -0110010010 Mediplex 20 -0110010010 CUC 20 -0110010010 Air-Shuttle 20 -0110010010 BSD 20 -0110010010 Freshbake 20 -0110010010 Mosaic 20 -0110010010 Chargeurs 20 -0110010010 Manic 20 -0110010010 BET 20 -0110010010 DAF 20 -0110010010 HG 20 -0110010010 U-Haul 20 -0110010010 CA 20 -0110010010 Reliable 20 -0110010010 Ampal 20 -0110010010 MONTEDISON 20 -0110010010 Comptek 20 -0110010010 Repsol 20 -0110010010 Sizzler 20 -0110010010 Campbell-Mithun-Esty 20 -0110010010 Aegon 20 -0110010010 Vendo 20 -0110010010 IFR 21 -0110010010 GROUPE 21 -0110010010 Doman 21 -0110010010 Kloeckner-Humboldt-Deutz 21 -0110010010 Benel 21 -0110010010 Telco 21 -0110010010 Rockport 21 -0110010010 MGI 21 -0110010010 Frequency 21 -0110010010 PCL 21 -0110010010 Cemp 21 -0110010010 Pargesa 21 -0110010010 Wedgestone 21 -0110010010 Wurlitzer 21 -0110010010 ElectroSound 21 -0110010010 USACafes 21 -0110010010 Greiner 21 -0110010010 Analog 21 -0110010010 Williamsburgh 21 -0110010010 Meston 21 -0110010010 Hall-Mark 21 -0110010010 PCA 21 -0110010010 Lodestar 21 -0110010010 IBC 21 -0110010010 Shiseido 21 -0110010010 Tribeca 22 -0110010010 Publicis 22 -0110010010 Dynalectric 22 -0110010010 Stena 22 -0110010010 Messerschmitt 22 -0110010010 Agip 22 -0110010010 BMC 22 -0110010010 Tolland 22 -0110010010 Pansophic 22 -0110010010 Alloy 22 -0110010010 MFI 22 -0110010010 CMC 22 -0110010010 Stanbic 22 -0110010010 C.I.T. 22 -0110010010 EAC 22 -0110010010 Divi 22 -0110010010 Seibu 22 -0110010010 SUMITOMO 22 -0110010010 TVS 22 -0110010010 Cullen/Frost 22 -0110010010 Airlie 22 -0110010010 Merry-Go-Round 22 -0110010010 Jackpot 22 -0110010010 RREEF 22 -0110010010 HEM 22 -0110010010 Bio-Technology 22 -0110010010 NIPPON 23 -0110010010 Forrester 23 -0110010010 Calma 23 -0110010010 NVHomes 23 -0110010010 HBJ 23 -0110010010 Rodime 23 -0110010010 TBWA 23 -0110010010 Legrand 23 -0110010010 TPI 23 -0110010010 Stuarts 23 -0110010010 Telefunken 23 -0110010010 Corsair 23 -0110010010 Ekco 23 -0110010010 DP 23 -0110010010 Avana 23 -0110010010 Clairson 23 -0110010010 Intercorporation 23 -0110010010 Micro/Vest 23 -0110010010 DIC 24 -0110010010 Jergens 24 -0110010010 AmSouth 24 -0110010010 Brascan 24 -0110010010 Sulpetro 24 -0110010010 Marantz 24 -0110010010 Hanwa 24 -0110010010 Mips 24 -0110010010 Breakwater 24 -0110010010 CSC 24 -0110010010 Aiguebelle 24 -0110010010 BICC 24 -0110010010 Dadeland 24 -0110010010 RMJ 24 -0110010010 Latina 24 -0110010010 Hoesch 24 -0110010010 Superconductivity 24 -0110010010 Kellwood 24 -0110010010 Synergy 24 -0110010010 Schroders 24 -0110010010 AIM 24 -0110010010 Tiphook 24 -0110010010 Isosceles 24 -0110010010 Ardent 24 -0110010010 Diceon 24 -0110010010 Pay-Fone 25 -0110010010 Ahold 25 -0110010010 Dunhill 25 -0110010010 ATC 25 -0110010010 Lederle 25 -0110010010 Petrobras 25 -0110010010 Heartland 25 -0110010010 Lamborghini 25 -0110010010 Kubota 25 -0110010010 SI 25 -0110010010 LVI 25 -0110010010 Seton 25 -0110010010 CF 25 -0110010010 Vintage 25 -0110010010 Kurzweil 25 -0110010010 Oakville 25 -0110010010 Elgin 25 -0110010010 Signature 25 -0110010010 Mid-State 25 -0110010010 Carat 25 -0110010010 Groff 25 -0110010010 Fininvest 25 -0110010010 NVF 25 -0110010010 Glenayre 25 -0110010010 Lowndes 25 -0110010010 Oakwood 25 -0110010010 LNG 25 -0110010010 Inter-Continental 26 -0110010010 Kinetic 26 -0110010010 Bio 26 -0110010010 Gradco 26 -0110010010 Indal 26 -0110010010 Kimco 26 -0110010010 Wereldhave 26 -0110010010 HHB 26 -0110010010 Enichem 26 -0110010010 Foxboro 26 -0110010010 ABB 26 -0110010010 Cronus 26 -0110010010 Clarostat 26 -0110010010 VOLKSWAGEN 26 -0110010010 Whitbread 26 -0110010010 Geodyne 26 -0110010010 Svenska 26 -0110010010 Swarovski 26 -0110010010 G.T. 26 -0110010010 Esselte 26 -0110010010 TCA 26 -0110010010 Starrett 26 -0110010010 Cilag 26 -0110010010 Bibb 26 -0110010010 Sherwin-Williams 26 -0110010010 ISC 27 -0110010010 Biocraft 27 -0110010010 Almaden 27 -0110010010 Publicker 27 -0110010010 Elco 27 -0110010010 Domain 27 -0110010010 Runzheimer 27 -0110010010 Entregrowth 27 -0110010010 Preussag 27 -0110010010 Peko 27 -0110010010 ESA 27 -0110010010 Pharmacia 27 -0110010010 Extel 27 -0110010010 Kelsey-Hayes 27 -0110010010 Orbit 27 -0110010010 IEC 27 -0110010010 Campbell-Ewald 27 -0110010010 Fyffes 27 -0110010010 Verit 28 -0110010010 Finsider 28 -0110010010 MedChem 28 -0110010010 Interpart 28 -0110010010 Enimont 28 -0110010010 Cananea 28 -0110010010 Tomkins 28 -0110010010 CrossLand 28 -0110010010 Torrington 28 -0110010010 Piccadilly 28 -0110010010 BRT 28 -0110010010 Degussa 28 -0110010010 Heineken 29 -0110010010 DBA 29 -0110010010 Wellco 29 -0110010010 Gurit-Heberlein 29 -0110010010 FIAT 29 -0110010010 Vipont 29 -0110010010 S.A.Y. 29 -0110010010 VMS 29 -0110010010 Koito 29 -0110010010 ACCO 29 -0110010010 Hechinger 29 -0110010010 Rockwood 29 -0110010010 Interface 29 -0110010010 Arsenal 29 -0110010010 DRG 29 -0110010010 Casio 30 -0110010010 Tata 30 -0110010010 Sequent 30 -0110010010 Ansa 30 -0110010010 Liposome 30 -0110010010 Stellar 30 -0110010010 Teleconnect 30 -0110010010 Toro 30 -0110010010 HSH 31 -0110010010 Perception 31 -0110010010 Metrocolor 31 -0110010010 Seneca 31 -0110010010 T.H.E. 31 -0110010010 Sainsbury 31 -0110010010 Higbee 31 -0110010010 Stet 31 -0110010010 Linotype 31 -0110010010 CML 32 -0110010010 Charterhouse 32 -0110010010 Wingate 32 -0110010010 Ovonic 32 -0110010010 Tractebel 32 -0110010010 NECO 32 -0110010010 Collaborative 32 -0110010010 GTG 32 -0110010010 Renison 32 -0110010010 Sandusky 32 -0110010010 Tenera 32 -0110010010 McFaddin 32 -0110010010 Seibu/Saison 32 -0110010010 Pyramid 32 -0110010010 Wembley 32 -0110010010 Rothwells 32 -0110010010 ASEA 32 -0110010010 Ingredient 32 -0110010010 DC 33 -0110010010 Magnavox 33 -0110010010 Rheem 33 -0110010010 ABS 33 -0110010010 Contibel 33 -0110010010 Resdel 33 -0110010010 Ryland 33 -0110010010 Trimac 33 -0110010010 Petro-Logistics 33 -0110010010 Carsey-Werner 33 -0110010010 Dumenil-Leble 33 -0110010010 Varco 33 -0110010010 Ansett 33 -0110010010 NTC 33 -0110010010 FAI 34 -0110010010 Redland 34 -0110010010 Ocelot 34 -0110010010 Pernod-Ricard 34 -0110010010 Lifestyle 34 -0110010010 Countrywide 34 -0110010010 Shandwick 34 -0110010010 Skandia 34 -0110010010 Courtaulds 34 -0110010010 Clarion 34 -0110010010 Onex 34 -0110010010 Vodavi 34 -0110010010 Standa 34 -0110010010 Murjani 34 -0110010010 Herbalife 34 -0110010010 Allen-Bradley 34 -0110010010 Vicon 34 -0110010010 Jannock 34 -0110010010 Ultramar 35 -0110010010 Inspectorate 35 -0110010010 Laurentian 35 -0110010010 Pennant 35 -0110010010 AGA 35 -0110010010 HRI 35 -0110010010 Eastdil 35 -0110010010 Syntech 35 -0110010010 Freemans 35 -0110010010 Ansell 35 -0110010010 Mayfair 35 -0110010010 Sanrio 35 -0110010010 Trelleborg 35 -0110010010 ARA 35 -0110010010 Medstone 35 -0110010010 Narita 36 -0110010010 Mediobanca 36 -0110010010 Agfa-Gevaert 36 -0110010010 Feldmuehle 36 -0110010010 Sunter 36 -0110010010 Butterfield 36 -0110010010 Foothill 36 -0110010010 J&J 36 -0110010010 GUINNESS 36 -0110010010 Archer-Daniels-Midland 36 -0110010010 AZP 36 -0110010010 Mylan 36 -0110010010 Krug 36 -0110010010 Kaufhof 37 -0110010010 MicroPro 37 -0110010010 GKN 37 -0110010010 Rembrandt 37 -0110010010 Suntory 37 -0110010010 Infectious 37 -0110010010 Impala 37 -0110010010 Comet 37 -0110010010 Jameson 37 -0110010010 Delphi 37 -0110010010 Celestial 38 -0110010010 Ardsley 38 -0110010010 Fiber 39 -0110010010 Wedge 39 -0110010010 Electrospace 39 -0110010010 TII 39 -0110010010 SciMed 39 -0110010010 Pechiney 39 -0110010010 AE 39 -0110010010 Istel 39 -0110010010 Corvus 39 -0110010010 Koger 39 -0110010010 Shimizu 39 -0110010010 Entrepreneur 39 -0110010010 Crowther 39 -0110010010 SRI 39 -0110010010 Concurrent 39 -0110010010 Addison-Wesley 39 -0110010010 Boonton 40 -0110010010 Monolithic 40 -0110010010 Peregrine 40 -0110010010 Impact 40 -0110010010 Hawker 40 -0110010010 Trico 40 -0110010010 Marcade 40 -0110010010 Dumez 41 -0110010010 Delco 41 -0110010010 Sunworld 41 -0110010010 Me.T.A. 41 -0110010010 Kappa 41 -0110010010 Fleetwood 41 -0110010010 Monier 41 -0110010010 Lifeline 41 -0110010010 Encore 41 -0110010010 Astra 41 -0110010010 Savoy 41 -0110010010 AGB 41 -0110010010 Benlox 41 -0110010010 Adidas 42 -0110010010 Genesis 42 -0110010010 Guber-Peters 42 -0110010010 Sceptre 42 -0110010010 Westland 42 -0110010010 Coloroll 42 -0110010010 Vintners 42 -0110010010 RAI 42 -0110010010 Eurocom 42 -0110010010 Telefon 42 -0110010010 Tarmac 43 -0110010010 Italtel 43 -0110010010 Pergamon 43 -0110010010 CRA 43 -0110010010 Minet 43 -0110010010 PCI 43 -0110010010 Wometco 43 -0110010010 Thortec 43 -0110010010 Ryobi 44 -0110010010 Molecular 44 -0110010010 Cirrus 44 -0110010010 Weight 44 -0110010010 Beker 44 -0110010010 Skyhigh 44 -0110010010 Evergreen 44 -0110010010 Courage 44 -0110010010 Ocilla 44 -0110010010 Sensormatic 44 -0110010010 Dornier 45 -0110010010 Haagen-Dazs 45 -0110010010 Enzo 45 -0110010010 Sabena 45 -0110010010 Topps 45 -0110010010 Paragon 45 -0110010010 Nukem 45 -0110010010 Calor 46 -0110010010 Banesto 46 -0110010010 Viag 46 -0110010010 M.I.M. 46 -0110010010 Telesphere 46 -0110010010 Acadia 46 -0110010010 CleveTrust 46 -0110010010 Econocom 47 -0110010010 ERC 47 -0110010010 HP 47 -0110010010 BAA 47 -0110010010 Mexicana 47 -0110010010 Northgate 47 -0110010010 Ralphs 47 -0110010010 On-Line 48 -0110010010 Oglethorpe 48 -0110010010 Dylex 48 -0110010010 Infotron 48 -0110010010 Gemini 48 -0110010010 Chieftain 48 -0110010010 CIR 48 -0110010010 Timken 48 -0110010010 ICM 48 -0110010010 Autolatina 48 -0110010010 Korn/Ferry 48 -0110010010 QVC 48 -0110010010 Sankyo 48 -0110010010 Clarity 49 -0110010010 Gevaert 49 -0110010010 Friendly 49 -0110010010 Dennison 49 -0110010010 Durakon 49 -0110010010 Asean 49 -0110010010 Heron 49 -0110010010 Pueblo 49 -0110010010 Edper 49 -0110010010 Statesman 49 -0110010010 Moet-Hennessy 49 -0110010010 Cumberland 49 -0110010010 Ratners 49 -0110010010 Leaseway 49 -0110010010 MAC 50 -0110010010 Cenith 50 -0110010010 BCI 50 -0110010010 Veba 50 -0110010010 Havas 50 -0110010010 Premark 50 -0110010010 Lasmo 50 -0110010010 Girard 50 -0110010010 Ballantrae 50 -0110010010 Harlin 51 -0110010010 Allianz 51 -0110010010 Falstaff 51 -0110010010 Tishman 51 -0110010010 Marvel 51 -0110010010 Birmid 51 -0110010010 Convex 51 -0110010010 Fujisawa 51 -0110010010 Dixie 52 -0110010010 Americana 52 -0110010010 Prism 52 -0110010010 Moet-Vuitton 52 -0110010010 Messerschmitt-Boelkow-Blohm 52 -0110010010 Assubel-Vie 52 -0110010010 KMS 52 -0110010010 CFM 52 -0110010010 Ingersoll-Rand 53 -0110010010 Exco 53 -0110010010 Adia 53 -0110010010 BioTechnica 53 -0110010010 Hi-Shear 53 -0110010010 GPU 53 -0110010010 Benedictine 53 -0110010010 AmeriFirst 53 -0110010010 Argo 53 -0110010010 Bench 53 -0110010010 Broadview 54 -0110010010 Sithe 54 -0110010010 Medalist 54 -0110010010 DEC 54 -0110010010 Brookhurst 54 -0110010010 Pegasus 54 -0110010010 Alamo 54 -0110010010 ATI 55 -0110010010 Mountleigh 55 -0110010010 Quest 55 -0110010010 Carrian 55 -0110010010 Deak 55 -0110010010 Beech-Nut 55 -0110010010 Granges 55 -0110010010 Blanche 56 -0110010010 Dunes 56 -0110010010 Karstadt 56 -0110010010 Westfield 56 -0110010010 Ladbroke 56 -0110010010 Pentane 56 -0110010010 Saab-Scania 56 -0110010010 Comstock 56 -0110010010 Maserati 56 -0110010010 Oakite 57 -0110010010 Epeda 57 -0110010010 Hecco 57 -0110010010 Rothmans 57 -0110010010 Musicland 57 -0110010010 Statoil 57 -0110010010 Cosmopolitan 57 -0110010010 ENI 57 -0110010010 Forstmann-Leff 58 -0110010010 Syncor 58 -0110010010 UAP 58 -0110010010 Infinity 58 -0110010010 Esso 58 -0110010010 Polaris 58 -0110010010 OTF 58 -0110010010 Billboard 58 -0110010010 Erbamont 58 -0110010010 Proton 59 -0110010010 Balcor 59 -0110010010 Chariot 59 -0110010010 Fanuc 59 -0110010010 Algoma 59 -0110010010 Nacco 60 -0110010010 Redken 60 -0110010010 SHV 60 -0110010010 AMCA 60 -0110010010 Wah 61 -0110010010 MediaNews 61 -0110010010 TLC 61 -0110010010 IMS 61 -0110010010 CAP 61 -0110010010 Begley 61 -0110010010 ASA 61 -0110010010 Panasonic 61 -0110010010 IMA 61 -0110010010 Emerald 61 -0110010010 Brookehill 61 -0110010010 Amstrad 61 -0110010010 Nantucket 62 -0110010010 Magnet 62 -0110010010 Westmark 62 -0110010010 Fusion 63 -0110010010 Conquest 63 -0110010010 Arianespace 64 -0110010010 Norden 64 -0110010010 Entwistle 64 -0110010010 Micom 64 -0110010010 Fisons 65 -0110010010 Ajinomoto 65 -0110010010 MIM 65 -0110010010 Medco 66 -0110010010 Clevite 66 -0110010010 Mannesmann 66 -0110010010 Artra 66 -0110010010 Kansai 66 -0110010010 Monfort 67 -0110010010 Oracle 67 -0110010010 Pullman-Peabody 67 -0110010010 ACI 67 -0110010010 Baytree 67 -0110010010 Valeo 67 -0110010010 MAN 68 -0110010010 Alyeska 68 -0110010010 Winnebago 68 -0110010010 McClatchy 68 -0110010010 Schenley 69 -0110010010 Framatome 69 -0110010010 Westamerica 69 -0110010010 Westburne 69 -0110010010 Envirodyne 69 -0110010010 MTM 69 -0110010010 Hillenbrand 70 -0110010010 Intelligent 70 -0110010010 Towle 70 -0110010010 CBI 70 -0110010010 Gitano 71 -0110010010 Vicorp 71 -0110010010 Centaur 71 -0110010010 Linde 71 -0110010010 Spendthrift 71 -0110010010 Roadway 72 -0110010010 Amoskeag 72 -0110010010 Generali 72 -0110010010 CSR 72 -0110010010 Buckeye 72 -0110010010 Alberto-Culver 72 -0110010010 Pilkington 72 -0110010010 LaSalle 73 -0110010010 AST 74 -0110010010 Goldstar 74 -0110010010 Preferred 74 -0110010010 Krupp 74 -0110010010 IDC 75 -0110010010 Walgreen 75 -0110010010 GPA 75 -0110010010 Ricoh 75 -0110010010 Amnesty 75 -0110010010 Trafalgar 76 -0110010010 Alliant 77 -0110010010 Sensor 77 -0110010010 Komatsu 78 -0110010010 Pleasurama 78 -0110010010 Weintraub 78 -0110010010 Clarendon 80 -0110010010 Falcon 80 -0110010010 Lever 80 -0110010010 MK 81 -0110010010 Chelsea 81 -0110010010 Plum 81 -0110010010 Thyssen 81 -0110010010 Penthouse 81 -0110010010 Stoneridge 83 -0110010010 Plenum 83 -0110010010 Pelican 83 -0110010010 STC 83 -0110010010 Hees 84 -0110010010 Investcorp 84 -0110010010 Figgie 84 -0110010010 Seven-Up 84 -0110010010 Cilluffo 84 -0110010010 Quotron 84 -0110010010 Wharf 85 -0110010010 Harnischfeger 85 -0110010010 Astrotech 86 -0110010010 Comdata 86 -0110010010 Benequity 87 -0110010010 Kluwer 87 -0110010010 Inspiration 87 -0110010010 Westcoast 87 -0110010010 Geothermal 87 -0110010010 TVX 88 -0110010010 Ausimont 88 -0110010010 Boots 88 -0110010010 Transcontinental 88 -0110010010 CAE 89 -0110010010 CenTrust 89 -0110010010 Quadrex 90 -0110010010 Andover 90 -0110010010 Sunbelt 90 -0110010010 Oxdon 90 -0110010010 Matra 91 -0110010010 Twin 91 -0110010010 Telemecanique 91 -0110010010 Connaught 91 -0110010010 Wyse 92 -0110010010 Granada 93 -0110010010 CRT 94 -0110010010 Talley 95 -0110010010 Elsevier 96 -0110010010 Carnation 96 -0110010010 Mentor 96 -0110010010 Regency 96 -0110010010 TI 96 -0110010010 Saint-Gobain 96 -0110010010 Akzo 97 -0110010010 SafeCard 97 -0110010010 Merieux 97 -0110010010 Pepsi-Cola 97 -0110010010 Pittston 97 -0110010010 Sunrise 97 -0110010010 Burroughs-Wellcome 97 -0110010010 Buitoni 97 -0110010010 BancTexas 98 -0110010010 Kaneb 98 -0110010010 Nomad 99 -0110010010 Genisco 99 -0110010010 MIPS 100 -0110010010 CJI 100 -0110010010 Bantam 101 -0110010010 Ranks 101 -0110010010 Tricentrol 102 -0110010010 ETA 102 -0110010010 Galactic 102 -0110010010 Stratus 103 -0110010010 BDM 103 -0110010010 Kincaid 104 -0110010010 Hallwood 104 -0110010010 Rhone-Poulenc 104 -0110010010 BOC 105 -0110010010 Alpine 105 -0110010010 BBDO 105 -0110010010 TMIC 105 -0110010010 Leucadia 105 -0110010010 Genmar 106 -0110010010 Knoll 106 -0110010010 Puma 106 -0110010010 Bombay 106 -0110010010 Raymark 107 -0110010010 Nixdorf 107 -0110010010 Alitalia 107 -0110010010 Adobe 107 -0110010010 Amalgamated 107 -0110010010 PSA 108 -0110010010 LAC 109 -0110010010 Magna 110 -0110010010 Wheeling 110 -0110010010 Alcatel 110 -0110010010 Landmark 111 -0110010010 Centerre 111 -0110010010 Neco 112 -0110010010 Colgate-Palmolive 112 -0110010010 TSB 113 -0110010010 Argus 113 -0110010010 Cominco 113 -0110010010 Borland 114 -0110010010 Varian 116 -0110010010 Bancroft 116 -0110010010 Eurotunnel 117 -0110010010 Gucci 117 -0110010010 Guilford 117 -0110010010 Nalcap 117 -0110010010 Telemundo 118 -0110010010 Carlyle 119 -0110010010 Javelin 119 -0110010010 Precision 120 -0110010010 Avia 121 -0110010010 TransAmerican 121 -0110010010 FPL 122 -0110010010 Seaman 122 -0110010010 Allied-Lyons 122 -0110010010 McCall 124 -0110010010 Ideal 124 -0110010010 Adams-Russell 126 -0110010010 Decision 126 -0110010010 Goldome 126 -0110010010 Sooner 127 -0110010010 Vitro 128 -0110010010 Hemdale 129 -0110010010 Yasuda 129 -0110010010 Fokker 130 -0110010010 Alfa 131 -0110010010 Beard 131 -0110010010 Newell 132 -0110010010 Bertelsmann 133 -0110010010 TNT 134 -0110010010 C.O.M.B. 134 -0110010010 Graphic 134 -0110010010 Neiman-Marcus 137 -0110010010 Spectrum 137 -0110010010 Tempo 137 -0110010010 Blockbuster 138 -0110010010 Sandoz 138 -0110010010 MCO 139 -0110010010 Weyerhaeuser 139 -0110010010 Clorox 139 -0110010010 Interpublic 140 -0110010010 Liggett 142 -0110010010 Pullman 143 -0110010010 Argyll 143 -0110010010 Cherokee 144 -0110010010 ARC 144 -0110010010 WCRS 144 -0110010010 Magma 146 -0110010010 Nintendo 146 -0110010010 Gateway 148 -0110010010 RKO 150 -0110010010 Suchard 151 -0110010010 Wolverine 151 -0110010010 Cullinet 152 -0110010010 Dainippon 153 -0110010010 Berisford 153 -0110010010 CIT 156 -0110010010 Penrod 156 -0110010010 Par 156 -0110010010 Benetton 156 -0110010010 Facet 157 -0110010010 E.S.M. 158 -0110010010 Rainier 159 -0110010010 Wherehouse 159 -0110010010 M.D.C. 159 -0110010010 Cerus 160 -0110010010 Peugeot 161 -0110010010 Dillard 162 -0110010010 Argonaut 163 -0110010010 Heileman 165 -0110010010 Reichhold 167 -0110010010 KLM 167 -0110010010 Storehouse 167 -0110010010 Tropicana 168 -0110010010 BHP 171 -0110010010 Halliburton 174 -0110010010 Minpeco 174 -0110010010 Hoylake 174 -0110010010 Racal 174 -0110010010 Imasco 175 -0110010010 Vickers 175 -0110010010 Recruit 175 -0110010010 Guardian 175 -0110010010 Bechtel 176 -0110010010 Colt 176 -0110010010 Hanna 177 -0110010010 SCI 177 -0110010010 Playboy 180 -0110010010 Omnicom 180 -0110010010 Metromedia 181 -0110010010 Berkshire 181 -0110010010 Navistar 183 -0110010010 Grey 187 -0110010010 Blackstone 187 -0110010010 Samsung 187 -0110010010 AEG 189 -0110010010 Rolls-Royce 189 -0110010010 Becor 190 -0110010010 Gearhart 190 -0110010010 Newhall 191 -0110010010 NutraSweet 193 -0110010010 Colonial 194 -0110010010 Regina 195 -0110010010 Martell 197 -0110010010 Seagate 198 -0110010010 Prospect 198 -0110010010 Laidlaw 199 -0110010010 Lufthansa 200 -0110010010 Atlantis 201 -0110010010 Maxxam 206 -0110010010 Affiliated 207 -0110010010 JMB 207 -0110010010 Sanofi 209 -0110010010 BTR 209 -0110010010 Pilgrim 211 -0110010010 Vista 211 -0110010010 Dixons 211 -0110010010 CalMat 211 -0110010010 Household 212 -0110010010 Equiticorp 213 -0110010010 Beecham 215 -0110010010 Keystone 216 -0110010010 Worthen 216 -0110010010 Ferranti 217 -0110010010 TW 217 -0110010010 Abbott 221 -0110010010 Groupe 222 -0110010010 Live 224 -0110010010 Commerzbank 224 -0110010010 MAI 226 -0110010010 Schlumberger 230 -0110010010 Hachette 230 -0110010010 CPC 234 -0110010010 Carolco 237 -0110010010 Cyprus 239 -0110010010 Citadel 244 -0110010010 Princeton/Newport 245 -0110010010 Emerson 250 -0110010010 AM 253 -0110010010 Tri-Star 256 -0110010010 Nielsen 257 -0110010010 Pirelli 257 -0110010010 Lonrho 259 -0110010010 Summit 261 -0110010010 Gerber 266 -0110010010 NTT 266 -0110010010 Fermenta 267 -0110010010 Rowntree 267 -0110010010 Warner-Lambert 268 -0110010010 Porsche 269 -0110010010 Banner 270 -0110010010 Inco 272 -0110010010 Bolar 273 -0110010010 Vanguard 277 -0110010010 Ciba-Geigy 279 -0110010010 Commodore 281 -0110010010 IU 288 -0110010010 Ivanhoe 288 -0110010010 Charter 296 -0110010010 Qintex 297 -0110010010 BASF 299 -0110010010 Glaxo 299 -0110010010 Joy 300 -0110010010 Crown 301 -0110010010 Minorco 301 -0110010010 Ames 304 -0110010010 Ferruzzi 308 -0110010010 LIN 310 -0110010010 Purolator 312 -0110010010 Micron 313 -0110010010 Pioneer 318 -0110010010 AFG 321 -0110010010 Plessey 323 -0110010010 MasterCard 324 -0110010010 Triton 327 -0110010010 Beazer 329 -0110010010 Chris-Craft 330 -0110010010 Reuters 332 -0110010010 Falconbridge 336 -0110010010 Odyssey 339 -0110010010 Essex 345 -0110010010 Bristol-Myers 346 -0110010010 Wellcome 353 -0110010010 Kellogg 358 -0110010010 Rover 363 -0110010010 Goodrich 368 -0110010010 Champion 375 -0110010010 Bayer 375 -0110010010 NL 375 -0110010010 Raytheon 380 -0110010010 Vernon 385 -0110010010 KaiserTech 386 -0110010010 Duke 389 -0110010010 Roper 390 -0110010010 Gannett 390 -0110010010 Unilever 397 -0110010010 Woolworth 401 -0110010010 Sharon 402 -0110010010 Lloyds 403 -0110010010 Hoechst 405 -0110010010 Giant 405 -0110010010 Coors 408 -0110010010 Hitachi 411 -0110010010 Cadbury 413 -0110010010 Coleco 419 -0110010010 Reebok 428 -0110010010 Visa 432 -0110010010 Quaker 433 -0110010010 Fiat 437 -0110010010 Triangle 438 -0110010010 Jaguar 452 -0110010010 Bally 452 -0110010010 Penney 452 -0110010010 Montedison 454 -0110010010 Apollo 459 -0110010010 Britoil 466 -0110010010 Orion 470 -0110010010 E-II 472 -0110010010 Upjohn 473 -0110010010 Fujitsu 486 -0110010010 Tiger 489 -0110010010 Pearson 498 -0110010010 Zenith 502 -0110010010 Fairchild 508 -0110010010 Paramount 519 -0110010010 Daimler-Benz 524 -0110010010 Aetna 547 -0110010010 Fuji 549 -0110010010 Kroger 552 -0110010010 AMC 552 -0110010010 Nestle 554 -0110010010 Hanson 565 -0110010010 Kaiser 569 -0110010010 Cannon 580 -0110010010 Koppers 592 -0110010010 Avon 605 -0110010010 Monsanto 606 -0110010010 Rorer 608 -0110010010 Holly 615 -0110010010 Viacom 625 -0110010010 Integrated 626 -0110010010 Cray 641 -0110010010 Dart 648 -0110010010 Barclays 651 -0110010010 Hewlett-Packard 660 -0110010010 Elders 664 -0110010010 Taft 664 -0110010010 Reliance 664 -0110010010 WPP 677 -0110010010 Caesars 679 -0110010010 Advanced 686 -0110010010 Compaq 690 -0110010010 Seagram 697 -0110010010 Coniston 720 -0110010010 Dominion 726 -0110010010 JWT 728 -0110010010 Siemens 742 -0110010010 Thomson 746 -0110010010 Hilton 772 -0110010010 Best 794 -0110010010 Rockwell 796 -0110010010 Distillers 815 -0110010010 Resorts 843 -0110010010 Revlon 897 -0110010010 Volkswagen 924 -0110010010 Singer 954 -0110010010 Airbus 971 -0110010010 Mellon 980 -0110010010 Lincoln 1058 -0110010010 Lotus 1059 -0110010010 USAir 1072 -0110010010 NATO 1078 -0110010010 Allegheny 1079 -0110010010 Fidelity 1083 -0110010010 B.A.T 1181 -0110010010 Burlington 1188 -0110010010 Newmont 1191 -0110010010 Pillsbury 1231 -0110010010 Henley 1240 -0110010010 Sterling 1284 -0110010010 BP 1291 -0110010010 Farmers 1369 -0110010010 Coca-Cola 1436 -0110010010 Gillette 1491 -0110010010 Disney 1555 -0110010010 RJR 1607 -0110010010 Robins 1719 -0110010010 Federated 1866 -0110010010 Kodak 2001 -0110010010 Guinness 2062 -0110010010 Apple 2063 -0110010010 Irving 2123 -0110010010 Sun 2207 -0110010010 Pennzoil 2457 -0110010010 Columbia 2598 -0110010010 Boeing 3020 -0110010010 OPEC 3114 -0110010011 MetroBan 1 -0110010011 Homequity 1 -0110010011 Borning 1 -0110010011 Aqua-Chem 1 -0110010011 Kongsberg-designed 1 -0110010011 Tulos 1 -0110010011 Inteleplex 1 -0110010011 Baumfolder 1 -0110010011 ReCapital 1 -0110010011 AutoInfo 1 -0110010011 Insure 1 -0110010011 Hygenic 1 -0110010011 Kearns-Tribune 1 -0110010011 TechKnits 1 -0110010011 Scan-Optics 1 -0110010011 Univex 1 -0110010011 Tillotson-Pearson 1 -0110010011 NutraCare 1 -0110010011 Semix 1 -0110010011 Sanraku 1 -0110010011 Birdsboro 1 -0110010011 Banctec 1 -0110010011 MarketWatch 1 -0110010011 WinJak 1 -0110010011 Enscor 1 -0110010011 HXC 1 -0110010011 Corexcal 1 -0110010011 Instron 1 -0110010011 Sysorex 1 -0110010011 Intergon 1 -0110010011 Thunander 1 -0110010011 Giga-tronics 1 -0110010011 E-Z-Em 1 -0110010011 MATEC 1 -0110010011 Synchro-Tech 1 -0110010011 Romec 1 -0110010011 MESSERSCHMITT-BOLKOW-BLOHM 1 -0110010011 Larse 1 -0110010011 NCH 1 -0110010011 Empi 1 -0110010011 FNW 1 -0110010011 Lilliston 1 -0110010011 Furrs 1 -0110010011 Gendex 1 -0110010011 Neoprobe 1 -0110010011 BioTechnologies 1 -0110010011 Kovatch 1 -0110010011 Tiara 1 -0110010011 Escalade 1 -0110010011 Speco 1 -0110010011 SBE 1 -0110010011 Spyraflo 1 -0110010011 Douglas-Elliman 1 -0110010011 Bowline 1 -0110010011 Papalphernalia 1 -0110010011 Jogbra 1 -0110010011 Livingwell 1 -0110010011 Datamedia 1 -0110010011 ROSB 1 -0110010011 Ayrshire 1 -0110010011 Synthetech 1 -0110010011 Metalsource 1 -0110010011 Verdix 1 -0110010011 Intellisys 1 -0110010011 Vertipile 1 -0110010011 Ex-Cello-O 1 -0110010011 Hefren-Tillotson 1 -0110010011 Quad-Marketing 1 -0110010011 Novia 1 -0110010011 Oreck 1 -0110010011 GENEX 1 -0110010011 Interchem 1 -0110010011 Celtech 1 -0110010011 Gaedcke 1 -0110010011 Knight-Ridder/Tribune 1 -0110010011 McCoy-Elkhorn 1 -0110010011 TGX 1 -0110010011 BIOANALOGICS 1 -0110010011 AgMax 1 -0110010011 Neogen 1 -0110010011 Adelie 1 -0110010011 Faxplus 1 -0110010011 Hopsital 1 -0110010011 Panelgraphic 1 -0110010011 Bell-Boeing 1 -0110010011 ORANGE-CO 1 -0110010011 Jelco 1 -0110010011 LUBRIZOL 1 -0110010011 Peckover 1 -0110010011 Sram 1 -0110010011 Unifi 1 -0110010011 Powertec 1 -0110010011 CCNB 1 -0110010011 Jippo 1 -0110010011 Snyder-General 1 -0110010011 ZAYRE 1 -0110010011 KINDER-CARE 1 -0110010011 ASTRONICS 1 -0110010011 WALBRO 1 -0110010011 Gulf-Tex 1 -0110010011 3,173,000 1 -0110010011 Wampler-Longacre-Rockingham 1 -0110010011 LifeCell 1 -0110010011 Vynet 1 -0110010011 Semcor 1 -0110010011 RhonePoulenc 1 -0110010011 Clearwater-based 1 -0110010011 Sanus 1 -0110010011 Sammis 1 -0110010011 LIDA 1 -0110010011 Damar 1 -0110010011 OliverShields 1 -0110010011 AmeriHealth 1 -0110010011 CleanHarbors 1 -0110010011 Budget-Rent-a-Car 1 -0110010011 Ethigen 1 -0110010011 Braun-Brumfield 1 -0110010011 Macaulay-Brown 1 -0110010011 Cybernex 1 -0110010011 Ori 1 -0110010011 Equidex 1 -0110010011 RMIC 1 -0110010011 Paribus 1 -0110010011 Beltech 1 -0110010011 PLANTRONICS 1 -0110010011 Raydan 1 -0110010011 SYNALLOY 1 -0110010011 DIANA 1 -0110010011 Heyco 1 -0110010011 Hydropower 1 -0110010011 debenture-holders 1 -0110010011 Chemlime 1 -0110010011 GVC 1 -0110010011 Tecom 1 -0110010011 Glominoid 1 -0110010011 CR/PL 1 -0110010011 TriCity 1 -0110010011 Ballanda 1 -0110010011 Pathways 1 -0110010011 Veda 1 -0110010011 UniDynamics 1 -0110010011 Psychemedics 1 -0110010011 Chemstar 1 -0110010011 Aid-Pak 1 -0110010011 Scrivner 1 -0110010011 Information/Documentation 1 -0110010011 Kober 1 -0110010011 LFE 1 -0110010011 VitaLian 1 -0110010011 Informarketing 1 -0110010011 TransFirst 1 -0110010011 SilibiS 1 -0110010011 MercOil 1 -0110010011 ExCell-O 1 -0110010011 Bramco 1 -0110010011 Arandell 1 -0110010011 JLT 1 -0110010011 Biotrine 1 -0110010011 CHEMetrics 1 -0110010011 Fiserv 1 -0110010011 Gensym 1 -0110010011 Arvida-Disney 1 -0110010011 TK 1 -0110010011 Roth-American 1 -0110010011 Sealaska 1 -0110010011 Digitext 1 -0110010011 Rexworks 1 -0110010011 ProCoil 1 -0110010011 LOOP 1 -0110010011 LaserGenics 1 -0110010011 Hadady 1 -0110010011 Anadac 1 -0110010011 TYME 1 -0110010011 Quadrax 1 -0110010011 Allegheny-Ludlum 1 -0110010011 Metallurg 1 -0110010011 Pharmacontrol 1 -0110010011 Disc-O-Mat 1 -0110010011 Kurz-Kasch 1 -0110010011 Aquathin 1 -0110010011 Gutehoffnungshuette 1 -0110010011 Taisai 1 -0110010011 XScribe 1 -0110010011 Xorbox 1 -0110010011 Tutor-Saliba 1 -0110010011 HybriVet 1 -0110010011 Sandquist 1 -0110010011 Kissel-Blake 1 -0110010011 Condec 1 -0110010011 K-Tron 1 -0110010011 Sterlingwale 1 -0110010011 Lasolana 1 -0110010011 Allelix 1 -0110010011 Enerwest 1 -0110010011 Gunite 1 -0110010011 ICAS 1 -0110010011 Analytix 1 -0110010011 Filenet 1 -0110010011 AON 1 -0110010011 Instrumentarium 1 -0110010011 Geonex 1 -0110010011 Intercredit 1 -0110010011 FB&T 1 -0110010011 Gristede 1 -0110010011 Balder 1 -0110010011 Conolog 1 -0110010011 Libbey-OwensFord 1 -0110010011 XYTEC 1 -0110010011 Dest 1 -0110010011 Tee-Comm 1 -0110010011 CompuScan 1 -0110010011 Stemar 1 -0110010011 Alloa 1 -0110010011 Lexitel 1 -0110010011 USCO 1 -0110010011 NLT 1 -0110010011 Softech 1 -0110010011 Freeport-McMo-Ran 1 -0110010011 Bancomer 1 -0110010011 Hibshman 1 -0110010011 Cromemco 1 -0110010011 Richtex 1 -0110010011 Comnet 1 -0110010011 CanCapital 1 -0110010011 DP&L 1 -0110010011 Alsons 1 -0110010011 Belmac 1 -0110010011 ECRM 1 -0110010011 Baham 1 -0110010011 TaxWatch 1 -0110010011 Studebaker-Packard 1 -0110010011 Vizcom 1 -0110010011 Isratex 1 -0110010011 Axia 1 -0110010011 Spectragraphics 1 -0110010011 Leastec 1 -0110010011 Friteco 1 -0110010011 Rapada 1 -0110010011 Essa 1 -0110010011 Ambi 1 -0110010011 Carrols 1 -0110010011 Bituma-Stor 1 -0110010011 Tymshare 1 -0110010011 Teleglobal 1 -0110010011 SpeedFam 1 -0110010011 Coratomic 1 -0110010011 Lishon 1 -0110010011 NBK 1 -0110010011 Quintel 1 -0110010011 Bunge 1 -0110010011 Cinpac 1 -0110010011 CRAIG 1 -0110010011 Meditrend 1 -0110010011 LDBRINKMAN 1 -0110010011 CLEVELAND-CLIFFS 1 -0110010011 Honker 1 -0110010011 Fertil-A-Chron 1 -0110010011 MDPT 1 -0110010011 Shimadzu 1 -0110010011 DataVend 1 -0110010011 Dukane 1 -0110010011 IMAGEN 1 -0110010011 Recontek 1 -0110010011 Amscan 1 -0110010011 Respironics 1 -0110010011 Bahlsen 1 -0110010011 FLEXI-VAN 1 -0110010011 Kel-Met 1 -0110010011 Penryn 1 -0110010011 Braemar 1 -0110010011 Simulaser 1 -0110010011 Myo-tech 1 -0110010011 Sugarcreek 1 -0110010011 Cubit 1 -0110010011 Yamatane 1 -0110010011 Pixeley 1 -0110010011 Eliskim 1 -0110010011 Infoswitch 1 -0110010011 Woodshaft 1 -0110010011 Allbright-Nell 1 -0110010011 Stride-Rite 1 -0110010011 MarketSource 1 -0110010011 MOTOROLA 1 -0110010011 Lojack 1 -0110010011 Vemco 1 -0110010011 DHM 1 -0110010011 ManageWare 1 -0110010011 Pittsburgh-Corning 1 -0110010011 Precast 1 -0110010011 Playful 1 -0110010011 Vitek 1 -0110010011 NEOAX 1 -0110010011 Lechters 1 -0110010011 Durel 1 -0110010011 EGGHEAD 1 -0110010011 WTG-Central 1 -0110010011 Air-Dry 1 -0110010011 UNIVAR 1 -0110010011 ISCO 1 -0110010011 Missco 1 -0110010011 Lightgate 1 -0110010011 FEDERAL-MOGUL 1 -0110010011 Autometric 1 -0110010011 Elektra/Asylum/Nonesuch 1 -0110010011 Intervoice 1 -0110010011 Web-Marsh 1 -0110010011 Minnoco 1 -0110010011 Asahipen 1 -0110010011 Tarsadia 1 -0110010011 Biscon 1 -0110010011 Aprex 1 -0110010011 Eversharp 1 -0110010011 Amycel 1 -0110010011 Myo-Tech 1 -0110010011 Anshutz 1 -0110010011 Memry 1 -0110010011 RYC 1 -0110010011 K-2 1 -0110010011 Eaton-Kenway 1 -0110010011 Northbanc 1 -0110010011 Harris-Edward 1 -0110010011 T.I.M.E.-DC 1 -0110010011 Nutri-Products 1 -0110010011 DataImage 1 -0110010011 Rohammer 1 -0110010011 Petromont 1 -0110010011 Orkand 1 -0110010011 Petroferm 1 -0110010011 3i 1 -0110010011 Day-Timers 1 -0110010011 Aristokraft 1 -0110010011 Read-Rite 1 -0110010011 Structofab 1 -0110010011 Astrocom 1 -0110010011 CAREERCOM 1 -0110010011 Springside 1 -0110010011 Flowmole 1 -0110010011 GENESEE 1 -0110010011 Veere 1 -0110010011 Knowledgeware 1 -0110010011 Solair 1 -0110010011 Dairy-Fresh 1 -0110010011 Vivitar 1 -0110010011 Krudico 1 -0110010011 Escagenetics 1 -0110010011 ADVANTA 1 -0110010011 Namsco 1 -0110010011 Wal-mart 1 -0110010011 Varilease 1 -0110010011 T.D.I. 1 -0110010011 MET-PRO 1 -0110010011 PALL 1 -0110010011 Meitec 1 -0110010011 Kema/Nucon 1 -0110010011 D.I.C. 1 -0110010011 ConAm 1 -0110010011 Cosmoupulos 1 -0110010011 Regal-Aircoa 1 -0110010011 Voicetek 1 -0110010011 REGAL-BELOIT 1 -0110010011 FIDELCOR 1 -0110010011 DONOHUE 1 -0110010011 Comptronix 1 -0110010011 Docugraphix 1 -0110010011 Bellsouth 1 -0110010011 Decimus 1 -0110010011 OLSTEN 1 -0110010011 Thermolite 1 -0110010011 Fredrichs 1 -0110010011 ANACOMP 1 -0110010011 Tayca 1 -0110010011 Aeromet 1 -0110010011 Lowes 1 -0110010011 Penncorp 1 -0110010011 Tivoly 1 -0110010011 CompuMat 1 -0110010011 Zoecon 1 -0110010011 CINTAS 1 -0110010011 CBS-K 1 -0110010011 Diamedix 1 -0110010011 CAE-Link 1 -0110010011 Serve-Air 1 -0110010011 Frozfruit 1 -0110010011 Midmark 1 -0110010011 Bamsi 1 -0110010011 Censtor 1 -0110010011 CANFOR 1 -0110010011 Tetco 1 -0110010011 AMBRIT 1 -0110010011 Sporto 1 -0110010011 RF&P 1 -0110010011 Landoll 1 -0110010011 Acurex 1 -0110010011 Brookrock 1 -0110010011 Analytics 1 -0110010011 Siemens-Bendix 1 -0110010011 Bagcraft 1 -0110010011 HOWTEK 1 -0110010011 Breathco 1 -0110010011 RBE 1 -0110010011 VISystems 1 -0110010011 ACTON 1 -0110010011 Nitram 1 -0110010011 B.B.N. 1 -0110010011 Acxiom 1 -0110010011 Verax 1 -0110010011 Unitronix 1 -0110010011 Genigraphics 1 -0110010011 TRANSCISCO 1 -0110010011 Microprobe 1 -0110010011 Utahans 1 -0110010011 Coast-America 1 -0110010011 Torin 1 -0110010011 ELSINORE 1 -0110010011 SYSCO 1 -0110010011 Stoppenbach 1 -0110010011 Amerifax 1 -0110010011 XPLOR 1 -0110010011 Iliko 1 -0110010011 Palantir 1 -0110010011 Nuclepore 1 -0110010011 Communispond 1 -0110010011 Bank-America 1 -0110010011 Louisiana-Hibernia 1 -0110010011 Hein-Werner 1 -0110010011 Canalos 1 -0110010011 McCalls 1 -0110010011 Hoxan 1 -0110010011 ProCyte 1 -0110010011 Gatcombe 1 -0110010011 VISX 1 -0110010011 Transducers 1 -0110010011 ASHTON-TATE 1 -0110010011 Transgenics 1 -0110010011 PRICOR 1 -0110010011 DOVER 1 -0110010011 Pitt-DesMoines 1 -0110010011 EasTek 1 -0110010011 Harmex 1 -0110010011 Coradian 1 -0110010011 Oster/Sunbeam 1 -0110010011 Unicam 1 -0110010011 Airtacs 1 -0110010011 Winjack 1 -0110010011 Saxonglen 1 -0110010011 ICSD 1 -0110010011 IDM 1 -0110010011 AgriCapital 1 -0110010011 WaveFrame 1 -0110010011 Cosmopulous 1 -0110010011 HUFFY 1 -0110010011 X-RITE 1 -0110010011 Papercraft 1 -0110010011 Isotechnologies 1 -0110010011 STELCO 1 -0110010011 BusinessLand 1 -0110010011 Goetze 1 -0110010011 Woolmark 1 -0110010011 ALC. 1 -0110010011 Ardak 1 -0110010011 Brutronics 1 -0110010011 Pittway 1 -0110010011 Entrade 1 -0110010011 IMREG 1 -0110010011 Calsonic 1 -0110010011 hashish-taking 1 -0110010011 HMP 1 -0110010011 AMFI 1 -0110010011 NovaCare 1 -0110010011 ELECTROSOURCE 1 -0110010011 LAFARGE 1 -0110010011 Millpore 1 -0110010011 Posterloid 1 -0110010011 Argo-Tech 2 -0110010011 Cookie-Crisp 2 -0110010011 Hantscho 2 -0110010011 Flow-Mole 2 -0110010011 Cela 2 -0110010011 Amtorg 2 -0110010011 Healthsource 2 -0110010011 Paine-Webber 2 -0110010011 Abel/Noser 2 -0110010011 Telenex 2 -0110010011 THR 2 -0110010011 Ormat 2 -0110010011 Salesnet 2 -0110010011 Integraph 2 -0110010011 Memline 2 -0110010011 Fansteel 2 -0110010011 Ameritas 2 -0110010011 Identitech 2 -0110010011 Centran 2 -0110010011 Realtron 2 -0110010011 Freidrichs 2 -0110010011 Cyberchron 2 -0110010011 Palmer-Bellevue 2 -0110010011 TriLogic 2 -0110010011 Vulplex 2 -0110010011 HNG/InterNorth 2 -0110010011 108,300 2 -0110010011 Nash-Kelvinator 2 -0110010011 Cardo 2 -0110010011 Whirpool 2 -0110010011 Breeko 2 -0110010011 Chromalux 2 -0110010011 SDNB 2 -0110010011 Inamed 2 -0110010011 LBAS 2 -0110010011 Wellhead 2 -0110010011 Aquanautics 2 -0110010011 Southtrust 2 -0110010011 Kuukpik 2 -0110010011 Immucor 2 -0110010011 Tsumeb 2 -0110010011 TEMPLETON 2 -0110010011 Celgene 2 -0110010011 Coachman 2 -0110010011 TechniCo-op 2 -0110010011 OCG 2 -0110010011 ISTAT 2 -0110010011 E.S.E. 2 -0110010011 Microvision 2 -0110010011 AmToy 2 -0110010011 LRV 2 -0110010011 AMGen 2 -0110010011 Topre 2 -0110010011 Gravelotte 2 -0110010011 Cogenerics 2 -0110010011 UTDC 2 -0110010011 Eurocell 2 -0110010011 Surgilase 2 -0110010011 Filmstar 2 -0110010011 Newsote 2 -0110010011 Pantasote 2 -0110010011 Heil-Quaker 2 -0110010011 Famcorp 2 -0110010011 Vornado 2 -0110010011 Hussmann 2 -0110010011 Gymboree 2 -0110010011 Cityfed 2 -0110010011 NewMark 2 -0110010011 Propranolol 2 -0110010011 INTERVOICE 2 -0110010011 BNZ 2 -0110010011 Hydro-Ash 2 -0110010011 Flav-O-Rich 2 -0110010011 Quasitronics 2 -0110010011 Xetca 2 -0110010011 King-Seeley 2 -0110010011 Mobex 2 -0110010011 Robec 2 -0110010011 Triumph-Lor 2 -0110010011 Sidewalk 2 -0110010011 Firstar 2 -0110010011 Hitk 2 -0110010011 Vinnell 2 -0110010011 Dugan/Farley 2 -0110010011 Amylin 2 -0110010011 Weslock 2 -0110010011 Insta-Care 2 -0110010011 Utilitech 2 -0110010011 JBD 2 -0110010011 Ateq 2 -0110010011 Vistana 2 -0110010011 Protimex 2 -0110010011 Parlex 2 -0110010011 TransNet 2 -0110010011 Clevepak 2 -0110010011 Anfia 2 -0110010011 Cochranton 2 -0110010011 KKC 2 -0110010011 Charvoz-Carsen 2 -0110010011 Lineage 2 -0110010011 Racer-Mate 2 -0110010011 Ventron 2 -0110010011 IPC 2 -0110010011 Lante 2 -0110010011 Childesign 2 -0110010011 Prescience 2 -0110010011 Cybermedic 2 -0110010011 Teleco 2 -0110010011 Triboro 2 -0110010011 Superscope 2 -0110010011 Bellville 2 -0110010011 Pacad 2 -0110010011 Pharmasol 2 -0110010011 HemaCare 2 -0110010011 Corvita 2 -0110010011 UniFirst 2 -0110010011 Tabata 2 -0110010011 Nymagic 2 -0110010011 Comstron 2 -0110010011 BATUS 2 -0110010011 Perceptronics 2 -0110010011 apparel-maker 2 -0110010011 Haemonetics 2 -0110010011 Jefferson-Pilot 2 -0110010011 Whitso 2 -0110010011 Qume 2 -0110010011 Cobanco 2 -0110010011 Datamag 2 -0110010011 Solectric 2 -0110010011 Painewebber 2 -0110010011 WearEver-Proctor-Silex 2 -0110010011 AirSensors 2 -0110010011 Hatibudi 2 -0110010011 Svedrup 2 -0110010011 Biosurge 2 -0110010011 PrinTron 2 -0110010011 WEFA-CEIS 2 -0110010011 Sovitalprodmash 2 -0110010011 Crystallume 2 -0110010011 Nevsur 2 -0110010011 AlliedSignal 2 -0110010011 Baltek 2 -0110010011 Rollerblade 2 -0110010011 Timberjack 2 -0110010011 Samna 2 -0110010011 Alltac 2 -0110010011 Sunstrand 2 -0110010011 Naturalite 2 -0110010011 S&ME 2 -0110010011 Intercargo 2 -0110010011 Glasrock 2 -0110010011 MacroChem 2 -0110010011 Halfan 2 -0110010011 Nichols-Homeshield 2 -0110010011 LaserVideo 2 -0110010011 CBJ 2 -0110010011 PasoTex 2 -0110010011 Sealectro 2 -0110010011 Stotter 2 -0110010011 Hipotronics 2 -0110010011 Eastek 2 -0110010011 Marriot 2 -0110010011 Canparts 2 -0110010011 FRESH 2 -0110010011 Cataract 2 -0110010011 Amron 2 -0110010011 VCS 2 -0110010011 Enclean 2 -0110010011 RB&W 2 -0110010011 HEMODYNAMICS 2 -0110010011 GeoSpectra 2 -0110010011 Myco-Sci 2 -0110010011 GRUMMAN 2 -0110010011 Acrodyne 2 -0110010011 Havi 2 -0110010011 Visionetics 2 -0110010011 Eldec 2 -0110010011 Kroehler 2 -0110010011 PRA 2 -0110010011 Ajusto 2 -0110010011 ORIX 2 -0110010011 Spacehab 2 -0110010011 Magicsilk 2 -0110010011 Sunningdale 2 -0110010011 Elcotel 2 -0110010011 Pixar 2 -0110010011 Caere 2 -0110010011 Etonic 2 -0110010011 Iconnex 2 -0110010011 Bizmart 2 -0110010011 Toyogo 2 -0110010011 Chem-Trend 2 -0110010011 Samband 2 -0110010011 POLAROID 2 -0110010011 Sportscope 2 -0110010011 Teknekron 2 -0110010011 Ninoy 2 -0110010011 Johor 2 -0110010011 Shop-rite 2 -0110010011 Unico 2 -0110010011 Serv-Tech 2 -0110010011 Moondoggie 2 -0110010011 Porter-Cable 2 -0110010011 Stargroup 2 -0110010011 Composting 2 -0110010011 TMCare 2 -0110010011 MCKESSON 2 -0110010011 MicroDirect 2 -0110010011 Joule 2 -0110010011 Flav-o-rich 2 -0110010011 Orientar 2 -0110010011 ATT 2 -0110010011 Arix 2 -0110010011 RKO-Warner 2 -0110010011 Patchen 2 -0110010011 BRIntec 2 -0110010011 Techknits 2 -0110010011 Imco 2 -0110010011 Cutler-Hammer 2 -0110010011 Amplicon 2 -0110010011 Xiox 2 -0110010011 Willingway 2 -0110010011 Temex 2 -0110010011 Tamper 2 -0110010011 Shurfine-Central 2 -0110010011 Regal-Beloit 2 -0110010011 Nastec 2 -0110010011 Colibri 2 -0110010011 Karissim 2 -0110010011 Wahlco 2 -0110010011 Remarketed 2 -0110010011 WTVG 2 -0110010011 Fics 2 -0110010011 Solectron 2 -0110010011 Vamo 2 -0110010011 State-O-Maine 2 -0110010011 AnchorMedia 2 -0110010011 Feralloy 2 -0110010011 MDFC 2 -0110010011 Buhler-Miag 2 -0110010011 Mimesys 2 -0110010011 Donnkenny 2 -0110010011 EnviroMed 2 -0110010011 Gerico 2 -0110010011 Soricon 2 -0110010011 C-Tec 2 -0110010011 Brasilpar 2 -0110010011 FundsNet 2 -0110010011 Questor 2 -0110010011 CenterCore 2 -0110010011 Murachi 2 -0110010011 SCS/Compute 2 -0110010011 Raia-1 2 -0110010011 Englehard 2 -0110010011 Unioil 2 -0110010011 Taymar 2 -0110010011 Mistix 2 -0110010011 Infrasonics 2 -0110010011 Certainteed 2 -0110010011 Cores 2 -0110010011 Medway 2 -0110010011 Case-Pomeroy 2 -0110010011 Nichimen 2 -0110010011 Rixson-Firemark 2 -0110010011 N-Cube 2 -0110010011 T.J.X. 2 -0110010011 ShopRite 2 -0110010011 SummerStage 2 -0110010011 Dynax 2 -0110010011 SynOptics 2 -0110010011 Dataphaz 2 -0110010011 Oerlikon-Motch 2 -0110010011 Entronics 2 -0110010011 CheckRobot 2 -0110010011 Identix 2 -0110010011 Demerger 2 -0110010011 Certain-Teed 2 -0110010011 Birdair 2 -0110010011 Ling-Pei 2 -0110010011 RF 2 -0110010011 Wacoal 2 -0110010011 CEM 2 -0110010011 FZ 2 -0110010011 Stilton 2 -0110010011 USBank 2 -0110010011 Macrochem 2 -0110010011 Cosmopolous 2 -0110010011 Enceratec 2 -0110010011 MetalBanc 2 -0110010011 Craftways 2 -0110010011 Amfax 2 -0110010011 Kay-Bee 2 -0110010011 Raycom 2 -0110010011 MSF 2 -0110010011 Dataline 2 -0110010011 Verifine 2 -0110010011 NTS 2 -0110010011 Electro-Protective 2 -0110010011 AGP/Gentech 2 -0110010011 Selox 2 -0110010011 Kop-Coat 2 -0110010011 Possis 2 -0110010011 Tolvid 2 -0110010011 Rangeline 2 -0110010011 Valisys 2 -0110010011 Monchik-Weber 2 -0110010011 Aeicor 2 -0110010011 KSK 2 -0110010011 Calspan 2 -0110010011 Moore-Handley 2 -0110010011 Centrabank 2 -0110010011 Carbochem 2 -0110010011 Tempcraft 2 -0110010011 Comtec 2 -0110010011 UKP 2 -0110010011 Sillerman-Magee 2 -0110010011 Edgecomb 2 -0110010011 Diversco 2 -0110010011 Ecomar 2 -0110010011 CGF 2 -0110010011 Eltra 2 -0110010011 4Z 2 -0110010011 Dumagami 2 -0110010011 LDB 2 -0110010011 Xeta 2 -0110010011 Comcoa 2 -0110010011 SEITEL 2 -0110010011 NPI 2 -0110010011 244,900 2 -0110010011 Servotronics 2 -0110010011 Permea 2 -0110010011 EIC/Intelligence 2 -0110010011 Pitney-Bowes 2 -0110010011 Escagen 2 -0110010011 Faxnet 2 -0110010011 Airus 2 -0110010011 Execu-bill 2 -0110010011 Catena 2 -0110010011 Firstmark 2 -0110010011 Larami 2 -0110010011 Divines 2 -0110010011 KAO 2 -0110010011 Tuboscope 2 -0110010011 Rheinisch 2 -0110010011 Nichias 2 -0110010011 Petro-Port 2 -0110010011 Stereographics 2 -0110010011 Girvan 2 -0110010011 WEVD-FM 2 -0110010011 Reef-Baker 2 -0110010011 Aptus 2 -0110010011 Onsite 2 -0110010011 MESSERSCHMITT-BOELKOW-BLOHM 2 -0110010011 Eurocapital 2 -0110010011 Camp-Hill 2 -0110010011 Vitelic 2 -0110010011 Anser 2 -0110010011 ADVO-System 2 -0110010011 StoreBoard 2 -0110010011 Fiberspun 2 -0110010011 Robehr 2 -0110010011 Valcom 2 -0110010011 Darter 2 -0110010011 IEH 2 -0110010011 Xycom 2 -0110010011 MITE 3 -0110010011 JAT 3 -0110010011 Sybedon 3 -0110010011 EMA 3 -0110010011 Revcom 3 -0110010011 Tele-Talk 3 -0110010011 RFI 3 -0110010011 Servomation 3 -0110010011 Softdisk 3 -0110010011 Sorecam 3 -0110010011 Helenus 3 -0110010011 Cofer 3 -0110010011 DRAVO 3 -0110010011 Intouch 3 -0110010011 SimuFlite 3 -0110010011 Ambase 3 -0110010011 Jodevin 3 -0110010011 Oculon 3 -0110010011 Sunstyle 3 -0110010011 JMK 3 -0110010011 CROP 3 -0110010011 Mer-National 3 -0110010011 OHM 3 -0110010011 Westwater 3 -0110010011 NetMap 3 -0110010011 Champale 3 -0110010011 10,544,549 3 -0110010011 Aion 3 -0110010011 Cerner 3 -0110010011 Trigen 3 -0110010011 Mylex 3 -0110010011 Recorp 3 -0110010011 Compuserve 3 -0110010011 Cadema 3 -0110010011 Selfix 3 -0110010011 ANF-Industrie 3 -0110010011 ScotiaMcLeod 3 -0110010011 Oakleaf 3 -0110010011 GSU 3 -0110010011 CoMED 3 -0110010011 Midac 3 -0110010011 ImmunoGen 3 -0110010011 Interfirst 3 -0110010011 Permargo 3 -0110010011 CENTEL 3 -0110010011 Roscor 3 -0110010011 Vari-Care 3 -0110010011 VSA 3 -0110010011 Misco 3 -0110010011 Dataflex 3 -0110010011 McColl-Frontenac 3 -0110010011 Interpoint 3 -0110010011 EyeDentify 3 -0110010011 Caithness 3 -0110010011 Cortec 3 -0110010011 CitizensTrust 3 -0110010011 Triax 3 -0110010011 GreyCom 3 -0110010011 Buhrmann-Tetterode 3 -0110010011 BizMart 3 -0110010011 Transalta 3 -0110010011 FNMA 3 -0110010011 CPP/Belwin 3 -0110010011 UniCare 3 -0110010011 Code-A-Phone 3 -0110010011 Mediators 3 -0110010011 Dal-Tile 3 -0110010011 Phar-Mor 3 -0110010011 Intertorg 3 -0110010011 USBancorp. 3 -0110010011 Price/Stern 3 -0110010011 TexCom 3 -0110010011 April-Marcus 3 -0110010011 Oncor 3 -0110010011 Gem-Stat 3 -0110010011 TWCA 3 -0110010011 Scan-Tron 3 -0110010011 Foxmeyer 3 -0110010011 Biolectron 3 -0110010011 Techmedica 3 -0110010011 Recoton 3 -0110010011 Healthtrust 3 -0110010011 Stinu 3 -0110010011 Tosoh 3 -0110010011 ValCom 3 -0110010011 Transicoil 3 -0110010011 Orgotein 3 -0110010011 PB 3 -0110010011 EES 3 -0110010011 Lanxide 3 -0110010011 AutoSpa 3 -0110010011 Microdot 3 -0110010011 Innovex 3 -0110010011 Amundson 3 -0110010011 Movats 3 -0110010011 Clonetics 3 -0110010011 VAMO 3 -0110010011 Raebarn 3 -0110010011 Inference 3 -0110010011 Ferrin 3 -0110010011 Marketmaster 3 -0110010011 Intec 3 -0110010011 Chutes 3 -0110010011 RJR/Nabisco 3 -0110010011 Maxaxam 3 -0110010011 ISFA 3 -0110010011 Keycorp 3 -0110010011 Mediatex 3 -0110010011 Atalla 3 -0110010011 HMG 3 -0110010011 Uretek 3 -0110010011 Conmed 3 -0110010011 Polyclad 3 -0110010011 Industrivarden 3 -0110010011 Parallax 3 -0110010011 Hi-Rise 3 -0110010011 TJFC 3 -0110010011 ASTRA 3 -0110010011 Populus 3 -0110010011 GeoPower 3 -0110010011 Cosmopoulos 3 -0110010011 SeaPharm 3 -0110010011 Figi 3 -0110010011 Nunachiaq 3 -0110010011 Tel/Man 3 -0110010011 Winjak 3 -0110010011 Innocan 3 -0110010011 Bechtel-Control 3 -0110010011 Equitrans 3 -0110010011 Iggesund 3 -0110010011 USLICO 3 -0110010011 Swaco 3 -0110010011 M&SD 3 -0110010011 Perkin 3 -0110010011 Albertsons 3 -0110010011 HNSX 3 -0110010011 Ramtron 3 -0110010011 Endata 3 -0110010011 Tortoni 3 -0110010011 Sperti 3 -0110010011 Petricca 3 -0110010011 Garan 3 -0110010011 CSB 3 -0110010011 GSH 3 -0110010011 Quintron 3 -0110010011 MEAD 3 -0110010011 Sav-A-Stop 3 -0110010011 Met-Pro 3 -0110010011 Extranet 3 -0110010011 Electro-Module 3 -0110010011 DaiIchi 3 -0110010011 Amerace 3 -0110010011 Sunroc 3 -0110010011 Hermetite 3 -0110010011 MarkitStar 3 -0110010011 Telecast 3 -0110010011 Mosler 3 -0110010011 Suresoft 3 -0110010011 IntelliCreations 3 -0110010011 Sangue 3 -0110010011 AmeriCare 3 -0110010011 TERA 3 -0110010011 Cintas 3 -0110010011 ARIX 3 -0110010011 Datalease 3 -0110010011 Eye-Optics 3 -0110010011 Maco 3 -0110010011 Isotronics 3 -0110010011 CytRx 3 -0110010011 Desoto 3 -0110010011 UniCARE 3 -0110010011 Sullair 3 -0110010011 Bellofram 3 -0110010011 Health-Mor 3 -0110010011 Greybridge 3 -0110010011 STV 3 -0110010011 KIS 3 -0110010011 Allen-Myland 3 -0110010011 Calcol 3 -0110010011 Bomarko 3 -0110010011 Foodcraft 3 -0110010011 Kenner-Parker 3 -0110010011 LandVest 3 -0110010011 Macrodata 3 -0110010011 GEORGIA-PACIFIC 3 -0110010011 Ovest 3 -0110010011 WHIRLPOOL 3 -0110010011 Slavenburg 3 -0110010011 Subcontracting 3 -0110010011 Baukol-Noonan 3 -0110010011 IVAX 3 -0110010011 Epyx 3 -0110010011 Synerlogic 3 -0110010011 Hotelecopy 3 -0110010011 Distacom 3 -0110010011 Sabreliner 3 -0110010011 Ebara 3 -0110010011 Conatec 3 -0110010011 Solarex 3 -0110010011 Nutech 3 -0110010011 Asiana 3 -0110010011 Rite-Aid 3 -0110010011 Cellserve 3 -0110010011 Wehco 3 -0110010011 Algorex 3 -0110010011 ENRON 3 -0110010011 Tele-Metropole 3 -0110010011 Blackside 3 -0110010011 Shinagawa 3 -0110010011 Kukje 3 -0110010011 Hazel/Peterson 3 -0110010011 Zitel 3 -0110010011 Canpak 3 -0110010011 Mouland 3 -0110010011 Suprex 3 -0110010011 Sutorbilt 3 -0110010011 DuroFlow 3 -0110010011 Biopure 3 -0110010011 Meret 3 -0110010011 MEDphone 3 -0110010011 Korvettes 3 -0110010011 4,950,000 3 -0110010011 Omnilab 3 -0110010011 Pepco 3 -0110010011 Norlin 3 -0110010011 Accudyne 3 -0110010011 JAC 3 -0110010011 Persona 3 -0110010011 Drillamex 3 -0110010011 NTI 3 -0110010011 Xomed 3 -0110010011 GTech 3 -0110010011 Nadco 3 -0110010011 FlowMole 3 -0110010011 Reil 3 -0110010011 Learfield 3 -0110010011 Eira 3 -0110010011 Twinpak 3 -0110010011 DataVault 3 -0110010011 Goldtex 3 -0110010011 Celotex 3 -0110010011 Domglas 3 -0110010011 NMH 3 -0110010011 Burritt 3 -0110010011 ChemRex 3 -0110010011 Tuckahoe 3 -0110010011 Quintessence 3 -0110010011 ORFA 3 -0110010011 Norplex/Oak 3 -0110010011 Hitox 3 -0110010011 Medic-Light 4 -0110010011 Code-a-Phone 4 -0110010011 Legent 4 -0110010011 AirGas 4 -0110010011 II-VI 4 -0110010011 FiServ 4 -0110010011 RehabCare 4 -0110010011 Hi-Net 4 -0110010011 Com 4 -0110010011 Shopsmith 4 -0110010011 FLC 4 -0110010011 Texsun 4 -0110010011 LaserData 4 -0110010011 Kemira 4 -0110010011 Bioject 4 -0110010011 Romet 4 -0110010011 Mallcap 4 -0110010011 RenTco 4 -0110010011 Kansa 4 -0110010011 Xplor 4 -0110010011 Tifco 4 -0110010011 Accutek 4 -0110010011 Pharmafair 4 -0110010011 Orrefors 4 -0110010011 UNB 4 -0110010011 HydraPak 4 -0110010011 Novus 4 -0110010011 Sciaky 4 -0110010011 Touchtone 4 -0110010011 Edmont 4 -0110010011 Primedical 4 -0110010011 Telequest 4 -0110010011 LaTique 4 -0110010011 PGI 4 -0110010011 Alba-Waldensian 4 -0110010011 Fibreco 4 -0110010011 FirstTier 4 -0110010011 Takata 4 -0110010011 Mascotind 4 -0110010011 D-A-Y 4 -0110010011 Infonet 4 -0110010011 Mindscape 4 -0110010011 Hydranautics 4 -0110010011 WIVB-TV 4 -0110010011 Dyncorp. 4 -0110010011 Otisville 4 -0110010011 Syntro 4 -0110010011 Genetically 4 -0110010011 Stanhome 4 -0110010011 Playmates 4 -0110010011 Biosearch 4 -0110010011 Pokka 4 -0110010011 Aeroquip 4 -0110010011 CenCor 4 -0110010011 NHLBI 4 -0110010011 Radius 4 -0110010011 Photomedica 4 -0110010011 FBX 4 -0110010011 K.M.C. 4 -0110010011 Ultrasystem 4 -0110010011 Burtons 4 -0110010011 Calmat 4 -0110010011 Genrad 4 -0110010011 Condere 4 -0110010011 Scantech 4 -0110010011 GynoPharma 4 -0110010011 AIDA 4 -0110010011 LDDS 4 -0110010011 ATG 4 -0110010011 LifeCore 4 -0110010011 CRI 4 -0110010011 Citigames 4 -0110010011 H&C 4 -0110010011 CPAC 4 -0110010011 SelecTronics 4 -0110010011 Imeg 4 -0110010011 Xytronyx 4 -0110010011 Pars 4 -0110010011 DRX 4 -0110010011 Vitel 4 -0110010011 Granitech 4 -0110010011 Hoyts 4 -0110010011 Telugu 4 -0110010011 Scantron 4 -0110010011 Scat 4 -0110010011 Ecopetrol 4 -0110010011 Fabricland 4 -0110010011 Yarrimup 4 -0110010011 Geritech 4 -0110010011 Atmos 4 -0110010011 Alascom 4 -0110010011 GBC 4 -0110010011 Datagate 4 -0110010011 Tegra 4 -0110010011 MPB 4 -0110010011 Carbozulia 4 -0110010011 EB 4 -0110010011 Uslico 4 -0110010011 Datagram 4 -0110010011 GenCorp. 4 -0110010011 Inter-Tel 4 -0110010011 Gentex 4 -0110010011 KFC 4 -0110010011 Engraph 4 -0110010011 Maecorp 4 -0110010011 Ico 4 -0110010011 BMG 4 -0110010011 Lear-Siegler 4 -0110010011 Tokheim 4 -0110010011 Amre 4 -0110010011 Commtron 4 -0110010011 Larson-Davis 4 -0110010011 Crutcher-Tufts 4 -0110010011 TeleCom 4 -0110010011 Bresnan 4 -0110010011 Magnetek 4 -0110010011 MHM 4 -0110010011 Tele-Art 4 -0110010011 Krysalis 4 -0110010011 Gussini 4 -0110010011 Baker-Hughes 4 -0110010011 BarclaysAmerican 4 -0110010011 Valtec 4 -0110010011 SouthTrust 4 -0110010011 FFB 4 -0110010011 Otasco 4 -0110010011 WEPco 4 -0110010011 Parker/Hunter 4 -0110010011 Termiflex 4 -0110010011 NaBanco 4 -0110010011 Baleme 4 -0110010011 Vencor 4 -0110010011 Cytel 4 -0110010011 Phillips-Ramsey 4 -0110010011 Longs 4 -0110010011 Healthwatch 4 -0110010011 Infocom 4 -0110010011 Softsave 4 -0110010011 MNX 4 -0110010011 Intek 4 -0110010011 EnergyNorth 4 -0110010011 Qualitone 4 -0110010011 Icelandair 4 -0110010011 Woolworths 4 -0110010011 Telepanel 4 -0110010011 Amplica 4 -0110010011 Pharmatec 4 -0110010011 Essef 4 -0110010011 TeleTix 4 -0110010011 Seamark 4 -0110010011 Agamemnon 4 -0110010011 Avecor 4 -0110010011 Greystone 4 -0110010011 West-Cap 4 -0110010011 Candle 4 -0110010011 Bankvermont 4 -0110010011 KT 4 -0110010011 Esfinco 4 -0110010011 Corpak 4 -0110010011 Worldcorp 4 -0110010011 Datel 4 -0110010011 Pancretec 4 -0110010011 Insystec 4 -0110010011 CXI 4 -0110010011 C4 4 -0110010011 Notimex 4 -0110010011 Transmation 4 -0110010011 Chadha 4 -0110010011 Biosonics 4 -0110010011 Donrey 4 -0110010011 Unitil 4 -0110010011 Cici 4 -0110010011 SJO 4 -0110010011 Toreador 4 -0110010011 Dofor 4 -0110010011 Lanesborough 4 -0110010011 Hedstrom 5 -0110010011 Rubatex 5 -0110010011 Proteon 5 -0110010011 KinderCare 5 -0110010011 Valmet 5 -0110010011 Matthews-McCracken-Rutland 5 -0110010011 Aerovox 5 -0110010011 Robintech 5 -0110010011 AirBC 5 -0110010011 MacWeek 5 -0110010011 Triple-Five 5 -0110010011 Sanitas 5 -0110010011 TI-CARO 5 -0110010011 Kinderhill 5 -0110010011 SOUTHMARK 5 -0110010011 Chittenden 5 -0110010011 Hydreco 5 -0110010011 Receptech 5 -0110010011 Matec 5 -0110010011 Camex 5 -0110010011 Calprop 5 -0110010011 Aceto 5 -0110010011 Shintech 5 -0110010011 TransWorld 5 -0110010011 Presto-Tek 5 -0110010011 Chrylser 5 -0110010011 Carme 5 -0110010011 Cogenic 5 -0110010011 Sundt 5 -0110010011 Neorx 5 -0110010011 Reid-Ashman 5 -0110010011 Chugai-Upjohn 5 -0110010011 Berni 5 -0110010011 Jeyes 5 -0110010011 Norwesco 5 -0110010011 Pultrusions 5 -0110010011 Currentech 5 -0110010011 GoldCorp 5 -0110010011 F.A.C. 5 -0110010011 SKK 5 -0110010011 Flavorich 5 -0110010011 Del-Val 5 -0110010011 CTG 5 -0110010011 FlexiVan 5 -0110010011 Alzado 5 -0110010011 Cucos 5 -0110010011 Krown 5 -0110010011 Dranetz 5 -0110010011 IGX 5 -0110010011 Fenwal 5 -0110010011 LBS 5 -0110010011 Unicover 5 -0110010011 CSK 5 -0110010011 Goldbelt 5 -0110010011 Eastchester 5 -0110010011 MicroMentor 5 -0110010011 Lousiana 5 -0110010011 Filtrol 5 -0110010011 Goldcor 5 -0110010011 Vical 5 -0110010011 Electro-Nucleonics 5 -0110010011 SaniServ 5 -0110010011 Enhance 5 -0110010011 UP&L 5 -0110010011 Daimaru 5 -0110010011 Rimpull 5 -0110010011 Renfield 5 -0110010011 Superx 5 -0110010011 Step-Saver 5 -0110010011 Atcom 5 -0110010011 Diagnostek 5 -0110010011 Plentywood 5 -0110010011 Cepex 5 -0110010011 Microamerica 5 -0110010011 FirsTier 5 -0110010011 X-Rite 5 -0110010011 Atochem 5 -0110010011 NUS 5 -0110010011 Intermetrics 5 -0110010011 Amvest 5 -0110010011 Sport-craft 5 -0110010011 Maremont 5 -0110010011 CUNA 5 -0110010011 CrownAmerica 5 -0110010011 Weigh-Tronix 5 -0110010011 Imatron 5 -0110010011 B.I. 5 -0110010011 Quantitative 5 -0110010011 RTM 5 -0110010011 IMRE 5 -0110010011 UltraCom 5 -0110010011 Blockhurst 5 -0110010011 Foxmoor 5 -0110010011 MHP 5 -0110010011 Signetics 5 -0110010011 Igloo 5 -0110010011 Grant-Norpac 5 -0110010011 Microfab 5 -0110010011 Fincoll 5 -0110010011 Puritan-Bennett 5 -0110010011 Paxar 5 -0110010011 ProServe 5 -0110010011 Alimondo 5 -0110010011 O'Donnell-Usen 5 -0110010011 Malartic 5 -0110010011 Chipwich 5 -0110010011 DataMyte 5 -0110010011 Rangaire 5 -0110010011 Autotrol 5 -0110010011 Pyxis 5 -0110010011 Customedix 5 -0110010011 Cadbury-Schweppes 5 -0110010011 Intercambio 5 -0110010011 Metalbanc 5 -0110010011 MassBank 5 -0110010011 Tridom 5 -0110010011 Forma 5 -0110010011 Novamin 5 -0110010011 Ecusta 5 -0110010011 Costar 5 -0110010011 Lumbermens 5 -0110010011 Nichirei 5 -0110010011 Lesco 5 -0110010011 Medicore 5 -0110010011 CEL-SCI 5 -0110010011 Intellicorp 5 -0110010011 Sparton 5 -0110010011 Northwestel 5 -0110010011 Dotronix 5 -0110010011 Orbitel 5 -0110010011 Anglo-Suisse 5 -0110010011 Insat 5 -0110010011 Unistar 5 -0110010011 BancOhio 5 -0110010011 CoEquity 5 -0110010011 LecTec 5 -0110010011 Keptel 5 -0110010011 LTX 5 -0110010011 Duckling 5 -0110010011 Allsteel 5 -0110010011 Interphase 5 -0110010011 Pricor 5 -0110010011 Cambrex 5 -0110010011 Charter-Crellin 5 -0110010011 Microage 5 -0110010011 ZyMos 5 -0110010011 Datamax 5 -0110010011 Amertek 5 -0110010011 Quadram 5 -0110010011 Meineke 5 -0110010011 Advo-System 5 -0110010011 Krames 5 -0110010011 Tachonics 5 -0110010011 Skil 5 -0110010011 Votan 5 -0110010011 Audiovox 5 -0110010011 NBO 5 -0110010011 Stardent 5 -0110010011 Precor 5 -0110010011 Akorn 5 -0110010011 Marke/Sroge 5 -0110010011 Cadmus 6 -0110010011 DFM 6 -0110010011 Xscribe 6 -0110010011 Fotomat 6 -0110010011 O.R. 6 -0110010011 Moniterm 6 -0110010011 Beddor 6 -0110010011 Mobira 6 -0110010011 Markel 6 -0110010011 Lishen 6 -0110010011 Symtron 6 -0110010011 PHP 6 -0110010011 IMO 6 -0110010011 Danly 6 -0110010011 Hook-SupeRx 6 -0110010011 Kobrand 6 -0110010011 ABD 6 -0110010011 Fretter 6 -0110010011 MediVision 6 -0110010011 DNX 6 -0110010011 Congoleum 6 -0110010011 CDF-Chimie 6 -0110010011 Migent 6 -0110010011 MCCP 6 -0110010011 Bridgehead 6 -0110010011 Comdial 6 -0110010011 Ozite 6 -0110010011 Teleflex 6 -0110010011 Orix 6 -0110010011 Sunwest 6 -0110010011 Selecterm 6 -0110010011 Databill 6 -0110010011 Lo-Jack 6 -0110010011 Multi-Color 6 -0110010011 Aritech 6 -0110010011 Adesco 6 -0110010011 Medi-Mail 6 -0110010011 Adtec 6 -0110010011 Lifecodes 6 -0110010011 Arbella 6 -0110010011 Biospherics 6 -0110010011 Marson 6 -0110010011 4G 6 -0110010011 Netword 6 -0110010011 Starstream 6 -0110010011 Ibis 6 -0110010011 IGT 6 -0110010011 FilmDallas 6 -0110010011 Rubicon 6 -0110010011 Asha 6 -0110010011 Nyloncraft 6 -0110010011 Interscope 6 -0110010011 McCabe/Gordon 6 -0110010011 Devlieg 6 -0110010011 Geotel 6 -0110010011 IGB 6 -0110010011 TXL 6 -0110010011 Gilbarco 6 -0110010011 GB-Inno 6 -0110010011 Caloric 6 -0110010011 Imtec 6 -0110010011 Polifly 6 -0110010011 Acceleration 6 -0110010011 GNF 6 -0110010011 Hypres 6 -0110010011 Menasco 6 -0110010011 Avemco 6 -0110010011 Shongum 6 -0110010011 BeckZack 6 -0110010011 Wesley-Jessen 6 -0110010011 ALZA 6 -0110010011 Artel 6 -0110010011 Tultex 6 -0110010011 Mercator 6 -0110010011 Electrosource 6 -0110010011 Spire 6 -0110010011 Ciprico 6 -0110010011 Southwire 6 -0110010011 Paceco 6 -0110010011 Nanometrics 6 -0110010011 CompuShop 6 -0110010011 ProNet 6 -0110010011 NIAID 6 -0110010011 Geostar 6 -0110010011 Repco 6 -0110010011 Ameriana 6 -0110010011 Datum 6 -0110010011 Comshare 6 -0110010011 Shiley 6 -0110010011 Vitalink 6 -0110010011 USPCI 6 -0110010011 CMQ 6 -0110010011 Cilcorp 6 -0110010011 Uarco 6 -0110010011 Milastar 6 -0110010011 Samancor 6 -0110010011 Q-Med 6 -0110010011 Dorm 6 -0110010011 Frigitemp 6 -0110010011 Baldt 6 -0110010011 Barre-National 6 -0110010011 H.M.S.S. 6 -0110010011 RoyNat 6 -0110010011 U.N.A. 6 -0110010011 Infosearch 6 -0110010011 Calpers 6 -0110010011 Hunter-Melnor 6 -0110010011 Ecad 6 -0110010011 TVI 6 -0110010011 Sungard 6 -0110010011 Autoland 6 -0110010011 Tigon 6 -0110010011 MassMutual 6 -0110010011 Midcon 6 -0110010011 Hadron 6 -0110010011 Esco 6 -0110010011 Midland-Ross 6 -0110010011 Brintec 6 -0110010011 Agway 6 -0110010011 ENSR 6 -0110010011 FormWorx 6 -0110010011 Steyr 6 -0110010011 Quipp 6 -0110010011 Circon 6 -0110010011 Upshur 6 -0110010011 Zemex 6 -0110010011 Cytemp 6 -0110010011 Osmonics 6 -0110010011 Fleishman-Hillard 6 -0110010011 Avoset 6 -0110010011 SeaLand 6 -0110010011 Qantel 6 -0110010011 Stant 6 -0110010011 Symantec 6 -0110010011 McTravel 6 -0110010011 Clarins 6 -0110010011 Daka 6 -0110010011 Haida 6 -0110010011 Cognos 6 -0110010011 A.M.A. 6 -0110010011 DeltaUS 6 -0110010011 Canaco 6 -0110010011 Mediagenic 6 -0110010011 Careercom 7 -0110010011 Drillers 7 -0110010011 Minnova 7 -0110010011 Wesbanco 7 -0110010011 Angio-Medical 7 -0110010011 Vitt 7 -0110010011 Interand 7 -0110010011 Primo 7 -0110010011 Sunward 7 -0110010011 ESL 7 -0110010011 Quinoco 7 -0110010011 CPL 7 -0110010011 CB&T 7 -0110010011 Circadian 7 -0110010011 Toastmaster 7 -0110010011 Microtel 7 -0110010011 Aerojet-General 7 -0110010011 Electromedics 7 -0110010011 Contran 7 -0110010011 ClothesTime 7 -0110010011 Dep 7 -0110010011 VeloBind 7 -0110010011 FPA 7 -0110010011 Comserv 7 -0110010011 Cattleguard 7 -0110010011 Ampco 7 -0110010011 Genus 7 -0110010011 Turnbridge 7 -0110010011 Medex 7 -0110010011 Amnion 7 -0110010011 KnowledgeWare 7 -0110010011 Amhoist 7 -0110010011 Palfed 7 -0110010011 Hillhaven 7 -0110010011 Teac 7 -0110010011 Codelco 7 -0110010011 FIserv 7 -0110010011 King-Casey 7 -0110010011 Advanta 7 -0110010011 Scotia-McLeod 7 -0110010011 Dumenil 7 -0110010011 PYA/Monarch 7 -0110010011 Altron 7 -0110010011 Ketema 7 -0110010011 KW 7 -0110010011 Tramco 7 -0110010011 Sanbar 7 -0110010011 Fleet-Norstar 7 -0110010011 Gatx 7 -0110010011 Sheldahl 7 -0110010011 Fel-Pro 7 -0110010011 Hycor 7 -0110010011 Weldotron 7 -0110010011 DEST 7 -0110010011 Nakamichi 7 -0110010011 Digidyne 7 -0110010011 Atlin 7 -0110010011 Kevlin 7 -0110010011 RFE/RL 7 -0110010011 TFF 7 -0110010011 Dataram 7 -0110010011 RCI 7 -0110010011 Bermans 7 -0110010011 Munsingwear 7 -0110010011 Virco 7 -0110010011 Healthvest 7 -0110010011 Moacq 7 -0110010011 SFFed 7 -0110010011 Alma-Leo 7 -0110010011 Microlytics 7 -0110010011 Starcraft 7 -0110010011 SIS 7 -0110010011 Jhirmack 7 -0110010011 San/Bar 7 -0110010011 Atex 7 -0110010011 PruCapital 7 -0110010011 Cooker 7 -0110010011 Wegener 7 -0110010011 RJR-Nabisco 7 -0110010011 Elexis 7 -0110010011 Westcorp 7 -0110010011 Initials+ 7 -0110010011 Gesco 7 -0110010011 Trans-Tech 7 -0110010011 Crest-Foam 7 -0110010011 ATN 7 -0110010011 Lodgistix 7 -0110010011 Noxso 7 -0110010011 Cencor 7 -0110010011 JTL 7 -0110010011 Audiotronics 7 -0110010011 LCI 7 -0110010011 LDI 7 -0110010011 RCA/Ariola 8 -0110010011 SJNB 8 -0110010011 GSX 8 -0110010011 Ziyad 8 -0110010011 IntraWest 8 -0110010011 Roulette 8 -0110010011 BancOklahoma 8 -0110010011 Elston 8 -0110010011 Dynatech 8 -0110010011 Forethought 8 -0110010011 Riedel 8 -0110010011 Halbur 8 -0110010011 Energen 8 -0110010011 Weitek 8 -0110010011 NT&T 8 -0110010011 HSST 8 -0110010011 RWE 8 -0110010011 IB&T 8 -0110010011 AirTran 8 -0110010011 ColorTyme 8 -0110010011 Preway 8 -0110010011 Takasago 8 -0110010011 Bowmar 8 -0110010011 ECAD 8 -0110010011 Pentech 8 -0110010011 Polychrome 8 -0110010011 Embryogen 8 -0110010011 Timex 8 -0110010011 Unitek 8 -0110010011 KuwAm 8 -0110010011 Rossignol 8 -0110010011 Norand 8 -0110010011 Tekelec 8 -0110010011 Kearney-National 8 -0110010011 Metrocorp 8 -0110010011 Rudani 8 -0110010011 G-2 8 -0110010011 Steelcase 8 -0110010011 Cormier 8 -0110010011 HLX 8 -0110010011 Foodways 8 -0110010011 G.R.I. 8 -0110010011 DSA 8 -0110010011 IntelliCorp 8 -0110010011 Altera 8 -0110010011 Centuri 8 -0110010011 Medar 8 -0110010011 Syntrex 8 -0110010011 Conchemco 8 -0110010011 Gainsco 8 -0110010011 Rho-Chem 8 -0110010011 Scicom 8 -0110010011 Ackerley 8 -0110010011 Microdyne 8 -0110010011 ICL 8 -0110010011 Mitre 8 -0110010011 ORS 8 -0110010011 Skylawn 8 -0110010011 Pyro 8 -0110010011 Warrantech 8 -0110010011 SolarCare 8 -0110010011 3CI 8 -0110010011 Nadacom 8 -0110010011 Amivest 8 -0110010011 Todd-AO 8 -0110010011 Hayes-Albion 8 -0110010011 Koret 8 -0110010011 ICAO 8 -0110010011 Mountain-Hi 8 -0110010011 SofTech 8 -0110010011 Entergy 8 -0110010011 Copytele 8 -0110010011 ChemDesign 8 -0110010011 Nutri/System 8 -0110010011 Intellicall 8 -0110010011 ProServ 8 -0110010011 UnionFed 8 -0110010011 BCV 8 -0110010011 Cal-Abco 8 -0110010011 Bandag 8 -0110010011 Calfed 8 -0110010011 ZMI 8 -0110010011 Photofinishing 8 -0110010011 SLM 8 -0110010011 Stratoflex 8 -0110010011 USBancorp 8 -0110010011 FCMI 8 -0110010011 Ealing 8 -0110010011 Raycon 8 -0110010011 Cevaxs 8 -0110010011 Stanwood 8 -0110010011 WQTV 8 -0110010011 Opcom 8 -0110010011 LeFebure 9 -0110010011 Advantest 9 -0110010011 Rada 9 -0110010011 DSM 9 -0110010011 GNC 9 -0110010011 Sanmark-Stardust 9 -0110010011 Lawn-Boy 9 -0110010011 Scope 9 -0110010011 Deltak 9 -0110010011 Xicor 9 -0110010011 Chemetron 9 -0110010011 AAI 9 -0110010011 Flamemaster 9 -0110010011 Lazere 9 -0110010011 Unimedia 9 -0110010011 LL&E 9 -0110010011 Fonar 9 -0110010011 TeleSciences 9 -0110010011 Nimbus 9 -0110010011 Eyelab 9 -0110010011 Archive 9 -0110010011 Siltec 9 -0110010011 Craig-Hallum 9 -0110010011 Banister 9 -0110010011 Rockresorts 9 -0110010011 GNB 9 -0110010011 Inmont 9 -0110010011 Kewaunee 9 -0110010011 Kroy 9 -0110010011 Odetics 9 -0110010011 Linus 9 -0110010011 Autofacts 9 -0110010011 Silvar-Lisco 9 -0110010011 Conus 9 -0110010011 RSCG 9 -0110010011 Amcore 9 -0110010011 Gen-Probe 9 -0110010011 Servam 9 -0110010011 Infotech 9 -0110010011 Kikkoman 9 -0110010011 NLO 9 -0110010011 Cambex 9 -0110010011 Voplex 9 -0110010011 Bradford-White 9 -0110010011 Measurex 9 -0110010011 Datametrics 9 -0110010011 Rayovac 9 -0110010011 Tandycrafts 9 -0110010011 Verticom 9 -0110010011 Baroid 9 -0110010011 TM 9 -0110010011 Diversicare 9 -0110010011 InterVoice 9 -0110010011 Newcor 9 -0110010011 IMT 9 -0110010011 Cipher 9 -0110010011 Inmac 9 -0110010011 Secomerica 9 -0110010011 Testor 9 -0110010011 VWR 9 -0110010011 Claren 9 -0110010011 Decor 9 -0110010011 GoldCor 9 -0110010011 Tecogen 9 -0110010011 AmBase 9 -0110010011 J&L 9 -0110010011 Datagraphix 9 -0110010011 Latigo 9 -0110010011 Jartran 9 -0110010011 Cydrome 9 -0110010011 GlenFed 9 -0110010011 Nycor 9 -0110010011 Worlco 9 -0110010011 THT 10 -0110010011 Ovex 10 -0110010011 Fuddruckers 10 -0110010011 Ecolaire 10 -0110010011 USAmeribancs 10 -0110010011 TBC 10 -0110010011 Intertect 10 -0110010011 Takihyo 10 -0110010011 Swift-Eckrich 10 -0110010011 Mestek 10 -0110010011 Abdollah 10 -0110010011 VSB 10 -0110010011 Maione-Hirschberg 10 -0110010011 Dysan 10 -0110010011 NFS 10 -0110010011 ComputerCraft 10 -0110010011 Ipco 10 -0110010011 Credit-Rite 10 -0110010011 Multibank 10 -0110010011 Wicor 10 -0110010011 Autodie 10 -0110010011 SDG&E 10 -0110010011 Rexon 10 -0110010011 Hubco 10 -0110010011 SpecTran 10 -0110010011 Ferrofluidics 10 -0110010011 TSI 10 -0110010011 INA 10 -0110010011 Quadra 10 -0110010011 Checkers 10 -0110010011 Envos 10 -0110010011 Corcap 10 -0110010011 Vitronics 10 -0110010011 Skolniks 10 -0110010011 Microbilt 10 -0110010011 JWD 10 -0110010011 TMK/United 10 -0110010011 UDC 10 -0110010011 Cognex 10 -0110010011 Emco 10 -0110010011 TransAlta 10 -0110010011 Photronics 10 -0110010011 Nellcor 10 -0110010011 HemoTec 10 -0110010011 Solitec 10 -0110010011 Burgmaster 10 -0110010011 BBN 10 -0110010011 Sanmark 10 -0110010011 Gruene 10 -0110010011 Tech/Ops 10 -0110010011 QMS 10 -0110010011 TBG 10 -0110010011 Archer-Daniels 10 -0110010011 Intermec 10 -0110010011 Sargent-Welch 10 -0110010011 CWT 10 -0110010011 Vitramon 10 -0110010011 Inter-Canadian 10 -0110010011 McDonalds 10 -0110010011 Flextronics 10 -0110010011 Computrac 10 -0110010011 Cytogen 10 -0110010011 WorldCorp 10 -0110010011 Mitral 10 -0110010011 PacifiCare 10 -0110010011 Mycogen 10 -0110010011 Valtek 11 -0110010011 IFRB 11 -0110010011 Univar 11 -0110010011 Hemodynamics 11 -0110010011 Foodarama 11 -0110010011 SunGroup 11 -0110010011 CMX 11 -0110010011 ShowBiz 11 -0110010011 Daxor 11 -0110010011 Americold 11 -0110010011 Cuisinarts 11 -0110010011 Altai 11 -0110010011 Theta 11 -0110010011 InSpeech 11 -0110010011 WellTech 11 -0110010011 Rex-Noreco 11 -0110010011 CPT 11 -0110010011 GB 11 -0110010011 Cablec 11 -0110010011 McDonnell-Douglas 11 -0110010011 Arista 11 -0110010011 Lamb-Weston 11 -0110010011 Graham-Field 11 -0110010011 Accuride 11 -0110010011 Rhino 11 -0110010011 Dictaphone 11 -0110010011 Hurco 11 -0110010011 K&F 11 -0110010011 Bruncor 11 -0110010011 MicroBilt 11 -0110010011 Univation 11 -0110010011 CIS 11 -0110010011 Datext 11 -0110010011 Moleculon 11 -0110010011 Barrister 11 -0110010011 Mobay 11 -0110010011 Alcide 11 -0110010011 Kenwood 11 -0110010011 Kalvar 11 -0110010011 Dicomed 11 -0110010011 Abermin 11 -0110010011 Epitope 11 -0110010011 Conair 11 -0110010011 Neeco 11 -0110010011 Dresher 12 -0110010011 CompuChem 12 -0110010011 Compumat 12 -0110010011 Amtech 12 -0110010011 EZ 12 -0110010011 FEA 12 -0110010011 Fujisankei 12 -0110010011 CareUnit 12 -0110010011 Teknowledge 12 -0110010011 Lotte 12 -0110010011 Isetan 12 -0110010011 Univisa 12 -0110010011 WearEver 12 -0110010011 Semicon 12 -0110010011 Bio-Response 12 -0110010011 DAP 12 -0110010011 Ramtek 12 -0110010011 Uni-Marts 12 -0110010011 ValEquity 12 -0110010011 Therapeutic 12 -0110010011 Birtcher 12 -0110010011 Kennecott 12 -0110010011 Systematics 12 -0110010011 Amcole 12 -0110010011 AIFS 12 -0110010011 Amdek 12 -0110010011 Farberware 12 -0110010011 Tribune/Swab-Fox 12 -0110010011 Cawsl 12 -0110010011 TVSM 12 -0110010011 Fingerhut 12 -0110010011 Ceradyne 12 -0110010011 C&C 12 -0110010011 Trilon 12 -0110010011 Pubco 12 -0110010011 Uniforce 12 -0110010011 Sunlite 12 -0110010011 Pre-Paid 12 -0110010011 XL/Datacomp 12 -0110010011 AMRE 12 -0110010011 Co-Steel 12 -0110010011 Synergen 12 -0110010011 LeaRonal 12 -0110010011 Comprint 12 -0110010011 GHR 12 -0110010011 Visx 12 -0110010011 Valspar 12 -0110010011 DEP 12 -0110010011 Armtec 12 -0110010011 SeaCo 12 -0110010011 Electro-Catheter 12 -0110010011 Unimation 12 -0110010011 Summagraphics 12 -0110010011 TransImage 12 -0110010011 MacKay-Shields 13 -0110010011 Calmar 13 -0110010011 La-Z-Boy 13 -0110010011 TeleCommunications 13 -0110010011 LOF 13 -0110010011 Vertex 13 -0110010011 Endo-Lase 13 -0110010011 Exar 13 -0110010011 Kapok 13 -0110010011 Ipsco 13 -0110010011 SherrGold 13 -0110010011 S&K 13 -0110010011 Zycad 13 -0110010011 TRC 13 -0110010011 Pentron 13 -0110010011 Rubloff 13 -0110010011 Digitech 13 -0110010011 Dyneer 13 -0110010011 Ivax 13 -0110010011 PennCorp 13 -0110010011 Intermet 13 -0110010011 Metpath 13 -0110010011 Dyansen 13 -0110010011 TeleCable 13 -0110010011 Sanden 13 -0110010011 Distributed 13 -0110010011 Health-Chem 13 -0110010011 Raynet 13 -0110010011 Nafco 13 -0110010011 Fisher-Price 13 -0110010011 MaxPharma 13 -0110010011 Itek 13 -0110010011 Beaman 13 -0110010011 Angiomedics 13 -0110010011 Technodyne 13 -0110010011 Jerr-Dan 13 -0110010011 Telesat 13 -0110010011 Prab 13 -0110010011 KitchenAid 13 -0110010011 Volt 13 -0110010011 Suncor 13 -0110010011 InterCare 13 -0110010011 Mega 13 -0110010011 Xylogics 13 -0110010011 Colorization 13 -0110010011 AmVestors 13 -0110010011 GardenAmerica 13 -0110010011 Murree 13 -0110010011 Dryclean 14 -0110010011 Tranzonic 14 -0110010011 Varityper 14 -0110010011 PolyGram 14 -0110010011 Delphax 14 -0110010011 Shearing 14 -0110010011 Walwyn 14 -0110010011 PhoneMate 14 -0110010011 Shopwell 14 -0110010011 Raindancer 14 -0110010011 TransLogic 14 -0110010011 Telectron 14 -0110010011 ChemClear 14 -0110010011 Kol 14 -0110010011 TriMas 14 -0110010011 Jewelmasters 14 -0110010011 Seatrain 14 -0110010011 OmniBank 14 -0110010011 Boase 14 -0110010011 Witco 14 -0110010011 DPL 14 -0110010011 Watsco 14 -0110010011 Alliance-Industrial 14 -0110010011 Intertrans 14 -0110010011 Lexicon 14 -0110010011 Elder-Beerman 14 -0110010011 Chemlawn 14 -0110010011 Intercorp. 14 -0110010011 Telecrafter 14 -0110010011 GRI 14 -0110010011 Arnox 14 -0110010011 Tridex 14 -0110010011 Williams-Sonoma 14 -0110010011 InterConnect 14 -0110010011 Hexcel 14 -0110010011 Parker-Hannifin 14 -0110010011 Ecogen 14 -0110010011 DCNY 14 -0110010011 Analogic 14 -0110010011 Eskey 14 -0110010011 Loblaw 14 -0110010011 WearEver-ProctorSilex 14 -0110010011 DPC 14 -0110010011 Ascii 14 -0110010011 Venturian 15 -0110010011 Equitex 15 -0110010011 Judicate 15 -0110010011 Comp-U-Check 15 -0110010011 Jovan 15 -0110010011 Standard-Pacific 15 -0110010011 AEC 15 -0110010011 Personics 15 -0110010011 Technitrol 15 -0110010011 QuesTech 15 -0110010011 MNet 15 -0110010011 Bercor 15 -0110010011 SP 15 -0110010011 Synbiotics 15 -0110010011 LFC 15 -0110010011 Sonnenblick-Goldman 15 -0110010011 Gynex 15 -0110010011 Kennametal 15 -0110010011 Kinark 15 -0110010011 Birdfinder 15 -0110010011 NCA 15 -0110010011 CommerceBancorp 15 -0110010011 Metro-Richelieu 15 -0110010011 AES 15 -0110010011 Enzon 15 -0110010011 Clarcor 15 -0110010011 Burndy 15 -0110010011 Automatix 15 -0110010011 VenTech 15 -0110010011 Hauserman 15 -0110010011 Avantek 15 -0110010011 Sizeler 15 -0110010011 Cosmair 15 -0110010011 Genicom 15 -0110010011 FOKKER 15 -0110010011 InterNorth 15 -0110010011 Orbanco 15 -0110010011 Paddington 15 -0110010011 FGIC 15 -0110010011 SMC 15 -0110010011 Penril 15 -0110010011 Certron 15 -0110010011 RLC 15 -0110010011 LaBarge 15 -0110010011 Trism 15 -0110010011 Metromail 16 -0110010011 Graco 16 -0110010011 Liebert 16 -0110010011 CalComp 16 -0110010011 Tryart 16 -0110010011 Riddell 16 -0110010011 Diodes 16 -0110010011 Equion 16 -0110010011 Clini-Therm 16 -0110010011 Benguet 16 -0110010011 Jacor 16 -0110010011 Digicon 16 -0110010011 Nikon 16 -0110010011 Enterra 16 -0110010011 Executone 16 -0110010011 Sybase 16 -0110010011 Comfed 16 -0110010011 Pennbancorp 16 -0110010011 ODS 16 -0110010011 Morningstar 16 -0110010011 Maidenform 16 -0110010011 Christiana 16 -0110010011 NeoRx 16 -0110010011 Hammerson 16 -0110010011 AAR 16 -0110010011 SPX 16 -0110010011 Dairymen 16 -0110010011 Finnigan 16 -0110010011 Criton 16 -0110010011 Sycamore 16 -0110010011 Americare 16 -0110010011 Cadam 16 -0110010011 Rykoff-Sexton 16 -0110010011 Medserv 16 -0110010011 Lumonics 16 -0110010011 Mickelberry 16 -0110010011 Safety-Kleen 16 -0110010011 Sippican 16 -0110010011 Marcom 16 -0110010011 Aon 16 -0110010011 BWAC 16 -0110010011 TeleQuest 16 -0110010011 Initio 16 -0110010011 C-TEC 16 -0110010011 Oxoco 16 -0110010011 PHM 16 -0110010011 Gary-Wheaton 16 -0110010011 AlternaCare 17 -0110010011 Spartech 17 -0110010011 Abiomed 17 -0110010011 Combe 17 -0110010011 Ticketmaster 17 -0110010011 Ampad 17 -0110010011 Hana 17 -0110010011 Davox 17 -0110010011 Soquip 17 -0110010011 Kaypro 17 -0110010011 Louart 17 -0110010011 Armel 17 -0110010011 Carena 17 -0110010011 Seven-Eleven 17 -0110010011 Tigera 17 -0110010011 ICEE 17 -0110010011 Brajdas 17 -0110010011 Funtime 17 -0110010011 Realist 17 -0110010011 Mallinckrodt 17 -0110010011 NBS 17 -0110010011 Pagurian 17 -0110010011 LJN 17 -0110010011 Tipperary 17 -0110010011 DeSoto 17 -0110010011 IPCO 17 -0110010011 Moscom 17 -0110010011 GWC 17 -0110010011 Credithrift 17 -0110010011 Movielab 17 -0110010011 Zim 17 -0110010011 Dynalectron 17 -0110010011 Dynapac 17 -0110010011 ESI 17 -0110010011 UNUM 17 -0110010011 Riunite 17 -0110010011 Transatlantic 17 -0110010011 Rexene 17 -0110010011 Integon 17 -0110010011 Homewood 17 -0110010011 Thetford 17 -0110010011 Gundle 18 -0110010011 Siliconix 18 -0110010011 Helionetics 18 -0110010011 Marcon 18 -0110010011 Equinox 18 -0110010011 Scientific-Atlanta 18 -0110010011 BankWorcester 18 -0110010011 Kimmins 18 -0110010011 DiGiorgio 18 -0110010011 Fox-Meyer 18 -0110010011 Nicor 18 -0110010011 CXR 18 -0110010011 Minntech 18 -0110010011 Datapower 18 -0110010011 BancTec 18 -0110010011 PictureTel 18 -0110010011 Howmet 18 -0110010011 Jamesway 18 -0110010011 Quiksilver 18 -0110010011 Texscan 18 -0110010011 Scitex 18 -0110010011 Equibank 18 -0110010011 Syndicated 18 -0110010011 Kaydon 19 -0110010011 MCN 19 -0110010011 Incstar 19 -0110010011 TCF 19 -0110010011 Danners 19 -0110010011 Freightliner 19 -0110010011 USLico 19 -0110010011 FPCO 19 -0110010011 UA 19 -0110010011 Cache 19 -0110010011 TRT 19 -0110010011 Unum 19 -0110010011 Onset 19 -0110010011 ARX 19 -0110010011 Norrell 19 -0110010011 Acme-Cleveland 19 -0110010011 SSC&B 19 -0110010011 Austron 19 -0110010011 Unibancorp 19 -0110010011 Endevco 19 -0110010011 NorthEastern 19 -0110010011 Komag 19 -0110010011 Allergan 19 -0110010011 SnyderGeneral 19 -0110010011 Trans-Lux 19 -0110010011 Canteen 19 -0110010011 VMX 19 -0110010011 Amrep 20 -0110010011 Phototron 20 -0110010011 SAPC 20 -0110010011 Axlon 20 -0110010011 Rent-A-Center 20 -0110010011 Anitec 20 -0110010011 APL 20 -0110010011 Microcom 20 -0110010011 Colorcraft 20 -0110010011 SAMI/Burke 20 -0110010011 Wynton 20 -0110010011 Honeybee 20 -0110010011 Lambda 20 -0110010011 Arcadian 20 -0110010011 Copelco 20 -0110010011 Wessex 20 -0110010011 Enseco 20 -0110010011 Syscon 20 -0110010011 Minatome 20 -0110010011 Tracy-Locke 20 -0110010011 Crestar 20 -0110010011 Corestates 20 -0110010011 Dyncorp 20 -0110010011 Cuero 20 -0110010011 Ameritrust 20 -0110010011 Microsemi 20 -0110010011 FileNet 20 -0110010011 Strata 20 -0110010011 EDO 20 -0110010011 Medusa 20 -0110010011 Postipankki 20 -0110010011 Goldcrest 20 -0110010011 TransCapital 20 -0110010011 Autospa 21 -0110010011 GF 21 -0110010011 TransTechnology 21 -0110010011 Ampex 21 -0110010011 Neutrogena 21 -0110010011 Staples 21 -0110010011 LDBrinkman 21 -0110010011 MEPC 21 -0110010011 BayBanks 21 -0110010011 BMA 21 -0110010011 Dai-ichi 21 -0110010011 Millipore 21 -0110010011 Avnet 21 -0110010011 Octel 21 -0110010011 Varlen 21 -0110010011 Filtertek 21 -0110010011 Aro 21 -0110010011 Epsilon 21 -0110010011 HMSS 21 -0110010011 Shaer 21 -0110010011 Molex 22 -0110010011 Norelco 22 -0110010011 Ohlmeyer 22 -0110010011 Allwaste 22 -0110010011 Cornerstone 22 -0110010011 Zehntel 22 -0110010011 Time-Warner 22 -0110010011 Edgcomb 22 -0110010011 Hyponex 22 -0110010011 Pathe 22 -0110010011 NESB 22 -0110010011 Omnicare 22 -0110010011 Orbis 22 -0110010011 Elxsi 22 -0110010011 Numerica 22 -0110010011 Organogenesis 22 -0110010011 HealthAmerica 22 -0110010011 Xebec 22 -0110010011 Stanline 22 -0110010011 Canonie 22 -0110010011 Servo 22 -0110010011 Paradigm 22 -0110010011 Francorp 22 -0110010011 Perkin-Elmer 22 -0110010011 Plantronics 22 -0110010011 Elcor 22 -0110010011 MDT 22 -0110010011 TSO 22 -0110010011 Priam 22 -0110010011 Anaren 23 -0110010011 XYZ 23 -0110010011 Meditrust 23 -0110010011 Sorbus 23 -0110010011 WestLB 23 -0110010011 WNS 23 -0110010011 Citytrust 23 -0110010011 Adage 23 -0110010011 Buffton 23 -0110010011 Cobey 23 -0110010011 Karibu 23 -0110010011 HEI 23 -0110010011 Autodesk 23 -0110010011 Prentice-Hall 23 -0110010011 SFN 23 -0110010011 Zentec 23 -0110010011 Interleukin-2 23 -0110010011 Exovir 23 -0110010011 Epsco 23 -0110010011 Dyatron 23 -0110010011 Harte-Hanks 23 -0110010011 Isoetec 23 -0110010011 Abington 23 -0110010011 Scovill 23 -0110010011 Lennar 23 -0110010011 Elise 23 -0110010011 Westpride 23 -0110010011 Genesco 23 -0110010011 Multi-Local 23 -0110010011 Norstan 23 -0110010011 BankAtlantic 23 -0110010011 Research-Cottrell 23 -0110010011 Alphametrics 23 -0110010011 VBI 23 -0110010011 Loctite 24 -0110010011 Logicon 24 -0110010011 Cetec 24 -0110010011 Sybron 24 -0110010011 Joslyn 24 -0110010011 Wackenhut 24 -0110010011 Phlcorp 24 -0110010011 CBS/Fox 24 -0110010011 AMF 24 -0110010011 Quanex 24 -0110010011 ACC 24 -0110010011 Activision 24 -0110010011 Chanel 24 -0110010011 Votrax 24 -0110010011 Muscocho 24 -0110010011 Knogo 24 -0110010011 Nucorp 24 -0110010011 BFS 24 -0110010011 CompuDyne 24 -0110010011 Nordson 24 -0110010011 Teradata 24 -0110010011 Canron 24 -0110010011 BMY 24 -0110010011 Chatswood 24 -0110010011 UST 24 -0110010011 Kaman 24 -0110010011 Shaklee 24 -0110010011 Tangent 24 -0110010011 Argosystems 24 -0110010011 Calton 24 -0110010011 GTS 24 -0110010011 Industrivaerden 24 -0110010011 USLife 24 -0110010011 Transcon 24 -0110010011 Miniscribe 24 -0110010011 Kasler 24 -0110010011 BankVermont 25 -0110010011 Trizec 25 -0110010011 Equifax 25 -0110010011 Chemed 25 -0110010011 Immunomedics 25 -0110010011 Westworld 25 -0110010011 Silvercrest 25 -0110010011 CCX 25 -0110010011 Numac 25 -0110010011 Datacopy 25 -0110010011 Temco 26 -0110010011 Dayco 26 -0110010011 Compugraphic 26 -0110010011 HomeFed 26 -0110010011 Warrington 26 -0110010011 Winn-Dixie 26 -0110010011 Selas 26 -0110010011 Biomet 26 -0110010011 Spectramed 26 -0110010011 Anschutz 26 -0110010011 Biotherapeutics 26 -0110010011 Atmel 26 -0110010011 Sigmaform 26 -0110010011 Newbery 26 -0110010011 Wespercorp 26 -0110010011 AMI 26 -0110010011 JWP 26 -0110010011 Unitel 26 -0110010011 Informix 26 -0110010011 Tymnet 26 -0110010011 Dickey-John 26 -0110010011 Camco 27 -0110010011 Canfor 27 -0110010011 Epic 27 -0110010011 CarePlus 27 -0110010011 Interspec 27 -0110010011 Paychex 27 -0110010011 EIP 27 -0110010011 Computerland 27 -0110010011 MichCon 27 -0110010011 Silo 27 -0110010011 LLC 27 -0110010011 Ivaco 27 -0110010011 Pentair 27 -0110010011 TEC 27 -0110010011 Angelica 27 -0110010011 Bairnco 27 -0110010011 Alumax 27 -0110010011 Imnet 27 -0110010011 Gottschalks 28 -0110010011 Pacificorp 28 -0110010011 Dual-Lite 28 -0110010011 Settsu 28 -0110010011 Entree 28 -0110010011 Imre 28 -0110010011 Chargit 28 -0110010011 Enviropact 28 -0110010011 SkyWest 28 -0110010011 CMI 28 -0110010011 Clothestime 28 -0110010011 Warnaco 28 -0110010011 Minster 28 -0110010011 Reece 28 -0110010011 Wetterau 28 -0110010011 UGI 28 -0110010011 Andal 28 -0110010011 Amstar 28 -0110010011 DataCard 28 -0110010011 Bacardi 28 -0110010011 Bookstop 28 -0110010011 McCrory 28 -0110010011 WordPerfect 28 -0110010011 Atico 28 -0110010011 HealthTrust 28 -0110010011 Code-Alarm 28 -0110010011 Sport-About 29 -0110010011 Cosmo 29 -0110010011 Delmed 29 -0110010011 Armada 29 -0110010011 Telaction 29 -0110010011 Equatorial 29 -0110010011 Acuson 29 -0110010011 NUI 29 -0110010011 Horten 29 -0110010011 Genzyme 29 -0110010011 MBIA 29 -0110010011 ComFed 29 -0110010011 IGI 29 -0110010011 Ex-Cell-O 29 -0110010011 Greenery 29 -0110010011 Summcorp 29 -0110010011 Taisei 29 -0110010011 Stouffer 29 -0110010011 Dynascan 29 -0110010011 Intrex 29 -0110010011 Nu-Med 29 -0110010011 Aircoa 29 -0110010011 Micropolis 29 -0110010011 Lydall 30 -0110010011 CDI 30 -0110010011 Diebold 30 -0110010011 Ungermann-Bass 30 -0110010011 Stater 30 -0110010011 GenRad 30 -0110010011 Tech-Sym 30 -0110010011 Aydin 30 -0110010011 Sunstates 30 -0110010011 DeVry 30 -0110010011 Abex 30 -0110010011 Oryx 30 -0110010011 Berkline 30 -0110010011 Halmi 30 -0110010011 Teikoku 30 -0110010011 Questar 30 -0110010011 Telecredit 30 -0110010011 T-Bar 31 -0110010011 Sunstar 31 -0110010011 Howtek 31 -0110010011 MicroGeneSys 31 -0110010011 TIE 31 -0110010011 Aztar 31 -0110010011 Augat 31 -0110010011 Esterline 31 -0110010011 Up-Right 31 -0110010011 Norcen 32 -0110010011 PWA 32 -0110010011 Hemmeter 32 -0110010011 Multimedia 32 -0110010011 SCE 32 -0110010011 Terex 32 -0110010011 IDB 32 -0110010011 Ziff 32 -0110010011 Elan 32 -0110010011 FoxMeyer 32 -0110010011 Olsten 32 -0110010011 CNA 32 -0110010011 Margaux 32 -0110010011 Dalfort 33 -0110010011 Computalog 33 -0110010011 Renta 33 -0110010011 Raytech 33 -0110010011 Sylvan 33 -0110010011 Verbatim 33 -0110010011 Timeplex 33 -0110010011 Distrigas 33 -0110010011 Sovereign 33 -0110010011 Claris 33 -0110010011 Caremark 33 -0110010011 Kajima 33 -0110010011 Woodstream 33 -0110010011 CareerCom 34 -0110010011 Comarco 34 -0110010011 Wardair 34 -0110010011 Invacare 34 -0110010011 Homac 34 -0110010011 CompuTrac 34 -0110010011 Ranco 34 -0110010011 Bearings 34 -0110010011 SDS 34 -0110010011 RPM 34 -0110010011 Thomson-CSF 34 -0110010011 IRT 34 -0110010011 Ardshiel 34 -0110010011 Safeguard 34 -0110010011 Jostens 35 -0110010011 Blocker 35 -0110010011 Excelan 35 -0110010011 Collagen 35 -0110010011 Masonite 35 -0110010011 PSE 35 -0110010011 MEI 35 -0110010011 Equitec 35 -0110010011 Minolta 35 -0110010011 Pulte 35 -0110010011 Konica 36 -0110010011 Glenmore 36 -0110010011 Cyacq 36 -0110010011 Airgas 36 -0110010011 Tylan 36 -0110010011 Gandalf 36 -0110010011 Swank 36 -0110010011 Iomega 36 -0110010011 K-H 36 -0110010011 Daiei 36 -0110010011 Calgene 36 -0110010011 CityFed 36 -0110010011 AmBrit 36 -0110010011 Telos 36 -0110010011 Synalloy 36 -0110010011 Uniden 36 -0110010011 Interlake 36 -0110010011 Atcor 36 -0110010011 Suave 36 -0110010011 Comair 36 -0110010011 Shoe-Town 37 -0110010011 EMC 37 -0110010011 SouthernNet 37 -0110010011 Esmark 37 -0110010011 WestMarc 37 -0110010011 Curtiss-Wright 37 -0110010011 CompuServe 37 -0110010011 XTRA 37 -0110010011 Wavetek 37 -0110010011 Hybritech 37 -0110010011 Unitrode 37 -0110010011 Teleport 37 -0110010011 Ethyl 38 -0110010011 Brinkmann 38 -0110010011 Xtra 38 -0110010011 Fairmont 38 -0110010011 Summa 38 -0110010011 Dyson-Kissner-Moran 38 -0110010011 MBI 38 -0110010011 Montclair 38 -0110010011 Mapco 39 -0110010011 Kayser-Roth 39 -0110010011 Servico 39 -0110010011 HCA 39 -0110010011 Lumex 39 -0110010011 Rubbermaid 40 -0110010011 Texstyrene 40 -0110010011 Hartmarx 40 -0110010011 Petrominerals 40 -0110010011 Kirin 41 -0110010011 Kuhlman 41 -0110010011 Adams-Millis 41 -0110010011 Frito-Lay 41 -0110010011 Ransburg 41 -0110010011 Intelogic 41 -0110010011 Telenet 41 -0110010011 Orange-co 41 -0110010011 Potlatch 41 -0110010011 AT&E 41 -0110010011 Carter-Wallace 41 -0110010011 Kevex 41 -0110010011 Eastmet 42 -0110010011 South-North 42 -0110010011 CoastAmerica 42 -0110010011 Westvaco 42 -0110010011 Xoma 42 -0110010011 Alza 42 -0110010011 Conrac 42 -0110010011 Vishay 43 -0110010011 Safeco 43 -0110010011 Enfield 43 -0110010011 Xyvision 43 -0110010011 SCM 43 -0110010011 Crain 43 -0110010011 GTI 43 -0110010011 Kao 43 -0110010011 Technicolor 44 -0110010011 Reflectone 44 -0110010011 BankEast 44 -0110010011 Valid 44 -0110010011 Emulex 44 -0110010011 Malrite 44 -0110010011 Teleglobe 44 -0110010011 FMI 44 -0110010011 Nucor 44 -0110010011 Integra 44 -0110010011 NZI 44 -0110010011 Jem 44 -0110010011 SSMC 45 -0110010011 SunGard 45 -0110010011 Vantage 45 -0110010011 Ferro 45 -0110010011 Petro-Lewis 45 -0110010011 Ohbayashi 45 -0110010011 Chyron 45 -0110010011 Sigma 45 -0110010011 Candela 45 -0110010011 PCS 46 -0110010011 Celeron 46 -0110010011 Univision 46 -0110010011 Colorocs 46 -0110010011 Alpharel 46 -0110010011 Pacer 46 -0110010011 DSC 46 -0110010011 Echlin 46 -0110010011 Ametek 46 -0110010011 ADM 46 -0110010011 VF 46 -0110010011 Interleaf 47 -0110010011 Kinburn 47 -0110010011 GATX 47 -0110010011 Novo 47 -0110010011 UTL 47 -0110010011 GranTree 47 -0110010011 SEI 47 -0110010011 Invitron 47 -0110010011 Baldwin-United 47 -0110010011 Scholastic 47 -0110010011 CCC 47 -0110010011 Peachey 48 -0110010011 Alamco 48 -0110010011 HealthVest 48 -0110010011 Quebecor 48 -0110010011 USF&G 48 -0110010011 Adelphia 48 -0110010011 ICH 48 -0110010011 Thermedics 48 -0110010011 Actmedia 48 -0110010011 Canrad 48 -0110010011 Ultimate 48 -0110010011 Staar 48 -0110010011 Phibro 49 -0110010011 C-I-L 49 -0110010011 Welbilt 49 -0110010011 Jerrico 49 -0110010011 Go-Video 49 -0110010011 Pannill 49 -0110010011 Fidata 49 -0110010011 Temple-Inland 50 -0110010011 FMR 50 -0110010011 Ampco-Pittsburgh 50 -0110010011 Royale 50 -0110010011 Tidewater 50 -0110010011 Gtech 50 -0110010011 Marubeni 50 -0110010011 Alfin 50 -0110010011 Seagull 50 -0110010011 Anacomp 50 -0110010011 Neworld 51 -0110010011 Jewel 51 -0110010011 C3 51 -0110010011 Richardson-Vicks 51 -0110010011 Centronics 51 -0110010011 PHLCorp 51 -0110010011 Pogo 51 -0110010011 Stelco 51 -0110010011 Mediq 51 -0110010011 Batterymarch 51 -0110010011 Allis-Chalmers 52 -0110010011 Trimedyne 52 -0110010011 Symbion 52 -0110010011 Pamour 52 -0110010011 Chronar 52 -0110010011 Jewelcor 53 -0110010011 I.R.E. 53 -0110010011 GW 53 -0110010011 Ultrasystems 53 -0110010011 Acmat 54 -0110010011 Electro-Biology 54 -0110010011 TRE 54 -0110010011 LivingWell 54 -0110010011 Torstar 54 -0110010011 Dataproducts 54 -0110010011 ASK 54 -0110010011 Thrifty 54 -0110010011 Fidelcor 55 -0110010011 Dofasco 55 -0110010011 Xidex 55 -0110010011 TJX 55 -0110010011 Dialog 55 -0110010011 Avalon 55 -0110010011 InterTan 55 -0110010011 Danaher 55 -0110010011 Maxtor 56 -0110010011 Culbro 56 -0110010011 Sysco 56 -0110010011 Cousins 56 -0110010011 Medtronic 56 -0110010011 Cambior 57 -0110010011 HCC 57 -0110010011 Ameron 57 -0110010011 Bayly 57 -0110010011 E-Systems 57 -0110010011 Torchmark 57 -0110010011 Geico 58 -0110010011 Canadair 58 -0110010011 Millicom 58 -0110010011 Patlex 58 -0110010011 Amdura 58 -0110010011 AMP 58 -0110010011 Verex 58 -0110010011 InterTAN 58 -0110010011 Ensco 59 -0110010011 Instinet 59 -0110010011 Sheller-Globe 59 -0110010011 Intergraph 59 -0110010011 Stewart-Warner 59 -0110010011 Windmere 60 -0110010011 Fibreboard 60 -0110010011 Isomedix 60 -0110010011 CVN 60 -0110010011 Lorillard 60 -0110010011 Hazeltine 60 -0110010011 Canterra 60 -0110010011 ABI 60 -0110010011 Ensource 60 -0110010011 Lifetime 60 -0110010011 Dekalb 60 -0110010011 Repligen 61 -0110010011 AirCal 61 -0110010011 Faberge 61 -0110010011 Penske 61 -0110010011 Elsinore 62 -0110010011 Spectra-Physics 62 -0110010011 Amway 63 -0110010011 Steego 63 -0110010011 MacMillan 63 -0110010011 Vernitron 63 -0110010011 MTech 63 -0110010011 Nokia 64 -0110010011 Aldus 64 -0110010011 CIP 64 -0110010011 BHC 64 -0110010011 Diamandis 64 -0110010011 NBD 64 -0110010011 Harsco 65 -0110010011 D&N 65 -0110010011 Renouf 65 -0110010011 Hollinger 65 -0110010011 CRS 65 -0110010011 Heico 65 -0110010011 CFS 65 -0110010011 ADT 65 -0110010011 Dial 65 -0110010011 Zale 65 -0110010011 Unigesco 65 -0110010011 Portec 66 -0110010011 Enserch 66 -0110010011 Genex 66 -0110010011 Novell 67 -0110010011 Axa 67 -0110010011 Mitel 67 -0110010011 Uccel 67 -0110010011 Waldenbooks 67 -0110010011 ALC 67 -0110010011 Radice 68 -0110010011 MDI 68 -0110010011 Ionics 68 -0110010011 Cullum 68 -0110010011 Deluxe 68 -0110010011 Sovran 68 -0110010011 RTE 68 -0110010011 Petro-Canada 69 -0110010011 Ecolab 69 -0110010011 MLX 69 -0110010011 Tracinda 69 -0110010011 Ropak 69 -0110010011 Chiat/Day 69 -0110010011 Praxis 70 -0110010011 Valhi 70 -0110010011 Kane-Miller 70 -0110010011 Noxell 71 -0110010011 Melridge 71 -0110010011 Formica 71 -0110010011 Seafirst 71 -0110010011 Egghead 71 -0110010011 Nerco 71 -0110010011 FNN 71 -0110010011 MidCon 72 -0110010011 Lubrizol 72 -0110010011 Stifel 72 -0110010011 Cubic 72 -0110010011 Conseco 72 -0110010011 Kollmorgen 72 -0110010011 Cordis 72 -0110010011 Mohasco 72 -0110010011 Avco 72 -0110010011 Crownx 73 -0110010011 Harley-Davidson 73 -0110010011 GC&C 73 -0110010011 Brown-Forman 73 -0110010011 Mid-America 73 -0110010011 Federal-Mogul 73 -0110010011 Rapid-American 73 -0110010011 Lyphomed 74 -0110010011 Metex 74 -0110010011 Symbolics 75 -0110010011 Comdisco 75 -0110010011 UIS 75 -0110010011 PLM 75 -0110010011 Deltona 75 -0110010011 Hadson 76 -0110010011 G&W 76 -0110010011 Winners 76 -0110010011 Diamond-Bathurst 76 -0110010011 CooperVision 76 -0110010011 Systemhouse 77 -0110010011 Pandick 77 -0110010011 Hesston 77 -0110010011 Sabine 77 -0110010011 Arkla 77 -0110010011 Imo 78 -0110010011 Spinner 78 -0110010011 Valero 78 -0110010011 Lukens 78 -0110010011 Polygram 78 -0110010011 Imreg 79 -0110010011 Princeville 79 -0110010011 Pepperell 79 -0110010011 M/A-Com 80 -0110010011 Acustar 80 -0110010011 Sierracin 80 -0110010011 Lafarge 80 -0110010011 Bundy 80 -0110010011 Trailways 80 -0110010011 Centex 81 -0110010011 Tambrands 81 -0110010011 Consolidated-Bathurst 81 -0110010011 Devon 81 -0110010011 KDI 82 -0110010011 Oneok 82 -0110010011 Duracell 82 -0110010011 TDK 83 -0110010011 Raychem 83 -0110010011 Acton 83 -0110010011 CoreStates 83 -0110010011 AccuRay 83 -0110010011 VLI 83 -0110010011 Intermedics 84 -0110010011 NRM 84 -0110010011 Stanadyne 84 -0110010011 Paccar 84 -0110010011 Engelhard 85 -0110010011 Allis 85 -0110010011 Primark 85 -0110010011 Provigo 85 -0110010011 Zero 85 -0110010011 Sudbury 86 -0110010011 Sealy 86 -0110010011 CertainTeed 86 -0110010011 Motown 86 -0110010011 Gull 86 -0110010011 Showboat 87 -0110010011 Teradyne 87 -0110010011 Dover 87 -0110010011 EG&G 87 -0110010011 Trinova 87 -0110010011 Ariadne 87 -0110010011 Genstar 88 -0110010011 Basix 88 -0110010011 Airborne 88 -0110010011 Spectradyne 88 -0110010011 Monoclonal 88 -0110010011 DynCorp 88 -0110010011 Norstar 89 -0110010011 Northview 90 -0110010011 Healthdyne 90 -0110010011 Midlantic 90 -0110010011 Alleco 90 -0110010011 Selkirk 90 -0110010011 Diasonics 90 -0110010011 Trans-Resources 91 -0110010011 Fleet/Norstar 91 -0110010011 AVX 91 -0110010011 Teck 92 -0110010011 Waldbaum 92 -0110010011 Foodmaker 93 -0110010011 Memorex 93 -0110010011 Comcast 93 -0110010011 Canam 93 -0110010011 Entex 93 -0110010011 UNC 94 -0110010011 NKK 95 -0110010011 Ducommun 96 -0110010011 Royex 96 -0110010011 Immunex 96 -0110010011 Munford 96 -0110010011 Carteret 97 -0110010011 Hawkeye 97 -0110010011 Kinder-Care 97 -0110010011 Trustcorp 97 -0110010011 Lorimar-Telepictures 97 -0110010011 Asamera 97 -0110010011 Zondervan 97 -0110010011 KeyCorp 98 -0110010011 Chesebrough 99 -0110010011 Centocor 99 -0110010011 Sequa 99 -0110010011 Rospatch 99 -0110010011 Minnetonka 100 -0110010011 Louisiana-Pacific 100 -0110010011 Donohue 100 -0110010011 Heusen 100 -0110010011 Intermark 100 -0110010011 Nordstrom 101 -0110010011 Zapata 101 -0110010011 Seemala 101 -0110010011 Flexi-Van 102 -0110010011 Abitibi-Price 102 -0110010011 MiniScribe 102 -0110010011 Ponderosa 103 -0110010011 Buckhorn 103 -0110010011 Rolm 103 -0110010011 NBI 104 -0110010011 Horsham 104 -0110010011 Tosco 104 -0110010011 Perini 104 -0110010011 Parisian 105 -0110010011 Salant 105 -0110010011 Outlet 106 -0110010011 KN 107 -0110010011 Bofors 107 -0110010011 Viratek 107 -0110010011 Freeport 108 -0110010011 Equimark 108 -0110010011 Lintas 109 -0110010011 Berkey 109 -0110010011 Sheraton 109 -0110010011 Pride 109 -0110010011 Alltel 110 -0110010011 Sonat 110 -0110010011 Kerr-McGee 110 -0110010011 Calny 110 -0110010011 Bic 110 -0110010011 Tracor 110 -0110010011 Cabot 111 -0110010011 Memotec 111 -0110010011 Bombardier 111 -0110010011 Lionel 112 -0110010011 Shuwa 112 -0110010011 Arvida 112 -0110010011 Bendix 112 -0110010011 HAL 112 -0110010011 Tandon 113 -0110010011 Huffy 114 -0110010011 Comerica 114 -0110010011 Sea-Land 114 -0110010011 Suffield 116 -0110010011 Cadnetix 116 -0110010011 Rexham 117 -0110010011 MacGregor 118 -0110010011 Transworld 118 -0110010011 Whitehall 118 -0110010011 Patten 118 -0110010011 Batus 119 -0110010011 Chiron 119 -0110010011 Lamaur 119 -0110010011 Cardis 119 -0110010011 Gemcraft 119 -0110010011 BNS 119 -0110010011 DWG 120 -0110010011 Stroh 120 -0110010011 Paradyne 121 -0110010011 Convergent 122 -0110010011 Maytag 122 -0110010011 Alleghany 122 -0110010011 Sunbeam 123 -0110010011 Southam 123 -0110010011 Duro-Test 123 -0110010011 Morse 123 -0110010011 Gelco 123 -0110010011 Socanav 124 -0110010011 Melville 127 -0110010011 Telxon 128 -0110010011 Wrather 128 -0110010011 MSI 128 -0110010011 GCA 129 -0110010011 3Com 129 -0110010011 Domtar 132 -0110010011 Recognition 134 -0110010011 Vortec 134 -0110010011 Maxus 135 -0110010011 Walbro 136 -0110010011 Payless 136 -0110010011 Kyocera 136 -0110010011 Endotronics 137 -0110010011 Cascades 137 -0110010011 BSN 137 -0110010011 Glenfed 137 -0110010011 Businessland 138 -0110010011 Tektronix 138 -0110010011 Sorg 138 -0110010011 LSI 139 -0110010011 Rexnord 139 -0110010011 Putnam 140 -0110010011 Whittaker 140 -0110010011 CalFed 141 -0110010011 Georgia-Pacific 142 -0110010011 Delchamps 142 -0110010011 Noverco 142 -0110010011 Conoco 143 -0110010011 Syntex 144 -0110010011 Kimberly-Clark 144 -0110010011 Uspci 145 -0110010011 Amgen 146 -0110010011 Dee 148 -0110010011 Insilco 149 -0110010011 Burroughs 149 -0110010011 Dana 150 -0110010011 Rosewood 151 -0110010011 CTS 151 -0110010011 Savin 151 -0110010011 Sundstrand 152 -0110010011 Cargill 153 -0110010011 Schering-Plough 154 -0110010011 Milacron 154 -0110010011 Freeport-McMoRan 156 -0110010011 Varo 156 -0110010011 Cypress 157 -0110010011 Biogen 160 -0110010011 Norwest 160 -0110010011 Tonka 162 -0110010011 Meritor 163 -0110010011 Centerior 163 -0110010011 Himont 164 -0110010011 AmeriTrust 166 -0110010011 Matrix 166 -0110010011 Canon 166 -0110010011 ESPN 167 -0110010011 Kidde 168 -0110010011 GMAC 170 -0110010011 Varity 170 -0110010011 Grolier 170 -0110010011 Ayer 170 -0110010011 Brockway 171 -0110010011 Vulcan 172 -0110010011 RTZ 173 -0110010011 Vons 173 -0110010011 Sperry 174 -0110010011 Ralston 175 -0110010011 ComputerLand 175 -0110010011 Avis 176 -0110010011 Chubb 177 -0110010011 Datapoint 179 -0110010011 Shawmut 180 -0110010011 Apache 180 -0110010011 Atlas 180 -0110010011 Fischbach 181 -0110010011 Cetus 181 -0110010011 LyphoMed 181 -0110010011 Amdahl 181 -0110010011 PacifiCorp 183 -0110010011 Hearst 184 -0110010011 Schering 188 -0110010011 Atari 190 -0110010011 Cenergy 191 -0110010011 Computervision 192 -0110010011 I.C.H. 194 -0110010011 Encor 195 -0110010011 ConAgra 195 -0110010011 ICI 196 -0110010011 Comsat 197 -0110010011 Teledyne 198 -0110010011 Vestron 202 -0110010011 Nike 206 -0110010011 Armco 207 -0110010011 Electrolux 208 -0110010011 Loews 209 -0110010011 IBP 210 -0110010011 Olin 210 -0110010011 CNW 210 -0110010011 Towers 210 -0110010011 Pennwalt 211 -0110010011 Linear 212 -0110010011 Petrie 212 -0110010011 Tyco 213 -0110010011 Catalyst 213 -0110010011 Armtek 214 -0110010011 Clabir 215 -0110010011 Excel 215 -0110010011 Hasbro 221 -0110010011 FMC 225 -0110010011 CMS 225 -0110010011 Asarco 225 -0110010011 Contel 225 -0110010011 Doskocil 227 -0110010011 Fruehauf 227 -0110010011 Meridian 229 -0110010011 Dai-Ichi 230 -0110010011 Southdown 232 -0110010011 Giorgio 234 -0110010011 ChemLawn 235 -0110010011 Newsweek 236 -0110010011 Storer 236 -0110010011 Humana 237 -0110010011 Amfac 237 -0110010011 Manpower 237 -0110010011 Gap 240 -0110010011 Pak 240 -0110010011 Itel 241 -0110010011 Fleet 241 -0110010011 Ameritech 241 -0110010011 Cigna 242 -0110010011 InterFirst 243 -0110010011 Cineplex 243 -0110010011 Transamerica 245 -0110010011 PNC 247 -0110010011 Loral 251 -0110010011 Transco 254 -0110010011 Kemper 257 -0110010011 Dravo 263 -0110010011 Cleveland-Cliffs 263 -0110010011 Neoax 266 -0110010011 Emhart 266 -0110010011 Bridgestone 267 -0110010011 Revco 278 -0110010011 Centel 278 -0110010011 Dreyfus 279 -0110010011 Pfizer 283 -0110010011 Quantum 287 -0110010011 Cyclops 294 -0110010011 Wal-Mart 294 -0110010011 Volvo 298 -0110010011 Owens-Illinois 299 -0110010011 Minstar 302 -0110010011 Ashton-Tate 305 -0110010011 Unicorp 309 -0110010011 Maxicare 310 -0110010011 Gibraltar 313 -0110010011 Knight-Ridder 319 -0110010011 Caterpillar 322 -0110010011 McKesson 325 -0110010011 Telex 326 -0110010011 Borden 332 -0110010011 Amax 333 -0110010011 Nortek 333 -0110010011 Fluor 336 -0110010011 Hooker 337 -0110010011 Mattel 340 -0110010011 BCE 340 -0110010011 Eaton 343 -0110010011 Hercules 346 -0110010011 Anheuser-Busch 346 -0110010011 Marriott 351 -0110010011 RCA 351 -0110010011 Enron 353 -0110010011 Safeway 355 -0110010011 Beneficial 355 -0110010011 Travelers 364 -0110010011 NCR 366 -0110010011 Zayre 367 -0110010011 Whirlpool 369 -0110010011 Polysar 375 -0110010011 Yankee 377 -0110010011 Textron 381 -0110010011 Squibb 384 -0110010011 Ramada 395 -0110010011 Damon 396 -0110010011 Manville 398 -0110010011 BellSouth 403 -0110010011 Noranda 404 -0110010011 Mead 411 -0110010011 McGraw-Hill 426 -0110010011 Primerica 428 -0110010011 CSX 432 -0110010011 McCaw 443 -0110010011 Nynex 457 -0110010011 NWA 475 -0110010011 Hertz 476 -0110010011 MCorp 476 -0110010011 Tele-Communications 486 -0110010011 NEC 489 -0110010011 Staley 495 -0110010011 Honeywell 505 -0110010011 Tandy 509 -0110010011 Borg-Warner 510 -0110010011 Unocal 518 -0110010011 TRW 524 -0110010011 PepsiCo 529 -0110010011 Grumman 531 -0110010011 Lilco 539 -0110010011 MGM/UA 550 -0110010011 Allied-Signal 554 -0110010011 Coastal 554 -0110010011 NCNB 567 -0110010011 Interco 575 -0110010011 Southmark 580 -0110010011 Piedmont 583 -0110010011 Motorola 594 -0110010011 Holiday 597 -0110010011 Braniff 597 -0110010011 GAF 603 -0110010011 Greyhound 610 -0110010011 Lorimar 612 -0110010011 Beatrice 614 -0110010011 USG 635 -0110010011 GenCorp 698 -0110010011 Wedtech 704 -0110010011 Nova 718 -0110010011 Tenneco 748 -0110010011 Lucky 770 -0110010011 Polaroid 776 -0110010011 Philips 776 -0110010011 Harcourt 785 -0110010011 Xerox 818 -0110010011 Wickes 822 -0110010011 Southland 825 -0110010011 K 837 -0110010011 Kraft 845 -0110010011 Genentech 851 -0110010011 Chevron 855 -0110010011 AMR 889 -0110010011 GTE 890 -0110010011 Mobil 910 -0110010011 Lockheed 917 -0110010011 Unisys 934 -0110010011 Eddie 940 -0110010011 ITT 954 -0110010011 Shamrock 983 -0110010011 Toshiba 1021 -0110010011 LTV 1046 -0110010011 Macmillan 1049 -0110010011 MCA 1054 -0110010011 TWA 1059 -0110010011 Amoco 1094 -0110010011 Microsoft 1100 -0110010011 MCI 1101 -0110010011 Sony 1126 -0110010011 USX 1128 -0110010011 Northrop 1141 -0110010011 Intel 1146 -0110010011 UAL 1189 -0110010011 ABC 1249 -0110010011 Allegis 1289 -0110010011 Exxon 1383 -0110010011 Allied 1446 -0110010011 BankAmerica 1577 -0110010011 Digital 1810 -0110010011 Warner 1882 -0110010011 Time 1894 -0110010011 NBC 2048 -0110010011 Campeau 2388 -0110010011 CBS 2654 -0110010011 Texaco 6032 -0110010011 Continental 3777 -0110010011 Eastern 4324 -0110010011 Chrysler 4487 -01100101000 Plural 1 -01100101000 refigerated 1 -01100101000 2,483 1 -01100101000 Tallahasee 1 -01100101000 Hudson-Yukon 1 -01100101000 2,458 1 -01100101000 Ucayali 1 -01100101000 HATTERSLEY 1 -01100101000 nibble-filled 1 -01100101000 Zulia 1 -01100101000 Walkill 1 -01100101000 2,446 1 -01100101000 Huanuco 1 -01100101000 Palabora 1 -01100101000 PARFUMS 1 -01100101000 2,406 1 -01100101000 2,391 1 -01100101000 Nichido 2 -01100101000 Middleboro 2 -01100101000 Hendersonville 2 -01100101000 CUH2A 2 -01100101000 Provincetown 2 -01100101000 KeyCorp. 2 -01100101000 Lockport 2 -01100101000 Thorofare 2 -01100101000 Carmignano 2 -01100101000 Breezewood 2 -01100101000 Plaistow 2 -01100101000 self-loathing 2 -01100101000 Artcarved 2 -01100101000 Nimes 2 -01100101000 Tigara 2 -01100101000 diverticulitis 2 -01100101000 Cady 2 -01100101000 Goffstown 2 -01100101000 here-now 2 -01100101000 Fonde 2 -01100101000 phase-2 2 -01100101000 Qalat 2 -01100101000 Prestwick 2 -01100101000 Sebokeng 2 -01100101000 Gladwyne 2 -01100101000 Majdanek 2 -01100101000 Petropolis 2 -01100101000 Titletown 2 -01100101000 Moldavians 2 -01100101000 1066 2 -01100101000 Arcobrasil 2 -01100101000 Chillum 2 -01100101000 Niquinohomo 2 -01100101000 Sunlaw 2 -01100101000 Opa-Locka 2 -01100101000 Yeovil 2 -01100101000 Lorian 2 -01100101000 Maquiliquat 2 -01100101000 Matra-Harris 2 -01100101000 Parral 2 -01100101000 FormBase 2 -01100101000 Halls 2 -01100101000 Belton 2 -01100101000 Stavropol 2 -01100101000 Woodglen 2 -01100101000 Pacoima 2 -01100101000 418.18 2 -01100101000 Soquel 2 -01100101000 Larose 2 -01100101000 telesynergistic 2 -01100101000 Guerneville 2 -01100101000 M-whatever 2 -01100101000 Wightman 2 -01100101000 Haslemere 2 -01100101000 InfoWorld 2 -01100101000 Ducommon 2 -01100101000 Burkeville 2 -01100101000 Sorsogon 2 -01100101000 329.36 2 -01100101000 Ensenada 2 -01100101000 Lapeer 2 -01100101000 Fieldston 2 -01100101000 Woonsocket 2 -01100101000 Wollo 2 -01100101000 VenVirotek 2 -01100101000 Pecos 2 -01100101000 Glendive 2 -01100101000 Goldendale 2 -01100101000 Tuesday-Thursday 2 -01100101000 Issaquah 2 -01100101000 Woodridge 2 -01100101000 Callicoon 2 -01100101000 Mooresville 2 -01100101000 Hakui 2 -01100101000 Reynosa 2 -01100101000 Korad 2 -01100101000 HUCTW 2 -01100101000 Swanton 2 -01100101000 Greenlawn 2 -01100101000 Bialystok 2 -01100101000 Reidsville 2 -01100101000 Speedring-Cullman 2 -01100101000 Midori 2 -01100101000 Bresslergroup 2 -01100101000 Balzac 2 -01100101000 Kirksville 2 -01100101000 Tomball 2 -01100101000 Myanma 2 -01100101000 Glide 2 -01100101000 Isfa 2 -01100101000 Weekley 2 -01100101000 Tianjian 2 -01100101000 Asmara 2 -01100101000 Malverne 2 -01100101000 drainpipes 2 -01100101000 Jogjakarta 2 -01100101000 Thibodaux 2 -01100101000 2:11:50 2 -01100101000 Anhui 2 -01100101000 Hardees 2 -01100101000 Holophane 2 -01100101000 Doncaster 2 -01100101000 Holdenville 2 -01100101000 Muenster 2 -01100101000 JEAN 2 -01100101000 Rhinebeck 2 -01100101000 1778 2 -01100101000 Dunnville 2 -01100101000 Gabbs 2 -01100101000 Hsinchu 2 -01100101000 Barnesville 2 -01100101000 Ossining 2 -01100101000 whalebone 2 -01100101000 Munising 2 -01100101000 Donaldsonville 2 -01100101000 Collegeville 2 -01100101000 deviants 2 -01100101000 Cressona 2 -01100101000 Morganton 2 -01100101000 Chitral 2 -01100101000 Suita 2 -01100101000 Vallejo 2 -01100101000 13-play 2 -01100101000 Wilbraham 2 -01100101000 Toccoa 2 -01100101000 dungeons 2 -01100101000 anistreplase 2 -01100101000 372.96 2 -01100101000 Neckarsulm 2 -01100101000 Dighton 2 -01100101000 Williamsville 2 -01100101000 236.03 2 -01100101000 proselytize 2 -01100101000 Dondi 2 -01100101000 Circleville 2 -01100101000 misogyny 2 -01100101000 Centreville 2 -01100101000 Burghausen 2 -01100101000 Castlegar 2 -01100101000 86-10 2 -01100101000 '53 2 -01100101000 Kuching 2 -01100101000 Toldeo 2 -01100101000 Arecibo 2 -01100101000 Varese 2 -01100101000 Dolton 2 -01100101000 furtiveness 2 -01100101000 1977-1981 2 -01100101000 Lebowa 2 -01100101000 Midlothian 3 -01100101000 Strasburg 3 -01100101000 Trevose 3 -01100101000 Magadan 3 -01100101000 Morazan 3 -01100101000 Starkville 3 -01100101000 Meilen 3 -01100101000 anti-depressants 3 -01100101000 DePuy 3 -01100101000 Berwick 3 -01100101000 Hyrum 3 -01100101000 Abingdon 3 -01100101000 Horicon 3 -01100101000 Zagorsk 3 -01100101000 Niland 3 -01100101000 KCBS 3 -01100101000 Goteborg 3 -01100101000 Virginiatown 3 -01100101000 Larned 3 -01100101000 Sinaloa 3 -01100101000 gardenia 3 -01100101000 Stewartville 3 -01100101000 Moorish 3 -01100101000 Lewistown 3 -01100101000 Campton 3 -01100101000 McBain 3 -01100101000 Massapequa 3 -01100101000 Goshen 3 -01100101000 Neuchatel 3 -01100101000 FCS 3 -01100101000 Chaumont 3 -01100101000 Ubidieh 3 -01100101000 Polmot 3 -01100101000 Dracut 3 -01100101000 Branchville 3 -01100101000 Fanwood 3 -01100101000 Wallachs 3 -01100101000 Verdigre 3 -01100101000 Find/SVP 3 -01100101000 Edirne 3 -01100101000 Easley 3 -01100101000 Rumford 3 -01100101000 Piketon 3 -01100101000 three-crew 3 -01100101000 Bannockburn 3 -01100101000 Menasha 3 -01100101000 Frankfurt-am-Main 3 -01100101000 Hanau 3 -01100101000 Frogtown 3 -01100101000 Ronkonkoma 3 -01100101000 Stavanger 3 -01100101000 Visicalc 3 -01100101000 Varna 3 -01100101000 Tolono 3 -01100101000 Absaloka 3 -01100101000 Altoona 3 -01100101000 Nomex 3 -01100101000 Bucksport 3 -01100101000 Marne-la-Vallee 3 -01100101000 Swiftwater 3 -01100101000 Grenelefe 3 -01100101000 Plainville 3 -01100101000 Richlands 3 -01100101000 Jhorehat 3 -01100101000 TRAK 3 -01100101000 Gerlafingen 3 -01100101000 Yokosuka 3 -01100101000 Martinsburg 3 -01100101000 Fangshan 3 -01100101000 Batanes 3 -01100101000 Kaduna 3 -01100101000 Pyronics 3 -01100101000 Herried 3 -01100101000 Bindlach 3 -01100101000 Cisco 3 -01100101000 Jalisco 3 -01100101000 Sistersville 3 -01100101000 Miraflores 3 -01100101000 VoiceMail 3 -01100101000 Hinche 3 -01100101000 Serv-A-Portion 3 -01100101000 Cricketeer 3 -01100101000 Froley 3 -01100101000 Truckee 3 -01100101000 Cuernavaca 3 -01100101000 Basingstoke 3 -01100101000 Gatineau 3 -01100101000 VicWest 3 -01100101000 Congers 3 -01100101000 Alliston 3 -01100101000 Scrubgrass 3 -01100101000 Shipman 3 -01100101000 Phoenixville 3 -01100101000 Gonfreville 3 -01100101000 Sakuraya 3 -01100101000 1852 3 -01100101000 serfdom 3 -01100101000 Arnhem 3 -01100101000 EPROMs 3 -01100101000 Sakura 3 -01100101000 Harris/3M 3 -01100101000 Holmdel 3 -01100101000 Spotswood 3 -01100101000 Secunda 3 -01100101000 Haarlem 3 -01100101000 Fabrica 3 -01100101000 Centerville 3 -01100101000 Shatin 3 -01100101000 Edgewater 3 -01100101000 Kirland 3 -01100101000 Sleaze 3 -01100101000 Camilla 3 -01100101000 Zanesville 3 -01100101000 Bremerton 3 -01100101000 Wannacomet 3 -01100101000 crewcut 3 -01100101000 Ophthalmology 3 -01100101000 Parlin 3 -01100101000 Lakenheath 3 -01100101000 gingivitis 3 -01100101000 Kennesaw 3 -01100101000 Lodi 3 -01100101000 Dilantin 3 -01100101000 Paderborn 3 -01100101000 Dortmund 3 -01100101000 1985-1987 3 -01100101000 London. 3 -01100101000 Clarinda 3 -01100101000 117-page 3 -01100101000 Bronxville 3 -01100101000 Waycross 3 -01100101000 Willowdale 3 -01100101000 Linlithgow 3 -01100101000 Bie 3 -01100101000 Falcontrust 3 -01100101000 Ljubljana 3 -01100101000 Kendallville 3 -01100101000 Focobank 3 -01100101000 Saxonburg 3 -01100101000 Cubana 3 -01100101000 Sapulpa 3 -01100101000 Ephesus 3 -01100101000 Burnsville 3 -01100101000 McAllen-Edinburg-Mission 3 -01100101000 Studebaker 3 -01100101000 Leutershausen 3 -01100101000 six-volume 3 -01100101000 Keokuk 3 -01100101000 GDR/Crest 3 -01100101000 Inter-Regional 3 -01100101000 Upland 3 -01100101000 Allendale 3 -01100101000 McMinnville 3 -01100101000 Southhampton 3 -01100101000 Kutak 3 -01100101000 Doylestown 4 -01100101000 polyethelene 4 -01100101000 1974-79 4 -01100101000 Bloomington-Normal 4 -01100101000 Philipsburg 4 -01100101000 27111.35 4 -01100101000 Tennesee 4 -01100101000 Trifari 4 -01100101000 Freedoms 4 -01100101000 Duxbury 4 -01100101000 Fairport 4 -01100101000 Woodburn 4 -01100101000 Newington 4 -01100101000 Saint-Remy 4 -01100101000 Epsom 4 -01100101000 liquefaction 4 -01100101000 CasaBlanca 4 -01100101000 Rincon 4 -01100101000 1849 4 -01100101000 Bushehr 4 -01100101000 Borovo 4 -01100101000 Turlock 4 -01100101000 Jenkintown 4 -01100101000 Windlesham 4 -01100101000 Info 4 -01100101000 Infoworld 4 -01100101000 Perrysburg 4 -01100101000 Chalatenango 4 -01100101000 Picuris 4 -01100101000 Levittown 4 -01100101000 Bartow 4 -01100101000 Blytheville 4 -01100101000 heavy-drinking 4 -01100101000 Harrodsburg 4 -01100101000 Zambezia 4 -01100101000 Morrisville 4 -01100101000 Pisgah 4 -01100101000 Kanata 4 -01100101000 Brazoria 4 -01100101000 trendiness 4 -01100101000 Ramapo 4 -01100101000 filmmaker 4 -01100101000 Cheerleader 4 -01100101000 Bitch 4 -01100101000 Oakhurst 4 -01100101000 Indio 4 -01100101000 Milledgeville 4 -01100101000 Mendota 4 -01100101000 Willingboro 4 -01100101000 QwaQwa 4 -01100101000 Rangely 4 -01100101000 Socorro 4 -01100101000 Zagreb 4 -01100101000 oot 4 -01100101000 Redlands 4 -01100101000 Crestwood 4 -01100101000 Pickerington 4 -01100101000 Philmont 4 -01100101000 Cienfuegos 4 -01100101000 Ahmadabad 4 -01100101000 tallish 4 -01100101000 Saada 4 -01100101000 Mankato 4 -01100101000 Pitman-Moore 4 -01100101000 constructivism 4 -01100101000 crockery 4 -01100101000 Magog 4 -01100101000 Palatka 4 -01100101000 Yuban 4 -01100101000 Incline 4 -01100101000 Lewisville 4 -01100101000 Haworth 4 -01100101000 Abidjan 4 -01100101000 sinusitis 4 -01100101000 Harveys 4 -01100101000 Bemidji 4 -01100101000 Hattiesburg 4 -01100101000 Nitta-Moore 4 -01100101000 Finstat 4 -01100101000 Lillehammer 4 -01100101000 Wiebelskirchen 4 -01100101000 Rouyn 4 -01100101000 Destin 4 -01100101000 Pachuca 4 -01100101000 Seaford 4 -01100101000 '59 4 -01100101000 Katonah 4 -01100101000 Seyfarth 4 -01100101000 Tarboro 4 -01100101000 diphtheria 4 -01100101000 Meleiha 4 -01100101000 Maywood 4 -01100101000 Wolof 4 -01100101000 Defex 4 -01100101000 Dikhil 4 -01100101000 Tishomingo 4 -01100101000 Cremona 4 -01100101000 Tiburon 4 -01100101000 Cherbourg 4 -01100101000 Atmore 4 -01100101000 Pupyong 4 -01100101000 '55 4 -01100101000 Tenafly 4 -01100101000 Uber 4 -01100101000 Thomaston 4 -01100101000 Emelle 4 -01100101000 Elba 4 -01100101000 Beardstown 4 -01100101000 BSA 4 -01100101000 Saar 4 -01100101000 Dongwan 4 -01100101000 Aquamar 4 -01100101000 Edinboro 4 -01100101000 Encinitas 4 -01100101000 Glenwood 4 -01100101000 Satomi 4 -01100101000 Ottumwa 4 -01100101000 Attica 4 -01100101000 Zhejiang 4 -01100101000 Bellaire 4 -01100101000 Mishawaka 4 -01100101000 Tullahoma 4 -01100101000 Haverhill 5 -01100101000 Leuven 5 -01100101000 Fremantle 5 -01100101000 Chacabuco 5 -01100101000 Dingxi 5 -01100101000 Cherryfield 5 -01100101000 Naha 5 -01100101000 Monimbo 5 -01100101000 Invention 5 -01100101000 Hyattsville 5 -01100101000 SCAT 5 -01100101000 Antioch 5 -01100101000 Hannover 5 -01100101000 Krasnodar 5 -01100101000 PM 5 -01100101000 Amityville 5 -01100101000 Riverton 5 -01100101000 Basrah 5 -01100101000 Ridgewood 5 -01100101000 Spearfish 5 -01100101000 Teterboro 5 -01100101000 Loraine 5 -01100101000 Rouyn-Noranda 5 -01100101000 Crawley 5 -01100101000 Adamstown 5 -01100101000 Merabank 5 -01100101000 Lutherville 5 -01100101000 Sept-Iles 5 -01100101000 Douglaston 5 -01100101000 Solbourne 5 -01100101000 Perryton 5 -01100101000 SGC 5 -01100101000 Watsonville 5 -01100101000 Lindenhurst 5 -01100101000 Bellport 5 -01100101000 1839 5 -01100101000 Noblesville 5 -01100101000 Moonachie 5 -01100101000 well-bred 5 -01100101000 Alydar 5 -01100101000 Huambo 5 -01100101000 Dalhart 5 -01100101000 Tamanrasset 5 -01100101000 Piraeus 5 -01100101000 Ukiah 5 -01100101000 Minot 5 -01100101000 Machias 5 -01100101000 Sugarland 5 -01100101000 Rota 5 -01100101000 Northumberland 5 -01100101000 Weisser 5 -01100101000 Accra 5 -01100101000 Whitehorse 5 -01100101000 Kwangyang 5 -01100101000 Denville 5 -01100101000 Millburn 5 -01100101000 Timonium 5 -01100101000 Brockport 5 -01100101000 Issa 5 -01100101000 Natchitoches 5 -01100101000 Breckenridge 5 -01100101000 Keener 5 -01100101000 Barberton 5 -01100101000 Miamisburg 5 -01100101000 Eutelsat 5 -01100101000 1976-77 5 -01100101000 McCook 5 -01100101000 Russellville 5 -01100101000 Raritan 5 -01100101000 Muscatine 5 -01100101000 Dania 5 -01100101000 Chappaqua 5 -01100101000 Marengo 5 -01100101000 Geismar 5 -01100101000 Houma 5 -01100101000 Leonia 5 -01100101000 Weehawken 5 -01100101000 Snowflake 5 -01100101000 Kloss 5 -01100101000 Ipswich 5 -01100101000 Closter 5 -01100101000 Maysville 5 -01100101000 Kinshasa 5 -01100101000 Tobago 5 -01100101000 Castroville 5 -01100101000 chartreuse 5 -01100101000 Lititz 5 -01100101000 Fricka 5 -01100101000 Beachwood 5 -01100101000 Wheatfield 5 -01100101000 Pottsville 5 -01100101000 Downsview 5 -01100101000 Sazava 5 -01100101000 Glendora 5 -01100101000 Totowa 5 -01100101000 Sweetwater 5 -01100101000 Hastings-on-Hudson 5 -01100101000 Palatine 6 -01100101000 Winnetka 6 -01100101000 Calet 6 -01100101000 Cinnaminson 6 -01100101000 Elmira 6 -01100101000 Sunnyside 6 -01100101000 Goleta 6 -01100101000 Brittania 6 -01100101000 C-SPAN 6 -01100101000 Branchburg 6 -01100101000 Pohjola 6 -01100101000 Lanus 6 -01100101000 Vevey 6 -01100101000 Brownfield 6 -01100101000 Pocatello 6 -01100101000 Pilobolus 6 -01100101000 Yavne 6 -01100101000 Beaubourg 6 -01100101000 Kaohsiung 6 -01100101000 Maxhuette 6 -01100101000 Oceanside 6 -01100101000 Telford 6 -01100101000 Elkton 6 -01100101000 Lynnwood 6 -01100101000 Bruges 6 -01100101000 Millersburg 6 -01100101000 Liege 6 -01100101000 Laconia 6 -01100101000 Homeland 6 -01100101000 Gastonia 6 -01100101000 Rhineland-Palatinate 6 -01100101000 Waxahachie 6 -01100101000 Shepperton 6 -01100101000 Centralia 6 -01100101000 Escondido 6 -01100101000 Natchez 6 -01100101000 Rosslyn 6 -01100101000 Freemont 6 -01100101000 Shaanxi 6 -01100101000 Hemet 6 -01100101000 Greenvale 6 -01100101000 Pharr 6 -01100101000 Stonehenge 6 -01100101000 Playgirl 6 -01100101000 Becancour 6 -01100101000 Giza 6 -01100101000 Crawfordsville 6 -01100101000 Whopper 6 -01100101000 Conroe 6 -01100101000 Wildwood 6 -01100101000 thermoplastics 6 -01100101000 Slidell 6 -01100101000 Rexburg 6 -01100101000 Cresskill 6 -01100101000 TCU 6 -01100101000 Peerless 6 -01100101000 Mecklenburg 6 -01100101000 Sarnia 6 -01100101000 Marblehead 6 -01100101000 Jaffrey 6 -01100101000 Plainsboro 6 -01100101000 Esquipulas 6 -01100101000 Gansu 6 -01100101000 Shelbyville 6 -01100101000 Ansonia 6 -01100101000 IFARreports 6 -01100101000 Norristown 6 -01100101000 Kettering 6 -01100101000 Aspartame 6 -01100101000 Tewksbury 6 -01100101000 Melodia 6 -01100101000 Malden 6 -01100101000 Wynnewood 6 -01100101000 Mamaroneck 6 -01100101000 Jonquiere 6 -01100101000 Batavia 6 -01100101000 Pekin 6 -01100101000 Murfreesboro 6 -01100101000 Alagoas 6 -01100101000 Blacksburg 6 -01100101000 '79 6 -01100101000 Downingtown 6 -01100101000 Alhambra 6 -01100101000 Warminster 6 -01100101000 Berwyn 7 -01100101000 squashy 7 -01100101000 Kimberley 7 -01100101000 Madera 7 -01100101000 Davos 7 -01100101000 Chalmette 7 -01100101000 Monroeville 7 -01100101000 Grapevine 7 -01100101000 Flemington 7 -01100101000 Monsey 7 -01100101000 Fortitude 7 -01100101000 Ok 7 -01100101000 Naugatuck 7 -01100101000 Laxey 7 -01100101000 Hempstead 7 -01100101000 Cannelton 7 -01100101000 Northwood 7 -01100101000 Philly 7 -01100101000 Rossborough 7 -01100101000 Carlstadt 7 -01100101000 Longwood 7 -01100101000 Barnette 7 -01100101000 Tarom 7 -01100101000 Busse 7 -01100101000 Newmarket 7 -01100101000 Berlack 7 -01100101000 Owosso 7 -01100101000 Warfield 7 -01100101000 Fayette 7 -01100101000 Romulus 7 -01100101000 Suffern 7 -01100101000 Chartres 7 -01100101000 7-4 7 -01100101000 Cohasset 7 -01100101000 Sturbridge 7 -01100101000 '66 7 -01100101000 Kerala 7 -01100101000 Kingsport 7 -01100101000 Northvale 7 -01100101000 Claymont 7 -01100101000 Shawnee 7 -01100101000 Malmo 7 -01100101000 Cranford 7 -01100101000 Kandahar 7 -01100101000 Petaluma 7 -01100101000 Pawhuska 7 -01100101000 Xenia 7 -01100101000 Portage 7 -01100101000 Fredericksburg 7 -01100101000 Wuxi 7 -01100101000 Smithtown 7 -01100101000 Alpharetta 7 -01100101000 Ojai 7 -01100101000 Dalian 7 -01100101000 Albemarle 7 -01100101000 Zaragoza 7 -01100101000 Conshohocken 7 -01100101000 Annandale 7 -01100101000 Murmansk 7 -01100101000 Seadrift 7 -01100101000 cholestyramine 7 -01100101000 colestipol 7 -01100101000 Hunan 7 -01100101000 Kingsville 7 -01100101000 Loveland 8 -01100101000 Clarksville 8 -01100101000 Kerrville 8 -01100101000 LaGrange 8 -01100101000 NBER 8 -01100101000 Harlingen 8 -01100101000 Magnolia 8 -01100101000 Chaska 8 -01100101000 Carbondale 8 -01100101000 Wuhan 8 -01100101000 Buchen 8 -01100101000 Paducah 8 -01100101000 Montpelier 8 -01100101000 Karlsruhe 8 -01100101000 Parador 8 -01100101000 Marbella 8 -01100101000 Westford 8 -01100101000 Orinda 8 -01100101000 Vacaville 8 -01100101000 Cudahy 8 -01100101000 Attleboro 8 -01100101000 Aqaba 8 -01100101000 Bicol 8 -01100101000 Wickliffe 8 -01100101000 Marlton 8 -01100101000 Kourou 8 -01100101000 Chengdu 8 -01100101000 Cantel 8 -01100101000 Pikeville 8 -01100101000 Pitcher 8 -01100101000 Norwell 8 -01100101000 Roseville 8 -01100101000 Diboll 8 -01100101000 Commack 8 -01100101000 Mondrian 8 -01100101000 Corvallis 8 -01100101000 Lansdale 8 -01100101000 Kitimat 8 -01100101000 Ravenswood 8 -01100101000 Bethany 8 -01100101000 Noramco 8 -01100101000 Aouzou 9 -01100101000 Kaktovik 9 -01100101000 Shizuoka 9 -01100101000 Williamstown 9 -01100101000 McCleskey 9 -01100101000 1872 9 -01100101000 Simsbury 9 -01100101000 Texarkana 9 -01100101000 Mechanicsburg 9 -01100101000 Moab 9 -01100101000 Okpo 9 -01100101000 half-ounce 9 -01100101000 Hyannis 9 -01100101000 Nicosia 9 -01100101000 rangy 9 -01100101000 Grenoble 9 -01100101000 Harpers 9 -01100101000 Puebla 9 -01100101000 Kankakee 9 -01100101000 Breed 9 -01100101000 Montevideo 9 -01100101000 Xinjiang 9 -01100101000 Rovaniemi 9 -01100101000 Olathe 9 -01100101000 Swampscott 9 -01100101000 Williamsport 9 -01100101000 Dijon 9 -01100101000 Hereford 9 -01100101000 Altavista 9 -01100101000 Baytown 9 -01100101000 FNS 9 -01100101000 Raleigh-Durham 9 -01100101000 Phu 9 -01100101000 Penang 9 -01100101000 Genk 9 -01100101000 Mongstad 9 -01100101000 PLE 9 -01100101000 Cityplace 9 -01100101000 Cortland 9 -01100101000 Vandergrift 9 -01100101000 Salina 9 -01100101000 Germantown 9 -01100101000 Convent 9 -01100101000 Coudersport 9 -01100101000 Lawrenceburg 9 -01100101000 Regensburg 9 -01100101000 Laurens 9 -01100101000 Hagerstown 9 -01100101000 Tonkin 9 -01100101000 Trumps 9 -01100101000 Tamarac 9 -01100101000 Celina 10 -01100101000 Shiremanstown 10 -01100101000 Luton 10 -01100101000 Windhoek 10 -01100101000 Lyme 10 -01100101000 Wessels 10 -01100101000 Scottsbluff 10 -01100101000 Brazzaville 10 -01100101000 Doubletree 10 -01100101000 Fitzwilliam 10 -01100101000 zircon 10 -01100101000 Iwate 10 -01100101000 Titusville 10 -01100101000 Vineland 10 -01100101000 POP 10 -01100101000 Trieste 10 -01100101000 Bensalem 10 -01100101000 Zeeland 10 -01100101000 Darlington 10 -01100101000 KwaZulu 10 -01100101000 McKeesport 10 -01100101000 Owensboro 10 -01100101000 Melrod 10 -01100101000 Brookside 10 -01100101000 Gilgit 10 -01100101000 Inchon 10 -01100101000 Coatesville 10 -01100101000 Cardiff 10 -01100101000 Shawinigan 10 -01100101000 Marshfield 10 -01100101000 Parenting 10 -01100101000 Kashmir 10 -01100101000 Cordova 10 -01100101000 Greensburg 10 -01100101000 Toyko 10 -01100101000 Stoughton 10 -01100101000 Shippingport 10 -01100101000 Pohnpei 10 -01100101000 Indata 10 -01100101000 Hillsboro 10 -01100101000 Kamchatka 10 -01100101000 Orem 11 -01100101000 Batesville 11 -01100101000 Judas 11 -01100101000 Dagenham 11 -01100101000 Accountemps 11 -01100101000 Michoacan 11 -01100101000 Buford 11 -01100101000 Wattwil 11 -01100101000 Tuscaloosa 11 -01100101000 Ayacucho 11 -01100101000 Catalonia 11 -01100101000 Ketou 11 -01100101000 Bromont 11 -01100101000 Mendocino 11 -01100101000 Beltsville 11 -01100101000 HDM 11 -01100101000 strontium 11 -01100101000 Haifa 11 -01100101000 Cerritos 11 -01100101000 Leominster 11 -01100101000 Maryville 11 -01100101000 Ulundi 11 -01100101000 Ferndale 11 -01100101000 Leesburg 11 -01100101000 Coeburn 11 -01100101000 Durango 11 -01100101000 Coventry 11 -01100101000 Northridge 11 -01100101000 Brittany 11 -01100101000 Belvedere 11 -01100101000 Ramallah 11 -01100101000 Chappaquiddick 11 -01100101000 Asuncion 12 -01100101000 Nanjing 12 -01100101000 SB 12 -01100101000 Haute 12 -01100101000 Trois-Rivieres 12 -01100101000 Waukesha 12 -01100101000 Belleville 12 -01100101000 Amana 12 -01100101000 Cornwall 12 -01100101000 Corinto 12 -01100101000 Boer 12 -01100101000 Mountainside 12 -01100101000 Surrey 12 -01100101000 Sylmar 12 -01100101000 Hillsdale 12 -01100101000 Missoula 12 -01100101000 Kenilworth 12 -01100101000 Shenyang 12 -01100101000 Sheboygan 12 -01100101000 Magnitogorsk 12 -01100101000 Mesquite 12 -01100101000 Pelham 12 -01100101000 Kyushu 12 -01100101000 Lyndhurst 12 -01100101000 Oakdale 12 -01100101000 Piscataway 12 -01100101000 Brea 12 -01100101000 Wenatchee 12 -01100101000 Kokomo 12 -01100101000 Arcadia 12 -01100101000 1858 12 -01100101000 Carrollton 13 -01100101000 Reseda 13 -01100101000 Tupelo 13 -01100101000 Charlestown 13 -01100101000 Youghal 13 -01100101000 Sturgeon 13 -01100101000 Brampton 13 -01100101000 Pittsfield 13 -01100101000 gee 13 -01100101000 Eindhoven 13 -01100101000 Emporia 13 -01100101000 Hebron 13 -01100101000 Hopkinton 13 -01100101000 Muskegon 13 -01100101000 Gori 13 -01100101000 Northampton 13 -01100101000 Ibaraki 13 -01100101000 Monessen 13 -01100101000 Bothell 13 -01100101000 Camarillo 13 -01100101000 Cartersville 13 -01100101000 Whippany 13 -01100101000 Jena 13 -01100101000 Guntur 13 -01100101000 Ardmore 13 -01100101000 Moorestown 13 -01100101000 Sausalito 13 -01100101000 Montrose 13 -01100101000 Bradenton 13 -01100101000 Rawalpindi 13 -01100101000 Larkspur 14 -01100101000 Wilmette 14 -01100101000 Mandalay 14 -01100101000 Balboa 14 -01100101000 Norco 14 -01100101000 Mineola 14 -01100101000 Baskin-Robbins 14 -01100101000 Nollan 14 -01100101000 Larchmont 14 -01100101000 Litchfield 14 -01100101000 Seminole 14 -01100101000 Jamestown 14 -01100101000 Massachussetts 14 -01100101000 Itasca 14 -01100101000 Philadephia 14 -01100101000 Kennebunkport 14 -01100101000 Condor 14 -01100101000 Pleasanton 14 -01100101000 Dothan 14 -01100101000 Babylon 14 -01100101000 Yuma 14 -01100101000 Hingham 14 -01100101000 Batticaloa 14 -01100101000 Evendale 14 -01100101000 Maumee 14 -01100101000 Shostakovich 15 -01100101000 Enid 15 -01100101000 Guadalajara 15 -01100101000 Ludlow 15 -01100101000 Beckley 15 -01100101000 Gettysburg 15 -01100101000 Wenzhou 15 -01100101000 Roslyn 15 -01100101000 Verona 15 -01100101000 Lucerne 15 -01100101000 Elmhurst 15 -01100101000 Duisburg 15 -01100101000 Xian 15 -01100101000 Sverdlovsk 15 -01100101000 Ravenna 15 -01100101000 Rye 15 -01100101000 Longmont 16 -01100101000 Ava 16 -01100101000 Valparaiso 16 -01100101000 Fukushima 16 -01100101000 Iselin 16 -01100101000 Monrovia 16 -01100101000 Ludwigshafen 16 -01100101000 Danvers 16 -01100101000 Asheville 16 -01100101000 Waynesboro 16 -01100101000 Freehold 16 -01100101000 Lompoc 16 -01100101000 Parana 16 -01100101000 Sanaa 16 -01100101000 Hermosillo 16 -01100101000 Kingwood 16 -01100101000 Bahia 16 -01100101000 Bridgewater 16 -01100101000 Greenbelt 16 -01100101000 Joliet 16 -01100101000 Inglewood 16 -01100101000 Peapack 16 -01100101000 Woodlands 17 -01100101000 Fayetteville 17 -01100101000 Newtown 17 -01100101000 Lewisburg 17 -01100101000 Berea 17 -01100101000 Sunland 17 -01100101000 Wolfsburg 17 -01100101000 last-in 17 -01100101000 Chiba 17 -01100101000 Cresap 17 -01100101000 Verdes 17 -01100101000 Divine 17 -01100101000 Irwindale 17 -01100101000 Bremen 17 -01100101000 Wiesbaden 17 -01100101000 Whittier 17 -01100101000 Stratford 17 -01100101000 Pusan 17 -01100101000 Gadsden 17 -01100101000 Glyndebourne 18 -01100101000 Passaic 18 -01100101000 Greeley 18 -01100101000 Muirfield 18 -01100101000 Pleasantville 18 -01100101000 Morgantown 18 -01100101000 Fairhaven 18 -01100101000 Middlesex 18 -01100101000 Champaign 18 -01100101000 Zion 18 -01100101000 Mahwah 18 -01100101000 Waukegan 18 -01100101000 Pennsauken 18 -01100101000 Parkersburg 18 -01100101000 Kensington 18 -01100101000 Ebony 18 -01100101000 Cordoba 18 -01100101000 Westbury 18 -01100101000 Lewiston 18 -01100101000 Livonia 18 -01100101000 Mayfield 18 -01100101000 Hialeah 18 -01100101000 Solon 19 -01100101000 Middlebury 19 -01100101000 Moraine 19 -01100101000 Doraville 19 -01100101000 Salzburg 19 -01100101000 Gorky 19 -01100101000 Selma 19 -01100101000 Hainan 19 -01100101000 Copiague 19 -01100101000 Kool 19 -01100101000 Minas 19 -01100101000 Wausau 19 -01100101000 Abilene 20 -01100101000 Utica 20 -01100101000 Aiken 20 -01100101000 Exton 20 -01100101000 Chatham 20 -01100101000 Hazelwood 20 -01100101000 Chesterfield 20 -01100101000 Masaya 20 -01100101000 Lapp 20 -01100101000 Sandia 20 -01100101000 Nitro 20 -01100101000 Greencastle 20 -01100101000 Saginaw 20 -01100101000 Raleigh/Durham 20 -01100101000 Haverford 20 -01100101000 Champlain 20 -01100101000 Gotham 20 -01100101000 Clarksburg 21 -01100101000 Hoboken 21 -01100101000 Cheverly 21 -01100101000 Trincomalee 21 -01100101000 Haryana 21 -01100101000 Keidanren 21 -01100101000 Bali 21 -01100101000 Bethel 21 -01100101000 Ypsilanti 21 -01100101000 Grafton 21 -01100101000 Cooperstown 21 -01100101000 Wallingford 21 -01100101000 Ridgefield 21 -01100101000 Carlsbad 22 -01100101000 Oswego 22 -01100101000 Hinsdale 22 -01100101000 Tanglewood 22 -01100101000 Euclid 22 -01100101000 Meriden 22 -01100101000 Lordstown 22 -01100101000 Lagos 22 -01100101000 Gaithersburg 22 -01100101000 Orangeburg 22 -01100101000 Tabasco 22 -01100101000 Teaneck 22 -01100101000 Pittsburg 22 -01100101000 Harare 22 -01100101000 Holyoke 23 -01100101000 Binghamton 23 -01100101000 Medina 23 -01100101000 Odessa 23 -01100101000 Roseland 23 -01100101000 Durban 23 -01100101000 Spartanburg 23 -01100101000 Joplin 23 -01100101000 Elyria 23 -01100101000 Elkhart 23 -01100101000 Lenexa 24 -01100101000 Hopewell 24 -01100101000 Lisle 24 -01100101000 Monticello 24 -01100101000 Kiel 24 -01100101000 Custer 24 -01100101000 Gloucester 24 -01100101000 Defiance 24 -01100101000 Vidalia 24 -01100101000 Farmingdale 25 -01100101000 Coronado 25 -01100101000 Westborough 25 -01100101000 Brisbane 25 -01100101000 Butte 25 -01100101000 Waterbury 25 -01100101000 Herndon 25 -01100101000 Marlborough 25 -01100101000 Cannes 25 -01100101000 Antwerp 25 -01100101000 Dusseldorf 25 -01100101000 Transkei 25 -01100101000 Lincolnshire 25 -01100101000 Wentzville 25 -01100101000 Twinsburg 25 -01100101000 Marseille 25 -01100101000 Hustler 25 -01100101000 Versailles 25 -01100101000 Fontana 25 -01100101000 Brockton 25 -01100101000 Bala-Cynwyd 25 -01100101000 Gainesville 25 -01100101000 Wixom 25 -01100101000 Marquette 26 -01100101000 Scranton 26 -01100101000 Manassas 26 -01100101000 Meiji 26 -01100101000 Exeter 26 -01100101000 Janesville 26 -01100101000 Kosovo 26 -01100101000 Sichuan 26 -01100101000 Pawtucket 26 -01100101000 Haydn 27 -01100101000 Findlay 27 -01100101000 Schenectady 27 -01100101000 Calcutta 27 -01100101000 Modesto 27 -01100101000 Addis 27 -01100101000 Paoli 27 -01100101000 Plainfield 27 -01100101000 Bohemia 27 -01100101000 Damietta 27 -01100101000 Westboro 27 -01100101000 Moline 27 -01100101000 Ocala 27 -01100101000 Canberra 27 -01100101000 Littleton 28 -01100101000 Brownsville 28 -01100101000 Westlake 28 -01100101000 Flushing 28 -01100101000 Watertown 28 -01100101000 Scarsdale 28 -01100101000 Springdale 28 -01100101000 Longview 28 -01100101000 Sussex 28 -01100101000 Tianjin 29 -01100101000 Bologna 29 -01100101000 Ithaca 29 -01100101000 Uzbekistan 29 -01100101000 Dubuque 29 -01100101000 Naperville 29 -01100101000 Norcross 29 -01100101000 Southport 29 -01100101000 Osage 29 -01100101000 Kingston 29 -01100101000 Stillwater 29 -01100101000 Natal 30 -01100101000 Palmetto 30 -01100101000 Paterson 30 -01100101000 Pomona 30 -01100101000 Lakeland 30 -01100101000 Golder 30 -01100101000 Gardena 30 -01100101000 Plainview 30 -01100101000 Lynchburg 30 -01100101000 Greenpeace 30 -01100101000 Sparta 30 -01100101000 McAllen 31 -01100101000 Hokkaido 31 -01100101000 Gump 31 -01100101000 Chantilly 31 -01100101000 Nutley 31 -01100101000 Vail 31 -01100101000 Woodbury 31 -01100101000 Kauai 31 -01100101000 Roswell 31 -01100101000 Bozeman 31 -01100101000 Lawrenceville 31 -01100101000 Chinatown 31 -01100101000 Turin 31 -01100101000 Bophuthatswana 31 -01100101000 Davao 31 -01100101000 Brookhaven 31 -01100101000 Medford 32 -01100101000 Zug 32 -01100101000 Braunschweig 32 -01100101000 Jericho 32 -01100101000 Muncie 32 -01100101000 Richland 32 -01100101000 Burlingame 32 -01100101000 Strasbourg 32 -01100101000 Pensacola 32 -01100101000 Fernald 32 -01100101000 Nagoya 33 -01100101000 Bethpage 33 -01100101000 Biloxi 33 -01100101000 Wilkes-Barre 33 -01100101000 Lausanne 33 -01100101000 Beira 33 -01100101000 Kyoto 33 -01100101000 Cheyenne 33 -01100101000 Ada 33 -01100101000 Bayreuth 33 -01100101000 Racine 34 -01100101000 Kiev 34 -01100101000 Rotterdam 34 -01100101000 Norwich 34 -01100101000 Evansville 34 -01100101000 1866 34 -01100101000 Wonderland 34 -01100101000 Danville 34 -01100101000 Middletown 34 -01100101000 Waterloo 34 -01100101000 Bensonhurst 34 -01100101000 Brookfield 34 -01100101000 Fullerton 34 -01100101000 Novato 34 -01100101000 Fairbanks 35 -01100101000 Labrador 35 -01100101000 Auckland 35 -01100101000 Provo 35 -01100101000 Cheshire 35 -01100101000 Rosemead 36 -01100101000 Charlottesville 36 -01100101000 Malibu 36 -01100101000 Taunton 36 -01100101000 Tunis 36 -01100101000 Mississauga 36 -01100101000 Gatwick 36 -01100101000 Schleswig-Holstein 36 -01100101000 Riverdale 36 -01100101000 Belvidere 37 -01100101000 Tustin 37 -01100101000 Winnipeg 38 -01100101000 Brighton 38 -01100101000 Southampton 38 -01100101000 Ulsan 38 -01100101000 Reason 38 -01100101000 Northfield 38 -01100101000 Largo 39 -01100101000 Hackensack 39 -01100101000 Waco 39 -01100101000 Appleton 39 -01100101000 Auburn 39 -01100101000 Oshawa 39 -01100101000 Reston 39 -01100101000 Rosemont 40 -01100101000 Poughkeepsie 40 -01100101000 LA 40 -01100101000 Kazakhstan 41 -01100101000 Ventura 41 -01100101000 Halifax 41 -01100101000 Shenzhen 41 -01100101000 Bentonville 41 -01100101000 '84 42 -01100101000 Jaffna 42 -01100101000 Lubbock 42 -01100101000 Chelmsford 42 -01100101000 Encino 42 -01100101000 Plano 43 -01100101000 Brookline 43 -01100101000 Laughlin 44 -01100101000 Tijuana 44 -01100101000 Waldorf 44 -01100101000 Duluth 44 -01100101000 Paramus 44 -01100101000 Malvern 45 -01100101000 Hanford 45 -01100101000 Lorain 46 -01100101000 Trenton 46 -01100101000 Tallahassee 46 -01100101000 Harrisburg 46 -01100101000 Aberdeen 46 -01100101000 Dedham 46 -01100101000 Allentown 46 -01100101000 Hauppauge 47 -01100101000 Williamsburg 47 -01100101000 Woodbridge 47 -01100101000 Towson 47 -01100101000 Maui 48 -01100101000 Seville 48 -01100101000 Argonne 48 -01100101000 Guangdong 48 -01100101000 Palmdale 48 -01100101000 Bartlesville 48 -01100101000 Stuttgart 49 -01100101000 Bangor 49 -01100101000 Morehouse 49 -01100101000 Chihuahua 49 -01100101000 on-again 49 -01100101000 Alameda 50 -01100101000 Emeryville 52 -01100101000 Monterrey 52 -01100101000 Darien 52 -01100101000 Hamtramck 53 -01100101000 Deerfield 53 -01100101000 Southfield 54 -01100101000 Milford 54 -01100101000 Sarasota 54 -01100101000 Schaumburg 54 -01100101000 Bramalea 54 -01100101000 Brentwood 54 -01100101000 Shreveport 54 -01100101000 Belfast 55 -01100101000 Billings 55 -01100101000 Peshawar 55 -01100101000 Evanston 55 -01100101000 Nassau 56 -01100101000 Tempe 56 -01100101000 Yokohama 57 -01100101000 Annapolis 58 -01100101000 Nagorno-Karabakh 58 -01100101000 Laredo 59 -01100101000 Juarez 59 -01100101000 Edinburgh 60 -01100101000 Natick 60 -01100101000 Macon 60 -01100101000 Smyrna 60 -01100101000 Stockton 61 -01100101000 Radnor 62 -01100101000 Calabasas 63 -01100101000 Kalamazoo 63 -01100101000 Bakersfield 63 -01100101000 Woburn 63 -01100101000 Riviera 66 -01100101000 Spokane 67 -01100101000 Hebrew 67 -01100101000 Farmington 67 -01100101000 Galveston 67 -01100101000 Roanoke 68 -01100101000 Beaverton 69 -01100101000 Belmont 69 -01100101000 Kwangju 69 -01100101000 Beaumont 69 -01100101000 Peoria 70 -01100101000 Northbrook 70 -01100101000 Chattanooga 71 -01100101000 Rahway 71 -01100101000 Aurora 72 -01100101000 Perth 73 -01100101000 Soweto 73 -01100101000 Copenhagen 74 -01100101000 Parsippany 74 -01100101000 Eureka 74 -01100101000 Glasgow 74 -01100101000 Adelaide 74 -01100101000 Chatsworth 74 -01100101000 Medellin 74 -01100101000 Wilton 74 -01100101000 Winchester 75 -01100101000 Lakewood 75 -01100101000 Hawthorne 75 -01100101000 Secaucus 75 -01100101000 Sahara 76 -01100101000 Wellesley 76 -01100101000 Glenview 76 -01100101000 Youngstown 76 -01100101000 Riverside 77 -01100101000 Knoxville 77 -01100101000 Valencia 78 -01100101000 Carmel 80 -01100101000 Decatur 80 -01100101000 Santiago 80 -01100101000 Milpitas 81 -01100101000 Skokie 81 -01100101000 Tarrytown 82 -01100101000 Huntsville 82 -01100101000 Rockville 83 -01100101000 Lansing 83 -01100101000 Norwalk 84 -01100101000 Landover 84 -01100101000 Quincy 85 -01100101000 one-share 87 -01100101000 Camden 87 -01100101000 Bristol 89 -01100101000 UCLA 89 -01100101000 Clearwater 90 -01100101000 Bloomington 91 -01100101000 Harlem 91 -01100101000 Helsinki 91 -01100101000 Woodstock 92 -01100101000 Punjab 92 -01100101000 Greenville 92 -01100101000 Montvale 93 -01100101000 Monterey 93 -01100101000 Bridgeport 94 -01100101000 Waltham 95 -01100101000 Portsmouth 95 -01100101000 Worcester 96 -01100101000 Eden 96 -01100101000 Scottsdale 98 -01100101000 Karachi 98 -01100101000 Aspen 99 -01100101000 Anchorage 99 -01100101000 Fresno 100 -01100101000 Florence 101 -01100101000 Purchase 101 -01100101000 Marysville 101 -01100101000 Westport 103 -01100101000 Edmonton 103 -01100101000 Bellevue 103 -01100101000 Lafayette 103 -01100101000 Tacoma 104 -01100101000 Augusta 105 -01100101000 Barcelona 105 -01100101000 Nashua 106 -01100101000 Albuquerque 109 -01100101000 Hamburg 110 -01100101000 Naples 111 -01100101000 Prague 113 -01100101000 Rockford 113 -01100101000 Yonkers 114 -01100101000 Lima 114 -01100101000 Boulder 114 -01100101000 Bevill 117 -01100101000 Greensboro 117 -01100101000 Flint 117 -01100101000 Redmond 117 -01100101000 Reno 118 -01100101000 Tel 119 -01100101000 Anaheim 119 -01100101000 Marlboro 120 -01100101000 Cupertino 122 -01100101000 Lancaster 122 -01100101000 Erie 124 -01100101000 Raleigh 125 -01100101000 Danbury 131 -01100101000 Saskatchewan 134 -01100101000 Bangkok 135 -01100101000 Glendale 135 -01100101000 Amarillo 137 -01100101000 Guam 137 -01100101000 Canton 140 -01100101000 Framingham 141 -01100101000 Concord 141 -01100101000 Morristown 142 -01100101000 Yellowstone 142 -01100101000 Leningrad 142 -01100101000 Bermuda 143 -01100101000 Queens 143 -01100101000 Pasadena 146 -01100101000 Fremont 147 -01100101000 Dearborn 157 -01100101000 Sunnyvale 159 -01100101000 Paulo 161 -01100101000 Torrance 163 -01100101000 Melbourne 164 -01100101000 Manchester 165 -01100101000 Winston-Salem 167 -01100101000 Munich 168 -01100101000 Windsor 168 -01100101000 Armonk 169 -01100101000 Athens 169 -01100101000 Kenosha 171 -01100101000 Honolulu 171 -01100101000 Rouge 175 -01100101000 Bethesda 175 -01100101000 Mecca 175 -01100101000 Dublin 177 -01100101000 Englewood 177 -01100101000 Charleston 179 -01100101000 Newfoundland 181 -01100101000 Cairo 182 -01100101000 Syracuse 183 -01100101000 Alexandria 184 -01100101000 Springfield 195 -01100101000 Boise 201 -01100101000 Bedford 204 -01100101000 Bronx 215 -01100101000 Cape 220 -01100101000 Wichita 220 -01100101000 Mars 224 -01100101000 Plymouth 228 -01100101000 Jacksonville 228 -01100101000 Burbank 229 -01100101000 Arlington 231 -01100101000 Jerusalem 254 -01100101000 Troy 258 -01100101000 Bhopal 259 -01100101000 Ottawa 261 -01100101000 Nebraska 270 -01100101000 Akron 275 -01100101000 Omaha 278 -01100101000 Buffalo 290 -01100101000 Oxford 306 -01100101000 Lexington 311 -01100101000 Birmingham 316 -01100101000 Sacramento 338 -01100101000 Fairfield 339 -01100101000 Berkeley 344 -01100101000 Providence 351 -01100101000 Tulsa 355 -01100101000 Oakland 371 -01100101000 Indianapolis 375 -01100101000 Wyoming 375 -01100101000 Toledo 377 -01100101000 Memphis 382 -01100101000 Wilmington 399 -01100101000 Orlando 406 -01100101000 Montana 407 -01100101000 Rome 419 -01100101000 Louisville 420 -01100101000 Milwaukee 422 -01100101000 Calgary 424 -01100101000 Charlotte 427 -01100101000 Tucson 428 -01100101000 Nashville 433 -01100101000 Tampa 445 -01100101000 Princeton 456 -01100101000 Beirut 469 -01100101000 Brooklyn 484 -01100101000 Alabama 511 -01100101000 Rochester 541 -01100101000 Portland 557 -01100101000 Newark 574 -01100101000 Greenwich 584 -01100101000 Oregon 624 -01100101000 Stamford 633 -01100101000 Tennessee 643 -01100101000 Missouri 643 -01100101000 Nevada 659 -01100101000 Kentucky 664 -01100101000 Mississippi 664 -01100101000 Columbus 689 -01100101000 Seattle 699 -01100101000 Cambridge 709 -01100101000 Richmond 713 -01100101000 Maryland 714 -01100101000 Austin 769 -01100101000 Baltimore 846 -01100101000 Phoenix 863 -01100101000 Cincinnati 879 -01100101000 Colorado 922 -01100101000 Montreal 930 -01100101000 Wisconsin 974 -01100101000 Connecticut 987 -01100101000 Minneapolis 1038 -01100101000 Quebec 1040 -01100101000 Minnesota 1077 -01100101000 Pittsburgh 1110 -01100101000 Arizona 1116 -01100101000 Hollywood 1133 -01100101000 Louisiana 1171 -01100101000 Cleveland 1181 -01100101000 Indiana 1182 -01100101000 Georgia 1247 -01100101000 Denver 1263 -01100101000 Geneva 1297 -01100101000 Vietnam 1545 -01100101000 Pennsylvania 1663 -01100101000 Michigan 1743 -01100101000 Detroit 1776 -01100101000 Delaware 1800 -01100101000 Miami 1809 -01100101000 Atlanta 1995 -01100101000 Philadelphia 2251 -01100101000 Massachusetts 2722 -01100101000 Houston 2908 -01100101000 Dallas 2938 -01100101000 Florida 3856 -01100101000 California 7683 -01100101000 Washington 11491 -01100101001 Taylor-Maid 1 -01100101001 Fundraising 1 -01100101001 Tsunami 1 -01100101001 public-advocacy 1 -01100101001 U.S.-provided 1 -01100101001 Bosphorus 1 -01100101001 then-Deputy 1 -01100101001 Mady 1 -01100101001 Assoc. 1 -01100101001 Frostburg 1 -01100101001 Bros./Slash 1 -01100101001 421-415 1 -01100101001 411-410 1 -01100101001 Hanscomb 1 -01100101001 One-Two 1 -01100101001 Palmarola 1 -01100101001 358,947 1 -01100101001 70198 1 -01100101001 powermad 1 -01100101001 39,000-member 1 -01100101001 Brinke 1 -01100101001 sometimes-conflicting 1 -01100101001 Vandenburg 1 -01100101001 Rickenbacker 1 -01100101001 AUL 1 -01100101001 Klossner 1 -01100101001 irregularity-plagued 1 -01100101001 you-can-guess-what-color 1 -01100101001 Offatt 1 -01100101001 Westinghouse-Texas 1 -01100101001 Metrologic 1 -01100101001 Continental-Texas 1 -01100101001 single-office 1 -01100101001 Intrinsic 1 -01100101001 Santamarina 1 -01100101001 pre-Texas 1 -01100101001 REMIC. 1 -01100101001 Two-Acre 1 -01100101001 AntiDrug 1 -01100101001 Lackland 1 -01100101001 UAL-British 1 -01100101001 Newfoundland-based 1 -01100101001 Davis-Monthan 1 -01100101001 SAS-Texas 1 -01100101001 theTexas 1 -01100101001 then-City 1 -01100101001 83000-83004 1 -01100101001 83004 1 -01100101001 pro-securities 1 -01100101001 third-level 1 -01100101001 glandular 1 -01100101001 professional-class 1 -01100101001 county-owned 1 -01100101001 verisimilitude. 1 -01100101001 AFL1-5275 1 -01100101001 G2K40244 1 -01100101001 Huntron 1 -01100101001 Thermox 1 -01100101001 1811-12 1 -01100101001 Cal-Nev 1 -01100101001 ex-Continental 1 -01100101001 Beartooth 1 -01100101001 Acc-U-Rite 1 -01100101001 Bobigny 1 -01100101001 DeMotte 2 -01100101001 V/R 2 -01100101001 Dyess 2 -01100101001 Photofrin 2 -01100101001 Minden 2 -01100101001 Whaijen 2 -01100101001 Truancy 2 -01100101001 Beauford 2 -01100101001 C.O.M. 2 -01100101001 Indulgers 2 -01100101001 Ohio-Sealy 2 -01100101001 slick-papered 2 -01100101001 larkspur 2 -01100101001 security-minded 2 -01100101001 Footlockers 2 -01100101001 Eatontown 2 -01100101001 Bruker 2 -01100101001 Guitarist 2 -01100101001 Jawahar 2 -01100101001 guava 2 -01100101001 VCRS 2 -01100101001 Hi-Country 2 -01100101001 Rockwool 2 -01100101001 Cuzco 2 -01100101001 Politizdat 2 -01100101001 population-poor 2 -01100101001 self-flagellating 2 -01100101001 Plasticos 2 -01100101001 Muleshoe 2 -01100101001 art-buying 2 -01100101001 Asiatic 2 -01100101001 Edgy 2 -01100101001 quadrant 2 -01100101001 74-73 2 -01100101001 guppy 2 -01100101001 Kremmling 2 -01100101001 Whalers 2 -01100101001 Foothills 2 -01100101001 Asclepias 2 -01100101001 AUTHOR 2 -01100101001 WI 2 -01100101001 Current-coupon 2 -01100101001 low-hazard 2 -01100101001 Abbotsford 2 -01100101001 Media/Professional 2 -01100101001 Crummy 2 -01100101001 818,867 2 -01100101001 Interlaken 2 -01100101001 Sharjah 2 -01100101001 pro-free-enterprise 2 -01100101001 TAP 2 -01100101001 Iola 2 -01100101001 1f 2 -01100101001 Pollaiuolo 2 -01100101001 corals 2 -01100101001 Warrensburg 2 -01100101001 Sedalia 2 -01100101001 Sikeston 2 -01100101001 air-based 2 -01100101001 LK 2 -01100101001 cloisonne 2 -01100101001 Hesitant 2 -01100101001 Elmendorf 2 -01100101001 Long-Range 2 -01100101001 flex-time 2 -01100101001 Maybank 2 -01100101001 Chuji 2 -01100101001 Ceselsa 2 -01100101001 WilliWear 2 -01100101001 fishmeal 2 -01100101001 masseuses 2 -01100101001 PNG 2 -01100101001 Adjournment 2 -01100101001 Baronial 2 -01100101001 Snowbird 2 -01100101001 Awake 2 -01100101001 Brenham 2 -01100101001 Alken-Kronenbourg 2 -01100101001 Mahogany 2 -01100101001 Fredonia 3 -01100101001 Lauda 3 -01100101001 Pattonsburg 3 -01100101001 Unido 3 -01100101001 Dimension 3 -01100101001 Cranbury 3 -01100101001 Palmerola 3 -01100101001 Tuscon 3 -01100101001 Mansura 3 -01100101001 Impotents 3 -01100101001 Whiteman 3 -01100101001 SSDI 3 -01100101001 Marlen 3 -01100101001 molnia 3 -01100101001 Falun 3 -01100101001 TMIC. 3 -01100101001 Corot 3 -01100101001 Sturdy 3 -01100101001 Concession 3 -01100101001 Tampere 3 -01100101001 Louisburg 3 -01100101001 Incafe 3 -01100101001 ANPA 3 -01100101001 CEE 3 -01100101001 Periscope 3 -01100101001 Pavo 3 -01100101001 red-cheeked 3 -01100101001 ill-lit 3 -01100101001 whorehouses 3 -01100101001 Aker 3 -01100101001 Munhwa 3 -01100101001 Kincheloe 3 -01100101001 Maharashtra 3 -01100101001 Orincon 3 -01100101001 merengue 3 -01100101001 5-foot-8 3 -01100101001 MDphone 3 -01100101001 orthopedics 3 -01100101001 Polyanka 3 -01100101001 32-valve 3 -01100101001 Pontchartrain 3 -01100101001 Bodenseewerk 3 -01100101001 Brunello 3 -01100101001 LTU 3 -01100101001 Roussel-UCLAF 3 -01100101001 1834 4 -01100101001 CITIC 4 -01100101001 Fairway 4 -01100101001 WCT 4 -01100101001 GATX/CL 4 -01100101001 Hanscom 4 -01100101001 AFGE 4 -01100101001 even-tempered 4 -01100101001 Similac 4 -01100101001 CLU 4 -01100101001 AvAir 4 -01100101001 Calnev 4 -01100101001 Lanesboro 4 -01100101001 Lutherans 4 -01100101001 AmerEco 4 -01100101001 Dresser-Rand 4 -01100101001 Bangalore 4 -01100101001 NorthPark 4 -01100101001 Chrysalis 4 -01100101001 Pascagoula 4 -01100101001 Atoka 4 -01100101001 neo-Nazis 4 -01100101001 Mailgrams 4 -01100101001 Pflugerville 4 -01100101001 Fibriscint 4 -01100101001 Bridgeville 4 -01100101001 Navasota 4 -01100101001 spearmint 4 -01100101001 Kiena 4 -01100101001 LaPryor 4 -01100101001 Walhalla 4 -01100101001 endives 4 -01100101001 Surpass 5 -01100101001 Muskogee 5 -01100101001 undersupervised 5 -01100101001 rectum 5 -01100101001 VG 5 -01100101001 Margate 5 -01100101001 Cyclone 5 -01100101001 Merriam-Webster 5 -01100101001 Brahman 5 -01100101001 Brasov 5 -01100101001 Customized 5 -01100101001 Tallulah 5 -01100101001 SACEUR 5 -01100101001 Coahuila 5 -01100101001 mini-vans 5 -01100101001 Mead-McClellan 5 -01100101001 debonair 6 -01100101001 Hallelujah 6 -01100101001 WNET 6 -01100101001 Crofton 6 -01100101001 Rexford 6 -01100101001 Kuparuk 6 -01100101001 Podunk 6 -01100101001 HSA 6 -01100101001 Bitburg 6 -01100101001 Moreauville 6 -01100101001 Elisa 7 -01100101001 IBES 7 -01100101001 all-knowing 7 -01100101001 Maplewood 7 -01100101001 Wright-Patterson 7 -01100101001 TIAA 7 -01100101001 self-important 7 -01100101001 Sind 7 -01100101001 fluorine 7 -01100101001 ACTV 8 -01100101001 Farnborough 8 -01100101001 KLA 8 -01100101001 Ca. 8 -01100101001 Pa 8 -01100101001 Copycode 8 -01100101001 Elektra 9 -01100101001 Fitchburg 10 -01100101001 FARC 10 -01100101001 Rini 10 -01100101001 Emmaus 10 -01100101001 Rosh 10 -01100101001 jasmine 10 -01100101001 CURE 10 -01100101001 Saco 11 -01100101001 Essential 11 -01100101001 Nellis 11 -01100101001 pimps 12 -01100101001 Downstairs 12 -01100101001 pears 12 -01100101001 Savvy 12 -01100101001 Guyana 13 -01100101001 Mademoiselle 13 -01100101001 Elmsford 13 -01100101001 Thomasville 13 -01100101001 Sonora 14 -01100101001 Overnite 14 -01100101001 Tipton 15 -01100101001 barium 15 -01100101001 Forestry 15 -01100101001 Mali 15 -01100101001 MainStreet 15 -01100101001 P.I. 15 -01100101001 Osceola 15 -01100101001 Alcoholics 15 -01100101001 Yorkshire 16 -01100101001 Metairie 16 -01100101001 Sofia 16 -01100101001 Luvs 17 -01100101001 Sylvania 17 -01100101001 Amauligak 18 -01100101001 Torrejon 19 -01100101001 Interprovincial 20 -01100101001 Congo 21 -01100101001 Renoir 23 -01100101001 Oberlin 24 -01100101001 Lesbian 25 -01100101001 Veeco 30 -01100101001 Bel 30 -01100101001 MFS 31 -01100101001 ERISA 34 -01100101001 Java 36 -01100101001 Alps 39 -01100101001 Sealed 43 -01100101001 Oshkosh 59 -01100101001 Johnstown 61 -01100101001 Amherst 73 -01100101001 Ark 87 -01100101001 Manitoba 102 -01100101001 Valdez 102 -01100101001 CPAs 143 -01100101001 Clean 208 -01100101001 Irvine 440 -01100101001 Idaho 467 -01100101001 Vermont 520 -01100101001 Arkansas 551 -01100101001 Alberta 643 -01100101001 Hartford 772 -01100101001 Ontario 889 -01100101001 Maine 912 -01100101001 Utah 1015 -01100101001 Alaska 1158 -01100101001 Delta 1307 -01100101001 Iowa 1913 -01100101001 Illinois 2195 -01100101001 Texas 12539 -01100101001 Ohio 3327 -01100101010 0.9655 1 -01100101010 situ 1 -01100101010 short-fiction 1 -01100101010 CBI. 1 -01100101010 2050.5 1 -01100101010 glass-block 1 -01100101010 Yamaha-Olin 1 -01100101010 Jersulem 1 -01100101010 Kraftwerke 1 -01100101010 GCA. 1 -01100101010 Okayama 1 -01100101010 Rous 1 -01100101010 HHS. 2 -01100101010 leisure-industry 2 -01100101010 NATO-Warsaw 2 -01100101010 Araraquara 2 -01100101010 Gumma 2 -01100101010 1,088 2 -01100101010 Espenhain 2 -01100101010 Derby-Pie 2 -01100101010 Foshan 2 -01100101010 Kwajalein 2 -01100101010 1,398 2 -01100101010 special-situation 2 -01100101010 Seljuk 2 -01100101010 Fingermatrix 2 -01100101010 Laity 2 -01100101010 underworked 2 -01100101010 1959-1960 2 -01100101010 high-capital 2 -01100101010 Rialcor-Shatkin 2 -01100101010 special-situations 2 -01100101010 PKI 2 -01100101010 motor-racing 2 -01100101010 Zhuhai 2 -01100101010 Albertini 2 -01100101010 development-related 2 -01100101010 bodybuilder 2 -01100101010 EquityGuard 2 -01100101010 swampbusting 2 -01100101010 Crossover 2 -01100101010 toto 2 -01100101010 Gu 3 -01100101010 Dansk 3 -01100101010 near-great 3 -01100101010 Lome 3 -01100101010 ACORN 3 -01100101010 doorknobs 3 -01100101010 1640 3 -01100101010 Polimotor 3 -01100101010 Kaupulehu 3 -01100101010 driftwood 3 -01100101010 Qandahar 3 -01100101010 Harley-Davidsons 3 -01100101010 Kabutocho 3 -01100101010 Paysops 3 -01100101010 Surat 3 -01100101010 Akaitcho 3 -01100101010 Gaborone 3 -01100101010 Rosman 3 -01100101010 Rilke 3 -01100101010 Colmar 3 -01100101010 air-conditioners 3 -01100101010 Sendai 3 -01100101010 canoeing 3 -01100101010 mouthwashes 3 -01100101010 Eastport 3 -01100101010 142,220,000 3 -01100101010 1818 3 -01100101010 Hindemith 3 -01100101010 Gauchos 4 -01100101010 Ferfin 4 -01100101010 Singapore-Malaysia 4 -01100101010 mid-1970 4 -01100101010 Makati 4 -01100101010 Baltimore/Washington 4 -01100101010 Giardini 4 -01100101010 Tavera 4 -01100101010 DePere 4 -01100101010 Fontainebleau 4 -01100101010 Killington 4 -01100101010 Volzhsky 4 -01100101010 Moorreesburg 5 -01100101010 Vientiane 5 -01100101010 Zukerman 5 -01100101010 Nyon 5 -01100101010 Fuzhou 5 -01100101010 Thatta 5 -01100101010 Bacolod 5 -01100101010 Crixas 5 -01100101010 Autorama 5 -01100101010 Rabat 5 -01100101010 1836 5 -01100101010 Hersfield 5 -01100101010 sinker 6 -01100101010 Arcola 6 -01100101010 Massillon 6 -01100101010 Isfahan 6 -01100101010 Delhaize 6 -01100101010 Vichy 6 -01100101010 '80 6 -01100101010 Gorki 7 -01100101010 Underwoods 8 -01100101010 Honeywell-NEC 8 -01100101010 Culiacan 8 -01100101010 Stalowa 8 -01100101010 mid-session 9 -01100101010 UMBC 9 -01100101010 Blackpool 9 -01100101010 Inmarsat 9 -01100101010 Ramstein 10 -01100101010 Comic 10 -01100101010 Pietermaritzburg 10 -01100101010 Kanazawa 12 -01100101010 C-Span 12 -01100101010 Gothenburg 13 -01100101010 1855 13 -01100101010 Cartagena 14 -01100101010 Sapoa 14 -01100101010 Lugano 17 -01100101010 Carthage 17 -01100101010 Dhaka 21 -01100101010 Londonderry 21 -01100101010 Lusaka 24 -01100101010 Nairobi 24 -01100101010 Mindanao 28 -01100101010 Cologne 35 -01100101010 Lisbon 35 -01100101010 Duesseldorf 36 -01100101010 Krakow 38 -01100101010 Saipan 38 -01100101010 Bern 45 -01100101010 Saigon 47 -01100101010 Port-au-Prince 52 -01100101010 Sheet 53 -01100101010 Belgrade 65 -01100101010 unlisted 67 -01100101010 Bogota 67 -01100101010 Istanbul 69 -01100101010 Maputo 71 -01100101010 Dubai 72 -01100101010 Gdansk 72 -01100101010 Algiers 74 -01100101010 Caracas 76 -01100101010 midmorning 79 -01100101010 Jakarta 80 -01100101010 Oslo 87 -01100101010 Iceland 89 -01100101010 Reykjavik 97 -01100101010 Colombo 102 -01100101010 Scandinavia 127 -01100101010 Basel 128 -01100101010 Budapest 145 -01100101010 Guatemala 195 -01100101010 Johannesburg 222 -01100101010 Osaka 238 -01100101010 Kabul 242 -01100101010 Luxembourg 269 -01100101010 Venice 298 -01100101010 Gaza 348 -01100101010 Wellington 370 -01100101010 Vienna 450 -01100101010 Vancouver 478 -01100101010 Warsaw 506 -01100101010 Taipei 531 -01100101010 Amsterdam 580 -01100101010 Stockholm 623 -01100101010 Sydney 722 -01100101010 Zurich 759 -01100101010 Milan 777 -01100101010 Manila 792 -01100101010 Brussels 846 -01100101010 Seoul 1223 -01100101010 Frankfurt 1482 -01100101010 Singapore 1820 -01100101010 Toronto 2162 -01100101010 Paris 2481 -01100101010 London 8840 -01100101010 Tokyo 6719 -01100101011 Sinkow 1 -01100101011 Baranovskii 1 -01100101011 Travco 1 -01100101011 Sabich 1 -01100101011 1926-27 1 -01100101011 Bite 1 -01100101011 Defcon 1 -01100101011 Options-backed 1 -01100101011 Sidek 1 -01100101011 Ringueberg 1 -01100101011 Sculptures 1 -01100101011 3C 1 -01100101011 Takla 1 -01100101011 Three-left 1 -01100101011 Paramanda 1 -01100101011 Boston-CSFB 1 -01100101011 Vice-Presidential 1 -01100101011 City-type 1 -01100101011 newstand 1 -01100101011 SWAGGART 1 -01100101011 Mihm 1 -01100101011 PENNEY 1 -01100101011 Fortresses 1 -01100101011 Intersate 1 -01100101011 AmeriCable 1 -01100101011 Boston-led 1 -01100101011 Snakekiller 1 -01100101011 Texas-Gibraltar 1 -01100101011 Armoured 1 -01100101011 Thethe 1 -01100101011 Interstate-BankAmerica 1 -01100101011 Schnitzel 1 -01100101011 Mowhawk 1 -01100101011 Brandle 1 -01100101011 Sabath 1 -01100101011 Jersey-related 1 -01100101011 Padlock 1 -01100101011 Lituma 1 -01100101011 Winterbotham 1 -01100101011 88-4. 1 -01100101011 Stanch 1 -01100101011 Toylift 1 -01100101011 87-9 1 -01100101011 Jesser 1 -01100101011 Boston-managed 1 -01100101011 Ferstel 1 -01100101011 Orlofsky 1 -01100101011 Atlanta-Wachovia 1 -01100101011 Whittlesey. 1 -01100101011 Minnick 1 -01100101011 Pennsylvannia 1 -01100101011 Rapacz 1 -01100101011 Rabidue 1 -01100101011 Kresowa 1 -01100101011 Shober 1 -01100101011 Grader 1 -01100101011 88-65 1 -01100101011 Kropotkin 1 -01100101011 Norfinanz 1 -01100101011 Bachianas 1 -01100101011 Thimble 1 -01100101011 Volodymyr 1 -01100101011 immigation 1 -01100101011 Saucer 1 -01100101011 WCRS. 1 -01100101011 Penn-Pacific 1 -01100101011 Dundeal 1 -01100101011 Kleeman 1 -01100101011 EFC. 1 -01100101011 SNAKE 1 -01100101011 FLARING 1 -01100101011 ComBanks 1 -01100101011 M.e.T.A. 1 -01100101011 Kemp-Gee 1 -01100101011 Excecutive 1 -01100101011 Zadora 1 -01100101011 Boston/management 1 -01100101011 88-99 1 -01100101011 v.w. 1 -01100101011 Kippers 1 -01100101011 Tri-Continental 1 -01100101011 Skinnerish 1 -01100101011 qtr. 1 -01100101011 Americanus 1 -01100101011 Moctezuma 1 -01100101011 Cuahtemoc 1 -01100101011 88-10 1 -01100101011 Mowhak 1 -01100101011 McDuffie 1 -01100101011 Boston-Kidder 1 -01100101011 88-82. 1 -01100101011 Sequel 2 -01100101011 Thant 2 -01100101011 Wetback 2 -01100101011 Storno 2 -01100101011 ABQ 2 -01100101011 Amendment. 2 -01100101011 BanCorp 2 -01100101011 Nanofilm 2 -01100101011 87-6 2 -01100101011 Bushwacker 2 -01100101011 Pentecoste 2 -01100101011 Myongdong 2 -01100101011 HANNA 2 -01100101011 Stronghold 2 -01100101011 NTN-Bower 2 -01100101011 Breadbasket 2 -01100101011 Xydex 2 -01100101011 Xabre 2 -01100101011 Fiberboard 2 -01100101011 DPBG 2 -01100101011 Epoch 2 -01100101011 Gutsa 2 -01100101011 Keelhaul 2 -01100101011 Dellovade 2 -01100101011 Bandung 2 -01100101011 88-45 2 -01100101011 BELO 2 -01100101011 87-16 2 -01100101011 ME.TA 2 -01100101011 Blanche/Goudchaux 2 -01100101011 Linpro 2 -01100101011 Fidelity-Fidelcor 2 -01100101011 Sigmor 2 -01100101011 Seiyo 3 -01100101011 Republicbank 3 -01100101011 Fuer 3 -01100101011 Feisal 3 -01100101011 Infodetics 3 -01100101011 Calvary 3 -01100101011 Ayco 3 -01100101011 Unisoft 3 -01100101011 N.Y.C. 3 -01100101011 Spaarbank 3 -01100101011 ROBINS 3 -01100101011 NWNL 3 -01100101011 Teleprompter 3 -01100101011 Dumbo 3 -01100101011 Gestioni 3 -01100101011 Tuskaloosa 3 -01100101011 Napanook 3 -01100101011 OmegaSource 3 -01100101011 Molotlegi 3 -01100101011 SpencerStuart 4 -01100101011 Qtr. 4 -01100101011 Akihito 4 -01100101011 AmFed 4 -01100101011 Ticino 4 -01100101011 Pennsy 4 -01100101011 SAMSOM 5 -01100101011 Tryon 5 -01100101011 Eyrie 5 -01100101011 Swingline 5 -01100101011 Inmos 5 -01100101011 BUITONI 5 -01100101011 Exodus 5 -01100101011 Kenai 5 -01100101011 Compudyne 5 -01100101011 Elbrus 6 -01100101011 Jutland 6 -01100101011 Kaepa 6 -01100101011 Iona 6 -01100101011 NorthWest 6 -01100101011 68-story 6 -01100101011 ME.T.A. 6 -01100101011 Velo-Bind 6 -01100101011 Calaf 7 -01100101011 Farwest 7 -01100101011 Ameri-Cable 7 -01100101011 Murex 7 -01100101011 Reefs 7 -01100101011 Staunch 7 -01100101011 Pulaski 7 -01100101011 Mongoose 7 -01100101011 France-Presse 8 -01100101011 Nederlandse 8 -01100101011 Quadrant 9 -01100101011 SeaFirst 9 -01100101011 DODGE 9 -01100101011 Dayton-Hudson 9 -01100101011 Metternich 10 -01100101011 Placements 11 -01100101011 Nu 12 -01100101011 Devonshire 16 -01100101011 Yucatan 17 -01100101011 Anniversary 17 -01100101011 Beloit 18 -01100101011 Samsom 20 -01100101011 PUSH 20 -01100101011 Iberian 21 -01100101011 Curacao 24 -01100101011 NH 25 -01100101011 Wachovia 49 -01100101011 Belo 85 -01100101011 Mohawk 179 -01100101011 Nationwide 255 -01100101011 Albany 272 -01100101011 Amendment 907 -01100101011 RepublicBank 984 -01100101011 Executive 1066 -01100101011 Interstate 1218 -01100101011 Manhattan 2931 -01100101011 Chicago 8211 -01100101011 Boston 6584 -01100101100 Argyrol 1 -01100101100 coventures 1 -01100101100 Whodini 1 -01100101100 map-matching 1 -01100101100 Melonie 1 -01100101100 Value-Television 1 -01100101100 Progestasert 1 -01100101100 Enoxy 1 -01100101100 onchocera 1 -01100101100 Hypertalk 1 -01100101100 Affinifile 1 -01100101100 HyperLink 1 -01100101100 hematoporphyrin 1 -01100101100 buy-writes 1 -01100101100 Pancasila 1 -01100101100 intraluminal 1 -01100101100 Ironwriters 1 -01100101100 103,287 1 -01100101100 MasterTeller 1 -01100101100 pre-conceptions 1 -01100101100 McDope 1 -01100101100 Silverhead 1 -01100101100 KCTA 1 -01100101100 Dezerter 1 -01100101100 Cray-2S 1 -01100101100 Qiangshou 1 -01100101100 risk-reduction 1 -01100101100 shims 1 -01100101100 erythropoeitin 1 -01100101100 Sharman 1 -01100101100 UDG-Yoshu 1 -01100101100 CTX-1500 1 -01100101100 photomaniacs 1 -01100101100 Waldensoftware 1 -01100101100 Waldenkids 1 -01100101100 mid-sizecars 1 -01100101100 EMCExpress 1 -01100101100 GR-43175 1 -01100101100 duplicitously 1 -01100101100 CFC-13B1 1 -01100101100 Halons 1 -01100101100 streptokinase-plasminogen 1 -01100101100 Prologue 1 -01100101100 nong 1 -01100101100 sonograms 1 -01100101100 MVS 1 -01100101100 VBIRAM 1 -01100101100 NEE 1 -01100101100 FidoNet 1 -01100101100 Q-DOS 1 -01100101100 introns 1 -01100101100 carbonic 1 -01100101100 out-of-reach 1 -01100101100 O.P.P. 1 -01100101100 Chinghai 1 -01100101100 folates 1 -01100101100 X-30 1 -01100101100 MedAssist 1 -01100101100 Gymees 1 -01100101100 Windsurfer 1 -01100101100 NEMO 1 -01100101100 T4-cells 1 -01100101100 Neumarkt 1 -01100101100 he-is-or-isn't-a-moderate 1 -01100101100 Caltrate 1 -01100101100 CRAY-2/4-512 1 -01100101100 Anisakidae 1 -01100101100 MP&L 1 -01100101100 pravastatin 1 -01100101100 neurofibromas 1 -01100101100 FarmerMac 1 -01100101100 Beaucoup 1 -01100101100 too-easy 1 -01100101100 Locum 1 -01100101100 superstrings 1 -01100101100 Feivel 1 -01100101100 dimers 1 -01100101100 velostatin 1 -01100101100 burbot 1 -01100101100 CARs 1 -01100101100 Roxelana 1 -01100101100 bill-payers 1 -01100101100 Cocolat 1 -01100101100 triploids 1 -01100101100 mecamylamine 1 -01100101100 LifeSign 1 -01100101100 Destinations 1 -01100101100 LY171883 1 -01100101100 vinpocetine 1 -01100101100 Glucostix 1 -01100101100 Freshen 1 -01100101100 Car-Help 1 -01100101100 Putra 1 -01100101100 diphacinone 1 -01100101100 half-siblings 1 -01100101100 D-Illusions 1 -01100101100 Bridgewatch 1 -01100101100 12-3/G 1 -01100101100 Avallon 1 -01100101100 PYRE 1 -01100101100 space-time 1 -01100101100 Doxidan 1 -01100101100 ormolu 1 -01100101100 Aved 1 -01100101100 TAT-3 1 -01100101100 it-that 1 -01100101100 Nhamatanda 1 -01100101100 Lamego 1 -01100101100 GHH 1 -01100101100 Electroink 1 -01100101100 Oliservice 1 -01100101100 VP-Planner 1 -01100101100 digesters 1 -01100101100 uravnilovka 1 -01100101100 Gilotherm 1 -01100101100 HIV1 1 -01100101100 286,788 1 -01100101100 neo-Luddites 1 -01100101100 oddploid 1 -01100101100 Multiples 1 -01100101100 carbo-chlorination 1 -01100101100 13-Fs 1 -01100101100 14,322,000 1 -01100101100 mohajirs 1 -01100101100 Metropoly 1 -01100101100 Torturcize. 1 -01100101100 Canac 1 -01100101100 Auslese 1 -01100101100 Edelfaule 1 -01100101100 limonin 1 -01100101100 Intertach 1 -01100101100 monobactams 1 -01100101100 adenosine 1 -01100101100 Drina 1 -01100101100 Weeboks 1 -01100101100 Bracton 1 -01100101100 value-subtracted 1 -01100101100 PageBuilder 1 -01100101100 TD4 1 -01100101100 lazaroids 1 -01100101100 51,825 1 -01100101100 Pachsdraai 1 -01100101100 Vybor 1 -01100101100 lajis 1 -01100101100 HMG-CoA 1 -01100101100 URGENT 1 -01100101100 Snowbirds 1 -01100101100 ENRILE 1 -01100101100 Ethocyn 1 -01100101100 fluoroelastomers 1 -01100101100 metastasis 1 -01100101100 FullPaint 1 -01100101100 khozraschot 1 -01100101100 ple 1 -01100101100 triose 1 -01100101100 F.O.O.D. 1 -01100101100 Receiver 1 -01100101100 laches 1 -01100101100 alanine 1 -01100101100 301-443-2894 1 -01100101100 Squeezit 1 -01100101100 HYPERchannel-DX 1 -01100101100 TEX-PEC 1 -01100101100 LoSpam 1 -01100101100 Sanchon 1 -01100101100 Eurosids 1 -01100101100 Tria 1 -01100101100 off-and-on-again 1 -01100101100 ABC-Paramount 1 -01100101100 Mwalimu 1 -01100101100 tricyclics 1 -01100101100 495-2167 1 -01100101100 trihalomethanes 1 -01100101100 Canastels 1 -01100101100 immunoglobulin-G 1 -01100101100 Z171 1 -01100101100 bioremediation 1 -01100101100 CompuGarden 1 -01100101100 metoclopramide 1 -01100101100 RC100 1 -01100101100 GCM 1 -01100101100 polybags 1 -01100101100 Cayo 1 -01100101100 flutamide 1 -01100101100 VacSYN/FeLV 1 -01100101100 v-senv5 1 -01100101100 pyorrhea 1 -01100101100 Mernet 1 -01100101100 Phenomanails 1 -01100101100 Semtex-H 1 -01100101100 Dosifei 1 -01100101100 hysteroscopy 1 -01100101100 dichloro-diphenyl-trichloroethane 1 -01100101100 schiftomiasis 1 -01100101100 92,806 1 -01100101100 Hagia 1 -01100101100 AS-101 1 -01100101100 beta-agonists 1 -01100101100 UDMH 1 -01100101100 Skypager 1 -01100101100 Nazar 1 -01100101100 Compactacion 1 -01100101100 virtu 1 -01100101100 accutane 1 -01100101100 Tit-Bits 1 -01100101100 McGovernism 1 -01100101100 ferroelectronics 1 -01100101100 gembibrozil 1 -01100101100 ketones 1 -01100101100 Docuforum 1 -01100101100 quetsche 1 -01100101100 calvados 1 -01100101100 marc 1 -01100101100 kirsch 1 -01100101100 Alham 1 -01100101100 hearers 1 -01100101100 Tepito 1 -01100101100 K-band 1 -01100101100 glueballs 1 -01100101100 Rambo-lina 1 -01100101100 NS-X 1 -01100101100 panpipes 1 -01100101100 a-methopterin 1 -01100101100 MediaWatch 1 -01100101100 Aspilia 1 -01100101100 Toadstool 1 -01100101100 osteocalcin 1 -01100101100 Dezerland 1 -01100101100 SmallTalk 1 -01100101100 Polacolor 1 -01100101100 Siropin 1 -01100101100 berettas 1 -01100101100 loss-taking 1 -01100101100 nucleases 1 -01100101100 Scuppers 1 -01100101100 Insuject 1 -01100101100 laypersons 1 -01100101100 Bank-By-Phone 1 -01100101100 Aamulehti 1 -01100101100 Ramfis 1 -01100101100 Myoko 1 -01100101100 Staansaam 1 -01100101100 proto-oncogenes 1 -01100101100 Mifepristone 1 -01100101100 Tiblisi 1 -01100101100 Tetris 1 -01100101100 Porvoonkatu-Borgagatan 1 -01100101100 Auto-Dine 1 -01100101100 accupril 1 -01100101100 raku 1 -01100101100 234,812 1 -01100101100 Excelerator 1 -01100101100 Nutramigen 1 -01100101100 ATS/2 1 -01100101100 stroboscopes 1 -01100101100 Contenido 1 -01100101100 CEARAID 1 -01100101100 Jamaran 1 -01100101100 Equitaine 1 -01100101100 acrylonitrile-butadiene-styrene 1 -01100101100 HHV-6 1 -01100101100 KMTC-TV 1 -01100101100 Son-of-DAT 1 -01100101100 Tsjude 1 -01100101100 Flu-shot1 1 -01100101100 9/23B-7 1 -01100101100 1772 1 -01100101100 Spetznaz 1 -01100101100 photo-refractive 1 -01100101100 cestas 1 -01100101100 Krater 1 -01100101100 AutoWorld 1 -01100101100 todok 2 -01100101100 Juku 2 -01100101100 hepatotoxicity 2 -01100101100 Rotorex 2 -01100101100 Irec 2 -01100101100 KTC 2 -01100101100 CCT 2 -01100101100 gangsterism 2 -01100101100 browsers 2 -01100101100 rickets 2 -01100101100 Enkaid 2 -01100101100 TDC 2 -01100101100 Sentor 2 -01100101100 nondrinkers 2 -01100101100 Monteshell 2 -01100101100 Zestril 2 -01100101100 Adventurers 2 -01100101100 Centrimex 2 -01100101100 Betar 2 -01100101100 rosacea 2 -01100101100 Bladex 2 -01100101100 enroadment 2 -01100101100 Marunouchi 2 -01100101100 LULAC 2 -01100101100 snobbism 2 -01100101100 hydrochlorothiazide 2 -01100101100 Twisters 2 -01100101100 FTLV 2 -01100101100 Interarms 2 -01100101100 Onderstepoort 2 -01100101100 adjuvant 2 -01100101100 Asla 2 -01100101100 surimi 2 -01100101100 Bitic 2 -01100101100 Furt 2 -01100101100 cheatgrass 2 -01100101100 slovenliness 2 -01100101100 mismeasurement 2 -01100101100 Sublette 2 -01100101100 eptastatin 2 -01100101100 RefCorp. 2 -01100101100 Aipac 2 -01100101100 Enameling 2 -01100101100 IMEDE 2 -01100101100 Melodie 2 -01100101100 Brevibloc 2 -01100101100 Cephalexin 2 -01100101100 immobilism 2 -01100101100 Ickes 2 -01100101100 Kaopectate 2 -01100101100 Combipress 2 -01100101100 HIV2 2 -01100101100 SEM-Walbro 2 -01100101100 dBaseIII 2 -01100101100 CNT 2 -01100101100 apostasy 2 -01100101100 Trax 2 -01100101100 Weiskopf 2 -01100101100 WorthCorp 2 -01100101100 aquavit 2 -01100101100 Acuvue 2 -01100101100 LA-X 2 -01100101100 Dukakis-bashing 2 -01100101100 microgravity 2 -01100101100 heterodoxy 2 -01100101100 Kochang 2 -01100101100 Aliza 2 -01100101100 Drytech 2 -01100101100 PGP 2 -01100101100 ValueTelevision 2 -01100101100 Bridgestone-Firestone 2 -01100101100 Lotusland 2 -01100101100 mongolism 2 -01100101100 Gasolina 2 -01100101100 '96 2 -01100101100 Nemo 2 -01100101100 bumiputras 2 -01100101100 Accurex 2 -01100101100 CT20 2 -01100101100 Kurcali 2 -01100101100 Gefina 2 -01100101100 Doeg 2 -01100101100 TechSystems 2 -01100101100 Urenco 2 -01100101100 Schiapparelli-Searle 2 -01100101100 Blaire 2 -01100101100 lamentation 2 -01100101100 MACH 2 -01100101100 ATACMs 2 -01100101100 headroom 2 -01100101100 Yallahs 2 -01100101100 Baluchistan 2 -01100101100 criminalization 2 -01100101100 W.D.I. 2 -01100101100 Spindletop 2 -01100101100 Tellers 2 -01100101100 paleoanthropology 2 -01100101100 Stromberg-Carlsson 2 -01100101100 WYLD-FM 2 -01100101100 Nordeurop 2 -01100101100 orgasm 2 -01100101100 pre-invoicing 2 -01100101100 share-adjusted 2 -01100101100 M82 2 -01100101100 frogdesign 2 -01100101100 Snowmax 2 -01100101100 Southington 2 -01100101100 Rajneeshpuram 2 -01100101100 Aviaexport 2 -01100101100 synchronicity 2 -01100101100 ytterbium 2 -01100101100 Parades 2 -01100101100 musth 2 -01100101100 Leprosy 2 -01100101100 renin 2 -01100101100 WFAN 2 -01100101100 Interplak 2 -01100101100 Flicka 2 -01100101100 optrodes 2 -01100101100 Marte 2 -01100101100 Hodori 2 -01100101100 ROM 2 -01100101100 Staszic 2 -01100101100 blepharospasm 2 -01100101100 overindulgence 2 -01100101100 Snip 2 -01100101100 NovolinPen 2 -01100101100 Johonesl 2 -01100101100 fortification 2 -01100101100 Malthe 2 -01100101100 privates 2 -01100101100 failures. 2 -01100101100 LAP 2 -01100101100 Neoconservatives 2 -01100101100 OTB 2 -01100101100 Citicorp/Citibank 2 -01100101100 freckles 2 -01100101100 1-2-3/M 2 -01100101100 LIP 2 -01100101100 Dial-a-Porn 2 -01100101100 Minitels 2 -01100101100 Willemstad 2 -01100101100 board-certification 2 -01100101100 FarmFutures 2 -01100101100 HDPE 2 -01100101100 PETE 2 -01100101100 interleukin-3 2 -01100101100 guacamole 3 -01100101100 Krantzland 3 -01100101100 Spinach 3 -01100101100 Bloomsday 3 -01100101100 apprenticing 3 -01100101100 Rumillajta 3 -01100101100 batdancing 3 -01100101100 Brancusi 3 -01100101100 retrorunning 3 -01100101100 minitrials 3 -01100101100 SAC 3 -01100101100 Shadrack 3 -01100101100 GKT 3 -01100101100 mbalax 3 -01100101100 Investeringsbanken 3 -01100101100 driftnets 3 -01100101100 Selectol 3 -01100101100 thermodynamics 3 -01100101100 D-Date 3 -01100101100 Edifact 3 -01100101100 Amecon 3 -01100101100 yucca 3 -01100101100 SICC 3 -01100101100 ADD-Vantage 3 -01100101100 Hillela 3 -01100101100 FreshNes 3 -01100101100 Maldef 3 -01100101100 ASCS 3 -01100101100 Tallinn 3 -01100101100 ASATs 3 -01100101100 reg-neg 3 -01100101100 creosote 3 -01100101100 Namibians 3 -01100101100 jellybeans 3 -01100101100 sportiness 3 -01100101100 lysozyme 3 -01100101100 omelette 3 -01100101100 Enka 3 -01100101100 melancholia 3 -01100101100 Dobermans 3 -01100101100 Montelimar 3 -01100101100 bond-holders 3 -01100101100 KabiKinase 3 -01100101100 Kaliber 3 -01100101100 inerrantists 3 -01100101100 Ramlosa 3 -01100101100 Guntram 3 -01100101100 Hoffritz 3 -01100101100 comets 3 -01100101100 Nemorino 3 -01100101100 Reforger 3 -01100101100 Ashkenazim 3 -01100101100 Southtown 3 -01100101100 OLC 3 -01100101100 Interleukin-7 3 -01100101100 autocrats 3 -01100101100 Necessity 3 -01100101100 1,365 3 -01100101100 domestication 3 -01100101100 Songbuk 3 -01100101100 Ur 3 -01100101100 diverters 3 -01100101100 Diltiazem 3 -01100101100 NOPEC 3 -01100101100 IAI 3 -01100101100 Lwow 3 -01100101100 Agave 3 -01100101100 everthing 3 -01100101100 impermanence 3 -01100101100 Entecap 3 -01100101100 Twiggy 3 -01100101100 Skopbank 3 -01100101100 ErgoScale 3 -01100101100 Parallam 3 -01100101100 Tabes 3 -01100101100 gazebos 3 -01100101100 Nes-Ptah 3 -01100101100 ComBank 3 -01100101100 han 3 -01100101100 Voeren 3 -01100101100 proportionality 3 -01100101100 Onco-Scint 3 -01100101100 yakuza 3 -01100101100 CHF 3 -01100101100 skrytnost 3 -01100101100 Davis-Besse 3 -01100101100 Alkazar 3 -01100101100 non-drinkers 3 -01100101100 Chenix 3 -01100101100 multiplexing 3 -01100101100 bioelectronics 3 -01100101100 WTRK 3 -01100101100 sh 3 -01100101100 NDI 3 -01100101100 DENKS 3 -01100101100 EasyPlex 3 -01100101100 recharging 3 -01100101100 coal-capable 3 -01100101100 Nebuchadnezzar 3 -01100101100 cyclosporine 3 -01100101100 Francona 3 -01100101100 Chawni 3 -01100101100 Xeriscaping 3 -01100101100 AgriSense 3 -01100101100 lengthwise 3 -01100101100 JCAHO 3 -01100101100 EROS 3 -01100101100 water-washing 3 -01100101100 Sawmill 3 -01100101100 Gorbomania 3 -01100101100 YPF 3 -01100101100 Sassicaia 3 -01100101100 pau-Brazil 3 -01100101100 Sequal 3 -01100101100 Punjabis 3 -01100101100 CCI 3 -01100101100 amaranthin 3 -01100101100 LOOT 4 -01100101100 lentinan 4 -01100101100 Avert 4 -01100101100 Cyhexatin 4 -01100101100 Violetta 4 -01100101100 DTCs 4 -01100101100 PSG 4 -01100101100 Murtaza 4 -01100101100 irritability 4 -01100101100 CEC 4 -01100101100 PLDT 4 -01100101100 WZTV 4 -01100101100 DRGs 4 -01100101100 Crocuses 4 -01100101100 Audemars 4 -01100101100 NETWork 4 -01100101100 McClinton 4 -01100101100 Citimerca 4 -01100101100 Arles 4 -01100101100 Parlodel 4 -01100101100 lipids 4 -01100101100 Sanity 4 -01100101100 Sofical 4 -01100101100 FSAs 4 -01100101100 quasars 4 -01100101100 Nikkeiren 4 -01100101100 Cyoctol 4 -01100101100 quarks 4 -01100101100 ganciclovir 4 -01100101100 POSE 4 -01100101100 MVS/ESA 4 -01100101100 Ravenhead 4 -01100101100 Bono 4 -01100101100 hirudin 4 -01100101100 downticks 4 -01100101100 ATZ 4 -01100101100 Khatyn 4 -01100101100 Compete 4 -01100101100 arpeggios 4 -01100101100 self-hypnosis 4 -01100101100 CTJ 4 -01100101100 QFIA 4 -01100101100 Context 4 -01100101100 rouge 4 -01100101100 TCP/IP 4 -01100101100 Petropavlovsk 4 -01100101100 noodling 4 -01100101100 Pasok 4 -01100101100 sycophancy 4 -01100101100 Proscar 4 -01100101100 cribbing 4 -01100101100 anti-oxidants 4 -01100101100 Flemson 4 -01100101100 CISPES 4 -01100101100 Endesa 4 -01100101100 Gamblers 4 -01100101100 Elly 4 -01100101100 Anglophones 4 -01100101100 MasterNet 4 -01100101100 Reliants 4 -01100101100 astrologists 4 -01100101100 Dianabol 4 -01100101100 overeating 4 -01100101100 Pasture 4 -01100101100 Sangioveto 4 -01100101100 interleukin-1 4 -01100101100 Trekkers 4 -01100101100 Manufold 4 -01100101100 Suprol 4 -01100101100 Banvel 4 -01100101100 Congress. 4 -01100101100 turista 4 -01100101100 show-through 4 -01100101100 Priviet 4 -01100101100 CAIT 4 -01100101100 burps 4 -01100101100 Losado 4 -01100101100 Cachito 4 -01100101100 fuel-loading 4 -01100101100 EMEA 4 -01100101100 McPizza 4 -01100101100 OLE 4 -01100101100 ADBF 4 -01100101100 Martinique 4 -01100101100 SRAMs 4 -01100101100 Lyuba 4 -01100101100 Stendhalism 4 -01100101100 Metasome 4 -01100101100 Juanelle 4 -01100101100 granulocytes 4 -01100101100 Egis 4 -01100101100 Zomax 4 -01100101100 YES 4 -01100101100 Stimela 4 -01100101100 Theo-Dur 4 -01100101100 Dodgertown 4 -01100101100 HL&P 4 -01100101100 Disillusionment 4 -01100101100 Pravachol 4 -01100101100 philodendron 4 -01100101100 Cytotec 4 -01100101100 Sinemet 4 -01100101100 TopView 4 -01100101100 withholdings 4 -01100101100 optimization 4 -01100101100 GRIT 4 -01100101100 Retrotec 4 -01100101100 Usiminas 5 -01100101100 Cherubin 5 -01100101100 PMT 5 -01100101100 neutrons 5 -01100101100 Adrenalin 5 -01100101100 Nizhnevartovsk 5 -01100101100 Pompeii 5 -01100101100 dandelions 5 -01100101100 Pericles 5 -01100101100 One-on-One 5 -01100101100 speechifying 5 -01100101100 MTBE 5 -01100101100 Nagymaros 5 -01100101100 Superslims 5 -01100101100 Erzsebet 5 -01100101100 IEJW 5 -01100101100 lye 5 -01100101100 leukotrienes 5 -01100101100 CCA 5 -01100101100 CompuFund 5 -01100101100 Kunashir 5 -01100101100 Korbx 5 -01100101100 Halabja 5 -01100101100 Pidde 5 -01100101100 MDM 5 -01100101100 DECtp 5 -01100101100 chivalry 5 -01100101100 Ursynow 5 -01100101100 Smud 5 -01100101100 gynogenesis 5 -01100101100 Ciemip 5 -01100101100 SLS 5 -01100101100 Humatrope 5 -01100101100 XDOS 5 -01100101100 DFMO 5 -01100101100 Ramtha 5 -01100101100 hooray 5 -01100101100 Duivree 5 -01100101100 Zopilote 5 -01100101100 Petie 5 -01100101100 WNYW 5 -01100101100 CQ 5 -01100101100 trichloroethylene 5 -01100101100 SOP 5 -01100101100 VNR 5 -01100101100 tetrodotoxin 5 -01100101100 Crosstalk 5 -01100101100 KS 5 -01100101100 captopril 5 -01100101100 Buspar 5 -01100101100 Megadeath 5 -01100101100 Kabuto-cho 5 -01100101100 A-Day 5 -01100101100 Philippa 5 -01100101100 Theodosius 5 -01100101100 superstock 5 -01100101100 Colab 5 -01100101100 Auschwitz-Birkenau 5 -01100101100 FS&G 5 -01100101100 Marwood 5 -01100101100 tacrine 5 -01100101100 SMES 5 -01100101100 Ryoko 5 -01100101100 interruptaholics 5 -01100101100 Chezeaux 5 -01100101100 Colestid 5 -01100101100 Junebug 5 -01100101100 Nhu 5 -01100101100 Credo 5 -01100101100 tamoxifen 5 -01100101100 Parmigianino 5 -01100101100 Telekom 5 -01100101100 laurel 5 -01100101100 Blendax-Group 5 -01100101100 ClandoSan 5 -01100101100 Mectizan 5 -01100101100 HRRC 5 -01100101100 Flowlin 5 -01100101100 judicially 5 -01100101100 Impromptu 5 -01100101100 etretinate 5 -01100101100 self-awareness 6 -01100101100 Procardia 6 -01100101100 GRiDPad 6 -01100101100 Bubbie 6 -01100101100 GHRF 6 -01100101100 TTAC 6 -01100101100 Ortho-Novum 6 -01100101100 IgG 6 -01100101100 BuSpar 6 -01100101100 3+Open 6 -01100101100 Preco 6 -01100101100 Bev 6 -01100101100 Competence 6 -01100101100 Stelian 6 -01100101100 Agfa 6 -01100101100 YMCAs 6 -01100101100 fruitcakes 6 -01100101100 Cojunto 6 -01100101100 RFD-TV 6 -01100101100 straight-edge 6 -01100101100 Trojans 6 -01100101100 SIP 6 -01100101100 MPTP 6 -01100101100 PowerPoint 6 -01100101100 Garibaldi 6 -01100101100 Aachen 6 -01100101100 orphanages 6 -01100101100 Prudentrust 6 -01100101100 Tannenburg 6 -01100101100 Megace 6 -01100101100 SSI 6 -01100101100 DECworld 6 -01100101100 BPCC 6 -01100101100 Lifelines 6 -01100101100 horseradish 6 -01100101100 Arabella 6 -01100101100 Octavia 6 -01100101100 EL-10 6 -01100101100 thrombolysis 6 -01100101100 EBDCs 6 -01100101100 pliers 6 -01100101100 Biafra 6 -01100101100 Norskopsjons 6 -01100101100 Maoism 6 -01100101100 Biconish 6 -01100101100 GLCM 6 -01100101100 Moussy 6 -01100101100 Tereza 6 -01100101100 WTVT 6 -01100101100 Mueslix 6 -01100101100 Snakebite 6 -01100101100 ACSH 6 -01100101100 cortisone 6 -01100101100 DRAMS 6 -01100101100 AGI 6 -01100101100 Hispanoil 6 -01100101100 Armasha 6 -01100101100 CETA 6 -01100101100 NORAD 6 -01100101100 Botrytis 6 -01100101100 lanthanum 6 -01100101100 CIGS 6 -01100101100 stenosis 6 -01100101100 TER 6 -01100101100 GrandView 6 -01100101100 SME 6 -01100101100 Ancsa 6 -01100101100 Petromin 6 -01100101100 retinoblastoma 6 -01100101100 Foscarnet 6 -01100101100 Josie 7 -01100101100 Byzantium 7 -01100101100 Bonnet 7 -01100101100 AL-721 7 -01100101100 round-tripping 7 -01100101100 fertilizing 7 -01100101100 MedisGroups 7 -01100101100 serendipity 7 -01100101100 dideoxycytidine 7 -01100101100 Montezuma 7 -01100101100 COBRA 7 -01100101100 NEPL 7 -01100101100 Unesco 7 -01100101100 Fascism 7 -01100101100 narcolepsy 7 -01100101100 Arpanet 7 -01100101100 Vnesheconombank 7 -01100101100 bifurcation 7 -01100101100 Muharram 7 -01100101100 Eurocontrol 7 -01100101100 MSM 7 -01100101100 Tintaya 7 -01100101100 Marogen 7 -01100101100 B&B 7 -01100101100 AS101 7 -01100101100 Wicca 7 -01100101100 Lawaaikamp 7 -01100101100 Dewey-Stevens 7 -01100101100 metolachlor 7 -01100101100 potters 7 -01100101100 SIV 7 -01100101100 Jasmin 7 -01100101100 YSL 7 -01100101100 Panda 7 -01100101100 LSU 7 -01100101100 NYLand 7 -01100101100 noncombatants 7 -01100101100 grizzlies 7 -01100101100 PQQ 7 -01100101100 cytomegalovirus 7 -01100101100 Sovexportfilm 7 -01100101100 Bro 7 -01100101100 Tribbles 7 -01100101100 Godzilla 7 -01100101100 TB 7 -01100101100 RU-486 7 -01100101100 Bruegel 7 -01100101100 Benin 7 -01100101100 Run-DMC 7 -01100101100 Sabina 7 -01100101100 neurofibromatosis 8 -01100101100 Militant 8 -01100101100 neoliberals 8 -01100101100 Decency 8 -01100101100 LifeUSA 8 -01100101100 dinoseb 8 -01100101100 vigilantism 8 -01100101100 Debby 8 -01100101100 L-dopa 8 -01100101100 Starplex 8 -01100101100 CS-1 8 -01100101100 SDRC 8 -01100101100 Belinda 8 -01100101100 Morality 8 -01100101100 Monoclate 8 -01100101100 Missie 8 -01100101100 DDA 8 -01100101100 Piranha 8 -01100101100 Ansell-Americas 8 -01100101100 Rum 8 -01100101100 SAA 8 -01100101100 BENS 8 -01100101100 cyhexatin 8 -01100101100 Macrovision 8 -01100101100 Paganini 8 -01100101100 Whistler 8 -01100101100 heredity 8 -01100101100 graphology 8 -01100101100 UMTA 8 -01100101100 listeria 8 -01100101100 Maddie 8 -01100101100 Bomag 8 -01100101100 Telltales 8 -01100101100 dopamine 8 -01100101100 Cronauer 8 -01100101100 Bidcos 8 -01100101100 KTWV 8 -01100101100 Muggsy 9 -01100101100 Grumbles 9 -01100101100 RU486 9 -01100101100 peoplemeters 9 -01100101100 Bigfoot 9 -01100101100 Naprosyn 9 -01100101100 Porky 9 -01100101100 isoxicam 9 -01100101100 Pele 9 -01100101100 Isoprinosine 9 -01100101100 CDCs 9 -01100101100 Anafranil 9 -01100101100 Govs 9 -01100101100 Bix 9 -01100101100 Ba 9 -01100101100 Intan 9 -01100101100 aldicarb 9 -01100101100 Dodd-Kildee 9 -01100101100 Descending 9 -01100101100 celadon 9 -01100101100 Actigall 9 -01100101100 Cxc 9 -01100101100 RENAMO 9 -01100101100 WAD 9 -01100101100 Nabob 9 -01100101100 Kinepolis 9 -01100101100 McCarran 9 -01100101100 Heartwise 9 -01100101100 gp120 9 -01100101100 amakudari 9 -01100101100 Therafectin 9 -01100101100 Muscovites 9 -01100101100 Fantastik 9 -01100101100 Premarin 9 -01100101100 clozapine 9 -01100101100 ETBE 9 -01100101100 Withnail 9 -01100101100 Voltaren 10 -01100101100 Microx 10 -01100101100 underdevelopment 10 -01100101100 Scripture 10 -01100101100 Maxi 10 -01100101100 Ansaid 10 -01100101100 Protestantism 10 -01100101100 BreakMate 10 -01100101100 Catharine 10 -01100101100 Chromakalim 10 -01100101100 Carrisyn 10 -01100101100 E-Ferol 10 -01100101100 Tretinoin 10 -01100101100 minimalism 10 -01100101100 trimetrexate 10 -01100101100 Ramesses 10 -01100101100 Thucydides 10 -01100101100 beta-carotene 10 -01100101100 CRL 10 -01100101100 Bt 10 -01100101100 Aquarium 10 -01100101100 amiprilose 10 -01100101100 tPA 10 -01100101100 HyperCard 10 -01100101100 Carafate 10 -01100101100 TVSAT-1 10 -01100101100 saboteurs 10 -01100101100 Cites 10 -01100101100 vagrants 10 -01100101100 G-CSF 10 -01100101100 Paulina 10 -01100101100 TransAfrica 10 -01100101100 Boussac 10 -01100101100 Chuckie 10 -01100101100 DB2 11 -01100101100 PPOs 11 -01100101100 tebuthiuron 11 -01100101100 Charlemagne 11 -01100101100 Sperrfrist 11 -01100101100 Corexit 11 -01100101100 Dunkirk 11 -01100101100 Allways 11 -01100101100 Sharia 11 -01100101100 il 11 -01100101100 Pepcid 11 -01100101100 totalitarians 11 -01100101100 Seldane 11 -01100101100 Apples 11 -01100101100 Ugolin 11 -01100101100 waterbeds 11 -01100101100 sucralose 11 -01100101100 polyhemoglobin 11 -01100101100 Confucianism 11 -01100101100 Syncom 11 -01100101100 EDI 11 -01100101100 Corbu 11 -01100101100 Ecumena 11 -01100101100 SOD 11 -01100101100 MAD 11 -01100101100 macrophages 11 -01100101100 Mehran 12 -01100101100 borsch 12 -01100101100 Peronism 12 -01100101100 TNF 12 -01100101100 Berneice 12 -01100101100 Rosty 12 -01100101100 Caesarea 12 -01100101100 KIC 12 -01100101100 Snuggle 12 -01100101100 clomipramine 12 -01100101100 Medfacts 12 -01100101100 PACE 12 -01100101100 Maxzide 12 -01100101100 Asta 12 -01100101100 Calan 12 -01100101100 whistleblowers 12 -01100101100 Reeboks 12 -01100101100 gemfibrozil 12 -01100101100 Gorby 12 -01100101100 deprenyl 12 -01100101100 Dracula 12 -01100101100 Darkie 12 -01100101100 AmeriCares 12 -01100101100 NYCB 12 -01100101100 WWOR 12 -01100101100 Gosplan 12 -01100101100 hashing 12 -01100101100 NATCA 12 -01100101100 Frostban 12 -01100101100 Japan-bashing 13 -01100101100 Eurosid 13 -01100101100 Questran 13 -01100101100 officialdom 13 -01100101100 Novosti 13 -01100101100 Dicamba 13 -01100101100 Boonville 13 -01100101100 Betavon 13 -01100101100 Anacin-3 13 -01100101100 Golkar 13 -01100101100 adjustables 13 -01100101100 Zovirax 13 -01100101100 Nero 14 -01100101100 Panmunjom 14 -01100101100 Melba 14 -01100101100 TILs 14 -01100101100 Paradox 14 -01100101100 Brecht 14 -01100101100 weightlifting 14 -01100101100 RAP 14 -01100101100 Didi 14 -01100101100 FEMA 14 -01100101100 Newedge 14 -01100101100 OSI 14 -01100101100 Pharoah 14 -01100101100 liposuction 15 -01100101100 Ivana 15 -01100101100 Maz 15 -01100101100 two-up 15 -01100101100 Bambi 15 -01100101100 Ataturk 15 -01100101100 bimbos 15 -01100101100 Ostpolitik 15 -01100101100 Arnolphe 15 -01100101100 Goethe 15 -01100101100 Pornography 15 -01100101100 Yuval 15 -01100101100 Robustas 15 -01100101100 LAS 15 -01100101100 microcode 15 -01100101100 liposomes 15 -01100101100 Tormenta 15 -01100101100 geopolitics 16 -01100101100 Inerco 16 -01100101100 Billancourt 16 -01100101100 USADirect 16 -01100101100 LSD 16 -01100101100 Brunnhilde 16 -01100101100 Inderal 16 -01100101100 TDF1 16 -01100101100 Sophocles 16 -01100101100 Kapton 16 -01100101100 PURPA 16 -01100101100 tansy 16 -01100101100 Prunedale 16 -01100101100 sulfites 16 -01100101100 Christo 16 -01100101100 Spago 17 -01100101100 HOPE 17 -01100101100 Cognac 17 -01100101100 UDAGs 17 -01100101100 Worldscope 17 -01100101100 Rogernomics 17 -01100101100 Kokoschka 17 -01100101100 GROW 17 -01100101100 hemophiliacs 17 -01100101100 Tevye 17 -01100101100 countertrade 17 -01100101100 impressionism 17 -01100101100 M&M 17 -01100101100 Citic 18 -01100101100 Sylvie 18 -01100101100 Torah 18 -01100101100 ERA 18 -01100101100 Buddha 18 -01100101100 Contac 18 -01100101100 atherosclerosis 18 -01100101100 bigness 18 -01100101100 Commentary 18 -01100101100 MOVE 18 -01100101100 humankind 18 -01100101100 Janine 19 -01100101100 Olestra 19 -01100101100 Episodes 19 -01100101100 I2D2 19 -01100101100 Axid 19 -01100101100 WNBC-TV 19 -01100101100 Orpheus 19 -01100101100 GICs 19 -01100101100 methotrexate 19 -01100101100 Shamu 19 -01100101100 Interflug 19 -01100101100 GWEN 19 -01100101100 buts 19 -01100101100 Thatcherism 20 -01100101100 NIOSH 20 -01100101100 Pewabic 20 -01100101100 Ritalin 20 -01100101100 Mustafa 20 -01100101100 Aristotle 20 -01100101100 Ribavirin 20 -01100101100 buprenorphine 20 -01100101100 Polidori 20 -01100101100 Aerolineas 20 -01100101100 Chatterton 20 -01100101100 Nadine 20 -01100101100 Ramona 20 -01100101100 ASICs 20 -01100101100 Borders 20 -01100101100 Tarzan 20 -01100101100 Bassa 20 -01100101100 Joey 21 -01100101100 saliva 21 -01100101100 Khost 21 -01100101100 scissors 21 -01100101100 Plax 21 -01100101100 SDRs 21 -01100101100 SPE 21 -01100101100 Gatorade 21 -01100101100 CNBC 21 -01100101100 self-management 21 -01100101100 pickles 21 -01100101100 Versed 21 -01100101100 Mitteleuropa 21 -01100101100 incumbency 21 -01100101100 Diem 22 -01100101100 Gaby 22 -01100101100 Sesdaq 22 -01100101100 Venus 22 -01100101100 witchcraft 22 -01100101100 lymphoma 22 -01100101100 HIV-2 22 -01100101100 Superman 23 -01100101100 Judaism 23 -01100101100 Suleyman 23 -01100101100 Halcion 23 -01100101100 cockroaches 23 -01100101100 Aim 23 -01100101100 Obsession 24 -01100101100 Seaq 24 -01100101100 Shorty 24 -01100101100 Trips 24 -01100101100 thalidomide 25 -01100101100 Protropin 25 -01100101100 creationism 25 -01100101100 KHJ-TV 25 -01100101100 PIW 25 -01100101100 SEAT 26 -01100101100 SMUD 26 -01100101100 modernism 26 -01100101100 wheelchairs 26 -01100101100 Cleopatra 27 -01100101100 Hypercard 27 -01100101100 ACE 27 -01100101100 Metamucil 27 -01100101100 Elsa 28 -01100101100 lovastatin 28 -01100101100 Eproms 28 -01100101100 Communism 28 -01100101100 Hippocrates 28 -01100101100 MI5 28 -01100101100 Prozac 28 -01100101100 tax-exempts 28 -01100101100 azidothymidine 29 -01100101100 Liza 29 -01100101100 Imreg-1 29 -01100101100 CAFE 29 -01100101100 Globex 30 -01100101100 LDCs 32 -01100101100 Chekhov 32 -01100101100 Reaganism 32 -01100101100 Huggies 33 -01100101100 Marxism-Leninism 34 -01100101100 Bendectin 34 -01100101100 Socialism 34 -01100101100 Vasotec 34 -01100101100 IL-2 35 -01100101100 Yogi 35 -01100101100 superoxide 35 -01100101100 ATVs 37 -01100101100 BGH 37 -01100101100 SOES 37 -01100101100 Silverlake 38 -01100101100 alachlor 38 -01100101100 Suzy 39 -01100101100 Alar 40 -01100101100 Socrates 40 -01100101100 Cory 40 -01100101100 Frelimo 41 -01100101100 Mevacor 42 -01100101100 Chaucer 42 -01100101100 Activase 42 -01100101100 Lasso 42 -01100101100 Elsie 42 -01100101100 ribavirin 44 -01100101100 Blockade 44 -01100101100 outsourcing 44 -01100101100 Cardizem 44 -01100101100 Agenda 44 -01100101100 Kabuki 45 -01100101100 Dolly 45 -01100101100 UP 46 -01100101100 Eminase 46 -01100101100 VOA 47 -01100101100 Tolstoy 47 -01100101100 Amadeus 47 -01100101100 DDT 47 -01100101100 Lopid 48 -01100101100 UNO 48 -01100101100 DDC 48 -01100101100 olestra 49 -01100101100 psyllium 50 -01100101100 Auschwitz 50 -01100101100 workfare 51 -01100101100 Teresa 51 -01100101100 MaxSavers 52 -01100101100 Sting 54 -01100101100 Advil 54 -01100101100 Ampligen 56 -01100101100 Zantac 56 -01100101100 GQ 57 -01100101100 Retin-A 58 -01100101100 DDI 59 -01100101100 hers 59 -01100101100 Prohibition 60 -01100101100 CGCT 60 -01100101100 Karajan 61 -01100101100 EPO 63 -01100101100 astrology 63 -01100101100 Simplesse 66 -01100101100 Reaganomics 66 -01100101100 Vogue 67 -01100101100 GM-CSF 71 -01100101100 Capoten 71 -01100101100 Retrovir 73 -01100101100 Comecon 74 -01100101100 Accutane 74 -01100101100 Kevlar 75 -01100101100 federalism 75 -01100101100 Peak 81 -01100101100 CD4 81 -01100101100 Madonna 83 -01100101100 Unita 84 -01100101100 TF1 84 -01100101100 Windows 85 -01100101100 Hell 88 -01100101100 ESOPs 97 -01100101100 Dad 100 -01100101100 Remics 101 -01100101100 Renamo 104 -01100101100 Rogaine 105 -01100101100 minoxidil 106 -01100101100 Sematech 111 -01100101100 Tagamet 113 -01100101100 Virazole 119 -01100101100 PCBs 120 -01100101100 DRAMs 127 -01100101100 IRAs 133 -01100101100 Mom 134 -01100101100 Dyazide 145 -01100101100 streptokinase 155 -01100101100 THA 156 -01100101100 Hezbollah 157 -01100101100 Mother 162 -01100101100 Voyager 170 -01100101100 Shakespeare 174 -01100101100 CFCs 175 -01100101100 Nature 179 -01100101100 Bottom 184 -01100101100 Lenin 219 -01100101100 Islam 222 -01100101100 perestroika 264 -01100101100 Shoreham 305 -01100101100 glasnost 398 -01100101100 AZT 535 -01100101100 Solidarity 586 -01100101100 Countries 629 -01100101100 parliament 693 -01100101100 Seabrook 729 -01100101100 God 731 -01100101100 TPA 858 -01100101100 Congress 13559 -01100101100 Parliament 873 -011001011010 gadolinium 1 -011001011010 Ghadafi 1 -011001011010 thursday 1 -011001011010 11-year-olds 1 -011001011010 underarmed 1 -011001011010 phytochrome 1 -011001011010 non-Hodgkin 1 -011001011010 BG 1 -011001011010 Smeton 1 -011001011010 LACKEY 1 -011001011010 Kierkegaard 2 -011001011010 Bapepam 2 -011001011010 Ben-Gay 2 -011001011010 9,578 2 -011001011010 Annio 2 -011001011010 marathoning 2 -011001011010 Elvino 2 -011001011010 Nantes 2 -011001011010 Bloomingdales 2 -011001011010 Westcom 2 -011001011010 outboards 2 -011001011010 earaches 2 -011001011010 Scriven 2 -011001011010 Abuja 2 -011001011010 Hammurabi 2 -011001011010 Radium 2 -011001011010 ministeelmakers 2 -011001011010 tannin 2 -011001011010 Samoyeds 2 -011001011010 HFCA 2 -011001011010 Gaia 2 -011001011010 Ofra 2 -011001011010 26118.42 2 -011001011010 Copra 2 -011001011010 bartending 2 -011001011010 BTI 2 -011001011010 JFY 2 -011001011010 CBS/Sony 2 -011001011010 Kapit 2 -011001011010 womankind 2 -011001011010 Artemide 2 -011001011010 Recluse 2 -011001011010 Manichaeism 2 -011001011010 Beruku 2 -011001011010 HF/ID 2 -011001011010 Park-N-Ticket 2 -011001011010 IAPE 2 -011001011010 Styria 2 -011001011010 Hampstead 2 -011001011010 disintermediation 2 -011001011010 Robina 2 -011001011010 Plutarch 2 -011001011010 KABC 2 -011001011010 Androgyny 2 -011001011010 dyslexia 2 -011001011010 Hakon 2 -011001011010 Conasupo 2 -011001011010 Vojvodina 2 -011001011010 Bancapital 2 -011001011010 Gwizd 2 -011001011010 Gardez 2 -011001011010 NCM 2 -011001011010 less-cyclical 2 -011001011010 pimentos 2 -011001011010 thaumatin 2 -011001011010 Phokeng 2 -011001011010 Iskra 2 -011001011010 narco-dollars 2 -011001011010 Binkie 2 -011001011010 Hytrin 2 -011001011010 PetroLewis 2 -011001011010 Enigmatic 2 -011001011010 Hokusai 2 -011001011010 wets 2 -011001011010 Ohm 2 -011001011010 WHTZ-FM 2 -011001011010 Gali 2 -011001011010 Grax 2 -011001011010 Lois/GGK 2 -011001011010 addenda 2 -011001011010 monosyllables 2 -011001011010 PHS 2 -011001011010 Perimed 2 -011001011010 H.R.H. 2 -011001011010 Trot 2 -011001011010 leeks 2 -011001011010 8,160 2 -011001011010 Kracow 2 -011001011010 CEN-CARD 2 -011001011010 fact-checkers 2 -011001011010 DRI/McGraw-Hill 2 -011001011010 Gillete 2 -011001011010 ADESE 2 -011001011010 Informants 2 -011001011010 Paulsboro 2 -011001011010 1150 2 -011001011010 C-P-C 2 -011001011010 Sesto 3 -011001011010 Windahall 3 -011001011010 GSS 3 -011001011010 Gunnison 3 -011001011010 Watteau 3 -011001011010 NEI 3 -011001011010 Meserve 3 -011001011010 China. 3 -011001011010 malingering 3 -011001011010 PRAY-see 3 -011001011010 Redoute 3 -011001011010 Sucralose 3 -011001011010 Josefina 3 -011001011010 301.95 3 -011001011010 secondaries 3 -011001011010 VentureTrident 3 -011001011010 L-thyroxine 3 -011001011010 Yugoslovia 3 -011001011010 Wellston 3 -011001011010 Sandinism 3 -011001011010 Interrent 3 -011001011010 Tweety 3 -011001011010 HealthEast 3 -011001011010 Uralmash 3 -011001011010 Stroybank 3 -011001011010 Karlskoga 3 -011001011010 Zaventem 3 -011001011010 Basco 3 -011001011010 Raimunda 3 -011001011010 TPMI/Macomber 3 -011001011010 ITJ 3 -011001011010 Presbyterians 3 -011001011010 Filmation 3 -011001011010 Mankind 3 -011001011010 Saffron 3 -011001011010 KC 3 -011001011010 EverYouth 3 -011001011010 nonworkers 3 -011001011010 NIAAA 3 -011001011010 Holmen 3 -011001011010 Ibuprofen 3 -011001011010 amenorrhea 3 -011001011010 Calivigny 3 -011001011010 Vieques 3 -011001011010 Warehousemen 3 -011001011010 DMB&B 3 -011001011010 699.5 3 -011001011010 Uplengen 3 -011001011010 Namba 3 -011001011010 Pictionary 3 -011001011010 Panay 3 -011001011010 Pascali 3 -011001011010 resignedly 3 -011001011010 Grandmother 3 -011001011010 Isovue 3 -011001011010 GM-Europe 3 -011001011010 Pasfin 3 -011001011010 DCI 3 -011001011010 1213.10 3 -011001011010 Borachio 3 -011001011010 Barriers 3 -011001011010 CocaCola 3 -011001011010 Derain 3 -011001011010 Aeschylus 3 -011001011010 Usutu 3 -011001011010 Boito 3 -011001011010 then-Gen 3 -011001011010 Azaria 3 -011001011010 Bapco 3 -011001011010 AD/SAT 3 -011001011010 Andalusia 4 -011001011010 PACS 4 -011001011010 flashcards 4 -011001011010 WYNY 4 -011001011010 Meeschaert-Rousselle 4 -011001011010 Pernas 4 -011001011010 CP-66,248 4 -011001011010 1478 4 -011001011010 Yoli 4 -011001011010 Ouagadougou 4 -011001011010 sequins 4 -011001011010 Ruthie 4 -011001011010 Affluence 4 -011001011010 Eurocard 4 -011001011010 lentils 4 -011001011010 WCVB 4 -011001011010 Scioto 4 -011001011010 shellac 4 -011001011010 Comoros 4 -011001011010 Pilate 4 -011001011010 Pontin 4 -011001011010 Lancelot 4 -011001011010 Therapists 4 -011001011010 AD/VENT 4 -011001011010 Ingetel 4 -011001011010 Jahangir 4 -011001011010 Aarhus 4 -011001011010 Bari 4 -011001011010 PRP 4 -011001011010 Silverado 4 -011001011010 Laloux 4 -011001011010 Marrakesh 4 -011001011010 Ying 4 -011001011010 non-graduates 4 -011001011010 chlamydia 4 -011001011010 EgyptAir 4 -011001011010 AirMalta 4 -011001011010 Bulgakov 4 -011001011010 Chhoeun 4 -011001011010 Telic-Alcatel 4 -011001011010 A-J 4 -011001011010 Oculinum 4 -011001011010 Hadrian 4 -011001011010 Aalto 4 -011001011010 Aussat 4 -011001011010 Macduff 4 -011001011010 Dido 4 -011001011010 Drusilla 5 -011001011010 Bluefield 5 -011001011010 Charlies 5 -011001011010 Sinbad 5 -011001011010 Cadwallader 5 -011001011010 fistfights 5 -011001011010 Fellini 5 -011001011010 Pelo 5 -011001011010 Oudtshoorn 5 -011001011010 Cidem 5 -011001011010 nifedipine 5 -011001011010 NAPC 5 -011001011010 Maniac 5 -011001011010 Copalillo 5 -011001011010 Creon 5 -011001011010 Winterfest 5 -011001011010 Libbey-St 5 -011001011010 Aredale 5 -011001011010 Bed-Stuy 5 -011001011010 Sunds 5 -011001011010 PHLCorp. 5 -011001011010 SNCF 5 -011001011010 Sandkraal 5 -011001011010 Broadgate 5 -011001011010 Conductus 5 -011001011010 ARNA 5 -011001011010 Tygodnik 5 -011001011010 Bryanston 5 -011001011010 VAXes 5 -011001011010 Yand 5 -011001011010 Academia 5 -011001011010 Dafsa 5 -011001011010 CPR 5 -011001011010 Cxc/Bt 5 -011001011010 Tyndale 5 -011001011010 HOFI 5 -011001011010 volunteerism 5 -011001011010 WROR-FM 5 -011001011010 Hurrem 5 -011001011010 Coleridge 5 -011001011010 Donau 5 -011001011010 Kondratiev 5 -011001011010 Datsuns 5 -011001011010 VH-1 5 -011001011010 Othman 6 -011001011010 Saint-Saens 6 -011001011010 MoDo 6 -011001011010 Mombasa 6 -011001011010 clonidine 6 -011001011010 Ficorca 6 -011001011010 Caravaggio 6 -011001011010 Botticelli 6 -011001011010 fibrin 6 -011001011010 Intercorp 6 -011001011010 Sofkins 6 -011001011010 Taos 6 -011001011010 Numbulwar 6 -011001011010 Hengshui 6 -011001011010 WBAI 6 -011001011010 Berlioz 6 -011001011010 Scovel 6 -011001011010 Babs 6 -011001011010 Clinics 6 -011001011010 Hapag-Lloyd 6 -011001011010 Mogen 6 -011001011010 1620 6 -011001011010 Petron 6 -011001011010 Lili 6 -011001011010 Aguacayo 6 -011001011010 KNP 6 -011001011010 Defex-Portugal 6 -011001011010 Yenakiyevo 6 -011001011010 Lille 6 -011001011010 Remels 6 -011001011010 Cameroun 6 -011001011010 Zyrardow 6 -011001011010 Divesports 6 -011001011010 Sonangol 6 -011001011010 Marxist-Leninism 6 -011001011010 Sitka 6 -011001011010 N-CAP 6 -011001011010 Shoshone 7 -011001011010 Geoserve 7 -011001011010 Jabotinsky 7 -011001011010 TXI 7 -011001011010 Hunza 7 -011001011010 T.R. 7 -011001011010 Chekov 7 -011001011010 endometriosis 7 -011001011010 Urdu 7 -011001011010 Shylock 7 -011001011010 Dostoyevsky 7 -011001011010 Kingstree 7 -011001011010 Pozzo 7 -011001011010 Romana 7 -011001011010 WPBF 7 -011001011010 Olongapo 7 -011001011010 Bisbee 7 -011001011010 ParcPlace 7 -011001011010 2800 7 -011001011010 LIFFE 7 -011001011010 Golgo 7 -011001011010 Calabria 7 -011001011010 M25 7 -011001011010 Forestwood 7 -011001011010 Lawford 7 -011001011010 ragtime 7 -011001011010 SportsClub 8 -011001011010 Scandinavians 8 -011001011010 Offenbach 8 -011001011010 Computerworld 8 -011001011010 Anthiel 8 -011001011010 U2 8 -011001011010 Sauternes 8 -011001011010 Irkutsk 8 -011001011010 Mssrs 8 -011001011010 MCorp. 8 -011001011010 Crete 8 -011001011010 Petronas 8 -011001011010 NASSA 8 -011001011010 Ennosuke 8 -011001011010 Botshabelo 8 -011001011010 RD2 8 -011001011010 Mutlangen 8 -011001011010 ideonomy 8 -011001011010 Binfield 8 -011001011010 Nietzsche 9 -011001011010 Bobbo 9 -011001011010 job-hopping 9 -011001011010 PASOK 9 -011001011010 MacNeal 9 -011001011010 PSNH 9 -011001011010 Baden-Wuerttemberg 9 -011001011010 Wieboldt 9 -011001011010 Marcelle 9 -011001011010 ARD 9 -011001011010 Tshekedi 9 -011001011010 Alsace 9 -011001011010 pennzoil 9 -011001011010 Nanchang 9 -011001011010 Centerbank 9 -011001011010 Jalalabad 9 -011001011010 Gidget 9 -011001011010 Rachmaninoff 9 -011001011010 Spider-Man 9 -011001011010 electromagnetism 10 -011001011010 Burkina 10 -011001011010 Satanism 10 -011001011010 Chadron 10 -011001011010 Femme 10 -011001011010 Oberhausen 10 -011001011010 Adapso 10 -011001011010 Ryanair 10 -011001011010 Pertamina 10 -011001011010 IPTAY 10 -011001011010 AMCC 10 -011001011010 Papermate 10 -011001011010 Ravel 10 -011001011010 Richford 10 -011001011010 NaTec 10 -011001011010 Bhutan 10 -011001011010 Suva 11 -011001011010 LFB 11 -011001011010 Mughniyeh 11 -011001011010 Ireene 11 -011001011010 Jamshedpur 11 -011001011010 Barricada 11 -011001011010 Emprise 11 -011001011010 academe 11 -011001011010 WCIX 11 -011001011010 Uranus 11 -011001011010 Rondonia 11 -011001011010 Baku 12 -011001011010 Traer 12 -011001011010 Britian 12 -011001011010 Hylsa 12 -011001011010 carbohydrates 12 -011001011010 Orcas 12 -011001011010 Multivision 12 -011001011010 Delmas 12 -011001011010 Prokofiev 12 -011001011010 Flaubert 12 -011001011010 Allah 12 -011001011010 Voltaire 13 -011001011010 AGF 13 -011001011010 Dostoevski 13 -011001011010 Aeneas 13 -011001011010 Thoreau 13 -011001011010 Gallimard 13 -011001011010 Rhin-Rhone 13 -011001011010 Taegu 13 -011001011010 Fatah 13 -011001011010 Janacek 13 -011001011010 Confucius 13 -011001011010 Wotan 14 -011001011010 Chesterton 14 -011001011010 Marfa 14 -011001011010 Hannibal 14 -011001011010 HIV-1 14 -011001011010 Putco 14 -011001011010 Chontales 14 -011001011010 Guilin 14 -011001011010 Kakadu 14 -011001011010 Petipa 15 -011001011010 Copacabana 15 -011001011010 Ajax 15 -011001011010 Tucuman 15 -011001011010 Petrocorp 15 -011001011010 Jammu 15 -011001011010 Vermilion 15 -011001011010 Crusader 15 -011001011010 Tsukuba 16 -011001011010 then-Gov 16 -011001011010 Niger 16 -011001011010 Leadville 16 -011001011010 Bournonville 16 -011001011010 Dostoevsky 16 -011001011010 Ronda 16 -011001011010 modernity 16 -011001011010 UNESCO 16 -011001011010 Asiaweek 17 -011001011010 Pale 17 -011001011010 Donizetti 17 -011001011010 Bela 17 -011001011010 Salzgitter 17 -011001011010 Kiribati 17 -011001011010 Xiamen 17 -011001011010 Tbilisi 18 -011001011010 Jiangsu 18 -011001011010 Koversada 18 -011001011010 Riga 18 -011001011010 Lapland 18 -011001011010 Moliere 18 -011001011010 LISC 19 -011001011010 Adweek 19 -011001011010 Samcor 19 -011001011010 Chongqing 19 -011001011010 Burundi 20 -011001011010 Sarawak 20 -011001011010 Beidaihe 20 -011001011010 Cherrapunji 20 -011001011010 Kafka 20 -011001011010 Trotsky 20 -011001011010 Venango 20 -011001011010 Babette 21 -011001011010 Movietime 21 -011001011010 Batista 21 -011001011010 Dragonair 21 -011001011010 Spitball 21 -011001011010 Viedma 21 -011001011010 Bismarck 22 -011001011010 Emerge 22 -011001011010 Irian 22 -011001011010 Meyerbeer 22 -011001011010 Begajah 22 -011001011010 Provideniya 23 -011001011010 Fayrouz 23 -011001011010 Mogopa 23 -011001011010 Suriname 24 -011001011010 KIEV 24 -011001011010 Machiavelli 24 -011001011010 Ulster 25 -011001011010 Nokyo 25 -011001011010 Djibouti 25 -011001011010 CE 27 -011001011010 Wrangell 27 -011001011010 WSVN 27 -011001011010 Stravinsky 27 -011001011010 Cher 28 -011001011010 Connections 28 -011001011010 Plato 28 -011001011010 Gabon 28 -011001011010 Michelangelo 29 -011001011010 TIAA-CREF 29 -011001011010 UTA 29 -011001011010 Transylvania 30 -011001011010 Tegucigalpa 30 -011001011010 Puccini 30 -011001011010 Ciskei 31 -011001011010 Uganda 31 -011001011010 Animals 32 -011001011010 Bimini 32 -011001011010 Slovenia 33 -011001011010 Alysheba 33 -011001011010 Sodecom 34 -011001011010 Drs 34 -011001011010 Okinawa 35 -011001011010 Dresden 35 -011001011010 Feng 36 -011001011010 Palau 36 -011001011010 Cebu 37 -011001011010 Ethnos 37 -011001011010 Bucharest 38 -011001011010 Botswana 38 -011001011010 Brahms 38 -011001011010 Technicians 38 -011001011010 Satan 38 -011001011010 Indochina 39 -011001011010 FirstSouth 39 -011001011010 Nome 40 -011001011010 Luanda 41 -011001011010 Sonatrach 41 -011001011010 Braque 41 -011001011010 Khartoum 42 -011001011010 Antarctica 42 -011001011010 Surf 42 -011001011010 Acapulco 43 -011001011010 Tchaikovsky 44 -011001011010 Riyadh 44 -011001011010 Tripoli 45 -011001011010 Estonia 46 -011001011010 Jupiter 47 -011001011010 Sassy 47 -011001011010 Ankara 49 -011001011010 IBH 49 -011001011010 Swaziland 49 -011001011010 Nepal 49 -011001011010 Malawi 52 -011001011010 Bavaria 53 -011001011010 Izvestia 56 -011001011010 Poverty 58 -011001011010 Martina 60 -011001011010 JFK 62 -011001011010 Tunisia 63 -011001011010 Brasilia 63 -011001011010 Iberia 64 -011001011010 FADA 67 -011001011010 Vanuatu 72 -011001011010 ABC-TV 74 -011001011010 mankind 76 -011001011010 Christianity 76 -011001011010 Islamabad 78 -011001011010 Neptune 80 -011001011010 Takeovers 89 -011001011010 Khrushchev 89 -011001011010 Damascus 90 -011001011010 MBB 94 -011001011010 Bangladesh 97 -011001011010 Elle 97 -011001011010 Esquire 98 -011001011010 Namibia 99 -011001011010 Grenada 103 -011001011010 FDR 104 -011001011010 Havana 105 -011001011010 Picasso 105 -011001011010 Pyongyang 107 -011001011010 Zaire 108 -011001011010 Bulgaria 109 -011001011010 Chad 110 -011001011010 Beethoven 110 -011001011010 Fiji 110 -011001011010 Sudan 111 -011001011010 Mozart 112 -011001011010 Rangoon 116 -011001011010 Azerbaijan 116 -011001011010 Kenya 117 -011001011010 Basra 120 -011001011010 heaven 133 -011001011010 Pravda 149 -011001011010 Hwan 153 -011001011010 Showtime 164 -011001011010 Bolivia 165 -011001011010 Bahrain 165 -011001011010 Zimbabwe 166 -011001011010 Jamaica 167 -011001011010 MTV 169 -011001011010 Romania 178 -011001011010 Tibet 183 -011001011010 Hanoi 184 -011001011010 Peking 199 -011001011010 Czechoslovakia 208 -011001011010 Algeria 213 -011001011010 Banxquote 217 -011001011010 Ethiopia 219 -011001011010 Hitler 220 -011001011010 Burma 234 -011001011010 ours 242 -011001011010 Cambodia 254 -011001011010 Ecuador 260 -011001011010 Khomeini 265 -011001011010 Brunei 269 -011001011010 Mozambique 271 -011001011010 L.A. 273 -011001011010 Denmark 281 -011001011010 Pretoria 289 -011001011010 Haiti 295 -011001011010 Baghdad 298 -011001011010 Nigeria 298 -011001011010 Yugoslavia 315 -011001011010 Honduras 315 -011001011010 humans 333 -011001011010 Stalin 350 -011001011010 Russia 385 -011001011010 Libya 403 -011001011010 Thailand 424 -011001011010 Managua 429 -011001011010 Austria 433 -011001011010 Malaysia 440 -011001011010 Greece 462 -011001011010 Syria 466 -011001011010 Indonesia 505 -011001011010 Colombia 512 -011001011010 Norway 556 -011001011010 Hungary 630 -011001011010 Peru 645 -011001011010 Chile 653 -011001011010 Venezuela 669 -011001011010 Cuba 685 -011001011010 Turkey 769 -011001011010 Bonn 780 -011001011010 Egypt 837 -011001011010 Tehran 856 -011001011010 Kuwait 932 -011001011010 Beijing 934 -011001011010 Afghanistan 981 -011001011010 Pakistan 1014 -011001011010 Panama 1093 -011001011010 Poland 1168 -011001011010 Argentina 1234 -011001011010 Spain 1342 -011001011010 India 1406 -011001011010 Nicaragua 1765 -011001011010 Taiwan 2062 -011001011010 Iraq 2180 -011001011010 Israel 2848 -011001011010 Moscow 2944 -011001011010 Iran 5653 -011001011010 Mexico 3976 -011001011010 Brazil 3968 -011001011010 Britain 6035 -011001011010 China 4666 -011001011010 Japan 16614 -011001011011 EUROMOBILIARE 1 -011001011011 RIZZOLI-CORRIERE 1 -011001011011 Booker-McConnell 1 -011001011011 Blessit 1 -011001011011 TRANS-RESOURCES 1 -011001011011 Abood 1 -011001011011 Wagenblast 1 -011001011011 Orcagna 1 -011001011011 Laxton 1 -011001011011 Fumigalli 1 -011001011011 non-Domino 1 -011001011011 5914 1 -011001011011 Govardhan 1 -011001011011 Pissaro 1 -011001011011 Nutrial 1 -011001011011 Geha-Werke 1 -011001011011 Theodoric 1 -011001011011 Sainsury 1 -011001011011 Orantes-Hernandez 1 -011001011011 Steyr-Daimler-Puch 1 -011001011011 malldom 1 -011001011011 intergroup 1 -011001011011 Msolowa 1 -011001011011 Casch 1 -011001011011 Leybold-Heraeus 1 -011001011011 40588 1 -011001011011 Escala 1 -011001011011 quimicas 1 -011001011011 Cilea 1 -011001011011 scedule 1 -011001011011 Transatlantico 1 -011001011011 Kuboto 1 -011001011011 Almanij 1 -011001011011 Kayersberg 1 -011001011011 home-finding 2 -011001011011 natron 2 -011001011011 Absorbed 2 -011001011011 sonars 2 -011001011011 Sust 2 -011001011011 405.78 2 -011001011011 lightweights 2 -011001011011 spaciousness 2 -011001011011 18-to-1 2 -011001011011 1920-21 2 -011001011011 1353 2 -011001011011 republicanism 2 -011001011011 submariners 2 -011001011011 Harmon/Envicon 2 -011001011011 Slutsk 2 -011001011011 Conalco 2 -011001011011 1801.7 2 -011001011011 Valois 2 -011001011011 Michaelangelo 2 -011001011011 Quetta 2 -011001011011 Buckinghamshire 2 -011001011011 1313.9 2 -011001011011 Dietisa 2 -011001011011 Economizers 2 -011001011011 Bankipur 2 -011001011011 Patara 2 -011001011011 self-investigation 2 -011001011011 390,987 2 -011001011011 Reico 2 -011001011011 Pello 2 -011001011011 TCAs 2 -011001011011 recanalization 2 -011001011011 subsidiarity 2 -011001011011 RWI 2 -011001011011 Jayapura 2 -011001011011 Scriabin 2 -011001011011 Cephalonia 2 -011001011011 SYSTEMHOUSE 2 -011001011011 Narayangaon 2 -011001011011 Blueberries 2 -011001011011 Intimidation 2 -011001011011 Pennslyvania 2 -011001011011 Didier-Werke 2 -011001011011 Tauruses 2 -011001011011 omelettes 2 -011001011011 Abkhazia 2 -011001011011 154.28 2 -011001011011 Muroran 2 -011001011011 breadfruit 2 -011001011011 Gloeilampenfabrieken 2 -011001011011 1971-73 2 -011001011011 CSI 2 -011001011011 pizzerias 2 -011001011011 meteneprost 2 -011001011011 CareFirst 2 -011001011011 horehound 2 -011001011011 Amasco 2 -011001011011 ICEE-U.S.A. 2 -011001011011 Maupassant 2 -011001011011 captan 2 -011001011011 1656 2 -011001011011 Sinex 2 -011001011011 Almet/Lawnlite 2 -011001011011 AsiaSat 2 -011001011011 HoDAG 2 -011001011011 soft-edged 2 -011001011011 98.93 2 -011001011011 Unicef 2 -011001011011 Tuscola 2 -011001011011 1,502,000 2 -011001011011 Goskino 2 -011001011011 Ganalaagte 2 -011001011011 Chambertin 2 -011001011011 Laetrile 2 -011001011011 Majorca 2 -011001011011 1977-79 2 -011001011011 bearskins 2 -011001011011 LoSchiavo 2 -011001011011 Koolhaas 2 -011001011011 Meghalaya 2 -011001011011 Spas 2 -011001011011 Bukhara 2 -011001011011 audiocassettes 2 -011001011011 LOMA 2 -011001011011 Lizardi 2 -011001011011 conscientiousness 2 -011001011011 Gibralter 2 -011001011011 jawbones 2 -011001011011 manic-depression 2 -011001011011 Nicaragua. 2 -011001011011 WHEAT 2 -011001011011 Arbitech 2 -011001011011 Annabella 2 -011001011011 bullfrogs 2 -011001011011 1775-1851 2 -011001011011 Matsushige 2 -011001011011 WWV 2 -011001011011 lacquers 2 -011001011011 1975-85 2 -011001011011 CVRD 2 -011001011011 Sigma-Aldrich 2 -011001011011 Piper-Heidsieck 2 -011001011011 laundromats 2 -011001011011 Brainiac 2 -011001011011 Siasconset 2 -011001011011 Tallin 2 -011001011011 Arbon 2 -011001011011 culverts 2 -011001011011 Giotto 2 -011001011011 Europolitique 2 -011001011011 Leverkusen 2 -011001011011 Uniforms 2 -011001011011 Fennimore 2 -011001011011 Pepsico 2 -011001011011 Lessius 2 -011001011011 narco-terror 2 -011001011011 Metroliners 2 -011001011011 Wolters-Kluwer 2 -011001011011 28-0 2 -011001011011 Neosho 2 -011001011011 Claritas 2 -011001011011 Ostracism 2 -011001011011 Montmartre 2 -011001011011 lobstering 2 -011001011011 taxicabs 2 -011001011011 Saint-Saen 2 -011001011011 fauvism 2 -011001011011 97.45 2 -011001011011 Hydroxyapatite 2 -011001011011 CoNEP 2 -011001011011 union-bashing 2 -011001011011 necrophilia 2 -011001011011 salutatorians 2 -011001011011 1782.6 2 -011001011011 Korpinen 2 -011001011011 Shelburne 2 -011001011011 Metaleurop 2 -011001011011 eyedroppers 2 -011001011011 Tyrants 2 -011001011011 Paty 2 -011001011011 Crecy 2 -011001011011 Tlalnepantla 2 -011001011011 Schocken 2 -011001011011 Bintulu 2 -011001011011 Guetersloh 2 -011001011011 BEEP 2 -011001011011 countertops 3 -011001011011 Io 3 -011001011011 Verdun 3 -011001011011 Nuprin 3 -011001011011 self-enrichment 3 -011001011011 Printex 3 -011001011011 Otolaryngology 3 -011001011011 bifocals 3 -011001011011 l989 3 -011001011011 Paolina 3 -011001011011 Cosenza 3 -011001011011 Beaune 3 -011001011011 Citicorp. 3 -011001011011 Maco-Meudon 3 -011001011011 Ba1 3 -011001011011 MSH 3 -011001011011 Skinker 3 -011001011011 STPRM 3 -011001011011 Grafil 3 -011001011011 Shiraz 3 -011001011011 Swahili 3 -011001011011 destitution 3 -011001011011 AGP 3 -011001011011 1704 3 -011001011011 Amper 3 -011001011011 Carajas 3 -011001011011 Pastine 3 -011001011011 4900 3 -011001011011 ATLA 3 -011001011011 Chamblee 3 -011001011011 Hanomag 3 -011001011011 Khabarovsk 3 -011001011011 disfigurement 3 -011001011011 Potchefstroom 3 -011001011011 Dural 3 -011001011011 SBKKVs 3 -011001011011 Fritos 3 -011001011011 Butner 3 -011001011011 Flaekt 3 -011001011011 Geha 3 -011001011011 Altair 3 -011001011011 TFP 3 -011001011011 Disctronics 3 -011001011011 SLCMs 3 -011001011011 Munakata 3 -011001011011 Morisot 3 -011001011011 MIRAs 3 -011001011011 Klytemnestra 3 -011001011011 Worriers 3 -011001011011 Orda 3 -011001011011 Guadix 3 -011001011011 Arabist 3 -011001011011 Pietermartizburg 3 -011001011011 Pescosolido 3 -011001011011 Canadiana 3 -011001011011 D-marks 3 -011001011011 Pens 3 -011001011011 whirlpools 3 -011001011011 1937-38 3 -011001011011 GAMBRO 3 -011001011011 Homosexuality 3 -011001011011 society. 3 -011001011011 Macedonia 3 -011001011011 goldenrod 3 -011001011011 Calvinism 3 -011001011011 Elscint 3 -011001011011 Italbonder 3 -011001011011 readmissions 3 -011001011011 Tomsk 3 -011001011011 WMAQ-AM 3 -011001011011 CGB 3 -011001011011 Driftwood 3 -011001011011 Netmap 3 -011001011011 yogurts 3 -011001011011 Tremec 3 -011001011011 Leyte 3 -011001011011 Sikkim 3 -011001011011 Niigata 3 -011001011011 Fortran 3 -011001011011 Julietta 3 -011001011011 cacao 3 -011001011011 SICA 3 -011001011011 Zales 3 -011001011011 Megadeth 3 -011001011011 Grand-Mere 3 -011001011011 Husang 3 -011001011011 Urumqi 3 -011001011011 glossolalia 3 -011001011011 Arsace 3 -011001011011 Airlease 3 -011001011011 Hemotec 3 -011001011011 Bolshevism 3 -011001011011 jail. 3 -011001011011 Ivanek 3 -011001011011 Sade 3 -011001011011 Hunding 3 -011001011011 Kirkwall 3 -011001011011 Persigny 3 -011001011011 manliness 3 -011001011011 Lucca 3 -011001011011 2104.47 3 -011001011011 Sherbrooke 3 -011001011011 11:00-23:00 3 -011001011011 arteriosclerosis 3 -011001011011 TV-AM 3 -011001011011 fear-mongering 3 -011001011011 1819 3 -011001011011 EGAT 3 -011001011011 asylums 3 -011001011011 KZKC 3 -011001011011 WRDW 3 -011001011011 EGO 3 -011001011011 Winkfield 4 -011001011011 Greentree 4 -011001011011 Lodz 4 -011001011011 Humulin 4 -011001011011 Agrimont 4 -011001011011 Morelia 4 -011001011011 Breslau 4 -011001011011 Madero 4 -011001011011 Tangier 4 -011001011011 Obstetrics 4 -011001011011 18th- 4 -011001011011 concussions 4 -011001011011 Kumsan 4 -011001011011 Racal-Millicom 4 -011001011011 Toontown 4 -011001011011 paleface 4 -011001011011 E-2 4 -011001011011 ICEE-USA 4 -011001011011 Prouvost 4 -011001011011 Oppermann 4 -011001011011 pistachios 4 -011001011011 Preforce 4 -011001011011 Teljoy 4 -011001011011 shad 4 -011001011011 SPA 4 -011001011011 Gotagruppen 4 -011001011011 2181.19 4 -011001011011 Estructura 4 -011001011011 Azusa 4 -011001011011 schoolgirls 4 -011001011011 MacUser 4 -011001011011 Samir 4 -011001011011 Machlett 4 -011001011011 AsiAm 4 -011001011011 Mazatlan 4 -011001011011 lampshades 4 -011001011011 PURINA 4 -011001011011 Khadijeh 4 -011001011011 Chandigarh 4 -011001011011 opiates 4 -011001011011 analogues 4 -011001011011 Lvov 4 -011001011011 Guanajuato 4 -011001011011 Kampala 4 -011001011011 irresolution 4 -011001011011 Malaya 4 -011001011011 Grundleger 4 -011001011011 primogeniture 4 -011001011011 moneylenders 4 -011001011011 Gotland 4 -011001011011 Shantou 4 -011001011011 Muscat 4 -011001011011 Telemann 4 -011001011011 Skiatook 4 -011001011011 Milico 4 -011001011011 presorted 4 -011001011011 Oreos 4 -011001011011 Liberte 4 -011001011011 Praeger 4 -011001011011 Sabres 5 -011001011011 Channelview 5 -011001011011 Bulusan 5 -011001011011 Wittenberg 5 -011001011011 Cabs 5 -011001011011 daffodils 5 -011001011011 M-0 5 -011001011011 Kassala 5 -011001011011 Cozumel 5 -011001011011 Gaul 5 -011001011011 Balchem 5 -011001011011 otolaryngologists 5 -011001011011 NuCable 5 -011001011011 1981-1984 5 -011001011011 Hagemeyer 5 -011001011011 Polanglia 5 -011001011011 Archaeology 5 -011001011011 Keflex 5 -011001011011 Ibsen 5 -011001011011 Column 5 -011001011011 Lanai 5 -011001011011 Tigre 5 -011001011011 Takara-Gumi 5 -011001011011 TCB 5 -011001011011 Zastava 5 -011001011011 Gulfport 5 -011001011011 PETROFINA 5 -011001011011 VISN 5 -011001011011 Karonite 5 -011001011011 WBZ 5 -011001011011 Sibelius 5 -011001011011 Correggio 5 -011001011011 Marad 5 -011001011011 Thal 5 -011001011011 Shackleton 5 -011001011011 Timbuktu 5 -011001011011 Tortola 6 -011001011011 Blitar 6 -011001011011 Nanking 6 -011001011011 Datatronic 6 -011001011011 Maud 6 -011001011011 Szczecin 6 -011001011011 Makro 6 -011001011011 Licensintorg 6 -011001011011 Pisa 6 -011001011011 Innovi 6 -011001011011 EPRI 6 -011001011011 Aucayacu 6 -011001011011 photovoltaics 6 -011001011011 Tigray 6 -011001011011 Recordati 6 -011001011011 Zilber 6 -011001011011 '75 6 -011001011011 Steubenville 6 -011001011011 Nyborg 6 -011001011011 Matagalpa 6 -011001011011 dyestuffs 6 -011001011011 Katowice 6 -011001011011 BSI 6 -011001011011 Sardinia 6 -011001011011 Polangui 6 -011001011011 Tacloban 6 -011001011011 Nucleus 6 -011001011011 Australasia 6 -011001011011 lawnmowers 6 -011001011011 2159.85 6 -011001011011 Matane 6 -011001011011 gastronomy 6 -011001011011 2660.66 6 -011001011011 Darra 6 -011001011011 1,067 6 -011001011011 Optrotech 6 -011001011011 Byelorussia 6 -011001011011 Gravesend 6 -011001011011 Amer 6 -011001011011 Visnews 6 -011001011011 Omnipaque 6 -011001011011 PKbanken 6 -011001011011 Barra 6 -011001011011 hammocks 7 -011001011011 1844 7 -011001011011 WTVJ-TV 7 -011001011011 Trier 7 -011001011011 1979-81 7 -011001011011 self-worth 7 -011001011011 Amef 7 -011001011011 Total-Cie 7 -011001011011 KLEINWORT 7 -011001011011 Spie-Batignolles 7 -011001011011 Hinduism 7 -011001011011 quiche 7 -011001011011 Katmandu 8 -011001011011 Editions 8 -011001011011 CIM 8 -011001011011 2158.96 8 -011001011011 CFA 8 -011001011011 Ampersand 8 -011001011011 Artois 8 -011001011011 Giessen 8 -011001011011 Zeinab 8 -011001011011 Dakar 8 -011001011011 Hallandale 8 -011001011011 Jeumont-Schneider 8 -011001011011 Grasse 8 -011001011011 Wroclaw 8 -011001011011 1837 8 -011001011011 Micronesia 8 -011001011011 Antigua 8 -011001011011 Patagonia 9 -011001011011 Creditanstalt-Bankverein 9 -011001011011 mothballs 9 -011001011011 Ampol 9 -011001011011 Essen 9 -011001011011 Penta 9 -011001011011 Dahlia 9 -011001011011 deconstruction 9 -011001011011 safes 9 -011001011011 MONIER 9 -011001011011 Furlett 9 -011001011011 Nablus 9 -011001011011 '29 9 -011001011011 Petromed 9 -011001011011 crawfish 9 -011001011011 Alcasa 9 -011001011011 Venalum 9 -011001011011 farsightedness 10 -011001011011 Qom 10 -011001011011 seaweed 10 -011001011011 Lesotho 10 -011001011011 Ahab 10 -011001011011 Bosnia 10 -011001011011 Volgograd 10 -011001011011 Moldavia 10 -011001011011 Rwanda 10 -011001011011 pastels 10 -011001011011 Mallightco 10 -011001011011 PageMaker 10 -011001011011 Aruba 10 -011001011011 hibernation 11 -011001011011 Peaudouce 11 -011001011011 Xanax 11 -011001011011 Guernsey 11 -011001011011 Juneau 12 -011001011011 Mauritius 12 -011001011011 Chapelle-Darblay 12 -011001011011 half-truths 13 -011001011011 Croatia 13 -011001011011 Manchuria 13 -011001011011 urokinase 13 -011001011011 Sumgait 13 -011001011011 Minneapolis-St 13 -011001011011 Madagascar 13 -011001011011 Canam-Manac 14 -011001011011 IHI 15 -011001011011 Enasa 15 -011001011011 Cadiz 15 -011001011011 Tricil 15 -011001011011 Capri 15 -011001011011 Borneo 15 -011001011011 insomnia 16 -011001011011 Ebano 16 -011001011011 Nagasaki 16 -011001011011 Negros 16 -011001011011 asbestosis 16 -011001011011 1738.74 16 -011001011011 Persia 17 -011001011011 dizziness 18 -011001011011 Togo 18 -011001011011 Sicily 18 -011001011011 Appalachia 19 -011001011011 disrepair 20 -011001011011 Albania 20 -011001011011 Cameroon 21 -011001011011 Kalgoorlie 22 -011001011011 Liberia 22 -011001011011 Quito 22 -011001011011 Cobepa 23 -011001011011 Sidon 23 -011001011011 Me. 23 -011001011011 Valhalla 24 -011001011011 Quilali 24 -011001011011 Sumatra 24 -011001011011 Lithuania 24 -011001011011 Gujarat 25 -011001011011 Barbados 26 -011001011011 Serbia 27 -011001011011 Malta 28 -011001011011 Rhodesia 28 -011001011011 Mongolia 28 -011001011011 Latvia 28 -011001011011 Macao 28 -011001011011 Greenland 29 -011001011011 Somalia 29 -011001011011 Euromobiliare 30 -011001011011 Surgeons 31 -011001011011 Trinidad 31 -011001011011 Liechtenstein 32 -011001011011 Kosar 32 -011001011011 CSF 32 -011001011011 Cia 32 -011001011011 Marsalis 35 -011001011011 Senegal 35 -011001011011 HILL 39 -011001011011 Monaco 39 -011001011011 Yerevan 39 -011001011011 Tanzania 39 -011001011011 Lhasa 40 -011001011011 Perrier 43 -011001011011 Qantas 44 -011001011011 Laos 54 -011001011011 Eritrea 56 -011001011011 Qatar 57 -011001011011 Paraguay 60 -011001011011 Ghana 78 -011001011011 Ing 85 -011001011011 academia 87 -011001011011 Zambia 95 -011001011011 Armenia 97 -011001011011 Morocco 110 -011001011011 Oman 115 -011001011011 Siberia 115 -011001011011 Midi 156 -011001011011 Finland 251 -011001011011 Portugal 283 -011001011011 Scotland 332 -011001011011 Angola 433 -011001011011 Ireland 516 -011001011011 Hawaii 563 -011001011011 Belgium 687 -011001011011 Lebanon 992 -011001011011 Sweden 1112 -011001011011 Asia 1492 -011001011011 Switzerland 1840 -011001011011 Italy 2028 -011001011011 Australia 2373 -011001011011 Europe 7539 -011001011011 Canada 8247 -011001011011 France 4313 -011001011100 Coast-head-on-in 1 -011001011100 to- 1 -011001011100 Deptford 1 -011001011100 Quoddy 1 -011001011100 Homilies 1 -011001011100 German-trained 1 -011001011100 Greenbush 1 -011001011100 Raglan 1 -011001011100 SBA-approved 1 -011001011100 Chinaja 1 -011001011100 Pointers 1 -011001011100 Coast-oriented 1 -011001011100 Coxsackie 1 -011001011100 1914-1922 1 -011001011100 German-Swiss 1 -011001011100 Coast-shuttle 1 -011001011100 knowingness 1 -011001011100 Siders 1 -011001011100 Jo-ann 1 -011001011100 Prussians 1 -011001011100 Texass 1 -011001011100 minster 2 -011001011100 Stroudsburg 2 -011001011100 Turkestan 2 -011001011100 aerie 2 -011001011100 Redonda 2 -011001011100 Tawas 2 -011001011100 Boylston 2 -011001011100 Germs 2 -011001011100 Lb 2 -011001011100 sashay 2 -011001011100 Razzak 3 -011001011100 Kilbride 3 -011001011100 Levingston 3 -011001011100 Pinopolis 4 -011001011100 lookers 4 -011001011100 Sheffer 4 -011001011100 Sak 5 -011001011100 Granby 5 -011001011100 Breaks 5 -011001011100 Indies-based 6 -011001011100 Fishkill 6 -011001011100 Virgina 6 -011001011100 Anglia 7 -011001011100 Kootenay 8 -011001011100 Covina 8 -011001011100 Berliners 9 -011001011100 Fitzsimons 9 -011001011100 Ingham 9 -011001011100 Snowe 10 -011001011100 LB 10 -011001011100 Nyack 10 -011001011100 Midlands 13 -011001011100 Bengal 13 -011001011100 Roxbury 13 -011001011100 Virginian 14 -011001011100 Coker 15 -011001011100 Grill 18 -011001011100 Virginians 20 -011001011100 Indies 22 -011001011100 Weymouth 22 -011001011100 NewVector 27 -011001011100 Liverpool 34 -011001011100 Dame 66 -011001011100 coasts 86 -011001011100 End 129 -011001011100 Point-Pepperell 139 -011001011100 Bloc 141 -011001011100 Chester 169 -011001011100 Side 224 -011001011100 Point 596 -011001011100 Berlin 657 -011001011100 Germans 946 -011001011100 Virginia 1422 -011001011100 Coast 1535 -011001011100 Germany 6507 -011001011101 German-mark 1 -011001011101 1.7159 1 -011001011101 1.6791 1 -011001011101 1.6870 1 -011001011101 40-square-mile 1 -011001011101 836.25 1 -011001011101 1.7360 1 -011001011101 173.70 1 -011001011101 21-8 1 -011001011101 18,350 1 -011001011101 1.6560 1 -011001011101 1.6970 1 -011001011101 1.7205 1 -011001011101 31,890 1 -011001011101 3.4395 1 -011001011101 1.7080 1 -011001011101 1.8935 1 -011001011101 Westphalian 1 -011001011101 1.8397 1 -011001011101 592.5 1 -011001011101 1.6587 1 -011001011101 1.6354 1 -011001011101 1.75-to-1.9 1 -011001011101 vulgarians 1 -011001011101 2.9795 1 -011001011101 2.9800 1 -011001011101 1127.5 1 -011001011101 1.8459 1 -011001011101 645.8 1 -011001011101 1.8553 1 -011001011101 1.8827 1 -011001011101 2.0125 1 -011001011101 often-disadvantaged 1 -011001011101 1.8575 1 -011001011101 sterling-Deutsche 1 -011001011101 1.8755-1.8830 1 -011001011101 Roure 1 -011001011101 Newscasts 1 -011001011101 1.8380 1 -011001011101 1.8420 1 -011001011101 1.8560 1 -011001011101 franc-short 1 -011001011101 Gondroms 1 -011001011101 3.2408 1 -011001011101 1.8664 1 -011001011101 3.1300 1 -011001011101 3.1600 1 -011001011101 3.1255 1 -011001011101 1.8493 1 -011001011101 dollar-short 1 -011001011101 1.8525-1.8530 1 -011001011101 Azerbaidzhanskaya 1 -011001011101 2.9967 1 -011001011101 1.7490 1 -011001011101 16,600 1 -011001011101 2.9990 1 -011001011101 breadboard-sized 1 -011001011101 1,357 1 -011001011101 burial-industry 1 -011001011101 3.4305 1 -011001011101 1139 1 -011001011101 3.1325 1 -011001011101 1.8040 1 -011001011101 1.65-1.70 1 -011001011101 1.7926 1 -011001011101 stock-for-wages 1 -011001011101 1.8233 1 -011001011101 units-for-stock 1 -011001011101 1.783 1 -011001011101 1.785 1 -011001011101 2.0290 1 -011001011101 2.0119 1 -011001011101 1.67-point 1 -011001011101 1.80-to-1.83 1 -011001011101 7,590,000 1 -011001011101 21,444 1 -011001011101 21-2 1 -011001011101 fast-maturing 1 -011001011101 1.8268 1 -011001011101 Herstigte 1 -011001011101 monomaniacal 1 -011001011101 stock-for-debenture 1 -011001011101 percentage-point-wider 1 -011001011101 1.8108 1 -011001011101 Band-Aidlike 1 -011001011101 Coast-to-Hawaii 1 -011001011101 Janeiro-based 1 -011001011101 52.20 1 -011001011101 legal-alien 1 -011001011101 1.6623 1 -011001011101 Mexcian 1 -011001011101 71.58 1 -011001011101 1.6022 1 -011001011101 1.6293 1 -011001011101 34-48 1 -011001011101 709.50 1 -011001011101 1.9173 1 -011001011101 alu 1 -011001011101 177.50 1 -011001011101 2.9534 1 -011001011101 1.7990 1 -011001011101 721.75 1 -011001011101 1.9760 1 -011001011101 6.4705 1 -011001011101 1.6417 1 -011001011101 6-for-1-stock 1 -011001011101 2.0169 1 -011001011101 2.0265 1 -011001011101 KSJO 1 -011001011101 717.52 1 -011001011101 1,635 1 -011001011101 2.9679 1 -011001011101 1.6990 1 -011001011101 3.1900 1 -011001011101 5,675 1 -011001011101 33.90 1 -011001011101 3.1908 1 -011001011101 3.1826 1 -011001011101 9,780 1 -011001011101 bid/ask 1 -011001011101 1,512 1 -011001011101 1.7035 1 -011001011101 3.1282 1 -011001011101 10,190 1 -011001011101 1.9620 1 -011001011101 2.0574 1 -011001011101 1.6697 1 -011001011101 1.9345 1 -011001011101 16,410 1 -011001011101 3.0991 1 -011001011101 3.1041 1 -011001011101 3.1450 1 -011001011101 3.1800 1 -011001011101 3.1384 1 -011001011101 1.720 1 -011001011101 3.763 1 -011001011101 1.7180 1 -011001011101 6,825 1 -011001011101 2,497 1 -011001011101 3.0851 1 -011001011101 3.1040 1 -011001011101 1.6994 1 -011001011101 1.7026 1 -011001011101 579.6 1 -011001011101 1.7168 1 -011001011101 1.7269 1 -011001011101 3.1053 1 -011001011101 1.7066 1 -011001011101 1.7215 1 -011001011101 1.7280 1 -011001011101 5,505 1 -011001011101 3.1063 1 -011001011101 2.9985 1 -011001011101 1.6907 1 -011001011101 1.6914 1 -011001011101 1.9845 1 -011001011101 9,077 1 -011001011101 1.9675 1 -011001011101 3.1227 1 -011001011101 3.1077 1 -011001011101 2.0040 1 -011001011101 1.6565 1 -011001011101 1.6664 1 -011001011101 35.16 1 -011001011101 3.090 1 -011001011101 244.30 1 -011001011101 2.9938 1 -011001011101 7,550 1 -011001011101 seven-minutes-to-go 1 -011001011101 3.0950 1 -011001011101 1.9750 1 -011001011101 3.0818 1 -011001011101 1.9783 1 -011001011101 1.9590 1 -011001011101 1.6692 1 -011001011101 330.00 1 -011001011101 late-hours 1 -011001011101 10,005 1 -011001011101 3.0930 1 -011001011101 1.5615 1 -011001011101 1.6899 1 -011001011101 3.0836 1 -011001011101 3.0872 1 -011001011101 1.6649 1 -011001011101 1.6701 1 -011001011101 Luristanian 1 -011001011101 PanTurkic 1 -011001011101 30,381 1 -011001011101 1.9780 1 -011001011101 ago-favored 1 -011001011101 Pan-Turkic 1 -011001011101 1.6933 1 -011001011101 3.1252 1 -011001011101 German-advised 1 -011001011101 1.6678 1 -011001011101 1.6931 1 -011001011101 loss-leader 1 -011001011101 1.6850-1.7000 1 -011001011101 3.1434 1 -011001011101 3.1062 1 -011001011101 3.0807 1 -011001011101 1.9940 1 -011001011101 3.15-3.20 1 -011001011101 33-point 1 -011001011101 Deborra-Lee 1 -011001011101 Utd 1 -011001011101 1.8370 1 -011001011101 1.8410 1 -011001011101 Lumberjacks 1 -011001011101 1.8822 1 -011001011101 1.9570 1 -011001011101 3.2038 1 -011001011101 3.2150 1 -011001011101 9,750 1 -011001011101 1.9050 1 -011001011101 1.8837 1 -011001011101 1.8810 1 -011001011101 2-tie 1 -011001011101 Kemptville 1 -011001011101 1.8872 1 -011001011101 1.8517 1 -011001011101 1.5816 1 -011001011101 BBMB 1 -011001011101 1.9325 1 -011001011101 1.8540 1 -011001011101 1.8965 1 -011001011101 1.9204 1 -011001011101 1.8587-to-1.8980 1 -011001011101 1.5620 1 -011001011101 3.1665 1 -011001011101 less-endowed 1 -011001011101 3.0760 1 -011001011101 3.0645 1 -011001011101 32,020 1 -011001011101 1.85-2.00 1 -011001011101 Highliner 1 -011001011101 1.9010 1 -011001011101 24,110 1 -011001011101 1,857 1 -011001011101 1.8980 1 -011001011101 1.9045 1 -011001011101 1.9283 1 -011001011101 1.9300 1 -011001011101 265,550 1 -011001011101 1.8958 1 -011001011101 2.9788 1 -011001011101 1.9185 1 -011001011101 1.9060 1 -011001011101 1.6985 1 -011001011101 1.60-to-1.63 1 -011001011101 1.83-1.85 1 -011001011101 Berlin-Frankfurt 1 -011001011101 1.7865 1 -011001011101 1.7793 1 -011001011101 Dame-Michigan 1 -011001011101 1.9327 1 -011001011101 Communist-made 1 -011001011101 Duphar 1 -011001011101 NORMAN 1 -011001011101 1.7241 1 -011001011101 290.2 1 -011001011101 1.7468 1 -011001011101 1.7380 1 -011001011101 1.9650 1 -011001011101 3.0785 1 -011001011101 1.7612 1 -011001011101 1.9130 1 -011001011101 1.8855 1 -011001011101 5,660 1 -011001011101 Titters 1 -011001011101 1.6310 1 -011001011101 1.9450 1 -011001011101 1.9515 1 -011001011101 1.9315 1 -011001011101 1.9425 1 -011001011101 1.6369 1 -011001011101 1.6269 1 -011001011101 500.00 1 -011001011101 516.00 1 -011001011101 1.9358 1 -011001011101 1.8967 2 -011001011101 1,462 2 -011001011101 German-Japanese 2 -011001011101 1.8760 2 -011001011101 1.8260 2 -011001011101 1.6880 2 -011001011101 briar 2 -011001011101 1.6943 2 -011001011101 1.8140 2 -011001011101 1.8008 2 -011001011101 debt-for-nature 2 -011001011101 ditto 2 -011001011101 1.9775 2 -011001011101 1.7935 2 -011001011101 2.0005 2 -011001011101 union-negotiated 2 -011001011101 8,060 2 -011001011101 Provincie 2 -011001011101 1.9550 2 -011001011101 2.0203 2 -011001011101 3,275 2 -011001011101 1.900 2 -011001011101 1.7650 2 -011001011101 1.9500 2 -011001011101 1.9150 2 -011001011101 Datahand 2 -011001011101 1.7200 2 -011001011101 1.7300 2 -011001011101 1.7851 2 -011001011101 1.7496 2 -011001011101 1.7608 2 -011001011101 1.7045 2 -011001011101 debt-for-stock 2 -011001011101 1.7178 2 -011001011101 1.7001 2 -011001011101 1.7260 2 -011001011101 Kitaoji 2 -011001011101 1.6668 2 -011001011101 1.6550 2 -011001011101 1.7264 2 -011001011101 1.7000 2 -011001011101 1.8423 2 -011001011101 385.5 2 -011001011101 1.8508 2 -011001011101 1.8485 2 -011001011101 1.8670 2 -011001011101 1.8236 2 -011001011101 253.50 2 -011001011101 385.50 2 -011001011101 1.8440 2 -011001011101 1.60-1.90 2 -011001011101 1.7565 2 -011001011101 3.1250 2 -011001011101 1,553 2 -011001011101 3.1119 2 -011001011101 3.1500 2 -011001011101 3.1385 2 -011001011101 1.8840 2 -011001011101 3.1740 2 -011001011101 1.6193 2 -011001011101 5,971 2 -011001011101 1.6724 2 -011001011101 1.6222 2 -011001011101 1.9230 2 -011001011101 Point-Stevens 2 -011001011101 1.80-1.90 2 -011001011101 1.6853 2 -011001011101 1.8730 2 -011001011101 1.6796 2 -011001011101 1.8430 2 -011001011101 1.8475 2 -011001011101 657.5 2 -011001011101 Haddam 2 -011001011101 3.1755 2 -011001011101 German-owned 2 -011001011101 1.6823 2 -011001011101 1.9025 2 -011001011101 1.70-to-1.90 2 -011001011101 1.9260 2 -011001011101 24000 2 -011001011101 3,322 2 -011001011101 1.8652 2 -011001011101 1.9810 3 -011001011101 1.7764 3 -011001011101 1.9400 3 -011001011101 5,460 3 -011001011101 1.9575 3 -011001011101 commodity-linked 3 -011001011101 1.9647 3 -011001011101 5,005 3 -011001011101 1.7165 3 -011001011101 1.6905 3 -011001011101 1.7290 3 -011001011101 1.6945 3 -011001011101 1.7108 3 -011001011101 1.7201 3 -011001011101 1.7328 3 -011001011101 1.7040 3 -011001011101 1.7345 3 -011001011101 1.7278 3 -011001011101 1.7136 3 -011001011101 1.7008 3 -011001011101 1.7145 3 -011001011101 1.7015 3 -011001011101 1.7063 3 -011001011101 1.6832 3 -011001011101 1.7966 3 -011001011101 1.8443 3 -011001011101 1.7821 3 -011001011101 1.6928 3 -011001011101 1.8217 3 -011001011101 1.7203 3 -011001011101 1.7067 3 -011001011101 1.7143 3 -011001011101 1.7541 3 -011001011101 1.8006 3 -011001011101 1.8551 3 -011001011101 1.6894 3 -011001011101 1.8782 3 -011001011101 1.8778 3 -011001011101 1.8767 3 -011001011101 1.8437 3 -011001011101 1.8804 3 -011001011101 1.6328 3 -011001011101 1.6278 3 -011001011101 1.7275 3 -011001011101 1.6897 3 -011001011101 1.6675 3 -011001011101 1,915 3 -011001011101 1.8461 3 -011001011101 1.8389 3 -011001011101 1.8590 3 -011001011101 1.8426 3 -011001011101 1.6782 3 -011001011101 1.6315 3 -011001011101 1.8786 3 -011001011101 1.8756 3 -011001011101 1.9350 3 -011001011101 3.3303 3 -011001011101 1.8773 3 -011001011101 1.6375 3 -011001011101 1.8568 3 -011001011101 1.8483 3 -011001011101 1.8584 3 -011001011101 1.8431 3 -011001011101 1.8418 3 -011001011101 1.8463 3 -011001011101 1.8447 3 -011001011101 1.8990 3 -011001011101 Coast-based 3 -011001011101 1.8525 3 -011001011101 1.9075 3 -011001011101 1.8744 3 -011001011101 1.8770 3 -011001011101 1.8820 3 -011001011101 1.8960 3 -011001011101 1.8816 3 -011001011101 1.8996 3 -011001011101 1.9166 3 -011001011101 1.8806 3 -011001011101 1.8533 3 -011001011101 1.8763 3 -011001011101 1.8893 3 -011001011101 1.8678 3 -011001011101 1.8741 3 -011001011101 1.7785 3 -011001011101 1.8208 3 -011001011101 1.7713 3 -011001011101 1.8363 3 -011001011101 Macedonian 3 -011001011101 1.8736 3 -011001011101 1.6729 3 -011001011101 1.7890 4 -011001011101 1.8665 4 -011001011101 2.000 4 -011001011101 1.8000 4 -011001011101 1.8395 4 -011001011101 1.8218 4 -011001011101 1.7166 4 -011001011101 1.9120 4 -011001011101 1.8726 4 -011001011101 1.9100 4 -011001011101 1.9408 4 -011001011101 1.6635 4 -011001011101 1.7550 4 -011001011101 1.9563 4 -011001011101 1.8548 4 -011001011101 1.7500 4 -011001011101 1.7991 4 -011001011101 1.7365 4 -011001011101 1.8783 4 -011001011101 1.7789 4 -011001011101 1.8709 4 -011001011101 1.8570 4 -011001011101 1.8658 4 -011001011101 1.7266 4 -011001011101 1.8490 4 -011001011101 1.9405 4 -011001011101 1.8115 4 -011001011101 1.8823 4 -011001011101 German-built 4 -011001011101 Arthurian 4 -011001011101 1.8610 4 -011001011101 1.9435 4 -011001011101 1.8080 4 -011001011101 1.8867 4 -011001011101 1.8890 4 -011001011101 1.9883 4 -011001011101 share-and-asset 4 -011001011101 1.8713 4 -011001011101 1.9485 5 -011001011101 1.7428 5 -011001011101 1.9430 5 -011001011101 1.8215 5 -011001011101 1.7458 5 -011001011101 1.7531 5 -011001011101 1.7893 5 -011001011101 1.7355 5 -011001011101 1.8875 5 -011001011101 1.8847 5 -011001011101 1.9162 5 -011001011101 1.8680 5 -011001011101 1.8768 5 -011001011101 1.8813 5 -011001011101 1.8588 5 -011001011101 1.8873 5 -011001011101 1.9200 5 -011001011101 1.7888 5 -011001011101 1.7733 5 -011001011101 1.7228 5 -011001011101 1.8545 5 -011001011101 1.70-1.90 5 -011001011101 2,975 5 -011001011101 1.7800 5 -011001011101 1.8975 5 -011001011101 1.8510 5 -011001011101 1.9705 5 -011001011101 1.9700 5 -011001011101 1.9360 5 -011001011101 1.9633 5 -011001011101 1.9866 5 -011001011101 1.8400 5 -011001011101 1.9950 5 -011001011101 1.9863 5 -011001011101 1.7310 5 -011001011101 1.9577 5 -011001011101 1.8690 5 -011001011101 1.8648 5 -011001011101 1.9530 5 -011001011101 1.9520 5 -011001011101 1.8950 6 -011001011101 1.9250 6 -011001011101 1.9544 6 -011001011101 1.9668 6 -011001011101 1.9800 6 -011001011101 1.8925 6 -011001011101 1.8793 6 -011001011101 1.8830 6 -011001011101 2,675 6 -011001011101 1.9510 6 -011001011101 3,735 6 -011001011101 1.9545 6 -011001011101 1.8938 6 -011001011101 2.0475 7 -011001011101 1.5630 7 -011001011101 1.8900 7 -011001011101 1.9080 7 -011001011101 German-made 7 -011001011101 1.8795 7 -011001011101 German-based 7 -011001011101 1.9660 7 -011001011101 1.8794 7 -011001011101 1.9755 8 -011001011101 1.9070 8 -011001011101 1.8200 9 -011001011101 1.9000 9 -011001011101 1.8620 9 -011001011101 1.8805 9 -011001011101 1.9395 10 -011001011101 1.8550 11 -011001011101 1.8800 12 -011001011101 1.8500 14 -011001011101 TED 14 -011001011101 1.8700 15 -011001011101 Germany-based 17 -011001011101 high-water 22 -011001011101 German 7173 -011001011101 deutsche 47 -011001011110 Kong. 1 -011001011110 Abdulkarim 1 -011001011110 Acuna 1 -011001011110 African-born 1 -011001011110 kong 1 -011001011110 Province/Shuangcheng 1 -011001011110 Belridge 1 -011001011110 Kong-Taiwanese 1 -011001011110 Ndunduma 1 -011001011110 Kalinga 1 -011001011110 Royalton 1 -011001011110 Fallsburg 1 -011001011110 Nian 1 -011001011110 Plainsfield 1 -011001011110 Waziristan 1 -011001011110 Payola 1 -011001011110 Abdol-Karim 1 -011001011110 log-cutting 1 -011001011110 African-ruled 1 -011001011110 African-appointed 1 -011001011110 Fengs 1 -011001011110 Shuna 1 -011001011110 +15.1 1 -011001011110 Zhuang 1 -011001011110 commercial-litigation 1 -011001011110 Africa-controlled 1 -011001011110 African-equipped 1 -011001011110 Yorkshire-based 1 -011001011110 Khruschev 1 -011001011110 Ruholloh 1 -011001011110 Eldfisk 1 -011001011110 African-owned 2 -011001011110 Boumedienne 2 -011001011110 African-related 2 -011001011110 Leong 2 -011001011110 Africa. 2 -011001011110 Kong-originating 2 -011001011110 Mississipi 2 -011001011110 Merrillville 2 -011001011110 Porch 2 -011001011110 Hollywood-based 3 -011001011110 Carolina-based 3 -011001011110 Dakotan 3 -011001011110 Khomeni 3 -011001011110 Carolinian 3 -011001011110 Africa-backed 3 -011001011110 Africa-based 3 -011001011110 Badalamenti 3 -011001011110 Trang 3 -011001011110 Africa-linked 3 -011001011110 Artery 3 -011001011110 Kavala 5 -011001011110 Liaoning 5 -011001011110 Pedde 5 -011001011110 Avenues 5 -011001011110 Mechanik 5 -011001011110 Choo 5 -011001011110 Kong-dollar 7 -011001011110 Sulawesi 7 -011001011110 Carolinians 7 -011001011110 Africa-free 8 -011001011110 African-controlled 9 -011001011110 Kong-listed 9 -011001011110 Africa-related 9 -011001011110 Dakotans 12 -011001011110 Platte 15 -011001011110 Montazeri 15 -011001011110 Luzon 16 -011001011110 Kyongsang 17 -011001011110 Fool 20 -011001011110 Penh 36 -011001011110 Cholla 37 -011001011110 Ruhollah 45 -011001011110 Yemen 88 -011001011110 Pole 92 -011001011110 Wales 98 -011001011110 Kong-based 135 -011001011110 Bend 152 -011001011110 Africans 158 -011001011110 Dakota 550 -011001011110 Carolina 1238 -011001011110 Africa 3080 -011001011110 Korea 3492 -011001011110 Kong 4103 -011001011111 AgriVest 1 -011001011111 America-dismantling 1 -011001011111 All. 1 -011001011111 was. 1 -011001011111 exports-cum-imports 1 -011001011111 18-to-21-year-olds 1 -011001011111 Comittee 1 -011001011111 quicksand. 1 -011001011111 Wonderline 1 -011001011111 CSI8 1 -011001011111 over-hyping 1 -011001011111 EQE 1 -011001011111 third-timers. 1 -011001011111 Exploratie 1 -011001011111 1.7062 1 -011001011111 Smirnitsky 1 -011001011111 Devry 1 -011001011111 Planmetrics 1 -011001011111 worklife 1 -011001011111 Abominations 1 -011001011111 Agricetus 1 -011001011111 megadeath 1 -011001011111 right-to-notice 1 -011001011111 InStat 1 -011001011111 481,200 1 -011001011111 ARGOSystems 1 -011001011111 Stiles/Bradley 1 -011001011111 Whaterburger 1 -011001011111 PVs 1 -011001011111 TNT. 1 -011001011111 TelWatch 1 -011001011111 Exceltech 1 -011001011111 1929-1934 1 -011001011111 America/G.H. 1 -011001011111 Medela 1 -011001011111 Socmerc 1 -011001011111 Progroup 1 -011001011111 IDAB 1 -011001011111 DiamondBathurst 1 -011001011111 Porton 1 -011001011111 Disinformation. 1 -011001011111 Doozies 1 -011001011111 pre-censorship 1 -011001011111 bushelbaskets 1 -011001011111 PACT 1 -011001011111 Leasecom 1 -011001011111 Academe 1 -011001011111 Redi-Med 1 -011001011111 Eshowe 1 -011001011111 Houseplant 1 -011001011111 223,000. 1 -011001011111 Rhineland-Westphalia 1 -011001011111 Formcraft 1 -011001011111 Lint 1 -011001011111 TIE/Communications 1 -011001011111 drug-busting 1 -011001011111 fear-adrenalin 1 -011001011111 Seeps 1 -011001011111 Tibor 1 -011001011111 Cheerfulness 1 -011001011111 SCUS 1 -011001011111 1,321,200 1 -011001011111 Gainsville 1 -011001011111 RWR 1 -011001011111 56,400 1 -011001011111 sugar. 1 -011001011111 Cheesecake 1 -011001011111 Perversity 1 -011001011111 MG/Perin 1 -011001011111 HHPA 1 -011001011111 Catarat 1 -011001011111 Shoham 1 -011001011111 Hasuro 1 -011001011111 splicemanship. 1 -011001011111 undeservedness 1 -011001011111 Infamy 1 -011001011111 Chick-Fil-A 1 -011001011111 Persepolis 1 -011001011111 Texas-Arlington 1 -011001011111 Stile 1 -011001011111 Technidisc 1 -011001011111 Hurts 1 -011001011111 Everybody-Who-Wants-It-Gets-It 1 -011001011111 ultraconservatism 1 -011001011111 Drunken 1 -011001011111 Geosearch 1 -011001011111 Ti-Caro 1 -011001011111 Erbamount 1 -011001011111 Minutement 1 -011001011111 IDEAssociates 1 -011001011111 Champigny. 1 -011001011111 Culinar 1 -011001011111 White/Tishman 1 -011001011111 Argentina-have 1 -011001011111 Sytek 1 -011001011111 Netron 1 -011001011111 Wyeths 1 -011001011111 Masterfund 1 -011001011111 hardihood 1 -011001011111 Self-Interest 1 -011001011111 86-proof 1 -011001011111 Membrex 1 -011001011111 Seragen 1 -011001011111 Telrad 1 -011001011111 binomials 1 -011001011111 Photojournalism/12 1 -011001011111 tameness 1 -011001011111 Medicap 1 -011001011111 Stolte 1 -011001011111 Sadaharu 1 -011001011111 imploration 1 -011001011111 Greenways 1 -011001011111 Tax-wise 1 -011001011111 Tycoons 1 -011001011111 Lucrece 1 -011001011111 Elpac 1 -011001011111 Wolde-Giorgis 1 -011001011111 Lubrani 1 -011001011111 Camiling 1 -011001011111 Capcan 1 -011001011111 Infiltek 1 -011001011111 Gerontius 1 -011001011111 Saint-Germain-des-Pres 1 -011001011111 Labstat 1 -011001011111 Superwood 1 -011001011111 Judd-Falk 1 -011001011111 RockTime 1 -011001011111 Boschert 1 -011001011111 Floki. 1 -011001011111 Fashionlab 1 -011001011111 Absorba 1 -011001011111 motet 1 -011001011111 Otelo 1 -011001011111 Metal-Lines 1 -011001011111 Snuff 1 -011001011111 Central-Minneapolis 1 -011001011111 ClothesTimes 1 -011001011111 EED 1 -011001011111 Lavalin 1 -011001011111 Potwar 1 -011001011111 Flordeco 1 -011001011111 Duesseldorf-based 1 -011001011111 NPD/Nielsen 1 -011001011111 child-killing 1 -011001011111 DOE. 1 -011001011111 smoke-blowing 1 -011001011111 CMCP 1 -011001011111 self-legislation 1 -011001011111 toad-strangler 1 -011001011111 downlinked 1 -011001011111 M.D.-speak 1 -011001011111 Belmondo 1 -011001011111 VR. 1 -011001011111 delimitation 1 -011001011111 St-Basile 1 -011001011111 1,350,100 1 -011001011111 500-and 1 -011001011111 coverboy 1 -011001011111 Aset 1 -011001011111 RJMJ 1 -011001011111 Environ 1 -011001011111 Asrat 1 -011001011111 Debebe 1 -011001011111 Ohnrko 1 -011001011111 ings 1 -011001011111 Moblization 1 -011001011111 Macromedia 1 -011001011111 marriageables 1 -011001011111 Caribiner 1 -011001011111 A-Bye 1 -011001011111 overcapitalization 1 -011001011111 schmoozers 1 -011001011111 Jatte 1 -011001011111 Hydratech 1 -011001011111 Kurz-asch 1 -011001011111 Tarmac-LoneStar 1 -011001011111 verbs/ 1 -011001011111 Portex 1 -011001011111 sulfanilamide 1 -011001011111 Mid-Citgo 1 -011001011111 pseudo-freedoms 1 -011001011111 calypso. 1 -011001011111 SCIENTIFICS 1 -011001011111 Kingstown 1 -011001011111 K-Sun 1 -011001011111 Sybra 1 -011001011111 Transcat 1 -011001011111 Optotech 1 -011001011111 Connoisseurship 1 -011001011111 Whimsy 1 -011001011111 W.I.N.E. 1 -011001011111 Prisma 1 -011001011111 Watership 1 -011001011111 YMC 1 -011001011111 Chamouton 1 -011001011111 Jedsan 1 -011001011111 BROS. 1 -011001011111 McWane 1 -011001011111 bankruptcy-proceedings 1 -011001011111 Rush-Presbyterian 1 -011001011111 Divorce. 1 -011001011111 Downwinders 1 -011001011111 Cardiomedics 1 -011001011111 Slumberjack 1 -011001011111 Barbecon 1 -011001011111 Ashkhabad 1 -011001011111 Anglophobia 1 -011001011111 UNIX. 1 -011001011111 Penance 1 -011001011111 overcollection 1 -011001011111 ProFutures 1 -011001011111 Militaryware 1 -011001011111 Angiotech 1 -011001011111 VMark 1 -011001011111 Avonite 1 -011001011111 Ronaldsay 1 -011001011111 brainos 1 -011001011111 you-know-where 1 -011001011111 EnClean 1 -011001011111 squishes 1 -011001011111 Phobia 1 -011001011111 MacroMind 1 -011001011111 triple-A/double-A-plus 1 -011001011111 Matrix-I 1 -011001011111 ability. 1 -011001011111 Diligence 1 -011001011111 Gerolstein 1 -011001011111 28,647 1 -011001011111 Habeck 1 -011001011111 Technographics 1 -011001011111 74,063 1 -011001011111 scamming 1 -011001011111 infectivity 1 -011001011111 140402 1 -011001011111 Apocalyse 1 -011001011111 MASON 1 -011001011111 Foxxi 1 -011001011111 Airvision 1 -011001011111 128-102 1 -011001011111 Separationists 1 -011001011111 Gronk 1 -011001011111 BevMark 1 -011001011111 Chapuis 1 -011001011111 Tadco 1 -011001011111 Sportssuites 1 -011001011111 Premise 1 -011001011111 M.D.C 2 -011001011111 Sorecom 2 -011001011111 Welkom 2 -011001011111 Jebef 2 -011001011111 Highbrow 2 -011001011111 Phonetica 2 -011001011111 Neguri 2 -011001011111 TradeARBED 2 -011001011111 Immortality 2 -011001011111 Epicor 2 -011001011111 imbecility 2 -011001011111 Zacualpa 2 -011001011111 Arrupism 2 -011001011111 Infomarketing 2 -011001011111 Kiewitt 2 -011001011111 Tlacolula 2 -011001011111 Immaculate 2 -011001011111 CRST 2 -011001011111 Crosses 2 -011001011111 National-Gottesman 2 -011001011111 Kentuckiana 2 -011001011111 Waban 2 -011001011111 O-word 2 -011001011111 Rollingstone 2 -011001011111 Peggie 2 -011001011111 GNA 2 -011001011111 Yamit 2 -011001011111 Wharncliffe 2 -011001011111 Munsters 2 -011001011111 decolonization 2 -011001011111 Vitesse 2 -011001011111 Qum 2 -011001011111 3,560,000 2 -011001011111 Arpege 2 -011001011111 dopes 2 -011001011111 Yerres 2 -011001011111 Cilco 2 -011001011111 deconglomeration 2 -011001011111 NorOats 2 -011001011111 Sajahtera 2 -011001011111 LOR 2 -011001011111 AITS 2 -011001011111 bomb-throwing 2 -011001011111 Aeronca 2 -011001011111 Brabant 2 -011001011111 1713 2 -011001011111 Al-Saudi 2 -011001011111 adobes 2 -011001011111 BCP 2 -011001011111 Postman 2 -011001011111 Discourse 2 -011001011111 NameLab 2 -011001011111 1892.2 2 -011001011111 Fitoussi 2 -011001011111 Voodooists 2 -011001011111 nincompoops 2 -011001011111 Aquafresh 2 -011001011111 Warplanes 2 -011001011111 Sviluppo 2 -011001011111 AK-Pacific 2 -011001011111 Niksic 2 -011001011111 Nebraska-Lincoln 2 -011001011111 TelecomUSA 2 -011001011111 Innopac 2 -011001011111 shosha 2 -011001011111 Burgoyne 2 -011001011111 BI-LO 2 -011001011111 Cabrini-Green 2 -011001011111 Cigra 2 -011001011111 Potency 2 -011001011111 Poros 2 -011001011111 4,639 2 -011001011111 Creams 2 -011001011111 Denali 2 -011001011111 DVL 2 -011001011111 Guayabal 2 -011001011111 Wiggie 2 -011001011111 Vandy 2 -011001011111 Thermaflo 2 -011001011111 tranquillitas 2 -011001011111 Loleta 2 -011001011111 Intelstat 2 -011001011111 Ridgeville 2 -011001011111 Enzytech 2 -011001011111 Zalles 2 -011001011111 Dope 2 -011001011111 Hebrews 2 -011001011111 Wheelabrator-Frye 2 -011001011111 Trallfa 2 -011001011111 ultra-orthodox 2 -011001011111 Kwazulu 2 -011001011111 Kiltek 2 -011001011111 Gamboa 2 -011001011111 Sook 2 -011001011111 Ambivalence 2 -011001011111 Tomari 2 -011001011111 Gambell 2 -011001011111 supermicrocomputers 2 -011001011111 GCF 2 -011001011111 JMP 2 -011001011111 A.C.A. 2 -011001011111 Cholera 2 -011001011111 MT 2 -011001011111 Beatrice/Hunt-Wesson 2 -011001011111 Aural 2 -011001011111 Vita-Pakt 2 -011001011111 Chatran 2 -011001011111 Bourns 2 -011001011111 OPECalypse 2 -011001011111 Mico 2 -011001011111 Vyquest 2 -011001011111 Chloride 2 -011001011111 Kopper 2 -011001011111 Lancashire 3 -011001011111 insouciance 3 -011001011111 Famer 3 -011001011111 Chalons 3 -011001011111 gateholds 3 -011001011111 Nabila 3 -011001011111 Alemana 3 -011001011111 Vivra 3 -011001011111 MetCal 3 -011001011111 Electromethods 3 -011001011111 ITI 3 -011001011111 NIH. 3 -011001011111 California-Berkeley 3 -011001011111 Siff 3 -011001011111 Bernarda 3 -011001011111 Rhine-Westphalia 3 -011001011111 Wimpy 3 -011001011111 Voroba 3 -011001011111 Bridgestone/Firestone 3 -011001011111 res 3 -011001011111 Rockbill 3 -011001011111 Avoca 3 -011001011111 Supercon 3 -011001011111 Lomita 3 -011001011111 recessionomics 3 -011001011111 Palaces 3 -011001011111 Acrobe 3 -011001011111 InterConsult 3 -011001011111 HAMS 3 -011001011111 Cagayan 3 -011001011111 Icon 3 -011001011111 Flair 3 -011001011111 prehistory 3 -011001011111 WASH 3 -011001011111 Sodom 3 -011001011111 yuppiedom 3 -011001011111 Anametrics 3 -011001011111 Luden 3 -011001011111 Alcibiades 3 -011001011111 Semiotics 3 -011001011111 CRC-Evans 3 -011001011111 middle-of-the-roaders 3 -011001011111 Knute 3 -011001011111 Pavel 3 -011001011111 STD 3 -011001011111 Milmac 3 -011001011111 1,073 3 -011001011111 SRK 3 -011001011111 Snapper 3 -011001011111 Caligula 3 -011001011111 Maatschappij 3 -011001011111 Patriarchy 3 -011001011111 COYOTE 3 -011001011111 Mashad 3 -011001011111 Nicks 3 -011001011111 Rotan-Mosle 3 -011001011111 Wavemat 3 -011001011111 LDL. 3 -011001011111 dirigisme 3 -011001011111 Dialcom 3 -011001011111 Gems 3 -011001011111 Water-Wise 3 -011001011111 TEDs 3 -011001011111 1425.9 3 -011001011111 Illini 3 -011001011111 Dacca 3 -011001011111 Optometry 3 -011001011111 Pastiche 3 -011001011111 '61 3 -011001011111 Plan-A-Flex 3 -011001011111 Callao 3 -011001011111 Freeholders 3 -011001011111 kabuki 3 -011001011111 cost-consciousness 3 -011001011111 CommuniCom 3 -011001011111 Southie 3 -011001011111 Szeged 3 -011001011111 Leander 3 -011001011111 Interact 3 -011001011111 horribles 3 -011001011111 Millionaire 4 -011001011111 non-HCEs 4 -011001011111 Reckoning 4 -011001011111 Poliuto 4 -011001011111 Houlihan/Lawrence 4 -011001011111 LL 4 -011001011111 Jaymar-Ruby 4 -011001011111 Amserv 4 -011001011111 Montenegro 4 -011001011111 Verisys 4 -011001011111 Alberich 4 -011001011111 Carousel 4 -011001011111 767-200s 4 -011001011111 Kunashiri 4 -011001011111 Smarter 4 -011001011111 seabed 4 -011001011111 Chemlink 4 -011001011111 Federale 4 -011001011111 Aktiv 4 -011001011111 Sisco 4 -011001011111 Auchinleck 4 -011001011111 Boskalis 4 -011001011111 Dixie-Narco 4 -011001011111 homesteading 4 -011001011111 ETD 4 -011001011111 DSI 4 -011001011111 Suzhou 4 -011001011111 Karabagh 4 -011001011111 Pathology 4 -011001011111 Chronicles 4 -011001011111 '69 4 -011001011111 Solitude 4 -011001011111 USCP-Wesco 4 -011001011111 Koje 4 -011001011111 Cableshare 4 -011001011111 Shampoo 4 -011001011111 Explorers 4 -011001011111 Matritech 4 -011001011111 Victoriana 4 -011001011111 Geosource 5 -011001011111 Pythagoras 5 -011001011111 America. 5 -011001011111 Melancholy 5 -011001011111 GDM 5 -011001011111 Endearment 5 -011001011111 Cryodynamics 5 -011001011111 DCA 5 -011001011111 RB&H 5 -011001011111 ITN 5 -011001011111 AWT 5 -011001011111 Threads 5 -011001011111 non-refundability 5 -011001011111 Mahagonny 5 -011001011111 Makeup 5 -011001011111 NY 5 -011001011111 Sweepstakes 5 -011001011111 Acquitaine 5 -011001011111 Buslease 5 -011001011111 Romanticism 5 -011001011111 Disk/Trend 5 -011001011111 Dermatology 5 -011001011111 Myself 5 -011001011111 MADD 5 -011001011111 Maranhao 5 -011001011111 AME 5 -011001011111 Weeping 5 -011001011111 Mascagni 5 -011001011111 Volksfuersorge 5 -011001011111 SRL 5 -011001011111 Diversifoods 5 -011001011111 Previews 5 -011001011111 Roto-Rooter 5 -011001011111 Bosque 5 -011001011111 Financo 6 -011001011111 Hazzard 6 -011001011111 contorts 6 -011001011111 Infinet 6 -011001011111 VTC 6 -011001011111 Penns 6 -011001011111 Weights 6 -011001011111 Cruising 6 -011001011111 Brooksville 6 -011001011111 1979-82 6 -011001011111 Olay 6 -011001011111 Linz 6 -011001011111 Sweets 6 -011001011111 Kierulff 6 -011001011111 Interpharm 6 -011001011111 Wisconsin-Madison 6 -011001011111 Planecon 6 -011001011111 ranitidine 6 -011001011111 Thassos 7 -011001011111 Version 7 -011001011111 Wilkesboro 7 -011001011111 Cather 7 -011001011111 Pong 7 -011001011111 Technomic 7 -011001011111 Lemley-Yarling 7 -011001011111 Willowbrook 7 -011001011111 Medici 7 -011001011111 Negroes 7 -011001011111 Bio-Medicus 7 -011001011111 SHE 7 -011001011111 Ceiling 7 -011001011111 WABC-TV 7 -011001011111 Yanbu 8 -011001011111 AXA 8 -011001011111 Peterson/Puritan 8 -011001011111 temporizing 8 -011001011111 Poulenc 8 -011001011111 Parma 8 -011001011111 N.E. 8 -011001011111 Stepanakert 8 -011001011111 Hama 8 -011001011111 Cytology 8 -011001011111 Eastwick 8 -011001011111 Intercontinentale 8 -011001011111 Torts 8 -011001011111 Bung 9 -011001011111 Tasmania 9 -011001011111 Bartok 9 -011001011111 Cookbook 9 -011001011111 Vodka 9 -011001011111 Genencor 9 -011001011111 Sorrow 9 -011001011111 Tonawanda 9 -011001011111 Poppea 9 -011001011111 Bacchus 9 -011001011111 26646.43 9 -011001011111 Egberts 9 -011001011111 Americano 10 -011001011111 Texasgulf 10 -011001011111 Afrikanerdom 10 -011001011111 invisibles 10 -011001011111 Cardiology 10 -011001011111 Kareem 10 -011001011111 Sakhalin 10 -011001011111 Kuznets 11 -011001011111 Bevmark 11 -011001011111 attainder 11 -011001011111 Provence 12 -011001011111 Horrors 12 -011001011111 Innocence 12 -011001011111 Counties 12 -011001011111 R&R 12 -011001011111 anorexia 12 -011001011111 Aquarius 12 -011001011111 Gencorp 12 -011001011111 Apocalypse 12 -011001011111 Silesia 13 -011001011111 2158.61 13 -011001011111 Geoffrion 13 -011001011111 Regents 14 -011001011111 Belier 14 -011001011111 Islip 15 -011001011111 Zinc 15 -011001011111 Pageant 15 -011001011111 Wisdom 15 -011001011111 Piggy 15 -011001011111 Blockers 15 -011001011111 Jubilee 16 -011001011111 Blanca 16 -011001011111 Traveler 17 -011001011111 Gentlemen 17 -011001011111 Him 17 -011001011111 Rage 17 -011001011111 Photography 18 -011001011111 Casting 18 -011001011111 Dimes 18 -011001011111 Myra 19 -011001011111 Camelot 19 -011001011111 Psychology 20 -011001011111 Colonia 21 -011001011111 Isles 22 -011001011111 Fork 23 -011001011111 Sartre 24 -011001011111 Mayors 25 -011001011111 Soya 25 -011001011111 Dignity 26 -011001011111 Adventure 27 -011001011111 Gemco 27 -011001011111 Casablanca 27 -011001011111 Bunny 29 -011001011111 Parade 30 -011001011111 yesteryear 31 -011001011111 Supervisors 31 -011001011111 Canterbury 31 -011001011111 Billerica 31 -011001011111 Arc 34 -011001011111 Daddy 34 -011001011111 Spark 34 -011001011111 Posts 37 -011001011111 Polyconomics 39 -011001011111 Oz 39 -011001011111 Crossroads 40 -011001011111 Excellence 42 -011001011111 Honor 43 -011001011111 Heaven 45 -011001011111 Duty 45 -011001011111 Bet 59 -011001011111 Maid 70 -011001011111 Crest 71 -011001011111 Ellington 72 -011001011111 Allegiance 72 -011001011111 Victoire 73 -011001011111 Pigs 76 -011001011111 '87 76 -011001011111 Easy 77 -011001011111 Ministers 82 -011001011111 Aquitaine 84 -011001011111 Lion 85 -011001011111 Slope 95 -011001011111 Realtors 100 -011001011111 Fame 104 -011001011111 Run 112 -011001011111 Marxism 118 -011001011111 M.D. 124 -011001011111 Christ 140 -011001011111 Boy 155 -011001011111 Jesus 156 -011001011111 Victoria 185 -011001011111 Wonder 214 -011001011111 negotiable 267 -011001011111 Medicine 324 -011001011111 Corona 384 -011001011111 Investigation 417 -011001011111 Man 427 -011001011111 Channel 595 -011001011111 USA 1010 -011001011111 America 10219 -011001011111 Sea 1124 -011001100000 Top-spending 1 -011001100000 Chiyoji 1 -011001100000 WARSHIPS 1 -011001100000 Kinugawa 1 -011001100000 TREASURY-GOLD 1 -011001100000 MEDAL 1 -011001100000 Pro/Am 1 -011001100000 Doleful 1 -011001100000 Secrete 1 -011001100000 Greets 1 -011001100000 42-3 1 -011001100000 18th-Century 1 -011001100000 Accumulates 1 -011001100000 Duchesse 1 -011001100000 Flammable 1 -011001100000 92-country 1 -011001100000 Hast 1 -011001100000 Husker 1 -011001100000 Quick-Delivery 1 -011001100000 arms-negotiator 1 -011001100000 Plats 1 -011001100000 95,000-acre 1 -011001100000 Under-Secretary 1 -011001100000 Livre 1 -011001100000 218.02 1 -011001100000 355.42 1 -011001100000 celebrity-happy 1 -011001100000 nine-passenger 1 -011001100000 Midlevel 1 -011001100000 Chancerey 1 -011001100000 96-nation 1 -011001100000 then-promising 1 -011001100000 Bankrupty 1 -011001100000 ever-cheerful 1 -011001100000 unfreezes 1 -011001100000 Pruco 1 -011001100000 Child-Support 1 -011001100000 Chateauneuf 1 -011001100000 Halna 1 -011001100000 Shizue 1 -011001100000 AP-Media 1 -011001100000 Albrook 1 -011001100000 subisidiary 1 -011001100000 scandal-wracked 1 -011001100000 Bankrutpcy 1 -011001100000 Portland-Kaohsiung 1 -011001100000 Sci-Med 2 -011001100000 Tottenham 2 -011001100000 Cahiers 2 -011001100000 ex-Attorney 2 -011001100000 Courageous 2 -011001100000 then-Postmaster 2 -011001100000 Assimilables 2 -011001100000 Chuifong 2 -011001100000 chuifong 2 -011001100000 Probate 2 -011001100000 Massacusetts 2 -011001100000 Bankrupcty 3 -011001100000 Irenee 3 -011001100000 Penal 3 -011001100000 Wiggle 3 -011001100000 Mitsui-Taiyo 4 -011001100000 engine-builder 4 -011001100000 PHF 4 -011001100000 figure-skater 4 -011001100000 Agrarian 5 -011001100000 APPEALS 5 -011001100000 Wint-O-Green 5 -011001100000 Cotes 6 -011001100000 Divisional 6 -011001100000 Dac 7 -011001100000 then-Attorney 8 -011001100000 Uniform 14 -011001100000 E-Z 16 -011001100000 Surrogate 16 -011001100000 Fond 17 -011001100000 Trustee 23 -011001100000 Solicitor 33 -011001100000 Directorate 37 -011001100000 Shining 47 -011001100000 Postmaster 56 -011001100000 Surgeon 73 -011001100000 Chancery 263 -011001100000 Superior 330 -011001100000 Circuit 629 -011001100000 Tax 968 -011001100000 Bankruptcy 1119 -011001100000 Attorney 1348 -011001100000 District 1741 -011001100000 Supreme 3968 -011001100001 Cash-Flow 1 -011001100001 unfragmented 1 -011001100001 clay-raised 1 -011001100001 globelike 1 -011001100001 Rockabye 1 -011001100001 USBI-Booster 1 -011001100001 9-year-old 1 -011001100001 22,000-ton 1 -011001100001 1.7968 1 -011001100001 December-maturing 1 -011001100001 Toscany 1 -011001100001 liquidity-short 1 -011001100001 Half-Past 1 -011001100001 Merc-Big 1 -011001100001 parking-tight 1 -011001100001 Mod-Maid 1 -011001100001 117-foot 1 -011001100001 Elindra 1 -011001100001 86-issue 1 -011001100001 1,841 1 -011001100001 GOLDCREST 1 -011001100001 pro-Beijing 1 -011001100001 Mumms 1 -011001100001 agriculture-dependent 1 -011001100001 Leaner 1 -011001100001 1.8435 1 -011001100001 USFL. 1 -011001100001 Nannsy 1 -011001100001 424-room 1 -011001100001 Sleepers 1 -011001100001 Recipes 1 -011001100001 Eigentum 1 -011001100001 Lasma 1 -011001100001 Roommate 1 -011001100001 Forces/Far 1 -011001100001 Nanhai 1 -011001100001 once-liberal 1 -011001100001 E&C 1 -011001100001 population-glutted 1 -011001100001 network. 1 -011001100001 Cypress/Ross 1 -011001100001 second-slowest 1 -011001100001 more-prosperous 1 -011001100001 fondue-and-ski-chalet 1 -011001100001 Jordanian-held 1 -011001100001 import-dominated 1 -011001100001 still-active 1 -011001100001 28.777 1 -011001100001 now-trendy 1 -011001100001 175-bed 1 -011001100001 Neworld-Boston 1 -011001100001 1.8291 1 -011001100001 one-billion-barrel 1 -011001100001 Criticizes 1 -011001100001 Kenedy 1 -011001100001 Neoclassic 1 -011001100001 gangling 1 -011001100001 1,200-passenger 1 -011001100001 CNID 1 -011001100001 DISCOURAGING 1 -011001100001 Post-Employment 1 -011001100001 J&E 1 -011001100001 now-moribund 1 -011001100001 176-office 1 -011001100001 1.9553 1 -011001100001 3,142,000 1 -011001100001 222,600 1 -011001100001 2.0082 1 -011001100001 MELON 1 -011001100001 Atascocita 1 -011001100001 2,843,233 1 -011001100001 one-million-circulation 1 -011001100001 227-screen 1 -011001100001 12-store 1 -011001100001 Full-Year 1 -011001100001 NUGGETS 1 -011001100001 336,600 1 -011001100001 1336 1 -011001100001 1,100th 1 -011001100001 Pre-Tax 1 -011001100001 Vista-based 1 -011001100001 Svengalian 1 -011001100001 Shoal 1 -011001100001 Textile-maker 1 -011001100001 D150 1 -011001100001 Roil 1 -011001100001 77-story 1 -011001100001 1.8198 1 -011001100001 31-branch 1 -011001100001 Ngiu 1 -011001100001 QVC. 1 -011001100001 Pernicious 1 -011001100001 5666 1 -011001100001 Year-Ago 1 -011001100001 184-room 1 -011001100001 Dirks/Equity 1 -011001100001 First-Period 1 -011001100001 Al-Qabas 1 -011001100001 Edlers 1 -011001100001 Laziest 1 -011001100001 Heiwado 1 -011001100001 Big-Time 1 -011001100001 Lie-Detector 1 -011001100001 Japan-Middle 1 -011001100001 Kobil 1 -011001100001 NASD-Big 1 -011001100001 now-ended 1 -011001100001 Filet 1 -011001100001 seven-park 1 -011001100001 Auburn-Folsom 1 -011001100001 Miskito/English-speaking 1 -011001100001 1.9203 1 -011001100001 Cross-Cultural 1 -011001100001 605,047 1 -011001100001 1.8087 1 -011001100001 1.7980 1 -011001100001 REDISTRIBUTION 1 -011001100001 1,047,247 1 -011001100001 Security-sensitive 1 -011001100001 low-debt 1 -011001100001 RHNB 1 -011001100001 Juicy 1 -011001100001 2127 1 -011001100001 24-screen 1 -011001100001 Immoderate 1 -011001100001 Ocwen 1 -011001100001 74,289 1 -011001100001 70,000-acre 1 -011001100001 nine-branch 1 -011001100001 3.1475 1 -011001100001 Vortec-Chicago 1 -011001100001 power-short 1 -011001100001 Pass-Through 1 -011001100001 4,658 1 -011001100001 720-unit 1 -011001100001 2,000-seat 1 -011001100001 Montag 1 -011001100001 College-Completion 1 -011001100001 NHS. 1 -011001100001 2.9702 1 -011001100001 glass-plated 1 -011001100001 Catonsville 1 -011001100001 Plowshares 1 -011001100001 Libya-based 1 -011001100001 sturdy-looking 1 -011001100001 dirt-farmer 1 -011001100001 5,400-unit 1 -011001100001 once-familiar 1 -011001100001 NMS. 1 -011001100001 Tank-equipped 1 -011001100001 6,374,000 1 -011001100001 gum-rich 1 -011001100001 6,000,868 1 -011001100001 Israeli-Occupied 1 -011001100001 4,751 1 -011001100001 DeepStar 1 -011001100001 monklike 1 -011001100001 2.9970 1 -011001100001 terrorism-oriented 1 -011001100001 4,702 1 -011001100001 1,748 1 -011001100001 2.9880 1 -011001100001 Jet-Engine 1 -011001100001 Mainz-based 1 -011001100001 Volkswagenwerke 1 -011001100001 Student-Loan 1 -011001100001 3rd-Quarter 1 -011001100001 ocupied 1 -011001100001 ERT. 1 -011001100001 Emu 1 -011001100001 ACC. 1 -011001100001 HUBBARD 1 -011001100001 40,000-strong 1 -011001100001 1,166 1 -011001100001 1.7010 1 -011001100001 Hemofil 1 -011001100001 Filigreed 1 -011001100001 semiweekly 1 -011001100001 Quicksnap 1 -011001100001 Parle 1 -011001100001 ex-champs 1 -011001100001 Segregated 1 -011001100001 SEWER 1 -011001100001 Boso 1 -011001100001 18th-20th 1 -011001100001 KVDA. 1 -011001100001 Adapso/Broadview 1 -011001100001 bank. 1 -011001100001 Mescalero 1 -011001100001 Ministerium 1 -011001100001 Martin-owned 1 -011001100001 71,918,350 1 -011001100001 Hille 1 -011001100001 FA 1 -011001100001 once-Democratic 1 -011001100001 TJX. 1 -011001100001 Nonsexist 1 -011001100001 Clemency 1 -011001100001 CRIMINAL 1 -011001100001 Kahiltna 1 -011001100001 VWR. 1 -011001100001 Worthless 1 -011001100001 bottomed-out 1 -011001100001 graham-flour-based 1 -011001100001 WHS 1 -011001100001 WNS. 1 -011001100001 soldout 1 -011001100001 STAYED 1 -011001100001 290-lawyer 1 -011001100001 Lignum 1 -011001100001 Re-Examining 1 -011001100001 Saftey 1 -011001100001 Nickle 1 -011001100001 5,460-unit 1 -011001100001 Minsviaz 1 -011001100001 tumorous 1 -011001100001 6,373,570 1 -011001100001 Shiite-dominated 1 -011001100001 AmericanStock 1 -011001100001 Bush-solid 1 -011001100001 soccer-addicted 1 -011001100001 5,400-member 2 -011001100001 non-Big 2 -011001100001 Newest 2 -011001100001 Fursecroft 2 -011001100001 Tamil-dominated 2 -011001100001 1015 2 -011001100001 2901 2 -011001100001 Trillion 2 -011001100001 Sharpville 2 -011001100001 pre-Big 2 -011001100001 war-battered 2 -011001100001 Infernal 2 -011001100001 then-Bank 2 -011001100001 ultra-chic 2 -011001100001 Phony 2 -011001100001 Israel-occupied 2 -011001100001 AstroWorld 2 -011001100001 Aisle 2 -011001100001 Raw-Steel 2 -011001100001 Marshalsea 2 -011001100001 painting. 2 -011001100001 TXO 2 -011001100001 Power-Supply 2 -011001100001 400-seat 2 -011001100001 All-Ordinary 2 -011001100001 CBOE. 2 -011001100001 Rescuing 2 -011001100001 Cowardly 2 -011001100001 Chinese-backed 2 -011001100001 ADH 2 -011001100001 3,947,000 2 -011001100001 HMO. 2 -011001100001 Tot 2 -011001100001 Rabobank 2 -011001100001 Resisting 3 -011001100001 Israeli-held 3 -011001100001 Guangming 3 -011001100001 Honky 3 -011001100001 VCR. 3 -011001100001 Twistee 3 -011001100001 one-eyed 3 -011001100001 Cosmic 3 -011001100001 lightless 3 -011001100001 Masked 3 -011001100001 Manage 3 -011001100001 PoGo 3 -011001100001 1.6490 3 -011001100001 already-sluggish 3 -011001100001 Dugway 3 -011001100001 Finnegans 4 -011001100001 Policeman 4 -011001100001 Nyaminyami 4 -011001100001 AP-DJ 4 -011001100001 Amadou 4 -011001100001 Tier 4 -011001100001 Honeymoon 4 -011001100001 post-Big 4 -011001100001 Filmco 4 -011001100001 Beaten 4 -011001100001 Windfall 4 -011001100001 20-state 5 -011001100001 Hula 5 -011001100001 Kola 5 -011001100001 Fril 6 -011001100001 EPA. 6 -011001100001 Nifty 7 -011001100001 Bataan 8 -011001100001 Highest 8 -011001100001 Magnificent 8 -011001100001 Sharpeville 9 -011001100001 11150 9 -011001100001 Marcilio 9 -011001100001 Kreditanstalt 10 -011001100001 Loft 11 -011001100001 Sistine 11 -011001100001 AL 11 -011001100001 Superconducting 12 -011001100001 Outrageous 13 -011001100001 Barbary 14 -011001100001 Intermarket 16 -011001100001 30-DAY 17 -011001100001 Endangered 21 -011001100001 C&D 22 -011001100001 Offered 22 -011001100001 Au 25 -011001100001 Crimean 25 -011001100001 Coated 69 -011001100001 Yuppie 69 -011001100001 Dark 76 -011001100001 Wings 84 -011001100001 Israeli-occupied 88 -011001100001 Deep 93 -011001100001 Insider 103 -011001100001 Twentieth 117 -011001100001 Pinnacle 148 -011001100001 Upper 184 -011001100001 ASSETS 197 -011001100001 Options 417 -011001100001 S 720 -011001100001 Internal 808 -011001100001 Far 822 -011001100001 Middle 1379 -011001100001 Big 5017 -011001100001 Commodity 1639 -011001100010 LLoyds 1 -011001100010 QMI 1 -011001100010 Res-A-Vue 1 -011001100010 113,300 1 -011001100010 Northline 1 -011001100010 25-Watt 1 -011001100010 Hay-Adams 1 -011001100010 Bux-Mont 1 -011001100010 Dettra 1 -011001100010 Piton 1 -011001100010 Rabbinical 1 -011001100010 REI-Diversified/Energy 1 -011001100010 Academy-Chinese 1 -011001100010 Pabco 1 -011001100010 Hartwick 1 -011001100010 Worldmark 1 -011001100010 Princessa 1 -011001100010 358,800 1 -011001100010 42,000-ton 1 -011001100010 FWW 1 -011001100010 Nishi-Nippon 1 -011001100010 Anti-Waste 1 -011001100010 Trafco 1 -011001100010 87/ 1 -011001100010 Motomachi 1 -011001100010 Sugarbeet 1 -011001100010 NoLoad 1 -011001100010 Tuileries 1 -011001100010 Nicaraguan-American 1 -011001100010 Keiyu 1 -011001100010 Stockmarket 1 -011001100010 Crown-winner 1 -011001100010 R-r-ruff 1 -011001100010 Irmo 1 -011001100010 Townscape 1 -011001100010 Romisch-Germanisches 1 -011001100010 4,500-store 1 -011001100010 Humanistic 1 -011001100010 Oriente 1 -011001100010 DAT. 1 -011001100010 Guadalupanita 1 -011001100010 All-Alaska 1 -011001100010 Dungaree 1 -011001100010 469,200 1 -011001100010 Mooyok 1 -011001100010 Centenary 1 -011001100010 Cray-compatible 1 -011001100010 Burrito-inspired 1 -011001100010 Cypher 1 -011001100010 Humana-University 1 -011001100010 Brooklawn 1 -011001100010 chance/ 1 -011001100010 Tocumen 1 -011001100010 Redbridge 1 -011001100010 Collaterized 1 -011001100010 Embryo 1 -011001100010 HRB-Singer 1 -011001100010 Schonbrunn 1 -011001100010 Judge-Declared 1 -011001100010 Gryphon 1 -011001100010 Loosbrock 1 -011001100010 DEWEY 1 -011001100010 Gay-Lesbian 1 -011001100010 Yisiyi 1 -011001100010 Balmoral 1 -011001100010 Transcapital 1 -011001100010 M.I.R.A.-International 1 -011001100010 Occupant 1 -011001100010 L&D 1 -011001100010 Ordway 1 -011001100010 Citizen-Labor 1 -011001100010 Multi-Employer 1 -011001100010 Friedmar 1 -011001100010 Dia 1 -011001100010 Westam 1 -011001100010 Sporn 1 -011001100010 Cole-Taylor 1 -011001100010 Northeast/Midwest 1 -011001100010 Theosophical 1 -011001100010 Bareiss 1 -011001100010 Alvear 1 -011001100010 Ethnological 1 -011001100010 Texas/Oxford 1 -011001100010 Braten 1 -011001100010 farmer-dominated 1 -011001100010 E.N. 1 -011001100010 Homesick 1 -011001100010 Paperweight 1 -011001100010 Belhaven 1 -011001100010 NGC 1 -011001100010 plainest 1 -011001100010 Mycological 1 -011001100010 Hilgenfeld 1 -011001100010 Correspondence 1 -011001100010 Hillbilly 1 -011001100010 Cardian 1 -011001100010 Clariden 1 -011001100010 Falu 1 -011001100010 Savacou 1 -011001100010 Turkish-Soviet 1 -011001100010 reduced-tar 1 -011001100010 Alteration 1 -011001100010 Aztech 1 -011001100010 Stages 1 -011001100010 Upwardly 1 -011001100010 Erie-Lackawanna 1 -011001100010 Hyperbaric 1 -011001100010 Medium-Range 1 -011001100010 University-Small 1 -011001100010 Da-Lite 1 -011001100010 Bonray 1 -011001100010 V.I.S. 1 -011001100010 Saatchi-backed 1 -011001100010 3,300-member 1 -011001100010 Graver 1 -011001100010 Fast-Talking 1 -011001100010 intra-Common 1 -011001100010 Satyr 1 -011001100010 Electrotechnical 1 -011001100010 McFetridge 1 -011001100010 Hammersmith 1 -011001100010 JJM 1 -011001100010 397-room 1 -011001100010 Semi-Automated 1 -011001100010 1,333,300 1 -011001100010 Honey-Bee 1 -011001100010 HOMES. 1 -011001100010 Cancom-United 1 -011001100010 BP/Standard 1 -011001100010 Fijian-dominated 1 -011001100010 Exuberant 1 -011001100010 Waziwazu 1 -011001100010 America-China 1 -011001100010 Sogenal 1 -011001100010 Tennessee-Virginia 1 -011001100010 California-Davis 1 -011001100010 MultiChannel 1 -011001100010 1,920,700 1 -011001100010 suburban-Detroit 1 -011001100010 All-Southern 1 -011001100010 Tetra 1 -011001100010 then-CBS 1 -011001100010 Rockford/Park 1 -011001100010 Farnese 1 -011001100010 Imperial-Royal 1 -011001100010 Europejski 1 -011001100010 Valamo 1 -011001100010 Staatliches 1 -011001100010 Transtate 1 -011001100010 U.S.-Common 1 -011001100010 Klines 1 -011001100010 Balliol 1 -011001100010 G-5/Plaza 1 -011001100010 Kowloon-Canton 1 -011001100010 Medeco 1 -011001100010 ever-busy 1 -011001100010 Mailman 1 -011001100010 Kideo 1 -011001100010 Manmade 1 -011001100010 IGC-Direct 1 -011001100010 Azami 1 -011001100010 Tattered 1 -011001100010 NANA 1 -011001100010 Whine 1 -011001100010 Donnybrook 1 -011001100010 Clocktower 1 -011001100010 Cornhusker 1 -011001100010 founder-producer-composer 1 -011001100010 All-Girl 1 -011001100010 Outerbridge 1 -011001100010 L&L 1 -011001100010 Schwechat 1 -011001100010 Boalt 1 -011001100010 Yenching 1 -011001100010 ladies-in-waiting. 1 -011001100010 Getty-owned 1 -011001100010 Watoto 1 -011001100010 Frisky 1 -011001100010 Musashino 1 -011001100010 Entreprenurial 1 -011001100010 Wye 1 -011001100010 Trianon 1 -011001100010 HBO/Cannon 1 -011001100010 Cleveland-Marshall 1 -011001100010 Combative 1 -011001100010 Angriest 1 -011001100010 Cybernetic 1 -011001100010 Nadi 1 -011001100010 504,300 1 -011001100010 Bottomless 1 -011001100010 gyo 1 -011001100010 Damnation 1 -011001100010 4.5-million-member 1 -011001100010 Finn-Stroi 1 -011001100010 Peterhouse 1 -011001100010 Denevi 1 -011001100010 Baldwin-Wallace 1 -011001100010 Doghill-Donahue 1 -011001100010 Endive 1 -011001100010 Fabco 1 -011001100010 Metrocentre 1 -011001100010 BRS 1 -011001100010 Revokes 1 -011001100010 Sanno 1 -011001100010 Lannan 1 -011001100010 Linnean 1 -011001100010 Savery 1 -011001100010 Overlake 1 -011001100010 Bayview 1 -011001100010 Grouse 1 -011001100010 3790 1 -011001100010 heavily-traded 1 -011001100010 University-C.W. 1 -011001100010 Peapack-Gladstone 1 -011001100010 Etching 1 -011001100010 Eno 1 -011001100010 Chicago-Tokyo 1 -011001100010 Hurlingham 1 -011001100010 Yivo 1 -011001100010 Alcoa-Goodyear 1 -011001100010 Lincoln-McKinley 1 -011001100010 Narda 1 -011001100010 Ramaz 1 -011001100010 102-store 1 -011001100010 Springhouse 1 -011001100010 Marbro 1 -011001100010 Potty 1 -011001100010 15-gate 1 -011001100010 Kunsthistorisches 1 -011001100010 Courtauld 1 -011001100010 Sun-Maid 1 -011001100010 Kyoka 1 -011001100010 Langasco 1 -011001100010 KOIN 1 -011001100010 Retina 1 -011001100010 Chicken-Little 1 -011001100010 RAD 1 -011001100010 Japan-Miami 1 -011001100010 Japan-American 1 -011001100010 Hukuang 1 -011001100010 Microtec 1 -011001100010 Birkbeck 1 -011001100010 Minnehaha 1 -011001100010 microwave-equipped 1 -011001100010 Union-Magma-Thermal 1 -011001100010 Daybridge 1 -011001100010 PaineWebber-Geodyne 1 -011001100010 Anti-Clamping 1 -011001100010 BFC 1 -011001100010 Ordination 1 -011001100010 AWI 1 -011001100010 Faceted 1 -011001100010 191,675 1 -011001100010 Hairy-Chested 1 -011001100010 MTV/Madonna 1 -011001100010 Cranfield 1 -011001100010 Papworth 1 -011001100010 pro-World 1 -011001100010 124,600 1 -011001100010 Serpentine 1 -011001100010 Gridlocked 1 -011001100010 Airmail 1 -011001100010 Deep-Mountain 1 -011001100010 383,100 1 -011001100010 enkan 1 -011001100010 now-venerable 1 -011001100010 J.Q. 1 -011001100010 Qingchuan 1 -011001100010 Meurice 1 -011001100010 Choruses 1 -011001100010 Checkered 1 -011001100010 495,900 1 -011001100010 CCD-Still 1 -011001100010 Shotgun 1 -011001100010 Gemological 1 -011001100010 InterStudy 1 -011001100010 23-store 1 -011001100010 Rayne 1 -011001100010 CJW 1 -011001100010 Flat-Earth 1 -011001100010 Sanlandro 1 -011001100010 Deustche 1 -011001100010 Malta-Federal 1 -011001100010 201.48 1 -011001100010 Keiyo 1 -011001100010 Joyo 1 -011001100010 Inhalation 1 -011001100010 Ex-National 1 -011001100010 Collateralised 1 -011001100010 Migratory 1 -011001100010 PEACHEY 1 -011001100010 Tortilla 1 -011001100010 One-Dollar 1 -011001100010 Kamehameha 1 -011001100010 CUCINA 1 -011001100010 missile-equipped 1 -011001100010 Gopher 1 -011001100010 Xingang 1 -011001100010 Cost-Conscious 1 -011001100010 IfW 1 -011001100010 Cloverleaf 1 -011001100010 Interministerial 1 -011001100010 Treichville 1 -011001100010 Sheremetyevo 1 -011001100010 catalog-cookware 1 -011001100010 anti-Big 1 -011001100010 Humbling 1 -011001100010 Astoriya 1 -011001100010 non-Ivy 1 -011001100010 Berean 1 -011001100010 Anti-Takeover 1 -011001100010 Hijiribashi 1 -011001100010 Schipol 1 -011001100010 Medtec 1 -011001100010 Tuscan-Turkish-Art 1 -011001100010 Anderson-Blass 1 -011001100010 Baden-Wuerttembergischen 1 -011001100010 Cairo-Amman 1 -011001100010 Rotisserie 1 -011001100010 Vailsburg 1 -011001100010 HARIMA 1 -011001100010 Maccabees 1 -011001100010 Multisector 1 -011001100010 Deficit-Reduction 1 -011001100010 SuperCONducting 1 -011001100010 eight-company 1 -011001100010 3,300-title 1 -011001100010 Activated 1 -011001100010 Euroshuttle 1 -011001100010 Hallamshire 1 -011001100010 YIVO 1 -011001100010 Hurried 1 -011001100010 Marist 1 -011001100010 News/Eyewitness 1 -011001100010 E.G.I. 1 -011001100010 Armtech 1 -011001100010 Aerobic 1 -011001100010 Cheyney 1 -011001100010 al-Quds 1 -011001100010 Woodleaf 1 -011001100010 Kin 1 -011001100010 Shipbuilder 1 -011001100010 Hospital-Affiliated 1 -011001100010 Softnomics 1 -011001100010 Shamanistic 1 -011001100010 JCO 1 -011001100010 Valproic 1 -011001100010 Makinac 1 -011001100010 Storeys 1 -011001100010 88-open 1 -011001100010 Ubaf 1 -011001100010 Pultizer 1 -011001100010 AEG-Westinghouse 1 -011001100010 Walter-Grounds 1 -011001100010 Wanango 1 -011001100010 Managua-based 1 -011001100010 155,900 1 -011001100010 47,240 1 -011001100010 Kaleidoscope 1 -011001100010 Anti-British 1 -011001100010 605,050 1 -011001100010 Conecticut 1 -011001100010 Hotel-Motel 1 -011001100010 Monteleone 1 -011001100010 Pick-Up 1 -011001100010 Paraplegia 1 -011001100010 ocean-hugging 1 -011001100010 ContiTrade 1 -011001100010 Kyoungsang-Nam 1 -011001100010 Manhattanville 1 -011001100010 Sukimandi 1 -011001100010 Colden 1 -011001100010 MidAmerican 1 -011001100010 Bullock's-Bullock's 1 -011001100010 Ararat 1 -011001100010 Reprimanded 1 -011001100010 Abandons 1 -011001100010 CSL 1 -011001100010 Smokejumper 1 -011001100010 56-outlet 1 -011001100010 NOP 1 -011001100010 Masssachusetts 1 -011001100010 UJB 1 -011001100010 Bethmann 1 -011001100010 Political-Military 1 -011001100010 patronage-free 1 -011001100010 Tellessen 1 -011001100010 Coburg 1 -011001100010 Trans-America 1 -011001100010 Harvard-Smithsonian 1 -011001100010 then-teetering 1 -011001100010 XIT 1 -011001100010 Hansin 1 -011001100010 Adel-DeSoto 1 -011001100010 A-Z 1 -011001100010 GGD-89-120 1 -011001100010 748,500 1 -011001100010 Inter-bank 1 -011001100010 PCP. 1 -011001100010 non-Common 1 -011001100010 Hotelkeepers 1 -011001100010 Monarchist 1 -011001100010 Chunghwa 1 -011001100010 Faribundo 1 -011001100010 Inglaterra 1 -011001100010 Martime 1 -011001100010 Yodobashi 1 -011001100010 Schiphol 1 -011001100010 Fatah-Revolutionary 1 -011001100010 Daughtry 1 -011001100010 Crofoot 1 -011001100010 leftist-led 1 -011001100010 ex-Rainier 1 -011001100010 Winthrop-University 1 -011001100010 Michinoku 1 -011001100010 Geonomics 1 -011001100010 Counterintelligence 1 -011001100010 CXY 1 -011001100010 Beachfront 1 -011001100010 2,990,000 1 -011001100010 Truscott 1 -011001100010 Serene 1 -011001100010 gods. 1 -011001100010 Lusty 1 -011001100010 Brookland 1 -011001100010 Internatinoal 1 -011001100010 Fujien 1 -011001100010 SeaFest/JAC 1 -011001100010 Maclord 1 -011001100010 post-O 1 -011001100010 Abell 1 -011001100010 Ventech 1 -011001100010 Interprobe 1 -011001100010 Dubaibased 1 -011001100010 KMS/Domina 1 -011001100010 Pediatric 1 -011001100010 TrustCo 1 -011001100010 Inter-Valley 1 -011001100010 Kaitex 1 -011001100010 canvas-and-rubber 1 -011001100010 Canada-Newfoundland 1 -011001100010 Fund/Assets 1 -011001100010 Rheinisch-West 1 -011001100010 SDK 1 -011001100010 Shroders 1 -011001100010 drought-hit 1 -011001100010 Floreffe 1 -011001100010 Bellelli 1 -011001100010 Airliner 1 -011001100010 Stileman 1 -011001100010 Schomburg 1 -011001100010 Teratology 1 -011001100010 LYNTON 1 -011001100010 Phobic 1 -011001100010 Panamerican 1 -011001100010 Oesterreische 1 -011001100010 Tongas 1 -011001100010 62-inch-long 1 -011001100010 Shaba 1 -011001100010 Inwood 1 -011001100010 Cocoanut 1 -011001100010 SUIZZERA 1 -011001100010 Baltusrol 1 -011001100010 Bethune-Cookman 1 -011001100010 Intercommunity 1 -011001100010 Smith-Richardson 1 -011001100010 Diepkloof 1 -011001100010 Fatwa 1 -011001100010 Sundance-based 1 -011001100010 Mezhdunarodnaya 1 -011001100010 seventh-ranked 1 -011001100010 Hunterian 1 -011001100010 IGS 1 -011001100010 Augustana 2 -011001100010 High-Flex 2 -011001100010 Co-Operative 2 -011001100010 highminded 2 -011001100010 CV 2 -011001100010 Carnivorous 2 -011001100010 Tilles 2 -011001100010 Muhlenberg 2 -011001100010 274,800 2 -011001100010 Planters-Life 2 -011001100010 Mid-Continental 2 -011001100010 Matsushita-Ultra 2 -011001100010 Humanitarian-Aid 2 -011001100010 Inter-Agency 2 -011001100010 Cami 2 -011001100010 Nantenshi 2 -011001100010 316,900 2 -011001100010 CBA 2 -011001100010 Nonfat 2 -011001100010 96-year-old 2 -011001100010 B2C 2 -011001100010 Fairlane 2 -011001100010 Skyland 2 -011001100010 Mythical 2 -011001100010 Gogarburn 2 -011001100010 Shanghai-Volkswagen 2 -011001100010 15-nation 2 -011001100010 Raptor 2 -011001100010 In-flight 2 -011001100010 Licorice 2 -011001100010 Barringer 2 -011001100010 Broccoli 2 -011001100010 Mnemosyne 2 -011001100010 Firstplace 2 -011001100010 ExportImport 2 -011001100010 Temper 2 -011001100010 Hertford 2 -011001100010 Panora-Linden 2 -011001100010 Trans-Siberian 2 -011001100010 Lochalsh 2 -011001100010 Gramophone 2 -011001100010 ICS 2 -011001100010 KNX 2 -011001100010 Tranquility 2 -011001100010 MultiMedia 2 -011001100010 Medill 2 -011001100010 Unigard 2 -011001100010 Weatherhead 2 -011001100010 Harbus 2 -011001100010 Stedelijk 2 -011001100010 Houlder 2 -011001100010 Rauma-Repola 2 -011001100010 Biophysics 2 -011001100010 Changi 2 -011001100010 MidDay 2 -011001100010 long-controversial 2 -011001100010 Interparliamentary 2 -011001100010 Cardio 2 -011001100010 Romneya 2 -011001100010 Weequahic 2 -011001100010 Brookdale 2 -011001100010 Bodleian 2 -011001100010 50,000-member 2 -011001100010 Aix-en-Provence 2 -011001100010 Karma 2 -011001100010 Walker-Allied 2 -011001100010 Plekhanov 2 -011001100010 CanadianOxy 2 -011001100010 PF 2 -011001100010 Migraine 2 -011001100010 Oesterreichishe 2 -011001100010 Cheerful 2 -011001100010 Linante 2 -011001100010 Wister 2 -011001100010 Practising 2 -011001100010 Pretzel 2 -011001100010 Galloping 2 -011001100010 Convest 2 -011001100010 Diogenes 2 -011001100010 800-member 2 -011001100010 Anti-Saloon 2 -011001100010 Aucklands 2 -011001100010 Rymac 2 -011001100010 Nolo 2 -011001100010 Audobon 2 -011001100010 Hampden-Sydney 2 -011001100010 semigovernmental 2 -011001100010 Danske 2 -011001100010 Conard 2 -011001100010 Unclaimed 2 -011001100010 Strathclyde 2 -011001100010 Theoretical 2 -011001100010 Discrete 2 -011001100010 UA-Columbia 2 -011001100010 Molluscan 2 -011001100010 Anti-Violence 2 -011001100010 Asean-Japan 2 -011001100010 Capita 2 -011001100010 Montour 2 -011001100010 Hyster-Yale 2 -011001100010 Grady-Stack 2 -011001100010 Predictive 2 -011001100010 IBAA 2 -011001100010 Combatting 2 -011001100010 Hepworth 2 -011001100010 quarter-acre 2 -011001100010 Multi-District 2 -011001100010 Orkay 2 -011001100010 Nassau-based 2 -011001100010 Ririe-Woodbury 2 -011001100010 KA 2 -011001100010 Jambalaya 2 -011001100010 Deaconness 2 -011001100010 S-J 2 -011001100010 Mailorder 2 -011001100010 Marshall-Wythe 2 -011001100010 Binary 2 -011001100010 Kurchatov 2 -011001100010 Rotch 2 -011001100010 Bike 2 -011001100010 Up-in 2 -011001100010 Carnegie-Rochester 2 -011001100010 Bayporte 2 -011001100010 Vanishing 2 -011001100010 DAI-ICHI 3 -011001100010 Gerontological 3 -011001100010 Nelson-Atkins 3 -011001100010 Visitor 3 -011001100010 10,000-member 3 -011001100010 Nucleic 3 -011001100010 Cranbrook 3 -011001100010 now-closed 3 -011001100010 Westmont 3 -011001100010 American-China 3 -011001100010 Hottentot 3 -011001100010 Navcom 3 -011001100010 Westchase 3 -011001100010 Standardized 3 -011001100010 Bellarosa 3 -011001100010 Needy 3 -011001100010 Mostazafan 3 -011001100010 F.E.A. 3 -011001100010 non-Social 3 -011001100010 High-Tech 3 -011001100010 Citizen/Labor 3 -011001100010 Malev 3 -011001100010 Ko-Yung 3 -011001100010 Gilcrease 3 -011001100010 Cane 3 -011001100010 50-passenger 3 -011001100010 Volleyball 3 -011001100010 IBJ-Schroder 3 -011001100010 Hard-Line 3 -011001100010 Limestone 3 -011001100010 Nicollet 3 -011001100010 Aswan 3 -011001100010 Waterbed 3 -011001100010 USHA 3 -011001100010 non-National 3 -011001100010 Superregional 3 -011001100010 Perimeter 3 -011001100010 Newlywed 3 -011001100010 Ridglea 3 -011001100010 Eastside 3 -011001100010 Haymarket 3 -011001100010 Bullocks-Bullocks 3 -011001100010 Firstate 3 -011001100010 Frank-Guenther 3 -011001100010 Tegel 3 -011001100010 Scleroderma 3 -011001100010 Macalester 3 -011001100010 Soundview 3 -011001100010 Acquires 3 -011001100010 Astrophysical 3 -011001100010 Tummy 3 -011001100010 Ecumenical 3 -011001100010 Unfinished 3 -011001100010 Passamaquoddy 3 -011001100010 Rin 3 -011001100010 Neckwear 3 -011001100010 High-Yield 3 -011001100010 Platonic 3 -011001100010 Dinkum 3 -011001100010 Integra-A 3 -011001100010 Toxin 3 -011001100010 Wayside 4 -011001100010 Suicidal 4 -011001100010 IVI 4 -011001100010 Annenberg/CPB 4 -011001100010 Naumburg 4 -011001100010 Enchanted 4 -011001100010 HZN 4 -011001100010 HOGG 4 -011001100010 BARLOW 4 -011001100010 Pollsmoor 4 -011001100010 McIntire 4 -011001100010 Pro-Life 4 -011001100010 Cervical 4 -011001100010 Drive-Buy 4 -011001100010 Atom 4 -011001100010 Lattice 4 -011001100010 Refuse 4 -011001100010 DTH 4 -011001100010 RAC 4 -011001100010 Kogod 4 -011001100010 /Bullocks 4 -011001100010 Kollsman 4 -011001100010 Wen 4 -011001100010 Firstier 4 -011001100010 Intercollegiate 4 -011001100010 InvesTech 4 -011001100010 Welder 4 -011001100010 Holco 4 -011001100010 Villers 4 -011001100010 TCPL 4 -011001100010 Presbyterian-University 4 -011001100010 Right-to-Life 4 -011001100010 Fresno-based 4 -011001100010 Epilepsy 4 -011001100010 Laissez-Faire 4 -011001100010 Canisius 4 -011001100010 ex-National 4 -011001100010 60-Minute 4 -011001100010 Grapefruit 4 -011001100010 Lod 4 -011001100010 Claxton 4 -011001100010 Cavendish 5 -011001100010 Farabundo 5 -011001100010 Worldwatch 5 -011001100010 Embarcadero 5 -011001100010 Bicoastal 5 -011001100010 Eastex 5 -011001100010 Krannert 5 -011001100010 Knickerbocker 5 -011001100010 Classified 5 -011001100010 Dolmy 5 -011001100010 Toluca 5 -011001100010 Designated 5 -011001100010 Ripon 5 -011001100010 Commemorative 5 -011001100010 C-E 5 -011001100010 Jaffee 5 -011001100010 WINTERTHUR 5 -011001100010 Michoud 6 -011001100010 Christiania 6 -011001100010 Sunstate 6 -011001100010 McGeorge 6 -011001100010 Armored 6 -011001100010 PaineWebber/Geodyne 6 -011001100010 Handwriting 6 -011001100010 Tabernacle 6 -011001100010 Bagdad 6 -011001100010 Cityfront 6 -011001100010 52-story 6 -011001100010 Carburos 6 -011001100010 Culinary 6 -011001100010 Thyssen-Bornemisza 6 -011001100010 American-Soviet 6 -011001100010 Playwrights 6 -011001100010 Hacienda 6 -011001100010 Chugoku 6 -011001100010 Infrared 6 -011001100010 D&K 6 -011001100010 Farmworker 6 -011001100010 Takushoku 6 -011001100010 Earned 6 -011001100010 Mule 6 -011001100010 Haneda 6 -011001100010 Periodical 6 -011001100010 Mises 6 -011001100010 Formaldehyde 6 -011001100010 Counterterrorism 6 -011001100010 Wormald 6 -011001100010 Retiree 6 -011001100010 5905 7 -011001100010 Hokuriku 7 -011001100010 Bilingual 7 -011001100010 Vocational 7 -011001100010 TMC 7 -011001100010 Asahan 7 -011001100010 Goldmine 7 -011001100010 Osterreichische 7 -011001100010 RJ 7 -011001100010 Merrimack 7 -011001100010 Fraternal 7 -011001100010 Saitama 7 -011001100010 Spoleto 7 -011001100010 Mid-Continent 7 -011001100010 Ravinia 7 -011001100010 Efficient 8 -011001100010 Fund-Raising 8 -011001100010 Humanitarian 8 -011001100010 Privy 8 -011001100010 Harborside 8 -011001100010 WestAmerica 8 -011001100010 Radcliffe 8 -011001100010 Lend 8 -011001100010 Organic 8 -011001100010 Friction 8 -011001100010 Majik 8 -011001100010 Bullocks 8 -011001100010 Tobu 8 -011001100010 Beige 8 -011001100010 Narodny 9 -011001100010 Fustat 9 -011001100010 Kimpo 9 -011001100010 All-Union 9 -011001100010 Biltmore 9 -011001100010 Restricted 9 -011001100010 Popeyes 9 -011001100010 Speedy 9 -011001100010 Bluegrass 9 -011001100010 BZ 10 -011001100010 Saehan 10 -011001100010 Southstate 10 -011001100010 PMI 10 -011001100010 O.H. 10 -011001100010 Grinnell 10 -011001100010 DSL 10 -011001100010 Maroon 10 -011001100010 Miniature 11 -011001100010 IMF-World 11 -011001100010 Spavo 11 -011001100010 Shipbuilders 12 -011001100010 Christic 12 -011001100010 Formosa 12 -011001100010 Dana-Farber 12 -011001100010 Skin 12 -011001100010 Northland 13 -011001100010 LNS 13 -011001100010 Karolinska 13 -011001100010 S&A 13 -011001100010 Theological 13 -011001100010 Oesterreichische 13 -011001100010 Kyowa 13 -011001100010 Nederlandsche 13 -011001100010 Ilhae 14 -011001100010 Cooper-Hewitt 14 -011001100010 Cottage 14 -011001100010 Anti-Defamation 14 -011001100010 Topkapi 14 -011001100010 Tax-Free 15 -011001100010 Constituent 15 -011001100010 then-National 15 -011001100010 Intellectual 15 -011001100010 Mister 16 -011001100010 Elysee 16 -011001100010 Amsterdam-Rotterdam 16 -011001100010 Peachtree 16 -011001100010 Dormitory 16 -011001100010 Unified 16 -011001100010 Shared 17 -011001100010 Guangzhou 17 -011001100010 Deaconess 17 -011001100010 Bowdoin 17 -011001100010 Hirshhorn 17 -011001100010 Insured 17 -011001100010 Freese-Notis 18 -011001100010 Sharper 18 -011001100010 Mojave 19 -011001100010 Interfaith 19 -011001100010 Supplemental 20 -011001100010 Musical 20 -011001100010 Farragut 20 -011001100010 Epcot 20 -011001100010 Tomato 21 -011001100010 Tropical 21 -011001100010 No-Load 21 -011001100010 MNC 21 -011001100010 Guadalupe 21 -011001100010 Grosse 22 -011001100010 Entrepreneurial 22 -011001100010 Tokai 22 -011001100010 Architectural 22 -011001100010 N.Z. 22 -011001100010 Ancient 23 -011001100010 Appellate 23 -011001100010 Babson 23 -011001100010 Nightly 23 -011001100010 Biological 23 -011001100010 Joffrey 24 -011001100010 ML 24 -011001100010 Algemene 25 -011001100010 Juilliard 25 -011001100010 Buckingham 25 -011001100010 Multiple 25 -011001100010 Soccer 25 -011001100010 Salvation 26 -011001100010 Collegiate 26 -011001100010 Co-operative 28 -011001100010 Electro 31 -011001100010 Humane 31 -011001100010 Immune 31 -011001100010 Wilderness 33 -011001100010 Headline 33 -011001100010 Coupon 34 -011001100010 Guggenheim 34 -011001100010 Electoral 34 -011001100010 Pasteur 34 -011001100010 Mad 35 -011001100010 VR 35 -011001100010 DG 36 -011001100010 Stapleton 42 -011001100010 Hambros 43 -011001100010 Vanity 47 -011001100010 Administrative 47 -011001100010 C.T.C. 47 -011001100010 Original 48 -011001100010 Heathrow 50 -011001100010 Monkey 51 -011001100010 Plain 55 -011001100010 Historical 58 -011001100010 Bolshoi 58 -011001100010 Junior 59 -011001100010 Pro 60 -011001100010 Pall 60 -011001100010 Toronto-Dominion 61 -011001100010 Cal 67 -011001100010 Hartsfield 68 -011001100010 Judicial 73 -011001100010 Contemporary 81 -011001100010 Evening 81 -011001100010 Ivy 84 -011001100010 Sky 84 -011001100010 Automatic 86 -011001100010 Youth 87 -011001100010 Export-Import 90 -011001100010 Ex-Im 94 -011001100010 Intercontinental 95 -011001100010 Certified 96 -011001100010 Legislative 99 -011001100010 Cato 100 -011001100010 Leadership 104 -011001100010 Criminal 108 -011001100010 Merchant 119 -011001100010 Rite 121 -011001100010 Rural 125 -011001100010 IDS 126 -011001100010 Atomic 133 -011001100010 Holy 134 -011001100010 Popular 151 -011001100010 Antitrust 156 -011001100010 Dartmouth 157 -011001100010 Sanwa 161 -011001100010 Naval 184 -011001100010 Progressive 187 -011001100010 Revolutionary 190 -011001100010 Morning 230 -011001100010 Dresdner 243 -011001100010 Sierra 251 -011001100010 Memorial 283 -011001100010 Peoples 299 -011001100010 Better 302 -011001100010 Port 326 -011001100010 Joint 381 -011001100010 Open 414 -011001100010 Independent 462 -011001100010 Small 610 -011001100010 Strategic 688 -011001100010 Red 698 -011001100010 Deutsche 766 -011001100010 Common 837 -011001100010 Royal 1292 -011001100010 National 15347 -011001100010 Social 1817 -011001100011 leftist-dominated 1 -011001100011 Over-the-Hill 1 -011001100011 Marimba 1 -011001100011 high-firepower 1 -011001100011 Anti-Clot 1 -011001100011 Fattoria 1 -011001100011 Sarinah 1 -011001100011 Christian-controlled 1 -011001100011 anti-State 1 -011001100011 energy-wealthy 1 -011001100011 now-adult 1 -011001100011 Massachusettts 1 -011001100011 Schat-Marine 1 -011001100011 tattoo-armed 1 -011001100011 Dramatist 1 -011001100011 Panchen 1 -011001100011 Stalag 1 -011001100011 heavier-hitting 1 -011001100011 left-handed-hitting 1 -011001100011 Circumlocution 1 -011001100011 Indiana-born 1 -011001100011 M&L 1 -011001100011 industry-tracking 1 -011001100011 Binladin 1 -011001100011 Califonria 1 -011001100011 graillike 1 -011001100011 Solar-Cal 1 -011001100011 estat 1 -011001100011 Annotated 1 -011001100011 99-bed 1 -011001100011 Ingeniero 1 -011001100011 Accrediting 1 -011001100011 Kharkov 1 -011001100011 much-misrepresented 1 -011001100011 Pontifical 1 -011001100011 Boesksy 1 -011001100011 Tsushima 1 -011001100011 Palk 1 -011001100011 eight-time 1 -011001100011 graft-ridden 1 -011001100011 knock-kneed 1 -011001100011 always-approachable 1 -011001100011 Ritsumeikan 1 -011001100011 31-nation 1 -011001100011 Clarenden 1 -011001100011 Jesuit-run 1 -011001100011 243-bed 1 -011001100011 Scranton-Wilkes 1 -011001100011 Kremen 1 -011001100011 Gulbaddin 1 -011001100011 Seagram-Cuba 1 -011001100011 Impediments 1 -011001100011 unstraw 1 -011001100011 314-pound 1 -011001100011 then-HUD 1 -011001100011 Free-Choice 1 -011001100011 Texaco-Carl 1 -011001100011 Adminstrative 1 -011001100011 Failure-to-Enforce 1 -011001100011 High/Scope 1 -011001100011 Impediment 1 -011001100011 Shriner-Midland 1 -011001100011 often-stubborn 1 -011001100011 Internationalist 1 -011001100011 Carls 1 -011001100011 Kenmar 1 -011001100011 Autobiographical 1 -011001100011 Exercycle 1 -011001100011 600-odd 1 -011001100011 Amaury 1 -011001100011 University-Purdue 1 -011001100011 Polytechic 1 -011001100011 Low-Risk 1 -011001100011 GE-Justice 1 -011001100011 Japanese-held 1 -011001100011 much-revered 1 -011001100011 Mitofksy 1 -011001100011 ex-Labor 1 -011001100011 Jerusalem-born 1 -011001100011 Councillor 1 -011001100011 Stop-the-Presses 1 -011001100011 newsmagazine-cover 1 -011001100011 21-lawyer 1 -011001100011 Thundering 1 -011001100011 Hot-Air 1 -011001100011 freeholder 2 -011001100011 Quadrennial 2 -011001100011 Premium-Income 2 -011001100011 Drouot 2 -011001100011 Interpreters 2 -011001100011 35-store 2 -011001100011 Andromeda 2 -011001100011 GAO. 2 -011001100011 Fiery 2 -011001100011 Reformer 2 -011001100011 Intercantonal 2 -011001100011 rabi 2 -011001100011 now-disgraced 2 -011001100011 Dramatists 2 -011001100011 Hornes 2 -011001100011 Tem 2 -011001100011 Freehling 2 -011001100011 Politico-Military 3 -011001100011 Dillards 3 -011001100011 Fatman 3 -011001100011 Shutdown 3 -011001100011 Federated/Allied 3 -011001100011 24-country 3 -011001100011 Tianqiao 3 -011001100011 95-year-old 3 -011001100011 Dyno 3 -011001100011 Hamline 4 -011001100011 Comite 4 -011001100011 Palazzo 5 -011001100011 Transporation 5 -011001100011 Bailout 6 -011001100011 Bin 6 -011001100011 Domaine 6 -011001100011 Gare 8 -011001100011 Trilateral 10 -011001100011 Donaldsons 13 -011001100011 U.S.S. 13 -011001100011 Elektrisk 15 -011001100011 Landmarks 20 -011001100011 Literary 33 -011001100011 Dalai 80 -011001100011 Oval 98 -011001100011 Antonin 104 -011001100011 Writers 107 -011001100011 Economist 154 -011001100011 Counsel 178 -011001100011 USS 182 -011001100011 Interior 409 -011001100011 Census 435 -011001100011 Rev. 557 -011001100011 Agriculture 1440 -011001100011 Transportation 1717 -011001100011 Defense 3008 -011001100011 Labor 3247 -011001100011 Commerce 3768 -011001100011 State 5583 -011001100011 Justice 4627 -0110011001000 Treasury-futures 1 -0110011001000 Producing-company 1 -0110011001000 Foreign-aid 1 -0110011001000 Community-foundation 1 -0110011001000 Ex-Gov 1 -0110011001000 Credentialing 1 -0110011001000 REICHHOLD 1 -0110011001000 Institutional-investment 1 -0110011001000 Hassock 1 -0110011001000 Barbells 1 -0110011001000 Personal-consumption 1 -0110011001000 Philbrook 1 -0110011001000 Blacksmithing 1 -0110011001000 MANDARIN 1 -0110011001000 Fffft 1 -0110011001000 Beguiling 1 -0110011001000 Mellow 1 -0110011001000 Konnie 1 -0110011001000 e-Estimated 1 -0110011001000 Meat-animal 1 -0110011001000 School-board 1 -0110011001000 morale-enhancing 1 -0110011001000 AT&T/PHILIPS 1 -0110011001000 Farm-equipment 1 -0110011001000 Ferd 1 -0110011001000 Refined-product 1 -0110011001000 Horsewhip 1 -0110011001000 Frat 1 -0110011001000 Brandeis/ 1 -0110011001000 Intermediate-goods 1 -0110011001000 Raw-materials 1 -0110011001000 County-fair 1 -0110011001000 Stock-related 1 -0110011001000 Human-resource 1 -0110011001000 Musty 1 -0110011001000 Hom 1 -0110011001000 Hubris 1 -0110011001000 Manufacters 1 -0110011001000 Wrong-o 1 -0110011001000 Non-durable 1 -0110011001000 deal-cutters 1 -0110011001000 YEEEEH. 1 -0110011001000 Baaa 1 -0110011001000 Telephone-company 1 -0110011001000 People-oriented 1 -0110011001000 Laziness 1 -0110011001000 Late-Scholastic 1 -0110011001000 Pacifiers 1 -0110011001000 Whupped 1 -0110011001000 Food-grain 1 -0110011001000 700,000-subscriber 1 -0110011001000 Groaning 1 -0110011001000 1992. 1 -0110011001000 Whoosh 1 -0110011001000 erm 1 -0110011001000 Bell-company 1 -0110011001000 0127 1 -0110011001000 Higher-education 1 -0110011001000 Harnessing 1 -0110011001000 Granola 1 -0110011001000 O.A.S. 1 -0110011001000 Beatrice/Hunt 1 -0110011001000 Probucol 1 -0110011001000 282,800 1 -0110011001000 Maritime-union 1 -0110011001000 Corrugated-box 1 -0110011001000 Cynanamid 1 -0110011001000 ooo 1 -0110011001000 Education-group 1 -0110011001000 Natl 1 -0110011001000 Raffe 1 -0110011001000 ANADARKO 1 -0110011001000 more-refined 1 -0110011001000 Broadcast-industry 1 -0110011001000 Algierian 1 -0110011001000 Camcorder 1 -0110011001000 Swish 1 -0110011001000 Livid 1 -0110011001000 S.&W 1 -0110011001000 Green-coffee 1 -0110011001000 Hunt-company 1 -0110011001000 Mammal 1 -0110011001000 Hoarded 1 -0110011001000 Unstoppable 1 -0110011001000 Surreal 1 -0110011001000 Intelligience 1 -0110011001000 High-ticket 1 -0110011001000 Tough-Minded 1 -0110011001000 Newpaperman 1 -0110011001000 Curts 1 -0110011001000 Shared-savings-performance 1 -0110011001000 Laem 1 -0110011001000 Coffee-futures 1 -0110011001000 plant-sending 1 -0110011001000 Streamline 1 -0110011001000 1959-60 1 -0110011001000 1950-3 1 -0110011001000 1948-9 1 -0110011001000 1926-33 1 -0110011001000 1924-5 1 -0110011001000 1920-2 1 -0110011001000 1918-20 1 -0110011001000 1918-9 1 -0110011001000 1916-24 1 -0110011001000 1915-34 1 -0110011001000 1912-25 1 -0110011001000 1961-73 1 -0110011001000 1858-9 1 -0110011001000 1852-3 1 -0110011001000 1846-8 1 -0110011001000 1835-6 1 -0110011001000 1831-2 1 -0110011001000 1821-2 1 -0110011001000 1820-2 1 -0110011001000 1816-8 1 -0110011001000 1910-1 1 -0110011001000 1905-07 1 -0110011001000 1900-1 1 -0110011001000 1898-9 1 -0110011001000 1895-6 1 -0110011001000 1894-5 1 -0110011001000 1894-6 1 -0110011001000 1873-82 1 -0110011001000 1869-71 1 -0110011001000 1865-6 1 -0110011001000 Hr 1 -0110011001000 1814-5 1 -0110011001000 1813-4 1 -0110011001000 1806-10 1 -0110011001000 1801-5 1 -0110011001000 1798-1800 1 -0110011001000 super-competitive 1 -0110011001000 Tradable 1 -0110011001000 Budgeted 1 -0110011001000 Vol 1 -0110011001000 soymeal 1 -0110011001000 PANCANADIAN 1 -0110011001000 Straight-ahead 1 -0110011001000 Spiraling 1 -0110011001000 Well-educated 1 -0110011001000 Ditch 1 -0110011001000 TOMORROW 1 -0110011001000 Loretto-Hilton 1 -0110011001000 Horizontally 1 -0110011001000 Agricultural-futures 1 -0110011001000 Ha-ha 1 -0110011001000 Tailoring 1 -0110011001000 Megacorp 1 -0110011001000 +83 1 -0110011001000 Newspaper-industry 1 -0110011001000 G.B.S. 1 -0110011001000 Europessimism 1 -0110011001000 Expense-account 1 -0110011001000 plastics-industry 1 -0110011001000 Less-favored 1 -0110011001000 Per-i-od 1 -0110011001000 humm 1 -0110011001000 Oil-Change 1 -0110011001000 Trofe-o 1 -0110011001000 Shipping-industry 1 -0110011001000 Petroleum-futures 1 -0110011001000 Nr 1 -0110011001000 Chiropractor 1 -0110011001000 Theme-park 1 -0110011001000 Grocery-store 1 -0110011001000 Beef-cattle 1 -0110011001000 Hog-future 1 -0110011001000 Unleaded-gasoline 1 -0110011001000 Prodigal 1 -0110011001000 Crack-Crack 1 -0110011001000 cansheet 1 -0110011001000 Ka-boom 1 -0110011001000 Ka-BAM 1 -0110011001000 I.B.C. 1 -0110011001000 Nonbuilding-construction 1 -0110011001000 Assassinations 1 -0110011001000 Benedum 1 -0110011001000 Palm-Aire 1 -0110011001000 1,130-member 1 -0110011001000 BERRY 1 -0110011001000 Ex-Cpl 1 -0110011001000 Oil-product 1 -0110011001000 Publico 1 -0110011001000 Agriculture-ministry 1 -0110011001000 Uncritical 1 -0110011001000 shaes 1 -0110011001000 Then-Sen 1 -0110011001000 Crude-goods 1 -0110011001000 Tourism-industry 1 -0110011001000 Generic-industry 1 -0110011001000 Plant-and-equipment 1 -0110011001000 bank-industry 1 -0110011001000 Blood-Bright 1 -0110011001000 Desperate. 1 -0110011001000 Memory-chip 1 -0110011001000 Moscow-Health 1 -0110011001000 Real-estate-industry 1 -0110011001000 CONDOMINIUM 1 -0110011001000 Hypotheken-& 1 -0110011001000 Mineraloel 1 -0110011001000 uh. 1 -0110011001000 Grain-futures 1 -0110011001000 Porkbelly 1 -0110011001000 rawhide 1 -0110011001000 DBC 1 -0110011001000 Lower-than-average 1 -0110011001000 Government-set 1 -0110011001000 Per-household 1 -0110011001000 Bush-administration 1 -0110011001000 Surety-Inquiry 1 -0110011001000 Wood-products 1 -0110011001000 Sel 1 -0110011001000 Fed-steer 1 -0110011001000 Zowie 1 -0110011001000 Garrulous 1 -0110011001000 Backslapping 1 -0110011001000 Brokerage-industry 1 -0110011001000 Aluminum-ingot 1 -0110011001000 POSTCRIPTS 1 -0110011001000 Rickie 1 -0110011001000 middle-echelon 1 -0110011001000 Parishes 1 -0110011001000 Snore 1 -0110011001000 defense-purchasing 1 -0110011001000 Stock-index-futures 1 -0110011001000 Used-plane 1 -0110011001000 Farm-commodity 1 -0110011001000 archipelego 1 -0110011001000 Oil-future 1 -0110011001000 aircraft-structures 1 -0110011001000 Market-clearing 1 -0110011001000 Warmer 2 -0110011001000 Ka-BOOM 2 -0110011001000 DENTAL 2 -0110011001000 NISSHO 2 -0110011001000 Dango 2 -0110011001000 Dishonesty 2 -0110011001000 Nightclub 2 -0110011001000 Ummed 2 -0110011001000 Escot 2 -0110011001000 Counterfeiting 2 -0110011001000 Patna 2 -0110011001000 Incorporating 2 -0110011001000 Burundian 2 -0110011001000 Sola 2 -0110011001000 Fire-safety 2 -0110011001000 Guandong 2 -0110011001000 Small-Business 2 -0110011001000 CABBAGE 2 -0110011001000 Executed 2 -0110011001000 Disinflation 2 -0110011001000 Techny 2 -0110011001000 Caliphobia 2 -0110011001000 Medical-care 2 -0110011001000 Alstead 2 -0110011001000 1853-4 2 -0110011001000 1859 2 -0110011001000 Strike. 2 -0110011001000 Sci-Tech 2 -0110011001000 SULLIVAN 2 -0110011001000 Welding 2 -0110011001000 Terrifying 2 -0110011001000 Contingent 2 -0110011001000 Subordinate 2 -0110011001000 KQED 2 -0110011001000 Futures-industry 2 -0110011001000 Abi 2 -0110011001000 Nonferrous 2 -0110011001000 FOOTNOTE 2 -0110011001000 Outback 2 -0110011001000 SAINTS 2 -0110011001000 Functional 2 -0110011001000 Prudential- 2 -0110011001000 Consuela 2 -0110011001000 Sodick 2 -0110011001000 Thos 2 -0110011001000 Sham 2 -0110011001000 Beds 2 -0110011001000 Advicorp 2 -0110011001000 Videotheque 2 -0110011001000 Nameco 2 -0110011001000 ex-U.S. 2 -0110011001000 Decontrol 2 -0110011001000 Malting 2 -0110011001000 Savile 2 -0110011001000 Perwaja 2 -0110011001000 Ridgedale 2 -0110011001000 Pfaudler 2 -0110011001000 PowerBurst 2 -0110011001000 Senses 2 -0110011001000 Jarrod 2 -0110011001000 Bentham 2 -0110011001000 Cameloot 2 -0110011001000 Castiglione 2 -0110011001000 God-like 2 -0110011001000 Non-White 2 -0110011001000 Stanislaus 2 -0110011001000 Thypin 2 -0110011001000 MISSISSIPPI 2 -0110011001000 344.26 2 -0110011001000 Chatty 2 -0110011001000 Synthesis 2 -0110011001000 Giat 2 -0110011001000 Caning 2 -0110011001000 Etc 2 -0110011001000 Shiroki 2 -0110011001000 Rustproofing 2 -0110011001000 Non-ferrous 2 -0110011001000 Lieut 2 -0110011001000 Graphological 2 -0110011001000 Bachelors 2 -0110011001000 Cocoa-futures 2 -0110011001000 Japan-America 2 -0110011001000 Athenaeum 2 -0110011001000 CYPRUS 2 -0110011001000 Sokaiya 2 -0110011001000 OUT-OF-WORK 2 -0110011001000 16. 2 -0110011001000 TESORO 2 -0110011001000 Melchemie 2 -0110011001000 Cocomalt 2 -0110011001000 GAMCO 2 -0110011001000 Rush-Presbyterian-St 2 -0110011001000 DONOVAN 2 -0110011001000 Uncounted 2 -0110011001000 stemware 2 -0110011001000 Woodward-Clyde 2 -0110011001000 Farm-land 2 -0110011001000 Berta 2 -0110011001000 Bead 2 -0110011001000 Million-Dollar 3 -0110011001000 Doublespeak 3 -0110011001000 Displaced 3 -0110011001000 Nailatikau 3 -0110011001000 Clove 3 -0110011001000 Aesthetic 3 -0110011001000 Doomsday 3 -0110011001000 Hawthorn 3 -0110011001000 Repairing 3 -0110011001000 Florists 3 -0110011001000 Ang 3 -0110011001000 Soybean-meal 3 -0110011001000 Orange-juice 3 -0110011001000 Nikolais 3 -0110011001000 Mug 3 -0110011001000 CHEC 3 -0110011001000 Brougher 3 -0110011001000 Whisper 3 -0110011001000 DeCordova 3 -0110011001000 Pedestrian 3 -0110011001000 Taaffe 3 -0110011001000 Adequate 3 -0110011001000 Capital-equipment 3 -0110011001000 AUTOMATED 3 -0110011001000 Fabricators 3 -0110011001000 Lettuce 3 -0110011001000 Whack 3 -0110011001000 Unregulated 3 -0110011001000 Open-market 3 -0110011001000 Nitrogen 3 -0110011001000 LAX 3 -0110011001000 Actuarial 3 -0110011001000 Incremental 3 -0110011001000 Sticker 3 -0110011001000 Q.P.L. 3 -0110011001000 Tells 3 -0110011001000 Year-round 3 -0110011001000 Zebra 3 -0110011001000 Stromberg-Carlson 3 -0110011001000 1903-4 3 -0110011001000 Strident 3 -0110011001000 Theraplay 3 -0110011001000 Transgenic 3 -0110011001000 Nonviolent 3 -0110011001000 Sneaker 3 -0110011001000 Saville 3 -0110011001000 Ballston 4 -0110011001000 Scolari 4 -0110011001000 Looser 4 -0110011001000 Ripple 4 -0110011001000 Activist 4 -0110011001000 Pineapple 4 -0110011001000 OLYMPIC 4 -0110011001000 Pork-belly 4 -0110011001000 Sow 4 -0110011001000 Uh-huh 4 -0110011001000 Wafer 4 -0110011001000 Metro-Dade 4 -0110011001000 Secondary-market 4 -0110011001000 Observation 4 -0110011001000 QANTAS 4 -0110011001000 Fraternity 4 -0110011001000 Condo 4 -0110011001000 Midtown 4 -0110011001000 Copier 4 -0110011001000 Clerical 4 -0110011001000 PHILLIPS 4 -0110011001000 Abalone 4 -0110011001000 Cassette 4 -0110011001000 REFUND 4 -0110011001000 Alternate 4 -0110011001000 Benj 4 -0110011001000 Steeplechase 4 -0110011001000 Bottle 4 -0110011001000 Ya 4 -0110011001000 Sabotage 4 -0110011001000 Conway-Eastern 4 -0110011001000 Doubt 4 -0110011001000 Satire 4 -0110011001000 Blond 4 -0110011001000 Sugar-futures 4 -0110011001000 Tombstone 4 -0110011001000 Writes 4 -0110011001000 Hygrade 4 -0110011001000 Blimp 5 -0110011001000 Hmmm 5 -0110011001000 Fonstein 5 -0110011001000 Thomp 5 -0110011001000 SPECIALTY 5 -0110011001000 Artillery 5 -0110011001000 Macroeconomic 5 -0110011001000 Onion 5 -0110011001000 Andorra 5 -0110011001000 Newsstand 5 -0110011001000 Kowa 5 -0110011001000 Shun 5 -0110011001000 Cade 5 -0110011001000 Hog-futures 5 -0110011001000 MONTREAL 5 -0110011001000 Canola 5 -0110011001000 Rutile 5 -0110011001000 Laptop 5 -0110011001000 Uninhibited 5 -0110011001000 Toa 5 -0110011001000 S.R. 5 -0110011001000 Petroleum-product 5 -0110011001000 Federations 5 -0110011001000 TOTAL-CIE 5 -0110011001000 Ingot 5 -0110011001000 Tackle 5 -0110011001000 Modeling 5 -0110011001000 Fasting 6 -0110011001000 Catfish 6 -0110011001000 Buyout 6 -0110011001000 Breakup 6 -0110011001000 Guts 6 -0110011001000 Telemarketing 6 -0110011001000 Sponsor 6 -0110011001000 CODE 6 -0110011001000 Cossack 6 -0110011001000 Juror 6 -0110011001000 Gender 6 -0110011001000 Goulds 6 -0110011001000 UCSF 6 -0110011001000 Souvenir 6 -0110011001000 Illicit 6 -0110011001000 Cow 6 -0110011001000 Calf 6 -0110011001000 Undergraduate 6 -0110011001000 Singles 6 -0110011001000 B&H 6 -0110011001000 Skid 6 -0110011001000 Demons 6 -0110011001000 Respiratory 7 -0110011001000 Assumption 7 -0110011001000 Outplacement 7 -0110011001000 Targeted 7 -0110011001000 Nondurable 7 -0110011001000 Noise 7 -0110011001000 Scattergood 7 -0110011001000 Renovation 7 -0110011001000 Suggestion 7 -0110011001000 Copper-futures 7 -0110011001000 Kidney 7 -0110011001000 Executive-branch 7 -0110011001000 Thrift-industry 7 -0110011001000 MALE 7 -0110011001000 Loud 7 -0110011001000 Jolt 7 -0110011001000 Ups 7 -0110011001000 Booming 7 -0110011001000 Calcium 8 -0110011001000 Meal 8 -0110011001000 Appropriate 8 -0110011001000 Precious-metal 8 -0110011001000 Talent 8 -0110011001000 Mushroom 8 -0110011001000 Gymnastics 8 -0110011001000 Specialist 8 -0110011001000 1020 8 -0110011001000 Ministerial 8 -0110011001000 Arthritis 8 -0110011001000 OCCIDENTAL 8 -0110011001000 Mud 9 -0110011001000 Gilt 9 -0110011001000 Pawn 9 -0110011001000 Polyester 9 -0110011001000 Nest 9 -0110011001000 Rude 9 -0110011001000 Wicks 9 -0110011001000 Costume 9 -0110011001000 FEMALE 9 -0110011001000 Oat 9 -0110011001000 Sandwich 10 -0110011001000 Reliability 10 -0110011001000 Contingency 10 -0110011001000 Specialized 10 -0110011001000 En 10 -0110011001000 Bizarre 10 -0110011001000 Stamp 10 -0110011001000 Salary 10 -0110011001000 Wedding 10 -0110011001000 LUFTHANSA 11 -0110011001000 Accurate 11 -0110011001000 Pickands 11 -0110011001000 Heating-oil 11 -0110011001000 Nonprofit 11 -0110011001000 Horror 11 -0110011001000 Excise 11 -0110011001000 Print 12 -0110011001000 Barley 12 -0110011001000 Titanium 12 -0110011001000 Admission 12 -0110011001000 Junk-bond 12 -0110011001000 Cracker 12 -0110011001000 TCW 12 -0110011001000 Disabled 13 -0110011001000 POSTSCRIPTS 13 -0110011001000 Wm 13 -0110011001000 Corn-futures 13 -0110011001000 Recruiting 13 -0110011001000 Broker 13 -0110011001000 Vegetable 13 -0110011001000 Hon 13 -0110011001000 Hedge 13 -0110011001000 Farmland 14 -0110011001000 Precious-metals 14 -0110011001000 Kash 14 -0110011001000 Ticket 14 -0110011001000 Busy 14 -0110011001000 Reef 14 -0110011001000 Charitable 14 -0110011001000 Freer 14 -0110011001000 Jos 14 -0110011001000 Jumbo 15 -0110011001000 Counter 16 -0110011001000 Peer 16 -0110011001000 Consent 16 -0110011001000 Bicycle 17 -0110011001000 Yen 17 -0110011001000 Taxpayer 17 -0110011001000 Pacifica 17 -0110011001000 Kiewit 17 -0110011001000 Repair 17 -0110011001000 Luxury 17 -0110011001000 Overhead 17 -0110011001000 Passive 18 -0110011001000 Employer 18 -0110011001000 Admissions 18 -0110011001000 Fee 19 -0110011001000 P.O. 19 -0110011001000 VTR 20 -0110011001000 Charity 20 -0110011001000 Diplomatic 21 -0110011001000 Dual 21 -0110011001000 Parent 21 -0110011001000 Vendor 22 -0110011001000 Catalog 22 -0110011001000 Gamma 22 -0110011001000 Technological 23 -0110011001000 Potato 23 -0110011001000 Teacher 23 -0110011001000 Provincial 24 -0110011001000 Female 24 -0110011001000 Faculty 24 -0110011001000 Sheer 24 -0110011001000 Cocaine 24 -0110011001000 Uranium 25 -0110011001000 Profs 25 -0110011001000 Syndication 25 -0110011001000 Leather 26 -0110011001000 Killing 27 -0110011001000 Downtown 27 -0110011001000 Variable 27 -0110011001000 Innovative 28 -0110011001000 Pic 28 -0110011001000 Patient 28 -0110011001000 Alternative 29 -0110011001000 Customer 29 -0110011001000 Bargain 29 -0110011001000 Favorite 29 -0110011001000 PAY 30 -0110011001000 Material 30 -0110011001000 Seat 30 -0110011001000 Rotan 30 -0110011001000 Core 31 -0110011001000 ROYAL 31 -0110011001000 Law-enforcement 31 -0110011001000 Manufactured 32 -0110011001000 Pilot 32 -0110011001000 Frequent 33 -0110011001000 Nickel 33 -0110011001000 Selected 34 -0110011001000 Period 34 -0110011001000 Coin 34 -0110011001000 Crude-oil 35 -0110011001000 Extra 35 -0110011001000 Floor 35 -0110011001000 STANDARD 36 -0110011001000 Principal 36 -0110011001000 Electricity 37 -0110011001000 Pvt 39 -0110011001000 Bigger 39 -0110011001000 Supermarket 39 -0110011001000 Male 40 -0110011001000 Syndicate 40 -0110011001000 Operators 40 -0110011001000 Normal 40 -0110011001000 Passenger 42 -0110011001000 Cap 43 -0110011001000 Bolt 44 -0110011001000 Firm 45 -0110011001000 Retailing 45 -0110011001000 Plastic 47 -0110011001000 Fur 47 -0110011001000 Soft 47 -0110011001000 J.H. 47 -0110011001000 Double 48 -0110011001000 Durable 49 -0110011001000 Present 49 -0110011001000 Aggressive 51 -0110011001000 Newsprint 52 -0110011001000 Milk 52 -0110011001000 Worker 58 -0110011001000 Arbitrage 63 -0110011001000 Planned 63 -0110011001000 Junk 64 -0110011001000 Spot 65 -0110011001000 Convertible 67 -0110011001000 Settlement 68 -0110011001000 Vehicle 68 -0110011001000 Memory 68 -0110011001000 Prof 69 -0110011001000 Term 75 -0110011001000 Premium 78 -0110011001000 Primary 79 -0110011001000 Bretton 79 -0110011001000 Merger 82 -0110011001000 Residential 83 -0110011001000 Hog 84 -0110011001000 Race 86 -0110011001000 Gasoline 86 -0110011001000 Producer 92 -0110011001000 Stock-index 93 -0110011001000 Import 101 -0110011001000 Quarterly 102 -0110011001000 Official 102 -0110011001000 Pork 111 -0110011001000 Blood 113 -0110011001000 Cie 116 -0110011001000 Brand 116 -0110011001000 Wholesale 122 -0110011001000 Beer 122 -0110011001000 BRITISH 123 -0110011001000 Baseball 126 -0110011001000 Thrift 126 -0110011001000 Reps 131 -0110011001000 Brokerage 133 -0110011001000 Grain 134 -0110011001000 Platinum 141 -0110011001000 Job 151 -0110011001000 Cattle 158 -0110011001000 Student 161 -0110011001000 Future 167 -0110011001000 Precious 171 -0110011001000 Factory 190 -0110011001000 Soybean 207 -0110011001000 Sens 210 -0110011001000 Personal 253 -0110011001000 Military 255 -0110011001000 Airline 261 -0110011001000 Cash 262 -0110011001000 WHO 262 -0110011001000 Copper 264 -0110011001000 Wheat 314 -0110011001000 Pay 318 -0110011001000 Car 336 -0110011001000 Export 340 -0110011001000 Silver 355 -0110011001000 Political 395 -0110011001000 Retail 401 -0110011001000 Share 443 -0110011001000 Construction 526 -0110011001000 Good 565 -0110011001000 Alex 568 -0110011001000 Corporate 912 -0110011001000 Company 1027 -0110011001000 Consumer 1129 -0110011001000 Government 1477 -0110011001000 Bond 1711 -0110011001000 Manufacturers 1955 -0110011001000 Gold 2146 -0110011001000 Industry 2259 -0110011001000 Messrs 2224 -0110011001001 Implored 1 -0110011001001 Archibishop 1 -0110011001001 Baii 1 -0110011001001 LEAN 1 -0110011001001 STEPHEN 1 -0110011001001 Ex-IRS 1 -0110011001001 Fasig 1 -0110011001001 then-Army 1 -0110011001001 Filipp 1 -0110011001001 Bluford 1 -0110011001001 Odin 1 -0110011001001 then-Central 1 -0110011001001 AIDED 1 -0110011001001 Tawny 1 -0110011001001 Qazi 1 -0110011001001 Ravenspurn 1 -0110011001001 jeu 1 -0110011001001 Ligamamada 1 -0110011001001 out-Reaganing 1 -0110011001001 map-maker 1 -0110011001001 mischaracterizing 1 -0110011001001 .Daniel 1 -0110011001001 Chapeau 1 -0110011001001 Honorine 1 -0110011001001 CLOAK 1 -0110011001001 Caran 1 -0110011001001 then-Education 1 -0110011001001 Communal 1 -0110011001001 175-man 1 -0110011001001 A.M.S. 1 -0110011001001 Pimenta 1 -0110011001001 Novedades 1 -0110011001001 then-NRC 1 -0110011001001 HYDE 1 -0110011001001 2515 1 -0110011001001 Extracto 1 -0110011001001 Ojos 1 -0110011001001 then-SEC 1 -0110011001001 Chancellery 1 -0110011001001 VILLAS 1 -0110011001001 ASMP 1 -0110011001001 then-bank 1 -0110011001001 Limitada 1 -0110011001001 Dallis 1 -0110011001001 Pano 1 -0110011001001 efficiency-minded 1 -0110011001001 Hwesu 1 -0110011001001 Cia.Telefonica 1 -0110011001001 Kenn 1 -0110011001001 Quai 1 -0110011001001 250,416 1 -0110011001001 Nacionales 1 -0110011001001 95,280 1 -0110011001001 then-Budget 1 -0110011001001 Quin 1 -0110011001001 Tirey 1 -0110011001001 Eff 1 -0110011001001 better-behaved 1 -0110011001001 Unibanco-Banco 1 -0110011001001 Picos 1 -0110011001001 CANADIANS 1 -0110011001001 Then-Prime 1 -0110011001001 Satnam 1 -0110011001001 Kuwaiti-controlled 1 -0110011001001 Fikry 1 -0110011001001 then-CFTC 1 -0110011001001 soybean-association 1 -0110011001001 Libertadores 1 -0110011001001 nostalgie 1 -0110011001001 RABBIS 1 -0110011001001 LIEN 1 -0110011001001 ARCHIE 1 -0110011001001 lambast 1 -0110011001001 Frederich 1 -0110011001001 --Edward 1 -0110011001001 986,500 1 -0110011001001 196,196 1 -0110011001001 LIENS 1 -0110011001001 SMC/ 1 -0110011001001 Agriculture-Fishery 1 -0110011001001 then-House 1 -0110011001001 Jalpa 1 -0110011001001 Valeriy 1 -0110011001001 Amand 1 -0110011001001 Successfully 1 -0110011001001 Lael 1 -0110011001001 Girbaud 1 -0110011001001 OPENING 1 -0110011001001 PROFESSORS 1 -0110011001001 5,096,251 1 -0110011001001 Twenty-nine-year-old 1 -0110011001001 Gunning-Mueller 1 -0110011001001 Dese 1 -0110011001001 Then-Defense 1 -0110011001001 YIN 1 -0110011001001 SAGEM-Societe 1 -0110011001001 PARALYSIS 1 -0110011001001 PELTZ 1 -0110011001001 SUNNY 1 -0110011001001 yet-to-be-famous 1 -0110011001001 Croxley 1 -0110011001001 1,441,700 1 -0110011001001 Finsbury 1 -0110011001001 Piat 1 -0110011001001 Inducting 1 -0110011001001 Ex-Singapore 1 -0110011001001 Munawar 1 -0110011001001 Arabe 1 -0110011001001 Abdul-Haadee 1 -0110011001001 Combinado 1 -0110011001001 Isla 1 -0110011001001 Then-Premier 1 -0110011001001 then-Paramount 1 -0110011001001 Pre-Parent 1 -0110011001001 Youthful-looking 1 -0110011001001 Universidad 1 -0110011001001 Vicaria 1 -0110011001001 Gerhart 1 -0110011001001 Monchengladbach-based 1 -0110011001001 Addie 1 -0110011001001 Khent 1 -0110011001001 Pointed 1 -0110011001001 DANA 1 -0110011001001 DEL 1 -0110011001001 inspecteur 1 -0110011001001 Renovacion 1 -0110011001001 stogie-loving 1 -0110011001001 Moore. 1 -0110011001001 Ateliers 1 -0110011001001 2936 1 -0110011001001 GEO. 1 -0110011001001 Melia 1 -0110011001001 Socieded 1 -0110011001001 huelgistas 1 -0110011001001 Eleftherios 1 -0110011001001 Deogracias 1 -0110011001001 theorie 1 -0110011001001 Constantinos 1 -0110011001001 1120 1 -0110011001001 Marinha 1 -0110011001001 Clebern 1 -0110011001001 1,500,850 1 -0110011001001 Bohuslav 1 -0110011001001 Nevado 1 -0110011001001 Savino 1 -0110011001001 S.& 1 -0110011001001 Lavere 1 -0110011001001 Abdulaziz 1 -0110011001001 Sobhi 1 -0110011001001 Ghislain 1 -0110011001001 Creve 1 -0110011001001 Ex-President 1 -0110011001001 Finton 1 -0110011001001 113,854 1 -0110011001001 187,126 1 -0110011001001 E.F.& 1 -0110011001001 crise 1 -0110011001001 173,846 1 -0110011001001 Consorcio 1 -0110011001001 Break-Even 1 -0110011001001 Jocelyn 1 -0110011001001 eaux 1 -0110011001001 Confederacion 1 -0110011001001 Iglu 1 -0110011001001 Tomme 1 -0110011001001 Mirabaud 1 -0110011001001 Sixty-five-year-old 1 -0110011001001 Allows 1 -0110011001001 Deward 1 -0110011001001 Semilla 1 -0110011001001 Ouvreiere 1 -0110011001001 cri 1 -0110011001001 Sucursal 1 -0110011001001 Ralbern 1 -0110011001001 Inter-Atlantico 1 -0110011001001 OBSTETRICS 1 -0110011001001 Iochpe 1 -0110011001001 Ardis 1 -0110011001001 Montie 1 -0110011001001 Ulpiano 1 -0110011001001 Jeu 1 -0110011001001 Lasagne 1 -0110011001001 Tabaksfabriek-Koffiebranderijen-Theehan 1 -0110011001001 LAWMEN 1 -0110011001001 Jaula 1 -0110011001001 Damaging 1 -0110011001001 long-marching 1 -0110011001001 pozos 1 -0110011001001 Sabana 1 -0110011001001 Oleta 1 -0110011001001 then-Renault 1 -0110011001001 Campbelll 1 -0110011001001 Bendicion 1 -0110011001001 Canal-Plus-Socie-dad 1 -0110011001001 Norriss 1 -0110011001001 Stiffens 1 -0110011001001 Gavril 1 -0110011001001 ABLE 1 -0110011001001 Hovey 1 -0110011001001 Pittsburgh/ 1 -0110011001001 Fruzsina 1 -0110011001001 Rohn 1 -0110011001001 Tellegen 1 -0110011001001 Lorrance 1 -0110011001001 Fadhil 1 -0110011001001 Balek 1 -0110011001001 Nuckolls 1 -0110011001001 Gandolvo 1 -0110011001001 Fioravante 1 -0110011001001 Domeena 1 -0110011001001 SHORTS 1 -0110011001001 -Fred 1 -0110011001001 472,000-person 1 -0110011001001 LAS. 1 -0110011001001 Valdemar 1 -0110011001001 Raanan 1 -0110011001001 178,414 1 -0110011001001 Refinacoes 1 -0110011001001 Ferruzzi-controlled 1 -0110011001001 SHELDON 1 -0110011001001 cul 1 -0110011001001 blanquette 1 -0110011001001 argolla-controlled 1 -0110011001001 fashion-leading 1 -0110011001001 Emmogene 1 -0110011001001 Tragedie 1 -0110011001001 Macchine 1 -0110011001001 Iniziative 1 -0110011001001 then-French 1 -0110011001001 Rassemblement 1 -0110011001001 then-Senate 1 -0110011001001 Alpheus 1 -0110011001001 Phala 1 -0110011001001 Glendower 1 -0110011001001 Frish 1 -0110011001001 DeWalt 1 -0110011001001 DRIFT 1 -0110011001001 Memtec 1 -0110011001001 Bleed 1 -0110011001001 Floris 1 -0110011001001 Latinoamericano 1 -0110011001001 Companie 1 -0110011001001 KCBX 1 -0110011001001 Quifoven-Engelhard 1 -0110011001001 Opal 1 -0110011001001 Travelling 1 -0110011001001 CELEBRATIONS 1 -0110011001001 Sarwar 1 -0110011001001 Handicrafts 1 -0110011001001 1,730,250 1 -0110011001001 Finaciere 1 -0110011001001 Damin 1 -0110011001001 Gestion 1 -0110011001001 Prive 1 -0110011001001 Heskin 1 -0110011001001 Sajan 1 -0110011001001 Uniao 1 -0110011001001 Mylon 1 -0110011001001 chataigne 1 -0110011001001 Espirit 1 -0110011001001 ex-Prime 1 -0110011001001 Westbank 1 -0110011001001 Masciantonio 1 -0110011001001 .David 1 -0110011001001 onceretired 1 -0110011001001 cut-priced 1 -0110011001001 Farsetta 1 -0110011001001 Institute/Alliance 1 -0110011001001 problem-prone 1 -0110011001001 Early-February 1 -0110011001001 Weatherby 1 -0110011001001 Then-Education 1 -0110011001001 Soviet-assisted 1 -0110011001001 Sangre 1 -0110011001001 Tesouro 1 -0110011001001 Hellene 1 -0110011001001 Unibanco-Uniao 1 -0110011001001 Kinkley 1 -0110011001001 Otha 1 -0110011001001 then-Japanese 1 -0110011001001 Holen 1 -0110011001001 fine-quality 1 -0110011001001 hard-to-crack 1 -0110011001001 then-FBI 1 -0110011001001 492,763 1 -0110011001001 Girish 1 -0110011001001 Philarmonique 1 -0110011001001 then-Church 1 -0110011001001 Niel 1 -0110011001001 Drogas 1 -0110011001001 Antunez 1 -0110011001001 Mme. 1 -0110011001001 Lubrinna 1 -0110011001001 Edmonde 1 -0110011001001 Theophilus 1 -0110011001001 NICHOLAS 1 -0110011001001 142,110 1 -0110011001001 Grificos 1 -0110011001001 Dierdra 1 -0110011001001 Canadienne 1 -0110011001001 Confederazione 1 -0110011001001 n'est-ce 1 -0110011001001 mid-continent 1 -0110011001001 fivenation 1 -0110011001001 177,342 1 -0110011001001 19-story 1 -0110011001001 Hoteliere 1 -0110011001001 son-of-the-South 1 -0110011001001 Fabbrica 1 -0110011001001 ex-Fed 1 -0110011001001 quitte 1 -0110011001001 Coro 1 -0110011001001 long-besieged 1 -0110011001001 Jamsheed 1 -0110011001001 Saul-Chairman 1 -0110011001001 Mohd 1 -0110011001001 DANIEL 1 -0110011001001 32-acre 1 -0110011001001 Showtime-The 1 -0110011001001 existentialist-philosopher 1 -0110011001001 once-prestigious 1 -0110011001001 fixtured 1 -0110011001001 361,142 1 -0110011001001 Donne 1 -0110011001001 Venezolana 1 -0110011001001 Keeling 1 -0110011001001 lensman 1 -0110011001001 Gwain 1 -0110011001001 Timmappa 1 -0110011001001 Machos 1 -0110011001001 Institutio 1 -0110011001001 Sevillana 1 -0110011001001 Ricostruzioni 1 -0110011001001 Saint-Germain 1 -0110011001001 Meistersinger 1 -0110011001001 Willim 1 -0110011001001 Caja 1 -0110011001001 Diddly 1 -0110011001001 Fourth-biggest 1 -0110011001001 850,300 1 -0110011001001 Dippy 1 -0110011001001 Avah 1 -0110011001001 Olza 1 -0110011001001 then-GOP 1 -0110011001001 Ascenseur 1 -0110011001001 Toits 1 -0110011001001 Diran 1 -0110011001001 Florine 1 -0110011001001 then-VOA 1 -0110011001001 Marq 1 -0110011001001 Then-Navy 1 -0110011001001 Tamarra 1 -0110011001001 Hippophagique 1 -0110011001001 Gastronomie 1 -0110011001001 Chevaline 1 -0110011001001 Eisenson 1 -0110011001001 Suck 1 -0110011001001 raisons 1 -0110011001001 Renso 1 -0110011001001 815,238 1 -0110011001001 Usinas 1 -0110011001001 Siderurgicas 1 -0110011001001 Linfield 1 -0110011001001 Gerlinda 1 -0110011001001 Desarrollos 1 -0110011001001 2416 1 -0110011001001 Angolaise 1 -0110011001001 ROUGH 1 -0110011001001 Trans-Continentale 1 -0110011001001 more-creditworthy 1 -0110011001001 33,115 1 -0110011001001 Honi 1 -0110011001001 Romilly 2 -0110011001001 Sour 2 -0110011001001 Oeschger 2 -0110011001001 Laboratoire 2 -0110011001001 Trabadores 2 -0110011001001 Mercados 2 -0110011001001 Agusan 2 -0110011001001 Democratique 2 -0110011001001 Asra 2 -0110011001001 succes 2 -0110011001001 Universite 2 -0110011001001 Cour 2 -0110011001001 Vialidad 2 -0110011001001 FACULTY 2 -0110011001001 FTCC 2 -0110011001001 Bankhaus 2 -0110011001001 CinemaScore 2 -0110011001001 170,988 2 -0110011001001 Electromagnetic 2 -0110011001001 Izquierda 2 -0110011001001 Rutilio 2 -0110011001001 Nuestra 2 -0110011001001 Senora 2 -0110011001001 610,100 2 -0110011001001 Zeev 2 -0110011001001 Turisticos 2 -0110011001001 Paseo 2 -0110011001001 Sistema 2 -0110011001001 Franquicias 2 -0110011001001 HJ 2 -0110011001001 Bibliotheque 2 -0110011001001 then-Finance 2 -0110011001001 maitres 2 -0110011001001 Agache-Willot 2 -0110011001001 mal 2 -0110011001001 DONALD 2 -0110011001001 Sorema 2 -0110011001001 Miracolo 2 -0110011001001 Refac 2 -0110011001001 Reggae 2 -0110011001001 Lecons 2 -0110011001001 383,186 2 -0110011001001 Thuy 2 -0110011001001 Gia 2 -0110011001001 constructors 2 -0110011001001 Norwood-Norfolk 2 -0110011001001 Gobble 2 -0110011001001 1735 2 -0110011001001 Interamericana 2 -0110011001001 Faro 2 -0110011001001 Hopital 2 -0110011001001 Contractual 2 -0110011001001 LESLIE 2 -0110011001001 Duana 2 -0110011001001 Desi 2 -0110011001001 Embraer-Empressa 2 -0110011001001 President-for-Life 2 -0110011001001 Josip 2 -0110011001001 1717 2 -0110011001001 Southwood 2 -0110011001001 Iracema 2 -0110011001001 Rotund 2 -0110011001001 Heatherton 2 -0110011001001 Eleuthere 2 -0110011001001 Amancio 2 -0110011001001 Windstar 2 -0110011001001 Palmerston 2 -0110011001001 Thaw-Da 3 -0110011001001 Lufttransport-Unternehmen 3 -0110011001001 Moamar 3 -0110011001001 Omnibanc 3 -0110011001001 Cruel 3 -0110011001001 Laurier 3 -0110011001001 objets 3 -0110011001001 Oilman 3 -0110011001001 Polistil 3 -0110011001001 Semon 3 -0110011001001 Gerda 3 -0110011001001 Gaite 3 -0110011001001 Choderlos 3 -0110011001001 Dovie 3 -0110011001001 Mediocredito 3 -0110011001001 307-member 3 -0110011001001 Fedelle 3 -0110011001001 pomme 3 -0110011001001 Cantonal 3 -0110011001001 Kirtland 3 -0110011001001 Maxime 3 -0110011001001 Scierie 3 -0110011001001 Posadas 3 -0110011001001 impeaching 3 -0110011001001 Normale 3 -0110011001001 then-Israeli 3 -0110011001001 E.& 3 -0110011001001 Cassa 3 -0110011001001 Colegio 3 -0110011001001 Clarissa 3 -0110011001001 Cervecerias 3 -0110011001001 Visually 3 -0110011001001 PEL 3 -0110011001001 Columba 3 -0110011001001 Sociedade 3 -0110011001001 Cielos 3 -0110011001001 Na 4 -0110011001001 Flor 4 -0110011001001 commedia 4 -0110011001001 Anonima 4 -0110011001001 Nuovo 4 -0110011001001 Commandant 4 -0110011001001 Superieure 4 -0110011001001 Silos 4 -0110011001001 J.& 4 -0110011001001 Nuit 4 -0110011001001 Anonyme 4 -0110011001001 Tocaia 4 -0110011001001 fourth-ranked 4 -0110011001001 Oris 4 -0110011001001 Hornby 4 -0110011001001 Beams 4 -0110011001001 Sayed 4 -0110011001001 Europeene 4 -0110011001001 Mobiliere 4 -0110011001001 SALARIES 4 -0110011001001 Tierra 4 -0110011001001 Marquise 4 -0110011001001 joie 4 -0110011001001 Operadora 4 -0110011001001 Talcs 5 -0110011001001 Idi 5 -0110011001001 ING. 5 -0110011001001 2417 5 -0110011001001 Nouvelle 5 -0110011001001 Terme 5 -0110011001001 Corber 5 -0110011001001 Elseveir 5 -0110011001001 IFB 5 -0110011001001 Versa 5 -0110011001001 Telefonos 6 -0110011001001 Industrias 6 -0110011001001 Evangelist 6 -0110011001001 Groupement 6 -0110011001001 Luxembourgeoise 6 -0110011001001 Folha 6 -0110011001001 Cerro 6 -0110011001001 Europeenne 6 -0110011001001 Fabrique 6 -0110011001001 then-Vice 7 -0110011001001 Sitiveni 7 -0110011001001 Ratu 7 -0110011001001 Quebecoise 7 -0110011001001 Cyrano 7 -0110011001001 then-Prime 8 -0110011001001 Instituto 8 -0110011001001 then-Defense 8 -0110011001001 Caguas 8 -0110011001001 Zamboanga 8 -0110011001001 Arnaud 8 -0110011001001 Adela 8 -0110011001001 H.O. 8 -0110011001001 E.D.& 8 -0110011001001 Edo 9 -0110011001001 Cementos 9 -0110011001001 Empresa 10 -0110011001001 nom 10 -0110011001001 CHARLES 10 -0110011001001 Clos 10 -0110011001001 Moises 11 -0110011001001 eau 11 -0110011001001 Minera 12 -0110011001001 Pee 12 -0110011001001 maitre 13 -0110011001001 Colonel 13 -0110011001001 Compania 14 -0110011001001 hors 15 -0110011001001 Lyonnaise 15 -0110011001001 faux 15 -0110011001001 Cartera 16 -0110011001001 Parisienne 17 -0110011001001 Casa 17 -0110011001001 Belge 17 -0110011001001 Internationale 17 -0110011001001 Sociedad 18 -0110011001001 Ecole 18 -0110011001001 raison 18 -0110011001001 Accion 19 -0110011001001 Espanola 19 -0110011001001 Explosivos 19 -0110011001001 esprit 20 -0110011001001 Gregorio 21 -0110011001001 Centrale 22 -0110011001001 Espanol 27 -0110011001001 Gaz 29 -0110011001001 Showtime/The 31 -0110011001001 Coeur 35 -0110011001001 Punta 38 -0110011001001 pas 40 -0110011001001 Moammar 49 -0110011001001 Marina 49 -0110011001001 Chateau 53 -0110011001001 Rear 56 -0110011001001 Francaise 57 -0110011001001 Associate 59 -0110011001001 Compagnie 60 -0110011001001 Petroleos 61 -0110011001001 Regie 64 -0110011001001 Telefonica 72 -0110011001001 Nacional 80 -0110011001001 Managing 99 -0110011001001 Cyrus 121 -0110011001001 Caisse 123 -0110011001001 Retired 134 -0110011001001 Circus 180 -0110011001001 Ollie 193 -0110011001001 Nationale 202 -0110011001001 Alco 203 -0110011001001 Financiere 225 -0110011001001 Maj. 260 -0110011001001 Deputy 311 -0110011001001 Assistant 358 -0110011001001 Rio 367 -0110011001001 Banco 375 -0110011001001 Cie. 425 -0110011001001 Societe 427 -0110011001001 Premier 521 -0110011001001 Penn 521 -0110011001001 Oliver 773 -0110011001001 Lt. 876 -0110011001001 Generale 1121 -0110011001001 Vice 1492 -0110011001001 Foreign 2085 -0110011001001 Prime 2597 -0110011001001 Col. 2703 -0110011001010 190,675 1 -0110011001010 Aldan 1 -0110011001010 HOUSTON-Coca-Cola 1 -0110011001010 Ishimaru 1 -0110011001010 Swanco 1 -0110011001010 Farrish 1 -0110011001010 Calgom 1 -0110011001010 Matshusita 1 -0110011001010 CFCL 1 -0110011001010 Webb/Duval 1 -0110011001010 Pedernales 1 -0110011001010 time-traveler 1 -0110011001010 Gregan 1 -0110011001010 Bronfman-Du 1 -0110011001010 Krupp/James 1 -0110011001010 XPS. 1 -0110011001010 KKSWI. 1 -0110011001010 SPM 1 -0110011001010 Wyoming-California 1 -0110011001010 Rush-Bagot 1 -0110011001010 yesterday.Matsushita 1 -0110011001010 Meadowdale 1 -0110011001010 Seway 1 -0110011001010 P.F.C. 1 -0110011001010 Dongbu 1 -0110011001010 Ligang 1 -0110011001010 Keisai 1 -0110011001010 Seven-Up/RC 1 -0110011001010 TCM 1 -0110011001010 Mitutoyo 1 -0110011001010 Spicers 1 -0110011001010 Caudal 1 -0110011001010 Chysen 1 -0110011001010 Gas/Tucson 1 -0110011001010 Quivira 1 -0110011001010 EFFOA-Finland 1 -0110011001010 Telerent 1 -0110011001010 M/E 1 -0110011001010 A.C.E. 1 -0110011001010 Harvard-Du 1 -0110011001010 CTFG 1 -0110011001010 Molded 1 -0110011001010 Valley-Vulcan 1 -0110011001010 FON 1 -0110011001010 Cleveland-Electric 1 -0110011001010 Henkens 1 -0110011001010 Presa 1 -0110011001010 PP&S 1 -0110011001010 Kinsco 1 -0110011001010 Curlew 1 -0110011001010 NFU 1 -0110011001010 Kraft-General 1 -0110011001010 feijao 1 -0110011001010 Dowzer 1 -0110011001010 AWSC 1 -0110011001010 Durkee-French 1 -0110011001010 Lenti-Chemico 1 -0110011001010 Marrowbone 1 -0110011001010 A.I.C. 1 -0110011001010 Chichibu 1 -0110011001010 Not-So-Big 1 -0110011001010 Gas-Tucson 1 -0110011001010 PacifiCorp/Utah 1 -0110011001010 Ranjilor 1 -0110011001010 Meidensha 1 -0110011001010 Gas-Lite 1 -0110011001010 Diakin 1 -0110011001010 C&T 1 -0110011001010 Montaup 1 -0110011001010 GWF 1 -0110011001010 C-B 1 -0110011001010 M-I 1 -0110011001010 Pancana 1 -0110011001010 Cosolidated 1 -0110011001010 Riviana 1 -0110011001010 Doubleday/Bantam/Dell 1 -0110011001010 Jobs-Economic 1 -0110011001010 Zitropo 1 -0110011001010 Americam 1 -0110011001010 Falkirk 1 -0110011001010 Jodaline 1 -0110011001010 RSB 1 -0110011001010 Andante 1 -0110011001010 Walbrook 1 -0110011001010 Del-Du 1 -0110011001010 Reaches 1 -0110011001010 Biograph 1 -0110011001010 Sun/DIC 1 -0110011001010 GFI-General 1 -0110011001010 A.N.D.A. 1 -0110011001010 Book/Business 1 -0110011001010 Niugini 1 -0110011001010 HRD 1 -0110011001010 iichi 1 -0110011001010 .Nippon 1 -0110011001010 CF&I 1 -0110011001010 Lippo 1 -0110011001010 Allcity 1 -0110011001010 Kusan 1 -0110011001010 Talk-Show 1 -0110011001010 Izusu 1 -0110011001010 Nikkan 1 -0110011001010 GOSL 1 -0110011001010 Nastech 1 -0110011001010 NIOSH. 1 -0110011001010 Heidtman 1 -0110011001010 JLR 1 -0110011001010 Connole 1 -0110011001010 Papaya 1 -0110011001010 Heidrich 1 -0110011001010 Storz 1 -0110011001010 Elberon 1 -0110011001010 Hudepohl-Schoenling 1 -0110011001010 Morning-Star 1 -0110011001010 QFC 1 -0110011001010 Crysen 1 -0110011001010 Dantai 1 -0110011001010 Beneficiary 1 -0110011001010 SID 1 -0110011001010 SaintAmand 1 -0110011001010 SCM/Hanson 1 -0110011001010 A.H.A 1 -0110011001010 RP 1 -0110011001010 HL 1 -0110011001010 Chrysler-Kenosha 1 -0110011001010 148,700 1 -0110011001010 291,000-member 1 -0110011001010 Arnel 1 -0110011001010 HDR 1 -0110011001010 Kagiso 1 -0110011001010 Century-National 1 -0110011001010 CalFarm 1 -0110011001010 Joban 1 -0110011001010 Rivendell 1 -0110011001010 Iran-Japan 1 -0110011001010 Yaskawa 1 -0110011001010 CWC 1 -0110011001010 Interamerica 1 -0110011001010 Property/Casualty 1 -0110011001010 Finvest 1 -0110011001010 PRS 1 -0110011001010 Yosei 1 -0110011001010 Kenlake 1 -0110011001010 Tsubakimoto 1 -0110011001010 Yodogawa 1 -0110011001010 Godo 1 -0110011001010 Commonweath 1 -0110011001010 Anglo-Egyptian 1 -0110011001010 Sheng-Li 1 -0110011001010 POC 1 -0110011001010 Warmington 1 -0110011001010 Diamond-Stars 1 -0110011001010 BSC 1 -0110011001010 Deepwood 1 -0110011001010 Koike 1 -0110011001010 AT&S 1 -0110011001010 Wield 1 -0110011001010 MEMOREX 1 -0110011001010 Mikron 1 -0110011001010 IHF-Internazionale 1 -0110011001010 DAIDO 1 -0110011001010 Rilla 1 -0110011001010 Atascosa 1 -0110011001010 Cal-Pacific 1 -0110011001010 T.M. 1 -0110011001010 CITH 1 -0110011001010 KS&A 1 -0110011001010 Manufac 1 -0110011001010 C-C 1 -0110011001010 Enoch 1 -0110011001010 Register/Prudential 1 -0110011001010 SCS 1 -0110011001010 Jinhung 1 -0110011001010 TU 1 -0110011001010 Kurosaki 1 -0110011001010 Folksamerica 1 -0110011001010 Boone/Narragansett 1 -0110011001010 WPS 1 -0110011001010 BancNewEngland 1 -0110011001010 Martlet 1 -0110011001010 Mattatuck 1 -0110011001010 MS1 1 -0110011001010 AHS 1 -0110011001010 Lityan 1 -0110011001010 Furuno 1 -0110011001010 Sikorksy 1 -0110011001010 BOISE 1 -0110011001010 Amclo 1 -0110011001010 Goldquest 1 -0110011001010 Yili-Nabisco 1 -0110011001010 A.R.E. 1 -0110011001010 A.C.M.A. 1 -0110011001010 Franco-Nevada 1 -0110011001010 Custodial 1 -0110011001010 96,613 1 -0110011001010 Boryung 1 -0110011001010 Desmarais-controlled 1 -0110011001010 Landsay 1 -0110011001010 Daio 1 -0110011001010 Tranex 1 -0110011001010 Riceland 1 -0110011001010 Optique 1 -0110011001010 CTP 1 -0110011001010 GoodMark 1 -0110011001010 Acstar 1 -0110011001010 Cal-Maine 1 -0110011001010 SCC 1 -0110011001010 Hassneh 1 -0110011001010 Birchwood 1 -0110011001010 WAF 1 -0110011001010 Cybertech 2 -0110011001010 Raineri 2 -0110011001010 Supream 2 -0110011001010 Mid-County 2 -0110011001010 Nacolah 2 -0110011001010 Chiro 2 -0110011001010 Taffy 2 -0110011001010 Telephony 2 -0110011001010 Metron 2 -0110011001010 VSI 2 -0110011001010 Zedmark 2 -0110011001010 Martec 2 -0110011001010 Percie 2 -0110011001010 Researcher 2 -0110011001010 Dellwood 2 -0110011001010 Bendix-Jidosha 2 -0110011001010 Bendix/Martin 2 -0110011001010 E-W 2 -0110011001010 Southbend 2 -0110011001010 R-C 2 -0110011001010 KMI 2 -0110011001010 IEP 2 -0110011001010 Dependable 2 -0110011001010 U.O.B. 2 -0110011001010 Crowntuft 2 -0110011001010 FRH 2 -0110011001010 Sanken 2 -0110011001010 JMC 2 -0110011001010 Mitsu 2 -0110011001010 Biotech/Du 2 -0110011001010 DACG 2 -0110011001010 Robinson-Guild 2 -0110011001010 Nacho 2 -0110011001010 Peto 2 -0110011001010 DeJean 2 -0110011001010 EIE 2 -0110011001010 Starrex 2 -0110011001010 Lee-GN 2 -0110011001010 Panafrican 2 -0110011001010 SRH 2 -0110011001010 Mayday 2 -0110011001010 Lainiere 2 -0110011001010 Texas-gulf 2 -0110011001010 Stroehmann 2 -0110011001010 Mi-Tech 2 -0110011001010 Heckethorn 2 -0110011001010 ACS 2 -0110011001010 data-gatherer 2 -0110011001010 Nutri 2 -0110011001010 Goodmark 2 -0110011001010 Yangzi 2 -0110011001010 Kasle 2 -0110011001010 Yakin 2 -0110011001010 LF 2 -0110011001010 SkiSoft 2 -0110011001010 ML-Lee 2 -0110011001010 Reda 2 -0110011001010 Johnsonville 2 -0110011001010 GACC 2 -0110011001010 MLLee 2 -0110011001010 Baltica-Nordisk 2 -0110011001010 Baltica 2 -0110011001010 Kaken 2 -0110011001010 HME 2 -0110011001010 Inter-classico 2 -0110011001010 Wakefern 2 -0110011001010 Davco 2 -0110011001010 SeaWest 2 -0110011001010 Nittan 2 -0110011001010 Nitec 2 -0110011001010 WMF 2 -0110011001010 Oklaunion 2 -0110011001010 O.P.M. 2 -0110011001010 Tongkuk 2 -0110011001010 Intalco 2 -0110011001010 Winco 2 -0110011001010 Pamorex 2 -0110011001010 Hokuetsu 2 -0110011001010 WMC 2 -0110011001010 Edel-Brown 2 -0110011001010 Barcel 2 -0110011001010 JT 2 -0110011001010 GAR 2 -0110011001010 POGO 2 -0110011001010 EBCO 2 -0110011001010 Exporter 2 -0110011001010 Leede 2 -0110011001010 Multi-Media 2 -0110011001010 Teva 2 -0110011001010 Mitsumi 2 -0110011001010 Greymac 2 -0110011001010 Bluebonnet 2 -0110011001010 Transalpine 2 -0110011001010 Retlaw 2 -0110011001010 LORIMAR 2 -0110011001010 Ezaki 2 -0110011001010 Blandin 2 -0110011001010 LMC 2 -0110011001010 FLSI 2 -0110011001010 Hayssen 2 -0110011001010 Contempri 2 -0110011001010 Chrysky 2 -0110011001010 Non-Profit 2 -0110011001010 Kotobuki 3 -0110011001010 MGC 3 -0110011001010 SBS 3 -0110011001010 Processed 3 -0110011001010 X.L. 3 -0110011001010 Henredon 3 -0110011001010 SK 3 -0110011001010 Samjens 3 -0110011001010 Retrieval 3 -0110011001010 Daon 3 -0110011001010 Philanthropic 3 -0110011001010 McCullagh 3 -0110011001010 Keihan 3 -0110011001010 InterAmerican 3 -0110011001010 Softklone 3 -0110011001010 MFC 3 -0110011001010 Provena 3 -0110011001010 Parkdale 3 -0110011001010 Jidosha 3 -0110011001010 Ohtsuka 3 -0110011001010 GynoMed 3 -0110011001010 SG 3 -0110011001010 Doric 3 -0110011001010 Kasagi 3 -0110011001010 Shipshewana 3 -0110011001010 SMG 3 -0110011001010 Kumho 3 -0110011001010 Goltrin 3 -0110011001010 Walshire 3 -0110011001010 Dowa 3 -0110011001010 Mosinee 3 -0110011001010 OPF 3 -0110011001010 Graphite 3 -0110011001010 C&O 3 -0110011001010 Emkay 3 -0110011001010 Laketon 3 -0110011001010 S&J 3 -0110011001010 Beatriz 3 -0110011001010 Asgrow 3 -0110011001010 R-Line 3 -0110011001010 Calcasieu 3 -0110011001010 Parke-Bernet 3 -0110011001010 Win-Chance 3 -0110011001010 Amwest 3 -0110011001010 Fenchurch 3 -0110011001010 Highlight 3 -0110011001010 STI 3 -0110011001010 Radial 3 -0110011001010 TLX 3 -0110011001010 Kosmos 3 -0110011001010 Minerva 3 -0110011001010 Biomass 3 -0110011001010 AQ 3 -0110011001010 Kaukauna 3 -0110011001010 SLI 3 -0110011001010 Cataphote 3 -0110011001010 KCP 3 -0110011001010 Harbison-Walker 3 -0110011001010 South-Western 3 -0110011001010 Intertec 3 -0110011001010 Griffco 3 -0110011001010 Krinos 3 -0110011001010 Emons 3 -0110011001010 Arnage 3 -0110011001010 Warrenton 3 -0110011001010 FB 3 -0110011001010 Olan 3 -0110011001010 Mitsuwa 3 -0110011001010 TCP 3 -0110011001010 Industrial-Alliance 3 -0110011001010 Hevi-Duty 3 -0110011001010 PWS 4 -0110011001010 Konosuke 4 -0110011001010 Hysan 4 -0110011001010 Colorado-Ute 4 -0110011001010 Toho 4 -0110011001010 Bellemead 4 -0110011001010 Minami 4 -0110011001010 Prestolite 4 -0110011001010 Odakyu 4 -0110011001010 Tmic 4 -0110011001010 BHW 4 -0110011001010 GU 4 -0110011001010 Analect 4 -0110011001010 Simplex 4 -0110011001010 Shy 4 -0110011001010 Huys 4 -0110011001010 Heuga 4 -0110011001010 Frostex 4 -0110011001010 NEG 4 -0110011001010 Keihin 4 -0110011001010 Amselco 4 -0110011001010 Showscan 4 -0110011001010 FAC 4 -0110011001010 Gerity 4 -0110011001010 Copolymer 4 -0110011001010 GSI 4 -0110011001010 QED 4 -0110011001010 Recycled 4 -0110011001010 GH 4 -0110011001010 Idemitsu 4 -0110011001010 MSR 4 -0110011001010 Thule 4 -0110011001010 Highmont 4 -0110011001010 Hallador 4 -0110011001010 Jennie-O 4 -0110011001010 Whittar 4 -0110011001010 Joshin 4 -0110011001010 Shin-Daiwa 5 -0110011001010 Highveld 5 -0110011001010 Vassar 5 -0110011001010 Bentley-Harris 5 -0110011001010 Iwatsu 5 -0110011001010 Anritsu 5 -0110011001010 Inver 5 -0110011001010 Newnam 5 -0110011001010 Yokogawa 5 -0110011001010 FH 5 -0110011001010 GLI 5 -0110011001010 Piezo 5 -0110011001010 RSL 5 -0110011001010 BJ 5 -0110011001010 FLX 5 -0110011001010 E-B 5 -0110011001010 Submarine 5 -0110011001010 HMA 5 -0110011001010 OKI 5 -0110011001010 SGI 5 -0110011001010 Wessely 5 -0110011001010 DIG 5 -0110011001010 Fitel 5 -0110011001010 Pueringer 5 -0110011001010 Homart 5 -0110011001010 SPG 5 -0110011001010 Lornex 6 -0110011001010 E.I. 6 -0110011001010 Funai 6 -0110011001010 DKM 6 -0110011001010 C&K 6 -0110011001010 Grantor 6 -0110011001010 DMI 6 -0110011001010 DR 6 -0110011001010 BW 6 -0110011001010 MarCor 6 -0110011001010 Chef-Reddy 6 -0110011001010 Elkay 6 -0110011001010 Bishopsgate 6 -0110011001010 Unleash 6 -0110011001010 Neglect 6 -0110011001010 BJF 6 -0110011001010 Pakhoed 6 -0110011001010 WCK 6 -0110011001010 Hayley 6 -0110011001010 Interamerican 6 -0110011001010 KV 6 -0110011001010 Wesco 6 -0110011001010 Edizione 6 -0110011001010 Catering 6 -0110011001010 Intermagnetics 6 -0110011001010 Mitsuba 6 -0110011001010 Primate 6 -0110011001010 Glenmede 7 -0110011001010 Billiton 7 -0110011001010 Screenvision 7 -0110011001010 BCW 7 -0110011001010 WEI 7 -0110011001010 Mochida 7 -0110011001010 Redco 7 -0110011001010 WestAir 7 -0110011001010 Nissei 7 -0110011001010 EFC 7 -0110011001010 Baldor 7 -0110011001010 Regensteiner 7 -0110011001010 Jimberlana 7 -0110011001010 LISP 7 -0110011001010 K-V 7 -0110011001010 Quarto 8 -0110011001010 Schult 8 -0110011001010 Honshu 8 -0110011001010 Trans-Alaska 8 -0110011001010 Cenvill 8 -0110011001010 I/AM 8 -0110011001010 Neste 8 -0110011001010 Anac 8 -0110011001010 Hispanic-American 8 -0110011001010 Jujo 8 -0110011001010 Cavalcade 8 -0110011001010 B.J.F. 8 -0110011001010 S&B 8 -0110011001010 Okuma 8 -0110011001010 Vlasic 8 -0110011001010 Wyndham 8 -0110011001010 FAS 8 -0110011001010 Welded 8 -0110011001010 E.I.E. 8 -0110011001010 Shoko 9 -0110011001010 HMS 9 -0110011001010 Missouri-Kansas-Texas 9 -0110011001010 Chiyoda 9 -0110011001010 Pacesetter 9 -0110011001010 SDC 9 -0110011001010 Landell 9 -0110011001010 Silvershoe 9 -0110011001010 MTS 9 -0110011001010 Flour 10 -0110011001010 Familiar 10 -0110011001010 Liquidating 10 -0110011001010 Cahasa 10 -0110011001010 Sconnix 10 -0110011001010 Agrifuels 10 -0110011001010 Nitto 10 -0110011001010 Tex-La 10 -0110011001010 NLI 10 -0110011001010 Generic 10 -0110011001010 PON 10 -0110011001010 Ssangyong 11 -0110011001010 Enro 11 -0110011001010 Scripps-Howard 11 -0110011001010 Outokumpu 11 -0110011001010 RI 11 -0110011001010 Debenture 11 -0110011001010 RSI 11 -0110011001010 Transwestern 11 -0110011001010 Philips/Du 11 -0110011001010 Siam 11 -0110011001010 Loma 11 -0110011001010 Kendavis 11 -0110011001010 Guiding 11 -0110011001010 McLouth 12 -0110011001010 RMV 12 -0110011001010 MorningStar 12 -0110011001010 AOC 12 -0110011001010 SunCor 12 -0110011001010 Oji 12 -0110011001010 Latrobe 12 -0110011001010 Trus 13 -0110011001010 Banyu 13 -0110011001010 Finevest 13 -0110011001010 Yamato 13 -0110011001010 Daiichi 13 -0110011001010 Oriole 14 -0110011001010 Misawa 14 -0110011001010 CNG 14 -0110011001010 WFC 14 -0110011001010 Disability 15 -0110011001010 Prepared 15 -0110011001010 USI 15 -0110011001010 Chubu 15 -0110011001010 INR 16 -0110011001010 Furukawa 16 -0110011001010 UDC-Universal 16 -0110011001010 Astro 16 -0110011001010 Nicolet 16 -0110011001010 Axa-Midi 16 -0110011001010 Calmark 16 -0110011001010 Curtice-Burns 17 -0110011001010 Sunflower 17 -0110011001010 G-H 17 -0110011001010 Allnet 17 -0110011001010 Serve 17 -0110011001010 Daido 17 -0110011001010 EUA 18 -0110011001010 Vital 18 -0110011001010 Toth 18 -0110011001010 Teco 19 -0110011001010 Tasty 19 -0110011001010 Riser 20 -0110011001010 IBI 20 -0110011001010 Lacana 20 -0110011001010 Emmis 20 -0110011001010 Brigadier 20 -0110011001010 REPH 21 -0110011001010 Keisei 21 -0110011001010 UT 21 -0110011001010 Mag 22 -0110011001010 Ambac 22 -0110011001010 Writer 22 -0110011001010 Simplicity 23 -0110011001010 Paco 23 -0110011001010 Southlife 23 -0110011001010 Ziff-Davis 23 -0110011001010 Chantal 23 -0110011001010 Pneumatic 24 -0110011001010 Copperweld 25 -0110011001010 Kokusai 25 -0110011001010 DD 25 -0110011001010 Snack 25 -0110011001010 Nisshin 26 -0110011001010 Canandaigua 27 -0110011001010 Showa 27 -0110011001010 Lyondell 27 -0110011001010 CIC 27 -0110011001010 Pabst 28 -0110011001010 Seaway 28 -0110011001010 Catalina 28 -0110011001010 NAC 29 -0110011001010 Structural 29 -0110011001010 Imported 29 -0110011001010 Hino 29 -0110011001010 Yamanouchi 30 -0110011001010 Spearhead 30 -0110011001010 Naked 30 -0110011001010 RLI 31 -0110011001010 Star-Kist 31 -0110011001010 Makita 32 -0110011001010 Cahners 33 -0110011001010 Diamond-Star 33 -0110011001010 Westar 35 -0110011001010 Onoda 35 -0110011001010 Integrity 36 -0110011001010 P&C 36 -0110011001010 MMR 36 -0110011001010 Delmarva 37 -0110011001010 Inspector 39 -0110011001010 Kia 41 -0110011001010 Smithfield 42 -0110011001010 Oki 42 -0110011001010 Hecla 45 -0110011001010 Ortho 47 -0110011001010 Inertia 48 -0110011001010 Placement 48 -0110011001010 Con 48 -0110011001010 Ticor 50 -0110011001010 Chugai 51 -0110011001010 Lac 54 -0110011001010 Hammermill 56 -0110011001010 Foremost 58 -0110011001010 Weirton 58 -0110011001010 Razorback 59 -0110011001010 Cessna 59 -0110011001010 ANR 61 -0110011001010 Sikorsky 71 -0110011001010 J.D. 78 -0110011001010 Automated 78 -0110011001010 Duquesne 80 -0110011001010 Taiyo 80 -0110011001010 Captain 88 -0110011001010 Inter-American 95 -0110011001010 Acme 97 -0110011001010 Beech 99 -0110011001010 Sanyo 101 -0110011001010 Potomac 115 -0110011001010 Thermo 116 -0110011001010 Americus 121 -0110011001010 Title 126 -0110011001010 Wheeling-Pittsburgh 131 -0110011001010 Citizen 131 -0110011001010 Allstate 143 -0110011001010 Sunshine 143 -0110011001010 Kobe 162 -0110011001010 Teachers 170 -0110011001010 Resolution 176 -0110011001010 Kawasaki 203 -0110011001010 Hershey 205 -0110011001010 Homestake 206 -0110011001010 Isuzu 211 -0110011001010 Inland 222 -0110011001010 Benefit 224 -0110011001010 Mission 228 -0110011001010 Mitsui 359 -0110011001010 du 392 -0110011001010 Matsushita 413 -0110011001010 Equitable 429 -0110011001010 Citizens 480 -0110011001010 Bethlehem 487 -0110011001010 Urban 488 -0110011001010 Sumitomo 554 -0110011001010 Commonwealth 715 -0110011001010 Prudential 729 -0110011001010 Westinghouse 816 -0110011001010 Mitsubishi 903 -0110011001010 Nippon 941 -0110011001010 Du 1265 -0110011001010 Bankers 1809 -0110011001010 Life 2467 -0110011001010 General 11147 -0110011001011 Inkatha-related 1 -0110011001011 Kunar 1 -0110011001011 Rhine-Main-Danube 1 -0110011001011 Jui 1 -0110011001011 Pinewood 1 -0110011001011 Dish-Dark 1 -0110011001011 2,167,400 1 -0110011001011 Birmingham-Farmington 1 -0110011001011 restucture 1 -0110011001011 Pillette 1 -0110011001011 Deana 1 -0110011001011 Tableau 1 -0110011001011 128-year-old 1 -0110011001011 TSS 1 -0110011001011 Rapidan 1 -0110011001011 Pentagon-funded 1 -0110011001011 Luapula 1 -0110011001011 49th-floor 1 -0110011001011 noncom 1 -0110011001011 Nutritious 1 -0110011001011 Molasse 1 -0110011001011 Tabar 1 -0110011001011 Kanaka 1 -0110011001011 Plumas 1 -0110011001011 Baguio 1 -0110011001011 Goodhue 1 -0110011001011 Bossier 1 -0110011001011 Jan-Peter 1 -0110011001011 Damen 1 -0110011001011 Absecon 1 -0110011001011 Caddo 1 -0110011001011 79,535 1 -0110011001011 Legazpi 1 -0110011001011 Jagdish 1 -0110011001011 Horticulture 1 -0110011001011 Lomba 1 -0110011001011 Marsaxlokk 1 -0110011001011 Melieha 1 -0110011001011 Lavonne 1 -0110011001011 1,429,100 1 -0110011001011 Pan-Canadian 1 -0110011001011 Gilbo 1 -0110011001011 Maritza 1 -0110011001011 Lumbuka 1 -0110011001011 Conoy 1 -0110011001011 Whitman-Walker 1 -0110011001011 Washakie 1 -0110011001011 Suda 1 -0110011001011 Kendall-Jackson 1 -0110011001011 Yarmouk 1 -0110011001011 Normative 1 -0110011001011 1,420,500 1 -0110011001011 Keathley 1 -0110011001011 Ospedale 1 -0110011001011 Tipp 1 -0110011001011 Fantasmic 1 -0110011001011 Denver-Julesberg 1 -0110011001011 Yarawindah 1 -0110011001011 Barbizon 1 -0110011001011 Tortuous 1 -0110011001011 three-table 1 -0110011001011 Free-Trade 1 -0110011001011 Babai 1 -0110011001011 Cauvery 1 -0110011001011 Plaquemines 1 -0110011001011 Metalcote 1 -0110011001011 16-judge 1 -0110011001011 Entfuhrung 1 -0110011001011 Dependability 1 -0110011001011 Wynmoor 1 -0110011001011 allemande 1 -0110011001011 Square-dance 1 -0110011001011 Two-Hearted 1 -0110011001011 Benardus 1 -0110011001011 Eagle-Vail 1 -0110011001011 Sejongono 1 -0110011001011 Ventnor 1 -0110011001011 wall-less 1 -0110011001011 168-country 1 -0110011001011 Wenceslaus 1 -0110011001011 Somme 1 -0110011001011 Shajing 1 -0110011001011 Hotpot 1 -0110011001011 Shuaiba 1 -0110011001011 Spasky 1 -0110011001011 Phasis 1 -0110011001011 933,673 1 -0110011001011 Touche-Mann 1 -0110011001011 Movement. 1 -0110011001011 Oyly 1 -0110011001011 FIFRA 1 -0110011001011 Norstar-Long 1 -0110011001011 Chunichi 1 -0110011001011 Itehad 1 -0110011001011 Ansan 1 -0110011001011 Eola 1 -0110011001011 Exploitatie 1 -0110011001011 Roane 1 -0110011001011 Alantic 1 -0110011001011 Almendares 1 -0110011001011 4,750,100 1 -0110011001011 Hellroaring 1 -0110011001011 Ringgold 1 -0110011001011 Balearic 1 -0110011001011 Chamshill 1 -0110011001011 Changchung 1 -0110011001011 Narvep-Morrison 1 -0110011001011 Kuril 1 -0110011001011 17,750-ton 1 -0110011001011 Oklahama 1 -0110011001011 247,000-acre 1 -0110011001011 Critique 1 -0110011001011 already-troubled 1 -0110011001011 307,208 1 -0110011001011 Elstree 1 -0110011001011 everly 1 -0110011001011 Skamania 1 -0110011001011 Coweta 1 -0110011001011 Kurume 1 -0110011001011 Canbo 1 -0110011001011 Barbeque 1 -0110011001011 Rennies 1 -0110011001011 Shillong 1 -0110011001011 Chatam 1 -0110011001011 Guadalquivir 1 -0110011001011 Phaser 1 -0110011001011 sof 1 -0110011001011 Imants 1 -0110011001011 Ibhayi 1 -0110011001011 Desborough 1 -0110011001011 80-foot-tall 1 -0110011001011 Royalists 1 -0110011001011 4,825 1 -0110011001011 7,008,600 1 -0110011001011 Roxby 1 -0110011001011 BOBER 1 -0110011001011 Aquisitions 1 -0110011001011 Wrightsville 1 -0110011001011 2.1871 1 -0110011001011 Leeland 1 -0110011001011 ex-Beverly 1 -0110011001011 Ginanjar 1 -0110011001011 Datamation 1 -0110011001011 1,526,652 1 -0110011001011 Buda 1 -0110011001011 Szabadsag 1 -0110011001011 Cologne-based 1 -0110011001011 Sixto 1 -0110011001011 Zavala 1 -0110011001011 Letecia 1 -0110011001011 Herbal 1 -0110011001011 1,675,270 1 -0110011001011 Taiwanese-built 1 -0110011001011 zhi 1 -0110011001011 950-film 1 -0110011001011 16.4-million-acre 1 -0110011001011 un 1 -0110011001011 12,416,307 1 -0110011001011 now-dormant 1 -0110011001011 Zenzaburo 1 -0110011001011 Portola 1 -0110011001011 Pocantico 1 -0110011001011 Yolo 1 -0110011001011 Moslem-based 1 -0110011001011 667,300 1 -0110011001011 1,663,800 1 -0110011001011 TRAVENOL 1 -0110011001011 Ballbeck 1 -0110011001011 CLARKE 1 -0110011001011 Complexe 1 -0110011001011 Idiots 1 -0110011001011 Jerritt 1 -0110011001011 733,300 1 -0110011001011 Exbury 1 -0110011001011 Mindinao 1 -0110011001011 Awolowo 1 -0110011001011 2.5-square-mile 1 -0110011001011 Iadrang 1 -0110011001011 Cuyhoga 1 -0110011001011 Filtered 1 -0110011001011 Unfiltered 1 -0110011001011 Trickum 1 -0110011001011 Navarin 1 -0110011001011 Wireless-Pacific 1 -0110011001011 Abilio 1 -0110011001011 Gwinett 1 -0110011001011 Neches 1 -0110011001011 Mukewater 1 -0110011001011 Erakor 1 -0110011001011 Kalinda 1 -0110011001011 Nak-dong 1 -0110011001011 Brights 1 -0110011001011 deZoete 1 -0110011001011 11,262,307 1 -0110011001011 Uchibori 1 -0110011001011 Higashi-Hiroshima 1 -0110011001011 Sublician 1 -0110011001011 Trobriand 1 -0110011001011 Vorosmarty 1 -0110011001011 Willacy 1 -0110011001011 Visitacion 1 -0110011001011 Waterloo/Cedar 1 -0110011001011 Acheloos 1 -0110011001011 Hyong 1 -0110011001011 Kills 1 -0110011001011 Pank 1 -0110011001011 Coos 1 -0110011001011 Corp.-owned 1 -0110011001011 MAGNETIC 1 -0110011001011 Russia-bound 1 -0110011001011 Haldan 1 -0110011001011 Frostbite 1 -0110011001011 Missouri-Kansas 1 -0110011001011 Iligan 1 -0110011001011 44-chromosome 1 -0110011001011 Tierrasanta 1 -0110011001011 Paek 1 -0110011001011 Woon 1 -0110011001011 Colonnades 1 -0110011001011 Pre-Summit 1 -0110011001011 829,100 1 -0110011001011 Changan 1 -0110011001011 Charente 1 -0110011001011 Patrick-Louis 1 -0110011001011 Lakota 1 -0110011001011 Imaichi 1 -0110011001011 candy-maker 1 -0110011001011 OAKS 1 -0110011001011 Verrazano 1 -0110011001011 coins.The 1 -0110011001011 Elcho 1 -0110011001011 Tacoma-based 1 -0110011001011 7-footers 1 -0110011001011 Tachen 1 -0110011001011 Waia 1 -0110011001011 Labours 1 -0110011001011 portless 1 -0110011001011 447,596 1 -0110011001011 Bienville 1 -0110011001011 shortish 1 -0110011001011 Inglenook-Napa 1 -0110011001011 Phraya 1 -0110011001011 1,605,667 1 -0110011001011 397,102 1 -0110011001011 Chagrin 1 -0110011001011 ex-Green 1 -0110011001011 28,000-acre 1 -0110011001011 8,097,000 1 -0110011001011 record-length 1 -0110011001011 Desolate 1 -0110011001011 64,000-strong 1 -0110011001011 SACP. 1 -0110011001011 Grime 1 -0110011001011 Yamhill 1 -0110011001011 Bevery 1 -0110011001011 Rainy 1 -0110011001011 Morehead 1 -0110011001011 currencies-the 1 -0110011001011 Haei 1 -0110011001011 Rapti 1 -0110011001011 Harpeth 1 -0110011001011 Connecticut-Rhode 1 -0110011001011 Causeway 1 -0110011001011 three-park 1 -0110011001011 Kennebec 1 -0110011001011 Oswayo 1 -0110011001011 Dead-Nosed 1 -0110011001011 Topography 1 -0110011001011 Earthen 1 -0110011001011 Deleon 1 -0110011001011 Scuffletown 1 -0110011001011 Editoriale 1 -0110011001011 Pismo 1 -0110011001011 Tunitas 1 -0110011001011 58,637 1 -0110011001011 polycultural 1 -0110011001011 Universal/MCA 1 -0110011001011 Poplar 1 -0110011001011 Kahala 1 -0110011001011 Roundhouse 1 -0110011001011 Dumbarton 1 -0110011001011 Chungcheng 1 -0110011001011 393,600 1 -0110011001011 Boyne 1 -0110011001011 Ellicott 1 -0110011001011 Faroe 1 -0110011001011 Avies 1 -0110011001011 Colowyo 1 -0110011001011 Medi-Cash 1 -0110011001011 607,800 1 -0110011001011 Jailhouse 1 -0110011001011 Serafimovskoye 1 -0110011001011 Konyushennaya 1 -0110011001011 Naglaa 1 -0110011001011 Nemasket 1 -0110011001011 Finders 1 -0110011001011 Tittabawassee 1 -0110011001011 Hasbrouk 1 -0110011001011 Aspen-Pitkin 1 -0110011001011 492,764 1 -0110011001011 Ci 1 -0110011001011 Pokrovsky 1 -0110011001011 KARCHER 1 -0110011001011 Mav 1 -0110011001011 dockhand 1 -0110011001011 Bouchoux 1 -0110011001011 Tatsunora 1 -0110011001011 World-Africa 1 -0110011001011 Oakland-Alameda 1 -0110011001011 Valentec 1 -0110011001011 Agura 1 -0110011001011 interdenominational 1 -0110011001011 Sullivans 1 -0110011001011 Palac 1 -0110011001011 Dnepr 1 -0110011001011 Schoolhouse 1 -0110011001011 101,000-circulation 1 -0110011001011 Byzantine-like 1 -0110011001011 273rd 1 -0110011001011 Fernandina 1 -0110011001011 Para 1 -0110011001011 MAWR 1 -0110011001011 Havasu 1 -0110011001011 1327 1 -0110011001011 Patapsco 1 -0110011001011 Enstrom 1 -0110011001011 Baffin 1 -0110011001011 Pimbs 1 -0110011001011 Heathen 1 -0110011001011 Navona 1 -0110011001011 Greenley 1 -0110011001011 ever-staid 1 -0110011001011 Orontes 1 -0110011001011 Abita 1 -0110011001011 ORG. 1 -0110011001011 Xingu 1 -0110011001011 Klip 1 -0110011001011 Sindagma 1 -0110011001011 Chien-Min 1 -0110011001011 SIDDELEY 1 -0110011001011 Detroit-Jefferson 1 -0110011001011 Dolet 1 -0110011001011 Fuyang 1 -0110011001011 Shankill 1 -0110011001011 Valley-Goose 1 -0110011001011 Pilgrin 1 -0110011001011 Forgets 1 -0110011001011 charlotte 1 -0110011001011 Airball 1 -0110011001011 Minit 1 -0110011001011 SUNY-Stony 1 -0110011001011 678,113 1 -0110011001011 Yavapai 1 -0110011001011 Tourist's-Eye 1 -0110011001011 192,700 1 -0110011001011 Seasons-Clift 1 -0110011001011 Amstel 1 -0110011001011 Castletown 1 -0110011001011 1,193,888 1 -0110011001011 Parretti-De 1 -0110011001011 Mianus 1 -0110011001011 Kokos 1 -0110011001011 Rangeley 1 -0110011001011 583,900 1 -0110011001011 Bank/Texas 1 -0110011001011 McLester 1 -0110011001011 Uxbridge 1 -0110011001011 Specialities 1 -0110011001011 su 1 -0110011001011 Sriharikota 1 -0110011001011 Buies 1 -0110011001011 Chekiang 1 -0110011001011 Pastosa 1 -0110011001011 Ex-Wells 1 -0110011001011 A.V.L. 1 -0110011001011 Pontotoc 1 -0110011001011 Krasnogvardeiskaya 1 -0110011001011 Inganess 1 -0110011001011 1,038,900 1 -0110011001011 Berkely 1 -0110011001011 Weirs 1 -0110011001011 Duero 1 -0110011001011 -Manhattan 1 -0110011001011 Warrensville 1 -0110011001011 Hammers 1 -0110011001011 Rianne 1 -0110011001011 Distorts 1 -0110011001011 Nazeer 1 -0110011001011 Susitna 1 -0110011001011 Sazandegi 1 -0110011001011 ITG. 1 -0110011001011 hydropower-dependent 1 -0110011001011 Komandorskie 1 -0110011001011 Pref 1 -0110011001011 Prestenwood 1 -0110011001011 Sandpiper 1 -0110011001011 Tillamook 1 -0110011001011 Pawleys 1 -0110011001011 811-mile 1 -0110011001011 Mahanoy 1 -0110011001011 Cuu 1 -0110011001011 County-Olive 1 -0110011001011 Three-Mile 1 -0110011001011 156th 1 -0110011001011 600,700 1 -0110011001011 Auglaize 1 -0110011001011 882,224 1 -0110011001011 1,325,215 1 -0110011001011 Herbal-Aloe 1 -0110011001011 Daylong 1 -0110011001011 NonProfit 1 -0110011001011 Broadway-Seventh 1 -0110011001011 Haltom 1 -0110011001011 SVILUPPO 1 -0110011001011 Coruh 1 -0110011001011 281,800 1 -0110011001011 Embraced 1 -0110011001011 MaryLu 1 -0110011001011 650,800 1 -0110011001011 City-Weehawken 1 -0110011001011 Aread 1 -0110011001011 Lenawee 1 -0110011001011 Daddies 1 -0110011001011 360-store 1 -0110011001011 Loudoun 1 -0110011001011 Moskva 1 -0110011001011 Williamburg 1 -0110011001011 75-event 1 -0110011001011 Haden 2 -0110011001011 Tamarijn 2 -0110011001011 Kama 2 -0110011001011 Washtenaw 2 -0110011001011 Mahoning 2 -0110011001011 Mindoro 2 -0110011001011 Peavey 2 -0110011001011 Hampden 2 -0110011001011 Gurume 2 -0110011001011 poll-watchers 2 -0110011001011 Totem 2 -0110011001011 Wapello 2 -0110011001011 Forked 2 -0110011001011 Danceworks 2 -0110011001011 Mackinaw 2 -0110011001011 657,300 2 -0110011001011 940,000-kilowatt 2 -0110011001011 Leeward 2 -0110011001011 73,400 2 -0110011001011 Honeysuckle 2 -0110011001011 CIP. 2 -0110011001011 Pinal 2 -0110011001011 Ellstree 2 -0110011001011 Amite 2 -0110011001011 lumbermen 2 -0110011001011 Lionville 2 -0110011001011 Snug 2 -0110011001011 Klamath 2 -0110011001011 Usman 2 -0110011001011 Magdalen 2 -0110011001011 Sewickley 2 -0110011001011 Baiying 2 -0110011001011 Price. 2 -0110011001011 Malvinas/Falkland 2 -0110011001011 Lamma 2 -0110011001011 Aldabra 2 -0110011001011 Coffs 2 -0110011001011 Ryukyus 2 -0110011001011 Iowa-Illinois 2 -0110011001011 Watchman 2 -0110011001011 Marquesas 2 -0110011001011 Abstracts 2 -0110011001011 Repulse 2 -0110011001011 Sangamon 2 -0110011001011 Flatbush 2 -0110011001011 Mole 2 -0110011001011 Zambezi 2 -0110011001011 Esmond 2 -0110011001011 60-seat 2 -0110011001011 Pompano-Windy 2 -0110011001011 Canvey 2 -0110011001011 Electra/Park 2 -0110011001011 Wilcrest 2 -0110011001011 Aroostook 2 -0110011001011 808-room 2 -0110011001011 Musselshell 2 -0110011001011 Alphabet 2 -0110011001011 Eun 2 -0110011001011 Pribilof 2 -0110011001011 Barking 2 -0110011001011 Yah 2 -0110011001011 Autosound 2 -0110011001011 Kiddie 2 -0110011001011 Luzerne 2 -0110011001011 1330 2 -0110011001011 Confectioner 2 -0110011001011 Jagat 2 -0110011001011 Rokko 2 -0110011001011 Buzzards 2 -0110011001011 Galerie 2 -0110011001011 662,600 2 -0110011001011 Bullhead 2 -0110011001011 Scottwood 2 -0110011001011 1166 2 -0110011001011 Wynonna 2 -0110011001011 Wizen 2 -0110011001011 Natrona 2 -0110011001011 Pigeon 2 -0110011001011 Aboukir 2 -0110011001011 Terceira 2 -0110011001011 Gwembe 2 -0110011001011 Latah 2 -0110011001011 Greensville 2 -0110011001011 Grama 2 -0110011001011 Thomson-Jensen 2 -0110011001011 Slippery 2 -0110011001011 Sulfur 2 -0110011001011 Pinner 2 -0110011001011 Allenby 2 -0110011001011 Yarmuk 2 -0110011001011 Narmada 2 -0110011001011 flag-draped 2 -0110011001011 Glasscock 2 -0110011001011 Ernston 2 -0110011001011 Chattahoochee 2 -0110011001011 Dutchess 2 -0110011001011 Conic 2 -0110011001011 Jeune 2 -0110011001011 Sukh 2 -0110011001011 Morecambe 2 -0110011001011 Sedgewick 2 -0110011001011 Alamance 2 -0110011001011 Colne 2 -0110011001011 Robber 2 -0110011001011 Concordia 2 -0110011001011 Gollob 2 -0110011001011 My-K 2 -0110011001011 Pequea 2 -0110011001011 Graef 2 -0110011001011 Vidar 2 -0110011001011 Chemung 2 -0110011001011 Whispering 2 -0110011001011 Rehoboth 2 -0110011001011 Terrebonne 2 -0110011001011 Kurskaya 2 -0110011001011 Peony 2 -0110011001011 Dnieper 2 -0110011001011 Red-Nosed 2 -0110011001011 Novatronics 2 -0110011001011 Fraggle 2 -0110011001011 Morecombe 2 -0110011001011 Altamonte 2 -0110011001011 358,600 2 -0110011001011 300D 2 -0110011001011 Stikine 2 -0110011001011 Oxide 2 -0110011001011 Jiangxin 2 -0110011001011 Heidenreich 2 -0110011001011 Pima 2 -0110011001011 Shimobe 2 -0110011001011 Tatnuck 2 -0110011001011 14-unit 2 -0110011001011 Twenty-Seventh 2 -0110011001011 Raffles 2 -0110011001011 Meow 3 -0110011001011 Commandante 3 -0110011001011 Bayport 3 -0110011001011 Androscoggin 3 -0110011001011 Hedy 3 -0110011001011 Porn 3 -0110011001011 Cannery 3 -0110011001011 Tug 3 -0110011001011 Ghirardelli 3 -0110011001011 Catron 3 -0110011001011 Clallam 3 -0110011001011 Surfer 3 -0110011001011 Lindal 3 -0110011001011 Khun 3 -0110011001011 Yaron 3 -0110011001011 Berks 3 -0110011001011 Civilized 3 -0110011001011 Sarma 3 -0110011001011 Wallops 3 -0110011001011 Washoe 3 -0110011001011 Tivoli 3 -0110011001011 Superstition 3 -0110011001011 1984-1988 3 -0110011001011 Hysol 3 -0110011001011 DuPage 3 -0110011001011 Merita 3 -0110011001011 Drainage 3 -0110011001011 Calamigos 3 -0110011001011 Pheasant 3 -0110011001011 Bexar 3 -0110011001011 Shinnecock 3 -0110011001011 Bocay 3 -0110011001011 Mackinac 3 -0110011001011 Mahone 3 -0110011001011 BioVenture 3 -0110011001011 Rikers 3 -0110011001011 Iman 3 -0110011001011 Chablis 3 -0110011001011 LED 3 -0110011001011 Loading 3 -0110011001011 Shawklit 3 -0110011001011 Schoharie 3 -0110011001011 Folded 3 -0110011001011 Kurile 3 -0110011001011 Chickasaw 3 -0110011001011 Okavango 3 -0110011001011 Oconee 3 -0110011001011 Juniper 3 -0110011001011 Solano 3 -0110011001011 Marajo 3 -0110011001011 Wappingers 3 -0110011001011 Volusia 3 -0110011001011 Wappinger 3 -0110011001011 Neshoba 3 -0110011001011 Ortley 3 -0110011001011 TeleCheck 3 -0110011001011 Botany 3 -0110011001011 Pocomoke 3 -0110011001011 Humberside 3 -0110011001011 Himeji 3 -0110011001011 Rajang 3 -0110011001011 Nimslo 3 -0110011001011 Inyo 3 -0110011001011 1221 3 -0110011001011 Ynez 3 -0110011001011 Kiryu 3 -0110011001011 Westhampton 3 -0110011001011 Mashewing 3 -0110011001011 Hoosick 3 -0110011001011 Intrastate 3 -0110011001011 Salinera 3 -0110011001011 Ormet 3 -0110011001011 Tuolumne 3 -0110011001011 Peppin 3 -0110011001011 Jago 4 -0110011001011 Briar 4 -0110011001011 Shaker 4 -0110011001011 Dune 4 -0110011001011 Korn/ 4 -0110011001011 1083 4 -0110011001011 Shetland 4 -0110011001011 Caicos 4 -0110011001011 AWD 4 -0110011001011 Hebei 4 -0110011001011 Mono 4 -0110011001011 Chaparrosa 4 -0110011001011 Diomede 4 -0110011001011 Thermaljet 4 -0110011001011 Yichang 4 -0110011001011 Cornwallis 4 -0110011001011 Wuthering 4 -0110011001011 Limpopo 4 -0110011001011 Penikese 4 -0110011001011 Neva 4 -0110011001011 Daviess 4 -0110011001011 Wenceslas 4 -0110011001011 Menomonee 4 -0110011001011 Dempster 4 -0110011001011 Insignia 4 -0110011001011 PMS 4 -0110011001011 Indus 4 -0110011001011 Stateway 4 -0110011001011 Sado 4 -0110011001011 Rockdale 4 -0110011001011 Oxbow 4 -0110011001011 Tusker 4 -0110011001011 Nicobar 4 -0110011001011 Kezar 4 -0110011001011 Etowah 4 -0110011001011 Arkoma 4 -0110011001011 Bharat 4 -0110011001011 Kingsey 4 -0110011001011 Larak 4 -0110011001011 Anglesey 4 -0110011001011 Orkney 4 -0110011001011 Hiawatha 4 -0110011001011 Chilko 4 -0110011001011 Stuyvesant 4 -0110011001011 Saline 4 -0110011001011 Fairless 4 -0110011001011 Montego 4 -0110011001011 Asea-Brown 4 -0110011001011 Snowy 4 -0110011001011 Twenty-One 4 -0110011001011 Quezon 4 -0110011001011 Merced 4 -0110011001011 Ponca 5 -0110011001011 Gentle 5 -0110011001011 Licking 5 -0110011001011 Rogue 5 -0110011001011 Thistle 5 -0110011001011 Multnomah 5 -0110011001011 Yoo 5 -0110011001011 Vistula 5 -0110011001011 Guantanamo 5 -0110011001011 Deli 5 -0110011001011 Concord/River 5 -0110011001011 Cowlitz 5 -0110011001011 Jiangxi 5 -0110011001011 Galapagos 5 -0110011001011 Disney/MGM 5 -0110011001011 Katif 5 -0110011001011 Sirri 5 -0110011001011 Skywalker 5 -0110011001011 Spangled 5 -0110011001011 Liberty-Ellis 5 -0110011001011 Dzerzhinsky 5 -0110011001011 Uni 5 -0110011001011 Plush 5 -0110011001011 Kam 5 -0110011001011 Lola 5 -0110011001011 300ZX 5 -0110011001011 Friar 5 -0110011001011 Yazoo 5 -0110011001011 Contractor 6 -0110011001011 Escambia 6 -0110011001011 Defender 6 -0110011001011 Antelope 6 -0110011001011 1130 6 -0110011001011 Cheju 6 -0110011001011 Sierrita 6 -0110011001011 Whidbey 6 -0110011001011 Whim 6 -0110011001011 Hsien 6 -0110011001011 Manatee 6 -0110011001011 Sepik 6 -0110011001011 Kwang 6 -0110011001011 Guayana 6 -0110011001011 Stag 6 -0110011001011 Glens 6 -0110011001011 Mini 6 -0110011001011 Matagorda 6 -0110011001011 Lassen 6 -0110011001011 Hidalgo 6 -0110011001011 Holmby 6 -0110011001011 Hindustan 6 -0110011001011 Toyama 6 -0110011001011 Officine 6 -0110011001011 Loser 6 -0110011001011 Andros 6 -0110011001011 Blackfriars 7 -0110011001011 PONT 7 -0110011001011 Shri 7 -0110011001011 LCA 7 -0110011001011 Ellesmere 7 -0110011001011 Hymn 7 -0110011001011 Rift 7 -0110011001011 Schuylkill 7 -0110011001011 Non-Proliferation 7 -0110011001011 Robben 7 -0110011001011 Pawtuxet 7 -0110011001011 Coldwater 7 -0110011001011 Daya 7 -0110011001011 Plateau 7 -0110011001011 Majnoon 7 -0110011001011 Ormond 7 -0110011001011 Nail 7 -0110011001011 Waikiki 7 -0110011001011 Loire 7 -0110011001011 Flagler 7 -0110011001011 Fig 8 -0110011001011 Tarpon 8 -0110011001011 CME 8 -0110011001011 Utilicorp 8 -0110011001011 Huntsman 8 -0110011001011 Winona 8 -0110011001011 Shallow 8 -0110011001011 Ursus 8 -0110011001011 Hasbrouck 8 -0110011001011 Manistee 8 -0110011001011 Snohomish 8 -0110011001011 Eastover 8 -0110011001011 Lovely 8 -0110011001011 Handelsbank 8 -0110011001011 Tinton 8 -0110011001011 Animation 8 -0110011001011 Sag 8 -0110011001011 Aleutian 8 -0110011001011 Marianas 9 -0110011001011 Floridabanc 9 -0110011001011 Sinking 9 -0110011001011 Williston 9 -0110011001011 Boynton 9 -0110011001011 Redondo 9 -0110011001011 Mobiliare 9 -0110011001011 Macomb 9 -0110011001011 Bug 9 -0110011001011 Samar 9 -0110011001011 Cottonwood 9 -0110011001011 Cowles 9 -0110011001011 Owyhee 10 -0110011001011 Niner 10 -0110011001011 Skyline 10 -0110011001011 Vauxhall 10 -0110011001011 Huntingdon 10 -0110011001011 Genesee 10 -0110011001011 Juno 10 -0110011001011 Hennepin 10 -0110011001011 Myrtle 10 -0110011001011 Oncology 10 -0110011001011 Mon 10 -0110011001011 Goldstrike 10 -0110011001011 Padre 10 -0110011001011 Pebble 10 -0110011001011 Pleasure 11 -0110011001011 DX 11 -0110011001011 Antoni 11 -0110011001011 Brandenburg 11 -0110011001011 Malayan 11 -0110011001011 Tarrant 11 -0110011001011 Spin 11 -0110011001011 Resolute 11 -0110011001011 Hush 11 -0110011001011 Maturity 11 -0110011001011 Delray 11 -0110011001011 Brevard 12 -0110011001011 Si 12 -0110011001011 Trimble 12 -0110011001011 Falkland 12 -0110011001011 Parachute 12 -0110011001011 Lighthouse 12 -0110011001011 Kennett 12 -0110011001011 Largest 12 -0110011001011 7th 13 -0110011001011 Kanawha 13 -0110011001011 Yorktown 13 -0110011001011 Morro 13 -0110011001011 ELF 13 -0110011001011 Deseret 13 -0110011001011 Mariana 13 -0110011001011 Micronics 13 -0110011001011 Seas 13 -0110011001011 Steep 13 -0110011001011 Maricopa 13 -0110011001011 Calumet 13 -0110011001011 Coyote 13 -0110011001011 Yangtze 13 -0110011001011 Oakbrook 13 -0110011001011 Heartbreak 13 -0110011001011 Rockingham 14 -0110011001011 Stony 14 -0110011001011 Zions 14 -0110011001011 Brazos 14 -0110011001011 Agoura 14 -0110011001011 Traverse 14 -0110011001011 1838 14 -0110011001011 Kiawah 14 -0110011001011 Olympus 15 -0110011001011 Sulphur 15 -0110011001011 Windy 15 -0110011001011 Turtle 15 -0110011001011 Alligator 15 -0110011001011 Leaman 15 -0110011001011 Roxy 15 -0110011001011 Oneida 16 -0110011001011 Sleepy 16 -0110011001011 Yuba 16 -0110011001011 Snake 16 -0110011001011 MIDI 16 -0110011001011 Chippewa 16 -0110011001011 Coconut 16 -0110011001011 Rockaway 16 -0110011001011 Monmouth 17 -0110011001011 Hundred 17 -0110011001011 Mist 18 -0110011001011 Pinellas 18 -0110011001011 4th 18 -0110011001011 Yani 18 -0110011001011 Disney-MGM 18 -0110011001011 Pushkin 19 -0110011001011 Sonoma 19 -0110011001011 Maltese 19 -0110011001011 Winnie 20 -0110011001011 Penobscot 20 -0110011001011 Comfort 20 -0110011001011 Coney 20 -0110011001011 Vero 21 -0110011001011 Cuyahoga 21 -0110011001011 Towne 21 -0110011001011 Kissimmee 21 -0110011001011 Bayou 22 -0110011001011 Sunset 22 -0110011001011 Steamboat 22 -0110011001011 Tejon 22 -0110011001011 Bucks 23 -0110011001011 Hillsborough 23 -0110011001011 Combat 23 -0110011001011 Epson 23 -0110011001011 Triborough 24 -0110011001011 Oyster 24 -0110011001011 Dancer 24 -0110011001011 Agrico 24 -0110011001011 Forbidden 24 -0110011001011 Treasure 24 -0110011001011 Rockland 24 -0110011001011 Powder 24 -0110011001011 Wabash 24 -0110011001011 Bekaa 24 -0110011001011 Matilda 25 -0110011001011 Lenox 25 -0110011001011 DeKalb 26 -0110011001011 Sequoyah 26 -0110011001011 Kharg 27 -0110011001011 Majestic 28 -0110011001011 Otter 28 -0110011001011 Kodiak 28 -0110011001011 Supremes 28 -0110011001011 Granite 29 -0110011001011 Permian 30 -0110011001011 Sequoia 30 -0110011001011 Pompano 30 -0110011001011 Ruhr 30 -0110011001011 Radisson 31 -0110011001011 GT 31 -0110011001011 Dane 31 -0110011001011 Farsi 31 -0110011001011 Foot 32 -0110011001011 Simi 32 -0110011001011 Scotts 32 -0110011001011 Lean 32 -0110011001011 Haile 32 -0110011001011 Belle 33 -0110011001011 Walnut 34 -0110011001011 Chivas 34 -0110011001011 Mo 35 -0110011001011 Basking 35 -0110011001011 Thunder 35 -0110011001011 Molokai 36 -0110011001011 Staten 36 -0110011001011 Golan 37 -0110011001011 Marin 37 -0110011001011 Ban 37 -0110011001011 Biscayne 37 -0110011001011 Carbon 38 -0110011001011 Pony 38 -0110011001011 Chef 39 -0110011001011 Subic 39 -0110011001011 Narragansett 39 -0110011001011 Monongahela 40 -0110011001011 Flags 40 -0110011001011 Sisters 42 -0110011001011 DES 43 -0110011001011 Sport 44 -0110011001011 Napa 45 -0110011001011 Puritan 46 -0110011001011 arch-rival 46 -0110011001011 Saratoga 46 -0110011001011 Brae 48 -0110011001011 Quad 50 -0110011001011 Waterford 50 -0110011001011 CS 52 -0110011001011 Straits 53 -0110011001011 Laguna 53 -0110011001011 Elk 54 -0110011001011 Nekoosa 54 -0110011001011 L 54 -0110011001011 Daytona 56 -0110011001011 Table 56 -0110011001011 Dupont 57 -0110011001011 Brigham 58 -0110011001011 Gwinnett 58 -0110011001011 Faith 60 -0110011001011 Fountain 60 -0110011001011 Paradise 61 -0110011001011 Diablo 61 -0110011001011 Flat 62 -0110011001011 Hirohito 64 -0110011001011 Coral 66 -0110011001011 Susquehanna 66 -0110011001011 UtiliCorp 68 -0110011001011 Rapid 70 -0110011001011 Saddle 74 -0110011001011 Suffolk 76 -0110011001011 Saddam 78 -0110011001011 Somerset 81 -0110011001011 Maple 82 -0110011001011 Westchester 83 -0110011001011 Planters 84 -0110011001011 Wind 85 -0110011001011 Thousand 86 -0110011001011 Mill 88 -0110011001011 Fall 91 -0110011001011 Pine 91 -0110011001011 Tiananmen 92 -0110011001011 Prudhoe 92 -0110011001011 Westmoreland 93 -0110011001011 Bloomfield 95 -0110011001011 Echo 97 -0110011001011 Beaver 98 -0110011001011 Broward 98 -0110011001011 Missile 100 -0110011001011 Seventh 102 -0110011001011 Dade 103 -0110011001011 Chesapeake 104 -0110011001011 archrival 112 -0110011001011 Redwood 115 -0110011001011 Methodist 115 -0110011001011 Cayman 118 -0110011001011 Kings 119 -0110011001011 Hot 119 -0110011001011 Chevy 126 -0110011001011 Pearl 127 -0110011001011 Hard 130 -0110011001011 Jiffy 144 -0110011001011 Saks 146 -0110011001011 Sioux 150 -0110011001011 Bergen 155 -0110011001011 Savannah 174 -0110011001011 Mile 175 -0110011001011 Wild 180 -0110011001011 Independence 182 -0110011001011 Highland 188 -0110011001011 Bow 190 -0110011001011 Rail 201 -0110011001011 Westin 209 -0110011001011 Marathon 211 -0110011001011 Virgin 213 -0110011001011 Camp 214 -0110011001011 Spring 217 -0110011001011 Rhode 270 -0110011001011 MGM 274 -0110011001011 Silicon 285 -0110011001011 Weekly 294 -0110011001011 Mount 294 -0110011001011 Oak 301 -0110011001011 Palm 322 -0110011001011 Garden 338 -0110011001011 Mercury 342 -0110011001011 Eagle 365 -0110011001011 Orange 401 -0110011001011 Norfolk 421 -0110011001011 Buick 431 -0110011001011 Pontiac 458 -0110011001011 Newport 504 -0110011001011 Dodge 542 -0110011001011 Special 544 -0110011001011 Liberty 546 -0110011001011 Suisse 552 -0110011001011 Universal 591 -0110011001011 Natural 593 -0110011001011 Mountain 683 -0110011001011 Golden 750 -0110011001011 Imperial 823 -0110011001011 Carbide 984 -0110011001011 Lake 1067 -0110011001011 Oklahoma 1086 -0110011001011 Beverly 1190 -0110011001011 Midland 1287 -0110011001011 Kansas 1850 -0110011001011 Pacific 5590 -0110011001011 Atlantic 2655 -0110011001100 NORTHEASTERN 1 -0110011001100 Zippy 1 -0110011001100 BRICKLIN 1 -0110011001100 LEVER 1 -0110011001100 ROADRUNNER 1 -0110011001100 INTELLIGENT 1 -0110011001100 AFFILIATED 1 -0110011001100 Eagleview 1 -0110011001100 Nationalities 1 -0110011001100 Toyko-based 1 -0110011001100 Freightway 1 -0110011001100 PORTER 1 -0110011001100 83,049 1 -0110011001100 MidSun 1 -0110011001100 R.E.B. 1 -0110011001100 AGRA 1 -0110011001100 Hoffman-Daggett 1 -0110011001100 SMKC 1 -0110011001100 Telechef 1 -0110011001100 PACER 1 -0110011001100 ORIOLE 1 -0110011001100 Kyto 1 -0110011001100 Chinachem 1 -0110011001100 Shatters 1 -0110011001100 E.T.A. 1 -0110011001100 RESDEL 1 -0110011001100 Dight 1 -0110011001100 VOTRAX 1 -0110011001100 Elastomer 1 -0110011001100 Unigene 1 -0110011001100 MARION 1 -0110011001100 Kinki 1 -0110011001100 DOMAIN 1 -0110011001100 I.S.I. 1 -0110011001100 Invetsment 1 -0110011001100 MELAMINE 1 -0110011001100 SPRINKLERS 1 -0110011001100 KIMBALL 1 -0110011001100 Audax 1 -0110011001100 VIPONT 1 -0110011001100 Photronic 1 -0110011001100 Streetcars 1 -0110011001100 Fennchurch 1 -0110011001100 KTS 1 -0110011001100 Desilu 1 -0110011001100 TRION 1 -0110011001100 FGP 1 -0110011001100 Koscot 1 -0110011001100 SCEPTRE 1 -0110011001100 GUARANTEE 1 -0110011001100 Gadfly 1 -0110011001100 NORTHGATE 1 -0110011001100 Zamagias 1 -0110011001100 VISHAY 1 -0110011001100 MODINE 1 -0110011001100 TYNDALL 1 -0110011001100 Keywest 1 -0110011001100 Cygnet 1 -0110011001100 REMBRANDT 1 -0110011001100 DECISION/CAPITAL 1 -0110011001100 NUTRI-METICS 1 -0110011001100 WESTMORELAND 1 -0110011001100 NAKED 1 -0110011001100 BIOCRAFT 1 -0110011001100 Neilsen-Wurster 1 -0110011001100 Henerson-Hirsch 1 -0110011001100 EVEREX 1 -0110011001100 Data-Link 1 -0110011001100 Petro-Hunt 1 -0110011001100 GROUNDWATER 1 -0110011001100 ARGO 1 -0110011001100 JUNCTION 1 -0110011001100 Interational 1 -0110011001100 PruSimon 1 -0110011001100 SIFCO 1 -0110011001100 COBE 1 -0110011001100 LACLEDE 1 -0110011001100 VANGUARD 1 -0110011001100 Australia/Israel 1 -0110011001100 OD&S 1 -0110011001100 MOTION 1 -0110011001100 PRAGMATISM 1 -0110011001100 Sidmar 1 -0110011001100 LeSabre/Electra 1 -0110011001100 By-Products 1 -0110011001100 Profesisonal 1 -0110011001100 HMK 1 -0110011001100 EXCLUSIVE 1 -0110011001100 Givaudan 1 -0110011001100 Fischer-MacLeod 1 -0110011001100 KOOR 1 -0110011001100 GARDEN-VARIETY 1 -0110011001100 Gichner 1 -0110011001100 Beechum 1 -0110011001100 groups-Diversified 1 -0110011001100 BRIEF 1 -0110011001100 FLEET/NORSTAR 1 -0110011001100 GeneTrak 1 -0110011001100 Foden 1 -0110011001100 Abraxas 1 -0110011001100 All-Bann 1 -0110011001100 Fieldale 1 -0110011001100 Al-Haddad 1 -0110011001100 SANDERS 1 -0110011001100 NORTON 1 -0110011001100 PSYCHIATRIC 1 -0110011001100 DSW 1 -0110011001100 PENROD 1 -0110011001100 Annson 1 -0110011001100 Deschesne 1 -0110011001100 ENEX 1 -0110011001100 WYLE 1 -0110011001100 FRVR 1 -0110011001100 Rastar 1 -0110011001100 CMH 1 -0110011001100 Daymon 1 -0110011001100 Pergammon 1 -0110011001100 ANTHEM 1 -0110011001100 Reafund 1 -0110011001100 GPE 1 -0110011001100 Freudenberg 1 -0110011001100 LATHAM 1 -0110011001100 TEMPEST 1 -0110011001100 USHA-RKKR 1 -0110011001100 Metglas 1 -0110011001100 Gretag 1 -0110011001100 Philosophical 1 -0110011001100 Music/RCA 1 -0110011001100 HNU 1 -0110011001100 AMERIWEST 1 -0110011001100 LOTUS 1 -0110011001100 Agro-Biological 1 -0110011001100 OUTPATIENT 1 -0110011001100 Salex 1 -0110011001100 HUNTWAY 1 -0110011001100 BANKATLANTIC 1 -0110011001100 Photo-Optical 1 -0110011001100 SAFECARD 1 -0110011001100 Courant/Connecticut 1 -0110011001100 Agricredit 1 -0110011001100 Curon 1 -0110011001100 ADOBE 1 -0110011001100 ORENTREICH 1 -0110011001100 Parkview 1 -0110011001100 PENTECH 1 -0110011001100 GOODY 1 -0110011001100 Maguire/Thomas 1 -0110011001100 Metasequoia 1 -0110011001100 Akashic 1 -0110011001100 Medi 1 -0110011001100 Xcor 1 -0110011001100 T-V 1 -0110011001100 SANKO 1 -0110011001100 DURABLE 1 -0110011001100 Seatex 1 -0110011001100 SWAROVSKI 1 -0110011001100 EMERGING 1 -0110011001100 Pre-Press 1 -0110011001100 BLASIUS 1 -0110011001100 CARLTON 1 -0110011001100 ALGOMA 1 -0110011001100 CNI 1 -0110011001100 Translease 1 -0110011001100 PLACER 1 -0110011001100 STERIVET 1 -0110011001100 KIEWIT-MURDOCH 1 -0110011001100 Lhoist 1 -0110011001100 CALGROUP 1 -0110011001100 FAIRFIELD 1 -0110011001100 KCPQ. 1 -0110011001100 AHL 1 -0110011001100 IMCO 1 -0110011001100 CORNERSTONE 1 -0110011001100 BRANDON 1 -0110011001100 Liquid-Crystal 1 -0110011001100 Brominated 1 -0110011001100 AUTOMOBILI 1 -0110011001100 PHOTRONIC 1 -0110011001100 EXPORT-IMPORT 1 -0110011001100 HELLER 1 -0110011001100 USAir-PS 1 -0110011001100 BAER 1 -0110011001100 CASABLANCA 1 -0110011001100 VELSICOL 1 -0110011001100 TELEMATICS 1 -0110011001100 REDPATH 1 -0110011001100 SEAMAN 1 -0110011001100 Fluidpower 1 -0110011001100 ICIS-LOR 1 -0110011001100 MICRON 1 -0110011001100 NURSING-CARE 1 -0110011001100 Agrotech 1 -0110011001100 KINGSTON 1 -0110011001100 L.C.P. 1 -0110011001100 KAHN 1 -0110011001100 MODERN 1 -0110011001100 Jung/Brannen 1 -0110011001100 PARK-OHIO 1 -0110011001100 RATNERS 1 -0110011001100 ENVIRODYNE 1 -0110011001100 ROYALE 1 -0110011001100 FLOORING 1 -0110011001100 TYSON 1 -0110011001100 Cleocin 1 -0110011001100 ORBANCO 1 -0110011001100 BLINDER 1 -0110011001100 MANUFACTURED 1 -0110011001100 ORION 1 -0110011001100 VULCAN 1 -0110011001100 NANTUCKET 1 -0110011001100 PRINCEVILLE 1 -0110011001100 SANWA 1 -0110011001100 Sumitoma 1 -0110011001100 HARPER 1 -0110011001100 FRIEDMAN 1 -0110011001100 Viewlogic 1 -0110011001100 Hardrock 1 -0110011001100 SCHWARTZ 1 -0110011001100 WESTMIN 1 -0110011001100 Mokan 1 -0110011001100 MAGNA 1 -0110011001100 CHIYODA 1 -0110011001100 Repauno 1 -0110011001100 INTERPUBLIC 1 -0110011001100 PREMARK 1 -0110011001100 CHARTWELL 1 -0110011001100 TRANSATLANTIC 1 -0110011001100 FMB 1 -0110011001100 OPPENHEIMER 1 -0110011001100 High-Level 1 -0110011001100 TRIAD 1 -0110011001100 GRADCO 1 -0110011001100 Squirts 1 -0110011001100 JUNO 1 -0110011001100 CONWEST 1 -0110011001100 208-acre 1 -0110011001100 WEATHERFORD 1 -0110011001100 WEF 1 -0110011001100 LIPOSOME 1 -0110011001100 Centrac 1 -0110011001100 ARDEN 1 -0110011001100 Cabil 1 -0110011001100 Idant 1 -0110011001100 Constantia 1 -0110011001100 Metallwerk 1 -0110011001100 RYLAND 1 -0110011001100 BENCH 1 -0110011001100 Shieldalloy 1 -0110011001100 ELDON 1 -0110011001100 Baxter-Travenol 1 -0110011001100 PARADE 1 -0110011001100 BARNES 1 -0110011001100 Food-N-Fuel 1 -0110011001100 CBS/Broadcast 1 -0110011001100 RS/ 1 -0110011001100 308,400 1 -0110011001100 MERRY-GO-ROUND 1 -0110011001100 Integral 1 -0110011001100 MANAGING 1 -0110011001100 TIERCO 1 -0110011001100 Matichon 1 -0110011001100 McDep 1 -0110011001100 FOOTHILL 1 -0110011001100 Warspite 1 -0110011001100 PAY-FONE 1 -0110011001100 WEIS 1 -0110011001100 Dallah 1 -0110011001100 SILVERSTEIN 1 -0110011001100 Markborough 1 -0110011001100 AIRBORNE 1 -0110011001100 SOUTHWALL 1 -0110011001100 Metropol 1 -0110011001100 ARISTECH 1 -0110011001100 GRAY-MARKET 1 -0110011001100 SAFEWAY 1 -0110011001100 CHIEFTAIN 1 -0110011001100 SMITHS 1 -0110011001100 GigaMos 1 -0110011001100 Biosyne 1 -0110011001100 ASBESTEC 1 -0110011001100 Electro-Space 1 -0110011001100 ROSS 1 -0110011001100 NEIMAN-MARCUS 1 -0110011001100 PICKENS-LED 1 -0110011001100 MARITRANS 1 -0110011001100 Mobil+ 1 -0110011001100 Nieuwenhuyzen 1 -0110011001100 ASCO 1 -0110011001100 Spray-Rite 1 -0110011001100 WORMALD 1 -0110011001100 GREIF 1 -0110011001100 Impresses 1 -0110011001100 HealthLine 1 -0110011001100 REFERRAL 1 -0110011001100 DEB 1 -0110011001100 Neediest 1 -0110011001100 539,800 1 -0110011001100 GIFT-RETURN 1 -0110011001100 Brenlin 1 -0110011001100 AMEC 1 -0110011001100 ROWE 1 -0110011001100 TransLux 1 -0110011001100 BNE 1 -0110011001100 CATERPILLAR 1 -0110011001100 Aviation/Aerospace 1 -0110011001100 Weyher/Livsey 1 -0110011001100 SOO 1 -0110011001100 ABBOTT 1 -0110011001100 REEVES 1 -0110011001100 BENEQUITY 1 -0110011001100 BJS 1 -0110011001100 Budco 1 -0110011001100 AGOURON 1 -0110011001100 Blohorn 1 -0110011001100 WED 1 -0110011001100 HOSPICE 1 -0110011001100 HILLENBRAND 1 -0110011001100 Wilmar 1 -0110011001100 Retarded 1 -0110011001100 Costex 1 -0110011001100 Peck-Lynn 1 -0110011001100 WHEELABRATOR 1 -0110011001100 EMCON 1 -0110011001100 ONTARIO 1 -0110011001100 Ferrosan 1 -0110011001100 Muskoka 1 -0110011001100 Life-Sustaining 1 -0110011001100 Jinichi 1 -0110011001100 COMMODORE 1 -0110011001100 LOWRANCE 1 -0110011001100 Indar 1 -0110011001100 FORTUNE 1 -0110011001100 Multi-Financial 1 -0110011001100 Rehabiliation 1 -0110011001100 Sanpao 1 -0110011001100 TOLLAND 1 -0110011001100 Apera 1 -0110011001100 Subsea 1 -0110011001100 EXCEL 1 -0110011001100 Youthwear 1 -0110011001100 VESTA 1 -0110011001100 BFG 1 -0110011001100 MALAYAN 1 -0110011001100 PORTSMOUTH 1 -0110011001100 Produtos 1 -0110011001100 P&0 1 -0110011001100 Protectaire 1 -0110011001100 Woodson-Tenent 1 -0110011001100 VISION 1 -0110011001100 WHEELING-PITTSBURGH 1 -0110011001100 Onan 1 -0110011001100 Farbest 1 -0110011001100 accquired 1 -0110011001100 Smale/Brooks 1 -0110011001100 COPYCAT 1 -0110011001100 Woodchester 1 -0110011001100 SOLITRON 1 -0110011001100 CPY 1 -0110011001100 CORESTATES 1 -0110011001100 Courier-Dispatch 1 -0110011001100 Babysitters 1 -0110011001100 Al-Industrial 1 -0110011001100 Multigame 1 -0110011001100 M.M.R. 1 -0110011001100 Humanoid 1 -0110011001100 Beretz 1 -0110011001100 Cineamerica 1 -0110011001100 MEDSTONE 1 -0110011001100 Radiometric 1 -0110011001100 KRC 1 -0110011001100 PARAMOUNT 1 -0110011001100 Kransco 1 -0110011001100 Vinnin 1 -0110011001100 McDERMOTT 1 -0110011001100 AVONDALE 1 -0110011001100 Aloette 1 -0110011001100 Macadamia 1 -0110011001100 Uniguard 1 -0110011001100 MCCLAIN 1 -0110011001100 PROVENA 1 -0110011001100 Telecomm 1 -0110011001100 Valar 1 -0110011001100 COVINGTON 1 -0110011001100 RELATIONAL 1 -0110011001100 BASSETT 1 -0110011001100 ZAPATA 1 -0110011001100 Ring-Free 1 -0110011001100 OFFENSIVE 1 -0110011001100 State-Owned 1 -0110011001100 RENT-A-DRESS 1 -0110011001100 Ferruzzia 1 -0110011001100 LOWREY 1 -0110011001100 MARIETTA 1 -0110011001100 RTKL 1 -0110011001100 CHUCKLES 1 -0110011001100 SRB 1 -0110011001100 ZALE 1 -0110011001100 Sedep 1 -0110011001100 Batimat 1 -0110011001100 Captic 1 -0110011001100 Transgenerational 1 -0110011001100 NEDLLOYD 1 -0110011001100 Pennsyvania 1 -0110011001100 Authentication 1 -0110011001100 THORTEC 1 -0110011001100 Music-Theatre 1 -0110011001100 Bio-Metric 1 -0110011001100 IROQUOIS 1 -0110011001100 UNICORP 1 -0110011001100 Inflight 1 -0110011001100 Grenadier 1 -0110011001100 WordTech 1 -0110011001100 ALMI 1 -0110011001100 OMNICOM 1 -0110011001100 Cortest 1 -0110011001100 Clondalkin 1 -0110011001100 Giraldi-Suarez 1 -0110011001100 WEIRTON 1 -0110011001100 VANCE 1 -0110011001100 VITALINK 1 -0110011001100 Western-Southern 1 -0110011001100 QLM 1 -0110011001100 HARTE-HANKS 1 -0110011001100 Novate 1 -0110011001100 GEBRUDER 1 -0110011001100 Ameritrans 1 -0110011001100 XCEL 1 -0110011001100 Goldcorp 1 -0110011001100 McNellen 1 -0110011001100 RJO 1 -0110011001100 HRL 1 -0110011001100 AHSC 1 -0110011001100 Association/National 1 -0110011001100 TEK 1 -0110011001100 LOSERS 1 -0110011001100 ex-Mirror 1 -0110011001100 Paliburg 1 -0110011001100 Grant/Tribune 1 -0110011001100 JAMIE 1 -0110011001100 FARRAGUT 1 -0110011001100 Tzyong 1 -0110011001100 LOWE 1 -0110011001100 LPTV 1 -0110011001100 Willowbridge 1 -0110011001100 CitiState 1 -0110011001100 SHOWA 1 -0110011001100 TATEHO 1 -0110011001100 Bioanalytical 1 -0110011001100 OSHAWA 1 -0110011001100 Secours 1 -0110011001100 Lazards 1 -0110011001100 CONISTON 1 -0110011001100 NINA 1 -0110011001100 KVA 1 -0110011001100 AAG 1 -0110011001100 Johns-Manville 1 -0110011001100 Opto-Electronics 1 -0110011001100 Lafferty 1 -0110011001100 Travel-Related 1 -0110011001100 DATA-DESIGN 1 -0110011001100 Consilium 1 -0110011001100 Intercommunications 1 -0110011001100 WYSE 1 -0110011001100 Kempense 1 -0110011001100 AutoPacific 1 -0110011001100 MARCADE 1 -0110011001100 WASHING 1 -0110011001100 Land-O-Sun 1 -0110011001100 BALDOR 1 -0110011001100 Zubier 1 -0110011001100 Cadec 1 -0110011001100 Order-Entry 1 -0110011001100 once-faltering 1 -0110011001100 CYCLOPS 1 -0110011001100 CUSTOMS 1 -0110011001100 Aquatech 1 -0110011001100 Transfield 1 -0110011001100 American-Forest 1 -0110011001100 RAIL 1 -0110011001100 Ometraco 1 -0110011001100 Sterling-Winthrop 1 -0110011001100 EVERGREEN 1 -0110011001100 PEARL 1 -0110011001100 STEREO 1 -0110011001100 Aqualon 1 -0110011001100 Nachrichtentechnik 1 -0110011001100 GWTW 1 -0110011001100 All-Entertainment 1 -0110011001100 En-Fab 1 -0110011001100 ELCO 1 -0110011001100 SYNOPTICS 1 -0110011001100 ROANOKE 1 -0110011001100 SUPERIOR 1 -0110011001100 Confiscated 1 -0110011001100 Petroliam 1 -0110011001100 Business-School 1 -0110011001100 Sauter/Piller/Percelay 1 -0110011001100 SMITHFIELD 1 -0110011001100 Hy-Form 1 -0110011001100 Aeroflex 1 -0110011001100 AmLaw 1 -0110011001100 Duplex 1 -0110011001100 Jumbalaya 1 -0110011001100 NEKOOSA 1 -0110011001100 SPECIFIED 1 -0110011001100 ANTHONY 1 -0110011001100 Nurturing 1 -0110011001100 Denshi 1 -0110011001100 Malapi 1 -0110011001100 OGILVY 1 -0110011001100 SMOKESTACK 1 -0110011001100 HECLA 1 -0110011001100 Svensk 1 -0110011001100 SWA 1 -0110011001100 Sherwin-Greenberg 1 -0110011001100 SHINSEI 1 -0110011001100 Janitorial 1 -0110011001100 ExleyGiles 1 -0110011001100 HUNTINGTON 1 -0110011001100 GETTY 1 -0110011001100 Biosite 1 -0110011001100 RMV. 1 -0110011001100 Transland 1 -0110011001100 FLIGHTSAFETY 1 -0110011001100 falisches 1 -0110011001100 MHS 1 -0110011001100 Greycoat 1 -0110011001100 L.T. 1 -0110011001100 Metallized 1 -0110011001100 InsurUSA 1 -0110011001100 Roche/Sterling 1 -0110011001100 SIGMA 1 -0110011001100 UCB 1 -0110011001100 Alta-Berkeley 1 -0110011001100 M.L.C. 1 -0110011001100 Conniston 1 -0110011001100 LIGGETT 1 -0110011001100 Inter-Governmental 1 -0110011001100 Durkee/Sharlit 1 -0110011001100 SEIKO 1 -0110011001100 CALOR 1 -0110011001100 Central-secured 1 -0110011001100 419,995 1 -0110011001100 COMSTOCK 1 -0110011001100 Digene 1 -0110011001100 Tilcon 1 -0110011001100 ALLENVEST 1 -0110011001100 Fairmind 1 -0110011001100 Midwesco 1 -0110011001100 ASSEMBLY 1 -0110011001100 Jetway 1 -0110011001100 Leasetex 1 -0110011001100 Spital 1 -0110011001100 AISIN 1 -0110011001100 AAH 1 -0110011001100 KELPIE 1 -0110011001100 BIOMAGNETIC 1 -0110011001100 COOKSON 1 -0110011001100 FUNERAL 1 -0110011001100 Systems-Postal 1 -0110011001100 Kent-Moore 1 -0110011001100 Jaffe/Lansing 1 -0110011001100 WALLENBERG 2 -0110011001100 GRANGES 2 -0110011001100 ROHR 2 -0110011001100 CARRINGTON 2 -0110011001100 NOEL 2 -0110011001100 MARSAM 2 -0110011001100 REUTERS 2 -0110011001100 AMSTERDAM-ROTTERDAM 2 -0110011001100 Kon 2 -0110011001100 Insulating 2 -0110011001100 DICEON 2 -0110011001100 VARCO 2 -0110011001100 MENKA 2 -0110011001100 Equus 2 -0110011001100 FIELDCREST 2 -0110011001100 CHEESE 2 -0110011001100 RIVERBEND 2 -0110011001100 SAMSUNG 2 -0110011001100 TORRAS 2 -0110011001100 Ibycus 2 -0110011001100 KANEB 2 -0110011001100 CALLAHAN 2 -0110011001100 LNC 2 -0110011001100 Idanta 2 -0110011001100 COATES 2 -0110011001100 Unifying 2 -0110011001100 TALLEY 2 -0110011001100 GD 2 -0110011001100 ENZO 2 -0110011001100 ENVIROSAFE 2 -0110011001100 Leased 2 -0110011001100 JEWELRY 2 -0110011001100 STEVENS 2 -0110011001100 CONVERSION 2 -0110011001100 MELLON 2 -0110011001100 Advatex 2 -0110011001100 BARRIS 2 -0110011001100 FOSTER 2 -0110011001100 VISUAL 2 -0110011001100 TRINITY 2 -0110011001100 Heumann 2 -0110011001100 AMBR 2 -0110011001100 Unipart 2 -0110011001100 Wellsford 2 -0110011001100 Prediction 2 -0110011001100 Jungwoo 2 -0110011001100 Newpark 2 -0110011001100 VALMONT 2 -0110011001100 ADDINGTON 2 -0110011001100 HSG 2 -0110011001100 KRH 2 -0110011001100 J&C 2 -0110011001100 AVIA 2 -0110011001100 JDC 2 -0110011001100 Entiche 2 -0110011001100 OCTEL 2 -0110011001100 ASF 2 -0110011001100 Rehabilitative 2 -0110011001100 PACO 2 -0110011001100 Adolescent 2 -0110011001100 CALGON 2 -0110011001100 Veryfine 2 -0110011001100 Artois-Piedboeuf 2 -0110011001100 Spawn 2 -0110011001100 Underseas 2 -0110011001100 HOVNANIAN 2 -0110011001100 ECOLOGY 2 -0110011001100 GERBER 2 -0110011001100 BODY 2 -0110011001100 FACET 2 -0110011001100 Sizes 2 -0110011001100 Lipid 2 -0110011001100 Money-Market 2 -0110011001100 KM 2 -0110011001100 ForstmannLeff 2 -0110011001100 Regulator 2 -0110011001100 Consumat 2 -0110011001100 Wesmar 2 -0110011001100 Velos 2 -0110011001100 Lectra 2 -0110011001100 Lafe 2 -0110011001100 Intratec 2 -0110011001100 Stirs 2 -0110011001100 ASSURANCES 2 -0110011001100 Dechesne 2 -0110011001100 QUANTUM 2 -0110011001100 Northfork 2 -0110011001100 Wastewater 2 -0110011001100 SPOT 2 -0110011001100 OAKWOOD 2 -0110011001100 Tillex 2 -0110011001100 Deceptive 2 -0110011001100 Conti-Commodity 2 -0110011001100 Newbridge 2 -0110011001100 WARREN 2 -0110011001100 NORD 2 -0110011001100 Kaluakoi 2 -0110011001100 Oldest 2 -0110011001100 Richfood 2 -0110011001100 DOME 2 -0110011001100 Topa 2 -0110011001100 AERO 2 -0110011001100 Childress/Klein 2 -0110011001100 ASIA 2 -0110011001100 HINO 2 -0110011001100 TAYLOR 2 -0110011001100 CHEROKEE 2 -0110011001100 LADBROKE 2 -0110011001100 INGLES 2 -0110011001100 Cindic 2 -0110011001100 Scicon 2 -0110011001100 Watches 2 -0110011001100 Crystal/Barkley 2 -0110011001100 Europe/Africa 2 -0110011001100 Harlyn 2 -0110011001100 Syufy 2 -0110011001100 VARIAN 2 -0110011001100 RANK 2 -0110011001100 Allomet 2 -0110011001100 PicTel 2 -0110011001100 YLC 2 -0110011001100 DURAMED 2 -0110011001100 Equilease 2 -0110011001100 JEFFERIES 2 -0110011001100 OSBORN 2 -0110011001100 FIXED 2 -0110011001100 Wyvern 2 -0110011001100 Baden-Wurttemberg 2 -0110011001100 PERGAMON 2 -0110011001100 Pencil 2 -0110011001100 WOLVERINE 2 -0110011001100 Huntway 2 -0110011001100 TRUSTHOUSE 2 -0110011001100 CORKEN 2 -0110011001100 AMWEST 2 -0110011001100 PARKER 2 -0110011001100 VICTORIA 2 -0110011001100 YELLOWKNIFE 2 -0110011001100 Adria 2 -0110011001100 Kallestad 2 -0110011001100 Servicos 2 -0110011001100 VIRGIN 2 -0110011001100 ELEKTRISK 2 -0110011001100 Coastline 2 -0110011001100 Legendary 2 -0110011001100 NEWPORT 2 -0110011001100 KCI 2 -0110011001100 UNIONFED 2 -0110011001100 MS/Essex 2 -0110011001100 Bancshare 2 -0110011001100 TELESPHERE 2 -0110011001100 TELEMUNDO 2 -0110011001100 Felec 2 -0110011001100 MetroGoldwyn-Mayer 2 -0110011001100 MYERS 2 -0110011001100 HAWAIIAN 2 -0110011001100 Carbonic 2 -0110011001100 MAGNET 2 -0110011001100 Call-by-Call 2 -0110011001100 GOLDOME 2 -0110011001100 KIRIN 2 -0110011001100 R.R.A. 2 -0110011001100 Osrow 2 -0110011001100 L-Bar 2 -0110011001100 Softbridge 2 -0110011001100 BEIJING 2 -0110011001100 Dobisky 2 -0110011001100 Supportive 2 -0110011001100 PUBLICKER 2 -0110011001100 HILLSDOWN 2 -0110011001100 Commet 2 -0110011001100 Multiphasic 2 -0110011001100 Sintered 2 -0110011001100 Cogen 2 -0110011001100 Fluorine 2 -0110011001100 Zytec 2 -0110011001100 Cannon-Melia 2 -0110011001100 BENLOX 2 -0110011001100 EOS 2 -0110011001100 ABACO 2 -0110011001100 RELIANCE 2 -0110011001100 C-K 2 -0110011001100 SUGGESTION 2 -0110011001100 HEES 2 -0110011001100 JACKPOT 2 -0110011001100 VIRCO 2 -0110011001100 Bio-Research 2 -0110011001100 Le-Israel 2 -0110011001100 YAMAHA 2 -0110011001100 Ape 2 -0110011001100 Tjaereborg-Sterling 2 -0110011001100 CHARIOT 2 -0110011001100 Highgate 2 -0110011001100 GUILFORD 2 -0110011001100 ATLANTIS 2 -0110011001100 R.B.M. 2 -0110011001100 ALLSTAR 2 -0110011001100 DUMAGAMI 2 -0110011001100 MATRIX 2 -0110011001100 LUCAS 2 -0110011001100 Nielsen-Wurster 2 -0110011001100 Provesta 2 -0110011001100 Hospal 2 -0110011001100 Bomar 2 -0110011001100 Masstor 2 -0110011001100 CONVERGENT 2 -0110011001100 Lasarray 2 -0110011001100 G&R 2 -0110011001100 TYCO 2 -0110011001100 Roy-L 2 -0110011001100 Televideo 2 -0110011001100 Gestetner 2 -0110011001100 FLEET 2 -0110011001100 JACOBSON 2 -0110011001100 NOMURA 2 -0110011001100 KMC 2 -0110011001100 POTOMAC 2 -0110011001100 BANCTEXAS 2 -0110011001100 Faxit 2 -0110011001100 MPLC 2 -0110011001100 Immobiliare 2 -0110011001100 FLEMING 2 -0110011001100 Systech 2 -0110011001100 ARGONAUT 2 -0110011001100 KANGYO 3 -0110011001100 Oilfield 3 -0110011001100 Aquatic 3 -0110011001100 Enviro-Spray 3 -0110011001100 OCEAN 3 -0110011001100 STONE 3 -0110011001100 TCOM 3 -0110011001100 DAIWA 3 -0110011001100 BioTechnology 3 -0110011001100 NICHOLS 3 -0110011001100 ROCKWELL 3 -0110011001100 BASIC 3 -0110011001100 RICHARDSON 3 -0110011001100 LLOYDS 3 -0110011001100 EAGLE-PICHER 3 -0110011001100 COLECO 3 -0110011001100 MRC 3 -0110011001100 Sawyer/Miller 3 -0110011001100 Immobiliaria 3 -0110011001100 Eloquent 3 -0110011001100 InterVen 3 -0110011001100 CAROLCO 3 -0110011001100 INVESTOR 3 -0110011001100 TUCSON 3 -0110011001100 LANE 3 -0110011001100 Completes 3 -0110011001100 ALCAN 3 -0110011001100 Dislocated 3 -0110011001100 PETROLANE 3 -0110011001100 Conergics 3 -0110011001100 Hoogovens 3 -0110011001100 Nicholas-Applegate 3 -0110011001100 INSPIRATION 3 -0110011001100 EXCO 3 -0110011001100 Fox/Lorber 3 -0110011001100 WESTCOAST 3 -0110011001100 HOMESTEAD 3 -0110011001100 BRIDGFORD 3 -0110011001100 GEOTHERMAL 3 -0110011001100 TORONTO-DOMINION 3 -0110011001100 Criticare 3 -0110011001100 MLPI 3 -0110011001100 Clarinet 3 -0110011001100 SURGICAL 3 -0110011001100 Barbar 3 -0110011001100 EPO. 3 -0110011001100 O.D.N. 3 -0110011001100 PageAmerica 3 -0110011001100 AVERY 3 -0110011001100 CLAYTON 3 -0110011001100 TOBACCO 3 -0110011001100 Kalium 3 -0110011001100 Asda-MFI 3 -0110011001100 MXM 3 -0110011001100 Quake 3 -0110011001100 NS 3 -0110011001100 Lamalie 3 -0110011001100 Nullabor 3 -0110011001100 HMG/Courtland 3 -0110011001100 ADIA 3 -0110011001100 Lasco 3 -0110011001100 Nycom 3 -0110011001100 ADELPHIA 3 -0110011001100 REEBOK 3 -0110011001100 N-W 3 -0110011001100 Tec 3 -0110011001100 Fabrication 3 -0110011001100 NIKKO 3 -0110011001100 INERTIA 3 -0110011001100 NME 3 -0110011001100 CASINO 3 -0110011001100 CHAMPION 3 -0110011001100 Mazak 3 -0110011001100 Melamine 3 -0110011001100 ComCapital 3 -0110011001100 RORER 3 -0110011001100 C1 3 -0110011001100 WESTPAC 3 -0110011001100 MediQual 3 -0110011001100 INTELOGIC 3 -0110011001100 EMERSON 3 -0110011001100 RTS 3 -0110011001100 WAXMAN 3 -0110011001100 MIV 3 -0110011001100 Advanco 3 -0110011001100 DIXONS 3 -0110011001100 Miltope 3 -0110011001100 Offset 3 -0110011001100 UD 3 -0110011001100 PetroMar 3 -0110011001100 SoftAd 3 -0110011001100 BMY-Combat 3 -0110011001100 Bituma 3 -0110011001100 FundTrust 3 -0110011001100 Goldline 3 -0110011001100 LUCKY 3 -0110011001100 O&M 3 -0110011001100 Chernow 3 -0110011001100 SUNDSTRAND 3 -0110011001100 Secs 3 -0110011001100 JOY 3 -0110011001100 SHOE 3 -0110011001100 Fixed-Income 3 -0110011001100 Westfaelisches 3 -0110011001100 UDC-UNIVERSAL 3 -0110011001100 Motherhood 3 -0110011001100 Moneyed 3 -0110011001100 Jaymont 3 -0110011001100 Sentara 3 -0110011001100 Swine 3 -0110011001100 Ascent 3 -0110011001100 Hansabel 3 -0110011001100 Univac 3 -0110011001100 ZH 3 -0110011001100 Investnet 3 -0110011001100 Prenatal 3 -0110011001100 Diaper 3 -0110011001100 On-Site 3 -0110011001100 Parlux 3 -0110011001100 Acacia 4 -0110011001100 COMBINED 4 -0110011001100 YAMAICHI 4 -0110011001100 Supercomputing 4 -0110011001100 HINDERLITER 4 -0110011001100 ACCIDENT 4 -0110011001100 SNC 4 -0110011001100 Shaving 4 -0110011001100 GALACTIC 4 -0110011001100 RHEEM 4 -0110011001100 Ennui 4 -0110011001100 Fluids 4 -0110011001100 FFP 4 -0110011001100 IFM 4 -0110011001100 TOOL 4 -0110011001100 Tidel 4 -0110011001100 Novellus 4 -0110011001100 BOLLORE 4 -0110011001100 BIA-COR 4 -0110011001100 Delicato 4 -0110011001100 Analytic 4 -0110011001100 TRANSPORT 4 -0110011001100 Tailor 4 -0110011001100 IRVING 4 -0110011001100 Folding 4 -0110011001100 Sewing 4 -0110011001100 GLAXO 4 -0110011001100 Accutax 4 -0110011001100 INDUSTRIALI 4 -0110011001100 Grading 4 -0110011001100 DiversiTech 4 -0110011001100 MedFusion 4 -0110011001100 Emcon 4 -0110011001100 Mavar 4 -0110011001100 ARVIN 4 -0110011001100 InterWest 4 -0110011001100 Whitcom 4 -0110011001100 CLARK 4 -0110011001100 M&T 4 -0110011001100 Marshals 4 -0110011001100 Middleby 4 -0110011001100 Akros 4 -0110011001100 NAVISTAR 4 -0110011001100 Motorcycle 4 -0110011001100 CAMERA 4 -0110011001100 Closed-End 4 -0110011001100 Secura 4 -0110011001100 SCHWEIZERISCHE 4 -0110011001100 AVANA 4 -0110011001100 Walwood 4 -0110011001100 Satra 4 -0110011001100 Calpine 4 -0110011001100 Waverly 4 -0110011001100 Oral-B 4 -0110011001100 AK 4 -0110011001100 Cupples 4 -0110011001100 Condensed 4 -0110011001100 HARNISCHFEGER 4 -0110011001100 Go-Go 4 -0110011001100 Malapai 4 -0110011001100 Teletrac 4 -0110011001100 Ammco 4 -0110011001100 Victim 4 -0110011001100 Halts 4 -0110011001100 Releasing 4 -0110011001100 HENLEY 4 -0110011001100 CHAMBERS 4 -0110011001100 Intermodal 5 -0110011001100 Sprout 5 -0110011001100 Hyperion 5 -0110011001100 SANYO 5 -0110011001100 ROTHMANS 5 -0110011001100 SOCIETA 5 -0110011001100 WearEver-Proctor 5 -0110011001100 Purpose 5 -0110011001100 GIBRALTAR 5 -0110011001100 Programma 5 -0110011001100 LaBar 5 -0110011001100 Compressor 5 -0110011001100 Carmike 5 -0110011001100 HomeCare 5 -0110011001100 Ceramic 5 -0110011001100 Muffler 5 -0110011001100 COMPOSITE 5 -0110011001100 NOBLE 5 -0110011001100 Cornucopia 5 -0110011001100 ARIADNE 5 -0110011001100 EMERALD 5 -0110011001100 Limitation 5 -0110011001100 Infinite 5 -0110011001100 Roadrunner 5 -0110011001100 PETRIE 5 -0110011001100 Cognitive 5 -0110011001100 Delicate 5 -0110011001100 Otomobil 5 -0110011001100 Boosts 5 -0110011001100 BUILDING 5 -0110011001100 Wefa 5 -0110011001100 WAH 5 -0110011001100 Recreational 5 -0110011001100 ARGYLL 5 -0110011001100 WARNER 5 -0110011001100 Decorative 5 -0110011001100 Licensed 5 -0110011001100 Ninja 5 -0110011001100 HLM 5 -0110011001100 MCDONNELL 5 -0110011001100 Child-Care 5 -0110011001100 Sacre 5 -0110011001100 COLOROLL 5 -0110011001100 QUADREX 5 -0110011001100 BETHLEHEM 5 -0110011001100 Peripheral 5 -0110011001100 Affinity 5 -0110011001100 GENETICS 5 -0110011001100 Linea 5 -0110011001100 Reproduction 5 -0110011001100 Suspension 5 -0110011001100 DRESDNER 5 -0110011001100 MCS 6 -0110011001100 Amchase 6 -0110011001100 Orchards 6 -0110011001100 Pumpkin 6 -0110011001100 MAXWELL 6 -0110011001100 CRAZY 6 -0110011001100 Gorge 6 -0110011001100 Low-Income 6 -0110011001100 Exide 6 -0110011001100 Pregnancy 6 -0110011001100 Oxygen 6 -0110011001100 Successor 6 -0110011001100 CONTIBEL 6 -0110011001100 Grammar 6 -0110011001100 CLEVELAND 6 -0110011001100 AV 6 -0110011001100 Ballets 6 -0110011001100 WESTMINSTER 6 -0110011001100 Flowering 6 -0110011001100 FUEL 6 -0110011001100 Seismic 6 -0110011001100 Investment-Grade 6 -0110011001100 Nutritional 6 -0110011001100 Hometown 6 -0110011001100 Tee 6 -0110011001100 CELLULAR 6 -0110011001100 KLP 6 -0110011001100 SHAMROCK 6 -0110011001100 GREEN 6 -0110011001100 Unique 6 -0110011001100 KOBE 6 -0110011001100 Sub 6 -0110011001100 OMNI 6 -0110011001100 Missionaries 7 -0110011001100 Tenant 7 -0110011001100 Owl 7 -0110011001100 LDX 7 -0110011001100 GRANADA 7 -0110011001100 Metric 7 -0110011001100 MERCURY 7 -0110011001100 BEVERLY 7 -0110011001100 Skies 7 -0110011001100 ADELAIDE 7 -0110011001100 Knee 7 -0110011001100 Thermco 7 -0110011001100 GIB 7 -0110011001100 Lifeco 7 -0110011001100 JHM 7 -0110011001100 ROBINSON 7 -0110011001100 CX 7 -0110011001100 FT 7 -0110011001100 COMMERCE 7 -0110011001100 Abrasive 7 -0110011001100 WESTINGHOUSE 7 -0110011001100 1001 7 -0110011001100 Lime 7 -0110011001100 Kangaroo 7 -0110011001100 RACAL 7 -0110011001100 AGENCE 7 -0110011001100 Menswear 7 -0110011001100 INFORMATION 7 -0110011001100 Navigators 7 -0110011001100 FR 7 -0110011001100 Compression 7 -0110011001100 Daylight 7 -0110011001100 KAWASAKI 8 -0110011001100 SUNSHINE 8 -0110011001100 MANHATTAN 8 -0110011001100 KUWAIT 8 -0110011001100 ISUZU 8 -0110011001100 LUBE 8 -0110011001100 Quill 8 -0110011001100 Acoustic 8 -0110011001100 T.C.C. 8 -0110011001100 Cereal 8 -0110011001100 NORSK 8 -0110011001100 CONVERTIBLE 8 -0110011001100 IJ 8 -0110011001100 Cleaner 8 -0110011001100 MOBILE 8 -0110011001100 FF 8 -0110011001100 PROPERTY 8 -0110011001100 Oxidyne 8 -0110011001100 Spaghetti 8 -0110011001100 Renco 8 -0110011001100 BIRMID 9 -0110011001100 13-30 9 -0110011001100 Meats 9 -0110011001100 Crab 9 -0110011001100 Kitchens 9 -0110011001100 Harlequin 9 -0110011001100 Fabricated 9 -0110011001100 Dallhold 9 -0110011001100 Photographic 9 -0110011001100 Feature 9 -0110011001100 Microfilm 9 -0110011001100 Cast 9 -0110011001100 Microcomputer 9 -0110011001100 TECO 9 -0110011001100 Peanut 9 -0110011001100 Short-Term 9 -0110011001100 Ibbotson 9 -0110011001100 HEALTHCARE 9 -0110011001100 Chem 9 -0110011001100 VALUE 9 -0110011001100 Valuation 9 -0110011001100 Packet 9 -0110011001100 Immunology 10 -0110011001100 MTI 10 -0110011001100 SWISS 10 -0110011001100 GRENFELL 10 -0110011001100 Assured 10 -0110011001100 Kynikos 10 -0110011001100 KIA 10 -0110011001100 Videotex 10 -0110011001100 Document 10 -0110011001100 Pesticide 10 -0110011001100 Mouth 10 -0110011001100 Orchid 10 -0110011001100 M&G 10 -0110011001100 BF 10 -0110011001100 Footwear 11 -0110011001100 Extension 11 -0110011001100 Rheinisch-Westfaelisches 11 -0110011001100 Recipe 11 -0110011001100 Prosecution 11 -0110011001100 Glenbrook 11 -0110011001100 Retention 11 -0110011001100 FOREST 11 -0110011001100 TCBY 11 -0110011001100 Deb 11 -0110011001100 Showcase 11 -0110011001100 Serco 11 -0110011001100 WCI 11 -0110011001100 Preference 11 -0110011001100 Novacor 12 -0110011001100 Westmin 12 -0110011001100 Rehab 12 -0110011001100 B-E 12 -0110011001100 Tengelmann 13 -0110011001100 Sleep 13 -0110011001100 3D 13 -0110011001100 RV 13 -0110011001100 Consul 13 -0110011001100 Skunk 13 -0110011001100 Cab 13 -0110011001100 Locomotive 13 -0110011001100 Replacement 13 -0110011001100 Surface 13 -0110011001100 Expert 13 -0110011001100 Masterworks 13 -0110011001100 CM&M 14 -0110011001100 Visible 14 -0110011001100 H&Q 14 -0110011001100 Poetry 14 -0110011001100 MATSUSHITA 14 -0110011001100 Lodging 14 -0110011001100 Flies 14 -0110011001100 PA 14 -0110011001100 Protocol 14 -0110011001100 Nut 14 -0110011001100 Shelter 14 -0110011001100 NavCom 14 -0110011001100 Juvenile 14 -0110011001100 Funeral 14 -0110011001100 DST 15 -0110011001100 World-Wide 15 -0110011001100 EQUITICORP 15 -0110011001100 Fishery 15 -0110011001100 Interagency 15 -0110011001100 Drinking 16 -0110011001100 Situation 16 -0110011001100 Roller 16 -0110011001100 DEUTSCHE 16 -0110011001100 Time-Life 16 -0110011001100 REALTY 16 -0110011001100 S.H. 16 -0110011001100 Geophysical 16 -0110011001100 Lottery 16 -0110011001100 Acid 16 -0110011001100 Constellation 17 -0110011001100 Amphenol 17 -0110011001100 Saver 17 -0110011001100 Pie 17 -0110011001100 Protective 17 -0110011001100 Goal 17 -0110011001100 Crossing 18 -0110011001100 Appraisal 18 -0110011001100 Barrier 18 -0110011001100 Killer 18 -0110011001100 Gift 18 -0110011001100 Shatkin 18 -0110011001100 Trailer 18 -0110011001100 Seafood 19 -0110011001100 Ethical 19 -0110011001100 Fluid 19 -0110011001100 Raisin 20 -0110011001100 ROVER 20 -0110011001100 GRAND 20 -0110011001100 Vacuum 20 -0110011001100 ELDERS 20 -0110011001100 HEAVY 20 -0110011001100 DATA 20 -0110011001100 Muni 20 -0110011001100 Renewal 20 -0110011001100 Synthetic 21 -0110011001100 Warrior 21 -0110011001100 ISI 21 -0110011001100 MIDLAND 21 -0110011001100 HYUNDAI 21 -0110011001100 Workplace 21 -0110011001100 Refinery 21 -0110011001100 Fun 21 -0110011001100 Tank 21 -0110011001100 Celtic 22 -0110011001100 Measurement 22 -0110011001100 Loyalty 22 -0110011001100 DEPARTMENT 23 -0110011001100 CN 23 -0110011001100 Acclaim 23 -0110011001100 Porta 23 -0110011001100 Transaction 24 -0110011001100 Hickory 24 -0110011001100 INCOME 24 -0110011001100 Advertiser 24 -0110011001100 Wonderful 24 -0110011001100 Donut 24 -0110011001100 Saving 25 -0110011001100 IMPERIAL 25 -0110011001100 RAND 25 -0110011001100 Supercomputer 25 -0110011001100 Recreation 26 -0110011001100 Aeronautical 26 -0110011001100 Omega 26 -0110011001100 Selective 26 -0110011001100 HONDA 27 -0110011001100 Pharmacy 27 -0110011001100 Recycling 27 -0110011001100 Bakery 28 -0110011001100 AMEX 28 -0110011001100 MEDICAL 28 -0110011001100 TOYOTA 29 -0110011001100 Touchstone 29 -0110011001100 Territory 29 -0110011001100 Merit 29 -0110011001100 Chain 30 -0110011001100 PUBLIC 30 -0110011001100 Flag 30 -0110011001100 Nursing 30 -0110011001100 Poultry 30 -0110011001100 Biomedical 31 -0110011001100 Hardware 31 -0110011001100 Outdoor 31 -0110011001100 Tokyu 31 -0110011001100 Custom 32 -0110011001100 Thermal 32 -0110011001100 NISSAN 33 -0110011001100 Winthrop 33 -0110011001100 Directory 33 -0110011001100 Catastrophic 34 -0110011001100 Livestock 34 -0110011001100 URS 35 -0110011001100 Harvest 35 -0110011001100 Temporary 36 -0110011001100 Nord 37 -0110011001100 Ottaway 37 -0110011001100 Fantasy 37 -0110011001100 Career 37 -0110011001100 Ski 37 -0110011001100 Penguin 37 -0110011001100 Emerging 37 -0110011001100 Egg 38 -0110011001100 CITY 38 -0110011001100 Psychological 39 -0110011001100 Magnetic 39 -0110011001100 C.B. 39 -0110011001100 Flow 40 -0110011001100 Liquor 40 -0110011001100 Option 40 -0110011001100 Diagnostic 40 -0110011001100 LIFE 40 -0110011001100 Petrolane 41 -0110011001100 Ship 41 -0110011001100 Suburban 41 -0110011001100 Connection 41 -0110011001100 Comedy 41 -0110011001100 BELL 42 -0110011001100 Tung 43 -0110011001100 Galoob 44 -0110011001100 Audio 44 -0110011001100 Strike 46 -0110011001100 Fisheries 46 -0110011001100 Aerojet 47 -0110011001100 Bus 48 -0110011001100 Response 48 -0110011001100 Gourmet 50 -0110011001100 Solar 50 -0110011001100 Dress 51 -0110011001100 Check 51 -0110011001100 Cartier 52 -0110011001100 Critical 52 -0110011001100 Copley 52 -0110011001100 HealthCare 52 -0110011001100 Piano 53 -0110011001100 Carrier 54 -0110011001100 Terminal 54 -0110011001100 Lost 55 -0110011001100 Camera 56 -0110011001100 Genuine 57 -0110011001100 Gaming 59 -0110011001100 Pet 59 -0110011001100 Rehabilitation 60 -0110011001100 Studio 61 -0110011001100 Racing 61 -0110011001100 Cafe 62 -0110011001100 Forecasting 63 -0110011001100 Engineered 64 -0110011001100 Stage 64 -0110011001100 Litigation 66 -0110011001100 Ladies 66 -0110011001100 Related 67 -0110011001100 Visual 67 -0110011001100 Mineral 68 -0110011001100 Turbine 69 -0110011001100 Asbestos 70 -0110011001100 Image 71 -0110011001100 Process 71 -0110011001100 Prairie 71 -0110011001100 Savers 72 -0110011001100 Resort 75 -0110011001100 Radiation 75 -0110011001100 Learning 77 -0110011001100 Animal 78 -0110011001100 Tech 80 -0110011001100 Dulles 80 -0110011001100 Sporting 82 -0110011001100 Surgical 82 -0110011001100 Offshore 83 -0110011001100 Famous 85 -0110011001100 GENERAL 86 -0110011001100 Ice 86 -0110011001100 Playtex 87 -0110011001100 WEFA 88 -0110011001100 Screen 90 -0110011001100 Advance 91 -0110011001100 Toy 93 -0110011001100 Wilshire 94 -0110011001100 Trial 100 -0110011001100 Fuel 103 -0110011001100 Acquisitions 106 -0110011001100 Distribution 110 -0110011001100 Naturalization 115 -0110011001100 Dealer 116 -0110011001100 Master 116 -0110011001100 Multifoods 119 -0110011001100 Creative 120 -0110011001100 Renaissance 120 -0110011001100 Team 120 -0110011001100 Aero 121 -0110011001100 Select 122 -0110011001100 Apparel 122 -0110011001100 Color 128 -0110011001100 Dairy 130 -0110011001100 Personnel 130 -0110011001100 Diversified 131 -0110011001100 Broadcast 132 -0110011001100 Progress 133 -0110011001100 Consulting 134 -0110011001100 Microwave 134 -0110011001100 Chip 135 -0110011001100 Record 136 -0110011001100 Product 139 -0110011001100 Forum 143 -0110011001100 Laser 148 -0110011001100 Dance 149 -0110011001100 Secret 149 -0110011001100 Discount 158 -0110011001100 Specialty 158 -0110011001100 Grow 159 -0110011001100 Plant 161 -0110011001100 Child 162 -0110011001100 Mail 163 -0110011001100 Game 170 -0110011001100 Regional 172 -0110011001100 Agricultural 174 -0110011001100 Arms 179 -0110011001100 Materials 182 -0110011001100 Newspaper 188 -0110011001100 Cablevision 190 -0110011001100 Aid 194 -0110011001100 Quality 213 -0110011001100 Weather 216 -0110011001100 Automobile 219 -0110011001100 Resource 222 -0110011001100 Days 227 -0110011001100 Automotive 229 -0110011001100 Property 231 -0110011001100 Restaurant 235 -0110011001100 Town 238 -0110011001100 Overseas 239 -0110011001100 Railway 243 -0110011001100 LOAN 249 -0110011001100 Shoe 255 -0110011001100 Pension 279 -0110011001100 Book 299 -0110011001100 NATIONAL 300 -0110011001100 Pizza 307 -0110011001100 Desert 309 -0110011001100 Scientific 312 -0110011001100 Mobile 325 -0110011001100 Healthcare 326 -0110011001100 Sports 332 -0110011001100 Fair 332 -0110011001100 Country 340 -0110011001100 Legal 355 -0110011001100 Technical 366 -0110011001100 Cellular 371 -0110011001100 Travel 383 -0110011001100 Supermarkets 387 -0110011001100 Water 391 -0110011001100 Music 412 -0110011001100 Armed 430 -0110011001100 Radio 472 -0110011001100 Customs 475 -0110011001100 Family 479 -0110011001100 Semiconductor 500 -0110011001100 Video 524 -0110011001100 Forest 527 -0110011001100 Municipal 548 -0110011001100 Human 557 -0110011001100 Media 731 -0110011001100 Mutual 750 -0110011001100 Postal 836 -0110011001100 Hotel 881 -0110011001100 Information 944 -0110011001100 Environmental 966 -0110011001100 Hospital 1115 -0110011001100 Data 2220 -0110011001100 Public 2435 -0110011001100 News 3348 -0110011001100 Energy 3563 -0110011001100 Financial 6112 -0110011001101 Klynfeld 1 -0110011001101 Noticia 1 -0110011001101 Mirrored 1 -0110011001101 Internatational 1 -0110011001101 VidCam 1 -0110011001101 Transferrers 1 -0110011001101 Sulzberger-Rolfe 1 -0110011001101 Debt-for-Equity 1 -0110011001101 BioTech 1 -0110011001101 Foodstuff 1 -0110011001101 BRUXELLE 1 -0110011001101 ODNS 1 -0110011001101 Acceptanc 1 -0110011001101 Tactictal 1 -0110011001101 University-New 1 -0110011001101 Gas-Cooled 1 -0110011001101 SNACK 1 -0110011001101 Reteach 1 -0110011001101 Fastener 1 -0110011001101 Markets-International 1 -0110011001101 Tri-Source 1 -0110011001101 Portfolio-High 1 -0110011001101 Channeled 1 -0110011001101 Cali-Mex 1 -0110011001101 Profit-Minded 1 -0110011001101 University-Presbyterian 1 -0110011001101 Pargas 1 -0110011001101 Lombard-Wall 1 -0110011001101 MICROELECTRONIC 1 -0110011001101 bioorganic 1 -0110011001101 Bank/International 1 -0110011001101 North-Western 1 -0110011001101 Inc.-Piedmont 1 -0110011001101 MEASUREMENT 1 -0110011001101 steel-storage 1 -0110011001101 Mitsuba-Walbro 1 -0110011001101 Pinkel 1 -0110011001101 Hazelden 1 -0110011001101 Pendaflex 1 -0110011001101 Turnkey 1 -0110011001101 Brothers-ERA 1 -0110011001101 Interventional 1 -0110011001101 Stylus 1 -0110011001101 Import-Export 1 -0110011001101 Import/Export 1 -0110011001101 Tablet 1 -0110011001101 Components-Mostek 1 -0110011001101 MiniGolf 1 -0110011001101 77-sponsored 1 -0110011001101 Mkts 1 -0110011001101 11,202 1 -0110011001101 Bellomo-McGee 1 -0110011001101 TDF 1 -0110011001101 Throws 1 -0110011001101 Rent-A 1 -0110011001101 THF 1 -0110011001101 Jofree 1 -0110011001101 DeMarche 2 -0110011001101 Foundation/Research 2 -0110011001101 Multi-List 2 -0110011001101 Pro-Am 2 -0110011001101 INTERMARK 2 -0110011001101 Van-Rijn 2 -0110011001101 Flannel 2 -0110011001101 ALICO 2 -0110011001101 X-Ray 2 -0110011001101 COMMERCIALE 2 -0110011001101 LYPHOMED 2 -0110011001101 Reseach 2 -0110011001101 NOVELL 2 -0110011001101 Technophone 2 -0110011001101 Pallas 2 -0110011001101 LAKE 2 -0110011001101 Deflated 2 -0110011001101 Gravure 2 -0110011001101 Internationl 2 -0110011001101 Sintering 2 -0110011001101 HPI 2 -0110011001101 Usenco 2 -0110011001101 GRACO 2 -0110011001101 SUDBURY 2 -0110011001101 International/Diversified 2 -0110011001101 Dyas 2 -0110011001101 XL/DATACOMP 2 -0110011001101 Kuhlenschmidt/Simon 2 -0110011001101 RAMADA 2 -0110011001101 Sharpe-Tint 2 -0110011001101 Omniflight 2 -0110011001101 Berhad 2 -0110011001101 Stuf 2 -0110011001101 GUILD 2 -0110011001101 Arrhythmia 2 -0110011001101 Internaional 2 -0110011001101 Disclose 2 -0110011001101 TIDEWATER 2 -0110011001101 Genenchem 2 -0110011001101 BABCOCK 2 -0110011001101 Internatonal 2 -0110011001101 Rizhskaya 2 -0110011001101 Nusantara 2 -0110011001101 Rent-a-Center 2 -0110011001101 Transducer 2 -0110011001101 ABIOMED 2 -0110011001101 Commune 2 -0110011001101 CONSECO 2 -0110011001101 Telecable 3 -0110011001101 Generator 3 -0110011001101 Filters 3 -0110011001101 Tasman 3 -0110011001101 Schepps 3 -0110011001101 InterMarket 3 -0110011001101 Disneyana 3 -0110011001101 Percussion 3 -0110011001101 Tax-Exempt 3 -0110011001101 Gallaher 3 -0110011001101 Respond 3 -0110011001101 Mutant 3 -0110011001101 Commericial 3 -0110011001101 Suffers 3 -0110011001101 Sekiyu 3 -0110011001101 Fantus 3 -0110011001101 SDW 3 -0110011001101 Weichert 3 -0110011001101 Phibro-Salomon 3 -0110011001101 V.F. 3 -0110011001101 Laneco 3 -0110011001101 Oerlikon-Buhrle 3 -0110011001101 Scanner 3 -0110011001101 Aging-Fleet 3 -0110011001101 Raffinerie 3 -0110011001101 Flooring 3 -0110011001101 Pacemakers 4 -0110011001101 Anvil 4 -0110011001101 Biodynamics 4 -0110011001101 Thalberg 4 -0110011001101 Accountancy 4 -0110011001101 Snacks 4 -0110011001101 NGL 4 -0110011001101 Corniche 4 -0110011001101 NMR 4 -0110011001101 Cavitron 4 -0110011001101 Logetronics 4 -0110011001101 Richardson-Merrell 4 -0110011001101 Interconnect 4 -0110011001101 Knit 4 -0110011001101 Hospice 4 -0110011001101 FRUEHAUF 4 -0110011001101 Saison 4 -0110011001101 COMMUNITY 5 -0110011001101 Consultation 5 -0110011001101 SONAT 5 -0110011001101 CATO 5 -0110011001101 ASSET 5 -0110011001101 Infrastructure 5 -0110011001101 AGRICOLA 5 -0110011001101 Rope 5 -0110011001101 IIc 5 -0110011001101 Chouest 5 -0110011001101 Railcar 5 -0110011001101 Sankei 6 -0110011001101 Accu-Weather 6 -0110011001101 ASARCO 6 -0110011001101 SHIPPING 6 -0110011001101 Olde 6 -0110011001101 Reprographics 6 -0110011001101 APAC 6 -0110011001101 M/A-COM 6 -0110011001101 Demonstration 6 -0110011001101 Defects 6 -0110011001101 Sprinkler 6 -0110011001101 PAK 6 -0110011001101 Fellows 7 -0110011001101 TOSCO 7 -0110011001101 Gefinor 7 -0110011001101 Medium 7 -0110011001101 SOUTHDOWN 7 -0110011001101 Maxell 7 -0110011001101 Receivables 7 -0110011001101 CableVision 7 -0110011001101 KOKAN 7 -0110011001101 BRUXELLES 7 -0110011001101 Multi-Family 7 -0110011001101 Aftermarket 7 -0110011001101 Castparts 7 -0110011001101 Grape 8 -0110011001101 LEASE 8 -0110011001101 Trivest 8 -0110011001101 Fiduciary 8 -0110011001101 Meridionale 8 -0110011001101 Switches 8 -0110011001101 MCKINNON 8 -0110011001101 Informatics 9 -0110011001101 A.M.E. 9 -0110011001101 Cognetics 9 -0110011001101 Merion 9 -0110011001101 METAL 9 -0110011001101 Myung 10 -0110011001101 IIGS 10 -0110011001101 Cutlery 10 -0110011001101 Chemie 10 -0110011001101 Custodian 10 -0110011001101 Greenhouse 10 -0110011001101 Forex 11 -0110011001101 Aerotech 11 -0110011001101 Portfolios 11 -0110011001101 Avmark 11 -0110011001101 Movers 12 -0110011001101 Malpractice 12 -0110011001101 Therapy 13 -0110011001101 Seminars 14 -0110011001101 Nurseries 14 -0110011001101 BROWN 14 -0110011001101 PlanEcon 14 -0110011001101 PEAT 15 -0110011001101 Zellerbach 15 -0110011001101 Eclipse 16 -0110011001101 Containment 16 -0110011001101 Robotics 16 -0110011001101 Beetle 16 -0110011001101 Permanente 16 -0110011001101 Addiction 17 -0110011001101 Eau 17 -0110011001101 Fairy 17 -0110011001101 Ceramics 18 -0110011001101 Disposition 18 -0110011001101 Bullion 19 -0110011001101 Fabric 19 -0110011001101 Tyre 19 -0110011001101 Gulch 20 -0110011001101 EQUITY 20 -0110011001101 Pinault 20 -0110011001101 Leiby 21 -0110011001101 IBCA 23 -0110011001101 Britannica 23 -0110011001101 Videotron 24 -0110011001101 Agricola 24 -0110011001101 Homemade 25 -0110011001101 Classics 26 -0110011001101 Automobiles 28 -0110011001101 Dispatch 30 -0110011001101 Grocery 30 -0110011001101 Seiki 30 -0110011001101 Computing 30 -0110011001101 Saga 32 -0110011001101 Disc 32 -0110011001101 Polymer 32 -0110011001101 Jewelers 32 -0110011001101 Siddeley 35 -0110011001101 Sportswear 37 -0110011001101 Concrete 38 -0110011001101 Buildings 39 -0110011001101 PACIFIC 39 -0110011001101 Textiles 41 -0110011001101 Premiere 43 -0110011001101 Maintenance 44 -0110011001101 Promotion 45 -0110011001101 Liability 47 -0110011001101 Fabrics 51 -0110011001101 Yellowknife 54 -0110011001101 Imaging 55 -0110011001101 Administrators 60 -0110011001101 Microelectronics 61 -0110011001101 Tactical 62 -0110011001101 Insight 62 -0110011001101 Merchandise 70 -0110011001101 Expansion 75 -0110011001101 Romeo 77 -0110011001101 Strategy 78 -0110011001101 Range 82 -0110011001101 Craft 82 -0110011001101 Genetic 88 -0110011001101 Biotechnology 89 -0110011001101 Centre 95 -0110011001101 Access 96 -0110011001101 Tennis 97 -0110011001101 Cooperative 100 -0110011001101 Classic 107 -0110011001101 Courier 110 -0110011001101 Cosmos 112 -0110011001101 Transit 115 -0110011001101 Guarantee 123 -0110011001101 Plastics 127 -0110011001101 Automation 131 -0110011001101 Packaging 138 -0110011001101 Clearing 143 -0110011001101 Beverage 152 -0110011001101 Design 173 -0110011001101 Celanese 177 -0110011001101 Textile 180 -0110011001101 Satellite 205 -0110011001101 Bull 207 -0110011001101 Photo 210 -0110011001101 Cities 226 -0110011001101 Publishers 229 -0110011001101 Basic 242 -0110011001101 Worldwide 274 -0110011001101 Genetics 305 -0110011001101 Flight 315 -0110011001101 Funding 319 -0110011001101 Arts 365 -0110011001101 Software 503 -0110011001101 Advertising 516 -0110011001101 Micro 532 -0110011001101 Electronic 539 -0110011001101 Engineering 639 -0110011001101 Peat 675 -0110011001101 Realty 752 -0110011001101 Art 753 -0110011001101 Nabisco 814 -0110011001101 Care 844 -0110011001101 Equity 927 -0110011001101 Electronics 929 -0110011001101 Control 1105 -0110011001101 Entertainment 1265 -0110011001101 Technology 1945 -0110011001101 Computer 2695 -0110011001101 Research 2903 -0110011001101 International 14172 -0110011001101 Management 3479 -01100110011100 Pilsudski 1 -01100110011100 Beliefs 1 -01100110011100 Typographical 1 -01100110011100 5,000-stock 1 -01100110011100 Pigmentosa 1 -01100110011100 Retinitis 1 -01100110011100 WorldBrown 1 -01100110011100 Fund-High 1 -01100110011100 Directives 1 -01100110011100 Finals 1 -01100110011100 Hole-In-One 1 -01100110011100 RIM 1 -01100110011100 GirozentraleDeutsche 1 -01100110011100 Outlives 1 -01100110011100 Ecclesiastic 1 -01100110011100 Laywers 1 -01100110011100 Dealer-Celeste 1 -01100110011100 Shutter 1 -01100110011100 Remittance 1 -01100110011100 Cattleman 1 -01100110011100 Jar 1 -01100110011100 Geographic-style 1 -01100110011100 Superintendents 1 -01100110011100 Confesses 1 -01100110011100 Devises 1 -01100110011100 Mid-Illinois 1 -01100110011100 Amorphous 1 -01100110011100 Spaaren 1 -01100110011100 Submicron 1 -01100110011100 Changers 1 -01100110011100 Areba-Casriel 1 -01100110011100 Unitoys 1 -01100110011100 Shiny 1 -01100110011100 Democrat-run 1 -01100110011100 Speedskating 1 -01100110011100 gear-shaping 1 -01100110011100 chatterboxes 1 -01100110011100 Examinations 1 -01100110011100 Arm-wrestling 1 -01100110011100 Snooze 1 -01100110011100 Ambient 1 -01100110011100 Smokeout 1 -01100110011100 Huron-based 1 -01100110011100 Emigre 1 -01100110011100 Cakewalk 1 -01100110011100 Trust/Bond 1 -01100110011100 Speleological 1 -01100110011100 Spar-Casse 1 -01100110011100 Entomological 1 -01100110011100 Tropique 1 -01100110011100 Bottled 1 -01100110011100 Robomation 1 -01100110011100 Votech 1 -01100110011100 Sachet 1 -01100110011100 Write-Off 1 -01100110011100 Simplifies 1 -01100110011100 Unsportsmanlike 1 -01100110011100 Chitwan 1 -01100110011100 Aerobatics 1 -01100110011100 Obscuration 1 -01100110011100 Waterflood 1 -01100110011100 Three-Dimensional 1 -01100110011100 Dramachiski 1 -01100110011100 Byong 1 -01100110011100 Anti-Counterfeiting 1 -01100110011100 Canoe 1 -01100110011100 Ripkin 1 -01100110011100 Antiguan 1 -01100110011100 Adjudication 1 -01100110011100 carambola 1 -01100110011100 155.0 1 -01100110011100 Rankles 1 -01100110011100 Fund/Money 1 -01100110011100 Audio-Visual 1 -01100110011100 Security-tax 1 -01100110011100 Enabled 1 -01100110011100 Genossenschafts 1 -01100110011100 Pre-College 1 -01100110011100 Jurist 1 -01100110011100 Bulls-Milwaukee 1 -01100110011100 Bobsled 1 -01100110011100 Filipino-American 1 -01100110011100 Aero-Technology 1 -01100110011100 artificial-currency 1 -01100110011100 LABEL 1 -01100110011100 655-type 1 -01100110011100 Mtge 1 -01100110011100 Nominating 1 -01100110011100 Treachery 1 -01100110011100 Engeneering 1 -01100110011100 Arab-Persian 1 -01100110011100 Fabricare 1 -01100110011100 Assembly.The 1 -01100110011100 12,234 1 -01100110011100 Gold/Minerals 1 -01100110011100 Graphoanalysis 1 -01100110011100 Reveals 1 -01100110011100 Improvisational 1 -01100110011100 Compulsions 1 -01100110011100 Whiteboard 1 -01100110011100 Inc./Heron 1 -01100110011100 Raincoats 1 -01100110011100 Anti-Fraud 1 -01100110011100 Pictorial 1 -01100110011100 Danish-American 1 -01100110011100 Marketmember 1 -01100110011100 Rays 1 -01100110011100 Qods 1 -01100110011100 Underwater 2 -01100110011100 Bowlers 2 -01100110011100 Papal 2 -01100110011100 Totalizator 2 -01100110011100 Multi-Housing 2 -01100110011100 Sew 2 -01100110011100 TURKEY 2 -01100110011100 Captioning 2 -01100110011100 Kennex 2 -01100110011100 Bereavement 2 -01100110011100 Siedlungs 2 -01100110011100 Parent-Teacher 2 -01100110011100 Referral 2 -01100110011100 Periodontal 2 -01100110011100 Forwarders 2 -01100110011100 Helium 2 -01100110011100 Transponder 2 -01100110011100 Invites 2 -01100110011100 Improvisation 2 -01100110011100 Estuary 2 -01100110011100 Anti-Discrimination 2 -01100110011100 Simulator 2 -01100110011100 Documentary 2 -01100110011100 Reconnaissance 2 -01100110011100 Ineffective 2 -01100110011100 Biofeedback 2 -01100110011100 Ile 2 -01100110011100 Riotous 2 -01100110011100 Pledges 2 -01100110011100 Dropout 2 -01100110011100 Ninety-two 2 -01100110011100 Refund 2 -01100110011100 Godparent 2 -01100110011100 Democratic-Liberal 2 -01100110011100 Astrological 2 -01100110011100 Bechstein 2 -01100110011100 Longitudinal 2 -01100110011100 Whaling 2 -01100110011100 Toxicology 2 -01100110011100 Alberni 2 -01100110011100 Undergrunds 2 -01100110011100 Carting 2 -01100110011100 Revitalizing 3 -01100110011100 Choreography 3 -01100110011100 Facsimile 3 -01100110011100 Eelpout 3 -01100110011100 Maestra 3 -01100110011100 Saray 3 -01100110011100 Appointments 3 -01100110011100 Sensory 3 -01100110011100 Appearance 3 -01100110011100 Apprenticeship 3 -01100110011100 Ballot 3 -01100110011100 Badminton 3 -01100110011100 Verkehrs-Kredit 3 -01100110011100 Neuropsychiatric 3 -01100110011100 Unionist 3 -01100110011100 Air-to-Air 3 -01100110011100 Acquistion 3 -01100110011100 Aeronautic 3 -01100110011100 Juniata 3 -01100110011100 Melitta 3 -01100110011100 Bancard 3 -01100110011100 Hatter 3 -01100110011100 Lens 3 -01100110011100 Riverfront 4 -01100110011100 Dutch-Shell 4 -01100110011100 Incubation 4 -01100110011100 Millennium 4 -01100110011100 Defined 4 -01100110011100 Girozentrale-Deutsche 4 -01100110011100 Clam 4 -01100110011100 Accelerator 4 -01100110011100 Immunity 4 -01100110011100 Headache 4 -01100110011100 Westminister 4 -01100110011100 Subscription 4 -01100110011100 Resettlement 4 -01100110011100 HN 4 -01100110011100 Pastime 5 -01100110011100 Restraint 5 -01100110011100 Azabu 5 -01100110011100 Alignment 5 -01100110011100 Toxics 5 -01100110011100 Precipitation 5 -01100110011100 Airspace 6 -01100110011100 Statutory 6 -01100110011100 Rooster 6 -01100110011100 Microelectronic 6 -01100110011100 TechTeam 6 -01100110011100 Mariner 6 -01100110011100 FSI 6 -01100110011100 Sclerosis 7 -01100110011100 Vocal 7 -01100110011100 Cadre 7 -01100110011100 Hakko 7 -01100110011100 Claim 7 -01100110011100 Probation 7 -01100110011100 Minilab 7 -01100110011100 ReFund 8 -01100110011100 Climate 8 -01100110011100 Drinks 8 -01100110011100 Stud 8 -01100110011100 Bases 8 -01100110011100 Astronomical 8 -01100110011100 Semi-Tech 8 -01100110011100 Highness 8 -01100110011100 Divinity 8 -01100110011100 Affordable 8 -01100110011100 Consignment 9 -01100110011100 Breeding 9 -01100110011100 5050 9 -01100110011100 Xeriscape 9 -01100110011100 Collateral 9 -01100110011100 Broiler 10 -01100110011100 Deco 10 -01100110011100 Rectifier 10 -01100110011100 Skating 10 -01100110011100 Amusement 10 -01100110011100 Ballistic 10 -01100110011100 Bomb 11 -01100110011100 Organizational 11 -01100110011100 Shipholding 11 -01100110011100 Proteins 12 -01100110011100 Battlefield 12 -01100110011100 Pointe 13 -01100110011100 Vigilance 13 -01100110011100 Starch 13 -01100110011100 Deficiency 13 -01100110011100 Mortality 13 -01100110011100 Achievement 14 -01100110011100 Launch 14 -01100110011100 Gardening 15 -01100110011100 Molasses 15 -01100110011100 Tort 15 -01100110011100 Swap 15 -01100110011100 Immigrant 16 -01100110011100 Cattlemen 17 -01100110011100 STARS 17 -01100110011100 Weapons 17 -01100110011100 Hardgoods 17 -01100110011100 Bonus 18 -01100110011100 Lobster 18 -01100110011100 Sculpture 19 -01100110011100 Frozen 20 -01100110011100 Sanitary 20 -01100110011100 Incentive 22 -01100110011100 Carpet 22 -01100110011100 Silk 23 -01100110011100 Oceanic 24 -01100110011100 Repertory 25 -01100110011100 Pleas 25 -01100110011100 Hydron 26 -01100110011100 Rifle 27 -01100110011100 Entry 27 -01100110011100 Abortion 27 -01100110011100 Narcotics 28 -01100110011100 Sloan-Kettering 30 -01100110011100 Transfer 30 -01100110011100 Investigative 30 -01100110011100 Apartment 30 -01100110011100 Innovations 31 -01100110011100 Yuan 31 -01100110011100 Improvements 32 -01100110011100 Yacht 34 -01100110011100 HRS 34 -01100110011100 Grammophon 34 -01100110011100 Unity 34 -01100110011100 Ordnance 36 -01100110011100 Permanent 36 -01100110011100 Hockey 37 -01100110011100 Rodeo 37 -01100110011100 Theme 38 -01100110011100 Identics 39 -01100110011100 Electrification 39 -01100110011100 Prison 41 -01100110011100 Underwriting 43 -01100110011100 Geographic 43 -01100110011100 Fighter 48 -01100110011100 Athletic 51 -01100110011100 Audubon 51 -01100110011100 Tin 54 -01100110011100 Convenience 54 -01100110011100 Guards 54 -01100110011100 Basketball 64 -01100110011100 Franchise 65 -01100110011100 Growers 66 -01100110011100 Horizons 72 -01100110011100 Lampoon 80 -01100110011100 Dog 92 -01100110011100 Governors 113 -01100110011100 Golf 126 -01100110011100 Gay 151 -01100110011100 Lease 157 -01100110011100 Wildlife 164 -01100110011100 Intergroup 179 -01100110011100 Clinical 200 -01100110011100 Dutch/Shell 213 -01100110011100 Football 218 -01100110011100 Financing 224 -01100110011100 Amusements 237 -01100110011100 Cancer 275 -01100110011100 Highway 275 -01100110011100 Westminster 328 -01100110011100 Income 561 -01100110011100 Heritage 737 -01100110011100 Monetary 892 -01100110011100 High 924 -01100110011100 Law 1114 -01100110011100 Mortgage 1233 -01100110011100 Market 2075 -01100110011100 Business 4289 -01100110011100 Security 3749 -01100110011101 RayBan 1 -01100110011101 Garamond/Pridemark 1 -01100110011101 Lipper-Mutual 1 -01100110011101 Ingleside 1 -01100110011101 Sugar-Coated 1 -01100110011101 Insecurities 1 -01100110011101 Consumer-Confidence 1 -01100110011101 Tri-City 1 -01100110011101 Kon-Lin 1 -01100110011101 Poolside 1 -01100110011101 Bank-Southeast 1 -01100110011101 High-Income 1 -01100110011101 Valdesia 1 -01100110011101 Phased 1 -01100110011101 Cranium 1 -01100110011101 PoloSports 1 -01100110011101 National-Socialist 1 -01100110011101 Vogelsberg 1 -01100110011101 Rodenticide 1 -01100110011101 Investigatory 1 -01100110011101 Russes 1 -01100110011101 Portfolio-Pacific 1 -01100110011101 apostasies 1 -01100110011101 Right-to-Know 1 -01100110011101 Quaid-i-Azam 1 -01100110011101 Canjun 1 -01100110011101 Health/Mental 1 -01100110011101 Pugilists 1 -01100110011101 Laudio 1 -01100110011101 Crash-Suit 1 -01100110011101 234-191 1 -01100110011101 Expositions 1 -01100110011101 Relativism 1 -01100110011101 Casino/Hotel 1 -01100110011101 dog-sledders 1 -01100110011101 LandOwner 1 -01100110011101 Cartographical 1 -01100110011101 Sagebrush 1 -01100110011101 Starnes 1 -01100110011101 Expressionist 1 -01100110011101 Arn 1 -01100110011101 Christchurch 1 -01100110011101 HENKEL 1 -01100110011101 Mapping 1 -01100110011101 State/EPA 1 -01100110011101 Fatality 1 -01100110011101 Master-Check 1 -01100110011101 Masterful 1 -01100110011101 Portability 1 -01100110011101 Hsung 1 -01100110011101 Diplomas 1 -01100110011101 Texas-Border 1 -01100110011101 Hinto 1 -01100110011101 Contollers 1 -01100110011101 ROMP 1 -01100110011101 Colorists 1 -01100110011101 Foundation/United 1 -01100110011101 Barmiest 1 -01100110011101 Architekturmuseum 1 -01100110011101 Acccess 1 -01100110011101 Dividend-Capture 1 -01100110011101 Groundhog 1 -01100110011101 Kosciusko 1 -01100110011101 Firmas 1 -01100110011101 Reauthorization 1 -01100110011101 Scorch 1 -01100110011101 Bridal 1 -01100110011101 Health-Mental 1 -01100110011101 Tah 1 -01100110011101 Sundae 1 -01100110011101 Tobogganing 1 -01100110011101 Bryan-College 1 -01100110011101 Akdeniz 1 -01100110011101 Creep 1 -01100110011101 Parchman 1 -01100110011101 Technologies/Life 1 -01100110011101 PorkPro 1 -01100110011101 Audition 1 -01100110011101 Bauer-Benedek 1 -01100110011101 Human-Rights 1 -01100110011101 Prophets 1 -01100110011101 Verdens 1 -01100110011101 Signaalapparaten 1 -01100110011101 Eung 1 -01100110011101 nd 1 -01100110011101 Mini-Marshall 1 -01100110011101 Agency/Elder 1 -01100110011101 Eurogrowth 1 -01100110011101 Two-Way 1 -01100110011101 Zweig/Glaser 1 -01100110011101 No-Lights 1 -01100110011101 148-2 1 -01100110011101 Ford-IBM 1 -01100110011101 nuclear-regulation 1 -01100110011101 Satelite 1 -01100110011101 Business/In 1 -01100110011101 Lousy-Pitching 1 -01100110011101 Firemans 1 -01100110011101 Carnesville 1 -01100110011101 Tortoise 1 -01100110011101 Terminales 1 -01100110011101 Foriegn 1 -01100110011101 Virology 1 -01100110011101 Spacecraft 1 -01100110011101 Foodservices 1 -01100110011101 Hutchcraft 1 -01100110011101 Dutch-Uncle 1 -01100110011101 No-Tobacco 1 -01100110011101 Financial-Aid 1 -01100110011101 Bio-Tech 1 -01100110011101 Lyerly 1 -01100110011101 Zhongshan 1 -01100110011101 Racher 1 -01100110011101 Representives 1 -01100110011101 Trade-show 1 -01100110011101 21-9 1 -01100110011101 Macmillan/Stockton 1 -01100110011101 Rea-Graham 1 -01100110011101 Neuwirth 1 -01100110011101 Interference 1 -01100110011101 patronage-dispensing 1 -01100110011101 Avella 1 -01100110011101 Squally 1 -01100110011101 Implication 1 -01100110011101 Islami 1 -01100110011101 JH 1 -01100110011101 Atheist 1 -01100110011101 Bergvik 1 -01100110011101 Tuition-Prepayment 1 -01100110011101 Demagogue 1 -01100110011101 Tuy 1 -01100110011101 Chulalongkorn 1 -01100110011101 Woebegone 1 -01100110011101 Round/European 1 -01100110011101 Popess 1 -01100110011101 Tech/Darwin 1 -01100110011101 Brignoli 1 -01100110011101 Corrider 1 -01100110011101 Moughamiam 1 -01100110011101 Checkerboard 1 -01100110011101 Hvem 1 -01100110011101 Radioisotope 1 -01100110011101 --A 1 -01100110011101 Qualifications 1 -01100110011101 Bifurcated 1 -01100110011101 Overtaxed 1 -01100110011101 Listener-Real-Time 1 -01100110011101 Pharmacopeial 1 -01100110011101 Supervison 1 -01100110011101 then-Insurance 1 -01100110011101 Gilburne 1 -01100110011101 Carps 1 -01100110011101 Retrovirus 1 -01100110011101 Immunities 2 -01100110011101 GHKM 2 -01100110011101 Deposition 2 -01100110011101 Stovall/Twenty-First 2 -01100110011101 Appropriation 2 -01100110011101 Comparability 2 -01100110011101 Dendur 2 -01100110011101 Chengchi 2 -01100110011101 Westbound 2 -01100110011101 Semper-Moser 2 -01100110011101 Privileges 2 -01100110011101 Emissions 2 -01100110011101 Effort 2 -01100110011101 MuniVest 2 -01100110011101 Transitional 2 -01100110011101 Shams 2 -01100110011101 Orbiting 2 -01100110011101 WHEAL 2 -01100110011101 Lo-Cap 2 -01100110011101 Non-Violent 2 -01100110011101 Portugues 2 -01100110011101 Dyckerhoff 2 -01100110011101 Income/Growth 2 -01100110011101 Taconic 2 -01100110011101 Recover 2 -01100110011101 Cartels 2 -01100110011101 Phelps-Stokes 2 -01100110011101 Outcomes 2 -01100110011101 Spill 2 -01100110011101 Hygiene 2 -01100110011101 Cliche 2 -01100110011101 General-Associated 2 -01100110011101 Neurological 2 -01100110011101 Niki 2 -01100110011101 Judicary 2 -01100110011101 K.K.S. 2 -01100110011101 Ruban 2 -01100110011101 Hamworthy 2 -01100110011101 Retraining 2 -01100110011101 Comitatus 2 -01100110011101 Affordability 2 -01100110011101 Divestment 2 -01100110011101 Aeromedical 2 -01100110011101 Ichikawa 2 -01100110011101 Exclusion 3 -01100110011101 Toot 3 -01100110011101 Enrichment 3 -01100110011101 Schlock 3 -01100110011101 Physiology 3 -01100110011101 Arte 3 -01100110011101 Orthopedic 3 -01100110011101 Defect 3 -01100110011101 Revitalization 3 -01100110011101 Yeshiva 3 -01100110011101 Soloists 3 -01100110011101 Debarment 3 -01100110011101 Oatmeal 3 -01100110011101 Languages 3 -01100110011101 Stovall/21st 3 -01100110011101 Zoning 3 -01100110011101 Helvetia 3 -01100110011101 Rig 3 -01100110011101 Reconstructive 3 -01100110011101 Frequent-Flier 3 -01100110011101 Disinformation 3 -01100110011101 Industrialization 3 -01100110011101 Vertigo 3 -01100110011101 Anti-Injunction 3 -01100110011101 Interchange 3 -01100110011101 Sealift 3 -01100110011101 Preparedness 3 -01100110011101 Palestine-General 3 -01100110011101 Accessory 4 -01100110011101 Demo 4 -01100110011101 Energold 4 -01100110011101 Astronomy 4 -01100110011101 Champ 4 -01100110011101 Labor-Management 4 -01100110011101 Hemispheric 4 -01100110011101 CRC 4 -01100110011101 Brasileira 4 -01100110011101 Genome 4 -01100110011101 Succulent 4 -01100110011101 Deportation 4 -01100110011101 Interdiction 5 -01100110011101 Commingled 5 -01100110011101 Un-American 5 -01100110011101 Ratepayer 5 -01100110011101 Glee 5 -01100110011101 Malacca 5 -01100110011101 GSTAR 5 -01100110011101 Childrens 5 -01100110011101 Retardation 5 -01100110011101 Lakeview 5 -01100110011101 Saxophone 5 -01100110011101 Espionage 5 -01100110011101 Ascension 5 -01100110011101 Delinquency 5 -01100110011101 Readjustment 5 -01100110011101 Anti-Terrorism 5 -01100110011101 Drafting 6 -01100110011101 Cafeteria 6 -01100110011101 Delacorte 6 -01100110011101 Telecommunication 6 -01100110011101 Barbecue 6 -01100110011101 Yachting 6 -01100110011101 Attractions 6 -01100110011101 Aurum 6 -01100110011101 Kennel 6 -01100110011101 SmallCap 7 -01100110011101 Migration 7 -01100110011101 Mailers 7 -01100110011101 Metalworkers 7 -01100110011101 Arrangement 7 -01100110011101 Bribery 7 -01100110011101 Twardy 7 -01100110011101 Sober 7 -01100110011101 Biosafety 7 -01100110011101 Materiel 7 -01100110011101 Substance 7 -01100110011101 Gesellschaft 8 -01100110011101 Influence 8 -01100110011101 Rhythm 8 -01100110011101 Nationality 8 -01100110011101 Laid 8 -01100110011101 Mobility 8 -01100110011101 Inauguration 8 -01100110011101 Reactor 8 -01100110011101 Psychiatry 8 -01100110011101 Smelter 8 -01100110011101 Madam 9 -01100110011101 Airlift 9 -01100110011101 Citizenship 9 -01100110011101 NewsHour 9 -01100110011101 Expenditure 9 -01100110011101 MERGERS 9 -01100110011101 Urgent 9 -01100110011101 Conciliation 10 -01100110011101 Boating 10 -01100110011101 Anti-Apartheid 10 -01100110011101 SAM 10 -01100110011101 Goat 10 -01100110011101 Authorization 11 -01100110011101 Surplus 11 -01100110011101 Disciplinary 11 -01100110011101 Impoundment 11 -01100110011101 Highways 11 -01100110011101 Knots 11 -01100110011101 Liaison 11 -01100110011101 Correspondents 11 -01100110011101 Referendum 11 -01100110011101 Renal 12 -01100110011101 Supervisory 12 -01100110011101 Che 12 -01100110011101 Injury 12 -01100110011101 MPT 13 -01100110011101 Consultative 13 -01100110011101 Scarlet 14 -01100110011101 Scholarship 14 -01100110011101 Steering 14 -01100110011101 Redevelopment 14 -01100110011101 Presses 16 -01100110011101 Brite 16 -01100110011101 Dimensional 16 -01100110011101 Extras 16 -01100110011101 Firearms 17 -01100110011101 Autonomous 18 -01100110011101 Diners 18 -01100110011101 Disorders 18 -01100110011101 Advocacy 19 -01100110011101 Needs 19 -01100110011101 Organizing 20 -01100110011101 Interim 20 -01100110011101 Stabilization 20 -01100110011101 Safari 20 -01100110011101 Monitoring 20 -01100110011101 Geological 21 -01100110011101 Refugee 21 -01100110011101 String 21 -01100110011101 Oppenheimer-Palmieri 21 -01100110011101 Procurement 21 -01100110011101 Enhancement 21 -01100110011101 Reconciliation 22 -01100110011101 Web 24 -01100110011101 Peasant 24 -01100110011101 Historic 25 -01100110011101 Cosmetic 25 -01100110011101 Lehigh 25 -01100110011101 Adjustment 26 -01100110011101 Evaluation 27 -01100110011101 Reduction 27 -01100110011101 Masterpiece 27 -01100110011101 Coordination 28 -01100110011101 Competitiveness 28 -01100110011101 Registration 29 -01100110011101 Propulsion 29 -01100110011101 Equality 29 -01100110011101 Cartel 30 -01100110011101 Restoration 30 -01100110011101 Jockey 30 -01100110011101 Reclamation 30 -01100110011101 Atmospheric 30 -01100110011101 Musicians 31 -01100110011101 Breakfast 31 -01100110011101 Tariff 32 -01100110011101 Awareness 34 -01100110011101 Trademark 35 -01100110011101 Tourist 37 -01100110011101 Inspection 39 -01100110011101 Actors 39 -01100110011101 Boxing 41 -01100110011101 Licensing 41 -01100110011101 Improvement 42 -01100110011101 Generating 42 -01100110011101 Governmental 42 -01100110011101 Copyright 46 -01100110011101 Journalism 49 -01100110011101 Audit 51 -01100110011101 Patrol 52 -01100110011101 Alcohol 54 -01100110011101 Disarmament 55 -01100110011101 Taxation 59 -01100110011101 Wide 61 -01100110011101 Relief 61 -01100110011101 Practices 62 -01100110011101 Investigations 65 -01100110011101 Oversight 69 -01100110011101 Facilities 71 -01100110011101 Tourism 74 -01100110011101 Queensland 79 -01100110011101 Emergency 80 -01100110011101 Population 84 -01100110011101 Yield 86 -01100110011101 Maritime 92 -01100110011101 Environment 93 -01100110011101 Instant 95 -01100110011101 Contract 95 -01100110011101 Culture 97 -01100110011101 Coordinating 97 -01100110011101 Welfare 103 -01100110011101 Rules 104 -01100110011101 Opportunity 108 -01100110011101 Training 115 -01100110011101 Patent 120 -01100110011101 Forces 127 -01100110011101 Recovery 130 -01100110011101 Campaign 132 -01100110011101 Enforcement 134 -01100110011101 Claims 135 -01100110011101 Educational 136 -01100110011101 Conservation 141 -01100110011101 Democracy 143 -01100110011101 Economy 147 -01100110011101 Minority 168 -01100110011101 Advisory 169 -01100110011101 Organizations 169 -01100110011101 Election 187 -01100110011101 Logistics 196 -01100110011101 Statistical 197 -01100110011101 Liberation 209 -01100110011101 Operations 227 -01100110011101 Appropriations 265 -01100110011101 Traffic 273 -01100110011101 Employment 284 -01100110011101 Peace 322 -01100110011101 Ethics 351 -01100110011101 Coffee 365 -01100110011101 Majority 365 -01100110011101 Growth 391 -01100110011101 Planning 416 -01100110011101 Judiciary 419 -01100110011101 Action 430 -01100110011101 Relations 456 -01100110011101 Sciences 488 -01100110011101 Rights 557 -01100110011101 Policy 586 -01100110011101 Science 614 -01100110011101 Housing 625 -01100110011101 Affairs 644 -01100110011101 Protection 645 -01100110011101 Space 695 -01100110011101 Economics 745 -01100110011101 Means 790 -01100110011101 Aviation 792 -01100110011101 Safety 806 -01100110011101 Intelligence 877 -01100110011101 Education 931 -01100110011101 Budget 1233 -01100110011101 Statistics 1259 -01100110011101 Banking 1529 -01100110011101 Drug 1607 -01100110011101 Economic 1823 -01100110011101 Health 2340 -01100110011101 Trade 3248 -01100110011101 Finance 2982 -01100110011110 Benerofe 1 -01100110011110 Forwarding 1 -01100110011110 Omni-directional 1 -01100110011110 Dentsply 1 -01100110011110 non-Marine 1 -01100110011110 Phone-A-Gram 1 -01100110011110 Declinein 1 -01100110011110 Reynord 1 -01100110011110 Post-Bork 1 -01100110011110 Bretton-Woods 1 -01100110011110 Bashkin 1 -01100110011110 Dataphone 1 -01100110011110 Essilor 1 -01100110011110 636,462 1 -01100110011110 Berenter 1 -01100110011110 Arms-Export 1 -01100110011110 PVNGS 1 -01100110011110 Phenylpropanolamine 1 -01100110011110 MicroPublisher 1 -01100110011110 U.F. 1 -01100110011110 Urra 1 -01100110011110 Cycladic 1 -01100110011110 Yakatan 1 -01100110011110 Medic 1 -01100110011110 Life-Card 1 -01100110011110 Freelance 1 -01100110011110 Obscures 1 -01100110011110 Foster-Care 1 -01100110011110 Filemaker 1 -01100110011110 Criminological 1 -01100110011110 EAST-WEST 1 -01100110011110 leum 1 -01100110011110 Commmunications 1 -01100110011110 Heiusler 1 -01100110011110 Avante-Garde 1 -01100110011110 hot-spots 1 -01100110011110 ICC-Options 1 -01100110011110 Meiller 1 -01100110011110 Prague-based 1 -01100110011110 Hopkins-Richardson 1 -01100110011110 Elpaso 1 -01100110011110 658,029 1 -01100110011110 Katsuo 1 -01100110011110 SIAI 1 -01100110011110 GTI. 1 -01100110011110 Humanizing 1 -01100110011110 170-airline 1 -01100110011110 Updating 1 -01100110011110 Crossick 1 -01100110011110 Newfund 1 -01100110011110 Phargo 1 -01100110011110 SuperMac 1 -01100110011110 villa-style 1 -01100110011110 Cl 1 -01100110011110 T.E.I. 1 -01100110011110 Sobhuza 1 -01100110011110 MATTHEW 1 -01100110011110 CATHAY 1 -01100110011110 Selo 1 -01100110011110 Cinzano 1 -01100110011110 Ziebart 1 -01100110011110 InterCable 1 -01100110011110 Jug 1 -01100110011110 Plastipak 1 -01100110011110 Unix-Unix 1 -01100110011110 T-Maker 1 -01100110011110 Glahe 1 -01100110011110 Meyhen 1 -01100110011110 3,726,400 1 -01100110011110 Malinda 1 -01100110011110 1,246,900 1 -01100110011110 Telepoll 1 -01100110011110 Grinsteadm 1 -01100110011110 Crystar 1 -01100110011110 Cementation 1 -01100110011110 Leesa 1 -01100110011110 Theard 1 -01100110011110 EMI-Music 1 -01100110011110 I.U. 1 -01100110011110 Colorama 1 -01100110011110 2,096,527 1 -01100110011110 GABELLI 1 -01100110011110 Bailowitz 1 -01100110011110 GFI/Knoll 1 -01100110011110 HARDY 1 -01100110011110 Governmnent 1 -01100110011110 925,100 1 -01100110011110 Ikenberry 1 -01100110011110 Subang 1 -01100110011110 Indianopolis 1 -01100110011110 Parksigns 1 -01100110011110 Surgical/Critical 1 -01100110011110 EPT 1 -01100110011110 Moorco 1 -01100110011110 Drozdowski 1 -01100110011110 Decima 1 -01100110011110 Artisan 1 -01100110011110 711,053 1 -01100110011110 Aronowitz 1 -01100110011110 Evans/Weinberg 1 -01100110011110 Ilford 1 -01100110011110 Agawam 1 -01100110011110 Love-PGI 1 -01100110011110 Ipanema 1 -01100110011110 ALEX. 1 -01100110011110 21-nation 1 -01100110011110 MCE 1 -01100110011110 Alstores 1 -01100110011110 Word-Processing 1 -01100110011110 Witkow 1 -01100110011110 Stroke 1 -01100110011110 Bravice 1 -01100110011110 Garantia 1 -01100110011110 Bioorganic 1 -01100110011110 BHN 1 -01100110011110 PBS-Capital 1 -01100110011110 Afterschool 1 -01100110011110 Emulsion 1 -01100110011110 SWEAT 1 -01100110011110 Bridger 1 -01100110011110 Contracept 1 -01100110011110 Comm-Tech 1 -01100110011110 Stock-Market 1 -01100110011110 Car/Puter 1 -01100110011110 37-nation 1 -01100110011110 Hygienic 1 -01100110011110 Tunex 1 -01100110011110 ORE 1 -01100110011110 165,100 1 -01100110011110 Swang 1 -01100110011110 Instrumed 1 -01100110011110 Cermetek 1 -01100110011110 Bintel 1 -01100110011110 Swamiji 1 -01100110011110 Civitan 1 -01100110011110 Abaton 1 -01100110011110 CGE-Alsthom 1 -01100110011110 Avicom 1 -01100110011110 NEWS/RETRIEVAL 1 -01100110011110 743,500 1 -01100110011110 Biometric 1 -01100110011110 PINCUS 1 -01100110011110 Tulchin 1 -01100110011110 castle-style 1 -01100110011110 89,450 1 -01100110011110 Sawatch 1 -01100110011110 long-seedy 1 -01100110011110 Pride-Revlon 1 -01100110011110 Petro-Chemical 1 -01100110011110 Rumbough 1 -01100110011110 COPELCO 1 -01100110011110 HJC 1 -01100110011110 pre-Vatican 1 -01100110011110 936,251 1 -01100110011110 Gravis 1 -01100110011110 Cadabra 1 -01100110011110 swaggers 1 -01100110011110 RJR/ 1 -01100110011110 21Alpha 1 -01100110011110 K-Network 1 -01100110011110 Geoscience 1 -01100110011110 Propper 1 -01100110011110 Sci/Tech 1 -01100110011110 Bagpipe 1 -01100110011110 Astec/BSR 1 -01100110011110 EuroFund-B 1 -01100110011110 Workaholic 1 -01100110011110 Micro-Age 1 -01100110011110 Fiber-Optic 1 -01100110011110 Asaroka 1 -01100110011110 200,967 1 -01100110011110 GM/Hughes 1 -01100110011110 Kickoff 1 -01100110011110 WestCoast 1 -01100110011110 MIDWAY 1 -01100110011110 Metaphysical 1 -01100110011110 Toxicological 1 -01100110011110 EXHIBITION 1 -01100110011110 Thrive 1 -01100110011110 Panamint 1 -01100110011110 Glazen 1 -01100110011110 Nortex 1 -01100110011110 Tranportation 1 -01100110011110 Dylon 1 -01100110011110 Bernstein-Rein 1 -01100110011110 Winbond 1 -01100110011110 Marinoff 1 -01100110011110 Contex 1 -01100110011110 Wespar 1 -01100110011110 Venet 1 -01100110011110 Anti-Imperialist 1 -01100110011110 ACB 1 -01100110011110 Justamere 1 -01100110011110 Cambiste 1 -01100110011110 Wackier 1 -01100110011110 Berkovitz 1 -01100110011110 Filtration 1 -01100110011110 industrials/S&P 1 -01100110011110 Almalgamated 1 -01100110011110 Biotechnica 1 -01100110011110 Beltone 1 -01100110011110 DDB/Needham 1 -01100110011110 Fujei 1 -01100110011110 Trol 1 -01100110011110 Headland 1 -01100110011110 TGS 1 -01100110011110 41-nation 1 -01100110011110 Sino-Searle 1 -01100110011110 Riverbank 1 -01100110011110 BMJ 1 -01100110011110 Valpar 1 -01100110011110 Partis 1 -01100110011110 Noumra 1 -01100110011110 Burrel 1 -01100110011110 nexin 1 -01100110011110 Lorien 1 -01100110011110 Industrials-type 1 -01100110011110 Vintwood 1 -01100110011110 Alias 1 -01100110011110 InterPacific 1 -01100110011110 No-Man 1 -01100110011110 Cavell 1 -01100110011110 M/PF 1 -01100110011110 Environectics 1 -01100110011110 Guang 1 -01100110011110 Gartska 1 -01100110011110 Murphy-Castellanos 1 -01100110011110 APM 1 -01100110011110 Ber 1 -01100110011110 Shemin 1 -01100110011110 Incomm 1 -01100110011110 1,747,848 1 -01100110011110 Spinnaker 1 -01100110011110 Cardion 1 -01100110011110 Caifornia 1 -01100110011110 NeuroScience 1 -01100110011110 GOD 1 -01100110011110 publication. 1 -01100110011110 D-150 1 -01100110011110 C-1500 1 -01100110011110 LEV 1 -01100110011110 Pharmedix 1 -01100110011110 KY 1 -01100110011110 Flygplanet 1 -01100110011110 Entertainment/Services 1 -01100110011110 EGR 1 -01100110011110 C.I.N. 1 -01100110011110 Kohlenberg 1 -01100110011110 Clairvoyant 1 -01100110011110 Augmented 1 -01100110011110 Powerec 1 -01100110011110 16,285,440 1 -01100110011110 Marders 1 -01100110011110 Hubbert-Stewart 1 -01100110011110 Symon 1 -01100110011110 SABH 1 -01100110011110 Sm 1 -01100110011110 Sheyenne 1 -01100110011110 SFA 1 -01100110011110 DEKA 1 -01100110011110 SESCO 1 -01100110011110 FIBRONICS 1 -01100110011110 MAYER 1 -01100110011110 Snacks/Amber 1 -01100110011110 Ellsw 1 -01100110011110 NFO 1 -01100110011110 Translink 1 -01100110011110 Teledyne-Brown 1 -01100110011110 Broich-Martinka 1 -01100110011110 NOVELLUS 1 -01100110011110 Schizophrenics 1 -01100110011110 DeJoria 1 -01100110011110 FPS 1 -01100110011110 Schenkers 1 -01100110011110 Matsumoto/Herzog 1 -01100110011110 867,392 1 -01100110011110 Grunt 1 -01100110011110 CADscape 1 -01100110011110 Counter-Intelligence 1 -01100110011110 TechnoVenture 1 -01100110011110 FBC 1 -01100110011110 Pematang 1 -01100110011110 Westcliff 1 -01100110011110 Coulston 1 -01100110011110 JMJ 1 -01100110011110 Barshay 1 -01100110011110 once-clubby 1 -01100110011110 Nutrisearch 1 -01100110011110 Invstmnts 1 -01100110011110 Klemtner 1 -01100110011110 Simul 1 -01100110011110 NDE 1 -01100110011110 Daishowa-Marubeni 1 -01100110011110 K&A 1 -01100110011110 After-School 1 -01100110011110 Sunwood 2 -01100110011110 Salvors 2 -01100110011110 SWIRE 2 -01100110011110 Handgun 2 -01100110011110 Algebra 2 -01100110011110 Tigerman 2 -01100110011110 Agri-business 2 -01100110011110 Lightweight 2 -01100110011110 TNE 2 -01100110011110 Celerity 2 -01100110011110 Microchip 2 -01100110011110 INDUSTRIALS 2 -01100110011110 Muiden 2 -01100110011110 Crossborder 2 -01100110011110 PNPP 2 -01100110011110 USR 2 -01100110011110 NMC 2 -01100110011110 Kierluff 2 -01100110011110 YFC 2 -01100110011110 FSD 2 -01100110011110 Reeds 2 -01100110011110 Neuro 2 -01100110011110 HSI 2 -01100110011110 Participating/Preferred 2 -01100110011110 ImmunoChem 2 -01100110011110 TPM 2 -01100110011110 Flameco 2 -01100110011110 Newsroom 2 -01100110011110 Funerary 2 -01100110011110 Envirocon 2 -01100110011110 CCS 2 -01100110011110 ABCO 2 -01100110011110 Fractured 2 -01100110011110 MarketGuard 2 -01100110011110 Interregional 2 -01100110011110 Pro-Fac 2 -01100110011110 Medicare-Glaser 2 -01100110011110 Easton-Hopkins-Richardson 2 -01100110011110 SSP 2 -01100110011110 PBTC 2 -01100110011110 LANserver 2 -01100110011110 Malaysian-American 2 -01100110011110 Expeditors 2 -01100110011110 Carboex 2 -01100110011110 Devcon 2 -01100110011110 WP 2 -01100110011110 C.R.A. 2 -01100110011110 Connector 2 -01100110011110 Lahus 2 -01100110011110 Andhra 2 -01100110011110 TRANSTAR 2 -01100110011110 ReTree 2 -01100110011110 Receivable 2 -01100110011110 OXY 2 -01100110011110 Captial 2 -01100110011110 MBW 2 -01100110011110 Socio-Economic 2 -01100110011110 Elemental 2 -01100110011110 Platow 2 -01100110011110 Decimal 2 -01100110011110 Ploum 2 -01100110011110 Mit 2 -01100110011110 Microphonics 2 -01100110011110 Miloslav 2 -01100110011110 Cabletelevision 2 -01100110011110 RTL 3 -01100110011110 Ironstone 3 -01100110011110 E.I.P. 3 -01100110011110 BONNEVILLE 3 -01100110011110 Transportations 3 -01100110011110 Newgate 3 -01100110011110 Addictive 3 -01100110011110 Awa 3 -01100110011110 Glitter 3 -01100110011110 Collected 3 -01100110011110 INTERCABLE 3 -01100110011110 RMed 3 -01100110011110 Shorewood 3 -01100110011110 Look-Alike 3 -01100110011110 IBERIA 3 -01100110011110 Sonesta 3 -01100110011110 FBS 3 -01100110011110 Sunburst 3 -01100110011110 Wastes 3 -01100110011110 Sunagra 3 -01100110011110 Pentastar 3 -01100110011110 Hormone 3 -01100110011110 Softsel 3 -01100110011110 Ameri 3 -01100110011110 Thomson-Brandt 3 -01100110011110 METRO 3 -01100110011110 4450th 3 -01100110011110 Wardrobe 3 -01100110011110 Vendex 4 -01100110011110 Conill 4 -01100110011110 Pioneering 4 -01100110011110 Immunochem 4 -01100110011110 Kievan 4 -01100110011110 Anso 4 -01100110011110 Reflection 4 -01100110011110 Mid-East 4 -01100110011110 Infusion 4 -01100110011110 Klopman 4 -01100110011110 PV 4 -01100110011110 Avoidance 4 -01100110011110 WorkGroup 5 -01100110011110 Starter 5 -01100110011110 SMR 5 -01100110011110 Nesting 5 -01100110011110 Corken 5 -01100110011110 Greylock 5 -01100110011110 Tateisi 5 -01100110011110 Chessie 5 -01100110011110 NJ 6 -01100110011110 Radioactive 6 -01100110011110 Ingles 6 -01100110011110 Mato 6 -01100110011110 DUTCH 6 -01100110011110 Datastream 6 -01100110011110 Untold 6 -01100110011110 Braking 6 -01100110011110 Asiamerica 7 -01100110011110 Averages 7 -01100110011110 SCANDINAVIAN 7 -01100110011110 Environics 7 -01100110011110 Datas 7 -01100110011110 Bir 8 -01100110011110 ROPS 8 -01100110011110 Fianna 11 -01100110011110 Mezzanine 11 -01100110011110 Component 11 -01100110011110 Encyclopaedia 12 -01100110011110 Trooper 12 -01100110011110 DS 13 -01100110011110 Turnaround 13 -01100110011110 Biocontrol 14 -01100110011110 News/Retrieval 15 -01100110011110 MidEast 16 -01100110011110 LTCB 16 -01100110011110 Hi-Bred 17 -01100110011110 Parsow 18 -01100110011110 Annex 20 -01100110011110 Cell 23 -01100110011110 Execution 26 -01100110011110 Spacelink 26 -01100110011110 Interiors 27 -01100110011110 Lazer 29 -01100110011110 Estimate 31 -01100110011110 Managed 32 -01100110011110 Performing 34 -01100110011110 Technologic 37 -01100110011110 Intercable 44 -01100110011110 Leveraged 50 -01100110011110 Crop 54 -01100110011110 Moto 58 -01100110011110 Industrials 67 -01100110011110 MMS 76 -01100110011110 Manor 78 -01100110011110 Comprehensive 95 -01100110011110 SALT 108 -01100110011110 Purchasing 133 -01100110011110 Storage 166 -01100110011110 Julius 170 -01100110011110 Disease 205 -01100110011110 Combustion 229 -01100110011110 Supply 314 -01100110011110 Retirement 314 -01100110011110 Venture 397 -01100110011110 Waste 547 -01100110011110 Asset 551 -01100110011110 Professional 571 -01100110011110 Investor 671 -01100110011110 industrials 1407 -01100110011110 Investment 2438 -01100110011110 Capital 6000 -01100110011110 Industrial 3204 -011001100111110 SUBSIDIARIES. 1 -011001100111110 2055 1 -011001100111110 Book-entry 1 -011001100111110 running-mates 1 -011001100111110 Tuyen 1 -011001100111110 Decalta 1 -011001100111110 Posses 1 -011001100111110 Mortician 1 -011001100111110 missle 1 -011001100111110 khedives 1 -011001100111110 TSB. 1 -011001100111110 aggresssion 1 -011001100111110 38,746 1 -011001100111110 Remodeler 1 -011001100111110 grackle 1 -011001100111110 sugar-milling 1 -011001100111110 Tendancy 1 -011001100111110 Republic-style 1 -011001100111110 sheepherder 1 -011001100111110 Somatotropin 1 -011001100111110 cricketeers 1 -011001100111110 Corsetted 1 -011001100111110 LUXEMBOURGOISE 1 -011001100111110 TRANSLATION 1 -011001100111110 Awami 1 -011001100111110 Boatwright 1 -011001100111110 Jurists 1 -011001100111110 stonethrowers 1 -011001100111110 Sterile 1 -011001100111110 shaya 1 -011001100111110 Somatatropin 1 -011001100111110 SEX 1 -011001100111110 Growth-Japan 1 -011001100111110 1268 1 -011001100111110 huns 1 -011001100111110 indulgers 1 -011001100111110 Ergonomics 1 -011001100111110 Also-Rans 1 -011001100111110 tankmen 1 -011001100111110 Hasid 1 -011001100111110 Chu-i 1 -011001100111110 gourdes 1 -011001100111110 Daycare 1 -011001100111110 Banchshares 1 -011001100111110 patrol-car 1 -011001100111110 open-ended-Guardian 1 -011001100111110 papyruses 1 -011001100111110 countires 1 -011001100111110 Childen 1 -011001100111110 SS-21 1 -011001100111110 Asia/ 1 -011001100111110 BankCard 1 -011001100111110 Saliva 1 -011001100111110 Seapointe 1 -011001100111110 Stealthco 1 -011001100111110 revoluion 1 -011001100111110 SAM-2s 1 -011001100111110 Pan-Islamist 1 -011001100111110 DeBraak 1 -011001100111110 Linguistics 1 -011001100111110 Manoeuvres 1 -011001100111110 TNX 1 -011001100111110 rocket-bearing 1 -011001100111110 casualities 1 -011001100111110 Goldene 1 -011001100111110 re-invasion 1 -011001100111110 back-40 1 -011001100111110 Anti-Communist 1 -011001100111110 Doon 1 -011001100111110 Receptions 1 -011001100111110 P.L.C. 1 -011001100111110 Cum 1 -011001100111110 1197 1 -011001100111110 rial 1 -011001100111110 Serv 1 -011001100111110 SMPIC 1 -011001100111110 Necesito 1 -011001100111110 Geon 1 -011001100111110 LULL 1 -011001100111110 Poron 1 -011001100111110 buzz-phrase 1 -011001100111110 96B 1 -011001100111110 Hammerskins 1 -011001100111110 1-590 1 -011001100111110 BEAR-F 1 -011001100111110 T-72s 1 -011001100111110 Republic-based 1 -011001100111110 politbureau 1 -011001100111110 1413 1 -011001100111110 Brazen 1 -011001100111110 Imami 1 -011001100111110 600M 1 -011001100111110 Gloved 1 -011001100111110 agressiveness 1 -011001100111110 government-in-hiding 1 -011001100111110 BELGEDE 1 -011001100111110 spitfire 1 -011001100111110 reaction. 1 -011001100111110 officials-cum-drug-traffickers 1 -011001100111110 BOW 1 -011001100111110 papyri 1 -011001100111110 trumpeter-vocalist 1 -011001100111110 216,800 1 -011001100111110 Cherub 1 -011001100111110 1435 1 -011001100111110 fruit-pickers 1 -011001100111110 Medillin 1 -011001100111110 Sipio 1 -011001100111110 monumentalism 1 -011001100111110 3030B 1 -011001100111110 revolutionsomething 1 -011001100111110 chuches 1 -011001100111110 IEA. 1 -011001100111110 stirfry 1 -011001100111110 Weasel 1 -011001100111110 Manganese 1 -011001100111110 1182 1 -011001100111110 civ 1 -011001100111110 Judaeophobia 1 -011001100111110 HANDLING 1 -011001100111110 Mathiesen 1 -011001100111110 18650 1 -011001100111110 chantings 1 -011001100111110 K/U.K. 1 -011001100111110 followers. 1 -011001100111110 99-86 1 -011001100111110 Self-Reliance 1 -011001100111110 civil-war 2 -011001100111110 Jute 2 -011001100111110 Emirate 2 -011001100111110 Frog-7 2 -011001100111110 viewers. 2 -011001100111110 Roving 2 -011001100111110 EUROPEENNE 2 -011001100111110 tissue-plasminogen 2 -011001100111110 1262 2 -011001100111110 Bleue 2 -011001100111110 SUISSE 2 -011001100111110 EUROPEENE 2 -011001100111110 city-dwellers 2 -011001100111110 spaceman 2 -011001100111110 Celinda 2 -011001100111110 Watcher 2 -011001100111110 price-cutter 2 -011001100111110 Boston-Credit 2 -011001100111110 Bank-North 2 -011001100111110 Constanza 2 -011001100111110 Printshops 2 -011001100111110 Crater 2 -011001100111110 Bergem 2 -011001100111110 islet 2 -011001100111110 Unveils 2 -011001100111110 30-30B 2 -011001100111110 Caper 2 -011001100111110 abbey 2 -011001100111110 Kinnick 2 -011001100111110 7-Bao 2 -011001100111110 Capsule 2 -011001100111110 pulpwood 2 -011001100111110 banditry 2 -011001100111110 drum-beating 2 -011001100111110 F-4G 2 -011001100111110 immortals 2 -011001100111110 Versaflex 2 -011001100111110 Pharmaceutique 2 -011001100111110 hieroglyphics 3 -011001100111110 Columnists 3 -011001100111110 Capability 3 -011001100111110 Bank-Westwood 3 -011001100111110 Bank-Westheimer 3 -011001100111110 E-1 3 -011001100111110 Union. 3 -011001100111110 1125 3 -011001100111110 Envoys 3 -011001100111110 Fundamentalism 3 -011001100111110 Burnt 3 -011001100111110 Contraceptive 3 -011001100111110 Slaves 3 -011001100111110 Mormonism 3 -011001100111110 6A 3 -011001100111110 Archangel 3 -011001100111110 Europe/Radio 3 -011001100111110 Chesterfields 3 -011001100111110 Melodies 4 -011001100111110 Familian 4 -011001100111110 Misses 4 -011001100111110 Openly 4 -011001100111110 imperium 4 -011001100111110 puppeteers 4 -011001100111110 Putty 4 -011001100111110 Widget 4 -011001100111110 Gerstell 4 -011001100111110 Ovation 4 -011001100111110 Korel 4 -011001100111110 Argentino 5 -011001100111110 Sugars 5 -011001100111110 Violet 5 -011001100111110 Steer 5 -011001100111110 Fibrosis 5 -011001100111110 Quilt 5 -011001100111110 Hanukkah 5 -011001100111110 Zip 5 -011001100111110 Nadu 5 -011001100111110 Debates 6 -011001100111110 Piazza 6 -011001100111110 Commandment 6 -011001100111110 Trans-Atlantic 6 -011001100111110 Pistols 6 -011001100111110 Principle 6 -011001100111110 2707 6 -011001100111110 Metronics 6 -011001100111110 Speculator 6 -011001100111110 Sizzlin 7 -011001100111110 Trauma 7 -011001100111110 Blot 8 -011001100111110 Capture 8 -011001100111110 BioSystems 8 -011001100111110 Agile 8 -011001100111110 Oran 8 -011001100111110 Shades 9 -011001100111110 Couple 9 -011001100111110 Marching 9 -011001100111110 Bopera 9 -011001100111110 Connectors 10 -011001100111110 Opry 10 -011001100111110 Sanctuary 10 -011001100111110 Guidance 11 -011001100111110 Happiness 13 -011001100111110 Communion 13 -011001100111110 INDUSTRIE 14 -011001100111110 Eelam 14 -011001100111110 Pillar 15 -011001100111110 Battalion 16 -011001100111110 Tronic 18 -011001100111110 Intertech 18 -011001100111110 Bankcard 19 -011001100111110 Leagues 20 -011001100111110 Stuff 20 -011001100111110 Crew 21 -011001100111110 Civilization 22 -011001100111110 Experimental 22 -011001100111110 DU 23 -011001100111110 Centurion 23 -011001100111110 Hero 23 -011001100111110 FINANCIERE 24 -011001100111110 NATIONALE 24 -011001100111110 Corridor 24 -011001100111110 Ill 24 -011001100111110 Crusade 25 -011001100111110 Kippur 26 -011001100111110 Useful 27 -011001100111110 warplane 30 -011001100111110 gunboat 34 -011001100111110 Jihad 41 -011001100111110 Spy 42 -011001100111110 Resistance 42 -011001100111110 GENERALE 46 -011001100111110 gunboats 51 -011001100111110 Rescue 56 -011001100111110 Hemisphere 81 -011001100111110 Left 93 -011001100111110 Round 111 -011001100111110 Emperor 136 -011001100111110 Westwood 165 -011001100111110 Lady 182 -011001100111110 Woman 201 -011001100111110 Battle 201 -011001100111110 Emirates 218 -011001100111110 Banc 285 -011001100111110 Freedom 329 -011001100111110 Empire 370 -011001100111110 Opera 377 -011001100111110 bloc 616 -011001100111110 Union 8203 -011001100111110 Republic 1386 -011001100111111 Jeanneane 1 -011001100111111 Sercurities 1 -011001100111111 8.2-acre 1 -011001100111111 Olidocene 1 -011001100111111 Fe/Southern 1 -011001100111111 Bredemann 1 -011001100111111 483,400 1 -011001100111111 mob-related 1 -011001100111111 Mid-Isle 1 -011001100111111 Blyvooruitzicht 1 -011001100111111 Urology 1 -011001100111111 league-champion 1 -011001100111111 Schiavoni 1 -011001100111111 Fermanagh 1 -011001100111111 unidirectional 1 -011001100111111 oft-besieged 1 -011001100111111 Bowl-era 1 -011001100111111 RENT-A-CAR 1 -011001100111111 supercarrier 1 -011001100111111 Rouses 1 -011001100111111 Dynasties 1 -011001100111111 400-Room 1 -011001100111111 JWT/Asia 1 -011001100111111 Wook 1 -011001100111111 Checkerspot 1 -011001100111111 Sumiyaku 1 -011001100111111 Kleinco 1 -011001100111111 ex-Southern 1 -011001100111111 Snaffi 1 -011001100111111 Shareef 1 -011001100111111 Veces 1 -011001100111111 Pipefitting 1 -011001100111111 Sylviane 1 -011001100111111 Business-Clergy 1 -011001100111111 MATH 1 -011001100111111 Tekken 1 -011001100111111 1,412,578 1 -011001100111111 CSC. 1 -011001100111111 Merona 1 -011001100111111 cattle-sale 1 -011001100111111 Veale 1 -011001100111111 TranstexT 1 -011001100111111 CASUAL 1 -011001100111111 road-cleaning 1 -011001100111111 Fleischmann-Kurth/ADM 1 -011001100111111 Wijaya 1 -011001100111111 6960 1 -011001100111111 RKO/Six 1 -011001100111111 Mould 1 -011001100111111 antihemophilia 1 -011001100111111 Lutravil 1 -011001100111111 neo-Renaissance 1 -011001100111111 McMillan-Doolittle 1 -011001100111111 Washboard 1 -011001100111111 Recency 1 -011001100111111 Intrusion 1 -011001100111111 866,466 1 -011001100111111 Minorco-Consolidated 1 -011001100111111 Devonsheer 1 -011001100111111 Animated 1 -011001100111111 ProvidentMutual 1 -011001100111111 Wales-based 1 -011001100111111 Garnac 1 -011001100111111 Rapporteur 1 -011001100111111 Carinto 1 -011001100111111 Wardens 1 -011001100111111 865,945 1 -011001100111111 485,250 1 -011001100111111 AZL. 1 -011001100111111 Kjobenhavns 1 -011001100111111 111,500 1 -011001100111111 Tenax 1 -011001100111111 1,012,200 1 -011001100111111 239,500 1 -011001100111111 Syngas 1 -011001100111111 IRD 1 -011001100111111 Fiberglas-Reinforced 1 -011001100111111 1,469,188 1 -011001100111111 reindict 1 -011001100111111 Anti-ballistic 1 -011001100111111 217,100 1 -011001100111111 1,139,700 1 -011001100111111 Suliao 1 -011001100111111 Readies 1 -011001100111111 46,950 1 -011001100111111 Durlacher 1 -011001100111111 anti-Star 1 -011001100111111 Quilter 1 -011001100111111 Camelback 1 -011001100111111 then-named 1 -011001100111111 paintings. 1 -011001100111111 Winrock 1 -011001100111111 8,279,665 1 -011001100111111 5-Year 1 -011001100111111 Boise-Graham 1 -011001100111111 Sieng 1 -011001100111111 Vt.based 1 -011001100111111 Ulrik 1 -011001100111111 maestra 1 -011001100111111 47,000-man 1 -011001100111111 bien 1 -011001100111111 60-hotel 1 -011001100111111 Molsen 1 -011001100111111 Theatricals 1 -011001100111111 methane-powered 1 -011001100111111 Propellant 1 -011001100111111 188-acre 1 -011001100111111 Tin-Horns 1 -011001100111111 High-Cost 1 -011001100111111 In-Stock 1 -011001100111111 pink-stuccoed 1 -011001100111111 1441 1 -011001100111111 Mandarine 1 -011001100111111 Hunah 1 -011001100111111 Ydrametals 1 -011001100111111 based-Gander 1 -011001100111111 Facial 1 -011001100111111 584,200 1 -011001100111111 Mid-continent 1 -011001100111111 co-anchors 1 -011001100111111 OT 1 -011001100111111 Heishman 1 -011001100111111 Take-Home 1 -011001100111111 Mexican-built 1 -011001100111111 Prods 1 -011001100111111 Kennecot 1 -011001100111111 Wyandot 1 -011001100111111 282,882 1 -011001100111111 dog-eating 1 -011001100111111 Mirror-owned 1 -011001100111111 Moulding 1 -011001100111111 dirty-white 1 -011001100111111 AMark 1 -011001100111111 Brownsville-South 1 -011001100111111 W100 1 -011001100111111 428,200 1 -011001100111111 416-room 1 -011001100111111 fishless 1 -011001100111111 Grenville 1 -011001100111111 Pfriender 1 -011001100111111 soon-to-be-shuttered 1 -011001100111111 SECRETARIAL 1 -011001100111111 Bazykina 1 -011001100111111 adult-retirement 1 -011001100111111 Earnhardt 1 -011001100111111 stage-sized 1 -011001100111111 Junge 1 -011001100111111 Aroub 1 -011001100111111 Cuddy 1 -011001100111111 6,419,287 1 -011001100111111 3,300-room 1 -011001100111111 Best-Stressed 1 -011001100111111 non-dividend-bearing 1 -011001100111111 Co./ 1 -011001100111111 Injun 1 -011001100111111 500-Mile 1 -011001100111111 Montjoy 1 -011001100111111 JAG 1 -011001100111111 Yorigami 1 -011001100111111 Fossil 1 -011001100111111 once-seedy 1 -011001100111111 relicense 1 -011001100111111 Nippei 1 -011001100111111 Kajun 1 -011001100111111 Weisshappel 1 -011001100111111 VARIABLE 1 -011001100111111 Laure 1 -011001100111111 RKO-Six 1 -011001100111111 dual-overhead-cam 1 -011001100111111 DEFERRING 1 -011001100111111 Spicy 1 -011001100111111 U.S.-run 1 -011001100111111 just-renovated 1 -011001100111111 Assessor-Treasurer 1 -011001100111111 Frena 1 -011001100111111 1,382,678 1 -011001100111111 ZAS 1 -011001100111111 re-incorporate 1 -011001100111111 198586 1 -011001100111111 Ste.-Anne-de 1 -011001100111111 Consulate-General 1 -011001100111111 Ionosphere 1 -011001100111111 Lankford 1 -011001100111111 slowpoke 1 -011001100111111 nine-billion-barrel 1 -011001100111111 drought-dry 1 -011001100111111 Radiochemical 1 -011001100111111 Trop 1 -011001100111111 Ricki 1 -011001100111111 Orchestre 1 -011001100111111 DeArrieta 1 -011001100111111 Crippling 1 -011001100111111 Buffelsfontein 1 -011001100111111 Svngs-x 1 -011001100111111 riot-swept 1 -011001100111111 Intermediazione 1 -011001100111111 Oswood 1 -011001100111111 Glo 1 -011001100111111 Checked 1 -011001100111111 Pavtec 1 -011001100111111 14,421-foot 1 -011001100111111 Self-Government 1 -011001100111111 649,300 1 -011001100111111 HRH 1 -011001100111111 Bouganville 1 -011001100111111 U.S.-administered 1 -011001100111111 Cloues 1 -011001100111111 natal 1 -011001100111111 Angiulli 1 -011001100111111 Prieska 1 -011001100111111 Coso 1 -011001100111111 Tule 1 -011001100111111 Clarabelle 1 -011001100111111 Frood-Stobie 1 -011001100111111 Nitrous 1 -011001100111111 AntiBallistic 1 -011001100111111 95-store 1 -011001100111111 founds 1 -011001100111111 junior-sized 1 -011001100111111 Aciest 1 -011001100111111 Johnson-Merck 1 -011001100111111 Sarver 1 -011001100111111 25-room 1 -011001100111111 Kling-Lindquist 1 -011001100111111 AEG. 1 -011001100111111 Thunderhead 1 -011001100111111 384-room 1 -011001100111111 Star/Ship 1 -011001100111111 TVX. 1 -011001100111111 Zawinul 1 -011001100111111 SGA 1 -011001100111111 faster-developing 1 -011001100111111 730,466 1 -011001100111111 Low-Level 1 -011001100111111 Japanese-Affiliated 1 -011001100111111 by-then-reformed 1 -011001100111111 Oathout 1 -011001100111111 MacDraw 1 -011001100111111 SEVERANCE 1 -011001100111111 once-vast 1 -011001100111111 Rikki 1 -011001100111111 Pocohantas 1 -011001100111111 Corset 1 -011001100111111 Berwind 1 -011001100111111 Bergelt 2 -011001100111111 XR7 2 -011001100111111 Morrison-Knudson 2 -011001100111111 Merom 2 -011001100111111 Namew 2 -011001100111111 SPWL 2 -011001100111111 Cerami 2 -011001100111111 Alwin 2 -011001100111111 Creusot 2 -011001100111111 Midcontinent 2 -011001100111111 Slickers 2 -011001100111111 Ravine 2 -011001100111111 Intrawest 2 -011001100111111 3333 2 -011001100111111 homo 2 -011001100111111 Nevex 2 -011001100111111 Lauhoff 2 -011001100111111 Confection 2 -011001100111111 Jerome-Duncan 2 -011001100111111 Coroner 2 -011001100111111 Bighorn 2 -011001100111111 Toasted 2 -011001100111111 ENTERPRISE 2 -011001100111111 K-G 2 -011001100111111 Rustenburg 2 -011001100111111 Zarif 2 -011001100111111 Sports/Medical 2 -011001100111111 APA/Fostin 2 -011001100111111 Princeton/ 2 -011001100111111 Atasco 2 -011001100111111 24-Hour 2 -011001100111111 Crouse-Hinds 2 -011001100111111 Landstar 2 -011001100111111 Kluane 2 -011001100111111 Kloof 2 -011001100111111 300-square-mile 2 -011001100111111 Fresard 2 -011001100111111 Klockner 2 -011001100111111 DIHC 2 -011001100111111 Talkeetna 2 -011001100111111 Linfood 2 -011001100111111 Eyzone 2 -011001100111111 Maybaco 2 -011001100111111 Newtonville 2 -011001100111111 Bligh 2 -011001100111111 Nishimatsu 2 -011001100111111 Charting 2 -011001100111111 Co-Data 2 -011001100111111 CLASSIC 2 -011001100111111 HPM 2 -011001100111111 Billingsgate 2 -011001100111111 Bruinsma 2 -011001100111111 Finnsov 2 -011001100111111 Sebago 2 -011001100111111 C&L 2 -011001100111111 Wapiti 2 -011001100111111 Eu 2 -011001100111111 Fe-Southern 2 -011001100111111 Raindance 2 -011001100111111 Lumiere 2 -011001100111111 294,737 2 -011001100111111 Line-Backer 2 -011001100111111 Telecheck 2 -011001100111111 Vandegrift 2 -011001100111111 ESM 2 -011001100111111 FileMaker 2 -011001100111111 Astronics 2 -011001100111111 Epeli 2 -011001100111111 Actus 2 -011001100111111 Claudell 2 -011001100111111 Deserve 2 -011001100111111 17985 2 -011001100111111 Unifast 2 -011001100111111 Kirten/James 2 -011001100111111 Runcorn 3 -011001100111111 L-P 3 -011001100111111 Schnuck 3 -011001100111111 Sudafed 3 -011001100111111 Bi-Mart 3 -011001100111111 Sittipol 3 -011001100111111 Ragtime 3 -011001100111111 Trane 3 -011001100111111 Salad 3 -011001100111111 Outta 3 -011001100111111 Agnico 3 -011001100111111 Antiballistic 3 -011001100111111 Shady 3 -011001100111111 Smoky 3 -011001100111111 Maguy 3 -011001100111111 QE 3 -011001100111111 Cissy 3 -011001100111111 Rachael 3 -011001100111111 Gagarin 3 -011001100111111 Kelco 3 -011001100111111 Bumi 3 -011001100111111 Fireplace 3 -011001100111111 Signode 3 -011001100111111 Av 3 -011001100111111 Intech 3 -011001100111111 Handotai 3 -011001100111111 Co-Op 3 -011001100111111 Schoolbreak 3 -011001100111111 Publix 3 -011001100111111 SouthWest 3 -011001100111111 Koehring 3 -011001100111111 RMI 3 -011001100111111 Freeport-McMoran 3 -011001100111111 WREN 3 -011001100111111 Riffe 4 -011001100111111 XR-7 4 -011001100111111 Mineracao 4 -011001100111111 Pactel 4 -011001100111111 Shearson-Lehman 4 -011001100111111 Button 4 -011001100111111 Rests 4 -011001100111111 Trough 4 -011001100111111 Chinon 4 -011001100111111 Spitalnick 4 -011001100111111 Clockwork 4 -011001100111111 Karbala 4 -011001100111111 Tungsten 4 -011001100111111 Botanic 4 -011001100111111 Ecstatic 4 -011001100111111 MidSouth 4 -011001100111111 Burrito 4 -011001100111111 Kidston 4 -011001100111111 femme 4 -011001100111111 Forging 4 -011001100111111 Burro 5 -011001100111111 Homo 5 -011001100111111 Icy 5 -011001100111111 Maxey 5 -011001100111111 Acha 5 -011001100111111 Idle 5 -011001100111111 Dire 5 -011001100111111 Penrose 5 -011001100111111 Tr 5 -011001100111111 Ultima 5 -011001100111111 Picayune 5 -011001100111111 Background 5 -011001100111111 S.T. 5 -011001100111111 Lookout 5 -011001100111111 Abco 5 -011001100111111 Stefanie 5 -011001100111111 S&S 5 -011001100111111 Tees 5 -011001100111111 das 5 -011001100111111 Snacktime 5 -011001100111111 Mileage 5 -011001100111111 Delal 5 -011001100111111 Lepercq 5 -011001100111111 Shenandoah 5 -011001100111111 Sewerage 5 -011001100111111 Lore 5 -011001100111111 Roast 5 -011001100111111 Grassy 5 -011001100111111 Gramaphone 6 -011001100111111 Sentry 6 -011001100111111 Sancho 6 -011001100111111 Bis 6 -011001100111111 1050 6 -011001100111111 Coit 6 -011001100111111 Sadie 6 -011001100111111 Sitmar 6 -011001100111111 Lilac 6 -011001100111111 Edible 6 -011001100111111 Boot 6 -011001100111111 Timberland 6 -011001100111111 Hay/Huggins 6 -011001100111111 Mellencamp 6 -011001100111111 Pew 6 -011001100111111 Grovers 6 -011001100111111 Remodeling 7 -011001100111111 Citroen 7 -011001100111111 FirstFed 7 -011001100111111 Horseshoe 7 -011001100111111 SQL 7 -011001100111111 Costco 7 -011001100111111 Crested 7 -011001100111111 Ear 7 -011001100111111 Krishna 7 -011001100111111 APW 7 -011001100111111 Shredded 7 -011001100111111 Coat 8 -011001100111111 Pocono 8 -011001100111111 angiotensin 8 -011001100111111 Bae 8 -011001100111111 Elbow 8 -011001100111111 Quartz 8 -011001100111111 FRANCAISE 8 -011001100111111 Antiques 9 -011001100111111 Covent 9 -011001100111111 Pickwick 9 -011001100111111 Boiler 9 -011001100111111 Addwest 9 -011001100111111 ACM 9 -011001100111111 Couch 10 -011001100111111 Monadnock 10 -011001100111111 Tartan 10 -011001100111111 Merrimac 10 -011001100111111 Palmolive 10 -011001100111111 Juki 10 -011001100111111 Grist 10 -011001100111111 Bald 10 -011001100111111 Hoof 11 -011001100111111 Raider 11 -011001100111111 Catskill 11 -011001100111111 Mascot 11 -011001100111111 checkerspot 11 -011001100111111 Barneys 11 -011001100111111 DI 12 -011001100111111 Supra 12 -011001100111111 Yucca 12 -011001100111111 Fulcrum 12 -011001100111111 Brave 12 -011001100111111 Trac 13 -011001100111111 Covenant 13 -011001100111111 Calgon 14 -011001100111111 Barge 15 -011001100111111 Cimarron 15 -011001100111111 Rocket 15 -011001100111111 Dynamic 16 -011001100111111 Candice 17 -011001100111111 Cigar 17 -011001100111111 Jail 18 -011001100111111 Woodcliff 18 -011001100111111 Menahem 18 -011001100111111 Lancer 19 -011001100111111 Commuter 19 -011001100111111 Physician 19 -011001100111111 Silent 20 -011001100111111 Mid 20 -011001100111111 Swire 20 -011001100111111 File 20 -011001100111111 Gander 21 -011001100111111 Fetzer 21 -011001100111111 Regent 21 -011001100111111 Explorer 21 -011001100111111 Morrison-Knudsen 22 -011001100111111 Turf 22 -011001100111111 Dillingham 22 -011001100111111 Moonlight 22 -011001100111111 DFC 24 -011001100111111 A-Mark 24 -011001100111111 Via 24 -011001100111111 Medallion 24 -011001100111111 Pure 25 -011001100111111 Caltex 26 -011001100111111 Ace 27 -011001100111111 Janus 27 -011001100111111 Festiva 27 -011001100111111 Juliet 27 -011001100111111 Sogo 29 -011001100111111 Soho 29 -011001100111111 Rare 29 -011001100111111 Advantage 31 -011001100111111 Olive 31 -011001100111111 Minh 32 -011001100111111 Potash 36 -011001100111111 Chocolate 36 -011001100111111 Turbo 41 -011001100111111 Natwest 41 -011001100111111 Solid 46 -011001100111111 Electra 48 -011001100111111 Cop 50 -011001100111111 Eldorado 51 -011001100111111 Blank 51 -011001100111111 Cathay 53 -011001100111111 Versatile 54 -011001100111111 Hemlo 54 -011001100111111 Navigation 54 -011001100111111 Anti-Ballistic 54 -011001100111111 Bronco 72 -011001100111111 Seiko 73 -011001100111111 Cogeneration 73 -011001100111111 Hartz 73 -011001100111111 Swan 74 -011001100111111 Multilateral 80 -011001100111111 Robinson-Humphrey 80 -011001100111111 Masius 83 -011001100111111 Die 85 -011001100111111 Magic 89 -011001100111111 Agent 97 -011001100111111 Bonneville 102 -011001100111111 Cutlass 109 -011001100111111 Magellan 113 -011001100111111 Optical 123 -011001100111111 Dry 130 -011001100111111 Ranger 139 -011001100111111 Fresh 143 -011001100111111 Crystal 151 -011001100111111 Horizon 162 -011001100111111 Masco 167 -011001100111111 Ryder 190 -011001100111111 Placer 239 -011001100111111 Ocean 297 -011001100111111 Phelps 318 -011001100111111 Rocky 322 -011001100111111 NatWest 326 -011001100111111 Mirror 402 -011001100111111 Salt 432 -011001100111111 Limited 961 -011001100111111 Star 1067 -011001100111111 Consolidated 1339 -011001100111111 Marine 1394 -011001100111111 Northern 1472 -011001100111111 Credit 2332 -011001100111111 Southern 3338 -011001100111111 Chemical 3129 -011001101000 Danube-Black 1 -011001101000 Navida 1 -011001101000 tootight 1 -011001101000 Ziya 1 -011001101000 HELLO 1 -011001101000 world-traveling 1 -011001101000 KHIC 1 -011001101000 Ex-Altar 1 -011001101000 Baccouche 1 -011001101000 Toqui 1 -011001101000 Milani 1 -011001101000 Maufra 1 -011001101000 RH-53D 1 -011001101000 2,825,000 1 -011001101000 150,000-member 1 -011001101000 v.N. 1 -011001101000 2455 1 -011001101000 Movie-made 1 -011001101000 Square-originated 1 -011001101000 Energy/Water 1 -011001101000 JWT/Latin 1 -011001101000 Debt-Free 1 -011001101000 then-aggressive 1 -011001101000 Salyer 1 -011001101000 Choix 1 -011001101000 Janower 1 -011001101000 West-Point-style 1 -011001101000 SuperSports 1 -011001101000 400,00 1 -011001101000 Yoplait 1 -011001101000 President-Employment 1 -011001101000 JeanPaul 1 -011001101000 2,133,215 1 -011001101000 Scowling 1 -011001101000 Saft 1 -011001101000 Andaman 1 -011001101000 Non-Micro 1 -011001101000 stories-high 1 -011001101000 campaign-provided 1 -011001101000 fifth-ranked 1 -011001101000 conspiracythe 1 -011001101000 Grande-Southern 1 -011001101000 Shcherbakov 1 -011001101000 Osteopathic 1 -011001101000 255,000-member 1 -011001101000 ther 1 -011001101000 Elf-Aquitaine 1 -011001101000 CHOSE 1 -011001101000 WPLG 1 -011001101000 Montelena 1 -011001101000 Sharq 1 -011001101000 Tiktin 1 -011001101000 ex-Air 1 -011001101000 Visayas 1 -011001101000 human-rights-sensitive 1 -011001101000 well-pressed 1 -011001101000 Sulu 1 -011001101000 Meatloaf 1 -011001101000 Blimp-ish 1 -011001101000 Arnaz 1 -011001101000 Intermarine 1 -011001101000 IDS/ 1 -011001101000 48-star 1 -011001101000 WCRS/North 1 -011001101000 Transpersonal 1 -011001101000 Fin-de-Siecle 1 -011001101000 800-Stage 1 -011001101000 earthquake-ravaged 1 -011001101000 communautaire 1 -011001101000 675-foot 1 -011001101000 Kimble 1 -011001101000 outplaying 1 -011001101000 750-foot 1 -011001101000 hypertrophied 1 -011001101000 Fittest 1 -011001101000 Prude 1 -011001101000 gulling 1 -011001101000 dishwater-dingy 1 -011001101000 Danceafrica 1 -011001101000 Scilly 1 -011001101000 Behaviorial 1 -011001101000 Jeepmaker 1 -011001101000 Atlantico 1 -011001101000 much-reviled 1 -011001101000 Cinncinati-based 1 -011001101000 Worden 1 -011001101000 NDU 1 -011001101000 Latenight 1 -011001101000 962,437 1 -011001101000 Rosada 1 -011001101000 784,048 1 -011001101000 resegregating 1 -011001101000 Soviet-held 1 -011001101000 Chimique 1 -011001101000 rate-related 1 -011001101000 Mortab 1 -011001101000 Recino 1 -011001101000 Giocattoli 1 -011001101000 Toyo-Umpanki 1 -011001101000 150-hotel 1 -011001101000 much-extolled 1 -011001101000 Theatre-scandal 1 -011001101000 LUCE 1 -011001101000 Krause-Holmstrom 1 -011001101000 Montocin 1 -011001101000 Wining 1 -011001101000 day-tripping 1 -011001101000 PILLIOD 1 -011001101000 Chevre 1 -011001101000 Teletechnique 1 -011001101000 Spaceport 1 -011001101000 Twentieth-century 1 -011001101000 NetLink 1 -011001101000 TITLETOWN 1 -011001101000 Aromatic 1 -011001101000 Copystar 1 -011001101000 Jole 1 -011001101000 Hipotecario 1 -011001101000 Dayna 1 -011001101000 post-Revolutionary 1 -011001101000 EWOK 1 -011001101000 Performa 1 -011001101000 Bujanda 1 -011001101000 Tomiano 1 -011001101000 Artwave 1 -011001101000 Salton 1 -011001101000 decimates 1 -011001101000 on-the-make 1 -011001101000 Steelinter 1 -011001101000 Scoutmaster 1 -011001101000 Aztlan 1 -011001101000 Seimei 1 -011001101000 True-Life 1 -011001101000 pax 1 -011001101000 Berrey 1 -011001101000 1,385-member 1 -011001101000 582,790 1 -011001101000 Hollandse 1 -011001101000 Invent 1 -011001101000 Reines 1 -011001101000 Brantigan 1 -011001101000 Pudahuel 1 -011001101000 Quebrada 1 -011001101000 Caustic 1 -011001101000 Enkei 1 -011001101000 R&D-intensive 1 -011001101000 Unida 1 -011001101000 Geiu 1 -011001101000 Shimeless 1 -011001101000 Tamiral 1 -011001101000 Knussen 1 -011001101000 now-prominent 1 -011001101000 Lidov 1 -011001101000 Shearson/ 1 -011001101000 Pentagon-cleared 1 -011001101000 Stepanova 1 -011001101000 Beardless 1 -011001101000 Wholefood 1 -011001101000 Astman 1 -011001101000 Gamsberg 1 -011001101000 Infosec 1 -011001101000 Jover 1 -011001101000 Envasadora 1 -011001101000 L.I.T. 1 -011001101000 Sogeral 1 -011001101000 286,000-member 1 -011001101000 Rapperport 1 -011001101000 Proletarian 1 -011001101000 shush 1 -011001101000 Glarus 1 -011001101000 Sirloin 1 -011001101000 1920-ish 1 -011001101000 Matoso 1 -011001101000 GIBSON 1 -011001101000 fat-loathing 1 -011001101000 gelmackers 1 -011001101000 Rediscovers 1 -011001101000 Right-Brain 1 -011001101000 Doce 1 -011001101000 Thousand-year-old 1 -011001101000 Muscato 1 -011001101000 Stare 1 -011001101000 Sucres 1 -011001101000 7& 1 -011001101000 TDB 1 -011001101000 Katims 1 -011001101000 964,800 1 -011001101000 Overeducated 1 -011001101000 Santiveri 1 -011001101000 Small-Town 1 -011001101000 Well-trained 1 -011001101000 272,000-member 1 -011001101000 North-type 1 -011001101000 Bidari 1 -011001101000 Pluma 1 -011001101000 civil-rights-conscious 1 -011001101000 Hopnoodle 1 -011001101000 1965-75 1 -011001101000 4050 1 -011001101000 4150 1 -011001101000 Elettrificazione 1 -011001101000 picture-post-card 1 -011001101000 back-road 1 -011001101000 skimpy-premium 1 -011001101000 234,300 1 -011001101000 Bosenge 1 -011001101000 disfranchising 1 -011001101000 non-North 1 -011001101000 Fonciere 1 -011001101000 Inhaled 1 -011001101000 Revillas 1 -011001101000 traducing 1 -011001101000 European-North 2 -011001101000 highest-ranked 2 -011001101000 imbuing 2 -011001101000 arbitrageur 2 -011001101000 Cresta 2 -011001101000 Pali 2 -011001101000 Thirteenth 2 -011001101000 Vague 2 -011001101000 Hilmar 2 -011001101000 SCHWAB 2 -011001101000 Bohai 2 -011001101000 WSCV-TV 2 -011001101000 Norths 2 -011001101000 Repo 2 -011001101000 Minister. 2 -011001101000 AD&P 2 -011001101000 get-along 2 -011001101000 WNJU-TV 2 -011001101000 Samincorp 2 -011001101000 less-advanced 2 -011001101000 Lupita 2 -011001101000 Sogrape 2 -011001101000 Bugle 2 -011001101000 Boatique 2 -011001101000 Nuking 2 -011001101000 Nineteenth-Century 2 -011001101000 Halt 2 -011001101000 Leitch 2 -011001101000 Kaplansky 2 -011001101000 medias 2 -011001101000 Gissin 2 -011001101000 Kaneka 2 -011001101000 KB 2 -011001101000 Punishing 2 -011001101000 Koppell 2 -011001101000 Considar 2 -011001101000 sogo 2 -011001101000 Stunt 2 -011001101000 ED&F 2 -011001101000 Kineret 2 -011001101000 Uri 2 -011001101000 Remaking 2 -011001101000 Rayas 2 -011001101000 Beaucastel 2 -011001101000 d'Electro-Resistance 2 -011001101000 Fluf 2 -011001101000 slurpy 2 -011001101000 Bloodless 2 -011001101000 less-desired 2 -011001101000 Marmont 2 -011001101000 fini 2 -011001101000 Uchiza 2 -011001101000 Eytan 2 -011001101000 FPI 2 -011001101000 UL 2 -011001101000 Bahai 2 -011001101000 Sexiest 2 -011001101000 U.S.-Latin 2 -011001101000 Luthie 2 -011001101000 Ramco 2 -011001101000 Arriba 2 -011001101000 WSCV 2 -011001101000 Resistol 3 -011001101000 Renown 3 -011001101000 CA. 3 -011001101000 America/West 3 -011001101000 Lahad 3 -011001101000 Gordo 3 -011001101000 Timers 3 -011001101000 Chipmunk 3 -011001101000 Privee 3 -011001101000 Anglo-North 3 -011001101000 North. 3 -011001101000 Qadhafi 3 -011001101000 Four-Eyed 3 -011001101000 Timor 3 -011001101000 Quested 3 -011001101000 Renew 3 -011001101000 Simac 3 -011001101000 Denon 3 -011001101000 Mosane 3 -011001101000 Azpillaga 3 -011001101000 3,210,000 3 -011001101000 Loyal 3 -011001101000 coal-rich 3 -011001101000 Evangelina 3 -011001101000 92-0 3 -011001101000 non-Micro 3 -011001101000 Markovic 3 -011001101000 Hawari 3 -011001101000 Bouterse 4 -011001101000 Rib 4 -011001101000 Itau 4 -011001101000 Huxsoll 4 -011001101000 Hypermart 4 -011001101000 Bozano 4 -011001101000 Central-Banesto 4 -011001101000 Palcuto 4 -011001101000 HSN 4 -011001101000 Netlink 4 -011001101000 red-blooded 4 -011001101000 Cuckoo 4 -011001101000 Mathematica 4 -011001101000 Prelin 4 -011001101000 Ubre 5 -011001101000 Polytechnique 5 -011001101000 Kemble 5 -011001101000 1966-76 5 -011001101000 Payco 5 -011001101000 Linkup 5 -011001101000 Giraldi 5 -011001101000 Piss 6 -011001101000 Drug-Free 6 -011001101000 Goo 6 -011001101000 Barents 6 -011001101000 Herstal 6 -011001101000 Smokestack 7 -011001101000 B.P. 7 -011001101000 Postwar 7 -011001101000 Eternit 7 -011001101000 Opryland 7 -011001101000 Youssou 7 -011001101000 Douwe 8 -011001101000 Bancaire 8 -011001101000 Grandmet 8 -011001101000 Rebuild 8 -011001101000 Sail 8 -011001101000 Lafite 9 -011001101000 Hygeia 9 -011001101000 Kuklinski 9 -011001101000 Elting 9 -011001101000 GrandMet 10 -011001101000 Tinto-Zinc 10 -011001101000 Dawit 11 -011001101000 Invisible 11 -011001101000 Democratica 11 -011001101000 Bugs 12 -011001101000 Clarks 12 -011001101000 Veterinary 12 -011001101000 Oxy 13 -011001101000 Tilted 13 -011001101000 AC 14 -011001101000 Caspian 14 -011001101000 Norex 14 -011001101000 Metropolitain 15 -011001101000 Hispano 15 -011001101000 Jean-Paul 15 -011001101000 Chukchi 15 -011001101000 Aral 16 -011001101000 Agache 18 -011001101000 Mexicanos 18 -011001101000 Teen 18 -011001101000 Stevie 20 -011001101000 Rawlings 20 -011001101000 Elephant 21 -011001101000 Transmark 22 -011001101000 Gadd 22 -011001101000 LIT 25 -011001101000 Chromalloy 27 -011001101000 Polar 29 -011001101000 Santander 31 -011001101000 Rabuka 32 -011001101000 Tinto 32 -011001101000 Gorda 33 -011001101000 Clear 33 -011001101000 1st 33 -011001101000 Pac 40 -011001101000 Bering 42 -011001101000 Giroldi 44 -011001101000 Occidentale 48 -011001101000 Algom 51 -011001101000 Beaufort 52 -011001101000 Native 58 -011001101000 Honasan 61 -011001101000 Minute 66 -011001101000 Aegean 67 -011001101000 Ambrosiano 98 -011001101000 Movie 106 -011001101000 Persons 106 -011001101000 Gadhafi 118 -011001101000 Yugo 122 -011001101000 Fashion 124 -011001101000 Elf 168 -011001101000 Grande 175 -011001101000 Jet 191 -011001101000 Discovery 203 -011001101000 Anglo 220 -011001101000 Triad 230 -011001101000 Latin 1858 -011001101000 North 8555 -011001101000 Central 3817 -011001101001 TRIBECA 1 -011001101001 261-unit 1 -011001101001 coal-dependent 1 -011001101001 84-unit 1 -011001101001 seven-major 1 -011001101001 unemployment-stricken 1 -011001101001 1,600-acre 1 -011001101001 KwaMashu 1 -011001101001 24-man 1 -011001101001 Smythe 1 -011001101001 Paktia 1 -011001101001 German-led 1 -011001101001 Soviet-oppressed 1 -011001101001 Tokyo-financed 1 -011001101001 Ozlike 1 -011001101001 oil-reliant 1 -011001101001 six-evening 1 -011001101001 allwhite 1 -011001101001 Spanish-colonial-style 1 -011001101001 Shiite-Moslem 1 -011001101001 Talib 1 -011001101001 multi-multi-Grammy-winner 1 -011001101001 now-burnt-out 1 -011001101001 255,000-ton 1 -011001101001 MG. 1 -011001101001 Catalan-speaking 1 -011001101001 Cordon 1 -011001101001 once-enormous 1 -011001101001 245,000-circulation 1 -011001101001 Mexican-influenced 1 -011001101001 now-validated 1 -011001101001 Chinese-South 1 -011001101001 fourth-century 1 -011001101001 cold-shouldering 1 -011001101001 Lan 1 -011001101001 mountain-protected 1 -011001101001 40,000-member 1 -011001101001 Mycenaean 1 -011001101001 1,085,304 1 -011001101001 post-perestroika 1 -011001101001 Eike 1 -011001101001 communist-influenced 1 -011001101001 Yale-and-chablis 1 -011001101001 1,050-acre 1 -011001101001 Israel-South 1 -011001101001 Mets-whipping 1 -011001101001 fast-getaway 1 -011001101001 forward-moving 1 -011001101001 5,237,000 1 -011001101001 twelve-nation 1 -011001101001 polyethnic 1 -011001101001 canallaced 1 -011001101001 Loeks 1 -011001101001 Aomori 1 -011001101001 1,956,700 1 -011001101001 Znamensky 1 -011001101001 Alderfer 1 -011001101001 Corrientes 1 -011001101001 tough-dealing 1 -011001101001 brick-built 1 -011001101001 bad-boy 1 -011001101001 1,029-room 1 -011001101001 44.819 1 -011001101001 28,000-member 1 -011001101001 reconsolidating 1 -011001101001 453-lawyer 1 -011001101001 post-Ayatollah 1 -011001101001 late-detected 1 -011001101001 British-Hong 1 -011001101001 pro-North 1 -011001101001 American-associated 1 -011001101001 Five-inch 1 -011001101001 cyrillic 1 -011001101001 354-acre 1 -011001101001 mist-drenched 1 -011001101001 war-ridden 1 -011001101001 nonbelligerent 1 -011001101001 French-nationalist 1 -011001101001 non-relations 1 -011001101001 Mexican-dominated 1 -011001101001 Mass-manufactured 1 -011001101001 Houari 1 -011001101001 Dinizulu 1 -011001101001 Gamble-sponsored 1 -011001101001 ANTISEPTIC 1 -011001101001 division-leading 1 -011001101001 recession-wracked 1 -011001101001 house-sized 1 -011001101001 glass-fronted 1 -011001101001 13,667-island 1 -011001101001 Beirut-born 1 -011001101001 35,219 1 -011001101001 1950-1953 1 -011001101001 101-nation 1 -011001101001 less-exalted 1 -011001101001 abundantly-traded 1 -011001101001 land-regulation-happy 1 -011001101001 SACEUR. 1 -011001101001 98-mile 1 -011001101001 916,000-kilowatt 1 -011001101001 tornado-racked 1 -011001101001 Bank-Fort 1 -011001101001 leisure-loving 1 -011001101001 Mughal 1 -011001101001 AIDS-conscious 1 -011001101001 twin-towered 1 -011001101001 2064 1 -011001101001 42-floor 1 -011001101001 Budget-conscious 1 -011001101001 Mao-suited 1 -011001101001 Nixon-Brezhnev 1 -011001101001 hypercomputerized 1 -011001101001 German-occupied 1 -011001101001 do-everything 1 -011001101001 seven-employee 1 -011001101001 45.038 1 -011001101001 ECS-4 1 -011001101001 4,000-worker 1 -011001101001 Cabanas 1 -011001101001 Gossamer 1 -011001101001 post-scandal 1 -011001101001 S-model 1 -011001101001 just-built 1 -011001101001 prefabs 1 -011001101001 U.S.North 1 -011001101001 once-chic 1 -011001101001 now-repealed 1 -011001101001 water-starved 1 -011001101001 Oil-importing 1 -011001101001 51-lawyer 1 -011001101001 oil-slump-plagued 1 -011001101001 ethics-sensitive 1 -011001101001 Kalorama 1 -011001101001 45,000-square-mile 1 -011001101001 Japanese-South 1 -011001101001 war-devastated 1 -011001101001 Landeskreditbank 1 -011001101001 history-drenched 1 -011001101001 nine-county 1 -011001101001 Exchange-Southern 1 -011001101001 littleknown 1 -011001101001 smog-choked 1 -011001101001 entertainment-starved 1 -011001101001 anti-Phnom 1 -011001101001 revved-up 1 -011001101001 proWestern 1 -011001101001 surfless 1 -011001101001 sun-kissed 1 -011001101001 IADB. 1 -011001101001 19th-Century 1 -011001101001 relationship.The 1 -011001101001 non-Hong 1 -011001101001 core-city 1 -011001101001 crack-plagued 1 -011001101001 Moslem-dominated 1 -011001101001 55-lawyer 1 -011001101001 over-made-up 1 -011001101001 Soviet-allied 1 -011001101001 Phonm 1 -011001101001 Byline 1 -011001101001 5,261 1 -011001101001 strengthed 1 -011001101001 175-lawyer 1 -011001101001 magnolia-scented 1 -011001101001 mellowed-out 1 -011001101001 Jew-baiting 1 -011001101001 Price-conscious 1 -011001101001 formidable-appearing 1 -011001101001 seven-branch 1 -011001101001 Amra 1 -011001101001 U.S.-listed 1 -011001101001 sundappled 1 -011001101001 155,300 1 -011001101001 Georgia-South 1 -011001101001 319,832 1 -011001101001 migrant-labor 1 -011001101001 flash-and-trash 1 -011001101001 deep-South 1 -011001101001 Cuba-South 1 -011001101001 supermanly 1 -011001101001 opposition-ruled 1 -011001101001 development-hungry 1 -011001101001 trans-national 1 -011001101001 blissed-out 1 -011001101001 voter-laden 1 -011001101001 70,208 1 -011001101001 still-anemic 1 -011001101001 Angola-South 1 -011001101001 Dakota-North 1 -011001101001 739-mile 1 -011001101001 Confucian-oriented 1 -011001101001 80,000-ton 1 -011001101001 tofu-and-yogurt 1 -011001101001 U.S.-boycotted 1 -011001101001 re-animated 1 -011001101001 7,500-employee 1 -011001101001 more-federal 1 -011001101001 traffic-congested 1 -011001101001 contemporary-design 1 -011001101001 adobe-modern 1 -011001101001 Canada-North 1 -011001101001 126-lawyer 1 -011001101001 money-draining 1 -011001101001 Daimler-Benz-owned 1 -011001101001 fth 1 -011001101001 psalm-singing 1 -011001101001 non-embargoed 1 -011001101001 size-conscious 1 -011001101001 acquainting 1 -011001101001 115-lawyer 1 -011001101001 consumer-hostile 1 -011001101001 Zambia-based 1 -011001101001 7,200-foot-high 1 -011001101001 least-appreciated 1 -011001101001 Moskovskaya 2 -011001101001 anti-South 2 -011001101001 next-door-neighbor 2 -011001101001 non-group 2 -011001101001 smog-ridden 2 -011001101001 Boaco 2 -011001101001 state-accredited 2 -011001101001 Gadsen 2 -011001101001 far-northern 2 -011001101001 sun-bathed 2 -011001101001 South-West 2 -011001101001 FATA 2 -011001101001 Drayton 2 -011001101001 Qajar 2 -011001101001 Nomeco 2 -011001101001 peninsular 2 -011001101001 chain-saw 2 -011001101001 late-20th-century 2 -011001101001 oil-depressed 2 -011001101001 grass-covered 2 -011001101001 Pontius 2 -011001101001 BOA 2 -011001101001 1,152 2 -011001101001 sub-Sahara 2 -011001101001 PRI-dominated 2 -011001101001 drought-lowered 2 -011001101001 consensus-conscious 2 -011001101001 energy-poor 2 -011001101001 Nha 2 -011001101001 Heilongjiang 2 -011001101001 East/Far 2 -011001101001 40-lawyer 2 -011001101001 Yangfushantu 2 -011001101001 caste-conscious 2 -011001101001 fairminded 2 -011001101001 137-acre 2 -011001101001 131-year-old 2 -011001101001 short-bed 3 -011001101001 U.S.-South 3 -011001101001 KCC 3 -011001101001 Caped 3 -011001101001 Shanxi 3 -011001101001 post-sanctions 3 -011001101001 Petroquimica 3 -011001101001 Sambuca 3 -011001101001 Tokyo-Hong 3 -011001101001 Yunnan 3 -011001101001 Czech-born 3 -011001101001 Yudai 3 -011001101001 GAM 3 -011001101001 exurban 3 -011001101001 Ampal-American 3 -011001101001 Periclean 3 -011001101001 sports-crazy 3 -011001101001 Russet 3 -011001101001 flood-prone 3 -011001101001 untranslated 3 -011001101001 Gaetano 4 -011001101001 Gila 4 -011001101001 non-Socialist 4 -011001101001 Henan 4 -011001101001 east-central 4 -011001101001 Campamento 4 -011001101001 non-South 4 -011001101001 Niccolo 4 -011001101001 Nazi-occupied 4 -011001101001 Genya 4 -011001101001 1,100-mile 4 -011001101001 Corte 4 -011001101001 Jinotega 4 -011001101001 Nak 4 -011001101001 oil-dependent 4 -011001101001 Rua 4 -011001101001 Komsomolskaya 5 -011001101001 class-conscious 5 -011001101001 Opto 5 -011001101001 Fulgencio 5 -011001101001 pre-Castro 5 -011001101001 oil-busted 5 -011001101001 Syrian-controlled 5 -011001101001 Astral 6 -011001101001 Guangxi 6 -011001101001 Sub-Saharan 6 -011001101001 Soviet-occupied 6 -011001101001 west-central 7 -011001101001 black-ruled 7 -011001101001 downstate 7 -011001101001 Texas-New 7 -011001101001 Donkey 7 -011001101001 German-speaking 8 -011001101001 Sault 9 -011001101001 post-revolutionary 10 -011001101001 Giacomo 11 -011001101001 Terre 11 -011001101001 5300 12 -011001101001 Fujian 14 -011001101001 Bumiputra 14 -011001101001 Ciudad 15 -011001101001 DFA 16 -011001101001 south-central 16 -011001101001 Palos 17 -011001101001 north-central 17 -011001101001 landlocked 17 -011001101001 Baja 20 -011001101001 war-torn 33 -011001101001 Lei 33 -011001101001 Phnom 34 -011001101001 Nikita 37 -011001101001 sub-Saharan 39 -011001101001 MBank 42 -011001101001 Cheung 44 -011001101001 northwestern 55 -011001101001 Khmer 68 -011001101001 southwestern 71 -011001101001 Baton 118 -011001101001 Sao 151 -011001101001 southeastern 152 -011001101001 northeastern 156 -011001101001 continental 172 -011001101001 Greater 177 -011001101001 Ayatollah 203 -011001101001 neighboring 421 -011001101001 eastern 454 -011001101001 western 583 -011001101001 northern 1014 -011001101001 southern 1034 -011001101001 South 9647 -011001101001 Hong 4226 -011001101010 442,498 1 -011001101010 Moderna 1 -011001101010 tax-advising 1 -011001101010 Hornblower 1 -011001101010 top-form 1 -011001101010 723,144 1 -011001101010 Hiromi 1 -011001101010 ex-Mayor 1 -011001101010 Dirtier 1 -011001101010 now-independent 1 -011001101010 786,800 1 -011001101010 Snooky 1 -011001101010 Rock-A-Bye 1 -011001101010 953,400 1 -011001101010 480,900 1 -011001101010 R&G 1 -011001101010 harmless-sounding 1 -011001101010 4,059,800 1 -011001101010 insurance-broker 1 -011001101010 731,700 1 -011001101010 579,710 1 -011001101010 Lippes 1 -011001101010 524,135 1 -011001101010 bandit/man-of-the-people 1 -011001101010 plastic-like 1 -011001101010 late-17th-century 1 -011001101010 102,900 1 -011001101010 S.I 1 -011001101010 Acrostic 1 -011001101010 big-thighed 1 -011001101010 450,900 1 -011001101010 Headlong 1 -011001101010 Glacee 1 -011001101010 Fertile 1 -011001101010 650,000-kilowatt 1 -011001101010 488,300 1 -011001101010 low-interest-bearing 1 -011001101010 420,904 1 -011001101010 AFC-NFC 1 -011001101010 1,147,000 1 -011001101010 Sleep-Wake 1 -011001101010 Kashner 1 -011001101010 Vesti 1 -011001101010 BRIDGET 1 -011001101010 Deanne 1 -011001101010 Mancil 1 -011001101010 Heydon 1 -011001101010 Seat-Belt 1 -011001101010 Fragrant 1 -011001101010 Luretta 1 -011001101010 Pratt. 1 -011001101010 prexy 1 -011001101010 Multidistrict 1 -011001101010 coachmaker 1 -011001101010 Berggruen 1 -011001101010 Louisine 1 -011001101010 Severiano 1 -011001101010 666,200 1 -011001101010 Swiss-born 1 -011001101010 Abdominal 1 -011001101010 528,850 1 -011001101010 mannish 1 -011001101010 458,200 1 -011001101010 Denbo 1 -011001101010 unswift 1 -011001101010 Pernell 1 -011001101010 director/choreographer/composer 1 -011001101010 Crosley 1 -011001101010 Cola-Cola 1 -011001101010 Japanese-tip 1 -011001101010 original-style 1 -011001101010 Marke/ 1 -011001101010 6,339,165 1 -011001101010 Lyndall 1 -011001101010 McGovern-Carter-Mondale-Jim 1 -011001101010 Masamitsu 1 -011001101010 417,100 1 -011001101010 11,608,399 1 -011001101010 LeaAnn 1 -011001101010 Loik 1 -011001101010 109-bed 1 -011001101010 Eighth-century 1 -011001101010 palacelike 1 -011001101010 Conoga 1 -011001101010 290,981 1 -011001101010 R.P 1 -011001101010 Kazimir 1 -011001101010 Beaton. 1 -011001101010 143,366 1 -011001101010 Parri 1 -011001101010 Joon-Sup 1 -011001101010 perfume-maker 1 -011001101010 H.J 1 -011001101010 Jeumont 1 -011001101010 32-lawyer 1 -011001101010 11,191,299 1 -011001101010 Detroit/Ann 1 -011001101010 Used-Car 1 -011001101010 Cobbold 1 -011001101010 Fagan. 1 -011001101010 Unaccompanied 1 -011001101010 1,036,400 1 -011001101010 1,101,243 1 -011001101010 flout./But 1 -011001101010 Grenoldo 1 -011001101010 Massami 1 -011001101010 Walleyed 1 -011001101010 Needlepoint 1 -011001101010 20,000-acre 1 -011001101010 850,900 1 -011001101010 60-floor 1 -011001101010 sculptor. 1 -011001101010 GSA. 1 -011001101010 porcupine-coiffed 1 -011001101010 Osgoode 1 -011001101010 art-studded 1 -011001101010 upper-handed 1 -011001101010 1,400-square-acre 1 -011001101010 Wisteria 1 -011001101010 -Harriet 1 -011001101010 Zanz 1 -011001101010 Aristedes 1 -011001101010 Lepa 1 -011001101010 Day-Care 1 -011001101010 Belleau 1 -011001101010 915,220 1 -011001101010 XDOS. 1 -011001101010 1,668,982 1 -011001101010 100,000-kilowatt 1 -011001101010 114-year-old 1 -011001101010 sympatico 1 -011001101010 Teather 1 -011001101010 Asian-born 1 -011001101010 dance-band 1 -011001101010 Karmila 1 -011001101010 display. 1 -011001101010 Carl/ 1 -011001101010 Vernard 1 -011001101010 Sanctified 1 -011001101010 Beaux-Arts. 1 -011001101010 Lida 1 -011001101010 Tilled 1 -011001101010 sapphire-eyed 1 -011001101010 never-realized 1 -011001101010 Raeanne 1 -011001101010 6-foot-10-inch 1 -011001101010 F&M 1 -011001101010 Ipso 1 -011001101010 post-1984 1 -011001101010 Warringah 1 -011001101010 Inter-Ministerial 1 -011001101010 3,410,600 1 -011001101010 hand-release 1 -011001101010 '37 1 -011001101010 Paola 1 -011001101010 Gusrae 1 -011001101010 Bayfront 1 -011001101010 Convocation 1 -011001101010 Jinger 1 -011001101010 film-and-flesh 1 -011001101010 Fionnula 1 -011001101010 T-Bone 1 -011001101010 182-megabyte 1 -011001101010 Southmoor 1 -011001101010 Reclusive 1 -011001101010 Hobe 1 -011001101010 BWV 1 -011001101010 2,369,799 1 -011001101010 1975-through-1979-model 1 -011001101010 Yevsei 1 -011001101010 Ball-Incon 1 -011001101010 3,480,000 1 -011001101010 Anti-Trafficking 1 -011001101010 12-unit 1 -011001101010 two-thirds-owned 1 -011001101010 Caffe 1 -011001101010 Alida 1 -011001101010 262,900 1 -011001101010 329,300 1 -011001101010 Veslefrikk 1 -011001101010 3,008-stock 1 -011001101010 Unichappell 1 -011001101010 Rumbalero 1 -011001101010 Ditchley 1 -011001101010 Marva 1 -011001101010 1,375,346 1 -011001101010 Ainsi 1 -011001101010 273,100 1 -011001101010 Moorings 1 -011001101010 235,300 1 -011001101010 1,853,700 1 -011001101010 Leora 1 -011001101010 3,834,900 1 -011001101010 118,714 1 -011001101010 432,520 1 -011001101010 290,500 1 -011001101010 Shailer 1 -011001101010 470-pound 1 -011001101010 post-Sun 1 -011001101010 Coventry-Victor 1 -011001101010 8630 1 -011001101010 Pannel 1 -011001101010 Silsbee-based 1 -011001101010 205,043 1 -011001101010 Boggy 1 -011001101010 Stancy 1 -011001101010 Mychal 1 -011001101010 low-weight 1 -011001101010 violinist-pedagogues 1 -011001101010 Discloses 1 -011001101010 West-German-designed 1 -011001101010 Duddy 1 -011001101010 sour-beaked 1 -011001101010 Shirly 1 -011001101010 Hall-Abraham 1 -011001101010 1975-through-1979 1 -011001101010 Gefilte 1 -011001101010 Shakedown 1 -011001101010 HNG 1 -011001101010 130,546 1 -011001101010 Pranee 1 -011001101010 Bletchley 1 -011001101010 Kathe 1 -011001101010 Ganga 1 -011001101010 Samm-Art 1 -011001101010 Madalyn 1 -011001101010 Rudolff 1 -011001101010 Correlli 1 -011001101010 F.B. 1 -011001101010 Piggie 1 -011001101010 Non-Native 1 -011001101010 Belie 1 -011001101010 Moishe 1 -011001101010 427,528 1 -011001101010 stockbrokage 1 -011001101010 Would-Be 1 -011001101010 Bluebell-Altamont 1 -011001101010 30-yard 1 -011001101010 Mcleod 1 -011001101010 recapitulating 1 -011001101010 Binswanger 1 -011001101010 Extex 1 -011001101010 Bloise 1 -011001101010 Geewax 1 -011001101010 Ventile 1 -011001101010 Gung 1 -011001101010 Annesley 1 -011001101010 Yoel 1 -011001101010 Plapler 1 -011001101010 Morgan-advised 1 -011001101010 Contarini 1 -011001101010 three-station 1 -011001101010 470,100 1 -011001101010 Lyda-Herbert 1 -011001101010 727,150 1 -011001101010 379,800 1 -011001101010 625,500 1 -011001101010 D.S 1 -011001101010 7,840,585 1 -011001101010 Margart 1 -011001101010 Carita 1 -011001101010 honeycomb-like 1 -011001101010 20-foot-tall 1 -011001101010 Plumed 1 -011001101010 pre-Rose 1 -011001101010 150,500 1 -011001101010 207,900 1 -011001101010 Diamond/ 1 -011001101010 360-screen 1 -011001101010 Feidelia 1 -011001101010 Georgianna 1 -011001101010 pro-based 1 -011001101010 Steamer 1 -011001101010 Inkless 1 -011001101010 1,119,407 1 -011001101010 Mozart-Da 1 -011001101010 1,601,500 1 -011001101010 Etsuko 1 -011001101010 Cheesefoot 1 -011001101010 Silbury 1 -011001101010 tangoist 1 -011001101010 stock-sticking 1 -011001101010 rights-expanding 1 -011001101010 243,480 1 -011001101010 18-lawyer 1 -011001101010 6.5-acre 1 -011001101010 Faffner 1 -011001101010 already-endangered 1 -011001101010 89-yuan 1 -011001101010 Kellow 1 -011001101010 10,203-foot 1 -011001101010 Janardan 1 -011001101010 Erotic 1 -011001101010 4-X-2 1 -011001101010 Hermetic 1 -011001101010 Booby 1 -011001101010 Gowen 1 -011001101010 108-restaurant 1 -011001101010 Tangerine 1 -011001101010 306,301 1 -011001101010 352,400 1 -011001101010 Silberg 1 -011001101010 Erland 1 -011001101010 Hanne 1 -011001101010 MMG 1 -011001101010 Graystone 1 -011001101010 F.T. 1 -011001101010 Timmy 1 -011001101010 Sherley 1 -011001101010 10-Year 1 -011001101010 193,911 1 -011001101010 1,409,449 1 -011001101010 Lorene 1 -011001101010 multi-talented 1 -011001101010 Voluble 1 -011001101010 315-store 1 -011001101010 Depuis 1 -011001101010 511,958 1 -011001101010 soccer-mad 1 -011001101010 profanity-ridden 1 -011001101010 Francia 1 -011001101010 Auntie 1 -011001101010 Severna 1 -011001101010 19-building 1 -011001101010 Lovinger 1 -011001101010 UPTON 1 -011001101010 Ashbel 1 -011001101010 Demi 1 -011001101010 Meadowland 1 -011001101010 Messerschmitt-Bolkow 1 -011001101010 Goldenthal. 1 -011001101010 G.W.F. 1 -011001101010 Thm 1 -011001101010 WNT 1 -011001101010 Socialist-controlled 1 -011001101010 183,499 1 -011001101010 192,300 1 -011001101010 407,700 1 -011001101010 64,600 1 -011001101010 YU-16 1 -011001101010 Disque 1 -011001101010 Orphengesic 1 -011001101010 Abol 1 -011001101010 Americo 1 -011001101010 164,700 1 -011001101010 ev 1 -011001101010 S.A.F 1 -011001101010 1,100-seat 1 -011001101010 J.E.A. 1 -011001101010 Adu 1 -011001101010 6,760,531 1 -011001101010 Honigman 1 -011001101010 Beihai 1 -011001101010 Trompe 1 -011001101010 much-respected 1 -011001101010 Gramercy 1 -011001101010 then-86-year-old 1 -011001101010 Antihemophilic 1 -011001101010 Willian 1 -011001101010 UCLA-affiliated 1 -011001101010 BRENT 1 -011001101010 61-store 1 -011001101010 Miceli-Van 1 -011001101010 788,132 1 -011001101010 Daniel-Day 1 -011001101010 Hengeler 1 -011001101010 500-million-dollar 1 -011001101010 Outstretched 1 -011001101010 Ugni 1 -011001101010 Ex-Cub 1 -011001101010 Vespasian 1 -011001101010 toute 1 -011001101010 geniusan 1 -011001101010 206,017 1 -011001101010 Kilusang 1 -011001101010 J.J.G.M. 1 -011001101010 Gatfield 1 -011001101010 places-Griffin 1 -011001101010 1,758,500 1 -011001101010 R.W.B. 1 -011001101010 Abia 1 -011001101010 stockbrockers 1 -011001101010 Micol 1 -011001101010 Sin/Your 1 -011001101010 Parafon 1 -011001101010 Suso 1 -011001101010 Wooddrow 1 -011001101010 Apostolic 1 -011001101010 NBG 1 -011001101010 Betiana 1 -011001101010 Gunga 1 -011001101010 Kalyani 1 -011001101010 Sonnenschein 1 -011001101010 SL&P 1 -011001101010 Parched 1 -011001101010 Kemper-Murray 1 -011001101010 N.G. 1 -011001101010 Suli 1 -011001101010 C.O.G. 1 -011001101010 Jarden 1 -011001101010 NBA-Banca 1 -011001101010 Bebe 1 -011001101010 1,627,603 1 -011001101010 Stubby 1 -011001101010 Liechtenstein-incorporated 1 -011001101010 Butzel 1 -011001101010 MAI. 1 -011001101010 Kevah 1 -011001101010 blood-sport 1 -011001101010 464,375 1 -011001101010 Austrialia-based 1 -011001101010 secondplace 1 -011001101010 Seventeenth 1 -011001101010 Raleigh-Durham-Chapel 1 -011001101010 invert 1 -011001101010 Pastrami 1 -011001101010 119,900 1 -011001101010 A.J.F. 1 -011001101010 TuneUp 1 -011001101010 Nob 1 -011001101010 more-spontaneous 1 -011001101010 Twin-Six 1 -011001101010 Faberge-Elizabeth 1 -011001101010 Faberge/Elizabeth 1 -011001101010 2,791,800 1 -011001101010 73,470 1 -011001101010 Ramos-de 1 -011001101010 Westpheldt 1 -011001101010 BUCK 1 -011001101010 408,574 1 -011001101010 562,458 1 -011001101010 Oxon 1 -011001101010 Raheen 1 -011001101010 Baayork 1 -011001101010 Treptow 1 -011001101010 BeBe 1 -011001101010 then-husband 1 -011001101010 Parfumes 1 -011001101010 Connall 1 -011001101010 Essungo 1 -011001101010 Salinas-de 1 -011001101010 Rockefeller-Jay 1 -011001101010 Tendercare 1 -011001101010 Hsi 1 -011001101010 332,600 2 -011001101010 116,300 2 -011001101010 Seddon 2 -011001101010 Cora 2 -011001101010 Haffenreffer 2 -011001101010 M-S-R 2 -011001101010 400-bed 2 -011001101010 Numero 2 -011001101010 PASSIVE 2 -011001101010 Brotherly 2 -011001101010 Hieronymus 2 -011001101010 Lakenan 2 -011001101010 TOYO 2 -011001101010 pre-Super 2 -011001101010 Supersonic 2 -011001101010 Gelsey 2 -011001101010 Robie 2 -011001101010 Refugio 2 -011001101010 Elmyr 2 -011001101010 Vaguely 2 -011001101010 Ravin 2 -011001101010 Dolley 2 -011001101010 Borzoi 2 -011001101010 McKechnie 2 -011001101010 Garnar 2 -011001101010 204,600 2 -011001101010 2,597 2 -011001101010 Pearly 2 -011001101010 Nachum 2 -011001101010 i3 2 -011001101010 Daxing 2 -011001101010 Joakim 2 -011001101010 Eubie 2 -011001101010 Exclusionary 2 -011001101010 DRI/McGraw 2 -011001101010 Madang 2 -011001101010 Ranier 2 -011001101010 Tongsun 2 -011001101010 Quickfix 2 -011001101010 Brazilian-built 2 -011001101010 Tune-Up 2 -011001101010 Compleat 2 -011001101010 Bah 2 -011001101010 Corny 2 -011001101010 Mellert 2 -011001101010 Turnberry 2 -011001101010 Filthy 2 -011001101010 Sabrina 2 -011001101010 post-Gold 2 -011001101010 300-share 2 -011001101010 4,637 2 -011001101010 Theda 2 -011001101010 485,100 2 -011001101010 Kountry 2 -011001101010 Corinna 2 -011001101010 Wistar 2 -011001101010 Brother-in-law 2 -011001101010 Blaw 2 -011001101010 Aylmer 2 -011001101010 Optec 2 -011001101010 Hilltop 2 -011001101010 Waylon 2 -011001101010 Lior 2 -011001101010 Siaka 2 -011001101010 Firecracker 2 -011001101010 6-foot-9 2 -011001101010 Dunnellen 2 -011001101010 Maitre 2 -011001101010 1,543,000 2 -011001101010 Dorbantyl 2 -011001101010 4,616 2 -011001101010 Londell 2 -011001101010 Pension-Fund 2 -011001101010 Marvella 2 -011001101010 Ponzano 2 -011001101010 Dag 2 -011001101010 Cogent 2 -011001101010 Interstate-Johnson 2 -011001101010 Mamayev 2 -011001101010 Cleret 2 -011001101010 Selena 2 -011001101010 Four-year-old 2 -011001101010 4,636 2 -011001101010 Vermeer 2 -011001101010 Nomura-Wasserstein 2 -011001101010 McCutchen 2 -011001101010 Holtzmann 2 -011001101010 J.Z. 2 -011001101010 Remak 2 -011001101010 1,391 2 -011001101010 Kedleston 2 -011001101010 30-Year 2 -011001101010 Ellerbe 2 -011001101010 Swinging 2 -011001101010 decisioning 2 -011001101010 Maxie 2 -011001101010 Pelligrino 2 -011001101010 Pizzeria 2 -011001101010 101,295 2 -011001101010 Zelma 2 -011001101010 d-BASE 2 -011001101010 Cincinatti 2 -011001101010 Yangtzekiang 2 -011001101010 Realwest 2 -011001101010 Checkmate 2 -011001101010 white-blond 2 -011001101010 Kinsale 2 -011001101010 Meahl 2 -011001101010 Zeb 2 -011001101010 BN 2 -011001101010 1980-1984 2 -011001101010 Yabba 2 -011001101010 Frugal 2 -011001101010 SCTV 2 -011001101010 Keshia 2 -011001101010 unabsorbed 2 -011001101010 T.O. 2 -011001101010 stepbrothers 2 -011001101010 Affective 2 -011001101010 aus 2 -011001101010 Trudeliese 2 -011001101010 Arshad 2 -011001101010 Norddeutsche 2 -011001101010 Fess 2 -011001101010 Stackig 2 -011001101010 designer/director 2 -011001101010 Jenswold 2 -011001101010 Moise 2 -011001101010 W&J 2 -011001101010 Trafford 2 -011001101010 Richest 2 -011001101010 Hillegond 2 -011001101010 Omero 2 -011001101010 Edoardo 2 -011001101010 Poky 2 -011001101010 Cracked 2 -011001101010 Luba 2 -011001101010 Ethlyn 2 -011001101010 Bezit 2 -011001101010 polymer-based 2 -011001101010 trompe 2 -011001101010 Isang 2 -011001101010 Strayed 2 -011001101010 Convertine 2 -011001101010 Allyson 2 -011001101010 Rosebud 3 -011001101010 Bhagwan 3 -011001101010 Bram 3 -011001101010 Mackin 3 -011001101010 Pt 3 -011001101010 Aqua 3 -011001101010 Pasha 3 -011001101010 Transcendental 3 -011001101010 Hessische 3 -011001101010 Kyra 3 -011001101010 Cobo 3 -011001101010 Nien 3 -011001101010 72,600 3 -011001101010 Broussard 3 -011001101010 A.I. 3 -011001101010 350-acre 3 -011001101010 Hallie 3 -011001101010 Tsuyoshi 3 -011001101010 Dien 3 -011001101010 Hildy 3 -011001101010 M&I 3 -011001101010 Hyper 3 -011001101010 Katarina 3 -011001101010 HBM/ 3 -011001101010 Z-Seven 3 -011001101010 Fulmar 3 -011001101010 Needle 3 -011001101010 64,500 3 -011001101010 Lambeau 3 -011001101010 Kimi 3 -011001101010 four-lawyer 3 -011001101010 Aldona 3 -011001101010 Marilynne 3 -011001101010 Minetta 3 -011001101010 Forstman 3 -011001101010 Jeppesen 3 -011001101010 Juvey 3 -011001101010 Roselle 3 -011001101010 Bascom 3 -011001101010 Morningside 3 -011001101010 Halfdan 3 -011001101010 171-outlet 3 -011001101010 Jacksonville-based 3 -011001101010 LaVerne 3 -011001101010 left-hander 3 -011001101010 Mignon 3 -011001101010 Courcoux 3 -011001101010 Phinehas 3 -011001101010 Tam 3 -011001101010 Lottye 3 -011001101010 Isadora 3 -011001101010 Hwalin 3 -011001101010 DBase 3 -011001101010 Alka 3 -011001101010 Manetti 3 -011001101010 Kavalier 3 -011001101010 Kier 3 -011001101010 Temperence 3 -011001101010 JM 3 -011001101010 Fairmount 3 -011001101010 Clonbrony 3 -011001101010 Combating 3 -011001101010 Bought 3 -011001101010 Wa 3 -011001101010 X.Y. 3 -011001101010 NN 3 -011001101010 Travel-Holiday 3 -011001101010 221B 3 -011001101010 Ellie 3 -011001101010 Clevelander 3 -011001101010 Classy 3 -011001101010 Capel-Cure 3 -011001101010 Lazare 3 -011001101010 Cowley 3 -011001101010 Gorgeous 3 -011001101010 Santee 3 -011001101010 polyposis 3 -011001101010 Currer 3 -011001101010 Immanuel 4 -011001101010 DiFranza 4 -011001101010 Nemesio 4 -011001101010 Annetta 4 -011001101010 MacNab 4 -011001101010 Transmanche 4 -011001101010 Owatonna 4 -011001101010 Shwedagon 4 -011001101010 Warner/Chappell 4 -011001101010 Bennes 4 -011001101010 libeling 4 -011001101010 P.M. 4 -011001101010 Summitville 4 -011001101010 Agi 4 -011001101010 Mat 4 -011001101010 Beber 4 -011001101010 Florham 4 -011001101010 Pocos 4 -011001101010 Milgrim 4 -011001101010 Frito 4 -011001101010 JP 4 -011001101010 FULL 4 -011001101010 2445 4 -011001101010 O.C. 4 -011001101010 Sinar 4 -011001101010 Ivern 4 -011001101010 Tohono 4 -011001101010 Wyandotte 4 -011001101010 Basler 4 -011001101010 Martinair 4 -011001101010 Angelus 4 -011001101010 then-owner 4 -011001101010 Charing 4 -011001101010 Arleigh 4 -011001101010 O.G. 4 -011001101010 unseeded 4 -011001101010 Whit 4 -011001101010 Corriere 4 -011001101010 CTC 4 -011001101010 Spud 4 -011001101010 Eloise 4 -011001101010 Amagansett 4 -011001101010 Euretta 4 -011001101010 Tiberius 4 -011001101010 Baums 4 -011001101010 Tinley 4 -011001101010 FTSE 4 -011001101010 Panmure 4 -011001101010 Artkraft 4 -011001101010 Teofilo 4 -011001101010 Delos 4 -011001101010 Pin 4 -011001101010 Alta-Dena 4 -011001101010 J.M.W. 4 -011001101010 Mime 5 -011001101010 DMC 5 -011001101010 Polo/Ralph 5 -011001101010 Meuse 5 -011001101010 Wilt 5 -011001101010 Loye 5 -011001101010 E&J 5 -011001101010 Spitting 5 -011001101010 Gretel 5 -011001101010 Elks 5 -011001101010 Lanford 5 -011001101010 Oakeley 5 -011001101010 MARK 5 -011001101010 J.P 5 -011001101010 Bredero 5 -011001101010 Ebbets 5 -011001101010 Takoma 5 -011001101010 58th 5 -011001101010 Sinead 5 -011001101010 Mt 5 -011001101010 WB 5 -011001101010 Moonshine 5 -011001101010 Cabrillo 5 -011001101010 Mabel 5 -011001101010 Rosy 5 -011001101010 Mahtar 5 -011001101010 Cus 5 -011001101010 Childe 6 -011001101010 Ludmilla 6 -011001101010 W.E.B. 6 -011001101010 Daffy 6 -011001101010 Wet 6 -011001101010 Skoal 6 -011001101010 Nordisk 6 -011001101010 Metalworking 6 -011001101010 Sissy 6 -011001101010 Ueno 6 -011001101010 Huckleberry 6 -011001101010 Teatro 6 -011001101010 Inmate 6 -011001101010 Justino 6 -011001101010 6-foot-10 6 -011001101010 TRON 6 -011001101010 Watney 6 -011001101010 Bil 6 -011001101010 Lafer 6 -011001101010 T.A. 6 -011001101010 218-214 6 -011001101010 Sonya 6 -011001101010 Wounded 6 -011001101010 Fraudulent 6 -011001101010 Harpo 6 -011001101010 Bubba 6 -011001101010 Messerschmitt-Boelkow 7 -011001101010 polonium 7 -011001101010 Putney 7 -011001101010 Gracie 7 -011001101010 Tech-Ops 7 -011001101010 Ishikawajima 7 -011001101010 T.C. 7 -011001101010 Poppe 7 -011001101010 Vanilla 7 -011001101010 Interstate/Johnson 7 -011001101010 KKR. 7 -011001101010 Demov 7 -011001101010 Angie 7 -011001101010 S&H 7 -011001101010 Capitoline 7 -011001101010 Parkland 7 -011001101010 Tubby 7 -011001101010 Tammany 7 -011001101010 S.A.F. 7 -011001101010 D.L. 7 -011001101010 Jelly 7 -011001101010 Asbury 7 -011001101010 Dashiell 7 -011001101010 deCordova 7 -011001101010 Ansel 7 -011001101010 Crushed 7 -011001101010 Kronish 7 -011001101010 LaRue 7 -011001101010 Grands 7 -011001101010 Westward 8 -011001101010 Hue 8 -011001101010 Cornelia 8 -011001101010 Dot 8 -011001101010 Kee 8 -011001101010 Geers 8 -011001101010 Zeltzer 8 -011001101010 Sybil 8 -011001101010 Vanden 8 -011001101010 Normick 8 -011001101010 Shufro 8 -011001101010 Mudge 8 -011001101010 long-leading 8 -011001101010 F.D. 8 -011001101010 Galena 8 -011001101010 Scenic 8 -011001101010 Winzer 8 -011001101010 Work/Family 8 -011001101010 Hammacher 8 -011001101010 Tse 8 -011001101010 Floral 9 -011001101010 Newbury 9 -011001101010 MRCA 9 -011001101010 Mira 9 -011001101010 H.G. 9 -011001101010 S.W. 9 -011001101010 Jannotta 9 -011001101010 Faneuil 9 -011001101010 Easco 9 -011001101010 Dechert 9 -011001101010 Megan 9 -011001101010 Arbuthnot 9 -011001101010 Elmwood 9 -011001101010 Vertical 9 -011001101010 Brasserie 9 -011001101010 Seve 9 -011001101010 Scarlett 10 -011001101010 Bent 10 -011001101010 Loch 10 -011001101010 Habsburg 10 -011001101010 Iwaki 10 -011001101010 L.H. 10 -011001101010 Granny 10 -011001101010 Nicola 10 -011001101010 Beatrix 11 -011001101010 Jaclyn 11 -011001101010 Newhard 11 -011001101010 G.C. 11 -011001101010 Hoffman-La 11 -011001101010 Vingmed 11 -011001101010 Jaco 11 -011001101010 Climbing 11 -011001101010 Candlestick 11 -011001101010 Adel 11 -011001101010 Marques 11 -011001101010 Nugan 12 -011001101010 Mitzi 12 -011001101010 Helga 12 -011001101010 Steuben 12 -011001101010 Benihana 12 -011001101010 Deaf 12 -011001101010 Doral 12 -011001101010 Trusthouse 12 -011001101010 Joni 13 -011001101010 S.E. 13 -011001101010 BDO 13 -011001101010 Ringo 13 -011001101010 Ty 13 -011001101010 Fiesta 13 -011001101010 Balsa 13 -011001101010 Dar 13 -011001101010 Indy 13 -011001101010 Dinah 13 -011001101010 NASDAQ 14 -011001101010 Lap 14 -011001101010 Samantha 14 -011001101010 Milberg 14 -011001101010 Comiskey 14 -011001101010 C.S. 15 -011001101010 Cricket 15 -011001101010 Bloody 15 -011001101010 Amelia 15 -011001101010 Hub 15 -011001101010 Spruce 15 -011001101010 Glacier 15 -011001101010 Treat 15 -011001101010 Horatio 16 -011001101010 Oglebay 16 -011001101010 Flash 16 -011001101010 Meg 16 -011001101010 Hulk 16 -011001101010 Favia 16 -011001101010 Pannell 16 -011001101010 el 17 -011001101010 Cy 17 -011001101010 Bal 17 -011001101010 P.S. 17 -011001101010 Vetco 17 -011001101010 Bryn 18 -011001101010 Rossin 18 -011001101010 W.T. 18 -011001101010 B.B. 18 -011001101010 Strawberry 18 -011001101010 Bing 18 -011001101010 Muriel 18 -011001101010 SoundView 18 -011001101010 Artie 18 -011001101010 Kemmons 18 -011001101010 Pu 18 -011001101010 Downers 18 -011001101010 Tootsie 20 -011001101010 Mighty 20 -011001101010 D.F. 20 -011001101010 ES 20 -011001101010 Chez 20 -011001101010 Huck 20 -011001101010 Czar 20 -011001101010 Tuneup 20 -011001101010 Nissho 21 -011001101010 Grandma 22 -011001101010 Curtice 22 -011001101010 Bingo 22 -011001101010 E.A. 22 -011001101010 Designer 22 -011001101010 E.W. 22 -011001101010 Arsenio 24 -011001101010 Tecumseh 24 -011001101010 Groucho 24 -011001101010 Davy 24 -011001101010 dBase 24 -011001101010 F.O. 24 -011001101010 Endicott 25 -011001101010 Hua 25 -011001101010 Yosemite 25 -011001101010 Balis 25 -011001101010 T.S. 25 -011001101010 A.T. 26 -011001101010 Den 26 -011001101010 Windham 26 -011001101010 Canoga 26 -011001101010 Bandar 27 -011001101010 Mama 28 -011001101010 Storm 28 -011001101010 Marco 28 -011001101010 S.I. 28 -011001101010 Brean 29 -011001101010 L.L. 29 -011001101010 Oral 30 -011001101010 Karla 30 -011001101010 FCB/Leber 30 -011001101010 Bergdorf 30 -011001101010 Becton 30 -011001101010 L.E. 32 -011001101010 Westdeutsche 32 -011001101010 Tweedy 32 -011001101010 Joachim 32 -011001101010 G.H. 32 -011001101010 Terrible 32 -011001101010 H.R. 32 -011001101010 Proskauer 33 -011001101010 Cool 34 -011001101010 Parfums 35 -011001101010 Bailard 35 -011001101010 H.H. 36 -011001101010 Gertrude 36 -011001101010 Suite 36 -011001101010 Steffi 37 -011001101010 Kleiner 37 -011001101010 A.P. 38 -011001101010 Brush 40 -011001101010 Scali 40 -011001101010 Dust 41 -011001101010 J.N. 41 -011001101010 Estee 42 -011001101010 Revere 43 -011001101010 Hiram 44 -011001101010 NMS 44 -011001101010 LVMH 44 -011001101010 Amazing 44 -011001101010 A.D. 44 -011001101010 Sass 45 -011001101010 Der 45 -011001101010 Blunt 45 -011001101010 H&R 46 -011001101010 Chestnut 48 -011001101010 R.D. 48 -011001101010 Hewlett 48 -011001101010 Melrose 48 -011001101010 Dain 49 -011001101010 Polly 50 -011001101010 Wrigley 51 -011001101010 Booz 52 -011001101010 Sherritt 52 -011001101010 J.M. 52 -011001101010 Bon 53 -011001101010 Britannia 54 -011001101010 Deer 54 -011001101010 Wake 55 -011001101010 Riggs 56 -011001101010 Overland 58 -011001101010 IDD 58 -011001101010 Horace 60 -011001101010 Ethan 61 -011001101010 Dinner 62 -011001101010 L.B. 62 -011001101010 Neiman 62 -011001101010 Puget 66 -011001101010 Kyodo 67 -011001101010 Marble 68 -011001101010 Chapel 68 -011001101010 Beacon 69 -011001101010 dBASE 69 -011001101010 Battery 70 -011001101010 Paine 70 -011001101010 A.L. 71 -011001101010 Sutter 71 -011001101010 Battelle 74 -011001101010 Princess 75 -011001101010 Greenwell 76 -011001101010 Citrus 76 -011001101010 Bowling 76 -011001101010 Eberstadt 78 -011001101010 H.J. 83 -011001101010 Asahi 96 -011001101010 Maclean 98 -011001101010 Oakley 101 -011001101010 Trammell 101 -011001101010 Cherry 101 -011001101010 DDB 102 -011001101010 Wachtell 105 -011001101010 Amerada 106 -011001101010 Carling 108 -011001101010 Dr 128 -011001101010 Menlo 129 -011001101010 Legg 129 -011001101010 McLeod 136 -011001101010 R.P. 137 -011001101010 Asea 141 -011001101010 Liz 142 -011001101010 Rolling 145 -011001101010 Crocker 162 -011001101010 Taco 165 -011001101010 Broken 166 -011001101010 Yellow 174 -011001101010 Daisy 197 -011001101010 Cardinal 216 -011001101010 Johns 232 -011001101010 Touche 240 -011001101010 Abu 265 -011001101010 Carnegie 268 -011001101010 Jardine 271 -011001101010 A.G. 280 -011001101010 Kenner 304 -011001101010 Brent 304 -011001101010 Sara 308 -011001101010 Anchor 320 -011001101010 L.F. 328 -011001101010 Baby 359 -011001101010 Southwestern 363 -011001101010 Forstmann 387 -011001101010 Hoffmann-La 388 -011001101010 Corning 410 -011001101010 Daily 534 -011001101010 Century 541 -011001101010 Fortune 580 -011001101010 J.P. 632 -011001101010 Burger 646 -011001101010 Old 680 -011001101010 Super 684 -011001101010 Dayton 923 -011001101010 Blue 986 -011001101010 Capitol 1027 -011001101010 S&P 3255 -011001101010 Nasdaq 2512 -011001101011 Zakum 1 -011001101011 wallless 1 -011001101011 English-dominated 1 -011001101011 worst-off 1 -011001101011 self-assertive 1 -011001101011 record-priced 1 -011001101011 super-tanned 1 -011001101011 U.C. 1 -011001101011 1.7057 1 -011001101011 397330 1 -011001101011 music-minded 1 -011001101011 Soviet-West 1 -011001101011 Atlantic-Middle 1 -011001101011 Three-Union 1 -011001101011 Sudeten 1 -011001101011 Kansas-based 1 -011001101011 T.G. 1 -011001101011 Galeota 1 -011001101011 Shoe-West 1 -011001101011 disarmament-prone 1 -011001101011 Cubie 1 -011001101011 Pierre-August 1 -011001101011 non-West 1 -011001101011 loss-battered 1 -011001101011 275,145 1 -011001101011 Bambi-eyed 1 -011001101011 80-ish 1 -011001101011 then-West 1 -011001101011 154-mile 1 -011001101011 craft-oriented 1 -011001101011 off-course 1 -011001101011 farmer-supported 1 -011001101011 MSHA. 1 -011001101011 Gujarat-style 1 -011001101011 oil-dependant 1 -011001101011 51-yearold 1 -011001101011 98-bed 1 -011001101011 now-failed 1 -011001101011 liquor-wary 1 -011001101011 union-fighting 1 -011001101011 etc.the 1 -011001101011 325-mile 1 -011001101011 reunifed 1 -011001101011 CITIC. 1 -011001101011 3.00-West 1 -011001101011 3.39-acre 1 -011001101011 Wesk 1 -011001101011 East-East 1 -011001101011 rough-and-ready-sounding 1 -011001101011 quagmired 1 -011001101011 debt-wary 1 -011001101011 once-vigorous 1 -011001101011 Oil-Gas 1 -011001101011 Wilda 1 -011001101011 Nepean 1 -011001101011 forest-covered 2 -011001101011 Seiscom 2 -011001101011 pleasure-seeking 2 -011001101011 French-West 2 -011001101011 Alexandrovich 2 -011001101011 Pulpit 2 -011001101011 3,595,729 2 -011001101011 Nine-Mile 2 -011001101011 Ronan 3 -011001101011 U.S.-West 3 -011001101011 Quonset 3 -011001101011 Mosquito 5 -011001101011 Sundial 5 -011001101011 Mekong 5 -011001101011 Goodby 6 -011001101011 Lambeth 7 -011001101011 Throat 7 -011001101011 Connecting 7 -011001101011 Sparrows 10 -011001101011 Weimar 10 -011001101011 Isaiah 12 -011001101011 Volta 13 -011001101011 Easterners 21 -011001101011 Notre 52 -011001101011 Floating 75 -011001101011 Ivory 211 -011001101011 East 4271 -011001101011 West 15233 -0110011011000 Aggie 1 -0110011011000 Courants 1 -0110011011000 Pharos 1 -0110011011000 1259 1 -0110011011000 Tribune-Democrat 1 -0110011011000 Lisner 1 -0110011011000 Tamoril 1 -0110011011000 SeaGate 1 -0110011011000 Ahlia-Gulf 1 -0110011011000 NASA-Air 1 -0110011011000 Consumer-Electronics 1 -0110011011000 Mostek 1 -0110011011000 Sauvigny 1 -0110011011000 Graywolf 1 -0110011011000 Uplands 1 -0110011011000 packaging-film 1 -0110011011000 Willowcreek 1 -0110011011000 Gesierich 1 -0110011011000 education-school 1 -0110011011000 fescue 1 -0110011011000 zillionairess 1 -0110011011000 Afram 1 -0110011011000 Sailcloth 1 -0110011011000 Instrumnents 1 -0110011011000 Sulpicio 1 -0110011011000 Press-Tribune 1 -0110011011000 birdhunters 1 -0110011011000 asparaga 1 -0110011011000 anatomist-biologist 1 -0110011011000 Wallboard 1 -0110011011000 1886-1985 1 -0110011011000 CF-7000 1 -0110011011000 Prescriptive 1 -0110011011000 anti-Fannie 1 -0110011011000 Kodansha 1 -0110011011000 83709 1 -0110011011000 Dooyang 1 -0110011011000 Grant-Thornton 1 -0110011011000 A-P-A 1 -0110011011000 Tugwell 1 -0110011011000 Quorum 1 -0110011011000 Island/Warner 1 -0110011011000 Goddard-Riverside 1 -0110011011000 tire-plant 1 -0110011011000 Jossey-Bass 1 -0110011011000 Locating 1 -0110011011000 woodswoman 1 -0110011011000 Demarcation 1 -0110011011000 Guimard 1 -0110011011000 Ginne 1 -0110011011000 ASHP 1 -0110011011000 Nina/Lillie 1 -0110011011000 grapefruit-flavored 1 -0110011011000 Hlatshwayo 1 -0110011011000 Sweeties 1 -0110011011000 Transportation/Pace 1 -0110011011000 M/G 1 -0110011011000 Ivaran 1 -0110011011000 AMACOM 1 -0110011011000 Temp 1 -0110011011000 EuroBerlin 1 -0110011011000 Rockwell-Air 1 -0110011011000 77027 1 -0110011011000 C&I 1 -0110011011000 American-European 1 -0110011011000 niobate 1 -0110011011000 53935 1 -0110011011000 Muni-Insured 1 -0110011011000 45701 1 -0110011011000 79022 1 -0110011011000 Akebono 1 -0110011011000 accent. 1 -0110011011000 Motorcade 1 -0110011011000 COSTRUZIONI 1 -0110011011000 Omec 1 -0110011011000 Sud 1 -0110011011000 tub-thumper 1 -0110011011000 cific 1 -0110011011000 musuem 1 -0110011011000 Olefins 1 -0110011011000 Geratetechnik 1 -0110011011000 Ora 1 -0110011011000 oilfields. 1 -0110011011000 1519 1 -0110011011000 honky-tonker 1 -0110011011000 Bluesmen 1 -0110011011000 Hellions 1 -0110011011000 SNKC 1 -0110011011000 Freshpack 1 -0110011011000 CF-6000/7000/8000 1 -0110011011000 Gastronomical 1 -0110011011000 Elizar 1 -0110011011000 Oder-Neisse 2 -0110011011000 Canceling 2 -0110011011000 Datafleet 2 -0110011011000 meat-judging 2 -0110011011000 syriaca 2 -0110011011000 Jacquet 2 -0110011011000 Alkyls 2 -0110011011000 National-Shawmut 2 -0110011011000 Bridey 2 -0110011011000 Optimist 2 -0110011011000 Galliker 2 -0110011011000 Atlantic-North 2 -0110011011000 Norcem 2 -0110011011000 Army-Air 2 -0110011011000 Bellamah 2 -0110011011000 Wescar 3 -0110011011000 A&I 3 -0110011011000 Marten 3 -0110011011000 4,800-member 3 -0110011011000 American-National 3 -0110011011000 Bounce 3 -0110011011000 Ellerman 3 -0110011011000 Durand 3 -0110011011000 Mertle 3 -0110011011000 NAL 3 -0110011011000 Hashanah 3 -0110011011000 Hashana 4 -0110011011000 D2 4 -0110011011000 Cranberry 4 -0110011011000 Bankhead 4 -0110011011000 Traveller 4 -0110011011000 Bendix/King 5 -0110011011000 Lobstermen 5 -0110011011000 Starcross 6 -0110011011000 Liberated 6 -0110011011000 88s 6 -0110011011000 Villard 7 -0110011011000 Tubular 7 -0110011011000 Maersk 8 -0110011011000 Finish 8 -0110011011000 Deployment 8 -0110011011000 Multimarket 9 -0110011011000 Cunard 9 -0110011011000 Courant 11 -0110011011000 Wellness 11 -0110011011000 Grave 13 -0110011011000 Balanced 16 -0110011011000 Chorus 18 -0110011011000 Defence 19 -0110011011000 Fuse 19 -0110011011000 Harbors 21 -0110011011000 Punch 26 -0110011011000 Rangers 47 -0110011011000 Beef 67 -0110011011000 Sallie 90 -0110011011000 Soo 90 -0110011011000 A&M 93 -0110011011000 Viking 95 -0110011011000 Mattress 101 -0110011011000 Cruise 106 -0110011011000 Task 149 -0110011011000 Pipe 150 -0110011011000 Truck 167 -0110011011000 Intermediate 328 -0110011011000 Ginnie 333 -0110011011000 Value 405 -0110011011000 Instruments 637 -0110011011000 Freddie 701 -0110011011000 Air 7857 -0110011011000 Fannie 777 -0110011011001 GMX 1 -0110011011001 Gallop 1 -0110011011001 Dataset 1 -0110011011001 54,000-member 1 -0110011011001 Creedmore 1 -0110011011001 Lichtstein 1 -0110011011001 Nation-wide 1 -0110011011001 Dade-Miami 1 -0110011011001 HAC.A. 1 -0110011011001 Foreign-Debt 1 -0110011011001 Nullarbor 1 -0110011011001 Already-burdened 1 -0110011011001 319-member 1 -0110011011001 28-team 1 -0110011011001 Tallest 1 -0110011011001 Excerpta 1 -0110011011001 Idn 1 -0110011011001 Market-Based 1 -0110011011001 Syria-based 1 -0110011011001 Abducts 1 -0110011011001 100E 1 -0110011011001 blackoriented 1 -0110011011001 Financial-A 1 -0110011011001 flag-salute 1 -0110011011001 Sav-On 1 -0110011011001 Guttehofnungshuette 1 -0110011011001 TRG 1 -0110011011001 Owner-Operators 1 -0110011011001 Daichi 1 -0110011011001 Tangshan 1 -0110011011001 Techno 1 -0110011011001 170,432 1 -0110011011001 Audiographic 1 -0110011011001 TUPPERWARE 1 -0110011011001 Dartmouth-Hitchcock 1 -0110011011001 322-member 1 -0110011011001 Macomson 1 -0110011011001 Bayard-Condict 1 -0110011011001 -Federal 1 -0110011011001 Inyangas 1 -0110011011001 Branding 1 -0110011011001 Sheridane 1 -0110011011001 300,000-student 1 -0110011011001 128,500 1 -0110011011001 Lying-In 1 -0110011011001 tal 1 -0110011011001 starship 1 -0110011011001 since-fired 1 -0110011011001 black-swathed 1 -0110011011001 Moro 1 -0110011011001 County-USC 1 -0110011011001 Balasore 1 -0110011011001 Brooklyn-Battery 1 -0110011011001 High-Pressure 1 -0110011011001 fiveday 1 -0110011011001 ISA 1 -0110011011001 cobblestoned 1 -0110011011001 Ductile 1 -0110011011001 Archeological 1 -0110011011001 V.A. 1 -0110011011001 15-stock 1 -0110011011001 Presby 1 -0110011011001 Herftighte 1 -0110011011001 Least-Cost 1 -0110011011001 shot-and-a-beer 1 -0110011011001 400-screen 1 -0110011011001 Chanin 1 -0110011011001 707-room 1 -0110011011001 Aryt 1 -0110011011001 Whitnon 1 -0110011011001 Crozer-Chester 1 -0110011011001 Vampco 1 -0110011011001 Tredegar 1 -0110011011001 Ingenious 1 -0110011011001 234,285 1 -0110011011001 Tell-Tale 1 -0110011011001 Anti 1 -0110011011001 +131.7 1 -0110011011001 now-dismembered 1 -0110011011001 A/S/M/ 1 -0110011011001 6,248,751 1 -0110011011001 Air-safety 1 -0110011011001 McLachlen 1 -0110011011001 GoodTimes 1 -0110011011001 Packard-sponsored 1 -0110011011001 Cavity-Rim 1 -0110011011001 Lucky/American 1 -0110011011001 smash-hit 1 -0110011011001 Chadbourn-Gotham 1 -0110011011001 Relm 1 -0110011011001 Kroller-Muller 1 -0110011011001 Duarte-dominated 1 -0110011011001 Schmiede 1 -0110011011001 budget-starved 1 -0110011011001 234th 1 -0110011011001 Starwood 1 -0110011011001 Bellerive 1 -0110011011001 Albimar 1 -0110011011001 Duofold 1 -0110011011001 Lucky-American 1 -0110011011001 500-showroom 1 -0110011011001 Batelle 1 -0110011011001 Embasssy 1 -0110011011001 Motoring 1 -0110011011001 Peshawar-based 1 -0110011011001 Higher-court 1 -0110011011001 Fairyland 1 -0110011011001 +113.2 1 -0110011011001 Targetted 1 -0110011011001 Stash 1 -0110011011001 Knee-jerk 1 -0110011011001 Coal-burning 1 -0110011011001 S&L-owned 1 -0110011011001 monarchist 1 -0110011011001 Arrawani 1 -0110011011001 Biosphere 1 -0110011011001 Robins-American 1 -0110011011001 Dai-Ichi/Nippon 1 -0110011011001 SEPTA 1 -0110011011001 Iraq-based 1 -0110011011001 Absaroka-Beartooth 1 -0110011011001 Lenfest 1 -0110011011001 Investor-owned 1 -0110011011001 Downstate 2 -0110011011001 Hospital-Cornell 2 -0110011011001 Tripod-Laing 2 -0110011011001 Fidelty 2 -0110011011001 Pennaco 2 -0110011011001 CHEUNG 2 -0110011011001 500,000-member 2 -0110011011001 Parafrance 2 -0110011011001 Pasttime 2 -0110011011001 Barbaralee 2 -0110011011001 Reciprocal 2 -0110011011001 C&F 2 -0110011011001 Nondiscrimination 2 -0110011011001 Explosion-Proof 2 -0110011011001 Allstar 3 -0110011011001 Mohave 3 -0110011011001 Lucky-Alpha 3 -0110011011001 opposition-dominated 3 -0110011011001 Suche 3 -0110011011001 Mercantile-Safe 3 -0110011011001 NHD 3 -0110011011001 Contort 3 -0110011011001 Harborview 3 -0110011011001 Budgetel 3 -0110011011001 299-seat 4 -0110011011001 Holistic 4 -0110011011001 Anshan 4 -0110011011001 Choral 4 -0110011011001 Celgar 4 -0110011011001 IDG 4 -0110011011001 Freshman 4 -0110011011001 Healing 5 -0110011011001 Conscription 5 -0110011011001 CIVIL 6 -0110011011001 Sardine 7 -0110011011001 Cedars-Sinai 8 -0110011011001 Dulwich 8 -0110011011001 Distilled 8 -0110011011001 HONG 9 -0110011011001 Pearle 11 -0110011011001 Lamston 12 -0110011011001 Auditing 14 -0110011011001 Dauphin 14 -0110011011001 Talman 17 -0110011011001 Phi 18 -0110011011001 24-nation 19 -0110011011001 Riot 20 -0110011011001 Recording 27 -0110011011001 Residence 29 -0110011011001 Cents 30 -0110011011001 Federal 13082 -0110011011001 Nuclear 554 -0110011011010 Street-minded 1 -0110011011010 Boon 1 -0110011011010 Street-related 1 -0110011011010 Arnault-controlled 1 -0110011011010 Street-bashing 1 -0110011011010 Street-wide 1 -0110011011010 Sreet 1 -0110011011010 Steet 1 -0110011011010 ner 1 -0110011011010 Kerkorian-owned 1 -0110011011010 Okeene 2 -0110011011010 Street-area 3 -0110011011010 Street. 3 -0110011011010 Gyi 13 -0110011011010 Streeter 19 -0110011011010 Hurdman 59 -0110011011010 Street 9983 -0110011011010 Streeters 90 -01100110110110 26-man 1 -01100110110110 Five-Nations 1 -01100110110110 Britiah 1 -01100110110110 L.F 1 -01100110110110 22,985 1 -01100110110110 Feasible 1 -01100110110110 Junk-Mail 1 -01100110110110 9,226,155 1 -01100110110110 Reg. 1 -01100110110110 Damps 1 -01100110110110 FASEB 1 -01100110110110 Incoherent 1 -01100110110110 Lycurgus 1 -01100110110110 dollar-Swiss 1 -01100110110110 801,047 1 -01100110110110 pre-Civil 1 -01100110110110 4,524,820 1 -01100110110110 Anti-Japanese 1 -01100110110110 Viraf 1 -01100110110110 Loan-Loss 1 -01100110110110 quasiprivate 1 -01100110110110 News-Washington 1 -01100110110110 once-hard-bitten 1 -01100110110110 Grahamy 1 -01100110110110 2,478,619 1 -01100110110110 Recombivax 1 -01100110110110 169,000-square-foot 1 -01100110110110 bed-making 1 -01100110110110 Negotiated 1 -01100110110110 468,750 1 -01100110110110 Woodward-Watergate-Washington 1 -01100110110110 Post-World 1 -01100110110110 Sudamerikanische 1 -01100110110110 mark-French 1 -01100110110110 Real-Time 1 -01100110110110 more-elaborate 1 -01100110110110 peerless-passing 1 -01100110110110 1,956,799 1 -01100110110110 Recombizax 1 -01100110110110 Russo/Japanese 1 -01100110110110 Waif 1 -01100110110110 2,980,000 1 -01100110110110 World-import 1 -01100110110110 43-note 1 -01100110110110 Biafran 1 -01100110110110 1,898,399 1 -01100110110110 52.46 1 -01100110110110 marble-top 1 -01100110110110 Alfed 1 -01100110110110 Physicians/Mutual 1 -01100110110110 league-eading 1 -01100110110110 Blithe 1 -01100110110110 open-to-all 1 -01100110110110 57.14 1 -01100110110110 Mets-Pittsburgh 1 -01100110110110 creme-filled 1 -01100110110110 180,000-circulation 1 -01100110110110 301,729 1 -01100110110110 Farm-Debt 1 -01100110110110 like-ranged 1 -01100110110110 pounds. 1 -01100110110110 agenciesnot 1 -01100110110110 81,402,111 1 -01100110110110 World-related 1 -01100110110110 Klukwan 1 -01100110110110 433,745 1 -01100110110110 Brymon 1 -01100110110110 Liliputian 1 -01100110110110 Clogged 1 -01100110110110 male-forming 1 -01100110110110 Addas 1 -01100110110110 361,514 1 -01100110110110 common-and 1 -01100110110110 2,399,344 1 -01100110110110 BIGO. 1 -01100110110110 Shoeshine 1 -01100110110110 laicized 1 -01100110110110 Russo-Turkish 1 -01100110110110 Adris 1 -01100110110110 Praga 1 -01100110110110 Indo-Pakistani 1 -01100110110110 Weightlifting 1 -01100110110110 Tirat 1 -01100110110110 12,718 1 -01100110110110 125-room 1 -01100110110110 Superstate 1 -01100110110110 Deutschemark-Swiss 1 -01100110110110 Airways-British 1 -01100110110110 lesssevere 1 -01100110110110 Carry-On 1 -01100110110110 pennant-contending 1 -01100110110110 2247 1 -01100110110110 100-Yard 1 -01100110110110 Easthampton 1 -01100110110110 10,581,000 1 -01100110110110 3,105.3 1 -01100110110110 Bryan-controlled 1 -01100110110110 Glimmer 1 -01100110110110 All-Nippon 1 -01100110110110 2,283,625 1 -01100110110110 Beasty 1 -01100110110110 1,741,100 1 -01100110110110 fishpond 1 -01100110110110 World-manufactured 1 -01100110110110 4,032,564 1 -01100110110110 World-type 1 -01100110110110 Svcs 1 -01100110110110 Andie 1 -01100110110110 News/Washington 1 -01100110110110 1-alpha-hydroxalated 1 -01100110110110 Shoveling 1 -01100110110110 **** 1 -01100110110110 165,717,000 1 -01100110110110 RICOed 1 -01100110110110 Ponciano 1 -01100110110110 Ledra 1 -01100110110110 then-Boston 1 -01100110110110 Scanticon 1 -01100110110110 yen/Swiss 1 -01100110110110 Elway-engineered 1 -01100110110110 Cockroach 1 -01100110110110 too-reluctant 1 -01100110110110 1,388,781 1 -01100110110110 old-champ 1 -01100110110110 Haynesville 1 -01100110110110 wrist-powered 1 -01100110110110 Bucharest-Tel 1 -01100110110110 Colgan 1 -01100110110110 S.A.-owned 1 -01100110110110 1986-champion 1 -01100110110110 Polled 2 -01100110110110 HP3000 2 -01100110110110 influenzae 2 -01100110110110 Mommie 2 -01100110110110 Contintental 2 -01100110110110 Teouma 2 -01100110110110 Galley 2 -01100110110110 Cut-rate 2 -01100110110110 1,717 2 -01100110110110 Nittany 2 -01100110110110 90,600 2 -01100110110110 reverse-yen 2 -01100110110110 879,286 2 -01100110110110 305,814 2 -01100110110110 Cubicle 2 -01100110110110 FirstRepublic 2 -01100110110110 non-attainment 2 -01100110110110 Bodybuilding 2 -01100110110110 Fund-World 2 -01100110110110 FG 2 -01100110110110 Bhundu 2 -01100110110110 220,606 2 -01100110110110 Bobbsey 2 -01100110110110 Boeselager 2 -01100110110110 Drovers 2 -01100110110110 Radiator 2 -01100110110110 Uncivil 2 -01100110110110 BFK 2 -01100110110110 306,601 3 -01100110110110 Kona 3 -01100110110110 Bathroom 3 -01100110110110 Scottsboro 3 -01100110110110 Scrantonian 3 -01100110110110 Gummi 3 -01100110110110 ABC/Washington 3 -01100110110110 Drugstore 3 -01100110110110 Beanfield 3 -01100110110110 mark-Swiss 3 -01100110110110 Galvanized 3 -01100110110110 falsetto 3 -01100110110110 5,679,411 3 -01100110110110 200-300 3 -01100110110110 Fajita 3 -01100110110110 Lonrho-owned 4 -01100110110110 Franco-Prussian 4 -01100110110110 Puritanism 4 -01100110110110 Socialist-leaning 4 -01100110110110 167,230 4 -01100110110110 Tempelhof 4 -01100110110110 Russo-Japanese 4 -01100110110110 Rede 4 -01100110110110 Eveleth 4 -01100110110110 Insect 5 -01100110110110 Privileged 5 -01100110110110 zirconia 5 -01100110110110 Ubu 5 -01100110110110 Tanker 5 -01100110110110 Latter-day 6 -01100110110110 Spectacular 6 -01100110110110 Peloponnesian 6 -01100110110110 Spanish-American 7 -01100110110110 post-Civil 7 -01100110110110 '77 7 -01100110110110 Coronation 8 -01100110110110 Beastie 8 -01100110110110 Bloodsucking 8 -01100110110110 Sperm 9 -01100110110110 pre-World 11 -01100110110110 Stallion 12 -01100110110110 752,297 13 -01100110110110 Eiffel 18 -01100110110110 DHL 19 -01100110110110 Karate 19 -01100110110110 Six-Day 21 -01100110110110 Breeders 22 -01100110110110 Falklands 24 -01100110110110 PGA 25 -01100110110110 Stereo 28 -01100110110110 Pep 32 -01100110110110 Oprah 46 -01100110110110 Crocodile 51 -01100110110110 Bumble 55 -01100110110110 post-World 88 -01100110110110 Cold 147 -01100110110110 Civil 624 -01100110110110 World 7224 -01100110110110 flown 748 -01100110110111 BBC. 1 -01100110110111 Ad-Pac 1 -01100110110111 Insider-Trading 1 -01100110110111 leaseable 1 -01100110110111 cheese-topped 1 -01100110110111 McConnell-related 1 -01100110110111 Price-Fix 1 -01100110110111 no-thrills 1 -01100110110111 Snyder-Evans 1 -01100110110111 Asbestos-laden 1 -01100110110111 busted-appliance 1 -01100110110111 employee-damage 1 -01100110110111 over-reserving 1 -01100110110111 sport-caught 1 -01100110110111 Rombergian 1 -01100110110111 12-by-18-foot 1 -01100110110111 Wilmington/New 1 -01100110110111 6,963-yard 1 -01100110110111 Daintree 1 -01100110110111 cathedral-sized 1 -01100110110111 thin-gauged 1 -01100110110111 string-quartet 1 -01100110110111 Blocked 1 -01100110110111 1950-53 1 -01100110110111 Kenbak 1 -01100110110111 death-and-suffering 1 -01100110110111 530-acre 1 -01100110110111 TeleCaption 1 -01100110110111 metal-laden 1 -01100110110111 IranIraq 1 -01100110110111 hedge-hog 1 -01100110110111 1,250-megawatt 1 -01100110110111 fire-engine-red 1 -01100110110111 A-Part 1 -01100110110111 250-ton 1 -01100110110111 83-degree 1 -01100110110111 snow-packed 1 -01100110110111 29,160-pound 1 -01100110110111 satellite-age 1 -01100110110111 built. 1 -01100110110111 833,000-kilowatt 1 -01100110110111 Lacygne 1 -01100110110111 Tarator 1 -01100110110111 1,160-megawatt 1 -01100110110111 troubled-plagued 1 -01100110110111 Belot 1 -01100110110111 hyperinflated 1 -01100110110111 two-foot-deep 1 -01100110110111 270,000-square-foot 1 -01100110110111 town-center 1 -01100110110111 Nzoia 1 -01100110110111 Lenten 1 -01100110110111 sludge-fertilized 1 -01100110110111 pseudo-Savonnerie 1 -01100110110111 Chocolait 1 -01100110110111 Ludendorff 1 -01100110110111 often-symptom-free 1 -01100110110111 Elastic 1 -01100110110111 freed-up 1 -01100110110111 extra-lean 1 -01100110110111 overevaluate 1 -01100110110111 anti-navy 1 -01100110110111 pro-golf 1 -01100110110111 UHF. 1 -01100110110111 900,000-kilowatt 1 -01100110110111 bright-green 1 -01100110110111 floating-interest-rate 1 -01100110110111 fightingest 1 -01100110110111 kike 1 -01100110110111 ballerina-like 1 -01100110110111 1958-61 1 -01100110110111 windmill-filled 1 -01100110110111 sun-speckled 1 -01100110110111 coffee-colored 1 -01100110110111 shorefront 1 -01100110110111 Gracchan 1 -01100110110111 Reemergent 1 -01100110110111 MP. 1 -01100110110111 post-concession 1 -01100110110111 Priazzo 1 -01100110110111 single-asset 1 -01100110110111 S-70A9 1 -01100110110111 par-72 1 -01100110110111 Wawel 1 -01100110110111 107-degree 1 -01100110110111 Amoun 1 -01100110110111 16,863-foot 1 -01100110110111 rain-triggered 1 -01100110110111 weird-sounding 1 -01100110110111 1975-1976 1 -01100110110111 21,000-plus 1 -01100110110111 JUMPED 1 -01100110110111 Ebenhausen 1 -01100110110111 nicotine-based 1 -01100110110111 salt-based 1 -01100110110111 Freeman-Goldman 1 -01100110110111 20-mile-long 1 -01100110110111 winter-grown 1 -01100110110111 Star-Speeder 1 -01100110110111 enzyme-replacement 1 -01100110110111 12-by-20-foot 1 -01100110110111 government-employee 1 -01100110110111 182-acre 1 -01100110110111 jazz-inspired 1 -01100110110111 1,300-acre 1 -01100110110111 peaceful-looking 1 -01100110110111 toy. 1 -01100110110111 no-longer-retired 1 -01100110110111 U.S-based 1 -01100110110111 wind-carved 1 -01100110110111 least-talked-about 1 -01100110110111 386/20E 1 -01100110110111 sugarless 1 -01100110110111 farther-out 1 -01100110110111 Bogi 1 -01100110110111 Daimi 1 -01100110110111 7,318 1 -01100110110111 Pir 1 -01100110110111 Paniro 1 -01100110110111 Lunningham 1 -01100110110111 hyper-Romantic 1 -01100110110111 BOTTLED 1 -01100110110111 Russo-Finnish 1 -01100110110111 rightleft 1 -01100110110111 public-our 1 -01100110110111 166-unit 1 -01100110110111 administrator. 1 -01100110110111 collector. 1 -01100110110111 225stock 1 -01100110110111 even-less-defensible 1 -01100110110111 Sissinghurst 1 -01100110110111 large-case 1 -01100110110111 AKT 1 -01100110110111 non-Persian 1 -01100110110111 Snurfer 1 -01100110110111 Koch-Trump 1 -01100110110111 zeta 1 -01100110110111 big-company-dominated 1 -01100110110111 atextual 1 -01100110110111 Federated-Campeau-Macy 1 -01100110110111 catty-cornered 1 -01100110110111 pre-bankruptcy 1 -01100110110111 BQ 1 -01100110110111 Secluded 1 -01100110110111 cream-of-soot 1 -01100110110111 Romine 1 -01100110110111 distribution-center 1 -01100110110111 feb. 1 -01100110110111 Friday-Passover-Easter 1 -01100110110111 Much-loved 1 -01100110110111 Spec. 1 -01100110110111 Mondale-McGovern 1 -01100110110111 717.2 1 -01100110110111 pork-based 1 -01100110110111 McRib 1 -01100110110111 Delamuraz 1 -01100110110111 terrapin 1 -01100110110111 dead-grass 1 -01100110110111 6,677 1 -01100110110111 litchi 1 -01100110110111 semispherical 1 -01100110110111 anti-Mapplethorpe 1 -01100110110111 Riv 1 -01100110110111 Galveston-Hou 1 -01100110110111 Entp 1 -01100110110111 Invtrs 1 -01100110110111 ShareBase 1 -01100110110111 hurricane-prone 1 -01100110110111 Sysstems 1 -01100110110111 now-required 1 -01100110110111 WBF. 1 -01100110110111 multi-district 1 -01100110110111 Iranian-Iraqi 1 -01100110110111 Telenorma 1 -01100110110111 Luken-Whittaker 1 -01100110110111 AC&R/ 1 -01100110110111 Sparcstation 1 -01100110110111 reiterative 1 -01100110110111 then-moribund 1 -01100110110111 TXPOC 1 -01100110110111 Perot-EDS 1 -01100110110111 subscriber. 1 -01100110110111 Bathsheba 1 -01100110110111 zu 1 -01100110110111 543.9 1 -01100110110111 671.6 1 -01100110110111 b5.06 1 -01100110110111 mardi 1 -01100110110111 longevous 1 -01100110110111 post-April 1 -01100110110111 1,943-mile 1 -01100110110111 extra-sharp 1 -01100110110111 Rabies. 1 -01100110110111 Place. 1 -01100110110111 Hiss-Chambers 1 -01100110110111 Meatheads. 1 -01100110110111 dun-colored 1 -01100110110111 super-hot 1 -01100110110111 pre-OPEC 1 -01100110110111 barrelshaped 1 -01100110110111 MXCL 1 -01100110110111 1929-1967 1 -01100110110111 RS/20 1 -01100110110111 ES/12 1 -01100110110111 40-passenger 1 -01100110110111 dissensions 1 -01100110110111 pewless 1 -01100110110111 556.3 1 -01100110110111 pigment-making 1 -01100110110111 actively-traded 1 -01100110110111 highest-income 2 -01100110110111 Perisan 2 -01100110110111 Partisans 2 -01100110110111 crispier 2 -01100110110111 1,595,800 2 -01100110110111 Biotheraptc 2 -01100110110111 four-company 2 -01100110110111 Allowances 2 -01100110110111 PIER 2 -01100110110111 Bousquet 2 -01100110110111 Reprint 2 -01100110110111 Paw 2 -01100110110111 sight-threatening 2 -01100110110111 baguette 2 -01100110110111 immunodoptive 2 -01100110110111 dining-car 2 -01100110110111 Wellgreen 2 -01100110110111 la-la 2 -01100110110111 glycoprotein 2 -01100110110111 Sherco 2 -01100110110111 SupersPort 2 -01100110110111 SparcStation 2 -01100110110111 Vostok 2 -01100110110111 95-lawyer 2 -01100110110111 Gissi 2 -01100110110111 Oilwell 2 -01100110110111 spliced-in 2 -01100110110111 Criticality 2 -01100110110111 Debit/Credit 2 -01100110110111 Chuo 2 -01100110110111 PS/ 2 -01100110110111 999.7 2 -01100110110111 Wildcats 2 -01100110110111 1,145 2 -01100110110111 Pru 2 -01100110110111 glass. 2 -01100110110111 car-warranty 2 -01100110110111 ale-bread 2 -01100110110111 25-store 2 -01100110110111 var 2 -01100110110111 korp. 2 -01100110110111 flathead 2 -01100110110111 Feldkirchen 2 -01100110110111 Gilgenberg 2 -01100110110111 Astaett 2 -01100110110111 bubble-bath 2 -01100110110111 Repozo 2 -01100110110111 DEC. 2 -01100110110111 Mannie 2 -01100110110111 bottom-most 2 -01100110110111 Goldberg-Bear 2 -01100110110111 Cardi-Omega 3 -01100110110111 Cobey-Bear 3 -01100110110111 Sublime 3 -01100110110111 Cookware 3 -01100110110111 Symphonies 3 -01100110110111 Veracruz 3 -01100110110111 Farm-to-Market 3 -01100110110111 Amo 3 -01100110110111 non-citrus 3 -01100110110111 mega-agency 3 -01100110110111 Herstmonceux 3 -01100110110111 government-affiliated 3 -01100110110111 225-issue 3 -01100110110111 750-megawatt 3 -01100110110111 Beet 4 -01100110110111 hollandaise 4 -01100110110111 cyanide-laced 4 -01100110110111 Bodie 4 -01100110110111 spina 4 -01100110110111 Paragraph 4 -01100110110111 never-never 5 -01100110110111 Europeras 5 -01100110110111 Framework 5 -01100110110111 November-December 5 -01100110110111 NO. 5 -01100110110111 Sismik 5 -01100110110111 no. 5 -01100110110111 Skylab 5 -01100110110111 Grecian 5 -01100110110111 librettist 6 -01100110110111 photodynamic 6 -01100110110111 superpremium 6 -01100110110111 Telstar 7 -01100110110111 Antenne 8 -01100110110111 Fallacy 9 -01100110110111 Springerville 10 -01100110110111 Tet 11 -01100110110111 Colstrip 14 -01100110110111 Limerick 17 -01100110110111 RU 18 -01100110110111 Fab 20 -01100110110111 Models 20 -01100110110111 Opus 21 -01100110110111 Figure 22 -01100110110111 Samsonite 23 -01100110110111 Expo 24 -01100110110111 Site 24 -01100110110111 FT-SE 29 -01100110110111 Iraq-Iran 29 -01100110110111 Formula 31 -01100110110111 Atchison 31 -01100110110111 Millstone 36 -01100110110111 Number 44 -01100110110111 Route 47 -01100110110111 Mager 48 -01100110110111 Braidwood 54 -01100110110111 Dash 57 -01100110110111 Clause 58 -01100110110111 Nos. 60 -01100110110111 Release 87 -01100110110111 Article 101 -01100110110111 Hang 131 -01100110110111 Fermi 150 -01100110110111 Pier 155 -01100110110111 Model 172 -01100110110111 bellwether 206 -01100110110111 Iran-Iraq 265 -01100110110111 Unit 307 -01100110110111 Section 403 -01100110110111 benchmark 1008 -01100110110111 Persian 1400 -01100110110111 No. 2457 -01100110110111 bidding 2204 -0110011011100 Lox 1 -0110011011100 Marsin 1 -0110011011100 226,625 1 -0110011011100 324,836 1 -0110011011100 Economics-Mathematical 1 -0110011011100 Bulldog 1 -0110011011100 Vancover 1 -0110011011100 Cankor 1 -0110011011100 Sanyo-Kokusaku 1 -0110011011100 Telltale 1 -0110011011100 Parkvale 1 -0110011011100 America/Central 1 -0110011011100 Impede 1 -0110011011100 Spenco 1 -0110011011100 WPMI 1 -0110011011100 Long-Distance 1 -0110011011100 Saraha 1 -0110011011100 CSX-Sea 1 -0110011011100 Brouillard 1 -0110011011100 Sea-based 1 -0110011011100 Handy-Andy 1 -0110011011100 Awerbuch 1 -0110011011100 Winchmore 1 -0110011011100 Pennview 1 -0110011011100 La-La 1 -0110011011100 Aderet 1 -0110011011100 A&P-owned 1 -0110011011100 Gaseta 1 -0110011011100 Shanachie 1 -0110011011100 232,050 1 -0110011011100 Energy-Efficient 1 -0110011011100 Cross-Harbour 1 -0110011011100 HI-NET 1 -0110011011100 Do-it-Yourself 1 -0110011011100 Yorkridge-Calvert 1 -0110011011100 Wynwood 1 -0110011011100 Wallkill 1 -0110011011100 Med-Care 1 -0110011011100 Heart-in-Hand 1 -0110011011100 format-extended-definition 1 -0110011011100 VS&A 1 -0110011011100 Ngan 1 -0110011011100 0.476 1 -0110011011100 PETA. 1 -0110011011100 Meatty 1 -0110011011100 Carolina-Virginia 1 -0110011011100 undistressed 1 -0110011011100 6,277 1 -0110011011100 Briercroft 1 -0110011011100 Akzo-American 1 -0110011011100 Esalen 1 -0110011011100 Brill-Cor 1 -0110011011100 Sumito 1 -0110011011100 Syber 1 -0110011011100 Gloray 1 -0110011011100 Stax 1 -0110011011100 elseMosaic 1 -0110011011100 Zbig 1 -0110011011100 Travisano/DiGiacomo 1 -0110011011100 Jaslow 1 -0110011011100 Teollisuuden 1 -0110011011100 DRV 1 -0110011011100 Producto 1 -0110011011100 Scalable 1 -0110011011100 RENSSELAER 1 -0110011011100 ChemExec 1 -0110011011100 Dilatush 1 -0110011011100 Wabush 1 -0110011011100 Shoudou 1 -0110011011100 S-2 1 -0110011011100 Sellersville 1 -0110011011100 S.A.F.E. 1 -0110011011100 Inswell 1 -0110011011100 equity-options 1 -0110011011100 Honfirst 1 -0110011011100 Hill-Russell 1 -0110011011100 Rousell 1 -0110011011100 MegEcon 1 -0110011011100 Premonitions 1 -0110011011100 Coastel 1 -0110011011100 Allarco 1 -0110011011100 Capital-Gazette 1 -0110011011100 Stein-Roe 1 -0110011011100 Gilbratar 1 -0110011011100 Kolff 1 -0110011011100 Digitial 1 -0110011011100 Thilmany 1 -0110011011100 MacMillian 1 -0110011011100 Adambank 1 -0110011011100 Koa 2 -0110011011100 FCA/American 2 -0110011011100 Suiza 2 -0110011011100 Hagley 2 -0110011011100 Wozchod 2 -0110011011100 Cariboo 2 -0110011011100 GeoEnvironmental 2 -0110011011100 Momi 2 -0110011011100 Homicide 2 -0110011011100 eight-passenger 2 -0110011011100 Litho 2 -0110011011100 extended-definition 2 -0110011011100 Refractory 2 -0110011011100 Akiva 2 -0110011011100 Woodfield 2 -0110011011100 African-Jewish 2 -0110011011100 Kron 2 -0110011011100 CIBA 2 -0110011011100 Behavioral 2 -0110011011100 Isotec 2 -0110011011100 Butovo 2 -0110011011100 Alief 2 -0110011011100 Marigold 2 -0110011011100 Inter-County 2 -0110011011100 Coonley 2 -0110011011100 Pocahontas 2 -0110011011100 62-acre 2 -0110011011100 horseshoe-shaped 2 -0110011011100 Flinders 2 -0110011011100 Westmarc 2 -0110011011100 Courtlemagne 2 -0110011011100 Angio 2 -0110011011100 Cease 2 -0110011011100 MidFed 2 -0110011011100 Bacob 2 -0110011011100 Yoruba 2 -0110011011100 Retrospect 2 -0110011011100 Coaxial 2 -0110011011100 Northside 2 -0110011011100 Aquarian 2 -0110011011100 Infas 2 -0110011011100 Lacos 2 -0110011011100 silly-sounding 2 -0110011011100 Multi-Channel 2 -0110011011100 Catalog-Showroom 3 -0110011011100 Lupa 3 -0110011011100 Kalgurli 3 -0110011011100 Enstar 3 -0110011011100 Dai-Tokyo 3 -0110011011100 America/Asia 3 -0110011011100 Abundant 3 -0110011011100 X-Rated 3 -0110011011100 Utrecht 3 -0110011011100 ASCAP 3 -0110011011100 Hillside 3 -0110011011100 Investex 3 -0110011011100 Admiralty 3 -0110011011100 Deena 3 -0110011011100 Mesabi 3 -0110011011100 Pont-Aven 3 -0110011011100 other-worldly 3 -0110011011100 Tasaki 3 -0110011011100 Supplementary 3 -0110011011100 Bondex 3 -0110011011100 Scitech 3 -0110011011100 Adambanc 3 -0110011011100 PDM 3 -0110011011100 Columbia-Presbyterian 3 -0110011011100 J.B.N. 3 -0110011011100 Norseman 4 -0110011011100 T2 4 -0110011011100 Renewable 4 -0110011011100 Durr-Fillauer 4 -0110011011100 Karchmer 4 -0110011011100 American-based 4 -0110011011100 Colour 4 -0110011011100 CPS 4 -0110011011100 Homestate 4 -0110011011100 Keyboard 4 -0110011011100 Okinawan 5 -0110011011100 NEWHALL 5 -0110011011100 al-Azhar 5 -0110011011100 Wacker 5 -0110011011100 Seacoast 5 -0110011011100 Bruning 5 -0110011011100 Onondaga 5 -0110011011100 Hanil 6 -0110011011100 Muscular 6 -0110011011100 Chaoyang 6 -0110011011100 Kosher 6 -0110011011100 IRISH 7 -0110011011100 Snomax 7 -0110011011100 Artistic 8 -0110011011100 Post-Newsweek 8 -0110011011100 TropWorld 8 -0110011011100 Dao 8 -0110011011100 Centerbanc 8 -0110011011100 Lakeshore 9 -0110011011100 Centrust 9 -0110011011100 Rodeway 9 -0110011011100 Freymiller 9 -0110011011100 Territorial 9 -0110011011100 Sevin-Rosen 9 -0110011011100 Columbia/Embassy 9 -0110011011100 Ironton 9 -0110011011100 UC 9 -0110011011100 GV 10 -0110011011100 Shoreline 11 -0110011011100 Promised 12 -0110011011100 Rensselaer 12 -0110011011100 Glorious 13 -0110011011100 Distinguished 14 -0110011011100 Chiquita 15 -0110011011100 Severn 16 -0110011011100 IG 17 -0110011011100 Adirondack 18 -0110011011100 MSU 19 -0110011011100 Brandywine 20 -0110011011100 Kwik 21 -0110011011100 Pohang 22 -0110011011100 Overpriced 27 -0110011011100 Lisp 27 -0110011011100 Sacred 27 -0110011011100 Perpetual 30 -0110011011100 Casual 35 -0110011011100 N' 36 -0110011011100 Complete 38 -0110011011100 All-American 41 -0110011011100 Neighborhood 42 -0110011011100 Dime 45 -0110011011100 Anglo-American 47 -0110011011100 Tender 49 -0110011011100 Appalachian 55 -0110011011100 NYU 66 -0110011011100 Competitive 72 -0110011011100 Bowery 87 -0110011011100 Claremont 93 -0110011011100 Motion 94 -0110011011100 Coldwell 98 -0110011011100 Cultural 130 -0110011011100 Scandinavian 194 -0110011011100 American 32204 -0110011011100 Employee 196 -0110011011101 Anti-Scientific 1 -0110011011101 2,877,313 1 -0110011011101 385,400 1 -0110011011101 552,884 1 -0110011011101 Mills-Anderson 1 -0110011011101 730,500 1 -0110011011101 CAISSE 1 -0110011011101 16th-19th 1 -0110011011101 829,900 1 -0110011011101 1,098,400 1 -0110011011101 dealers. 1 -0110011011101 224,007 1 -0110011011101 Licensee 1 -0110011011101 137,912 1 -0110011011101 1,183,533 1 -0110011011101 460,861 1 -0110011011101 110,100 1 -0110011011101 381,900 1 -0110011011101 1,343,900 1 -0110011011101 1,059,700 1 -0110011011101 575,859 1 -0110011011101 Midco 1 -0110011011101 416,668 1 -0110011011101 2,711,000 1 -0110011011101 251,400 1 -0110011011101 574,500 1 -0110011011101 Info-Systems 1 -0110011011101 121,518 1 -0110011011101 1,628,300 1 -0110011011101 599,200 1 -0110011011101 2,139,587 1 -0110011011101 Revives 1 -0110011011101 U.S.-Backed 1 -0110011011101 294,100 1 -0110011011101 .595 1 -0110011011101 Early-Retirement 1 -0110011011101 Wicked 1 -0110011011101 Zeal 1 -0110011011101 GeoMiliTech 1 -0110011011101 One-Minute 1 -0110011011101 975,017 1 -0110011011101 217,877 1 -0110011011101 389,114 1 -0110011011101 Norumbega 1 -0110011011101 mashed-up 1 -0110011011101 622,700 1 -0110011011101 220,657 1 -0110011011101 Islamic-oriented 1 -0110011011101 2,335,542 1 -0110011011101 331,500 1 -0110011011101 1,827,734 1 -0110011011101 349,300 1 -0110011011101 863,017 1 -0110011011101 588,931 1 -0110011011101 492,100 1 -0110011011101 ML/EQ 1 -0110011011101 2,068,600 1 -0110011011101 109,200 1 -0110011011101 1,288,000 1 -0110011011101 Alters 1 -0110011011101 UTS 1 -0110011011101 796,100 1 -0110011011101 284,300 1 -0110011011101 CPA/Administrative 1 -0110011011101 2,068,950 1 -0110011011101 1,050,600 1 -0110011011101 EFFOA 1 -0110011011101 VIPC 1 -0110011011101 BMY-Wheeled 1 -0110011011101 Amoco-Amoco 1 -0110011011101 FXC 1 -0110011011101 Big-Bank 1 -0110011011101 CATV. 1 -0110011011101 774,610 1 -0110011011101 96,400 1 -0110011011101 1,258,023 1 -0110011011101 327,450 1 -0110011011101 Distillerie 1 -0110011011101 468,600 1 -0110011011101 350,300 1 -0110011011101 476,057 1 -0110011011101 SaveWay 1 -0110011011101 pan-fried 1 -0110011011101 Novi 1 -0110011011101 Stuns 1 -0110011011101 Health-Record 1 -0110011011101 675,921 1 -0110011011101 1,143,900 1 -0110011011101 326,700 1 -0110011011101 1,134,192 1 -0110011011101 1,553,800 1 -0110011011101 1,236,000 1 -0110011011101 987,700 1 -0110011011101 8-Week 1 -0110011011101 All-Burma 1 -0110011011101 Storyville 1 -0110011011101 1,740,695 1 -0110011011101 193,979 1 -0110011011101 Jong-Ho 1 -0110011011101 688,900 1 -0110011011101 12,000-member 1 -0110011011101 World-style 1 -0110011011101 1,483,350 1 -0110011011101 869,500 1 -0110011011101 Nakhimovskiy 1 -0110011011101 300,300 1 -0110011011101 Bluest 1 -0110011011101 BACKGROUND 1 -0110011011101 585,596 1 -0110011011101 985,700 1 -0110011011101 Tegeler 1 -0110011011101 writer-controlled 1 -0110011011101 Career-Family 1 -0110011011101 Off-Airport 1 -0110011011101 Out-of-the-Way 1 -0110011011101 Darkest 1 -0110011011101 Swans 1 -0110011011101 1,124,300 1 -0110011011101 1,062,300 1 -0110011011101 worker-hungry 1 -0110011011101 1,186,066 1 -0110011011101 SKULLpture 1 -0110011011101 416,700 1 -0110011011101 Acid-Rain 1 -0110011011101 Saiyida 1 -0110011011101 304,900 1 -0110011011101 381,600 1 -0110011011101 55,010 1 -0110011011101 Harrisburg-based 1 -0110011011101 hydroelectric-power-rich 1 -0110011011101 PRO. 1 -0110011011101 2.7272 1 -0110011011101 fruit-laden 1 -0110011011101 Fleet/ 1 -0110011011101 144,750 1 -0110011011101 157,500 1 -0110011011101 THT. 1 -0110011011101 Dead-End 1 -0110011011101 CMX. 1 -0110011011101 puff-chested 1 -0110011011101 export-hungry 1 -0110011011101 Proyecto 1 -0110011011101 324,900 1 -0110011011101 Kexim 1 -0110011011101 KDB 1 -0110011011101 760,368 1 -0110011011101 258,591 1 -0110011011101 1,204,862 1 -0110011011101 Vari 1 -0110011011101 2,648,385 1 -0110011011101 Text 1 -0110011011101 734,800 1 -0110011011101 992,700 1 -0110011011101 1,554,600 1 -0110011011101 goofy-faced 1 -0110011011101 XTRA. 1 -0110011011101 293,191 1 -0110011011101 Niuta 1 -0110011011101 3,705,312 1 -0110011011101 Millmaster 1 -0110011011101 CLIMBING 1 -0110011011101 569,400 1 -0110011011101 381,050 1 -0110011011101 Avertina 1 -0110011011101 Wintrop 1 -0110011011101 Lighthearted 1 -0110011011101 437-room 1 -0110011011101 SINGLE 1 -0110011011101 773,200 1 -0110011011101 Dilettante 1 -0110011011101 Haroldus 1 -0110011011101 1,565,900 1 -0110011011101 6,408,100 1 -0110011011101 474,800 1 -0110011011101 231,700 1 -0110011011101 303,057 1 -0110011011101 787,718 1 -0110011011101 312,260 1 -0110011011101 1,233,177 1 -0110011011101 451,391 1 -0110011011101 satellite-beamed 1 -0110011011101 Emeryville-based 1 -0110011011101 653,600 1 -0110011011101 469,017 1 -0110011011101 Less-Costly 1 -0110011011101 Oncological 1 -0110011011101 Bartered 1 -0110011011101 Pisan 1 -0110011011101 1,709,885 1 -0110011011101 Nonprescription 1 -0110011011101 Femininist 1 -0110011011101 93,418 1 -0110011011101 339,491 1 -0110011011101 326,500 1 -0110011011101 646,959 1 -0110011011101 Reaffirms 1 -0110011011101 636,246 1 -0110011011101 255,124 1 -0110011011101 3,192,600 1 -0110011011101 Aristo 1 -0110011011101 Hated 1 -0110011011101 1,410,184 1 -0110011011101 105,525 1 -0110011011101 BHC. 1 -0110011011101 Sperone 1 -0110011011101 1,934,200 1 -0110011011101 110th 1 -0110011011101 NATCA. 1 -0110011011101 Genteel 1 -0110011011101 420,500 1 -0110011011101 2,108,608 1 -0110011011101 Tele-consumer 1 -0110011011101 Nephews 1 -0110011011101 670,017 1 -0110011011101 18,525 1 -0110011011101 1,930,608 1 -0110011011101 Aphid 1 -0110011011101 High-Stakes 1 -0110011011101 676,255 1 -0110011011101 Missoni 1 -0110011011101 1,085,186 1 -0110011011101 European-Australia-Far 1 -0110011011101 1,225,925 1 -0110011011101 600,100 1 -0110011011101 '77-'79 1 -0110011011101 Thracian 1 -0110011011101 Gaslamp 1 -0110011011101 1,119,059 1 -0110011011101 996,200 1 -0110011011101 EEEE 1 -0110011011101 2,532,240 1 -0110011011101 Educationally 1 -0110011011101 257,700 1 -0110011011101 White-Collar 1 -0110011011101 Pharmaceutic 1 -0110011011101 Stress-Less 1 -0110011011101 2,690,853 1 -0110011011101 107,100 1 -0110011011101 442,095 1 -0110011011101 1,704,650 1 -0110011011101 VLI. 1 -0110011011101 Two-year-old 1 -0110011011101 Esoteric 1 -0110011011101 307,880 1 -0110011011101 1,904,462 1 -0110011011101 Marxist-governed 1 -0110011011101 529,550 1 -0110011011101 Troy-Mich.-based 1 -0110011011101 Rustic 1 -0110011011101 124,350 1 -0110011011101 AAAS. 1 -0110011011101 2,848,258 1 -0110011011101 2,406,000 1 -0110011011101 all-temperature 1 -0110011011101 Post-It 1 -0110011011101 681,800 1 -0110011011101 Threshhold 1 -0110011011101 118,485 1 -0110011011101 Fastar-Financial 1 -0110011011101 9,328,358 1 -0110011011101 Sugar-growing 1 -0110011011101 4,974,312 1 -0110011011101 Favourite 1 -0110011011101 Unappreciative 1 -0110011011101 4,675,812 1 -0110011011101 decolonialized 1 -0110011011101 Queensbridge 1 -0110011011101 169,888 1 -0110011011101 Eklips 1 -0110011011101 Post-Impressionist 1 -0110011011101 1,445,700 1 -0110011011101 157,300 1 -0110011011101 375,200 1 -0110011011101 Olivetti-Canon 1 -0110011011101 Closed-Books 1 -0110011011101 GE-owned 1 -0110011011101 390,400 1 -0110011011101 437,425 1 -0110011011101 Extraterritorial 1 -0110011011101 238,400 1 -0110011011101 49,960 1 -0110011011101 Fyodorov 1 -0110011011101 Machined 1 -0110011011101 10,355,000 1 -0110011011101 Easy-Bake 1 -0110011011101 853,859 1 -0110011011101 238,008 1 -0110011011101 Kralj 1 -0110011011101 Vice-style 1 -0110011011101 1,223,000 1 -0110011011101 4,025,612 1 -0110011011101 Nu-Car 1 -0110011011101 Oxfam-World 1 -0110011011101 5,057,300 1 -0110011011101 Kerfott 1 -0110011011101 Koryo 1 -0110011011101 Vietnamese-occupied 1 -0110011011101 Fluffier 1 -0110011011101 2,385,238 1 -0110011011101 Non-Recurring 1 -0110011011101 CCC-plus 1 -0110011011101 Inter-Campus 1 -0110011011101 Anti-Abortionists 1 -0110011011101 Safest 1 -0110011011101 catlike 1 -0110011011101 sorrowing 1 -0110011011101 IU. 1 -0110011011101 West-style 1 -0110011011101 Not-for-Profit 1 -0110011011101 AIDS-Related 1 -0110011011101 Nuclear-Power 1 -0110011011101 56-floor 1 -0110011011101 Choke 1 -0110011011101 Windward 1 -0110011011101 726,800 1 -0110011011101 Once-Hot 1 -0110011011101 Sui 1 -0110011011101 Conciliatory 1 -0110011011101 1,058,100 1 -0110011011101 Neoliberal 1 -0110011011101 124,750 1 -0110011011101 Prefab 1 -0110011011101 View-based 1 -0110011011101 Sylvanian 1 -0110011011101 non-collective 1 -0110011011101 once-bankrupt 1 -0110011011101 Twix 1 -0110011011101 World-Class 1 -0110011011101 Poise 1 -0110011011101 Convergencia 1 -0110011011101 9,863,762 1 -0110011011101 1,152,750 1 -0110011011101 392,750 1 -0110011011101 Nearsighted 1 -0110011011101 672,862 1 -0110011011101 ever-consolidating 1 -0110011011101 2-Member 1 -0110011011101 Cantabile 1 -0110011011101 Doggie 1 -0110011011101 Rotational 1 -0110011011101 four-branch 1 -0110011011101 Anti-Establishment 1 -0110011011101 Infantile 1 -0110011011101 Air-Traffic 1 -0110011011101 0.8772 1 -0110011011101 Submerged 1 -0110011011101 Flex-fund 1 -0110011011101 Uncover 1 -0110011011101 E-Minor 1 -0110011011101 top-volume 1 -0110011011101 July. 1 -0110011011101 just-restructured 1 -0110011011101 Flowery 1 -0110011011101 1,401,500 1 -0110011011101 Loan-Default 1 -0110011011101 Blanton-Webster 1 -0110011011101 16th-20th 1 -0110011011101 20-factory 1 -0110011011101 1,720,010 1 -0110011011101 Southwest-based 1 -0110011011101 200,600 1 -0110011011101 ex-New 1 -0110011011101 Moveable 1 -0110011011101 6,421,666 1 -0110011011101 286,666 1 -0110011011101 Waltham-based 1 -0110011011101 Home-Based 1 -0110011011101 Preppie 1 -0110011011101 protease 1 -0110011011101 504,706 1 -0110011011101 371,100 1 -0110011011101 icon-based 1 -0110011011101 435,600 1 -0110011011101 458-seat 1 -0110011011101 non-Wimbledon 1 -0110011011101 BGH. 1 -0110011011101 482,400 1 -0110011011101 99,100 1 -0110011011101 385,600 1 -0110011011101 114,079 1 -0110011011101 Itofca 1 -0110011011101 40,300 1 -0110011011101 Gourman 1 -0110011011101 6,007,200 1 -0110011011101 Storeworkers 1 -0110011011101 Idyllic 1 -0110011011101 world-champ 1 -0110011011101 Noneffective 1 -0110011011101 Maycor 1 -0110011011101 766,830 1 -0110011011101 UCC 1 -0110011011101 325,919 1 -0110011011101 private-labeled 1 -0110011011101 Triscuit 1 -0110011011101 2,062,941 1 -0110011011101 432,500 1 -0110011011101 1,386,842 1 -0110011011101 Mellon/McMahan 1 -0110011011101 Kutuzovsky 1 -0110011011101 OCF 1 -0110011011101 Overwhelm 1 -0110011011101 text-based 1 -0110011011101 Pacify 1 -0110011011101 Birthrate 1 -0110011011101 One-Child 1 -0110011011101 CP. 1 -0110011011101 1,049,600 1 -0110011011101 539,200 1 -0110011011101 489,041 1 -0110011011101 Peoria-based 1 -0110011011101 700-foot 1 -0110011011101 583,150 1 -0110011011101 2,595,900 1 -0110011011101 once-senior 1 -0110011011101 0.278 1 -0110011011101 Lilla 1 -0110011011101 1,974,456 1 -0110011011101 Gifted 1 -0110011011101 83,333 1 -0110011011101 132,650 1 -0110011011101 Electrolysis 1 -0110011011101 AMT. 1 -0110011011101 4,943,062 1 -0110011011101 Nasal 1 -0110011011101 937,098 1 -0110011011101 1,777,500 1 -0110011011101 292,494 1 -0110011011101 425,500 1 -0110011011101 Brainier 1 -0110011011101 subjugating 1 -0110011011101 3,288,387 1 -0110011011101 1,853,600 1 -0110011011101 Brandenberg 1 -0110011011101 105,270 1 -0110011011101 998,800 1 -0110011011101 272,600 1 -0110011011101 help-me-make-it-through-the-fiscal-nigh 1 -0110011011101 1,038,200 1 -0110011011101 Skol 1 -0110011011101 Alferon 1 -0110011011101 WCIX. 1 -0110011011101 Migrating 1 -0110011011101 Mix-Up 1 -0110011011101 Anti-Keynesian 1 -0110011011101 142,090 1 -0110011011101 Genesys 1 -0110011011101 equipment. 1 -0110011011101 234,500 1 -0110011011101 Glamorous 1 -0110011011101 35,153,400 1 -0110011011101 74,550 1 -0110011011101 355,300 1 -0110011011101 Eaten 1 -0110011011101 584,713 1 -0110011011101 284,600 1 -0110011011101 WTVJ. 1 -0110011011101 637,555 1 -0110011011101 90,860 1 -0110011011101 Stock-Picking 1 -0110011011101 Kathrun 1 -0110011011101 874,800 1 -0110011011101 leadin 1 -0110011011101 149,423 1 -0110011011101 PCC. 1 -0110011011101 Safe-Smoke 1 -0110011011101 277,900 1 -0110011011101 1,774,687 1 -0110011011101 Hengchiang 1 -0110011011101 Cutless 1 -0110011011101 Truoc 1 -0110011011101 Farmworkers 1 -0110011011101 869,403 1 -0110011011101 Used-House 1 -0110011011101 Two-Minute 1 -0110011011101 126,618 1 -0110011011101 Inspirational 2 -0110011011101 Rreef 2 -0110011011101 Telluride 2 -0110011011101 538,200 2 -0110011011101 Disaffected 2 -0110011011101 Street-Smart 2 -0110011011101 Vennootschap 2 -0110011011101 TWO-YEAR 2 -0110011011101 841,887 2 -0110011011101 Normalizing 2 -0110011011101 SmartForm 2 -0110011011101 West-Point 2 -0110011011101 Part-Time 2 -0110011011101 Ropespinner 2 -0110011011101 liquid-cooled 2 -0110011011101 Polish-Chinese 2 -0110011011101 Joins 2 -0110011011101 Molten 2 -0110011011101 60-store 2 -0110011011101 442,700 2 -0110011011101 Counterfeit 2 -0110011011101 Ewha 2 -0110011011101 Codenoll 2 -0110011011101 Health-Care 2 -0110011011101 Generic-Drug 2 -0110011011101 Thematic 2 -0110011011101 NCB 2 -0110011011101 neo-Gaullist 2 -0110011011101 336,900 2 -0110011011101 Cobalt 2 -0110011011101 Microbiological 2 -0110011011101 BMS 2 -0110011011101 Gloriana 2 -0110011011101 1,984,827 2 -0110011011101 Gist-brocades 2 -0110011011101 MLT 2 -0110011011101 CallPath 2 -0110011011101 Wanton 2 -0110011011101 droit 2 -0110011011101 Boyhood 2 -0110011011101 Por-Sha 2 -0110011011101 Cinch 2 -0110011011101 F.X.C. 2 -0110011011101 multi-color 2 -0110011011101 Randolph-Macon 2 -0110011011101 Reunert 2 -0110011011101 Bioadvance 2 -0110011011101 Calera 2 -0110011011101 8,535,000 2 -0110011011101 ecology-minded 2 -0110011011101 Golconda 2 -0110011011101 Artec 2 -0110011011101 Shinwa 2 -0110011011101 Overzealous 2 -0110011011101 324,200 2 -0110011011101 Shiko 2 -0110011011101 Oce-Van 2 -0110011011101 JCP 2 -0110011011101 Citronelle-Mobile 2 -0110011011101 Infarct 2 -0110011011101 Legalized 2 -0110011011101 253,700 2 -0110011011101 Oxxford 2 -0110011011101 Sedition 2 -0110011011101 upperclass 2 -0110011011101 Rem 2 -0110011011101 Mortuary 2 -0110011011101 Zeljko 2 -0110011011101 Satch 2 -0110011011101 Lasting 2 -0110011011101 MSI. 2 -0110011011101 Arrigo 2 -0110011011101 688,200 2 -0110011011101 Mikromed 2 -0110011011101 Indigenous 2 -0110011011101 Logo 2 -0110011011101 Wasted 2 -0110011011101 HARVARD 2 -0110011011101 Assist 2 -0110011011101 Evenement 2 -0110011011101 Rainforest 2 -0110011011101 Musica 2 -0110011011101 Jetstream 2 -0110011011101 Chateaux 2 -0110011011101 Preppy 2 -0110011011101 Lousy 2 -0110011011101 Videogram 2 -0110011011101 Drowning 2 -0110011011101 Gravy 2 -0110011011101 Galanteria 2 -0110011011101 tha 2 -0110011011101 1,188,000 2 -0110011011101 Fafnir 2 -0110011011101 Kelcie 2 -0110011011101 Marital 2 -0110011011101 826,300 2 -0110011011101 Hard-Pressed 2 -0110011011101 Sensual 2 -0110011011101 Timeless 2 -0110011011101 Poorer 2 -0110011011101 Ektra 2 -0110011011101 Starcom 2 -0110011011101 madogiwa 2 -0110011011101 Perkits 2 -0110011011101 15,507,300 2 -0110011011101 bottom-line-oriented 2 -0110011011101 papermaker 2 -0110011011101 CK 2 -0110011011101 Metabolic 2 -0110011011101 128,200 2 -0110011011101 Monica-based 2 -0110011011101 Lindach 2 -0110011011101 985,096 2 -0110011011101 SOUP 2 -0110011011101 86,988 2 -0110011011101 T-Cell 2 -0110011011101 Feminine 2 -0110011011101 Videotape 2 -0110011011101 BancBoston 2 -0110011011101 Boddie-Noell 2 -0110011011101 Azanian 2 -0110011011101 Bathing 2 -0110011011101 Aerial 2 -0110011011101 Grip 2 -0110011011101 NORWICH 2 -0110011011101 M/A 2 -0110011011101 30,300 2 -0110011011101 Concourse 2 -0110011011101 Crooked 2 -0110011011101 Southmark/Envicon 3 -0110011011101 Ag 3 -0110011011101 Ten-Gallon 3 -0110011011101 design-conscious 3 -0110011011101 Cellulose 3 -0110011011101 Discerning 3 -0110011011101 Orthopaedic 3 -0110011011101 175,900 3 -0110011011101 Patagonian 3 -0110011011101 Anik 3 -0110011011101 Ssmc 3 -0110011011101 Mathematical 3 -0110011011101 Leatherstocking 3 -0110011011101 Kuang 3 -0110011011101 nucleoside 3 -0110011011101 Gertrudis 3 -0110011011101 Sufficient 3 -0110011011101 Boardroom 3 -0110011011101 Free-Market 3 -0110011011101 Svedala 3 -0110011011101 Bovril 3 -0110011011101 Ten-Year 3 -0110011011101 Mony 3 -0110011011101 AWA 3 -0110011011101 Theban 3 -0110011011101 Consenting 3 -0110011011101 Orchestral 3 -0110011011101 Inferential 3 -0110011011101 Charismatic 3 -0110011011101 Temperature 3 -0110011011101 Katzenjammer 3 -0110011011101 Mechanized 3 -0110011011101 Aster 3 -0110011011101 Toughest 3 -0110011011101 Winged 3 -0110011011101 Excedrin 3 -0110011011101 Boudoir 3 -0110011011101 Homefree 3 -0110011011101 ADDS 3 -0110011011101 Canned 3 -0110011011101 Zodiac 3 -0110011011101 Brutal 3 -0110011011101 Bonny 3 -0110011011101 LBO. 3 -0110011011101 ultra-secret 3 -0110011011101 Vox 3 -0110011011101 Delcap 3 -0110011011101 Huhtamaki 3 -0110011011101 Cheez 3 -0110011011101 BAC 3 -0110011011101 Anti-Submarine 3 -0110011011101 BIOTECHNOLOGY 3 -0110011011101 HYBRID 3 -0110011011101 Save-Way 3 -0110011011101 Frustrate 3 -0110011011101 Expedited 3 -0110011011101 Takeout 3 -0110011011101 EUROBONDS 3 -0110011011101 USP 3 -0110011011101 Automedix 3 -0110011011101 AUS 3 -0110011011101 Clara-based 3 -0110011011101 Child-Abuse 3 -0110011011101 Noricum 3 -0110011011101 Ziegfeld 4 -0110011011101 AlphaGraphics 4 -0110011011101 Bovine 4 -0110011011101 Asylum 4 -0110011011101 Discovered 4 -0110011011101 Barbed 4 -0110011011101 Elvisly 4 -0110011011101 Kingsway 4 -0110011011101 Compensatory 4 -0110011011101 Gaamco 4 -0110011011101 Nikka 4 -0110011011101 Interbourse 4 -0110011011101 Lamps 4 -0110011011101 SIN 4 -0110011011101 getty 4 -0110011011101 Secular 4 -0110011011101 Syncrude 4 -0110011011101 Thine 4 -0110011011101 Slovenian 4 -0110011011101 Sailing 4 -0110011011101 MD 4 -0110011011101 Equicor-Equitable 4 -0110011011101 Bedroom 4 -0110011011101 Diverse 4 -0110011011101 ProHIBiT 4 -0110011011101 Vernors 4 -0110011011101 Highlanders 4 -0110011011101 Raycomm 4 -0110011011101 CGCT. 4 -0110011011101 PG 4 -0110011011101 Autoclave 4 -0110011011101 Tumor 4 -0110011011101 Lonely 4 -0110011011101 H.M.S. 4 -0110011011101 Exceptional 4 -0110011011101 Commerical 4 -0110011011101 Suntrust 4 -0110011011101 Reel 5 -0110011011101 REIS 5 -0110011011101 Mink 5 -0110011011101 Todays 5 -0110011011101 Photon 5 -0110011011101 Hobie 5 -0110011011101 Astute 5 -0110011011101 Manuscript 5 -0110011011101 Migrant 5 -0110011011101 JBA 5 -0110011011101 Albon 5 -0110011011101 Delicious 5 -0110011011101 denuclearizing 5 -0110011011101 Swatch 5 -0110011011101 Indebted 5 -0110011011101 Tennessee-based 5 -0110011011101 Neath 5 -0110011011101 Intelcom 5 -0110011011101 HR 5 -0110011011101 Rocking 5 -0110011011101 Objective 5 -0110011011101 B.A.S.S. 5 -0110011011101 Eminent 5 -0110011011101 Ornamental 5 -0110011011101 non-Soviet 5 -0110011011101 Transplant 5 -0110011011101 Spotted 5 -0110011011101 Elbit 5 -0110011011101 Waertsilae 5 -0110011011101 Operational 5 -0110011011101 SSA 6 -0110011011101 Reproductive 6 -0110011011101 Unemployed 6 -0110011011101 Gem 6 -0110011011101 Macquarie 6 -0110011011101 Packaged 6 -0110011011101 Recombinant 6 -0110011011101 MBE 6 -0110011011101 Stiff 6 -0110011011101 R&B 6 -0110011011101 Bamboo 6 -0110011011101 Mature 6 -0110011011101 Cello 6 -0110011011101 Peaceful 6 -0110011011101 Pulse 6 -0110011011101 Salada 6 -0110011011101 Osco 6 -0110011011101 Spider 6 -0110011011101 denuclearized 6 -0110011011101 MGM/ 6 -0110011011101 Toilet 6 -0110011011101 Plumbing 6 -0110011011101 Guerrilla 7 -0110011011101 HT 7 -0110011011101 Buckwheat 7 -0110011011101 Aspiring 7 -0110011011101 Tribal 7 -0110011011101 Bulk 7 -0110011011101 Swamp 7 -0110011011101 Highlander 7 -0110011011101 Touro 7 -0110011011101 Glimmerglass 7 -0110011011101 Medieval 7 -0110011011101 Lao 7 -0110011011101 Varig 7 -0110011011101 Smallest 8 -0110011011101 Sewer 8 -0110011011101 AGIP 8 -0110011011101 Meishan 8 -0110011011101 Seis 8 -0110011011101 All-America 8 -0110011011101 Locust 8 -0110011011101 Fascist 8 -0110011011101 Pol 9 -0110011011101 Exotic 9 -0110011011101 Tangible 9 -0110011011101 Fallen 9 -0110011011101 Proven 9 -0110011011101 Mammoth 9 -0110011011101 Prompt 9 -0110011011101 B&W 9 -0110011011101 USAA 9 -0110011011101 Practical 9 -0110011011101 Uniformed 9 -0110011011101 Generational 9 -0110011011101 Responsive 10 -0110011011101 Byte 10 -0110011011101 Silly 10 -0110011011101 Refined 10 -0110011011101 Orphan 10 -0110011011101 Profitable 10 -0110011011101 Heiwa 10 -0110011011101 Tissue 11 -0110011011101 Turbinen 11 -0110011011101 Artificial 11 -0110011011101 Enhanced 11 -0110011011101 Zany 11 -0110011011101 3rd 11 -0110011011101 Trunk 11 -0110011011101 Flagship 11 -0110011011101 Teton 11 -0110011011101 Collective 11 -0110011011101 SLH 12 -0110011011101 Gamco 12 -0110011011101 ICA 12 -0110011011101 Fragrance 12 -0110011011101 Systematic 13 -0110011011101 G.P. 13 -0110011011101 VHA 13 -0110011011101 Unusual 14 -0110011011101 Outer 14 -0110011011101 Balkan 14 -0110011011101 Indoor 14 -0110011011101 Fancy 14 -0110011011101 Qualified 14 -0110011011101 Whole 15 -0110011011101 AIRBUS 15 -0110011011101 Registered 15 -0110011011101 Prestige 15 -0110011011101 Po 15 -0110011011101 Infant 16 -0110011011101 Voter 16 -0110011011101 Adult 16 -0110011011101 Patriotic 16 -0110011011101 Lyric 16 -0110011011101 Glamour 16 -0110011011101 Kraftwerk 16 -0110011011101 Muppet 17 -0110011011101 MONY 17 -0110011011101 Wagoneer 17 -0110011011101 Sheaffer 17 -0110011011101 Gartmore 17 -0110011011101 Grateful 17 -0110011011101 Parallel 17 -0110011011101 Ole 18 -0110011011101 Mechanical 18 -0110011011101 Aztec 18 -0110011011101 Poh 18 -0110011011101 Civilian 18 -0110011011101 Hazardous 18 -0110011011101 Petro 18 -0110011011101 Ugly 18 -0110011011101 A.F. 19 -0110011011101 Violin 19 -0110011011101 Prudent 19 -0110011011101 Remarkable 19 -0110011011101 Quiet 21 -0110011011101 Volunteer 21 -0110011011101 Pneumo 21 -0110011011101 Multinational 21 -0110011011101 Extended 22 -0110011011101 Inner 22 -0110011011101 Odd 22 -0110011011101 SHL 23 -0110011011101 Fortress 23 -0110011011101 Malays 23 -0110011011101 Mainstream 23 -0110011011101 BROKEN 24 -0110011011101 Flexible 24 -0110011011101 Ameribanc 24 -0110011011101 Wespac 24 -0110011011101 Academic 25 -0110011011101 CT 25 -0110011011101 DRI 25 -0110011011101 Merry 26 -0110011011101 Classical 26 -0110011011101 Healthy 26 -0110011011101 Evil 27 -0110011011101 LAN 28 -0110011011101 Underground 29 -0110011011101 BR 30 -0110011011101 Flower 31 -0110011011101 Responsible 33 -0110011011101 Hobby 33 -0110011011101 Cub 33 -0110011011101 Religious 34 -0110011011101 Colored 35 -0110011011101 Paperworkers 35 -0110011011101 Presbyterian 36 -0110011011101 Pantry 36 -0110011011101 Soap 37 -0110011011101 Ultra 39 -0110011011101 SOCIETE 39 -0110011011101 Sleeping 39 -0110011011101 Planet 40 -0110011011101 N.W. 40 -0110011011101 Liquid 41 -0110011011101 Negro 41 -0110011011101 Presentation 42 -0110011011101 Single 43 -0110011011101 Bradlees 45 -0110011011101 Dependent 45 -0110011011101 Voluntary 46 -0110011011101 Fundamental 47 -0110011011101 AGS 48 -0110011011101 Motel 52 -0110011011101 Compact 57 -0110011011101 Organized 59 -0110011011101 Ne 64 -0110011011101 CB 69 -0110011011101 Rank 75 -0110011011101 L.J. 78 -0110011011101 CIE. 86 -0110011011101 Phillips-Van 87 -0110011011101 Oriental 92 -0110011011101 Hibernia 100 -0110011011101 Target 103 -0110011011101 SunTrust 103 -0110011011101 Patch 113 -0110011011101 Abbey 115 -0110011011101 Civic 118 -0110011011101 Direct 152 -0110011011101 Southeastern 152 -0110011011101 Electrical 159 -0110011011101 Provident 163 -0110011011101 Mine 183 -0110011011101 Di 194 -0110011011101 Merchants 199 -0110011011101 Modern 208 -0110011011101 Arabian 229 -0110011011101 Tandem 233 -0110011011101 Applied 243 -0110011011101 Key 248 -0110011011101 Individual 249 -0110011011101 Panhandle 254 -0110011011101 Global 298 -0110011011101 Presidential 301 -0110011011101 Institutional 355 -0110011011101 Private 385 -0110011011101 Circle 434 -0110011011101 Shanghai 467 -0110011011101 Local 623 -0110011011101 Crazy 672 -0110011011101 Southeast 755 -0110011011101 Diamond 756 -0110011011101 Major 872 -0110011011101 Commercial 940 -0110011011101 Metropolitan 1016 -0110011011101 Auto 1156 -0110011011101 Western 6664 -0110011011101 Arab 1486 -0110011011110 832,370 1 -0110011011110 ever-climbing 1 -0110011011110 195,700 1 -0110011011110 177,950 1 -0110011011110 Braeburn 1 -0110011011110 1,266,300 1 -0110011011110 GENETICALLY 1 -0110011011110 6,222,400 1 -0110011011110 708,376 1 -0110011011110 1,314,285 1 -0110011011110 Alameda-based 1 -0110011011110 462,300 1 -0110011011110 56,937 1 -0110011011110 Compufund 1 -0110011011110 460,750 1 -0110011011110 then-precious 1 -0110011011110 269,500 1 -0110011011110 Costume-maker 1 -0110011011110 Full-blown 1 -0110011011110 14,222,638 1 -0110011011110 909,800 1 -0110011011110 42,600 1 -0110011011110 3,271,800 1 -0110011011110 Salve 1 -0110011011110 Chilling 1 -0110011011110 3,574,500 1 -0110011011110 157,400 1 -0110011011110 Niagra 1 -0110011011110 4,043,200 1 -0110011011110 patronage-ridden 1 -0110011011110 Shigeko 1 -0110011011110 shape. 1 -0110011011110 Four-engine 1 -0110011011110 305,300 1 -0110011011110 885,603 1 -0110011011110 Ingelhemi 1 -0110011011110 Qubix 1 -0110011011110 re-branded 1 -0110011011110 332,400 1 -0110011011110 390,200 1 -0110011011110 2,711,755 1 -0110011011110 Weakly 1 -0110011011110 1,298,500 1 -0110011011110 IIS 1 -0110011011110 Ryder/PIE 1 -0110011011110 1,540,629 1 -0110011011110 418,750 1 -0110011011110 TII. 1 -0110011011110 424,528 1 -0110011011110 Top-ranked 1 -0110011011110 4,217,675 1 -0110011011110 1,544,300 1 -0110011011110 Belmont-based 1 -0110011011110 515,859 1 -0110011011110 New-England 1 -0110011011110 3,545,200 1 -0110011011110 Lyon-based 1 -0110011011110 3,758,800 1 -0110011011110 Spiced 1 -0110011011110 Chase-based 1 -0110011011110 447,600 1 -0110011011110 2,239,000 1 -0110011011110 278,600 1 -0110011011110 237-member 1 -0110011011110 Brazilian-based 1 -0110011011110 315,740 1 -0110011011110 118,137 1 -0110011011110 WVEZ 1 -0110011011110 engineering-minded 1 -0110011011110 634,300 1 -0110011011110 Seoul-Gold 1 -0110011011110 59,300 1 -0110011011110 1,145,688 1 -0110011011110 883,402 1 -0110011011110 3,576,349 1 -0110011011110 Jean-Noel 1 -0110011011110 condom-maker 1 -0110011011110 Vieux 1 -0110011011110 Saito. 1 -0110011011110 702,095 1 -0110011011110 ENI. 1 -0110011011110 162,775 1 -0110011011110 747,500 1 -0110011011110 Fii 1 -0110011011110 185,700 1 -0110011011110 Altanta 1 -0110011011110 522,644 1 -0110011011110 Pittsburg-based 1 -0110011011110 15-team 1 -0110011011110 shrines. 1 -0110011011110 400,250 1 -0110011011110 Financially-troubled 1 -0110011011110 Yardville 1 -0110011011110 735,875 1 -0110011011110 CML. 1 -0110011011110 MFI. 1 -0110011011110 Nunn-Levin 1 -0110011011110 South-African-controlled 1 -0110011011110 914,300 1 -0110011011110 227,300 1 -0110011011110 studio-size 1 -0110011011110 92,900 1 -0110011011110 105-count 1 -0110011011110 Perfumerias 1 -0110011011110 First-Knox 1 -0110011011110 chocolate-maker 1 -0110011011110 SJS 1 -0110011011110 Scrimgeor 1 -0110011011110 Lebone 1 -0110011011110 SHEER 1 -0110011011110 737,200 1 -0110011011110 sub-Chapter 1 -0110011011110 2,291,210 1 -0110011011110 Mattacheese 1 -0110011011110 2,037,100 1 -0110011011110 Junkets 1 -0110011011110 271,571 1 -0110011011110 DIVERSIFIED 1 -0110011011110 420,190 1 -0110011011110 Baroness 1 -0110011011110 outmatch 1 -0110011011110 Beznau 1 -0110011011110 LAIDLAW 1 -0110011011110 113,900 1 -0110011011110 TAHITIAN 1 -0110011011110 322,071 1 -0110011011110 1,727,200 1 -0110011011110 2,292,300 1 -0110011011110 bowls. 1 -0110011011110 76,700 1 -0110011011110 11,175,150 1 -0110011011110 654,725 1 -0110011011110 2,775,456 1 -0110011011110 348,427 1 -0110011011110 202,200 1 -0110011011110 115,700 1 -0110011011110 3,509,450 1 -0110011011110 Atromid 1 -0110011011110 2,837,695 1 -0110011011110 1,509,970 1 -0110011011110 1,731,400 1 -0110011011110 540,600 1 -0110011011110 1975-1979 1 -0110011011110 Canyonlands 1 -0110011011110 MCO. 1 -0110011011110 3,712,860 1 -0110011011110 Workingmens 1 -0110011011110 2,582,757 1 -0110011011110 3,167,313 1 -0110011011110 397,900 1 -0110011011110 PEERLESS 1 -0110011011110 JAY 1 -0110011011110 3,278,571 1 -0110011011110 5,739,737 1 -0110011011110 Once-loyal 1 -0110011011110 Boatmens 1 -0110011011110 725,603 1 -0110011011110 4,043,000 1 -0110011011110 Short-Range 1 -0110011011110 Discontinuing 1 -0110011011110 263,666 1 -0110011011110 295,900 1 -0110011011110 Bernita 1 -0110011011110 164,900 1 -0110011011110 Wenatchee-based 1 -0110011011110 744,200 1 -0110011011110 295,200 1 -0110011011110 sugar-maker 1 -0110011011110 NOVO 1 -0110011011110 204,700 1 -0110011011110 2,055,667 1 -0110011011110 1,052,500 1 -0110011011110 45,340 1 -0110011011110 52,025 1 -0110011011110 105,615 1 -0110011011110 963,200 1 -0110011011110 1,159,400 1 -0110011011110 SITHE 1 -0110011011110 16cents 1 -0110011011110 post-dividend 1 -0110011011110 458,820 1 -0110011011110 Erste 1 -0110011011110 Inherited 1 -0110011011110 247,600 1 -0110011011110 Scandinavian-style 1 -0110011011110 14,846,322 1 -0110011011110 co-Chief 1 -0110011011110 Bayamon-based 1 -0110011011110 UNIX-specialist 1 -0110011011110 TDH 1 -0110011011110 1,071,125 1 -0110011011110 America-Texas 1 -0110011011110 America-California 1 -0110011011110 still-in-force 1 -0110011011110 underwritings-London-based 1 -0110011011110 21,941,964 1 -0110011011110 ACQUIRED 1 -0110011011110 1,806,224 1 -0110011011110 1,448,550 1 -0110011011110 1,654,181 1 -0110011011110 FISHER 1 -0110011011110 xylophonist 1 -0110011011110 5,483,700 1 -0110011011110 1,947,998 1 -0110011011110 212,968 1 -0110011011110 Bowl-champion 1 -0110011011110 animals. 1 -0110011011110 118,482 1 -0110011011110 2,190,800 1 -0110011011110 one-third-owned 1 -0110011011110 LARGE-SCREEN 1 -0110011011110 164,500 1 -0110011011110 109,532 1 -0110011011110 325,222 1 -0110011011110 376,700 1 -0110011011110 WFG 1 -0110011011110 906,570 1 -0110011011110 120,800 1 -0110011011110 532,643 1 -0110011011110 Sylvestor 1 -0110011011110 jewel-studded 1 -0110011011110 Ahrgus 1 -0110011011110 PCA. 1 -0110011011110 LLC. 1 -0110011011110 631,700 1 -0110011011110 5,133,700 1 -0110011011110 KHTF 1 -0110011011110 867,876 1 -0110011011110 729,600 1 -0110011011110 34,286 1 -0110011011110 Carillo 1 -0110011011110 114,900 1 -0110011011110 253,870 1 -0110011011110 dark-paneled 1 -0110011011110 1,798,675 1 -0110011011110 Clarkes 1 -0110011011110 any-year 1 -0110011011110 5,259,800 1 -0110011011110 35-floor 1 -0110011011110 INIZIATIVA 1 -0110011011110 road-scorching 1 -0110011011110 225.59 1 -0110011011110 3,676,400 1 -0110011011110 479,740 1 -0110011011110 once-independent 1 -0110011011110 187,400 1 -0110011011110 then-arch-conservative 1 -0110011011110 395,833 1 -0110011011110 B.F 1 -0110011011110 Bartolo 1 -0110011011110 379540 1 -0110011011110 13,310 1 -0110011011110 GPA-owned 1 -0110011011110 Chiyono 1 -0110011011110 Pandzik 1 -0110011011110 BNS. 1 -0110011011110 CERA 1 -0110011011110 257,100 1 -0110011011110 Long-depressed 1 -0110011011110 1,053,000 1 -0110011011110 6,127,500 1 -0110011011110 2,377,500 1 -0110011011110 Minolta/Gallup 1 -0110011011110 1,231,200 1 -0110011011110 1,541,200 1 -0110011011110 430,950 1 -0110011011110 ISHIKAWAJIMA 1 -0110011011110 IUD. 1 -0110011011110 6,100-square-foot 1 -0110011011110 1,013,900 1 -0110011011110 W&W 1 -0110011011110 Lymphokine 1 -0110011011110 Southmark-supported 1 -0110011011110 Sema 1 -0110011011110 76,400 1 -0110011011110 75101 1 -0110011011110 75-101 1 -0110011011110 market.The 1 -0110011011110 Citicorp-Scrimgeour 1 -0110011011110 3,157,535 1 -0110011011110 Seattlebased 1 -0110011011110 luxe 1 -0110011011110 1,357,950 1 -0110011011110 red-label 1 -0110011011110 Marcelline 1 -0110011011110 65,600 1 -0110011011110 Decolonization 1 -0110011011110 Sandusky-based 1 -0110011011110 800,104 1 -0110011011110 604,250 1 -0110011011110 136,800 1 -0110011011110 snow-crusted 1 -0110011011110 424,200 1 -0110011011110 Cash-starved 1 -0110011011110 Absorbing 1 -0110011011110 Marcor 1 -0110011011110 Takeover-prospect 1 -0110011011110 Frieder 1 -0110011011110 441,040 1 -0110011011110 115,489 1 -0110011011110 Knick 1 -0110011011110 Chopstix 1 -0110011011110 Twenty-year-old 1 -0110011011110 Archrivals 1 -0110011011110 8,239,900 1 -0110011011110 now-silent 1 -0110011011110 supercomputer-maker 1 -0110011011110 299,500 1 -0110011011110 152,600 1 -0110011011110 LATINA 1 -0110011011110 ilbert 1 -0110011011110 914,482 1 -0110011011110 Buffett-controlled 1 -0110011011110 107,900 1 -0110011011110 Seisen 1 -0110011011110 12,844,700 1 -0110011011110 284,700 1 -0110011011110 Fiftieth 1 -0110011011110 750,827 1 -0110011011110 BDDP. 1 -0110011011110 Takanori 1 -0110011011110 Koninlijke 1 -0110011011110 gentler-sloping 1 -0110011011110 Axon 1 -0110011011110 often-cautious 1 -0110011011110 WQXR 1 -0110011011110 UPS. 1 -0110011011110 Manele 1 -0110011011110 480,400 1 -0110011011110 159,357 1 -0110011011110 boat-like 1 -0110011011110 generics-maker 1 -0110011011110 Snaresbrook 1 -0110011011110 high-vitamin 1 -0110011011110 Festung 1 -0110011011110 Brodhead 1 -0110011011110 Perfumeria 1 -0110011011110 Eames. 1 -0110011011110 Hornburg 1 -0110011011110 inertia-bound 1 -0110011011110 FESTIVAL 1 -0110011011110 4,644,120 1 -0110011011110 Imry 1 -0110011011110 150,000-barrel-a-day 1 -0110011011110 252member 1 -0110011011110 electricity-tight 1 -0110011011110 24,999,495 1 -0110011011110 494,907 1 -0110011011110 Wolfmark 1 -0110011011110 1,617,800 1 -0110011011110 2,144,700 1 -0110011011110 Deets 1 -0110011011110 Pilgrm 1 -0110011011110 six-track 1 -0110011011110 429,556 1 -0110011011110 PURCHASE 1 -0110011011110 40,800 1 -0110011011110 3,847,900 1 -0110011011110 Nevsky 1 -0110011011110 Briish 1 -0110011011110 725,700 1 -0110011011110 Co-Chief 1 -0110011011110 6,488,300 1 -0110011011110 Fifteenth 1 -0110011011110 Valencia-based 1 -0110011011110 12,234,200 1 -0110011011110 Puna 1 -0110011011110 cashrich 1 -0110011011110 Conservera 1 -0110011011110 185,140 1 -0110011011110 Walters-Donaldson 1 -0110011011110 526,600 1 -0110011011110 3,949,500 1 -0110011011110 Miocene 1 -0110011011110 750-mile 2 -0110011011110 WTVS 2 -0110011011110 Mantecados 2 -0110011011110 Geauga 2 -0110011011110 315,823 2 -0110011011110 Mid-American 2 -0110011011110 Matterhorn 2 -0110011011110 b-Includes 2 -0110011011110 Broadway-Southern 2 -0110011011110 318,325 2 -0110011011110 Seattle-First 2 -0110011011110 179,900 2 -0110011011110 Crestmont 2 -0110011011110 Swami 2 -0110011011110 109,900 2 -0110011011110 Sandersville 2 -0110011011110 Konstitutional 2 -0110011011110 272,300 2 -0110011011110 CLAIBORNE 2 -0110011011110 Greensboro-based 2 -0110011011110 Reefe 2 -0110011011110 Aspromonte 2 -0110011011110 Valdosta 2 -0110011011110 Holland-based 2 -0110011011110 Gunma 2 -0110011011110 EBC 2 -0110011011110 131,300 2 -0110011011110 K.O. 2 -0110011011110 Allenpark 2 -0110011011110 Rustaveli 2 -0110011011110 136,700 2 -0110011011110 Dirt-poor 2 -0110011011110 Silvius 2 -0110011011110 Siena 2 -0110011011110 685,300 2 -0110011011110 A/ 2 -0110011011110 1,389,600 2 -0110011011110 arch-adversary 2 -0110011011110 331,100 2 -0110011011110 PIE 2 -0110011011110 Tapetes 2 -0110011011110 Horsell 2 -0110011011110 Agora 2 -0110011011110 Arches 2 -0110011011110 Sub-chapter 2 -0110011011110 IHC 2 -0110011011110 467,100 2 -0110011011110 Katec 2 -0110011011110 146,200 2 -0110011011110 Randa 2 -0110011011110 Irvine-based 2 -0110011011110 Agrigenetics 2 -0110011011110 Simulated 2 -0110011011110 BBDO. 2 -0110011011110 MBB. 2 -0110011011110 1,662,500 2 -0110011011110 majority-owner 2 -0110011011110 Detour 2 -0110011011110 100,600 2 -0110011011110 Morsemere 2 -0110011011110 Assicurazione 2 -0110011011110 Laila 2 -0110011011110 119,300 2 -0110011011110 Trustmark 2 -0110011011110 Secorp 2 -0110011011110 949,700 2 -0110011011110 665,400 2 -0110011011110 Seagrams 2 -0110011011110 Shahid 2 -0110011011110 RFS 2 -0110011011110 DAYTON 2 -0110011011110 Williamhouse 2 -0110011011110 Cognoscenti 2 -0110011011110 GRUPPO 2 -0110011011110 Tater 2 -0110011011110 subchapter 2 -0110011011110 453,300 2 -0110011011110 171,918 2 -0110011011110 Closely-held 2 -0110011011110 503,282 2 -0110011011110 Heilbronn-based 2 -0110011011110 Medically 3 -0110011011110 Zoetrope 3 -0110011011110 EL 3 -0110011011110 Vivienne 3 -0110011011110 Akwesasne 3 -0110011011110 Dowell 3 -0110011011110 LEASEWAY 3 -0110011011110 anti-First 3 -0110011011110 lex 3 -0110011011110 Firstbank 3 -0110011011110 FELDMUEHLE 3 -0110011011110 Vermillion 3 -0110011011110 Geolograph 3 -0110011011110 Intermediate-range 3 -0110011011110 Iglesia 3 -0110011011110 Troster 3 -0110011011110 ShareVest 3 -0110011011110 Emigration 3 -0110011011110 Prosperous 3 -0110011011110 Swimsuit 3 -0110011011110 Serafino 3 -0110011011110 Monex 3 -0110011011110 Kalinin 3 -0110011011110 Rogerio 3 -0110011011110 Sakae 4 -0110011011110 Tongass 4 -0110011011110 P.B. 4 -0110011011110 Impressions 4 -0110011011110 Miramar 4 -0110011011110 Anthea 4 -0110011011110 Straw 4 -0110011011110 Pax 4 -0110011011110 P-I-E 4 -0110011011110 Upstate 4 -0110011011110 Hughes-Ryan 4 -0110011011110 Letco 4 -0110011011110 Airman 4 -0110011011110 Reisterstown 4 -0110011011110 Octonia 5 -0110011011110 Farrah 5 -0110011011110 Yves-Andre 5 -0110011011110 Suisse-First 5 -0110011011110 Bayamon 5 -0110011011110 867,700 5 -0110011011110 Subchapter 5 -0110011011110 Fourteenth 5 -0110011011110 Verenigde 5 -0110011011110 Ens 5 -0110011011110 Viosca 5 -0110011011110 Runway 5 -0110011011110 Flagstaff 6 -0110011011110 Bipolar 6 -0110011011110 Uptown 6 -0110011011110 Watervliet 6 -0110011011110 Eleventh 7 -0110011011110 Gruppo 7 -0110011011110 Greenham 7 -0110011011110 Cedars 7 -0110011011110 Fausto 7 -0110011011110 Lago 7 -0110011011110 Alfieri 7 -0110011011110 Vaal 8 -0110011011110 WOLTERS 8 -0110011011110 Evangeline 8 -0110011011110 Guccio 8 -0110011011110 Cerveceria 8 -0110011011110 585,067 9 -0110011011110 New-York 9 -0110011011110 Koninklijke 10 -0110011011110 Rowes 10 -0110011011110 Purity 10 -0110011011110 Arab-Malaysian 10 -0110011011110 Star-Spangled 10 -0110011011110 Alianza 11 -0110011011110 Crowthers 11 -0110011011110 Phenix 12 -0110011011110 C&H 13 -0110011011110 Playa 13 -0110011011110 Regnery 13 -0110011011110 Chula 14 -0110011011110 H.C. 15 -0110011011110 FII 15 -0110011011110 Assicurazioni 15 -0110011011110 Pia 15 -0110011011110 Maxim 16 -0110011011110 S&W 17 -0110011011110 ANZ 17 -0110011011110 Arrowhead 18 -0110011011110 Retailer 19 -0110011011110 Maison 20 -0110011011110 Akin 20 -0110011011110 MidAmerica 20 -0110011011110 View-Master 21 -0110011011110 Agence 22 -0110011011110 RBC 23 -0110011011110 P.T. 25 -0110011011110 PacTel 26 -0110011011110 2nd 26 -0110011011110 Grupo 27 -0110011011110 Acquired 27 -0110011011110 Carte 27 -0110011011110 Fieldcrest 30 -0110011011110 Iniziativa 30 -0110011011110 Buena 31 -0110011011110 Canary 32 -0110011011110 Stride 32 -0110011011110 Palais 33 -0110011011110 McNamee 35 -0110011011110 Grease 37 -0110011011110 Rusty 48 -0110011011110 Wolters 51 -0110011011110 Ka 52 -0110011011110 Triple 53 -0110011011110 Ariel 54 -0110011011110 Sixth 69 -0110011011110 Scrimgeour 70 -0110011011110 M.A. 71 -0110011011110 Mt. 73 -0110011011110 Eighth 73 -0110011011110 Nesbitt 78 -0110011011110 Institut 81 -0110011011110 Adolph 85 -0110011011110 A.C. 96 -0110011011110 B.F. 98 -0110011011110 Operation 111 -0110011011110 CP 115 -0110011011110 midtown 126 -0110011011110 Flying 162 -0110011011110 Ninth 163 -0110011011110 Uniroyal 209 -0110011011110 F.W. 213 -0110011011110 Niagara 229 -0110011011110 A.H. 236 -0110011011110 ZZZZ 250 -0110011011110 Fourth 260 -0110011011110 J.C. 296 -0110011011110 U 477 -0110011011110 Walt 492 -0110011011110 Fifth 503 -0110011011110 Eastman 504 -0110011011110 PS 517 -0110011011110 First 12958 -0110011011110 Chase 1725 -0110011011111 Northanger 1 -0110011011111 299,523 1 -0110011011111 CAMPBELL 1 -0110011011111 1970-1983 1 -0110011011111 Rosenfield/Vinson 1 -0110011011111 gay-oriented 1 -0110011011111 267,015 1 -0110011011111 Light-haired 1 -0110011011111 Goldstripe 1 -0110011011111 Sixteen-to-One 1 -0110011011111 Eensy-Weensy 1 -0110011011111 Midstate 1 -0110011011111 four-season 1 -0110011011111 Non-American 1 -0110011011111 Seaco 1 -0110011011111 Oranje-Nassau 1 -0110011011111 HenleySanta 1 -0110011011111 493,500 1 -0110011011111 Anfavea 1 -0110011011111 2,415,300 1 -0110011011111 Employable 1 -0110011011111 Lancore 1 -0110011011111 Post-65 1 -0110011011111 2,500-member 1 -0110011011111 579,100 1 -0110011011111 DF 1 -0110011011111 half-blood 1 -0110011011111 nuclearize 1 -0110011011111 non-contiguous 1 -0110011011111 2,417,217 1 -0110011011111 Sangjie 1 -0110011011111 381,380 1 -0110011011111 275,700 1 -0110011011111 Sauk 1 -0110011011111 5,776,600 1 -0110011011111 Silverio 1 -0110011011111 Okefenokee 1 -0110011011111 Neuromedical 1 -0110011011111 rose-crowned 1 -0110011011111 361,650 1 -0110011011111 Webcraft 1 -0110011011111 Gathers 1 -0110011011111 Transinternational 1 -0110011011111 non-Pan 1 -0110011011111 Godolphin 1 -0110011011111 Joana 1 -0110011011111 Dublin-United 1 -0110011011111 ROOF-HIGH 1 -0110011011111 151-year-old 1 -0110011011111 rich-but-vulnerable 1 -0110011011111 Unremitting 1 -0110011011111 Mauricius 1 -0110011011111 soundproofed 1 -0110011011111 DALLAS-Metro 1 -0110011011111 627,200 1 -0110011011111 now-beleaguered 1 -0110011011111 Income-1984 1 -0110011011111 291,400 1 -0110011011111 HTLV-III 1 -0110011011111 artiste 1 -0110011011111 Augusta-based 1 -0110011011111 Monitek 1 -0110011011111 600E 1 -0110011011111 CSX-American 1 -0110011011111 OnSite 1 -0110011011111 Japanese-occupied 1 -0110011011111 1,080,500 1 -0110011011111 Western-aligned 1 -0110011011111 JS 1 -0110011011111 Chambri 1 -0110011011111 Murik 1 -0110011011111 836,300 1 -0110011011111 Remediation 1 -0110011011111 Freemark 1 -0110011011111 Amalagamated 1 -0110011011111 Dama 1 -0110011011111 prestigous 1 -0110011011111 Shatt-al 1 -0110011011111 Lachlan 1 -0110011011111 valet-assassin 1 -0110011011111 BIO-COR 1 -0110011011111 Chapparral 1 -0110011011111 9,240,000 1 -0110011011111 Metro-Goldwyn-Mayer-United 1 -0110011011111 Sagawa 1 -0110011011111 Malay-speaking 1 -0110011011111 35-branch 1 -0110011011111 Enviro-Gro 1 -0110011011111 non-Egyptian 1 -0110011011111 ClassicShine 1 -0110011011111 Salimin 1 -0110011011111 Israeli-appointed 1 -0110011011111 10-20 1 -0110011011111 323-store 1 -0110011011111 Cottonelle 1 -0110011011111 Cisne 1 -0110011011111 InterCity 1 -0110011011111 29-seat 1 -0110011011111 772,500 1 -0110011011111 PG. 1 -0110011011111 Hiwood 1 -0110011011111 Dow-United 1 -0110011011111 CAD. 1 -0110011011111 Quick-Change 1 -0110011011111 5,536,409 1 -0110011011111 Seven-son 1 -0110011011111 Interlock 1 -0110011011111 Foot-Dragging 1 -0110011011111 .Pan 1 -0110011011111 Midwest-Great 1 -0110011011111 dervish-like 1 -0110011011111 venerable-but-much-derided 1 -0110011011111 Shellfish 1 -0110011011111 Drugged 1 -0110011011111 Virtual 1 -0110011011111 Mtg 1 -0110011011111 Formative 1 -0110011011111 Kuwait-based 1 -0110011011111 Match-Play 1 -0110011011111 LSST 1 -0110011011111 Kuhr 1 -0110011011111 safe-sounding 1 -0110011011111 Motoren-und 1 -0110011011111 Tok 1 -0110011011111 Wildwater 1 -0110011011111 Morbid 1 -0110011011111 Couns 1 -0110011011111 Moyle 1 -0110011011111 Silc 1 -0110011011111 Wavy 1 -0110011011111 Mexico-United 1 -0110011011111 At-Taqwa 1 -0110011011111 Hagenluecke 1 -0110011011111 814,350 1 -0110011011111 sludge-covered 1 -0110011011111 Corkscrew 1 -0110011011111 ALPHABET 1 -0110011011111 slimline 1 -0110011011111 158,900 1 -0110011011111 5,567,370 1 -0110011011111 535,179 1 -0110011011111 Shearson/American 2 -0110011011111 Grate 2 -0110011011111 Naamloze 2 -0110011011111 503,700 2 -0110011011111 BancAmerica 2 -0110011011111 Orbita 2 -0110011011111 Anglophilic 2 -0110011011111 NETI 2 -0110011011111 Litel 2 -0110011011111 Henley-Santa 2 -0110011011111 non-United 2 -0110011011111 IDS/American 2 -0110011011111 SatCom 2 -0110011011111 Interlogic 2 -0110011011111 Hermit 2 -0110011011111 Norbest 2 -0110011011111 Skyway 2 -0110011011111 Continential 2 -0110011011111 Tintern 2 -0110011011111 Patuxent 2 -0110011011111 LiTel 2 -0110011011111 Exec 2 -0110011011111 LeeWah 2 -0110011011111 Transceptor 2 -0110011011111 Fo 2 -0110011011111 Osicom 2 -0110011011111 Axiom 2 -0110011011111 HandelsBank 2 -0110011011111 Kgalagadi 2 -0110011011111 B&D 2 -0110011011111 Longboat 2 -0110011011111 Fujicolor 3 -0110011011111 Johnstown/Consolidated 3 -0110011011111 Bruch 3 -0110011011111 U.S.-Saudi 3 -0110011011111 Fender 3 -0110011011111 Longhorn 3 -0110011011111 Biomagnetic 3 -0110011011111 Speciality 3 -0110011011111 Nanyang 3 -0110011011111 Wanbao 3 -0110011011111 AT&T/Philips 3 -0110011011111 Transavia 3 -0110011011111 Scandanavian 3 -0110011011111 75-stock 3 -0110011011111 PTT 3 -0110011011111 AWE 3 -0110011011111 Pequot 3 -0110011011111 Lantana 3 -0110011011111 Gettig 3 -0110011011111 EPI 3 -0110011011111 Datasaab 3 -0110011011111 Transtar 3 -0110011011111 V.O. 3 -0110011011111 MAT 3 -0110011011111 Implant 3 -0110011011111 ONG 3 -0110011011111 Salomon-Russell 3 -0110011011111 Ursa 3 -0110011011111 Chinaberry 4 -0110011011111 Brookwood 4 -0110011011111 Saudi-owned 4 -0110011011111 Braniff-Pan 4 -0110011011111 Provincetown-Boston 4 -0110011011111 XP 4 -0110011011111 Coon 4 -0110011011111 ADC 4 -0110011011111 Pompton 4 -0110011011111 Kake 4 -0110011011111 M/V 5 -0110011011111 Saudia 5 -0110011011111 Occupied 5 -0110011011111 Altered 5 -0110011011111 Lic-Con 5 -0110011011111 Keowee 5 -0110011011111 Captive 5 -0110011011111 Sungene 5 -0110011011111 SPS 5 -0110011011111 Sundor 5 -0110011011111 Peaceable 6 -0110011011111 Wilberg 6 -0110011011111 Porex 6 -0110011011111 Raster 6 -0110011011111 Southwall 7 -0110011011111 20-stock 7 -0110011011111 American-Pan 7 -0110011011111 Quechee 7 -0110011011111 Counsellors 7 -0110011011111 CL 7 -0110011011111 Viral 8 -0110011011111 WIC 8 -0110011011111 Transformational 9 -0110011011111 Navstar 9 -0110011011111 StatesWest 10 -0110011011111 CNCP 10 -0110011011111 North-West 10 -0110011011111 Radiant 12 -0110011011111 Milky 12 -0110011011111 Intermountain 13 -0110011011111 Momentum 13 -0110011011111 Chemfix 14 -0110011011111 Bindley 14 -0110011011111 GA 15 -0110011011111 Finger 15 -0110011011111 Mandarin 17 -0110011011111 Affiliate 22 -0110011011111 KAL 23 -0110011011111 Skywest 24 -0110011011111 Trak 26 -0110011011111 Starlight 34 -0110011011111 Tilden 39 -0110011011111 Chaparral 41 -0110011011111 AT&T-Philips 41 -0110011011111 Crescent 43 -0110011011111 Ozark 43 -0110011011111 Interactive 55 -0110011011111 A&W 70 -0110011011111 Nihon 77 -0110011011111 Cedar 83 -0110011011111 Iroquois 83 -0110011011111 Clemente 86 -0110011011111 Symbol 89 -0110011011111 TranStar 92 -0110011011111 Orient 99 -0110011011111 Cabbage 102 -0110011011111 Wheelabrator 114 -0110011011111 L' 142 -0110011011111 Frontier 178 -0110011011111 Aloha 209 -0110011011111 Metro 236 -0110011011111 Midway 262 -0110011011111 Southwest 1130 -0110011011111 Northwest 1408 -0110011011111 Grand 1737 -0110011011111 Great 2000 -0110011011111 Pan 2154 -0110011011111 Saudi 2171 -0110011011111 United 8329 -0110011011111 Santa 2696 -0110011100 Millennial 1 -0110011100 warrantew 1 -0110011100 -2,175,914 1 -0110011100 -33,783 1 -0110011100 Bronze-Iron 1 -0110011100 Kuwait-like 1 -0110011100 IPE-New 1 -0110011100 SUNY-New 1 -0110011100 LCA-New 1 -0110011100 Co.-New 1 -0110011100 CBS-New 1 -0110011100 Pave 1 -0110011100 London-to-New 1 -0110011100 Dior-New 1 -0110011100 BOWES 1 -0110011100 Christmas/New 1 -0110011100 Atlanta-New 1 -0110011100 Copenhagen-New 1 -0110011100 Massachusetts-New 1 -0110011100 ew 1 -0110011100 CBS/New 1 -0110011100 mini-Prohibition 1 -0110011100 DMB&B/New 1 -0110011100 BECOMES 1 -0110011100 Thatcherian 1 -0110011100 CME-New 1 -0110011100 Communications-New 1 -0110011100 Teleport-New 1 -0110011100 Worsdall 1 -0110011100 Comex-New 1 -0110011100 Plane-Crash 1 -0110011100 pre-New 1 -0110011100 Washington-to-New 1 -0110011100 Toronto-New 1 -0110011100 Montreal-New 1 -0110011100 Hartford-New 1 -0110011100 Virginia-New 1 -0110011100 sculpture. 1 -0110011100 all-New 1 -0110011100 anti-New 1 -0110011100 whiskey-loving 1 -0110011100 Warsaw-New 1 -0110011100 Gilded 2 -0110011100 Christmas-New 2 -0110011100 post-New 2 -0110011100 Jurassic 2 -0110011100 Tokyo-London-New 2 -0110011100 mid-New 2 -0110011100 Chicago-New 2 -0110011100 Pennsylvania-New 2 -0110011100 Denver-New 2 -0110011100 Washington-New 3 -0110011100 Yale-New 3 -0110011100 News/New 3 -0110011100 Unforgettable 3 -0110011100 WNET/New 4 -0110011100 Agua 4 -0110011100 Papua-New 4 -0110011100 Boston-New 6 -0110011100 Sergeant 6 -0110011100 Marsh-New 7 -0110011100 non-New 12 -0110011100 New 56311 -0110011100 Nuova 12 -011001110100 METALLGE 1 -011001110100 Bey 1 -011001110100 mini-Merrill 1 -011001110100 Accordionist 1 -011001110100 Ishiwawjima-Harima 1 -011001110100 Aboud 1 -011001110100 San-Francisco-based 1 -011001110100 Suhr 1 -011001110100 ONONDAGA 1 -011001110100 LIQUID 1 -011001110100 Tsugio 1 -011001110100 Sturla 1 -011001110100 S.G 1 -011001110100 Nobutaka 1 -011001110100 jima-Harima 1 -011001110100 Shiboleth 1 -011001110100 Agnieszka 1 -011001110100 Yonas 1 -011001110100 BROCKTON 1 -011001110100 Bankenes 1 -011001110100 Plasminogen 1 -011001110100 Malise 1 -011001110100 ex-Morgan 1 -011001110100 SWF 1 -011001110100 Jurg 1 -011001110100 Oesterreichischen 1 -011001110100 JW 1 -011001110100 Maha 1 -011001110100 600,985 1 -011001110100 Agueda 1 -011001110100 Zalmen 1 -011001110100 Baronesse 1 -011001110100 Masanao 1 -011001110100 Finck-Sche 1 -011001110100 Vassil 1 -011001110100 Hansruedi 1 -011001110100 MACLEAN 1 -011001110100 chez 1 -011001110100 Sheazrson 1 -011001110100 16-year-vet 1 -011001110100 Arianna 1 -011001110100 714,500 1 -011001110100 Ishikawasjima-Harima 1 -011001110100 Oesterreicheschen 1 -011001110100 BRANFORD 1 -011001110100 Assicura 1 -011001110100 DUNCAN 1 -011001110100 Flavius 1 -011001110100 Gebrueder 1 -011001110100 263-lawyer 1 -011001110100 DOWNEY 1 -011001110100 Pom 1 -011001110100 Stockholms 1 -011001110100 Exploitation 1 -011001110100 ex-Merrill 1 -011001110100 Trister 1 -011001110100 Air/Morgan 1 -011001110100 Yasumichi 1 -011001110100 Burdines/Jordan 1 -011001110100 Delio 1 -011001110100 Taean 1 -011001110100 SUNG 1 -011001110100 Erle 1 -011001110100 Ezio 2 -011001110100 Unione 2 -011001110100 Toad 2 -011001110100 Itsuo 2 -011001110100 Perham 2 -011001110100 CENTRUST 2 -011001110100 Sparekassen 2 -011001110100 Uzis 2 -011001110100 643,800 2 -011001110100 POHANG 2 -011001110100 DRK 2 -011001110100 ANSHAN 2 -011001110100 Yossi 2 -011001110100 ANN 2 -011001110100 DJS 2 -011001110100 Volvo-GM 2 -011001110100 LEXINGTON 2 -011001110100 PARKVALE 2 -011001110100 Michiko 3 -011001110100 Wieslaw 3 -011001110100 Whinery 3 -011001110100 COMFED 3 -011001110100 Asesores 4 -011001110100 Heinhold 4 -011001110100 COAST 5 -011001110100 Leonie 5 -011001110100 Harima 7 -011001110100 WR 8 -011001110100 Skandinaviska 9 -011001110100 Averell 9 -011001110100 DAVID 9 -011001110100 DOW 12 -011001110100 Sphere 17 -011001110100 Ishikawajima-Harima 41 -011001110100 E.M. 43 -011001110100 Janney 163 -011001110100 R.J. 187 -011001110100 S.G. 240 -011001110100 Fulton 525 -011001110100 Morgan 5506 -011001110100 Merrill 5089 -011001110100 Shearson 5493 -0110011101010 IndoVista 1 -0110011101010 beratings 1 -0110011101010 Harried 1 -0110011101010 Enrolled 1 -0110011101010 BarclaysAmerican-Business 1 -0110011101010 Filipiniana 1 -0110011101010 Stillerman 1 -0110011101010 Adcom 1 -0110011101010 Belt-Frost 1 -0110011101010 Samyang 1 -0110011101010 Warbird 1 -0110011101010 Akademika 1 -0110011101010 Pleasantdale 1 -0110011101010 Dumilde 1 -0110011101010 9:00-20:00 1 -0110011101010 Allemania 1 -0110011101010 237,499 1 -0110011101010 Denisson 1 -0110011101010 never-ratified 1 -0110011101010 Stitch 1 -0110011101010 Vicco 1 -0110011101010 Shin-etsu 1 -0110011101010 Stairmaster 1 -0110011101010 VAULTED 1 -0110011101010 then-undeveloped 1 -0110011101010 Conrail-Norfolk 1 -0110011101010 3,000-student 1 -0110011101010 Kawasumi 1 -0110011101010 home-bred 1 -0110011101010 Frontenac 1 -0110011101010 Nestling 1 -0110011101010 Questroyal 1 -0110011101010 Blintz 1 -0110011101010 long-debated 1 -0110011101010 Ipcress 1 -0110011101010 Nasdaq-100 1 -0110011101010 Designate 1 -0110011101010 Champaklal 1 -0110011101010 Kabul-to-Kandahar 1 -0110011101010 Massachewy 1 -0110011101010 Hodogaya 1 -0110011101010 Kashoggi-owned 1 -0110011101010 Whistlestop 1 -0110011101010 Lakeway 1 -0110011101010 Shane-Michael 1 -0110011101010 2,489-member 1 -0110011101010 541,020 1 -0110011101010 younger-oriented 1 -0110011101010 Three-Star 1 -0110011101010 Sandwell 1 -0110011101010 153,563 1 -0110011101010 Innova 1 -0110011101010 Sungkyunkwan 1 -0110011101010 Science-Based 1 -0110011101010 Tijuana-based 1 -0110011101010 Rotherwood 1 -0110011101010 531,848 1 -0110011101010 914,776 1 -0110011101010 Duling 1 -0110011101010 SynchroMed 1 -0110011101010 615,280 1 -0110011101010 1,641,580 1 -0110011101010 Tenn-USS 1 -0110011101010 Smorgon 1 -0110011101010 Lenae 1 -0110011101010 Atsugi 1 -0110011101010 Ameal 1 -0110011101010 AIBC 1 -0110011101010 Aled 1 -0110011101010 scombroid 1 -0110011101010 U.S.and 1 -0110011101010 Litterers 1 -0110011101010 Heronwood 1 -0110011101010 2000-pound 1 -0110011101010 estate-value 1 -0110011101010 2,761 1 -0110011101010 899,170 1 -0110011101010 Elvin 1 -0110011101010 Hillshire 1 -0110011101010 non-Dow 1 -0110011101010 Xericity 1 -0110011101010 drought-devastated 1 -0110011101010 Hillyard 1 -0110011101010 Oligocene 1 -0110011101010 AGRO-INDUSTRIALE 1 -0110011101010 Kiewit-Murdoch 1 -0110011101010 Securities-based 1 -0110011101010 Kennedy-Harvard 1 -0110011101010 Worchester 1 -0110011101010 Wytch 2 -0110011101010 Harcon 2 -0110011101010 Sener 2 -0110011101010 Toagosei 2 -0110011101010 Nikkei-Dow 2 -0110011101010 Gun-ei 2 -0110011101010 Faganello 2 -0110011101010 Lode 2 -0110011101010 Tuckerman 2 -0110011101010 Borscht 2 -0110011101010 Dogwood 2 -0110011101010 Indo-German 2 -0110011101010 Tio 2 -0110011101010 C.C.P.C. 2 -0110011101010 PacificCorp 2 -0110011101010 NonStop 2 -0110011101010 Overthrust 2 -0110011101010 SilverStone 2 -0110011101010 Contadina 2 -0110011101010 Tru 2 -0110011101010 Boisfeuillet 2 -0110011101010 EGC 2 -0110011101010 SCNO 2 -0110011101010 Shinetsu 2 -0110011101010 Hindi 3 -0110011101010 Maruwa 3 -0110011101010 Candlelight 3 -0110011101010 Lowdale 3 -0110011101010 Interfinance 3 -0110011101010 Risen 3 -0110011101010 FullWrite 3 -0110011101010 Monell 3 -0110011101010 100-lawyer 3 -0110011101010 Kanegafuchi 4 -0110011101010 Daicel 4 -0110011101010 Lepanto 4 -0110011101010 Frosted 4 -0110011101010 Jonah 4 -0110011101010 Kromboom 5 -0110011101010 Metro-North 5 -0110011101010 Halter 5 -0110011101010 Newstead 5 -0110011101010 MDB 6 -0110011101010 MultiMate 6 -0110011101010 Driefontein 6 -0110011101010 Borsch 6 -0110011101010 Kureha 6 -0110011101010 Scary 6 -0110011101010 DJ 7 -0110011101010 Wards 7 -0110011101010 Orinoco 8 -0110011101010 Shin-Etsu 8 -0110011101010 Bronze 8 -0110011101010 Koyo 9 -0110011101010 Hanshin 10 -0110011101010 Fats 11 -0110011101010 defoliant 11 -0110011101010 Stonyfield 12 -0110011101010 Pepperidge 12 -0110011101010 Hattori 14 -0110011101010 DeBeers 14 -0110011101010 Taisho 15 -0110011101010 Bayliner 16 -0110011101010 Tokio 20 -0110011101010 AP-Dow 23 -0110011101010 Mathias 31 -0110011101010 Spike 32 -0110011101010 Long-Term 84 -0110011101010 Merrell 108 -0110011101010 Rust 117 -0110011101010 Zacks 124 -0110011101010 Lone 228 -0110011101010 Corn 361 -0110011101010 Farm 937 -0110011101010 Dow 6749 -0110011101011 recalcitrantly 1 -0110011101011 terrierlike 1 -0110011101011 543,525 1 -0110011101011 509,784 1 -0110011101011 red-flushed 1 -0110011101011 then-Republican-controlled 1 -0110011101011 800-megawatt 1 -0110011101011 Flouts 1 -0110011101011 30,000-ton 1 -0110011101011 Democratic-run 1 -0110011101011 comedy/dance/music/performance/theater/video 1 -0110011101011 Chogye 1 -0110011101011 Schwab-led 1 -0110011101011 31,000-gallon 1 -0110011101011 requisitely 1 -0110011101011 Pro-Contra 1 -0110011101011 reapportioning 1 -0110011101011 202-199 1 -0110011101011 177-seat 1 -0110011101011 35-to-54-year-old 1 -0110011101011 Mogok 1 -0110011101011 self-denigrating 1 -0110011101011 SUMMING 1 -0110011101011 1,919 1 -0110011101011 Single-Family 1 -0110011101011 79-17 1 -0110011101011 139-year-old 1 -0110011101011 second-most-important 1 -0110011101011 leadingest 1 -0110011101011 McGovern-Mondale 1 -0110011101011 Lubavitch 1 -0110011101011 257-178 1 -0110011101011 Nader-backed 1 -0110011101011 Davis-led 1 -0110011101011 tax-deferrred 1 -0110011101011 148-member 1 -0110011101011 Daylesford 1 -0110011101011 two-century-old 1 -0110011101011 play-maker 1 -0110011101011 once-threatening 1 -0110011101011 166-member 1 -0110011101011 Nadar-affiliated 1 -0110011101011 camp-besotted 1 -0110011101011 511,200 1 -0110011101011 340-member 1 -0110011101011 All-Peoples 1 -0110011101011 Brokerge 1 -0110011101011 once-ubiquitous 1 -0110011101011 strung-out 1 -0110011101011 Ormsby 1 -0110011101011 seven-degree 1 -0110011101011 indefatigably 1 -0110011101011 212-seat 1 -0110011101011 Tory-dominated 1 -0110011101011 Congress-White 1 -0110011101011 REVS 1 -0110011101011 daffy 1 -0110011101011 under-priced 1 -0110011101011 most-respected 1 -0110011101011 BUMPERS 1 -0110011101011 one-million-member 1 -0110011101011 Biki 1 -0110011101011 globe-circling 1 -0110011101011 Wickham-Valentine 1 -0110011101011 Mironovich 1 -0110011101011 now-illegal 1 -0110011101011 unscreened 1 -0110011101011 most-senior 1 -0110011101011 Iranian-directed 1 -0110011101011 lower-attaining 1 -0110011101011 post-White 1 -0110011101011 grubbiest 1 -0110011101011 57-member 1 -0110011101011 most-hazardous 1 -0110011101011 most-dangerous 1 -0110011101011 Golenishchev-Kutuzov 1 -0110011101011 3-inch-long 1 -0110011101011 scraggily 1 -0110011101011 St.Clair 1 -0110011101011 super-model 1 -0110011101011 iconoclastically 1 -0110011101011 somberest 1 -0110011101011 unneedful 1 -0110011101011 Chabad 1 -0110011101011 bone-numbing 1 -0110011101011 6,600-seat 1 -0110011101011 40-foot-wide 1 -0110011101011 syphilis-ridden 1 -0110011101011 once-dissident 1 -0110011101011 535-member 1 -0110011101011 then-potent 1 -0110011101011 72,800 1 -0110011101011 Long-tailed 1 -0110011101011 now-repentant 1 -0110011101011 drug-filled 1 -0110011101011 Cuba-aligned 1 -0110011101011 pudding-faced 1 -0110011101011 one-million-plus 1 -0110011101011 early-20th-century 1 -0110011101011 clipboard-size 1 -0110011101011 well-noted 1 -0110011101011 Multicenter 1 -0110011101011 quickwitted 1 -0110011101011 adventure-loving 1 -0110011101011 travel-happy 1 -0110011101011 126-year-old 1 -0110011101011 Senate-White 1 -0110011101011 93,800 1 -0110011101011 Huddle 1 -0110011101011 Then-White 1 -0110011101011 pouty-lipped 1 -0110011101011 Convertino 1 -0110011101011 jargon-spouting 1 -0110011101011 Phyfe 1 -0110011101011 modern-science 1 -0110011101011 catchiest 1 -0110011101011 once-outlawed 1 -0110011101011 Elghanayan 2 -0110011101011 Dingo 2 -0110011101011 Reynolda 2 -0110011101011 Kenyah 2 -0110011101011 375-page 2 -0110011101011 right-dominated 2 -0110011101011 Crowded 2 -0110011101011 Estill 2 -0110011101011 Fiddyment 2 -0110011101011 Icarus 2 -0110011101011 Furnace 2 -0110011101011 Marillac 2 -0110011101011 Cabassi 2 -0110011101011 pontificating 2 -0110011101011 700,000-member 2 -0110011101011 Myca 2 -0110011101011 WILLING 2 -0110011101011 Toddle 2 -0110011101011 varnished 2 -0110011101011 Waffle 2 -0110011101011 Spaso 2 -0110011101011 435-member 2 -0110011101011 larger-capacity 2 -0110011101011 Pan-Africanist 2 -0110011101011 Britannic 2 -0110011101011 Taviani 2 -0110011101011 voteless 3 -0110011101011 148-seat 3 -0110011101011 Tinco 3 -0110011101011 Doni 3 -0110011101011 Camillus 3 -0110011101011 Jawaharlal 3 -0110011101011 650-member 3 -0110011101011 white-supremacist 3 -0110011101011 282-seat 3 -0110011101011 Bleak 3 -0110011101011 Streckfus 3 -0110011101011 Ehrenkrantz 3 -0110011101011 management-Shearson 3 -0110011101011 Asi 4 -0110011101011 650-seat 4 -0110011101011 Harbridge 4 -0110011101011 79-seat 4 -0110011101011 ex-White 4 -0110011101011 166-seat 4 -0110011101011 Harney 5 -0110011101011 Khotso 5 -0110011101011 Hen 5 -0110011101011 GOP-controlled 5 -0110011101011 Ashford 5 -0110011101011 Haunted 6 -0110011101011 Miwok 6 -0110011101011 Seventh-day 6 -0110011101011 Chop 7 -0110011101011 Grim 8 -0110011101011 then-White 10 -0110011101011 Ngo 11 -0110011101011 Nader-affiliated 11 -0110011101011 Chart 13 -0110011101011 Republican-controlled 13 -0110011101011 99th 13 -0110011101011 Hash 14 -0110011101011 Pentrust 16 -0110011101011 Mansion 18 -0110011101011 Democrat-controlled 20 -0110011101011 Sekisui 21 -0110011101011 Meissner 22 -0110011101011 DeCesaris 23 -0110011101011 Viet 31 -0110011101011 Democratic-controlled 95 -0110011101011 Random 178 -0110011101011 Rales 276 -0110011101011 White 7619 -0110011101011 Roman 552 -011001110110 271,300 1 -011001110110 then-Los 1 -011001110110 Willner 1 -011001110110 Merinda 1 -011001110110 Safety-First 1 -011001110110 Rosalino 1 -011001110110 oilworker-turned-undertaker 1 -011001110110 Orcas-based 1 -011001110110 Craeg 1 -011001110110 Distribuidora 1 -011001110110 Ambito 1 -011001110110 baggage-maker 1 -011001110110 Wycliffe 1 -011001110110 Indo-Sri 1 -011001110110 U.S.-Out-of-El 1 -011001110110 Electric-San 1 -011001110110 Electric/San 1 -011001110110 Earthquake-San 1 -011001110110 Texas-El 1 -011001110110 Sydney-Los 1 -011001110110 Tijuana-San 1 -011001110110 Age-Controlling 1 -011001110110 Shaf 1 -011001110110 Beach-Boca 1 -011001110110 Beaumont-Port 1 -011001110110 Menjilat 1 -011001110110 Riverside-San 1 -011001110110 Chuva 1 -011001110110 Boston-San 1 -011001110110 NRM. 1 -011001110110 Triad/La 1 -011001110110 Francisco-Los 1 -011001110110 240-seat 1 -011001110110 Festival/Los 1 -011001110110 139-pounder 1 -011001110110 Theatre/Murray 1 -011001110110 Sainte 1 -011001110110 1154 1 -011001110110 U.S.-USSR 1 -011001110110 Cancun-Los 1 -011001110110 Bank-El 1 -011001110110 Britains 1 -011001110110 KQED-TV/San 1 -011001110110 exhausted-looking 1 -011001110110 Peri 1 -011001110110 Puerta 1 -011001110110 Francisco-San 1 -011001110110 MDA/San 1 -011001110110 loosened-up 1 -011001110110 homburg-hatted 1 -011001110110 canonizing 1 -011001110110 York-San 1 -011001110110 Cienco 1 -011001110110 City-Las 1 -011001110110 P.C.S. 1 -011001110110 Chicago-Los 1 -011001110110 Chicago-San 1 -011001110110 Rolly 1 -011001110110 SPINOFFS 1 -011001110110 Advertising/San 1 -011001110110 Anti-Wrinkle 1 -011001110110 pinafore-wearing 1 -011001110110 Sidi 1 -011001110110 Kong-Los 1 -011001110110 Kong-Vancouver-San 1 -011001110110 Cheering 1 -011001110110 Louis-San 1 -011001110110 Tokyo-Los 1 -011001110110 U.S.-Puerto 2 -011001110110 Barbie-sized 2 -011001110110 York-Los 2 -011001110110 Tokyo-San 2 -011001110110 BBDO/Los 2 -011001110110 Narciso 2 -011001110110 Appraising 2 -011001110110 Eulalio 2 -011001110110 California-Los 2 -011001110110 Bank/Fort 2 -011001110110 Conquistador 2 -011001110110 Nevada-Las 2 -011001110110 Diario-La 3 -011001110110 Miami-Fort 3 -011001110110 Sala 3 -011001110110 Dallas-Forth 3 -011001110110 Chambre 3 -011001110110 California-San 4 -011001110110 Animas-La 4 -011001110110 Agha 4 -011001110110 Ilocos 5 -011001110110 Angeles-San 5 -011001110110 Pittsburgh-Des 5 -011001110110 Ras 6 -011001110110 Octavio 8 -011001110110 Cinco 8 -011001110110 Forth 10 -011001110110 Dred 10 -011001110110 Pitt-Des 10 -011001110110 Nuevo 20 -011001110110 Ste. 28 -011001110110 Datuk 30 -011001110110 Achille 31 -011001110110 Dallas/Fort 35 -011001110110 Kuala 44 -011001110110 Corpus 61 -011001110110 Dallas-Fort 101 -011001110110 Buenos 132 -011001110110 Boca 147 -011001110110 Bala 148 -011001110110 Rancho 154 -011001110110 Palo 367 -011001110110 Des 367 -011001110110 Sri 461 -011001110110 Puerto 542 -011001110110 Las 694 -011001110110 Costa 700 -011001110110 La 1071 -011001110110 El 1144 -011001110110 Fort 1491 -011001110110 St. 3498 -011001110110 San 6545 -011001110110 Los 5929 -0110011101110 Kachalova 1 -0110011101110 ex-Wall 1 -0110011101110 Shawmut-State 1 -0110011101110 Eriq 1 -0110011101110 Todas 1 -0110011101110 112th 1 -0110011101110 246,200 1 -0110011101110 3,174-room 1 -0110011101110 Calny-operated 1 -0110011101110 Rozana 1 -0110011101110 Ex-Wall 1 -0110011101110 Senorita 1 -0110011101110 Dallas/ 1 -0110011101110 Viven 1 -0110011101110 Cuihua 1 -0110011101110 eight-to-12-page 1 -0110011101110 Brodskovo 1 -0110011101110 Yuetan 1 -0110011101110 Berzei 1 -0110011101110 158th 1 -0110011101110 News-Wall 1 -0110011101110 Pulawska 1 -0110011101110 Fifty-Ninth 1 -0110011101110 Hollywood-Wall 1 -0110011101110 Dauber 1 -0110011101110 CI. 1 -0110011101110 school-Wall 1 -0110011101110 Fannin 2 -0110011101110 Lenwood 2 -0110011101110 Chernyshevsky 2 -0110011101110 163rd 2 -0110011101110 134th 2 -0110011101110 snowy-haired 2 -0110011101110 FirstBank 2 -0110011101110 Bleecker 2 -0110011101110 anti-Wall 2 -0110011101110 190th 2 -0110011101110 al-Watani 2 -0110011101110 Dans 2 -0110011101110 non-Wall 2 -0110011101110 62nd 2 -0110011101110 Tepeyac 2 -0110011101110 Wail 2 -0110011101110 68th 3 -0110011101110 96th 3 -0110011101110 Bayi 3 -0110011101110 207th 3 -0110011101110 76th 4 -0110011101110 MetLife-State 5 -0110011101110 81st 5 -0110011101110 94th 5 -0110011101110 56th 5 -0110011101110 69th 6 -0110011101110 86th 6 -0110011101110 67th 7 -0110011101110 92nd 8 -0110011101110 Chriss 12 -0110011101110 55th 13 -0110011101110 82nd 20 -0110011101110 59th 20 -0110011101110 Jump 20 -0110011101110 52nd 21 -0110011101110 Bourbon 21 -0110011101110 Elm 22 -0110011101110 53rd 23 -0110011101110 Sesame 28 -0110011101110 Aung 31 -0110011101110 57th 32 -0110011101110 Downing 33 -0110011101110 47th 38 -0110011101110 42nd 48 -0110011101110 Tan 188 -0110011101110 Wall 9492 -0110011101110 Main 329 -0110011101111 10,410 1 -0110011101111 38,197 1 -0110011101111 60,875 1 -0110011101111 1,378,000 1 -0110011101111 27,308 1 -0110011101111 31,206 1 -0110011101111 35,211 1 -0110011101111 7,777 1 -0110011101111 sand-bottom 1 -0110011101111 6,714 1 -0110011101111 11,240,000 1 -0110011101111 wobbled-out 1 -0110011101111 237,130 1 -0110011101111 42,391 1 -0110011101111 47,953 1 -0110011101111 266,225 1 -0110011101111 12,135,453 1 -0110011101111 12,817,484 1 -0110011101111 271,042 1 -0110011101111 18,949,000 1 -0110011101111 33,341,500 1 -0110011101111 12,960,000 1 -0110011101111 69,989,000 1 -0110011101111 13,710,000 1 -0110011101111 1,437,000 1 -0110011101111 288,147 1 -0110011101111 6,101 1 -0110011101111 1,557,000 1 -0110011101111 9,754 1 -0110011101111 8,268 1 -0110011101111 4,659 1 -0110011101111 306,814 1 -0110011101111 6,884,214 1 -0110011101111 7,192,608 1 -0110011101111 284,904 1 -0110011101111 8,975 1 -0110011101111 3,415 1 -0110011101111 70,646 1 -0110011101111 1,369,000 1 -0110011101111 67,191 1 -0110011101111 444,658 1 -0110011101111 351,643 1 -0110011101111 272,698 1 -0110011101111 263,713 1 -0110011101111 1,047,000 1 -0110011101111 9,548 1 -0110011101111 275,708 1 -0110011101111 1,355,000 1 -0110011101111 257,301 1 -0110011101111 77,162 1 -0110011101111 52,540 1 -0110011101111 1,329,000 1 -0110011101111 54,790 1 -0110011101111 nine-and-a-half 1 -0110011101111 post-doomsday 1 -0110011101111 limestone-fenced 1 -0110011101111 15,885,000 1 -0110011101111 15,223,000 1 -0110011101111 1,586,000 1 -0110011101111 59,975 1 -0110011101111 11,320 1 -0110011101111 7,942 1 -0110011101111 7,815 1 -0110011101111 2,425 1 -0110011101111 10,473 1 -0110011101111 10,319 1 -0110011101111 5,845 1 -0110011101111 13,420 1 -0110011101111 14,046 1 -0110011101111 64,041 1 -0110011101111 68,225 1 -0110011101111 11,598,186 1 -0110011101111 NORSKE 1 -0110011101111 12,190,990 1 -0110011101111 266,976 1 -0110011101111 1,917 1 -0110011101111 agree-disagree 1 -0110011101111 217,635 1 -0110011101111 1,732,000 1 -0110011101111 10,533,000 1 -0110011101111 7,450 1 -0110011101111 143,700 1 -0110011101111 4.473 1 -0110011101111 8,367,819 1 -0110011101111 8,705,410 1 -0110011101111 233,065 1 -0110011101111 15,193 1 -0110011101111 143,200 1 -0110011101111 87,100 1 -0110011101111 12,050,000 1 -0110011101111 12,330,000 1 -0110011101111 300,221 1 -0110011101111 337,630 1 -0110011101111 333,446,000 1 -0110011101111 1,216,000 1 -0110011101111 232,444 1 -0110011101111 1,361,000 1 -0110011101111 364,060 1 -0110011101111 estimator 1 -0110011101111 8,797,050 1 -0110011101111 9,219,803 1 -0110011101111 228,578 1 -0110011101111 245,950,000 1 -0110011101111 8,170,000 1 -0110011101111 10,310,000 1 -0110011101111 212,520 1 -0110011101111 6,844 1 -0110011101111 Twenty-six-year-old 1 -0110011101111 10,137 1 -0110011101111 5,437 1 -0110011101111 1,279,000 1 -0110011101111 1,688,000 1 -0110011101111 gross-registered-ton 1 -0110011101111 10,164 1 -0110011101111 44.0479 1 -0110011101111 7,692,862 1 -0110011101111 8,044,314 1 -0110011101111 247,216 1 -0110011101111 0.4536 1 -0110011101111 28.3495 1 -0110011101111 1.60935 1 -0110011101111 Schwabs 1 -0110011101111 7,610,000 1 -0110011101111 1,627,000 1 -0110011101111 42-gallon 1 -0110011101111 non-converted 1 -0110011101111 210,700,000 1 -0110011101111 7,950,000 1 -0110011101111 10,880,000 1 -0110011101111 1,504,000 1 -0110011101111 273,285 1 -0110011101111 1,804,000 1 -0110011101111 methanol-burning 1 -0110011101111 700-cc 1 -0110011101111 300-600 1 -0110011101111 219,369 1 -0110011101111 12,681 1 -0110011101111 53,928 1 -0110011101111 6,092 1 -0110011101111 1,269,000 1 -0110011101111 run-of-the-coop 1 -0110011101111 237,155 1 -0110011101111 1,366,000 1 -0110011101111 2,960,000 1 -0110011101111 10,728 1 -0110011101111 1,468,000 1 -0110011101111 10,725 1 -0110011101111 1,816,000 1 -0110011101111 1,906,000 1 -0110011101111 6,405,000 1 -0110011101111 6,454,000 1 -0110011101111 4,911,000 1 -0110011101111 13,193 1 -0110011101111 18,450 1 -0110011101111 14,675 1 -0110011101111 295,300 1 -0110011101111 60-plus 1 -0110011101111 470,400 1 -0110011101111 10,722,398 1 -0110011101111 13,811 1 -0110011101111 0.021 1 -0110011101111 11,303,946 1 -0110011101111 11,296,859 1 -0110011101111 11,526 1 -0110011101111 1,052,000 1 -0110011101111 4,550 1 -0110011101111 13,080 1 -0110011101111 92,450 1 -0110011101111 11,001,849 1 -0110011101111 11,028,983 1 -0110011101111 unresting 1 -0110011101111 1,338 1 -0110011101111 5,628,000 1 -0110011101111 5,620,000 1 -0110011101111 13,860 1 -0110011101111 18,481 1 -0110011101111 874,877 1 -0110011101111 773,977 1 -0110011101111 10,560 1 -0110011101111 1,677,000 1 -0110011101111 God-made 1 -0110011101111 post-First 1 -0110011101111 9,667,575 1 -0110011101111 28,568,000 1 -0110011101111 35,267,000 1 -0110011101111 4,962,000 1 -0110011101111 3,200,000 1 -0110011101111 1,775,000 1 -0110011101111 466,252 1 -0110011101111 536,737 1 -0110011101111 10,446,368 1 -0110011101111 95,635 1 -0110011101111 8,689 1 -0110011101111 27,881 1 -0110011101111 158,268 1 -0110011101111 9,990 1 -0110011101111 6,875 1 -0110011101111 45-6 1 -0110011101111 243,861 1 -0110011101111 323,666 1 -0110011101111 441,650 1 -0110011101111 1,304,000 1 -0110011101111 BioDread 1 -0110011101111 U.S.-Third 1 -0110011101111 500,500 1 -0110011101111 1,817,000 1 -0110011101111 26,708 1 -0110011101111 27,020 1 -0110011101111 30,702 1 -0110011101111 1,297,000 1 -0110011101111 10,535,904 1 -0110011101111 11,049,928 1 -0110011101111 263,745 1 -0110011101111 0.110 1 -0110011101111 14,304,667 1 -0110011101111 13,622,558 1 -0110011101111 85,598 1 -0110011101111 17,851 1 -0110011101111 105,350 1 -0110011101111 251,591 1 -0110011101111 1,000-cubic 1 -0110011101111 Can-Do 1 -0110011101111 8,025 1 -0110011101111 1,286,000 1 -0110011101111 54,177 1 -0110011101111 71,517 1 -0110011101111 107,300 1 -0110011101111 14,629 1 -0110011101111 11,867,463 1 -0110011101111 1454 1 -0110011101111 1,707 1 -0110011101111 11,575,362 1 -0110011101111 11,601,392 1 -0110011101111 stretched-version 1 -0110011101111 82,730 1 -0110011101111 89,333 1 -0110011101111 287,775 1 -0110011101111 191,000,000 1 -0110011101111 28,150 1 -0110011101111 27,345 1 -0110011101111 497,900 1 -0110011101111 8,596 1 -0110011101111 74,818 1 -0110011101111 66,050 1 -0110011101111 4,875 1 -0110011101111 12,467,009 1 -0110011101111 12,170,853 1 -0110011101111 sweat-type 1 -0110011101111 557,586 1 -0110011101111 18,658 1 -0110011101111 186,200 1 -0110011101111 352,996 1 -0110011101111 2,007,699 1 -0110011101111 2,085,959 1 -0110011101111 288,505 1 -0110011101111 7,120,000 1 -0110011101111 1,568,000 1 -0110011101111 1,789,000 1 -0110011101111 13,298,038 1 -0110011101111 12,712,264 1 -0110011101111 297,300 1 -0110011101111 1,642,000 1 -0110011101111 14,730 1 -0110011101111 295,267 1 -0110011101111 3,412 1 -0110011101111 12,532 1 -0110011101111 NEC-dedicated 1 -0110011101111 16,485,000 1 -0110011101111 1,478,000 1 -0110011101111 494,200 1 -0110011101111 30,700 1 -0110011101111 37,600 1 -0110011101111 1,318,097 1 -0110011101111 1,403,473 1 -0110011101111 272,229 1 -0110011101111 1,676,000 1 -0110011101111 1,784,000 1 -0110011101111 700,00 1 -0110011101111 274,973 1 -0110011101111 absentee-owned 1 -0110011101111 120,100 1 -0110011101111 1,762,000 1 -0110011101111 Liveable 1 -0110011101111 279,867 1 -0110011101111 9,596 1 -0110011101111 flexible-route 1 -0110011101111 4,091 1 -0110011101111 151,175 1 -0110011101111 726,600 1 -0110011101111 31-gallon 1 -0110011101111 68,250 1 -0110011101111 1,439,327 1 -0110011101111 1,520,403 1 -0110011101111 281,119 1 -0110011101111 1,741,000 1 -0110011101111 686,200 1 -0110011101111 fake-o 1 -0110011101111 10,520 1 -0110011101111 bulldozes 1 -0110011101111 10,286 1 -0110011101111 4,008,271 1 -0110011101111 4,206,459 1 -0110011101111 179,470 1 -0110011101111 1,371,000 1 -0110011101111 1,534,000 1 -0110011101111 562,100 1 -0110011101111 295,650 1 -0110011101111 275,935 1 -0110011101111 291,242 1 -0110011101111 241,200 1 -0110011101111 259,400 1 -0110011101111 462,500 1 -0110011101111 399,800 1 -0110011101111 16,590 1 -0110011101111 1,405,000 1 -0110011101111 1,034,000 1 -0110011101111 1,004,000 1 -0110011101111 1,364,000 1 -0110011101111 304,217 1 -0110011101111 12,228 1 -0110011101111 2,339,000 1 -0110011101111 4,562,000 1 -0110011101111 3,037,000 1 -0110011101111 overpadded 1 -0110011101111 rubber-soled 1 -0110011101111 11,250 1 -0110011101111 680,700 1 -0110011101111 378,400 1 -0110011101111 175,250 1 -0110011101111 1,796,000 1 -0110011101111 282,017 1 -0110011101111 24,901.55 1 -0110011101111 167,650 1 -0110011101111 60,200 1 -0110011101111 4,478,000 1 -0110011101111 288,132 1 -0110011101111 1,356,000 1 -0110011101111 96,360,000 1 -0110011101111 212,400 1 -0110011101111 3,791,000 1 -0110011101111 3,351,000 1 -0110011101111 1,526 1 -0110011101111 1,818,000 1 -0110011101111 1,722,000 1 -0110011101111 old-rival 1 -0110011101111 129,300 1 -0110011101111 30.38 1 -0110011101111 6,013,000 1 -0110011101111 them-vs.-us 1 -0110011101111 109,044 1 -0110011101111 69,258 1 -0110011101111 107,250 1 -0110011101111 grubbers 1 -0110011101111 791,214 1 -0110011101111 7,616,000 1 -0110011101111 270,650 1 -0110011101111 4,227,000 1 -0110011101111 263,627 1 -0110011101111 3,544,800 1 -0110011101111 283,700 1 -0110011101111 non-Third 1 -0110011101111 8,941 1 -0110011101111 1,296,000 1 -0110011101111 6,031,000 1 -0110011101111 1,407,000 1 -0110011101111 20-milligram 1 -0110011101111 9,281,414 1 -0110011101111 9,740,712 1 -0110011101111 1,579,000 1 -0110011101111 1,920,000 1 -0110011101111 2,000-odd 1 -0110011101111 277,899 1 -0110011101111 12,864 1 -0110011101111 8,210,000 1 -0110011101111 13,013,682 1 -0110011101111 13,604,048 1 -0110011101111 17,244,000 1 -0110011101111 16,874,000 1 -0110011101111 1,651,000 1 -0110011101111 5,475 1 -0110011101111 27,207 1 -0110011101111 12,363 1 -0110011101111 17,843,000 1 -0110011101111 16,165,000 1 -0110011101111 20,974,000 1 -0110011101111 1,998,000 1 -0110011101111 12,205 1 -0110011101111 2,575,098 1 -0110011101111 267,619 1 -0110011101111 2,679,200 1 -0110011101111 4,646 1 -0110011101111 chariots 1 -0110011101111 2,830,000 1 -0110011101111 29,452 1 -0110011101111 56,925 1 -0110011101111 37,450 1 -0110011101111 8,507 1 -0110011101111 1,242,000 1 -0110011101111 8,548 1 -0110011101111 13,300,874 1 -0110011101111 13,876,774 1 -0110011101111 89,100 1 -0110011101111 244,800 1 -0110011101111 4,040,000 1 -0110011101111 haemophilus 1 -0110011101111 26,461 1 -0110011101111 30,626 1 -0110011101111 20,217 1 -0110011101111 21,502 1 -0110011101111 42,875 1 -0110011101111 Soviet-Third 1 -0110011101111 1,331,000 1 -0110011101111 2,307,479 1 -0110011101111 299,780 1 -0110011101111 2,383,668 1 -0110011101111 6,244 1 -0110011101111 2,575 1 -0110011101111 22,109,000 1 -0110011101111 19,177,000 1 -0110011101111 1,926,000 1 -0110011101111 279,218 1 -0110011101111 205,241 1 -0110011101111 770,895 1 -0110011101111 826,425 1 -0110011101111 272,624 1 -0110011101111 4,077 1 -0110011101111 3,038 1 -0110011101111 7,036 1 -0110011101111 4,365 1 -0110011101111 7,301 1 -0110011101111 8,065 1 -0110011101111 Nonnuclear 1 -0110011101111 1,922,000 1 -0110011101111 259,582 1 -0110011101111 593,452 1 -0110011101111 1,320,000 1 -0110011101111 1,413,000 1 -0110011101111 5,977 1 -0110011101111 1,319,000 1 -0110011101111 1,385,000 1 -0110011101111 1,768,000 1 -0110011101111 253,987 1 -0110011101111 143,068 1 -0110011101111 2.471 1 -0110011101111 1,825,000 1 -0110011101111 telex-receiving 1 -0110011101111 12,846,000 1 -0110011101111 340,000-to-350,000 1 -0110011101111 7,951 1 -0110011101111 1,266,000 1 -0110011101111 199,492 1 -0110011101111 310,521 1 -0110011101111 387,623 1 -0110011101111 2,470,000 1 -0110011101111 3,520,000 1 -0110011101111 1,501,000 1 -0110011101111 1,449,000 1 -0110011101111 over-100-horsepower 1 -0110011101111 10,788 1 -0110011101111 1,303,000 1 -0110011101111 1,017,358 1 -0110011101111 wiggly 1 -0110011101111 13,328,037 1 -0110011101111 289,417 1 -0110011101111 pro-Third 1 -0110011101111 13,895,498 1 -0110011101111 Jeunesses 1 -0110011101111 Musicales 1 -0110011101111 3,976 1 -0110011101111 9,050 1 -0110011101111 12,024 1 -0110011101111 galaxy-sized 1 -0110011101111 12,339 1 -0110011101111 Kintetsu 1 -0110011101111 Left-hand 1 -0110011101111 1,554 1 -0110011101111 7,637 1 -0110011101111 12,040 1 -0110011101111 14,235 1 -0110011101111 11,164 1 -0110011101111 282,400 1 -0110011101111 1,849,000 1 -0110011101111 9,563 1 -0110011101111 916,438 1 -0110011101111 16,789 1 -0110011101111 8,475,840 1 -0110011101111 20,414,000 1 -0110011101111 20,692,000 1 -0110011101111 1,729,000 1 -0110011101111 10,357 1 -0110011101111 2,315 1 -0110011101111 10,340 1 -0110011101111 10,374,443 1 -0110011101111 9,603,121 1 -0110011101111 9,810,000 1 -0110011101111 8,923,486 1 -0110011101111 1,569,000 1 -0110011101111 302,523 1 -0110011101111 1,644,000 1 -0110011101111 4,790,000 1 -0110011101111 479,264 1 -0110011101111 8,176 1 -0110011101111 8,165 1 -0110011101111 80,625 1 -0110011101111 MSX-run 1 -0110011101111 5,015,528 1 -0110011101111 5.5-minute 1 -0110011101111 1,531,257 1 -0110011101111 1,507,781 1 -0110011101111 still-damp 1 -0110011101111 10,154 1 -0110011101111 3,175 1 -0110011101111 45,075 1 -0110011101111 26,400 1 -0110011101111 9,030 1 -0110011101111 Lines-Trans 1 -0110011101111 6,732 1 -0110011101111 500-thousand 1 -0110011101111 112,700 1 -0110011101111 16,395 1 -0110011101111 423,500 1 -0110011101111 427,100 1 -0110011101111 electric-driven 1 -0110011101111 230-plus 1 -0110011101111 19,450,000 1 -0110011101111 29,413,000 1 -0110011101111 11,498,000 1 -0110011101111 10,997,000 1 -0110011101111 6,192,797 1 -0110011101111 8,382 1 -0110011101111 4,083 1 -0110011101111 101,299 1 -0110011101111 1,345,000 1 -0110011101111 2,688 1 -0110011101111 110,700 1 -0110011101111 1,715,000 1 -0110011101111 10,088,333 1 -0110011101111 9,373,002 1 -0110011101111 12,875 1 -0110011101111 58,075 1 -0110011101111 13,780 1 -0110011101111 14,734 1 -0110011101111 7,340 1 -0110011101111 14,991 1 -0110011101111 11,944 1 -0110011101111 5,672,078 1 -0110011101111 7,305,000 1 -0110011101111 4,329,000 1 -0110011101111 2,535,000 1 -0110011101111 5,978,874 1 -0110011101111 5,891,023 1 -0110011101111 63,100 1 -0110011101111 145,100 1 -0110011101111 124,400 1 -0110011101111 127,700 1 -0110011101111 138,100 1 -0110011101111 139.029 1 -0110011101111 9,062 1 -0110011101111 9,337 1 -0110011101111 9,745 1 -0110011101111 16,488 1 -0110011101111 13,832 1 -0110011101111 87,675 1 -0110011101111 strapped-in 1 -0110011101111 4,353 1 -0110011101111 9,827,000 1 -0110011101111 10,662,112 1 -0110011101111 780,976 1 -0110011101111 509,660 1 -0110011101111 1,162 1 -0110011101111 2,754 1 -0110011101111 Fund/ 1 -0110011101111 11,529 1 -0110011101111 10,962,921 1 -0110011101111 137,800 1 -0110011101111 1,458,000 1 -0110011101111 gold-medal-winning 1 -0110011101111 56,725 1 -0110011101111 9,002 1 -0110011101111 2,138 1 -0110011101111 11,197 1 -0110011101111 10,448 1 -0110011101111 81,900 1 -0110011101111 482,640 1 -0110011101111 MATTERS 1 -0110011101111 96,700 1 -0110011101111 66,700 1 -0110011101111 23,430 1 -0110011101111 1,911,000 1 -0110011101111 1,578,000 1 -0110011101111 2,886,209 1 -0110011101111 2,926,985 1 -0110011101111 Haemophilus 1 -0110011101111 12,722 1 -0110011101111 3,918 1 -0110011101111 8,564 1 -0110011101111 6,374 1 -0110011101111 12,622 1 -0110011101111 9,336 1 -0110011101111 1,124,255 1 -0110011101111 30,537 1 -0110011101111 778,908 1 -0110011101111 881,981,581 1 -0110011101111 232,100,416 1 -0110011101111 98,500 1 -0110011101111 132,500 1 -0110011101111 82,875 1 -0110011101111 57,875 1 -0110011101111 4,115,283 1 -0110011101111 4,117,924 1 -0110011101111 15,985 1 -0110011101111 299,297 1 -0110011101111 1,388,000 1 -0110011101111 9,626,000 1 -0110011101111 21,928 1 -0110011101111 11,987 1 -0110011101111 46,875 1 -0110011101111 McBisney 1 -0110011101111 3,524,000 1 -0110011101111 1,505,000 1 -0110011101111 1,498,000 1 -0110011101111 1,636,000 1 -0110011101111 305,652 1 -0110011101111 3,516,225 1 -0110011101111 3,489,871 1 -0110011101111 2,101,828 1 -0110011101111 2,073,337 1 -0110011101111 210,796,000 1 -0110011101111 32,466,000 1 -0110011101111 11,233 1 -0110011101111 1,908,000 1 -0110011101111 53,375 1 -0110011101111 10,789 1 -0110011101111 sizenine 1 -0110011101111 26,544 1 -0110011101111 9,525 1 -0110011101111 1,691,000 1 -0110011101111 1,671,000 1 -0110011101111 216,611 1 -0110011101111 20,585 1 -0110011101111 35,655 1 -0110011101111 50,094 1 -0110011101111 12,120 1 -0110011101111 116,975 1 -0110011101111 1,056,675 1 -0110011101111 1,752,000 1 -0110011101111 7,130 1 -0110011101111 104,275 1 -0110011101111 3,602,000 1 -0110011101111 8,563,943 1 -0110011101111 8,394,273 1 -0110011101111 9,287 1 -0110011101111 236,913 1 -0110011101111 378,326 1 -0110011101111 119,975 1 -0110011101111 8,379,000 1 -0110011101111 9,048,000 1 -0110011101111 13,575,019 1 -0110011101111 14,170,761 1 -0110011101111 8,751 1 -0110011101111 8,952,344 1 -0110011101111 9,516,566 1 -0110011101111 3,430,000 1 -0110011101111 2,360,000 1 -0110011101111 5,760,000 1 -0110011101111 32,988 1 -0110011101111 10,596,437 1 -0110011101111 11,506,645 1 -0110011101111 286,816 1 -0110011101111 2,042 1 -0110011101111 1,545,000 1 -0110011101111 8,742,015 1 -0110011101111 9,211,417 1 -0110011101111 23,034 1 -0110011101111 125,075 1 -0110011101111 10,358 1 -0110011101111 7,146 1 -0110011101111 7,012 1 -0110011101111 6,913 1 -0110011101111 9,146,666 1 -0110011101111 9,264,636 1 -0110011101111 12,403 1 -0110011101111 10,871,793 1 -0110011101111 11,760,925 1 -0110011101111 9,391,615 1 -0110011101111 9,501,132 1 -0110011101111 6,918,298 1 -0110011101111 12,731,000 1 -0110011101111 15,371,000 1 -0110011101111 3,661,000 1 -0110011101111 3,172,000 1 -0110011101111 1,526,000 1 -0110011101111 1,610,000 1 -0110011101111 18,894 1 -0110011101111 46,292 1 -0110011101111 73,150 1 -0110011101111 15,214 1 -0110011101111 15,170 1 -0110011101111 16,163 1 -0110011101111 69,160 1 -0110011101111 Macintosh-based 1 -0110011101111 Fotoform 1 -0110011101111 1,487,500 1 -0110011101111 2,698,400 1 -0110011101111 8,627,080 1 -0110011101111 8,828,668 1 -0110011101111 69,317 1 -0110011101111 88,294 1 -0110011101111 655,441 1 -0110011101111 821,110 1 -0110011101111 120,700 1 -0110011101111 157,611 1 -0110011101111 1,913,000 1 -0110011101111 178,330,000 1 -0110011101111 28,434,000 1 -0110011101111 goddamned 1 -0110011101111 9,350 1 -0110011101111 all-night-game 1 -0110011101111 53,925 1 -0110011101111 19,919 1 -0110011101111 127,249 1 -0110011101111 736,311 1 -0110011101111 233,880 1 -0110011101111 675,943 1 -0110011101111 500,676 1 -0110011101111 2,138,528 1 -0110011101111 18,686,000 1 -0110011101111 1,926,933 1 -0110011101111 1,812,419 1 -0110011101111 Postmodern 1 -0110011101111 114,889 1 -0110011101111 7,189,337 1 -0110011101111 7,066,603 1 -0110011101111 53,560 1 -0110011101111 926,612 1 -0110011101111 inflation-ravaged 1 -0110011101111 16,907 1 -0110011101111 4,320,000 1 -0110011101111 7,785 1 -0110011101111 7,465,597 1 -0110011101111 7,357,298 1 -0110011101111 15,238,000 1 -0110011101111 Planeala 1 -0110011101111 Non-Dollar 1 -0110011101111 1,683,000 1 -0110011101111 22,883,000 1 -0110011101111 12,058 1 -0110011101111 44,725 1 -0110011101111 116,333 1 -0110011101111 113,654 1 -0110011101111 75,675 1 -0110011101111 stockinged 1 -0110011101111 1,498 1 -0110011101111 4,372 1 -0110011101111 1,021,728 1 -0110011101111 249,800 1 -0110011101111 10,730 1 -0110011101111 11,863,000 1 -0110011101111 9,794,767 1 -0110011101111 6,890,980 1 -0110011101111 6,732,529 1 -0110011101111 5,325 1 -0110011101111 6,015 1 -0110011101111 7,638 1 -0110011101111 75,700 1 -0110011101111 3,612 1 -0110011101111 16,578 1 -0110011101111 1,662,000 1 -0110011101111 halfbillion 1 -0110011101111 96,100 1 -0110011101111 357,912 1 -0110011101111 221,815 1 -0110011101111 1,321,000 1 -0110011101111 0.0514 1 -0110011101111 250,800 1 -0110011101111 7,647,295 1 -0110011101111 56,825 1 -0110011101111 17,823 1 -0110011101111 3,136 1 -0110011101111 6,576 1 -0110011101111 89,850 1 -0110011101111 7,197 1 -0110011101111 1,939,000 2 -0110011101111 1,606,000 2 -0110011101111 1,736,000 2 -0110011101111 2,060,000 2 -0110011101111 1,694,000 2 -0110011101111 broad-reaching 2 -0110011101111 1,743,000 2 -0110011101111 1,956,000 2 -0110011101111 2,002,000 2 -0110011101111 262,445 2 -0110011101111 1,000-board 2 -0110011101111 suction-cupped 2 -0110011101111 1,859,000 2 -0110011101111 1,635,000 2 -0110011101111 3,097 2 -0110011101111 1,595,000 2 -0110011101111 251,920 2 -0110011101111 238,689 2 -0110011101111 1,323,000 2 -0110011101111 299,681 2 -0110011101111 294,358 2 -0110011101111 1,349,000 2 -0110011101111 deadweight 2 -0110011101111 1,867,000 2 -0110011101111 1,227,000 2 -0110011101111 1,832,000 2 -0110011101111 1,549,000 2 -0110011101111 1,747,000 2 -0110011101111 push-pull 2 -0110011101111 1,271,000 2 -0110011101111 1,618 2 -0110011101111 1,843,000 2 -0110011101111 FT-Actuaries 2 -0110011101111 7,979 2 -0110011101111 1,354,000 2 -0110011101111 1,791,000 2 -0110011101111 262.6 2 -0110011101111 1,343,000 2 -0110011101111 1,754,000 2 -0110011101111 1,792,000 2 -0110011101111 1,844,000 2 -0110011101111 1,696,000 2 -0110011101111 1,969,000 2 -0110011101111 1,794,000 2 -0110011101111 1,811,000 2 -0110011101111 293,912 2 -0110011101111 264,725 2 -0110011101111 1,944,000 2 -0110011101111 3,775 2 -0110011101111 114,800 2 -0110011101111 1,827,000 2 -0110011101111 1,949,000 2 -0110011101111 1,781,000 2 -0110011101111 754,000 2 -0110011101111 11,170 2 -0110011101111 4,981 2 -0110011101111 30,115 2 -0110011101111 306,796 2 -0110011101111 Livable 2 -0110011101111 2,019,000 2 -0110011101111 1,322,000 2 -0110011101111 1,435,000 2 -0110011101111 302,811 2 -0110011101111 1,381,000 2 -0110011101111 2,009,000 2 -0110011101111 1,797,000 2 -0110011101111 265,731 2 -0110011101111 274,963 2 -0110011101111 315,009 2 -0110011101111 297,446 2 -0110011101111 1,957,000 2 -0110011101111 1,841,000 2 -0110011101111 1,647,000 2 -0110011101111 McHose 2 -0110011101111 1,836,000 2 -0110011101111 1,774,000 2 -0110011101111 677,739 2 -0110011101111 1,947,000 2 -0110011101111 298,357 2 -0110011101111 1,871,000 2 -0110011101111 1,834,000 2 -0110011101111 1,819,000 2 -0110011101111 1,721,000 2 -0110011101111 1,877,000 2 -0110011101111 1,822,000 2 -0110011101111 5,294 2 -0110011101111 298,478 2 -0110011101111 appetite-suppressant 2 -0110011101111 1,898,000 2 -0110011101111 1,663,000 2 -0110011101111 1,376,000 2 -0110011101111 2,668 2 -0110011101111 272,047 2 -0110011101111 1,332,000 2 -0110011101111 1,706,000 2 -0110011101111 1,967,000 2 -0110011101111 1,727,000 2 -0110011101111 1,777,000 2 -0110011101111 1,633,000 2 -0110011101111 271,459 2 -0110011101111 1,640,000 2 -0110011101111 41,425 2 -0110011101111 1,328,000 2 -0110011101111 8,585 2 -0110011101111 209,771 2 -0110011101111 9,343 2 -0110011101111 1,753,000 2 -0110011101111 431,330 2 -0110011101111 1,987,000 2 -0110011101111 13,081 2 -0110011101111 Matchmaker 2 -0110011101111 1,918,000 2 -0110011101111 294,059 3 -0110011101111 2,204 3 -0110011101111 1,766,000 3 -0110011101111 299,767 3 -0110011101111 294,177 3 -0110011101111 1,399,000 3 -0110011101111 1,338,000 3 -0110011101111 280,403 3 -0110011101111 1,689,000 3 -0110011101111 1,693,000 3 -0110011101111 283,303 3 -0110011101111 283,102 3 -0110011101111 293,914 3 -0110011101111 1,905,000 3 -0110011101111 1,719,000 3 -0110011101111 1,699,000 3 -0110011101111 283,134 3 -0110011101111 1,858,000 3 -0110011101111 264,159 3 -0110011101111 296,156 3 -0110011101111 1,685,000 3 -0110011101111 1,710,000 3 -0110011101111 1,996,000 3 -0110011101111 1,673,000 3 -0110011101111 279,451 3 -0110011101111 1,702,000 3 -0110011101111 1,718,000 3 -0110011101111 295,010 3 -0110011101111 298,223 3 -0110011101111 248,161 3 -0110011101111 254,165 3 -0110011101111 1,649,000 3 -0110011101111 271,014 3 -0110011101111 oil-equivalent 3 -0110011101111 232,807 3 -0110011101111 1,773,000 3 -0110011101111 1,851,000 3 -0110011101111 1,869,000 3 -0110011101111 297,709 3 -0110011101111 1,942,000 3 -0110011101111 291,471 3 -0110011101111 290,695 3 -0110011101111 287,192 3 -0110011101111 277,345 3 -0110011101111 1,793,000 3 -0110011101111 1,698,000 3 -0110011101111 209,204 3 -0110011101111 282,253 3 -0110011101111 293,073 3 -0110011101111 1,965,000 3 -0110011101111 280,300 3 -0110011101111 1,624,000 3 -0110011101111 295,532 3 -0110011101111 waterline 3 -0110011101111 1,838,000 3 -0110011101111 1,846,000 4 -0110011101111 1,799,000 4 -0110011101111 1,991,000 4 -0110011101111 1,866,000 4 -0110011101111 296,649 4 -0110011101111 1,690,000 4 -0110011101111 roadless 4 -0110011101111 1,945,000 4 -0110011101111 1,697,000 4 -0110011101111 1,787,000 4 -0110011101111 1,337,000 4 -0110011101111 1,748,000 4 -0110011101111 1,798,000 4 -0110011101111 pasenger 4 -0110011101111 webbed 4 -0110011101111 25,600 4 -0110011101111 1,529,000 4 -0110011101111 1,921,000 4 -0110011101111 1,723,000 5 -0110011101111 1,426,000 5 -0110011101111 1,695,000 5 -0110011101111 3,410 5 -0110011101111 1,700,000 6 -0110011101111 TX 7 -0110011101111 1,856,000 7 -0110011101111 revenue-passenger 7 -0110011101111 948,000 8 -0110011101111 troy 17 -0110011101111 square-foot 30 -0110011101111 nautical 36 -0110011101111 2,204.6 63 -0110011101111 2,204.62 76 -0110011101111 Trans 424 -0110011101111 cubic 613 -0110011101111 square 925 -0110011101111 metric 1801 -0110011101111 Third 1900 -0110011101111 passenger 2896 -01100111100 Intercultural 1 -01100111100 Gips 1 -01100111100 City/New 1 -01100111100 Co.-Irving 1 -01100111100 agency-search 1 -01100111100 Intercurrency 1 -01100111100 Lightbulb 1 -01100111100 Mercentile 1 -01100111100 InterBank 1 -01100111100 based-Henry 1 -01100111100 South-District 1 -01100111100 electric-fan 1 -01100111100 horseplayers 1 -01100111100 coffee-futures 2 -01100111100 Interbank 33 -01100111100 Times-Stock 70 -01100111100 Cotton 181 -01100111100 Developments 182 -01100111100 Metal 386 -01100111100 Stock 15618 -01100111100 Mercantile 1306 -01100111101 cash-index 1 -01100111101 equity-securities 1 -01100111101 71,197 1 -01100111101 Exchange-approved 1 -01100111101 Organzation 1 -01100111101 Bomduck 1 -01100111101 Exchage 1 -01100111101 Cecil-Stuart 1 -01100111101 Nissan-Saab 1 -01100111101 energy-commodity 1 -01100111101 Preview 1 -01100111101 Schifrin 1 -01100111101 81,396 1 -01100111101 Decmber 1 -01100111101 Vold 1 -01100111101 Entomologist 1 -01100111101 Fryd 1 -01100111101 Leve 1 -01100111101 Handicraft 1 -01100111101 undershooting 1 -01100111101 Excchange 1 -01100111101 Ex-change 1 -01100111101 Freches-Thory 1 -01100111101 popeyed 1 -01100111101 Prain 1 -01100111101 Splash-Seafood 1 -01100111101 Costigyan 1 -01100111101 Lotz 1 -01100111101 Ozdemir 1 -01100111101 Pendell 1 -01100111101 Market. 1 -01100111101 Weerasinghe 1 -01100111101 Exchnage 1 -01100111101 1190.61 1 -01100111101 McNichol 1 -01100111101 HST 1 -01100111101 Kreuger 2 -01100111101 Clairmont 2 -01100111101 Bienstock 2 -01100111101 Exchange-sponsored 2 -01100111101 Kirdar 2 -01100111101 Manufactures 3 -01100111101 Exchange-listed 10 -01100111101 Jacket 15 -01100111101 Exchanges 42 -01100111101 Ownership 97 -01100111101 Exchange 23079 -01100111101 Mergers 229 -011001111100 York-Northern 1 -011001111100 Hamphire 1 -011001111100 Japser 1 -011001111100 Haven. 1 -011001111100 York-to-Florida 1 -011001111100 Jersey-Massachusetts 1 -011001111100 York-centered 1 -011001111100 Skete 1 -011001111100 Insertions 1 -011001111100 Orleansbased 1 -011001111100 York-Stony 1 -011001111100 York-dominated 1 -011001111100 Loophole 1 -011001111100 Century/Vista 1 -011001111100 York-chartered 1 -011001111100 Historicism 1 -011001111100 York-wise 1 -011001111100 Straitsville 1 -011001111100 Wld 1 -011001111100 Repubic 1 -011001111100 Superball 1 -011001111100 Testaments 1 -011001111100 Orlean-based 1 -011001111100 Traditionalist 1 -011001111100 York-SF 1 -011001111100 Brunswick.N.J. 1 -011001111100 Orleans-style 2 -011001111100 York-Chicago 2 -011001111100 York-to-London 2 -011001111100 York-Atlantic 2 -011001111100 Zealand-controlled 3 -011001111100 York 41736 -011001111100 York. 15 -011001111101 York-Rye 1 -011001111101 Highs 1 -011001111101 Deal/Great 1 -011001111101 Deal-style 1 -011001111101 Jersey-size 1 -011001111101 Agespeak 1 -011001111101 Cutting-Edge 1 -011001111101 York-headquarters 1 -011001111101 Culprit 1 -011001111101 York-Beijing 1 -011001111101 York-licensed 1 -011001111101 Republic/Henry 1 -011001111101 exchange-disclosure 1 -011001111101 Yorkian 1 -011001111101 PASO 1 -011001111101 Hampshirite 1 -011001111101 Hampshire-Massachusetts 1 -011001111101 reserach 1 -011001111101 KGB-Engine 1 -011001111101 Guardhouse 1 -011001111101 Orleans-area 1 -011001111101 York-to-Chicago 1 -011001111101 Guinean 1 -011001111101 Frontiersmen 1 -011001111101 Yorkese 1 -011001111101 Deal-type 1 -011001111101 cooking-bag 1 -011001111101 England-New 1 -011001111101 Mexico-raised 1 -011001111101 Century/New 1 -011001111101 Jersy 1 -011001111101 Trans-Century 1 -011001111101 Jersey-bound 1 -011001111101 York-to-New 1 -011001111101 York-type 1 -011001111101 Headphones 1 -011001111101 York-is-a-jungle 1 -011001111101 Republic/Basic 1 -011001111101 super-windows 1 -011001111101 Jersey/New 1 -011001111101 York-Baruch 1 -011001111101 Deal-socialist 1 -011001111101 Age-like 1 -011001111101 Deal-Fair 1 -011001111101 Vibrometer 1 -011001111101 Matriarch 1 -011001111101 clot-breaking 1 -011001111101 York/New 1 -011001111101 York-agency 1 -011001111101 Line-Heron 1 -011001111101 York-London 1 -011001111101 Jersey-sized 1 -011001111101 Orleanians 2 -011001111101 Dive 2 -011001111101 Prieta 2 -011001111101 Viruses 2 -011001111101 Jersey. 2 -011001111101 Delhi-based 2 -011001111101 Edsels 2 -011001111101 Encylopedia 2 -011001111101 Hampshire-based 2 -011001111101 York-ased 2 -011001111101 Yorky 2 -011001111101 Zealand-born 2 -011001111101 York-Miami 2 -011001111101 Orleans-Baton 2 -011001111101 Deal-Great 2 -011001111101 500-size 2 -011001111101 Fria 2 -011001111101 York-style 2 -011001111101 Tack 2 -011001111101 Zealand-dollar 3 -011001111101 Jerseyite 3 -011001111101 Haven-based 3 -011001111101 York-Boston-Washington 3 -011001111101 Rightists 3 -011001111101 1109 3 -011001111101 Ulm 3 -011001111101 Guineans 3 -011001111101 Agers 3 -011001111101 York-born 3 -011001111101 Caledonians 4 -011001111101 AIX 4 -011001111101 Contrarian 4 -011001111101 Otani 4 -011001111101 York-Irving 5 -011001111101 Prometheus 5 -011001111101 Traditionalists 5 -011001111101 York-bound 6 -011001111101 York-Washington 6 -011001111101 Automobili 6 -011001111101 Braunfels 6 -011001111101 MediCo 6 -011001111101 York-Boston 6 -011001111101 Zealander 6 -011001111101 Hampshirites 7 -011001111101 Hebrides 7 -011001111101 Paltz 8 -011001111101 Hamsphire 9 -011001111101 Pig 9 -011001111101 Englanders 13 -011001111101 Yorkbased 14 -011001111101 York-New 17 -011001111101 Zealanders 17 -011001111101 York-area 22 -011001111101 Jersey-based 32 -011001111101 Caledonia 32 -011001111101 Testament 35 -011001111101 Braintree 45 -011001111101 Canaan 46 -011001111101 Visions 47 -011001111101 Zealand-based 48 -011001111101 Criterion 51 -011001111101 Era 61 -011001111101 Rochelle 75 -011001111101 Orleans-based 79 -011001111101 Guinea 94 -011001111101 Yorkers 137 -011001111101 Deal 140 -011001111101 Haven 194 -011001111101 Delhi 207 -011001111101 Yorker 216 -011001111101 Brunswick 274 -011001111101 Age 382 -011001111101 Year 456 -011001111101 Orleans 724 -011001111101 Zealand 988 -011001111101 Hampshire 1524 -011001111101 England 2876 -011001111101 York-based 3375 -011001111101 Jersey 2902 -011001111110 Jarlais 1 -011001111110 Rito 1 -011001111110 Paso-based 1 -011001111110 Louisan 1 -011001111110 Francisco- 1 -011001111110 Verde-related 1 -011001111110 Pasionaria 1 -011001111110 Palito 1 -011001111110 Violetas 1 -011001111110 Vegas-bound 1 -011001111110 Vivandiere 1 -011001111110 Cabos 1 -011001111110 Comales 1 -011001111110 Reine 1 -011001111110 Johnsbury 1 -011001111110 Kar 1 -011001111110 Gonave 1 -011001111110 Centro-based 1 -011001111110 Rey-based 1 -011001111110 Batisse 1 -011001111110 Dutfield 1 -011001111110 Otro 1 -011001111110 Naciones 1 -011001111110 Mollojones 1 -011001111110 Maravillas 1 -011001111110 Chaux-de-Fonds 1 -011001111110 Bergerie 1 -011001111110 Penitente 1 -011001111110 Quina-style 1 -011001111110 Hadj 1 -011001111110 Oroya 1 -011001111110 Worth-Tarrant 1 -011001111110 Pesca 1 -011001111110 Vegan 1 -011001111110 Jeronimo 1 -011001111110 Brava 1 -011001111110 Petersburg/ 1 -011001111110 Paglia 1 -011001111110 Rico.The 1 -011001111110 Cynwd 1 -011001111110 Jose-area 1 -011001111110 Genevoise 1 -011001111110 Angeles-Anaheim-Riverside 1 -011001111110 Martinin-the-Fields 1 -011001111110 Mundo 1 -011001111110 Rico/Caribbean 1 -011001111110 Martinville 1 -011001111110 Francico-based 1 -011001111110 Lampur 1 -011001111110 Nispero 1 -011001111110 Cua 1 -011001111110 Marie-aux-Chaines 1 -011001111110 Angeles-bound 1 -011001111110 Angeles-Phoenix 1 -011001111110 George-Hyslop 1 -011001111110 Francico 1 -011001111110 Nazaire 1 -011001111110 Colline 1 -011001111110 Ceiba 1 -011001111110 Francsico-based 1 -011001111110 Triumfo 1 -011001111110 Paraiso 1 -011001111110 Diego-maker 1 -011001111110 Carrizal 1 -011001111110 John's-Georgetown 1 -011001111110 Follette 1 -011001111110 Liceo 1 -011001111110 Agencia 1 -011001111110 Dominquez 1 -011001111110 Villita 1 -011001111110 Murieta 1 -011001111110 Coyotes 1 -011001111110 Franscico 1 -011001111110 Habra 1 -011001111110 Haciendita 1 -011001111110 Jose-Santa 1 -011001111110 Holmes-style 1 -011001111110 Maarten 1 -011001111110 Puta 1 -011001111110 Pei-designed 1 -011001111110 Siglo 1 -011001111110 Angeles-to-New 1 -011001111110 Angelesbased 1 -011001111110 Fiamma 1 -011001111110 Tunas 1 -011001111110 Caneyes 1 -011001111110 Fransisco 1 -011001111110 Marleybone 1 -011001111110 Joya 1 -011001111110 Mesa/Irvine/Newport 1 -011001111110 Lanka-ward 1 -011001111110 Gioconda 1 -011001111110 Francisco-born 1 -011001111110 Mojados 1 -011001111110 Nick-knacks 1 -011001111110 Alambrados 1 -011001111110 Ramaleros 1 -011001111110 Ilegales 1 -011001111110 Razon 1 -011001111110 1-800-682-8080 1 -011001111110 Francisco-New 1 -011001111110 Elizario 1 -011001111110 Vanguardia 1 -011001111110 salaam 1 -011001111110 Rican-American 1 -011001111110 Ranchito 1 -011001111110 Canastilla 1 -011001111110 Heemskerk 1 -011001111110 Maramotti 1 -011001111110 Smeralda 1 -011001111110 James-the-Less 1 -011001111110 Diego-area 1 -011001111110 Paul. 1 -011001111110 Canada-Flintridge 1 -011001111110 Francisico-based 1 -011001111110 Ricans/Latinos 1 -011001111110 Vegans 1 -011001111110 Clair-population 1 -011001111110 Trios 1 -011001111110 Pocatiere 1 -011001111110 Albans-based 1 -011001111110 Knox-like 1 -011001111110 Spiridon 1 -011001111110 Vineri 1 -011001111110 Francsico 1 -011001111110 Franciscso-based 1 -011001111110 Vegas-style 1 -011001111110 Angeles-Dallas 1 -011001111110 Teufels 1 -011001111110 WALKOUT 1 -011001111110 Ligne 1 -011001111110 Moines. 1 -011001111110 Mirada-based 1 -011001111110 Papin 1 -011001111110 Miguelito 1 -011001111110 Reppublica 1 -011001111110 Charrito 1 -011001111110 Tanura 1 -011001111110 Olivos 1 -011001111110 Segunda 1 -011001111110 Mochis 1 -011001111110 Hueso 1 -011001111110 Angeline 1 -011001111110 Lumpur-based 1 -011001111110 Pomar 1 -011001111110 Vieille 1 -011001111110 Rochefoucault 1 -011001111110 Pacto 1 -011001111110 Zayid 1 -011001111110 Ruche 1 -011001111110 Prensa. 1 -011001111110 Louis. 1 -011001111110 Rebaja 1 -011001111110 Brajne 1 -011001111110 Hune 1 -011001111110 Lumpar 1 -011001111110 Roucheans 1 -011001111110 Pasoan 1 -011001111110 Bechir 1 -011001111110 Cuevas 1 -011001111110 Barquero 1 -011001111110 Worth-Tokyo 1 -011001111110 Angeles-Tokyo 1 -011001111110 Ronde 1 -011001111110 Comenzales 1 -011001111110 Courte 1 -011001111110 Sombrero 1 -011001111110 Crescenta 2 -011001111110 Cienega 2 -011001111110 Alphonsus 2 -011001111110 Rukns 2 -011001111110 Mochito 2 -011001111110 Zapato 2 -011001111110 Grotta 2 -011001111110 Cachas 2 -011001111110 Allemands 2 -011001111110 Meninas 2 -011001111110 Chaudiere 2 -011001111110 Strada 2 -011001111110 Mosquitia 2 -011001111110 Florido 2 -011001111110 Lauderdale/Hollywood 2 -011001111110 Jorre 2 -011001111110 Tache 2 -011001111110 Caballo 2 -011001111110 Trobe 2 -011001111110 Guerro 2 -011001111110 Rica-based 2 -011001111110 Lee-based 2 -011001111110 Hamra 2 -011001111110 Lepage 2 -011001111110 Fille 2 -011001111110 Valse 2 -011001111110 Occhetto 2 -011001111110 Vistoso 2 -011001111110 Leopolda 2 -011001111110 Fumble 2 -011001111110 Emilion 2 -011001111110 Republica 2 -011001111110 Malinche 2 -011001111110 Eustatius 2 -011001111110 Myers-Cape 2 -011001111110 Fakhar 2 -011001111110 Palina 2 -011001111110 Madres 2 -011001111110 Puente 2 -011001111110 Brasiles 2 -011001111110 Cygne 2 -011001111110 Canadans 2 -011001111110 Angeles-Long 2 -011001111110 Antonians 2 -011001111110 Bravito 2 -011001111110 Devens 2 -011001111110 Epoca 2 -011001111110 Cronica 2 -011001111110 Pasoans 2 -011001111110 Bacantes 2 -011001111110 Malaguena 2 -011001111110 Mesa-based 2 -011001111110 Castellon 2 -011001111110 Damas 2 -011001111110 Amistad 2 -011001111110 Angeles-to-Chicago 2 -011001111110 Couto 2 -011001111110 Nuys-based 2 -011001111110 Fransisco-based 2 -011001111110 Ilocandia 2 -011001111110 Rico-7 2 -011001111110 Rouchefoucauld 2 -011001111110 Baronne 2 -011001111110 Marais 2 -011001111110 Luke's-Roosevelt 2 -011001111110 Penasquitos 2 -011001111110 Caille 2 -011001111110 Molino 2 -011001111110 Crepe 2 -011001111110 Cid 2 -011001111110 Gotthard 2 -011001111110 Tropez 2 -011001111110 Tuque 2 -011001111110 Teniente 2 -011001111110 Gaudens 3 -011001111110 Tristesse 3 -011001111110 Cajon 3 -011001111110 Famiglia 3 -011001111110 Rican-based 3 -011001111110 Londe 3 -011001111110 Tuneros 3 -011001111110 Perla 3 -011001111110 Pinos 3 -011001111110 Pasqual 3 -011001111110 Jornada 3 -011001111110 Eligius 3 -011001111110 Mer 3 -011001111110 Cerrito 3 -011001111110 Belvoir 3 -011001111110 Angles-based 3 -011001111110 Maguey 3 -011001111110 Lupton 3 -011001111110 Bernards 3 -011001111110 Comercio 3 -011001111110 Ge 3 -011001111110 Totten 3 -011001111110 Cielo 3 -011001111110 Nido 3 -011001111110 Louisans 3 -011001111110 Jolla-based 3 -011001111110 Eustache 3 -011001111110 Syndicale 3 -011001111110 Rinascente 3 -011001111110 Parolaccia 3 -011001111110 Motte 3 -011001111110 Jean-sur-Richelieu 3 -011001111110 Franciso-based 3 -011001111110 Jari 3 -011001111110 Sonnambula 3 -011001111110 Malfa 3 -011001111110 Porvenir 3 -011001111110 Brygida 4 -011001111110 Alto-based 4 -011001111110 Lobos 4 -011001111110 Calisto 4 -011001111110 Jicarito 4 -011001111110 Martirio 4 -011001111110 Rioja 4 -011001111110 Cholo 4 -011001111110 Repubblica 4 -011001111110 Sylphide 4 -011001111110 Caracol 4 -011001111110 Esperanza 4 -011001111110 Fosse 4 -011001111110 Bicocca 4 -011001111110 Petersburg-based 4 -011001111110 Moines-based 4 -011001111110 Pais 4 -011001111110 Angeles. 4 -011001111110 Sandeman 4 -011001111110 Tiempo 4 -011001111110 McAnuff 4 -011001111110 Angelization 4 -011001111110 Congreso 4 -011001111110 Cicciolina 5 -011001111110 Sarre 5 -011001111110 Simeon 5 -011001111110 Dimas 5 -011001111110 Stampa 5 -011001111110 Tigres 5 -011001111110 Vey 5 -011001111110 Cristobal 5 -011001111110 Bayadere 5 -011001111110 Louis-area 5 -011001111110 Cucamonga 5 -011001111110 Nacion 5 -011001111110 Mouline 5 -011001111110 Detrick 6 -011001111110 Sill 6 -011001111110 Franciso 6 -011001111110 Jose-based 6 -011001111110 Caravelle 6 -011001111110 Torito 6 -011001111110 Muette 6 -011001111110 Creme 6 -011001111110 Financiero 6 -011001111110 Migra 6 -011001111110 Angeles-class 6 -011001111110 Chipote 6 -011001111110 Marque 7 -011001111110 Kitts 7 -011001111110 Paul-based 7 -011001111110 Amador 7 -011001111110 Florian 7 -011001111110 Alamein 7 -011001111110 Huachuca 7 -011001111110 Pleneros 7 -011001111110 Maina 7 -011001111110 Lauderdale-based 7 -011001111110 Barrios 7 -011001111110 Nik 7 -011001111110 Grange 7 -011001111110 Franciscans 8 -011001111110 Vallarta 8 -011001111110 Paisajito 8 -011001111110 Bernadino 8 -011001111110 Diegans 8 -011001111110 Russa 8 -011001111110 Benning 8 -011001111110 Espectador 8 -011001111110 Francisco-area 8 -011001111110 Capitan 8 -011001111110 Lankans 9 -011001111110 Helens 9 -011001111110 Branche 9 -011001111110 Franco-Canadienne 9 -011001111110 Coipa 9 -011001111110 Villette 9 -011001111110 Fondiaria 10 -011001111110 Worth-based 10 -011001111110 Urho 10 -011001111110 Cruces 10 -011001111110 Barres 10 -011001111110 Dix 10 -011001111110 Catharines 11 -011001111110 Cadena 11 -011001111110 Fleur 11 -011001111110 Morena 11 -011001111110 Vrain 11 -011001111110 Lucie 12 -011001111110 Franciscan 12 -011001111110 Ord 12 -011001111110 Olmos 12 -011001111110 Suu 12 -011001111110 Porte 12 -011001111110 Riva 13 -011001111110 Pollo 14 -011001111110 Mirada 14 -011001111110 Cinq 14 -011001111110 Camino 14 -011001111110 Dias 15 -011001111110 Rico-based 16 -011001111110 Albans 16 -011001111110 Crosse 16 -011001111110 Vegas-based 17 -011001111110 Centro 17 -011001111110 Dorado 18 -011001111110 Gatos 18 -011001111110 Antonio-based 18 -011001111110 Geniere 18 -011001111110 Alamitos 19 -011001111110 Francisville 19 -011001111110 Nino 20 -011001111110 Onofre 20 -011001111110 Chico 20 -011001111110 Bernardino 21 -011001111110 Boheme 21 -011001111110 Diario 21 -011001111110 Dominguez 22 -011001111110 Leandro 22 -011001111110 Ansgar 23 -011001111110 Plata 25 -011001111110 Angeles-area 25 -011001111110 Quinta 25 -011001111110 Bamba 25 -011001111110 Barillo 26 -011001111110 Therese 27 -011001111110 Plaines 28 -011001111110 Altos 30 -011001111110 Ricans 30 -011001111110 Cloud 33 -011001111110 Quina 36 -011001111110 Norte 38 -011001111110 Lauro 38 -011001111110 Jude 40 -011001111110 Lumpur 41 -011001111110 Alamos 41 -011001111110 Croix 46 -011001111110 Petite 47 -011001111110 Rue 48 -011001111110 Paz 50 -011001111110 Colinas 52 -011001111110 Joaquin 56 -011001111110 Regis 58 -011001111110 Guardia 60 -011001111110 Prensa 61 -011001111110 Christi 61 -011001111110 Verde 68 -011001111110 Segundo 68 -011001111110 Clair 70 -011001111110 Lankan 76 -011001111110 Jacinto 88 -011001111110 Seco 104 -011001111110 Rafael 114 -011001111110 Mateo 128 -011001111110 Aires 132 -011001111110 Diego-based 145 -011001111110 Raton 146 -011001111110 Cynwyd 147 -011001111110 Fernando 160 -011001111110 Rican 192 -011001111110 Petersburg 210 -011001111110 Khoo 216 -011001111110 Jolla 222 -011001111110 Lanka 251 -011001111110 Lauderdale 263 -011001111110 Paso 296 -011001111110 Alto 313 -011001111110 Moines 320 -011001111110 Juan 332 -011001111110 Rica 350 -011001111110 Louis-based 374 -011001111110 Rico 430 -011001111110 Salvador 531 -011001111110 Francisco-based 551 -011001111110 Vegas 619 -011001111110 Antonio 683 -011001111110 Worth 875 -011001111110 Jose 935 -011001111110 Angeles-based 1165 -011001111110 Diego 1202 -011001111110 Louis 1983 -011001111110 Francisco 2995 -011001111110 Angeles 4652 -0110011111110 Xertex 1 -0110011111110 Pro-Med 1 -0110011111110 Pierrepont 1 -0110011111110 Pre-Eminent 1 -0110011111110 Balestra 1 -0110011111110 Clajon 1 -0110011111110 VGM 1 -0110011111110 Middex 1 -0110011111110 Innovent 1 -0110011111110 G&M 1 -0110011111110 Daehan 1 -0110011111110 Hanalei 1 -0110011111110 Greaves/Invesco 1 -0110011111110 Skalski 1 -0110011111110 KBH 1 -0110011111110 Melber 1 -0110011111110 LSRM 1 -0110011111110 Intra 1 -0110011111110 Ilex 1 -0110011111110 SHUWA 1 -0110011111110 Almaraz. 1 -0110011111110 Callendar 1 -0110011111110 Noddings-Calamos 1 -0110011111110 Quimica 1 -0110011111110 Greenspan-isn't-so-bad 1 -0110011111110 Dellsher 1 -0110011111110 Aenus 1 -0110011111110 313,251 1 -0110011111110 Ltd./Citicorp 1 -0110011111110 Hoax 1 -0110011111110 Wichita-based 1 -0110011111110 Kreisler 1 -0110011111110 481,800 1 -0110011111110 Bonafide 1 -0110011111110 323,800 1 -0110011111110 Invia 1 -0110011111110 worker-advocacy 1 -0110011111110 Jones-Telerate 1 -0110011111110 Shenken 1 -0110011111110 Trican 1 -0110011111110 Corneliuson 1 -0110011111110 Acquest 1 -0110011111110 Ellenburg 1 -0110011111110 334.49 1 -0110011111110 L&W 1 -0110011111110 Narrangansett 1 -0110011111110 Novatech 1 -0110011111110 14A/B 1 -0110011111110 McCan 1 -0110011111110 Jordan/Zalaznick 1 -0110011111110 Ingeniera 1 -0110011111110 Equico 1 -0110011111110 Kaminski/Engles 1 -0110011111110 LN 1 -0110011111110 XRAL 1 -0110011111110 Unicare 1 -0110011111110 Stonebridge 1 -0110011111110 Prolific 1 -0110011111110 Inward 1 -0110011111110 Nylon 1 -0110011111110 NewSouth 1 -0110011111110 FHL 1 -0110011111110 Electronic/General 1 -0110011111110 AIZ. 1 -0110011111110 Stanley-Proto 1 -0110011111110 Leperq 1 -0110011111110 Postinfarction 1 -0110011111110 Soviet-violated 1 -0110011111110 Mini-Wheats 1 -0110011111110 PIC 1 -0110011111110 Jones/Irwin 1 -0110011111110 EQB-Oak 1 -0110011111110 Daesung 1 -0110011111110 MEG 1 -0110011111110 Scirica 1 -0110011111110 UGTC 1 -0110011111110 TVM 1 -0110011111110 FirstCity 1 -0110011111110 CRSS 2 -0110011111110 Engles 2 -0110011111110 Selko 2 -0110011111110 Vialardi 2 -0110011111110 Aggad 2 -0110011111110 1-B/C 2 -0110011111110 Nissei-BOT 2 -0110011111110 Husk 2 -0110011111110 McGlocklin 2 -0110011111110 DCS 2 -0110011111110 Primus 2 -0110011111110 Joseph/Viking 2 -0110011111110 Broadcort 2 -0110011111110 Revy 2 -0110011111110 Pavlova 2 -0110011111110 Madoff 2 -0110011111110 Lotsoff 2 -0110011111110 MGIC 3 -0110011111110 Everbright 3 -0110011111110 Self-Employment 3 -0110011111110 Sanki 3 -0110011111110 Fostin 3 -0110011111110 Visumatic 3 -0110011111110 Metallbank 3 -0110011111110 BK 3 -0110011111110 Schooner 4 -0110011111110 Polen 4 -0110011111110 Canarim 4 -0110011111110 Smilen 4 -0110011111110 Fiasco 4 -0110011111110 Jones/Telerate 4 -0110011111110 Macheski/Pappas 5 -0110011111110 DB 5 -0110011111110 Strong/Corneliuson 6 -0110011111110 Postel 6 -0110011111110 Flakes 6 -0110011111110 Hypo 7 -0110011111110 Fidelco 9 -0110011111110 Holston 10 -0110011111110 Jones-Irwin 12 -0110011111110 Briarcliff 13 -0110011111110 Geneve 16 -0110011111110 Caywood-Christian 16 -0110011111110 Morison 16 -0110011111110 Atalanta 21 -0110011111110 Cove 54 -0110011111110 Waller 56 -0110011111110 Jones 6887 -0110011111110 Belt 427 -01100111111110 Hammouda 1 -01100111111110 sama 1 -01100111111110 Shoda 1 -01100111111110 firms-Sullivan 1 -01100111111110 Lycnh 1 -01100111111110 al-Zumr 1 -01100111111110 CROCKETT 1 -01100111111110 PETERSON 1 -01100111111110 Frigerio 1 -01100111111110 Telecator 1 -01100111111110 Myong 1 -01100111111110 Yukihira 1 -01100111111110 Gunnarsson 1 -01100111111110 FRENT 1 -01100111111110 GDL 1 -01100111111110 BRACED 1 -01100111111110 Sanley 1 -01100111111110 HYPOTHEKEN 1 -01100111111110 Beillin 1 -01100111111110 Shioden 1 -01100111111110 Khonglah 1 -01100111111110 Joseh 1 -01100111111110 Langstone 1 -01100111111110 Deressa 1 -01100111111110 Ruthven 1 -01100111111110 ARABES 1 -01100111111110 Auto-Electric 1 -01100111111110 Charles-Bush 1 -01100111111110 THL 1 -01100111111110 BATIMENT 1 -01100111111110 Kirsti 1 -01100111111110 Stanley-backed 1 -01100111111110 Runabout 1 -01100111111110 Heatter 1 -01100111111110 Mlotek 1 -01100111111110 Westphalen 1 -01100111111110 DREMAN 1 -01100111111110 Umebayashi 1 -01100111111110 Iliev 1 -01100111111110 Lehman-Hutton 1 -01100111111110 KAUNDA 1 -01100111111110 SCHLOSS 1 -01100111111110 Sds. 1 -01100111111110 Stassinopoulos 1 -01100111111110 Lnch 1 -01100111111110 STOCKMAN 1 -01100111111110 Markoe 1 -01100111111110 Bakwin 1 -01100111111110 ANSBACHER 1 -01100111111110 Wargurg 1 -01100111111110 DASSAULT-BREGUET 1 -01100111111110 HOIST 1 -01100111111110 Vegetius 1 -01100111111110 Funshares 1 -01100111111110 6,502.4 1 -01100111111110 president-rates 1 -01100111111110 ZORNOW 1 -01100111111110 Tallentyre 1 -01100111111110 Poms 1 -01100111111110 Grenf 1 -01100111111110 Stanley/British 1 -01100111111110 Warburg-Soditic 1 -01100111111110 Marushita 1 -01100111111110 Rojo 1 -01100111111110 WARBURG 2 -01100111111110 MassCo 2 -01100111111110 Glaros 2 -01100111111110 Odier 2 -01100111111110 Gopnik 2 -01100111111110 Mongtomery 2 -01100111111110 Czyz 2 -01100111111110 Supplements 2 -01100111111110 Ochman 2 -01100111111110 Ciments 2 -01100111111110 ROCKETED 2 -01100111111110 HALE 2 -01100111111110 Trutz 2 -01100111111110 Comeaux 2 -01100111111110 Nowitz 2 -01100111111110 Activator 3 -01100111111110 Tutton 3 -01100111111110 Bursatiles 3 -01100111111110 Shindler 3 -01100111111110 Rysanek 4 -01100111111110 Campenhout 4 -01100111111110 Investimentos 4 -01100111111110 MYERSON 4 -01100111111110 IRON 5 -01100111111110 Lynch-led 5 -01100111111110 FARGO 6 -01100111111110 Stanley-led 6 -01100111111110 Lynch-backed 7 -01100111111110 JONES 16 -01100111111110 Ventres 29 -01100111111110 Keegan 60 -01100111111110 Olmstead 91 -01100111111110 SAVINGS 113 -01100111111110 Grenfell 545 -01100111111110 Lynch 4570 -01100111111110 Stanley 3555 -01100111111111 SELLSCHAFT 1 -01100111111111 Forage 1 -01100111111111 Lehamn 1 -01100111111111 NACHRICHTEN 1 -01100111111111 TGC 1 -01100111111111 LoveLocks 1 -01100111111111 Lehman-Nippon 1 -01100111111111 Soffa 1 -01100111111111 Prebond 1 -01100111111111 Morawinska 1 -01100111111111 Betalingssentral 1 -01100111111111 SILLY 1 -01100111111111 Niehans 1 -01100111111111 Pizzarro 1 -01100111111111 694,200 1 -01100111111111 Michigan-Wisconsin 1 -01100111111111 Industrie-Beteiligungs 1 -01100111111111 Manifatture 1 -01100111111111 Paykel 1 -01100111111111 Pacific-Hoare 1 -01100111111111 Maniffature 1 -01100111111111 Jacon 1 -01100111111111 zioni 1 -01100111111111 Furze 1 -01100111111111 HRT 1 -01100111111111 Consolidted 1 -01100111111111 Motors-a 1 -01100111111111 WFI 1 -01100111111111 Jitsugyu 1 -01100111111111 Stanley-British 1 -01100111111111 Purification 1 -01100111111111 X-Mark 1 -01100111111111 Marsh/Maas 2 -01100111111111 Lehman/American 2 -01100111111111 Sparkassen 2 -01100111111111 WIX 2 -01100111111111 Penn-Dixie 2 -01100111111111 HUNTER 2 -01100111111111 Datacomm 3 -01100111111111 Hardie 3 -01100111111111 Maclaren 3 -01100111111111 Krar 4 -01100111111111 Smothers 5 -01100111111111 Crucible 6 -01100111111111 Prebon 341 -01100111111111 Heavy 415 -01100111111111 Lehman 3905 -01100111111111 Guaranty 652 -0110100 Saigh 1 -0110100 Vielmetter 1 -0110100 Woof 1 -0110100 Vallon 1 -0110100 Leati 1 -0110100 Blomberg 1 -0110100 Chaine 1 -0110100 Candia 1 -0110100 Gravenchon 1 -0110100 Thorvik 1 -0110100 Cremone 1 -0110100 Abendroth 1 -0110100 Klobnack 1 -0110100 Kalischer 1 -0110100 Nolting 1 -0110100 Mussavi 1 -0110100 Greenough 1 -0110100 Friedman. 1 -0110100 Velsor 1 -0110100 Gorkum 1 -0110100 pulchella 1 -0110100 linifolia 1 -0110100 persica 1 -0110100 Clader 1 -0110100 Normandin 1 -0110100 Beito 1 -0110100 Bernanke 1 -0110100 Bushore 1 -0110100 Ehrle 1 -0110100 Etter 1 -0110100 Webbe 1 -0110100 Thorburne 1 -0110100 Vennewitz 1 -0110100 Mersjohann 1 -0110100 Lefebre 1 -0110100 Stumme 1 -0110100 Marfin 1 -0110100 Macgregor 1 -0110100 Talalla 1 -0110100 Calnan 1 -0110100 Schapp 1 -0110100 Zhikov 1 -0110100 Skaug 1 -0110100 Zangrilli 1 -0110100 Welles-like 1 -0110100 Donley 1 -0110100 Arble 1 -0110100 Shchegolev 1 -0110100 Herbig 1 -0110100 Brourman 1 -0110100 Borgnine 1 -0110100 Lanzilotti 1 -0110100 DeBate 1 -0110100 Grindley 1 -0110100 Brof 1 -0110100 Kallifatides 1 -0110100 Kaling 1 -0110100 Gethers 1 -0110100 Aherne 1 -0110100 Charteris 1 -0110100 Soroses 1 -0110100 Tsuzawa 1 -0110100 Sinberg 1 -0110100 Newcombe 1 -0110100 Kanno 1 -0110100 Katzer 1 -0110100 Bakman 1 -0110100 Kreitner 1 -0110100 Varaldi 1 -0110100 Uckmar 1 -0110100 Farofano 1 -0110100 Kinsen 1 -0110100 Mosbakk 1 -0110100 Dahik 1 -0110100 Dahlstrom 1 -0110100 Klarsfeld 1 -0110100 Mosee 1 -0110100 Alkus 1 -0110100 Luley 1 -0110100 Vellenga 1 -0110100 Ackerson 1 -0110100 Lathan 1 -0110100 Tovig 1 -0110100 Mishler 1 -0110100 Gawid 1 -0110100 Fangio 1 -0110100 Fromson 1 -0110100 Simkins 1 -0110100 Bouris 1 -0110100 AitLaouissine 1 -0110100 Seig 1 -0110100 Hessee 1 -0110100 Voegeli 1 -0110100 Doorne 1 -0110100 Haywar 1 -0110100 VanCaspel 1 -0110100 Zaks 1 -0110100 Lindeloff 1 -0110100 Moissinac 1 -0110100 Scatterday 1 -0110100 Denenberg 1 -0110100 Richert 1 -0110100 Mufson 1 -0110100 Culpeper 1 -0110100 LaLoggia 1 -0110100 Drone 1 -0110100 Zupan 1 -0110100 Agawa 1 -0110100 Herickhoff 1 -0110100 Patrizzi 1 -0110100 MCGARR 1 -0110100 Direen 1 -0110100 Mandoki 1 -0110100 Scovell 1 -0110100 Tokody 1 -0110100 Sapper 1 -0110100 Kurtag 1 -0110100 Bilbo 1 -0110100 Didat 1 -0110100 Almori 1 -0110100 Saint-Leon 1 -0110100 Geronimos 1 -0110100 Rogich 1 -0110100 Sitwell 1 -0110100 Sukowa 1 -0110100 Zaragosa 1 -0110100 Eliassen 1 -0110100 Zerrer 1 -0110100 Chaitanya 1 -0110100 LaLannes 1 -0110100 Laslett 1 -0110100 Hagio 1 -0110100 Segebartt 1 -0110100 MacMahon 1 -0110100 Heitzman 1 -0110100 Bakaly 1 -0110100 Chaix 1 -0110100 Sofinco 1 -0110100 Meinhardt 1 -0110100 Steckbeck 1 -0110100 Bruce-Briggs 1 -0110100 mortuis 1 -0110100 Carazo 1 -0110100 Grundheber 1 -0110100 Nimsgern 1 -0110100 Kravtsov 1 -0110100 Bowlby 1 -0110100 Bawden 1 -0110100 Keneally 1 -0110100 Reyor 1 -0110100 Buse 1 -0110100 Shlaudeman 1 -0110100 Maniche 1 -0110100 Bartlestone 1 -0110100 Nozhim 1 -0110100 Cohrs 1 -0110100 Misher 1 -0110100 Gehr 1 -0110100 Slatinaru 1 -0110100 Patricoff 1 -0110100 Freytag 1 -0110100 Mikkelson 1 -0110100 Cantu 1 -0110100 Fujinuma 1 -0110100 Kotlikoff 1 -0110100 Bevel 1 -0110100 Colletti 1 -0110100 Kuznetsova 1 -0110100 Fedorov 1 -0110100 Favre 1 -0110100 Bauerman 1 -0110100 Orfaly 1 -0110100 Schicktanz 1 -0110100 Qicheng 1 -0110100 Isserman 1 -0110100 dente 1 -0110100 Veiga 1 -0110100 Willeke 1 -0110100 Minielly 1 -0110100 Milland 1 -0110100 Wildes 1 -0110100 Kalmin 1 -0110100 Abass 1 -0110100 Kallstron 1 -0110100 Schutte 1 -0110100 Birabeau 1 -0110100 Grue 1 -0110100 Tsutui 1 -0110100 Bogolyubskaya 1 -0110100 Uccello 1 -0110100 Koerners 1 -0110100 Katsumura 1 -0110100 Brailovsky 1 -0110100 Kratowicz 1 -0110100 Castellaneta 1 -0110100 Tumoainen 1 -0110100 Rifkins 1 -0110100 Ginsbergh 1 -0110100 Emmiyan 1 -0110100 Machalaba 1 -0110100 Micklosh 1 -0110100 Sieyes 1 -0110100 Yaryan 1 -0110100 Hanburger 1 -0110100 MacDuff 1 -0110100 Andalucia 1 -0110100 Coonms 1 -0110100 Dessouki 1 -0110100 al-Said 1 -0110100 Veronin 1 -0110100 Baroway 1 -0110100 Ricardo-Campbell 1 -0110100 Vanderbyl 1 -0110100 Gratzel 1 -0110100 Civileti 1 -0110100 Sylbert 1 -0110100 Kashkashian 1 -0110100 Ginastera 1 -0110100 Esler 1 -0110100 Loumi 1 -0110100 Spingarn 1 -0110100 Zakham 1 -0110100 Janger 1 -0110100 Rahner 1 -0110100 Zehring 1 -0110100 Tartun 1 -0110100 Anania 1 -0110100 Bonvalet 1 -0110100 Wesselsky 1 -0110100 Szoka 1 -0110100 Yoneda 1 -0110100 Jabber 1 -0110100 Barangan 1 -0110100 Dinan 1 -0110100 Docken 1 -0110100 Obraztsova 1 -0110100 Mikelsen 1 -0110100 Huntford 1 -0110100 Arbeli-Almoslino 1 -0110100 Hessenthaler 1 -0110100 Wersching 1 -0110100 LaCorte 1 -0110100 Diop 1 -0110100 Goralski 1 -0110100 Prybyla 1 -0110100 Gianacakes 1 -0110100 Karpas 1 -0110100 Takeshima 1 -0110100 Khoza 1 -0110100 Slipkowsky 1 -0110100 Contabilidad 1 -0110100 Teitel 1 -0110100 Tennnenbaum 1 -0110100 Greathouse 1 -0110100 Fiedel 1 -0110100 Panneciere 1 -0110100 Bernardeau 1 -0110100 Nason 1 -0110100 Jencks 1 -0110100 Wehnau 1 -0110100 Conniff 1 -0110100 Mieno 1 -0110100 Boleyn 1 -0110100 Strobels 1 -0110100 Kooluris 1 -0110100 Michals 1 -0110100 Mize. 1 -0110100 Solimena 1 -0110100 Gosden 1 -0110100 Goden 1 -0110100 Barzini 1 -0110100 Ventriss 1 -0110100 Sandow 1 -0110100 Pawlick 1 -0110100 Frelick 1 -0110100 Barrys 1 -0110100 Balridge 1 -0110100 Dubinksy 1 -0110100 Carton 1 -0110100 Pinero 1 -0110100 Ensor 1 -0110100 Greenwalt 1 -0110100 Derisbourg 1 -0110100 Pells 1 -0110100 Godkin 1 -0110100 Posgate 1 -0110100 Roo 1 -0110100 Mildmay 1 -0110100 Jonckheer 1 -0110100 Zabila 1 -0110100 Mocholov 1 -0110100 al-Kharifa 1 -0110100 Teichmann 1 -0110100 Katica 1 -0110100 Melby 1 -0110100 Besch 1 -0110100 Stamberg 1 -0110100 Silberman. 1 -0110100 Bouvier 1 -0110100 Hailes 1 -0110100 Diaz-Herrera 1 -0110100 Y.D. 1 -0110100 Durie 1 -0110100 Brzoska 1 -0110100 Chuet 1 -0110100 DeSante 1 -0110100 Zebian 1 -0110100 Watley 1 -0110100 Alvisos 1 -0110100 Lanterman 1 -0110100 Barishnikov 1 -0110100 Tvaladzo 1 -0110100 Juaregui 1 -0110100 Matassa 1 -0110100 Sakanaka 1 -0110100 Monson 1 -0110100 Vlast 1 -0110100 Iwafuchi 1 -0110100 Tullio 1 -0110100 AHERN 1 -0110100 Dench 1 -0110100 Folts 1 -0110100 Spaan 1 -0110100 Gubicza 1 -0110100 Lupica 1 -0110100 Kleins 1 -0110100 Ananiashvili 1 -0110100 Semenyaka 1 -0110100 Artyushkin 1 -0110100 Duhart 1 -0110100 Thalheimer 1 -0110100 Bierschbach 1 -0110100 Kinglake 1 -0110100 Giuggio 1 -0110100 Do-Rights 1 -0110100 Zager 1 -0110100 Hunst 1 -0110100 Bombardiere 1 -0110100 Moraz 1 -0110100 Obenzinger 1 -0110100 Rahill 1 -0110100 Babchuk 1 -0110100 Drupsteen 1 -0110100 Rybczynski 1 -0110100 Lorayes 1 -0110100 Mellish 1 -0110100 Pertuiset 1 -0110100 Zaknic 1 -0110100 Mizell 1 -0110100 Saretsky 1 -0110100 Raiford 1 -0110100 Woestendiek 1 -0110100 Konwicki 1 -0110100 Wajda 1 -0110100 Mankey 1 -0110100 Fierson 1 -0110100 Fallin 1 -0110100 Yarnall 1 -0110100 Schrempp 1 -0110100 Bildt 1 -0110100 Elsbernd 1 -0110100 Verhoeven 1 -0110100 Santora 1 -0110100 Ornellas 1 -0110100 Hatakeda 1 -0110100 Chung-Yul 1 -0110100 Puelicher 1 -0110100 Glauberman. 1 -0110100 Kurzmann 1 -0110100 Lenner 1 -0110100 Beyerhelm 1 -0110100 Yesalis 1 -0110100 Pfeuffer 1 -0110100 McBrearty 1 -0110100 Vorchheimer 1 -0110100 Balcon 1 -0110100 Claesz 1 -0110100 Stoltzner 1 -0110100 HILER 1 -0110100 Salgo 1 -0110100 Grenier 1 -0110100 Solomentsev 1 -0110100 Ghiz 1 -0110100 Caiani 1 -0110100 Krzysztalowicz 1 -0110100 Poplack 1 -0110100 Prelock 1 -0110100 Ferer 1 -0110100 Rzewuski 1 -0110100 Eiseman 1 -0110100 Hankamer 1 -0110100 Druehl 1 -0110100 Fieldhouse 1 -0110100 Vyshinsky 1 -0110100 Hafid 1 -0110100 Lagrone 1 -0110100 Kindler 1 -0110100 Katzen 1 -0110100 Dabrowksi 1 -0110100 Blainey 1 -0110100 Hemsley 1 -0110100 Goicoechea 1 -0110100 Jackson. 1 -0110100 Aldington 1 -0110100 Brusse 1 -0110100 Shuart 1 -0110100 Thomopoulous 1 -0110100 Aspinall 1 -0110100 Jory 1 -0110100 Gretsky 1 -0110100 Burgold 1 -0110100 Polwrek 1 -0110100 Jumonville 1 -0110100 Chachkin 1 -0110100 Beloglazov 1 -0110100 Shenon 1 -0110100 Hibel 1 -0110100 Gerrits 1 -0110100 Chelminsky 1 -0110100 Gutfruend 1 -0110100 al-Khalidi 1 -0110100 Goslow 1 -0110100 Warmerdam 1 -0110100 Bonoir 1 -0110100 Marlowes 1 -0110100 Oliansky 1 -0110100 Murdani 1 -0110100 Investissments 1 -0110100 Zatkoff 1 -0110100 Wyoming-Penthouse 1 -0110100 Banowsky 1 -0110100 Delany 1 -0110100 Kamio 1 -0110100 Medlar 1 -0110100 Rafnell 1 -0110100 Burket 1 -0110100 Scovern 1 -0110100 Swaiko 1 -0110100 Avramis 1 -0110100 Loejos 1 -0110100 Mukalla 1 -0110100 Krisher 1 -0110100 Play-it-Safe 1 -0110100 Velleman 1 -0110100 Kout 1 -0110100 Aliberti 1 -0110100 Kreuz 1 -0110100 Stirba 1 -0110100 Sanders-Phillips 1 -0110100 Teichner 1 -0110100 Shaben 1 -0110100 Bergmeijer 1 -0110100 Barnicle 1 -0110100 McAraw 1 -0110100 Santoni 1 -0110100 Ganser 1 -0110100 Delsner 1 -0110100 Utsch 1 -0110100 Leiper 1 -0110100 Alsogaray 1 -0110100 Prudkov 1 -0110100 Bureker 1 -0110100 Congeniality 1 -0110100 Plattner 1 -0110100 Gwyther 1 -0110100 Hardouvelis 1 -0110100 Kertzer 1 -0110100 Schele 1 -0110100 Mallers 1 -0110100 Erismann 1 -0110100 Khaddafi 1 -0110100 Mazeroski 1 -0110100 Willoch 1 -0110100 Redleaf 1 -0110100 Gerhards 1 -0110100 Portman-type 1 -0110100 Burroughes 1 -0110100 Gudea 1 -0110100 Ruckleshaus 1 -0110100 Melnbardis 1 -0110100 Yonemoto 1 -0110100 Neukranz 1 -0110100 Clume 1 -0110100 Mallis 1 -0110100 Boushelle 1 -0110100 Kossoff 1 -0110100 Khaghigian 1 -0110100 Seel 1 -0110100 Postes 1 -0110100 Grabow 1 -0110100 Pury 1 -0110100 Rombauts 1 -0110100 Raffald 1 -0110100 Risque 1 -0110100 Vegh 1 -0110100 Winogard 1 -0110100 Maneff 1 -0110100 Borchers 1 -0110100 8222 1 -0110100 Warnement 1 -0110100 Speth 1 -0110100 Petrov 1 -0110100 Wasicsko 1 -0110100 Macnee 1 -0110100 Grieder 1 -0110100 Frohlich 1 -0110100 Wassersug 1 -0110100 Naeem 1 -0110100 Guerman 1 -0110100 Terpsikhorov 1 -0110100 Kliun 1 -0110100 Lelyfeld 1 -0110100 Kustodiev 1 -0110100 C-139 1 -0110100 Comden 1 -0110100 Vineberg 1 -0110100 Polzin 1 -0110100 Ringgenberg 1 -0110100 Warshay 1 -0110100 Lopardo 1 -0110100 Gasdia 1 -0110100 Shattner 1 -0110100 Baltay 1 -0110100 Innis 1 -0110100 Goldey 1 -0110100 Vinyard 1 -0110100 Zengpei 1 -0110100 Liuzza 1 -0110100 Domingarena 1 -0110100 Hesham 1 -0110100 Mayran 1 -0110100 Burgen 1 -0110100 Djughashvili 1 -0110100 Kopetski 1 -0110100 Wollemborg 1 -0110100 Poliansky 1 -0110100 Bonnerive 1 -0110100 Davis-Blake 1 -0110100 Leana 1 -0110100 Greenbury 1 -0110100 Liebgott 1 -0110100 Murningham 1 -0110100 Koyonagi 1 -0110100 Connon 1 -0110100 Tourischeva 1 -0110100 Perlow 1 -0110100 Artemov 1 -0110100 Fotino 1 -0110100 Karlton 1 -0110100 Pendley 1 -0110100 Kenel 1 -0110100 Lavrinc 1 -0110100 Berlant 1 -0110100 Versteeg 1 -0110100 Skerry 1 -0110100 Tienda 1 -0110100 Kirzner 1 -0110100 Berryessa 1 -0110100 DuBrin 1 -0110100 Zinke 1 -0110100 Hafny 1 -0110100 Waseem 1 -0110100 Donavan 1 -0110100 Erdilek 1 -0110100 Celada 1 -0110100 Kheirullah 1 -0110100 Berresi 1 -0110100 Church-River 1 -0110100 Zabinski 1 -0110100 Jarry 1 -0110100 Crumbley 1 -0110100 Gerolmo 1 -0110100 Skutch 1 -0110100 Ledewitz 1 -0110100 Yaldwin 1 -0110100 Maihafer 1 -0110100 Kifner 1 -0110100 Panney 1 -0110100 Potok 1 -0110100 Spyrison 1 -0110100 Seegrist 1 -0110100 Buzick 1 -0110100 Simpson-style 1 -0110100 Rudzinski 1 -0110100 Milkulski 1 -0110100 Pieri 1 -0110100 Algre 1 -0110100 Kondracke 1 -0110100 Sofonova 1 -0110100 Larroquette 1 -0110100 Bonfoglio 1 -0110100 Hilhorst 1 -0110100 Dessaur 1 -0110100 Roessiger 1 -0110100 Pilbeam 1 -0110100 Krivitsky 1 -0110100 Birmbaum 1 -0110100 Kawamara 1 -0110100 Tachi 1 -0110100 Kowtowksy 1 -0110100 Veitch 1 -0110100 Avakian 1 -0110100 Kanolah 1 -0110100 Groesbeck 1 -0110100 Helal 1 -0110100 Saraille 1 -0110100 Cleminson 1 -0110100 Blacksmith 1 -0110100 Rosenshein 1 -0110100 Samansky 1 -0110100 Bigshot 1 -0110100 Pascua 1 -0110100 Gwilliam 1 -0110100 Accardo 1 -0110100 Hoeschler 1 -0110100 pend 1 -0110100 Seinfeld 1 -0110100 Nojiri 1 -0110100 Signac 1 -0110100 Vacca 1 -0110100 Morreim 1 -0110100 Entin 1 -0110100 Khederian 1 -0110100 Fredell 1 -0110100 McColough 1 -0110100 Ianonne 1 -0110100 Taylor-Hall 1 -0110100 McPhail 1 -0110100 Leake 1 -0110100 Taravella 1 -0110100 Raum 1 -0110100 Morbelli 1 -0110100 Daddy-O 1 -0110100 Muhlenbruch 1 -0110100 Croke 1 -0110100 07631 1 -0110100 Chafuen 1 -0110100 Zileri 1 -0110100 Yount 1 -0110100 Conese 1 -0110100 Florak 1 -0110100 Smollen 1 -0110100 Sonerville 1 -0110100 Kedge 1 -0110100 Binnig 1 -0110100 Kitagawa 1 -0110100 al-Ahmadi 1 -0110100 Haveman 1 -0110100 Torisky 1 -0110100 Minehan 1 -0110100 Biskind 1 -0110100 McDoulett 1 -0110100 Amicangelo 1 -0110100 Rezneck 1 -0110100 Papas 1 -0110100 Cox-Cresswell 1 -0110100 Giacomini 1 -0110100 Agrisani 1 -0110100 Harberger 1 -0110100 Whitefield 1 -0110100 Yakushiji 1 -0110100 Borracio 1 -0110100 Romalewski 1 -0110100 Finkieland 1 -0110100 Formann 1 -0110100 Caseys 1 -0110100 Notarious 1 -0110100 Broniarek 1 -0110100 Ranelagh 1 -0110100 Monteverde 1 -0110100 Fiora 1 -0110100 Fahden 1 -0110100 Guerin-Calvert 1 -0110100 Kernochan 1 -0110100 Mubarek 1 -0110100 Bunnen 1 -0110100 Hungerland 1 -0110100 Vyncke 1 -0110100 Leskera 1 -0110100 Gettler 1 -0110100 Hauspurg 1 -0110100 Jussim 1 -0110100 Rosenfelt 1 -0110100 Averbook 1 -0110100 Voto 1 -0110100 Morris-Kraft 1 -0110100 Reepen 1 -0110100 Danielson 1 -0110100 Pesin 1 -0110100 Arlette 1 -0110100 Hecke 1 -0110100 Schaake 1 -0110100 Jhabvala 1 -0110100 Corsiglia 1 -0110100 Hewson 1 -0110100 Southwick 1 -0110100 Engelberg 1 -0110100 Schinn 1 -0110100 Sanladerer 1 -0110100 Haegele 1 -0110100 Nafe 1 -0110100 Khaymah 1 -0110100 Sheinin 1 -0110100 Meyrowitz 1 -0110100 Kalkin 1 -0110100 frez 1 -0110100 Firestein 1 -0110100 Higgenbotham 1 -0110100 Rostowski 1 -0110100 Bustin 1 -0110100 Wierusz-Kowalski 1 -0110100 Chelmonski 1 -0110100 Trouw 1 -0110100 Pottoroff 1 -0110100 Bertain 1 -0110100 Kuppin 1 -0110100 Wichter 1 -0110100 Cardy 1 -0110100 Plotnicki 1 -0110100 Velsink 1 -0110100 Flattum 1 -0110100 Campisano 1 -0110100 Jockheck 1 -0110100 Spignesi 1 -0110100 Zaner 1 -0110100 Brillsetin 1 -0110100 Bickler 1 -0110100 Clennam 1 -0110100 Radano 1 -0110100 Gierow 1 -0110100 Margolyes 1 -0110100 Drybred 1 -0110100 Blommaert 1 -0110100 Dossett 1 -0110100 Niehardt 1 -0110100 Morstan 1 -0110100 Kutmus 1 -0110100 Patrusky 1 -0110100 Valtin 1 -0110100 Anti-Trust 1 -0110100 Vinick 1 -0110100 Bogdanowicz-Bindert 1 -0110100 Piro 1 -0110100 Anagnos 1 -0110100 Ozan 1 -0110100 Grassie 1 -0110100 Shoepe 1 -0110100 Rogen 1 -0110100 Sodre 1 -0110100 McCrone 1 -0110100 Almodovar 1 -0110100 Zia-ul-haq 1 -0110100 Barchi 1 -0110100 Kihlstedt 1 -0110100 Lansche 1 -0110100 Krell 1 -0110100 Puyat 1 -0110100 Csurgay 1 -0110100 Celan 1 -0110100 Weatherall 1 -0110100 Grosssbard 1 -0110100 Sperber 1 -0110100 Morizono 1 -0110100 Himons 1 -0110100 Khedouri 1 -0110100 Veronee 1 -0110100 Brayall 1 -0110100 Qualye 1 -0110100 Jekylls 1 -0110100 Mhlaba 1 -0110100 Cumberbatch 1 -0110100 Allsburg 1 -0110100 Matrius 1 -0110100 Sandstrom 1 -0110100 Alpern 1 -0110100 Leiberman 1 -0110100 Dorko 1 -0110100 Barrett-Connor 1 -0110100 Khalilzad 1 -0110100 Sussmayr 1 -0110100 Mithaq 1 -0110100 Teklenski 1 -0110100 Sugawara 1 -0110100 Obenhaus 1 -0110100 Bouvard 1 -0110100 Gaskell 1 -0110100 Akhoury 1 -0110100 Spaniel 1 -0110100 Belda 1 -0110100 Licad 1 -0110100 Pasour 1 -0110100 Fasenfest 1 -0110100 Trintignant 1 -0110100 Fromer 1 -0110100 Winther 1 -0110100 Maffett 1 -0110100 Harrill 1 -0110100 Rebhorn 1 -0110100 Trivette 1 -0110100 Zakowski 1 -0110100 Anglais 1 -0110100 Molk 1 -0110100 Grotowski 1 -0110100 Duerrenmatt 1 -0110100 MacNicol 1 -0110100 Pensak 1 -0110100 Marski 1 -0110100 Warhead 1 -0110100 Friedmans 1 -0110100 Handsman 1 -0110100 STANGER 1 -0110100 Theilgard 1 -0110100 Lesko 1 -0110100 Swartzlander 1 -0110100 Yadav 1 -0110100 Blye 1 -0110100 Saens 1 -0110100 Koussevitzy 1 -0110100 Bouchons 1 -0110100 Gemignani 1 -0110100 Maxwells 1 -0110100 Rudney 1 -0110100 Oehlmann 1 -0110100 Febbo 1 -0110100 Siris 1 -0110100 Barnall 1 -0110100 Djrdje 1 -0110100 Remarque 1 -0110100 Graftons 1 -0110100 Zuehlke 1 -0110100 Mittenzwei 1 -0110100 Parquet 1 -0110100 DeGraaf 1 -0110100 Leefeldt 1 -0110100 Bonbright 1 -0110100 Donovon 1 -0110100 Jamile 1 -0110100 Msibi 1 -0110100 Theodoridis 1 -0110100 Rewald 1 -0110100 Slezak 1 -0110100 Navarsky 1 -0110100 Jankoswki 1 -0110100 Walleck 1 -0110100 Lopez-Tirone 1 -0110100 Ballentine 1 -0110100 Kovic 1 -0110100 Zujovic 1 -0110100 Marinkovic 1 -0110100 Penaloza 1 -0110100 Kellock 1 -0110100 Briskin 1 -0110100 Immler 1 -0110100 Geeter 1 -0110100 rigeur 1 -0110100 Lopez-Knight 1 -0110100 Sansweet 1 -0110100 Platzky 1 -0110100 Ruhland 1 -0110100 Collaro 1 -0110100 Hinze 1 -0110100 Sedjo 1 -0110100 Ryther 1 -0110100 Turner-style 1 -0110100 Zais 1 -0110100 Signorile 1 -0110100 Tsypin 1 -0110100 Berehas 1 -0110100 Kashket 1 -0110100 Lewinski 1 -0110100 Wheless 1 -0110100 Atiyeh 1 -0110100 Gachet 1 -0110100 Clean-Cut 1 -0110100 Vumbacco 1 -0110100 Plaskin 1 -0110100 Marumo 1 -0110100 Khoshoggi 1 -0110100 Telegraphes 1 -0110100 Balderstone 1 -0110100 Gibans 1 -0110100 Helmond 1 -0110100 Strebel 1 -0110100 Cragun 1 -0110100 Roessle 1 -0110100 Moss. 1 -0110100 Rehmert 1 -0110100 Dzirkvelov 1 -0110100 Saballos 1 -0110100 Stripling 1 -0110100 Dzoesch 1 -0110100 Bergschneider 1 -0110100 Tsukihara 1 -0110100 Charikov 1 -0110100 Karadbil 1 -0110100 Gropius 1 -0110100 Tietze 1 -0110100 Montesquiou-Fezensac 1 -0110100 Saifuddin 1 -0110100 Middler 1 -0110100 Saboe 1 -0110100 Mfume 1 -0110100 Grenvilles 1 -0110100 Fowles 1 -0110100 Koepplin 1 -0110100 Weisenbeck 1 -0110100 Castellitto 1 -0110100 Taglieri 1 -0110100 Fennelly 1 -0110100 Weintaub 1 -0110100 Punaro 1 -0110100 Piatmiatsa 1 -0110100 McCarthy. 1 -0110100 Leib 1 -0110100 Colero 1 -0110100 Cahlman 1 -0110100 Mirvis 1 -0110100 Lawshee 1 -0110100 Birchers 1 -0110100 Dellenback 1 -0110100 Shotwell 1 -0110100 Stavrides 1 -0110100 Monbouquette 1 -0110100 Pagliarulo 1 -0110100 Rahjens 1 -0110100 Weiden 1 -0110100 Grohdahl 1 -0110100 Kuntzsch 1 -0110100 Kuniyoshi 1 -0110100 Vaksdal 1 -0110100 Pottorf 1 -0110100 Ludes 1 -0110100 Herrero 1 -0110100 Bompey 1 -0110100 Troyanovsky 1 -0110100 Oskenberg 1 -0110100 Malamud 1 -0110100 Limbach 1 -0110100 Jamerson 1 -0110100 Walske 1 -0110100 Kozoll 1 -0110100 Tristano 1 -0110100 Harkrider 1 -0110100 Olsens 1 -0110100 Shifter 1 -0110100 Klowden 1 -0110100 Hossford 1 -0110100 Bariani 1 -0110100 Siegel. 1 -0110100 Wardlaw 1 -0110100 LOCALITIES 1 -0110100 Rostang 1 -0110100 Troisgros 1 -0110100 Molo 1 -0110100 Washbourne 1 -0110100 Bussen 1 -0110100 Chases 1 -0110100 Bouree 1 -0110100 Kinross 1 -0110100 Wolfinger 1 -0110100 Hootnick 1 -0110100 Newsom 1 -0110100 Versace 1 -0110100 Gameshow 1 -0110100 Schmedel 1 -0110100 Doel 1 -0110100 Vierdanck 1 -0110100 Valvano 1 -0110100 Amdur 1 -0110100 Pashcow 1 -0110100 McGibbon 1 -0110100 Veress 1 -0110100 Montera 1 -0110100 Anti-Jazz 1 -0110100 Kureishi 1 -0110100 Celestre 1 -0110100 Salovaara 1 -0110100 Heinike 1 -0110100 Montfrooy 1 -0110100 DavidWeill 1 -0110100 Vanoff 1 -0110100 Engelke 1 -0110100 Hobhouse 1 -0110100 Macial 1 -0110100 Hupp 1 -0110100 Kelm 1 -0110100 Koptchak 1 -0110100 Usan 1 -0110100 Dobish 1 -0110100 Cupido 1 -0110100 Baudo 1 -0110100 Levi-Strauss 1 -0110100 McKuen 1 -0110100 Betzner 1 -0110100 Poos 1 -0110100 Dubuffet 1 -0110100 Morrision 1 -0110100 Colwin 1 -0110100 Babitt 1 -0110100 Samartino 1 -0110100 Migue 1 -0110100 Freidmann 1 -0110100 Lequier 1 -0110100 Kautter 1 -0110100 Solovey 1 -0110100 BREEDEN 1 -0110100 Dice 1 -0110100 Walford 1 -0110100 Chestnutt 1 -0110100 Gerswhin 1 -0110100 Ahnert 1 -0110100 McGrew 1 -0110100 Lindl 1 -0110100 Guyader 1 -0110100 Ghirlandaio 1 -0110100 Kleinmeyer 1 -0110100 Cockroft 1 -0110100 Rushdies 1 -0110100 Overley 1 -0110100 Beder 1 -0110100 Lanzmann 1 -0110100 Jurszak 1 -0110100 Ollila 1 -0110100 Quaranta 1 -0110100 Votolato 1 -0110100 Kula 1 -0110100 Pardaens 1 -0110100 Fishl 1 -0110100 Covelli 1 -0110100 taylor 1 -0110100 Gomoll 1 -0110100 LuSane 1 -0110100 Ezrol 1 -0110100 Urdenata 1 -0110100 Perschau 1 -0110100 Regan. 1 -0110100 Lategan 1 -0110100 Bovich 1 -0110100 Berkel 1 -0110100 Teinowitz 1 -0110100 Wuchina 1 -0110100 Reinemer 1 -0110100 Eckles 1 -0110100 Wolski 1 -0110100 Deluhary 1 -0110100 Alemann 1 -0110100 Brillantes 1 -0110100 Parikh 1 -0110100 Geldard 1 -0110100 Haqqani 1 -0110100 KcKean 1 -0110100 Sadzinski 1 -0110100 Elrick 1 -0110100 Hov 1 -0110100 HEATHERLY 1 -0110100 Kief 1 -0110100 Hanrong 1 -0110100 Lydenberger 1 -0110100 Salzman. 1 -0110100 McUsic 1 -0110100 Blos 1 -0110100 Wolfenstein 1 -0110100 Paganucci 1 -0110100 Warburg-Brinckmann 1 -0110100 Blassie 1 -0110100 Rajii 1 -0110100 Suslow 1 -0110100 Kropfl 1 -0110100 Futado 1 -0110100 Sahli 1 -0110100 Braly 1 -0110100 Dension 1 -0110100 Gilliland 1 -0110100 Bogatin 1 -0110100 Duby 1 -0110100 Thebert 1 -0110100 Jaurex 1 -0110100 Bourgeoise 1 -0110100 Eakins 1 -0110100 Bendis 1 -0110100 Teufel 1 -0110100 Zisk 1 -0110100 Scarfe 1 -0110100 Spacey 1 -0110100 Truernicht 1 -0110100 Schwartzenberg 1 -0110100 Krulak 1 -0110100 Vlahakis 1 -0110100 Shackelton 1 -0110100 Cabon 1 -0110100 Luckinbill 1 -0110100 CAROL 1 -0110100 Lydenberg 1 -0110100 IDIS 1 -0110100 Powell. 1 -0110100 Jamel 1 -0110100 Tesler 1 -0110100 Kinneary 1 -0110100 McClaughry 1 -0110100 Taniyasu 1 -0110100 Biagio 1 -0110100 Hermiller 1 -0110100 Aviations 1 -0110100 Shourie 1 -0110100 Huskey 1 -0110100 Redenbacher 1 -0110100 Raynal 1 -0110100 Rescoe 1 -0110100 Wixell 1 -0110100 Frisinger 1 -0110100 Vukasin 1 -0110100 Gorben 1 -0110100 Steir 1 -0110100 McDonnough 1 -0110100 Kasznar 1 -0110100 Nakamaru 1 -0110100 Tolstov 1 -0110100 Frechter 1 -0110100 Hangen 1 -0110100 DiNepi 1 -0110100 Ehrlichmann 1 -0110100 Onstead 1 -0110100 Sakoh 1 -0110100 McGoohan 1 -0110100 DeGuere 1 -0110100 Corkett 1 -0110100 Jarret 1 -0110100 Espert 1 -0110100 Okimoto 1 -0110100 Pecorari 1 -0110100 Philbins 1 -0110100 Conjuangco 1 -0110100 Ingve 1 -0110100 Molszyk 1 -0110100 Pinkowski 1 -0110100 Harloff 1 -0110100 Zaia 1 -0110100 Lazarous 1 -0110100 Coppage 1 -0110100 Daae 1 -0110100 Smalls 1 -0110100 Wanta 1 -0110100 Rivers. 1 -0110100 Lewis-style 1 -0110100 Seaney 1 -0110100 Lutness 1 -0110100 Sacur 1 -0110100 Strauser 1 -0110100 Affaires 1 -0110100 Bassey 1 -0110100 Holzberger 1 -0110100 Roubatis 1 -0110100 Lagerdere 1 -0110100 Kroft 1 -0110100 Oldenberg 1 -0110100 Taiani 1 -0110100 Telepman 1 -0110100 NcNab 1 -0110100 Lubanko 1 -0110100 Gantrys 1 -0110100 Detaille 1 -0110100 Tavares 1 -0110100 Byars 1 -0110100 Hevron 1 -0110100 Colling 1 -0110100 Reibel 1 -0110100 Dontzin 1 -0110100 Papastamatakis 1 -0110100 Waltman 1 -0110100 Fremling 1 -0110100 Pickford 1 -0110100 Zinkow 1 -0110100 Fresnay 1 -0110100 Facon 1 -0110100 Hildeburn 1 -0110100 Mesure 1 -0110100 Pant 1 -0110100 Iwahashi 1 -0110100 Goedert 1 -0110100 Ayarza 1 -0110100 Akaka 1 -0110100 Weissbach 1 -0110100 Graded 1 -0110100 Steverson 1 -0110100 Consolas 1 -0110100 Klusky 1 -0110100 Brier 1 -0110100 Landerses 1 -0110100 Volcker. 1 -0110100 Smith-Jones 1 -0110100 Rutana 1 -0110100 Merinov 1 -0110100 Baillot 1 -0110100 Briancon 1 -0110100 Klingeman 1 -0110100 Sancious 1 -0110100 Gogossis 1 -0110100 Flumebaum 1 -0110100 Illston 1 -0110100 Schuffert 1 -0110100 Saint-Aignon 1 -0110100 Vicker 1 -0110100 Fatula 1 -0110100 Mataya 1 -0110100 Schinkel 1 -0110100 Schanberg 1 -0110100 Michaud 1 -0110100 Lietdke 1 -0110100 Starrette 1 -0110100 Lurhuma 1 -0110100 Yesselman 1 -0110100 Bordenave 1 -0110100 Lamotta 1 -0110100 Dilbeck 1 -0110100 Nagrin 1 -0110100 Berklacy 1 -0110100 Burum 1 -0110100 Compreignac 1 -0110100 Pigott-Smith 1 -0110100 Ikemiyagi 1 -0110100 Eco 1 -0110100 Schickel 1 -0110100 Lutfy 1 -0110100 Ulbricht 1 -0110100 Deadwyler 1 -0110100 Gauntlett 1 -0110100 Glime 1 -0110100 Padoa-Schioppa 1 -0110100 Bellplans 1 -0110100 Kelesi 1 -0110100 Lemper 1 -0110100 Zummo 1 -0110100 Mittys 1 -0110100 Niemoller 1 -0110100 Jaruselski 1 -0110100 Amadasi 1 -0110100 Lemarie 1 -0110100 Hopps 1 -0110100 Sweeley 1 -0110100 Adamthwaite 1 -0110100 Jomini 1 -0110100 Yinong 1 -0110100 Pitlick 1 -0110100 Grahn 1 -0110100 Zarur 1 -0110100 Nossiter 1 -0110100 Daray 1 -0110100 Breindel 1 -0110100 Hinshelwood 1 -0110100 SchmittRink 1 -0110100 Schrieffer 1 -0110100 Ysidro 1 -0110100 Sonz 1 -0110100 Kassandras 1 -0110100 Adis 1 -0110100 Byrum 1 -0110100 Easterlin 1 -0110100 Aschieris 1 -0110100 Helkie 1 -0110100 Chuma 1 -0110100 Diagilev 1 -0110100 Perov 1 -0110100 Kramskoi 1 -0110100 Liedkte 1 -0110100 Bleeke 1 -0110100 Kabatznick 1 -0110100 Knowle 1 -0110100 Cayeux 1 -0110100 Mambro 1 -0110100 Baltensperger 1 -0110100 Kobylinski 1 -0110100 Kleinmaer 1 -0110100 PARKS 1 -0110100 Rejewski 1 -0110100 Gatehouse 1 -0110100 Putterman 1 -0110100 Sapoznik 1 -0110100 Frinquelli 1 -0110100 Triola 1 -0110100 Kilgallen 1 -0110100 Ottice 1 -0110100 Skatoff 1 -0110100 Gallen 1 -0110100 Derdja 1 -0110100 McMorris 1 -0110100 Hamm-Bruecher 1 -0110100 Reiger 1 -0110100 Pedas 1 -0110100 Haagens 1 -0110100 Gelbach 1 -0110100 Grunick 1 -0110100 Malick 1 -0110100 Murgatroyd 1 -0110100 Dauntless 1 -0110100 Shuster. 1 -0110100 Burnum 1 -0110100 Ploeger 1 -0110100 Rzewnicki 1 -0110100 Dekoven 1 -0110100 Castegren 1 -0110100 Goeggel 1 -0110100 Odgen 1 -0110100 Skeels 1 -0110100 McCrickard 1 -0110100 Willis. 1 -0110100 Fenichel 1 -0110100 Flatters 1 -0110100 Lempicka 1 -0110100 Sparer 1 -0110100 Albachten 1 -0110100 STICKING 1 -0110100 Pickman 1 -0110100 Hewerdine 1 -0110100 Huyn 1 -0110100 Benoist 1 -0110100 Struckhoff 1 -0110100 Koseoglu 1 -0110100 Shulte 1 -0110100 Neunkirchen 1 -0110100 Larionov 1 -0110100 Hoog 1 -0110100 Capa 1 -0110100 Moillon 1 -0110100 Prather 1 -0110100 Leijonborg 1 -0110100 Matumeak 1 -0110100 Lampkin 1 -0110100 Kord 1 -0110100 Ashkenazys 1 -0110100 MacPhee 1 -0110100 Oxenberg 1 -0110100 Leblois 1 -0110100 Allworthy 1 -0110100 Meiners 1 -0110100 Meiner 1 -0110100 Casse 1 -0110100 Chanzis 1 -0110100 Steiman 1 -0110100 Spurrier 1 -0110100 Telles 1 -0110100 Rendino 1 -0110100 Aquafortistes 1 -0110100 Phibb 1 -0110100 Grenert 1 -0110100 Tubarao 1 -0110100 Quittmeyer 1 -0110100 Kraushar 1 -0110100 Shaara 1 -0110100 Oskam 1 -0110100 Finkin 1 -0110100 Shafland 1 -0110100 Byrn 1 -0110100 Slatin 1 -0110100 Plath 1 -0110100 Sanker 1 -0110100 Nofzinger 1 -0110100 Yamaya 1 -0110100 Smyslov 1 -0110100 Babenco 1 -0110100 Bentinck 1 -0110100 Batton 1 -0110100 Gameshows 1 -0110100 Flender 1 -0110100 Rumshinsky 1 -0110100 Gicha 1 -0110100 Bonkers 1 -0110100 Lanois 1 -0110100 Bresnick 1 -0110100 Villarosa 1 -0110100 Holthus 1 -0110100 Lashaw 1 -0110100 LaSorda 1 -0110100 Temperton 1 -0110100 Ritteresier 1 -0110100 Mezlish 1 -0110100 McMartin 1 -0110100 Thicke 1 -0110100 Husock 1 -0110100 Bakshian 1 -0110100 Wigton. 1 -0110100 Koncak 1 -0110100 Venuti 1 -0110100 Yankelovitch 1 -0110100 Doft 1 -0110100 Gyoten 1 -0110100 Kepich 1 -0110100 Straetz 1 -0110100 Jonson 1 -0110100 patula 1 -0110100 Zehr 1 -0110100 Bobrowitz 1 -0110100 Qandil 1 -0110100 Montaner 1 -0110100 Luftalla 1 -0110100 Personick 1 -0110100 Kusaba 1 -0110100 Maslowski 1 -0110100 Pedlers 1 -0110100 Elmets 1 -0110100 Kravat 1 -0110100 Mella 1 -0110100 Wedvik 1 -0110100 FARES 1 -0110100 Nimorodi 1 -0110100 McGrady 1 -0110100 Wapners 1 -0110100 Houphouet-Boigny 1 -0110100 Lachosky 1 -0110100 Beznosuik 1 -0110100 Lully 1 -0110100 Heuerman 1 -0110100 GYNECOLOGY 1 -0110100 Jourdain 1 -0110100 Bronfenbrenner 1 -0110100 Knibb 1 -0110100 Catrambone 1 -0110100 What-a-Waste 1 -0110100 Denardi 1 -0110100 Huppert 1 -0110100 Carew 1 -0110100 Graf. 1 -0110100 Leclair 1 -0110100 Chevallier 1 -0110100 Berlusconis 1 -0110100 Dvorsky 1 -0110100 Tieme 1 -0110100 Mosich 1 -0110100 Rosebush 1 -0110100 Scotillo 1 -0110100 Sanguillen 1 -0110100 Brazinsky 1 -0110100 Nakahara 1 -0110100 Buttery 1 -0110100 Kropinski 1 -0110100 Riffle 1 -0110100 Jeannotte 1 -0110100 Bissonette 1 -0110100 Wigman 1 -0110100 Stances 1 -0110100 Saland 1 -0110100 Bredes 1 -0110100 Menchell 1 -0110100 Balthrop 1 -0110100 Opalach 1 -0110100 Yung-Kyoo 1 -0110100 Delvecchio 1 -0110100 Schmermund 1 -0110100 Bertiger 1 -0110100 MIYAZAWA 1 -0110100 Dimaporo 1 -0110100 Marinay 1 -0110100 Fondas 1 -0110100 Iovenko 1 -0110100 Laver 1 -0110100 Rittenberry 1 -0110100 Pangloss 1 -0110100 Kirgo 1 -0110100 Madeirkas 1 -0110100 Calomiris 1 -0110100 Sheinwald 1 -0110100 Bagotta 1 -0110100 Douvan 1 -0110100 Galle 1 -0110100 Andretti 1 -0110100 Coccopalmieri 1 -0110100 Akimoto 1 -0110100 Egol 1 -0110100 DefensorSantiago 1 -0110100 Eikenberry 1 -0110100 Kostof 1 -0110100 Boxleitner 1 -0110100 Surikov 1 -0110100 Maynes 1 -0110100 Hilts 1 -0110100 Boffey 1 -0110100 Bivens 1 -0110100 Lanchner 1 -0110100 Synder 1 -0110100 Rajneri 1 -0110100 Falwell. 1 -0110100 Lowder 1 -0110100 Kolvenbach 1 -0110100 Gerhardsen 1 -0110100 Niimaki 1 -0110100 Gephardt. 1 -0110100 Niemiec 1 -0110100 Kondratova 1 -0110100 Stepanov 1 -0110100 Housman 1 -0110100 Lenkey 1 -0110100 Dutmer 1 -0110100 Echevveria 1 -0110100 Trabandt 1 -0110100 Koses 1 -0110100 Seregin 1 -0110100 Tippett 1 -0110100 Roberge 1 -0110100 Kiem 1 -0110100 Letzer 1 -0110100 Dellessert 1 -0110100 Darke 1 -0110100 Kiyohara 1 -0110100 Loesberg 1 -0110100 Shepp 1 -0110100 Darenblum 1 -0110100 Freiter 1 -0110100 Dobo 1 -0110100 Stokley 1 -0110100 Ghorum 1 -0110100 Shuchman 1 -0110100 Petchey 1 -0110100 Ulmann 1 -0110100 Brolin 1 -0110100 Blankenau 1 -0110100 Krimm 1 -0110100 Shuping 1 -0110100 Krantzman 1 -0110100 Svec 1 -0110100 naughtily 1 -0110100 Huddlestun 1 -0110100 8115 1 -0110100 Petertil 1 -0110100 Beynon 1 -0110100 Brandauer 1 -0110100 Leight 1 -0110100 Lanin 1 -0110100 Gracia 1 -0110100 Nikolaefskii 1 -0110100 Martz 1 -0110100 Compeigne 1 -0110100 Fainsod 1 -0110100 Flaim 1 -0110100 Toynbee 1 -0110100 Hilmer 1 -0110100 Allaird 1 -0110100 Russek 1 -0110100 Mallette 1 -0110100 Firmenitch 1 -0110100 Dinolfo 1 -0110100 Biya 1 -0110100 Ongpion 1 -0110100 Gucheng 1 -0110100 DiMeola 1 -0110100 Zenger 1 -0110100 Makabe 1 -0110100 Forlani 1 -0110100 Huddard 1 -0110100 Eatherly 1 -0110100 Barre-Sinoussi 1 -0110100 Petesch 1 -0110100 Chiorah-Dye 1 -0110100 Garns 1 -0110100 Hennssey 1 -0110100 Romanowski 1 -0110100 Keyser 1 -0110100 Nesom 1 -0110100 Symposiums 1 -0110100 Picken 1 -0110100 Engmann 1 -0110100 Courtenay 1 -0110100 Loup 1 -0110100 Jajszczyk 1 -0110100 Fitton 1 -0110100 STRICKLER 1 -0110100 Cerkoney 1 -0110100 Vlaminck 1 -0110100 Maliponte 1 -0110100 Bertolino 1 -0110100 Heikes 1 -0110100 Lenth 1 -0110100 Lisiten 1 -0110100 Carbonnell 1 -0110100 Grethel 1 -0110100 Dinar 1 -0110100 Cassavetes 1 -0110100 Conologue 1 -0110100 Geyl 1 -0110100 Jansky 1 -0110100 Kimbrough 1 -0110100 Sigel 1 -0110100 Bychkov 1 -0110100 Nikisch 1 -0110100 Furtwangler 1 -0110100 Nagelmackers 1 -0110100 Moates 1 -0110100 Kirpatrick 1 -0110100 Milosavljevic 1 -0110100 Semos 1 -0110100 Rosenberry 1 -0110100 Freeth 1 -0110100 Milit 1 -0110100 Garretsen 1 -0110100 Kelley-Alston 1 -0110100 Gonyeau 1 -0110100 Belch 1 -0110100 VelJohnson 1 -0110100 Schaick 1 -0110100 Bolotin 1 -0110100 Takakura 1 -0110100 Sopinka 1 -0110100 Rodell 1 -0110100 Cuyegkeng 1 -0110100 Muldor 1 -0110100 Scorcese 1 -0110100 Feetham 1 -0110100 Farro 1 -0110100 Jasny 1 -0110100 Bickell 1 -0110100 Kartun 1 -0110100 Rohwedder 1 -0110100 Mihalski 1 -0110100 Rosovsky 1 -0110100 Rutt 1 -0110100 Scharoun 1 -0110100 Giler 1 -0110100 Ormiston 1 -0110100 Hignell 1 -0110100 Leontivna 1 -0110100 Feodorovich 1 -0110100 Scacchi 1 -0110100 Traini 1 -0110100 Merriweather 1 -0110100 Peckinpah 1 -0110100 high-step 1 -0110100 Schoppert 1 -0110100 Lucases 1 -0110100 Kusabe 1 -0110100 Monfore 1 -0110100 Bettag 1 -0110100 Dubus 1 -0110100 Bryn-Julson 1 -0110100 Charrens 1 -0110100 Yackira 1 -0110100 Calisher 1 -0110100 Bucchino 1 -0110100 Cutts 1 -0110100 Dinur 1 -0110100 Danilova 1 -0110100 Finkle 1 -0110100 Matera 1 -0110100 Saltrick 1 -0110100 Brennen 1 -0110100 Egleson 1 -0110100 Thaw 1 -0110100 Rajk 1 -0110100 Chiesa 1 -0110100 Afthonides 1 -0110100 Poveda 1 -0110100 Wendland 1 -0110100 Drogin 1 -0110100 Kadavy 1 -0110100 Stautberg 1 -0110100 Lozanov 1 -0110100 Mace 1 -0110100 Nallet 1 -0110100 Schwalm 1 -0110100 Myren 1 -0110100 Helinger 1 -0110100 Kazanov 1 -0110100 Semhon 1 -0110100 Finberg 1 -0110100 Conward 1 -0110100 Cosetti 1 -0110100 Madersperger 1 -0110100 Mernagh 1 -0110100 Strelyany 1 -0110100 Kollek 1 -0110100 Feloni 1 -0110100 Blaszcz 1 -0110100 Wenstrand 1 -0110100 Schweicker 1 -0110100 Longnecker 1 -0110100 Szczepanski 1 -0110100 Skoning 1 -0110100 Yezhov 1 -0110100 Combier 1 -0110100 Ziller 1 -0110100 Karem 1 -0110100 Motwani 1 -0110100 Dozo 1 -0110100 Almaraz 1 -0110100 MCVEARRY 1 -0110100 Pineau-Valenciennes 1 -0110100 Gresser 1 -0110100 Montezari 1 -0110100 Lodder 1 -0110100 Stallman 1 -0110100 Runde 1 -0110100 Resto 1 -0110100 Rothenberger 1 -0110100 Charen 1 -0110100 Mogren 1 -0110100 Rabinovich 1 -0110100 Damilano 1 -0110100 Kaylan 1 -0110100 Montilla 1 -0110100 News-Republican 1 -0110100 Blok 1 -0110100 Tolubeyev 1 -0110100 Carnella 1 -0110100 Eison 1 -0110100 Coffy 1 -0110100 Pancratz 1 -0110100 Monashefsky 1 -0110100 Gillock 1 -0110100 Kruckel 1 -0110100 Ourusoff 1 -0110100 Bate 1 -0110100 Sameth 1 -0110100 Milotta 1 -0110100 Guiffre 1 -0110100 Seboek 1 -0110100 Lovago 1 -0110100 Berlinski 1 -0110100 Boocock 1 -0110100 Okano 1 -0110100 Mendeloff 1 -0110100 Straeter 1 -0110100 McKintosh 1 -0110100 Gance 1 -0110100 Cocteau 1 -0110100 Chalabi 1 -0110100 Spindell 1 -0110100 Sulins 1 -0110100 Bakula 1 -0110100 Portzamparc 1 -0110100 Hejduk 1 -0110100 Stepanek 1 -0110100 Ovchinnikov 1 -0110100 Fainsilber 1 -0110100 Rathebe 1 -0110100 Kontorovich 1 -0110100 Jackson-Pepsi 1 -0110100 Sila-Nowicki 1 -0110100 Schaffert 1 -0110100 Gams 1 -0110100 Gaede 1 -0110100 Lozon 1 -0110100 Goldstick 1 -0110100 Hergstein 1 -0110100 Talyzin 1 -0110100 Solovyov 1 -0110100 Ermarth 1 -0110100 Lubash 1 -0110100 Duesint 1 -0110100 Nohren 1 -0110100 Firkusny 1 -0110100 Sarto 1 -0110100 Calleo 1 -0110100 Kachel 1 -0110100 Rogstad 1 -0110100 Billmire 1 -0110100 Ariza 1 -0110100 Hasting 1 -0110100 Pridemore 1 -0110100 Kragh-Jacobsen 1 -0110100 Leaud 1 -0110100 Steinbergs 1 -0110100 Vionnet 1 -0110100 Ann-Greta 1 -0110100 Kepner 1 -0110100 Saeman 1 -0110100 Klindworth 1 -0110100 Lesenger 1 -0110100 Hollasch 1 -0110100 Wetherbee 1 -0110100 Chang-Diaz 1 -0110100 Dworchak 1 -0110100 Hartfield 1 -0110100 Swiatkowski 1 -0110100 Yokum 1 -0110100 Kochola 1 -0110100 Kennicott 1 -0110100 Ottobre 1 -0110100 Muehle 1 -0110100 Rossiaud 1 -0110100 Souslov 1 -0110100 Piotrovsky 1 -0110100 Gabrilove 1 -0110100 Hunley 1 -0110100 Rossides 1 -0110100 Wehler 1 -0110100 Garcons 1 -0110100 Akacem 1 -0110100 Orndorff 1 -0110100 Nugteren 1 -0110100 Boublil 1 -0110100 Berridge 1 -0110100 Zamyatin 1 -0110100 Ulyanov 1 -0110100 Gyllensten 1 -0110100 Durian 1 -0110100 Watermelon 1 -0110100 Thailand-Universe 1 -0110100 Universes 1 -0110100 Thailand/World 1 -0110100 Nemiroff 1 -0110100 Donghia 1 -0110100 Boesky-greed-is-good 1 -0110100 Anathan 1 -0110100 Eakland 1 -0110100 Marsolais 1 -0110100 Croswell 1 -0110100 Tulig 1 -0110100 Sindab 1 -0110100 Darmam 1 -0110100 Glowatz 1 -0110100 Brevetti 1 -0110100 Rahv 1 -0110100 Appignanesi 1 -0110100 DeCrow 1 -0110100 Vincel 1 -0110100 Pirrie 1 -0110100 Sobol 1 -0110100 Etcheparre 1 -0110100 Vroman 1 -0110100 Radlein 1 -0110100 Vanzo 1 -0110100 Preiser 1 -0110100 Bintley 1 -0110100 Boriskin 1 -0110100 Purjes 1 -0110100 Lawrences 1 -0110100 Czarapata 1 -0110100 Aclander 1 -0110100 VanDerlinde 1 -0110100 Triska 1 -0110100 Skolnik 1 -0110100 Obote 1 -0110100 Ptak 1 -0110100 Majeske 1 -0110100 Hochstadt 1 -0110100 Stavrowsky 1 -0110100 Cucire 1 -0110100 Gaydon 1 -0110100 Lunden 1 -0110100 Yushta 1 -0110100 Sheed 1 -0110100 Ponticelli 1 -0110100 Gorzelnik 1 -0110100 Playten 1 -0110100 Boehme 1 -0110100 LeMond 1 -0110100 Dopkeen 1 -0110100 Holtback 1 -0110100 Helsmley 1 -0110100 Foulkrod 1 -0110100 Dobriansky 1 -0110100 Orsulak 1 -0110100 Bley 1 -0110100 Surhoff 1 -0110100 Zacharov 1 -0110100 Lentricchia 1 -0110100 Tarnoff 1 -0110100 MD87s 1 -0110100 Fogelberg 1 -0110100 Schopflin 1 -0110100 Doppelfeld 1 -0110100 Uchiama 1 -0110100 Lubasch 1 -0110100 Mansmann 1 -0110100 Gort 1 -0110100 Banez 1 -0110100 Gawain 1 -0110100 Guedj 1 -0110100 Veeck 1 -0110100 Melinkoff 1 -0110100 Heschmeyer 1 -0110100 Oafid 1 -0110100 Hagge 1 -0110100 Sohlman 1 -0110100 Streiker 1 -0110100 Raphaelson 1 -0110100 Ommerle 1 -0110100 Rebick 1 -0110100 Devison 1 -0110100 Hourbeigt 1 -0110100 Leiser 1 -0110100 Shiras 1 -0110100 Lehnhoff 1 -0110100 Lidner 1 -0110100 Larin 1 -0110100 Kusada 1 -0110100 Ackman 1 -0110100 Menenendez 1 -0110100 Young-Jin 1 -0110100 Emptage 1 -0110100 Okrayan 1 -0110100 Greenpan 1 -0110100 Gillingham 1 -0110100 Tuttleton 1 -0110100 Capones 1 -0110100 Tiggy-Winkle 1 -0110100 Donaldson. 1 -0110100 Macchio 1 -0110100 Schayes 1 -0110100 CONNALLY 1 -0110100 Russonello 1 -0110100 Ysaye 1 -0110100 Ondeck 1 -0110100 Jaising 1 -0110100 Sahr 1 -0110100 Taffet 1 -0110100 Smithsays 1 -0110100 Menedez 1 -0110100 Moyne 1 -0110100 Bothne 1 -0110100 Higuera 1 -0110100 Kander 1 -0110100 Ebb 1 -0110100 Krupansky 1 -0110100 Wagons-lits 1 -0110100 Automne 1 -0110100 Unser 1 -0110100 Sweikert 1 -0110100 Ayuho 1 -0110100 Imprimerie 1 -0110100 Eickelberg 1 -0110100 Biddulph 1 -0110100 Klitgaard 1 -0110100 Leppert 1 -0110100 Superczynski 1 -0110100 Brettell 1 -0110100 Cachin 1 -0110100 Kovitz 1 -0110100 Rapalics 1 -0110100 Gubser 1 -0110100 Dearie 1 -0110100 Malik 1 -0110100 Toomey 1 -0110100 Liotta 1 -0110100 Gronek 1 -0110100 Pfluger 1 -0110100 Halbfass 1 -0110100 Eifman 1 -0110100 Garville 1 -0110100 Moteren 1 -0110100 Briantsev 1 -0110100 Gauss 1 -0110100 Todaro 1 -0110100 McDougald 1 -0110100 Getschow 1 -0110100 Fromyer 1 -0110100 Morozov 1 -0110100 Gaponova 1 -0110100 Jinxing 1 -0110100 Polim 1 -0110100 Wildfang 1 -0110100 Fettweiss 1 -0110100 Ruffenach 1 -0110100 Eto 1 -0110100 Kyl 1 -0110100 Mimun 1 -0110100 Grimmer 1 -0110100 Pang. 1 -0110100 Frehner 1 -0110100 Growdon 1 -0110100 J.Harris 1 -0110100 MacManon 1 -0110100 Stangberg 1 -0110100 Brander 1 -0110100 Moorthy 1 -0110100 Burtless 1 -0110100 Scents. 1 -0110100 Hollishead 1 -0110100 Eliots 1 -0110100 Dugle 1 -0110100 Roumiguiere 1 -0110100 Seaber 1 -0110100 Carraro 1 -0110100 Moneta 1 -0110100 Middlekauff 1 -0110100 Nessel 1 -0110100 Micelli 1 -0110100 Diker 1 -0110100 Guingona 1 -0110100 Steortz 1 -0110100 Adie 1 -0110100 Gratch 1 -0110100 Olesiak 1 -0110100 Buch 1 -0110100 Loncraine 1 -0110100 Prochnow 1 -0110100 Wicket 1 -0110100 Semagran 1 -0110100 Lomans 1 -0110100 Siler 1 -0110100 Rovwn 1 -0110100 Bariscillo 1 -0110100 Hochbruecker 1 -0110100 Maemura 1 -0110100 Pichey 1 -0110100 Ronning 1 -0110100 Goshgarian 1 -0110100 Chaseman 1 -0110100 BenDov 1 -0110100 Whitcombe 1 -0110100 McCullaugh 1 -0110100 Hasior 1 -0110100 Kozaric 1 -0110100 Joensson 1 -0110100 Lubinski 1 -0110100 SAFIRE 1 -0110100 Nordkamp 1 -0110100 Gabal 1 -0110100 Ostertag 1 -0110100 Santelle 1 -0110100 elBashir 1 -0110100 Drabek 1 -0110100 Bream 1 -0110100 Pedrique 1 -0110100 Zurzolo 1 -0110100 Hewko 1 -0110100 Chediek 1 -0110100 Ishizuka 1 -0110100 Riskin 1 -0110100 Carlgren 1 -0110100 Gentzel 1 -0110100 Mone 1 -0110100 Galbraiths 1 -0110100 Hernandez-Pinero 1 -0110100 Freij 1 -0110100 Nyhan 1 -0110100 Prouvoyeur 1 -0110100 Goldeen 1 -0110100 Andoe 1 -0110100 Kasdi 1 -0110100 Biben 1 -0110100 Paroo 1 -0110100 Maudlin 1 -0110100 Fedeli 1 -0110100 Dungan 1 -0110100 Bungey 1 -0110100 Kinsolving 1 -0110100 DeHimer 1 -0110100 Weinzierl 1 -0110100 Hanneman 1 -0110100 Devane 1 -0110100 Adamek 1 -0110100 Gadda 1 -0110100 Musil 1 -0110100 Severin 1 -0110100 Brunis 1 -0110100 Sudhalter 1 -0110100 Cidre 1 -0110100 Villwock 1 -0110100 DioGuardi. 1 -0110100 Atchealak 1 -0110100 Listanowsky 1 -0110100 Ranno 1 -0110100 Fulwider 1 -0110100 Loev 1 -0110100 Carifa 1 -0110100 Shellenbarger 1 -0110100 Luger 1 -0110100 Grommet 1 -0110100 Siefman 1 -0110100 Galletly 1 -0110100 Morel 1 -0110100 Hingst 1 -0110100 Eiffler 1 -0110100 Basch 1 -0110100 Tanimira 1 -0110100 Bollwitt 1 -0110100 Viorst 1 -0110100 Andreyev 1 -0110100 Kasarov 1 -0110100 Storrer 1 -0110100 Ruzika 1 -0110100 Smibert 1 -0110100 Seacat 1 -0110100 Barkoff 1 -0110100 Jaans 1 -0110100 Golsen 1 -0110100 Tardio 1 -0110100 Colacello 1 -0110100 Liberati 1 -0110100 Hidas 1 -0110100 Showcross 1 -0110100 Steinbruner 1 -0110100 Prusa 1 -0110100 Kaza 1 -0110100 Perraudin 1 -0110100 Tomsho 1 -0110100 Clason 1 -0110100 Bohla 1 -0110100 A.Bilzerian 1 -0110100 Lanker 1 -0110100 Garrision 1 -0110100 Konig 1 -0110100 Villepique 1 -0110100 Vennochi 1 -0110100 Shavers 1 -0110100 Hilkert 1 -0110100 Solomon-Glover 1 -0110100 Schiffren 1 -0110100 Bazemore 1 -0110100 Vanterpool 1 -0110100 Hickok 1 -0110100 Scammon 1 -0110100 Maradudin 1 -0110100 Goldchmidt 1 -0110100 Krosnick 1 -0110100 Blauser 1 -0110100 Lilliquist 1 -0110100 Smolz 1 -0110100 Ochsenchlager 1 -0110100 Loc 1 -0110100 Furillo 1 -0110100 ul-Islam 1 -0110100 Parthenopoulos 1 -0110100 Seremba 1 -0110100 Rentzepis 1 -0110100 Coni 1 -0110100 Sere 1 -0110100 Pondexter 1 -0110100 Motta 1 -0110100 Boerwinkle 1 -0110100 Kastil 1 -0110100 Boddy 1 -0110100 Ohkuma 1 -0110100 Alquist 1 -0110100 Alstyne 1 -0110100 Hovas 1 -0110100 Schmertzler 1 -0110100 Jovine 1 -0110100 Vajda 1 -0110100 Pignataro 1 -0110100 Wright. 1 -0110100 Konnyu 1 -0110100 Volpano 1 -0110100 Mulrennan 1 -0110100 Maestas 1 -0110100 Norfleet 1 -0110100 Corn-Revere 1 -0110100 Noseworthy 1 -0110100 Tiburski 1 -0110100 Puttman 1 -0110100 Blands 1 -0110100 Trumans 1 -0110100 Carsonization 1 -0110100 Figura 1 -0110100 Branman 1 -0110100 Waldheim. 1 -0110100 Bronstron 1 -0110100 Prottas 1 -0110100 Adlow 1 -0110100 Henretta 1 -0110100 Staub 1 -0110100 Toyosawa 1 -0110100 Posey. 1 -0110100 Ulvaeus 1 -0110100 Sergievsky 1 -0110100 Szasz 1 -0110100 Krafcik 1 -0110100 Cherkin 1 -0110100 Podres 1 -0110100 Niedenfuer 1 -0110100 Briles 1 -0110100 Cuskern 1 -0110100 prostrates 1 -0110100 Goudge 1 -0110100 Varasi 1 -0110100 Kosten 1 -0110100 Feikens 1 -0110100 Icaza 1 -0110100 Linbaugh 1 -0110100 Mednis 1 -0110100 Pallottini 1 -0110100 Juans 1 -0110100 Krzyzewski 1 -0110100 Pork. 1 -0110100 Andersch 1 -0110100 Electicite 1 -0110100 Gayetot 1 -0110100 Tylers 1 -0110100 Horrick 1 -0110100 Labow 1 -0110100 Hesseltine 1 -0110100 Moscone 1 -0110100 Salzgeber 1 -0110100 Sturzenegger 1 -0110100 Tosti 1 -0110100 Cruz-Romo 1 -0110100 Melhado 1 -0110100 Curteis 1 -0110100 Ebbutt 1 -0110100 Carwein 1 -0110100 Horsmans 1 -0110100 DeVenuta 1 -0110100 Katzir 1 -0110100 Al-Naja 1 -0110100 Eget 1 -0110100 Souto 1 -0110100 Phalon 1 -0110100 Sattin 1 -0110100 Majovski 1 -0110100 Brumby 1 -0110100 Dumestre 1 -0110100 Rybacki 1 -0110100 Striha 1 -0110100 Gatchell 1 -0110100 Soumerai 1 -0110100 Tomba 1 -0110100 Accola 1 -0110100 Kieslowski 1 -0110100 VIIs 1 -0110100 Jarmusch 1 -0110100 Kellaway 1 -0110100 Rilling 1 -0110100 Wristons 1 -0110100 Maruquin 1 -0110100 Fagen 1 -0110100 Druzinski 1 -0110100 Mustie 1 -0110100 Schulmeyer 1 -0110100 Schrieber 1 -0110100 Smolka 1 -0110100 DeSeta 1 -0110100 Karambelas 1 -0110100 Pallieres 1 -0110100 Balner 1 -0110100 EGYPT 1 -0110100 Courtot 1 -0110100 Dentinger 1 -0110100 Riefler 1 -0110100 Aquilar 1 -0110100 Utrata 1 -0110100 Belusconi 1 -0110100 Umberson 1 -0110100 Gamez 1 -0110100 Romadin 1 -0110100 Shilinski 1 -0110100 Tabaka 1 -0110100 Orr-Cahall 1 -0110100 Grishaw-Mueller 1 -0110100 Belyanov 1 -0110100 Gertoberens 1 -0110100 Rockel 1 -0110100 Brindley 1 -0110100 Szabow 1 -0110100 counterpunched 1 -0110100 Kamlani 1 -0110100 Akerman 1 -0110100 Firor 1 -0110100 Murnick 1 -0110100 Davola 1 -0110100 Schwartz-Schilling 1 -0110100 Baumhauer 1 -0110100 Mandadori 1 -0110100 Ellenberg 1 -0110100 Keslar 1 -0110100 Westling 1 -0110100 Hakimoglu 1 -0110100 Hammer. 1 -0110100 Jocou 1 -0110100 Blunden 1 -0110100 Ohuchi 1 -0110100 Collingwood 1 -0110100 Malaprop 1 -0110100 Mover 1 -0110100 Zakaria 1 -0110100 Googin 1 -0110100 Casell 1 -0110100 Netti 1 -0110100 Gallaire-Bourega 1 -0110100 Tauro 1 -0110100 Rostenskowski 1 -0110100 Ortega-Padilla 1 -0110100 Landerman 1 -0110100 Haigh-Neal 1 -0110100 Maltin 1 -0110100 Slotsve 1 -0110100 Garrin 1 -0110100 IndoSuez 1 -0110100 Saravalle 1 -0110100 Riger 1 -0110100 Viallat 1 -0110100 Bernik 1 -0110100 Guaita 1 -0110100 Scheibl 1 -0110100 Asdrubali 1 -0110100 Morlotti 1 -0110100 Pomodoro 1 -0110100 Toya 1 -0110100 Uematsu 1 -0110100 Boshell 1 -0110100 Eckholt 1 -0110100 Naftzger 1 -0110100 Hubler 1 -0110100 Alkan 1 -0110100 Harapiak 1 -0110100 Combest 1 -0110100 Mirren 1 -0110100 Grohl 1 -0110100 Patawaran 1 -0110100 Hommes 1 -0110100 Rushd 1 -0110100 Muris 1 -0110100 Tierno 1 -0110100 Mukong 1 -0110100 Skilton 1 -0110100 Gillogly 1 -0110100 Keschl 1 -0110100 Yardenis 1 -0110100 LeCarre 1 -0110100 Kageyama 1 -0110100 Ruckdeschel 1 -0110100 Dashichev 1 -0110100 Turbay 1 -0110100 Fortunato 1 -0110100 Nykvist 1 -0110100 Grealish 1 -0110100 Bunka 1 -0110100 Shtern 1 -0110100 Morcroft 1 -0110100 Levante 1 -0110100 Meunier 1 -0110100 Gerroll 1 -0110100 Ransdell 1 -0110100 Pankow 1 -0110100 Rizvi 1 -0110100 Berlinghoff 1 -0110100 Want-XXVIII 1 -0110100 Jarreau 1 -0110100 Follender 1 -0110100 Schenken 1 -0110100 v.d. 1 -0110100 Pickins 1 -0110100 Foucauld 1 -0110100 Byck 1 -0110100 Tunstall 1 -0110100 Brosnen 1 -0110100 Kual 1 -0110100 LaBant 1 -0110100 Krasnow 1 -0110100 Euler 1 -0110100 Wermeil 1 -0110100 Shoob 1 -0110100 McTiernan 1 -0110100 Nourbakhsh 1 -0110100 Germond. 1 -0110100 Thornill 1 -0110100 Gass 1 -0110100 Bellah 1 -0110100 Egypte 1 -0110100 Sucreries 1 -0110100 Yeulet 1 -0110100 Coxford 1 -0110100 Gazdar 1 -0110100 Albukerk 1 -0110100 Hulya 1 -0110100 Chelios 1 -0110100 Olczyk 1 -0110100 Relias 1 -0110100 Ryun 1 -0110100 Rubins 1 -0110100 Shatz 1 -0110100 Uran 1 -0110100 Dlepu 1 -0110100 Gethin-Jones 1 -0110100 Pasake 1 -0110100 Kansteiner 1 -0110100 DANNEMILLER 1 -0110100 Vanata 1 -0110100 LoRusso 1 -0110100 Pezon 1 -0110100 Robichaud 1 -0110100 Truhe 1 -0110100 Mokren 1 -0110100 Dahill 1 -0110100 Knaup 1 -0110100 LoCastro 1 -0110100 Baltensweiler 1 -0110100 Stitzel 1 -0110100 Rosten 1 -0110100 DeMong 1 -0110100 Krupski 1 -0110100 Myhill 1 -0110100 Kleeblatt 1 -0110100 Lightman 1 -0110100 Huether 1 -0110100 Pantoliano 1 -0110100 Horioka 1 -0110100 Trenet 1 -0110100 Badura-Skoda 1 -0110100 Pommier 1 -0110100 Khali 1 -0110100 Boom-Boom 1 -0110100 Gersner 1 -0110100 Chasez 1 -0110100 Hosseini 1 -0110100 Kahklen 1 -0110100 Zavludovsky 1 -0110100 Polyakova 1 -0110100 Glab 1 -0110100 Papadimitriou 1 -0110100 Brandoni 1 -0110100 Leyva 1 -0110100 Ravich 1 -0110100 Reitz 1 -0110100 Naganawa 1 -0110100 Chapouthier 1 -0110100 Joyer 1 -0110100 Exter 1 -0110100 DeCerchio 1 -0110100 Hanazuka 1 -0110100 Namara 1 -0110100 Tulman 1 -0110100 8218 1 -0110100 Nyks 1 -0110100 Pavony 1 -0110100 Jovic 1 -0110100 Hittner 1 -0110100 Shahrabani 1 -0110100 SCHUMER 1 -0110100 Mottahedeh 1 -0110100 Buttavacoli 1 -0110100 Wiesman 1 -0110100 Avenir 1 -0110100 Bonasorte 1 -0110100 Wedgeworth 1 -0110100 Wolkind 1 -0110100 Hustace 1 -0110100 Rivoli 1 -0110100 Reidenbach 1 -0110100 Herger 1 -0110100 LeMen 1 -0110100 Littky 1 -0110100 Lindzen 1 -0110100 Ramathan 1 -0110100 Ellsaesser 1 -0110100 Rowland-Morin 1 -0110100 Sapienza 1 -0110100 Kishii 1 -0110100 Wolfe-ish 1 -0110100 Angrist 1 -0110100 Vescos 1 -0110100 Fortenbaugh 1 -0110100 Lewit-Nirenberg 1 -0110100 Tsukamoto 1 -0110100 Miroshina 1 -0110100 Quillen 1 -0110100 Chunn 1 -0110100 Heymeyer 1 -0110100 Brinkel 1 -0110100 Voutila 1 -0110100 Cronenberger 1 -0110100 Draftula 1 -0110100 Kodama 1 -0110100 Bonynge 1 -0110100 Nissa 1 -0110100 Tenda 1 -0110100 Weikl 1 -0110100 Panerei 1 -0110100 Apostol 1 -0110100 Giamattai 1 -0110100 Naders 1 -0110100 Mazzocchi 1 -0110100 Agathocleous 1 -0110100 Weissmuller 1 -0110100 Bebey 1 -0110100 Eckstein 1 -0110100 Goldenthal 1 -0110100 Baskerville 1 -0110100 Tetrud 1 -0110100 Tsoucalas 1 -0110100 Khaldun 1 -0110100 Taimiya 1 -0110100 Crego 1 -0110100 Haytow 1 -0110100 Boldrick 1 -0110100 Konvitz 1 -0110100 Lapique 1 -0110100 Agam 1 -0110100 Theriault 1 -0110100 Brasiliensis 1 -0110100 Denslow 1 -0110100 Pres 1 -0110100 Donath 1 -0110100 Trettien 1 -0110100 Serres 1 -0110100 Fezza 1 -0110100 Soyfer 1 -0110100 Nascimento 1 -0110100 Huscher 1 -0110100 Timnick 1 -0110100 Sugalski 1 -0110100 Gazdag 1 -0110100 Kovacic 1 -0110100 el-Dayem 1 -0110100 Fulwood 1 -0110100 Delaunay 1 -0110100 Bonga 1 -0110100 Shtromas 1 -0110100 Jicha 1 -0110100 Warman 1 -0110100 Yamasaki 1 -0110100 Netsch 1 -0110100 Mittelhoffer 1 -0110100 Saag 1 -0110100 Sikking 1 -0110100 Schleiermacher 1 -0110100 Lifson 1 -0110100 Aulsenbrook 1 -0110100 Chieffo 1 -0110100 MacDonell 1 -0110100 Dente 1 -0110100 Biryukov 1 -0110100 Anderson-Ellis 1 -0110100 Olea 1 -0110100 Bokat 1 -0110100 Amick 1 -0110100 Oberle 1 -0110100 Kutz 1 -0110100 Fronistas 1 -0110100 Sincoff 1 -0110100 poisson 1 -0110100 Rullo 1 -0110100 Rueda 1 -0110100 Psellus 1 -0110100 Zile 1 -0110100 Badder 1 -0110100 Brangwen 1 -0110100 Schmotter 1 -0110100 Sluman 1 -0110100 Beyle 1 -0110100 Salins 1 -0110100 Kostecka 1 -0110100 Gesellius 1 -0110100 Holditch 1 -0110100 Tenorio 1 -0110100 Villamiel 1 -0110100 Scrivener 1 -0110100 Mrozinksi 1 -0110100 Nalbone 1 -0110100 Nishikido 1 -0110100 Hadwin 1 -0110100 Slobodow 1 -0110100 Giron 1 -0110100 Takaezu 1 -0110100 Onuma 1 -0110100 Burbridge 1 -0110100 Preeg 1 -0110100 Imscher 1 -0110100 Irmscher 1 -0110100 Ganani 1 -0110100 Partom 1 -0110100 Felsenthal 1 -0110100 Naess 1 -0110100 Rostenkowksi 1 -0110100 Butorac 1 -0110100 Goodvibes 1 -0110100 Ooms 1 -0110100 Colter 1 -0110100 Ford. 1 -0110100 Jelinek-Fink 1 -0110100 Engberman 1 -0110100 Henritze 1 -0110100 Ciniero 1 -0110100 Balestrino 1 -0110100 Bilden 1 -0110100 Scrope 1 -0110100 Hamlett 1 -0110100 Laband 1 -0110100 Taskeshita 1 -0110100 Bonavera 1 -0110100 Kuerti 1 -0110100 Shomron 1 -0110100 gaines 1 -0110100 Barnaud 1 -0110100 Puzaitzer 1 -0110100 Mesa-Lago 1 -0110100 Wedekind 1 -0110100 Patou 1 -0110100 Theismann 1 -0110100 Boop 1 -0110100 Lenkin 1 -0110100 Youngclaus 1 -0110100 Gasche 1 -0110100 Hugick 1 -0110100 Crenna 1 -0110100 Cippollone 1 -0110100 athlete-to-athlete 1 -0110100 Pendziakow 1 -0110100 conocer 1 -0110100 Kopel 1 -0110100 Kleck 1 -0110100 Zoarski 1 -0110100 bawls 1 -0110100 Rollnick 1 -0110100 Ubben 1 -0110100 Feenberg 1 -0110100 Weigelt 1 -0110100 Ribuffo 1 -0110100 Reems 1 -0110100 Spiess 1 -0110100 Cannella 1 -0110100 Thomas-Vitrac 1 -0110100 Gubers 1 -0110100 Menand 1 -0110100 Chrystals 1 -0110100 Berscheid 1 -0110100 Walster 1 -0110100 Diab 1 -0110100 Wontner 1 -0110100 Gesu 1 -0110100 Schmeling 1 -0110100 Kneser 1 -0110100 Petito 1 -0110100 Poell 1 -0110100 Karrubi 1 -0110100 Abrew 1 -0110100 Wulfes 1 -0110100 McKanic 1 -0110100 Seidenthal 1 -0110100 Schrum 1 -0110100 Bren 1 -0110100 Hedquist 1 -0110100 Capuccino 1 -0110100 Manlove 1 -0110100 Olechowski 1 -0110100 Pianko 1 -0110100 Pappalardi 1 -0110100 Filippini 1 -0110100 Calles 1 -0110100 Magat 1 -0110100 Nicoletti 1 -0110100 Ogushi 1 -0110100 Eynon 1 -0110100 Rabello 1 -0110100 Brubeck 1 -0110100 Legge 1 -0110100 Attanasio 1 -0110100 Hoffenberger 1 -0110100 Ohira 1 -0110100 Gribbin 1 -0110100 Ramati 1 -0110100 Devito 1 -0110100 McCary 1 -0110100 Biggio 1 -0110100 Oberkfell 1 -0110100 Relin 1 -0110100 McCovey 1 -0110100 Salin 1 -0110100 Grassely 1 -0110100 Bastiat 1 -0110100 DerZee 1 -0110100 Gedrick 1 -0110100 Geremek 1 -0110100 DeClue 1 -0110100 Barne 1 -0110100 Kazurinsky 1 -0110100 Bujak 1 -0110100 Hadzidakis 1 -0110100 Nathusius 1 -0110100 Petroles/Total 1 -0110100 Keath 1 -0110100 Arness 1 -0110100 Beregevoy 1 -0110100 Bilirikis 1 -0110100 Driekas 1 -0110100 Gummer 1 -0110100 Vollard 1 -0110100 CROUCH 1 -0110100 Ayob 1 -0110100 Cullberg 1 -0110100 Patsalas 1 -0110100 Hindberg 1 -0110100 Villumsen 1 -0110100 Marietta-Allied-Bendix 1 -0110100 Kehlet 1 -0110100 Ryom 1 -0110100 Khouja 1 -0110100 Delloye 1 -0110100 Brookens 1 -0110100 Haserot 1 -0110100 CALI 1 -0110100 Greaver 1 -0110100 Georgano 1 -0110100 Gewitz 1 -0110100 Liebling-type 1 -0110100 Paffendorf 1 -0110100 Doti 1 -0110100 Chamness 1 -0110100 Watchtel 1 -0110100 Schuppert 1 -0110100 Spickelmier 1 -0110100 Schawlow 1 -0110100 Momeka 1 -0110100 Ursprung 1 -0110100 Aviles 1 -0110100 Hanaway 1 -0110100 Lipincott 1 -0110100 Saettele 1 -0110100 Yudof 1 -0110100 Filipe 1 -0110100 Mickelsen 1 -0110100 Chaves 1 -0110100 Corrine 1 -0110100 Knapton 1 -0110100 Lisitchkin 1 -0110100 Skulason 1 -0110100 Bogomolov 1 -0110100 Chown 1 -0110100 Aikin 1 -0110100 Kulp 1 -0110100 Horwtiz 1 -0110100 Lipsitz 1 -0110100 Knonstam 1 -0110100 Ichel 1 -0110100 Marschall 1 -0110100 Weigl 1 -0110100 Flagstad 1 -0110100 Lieu 1 -0110100 Sigurdsen 1 -0110100 Sheindlin 1 -0110100 Rugunda 1 -0110100 Barchas 1 -0110100 Kenefick 1 -0110100 Aase 1 -0110100 Niwa 1 -0110100 Bines 1 -0110100 Zachmanoglou 1 -0110100 Gosch 1 -0110100 Willebrands 1 -0110100 Sinkel 1 -0110100 Oguchi 1 -0110100 Akiyama 1 -0110100 Drosselmeyer 1 -0110100 Landi 1 -0110100 Arbor-based 1 -0110100 Cruger 1 -0110100 Kuteinikov 1 -0110100 Rizopolous 1 -0110100 Delves 1 -0110100 Leisening 1 -0110100 Bluedorn 1 -0110100 Haddon-Cave 1 -0110100 Bastien-Lepage 1 -0110100 Cherniss 1 -0110100 Luff 1 -0110100 Perdziola 1 -0110100 Kolomyjec 1 -0110100 Kuether 1 -0110100 Harsbarger 1 -0110100 Bolick 1 -0110100 Tu-an-Ku 1 -0110100 Cranko 1 -0110100 Pollare 1 -0110100 Schwartzburg 1 -0110100 Sbarge 1 -0110100 Kronthal 1 -0110100 Lenzner 1 -0110100 Millbank 1 -0110100 Wicklund 1 -0110100 Podolny 1 -0110100 LaChiusa 1 -0110100 Lavalliere 1 -0110100 Hantash 1 -0110100 Kovalyova 1 -0110100 Sinyavskaya 1 -0110100 Grisoni 1 -0110100 Amit 1 -0110100 Szymanowski 1 -0110100 Horenstein 1 -0110100 Persichetti 1 -0110100 Jacbobs 1 -0110100 Lassila 1 -0110100 Paxon 1 -0110100 Simondi 1 -0110100 Zhuangzhuang 1 -0110100 Fokine 1 -0110100 Spangrude 1 -0110100 Buis 1 -0110100 Gervase 1 -0110100 Custine 1 -0110100 Vickstrom 1 -0110100 Hnatyshyn 1 -0110100 Knetzger 1 -0110100 Tuvim 1 -0110100 Vinelli 1 -0110100 Aburn 1 -0110100 Pardau 1 -0110100 Begue 1 -0110100 Eisentstat 1 -0110100 Aveline 1 -0110100 Sischy 1 -0110100 Couperin 1 -0110100 Bolter 1 -0110100 Schlamme 1 -0110100 Venuto 1 -0110100 Eui 1 -0110100 Wujec 1 -0110100 Delius 1 -0110100 Boym 1 -0110100 DeMarte 1 -0110100 Argerich 1 -0110100 Spruance 1 -0110100 Sloans 1 -0110100 Gilboa 1 -0110100 Ahto 2 -0110100 Klarer 2 -0110100 Spindt 2 -0110100 Banawan 2 -0110100 Budig 2 -0110100 Sherden 2 -0110100 Silbermann 2 -0110100 Bouey 2 -0110100 Heeder 2 -0110100 Loder 2 -0110100 Greensher 2 -0110100 Gephardts 2 -0110100 LeBreton 2 -0110100 Varda 2 -0110100 Murdochs 2 -0110100 Krauch 2 -0110100 Kilgus 2 -0110100 Tamagni 2 -0110100 Weinshienk 2 -0110100 Ganin 2 -0110100 Gregoric 2 -0110100 Hochendoner 2 -0110100 Santacruz 2 -0110100 Bharadwaja 2 -0110100 Hrudka 2 -0110100 Storani 2 -0110100 Shushan 2 -0110100 Warwick-Ching 2 -0110100 Escolese 2 -0110100 Schoenfein 2 -0110100 Randova 2 -0110100 Barokocy 2 -0110100 Basnight 2 -0110100 Brebbia 2 -0110100 Pecori 2 -0110100 Compe 2 -0110100 Promutico 2 -0110100 Wajnert 2 -0110100 Gritzmaker 2 -0110100 Yuchengco 2 -0110100 Krindler 2 -0110100 Cariou 2 -0110100 St-Laurent 2 -0110100 Poscente 2 -0110100 Gennrich 2 -0110100 Slusarczyk 2 -0110100 Gilbert-Rolfe 2 -0110100 Wical 2 -0110100 Woodliff 2 -0110100 Dauer 2 -0110100 Wagnon 2 -0110100 Fassi 2 -0110100 Namberg 2 -0110100 Buchbinder 2 -0110100 Cassilly 2 -0110100 Kronenfeld 2 -0110100 Szudrawski 2 -0110100 Brenes 2 -0110100 Madara 2 -0110100 Shcherbina 2 -0110100 Steinke 2 -0110100 Marchesi 2 -0110100 Lemayev 2 -0110100 Griskey 2 -0110100 Orechio 2 -0110100 Kietzman 2 -0110100 Mainwaring 2 -0110100 Kuhlke 2 -0110100 Neinstedt 2 -0110100 Loudermilk 2 -0110100 Molopi 2 -0110100 Crane-Baker 2 -0110100 Galantowicz 2 -0110100 Goessel 2 -0110100 Whitacker 2 -0110100 Schmuckli 2 -0110100 Karmel 2 -0110100 Andreev 2 -0110100 Stata 2 -0110100 Wittkin 2 -0110100 Kaluzny 2 -0110100 Seif 2 -0110100 Colabella 2 -0110100 Fondersmith 2 -0110100 Whipp 2 -0110100 Geng 2 -0110100 Foerde 2 -0110100 Breau 2 -0110100 Pogett 2 -0110100 Sedgley 2 -0110100 Barbret 2 -0110100 DeGhetto 2 -0110100 Senderowitz 2 -0110100 Palcy 2 -0110100 Bosomworth 2 -0110100 Berquist 2 -0110100 Mattsson 2 -0110100 Gostin 2 -0110100 Balch 2 -0110100 MacIntire 2 -0110100 Legorreta 2 -0110100 Bonett 2 -0110100 Moulthrop 2 -0110100 Gouw 2 -0110100 Leonis 2 -0110100 Ermita 2 -0110100 Zigarlick 2 -0110100 Moravec 2 -0110100 Konovalov 2 -0110100 Mongaka 2 -0110100 Castillo-Ramos 2 -0110100 World-USA 2 -0110100 Klott 2 -0110100 Genson 2 -0110100 Collischon 2 -0110100 Iori 2 -0110100 Blonder 2 -0110100 Prio 2 -0110100 Mendis 2 -0110100 Freind 2 -0110100 Takakuwa 2 -0110100 Hilboldt 2 -0110100 Lambi 2 -0110100 Gulyas 2 -0110100 Pinales 2 -0110100 Imsirovic 2 -0110100 Duquesnoy 2 -0110100 Auten 2 -0110100 Barthell 2 -0110100 Ulman 2 -0110100 Radermacher 2 -0110100 Andreacchio 2 -0110100 Distler 2 -0110100 Ferencik 2 -0110100 Caroli 2 -0110100 Lahmer 2 -0110100 Osenton 2 -0110100 Haims 2 -0110100 1er 2 -0110100 Portet 2 -0110100 Godman 2 -0110100 Kristof 2 -0110100 Myrberg 2 -0110100 Trotti 2 -0110100 Olafson 2 -0110100 Librick 2 -0110100 Farwick 2 -0110100 Trukhanovski 2 -0110100 Gauvry 2 -0110100 Hirzy 2 -0110100 Morgenstein 2 -0110100 Prater 2 -0110100 Romanchek 2 -0110100 Dichter 2 -0110100 Lipeles 2 -0110100 Mullan 2 -0110100 Shinsato 2 -0110100 Landowska 2 -0110100 Guntley 2 -0110100 Soughers 2 -0110100 Rapawy 2 -0110100 Weisenberg 2 -0110100 Mottaz 2 -0110100 Arpino 2 -0110100 Driska 2 -0110100 Ritardi 2 -0110100 Chatha 2 -0110100 Esher 2 -0110100 Homol 2 -0110100 Raup 2 -0110100 Kunze 2 -0110100 Rutigliano 2 -0110100 Faulder 2 -0110100 Schaedler 2 -0110100 Hosenball 2 -0110100 Nazzella 2 -0110100 Eule 2 -0110100 Alexandru 2 -0110100 Caputa 2 -0110100 Larrocha 2 -0110100 Polich 2 -0110100 Bolsinger 2 -0110100 Insull 2 -0110100 Swanborn 2 -0110100 Pfaff 2 -0110100 Cialone 2 -0110100 Kerich 2 -0110100 Baas 2 -0110100 Raftopoulos 2 -0110100 Swart 2 -0110100 Giap 2 -0110100 Hingorani 2 -0110100 Pazzianotto 2 -0110100 Lannin 2 -0110100 Liederman 2 -0110100 Fadden 2 -0110100 Stinnett 2 -0110100 Leasburg 2 -0110100 Agisheva 2 -0110100 Kastor 2 -0110100 Vishnevsky 2 -0110100 Strassels 2 -0110100 Tapia 2 -0110100 Tomowa-Sintow 2 -0110100 Manclark 2 -0110100 Govier 2 -0110100 Lelogeais 2 -0110100 Kertz 2 -0110100 Hlapane 2 -0110100 Orizondo 2 -0110100 Mollerstuen 2 -0110100 Baka 2 -0110100 Donges 2 -0110100 Helfand 2 -0110100 Horoszko 2 -0110100 Simonis 2 -0110100 Burchinal 2 -0110100 Nenadal 2 -0110100 Reichek 2 -0110100 Murmann 2 -0110100 Blaker 2 -0110100 Peaslee 2 -0110100 Billmeyer 2 -0110100 Fillepello 2 -0110100 Hoemke 2 -0110100 Gretz 2 -0110100 Skidelsky 2 -0110100 Klaucke 2 -0110100 Ribohn 2 -0110100 Hagegard 2 -0110100 Sojo 2 -0110100 Jumpasat 2 -0110100 Tremml 2 -0110100 Rydell 2 -0110100 Cefaly 2 -0110100 VanSanten 2 -0110100 Holaday 2 -0110100 Allik 2 -0110100 Murdock-Vaughn 2 -0110100 Mitty 2 -0110100 Nemoto 2 -0110100 Wintemute 2 -0110100 Vincola 2 -0110100 Hendee 2 -0110100 Pechter 2 -0110100 Gora 2 -0110100 Yerusalim 2 -0110100 Hoydysh 2 -0110100 Mehra 2 -0110100 Streater 2 -0110100 Djilas 2 -0110100 Fousek 2 -0110100 Krivoshe 2 -0110100 Tinguely 2 -0110100 Lawrenson 2 -0110100 Nigl 2 -0110100 McGue 2 -0110100 Groer 2 -0110100 Sellitti 2 -0110100 Shabazian 2 -0110100 Whitelaw 2 -0110100 Shuttleworth 2 -0110100 Burros 2 -0110100 Gralnick 2 -0110100 Sinkler 2 -0110100 Kakuta 2 -0110100 Schiraldi 2 -0110100 McDivitt 2 -0110100 Gussin 2 -0110100 Soltner 2 -0110100 Dranoff 2 -0110100 Doermer 2 -0110100 Robinov 2 -0110100 Deuel 2 -0110100 Wullenkermper 2 -0110100 Poure 2 -0110100 Godbey 2 -0110100 al-Khalifa 2 -0110100 Eckstrom 2 -0110100 Shomari 2 -0110100 Mattaini 2 -0110100 Bermant 2 -0110100 Duboc 2 -0110100 Goodgreed 2 -0110100 Trischler 2 -0110100 Rensi 2 -0110100 Makay-Coghill 2 -0110100 Arentsen 2 -0110100 Barsimentov 2 -0110100 Msuya 2 -0110100 Feinman 2 -0110100 Schoenrock 2 -0110100 Agca 2 -0110100 Abeles 2 -0110100 Cetron 2 -0110100 Slay 2 -0110100 Ilyich 2 -0110100 Sawamoto 2 -0110100 Burgasov 2 -0110100 Bankler 2 -0110100 Naitoh 2 -0110100 Tribulas 2 -0110100 Loomans 2 -0110100 Bernardini 2 -0110100 Beeson 2 -0110100 Smartt 2 -0110100 Nakatsugawa 2 -0110100 Landro 2 -0110100 Fernstrom 2 -0110100 George-Kanetiio 2 -0110100 Guilderson 2 -0110100 Zipperstein 2 -0110100 Edlund 2 -0110100 Nosiglia 2 -0110100 Jaunarena 2 -0110100 Clurman 2 -0110100 Croston 2 -0110100 Kounas 2 -0110100 Naymark 2 -0110100 Shirazi 2 -0110100 Lestienne 2 -0110100 Slivka 2 -0110100 Bullman 2 -0110100 Gilbertie 2 -0110100 Forseth 2 -0110100 Trevisan 2 -0110100 Velvel 2 -0110100 Gulyaev 2 -0110100 Reinfeld 2 -0110100 Woodberry 2 -0110100 Nevins 2 -0110100 Odean 2 -0110100 Scheelhaase 2 -0110100 Rottenberg 2 -0110100 Rueda-Sabater 2 -0110100 McAtee 2 -0110100 Romo 2 -0110100 Desselle 2 -0110100 Yirka 2 -0110100 Gelgota 2 -0110100 Zawlocki 2 -0110100 Litman 2 -0110100 Weatherup 2 -0110100 Kurtzman 2 -0110100 Douek 2 -0110100 Krummen 2 -0110100 Teske 2 -0110100 Boerner 2 -0110100 Cristofano 2 -0110100 Sanga 2 -0110100 Covello 2 -0110100 Kahveci 2 -0110100 McWhinney 2 -0110100 Olkhovsky 2 -0110100 Jasso 2 -0110100 Scop 2 -0110100 Garretty 2 -0110100 Blicksilver 2 -0110100 Erlick 2 -0110100 Egnew 2 -0110100 Hansbuer 2 -0110100 Jaharis 2 -0110100 Riverin 2 -0110100 Comeaway 2 -0110100 Makoni 2 -0110100 Janiero 2 -0110100 Goldie-Scot 2 -0110100 Hatt 2 -0110100 Beschloss 2 -0110100 Boissonnat 2 -0110100 Forbosh 2 -0110100 Nehm 2 -0110100 Guillo 2 -0110100 Saumier 2 -0110100 Ibias 2 -0110100 Kokado 2 -0110100 Wooding 2 -0110100 Conine 2 -0110100 Beduhn 2 -0110100 Poage 2 -0110100 LeCave 2 -0110100 Shimamura 2 -0110100 Minoletti 2 -0110100 LaFontaine 2 -0110100 Jerney 2 -0110100 Stainforth 2 -0110100 Fithian 2 -0110100 Tabaksblat 2 -0110100 Stankard 2 -0110100 Delhom 2 -0110100 Salus 2 -0110100 Droste 2 -0110100 Nonin 2 -0110100 Incisa 2 -0110100 Puhl 2 -0110100 Brinkler 2 -0110100 Tornes 2 -0110100 Fedewa 2 -0110100 Zabowski 2 -0110100 Atchley 2 -0110100 Berghoff 2 -0110100 Justiz 2 -0110100 Raburn 2 -0110100 Smolan 2 -0110100 Neitz 2 -0110100 Kobel 2 -0110100 Chevenement 2 -0110100 Burkart 2 -0110100 Pillai 2 -0110100 Eggbeer 2 -0110100 Sleeman 2 -0110100 Prucker 2 -0110100 MacGuire 2 -0110100 Priestley 2 -0110100 Scrymgeour 2 -0110100 Messelt 2 -0110100 McGarraugh 2 -0110100 Scardelletti 2 -0110100 Lurier 2 -0110100 Norvik 2 -0110100 Metraux 2 -0110100 Plowright 2 -0110100 Reisinger 2 -0110100 Mambelli 2 -0110100 Cielewich 2 -0110100 Sewright 2 -0110100 LaPota 2 -0110100 Gunberg 2 -0110100 Mackinney 2 -0110100 Burnes 2 -0110100 DeVarona 2 -0110100 Povejsil 2 -0110100 Tyda 2 -0110100 Cozadd 2 -0110100 Klassen 2 -0110100 Sup 2 -0110100 Groh 2 -0110100 Aarvik 2 -0110100 Eastvold 2 -0110100 Lemgruber 2 -0110100 Langoni 2 -0110100 Bastianini 2 -0110100 Gobbee 2 -0110100 Darr 2 -0110100 Agor 2 -0110100 Cundiff 2 -0110100 Novinsky 2 -0110100 Fons 2 -0110100 Keul 2 -0110100 Sefert 2 -0110100 Kokubu 2 -0110100 Ghigna 2 -0110100 Thigpen 2 -0110100 Torshen 2 -0110100 Ryman 2 -0110100 Gromer 2 -0110100 Tanski 2 -0110100 Batterson 2 -0110100 Kiba 2 -0110100 Lasdon 2 -0110100 Milosz 2 -0110100 Jeffee 2 -0110100 Unctuous 2 -0110100 Sanin 2 -0110100 Leitner 2 -0110100 Cammarano 2 -0110100 Heile 2 -0110100 Lenagh 2 -0110100 Meadvin 2 -0110100 Yehia 2 -0110100 Casiano 2 -0110100 Chesney 2 -0110100 Belinski 2 -0110100 Field-Fisher 2 -0110100 Stalnecker 2 -0110100 Samudio 2 -0110100 Valder 2 -0110100 Scasi 2 -0110100 Huberman 2 -0110100 Howorth 2 -0110100 Kachajian 2 -0110100 Delmaestro 2 -0110100 Daubenspeck 2 -0110100 Klingaman 2 -0110100 Remondi 2 -0110100 Gazzola 2 -0110100 Vinestein 2 -0110100 Szanton 2 -0110100 Gnerre 2 -0110100 Nejmeh 2 -0110100 Lopez-Chacon 2 -0110100 Lattanzi 2 -0110100 Schaik 2 -0110100 Scherzinger 2 -0110100 Malm 2 -0110100 Valera 2 -0110100 Hlavaty 2 -0110100 Valdetero 2 -0110100 Rogge 2 -0110100 Oppegard 2 -0110100 Moten 2 -0110100 Sidman 2 -0110100 Dunnington 2 -0110100 Bennardo 2 -0110100 Verma 2 -0110100 Dorsten 2 -0110100 Zoldessy 2 -0110100 Chayes 2 -0110100 Tono 2 -0110100 Giago 2 -0110100 Heckart 2 -0110100 Honerkamp 2 -0110100 McAthie 2 -0110100 Oubati 2 -0110100 Bratches 2 -0110100 Haarder 2 -0110100 Mexandeau 2 -0110100 Hoffstein 2 -0110100 Kamberos 2 -0110100 Pistoli 2 -0110100 Richeson 2 -0110100 Hassenfelt 2 -0110100 Majeed 2 -0110100 Amorena 2 -0110100 Wenglein 2 -0110100 Dormann 2 -0110100 Pierno 2 -0110100 Gersh 2 -0110100 Neidel 2 -0110100 Lahourcade 2 -0110100 Goodbar 2 -0110100 Lolley 2 -0110100 Hullum 2 -0110100 Campana 2 -0110100 Barkan 2 -0110100 Demoff 2 -0110100 Miggiano 2 -0110100 Callwood 2 -0110100 Pilon 2 -0110100 Plumbridge 2 -0110100 Boxell 2 -0110100 Ciccone 2 -0110100 Ewbank 2 -0110100 Gitlitz 2 -0110100 Pioe 2 -0110100 Oeverland 2 -0110100 Hulligan 2 -0110100 Kerson 2 -0110100 Sidwa 2 -0110100 Mangeot 2 -0110100 McKeever 2 -0110100 Gudenberg 2 -0110100 Abbruzzese 2 -0110100 Leishman 2 -0110100 Spacagna 2 -0110100 Marwedel 2 -0110100 Sartain 2 -0110100 McMasters 2 -0110100 Palefsky 2 -0110100 Lessler 2 -0110100 Pitot 2 -0110100 Enockson 2 -0110100 Uehara 2 -0110100 Arenberg 2 -0110100 Hauri 2 -0110100 Pinel 2 -0110100 Luscomb 2 -0110100 LePage 2 -0110100 Masubuchi 2 -0110100 Sharoui 2 -0110100 Loewenbaum 2 -0110100 Creasman 2 -0110100 Peloso 2 -0110100 Tortorello 2 -0110100 Morandi 2 -0110100 Demafelis 2 -0110100 Byrket 2 -0110100 Stuber 2 -0110100 Shub 2 -0110100 Westervelt 2 -0110100 Haselhoff 2 -0110100 Furino 2 -0110100 Medved 2 -0110100 Magrish 2 -0110100 Dorsen 2 -0110100 Cartland 2 -0110100 Langkau 2 -0110100 Cogswell 2 -0110100 Doucet 2 -0110100 Beickler 2 -0110100 Gourges 2 -0110100 Madlos 2 -0110100 Pelyhe 2 -0110100 Kranzler 2 -0110100 Kripke 2 -0110100 Breslawsky 2 -0110100 Merteuil 2 -0110100 G.V. 2 -0110100 Nodjoumi 2 -0110100 Wefer 2 -0110100 McAvay 2 -0110100 SaintAignan 2 -0110100 Comly 2 -0110100 Loughran 2 -0110100 Shefferly 2 -0110100 Obara 2 -0110100 Gellis 2 -0110100 Giangarlo 2 -0110100 Greb 2 -0110100 Polini 2 -0110100 Wahrman 2 -0110100 Edelmann 2 -0110100 Charyk 2 -0110100 Snellen 2 -0110100 Amorim 2 -0110100 LaLonde 2 -0110100 Cousteau 2 -0110100 Rummel 2 -0110100 Hausfeld 2 -0110100 Wojcicki 2 -0110100 Damick 2 -0110100 Koufos 2 -0110100 Fujitani 2 -0110100 Jewitt 2 -0110100 McDaid 2 -0110100 Rebone 2 -0110100 Fox-Genovese 2 -0110100 Staheli 2 -0110100 Keenum 2 -0110100 Schine 2 -0110100 Yorty 2 -0110100 Barratt 2 -0110100 Gigler 2 -0110100 Gelbart 2 -0110100 Demorest 2 -0110100 Aiello 2 -0110100 Cousineau 2 -0110100 Belway 2 -0110100 Fenvessy 2 -0110100 Hitchings 2 -0110100 Mulcair 2 -0110100 Martland 2 -0110100 Uhler 2 -0110100 Cheeseman 2 -0110100 Morella 2 -0110100 Usera 2 -0110100 Gogan 2 -0110100 Oros 2 -0110100 Havener 2 -0110100 Farnell 2 -0110100 Gammage 2 -0110100 Gussow 2 -0110100 Kashpirovsky 2 -0110100 Jiler 2 -0110100 Bilandic 2 -0110100 Alesio 2 -0110100 Targan 2 -0110100 Stadtmauer 2 -0110100 Spungen 2 -0110100 Klausing 2 -0110100 Berendt 2 -0110100 Braunreuther 2 -0110100 Hasler 2 -0110100 Chernovil 2 -0110100 Pastides 2 -0110100 Platzer 2 -0110100 Rowney 2 -0110100 Toupin 2 -0110100 Moloatsi 2 -0110100 Soshnik 2 -0110100 Clemmow 2 -0110100 Dubitsky 2 -0110100 Hannity 2 -0110100 Mannion 2 -0110100 Havey 2 -0110100 Garrant 2 -0110100 Fogash 2 -0110100 Reser 2 -0110100 Papushka 2 -0110100 Westfal-Larsen 2 -0110100 Kegley 2 -0110100 Kasen 2 -0110100 Milbocker 2 -0110100 Dampier 2 -0110100 Tullock 2 -0110100 Nigut 2 -0110100 Ellingboe 2 -0110100 Bodden 2 -0110100 Inatome 2 -0110100 Ohmann 2 -0110100 Palash 2 -0110100 Spira 2 -0110100 Zavada 2 -0110100 Farinelli 2 -0110100 Winmill 2 -0110100 Urwin 2 -0110100 Sotir 2 -0110100 Czyrek 2 -0110100 Martinello 2 -0110100 Leban 2 -0110100 Nagado 2 -0110100 Kortunov 2 -0110100 Elam 2 -0110100 Spahn 2 -0110100 Gagliano 2 -0110100 Icahns 2 -0110100 Deverell 2 -0110100 Pashkoff 2 -0110100 Schlicher 2 -0110100 Druzinksi 2 -0110100 Weistart 2 -0110100 Schineller 2 -0110100 Bermont 2 -0110100 LeVecke 2 -0110100 Gettleman 2 -0110100 Goetzl 2 -0110100 Higley 2 -0110100 Fitchjian 2 -0110100 Kamemura 2 -0110100 Bushelon 2 -0110100 Capo 2 -0110100 Stanworth 2 -0110100 Bellefroid 2 -0110100 Sternglass 2 -0110100 Nietschmann 2 -0110100 Reznichenko 2 -0110100 Arciniega 2 -0110100 Kasmarick 2 -0110100 Cabour 2 -0110100 Pischinger 2 -0110100 Hall-Walker 2 -0110100 Chady 2 -0110100 Suttner 2 -0110100 McClave 2 -0110100 Kandemir 2 -0110100 Kulick 2 -0110100 Searfoss 2 -0110100 Sloneker 2 -0110100 Cobden 2 -0110100 Corallo 2 -0110100 Brayman 2 -0110100 Boshoff 2 -0110100 Menzel 2 -0110100 Marinho 2 -0110100 Friedheim 2 -0110100 Carmicle 2 -0110100 Gupte 2 -0110100 Kresko 2 -0110100 McInerny 2 -0110100 Krysiak 2 -0110100 Nimeiri 2 -0110100 Schweggman 2 -0110100 Ludin 2 -0110100 Vorndran 2 -0110100 Fackler 2 -0110100 Benkert 2 -0110100 Dupre 2 -0110100 Koopman 2 -0110100 Clouse 2 -0110100 Day-Lewis 2 -0110100 Perrett 2 -0110100 Kawa 2 -0110100 Stirnweis 2 -0110100 Hallstrom 2 -0110100 Marchant 2 -0110100 Ertel 2 -0110100 Nykiel 2 -0110100 Seagraves 2 -0110100 Iorizzo 2 -0110100 Heerensperger 2 -0110100 Sharples 2 -0110100 Coubertin 2 -0110100 Laitre 2 -0110100 Harthorne 2 -0110100 Behrendt 2 -0110100 Unterweger 2 -0110100 Littler 2 -0110100 Nomani 2 -0110100 Segner 2 -0110100 Bowkamp 2 -0110100 Herdman 2 -0110100 Bretherick 2 -0110100 Ratushinskaya 2 -0110100 Catao 2 -0110100 Niblo 2 -0110100 Sasfy 2 -0110100 Branagan 2 -0110100 Carrau 2 -0110100 Senk 2 -0110100 Treloar 2 -0110100 Tumeh 2 -0110100 Zausner 2 -0110100 Strambach 2 -0110100 Connallon 2 -0110100 Hirst 2 -0110100 Crewson 2 -0110100 Bermon 2 -0110100 Pologe 2 -0110100 Gedge 2 -0110100 Kozmetsky 2 -0110100 Fendrick 2 -0110100 Deneen 2 -0110100 Poerschmann 2 -0110100 Houmes 2 -0110100 Egdahl 2 -0110100 Signoret 2 -0110100 Shanagher 2 -0110100 Koff-A-Lot 2 -0110100 Knapek 2 -0110100 Serota 2 -0110100 Szuch 2 -0110100 Cooper-Evans 2 -0110100 Naffah 2 -0110100 Callicott 2 -0110100 Jenko 2 -0110100 Linthacum 2 -0110100 Schonman 2 -0110100 Arkhipov 2 -0110100 Mackrel 2 -0110100 Wareham 2 -0110100 Weitzner 2 -0110100 Huelskoetter 2 -0110100 Totty 2 -0110100 Schnatter 2 -0110100 Demento 2 -0110100 Sayer 2 -0110100 Duras 2 -0110100 Stuermer 2 -0110100 Douthat 2 -0110100 Bonfiglio 2 -0110100 Staudt 2 -0110100 Poirel 2 -0110100 Marrone 2 -0110100 Chengerian 2 -0110100 Kopietz 2 -0110100 Gnazzo 2 -0110100 Diefenbaker 2 -0110100 Shays 2 -0110100 Stempler 2 -0110100 McBrien 2 -0110100 Chernier 2 -0110100 Tagaris 2 -0110100 Sheeline 2 -0110100 Shabalala 2 -0110100 Kendell 2 -0110100 DeCotiis 2 -0110100 Servoss 2 -0110100 Larish 2 -0110100 Lanz 2 -0110100 Barsky 2 -0110100 Haufler 2 -0110100 Bohlen 2 -0110100 Postelle 2 -0110100 Springett 2 -0110100 Thorell 2 -0110100 Pei-tsun 2 -0110100 Tomassetti 2 -0110100 Wennerholm 2 -0110100 Barham 2 -0110100 Eykamp 2 -0110100 Grabau 2 -0110100 Czypionka 2 -0110100 Leinoff 2 -0110100 Sakakibara 2 -0110100 Tinsman 2 -0110100 Mellanby 2 -0110100 Arcadipane 2 -0110100 Hillstrom 2 -0110100 Shooster 2 -0110100 Magurno 2 -0110100 Profusek 2 -0110100 Kira 2 -0110100 Masekela 2 -0110100 Iizumi 2 -0110100 Saicheua 2 -0110100 Knop 2 -0110100 Thostenson 2 -0110100 Dubester 2 -0110100 Dunsky 2 -0110100 Muench 2 -0110100 Olivarez 2 -0110100 Rugaber 2 -0110100 Kindser 2 -0110100 Hoppenstand 2 -0110100 Raikin 2 -0110100 Kamerman 2 -0110100 Bellaigue 2 -0110100 Piller 2 -0110100 McGiverin 2 -0110100 Fudd 2 -0110100 Fader 2 -0110100 Steudler 2 -0110100 Reyna 2 -0110100 Rote 2 -0110100 Garino 2 -0110100 Mutchler 2 -0110100 Favaloro 2 -0110100 Tandler 2 -0110100 Paracchini 2 -0110100 Cotlar 2 -0110100 Arrieta 2 -0110100 Haag 2 -0110100 Grebow 2 -0110100 Cagigas 2 -0110100 Sciarrino 2 -0110100 Lamarche 2 -0110100 Crawford-Browne 2 -0110100 Zotov 2 -0110100 Konoza 2 -0110100 Coldrick 2 -0110100 Gagey 2 -0110100 Bisiewicz 2 -0110100 Vorwinkel 2 -0110100 Prinsen 2 -0110100 Tourancheau 2 -0110100 Laragh 2 -0110100 Calantone 2 -0110100 Blaney 2 -0110100 Bernheim 2 -0110100 Tepps 2 -0110100 Pedrotti 2 -0110100 Tolleson 2 -0110100 Dornbrook 2 -0110100 Armeni 2 -0110100 Zagoria 2 -0110100 Kozel 2 -0110100 Westaway 2 -0110100 Mafuna 2 -0110100 Comrie 2 -0110100 Winpisinger 2 -0110100 Thonet 2 -0110100 Svahn 2 -0110100 Lobao 2 -0110100 Shiffrin 2 -0110100 Snowbeck 2 -0110100 Paschke 2 -0110100 Hatakeyama 2 -0110100 Geckle 2 -0110100 Altherr 2 -0110100 Loevenich 2 -0110100 Kates 2 -0110100 Kunisch 2 -0110100 Cavarozzi 2 -0110100 Armendariz 2 -0110100 Nachmann 2 -0110100 Biton 2 -0110100 Maslov 2 -0110100 Omenn 2 -0110100 Vredenburgh 2 -0110100 Vigliatore 2 -0110100 DeWein 2 -0110100 Santamaria 2 -0110100 Hashida 2 -0110100 Kupper 2 -0110100 Meierhenry 2 -0110100 Donnola 2 -0110100 Aja 2 -0110100 Samardich 2 -0110100 Lenat 2 -0110100 Pozderac 2 -0110100 Shorrock 2 -0110100 Pervanas 2 -0110100 Porson 2 -0110100 Meisenheimer 2 -0110100 Economidis 2 -0110100 Jancu 2 -0110100 Ormandy 2 -0110100 Meurer 2 -0110100 Rajter 2 -0110100 Sokoloff 2 -0110100 Heinle 2 -0110100 Yokoi 2 -0110100 Dongs 2 -0110100 Marietta-Bendix 2 -0110100 McEnrue 2 -0110100 Tentas 2 -0110100 Schacter 2 -0110100 Churpek 2 -0110100 Componation 2 -0110100 Thrailkill 2 -0110100 Maeder 2 -0110100 Tribou 2 -0110100 Dlamini 2 -0110100 Soldatenko 2 -0110100 Tetuan 2 -0110100 Whittet 2 -0110100 Heylin 2 -0110100 Verbrugge 2 -0110100 Felber 2 -0110100 Berens 2 -0110100 Kalyagin 2 -0110100 Guralnick 2 -0110100 Matkin 2 -0110100 Broeksma 2 -0110100 Tregarthen 2 -0110100 Schwyn 2 -0110100 Barzun 2 -0110100 Koyama 2 -0110100 McSorley 2 -0110100 Malknecht 2 -0110100 Blackhurst 2 -0110100 Trafecanty 2 -0110100 Stabenau 2 -0110100 Forero 2 -0110100 Polosov 2 -0110100 Schanck 2 -0110100 Ballou 2 -0110100 Kinnicutt 2 -0110100 Kosonen 2 -0110100 Dembinski 2 -0110100 Pfeister 2 -0110100 Malchi 2 -0110100 Zacheis 2 -0110100 Fuster 2 -0110100 Copaken 2 -0110100 Deschamps 2 -0110100 Ehrich 2 -0110100 Kewin 2 -0110100 Ellingsworth 2 -0110100 McGloin 2 -0110100 Jeker 2 -0110100 Procepe 2 -0110100 Pelanek 2 -0110100 Pantaleo 2 -0110100 Papelian 2 -0110100 Frevert 2 -0110100 Debella 2 -0110100 Croasdale 2 -0110100 Runke 2 -0110100 Ziol 2 -0110100 Gurewich 2 -0110100 Ruhaak 2 -0110100 Asplin 2 -0110100 Barclae 2 -0110100 Golovanov 2 -0110100 Yarden 2 -0110100 Hindle 2 -0110100 Makul 2 -0110100 Martone 2 -0110100 Graybill 2 -0110100 Labuza 2 -0110100 Leshaw 2 -0110100 Fraley 2 -0110100 Tourel 2 -0110100 Tani 2 -0110100 Magsaysay 2 -0110100 Gugenheim 2 -0110100 Wolthuis 2 -0110100 Ebner 2 -0110100 Wallinger 2 -0110100 Hubschen 2 -0110100 LeWitt 2 -0110100 Besserer 2 -0110100 Neyra 2 -0110100 Duclof 2 -0110100 Borsuk 2 -0110100 Lunzer 2 -0110100 Coady 2 -0110100 Egli 2 -0110100 Gatmaitan 2 -0110100 Dludsky 2 -0110100 Tane 2 -0110100 Kanin-Lovers 2 -0110100 Heydinger 2 -0110100 Harbrant 2 -0110100 Neathery 2 -0110100 Bernstam 2 -0110100 Polonsky 2 -0110100 Plishka 2 -0110100 Sugita 2 -0110100 Yerkovich 2 -0110100 Uchino 2 -0110100 Sway 2 -0110100 Leshen 2 -0110100 Savath 2 -0110100 Leblanc 2 -0110100 Ustaszewski 2 -0110100 Lindsley 2 -0110100 Amdall 2 -0110100 Al-Nakeeb 2 -0110100 Ganson 2 -0110100 Hermanson 2 -0110100 Fogarasi 2 -0110100 Trovato 2 -0110100 Fiscus 2 -0110100 Monsivais 2 -0110100 Thibodeaux 2 -0110100 Sarkisian 2 -0110100 Hofstadter 2 -0110100 Martinsek 2 -0110100 Gelber 2 -0110100 Ornati 2 -0110100 Longbine 2 -0110100 Turpen 2 -0110100 Hedgecock 2 -0110100 Palmtag 2 -0110100 Khubani 2 -0110100 Glassell 2 -0110100 Respicio 2 -0110100 Fugit 2 -0110100 Cheetham 2 -0110100 Tuan 2 -0110100 Stamey 2 -0110100 Veillet 2 -0110100 Maayan 2 -0110100 Fiala 2 -0110100 Gnodde 2 -0110100 Zimbler 2 -0110100 Wyszomierski 2 -0110100 Schindel 2 -0110100 Margerison 2 -0110100 Thompson/West 2 -0110100 Renchard 2 -0110100 Aportadera 2 -0110100 Mullally 2 -0110100 Chiranky 2 -0110100 Doronfeld 2 -0110100 Begbick 2 -0110100 Willems 2 -0110100 Karacan 2 -0110100 Stalberg 2 -0110100 Gade 2 -0110100 Aranow 2 -0110100 Wilems 2 -0110100 Kisscorni 2 -0110100 Edler 2 -0110100 Gutheil 2 -0110100 Silveri 2 -0110100 Broughten 2 -0110100 Ripka 2 -0110100 Macare 2 -0110100 Yewaisis 2 -0110100 Oechslin 2 -0110100 Komsu 2 -0110100 Ranzer 2 -0110100 Sgrosso 2 -0110100 Malveaux 2 -0110100 Kopcke 2 -0110100 Trinkl 2 -0110100 Grunfeld 2 -0110100 Durchain 2 -0110100 Shamberg 2 -0110100 Krepon 2 -0110100 Ozier 2 -0110100 Nisson 2 -0110100 Mulders 2 -0110100 Maciejko 2 -0110100 Grubbs 2 -0110100 Lanese 2 -0110100 Costos 2 -0110100 Weglarz 2 -0110100 Hirschfield 2 -0110100 Abeloff 2 -0110100 Groppi 2 -0110100 Schemehorn 2 -0110100 Platek 2 -0110100 Ancher 2 -0110100 Pitts-Tucker 2 -0110100 Klam 2 -0110100 Kadri 2 -0110100 Klima 2 -0110100 Prinz 2 -0110100 Sonderquist 2 -0110100 Milbrandt 2 -0110100 Kiyono 2 -0110100 Runtagh 2 -0110100 Woodpecker 2 -0110100 Lansden 2 -0110100 Tsukuhara 2 -0110100 Savert 2 -0110100 Gargalli 2 -0110100 Dunlea 2 -0110100 Koscher 2 -0110100 Freire 2 -0110100 Volkenant 2 -0110100 Etterbeck 2 -0110100 Alward 2 -0110100 Premont 2 -0110100 Alfisher 2 -0110100 DeJarnett 2 -0110100 Ciulla 2 -0110100 Fennessy 2 -0110100 Mulhern 2 -0110100 Pedraza 2 -0110100 Burklund 2 -0110100 Maltony 2 -0110100 Alsagoray 2 -0110100 Newton-Smith 2 -0110100 Pinick 2 -0110100 Fukuchi 2 -0110100 Goffe 2 -0110100 Doshi 2 -0110100 Springstead 2 -0110100 Schurke 2 -0110100 Giusti 2 -0110100 Krembs 2 -0110100 Reinebach 2 -0110100 Frensch 2 -0110100 Hennigan 2 -0110100 Galego 2 -0110100 Kuwayama 2 -0110100 Lukaszewski 2 -0110100 Tetreault 2 -0110100 Hamister 2 -0110100 Karkanen 2 -0110100 Bethea 2 -0110100 Whippen 2 -0110100 Schweickart 2 -0110100 Hudoff 2 -0110100 Waymire 2 -0110100 Jungers 2 -0110100 Maddry 2 -0110100 Doppelt 2 -0110100 Ripplemeyer 2 -0110100 Stuckert 2 -0110100 Earley 2 -0110100 Brainsby 2 -0110100 Cornelius-Green 2 -0110100 Gotschall 2 -0110100 Birgfeld 2 -0110100 Geman 2 -0110100 Magoo 2 -0110100 Kolter 2 -0110100 Gapen 2 -0110100 Davidge 2 -0110100 Poliakoff 2 -0110100 Florescu 2 -0110100 Knutz 2 -0110100 Deckelbaum 2 -0110100 Rymar 2 -0110100 Horsfield 2 -0110100 Linek 2 -0110100 Hayami 2 -0110100 Kendig 2 -0110100 Hajjar 2 -0110100 Varga 2 -0110100 Vermes 2 -0110100 Shennan 2 -0110100 Merrills 2 -0110100 Bearman 2 -0110100 Koepf 2 -0110100 Moraco 2 -0110100 Daken 2 -0110100 Rinat 2 -0110100 Mapelli 2 -0110100 Sergeon 2 -0110100 Ronk 2 -0110100 Waksman 2 -0110100 Ghirardi 2 -0110100 Eger 2 -0110100 Treverton 2 -0110100 Zancanaro 2 -0110100 Glekel 2 -0110100 Naeve 2 -0110100 DiRito 2 -0110100 Kuijpers 2 -0110100 Walti 2 -0110100 Heffering 2 -0110100 Batschari 2 -0110100 McMenamin 2 -0110100 McDermot 2 -0110100 Heisch 2 -0110100 Kaulentis 2 -0110100 Moleko 2 -0110100 Rooke 2 -0110100 Clouston 2 -0110100 Shaunnessy 2 -0110100 Treitel 2 -0110100 Churchwell 2 -0110100 Ozdamar 2 -0110100 Blumen 2 -0110100 Anchisi 2 -0110100 Kelel 2 -0110100 Verah 2 -0110100 Capitales 2 -0110100 Tsutakabe 2 -0110100 Pernicone 2 -0110100 Chantler 2 -0110100 Garofalo 2 -0110100 Batygin 2 -0110100 Soustiel 2 -0110100 Bookshester 2 -0110100 Dydzak 2 -0110100 Magalhaes 2 -0110100 Perzio-Biroli 2 -0110100 Illick 2 -0110100 Agarpay 2 -0110100 Hollfelder 2 -0110100 Mikulich 2 -0110100 Wallenius 2 -0110100 Ferrazza 2 -0110100 Burlage 2 -0110100 Errickson 2 -0110100 Greeves 2 -0110100 Moffet 2 -0110100 Al-Shanfari 2 -0110100 McCallon 2 -0110100 Naar 2 -0110100 Gaetti 2 -0110100 Ingle 2 -0110100 Patry 2 -0110100 el-Sheikh 2 -0110100 Ruckeyser 2 -0110100 Maidman 2 -0110100 Srikantan 2 -0110100 Hitselberger 2 -0110100 Langworthy 2 -0110100 Barlerin 2 -0110100 Grout 2 -0110100 Wuorinen 2 -0110100 Nono 2 -0110100 Wichman 2 -0110100 Birtwhistle 2 -0110100 Luening 2 -0110100 Rench 2 -0110100 Mounts 2 -0110100 Sheean 2 -0110100 Mansaaker 2 -0110100 Passaneau 2 -0110100 Groffman 2 -0110100 Aferworki 2 -0110100 Meridith 2 -0110100 Claydon 2 -0110100 Weinreich 2 -0110100 Banham 2 -0110100 Luecke 2 -0110100 Stokesberry 2 -0110100 Beracha 2 -0110100 Ahrano 2 -0110100 Ponti 2 -0110100 Saberton 2 -0110100 Peroutka 2 -0110100 Goodnough 2 -0110100 SLEDZ 2 -0110100 Spevack 2 -0110100 Wagele 2 -0110100 Parameswaran 2 -0110100 Batalov 2 -0110100 Maged 2 -0110100 Akouris 2 -0110100 Portney 2 -0110100 Griffey 2 -0110100 DiSieno 2 -0110100 Cardinale 2 -0110100 Smorada 2 -0110100 Bockstern 2 -0110100 Minikin 2 -0110100 Norwine 2 -0110100 Holtman 2 -0110100 Rossmiller 2 -0110100 Zandman 2 -0110100 Stutenroth 2 -0110100 Sward 2 -0110100 Regenstein 2 -0110100 Rolfes 2 -0110100 Irrigoo 2 -0110100 Mayoras 2 -0110100 Giersdorf 2 -0110100 Guiler 2 -0110100 Morant 2 -0110100 Hislop 2 -0110100 Brockhurst 2 -0110100 Shoushounova 2 -0110100 Capuani 2 -0110100 Shigemura 2 -0110100 Goldie-Morrison 2 -0110100 Epler 2 -0110100 Anason 2 -0110100 Critelli 2 -0110100 Cava 2 -0110100 Raiman 2 -0110100 Witherwax 2 -0110100 Blanz 2 -0110100 Juliao 2 -0110100 Leidich 2 -0110100 Jorgens 2 -0110100 Luthringshausen 2 -0110100 Sendel 2 -0110100 Ozadiah 2 -0110100 Cassar 2 -0110100 Dupere 2 -0110100 Schjott 2 -0110100 Wandel 2 -0110100 Temane 2 -0110100 Bumpass 2 -0110100 Koshar 2 -0110100 Reiche 2 -0110100 Assylmuratova 2 -0110100 Bourgondien 2 -0110100 Schneider-Siemssen 2 -0110100 Raupe 2 -0110100 Manios 2 -0110100 Gattuso 2 -0110100 Kuron 2 -0110100 Corkery 2 -0110100 Kelmenson 2 -0110100 Grandi 2 -0110100 Locigno 2 -0110100 Howcroft 2 -0110100 Franzi 2 -0110100 Semiler 2 -0110100 Cron 2 -0110100 Bappert 2 -0110100 Buscetto 2 -0110100 Croasdaile 2 -0110100 Hechenberger 2 -0110100 Aretz 2 -0110100 Simmon 2 -0110100 Timmer 2 -0110100 Giddins 2 -0110100 Faddis 2 -0110100 Zussman 2 -0110100 Argilagos 2 -0110100 Polon 2 -0110100 Dankanyin 2 -0110100 Nackerud 2 -0110100 Heseltine 2 -0110100 Schnorbus 2 -0110100 Alaimo 2 -0110100 Schmiedeskamp 2 -0110100 Shechter 2 -0110100 Vassalluzzo 2 -0110100 Gera 2 -0110100 Hipple 2 -0110100 Shelfer 2 -0110100 Jabbar 2 -0110100 Ziskin 2 -0110100 Soher 2 -0110100 Henne 2 -0110100 Sigurdson 2 -0110100 Suttie 2 -0110100 Schedeler 2 -0110100 Pozzuoli 2 -0110100 Telsey 2 -0110100 Witts 2 -0110100 Carosella 2 -0110100 Yau 2 -0110100 Vezeris 2 -0110100 Joannes 2 -0110100 McSweeney 2 -0110100 Hutchenson 2 -0110100 Hughey 2 -0110100 Cochran-Bond 2 -0110100 Schmandt 2 -0110100 Herschler 2 -0110100 Bragman 2 -0110100 Rodenberg 2 -0110100 Zisler 2 -0110100 Sabates 2 -0110100 Dialynas 2 -0110100 Hefer 2 -0110100 Pyadyshev 2 -0110100 Chui 2 -0110100 DiRocco 2 -0110100 VanderHorst 2 -0110100 Nanton 2 -0110100 Pittroff 2 -0110100 Fano 2 -0110100 Viscardi 2 -0110100 Capozzoli 2 -0110100 Ehnen 2 -0110100 Raub 2 -0110100 Fratianni 2 -0110100 Menotti 2 -0110100 Kanefield 2 -0110100 Clayman 2 -0110100 Ladouceur 2 -0110100 Caudron 2 -0110100 Skorneck 2 -0110100 Costiglio 2 -0110100 Kehoe 2 -0110100 Vondrasek 2 -0110100 Croes 2 -0110100 Simonton 2 -0110100 Gambardella 2 -0110100 Tjoflat 2 -0110100 Hibbs 2 -0110100 Botterill 2 -0110100 Shilaos 2 -0110100 Reeser 2 -0110100 Nurkse 2 -0110100 Southmayd 2 -0110100 Lepine 2 -0110100 Luczak 2 -0110100 Coryell 2 -0110100 Malachowski 2 -0110100 Blyleven 2 -0110100 Litchman 2 -0110100 Salvaneschi 2 -0110100 Oien 2 -0110100 Herf 2 -0110100 Hanning 2 -0110100 Boghossian 2 -0110100 Neeson 2 -0110100 Tayoun 2 -0110100 Sivyer 2 -0110100 Plover 2 -0110100 Makuch 2 -0110100 Areddy 2 -0110100 Sobolik 2 -0110100 Barberino 2 -0110100 Haraguchi 2 -0110100 Ayau 2 -0110100 Wessley 2 -0110100 Diffenderfer 2 -0110100 Kamsler 2 -0110100 Forsht 2 -0110100 Repoli 2 -0110100 Overby 2 -0110100 Noblat 2 -0110100 McNerny 2 -0110100 Krawetz 2 -0110100 DeMornay 2 -0110100 Borah 2 -0110100 Lydick 2 -0110100 Woodhull 2 -0110100 Mutch 2 -0110100 Livshin 2 -0110100 Cristol 2 -0110100 Roddenberry 2 -0110100 Trunzo 2 -0110100 Orlansky 2 -0110100 Blacker 2 -0110100 Paustian 2 -0110100 Erlap 2 -0110100 McAll 2 -0110100 Cesan 2 -0110100 Pennock 2 -0110100 Freleng 2 -0110100 Koerber 2 -0110100 Gerrity 2 -0110100 Badr 2 -0110100 Buckle 2 -0110100 Welschke 2 -0110100 Rushforth 2 -0110100 Minix 2 -0110100 DeChant 2 -0110100 Bartz 2 -0110100 Broomberg 2 -0110100 Shefsky 2 -0110100 Yasinsky 2 -0110100 Pugliese 2 -0110100 McClester 2 -0110100 Ujiie 2 -0110100 DeCastro 2 -0110100 Sohma 2 -0110100 Landaverde 2 -0110100 Cabauatan 2 -0110100 Orellana 2 -0110100 Dertadian 2 -0110100 Lulof 2 -0110100 Bejarno 2 -0110100 Duekmejian 2 -0110100 McNaghten 2 -0110100 Schur 2 -0110100 Grochmal 2 -0110100 Dulcamara 2 -0110100 Hausfater 2 -0110100 Krist 2 -0110100 Harshfield 2 -0110100 Poznak 2 -0110100 Tarry 2 -0110100 Hoodism 2 -0110100 Postlethwaite 2 -0110100 Auchincloss 2 -0110100 Gauchat 2 -0110100 Bowen-Woodward 2 -0110100 Bogomolny 2 -0110100 Magne 2 -0110100 Bambuck 2 -0110100 Spranger 2 -0110100 TenBruggencate 2 -0110100 Dach 2 -0110100 Laughren 2 -0110100 Kauper 2 -0110100 Avildson 2 -0110100 Jaunkalnietis 2 -0110100 Mehling 2 -0110100 Aspden 2 -0110100 Scheele 2 -0110100 Nerod 2 -0110100 Collings 2 -0110100 Abnett 2 -0110100 Riechers 2 -0110100 Frankston 2 -0110100 Ascenzi 2 -0110100 Hechler 2 -0110100 Dauria 2 -0110100 Duenewald 2 -0110100 Arterberry 2 -0110100 Heon 2 -0110100 Leffall 2 -0110100 Edleman 2 -0110100 Bhengu 2 -0110100 Charapp 2 -0110100 Zartler 2 -0110100 Gregath 2 -0110100 McGreevy 2 -0110100 Bilyeu 2 -0110100 Mishari 2 -0110100 Dubiel 2 -0110100 Fluehr 2 -0110100 Abatemarco 2 -0110100 Leglise 2 -0110100 Tumbusch 2 -0110100 Ahenkora 2 -0110100 Keiffer 2 -0110100 Golnick 2 -0110100 Koper 2 -0110100 Hutala 2 -0110100 Warlick 2 -0110100 Camenisch 2 -0110100 Houtz 2 -0110100 Dorros 2 -0110100 Bidens 2 -0110100 Soons 2 -0110100 Gaskill 2 -0110100 Prinsky 2 -0110100 Reinschmidt 2 -0110100 Cataford 2 -0110100 Marinaro 2 -0110100 Laudner 2 -0110100 Romey 2 -0110100 Attwell 2 -0110100 Dunster 2 -0110100 Beninson 2 -0110100 Aycock 2 -0110100 Furlow 2 -0110100 Winker 2 -0110100 Tchenio 2 -0110100 Marylander 2 -0110100 Nilssen 2 -0110100 Thomopoulos 2 -0110100 Maeussnest 2 -0110100 Patrikis 2 -0110100 Schadrack 2 -0110100 Thieke 2 -0110100 Froelich 2 -0110100 Verches 2 -0110100 Swinney 2 -0110100 Patsos 2 -0110100 Guerreiro 2 -0110100 Huibers 2 -0110100 Boulton 2 -0110100 Coupal 2 -0110100 Bonino 2 -0110100 Denlinger 2 -0110100 Caporali 2 -0110100 Ojeda 2 -0110100 Capp 2 -0110100 Ginger-Miller 2 -0110100 Donis-Keller 2 -0110100 Goodhill 2 -0110100 Shyer 2 -0110100 Saldivar 2 -0110100 Debenham 2 -0110100 Burkan 2 -0110100 Conason 2 -0110100 Cordia 2 -0110100 Brodbeck 2 -0110100 Brachtenbach 2 -0110100 Welburn 2 -0110100 Badum 2 -0110100 Wyandt 2 -0110100 Flueckiger 2 -0110100 Seigenfeld 2 -0110100 Clerico 2 -0110100 Joubert 2 -0110100 Kastens 2 -0110100 Sauerhaft 2 -0110100 Toler 2 -0110100 Spendly 2 -0110100 Longacre 2 -0110100 Elesgaray 2 -0110100 Facter 2 -0110100 Strossner 2 -0110100 Janz 2 -0110100 Munder 2 -0110100 Parmeter 2 -0110100 Mitarotonda 2 -0110100 Gorgens 2 -0110100 Lariviere 2 -0110100 Totah 2 -0110100 Ellyn 2 -0110100 Bick 2 -0110100 Talbert 2 -0110100 Bertie 2 -0110100 Koldashova 2 -0110100 Miley 2 -0110100 Borucke 2 -0110100 Stierheim 2 -0110100 Zungu 2 -0110100 Michalski 2 -0110100 Marchionni 2 -0110100 Tanjeloff 2 -0110100 Anifantakis 2 -0110100 Hassey 2 -0110100 Hofflund 2 -0110100 Machale 2 -0110100 Gornet 2 -0110100 Challande 2 -0110100 Bernikow 2 -0110100 Ulloa 2 -0110100 McCallin 2 -0110100 Rasmuson 2 -0110100 Leurgans 2 -0110100 Tivnan 2 -0110100 Ushimaru 2 -0110100 Nakaharu 2 -0110100 Vislocky 2 -0110100 Guiniven 2 -0110100 Luginbuhl 2 -0110100 Seibel 2 -0110100 DeFillipo 2 -0110100 Bollman 2 -0110100 Koenigsberg 2 -0110100 Brauel 2 -0110100 Whitler 2 -0110100 Kasselman 2 -0110100 Shrigley 2 -0110100 Mabbutt 2 -0110100 Voisinet 2 -0110100 Roskelley 2 -0110100 Fantom 2 -0110100 Heaberlin 2 -0110100 Trogdon 2 -0110100 Caunter 2 -0110100 Bridle 2 -0110100 Marcillac 2 -0110100 Heaps 2 -0110100 Jaguaribe 2 -0110100 Gyllenhammar 2 -0110100 Bylin 2 -0110100 Feshback 2 -0110100 Greenaway 2 -0110100 Lazarowitz 2 -0110100 Kuntz 2 -0110100 Kosky 2 -0110100 Tejeda 2 -0110100 Daigneault 2 -0110100 Goth 2 -0110100 Bateson 2 -0110100 Madan 2 -0110100 Foncerrada 2 -0110100 Gorden 2 -0110100 Crispo 2 -0110100 Gerbner 2 -0110100 Strasfeld 2 -0110100 Neidhardt 2 -0110100 Neher 2 -0110100 Urmston 2 -0110100 Harata 2 -0110100 Mleczko 2 -0110100 Ruh 2 -0110100 Purbaugh 2 -0110100 Dubynin 2 -0110100 Sinoway 2 -0110100 Texier 2 -0110100 Baccash 2 -0110100 Kazmierzak 2 -0110100 Geschke 2 -0110100 Zorovic 2 -0110100 Shumaker 2 -0110100 Wazeter 2 -0110100 Pruwer 2 -0110100 Moscaritolo 2 -0110100 Tevrizian 2 -0110100 Hadl 2 -0110100 Ornano 2 -0110100 Sapontzis 2 -0110100 Balcom 2 -0110100 Seelenfreund 2 -0110100 Malucchi 2 -0110100 Fells 2 -0110100 Bellingan 2 -0110100 Theuer 2 -0110100 Oyler 2 -0110100 Doucette 2 -0110100 Jenning 2 -0110100 Kuboye 2 -0110100 Coovadia 2 -0110100 Pickslay 2 -0110100 McDougler 2 -0110100 Wettig 2 -0110100 Slabolepszy 2 -0110100 Herzl 2 -0110100 Repetto 2 -0110100 Iaco 2 -0110100 Ladendorf 2 -0110100 Wynns 2 -0110100 Arnot 2 -0110100 Elinksy 2 -0110100 Kuenzi 2 -0110100 DeLuna 2 -0110100 Ohland 2 -0110100 Vlietstra 2 -0110100 Jinikwe 2 -0110100 Sakomizu 2 -0110100 Weyna 2 -0110100 LaFeber 2 -0110100 Glunt 2 -0110100 Haraf 2 -0110100 Eckhart 2 -0110100 Tsosie 2 -0110100 Gottardi 2 -0110100 Brickner 2 -0110100 Schwarzenneger 2 -0110100 Pecoraro 2 -0110100 Szlaga 2 -0110100 Berlekamp 2 -0110100 Zaslavskaia 2 -0110100 Ikeman 2 -0110100 Gornall 2 -0110100 Czaplinsky 2 -0110100 Hinkley 2 -0110100 Mittman 2 -0110100 Nebeker 2 -0110100 Loguidice 2 -0110100 Waihee 2 -0110100 Jitsu 2 -0110100 Eforo 2 -0110100 Bince 2 -0110100 Strentz 2 -0110100 Engelbright 2 -0110100 Dutta 2 -0110100 Battey 2 -0110100 Malunga 2 -0110100 Mbanjwa 2 -0110100 Treeman 2 -0110100 Arvidson 2 -0110100 Getzelman 2 -0110100 Reif 2 -0110100 Jankus 2 -0110100 Liewald 2 -0110100 Storaro 2 -0110100 Kerbo 2 -0110100 Ellmyer 2 -0110100 Jendralski 2 -0110100 Kocher 2 -0110100 Margenot 2 -0110100 Pacitti 2 -0110100 Kitson 2 -0110100 Ostuw 2 -0110100 Dutson 2 -0110100 Fagernas 2 -0110100 Pfeffer 2 -0110100 Burchill 2 -0110100 Hoerig 2 -0110100 Gerstacker 2 -0110100 Mestres 2 -0110100 Lafleur 2 -0110100 Riedlinger 2 -0110100 Keim 2 -0110100 Boehler 2 -0110100 Bromfield 2 -0110100 Sansonetti 2 -0110100 Henripin 2 -0110100 Verant 2 -0110100 Blackett 2 -0110100 Garbow 2 -0110100 McIlraith 2 -0110100 Tanny 2 -0110100 Mirones 2 -0110100 Pallai 2 -0110100 Mitchinson 2 -0110100 Konyo 2 -0110100 Koko 2 -0110100 Dargene 2 -0110100 Saporito 2 -0110100 Hels 2 -0110100 Schwieterman 2 -0110100 Tsunoda 2 -0110100 Lynott 2 -0110100 Boslund 2 -0110100 Sjorgen 2 -0110100 Hartel 2 -0110100 Yaari 2 -0110100 Metzner 2 -0110100 Bonpanne 2 -0110100 Allewaert 2 -0110100 Borragon 2 -0110100 Joosten 2 -0110100 Peek 2 -0110100 Turkiewicz 2 -0110100 Clarey 2 -0110100 Quant 2 -0110100 Lacey-Baker 2 -0110100 Vintcent 2 -0110100 Marky 2 -0110100 Ketcham 2 -0110100 Eggers 2 -0110100 Gianfrancesco 2 -0110100 Mouly 2 -0110100 Roelle 2 -0110100 Tachikawa 2 -0110100 Odann 2 -0110100 Codey 2 -0110100 Stanners 2 -0110100 Tomasetti 2 -0110100 Cittadine 2 -0110100 Oski 2 -0110100 Blaif 2 -0110100 Adkisson 2 -0110100 Haggott 2 -0110100 Strope 2 -0110100 Schlicter 2 -0110100 Shandor 2 -0110100 Huchra 2 -0110100 Zulanas 2 -0110100 Colloton 2 -0110100 Readhimer 2 -0110100 Missner 2 -0110100 Serpan 2 -0110100 Fleiss 2 -0110100 Bergonia 2 -0110100 Clemon 2 -0110100 Carrey 2 -0110100 McSpeerin 2 -0110100 Kovachevich 2 -0110100 Sproul 2 -0110100 Hipp 2 -0110100 Pivan 2 -0110100 Semak 2 -0110100 Neugebauer 2 -0110100 Dydo 2 -0110100 Katsuta 2 -0110100 Bertoni 2 -0110100 Westby 2 -0110100 Zembryski 2 -0110100 Biard 2 -0110100 Sassi 2 -0110100 Kronzer 2 -0110100 Kilgarlin 2 -0110100 Ruback 2 -0110100 Ganderson 2 -0110100 Patrizi 2 -0110100 Gothie 2 -0110100 Laverty 2 -0110100 Shimakura 2 -0110100 Stoyer 2 -0110100 Bamman 2 -0110100 Yelder 2 -0110100 Brodhun 2 -0110100 Langenfass 2 -0110100 Entremont 2 -0110100 Bouwman 2 -0110100 Nalon 2 -0110100 Dowley 2 -0110100 Kalmbach 2 -0110100 Helfinstein 2 -0110100 Monoson 2 -0110100 Glicken 2 -0110100 Precedo 2 -0110100 Graeber 2 -0110100 Kleman 2 -0110100 Emert 2 -0110100 Kotelly 2 -0110100 DiBartolomeo 2 -0110100 Chalmiers 2 -0110100 Bogas 2 -0110100 Iams 2 -0110100 Wolfran 2 -0110100 Schwarzkopf 2 -0110100 Streisfeld 2 -0110100 Geib 2 -0110100 Dreibelbis 2 -0110100 Tuyl 2 -0110100 Mandigo 2 -0110100 Drachman 2 -0110100 Mawhorter 2 -0110100 Yohe 2 -0110100 Pehlke 2 -0110100 Richart 2 -0110100 Mutterperl 2 -0110100 Peppmeier 2 -0110100 Manukian 2 -0110100 Saris 2 -0110100 Kosmo 2 -0110100 Anbender 2 -0110100 Sadeghi 2 -0110100 DeLors 2 -0110100 Schlough 2 -0110100 Buelow 2 -0110100 Rozhdestvensky 2 -0110100 Haggart 2 -0110100 Keulman 2 -0110100 Gardepie 2 -0110100 Saeger 2 -0110100 Volanakis 2 -0110100 Gobby 2 -0110100 Ritchey 2 -0110100 Sahni 2 -0110100 Zantman 2 -0110100 Scheffman 2 -0110100 Behnke 2 -0110100 Fortenberry 2 -0110100 Penczek 2 -0110100 Schulenberger 2 -0110100 Jouven 2 -0110100 Uelmen 2 -0110100 Filer 2 -0110100 Swedo 2 -0110100 Canizales 2 -0110100 Pickus 2 -0110100 Zaharoff 2 -0110100 Woodrum 2 -0110100 Whicker 2 -0110100 Krook 2 -0110100 Matsuo 2 -0110100 Laskowski 2 -0110100 Akerlow 2 -0110100 Wojcik 2 -0110100 Sperduto 2 -0110100 Yamnikov 2 -0110100 Schellenbach 2 -0110100 Braveman 2 -0110100 Cusser 2 -0110100 Rafko 2 -0110100 Mistlin 2 -0110100 Whitton 2 -0110100 Pettey 2 -0110100 Swindell 2 -0110100 Swarz 2 -0110100 Hasina 2 -0110100 Grimaldi 2 -0110100 Gushchin 2 -0110100 Streck 2 -0110100 Wingett 2 -0110100 Nishioka 2 -0110100 Sleight 2 -0110100 Vallee 2 -0110100 Rug 2 -0110100 Pesanelli 2 -0110100 Rocen 2 -0110100 Blodnick 2 -0110100 Kralich 2 -0110100 Liddon 2 -0110100 Spurling 2 -0110100 Weintrub 2 -0110100 DeZarraga 2 -0110100 Sifferman 2 -0110100 Stano 2 -0110100 LeMaster 2 -0110100 Hevia 2 -0110100 Rachleff 2 -0110100 Alifagonis 2 -0110100 Youman 2 -0110100 Croxton 2 -0110100 Cheever 2 -0110100 Fujimori 2 -0110100 Quilico 2 -0110100 Zeitlin 2 -0110100 Maggos 2 -0110100 Gruneisen 2 -0110100 Vinck 2 -0110100 Rhinesmith 2 -0110100 Murkeson 2 -0110100 Fjeldstad 2 -0110100 Stoskopf 2 -0110100 Smarr 2 -0110100 Kise 2 -0110100 Dunlavey 2 -0110100 Klinetobe 2 -0110100 Tunnermann 2 -0110100 Toplin 2 -0110100 Goeltz 2 -0110100 Kriesberg 2 -0110100 Lynd 2 -0110100 Obzina 2 -0110100 Medsger 2 -0110100 Tiefel 2 -0110100 Maskus 2 -0110100 Neisel 2 -0110100 Greenhut 2 -0110100 Stager 2 -0110100 Reinlein 2 -0110100 DeFanti 2 -0110100 Rish 2 -0110100 Bujold 2 -0110100 Barbanshchikova 2 -0110100 Perrot 2 -0110100 Tweeten 2 -0110100 Mishel 2 -0110100 Kusumoto 2 -0110100 Kajiyama 2 -0110100 Groomes 2 -0110100 Yingst 2 -0110100 Kurzman 2 -0110100 Hocker 2 -0110100 Amormino 2 -0110100 Issari 2 -0110100 Hoversten 2 -0110100 Kubicek 2 -0110100 McGruder 2 -0110100 Simmers 2 -0110100 Garon 2 -0110100 Kenkel 2 -0110100 Wilcoxson 2 -0110100 Rakove 2 -0110100 Mascola 2 -0110100 Nachtigall 2 -0110100 Ansorge 2 -0110100 Mestre 2 -0110100 Undem 2 -0110100 Addeo 2 -0110100 Dalenberg 2 -0110100 Busacker 2 -0110100 Shemer 2 -0110100 Aeschlimann 2 -0110100 Danischek 2 -0110100 Genzman 2 -0110100 Curleys 2 -0110100 Veracka 2 -0110100 Langevin 2 -0110100 Basaraba 2 -0110100 Laskin 2 -0110100 Sweerts 2 -0110100 Pekruhn 2 -0110100 Mittelman 2 -0110100 Demuzio 2 -0110100 Korab 2 -0110100 Pasciucco 2 -0110100 Spirito 2 -0110100 Chahbazian 2 -0110100 Hawkesworth 2 -0110100 Oakeshott 2 -0110100 Houtkin 2 -0110100 Rothwax 2 -0110100 Poserina 2 -0110100 Hixson 2 -0110100 Battuta 2 -0110100 Riopelle 2 -0110100 Murphey-Corb 2 -0110100 Alban-Davies 2 -0110100 Rosecrans 2 -0110100 Suhre 2 -0110100 Maslia 2 -0110100 Butchko 2 -0110100 Salmore 2 -0110100 Cangemi 2 -0110100 Gargiulo 2 -0110100 Willets 2 -0110100 Vien 2 -0110100 Newborg 2 -0110100 Kishore 2 -0110100 Babra 2 -0110100 Vogelmann 2 -0110100 Polley 2 -0110100 Massalha 2 -0110100 Godshall 2 -0110100 Albanese 2 -0110100 Trivisonno 2 -0110100 Bethke 2 -0110100 Vossoughi 2 -0110100 Hopcraft 2 -0110100 Piergallini 2 -0110100 Inoguchi 2 -0110100 Erbach 2 -0110100 Al-Anbari 2 -0110100 Kamena 2 -0110100 Markovits 2 -0110100 Weeda 2 -0110100 Mansulla 2 -0110100 Brunetta 2 -0110100 Barns 2 -0110100 Terril 2 -0110100 Rett 2 -0110100 Haroz 2 -0110100 Bowron 2 -0110100 Breidegam 2 -0110100 Quartermaine 2 -0110100 Kimzey 2 -0110100 Dysart 2 -0110100 Haid 2 -0110100 Kleynhans 2 -0110100 Ludwiszewski 2 -0110100 Hibey 2 -0110100 Sady 2 -0110100 Viraphon 2 -0110100 Diokno 2 -0110100 Henshaw-Suder 2 -0110100 Hilsinger 2 -0110100 Ginty 2 -0110100 Holub 2 -0110100 Arkes 2 -0110100 Moomaw 2 -0110100 Riede 2 -0110100 Ostberg 2 -0110100 Mesia 2 -0110100 Ouida 2 -0110100 Graafeiland 2 -0110100 Bolet 2 -0110100 Coxon 2 -0110100 Allamby 2 -0110100 Vennel 2 -0110100 Lamour 2 -0110100 Clipson 2 -0110100 Ponguta 2 -0110100 Olasky 2 -0110100 Copithorne 2 -0110100 Erkan 2 -0110100 Haliloglu 2 -0110100 Liles 2 -0110100 Arcuri 2 -0110100 Cagnetta 2 -0110100 Clendinen 2 -0110100 Lipka 2 -0110100 Hatkoff 2 -0110100 Spagnola 2 -0110100 Culleton 2 -0110100 Shuch 2 -0110100 Tokuda 2 -0110100 Ofstie 2 -0110100 Nickens 2 -0110100 Bich 2 -0110100 Yuelet 2 -0110100 Hafer 2 -0110100 Heeb 2 -0110100 Luptak 2 -0110100 J-K 2 -0110100 Houghteling 2 -0110100 Autrey 2 -0110100 Haquet 2 -0110100 Srnka 2 -0110100 Raps 2 -0110100 McTamaney 2 -0110100 Edeiken 2 -0110100 Dobb 2 -0110100 Havasy 2 -0110100 Shyres 2 -0110100 Purchas 2 -0110100 Biewen 2 -0110100 Cespedes 2 -0110100 Evangelista 2 -0110100 Karamanlis 2 -0110100 Farney 2 -0110100 Anstreicher 2 -0110100 Michigami 2 -0110100 Hrovat 2 -0110100 Lissner 2 -0110100 Argilado 2 -0110100 Coppock 2 -0110100 Linsenmeyer 2 -0110100 Lambesis 2 -0110100 Alcairo 2 -0110100 Kemerly 2 -0110100 Scordelis 2 -0110100 Bhakat 2 -0110100 Mourkas 2 -0110100 Estabrooks 2 -0110100 McClosky 2 -0110100 Vongs 2 -0110100 Costigan 2 -0110100 Goldhammer 2 -0110100 Boyar 2 -0110100 Zuhlke 2 -0110100 Tornero 2 -0110100 Sukarnoputri 2 -0110100 Gensamer 2 -0110100 Neatrour 2 -0110100 Atiba 2 -0110100 Bohan 2 -0110100 Cuckney 2 -0110100 Zito 2 -0110100 Plausteiner 2 -0110100 Cornella 2 -0110100 Nasi 2 -0110100 Griffis 2 -0110100 Holan 2 -0110100 Meroli 2 -0110100 Swierenga 2 -0110100 Butta 2 -0110100 Hodapp 2 -0110100 Patin 2 -0110100 Alizon 2 -0110100 Calaway 2 -0110100 Hirt 2 -0110100 Schlich 2 -0110100 Mugan 2 -0110100 Kilkeary 2 -0110100 Manaut 2 -0110100 Wollner 2 -0110100 Briddell 2 -0110100 Bronowski 2 -0110100 Lavorel 2 -0110100 Sowards 2 -0110100 Poli 2 -0110100 Spickler 2 -0110100 Rosete 2 -0110100 Haltner 2 -0110100 Conaty 2 -0110100 Lang-Albright 2 -0110100 Olivencia 2 -0110100 Iriarte 2 -0110100 Weinmeister 2 -0110100 Trerotola 2 -0110100 Serdyuk 2 -0110100 Waill 2 -0110100 Salvucci 2 -0110100 Kunieda 2 -0110100 Craco 2 -0110100 Pezman 2 -0110100 Schaad 2 -0110100 Sippy 2 -0110100 Marafino 2 -0110100 Kadare 2 -0110100 Keeshan 2 -0110100 Macri 2 -0110100 Vinzing 2 -0110100 Behme 2 -0110100 Voulkos 2 -0110100 Breit 2 -0110100 Durkalski 2 -0110100 Ugelow 2 -0110100 Okon 2 -0110100 Bacchetti 2 -0110100 Yago 2 -0110100 Stals 2 -0110100 Salzinger 2 -0110100 Lagrange 2 -0110100 Kretowicz 2 -0110100 Moffit 2 -0110100 Naimoli 2 -0110100 Suwyn 2 -0110100 Bridgland 2 -0110100 Boanas 2 -0110100 Masnick 2 -0110100 Frase 2 -0110100 Streitman 2 -0110100 Livelli 2 -0110100 DeMerit 2 -0110100 Jamani 2 -0110100 Chinoy 2 -0110100 Lopez-Bassols 2 -0110100 Zimmern 2 -0110100 Baniere 2 -0110100 Kawamoto 2 -0110100 Asakawa 2 -0110100 Osheroff 2 -0110100 Alday 2 -0110100 Messling 2 -0110100 Grisante 2 -0110100 Rahal 2 -0110100 Karls 2 -0110100 Medrala 2 -0110100 Iwakura 2 -0110100 Karetnikoff 2 -0110100 Raimondi 2 -0110100 Tabet 2 -0110100 Birchman 2 -0110100 Benston 2 -0110100 Holm 2 -0110100 Kidokoro 2 -0110100 LaMacchia 2 -0110100 Henriques 2 -0110100 Hargraves 2 -0110100 Wendlandt 2 -0110100 Cantilo 2 -0110100 Sacharov 2 -0110100 Rubino 2 -0110100 Gamerman 2 -0110100 Vorkoetter 2 -0110100 Wyker 2 -0110100 Luers 2 -0110100 Knellessen 2 -0110100 Japka 2 -0110100 Benites 2 -0110100 Tarbes 2 -0110100 Heinen 2 -0110100 Simoni 2 -0110100 Stillwaggon 2 -0110100 Kleehamer 2 -0110100 Schmieder 2 -0110100 Borsellino 2 -0110100 Wilcott 2 -0110100 Goodspeed 2 -0110100 Gaspari 2 -0110100 Sobe 2 -0110100 Diecidue 2 -0110100 Krampe 2 -0110100 Stoehr 2 -0110100 Greenspahn 2 -0110100 Shimrak 2 -0110100 Canitrot 2 -0110100 Koskenen 2 -0110100 Duggar 2 -0110100 Galston 2 -0110100 Appelo 2 -0110100 Brandin 2 -0110100 Johnasen 2 -0110100 Anglero 2 -0110100 Garbacz 2 -0110100 Helguera 2 -0110100 Usinowicz 2 -0110100 Woolveridge 2 -0110100 Gohlke 2 -0110100 Buchheit 2 -0110100 Hirohama 2 -0110100 Miau 2 -0110100 Wyrick 2 -0110100 Shiels 2 -0110100 Hedien 2 -0110100 Backus 2 -0110100 Arabean 2 -0110100 Earney 2 -0110100 Carrasco 2 -0110100 Stansifer 2 -0110100 Garard 2 -0110100 Rimmerman 2 -0110100 Grann 2 -0110100 DeMille 2 -0110100 Deavenport 2 -0110100 Tokarz 2 -0110100 Nargang 2 -0110100 Cleggett 2 -0110100 Ostojic 2 -0110100 Mihajlovic 2 -0110100 DeCicco 2 -0110100 Nehrlich 2 -0110100 Motl 2 -0110100 McDavid 2 -0110100 Kollo 2 -0110100 Blakeman 2 -0110100 Drennen 2 -0110100 Southcott 2 -0110100 Radovanovic 2 -0110100 Connoy 2 -0110100 Segatchi 2 -0110100 Cordill 2 -0110100 Amirkhas 2 -0110100 Cornicello 2 -0110100 Hardymon 2 -0110100 Tori 2 -0110100 Eatz 2 -0110100 Wadden 2 -0110100 Parce 2 -0110100 Coile 2 -0110100 Penosi 2 -0110100 Dunmire 2 -0110100 Wofsy 2 -0110100 Garten 2 -0110100 Howder 2 -0110100 Styers 2 -0110100 Sowanick 2 -0110100 Petrak 2 -0110100 Lett 2 -0110100 Viggers 2 -0110100 Llovio-Menendez 2 -0110100 Cagan 2 -0110100 Paladino 2 -0110100 Missler 2 -0110100 Hersly 2 -0110100 Altissimo 2 -0110100 Spivack 2 -0110100 Davis-Slade 2 -0110100 Klaiber 2 -0110100 Josten 2 -0110100 Herdeck 2 -0110100 Bonniwell 2 -0110100 Valk 2 -0110100 Redick 2 -0110100 Takahara 2 -0110100 Peretiatkowicz 2 -0110100 Kittle 2 -0110100 Vernam 2 -0110100 Orell 2 -0110100 Chihara 2 -0110100 Busker 2 -0110100 Schwantes 2 -0110100 Maffie 2 -0110100 Korwin 2 -0110100 Fustes 2 -0110100 Hamecs 2 -0110100 Ongaro 2 -0110100 Ahlf 2 -0110100 Haskel 2 -0110100 Marchinkowski 2 -0110100 Danchin 2 -0110100 Chehak 2 -0110100 Taddeo 2 -0110100 Sragow 2 -0110100 Rozic 2 -0110100 Randleman 2 -0110100 Siedenberg 2 -0110100 Ominayak 2 -0110100 Laiser 2 -0110100 Hochstein 2 -0110100 Bhola 2 -0110100 Biehn 2 -0110100 Prufrock 2 -0110100 Beeder 2 -0110100 Shanedling 2 -0110100 Sirlin 2 -0110100 Meiling 2 -0110100 Stayer 2 -0110100 Kasinowski 2 -0110100 Wendelken 2 -0110100 Taschler 2 -0110100 Gustman 2 -0110100 Lumbard 2 -0110100 Carveth 2 -0110100 Sosin 2 -0110100 Ignatov 2 -0110100 Cichanowicz 2 -0110100 Chervin 2 -0110100 Mousel 2 -0110100 Fornara 2 -0110100 Lindblom 2 -0110100 Rackman 2 -0110100 Vanik 2 -0110100 Uhrig 2 -0110100 Dagleish 2 -0110100 Aranko 2 -0110100 Corteway 2 -0110100 Bosshard 2 -0110100 Mohtashami-pur 2 -0110100 Jerrard 2 -0110100 Birkhofer 2 -0110100 Eastburn 2 -0110100 Dutti 2 -0110100 Rendueles 2 -0110100 Pique 2 -0110100 Soldevila 2 -0110100 Milantoni 2 -0110100 Benter 2 -0110100 Elsroth 2 -0110100 Fontham 2 -0110100 Krinsk 2 -0110100 Schmude 2 -0110100 Tytel 2 -0110100 Ablah 2 -0110100 Kroenthal 2 -0110100 Ghiringhelli 2 -0110100 Bennink 2 -0110100 Kitchell 2 -0110100 Tolle 2 -0110100 Harenstein 2 -0110100 Hosbach 2 -0110100 Merelli 2 -0110100 Nonoyama 2 -0110100 Niebanck 2 -0110100 Michnovicz 2 -0110100 Hehn 2 -0110100 Dudgeon 2 -0110100 Spitler 2 -0110100 Michaelides 2 -0110100 Bider 2 -0110100 Meskil 2 -0110100 Reesman 2 -0110100 Ubaldini 2 -0110100 Liew 2 -0110100 Cryan 2 -0110100 Heri 2 -0110100 Kovi 2 -0110100 Pedevillano 2 -0110100 Palliser 2 -0110100 Weimer 2 -0110100 Lansdowne 2 -0110100 Nibley 2 -0110100 Dimitrijevic 2 -0110100 Ogi 2 -0110100 Alausi 2 -0110100 Roake 2 -0110100 Mistarz 2 -0110100 Sitlani 2 -0110100 al-Chalabi 2 -0110100 Gutfriend 2 -0110100 Rosecan 2 -0110100 Birnberg 2 -0110100 Bayston 2 -0110100 Mangahas 2 -0110100 DiPasqua 2 -0110100 Coran 2 -0110100 Falkie 2 -0110100 Dalferes 2 -0110100 Eggleton 2 -0110100 Menees 2 -0110100 DeCurtis 2 -0110100 Schmale 2 -0110100 Sproule 2 -0110100 Hoeg 2 -0110100 Altenberg 2 -0110100 Ittleson 2 -0110100 Hanor 2 -0110100 Poyen 2 -0110100 Gitt 2 -0110100 Ballengee 2 -0110100 Kersch 2 -0110100 Anable 2 -0110100 Nenneman 2 -0110100 Beaty 2 -0110100 Markusic 2 -0110100 Schledwitz 2 -0110100 Borleis 2 -0110100 Heppner 2 -0110100 Nowlin 2 -0110100 Soviero 2 -0110100 Kingfield 2 -0110100 Tigue 2 -0110100 Khasawneh 2 -0110100 Doheny 2 -0110100 Schweighardt 2 -0110100 Dustour 2 -0110100 Hooding 2 -0110100 Tiepelman 2 -0110100 Galuppi 2 -0110100 Kreitman 2 -0110100 Moroi 2 -0110100 Lederberg 2 -0110100 Georgantas 2 -0110100 Cutis 2 -0110100 Depolo 2 -0110100 Brackbill 2 -0110100 Havelange 2 -0110100 Kassa 2 -0110100 Fricker 2 -0110100 Villavicencio 2 -0110100 Lathbury 2 -0110100 Fluhrer 2 -0110100 Mumma 2 -0110100 Whitehill 2 -0110100 Ury 2 -0110100 Ingberman 2 -0110100 Hlavin 2 -0110100 Woelk 2 -0110100 Wolkin 2 -0110100 Szaszkiewicz 2 -0110100 Berlet 2 -0110100 Krein 2 -0110100 Branden 2 -0110100 Ruble 2 -0110100 Strobin 2 -0110100 Marcuse 2 -0110100 Jeschke 2 -0110100 Strapazon 2 -0110100 Schooley 2 -0110100 Vaccaro 2 -0110100 Hatanaka 2 -0110100 Wedinger 2 -0110100 Caparelli 2 -0110100 Jiggetts 2 -0110100 Privette 2 -0110100 Glaber 2 -0110100 Nachmanoff 2 -0110100 Canney 2 -0110100 Marcian 2 -0110100 Kartte 2 -0110100 Nyman 2 -0110100 Torbert 2 -0110100 Kanahele 2 -0110100 Kopecky 2 -0110100 Furuya 2 -0110100 Henriksson 2 -0110100 Cordi 2 -0110100 Dickman 2 -0110100 Kringle 2 -0110100 Binette 2 -0110100 Sadwith 2 -0110100 Crabbe 2 -0110100 Kudirka 2 -0110100 Keneley 2 -0110100 Zakhem 2 -0110100 Casals 2 -0110100 Pafford 2 -0110100 Filip 2 -0110100 Chemiakin 2 -0110100 DiFiore 2 -0110100 Savill 2 -0110100 Millman 2 -0110100 Romchuk 2 -0110100 Kamitani 2 -0110100 Funnerscale 2 -0110100 Maddalon 2 -0110100 Griest 2 -0110100 Zeifman 2 -0110100 Spoerndli 2 -0110100 Buccina 2 -0110100 Malloch-Brown 2 -0110100 Langevoort 2 -0110100 Arends 2 -0110100 Esthimer 2 -0110100 Venz 2 -0110100 Fetcho 2 -0110100 Fage 2 -0110100 Hallis 2 -0110100 Kurashina 2 -0110100 Osiatynski 2 -0110100 Bruel 2 -0110100 Reuber 2 -0110100 Bandy 2 -0110100 Waltermann 2 -0110100 Botting 2 -0110100 Deis 2 -0110100 DeLoach 2 -0110100 Limitado 2 -0110100 Trice 2 -0110100 Battenberg 2 -0110100 Katko 2 -0110100 Dallia 2 -0110100 Brougher-Ayers 2 -0110100 Drobny 2 -0110100 Duncanson 2 -0110100 Workinger 2 -0110100 Casconi 2 -0110100 Galahad 2 -0110100 Sley 2 -0110100 Spottiswoode 2 -0110100 Amicarella 2 -0110100 Abbasi 2 -0110100 Zwiebel 2 -0110100 Maples 2 -0110100 Landrey 2 -0110100 Snavely 2 -0110100 Emerling 2 -0110100 Nedde 2 -0110100 McKenny 2 -0110100 Proscia 2 -0110100 Gearan 2 -0110100 Vangieson 2 -0110100 Stich 2 -0110100 Putka 2 -0110100 Ascher 2 -0110100 DeLucia 2 -0110100 Fairbrook 2 -0110100 Kirkham 2 -0110100 Sebastien 2 -0110100 Mortensen 2 -0110100 Macerola 2 -0110100 Fier 2 -0110100 Lemco 2 -0110100 Nuske 2 -0110100 Tway 2 -0110100 Mostert 2 -0110100 Michalak 2 -0110100 Lunsford 2 -0110100 Gadson 2 -0110100 Gaskin 2 -0110100 Bodmer 2 -0110100 Langrill 2 -0110100 Hinks 2 -0110100 Meggyesy 2 -0110100 Sipes 2 -0110100 Meichsner 2 -0110100 Inserro 2 -0110100 Eladli 2 -0110100 Dolman 2 -0110100 Czajkowski 2 -0110100 Frieling 2 -0110100 Axworthy 2 -0110100 Stapp 2 -0110100 Morici 2 -0110100 Kanagawa 2 -0110100 Schrammel 2 -0110100 Corsi 2 -0110100 Saber 2 -0110100 Vortmann 2 -0110100 Tupken 2 -0110100 Dolgikh 2 -0110100 Stzykiel 2 -0110100 Yamamah 2 -0110100 Skaugen 2 -0110100 Coste 2 -0110100 Silvey 2 -0110100 Dukhovni 2 -0110100 Michaelcheck 2 -0110100 Kowol 2 -0110100 Heimowitz 2 -0110100 Litvinchuk 2 -0110100 Speers 2 -0110100 Moechnig 2 -0110100 Crivellone 2 -0110100 Keresey 2 -0110100 Hosaka 2 -0110100 Krisbergh 2 -0110100 Wyderko 2 -0110100 Cossentino 2 -0110100 McQuillan 2 -0110100 Schlack 2 -0110100 Ochiltree 2 -0110100 Mulack 2 -0110100 Thrope 2 -0110100 Aubut 2 -0110100 Northcott 2 -0110100 Disposti 2 -0110100 Lespaul 2 -0110100 Culkin 2 -0110100 Magner 2 -0110100 Esslinger 2 -0110100 Mandl 2 -0110100 Nimmo 2 -0110100 Costalas 2 -0110100 Stow 2 -0110100 Cotten 2 -0110100 Gernert 2 -0110100 Hillsberg 2 -0110100 Onesto 2 -0110100 Hartrich 2 -0110100 Benaouag 2 -0110100 el-Mashad 2 -0110100 Breshers 2 -0110100 Korngold 2 -0110100 Obering 2 -0110100 Waterson 2 -0110100 Huckshorn 2 -0110100 Kundtz 2 -0110100 Buckleys 2 -0110100 Melchiori 2 -0110100 Seldman 2 -0110100 Liljedahl 2 -0110100 Reassurances 2 -0110100 Folz 2 -0110100 Roederer 2 -0110100 Sakanari 2 -0110100 Tigrel 2 -0110100 Frohnmayer 2 -0110100 Eskesen 2 -0110100 Lintel 2 -0110100 Scoppettone 2 -0110100 Ruane 2 -0110100 Dyka 2 -0110100 Saracoglu 2 -0110100 Filanovsky 2 -0110100 Brewton 2 -0110100 Nazario 2 -0110100 Mischinski 2 -0110100 Odets 2 -0110100 Douro 2 -0110100 Zabala 2 -0110100 Gioioso 2 -0110100 Sagdeyev 2 -0110100 Balebanov 2 -0110100 Duscha 2 -0110100 Lezak 2 -0110100 Giulini 2 -0110100 Harrex 2 -0110100 Karron 2 -0110100 Kubat 2 -0110100 Legan 2 -0110100 Sherwan 2 -0110100 Brott 2 -0110100 Roder 2 -0110100 Jollie 2 -0110100 Szombathelyi 2 -0110100 Hori 2 -0110100 Tazaki 2 -0110100 Castles 2 -0110100 Habitch 2 -0110100 Ekerdt 2 -0110100 Schutt 2 -0110100 Brophey 2 -0110100 Markowsky 2 -0110100 Turano 2 -0110100 Weininger 2 -0110100 Shalat 2 -0110100 Kazachishina 2 -0110100 Mueckenberger 2 -0110100 Treon 2 -0110100 Hunnicutt 2 -0110100 Jaquith 2 -0110100 Ghosn 2 -0110100 Faraco 2 -0110100 Meisels 2 -0110100 Subhas 2 -0110100 Westenburg 2 -0110100 Kazaras 2 -0110100 Jeuck 2 -0110100 Carsen 2 -0110100 Chell 2 -0110100 Balabanian 2 -0110100 Ellam 2 -0110100 Starworth 2 -0110100 Zwanziger 2 -0110100 Brandhuff 2 -0110100 Muhlstein 2 -0110100 Macaya 2 -0110100 Potzahr 2 -0110100 Mallino 2 -0110100 Domecq 2 -0110100 Shapland 2 -0110100 Casciari 2 -0110100 Mantz 2 -0110100 Lenaghan 2 -0110100 Khoylian 2 -0110100 Lochhead 2 -0110100 Tenaglia 2 -0110100 Mikita 2 -0110100 Berkenbile 2 -0110100 Fischetti 2 -0110100 Dolding 2 -0110100 Miskell 2 -0110100 Baade 2 -0110100 Minkowitz 2 -0110100 Foulks 2 -0110100 Olazabal 2 -0110100 Schoustra 2 -0110100 Engelhart 2 -0110100 Veber 2 -0110100 Saalfeld 2 -0110100 Giesecke 2 -0110100 DeBraal 2 -0110100 Tench 2 -0110100 Middlestadt 2 -0110100 Dedinsky 2 -0110100 Kilstock 2 -0110100 Duritsch 2 -0110100 Iannazzone 2 -0110100 Novek 2 -0110100 Liebs 2 -0110100 Thulin 2 -0110100 Lorigo 2 -0110100 Liston 2 -0110100 Landen 2 -0110100 Stalk 2 -0110100 Hirata 2 -0110100 Geter 2 -0110100 Schleck 2 -0110100 Pavle 2 -0110100 Kemple 2 -0110100 Yovovich 2 -0110100 Moles 2 -0110100 Ohlig 2 -0110100 Caldeira 2 -0110100 Fasenmyer 2 -0110100 Mokhtashemi 2 -0110100 Cembrowski 2 -0110100 Reams 2 -0110100 Susank 2 -0110100 Seibert 2 -0110100 Wickens 2 -0110100 Isurugi 2 -0110100 Inda 2 -0110100 Koors 2 -0110100 Landwehr 2 -0110100 Kempen 2 -0110100 Tschetter 2 -0110100 Messersmith 2 -0110100 Siedzikowski 2 -0110100 Keohane 2 -0110100 Pifer 2 -0110100 Freiburger 2 -0110100 Eichengreen 2 -0110100 Vigilante 2 -0110100 Mustain 2 -0110100 Meiers 2 -0110100 Ohlandt 2 -0110100 Lardieri 2 -0110100 Siipola 2 -0110100 Borst-Eilers 2 -0110100 Rennert 2 -0110100 Treisman 2 -0110100 Kidwell 2 -0110100 Suprihatno 2 -0110100 Lereah 2 -0110100 Honneker 2 -0110100 Loper 2 -0110100 Genderen 2 -0110100 Cheit 2 -0110100 Thomashausen 2 -0110100 Gorter 2 -0110100 Bru 2 -0110100 Szamuely 2 -0110100 Gother 2 -0110100 McElvain 2 -0110100 Fraleigh 2 -0110100 Fitzmaurice 2 -0110100 Pankonin 2 -0110100 Fingold 2 -0110100 Sahlas 2 -0110100 Laski 2 -0110100 Tiller 2 -0110100 Pitselos 2 -0110100 Budenbender 2 -0110100 Gacy 2 -0110100 Skoulikidis 2 -0110100 Pankyo 2 -0110100 Laureta 2 -0110100 Calautti 2 -0110100 Danandjaja 2 -0110100 Coussens 2 -0110100 Westoff 2 -0110100 Trautlein 2 -0110100 Aushauser 2 -0110100 Yunghanns 2 -0110100 Bellia 2 -0110100 Hussey 2 -0110100 Slatery 2 -0110100 Munjack 2 -0110100 Roumeliotis 2 -0110100 Bortmess 2 -0110100 Eilledge 2 -0110100 Closs 2 -0110100 Ghoblan 2 -0110100 Terr 2 -0110100 Abu-Helal 2 -0110100 Courtens 2 -0110100 Reiser 2 -0110100 Kaczor 2 -0110100 Spievack 2 -0110100 Griffo 2 -0110100 Esbin 2 -0110100 Palmaz 2 -0110100 Silipigni 2 -0110100 Apolo 2 -0110100 Runice 2 -0110100 Polsky 2 -0110100 Burenkov 2 -0110100 Pezzani 2 -0110100 Shuck 2 -0110100 Barovian 2 -0110100 Dettloff 2 -0110100 Piercy 2 -0110100 Durney 2 -0110100 Alencar 2 -0110100 Baize 2 -0110100 Kudo 2 -0110100 Cotsakos 2 -0110100 Paternot 2 -0110100 Gunyou 2 -0110100 Morfessis 2 -0110100 Veldhuizen 2 -0110100 Bhagat 2 -0110100 Cazale 2 -0110100 Muchmore 2 -0110100 Turso 2 -0110100 Coballasi 2 -0110100 Vander-Schrier 2 -0110100 Testagrossa 2 -0110100 Vohrer 2 -0110100 Gronningsater 2 -0110100 Alghini 2 -0110100 Wehling 2 -0110100 Straiges 2 -0110100 Fiore 2 -0110100 Gava 2 -0110100 Belogia 2 -0110100 Zait 2 -0110100 Fouraker 2 -0110100 Uraki 2 -0110100 Kubo 2 -0110100 Leavy 2 -0110100 Stoehlker 2 -0110100 Straley 2 -0110100 Misson 2 -0110100 Unanue 2 -0110100 Baloyra 2 -0110100 Gannes 2 -0110100 Bonelli 2 -0110100 Lazay 2 -0110100 Shirman 2 -0110100 Eddlemon 2 -0110100 Podvey 2 -0110100 Zullow 2 -0110100 Frankenthaler 2 -0110100 Chesnokov 2 -0110100 Sants 2 -0110100 Central-5 2 -0110100 Siri 2 -0110100 Salih 2 -0110100 Febesh 2 -0110100 Topkis 2 -0110100 Huet 2 -0110100 Gethin 2 -0110100 Gouin 2 -0110100 Feirson 2 -0110100 Schriber 2 -0110100 Moyes 2 -0110100 Talamantes 2 -0110100 Zona 2 -0110100 Hyndman 2 -0110100 Aschoff 2 -0110100 Whillock 2 -0110100 Eifert 2 -0110100 Tanselle 2 -0110100 Getzendanner 2 -0110100 Alesevic 2 -0110100 Jhin 2 -0110100 McMinn 2 -0110100 Tufte 2 -0110100 Grabner 2 -0110100 Kliewer 2 -0110100 McManis 2 -0110100 Miringoff 2 -0110100 Cavouto 2 -0110100 Gahagan 2 -0110100 Skrabucha 2 -0110100 Sieber 2 -0110100 Heymont 2 -0110100 Altaf 2 -0110100 Billmyer 2 -0110100 Morake 2 -0110100 Lorber 2 -0110100 Brinly 2 -0110100 Strassmann 2 -0110100 Hatzenauer 2 -0110100 Nayden 2 -0110100 Tardiff 2 -0110100 Ghazal 2 -0110100 Gaal 2 -0110100 Gazit 2 -0110100 Matskyavichyus 2 -0110100 Bolena 2 -0110100 Hasasneh 2 -0110100 Arietta 2 -0110100 Shipper-Smith 2 -0110100 Pandolfi 2 -0110100 Kirkorian 2 -0110100 Lonmo 2 -0110100 Cuncannan 2 -0110100 Pottenger 2 -0110100 Klawitter 2 -0110100 Falon 2 -0110100 Cappio 2 -0110100 Heymans 2 -0110100 Radydeh 2 -0110100 Bortman 2 -0110100 Arimura 2 -0110100 Yokoyama 2 -0110100 Quariq 2 -0110100 Abdul-Karim 2 -0110100 Caballe 2 -0110100 Thannhauser 2 -0110100 Wagenen 2 -0110100 Sloss 2 -0110100 Kenehan 2 -0110100 Tatarowicz 2 -0110100 Pecorella 2 -0110100 Stolbach 2 -0110100 Cormack 2 -0110100 Renzi 2 -0110100 Smallenberger 2 -0110100 Haimsohn 2 -0110100 Naumes 2 -0110100 Meisenzahl 2 -0110100 Garvett 2 -0110100 Kanev 2 -0110100 Cosner 2 -0110100 Arman 2 -0110100 Kolasch 2 -0110100 Granello 2 -0110100 Kilty 2 -0110100 Athan 2 -0110100 Zorich 2 -0110100 Sokolski 2 -0110100 Baynham 2 -0110100 Niesyn 2 -0110100 Muncaster 2 -0110100 al-Otaiba 2 -0110100 Wiewel 2 -0110100 Zywicki 2 -0110100 Brownlie 2 -0110100 Soper 2 -0110100 Kanoo 2 -0110100 Neans 2 -0110100 Sohail 2 -0110100 Mazari 2 -0110100 Graor 2 -0110100 Gatenby 2 -0110100 Finando 2 -0110100 Plaumann 2 -0110100 Carvelli 2 -0110100 Tiruchelvam 2 -0110100 Arvanitidis 2 -0110100 Athulathmudali 2 -0110100 Sifri 2 -0110100 Crutzen 2 -0110100 Schmidt-Fellner 2 -0110100 Samani 2 -0110100 Kaweske 2 -0110100 Protos 2 -0110100 Mickley 2 -0110100 Risorto 2 -0110100 Keister 2 -0110100 Regil 2 -0110100 Berrett 2 -0110100 Lobur 2 -0110100 Uchiyama 2 -0110100 Getchell 2 -0110100 Bernhoff 2 -0110100 Oberbeke 2 -0110100 Manahan 2 -0110100 Gal 2 -0110100 Stennett 2 -0110100 Brey 2 -0110100 Naciri 2 -0110100 Lhota 2 -0110100 Bellingrer 2 -0110100 Lichty 2 -0110100 Jenco 2 -0110100 Ohlman 2 -0110100 Sonoda 2 -0110100 Faccio 2 -0110100 Hazlewood 2 -0110100 Padnick 2 -0110100 Dankert 2 -0110100 Hesson 2 -0110100 Tramontozzi 2 -0110100 Riplett 2 -0110100 Gammell 2 -0110100 Volten 2 -0110100 Maisieres 2 -0110100 Carles 2 -0110100 Daye 2 -0110100 Grignon 2 -0110100 Steidle 2 -0110100 Beckstead 2 -0110100 Easthom 2 -0110100 Gianninoto 2 -0110100 Griesmer 2 -0110100 Goettlich 2 -0110100 Serauskas 2 -0110100 Hilibrand 2 -0110100 Beres 2 -0110100 Reicker 2 -0110100 Colvill 2 -0110100 Reaveley 2 -0110100 Schmiegelow 2 -0110100 Erenberg 2 -0110100 Almendros 2 -0110100 Donaruma 2 -0110100 Hanawalt 2 -0110100 Montange 2 -0110100 Willmore 2 -0110100 Macko 2 -0110100 Folsey 2 -0110100 DeFranceaux 2 -0110100 Gallastegui 2 -0110100 Abdelfattah 2 -0110100 Wadkins 2 -0110100 Mondel 2 -0110100 Sladojev 2 -0110100 Salameh 2 -0110100 Kishk 2 -0110100 Gerken 2 -0110100 Pajcic 2 -0110100 Solkoff 2 -0110100 Kaese 2 -0110100 Quatermain 2 -0110100 Lenoir 2 -0110100 Saeks 2 -0110100 Simeant 2 -0110100 Yaverbaum 2 -0110100 Churbanov 2 -0110100 Mittlemann 2 -0110100 Kelberer 2 -0110100 Fredrickson 2 -0110100 Mokoto 2 -0110100 Porretti 2 -0110100 Shifo 2 -0110100 Sambwa 2 -0110100 Sloma 2 -0110100 Beckhard 2 -0110100 Longpre 2 -0110100 Drees 2 -0110100 Zevallos 2 -0110100 Gabrovsky 2 -0110100 Paparizov 2 -0110100 Philion 2 -0110100 Echegaray 2 -0110100 Watkin 2 -0110100 Toxe 2 -0110100 Capaldi 2 -0110100 Towe 2 -0110100 Rohner 2 -0110100 Shoup 2 -0110100 Prosperi 2 -0110100 Keehan 2 -0110100 Benach 2 -0110100 Hirdt 2 -0110100 Fawsett 2 -0110100 Garzetti 2 -0110100 Bodine 2 -0110100 Rible 2 -0110100 Yamaji 2 -0110100 Siepierski 2 -0110100 Saluter 2 -0110100 Furin 2 -0110100 Gayden 2 -0110100 Mollof 2 -0110100 Havel 2 -0110100 Savic 2 -0110100 Stribling 2 -0110100 Proodian 2 -0110100 DeFilippis 2 -0110100 Plarczyk 2 -0110100 Shellhaus 2 -0110100 Lemay 2 -0110100 Foust 2 -0110100 Lattanzio 2 -0110100 Scifres 2 -0110100 Zingale 2 -0110100 Tamraz 2 -0110100 Morovitz 2 -0110100 Crase 2 -0110100 Porraro 2 -0110100 Lahner 2 -0110100 Birner 2 -0110100 Bevirt 2 -0110100 Lifshitz 2 -0110100 Smykla 2 -0110100 Gressens 2 -0110100 Yott 2 -0110100 Wretched 2 -0110100 Samber 2 -0110100 Sepenzis 2 -0110100 Tarnower 2 -0110100 Petromelis 2 -0110100 Kavicky 2 -0110100 Sezaki 2 -0110100 Majak 2 -0110100 Ichiki 2 -0110100 Fukano 2 -0110100 Nintzel 2 -0110100 Larrimore 2 -0110100 Svetlich 2 -0110100 Yoffe 2 -0110100 Veatch 2 -0110100 Cedraschi 2 -0110100 MallochBrown 2 -0110100 Marthinsen 2 -0110100 Wnorowski 2 -0110100 Leccia 2 -0110100 Bourdon 2 -0110100 Bergstrasser 2 -0110100 Cummiskey 2 -0110100 Bunin 2 -0110100 Harrosh 2 -0110100 Teutsch 2 -0110100 Hoerjel 2 -0110100 Beran 2 -0110100 Neeves 2 -0110100 Willen 2 -0110100 Sturza 2 -0110100 Mango 2 -0110100 Mikel 2 -0110100 Consolini 2 -0110100 Binstead 2 -0110100 Samborn 2 -0110100 Rayos 2 -0110100 Melander 2 -0110100 Barma 2 -0110100 Puig 2 -0110100 Neidjie 2 -0110100 Safiol 2 -0110100 Lushbaugh 2 -0110100 Nabelle 2 -0110100 Satrum 2 -0110100 Cunniff 2 -0110100 Bernstock 2 -0110100 Greenlees 2 -0110100 Spurck 2 -0110100 Caven-Atack 2 -0110100 Ruvolo 2 -0110100 Zampieri 2 -0110100 Nylen 2 -0110100 Kasparian 2 -0110100 Cocotas 2 -0110100 Perrino 2 -0110100 Wilkening 2 -0110100 Colitti 2 -0110100 Chorek 2 -0110100 Detharding 2 -0110100 Deedes 2 -0110100 Scarlata 2 -0110100 Parson 2 -0110100 Karzai 2 -0110100 Aizen 2 -0110100 Gazard 2 -0110100 Eckerson 2 -0110100 Mayr 2 -0110100 Thanner 2 -0110100 Routhier 2 -0110100 Beplat 2 -0110100 Whittenhall 2 -0110100 Lavita 2 -0110100 Kaputikyan 2 -0110100 Honnor 2 -0110100 Karlsson 2 -0110100 Ackell 2 -0110100 Lindsay-Hogg 2 -0110100 Kicklighter 2 -0110100 Reinsberg 2 -0110100 Rabushka 2 -0110100 Piland 2 -0110100 Dolben 2 -0110100 Schafran 2 -0110100 Bickerton 2 -0110100 Clerkin 2 -0110100 Moerman 2 -0110100 Kafcas 2 -0110100 Romig 2 -0110100 Gobachev 2 -0110100 Wayt 2 -0110100 Ataraya 2 -0110100 Caprio 2 -0110100 Chapple 2 -0110100 Guarnieri 2 -0110100 Isen 2 -0110100 Goebeler 2 -0110100 Krevitsky 2 -0110100 Heid 2 -0110100 Tollin 2 -0110100 Cournoyer 2 -0110100 Corti 2 -0110100 Shostal 2 -0110100 Reicholt 2 -0110100 Johnck 2 -0110100 Jakway 2 -0110100 Busquet 2 -0110100 Jalkut 2 -0110100 Ulsch 2 -0110100 Forsgren 2 -0110100 Sender 2 -0110100 Ifshin 2 -0110100 Rekow 2 -0110100 Looloian 2 -0110100 Millbanks 2 -0110100 Ianniello 2 -0110100 Coughlan 2 -0110100 Vasiloudis 2 -0110100 Verney 2 -0110100 Greaux 2 -0110100 Treiber 2 -0110100 Karlan 2 -0110100 Faherty 2 -0110100 Modin 2 -0110100 Eichel 2 -0110100 Kastabelo 2 -0110100 Pilchen 2 -0110100 Kovolyova 2 -0110100 Barresi 2 -0110100 Guren 2 -0110100 DeNucci 2 -0110100 Fratkin 2 -0110100 Karmen 2 -0110100 Nemet 2 -0110100 Moberg 2 -0110100 Tansky 2 -0110100 Heinnemann 2 -0110100 Morsani 2 -0110100 Tookoome 2 -0110100 Friderichs 2 -0110100 Botvinnik 2 -0110100 Willging 2 -0110100 Seirawan 2 -0110100 Scheid 2 -0110100 Valenteen 2 -0110100 Steingard 2 -0110100 Frankenheimer 2 -0110100 Postrel 2 -0110100 Walby 2 -0110100 Jonovic 2 -0110100 Poppel 2 -0110100 Rigg 2 -0110100 Odiorne 2 -0110100 Jatar 2 -0110100 Golitsyn 2 -0110100 Duobinis 2 -0110100 Thorkilsen 2 -0110100 Rendin 2 -0110100 Gunton 2 -0110100 Stedt 2 -0110100 Seda 2 -0110100 Warnemunde 2 -0110100 Lachelli 2 -0110100 Stasey 2 -0110100 Frelly 2 -0110100 Vierra 2 -0110100 Sabella 2 -0110100 Berzok 2 -0110100 Kouns 2 -0110100 Poeppel 2 -0110100 Doczi 2 -0110100 Kossar 2 -0110100 Pizzitola 2 -0110100 Yglesias 2 -0110100 Schneebaum 2 -0110100 Hagestad 2 -0110100 Rediker 2 -0110100 Seidlin 2 -0110100 Harah 2 -0110100 Jelincic 2 -0110100 Solley 2 -0110100 Giannetti 2 -0110100 Thall 2 -0110100 Armajani 2 -0110100 Rosenson 2 -0110100 Jaser 2 -0110100 Campoy 2 -0110100 Bernardy 2 -0110100 Splane 2 -0110100 Fitzhenry 2 -0110100 Abut 2 -0110100 Saussez 2 -0110100 Scheibe 2 -0110100 Angula 2 -0110100 Vimond 2 -0110100 Speicher 2 -0110100 Moharam 2 -0110100 Tureen 2 -0110100 Tellatin 2 -0110100 Jeremie 2 -0110100 Vaisse 2 -0110100 Snetzer 2 -0110100 Reymann 2 -0110100 Francesconi 2 -0110100 Sovern 2 -0110100 Torrione 2 -0110100 Brauplan 2 -0110100 Catuzzi 2 -0110100 Rosin 2 -0110100 Latortue 2 -0110100 Sambour 2 -0110100 Flam 2 -0110100 Klimisch 2 -0110100 Deiser 2 -0110100 Scheckner 2 -0110100 Soldo 2 -0110100 Mclure 2 -0110100 Steuri 2 -0110100 Maturi 2 -0110100 Bresnahan 2 -0110100 Bommer 2 -0110100 Krowpman 2 -0110100 Liesener 2 -0110100 Kulavik 2 -0110100 Jampel 2 -0110100 Fukuyoshi 2 -0110100 Shanas 2 -0110100 Peterkin 2 -0110100 Southey 2 -0110100 Manzano 2 -0110100 Kintzy 2 -0110100 Antal 2 -0110100 Massello 2 -0110100 blancos 2 -0110100 Yuschak 2 -0110100 Demetrion 2 -0110100 Olstein 2 -0110100 Tanii 2 -0110100 Pielech 2 -0110100 Vagts 2 -0110100 Tobiason 2 -0110100 Garthoff 2 -0110100 Gamero 2 -0110100 Keery 2 -0110100 Cappuccilli 2 -0110100 Vieytez 2 -0110100 Tegnelia 2 -0110100 Nambara 2 -0110100 Cappuccino 2 -0110100 Dabels 2 -0110100 Tennstedt 2 -0110100 Snage 2 -0110100 Sassa 2 -0110100 VanderHoff 2 -0110100 Staph 2 -0110100 Tusa 2 -0110100 Safranek 2 -0110100 Hollihan 2 -0110100 Haerri 2 -0110100 Hustedt 2 -0110100 Yablans 2 -0110100 Contorno 2 -0110100 Deursen 2 -0110100 Uhry 2 -0110100 Mertin 2 -0110100 Gillam 2 -0110100 Highgenboten 2 -0110100 McGrory 2 -0110100 Klimoski 2 -0110100 Strickon 2 -0110100 McWaters 2 -0110100 Guist 2 -0110100 Crumbaugh 2 -0110100 Brasseaux 2 -0110100 Gabe 2 -0110100 Biltis 2 -0110100 Linderoth 2 -0110100 Prestage 2 -0110100 Petrille 2 -0110100 Partrizi 2 -0110100 Misdom 2 -0110100 Dobkowski 2 -0110100 Parkington 2 -0110100 Glasberg 2 -0110100 Oppe 2 -0110100 terre 2 -0110100 Topor 2 -0110100 Boillod 2 -0110100 Tarui 2 -0110100 Frerichs 2 -0110100 Veitia 2 -0110100 Kyranis 2 -0110100 Kanely 2 -0110100 Gionis 2 -0110100 Noreng 2 -0110100 Seebohm 2 -0110100 Remaly 2 -0110100 Dierdorf 2 -0110100 Wesolowski 2 -0110100 Andren 2 -0110100 Remiszewski 2 -0110100 Howze 2 -0110100 Taeschler 2 -0110100 Hargiss 2 -0110100 Pardue 2 -0110100 Pleasants 2 -0110100 Seitzman 2 -0110100 Posert 2 -0110100 Tutterow 2 -0110100 Schwaebe 2 -0110100 Oxboggle 2 -0110100 Masella 2 -0110100 Dubuissan 2 -0110100 Mallorca 2 -0110100 Italico 2 -0110100 Salminen 2 -0110100 McClurg 2 -0110100 Shames 2 -0110100 Montanus 2 -0110100 Jick 2 -0110100 Samnick 2 -0110100 Toussaint 2 -0110100 Rochon 2 -0110100 Rathman 2 -0110100 Schottenheimer 2 -0110100 Arana 2 -0110100 Faich 2 -0110100 Fahy 2 -0110100 Wurgler 2 -0110100 Bovet 2 -0110100 Meily 2 -0110100 Kezios 2 -0110100 Howenstine 2 -0110100 Letona 2 -0110100 Emmonds 2 -0110100 Koedt 2 -0110100 Dinkel 2 -0110100 Skafte 2 -0110100 Nauss 2 -0110100 Tatsui 2 -0110100 Yamaoka 2 -0110100 Mickel 2 -0110100 Mamo 2 -0110100 Dozier 2 -0110100 Weinrich 2 -0110100 Eguchi 2 -0110100 Dyslin 2 -0110100 Trimboli 2 -0110100 Chesler 2 -0110100 Sidey 2 -0110100 Clewlow 2 -0110100 Joannides 2 -0110100 Begner 2 -0110100 Kopcha 2 -0110100 McHatton 2 -0110100 Starzl 2 -0110100 Meerdink 2 -0110100 DeMayo 2 -0110100 Fuhs 2 -0110100 Myhre 2 -0110100 Breskovich 2 -0110100 Machiz 2 -0110100 Lewi 2 -0110100 Mahland 2 -0110100 Birkelund 2 -0110100 Gailliott 2 -0110100 Yaffa 2 -0110100 Brown-Saltzman 2 -0110100 Povod 2 -0110100 Seldes 2 -0110100 Autera 2 -0110100 Flaumenhaft 2 -0110100 Glanville 2 -0110100 Fero 2 -0110100 Czapka 2 -0110100 Hammack 2 -0110100 Rapone 2 -0110100 Skyock 2 -0110100 Flinder 2 -0110100 Asperas 2 -0110100 Sorgen 2 -0110100 Vleminckx 2 -0110100 Coghlan 2 -0110100 Jandura 2 -0110100 Asinof 2 -0110100 Kassab 2 -0110100 Guerci 2 -0110100 Gabrielsson 2 -0110100 Shapp 2 -0110100 Sellar 2 -0110100 Rusin 2 -0110100 Morishita 2 -0110100 Al-Mukhtar 2 -0110100 Antimi 2 -0110100 Goldthwait 2 -0110100 Gejdensen 2 -0110100 Iyengar 2 -0110100 Meaddough 2 -0110100 McErlean 2 -0110100 Norry 2 -0110100 Ichan 2 -0110100 Maccarone 2 -0110100 Hachman 2 -0110100 Koock 2 -0110100 Hirosawa 2 -0110100 Waehner 2 -0110100 Dallob 2 -0110100 Guirard 2 -0110100 Hailey 2 -0110100 Tausig 2 -0110100 Wickwire 2 -0110100 Basson 2 -0110100 Zaleznik 2 -0110100 Toufanian 2 -0110100 Jeanes 2 -0110100 Tortorella 2 -0110100 Caplinger 2 -0110100 Jeck 2 -0110100 Pollicino 2 -0110100 Stainbrook 2 -0110100 Alliger 2 -0110100 Enberg 2 -0110100 Kaish 2 -0110100 Mitroff 2 -0110100 Jenrick 2 -0110100 Branigin 2 -0110100 Negishi 2 -0110100 Battistello 2 -0110100 Kanarak 2 -0110100 Dror 2 -0110100 Mundheim 2 -0110100 Kallis 2 -0110100 Bicher 2 -0110100 Hellerer 2 -0110100 Kucyznski 2 -0110100 Feiter 2 -0110100 Carbonneau 2 -0110100 Finnemore 2 -0110100 Okitsu 2 -0110100 Diktaban 2 -0110100 Sipple 2 -0110100 Lubliner 2 -0110100 Wendler 2 -0110100 Jacobowitz 2 -0110100 Hawpe 2 -0110100 Crumb 2 -0110100 Doerger 2 -0110100 Solowsky 2 -0110100 Czaputowicz 2 -0110100 Medd 2 -0110100 Riseden 2 -0110100 Occelli 2 -0110100 Khanin 2 -0110100 McElhinny 2 -0110100 Bastidas 2 -0110100 Nauheim 2 -0110100 Matus 2 -0110100 Buecking 2 -0110100 Roiret 2 -0110100 Bounpane 2 -0110100 Orzeck 2 -0110100 Stoica 2 -0110100 Uyemoto 2 -0110100 Amaki 2 -0110100 Shilts 2 -0110100 Strachan 2 -0110100 Widdess 2 -0110100 Ryles 2 -0110100 Griebenow 2 -0110100 Rzymkowski 2 -0110100 Churm 2 -0110100 Frump 2 -0110100 Hasfurther 2 -0110100 Cruft 2 -0110100 Dellerson 2 -0110100 Hurvitz 2 -0110100 Lucci 2 -0110100 Dunford 2 -0110100 Duerden 2 -0110100 Tretyak 2 -0110100 LaFree 2 -0110100 Strongo 2 -0110100 Bartosch 2 -0110100 Warrillow 2 -0110100 Lummis 2 -0110100 Naugle 2 -0110100 Mazzei 2 -0110100 Donnerstein 2 -0110100 Sommars 2 -0110100 Nigh 2 -0110100 Goffman 2 -0110100 Tilse 2 -0110100 Kraftsow 2 -0110100 Treichel 2 -0110100 Barad 2 -0110100 Lorincze 2 -0110100 Scaff 2 -0110100 Olliff-Lee 2 -0110100 Karlberg 2 -0110100 Lazaroff 2 -0110100 Koffler 2 -0110100 Snelgrove 2 -0110100 Binger 2 -0110100 Broadrick 2 -0110100 Nichol 2 -0110100 Myatt 2 -0110100 Tabas 2 -0110100 Brigman 2 -0110100 Kauth 2 -0110100 Domolky 2 -0110100 Antioco 2 -0110100 Widland 2 -0110100 Loman 2 -0110100 Mullis 2 -0110100 Nucciarone 2 -0110100 Sievert 2 -0110100 Sagar 2 -0110100 Stigwood 2 -0110100 Lich 2 -0110100 Smahl 2 -0110100 Stumpfe 2 -0110100 Ralfe 2 -0110100 Passer 2 -0110100 Sakuta 2 -0110100 Boucheron 2 -0110100 Alznauer 2 -0110100 Braley 2 -0110100 Craine 2 -0110100 Paumier 2 -0110100 Brinig 2 -0110100 Troseth 2 -0110100 Kapitan 2 -0110100 Gliboff 2 -0110100 Luse 2 -0110100 Mailhes 2 -0110100 Buchmeyer 2 -0110100 Alving 2 -0110100 Honn 2 -0110100 Materazo 2 -0110100 Allinson 2 -0110100 Hulsebus 2 -0110100 Hick 2 -0110100 Perusse 2 -0110100 Gunst 2 -0110100 Abordo 2 -0110100 Driessen 2 -0110100 Cardale 2 -0110100 Swetz 2 -0110100 Walbert 2 -0110100 Karber 2 -0110100 Fischbein 2 -0110100 Nimmons 2 -0110100 Gitzen 2 -0110100 Hookstratten 2 -0110100 Grishin 2 -0110100 Fox-Andrews 2 -0110100 Hunsecker 2 -0110100 So-and-So 2 -0110100 Pasqua 2 -0110100 Tillson 2 -0110100 Flandermeyer 2 -0110100 Beiley 2 -0110100 Huizar 2 -0110100 Grossmann 2 -0110100 Tengberg 2 -0110100 Rorke 2 -0110100 Ilkgarr 2 -0110100 Georgiadis 2 -0110100 Capsalis 2 -0110100 Mustaine 2 -0110100 Stodder 2 -0110100 Wetston 2 -0110100 Wynegar 2 -0110100 Schatzberg 2 -0110100 Genevrier 2 -0110100 Kimmes 2 -0110100 Higbie 2 -0110100 Estren 2 -0110100 Vitkus 2 -0110100 Boccardi 2 -0110100 Luftman 2 -0110100 Champine 2 -0110100 Tillisch 2 -0110100 Masakela 2 -0110100 Theys 2 -0110100 Stahly 2 -0110100 Bonville 2 -0110100 Preblud 2 -0110100 Rosenberger 2 -0110100 Reyman 2 -0110100 Kostuk 2 -0110100 Salberg 2 -0110100 Spofford 2 -0110100 Zakko 2 -0110100 Oubre 2 -0110100 Zapanta 2 -0110100 Allgier 2 -0110100 Schoer 2 -0110100 Lybarger 2 -0110100 Sekiya 2 -0110100 Wimsey 2 -0110100 Zellner 2 -0110100 Sandbulte 2 -0110100 Fischer-Dieskau 2 -0110100 Agin 2 -0110100 Varnado 2 -0110100 Messman 2 -0110100 Siess 2 -0110100 Peyre 2 -0110100 Gildehaus 2 -0110100 Chapla 2 -0110100 Touran 2 -0110100 Schuttpelz 2 -0110100 Lardera 2 -0110100 Picur 2 -0110100 McCarroll 2 -0110100 McNaugher 2 -0110100 Schleh 2 -0110100 Okubo 2 -0110100 Pirez 2 -0110100 Herd 2 -0110100 Nakatsuka 2 -0110100 Mayerhofer 2 -0110100 Lackman 2 -0110100 Sellick 2 -0110100 Winsor 2 -0110100 Bouhet 2 -0110100 Irizarry 2 -0110100 Tayelor 2 -0110100 Crusto 2 -0110100 Sleavin 2 -0110100 Darnley 2 -0110100 Mattera 2 -0110100 Bedinger 2 -0110100 Hench 2 -0110100 Salvo 2 -0110100 Toles 2 -0110100 Berkovitch 2 -0110100 Mansbridge 2 -0110100 Nierenberg 2 -0110100 Sheath 2 -0110100 Dugard 2 -0110100 Lembo 2 -0110100 Ochse 2 -0110100 Teachout 2 -0110100 Aprati 2 -0110100 Cerveris 2 -0110100 McAvaddy 2 -0110100 Benway 2 -0110100 Snoddon 2 -0110100 Kokayi 2 -0110100 Krzeminski 2 -0110100 Shahabian 2 -0110100 Coffaro 2 -0110100 Aguirre-Sacasa 2 -0110100 Katzovitz 2 -0110100 Hiltrop 2 -0110100 Bouluare 2 -0110100 Agostinelli 2 -0110100 Trento 2 -0110100 Shrapnel 2 -0110100 Aumiller 2 -0110100 Berzofsky 2 -0110100 Radosky 2 -0110100 Domingorena 2 -0110100 Kukowski 2 -0110100 acuminata 2 -0110100 Zetko 2 -0110100 Zukofsky 2 -0110100 Vician 2 -0110100 Patrone 2 -0110100 Dils 2 -0110100 Kemerling 2 -0110100 Riso 2 -0110100 Quinley 2 -0110100 Schwamenfeld 2 -0110100 Casdin 2 -0110100 Plunkert 2 -0110100 Kepke 2 -0110100 Skinkis 2 -0110100 Zaworski-Burke 2 -0110100 Cabarrus 2 -0110100 Shimo 2 -0110100 Muwakkil 2 -0110100 Glossman 2 -0110100 Mueller-Krummholz 2 -0110100 Crepin-Leblond 2 -0110100 Dosch 2 -0110100 Ilves-Corressel 2 -0110100 Sokomanu 2 -0110100 Schochet 2 -0110100 Isserlis 2 -0110100 Blankenhorn 2 -0110100 Brucan 2 -0110100 Wiers 2 -0110100 Senft 2 -0110100 Exner 2 -0110100 Hambrick 2 -0110100 Katsumata 2 -0110100 Kollegger 2 -0110100 Grolemund 2 -0110100 Kalsakau 2 -0110100 Hadler 2 -0110100 Sizzlington 2 -0110100 Wares 2 -0110100 Nitzsche 2 -0110100 Braud 2 -0110100 Lukonin 2 -0110100 DiMaio 2 -0110100 Leimkuhler 2 -0110100 Sadker 2 -0110100 Rotundo 2 -0110100 Jablow 2 -0110100 Brecher 2 -0110100 Goodenough 2 -0110100 Jezierski 2 -0110100 Rostler 2 -0110100 Delinsky 2 -0110100 Fraknoi 2 -0110100 Miarka 2 -0110100 Ianna 2 -0110100 Balousek 2 -0110100 Pharand 2 -0110100 Wartels 2 -0110100 Guite 2 -0110100 Polking 2 -0110100 Shidara 2 -0110100 Byroade 2 -0110100 Cena 2 -0110100 Penson 2 -0110100 Pausig 2 -0110100 Graziosi 2 -0110100 Rovich 2 -0110100 Schleuter 2 -0110100 Duva 2 -0110100 Arcila 2 -0110100 Roenn 2 -0110100 Seaforth 2 -0110100 Shader 2 -0110100 Kunko 2 -0110100 Ahrensfeld 2 -0110100 Lejeune 2 -0110100 Carcassonne 2 -0110100 Eisele 2 -0110100 Eibel 2 -0110100 Bityk 2 -0110100 Egi 2 -0110100 Holtermann 2 -0110100 Golomb 2 -0110100 Chittick 2 -0110100 Cipolla 2 -0110100 Schuldt 2 -0110100 Ignon 2 -0110100 Warth 2 -0110100 Barrell 2 -0110100 Arcangel 2 -0110100 Tansey 2 -0110100 Shestack 2 -0110100 Smyntek 2 -0110100 Ebbs 2 -0110100 Yemma 2 -0110100 Boruff 2 -0110100 Pakzad 2 -0110100 Chrustowski 2 -0110100 Tuchin 2 -0110100 Hollimon 2 -0110100 Puisais 2 -0110100 Liechtung 2 -0110100 Fukagawa 2 -0110100 DeMers 2 -0110100 Auble 2 -0110100 Polidor 2 -0110100 Ersek 2 -0110100 Brew 2 -0110100 Moorhouse 2 -0110100 Kolaghassi 2 -0110100 Hux 2 -0110100 Bonnes 2 -0110100 Lemonedes 2 -0110100 Shontz 2 -0110100 Sernyk 2 -0110100 Trueax 2 -0110100 Shelembe 2 -0110100 Morrione 2 -0110100 Drabik 2 -0110100 Taulbee 2 -0110100 Barrowman 2 -0110100 Scovil 2 -0110100 Busbee 2 -0110100 Duus 2 -0110100 Schieneman 2 -0110100 Goerg 2 -0110100 Beindorff 2 -0110100 Olamba 2 -0110100 McMackin 2 -0110100 Angolares 2 -0110100 Castaner 2 -0110100 Grazier 2 -0110100 Astrachan 2 -0110100 Sonke 2 -0110100 Templin 2 -0110100 Poster 2 -0110100 Marsilius 2 -0110100 Zizka 2 -0110100 Stoph 2 -0110100 Sinowatz 2 -0110100 Alperstein 2 -0110100 Ichinose 2 -0110100 Ebding 2 -0110100 Bermick 2 -0110100 Svensson 2 -0110100 Sorsa 2 -0110100 Fichthorn 2 -0110100 McClaugherty 2 -0110100 Lubran 2 -0110100 Kikel 2 -0110100 Thavisin 2 -0110100 Geltman 2 -0110100 Swannell 2 -0110100 Voulgaris 2 -0110100 Bobrow 2 -0110100 Bitterman 2 -0110100 Skillington 2 -0110100 Elster 2 -0110100 Urkowitz 2 -0110100 Shellington 2 -0110100 Novello 2 -0110100 Vroon 2 -0110100 Kubler-Ross 2 -0110100 Cialdini 2 -0110100 Asper 2 -0110100 Carmona 2 -0110100 Schade 2 -0110100 Kilson 2 -0110100 Wasson 2 -0110100 Mukhamedov 2 -0110100 Fonteyn 2 -0110100 Foyt 2 -0110100 Gervasoni 2 -0110100 Moldea 2 -0110100 Henneman 2 -0110100 Gasparini 2 -0110100 Savarese 2 -0110100 Seslowe 2 -0110100 Slonimsky 2 -0110100 Barraman 2 -0110100 Natour 2 -0110100 Kirkendall 2 -0110100 Newmyer 2 -0110100 Lauguer 2 -0110100 Desch 2 -0110100 Girolamo 2 -0110100 Ganske 2 -0110100 Testan 2 -0110100 Nederhoff 2 -0110100 Vorbrich 2 -0110100 Gibowski 2 -0110100 Acconci 2 -0110100 Vietmeier 2 -0110100 Rundle 2 -0110100 Picciarelli 2 -0110100 Staerker 2 -0110100 Kersner 2 -0110100 Parise 2 -0110100 Simonian 2 -0110100 Finarelli 2 -0110100 Grant-Acqua 2 -0110100 Barganier 2 -0110100 Kastell 2 -0110100 Ytterberg 2 -0110100 Vivado 2 -0110100 Prior-Willeard 2 -0110100 Domhoff 2 -0110100 Corvi 2 -0110100 Keckley 2 -0110100 Riske 2 -0110100 Vosges 2 -0110100 Roby 2 -0110100 Maass 2 -0110100 Kaga 2 -0110100 Figgis 2 -0110100 Velikhov 2 -0110100 Boissier 2 -0110100 Crocco 2 -0110100 Lippert 2 -0110100 Boundas 2 -0110100 Horsch 2 -0110100 DeVaul 2 -0110100 Waxenberg 2 -0110100 Zemsky 2 -0110100 Krukowski 2 -0110100 Clinger 2 -0110100 Beltrao 2 -0110100 Kuehl 2 -0110100 Siedlecki 2 -0110100 Isozaki 2 -0110100 Paganini-Hill 2 -0110100 Boulouque 2 -0110100 Saguisag 2 -0110100 Hexamer 2 -0110100 Wisecarver 2 -0110100 Volans 2 -0110100 Courtnage 2 -0110100 LeVan 2 -0110100 Rusita 2 -0110100 Fryman 2 -0110100 Konzen 2 -0110100 Tester 2 -0110100 Barsby 2 -0110100 Stans 2 -0110100 Ashbrook 2 -0110100 Bergendahl 2 -0110100 Gilldahl 2 -0110100 Fiser 2 -0110100 Gencer 2 -0110100 Interfinans 2 -0110100 Criner 2 -0110100 Hanawa 2 -0110100 Wallance 2 -0110100 Chartier 2 -0110100 Bassano 2 -0110100 Goold 2 -0110100 Sacasa 2 -0110100 Arguero 2 -0110100 Schabacker 2 -0110100 Princi 2 -0110100 Thomason 2 -0110100 Twerdahl 2 -0110100 Saxonhouse 2 -0110100 Makram-Ebeid 2 -0110100 Hinkin 2 -0110100 Colket 2 -0110100 Sachar 2 -0110100 Rollinson 2 -0110100 Maugh 2 -0110100 Passos 2 -0110100 Demmings 2 -0110100 Kozack 2 -0110100 Fugalli 2 -0110100 Steil 2 -0110100 Brutents 2 -0110100 Blundell 2 -0110100 Richwine 2 -0110100 Polychron 2 -0110100 Wenzel 2 -0110100 Drache 2 -0110100 Togano 2 -0110100 Wujcik 2 -0110100 Gies 2 -0110100 Krasnansky 2 -0110100 Bebchick 2 -0110100 Boud 2 -0110100 Tindale 2 -0110100 Tobler 2 -0110100 Biss 2 -0110100 Dille 2 -0110100 Prouty 2 -0110100 Pineau-Valencienne 2 -0110100 Jaramillo 2 -0110100 Pfeil 2 -0110100 Szekacs 2 -0110100 Heinebaeck 2 -0110100 Vanchau 2 -0110100 Rachal 2 -0110100 Gayner 2 -0110100 Duerig 2 -0110100 Galiber 2 -0110100 Neukom 2 -0110100 Dougan 2 -0110100 Dolak 2 -0110100 Johanos 2 -0110100 Millican 2 -0110100 Strasser 2 -0110100 Melot 2 -0110100 Graffenreid 2 -0110100 Iwamatsu 2 -0110100 Obst 2 -0110100 Luchessi 2 -0110100 Zilli 2 -0110100 Glabbert 2 -0110100 Bartsch 2 -0110100 Yazdi 2 -0110100 Siskin 2 -0110100 Rubinger 2 -0110100 Veneman 2 -0110100 Frugoli 2 -0110100 Weida 2 -0110100 Obasanjo 2 -0110100 Nkobi 2 -0110100 Jeronina 2 -0110100 Perillo 2 -0110100 Gutkowski 2 -0110100 Krakauer 2 -0110100 Halladay 2 -0110100 Falsey 2 -0110100 Shlesinger 2 -0110100 Rovinski 2 -0110100 Boisot 2 -0110100 Hanushek 2 -0110100 Rashad 2 -0110100 Kircher 2 -0110100 Hardt 2 -0110100 Chandi 2 -0110100 Glasel 2 -0110100 Karsan 2 -0110100 Csere 2 -0110100 Vellano 2 -0110100 Mallement 2 -0110100 Bily 2 -0110100 Dworak 2 -0110100 Bernardi 2 -0110100 Danello 2 -0110100 Torri 2 -0110100 Kastner 2 -0110100 Henkin 2 -0110100 Bazile 2 -0110100 Lamonte 2 -0110100 Vinsik 2 -0110100 Zurkhulen 2 -0110100 Simonet 2 -0110100 Kneebone 2 -0110100 Altobello 2 -0110100 Kochergin 2 -0110100 Lindenmayer 2 -0110100 Sweetbaum 2 -0110100 Hargett 2 -0110100 Giorgieri 2 -0110100 Jantz 2 -0110100 Willer 2 -0110100 Sotern 2 -0110100 Wolfberg 2 -0110100 Harville 2 -0110100 Lyttle 2 -0110100 Miyawaki 2 -0110100 Tikonova 2 -0110100 Soderstrom 2 -0110100 Tanton 2 -0110100 Taupe 2 -0110100 Goggins 2 -0110100 Grob 2 -0110100 Vela 2 -0110100 Santos-Avite 2 -0110100 Kavas 2 -0110100 Jozwiak 2 -0110100 Barcikowski 2 -0110100 Collyns 2 -0110100 Viviano 2 -0110100 Dilger 2 -0110100 Duensing 2 -0110100 Heaston 2 -0110100 Elers 2 -0110100 Bestard 2 -0110100 Belien 2 -0110100 Frazin 2 -0110100 Drozda 2 -0110100 Ellenberger 2 -0110100 Musatti 2 -0110100 Kuszer 2 -0110100 Joon 2 -0110100 Leuchtenberg 2 -0110100 Erbstoesser 2 -0110100 Fayer 2 -0110100 Cinelli 2 -0110100 Tregde 2 -0110100 Welday 2 -0110100 Blokker 2 -0110100 Dobay 2 -0110100 Fournet 2 -0110100 Myners 2 -0110100 Yoken 2 -0110100 Beinhocker 2 -0110100 Connacher 2 -0110100 Nakarada 2 -0110100 Despotovic 2 -0110100 Petrovic 2 -0110100 Zizza 2 -0110100 Deen 2 -0110100 Christe 2 -0110100 Mizukami 2 -0110100 Stuzin 2 -0110100 Mett 2 -0110100 Tinoco 2 -0110100 Cunhal 2 -0110100 Haymann 2 -0110100 Horyn 2 -0110100 Dimou 2 -0110100 Nuzzo 2 -0110100 Wannamaker 2 -0110100 Edlow 2 -0110100 Kamagi 2 -0110100 Weisbord 2 -0110100 Weseley 2 -0110100 Grohs 2 -0110100 Foyil 2 -0110100 Cording 2 -0110100 Tippeconnic 2 -0110100 Linhart 2 -0110100 Puthuff 2 -0110100 Bornhorst 2 -0110100 Setzer 2 -0110100 Cibulskis 2 -0110100 Oxburgh 2 -0110100 Belgrano 2 -0110100 Lirarakis 2 -0110100 Hamlisch 2 -0110100 Mollner 2 -0110100 Kuzel 2 -0110100 Nayyar 2 -0110100 Petersilia 2 -0110100 Borowik 2 -0110100 Mathiopoulos 2 -0110100 Goodelman 2 -0110100 Koza 2 -0110100 Jannel 2 -0110100 Fornell 2 -0110100 Moyles 2 -0110100 McClaran 2 -0110100 Buchin 2 -0110100 Bryceland 2 -0110100 Emerine 2 -0110100 Hopfield 2 -0110100 Jopling 3 -0110100 Tolliver 3 -0110100 Shiftan 3 -0110100 Lough 3 -0110100 Roettger 3 -0110100 Kriak 3 -0110100 Glueck 3 -0110100 Seike 3 -0110100 Diemen 3 -0110100 Wilken 3 -0110100 Dissinger 3 -0110100 Fordiani 3 -0110100 Brunk 3 -0110100 Arakawa 3 -0110100 Beahrs 3 -0110100 Amako 3 -0110100 Peisl 3 -0110100 Scofidio 3 -0110100 Heinzel 3 -0110100 Niekro 3 -0110100 Ozaki 3 -0110100 Athanassiades 3 -0110100 Spilka 3 -0110100 Spady 3 -0110100 Shaub 3 -0110100 Szarka 3 -0110100 Chason 3 -0110100 Ossad 3 -0110100 Murrill 3 -0110100 DeGeurin 3 -0110100 Saint-Aignan 3 -0110100 Phiri 3 -0110100 Bucay 3 -0110100 Arslanian 3 -0110100 Sneider 3 -0110100 Gaydick 3 -0110100 Pharriss 3 -0110100 Galtney 3 -0110100 Maniago 3 -0110100 Burick 3 -0110100 Schoenfeld 3 -0110100 Salerno-Sonnenberg 3 -0110100 Bevilacqua 3 -0110100 Brancato 3 -0110100 Gaasbecks 3 -0110100 Amabile 3 -0110100 Nesbeda 3 -0110100 Gide 3 -0110100 Dods 3 -0110100 Reidelbach 3 -0110100 Gompers 3 -0110100 Nagayama 3 -0110100 Oldfield 3 -0110100 Bourdain 3 -0110100 Szpiner 3 -0110100 Zitron 3 -0110100 McJimsey 3 -0110100 Tcherkassky 3 -0110100 Biedenkopf 3 -0110100 Baranov 3 -0110100 Stiritz 3 -0110100 Ellrott 3 -0110100 McGiven 3 -0110100 Debus 3 -0110100 Rickard 3 -0110100 Maginnis 3 -0110100 Weathers 3 -0110100 Meskill 3 -0110100 Francese 3 -0110100 Seales 3 -0110100 Trenkler 3 -0110100 Temirkanov 3 -0110100 Molesky 3 -0110100 Cornet 3 -0110100 Crites 3 -0110100 Bijak 3 -0110100 Polozov 3 -0110100 Flitner 3 -0110100 Marram 3 -0110100 Schniedwind 3 -0110100 Sicilia 3 -0110100 Khameini 3 -0110100 Nogues 3 -0110100 Zaino 3 -0110100 Mater 3 -0110100 Wickline 3 -0110100 Abakanowicz 3 -0110100 Czerny 3 -0110100 Ragals 3 -0110100 Whitcomb 3 -0110100 Birkett 3 -0110100 Saint-Geours 3 -0110100 Finegold 3 -0110100 Selfridge 3 -0110100 Visscher 3 -0110100 Saenger 3 -0110100 Skillin 3 -0110100 Boger 3 -0110100 McCrae 3 -0110100 Geduldig 3 -0110100 Lozyniak 3 -0110100 Rusche 3 -0110100 Trippi 3 -0110100 Coltrane 3 -0110100 Adami 3 -0110100 Nucci 3 -0110100 Pelullo 3 -0110100 Cornudella 3 -0110100 Kooken 3 -0110100 Krasney 3 -0110100 Roloff 3 -0110100 Caliendo 3 -0110100 Eszterhas 3 -0110100 Popovich 3 -0110100 Asbridge 3 -0110100 Khlopin 3 -0110100 Schlenker 3 -0110100 DeRita 3 -0110100 Philipson 3 -0110100 Orozco 3 -0110100 Cheramy 3 -0110100 Metzfield 3 -0110100 Gingold 3 -0110100 Ruehe 3 -0110100 Burwell 3 -0110100 Grechko 3 -0110100 Perenchio 3 -0110100 Washton 3 -0110100 Alligood 3 -0110100 Compa 3 -0110100 Kezis 3 -0110100 Oberstar 3 -0110100 Curler 3 -0110100 Soltwedel 3 -0110100 Gropper 3 -0110100 Kostic 3 -0110100 Borba 3 -0110100 Freiburghouse 3 -0110100 Vallejos 3 -0110100 Schifter 3 -0110100 Seledron 3 -0110100 Himmler 3 -0110100 Caligari 3 -0110100 Finerman 3 -0110100 Hornstein 3 -0110100 Kirshner 3 -0110100 Aikawa 3 -0110100 Nachamie 3 -0110100 Khivrich 3 -0110100 Tutunik 3 -0110100 Carpino 3 -0110100 Bautier 3 -0110100 Trojanowicz 3 -0110100 Hentschel 3 -0110100 Levergood 3 -0110100 Aldikacti 3 -0110100 Herskovitz 3 -0110100 Basmajan 3 -0110100 Sova 3 -0110100 Wickett 3 -0110100 Aswell 3 -0110100 Nazem 3 -0110100 Hassell 3 -0110100 Taschereau 3 -0110100 McGrail 3 -0110100 Stemmer 3 -0110100 Takessian 3 -0110100 Worrick 3 -0110100 Sprinzen 3 -0110100 Schaar 3 -0110100 Shvets 3 -0110100 Beerworth 3 -0110100 Stolley 3 -0110100 Ruiz-Mateos 3 -0110100 Ganilau 3 -0110100 Halikas 3 -0110100 DeBoer 3 -0110100 Eskenazi 3 -0110100 Politis 3 -0110100 Brittenden 3 -0110100 McInroy 3 -0110100 Matsumoto 3 -0110100 Beathard 3 -0110100 Kasiva 3 -0110100 Melillo 3 -0110100 Klim 3 -0110100 Clementi 3 -0110100 Scalise 3 -0110100 Ryavec 3 -0110100 Grand-Clement 3 -0110100 Eley 3 -0110100 Gelbard 3 -0110100 Boyers 3 -0110100 Kalajian 3 -0110100 Jeffreys 3 -0110100 Kalmus 3 -0110100 Mabbs 3 -0110100 Hora 3 -0110100 Thoron 3 -0110100 Fondy 3 -0110100 Beith 3 -0110100 Newby 3 -0110100 Rabkin 3 -0110100 Baptista 3 -0110100 Tarkenton 3 -0110100 Cobby 3 -0110100 Andrulis 3 -0110100 Rieutort 3 -0110100 Opotowsky 3 -0110100 Natalizia 3 -0110100 Gampel 3 -0110100 Batlogg 3 -0110100 Katzmann 3 -0110100 Manna 3 -0110100 Greenblott 3 -0110100 Basta 3 -0110100 Cadigan 3 -0110100 Senter 3 -0110100 Hudiburg 3 -0110100 Pennachio 3 -0110100 Baumler 3 -0110100 Milman 3 -0110100 Crink 3 -0110100 Hoewing 3 -0110100 Ravenel 3 -0110100 Ravkind 3 -0110100 Moxie 3 -0110100 Cahlander 3 -0110100 Hoadley 3 -0110100 Niglio 3 -0110100 Liebhaber 3 -0110100 Spaven 3 -0110100 Schonauer 3 -0110100 Ohashi 3 -0110100 Omnivore 3 -0110100 Hieber 3 -0110100 Fuselier 3 -0110100 Reak 3 -0110100 Robuchon 3 -0110100 Imasdounian 3 -0110100 Ramseyer 3 -0110100 Bidard 3 -0110100 Dehihns 3 -0110100 Mokae 3 -0110100 Hayford 3 -0110100 Shephard 3 -0110100 Takabatake 3 -0110100 Navin 3 -0110100 Boyajain 3 -0110100 Rubinov 3 -0110100 Deneuve 3 -0110100 Techine 3 -0110100 Cavalli 3 -0110100 Garrott 3 -0110100 Poddar 3 -0110100 McQuillen 3 -0110100 Sweatman 3 -0110100 Banus 3 -0110100 Strother 3 -0110100 Kuritzky 3 -0110100 Paolini 3 -0110100 Grudberg 3 -0110100 Wolk 3 -0110100 Tuohey 3 -0110100 Fornaro 3 -0110100 Klinges 3 -0110100 Prideaux 3 -0110100 Leuchtenburg 3 -0110100 Deems 3 -0110100 Danychuk 3 -0110100 Mitsuyama 3 -0110100 Hudgens 3 -0110100 Schiffrin 3 -0110100 Korell 3 -0110100 Iemura 3 -0110100 Melsheimer 3 -0110100 Raben 3 -0110100 Sondock 3 -0110100 LaBarre 3 -0110100 Eberhardt 3 -0110100 Soyer 3 -0110100 Alverson 3 -0110100 Heimbold 3 -0110100 Krivin 3 -0110100 Weithorn 3 -0110100 Antoci 3 -0110100 Flaum 3 -0110100 Vinogradov 3 -0110100 Kronfle 3 -0110100 Bardis 3 -0110100 Chinni 3 -0110100 Beham 3 -0110100 Garay 3 -0110100 Sadd 3 -0110100 Ellentuck 3 -0110100 Pande 3 -0110100 Biggart 3 -0110100 deVismes 3 -0110100 Goubert 3 -0110100 Deibel 3 -0110100 LeResche 3 -0110100 Jamiesson 3 -0110100 Niklas 3 -0110100 Thorsen 3 -0110100 Faucher 3 -0110100 Rittenberg 3 -0110100 Francoeur 3 -0110100 Cantarella 3 -0110100 Wilcher 3 -0110100 Schuck 3 -0110100 Yanyong 3 -0110100 Mostow 3 -0110100 Coulon 3 -0110100 Sugimoto 3 -0110100 Dezafra 3 -0110100 Knepp 3 -0110100 Parasaran 3 -0110100 Casesa 3 -0110100 Graetz 3 -0110100 Genego 3 -0110100 Stanwyck 3 -0110100 DeMelle 3 -0110100 Zecha 3 -0110100 Perovic 3 -0110100 Stambuk 3 -0110100 Seks 3 -0110100 Destouet 3 -0110100 Pinyan 3 -0110100 Salas 3 -0110100 Eilers 3 -0110100 Sonnenfeldt 3 -0110100 Outten 3 -0110100 Cucci 3 -0110100 Bouckhout 3 -0110100 Tycz 3 -0110100 Brezovec 3 -0110100 Terbot 3 -0110100 Stockmeyer 3 -0110100 Pitcoff 3 -0110100 Araki 3 -0110100 Delatour 3 -0110100 Mechling 3 -0110100 Hollenhorst 3 -0110100 McKiever 3 -0110100 Aylward 3 -0110100 Thiret 3 -0110100 Kantz 3 -0110100 Arterburn 3 -0110100 Farrara 3 -0110100 Briskman 3 -0110100 Touratsos 3 -0110100 Perryman 3 -0110100 Rowse 3 -0110100 Brenteson 3 -0110100 Sevigny 3 -0110100 Howser 3 -0110100 Soyinka 3 -0110100 Skenazy 3 -0110100 Patagones 3 -0110100 Lannert 3 -0110100 Poza 3 -0110100 Florkiewicz 3 -0110100 Groskopf 3 -0110100 Vlok 3 -0110100 Venit 3 -0110100 Sandalls 3 -0110100 Parichy 3 -0110100 Harch 3 -0110100 Juhan 3 -0110100 Gansler 3 -0110100 Michnik 3 -0110100 Sherfey 3 -0110100 Hamermesh 3 -0110100 Bannerman 3 -0110100 Lansbury 3 -0110100 Birks 3 -0110100 Ormsten 3 -0110100 Schimberg 3 -0110100 Zeigler 3 -0110100 Severs 3 -0110100 Georgine 3 -0110100 Chaitman 3 -0110100 Havender 3 -0110100 Hochman 3 -0110100 Shlapentokh 3 -0110100 Forcelledo 3 -0110100 Raft 3 -0110100 Gibbins 3 -0110100 Droghoul 3 -0110100 Chatterjee 3 -0110100 Joanen 3 -0110100 Reimer 3 -0110100 Takezawa 3 -0110100 Blinick 3 -0110100 Sharpenberg 3 -0110100 Melone 3 -0110100 Governali 3 -0110100 Myskowski 3 -0110100 Schackman 3 -0110100 Bradetich 3 -0110100 Stanbury 3 -0110100 Gaudreau 3 -0110100 Paszynski 3 -0110100 Blicher 3 -0110100 Desgraupes 3 -0110100 Nidenberg 3 -0110100 Klaaste 3 -0110100 Raclin 3 -0110100 Lutolf 3 -0110100 Korner 3 -0110100 Learnard 3 -0110100 Marchenko 3 -0110100 Sneed 3 -0110100 Hoeppner 3 -0110100 Cirigliano 3 -0110100 Schad 3 -0110100 Busselle 3 -0110100 Taeuber 3 -0110100 Shinton 3 -0110100 Kempf 3 -0110100 Tsuei 3 -0110100 Reynard 3 -0110100 Vankin 3 -0110100 Zenner 3 -0110100 Zaghmory 3 -0110100 McGaffey 3 -0110100 Fermor 3 -0110100 Gottsegen 3 -0110100 Evart 3 -0110100 Kneipper 3 -0110100 Hellerstein 3 -0110100 Keehn 3 -0110100 DiTillio 3 -0110100 Panyko 3 -0110100 Martre 3 -0110100 Caan 3 -0110100 Lynde 3 -0110100 Irby 3 -0110100 Jaquez 3 -0110100 Saklad 3 -0110100 Thiesen 3 -0110100 Blalock 3 -0110100 Bournival 3 -0110100 Takamine 3 -0110100 Wunder 3 -0110100 Besson 3 -0110100 Birns 3 -0110100 Corrick 3 -0110100 Naclerio 3 -0110100 Feltman 3 -0110100 Tarasov 3 -0110100 LeGrand 3 -0110100 Eiger 3 -0110100 McLaren 3 -0110100 Holste 3 -0110100 Goetzen 3 -0110100 Illenseer 3 -0110100 Ruditzky 3 -0110100 Buchanan-Smith 3 -0110100 Foonberg 3 -0110100 Sippel 3 -0110100 Bratt 3 -0110100 Apodaca 3 -0110100 Haydu 3 -0110100 Sidel 3 -0110100 Effman 3 -0110100 Roeg 3 -0110100 Condy 3 -0110100 Dentz 3 -0110100 Dern 3 -0110100 McKern 3 -0110100 Eldredge 3 -0110100 Liedl 3 -0110100 Sader 3 -0110100 Leighty 3 -0110100 Spektor 3 -0110100 Ptashne 3 -0110100 Hillens 3 -0110100 Bunz 3 -0110100 Benfield 3 -0110100 Botkin 3 -0110100 Zelicoff 3 -0110100 Schwietert 3 -0110100 Widdis 3 -0110100 Margolin 3 -0110100 Devereaux 3 -0110100 Wenberg 3 -0110100 Fittro 3 -0110100 Knosp 3 -0110100 Doja 3 -0110100 Melich 3 -0110100 Dietrick 3 -0110100 Pretl 3 -0110100 Minchau 3 -0110100 Arnolds 3 -0110100 Felty 3 -0110100 Spoonemore 3 -0110100 Rudig 3 -0110100 Ditkoff 3 -0110100 Hunter-Stiebel 3 -0110100 Arraes 3 -0110100 Teipel 3 -0110100 Felsen 3 -0110100 Panday 3 -0110100 Kapel 3 -0110100 Atala 3 -0110100 Calverley 3 -0110100 Fausch 3 -0110100 Lefkowitz 3 -0110100 Fey 3 -0110100 Muszynski 3 -0110100 Briley 3 -0110100 Virts 3 -0110100 Finizio 3 -0110100 Marione 3 -0110100 Ruprecht 3 -0110100 Gracey 3 -0110100 Gillespi 3 -0110100 Zemene 3 -0110100 Daiboch 3 -0110100 Ausfahl 3 -0110100 Montopoli 3 -0110100 DeAlessandro 3 -0110100 Sanderlin 3 -0110100 Ehart 3 -0110100 Mignone 3 -0110100 Kreski 3 -0110100 Gudmundson 3 -0110100 Windridge 3 -0110100 Kehrl 3 -0110100 Carrigg 3 -0110100 Loafer 3 -0110100 Ferenbach 3 -0110100 Fogle 3 -0110100 Ammerman 3 -0110100 Imes 3 -0110100 Crecine 3 -0110100 Haasbeek 3 -0110100 Wardhana 3 -0110100 Swinton 3 -0110100 Smirlock 3 -0110100 Ikeuchi 3 -0110100 Blueger 3 -0110100 Lill 3 -0110100 Afanasyeva 3 -0110100 Kull 3 -0110100 Foucault 3 -0110100 Petrovsky 3 -0110100 Diddley 3 -0110100 Ruskowski 3 -0110100 Pastrana 3 -0110100 Keklak 3 -0110100 Krupa 3 -0110100 Bogdanova 3 -0110100 Redden 3 -0110100 Rouche 3 -0110100 Browne-Wilkinson 3 -0110100 Chinnici 3 -0110100 Witcover 3 -0110100 Schollander 3 -0110100 Visentini 3 -0110100 Bonk 3 -0110100 McNelley 3 -0110100 Schadegg 3 -0110100 Schwemer 3 -0110100 Bronec 3 -0110100 Cherif 3 -0110100 Piliero 3 -0110100 Casserly 3 -0110100 Vroom 3 -0110100 Panuthos 3 -0110100 Schlefer 3 -0110100 Melican 3 -0110100 Tippe 3 -0110100 Dumar 3 -0110100 Makawa 3 -0110100 Nazimeye 3 -0110100 Tonelson 3 -0110100 Kasich 3 -0110100 Kristie 3 -0110100 Ard 3 -0110100 Oldman 3 -0110100 Rafii 3 -0110100 Brickley 3 -0110100 Bakhtiari 3 -0110100 Manderbach 3 -0110100 Lauter 3 -0110100 Mantilla 3 -0110100 Adjani 3 -0110100 Schulberg 3 -0110100 Sclater 3 -0110100 Burner 3 -0110100 Boehlje 3 -0110100 Colalucci 3 -0110100 Dulaney 3 -0110100 Ramus 3 -0110100 Gaffey 3 -0110100 Greenstreet 3 -0110100 Benwitt 3 -0110100 Vaid 3 -0110100 Rathbone 3 -0110100 Riepenhausen 3 -0110100 Bermel 3 -0110100 Buschmann 3 -0110100 Paolucci 3 -0110100 Ruegger 3 -0110100 Heiman 3 -0110100 Mazanec 3 -0110100 Murguia 3 -0110100 Toffolon 3 -0110100 Hornbeck 3 -0110100 Kilbourne 3 -0110100 Hobor 3 -0110100 Zaffarano 3 -0110100 Cawley 3 -0110100 Ogren 3 -0110100 Kadans 3 -0110100 Bartholow 3 -0110100 Keppler 3 -0110100 Jenike 3 -0110100 Shieh 3 -0110100 Neibart 3 -0110100 Mettam 3 -0110100 Luders 3 -0110100 Strassner 3 -0110100 Delbridge 3 -0110100 Porrazzo 3 -0110100 Bratowski 3 -0110100 Lorini 3 -0110100 Rowlands 3 -0110100 Atchity 3 -0110100 Bazin 3 -0110100 Raynor 3 -0110100 Grannell 3 -0110100 Fortgang 3 -0110100 Dalby 3 -0110100 Glibbery 3 -0110100 Swetland 3 -0110100 Gerlach 3 -0110100 Sisisky 3 -0110100 Needleman 3 -0110100 Murialdo 3 -0110100 Rabwin 3 -0110100 Lowin 3 -0110100 Haraoka 3 -0110100 Kilmer 3 -0110100 Bicat 3 -0110100 Toma 3 -0110100 Joll 3 -0110100 Tillotson 3 -0110100 Gochberg 3 -0110100 Hoover-Dempsey 3 -0110100 Mullikin 3 -0110100 Fineberg 3 -0110100 Smolensky 3 -0110100 Goodale 3 -0110100 Terzi 3 -0110100 Bonar 3 -0110100 Hoeveler 3 -0110100 Parrino 3 -0110100 Delmonico 3 -0110100 Dutilleux 3 -0110100 Boeheim 3 -0110100 Hechtman 3 -0110100 Billet 3 -0110100 Kudelka 3 -0110100 Zradicka 3 -0110100 Nolde 3 -0110100 McGinniss 3 -0110100 Hemming 3 -0110100 Trepp 3 -0110100 Everhart 3 -0110100 Spokley 3 -0110100 Spano 3 -0110100 Jaronko 3 -0110100 Phalle 3 -0110100 Fanslow 3 -0110100 Andis 3 -0110100 Wimberly 3 -0110100 Pietraszek 3 -0110100 Bott 3 -0110100 Atkisson 3 -0110100 Tubman 3 -0110100 Befurt 3 -0110100 Hilyard 3 -0110100 Oteri 3 -0110100 Wiedebush 3 -0110100 Cakmis 3 -0110100 Erbakan 3 -0110100 Galvez 3 -0110100 Jacquemin 3 -0110100 Lauria 3 -0110100 Crean 3 -0110100 Iberoamerica 3 -0110100 Chilombo 3 -0110100 Folkerth 3 -0110100 Cusimano 3 -0110100 Semingson 3 -0110100 Galun 3 -0110100 Valenta 3 -0110100 Klette 3 -0110100 Skvorecky 3 -0110100 Gavens 3 -0110100 Elsner 3 -0110100 Tannatta 3 -0110100 Dongarra 3 -0110100 Theurkauf 3 -0110100 Lubbe 3 -0110100 Mysak 3 -0110100 Kubek 3 -0110100 Tuey 3 -0110100 Marchais 3 -0110100 Gribin 3 -0110100 Sendler 3 -0110100 Genetski 3 -0110100 Scarr 3 -0110100 Walder 3 -0110100 Filderman 3 -0110100 Winegardner 3 -0110100 Klurfeld 3 -0110100 Hisada 3 -0110100 Winawer 3 -0110100 Tagg 3 -0110100 Anastasi 3 -0110100 DeBeauvoir 3 -0110100 McMullan 3 -0110100 Liebenow 3 -0110100 Sakaguchi 3 -0110100 Prielipp 3 -0110100 Kaliniak 3 -0110100 Lents 3 -0110100 Rieker 3 -0110100 Yeres 3 -0110100 Jani 3 -0110100 Zwyer 3 -0110100 McGinnity 3 -0110100 Orthwein 3 -0110100 Walbancke 3 -0110100 Poupart-Lafarge 3 -0110100 MacAdams 3 -0110100 Elvekrog 3 -0110100 Tikkanen 3 -0110100 Pankin 3 -0110100 Wyngarden 3 -0110100 Ricker 3 -0110100 Fidler 3 -0110100 Fennema 3 -0110100 Goette 3 -0110100 Burten 3 -0110100 Ciasullo 3 -0110100 Runkle 3 -0110100 Buring 3 -0110100 Olsan 3 -0110100 Keizer 3 -0110100 Ebaugh 3 -0110100 Musgrove 3 -0110100 Ashwill 3 -0110100 Stent 3 -0110100 Ruhe 3 -0110100 Thomashow 3 -0110100 Baselitz 3 -0110100 Meader 3 -0110100 Pilarski 3 -0110100 Siu 3 -0110100 Macneill 3 -0110100 Kesel 3 -0110100 Weigle 3 -0110100 Winkel 3 -0110100 Wennberg 3 -0110100 Jenkins-Stark 3 -0110100 Bruser 3 -0110100 Akresh 3 -0110100 Riesman 3 -0110100 Apasara 3 -0110100 Featherstone 3 -0110100 Werby 3 -0110100 Pyles 3 -0110100 Ligon 3 -0110100 Brasell 3 -0110100 Dunton 3 -0110100 Zukovsky 3 -0110100 Aranda 3 -0110100 Moleleki 3 -0110100 Steffy 3 -0110100 Quds 3 -0110100 Lindstrom 3 -0110100 Dikmen 3 -0110100 Strednak 3 -0110100 Foght 3 -0110100 Eugster 3 -0110100 Dunphy 3 -0110100 Behr 3 -0110100 Schwitter 3 -0110100 Niemczewski 3 -0110100 Brunsdale 3 -0110100 Pizzey 3 -0110100 Kuh 3 -0110100 Flickinger 3 -0110100 Lazelle 3 -0110100 Kalish 3 -0110100 Wahed 3 -0110100 Naya 3 -0110100 Schielein 3 -0110100 Murninghan 3 -0110100 Bedrosian 3 -0110100 Watada 3 -0110100 Lincicome 3 -0110100 Nitti 3 -0110100 Kurdas 3 -0110100 Morricone 3 -0110100 Holtham 3 -0110100 Kristensen 3 -0110100 Codman 3 -0110100 Dircks 3 -0110100 Roberti 3 -0110100 Gurtis 3 -0110100 Vasiliev 3 -0110100 Bensten 3 -0110100 Gallegos 3 -0110100 Larocca 3 -0110100 Yorkin 3 -0110100 Kehle 3 -0110100 Arpin 3 -0110100 Salamah 3 -0110100 Al-Harthi 3 -0110100 Kinser 3 -0110100 Sarna 3 -0110100 Griesse 3 -0110100 Lacourciere 3 -0110100 Doph 3 -0110100 Swett 3 -0110100 Boecking 3 -0110100 Carlston 3 -0110100 Koppelman 3 -0110100 Peddie 3 -0110100 Esteverena 3 -0110100 Shielke 3 -0110100 Anoli 3 -0110100 Izdebski 3 -0110100 Norling 3 -0110100 Norian 3 -0110100 Mohn 3 -0110100 Schnell 3 -0110100 Spalla 3 -0110100 Metge 3 -0110100 Branciard 3 -0110100 Bast 3 -0110100 Cuoco 3 -0110100 Freche 3 -0110100 Orce 3 -0110100 Ushikubo 3 -0110100 Gaertner 3 -0110100 Deskins 3 -0110100 Mojadidi 3 -0110100 Cedeno 3 -0110100 Sorman 3 -0110100 Herke 3 -0110100 Maslow 3 -0110100 Morring 3 -0110100 Ekedahl 3 -0110100 Zwerling 3 -0110100 Meilke 3 -0110100 Kunihiro 3 -0110100 Luxmoore 3 -0110100 Zabaneh 3 -0110100 Dahrendorf 3 -0110100 Jesperson 3 -0110100 Mirabito 3 -0110100 Cocker 3 -0110100 Corash 3 -0110100 Pliakas 3 -0110100 Furlan 3 -0110100 Benge 3 -0110100 Fagerlund 3 -0110100 Patenaude 3 -0110100 Kligh 3 -0110100 Plunk 3 -0110100 Eatwell 3 -0110100 Toczyska 3 -0110100 Solanet 3 -0110100 Wolman 3 -0110100 Kareishi 3 -0110100 Lapthorne 3 -0110100 Kuban 3 -0110100 Kiet 3 -0110100 Muhl 3 -0110100 Witschner 3 -0110100 Tager 3 -0110100 Schroth 3 -0110100 Farhat 3 -0110100 Marwan 3 -0110100 Weliver 3 -0110100 Aronovitz 3 -0110100 Seawright 3 -0110100 Leasure 3 -0110100 Holloran 3 -0110100 Balestreri 3 -0110100 Feliu 3 -0110100 Veloric 3 -0110100 Burnstein 3 -0110100 Konigsberg 3 -0110100 Silverglate 3 -0110100 Sabbatini 3 -0110100 Hillinga 3 -0110100 Orlett 3 -0110100 Shands 3 -0110100 Eidson 3 -0110100 Kostiuk 3 -0110100 Goc 3 -0110100 Blase 3 -0110100 Gusberg 3 -0110100 Landschulz 3 -0110100 Heiserman 3 -0110100 Gwinn 3 -0110100 Winberry 3 -0110100 Bergl 3 -0110100 Golodner 3 -0110100 Rockhold 3 -0110100 Goyan 3 -0110100 Crismore 3 -0110100 Tursman 3 -0110100 Despres 3 -0110100 Duer 3 -0110100 Kerchhoff 3 -0110100 Sikakane 3 -0110100 Strott 3 -0110100 Liroff 3 -0110100 Brust 3 -0110100 Judis 3 -0110100 Becher 3 -0110100 Feerick 3 -0110100 Trigg 3 -0110100 Stoeckel 3 -0110100 Angelilli 3 -0110100 Trenary 3 -0110100 DeClercq 3 -0110100 Silkman 3 -0110100 Melchor 3 -0110100 Hirshfeld 3 -0110100 Heindel 3 -0110100 Hershfield 3 -0110100 Prosky 3 -0110100 Berend 3 -0110100 Kriz 3 -0110100 Cherpak 3 -0110100 Terblanche 3 -0110100 Charreaux 3 -0110100 Bruederle 3 -0110100 Orlandella 3 -0110100 Prout 3 -0110100 McMorrow 3 -0110100 Yanagisawa 3 -0110100 Schlosberg 3 -0110100 Daddario 3 -0110100 Nieves 3 -0110100 Dostanic 3 -0110100 Soosten 3 -0110100 Helle 3 -0110100 Gilkey 3 -0110100 Strieber 3 -0110100 Champs-Elysees 3 -0110100 Steucke 3 -0110100 Bathrick 3 -0110100 Draleaus 3 -0110100 Gebbie 3 -0110100 Csathy 3 -0110100 Rinkoff 3 -0110100 Westenberg 3 -0110100 Gowrie 3 -0110100 Maruta 3 -0110100 Akatsu 3 -0110100 Przyszlak 3 -0110100 Lande 3 -0110100 Previte 3 -0110100 Sotin 3 -0110100 Plaxe 3 -0110100 Arango 3 -0110100 Petru 3 -0110100 Feist 3 -0110100 Shafransky 3 -0110100 Schwensen 3 -0110100 Shipe 3 -0110100 Zarnowitz 3 -0110100 Seong 3 -0110100 Stolle 3 -0110100 Bacigal 3 -0110100 Descours 3 -0110100 Ilschenko 3 -0110100 Atkin 3 -0110100 Lynum 3 -0110100 Dehmlow 3 -0110100 Wauben 3 -0110100 Nuseibeh 3 -0110100 Voronsov 3 -0110100 Musgrave 3 -0110100 Rofes 3 -0110100 Golleher 3 -0110100 Baumel 3 -0110100 Rigopoulos 3 -0110100 Cowens 3 -0110100 Papanicolaou 3 -0110100 Struk 3 -0110100 Sartori 3 -0110100 Furey 3 -0110100 Erzen 3 -0110100 Lloyd-Jones 3 -0110100 Wilbourne 3 -0110100 Illgen 3 -0110100 Rudowicz 3 -0110100 Weedman 3 -0110100 Gaither 3 -0110100 Dales 3 -0110100 deB 3 -0110100 Alanis 3 -0110100 Loewenstein 3 -0110100 Godber 3 -0110100 Gladman 3 -0110100 Tepe 3 -0110100 Persson 3 -0110100 Ritterman 3 -0110100 Sibiya 3 -0110100 Hopp 3 -0110100 Trung 3 -0110100 Alson 3 -0110100 Pankau 3 -0110100 Morikawa 3 -0110100 Karmazin 3 -0110100 DeVillars 3 -0110100 Bertlesman 3 -0110100 Pirnie 3 -0110100 Zeevi 3 -0110100 Brister 3 -0110100 Nishime 3 -0110100 Hannberger 3 -0110100 Shafroth 3 -0110100 Qiang 3 -0110100 Massell 3 -0110100 Losco 3 -0110100 Katzenstein 3 -0110100 Wrede 3 -0110100 Juren 3 -0110100 Hellerman 3 -0110100 Hershkowitz 3 -0110100 Cocuzza 3 -0110100 Rebell 3 -0110100 Wilensky 3 -0110100 McCampbell 3 -0110100 Vykhodtseva 3 -0110100 Petherbridge 3 -0110100 Piven 3 -0110100 Sentker 3 -0110100 Mion 3 -0110100 Parnaby 3 -0110100 Daane 3 -0110100 Jasperson 3 -0110100 Shirvanian 3 -0110100 Ianella 3 -0110100 Morial 3 -0110100 Bangham 3 -0110100 Krygier 3 -0110100 Higginson 3 -0110100 Dumont 3 -0110100 Stenbom 3 -0110100 Poghettini 3 -0110100 Orphanos 3 -0110100 Dunaj 3 -0110100 Bonta 3 -0110100 Nahrwold 3 -0110100 Swayze 3 -0110100 Schmader 3 -0110100 Hydeman 3 -0110100 Carlhian 3 -0110100 Stanek 3 -0110100 Roysdon 3 -0110100 Garraway 3 -0110100 Kaita 3 -0110100 Caceda 3 -0110100 Leibman 3 -0110100 Fixx 3 -0110100 Baumol 3 -0110100 Sawaya 3 -0110100 Sardi 3 -0110100 Triggs 3 -0110100 Reinertson 3 -0110100 Kreick 3 -0110100 Andreson 3 -0110100 Rohrbaugh 3 -0110100 Vermeulen 3 -0110100 Olwell 3 -0110100 Theis 3 -0110100 Pugo 3 -0110100 Coan 3 -0110100 Carbine 3 -0110100 Hendershot 3 -0110100 Hattan 3 -0110100 Cheadle 3 -0110100 Peele 3 -0110100 Camarta 3 -0110100 Miyajima 3 -0110100 Serian 3 -0110100 Benzie 3 -0110100 Blechman 3 -0110100 Liel 3 -0110100 Liener 3 -0110100 Antrim 3 -0110100 Acin 3 -0110100 Grinspun 3 -0110100 Akins 3 -0110100 Dubay 3 -0110100 Kreifeldt 3 -0110100 Storiale 3 -0110100 Gabianelli 3 -0110100 Hartnack 3 -0110100 Nenashev 3 -0110100 Sliwa 3 -0110100 Dobrich 3 -0110100 Dornemann 3 -0110100 Odgers 3 -0110100 Hulse 3 -0110100 Tilis 3 -0110100 Hartin 3 -0110100 Reber 3 -0110100 Vasilopoulos 3 -0110100 Mosman 3 -0110100 Schwanbeck 3 -0110100 Sundry 3 -0110100 Tulin 3 -0110100 Delarosiere 3 -0110100 Vavala 3 -0110100 Saraceno 3 -0110100 Coeyman 3 -0110100 Sutzkever 3 -0110100 Scott-Heron 3 -0110100 Dolnick 3 -0110100 Wolford 3 -0110100 Lyson 3 -0110100 Kersen 3 -0110100 Menke 3 -0110100 Silvestro 3 -0110100 Lottimer 3 -0110100 Panebianco 3 -0110100 Mecke 3 -0110100 Troutt 3 -0110100 McPheters 3 -0110100 Barkun 3 -0110100 Scruggs 3 -0110100 Danzinger 3 -0110100 Gosselin 3 -0110100 Moskos 3 -0110100 Pero 3 -0110100 Jakubek 3 -0110100 Ketelson 3 -0110100 zumFelde 3 -0110100 Brunet 3 -0110100 Gevirtz 3 -0110100 Corchado 3 -0110100 Stimpfle 3 -0110100 Delman 3 -0110100 Kummerfeld 3 -0110100 Romrell 3 -0110100 Zusel 3 -0110100 Nagasaka 3 -0110100 DiIulio 3 -0110100 Bothwell 3 -0110100 Mastroeni 3 -0110100 Yurkovic 3 -0110100 Fawkes 3 -0110100 Haswell 3 -0110100 Nishiguchi 3 -0110100 Grasemann 3 -0110100 Brindisi 3 -0110100 Ziegel 3 -0110100 Mosbaugh 3 -0110100 Adamadama 3 -0110100 Gallaway 3 -0110100 Cyker 3 -0110100 Measor 3 -0110100 Churchouse 3 -0110100 Lemke 3 -0110100 Seidl 3 -0110100 Tanzer 3 -0110100 Gornick 3 -0110100 Arighi 3 -0110100 Bradosky 3 -0110100 Laffey 3 -0110100 Zaccaria 3 -0110100 Sypen 3 -0110100 Donnea 3 -0110100 Lomasky 3 -0110100 Ussachevsky 3 -0110100 Varney 3 -0110100 Bocca 3 -0110100 Soler 3 -0110100 Trinder 3 -0110100 Liptak 3 -0110100 Stronin 3 -0110100 Vittadini 3 -0110100 Dayley 3 -0110100 Fortson 3 -0110100 Sukegawa 3 -0110100 Saari 3 -0110100 Kujawa 3 -0110100 Modica 3 -0110100 Aoyagi 3 -0110100 Assante 3 -0110100 Altfeld 3 -0110100 Racanelli 3 -0110100 Moerschbaecher 3 -0110100 Bodne 3 -0110100 Swithenbank 3 -0110100 Pahl 3 -0110100 Kokta 3 -0110100 Guidi 3 -0110100 tenEyck 3 -0110100 Yano 3 -0110100 Zall 3 -0110100 Tehan 3 -0110100 Zivin 3 -0110100 Sothern 3 -0110100 Ballhaus 3 -0110100 Yuyitung 3 -0110100 Miyaji 3 -0110100 Bunkers 3 -0110100 Haraburda 3 -0110100 Gloster 3 -0110100 Temkin 3 -0110100 Cimino 3 -0110100 Kaplinsky 3 -0110100 Maresca 3 -0110100 Mayette 3 -0110100 Gattinger 3 -0110100 Tonneson 3 -0110100 Nessim 3 -0110100 Lashinsky 3 -0110100 Mattle 3 -0110100 Fachler 3 -0110100 Pascarella 3 -0110100 Bassi 3 -0110100 Juneja 3 -0110100 Zytnick 3 -0110100 Kostantinidis 3 -0110100 Binas 3 -0110100 Kitazawa 3 -0110100 Aloma 3 -0110100 Mangope 3 -0110100 Skrzypkowiak 3 -0110100 Mojica 3 -0110100 Yanez 3 -0110100 Wekili 3 -0110100 Azrael 3 -0110100 Swirbul 3 -0110100 Callner 3 -0110100 Otness 3 -0110100 Castoro 3 -0110100 Lorinovich 3 -0110100 Limato 3 -0110100 Emori 3 -0110100 Bosley 3 -0110100 Ionesco 3 -0110100 Lys 3 -0110100 Barsan 3 -0110100 Kearse 3 -0110100 Tellfors 3 -0110100 Mosso 3 -0110100 Heiberg 3 -0110100 Srigley 3 -0110100 Villiere 3 -0110100 Kataoka 3 -0110100 Barnish 3 -0110100 Seip 3 -0110100 Prindiville 3 -0110100 Pigott 3 -0110100 Kronstam 3 -0110100 Lord-Alge 3 -0110100 Willcock 3 -0110100 Pzena 3 -0110100 Douffiagues 3 -0110100 Feldkircher 3 -0110100 Haub 3 -0110100 Espenshade 3 -0110100 Aposhian 3 -0110100 Brandzel 3 -0110100 Warrens 3 -0110100 Soysal 3 -0110100 Dastrup 3 -0110100 Cosserat 3 -0110100 Gubar 3 -0110100 Eskra 3 -0110100 Ishii 3 -0110100 Giachetti 3 -0110100 Neisser 3 -0110100 Macurdy 3 -0110100 Donics 3 -0110100 Kochka 3 -0110100 Anel 3 -0110100 Arvai 3 -0110100 Wolkoff 3 -0110100 Efstathiou 3 -0110100 Hotz 3 -0110100 Lupatkin 3 -0110100 Flintstone 3 -0110100 Scheimer 3 -0110100 Cypra 3 -0110100 Willott 3 -0110100 Panagotacos 3 -0110100 Evnine 3 -0110100 Rogow 3 -0110100 Quanqui 3 -0110100 Racciatti 3 -0110100 Arrillaga 3 -0110100 Goebert 3 -0110100 Whitford 3 -0110100 Akopov 3 -0110100 Coplan 3 -0110100 Mugg 3 -0110100 Freid 3 -0110100 Marran 3 -0110100 Buckardt 3 -0110100 Lipanovich 3 -0110100 Prajuabsuk 3 -0110100 Surasen 3 -0110100 Reznicek 3 -0110100 Maietti 3 -0110100 Ditfurth 3 -0110100 Guida 3 -0110100 Khaimah 3 -0110100 Redman-Brown 3 -0110100 Sudol 3 -0110100 Weeber 3 -0110100 Pitner 3 -0110100 Edris 3 -0110100 Koestler 3 -0110100 Tennison 3 -0110100 Bohm 3 -0110100 Roberson 3 -0110100 Sombrotto 3 -0110100 Aspe 3 -0110100 Ingraham 3 -0110100 Coriston 3 -0110100 Colquhoun 3 -0110100 Nowinski 3 -0110100 Gleysteen 3 -0110100 Mages 3 -0110100 Amaro 3 -0110100 Kraatz 3 -0110100 Kissling 3 -0110100 Benrook 3 -0110100 Stachel 3 -0110100 Daughtrey 3 -0110100 Gailliot 3 -0110100 Mouhajer 3 -0110100 LeFauve 3 -0110100 Trosky 3 -0110100 Riess 3 -0110100 Tringer 3 -0110100 Nemes 3 -0110100 Kasem 3 -0110100 Beene 3 -0110100 Dubensky 3 -0110100 Huysman 3 -0110100 Borgmeyer 3 -0110100 Ekberg 3 -0110100 Gorostiaga 3 -0110100 Zucchi 3 -0110100 Dobrinsky 3 -0110100 Taketoh 3 -0110100 Tippler 3 -0110100 Bethge 3 -0110100 Milonas 3 -0110100 Schllosberg 3 -0110100 Abney 3 -0110100 Lautzenheiser 3 -0110100 Schwinden 3 -0110100 Maney 3 -0110100 Polster 3 -0110100 Sarner 3 -0110100 Osler 3 -0110100 Fiederlein 3 -0110100 Mikelson 3 -0110100 Bogachev 3 -0110100 Erbil 3 -0110100 Fidulov 3 -0110100 Sunami 3 -0110100 DeMartini 3 -0110100 Leadbetter 3 -0110100 Cejka 3 -0110100 Revel 3 -0110100 Mayville 3 -0110100 Garraty 3 -0110100 Paluszek 3 -0110100 Glew 3 -0110100 Buchalter 3 -0110100 Hackney 3 -0110100 Raziano 3 -0110100 Samek 3 -0110100 Hempe 3 -0110100 Windisch 3 -0110100 Hedtke 3 -0110100 Restall 3 -0110100 Premo 3 -0110100 Dawes 3 -0110100 Popofsky 3 -0110100 Glish 3 -0110100 Molen 3 -0110100 Corrallo 3 -0110100 Kumoi 3 -0110100 Halkin 3 -0110100 LaTorre 3 -0110100 Livieratos 3 -0110100 Weinig 3 -0110100 Drinan 3 -0110100 Kuchan 3 -0110100 Elg 3 -0110100 Tedesco 3 -0110100 Richley 3 -0110100 Priebe 3 -0110100 Goniwe 3 -0110100 Grandjean 3 -0110100 Kramlich 3 -0110100 Reuwee 3 -0110100 Bellante 3 -0110100 Landrigan 3 -0110100 Fineman 3 -0110100 Alcamo 3 -0110100 Kielty 3 -0110100 Manser 3 -0110100 Eanes 3 -0110100 Grinde 3 -0110100 Fickett 3 -0110100 Sepang 3 -0110100 Nayawai 3 -0110100 Eagelstein 3 -0110100 Rodriguez-Gallegos 3 -0110100 MacEwan 3 -0110100 Gavert 3 -0110100 Janowski 3 -0110100 Struever 3 -0110100 Postula 3 -0110100 Couturie 3 -0110100 Ebker 3 -0110100 Bluestein 3 -0110100 Rizzitello 3 -0110100 Thorpy 3 -0110100 Hancox 3 -0110100 Hutheesing 3 -0110100 Korder 3 -0110100 Martoche 3 -0110100 Glasener 3 -0110100 Pinson 3 -0110100 Durdiev 3 -0110100 Almoayed 3 -0110100 Galiani 3 -0110100 Macpherson 3 -0110100 Bullis 3 -0110100 Shutzer 3 -0110100 Jarecki 3 -0110100 Hilly 3 -0110100 Grueter 3 -0110100 Drell 3 -0110100 Duhamel 3 -0110100 Elrod 3 -0110100 Rombough 3 -0110100 Hannigan 3 -0110100 Schreck 3 -0110100 Caskey 3 -0110100 al-Hodeibi 3 -0110100 Foda 3 -0110100 Saqr 3 -0110100 Paganis 3 -0110100 Horiuchi 3 -0110100 Mackaronis 3 -0110100 Brickfield 3 -0110100 Lascher 3 -0110100 Cholmondeley 3 -0110100 Threadgill 3 -0110100 Perlberg 3 -0110100 Jucker 3 -0110100 Hockbrueckner 3 -0110100 Yaconetti 3 -0110100 Speights 3 -0110100 Asciutto 3 -0110100 Badham 3 -0110100 Dangerfields 3 -0110100 Potashnik 3 -0110100 Hotchner 3 -0110100 Jorgenson 3 -0110100 LeGardeur 3 -0110100 Pileggi 3 -0110100 Devitt 3 -0110100 Tetruzziello 3 -0110100 Ferrar 3 -0110100 Bacigalupo 3 -0110100 Tavenner 3 -0110100 Kornbluh 3 -0110100 Zinsmeister 3 -0110100 Bisschop 3 -0110100 Kramden 3 -0110100 Nudel 3 -0110100 Goldhaber 3 -0110100 Kallio 3 -0110100 Beckford 3 -0110100 Rotie 3 -0110100 Heafy 3 -0110100 Pelek 3 -0110100 Freemantle 3 -0110100 Cammaker 3 -0110100 Bouali 3 -0110100 Walthausen 3 -0110100 Spanton 3 -0110100 Alegria 3 -0110100 Yuhnke 3 -0110100 Sliney 3 -0110100 Nagler 3 -0110100 Margaritis 3 -0110100 Persofsky 3 -0110100 Weikart 3 -0110100 Suhrheinrich 3 -0110100 Aguado 3 -0110100 Hirshfield 3 -0110100 Kutcher 3 -0110100 Niebuhr 3 -0110100 Bublikova 3 -0110100 Beiseker 3 -0110100 Lohmolder 3 -0110100 Hejny 3 -0110100 Zambas 3 -0110100 Hockaday 3 -0110100 Pucik 3 -0110100 Foncannon 3 -0110100 Hoyda 3 -0110100 Botello 3 -0110100 Beckers 3 -0110100 Hohmann 3 -0110100 Contreras 3 -0110100 Midgette 3 -0110100 Maness 3 -0110100 Tedone 3 -0110100 Szilagyi 3 -0110100 Hafner 3 -0110100 Bigham 3 -0110100 Pirkl 3 -0110100 Proulx 3 -0110100 Pekhane 3 -0110100 Rotoloni 3 -0110100 Satterfield 3 -0110100 Facher 3 -0110100 Insley 3 -0110100 Acamovic 3 -0110100 Marowitz 3 -0110100 Eberts 3 -0110100 Tuten 3 -0110100 Dinesen 3 -0110100 Sherard 3 -0110100 Homeyer 3 -0110100 Cornelsen 3 -0110100 Hohlfelder 3 -0110100 Sievers 3 -0110100 Pirrone 3 -0110100 Salti 3 -0110100 Suchman 3 -0110100 Toothill 3 -0110100 Crivelli 3 -0110100 Kusterer 3 -0110100 Gohlike 3 -0110100 Finnell 3 -0110100 Quibodeaux 3 -0110100 Shackley 3 -0110100 Avena 3 -0110100 Fogliano 3 -0110100 Marak 3 -0110100 Cavalcanti 3 -0110100 Zemljaric 3 -0110100 Tannenwald 3 -0110100 Ziemba 3 -0110100 Yantis 3 -0110100 Goheer 3 -0110100 Naff 3 -0110100 Suwiryo 3 -0110100 Abs 3 -0110100 Kaze 3 -0110100 McBryan 3 -0110100 Chiate 3 -0110100 Tromp 3 -0110100 Klahr 3 -0110100 Guarnaschelli 3 -0110100 Outardes 3 -0110100 Perlegos 3 -0110100 Worthing 3 -0110100 Saponaro 3 -0110100 Potosi 3 -0110100 DeWees 3 -0110100 Strangfeld 3 -0110100 Feaheny 3 -0110100 Haville 3 -0110100 Derwinski 3 -0110100 Ornstein 3 -0110100 Elbogen 3 -0110100 Nomoto 3 -0110100 Gadio 3 -0110100 Mahaffey 3 -0110100 Akamatsu 3 -0110100 Kilkenny 3 -0110100 Inlander 3 -0110100 Huemer 3 -0110100 Renovica 3 -0110100 Lustbader 3 -0110100 Rothbart 3 -0110100 Hubbs 3 -0110100 Cochez 3 -0110100 Forese 3 -0110100 Bertelson 3 -0110100 Quevedo 3 -0110100 Alegre 3 -0110100 Emmer 3 -0110100 Shipton 3 -0110100 Korchnoi 3 -0110100 Potti 3 -0110100 Martonik 3 -0110100 Lanphier 3 -0110100 Simoneau 3 -0110100 Widham 3 -0110100 Wiatr 3 -0110100 Rolandi 3 -0110100 Tygart 3 -0110100 Moshinsky 3 -0110100 McConville 3 -0110100 Venti 3 -0110100 Steinberger 3 -0110100 Nangle 3 -0110100 Baehr 3 -0110100 Heth 3 -0110100 Goedecker 3 -0110100 Kiuchi 3 -0110100 Eckman 3 -0110100 Tomasello 3 -0110100 LeSourd 3 -0110100 Stanic 3 -0110100 Devoe 3 -0110100 Bardot 3 -0110100 Augenbraun 3 -0110100 Kos 3 -0110100 Wurczinger 3 -0110100 Bledsoe 3 -0110100 Sentman 3 -0110100 Shingleton 3 -0110100 Fleury 3 -0110100 Shott 3 -0110100 Navas 3 -0110100 Titcomb 3 -0110100 Begalla 3 -0110100 Brookins 3 -0110100 DiBraccio 3 -0110100 Osterberg 3 -0110100 Singel 3 -0110100 Butkus 3 -0110100 Hammitt 3 -0110100 Wigglesworth 3 -0110100 Lamoreaux 3 -0110100 Brassil 3 -0110100 Manzer 3 -0110100 Knuettel 3 -0110100 Buckhalt 3 -0110100 Castonguay 3 -0110100 Miyakoshi 3 -0110100 Lightner 3 -0110100 Pols 3 -0110100 Treece 3 -0110100 Calazans 3 -0110100 Allumbaugh 3 -0110100 Hobzek 3 -0110100 Bartelstone 3 -0110100 Markels 3 -0110100 Ozer 3 -0110100 Baggerman 3 -0110100 Hollewa 3 -0110100 Avers 3 -0110100 Cunneen 3 -0110100 Scholes 3 -0110100 Tavela 3 -0110100 Ohta 3 -0110100 Lamanet 3 -0110100 Aprahamian 3 -0110100 Mundt 3 -0110100 Adelstein 3 -0110100 Linker 3 -0110100 Hempler 3 -0110100 Daetwyler 3 -0110100 Juppe 3 -0110100 Berriozabal 3 -0110100 Shwalb 3 -0110100 Oncken 3 -0110100 Visher 3 -0110100 Brodeur 3 -0110100 Rompala 3 -0110100 Quartarone 3 -0110100 Kesteloot 3 -0110100 Wesely 3 -0110100 Drillman 3 -0110100 Stanghellini 3 -0110100 LaLuntas 3 -0110100 Hochstim 3 -0110100 Kutlu 3 -0110100 Sargin 3 -0110100 Bendig 3 -0110100 Grosh 3 -0110100 Schimmel 3 -0110100 Langan 3 -0110100 Bruson 3 -0110100 Cohen-Solal 3 -0110100 Attalienti 3 -0110100 Scoggins 3 -0110100 Noschese 3 -0110100 Susnjara 3 -0110100 Bernthal 3 -0110100 Zieber 3 -0110100 Rabbani 3 -0110100 Mosser 3 -0110100 Gilborn 3 -0110100 Anacker 3 -0110100 DuCoty 3 -0110100 Dalrymple 3 -0110100 Griminger 3 -0110100 Dufy 3 -0110100 Heitz 3 -0110100 Miceli 3 -0110100 Simoncelli 3 -0110100 Haxthausen 3 -0110100 Paglinco 3 -0110100 Shakshuki 3 -0110100 Panker 3 -0110100 Lingle 3 -0110100 Elsen 3 -0110100 Lobel 3 -0110100 Meisner 3 -0110100 Okrent 3 -0110100 Ziaul-Haq 3 -0110100 Renfro 3 -0110100 Backman 3 -0110100 Sickling 3 -0110100 French-Davis 3 -0110100 Quinson 3 -0110100 Warn 3 -0110100 Minasy 3 -0110100 Hulsey 3 -0110100 Giertz 3 -0110100 Komarek 3 -0110100 Gowing 3 -0110100 Glitman 3 -0110100 Vana 3 -0110100 Cahoj 3 -0110100 Hudecek 3 -0110100 Fritschi 3 -0110100 Fleishman 3 -0110100 Stoltzfus 3 -0110100 Bonnard 3 -0110100 Stam 3 -0110100 Allee 3 -0110100 Wodehouse 3 -0110100 Corboy 3 -0110100 Fryling 3 -0110100 Skillern 3 -0110100 Rawling 3 -0110100 Pulis 3 -0110100 McInnis 3 -0110100 Zankl 3 -0110100 Bakst 3 -0110100 Gheyn 3 -0110100 Rinsch 3 -0110100 Germer 3 -0110100 Stoneburner 3 -0110100 DeRogatis 3 -0110100 Brimley 3 -0110100 Lowack 3 -0110100 Bissett 3 -0110100 Kuno 3 -0110100 Talbott 3 -0110100 Tuthill 3 -0110100 Hallberg 3 -0110100 Anderluh 3 -0110100 Roos 3 -0110100 Henninger 3 -0110100 Gheorge 3 -0110100 Goodis 3 -0110100 Telson 3 -0110100 Gurary 3 -0110100 Recio 3 -0110100 Cott 3 -0110100 Helpern 3 -0110100 Toepfer 3 -0110100 Bost 3 -0110100 Kitsuda 3 -0110100 Jelden 3 -0110100 Tropper 3 -0110100 Darlow 3 -0110100 Visser 3 -0110100 Khanna 3 -0110100 Lamborn 3 -0110100 Zougdhan 3 -0110100 Kanjorski 3 -0110100 Peckham 3 -0110100 Godin 3 -0110100 Purdie 3 -0110100 DeBerry 3 -0110100 Caffrey 3 -0110100 Alekan 3 -0110100 Kravec 3 -0110100 Dovey 3 -0110100 Cawthorne 3 -0110100 Reddaway 3 -0110100 Munden 3 -0110100 Scherick 3 -0110100 Drewry 3 -0110100 Imanishi 3 -0110100 Firth 3 -0110100 Fukino 3 -0110100 Delinois 3 -0110100 Erhardt 3 -0110100 Conrow 3 -0110100 Cropsey 3 -0110100 Stadiem 3 -0110100 Atchkassov 3 -0110100 Mozhaiskov 3 -0110100 Henzel 3 -0110100 Harward 3 -0110100 Tomozawa 3 -0110100 Larabee 3 -0110100 Agthe 3 -0110100 Farquharson 3 -0110100 Harts 3 -0110100 Kryshtalsky 3 -0110100 Matloff 3 -0110100 Walta 3 -0110100 Morzenti 3 -0110100 Leider 3 -0110100 Bicks 3 -0110100 Kors 3 -0110100 Geyer 3 -0110100 Kremlyova 3 -0110100 Gunderslau 3 -0110100 Wincek 3 -0110100 Austad 3 -0110100 Giugni 3 -0110100 Gliedman 3 -0110100 Depardieu 3 -0110100 Salvesen 3 -0110100 Bale 3 -0110100 Aylesworth 3 -0110100 Shimada 3 -0110100 Richler 3 -0110100 Sweetser 3 -0110100 Pivar 3 -0110100 Giallo 3 -0110100 Primis 3 -0110100 Gavrilov 3 -0110100 Moret 3 -0110100 Loo 3 -0110100 Mansell 3 -0110100 Oppenlander 3 -0110100 Ganger 3 -0110100 Cozart 3 -0110100 Mussano 3 -0110100 Ying-jeou 3 -0110100 Duvin 3 -0110100 Erbsen 3 -0110100 Bastin 3 -0110100 Kucinich 3 -0110100 Bishton 3 -0110100 Payn 3 -0110100 Eyal 3 -0110100 Juengling 3 -0110100 Lizt 3 -0110100 Kuthy 3 -0110100 Chelouche 3 -0110100 Rutsch 3 -0110100 Obeiter 3 -0110100 Blocher 3 -0110100 Balton 3 -0110100 Grzybowski 3 -0110100 Dockery 3 -0110100 Kuestner 3 -0110100 DeCristofaro 3 -0110100 Perleman 3 -0110100 Kuhnke 3 -0110100 Reolon 3 -0110100 Avedon 3 -0110100 Takacs 3 -0110100 Borghese 3 -0110100 Kawata 3 -0110100 Hirshson 3 -0110100 Oberhaus 3 -0110100 Pimentel 3 -0110100 Geehring 3 -0110100 Cotte 3 -0110100 Standen 3 -0110100 Leconte 3 -0110100 Natus 3 -0110100 Zarem 3 -0110100 Godley 3 -0110100 Versteegen 3 -0110100 Blatte 3 -0110100 Adorjan 3 -0110100 Ferrans 3 -0110100 Pesek 3 -0110100 Adamishin 3 -0110100 Pekovich 3 -0110100 Corkran 3 -0110100 Oskin 3 -0110100 Sommerhalter 3 -0110100 Pelobello 3 -0110100 Bohill 3 -0110100 Arrowood 3 -0110100 Pellegrini 3 -0110100 Goverman 3 -0110100 Krunic 3 -0110100 Meisler 3 -0110100 Portz 3 -0110100 Sandel 3 -0110100 Basrur 3 -0110100 Marryott 3 -0110100 DePalma 3 -0110100 Sabarese 3 -0110100 LeClair 3 -0110100 Bullard 3 -0110100 Goz 3 -0110100 Tesch 3 -0110100 Pinchot 3 -0110100 Segnar 3 -0110100 Tinkler 3 -0110100 Henneberry 3 -0110100 Bunning 3 -0110100 Crist 3 -0110100 Fok 3 -0110100 Brodkin 3 -0110100 Oechsle 3 -0110100 Lannamann 3 -0110100 Molbeck 3 -0110100 Krasnick 3 -0110100 Dittenhafer 3 -0110100 Jewison 3 -0110100 Heggem 3 -0110100 Mulcahy 3 -0110100 Ruffolo 3 -0110100 Campe 3 -0110100 Salzmann 3 -0110100 Valentini 3 -0110100 Sasahara 3 -0110100 Naughton 3 -0110100 Lasseter 3 -0110100 Etherington 3 -0110100 Diotallevi 3 -0110100 Heintze 3 -0110100 Boettiger 3 -0110100 Toreson 3 -0110100 Dury 3 -0110100 Herber 3 -0110100 Goodling 3 -0110100 Magnusson 3 -0110100 Baumgardner 3 -0110100 Ivanova 3 -0110100 Enthoven 3 -0110100 Corkrean 3 -0110100 Maesato 3 -0110100 Bemberg 3 -0110100 Gaitan 3 -0110100 Eshelman 3 -0110100 Riesselman 3 -0110100 Maglathlin 3 -0110100 Allvine 3 -0110100 Bellotti 3 -0110100 Odegaard 3 -0110100 Stormes 3 -0110100 Moats 3 -0110100 Sackheim 3 -0110100 Leblang 3 -0110100 Ihle 3 -0110100 Bongirno 3 -0110100 Wolkenfeld 3 -0110100 Fasching 3 -0110100 Huxley 3 -0110100 Gately 3 -0110100 Maling 3 -0110100 Pendlum 3 -0110100 Gossage 3 -0110100 Modisa 3 -0110100 Kekina 3 -0110100 Gabetti 3 -0110100 Creagan 3 -0110100 Picou 3 -0110100 Kiesinger 3 -0110100 Whitson 3 -0110100 Massengale 3 -0110100 Edman 3 -0110100 Gettinger 3 -0110100 Kakita 3 -0110100 Somkiat 3 -0110100 Seto 3 -0110100 Intihar 3 -0110100 Saffels 3 -0110100 Staponski 3 -0110100 Ogarkov 3 -0110100 Conboy 3 -0110100 Karnosky 3 -0110100 Antoian 3 -0110100 Whitsett 3 -0110100 Sieck 3 -0110100 Steinauer 3 -0110100 Lykos 3 -0110100 Montes 3 -0110100 Amadon 3 -0110100 Kugel 3 -0110100 Caravati 3 -0110100 Mulloy 3 -0110100 Hien 3 -0110100 Bruggere 3 -0110100 Dauzier 3 -0110100 Keilin 3 -0110100 Wain 3 -0110100 Methvin 3 -0110100 Eisenkraft 3 -0110100 Moranis 3 -0110100 Nace 3 -0110100 Boulding 3 -0110100 Morobe 3 -0110100 Gettleson 3 -0110100 Levanto 3 -0110100 Paisely 3 -0110100 Yuo 3 -0110100 Breazzano 3 -0110100 Bookbinder 3 -0110100 Toomre 3 -0110100 Eskind 3 -0110100 DeSena 3 -0110100 Lewellen 3 -0110100 Anglim 3 -0110100 Dimsdale 3 -0110100 Mittleman 3 -0110100 Mondaruli 3 -0110100 Sautier 3 -0110100 Burnside 3 -0110100 Gatton 3 -0110100 Saven 3 -0110100 Schwinghamer 3 -0110100 Hegdal 3 -0110100 Gaut 3 -0110100 Nozick 3 -0110100 Oremland 3 -0110100 Ruyan 3 -0110100 Halford 3 -0110100 Shahani 3 -0110100 Misagal 3 -0110100 Nemenzo 3 -0110100 Herres 3 -0110100 McGoff 3 -0110100 Krzywkowski 3 -0110100 Kepley 3 -0110100 Ellacuria 3 -0110100 McFadin 3 -0110100 Troia 3 -0110100 Kontny 3 -0110100 Kandel 3 -0110100 Asche 3 -0110100 Katushev 3 -0110100 Jonescheit 3 -0110100 Zeph 3 -0110100 Tuckman 3 -0110100 Toshav 3 -0110100 Haeck 3 -0110100 Trizzino 3 -0110100 Cossey 3 -0110100 Markin 3 -0110100 Benedicto 3 -0110100 Kushins 3 -0110100 Trugman 3 -0110100 Kalogridis 3 -0110100 Rinehimer 3 -0110100 Isdell 3 -0110100 Lupovich 3 -0110100 Sohl 3 -0110100 Mabus 3 -0110100 Fuerbringer 3 -0110100 Kaltenborn 3 -0110100 Merzheritsky 3 -0110100 Bronstein 3 -0110100 Zanzotto 3 -0110100 Gekas 3 -0110100 Henrikson 3 -0110100 Deichman 3 -0110100 Faggen 3 -0110100 Sumichrast 3 -0110100 Luben 3 -0110100 Odagiri 3 -0110100 Scobee 3 -0110100 Gamba 3 -0110100 al-Maghripi 3 -0110100 Bianchino 3 -0110100 Gittner 3 -0110100 Perris 3 -0110100 Jong-Il 3 -0110100 Hoops 3 -0110100 Hermogino 3 -0110100 Whipkey 3 -0110100 Preminger 3 -0110100 Konte 3 -0110100 Shull 3 -0110100 Shackleford 3 -0110100 Nagyvary 3 -0110100 Kneram 3 -0110100 MacMaster 3 -0110100 Crisham 3 -0110100 Olvera 3 -0110100 Magri 3 -0110100 Fixari 3 -0110100 Kaminer 3 -0110100 Brooks-Baker 3 -0110100 Osten 3 -0110100 Tarbuck 3 -0110100 Murck 3 -0110100 Frieze 3 -0110100 Shuford 3 -0110100 Dworsky 3 -0110100 Yablon 3 -0110100 Zogby 3 -0110100 Koloski 3 -0110100 Kohashi 3 -0110100 Steben 3 -0110100 Fauriol 3 -0110100 McCagherty 3 -0110100 Ciparick 3 -0110100 Theoharis 3 -0110100 Hewitson 3 -0110100 Eckersley 3 -0110100 Pirani 3 -0110100 Minford 3 -0110100 Rothenstein 3 -0110100 Lounsbury 3 -0110100 Failla 3 -0110100 Prinzivalli 3 -0110100 Brous 3 -0110100 Minjack 3 -0110100 Groman 3 -0110100 Pountain 3 -0110100 Birchard 3 -0110100 Lehr 3 -0110100 Huskins 3 -0110100 Wallerstein 3 -0110100 Karubi 3 -0110100 Russianoff 3 -0110100 Gerner 3 -0110100 Catallo 3 -0110100 Sulcer 3 -0110100 Fulco 3 -0110100 Hoene 3 -0110100 McGivney 3 -0110100 Mares 3 -0110100 Eamer 3 -0110100 Ishizaka 3 -0110100 Pastin 3 -0110100 Ilacqua 3 -0110100 Leeuwen 3 -0110100 McKey 3 -0110100 Trego 3 -0110100 Dalessio 3 -0110100 Kacek 3 -0110100 Kikol 3 -0110100 Lennarson 3 -0110100 Zinbarg 3 -0110100 Zecker 3 -0110100 Gieber 3 -0110100 Fosheim 3 -0110100 Cheshier 3 -0110100 Wingler 3 -0110100 Mirowsky 3 -0110100 Iauco 3 -0110100 Engemann 3 -0110100 Scarangella 3 -0110100 Zitin 3 -0110100 Masterpool 3 -0110100 Collinson 3 -0110100 Godshaw 3 -0110100 Ukeles 3 -0110100 Treiger 3 -0110100 Wassom 3 -0110100 Tutino 3 -0110100 Pomarico 3 -0110100 Plag 3 -0110100 Galarza 3 -0110100 Caffiaux 3 -0110100 Connick 3 -0110100 Cowing 3 -0110100 Gensichen 3 -0110100 Gerlinger 3 -0110100 Leibsle 3 -0110100 Hayashida 3 -0110100 Gritz 3 -0110100 Blough 3 -0110100 Prida 3 -0110100 Kucha 3 -0110100 Brill-Edwards 3 -0110100 Beckenbach 3 -0110100 Krivda 3 -0110100 Hellberg 3 -0110100 Mogami 3 -0110100 Geiser 3 -0110100 Latzer 3 -0110100 Bowerman 3 -0110100 Korte 3 -0110100 Hane 3 -0110100 Stabile 3 -0110100 Henman 3 -0110100 Schlein 3 -0110100 Hazlin 3 -0110100 deLima 3 -0110100 Cammack 3 -0110100 Ceransky 3 -0110100 Roache 3 -0110100 Busick 3 -0110100 Terashima 3 -0110100 Heaman 3 -0110100 Eppelmann 3 -0110100 Loehrke 3 -0110100 Coder 3 -0110100 Alawi 3 -0110100 Valla 3 -0110100 Slobodin 3 -0110100 Bobier 3 -0110100 McLauchlan 3 -0110100 DeGeorge 3 -0110100 Raviola 3 -0110100 Leeper 3 -0110100 Vieha 3 -0110100 Cuervo 3 -0110100 Nissenson 3 -0110100 Sedlack 3 -0110100 Hyslop 3 -0110100 Henrikkson 3 -0110100 Stefans 3 -0110100 Marovich 3 -0110100 Brandimarti 3 -0110100 Ide 3 -0110100 Barbadoro 3 -0110100 Weigand 3 -0110100 Urwitz 3 -0110100 Gammie 3 -0110100 Sakurai 3 -0110100 Dertouzos 3 -0110100 Negroponte 3 -0110100 Parkhill 3 -0110100 Wargo 3 -0110100 Morriss 3 -0110100 Fersh 3 -0110100 Endara 3 -0110100 Sweigart 3 -0110100 Voris 3 -0110100 Keyworth 3 -0110100 Hruska 3 -0110100 Ench 3 -0110100 Grimson 3 -0110100 Abadi 3 -0110100 Pickholz 3 -0110100 Merea 3 -0110100 Borcherds 3 -0110100 Plourde 3 -0110100 Charlier 3 -0110100 Jaffre 3 -0110100 Fukuhara 3 -0110100 Efron 3 -0110100 Piech 3 -0110100 Strongin 3 -0110100 Hausmann 3 -0110100 Tatson 3 -0110100 Smeby 3 -0110100 Raos 3 -0110100 Courtright 3 -0110100 Horman 3 -0110100 McConkey 3 -0110100 Harwitz 3 -0110100 Kohrs 3 -0110100 Loconto 3 -0110100 Marzulla 3 -0110100 Marella 3 -0110100 Cedelle 3 -0110100 Cosandey 3 -0110100 McCreath 3 -0110100 Cavalli-Bjoerkman 3 -0110100 Geuther 3 -0110100 Zuccarelli 3 -0110100 Holovak 3 -0110100 Dicken 3 -0110100 Stanovnik 3 -0110100 Rognoni 3 -0110100 Cotner 3 -0110100 Gardineer 3 -0110100 Pennetta 3 -0110100 Kingland 3 -0110100 Kleczka 3 -0110100 DuCharme 3 -0110100 Sharf 3 -0110100 Hawe 3 -0110100 Bunair 3 -0110100 Bohannon 3 -0110100 Klobucher 3 -0110100 Londen 3 -0110100 Sichel 3 -0110100 Zimits 3 -0110100 Skislock 3 -0110100 Holstrom 3 -0110100 Bans 3 -0110100 Krickstein 3 -0110100 Symonds 3 -0110100 Takemitsu 3 -0110100 Beckmeier 3 -0110100 Raiken 3 -0110100 Bertoli 3 -0110100 Gunji 3 -0110100 Soederstroem 3 -0110100 Stoner 3 -0110100 Molis 3 -0110100 Rentzler 3 -0110100 Stice 3 -0110100 Happel 3 -0110100 Naegeli 3 -0110100 Rumbold 3 -0110100 Plaut 3 -0110100 Reider 3 -0110100 Lysenko 3 -0110100 Carley 3 -0110100 Kael 3 -0110100 Poste 3 -0110100 Wiesler 3 -0110100 Dorskind 3 -0110100 Lubsen 3 -0110100 Toor 3 -0110100 Lupachev 3 -0110100 Graven 3 -0110100 Gendron 3 -0110100 Arcari 3 -0110100 Cashel 3 -0110100 Zedda 3 -0110100 Mrozinski 3 -0110100 Verey 3 -0110100 Gramlich 3 -0110100 Gabelman 3 -0110100 Galati 3 -0110100 Corpening 3 -0110100 Putzel 3 -0110100 Baab 3 -0110100 Schaeberle 3 -0110100 Kuegler 3 -0110100 Pastan 3 -0110100 Yagi 3 -0110100 Apted 3 -0110100 Cuatrecasas 3 -0110100 Devendorf 3 -0110100 Granatelli 3 -0110100 Laro 3 -0110100 Socolar 3 -0110100 Birss 3 -0110100 Girsky 3 -0110100 Posados 3 -0110100 Chavanes 3 -0110100 Gaillard 3 -0110100 Demichev 3 -0110100 Hirschtritt 3 -0110100 Zbesko 3 -0110100 Cothern 3 -0110100 Mazzola 3 -0110100 Gillen 3 -0110100 Sarnecki 3 -0110100 Iwashita 3 -0110100 Nyuka 3 -0110100 Vasenkov 3 -0110100 Joiner 3 -0110100 Achacoso 3 -0110100 Mannis 3 -0110100 Dzavahishvili 3 -0110100 Breezley 3 -0110100 Kowaloff 3 -0110100 Diedrich 3 -0110100 Berents 3 -0110100 Hyler 3 -0110100 Scofield 3 -0110100 Japhet 3 -0110100 Dressler 3 -0110100 Ozaru 3 -0110100 Fiori 3 -0110100 Veron 3 -0110100 Mondolino 3 -0110100 Mathiasen 3 -0110100 Kliger 3 -0110100 LaRocca 3 -0110100 Carona 3 -0110100 Mihan 3 -0110100 Jourdan 3 -0110100 Cupp 3 -0110100 Ikuta 3 -0110100 Resor 3 -0110100 Ablon 3 -0110100 Beryari 3 -0110100 Buckhout 3 -0110100 Buschman 3 -0110100 Grabowski 3 -0110100 Sponholz 3 -0110100 Kaspar-Ansermet 3 -0110100 Lucchino 3 -0110100 Chernin 3 -0110100 Dizard 3 -0110100 Koppes 3 -0110100 Becerra 3 -0110100 Corbo 3 -0110100 Silsby 3 -0110100 Ninal 3 -0110100 Raywid 3 -0110100 Syiem 3 -0110100 Mwanja 3 -0110100 Collum 3 -0110100 Dudek 3 -0110100 Eveillard 3 -0110100 Karrenberg 3 -0110100 Weschler 3 -0110100 Bramblett 3 -0110100 Sondker 3 -0110100 Silfen 3 -0110100 Pieper 3 -0110100 Iger 3 -0110100 Kellard 3 -0110100 Rove 3 -0110100 Malewezi 3 -0110100 Peppet 3 -0110100 Colotti 3 -0110100 Devellano 3 -0110100 Wolfer 3 -0110100 Umana 3 -0110100 Relph 3 -0110100 Tiedemann 3 -0110100 Jedlicka 3 -0110100 Mabry 3 -0110100 Orlowski 3 -0110100 Concheo 3 -0110100 Mirken 3 -0110100 Christoffersen 3 -0110100 Benanav 3 -0110100 Saunder 3 -0110100 Franses 3 -0110100 Coppenrath 3 -0110100 Rusch 3 -0110100 Stenhach 3 -0110100 Jontz 3 -0110100 Colloff 3 -0110100 Thorburn 3 -0110100 Hungate 3 -0110100 Imle 3 -0110100 Zemke 3 -0110100 Jeffs 3 -0110100 Addabbo 3 -0110100 Adomeit 3 -0110100 Bugher 3 -0110100 Zimet 3 -0110100 Cameron-Moore 3 -0110100 Cheen 3 -0110100 Grunsten 3 -0110100 Bellomy 3 -0110100 Derieg 3 -0110100 Strzemien 3 -0110100 Alard 3 -0110100 Serlen 3 -0110100 Zeccardi 3 -0110100 Selland 3 -0110100 Chollet 3 -0110100 Senstad 3 -0110100 Quartel 3 -0110100 Kopfle 3 -0110100 Bauch 3 -0110100 Spencer-Crow 3 -0110100 Gedeon 3 -0110100 Leard 3 -0110100 Kolko 3 -0110100 Nowell 3 -0110100 Borzenkov 3 -0110100 Maanen 3 -0110100 Lewnes 3 -0110100 Piette 3 -0110100 Sutlive 3 -0110100 Slota 3 -0110100 Sauers 3 -0110100 Bisnow 3 -0110100 Il-Sung 3 -0110100 Makris 3 -0110100 Caden 3 -0110100 LaRusso 3 -0110100 Semmelman 3 -0110100 Casazza 3 -0110100 Ricciardelli 3 -0110100 Kwiat 3 -0110100 Andoni 3 -0110100 Angen 3 -0110100 Casadei 3 -0110100 Truzzolino 3 -0110100 Mison 3 -0110100 Davalou 3 -0110100 DePetrillo 3 -0110100 Utsumi 3 -0110100 Bergold 3 -0110100 Hoshino 3 -0110100 Roeck 3 -0110100 Borovikov 3 -0110100 Sugiura 3 -0110100 Marangakis 3 -0110100 Brendler 3 -0110100 Mintzer 3 -0110100 Reethof 3 -0110100 Alcocer 3 -0110100 Rossler 3 -0110100 Spruill 3 -0110100 Deily 3 -0110100 Fujinami 3 -0110100 Bickerdike 3 -0110100 Carsey 3 -0110100 Thunman 3 -0110100 Margol 3 -0110100 Hatsopoulos 3 -0110100 Peery 3 -0110100 Thorson 3 -0110100 Richier 3 -0110100 Stricharchuk 3 -0110100 Boullianne 3 -0110100 Santaniello 3 -0110100 Zax 3 -0110100 Joxe 3 -0110100 Diskin 3 -0110100 Wambugu 3 -0110100 Gehlsen 3 -0110100 Bastanzio 3 -0110100 Cantoral 3 -0110100 Mauer 3 -0110100 Bertetta 3 -0110100 Everaert 3 -0110100 Hodakowski 3 -0110100 Likins 3 -0110100 Barmeyer 3 -0110100 Fuino 3 -0110100 Snadon 3 -0110100 Cartellieri 3 -0110100 Minna 3 -0110100 DelliBovi 3 -0110100 Kaltenbach 3 -0110100 Mallamo 3 -0110100 Iaconis 3 -0110100 Scanlan 3 -0110100 Eskow 3 -0110100 Sotil 3 -0110100 Ohsumi 3 -0110100 Crutsinger 3 -0110100 Fowlkes 3 -0110100 Quintanar 3 -0110100 Russoniello 3 -0110100 Tollett 3 -0110100 Tuggle 3 -0110100 Dimsey 3 -0110100 Boisseau 3 -0110100 Feinblum 3 -0110100 McGimsey 3 -0110100 Auston 3 -0110100 Abbotts 3 -0110100 Reiniger 3 -0110100 Falley 3 -0110100 Bechet 3 -0110100 Viglietta 3 -0110100 Caccia 3 -0110100 Tsujimoto 3 -0110100 Hantho 3 -0110100 Mazin 3 -0110100 Gierek 3 -0110100 Agnich 3 -0110100 Werring 3 -0110100 Hippeau 3 -0110100 Arras 3 -0110100 Averintzev 3 -0110100 Repa 3 -0110100 Heffern 3 -0110100 Papiers 3 -0110100 Curless 3 -0110100 Prosser 3 -0110100 Kriendler 3 -0110100 Bruhwiler 3 -0110100 Pistner 3 -0110100 Ahlstedt 3 -0110100 Guidoboni 3 -0110100 Mozer 3 -0110100 Stofflet 3 -0110100 Avar 3 -0110100 Matloug 3 -0110100 Szirtes 3 -0110100 Orgel 3 -0110100 Bian 3 -0110100 Borstel 3 -0110100 Birchall 3 -0110100 Hultin 3 -0110100 Fauls 3 -0110100 Pauly 3 -0110100 Saltman 3 -0110100 Karnbach 3 -0110100 Devanney 3 -0110100 Haspeslagh 3 -0110100 Paysen 3 -0110100 Burzenski 3 -0110100 Kasui 3 -0110100 McCrackin 3 -0110100 Ohkawa 3 -0110100 Gawthrop 3 -0110100 McNees 3 -0110100 Matzke 3 -0110100 Bierich 3 -0110100 Marchica 3 -0110100 Fonte 3 -0110100 Hochfelder 3 -0110100 Morrisroe 3 -0110100 Kane-Berman 3 -0110100 Hirl 3 -0110100 Hebner 3 -0110100 Guadiana 3 -0110100 Plickert 3 -0110100 Wolowitz 3 -0110100 Luepke 3 -0110100 Foxman 3 -0110100 Critchfield 3 -0110100 Bellum 3 -0110100 Obester 3 -0110100 Inose 3 -0110100 Wilgermein 3 -0110100 Kowtowsky 3 -0110100 Gam 3 -0110100 Majewski 3 -0110100 Crigler 3 -0110100 Kasowitz 3 -0110100 Gershman 3 -0110100 Zehner 3 -0110100 Sasic 3 -0110100 Bollerman 3 -0110100 Kuehn 3 -0110100 Torchia 3 -0110100 Strawbrich 3 -0110100 Natelson 3 -0110100 Lemberg 3 -0110100 Favalli 3 -0110100 Ohtani 3 -0110100 Sarraille 3 -0110100 Savitske 3 -0110100 Beja 3 -0110100 MacHale 3 -0110100 Malys 3 -0110100 Auerbacher 3 -0110100 Sula 3 -0110100 Tunks 3 -0110100 McGruther 3 -0110100 Zurkowski 3 -0110100 Selck 3 -0110100 Dockstader 3 -0110100 Harshegyi 3 -0110100 McKellen 3 -0110100 Frierson 3 -0110100 Orlow 3 -0110100 Rubinoff 3 -0110100 Selbert 3 -0110100 Sztykiel 3 -0110100 Beakes 3 -0110100 McLamore 3 -0110100 Royall 3 -0110100 Fillingham 3 -0110100 Mittermeier 3 -0110100 Klosterman 3 -0110100 Hessol 3 -0110100 Stump 3 -0110100 Troth 3 -0110100 Bloem 3 -0110100 Oestreicher 3 -0110100 Hepher 3 -0110100 McCarey 3 -0110100 Fahti 3 -0110100 Sampras 3 -0110100 Partin 3 -0110100 Newsham 3 -0110100 Kigoye 3 -0110100 Maccoby 3 -0110100 Radlick 3 -0110100 Merino 3 -0110100 Granath 3 -0110100 Tapie 3 -0110100 Stange 3 -0110100 Laffont 3 -0110100 Arbeloff 3 -0110100 Haase 3 -0110100 Aviad 3 -0110100 Yonce 3 -0110100 Tatz 3 -0110100 Samela 3 -0110100 McCready 3 -0110100 Spena 3 -0110100 Linehan 3 -0110100 Cress 3 -0110100 Husten 3 -0110100 Andreevna 3 -0110100 Nachbar 3 -0110100 Tuz 3 -0110100 Dacy 3 -0110100 Gleick 3 -0110100 Kinsch 3 -0110100 Wigley 3 -0110100 Vieto 3 -0110100 Snearly 3 -0110100 McKoy 3 -0110100 Santacana 3 -0110100 Ponski 3 -0110100 Luxon 3 -0110100 Osser 3 -0110100 Begg 3 -0110100 Prothro 3 -0110100 Priddy 3 -0110100 Croom 3 -0110100 Sataka 3 -0110100 Lakoff 3 -0110100 Cronk 3 -0110100 Friedell 3 -0110100 Starostecki 3 -0110100 Lindston 3 -0110100 Riepl 3 -0110100 Persaud 3 -0110100 Krishock 3 -0110100 Withington 3 -0110100 Valpine 3 -0110100 Douce 3 -0110100 Beary 3 -0110100 Barnils 3 -0110100 Gaspar 4 -0110100 Hellauer 4 -0110100 Bowa 4 -0110100 Niefer 4 -0110100 Uehlein 4 -0110100 Walentas 4 -0110100 Playford 4 -0110100 Raptapoulos 4 -0110100 Kossler 4 -0110100 Bialer 4 -0110100 Wolas 4 -0110100 Entrekin 4 -0110100 Foulds 4 -0110100 Collichio 4 -0110100 McColm 4 -0110100 Richardot 4 -0110100 Brustad 4 -0110100 Parz 4 -0110100 Masloff 4 -0110100 DiPaolo 4 -0110100 Ehlers 4 -0110100 Trezise 4 -0110100 Strandberg 4 -0110100 Rayden 4 -0110100 Puritano 4 -0110100 Smalz 4 -0110100 Sagdeev 4 -0110100 Vassiltchikov 4 -0110100 Zeikel 4 -0110100 Ponn 4 -0110100 Shatner 4 -0110100 Goolsby 4 -0110100 Boiardo 4 -0110100 Gorog 4 -0110100 Buerger 4 -0110100 Fitz-Gerald 4 -0110100 Cindi 4 -0110100 Carrus 4 -0110100 Pangia 4 -0110100 Fahen 4 -0110100 Glaister 4 -0110100 Eraiba 4 -0110100 Toso 4 -0110100 Oestericher 4 -0110100 Minogue 4 -0110100 Boddicker 4 -0110100 Costantini 4 -0110100 Pook 4 -0110100 Peden 4 -0110100 Hubacher 4 -0110100 Hertzfeld 4 -0110100 Lakner 4 -0110100 Vanegas 4 -0110100 Zuckert 4 -0110100 Callebaut 4 -0110100 Roarty 4 -0110100 Sikkema 4 -0110100 Bahcall 4 -0110100 Dryomov 4 -0110100 Durliat 4 -0110100 Radecki 4 -0110100 Bellet 4 -0110100 Piccolo 4 -0110100 Dekanosidze 4 -0110100 Ek 4 -0110100 Kleinmaier 4 -0110100 Sinsheimer 4 -0110100 Niedermeyer 4 -0110100 Dorton 4 -0110100 Grinstein 4 -0110100 Sturgess 4 -0110100 Lazarchic 4 -0110100 Bersticker 4 -0110100 Calio 4 -0110100 Crewe 4 -0110100 Fain 4 -0110100 Mesquita 4 -0110100 Moretti 4 -0110100 Morser 4 -0110100 Berthelot 4 -0110100 Smirnov 4 -0110100 Carrillo 4 -0110100 Watari 4 -0110100 Ancinec 4 -0110100 Stebbins 4 -0110100 Goldbergh 4 -0110100 Volodarsky 4 -0110100 Magdalene 4 -0110100 Gerrell 4 -0110100 Bozer 4 -0110100 Gilly 4 -0110100 Stankovsky 4 -0110100 Zamba 4 -0110100 Muoio 4 -0110100 Nicoll 4 -0110100 Graglia 4 -0110100 Gremm 4 -0110100 Obuchi 4 -0110100 Holzach 4 -0110100 Brosterman 4 -0110100 Czarnecki 4 -0110100 Khazei 4 -0110100 Soeda 4 -0110100 Scanu 4 -0110100 Crabs 4 -0110100 Birdwell 4 -0110100 Massco 4 -0110100 Nageotte 4 -0110100 Dayak 4 -0110100 Kaner 4 -0110100 Uchimoto 4 -0110100 Andretta 4 -0110100 Ender 4 -0110100 Hlava 4 -0110100 Thiele 4 -0110100 Santalla 4 -0110100 Cohodes 4 -0110100 Dunsmore 4 -0110100 Mallender 4 -0110100 Eichorn 4 -0110100 Kohonen 4 -0110100 Ferrill 4 -0110100 Busacca 4 -0110100 Kleiber 4 -0110100 Wille 4 -0110100 Jioia 4 -0110100 Barram 4 -0110100 Delchet 4 -0110100 Teskey 4 -0110100 Freitas 4 -0110100 Palapa 4 -0110100 Hubner 4 -0110100 Angarola 4 -0110100 Suratos 4 -0110100 Elling 4 -0110100 Zafutto 4 -0110100 Lamoureux 4 -0110100 Trespalacios 4 -0110100 Mahrlig 4 -0110100 Paboojian 4 -0110100 Serfin 4 -0110100 Polaski 4 -0110100 Forshaw 4 -0110100 Egender 4 -0110100 Chadwell 4 -0110100 Camarena 4 -0110100 Zain 4 -0110100 Sanda 4 -0110100 Kemnitzer 4 -0110100 Lemp 4 -0110100 el-Sherif 4 -0110100 Leder 4 -0110100 Asoyan 4 -0110100 Wilcox-Smith 4 -0110100 Hilty 4 -0110100 Kloppenburg 4 -0110100 Musson 4 -0110100 Kuflik 4 -0110100 Sancken 4 -0110100 Tajes 4 -0110100 Sykora 4 -0110100 Akutsu 4 -0110100 Palladino 4 -0110100 Aransky 4 -0110100 Yokoya 4 -0110100 Anderman 4 -0110100 Bohringer 4 -0110100 Darraji 4 -0110100 Walczak 4 -0110100 Tessier 4 -0110100 Masaki 4 -0110100 Brender 4 -0110100 Morizumi 4 -0110100 Niehenke 4 -0110100 Treene 4 -0110100 Kamerschen 4 -0110100 Salvani 4 -0110100 Wimbush 4 -0110100 Jaquet 4 -0110100 Mammi 4 -0110100 Legvold 4 -0110100 Birkhead 4 -0110100 Ridenour 4 -0110100 Civello 4 -0110100 Timerbaev 4 -0110100 Argyropolous 4 -0110100 Leifer 4 -0110100 Monjan 4 -0110100 Philport 4 -0110100 Janasik 4 -0110100 Patriarca 4 -0110100 Inagaki 4 -0110100 Milano-Tedeschi 4 -0110100 Qahaar 4 -0110100 Solberg 4 -0110100 Salgado 4 -0110100 Trainin 4 -0110100 Mosley 4 -0110100 Steere 4 -0110100 Ohsone 4 -0110100 Parini 4 -0110100 Mol 4 -0110100 Harlow 4 -0110100 Motyl 4 -0110100 Menikoff 4 -0110100 Hefti 4 -0110100 Cannata 4 -0110100 Neuber 4 -0110100 Agazadeh 4 -0110100 Wambold 4 -0110100 Menton 4 -0110100 Neisler 4 -0110100 Sheresky 4 -0110100 Tiritilli 4 -0110100 Buttenwieser 4 -0110100 Bruchs 4 -0110100 Holum 4 -0110100 Sowers 4 -0110100 Schmiege 4 -0110100 Schatzow 4 -0110100 Wegner 4 -0110100 Kravetz 4 -0110100 Frigon 4 -0110100 Waltuch 4 -0110100 Biel 4 -0110100 Scherzer 4 -0110100 Collet 4 -0110100 Emorey 4 -0110100 Nacht 4 -0110100 Galvan 4 -0110100 Muszinski 4 -0110100 Orman 4 -0110100 Buswell 4 -0110100 Grantz 4 -0110100 Friedman-Kien 4 -0110100 Gamberoni 4 -0110100 Rode 4 -0110100 Greenleaf 4 -0110100 Eischen 4 -0110100 Zdobylak 4 -0110100 Merin 4 -0110100 Fodiman 4 -0110100 Caruthers 4 -0110100 Dyment 4 -0110100 Musto 4 -0110100 Alderete 4 -0110100 Yngve 4 -0110100 Trendquest 4 -0110100 Spann 4 -0110100 Kirkwood 4 -0110100 Giardina 4 -0110100 Steitz 4 -0110100 Exstein 4 -0110100 Franson 4 -0110100 Hawkey 4 -0110100 Dumais 4 -0110100 Lein 4 -0110100 Spada 4 -0110100 Shafton 4 -0110100 Perdomo 4 -0110100 Prabhakaran 4 -0110100 Freeley 4 -0110100 Werstiuk 4 -0110100 Quy 4 -0110100 Klinkenborg 4 -0110100 Gilbertson 4 -0110100 Salcines 4 -0110100 Gomulka 4 -0110100 Rotko 4 -0110100 Neubronner 4 -0110100 Palen 4 -0110100 Opp 4 -0110100 Sadowski 4 -0110100 Smeal 4 -0110100 Schochetman 4 -0110100 DeLay 4 -0110100 Buermann 4 -0110100 Milleson 4 -0110100 Travanti 4 -0110100 Haspelslagh 4 -0110100 Cardamone 4 -0110100 Picadio 4 -0110100 Rousso 4 -0110100 Barsukov 4 -0110100 Goncalves 4 -0110100 Holsinger 4 -0110100 Guedes 4 -0110100 Edwardes 4 -0110100 Tooke 4 -0110100 DiCamillo 4 -0110100 Tabacco 4 -0110100 Dreiser 4 -0110100 Naranjo 4 -0110100 Stoppelman 4 -0110100 Nespole 4 -0110100 Garstin 4 -0110100 Dand 4 -0110100 Frenze 4 -0110100 Schabowski 4 -0110100 Mani 4 -0110100 Parakh 4 -0110100 Birge 4 -0110100 Simonin 4 -0110100 Fanjul 4 -0110100 Woomer 4 -0110100 Lupien 4 -0110100 Antillon 4 -0110100 Maloof 4 -0110100 Meinke 4 -0110100 Scurry 4 -0110100 Oldaker 4 -0110100 Hariri 4 -0110100 Teer 4 -0110100 Ludlam 4 -0110100 Wellings 4 -0110100 Leben 4 -0110100 Butera 4 -0110100 Scheffler 4 -0110100 Larkum 4 -0110100 Tutwiler 4 -0110100 Kolman 4 -0110100 Brosnahan 4 -0110100 DeGarmo 4 -0110100 Abusada 4 -0110100 Geld 4 -0110100 Boesch 4 -0110100 Vusse 4 -0110100 Badore 4 -0110100 Eberly 4 -0110100 Kantrowitz 4 -0110100 Lecomte 4 -0110100 Lubkin 4 -0110100 Cribiore 4 -0110100 Bassick 4 -0110100 Chump 4 -0110100 BeSore 4 -0110100 Tarvid 4 -0110100 Mastroianni 4 -0110100 McNeice 4 -0110100 Holland-Bosworth 4 -0110100 Brantley 4 -0110100 Dierks 4 -0110100 Whilden 4 -0110100 Saegusa 4 -0110100 Vasilakos 4 -0110100 Berglass 4 -0110100 Riffer 4 -0110100 LaSala 4 -0110100 Bronzino 4 -0110100 Dobi 4 -0110100 Thieriot 4 -0110100 Costley 4 -0110100 Haayen 4 -0110100 Bonomo 4 -0110100 Chitwood 4 -0110100 Wellens 4 -0110100 Falconi 4 -0110100 Czernek 4 -0110100 Battat 4 -0110100 Holzberg 4 -0110100 Saylor 4 -0110100 Fuoss 4 -0110100 Aho 4 -0110100 Tchegodar 4 -0110100 Rodionov 4 -0110100 Rolston 4 -0110100 Spitalny 4 -0110100 Mugge 4 -0110100 Kincannon 4 -0110100 Motz 4 -0110100 Sansing 4 -0110100 Debevic 4 -0110100 Cusumano 4 -0110100 Garoutte 4 -0110100 Fosler 4 -0110100 Shioji 4 -0110100 Scheerer 4 -0110100 Eurich 4 -0110100 Dorris 4 -0110100 Sinner 4 -0110100 Danks 4 -0110100 Tarlov 4 -0110100 Grillo 4 -0110100 Capron 4 -0110100 Celusta 4 -0110100 Moscahlaides 4 -0110100 Slesin 4 -0110100 Toepke 4 -0110100 Pinckney 4 -0110100 Renyi 4 -0110100 Tomsick 4 -0110100 Kolbin 4 -0110100 Chowdhury 4 -0110100 Vandeman 4 -0110100 Getman 4 -0110100 Havlin 4 -0110100 Kuehne 4 -0110100 Haskayne 4 -0110100 Kermes 4 -0110100 Asperger 4 -0110100 Scharf 4 -0110100 Baldridge 4 -0110100 Tinling 4 -0110100 Geczy 4 -0110100 Strumpf 4 -0110100 Pazner 4 -0110100 Summergrad 4 -0110100 Bleck 4 -0110100 Sabeg 4 -0110100 Beniamina 4 -0110100 Felrice 4 -0110100 Penzias 4 -0110100 Aslami 4 -0110100 Easterling 4 -0110100 Frent 4 -0110100 Dragalin 4 -0110100 Friedan 4 -0110100 Kellum 4 -0110100 Greif 4 -0110100 Baladi 4 -0110100 McCubbin 4 -0110100 Hoysted 4 -0110100 Forbuss 4 -0110100 Rehberg 4 -0110100 Doban 4 -0110100 Seid 4 -0110100 DuBoff 4 -0110100 Coggins 4 -0110100 Roosa 4 -0110100 Horvath 4 -0110100 Collura 4 -0110100 Kocab 4 -0110100 Casdan 4 -0110100 Skillion 4 -0110100 Harsanyi 4 -0110100 Lutes 4 -0110100 Janzon 4 -0110100 Hurwitt 4 -0110100 Denda 4 -0110100 Boonstra 4 -0110100 Saccente 4 -0110100 Fouhy 4 -0110100 Zietoun 4 -0110100 Segawa 4 -0110100 Matalon 4 -0110100 Schuring 4 -0110100 Ishioka 4 -0110100 Heffron 4 -0110100 Krive 4 -0110100 Hangartner 4 -0110100 Rubinfien 4 -0110100 Orstrander 4 -0110100 Backstrom 4 -0110100 Schulhof 4 -0110100 Ahearn 4 -0110100 Alcaino 4 -0110100 Linklater 4 -0110100 Bajec 4 -0110100 Grimsrud 4 -0110100 Bottrell 4 -0110100 Zipkin 4 -0110100 Pevy 4 -0110100 Dicker 4 -0110100 Rideout 4 -0110100 Nothaft 4 -0110100 Mosky 4 -0110100 Coller 4 -0110100 Folques 4 -0110100 Tillis 4 -0110100 Craigo 4 -0110100 McKennon 4 -0110100 Malpede 4 -0110100 Chabner 4 -0110100 Saltmarsh 4 -0110100 Didion 4 -0110100 Bek-Nielsen 4 -0110100 Campion 4 -0110100 Studeman 4 -0110100 Kat 4 -0110100 Littman 4 -0110100 Beban 4 -0110100 Mesko 4 -0110100 Gonson 4 -0110100 Dolgen 4 -0110100 Sugiyama 4 -0110100 Kiple 4 -0110100 Scheinkman 4 -0110100 Faxon 4 -0110100 Maillet 4 -0110100 Kronfeld 4 -0110100 Schonfeld 4 -0110100 St-Hippolyte 4 -0110100 Kessman 4 -0110100 Jestin 4 -0110100 Seigle 4 -0110100 Shlensky 4 -0110100 Attwood 4 -0110100 Corgan 4 -0110100 Hitschler 4 -0110100 Ottenberg 4 -0110100 Greenfeld 4 -0110100 Lakin 4 -0110100 Bucklin 4 -0110100 Riddles 4 -0110100 Blendon 4 -0110100 Doumar 4 -0110100 Lindeman 4 -0110100 Yukimura 4 -0110100 Porten 4 -0110100 Newfield 4 -0110100 Luniewicz 4 -0110100 Maddy 4 -0110100 Frum 4 -0110100 Gozon 4 -0110100 Nathe 4 -0110100 Coppe 4 -0110100 Gidmark 4 -0110100 Fanelli 4 -0110100 Rosson 4 -0110100 Krass 4 -0110100 Schiebel 4 -0110100 Kubuabola 4 -0110100 Derow 4 -0110100 Kosnik 4 -0110100 Blecher 4 -0110100 Zmaila 4 -0110100 Ornitz 4 -0110100 Mastrantonio 4 -0110100 Starobin 4 -0110100 Greayer 4 -0110100 Eppley 4 -0110100 DeLeonardis 4 -0110100 Lesutis 4 -0110100 Johannesen 4 -0110100 Bjornson 4 -0110100 Allender 4 -0110100 Skaperdas 4 -0110100 Geckler 4 -0110100 Groner 4 -0110100 Lappin 4 -0110100 Porterfield 4 -0110100 Potapovs 4 -0110100 Diefenbach 4 -0110100 Collender 4 -0110100 Gibb 4 -0110100 Kafaroff 4 -0110100 Ellingson 4 -0110100 Renneker 4 -0110100 Luven 4 -0110100 Simpkins 4 -0110100 Niarchos 4 -0110100 Whittingham 4 -0110100 Riesenberg 4 -0110100 Hillbery 4 -0110100 Baulieu 4 -0110100 Willenson 4 -0110100 Sitnikov 4 -0110100 Groome 4 -0110100 Keesee 4 -0110100 Hasson 4 -0110100 Kamiyama 4 -0110100 Ferrey 4 -0110100 Rossan 4 -0110100 Hultgren 4 -0110100 Maruoka 4 -0110100 Ridder 4 -0110100 Wilmot-Sitwell 4 -0110100 Sadik 4 -0110100 Jouris 4 -0110100 Moschis 4 -0110100 Koskinen 4 -0110100 Laken 4 -0110100 Mathey 4 -0110100 Molasky 4 -0110100 Roen 4 -0110100 Landesmann 4 -0110100 Hitt 4 -0110100 Zabludovsky 4 -0110100 Padfield 4 -0110100 Bernick 4 -0110100 Easdon 4 -0110100 Gingl 4 -0110100 Buckwash 4 -0110100 Schorling 4 -0110100 Nankivell 4 -0110100 Pross 4 -0110100 Refsum 4 -0110100 Footer 4 -0110100 Cazalot 4 -0110100 Twitchell 4 -0110100 Argenti 4 -0110100 Kammen 4 -0110100 Fedorova 4 -0110100 Fiorentino 4 -0110100 Maclellan 4 -0110100 Jauchler 4 -0110100 Lavoie 4 -0110100 Jachimczyk 4 -0110100 Kremenic 4 -0110100 Searby 4 -0110100 Bunzel 4 -0110100 Lapautre 4 -0110100 Doerflinger 4 -0110100 Sbrilli 4 -0110100 Maiorani 4 -0110100 Nozawa 4 -0110100 Maddever 4 -0110100 McKelvey 4 -0110100 Caporale 4 -0110100 Dektor 4 -0110100 Esquivel 4 -0110100 Lagace 4 -0110100 Bogusz 4 -0110100 Limin 4 -0110100 Ellin 4 -0110100 DaCosta 4 -0110100 Kopetz-Korf 4 -0110100 Garbett 4 -0110100 Palatucci 4 -0110100 Blackmer 4 -0110100 Hergesheimer 4 -0110100 Honeycutt 4 -0110100 Nishiyama 4 -0110100 Lail 4 -0110100 DiPrete 4 -0110100 Brauer 4 -0110100 Denahan 4 -0110100 Gallitano 4 -0110100 Tocco 4 -0110100 Albino 4 -0110100 Delson 4 -0110100 Fortino 4 -0110100 Giacoponello 4 -0110100 Penhoet 4 -0110100 Galambos 4 -0110100 Pelt 4 -0110100 Wrangham 4 -0110100 Rynne 4 -0110100 Surigao 4 -0110100 Galnoor 4 -0110100 Juliber 4 -0110100 Biamonti 4 -0110100 Brookmeyer 4 -0110100 Schwander 4 -0110100 Cornett 4 -0110100 Bogdanov 4 -0110100 Meacham 4 -0110100 Stavrou 4 -0110100 Rydbeck 4 -0110100 Axinn 4 -0110100 Savary 4 -0110100 Birckhead 4 -0110100 Arboleda 4 -0110100 Therrien 4 -0110100 Aibel 4 -0110100 Reum 4 -0110100 Waldenstrom 4 -0110100 Worsthorne 4 -0110100 Schofield 4 -0110100 Flament 4 -0110100 Dreifuss 4 -0110100 McAleer 4 -0110100 Mechner 4 -0110100 Kreisberg 4 -0110100 Owen-Jones 4 -0110100 Schoenwald 4 -0110100 Weichern 4 -0110100 Yarbro 4 -0110100 Onda 4 -0110100 Feigin 4 -0110100 Klitten 4 -0110100 Tills 4 -0110100 Poitras 4 -0110100 Kinkel 4 -0110100 al-Hassenein 4 -0110100 McNitt 4 -0110100 Klipper 4 -0110100 Montanari 4 -0110100 Florini 4 -0110100 Poxon 4 -0110100 MacCrimmon 4 -0110100 Schlelein 4 -0110100 Lineberry 4 -0110100 Cantatore 4 -0110100 LeChasney 4 -0110100 Greenfield-Sanders 4 -0110100 Witz 4 -0110100 Solms 4 -0110100 Kopkind 4 -0110100 Soussan 4 -0110100 Roenisch 4 -0110100 Smithies 4 -0110100 Heald 4 -0110100 Hempleman 4 -0110100 Qureshey 4 -0110100 Kusunoki 4 -0110100 Souter 4 -0110100 Silverglade 4 -0110100 Piontek 4 -0110100 Marot 4 -0110100 Loat 4 -0110100 Glahn 4 -0110100 Mueller-Krumholz 4 -0110100 Karczmar 4 -0110100 Piqueras 4 -0110100 Itzkowitz 4 -0110100 Kimmerle 4 -0110100 Souther 4 -0110100 Saah 4 -0110100 Kovel 4 -0110100 Afman 4 -0110100 Pasant 4 -0110100 Kushner 4 -0110100 Hutter 4 -0110100 Canty 4 -0110100 Bohdan 4 -0110100 Nogami 4 -0110100 Premji 4 -0110100 Luter 4 -0110100 Wasden 4 -0110100 Saltser 4 -0110100 Feynman 4 -0110100 Wiatt 4 -0110100 Michaque 4 -0110100 Dzierski 4 -0110100 Selin 4 -0110100 Hattrick 4 -0110100 Arquette 4 -0110100 Stoermer 4 -0110100 Pavelchak 4 -0110100 Sekiguchi 4 -0110100 Smallwood 4 -0110100 Braver 4 -0110100 Hosokawa 4 -0110100 Shipp 4 -0110100 Burchuladze 4 -0110100 Shiratori 4 -0110100 Zrnic 4 -0110100 Hulick 4 -0110100 LeVine 4 -0110100 Ranyada 4 -0110100 Mauder 4 -0110100 Parrott 4 -0110100 Gantry 4 -0110100 Najm 4 -0110100 Debban 4 -0110100 Ledwig 4 -0110100 Gousseland 4 -0110100 Papitto 4 -0110100 Croizat 4 -0110100 Abdo 4 -0110100 Lichtenberger 4 -0110100 Uecker 4 -0110100 Seim 4 -0110100 Crapo 4 -0110100 Cutchins 4 -0110100 Streit 4 -0110100 Grubmann 4 -0110100 Miyoda 4 -0110100 Heslop 4 -0110100 Lucht 4 -0110100 Orgill 4 -0110100 Enriquez 4 -0110100 Ogaard 4 -0110100 Levick 4 -0110100 Hartzell 4 -0110100 Jarc 4 -0110100 Weimert 4 -0110100 Lempesis 4 -0110100 Hessel 4 -0110100 Rappeport 4 -0110100 Warschawsky 4 -0110100 Kwiker 4 -0110100 Bibi 4 -0110100 Janas 4 -0110100 Martius 4 -0110100 Galardi 4 -0110100 Peddle 4 -0110100 Cuenod 4 -0110100 Zannini 4 -0110100 Fasi 4 -0110100 McQuaide 4 -0110100 Gotwald 4 -0110100 Lagone 4 -0110100 Kryuchkov 4 -0110100 Biryukova 4 -0110100 Dossey 4 -0110100 Mariotte 4 -0110100 Brading 4 -0110100 Motorenwerke 4 -0110100 DeBiase 4 -0110100 Zvereva 4 -0110100 Winik 4 -0110100 Calderwood 4 -0110100 Novembrino 4 -0110100 Mogg 4 -0110100 Roehrig 4 -0110100 Terpetrossian 4 -0110100 Murawski 4 -0110100 Peasback 4 -0110100 Karpoff 4 -0110100 Sudikoff 4 -0110100 Girard-diCarlo 4 -0110100 Laborde 4 -0110100 Merski 4 -0110100 Shundo 4 -0110100 Kamura 4 -0110100 Klodin 4 -0110100 Marsik 4 -0110100 Kontos 4 -0110100 Weisner 4 -0110100 Reddick 4 -0110100 Crellin 4 -0110100 Nemec 4 -0110100 Grigson 4 -0110100 Hoezle 4 -0110100 Cranmer 4 -0110100 Caspary 4 -0110100 Dewlap 4 -0110100 MacMorran 4 -0110100 Finnerty 4 -0110100 Borie 4 -0110100 Tousignant 4 -0110100 Peisinger 4 -0110100 Mawhinney 4 -0110100 Hoberman 4 -0110100 Iwabuchi 4 -0110100 Ibano 4 -0110100 Kitashiro 4 -0110100 Boorn 4 -0110100 Haut 4 -0110100 Fierstein 4 -0110100 Bohrer 4 -0110100 Mody 4 -0110100 Ellman 4 -0110100 McEnany 4 -0110100 Ianzelo 4 -0110100 Nikaido 4 -0110100 Attridge 4 -0110100 Kealy 4 -0110100 Shenefield 4 -0110100 LeBlanc 4 -0110100 Ruffin 4 -0110100 Schreier 4 -0110100 Kitabata 4 -0110100 LaDieu 4 -0110100 Barnhart 4 -0110100 Biscan 4 -0110100 Diago 4 -0110100 Bandara 4 -0110100 Haskovec 4 -0110100 Kuhlenschmidt 4 -0110100 Viggiano 4 -0110100 Ghert 4 -0110100 Choquette 4 -0110100 Lugo 4 -0110100 Tacke 4 -0110100 Zykes 4 -0110100 Kazleman 4 -0110100 Blaich 4 -0110100 Poett 4 -0110100 Baratz 4 -0110100 Trouvain 4 -0110100 Marto 4 -0110100 Bauza 4 -0110100 Bookstein 4 -0110100 McGlotten 4 -0110100 Leuenberger 4 -0110100 Sugano 4 -0110100 Rudakas 4 -0110100 Forrey 4 -0110100 Zrno 4 -0110100 Doane 4 -0110100 Dabysing 4 -0110100 Citrano 4 -0110100 Garlock 4 -0110100 Meli 4 -0110100 Kral 4 -0110100 Wasiak 4 -0110100 Oberdorfer 4 -0110100 Sacerdote 4 -0110100 Glaspie 4 -0110100 Constantini 4 -0110100 Spinosa 4 -0110100 Pelosi 4 -0110100 Slovinsky 4 -0110100 Sivanandan 4 -0110100 Zachem 4 -0110100 NewMyer 4 -0110100 Martson 4 -0110100 Hokanson 4 -0110100 Schoenborn 4 -0110100 Manton 4 -0110100 Bellace 4 -0110100 Marinov 4 -0110100 Werthen 4 -0110100 LeMunyon 4 -0110100 Zaffaroni 4 -0110100 Commoner 4 -0110100 DeMars 4 -0110100 Lutyens 4 -0110100 Aggarwal 4 -0110100 Annable 4 -0110100 Sampsell 4 -0110100 Francfort 4 -0110100 Gaziano 4 -0110100 Shoulson 4 -0110100 Gaviria 4 -0110100 Matte 4 -0110100 Aspatore 4 -0110100 Guerrieri 4 -0110100 Unterseher 4 -0110100 Rumbaut 4 -0110100 Lidz 4 -0110100 Dasburg 4 -0110100 Tortorice 4 -0110100 Akmon 4 -0110100 Leisz 4 -0110100 Cleaves 4 -0110100 Rebholz 4 -0110100 Gillard 4 -0110100 Makinson 4 -0110100 Plinio 4 -0110100 Marcucci 4 -0110100 Brandman 4 -0110100 Masur 4 -0110100 Haitink 4 -0110100 Filisko 4 -0110100 Bernardelli 4 -0110100 Ilizarov 4 -0110100 Knuth 4 -0110100 Reimpell 4 -0110100 Kasahara 4 -0110100 Sosnick 4 -0110100 Delgado 4 -0110100 Schleiff 4 -0110100 Assaykeen 4 -0110100 Pastina 4 -0110100 Avineri 4 -0110100 Rasinski 4 -0110100 Khel 4 -0110100 Yukawa 4 -0110100 Arnwine 4 -0110100 Stickney 4 -0110100 Ruzimatov 4 -0110100 Paras 4 -0110100 Locklear 4 -0110100 Withuhn 4 -0110100 Fruchtenbaum 4 -0110100 Glickert 4 -0110100 Sahakian 4 -0110100 Ukropina 4 -0110100 Dolde 4 -0110100 Pleszczynski 4 -0110100 Ideman 4 -0110100 Landman 4 -0110100 Goshert 4 -0110100 Scullion 4 -0110100 Montle 4 -0110100 Calarco 4 -0110100 Hake 4 -0110100 Sawada 4 -0110100 Dingwall 4 -0110100 Lockman 4 -0110100 Duggan 4 -0110100 Bustos 4 -0110100 Krane 4 -0110100 Scalfaro 4 -0110100 Liszewski 4 -0110100 Swirda 4 -0110100 Sihler 4 -0110100 Surtees 4 -0110100 Shimura 4 -0110100 Publivores 4 -0110100 McLawhorn 4 -0110100 Maytum 4 -0110100 Pinnock 4 -0110100 Maw 4 -0110100 Wageman 4 -0110100 Johnan 4 -0110100 Newitt 4 -0110100 Sebaly 4 -0110100 Zizic 4 -0110100 Dooner 4 -0110100 Kauffmann 4 -0110100 Korotich 4 -0110100 Megargel 4 -0110100 Katzman 4 -0110100 Smegal 4 -0110100 Palombo 4 -0110100 Seely 4 -0110100 Grody 4 -0110100 Szmigielski 4 -0110100 Kindlund 4 -0110100 Omarr 4 -0110100 Messervey 4 -0110100 Seroosh 4 -0110100 Mustin 4 -0110100 Alberty 4 -0110100 Jurjevics 4 -0110100 Corddry 4 -0110100 Alexandrakis 4 -0110100 Corbet 4 -0110100 Sliwinski 4 -0110100 Mihaylo 4 -0110100 Zellars 4 -0110100 Fitzgibbons 4 -0110100 Mellen 4 -0110100 Engstroem 4 -0110100 Viets 4 -0110100 Sharoff 4 -0110100 Moroney 4 -0110100 Benker 4 -0110100 Ballin 4 -0110100 Schlosstein 4 -0110100 Bottome 4 -0110100 Prunhuber 4 -0110100 Fager 4 -0110100 Sepe 4 -0110100 Pala 4 -0110100 Beichman 4 -0110100 Neuman 4 -0110100 Keiser 4 -0110100 Stoddart 4 -0110100 Goudsmit 4 -0110100 Ducharme 4 -0110100 Nolen 4 -0110100 Sehested 4 -0110100 Smit-Kroes 4 -0110100 Siebald 4 -0110100 Duquette 4 -0110100 Ramsden 4 -0110100 Berney 4 -0110100 Thorndyke 4 -0110100 Tooker 4 -0110100 Weisz 4 -0110100 Goldhar 4 -0110100 Gershuny 4 -0110100 Minzer 4 -0110100 Cuff 4 -0110100 Tarnopol 4 -0110100 Narayan 4 -0110100 Tighe 4 -0110100 Katrak 4 -0110100 Jaspin 4 -0110100 Altschul 4 -0110100 Savatiel 4 -0110100 Guasmi 4 -0110100 Desautels 4 -0110100 Koepcke 4 -0110100 Sulam 4 -0110100 Chute 4 -0110100 Blumenkrantz 4 -0110100 Dopp 4 -0110100 Hoak 4 -0110100 Germond 4 -0110100 Schmoke 4 -0110100 Mauroy 4 -0110100 Herberger 4 -0110100 Withycombe 4 -0110100 Goughenour 4 -0110100 Sirangelo 4 -0110100 Hallinan 4 -0110100 Fenster 4 -0110100 Treinish 4 -0110100 Auler 4 -0110100 Jacchia 4 -0110100 Stursberg 4 -0110100 McAbee 4 -0110100 Fentin 4 -0110100 Ousterman 4 -0110100 Gaye 4 -0110100 Buce 4 -0110100 Barbaro 4 -0110100 Garrenton 4 -0110100 Reith 4 -0110100 Einbund 4 -0110100 Wysocki 4 -0110100 Alfano 4 -0110100 Blondski 4 -0110100 Gelder 4 -0110100 Runnette 4 -0110100 Doronila 4 -0110100 Longobardi 4 -0110100 Bhagwati 4 -0110100 Manessis 4 -0110100 Scheinman 4 -0110100 Kapralov 4 -0110100 Vanwort 4 -0110100 Drosdick 4 -0110100 Emmerich 4 -0110100 Shiller 4 -0110100 Hosp 4 -0110100 Castellano 4 -0110100 Kgatitsoe 4 -0110100 Savitz 4 -0110100 Kunstadt 4 -0110100 Fearon 4 -0110100 Zissu 4 -0110100 Colucci 4 -0110100 Miyata 4 -0110100 Gaylin 4 -0110100 LaCava 4 -0110100 Sather 4 -0110100 Toboroff 4 -0110100 Muzzy 4 -0110100 Dionisi 4 -0110100 Zerbino 4 -0110100 Pilliod 4 -0110100 Mamani 4 -0110100 Londish 4 -0110100 Carrizales 4 -0110100 Rajkumar 4 -0110100 Messler 4 -0110100 Moosajee 4 -0110100 Weinman 4 -0110100 Whitt 4 -0110100 Rammler 4 -0110100 Conery 4 -0110100 Stotesbury 4 -0110100 Iaccoca 4 -0110100 Youngdahl 4 -0110100 Toppel 4 -0110100 Flitter 4 -0110100 Waldeck 4 -0110100 Schirano 4 -0110100 Ililonga 4 -0110100 Slowik 4 -0110100 Peovesan 4 -0110100 Norick 4 -0110100 Vazzoler 4 -0110100 Kushell 4 -0110100 Mossavar-Rahmani 4 -0110100 Herbers 4 -0110100 Bradway 4 -0110100 Hauge 4 -0110100 Olmer 4 -0110100 Reiff 4 -0110100 Woodford 4 -0110100 Osterout 4 -0110100 Wieseltier 4 -0110100 Vallen 4 -0110100 Tien 4 -0110100 Pristavkin 4 -0110100 Maia 4 -0110100 Yokel 4 -0110100 Redsell 4 -0110100 McDowall 4 -0110100 Feltus 4 -0110100 Roeder 4 -0110100 Paylan 4 -0110100 Constantinou 4 -0110100 Jacomb 4 -0110100 Steenburgen 4 -0110100 Scitovsky 4 -0110100 Ruttenstein 4 -0110100 Tropin 4 -0110100 Kyriakides 4 -0110100 Halligan 4 -0110100 Ricketts 4 -0110100 Millson 4 -0110100 Lorch 4 -0110100 Probstein 4 -0110100 Furtado 4 -0110100 Heuston 4 -0110100 McElhaney 4 -0110100 Lamalle 4 -0110100 Tindal 4 -0110100 Kosich 4 -0110100 Levett 4 -0110100 Fiebiger 4 -0110100 Armouni 4 -0110100 Nzo 4 -0110100 Mailliard 4 -0110100 Sarayama 4 -0110100 Bernier 4 -0110100 Shelden 4 -0110100 Goranin 4 -0110100 Guay 4 -0110100 Szwed 4 -0110100 Perroton 4 -0110100 Gastineau 4 -0110100 Karloff 4 -0110100 Gabbert 4 -0110100 Nakane 4 -0110100 Codevilla 4 -0110100 Ritch 4 -0110100 Valles 4 -0110100 Jobe 4 -0110100 Starger 4 -0110100 Stato 4 -0110100 Cardew 4 -0110100 Mladen 4 -0110100 Burris 4 -0110100 Yurcak 4 -0110100 Hannam 4 -0110100 Cotting 4 -0110100 Kogan 4 -0110100 Lussier 4 -0110100 Gamarci 4 -0110100 Schu 4 -0110100 DeNora 4 -0110100 Madans 4 -0110100 Lorre 4 -0110100 Dembert 4 -0110100 Travolta 4 -0110100 Dobkin 4 -0110100 Crone 4 -0110100 Truitt 4 -0110100 Wolfowitz 4 -0110100 Mandelstam 4 -0110100 Sakayan 4 -0110100 Milliot 4 -0110100 Preate 4 -0110100 Romanski 4 -0110100 Maruyama 4 -0110100 Steuerle 4 -0110100 McInnes 4 -0110100 Findakly 4 -0110100 Schotter 4 -0110100 Sciepko 4 -0110100 Fraas 4 -0110100 Taishoff 4 -0110100 Rhodus 4 -0110100 Rimsky 4 -0110100 Kitamori 4 -0110100 Guevremont 4 -0110100 Kalms 4 -0110100 Hopley 4 -0110100 Musbach 4 -0110100 Blankinship 4 -0110100 Sias 4 -0110100 Ndlovu 4 -0110100 Paluck 4 -0110100 Marietta/Bendix 4 -0110100 Principe 4 -0110100 Leeson 4 -0110100 Gittes 4 -0110100 Huckaby 4 -0110100 Fasick 4 -0110100 Spatz 4 -0110100 Cutrere 4 -0110100 Shuttlesworth 4 -0110100 Doder 4 -0110100 Labarge 4 -0110100 Kulkosky 4 -0110100 Vuinovich 4 -0110100 Ignatowicz 4 -0110100 Newquist 4 -0110100 Reginato 4 -0110100 Wagenhauser 4 -0110100 Trause 4 -0110100 Legat 4 -0110100 Slyke 4 -0110100 Banuelos 4 -0110100 Nkomo 4 -0110100 Lindroth 4 -0110100 Echols 4 -0110100 LuPone 4 -0110100 Suematsu 4 -0110100 Appleseed 4 -0110100 Kinoshita 4 -0110100 Bundschuh 4 -0110100 Burchfield 4 -0110100 Israelite 4 -0110100 Tarbox 4 -0110100 Lajoie 4 -0110100 Niemeyer 4 -0110100 Fekete 4 -0110100 Kawano 4 -0110100 Nicho 4 -0110100 Nouse 4 -0110100 Arguedas 4 -0110100 Hostetter 4 -0110100 Featherston 4 -0110100 Perko 4 -0110100 Martin-Musumeci 4 -0110100 Herzenberg 4 -0110100 Aler 4 -0110100 Ljungholm 4 -0110100 Saponari 4 -0110100 Rondon 4 -0110100 Acquilino 4 -0110100 Burkhalter 4 -0110100 Lensi 4 -0110100 Bindler 4 -0110100 Kurtzig 4 -0110100 Vasa 4 -0110100 Sandecki 4 -0110100 Trachtenberg 4 -0110100 Belson 4 -0110100 Lucier 4 -0110100 Vasconcellos 4 -0110100 Pillay 4 -0110100 Hulce 4 -0110100 Troelstrup 4 -0110100 Siguler 4 -0110100 Ladra 4 -0110100 Heitner 4 -0110100 Bertman 4 -0110100 Drolet 4 -0110100 Katsale 4 -0110100 Habamura 4 -0110100 Lennick 4 -0110100 Domichi 4 -0110100 Cannon-Brookes 4 -0110100 Girolami 4 -0110100 Macfadden 4 -0110100 Peckford 4 -0110100 Vietor 4 -0110100 Hackstedde 4 -0110100 Moschetto 4 -0110100 Hickson 4 -0110100 Konno 4 -0110100 Burks 4 -0110100 Itakura 4 -0110100 Sengoku 4 -0110100 Martensen 4 -0110100 Kochis 4 -0110100 Decyk 4 -0110100 Yui 4 -0110100 Hamano 4 -0110100 Nahaylo 4 -0110100 Leaseburg 4 -0110100 Kanters 4 -0110100 Karson 4 -0110100 Windon 4 -0110100 Linfante 4 -0110100 Martorelli 4 -0110100 Addams 4 -0110100 Westrate 4 -0110100 Calderaro 4 -0110100 Wurtele 4 -0110100 Danylow 4 -0110100 Bogard 4 -0110100 Kashoggi 4 -0110100 Steffes 4 -0110100 Sackett 4 -0110100 Hruby 4 -0110100 Boucek 4 -0110100 Courtois 4 -0110100 Kovacik 4 -0110100 Radosevich 4 -0110100 Rozema 4 -0110100 Kingsepp 4 -0110100 Pakula 4 -0110100 Halen 4 -0110100 Stitt 4 -0110100 Hensen 4 -0110100 Dahlsen 4 -0110100 Linowitz 4 -0110100 Brogamo 4 -0110100 Celente 4 -0110100 Mino 4 -0110100 Morgenroth 4 -0110100 Leinberger 4 -0110100 Tucci 4 -0110100 Youmans 4 -0110100 Skeddle 4 -0110100 Kirchner 4 -0110100 Osherow 4 -0110100 Thau 4 -0110100 Odening 4 -0110100 Conradie 4 -0110100 Kloten 4 -0110100 Diliberto 4 -0110100 Baldock 4 -0110100 Jamet 4 -0110100 Romanelli 4 -0110100 Keesler 4 -0110100 Asprey 4 -0110100 Spassky 4 -0110100 Strecker 4 -0110100 Lindland 4 -0110100 Bossen 4 -0110100 Schaeuble 4 -0110100 Sehgal 4 -0110100 Kilcullen 4 -0110100 Waltrip 4 -0110100 Mittag 4 -0110100 LeBron 4 -0110100 Rubio 4 -0110100 Karatnycky 4 -0110100 Komansky 4 -0110100 Massot 4 -0110100 Tebaldi 4 -0110100 Deelen 4 -0110100 Gurwara 4 -0110100 Virnich 4 -0110100 Klingenstein 4 -0110100 Pozsgay 4 -0110100 Melley 4 -0110100 Dickerman 4 -0110100 Vollmer 4 -0110100 Shindell 4 -0110100 Spedding 4 -0110100 Halbreich 4 -0110100 Magowan 4 -0110100 McCanna 4 -0110100 Ayala 4 -0110100 Errick 4 -0110100 Dockum 4 -0110100 Karube 4 -0110100 Chanzit 4 -0110100 Bolinder 4 -0110100 Chaikin 4 -0110100 Mejia 4 -0110100 Holien 4 -0110100 Bar-Illan 4 -0110100 Rocourt 4 -0110100 Riedener 4 -0110100 Bucter 4 -0110100 Winograd 4 -0110100 Greyser 4 -0110100 Kozikowski 4 -0110100 Taormina 4 -0110100 Guillemin 4 -0110100 Chibaro 4 -0110100 Wolse 4 -0110100 Stebbings 4 -0110100 Hedberg 4 -0110100 Kikuchi 4 -0110100 Buechner 4 -0110100 Dosik 4 -0110100 Abdie 4 -0110100 Burnette 4 -0110100 Ananashvili 4 -0110100 Haefner 4 -0110100 Cantoni 4 -0110100 Tempero 4 -0110100 Kundruhn 4 -0110100 Coster 4 -0110100 Kuperberg 4 -0110100 Ebinger 4 -0110100 Homan 4 -0110100 Goodes 4 -0110100 Palance 4 -0110100 Dalziel 4 -0110100 Spooner 4 -0110100 Treimann 4 -0110100 Kasarda 4 -0110100 Pinchbeck 4 -0110100 Jinks 4 -0110100 Krenkowitz 4 -0110100 Friel 4 -0110100 Bildsoe 4 -0110100 Kappil 4 -0110100 Carlile 4 -0110100 Bartell 4 -0110100 Bernath 4 -0110100 Naber 4 -0110100 Kerherve 4 -0110100 Schulmann 4 -0110100 Nazal 4 -0110100 Doumani 4 -0110100 Thrall 4 -0110100 Kalin 4 -0110100 Gilpatric 4 -0110100 Silveira 4 -0110100 Riedy 4 -0110100 Pawlik 4 -0110100 Housken 4 -0110100 Fuerer 4 -0110100 Garnel 4 -0110100 Nonella 4 -0110100 Goodsell 4 -0110100 Rundell 4 -0110100 Kloske 4 -0110100 Olmert 4 -0110100 Coplen 4 -0110100 Swails 4 -0110100 Bremer 4 -0110100 Ota 4 -0110100 Posada 4 -0110100 Karamba 4 -0110100 Klenk 4 -0110100 Zambrano 4 -0110100 Bajda 4 -0110100 Ramsdell 4 -0110100 Fourie 4 -0110100 Amhowitz 4 -0110100 Liontas 4 -0110100 Fedor 4 -0110100 Grein 4 -0110100 Engelman 4 -0110100 Pagliuca 4 -0110100 Zemelman 4 -0110100 Gadwani 4 -0110100 Ruoff 4 -0110100 Aglialoro 4 -0110100 Poses 4 -0110100 Hunkin 4 -0110100 Michaux 4 -0110100 Shippey 4 -0110100 Caceres 4 -0110100 Wichlep 4 -0110100 Stiehl 4 -0110100 Gaughan 4 -0110100 Aurichio 4 -0110100 Crummey 4 -0110100 Erdmann 4 -0110100 Spiers 4 -0110100 Hettinger 4 -0110100 Raffo 4 -0110100 Ribero 4 -0110100 Dingebauer 4 -0110100 Rahneva 4 -0110100 Pakalov 4 -0110100 Duplat 4 -0110100 Danby 4 -0110100 Wier 4 -0110100 McWalter 4 -0110100 Helfant 4 -0110100 Ransohoff 4 -0110100 Guendel 4 -0110100 Hauff 4 -0110100 Kaufthal 4 -0110100 Vactor 4 -0110100 Walshe 4 -0110100 Molisa 4 -0110100 Baechlin 4 -0110100 Brofman 4 -0110100 Roj 4 -0110100 Tacher 4 -0110100 Preyss 4 -0110100 Walken 4 -0110100 Massenberg 4 -0110100 Burdge 4 -0110100 Maida 4 -0110100 Sheahan 4 -0110100 Swoap 4 -0110100 Belatti 4 -0110100 Feller 4 -0110100 Sprat 4 -0110100 Remillard 4 -0110100 Rudibaugh 4 -0110100 Godsoe 4 -0110100 Heinbockel 4 -0110100 Siegal 4 -0110100 Lefler 4 -0110100 Zerhusen 4 -0110100 Moltz 4 -0110100 Bofill 4 -0110100 Pienaar 4 -0110100 Steck 4 -0110100 Walgren 4 -0110100 Kotter 4 -0110100 Dorsett 4 -0110100 Gruberova 4 -0110100 Rizzello 4 -0110100 Creviston 4 -0110100 Modisett 4 -0110100 Cartolano 4 -0110100 Chwat 4 -0110100 Kawamata 4 -0110100 Snapp 4 -0110100 Dainsberg 4 -0110100 Krecek 4 -0110100 Chatto 4 -0110100 Klabunde 4 -0110100 Sottile 4 -0110100 Lopp 4 -0110100 Rousselot 4 -0110100 al-Garamani 4 -0110100 al-Haddad 4 -0110100 Bihrud 4 -0110100 Hersey 4 -0110100 Kitzmiller 4 -0110100 Hohlt 4 -0110100 Hunthausen 4 -0110100 Isselbacher 4 -0110100 Quilligan 4 -0110100 Stackhouse 4 -0110100 Collecchia 4 -0110100 Lingenfelter 4 -0110100 Waney 4 -0110100 Seawell 4 -0110100 Heunis 4 -0110100 Hirschbein 4 -0110100 Yamanaka 4 -0110100 Bueche 4 -0110100 Worrall 4 -0110100 al-Anono 4 -0110100 Furse 4 -0110100 Dilworth 4 -0110100 Wenzinger 4 -0110100 Nehring 4 -0110100 Foos 4 -0110100 Rapanelli 4 -0110100 Joudrie 4 -0110100 Becque 4 -0110100 Rudd 4 -0110100 Sully 4 -0110100 Steinborn 4 -0110100 Dalal 4 -0110100 Bresley 4 -0110100 Slentz 4 -0110100 Leiva 4 -0110100 Withrow 4 -0110100 Houck 4 -0110100 Macaraig 4 -0110100 Potvin 4 -0110100 Nayak 4 -0110100 Weisel 4 -0110100 Gutridge 4 -0110100 Zelnik 4 -0110100 Longcroft 4 -0110100 Grazer 4 -0110100 Silvy 4 -0110100 Zinsser 4 -0110100 Kersley 4 -0110100 Wasik 4 -0110100 Cantley 4 -0110100 Messick 4 -0110100 Schembechler 4 -0110100 Ordonez 4 -0110100 DeGroot 4 -0110100 Lanni 4 -0110100 Wainio 4 -0110100 Brandvold 4 -0110100 Marbut 4 -0110100 Alloway 4 -0110100 Uy-Tioco 4 -0110100 Stavis 4 -0110100 Hiroi 4 -0110100 Keer 4 -0110100 Seigfreid 4 -0110100 McTaggart 4 -0110100 Forehead 4 -0110100 Fossedal 4 -0110100 Bredekamp 4 -0110100 Hagman 4 -0110100 Katon 4 -0110100 Ranalli 4 -0110100 Poon 4 -0110100 Ghobadian 4 -0110100 XXIII 4 -0110100 Strigl 4 -0110100 Pinsky 4 -0110100 Rickman 4 -0110100 Arnone 4 -0110100 Nukazawa 4 -0110100 Slemrod 4 -0110100 Estevez 4 -0110100 Jonsson 4 -0110100 Orbison 4 -0110100 Budai 4 -0110100 Posen 4 -0110100 Hyon-hui 4 -0110100 Greelish 4 -0110100 Zadeh 4 -0110100 Kieschnick 4 -0110100 Borneck 4 -0110100 Armentano 4 -0110100 Yashiro 4 -0110100 Wouri 4 -0110100 Paar 4 -0110100 Duddles 4 -0110100 Dalbeck 4 -0110100 Foyle 4 -0110100 Levendel 4 -0110100 Seeliger 4 -0110100 Husson 4 -0110100 Kilfoyle 4 -0110100 Ahlers 4 -0110100 Dalhoff 4 -0110100 Pilenzo 4 -0110100 Torday 4 -0110100 Seelbinder 4 -0110100 Wormley 4 -0110100 Kois 4 -0110100 Frenkel 4 -0110100 Dowie 4 -0110100 Breedon 4 -0110100 Miullo 4 -0110100 Holkeri 4 -0110100 Schroll 4 -0110100 Gandiaga 4 -0110100 Zwerin 4 -0110100 Neidich 4 -0110100 Boddewyn 4 -0110100 Baeri 4 -0110100 Glotz 4 -0110100 Pietersen 4 -0110100 Vidaurri 4 -0110100 Rimmel 4 -0110100 Nanula 4 -0110100 Allbach 4 -0110100 Terman 4 -0110100 Brannock 4 -0110100 Tanoira 4 -0110100 Kundrat 4 -0110100 DeWoskin 4 -0110100 Googel 4 -0110100 Spilker 4 -0110100 Cyca 4 -0110100 Grosfeld 4 -0110100 Fontenot 4 -0110100 Raether 4 -0110100 Bonnart 4 -0110100 Winbergh 4 -0110100 Gutenstein 4 -0110100 Timmers 4 -0110100 Ruwe 4 -0110100 Nuell 4 -0110100 Boillot 4 -0110100 Winebrenner 4 -0110100 el-Shamma 4 -0110100 Weinhoff 4 -0110100 Hamilburg 4 -0110100 Coakley 4 -0110100 Sakamura 4 -0110100 Liebenberg 4 -0110100 Rebholtz 4 -0110100 Essman 4 -0110100 Seki 4 -0110100 Graefe 4 -0110100 Brinck 4 -0110100 MacNaughton 4 -0110100 Phalan 4 -0110100 Ivester 4 -0110100 Croisset 4 -0110100 Holties 4 -0110100 Trandum 4 -0110100 Clary 4 -0110100 Megley 4 -0110100 Lucassen 4 -0110100 Rulon-Miller 4 -0110100 McFedries 4 -0110100 Biggins 4 -0110100 Dieckamp 4 -0110100 Gwynn 4 -0110100 Penzak 4 -0110100 Forsberg 4 -0110100 Tallon 4 -0110100 Nedelman 4 -0110100 Keisling 4 -0110100 McGrane 4 -0110100 Gamson 4 -0110100 Schroer 4 -0110100 Stassen 4 -0110100 Sladkus 4 -0110100 Vargo 4 -0110100 Barbetta 4 -0110100 Nocella 4 -0110100 Ata 4 -0110100 Ravenal 4 -0110100 Bamping 4 -0110100 Omana 4 -0110100 Daniello 4 -0110100 Buttarazzi 4 -0110100 Amara 4 -0110100 Lamboley 4 -0110100 Iwasaki 4 -0110100 Winbigler 4 -0110100 Pantages 4 -0110100 Anderegg 4 -0110100 Dimon 4 -0110100 Heeger 4 -0110100 Sieverts 4 -0110100 Papadopoulos 4 -0110100 Mossaz 4 -0110100 Mitsuya 4 -0110100 Humm 4 -0110100 Mooibroek 4 -0110100 Orden 4 -0110100 Martindale 4 -0110100 McLure 4 -0110100 Stehelin 4 -0110100 Hoppe 4 -0110100 Rademacher 4 -0110100 Becken 4 -0110100 Claeson 4 -0110100 Cinalli 4 -0110100 Scheuring 4 -0110100 Kinsella 4 -0110100 Dimitriadis 4 -0110100 Polutchko 4 -0110100 Maleczech 4 -0110100 Brusberg 4 -0110100 Doorley 4 -0110100 Johnsson 4 -0110100 Knighton 4 -0110100 Yannikos 4 -0110100 Keleher 4 -0110100 Niven 4 -0110100 Spender 4 -0110100 Dienstbier 4 -0110100 Milch 4 -0110100 Fischler 4 -0110100 Welty 4 -0110100 Engelhardt 5 -0110100 Rossellini 5 -0110100 Manes 5 -0110100 Borovoy 5 -0110100 Roizen 5 -0110100 Hammadi 5 -0110100 Radabaugh 5 -0110100 Arsenault 5 -0110100 Quensen 5 -0110100 Zeughauser 5 -0110100 Skigen 5 -0110100 Sweetman 5 -0110100 Grabe 5 -0110100 Hindes 5 -0110100 Sidle 5 -0110100 Nauslar 5 -0110100 Rickert 5 -0110100 Sunder 5 -0110100 Nemessuri 5 -0110100 Stroud 5 -0110100 Doggett 5 -0110100 Sigman 5 -0110100 DeVos 5 -0110100 Miert 5 -0110100 Spilman 5 -0110100 Podolsky 5 -0110100 Parrett 5 -0110100 Namer 5 -0110100 Tilbian 5 -0110100 Shicoff 5 -0110100 Ballow 5 -0110100 Gianelli 5 -0110100 Mathewson 5 -0110100 Brugere-Trelat 5 -0110100 DiGiacomo 5 -0110100 Orlov 5 -0110100 Kozaren 5 -0110100 Lichtenfels 5 -0110100 Burnison 5 -0110100 Kroner 5 -0110100 Langenscheidt 5 -0110100 Arbogast 5 -0110100 Ormrod 5 -0110100 Cianci 5 -0110100 Kayatta 5 -0110100 Collmer 5 -0110100 Trennum 5 -0110100 Oshry 5 -0110100 Langone 5 -0110100 Budzinski 5 -0110100 MacQueen 5 -0110100 Swales 5 -0110100 AbuZayyad 5 -0110100 Regab 5 -0110100 Baar 5 -0110100 duBusc 5 -0110100 Kyd 5 -0110100 Moutoussamy 5 -0110100 Pary 5 -0110100 Brosens 5 -0110100 Quesada 5 -0110100 Gyothen 5 -0110100 Fourticq 5 -0110100 Mulvaney 5 -0110100 Jacquette 5 -0110100 Meana 5 -0110100 Finazzo 5 -0110100 Raikes 5 -0110100 Seropian 5 -0110100 Deville 5 -0110100 Licata 5 -0110100 Pittenger 5 -0110100 Dunstan 5 -0110100 Bothmann 5 -0110100 Liniger 5 -0110100 Wynter 5 -0110100 Mirer 5 -0110100 Plumeri 5 -0110100 Kautz 5 -0110100 Berryman 5 -0110100 McNaughton 5 -0110100 Herzel 5 -0110100 Barsell 5 -0110100 Sandroni 5 -0110100 Anglin 5 -0110100 DeYoung 5 -0110100 Duffin 5 -0110100 Nelligan 5 -0110100 Pursel 5 -0110100 Winningstad 5 -0110100 Prokopis 5 -0110100 Wilpon 5 -0110100 Samartini 5 -0110100 Kerslake 5 -0110100 Davidowitz 5 -0110100 Goto 5 -0110100 Miki 5 -0110100 Lohrengel 5 -0110100 Kinsman 5 -0110100 Mengers 5 -0110100 McQuaid 5 -0110100 Flanz 5 -0110100 Burzon 5 -0110100 Kukovica 5 -0110100 Szumny 5 -0110100 Bossano 5 -0110100 Croissier 5 -0110100 Finkel 5 -0110100 Matsuoka 5 -0110100 Prickett 5 -0110100 Larder 5 -0110100 Athanasakos 5 -0110100 Varma 5 -0110100 Mattheiss 5 -0110100 Liebl 5 -0110100 Giacometti 5 -0110100 Kornblith 5 -0110100 Haider 5 -0110100 Seale 5 -0110100 Chmielewski 5 -0110100 Strausberg 5 -0110100 Lebowitz 5 -0110100 Schepens 5 -0110100 Fortabat 5 -0110100 Furton 5 -0110100 Menditto 5 -0110100 Moler 5 -0110100 Medrich 5 -0110100 Conia 5 -0110100 McNab 5 -0110100 Funabashi 5 -0110100 Gamel 5 -0110100 Mengden 5 -0110100 Reisenbach 5 -0110100 Denham 5 -0110100 Lopes 5 -0110100 Peins 5 -0110100 Kahle 5 -0110100 DeVane 5 -0110100 Hammonds 5 -0110100 Hayworth 5 -0110100 Lacson 5 -0110100 Ousey 5 -0110100 Gwartney 5 -0110100 Lebo 5 -0110100 Borish 5 -0110100 Plouf 5 -0110100 Krellenstein 5 -0110100 Parmenter 5 -0110100 Ellerin 5 -0110100 Finzen 5 -0110100 Gilchrest 5 -0110100 Chikofsky 5 -0110100 Malanca 5 -0110100 Mallet 5 -0110100 Lobato 5 -0110100 Thrale 5 -0110100 Logue 5 -0110100 Sandklef 5 -0110100 Abdic 5 -0110100 Symington 5 -0110100 Beimford 5 -0110100 Makino 5 -0110100 Panitz 5 -0110100 Quercia 5 -0110100 Billingslea 5 -0110100 Frydenlund 5 -0110100 Callanan 5 -0110100 Dunk 5 -0110100 Weithas 5 -0110100 Medcalf 5 -0110100 Capano 5 -0110100 McKimm 5 -0110100 Anderau 5 -0110100 Swyt 5 -0110100 Woitschaetzke 5 -0110100 Simek 5 -0110100 Panny 5 -0110100 Nordman 5 -0110100 Steeley 5 -0110100 Lebel 5 -0110100 Siano 5 -0110100 Roxborough 5 -0110100 Elizondo 5 -0110100 Kovacevich 5 -0110100 Laurenzo 5 -0110100 Radtke 5 -0110100 Zaccaglin 5 -0110100 Modell 5 -0110100 Gilg 5 -0110100 Carriere 5 -0110100 Gratzon 5 -0110100 Pazos 5 -0110100 Yankey 5 -0110100 Throckmorton 5 -0110100 Maneaty 5 -0110100 Rabe 5 -0110100 Fabra 5 -0110100 Grigg 5 -0110100 Negus 5 -0110100 Kasun 5 -0110100 Guidry 5 -0110100 Pisapia 5 -0110100 Bartram 5 -0110100 Moross 5 -0110100 Screech 5 -0110100 Takeyama 5 -0110100 Hubschmid 5 -0110100 Foont 5 -0110100 Hutson 5 -0110100 Kraselnick 5 -0110100 Kopechne 5 -0110100 Inanlou 5 -0110100 Haddow 5 -0110100 Trafficante 5 -0110100 Quilici 5 -0110100 Wasilewski 5 -0110100 Siehl 5 -0110100 Bhasin 5 -0110100 Velli 5 -0110100 Passino 5 -0110100 Ren 5 -0110100 Konney 5 -0110100 Ferre 5 -0110100 Islas 5 -0110100 Geiringer 5 -0110100 Popeo 5 -0110100 Luzenac 5 -0110100 Alun-Jones 5 -0110100 Knopfli 5 -0110100 Orbe 5 -0110100 Dockray 5 -0110100 Siart 5 -0110100 Lougee 5 -0110100 Moriarty 5 -0110100 Ziade 5 -0110100 Paller 5 -0110100 Corvo 5 -0110100 Lithgow 5 -0110100 Goodchild 5 -0110100 Wildblood 5 -0110100 Banis 5 -0110100 Bostock 5 -0110100 Sippl 5 -0110100 Barnhard 5 -0110100 Encarnacao 5 -0110100 Stegmayer 5 -0110100 Gilday 5 -0110100 Goldenhersh 5 -0110100 Bhandari 5 -0110100 Bergin 5 -0110100 Halkyard 5 -0110100 Mandrell 5 -0110100 Lessard 5 -0110100 Ibuki 5 -0110100 Cropper 5 -0110100 Habicht 5 -0110100 Gutherie 5 -0110100 Recchia 5 -0110100 Bibicoff 5 -0110100 Janeway 5 -0110100 VandenBerg 5 -0110100 Luellen 5 -0110100 Carmody 5 -0110100 Boschma 5 -0110100 Treves 5 -0110100 Solomonson 5 -0110100 Cangiano 5 -0110100 McLendon 5 -0110100 Malaker 5 -0110100 McCarren 5 -0110100 Tsuchiya 5 -0110100 Mirande 5 -0110100 Sevareid 5 -0110100 Swinford 5 -0110100 Tseki 5 -0110100 Rauh 5 -0110100 Wolper 5 -0110100 Belis 5 -0110100 Snowdon 5 -0110100 Gasket 5 -0110100 Chesek 5 -0110100 Grifka 5 -0110100 Heilbroner 5 -0110100 Rosow 5 -0110100 Bialy 5 -0110100 Shebelski 5 -0110100 Rickover 5 -0110100 Kuperstein 5 -0110100 Espinoza 5 -0110100 Pannier 5 -0110100 Ellroy 5 -0110100 Urbanski 5 -0110100 Sheedy 5 -0110100 Joura 5 -0110100 Ben-Aharon 5 -0110100 Nieto 5 -0110100 Krimsky 5 -0110100 Gerace 5 -0110100 Dabbagh 5 -0110100 Lunnie 5 -0110100 Riggins 5 -0110100 Zeder 5 -0110100 Namath 5 -0110100 Diermeier 5 -0110100 Ortquist 5 -0110100 Seko 5 -0110100 Evenson 5 -0110100 Castella 5 -0110100 Eubank 5 -0110100 Vantine 5 -0110100 Garamendi 5 -0110100 Rueff 5 -0110100 Brustein 5 -0110100 DeFilippo 5 -0110100 Montren 5 -0110100 Pierman 5 -0110100 Tanous 5 -0110100 Suprana 5 -0110100 Reaux 5 -0110100 Kadotani 5 -0110100 Costrell 5 -0110100 Gerberg 5 -0110100 Rizzuto 5 -0110100 Warshaw 5 -0110100 Meneses 5 -0110100 Rossotti 5 -0110100 Petrilli 5 -0110100 Mosk 5 -0110100 Hiaasen 5 -0110100 Tallman 5 -0110100 Lowenkron 5 -0110100 Nims 5 -0110100 Braga 5 -0110100 Bonet 5 -0110100 Chagnon 5 -0110100 Salvin 5 -0110100 Schnapp 5 -0110100 Rosencrants 5 -0110100 Malloch 5 -0110100 Venneboerger 5 -0110100 Gallas 5 -0110100 Zahmatkesh 5 -0110100 Heneghan 5 -0110100 deButts 5 -0110100 Blenkarn 5 -0110100 Ayukawa 5 -0110100 Goldblith 5 -0110100 Bretschneider 5 -0110100 Hackmann 5 -0110100 Goell 5 -0110100 Hymowitz 5 -0110100 Letterer 5 -0110100 Popova 5 -0110100 Kornhaber 5 -0110100 Modise 5 -0110100 Terkel 5 -0110100 Landsborough 5 -0110100 Marner 5 -0110100 Lintner 5 -0110100 Yoshihashi 5 -0110100 Germann 5 -0110100 Noelle-Neumann 5 -0110100 Ouedraogo 5 -0110100 Breslow 5 -0110100 Wezniak 5 -0110100 Lueddeke 5 -0110100 Turrill 5 -0110100 Bechky 5 -0110100 Evanson 5 -0110100 Pyzhyanov 5 -0110100 Birenbaum 5 -0110100 Hirabayashi 5 -0110100 Benderly 5 -0110100 Batts 5 -0110100 Yoshizawa 5 -0110100 Lenfant 5 -0110100 Ricklefs 5 -0110100 Herder 5 -0110100 Vachon 5 -0110100 Gilbreath 5 -0110100 Dunker 5 -0110100 Hegarty 5 -0110100 Immitt 5 -0110100 Citron 5 -0110100 Hulm 5 -0110100 Bartol 5 -0110100 Zarkin 5 -0110100 Tworek 5 -0110100 Karmarkar 5 -0110100 Romanenko 5 -0110100 Sayers 5 -0110100 Hoffberger 5 -0110100 Bakhash 5 -0110100 Henningfield 5 -0110100 Petrone 5 -0110100 Youngblood 5 -0110100 Schmalensee 5 -0110100 Malinin 5 -0110100 al-Uraybi 5 -0110100 Steinkuehler 5 -0110100 Conners 5 -0110100 Dimitrova 5 -0110100 Quattrone 5 -0110100 Cholakis 5 -0110100 Tearno 5 -0110100 Wasco 5 -0110100 Sheperdson 5 -0110100 Savona 5 -0110100 Miegel 5 -0110100 Braendle 5 -0110100 Kinlen 5 -0110100 Moscahlaidis 5 -0110100 Sommervold 5 -0110100 Bergamo 5 -0110100 Gaizo 5 -0110100 Bacow 5 -0110100 Peirce 5 -0110100 Frankis 5 -0110100 Sappenfield 5 -0110100 Khachigian 5 -0110100 Karpinsky 5 -0110100 Majerus 5 -0110100 Teerlink 5 -0110100 Uphoff 5 -0110100 Apuzzo 5 -0110100 Buffington 5 -0110100 Gotto 5 -0110100 Westerman 5 -0110100 Lekberg 5 -0110100 Ptack 5 -0110100 Shenk 5 -0110100 Grohowski 5 -0110100 Fischl 5 -0110100 Pafumi 5 -0110100 Shonecan 5 -0110100 Saffer 5 -0110100 Buechel 5 -0110100 Togliatti 5 -0110100 Nobuto 5 -0110100 Whicher 5 -0110100 Scholtz 5 -0110100 Magruder 5 -0110100 Beichert 5 -0110100 Haygood 5 -0110100 Hulin 5 -0110100 Eckel 5 -0110100 Markley 5 -0110100 Actouka 5 -0110100 Kutnick 5 -0110100 Doukas 5 -0110100 Schwemm 5 -0110100 Galindo 5 -0110100 Kozlowski 5 -0110100 Zeschmar 5 -0110100 Rossiter 5 -0110100 Prappas 5 -0110100 Conklin 5 -0110100 Tydings 5 -0110100 LaRocque 5 -0110100 Uffelman 5 -0110100 Gaup 5 -0110100 Suggs 5 -0110100 Kingham 5 -0110100 Prigov 5 -0110100 Bantle 5 -0110100 Ludwin 5 -0110100 McLachlan 5 -0110100 Vitulli 5 -0110100 Kristofferson 5 -0110100 Trantum 5 -0110100 Eklund 5 -0110100 Clavel 5 -0110100 Damone 5 -0110100 Vink 5 -0110100 Nunes 5 -0110100 Wudtke 5 -0110100 Vieley 5 -0110100 Pozen 5 -0110100 Manasse 5 -0110100 Blodgett 5 -0110100 Weingart 5 -0110100 Vipperman 5 -0110100 Semsky 5 -0110100 Waits 5 -0110100 Kono 5 -0110100 Morberg 5 -0110100 Chesnais 5 -0110100 Manolis 5 -0110100 Bialo 5 -0110100 Crotty 5 -0110100 Koegler 5 -0110100 Raynolds 5 -0110100 Marsico 5 -0110100 Muck 5 -0110100 Poulton 5 -0110100 Puskar 5 -0110100 Vibbard 5 -0110100 Buteau 5 -0110100 Saperstein 5 -0110100 Rondeau 5 -0110100 Moison 5 -0110100 Bailar 5 -0110100 Hershaft 5 -0110100 Shiflett 5 -0110100 Lannon 5 -0110100 Weiger 5 -0110100 Baurmann 5 -0110100 Kaffen 5 -0110100 Harradine 5 -0110100 Dolembo 5 -0110100 Walto 5 -0110100 Buskirk 5 -0110100 Doering 5 -0110100 Davidoski 5 -0110100 Loubad 5 -0110100 Gillick 5 -0110100 Ramseier 5 -0110100 Malozemoff 5 -0110100 Tolchin 5 -0110100 Cofrin 5 -0110100 Kizer 5 -0110100 Maerki 5 -0110100 Ribble 5 -0110100 Linsteadt 5 -0110100 Alves 5 -0110100 McCloud 5 -0110100 DeSantis 5 -0110100 Siegman 5 -0110100 Schwarzrock 5 -0110100 Demery 5 -0110100 Kolberg 5 -0110100 Sease 5 -0110100 Cheverton 5 -0110100 Willet 5 -0110100 Hundley 5 -0110100 Anthes 5 -0110100 Hallingby 5 -0110100 Siskind 5 -0110100 Skar 5 -0110100 Wilhite 5 -0110100 Marchand 5 -0110100 Shimomura 5 -0110100 Isacsson 5 -0110100 Markovich 5 -0110100 Middlemas 5 -0110100 Bonini 5 -0110100 Rotenstreich 5 -0110100 MacKinney 5 -0110100 Lundquist 5 -0110100 Schwadel 5 -0110100 Baakza 5 -0110100 Anastos 5 -0110100 Ditmar 5 -0110100 Taura 5 -0110100 Miyoshi 5 -0110100 Cresswell 5 -0110100 Katzin 5 -0110100 Ohga 5 -0110100 Foulkes 5 -0110100 Glavin 5 -0110100 Popp 5 -0110100 Moughamian 5 -0110100 Speir 5 -0110100 Attlee 5 -0110100 Duethorn 5 -0110100 Schmierer 5 -0110100 Lindau 5 -0110100 Edney 5 -0110100 Hartwig 5 -0110100 Kanner 5 -0110100 Curnin 5 -0110100 Jarmusz 5 -0110100 Inamori 5 -0110100 Bottner 5 -0110100 Stephansen 5 -0110100 Mercardante 5 -0110100 Gracer 5 -0110100 Gutman 5 -0110100 Tillinger 5 -0110100 Duda 5 -0110100 Sund 5 -0110100 Schoolnik 5 -0110100 Lavely 5 -0110100 Marohn 5 -0110100 Atienza 5 -0110100 Uris 5 -0110100 Donaghy 5 -0110100 Morford 5 -0110100 Wenninger 5 -0110100 Babb 5 -0110100 Hemphill 5 -0110100 Comiche 5 -0110100 Cronenberg 5 -0110100 LaBelle 5 -0110100 Daberko 5 -0110100 Sandburg 5 -0110100 Jamplis 5 -0110100 Cariseo 5 -0110100 DiNardo 5 -0110100 Vairo 5 -0110100 Kersnick 5 -0110100 Talmo 5 -0110100 Prazmark 5 -0110100 Neuborne 5 -0110100 Amstutz 5 -0110100 Soetbeer 5 -0110100 Lundi 5 -0110100 Kanel 5 -0110100 Kinkade 5 -0110100 Sidlin 5 -0110100 Previn 5 -0110100 Gidwani 5 -0110100 Marini 5 -0110100 Cheveralls 5 -0110100 Whitemore 5 -0110100 Errigo 5 -0110100 Kanoff 5 -0110100 Ursell 5 -0110100 Waranch 5 -0110100 Greisman 5 -0110100 Hubaev 5 -0110100 Holstead 5 -0110100 Rieger 5 -0110100 Vicious 5 -0110100 Eyles 5 -0110100 Rabins 5 -0110100 Shrager 5 -0110100 McAvoy 5 -0110100 Endoh 5 -0110100 Sattler 5 -0110100 Carpentier 5 -0110100 Djukastein 5 -0110100 Sukornick 5 -0110100 Pelli 5 -0110100 Bereuter 5 -0110100 Reise 5 -0110100 Buchholz 5 -0110100 Schaulsohn 5 -0110100 Courtis 5 -0110100 Treybig 5 -0110100 Seeno 5 -0110100 Calabresi 5 -0110100 Siebrasse 5 -0110100 Bannon 5 -0110100 Mulder 5 -0110100 Vorster 5 -0110100 Duchin 5 -0110100 Kanabayashi 5 -0110100 Grellman 5 -0110100 Goldfader 5 -0110100 Lumet 5 -0110100 Bhar 5 -0110100 Skrodski 5 -0110100 Moi 5 -0110100 Mendenhall 5 -0110100 Gridley 5 -0110100 Mayland 5 -0110100 Peapples 5 -0110100 Pezzullo 5 -0110100 Andersson 5 -0110100 Nelms 5 -0110100 Camoys 5 -0110100 Ludden 5 -0110100 Lozinska 5 -0110100 Sokolova 5 -0110100 Wulkan 5 -0110100 Weicher 5 -0110100 Albertos 5 -0110100 Macchia 5 -0110100 Heisley 5 -0110100 Lefeve 5 -0110100 LaPorte 5 -0110100 Probert 5 -0110100 Scarff 5 -0110100 Pruden 5 -0110100 Guillory 5 -0110100 McAndrew 5 -0110100 Frei 5 -0110100 Timmerman 5 -0110100 Thieme 5 -0110100 Bruchey 5 -0110100 McCrady 5 -0110100 Chabot 5 -0110100 Paige 5 -0110100 Foundyller 5 -0110100 Kampe 5 -0110100 Moriyama 5 -0110100 Pilkey 5 -0110100 Sonnenfeld 5 -0110100 Zeiler 5 -0110100 Mkhwanazi 5 -0110100 Sachnoff 5 -0110100 Cerny 5 -0110100 Cloonan 5 -0110100 Guilfoyle 5 -0110100 Bonistalli 5 -0110100 Askin 5 -0110100 Schnadt 5 -0110100 Comissiona 5 -0110100 Gaddis 5 -0110100 Gillis 5 -0110100 Aranson 5 -0110100 Spinola 5 -0110100 Pinkes 5 -0110100 Bucher 5 -0110100 Wavle 5 -0110100 Schoellkopf 5 -0110100 Corder 5 -0110100 Krum 5 -0110100 Varipapa 5 -0110100 Nerlinger 5 -0110100 Tournier 5 -0110100 Belmonte 5 -0110100 Raufer 5 -0110100 Barayi 5 -0110100 Whitcome 5 -0110100 Jeelof 5 -0110100 Brule 5 -0110100 Whalen 5 -0110100 Sonnenberg 5 -0110100 Saveth 5 -0110100 Pacifico 5 -0110100 Perriss 5 -0110100 Baudry 5 -0110100 Cyert 5 -0110100 LaBella 5 -0110100 Zubaidi 5 -0110100 MacAvoy 5 -0110100 Cleland 5 -0110100 Gignac 5 -0110100 Heaton 5 -0110100 Maciejowski 5 -0110100 Vial 5 -0110100 Kardell 5 -0110100 Terada 5 -0110100 Barbash 5 -0110100 Davin 5 -0110100 Netto 5 -0110100 Caton 5 -0110100 Buller 5 -0110100 Brannigan 5 -0110100 Jorissen 5 -0110100 Westmacott 5 -0110100 Bettner 5 -0110100 Jaeger 5 -0110100 Nusseibeh 5 -0110100 Laguerre 5 -0110100 Aparicio 5 -0110100 Agran 5 -0110100 Martinelli 5 -0110100 Coombs 5 -0110100 Naude 5 -0110100 Hirakawa 5 -0110100 Harter 5 -0110100 Mastrup 5 -0110100 Muzzio 5 -0110100 Mullaney 5 -0110100 Bertelsen 5 -0110100 Grable 5 -0110100 Swid 5 -0110100 Ogata 5 -0110100 Hamachek 5 -0110100 Parfet 5 -0110100 Pearman 5 -0110100 Everitt 5 -0110100 Phenner 5 -0110100 Masterton 5 -0110100 Kaminstein 5 -0110100 Durang 5 -0110100 Speidell 5 -0110100 Gitelman 5 -0110100 Suzman 5 -0110100 Rugg 5 -0110100 Binsky 5 -0110100 Gelly 5 -0110100 Collomp 5 -0110100 Pecqueur 5 -0110100 Atterman 5 -0110100 Upson 5 -0110100 Seizinger 5 -0110100 Kopelson 5 -0110100 Corman 5 -0110100 Lenglen 5 -0110100 Bischoff 5 -0110100 Swarttouw 5 -0110100 Lapointe 5 -0110100 Cavavetta 5 -0110100 Marchman 5 -0110100 Skaletsky 5 -0110100 Pelson 5 -0110100 Deuillet 5 -0110100 Duisenberg 5 -0110100 Tannen 5 -0110100 Whaley 5 -0110100 Tajan 5 -0110100 Berro 5 -0110100 Butland 5 -0110100 Borchardt 5 -0110100 Sheibani 5 -0110100 Nortman 5 -0110100 Goeken 5 -0110100 Filiberti 5 -0110100 Murad 5 -0110100 Zycher 5 -0110100 Millo 5 -0110100 Bornemann 5 -0110100 Pecarich 5 -0110100 Sperandeo 5 -0110100 Sambrook 5 -0110100 Koizumi 5 -0110100 Stettinius 5 -0110100 Jakeway 5 -0110100 Viehe 5 -0110100 Tashiro 5 -0110100 Padwe 5 -0110100 Sandelman 5 -0110100 Tremblay 5 -0110100 Bossis 5 -0110100 Barmash 5 -0110100 Leason 5 -0110100 Hetherington 5 -0110100 Rohrlich 5 -0110100 Blessey 5 -0110100 Yule 5 -0110100 Leimberg 5 -0110100 Poppins 5 -0110100 Shoemate 5 -0110100 Shofstahl 5 -0110100 Fahys 5 -0110100 Carraway 5 -0110100 Hamper 5 -0110100 Perna 5 -0110100 Brannelly 5 -0110100 Kondratas 5 -0110100 Chietti 5 -0110100 Hovious 5 -0110100 Doby 5 -0110100 Poniatowski 5 -0110100 Goldschmitt 5 -0110100 Staubach 5 -0110100 Abene 5 -0110100 Roodt 5 -0110100 Petee 5 -0110100 Bottenbruch 5 -0110100 Skantze 5 -0110100 Freydberg 5 -0110100 Aab 5 -0110100 Brackeen 5 -0110100 Boller 5 -0110100 Kurek 5 -0110100 Cornman 5 -0110100 Abrahamsson 5 -0110100 Ammendola 5 -0110100 Orbach 5 -0110100 Cilli 5 -0110100 Sakamoto 5 -0110100 Bopp 5 -0110100 Beauregard 5 -0110100 Blumkin 5 -0110100 Howson 5 -0110100 Britchky 5 -0110100 Mayron 5 -0110100 Segura 5 -0110100 Siminoff 5 -0110100 Gritter 5 -0110100 Bhattasali 5 -0110100 Pilarczyk 5 -0110100 Riepe 5 -0110100 Altmeyer 5 -0110100 Judelson 5 -0110100 Cardona 5 -0110100 Lattes 5 -0110100 Marchessault 5 -0110100 Albom 5 -0110100 Lohman 5 -0110100 Speirs 5 -0110100 Thornhill-Cummings 5 -0110100 Ephron 5 -0110100 Norville 5 -0110100 Hamer 5 -0110100 McFarlan 5 -0110100 Sando 5 -0110100 dePalma 5 -0110100 Schnapper 5 -0110100 Dittmer 5 -0110100 Geruch 5 -0110100 Bramble 5 -0110100 Viera 5 -0110100 Frankhauser 5 -0110100 Lichtman 5 -0110100 Lisberger 5 -0110100 McEvaddy 5 -0110100 Battalio 5 -0110100 McCone 5 -0110100 Kotecha 5 -0110100 Seegal 5 -0110100 Nemeth 5 -0110100 Fitzgibbon 5 -0110100 Ardbo 5 -0110100 Beckler 5 -0110100 Chaudhari 5 -0110100 McClanahan 5 -0110100 Alviso 5 -0110100 Akao 5 -0110100 Denniston 5 -0110100 Tasco 5 -0110100 Sherburne 5 -0110100 Hourihan 5 -0110100 Sprizzo 5 -0110100 Hamblen 5 -0110100 Lins 5 -0110100 Kotz 5 -0110100 Yoshino 5 -0110100 Cortese 5 -0110100 Lenkowsky 5 -0110100 Kakar 5 -0110100 Scaraggi 5 -0110100 Montgoris 5 -0110100 Widdrington 5 -0110100 Crook 5 -0110100 Maciej 5 -0110100 Carballo 5 -0110100 Bagwell 5 -0110100 Myojin 5 -0110100 Pollak 5 -0110100 Shinoda 5 -0110100 Zlotin 5 -0110100 Kleinbard 5 -0110100 Gagner 5 -0110100 Burchard 5 -0110100 Coonts 5 -0110100 Gyngell 5 -0110100 Spivak 5 -0110100 Tomblin 5 -0110100 Knauff 5 -0110100 Ohtake 5 -0110100 Bohlin 5 -0110100 Rolle 5 -0110100 Nurnberg 5 -0110100 Bulasky 5 -0110100 Wenger 5 -0110100 Vanocur 5 -0110100 Frontieres 5 -0110100 Fraidin 5 -0110100 Nave 5 -0110100 McRaney 5 -0110100 Kvalheim 5 -0110100 Rusen 5 -0110100 Cattivera 5 -0110100 Mawby 5 -0110100 Gati 5 -0110100 Hurckes 5 -0110100 Hoepoedio 5 -0110100 Danco 5 -0110100 Tauber 5 -0110100 Troendly 5 -0110100 Dezember 5 -0110100 Moravcsik 5 -0110100 Caygill 5 -0110100 Tamari 5 -0110100 Kamarck 5 -0110100 Kipper 5 -0110100 Hawkinson 5 -0110100 Heckathorn 5 -0110100 Clavell 5 -0110100 Urfe 5 -0110100 Tovstonogov 5 -0110100 Pashkow 5 -0110100 Tendler 5 -0110100 Viio 5 -0110100 Cholnoky 5 -0110100 LaPierre 5 -0110100 Quillian 5 -0110100 Lautman 5 -0110100 Donofrio 5 -0110100 Lipicky 5 -0110100 Gildersleeve 5 -0110100 Vasic 5 -0110100 Bunina 5 -0110100 Celis 5 -0110100 Fraghistas 5 -0110100 Petovar 5 -0110100 Oldershaw 5 -0110100 Masty 5 -0110100 Thernstrom 5 -0110100 Rozeff 5 -0110100 Mitra 5 -0110100 Radoccia 5 -0110100 Horabin 5 -0110100 Radt 5 -0110100 Faget 5 -0110100 Farthing 5 -0110100 Blustein 5 -0110100 Klingensmith 5 -0110100 Nau 5 -0110100 Lydecker 5 -0110100 Penley 5 -0110100 Sagebrecht 5 -0110100 Verbicky 5 -0110100 Ebermann 5 -0110100 Morcott 5 -0110100 Cheslick 5 -0110100 Moorer 5 -0110100 Gearde 5 -0110100 Midgley 5 -0110100 Mankiewicz 5 -0110100 Fellegi 5 -0110100 Harl 5 -0110100 Raciti 5 -0110100 LaMar 5 -0110100 McCartin 5 -0110100 Pisano 5 -0110100 Waitzer 5 -0110100 Mikhailov 5 -0110100 Mooberry 5 -0110100 Koten 5 -0110100 Creech 5 -0110100 Ansberry 5 -0110100 Tanis 5 -0110100 Kropp 5 -0110100 Egozi 5 -0110100 Clemons 5 -0110100 Barlage 5 -0110100 Bodett 5 -0110100 Jang 5 -0110100 Eimer 5 -0110100 Loynd 5 -0110100 Radzimski 5 -0110100 Rothwell 5 -0110100 Oi 5 -0110100 Palicka 5 -0110100 MacInnis 5 -0110100 Munger 5 -0110100 Yurek 5 -0110100 Freedberg 5 -0110100 Belanger 5 -0110100 Beauvoir 5 -0110100 Horovitz 5 -0110100 Ringwald 5 -0110100 Eran 5 -0110100 Grauman 5 -0110100 Ugoretz 5 -0110100 Wilkus 5 -0110100 Gandois 5 -0110100 Mlangeni 5 -0110100 Semsdorf 5 -0110100 Tsutsui 5 -0110100 Knecht 5 -0110100 Shaunessy 5 -0110100 Posternak 5 -0110100 Lignell 5 -0110100 Cuscela 5 -0110100 Soederberg 5 -0110100 Fatemi 5 -0110100 Gobert 5 -0110100 Gollub 5 -0110100 Petrillo 5 -0110100 Tomitsuka 5 -0110100 Davidhazy 5 -0110100 Prine 5 -0110100 Ullrich 5 -0110100 Mires 5 -0110100 Sweaney 5 -0110100 Archbold 5 -0110100 Basheer 5 -0110100 Dafoe 5 -0110100 Manos 5 -0110100 Dent 5 -0110100 Pansini 5 -0110100 Arbuckle 5 -0110100 Yergin 5 -0110100 Arrott 5 -0110100 Ducker 5 -0110100 Shireman 5 -0110100 Woerhoff 5 -0110100 Heskett 5 -0110100 Sarmiento 5 -0110100 Mindlin 5 -0110100 Gunning 5 -0110100 Golm 5 -0110100 Fradin 5 -0110100 Tananbaum 5 -0110100 Chatterley 5 -0110100 Dynes 5 -0110100 Plager 5 -0110100 Jarboe 5 -0110100 McGeehan 5 -0110100 Yaghoubi 5 -0110100 Boivin 5 -0110100 Hennekens 5 -0110100 Hishon 5 -0110100 Fishburn 5 -0110100 Sprogis 5 -0110100 Leung 5 -0110100 Rajender 5 -0110100 AbuTaha 5 -0110100 Velasquez 5 -0110100 Angevine 5 -0110100 Minghella 5 -0110100 Monical 5 -0110100 Balogh 5 -0110100 Carstairs 5 -0110100 Obolensky 5 -0110100 Jessey 5 -0110100 Botwinick 5 -0110100 Kolenik 5 -0110100 Stambaugh 5 -0110100 Wende 5 -0110100 Rochette 5 -0110100 Hasty 5 -0110100 Mesznik 5 -0110100 Ligendza 5 -0110100 Zanville 5 -0110100 Bleakley 5 -0110100 Wickbom 5 -0110100 Ropka 5 -0110100 Moglia 5 -0110100 Kennon 5 -0110100 Arbell 5 -0110100 Babitsky 5 -0110100 Mirecki 5 -0110100 Steeper 5 -0110100 Ianotti 5 -0110100 Payte 5 -0110100 Sackville 5 -0110100 Vucanovich 5 -0110100 Tindemans 5 -0110100 Calore 5 -0110100 Fites 5 -0110100 Dombrowski 5 -0110100 Orris 5 -0110100 Eskandarian 5 -0110100 Shitrit 5 -0110100 Freiheit 5 -0110100 Junco 5 -0110100 Seigenthaler 5 -0110100 Swados 5 -0110100 Weise 5 -0110100 Trinchero 5 -0110100 Colantuoni 5 -0110100 Wanandi 5 -0110100 Seipp 5 -0110100 Tallarico 5 -0110100 Argyros 5 -0110100 Nitschke 5 -0110100 Jiyun 5 -0110100 Heermann 5 -0110100 Selkoe 5 -0110100 Warin 5 -0110100 Cloward 5 -0110100 Bitting 5 -0110100 Klasny 5 -0110100 Monello 5 -0110100 Tullman 5 -0110100 Mertes 5 -0110100 Somarriba 5 -0110100 Minkel 5 -0110100 Snowden 5 -0110100 Sorell 5 -0110100 Guarriello 5 -0110100 Bedell 5 -0110100 DeShano 5 -0110100 DeMascio 5 -0110100 Regula 5 -0110100 Lundeen 5 -0110100 Brumley 5 -0110100 Czerniak 5 -0110100 Leeb 5 -0110100 Schnitzer 5 -0110100 Kalov 5 -0110100 Quelch 5 -0110100 Willax 5 -0110100 McHenry 5 -0110100 Shelbourne 5 -0110100 Bellisario 5 -0110100 Hacche 5 -0110100 Moldaw 5 -0110100 Mowell 5 -0110100 Ciresa 5 -0110100 Sahl 5 -0110100 Quattlebaum 5 -0110100 Mondragon 5 -0110100 Leuninger 5 -0110100 Shealy 5 -0110100 Stites 5 -0110100 Hammes 5 -0110100 Welsch 5 -0110100 Hemp 5 -0110100 Fabiani 5 -0110100 Andersin 5 -0110100 Vrable 5 -0110100 Balson 5 -0110100 Hoang 5 -0110100 Larive 5 -0110100 Leubert 5 -0110100 Christopherson 5 -0110100 Telljohann 5 -0110100 Rowlett 5 -0110100 Hanian 5 -0110100 Gelles 5 -0110100 Flynt 5 -0110100 Schoenke 5 -0110100 Kling 5 -0110100 Destler 5 -0110100 DuHadway 5 -0110100 Rabinovitz 5 -0110100 Lakian 5 -0110100 Thorsberg 5 -0110100 Neglia 5 -0110100 Eifler 5 -0110100 Cieslak 5 -0110100 Sweetin 5 -0110100 Beury 5 -0110100 Appelman 5 -0110100 Sarotte 5 -0110100 Hatano 5 -0110100 Roddey 5 -0110100 Vento 5 -0110100 Timony 5 -0110100 Flegm 5 -0110100 Ribaudo 5 -0110100 Badillo 5 -0110100 Wetterberg 5 -0110100 Saget 5 -0110100 Buffin 5 -0110100 Bachrach 5 -0110100 Sanh 5 -0110100 Cameros 5 -0110100 Nezi 5 -0110100 Schappell 5 -0110100 Benner 5 -0110100 Venners 5 -0110100 Rigby 5 -0110100 Chickering 5 -0110100 Marota 5 -0110100 Oda 5 -0110100 Kowalski 5 -0110100 Bassin 5 -0110100 Arseneault 5 -0110100 Yaeger 5 -0110100 Toft 5 -0110100 Boyles 5 -0110100 Vieser 5 -0110100 Mompati 5 -0110100 Passaretti 5 -0110100 Bockris 5 -0110100 Googins 5 -0110100 Philippi 5 -0110100 Ogletree 5 -0110100 Iooss 5 -0110100 Lavington 5 -0110100 Kaminski 5 -0110100 Olinger 5 -0110100 Koren 5 -0110100 Faris 5 -0110100 McLaurin 5 -0110100 Stefanelli 5 -0110100 Aliev 5 -0110100 Roden 5 -0110100 Lowrie 5 -0110100 Muraoka 5 -0110100 Walley 6 -0110100 Blubaugh 6 -0110100 Navasky 6 -0110100 Rafeedie 6 -0110100 Ince 6 -0110100 Fifield 6 -0110100 Zollo 6 -0110100 Flenniken 6 -0110100 Tresker 6 -0110100 Cassatt 6 -0110100 Narusawa 6 -0110100 Zubillaga 6 -0110100 Lauterbach 6 -0110100 Spade 6 -0110100 Schroeter 6 -0110100 Gildea 6 -0110100 Manilow 6 -0110100 Savoie 6 -0110100 Karatsu 6 -0110100 Catchpole 6 -0110100 Ney 6 -0110100 Yassine 6 -0110100 Glinka 6 -0110100 Minow 6 -0110100 Muravchik 6 -0110100 Macaulay 6 -0110100 Nickels 6 -0110100 Kapp 6 -0110100 Orlowsky 6 -0110100 Krogager 6 -0110100 Mitchum 6 -0110100 Gumpp 6 -0110100 Medicus 6 -0110100 McTavish 6 -0110100 Cootner 6 -0110100 Srinivasan 6 -0110100 Shatrov 6 -0110100 McRoberts 6 -0110100 Sennet 6 -0110100 Waraich 6 -0110100 Zielinski 6 -0110100 Battaglia 6 -0110100 Pedowitz 6 -0110100 Bromley 6 -0110100 McKerrow 6 -0110100 Takemoto 6 -0110100 Castille 6 -0110100 Schelke 6 -0110100 Guion 6 -0110100 Levitas 6 -0110100 Ohanian 6 -0110100 Kunikata 6 -0110100 Pagels 6 -0110100 Winnick 6 -0110100 Mitcham 6 -0110100 Kawahara 6 -0110100 Bermingham 6 -0110100 Morgenstern 6 -0110100 Prenn 6 -0110100 Haislip 6 -0110100 McSpadden 6 -0110100 Altay 6 -0110100 Futterman 6 -0110100 Rudoff 6 -0110100 Roesch 6 -0110100 Estess 6 -0110100 Butterwick 6 -0110100 Gutin 6 -0110100 Bish 6 -0110100 Peiser 6 -0110100 Romiti 6 -0110100 Allegrett 6 -0110100 Kringen 6 -0110100 Kado 6 -0110100 Gistaro 6 -0110100 Jordon 6 -0110100 Baratta 6 -0110100 Gautier 6 -0110100 Rader 6 -0110100 Krakowski 6 -0110100 Cortina 6 -0110100 Nygaard 6 -0110100 Ishida 6 -0110100 Boulter 6 -0110100 Mokoena 6 -0110100 Benedetto 6 -0110100 DePree 6 -0110100 Hadaway 6 -0110100 Yoshitomi 6 -0110100 Cutugno 6 -0110100 Johanson 6 -0110100 Shmelyov 6 -0110100 Besteman 6 -0110100 Rostow 6 -0110100 Cosell 6 -0110100 Herz 6 -0110100 Berdy 6 -0110100 Ehrreich 6 -0110100 Marrs 6 -0110100 Naismith 6 -0110100 Erakat 6 -0110100 Paltrow 6 -0110100 Bruce-Gardyne 6 -0110100 Voell 6 -0110100 Kanat 6 -0110100 Stavropoulos 6 -0110100 Shortell 6 -0110100 Plomley 6 -0110100 Vincenzi 6 -0110100 Bottum 6 -0110100 Slavnov 6 -0110100 Barkocy 6 -0110100 Carnow 6 -0110100 Heinze 6 -0110100 Hettleman 6 -0110100 Tattersall 6 -0110100 Mallen 6 -0110100 Fetter 6 -0110100 Wachner 6 -0110100 Giaquinto 6 -0110100 Dyck 6 -0110100 Fawell 6 -0110100 Feldhan 6 -0110100 Stead 6 -0110100 Bottiger 6 -0110100 Hensley 6 -0110100 Crier 6 -0110100 Celebrezze 6 -0110100 Himmel 6 -0110100 Strang 6 -0110100 Nutting 6 -0110100 Scutieri 6 -0110100 Poiesz 6 -0110100 Rickles 6 -0110100 Gutterman 6 -0110100 Slovenko 6 -0110100 Kulongoski 6 -0110100 Korthals 6 -0110100 Findley 6 -0110100 Dowdle 6 -0110100 Gaasbeck 6 -0110100 Lukomski 6 -0110100 Al-Saihati 6 -0110100 Arguetty 6 -0110100 Igoe 6 -0110100 Previts 6 -0110100 Makatini 6 -0110100 Brauchli 6 -0110100 Ryback 6 -0110100 Willcoxon 6 -0110100 Zang 6 -0110100 Tsuji 6 -0110100 Skoloff 6 -0110100 Henle 6 -0110100 Perkinson 6 -0110100 Durgin 6 -0110100 Feigenbaum 6 -0110100 Nikonov 6 -0110100 Merman 6 -0110100 Breese 6 -0110100 Ethridge 6 -0110100 Mansur 6 -0110100 Zachowski 6 -0110100 Runkel 6 -0110100 McWilliam 6 -0110100 Lipset 6 -0110100 Fialka 6 -0110100 Auriana 6 -0110100 Gamello 6 -0110100 Cherlin 6 -0110100 Nilges 6 -0110100 Gitter 6 -0110100 Nocera 6 -0110100 Selden 6 -0110100 Kolatch 6 -0110100 Kohjima 6 -0110100 Kimmitt 6 -0110100 Braude 6 -0110100 Feuer 6 -0110100 Vesper 6 -0110100 Roman-Barber 6 -0110100 Nares 6 -0110100 Doss 6 -0110100 Mathur 6 -0110100 Schrier 6 -0110100 Bartola 6 -0110100 Negrini 6 -0110100 Mangan 6 -0110100 Fritzsche 6 -0110100 Behm 6 -0110100 Matamoros 6 -0110100 Swindel 6 -0110100 Farling 6 -0110100 Albeck 6 -0110100 MacLachlan 6 -0110100 Asquith 6 -0110100 Contillo 6 -0110100 Schop 6 -0110100 Saranow 6 -0110100 Homzy 6 -0110100 Johnstad 6 -0110100 Tindall 6 -0110100 Michas 6 -0110100 Stowell 6 -0110100 Naidoo 6 -0110100 Ruttenbur 6 -0110100 Lubetkin 6 -0110100 Latshaw 6 -0110100 Nipp 6 -0110100 Yoneyama 6 -0110100 Donegan 6 -0110100 Ainsberg 6 -0110100 Friendlich 6 -0110100 Spindler 6 -0110100 Raphalian 6 -0110100 DeLauer 6 -0110100 Deans 6 -0110100 Faux 6 -0110100 Mierzejewski 6 -0110100 Droser 6 -0110100 Hamrick 6 -0110100 Aristide 6 -0110100 Asensio 6 -0110100 Arneson 6 -0110100 Killen 6 -0110100 Jazani 6 -0110100 Laimbeer 6 -0110100 Harling 6 -0110100 Wingo 6 -0110100 Bleich 6 -0110100 Vallarino 6 -0110100 Mostafavi 6 -0110100 McGary 6 -0110100 Matos 6 -0110100 Slavin 6 -0110100 Daher 6 -0110100 Westphal 6 -0110100 Kardashev 6 -0110100 Butt 6 -0110100 Aalseth 6 -0110100 Jagnecki 6 -0110100 Dievler 6 -0110100 Kleber 6 -0110100 Benoliel 6 -0110100 Billig 6 -0110100 Alcantara 6 -0110100 Lichenstein 6 -0110100 Lacaze 6 -0110100 McMains 6 -0110100 Quirk 6 -0110100 Katsh 6 -0110100 Bator 6 -0110100 Sinise 6 -0110100 Dilenschneider 6 -0110100 Gribbon 6 -0110100 Licari 6 -0110100 Dellomo 6 -0110100 Freund 6 -0110100 Thomsen 6 -0110100 Urashima 6 -0110100 Onyszkiewicz 6 -0110100 Harff 6 -0110100 Agoglia 6 -0110100 Herzstein 6 -0110100 Hallward 6 -0110100 Khalid 6 -0110100 Renner 6 -0110100 Speiser 6 -0110100 Aristov 6 -0110100 Farina 6 -0110100 Lovelace 6 -0110100 Languetin 6 -0110100 Inonu 6 -0110100 Gianturco 6 -0110100 Filipiak 6 -0110100 Bartolacci 6 -0110100 Lackey 6 -0110100 Verghese 6 -0110100 DesLondes 6 -0110100 Nigris 6 -0110100 Ellerton 6 -0110100 Illeman 6 -0110100 Sukenik 6 -0110100 Wolcott 6 -0110100 Yearley 6 -0110100 Turpin 6 -0110100 Thielsch 6 -0110100 Tsutsumi 6 -0110100 Dusault 6 -0110100 Sodini 6 -0110100 Westerberg 6 -0110100 Pippin 6 -0110100 Schrager 6 -0110100 Chowdry 6 -0110100 Kapnick 6 -0110100 Wainer 6 -0110100 Superfon 6 -0110100 Warrilow 6 -0110100 Berio 6 -0110100 DeGennaro 6 -0110100 Siconolfi 6 -0110100 Baxt 6 -0110100 Epes 6 -0110100 Schweiker 6 -0110100 Borten 6 -0110100 Ayoub 6 -0110100 Gavaghan 6 -0110100 Machado 6 -0110100 Dicello 6 -0110100 Weadock 6 -0110100 Younker 6 -0110100 Diffrient 6 -0110100 Jain 6 -0110100 Glimcher 6 -0110100 Ippolito 6 -0110100 Maisel 6 -0110100 Casale 6 -0110100 Tsipis 6 -0110100 Economou 6 -0110100 Sadek 6 -0110100 Dubler 6 -0110100 Alder 6 -0110100 Strub 6 -0110100 Matsuura 6 -0110100 Ishimura 6 -0110100 Pinkus 6 -0110100 Tulis 6 -0110100 Namin 6 -0110100 Meaney 6 -0110100 Tredici 6 -0110100 Hofeller 6 -0110100 Gilfoil 6 -0110100 Wobst 6 -0110100 Franzen 6 -0110100 Chikos 6 -0110100 Goodell 6 -0110100 Siller 6 -0110100 Gist 6 -0110100 Davidian 6 -0110100 Sapolsky 6 -0110100 Thomasson 6 -0110100 Berrios 6 -0110100 Fargeot 6 -0110100 Petkov 6 -0110100 McKeen 6 -0110100 Heilbron 6 -0110100 Burness 6 -0110100 Elorriaga 6 -0110100 Eischeid 6 -0110100 Spitzmiller 6 -0110100 Leuschel 6 -0110100 Smolow 6 -0110100 Balter 6 -0110100 Nevis 6 -0110100 Deanes 6 -0110100 Luczywo 6 -0110100 Bovetti 6 -0110100 Mahmood 6 -0110100 Doull 6 -0110100 Capasso 6 -0110100 Grappelli 6 -0110100 Satchell 6 -0110100 Brockner 6 -0110100 Hallaren 6 -0110100 Windt 6 -0110100 Aschauer 6 -0110100 LeCompte 6 -0110100 Ewell 6 -0110100 Mucha 6 -0110100 Berrigan 6 -0110100 Federbush 6 -0110100 Matsukura 6 -0110100 Bruggerre 6 -0110100 Hanlin 6 -0110100 Janizsewski 6 -0110100 McClay 6 -0110100 Banerji 6 -0110100 Pfeifer 6 -0110100 Mehle 6 -0110100 Tomasson 6 -0110100 Baione 6 -0110100 Norgren 6 -0110100 Lindholm 6 -0110100 Frese 6 -0110100 Wygod 6 -0110100 Hasbargen 6 -0110100 Gittleman 6 -0110100 Searles 6 -0110100 Quartin 6 -0110100 Villarreal 6 -0110100 Tidmore 6 -0110100 Egener 6 -0110100 Hoiles 6 -0110100 Simmert 6 -0110100 McGann 6 -0110100 Drescher 6 -0110100 Spiotto 6 -0110100 Lamphier 6 -0110100 Keidel 6 -0110100 Cheval 6 -0110100 Nagaoka 6 -0110100 Dat 6 -0110100 Flamm 6 -0110100 Doanh 6 -0110100 Utter 6 -0110100 Makeba 6 -0110100 Nardi 6 -0110100 Segopolo 6 -0110100 Segre 6 -0110100 Selznick 6 -0110100 Bergstein 6 -0110100 Poulsen 6 -0110100 Lachs 6 -0110100 Rathmann 6 -0110100 Mazzella 6 -0110100 Trauscht 6 -0110100 Stannard 6 -0110100 Lieppe 6 -0110100 Fenyvessy 6 -0110100 Vinocur 6 -0110100 Todenhoefer 6 -0110100 Rahall 6 -0110100 Tose 6 -0110100 Munn 6 -0110100 McGehee 6 -0110100 Cragg 6 -0110100 Schuller 6 -0110100 Andjaparidze 6 -0110100 Maday 6 -0110100 Bronkema 6 -0110100 Gandolf 6 -0110100 Ammon 6 -0110100 Rudder 6 -0110100 Blaylock 6 -0110100 Ruppert 6 -0110100 Schiaffino 6 -0110100 Prillaman 6 -0110100 Oltman 6 -0110100 Saposnick 6 -0110100 Bookhout 6 -0110100 Sotnikov 6 -0110100 Milling-Stanley 6 -0110100 Antone 6 -0110100 Lisk 6 -0110100 Alessandrini 6 -0110100 Ruud 6 -0110100 Saddler 6 -0110100 Kulani 6 -0110100 Falla 6 -0110100 Bachynsky 6 -0110100 Gledhill 6 -0110100 Puglisi 6 -0110100 Nordby 6 -0110100 Tufaro 6 -0110100 Valdes 6 -0110100 Franey 6 -0110100 Gullickson 6 -0110100 Dicks 6 -0110100 Brandmeier 6 -0110100 Hinzack 6 -0110100 Haun 6 -0110100 Geli 6 -0110100 RoAne 6 -0110100 Ressler 6 -0110100 Aslam 6 -0110100 Phibbs 6 -0110100 Vines 6 -0110100 Csepregi 6 -0110100 Feofanov 6 -0110100 Keverian 6 -0110100 Benabe 6 -0110100 Bamford 6 -0110100 Neumark 6 -0110100 Terragno 6 -0110100 Bruecher 6 -0110100 Brison 6 -0110100 Tsuchihashi 6 -0110100 Siskel 6 -0110100 Arndt 6 -0110100 Gaon 6 -0110100 Sohmen 6 -0110100 Bendana 6 -0110100 Ulvert 6 -0110100 Bejart 6 -0110100 Omura 6 -0110100 Tidwell 6 -0110100 Zelvin 6 -0110100 Callander 6 -0110100 Bartha 6 -0110100 Penfil 6 -0110100 Vreeland 6 -0110100 Triomphe 6 -0110100 Gusella 6 -0110100 Chuang 6 -0110100 Bidwill 6 -0110100 Hallquist 6 -0110100 Charvillat 6 -0110100 Esping 6 -0110100 Offit 6 -0110100 Raftery 6 -0110100 Leppard 6 -0110100 Barwick 6 -0110100 Baggaley 6 -0110100 Prindl 6 -0110100 Riboud 6 -0110100 Pottruck 6 -0110100 Smukler 6 -0110100 Kirwan 6 -0110100 Bardos 6 -0110100 Prevost 6 -0110100 Ruenheck 6 -0110100 Marris 6 -0110100 Bhojani 6 -0110100 Penhallegon 6 -0110100 Steedman 6 -0110100 DeSio 6 -0110100 Ivanier 6 -0110100 Weisbach 6 -0110100 Gorr 6 -0110100 Lupberger 6 -0110100 Broady 6 -0110100 Stethem 6 -0110100 Groover 6 -0110100 Wager 6 -0110100 Lamby 6 -0110100 deGueldre 6 -0110100 Steagall 6 -0110100 Kragt 6 -0110100 Mnuchin 6 -0110100 Youngquist 6 -0110100 Pearse 6 -0110100 Zawacky 6 -0110100 Bocuse 6 -0110100 Bommarito 6 -0110100 Arader 6 -0110100 Peretz 6 -0110100 Dinneen 6 -0110100 Siciliano 6 -0110100 Fonseca 6 -0110100 McEachern 6 -0110100 Witcher 6 -0110100 Nagata 6 -0110100 Thymius 6 -0110100 Karenina 6 -0110100 Slone 6 -0110100 Imershein 6 -0110100 Schwerin 6 -0110100 Beitz 6 -0110100 Liikanen 6 -0110100 Ungar 6 -0110100 Weintz 6 -0110100 Verveer 6 -0110100 Gnaizda 6 -0110100 Larkham 6 -0110100 Hirai 6 -0110100 DiVall 6 -0110100 Capshaw 6 -0110100 Ohshima 6 -0110100 Argabright 6 -0110100 Klugman 6 -0110100 Soffer 6 -0110100 Schaible 6 -0110100 Voytko 6 -0110100 Davidovits 6 -0110100 Dugger 6 -0110100 Riebman 6 -0110100 Higashi 6 -0110100 Hardesty 6 -0110100 Mantegna 6 -0110100 Tanen 6 -0110100 Tretiak 6 -0110100 Greis 6 -0110100 Frandsen 6 -0110100 Nunez 6 -0110100 Ehrmann 6 -0110100 Burghart 6 -0110100 Cerier 6 -0110100 Collard 6 -0110100 Stull 6 -0110100 Brendel 6 -0110100 Smolinski 6 -0110100 Eisenach 6 -0110100 Jurczak 6 -0110100 Waranius 6 -0110100 Trainor 6 -0110100 Matl 6 -0110100 Drogoul 6 -0110100 Seifer 6 -0110100 Gubaidulina 6 -0110100 Mlecko 6 -0110100 Whitmire 6 -0110100 Ledezma 6 -0110100 Gersten 6 -0110100 Schefer 6 -0110100 Clow 6 -0110100 Pearsall 6 -0110100 Craugh 6 -0110100 Mathavious 6 -0110100 Nahmad 6 -0110100 Meador 6 -0110100 Keale 6 -0110100 Ringoen 6 -0110100 Fromkin 6 -0110100 Zimtbaum 6 -0110100 Kareiva 6 -0110100 Heuer 6 -0110100 Onen 6 -0110100 Tiwari 6 -0110100 Grzywinski 6 -0110100 Metviner 6 -0110100 Vykukal 6 -0110100 Yankovic 6 -0110100 Kawabe 6 -0110100 Ardia 6 -0110100 Sabah 6 -0110100 Chiene 6 -0110100 Daughney 6 -0110100 Thorndal 6 -0110100 Boykin 6 -0110100 Salauddin 6 -0110100 Granahan 6 -0110100 Davila 6 -0110100 Lewites 6 -0110100 Hanninen 6 -0110100 Overman 6 -0110100 Mhyren 6 -0110100 Wandler 6 -0110100 Emkin 6 -0110100 al-Khayil 6 -0110100 Murdy 6 -0110100 McCombs 6 -0110100 Majrooh 6 -0110100 Amitai 6 -0110100 Radin 6 -0110100 Ahrens 6 -0110100 Louw 6 -0110100 Caldera 6 -0110100 Kosters 6 -0110100 McCreary 6 -0110100 Byker 6 -0110100 Daremblum 6 -0110100 Zuck 6 -0110100 Freitag 6 -0110100 Toldrian 6 -0110100 Strasma 6 -0110100 Lassner 6 -0110100 Cannestra 6 -0110100 Topham 6 -0110100 Mulanaphy 6 -0110100 Amstad 6 -0110100 Bucksbaum 6 -0110100 Schumpeter 6 -0110100 Brookhiser 6 -0110100 Bergonzi 6 -0110100 Kornreich 6 -0110100 Berenger 6 -0110100 Ecker 6 -0110100 Weidman 6 -0110100 Abela 6 -0110100 Imamura 6 -0110100 Kohlmeyer 6 -0110100 Marrero 6 -0110100 Ader 6 -0110100 Behravesh 6 -0110100 Georgas 6 -0110100 Brozman 6 -0110100 Fanfani 6 -0110100 Deieso 6 -0110100 Philby 6 -0110100 Shantz 6 -0110100 Kivell 6 -0110100 Honegger 6 -0110100 Freston 6 -0110100 Severinson 6 -0110100 Yevtushenko 6 -0110100 Ringer 6 -0110100 Kneale 6 -0110100 Cockfield 6 -0110100 Schlossberg 6 -0110100 Fukuyama 6 -0110100 Kragen 6 -0110100 Scioscia 6 -0110100 Begelman 6 -0110100 Sealey 6 -0110100 Schleuning 6 -0110100 Littleboy 6 -0110100 Grundhofer 6 -0110100 Minucci 6 -0110100 Florendo 6 -0110100 Bussey 6 -0110100 Machrone 6 -0110100 Boursicot 6 -0110100 Graboys 6 -0110100 Souran 6 -0110100 Gomes 6 -0110100 Koranda 6 -0110100 Axelgard 6 -0110100 Zicarelli 6 -0110100 Vallens 6 -0110100 Branscomb 6 -0110100 Gartland 6 -0110100 Kowalczyk 6 -0110100 McKeithen 6 -0110100 Polak 6 -0110100 Jumblatt 6 -0110100 Gerstel 6 -0110100 Delonis 6 -0110100 Hagood 6 -0110100 Rosoff 6 -0110100 Ghouse 6 -0110100 Flusser 6 -0110100 Kitayama 6 -0110100 Masi 6 -0110100 Tetrick 6 -0110100 Crossman 6 -0110100 Ruffi 6 -0110100 Sillin 6 -0110100 Borgman 6 -0110100 Krenz 6 -0110100 Garrido 6 -0110100 Geissinger 6 -0110100 Zobrist 6 -0110100 Correa 6 -0110100 Levran 6 -0110100 Chingos 6 -0110100 Jarrat 6 -0110100 Storin 6 -0110100 Hanly 6 -0110100 Schaufuss 6 -0110100 Baily 6 -0110100 Tantoco 6 -0110100 Bukowski 6 -0110100 Ikeda 6 -0110100 Shockley 6 -0110100 Onassis 6 -0110100 Grindle 6 -0110100 Killgore 6 -0110100 Salis 6 -0110100 Schliemann 6 -0110100 Edinger 6 -0110100 Calabrese 6 -0110100 Steinhauer 6 -0110100 Hertog 6 -0110100 Simcox 6 -0110100 Schorsch 6 -0110100 Wilpolt 6 -0110100 Caulfield 6 -0110100 Munroe 6 -0110100 Galligan 6 -0110100 Gobie 6 -0110100 Indiek 6 -0110100 Meeker 6 -0110100 Imperatore 6 -0110100 Gaudette 6 -0110100 Maiman 6 -0110100 Skier 6 -0110100 Haviluk 6 -0110100 Glaze 6 -0110100 Enloe 6 -0110100 Slott 6 -0110100 Leibovit 6 -0110100 Glazov 6 -0110100 Debe 6 -0110100 Nakano 6 -0110100 Foveaux 6 -0110100 Redwine 6 -0110100 Wosczyna 6 -0110100 Watrous 6 -0110100 Tonyes 6 -0110100 Hinchey 6 -0110100 Braswell 6 -0110100 Ahlgren 6 -0110100 Moakley 6 -0110100 Montano 6 -0110100 Corella 6 -0110100 Mottice 6 -0110100 Height 6 -0110100 Hessman 6 -0110100 McClendon 6 -0110100 Baldassare 6 -0110100 Ellspermann 6 -0110100 Nott 6 -0110100 Toko 6 -0110100 Breier 6 -0110100 Trzeciakowski 6 -0110100 Sisson 6 -0110100 Bobker 6 -0110100 Formato 6 -0110100 Savain 6 -0110100 Alt 6 -0110100 Lillard 6 -0110100 Boureslan 6 -0110100 Viafara 6 -0110100 Moonjian 6 -0110100 Killpack 6 -0110100 Coltman 6 -0110100 Wingfield 6 -0110100 Janke 6 -0110100 Mermelstein 6 -0110100 Sweger 6 -0110100 Varner 6 -0110100 Abedi 6 -0110100 Starkey 6 -0110100 Druckman 6 -0110100 Howland-Jackson 6 -0110100 Streicker 6 -0110100 Benasuli 6 -0110100 Karydakis 6 -0110100 Herzberg 6 -0110100 Lundgren 6 -0110100 Swillinger 6 -0110100 Southway 6 -0110100 Kaspersen 6 -0110100 Bennack 6 -0110100 Nutt 6 -0110100 Sarkis 6 -0110100 Bostick 6 -0110100 Kaldahl 6 -0110100 Collyer 6 -0110100 Erra 6 -0110100 Gomory 6 -0110100 Gurwitz 6 -0110100 Vuono 6 -0110100 Broyles 6 -0110100 Grebey 6 -0110100 Canterino 6 -0110100 Huerta 6 -0110100 Skurdy 6 -0110100 Stekly 6 -0110100 Musser 6 -0110100 Ferrell 6 -0110100 Dannemiller 6 -0110100 Robinowitz 6 -0110100 Mirka 6 -0110100 Jech 6 -0110100 Gottwald 6 -0110100 Hazy 6 -0110100 Gemmell 6 -0110100 Balatsos 6 -0110100 Kapioltas 6 -0110100 Husney 6 -0110100 Shiina 6 -0110100 Rodriquez 6 -0110100 Volio 6 -0110100 Shima 6 -0110100 Haggett 6 -0110100 Hasselbrack 6 -0110100 Gissen 6 -0110100 Marlette 6 -0110100 Schvey 6 -0110100 Hurcomb 6 -0110100 Gyll 6 -0110100 Beckmann 6 -0110100 Wurts 6 -0110100 Pestillo 6 -0110100 Goldner 6 -0110100 Najork 6 -0110100 Charney 6 -0110100 Marriner 6 -0110100 Schwantner 6 -0110100 Ancier 6 -0110100 Delahanty 6 -0110100 Belnick 6 -0110100 Stec 6 -0110100 Marren 6 -0110100 Sheils 6 -0110100 Weirick 6 -0110100 Eisenstadt 6 -0110100 Sehnert 6 -0110100 Critchley 6 -0110100 Parkman 6 -0110100 Dahlman 6 -0110100 Linacre 6 -0110100 Fouchard 6 -0110100 Haehl 6 -0110100 Sassower 6 -0110100 Mastronardo 6 -0110100 Huyser 6 -0110100 Giurleo 6 -0110100 Rumery 6 -0110100 Yorinks 6 -0110100 Eskin 6 -0110100 Stanfill 6 -0110100 Krings 6 -0110100 Cohon 6 -0110100 Duffett 6 -0110100 Charpentier 6 -0110100 Rognlien 6 -0110100 Paddon 6 -0110100 Mencher 6 -0110100 Marjai 6 -0110100 Brann 6 -0110100 Barrack 6 -0110100 Kusukawa 6 -0110100 Tabery 6 -0110100 Heitkemper 6 -0110100 Carradine 6 -0110100 Emig 6 -0110100 Gossett 6 -0110100 Sinquefield 6 -0110100 Niekerk 6 -0110100 Mariotti 6 -0110100 Tarumizu 6 -0110100 Czapor 6 -0110100 Jepsen 6 -0110100 Meneau 6 -0110100 Stapf 6 -0110100 Acosta 6 -0110100 Critchlow 6 -0110100 Rendleman 6 -0110100 Hoyer 6 -0110100 Norred 6 -0110100 Arbatov 6 -0110100 Moley 6 -0110100 Emhiser 6 -0110100 Patrie 6 -0110100 Trimmer 6 -0110100 Habash 6 -0110100 Bair 6 -0110100 McShane 6 -0110100 Vojta 6 -0110100 Waigel 6 -0110100 Ghali 6 -0110100 Starckmann 6 -0110100 Leis 6 -0110100 Pavarini 6 -0110100 Eisenman 6 -0110100 Khalis 6 -0110100 Menils 6 -0110100 Zuniga 6 -0110100 Weitz 6 -0110100 Gewirtz 6 -0110100 Gleske 6 -0110100 Bufe 6 -0110100 Pfitzinger 6 -0110100 Tamiso 6 -0110100 Thain 6 -0110100 Leichter 6 -0110100 McCollister 6 -0110100 Traeger 6 -0110100 Krauthammer 6 -0110100 Sandiford 6 -0110100 Buttner 6 -0110100 Russert 6 -0110100 Soiffer 6 -0110100 Urbel 6 -0110100 Liem 6 -0110100 Poss 6 -0110100 Cornelissen 6 -0110100 Schreiner 7 -0110100 Zagorski 7 -0110100 Isherwood 7 -0110100 Sarofim 7 -0110100 Downie 7 -0110100 Andruskevich 7 -0110100 Tripp 7 -0110100 Guglielmi 7 -0110100 Schramm 7 -0110100 Kieselmann 7 -0110100 Gassman 7 -0110100 Kinst 7 -0110100 Koido 7 -0110100 Fukuda 7 -0110100 McGinty 7 -0110100 Kuranari 7 -0110100 Lemieux 7 -0110100 Benchley 7 -0110100 Santoro 7 -0110100 Kovich 7 -0110100 Ubelhart 7 -0110100 Kagami 7 -0110100 Alterman 7 -0110100 Novelli 7 -0110100 Carrel 7 -0110100 Lasater 7 -0110100 MacDougall 7 -0110100 Hudnut 7 -0110100 Scoy 7 -0110100 Abramowicz 7 -0110100 Nolte 7 -0110100 Venter 7 -0110100 Minto 7 -0110100 Seneker 7 -0110100 Bliley 7 -0110100 Hammerman 7 -0110100 Amaral 7 -0110100 Brisby 7 -0110100 Bianco 7 -0110100 Bales 7 -0110100 Manford 7 -0110100 Rosan 7 -0110100 Telesca 7 -0110100 Beauvais 7 -0110100 Sette 7 -0110100 Brownmiller 7 -0110100 Yurowitz 7 -0110100 Vorhauer 7 -0110100 Bakken 7 -0110100 Lacroute 7 -0110100 Rosasco 7 -0110100 Baltodano 7 -0110100 Hulett 7 -0110100 Cwiertnia 7 -0110100 Spendley 7 -0110100 Beachum 7 -0110100 Heckman 7 -0110100 Debs 7 -0110100 Stallibrass 7 -0110100 Ludtke 7 -0110100 Jager 7 -0110100 Decter 7 -0110100 Shibata 7 -0110100 McNish 7 -0110100 Poulson 7 -0110100 Machol 7 -0110100 Staring 7 -0110100 Banzhaf 7 -0110100 Dufour 7 -0110100 Gajda 7 -0110100 Berls 7 -0110100 Heim 7 -0110100 Aksyonov 7 -0110100 Kitt 7 -0110100 Heist 7 -0110100 Arnell 7 -0110100 Borletti 7 -0110100 Benstock 7 -0110100 Borick 7 -0110100 Vingo 7 -0110100 Leppo 7 -0110100 Tippet 7 -0110100 Azinger 7 -0110100 Lazear 7 -0110100 Hartt 7 -0110100 Hochberg 7 -0110100 Henney 7 -0110100 Sollish 7 -0110100 Branitzki 7 -0110100 Ryerson 7 -0110100 Flawn 7 -0110100 Berard 7 -0110100 Kawakami 7 -0110100 Bunton 7 -0110100 Goldfus 7 -0110100 Brunson 7 -0110100 Haugen 7 -0110100 Algernon 7 -0110100 Akhromeyev 7 -0110100 Youngman 7 -0110100 Ayckbourn 7 -0110100 Visclosky 7 -0110100 Eads 7 -0110100 Rayfield 7 -0110100 Beuys 7 -0110100 Nyers 7 -0110100 Wermiel 7 -0110100 Grossi 7 -0110100 Colombari 7 -0110100 Pardus 7 -0110100 Lorelli 7 -0110100 Schipke 7 -0110100 Grossbard 7 -0110100 Zegeer 7 -0110100 Takei 7 -0110100 Placke 7 -0110100 Zuccotti 7 -0110100 Muth 7 -0110100 Huddleston 7 -0110100 Hoopengardner 7 -0110100 Waterfield 7 -0110100 Schmuck 7 -0110100 Bournias 7 -0110100 Clephane 7 -0110100 Wilms 7 -0110100 Sager 7 -0110100 Farb 7 -0110100 Spillane 7 -0110100 Donell 7 -0110100 Takurabe 7 -0110100 Lortie 7 -0110100 Neumeister 7 -0110100 Szot 7 -0110100 Gruneich 7 -0110100 Kissick 7 -0110100 Bissonnette 7 -0110100 Zinman 7 -0110100 Liebeler 7 -0110100 Varmus 7 -0110100 Meinert 7 -0110100 Katanyu 7 -0110100 Satter 7 -0110100 Follett 7 -0110100 Moussa 7 -0110100 Asimov 7 -0110100 Cottle 7 -0110100 Slutsky 7 -0110100 Arlauskas 7 -0110100 Guasch 7 -0110100 Levison 7 -0110100 Hilder 7 -0110100 Schnitz 7 -0110100 Taitt 7 -0110100 Gienow 7 -0110100 Townley 7 -0110100 LeBoutillier 7 -0110100 Padden 7 -0110100 Permut 7 -0110100 Rugeroni 7 -0110100 Benes 7 -0110100 Asimow 7 -0110100 Gan 7 -0110100 Cavanagh 7 -0110100 Reissman 7 -0110100 Ritger 7 -0110100 Molinaro 7 -0110100 Marotto 7 -0110100 Sadlowski 7 -0110100 Stechler 7 -0110100 Fruehling 7 -0110100 Clapman 7 -0110100 Malbon 7 -0110100 Bakshi 7 -0110100 Haynsworth 7 -0110100 Lamm 7 -0110100 Domeniconi 7 -0110100 Keel 7 -0110100 Delucia 7 -0110100 Mathisen 7 -0110100 Welling 7 -0110100 Cervanek 7 -0110100 Muggeridge 7 -0110100 Hollinshead 7 -0110100 Haslam 7 -0110100 Ghose 7 -0110100 Spalvins 7 -0110100 Boughton 7 -0110100 Luisi 7 -0110100 Spangenberg 7 -0110100 Tonomura 7 -0110100 Woodcock 7 -0110100 Parisi 7 -0110100 Blume 7 -0110100 Goodstein 7 -0110100 Ishibashi 7 -0110100 Cammisa 7 -0110100 Lutfalla 7 -0110100 Nerlich 7 -0110100 Tamm 7 -0110100 Chopra 7 -0110100 Renschler 7 -0110100 McMurtry 7 -0110100 Bechtle 7 -0110100 Annecharico 7 -0110100 Farge 7 -0110100 Jamieson 7 -0110100 McWherter 7 -0110100 Waldhorn 7 -0110100 Bester 7 -0110100 Barkshire 7 -0110100 Wollack 7 -0110100 Mower 7 -0110100 Elwell 7 -0110100 Sevier 7 -0110100 Ashman 7 -0110100 Sayegh 7 -0110100 Shimoda 7 -0110100 Trutt 7 -0110100 Bencivenga 7 -0110100 Dalfen 7 -0110100 Haydon 7 -0110100 Daronco 7 -0110100 Mourad 7 -0110100 Winkelman 7 -0110100 Carden 7 -0110100 Gatien 7 -0110100 Kagarlitsky 7 -0110100 Enholme 7 -0110100 Quigg 7 -0110100 Lalonde 7 -0110100 Cerankosky 7 -0110100 Beaufrere 7 -0110100 Pledger 7 -0110100 Glennon 7 -0110100 Kenworthy 7 -0110100 Moric 7 -0110100 Yeiri 7 -0110100 Ise 7 -0110100 Schieren 7 -0110100 Kalelkar 7 -0110100 Whiteneir 7 -0110100 Seix 7 -0110100 Pothitos 7 -0110100 Yastrow 7 -0110100 Bridgeman 7 -0110100 Trost 7 -0110100 Jaroszynski 7 -0110100 Raisler 7 -0110100 Serfling 7 -0110100 Diss 7 -0110100 Hrubik 7 -0110100 Ortenzio 7 -0110100 Ponzetti 7 -0110100 Longley 7 -0110100 Pasquarelli 7 -0110100 Cihak 7 -0110100 Kolokoff 7 -0110100 Morby 7 -0110100 Sze 7 -0110100 Lipnick 7 -0110100 Kirmse 7 -0110100 Schmeltz 7 -0110100 Weissman-Ganes 7 -0110100 Megahan 7 -0110100 Charpie 7 -0110100 Tange 7 -0110100 Kasriel 7 -0110100 Kemplin 7 -0110100 Hiner 7 -0110100 Berthelsen 7 -0110100 Lindo 7 -0110100 Eichberg 7 -0110100 Strangwayes-Booth 7 -0110100 Bronow 7 -0110100 Zecher 7 -0110100 Sansone 7 -0110100 Hilger 7 -0110100 Legere 7 -0110100 Klimek 7 -0110100 Woodhouse 7 -0110100 Salzhauer 7 -0110100 Hawass 7 -0110100 Walinsky 7 -0110100 Meghdar 7 -0110100 Kempner 7 -0110100 Abio 7 -0110100 Sawhill 7 -0110100 Dini 7 -0110100 Amano 7 -0110100 Levchenko 7 -0110100 Mottola 7 -0110100 Schoenhals 7 -0110100 Fredo 7 -0110100 Hershman 7 -0110100 Hiriart 7 -0110100 Scheider 7 -0110100 Elisha 7 -0110100 Hsiao 7 -0110100 Glas 7 -0110100 Chelimsky 7 -0110100 Carosi 7 -0110100 Yorks 7 -0110100 Woitschatzke 7 -0110100 Kucan 7 -0110100 Grahams 7 -0110100 Bergheim 7 -0110100 Morgun 7 -0110100 Vinso 7 -0110100 Amirav 7 -0110100 Busey 7 -0110100 Kissane 7 -0110100 Dhlomo 7 -0110100 Shoumaker 7 -0110100 Rigatuso 7 -0110100 Bryer 7 -0110100 Scheidler 7 -0110100 Wieland 7 -0110100 Sciandra 7 -0110100 Joudi 7 -0110100 Loya 7 -0110100 Ahlstrom 7 -0110100 Willetts 7 -0110100 Wetzler 7 -0110100 Byerlein 7 -0110100 Damsel 7 -0110100 Franssen 7 -0110100 Brenneke 7 -0110100 Schieffer 7 -0110100 Gingell 7 -0110100 Martellini 7 -0110100 Turmel 7 -0110100 Lyssan 7 -0110100 Anrig 7 -0110100 Davidow 7 -0110100 Garonzik 7 -0110100 Brookman 7 -0110100 Mixon 7 -0110100 Mancini 7 -0110100 Sordoni 7 -0110100 Wiesel 7 -0110100 Fujimoto 7 -0110100 Vegesna 7 -0110100 Pocock 7 -0110100 Burgio 7 -0110100 Baitz 7 -0110100 Verri 7 -0110100 Gentile 7 -0110100 Inserra 7 -0110100 Catsimatidis 7 -0110100 Adorno 7 -0110100 Lattimore 7 -0110100 Andresen 7 -0110100 Gantt 7 -0110100 Cassel 7 -0110100 Werdesheim 7 -0110100 Mengel 7 -0110100 Fiechter 7 -0110100 Ault 7 -0110100 Delebarre 7 -0110100 Tammen 7 -0110100 Lichten 7 -0110100 Teran 7 -0110100 Suttmeier 7 -0110100 Eisenmann 7 -0110100 Mancera 7 -0110100 Hamedi 7 -0110100 Arton 7 -0110100 Withers 7 -0110100 Pressburger 7 -0110100 Gargill 7 -0110100 Toner 7 -0110100 Bergsma 7 -0110100 Bischofberger 7 -0110100 Mettlen 7 -0110100 Kueter 7 -0110100 Hansche 7 -0110100 Owades 7 -0110100 Lees 7 -0110100 Magherini 7 -0110100 Luckyn-Malone 7 -0110100 Noteware 7 -0110100 Molineaux 7 -0110100 Spafford 7 -0110100 Provus 7 -0110100 Vicars 7 -0110100 Biggers 7 -0110100 Mortner 7 -0110100 Harms 7 -0110100 Milosh 7 -0110100 Velzke 7 -0110100 Napp 7 -0110100 Iversen 7 -0110100 Bovin 7 -0110100 McKane 7 -0110100 Baughman 7 -0110100 Yepsen 7 -0110100 Voinovich 7 -0110100 Chalsty 7 -0110100 Sorimachi 7 -0110100 Kerby 7 -0110100 Larijani 7 -0110100 Birman 7 -0110100 Benatar 7 -0110100 Lomen 7 -0110100 Ashkenazy 7 -0110100 Reichardt 7 -0110100 Loh 7 -0110100 Stang 7 -0110100 Witmer 7 -0110100 Antoon 7 -0110100 Rumack 7 -0110100 Elberson 7 -0110100 Chritton 7 -0110100 Ellemann-Jensen 7 -0110100 Symes 7 -0110100 Canavan 7 -0110100 Chafetz 7 -0110100 Motohashi 7 -0110100 Procopio 7 -0110100 Leny 7 -0110100 Bonavia 7 -0110100 Chipello 7 -0110100 Coopersmith 7 -0110100 Nabors 7 -0110100 Ollman 7 -0110100 Whiteley 7 -0110100 Kopko 7 -0110100 Birchler 7 -0110100 Timmeny 7 -0110100 Gogel 7 -0110100 Brumfield 7 -0110100 Drennan 7 -0110100 Machida 7 -0110100 Seegers 7 -0110100 Galane 7 -0110100 Ascani 7 -0110100 Suckow 7 -0110100 Zagladin 7 -0110100 Miwa 7 -0110100 Klauser 7 -0110100 Armes 7 -0110100 Peake 7 -0110100 Slotnick 7 -0110100 Kradin 7 -0110100 Cason 7 -0110100 Klimov 7 -0110100 Shegog 7 -0110100 Steinkrauss 7 -0110100 Karetsky 7 -0110100 Vinken 7 -0110100 Mukherjee 7 -0110100 Gillet 7 -0110100 Heidel 7 -0110100 Bunner 7 -0110100 Kuriansky 7 -0110100 Hairston 7 -0110100 Hallbauer 7 -0110100 Carrico 7 -0110100 Erman 7 -0110100 Doernberg 7 -0110100 Marston 7 -0110100 Garrity 7 -0110100 Cyr 7 -0110100 Blackmon 7 -0110100 Gephart 7 -0110100 Taussig 7 -0110100 Poduska 7 -0110100 Sarcinelli 7 -0110100 Yoffie 7 -0110100 Hobbing 7 -0110100 Barcella 7 -0110100 Lewinsky 7 -0110100 Brucia 7 -0110100 Wellek 7 -0110100 DeSillers 7 -0110100 Grobler 7 -0110100 Garvin 7 -0110100 Weems 7 -0110100 Menges 7 -0110100 Finstrom 7 -0110100 Ainge 7 -0110100 Peyser 7 -0110100 Candlish 7 -0110100 Slifka 7 -0110100 Balut 7 -0110100 DeRonne 7 -0110100 Arendsee 7 -0110100 Shalom 7 -0110100 Herring 7 -0110100 Hatton 7 -0110100 Pendergast 7 -0110100 Dusenberry 7 -0110100 Ponchot 7 -0110100 Fischer-Erlach 7 -0110100 Massaro 7 -0110100 Crager 7 -0110100 Ting 7 -0110100 Otten 7 -0110100 DiBlasi 7 -0110100 Rowny 7 -0110100 Meller 7 -0110100 Bushell 7 -0110100 Blitzer 7 -0110100 Mutsch 7 -0110100 Lothson 7 -0110100 Schwerdt 7 -0110100 Levitan 7 -0110100 Consiglio 7 -0110100 Semionenkov 7 -0110100 Darragh 7 -0110100 Brunette 7 -0110100 Brinkerhoff 7 -0110100 Terkhorn 7 -0110100 Arai 7 -0110100 Gaynes 7 -0110100 Bongarten 7 -0110100 Herrick 7 -0110100 Gish 7 -0110100 Kunz 7 -0110100 Siemel 7 -0110100 Schalk 7 -0110100 Battison 7 -0110100 Marcu 7 -0110100 Kilborne 7 -0110100 Scurria 7 -0110100 Rhines 7 -0110100 Larsson 7 -0110100 Altamuro 7 -0110100 Nkrumah 7 -0110100 Sauvage 7 -0110100 Semegran 7 -0110100 Talebian 7 -0110100 Geddes 7 -0110100 Onstad 7 -0110100 Mattick 7 -0110100 Dunlaevy 7 -0110100 Bruynes 7 -0110100 Blagg 7 -0110100 Ghattas 7 -0110100 Studds 7 -0110100 Maystadt 7 -0110100 Zeisler 7 -0110100 Roeller 7 -0110100 Diggle 7 -0110100 Buruma 7 -0110100 Meck 7 -0110100 Yee 7 -0110100 Bogus 7 -0110100 Auber 7 -0110100 Ihlenfeldt 7 -0110100 Stufflebeam 7 -0110100 Jurgensmeyer 7 -0110100 Tawes 7 -0110100 Ramat 7 -0110100 Eaves 7 -0110100 Sarazen 7 -0110100 Tyree 7 -0110100 Samojlik 7 -0110100 Buschbaum 7 -0110100 Rappoport 7 -0110100 Lindquist 7 -0110100 Peyman 7 -0110100 Whatley 7 -0110100 Bock 7 -0110100 Wilczynski 7 -0110100 Marder 7 -0110100 Houk 7 -0110100 Durst 7 -0110100 Mock 7 -0110100 Bubb 7 -0110100 Logothetis 7 -0110100 Endo 7 -0110100 daSilva 7 -0110100 Carlberg 7 -0110100 Eakle 7 -0110100 Kirtley 7 -0110100 Vieira 7 -0110100 Giudici 7 -0110100 Hagstrom 7 -0110100 Paredes 7 -0110100 Bobolas 7 -0110100 Dzhirkvelov 7 -0110100 Kaptur 7 -0110100 Dott 7 -0110100 Kuzara 7 -0110100 Belew 7 -0110100 Thibault 7 -0110100 Feighan 7 -0110100 Rowley 7 -0110100 Saloojee 7 -0110100 Koskotas 7 -0110100 Tabuchi 7 -0110100 Mims 7 -0110100 Blampied 7 -0110100 Bleier 7 -0110100 Galinsky 7 -0110100 deRegt 7 -0110100 Dalhouse 7 -0110100 Pastore 7 -0110100 Auerback 7 -0110100 Smuin 7 -0110100 LaCroix 7 -0110100 Rubbia 7 -0110100 Locher 7 -0110100 Oestreich 7 -0110100 Frew 7 -0110100 MacDougal 7 -0110100 Buc 7 -0110100 Janson 7 -0110100 Digges 7 -0110100 Tarasoff 7 -0110100 Greenslet 7 -0110100 Linsley 7 -0110100 Serban 7 -0110100 Dass 7 -0110100 Teige 7 -0110100 Shcharansky 7 -0110100 Wallison 7 -0110100 Liggio 7 -0110100 Vastola 7 -0110100 Brittan 7 -0110100 Zaentz 7 -0110100 Auden 7 -0110100 Wheelock 7 -0110100 Fritsch 7 -0110100 Wicomb 7 -0110100 Sherer 7 -0110100 Azcuenaga 7 -0110100 Williford 7 -0110100 Heifetz 7 -0110100 Steelman 7 -0110100 Gumbiner 7 -0110100 Rosengarten 7 -0110100 Kohut 7 -0110100 Tomfohrde 7 -0110100 Boothby 7 -0110100 Filippello 7 -0110100 McFall 7 -0110100 Belafonte 7 -0110100 Farrington 7 -0110100 Plocar 7 -0110100 McGinn 7 -0110100 Prudhomme 7 -0110100 Wolverton 7 -0110100 Bechtold 7 -0110100 Salinger 7 -0110100 Heffner 7 -0110100 McAvity 7 -0110100 Klatsky 7 -0110100 Eyskens 7 -0110100 Balser 7 -0110100 Rafelson 7 -0110100 Kinch 7 -0110100 Trotman 7 -0110100 Sasaki 7 -0110100 Wibbelsman 7 -0110100 Stoltz 7 -0110100 Eiermann 7 -0110100 Bergerson 7 -0110100 Menon 7 -0110100 Kranz 7 -0110100 Birren 7 -0110100 Messing 7 -0110100 Stier 7 -0110100 Seff 7 -0110100 Biaggini 7 -0110100 Rieben 7 -0110100 Ozanne 7 -0110100 Obstfeld 7 -0110100 Mattis 7 -0110100 Eulich 7 -0110100 Halpin 7 -0110100 Rohde 7 -0110100 Corbeil 7 -0110100 ERLICK 7 -0110100 LIEBERMAN 7 -0110100 Bihari 7 -0110100 Kastelic 7 -0110100 Armbruster 7 -0110100 Winningham 7 -0110100 Grede 7 -0110100 Cossolotto 7 -0110100 Kerman 7 -0110100 Wittgraf 7 -0110100 Girouard 7 -0110100 Frere 7 -0110100 Soady 7 -0110100 Devereux 7 -0110100 Syp 7 -0110100 Guzzi 7 -0110100 Bruchhausen 7 -0110100 Xue 7 -0110100 Greenspun 7 -0110100 Teitell 7 -0110100 Goldschmid 7 -0110100 Voinov 7 -0110100 Strum 7 -0110100 Driggs 7 -0110100 Murchie 7 -0110100 Banko 7 -0110100 Tuley 7 -0110100 Plassard 8 -0110100 Wycoff 8 -0110100 Veen 8 -0110100 Finder 8 -0110100 Armandt 8 -0110100 Geis 8 -0110100 Garagiola 8 -0110100 Welter 8 -0110100 Linwick 8 -0110100 Grieve 8 -0110100 Wambaugh 8 -0110100 Ghez 8 -0110100 Conlin 8 -0110100 Pyatt 8 -0110100 Burgee 8 -0110100 Zoghby 8 -0110100 Strube 8 -0110100 Cousy 8 -0110100 Mazursky 8 -0110100 Faberman 8 -0110100 McEldowney 8 -0110100 Seaver 8 -0110100 Miyagawa 8 -0110100 Roehm 8 -0110100 Lawing 8 -0110100 Menk 8 -0110100 Feldberg 8 -0110100 Terreblanche 8 -0110100 Rinderer 8 -0110100 al-Sabah 8 -0110100 Sundquist 8 -0110100 Croft 8 -0110100 Murakami 8 -0110100 Hannesson 8 -0110100 Karns 8 -0110100 Bentz 8 -0110100 Heiblum 8 -0110100 Zornow 8 -0110100 Bodanis 8 -0110100 Capps 8 -0110100 Gratton 8 -0110100 Audran 8 -0110100 Rentschler 8 -0110100 Philbin 8 -0110100 Nars 8 -0110100 Staniar 8 -0110100 Mee 8 -0110100 Ustinov 8 -0110100 Hellinger 8 -0110100 Moulds 8 -0110100 Orb 8 -0110100 Charnoff 8 -0110100 Dennehy 8 -0110100 Sandoval 8 -0110100 Aguayo 8 -0110100 Piasio 8 -0110100 Carliner 8 -0110100 Leiter 8 -0110100 Parvin 8 -0110100 Franks 8 -0110100 Roedel 8 -0110100 Gormley 8 -0110100 Blakely 8 -0110100 Shifrin 8 -0110100 Agins 8 -0110100 Lellouche 8 -0110100 Floirenda 8 -0110100 Berbick 8 -0110100 Lauper 8 -0110100 Pritchett 8 -0110100 Madar 8 -0110100 Litvak 8 -0110100 Ade 8 -0110100 Bernsen 8 -0110100 Mizen 8 -0110100 Fildes 8 -0110100 Ellwood 8 -0110100 Lessing 8 -0110100 Hirshberg 8 -0110100 Topp 8 -0110100 Everington 8 -0110100 Frazzano 8 -0110100 Hartnett 8 -0110100 Cagnola 8 -0110100 Apcar 8 -0110100 Rauschenberg 8 -0110100 Veyne 8 -0110100 DeGraff 8 -0110100 Bilson 8 -0110100 Menuhin 8 -0110100 Talmadge 8 -0110100 Duerr 8 -0110100 Garrey 8 -0110100 Maceda 8 -0110100 Haigler 8 -0110100 Panfile 8 -0110100 Lahr 8 -0110100 Guiliani 8 -0110100 Belov 8 -0110100 Siew 8 -0110100 Moppes 8 -0110100 Kurmel 8 -0110100 Burkett 8 -0110100 Stupay 8 -0110100 Persico 8 -0110100 Palomino 8 -0110100 Nagin 8 -0110100 Nix 8 -0110100 Halvorson 8 -0110100 Feick 8 -0110100 Roslund 8 -0110100 Orfield 8 -0110100 Gershowitz 8 -0110100 Matsubara 8 -0110100 Dudman 8 -0110100 Kirch 8 -0110100 Oksenberg 8 -0110100 Mabie 8 -0110100 Kelliher 8 -0110100 Narjes 8 -0110100 Molitor 8 -0110100 Guarini 8 -0110100 Kaster 8 -0110100 Kurlander 8 -0110100 Taubes 8 -0110100 Piotrowski 8 -0110100 Zwart 8 -0110100 Nel 8 -0110100 Mutert 8 -0110100 Tozer 8 -0110100 Gipson 8 -0110100 Ardagh 8 -0110100 Stipp 8 -0110100 Bilirakis 8 -0110100 McGwire 8 -0110100 Hilbert 8 -0110100 Zises 8 -0110100 Woronoff 8 -0110100 Pinsoneault 8 -0110100 Smaltz 8 -0110100 Pertschuk 8 -0110100 Crosson 8 -0110100 Shreve 8 -0110100 Bagdikian 8 -0110100 Dubinin 8 -0110100 Brusselmans 8 -0110100 Keevil 8 -0110100 Pederson 8 -0110100 Bengoechea 8 -0110100 Sirignano 8 -0110100 Bolen 8 -0110100 Mazzoni 8 -0110100 Schepisi 8 -0110100 Bookin 8 -0110100 Dunkel 8 -0110100 Cupit 8 -0110100 Falkenberg 8 -0110100 DeVries 8 -0110100 Birle 8 -0110100 Sonnett 8 -0110100 Dauch 8 -0110100 Richenthal 8 -0110100 Kiser 8 -0110100 Quaquil 8 -0110100 Auel 8 -0110100 Zavodnik 8 -0110100 Swingle 8 -0110100 Tada 8 -0110100 McQuade 8 -0110100 Tese 8 -0110100 Zagel 8 -0110100 Vasquez-Rana 8 -0110100 Wantland 8 -0110100 Kuster 8 -0110100 Labaton 8 -0110100 Cohan 8 -0110100 Aseritis 8 -0110100 Okuno 8 -0110100 Kerin 8 -0110100 Chazen 8 -0110100 Feitz 8 -0110100 Monzert 8 -0110100 Heinsohn 8 -0110100 Foner 8 -0110100 Ketchledge 8 -0110100 Ryrie 8 -0110100 Wignall 8 -0110100 Kenning 8 -0110100 Malfitano 8 -0110100 Kamentsev 8 -0110100 Seemann 8 -0110100 Lachenbruch 8 -0110100 Osso 8 -0110100 Rhody 8 -0110100 Sarandon 8 -0110100 Zakharov 8 -0110100 Indelicato 8 -0110100 Englund 8 -0110100 Kenzie 8 -0110100 Barbakow 8 -0110100 Sendak 8 -0110100 Howes 8 -0110100 Hata 8 -0110100 Butz 8 -0110100 Collomb 8 -0110100 Cartwright 8 -0110100 Coykendall 8 -0110100 Alisky 8 -0110100 Bayne 8 -0110100 Losh 8 -0110100 Hurlbut 8 -0110100 Titsworth 8 -0110100 Oglesby 8 -0110100 Ragland 8 -0110100 Rosendale 8 -0110100 Helyar 8 -0110100 Adlon 8 -0110100 Lapine 8 -0110100 Briccetti 8 -0110100 Slaton 8 -0110100 Leakey 8 -0110100 Basulto 8 -0110100 Oehlert 8 -0110100 Regalado 8 -0110100 Wada 8 -0110100 Guste 8 -0110100 Krauze 8 -0110100 Oliphant 8 -0110100 Pelletier 8 -0110100 Zimerman 8 -0110100 Assaf 8 -0110100 Rubell 8 -0110100 Takanashi 8 -0110100 Cozzi 8 -0110100 Hermon 8 -0110100 Schecter 8 -0110100 Hufbauer 8 -0110100 Vecchio 8 -0110100 Gude 8 -0110100 Alarcon 8 -0110100 Higham 8 -0110100 MacSharry 8 -0110100 Buerge 8 -0110100 Guinan 8 -0110100 Afanasyev 8 -0110100 Fishbein 8 -0110100 Speno 8 -0110100 Turnage 8 -0110100 Cassini 8 -0110100 Shlenker 8 -0110100 Stahlman 8 -0110100 Laqueur 8 -0110100 Pagnol 8 -0110100 Etess 8 -0110100 Mord 8 -0110100 Goodin 8 -0110100 Kessenich 8 -0110100 Houseman 8 -0110100 Kairey 8 -0110100 Willaby 8 -0110100 Bowe 8 -0110100 Lajous 8 -0110100 Conroy 8 -0110100 Couvaras 8 -0110100 Toalster 8 -0110100 McCarver 8 -0110100 Rheinstein 8 -0110100 Servan-Schreiber 8 -0110100 Poveromo 8 -0110100 Launer 8 -0110100 Laibowitz 8 -0110100 Royko 8 -0110100 Beeton 8 -0110100 DeMaria 8 -0110100 Momayez-Zadeh 8 -0110100 McEwan 8 -0110100 Gilmartin 8 -0110100 Lamberti 8 -0110100 Sawicz 8 -0110100 Katsanos 8 -0110100 Bellwood 8 -0110100 Chikane 8 -0110100 Raphel 8 -0110100 Trokel 8 -0110100 Donatelli 8 -0110100 Ahl 8 -0110100 Dessent 8 -0110100 Fridovich 8 -0110100 Fitak 8 -0110100 Auberger 8 -0110100 Ackermann 8 -0110100 Schwan 8 -0110100 Kunstler 8 -0110100 Fernberg 8 -0110100 Lukyanov 8 -0110100 Lisec-Pinto 8 -0110100 Pietsch 8 -0110100 Weiler 8 -0110100 Shawcross 8 -0110100 Folliard 8 -0110100 Barens 8 -0110100 Pelleu 8 -0110100 Tietz 8 -0110100 McDevitt 8 -0110100 Mussa 8 -0110100 Turnipseed 8 -0110100 Wilburn 8 -0110100 Dadfar 8 -0110100 Boes 8 -0110100 Richelson 8 -0110100 Fleisher 8 -0110100 LeClaire 8 -0110100 Lefcourt 8 -0110100 Seidelman 8 -0110100 DeVere 8 -0110100 Mears 8 -0110100 Loffredo 8 -0110100 Schoepe 8 -0110100 Slayton 8 -0110100 Takagi 8 -0110100 Rawlinson 8 -0110100 Kurnit 8 -0110100 Strauch 8 -0110100 Kerridge 8 -0110100 Schaffer 8 -0110100 McElwaine 8 -0110100 Semler 8 -0110100 Motsoaledi 8 -0110100 Scutti 8 -0110100 McGlasson 8 -0110100 Abascal 8 -0110100 Harnett 8 -0110100 Linnik 8 -0110100 Sisk 8 -0110100 Vos 8 -0110100 Pawley 8 -0110100 Freiman 8 -0110100 guerre 8 -0110100 Salyard 8 -0110100 Laster 8 -0110100 Toohey 8 -0110100 Derrickson 8 -0110100 Ungo 8 -0110100 Bourland 8 -0110100 Christiansen 8 -0110100 Sierchio 8 -0110100 Meenaghan 8 -0110100 Raitt 8 -0110100 Ngxobongwana 8 -0110100 Gornto 8 -0110100 Rosenhaus 8 -0110100 Turville 8 -0110100 Hjorth 8 -0110100 Sternlieb 8 -0110100 Engebretsen 8 -0110100 Anaya 8 -0110100 Tafaro 8 -0110100 Frontiere 8 -0110100 Gladstein 8 -0110100 McGurk 8 -0110100 Socol 8 -0110100 Rozelle 8 -0110100 Dees 8 -0110100 Thygerson 8 -0110100 Reuschel 8 -0110100 Hultquist 8 -0110100 Grum 8 -0110100 Kamenar 8 -0110100 Rother 8 -0110100 Wenders 8 -0110100 Kunayev 8 -0110100 Akhikari 8 -0110100 Freels 8 -0110100 Zuboff 8 -0110100 Scanland 8 -0110100 Freiberg 8 -0110100 Bulkley 8 -0110100 Risser 8 -0110100 Lewinton 8 -0110100 Pradetto 8 -0110100 Winer 8 -0110100 Hower 8 -0110100 Pensler 8 -0110100 Magrane 8 -0110100 Ginzberg 8 -0110100 Bahre 8 -0110100 Kimmel 8 -0110100 McCaughey 8 -0110100 Liftin 8 -0110100 Krasnoff 8 -0110100 Lilien 8 -0110100 Ovrom 8 -0110100 Malato 8 -0110100 Goldinger 8 -0110100 Mear 8 -0110100 Wegbreit 8 -0110100 Stratas 8 -0110100 Mitofsky 8 -0110100 Oldenburg 8 -0110100 Everbach 8 -0110100 Simonsson 8 -0110100 Ferriz 8 -0110100 Zajac 8 -0110100 Kostas 8 -0110100 Hilsman 8 -0110100 Wetstein 8 -0110100 Isom 8 -0110100 Willse 8 -0110100 Attalla 8 -0110100 Lubowski 8 -0110100 Plumley 8 -0110100 Codlin 8 -0110100 Fridson 8 -0110100 Partoll 8 -0110100 Berns 8 -0110100 Belin 8 -0110100 Sege 8 -0110100 Lustig 8 -0110100 Dine 8 -0110100 Bayse 8 -0110100 Saouma 8 -0110100 Wentz 8 -0110100 Kummer 8 -0110100 Lathouris 8 -0110100 Iorio 8 -0110100 Drouin 8 -0110100 Spieker 8 -0110100 Buttacavoli 8 -0110100 Roxburgh 8 -0110100 Cabradilla 8 -0110100 Alvero-Cruz 8 -0110100 Arida 8 -0110100 Chenault 8 -0110100 Pittle 8 -0110100 Popov 8 -0110100 Henske 8 -0110100 Kathman 8 -0110100 Berndt 8 -0110100 Wensberg 8 -0110100 Azarow 8 -0110100 Vallance 8 -0110100 Groseclose 8 -0110100 Okumura 8 -0110100 Leahey 8 -0110100 Plante 8 -0110100 Wartenberg 8 -0110100 Boorman 8 -0110100 Kosberg 8 -0110100 McGuirk 8 -0110100 Coben 8 -0110100 Bowden 8 -0110100 Caldrello 8 -0110100 Worton 8 -0110100 Frayn 8 -0110100 Cornelison 8 -0110100 Pedroli 8 -0110100 Spanninger 8 -0110100 Becherer 8 -0110100 Delbanco 8 -0110100 Houser 8 -0110100 Hodson 8 -0110100 Mnookin 8 -0110100 Hembree 8 -0110100 Stallkamp 8 -0110100 Shinto 8 -0110100 Bourguiba 8 -0110100 Sideris 8 -0110100 Liebmann 8 -0110100 Clews 8 -0110100 Furth 8 -0110100 Krat 8 -0110100 Vazquez-Rana 8 -0110100 Melhorn 8 -0110100 Kazantzakis 8 -0110100 Helman 8 -0110100 Riggi 8 -0110100 Malkowski 8 -0110100 Benezra 8 -0110100 Kariotis 8 -0110100 Penderecki 8 -0110100 Boisvert 8 -0110100 Windom 8 -0110100 Nakashima 8 -0110100 Adaza 8 -0110100 Zeien 8 -0110100 Nicolau 8 -0110100 Harting 8 -0110100 Cotret 8 -0110100 Learner 8 -0110100 Dimitruk 8 -0110100 Gasser 8 -0110100 Ringel 8 -0110100 Riphagen 8 -0110100 Yablonski 8 -0110100 Halliday 8 -0110100 Xie 8 -0110100 Granet 8 -0110100 Schwind 8 -0110100 Deveny 8 -0110100 Wallin 8 -0110100 Nicolin 8 -0110100 Ober 8 -0110100 Schneeman 8 -0110100 Choper 8 -0110100 Boling 8 -0110100 Pompa 8 -0110100 Petitt 8 -0110100 Reicher 8 -0110100 Cham 8 -0110100 Hagedorn 8 -0110100 Zhivkov 8 -0110100 Tufo 8 -0110100 Brautigam 8 -0110100 Roybal 8 -0110100 Kagin 8 -0110100 Littell 8 -0110100 Sherva 8 -0110100 Chai 8 -0110100 Sapanski 8 -0110100 Eubanks 8 -0110100 Finneran 8 -0110100 McCallum 8 -0110100 Ebeling 8 -0110100 Mackinnon 8 -0110100 Whitlow 8 -0110100 Zulauf 8 -0110100 Beadle 8 -0110100 Tschirhart 8 -0110100 Baldini 8 -0110100 Switaj 8 -0110100 Schaap 8 -0110100 Shinn 8 -0110100 Wurtman 8 -0110100 Harel 8 -0110100 Tilghman 8 -0110100 Walzer 8 -0110100 Schillaci 8 -0110100 Roling 8 -0110100 Barovsky 8 -0110100 Trevino 8 -0110100 Minardos 8 -0110100 Soden 8 -0110100 Henke 8 -0110100 Sensenbrenner 8 -0110100 Falik 8 -0110100 Arcenaux 8 -0110100 Santucci 8 -0110100 Akst 8 -0110100 Likhyani 8 -0110100 Creel 8 -0110100 Romanoff 8 -0110100 Harshbarger 8 -0110100 Mulkey 8 -0110100 Buhr 9 -0110100 Dreher 9 -0110100 Winterhalter 9 -0110100 Sweatt 9 -0110100 Joelson 9 -0110100 Bottorff 9 -0110100 Gabel 9 -0110100 Lavine 9 -0110100 Leyden 9 -0110100 Arrupe 9 -0110100 Grinberg 9 -0110100 Severance 9 -0110100 Pottorff 9 -0110100 Seminario 9 -0110100 Roggio 9 -0110100 Cavett 9 -0110100 Torme 9 -0110100 McCartan 9 -0110100 Chatwal 9 -0110100 Furuta 9 -0110100 Nashashibi 9 -0110100 Parra 9 -0110100 Chisum 9 -0110100 Lipman 9 -0110100 Bramwell 9 -0110100 Gilleran 9 -0110100 Collinsworth 9 -0110100 Anschel 9 -0110100 Andrezak 9 -0110100 Souders 9 -0110100 Hanbury 9 -0110100 Mielke 9 -0110100 Holzinger 9 -0110100 Hinds 9 -0110100 DiBacco 9 -0110100 Moisi 9 -0110100 Tassel 9 -0110100 Dayan 9 -0110100 Olsson 9 -0110100 Modzelewski 9 -0110100 Hoth 9 -0110100 Attermann 9 -0110100 Yurachek 9 -0110100 Rabel 9 -0110100 Sahgal 9 -0110100 Blaydon 9 -0110100 Nissim 9 -0110100 Mommens 9 -0110100 Teich 9 -0110100 Dykes 9 -0110100 Taneja 9 -0110100 Wasch 9 -0110100 Hann 9 -0110100 Aucott 9 -0110100 Kierscht 9 -0110100 Senzaki 9 -0110100 Yerena 9 -0110100 Revercomb 9 -0110100 Pisoni 9 -0110100 Oliva 9 -0110100 Wenner 9 -0110100 Hiller 9 -0110100 Blom 9 -0110100 Lanzet 9 -0110100 Seiler 9 -0110100 Grodin 9 -0110100 Roshier 9 -0110100 Cossa 9 -0110100 Drebsky 9 -0110100 Bowlin 9 -0110100 Olivera 9 -0110100 Callan 9 -0110100 Falin 9 -0110100 Sciaroni 9 -0110100 Dankner 9 -0110100 Rafelghem 9 -0110100 Kraemer 9 -0110100 Selkin 9 -0110100 Doretti 9 -0110100 Jesselson 9 -0110100 Wineheim 9 -0110100 Merryman 9 -0110100 Wray 9 -0110100 Karkowsky 9 -0110100 Steinfeld 9 -0110100 Noguchi 9 -0110100 Resnik 9 -0110100 Amiran 9 -0110100 Josephs 9 -0110100 Minton 9 -0110100 Cleghorn 9 -0110100 Pizzi 9 -0110100 Kurlak 9 -0110100 Vadehra 9 -0110100 Troubh 9 -0110100 Thier 9 -0110100 Lambros 9 -0110100 Yerkes 9 -0110100 Lagow 9 -0110100 Finucane 9 -0110100 Skates 9 -0110100 Shreiber 9 -0110100 Attar 9 -0110100 Greeniaus 9 -0110100 Fagan 9 -0110100 Reichstuhl 9 -0110100 Monge 9 -0110100 Doupe 9 -0110100 Calvani 9 -0110100 Wiedemann 9 -0110100 Hamadei 9 -0110100 Sidak 9 -0110100 Puusepp 9 -0110100 Soter 9 -0110100 Meeks 9 -0110100 Gorsuch 9 -0110100 Weinfeld 9 -0110100 Beilenson 9 -0110100 Amoroso 9 -0110100 Barkeley 9 -0110100 Belove 9 -0110100 Traynor 9 -0110100 Girton 9 -0110100 Macedo 9 -0110100 Ylvisaker 9 -0110100 Schell 9 -0110100 Jolson 9 -0110100 Shackelford 9 -0110100 Cannistraro 9 -0110100 Burenga 9 -0110100 Robison 9 -0110100 Pyne 9 -0110100 Davanzo 9 -0110100 Allred 9 -0110100 Ashe 9 -0110100 Bruton 9 -0110100 Baumgartner 9 -0110100 Clarkin 9 -0110100 Pletcher 9 -0110100 Goldblum 9 -0110100 Kimura 9 -0110100 Paterno 9 -0110100 Fulmer 9 -0110100 Kanegsberg 9 -0110100 Landa 9 -0110100 Posey 9 -0110100 Aretsky 9 -0110100 Ture 9 -0110100 Willson 9 -0110100 Shimmerlik 9 -0110100 Tanimura 9 -0110100 Semple 9 -0110100 Parcells 9 -0110100 Veronda 9 -0110100 Bailyn 9 -0110100 Souveroff 9 -0110100 Hegedus 9 -0110100 Semerad 9 -0110100 Streicher 9 -0110100 Stamaty 9 -0110100 Raimond 9 -0110100 Massie 9 -0110100 Adelaar 9 -0110100 Grettenberger 9 -0110100 Appleby 9 -0110100 Maksoud 9 -0110100 Tankersley 9 -0110100 Capon 9 -0110100 Krauer 9 -0110100 Mirti 9 -0110100 Beebower 9 -0110100 Rateliff 9 -0110100 Slusser 9 -0110100 Quinon 9 -0110100 Smalley 9 -0110100 Ibarra 9 -0110100 Storr 9 -0110100 Mujzel 9 -0110100 Utley 9 -0110100 Samos 9 -0110100 Meriwether 9 -0110100 Meigher 9 -0110100 Denden 9 -0110100 Zalygin 9 -0110100 Gidwitz 9 -0110100 Edgerly 9 -0110100 Southard 9 -0110100 Antoinette 9 -0110100 Taniguchi 9 -0110100 Dreier 9 -0110100 Kaylie 9 -0110100 Sturtz 9 -0110100 Trautman 9 -0110100 Cardia 9 -0110100 Jakab 9 -0110100 Lempert 9 -0110100 Spilotro 9 -0110100 Meany 9 -0110100 Kahng 9 -0110100 Derecktor 9 -0110100 Eisenstein 9 -0110100 Littlefield 9 -0110100 Castrucci 9 -0110100 Neier 9 -0110100 Satagaj 9 -0110100 Guajardo 9 -0110100 Aqazadeh 9 -0110100 Kolakowski 9 -0110100 Overstrom 9 -0110100 Dunaway 9 -0110100 Bayley 9 -0110100 Retlin 9 -0110100 Crabb 9 -0110100 Teo 9 -0110100 Takashima 9 -0110100 Ohkawara 9 -0110100 Soderblom 9 -0110100 Koester 9 -0110100 Eizenstat 9 -0110100 Boesak 9 -0110100 Beldock 9 -0110100 Kvistad 9 -0110100 Dameron 9 -0110100 Heisbourg 9 -0110100 Moertel 9 -0110100 Gammill 9 -0110100 Belanoff 9 -0110100 Gall 9 -0110100 Loewenson 9 -0110100 Haberman 9 -0110100 Terpstra 9 -0110100 Pacino 9 -0110100 Clawson 9 -0110100 Waterston 9 -0110100 Drasner 9 -0110100 Kauffman 9 -0110100 Langford 9 -0110100 Stookey 9 -0110100 Zachmann 9 -0110100 Pochiluk 9 -0110100 Garber 9 -0110100 Pleskow 9 -0110100 Younan 9 -0110100 Russolillo 9 -0110100 Grad 9 -0110100 Krossel 9 -0110100 Marotta 9 -0110100 Greetham 9 -0110100 Cappelletti 9 -0110100 Noreiga 9 -0110100 Laudise 9 -0110100 Omohundro 9 -0110100 Soloviev 9 -0110100 Shorin 9 -0110100 Craver 9 -0110100 Paetz 9 -0110100 Jereissati 9 -0110100 Bouwsma 9 -0110100 Quarre 9 -0110100 McIvor 9 -0110100 Demirag 9 -0110100 Carstens 9 -0110100 Longstreth 9 -0110100 Arington 9 -0110100 Steenkamp 9 -0110100 Laux 9 -0110100 Neikirk 9 -0110100 Roessler 9 -0110100 Deffeyes 9 -0110100 Queau 9 -0110100 Lemmer 9 -0110100 Brash 9 -0110100 Childress 9 -0110100 Hochbrueckner 9 -0110100 Brethen 9 -0110100 Posteraro 9 -0110100 Ryskamp 9 -0110100 Toone 9 -0110100 Coxe 9 -0110100 Ewald 9 -0110100 Mallon 9 -0110100 Steinle 9 -0110100 Beloff 9 -0110100 Dodds 9 -0110100 Schonberg 9 -0110100 Bullen 9 -0110100 Ros 9 -0110100 Furlong 9 -0110100 Gluckman 9 -0110100 Almadani 9 -0110100 Danziger 9 -0110100 Sukharev 9 -0110100 Campfield 9 -0110100 Schmuckler 9 -0110100 Puckett 9 -0110100 McQuown 9 -0110100 Chany 9 -0110100 Synhorst 9 -0110100 Elbaum 9 -0110100 Boulalas 9 -0110100 Rosales 9 -0110100 Casagrande 9 -0110100 Seo 9 -0110100 Timlen 9 -0110100 Garb 9 -0110100 Kittaneh 9 -0110100 Gordeyev 9 -0110100 Lykin 9 -0110100 Monoszon 9 -0110100 Cater 9 -0110100 Windheim 9 -0110100 Orens 9 -0110100 Snedeker 9 -0110100 Rousselet 9 -0110100 Maggio 9 -0110100 Gourgues 9 -0110100 Insel 9 -0110100 Storch 9 -0110100 Zeldin 9 -0110100 Protigal 9 -0110100 Kachmar 9 -0110100 Peebler 9 -0110100 Damgard 9 -0110100 Gilley 9 -0110100 Remigio 9 -0110100 Rivlin 9 -0110100 Dockson 9 -0110100 Nissenbaum 9 -0110100 Malec 9 -0110100 Sprigg 9 -0110100 Kase 9 -0110100 Franchik 9 -0110100 Wolrath 9 -0110100 Fenichell 9 -0110100 Soffel 9 -0110100 Calvino 9 -0110100 Daniloff 9 -0110100 Fellner 9 -0110100 Schlender 9 -0110100 Zanoyan 9 -0110100 Darak 9 -0110100 Carota 9 -0110100 Dancsak 9 -0110100 Ohman 9 -0110100 Bogosian 9 -0110100 Tarses 9 -0110100 Likhachov 9 -0110100 Traxler 9 -0110100 Mikhalkov 9 -0110100 Lackovic 9 -0110100 Mobilia 9 -0110100 Beeby 9 -0110100 Toman 9 -0110100 Irons 9 -0110100 Hallanan 9 -0110100 Leno 9 -0110100 Dinsmore 9 -0110100 Laubscher 9 -0110100 Savitch 9 -0110100 Donilon 9 -0110100 Sheeran 9 -0110100 Tauzin 9 -0110100 Marlens 9 -0110100 Kruk 9 -0110100 Coate 9 -0110100 Leutwiler 9 -0110100 Borja 9 -0110100 Oberly 9 -0110100 Striar 9 -0110100 Redi 9 -0110100 Bouillet 9 -0110100 Enholm 9 -0110100 Solchaga 9 -0110100 Shchedrin 9 -0110100 Oldham 9 -0110100 Rogachev 9 -0110100 Mityunov 9 -0110100 Latta 9 -0110100 Kirshbaum 9 -0110100 Koenigsfeld 9 -0110100 Kehler 9 -0110100 Rakow 9 -0110100 Pappadio 9 -0110100 Symons 9 -0110100 Aylwin 9 -0110100 Mazzone 9 -0110100 Rayner 9 -0110100 Spitzer 9 -0110100 Minnaar 9 -0110100 McKibben 9 -0110100 Tschumi 9 -0110100 Mishra 9 -0110100 Maccaquano 9 -0110100 Aufhauser 9 -0110100 Driever 9 -0110100 Geenen 9 -0110100 Treppel 9 -0110100 Gilgore 9 -0110100 Andrade 9 -0110100 Kucewicz 9 -0110100 Klucevsek 9 -0110100 DiPietro 9 -0110100 Lebegue 9 -0110100 Gasch 9 -0110100 Kucharski 9 -0110100 Steppel 9 -0110100 deCastro 9 -0110100 Dahlin 9 -0110100 Mothon 9 -0110100 Wermuth 9 -0110100 Komoto 9 -0110100 Zalay 9 -0110100 Goerlitz 9 -0110100 Milligan 9 -0110100 Deakins 9 -0110100 Kellerman 9 -0110100 Kobak 9 -0110100 Hutzler 9 -0110100 Krawchuk 9 -0110100 Ravelo 9 -0110100 Baltes 9 -0110100 Elish 9 -0110100 Strenio 9 -0110100 Reinert 9 -0110100 Schimmelbusch 9 -0110100 Donsbach 9 -0110100 Easterly 9 -0110100 Meierfeld 9 -0110100 Clouser 9 -0110100 Horgan 9 -0110100 Rebmann 9 -0110100 Taylor-Gordon 9 -0110100 Jia 9 -0110100 Corso 9 -0110100 Holtz 9 -0110100 Pagezy 9 -0110100 Saal 9 -0110100 Sherak 9 -0110100 Marafat 9 -0110100 Willison 9 -0110100 Penniman 9 -0110100 Komorny 9 -0110100 Numeiri 9 -0110100 Chazanoff 9 -0110100 Loton 9 -0110100 Dochow 9 -0110100 Middlebrook 9 -0110100 MacDiarmid 9 -0110100 Waal 9 -0110100 Hillis 9 -0110100 Masterson 9 -0110100 Tanioka 9 -0110100 Polanski 9 -0110100 Marulanda 9 -0110100 Ricigliano 9 -0110100 Brobeck 9 -0110100 Hutt 9 -0110100 Falcone 9 -0110100 Binn 9 -0110100 Zisson 9 -0110100 Rooker 9 -0110100 Hoge 9 -0110100 Hirsh 9 -0110100 Cartledge 9 -0110100 Hichens 9 -0110100 Kazikaev 9 -0110100 Swirsky 9 -0110100 Breuer 9 -0110100 Karasek 9 -0110100 Allbright 9 -0110100 Essner 10 -0110100 Kovacs 10 -0110100 Shuman 10 -0110100 Stibel 10 -0110100 Butts 10 -0110100 Gehrig 10 -0110100 Stork 10 -0110100 Andress 10 -0110100 Prapas 10 -0110100 Rakich 10 -0110100 Steffens 10 -0110100 Boudreau 10 -0110100 Verdugo-Urquidez 10 -0110100 Sitrick 10 -0110100 MacLeod 10 -0110100 Komine 10 -0110100 Hodgman 10 -0110100 Simmonds 10 -0110100 Tajima 10 -0110100 Gold-Bikin 10 -0110100 Bulger 10 -0110100 Edberg 10 -0110100 Kassen 10 -0110100 Palmstierna 10 -0110100 Wester 10 -0110100 Granoff 10 -0110100 Baccus 10 -0110100 Seratti 10 -0110100 DeJong 10 -0110100 Alibrandi 10 -0110100 Krumm 10 -0110100 Kvitsinsky 10 -0110100 Toufexis 10 -0110100 Ferber 10 -0110100 Kolbe 10 -0110100 Parmelee 10 -0110100 Callas 10 -0110100 Cliffe 10 -0110100 Felter 10 -0110100 Siemer 10 -0110100 Kolski 10 -0110100 Blanton 10 -0110100 Telzrow 10 -0110100 Romney 10 -0110100 Moxley 10 -0110100 Bennis 10 -0110100 Denktas 10 -0110100 Grogan 10 -0110100 Stumpf 10 -0110100 Yarborough 10 -0110100 Ehmann 10 -0110100 Montagnier 10 -0110100 Sylla 10 -0110100 Rafferty 10 -0110100 Burlatsky 10 -0110100 Brodie 10 -0110100 Schoenbaum 10 -0110100 Trujillo 10 -0110100 McCausland 10 -0110100 Yunich 10 -0110100 Parlow 10 -0110100 Kirnan 10 -0110100 Kazin 10 -0110100 Rosser 10 -0110100 Brightman 10 -0110100 Joynes 10 -0110100 Spratt 10 -0110100 Duthie 10 -0110100 Purvis 10 -0110100 Shue 10 -0110100 Falvo 10 -0110100 Albee 10 -0110100 Ringberg 10 -0110100 Silvi 10 -0110100 Haberer 10 -0110100 Papageorge 10 -0110100 Nachmany 10 -0110100 Barbieri 10 -0110100 Ambasz 10 -0110100 Busti 10 -0110100 Dromer 10 -0110100 Sidewater 10 -0110100 LaMantia 10 -0110100 Mkhatshwa 10 -0110100 Gunty 10 -0110100 Ratner 10 -0110100 Labe 10 -0110100 Larche 10 -0110100 McCune 10 -0110100 McClements 10 -0110100 Caddell 10 -0110100 Varley 10 -0110100 Diggs 10 -0110100 Lundell 10 -0110100 Kociolek 10 -0110100 LaMonte 10 -0110100 Murto 10 -0110100 Picower 10 -0110100 Damoose 10 -0110100 Escalante 10 -0110100 Dimond 10 -0110100 Guilmartin 10 -0110100 Bierman 10 -0110100 Mackie 10 -0110100 Murasky 10 -0110100 Prebe 10 -0110100 Petrina 10 -0110100 Printy 10 -0110100 Mazo 10 -0110100 Griggy 10 -0110100 Quine 10 -0110100 Blauer 10 -0110100 Modarressi 10 -0110100 Tannenbaum 10 -0110100 Mangano 10 -0110100 Kunaev 10 -0110100 Lobbia 10 -0110100 Saliba 10 -0110100 Liebman 10 -0110100 Machtley 10 -0110100 Rehm 10 -0110100 Yarchoan 10 -0110100 Terrile 10 -0110100 Denson 10 -0110100 Bracy 10 -0110100 Ita 10 -0110100 Ravan 10 -0110100 Hirschhorn 10 -0110100 Troyat 10 -0110100 Stelzer 10 -0110100 Austen 10 -0110100 Zoellick 10 -0110100 Rendall 10 -0110100 Margittai 10 -0110100 Pusateri 10 -0110100 Salonga 10 -0110100 Mernick 10 -0110100 McGarry 10 -0110100 Sethi 10 -0110100 Sauerteig 10 -0110100 Pharaon 10 -0110100 Ricciardi 10 -0110100 Hoehn 10 -0110100 Beauchamp 10 -0110100 Palmero 10 -0110100 Almeida 10 -0110100 Eliades 10 -0110100 Schmidl 10 -0110100 Abelson 10 -0110100 Sibley 10 -0110100 Kamphol 10 -0110100 Zigler 10 -0110100 Waldholz 10 -0110100 Billman 10 -0110100 Chernenko 10 -0110100 Meek 10 -0110100 Wilthew 10 -0110100 Brademas 10 -0110100 Santala 10 -0110100 Anderlini 10 -0110100 Seiden 10 -0110100 Borchelt 10 -0110100 Bumps 10 -0110100 Khalaf 10 -0110100 DiFilippo 10 -0110100 Gasich 10 -0110100 Feistritzer 10 -0110100 Worsham 10 -0110100 Thurnher 10 -0110100 Blumberg 10 -0110100 Barba 10 -0110100 Ramm 10 -0110100 Kuralt 10 -0110100 Weissberg 10 -0110100 McNair 10 -0110100 Frahm 10 -0110100 Carrigan 10 -0110100 Pineda 10 -0110100 Covitz 10 -0110100 Kunin 10 -0110100 Tolbert 10 -0110100 Boisi 10 -0110100 Frain 10 -0110100 Mauldin 10 -0110100 Harber 10 -0110100 Franzese 10 -0110100 Sellin 10 -0110100 Carp 10 -0110100 Romain 10 -0110100 Costanza 10 -0110100 Corio 10 -0110100 Korda 10 -0110100 Widmann 10 -0110100 Sharpton 10 -0110100 Prebble 10 -0110100 Liebler 10 -0110100 Oana 10 -0110100 Czekajewski 10 -0110100 Haimovitch 10 -0110100 Heckler 10 -0110100 Bellrose 10 -0110100 Bergling 10 -0110100 Parrillo 10 -0110100 Fishbaine 10 -0110100 McVey 10 -0110100 Knab 10 -0110100 Torrenzano 10 -0110100 Krain 10 -0110100 Bane 10 -0110100 Meyerman 10 -0110100 Wolfman 10 -0110100 Bonney 10 -0110100 Mellett 10 -0110100 Batogowski 10 -0110100 Schultze 10 -0110100 Kaltenbacher 10 -0110100 Casson 10 -0110100 Settanni 10 -0110100 Tebbit 10 -0110100 Kairamo 10 -0110100 Huntington-Carruthers 10 -0110100 Tatsuno 10 -0110100 Voigt 10 -0110100 Aleichem 10 -0110100 Haggerty 10 -0110100 Gamper 10 -0110100 Galles 10 -0110100 Doig 10 -0110100 Casstevens 10 -0110100 Ebersol 10 -0110100 Laine 10 -0110100 Plocek 10 -0110100 Silverberg 10 -0110100 Blasi 10 -0110100 Godunov 10 -0110100 Swindle 10 -0110100 Velayati 10 -0110100 Stagg 10 -0110100 Panoz 10 -0110100 Gittler 10 -0110100 Pichler 10 -0110100 Rawlins 10 -0110100 Pagar 10 -0110100 Kikumura 10 -0110100 Feltz 10 -0110100 Blattner 10 -0110100 Testrake 10 -0110100 Belford 10 -0110100 Liguori 10 -0110100 Fiorina 10 -0110100 Lenz 10 -0110100 Merola 10 -0110100 Burrill 10 -0110100 Snodgrass 10 -0110100 Fathi 10 -0110100 Sope 10 -0110100 Winch 10 -0110100 Hanny 10 -0110100 Milnes 10 -0110100 Barash 10 -0110100 Ricken 10 -0110100 Lucchesi 10 -0110100 Eletr 10 -0110100 Constantino 10 -0110100 Cacaci 10 -0110100 Nagel 10 -0110100 Braendstroem 10 -0110100 Guariglia 10 -0110100 Brockman 10 -0110100 Covas 10 -0110100 Monticciolo 10 -0110100 Shales 10 -0110100 Steinem 10 -0110100 Coehlo 10 -0110100 Heatherly 10 -0110100 Bywater 10 -0110100 Glancy 10 -0110100 Kieninger 10 -0110100 Soderbergh 10 -0110100 Zuluaga 10 -0110100 Provant 10 -0110100 Groben 10 -0110100 Schwager 10 -0110100 Westergaard 10 -0110100 Petrocelli 10 -0110100 Puzo 10 -0110100 Bushman 10 -0110100 Schuman 10 -0110100 Stupski 10 -0110100 Caplan 10 -0110100 Kawate 10 -0110100 Wouk 10 -0110100 Farren 10 -0110100 Beller 10 -0110100 Psarouthakis 10 -0110100 Hampson 10 -0110100 Henin 10 -0110100 Medlin 10 -0110100 Mazur 10 -0110100 Pearlstein 10 -0110100 Blundall 10 -0110100 Braunstein 10 -0110100 Zander 10 -0110100 Preschel 10 -0110100 Moye 10 -0110100 Yass 10 -0110100 Kleinman 10 -0110100 Verhofstadt 10 -0110100 Petrauskas 10 -0110100 Behar 10 -0110100 Childers 10 -0110100 Vaguine 10 -0110100 Kuck 10 -0110100 Maugeri 10 -0110100 Mosier 10 -0110100 Dunkelberg 10 -0110100 LaBarbera 10 -0110100 Niehaus 10 -0110100 Mansueto 10 -0110100 Cordesman 10 -0110100 Maley 10 -0110100 Ounsted 10 -0110100 Alda 10 -0110100 Shashoua 10 -0110100 Roeser 10 -0110100 Pancoast 10 -0110100 Yeoman 10 -0110100 Kooning 10 -0110100 Gutmann 10 -0110100 Crandell 10 -0110100 Sapp 10 -0110100 Klepper 10 -0110100 Sumarlin 10 -0110100 Pomrenze 10 -0110100 Fernandes 10 -0110100 Schama 10 -0110100 Hargrove 10 -0110100 Morrill 10 -0110100 Molina 10 -0110100 Rocap 10 -0110100 Gory 10 -0110100 MacWilliams 10 -0110100 Lydon 10 -0110100 Imai 10 -0110100 Zanuck 10 -0110100 Beedie 10 -0110100 Kanemaru 10 -0110100 Meyohas 10 -0110100 Harre 10 -0110100 Guttenberg 10 -0110100 Surma 10 -0110100 Halberstam 10 -0110100 Width 10 -0110100 Garr 10 -0110100 Giraud 10 -0110100 Shadur 10 -0110100 Weekes 10 -0110100 Rohana 10 -0110100 Faulk 10 -0110100 Llovio 10 -0110100 Nangaku 10 -0110100 Perrault 10 -0110100 Krouner 10 -0110100 Amaya 10 -0110100 Crassweller 10 -0110100 Strassman 10 -0110100 Hemel 10 -0110100 Renda 10 -0110100 Campanella 10 -0110100 Chusmir 10 -0110100 Necci 10 -0110100 Urbaszewski 10 -0110100 Rapoport 10 -0110100 Dhlakama 10 -0110100 Lamos 10 -0110100 Lorentzen 10 -0110100 Mezey 10 -0110100 Schlachter 10 -0110100 Porntip 10 -0110100 Podrasky 10 -0110100 Karasawa 10 -0110100 Molloy 11 -0110100 Sella 11 -0110100 Contant 11 -0110100 Runcie 11 -0110100 Baran 11 -0110100 Ikle 11 -0110100 Hassenberg 11 -0110100 Allick 11 -0110100 McGrevin 11 -0110100 Nujoma 11 -0110100 Frisch 11 -0110100 Glazunov 11 -0110100 Eilan 11 -0110100 Barnowski 11 -0110100 Frashier 11 -0110100 Branstad 11 -0110100 Kaigler-Reese 11 -0110100 Ople 11 -0110100 Coale 11 -0110100 Cairns 11 -0110100 Misbrener 11 -0110100 Swed 11 -0110100 Siewert 11 -0110100 Torricelli 11 -0110100 Maltz 11 -0110100 Granger 11 -0110100 Panem 11 -0110100 Pessin 11 -0110100 Cordover 11 -0110100 Terrington 11 -0110100 Nusbaum 11 -0110100 Hailand 11 -0110100 Schaub 11 -0110100 Tomita 11 -0110100 Ares 11 -0110100 Leven 11 -0110100 McMath 11 -0110100 Moir 11 -0110100 Ortiz-Murias 11 -0110100 McGagh 11 -0110100 Blaese 11 -0110100 McKeown 11 -0110100 Belth 11 -0110100 Schierl 11 -0110100 Mach 11 -0110100 Tasker 11 -0110100 Freni 11 -0110100 Driscoll 11 -0110100 Lillicrop 11 -0110100 Bogardus 11 -0110100 Zarzecki 11 -0110100 Roehl 11 -0110100 Ciminero 11 -0110100 Maresh 11 -0110100 Slatter 11 -0110100 Derchin 11 -0110100 Schloemer 11 -0110100 Goberstein 11 -0110100 Sterrett 11 -0110100 Chatwin 11 -0110100 Masefield 11 -0110100 Peltier 11 -0110100 Burgin 11 -0110100 Pechman 11 -0110100 Doniger 11 -0110100 Terasawa 11 -0110100 Reycraft 11 -0110100 Fenzel 11 -0110100 Quintana 11 -0110100 Spaeth 11 -0110100 Tuchman 11 -0110100 Francek 11 -0110100 Wartzman 11 -0110100 Longenecker 11 -0110100 Leotard 11 -0110100 Maseri 11 -0110100 Graye 11 -0110100 Herwick 11 -0110100 Kildee 11 -0110100 Mokhiber 11 -0110100 Hopkyns 11 -0110100 Pozos 11 -0110100 Knievel 11 -0110100 Fellmeth 11 -0110100 Tota 11 -0110100 Afheldt 11 -0110100 Mohtashemi 11 -0110100 Emmert 11 -0110100 Charasse 11 -0110100 Pavlov 11 -0110100 Sutnick 11 -0110100 Dierkes 11 -0110100 Hodge 11 -0110100 Greenburg 11 -0110100 Nathanson 11 -0110100 Blades 11 -0110100 Relyea 11 -0110100 Auletta 11 -0110100 Sobel 11 -0110100 Fitzpatrick-Davis 11 -0110100 Nadeau 11 -0110100 Nilsson 11 -0110100 Crozier 11 -0110100 Kopit 11 -0110100 Ricci 11 -0110100 Wachs 11 -0110100 Hartshorn 11 -0110100 Cartaya 11 -0110100 Olshan 11 -0110100 Nyerere 11 -0110100 Michelson 11 -0110100 Yeh 11 -0110100 Schuchert 11 -0110100 Matsukawa 11 -0110100 Luciw 11 -0110100 Binns 11 -0110100 Osmena 11 -0110100 McGinnis 11 -0110100 Marley 11 -0110100 Isoda 11 -0110100 Reeve 11 -0110100 Matsuda 11 -0110100 Willman 11 -0110100 Voeller 11 -0110100 Friedland 11 -0110100 Monro-Davies 11 -0110100 Kalyanaraman 11 -0110100 Bickner 11 -0110100 Veliotis 11 -0110100 Conrads 11 -0110100 Coym 11 -0110100 Benassi 11 -0110100 Camus 11 -0110100 Toensing 11 -0110100 Headlund 11 -0110100 Dupree 11 -0110100 Miot 11 -0110100 Lanyi 11 -0110100 Borosage 11 -0110100 Bluey 11 -0110100 Dunnigan 11 -0110100 Handelsman 11 -0110100 Rapaport 11 -0110100 Hendra 11 -0110100 Mattes 11 -0110100 Mitchelson 11 -0110100 Schoemaker 11 -0110100 Bidlo 11 -0110100 McNutt 11 -0110100 Kimbriel 11 -0110100 Safdie 11 -0110100 Horelick 11 -0110100 Kusserow 11 -0110100 Nacchio 11 -0110100 McLucas 11 -0110100 Killian 11 -0110100 Peladeau 11 -0110100 Rabb 11 -0110100 Cools 11 -0110100 Cicerone 11 -0110100 Ponnelle 11 -0110100 Blanchette 11 -0110100 Thornhill 11 -0110100 Boddie 11 -0110100 Gough 11 -0110100 Kriegel 11 -0110100 McCraw 11 -0110100 Lender 11 -0110100 Cottrell 11 -0110100 Roukema 11 -0110100 Caruso 11 -0110100 Musters 11 -0110100 Priem 11 -0110100 Astin 11 -0110100 Edmiston 11 -0110100 Morash 11 -0110100 Arguello 11 -0110100 Karino 11 -0110100 Fiss 11 -0110100 Wertz 11 -0110100 Termeer 11 -0110100 Katashiba 11 -0110100 Sochet 11 -0110100 Mandle 11 -0110100 Wolter 11 -0110100 Haigh 11 -0110100 Swete 11 -0110100 Lowey 11 -0110100 Aronstein 11 -0110100 Crooke 11 -0110100 Schneier 11 -0110100 Moskolenko 11 -0110100 Kalil 11 -0110100 oeuvres 11 -0110100 Gustafsson 11 -0110100 Schiltknecht 11 -0110100 Copperman 11 -0110100 Harmata 11 -0110100 Travelstead 11 -0110100 Vienot 11 -0110100 Beiny 11 -0110100 Willke 11 -0110100 Steloff 11 -0110100 Shcherbitsky 11 -0110100 Hehmeyer 11 -0110100 Mantel 11 -0110100 Chronowitz 11 -0110100 Amadeo 11 -0110100 Sawa 11 -0110100 Schenk 11 -0110100 Beuthin 11 -0110100 Achebe 11 -0110100 Mugar 11 -0110100 Kosecoff 11 -0110100 Sturgis 11 -0110100 Womack 11 -0110100 Cojuangco 11 -0110100 Carder 11 -0110100 Campanis 11 -0110100 Nicolle 11 -0110100 Egger 11 -0110100 Rind 11 -0110100 Pinsker 11 -0110100 Yaffe 11 -0110100 Rustin 11 -0110100 Hymans 11 -0110100 Mote 11 -0110100 Pote 11 -0110100 Ruch 11 -0110100 Naito 11 -0110100 Tahmassebi 11 -0110100 Macauley 11 -0110100 Brolly 11 -0110100 Sohmer 11 -0110100 Milliken 11 -0110100 Gilroy 11 -0110100 Taketomi 11 -0110100 Reisner 11 -0110100 Toffler 11 -0110100 Meselsohn 11 -0110100 Fustok 11 -0110100 Tibbetts 11 -0110100 Iovine 11 -0110100 Fauber 11 -0110100 Schaden 11 -0110100 Goland 11 -0110100 Ehrenhalt 11 -0110100 DeMarco 11 -0110100 Illingworth 11 -0110100 Missett 11 -0110100 Geist 11 -0110100 Oshatz 11 -0110100 Carbonetto 11 -0110100 Radosh 11 -0110100 Medland 11 -0110100 Labenski 11 -0110100 Kiraly 11 -0110100 Elkind 11 -0110100 Levan 11 -0110100 Kempe 11 -0110100 Uhl 11 -0110100 Rosewicz 11 -0110100 Gallant 11 -0110100 Runk 11 -0110100 Daub 11 -0110100 Beattie 11 -0110100 Guth 11 -0110100 Engholm 11 -0110100 Garbarino 11 -0110100 Pattis 11 -0110100 Shernoff 11 -0110100 Eagleson 11 -0110100 Lujan 11 -0110100 Hardman 11 -0110100 Nogawa 11 -0110100 Pascutto 11 -0110100 Brazile 11 -0110100 Michels 11 -0110100 Graff 11 -0110100 Romberg 11 -0110100 Shinbein 11 -0110100 Pitblado 11 -0110100 Stonecipher 11 -0110100 Minskoff 11 -0110100 Fogel 11 -0110100 McCarty 11 -0110100 Pfundstein 11 -0110100 Jurek 11 -0110100 Stabler 11 -0110100 Morimoto 11 -0110100 Griesa 11 -0110100 Brizendine 11 -0110100 Shanks 11 -0110100 Rogin 11 -0110100 Mata 11 -0110100 Holleran 11 -0110100 Clevenger 11 -0110100 Reinhold 11 -0110100 Holahan 11 -0110100 Pollner 11 -0110100 Kugler 11 -0110100 Gielgud 11 -0110100 Zeffirelli 11 -0110100 Nishimura 11 -0110100 Joffe 11 -0110100 Simonson 11 -0110100 Teltschik 11 -0110100 Wiese 11 -0110100 Powe 11 -0110100 Koken 11 -0110100 Schmults 11 -0110100 Hessler 11 -0110100 Sturc 11 -0110100 Ost 11 -0110100 Nene 11 -0110100 DeFazio 11 -0110100 Yoshimura 11 -0110100 Garson 11 -0110100 McKnight 11 -0110100 Picard 11 -0110100 Madrigal 11 -0110100 DeVito 11 -0110100 Gottsch 11 -0110100 Hackel 11 -0110100 Donner 11 -0110100 Waples 11 -0110100 Lindahl 11 -0110100 Schilling 11 -0110100 Hillier 11 -0110100 Avina 11 -0110100 Hariz 11 -0110100 Pohlman 11 -0110100 Feldt 11 -0110100 Aulenti 11 -0110100 Osorio 11 -0110100 Cizik 11 -0110100 DiBona 11 -0110100 Joanou 11 -0110100 MacLennan 11 -0110100 Goodall 11 -0110100 Baltsa 11 -0110100 Hobsbawm 11 -0110100 Witkowski 11 -0110100 Kampelman 11 -0110100 Calandra 11 -0110100 Tarter 11 -0110100 Azzato 11 -0110100 Rector 11 -0110100 Instone 11 -0110100 Potiker 11 -0110100 Lukash 11 -0110100 Selleck 11 -0110100 Lemaire 12 -0110100 Olivieri 12 -0110100 Tamayo 12 -0110100 Kurihara 12 -0110100 Reviglio 12 -0110100 Petery 12 -0110100 Buss 12 -0110100 Olcott 12 -0110100 Geoghegan 12 -0110100 Millett 12 -0110100 Gaitskill 12 -0110100 Trapp 12 -0110100 Shaheen 12 -0110100 Young-Sam 12 -0110100 Dekom 12 -0110100 Ferrer 12 -0110100 Kassem 12 -0110100 Manne 12 -0110100 Bolognesi 12 -0110100 Python 12 -0110100 Leschly 12 -0110100 Rosenwald 12 -0110100 Chertkow 12 -0110100 Winwood 12 -0110100 Murren 12 -0110100 Schulof 12 -0110100 Lerman 12 -0110100 Korth 12 -0110100 Melnick 12 -0110100 Hattersley 12 -0110100 Lowden 12 -0110100 Shumway 12 -0110100 McCorkindale 12 -0110100 Schar 12 -0110100 Gantz 12 -0110100 Shapero 12 -0110100 Holmer 12 -0110100 Nahm 12 -0110100 Riggio 12 -0110100 Ajami 12 -0110100 McMennamin 12 -0110100 Airington 12 -0110100 Schumacher 12 -0110100 Newberry 12 -0110100 Thurman 12 -0110100 Moueix 12 -0110100 Hodes 12 -0110100 Rucker 12 -0110100 Horan 12 -0110100 Saltzman 12 -0110100 Haseltine 12 -0110100 Dershowitz 12 -0110100 Kuze 12 -0110100 Galan 12 -0110100 Kurosawa 12 -0110100 Burney 12 -0110100 Nicholi 12 -0110100 Huhn 12 -0110100 Selikoff 12 -0110100 Lippens 12 -0110100 Kazis 12 -0110100 Civiletti 12 -0110100 Tummond 12 -0110100 Weksel 12 -0110100 Engler 12 -0110100 Sparling 12 -0110100 Lusser 12 -0110100 Karpatkin 12 -0110100 Gobinot 12 -0110100 DiClemente 12 -0110100 Feffer 12 -0110100 Faupel 12 -0110100 Saba 12 -0110100 Coontz 12 -0110100 Narazaki 12 -0110100 Sparkman 12 -0110100 Crampton 12 -0110100 Hervey 12 -0110100 Starer 12 -0110100 Oba 12 -0110100 Nihei 12 -0110100 Brizola 12 -0110100 Reza 12 -0110100 Gomery 12 -0110100 Febres-Cordero 12 -0110100 Chien 12 -0110100 Batson 12 -0110100 Sabol 12 -0110100 Blotnick 12 -0110100 Paretti 12 -0110100 Picoult 12 -0110100 Prendergast 12 -0110100 Furst 12 -0110100 Gere 12 -0110100 Rotter 12 -0110100 Wurtzel 12 -0110100 Cliggott 12 -0110100 Neubauer 12 -0110100 Langstaff 12 -0110100 DiLorenzo 12 -0110100 Bergeron 12 -0110100 Zaffuto 12 -0110100 Ekstrom 12 -0110100 Levey 12 -0110100 DeMain 12 -0110100 Fouse 12 -0110100 Timberlake 12 -0110100 Barfield 12 -0110100 Keeton 12 -0110100 Tsuda 12 -0110100 Vignola 12 -0110100 Marasek 12 -0110100 Shirer 12 -0110100 Plott 12 -0110100 Souccar 12 -0110100 Verrett 12 -0110100 Noftsker 12 -0110100 Hudler 12 -0110100 Malinowski 12 -0110100 Irimajiri 12 -0110100 Scocozza 12 -0110100 Oeien 12 -0110100 Chougule 12 -0110100 Keresztes 12 -0110100 Milhollin 12 -0110100 Devlin 12 -0110100 Greenbaum 12 -0110100 Kilman 12 -0110100 Raines 12 -0110100 Suhud 12 -0110100 Willmott 12 -0110100 Stiller 12 -0110100 Overmyer 12 -0110100 Lifton 12 -0110100 Kleinberg 12 -0110100 Krier 12 -0110100 LaVine 12 -0110100 Cardoso 12 -0110100 McGuane 12 -0110100 Wilkie 12 -0110100 Potapov 12 -0110100 Giurescu 12 -0110100 Drabenstott 12 -0110100 Castell 12 -0110100 Scheel 12 -0110100 Billingsley 12 -0110100 Grassgreen 12 -0110100 Beteta 12 -0110100 Kilroy 12 -0110100 Sykes 12 -0110100 Fritts 12 -0110100 Oliveira 12 -0110100 Casgrain 12 -0110100 Moorman 12 -0110100 Nakao 12 -0110100 Braggiotti 12 -0110100 Karnsund 12 -0110100 Rasheed 12 -0110100 Holbrooke 12 -0110100 Peras 12 -0110100 Scheuer 12 -0110100 Cashin 12 -0110100 Kiernan 12 -0110100 Spurge 12 -0110100 Ueda 12 -0110100 Cannavino 12 -0110100 Forst 12 -0110100 Colussy 12 -0110100 Peyrelevade 12 -0110100 Silvia 12 -0110100 Sontag 12 -0110100 Chrystal 12 -0110100 Schreger 12 -0110100 Pauls 12 -0110100 Adkins 12 -0110100 Vigdor 12 -0110100 Aylsworth 12 -0110100 Goldston 12 -0110100 Nordberg 12 -0110100 Krol 12 -0110100 Tubbs 12 -0110100 Ngema 12 -0110100 Yarbrough 12 -0110100 Rippe 12 -0110100 Bownds 12 -0110100 Maseng 12 -0110100 Desrosiers 12 -0110100 Woessner 12 -0110100 Kempton 12 -0110100 Bustamante 12 -0110100 Finestone 12 -0110100 Tognino 12 -0110100 Fass 12 -0110100 Beckerman 12 -0110100 Fauroux 12 -0110100 Shanahan 12 -0110100 Zaslavskaya 12 -0110100 Canto 12 -0110100 Megarry 12 -0110100 Franyo 12 -0110100 Redoglia 12 -0110100 Willett 12 -0110100 Higginbotham 12 -0110100 Kneafsey 12 -0110100 McClean 12 -0110100 Schuermann 12 -0110100 Tainer 12 -0110100 Rattner 12 -0110100 Falcoff 12 -0110100 Woltz 12 -0110100 Lave 12 -0110100 Vogelstein 12 -0110100 Chalker 12 -0110100 Arguelles 12 -0110100 Sane 12 -0110100 Machinea 12 -0110100 Lambsdorff 12 -0110100 Pura 12 -0110100 Geisel 12 -0110100 Wunsch 12 -0110100 Hewett 12 -0110100 Marver 12 -0110100 Prezzano 12 -0110100 Arens 12 -0110100 Smoak 12 -0110100 Zolp 12 -0110100 Garton 12 -0110100 Lockwood 12 -0110100 Biederman 12 -0110100 Hager 12 -0110100 Hoff 12 -0110100 Cadieux 12 -0110100 Aoi 12 -0110100 Hosking 12 -0110100 Tyce 12 -0110100 Mathieu 12 -0110100 Korten 12 -0110100 Shupe 12 -0110100 Cirino 12 -0110100 Golisano 12 -0110100 Tapp 12 -0110100 Planitzer 12 -0110100 Sardas 12 -0110100 Cardwell 12 -0110100 Pistorio 12 -0110100 Iny 12 -0110100 McAn 12 -0110100 McNary 12 -0110100 Feulner 12 -0110100 Heinbach 12 -0110100 Stolberg 12 -0110100 Demers 12 -0110100 Marden 12 -0110100 Boulez 12 -0110100 Glowacki 12 -0110100 Lesher 12 -0110100 Wiest 12 -0110100 Frankino 12 -0110100 Roldan 12 -0110100 Whitby 12 -0110100 Oxman 12 -0110100 Daugherty 12 -0110100 Wachsman 12 -0110100 Hearn 12 -0110100 Pasternak 12 -0110100 Edelson 12 -0110100 Lonski 12 -0110100 Winokur 12 -0110100 Ashenberg 12 -0110100 Luerssen 12 -0110100 Mazeika 12 -0110100 Langella 12 -0110100 Keil 12 -0110100 Kashiwagi 12 -0110100 Bulkeley 12 -0110100 Greener 12 -0110100 Sudduth 12 -0110100 Seamans 12 -0110100 Jerritts 12 -0110100 Laden 12 -0110100 Rewey 12 -0110100 Kganakga 12 -0110100 Ruggiero 12 -0110100 Yoshihara 12 -0110100 Bracken 12 -0110100 Stello 12 -0110100 Susskind 12 -0110100 Swope 12 -0110100 Mandich 12 -0110100 Kyi 12 -0110100 Lorek 13 -0110100 Gabbard 13 -0110100 Ribeiro 13 -0110100 Buckman 13 -0110100 Matteis 13 -0110100 Luma 13 -0110100 Dudack 13 -0110100 Esteban 13 -0110100 al-Mahdi 13 -0110100 Madelin 13 -0110100 Truffaut 13 -0110100 Botta 13 -0110100 Balcerowicz 13 -0110100 Redfield 13 -0110100 Goeglein 13 -0110100 Lipstein 13 -0110100 Kielley 13 -0110100 Balletto 13 -0110100 Franklin-Trout 13 -0110100 Bergland 13 -0110100 Quello 13 -0110100 Fralick 13 -0110100 Carucci 13 -0110100 Schrage 13 -0110100 Villiers 13 -0110100 Bavadra 13 -0110100 Flippo 13 -0110100 Bedke 13 -0110100 Hirose 13 -0110100 Firino-Martell 13 -0110100 Abuladze 13 -0110100 Klinghoffer 13 -0110100 Mironenko 13 -0110100 Peralta 13 -0110100 Gostev 13 -0110100 Kolber 13 -0110100 Chazov 13 -0110100 Weiser 13 -0110100 Cogan 13 -0110100 Weisberg 13 -0110100 Ehrenreich 13 -0110100 Kitchin 13 -0110100 Lomeli 13 -0110100 Baldry 13 -0110100 Kosyakov 13 -0110100 Martenson 13 -0110100 Zaccaro 13 -0110100 Shopkorn 13 -0110100 Luca 13 -0110100 Foss 13 -0110100 Corzine 13 -0110100 Dooley 13 -0110100 Vassiliou 13 -0110100 Melzer 13 -0110100 Schoellhorn 13 -0110100 DeVita 13 -0110100 Walser 13 -0110100 Belzer 13 -0110100 Minoli 13 -0110100 Cavan 13 -0110100 Ulam 13 -0110100 Lagomarsino 13 -0110100 Farber 13 -0110100 Alito 13 -0110100 Harty 13 -0110100 Matta 13 -0110100 Lanzelotti 13 -0110100 Finnie 13 -0110100 Scruton 13 -0110100 Jayme 13 -0110100 Turow 13 -0110100 Fujiwara 13 -0110100 Brindel 13 -0110100 Cece 13 -0110100 Marquard 13 -0110100 Plohn 13 -0110100 Bahr 13 -0110100 Dordies 13 -0110100 Pontikes 13 -0110100 Develle 13 -0110100 Bambenek 13 -0110100 Golde 13 -0110100 Kehne 13 -0110100 Trefgarne 13 -0110100 Bocharov 13 -0110100 Aronson 13 -0110100 Aksler 13 -0110100 Iacobellis 13 -0110100 Jaques 13 -0110100 Angeloz 13 -0110100 Royer 13 -0110100 Abrahams 13 -0110100 Montalban 13 -0110100 Eppner 13 -0110100 Antolini 13 -0110100 Barros 13 -0110100 Marple 13 -0110100 Hawkes 13 -0110100 Damore 13 -0110100 Hauck 13 -0110100 Glashow 13 -0110100 McLellan 13 -0110100 Lederman 13 -0110100 Cassell 13 -0110100 Spadafora 13 -0110100 Daigle 13 -0110100 Langsford 13 -0110100 Kozberg 13 -0110100 Witzel 13 -0110100 Merow 13 -0110100 Fogerty 13 -0110100 Cosentino 13 -0110100 Falco 13 -0110100 Grassi 13 -0110100 Waldegard 13 -0110100 Sie 13 -0110100 Haraszti 13 -0110100 Capen 13 -0110100 Borer 13 -0110100 Odom 13 -0110100 Daschle 13 -0110100 Cobrin 13 -0110100 Gelardin 13 -0110100 Shih 13 -0110100 Mylod 13 -0110100 Dromgoole 13 -0110100 Kleiman 13 -0110100 Holcombe 13 -0110100 Barkin 13 -0110100 Galie 13 -0110100 Bonderman 13 -0110100 Eagleye 13 -0110100 Pacheco 13 -0110100 Lemley 13 -0110100 Bellmon 13 -0110100 Eckrote 13 -0110100 Schoenholtz 13 -0110100 Giglio 13 -0110100 Vernier 13 -0110100 Pattison 13 -0110100 Chapnick 13 -0110100 Hamm 13 -0110100 Isenberg 13 -0110100 Benveniste 13 -0110100 Halamandaris 13 -0110100 Flatley 13 -0110100 Cecin 13 -0110100 Nahas 13 -0110100 Barletta 13 -0110100 Auger 13 -0110100 Righetti 13 -0110100 Mellor 13 -0110100 Mains 13 -0110100 Gann 13 -0110100 Colburn 13 -0110100 Mittelstadt 13 -0110100 Freese 13 -0110100 Ingrassia 13 -0110100 Hunsucker 13 -0110100 Meridor 13 -0110100 Tramontin 13 -0110100 Beamon 13 -0110100 Montrone 13 -0110100 Kalmanovitz 13 -0110100 Uzzell 13 -0110100 Dae-Jung 13 -0110100 Cleese 13 -0110100 Nevitt 13 -0110100 Buxton 13 -0110100 Nadgwick 13 -0110100 Galipault 13 -0110100 Mondry 13 -0110100 Strayer 13 -0110100 Popper 13 -0110100 Murley 13 -0110100 Adelizzi 13 -0110100 McAfee 13 -0110100 Fredkin 13 -0110100 Minkoff 13 -0110100 Lidgerwood 13 -0110100 Kehl 13 -0110100 Bains 13 -0110100 Walde 13 -0110100 Dill 13 -0110100 Segel 13 -0110100 Barger 13 -0110100 Reuther 13 -0110100 Vessey 13 -0110100 Dodson 13 -0110100 Geissler 13 -0110100 Albertine 13 -0110100 Rudner 13 -0110100 Coons 13 -0110100 Epps 13 -0110100 Quaid 13 -0110100 Epp 13 -0110100 Wojnilower 13 -0110100 Warburton 13 -0110100 Baumann 13 -0110100 Ellsberg 13 -0110100 Gregorie 13 -0110100 Hiam 13 -0110100 Arce 13 -0110100 Shearer 13 -0110100 Mumford 13 -0110100 Krugman 13 -0110100 McClelland 13 -0110100 Clapp 13 -0110100 Hutcheson 13 -0110100 Henning 13 -0110100 Frears 13 -0110100 Dudar 13 -0110100 Doolittle 13 -0110100 Gejdenson 13 -0110100 Zech 13 -0110100 Urquhart 13 -0110100 Ahern 13 -0110100 Mennini 13 -0110100 Falvey 13 -0110100 Dobrynin 13 -0110100 Cantalupo 13 -0110100 Knudson 13 -0110100 McGoldrick 13 -0110100 Kelman 13 -0110100 Vasey 13 -0110100 Deutch 13 -0110100 Saberbein 13 -0110100 Raimondo 13 -0110100 Moray 13 -0110100 Herschell 13 -0110100 Milstein 13 -0110100 Ostroff 13 -0110100 Basinger 13 -0110100 Anker 13 -0110100 Soares 13 -0110100 Pape 13 -0110100 Skeoch 13 -0110100 Ott 13 -0110100 Heston 13 -0110100 Podesta 13 -0110100 Chacin 13 -0110100 Kozloff 13 -0110100 Aleman 13 -0110100 Pinter 13 -0110100 Gergen 14 -0110100 Hamill 14 -0110100 Azpurua 14 -0110100 Havemann 14 -0110100 Kotowski 14 -0110100 Selowsky 14 -0110100 Gatti 14 -0110100 Razaleigh 14 -0110100 Samper 14 -0110100 Zeiger 14 -0110100 Hough 14 -0110100 Weitzel 14 -0110100 Zayed 14 -0110100 Currie 14 -0110100 McCamant 14 -0110100 Godbold 14 -0110100 Smyth 14 -0110100 Coyne 14 -0110100 Gul 14 -0110100 Schmergel 14 -0110100 Dowdy 14 -0110100 Lahti 14 -0110100 Gitlin 14 -0110100 Dulude 14 -0110100 Druckenmiller 14 -0110100 Mazankowski 14 -0110100 Slaine 14 -0110100 Appelbaum 14 -0110100 Nishida 14 -0110100 Fortin 14 -0110100 Crews 14 -0110100 Frucher 14 -0110100 Rapp 14 -0110100 Waitzkin 14 -0110100 Rudin 14 -0110100 Kosowsky 14 -0110100 Dortch 14 -0110100 Conrades 14 -0110100 Falconer 14 -0110100 Unsworth 14 -0110100 Klinger 14 -0110100 Despain 14 -0110100 Ileto 14 -0110100 Escamez 14 -0110100 Gluntz 14 -0110100 Bachmann 14 -0110100 Frantzen 14 -0110100 Ophuls 14 -0110100 Oleske 14 -0110100 Blumenfeld 14 -0110100 Reischauer 14 -0110100 Macfarlane 14 -0110100 Ciaccia 14 -0110100 Schneiderman 14 -0110100 Countryman 14 -0110100 Lauer 14 -0110100 Liro 14 -0110100 Zelnick 14 -0110100 Whitlock 14 -0110100 Mano 14 -0110100 Spethmann 14 -0110100 Trowbridge 14 -0110100 Koplovitz 14 -0110100 Condon 14 -0110100 Pih 14 -0110100 Mendola 14 -0110100 Stillwell 14 -0110100 Khosla 14 -0110100 Nadein 14 -0110100 Zaslow 14 -0110100 Eyton 14 -0110100 Lichter 14 -0110100 Danzig 14 -0110100 Lowery 14 -0110100 Jarrell 14 -0110100 Staller 14 -0110100 Deasy 14 -0110100 Tew 14 -0110100 Ensrud 14 -0110100 Lewins 14 -0110100 Wickham 14 -0110100 Bitar 14 -0110100 Enright 14 -0110100 Deighton 14 -0110100 Smotrich 14 -0110100 Barovic 14 -0110100 Soleil 14 -0110100 Erdrich 14 -0110100 Kawai 14 -0110100 Seydoux 14 -0110100 Yoshioka 14 -0110100 Gleeson 14 -0110100 Notis 14 -0110100 Ebert 14 -0110100 Wisner 14 -0110100 Zap 14 -0110100 Adenauer 14 -0110100 Dugan 14 -0110100 Tauke 14 -0110100 Kangas 14 -0110100 Sikora 14 -0110100 Holst 14 -0110100 Crasnianski 14 -0110100 Lyne 14 -0110100 Barlowe 14 -0110100 Paton 14 -0110100 Shewmaker 14 -0110100 Chadwick 14 -0110100 Goodner 14 -0110100 Woodworth 14 -0110100 Blass 14 -0110100 Balukas 14 -0110100 Bolcom 14 -0110100 Hasegawa 14 -0110100 Montoya 14 -0110100 Huggins 14 -0110100 Mishkin 14 -0110100 Tarantino 14 -0110100 Juge 14 -0110100 Unterman 14 -0110100 C.P.A. 14 -0110100 Oanh 14 -0110100 Bradtmiller 14 -0110100 Zumwalt 14 -0110100 Pert 14 -0110100 Rothberg 14 -0110100 Handros 14 -0110100 Ghidella 14 -0110100 Hoenig 14 -0110100 McWhorter 14 -0110100 Wynyard 14 -0110100 Volvovitz 14 -0110100 Kakimoto 14 -0110100 Synar 14 -0110100 Siedenburg 14 -0110100 Kirchberger 14 -0110100 Teitelbaum 14 -0110100 Bohn 14 -0110100 Ecevit 14 -0110100 Biddle 14 -0110100 Crick 14 -0110100 Bingaman 14 -0110100 Scharp 14 -0110100 Litt 14 -0110100 Ciampi 14 -0110100 Wetzel 14 -0110100 Kupfer 14 -0110100 Westheimer 14 -0110100 Oppens 14 -0110100 Sommers 14 -0110100 McElvaine 14 -0110100 Allaire 14 -0110100 Sandberg 14 -0110100 Kremer 14 -0110100 Lau 14 -0110100 Waldman 14 -0110100 Caridi 14 -0110100 Stoney 14 -0110100 McKnew 14 -0110100 Allman 14 -0110100 Topol 14 -0110100 Sikorski 14 -0110100 Reinsdorf 14 -0110100 Bierbusse 14 -0110100 Zilkha 14 -0110100 Krauss 14 -0110100 Maurer 14 -0110100 Stigler 14 -0110100 Pezeshkan 14 -0110100 Provine 14 -0110100 Wolitarsky 14 -0110100 Janklow 14 -0110100 Riddle 14 -0110100 Shi 14 -0110100 Hendon 14 -0110100 Curd 14 -0110100 Cusack 14 -0110100 Markowitz 14 -0110100 Jeffords 14 -0110100 Gilligan 14 -0110100 Pownall 14 -0110100 Felker 14 -0110100 Chiapparone 14 -0110100 Perkowski 14 -0110100 Barenboim 14 -0110100 Mica 14 -0110100 Newsome 14 -0110100 Zweibel 14 -0110100 Lataif 14 -0110100 Haussmann 14 -0110100 Bordallo 14 -0110100 Aghazadeh 14 -0110100 Eban 14 -0110100 Usry 14 -0110100 Weinstock 14 -0110100 Nakamura 14 -0110100 Engels 14 -0110100 Luttwak 14 -0110100 Hurtt 14 -0110100 Mamis 14 -0110100 Ganis 14 -0110100 Wolpe 14 -0110100 Killory 14 -0110100 Jahn 14 -0110100 Nakhamkin 14 -0110100 Qureshi 14 -0110100 Moman 14 -0110100 Teixeira 14 -0110100 Guterman 14 -0110100 Hoyvald 14 -0110100 Tepper 14 -0110100 Hockin 14 -0110100 Scohier 14 -0110100 Boguslavskaya 14 -0110100 Banoun 14 -0110100 Lipkind 14 -0110100 Rutz 14 -0110100 Asner 14 -0110100 Kress 14 -0110100 Branitzky 14 -0110100 Chabon 14 -0110100 Tartaglia 14 -0110100 Haymes 14 -0110100 Wardrop 14 -0110100 Kheel 14 -0110100 Thometz 14 -0110100 Bottel 14 -0110100 Neukirchen 14 -0110100 Shively 14 -0110100 Saidiner 14 -0110100 Cuddihy 14 -0110100 Attenborough 14 -0110100 Rushton 15 -0110100 Salazar 15 -0110100 Bergmann 15 -0110100 Witkin 15 -0110100 Aykroyd 15 -0110100 Burleson 15 -0110100 Worseck 15 -0110100 Crowder 15 -0110100 Jablonski 15 -0110100 Considine 15 -0110100 Liscom 15 -0110100 Loucks 15 -0110100 Braunwald 15 -0110100 Prichard 15 -0110100 Rowell 15 -0110100 Schram 15 -0110100 Olesen 15 -0110100 Yarnell 15 -0110100 Cortes 15 -0110100 Grigoli 15 -0110100 Sarokin 15 -0110100 Miyazaki 15 -0110100 Schluter 15 -0110100 Rocca 15 -0110100 Chinh 15 -0110100 Bonin 15 -0110100 Allard 15 -0110100 Beytout 15 -0110100 Coll 15 -0110100 Benard 15 -0110100 Gvaryahu 15 -0110100 Crichton 15 -0110100 Cowell 15 -0110100 Brenna 15 -0110100 Fery 15 -0110100 Kraeutler 15 -0110100 Terrizzi 15 -0110100 Kristiansen 15 -0110100 Wildavsky 15 -0110100 Liebowitz 15 -0110100 Hoch 15 -0110100 Schechter 15 -0110100 Armellino 15 -0110100 Hagens 15 -0110100 Salamon 15 -0110100 Relman 15 -0110100 Fricke 15 -0110100 Chow 15 -0110100 Kerrigan 15 -0110100 Blitz 15 -0110100 Ringe 15 -0110100 Catto 15 -0110100 Kennan 15 -0110100 Fulani 15 -0110100 Riely 15 -0110100 Maslyukov 15 -0110100 Headroom 15 -0110100 Malkovich 15 -0110100 Aponte 15 -0110100 Baig 15 -0110100 Fichera 15 -0110100 Rakolta 15 -0110100 Donapria 15 -0110100 Monsky 15 -0110100 Covatta 15 -0110100 Villanueva 15 -0110100 Kuehler 15 -0110100 Verleger 15 -0110100 Ben-Dov 15 -0110100 DeArment 15 -0110100 Kess 15 -0110100 Pletscher 15 -0110100 Helton 15 -0110100 Paff 15 -0110100 Gillman 15 -0110100 Beaudoin 15 -0110100 Kilburn 15 -0110100 Litvack 15 -0110100 Nurock 15 -0110100 Meyo 15 -0110100 Demme 15 -0110100 Marcheschi 15 -0110100 Beckham 15 -0110100 Sharansky 15 -0110100 Iason 15 -0110100 Loftus 15 -0110100 Marcial 15 -0110100 Biggar 15 -0110100 Helprin 15 -0110100 McCrea 15 -0110100 Dornbusch 15 -0110100 Perch 15 -0110100 Kochan 15 -0110100 Arrington 15 -0110100 Besharov 15 -0110100 Vicenzi 15 -0110100 Landes 15 -0110100 Batchelor 15 -0110100 Dornan 15 -0110100 Goh 15 -0110100 Dauster 15 -0110100 Ziolkowski 15 -0110100 Knauss 15 -0110100 Hazelbaker 15 -0110100 Pasman 15 -0110100 Gupta 15 -0110100 Lichtenberg 15 -0110100 Velasco 15 -0110100 Mutz 15 -0110100 Darling 15 -0110100 Lachica 15 -0110100 Bertolucci 15 -0110100 Marton 15 -0110100 Saleh 15 -0110100 Leming 15 -0110100 Falcigno 15 -0110100 Kessel 15 -0110100 Solodar 15 -0110100 Sargeant 15 -0110100 Bryden 15 -0110100 Plisetskaya 15 -0110100 Sauls 15 -0110100 Mignanelli 15 -0110100 Kunkel 15 -0110100 Glendinning 15 -0110100 Muratore 15 -0110100 Kasputys 15 -0110100 Decherd 15 -0110100 Bourne 15 -0110100 Gulley 15 -0110100 Nicandros 15 -0110100 Fauntroy 15 -0110100 Kondo 15 -0110100 Shuster 15 -0110100 McGuigan 15 -0110100 Martirosov 15 -0110100 Brumbaugh 15 -0110100 Puck 15 -0110100 Goelzer 15 -0110100 Figueroa 15 -0110100 Bonker 15 -0110100 Rusher 15 -0110100 Kreiger 15 -0110100 Swaim 15 -0110100 Minarik 15 -0110100 Smithburg 15 -0110100 Brinker 15 -0110100 Crispen 15 -0110100 McEvoy 15 -0110100 Macktal 15 -0110100 Michaelis 15 -0110100 Sesit 15 -0110100 Mair 15 -0110100 Hsu 15 -0110100 Mericantante 15 -0110100 Shaddix 15 -0110100 Poyner 15 -0110100 Ambrose 15 -0110100 Singerman 15 -0110100 Jett 15 -0110100 Shutt 15 -0110100 Ludmer 15 -0110100 Fetterolf 15 -0110100 Lampert 15 -0110100 Tarrance 15 -0110100 Hendrick 15 -0110100 Truex 15 -0110100 Styles 15 -0110100 Stubblefield 15 -0110100 Steinmetz 15 -0110100 Lekachman 15 -0110100 Enterline 15 -0110100 Pence 15 -0110100 Broome 15 -0110100 Mohr 15 -0110100 Hering 15 -0110100 Cantwell 15 -0110100 Berri 15 -0110100 Tamke 15 -0110100 Canepa 15 -0110100 Rothstein 15 -0110100 Schwarzman 15 -0110100 Aoun 15 -0110100 Halvorsen 15 -0110100 Scholl 15 -0110100 Fishlow 15 -0110100 Senner 15 -0110100 Boeschenstein 15 -0110100 Palermo 15 -0110100 Soleri 15 -0110100 Skeeters 15 -0110100 Raskin 15 -0110100 Haupert 15 -0110100 Jenninger 16 -0110100 Fitzsimmons 16 -0110100 Prentnieks 16 -0110100 della 16 -0110100 Shay 16 -0110100 Chodorow 16 -0110100 Lazzell 16 -0110100 Ruderman 16 -0110100 Varzi 16 -0110100 Ihasz 16 -0110100 Lynford 16 -0110100 Johansson 16 -0110100 Potts 16 -0110100 McCardell 16 -0110100 Sherrer 16 -0110100 Syron 16 -0110100 Grennan 16 -0110100 Schupak 16 -0110100 Mazzorana 16 -0110100 Dorsch 16 -0110100 Isgro 16 -0110100 Vajna 16 -0110100 Goodson 16 -0110100 Schuler 16 -0110100 Gretzky 16 -0110100 Schlang 16 -0110100 Ninagawa 16 -0110100 Hanisee 16 -0110100 Fugard 16 -0110100 Stalon 16 -0110100 Horvitz 16 -0110100 Mazza 16 -0110100 Tsang 16 -0110100 Fahrenkopf 16 -0110100 Sokolov 16 -0110100 DeLillo 16 -0110100 Clott 16 -0110100 Melton 16 -0110100 Podhoretz 16 -0110100 Espy 16 -0110100 Manners 16 -0110100 Nesi 16 -0110100 Buckhantz 16 -0110100 Gagnon 16 -0110100 Shohat 16 -0110100 Krohn 16 -0110100 Brocksmith 16 -0110100 Buegler 16 -0110100 Quindlen 16 -0110100 Gotthelf 16 -0110100 Confair 16 -0110100 Wollaeger 16 -0110100 Wilk 16 -0110100 Barthelemy 16 -0110100 Sear 16 -0110100 Villar 16 -0110100 Goldwasser 16 -0110100 Mrazek 16 -0110100 Lareau 16 -0110100 Bissell 16 -0110100 Gorges 16 -0110100 Fantle 16 -0110100 Gherman 16 -0110100 Skelton 16 -0110100 Ronstadt 16 -0110100 Malanga 16 -0110100 Lombardi 16 -0110100 Murrin 16 -0110100 Desmarais 16 -0110100 Haritos 16 -0110100 Scharenberg 16 -0110100 Cirillo 16 -0110100 Hemminghaus 16 -0110100 Carvell 16 -0110100 Grua 16 -0110100 Edell 16 -0110100 Labrecque 16 -0110100 Kolowich 16 -0110100 Lambro 16 -0110100 Mattingly 16 -0110100 Conley 16 -0110100 Miner 16 -0110100 Bonior 16 -0110100 Volk 16 -0110100 Cornfeld 16 -0110100 Reichley 16 -0110100 Hogwood 16 -0110100 Malott 16 -0110100 Peppers 16 -0110100 Lehmann 16 -0110100 Welp 16 -0110100 Okun 16 -0110100 Lemmon 16 -0110100 Vorontsov 16 -0110100 Maglica 16 -0110100 Helmick 16 -0110100 Kubiak 16 -0110100 Harada 16 -0110100 Ouellette 16 -0110100 Finkelson 16 -0110100 Arum 16 -0110100 Markman 16 -0110100 Thaler 16 -0110100 Rothe 16 -0110100 DeLong 16 -0110100 Pels 16 -0110100 Pappas 16 -0110100 Morze 16 -0110100 Boschwitz 16 -0110100 Herzlinger 16 -0110100 Sestanovich 16 -0110100 Oelman 16 -0110100 Slovo 16 -0110100 Vittoria 16 -0110100 Tseng 16 -0110100 Sas 16 -0110100 Turco 16 -0110100 Benefield 16 -0110100 Hazen 16 -0110100 Caloway 16 -0110100 Beeney 16 -0110100 Wyser-Pratte 16 -0110100 Greenberger 16 -0110100 Blain 16 -0110100 McCarry 16 -0110100 Aronoff 16 -0110100 Avedisian 16 -0110100 Alhadeff 16 -0110100 Carothers 16 -0110100 Sundlun 16 -0110100 Sher 16 -0110100 Eckart 16 -0110100 Liemandt 16 -0110100 Turley 16 -0110100 Asman 16 -0110100 Giffen 16 -0110100 Giblen 16 -0110100 Whitacre 16 -0110100 Susann 16 -0110100 Caputo 16 -0110100 Penzer 16 -0110100 Gabler 16 -0110100 Stronach 16 -0110100 Squires 16 -0110100 Guffey 16 -0110100 Mukasey 16 -0110100 Cates 16 -0110100 Lauber 16 -0110100 Bettenberg 16 -0110100 Whipple 16 -0110100 Ishikawa 16 -0110100 Gehry 16 -0110100 Tellep 16 -0110100 Durchholz 16 -0110100 Smiley 16 -0110100 Locsin 16 -0110100 Birk 16 -0110100 Kurland 16 -0110100 Ponsolle 16 -0110100 Gibian 16 -0110100 Nikkhah 16 -0110100 Lazier 16 -0110100 Lively 16 -0110100 Gunsalus 16 -0110100 Lippmann 16 -0110100 Kamali 16 -0110100 Ellmann 16 -0110100 Wyngaarden 16 -0110100 Kolb 16 -0110100 Kagler 16 -0110100 Kastenmeier 16 -0110100 DioGuardi 16 -0110100 Slocum 17 -0110100 McAuliffe 17 -0110100 Zlotnick 17 -0110100 Mizuno 17 -0110100 Villegas 17 -0110100 Lent 17 -0110100 Rios 17 -0110100 Starkman 17 -0110100 McPhee 17 -0110100 Stattin 17 -0110100 Huizenga 17 -0110100 Ledbetter 17 -0110100 Schwartzman 17 -0110100 Pareti 17 -0110100 Mantle 17 -0110100 Hadfield 17 -0110100 Fournier 17 -0110100 Ohmae 17 -0110100 Mundell 17 -0110100 Koontz 17 -0110100 McGarr 17 -0110100 Hawking 17 -0110100 Slusher 17 -0110100 Doty 17 -0110100 Hudgins 17 -0110100 Kennelly 17 -0110100 Nall 17 -0110100 Ozick 17 -0110100 Fediay 17 -0110100 Litan 17 -0110100 Sweig 17 -0110100 Natale 17 -0110100 Wildmon 17 -0110100 Kitajima 17 -0110100 Junejo 17 -0110100 Landow 17 -0110100 Fusilli 17 -0110100 Isgur 17 -0110100 Ishihara 17 -0110100 Gans 17 -0110100 Sisulu 17 -0110100 Monahan 17 -0110100 Riss 17 -0110100 LaBonte 17 -0110100 Halmos 17 -0110100 Anreder 17 -0110100 Palmerino 17 -0110100 Borges 17 -0110100 Berardi 17 -0110100 Turchyn 17 -0110100 Kalliel 17 -0110100 Erck 17 -0110100 Costner 17 -0110100 Kuttner 17 -0110100 Torok 17 -0110100 Florescue 17 -0110100 Klesken 17 -0110100 Alderson 17 -0110100 Childs 17 -0110100 Alfiero 17 -0110100 Selwitz 17 -0110100 Beim 17 -0110100 Magnuson 17 -0110100 Kabbani 17 -0110100 Sulya 17 -0110100 Kapuscinski 17 -0110100 McMurray 17 -0110100 Marlowe 17 -0110100 Ewton 17 -0110100 Handley 17 -0110100 Barkley 17 -0110100 Hearns 17 -0110100 Eskridge 17 -0110100 Elsas 17 -0110100 Bierwirth 17 -0110100 Breyer 17 -0110100 Nordlund 17 -0110100 Mariucci 17 -0110100 Mullane 17 -0110100 Corley 17 -0110100 Gatliff 17 -0110100 Musolino 17 -0110100 Crippen 17 -0110100 Orton 17 -0110100 McKeon 17 -0110100 Crouch 17 -0110100 Flannigan 17 -0110100 Hinkle 17 -0110100 Heineman 17 -0110100 Berreth 17 -0110100 Brittain 17 -0110100 Harrigan 17 -0110100 Gorelick 17 -0110100 Bortel 17 -0110100 Souza 17 -0110100 Eppel 17 -0110100 Kawamura 17 -0110100 Goldberger 17 -0110100 Hindman 17 -0110100 Azcarraga 17 -0110100 Leveque 17 -0110100 Weigel 17 -0110100 Vranitzky 17 -0110100 Deering 17 -0110100 Reichert 17 -0110100 Urbanchuk 17 -0110100 Wessel 17 -0110100 Hannon 17 -0110100 Spagna 17 -0110100 Futrell 17 -0110100 Kundera 17 -0110100 Bomberg 17 -0110100 Barthelme 17 -0110100 Dutil 17 -0110100 Pattiz 17 -0110100 Manzella 17 -0110100 Malcolmson 17 -0110100 Eyler 17 -0110100 Polite 17 -0110100 Valente 17 -0110100 Gravely 17 -0110100 Goodfriend 17 -0110100 Kresa 17 -0110100 Dohnanyi 17 -0110100 Galpin 17 -0110100 Bellas 17 -0110100 Curzio 17 -0110100 Lek 17 -0110100 Nettles 17 -0110100 Zamora 17 -0110100 Goldschmidt 17 -0110100 Shafer 17 -0110100 Bosak 17 -0110100 Cordovez 17 -0110100 Ehrlichman 17 -0110100 Rudnet 17 -0110100 Szabo 17 -0110100 Crimmins 17 -0110100 Seifert 17 -0110100 Duvall 17 -0110100 Osterhoff 17 -0110100 Leinsdorf 17 -0110100 Wintour 17 -0110100 Lighthizer 17 -0110100 Chamberlin 17 -0110100 Hepburn 17 -0110100 Costa-Gavras 17 -0110100 Moffitt 17 -0110100 Hauptfuhrer 17 -0110100 Barbee 17 -0110100 Baur 17 -0110100 Calkins 17 -0110100 Nimrodi 18 -0110100 Robards 18 -0110100 Teague 18 -0110100 McCulley 18 -0110100 Rommel 18 -0110100 Newcomb 18 -0110100 Deihl 18 -0110100 Hintz 18 -0110100 Brando 18 -0110100 Sokolin 18 -0110100 Rifenburgh 18 -0110100 Escobar 18 -0110100 Edgell 18 -0110100 Mackintosh 18 -0110100 Rawls 18 -0110100 Kruttschnitt 18 -0110100 Jacobi 18 -0110100 Dorrance 18 -0110100 Pilson 18 -0110100 Eagleburger 18 -0110100 Belsky 18 -0110100 Piazzolla 18 -0110100 Carrick 18 -0110100 Bergenfield 18 -0110100 Unger 18 -0110100 Corea 18 -0110100 Jeyaretnam 18 -0110100 Mullin 18 -0110100 Markowski 18 -0110100 Pirko 18 -0110100 Schall 18 -0110100 Poitier 18 -0110100 Shribman 18 -0110100 Giovenco 18 -0110100 Chebrikov 18 -0110100 Sethness 18 -0110100 Romer 18 -0110100 Lagardere 18 -0110100 Veil 18 -0110100 Habib 18 -0110100 Tassin 18 -0110100 Artzt 18 -0110100 Wortley 18 -0110100 Payton 18 -0110100 Sadler 18 -0110100 Anguilla 18 -0110100 Dymally 18 -0110100 Hoyle 18 -0110100 Schlafly 18 -0110100 Ocampo 18 -0110100 Zarb 18 -0110100 Ravitch 18 -0110100 Klejna 18 -0110100 Chajet 18 -0110100 Hazlett 18 -0110100 Kubrick 18 -0110100 Markese 18 -0110100 Archambault 18 -0110100 Halprin 18 -0110100 Itami 18 -0110100 Richer 18 -0110100 Coward 18 -0110100 Mendez 18 -0110100 Begun 18 -0110100 Woodard 18 -0110100 Woerner 18 -0110100 Taney 18 -0110100 Rohs 18 -0110100 Esposito 18 -0110100 Seaton 18 -0110100 Estridge 18 -0110100 DeBakey 18 -0110100 Novick 18 -0110100 Lortel 18 -0110100 Sarlos 18 -0110100 Arvey 18 -0110100 Kirsch 18 -0110100 Gumport 18 -0110100 Traficant 18 -0110100 Solti 18 -0110100 DeWine 18 -0110100 Polevoi 18 -0110100 McBee 18 -0110100 Kita 18 -0110100 Tashjian 18 -0110100 Spellman 18 -0110100 Hawes 18 -0110100 Ruskin 18 -0110100 Dedeurwaerder 18 -0110100 Masuda 18 -0110100 Brownlee 18 -0110100 Geren 18 -0110100 Cassani 18 -0110100 Kindleberger 18 -0110100 Nickles 18 -0110100 Eigen 18 -0110100 Mugniyah 18 -0110100 Guarnaccia 18 -0110100 Boner 18 -0110100 Arledge 18 -0110100 Kurtz 18 -0110100 Seife 18 -0110100 Eccles 18 -0110100 Nealon 18 -0110100 Feuerman 18 -0110100 Oxley 18 -0110100 Neves 18 -0110100 Scholz 18 -0110100 Trillin 18 -0110100 Banerjee 18 -0110100 Papp 18 -0110100 Braddock 18 -0110100 Dutoit 18 -0110100 Keough 18 -0110100 Schlecht 18 -0110100 Burson 18 -0110100 Posnick 18 -0110100 Retemeyer 18 -0110100 Osterkamp 18 -0110100 Conn 18 -0110100 Forrestal 18 -0110100 Bukovsky 18 -0110100 Fulghum 18 -0110100 Friedson 18 -0110100 Dowd 18 -0110100 Bawer 18 -0110100 Retton 18 -0110100 Boroian 18 -0110100 Ellerbee 18 -0110100 Thanh 18 -0110100 Lamer 19 -0110100 Glasow 19 -0110100 Revzin 19 -0110100 McNerney 19 -0110100 Steinman 19 -0110100 Plotkin 19 -0110100 Beasley 19 -0110100 Monieson 19 -0110100 Obeid 19 -0110100 Brawley 19 -0110100 Osgood 19 -0110100 Reichler 19 -0110100 Milosevic 19 -0110100 Collor 19 -0110100 Ezoe 19 -0110100 Penner 19 -0110100 Rotberg 19 -0110100 Orsini 19 -0110100 Schreiber 19 -0110100 Schrempf 19 -0110100 Tregurtha 19 -0110100 Schwarzer 19 -0110100 Rayburn 19 -0110100 Kulkarni 19 -0110100 al-Wazir 19 -0110100 Dequeker 19 -0110100 Beckel 19 -0110100 DeCook 19 -0110100 Kiefer 19 -0110100 Yamashita 19 -0110100 Djurdjevic 19 -0110100 Stemberg 19 -0110100 Neto 19 -0110100 Rohrer 19 -0110100 Theroux 19 -0110100 Davignon 19 -0110100 Arbel 19 -0110100 Carswell 19 -0110100 Sigler 19 -0110100 Fujioka 19 -0110100 Glaser 19 -0110100 Blakenham 19 -0110100 Aweida 19 -0110100 Schwimmer 19 -0110100 Daspin 19 -0110100 Oslin 19 -0110100 Scholey 19 -0110100 Laidig 19 -0110100 Rill 19 -0110100 Bronston 19 -0110100 Jeffers 19 -0110100 Creighton 19 -0110100 Medvedev 19 -0110100 Chissano 19 -0110100 Hiler 19 -0110100 Soares-Kemp 19 -0110100 Elden 19 -0110100 Friedrick 19 -0110100 Kanter 19 -0110100 Squier 19 -0110100 Tussing 19 -0110100 Shurtleff 19 -0110100 Feeney 19 -0110100 Piscopo 19 -0110100 Albers 19 -0110100 Bussi 19 -0110100 Geneen 19 -0110100 Worrell 19 -0110100 Lichtblau 19 -0110100 Mikulski 19 -0110100 Liss 19 -0110100 Lencioni 19 -0110100 Obispo 19 -0110100 Salzberg 19 -0110100 Helfgott 19 -0110100 Breen 19 -0110100 Runckel 19 -0110100 Chaney 19 -0110100 Fourtou 19 -0110100 Orser 19 -0110100 Sciarra 19 -0110100 Kann 19 -0110100 Michener 19 -0110100 Tyrrell 19 -0110100 Kente 19 -0110100 Solow 19 -0110100 Channing 19 -0110100 Resnick 19 -0110100 Holbrook 19 -0110100 Schnittke 19 -0110100 Markle 19 -0110100 Garfinkle 19 -0110100 Corwin 19 -0110100 Lind 19 -0110100 Ballmer 19 -0110100 Nadler 19 -0110100 Ochoa 19 -0110100 Renier 19 -0110100 Stiles 19 -0110100 Dangerfield 19 -0110100 Subotnick 19 -0110100 Pons 19 -0110100 Schmeltzer 19 -0110100 Fehr 19 -0110100 Rendell 19 -0110100 Nendick 19 -0110100 Weitler 19 -0110100 Headrick 19 -0110100 Sondheim 19 -0110100 Sagan 19 -0110100 Lieberthal 19 -0110100 Nakayama 19 -0110100 Bartels 19 -0110100 Gassee 19 -0110100 Corday 19 -0110100 Samuelson 19 -0110100 Bluestone 19 -0110100 Koryagin 19 -0110100 Elliman 19 -0110100 Irani 19 -0110100 Kaunda 19 -0110100 Salizzoni 19 -0110100 Baltzell 19 -0110100 Castellvi 19 -0110100 Isautier 19 -0110100 Hoagland 19 -0110100 Guttman 19 -0110100 Leisenring 19 -0110100 Macioce 19 -0110100 Horwitz 19 -0110100 Hinckley 19 -0110100 Pistor 20 -0110100 Swavely 20 -0110100 Sexton 20 -0110100 Gauthier 20 -0110100 Ortiz 20 -0110100 Barrone 20 -0110100 Penman 20 -0110100 Lewinsohn 20 -0110100 Syrek 20 -0110100 Hohorst 20 -0110100 Leuzzi 20 -0110100 Boehm 20 -0110100 Moyer 20 -0110100 Qin 20 -0110100 Abanto 20 -0110100 Ramey 20 -0110100 Sakai 20 -0110100 Mottus 20 -0110100 Drapkin 20 -0110100 Ciccarone 20 -0110100 Volberding 20 -0110100 Mechem 20 -0110100 Kuse 20 -0110100 Stubbs 20 -0110100 Kuczynski 20 -0110100 Mavroules 20 -0110100 Nabi 20 -0110100 Popieluszko 20 -0110100 Cardin 20 -0110100 Chema 20 -0110100 Godard 20 -0110100 Bradlee 20 -0110100 Nakagawa 20 -0110100 Ozawa 20 -0110100 Blumstein 20 -0110100 Sorkow 20 -0110100 Friedsam 20 -0110100 Cymrot 20 -0110100 Getz 20 -0110100 Christenson 20 -0110100 Liang 20 -0110100 Maughan 20 -0110100 Junot 20 -0110100 Murtha 20 -0110100 McCulloch 20 -0110100 Batuigas 20 -0110100 Ontiveros 20 -0110100 Holderman 20 -0110100 Broadhead 20 -0110100 Taber 20 -0110100 Stemple 20 -0110100 Higgs 20 -0110100 Quintero 20 -0110100 deux 20 -0110100 Goodison 20 -0110100 Eggleston 20 -0110100 Canter 20 -0110100 Rao 20 -0110100 Manion 20 -0110100 Tsongas 20 -0110100 Mirabella 20 -0110100 Ewalt 20 -0110100 McCue 20 -0110100 Kunert 20 -0110100 Conti 20 -0110100 Larosiere 20 -0110100 Fossel 20 -0110100 Metter 20 -0110100 Simonds-Gooding 20 -0110100 Spock 20 -0110100 Probst 20 -0110100 Maucher 20 -0110100 Messer 20 -0110100 Ashcroft 20 -0110100 Sticht 20 -0110100 Tribull 20 -0110100 Kiszczak 20 -0110100 Tsakos 20 -0110100 McQueen 20 -0110100 Krapels 20 -0110100 Malin 20 -0110100 McAlinden 20 -0110100 Rees 20 -0110100 Baden 20 -0110100 Grano 20 -0110100 Haimovitz 20 -0110100 Celnik 20 -0110100 Jarchow 20 -0110100 Goulet 20 -0110100 Konen 20 -0110100 Nickelson 20 -0110100 Mencken 20 -0110100 Palmeri 20 -0110100 Stiegemeier 20 -0110100 Strinden 20 -0110100 Hanke 20 -0110100 Blandon 20 -0110100 Trueblood 20 -0110100 Amado 20 -0110100 Liddy 20 -0110100 Perritt 20 -0110100 Petzinger 20 -0110100 Yacos 20 -0110100 Krischer 20 -0110100 Espinosa 20 -0110100 Wheatley 20 -0110100 Bongard 20 -0110100 Blessing 20 -0110100 DiIanni 20 -0110100 Lacefield 20 -0110100 MacCallum 20 -0110100 Guarino 20 -0110100 Kelsey 20 -0110100 Isaacson 20 -0110100 Askew 20 -0110100 Capote 20 -0110100 Machold 20 -0110100 Siefert 20 -0110100 Ackroyd 20 -0110100 Bacha 20 -0110100 Guyon 20 -0110100 Karatz 20 -0110100 Dube 20 -0110100 Ainslie 21 -0110100 Kouril 21 -0110100 McMahan 21 -0110100 Ivey 21 -0110100 Haq 21 -0110100 Tharp 21 -0110100 Glazier 21 -0110100 Treurnicht 21 -0110100 Vann 21 -0110100 Wiseman 21 -0110100 Kingon 21 -0110100 Tettamanti 21 -0110100 Baez 21 -0110100 Monsod 21 -0110100 Arison 21 -0110100 Vartanian 21 -0110100 LaMothe 21 -0110100 Perlin 21 -0110100 Hassler 21 -0110100 Schlueter 21 -0110100 Deikel 21 -0110100 Barbella 21 -0110100 Izumi 21 -0110100 Bressler 21 -0110100 Lund 21 -0110100 Dassler 21 -0110100 Secchia 21 -0110100 Pae 21 -0110100 Cayne 21 -0110100 Ribicoff 21 -0110100 Huang 21 -0110100 Seixas 21 -0110100 Eckert 21 -0110100 Avril 21 -0110100 Grigoryants 21 -0110100 Kreicher 21 -0110100 Conlan 21 -0110100 Axilrod 21 -0110100 Weis 21 -0110100 Honderich 21 -0110100 Rostropovich 21 -0110100 Carlzon 21 -0110100 Sharer 21 -0110100 Cosgrove 21 -0110100 Sharma 21 -0110100 Sturman 21 -0110100 Tigert 21 -0110100 Derr 21 -0110100 Califano 21 -0110100 Kistler 21 -0110100 Creedon 21 -0110100 Pizzo 21 -0110100 Sorenson 21 -0110100 Isaacs 21 -0110100 Daim 21 -0110100 Norrington 21 -0110100 Ducey 21 -0110100 Soifer 21 -0110100 Husseini 21 -0110100 Finkielstain 21 -0110100 Kelleher 21 -0110100 Terrell 21 -0110100 Alpert 21 -0110100 Climaco 21 -0110100 Pettit 21 -0110100 Callaghan 21 -0110100 Boyce 21 -0110100 Moreno 21 -0110100 Gulliver 21 -0110100 Brimmer 21 -0110100 Boltz 21 -0110100 Bahrenburg 21 -0110100 Guerra 21 -0110100 Scheer 21 -0110100 Pedersen 21 -0110100 Swenson 21 -0110100 MacLaine 21 -0110100 Redgrave 21 -0110100 Louganis 21 -0110100 Queenan 21 -0110100 Uchida 21 -0110100 Troyanos 21 -0110100 Alegrett 21 -0110100 Bavis 21 -0110100 Culler 21 -0110100 Poznikov 21 -0110100 Rothchild 21 -0110100 Hamdoon 21 -0110100 Thanos 21 -0110100 Skolnick 21 -0110100 Lamle 21 -0110100 Fascell 21 -0110100 Diery 21 -0110100 Linder 21 -0110100 Kass 21 -0110100 Bodner 21 -0110100 Spens 21 -0110100 Carnicero 21 -0110100 Stenholm 21 -0110100 Kassar 21 -0110100 Maslin 21 -0110100 Gidel 21 -0110100 Gabor 21 -0110100 Ambriano 21 -0110100 Skala 21 -0110100 Bickford 21 -0110100 Hinz 21 -0110100 Campos 21 -0110100 Mortara 21 -0110100 Blankenship 21 -0110100 Staloff 21 -0110100 Finkbiner 21 -0110100 Wexler 21 -0110100 Resnais 21 -0110100 Dolezal 21 -0110100 Biderman 21 -0110100 Chiu 22 -0110100 Perito 22 -0110100 Dessauer 22 -0110100 Condit 22 -0110100 Cavanaugh 22 -0110100 Hayman 22 -0110100 Moreland 22 -0110100 Phillippi 22 -0110100 Cabrera 22 -0110100 Feigen 22 -0110100 Furer 22 -0110100 Halperin 22 -0110100 Alioto 22 -0110100 Attali 22 -0110100 Bolles 22 -0110100 Terracciano 22 -0110100 Subandrio 22 -0110100 Seaga 22 -0110100 Ruding 22 -0110100 Allais 22 -0110100 Sarni 22 -0110100 Natcher 22 -0110100 Friedmann 22 -0110100 Mossberg 22 -0110100 Cartusciello 22 -0110100 Goloven 22 -0110100 Agostini 22 -0110100 Flumenbaum 22 -0110100 Muramatsu 22 -0110100 Bijur 22 -0110100 Nishi 22 -0110100 Stirling 22 -0110100 Rybakov 22 -0110100 Lipson 22 -0110100 Kozol 22 -0110100 Weed 22 -0110100 Martins 22 -0110100 Byrnes 22 -0110100 Duesberg 22 -0110100 Wien 22 -0110100 Greider 22 -0110100 Wisel 22 -0110100 Patinkin 22 -0110100 Buren 22 -0110100 Jeanniot 22 -0110100 Scarfo 22 -0110100 Valenzuela 22 -0110100 Erikson 22 -0110100 Sokol 22 -0110100 McNay 22 -0110100 Francois-Poncet 22 -0110100 Leibovitz 22 -0110100 LaBow 22 -0110100 Taki 22 -0110100 Otaiba 22 -0110100 Dickerson 22 -0110100 Belli 22 -0110100 Carmichael 22 -0110100 Erburu 22 -0110100 Amis 22 -0110100 Bok 22 -0110100 Lapham 22 -0110100 Berton 22 -0110100 Carper 22 -0110100 Ferrara 22 -0110100 Hendrix 22 -0110100 Gottschalk 22 -0110100 Ellison 22 -0110100 Volpicella 22 -0110100 Castleman 22 -0110100 Catain 22 -0110100 Lovejoy 22 -0110100 Lupo 22 -0110100 Malkiel 22 -0110100 Wunderle 22 -0110100 Kavanagh 22 -0110100 Hersch 22 -0110100 Sankey 22 -0110100 Genger 22 -0110100 Berner 22 -0110100 Luft 22 -0110100 Mofford 22 -0110100 Pate 22 -0110100 Friesen 22 -0110100 Lacovara 22 -0110100 DeMuth 22 -0110100 Donlan 22 -0110100 Quinton 22 -0110100 Venturi 22 -0110100 Gignoux 22 -0110100 Frawley 22 -0110100 Crutchfield 22 -0110100 Ohmura 22 -0110100 Schrader 22 -0110100 Duzan 22 -0110100 Hagan 22 -0110100 Iosue 22 -0110100 Jimenez 22 -0110100 Grigorovich 22 -0110100 Revson 22 -0110100 Jakes 22 -0110100 Chaplin 22 -0110100 Colbert 22 -0110100 Gerson 22 -0110100 McKernan 22 -0110100 Sanada 22 -0110100 Waleson 22 -0110100 Dominelli 22 -0110100 Loiseau 22 -0110100 Buckstein 22 -0110100 Karp 22 -0110100 Hayashi 22 -0110100 Sacks 22 -0110100 Valenzano 22 -0110100 Kleckner 22 -0110100 Pompadur 22 -0110100 Chesley 22 -0110100 Beckett 22 -0110100 Bochco 22 -0110100 Bianchi 22 -0110100 Parcher 22 -0110100 Strenger 22 -0110100 Tuyle 22 -0110100 Lyski 22 -0110100 Calvet 22 -0110100 Brannon 22 -0110100 Mulligan 22 -0110100 Goizueta 22 -0110100 McCurdy 23 -0110100 Brinkman 23 -0110100 Colton 23 -0110100 McCartney 23 -0110100 LeFrere 23 -0110100 Mooradian 23 -0110100 McGregor 23 -0110100 DiMaggio 23 -0110100 Dabah 23 -0110100 Lindgren 23 -0110100 Pincavage 23 -0110100 FitzGerald 23 -0110100 Callies 23 -0110100 Jacoboski 23 -0110100 Calloway 23 -0110100 Huffstutler 23 -0110100 Fahey 23 -0110100 Powelson 23 -0110100 Demirel 23 -0110100 Burford 23 -0110100 Lavoro 23 -0110100 Koh 23 -0110100 Engeleiter 23 -0110100 Bosco 23 -0110100 Abelow 23 -0110100 Tennenbaum 23 -0110100 Guccione 23 -0110100 Neidl 23 -0110100 Noyce 23 -0110100 Warrick 23 -0110100 Hentic 23 -0110100 Whitfield 23 -0110100 Forman 23 -0110100 Sorkin 23 -0110100 Munoz 23 -0110100 Hubbell 23 -0110100 Giard 23 -0110100 Gero 23 -0110100 McGegan 23 -0110100 Wolsfeld 23 -0110100 Magee 23 -0110100 Reamer 23 -0110100 Rosenstein 23 -0110100 Fanning 23 -0110100 Broomfield 23 -0110100 Mauro 23 -0110100 Mertz 23 -0110100 Abdallah 23 -0110100 Comer 23 -0110100 Mailer 23 -0110100 Lublin 23 -0110100 Fusco 23 -0110100 Maddox 23 -0110100 Benninger 23 -0110100 McDade 23 -0110100 Gruber 23 -0110100 Capone 23 -0110100 Yamaguchi 23 -0110100 Schimberni 23 -0110100 Reiter 23 -0110100 Ayers 23 -0110100 Bozic 23 -0110100 Haber 23 -0110100 Haacke 23 -0110100 Pattie 23 -0110100 Birdsall 23 -0110100 Friedley 23 -0110100 Rosenblatt 23 -0110100 Farkas 23 -0110100 Zwick 23 -0110100 Mayhew 23 -0110100 Jesudason 23 -0110100 Tietmeyer 23 -0110100 Hoelterhoff 23 -0110100 Sternberg 23 -0110100 Sperlich 23 -0110100 Sprung 23 -0110100 Stuckey 23 -0110100 Spiegelman 23 -0110100 Lavin 23 -0110100 Gunlicks 23 -0110100 Durbin 23 -0110100 Desai 23 -0110100 Shaver 23 -0110100 Hartmann 23 -0110100 Dannemeyer 23 -0110100 Guerrero 23 -0110100 Machel 23 -0110100 Simes 23 -0110100 Felis 23 -0110100 Javett 23 -0110100 Reinhardt 23 -0110100 Benitez 23 -0110100 Oehmen 23 -0110100 Lavery 23 -0110100 Snedaker 23 -0110100 Cedergren 23 -0110100 Manigat 23 -0110100 Rakowski 24 -0110100 Hagiwara 24 -0110100 Udagawa 24 -0110100 Gunderson 24 -0110100 Sajak 24 -0110100 Kerr-Dineen 24 -0110100 Fickling 24 -0110100 Hinson 24 -0110100 Blakey 24 -0110100 Kimsey 24 -0110100 Perlmutter 24 -0110100 Kocur 24 -0110100 LeFevre 24 -0110100 Streep 24 -0110100 Micheli 24 -0110100 Zamfir 24 -0110100 Meselson 24 -0110100 Nitze 24 -0110100 Ladehoff 24 -0110100 Tuccillo 24 -0110100 Malabre 24 -0110100 Atta 24 -0110100 Billington 24 -0110100 Bradfield 24 -0110100 Schweich 24 -0110100 Gyohten 24 -0110100 Pollini 24 -0110100 Esch 24 -0110100 Lehtinen 24 -0110100 Nadel 24 -0110100 Krowe 24 -0110100 Preisig 24 -0110100 Bandow 24 -0110100 Higby 24 -0110100 Gordji 24 -0110100 Utgoff 24 -0110100 Bagley 24 -0110100 Awad 24 -0110100 Bluestine 24 -0110100 Eiszner 24 -0110100 Moreau 24 -0110100 Nishizawa 24 -0110100 Pocklington 24 -0110100 Senn 24 -0110100 Lubin 24 -0110100 Jarvik 24 -0110100 Glucksman 24 -0110100 Holzer 24 -0110100 Reitman 24 -0110100 Gharbonifar 24 -0110100 Robelo 24 -0110100 Marantette 24 -0110100 Linnas 24 -0110100 Goettel 24 -0110100 Lefton 24 -0110100 Sarkar 24 -0110100 Hackford 24 -0110100 Pampel 24 -0110100 Frates 24 -0110100 Brower 24 -0110100 Cordero 24 -0110100 Scannell 24 -0110100 Rudloff 24 -0110100 Stolz 24 -0110100 Doi 24 -0110100 Muskie 24 -0110100 McBirney 24 -0110100 Rukeyser 24 -0110100 McMillen 24 -0110100 Pearce-Batten 24 -0110100 Paque 24 -0110100 Korb 24 -0110100 Halloran 24 -0110100 Peskin 24 -0110100 Karr 24 -0110100 Minella 24 -0110100 Hiatt 24 -0110100 Fortier 24 -0110100 Woolard 24 -0110100 Walcott 24 -0110100 Stuka 24 -0110100 Dyke 24 -0110100 Koppel 24 -0110100 Matsunaga 24 -0110100 Kontras 24 -0110100 Sapiro 24 -0110100 Tramiel 25 -0110100 Safire 25 -0110100 Wick 25 -0110100 Oates 25 -0110100 Bethell 25 -0110100 Fussell 25 -0110100 Selby 25 -0110100 Warnock 25 -0110100 Geiger 25 -0110100 Mikva 25 -0110100 Kerschner 25 -0110100 Coughlin 25 -0110100 Vagelos 25 -0110100 Chiarella 25 -0110100 Huff 25 -0110100 Scharffenberger 25 -0110100 Moch 25 -0110100 Groves 25 -0110100 Ennis 25 -0110100 Rowen 25 -0110100 Noonan 25 -0110100 Eargle 25 -0110100 Applebaum 25 -0110100 Nesbit 25 -0110100 Finckle 25 -0110100 Bouchard 25 -0110100 Millstein 25 -0110100 Lichtenstein 25 -0110100 Tyger 25 -0110100 Bozian 25 -0110100 Zobel 25 -0110100 Winkler 25 -0110100 Bilotti 25 -0110100 Rutan 25 -0110100 Streisand 25 -0110100 Grayson 25 -0110100 Greenblatt 25 -0110100 Scullin 25 -0110100 Ros-Lehtinen 25 -0110100 Sarbanes 25 -0110100 Wapner 25 -0110100 Stallings 25 -0110100 Lungren 25 -0110100 Sussman 25 -0110100 Clegg 25 -0110100 Connery 25 -0110100 Stennis 25 -0110100 Teicher 25 -0110100 Granz 25 -0110100 Gumucio 25 -0110100 Mathes 25 -0110100 Noir 25 -0110100 Chatichai 25 -0110100 Ochsenschlager 25 -0110100 Channon 25 -0110100 Holloway 25 -0110100 Semel 25 -0110100 Hefter 25 -0110100 Grutman 25 -0110100 Claybrook 25 -0110100 Ostrow 25 -0110100 Suskind 25 -0110100 Lippman 25 -0110100 Whitwam 25 -0110100 Lini 25 -0110100 Tallent 25 -0110100 Lindemann 25 -0110100 Regalia 25 -0110100 Crooks 25 -0110100 Bermudez 25 -0110100 Portnoy 25 -0110100 Shepperd 25 -0110100 Gunkel 25 -0110100 Zeeman 25 -0110100 Fagoth 25 -0110100 Mello 25 -0110100 Dickie 25 -0110100 Finney 25 -0110100 Cohill 25 -0110100 Leal 25 -0110100 Digate 26 -0110100 Carbonell 26 -0110100 Toren 26 -0110100 Cappy 26 -0110100 Hobbs 26 -0110100 Herrmann 26 -0110100 Guimaraes 26 -0110100 Eisen 26 -0110100 Cockwell 26 -0110100 Kully 26 -0110100 Olayan 26 -0110100 Askoldov 26 -0110100 Wilander 26 -0110100 Dobrin 26 -0110100 Shaber 26 -0110100 Tonegawa 26 -0110100 Hartigan 26 -0110100 Goff 26 -0110100 Yurchenko 26 -0110100 Yassukovich 26 -0110100 Ervin 26 -0110100 Gilmour 26 -0110100 Tropp 26 -0110100 Bannister 26 -0110100 Garin 26 -0110100 Haagen 26 -0110100 Rodino 26 -0110100 Yazov 26 -0110100 Poppa 26 -0110100 Junkins 26 -0110100 Tsemel 26 -0110100 Paxson 26 -0110100 Hassenfeld 26 -0110100 Lennane 26 -0110100 Obrinsky 26 -0110100 Astaire 26 -0110100 McInerney 26 -0110100 Batra 26 -0110100 Deardourff 26 -0110100 Abram 26 -0110100 Reitzes 26 -0110100 Pipes 26 -0110100 Korn 26 -0110100 Hynes 26 -0110100 Sperling 26 -0110100 Rudnick 26 -0110100 Arnott 26 -0110100 Kalinske 26 -0110100 Parshley 26 -0110100 Shank 26 -0110100 Teasley 26 -0110100 Rakoff 26 -0110100 Segall 26 -0110100 Flanders 26 -0110100 Carli 26 -0110100 Idrocarburi 26 -0110100 Ivanov 26 -0110100 Isaly 26 -0110100 Gelli 26 -0110100 Yamazaki 26 -0110100 Geran 26 -0110100 Beresford 26 -0110100 Gioia 26 -0110100 Naftalis 26 -0110100 Appert 26 -0110100 Quandt 26 -0110100 Loeffler 26 -0110100 Lustgarten 26 -0110100 Gumbel 27 -0110100 Miyamori 27 -0110100 Manoogian 27 -0110100 Bromberg 27 -0110100 Schaeffer 27 -0110100 Karos 27 -0110100 Boardman 27 -0110100 Rahn 27 -0110100 Kozinski 27 -0110100 Teeley 27 -0110100 Messiaen 27 -0110100 Kraus 27 -0110100 Ito 27 -0110100 Lozano 27 -0110100 Kimmelman 27 -0110100 Melcher 27 -0110100 Akerson 27 -0110100 Steed 27 -0110100 Motley 27 -0110100 Silber 27 -0110100 Hindelong 27 -0110100 Boucher 27 -0110100 Leval 27 -0110100 Demisch 27 -0110100 DeVoe 27 -0110100 Petry 27 -0110100 Tavel 27 -0110100 Prentiss 27 -0110100 Turnbull 27 -0110100 Gromyko 27 -0110100 Koerner 27 -0110100 Strickland 27 -0110100 Poltrack 27 -0110100 Zschau 27 -0110100 Hackett 27 -0110100 Smilow 27 -0110100 Goldfarb 27 -0110100 Gerasimov 27 -0110100 Yagoda 27 -0110100 Soriano 27 -0110100 Eggum 27 -0110100 Ericson 27 -0110100 Lev 27 -0110100 Rosner 27 -0110100 Felder 27 -0110100 Fung 27 -0110100 Wussler 27 -0110100 Suard 27 -0110100 Nair 27 -0110100 Boorstin 27 -0110100 Galanter 27 -0110100 Heimann 27 -0110100 Gotlieb 27 -0110100 Healey 27 -0110100 Nordio 27 -0110100 Trucco 27 -0110100 Tambs 27 -0110100 Truell 27 -0110100 Vazquez 27 -0110100 Bellow 27 -0110100 Stoga 27 -0110100 Karnes 27 -0110100 Rupp 27 -0110100 Reardon 27 -0110100 Tauscher 27 -0110100 Leigh-Pemberton 27 -0110100 Masson 28 -0110100 Metcalfe 28 -0110100 Azoff 28 -0110100 Kohn 28 -0110100 Koslow 28 -0110100 Hanlon 28 -0110100 Pressler 28 -0110100 Boxer 28 -0110100 Stockdale 28 -0110100 Comeau 28 -0110100 Nureyev 28 -0110100 Kwitny 28 -0110100 Cavazos 28 -0110100 Dirks 28 -0110100 Goldmark 28 -0110100 Brimelow 28 -0110100 Cribb 28 -0110100 Calder 28 -0110100 Frenzel 28 -0110100 Pease 28 -0110100 Shrontz 28 -0110100 Joedicke 28 -0110100 Mandell 28 -0110100 Haddad 28 -0110100 Malloy 28 -0110100 Fabbri 28 -0110100 Marous 28 -0110100 Glick 28 -0110100 Plambeck 28 -0110100 Aguirre 28 -0110100 Felton 28 -0110100 Heinlein 28 -0110100 Yeager 28 -0110100 Floersheim 28 -0110100 Awan 28 -0110100 Silbert 28 -0110100 Braverman 28 -0110100 McHugh 28 -0110100 Kupor 28 -0110100 Perpich 28 -0110100 McNeill 28 -0110100 Karpov 28 -0110100 Kgori 28 -0110100 Kaske 28 -0110100 Vrdolyak 28 -0110100 Barthel 28 -0110100 Eyerman 28 -0110100 Zipper 28 -0110100 Ritterbusch 28 -0110100 Cao 28 -0110100 Morgenthau 28 -0110100 Logsdon 28 -0110100 McCord 28 -0110100 Tavoulareas 28 -0110100 Ruckelshaus 28 -0110100 Stepp 28 -0110100 Callen 28 -0110100 Scorsese 28 -0110100 Nir 28 -0110100 Khumalo 28 -0110100 Viguerie 28 -0110100 Neustadt 28 -0110100 Kopp 28 -0110100 Skibo 28 -0110100 Hurd 28 -0110100 Atorino 28 -0110100 Polce 28 -0110100 Carlsson 28 -0110100 Acuff 28 -0110100 Hoving 28 -0110100 Hineman 28 -0110100 Linh 28 -0110100 Schott 28 -0110100 Elkes 28 -0110100 Norwitz 28 -0110100 Katzenbach 29 -0110100 Gordy 29 -0110100 Whitmore 29 -0110100 Salerno 29 -0110100 Eagleton 29 -0110100 Steinbrenner 29 -0110100 Cernuda 29 -0110100 Pasztor 29 -0110100 Rosenblum 29 -0110100 Romm 29 -0110100 Rumsfeld 29 -0110100 Vanderslice 29 -0110100 Myhren 29 -0110100 Steiger 29 -0110100 Jacobsen 29 -0110100 Kuo 29 -0110100 Symms 29 -0110100 Schwarzenegger 29 -0110100 Bere 29 -0110100 Heckert 29 -0110100 Klamon 29 -0110100 Jaglom 29 -0110100 Furia 29 -0110100 Kilpatrick 29 -0110100 Needelman 29 -0110100 Burge 29 -0110100 Sporck 29 -0110100 Boisjoly 29 -0110100 Lowenthal 29 -0110100 Guinn 29 -0110100 Schmertz 29 -0110100 Sulzberger 29 -0110100 Abernathy 29 -0110100 Pearlstine 29 -0110100 Buzzetta 29 -0110100 Margoshes 29 -0110100 Hertzberg 29 -0110100 Winger 29 -0110100 Stangeland 29 -0110100 Garfinkel 29 -0110100 AuCoin 29 -0110100 Meister 29 -0110100 Crary 29 -0110100 McCullough 29 -0110100 Ankeny 29 -0110100 Carty 29 -0110100 Zurkuhlen 29 -0110100 Kuhlmann 29 -0110100 Hagerty 29 -0110100 Fiedler 29 -0110100 Culbertson 29 -0110100 Moffett 29 -0110100 Lusinchi 29 -0110100 Honig 29 -0110100 Furmark 29 -0110100 Ebright 29 -0110100 Parizeau 29 -0110100 Dehecq 29 -0110100 Sommer 29 -0110100 Cage 29 -0110100 Molinari 29 -0110100 Sasser 29 -0110100 DeScenza 29 -0110100 Corr 29 -0110100 Mineta 29 -0110100 Gillers 29 -0110100 Coolidge 29 -0110100 Coates 29 -0110100 Hamlin 29 -0110100 Briscoe 29 -0110100 Levenson 29 -0110100 Reiss 29 -0110100 Souris 29 -0110100 Maultasch 29 -0110100 Wakabayashi 29 -0110100 Besse 29 -0110100 Sporkin 30 -0110100 Kram 30 -0110100 Struve 30 -0110100 Neas 30 -0110100 Hanks 30 -0110100 Hearin 30 -0110100 Grunebaum 30 -0110100 Wattenberg 30 -0110100 Fellheimer 30 -0110100 Nuttle 30 -0110100 Welles 30 -0110100 Segalas 30 -0110100 Beazley 30 -0110100 Drabble 30 -0110100 Yocam 30 -0110100 Madigan 30 -0110100 Gleacher 30 -0110100 Bode 30 -0110100 Nobles 30 -0110100 Grasso 30 -0110100 Argyropoulos 30 -0110100 Sledz 30 -0110100 Schutz 30 -0110100 Mancuso 30 -0110100 Iglesias 30 -0110100 Palme 30 -0110100 Keswick 30 -0110100 Antonini 30 -0110100 Udvar-Hazy 30 -0110100 Wulff 30 -0110100 Luedtke 30 -0110100 Bluhdorn 30 -0110100 Tash 30 -0110100 McVeigh 30 -0110100 Luken 30 -0110100 Beyer 30 -0110100 Takahashi 30 -0110100 Hennessey 30 -0110100 Newkirk 30 -0110100 Hwang 30 -0110100 Lomax 31 -0110100 Singlaub 31 -0110100 Barnevik 31 -0110100 Tokunaga 31 -0110100 Questrom 31 -0110100 Heymann 31 -0110100 Bangerter 31 -0110100 Miara 31 -0110100 Griffiths 31 -0110100 Dove 31 -0110100 Lurie 31 -0110100 Steward 31 -0110100 Bialkin 31 -0110100 Stults 31 -0110100 Shipley 31 -0110100 Gottesman 31 -0110100 Allmon 31 -0110100 Glover 31 -0110100 Lwin 31 -0110100 Havens 31 -0110100 Lowry 31 -0110100 Longman 31 -0110100 Flaherty 31 -0110100 Breslin 31 -0110100 Al-Chalabi 31 -0110100 Atwell 31 -0110100 Vinton 31 -0110100 Ng 31 -0110100 Bryen 31 -0110100 Kullberg 31 -0110100 Kazan 31 -0110100 Salsbury 31 -0110100 Garvey 31 -0110100 Ramaphosa 31 -0110100 Buthelezi 31 -0110100 Khamenei 31 -0110100 McCleary 31 -0110100 Mugabe 31 -0110100 Farris 31 -0110100 Bookout 31 -0110100 Bevins 31 -0110100 Bogner 31 -0110100 Fontaine 31 -0110100 Kellenyi 31 -0110100 Lazar 31 -0110100 Bayless 31 -0110100 Scargill 31 -0110100 Tappan 31 -0110100 Whittlesey 31 -0110100 Hekmatyar 31 -0110100 Skousen 31 -0110100 Mullins 31 -0110100 Nicoski 31 -0110100 Falk 31 -0110100 Sobotka 31 -0110100 Goncharov 31 -0110100 Johnsen 32 -0110100 Takeuchi 32 -0110100 Grunwald 32 -0110100 Thurow 32 -0110100 Deuss 32 -0110100 Gault 32 -0110100 McCracken 32 -0110100 Flannery 32 -0110100 Rossetti 32 -0110100 Hickey 32 -0110100 Chanos 32 -0110100 Mattox 32 -0110100 Doerr 32 -0110100 Snell 32 -0110100 Rampell 32 -0110100 Kiam 32 -0110100 Weatherstone 32 -0110100 Heil 32 -0110100 Zia-ul-Haq 32 -0110100 Lafontaine 32 -0110100 Rona 32 -0110100 Ong 32 -0110100 Caine 32 -0110100 Weisbrod 32 -0110100 Luckey 32 -0110100 Jacobe 32 -0110100 Rosenshine 32 -0110100 Purves 32 -0110100 Coppola 32 -0110100 Zamarello 32 -0110100 Vidal 32 -0110100 Conlon 32 -0110100 McCurry 32 -0110100 DeLuca 32 -0110100 Cuny 32 -0110100 Baeza 32 -0110100 Angleton 32 -0110100 Horrigan 32 -0110100 Hauser 32 -0110100 Bossidy 32 -0110100 Korman 32 -0110100 Monk 32 -0110100 Skase 32 -0110100 Lescaze 32 -0110100 McLin 32 -0110100 Glasser 32 -0110100 Wanniski 32 -0110100 Axelrod 32 -0110100 Benoit 32 -0110100 Gerstner 32 -0110100 Cheek 32 -0110100 Nields 32 -0110100 Barbanel 32 -0110100 Brendsel 32 -0110100 Ratican 32 -0110100 Joh 32 -0110100 Applegate 32 -0110100 Seiders 32 -0110100 Hasenfus 33 -0110100 Rosenfield 33 -0110100 Gruenberg 33 -0110100 Brito 33 -0110100 Balog 33 -0110100 Schreyer 33 -0110100 Andriessen 33 -0110100 Shoemaker 33 -0110100 Bauman 33 -0110100 Robbie 33 -0110100 Libman 33 -0110100 Berle 33 -0110100 Conyers 33 -0110100 Adamson 33 -0110100 Breck 33 -0110100 David-Weill 33 -0110100 Bergsten 33 -0110100 Whitaker 33 -0110100 Enderlin 33 -0110100 Shorts 33 -0110100 Pendergrass 33 -0110100 Kapoor 33 -0110100 Shine 33 -0110100 Lehrer 33 -0110100 Lucente 33 -0110100 Marquez 33 -0110100 Kimche 33 -0110100 Rushdie 33 -0110100 Ovshinsky 33 -0110100 Traub 33 -0110100 Echeverria 33 -0110100 Niskanen 33 -0110100 Bluhm 33 -0110100 Leber 33 -0110100 Burgess 33 -0110100 Giamatti 33 -0110100 McNeal 33 -0110100 Londoner 33 -0110100 Chamorro 33 -0110100 Obey 33 -0110100 Poole 33 -0110100 Curley 33 -0110100 Hooks 33 -0110100 Lowenstein 33 -0110100 Holzman 33 -0110100 Morita 33 -0110100 Andrus 34 -0110100 Koether 34 -0110100 Chestman 34 -0110100 Ripley 34 -0110100 Monaghan 34 -0110100 Serra 34 -0110100 Lemasters 34 -0110100 Erdman 34 -0110100 Matsui 34 -0110100 Easterbrook 34 -0110100 Mandel 34 -0110100 Berson 34 -0110100 Brunner 34 -0110100 Yao 34 -0110100 Sayad 34 -0110100 Pebereau 34 -0110100 Abshire 34 -0110100 Wheelon 34 -0110100 Shlaes 34 -0110100 Ansin 34 -0110100 Pines 34 -0110100 Mobutu 34 -0110100 Schmied 34 -0110100 Mackay 34 -0110100 Moyers 34 -0110100 Karger 34 -0110100 Daniell 34 -0110100 Christy 34 -0110100 Steidtmann 34 -0110100 Hillas 34 -0110100 Hack 34 -0110100 Kurokawa 34 -0110100 Mondschein 34 -0110100 Whittington 34 -0110100 Fang 34 -0110100 Weinbach 34 -0110100 Obermaier 34 -0110100 Wuliger 34 -0110100 Blaikie 34 -0110100 Hersant 34 -0110100 Su 34 -0110100 Picchi 34 -0110100 Edley 34 -0110100 Flamson 34 -0110100 Daynard 34 -0110100 Rotondo 34 -0110100 Culvahouse 35 -0110100 Wohl 35 -0110100 Salvigsen 35 -0110100 Gregorian 35 -0110100 Rubel 35 -0110100 Edelstein 35 -0110100 Brinson 35 -0110100 Snead 35 -0110100 McCollum 35 -0110100 Asselstine 35 -0110100 Quinlan 35 -0110100 Genoese 35 -0110100 McClellan 35 -0110100 Faught 35 -0110100 Guba 35 -0110100 Bidwell 35 -0110100 Crosbie 35 -0110100 Crossen 35 -0110100 Hentoff 35 -0110100 Ride 35 -0110100 Chafee 35 -0110100 Brieant 35 -0110100 Hockney 35 -0110100 Plummer 35 -0110100 Tomlin 35 -0110100 Coccia 35 -0110100 Cline 35 -0110100 Navellier 35 -0110100 Corry 35 -0110100 Craven 35 -0110100 Wirth 35 -0110100 Barach 35 -0110100 Glauber 35 -0110100 Breitschwerdt 35 -0110100 Fthenakis 35 -0110100 Bowsher 35 -0110100 Federman 35 -0110100 Mandresh 35 -0110100 Petricioli 35 -0110100 Prestowitz 36 -0110100 Kaminsky 36 -0110100 Loury 36 -0110100 Lynam 36 -0110100 Raptopoulos 36 -0110100 Seitz 36 -0110100 Dickey 36 -0110100 Colodny 36 -0110100 Jankowski 36 -0110100 Yam 36 -0110100 Hagopian 36 -0110100 Ditlow 36 -0110100 Trible 36 -0110100 Abdnor 36 -0110100 Masse 36 -0110100 Gelb 36 -0110100 Peterpaul 36 -0110100 Spillman 36 -0110100 Bednorz 36 -0110100 Belous 36 -0110100 Stack 36 -0110100 Kume 36 -0110100 Spero 36 -0110100 Gradison 36 -0110100 Schapiro 36 -0110100 Feinstein 36 -0110100 Cali 36 -0110100 Hollingsworth 36 -0110100 Mizrahi 36 -0110100 Armitage 36 -0110100 Lasko 36 -0110100 Mamet 36 -0110100 Seagle 36 -0110100 Swindall 36 -0110100 Aldridge 36 -0110100 Hanemann 36 -0110100 Globus 36 -0110100 McCammon 36 -0110100 Coffey 37 -0110100 Ruxpin 37 -0110100 Musselman 37 -0110100 Barschel 37 -0110100 Brebach 37 -0110100 Kociemba 37 -0110100 Tirello 37 -0110100 Verges 37 -0110100 Upton 37 -0110100 LaFalce 37 -0110100 Clouthier 37 -0110100 Studer 37 -0110100 Butterworth 37 -0110100 Pezim 37 -0110100 Bellows 37 -0110100 Woodson 37 -0110100 Nagle 37 -0110100 Petri 37 -0110100 Swartz 37 -0110100 Lyubimov 37 -0110100 Bradbury 37 -0110100 Ryzhkov 37 -0110100 Solloway 37 -0110100 Thorp 37 -0110100 Stoller 37 -0110100 Groopman 37 -0110100 Ammeen 37 -0110100 Begel 37 -0110100 Beals 37 -0110100 Kenney 37 -0110100 Stepanian 37 -0110100 Moskowitz 38 -0110100 McBride 38 -0110100 Jagger 38 -0110100 Engle 38 -0110100 Baryshnikov 38 -0110100 Valladares 38 -0110100 Ling 38 -0110100 Bushnell 38 -0110100 Schulze 38 -0110100 Acampora 38 -0110100 Brinner 38 -0110100 Weyrich 38 -0110100 Brundtland 38 -0110100 Pritchard 38 -0110100 Broadhurst 38 -0110100 Soss 38 -0110100 Kruger 38 -0110100 Gerbrandt 38 -0110100 Sheen 38 -0110100 Strunk 38 -0110100 Sentelle 38 -0110100 Holgerson 38 -0110100 Chapoton 38 -0110100 Marchese 38 -0110100 Bajarin 38 -0110100 Oberman 38 -0110100 Barefoot 38 -0110100 Stover 38 -0110100 Conger 38 -0110100 Hance 38 -0110100 Pomerantz 38 -0110100 Harford 38 -0110100 Givens 38 -0110100 McGroarty 38 -0110100 Saligman 38 -0110100 Randol 38 -0110100 Flavin 38 -0110100 Rahman 39 -0110100 Klopfenstein 39 -0110100 Leibler 39 -0110100 Linton 39 -0110100 Engel 39 -0110100 Ovitz 39 -0110100 Sheelen 39 -0110100 Hashimoto 39 -0110100 Sellars 39 -0110100 Pittman 39 -0110100 Leuffer 39 -0110100 Landers 39 -0110100 Branson 39 -0110100 Stout 39 -0110100 Cristiani 39 -0110100 Gerstenhaber 39 -0110100 Koehler 39 -0110100 Racamier 39 -0110100 Jarvis 39 -0110100 Berge 39 -0110100 Aguilar 39 -0110100 Froehlich 39 -0110100 Caspersen 39 -0110100 Lawler 39 -0110100 Ahmad 39 -0110100 Ullman 39 -0110100 Bays 39 -0110100 Yamada 39 -0110100 Gurria 39 -0110100 Bakes 39 -0110100 Leaver 39 -0110100 Sigur 39 -0110100 Fiers 39 -0110100 Wills 39 -0110100 Durant 39 -0110100 Bartley 39 -0110100 Hightower 39 -0110100 Bencsik 39 -0110100 Pinto 39 -0110100 Schoenthal 39 -0110100 Abrahamson 39 -0110100 Hyland 39 -0110100 Pullin 39 -0110100 Holtzman 39 -0110100 Exon 39 -0110100 Mariotta 39 -0110100 Oreffice 40 -0110100 Waggoner 40 -0110100 Vick 40 -0110100 Morales 40 -0110100 Lautenbach 40 -0110100 Schnabel 40 -0110100 McNulty 40 -0110100 Bender 40 -0110100 Wan 40 -0110100 Popoff 40 -0110100 Bhirud 40 -0110100 Cahn 40 -0110100 Shanker 40 -0110100 Sampson 40 -0110100 Neely 40 -0110100 Frazee 40 -0110100 Casseb 40 -0110100 Vitale 40 -0110100 Gustafson 40 -0110100 Fosback 40 -0110100 Hite 40 -0110100 Krueger 40 -0110100 Millar 40 -0110100 Pugh 40 -0110100 Kantor 40 -0110100 Munk 40 -0110100 Fleischman 40 -0110100 Goria 40 -0110100 Heinemann 40 -0110100 Reiner 40 -0110100 Perlis 40 -0110100 McColl 40 -0110100 Poling 40 -0110100 Hollander 41 -0110100 Fazio 41 -0110100 Zagury 41 -0110100 Celeste 41 -0110100 Kobren 41 -0110100 Petit 41 -0110100 Sturm 41 -0110100 Weinroth 41 -0110100 Yamamoto 41 -0110100 Leiner 41 -0110100 Vanous 41 -0110100 Engen 41 -0110100 Goldin 41 -0110100 Aziz 41 -0110100 Bebear 41 -0110100 Canin 41 -0110100 Bruck 41 -0110100 Courter 41 -0110100 Haughey 41 -0110100 McGurn 41 -0110100 Mays 41 -0110100 Schatz 41 -0110100 Rosett 41 -0110100 Katzenberg 41 -0110100 McAlpine 41 -0110100 Pindling 41 -0110100 Updike 41 -0110100 Camacho 41 -0110100 Gaffney 41 -0110100 Garner 41 -0110100 Griscom 41 -0110100 Hiss 42 -0110100 Galloway 42 -0110100 Parsky 42 -0110100 Robinette 42 -0110100 Fortas 42 -0110100 Buckner 42 -0110100 Kato 42 -0110100 Cooney 42 -0110100 Strain 42 -0110100 Kapor 42 -0110100 Mlotok 42 -0110100 Puccio 42 -0110100 Empie 42 -0110100 Saito 42 -0110100 Cutrale 42 -0110100 Tartikoff 42 -0110100 Milunovich 42 -0110100 Maniatis 42 -0110100 Samuels 43 -0110100 Stringer 43 -0110100 Harbison 43 -0110100 Calvi 43 -0110100 Cafiero 43 -0110100 Broadbent 43 -0110100 Orloff 43 -0110100 Bacon 43 -0110100 Truly 43 -0110100 Gifford 43 -0110100 Whitten 43 -0110100 Pardee 43 -0110100 Lytle 43 -0110100 Ritter 43 -0110100 Velazquez 43 -0110100 Bricker 43 -0110100 Gurney 43 -0110100 Lonetree 43 -0110100 Sanborn 43 -0110100 Upshaw 43 -0110100 Diller 43 -0110100 Toussie 44 -0110100 Sowell 44 -0110100 Gosman 44 -0110100 Hersh 44 -0110100 Chavez 44 -0110100 Herscu 44 -0110100 Fauci 44 -0110100 Lo 44 -0110100 Kroc 44 -0110100 Furlaud 44 -0110100 Goodwin 44 -0110100 Novelly 44 -0110100 Mabey 44 -0110100 Stokes 44 -0110100 Vik 44 -0110100 Cathcart 44 -0110100 Wald 44 -0110100 Fitts 44 -0110100 Deo 44 -0110100 Gigot 44 -0110100 Lara 44 -0110100 Dorgan 44 -0110100 Alvord 44 -0110100 McKean 44 -0110100 McCloskey 44 -0110100 Nussbaum 44 -0110100 Rangel 44 -0110100 Pitts 44 -0110100 Weitzman 44 -0110100 Guzzetti 44 -0110100 Conte 44 -0110100 Minc 44 -0110100 Craxi 44 -0110100 Lamy 44 -0110100 Sandner 45 -0110100 Bader 45 -0110100 Beggs 45 -0110100 Gutierrez 45 -0110100 Palmieri 45 -0110100 Cronkite 45 -0110100 Soliman 45 -0110100 Pei 45 -0110100 Hugel 45 -0110100 Cicippio 45 -0110100 Rothmeier 45 -0110100 Yoder 45 -0110100 Romero 45 -0110100 Esrey 45 -0110100 Ketelsen 45 -0110100 Rau 45 -0110100 Bumpers 45 -0110100 Indosuez 45 -0110100 Lackner 45 -0110100 Estrich 45 -0110100 Merlis 45 -0110100 Pedler 45 -0110100 Sokolow 45 -0110100 Armey 45 -0110100 Ciresi 46 -0110100 Callender 46 -0110100 Wiles 46 -0110100 Keyes 46 -0110100 Fein 46 -0110100 Copland 46 -0110100 MacKinnon 46 -0110100 Gravitt 46 -0110100 Stinson 46 -0110100 Kasparov 46 -0110100 Dutton 46 -0110100 Greditor 46 -0110100 Gittis 46 -0110100 Sterba 46 -0110100 Worley 46 -0110100 Boksen 46 -0110100 Forsythe 46 -0110100 Roven 46 -0110100 Reisman 46 -0110100 Naylor 47 -0110100 McGlade 47 -0110100 Kerrey 47 -0110100 Canion 47 -0110100 Burdick 47 -0110100 Cooperman 47 -0110100 Unruh 47 -0110100 Harnisch 47 -0110100 Brenner 47 -0110100 Brill 47 -0110100 Beatty 47 -0110100 Mentz 47 -0110100 Watanabe 47 -0110100 Harkin 47 -0110100 Mathews 47 -0110100 Hoglund 47 -0110100 Pisello 47 -0110100 Treadway 47 -0110100 Bushkin 47 -0110100 Meltzer 47 -0110100 Klesch 47 -0110100 Milliet 47 -0110100 Bergman 47 -0110100 DeGroote 47 -0110100 Boitano 48 -0110100 Annunzio 48 -0110100 Wallop 48 -0110100 Hodges 48 -0110100 Lapin 48 -0110100 Behrens 48 -0110100 Wriston 48 -0110100 Perlman 48 -0110100 Barbera 48 -0110100 Mallick 48 -0110100 McFadden 48 -0110100 Falise 48 -0110100 Grimes 48 -0110100 Glickman 48 -0110100 Drexler 48 -0110100 Torrijos 48 -0110100 Yakovlev 48 -0110100 Curtin 48 -0110100 Hoey 48 -0110100 Cullinane 48 -0110100 Fitzpatrick 48 -0110100 Clarridge 48 -0110100 DiGennaro 49 -0110100 Solarz 49 -0110100 Hsiung 49 -0110100 Feltsman 49 -0110100 Sargen 49 -0110100 Revell 49 -0110100 Lillie 49 -0110100 Gorton 49 -0110100 Padgett 49 -0110100 Hook 49 -0110100 Parretti 49 -0110100 Powis 49 -0110100 Valenti 49 -0110100 Nasser 49 -0110100 Cronin 49 -0110100 McDonough 50 -0110100 Albright 50 -0110100 Herrhausen 50 -0110100 Carnes 50 -0110100 Exley 50 -0110100 LeMasters 50 -0110100 Hafif 50 -0110100 Cawthorn 50 -0110100 Rappaport 50 -0110100 Munson 50 -0110100 Gilder 50 -0110100 Frist 50 -0110100 Hauke 50 -0110100 Freedenberg 50 -0110100 Lubensky 50 -0110100 Kearns 50 -0110100 Drahuschak 50 -0110100 Wertheimer 50 -0110100 Davison 50 -0110100 Midler 50 -0110100 Kadar 50 -0110100 LeFrak 50 -0110100 Feiner 50 -0110100 Tambo 50 -0110100 McClure 50 -0110100 Kingsborough 51 -0110100 Fogelman 51 -0110100 Eller 51 -0110100 Meyerson 51 -0110100 Azhar 51 -0110100 Paquette 51 -0110100 Stegemeier 51 -0110100 Voss 51 -0110100 Mori 51 -0110100 Yokich 51 -0110100 Nowak 51 -0110100 Chavin 52 -0110100 Sourrouille 52 -0110100 Melloan 52 -0110100 Stephenson 52 -0110100 Zucker 52 -0110100 Coulson 52 -0110100 McGillicuddy 52 -0110100 Lewin 52 -0110100 Namphy 52 -0110100 Colino 52 -0110100 Kuroda 52 -0110100 Heady 52 -0110100 Albani 52 -0110100 Torres 52 -0110100 Orwell 52 -0110100 Reidy 52 -0110100 Steiner 53 -0110100 Pettee 53 -0110100 Smale 53 -0110100 Duberstein 53 -0110100 Coen 53 -0110100 Taplin 53 -0110100 Tuttle 53 -0110100 Orr 53 -0110100 Ganes 53 -0110100 Bourke 53 -0110100 Berkowitz 53 -0110100 Paley 53 -0110100 Enrico 53 -0110100 Bogle 53 -0110100 Mettler 53 -0110100 Cooley 54 -0110100 Amerman 54 -0110100 Readerman 54 -0110100 Burry 54 -0110100 Kassebaum 54 -0110100 Torell 54 -0110100 Seidenberg 54 -0110100 Nordmann 54 -0110100 Simons 54 -0110100 Wilder 54 -0110100 Thayer 54 -0110100 Aganbegyan 54 -0110100 Mullen 55 -0110100 Pennington 55 -0110100 Heebner 55 -0110100 Esber 55 -0110100 Bacot 55 -0110100 Rial 55 -0110100 Vander 55 -0110100 Trott 55 -0110100 Sasso 55 -0110100 Feith 55 -0110100 Panetta 55 -0110100 Letterman 55 -0110100 Yew 55 -0110100 Wohlstetter 55 -0110100 Madden 55 -0110100 Munro 55 -0110100 Hudak 55 -0110100 Pietruski 55 -0110100 Speer 56 -0110100 Mahlmann 56 -0110100 Ingram 56 -0110100 Wallich 56 -0110100 Pearlman 56 -0110100 Weeks 56 -0110100 Beebe 56 -0110100 DeAngelis 56 -0110100 Fromstein 56 -0110100 Kiley 56 -0110100 Ueberroth 56 -0110100 Borge 56 -0110100 Swearingen 56 -0110100 Florio 56 -0110100 Catacosinos 56 -0110100 Roffman 56 -0110100 Antoniu 56 -0110100 Brodersohn 56 -0110100 Enrile 57 -0110100 Grassley 57 -0110100 Trumka 57 -0110100 Brant 57 -0110100 Begin 57 -0110100 Junger 57 -0110100 Bovard 57 -0110100 Brandt 57 -0110100 Leibowitz 57 -0110100 Kassan 57 -0110100 Tobias 57 -0110100 Menem 57 -0110100 Raab 57 -0110100 Clancy 57 -0110100 McCain 58 -0110100 Fuchs 58 -0110100 Hormats 58 -0110100 Rosenbaum 58 -0110100 Finkelstein 58 -0110100 Drabkin 58 -0110100 Maher 58 -0110100 Silberman 58 -0110100 Hoskins 58 -0110100 Hoffenberg 58 -0110100 Maier 58 -0110100 Castillo 58 -0110100 Kovach 58 -0110100 Lennon 58 -0110100 Cecola 59 -0110100 Sandor 59 -0110100 Chimerine 59 -0110100 Huston 59 -0110100 Berlusconi 59 -0110100 Barth 59 -0110100 Oakes 59 -0110100 Salzman 59 -0110100 Ephlin 59 -0110100 Delors 60 -0110100 Buchi 60 -0110100 Biggs 60 -0110100 Blackburn 60 -0110100 Messner 60 -0110100 Siegan 60 -0110100 Domingo 60 -0110100 Wendt 60 -0110100 Mathis 60 -0110100 Bolton 60 -0110100 Baucus 60 -0110100 Wong 60 -0110100 Rohatyn 60 -0110100 Sherwin 60 -0110100 Gros 60 -0110100 Hofmann 61 -0110100 Cotter 61 -0110100 Lendl 61 -0110100 Brzezinski 61 -0110100 Menendez 61 -0110100 Gebauer 61 -0110100 Dion 61 -0110100 Locke 61 -0110100 Specter 61 -0110100 Leath 61 -0110100 Macklin 61 -0110100 Birinyi 61 -0110100 Fronterhouse 62 -0110100 Eder 62 -0110100 Shane 62 -0110100 Dawkins 62 -0110100 Novak 62 -0110100 Lott 62 -0110100 Boies 62 -0110100 Giacco 62 -0110100 Laffer 62 -0110100 McManus 62 -0110100 Ezell 62 -0110100 Fishman 62 -0110100 Burr 62 -0110100 Dworkin 63 -0110100 Waldron 63 -0110100 Dorfman 63 -0110100 Carberry 63 -0110100 Hamadi 63 -0110100 Murkowski 63 -0110100 Merkle 63 -0110100 Kasten 63 -0110100 Mengistu 63 -0110100 McNealy 63 -0110100 Brokaw 63 -0110100 Rawl 63 -0110100 Schmitz 63 -0110100 Gollust 63 -0110100 Fisk 63 -0110100 Devine 63 -0110100 Reuss 63 -0110100 Greenstein 64 -0110100 Graves 64 -0110100 Denlea 64 -0110100 McGee 64 -0110100 Sherlund 64 -0110100 Resler 64 -0110100 Tumazos 64 -0110100 Muldoon 64 -0110100 Buntrock 64 -0110100 Gunn 65 -0110100 Lugar 65 -0110100 Greve 65 -0110100 Paulus 65 -0110100 Ferraro 65 -0110100 Sheehan 65 -0110100 Brack 65 -0110100 Sheppard 65 -0110100 Strobel 65 -0110100 Beall 65 -0110100 Pfeiffer 65 -0110100 Chandross 65 -0110100 Fu 65 -0110100 Savage 65 -0110100 McKinney 65 -0110100 Sakharov 65 -0110100 Cave 66 -0110100 Patel 66 -0110100 Cuhney 66 -0110100 Crovitz 66 -0110100 Trudeau 66 -0110100 Lantos 66 -0110100 Bridges 66 -0110100 Wiggins 66 -0110100 Raiff 66 -0110100 Singh 66 -0110100 Fiske 67 -0110100 Eastwood 67 -0110100 Cisneros 67 -0110100 Mockler 67 -0110100 Alberthal 67 -0110100 Sato 67 -0110100 Yetnikoff 67 -0110100 Armacost 67 -0110100 Bourassa 67 -0110100 Shepard 67 -0110100 Segal 67 -0110100 Sinatra 67 -0110100 Fonda 67 -0110100 Sofaer 67 -0110100 Straszheim 67 -0110100 Goldfeder 67 -0110100 Dubinsky 67 -0110100 Robb 67 -0110100 Redford 67 -0110100 Rollwagen 67 -0110100 Chevalier 68 -0110100 Nisbet 68 -0110100 Priest 68 -0110100 Susman 68 -0110100 DeConcini 68 -0110100 Steele 68 -0110100 Kalikow 69 -0110100 Witten 69 -0110100 Fredericks 69 -0110100 Nicklaus 69 -0110100 Brountas 69 -0110100 Eckenfelder 69 -0110100 Bricklin 69 -0110100 Herrlinger 69 -0110100 DeCrane 69 -0110100 Godwin 69 -0110100 Martino 70 -0110100 McMillan 70 -0110100 Annenberg 70 -0110100 Keaton 71 -0110100 Giordano 71 -0110100 Daly 71 -0110100 Macke 71 -0110100 Valukas 71 -0110100 Emmons 71 -0110100 Richter 71 -0110100 Vaskevitch 72 -0110100 Epstein 72 -0110100 Zell 72 -0110100 Dinkins 72 -0110100 Bamberger 72 -0110100 Dolan 72 -0110100 Feinberg 72 -0110100 Shulman 73 -0110100 Lautenberg 73 -0110100 Yamani 73 -0110100 Levinson 73 -0110100 Dwyer 73 -0110100 Panic 73 -0110100 Grambling 73 -0110100 Capra 73 -0110100 Granville 73 -0110100 Grosz 73 -0110100 Cuellar 73 -0110100 Bangemann 74 -0110100 Theobald 74 -0110100 Wallenberg 74 -0110100 Boyle 74 -0110100 DaPuzzo 74 -0110100 Margolis 74 -0110100 Travers 74 -0110100 Schwarz 74 -0110100 Keenan 74 -0110100 Gesell 74 -0110100 Leavitt 74 -0110100 Newberg 74 -0110100 Hecht 74 -0110100 Adelson 74 -0110100 Lindsey 75 -0110100 Horner 75 -0110100 Dunlap 75 -0110100 Lifland 75 -0110100 Muller 75 -0110100 Jarrett 75 -0110100 Birnbaum 75 -0110100 Wexner 75 -0110100 Soni 75 -0110100 Pollard 75 -0110100 Darby 75 -0110100 Hefner 76 -0110100 Paulson 76 -0110100 Mazowiecki 76 -0110100 Pryor 76 -0110100 Vernes 76 -0110100 Weld 76 -0110100 Ailes 76 -0110100 Carney 76 -0110100 Savimbi 76 -0110100 Durenberger 77 -0110100 Parnes 77 -0110100 Frey 77 -0110100 Leach 77 -0110100 Kinsley 77 -0110100 Kobayashi 77 -0110100 Pinola 77 -0110100 MacKay 77 -0110100 Clements 77 -0110100 Seger 77 -0110100 Drabinsky 77 -0110100 Tamura 77 -0110100 Dyson 78 -0110100 Erhard 78 -0110100 Ligachev 78 -0110100 Glantz 78 -0110100 Mendelson 78 -0110100 LaRouche 78 -0110100 Mahoney 78 -0110100 Currey 78 -0110100 Rifkin 79 -0110100 Kahan 79 -0110100 Vargas 79 -0110100 Lipsky 79 -0110100 Agee 79 -0110100 Roux 80 -0110100 Bloomberg 80 -0110100 Ramos 80 -0110100 Eastland 80 -0110100 Rothman 80 -0110100 Rough 80 -0110100 Harmon 80 -0110100 Wyss 80 -0110100 Weller 80 -0110100 Gluck 81 -0110100 Meier 81 -0110100 Fell 81 -0110100 Goldwater 81 -0110100 Seelig 81 -0110100 Marron 82 -0110100 Parry 82 -0110100 Ballard 82 -0110100 Groveman 82 -0110100 Browning 82 -0110100 Shields 82 -0110100 McArtor 82 -0110100 Hendry 83 -0110100 Clines 83 -0110100 Mbeki 83 -0110100 Lehder 83 -0110100 Dahl 83 -0110100 Bretz 83 -0110100 Batchelder 83 -0110100 Canelo 83 -0110100 Rodgers 83 -0110100 Mehl 84 -0110100 Arroyo 84 -0110100 Agnew 84 -0110100 Broder 84 -0110100 Rizzo 84 -0110100 Jensen 84 -0110100 Peroni 85 -0110100 Teeter 85 -0110100 Royster 85 -0110100 Wyden 85 -0110100 Sheinberg 85 -0110100 Garzarelli 85 -0110100 Schwartzberg 85 -0110100 Boggs 86 -0110100 el-Sayed 86 -0110100 Delaney 86 -0110100 Bhutto 86 -0110100 Cipollone 86 -0110100 Shugrue 86 -0110100 Mosbacher 87 -0110100 Tierney 87 -0110100 Kaul 87 -0110100 Rocard 88 -0110100 Boskin 88 -0110100 Cahouet 88 -0110100 Ruiz 88 -0110100 Trupin 89 -0110100 Pell 89 -0110100 Daley 89 -0110100 Hawke 89 -0110100 Roemer 90 -0110100 Rattigan 90 -0110100 LaWare 90 -0110100 Kaifu 90 -0110100 Osborne 90 -0110100 Huber 90 -0110100 Lama 90 -0110100 Scotto 90 -0110100 Adelman 90 -0110100 Wilkis 91 -0110100 Chu 92 -0110100 Zweig 92 -0110100 Flynn 92 -0110100 Riegle 92 -0110100 Connally 92 -0110100 Kudlow 92 -0110100 Goode 92 -0110100 Genscher 92 -0110100 Mulford 92 -0110100 Eisner 92 -0110100 Grundfest 92 -0110100 Bloch 93 -0110100 Pohlad 93 -0110100 Pelton 93 -0110100 Tompkins 93 -0110100 Sawyer 94 -0110100 Runyon 94 -0110100 Schultz 94 -0110100 Eisenberg 94 -0110100 Ziegler 94 -0110100 Culverhouse 94 -0110100 Mehta 94 -0110100 Yates 94 -0110100 Hatfield 94 -0110100 Costello 94 -0110100 Neuharth 94 -0110100 Weiner 95 -0110100 Kean 95 -0110100 Shepherd 95 -0110100 Curran 95 -0110100 Ortner 95 -0110100 Biaggi 95 -0110100 Blackmun 96 -0110100 Brodsky 96 -0110100 Sanchez 96 -0110100 Davidoff 96 -0110100 Sheehy 96 -0110100 Teets 96 -0110100 Kristol 96 -0110100 Biondi 96 -0110100 Kluge 97 -0110100 Hardiman 97 -0110100 Rainwater 97 -0110100 Gomez 98 -0110100 Packer 98 -0110100 Duffy 98 -0110100 Callahan 98 -0110100 Macdonald 98 -0110100 Domenici 98 -0110100 Inman 98 -0110100 Perle 98 -0110100 Orben 98 -0110100 Buchsbaum 98 -0110100 Krebs 99 -0110100 Weissman 99 -0110100 Lanier 99 -0110100 Neff 99 -0110100 Rudman 99 -0110100 Breeden 99 -0110100 Alley 99 -0110100 Garn 100 -0110100 Rivera 100 -0110100 Jamail 100 -0110100 Seow 101 -0110100 Fleischer 101 -0110100 McPherson 101 -0110100 Lyng 101 -0110100 Manzi 101 -0110100 Ledeen 102 -0110100 Brusca 102 -0110100 Sofer 102 -0110100 Bakker 102 -0110100 Lasker 103 -0110100 Morosky 103 -0110100 Sheets 103 -0110100 Yardeni 104 -0110100 Scanlon 104 -0110100 Yeltsin 104 -0110100 Abramson 106 -0110100 Weinberg 106 -0110100 Weicker 106 -0110100 Rabin 106 -0110100 Sand 106 -0110100 Plaskett 107 -0110100 Bracher 108 -0110100 Parkin 108 -0110100 Griffith 109 -0110100 Melamed 110 -0110100 Kavner 110 -0110100 Crowe 110 -0110100 Barre 110 -0110100 Mahathir 111 -0110100 Chinn 111 -0110100 Clough 111 -0110100 Bieber 111 -0110100 Knapp 111 -0110100 Recarey 111 -0110100 Wilkinson 111 -0110100 Lopez 112 -0110100 Liman 112 -0110100 Checchi 112 -0110100 Wilkins 113 -0110100 Galanis 113 -0110100 Ratajczak 114 -0110100 Haley 114 -0110100 Barakat 114 -0110100 Reuter 115 -0110100 Riley 115 -0110100 DeNunzio 116 -0110100 Fomon 116 -0110100 Falwell 116 -0110100 Hurwitz 116 -0110100 Einhorn 117 -0110100 Arnault 117 -0110100 Deukmejian 117 -0110100 Greenwald 117 -0110100 McMillin 118 -0110100 Hatcher 119 -0110100 Erlanger 119 -0110100 Lukman 119 -0110100 Packwood 119 -0110100 Gaubert 120 -0110100 Weill 121 -0110100 Silva 121 -0110100 Glazer 122 -0110100 Larsen 122 -0110100 Wasserman 123 -0110100 Mecham 123 -0110100 Donnelly 123 -0110100 Watkins 123 -0110100 Cockburn 124 -0110100 Pitt 124 -0110100 Weber 125 -0110100 Atwater 125 -0110100 Gottlieb 125 -0110100 Conable 125 -0110100 Conway 125 -0110100 Fernandez 126 -0110100 Skinner 126 -0110100 Papandreou 126 -0110100 Araskog 126 -0110100 Stoddard 127 -0110100 Zimmerman 127 -0110100 Thurmond 127 -0110100 Kaskel 127 -0110100 Cheney 128 -0110100 McConnell 128 -0110100 Koop 129 -0110100 Stempel 129 -0110100 Barber 129 -0110100 Weaver 129 -0110100 Blanchard 130 -0110100 Bowman 130 -0110100 Tanaka 130 -0110100 Hernandez 130 -0110100 Guez 131 -0110100 Merhige 131 -0110100 Nevin 131 -0110100 Drucker 131 -0110100 Bradt 131 -0110100 Kinnock 131 -0110100 Horowitz 131 -0110100 Vogel 132 -0110100 Rittereiser 132 -0110100 Khan 133 -0110100 Inouye 133 -0110100 Krieger 133 -0110100 Tribe 134 -0110100 Warhol 134 -0110100 Hahn 134 -0110100 McMahon 134 -0110100 Olsen 134 -0110100 Laxalt 134 -0110100 Spielberg 135 -0110100 Ranieri 135 -0110100 Beregovoy 135 -0110100 Gillespie 135 -0110100 Calero 135 -0110100 Wu 136 -0110100 Camdessus 136 -0110100 Helmsley 136 -0110100 MacDonald 136 -0110100 Boren 136 -0110100 Luce 136 -0110100 Richman 137 -0110100 Honecker 138 -0110100 Cassoni 138 -0110100 Rodriguez 138 -0110100 Stockman 138 -0110100 Collier 138 -0110100 Hull 138 -0110100 Leysen 138 -0110100 Spoor 139 -0110100 Pearce 139 -0110100 Hartley 139 -0110100 Prechter 140 -0110100 Gingrich 140 -0110100 Whitehead 140 -0110100 Spence 140 -0110100 Bolger 141 -0110100 Freedman 142 -0110100 Herrington 142 -0110100 Ferguson 143 -0110100 Safra 143 -0110100 Hollings 144 -0110100 Wynn 144 -0110100 Chung 144 -0110100 Blumenthal 145 -0110100 Murdock 145 -0110100 Gonzalez 146 -0110100 Jaruzelski 146 -0110100 Hu 146 -0110100 Sumita 147 -0110100 McLaughlin 148 -0110100 Danforth 149 -0110100 Singleton 149 -0110100 Acker 150 -0110100 Walton 150 -0110100 Weisman 150 -0110100 Cranston 150 -0110100 Keller 152 -0110100 Brody 152 -0110100 Chang 152 -0110100 Tsai 153 -0110100 Leahy 153 -0110100 Seib 153 -0110100 Redstone 153 -0110100 Shah 154 -0110100 Demler 154 -0110100 Ackerman 154 -0110100 McGowan 155 -0110100 Moss 155 -0110100 Zinn 156 -0110100 Nazer 158 -0110100 Christensen 158 -0110100 Kahn 159 -0110100 Puttnam 160 -0110100 Akers 160 -0110100 Byrne 160 -0110100 Waters 160 -0110100 Ghorbanifar 161 -0110100 Sculley 163 -0110100 Coelho 164 -0110100 Crawford 165 -0110100 Metz 165 -0110100 Botha 166 -0110100 Angell 166 -0110100 Verity 166 -0110100 Sigoloff 167 -0110100 Cunningham 168 -0110100 Channell 169 -0110100 Walesa 171 -0110100 Corrigan 171 -0110100 Rubin 171 -0110100 Rafsanjani 172 -0110100 Schumer 172 -0110100 Fuller 174 -0110100 Sorrell 174 -0110100 Hennessy 174 -0110100 Arkin 175 -0110100 Clausen 175 -0110100 Moynihan 175 -0110100 Chiles 176 -0110100 Keating 176 -0110100 Reich 176 -0110100 Baldrige 176 -0110100 Schlesinger 178 -0110100 Kellner 178 -0110100 Weinstein 178 -0110100 Galvin 179 -0110100 Presser 179 -0110100 Feldstein 180 -0110100 Winans 180 -0110100 Gramm 180 -0110100 Nofziger 180 -0110100 Nobrega 182 -0110100 Berg 182 -0110100 Heyman 182 -0110100 Woo 183 -0110100 Minkow 183 -0110100 Atkins 184 -0110100 Lerner 185 -0110100 Arafat 186 -0110100 Speakes 186 -0110100 Gutfreund 186 -0110100 Hodel 188 -0110100 Haig 189 -0110100 Metzenbaum 190 -0110100 Waxman 194 -0110100 Dodd 194 -0110100 Petersen 197 -0110100 Shad 198 -0110100 Soros 199 -0110100 Balladur 200 -0110100 Walters 200 -0110100 Horton 201 -0110100 Markey 201 -0110100 Ginsburg 203 -0110100 Dingman 203 -0110100 Kelley 205 -0110100 Rehnquist 208 -0110100 Stafford 209 -0110100 LaRoche 210 -0110100 Darman 213 -0110100 Tabor 213 -0110100 Sununu 214 -0110100 Popejoy 214 -0110100 McGovern 216 -0110100 Crandall 217 -0110100 Cardenas 221 -0110100 Carr 222 -0110100 Miyazawa 222 -0110100 Zuckerman 223 -0110100 Lindner 224 -0110100 Chen 228 -0110100 Jobs 228 -0110100 Hatch 229 -0110100 Aspin 230 -0110100 Liedtke 231 -0110100 McKay 232 -0110100 Summers 232 -0110100 Phelan 233 -0110100 Thornburgh 233 -0110100 Zhao 235 -0110100 Silverman 236 -0110100 Martinez 236 -0110100 Truman 238 -0110100 Paisley 239 -0110100 Kane 239 -0110100 Henkel 239 -0110100 Ozal 242 -0110100 Rosenberg 246 -0110100 Gandhi 248 -0110100 Peres 249 -0110100 Germain 249 -0110100 Helms 250 -0110100 Burnley 251 -0110100 Ongpin 256 -0110100 Fowler 260 -0110100 Pinochet 260 -0110100 Buckley 261 -0110100 Mondale 261 -0110100 Grossman 262 -0110100 Bloom 267 -0110100 Kissinger 267 -0110100 Jung 268 -0110100 Shevardnadze 274 -0110100 Welch 274 -0110100 Sprinkel 275 -0110100 Buffett 276 -0110100 Hakim 278 -0110100 LeBow 279 -0110100 Poehl 281 -0110100 Wallach 283 -0110100 von 283 -0110100 Commerciale 284 -0110100 Motoren 285 -0110100 Khashoggi 285 -0110100 Levin 285 -0110100 Ferris 287 -0110100 Abboud 288 -0110100 Kerkorian 295 -0110100 Pollack 297 -0110100 Foley 298 -0110100 Stoltenberg 301 -0110100 Babbitt 301 -0110100 Fink 304 -0110100 Wigton 305 -0110100 Jenkins 305 -0110100 Stark 308 -0110100 Bowen 309 -0110100 Bresser 310 -0110100 Antar 315 -0110100 Sugarman 316 -0110100 Clore 320 -0110100 Mulheren 323 -0110100 Hoffman 327 -0110100 Saunders 332 -0110100 Lucas 336 -0110100 Deaver 346 -0110100 Funaro 347 -0110100 Ortega 348 -0110100 Koch 351 -0110100 Kinnear 354 -0110100 Castro 356 -0110100 Garcia 364 -0110100 Sosnoff 376 -0110100 Fitzwater 377 -0110100 Abrams 391 -0110100 Roosevelt 392 -0110100 Cuomo 392 -0110100 Shamir 395 -0110100 Buchanan 397 -0110100 Lorenzo 401 -0110100 Goldberg 416 -0110100 Bradley 420 -0110100 Hammer 421 -0110100 Owen 425 -0110100 Carlucci 434 -0110100 Takeshita 435 -0110100 Byrd 438 -0110100 Li 453 -0110100 Dingell 461 -0110100 Chirac 461 -0110100 Biden 461 -0110100 Geller 463 -0110100 Giuliani 463 -0110100 Schwartz 463 -0110100 Tisch 468 -0110100 Levy 472 -0110100 Yeutter 473 -0110100 Deng 474 -0110100 Nunn 475 -0110100 Johnston 481 -0110100 Salinas 485 -0110100 Iacocca 496 -0110100 Mitterrand 498 -0110100 McFarlane 506 -0110100 Perelman 510 -0110100 Olson 518 -0110100 Pierce 524 -0110100 Mulroney 527 -0110100 Kohl 534 -0110100 Greene 534 -0110100 Proxmire 537 -0110100 Ruder 538 -0110100 Weinberger 546 -0110100 Griffin 558 -0110100 Nakasone 570 -0110100 Posner 577 -0110100 Wolf 596 -0110100 Gore 612 -0110100 Lawson 657 -0110100 Roh 661 -0110100 Rostenkowski 667 -0110100 Secord 668 -0110100 Marcos 676 -0110100 Kemp 680 -0110100 Siegel 702 -0110100 Bilzerian 746 -0110100 Levine 790 -0110100 Brady 796 -0110100 Poindexter 815 -0110100 Freeman 818 -0110100 Regan 869 -0110100 Casey 896 -0110100 Milken 906 -0110100 Holmes 943 -0110100 Quayle 948 -0110100 Bentsen 975 -0110100 Noriega 984 -0110100 Jacobs 984 -0110100 Gephardt 986 -0110100 Thatcher 990 -0110100 Murdoch 1061 -0110100 Perot 1081 -0110100 Hart 1117 -0110100 Pickens 1169 -0110100 Walsh 1221 -0110100 Shultz 1303 -0110100 Edelman 1306 -0110100 Volcker 1381 -0110100 Dole 1625 -0110100 Trump 1725 -0110100 Bork 1743 -0110100 Icahn 1962 -0110100 Meese 1973 -0110100 Boesky 2500 -0110100 Jackson 2974 -0110100 Gorbachev 3341 -0110100 Bush 7784 -0110100 Dukakis 5186 -01101010 Possum 1 -01101010 Centrade 1 -01101010 EMOTION 1 -01101010 Illsley 1 -01101010 Papenfuss 1 -01101010 Yokley 1 -01101010 Smithgall 1 -01101010 Wiggelsworth 1 -01101010 Elvey 1 -01101010 TALLENT 1 -01101010 Behuniak 1 -01101010 Mabee 1 -01101010 Hennig 1 -01101010 Zinngrabe 1 -01101010 Hadsall 1 -01101010 Schoendorf 1 -01101010 Suchanek 1 -01101010 Yermash 1 -01101010 Liffers 1 -01101010 Wolitzer 1 -01101010 Poppinga 1 -01101010 Rossen 1 -01101010 Kildow 1 -01101010 Ponomarev 1 -01101010 Troncone 1 -01101010 Dwelley 1 -01101010 Hoerr 1 -01101010 Kostyra 1 -01101010 Heijmen 1 -01101010 Bodkin 1 -01101010 Rosholt 1 -01101010 Seebach 1 -01101010 Negeli 1 -01101010 Onek 1 -01101010 Semmel 1 -01101010 Loughhead 1 -01101010 Neuberg 1 -01101010 Exposito 1 -01101010 Churchman 1 -01101010 Herkes 1 -01101010 Beluga 1 -01101010 ALBEE 1 -01101010 Langfitt 1 -01101010 Donis 1 -01101010 Balardi 1 -01101010 Piderit 1 -01101010 Brambeer 1 -01101010 Brame 1 -01101010 Shalson 1 -01101010 Kellen 1 -01101010 Lubrand 1 -01101010 Haymaker 1 -01101010 Kezer 1 -01101010 Gier 1 -01101010 Arvizu 1 -01101010 Canella 1 -01101010 Srygley 1 -01101010 Lyonds 1 -01101010 Arcemont 1 -01101010 Dunsay 1 -01101010 Dean-style 1 -01101010 Pastusek 1 -01101010 Calahan 1 -01101010 Helfrecht 1 -01101010 Margerie 1 -01101010 Przybylowicz 1 -01101010 VanOosterhout 1 -01101010 Enouen 1 -01101010 Seeman 1 -01101010 Gullberg 1 -01101010 Stiefler 1 -01101010 Yockey 1 -01101010 Knatterud 1 -01101010 Malysiak 1 -01101010 Zakon 1 -01101010 Wolser 1 -01101010 Shaeffer 1 -01101010 Cheuvreux 1 -01101010 Coubert 1 -01101010 Jardins 1 -01101010 Lysaught 1 -01101010 Huttunen 1 -01101010 Goehringer 1 -01101010 Staniek 1 -01101010 Calgaard 1 -01101010 Longan 1 -01101010 Stenzel 1 -01101010 Pisarev 1 -01101010 Cele 1 -01101010 Nemirow 1 -01101010 Boileau 1 -01101010 Hansbrough 1 -01101010 Lavezzoli 1 -01101010 Deemer 1 -01101010 Vitantonio 1 -01101010 Stutts 1 -01101010 Holtey 1 -01101010 Rottblatt 1 -01101010 Romoser 1 -01101010 Vranes 1 -01101010 3R 1 -01101010 Haversat 1 -01101010 Zafirovski 1 -01101010 Collectives 1 -01101010 Schmeelk 1 -01101010 Moscu 1 -01101010 Rochlin 1 -01101010 Ghorab 1 -01101010 Schlenzig 1 -01101010 Gordon-Sinclair 1 -01101010 Snowberger 1 -01101010 Lauzen 1 -01101010 Fossella 1 -01101010 Castaing 1 -01101010 Poehner 1 -01101010 Krakoff 1 -01101010 Reice 1 -01101010 Schueppert 1 -01101010 Bousa 1 -01101010 Sellami 1 -01101010 Bloostein 1 -01101010 Rochlis 1 -01101010 Bouchaud 1 -01101010 Messerli 1 -01101010 Leier 1 -01101010 Sevilla 1 -01101010 Zarrella 1 -01101010 Stucker 1 -01101010 Edgette 1 -01101010 Ernane 1 -01101010 LeMelle 1 -01101010 Velghe 1 -01101010 Repos 1 -01101010 Huesner 1 -01101010 Bieck 1 -01101010 Laffler 1 -01101010 Dyckman 1 -01101010 Vence 1 -01101010 Karman 1 -01101010 McElreath 1 -01101010 Dimino 1 -01101010 Comunale 1 -01101010 McDuffee 1 -01101010 Rusnack 1 -01101010 FitzSimon 1 -01101010 Altamonti 1 -01101010 Fordes 1 -01101010 Tabac 1 -01101010 Thomashower 1 -01101010 Heimbach 1 -01101010 Cavitt 1 -01101010 Diepenbrock 1 -01101010 Donches 1 -01101010 Boisset 1 -01101010 Tauer 1 -01101010 Karolas 1 -01101010 Nemerson 1 -01101010 Jelin 1 -01101010 Kuester 1 -01101010 Salaberry 1 -01101010 Durco 1 -01101010 Hornung 1 -01101010 Trueschler 1 -01101010 Buquoi 1 -01101010 Aubuchon 1 -01101010 Brough 1 -01101010 Neslin 1 -01101010 Augus 1 -01101010 Carsten 1 -01101010 Machlica 1 -01101010 McVie 1 -01101010 Kenen 1 -01101010 Turkaly 1 -01101010 Holodnak 1 -01101010 Hegenbart 1 -01101010 Agricultura 1 -01101010 Midwood 1 -01101010 DORETTI 1 -01101010 Sortino 1 -01101010 Kanzaki 1 -01101010 toros 1 -01101010 Dominowski 1 -01101010 Melchner 1 -01101010 Resjetnikov 1 -01101010 Korpusov 1 -01101010 Algers 1 -01101010 Riediger 1 -01101010 Camilli 1 -01101010 Yasmin 1 -01101010 Oddo 1 -01101010 Lauder-owned 1 -01101010 origine 1 -01101010 Pruyn 1 -01101010 Elliman-Pickering 1 -01101010 Revak 1 -01101010 Pyzdrowski 1 -01101010 Slivon 1 -01101010 DiBartola 1 -01101010 Zavagli 1 -01101010 Hirschson 1 -01101010 Foyo 1 -01101010 Puricelli 1 -01101010 Ireys 1 -01101010 Hartong 1 -01101010 Friedlaender 1 -01101010 Buncher 1 -01101010 Haaland 1 -01101010 Hueppi 1 -01101010 Selonick 1 -01101010 Brocksen 1 -01101010 Niebling 1 -01101010 Trester 1 -01101010 Agosti 1 -01101010 DiDonato 1 -01101010 Pruch 1 -01101010 Andronici 1 -01101010 Ayscue 1 -01101010 Levicki 1 -01101010 Holdt 1 -01101010 Thirolf 1 -01101010 Malherbe 1 -01101010 Shiflet 1 -01101010 Collins-type 1 -01101010 Langston-Unkefer 1 -01101010 Letaw 1 -01101010 Ancell 1 -01101010 Farooq 1 -01101010 Poissant 1 -01101010 Denoon 1 -01101010 Kinnu 1 -01101010 SCOOPS 1 -01101010 Sadofski 1 -01101010 DiClerico 1 -01101010 Saidman 1 -01101010 Trela 1 -01101010 Heimbuch 1 -01101010 Naccarato 1 -01101010 Juraifani 1 -01101010 Largent 1 -01101010 Sandmeyer 1 -01101010 Bonsack 1 -01101010 Swano 1 -01101010 Ducar 1 -01101010 Rassnick 1 -01101010 Leefe 1 -01101010 Kfoury 1 -01101010 Blackmur 1 -01101010 Edwardson 1 -01101010 Vesce 1 -01101010 Sengupta 1 -01101010 Slaymaker 1 -01101010 Cosmas 1 -01101010 Wollenberg 1 -01101010 Kominsky 1 -01101010 Cerulli 1 -01101010 Koeneman 1 -01101010 Kraber 1 -01101010 Fetherston 1 -01101010 Carvin 1 -01101010 Grunder 1 -01101010 Lhamon 1 -01101010 Nigolian 1 -01101010 Dimenna 1 -01101010 Elion 1 -01101010 Liquori 1 -01101010 Charlaix 1 -01101010 DeKoven 1 -01101010 Hagerman 1 -01101010 Fealy 1 -01101010 Faulders 1 -01101010 Frisching 1 -01101010 Petrovskaya 1 -01101010 Schuenke 1 -01101010 Kopf 1 -01101010 Dou 1 -01101010 Rabbie 1 -01101010 Brammer 1 -01101010 Santore 1 -01101010 Steffensen 1 -01101010 Asturias 1 -01101010 Stinocher 1 -01101010 Pangione 1 -01101010 Dondiego 1 -01101010 Webber/Young 1 -01101010 Jodsaas 1 -01101010 Meotti 1 -01101010 Fund/Johns 1 -01101010 Teutch 1 -01101010 Fallaw 1 -01101010 Mohler 1 -01101010 Kutno 1 -01101010 McCollough 1 -01101010 Rygh 1 -01101010 Krzesinski 1 -01101010 Blankers 1 -01101010 McWethy 1 -01101010 Gwon 1 -01101010 Oermann 1 -01101010 Pagones 1 -01101010 McConomy 1 -01101010 Futh 1 -01101010 Pingatore 1 -01101010 Koob 1 -01101010 Haddy 1 -01101010 Sheley 1 -01101010 Torsney 1 -01101010 Talmon 1 -01101010 Hoz 1 -01101010 DeDiminicantanio 1 -01101010 Solnit 1 -01101010 Cesario 1 -01101010 Bardwell 1 -01101010 Birchfield 1 -01101010 Baciocco 1 -01101010 Abasje 1 -01101010 Gahin 1 -01101010 Datim 1 -01101010 Deomidov 1 -01101010 Geracioti 1 -01101010 Rochas 1 -01101010 Al-Ola 1 -01101010 Blumner 1 -01101010 Ewert 1 -01101010 Zinko 1 -01101010 Bolender 1 -01101010 Butterman 1 -01101010 Kaylin 1 -01101010 Biazon 1 -01101010 Hasloecher 1 -01101010 Iguazu 1 -01101010 Argense 1 -01101010 Oeste 1 -01101010 Chenok 1 -01101010 Bamber 1 -01101010 al-Khaleej 1 -01101010 Slotterback 1 -01101010 Suede 1 -01101010 Smeloff 1 -01101010 Grieux-elegant 1 -01101010 Kichline 1 -01101010 Kalkstein 1 -01101010 Rehling 1 -01101010 Litterski 1 -01101010 Deakin 1 -01101010 Topfer 1 -01101010 Maghreb 1 -01101010 Zborowski 1 -01101010 Cattani 1 -01101010 Peterson-like 1 -01101010 Costle 1 -01101010 Socha 1 -01101010 Allston 1 -01101010 Poussaint 1 -01101010 Rogers-style 1 -01101010 Willemssen 1 -01101010 Godshalk 1 -01101010 Samadiono 1 -01101010 Eisenecher 1 -01101010 Yinchang 1 -01101010 Kreyling 1 -01101010 Votz 1 -01101010 Sheller 1 -01101010 Knebel 1 -01101010 Tasher 1 -01101010 DUNHAM 1 -01101010 Gutting 1 -01101010 Dittman 1 -01101010 Osma 1 -01101010 Galatas 1 -01101010 Scitivaux 1 -01101010 Bodeen 1 -01101010 Latno 1 -01101010 Shreyer 1 -01101010 Sternik 1 -01101010 Beaux-Arts 1 -01101010 Pigou 1 -01101010 Fridrich 1 -01101010 Pietrini 1 -01101010 Cansler 1 -01101010 Twamley 1 -01101010 Pistilli 1 -01101010 Kaitz 1 -01101010 Pertti 1 -01101010 Zweng 1 -01101010 BREGUET 1 -01101010 Huibregtse 1 -01101010 Geragos 1 -01101010 Samy 1 -01101010 Shaefer 1 -01101010 Barten 1 -01101010 DeLaney 1 -01101010 Firmenich 1 -01101010 Krauskopf 1 -01101010 Konings 1 -01101010 Shainwald 1 -01101010 Nomicos 1 -01101010 Edgehill 1 -01101010 Farnan 1 -01101010 Medvin 1 -01101010 Graaff 1 -01101010 Berges 1 -01101010 Baska 1 -01101010 Minezes 1 -01101010 DeScherer 1 -01101010 Moet-Hennessy-Louis 1 -01101010 Kinchen 1 -01101010 Kadin 1 -01101010 Shreiner 1 -01101010 Giering 1 -01101010 Raives 1 -01101010 Iandolo 1 -01101010 Newi 1 -01101010 Bontin 1 -01101010 Dupasquier 1 -01101010 Lattin 1 -01101010 Veraldi 1 -01101010 Rindlaub 1 -01101010 Bozzone 1 -01101010 Viletto 1 -01101010 Sitt 1 -01101010 Wheathearts 1 -01101010 Grigley 1 -01101010 Palijo 1 -01101010 Wengler 1 -01101010 Rhame 1 -01101010 Pursch 1 -01101010 Rohal 1 -01101010 Heyworth 1 -01101010 Knodell 1 -01101010 Larsen. 1 -01101010 Farquhar 1 -01101010 Fashioned 1 -01101010 Busching 1 -01101010 Picini 1 -01101010 Snide. 1 -01101010 Blondeau 1 -01101010 Brumder 1 -01101010 Steiker 1 -01101010 Tracy-type 1 -01101010 Deverin 1 -01101010 Honorof 1 -01101010 LeSieur 1 -01101010 Dottai 1 -01101010 Bousquette 1 -01101010 Kole 1 -01101010 Viemeister 1 -01101010 Freixas 1 -01101010 Zandlo 1 -01101010 Pehrson 1 -01101010 Frazzini 1 -01101010 Willes 1 -01101010 Dietzel 1 -01101010 Isserstedt 1 -01101010 Bodenhamer 1 -01101010 Rag 1 -01101010 Deramus 1 -01101010 Gunnst 1 -01101010 Briner 1 -01101010 Kirsis 1 -01101010 Samford 1 -01101010 money-gobblers 1 -01101010 Larrazolo 1 -01101010 Feldmann 1 -01101010 Hayo 1 -01101010 Underwriterovich 1 -01101010 Inderbitzin 1 -01101010 Costa-Greenspon 1 -01101010 Chauffage 1 -01101010 Isbister 1 -01101010 Juchatz 1 -01101010 Schlotterbeck 1 -01101010 Shiplet 1 -01101010 Lampros 1 -01101010 Hetzler 1 -01101010 Rammrath 1 -01101010 Gahm 1 -01101010 Sisti 1 -01101010 DiCarolis 1 -01101010 Magrini 1 -01101010 Masselli 1 -01101010 Vizcaino 1 -01101010 Zampino 1 -01101010 Heule 1 -01101010 Suvero 1 -01101010 Goforth 1 -01101010 Castilia 1 -01101010 Garday 1 -01101010 Hiegel 1 -01101010 Etling 1 -01101010 Excursion 1 -01101010 Calvano 1 -01101010 Podsen 1 -01101010 Poitiers 1 -01101010 Castray 1 -01101010 Lobenfeld 1 -01101010 Barlett 1 -01101010 Yatsko 1 -01101010 Chessy 1 -01101010 Piepmeier 1 -01101010 Chairsell 1 -01101010 Orban 1 -01101010 Hsin-I 1 -01101010 Gemunder 1 -01101010 Menninger 1 -01101010 Ferrel 1 -01101010 Balich 1 -01101010 Coltello 1 -01101010 Nasgovitz 1 -01101010 Volding 1 -01101010 Woolhandler 1 -01101010 Cerand 1 -01101010 Zamorski 1 -01101010 Nethercott 1 -01101010 Pearrow 1 -01101010 Handal 1 -01101010 Howick 1 -01101010 Bunke 1 -01101010 MacConnell 1 -01101010 Holdraker 1 -01101010 Foster-led 1 -01101010 Paioni 1 -01101010 Zimyanin 1 -01101010 Duck-type 1 -01101010 Hoenes 1 -01101010 Venskus 1 -01101010 McLondon 1 -01101010 Horsager 1 -01101010 Loynes 1 -01101010 Kerwitz 1 -01101010 Mirhossein 1 -01101010 Erensil 1 -01101010 Sautbine 1 -01101010 al-Shorooki 1 -01101010 McNichols 1 -01101010 Hostover 1 -01101010 HOOVER 1 -01101010 Godchaux 1 -01101010 Bleus 1 -01101010 Sergovic 1 -01101010 Sabatacakis 1 -01101010 McConnaughy 1 -01101010 FitzGibbon 1 -01101010 Menchel 1 -01101010 Echezeaux 1 -01101010 Bouiadjra 1 -01101010 Trubeck 1 -01101010 Froehlke 1 -01101010 Mercil 1 -01101010 Hiestand 1 -01101010 Hidayatallah 1 -01101010 Mellem 1 -01101010 Studner 1 -01101010 Labant 1 -01101010 Zinberg 1 -01101010 Batter 1 -01101010 Hart-type 1 -01101010 Dryburgh 1 -01101010 Piecuch 1 -01101010 Dobbelmann 1 -01101010 Spadaro 1 -01101010 Carlough 1 -01101010 Boesky-like 1 -01101010 Stuecker 1 -01101010 Semans 1 -01101010 Askren 1 -01101010 McKerracher 1 -01101010 Etat 1 -01101010 Buzby 1 -01101010 Brightbill 1 -01101010 Vinovskis 1 -01101010 Abely 1 -01101010 Killebrew 1 -01101010 Bushee 1 -01101010 Jesco 1 -01101010 Redig 1 -01101010 Berneman 1 -01101010 Spechko 1 -01101010 Brookshire 1 -01101010 Ottensmeyer 1 -01101010 Artus 1 -01101010 Beasman 1 -01101010 Novikoff 1 -01101010 Twogood 1 -01101010 Chrust 1 -01101010 Freimark 1 -01101010 Desenberg 1 -01101010 Carzoli 1 -01101010 Vitiello 1 -01101010 Hughson 1 -01101010 Gattegno 1 -01101010 Harapan 1 -01101010 Lloyd-Butler 1 -01101010 Bakos 1 -01101010 Jamart 1 -01101010 Trippeer 1 -01101010 Zaenglein 1 -01101010 Zorek 1 -01101010 Meux 1 -01101010 Sesser 1 -01101010 Rehabilitacion 1 -01101010 Mirabelli 1 -01101010 Pylitt 1 -01101010 el-Zayyat 1 -01101010 Yambert 1 -01101010 Rowton 1 -01101010 Brescoll 1 -01101010 Guerster 1 -01101010 Ockrim 1 -01101010 Notter 1 -01101010 McCarrick 1 -01101010 Gubert 1 -01101010 Ament 1 -01101010 Strudler 1 -01101010 Bessey 1 -01101010 Kearn 1 -01101010 Menchaca 1 -01101010 Matalene 1 -01101010 Concklin 1 -01101010 Berzon 1 -01101010 Times-Leader 1 -01101010 MEARS 1 -01101010 Loverd 1 -01101010 Eboli 1 -01101010 Hogen 1 -01101010 Gresens 1 -01101010 Shimbun-Nippon 1 -01101010 Drascher 1 -01101010 Felago 1 -01101010 Bruegge 1 -01101010 Geogerian 1 -01101010 Schiavo 1 -01101010 Goeddel 1 -01101010 Aniskovich 1 -01101010 Aquili 1 -01101010 Zellweger 1 -01101010 Sabins 1 -01101010 Sosland 1 -01101010 Taus 1 -01101010 MacCarn 1 -01101010 Zalaznick 1 -01101010 Stoll 1 -01101010 Ruths 1 -01101010 Saint-Satur 1 -01101010 Ragains 1 -01101010 Achuff 1 -01101010 Teeple 1 -01101010 Nastro 1 -01101010 Schiffer 1 -01101010 Wooddell 1 -01101010 Solari 1 -01101010 hambre 1 -01101010 Oelsner 1 -01101010 Leuschen 1 -01101010 Bashara 1 -01101010 Stauffacher 1 -01101010 Vistan 1 -01101010 Plosila 1 -01101010 Massenburg 1 -01101010 Koepfgen 1 -01101010 DuBrock 1 -01101010 Cerullo 1 -01101010 Strackbein 1 -01101010 Macur 1 -01101010 Journal-Capital 1 -01101010 Shakarain 1 -01101010 Brookwell 1 -01101010 Saatkamp 1 -01101010 Strechay 1 -01101010 Zamboni 1 -01101010 Marano 1 -01101010 Breathitt 1 -01101010 Zissis 1 -01101010 Meder 1 -01101010 Rossuck 1 -01101010 Trado 1 -01101010 Rettig 1 -01101010 Attardo 1 -01101010 Belloso 1 -01101010 Novara 1 -01101010 enemigo 1 -01101010 Hulot 1 -01101010 Mossman 1 -01101010 Zalecki 1 -01101010 Keaveney 1 -01101010 Frontiero 1 -01101010 Cheroske 1 -01101010 Chin-Lor 1 -01101010 Netherton 1 -01101010 Krogh 1 -01101010 LaMontia 1 -01101010 Ebben 1 -01101010 Natoli 1 -01101010 Mileusnic 1 -01101010 Castallani 1 -01101010 Razar 1 -01101010 Hiles 1 -01101010 Troetti 1 -01101010 Dulka 1 -01101010 Mancheski 1 -01101010 Pettinga 1 -01101010 Galm 1 -01101010 Iapalucci 1 -01101010 Dinkle 1 -01101010 Milroy 1 -01101010 Hedeen 1 -01101010 Struble 1 -01101010 Craigie 1 -01101010 Hitsman 1 -01101010 Kynes 1 -01101010 Hiemstra 1 -01101010 Flett 1 -01101010 Pogrebin 1 -01101010 Skupsky 1 -01101010 Laeri 1 -01101010 Wilcock 1 -01101010 Maack 1 -01101010 Fowble 1 -01101010 Badgerfoot 1 -01101010 Solerno 1 -01101010 Westhoff 1 -01101010 Otey 1 -01101010 Meduses 1 -01101010 Powars 1 -01101010 Brzenk 1 -01101010 Remeliik 1 -01101010 Peightal 1 -01101010 Caldon 1 -01101010 1201 1 -01101010 Leftwich 1 -01101010 Gehlert 1 -01101010 Morbay 1 -01101010 Soloway 1 -01101010 Zapetis 1 -01101010 Orvis 1 -01101010 Tablas 1 -01101010 Nanberg 1 -01101010 HUGH 1 -01101010 Karat 1 -01101010 Unzicker 1 -01101010 Rozychi 1 -01101010 Randalls 1 -01101010 Kilts 1 -01101010 Oxendine 1 -01101010 Ammons 1 -01101010 Giuffra 1 -01101010 Annington 1 -01101010 Egert 1 -01101010 Rothbaum 1 -01101010 Oricoli 1 -01101010 Klatzkin 1 -01101010 al-Eryani 1 -01101010 Wonsever 1 -01101010 Luthringhausen 1 -01101010 Paschel 1 -01101010 Grand-Dad 1 -01101010 Eigsti 1 -01101010 Ledogar 1 -01101010 Abu-Zayyad 1 -01101010 Racster 1 -01101010 Martinsen 1 -01101010 Ronchetti 1 -01101010 Jatras 1 -01101010 Baastad 1 -01101010 Belkin 1 -01101010 Ream 1 -01101010 Pracomtal 1 -01101010 Louisiane 1 -01101010 Waart-Adams 1 -01101010 Hinrichs 1 -01101010 Sonosky 1 -01101010 Higbys 1 -01101010 Dimling 1 -01101010 Hommen 1 -01101010 Palitz 1 -01101010 BOROIAN 1 -01101010 VanVoorhis 1 -01101010 Hersee 1 -01101010 Mussberger 1 -01101010 Kerber 1 -01101010 Silbaugh 1 -01101010 Gellen 1 -01101010 Melberg 1 -01101010 Marsters 1 -01101010 Gowens 1 -01101010 Trzcinski 1 -01101010 Electricia 1 -01101010 Puppet 1 -01101010 Stalla 1 -01101010 GREGOR 1 -01101010 Bartel 1 -01101010 Kanas 1 -01101010 Craib 1 -01101010 Poats 1 -01101010 Bundles 1 -01101010 Dutchik 1 -01101010 Graden 1 -01101010 Confalone 1 -01101010 Kight 1 -01101010 Byways 1 -01101010 Lucens 1 -01101010 Chintallauha 1 -01101010 Merolla 1 -01101010 Defieux 1 -01101010 Haddick 1 -01101010 Frederiksen 1 -01101010 Bartine 1 -01101010 Puhr 1 -01101010 Buono 1 -01101010 Schildboeck 1 -01101010 Larmon 1 -01101010 Niddrie 1 -01101010 Glassburn 1 -01101010 Tedeschi 1 -01101010 Arrendamento 1 -01101010 Emett 1 -01101010 Guptill 1 -01101010 FLOURISHING 1 -01101010 Karlos 1 -01101010 Buol 1 -01101010 Mckown 1 -01101010 Prehn 1 -01101010 Rachesky 1 -01101010 Pelerinage 1 -01101010 Saussure 1 -01101010 al-Khasib 1 -01101010 Balaban 1 -01101010 Burcham 1 -01101010 Motoren-&-Turbinen-Union 1 -01101010 Norrelli 1 -01101010 DeRoche 1 -01101010 Robiou 1 -01101010 Ittihad 1 -01101010 Haeussler 1 -01101010 Zilvitis 1 -01101010 Alldredge 1 -01101010 McCombie 1 -01101010 Townson 1 -01101010 Clayburn 1 -01101010 Nalen 1 -01101010 Tirages 1 -01101010 Synnestvedt 1 -01101010 Pontillas 1 -01101010 Fae 1 -01101010 Robedaux 1 -01101010 Paume 1 -01101010 Tisdale 1 -01101010 Houdek 1 -01101010 Grosvald 1 -01101010 Schwalbach 1 -01101010 Peppard 1 -01101010 Pencer 1 -01101010 Emersen 1 -01101010 Rodenstock 1 -01101010 Gelch 1 -01101010 Minchin 1 -01101010 Treehouses 1 -01101010 Creasy 1 -01101010 Faillace 1 -01101010 Andreoli 1 -01101010 Kleskin 1 -01101010 Capezzana 1 -01101010 Rampolla 1 -01101010 Fontodi 1 -01101010 2668 1 -01101010 Matejka 1 -01101010 Kuypers 1 -01101010 Christell 1 -01101010 Villines 1 -01101010 Warfel 1 -01101010 Foltz 1 -01101010 Altieri 1 -01101010 Wienges 1 -01101010 Mancel 1 -01101010 HEILEMAN 1 -01101010 Kamberis 1 -01101010 Lombards 1 -01101010 Lopez-Romo 1 -01101010 Yuna 1 -01101010 Cockrell 1 -01101010 Hemby 1 -01101010 Laffin 1 -01101010 McGratty 1 -01101010 Brachman 1 -01101010 Savidge 1 -01101010 Felsinger 1 -01101010 Hier 1 -01101010 Reusing 1 -01101010 Pitler 1 -01101010 Tannenberg 1 -01101010 Bumsted 1 -01101010 Ulich 1 -01101010 Welliver 1 -01101010 Arsem 1 -01101010 Sarkesian 1 -01101010 Wendeln 1 -01101010 Neatherlin 1 -01101010 Ostrofsky 1 -01101010 Murn 1 -01101010 Reininger 1 -01101010 Maginn 1 -01101010 Strickler 1 -01101010 Probasco 1 -01101010 Ollon 1 -01101010 Degenhart 1 -01101010 Sassano 1 -01101010 Greenawalt 1 -01101010 Danielsen 1 -01101010 Lavering 1 -01101010 Stoutamore 1 -01101010 Papanek 1 -01101010 Acevedo 1 -01101010 Zipser 1 -01101010 Zerrenner 1 -01101010 Rickershauser 1 -01101010 Pottle 1 -01101010 Scallen 1 -01101010 muerte 1 -01101010 Houton 1 -01101010 Originals 1 -01101010 fantaisie 1 -01101010 Schoenbach 1 -01101010 Schwenk 1 -01101010 Hoverter 1 -01101010 Northway 1 -01101010 Debartolo 1 -01101010 Villalpando 1 -01101010 Papademetriou 1 -01101010 Sutphin 1 -01101010 Jarvie 1 -01101010 Winnitzki 1 -01101010 Colabuono 1 -01101010 Budnik 1 -01101010 Gerloff 1 -01101010 Cognets 1 -01101010 Teti 1 -01101010 Saronno 1 -01101010 Schnable 1 -01101010 Tierny 1 -01101010 Caffry 1 -01101010 Numann 1 -01101010 Mulreany 1 -01101010 Partee 1 -01101010 Jayad 1 -01101010 Oqllo 1 -01101010 Movilidades 1 -01101010 Witkay 1 -01101010 Lansaw 1 -01101010 Comerciale 1 -01101010 Bromery 1 -01101010 Zak 1 -01101010 Sebire 1 -01101010 Gaboriault 1 -01101010 Fangari 1 -01101010 Alperin 1 -01101010 Noddle 1 -01101010 Wegmiller 1 -01101010 Hagedon 1 -01101010 Cousino 1 -01101010 Yerks 1 -01101010 McNagny 1 -01101010 Pattisson 1 -01101010 Deney 1 -01101010 Pilara 1 -01101010 Unkefer 1 -01101010 George-Creque 1 -01101010 Lavity 1 -01101010 Berol 1 -01101010 Pagel 1 -01101010 Kintigh 1 -01101010 Veteri 1 -01101010 Knup 1 -01101010 Duwaine 1 -01101010 Peloubet 1 -01101010 Jayakumar 1 -01101010 Faubion 1 -01101010 Vivant 1 -01101010 Hauberg 1 -01101010 Vitanza 1 -01101010 Keay 1 -01101010 C13532 1 -01101010 Clercamp 1 -01101010 VIVIANO 1 -01101010 Folkerts 1 -01101010 Wehe 1 -01101010 Pickrell 1 -01101010 Rushlaw 1 -01101010 Mirel 1 -01101010 Jackstadt 1 -01101010 Tondowksi 1 -01101010 Olbrych 1 -01101010 McConner 1 -01101010 Vanderheyden 1 -01101010 Verville 1 -01101010 Piot 1 -01101010 Lauterstein 1 -01101010 Assise 1 -01101010 Satz 1 -01101010 Stotesbery 1 -01101010 HASSLED 1 -01101010 McVearry 1 -01101010 Gemmill 1 -01101010 Dueweke 1 -01101010 Rebner 1 -01101010 Codgers 1 -01101010 Beshara 1 -01101010 Crane. 1 -01101010 Ali-Akbar 1 -01101010 Hammink 1 -01101010 Norworthy 1 -01101010 Perrotta 1 -01101010 Langsam 1 -01101010 Verderber 1 -01101010 Chucas 1 -01101010 Tegnestam 1 -01101010 Scowby 1 -01101010 Voet 1 -01101010 Klipstein 1 -01101010 Huntz 1 -01101010 Runge 1 -01101010 Rosenkrans 1 -01101010 Lemle 1 -01101010 Mackowski 1 -01101010 Maisano 1 -01101010 Blaschke 1 -01101010 Oddis 1 -01101010 Vaissaux 1 -01101010 Mohtashami-Pur 1 -01101010 Weihenmayer 1 -01101010 Stavropoulous 1 -01101010 Koertner 1 -01101010 Benak 1 -01101010 Wattley 1 -01101010 Sheffert 1 -01101010 Lieser 1 -01101010 Morbratten 1 -01101010 Parrack 1 -01101010 Fagerstone 1 -01101010 McClung 1 -01101010 Brown-Olmstead 1 -01101010 Semi-Remorques 1 -01101010 Porcaro 1 -01101010 Parkhurst 1 -01101010 Tofel 1 -01101010 Christopoulos 1 -01101010 Quasha 1 -01101010 Famularo 1 -01101010 Milho 1 -01101010 Rodburg 1 -01101010 Buddenhagen 1 -01101010 Brinzo 1 -01101010 Guscott 1 -01101010 Dierker 1 -01101010 Bororian 1 -01101010 Hardenbrook 1 -01101010 Atzez 1 -01101010 No-Mash 1 -01101010 duMoulin 1 -01101010 Mousseux 1 -01101010 Billups 1 -01101010 Bergdoll 1 -01101010 Hemmer 1 -01101010 Guarnaccio 1 -01101010 veau 1 -01101010 Oberreit 1 -01101010 Glorioso 1 -01101010 Boudris 1 -01101010 Fatt 1 -01101010 Wible 1 -01101010 Lisco 1 -01101010 Diadamo 1 -01101010 Coultas 1 -01101010 Scutt 1 -01101010 Guckien 1 -01101010 Rebello 1 -01101010 Weispfenning 1 -01101010 Yedwab 1 -01101010 Berninghaus 1 -01101010 Branigan 1 -01101010 Englehart 1 -01101010 Ostern 1 -01101010 Feazell 1 -01101010 Seminoff 1 -01101010 Tykeson 1 -01101010 Gulotta 1 -01101010 Tettleton 1 -01101010 Apollon 1 -01101010 Herst 1 -01101010 Theodorou 1 -01101010 McIlveene 1 -01101010 Guzzardi 1 -01101010 Boullioun 1 -01101010 Borelli 1 -01101010 Wroughton 1 -01101010 Peavy 1 -01101010 Lippe 1 -01101010 Lehmkuhl 1 -01101010 Salquist 1 -01101010 Vanchieri 1 -01101010 Amboise 1 -01101010 Barcal 1 -01101010 Fetchenhier 1 -01101010 Colglazier 1 -01101010 Brande 1 -01101010 Hittinger 1 -01101010 Laportaliere 1 -01101010 Zehndor 1 -01101010 Zorster 1 -01101010 Corrie 1 -01101010 Wulwick 1 -01101010 Rappolt 1 -01101010 Linderman 1 -01101010 Frankovsky 1 -01101010 Roob 1 -01101010 Brengle 1 -01101010 Ramser 1 -01101010 Cuozzo 1 -01101010 Transue 1 -01101010 Hanc 1 -01101010 Shapira 1 -01101010 Bacarella 1 -01101010 Comerford 1 -01101010 Musham 1 -01101010 Broatch 1 -01101010 Rollo 1 -01101010 Polanek 1 -01101010 Lozada 1 -01101010 Maljers 1 -01101010 Chakas 1 -01101010 Babikian 1 -01101010 Golby 1 -01101010 Chernikoff 1 -01101010 Hildner 1 -01101010 Exportaciones 1 -01101010 Umsted 1 -01101010 Lebed 1 -01101010 Merian 1 -01101010 Eidell 1 -01101010 Makowski 1 -01101010 Delp 1 -01101010 Daleiden 1 -01101010 Yulo 1 -01101010 Kerouaille 1 -01101010 Romanow 1 -01101010 Frothingham 1 -01101010 Diccianni 1 -01101010 Mac-Reynolds 1 -01101010 Danca 1 -01101010 Rahe 1 -01101010 Amenagement 1 -01101010 Lyrio 1 -01101010 Ryker 1 -01101010 Cynar 1 -01101010 Alcox 1 -01101010 KANTZ 1 -01101010 Finci 1 -01101010 Borini 1 -01101010 Lilore 1 -01101010 Libutti 1 -01101010 Kyriakou 1 -01101010 Lidbetter 1 -01101010 Berez 1 -01101010 Reichelt 1 -01101010 Colquitt 1 -01101010 Swieg 1 -01101010 Moscou 1 -01101010 Tuuk 1 -01101010 Newhouses 1 -01101010 Popovitch 1 -01101010 Viarengo 1 -01101010 Legatti 1 -01101010 Zeitler. 1 -01101010 Pascale 1 -01101010 Aubrecht 1 -01101010 Shultis 1 -01101010 Mefford 1 -01101010 Kusumi 1 -01101010 Grashaw 1 -01101010 Campobasso 1 -01101010 Werf 1 -01101010 Bowl-Disneyland-style 1 -01101010 Cruze 1 -01101010 Doudiet 1 -01101010 Zurawski 1 -01101010 Donnan 1 -01101010 Shallcross 1 -01101010 Staffin 1 -01101010 larmes 1 -01101010 Henault 1 -01101010 Gowey 1 -01101010 Kemmerer 1 -01101010 Dandalides 1 -01101010 Lengwin 1 -01101010 Heckinger 1 -01101010 Jeub 1 -01101010 Resinger 1 -01101010 Gausman 1 -01101010 Munisteri 1 -01101010 Tigar 1 -01101010 Overcash 1 -01101010 Piccione 1 -01101010 Hoffmann-inspired 1 -01101010 Morts 1 -01101010 Sundstrom 1 -01101010 Fetes 1 -01101010 Wesbecker 1 -01101010 Tarcher 1 -01101010 Junkans 1 -01101010 Meiselman 1 -01101010 Kofmehl 1 -01101010 DiLibero 1 -01101010 Lazin 1 -01101010 Prezio 1 -01101010 Roering 1 -01101010 Cassese 1 -01101010 Munafo 1 -01101010 Laseau 1 -01101010 News-Sun 1 -01101010 Drack 1 -01101010 Curtner 1 -01101010 Rossi-Guerrero 1 -01101010 Belhumeur 1 -01101010 Fording 1 -01101010 Apgar 1 -01101010 Henrichsen 1 -01101010 Wied 1 -01101010 Eichert 1 -01101010 Tondowski 1 -01101010 Amodio 1 -01101010 mer 1 -01101010 Kupel 1 -01101010 Pouzilhac 1 -01101010 Ratigan 1 -01101010 Bergues 1 -01101010 Docter 1 -01101010 Meshmany 1 -01101010 Labbe 1 -01101010 Dauwe 1 -01101010 Planizter 1 -01101010 Yanny 1 -01101010 Polito 1 -01101010 Prebensen 1 -01101010 Reding 1 -01101010 Hallenbeck 1 -01101010 Fibiger 1 -01101010 Riunte 1 -01101010 Bachtel 1 -01101010 Rast 1 -01101010 Gregorich 1 -01101010 Lappetito 1 -01101010 Walkup 1 -01101010 Zehndo 1 -01101010 Saldi 1 -01101010 Handrinos 1 -01101010 Sonderegger 1 -01101010 Manfield 1 -01101010 Gignilliat 1 -01101010 McKibbin 1 -01101010 Egner 1 -01101010 Heider 1 -01101010 BISHOP 1 -01101010 Koehn 1 -01101010 King. 1 -01101010 Hatchett 1 -01101010 Barmore 1 -01101010 Sternenberg 1 -01101010 Hewell 1 -01101010 Gulau 1 -01101010 Azlant 1 -01101010 Wiechern 1 -01101010 Suitt 1 -01101010 Feiertag 1 -01101010 Botstein 1 -01101010 Vlaskamp 1 -01101010 Shalala 1 -01101010 Bruccoleri 1 -01101010 Halbrecht 1 -01101010 Bareuther 1 -01101010 Langbo 1 -01101010 Martinucci 1 -01101010 Rohan 1 -01101010 Miltenberger 1 -01101010 Anhaiser 1 -01101010 Sarno 1 -01101010 Wiwi 1 -01101010 Sharwell 1 -01101010 Capehart 1 -01101010 Castells 1 -01101010 Zhender 1 -01101010 DeLapp 1 -01101010 Wombwell 1 -01101010 Danilow 1 -01101010 Olisa 1 -01101010 Ocepek 1 -01101010 Ourlicht 1 -01101010 Allwin 1 -01101010 Trubey 1 -01101010 Louttit 1 -01101010 McCaig 1 -01101010 Bilsing 1 -01101010 Bleiberg 1 -01101010 Truzinski 1 -01101010 Lanners 1 -01101010 Rzepinski 1 -01101010 Tatom 1 -01101010 Shanor 1 -01101010 Pfiffnor 1 -01101010 Monnich 1 -01101010 Schaubert 1 -01101010 Satterwhite 1 -01101010 Bancos 1 -01101010 Altfest 1 -01101010 Hivert 1 -01101010 Milham 1 -01101010 Peiker 1 -01101010 Isaccson 1 -01101010 Pendelton 1 -01101010 Tuyaux 1 -01101010 Giardello 1 -01101010 Bunte 1 -01101010 Pherson 1 -01101010 Coln 1 -01101010 Jean-Pascal 1 -01101010 Stabley 1 -01101010 Fattedad 1 -01101010 Stoneman 1 -01101010 Sackner 1 -01101010 Kirchberg 1 -01101010 Shattan 1 -01101010 Clopton 1 -01101010 Jolosky 1 -01101010 chrysanthus 1 -01101010 Blasser 1 -01101010 Sall 1 -01101010 Hopton 1 -01101010 Shimbum 1 -01101010 Lammot 1 -01101010 Goenka 1 -01101010 Goryachev 1 -01101010 Hybl 1 -01101010 Burkholder 1 -01101010 Creigh 1 -01101010 Gallotta 1 -01101010 Bohack 1 -01101010 Podell 1 -01101010 Gongas 1 -01101010 Rabinovici 1 -01101010 Fawlty-type 1 -01101010 Pardo-style 1 -01101010 Ogburn 1 -01101010 Menge 1 -01101010 Edgreen 1 -01101010 Schimpf 1 -01101010 McCollester 1 -01101010 DePrince 1 -01101010 Lowman 1 -01101010 Virzi 1 -01101010 Terkel-style 1 -01101010 Zabriskie 1 -01101010 MacAlonan 1 -01101010 GrandDad 1 -01101010 Stampf 1 -01101010 Tseklenis 1 -01101010 Wst 1 -01101010 Mayolo 1 -01101010 Stiber 1 -01101010 Terraccianio 1 -01101010 Bueno 1 -01101010 Koutsos 1 -01101010 DiGiovanni 1 -01101010 Cruser 1 -01101010 Gonda 1 -01101010 Buddies 1 -01101010 Coombe 1 -01101010 Brassfield 1 -01101010 Kamman 1 -01101010 Quitslund 1 -01101010 Cafferarelli 1 -01101010 Hirschman 1 -01101010 Fischette 1 -01101010 Haack 1 -01101010 Mihelick 1 -01101010 Grandcolas 1 -01101010 Trani 1 -01101010 Hennelly 1 -01101010 Lekganyane 1 -01101010 Woithe 1 -01101010 Peterman 1 -01101010 Schlanger 1 -01101010 Skvarla 1 -01101010 Selhorst 1 -01101010 Mork 1 -01101010 Livney 1 -01101010 Mundy 1 -01101010 Funkhouser 1 -01101010 Roozen 1 -01101010 Weikel 1 -01101010 Canorios 1 -01101010 MAGURNO 1 -01101010 Biorck 1 -01101010 Inglima 1 -01101010 Giggey 1 -01101010 Mebane 1 -01101010 Schantz 1 -01101010 Schink 1 -01101010 VAIRO 1 -01101010 Freiermuth 1 -01101010 Malanaphy 1 -01101010 Damell 1 -01101010 Mollica 1 -01101010 Bond-cocaine 1 -01101010 Lentini 1 -01101010 Olloqui 1 -01101010 Leatherby 1 -01101010 Frankenbach 1 -01101010 Galub 1 -01101010 FitzPatrick 1 -01101010 Micciche 1 -01101010 Fetters 1 -01101010 Lunger 1 -01101010 Hankins 1 -01101010 Qais 1 -01101010 Haar 1 -01101010 Dueker 1 -01101010 Ligouri 1 -01101010 Ruffle 1 -01101010 Viermetz 1 -01101010 Traflet 1 -01101010 Sucrerie 1 -01101010 DeVine 1 -01101010 Garthwaite 1 -01101010 Warhover 1 -01101010 Devins 1 -01101010 Ripp 1 -01101010 Covey 1 -01101010 Swiggett 1 -01101010 Matieres 1 -01101010 Duggins 1 -01101010 Vohs 1 -01101010 Berzin 1 -01101010 Caiborne 1 -01101010 Flesher 1 -01101010 Haeg 1 -01101010 Gumpel 1 -01101010 Lottmann 1 -01101010 KEARNEY 1 -01101010 Skocher 1 -01101010 Lemanowicz 1 -01101010 Rundlett 1 -01101010 Manko 1 -01101010 Grien 1 -01101010 DuPuis 1 -01101010 DeVillez 1 -01101010 Salagaj 1 -01101010 Gherlein 1 -01101010 Mignott 1 -01101010 Veit 1 -01101010 Tovar 1 -01101010 Pittluck 1 -01101010 Congel 1 -01101010 Tavlin 1 -01101010 Adamian 1 -01101010 Scheeler 1 -01101010 Welnhofer 1 -01101010 Hecktman 1 -01101010 Waltermire 1 -01101010 Drymalski 1 -01101010 Schwindewolf 1 -01101010 Firfer 1 -01101010 Mayesh 1 -01101010 Flavell 1 -01101010 Yousuf 1 -01101010 Al-Ghazali 1 -01101010 Wizer 1 -01101010 Polokoff 1 -01101010 Downham 1 -01101010 Yahr 1 -01101010 Mangold 1 -01101010 Retter 1 -01101010 Zipes 1 -01101010 LaBerge 1 -01101010 Bedts 1 -01101010 El-Dayem 1 -01101010 Chorney 1 -01101010 Tamaki 1 -01101010 Straka 1 -01101010 Liberato 1 -01101010 Stanis 1 -01101010 Raia 1 -01101010 Telfair 1 -01101010 Wiltshire 1 -01101010 Druin 1 -01101010 Devyatisilny 1 -01101010 Dirvin 1 -01101010 Oberndorf 1 -01101010 Hallowell 1 -01101010 Megdal 1 -01101010 Hehir 1 -01101010 Dudas 1 -01101010 Incaudo 1 -01101010 Shipston 1 -01101010 Passman 1 -01101010 Weymann 1 -01101010 Zan 1 -01101010 Laskawy 1 -01101010 Roubos 1 -01101010 CUNNINGHAM 1 -01101010 Barrouk 1 -01101010 Wittmeyer 1 -01101010 Martella 1 -01101010 Erlenborn 1 -01101010 Danoff 1 -01101010 Spalthoff 1 -01101010 Dellefave 1 -01101010 Helseth 1 -01101010 Garrison-Leo 1 -01101010 Gilkeson 1 -01101010 Solecki 1 -01101010 Aue 1 -01101010 Duerinck 1 -01101010 Traw 1 -01101010 Sissum 1 -01101010 Gostomski 1 -01101010 Stiner 1 -01101010 Kanzelberger 1 -01101010 Mennis 1 -01101010 Carolus 1 -01101010 Druitt 1 -01101010 Torcasio 1 -01101010 Herrman 1 -01101010 Meyung 1 -01101010 Hettich 1 -01101010 Teison 1 -01101010 Churma 1 -01101010 Tucillo 1 -01101010 Villane 1 -01101010 Graubart 1 -01101010 Pulsipher 1 -01101010 Pflug 1 -01101010 Vranka 1 -01101010 Agress 1 -01101010 Gerraughty 1 -01101010 Roginski 1 -01101010 Marcks 1 -01101010 Liebson 1 -01101010 Chelberg 1 -01101010 Dumit 1 -01101010 Vigliotti 1 -01101010 Berin 1 -01101010 Chancey 1 -01101010 Pohs 1 -01101010 Raney 1 -01101010 Rotstan 1 -01101010 Bavaji 1 -01101010 Vilinder 1 -01101010 Curti 1 -01101010 Sternfield 1 -01101010 Mazino 1 -01101010 Guisto 1 -01101010 Baumgarder 1 -01101010 Hoedeman 1 -01101010 Yontz 1 -01101010 Poletti 1 -01101010 Brazell 1 -01101010 Sprenkle 1 -01101010 Holter 1 -01101010 Luerrsen 1 -01101010 Dhormann 1 -01101010 Uberla 1 -01101010 Evangelos 1 -01101010 Woik 1 -01101010 Guenche 1 -01101010 Cardace 1 -01101010 Snook 1 -01101010 McCrystal 1 -01101010 Weix 1 -01101010 Proefrock 1 -01101010 Coggiano 1 -01101010 Foell 1 -01101010 Valeurs 1 -01101010 Rolley 1 -01101010 Boondael 1 -01101010 Dunckel 1 -01101010 Garbrick 1 -01101010 Al-Ghuhair 1 -01101010 Fabrri 1 -01101010 Fleenor 1 -01101010 Truesdall 1 -01101010 Kreek 1 -01101010 ROONEY 1 -01101010 Madia 1 -01101010 Yauger 1 -01101010 Schnall 1 -01101010 Leighfield 1 -01101010 Wehrle 1 -01101010 Primas 1 -01101010 Haughie 1 -01101010 Cherney 1 -01101010 Vititoe 1 -01101010 Brons 1 -01101010 Arons 1 -01101010 Neugold 1 -01101010 Suojunen 1 -01101010 Kawalsky 1 -01101010 Pasciuto 1 -01101010 Zapffe 1 -01101010 Sundman 1 -01101010 DiMatteo 1 -01101010 Weizmann 1 -01101010 Khadra 1 -01101010 Jenness 1 -01101010 Cutbush 1 -01101010 Maysonave 1 -01101010 Tamaru 1 -01101010 Jahnsen 1 -01101010 Woliver 1 -01101010 Fraker 1 -01101010 Rupley 1 -01101010 Beace 1 -01101010 Zakarian 1 -01101010 Haycox 1 -01101010 Dunkelberger 1 -01101010 Plevy 1 -01101010 Eglinton 1 -01101010 Thomazin 1 -01101010 Mohrmann 1 -01101010 Paracka 1 -01101010 Boehlke 1 -01101010 Felderstein 1 -01101010 Gecker 1 -01101010 Ganoe 1 -01101010 Dotzler 1 -01101010 Cashion 1 -01101010 Schletty 1 -01101010 Laggett 1 -01101010 Cerutti 1 -01101010 Noffsinger 1 -01101010 Brummer 1 -01101010 Bramhall 1 -01101010 DeBartelo 1 -01101010 Cavalieri 1 -01101010 TUMBLE 1 -01101010 Folston 1 -01101010 Bucci 1 -01101010 Kartcher 1 -01101010 Zelikow 1 -01101010 Clauss 1 -01101010 Terantino 1 -01101010 Nunvar 1 -01101010 Harmas 1 -01101010 Annino 1 -01101010 Seri 1 -01101010 Philo 1 -01101010 Zaske 1 -01101010 Hosage 1 -01101010 Revistas 1 -01101010 Chormann 1 -01101010 Cutro 1 -01101010 Branstrom 1 -01101010 Brownhill 1 -01101010 Corp./ 1 -01101010 Stroup 1 -01101010 McNear 2 -01101010 Canker 2 -01101010 Koe 2 -01101010 Wallfesh 2 -01101010 Fayram 2 -01101010 Guyford 2 -01101010 Guyer 2 -01101010 Headley 2 -01101010 Endries 2 -01101010 Pollon 2 -01101010 Lamason 2 -01101010 Roth-Tubman 2 -01101010 Trager 2 -01101010 Kufeldt 2 -01101010 Launoit 2 -01101010 McKellar 2 -01101010 Condliffe 2 -01101010 Zachau 2 -01101010 Maister 2 -01101010 Elshtain 2 -01101010 Zee 2 -01101010 Lococo 2 -01101010 Levinsky 2 -01101010 Werdell 2 -01101010 ATKINSON 2 -01101010 Dingle 2 -01101010 1511 2 -01101010 Siebers 2 -01101010 Stowers 2 -01101010 Distefano 2 -01101010 Pollan 2 -01101010 Rulle 2 -01101010 Keydel 2 -01101010 Sinha 2 -01101010 Alkhatib 2 -01101010 Shula 2 -01101010 Tolkachev 2 -01101010 DeWolff 2 -01101010 Munin 2 -01101010 Costantine 2 -01101010 Goleccha 2 -01101010 Leddy 2 -01101010 Tazewell 2 -01101010 Welker 2 -01101010 Tomasko 2 -01101010 Malawsky 2 -01101010 Kotler 2 -01101010 Iberamerica 2 -01101010 Toland 2 -01101010 dem 2 -01101010 Ketchesum 2 -01101010 Heuvel 2 -01101010 Fuld 2 -01101010 DeBenedictis 2 -01101010 Siefkes 2 -01101010 Elfner 2 -01101010 Akre 2 -01101010 Hoan 2 -01101010 Param 2 -01101010 Marzullo 2 -01101010 Muzaffar 2 -01101010 Nordahl 2 -01101010 Tritt 2 -01101010 Phongpraphan 2 -01101010 Evershed 2 -01101010 Kawanishi 2 -01101010 Subrahmanyam 2 -01101010 Swider-Peltz 2 -01101010 Mechanic 2 -01101010 Wockenfuss 2 -01101010 Frankenthal 2 -01101010 Turiel 2 -01101010 Schaffhauser 2 -01101010 Stamos 2 -01101010 Shelp 2 -01101010 Alkouine 2 -01101010 Huguenots 2 -01101010 Adimando 2 -01101010 Mikan 2 -01101010 Obie 2 -01101010 Wisse 2 -01101010 Metzler 2 -01101010 Kogyosha 2 -01101010 Desir 2 -01101010 Compaore 2 -01101010 Daubert 2 -01101010 Alfreda 2 -01101010 Arad 2 -01101010 Closen 2 -01101010 Landetta 2 -01101010 Belichick 2 -01101010 Krieble 2 -01101010 Chamlong 2 -01101010 Mihai 2 -01101010 Hitlin 2 -01101010 Stealey 2 -01101010 Gewald 2 -01101010 Zemeckis 2 -01101010 Hojian 2 -01101010 Buhl 2 -01101010 Tassinari 2 -01101010 Bluth 2 -01101010 Mintel 2 -01101010 Jerson 2 -01101010 Schlem 2 -01101010 Sissel 2 -01101010 estime 2 -01101010 Muktaripidar 2 -01101010 Lia 2 -01101010 Lemoyne 2 -01101010 Merrifield 2 -01101010 Horsey 2 -01101010 Custis 2 -01101010 Barish 2 -01101010 Hartarto 2 -01101010 Astrop 2 -01101010 Bree 2 -01101010 Ketteringham 2 -01101010 Torto 2 -01101010 Cliburn 2 -01101010 Rickets 2 -01101010 Kueneman 2 -01101010 Suhey 2 -01101010 Pantzer 2 -01101010 Hecken 2 -01101010 Wytmar 2 -01101010 Scheuerman 2 -01101010 Cowperthwaite 2 -01101010 Panasci 2 -01101010 Brendle 2 -01101010 Manske 2 -01101010 Lounsbery 2 -01101010 Polikoff 2 -01101010 Kochitov 2 -01101010 Samakow 2 -01101010 Dantas 2 -01101010 Carmo 2 -01101010 Brochard 2 -01101010 Caronia 2 -01101010 Brau 2 -01101010 McElwee 2 -01101010 Vissoka 2 -01101010 Kreuter 2 -01101010 Widmark 2 -01101010 Hedden 2 -01101010 Braxton 2 -01101010 Tso 2 -01101010 Durso 2 -01101010 Delker 2 -01101010 Pricher 2 -01101010 Salley 2 -01101010 Sutz 2 -01101010 Wyszynski 2 -01101010 Huffard 2 -01101010 Ebbert 2 -01101010 Maestri 2 -01101010 Merriwell 2 -01101010 Mishell 2 -01101010 Sorrentino 2 -01101010 Ediger 2 -01101010 Layamon 2 -01101010 Swofford 2 -01101010 Bodnar 2 -01101010 Osteen 2 -01101010 Kratzman 2 -01101010 HOLMES 2 -01101010 Landesbank-Girozentrale 2 -01101010 Hargreaves 2 -01101010 Baddeley 2 -01101010 Anna-Greta 2 -01101010 MORRIS 2 -01101010 Rothfleisch 2 -01101010 Bleach 2 -01101010 Dillion 2 -01101010 Bunn 2 -01101010 Gamm 2 -01101010 Adeli 2 -01101010 Kellog 2 -01101010 1577 2 -01101010 Monteith 2 -01101010 Evenchick 2 -01101010 Mountjoy 2 -01101010 Capozolli 2 -01101010 Venkateswaran 2 -01101010 Recker 2 -01101010 Wadley 2 -01101010 Galac 2 -01101010 Slave 2 -01101010 Nattapol 2 -01101010 Wuerkaixi 2 -01101010 Portici 2 -01101010 Moyed 2 -01101010 Mehos 2 -01101010 ROTHSCHILD 2 -01101010 Lombardozzi 2 -01101010 Faehn 2 -01101010 Daicoff 2 -01101010 Azimi 2 -01101010 Coogan 2 -01101010 Tonsmeire 2 -01101010 Bybee 2 -01101010 Chiaromonte 2 -01101010 Majkowski 2 -01101010 Montella 2 -01101010 Vaino 2 -01101010 Sekulow 2 -01101010 Prevor 2 -01101010 Grimsley 2 -01101010 Panella 2 -01101010 Tannehill 2 -01101010 Coss 2 -01101010 Mingolla 2 -01101010 Naicker 2 -01101010 Trebelhorn 2 -01101010 Tommelein 2 -01101010 Venezia 2 -01101010 Jaus 2 -01101010 Hur 2 -01101010 Bierstadt 2 -01101010 McCourtney 2 -01101010 Malenkov 2 -01101010 Langenberg 2 -01101010 Shifflet 2 -01101010 Schwabe 2 -01101010 Bedard 2 -01101010 Vukovich 2 -01101010 Kurtenbach 2 -01101010 Kieft 2 -01101010 Aalfs 2 -01101010 Billard 2 -01101010 Violette 2 -01101010 Bagchi 2 -01101010 Falzon 2 -01101010 WALKER 2 -01101010 Freuhauf 2 -01101010 Harritt 2 -01101010 Arcade 2 -01101010 Stieglitz 2 -01101010 Putz 2 -01101010 Pagano 2 -01101010 Mallett 2 -01101010 BURTON 2 -01101010 Piccoli 2 -01101010 Wildman 2 -01101010 Zou 2 -01101010 Sypek 2 -01101010 Balducci 2 -01101010 Gawlick 2 -01101010 Pester 2 -01101010 Figg 2 -01101010 LaRussa 2 -01101010 Evenhouse 2 -01101010 Sporl 2 -01101010 Remo 2 -01101010 Bjurnstrom 2 -01101010 Cromer 2 -01101010 Castellani 2 -01101010 Loseff 2 -01101010 Thadani 2 -01101010 Seibou 2 -01101010 Mankowski 2 -01101010 Neese 2 -01101010 Givelber 2 -01101010 Beezer 2 -01101010 Schober 2 -01101010 Scotti 2 -01101010 Tojo 2 -01101010 Sweezy 2 -01101010 Magdoff 2 -01101010 Chiklis 2 -01101010 Fougere 2 -01101010 Barren 2 -01101010 Niebaum 2 -01101010 Kinnelon 2 -01101010 Suslov 2 -01101010 Rigaud 2 -01101010 Ikoma 2 -01101010 Toiv 2 -01101010 Karmin 2 -01101010 Suphsorn 2 -01101010 Halliwell 2 -01101010 Magarity 2 -01101010 McEldownley 2 -01101010 Gerrish 2 -01101010 Handicap 2 -01101010 Lickle 2 -01101010 Gumberg 2 -01101010 Macfie 2 -01101010 Pavalon 2 -01101010 Moorehead 2 -01101010 Salters 2 -01101010 Opperman 2 -01101010 Prupis 2 -01101010 Tiso 2 -01101010 Brinks 2 -01101010 Iglewski 2 -01101010 Musees 2 -01101010 Mastrucci 2 -01101010 Ludy 2 -01101010 Montezemolo 2 -01101010 Coley 2 -01101010 McKim 2 -01101010 Bilhartz 2 -01101010 Wetterhahn 2 -01101010 Kubale 2 -01101010 Skrzypczak 2 -01101010 Tomasso 2 -01101010 LaLanne 2 -01101010 Halbert 2 -01101010 Breznay 2 -01101010 Kushnick 2 -01101010 Dourlet 2 -01101010 Montazari 2 -01101010 Koff 2 -01101010 Bolla 2 -01101010 Qian 2 -01101010 Verellen 2 -01101010 Rottman 2 -01101010 Cherin 2 -01101010 Titov 2 -01101010 Bjurman 2 -01101010 Tycoon 2 -01101010 Peck. 2 -01101010 Schenker 2 -01101010 Noda 2 -01101010 Decoster 2 -01101010 Jantzen 2 -01101010 DeMeuse 2 -01101010 Meyerhoff 2 -01101010 Kryda 2 -01101010 Manoa 2 -01101010 Kolker 2 -01101010 Creem 2 -01101010 Huffaker 2 -01101010 Hottensen 2 -01101010 Werden 2 -01101010 Carnegies 2 -01101010 Wankel 2 -01101010 Mohagen 2 -01101010 Darnall 2 -01101010 Logar 2 -01101010 Musial 2 -01101010 Gardel 2 -01101010 Dickemper 2 -01101010 Lobeck 2 -01101010 Debo 2 -01101010 Tenebres 2 -01101010 Bahadur 2 -01101010 Messmer 2 -01101010 Shriner 2 -01101010 Chavel 2 -01101010 Falzani 2 -01101010 Radu 2 -01101010 Six-Pack 2 -01101010 McGaughey 2 -01101010 Gressinger 2 -01101010 Hansell 2 -01101010 Clasen 2 -01101010 Dobin 2 -01101010 Kritzer 2 -01101010 Senterfitt 2 -01101010 Lukes 2 -01101010 Heidsieck 2 -01101010 Cator 2 -01101010 Seguros 2 -01101010 Ladin 2 -01101010 Bromer 2 -01101010 Boudreaux 2 -01101010 Seoane 2 -01101010 Osawa 2 -01101010 Scherr 2 -01101010 Rickards 2 -01101010 Paopat 2 -01101010 Weichman 2 -01101010 Rotschild 2 -01101010 Malasmus 2 -01101010 Chameleon 2 -01101010 2470 2 -01101010 Kopec 2 -01101010 Manyak 2 -01101010 Ghabris 2 -01101010 Waymer 2 -01101010 Lash 2 -01101010 Zhaoyi 2 -01101010 Wallmann 2 -01101010 Economiques 2 -01101010 Hiltzheimer 2 -01101010 Marineau 2 -01101010 Haeggloef 2 -01101010 Vad 2 -01101010 Kneeland 2 -01101010 Carolly 2 -01101010 Yatron 2 -01101010 Katcher 2 -01101010 Fiffer 2 -01101010 Muzylowski 2 -01101010 Bonnell 2 -01101010 McNease 2 -01101010 Tatlin 2 -01101010 Carboni 2 -01101010 McEachen 2 -01101010 Liming 2 -01101010 Caito 2 -01101010 Stiponovich 2 -01101010 Verdugo 2 -01101010 Marra 2 -01101010 Bozarth 2 -01101010 Ambridge 2 -01101010 Hinchman 2 -01101010 Christon 2 -01101010 Latouche 2 -01101010 Pickler 2 -01101010 Jeffcoat 2 -01101010 Hackworth 2 -01101010 Swanstrom 2 -01101010 Wootten 2 -01101010 Mikity 2 -01101010 Radzinski 2 -01101010 Guigal 2 -01101010 Visconto 2 -01101010 Slember 2 -01101010 Marchitto 2 -01101010 Bohl 2 -01101010 Himmelwright 2 -01101010 Malraux 2 -01101010 Caneghan 2 -01101010 Kammerer 2 -01101010 Lunney 2 -01101010 Brincat 2 -01101010 Strassler 2 -01101010 Lune 2 -01101010 Overstreet 2 -01101010 Northcote 2 -01101010 Agheila 2 -01101010 Silvers 2 -01101010 Elroy 2 -01101010 Lakonishok 2 -01101010 Choedchu 2 -01101010 Freudenheim 2 -01101010 Buer 2 -01101010 Tilly 2 -01101010 Delhomme 2 -01101010 Naideth 2 -01101010 Dunleavy 2 -01101010 Silvernale 2 -01101010 Schaffauser 2 -01101010 Quantz 2 -01101010 Satre 2 -01101010 Evered 2 -01101010 Ceasar 2 -01101010 Roediger 2 -01101010 Steta 2 -01101010 Arduini 2 -01101010 Goerz 2 -01101010 Neafsey 2 -01101010 Maugans 2 -01101010 Nygard 2 -01101010 Salthouse 2 -01101010 Tominac 2 -01101010 Cayes 2 -01101010 Frosch 2 -01101010 Blackwelder 2 -01101010 Florjancic 2 -01101010 Binning 2 -01101010 Melk 2 -01101010 Guercio 2 -01101010 Banton 2 -01101010 Hutts 2 -01101010 Lovins 2 -01101010 Duman 2 -01101010 Yonder 2 -01101010 Emper 2 -01101010 Weick 2 -01101010 Flattery 2 -01101010 Bonda 2 -01101010 Klutznick 2 -01101010 Stueck 2 -01101010 Fults 2 -01101010 Labovitz 2 -01101010 Nasher 2 -01101010 norske 2 -01101010 Sumpter 2 -01101010 Pletnev 2 -01101010 Sechler 2 -01101010 Rago 2 -01101010 Battalia 2 -01101010 Albin 2 -01101010 Cascino 2 -01101010 Glasgal 2 -01101010 Gieszl 2 -01101010 Ruck 2 -01101010 Dionisio 2 -01101010 Chon 2 -01101010 McMillian 2 -01101010 Pulver 2 -01101010 Rankine 2 -01101010 Pinkett 2 -01101010 Yorke 2 -01101010 Duckhorn 2 -01101010 Sinkula 2 -01101010 Kellam 2 -01101010 Oertle 2 -01101010 Rockoff 2 -01101010 Neild 2 -01101010 dasystemon 2 -01101010 Turkestanica 2 -01101010 Quispe 2 -01101010 Beougher 2 -01101010 Bakal 2 -01101010 Powlen 2 -01101010 Sorbo 2 -01101010 Curnow 2 -01101010 Anon 2 -01101010 Louchheim 2 -01101010 Yajnik 2 -01101010 SINCLAIR 2 -01101010 Stiffle 2 -01101010 Alaniz 2 -01101010 Mulato 2 -01101010 Salorio 2 -01101010 Dijkstra 2 -01101010 Maitland-Smith 2 -01101010 Gadow 2 -01101010 Tappen 2 -01101010 Auberry 2 -01101010 Passamano 2 -01101010 Hamdan 2 -01101010 Baysal 2 -01101010 Peruano 2 -01101010 Jordaens 2 -01101010 Quint 2 -01101010 Aande 2 -01101010 Kraushaar 2 -01101010 Chabeneix 2 -01101010 Lenart 2 -01101010 Kosai 2 -01101010 Fedorenko 2 -01101010 Malara 2 -01101010 Leotta 2 -01101010 Durrell 2 -01101010 Altura 2 -01101010 Schwarzenberger 2 -01101010 Raucourt 2 -01101010 Livolsi 2 -01101010 Berwin 2 -01101010 Norbu 2 -01101010 Lechner 2 -01101010 Nasti 2 -01101010 Ebel 2 -01101010 Bushey 2 -01101010 Bruhl 2 -01101010 Nicol 2 -01101010 Aderhold 2 -01101010 Himber 2 -01101010 Hug 2 -01101010 Hebb 2 -01101010 Havemeyer 2 -01101010 Figueras 2 -01101010 Kanellopoulos 2 -01101010 Campesino 2 -01101010 Stadter 2 -01101010 Misquita 2 -01101010 Leet 2 -01101010 Wiatrak 2 -01101010 Vella 2 -01101010 Shelikhov 2 -01101010 Hanifan 2 -01101010 LaLoosh 2 -01101010 Lewes 3 -01101010 Villalobos 3 -01101010 Nofal 3 -01101010 Meditation 3 -01101010 Hohn 3 -01101010 Eriksen 3 -01101010 Qua 3 -01101010 Usery 3 -01101010 Yamauchi 3 -01101010 Pynchon 3 -01101010 Bettis 3 -01101010 Vetter 3 -01101010 Newlands 3 -01101010 Zoll 3 -01101010 Guillen 3 -01101010 Mathieson 3 -01101010 Thapar 3 -01101010 Areeda 3 -01101010 Genge 3 -01101010 Sitomer 3 -01101010 Smicklas 3 -01101010 Firmin 3 -01101010 Bellinger 3 -01101010 Hill/Mecca 3 -01101010 Koven 3 -01101010 Levert 3 -01101010 Saker 3 -01101010 Monteiro 3 -01101010 Slaight 3 -01101010 Pflaum 3 -01101010 Klumpp 3 -01101010 Holbein 3 -01101010 Zimmerli 3 -01101010 Piety 3 -01101010 Rogov 3 -01101010 JORDAN 3 -01101010 Croly 3 -01101010 Martosella 3 -01101010 Fuehrer 3 -01101010 Woosley 3 -01101010 Ferrante 3 -01101010 Kreps 3 -01101010 Hartnick 3 -01101010 Wygant 3 -01101010 Lindt 3 -01101010 Checkosky 3 -01101010 Chiew 3 -01101010 Peattie 3 -01101010 Cenci 3 -01101010 MCLEAN 3 -01101010 Clanton 3 -01101010 Azur 3 -01101010 Vaivudhi 3 -01101010 Togut 3 -01101010 Salvino 3 -01101010 Veres 3 -01101010 Gavras 3 -01101010 Mihara 3 -01101010 Rhyne 3 -01101010 Bigler 3 -01101010 Purnell 3 -01101010 Anand 3 -01101010 Malonson 3 -01101010 Shur 3 -01101010 Heintz 3 -01101010 Trocme 3 -01101010 Wouters 3 -01101010 Elfman 3 -01101010 Simard 3 -01101010 LeGrande 3 -01101010 Claro 3 -01101010 Nee 3 -01101010 Cavarretta 3 -01101010 Lauritzen 3 -01101010 LeMay 3 -01101010 Spiller 3 -01101010 Randle 3 -01101010 Tayeb 3 -01101010 Valen 3 -01101010 Maltbie 3 -01101010 Hyer 3 -01101010 Vellert 3 -01101010 Burgoon 3 -01101010 Whyte 3 -01101010 Bassani 3 -01101010 Apfel 3 -01101010 Heidegger 3 -01101010 Lachman 3 -01101010 Konikow 3 -01101010 Funicello 3 -01101010 Moura 3 -01101010 Stutman 3 -01101010 Angara 3 -01101010 Willey 3 -01101010 Brickell 3 -01101010 DuComb 3 -01101010 Arky 3 -01101010 Burkey 3 -01101010 Lifschultz 3 -01101010 Koffel 3 -01101010 Klick 3 -01101010 Waterstone 3 -01101010 Casamassima 3 -01101010 Halloway 3 -01101010 Galliano 3 -01101010 McGrain 3 -01101010 Rood 3 -01101010 Mugabi 3 -01101010 Magno 3 -01101010 Grylls 3 -01101010 Handelman 3 -01101010 Teneff 3 -01101010 Demos 3 -01101010 Garside 3 -01101010 Dubin 3 -01101010 Scarbrough 3 -01101010 Warne 3 -01101010 Fantin-Latour 3 -01101010 Tanler 3 -01101010 Zysman 3 -01101010 Skybetter 3 -01101010 Dilweg 3 -01101010 Nally 3 -01101010 Lajoinie 3 -01101010 Seaborn 3 -01101010 Syms 3 -01101010 Norall 3 -01101010 Flock 3 -01101010 Nakagama 3 -01101010 Recto 3 -01101010 Princes 3 -01101010 Entreprise 3 -01101010 Maggi 3 -01101010 Angoff 3 -01101010 Kaku 3 -01101010 Batinic 3 -01101010 Gart 3 -01101010 Cassels 3 -01101010 Croll 3 -01101010 Silvestri 3 -01101010 Daumier 3 -01101010 Belk 3 -01101010 Custard 3 -01101010 Brod 3 -01101010 Maconachy 3 -01101010 Heathman 3 -01101010 LeSignour 3 -01101010 Colfax 3 -01101010 Guzzle 3 -01101010 Cassation 3 -01101010 Kile 3 -01101010 Jetson 3 -01101010 Sai 3 -01101010 Toklas 3 -01101010 Nagase 3 -01101010 Carl/312-Futures 3 -01101010 Kasom 3 -01101010 Puls 3 -01101010 Shealey 3 -01101010 Piccard 3 -01101010 Maddalena 3 -01101010 Mihaly 3 -01101010 Snaith 3 -01101010 Lagerfeld 3 -01101010 Kindel 3 -01101010 Hamada 3 -01101010 Stober 3 -01101010 Duckett 3 -01101010 Lillis 3 -01101010 Buffone 3 -01101010 Bobbi 3 -01101010 Haldeman-Julius 3 -01101010 Silcox 3 -01101010 mia 3 -01101010 Ebsworth 3 -01101010 Landreth 3 -01101010 Kalinowski 3 -01101010 Pappert 3 -01101010 Halder 3 -01101010 Schotland 3 -01101010 Siregar 3 -01101010 Meigs 3 -01101010 Neiss 3 -01101010 Grune 3 -01101010 Chastain 3 -01101010 Schaller 3 -01101010 Hanft 3 -01101010 MacAndrew 3 -01101010 Oram 3 -01101010 Craighead 3 -01101010 Argent 3 -01101010 Semprevivo 3 -01101010 Delich 3 -01101010 Mercado 3 -01101010 Hashim 3 -01101010 Rutili 3 -01101010 Berstein 3 -01101010 Fermat 3 -01101010 Greaves 3 -01101010 Salter 3 -01101010 Cavaney 3 -01101010 Mahdi 3 -01101010 Santry 3 -01101010 Culverwell 3 -01101010 Pescarmona 3 -01101010 Koshland 3 -01101010 Nordlinger 3 -01101010 Korf 3 -01101010 Mickelson 3 -01101010 Kleinke 3 -01101010 Muss 3 -01101010 Tullis 3 -01101010 Doctorow 3 -01101010 Wyckoff 3 -01101010 Krishnan 3 -01101010 Woodforde 3 -01101010 Borget 3 -01101010 Gertler 3 -01101010 Widman 3 -01101010 Kellar 3 -01101010 Spink 3 -01101010 Saulsbury 3 -01101010 Laderman 3 -01101010 Rothko 3 -01101010 Zevenbergen 3 -01101010 Rollings 3 -01101010 Laclos 3 -01101010 Wimpey 3 -01101010 Kemps 3 -01101010 Mendicino 3 -01101010 Krzywicki 3 -01101010 Buckler 3 -01101010 Calfee 3 -01101010 Twister 3 -01101010 Leia 3 -01101010 Prom 3 -01101010 Sixpack 3 -01101010 Beddome 3 -01101010 Roarke 3 -01101010 Stoppard 3 -01101010 Kadlec 3 -01101010 Kleist 3 -01101010 Agresti 3 -01101010 Bouvet 3 -01101010 Erkins 3 -01101010 Smulyan 3 -01101010 Nussink 3 -01101010 Mitera 3 -01101010 Ekrom 3 -01101010 Waldhauser 3 -01101010 Trueman 3 -01101010 Borchgrave 3 -01101010 Hargrave 3 -01101010 Bullitt 3 -01101010 Hedrick 3 -01101010 Gott 3 -01101010 Mette 3 -01101010 Saint-Amand 3 -01101010 Penna 3 -01101010 Sprinkle 3 -01101010 Katayama 3 -01101010 Strowger 3 -01101010 Yochum 3 -01101010 Corsaro 3 -01101010 Woosnam 3 -01101010 Perl 3 -01101010 Ungaro 3 -01101010 Stocking 3 -01101010 Gaunt 3 -01101010 Calata 3 -01101010 Spinelli 3 -01101010 Jaber 3 -01101010 Azure 3 -01101010 Stanard 3 -01101010 DellaFemina 3 -01101010 Frankenberry 3 -01101010 Balleisen 3 -01101010 Gotlib 3 -01101010 Kolodny 3 -01101010 McKiernan 3 -01101010 Abroms 3 -01101010 Bajaj 3 -01101010 Calcavecchia 3 -01101010 Fix-It 3 -01101010 Brundage 3 -01101010 Maule 3 -01101010 Passamani 3 -01101010 Linquist 3 -01101010 Brehm 3 -01101010 Pozo 3 -01101010 Carrell 3 -01101010 Dollinger 3 -01101010 Brunning 3 -01101010 Westerfield 3 -01101010 Anatole 3 -01101010 Tachiki 3 -01101010 Seitchik 3 -01101010 Freihofer 3 -01101010 Caird 3 -01101010 Kuchler 3 -01101010 Caswell 3 -01101010 Mecom 3 -01101010 Liepa 3 -01101010 Dula 3 -01101010 Yeller 3 -01101010 Ryser 3 -01101010 Mulhall 3 -01101010 Wilmers 3 -01101010 Gurion 3 -01101010 McAdam 3 -01101010 Byer 3 -01101010 Rosenbloom 3 -01101010 Fite 3 -01101010 Kader 3 -01101010 Viss 3 -01101010 VO5 3 -01101010 Nuzum 3 -01101010 Rexsite 3 -01101010 Barman 3 -01101010 Bruehl 3 -01101010 Lymon 3 -01101010 Nuncio 3 -01101010 Sagarra 3 -01101010 Kamata 3 -01101010 Thornburg 3 -01101010 Kercheval 3 -01101010 Seedman 3 -01101010 Thu 3 -01101010 Bessmertnykh 3 -01101010 Matar 3 -01101010 Dozen 3 -01101010 Tease 3 -01101010 Kershaw 3 -01101010 Pastorius 3 -01101010 Harrelson 3 -01101010 Dickason 3 -01101010 Tatsumi 3 -01101010 Olken 3 -01101010 Holmquist 3 -01101010 Node 3 -01101010 Bonovitz 3 -01101010 Godlewski 3 -01101010 Pedrosa 3 -01101010 Villareal 3 -01101010 Barrons 3 -01101010 Brunie 3 -01101010 Brach 3 -01101010 Gummy 3 -01101010 Galway 3 -01101010 Truesdell 3 -01101010 Fingerhood 3 -01101010 Rehfeldt 3 -01101010 Atols 3 -01101010 Pomerening 3 -01101010 Twombly 3 -01101010 Mineria 3 -01101010 Kasnett 3 -01101010 Sutphen 3 -01101010 Macrae 3 -01101010 Panufnik 3 -01101010 Buff 3 -01101010 Kavanaugh 3 -01101010 Dimeling 3 -01101010 Vere 3 -01101010 Piedra 3 -01101010 Terker 3 -01101010 Aramburuzabala 3 -01101010 Woodall 3 -01101010 Ohn 3 -01101010 Walling 3 -01101010 Gooch 3 -01101010 Dreiling 3 -01101010 Lorrie 3 -01101010 Beare 3 -01101010 Hermelee 3 -01101010 Eklof 3 -01101010 Brinkschulte 3 -01101010 Steinbach 3 -01101010 Clack 3 -01101010 Lenard 3 -01101010 Braudel 3 -01101010 Panoff 3 -01101010 Pasquariello 3 -01101010 LaMore 3 -01101010 Swieca 3 -01101010 Ancona 3 -01101010 Karle 3 -01101010 Benevento 3 -01101010 Osinski 3 -01101010 Parkes 3 -01101010 Scenario 3 -01101010 Haney 3 -01101010 Aronsson 3 -01101010 Merkel 3 -01101010 McIver 3 -01101010 Kalp 3 -01101010 Goble 3 -01101010 Schweizer 3 -01101010 Radiocomunicaciones 3 -01101010 Schaper 3 -01101010 Ruddick 3 -01101010 Sawyier 3 -01101010 Aidlin 3 -01101010 Boyajian 3 -01101010 Rotta 3 -01101010 Pilz 3 -01101010 Hoban 3 -01101010 Dubuc 3 -01101010 Tubb 3 -01101010 Pettis 3 -01101010 Shycon 3 -01101010 Voorhies 3 -01101010 Herlihy 3 -01101010 Bettenhausen 3 -01101010 Lammer 3 -01101010 Chermayeff 3 -01101010 Metzlaff 3 -01101010 Trubetskoy 3 -01101010 Pettersson 3 -01101010 Koen 3 -01101010 Gerbino 3 -01101010 Guofeng 3 -01101010 Mortenson 3 -01101010 Orabi 3 -01101010 Crupi 3 -01101010 DeWolfe 3 -01101010 Pettus 3 -01101010 Saltzburg 3 -01101010 Zahn 3 -01101010 Mecklenberg 3 -01101010 Rosenkavalier 3 -01101010 Bickley 3 -01101010 Wason 3 -01101010 Hildreth 3 -01101010 Ines 3 -01101010 Sheetz 3 -01101010 Sonntag 3 -01101010 Nager 3 -01101010 dell 3 -01101010 Aurelio 3 -01101010 Enis 3 -01101010 Coe 3 -01101010 Mader 3 -01101010 Sica 3 -01101010 Plasse 3 -01101010 Brownstein 3 -01101010 Furumoto 3 -01101010 Kable 3 -01101010 Swisher 3 -01101010 Macleod 3 -01101010 Tarlton 3 -01101010 Tsavaris 3 -01101010 Ebcioglu 3 -01101010 Hindy 3 -01101010 Causley 3 -01101010 Mechlin 3 -01101010 Mohtashemi-Pur 3 -01101010 Scents 3 -01101010 ROGERS 3 -01101010 Gens 3 -01101010 Ledet 3 -01101010 KIRBY 3 -01101010 Nett 3 -01101010 Offutt 3 -01101010 Lazcano 3 -01101010 Libbey 3 -01101010 Bargon 3 -01101010 Hasselblad 3 -01101010 Kingsnorth 3 -01101010 Walin 3 -01101010 Fredricks 3 -01101010 Deardorff 3 -01101010 Earnshaw 3 -01101010 Godel 3 -01101010 Sitter 3 -01101010 Jurasik 3 -01101010 Canellos 3 -01101010 Ehrhardt 3 -01101010 Price-Fleming 3 -01101010 Mascotte 3 -01101010 Salvatori 3 -01101010 Kirkman 3 -01101010 Donatoni 3 -01101010 Fitz 3 -01101010 Lamhut 3 -01101010 Linares 3 -01101010 Fiorenza 3 -01101010 Campau 3 -01101010 Revelstoke 3 -01101010 Klauck 3 -01101010 Gagosian 3 -01101010 Chavarria 3 -01101010 Hoenecke 3 -01101010 Weizman 3 -01101010 Sween 3 -01101010 Ruffino 3 -01101010 Averett 3 -01101010 Drotter 3 -01101010 Hayakawa 3 -01101010 Eustis 3 -01101010 Stilwell 3 -01101010 Alberti 3 -01101010 Ludvigsen 3 -01101010 Grahl 3 -01101010 Gunzburg 3 -01101010 BONUSES 3 -01101010 Sweitzer 3 -01101010 Crosland 4 -01101010 Cavelti 4 -01101010 Kimmell 4 -01101010 Diez 4 -01101010 Selman 4 -01101010 Richelieu 4 -01101010 Makanoff 4 -01101010 Hendler 4 -01101010 Cartier-Bresson 4 -01101010 Kertesz 4 -01101010 Dinkeloo 4 -01101010 Mehrer 4 -01101010 Alcorn 4 -01101010 DeLand 4 -01101010 Nei 4 -01101010 Marich 4 -01101010 Codina 4 -01101010 Adamec 4 -01101010 Bixby 4 -01101010 Slagle 4 -01101010 LaGere 4 -01101010 Lassiter 4 -01101010 Hadida 4 -01101010 Kite 4 -01101010 Rieder 4 -01101010 Dabba 4 -01101010 Eisenstat 4 -01101010 Disorder 4 -01101010 Haughton 4 -01101010 Moodys 4 -01101010 Coetzee 4 -01101010 Seguin 4 -01101010 Bertelsman 4 -01101010 Danza 4 -01101010 Phypers 4 -01101010 Schopf 4 -01101010 Clemenceau 4 -01101010 Bowring 4 -01101010 Velez 4 -01101010 Geel 4 -01101010 Zutter 4 -01101010 Holger 4 -01101010 Lehndorff 4 -01101010 Eolis 4 -01101010 Frampton 4 -01101010 Frasier 4 -01101010 Voix 4 -01101010 Terk 4 -01101010 Lonczak 4 -01101010 Hafetz 4 -01101010 Pyo 4 -01101010 Wavell 4 -01101010 Ekman 4 -01101010 Saxe 4 -01101010 Cupper 4 -01101010 Chesnut 4 -01101010 Jessop 4 -01101010 Bekhor 4 -01101010 Escoffier 4 -01101010 Fife 4 -01101010 arte 4 -01101010 Kelner 4 -01101010 Houde 4 -01101010 Hefton 4 -01101010 Broun 4 -01101010 Liddell 4 -01101010 Deegan 4 -01101010 Baptiste 4 -01101010 Abegglen 4 -01101010 Akita 4 -01101010 Savett 4 -01101010 Luksch 4 -01101010 Munsell 4 -01101010 Lucker 4 -01101010 Roisman 4 -01101010 Farish 4 -01101010 Gloyd 4 -01101010 Gutwein 4 -01101010 Makepeace 4 -01101010 McWilliams 4 -01101010 Orosco 4 -01101010 Maxson 4 -01101010 Tiegs 4 -01101010 Lapping 4 -01101010 Ronalds 4 -01101010 Larkins 4 -01101010 Stonefield 4 -01101010 Dreisbach 4 -01101010 Dunning 4 -01101010 Chuong 4 -01101010 Gutzwiller 4 -01101010 Chiaie 4 -01101010 Carestio 4 -01101010 Mabe 4 -01101010 Hrdlicka 4 -01101010 Argyris 4 -01101010 Sbarra 4 -01101010 Kosheff 4 -01101010 Fudge 4 -01101010 Heiden 4 -01101010 Bookman 4 -01101010 Floria 4 -01101010 Hasse 4 -01101010 Knoell 4 -01101010 Morrissey 4 -01101010 Cunha 4 -01101010 Sonde 4 -01101010 Sharkey 4 -01101010 Galland 4 -01101010 Chaffee 4 -01101010 Schirmer 4 -01101010 Chausson 4 -01101010 Mariaschin 4 -01101010 Bendick 4 -01101010 Kolton 4 -01101010 Roath 4 -01101010 Quan 4 -01101010 Halles 4 -01101010 Nasr 4 -01101010 Bauder 4 -01101010 Gagliardi 4 -01101010 Grammer 4 -01101010 Corna 4 -01101010 Searcy 4 -01101010 Abu-Saleh 4 -01101010 Cabell 4 -01101010 Doinel 4 -01101010 Leenen 4 -01101010 Trinquetaille 4 -01101010 Durocher 4 -01101010 Hord 4 -01101010 Parente 4 -01101010 Farben 4 -01101010 Prell 4 -01101010 Rivetti 4 -01101010 Lamberth 4 -01101010 Makarova 4 -01101010 Sepulveda 4 -01101010 Haave 4 -01101010 Groetzinger 4 -01101010 Soubeyran 4 -01101010 Wittner 4 -01101010 Marchi 4 -01101010 Nelsen 4 -01101010 Gantner 4 -01101010 Rasor 4 -01101010 Lazzaroni 4 -01101010 Venue 4 -01101010 Atkind 4 -01101010 Corby 4 -01101010 Lutoslawski 4 -01101010 Twine 4 -01101010 Hoisington 4 -01101010 Meeder 4 -01101010 Haggar 4 -01101010 Reppe 4 -01101010 Besser 4 -01101010 Staunton 4 -01101010 Goren 4 -01101010 Creswell 4 -01101010 Cavallo 4 -01101010 Hassam 4 -01101010 Berk 4 -01101010 Demeure 4 -01101010 Fuhrmann 4 -01101010 Steirman 4 -01101010 Antinori 4 -01101010 Wino 4 -01101010 Hunefeld 4 -01101010 Antonello 4 -01101010 Capers 4 -01101010 Schuerholz 4 -01101010 Brinegar 4 -01101010 Apostolakis 4 -01101010 Rotunda 4 -01101010 Brakeley 4 -01101010 Joynt 4 -01101010 Loughman 4 -01101010 Scheidt 4 -01101010 Frommer 4 -01101010 Vougeot 4 -01101010 Beerbohm 4 -01101010 Gundel 4 -01101010 Tarnow 4 -01101010 Nizer 4 -01101010 Seronick 4 -01101010 Junor 4 -01101010 Ackley 4 -01101010 Treadwell 4 -01101010 Coble 4 -01101010 Thee 4 -01101010 Longuet 4 -01101010 Cullom 4 -01101010 Schaffner 4 -01101010 Dobbins 4 -01101010 Poterba 4 -01101010 Mash 4 -01101010 Haugh 4 -01101010 Rangos 4 -01101010 Cohler 4 -01101010 Freshwater 4 -01101010 Hoefer 4 -01101010 Burggraf 4 -01101010 Woolfe 4 -01101010 Nammack 4 -01101010 Creamery 4 -01101010 Goldstone 4 -01101010 Sayre 4 -01101010 Lochner 4 -01101010 Rigdon 4 -01101010 Ribbon 4 -01101010 Zarin 4 -01101010 Toulouse-Lautrec 4 -01101010 Delacroix 4 -01101010 Blackie 4 -01101010 Vee 4 -01101010 Wipf 4 -01101010 Boley 4 -01101010 Savon 4 -01101010 Tickle 4 -01101010 Edel 4 -01101010 Addy 4 -01101010 Shu 4 -01101010 Destino 4 -01101010 frappe 4 -01101010 Jian 4 -01101010 Wente 4 -01101010 Ver 4 -01101010 Calvillo 4 -01101010 Alderdice 4 -01101010 Danson 4 -01101010 Standish 4 -01101010 Twomey 4 -01101010 Guerrini 4 -01101010 Hemmings 4 -01101010 Mounty 4 -01101010 Heidt 4 -01101010 Reny 4 -01101010 Schueren 4 -01101010 Oka 4 -01101010 McNeely 4 -01101010 Ainsworth 4 -01101010 Beeman 4 -01101010 Foret 4 -01101010 LeBlond 4 -01101010 Hirao 4 -01101010 Whiteside 4 -01101010 Pantaleoni 4 -01101010 Veneto 4 -01101010 Vaux 4 -01101010 Jefferys 4 -01101010 Hankin 4 -01101010 Palley 4 -01101010 Mirante 4 -01101010 Moak 4 -01101010 Hauptman 4 -01101010 Prasad 4 -01101010 Tunnerman 4 -01101010 Mikuni 4 -01101010 Buoy 4 -01101010 Kubik 4 -01101010 Montford 4 -01101010 Artis 4 -01101010 Barro 4 -01101010 Kazi 4 -01101010 Bunnell 4 -01101010 Helmer 4 -01101010 Walsworth 4 -01101010 Clearfield 4 -01101010 McCourt 4 -01101010 Troup 4 -01101010 Coffman 4 -01101010 Eakin 4 -01101010 Brackenbury 4 -01101010 Lunt 4 -01101010 Wauterlek 4 -01101010 Krystal 4 -01101010 Kitchener 4 -01101010 Ponder 4 -01101010 Mowery 4 -01101010 Dolson 4 -01101010 Francini 4 -01101010 Reins 4 -01101010 Moister 4 -01101010 Malis 4 -01101010 Tora 4 -01101010 Kano 4 -01101010 Cryer 4 -01101010 Depots 4 -01101010 Cresson 4 -01101010 Sturges 4 -01101010 Iwata 4 -01101010 Dorney 4 -01101010 Dillinger 4 -01101010 Heijn 4 -01101010 Gooding 4 -01101010 Remnant 4 -01101010 Wool 4 -01101010 Schwener 4 -01101010 Wit 4 -01101010 Luthy 4 -01101010 Donation 4 -01101010 Slaney 4 -01101010 McAuley 4 -01101010 Arp 4 -01101010 Ammann 4 -01101010 Justo 4 -01101010 Blush 4 -01101010 Linscott 4 -01101010 Plume 4 -01101010 Aliber 4 -01101010 Fasolino 4 -01101010 Produits 4 -01101010 Buckland 4 -01101010 Tourvel 4 -01101010 Checci 4 -01101010 Jaasund 4 -01101010 Megeath 4 -01101010 Sider 4 -01101010 Fuego 4 -01101010 Beckwith 4 -01101010 Nachman 4 -01101010 Eckardt 4 -01101010 Haywood 4 -01101010 Youngs 4 -01101010 Quijano 4 -01101010 Kravitz 4 -01101010 Foxcroft 4 -01101010 vivre 4 -01101010 Wickert 4 -01101010 Donlon 5 -01101010 tearfully 5 -01101010 Burrows 5 -01101010 McCowan 5 -01101010 Charron 5 -01101010 Bodman 5 -01101010 Blast 5 -01101010 Barter 5 -01101010 Baroody 5 -01101010 Bland 5 -01101010 DesRosiers 5 -01101010 Armaly 5 -01101010 Ladas 5 -01101010 Tenney 5 -01101010 Lagonda 5 -01101010 Breech 5 -01101010 Muffin 5 -01101010 Spacek 5 -01101010 Beacham 5 -01101010 Butters 5 -01101010 Hammon 5 -01101010 LaFollette 5 -01101010 Pillow 5 -01101010 Blackwood 5 -01101010 Mendell 5 -01101010 Cram 5 -01101010 Castel 5 -01101010 Gaspard 5 -01101010 Petronelli 5 -01101010 Martorell 5 -01101010 Ciotti 5 -01101010 Guittard 5 -01101010 Pompadour 5 -01101010 Lindblad 5 -01101010 Macey 5 -01101010 Adonis 5 -01101010 Beigel 5 -01101010 McAndrews 5 -01101010 LaBoon 5 -01101010 Dinerstein 5 -01101010 Tarlow 5 -01101010 Casas 5 -01101010 Starck 5 -01101010 Nutter 5 -01101010 Palle 5 -01101010 Pavin 5 -01101010 Caen 5 -01101010 Danieli 5 -01101010 Malevich 5 -01101010 Colson 5 -01101010 Bellman 5 -01101010 Nordeman 5 -01101010 Madlock 5 -01101010 Thomajan 5 -01101010 Ueltschi 5 -01101010 Curzon 5 -01101010 Norgle 5 -01101010 Criser 5 -01101010 Spungin 5 -01101010 Kreindler 5 -01101010 Breda 5 -01101010 Novotny 5 -01101010 Shankar 5 -01101010 Dragone 5 -01101010 Longo 5 -01101010 Gorgue 5 -01101010 Lair 5 -01101010 Iyad 5 -01101010 Beaulieu 5 -01101010 Steuber 5 -01101010 Twitty 5 -01101010 Boni 5 -01101010 Detergent 5 -01101010 Noto 5 -01101010 Altmann 5 -01101010 Dithers 5 -01101010 Murtaugh 5 -01101010 Taha 5 -01101010 Redfern 5 -01101010 Luo 5 -01101010 Fertig 5 -01101010 Heitman 5 -01101010 Malina 5 -01101010 Seitel 5 -01101010 Fratello 5 -01101010 Cord 5 -01101010 Arnett 5 -01101010 Cravens 5 -01101010 Reveal 5 -01101010 Sunley 5 -01101010 Valassis 5 -01101010 Nava 5 -01101010 Bittker 5 -01101010 Armas 5 -01101010 Prieto 5 -01101010 Ou 5 -01101010 Ulla 5 -01101010 Sharbaugh 5 -01101010 Ruys 5 -01101010 Winkle 5 -01101010 Kohan 5 -01101010 Baskind 5 -01101010 Vine 5 -01101010 Perret 5 -01101010 Chenier 5 -01101010 Fenn 5 -01101010 Bogen 5 -01101010 Stith 5 -01101010 Muto 5 -01101010 Lynton 5 -01101010 Eason 5 -01101010 Koons 5 -01101010 Investissement 5 -01101010 Ansary 5 -01101010 Threlkeld 5 -01101010 Flagg 5 -01101010 Clymer 5 -01101010 Gainer 5 -01101010 Grgich 5 -01101010 Nicolo 5 -01101010 Gandy 5 -01101010 Alfaro 5 -01101010 Maxfield 5 -01101010 Nozko 5 -01101010 Nourse 5 -01101010 Rosset 5 -01101010 Ettore 5 -01101010 Wigan 5 -01101010 Lerer 5 -01101010 Brashear 5 -01101010 Hals 5 -01101010 Kammer 5 -01101010 Pluto 5 -01101010 Proffitt 5 -01101010 DiBella 5 -01101010 Chatfield 5 -01101010 Bloomer 5 -01101010 Boole 5 -01101010 Semper 5 -01101010 Mandelbaum 5 -01101010 Beardsley 5 -01101010 Monti 5 -01101010 Enders 5 -01101010 Gambino 5 -01101010 McVay 5 -01101010 Scull 5 -01101010 Sewall 5 -01101010 Blau 5 -01101010 Gerstein 5 -01101010 Diver 5 -01101010 Loring 5 -01101010 Corse 5 -01101010 Shira 5 -01101010 Beaux 5 -01101010 Magid 5 -01101010 Astorg 5 -01101010 Davie 5 -01101010 Duffield 5 -01101010 Nara 5 -01101010 Daggett 5 -01101010 Tiriac 5 -01101010 Milam 5 -01101010 Renck 5 -01101010 Pohanka 5 -01101010 Medrano 5 -01101010 Albritton 5 -01101010 Hoar 5 -01101010 Ortenberg 5 -01101010 Fojon 5 -01101010 Tetley 5 -01101010 Sax 5 -01101010 Blinn 5 -01101010 Gato 5 -01101010 McGavock 5 -01101010 McDougal 5 -01101010 Gerstman 5 -01101010 Huth 5 -01101010 Dischner 5 -01101010 Okazaki 5 -01101010 Yokota 5 -01101010 Friede 5 -01101010 Matteson 5 -01101010 Stimson 5 -01101010 Reichstul 5 -01101010 Hennes 5 -01101010 Melisande 5 -01101010 Castleberry 5 -01101010 Bankert 5 -01101010 Canfield 5 -01101010 Mapes 5 -01101010 Yamagata 5 -01101010 Lipsey 5 -01101010 Morey 5 -01101010 Paden 5 -01101010 Aviacion 5 -01101010 Schoeman 5 -01101010 Gelson 5 -01101010 Murrell 5 -01101010 Whiteford 5 -01101010 Tarricone 5 -01101010 Hungerford 5 -01101010 Moulins 5 -01101010 Madeira 5 -01101010 Onegin 5 -01101010 Shen 5 -01101010 Populaire 5 -01101010 Porras 5 -01101010 Claypool 5 -01101010 Bohr 5 -01101010 Nelle 5 -01101010 Soll 5 -01101010 Harreld 5 -01101010 Florette 5 -01101010 Cenac 5 -01101010 Braden 5 -01101010 Fregosi 5 -01101010 Chapin 5 -01101010 Tillinghast 5 -01101010 Schnittker 5 -01101010 Fleckenstein 5 -01101010 MacIntyre 5 -01101010 Hirschfeld 5 -01101010 Shedd 5 -01101010 Gustaf 5 -01101010 Kinsey 5 -01101010 Fordyce 5 -01101010 Rados 5 -01101010 Moeller 5 -01101010 Tesa 5 -01101010 Baseman 5 -01101010 Schiele 5 -01101010 Lamberson 5 -01101010 Grigsby 5 -01101010 Dantley 5 -01101010 Davalillo 5 -01101010 Alvarado 5 -01101010 McGhee 5 -01101010 Andreu 5 -01101010 Abbin 5 -01101010 jure 5 -01101010 Mornet 5 -01101010 Fripp 5 -01101010 Weinert 5 -01101010 Ruger 5 -01101010 CROWTHER 5 -01101010 Nickell 5 -01101010 Chua 5 -01101010 Aquinas 5 -01101010 Purser 5 -01101010 Scher 5 -01101010 Maldonado 5 -01101010 V.M. 5 -01101010 Bankston 5 -01101010 DeCarlo 5 -01101010 Klauer 5 -01101010 Gurdian 5 -01101010 Normand 5 -01101010 Abbot 5 -01101010 Rausch 5 -01101010 Pininfarina 5 -01101010 Ballon 5 -01101010 DeMoss 5 -01101010 Kirshenbaum 5 -01101010 Lavelle 5 -01101010 Sonnabend 5 -01101010 Keeler 5 -01101010 Markoff 5 -01101010 Lowenfeld 5 -01101010 Baeyens 5 -01101010 Groat 5 -01101010 Telediffusion 5 -01101010 Ingels 5 -01101010 Pinon 5 -01101010 Ramseur 5 -01101010 Schlaifer 5 -01101010 Cassara 5 -01101010 Kiner 5 -01101010 Santini 6 -01101010 Groom 6 -01101010 Bucknell 6 -01101010 Darin 6 -01101010 Runnells 6 -01101010 Angle 6 -01101010 Carry 6 -01101010 Torresi 6 -01101010 Kinard 6 -01101010 Bien 6 -01101010 Louie 6 -01101010 Vanier 6 -01101010 Koussevitzky 6 -01101010 Gofman 6 -01101010 Pervez 6 -01101010 Tenzer 6 -01101010 Certilman 6 -01101010 Heilbronner 6 -01101010 Fuentes 6 -01101010 Espiritu 6 -01101010 Herbst 6 -01101010 Fer 6 -01101010 Laporte 6 -01101010 Chernoff 6 -01101010 Devaney 6 -01101010 Casco 6 -01101010 Vitry 6 -01101010 Starks 6 -01101010 Clapper 6 -01101010 Woodhead 6 -01101010 Bleichroeder 6 -01101010 Neale 6 -01101010 Beswick 6 -01101010 Din 6 -01101010 Colangelo 6 -01101010 Heap 6 -01101010 Heilman 6 -01101010 Crittenden 6 -01101010 Aoyama 6 -01101010 Lemont 6 -01101010 Bavaro 6 -01101010 Beal 6 -01101010 Lamounier 6 -01101010 Ghazala 6 -01101010 Gregson 6 -01101010 Robard 6 -01101010 Linney 6 -01101010 Kester 6 -01101010 Sudek 6 -01101010 Plaster 6 -01101010 Krone 6 -01101010 Agate 6 -01101010 Eugen 6 -01101010 Piniella 6 -01101010 Stedman 6 -01101010 Wissmann 6 -01101010 Miura 6 -01101010 Avignon 6 -01101010 Tenenbaum 6 -01101010 Takenaka 6 -01101010 Cattolica 6 -01101010 Cella 6 -01101010 Sakong 6 -01101010 Noyes 6 -01101010 Munching 6 -01101010 Landsburg 6 -01101010 Hollister 6 -01101010 Drury 6 -01101010 Kamber 6 -01101010 Rhoden 6 -01101010 Alesia 6 -01101010 Sturdivant 6 -01101010 Reichenbach 6 -01101010 Lumsden 6 -01101010 Sutliff 6 -01101010 Tarr 6 -01101010 McIlhenny 6 -01101010 Micheletti 6 -01101010 Neumeier 6 -01101010 Tripple 6 -01101010 Holcomb 6 -01101010 Balmain 6 -01101010 Kettle 6 -01101010 Jennison 6 -01101010 Overlock 6 -01101010 Worthy 6 -01101010 Satnick 6 -01101010 Henriksen 6 -01101010 Ferrier 6 -01101010 Dovydenas 6 -01101010 Seuss 6 -01101010 Gladney 6 -01101010 McLarty 6 -01101010 Hotchkiss 6 -01101010 Barnhill 6 -01101010 Spectre 6 -01101010 Hartpence 6 -01101010 Aden 6 -01101010 Reso 6 -01101010 Adair 6 -01101010 Kearny 6 -01101010 Kerouac 6 -01101010 Tish 6 -01101010 Henze 6 -01101010 Sklar 6 -01101010 Bergstrom 6 -01101010 Yeung 6 -01101010 Redd 6 -01101010 Pagoda 6 -01101010 Wilberforce 6 -01101010 Seung 6 -01101010 Farrer 6 -01101010 Lavender 6 -01101010 Korenman 6 -01101010 Kahler 6 -01101010 Errant 6 -01101010 Thi 6 -01101010 Wein 6 -01101010 Beltran 6 -01101010 Battista 6 -01101010 Zoeller 6 -01101010 Mandabach 6 -01101010 Waterous 6 -01101010 Desgagne 6 -01101010 Geremia 6 -01101010 Allegra 6 -01101010 Noam 6 -01101010 Zaid 6 -01101010 Blizzard 6 -01101010 Ruggles 6 -01101010 Perls 6 -01101010 Nielson 6 -01101010 Lux 6 -01101010 Renwick 6 -01101010 Wren 6 -01101010 Staats 6 -01101010 Barrymore 6 -01101010 Wechsler 6 -01101010 Osterman 6 -01101010 Roque 6 -01101010 MARTINI 6 -01101010 Stool 6 -01101010 Anselmo 6 -01101010 Forney 6 -01101010 Miyamoto 6 -01101010 Maurier 6 -01101010 Hutchings 6 -01101010 Raby 6 -01101010 Offerman 6 -01101010 LeFlore 6 -01101010 Ellery 6 -01101010 Bollinger 6 -01101010 Scharfe 6 -01101010 Bernfeld 6 -01101010 Nissen 6 -01101010 Hiland 6 -01101010 Cecchi 6 -01101010 Gubitosi 6 -01101010 Gibbon 6 -01101010 Luckie 6 -01101010 Steingut 6 -01101010 Dyk 6 -01101010 Mumm 6 -01101010 Pepin 6 -01101010 Schacht 6 -01101010 Elkin 6 -01101010 Piaf 6 -01101010 Starbuck 6 -01101010 Laub 6 -01101010 Dimplex 6 -01101010 Blackford 6 -01101010 Silberberg 6 -01101010 Overton 6 -01101010 Flutie 6 -01101010 Garst 6 -01101010 Bergerac 6 -01101010 Paternoster 6 -01101010 Stockhausen 6 -01101010 Navarre 6 -01101010 Feliciano 6 -01101010 Tolley 6 -01101010 Seurat 6 -01101010 Este 6 -01101010 Kerbs 6 -01101010 Coren 6 -01101010 Chipman 6 -01101010 Biagi 6 -01101010 Dorman 6 -01101010 Baines 6 -01101010 Olivares 6 -01101010 Michelman 6 -01101010 Partridge 6 -01101010 Linster 6 -01101010 Gertner 6 -01101010 Maddux 6 -01101010 Doron 6 -01101010 Parodi 6 -01101010 Remick 6 -01101010 Cleef 6 -01101010 Komer 6 -01101010 Rosenbluth 6 -01101010 Hage 6 -01101010 Cuneo 6 -01101010 Murchison 7 -01101010 Braman 7 -01101010 Iida 7 -01101010 Benziger 7 -01101010 Religione 7 -01101010 Gilson 7 -01101010 Wirtz 7 -01101010 Yeo 7 -01101010 Mounds 7 -01101010 Woolley 7 -01101010 Peeples 7 -01101010 Gandolfo 7 -01101010 Thrush 7 -01101010 Friedel 7 -01101010 Kazempour 7 -01101010 Verwoerd 7 -01101010 Heywood 7 -01101010 Zeiss 7 -01101010 Beecher 7 -01101010 Neu 7 -01101010 Nystrom 7 -01101010 Weitzen 7 -01101010 Transports 7 -01101010 Pordy 7 -01101010 Toshiharu 7 -01101010 Bramah 7 -01101010 Otterloo 7 -01101010 Hussain 7 -01101010 Kornhauser 7 -01101010 Cioffi 7 -01101010 Pascoe 7 -01101010 Tsiang 7 -01101010 Boomer 7 -01101010 Uemura 7 -01101010 Keever 7 -01101010 Bernhardt 7 -01101010 Yap 7 -01101010 Newbold 7 -01101010 Naify 7 -01101010 Plumb 7 -01101010 Halle 7 -01101010 Demmer 7 -01101010 Breneman 7 -01101010 Mok 7 -01101010 Strangis 7 -01101010 duPont 7 -01101010 Farwell 7 -01101010 Bibby 7 -01101010 Grossfeld 7 -01101010 Zukin 7 -01101010 Corum 7 -01101010 Hempel 7 -01101010 Mapplethorpe 7 -01101010 Romann 7 -01101010 Mang 7 -01101010 Doak 7 -01101010 Alafi 7 -01101010 Mayne 7 -01101010 McCown 7 -01101010 Marker 7 -01101010 Kampschulte 7 -01101010 Nordin 7 -01101010 Gagne 7 -01101010 Rojas 7 -01101010 Halleck 7 -01101010 McCrary 7 -01101010 Chilcott 7 -01101010 Danis 7 -01101010 Schwerdloff 7 -01101010 Pepper/Seven-Up 7 -01101010 Culpepper 7 -01101010 Correll 7 -01101010 Hopson 7 -01101010 Scales 7 -01101010 Curcio 7 -01101010 Geer 7 -01101010 Unitas 7 -01101010 Safford 7 -01101010 Bonilla 7 -01101010 Furash 7 -01101010 Sickle 7 -01101010 McLain 7 -01101010 Alper 7 -01101010 Rah 7 -01101010 Wilke 7 -01101010 Moloney 7 -01101010 Jana 7 -01101010 Latchford 7 -01101010 Byner 7 -01101010 Nationales 7 -01101010 Snively 7 -01101010 Aigner 7 -01101010 Genova 7 -01101010 Sauey 7 -01101010 Jarman 7 -01101010 Whittenburg 7 -01101010 Cantrell 7 -01101010 Brandes 7 -01101010 Liebling 7 -01101010 Fenno 7 -01101010 Testa 7 -01101010 siecle 7 -01101010 Maki 7 -01101010 Dub 7 -01101010 Graziano 7 -01101010 Baliles 7 -01101010 Llewellyn 7 -01101010 Dellinger 7 -01101010 Linkletter 7 -01101010 Johansen 7 -01101010 Urfer 7 -01101010 Eames 7 -01101010 Kaltman 7 -01101010 Jernigan 7 -01101010 Bakewell 7 -01101010 Pruitt 7 -01101010 Shenkman 7 -01101010 Rennie 7 -01101010 Storey 7 -01101010 Toscanini 7 -01101010 Schanbacher 7 -01101010 Pring 7 -01101010 Nicholls 7 -01101010 Horsley 7 -01101010 Shure 7 -01101010 Selim 7 -01101010 Bevan 7 -01101010 MacLean 7 -01101010 Laney 7 -01101010 Gently 7 -01101010 Coyle 7 -01101010 Baram 7 -01101010 Dull 7 -01101010 Baca 7 -01101010 Tobe 7 -01101010 Schuh 7 -01101010 Pear 7 -01101010 Mischer 7 -01101010 HALL 7 -01101010 Stalker 7 -01101010 Poplin 7 -01101010 Sandom 7 -01101010 DuBose 7 -01101010 Confindustria 7 -01101010 Creed 7 -01101010 Bare 7 -01101010 Greiff 7 -01101010 McKittrick 7 -01101010 Kwon 7 -01101010 Northrup 7 -01101010 Pembroke 7 -01101010 Urstadt 7 -01101010 Flinn 7 -01101010 Prager 7 -01101010 Echenberg 7 -01101010 Pang 7 -01101010 Jovi 7 -01101010 Jamison 7 -01101010 Lafontant 7 -01101010 Galef 7 -01101010 Stipanovich 7 -01101010 Shortcake 7 -01101010 Ondaatje 7 -01101010 Hass 7 -01101010 Tomczak 7 -01101010 Fogler 7 -01101010 Lorenz 8 -01101010 Renton 8 -01101010 Murata 8 -01101010 Matson 8 -01101010 Cointreau 8 -01101010 Procassini 8 -01101010 Schoonover 8 -01101010 Amore 8 -01101010 Malt 8 -01101010 Ignatius 8 -01101010 Morgenthaler 8 -01101010 Zorinsky 8 -01101010 Haupt 8 -01101010 Mull 8 -01101010 Hostetler 8 -01101010 Chia 8 -01101010 Mound 8 -01101010 Dickler 8 -01101010 Sano 8 -01101010 Marcum 8 -01101010 Berglund 8 -01101010 Heffernan 8 -01101010 Clift 8 -01101010 Harden 8 -01101010 Conaway 8 -01101010 Dye 8 -01101010 Pennie 8 -01101010 Kittredge 8 -01101010 Barbour 8 -01101010 Mercier 8 -01101010 Jaffar 8 -01101010 Sarich 8 -01101010 Simonds 8 -01101010 Lanktree 8 -01101010 Layman 8 -01101010 Battin 8 -01101010 Israeloff 8 -01101010 McMullen 8 -01101010 Vale 8 -01101010 Hannan 8 -01101010 Plas 8 -01101010 Martel 8 -01101010 Marsal 8 -01101010 Bogdan 8 -01101010 Bortz 8 -01101010 Vladeck 8 -01101010 Raynes 8 -01101010 Ratzinger 8 -01101010 Dorrit 8 -01101010 Daseke 8 -01101010 Investimento 8 -01101010 Barthes 8 -01101010 Humphreys 8 -01101010 Heldring 8 -01101010 Chambliss 8 -01101010 Reddy 8 -01101010 Hilb 8 -01101010 Grandy 8 -01101010 Achenbaum 8 -01101010 Hovnanian 8 -01101010 Sandford 8 -01101010 Nipper 8 -01101010 Brener 8 -01101010 Pressman 8 -01101010 Bicknell 8 -01101010 Matlack 8 -01101010 Godine 8 -01101010 Cambria 8 -01101010 Stamm 8 -01101010 Nickerson 8 -01101010 Becket 8 -01101010 Deux 8 -01101010 Costas 8 -01101010 Gambill 8 -01101010 Smithers 8 -01101010 Sim 8 -01101010 Marlow 8 -01101010 Berrien 8 -01101010 Curl 8 -01101010 Fogarty 8 -01101010 Reaves 8 -01101010 Donohoe 8 -01101010 Cha 8 -01101010 Cobre 8 -01101010 Genet 8 -01101010 Colebrook 8 -01101010 Troupe 8 -01101010 Araujo 8 -01101010 Bowls 8 -01101010 Farman 8 -01101010 Garbo 8 -01101010 Bathurst 8 -01101010 McAdams 8 -01101010 Spanos 8 -01101010 Kasai 8 -01101010 Gorguze 8 -01101010 Pierpoint 8 -01101010 Addicks 8 -01101010 Brookstone 8 -01101010 Cuadra 8 -01101010 Galbreath 8 -01101010 Seybold 8 -01101010 Janssen 8 -01101010 Fultz 8 -01101010 Peel 8 -01101010 Aran 8 -01101010 Kayser 8 -01101010 Auld 8 -01101010 Dunwoody 8 -01101010 Fleck 8 -01101010 Fribourg 8 -01101010 Petrossian 8 -01101010 Longfellow 8 -01101010 Moulin 8 -01101010 Rimson 8 -01101010 Fellowes 8 -01101010 Norske 8 -01101010 Steinhart 8 -01101010 Christman 8 -01101010 Switzer 8 -01101010 Taher 8 -01101010 Underhill 8 -01101010 Fenwick 8 -01101010 Manatt 8 -01101010 Soong 8 -01101010 Castelli 8 -01101010 Bellamy 8 -01101010 Halm 8 -01101010 Forshan 8 -01101010 Cullman 8 -01101010 Donato 8 -01101010 Hansel 8 -01101010 Hickel 8 -01101010 Knorr 8 -01101010 Curtiss 8 -01101010 Mizel 8 -01101010 MarketScope 8 -01101010 Clendenin 8 -01101010 Noll 8 -01101010 Flinchbaugh 8 -01101010 Goodkin 8 -01101010 Konner 8 -01101010 Tome 8 -01101010 Wehle 8 -01101010 Ragsdale 8 -01101010 Riady 8 -01101010 Moll 8 -01101010 Fichtel 8 -01101010 Edmundson 8 -01101010 Goldring 8 -01101010 Valiant 9 -01101010 Binney 9 -01101010 Basile 9 -01101010 Ashby 9 -01101010 Descartes 9 -01101010 Siang 9 -01101010 Cardozo 9 -01101010 McGuinness 9 -01101010 Maciel 9 -01101010 Diehl 9 -01101010 Alford 9 -01101010 Tennyson 9 -01101010 Bellingham 9 -01101010 Kobacker 9 -01101010 Makin 9 -01101010 Godsell 9 -01101010 Carbone 9 -01101010 Caron 9 -01101010 Stillman 9 -01101010 Rha 9 -01101010 Wendel 9 -01101010 Safer 9 -01101010 Leger 9 -01101010 Geary 9 -01101010 Sweeny 9 -01101010 Plunkett 9 -01101010 es 9 -01101010 Lowrey 9 -01101010 Welland 9 -01101010 Concepcion 9 -01101010 Brice 9 -01101010 Tenuta 9 -01101010 Thumb 9 -01101010 Counts 9 -01101010 Yeats 9 -01101010 Sweat 9 -01101010 Moen 9 -01101010 Sauer 9 -01101010 Valores 9 -01101010 Tran 9 -01101010 Ave 9 -01101010 Givenchy 9 -01101010 Pina 9 -01101010 Whitworth 9 -01101010 Udell 9 -01101010 Lipp 9 -01101010 Rosenbach 9 -01101010 Mudd 9 -01101010 Thorpe 9 -01101010 Wilkerson 9 -01101010 Shanken 9 -01101010 Sacco 9 -01101010 Herron 9 -01101010 Laboratoires 9 -01101010 Oro 9 -01101010 Safian 9 -01101010 Osmond 9 -01101010 Barreiro 9 -01101010 Constable 9 -01101010 Gasper 9 -01101010 Chin 9 -01101010 Lust 9 -01101010 Devin 9 -01101010 Bezaire 9 -01101010 Fujita 9 -01101010 Cabana 9 -01101010 Marelli 9 -01101010 Styron 9 -01101010 Siracusa 9 -01101010 Lander 9 -01101010 Flack 9 -01101010 Kurth 9 -01101010 Coulter 9 -01101010 Litwin 9 -01101010 Ragan 9 -01101010 Merriam 9 -01101010 Grundy 9 -01101010 Spelman 9 -01101010 Ruston 9 -01101010 Murai 9 -01101010 Kloster 9 -01101010 Pittsford 9 -01101010 Binion 9 -01101010 Feschbach 9 -01101010 Vest 9 -01101010 Gaucher 9 -01101010 Wentworth 9 -01101010 Earhart 9 -01101010 Garros 9 -01101010 Waring 9 -01101010 Alston 9 -01101010 Hitch 9 -01101010 Linsey 9 -01101010 VNU 9 -01101010 Suk 9 -01101010 Lentz 9 -01101010 Flaxman 9 -01101010 Viola 9 -01101010 Griesemer 9 -01101010 Fines 9 -01101010 Ponte 9 -01101010 Cordes 9 -01101010 Windecker 9 -01101010 Madsen 9 -01101010 Lessin 9 -01101010 Frederickson 9 -01101010 Dines 9 -01101010 Jaw 9 -01101010 Larco 9 -01101010 Taub 9 -01101010 SerVaas 9 -01101010 Liddle 10 -01101010 Daoud 10 -01101010 Radler 10 -01101010 Volz 10 -01101010 Krock 10 -01101010 Bolduc 10 -01101010 Burch 10 -01101010 Stoops 10 -01101010 Schorr 10 -01101010 Canaday 10 -01101010 Fadlallah 10 -01101010 Olick 10 -01101010 Burkhart 10 -01101010 Nagy 10 -01101010 Colwell 10 -01101010 Athey 10 -01101010 Trotter 10 -01101010 Schueler 10 -01101010 Stockbridge 10 -01101010 Merriman 10 -01101010 Lanza 10 -01101010 Giuliano 10 -01101010 Harwell 10 -01101010 Nieman 10 -01101010 Eagan 10 -01101010 Meech 10 -01101010 Hallett 10 -01101010 Jorgensen 10 -01101010 Allest 10 -01101010 Phipps 10 -01101010 Sheng 10 -01101010 Yancey 10 -01101010 Walker-Gooderham 10 -01101010 Klass 10 -01101010 Husic 10 -01101010 Aragon 10 -01101010 Gunzberg 10 -01101010 Schlemmer 10 -01101010 Sams 10 -01101010 Erb 10 -01101010 Fortuna 10 -01101010 Ridgway 10 -01101010 Haldeman 10 -01101010 Boylan 10 -01101010 Chauncey 10 -01101010 Desjardins 10 -01101010 Meng 10 -01101010 Yue 10 -01101010 Sabo 10 -01101010 LaCrosse 10 -01101010 Himmelfarb 10 -01101010 Genco 10 -01101010 Goss 10 -01101010 Goldenberg 10 -01101010 Hebert 10 -01101010 Garnet 10 -01101010 Dubois 10 -01101010 Squire 10 -01101010 Potamkin 10 -01101010 Marvell 10 -01101010 Rinaldo 10 -01101010 Wilkes 10 -01101010 McNiff 10 -01101010 Taper 10 -01101010 Karami 10 -01101010 Sinay 10 -01101010 Vickery 10 -01101010 Tomb 10 -01101010 Conover 10 -01101010 Zellers 10 -01101010 Beekman 10 -01101010 Elio 10 -01101010 Merkin 10 -01101010 Fischel 10 -01101010 Galesi 10 -01101010 Seigel 10 -01101010 Linen 10 -01101010 Buchan 10 -01101010 McEwen 10 -01101010 Stonehill 10 -01101010 Cope 10 -01101010 Hooch 10 -01101010 coli 10 -01101010 Haggard 10 -01101010 Vardon 10 -01101010 Brainard 10 -01101010 Mendlowitz 10 -01101010 Callaway 10 -01101010 Fennell 10 -01101010 Jekyll 10 -01101010 Fido 10 -01101010 Hogue 10 -01101010 Helfer 10 -01101010 Aubert 10 -01101010 Moller 10 -01101010 Greenhill 10 -01101010 Leicester 10 -01101010 Schlott 10 -01101010 Wight 10 -01101010 Heier 10 -01101010 Castaneda 11 -01101010 Ai 11 -01101010 Bremner 11 -01101010 MacNamara 11 -01101010 Kersee 11 -01101010 Bowler 11 -01101010 Reeder 11 -01101010 Raboy 11 -01101010 Bias 11 -01101010 Connelly 11 -01101010 McCarron 11 -01101010 Rains 11 -01101010 Hadid 11 -01101010 Stocker 11 -01101010 Langston 11 -01101010 Uhlmann 11 -01101010 Riggings 11 -01101010 Nakajima 11 -01101010 Hembrick 11 -01101010 Keats 11 -01101010 Collider 11 -01101010 Imlay 11 -01101010 Studley 11 -01101010 Nicklin 11 -01101010 Reade 11 -01101010 Middendorf 11 -01101010 Caro 11 -01101010 Marbury 11 -01101010 Sewell 11 -01101010 Tokuyama 11 -01101010 Rea 11 -01101010 Sonnenblick 11 -01101010 Doom 11 -01101010 Rashid 11 -01101010 Keeney 11 -01101010 Mulholland 11 -01101010 Lawless 11 -01101010 Schmid 11 -01101010 Kayne 11 -01101010 Feather 11 -01101010 Coles 11 -01101010 Boaz 11 -01101010 Jolley 11 -01101010 Ouimet 11 -01101010 Dann 11 -01101010 Oaxaca 11 -01101010 Joost 11 -01101010 Estrella 11 -01101010 Hester 11 -01101010 Doner 11 -01101010 Winder 11 -01101010 Cabezas 11 -01101010 Beni 11 -01101010 Jaffa 11 -01101010 7Up 11 -01101010 Curry 11 -01101010 Pompidou 11 -01101010 Massa 11 -01101010 Loudon 11 -01101010 Danner 11 -01101010 Tama 11 -01101010 Cowart 11 -01101010 Yung 11 -01101010 Erlich 11 -01101010 Shook 11 -01101010 Clowes 11 -01101010 Ogilvie 11 -01101010 Alberts 11 -01101010 Bem 11 -01101010 Boll 11 -01101010 Simplot 11 -01101010 Hoffmann-LaRoche 11 -01101010 Alcott 11 -01101010 Blythe 11 -01101010 Faithful 11 -01101010 Hoy 11 -01101010 Currier 11 -01101010 Vida 11 -01101010 Duque 11 -01101010 Tull 11 -01101010 Sharif 11 -01101010 Disraeli 11 -01101010 Coffin 11 -01101010 Grantham 11 -01101010 Harkins 11 -01101010 Dall 11 -01101010 Villagran 11 -01101010 Amster 11 -01101010 Raley 11 -01101010 Monks 11 -01101010 Folsom 11 -01101010 Marquardt 11 -01101010 Heizer 11 -01101010 Mattson 11 -01101010 Bolsa 11 -01101010 Wiesner 11 -01101010 Layne 11 -01101010 Heber 11 -01101010 Harrell 11 -01101010 Bickel 11 -01101010 Gaynor 11 -01101010 Neilson 11 -01101010 Littlejohn 11 -01101010 Porto 11 -01101010 Sacher 11 -01101010 Perrone 11 -01101010 Lancz 11 -01101010 Schottenstein 11 -01101010 Hausman 11 -01101010 Atherton 11 -01101010 Gower 12 -01101010 Baskin 12 -01101010 Kekst 12 -01101010 Settle 12 -01101010 Dotson 12 -01101010 Saud 12 -01101010 Gant 12 -01101010 McHale 12 -01101010 Hamby 12 -01101010 Orland 12 -01101010 Dickstein 12 -01101010 Badger 12 -01101010 Eggert 12 -01101010 Wintzer 12 -01101010 Parris 12 -01101010 Bethune 12 -01101010 Holley 12 -01101010 Chisholm 12 -01101010 Turismo 12 -01101010 Kamen 12 -01101010 Beauce 12 -01101010 Reis 12 -01101010 Vonnegut 12 -01101010 Clapham 12 -01101010 Moorhead 12 -01101010 Bernal 12 -01101010 Harbin 12 -01101010 Althaver 12 -01101010 Lacoste 12 -01101010 Gluskin 12 -01101010 Napoli 12 -01101010 McCarter 12 -01101010 Detwiler 12 -01101010 Lombardo 12 -01101010 Hacker 12 -01101010 Ayres 12 -01101010 Dakin 12 -01101010 Farrow 12 -01101010 Peebles 12 -01101010 Dey 12 -01101010 Musburger 12 -01101010 Berkoff 12 -01101010 Etude 12 -01101010 Cowper 12 -01101010 Schein 12 -01101010 Burpee 12 -01101010 Bennington 12 -01101010 Tomlinson 12 -01101010 McArthur 12 -01101010 Delfin 12 -01101010 Cumming 12 -01101010 Finks 12 -01101010 Garde 12 -01101010 Nad 12 -01101010 Zola 12 -01101010 Hartwell 12 -01101010 Richey 12 -01101010 Proud 12 -01101010 Smucker 12 -01101010 Linowes 12 -01101010 Sakata 12 -01101010 Gurtz 12 -01101010 Keen 12 -01101010 Dyer 12 -01101010 Crump 12 -01101010 Borger 12 -01101010 Karan 12 -01101010 Gershon 12 -01101010 Yan 12 -01101010 Spaulding 12 -01101010 Trainer 12 -01101010 Parrish 12 -01101010 Blackmore 12 -01101010 Huffman 12 -01101010 Willms 12 -01101010 Finnegan 12 -01101010 Cortez 12 -01101010 Driehaus 12 -01101010 Greenspon 12 -01101010 Kostmayer 13 -01101010 Lindbergh 13 -01101010 Fukuoka 13 -01101010 Hummel 13 -01101010 Ando 13 -01101010 Robles 13 -01101010 Lindberg 13 -01101010 Korczak 13 -01101010 Lally 13 -01101010 Hoffer 13 -01101010 Jahr 13 -01101010 Torino 13 -01101010 Windels 13 -01101010 Stovall 13 -01101010 Kingsbury 13 -01101010 Karlin 13 -01101010 Spangler 13 -01101010 Renfrew 13 -01101010 Hawken 13 -01101010 Zeller 13 -01101010 Jenner 13 -01101010 Saxton 13 -01101010 Sammons 13 -01101010 Plank 13 -01101010 Mintz 13 -01101010 Cushing 13 -01101010 Kamm 13 -01101010 Kant 13 -01101010 Simonsen 13 -01101010 Tilley 13 -01101010 Wicker 13 -01101010 Paxton 13 -01101010 Maxx 13 -01101010 Slifer 13 -01101010 Kahane 13 -01101010 Barone 13 -01101010 Hoag 13 -01101010 Thurber 13 -01101010 Congdon 13 -01101010 Bernardin 13 -01101010 Samara 13 -01101010 Magoon 13 -01101010 Yoon 13 -01101010 Mathers 13 -01101010 Maitland 13 -01101010 Rainey 13 -01101010 Malek 13 -01101010 Xiong 13 -01101010 Mawr 13 -01101010 Ghafar 13 -01101010 Hannes 13 -01101010 Prem 13 -01101010 FAIRFAX 13 -01101010 Worms 13 -01101010 Industria 13 -01101010 Malkin 13 -01101010 Shattuck 13 -01101010 Hilliard 13 -01101010 Scurlock 13 -01101010 Solana 13 -01101010 Slatkin 13 -01101010 Brownell 13 -01101010 Denman 13 -01101010 Merlo 13 -01101010 Humphries 13 -01101010 Picker 13 -01101010 Zink 14 -01101010 Woolf 14 -01101010 Erskine 14 -01101010 Derry 14 -01101010 Diddy 14 -01101010 Mosher 14 -01101010 Antonovich 14 -01101010 Yquem 14 -01101010 McMaster 14 -01101010 Glatfelter 14 -01101010 Investissements 14 -01101010 Creamer 14 -01101010 Howden 14 -01101010 Frantz 14 -01101010 Karon 14 -01101010 Vu 14 -01101010 Tatum 14 -01101010 Layton 14 -01101010 Estrin 14 -01101010 Glad 14 -01101010 C.V. 14 -01101010 Gut 14 -01101010 Thies 14 -01101010 Amory 14 -01101010 Mingo 14 -01101010 Malan 14 -01101010 Rinker 14 -01101010 Dolphin 14 -01101010 Teel 14 -01101010 Santangelo 14 -01101010 Fredrikson 14 -01101010 Rawson 14 -01101010 Rama 14 -01101010 Stott 14 -01101010 Humes 14 -01101010 Macheski 14 -01101010 Rein 14 -01101010 Sanger 14 -01101010 Landauer 14 -01101010 Naisbitt 14 -01101010 Maritz 14 -01101010 Zheng 14 -01101010 Cundill 14 -01101010 Stolper 14 -01101010 Greenman 14 -01101010 Planck 14 -01101010 Conant 14 -01101010 Eichner 14 -01101010 Ville 14 -01101010 Sroge 14 -01101010 Dumas 14 -01101010 Messinger 14 -01101010 Fenimore 14 -01101010 Jolly 14 -01101010 Turing 14 -01101010 Kassel 14 -01101010 Traver 14 -01101010 Claytor 14 -01101010 Allbritton 14 -01101010 Armen 14 -01101010 Luna 14 -01101010 Wheaton 14 -01101010 Lieb 14 -01101010 Goebbels 14 -01101010 Rhein 14 -01101010 Barrio 15 -01101010 Rocha 15 -01101010 Looney 15 -01101010 Inoue 15 -01101010 MacNeil 15 -01101010 Feder 15 -01101010 Shrum 15 -01101010 Moose 15 -01101010 Erensel 15 -01101010 Sutcliffe 15 -01101010 Wilber 15 -01101010 Pforzheimer 15 -01101010 Chagall 15 -01101010 Finlay 15 -01101010 Salick 15 -01101010 Langdon 15 -01101010 Campo 15 -01101010 Gilmore 15 -01101010 Lederer 15 -01101010 Hershiser 15 -01101010 Wilmot 15 -01101010 Roulac 15 -01101010 Milano 15 -01101010 Puth 15 -01101010 Dickel 15 -01101010 Haight 15 -01101010 Leuthold 15 -01101010 Robson 15 -01101010 Tait 15 -01101010 Bendel 15 -01101010 Judson 15 -01101010 Bachelor 15 -01101010 Eckerd 15 -01101010 Vasquez 15 -01101010 Burrus 15 -01101010 Rosenzweig 15 -01101010 Maas 15 -01101010 Haines 15 -01101010 Slaughter 15 -01101010 Garrick 15 -01101010 Lockhart 15 -01101010 Durkin 15 -01101010 Fujii 15 -01101010 Dai 15 -01101010 Soledad 15 -01101010 Blyth 15 -01101010 Foy 15 -01101010 Lobo 15 -01101010 Darden 15 -01101010 Nance 15 -01101010 Ching 15 -01101010 Bukharin 15 -01101010 Belushi 15 -01101010 Evin 15 -01101010 Mallory 15 -01101010 Pye 15 -01101010 Hadden 15 -01101010 Seitman 15 -01101010 Gentry 15 -01101010 Stutz 15 -01101010 Darrow 15 -01101010 Leighton 15 -01101010 Zack 16 -01101010 Brest 16 -01101010 Dong 16 -01101010 Halpern 16 -01101010 Timmons 16 -01101010 Lai 16 -01101010 Nipon 16 -01101010 Brierly 16 -01101010 Piet 16 -01101010 Hussman 16 -01101010 Glemp 16 -01101010 Nightingale 16 -01101010 Steffen 16 -01101010 Sack 16 -01101010 Monash 16 -01101010 Sousa 16 -01101010 Welk 16 -01101010 Keithley 16 -01101010 Lemons 16 -01101010 Strober 16 -01101010 Lardner 16 -01101010 Ditka 16 -01101010 Clapton 16 -01101010 Shimer 16 -01101010 Sackler 16 -01101010 Baba 16 -01101010 Belcher 16 -01101010 Blocks 16 -01101010 Gottfried 16 -01101010 Chao 16 -01101010 Rhoades 16 -01101010 Perron 16 -01101010 Berrie 16 -01101010 Duran 16 -01101010 Einbender 16 -01101010 Bobo 16 -01101010 Hertel 16 -01101010 Samelson 16 -01101010 Inglis 16 -01101010 Orsay 16 -01101010 Murrow 16 -01101010 Crames 16 -01101010 Loop 16 -01101010 Lahey 16 -01101010 Medley 16 -01101010 Colon 16 -01101010 Ballesteros 16 -01101010 Wortham 16 -01101010 Marciano 16 -01101010 Sebastiani 16 -01101010 Broyhill 16 -01101010 Bliss 16 -01101010 Eickhoff 16 -01101010 Vanunu 16 -01101010 Kania 16 -01101010 Drill 16 -01101010 Ailey 16 -01101010 Goldie 16 -01101010 Lieber 16 -01101010 Conran 16 -01101010 Hegel 16 -01101010 Buffet 17 -01101010 Musavi 17 -01101010 Crockett 17 -01101010 Salwen 17 -01101010 Juster 17 -01101010 Homans 17 -01101010 Hammett 17 -01101010 Koon 17 -01101010 Dunbar 17 -01101010 Pena 17 -01101010 Walpole 17 -01101010 Evert 17 -01101010 Mas 17 -01101010 Innes 17 -01101010 Burrell 17 -01101010 Giannini 17 -01101010 Brubaker 17 -01101010 Javits 17 -01101010 Hummer 17 -01101010 Pardo 17 -01101010 Sakowitz 17 -01101010 Fahmy 17 -01101010 Steinbeck 17 -01101010 Estes 17 -01101010 Thierry 17 -01101010 Mendel 17 -01101010 Gnau 17 -01101010 Denby 17 -01101010 Herr 17 -01101010 Donde 17 -01101010 Pagan 17 -01101010 Hageman 17 -01101010 Clout 17 -01101010 Sevin 17 -01101010 Okada 17 -01101010 Brainerd 17 -01101010 McDaniel 17 -01101010 Chiat 17 -01101010 Kurz 17 -01101010 Wooten 17 -01101010 Patricof 17 -01101010 Vinci 17 -01101010 Spoon 17 -01101010 Reedy 17 -01101010 Frazer 17 -01101010 McElroy 17 -01101010 Keeley 17 -01101010 Southgate 17 -01101010 Huxtable 17 -01101010 Tocqueville 17 -01101010 Almond 17 -01101010 Burkhardt 17 -01101010 Martineau 17 -01101010 Stanislaw 17 -01101010 Greco 17 -01101010 Bristow 18 -01101010 Zhu 18 -01101010 Dominus 18 -01101010 Vries 18 -01101010 Gantos 18 -01101010 Winner 18 -01101010 Lilley 18 -01101010 Drummond 18 -01101010 Hop 18 -01101010 Messel 18 -01101010 Alter 18 -01101010 Macomber 18 -01101010 Schnitzler 18 -01101010 Deane 18 -01101010 Lebenthal 18 -01101010 Halas 18 -01101010 Payson 18 -01101010 Doran 18 -01101010 Grandpre 18 -01101010 Lager 18 -01101010 Suarez 18 -01101010 Tatu 18 -01101010 Holmberg 18 -01101010 Cutter 18 -01101010 Proust 18 -01101010 Prey 18 -01101010 Marsden 18 -01101010 Vila 18 -01101010 Lehner 18 -01101010 Padilla 18 -01101010 Lasorda 18 -01101010 Etudes 18 -01101010 Andropov 18 -01101010 Wrightson 18 -01101010 Painter 18 -01101010 Holden 18 -01101010 Huffington 18 -01101010 Biko 18 -01101010 Sabin 18 -01101010 Whiting 18 -01101010 Eriksson 18 -01101010 Walther 18 -01101010 Joyner-Kersee 18 -01101010 Cozad 18 -01101010 Kwong 18 -01101010 Cruse 18 -01101010 Hurst 18 -01101010 Maude 18 -01101010 Dobbs 18 -01101010 Goldress 18 -01101010 Buell 18 -01101010 Berenson 18 -01101010 Chou 18 -01101010 Latimer 18 -01101010 Culp 18 -01101010 Ungermann 18 -01101010 Ruff 18 -01101010 Astor 18 -01101010 Wyler 18 -01101010 Crenshaw 19 -01101010 Bogert 19 -01101010 Bartholomew 19 -01101010 Wadsworth 19 -01101010 Ricks 19 -01101010 Cayton 19 -01101010 Warden 19 -01101010 Batten 19 -01101010 Mayberry 19 -01101010 Yardley 19 -01101010 Bronson 19 -01101010 Peacock 19 -01101010 Manet 19 -01101010 Goody 19 -01101010 Boothe 19 -01101010 Crabtree 19 -01101010 Holstein 19 -01101010 Glynn 19 -01101010 Houlihan 19 -01101010 Scully 19 -01101010 Vizcaya 19 -01101010 Reyes 19 -01101010 Anson 19 -01101010 Warnke 19 -01101010 Garwood 19 -01101010 Davey 19 -01101010 etre 19 -01101010 Frye 19 -01101010 Min 19 -01101010 Wyly 19 -01101010 Wainwright 19 -01101010 Aldrich 19 -01101010 Chalk 19 -01101010 Dabney 19 -01101010 Sunny 19 -01101010 Voute 19 -01101010 Ham 19 -01101010 Parr 20 -01101010 Schulz 20 -01101010 Snider 20 -01101010 Gorham 20 -01101010 Al-Sabah 20 -01101010 Rego 20 -01101010 Reinhart 20 -01101010 Fugazy 20 -01101010 Geffen 20 -01101010 Lubar 20 -01101010 Rodale 20 -01101010 Demjanjuk 20 -01101010 Bunting 20 -01101010 Autry 20 -01101010 Jewett 20 -01101010 Winslow 20 -01101010 Buchwald 20 -01101010 Coburn 20 -01101010 Roddy 20 -01101010 Schachter 20 -01101010 Pyle 20 -01101010 Moreira 20 -01101010 Goldwyn 20 -01101010 Siebert 20 -01101010 Pitman 20 -01101010 Schoenberg 20 -01101010 Scarborough 20 -01101010 Blaine 20 -01101010 Holder 20 -01101010 Taggart 20 -01101010 Spivey 20 -01101010 Ginandjar 20 -01101010 Radford 20 -01101010 Meade 20 -01101010 Montebello 20 -01101010 Ping 20 -01101010 Candy 20 -01101010 Middleton 20 -01101010 Noe 20 -01101010 Hibbard 21 -01101010 Yoshida 21 -01101010 Englander 21 -01101010 Minter 21 -01101010 Vereinsbank 21 -01101010 Blohm 21 -01101010 McCaffrey 21 -01101010 Andrey 21 -01101010 Leech 21 -01101010 Leopold 21 -01101010 Caywood 21 -01101010 Hardin 21 -01101010 Shugart 21 -01101010 Telling 21 -01101010 Riccardo 21 -01101010 Yun 21 -01101010 Quackenbush 21 -01101010 Golub 21 -01101010 Flanigan 21 -01101010 Koo 21 -01101010 Fluke 21 -01101010 Rootstein 21 -01101010 Spice 21 -01101010 Hackman 21 -01101010 Wordsworth 21 -01101010 Kilgore 21 -01101010 Kohler 21 -01101010 Kalb 21 -01101010 Horchow 21 -01101010 Shanley 21 -01101010 Krantz 21 -01101010 Slack 21 -01101010 Wayland 22 -01101010 Gallatin 22 -01101010 Sahlen 22 -01101010 Menil 22 -01101010 Sorensen 22 -01101010 Auerbach 22 -01101010 Wei 22 -01101010 Moulton 22 -01101010 Wallis 22 -01101010 Fries 22 -01101010 Morahan 22 -01101010 Belknap 22 -01101010 Iverson 22 -01101010 Kock 22 -01101010 Mackey 22 -01101010 Ostrander 22 -01101010 Krim 22 -01101010 Wardell 22 -01101010 Valin 22 -01101010 Manella 22 -01101010 Koster 22 -01101010 Bakers 22 -01101010 Naugles 22 -01101010 Jarislowsky 22 -01101010 Ridley 22 -01101010 Gintel 22 -01101010 Hobson 22 -01101010 Smaby 22 -01101010 Yi 22 -01101010 Dukes 22 -01101010 Lehrman 22 -01101010 Purdy 22 -01101010 Franke 23 -01101010 Schindler 23 -01101010 Bower 23 -01101010 Lasky 23 -01101010 Poe 23 -01101010 Eyre 23 -01101010 Rinehart 23 -01101010 Brink 23 -01101010 Jiang 23 -01101010 Morvillo 23 -01101010 Walden 23 -01101010 Breaux 23 -01101010 Mondavi 23 -01101010 Sant 23 -01101010 Whittemore 23 -01101010 Choi 23 -01101010 Constructions 23 -01101010 Sohn 23 -01101010 Ridgeway 23 -01101010 Vogt 23 -01101010 Nabokov 23 -01101010 Usher 23 -01101010 Morino 23 -01101010 Hodgson 23 -01101010 Vandenberg 23 -01101010 Driver 23 -01101010 Britten 23 -01101010 Bachman 23 -01101010 Ibrahim 23 -01101010 Torray 23 -01101010 Liberman 23 -01101010 Hiro 23 -01101010 Griggs 23 -01101010 Schneiders 23 -01101010 Iris 23 -01101010 Barrow 23 -01101010 etat 23 -01101010 Janis 23 -01101010 Moser 23 -01101010 Woolsey 24 -01101010 Saybrook 24 -01101010 Ganz 24 -01101010 Eck 24 -01101010 Harbour 24 -01101010 Busby 24 -01101010 Yarling 24 -01101010 Gladstone 24 -01101010 Olney 24 -01101010 Merner 24 -01101010 Kingsley 24 -01101010 Spies 24 -01101010 Qualls 24 -01101010 Luftig 24 -01101010 Provenzano 24 -01101010 Lukas 24 -01101010 Jin 24 -01101010 Vedder 24 -01101010 Tilton 24 -01101010 Sosa 24 -01101010 Rasmussen 24 -01101010 Syme 24 -01101010 Dorchester 24 -01101010 Portman 24 -01101010 Brick 24 -01101010 Gobain 25 -01101010 Fielding 25 -01101010 Roma 25 -01101010 Cody 25 -01101010 Noland 25 -01101010 Geier 25 -01101010 Finch 25 -01101010 Pao 25 -01101010 Forte 25 -01101010 Schiller 25 -01101010 Hanauer 25 -01101010 Douglass 25 -01101010 Cramer 25 -01101010 MacAllister 25 -01101010 McRae 25 -01101010 Thor 25 -01101010 Merrick 25 -01101010 Winfield 25 -01101010 Hurley 25 -01101010 Corbin 25 -01101010 Milner 25 -01101010 Fiorucci 25 -01101010 Schulte 25 -01101010 Borg 25 -01101010 Barksdale 25 -01101010 Ramsay 25 -01101010 Kirschner 25 -01101010 Chopin 26 -01101010 Gage 26 -01101010 Chino 26 -01101010 Lanham 26 -01101010 Ginsberg 26 -01101010 Ratliff 26 -01101010 Wanamaker 26 -01101010 Rabinowitz 26 -01101010 Torrey 26 -01101010 Milne 26 -01101010 Dryden 26 -01101010 Shear 26 -01101010 Larkin 26 -01101010 Raven 26 -01101010 Spector 26 -01101010 Lipscomb 26 -01101010 Seltzer 26 -01101010 Poussin 26 -01101010 Bryce 26 -01101010 Geraghty 26 -01101010 Cano 26 -01101010 Tang 26 -01101010 DuPont 26 -01101010 Vita 27 -01101010 Lorin 27 -01101010 Bray 27 -01101010 Gable 27 -01101010 Somers 27 -01101010 Rance 27 -01101010 Spalding 27 -01101010 Wooster 27 -01101010 Wax 27 -01101010 Elway 27 -01101010 Sada 27 -01101010 Lister 27 -01101010 Arundel 27 -01101010 Herold 27 -01101010 Bradshaw 27 -01101010 Wynne 27 -01101010 Choate 27 -01101010 Constant 27 -01101010 Hyun 27 -01101010 Hildebrandt 27 -01101010 Leff 27 -01101010 Funk 27 -01101010 Dylan 27 -01101010 Cannell 27 -01101010 Gonzales 27 -01101010 Grauer 27 -01101010 Rousseau 27 -01101010 Fogg 27 -01101010 Rocker 27 -01101010 Eldridge 27 -01101010 Cho 27 -01101010 Whitley 27 -01101010 Bastian 27 -01101010 Riese 27 -01101010 Lytton 27 -01101010 McAllister 27 -01101010 Glassman 27 -01101010 Rauch 27 -01101010 Nye 27 -01101010 Wolfensohn 27 -01101010 Bone 27 -01101010 Kimbell 27 -01101010 Halstead 28 -01101010 Jeffries 28 -01101010 Golding 28 -01101010 Chalmers 28 -01101010 Musa 28 -01101010 Kelton 28 -01101010 Dell' 28 -01101010 Whelan 28 -01101010 Zehnder 28 -01101010 Raj 28 -01101010 Hooper 28 -01101010 Combs 28 -01101010 Easton 28 -01101010 Seidel 28 -01101010 McEnroe 28 -01101010 Waugh 28 -01101010 McFerrin 28 -01101010 Boomers 28 -01101010 Sharpe 28 -01101010 Mar 28 -01101010 Rubens 28 -01101010 Canning 28 -01101010 Frame 28 -01101010 Viner 28 -01101010 Embry 28 -01101010 Woodruff 28 -01101010 Duval 28 -01101010 Sheffield 28 -01101010 Jansen 28 -01101010 Yuen 28 -01101010 Hannaford 29 -01101010 Quixote 29 -01101010 Beesley 29 -01101010 Swann 29 -01101010 Tong 29 -01101010 Drysdale 29 -01101010 Schoen 29 -01101010 Elder 29 -01101010 Flanagan 29 -01101010 Mora 29 -01101010 Cullen 29 -01101010 Diener 29 -01101010 McClain 29 -01101010 Luth 29 -01101010 Wooden 29 -01101010 Petty 29 -01101010 Wirthlin 29 -01101010 Quigley 29 -01101010 Hinton 29 -01101010 Rusk 29 -01101010 Blackman 29 -01101010 Criswell 29 -01101010 Brewer 29 -01101010 Cass 29 -01101010 Carleton 29 -01101010 Schick 29 -01101010 Da 29 -01101010 Chaus 29 -01101010 Griswold 30 -01101010 Petroles 30 -01101010 Orchard 30 -01101010 Britt 30 -01101010 Leone 30 -01101010 Molson 30 -01101010 Timbers 30 -01101010 Helm 30 -01101010 Zorn 30 -01101010 Morley 30 -01101010 Abdullah 30 -01101010 Appel 30 -01101010 Niles 30 -01101010 Yankelovich 30 -01101010 Schmitt 30 -01101010 Fenton 30 -01101010 Bingham 30 -01101010 Schafer 30 -01101010 Vesco 30 -01101010 Lacey 30 -01101010 Briggs 31 -01101010 Rivkin 31 -01101010 Dreyfuss 31 -01101010 Chilton 31 -01101010 Ono 31 -01101010 Kidd 31 -01101010 Spears 31 -01101010 Brewster 31 -01101010 Lerach 31 -01101010 Wines 31 -01101010 Krause 31 -01101010 Trout 31 -01101010 Cleve 31 -01101010 Lovett 31 -01101010 Hazard 31 -01101010 Knutson 31 -01101010 Pastor 31 -01101010 Luria 31 -01101010 Solis 31 -01101010 Osborn 31 -01101010 Neumann 32 -01101010 Gilchrist 32 -01101010 Rankin 32 -01101010 Gatsby 32 -01101010 Lipsig 32 -01101010 Zimmermann 32 -01101010 Kang 32 -01101010 Steadman 32 -01101010 Knott 32 -01101010 Gannon 32 -01101010 Rothenberg 32 -01101010 Booker 32 -01101010 Sanderson 32 -01101010 Burden 32 -01101010 Moe 32 -01101010 Dunham 32 -01101010 Player 32 -01101010 Pendleton 32 -01101010 Langer 32 -01101010 Wolfson 33 -01101010 Koenig 33 -01101010 Calhoun 33 -01101010 Labatt 33 -01101010 Frick 33 -01101010 Guest 33 -01101010 Sindlinger 33 -01101010 Witt 33 -01101010 Friedlander 33 -01101010 Willoughby 33 -01101010 Higa 33 -01101010 Alene 33 -01101010 Jays 33 -01101010 Dionne 33 -01101010 Bostian 33 -01101010 Metzger 33 -01101010 Tracey 33 -01101010 Lovell 33 -01101010 Doll 33 -01101010 Salmon 33 -01101010 Moritz 33 -01101010 Gardiner 33 -01101010 Schumann 33 -01101010 Holman 33 -01101010 Kruse 33 -01101010 Crowell 33 -01101010 Woodside 34 -01101010 Hoyt 34 -01101010 Schiff 34 -01101010 Cochran 34 -01101010 Muir 34 -01101010 Britton 34 -01101010 Weatherford 34 -01101010 Pulliam 34 -01101010 Zappa 34 -01101010 Draper 34 -01101010 Kasper 34 -01101010 Eaux 34 -01101010 Simms 34 -01101010 Turk 34 -01101010 Hamel 34 -01101010 Keillor 34 -01101010 Rubinstein 34 -01101010 Klee 35 -01101010 Lea 35 -01101010 Neuhaus 35 -01101010 Zeckendorf 35 -01101010 Hillman 35 -01101010 Lyman 35 -01101010 Dorr 35 -01101010 Wyeth 35 -01101010 Pain 35 -01101010 Kobrin 35 -01101010 Matuschka 35 -01101010 Iwai 35 -01101010 Carmoy 35 -01101010 Sillerman 36 -01101010 Goddard 36 -01101010 Waddell 36 -01101010 Lynden 36 -01101010 Friedberg 36 -01101010 Berliner 36 -01101010 Blackwell 36 -01101010 Reese 36 -01101010 Wescott 36 -01101010 Sin 36 -01101010 Ash 36 -01101010 Wiener 36 -01101010 Xu 36 -01101010 Winters 36 -01101010 Ferri 36 -01101010 Obando 36 -01101010 Stratton 36 -01101010 Debevoise 36 -01101010 Deming 36 -01101010 Delano 36 -01101010 Dowling 36 -01101010 Gilliam 36 -01101010 Espana 36 -01101010 Self 37 -01101010 Z 37 -01101010 Foresman 37 -01101010 Abramowitz 37 -01101010 Brett 37 -01101010 Abbas 37 -01101010 Trumbull 37 -01101010 Faust 37 -01101010 McNally 37 -01101010 Dickson 37 -01101010 Sarnoff 37 -01101010 Gershwin 38 -01101010 Suter 38 -01101010 Vega 38 -01101010 Latham 38 -01101010 Bassett 38 -01101010 Schiavone 38 -01101010 Gunter 38 -01101010 Bowie 38 -01101010 Binder 38 -01101010 Baruch 38 -01101010 Gauguin 38 -01101010 Walls 38 -01101010 Farah 38 -01101010 le 38 -01101010 Ransom 38 -01101010 Ramadan 38 -01101010 Barlow 39 -01101010 Hume 39 -01101010 Osman 39 -01101010 DuBois 39 -01101010 Huntley 39 -01101010 Johnstone 39 -01101010 Cowan 39 -01101010 Brachfeld 39 -01101010 Hagen 39 -01101010 Shawn 40 -01101010 Boswell 40 -01101010 Rymer 40 -01101010 Redding 40 -01101010 Casper 40 -01101010 Cochrane 40 -01101010 McCann 40 -01101010 Zhang 40 -01101010 Faulkner 40 -01101010 Toms 40 -01101010 Mott 40 -01101010 Harman 40 -01101010 Soto 40 -01101010 Cassidy 40 -01101010 Abbenhaus 40 -01101010 l' 41 -01101010 Toyoda 41 -01101010 Amos 41 -01101010 Rutledge 41 -01101010 Dahlberg 41 -01101010 Dorn 41 -01101010 Baum 41 -01101010 Underwood 41 -01101010 McNeil 41 -01101010 Hannah 41 -01101010 Oswald 41 -01101010 Kroh 41 -01101010 DeWitt 41 -01101010 Foreman 41 -01101010 Cheng 41 -01101010 Waterman 41 -01101010 Berkman 41 -01101010 Lapides 42 -01101010 Laird 42 -01101010 Saxon 42 -01101010 Blanc 42 -01101010 Mendoza 42 -01101010 Ness 42 -01101010 Corbett 43 -01101010 Levesque 43 -01101010 MacKenzie 43 -01101010 Hendrickson 43 -01101010 Deutsch 43 -01101010 Gelman 43 -01101010 Kaufmann 43 -01101010 Selzer 43 -01101010 Papa 43 -01101010 Everingham 43 -01101010 Friend 43 -01101010 Hartman 44 -01101010 Bayh 44 -01101010 Flood 44 -01101010 Weingarten 44 -01101010 Forsyth 44 -01101010 Hellman 44 -01101010 Berkley 44 -01101010 Pastora 44 -01101010 Spicer 44 -01101010 Alden 44 -01101010 Hogg 44 -01101010 Brouwer 44 -01101010 Hoffmann 44 -01101010 Lippincott 44 -01101010 Pollock 44 -01101010 Brookes 44 -01101010 Okamoto 45 -01101010 Bowers 45 -01101010 Loomis 45 -01101010 McIntosh 45 -01101010 Valentino 45 -01101010 Lu 45 -01101010 Hurtado 45 -01101010 Estaing 45 -01101010 Lakefield 45 -01101010 Forward 46 -01101010 Scala 46 -01101010 Morrell 46 -01101010 Salle 46 -01101010 Springer 46 -01101010 Sayles 46 -01101010 Dunne 46 -01101010 Maguire 46 -01101010 Denton 46 -01101010 Cummings 46 -01101010 Lundberg 46 -01101010 Luciano 46 -01101010 Landesbank 46 -01101010 Wachtel 46 -01101010 Gilman 47 -01101010 Salisbury 47 -01101010 Martens 47 -01101010 Manson 47 -01101010 Mara 47 -01101010 Eddy 47 -01101010 Pickle 47 -01101010 Valu 47 -01101010 Ulrich 47 -01101010 Swain 47 -01101010 McGuire 47 -01101010 Slattery 47 -01101010 Schweitzer 47 -01101010 Stowe 47 -01101010 Irvin 47 -01101010 Haynes 48 -01101010 Ware 48 -01101010 Hassan 48 -01101010 Banta 49 -01101010 Egan 49 -01101010 Manafort 49 -01101010 Handy 49 -01101010 Budd 49 -01101010 Aoki 49 -01101010 Ritchie 49 -01101010 McKenna 49 -01101010 Ives 49 -01101010 Rey 49 -01101010 Guenther 49 -01101010 Magnus 49 -01101010 Lim 49 -01101010 Doe 49 -01101010 Erickson 49 -01101010 Keene 50 -01101010 Tennant 50 -01101010 Alvarez 50 -01101010 Sparks 50 -01101010 Beutel 51 -01101010 Bess 51 -01101010 Markham 51 -01101010 Seligman 51 -01101010 Pierson 51 -01101010 Rubenstein 51 -01101010 Flowers 51 -01101010 Rath 52 -01101010 Hamburger 52 -01101010 Landry 52 -01101010 Byers 52 -01101010 Maloney 52 -01101010 Soria 52 -01101010 Janeiro 52 -01101010 Freed 52 -01101010 Pound 53 -01101010 Handel 53 -01101010 Constantine 53 -01101010 Cleary 53 -01101010 Beale 53 -01101010 Gaylord 53 -01101010 Ellsworth 53 -01101010 Hocking 53 -01101010 Thorne 53 -01101010 Winn 53 -01101010 Boyer 53 -01101010 Kearney 54 -01101010 Rutherford 54 -01101010 Taubman 54 -01101010 Leventhal 54 -01101010 Gaulle 54 -01101010 Metcalf 54 -01101010 Braun 54 -01101010 Samson 54 -01101010 Landau 54 -01101010 Larson 54 -01101010 Echos 54 -01101010 Dougherty 54 -01101010 Frazier 54 -01101010 Godfrey 55 -01101010 Cahill 55 -01101010 Elkins 55 -01101010 Carlisle 55 -01101010 McKee 55 -01101010 Perdue 55 -01101010 Esty 55 -01101010 Talbot 55 -01101010 Russo 55 -01101010 Harwood 55 -01101010 Ely 55 -01101010 Brinkley 56 -01101010 Jong 56 -01101010 Lutz 56 -01101010 Ried 56 -01101010 Gale 56 -01101010 Harding 56 -01101010 Hood 56 -01101010 Brophy 56 -01101010 Tanner 56 -01101010 Feshbach 57 -01101010 Boslego 57 -01101010 Twain 57 -01101010 Lay 57 -01101010 McNamara 57 -01101010 Bard 57 -01101010 Cardillo 57 -01101010 Hulbert 58 -01101010 Hendricks 58 -01101010 Broderick 58 -01101010 Sheridan 58 -01101010 Kroll 58 -01101010 Sikes 58 -01101010 Shelton 58 -01101010 Marino 58 -01101010 Albrecht 58 -01101010 Bragg 58 -01101010 Schubert 59 -01101010 Jaffe 59 -01101010 Rossi 59 -01101010 Bentley 59 -01101010 Ehrlich 59 -01101010 Licht 59 -01101010 Grady 59 -01101010 Heflin 59 -01101010 Credito 60 -01101010 McFarland 60 -01101010 Basie 60 -01101010 Mooney 60 -01101010 Steen 60 -01101010 Santos 60 -01101010 Lebow 60 -01101010 Tobin 60 -01101010 Fallon 60 -01101010 Kenny 60 -01101010 Covington 60 -01101010 Magnin 61 -01101010 Sage 61 -01101010 Horne 61 -01101010 Grass 61 -01101010 Moog 61 -01101010 Vaughan 61 -01101010 Carlin 61 -01101010 Donahue 61 -01101010 Copeland 61 -01101010 Popkin 61 -01101010 Hand 61 -01101010 Guthrie 61 -01101010 Lindsay 62 -01101010 Ginn 62 -01101010 Massey 62 -01101010 Opel 62 -01101010 Purcell 62 -01101010 Kline 63 -01101010 Ramsey 63 -01101010 Livermore 63 -01101010 Calvert 63 -01101010 Kitchen 64 -01101010 Oppenheim 64 -01101010 Nicholson 64 -01101010 Bolling 64 -01101010 McDowell 64 -01101010 Sick 64 -01101010 Mansfield 65 -01101010 Caldwell 65 -01101010 Dhabi 65 -01101010 Martini 65 -01101010 Bildner 65 -01101010 Albertson 65 -01101010 Redman 65 -01101010 Fitch 65 -01101010 Alger 65 -01101010 Knox 65 -01101010 Ewing 65 -01101010 Harlan 65 -01101010 Matisse 65 -01101010 Wyman 65 -01101010 Chan 65 -01101010 MacArthur 65 -01101010 Rabbit 66 -01101010 Hitchcock 66 -01101010 Hesse 66 -01101010 Rutland 66 -01101010 Millis 66 -01101010 Klerk 66 -01101010 Factor 67 -01101010 Grimm 67 -01101010 Hopper 67 -01101010 Rifkind 67 -01101010 Gartman 67 -01101010 Cohn 67 -01101010 Corcoran 68 -01101010 Stacy 68 -01101010 Sargent 68 -01101010 Rush 68 -01101010 Guerin 68 -01101010 Watt 68 -01101010 Meehan 68 -01101010 Wolff 68 -01101010 Goetz 69 -01101010 Bilbao 69 -01101010 Skaggs 69 -01101010 Lazarus 69 -01101010 Pike 69 -01101010 Vance 69 -01101010 Bean 70 -01101010 Ronson 70 -01101010 Cantor 70 -01101010 Jacoby 70 -01101010 Boom 70 -01101010 Willens 70 -01101010 Wellman 70 -01101010 Yu 70 -01101010 Shin 71 -01101010 Uno 71 -01101010 Remington 71 -01101010 Aron 71 -01101010 Matheson 71 -01101010 Townsend 71 -01101010 Dreyer 71 -01101010 Tudor 72 -01101010 Liu 72 -01101010 Agnelli 72 -01101010 Sloane 72 -01101010 Duck 72 -01101010 Shoppes 72 -01101010 Clifton 73 -01101010 Jepson 73 -01101010 Kamp 73 -01101010 Hardy 73 -01101010 Shea 73 -01101010 Wiley 73 -01101010 Shelley 73 -01101010 Blake 73 -01101010 Heath 73 -01101010 Landis 74 -01101010 Harbert 74 -01101010 Kinney 74 -01101010 Wise 74 -01101010 Mahler 74 -01101010 Yang 75 -01101010 Napier 75 -01101010 Brooke 75 -01101010 Garland 75 -01101010 Slater 75 -01101010 Kimball 75 -01101010 Bonner 75 -01101010 Sims 75 -01101010 Graf 75 -01101010 Minor 75 -01101010 Bigelow 76 -01101010 Augustine 76 -01101010 Bosworth 76 -01101010 Rowan 77 -01101010 Ferrari 77 -01101010 Scowcroft 77 -01101010 Percy 77 -01101010 Waite 77 -01101010 McKenzie 77 -01101010 Riordan 77 -01101010 Sinclair 77 -01101010 Cobb 77 -01101010 Greer 77 -01101010 Frankel 78 -01101010 Jasinowski 78 -01101010 Benham 78 -01101010 Villa 78 -01101010 Starr 78 -01101010 Peltz 78 -01101010 Kirkpatrick 79 -01101010 Meadows 79 -01101010 Davenport 79 -01101010 Hermann 79 -01101010 Armour 79 -01101010 Ashley 79 -01101010 Kaye 79 -01101010 Chappell 79 -01101010 Archer 79 -01101010 Fedders 80 -01101010 Amman 80 -01101010 Schaefer 80 -01101010 Polk 80 -01101010 Song 80 -01101010 Havilland 80 -01101010 Parks 80 -01101010 Herzfeld 80 -01101010 Gleason 81 -01101010 Ladd 81 -01101010 Dorsey 81 -01101010 Itoh 81 -01101010 Bregman 81 -01101010 Rosenfeld 81 -01101010 Hayward 81 -01101010 Ho 81 -01101010 Hanley 82 -01101010 Gortari 82 -01101010 Cutler 82 -01101010 Booth 82 -01101010 Barclay 82 -01101010 Han 82 -01101010 Birch 82 -01101010 Sloate 82 -01101010 Springsteen 82 -01101010 Gorman 83 -01101010 Garment 83 -01101010 Gill 83 -01101010 Terra 83 -01101010 McGraw 84 -01101010 Finn 84 -01101010 Browne 84 -01101010 Valentine 84 -01101010 Addison 85 -01101010 Compton 85 -01101010 Anders 85 -01101010 Lin 85 -01101010 McIntyre 85 -01101010 Blum 85 -01101010 Karcher 85 -01101010 Lauren 86 -01101010 Tully 86 -01101010 Tinker 87 -01101010 Josephson 87 -01101010 Somerville 87 -01101010 Sweeney 87 -01101010 Guber 87 -01101010 Electricite 88 -01101010 Roll 88 -01101010 Mayo 88 -01101010 Biehl 88 -01101010 Zimmer 88 -01101010 Caesar 89 -01101010 Lodge 89 -01101010 Langley 89 -01101010 Stahl 89 -01101010 Bright 89 -01101010 Coats 90 -01101010 Stella 90 -01101010 Livingston 90 -01101010 Stanger 90 -01101010 Romano 90 -01101010 Hollis 90 -01101010 Atwood 90 -01101010 Gregg 90 -01101010 Gillett 90 -01101010 Jennings 91 -01101010 Franco 91 -01101010 Link 92 -01101010 Pages 92 -01101010 Gramley 92 -01101010 Meyers 92 -01101010 Lauder 92 -01101010 Harrington 93 -01101010 Payne 93 -01101010 Luke 93 -01101010 Hays 93 -01101010 Von 93 -01101010 Barton 93 -01101010 Moet 94 -01101010 Carver 94 -01101010 Bosch 94 -01101010 Silverstein 94 -01101010 Allison 94 -01101010 Sandler 94 -01101010 Riklis 94 -01101010 Woodland 94 -01101010 Connors 94 -01101010 Galbraith 94 -01101010 Packard 95 -01101010 Scripps 95 -01101010 Howe 95 -01101010 Lang 95 -01101010 Hines 95 -01101010 Sylvester 95 -01101010 Hastings 96 -01101010 Newhouse 96 -01101010 Scudder 96 -01101010 Variety 96 -01101010 Mouse 96 -01101010 Owens 96 -01101010 Linden 96 -01101010 Archibald 96 -01101010 Holt 97 -01101010 Ramirez 97 -01101010 Seal 97 -01101010 McGill 97 -01101010 Feldman 98 -01101010 Welsh 98 -01101010 Dell 99 -01101010 Lamb 99 -01101010 McCabe 100 -01101010 Millard 100 -01101010 Dederick 100 -01101010 Webber 101 -01101010 Arden 102 -01101010 Hewitt 102 -01101010 Subroto 103 -01101010 Shilling 104 -01101010 Parkinson 104 -01101010 Greenwood 104 -01101010 Dawson 104 -01101010 Chamberlain 104 -01101010 McCoy 104 -01101010 Dickinson 105 -01101010 Laurel 105 -01101010 Carlton 105 -01101010 Kirkland 106 -01101010 Lyon 106 -01101010 Abe 106 -01101010 Hutchinson 106 -01101010 Rivers 106 -01101010 Rouse 106 -01101010 Zoete 107 -01101010 Hayden 107 -01101010 Fay 107 -01101010 Diaz 107 -01101010 Il 107 -01101010 Reeves 107 -01101010 Healy 108 -01101010 Whitman 108 -01101010 Parsons 108 -01101010 Steinhardt 109 -01101010 Herzog 109 -01101010 Sutherland 109 -01101010 Moses 110 -01101010 Manley 110 -01101010 Morrow 111 -01101010 Crowley 111 -01101010 Dunn 111 -01101010 Kessler 111 -01101010 Berman 111 -01101010 Miranda 112 -01101010 Nash 112 -01101010 Bruno 113 -01101010 Atkinson 113 -01101010 Savaiko 113 -01101010 Riney 114 -01101010 Bozell 114 -01101010 Roe 114 -01101010 Carrington 114 -01101010 Shore 114 -01101010 Rolland 115 -01101010 Culver 115 -01101010 Merritt 115 -01101010 Frost 115 -01101010 Meredith 116 -01101010 Michaels 116 -01101010 Houghton 116 -01101010 Barr 117 -01101010 Hammond 117 -01101010 Avery 118 -01101010 Carlson 118 -01101010 Ansbacher 118 -01101010 Stanton 119 -01101010 Hyman 119 -01101010 Clay 119 -01101010 Greenfield 119 -01101010 Pesch 120 -01101010 Ingersoll 120 -01101010 Grubman 121 -01101010 Potter 121 -01101010 McKinley 122 -01101010 Kerr 123 -01101010 Hawkins 123 -01101010 Beck 123 -01101010 Kirby 123 -01101010 Dalton 124 -01101010 Warwick 124 -01101010 Heublein 124 -01101010 Davidson 124 -01101010 Woodward 125 -01101010 Weston 125 -01101010 Shaffer 125 -01101010 Gaines 126 -01101010 McGrath 126 -01101010 Nader 126 -01101010 Depot 126 -01101010 Henson 126 -01101010 Bartlett 127 -01101010 Durham 127 -01101010 Hogan 128 -01101010 Randolph 128 -01101010 Bauer 128 -01101010 Sessions 128 -01101010 Sweet 128 -01101010 Stevenson 130 -01101010 Salem 130 -01101010 Conner 131 -01101010 Hubbard 131 -01101010 Garrett 132 -01101010 Lange 132 -01101010 Eliot 132 -01101010 Wade 132 -01101010 Platt 133 -01101010 Fitzgerald 133 -01101010 Cameron 133 -01101010 Laurent 133 -01101010 Watts 134 -01101010 Rollins 135 -01101010 Ketchum 135 -01101010 Forster 136 -01101010 Williamson 136 -01101010 Bryant 137 -01101010 Wyatt 137 -01101010 Mercer 138 -01101010 Hampton 139 -01101010 Kagan 139 -01101010 Carey 140 -01101010 Hope 140 -01101010 Andreas 140 -01101010 Templeton 140 -01101010 Kendall 141 -01101010 Furman 142 -01101010 Logan 144 -01101010 Heine 144 -01101010 Nidal 144 -01101010 Barnard 145 -01101010 Perkins 145 -01101010 Sloan 147 -01101010 Miles 147 -01101010 Downey 147 -01101010 Roderick 150 -01101010 Sutton 150 -01101010 Daniels 150 -01101010 facto 150 -01101010 Smart 151 -01101010 Fischer 151 -01101010 Fraser 151 -01101010 Buck 151 -01101010 Della 151 -01101010 Chambers 152 -01101010 Bouygues 152 -01101010 Farmer 152 -01101010 Davies 153 -01101010 Maynard 153 -01101010 Mao 153 -01101010 Dewey 153 -01101010 Reid 153 -01101010 Berry 154 -01101010 Head 154 -01101010 Bain 155 -01101010 Polo 156 -01101010 Chandler 157 -01101010 Rosenthal 157 -01101010 Dempsey 158 -01101010 Montagu 158 -01101010 Masters 159 -01101010 Farrell 159 -01101010 Wolfe 159 -01101010 Spelling 161 -01101010 Swift 162 -01101010 Crow 163 -01101010 Crosby 164 -01101010 Arbor 164 -01101010 Burnett 165 -01101010 Dreman 165 -01101010 Werner 166 -01101010 Malone 166 -01101010 Patterson 167 -01101010 Willis 167 -01101010 Barker 167 -01101010 Rowland 168 -01101010 Cruz 169 -01101010 Baron 169 -01101010 Levitt 169 -01101010 Ogden 170 -01101010 Hicks 171 -01101010 Everett 171 -01101010 Schulman 171 -01101010 Barrett 172 -01101010 Quinn 173 -01101010 Gallo 174 -01101010 Snow 174 -01101010 Shannon 174 -01101010 Rooney 175 -01101010 Gallagher 175 -01101010 Humphrey 175 -01101010 Robbins 177 -01101010 Boyd 177 -01101010 M 180 -01101010 Altman 180 -01101010 Baird 180 -01101010 Bird 181 -01101010 Myerson 181 -01101010 Schroeder 183 -01101010 Grove 184 -01101010 Loeb 184 -01101010 Busch 185 -01101010 Manning 186 -01101010 Hayes 186 -01101010 Bronfman 186 -01101010 Kern 188 -01101010 Carpenter 188 -01101010 Fletcher 189 -01101010 McCormick 190 -01101010 Peck 191 -01101010 Mueller 191 -01101010 Becker 192 -01101010 Rhodes 193 -01101010 Lowe 193 -01101010 Hay 193 -01101010 Joyce 193 -01101010 Needham 194 -01101010 Berger 194 -01101010 Moran 195 -01101010 Bradford 195 -01101010 Weil 196 -01101010 Marx 196 -01101010 Hansen 197 -01101010 Hancock 197 -01101010 Knight 197 -01101010 Andrews 198 -01101010 Donovan 199 -01101010 Blinder 199 -01101010 Roach 200 -01101010 Huntington 201 -01101010 Sells 201 -01101010 Adler 203 -01101010 Heller 203 -01101010 Noble 203 -01101010 Mayer 203 -01101010 Swanson 205 -01101010 Spiegel 206 -01101010 Preston 206 -01101010 Norris 207 -01101010 Kay 210 -01101010 Burke 210 -01101010 Benton 211 -01101010 Hess 211 -01101010 Temple 211 -01101010 Page 212 -01101010 Foote 212 -01101010 Connolly 212 -01101010 Newton 212 -01101010 Bates 212 -01101010 Kramer 213 -01101010 Lieberman 214 -01101010 Claiborne 215 -01101010 Fish 215 -01101010 Tyler 219 -01101010 Crane 221 -01101010 Bishop 221 -01101010 Pepper 222 -01101010 Shapiro 223 -01101010 Hyatt 224 -01101010 Monroe 224 -01101010 Clinton 225 -01101010 Richards 226 -01101010 Baldwin 226 -01101010 Doyle 226 -01101010 Higgins 227 -01101010 Watson 228 -01101010 Seymour 229 -01101010 Dixon 229 -01101010 Farley 230 -01101010 Whittle 231 -01101010 Mack 232 -01101010 Jovanovich 233 -01101010 Reilly 233 -01101010 Solomon 235 -01101010 Jacobson 236 -01101010 Carroll 237 -01101010 Churchill 237 -01101010 Gardner 237 -01101010 Block 238 -01101010 Porter 239 -01101010 Kaplan 241 -01101010 Gabelli 245 -01101010 Sharp 245 -01101010 Nichols 248 -01101010 Monte 249 -01101010 Gibson 251 -01101010 Norton 251 -01101010 Rosen 252 -01101010 Cole 252 -01101010 Fried 252 -01101010 Sound 254 -01101010 Sanders 254 -01101010 Hirsch 255 -01101010 Simpson 257 -01101010 Marks 259 -01101010 Newman 259 -01101010 Lipton 261 -01101010 Rule 261 -01101010 Brierley 262 -01101010 Holland 263 -01101010 Roth 263 -01101010 Bowl 264 -01101010 Tucker 265 -01101010 Mann 267 -01101010 Henderson 267 -01101010 Sherwood 270 -01101010 Katz 271 -01101010 Peters 273 -01101010 Wallace 274 -01101010 Schneider 275 -01101010 McLean 277 -01101010 Goldsmith 277 -01101010 Stephens 278 -01101010 Lyons 281 -01101010 Brock 281 -01101010 Richardson 284 -01101010 Duncan 285 -01101010 Palmer 285 -01101010 Fine 287 -01101010 Hunter 289 -01101010 Bailey 289 -01101010 Gibbs 290 -01101010 Snyder 291 -01101010 Clarke 294 -01101010 Capel 296 -01101010 Perella 297 -01101010 Hopkins 299 -01101010 Rockefeller 303 -01101010 Barnes 303 -01101010 Butler 305 -01101010 Myers 305 -01101010 Greenberg 306 -01101010 Einstein 307 -01101010 Kent 308 -01101010 Heinz 311 -01101010 Marcus 312 -01101010 Schmidt 314 -01101010 Love 318 -01101010 Todd 319 -01101010 Marion 322 -01101010 Goldstein 322 -01101010 Barnett 323 -01101010 Jefferson 323 -01101010 Shaw 325 -01101010 Forbes 329 -01101010 DeBartolo 330 -01101010 Klein 331 -01101010 Goodman 333 -01101010 Stein 336 -01101010 Ellis 336 -01101010 Meyer 336 -01101010 Blair 337 -01101010 Hale 339 -01101010 Keefe 339 -01101010 Gross 340 -01101010 Harrison 342 -01101010 Scherer 349 -01101010 Sherman 349 -01101010 Baxter 350 -01101010 Seidman 351 -01101010 Carson 352 -01101010 Armstrong 353 -01101010 Ball 355 -01101010 Spencer 358 -01101010 Bryan 360 -01101010 Chapman 370 -01101010 Gilbert 372 -01101010 McCarthy 376 -01101010 Powell 377 -01101010 Stern 378 -01101010 Rich 381 -01101010 Peterson 384 -01101010 Le 384 -01101010 Fleming 387 -01101010 Wasserstein 393 -01101010 McDermott 394 -01101010 D' 401 -01101010 Perry 401 -01101010 Fairfax 403 -01101010 Webster 407 -01101010 Tyson 412 -01101010 Wagner 413 -01101010 Arrow 419 -01101010 Coleman 421 -01101010 Thiokol 422 -01101010 Dillon 430 -01101010 Lane 431 -01101010 Rice 439 -01101010 Elliott 444 -01101010 Cook 454 -01101010 Graham 456 -01101010 IV 460 -01101010 Strauss 460 -01101010 Brennan 461 -01101010 Bernstein 466 -01101010 Weiss 470 -01101010 la 474 -01101010 Morrison 477 -01101010 Field 481 -01101010 Stewart 486 -01101010 Cross 488 -01101010 Cox 495 -01101010 Friedman 506 -01101010 Collins 511 -01101010 Burns 512 -01101010 Glass 513 -01101010 Ryan 517 -01101010 Gates 520 -01101010 Adams 523 -01101010 Mason 524 -01101010 Madison 525 -01101010 Lipper 530 -01101010 Roche 539 -01101010 Fisher 542 -01101010 Edwards 548 -01101010 Webb 555 -01101010 Kaufman 563 -01101010 Andersen 589 -01101010 Simmons 589 -01101010 Schwab 590 -01101010 Rose 594 -01101010 Brooks 621 -01101010 Foster 635 -01101010 Nelson 656 -01101010 Reed 662 -01101010 Russell 663 -01101010 Rogers 664 -01101010 Kelly 667 -01101010 Hamilton 668 -01101010 Gould 671 -01101010 Robinson 674 -01101010 Evans 677 -01101010 Jefferies 688 -01101010 Grant 691 -01101010 Grace 692 -01101010 Wood 742 -01101010 Belgique 756 -01101010 Stone 766 -01101010 Walker 773 -01101010 Murphy 783 -01101010 Parker 786 -01101010 Mitchell 787 -01101010 Rothschild 790 -01101010 Steinberg 812 -01101010 Bennett 817 -01101010 Murray 826 -01101010 Stevens 829 -01101010 Hunt 850 -01101010 Jordan 861 -01101010 Alexander 872 -01101010 Anderson 873 -01101010 Gray 881 -01101010 Fox 882 -01101010 Marshall 883 -01101010 Ward 885 -01101010 Sullivan 889 -01101010 Wells 931 -01101010 Cohen 948 -01101010 Taylor 1011 -01101010 Wang 1036 -01101010 Roberts 1061 -01101010 Little 1068 -01101010 Green 1070 -01101010 Moore 1080 -01101010 Campbell 1090 -01101010 Cooper 1125 -01101010 Gordon 1135 -01101010 Thompson 1139 -01101010 Robertson 1141 -01101010 Clark 1192 -01101010 Hughes 1208 -01101010 Lewis 1243 -01101010 Hudson 1251 -01101010 Allen 1255 -01101010 Ross 1259 -01101010 Phillips 1301 -01101010 Bass 1371 -01101010 Greenspan 1400 -01101010 Maxwell 1412 -01101010 Hall 1475 -01101010 Price 1484 -01101010 Long 1506 -01101010 Turner 1563 -01101010 Williams 1566 -01101010 Simon 1620 -01101010 Wilson 1670 -01101010 Davis 1687 -01101010 Park 1802 -01101010 Morris 1815 -01101010 Kennedy 1898 -01101010 De 1952 -01101010 Young 2014 -01101010 King 2236 -01101010 Wright 2247 -01101010 Miller 2285 -01101010 Hill 2303 -01101010 Brown 2375 -01101010 Lee 2501 -01101010 O' 2676 -01101010 Johnson 3530 -01101010 Baker 3621 -01101010 Smith 4831 -01101010 Bell 3839 -0110101100 Haled 1 -0110101100 Dragas 1 -0110101100 Piencykoski 1 -0110101100 Babangina 1 -0110101100 Kotcher 1 -0110101100 IReagane 1 -0110101100 Woonsang 1 -0110101100 Piersall 1 -0110101100 Buendia 1 -0110101100 Telmer 1 -0110101100 Marie-Louise 1 -0110101100 Rutgaizer 1 -0110101100 Zagalsky 1 -0110101100 acquisitions-hungry 1 -0110101100 Tawney 1 -0110101100 Remus 1 -0110101100 Reyeros 1 -0110101100 Gondek 1 -0110101100 Bourgeault 1 -0110101100 McSwain 1 -0110101100 Krajnovich 1 -0110101100 Baccichet 1 -0110101100 Siraj 1 -0110101100 Cavin 1 -0110101100 Ramaswamy 1 -0110101100 Sahabat 1 -0110101100 Magarik 1 -0110101100 Speck 1 -0110101100 Lavrovsky 1 -0110101100 Lovasz 1 -0110101100 McDunnough 1 -0110101100 Gurdjieff 1 -0110101100 Liebmann/Lawrence 1 -0110101100 Kaleta 1 -0110101100 Schleede 1 -0110101100 Jaywardene 1 -0110101100 Sohr 1 -0110101100 Menna 1 -0110101100 Raif 1 -0110101100 Mamula 1 -0110101100 Enderle 1 -0110101100 Felsch 1 -0110101100 Parham 1 -0110101100 Arcenas 1 -0110101100 KCOP-TV 1 -0110101100 Bergwerk 1 -0110101100 Bordereau 1 -0110101100 Hojjat-ul-islam 1 -0110101100 Tapper 1 -0110101100 Berenbeim 1 -0110101100 Arehart 1 -0110101100 Wenkart 1 -0110101100 Boks 1 -0110101100 Sousatzka 1 -0110101100 Joabe 1 -0110101100 Pochivalov 1 -0110101100 Hosogi 1 -0110101100 Trellu 1 -0110101100 Lohrer 1 -0110101100 Gayoom 1 -0110101100 Machtly 1 -0110101100 Marvan 1 -0110101100 Enroth 1 -0110101100 Srdja 1 -0110101100 Abrams/Smithsonian 1 -0110101100 V.D. 1 -0110101100 Sheu 1 -0110101100 Pickvance 1 -0110101100 el-Sadat 1 -0110101100 Knutsen 1 -0110101100 Dinsmoor 1 -0110101100 Hanff 1 -0110101100 Superannuation 1 -0110101100 Huayta 1 -0110101100 Ilyin 1 -0110101100 Kalthoum 1 -0110101100 deGrasse 1 -0110101100 Loche 1 -0110101100 Al-Assad 1 -0110101100 Docksai 1 -0110101100 Montjar 1 -0110101100 Pio 1 -0110101100 Eichels 1 -0110101100 Neiwirth 1 -0110101100 Kaatz 1 -0110101100 Benanto 1 -0110101100 Crofford 1 -0110101100 Pyanov 1 -0110101100 Kulikhov 1 -0110101100 Kinge 1 -0110101100 Capela 1 -0110101100 Cheves 1 -0110101100 Chuikov 1 -0110101100 Calandia 1 -0110101100 Lorenzetti 1 -0110101100 Chung-Hua 1 -0110101100 Riza 1 -0110101100 Drago 1 -0110101100 Bagaza 1 -0110101100 Boehning 1 -0110101100 Schebil 1 -0110101100 Konstantinov 1 -0110101100 Androkrofus 1 -0110101100 Poltak 1 -0110101100 Radenz 1 -0110101100 Belluzzo 1 -0110101100 Hofstetter 1 -0110101100 Ionescu 1 -0110101100 Chona 1 -0110101100 Heeley 1 -0110101100 Canlas 1 -0110101100 Lubow 1 -0110101100 Meynial 1 -0110101100 Sanguinetti 1 -0110101100 Mikulas 1 -0110101100 Franchi 1 -0110101100 Ehrenberg 1 -0110101100 Ason 1 -0110101100 Martin-type 1 -0110101100 Gerevas 1 -0110101100 Lye 1 -0110101100 Galeazzi 1 -0110101100 self-same 1 -0110101100 Vanya 1 -0110101100 Somozo 1 -0110101100 Magnabosco 1 -0110101100 Fernan-Gomez 1 -0110101100 Divorcee 1 -0110101100 Joel. 1 -0110101100 Utt 1 -0110101100 Ali-type 1 -0110101100 Knigi 1 -0110101100 Cundrick 1 -0110101100 Frolov 1 -0110101100 Kececiler 1 -0110101100 Estensoro 1 -0110101100 Barty 1 -0110101100 Figueres 1 -0110101100 Noone 1 -0110101100 Tussaud 1 -0110101100 Palmen 1 -0110101100 Sabouret 1 -0110101100 Sallys 1 -0110101100 Cicoletti 1 -0110101100 Freundlich 1 -0110101100 Babakarkhel 1 -0110101100 reagan 1 -0110101100 post-and-phone 1 -0110101100 Noordman 1 -0110101100 Brownlow 1 -0110101100 Yemelyanenko 1 -0110101100 Strangeland 1 -0110101100 Waylan 1 -0110101100 Doulgas 1 -0110101100 Pistolesi 1 -0110101100 Ajmi 1 -0110101100 Macis 1 -0110101100 Kasatonov 1 -0110101100 Maladroit 1 -0110101100 Walson 1 -0110101100 Sultanov 1 -0110101100 Doright 1 -0110101100 FINDS 1 -0110101100 Keciciler 1 -0110101100 Starek 1 -0110101100 Riechmann 1 -0110101100 Munos 1 -0110101100 Berenbein 1 -0110101100 Robillard 1 -0110101100 Bircher 1 -0110101100 Terpak 1 -0110101100 as-Samim 1 -0110101100 Gumersindo 1 -0110101100 Kupka 1 -0110101100 Somoza. 1 -0110101100 Raegan 1 -0110101100 Soliva 1 -0110101100 Enayetullah 1 -0110101100 Yablokov 1 -0110101100 Makarios 1 -0110101100 Thieu 1 -0110101100 Tackles 1 -0110101100 Paez 1 -0110101100 Atwan 1 -0110101100 Chesemore 1 -0110101100 Kleintjie 1 -0110101100 establishment/conservative 1 -0110101100 Dumptys 1 -0110101100 Saykin 1 -0110101100 Ahman 1 -0110101100 Horensky 1 -0110101100 Coccoli 1 -0110101100 Chazalettes 1 -0110101100 Leonov 1 -0110101100 Balcer 1 -0110101100 Wolner 1 -0110101100 Ence 1 -0110101100 Merante 1 -0110101100 Tricoire 2 -0110101100 Tabia 2 -0110101100 Koryavin 2 -0110101100 Smits 2 -0110101100 Ranevskaya 2 -0110101100 Telly 2 -0110101100 Al-Aish 2 -0110101100 Kutscher 2 -0110101100 DeLuise 2 -0110101100 Museveni 2 -0110101100 Wollman 2 -0110101100 Slinn 2 -0110101100 Boulet 2 -0110101100 Ratman 2 -0110101100 Killy 2 -0110101100 Steyn 2 -0110101100 Pleites 2 -0110101100 Yeon 2 -0110101100 Hynd 2 -0110101100 Daun 2 -0110101100 Zhukov 2 -0110101100 Muniz 2 -0110101100 Roget 2 -0110101100 Pitcairn 2 -0110101100 Kaina 2 -0110101100 Koperniak 2 -0110101100 Sergeyev 2 -0110101100 Nazlet 2 -0110101100 Arkaev 2 -0110101100 Ruchang 2 -0110101100 Idol 2 -0110101100 Chumaceiro 2 -0110101100 Lynds 2 -0110101100 Husby 2 -0110101100 Dowager 2 -0110101100 Duangduan 2 -0110101100 Kucher 2 -0110101100 Golann 2 -0110101100 Kountche 2 -0110101100 Shake-Speare 2 -0110101100 Chamula 2 -0110101100 Ruinart 2 -0110101100 Nerva 2 -0110101100 Filiciak 2 -0110101100 Huega 2 -0110101100 Nasution 2 -0110101100 Escobedo 2 -0110101100 Vender 2 -0110101100 McMeekin 2 -0110101100 Sostkowski 2 -0110101100 DePetris 2 -0110101100 Reagan. 2 -0110101100 Eugenie 2 -0110101100 Narmin 2 -0110101100 Wardak 2 -0110101100 Olcese 2 -0110101100 Zamir 2 -0110101100 Optometrists 2 -0110101100 Atakol 2 -0110101100 Klimt 2 -0110101100 Dehaene 2 -0110101100 Collado 2 -0110101100 Ranasinghe 2 -0110101100 Weisskopf 2 -0110101100 Sellenraad 2 -0110101100 Shehu 2 -0110101100 Nordique 2 -0110101100 Canales 2 -0110101100 Seeley 2 -0110101100 Adriani 2 -0110101100 Dada 2 -0110101100 Ringsby 2 -0110101100 Wecht 2 -0110101100 Heren 2 -0110101100 Vencovsky 2 -0110101100 Panov 2 -0110101100 Lebedev 2 -0110101100 Oncebay 2 -0110101100 Obukhov 2 -0110101100 Guilden 2 -0110101100 Morvan 2 -0110101100 Olgin 2 -0110101100 Asmus 2 -0110101100 Knepper 2 -0110101100 Ironcoke 2 -0110101100 Hochsprung 2 -0110101100 Bonanni 2 -0110101100 Banda 2 -0110101100 Voegtli 3 -0110101100 Papone 3 -0110101100 Annis 3 -0110101100 Tchuruk 3 -0110101100 Shaich 3 -0110101100 Lureen 3 -0110101100 Arrau 3 -0110101100 Koivisto 3 -0110101100 Astafiev 3 -0110101100 Zolotarevsky 3 -0110101100 Durante 3 -0110101100 Urcuyo 3 -0110101100 Clutter 3 -0110101100 Illyin 3 -0110101100 Kniga 3 -0110101100 Sumitro 3 -0110101100 Piancone 3 -0110101100 Mermaz 3 -0110101100 Gottshall 3 -0110101100 Szymanski 3 -0110101100 Werder 3 -0110101100 Volel 3 -0110101100 Fulgoni 3 -0110101100 Delgadillo 3 -0110101100 Werwath 3 -0110101100 Handlin 3 -0110101100 Tolbukhin 3 -0110101100 Noblitt 3 -0110101100 Doaker 3 -0110101100 Boiret 3 -0110101100 Guillem 3 -0110101100 Kimberling 3 -0110101100 Macbride 3 -0110101100 Buyoya 3 -0110101100 Pretorius 3 -0110101100 Glancz 3 -0110101100 Sebe 3 -0110101100 Urien 3 -0110101100 Timofeyev 3 -0110101100 Mazzaferro 3 -0110101100 Sucre 3 -0110101100 Kramarsky 3 -0110101100 Reagan/Bush 3 -0110101100 Bertero 3 -0110101100 Maberley 3 -0110101100 Troccoli 3 -0110101100 Trusteeship 4 -0110101100 Adolphus 4 -0110101100 Allagash 4 -0110101100 Riber 4 -0110101100 Roa 4 -0110101100 Bevin 4 -0110101100 Mobuto 4 -0110101100 Oquendo 4 -0110101100 Blandness 4 -0110101100 Habre 4 -0110101100 Doan 4 -0110101100 Bovary 4 -0110101100 Riera 4 -0110101100 Nachtman 4 -0110101100 Mwinyi 4 -0110101100 Bartle 4 -0110101100 Benn 4 -0110101100 Diouf 4 -0110101100 Betso 4 -0110101100 Mannix 4 -0110101100 Masvidal 4 -0110101100 Pesaro 4 -0110101100 Goldstock 4 -0110101100 Antonov 4 -0110101100 Braginsky 4 -0110101100 Yanquis 4 -0110101100 Juvenal 4 -0110101100 Sukenick 5 -0110101100 Macklis 5 -0110101100 Bossio 5 -0110101100 Karmal 5 -0110101100 Casty 5 -0110101100 Willeford 5 -0110101100 Levant 5 -0110101100 Curly 5 -0110101100 Porizkova 5 -0110101100 Ambani 5 -0110101100 Bowker 5 -0110101100 Formenton 5 -0110101100 Spriggs 5 -0110101100 Makarov 5 -0110101100 Pokrovskii 5 -0110101100 Al-Fayed 5 -0110101100 Ferrovie 6 -0110101100 Babangida 6 -0110101100 Okita 6 -0110101100 Balaguer 6 -0110101100 Niness 6 -0110101100 Ballve 6 -0110101100 Jamal 6 -0110101100 Kadoorie 6 -0110101100 Lasser 6 -0110101100 Boulroud 6 -0110101100 Surges 6 -0110101100 Rake 6 -0110101100 Iakovos 7 -0110101100 Leavey 7 -0110101100 Trejo 7 -0110101100 Lightstone 7 -0110101100 Beaton 7 -0110101100 Andersons 7 -0110101100 Najib 7 -0110101100 Benackova 7 -0110101100 Queler 7 -0110101100 Kosygin 8 -0110101100 Gordimer 8 -0110101100 Fossey 8 -0110101100 Posluns 8 -0110101100 Wishnick 8 -0110101100 Rigas 9 -0110101100 Montand 9 -0110101100 Skeen 9 -0110101100 Sobey 9 -0110101100 al-Assad 10 -0110101100 Bonaparte 10 -0110101100 Gooden 10 -0110101100 Mahony 10 -0110101100 Solimon 10 -0110101100 Cerezo 10 -0110101100 Wissa 11 -0110101100 Shorr 11 -0110101100 Jemima 11 -0110101100 Te 11 -0110101100 Abbado 11 -0110101100 Samaranch 11 -0110101100 Barnala 11 -0110101100 Stroessner 12 -0110101100 Rhee 12 -0110101100 Parrot 12 -0110101100 Azcona 12 -0110101100 Trichet 12 -0110101100 Abalkin 13 -0110101100 Mikulic 13 -0110101100 Perignon 13 -0110101100 Lefebvre 13 -0110101100 Chadli 13 -0110101100 Betancur 13 -0110101100 Gruet 13 -0110101100 Frel 14 -0110101100 Gotti 14 -0110101100 Moncrief 17 -0110101100 Malle 17 -0110101100 Kokes 18 -0110101100 Hoffa 19 -0110101100 Dumpty 20 -0110101100 Hoxsey 20 -0110101100 Zaitsev 20 -0110101100 Evren 21 -0110101100 Andreotti 22 -0110101100 Biro 23 -0110101100 Dellums 24 -0110101100 Husak 25 -0110101100 Cossiga 26 -0110101100 Berra 27 -0110101100 Manglapus 29 -0110101100 Gemayel 29 -0110101100 Marcinkus 29 -0110101100 Zagat 30 -0110101100 Parton 31 -0110101100 Wilde 32 -0110101100 Peron 35 -0110101100 Ershad 36 -0110101100 Ceausescu 40 -0110101100 Jayewardene 41 -0110101100 Sadat 44 -0110101100 Flick 46 -0110101100 Tutu 46 -0110101100 Swaggart 47 -0110101100 Billes 52 -0110101100 Suharto 53 -0110101100 Allende 55 -0110101100 Najibullah 58 -0110101100 Hague 66 -0110101100 Barco 73 -0110101100 Salk 76 -0110101100 Fairness 77 -0110101100 Somoza 84 -0110101100 Duvalier 88 -0110101100 Smithsonian 92 -0110101100 Waldheim 97 -0110101100 Assad 97 -0110101100 Gardini 102 -0110101100 Brezhnev 123 -0110101100 Reichmann 142 -0110101100 Duarte 158 -0110101100 Mubarak 160 -0110101100 Delvalle 167 -0110101100 Brookings 190 -0110101100 Eisenhower 191 -0110101100 Alfonsin 195 -0110101100 Chiang 199 -0110101100 Arias 257 -0110101100 Belzberg 260 -0110101100 Zia 262 -0110101100 Pritzker 266 -0110101100 Haft 279 -0110101100 Sarney 366 -0110101100 Hoover 399 -0110101100 Chun 672 -0110101100 Nixon 715 -0110101100 Aquino 866 -0110101100 Carter 1963 -0110101100 Reagan 15529 -01101011010 Clairvaux 1 -01101011010 MIFA 1 -01101011010 Dahlkemper 1 -01101011010 Voygt 1 -01101011010 Pauper 1 -01101011010 Firday 1 -01101011010 Goering 1 -01101011010 USACafe 1 -01101011010 withholding/Let 1 -01101011010 Shuste 1 -01101011010 Laborer 1 -01101011010 IAFP 1 -01101011010 Heidy 1 -01101011010 Bartholdi 1 -01101011010 Total-CFP 1 -01101011010 CSN&Y 1 -01101011010 Gralla 1 -01101011010 MircoGeneSys 1 -01101011010 Ndjamena 1 -01101011010 Bancal 1 -01101011010 Neena 1 -01101011010 Toojay 1 -01101011010 MCA-TV 1 -01101011010 Mussorgsky/Ravel 1 -01101011010 Canteloube 1 -01101011010 Kacoo 1 -01101011010 Tavernier 1 -01101011010 Alleghey 1 -01101011010 Goldy 1 -01101011010 Delchamp 1 -01101011010 Gondrom 1 -01101011010 CENCARD 1 -01101011010 rael 1 -01101011010 DaimlerBenz 1 -01101011010 Wegman 1 -01101011010 Servicemen 1 -01101011010 Rieti/Balanchine 1 -01101011010 HealthWay 1 -01101011010 Ra 1 -01101011010 RhoChem 1 -01101011010 Kozka 1 -01101011010 Genentch 1 -01101011010 Memotek 1 -01101011010 w/Elliott 1 -01101011010 KCSB 1 -01101011010 AT&T-Philip 1 -01101011010 Goldbach 1 -01101011010 Mert 1 -01101011010 Allgeheny 1 -01101011010 Rike 1 -01101011010 Allis-Chalmer 1 -01101011010 Simonides 1 -01101011010 Televisa-Mexico 1 -01101011010 Mussorgky 1 -01101011010 Spohr 1 -01101011010 Christ-Craft 1 -01101011010 Athlete 1 -01101011010 Antolloti 1 -01101011010 Kaitek 1 -01101011010 HiPort 1 -01101011010 Skinflint 1 -01101011010 Eriez 1 -01101011010 Bigg 1 -01101011010 Debrett 1 -01101011010 Gazzarri 1 -01101011010 E-8A 1 -01101011010 Fortunoff 1 -01101011010 CDN 1 -01101011010 Lautrec 1 -01101011010 theparty 1 -01101011010 CoreState 1 -01101011010 Wheeling-Pittburgh 1 -01101011010 Upright 1 -01101011010 Tolentino 1 -01101011010 Occam 1 -01101011010 Beausoleil 1 -01101011010 Anitecs 1 -01101011010 Ginnie-Mae 1 -01101011010 Merida 1 -01101011010 Runolf 1 -01101011010 withDrexel 1 -01101011010 Tawain 1 -01101011010 Bamburger 1 -01101011010 Drunkard 1 -01101011010 Knight-Ridders 1 -01101011010 speedskater 1 -01101011010 Sneeden 1 -01101011010 Ebbie 1 -01101011010 Austrialia 1 -01101011010 NII 1 -01101011010 Uniroyal/Goodrich 1 -01101011010 Wagnall 1 -01101011010 Jergen 1 -01101011010 -it 1 -01101011010 Lavrova 1 -01101011010 Tawian 1 -01101011010 Servco 1 -01101011010 Spanky 1 -01101011010 AMFAR 1 -01101011010 Banack 1 -01101011010 Mr.Trott 1 -01101011010 Burrelle 1 -01101011010 Candada 1 -01101011010 Gayfer 1 -01101011010 Joslin 1 -01101011010 Howell/Columbia 1 -01101011010 Dataproduct 1 -01101011010 blindman 1 -01101011010 Gramm-Rudmann 1 -01101011010 Murni 1 -01101011010 Chyrsler 1 -01101011010 Brecht/Weill 1 -01101011010 145-pounder 1 -01101011010 Jobson 1 -01101011010 Capell 1 -01101011010 Urbikas 1 -01101011010 could-be 1 -01101011010 might-be 1 -01101011010 Bristol-Myer 1 -01101011010 Blomingdale 1 -01101011010 Sraffa 1 -01101011010 Fiorella 1 -01101011010 Jo-Cid 1 -01101011010 News-Record 1 -01101011010 non-children 1 -01101011010 Sikhdom 1 -01101011010 BioScan 1 -01101011010 Socanov 1 -01101011010 Wlison 1 -01101011010 Swainson 1 -01101011010 Friedreich 1 -01101011010 WFAA 1 -01101011010 Umar 1 -01101011010 Wolferman 1 -01101011010 Fishbach 1 -01101011010 Jehova 1 -01101011010 Scripp 1 -01101011010 DGF 1 -01101011010 ColoradoUte 1 -01101011010 Chilled-food 1 -01101011010 McKid 1 -01101011010 Ionic 1 -01101011010 Bakey 1 -01101011010 Meri 1 -01101011010 Timoleon 1 -01101011010 Siemen 1 -01101011010 Bendictine 1 -01101011010 Alladin 1 -01101011010 Alpines 1 -01101011010 Reye 2 -01101011010 Yatchan 2 -01101011010 Cahan 2 -01101011010 Trucker 2 -01101011010 Ivar 2 -01101011010 Demel 2 -01101011010 Whitco 2 -01101011010 Visconti 2 -01101011010 McAlpin 2 -01101011010 Gericault 2 -01101011010 Doeyan 2 -01101011010 Harker 2 -01101011010 Tove 2 -01101011010 Univanilla 2 -01101011010 Lalo 2 -01101011010 Rimsky-Korsakov 2 -01101011010 Guderian 2 -01101011010 Zachy 2 -01101011010 SpaghettiO 2 -01101011010 Eilenberger 2 -01101011010 Mourly 2 -01101011010 Olewine 2 -01101011010 Magnard 2 -01101011010 WDIV 2 -01101011010 Regardie 2 -01101011010 PepsiCo. 2 -01101011010 Graun 2 -01101011010 TCG 2 -01101011010 Bujumbura 2 -01101011010 Avie 2 -01101011010 TSSSeedman 2 -01101011010 Cabela 2 -01101011010 WHTQ 2 -01101011010 Tott 2 -01101011010 Bumper 2 -01101011010 Beaumarchais 2 -01101011010 Scipsco 2 -01101011010 Nemir 2 -01101011010 Legionnaire 2 -01101011010 Serling 2 -01101011010 Phool 2 -01101011010 Waldemar 2 -01101011010 Boscov 2 -01101011010 Mr.Bush 2 -01101011010 BayBank 2 -01101011010 Tomov 2 -01101011010 Heeeere 2 -01101011010 SOB 2 -01101011010 Judyth 2 -01101011010 VOB 2 -01101011010 Woodsmen 2 -01101011010 Vernell 2 -01101011010 Charmin 2 -01101011010 Gounod 3 -01101011010 Ukrop 3 -01101011010 Baybry 3 -01101011010 Annabelle 3 -01101011010 NSBU 3 -01101011010 Zatarain 3 -01101011010 Mutter 3 -01101011010 Arkadelphia 3 -01101011010 Massine 3 -01101011010 Chabrier 3 -01101011010 Solly 3 -01101011010 Blender 3 -01101011010 Petromineral 3 -01101011010 Coor 3 -01101011010 Bauersfeld 3 -01101011010 Loew 3 -01101011010 Addenbrooke 3 -01101011010 Kroch 3 -01101011010 TSS-Seedman 3 -01101011010 Unilink 3 -01101011010 Comparex 3 -01101011010 pharaoh 3 -01101011010 Airdrome 3 -01101011010 Stockmen 3 -01101011010 WBEZ 3 -01101011010 Ellio 3 -01101011010 Bunyan 3 -01101011010 WLUP 3 -01101011010 Hellmann 4 -01101011010 Ninfa 4 -01101011010 Roundy 4 -01101011010 Chasen 4 -01101011010 Planter 4 -01101011010 Iandoli 4 -01101011010 Flex-Fund 4 -01101011010 Nijinsky 4 -01101011010 Biolab 4 -01101011010 Hahne 4 -01101011010 Lyell 4 -01101011010 Cleveland-Cliff 4 -01101011010 Psychiatrist 5 -01101011010 WidgeTech 5 -01101011010 Aesop 5 -01101011010 Smetana 5 -01101011010 Brentano 5 -01101011010 Teltrend 5 -01101011010 Perusahaan 5 -01101011010 Garfinckel 5 -01101011010 Mussorgsky 5 -01101011010 Jeno 5 -01101011010 Smitty 6 -01101011010 JB 6 -01101011010 Shopper 6 -01101011010 Gardener 6 -01101011010 Taster 6 -01101011010 Babbage 6 -01101011010 Regine 6 -01101011010 Annabel 6 -01101011010 Abegi 6 -01101011010 Banquo 6 -01101011010 Applebee 7 -01101011010 Filmmaker 7 -01101011010 Peet 7 -01101011010 Wag 7 -01101011010 Swensen 7 -01101011010 Khlebnikov 7 -01101011010 Harrod 7 -01101011010 Gilbey 7 -01101011010 Seamen 8 -01101011010 Levolor 8 -01101011010 Proprietor 8 -01101011010 Popeye 8 -01101011010 Hodgkin 8 -01101011010 Totino 9 -01101011010 Manufacturer 9 -01101011010 Bizet 9 -01101011010 Zabar 9 -01101011010 Darty 9 -01101011010 Jimbo 9 -01101011010 Sportsman 10 -01101011010 Luby 10 -01101011010 Pickett 10 -01101011010 Robby 10 -01101011010 Tippy 11 -01101011010 Moskatel 11 -01101011010 Kristy 11 -01101011010 Erol 12 -01101011010 Scribner 12 -01101011010 Loehmann 13 -01101011010 Jehovah 13 -01101011010 Massenet 13 -01101011010 Burdine 13 -01101011010 Longshoremen 15 -01101011010 Entenmann 16 -01101011010 Allie 16 -01101011010 Luskin 16 -01101011010 Pimm 17 -01101011010 Joske 18 -01101011010 Erma 19 -01101011010 Viewer 19 -01101011010 Skipper 21 -01101011010 Harrah 22 -01101011010 Beeba 25 -01101011010 Freddy 27 -01101011010 Oshman 29 -01101011010 Dewar 30 -01101011010 Winchell 31 -01101011010 Kaposi 38 -01101011010 Bennigan 42 -01101011010 Hardee 45 -01101011010 Chili 49 -01101011010 Shoney 50 -01101011010 Scotty 50 -01101011010 Boatmen 54 -01101011010 Filene 55 -01101011010 Godfather 56 -01101011010 Mervyn 63 -01101011010 Furr 65 -01101011010 Chesebrough-Pond 69 -01101011010 Domino 79 -01101011010 Pantera 89 -01101011010 Borman 91 -01101011010 Chi-Chi 93 -01101011010 Arby 98 -01101011010 Reader 106 -01101011010 Claire 116 -01101011010 Denny 159 -01101011010 Heck 180 -01101011010 Bloomingdale 257 -01101011010 Donoghue 259 -01101011010 Cocoa 259 -01101011010 Alzheimer 262 -01101011010 Barron 275 -01101011010 Sotheby 304 -01101011010 Wendy 385 -01101011010 Fireman 482 -01101011010 Poor 2619 -01101011010 Moody 3618 -01101011011 bottle-return 1 -01101011011 Market-indexed 1 -01101011011 endoscopic 1 -01101011011 Then-House 1 -01101011011 Brinkmans 1 -01101011011 long-booming 1 -01101011011 lower-denomination 1 -01101011011 155,280 1 -01101011011 Dingell-Markey 1 -01101011011 risk-notification 1 -01101011011 1949-1966 1 -01101011011 Schottensteins 1 -01101011011 pre-mid-1984 1 -01101011011 Immunized 1 -01101011011 Wage-increase 1 -01101011011 near-mystical 1 -01101011011 Treaasury 1 -01101011011 IIlinois 1 -01101011011 Kennedy-Donnelly 1 -01101011011 First-mortgage 1 -01101011011 human-animal 1 -01101011011 Government-backed 1 -01101011011 noncall 1 -01101011011 dollar-clearing 1 -01101011011 commercial-broadcasting 1 -01101011011 government-corporate 1 -01101011011 triple-A/double-A 1 -01101011011 openend 1 -01101011011 Takanawa 1 -01101011011 Bentsen-Danforth 1 -01101011011 896-page 1 -01101011011 mint-condition 1 -01101011011 private-college 1 -01101011011 Tomart 1 -01101011011 three-feather 1 -01101011011 individul 1 -01101011011 still-unposted 1 -01101011011 inflation-centered 1 -01101011011 gourmet-style 1 -01101011011 Low-risk 1 -01101011011 Mexican-issued 1 -01101011011 then-Transportation 1 -01101011011 4,462,847 1 -01101011011 Large-denominated 1 -01101011011 investor-foresters 1 -01101011011 Free-choice 1 -01101011011 layabout 1 -01101011011 Muncipal 1 -01101011011 Minimum-tax 1 -01101011011 mixed-bag 1 -01101011011 Build-nothing 1 -01101011011 72,000-subscriber 1 -01101011011 Swaggarts 1 -01101011011 strike-Chrysler 1 -01101011011 anti-lobbyist 1 -01101011011 promissary 1 -01101011011 Ortenbergs 1 -01101011011 Large-denomination 1 -01101011011 prevaili 1 -01101011011 muncipial 1 -01101011011 rumor-rife 1 -01101011011 Short-dated 1 -01101011011 ex-Defense 1 -01101011011 business-venture 1 -01101011011 miniflap 1 -01101011011 CPSC-prodding 1 -01101011011 ex-PTL 1 -01101011011 150-year 1 -01101011011 Papandreou-Ozal 1 -01101011011 96,273 1 -01101011011 drought-led 1 -01101011011 Special-tax 1 -01101011011 Government/Corporate 2 -01101011011 then-Majority 2 -01101011011 Tresury 2 -01101011011 supplemental-spending 2 -01101011011 Mark-denominated 2 -01101011011 KFW 2 -01101011011 1982-1987 2 -01101011011 selling-price 2 -01101011011 government/corporate 2 -01101011011 Wirth-Graham 2 -01101011011 Staffordshire 2 -01101011011 thrift-reform 2 -01101011011 health-regulation 2 -01101011011 Ex-Treasury 3 -01101011011 EDF 3 -01101011011 Baccalaureate 3 -01101011011 Blind-pool 3 -01101011011 EII 4 -01101011011 then-Labor 4 -01101011011 Bearer 4 -01101011011 CCH 5 -01101011011 then-Treasury 5 -01101011011 Collateralized 5 -01101011011 Kennedy-Hawkins 6 -01101011011 Indexed 6 -01101011011 Weighted 10 -01101011011 1982-87 12 -01101011011 Mortgage-backed 18 -01101011011 Refcorp 29 -01101011011 Serial 55 -01101011011 Maturing 76 -01101011011 CRB 84 -01101011011 FICO 89 -01101011011 Treasury 12095 -01101011011 WPPSS 292 -0110101110 Bass-Bell 1 -0110101110 Effekten 1 -0110101110 Meintzer 1 -0110101110 Christatos 1 -0110101110 SOULIE 1 -0110101110 BAIN 1 -0110101110 J.Duane 1 -0110101110 UTZ 1 -0110101110 McBass 1 -0110101110 Mericka 1 -0110101110 Martelaere 1 -0110101110 Snakard 1 -0110101110 Kilsheimer 1 -0110101110 Monigle 1 -0110101110 Hodder 1 -0110101110 BECK 1 -0110101110 8c 1 -0110101110 Ronca 1 -0110101110 Ligget 1 -0110101110 Quadrex-British 1 -0110101110 McClennen 1 -0110101110 Salvato 1 -0110101110 Ochsner 1 -0110101110 Moot 1 -0110101110 Leventhol 1 -0110101110 Vardaman 1 -0110101110 Goldrich 1 -0110101110 Tuffier-Ravier-Py 1 -0110101110 ROGAL 1 -0110101110 Deslauriers 1 -0110101110 ZENTRALSPARKASSE 1 -0110101110 Germeshausen 1 -0110101110 Ress 1 -0110101110 ISAAC 1 -0110101110 Flattau 1 -0110101110 Munchmeyer 1 -0110101110 Myserson 1 -0110101110 In-the-Red 1 -0110101110 Fireside/Simon 1 -0110101110 Dalton/Barnes 1 -0110101110 Schnobrich 1 -0110101110 Otterman 1 -0110101110 Ehrlich-Bober 1 -0110101110 Tenner 1 -0110101110 Fleichman 1 -0110101110 Kulicke 1 -0110101110 Kammholtz 1 -0110101110 Seabee 1 -0110101110 Bijker 1 -0110101110 Austern 1 -0110101110 Salons 1 -0110101110 Nutty 1 -0110101110 Lohnes 1 -0110101110 KAI 1 -0110101110 DUPONT 1 -0110101110 Merel 1 -0110101110 3005 1 -0110101110 Kushinsky 1 -0110101110 4047 1 -0110101110 bain 1 -0110101110 BOOKE 1 -0110101110 HELMERICH 1 -0110101110 Labouiss 1 -0110101110 PHILP 1 -0110101110 Shacknai 1 -0110101110 Richardsons 1 -0110101110 Electro-Optical 1 -0110101110 MEESCHAERT-ROUSSELLE 1 -0110101110 Gumpertz 1 -0110101110 Kennels 1 -0110101110 Ruffa 1 -0110101110 Camins 1 -0110101110 McNeily 1 -0110101110 Constancio 1 -0110101110 Elders-Scottish 1 -0110101110 DesLauriers 1 -0110101110 Nicholaus 1 -0110101110 Trebilcock 1 -0110101110 Deleeuw 1 -0110101110 Zomback 1 -0110101110 LUFKIN 1 -0110101110 Kirschenbaum 1 -0110101110 Boenning 1 -0110101110 Yahn 1 -0110101110 Spritzer 1 -0110101110 Wickes-Gulf 1 -0110101110 LEDER 1 -0110101110 Piaker 1 -0110101110 Martire 1 -0110101110 Publications/Harper 1 -0110101110 AFG-Wagner 1 -0110101110 Seasongood 1 -0110101110 Remer-Ribolow 1 -0110101110 Geto 1 -0110101110 Deklewa 1 -0110101110 GALLAGHER 1 -0110101110 Sawdon 1 -0110101110 Agio 1 -0110101110 NEWMARK 1 -0110101110 Outwater 1 -0110101110 LEGGETT 1 -0110101110 Bricks 1 -0110101110 VINER 1 -0110101110 POMEROY 1 -0110101110 Plasser 1 -0110101110 Fonderie 1 -0110101110 HORMEL 1 -0110101110 Knoedler 1 -0110101110 Weinick 1 -0110101110 D.H.IBlair 1 -0110101110 Draperies 1 -0110101110 Routiere 1 -0110101110 Dreiseszun 1 -0110101110 UPHAM 1 -0110101110 AFG/Wagner 1 -0110101110 RD 1 -0110101110 Orci 1 -0110101110 GERIATRIC 1 -0110101110 CAMBRIAN 1 -0110101110 Shaveck 1 -0110101110 PENINSULAR 1 -0110101110 Newhoff 1 -0110101110 Linklaters 1 -0110101110 McCooey 1 -0110101110 Quarles 1 -0110101110 Rokeach 1 -0110101110 Taintor 1 -0110101110 CUSHMAN 1 -0110101110 WALKER-GOODERHAM 1 -0110101110 UNIROYAL 1 -0110101110 Fearnow 1 -0110101110 MICROELECTRONICS 1 -0110101110 Wigram 1 -0110101110 Varon 1 -0110101110 Widgets 1 -0110101110 Wrubel 1 -0110101110 Nim 1 -0110101110 McMeel 1 -0110101110 Press/Simon 1 -0110101110 Lullin 1 -0110101110 Predictor 1 -0110101110 Lubricity 1 -0110101110 Roth/Horner 1 -0110101110 Burkholz 1 -0110101110 Mininni 1 -0110101110 McAliley 1 -0110101110 TBWA/Kerlick 1 -0110101110 Steans 1 -0110101110 106-b 1 -0110101110 Yamin 1 -0110101110 FRASER 1 -0110101110 McPheeters 1 -0110101110 GMB 1 -0110101110 Myerson/Allen 1 -0110101110 Warney 1 -0110101110 Severson 1 -0110101110 Lipshy 1 -0110101110 ARBITRAGER 1 -0110101110 Hitchens 1 -0110101110 Mathison 1 -0110101110 Milley 1 -0110101110 Haskett 1 -0110101110 OWENS 1 -0110101110 Kariku 1 -0110101110 Zeidman 1 -0110101110 BOGGS 1 -0110101110 Govaars 1 -0110101110 McIntee 1 -0110101110 Babcox 1 -0110101110 Guiditta 1 -0110101110 Newberger 1 -0110101110 Gianettino 1 -0110101110 Smaedt 1 -0110101110 Raffinage 1 -0110101110 Krinsky 1 -0110101110 DuCanto 1 -0110101110 THORNTON 1 -0110101110 Serna 1 -0110101110 Alsberg 1 -0110101110 Olgilvy 1 -0110101110 Rinsoz 1 -0110101110 Breakfast/Bees 1 -0110101110 Tawa 1 -0110101110 PaineWebber/Young 1 -0110101110 Liskow 1 -0110101110 Haegglof 1 -0110101110 J.P.MORGAN 1 -0110101110 Schriver 1 -0110101110 832444-2 1 -0110101110 Tsumura 1 -0110101110 Secrest 1 -0110101110 Hutchins-Young 1 -0110101110 henry 1 -0110101110 Beveridge 1 -0110101110 Simien 1 -0110101110 Smullian 1 -0110101110 Abbet 1 -0110101110 Golenbock 1 -0110101110 Griner-Cuesta 1 -0110101110 Lemely 1 -0110101110 Mistui 1 -0110101110 DeLeeuw 1 -0110101110 Vereins 1 -0110101110 Wieden 1 -0110101110 D-15 1 -0110101110 Bael 1 -0110101110 Trinkhaus 1 -0110101110 Perrachon 1 -0110101110 Bergvall 1 -0110101110 Whiteaker 1 -0110101110 Weber-Lipshie 1 -0110101110 Cornrows 1 -0110101110 Gunder 1 -0110101110 Kolesar 1 -0110101110 Cristini 1 -0110101110 Feit 1 -0110101110 vinted 1 -0110101110 Weinress 1 -0110101110 Shinkin 1 -0110101110 Tathum-Laird 1 -0110101110 Latina-Finanza 1 -0110101110 BAUSCH 1 -0110101110 Sta. 1 -0110101110 RECKITT 1 -0110101110 Starsky 1 -0110101110 Bracewell 1 -0110101110 ERNST 1 -0110101110 Olliff 1 -0110101110 SCHMIDT 1 -0110101110 Wassendorf 1 -0110101110 Hochreiter 1 -0110101110 Larroca 1 -0110101110 UBS-Philips 1 -0110101110 Durmer 1 -0110101110 Crosser 1 -0110101110 Handels- 1 -0110101110 Gace 1 -0110101110 Ruckert 1 -0110101110 Bessie/Harper 1 -0110101110 Garnsey 1 -0110101110 Altheimer 1 -0110101110 life-wonderer 1 -0110101110 Buttle 1 -0110101110 Richardt-Alyn 1 -0110101110 AEBI 1 -0110101110 GISLER 1 -0110101110 STALDER 1 -0110101110 Telefonbau 1 -0110101110 Wolgemuth 1 -0110101110 Gisler 1 -0110101110 Upman 1 -0110101110 Lubars 1 -0110101110 Petigrow 1 -0110101110 Bromagen 1 -0110101110 DHB 1 -0110101110 Hambrecth 1 -0110101110 Rounick 1 -0110101110 C.E.M. 1 -0110101110 Wallack 1 -0110101110 MERRYLAND 1 -0110101110 Sheshuoff 1 -0110101110 Relais 1 -0110101110 Texana 1 -0110101110 MultiBanc 1 -0110101110 Petrol 1 -0110101110 SABLE 1 -0110101110 Bary 1 -0110101110 Jaffin 1 -0110101110 Bass/Yager 1 -0110101110 Glauchau 1 -0110101110 Swidler 1 -0110101110 Yoss 1 -0110101110 Werth 1 -0110101110 Margeotes/Fertitta 1 -0110101110 Heher 1 -0110101110 Devans 1 -0110101110 Yellen 1 -0110101110 Books/Simon 1 -0110101110 Stinky 1 -0110101110 Frischer 1 -0110101110 Stirrat 1 -0110101110 Modjeski 1 -0110101110 Merritt-Chapman 1 -0110101110 Cockerham 1 -0110101110 Rowman 1 -0110101110 Jadow 1 -0110101110 Midhudson 1 -0110101110 Ornelas 1 -0110101110 Koski 1 -0110101110 Spechthrie 1 -0110101110 Soghigian 1 -0110101110 Bondo 1 -0110101110 DBV 1 -0110101110 Hesselbart 1 -0110101110 Chudnoff 1 -0110101110 BURNUP 1 -0110101110 ContiCarriers 1 -0110101110 Maertelaere 1 -0110101110 Feeley 1 -0110101110 Bingley 1 -0110101110 Teraoka 1 -0110101110 Tabb 1 -0110101110 LEA 1 -0110101110 Wayne/Luckie 1 -0110101110 Jurgovan 1 -0110101110 Programas 1 -0110101110 Karli 1 -0110101110 Parella 1 -0110101110 105s 1 -0110101110 Cederquist/Young 1 -0110101110 Books/Harper 1 -0110101110 Prowse 1 -0110101110 Arisohn 1 -0110101110 Simmermacher 2 -0110101110 WHITBREAD 2 -0110101110 Holleb 2 -0110101110 Coutts 2 -0110101110 Morinaga 2 -0110101110 Itoman 2 -0110101110 WEDNESDAY 2 -0110101110 Beaverlodge 2 -0110101110 McChurner 2 -0110101110 Marymount 2 -0110101110 Farzin 2 -0110101110 OLYMPIA 2 -0110101110 Gerschel 2 -0110101110 Durstine 2 -0110101110 Brimberg 2 -0110101110 Aronsohn 2 -0110101110 Bayern 2 -0110101110 LeBranche 2 -0110101110 Pedone 2 -0110101110 Raintree 2 -0110101110 Laventhal 2 -0110101110 Identification 2 -0110101110 World-Telegram 2 -0110101110 Frackville 2 -0110101110 Ariffin 2 -0110101110 Poswick 2 -0110101110 FORSTMANN 2 -0110101110 Antonow 2 -0110101110 Stargatt 2 -0110101110 Wittman 2 -0110101110 McEnte 2 -0110101110 Drybrough 2 -0110101110 Strutt 2 -0110101110 STROOCK 2 -0110101110 Kamerow 2 -0110101110 Sturge 2 -0110101110 McMicking 2 -0110101110 Buccino 2 -0110101110 Servais 2 -0110101110 CORROON 2 -0110101110 Abacus 2 -0110101110 Oberst 2 -0110101110 Blackfield 2 -0110101110 Endres 2 -0110101110 Behrhorst 2 -0110101110 Bollenbacher 2 -0110101110 Petrini 2 -0110101110 Rhin 2 -0110101110 Tellier 2 -0110101110 6-ranked 2 -0110101110 Fedrau 2 -0110101110 Kommunikations 2 -0110101110 Schnittman 2 -0110101110 MacManus 2 -0110101110 CORK 2 -0110101110 Cayzac 2 -0110101110 Hatchards 2 -0110101110 Kobs 2 -0110101110 Perrella 2 -0110101110 USPA 2 -0110101110 Rofe 2 -0110101110 INSPECTION 2 -0110101110 Consolidated-Tomoka 2 -0110101110 Margaretten 2 -0110101110 NRI 2 -0110101110 Kalis 2 -0110101110 Hirschl 2 -0110101110 Carret 2 -0110101110 Flornoy 2 -0110101110 Hartger 2 -0110101110 Aarons 2 -0110101110 ICU 2 -0110101110 Cruttenden 2 -0110101110 Metrolina 2 -0110101110 Ketchum/Hicks 2 -0110101110 Ronquillo 2 -0110101110 Informaciones 2 -0110101110 Althin 2 -0110101110 Giuffre 2 -0110101110 Nerval 2 -0110101110 Sudler 2 -0110101110 Huddleson 2 -0110101110 Josepthal 2 -0110101110 Hambricht 2 -0110101110 Shalov 2 -0110101110 Snyder-Reade 2 -0110101110 Byoir 2 -0110101110 Griffinger 2 -0110101110 Stoess 2 -0110101110 Stills 2 -0110101110 McNall 2 -0110101110 Dunwody 2 -0110101110 Jorden 2 -0110101110 Olle 2 -0110101110 Carpano 2 -0110101110 Heldman 2 -0110101110 Chanco 2 -0110101110 Forstmann-Little 2 -0110101110 Chapa 2 -0110101110 KAUFMAN 2 -0110101110 Tofu 2 -0110101110 Thalman 2 -0110101110 Gardere 2 -0110101110 Absorbents 2 -0110101110 TOOTH 2 -0110101110 Drayage 2 -0110101110 Roulet 2 -0110101110 Goulston 2 -0110101110 Wirtschafts 2 -0110101110 Dollond 2 -0110101110 Nagashima 2 -0110101110 Nagelvoort 2 -0110101110 Brouwers 2 -0110101110 Selvage 2 -0110101110 TATE 2 -0110101110 Asbill 2 -0110101110 Safic-Alcan 2 -0110101110 Babock 2 -0110101110 Gambrell 2 -0110101110 TIFFANY 2 -0110101110 Mc. 2 -0110101110 CARNEGIE 2 -0110101110 Mikals 2 -0110101110 Kerlick 2 -0110101110 Notables 2 -0110101110 Potocki 2 -0110101110 Youghiogheny 2 -0110101110 Cornfield 2 -0110101110 Listrom 2 -0110101110 Tonkel 2 -0110101110 Pavelic 2 -0110101110 Chapdelaine 2 -0110101110 Treister 2 -0110101110 Krussman 2 -0110101110 Py 2 -0110101110 Buckmaster 2 -0110101110 ALEXANDER 3 -0110101110 Valelo 3 -0110101110 Hunton 3 -0110101110 Bohbot 3 -0110101110 Edrich 3 -0110101110 LaBouisse 3 -0110101110 Vorwerk 3 -0110101110 Deleage 3 -0110101110 Aachener 3 -0110101110 Hagoshrim 3 -0110101110 Shillito 3 -0110101110 Harrisons 3 -0110101110 V.I.P. 3 -0110101110 Adachi 3 -0110101110 BEN 3 -0110101110 Ticknor 3 -0110101110 Clicks 3 -0110101110 HORN 3 -0110101110 TURNER 3 -0110101110 Penick 3 -0110101110 Munitz 3 -0110101110 Heldfond 3 -0110101110 Lukfin 3 -0110101110 Hentsch 3 -0110101110 Kinnard 3 -0110101110 Alex.Brown 3 -0110101110 Trinkaus 3 -0110101110 Plesent 3 -0110101110 Wegard 3 -0110101110 Shapo 3 -0110101110 Burg 3 -0110101110 Stiftung 3 -0110101110 ROEBUCK 3 -0110101110 Mitchell/Titus 3 -0110101110 Dearman 3 -0110101110 Tullis-Cook 3 -0110101110 Israels 3 -0110101110 Bigsby 3 -0110101110 Sopher 3 -0110101110 Postaer 3 -0110101110 Rutty 3 -0110101110 Gabelli-Rosenthal 3 -0110101110 Baume 3 -0110101110 P&F 3 -0110101110 Tullett 3 -0110101110 Prima 3 -0110101110 Hillerich 3 -0110101110 Yanase 3 -0110101110 WILLCOX 3 -0110101110 Neuflize 3 -0110101110 Jenson 3 -0110101110 Mewhinney 3 -0110101110 MARTELL 3 -0110101110 INK 3 -0110101110 Crate 3 -0110101110 Lineberger 3 -0110101110 Morgen 3 -0110101110 Mid-Hudson 3 -0110101110 Mastrovita 3 -0110101110 Torii 3 -0110101110 Shroder 3 -0110101110 Trattner 3 -0110101110 Visconsi 3 -0110101110 Ede 3 -0110101110 Brotherston 3 -0110101110 COLUMBUS 3 -0110101110 Confectionery 3 -0110101110 LOMAS 3 -0110101110 Litman/Gregory 3 -0110101110 Callard 3 -0110101110 Shrubs 3 -0110101110 PROCTER 3 -0110101110 Masland 4 -0110101110 Cohig 4 -0110101110 Hibler 4 -0110101110 HAMILTON 4 -0110101110 Phleger 4 -0110101110 Hoover-Gorin 4 -0110101110 SCOTTISH 4 -0110101110 Tabori 4 -0110101110 Sheff 4 -0110101110 Kuchel 4 -0110101110 Obata 4 -0110101110 E.F.IHutton 4 -0110101110 ROCHE 4 -0110101110 Spic 4 -0110101110 Hoffman-LaRoche 4 -0110101110 Howrey 4 -0110101110 Beuret 4 -0110101110 MERCK 4 -0110101110 Finck 4 -0110101110 Bernet 4 -0110101110 DBS 4 -0110101110 SteinRoe 4 -0110101110 Poudres 4 -0110101110 Astley 4 -0110101110 AC&R/DHB 5 -0110101110 Snelling 5 -0110101110 Teamwork 5 -0110101110 Tzora 5 -0110101110 Otero 5 -0110101110 NATHAN 5 -0110101110 Keplinger 5 -0110101110 Muscle 5 -0110101110 Nemours 5 -0110101110 Woolcott 5 -0110101110 OLIVETTI 5 -0110101110 Catalysts 5 -0110101110 Gruner 5 -0110101110 Arter 5 -0110101110 Roulston 5 -0110101110 Smick-Medley 5 -0110101110 Wiggin 5 -0110101110 Kettler 5 -0110101110 Hengst 5 -0110101110 1-rated 5 -0110101110 Liipfert 5 -0110101110 Maps 5 -0110101110 Jessup 5 -0110101110 Arnhold 5 -0110101110 CASTLE 5 -0110101110 Blatt 5 -0110101110 Lipshie 5 -0110101110 Stockwell 5 -0110101110 Arral 5 -0110101110 Smoker 5 -0110101110 Pomeroy 5 -0110101110 ITOH 5 -0110101110 SOLVAY 5 -0110101110 Valliant 5 -0110101110 Fasken 5 -0110101110 Wildenstein 5 -0110101110 Glore 5 -0110101110 Fairweather 5 -0110101110 Rogal 5 -0110101110 Fentress 5 -0110101110 McAlaine 5 -0110101110 Fahlgren 5 -0110101110 Stansberry 6 -0110101110 Thurn 6 -0110101110 Cicco 6 -0110101110 Mowlem 6 -0110101110 Gifford-Hill 6 -0110101110 McGladrey 6 -0110101110 Loomis-Sayles 6 -0110101110 Fothergill 6 -0110101110 DJS-Inverness 6 -0110101110 Erdlen 6 -0110101110 Voorhis 6 -0110101110 Weidenfeld 6 -0110101110 MARKS 6 -0110101110 Townsend-Greenspan 6 -0110101110 TIRE 6 -0110101110 Knape 6 -0110101110 Gelberg 6 -0110101110 Sites 6 -0110101110 Richwhite 6 -0110101110 WILSON 6 -0110101110 Marttila 6 -0110101110 Comisky 6 -0110101110 XII 7 -0110101110 Goodbody 7 -0110101110 Philp 7 -0110101110 Sage-Allen 7 -0110101110 Janofsky 7 -0110101110 Irell 7 -0110101110 LEISURE 7 -0110101110 Farnsworth 7 -0110101110 DUFFOUR 7 -0110101110 Hypotheken 7 -0110101110 McCutcheon 7 -0110101110 O'Brien-Kreitzberg 8 -0110101110 Estabrook 8 -0110101110 Milliman 8 -0110101110 Folger 8 -0110101110 Gotschal 8 -0110101110 Strevig 8 -0110101110 Strawbridge 8 -0110101110 DeKuyper 8 -0110101110 BARKER 8 -0110101110 Specthrie 8 -0110101110 Doremus 8 -0110101110 HERALD 8 -0110101110 Abbett 8 -0110101110 Montefiore 8 -0110101110 Purvin 8 -0110101110 GRACE 9 -0110101110 Roussel 9 -0110101110 Fertitta 9 -0110101110 Struthers 9 -0110101110 DeArman 9 -0110101110 Desk 9 -0110101110 Mesirow 9 -0110101110 Kitcat 9 -0110101110 Smathers 9 -0110101110 BOVERI 10 -0110101110 Consultations 10 -0110101110 Selchow 10 -0110101110 Podleska 10 -0110101110 Swink 10 -0110101110 Leichtman 10 -0110101110 YOUNG 10 -0110101110 Suhler 10 -0110101110 Jenkens 11 -0110101110 Ropes 11 -0110101110 Nicolaus 11 -0110101110 HONGKONG 11 -0110101110 Drye 11 -0110101110 JOHNSON 11 -0110101110 MITSUI 11 -0110101110 Belden 11 -0110101110 SAATCHI 12 -0110101110 Sidley 12 -0110101110 Sheshunoff 12 -0110101110 Rosenkranz 12 -0110101110 Southold 12 -0110101110 1706 12 -0110101110 Aequitron 12 -0110101110 Conning 12 -0110101110 Hueglin 12 -0110101110 Montfort 13 -0110101110 Handels 13 -0110101110 Lind-Waldock 13 -0110101110 Hauer 13 -0110101110 Owings 13 -0110101110 Peninsular 13 -0110101110 Tordella 13 -0110101110 Delafield 13 -0110101110 Githens 13 -0110101110 Helmerich 13 -0110101110 Acheson 14 -0110101110 Roney 14 -0110101110 Mahin 14 -0110101110 Squirt 14 -0110101110 Raman 15 -0110101110 Tompane 15 -0110101110 Strand 15 -0110101110 Steptoe 15 -0110101110 Caplin 15 -0110101110 Caufield 15 -0110101110 Leggett 16 -0110101110 Howells 16 -0110101110 Rosenman 16 -0110101110 Corette 17 -0110101110 Asiel 17 -0110101110 Crossland 17 -0110101110 Dailey 17 -0110101110 Tatham-Laird 17 -0110101110 Chefitz 17 -0110101110 Pensions 17 -0110101110 Sante 18 -0110101110 Cagney 18 -0110101110 Duffour 18 -0110101110 BLACK 18 -0110101110 Giddings 18 -0110101110 Grubb 19 -0110101110 Thacher 19 -0110101110 Boettcher 20 -0110101110 Notable 20 -0110101110 TransOhio 20 -0110101110 Weedon 20 -0110101110 Bowne 21 -0110101110 Cork 22 -0110101110 Volpe 22 -0110101110 Glickenhaus 22 -0110101110 Arm 22 -0110101110 Fahnestock 22 -0110101110 Tristan 23 -0110101110 Peers 23 -0110101110 Travisano 24 -0110101110 Kamin 24 -0110101110 UBS-Phillips 25 -0110101110 Lehn 26 -0110101110 Harkness 26 -0110101110 Bartles 26 -0110101110 Booz-Allen 26 -0110101110 Gruss 26 -0110101110 Thoma 26 -0110101110 Stotler 27 -0110101110 Muse 27 -0110101110 Corroon 27 -0110101110 Chadbourne 27 -0110101110 Ammirati 28 -0110101110 McEntee 29 -0110101110 Burnup 29 -0110101110 Vinson 29 -0110101110 Wickersham 29 -0110101110 Dominick 30 -0110101110 Closed 31 -0110101110 Jesup 31 -0110101110 Schieffelin 31 -0110101110 Crompton 31 -0110101110 Ranh 31 -0110101110 Abercrombie 32 -0110101110 Lemon 32 -0110101110 Crisanti 32 -0110101110 Lamson 32 -0110101110 Deutschman 33 -0110101110 Heidrick 34 -0110101110 Cowen 34 -0110101110 Neuberger 34 -0110101110 Ally 35 -0110101110 REVIEW 35 -0110101110 E.D. 36 -0110101110 Shearman 36 -0110101110 Georgeson 37 -0110101110 Swaine 38 -0110101110 Thames 38 -0110101110 Sibson 38 -0110101110 Hadley 39 -0110101110 Tweed 39 -0110101110 Gotshal 40 -0110101110 Tel. 40 -0110101110 Fulbright 41 -0110101110 Willcox 43 -0110101110 Gaston 46 -0110101110 Reckitt 47 -0110101110 Newmark 54 -0110101110 Josephthal 54 -0110101110 Hormel 55 -0110101110 Thunberg 55 -0110101110 Straus 56 -0110101110 Lanston 57 -0110101110 Farr 59 -0110101110 Rodman 59 -0110101110 Dietz 61 -0110101110 Homestead 61 -0110101110 Cazenove 61 -0110101110 Sprague 62 -0110101110 Beam 62 -0110101110 Stroock 63 -0110101110 Lung 63 -0110101110 Crum 66 -0110101110 Reavis 68 -0110101110 Bausch 69 -0110101110 Sutro 72 -0110101110 Rohm 73 -0110101110 Laing 76 -0110101110 Kenyon 81 -0110101110 Nuveen 82 -0110101110 Bresler 83 -0110101110 Bath 85 -0110101110 Shriver 85 -0110101110 Fenner 86 -0110101110 Nugent 88 -0110101110 Steak 90 -0110101110 MacAndrews 96 -0110101110 Duff 96 -0110101110 Backer 100 -0110101110 Gruntal 100 -0110101110 Thalmann 105 -0110101110 Haskins 106 -0110101110 Cambrian 116 -0110101110 Meagher 116 -0110101110 Chips 117 -0110101110 Babcock 122 -0110101110 Towbin 123 -0110101110 Corrections 125 -0110101110 Laventhol 127 -0110101110 Doubleday 127 -0110101110 Cushman 127 -0110101110 Topeka 132 -0110101110 Quick 133 -0110101110 Kelso 135 -0110101110 Marsh 141 -0110101110 Cone 144 -0110101110 Ahmanson 145 -0110101110 McKinsey 145 -0110101110 Arps 149 -0110101110 Jaffray 150 -0110101110 Colman 165 -0110101110 Bruyette 165 -0110101110 Reading 186 -0110101110 Pincus 188 -0110101110 Horn 201 -0110101110 Coopers 208 -0110101110 Leisure 215 -0110101110 Alpha 218 -0110101110 Scottish 227 -0110101110 Butcher 231 -0110101110 Hambrecht 239 -0110101110 Schroder 242 -0110101110 Freres 247 -0110101110 Tate 266 -0110101110 Case 298 -0110101110 Leeds 302 -0110101110 Lomas 307 -0110101110 Ogilvy 323 -0110101110 Wharton 326 -0110101110 Ernst 344 -0110101110 Stop 351 -0110101110 Read 354 -0110101110 Castle 383 -0110101110 Harper 394 -0110101110 Dun 401 -0110101110 Matthews 419 -0110101110 Procter 440 -0110101110 Sugar 446 -0110101110 Hongkong 459 -0110101110 Roebuck 514 -0110101110 Olympia 633 -0110101110 Pratt 679 -0110101110 Oppenheimer 702 -0110101110 Lufkin 765 -0110101110 Cable 1041 -0110101110 Saatchi 1141 -0110101110 Stearns 1407 -0110101110 Peabody 1420 -0110101110 Harris 1871 -0110101110 Black 1885 -0110101110 Sachs 2179 -0110101110 Standard 4192 -0110101110 Gulf 3473 -0110101111 Save-A-Lot 1 -0110101111 TwentyFirst 1 -0110101111 171,900 1 -0110101111 O.M.W. 1 -0110101111 T-COM 1 -0110101111 139,639 1 -0110101111 J.P.M. 1 -0110101111 Kulzer 1 -0110101111 Datek 1 -0110101111 then-Federal 1 -0110101111 mediacracy 1 -0110101111 290-page 1 -0110101111 Tritus 1 -0110101111 Marketfield 1 -0110101111 Candair 1 -0110101111 96,200 1 -0110101111 40,149 1 -0110101111 Quarterdeck 1 -0110101111 price-to-cash 1 -0110101111 S.C.P. 1 -0110101111 918,900 1 -0110101111 151,200 1 -0110101111 Kerkhoff 1 -0110101111 computer-phobia 1 -0110101111 CommVest 1 -0110101111 Flexsteel 1 -0110101111 Codec-UNA 1 -0110101111 MBMB 1 -0110101111 Agrifuture 1 -0110101111 S.C.T. 1 -0110101111 79,600 1 -0110101111 1,065,500 1 -0110101111 354,800 1 -0110101111 264,800 1 -0110101111 crinolines 1 -0110101111 263,400 1 -0110101111 Seligco 1 -0110101111 196,400 1 -0110101111 322,900 1 -0110101111 Olivine 1 -0110101111 907,900 1 -0110101111 Dento-Med 1 -0110101111 Britton-Lee 1 -0110101111 Vanco 1 -0110101111 419,800 1 -0110101111 Sidler 1 -0110101111 592,400 1 -0110101111 209,157 1 -0110101111 317,740 1 -0110101111 826,200 1 -0110101111 2,650,200 1 -0110101111 Vigoro 1 -0110101111 1,435,800 1 -0110101111 138,909 1 -0110101111 Arcelik 1 -0110101111 Mimosa 1 -0110101111 sice 1 -0110101111 Carena-Bancorp 1 -0110101111 Valueline 1 -0110101111 Freeman-Owings 1 -0110101111 Tolosa 1 -0110101111 265,500 1 -0110101111 Talmis 1 -0110101111 277,759 1 -0110101111 pawnbrokers 1 -0110101111 334,600 1 -0110101111 Ballarpur 1 -0110101111 front- 1 -0110101111 Aletha 1 -0110101111 B-words 1 -0110101111 108,062 1 -0110101111 Vulsay 1 -0110101111 Nauru 1 -0110101111 Jenn 1 -0110101111 Rotan-Mosele 1 -0110101111 45,900 1 -0110101111 Colortyme 1 -0110101111 Communications-Pacific 1 -0110101111 Tohoko 1 -0110101111 Admont 1 -0110101111 62,350 1 -0110101111 bandanna 1 -0110101111 Promsyrioimport 1 -0110101111 Bevaco 1 -0110101111 Kliment 1 -0110101111 Hartco 1 -0110101111 tassles 1 -0110101111 Kyungwon 1 -0110101111 Sheilah 1 -0110101111 Cualoping 1 -0110101111 Wahler 1 -0110101111 blood-drawing 1 -0110101111 Metoprolol 1 -0110101111 Relache 1 -0110101111 Yamaichi/Dean 1 -0110101111 T-Glass 1 -0110101111 McKinely 1 -0110101111 Seattle-Tacoma 1 -0110101111 WQUE-FM 1 -0110101111 Sterne 1 -0110101111 Robotic 1 -0110101111 turbos 1 -0110101111 319,300 1 -0110101111 892,300 1 -0110101111 Technograph 1 -0110101111 Damone/Andrew 1 -0110101111 PaineWebber.Inc 1 -0110101111 Huddings 1 -0110101111 Lemby-Yarling 1 -0110101111 Carson/Lyon 1 -0110101111 Arnautical 1 -0110101111 BESA 1 -0110101111 113,500 1 -0110101111 Signatron 1 -0110101111 Intuit 1 -0110101111 Isobe 1 -0110101111 Freedland 1 -0110101111 Koseisho 1 -0110101111 Kleinworth 1 -0110101111 SKS 1 -0110101111 Sonicraft 1 -0110101111 Levco 1 -0110101111 Licom 1 -0110101111 52,400 1 -0110101111 Racon 1 -0110101111 675,100 1 -0110101111 401,700 1 -0110101111 Texet 1 -0110101111 Internorth 1 -0110101111 476,700 1 -0110101111 107,400 1 -0110101111 Pepsi-Co 1 -0110101111 1,230,300 1 -0110101111 225,200 1 -0110101111 JI 1 -0110101111 Aptech 1 -0110101111 E.F 1 -0110101111 Multi-County 1 -0110101111 Y.P.F. 1 -0110101111 ballboys 1 -0110101111 CEPE 1 -0110101111 61701 1 -0110101111 192,100 1 -0110101111 181,600 1 -0110101111 Cherisse 1 -0110101111 Lanaco 1 -0110101111 50,436 1 -0110101111 499,200 1 -0110101111 73,200 1 -0110101111 693,658 1 -0110101111 310,400 1 -0110101111 Riverpoint 1 -0110101111 172,714 1 -0110101111 Mini-Chews 1 -0110101111 sundeck 1 -0110101111 30,600 1 -0110101111 Scharr 1 -0110101111 Health-Tex 1 -0110101111 Modumend 1 -0110101111 50,101 1 -0110101111 wine-tastings 1 -0110101111 30,683 1 -0110101111 MacKinsey 1 -0110101111 Health-tex 1 -0110101111 flouride 1 -0110101111 479,600 1 -0110101111 non-hunters 1 -0110101111 187,998 1 -0110101111 Kordell 1 -0110101111 86,600 1 -0110101111 4,339,056 1 -0110101111 836,500 1 -0110101111 Greenfield-Campbell 1 -0110101111 178,100 1 -0110101111 195,500 1 -0110101111 228,500 1 -0110101111 Chemetals 1 -0110101111 Microphor 1 -0110101111 209,300 1 -0110101111 Mekler/Ansell 1 -0110101111 Howmedica 1 -0110101111 Chartcraft 1 -0110101111 1,601,000 1 -0110101111 Batch-Air 1 -0110101111 Craftmatic-Contour 1 -0110101111 Winfull 1 -0110101111 turbo-engine 1 -0110101111 Towa 1 -0110101111 Chakri 1 -0110101111 Mardel 1 -0110101111 Elkem 1 -0110101111 Myoplex 1 -0110101111 Tennol 1 -0110101111 Marsan 1 -0110101111 less-comfortable 1 -0110101111 PECO 1 -0110101111 H-R 1 -0110101111 Majendie 1 -0110101111 154,200 1 -0110101111 Anapolis 1 -0110101111 43,356 1 -0110101111 Farely 1 -0110101111 593,455 1 -0110101111 Intravision 1 -0110101111 199,600 1 -0110101111 86,582 1 -0110101111 27,429 1 -0110101111 529,100 1 -0110101111 148,600 1 -0110101111 CuraTech 1 -0110101111 NuTone 1 -0110101111 870,100 1 -0110101111 166,200 1 -0110101111 bed-hoppers 1 -0110101111 Aoyama-Gakuin 1 -0110101111 Seijo 1 -0110101111 Staodynamics 1 -0110101111 267,500 1 -0110101111 Postum 1 -0110101111 EVI 1 -0110101111 Honeywell-Bull 1 -0110101111 SPC 1 -0110101111 Amworld 1 -0110101111 1,243,200 1 -0110101111 semistrangers 1 -0110101111 IE 1 -0110101111 REDM 1 -0110101111 horn-rims 1 -0110101111 Richardson-Greenshields 1 -0110101111 IKL 1 -0110101111 1,501,500 1 -0110101111 Graz 1 -0110101111 Legers 1 -0110101111 GriffTel 1 -0110101111 ValAgri 1 -0110101111 1,299,500 1 -0110101111 Dresdner-ADB 1 -0110101111 Sogen 1 -0110101111 902,500 1 -0110101111 Schrafft 1 -0110101111 Canatom 1 -0110101111 Telescripps 1 -0110101111 221,800 1 -0110101111 ETC 1 -0110101111 Tagetes 1 -0110101111 2,499,990 1 -0110101111 Kermanshah 1 -0110101111 Freshfields 1 -0110101111 Canrep/Morse 1 -0110101111 Cohen-Hatfield 1 -0110101111 Quik-To-Fix 1 -0110101111 Setre 1 -0110101111 Polygram/Nippon 1 -0110101111 Trontech 1 -0110101111 MasterVision 1 -0110101111 Hickorycraft 1 -0110101111 Mie 1 -0110101111 Sandimmune 1 -0110101111 51,600 1 -0110101111 125,900 1 -0110101111 PanElectric 1 -0110101111 busboys 1 -0110101111 Loyala 1 -0110101111 54,447 1 -0110101111 Pigtail 1 -0110101111 101,943 1 -0110101111 Tecnetics 1 -0110101111 312,500 1 -0110101111 107,650 1 -0110101111 Fredco 1 -0110101111 348,100 1 -0110101111 Righteous 1 -0110101111 Quadrez 1 -0110101111 Midland/Odessa 1 -0110101111 178,700 1 -0110101111 Ittilaat 1 -0110101111 midlake 1 -0110101111 NONTECHNICAL 1 -0110101111 MSDOS 1 -0110101111 Madras-based 1 -0110101111 Humagen 1 -0110101111 StaRite 1 -0110101111 Antebellum 1 -0110101111 CBs 1 -0110101111 B.O. 1 -0110101111 Metacom 1 -0110101111 FreePort-McMoRan 1 -0110101111 Anilan 1 -0110101111 Equanil 1 -0110101111 BE&K 1 -0110101111 RBC-Dominion 1 -0110101111 GTL 1 -0110101111 Hyatt-Clark 1 -0110101111 160,075 1 -0110101111 EBW 1 -0110101111 Hoedowns 1 -0110101111 Hiter 1 -0110101111 CC 1 -0110101111 Imark 1 -0110101111 Microrim 1 -0110101111 Privatbanken 1 -0110101111 Topy 1 -0110101111 SOLvation 1 -0110101111 Enrigue 1 -0110101111 hourglass-shaped 1 -0110101111 Stankoimport 1 -0110101111 Mutoh 1 -0110101111 Marakon 1 -0110101111 Hsin-Chu 1 -0110101111 180,921 1 -0110101111 Diawa 1 -0110101111 Hongsakul 1 -0110101111 Toaster 1 -0110101111 ruby-crowned 1 -0110101111 70,635 1 -0110101111 Scadden 1 -0110101111 naptha 1 -0110101111 Raba 1 -0110101111 KINETIC 1 -0110101111 Alen 1 -0110101111 Sunwealth 1 -0110101111 Sandstone 1 -0110101111 Gulledge 1 -0110101111 IFPS 1 -0110101111 98,253 1 -0110101111 IL2 1 -0110101111 HansGeorg 1 -0110101111 Jobco 1 -0110101111 38,700 1 -0110101111 Schwitzer 1 -0110101111 1,003,900 1 -0110101111 546,962 1 -0110101111 Ronn 1 -0110101111 Melmon 1 -0110101111 Sunrises 1 -0110101111 Revertex 1 -0110101111 Wetheim 1 -0110101111 Shoreman 1 -0110101111 Kennosuke 1 -0110101111 weeks-including 1 -0110101111 Intellitech 1 -0110101111 TeleChoice 1 -0110101111 299,562 1 -0110101111 228,378 1 -0110101111 Tellerogenic 1 -0110101111 60648 1 -0110101111 60610 1 -0110101111 Macy/Federated 1 -0110101111 Flinestone 1 -0110101111 log-splitting 1 -0110101111 Wikco 1 -0110101111 Wico 1 -0110101111 Simmons-NL 1 -0110101111 Persoft 1 -0110101111 Beldoch 1 -0110101111 Bassel 1 -0110101111 Bunratty 1 -0110101111 188,500 1 -0110101111 USB 1 -0110101111 Land/Vest 1 -0110101111 Assunta 1 -0110101111 Chewie 1 -0110101111 Yorkton 1 -0110101111 Gyo 1 -0110101111 InterQual 1 -0110101111 166,800 1 -0110101111 Ontaria-based 1 -0110101111 clone-supplier 1 -0110101111 Wackabuck 1 -0110101111 ECOS 1 -0110101111 meows 1 -0110101111 funk-dunk 1 -0110101111 DIVAD 1 -0110101111 Bloomindale 1 -0110101111 UNICEF 1 -0110101111 Aircal 1 -0110101111 Siberia-made 1 -0110101111 Lanie 1 -0110101111 Salomom 1 -0110101111 395,600 1 -0110101111 95,575 1 -0110101111 Xilinx 1 -0110101111 black-tinted 1 -0110101111 Indiana-Purdue 1 -0110101111 Yukichi 1 -0110101111 195,550 1 -0110101111 Mainbocher 1 -0110101111 Bishun 1 -0110101111 quasigovernmental 1 -0110101111 Totaltop 1 -0110101111 Intersputnik 1 -0110101111 Tuebingen 1 -0110101111 Stratagene 1 -0110101111 Supercritical 1 -0110101111 ASEA-BROWN 1 -0110101111 Frox 1 -0110101111 Pechner 1 -0110101111 LaChute 1 -0110101111 Caraustar 1 -0110101111 CHR 1 -0110101111 141,730 1 -0110101111 Lewco 1 -0110101111 140,400 1 -0110101111 Lefac 1 -0110101111 Soyuzgoscirk 1 -0110101111 Warbug 1 -0110101111 A.R.A. 1 -0110101111 132,800 1 -0110101111 CROWN 1 -0110101111 Adriaen 1 -0110101111 Diponegoro 1 -0110101111 Kurabo 1 -0110101111 Quickwheel 1 -0110101111 Half-A-Car 1 -0110101111 ExploiTech 1 -0110101111 Nawbo 1 -0110101111 T.M.B. 1 -0110101111 Kynaston 1 -0110101111 364,759 1 -0110101111 Conmel 1 -0110101111 Technobribor 1 -0110101111 59,800 1 -0110101111 Quad/Marketing 1 -0110101111 Kloster-Madsen 1 -0110101111 fruit-colored 1 -0110101111 Epplers 1 -0110101111 Omnipage 1 -0110101111 Eletto 1 -0110101111 benzehexachloride 1 -0110101111 Scotia-Mcleod 1 -0110101111 bullwhips 1 -0110101111 ballasts 1 -0110101111 Synopsys 1 -0110101111 Westward-looking 1 -0110101111 Dempsey-Tunney 1 -0110101111 Westlb 1 -0110101111 wantonness 1 -0110101111 Unregistered 1 -0110101111 attention-grabbers 1 -0110101111 Kagoshima 1 -0110101111 ENSKILDA 1 -0110101111 Haking 1 -0110101111 215,800 1 -0110101111 SBCI-Savory 1 -0110101111 dog-beaters 1 -0110101111 Kardiothor 1 -0110101111 Maniatis-group 1 -0110101111 close-to-home 1 -0110101111 503,221 1 -0110101111 82,200 1 -0110101111 Transportek 1 -0110101111 11,680 1 -0110101111 Rasa 1 -0110101111 Sanwa-BGK 1 -0110101111 Twentyfirst 1 -0110101111 CollegeTrack 1 -0110101111 DepoProvera 1 -0110101111 Chem-Elec 1 -0110101111 sonabuoys 1 -0110101111 bazookas 1 -0110101111 Speakman 1 -0110101111 CCG 1 -0110101111 Fosgate 1 -0110101111 Sangyong 1 -0110101111 Savage-Western 2 -0110101111 2,049,400 2 -0110101111 Sta-Rite 2 -0110101111 Harshaw 2 -0110101111 Agri-Tech 2 -0110101111 Seattle-Northwest 2 -0110101111 Avantor 2 -0110101111 Berel 2 -0110101111 Gonzaga 2 -0110101111 EcoLab 2 -0110101111 Massena 2 -0110101111 Ochanomizu 2 -0110101111 Mosely 2 -0110101111 monte 2 -0110101111 Haringey 2 -0110101111 Deadwood 2 -0110101111 N.I. 2 -0110101111 Pennmount 2 -0110101111 Daikin 2 -0110101111 Farley/Northwest 2 -0110101111 Qassem 2 -0110101111 Pasar 2 -0110101111 Puissant 2 -0110101111 HMC 2 -0110101111 AstroTurf 2 -0110101111 PHB 2 -0110101111 W&D 2 -0110101111 Crosspoint 2 -0110101111 1987.7 2 -0110101111 81,200 2 -0110101111 Wasser 2 -0110101111 GOODYEAR 2 -0110101111 TRE-Modern 2 -0110101111 Transmanche-Link 2 -0110101111 Grier 2 -0110101111 Plaid 2 -0110101111 Electro-Scientific 2 -0110101111 WTBS. 2 -0110101111 20,453.90 2 -0110101111 49,700 2 -0110101111 Waddington 2 -0110101111 Guelph 2 -0110101111 Attapulgus 2 -0110101111 Isley 2 -0110101111 Zelco 2 -0110101111 Noma 2 -0110101111 Dresdner-ABD 2 -0110101111 Prades 2 -0110101111 Amos-Lee 2 -0110101111 ProCare 2 -0110101111 FIRESTONE 2 -0110101111 KBL 2 -0110101111 Micronas 2 -0110101111 an-Najah 2 -0110101111 221,400 2 -0110101111 Sonar 2 -0110101111 Lazuli 2 -0110101111 VTLS 2 -0110101111 Invexco 2 -0110101111 Algorithm 2 -0110101111 Garren 2 -0110101111 Chervenak 2 -0110101111 Grinnan 2 -0110101111 Bruise 2 -0110101111 Pandel 2 -0110101111 MultiVision 2 -0110101111 Spindrift 2 -0110101111 Allegan 2 -0110101111 Campbell-Taggart 2 -0110101111 Kankeiren 2 -0110101111 Sekitei 2 -0110101111 harpsichords 2 -0110101111 Season-all 2 -0110101111 Citi 2 -0110101111 Totalab 2 -0110101111 Landvest 2 -0110101111 Beatreme 2 -0110101111 Gelderman 2 -0110101111 MVM 2 -0110101111 Bata 2 -0110101111 Kimberlon 2 -0110101111 Reid-Rowell 2 -0110101111 Millersville 2 -0110101111 Wesave 2 -0110101111 Bi-Lo 2 -0110101111 Anscor-Hagedorn 2 -0110101111 Opecna 2 -0110101111 Hellmuth 2 -0110101111 WBF 2 -0110101111 IMS. 2 -0110101111 MF 2 -0110101111 Neotech 2 -0110101111 Terrie 2 -0110101111 Gefica 2 -0110101111 Multiflow 2 -0110101111 CLAlexanders 2 -0110101111 NYBG 2 -0110101111 Bluffton 2 -0110101111 ScotiaMcleod 2 -0110101111 SSAO 2 -0110101111 Fedstar 2 -0110101111 Bevil 2 -0110101111 Adelphi 2 -0110101111 Janie 2 -0110101111 Werbel-Roth 2 -0110101111 Cropcast 2 -0110101111 BDA/BBDO 2 -0110101111 L.F.IRothschild 2 -0110101111 Retrac 2 -0110101111 ArrowHead 2 -0110101111 Daeshin 2 -0110101111 Dracelle 2 -0110101111 Axe-Houghton 2 -0110101111 Acon 2 -0110101111 Pepperdine 2 -0110101111 Jacee 2 -0110101111 CRM 2 -0110101111 Jit 2 -0110101111 Strescon 2 -0110101111 Shukry 2 -0110101111 Marrietta 2 -0110101111 To-Fitness 2 -0110101111 6-feet-3 2 -0110101111 Ahron 2 -0110101111 118,150 2 -0110101111 Zmudowski 2 -0110101111 Evli 2 -0110101111 Saintoin 2 -0110101111 Imede 2 -0110101111 Bridgehampton 2 -0110101111 Hop-In 2 -0110101111 Shotland 2 -0110101111 Clal 2 -0110101111 Invemed 2 -0110101111 Botto 2 -0110101111 Saloman 2 -0110101111 Salvat 2 -0110101111 361,100 2 -0110101111 2384 2 -0110101111 CareerTrack 2 -0110101111 Craftmatic/Contour 2 -0110101111 ADcorp 2 -0110101111 WIYY-FM 2 -0110101111 TemPositions 2 -0110101111 Patrician 2 -0110101111 Rusco 2 -0110101111 DAINIPPON 2 -0110101111 Roberston 2 -0110101111 Faya 2 -0110101111 Scherck 2 -0110101111 Brantford 2 -0110101111 Neorex 2 -0110101111 Waleran 2 -0110101111 Sabel 2 -0110101111 Trumark 2 -0110101111 Intermarco 2 -0110101111 SunHealth 2 -0110101111 Woodmere 2 -0110101111 Rosaline 2 -0110101111 Guardsmark 2 -0110101111 BDB 2 -0110101111 PetroCanada 2 -0110101111 better-secured 2 -0110101111 InterSec 2 -0110101111 Saladin 2 -0110101111 Telerey 2 -0110101111 FNN. 2 -0110101111 NASH 3 -0110101111 Ladysmith 3 -0110101111 BTL 3 -0110101111 Beaird 3 -0110101111 Gulton 3 -0110101111 Biny 3 -0110101111 BVA 3 -0110101111 Doobie 3 -0110101111 Korn-Ferry 3 -0110101111 Taiheiyo 3 -0110101111 Saran 3 -0110101111 sandblasting 3 -0110101111 DAK 3 -0110101111 Astec 3 -0110101111 Eberstadt-Fleming 3 -0110101111 Gondola 3 -0110101111 Capitalcorp. 3 -0110101111 BNY 3 -0110101111 Tellus 3 -0110101111 NYLife 3 -0110101111 Western-Mobile 3 -0110101111 Wegmans 3 -0110101111 Villager 3 -0110101111 Charlesworth 3 -0110101111 Picky 3 -0110101111 Krestmark 3 -0110101111 Jetronic 3 -0110101111 Hosei 3 -0110101111 Rosenkrantz 3 -0110101111 Thomson-McKinnon 3 -0110101111 Baboquivari 3 -0110101111 Amici 3 -0110101111 Iwakuni 3 -0110101111 Ferrostaal 3 -0110101111 Delmar 3 -0110101111 Imogene 3 -0110101111 Tenby 3 -0110101111 Baytank 3 -0110101111 K.W. 3 -0110101111 Fergusson 3 -0110101111 Park-Kenilworth 3 -0110101111 Gao 3 -0110101111 Kutsher 3 -0110101111 EquiManagement 3 -0110101111 Asset-Backed 3 -0110101111 Anadite 3 -0110101111 Nutriplexx 3 -0110101111 Omark 3 -0110101111 Medicorp 3 -0110101111 Japex 3 -0110101111 Buhler 3 -0110101111 Dongsuh 3 -0110101111 Versar 3 -0110101111 Ayrton 3 -0110101111 Nordstern 3 -0110101111 DeAnza 3 -0110101111 Bocconi 3 -0110101111 NI 3 -0110101111 Northville 3 -0110101111 Springwood 3 -0110101111 Rudco 3 -0110101111 Valda 3 -0110101111 Tishman-Speyer 3 -0110101111 Caparo 3 -0110101111 Qinghua 3 -0110101111 CONNER 3 -0110101111 RPC 3 -0110101111 Fudan 3 -0110101111 HTL 3 -0110101111 Anocut 3 -0110101111 Dial-a-Mattress 3 -0110101111 Walbridge 3 -0110101111 Coryo 3 -0110101111 Fechtor 3 -0110101111 Adaptec 3 -0110101111 Louvin 3 -0110101111 Pinza 3 -0110101111 Cryomedics 3 -0110101111 Caprock 3 -0110101111 Mahir 3 -0110101111 KF 3 -0110101111 ASI 3 -0110101111 Masada 3 -0110101111 Sami/Burke 3 -0110101111 Over-The-Counter 3 -0110101111 veiling 3 -0110101111 Morco 4 -0110101111 Reorganized 4 -0110101111 DV 4 -0110101111 Shakarchi 4 -0110101111 Tellabs 4 -0110101111 Penland 4 -0110101111 Nitta 4 -0110101111 Trademarks 4 -0110101111 Leiden 4 -0110101111 I.W. 4 -0110101111 Cinnamont 4 -0110101111 Lexecon 4 -0110101111 Sprott 4 -0110101111 Eastlake 4 -0110101111 Pelikan 4 -0110101111 Saugatuck 4 -0110101111 Putt-Putt 4 -0110101111 Duskin 4 -0110101111 Normura 4 -0110101111 Insteel 4 -0110101111 Tintoretto 4 -0110101111 Cale 4 -0110101111 KVIL 4 -0110101111 HOFFMANN-LA 4 -0110101111 FL 4 -0110101111 Exposaic 4 -0110101111 Waseda 4 -0110101111 Oneita 4 -0110101111 Malco 4 -0110101111 Jardine-Fleming 4 -0110101111 Helme 4 -0110101111 Rikkyo 4 -0110101111 Korey 4 -0110101111 Derlan 4 -0110101111 Jeneric 4 -0110101111 Emmylou 4 -0110101111 HALT 4 -0110101111 I.C. 4 -0110101111 Transtech 4 -0110101111 Scancem 4 -0110101111 GTC 4 -0110101111 Uppsala 4 -0110101111 Pius 4 -0110101111 Amsted 4 -0110101111 Price/Stern/Sloan 4 -0110101111 JPM 4 -0110101111 Wham 4 -0110101111 Staveley 4 -0110101111 Heide 4 -0110101111 Amfco 4 -0110101111 CIFCO 4 -0110101111 GMN 4 -0110101111 Lantic 4 -0110101111 Yashica 4 -0110101111 Everly 4 -0110101111 Angenics 4 -0110101111 Marudai 4 -0110101111 Joffre 4 -0110101111 McCollum/Spielman 4 -0110101111 AMS 4 -0110101111 Weyerhauser 4 -0110101111 Stone-Consolidated 4 -0110101111 Bridgemarket 4 -0110101111 Shepley 5 -0110101111 Carriage 5 -0110101111 G.F. 5 -0110101111 I.E.P. 5 -0110101111 Tribble 5 -0110101111 Loantech 5 -0110101111 Gilreath 5 -0110101111 Val-Agri 5 -0110101111 Deco-Grand 5 -0110101111 Covell 5 -0110101111 Daylin 5 -0110101111 CSS 5 -0110101111 IBM-Brasil 5 -0110101111 Coherent 5 -0110101111 Oxtoby-Smith 5 -0110101111 AFCO 5 -0110101111 RLR 5 -0110101111 Dycom 5 -0110101111 Richardson-Smith 5 -0110101111 Vestaur 5 -0110101111 Hahnemann 5 -0110101111 Natco 5 -0110101111 Welco 5 -0110101111 NM 5 -0110101111 Loughborough 5 -0110101111 MKI 5 -0110101111 S.O.I. 6 -0110101111 6-foot-6 6 -0110101111 Demuth 6 -0110101111 Loewen 6 -0110101111 Heytesbury 6 -0110101111 Sonja 6 -0110101111 Spreckels 6 -0110101111 Petrostrategies 6 -0110101111 JPL 6 -0110101111 Pentland 6 -0110101111 Komazawa 6 -0110101111 HQ 6 -0110101111 Orrick 6 -0110101111 Hollins 6 -0110101111 Smith/Greenland 6 -0110101111 Tohoku 6 -0110101111 Hem 6 -0110101111 DavCo 6 -0110101111 Daratech 6 -0110101111 Bar-Ilan 6 -0110101111 Stetson 7 -0110101111 Amedco 7 -0110101111 Veronis 7 -0110101111 Shearon 7 -0110101111 Stendig 7 -0110101111 Dashwood 7 -0110101111 Verner 7 -0110101111 Shinsei 7 -0110101111 Okasan 7 -0110101111 BHF 7 -0110101111 Genelabs 7 -0110101111 PMC 7 -0110101111 Sharps 7 -0110101111 Doley 7 -0110101111 Erasmus 7 -0110101111 Duchossois 7 -0110101111 Olsher 7 -0110101111 Altschiller 7 -0110101111 MVP 7 -0110101111 DeTomaso 7 -0110101111 LaPointe 7 -0110101111 BC 7 -0110101111 Mercer-Meidinger 8 -0110101111 Lennox 8 -0110101111 NYT 8 -0110101111 Monogram 8 -0110101111 Reynold 8 -0110101111 TPF&C 8 -0110101111 Texfi 8 -0110101111 Hofstra 8 -0110101111 Cheil 8 -0110101111 Amfesco 8 -0110101111 ASB 8 -0110101111 Helmsley-Spear 8 -0110101111 Deltec 8 -0110101111 Hanifen 8 -0110101111 DePaul 8 -0110101111 Washburn 8 -0110101111 Kansallis-Osake-Pankki 8 -0110101111 Tengiz 8 -0110101111 Nipsco 9 -0110101111 Nankai 9 -0110101111 Kibbutz 9 -0110101111 Over-the-Counter 9 -0110101111 Escanaba 9 -0110101111 Margeotes 9 -0110101111 Anixter 9 -0110101111 Sogang 9 -0110101111 TKR 9 -0110101111 Invest/Net 9 -0110101111 Calpis 9 -0110101111 Riverway 9 -0110101111 Inverness 9 -0110101111 Centromin 10 -0110101111 BIW 10 -0110101111 Annick 10 -0110101111 Tuskegee 10 -0110101111 LeBoeuf 11 -0110101111 Oberweis 11 -0110101111 MetPath 11 -0110101111 Westbrook 11 -0110101111 InfoCorp 11 -0110101111 Kleer-Vu 11 -0110101111 Flemming 11 -0110101111 Nutmeg 11 -0110101111 J.I. 11 -0110101111 Manfra 11 -0110101111 Nuexco 11 -0110101111 Gabriele 11 -0110101111 Friona 11 -0110101111 CL-Alexanders 11 -0110101111 Pan-Electric 11 -0110101111 Eton 11 -0110101111 Palco 12 -0110101111 Nissin 12 -0110101111 Roadmaster 12 -0110101111 Villanova 12 -0110101111 Clairol 12 -0110101111 Bayside 12 -0110101111 Greenbrier 12 -0110101111 Skidmore 12 -0110101111 Thorndike 12 -0110101111 Coudert 12 -0110101111 Keio 12 -0110101111 Ulmer 12 -0110101111 Eglin 12 -0110101111 MSL 13 -0110101111 Bradco 13 -0110101111 Sheppards 13 -0110101111 Canny 13 -0110101111 Savory 13 -0110101111 In-Stat 13 -0110101111 Lefrak 14 -0110101111 Infotechnology 14 -0110101111 Anantha 14 -0110101111 Toray 14 -0110101111 Shand 14 -0110101111 FP 14 -0110101111 Keeneland 14 -0110101111 CBN 14 -0110101111 Infocorp 15 -0110101111 Redpath 15 -0110101111 Gilford 15 -0110101111 Brambles 15 -0110101111 Popsicle 15 -0110101111 ACLI 15 -0110101111 HBM/Creamer 15 -0110101111 Athlone 15 -0110101111 Whale 16 -0110101111 CIBC 16 -0110101111 Fox-Pitt 16 -0110101111 Transcisco 17 -0110101111 Horsehead 17 -0110101111 DLJ 17 -0110101111 Enskilda 17 -0110101111 Lykes 17 -0110101111 MicroAge 17 -0110101111 BPB 17 -0110101111 Yonsei 18 -0110101111 Nu-West 18 -0110101111 Birr 18 -0110101111 Stellenbosch 18 -0110101111 Jacuzzi 18 -0110101111 Swarthmore 18 -0110101111 Sophia 18 -0110101111 Atek 18 -0110101111 Valmont 19 -0110101111 Houdaille 19 -0110101111 TS 19 -0110101111 Keck 19 -0110101111 ERLY 19 -0110101111 Swergold 19 -0110101111 Marinvest 19 -0110101111 Smiths 20 -0110101111 Pemberton 20 -0110101111 Koor 20 -0110101111 ACF 20 -0110101111 WMS 20 -0110101111 Seligmann 21 -0110101111 Wedbush 21 -0110101111 Ringling 22 -0110101111 Weatherly 23 -0110101111 Fordham 23 -0110101111 Komaba 24 -0110101111 WTD 25 -0110101111 DePauw 25 -0110101111 Veribanc 25 -0110101111 Loyola 25 -0110101111 Eppler 26 -0110101111 Larizza 26 -0110101111 SBCI 27 -0110101111 Sloves 27 -0110101111 Wesleyan 27 -0110101111 Wako 27 -0110101111 Shubert 28 -0110101111 PrudentialBache 28 -0110101111 Dentsu 28 -0110101111 Airship 29 -0110101111 Mercer-Meidinger-Hansen 29 -0110101111 Burson-Marsteller 29 -0110101111 Sonic 29 -0110101111 Tulane 31 -0110101111 AEL 32 -0110101111 Wean 33 -0110101111 Mocatta 34 -0110101111 Convenient 36 -0110101111 Cam 36 -0110101111 Ashton 37 -0110101111 Kai 37 -0110101111 Purdue 39 -0110101111 BT 40 -0110101111 C.H. 42 -0110101111 Katy 42 -0110101111 B.A.IT 43 -0110101111 Brandeis 43 -0110101111 Clemson 44 -0110101111 SL 44 -0110101111 Willamette 44 -0110101111 Twenty-First 45 -0110101111 Sulzer 46 -0110101111 Mortgage-Backed 46 -0110101111 Ply-Gem 46 -0110101111 Keane 46 -0110101111 Balfour 47 -0110101111 Wylde 47 -0110101111 Zurn 47 -0110101111 Seidler 48 -0110101111 Spartan 49 -0110101111 Toll 49 -0110101111 Baylor 50 -0110101111 Milbank 50 -0110101111 Eagle-Picher 51 -0110101111 Willkie 51 -0110101111 Emory 51 -0110101111 Crescott 52 -0110101111 Carnegie-Mellon 52 -0110101111 Geldermann 55 -0110101111 Alexanders 55 -0110101111 Harriman 57 -0110101111 Geduld 58 -0110101111 Tufts 59 -0110101111 Avondale 61 -0110101111 Blount 61 -0110101111 Cluett 61 -0110101111 Bateman 63 -0110101111 Rohr 63 -0110101111 Philipp 63 -0110101111 Blasius 64 -0110101111 Baring 64 -0110101111 Kuhns 64 -0110101111 Cadwalader 67 -0110101111 Bessemer 70 -0110101111 Rutgers 72 -0110101111 Mabon 73 -0110101111 H.F. 75 -0110101111 Cravath 76 -0110101111 Trinity 76 -0110101111 McCann-Erickson 82 -0110101111 Norsk 82 -0110101111 Bowater 86 -0110101111 IBJ 90 -0110101111 Worthington 91 -0110101111 Arvin 97 -0110101111 Refco 98 -0110101111 Vanderbilt 101 -0110101111 Pitney 103 -0110101111 Hinderliter 109 -0110101111 Ladenburg 110 -0110101111 Drake 111 -0110101111 Prescott 115 -0110101111 RB 118 -0110101111 Browning-Ferris 126 -0110101111 Dataquest 152 -0110101111 Advest 163 -0110101111 PPG 176 -0110101111 Finley 179 -0110101111 Hoare 181 -0110101111 Skadden 182 -0110101111 UBS 182 -0110101111 Barris 194 -0110101111 Georgetown 195 -0110101111 Fuqua 200 -0110101111 Dresser 202 -0110101111 Norwood 209 -0110101111 Moseley 210 -0110101111 Cornell 213 -0110101111 Spear 238 -0110101111 Wertheim 252 -0110101111 Gartner 261 -0110101111 Pace 276 -0110101111 Piper 286 -0110101111 Litton 298 -0110101111 Northwestern 322 -0110101111 IC 323 -0110101111 Kleinwort 353 -0110101111 Yamaichi 365 -0110101111 Lazard 406 -0110101111 Daiwa 506 -0110101111 Nikko 539 -0110101111 Yale 557 -0110101111 Stanford 581 -0110101111 Warburg 627 -0110101111 E.F. 671 -0110101111 Donaldson 885 -0110101111 Montgomery 998 -0110101111 Nomura 1206 -0110101111 Bear 1530 -0110101111 Dean 1584 -0110101111 Prudential-Bache 1588 -0110101111 Harvard 1642 -0110101111 Reynolds 1655 -0110101111 PaineWebber 1956 -0110101111 Kidder 2197 -0110101111 Salomon 4023 -0110101111 Goldman 2995 -0110110 Korina 1 -0110110 Kassie 1 -0110110 Ottfried 1 -0110110 Younus 1 -0110110 Silviu 1 -0110110 BriAnne 1 -0110110 Yasuke 1 -0110110 Pehr 1 -0110110 Vilam 1 -0110110 Barnardo 1 -0110110 Marylou 1 -0110110 Iva 1 -0110110 Meizo 1 -0110110 Derwyn 1 -0110110 Deniece 1 -0110110 Elysia 1 -0110110 Dyann 1 -0110110 non-Yellow 1 -0110110 Dauss 1 -0110110 Lucretia 1 -0110110 Bismark 1 -0110110 Ayoob 1 -0110110 Gweneth 1 -0110110 Vijali 1 -0110110 Kamau 1 -0110110 hacer 1 -0110110 Janey 1 -0110110 Traci 1 -0110110 Lannis 1 -0110110 Daria 1 -0110110 Phylis 1 -0110110 Sibgatullah 1 -0110110 Piotr 1 -0110110 Liv 1 -0110110 Yiddy 1 -0110110 Spessard 1 -0110110 Haryce 1 -0110110 Seichiro 1 -0110110 Chandralekha 1 -0110110 Munekazu 1 -0110110 Yoshitoki 1 -0110110 Man-Bing 1 -0110110 Cheah 1 -0110110 Keichi 1 -0110110 Ivan-Pierre 1 -0110110 Septima 1 -0110110 Henry-Michel 1 -0110110 Julieta 1 -0110110 property-magnate 1 -0110110 U.W. 1 -0110110 Sabia 1 -0110110 Motoko 1 -0110110 Cigdem 1 -0110110 Atanas 1 -0110110 ACTORS 1 -0110110 Aidan 1 -0110110 Tink 1 -0110110 Urbaldo 1 -0110110 Strikeback-founder 1 -0110110 moun 1 -0110110 R&K 1 -0110110 Dellora 1 -0110110 Trouble-shooter 1 -0110110 Pitty 1 -0110110 Jubali 1 -0110110 Give-'em-hell 1 -0110110 Alija 1 -0110110 Elda 1 -0110110 Antonietta 1 -0110110 Rondi 1 -0110110 Hirohiko 1 -0110110 Norikazu 1 -0110110 Dalgaberto 1 -0110110 prosecutor-general 1 -0110110 Tabbie 1 -0110110 Julianna 1 -0110110 Torg 1 -0110110 Goven 1 -0110110 Sultana 1 -0110110 Kindra 1 -0110110 Nelie 1 -0110110 challege 1 -0110110 Yoshihiko 1 -0110110 Bayrische 1 -0110110 Lionte 1 -0110110 Sadam 1 -0110110 Third-placer 1 -0110110 Runnerup 1 -0110110 pre-judge 1 -0110110 Imran 1 -0110110 Yasumoto 1 -0110110 Yogan 1 -0110110 Francisque 1 -0110110 Salvator 1 -0110110 Valtr 1 -0110110 Sheril 1 -0110110 Saisho 1 -0110110 206-pound 1 -0110110 O.L. 1 -0110110 Annbrit 1 -0110110 Lissy 1 -0110110 Migalina 1 -0110110 Karl-Eduard 1 -0110110 deflowers 1 -0110110 Soonthon 1 -0110110 Neelan 1 -0110110 Gilberte 1 -0110110 Laboratorios 1 -0110110 Efrain 1 -0110110 Emi 1 -0110110 Abdul-Wahed 1 -0110110 Carol-Linnea 1 -0110110 President-Elect 1 -0110110 Pierluigi 1 -0110110 light-haired 1 -0110110 Valerii 1 -0110110 Shigeho 1 -0110110 Ryusei 1 -0110110 Lilliam 1 -0110110 Clain 1 -0110110 Bobi 1 -0110110 WALL-STREET 1 -0110110 Yuming 1 -0110110 Reynie 1 -0110110 T.Z. 1 -0110110 Arnita 1 -0110110 Shambhu 1 -0110110 --Shannon 1 -0110110 Vivek 1 -0110110 K.T. 1 -0110110 Houy 1 -0110110 flair-like 1 -0110110 Lyndsey 1 -0110110 Nobukazu 1 -0110110 Asif 1 -0110110 Sheelah 1 -0110110 Hidetaro 1 -0110110 Hiraku 1 -0110110 Hyla 1 -0110110 Allana 1 -0110110 Mierle 1 -0110110 Jimy 1 -0110110 Sachio 1 -0110110 Liubov 1 -0110110 Presidentelect 1 -0110110 Ramini 1 -0110110 Kentaro 1 -0110110 Hironori 1 -0110110 Ved 1 -0110110 Damid 1 -0110110 Nona 1 -0110110 Hikonobu 1 -0110110 Tomiaki 1 -0110110 Risa 1 -0110110 Glyndell 1 -0110110 225-lawyer 1 -0110110 Toyoaki 1 -0110110 Joethelia 1 -0110110 Satchel 1 -0110110 Balwan 1 -0110110 Niall 1 -0110110 Kayitan 1 -0110110 Sahib 1 -0110110 Chao-Yuan 1 -0110110 Rakeh 1 -0110110 Takaki 1 -0110110 Simas 1 -0110110 Corrin 1 -0110110 Z.D. 1 -0110110 Caryle 1 -0110110 Leonary 1 -0110110 Sanae 1 -0110110 Masaka 1 -0110110 Hillard 1 -0110110 Akihiko 1 -0110110 Lamis 1 -0110110 Yunha 1 -0110110 Takenori 1 -0110110 Commissoner 1 -0110110 Pro-Business 1 -0110110 Encarnacion 1 -0110110 Aghelos 1 -0110110 Konstantinos 1 -0110110 Ryujiro 1 -0110110 Yumi 1 -0110110 Dory 1 -0110110 Izzie 1 -0110110 Rasmi 1 -0110110 Dimitrios 1 -0110110 Treg 1 -0110110 Friz 1 -0110110 Cardiologist 1 -0110110 Theana 1 -0110110 Hacob 1 -0110110 Palmira 1 -0110110 Malcome 1 -0110110 Peterlowford 1 -0110110 Leydell 1 -0110110 Mazie 1 -0110110 Hial 1 -0110110 Yoshihide 1 -0110110 Adelbert 1 -0110110 Yonosuke 1 -0110110 Gadi 1 -0110110 Konstatin 1 -0110110 Ival 1 -0110110 Lito 1 -0110110 Andrenor 1 -0110110 Shimao 1 -0110110 Meridel 1 -0110110 Ou-Yang 1 -0110110 Shigebumi 1 -0110110 Emyl 1 -0110110 440,500 1 -0110110 Ranjit 1 -0110110 Matsuyo 1 -0110110 Kamwanna 1 -0110110 L&S 1 -0110110 Gotaas 1 -0110110 runningmate 1 -0110110 popster 1 -0110110 Brahim 1 -0110110 Sudhir 1 -0110110 Harbir 1 -0110110 Yasufumi 1 -0110110 Reiny 1 -0110110 Vishu 1 -0110110 Frederina 1 -0110110 Roedad 1 -0110110 Takumi 1 -0110110 market-researcher 1 -0110110 Twentieth-Century 1 -0110110 Sauveur 1 -0110110 acov 1 -0110110 Atilio 1 -0110110 MaryAnn 1 -0110110 Anant 1 -0110110 Torakichi 1 -0110110 Kazuro 1 -0110110 Pruitt- 1 -0110110 Deedar 1 -0110110 Milovan 1 -0110110 Pavlusko 1 -0110110 Tanja 1 -0110110 H-P-no 1 -0110110 Abdul-Kadir 1 -0110110 Azzedine 1 -0110110 '39 1 -0110110 Suis 1 -0110110 Dankmar 1 -0110110 Katsuji 1 -0110110 Zalin 1 -0110110 Strahinja 1 -0110110 Naresh 1 -0110110 Sakip 1 -0110110 437,100 1 -0110110 Danitra 1 -0110110 Ioanna 1 -0110110 Karine 1 -0110110 Cirilo 1 -0110110 Neile 1 -0110110 Jarel 1 -0110110 Reina 1 -0110110 Efrem 1 -0110110 Tekeuchi 1 -0110110 Andulio 1 -0110110 Tuxtla 1 -0110110 Alena 1 -0110110 Perri 1 -0110110 Zerilda 1 -0110110 Behnam 1 -0110110 Grantland 1 -0110110 Gondolier 1 -0110110 Hirotsugo 1 -0110110 Prosenjit 1 -0110110 Saleem 1 -0110110 Paulino 1 -0110110 Aline 1 -0110110 Thermoproof 1 -0110110 Mose 1 -0110110 Joachim-Ernst 1 -0110110 Amadou-Mahtar 1 -0110110 Knut 1 -0110110 Betty-Jo 1 -0110110 Edelburg 1 -0110110 Bernard-Henri 1 -0110110 Wicleffe 1 -0110110 Jyotindra 1 -0110110 Promila 1 -0110110 Trudi 1 -0110110 Zoanne 1 -0110110 Fitler 1 -0110110 VADM 1 -0110110 Kitley 1 -0110110 Hartsell 1 -0110110 Megawati 1 -0110110 Theophile 1 -0110110 Balwant 1 -0110110 Siddhartha 1 -0110110 Dragomir 1 -0110110 Reidar 1 -0110110 Ebrahaim 1 -0110110 Molefi 1 -0110110 Kimio 1 -0110110 Yorum 1 -0110110 Morimasa 1 -0110110 Nassos 1 -0110110 Aspara 1 -0110110 Romelia 1 -0110110 Tammi 1 -0110110 Nynke 1 -0110110 Yukihiko 1 -0110110 Bretta 1 -0110110 4339 1 -0110110 Bodley 1 -0110110 Julisz 1 -0110110 Taryn 1 -0110110 Isobel 1 -0110110 Yuet 1 -0110110 Naoko 1 -0110110 Resurreccion 1 -0110110 Josiane 1 -0110110 Shunjiro 1 -0110110 Davida 1 -0110110 Jelon 1 -0110110 Shopco 1 -0110110 Masaji 1 -0110110 Ottokar 1 -0110110 Cetus-Ben 1 -0110110 Abdulhadi 1 -0110110 18700 1 -0110110 Sharlyne 1 -0110110 Berenice 1 -0110110 Marylee 1 -0110110 Makuto 1 -0110110 Khosrow 1 -0110110 Machesney 1 -0110110 O.W. 1 -0110110 Augmenting 1 -0110110 -Mimi 1 -0110110 Clovis 1 -0110110 Argentina-Obdulio 1 -0110110 Margalith 1 -0110110 Eladio 1 -0110110 Dusan 1 -0110110 Miran 1 -0110110 Shyamala 1 -0110110 Loll 1 -0110110 Tor 1 -0110110 Edwarde 1 -0110110 Mayin 1 -0110110 Satya 1 -0110110 Micihiko 1 -0110110 J.Y.M. 1 -0110110 Collister 1 -0110110 Ernestine 1 -0110110 Pendrick 1 -0110110 Monidip 1 -0110110 dans 1 -0110110 Holkema 1 -0110110 Volkmar 1 -0110110 Alyn 1 -0110110 Tetsuji 1 -0110110 Kenjiro 1 -0110110 Mitsukuni 1 -0110110 Odfjell 1 -0110110 Heidruin 1 -0110110 6,039 1 -0110110 Houry 1 -0110110 Rosalio 1 -0110110 Ardyce 1 -0110110 Mogens 1 -0110110 Cathernie 1 -0110110 Fasil 1 -0110110 Jef 1 -0110110 Aideen 1 -0110110 Guy-Jean 1 -0110110 Zdislaw 1 -0110110 Genovena 1 -0110110 Hidekichi 1 -0110110 A.J.C. 1 -0110110 Efrim 1 -0110110 Mkt 1 -0110110 Tameka 1 -0110110 Nehl 1 -0110110 Yann 1 -0110110 Karpal 1 -0110110 Zino 1 -0110110 --Robert 1 -0110110 parar 1 -0110110 Concessa 1 -0110110 Emogene 1 -0110110 Hashiro 1 -0110110 Crayon-maker 1 -0110110 tenant-managed 1 -0110110 Katsuro 1 -0110110 Myung-Sik 1 -0110110 Jemy 1 -0110110 Nan-Yao 1 -0110110 Annamarie 1 -0110110 Shigeka 1 -0110110 Felipa 1 -0110110 Sholom 1 -0110110 Ranganath 1 -0110110 Hushang 1 -0110110 capitalist-tool 1 -0110110 Neelie 1 -0110110 Asker 1 -0110110 Norlando 1 -0110110 near-naked 1 -0110110 Good-old-boy 1 -0110110 230-pound 1 -0110110 Larraine 1 -0110110 Hiroshe 1 -0110110 Simba 1 -0110110 Boniface 1 -0110110 Verdon 1 -0110110 Dalip 1 -0110110 Delphine 1 -0110110 Katheryn 1 -0110110 Jungi 1 -0110110 Bolanie 1 -0110110 Guitty 1 -0110110 Hulusi 1 -0110110 Halit 1 -0110110 Rausher 1 -0110110 Sune 1 -0110110 Matteo 1 -0110110 Reimar 1 -0110110 Lyda 1 -0110110 Dalsukhbhai 1 -0110110 then-alderman 1 -0110110 Rika 1 -0110110 Atsutake 1 -0110110 Kosaku 1 -0110110 Aart 1 -0110110 303,602 1 -0110110 Carrole 1 -0110110 Carmack 1 -0110110 Hamdija 1 -0110110 Emanual 1 -0110110 Nehama 1 -0110110 Azuma 1 -0110110 Virg 1 -0110110 Hidenobu 1 -0110110 Theodeor 1 -0110110 Taiji 1 -0110110 Gorriaran 1 -0110110 Tarik 1 -0110110 Chitosei 1 -0110110 Gumercindo 1 -0110110 Joellyn 1 -0110110 Rennell 1 -0110110 N.S. 1 -0110110 Dusko 1 -0110110 Gerri 1 -0110110 Milanko 1 -0110110 Yusaku 1 -0110110 Beaird-Poulan/ 1 -0110110 Fawzy 1 -0110110 Sprechen 1 -0110110 Zenaida 1 -0110110 I.P. 1 -0110110 Maryjo 1 -0110110 Joseph-Daniel 1 -0110110 Capitalist-minded 1 -0110110 M.E. 1 -0110110 M.T. 1 -0110110 N.J.based-Jack 1 -0110110 Cleanth 1 -0110110 Shojiro 1 -0110110 Jean-Roch 1 -0110110 S.B 1 -0110110 Miloanne 1 -0110110 Alissa 1 -0110110 Arjen 1 -0110110 Governor-elect 1 -0110110 Csaba 1 -0110110 Keigi 1 -0110110 Hement 1 -0110110 Idalee 1 -0110110 Shabtai 1 -0110110 LaDonna 1 -0110110 JeanMarie 1 -0110110 Ludmila 1 -0110110 Trigve 1 -0110110 Borje 1 -0110110 Jonna 1 -0110110 Tameaki 1 -0110110 Duayne 1 -0110110 euologized 1 -0110110 Gaetan 1 -0110110 Jeromir 1 -0110110 Acquisition-hungry 1 -0110110 Keijiro 1 -0110110 Maurits 1 -0110110 Starters 1 -0110110 Macel 1 -0110110 Vasili 1 -0110110 Tohri 1 -0110110 Sture 1 -0110110 393,400 1 -0110110 Karlyn 1 -0110110 Nazia 1 -0110110 Zeyda 1 -0110110 Sharadhumar 1 -0110110 Tichi 1 -0110110 Torbjoern 1 -0110110 Mwajabu 1 -0110110 Cleopa 1 -0110110 Laigh 1 -0110110 Jaleel 1 -0110110 President-to-be 1 -0110110 Craton 1 -0110110 Naoyoshi 1 -0110110 Ronal 1 -0110110 Stephany 1 -0110110 Leeam 1 -0110110 Sanat 1 -0110110 Dorothee 1 -0110110 Reszo 1 -0110110 Chizuko 1 -0110110 Duma 1 -0110110 khona 1 -0110110 new-hero 1 -0110110 1966-winner 1 -0110110 I.L. 1 -0110110 38-lawyer 1 -0110110 Predrag 1 -0110110 Ryne 1 -0110110 Omus 1 -0110110 Leiv 1 -0110110 Motofumi 1 -0110110 Mineko 1 -0110110 Giorgos 1 -0110110 Widikind 1 -0110110 Bradlyn 1 -0110110 Lynnette 1 -0110110 Gedrus 1 -0110110 4100 1 -0110110 Marlyn 1 -0110110 Chard 1 -0110110 Aggrey 1 -0110110 Kimitoshi 1 -0110110 Lezek 1 -0110110 Skeet 1 -0110110 Ataman 1 -0110110 Strobe 1 -0110110 Tamami 1 -0110110 Laris 1 -0110110 Contraves 1 -0110110 Nikitas 1 -0110110 Sappho 1 -0110110 Gianbattista 1 -0110110 Lezlie 1 -0110110 Jaafar 1 -0110110 Wirt 1 -0110110 Roelof 1 -0110110 Cinders 1 -0110110 Syuichi 1 -0110110 Stephania 1 -0110110 Friedrun 1 -0110110 Warland 1 -0110110 Sukanto 1 -0110110 Ennius 1 -0110110 Karl-Hermann 1 -0110110 Aedan 1 -0110110 Phileas 1 -0110110 Koichiro 1 -0110110 Geula 1 -0110110 Taku 1 -0110110 Babaloo 1 -0110110 Zillah 1 -0110110 Toots 1 -0110110 Friederick 1 -0110110 Ismanto 1 -0110110 Craf 1 -0110110 Kathyann 1 -0110110 Geri 1 -0110110 Klaus-Christian 1 -0110110 Phylicia 1 -0110110 Althea 1 -0110110 Cicely 1 -0110110 Deloris 1 -0110110 coronate 1 -0110110 Atalanta/ 1 -0110110 Kamini 1 -0110110 Takahide 1 -0110110 Gersham 1 -0110110 Lajuana 1 -0110110 Miep 1 -0110110 Dhananjay 1 -0110110 Nyameka 1 -0110110 Eula 1 -0110110 Hylton 1 -0110110 Derl 1 -0110110 Michaele 1 -0110110 thinning-haired 1 -0110110 Attie 1 -0110110 Tajir 1 -0110110 Trey 1 -0110110 65-lawyer 1 -0110110 Vel 1 -0110110 Bambang 1 -0110110 Asep 1 -0110110 Padmo 1 -0110110 Karyn 1 -0110110 --Dick 1 -0110110 --Rodney 1 -0110110 Itsie 1 -0110110 Koloman 1 -0110110 Haitham 1 -0110110 Kochi 1 -0110110 Curnick 1 -0110110 Rockie 1 -0110110 Nahoko 1 -0110110 Sadako 1 -0110110 Lemuel 1 -0110110 Cokie 1 -0110110 Carlean 1 -0110110 Rahul 1 -0110110 Shmuel 1 -0110110 Toshiichi 1 -0110110 Tomosuke 1 -0110110 Spierer 1 -0110110 Detloff 1 -0110110 PRESSURING 1 -0110110 Masoud 1 -0110110 Uldis 1 -0110110 Gerold 1 -0110110 Teruaki 1 -0110110 Mersud 1 -0110110 Laraine 1 -0110110 Pierre-Marc 1 -0110110 Mayumi 1 -0110110 Giambattista 1 -0110110 Once-publicity-shy 1 -0110110 Lonn 1 -0110110 Riaz 1 -0110110 Toshikatsu 1 -0110110 Mimmo 1 -0110110 Sohrab 1 -0110110 Gheorghe 1 -0110110 Netty 1 -0110110 Timna 1 -0110110 Rusdu 1 -0110110 Trini 1 -0110110 Amalfi 1 -0110110 Dairl 1 -0110110 Francie 1 -0110110 Y.S. 1 -0110110 Tira 1 -0110110 Kul 1 -0110110 Greenall 1 -0110110 Eloy 1 -0110110 Tanni 1 -0110110 Eijiro 1 -0110110 Zaha 1 -0110110 Bostonbased 1 -0110110 Jen 1 -0110110 Rodgrigo 1 -0110110 Matej 1 -0110110 Thoru 1 -0110110 U.R. 1 -0110110 Christen 1 -0110110 Aljedrando 1 -0110110 Lancellott 1 -0110110 Besin 1 -0110110 Unal 1 -0110110 Ritasue 1 -0110110 Indiana-grad 1 -0110110 Amatsia 1 -0110110 Lief 1 -0110110 Bahram 1 -0110110 Manouchehr 1 -0110110 Sargon 1 -0110110 Hamideh 1 -0110110 Akito 1 -0110110 Wilmat 1 -0110110 Francois-Emile 1 -0110110 Kourosh 1 -0110110 Inaugurates 1 -0110110 Maisie 1 -0110110 Takayuki 1 -0110110 Katsuyuki 1 -0110110 Shouichiro 1 -0110110 Sherbaz 1 -0110110 Mahbubul 1 -0110110 Chelsfield 1 -0110110 Chiharu 1 -0110110 Takeharu 1 -0110110 Kymberly 1 -0110110 Daws 1 -0110110 Nanette 1 -0110110 Maribeth 1 -0110110 Avigdor 1 -0110110 eb 1 -0110110 Adella 1 -0110110 Wali 1 -0110110 Fazlur 1 -0110110 Werter 1 -0110110 Fatimata 1 -0110110 Sisu 1 -0110110 Damrosch 1 -0110110 Chelle 1 -0110110 Bubber 1 -0110110 Bharati 1 -0110110 Hailu 1 -0110110 Mortezar 1 -0110110 Sylvio 1 -0110110 Narendra 1 -0110110 Venerina 1 -0110110 Kusu 1 -0110110 M/I 1 -0110110 Winda 1 -0110110 Lupe 1 -0110110 Kuniko 1 -0110110 Raed 1 -0110110 Varuzhian 1 -0110110 Sadoun 1 -0110110 Anat 1 -0110110 Shigemi 1 -0110110 Woodie 1 -0110110 Ernst-Moritz 1 -0110110 Harrel 1 -0110110 Butros 1 -0110110 Shigeji 1 -0110110 Nanzi 1 -0110110 Elberton 1 -0110110 ASIDE 1 -0110110 Osra 1 -0110110 Cheikh 1 -0110110 Yazid 1 -0110110 precise-spoken 1 -0110110 Karrie 1 -0110110 Auditor-General 1 -0110110 Voit 1 -0110110 Klaus-Jurgen 1 -0110110 Marz 1 -0110110 Maeve 1 -0110110 Reconsidering 1 -0110110 Dirkie 1 -0110110 once-solid 1 -0110110 Andee 1 -0110110 Gemiyah 1 -0110110 Kristi 1 -0110110 Frayda 1 -0110110 Altynai 1 -0110110 Farukh 1 -0110110 Gibraltar-based 1 -0110110 Shahram 1 -0110110 Eleonore 1 -0110110 Toerstein 1 -0110110 I.F. 1 -0110110 Kenyatta 1 -0110110 Lallois 1 -0110110 Linetta 1 -0110110 Tanemichi 1 -0110110 Margaret-Anne 1 -0110110 Olya 1 -0110110 Rohit 1 -0110110 trovato 1 -0110110 Kennywood 1 -0110110 Artiem 1 -0110110 Mihalis 1 -0110110 Thanassis 1 -0110110 Sinikka 1 -0110110 Sumie 1 -0110110 1987-Henry 1 -0110110 Murilo 1 -0110110 ghost-memoirist 1 -0110110 Eisako 1 -0110110 Gerdy 1 -0110110 Abeille-Paix 1 -0110110 Rita-Sue 1 -0110110 Lisa-Marie 1 -0110110 Alben 1 -0110110 Mitsutoshi 1 -0110110 Saharnouz 1 -0110110 Marie-Josee 1 -0110110 Neala 1 -0110110 Katsuyoshi 2 -0110110 Ferdinando 2 -0110110 G.E.R. 2 -0110110 A.N. 2 -0110110 Ulan 2 -0110110 Neelam 2 -0110110 Urvashi 2 -0110110 Mitsuko 2 -0110110 Leonore 2 -0110110 Haydar 2 -0110110 B.W.H. 2 -0110110 Kazuyuki 2 -0110110 Shelia 2 -0110110 Yuki 2 -0110110 Atsuko 2 -0110110 Nobuyasu 2 -0110110 Baaron 2 -0110110 Jean-Guy 2 -0110110 Christiev 2 -0110110 Thyra 2 -0110110 Carolee 2 -0110110 Firoze 2 -0110110 Gayland 2 -0110110 Aiden 2 -0110110 Mory 2 -0110110 Abdelhadi 2 -0110110 Mitsuro 2 -0110110 Kazie 2 -0110110 M.I. 2 -0110110 Adrien 2 -0110110 FAWN 2 -0110110 Shatterproof 2 -0110110 Wonjerika 2 -0110110 Fikret 2 -0110110 Elayne 2 -0110110 Yoshinari 2 -0110110 Naokazu 2 -0110110 Soichi 2 -0110110 Sig 2 -0110110 Denzil 2 -0110110 Karakian 2 -0110110 Darci 2 -0110110 Hiroyoshi 2 -0110110 Dita 2 -0110110 Gatsha 2 -0110110 Nedis 2 -0110110 Takamori 2 -0110110 Ghena 2 -0110110 Annelise 2 -0110110 Bunji 2 -0110110 Hironobu 2 -0110110 Derick 2 -0110110 Madis 2 -0110110 Yossef 2 -0110110 W.V. 2 -0110110 Kartal 2 -0110110 Industriebank 2 -0110110 Jorg 2 -0110110 Norimoto 2 -0110110 Kyo 2 -0110110 Jacopo 2 -0110110 Egil 2 -0110110 Liviel 2 -0110110 Cassim 2 -0110110 Genjiro 2 -0110110 Jean-Patrick 2 -0110110 Kazumasa 2 -0110110 Dhana 2 -0110110 Alphonso 2 -0110110 Arni 2 -0110110 Thea 2 -0110110 Toshihide 2 -0110110 Nicomedes 2 -0110110 Gliceria 2 -0110110 Hans-Dieter 2 -0110110 Angelita 2 -0110110 Teruko 2 -0110110 Jorma 2 -0110110 Hidero 2 -0110110 K.S. 2 -0110110 Koeks 2 -0110110 Trisha 2 -0110110 Orlo 2 -0110110 Ayhan 2 -0110110 Dadan 2 -0110110 Icaro 2 -0110110 Takamasa 2 -0110110 Yoshindo 2 -0110110 Aviva 2 -0110110 S.M. 2 -0110110 Zedie 2 -0110110 Zdzislaw 2 -0110110 D.E. 2 -0110110 Setrag 2 -0110110 Nanci 2 -0110110 Leanne 2 -0110110 Shlomo 2 -0110110 Imtaiz 2 -0110110 Ferenc 2 -0110110 Kazuhiro 2 -0110110 Zwelakhe 2 -0110110 Ola 2 -0110110 Tsuruo 2 -0110110 Kunihiko 2 -0110110 Tomoshige 2 -0110110 Wai 2 -0110110 Riki 2 -0110110 Jethro 2 -0110110 Valarie 2 -0110110 Nario 2 -0110110 Ryozo 2 -0110110 Marie-Denise 2 -0110110 Graziella 2 -0110110 Yoshiyasu 2 -0110110 Hideyo 2 -0110110 Nikolay 2 -0110110 Serafina 2 -0110110 Dorcey 2 -0110110 Abdelsallam 2 -0110110 Justine 2 -0110110 Oded 2 -0110110 Vipin 2 -0110110 Srully 2 -0110110 J.O. 2 -0110110 Hirokazu 2 -0110110 W.D. 2 -0110110 Kuniyasu 2 -0110110 Riddick 2 -0110110 Gianna 2 -0110110 Def 2 -0110110 Devra 2 -0110110 Cabanne 2 -0110110 Imogen 2 -0110110 Yacoub 2 -0110110 Garet 2 -0110110 F.L. 2 -0110110 Costandi 2 -0110110 Toshi 2 -0110110 Nochum 2 -0110110 Zalman 2 -0110110 Petrika 2 -0110110 Tadd 2 -0110110 Rufino 2 -0110110 Floretta 2 -0110110 G.W.W. 2 -0110110 Andree 2 -0110110 Seisuke 2 -0110110 Yasukazu 2 -0110110 Shuhei 2 -0110110 Bennie 2 -0110110 Ken-Ichi 2 -0110110 Romy 2 -0110110 W.K. 2 -0110110 Dasan 2 -0110110 Caryn 2 -0110110 Kazuaki 2 -0110110 Bronwen 2 -0110110 Judit 2 -0110110 Beurt 2 -0110110 Sofonias 2 -0110110 Thelonious 2 -0110110 Arther 2 -0110110 Dermot 2 -0110110 Edd 2 -0110110 Antonino 2 -0110110 Sachiko 2 -0110110 Bethann 2 -0110110 Mary-Liz 2 -0110110 Jalong 2 -0110110 Marcin 2 -0110110 Marianna 3 -0110110 Alexandr 3 -0110110 Hiroki 3 -0110110 Merlyn 3 -0110110 Zoe 3 -0110110 Junko 3 -0110110 Neptali 3 -0110110 Goeran 3 -0110110 Jin-Shung 3 -0110110 Birgit 3 -0110110 Django 3 -0110110 Nobutoshi 3 -0110110 Persio 3 -0110110 Tadao 3 -0110110 Arpad 3 -0110110 Stephane 3 -0110110 Daniela 3 -0110110 Eishiro 3 -0110110 Yoshiko 3 -0110110 Isaias 3 -0110110 Chiaki 3 -0110110 Jeanetta 3 -0110110 Yoshiji 3 -0110110 Nobuhiko 3 -0110110 Shunsuke 3 -0110110 Rokuro 3 -0110110 Gaylen 3 -0110110 Mila 3 -0110110 Arun 3 -0110110 Severina 3 -0110110 Geidar 3 -0110110 Swoosie 3 -0110110 Vartan 3 -0110110 K.Y. 3 -0110110 Aprile 3 -0110110 Tatsuro 3 -0110110 Nobumitsu 3 -0110110 Ikkan 3 -0110110 Tommaso 3 -0110110 Toyoharu 3 -0110110 Teruhisa 3 -0110110 Rosemarie 3 -0110110 Kyoko 3 -0110110 Six-year-old 3 -0110110 Harunori 3 -0110110 Deirdre 3 -0110110 Yasuhiko 3 -0110110 Shoshana 3 -0110110 Janharm 3 -0110110 Wilf 3 -0110110 Giampiero 3 -0110110 Benita 3 -0110110 Tyne 3 -0110110 Wataru 3 -0110110 Shari 3 -0110110 Norimasa 3 -0110110 Dorothea 3 -0110110 Ermanno 3 -0110110 Praveen 3 -0110110 Pinchas 3 -0110110 Gotthilf 3 -0110110 Feliks 3 -0110110 Satur 3 -0110110 Rashed 3 -0110110 Safi 3 -0110110 Gulbuddin 3 -0110110 Andrej 3 -0110110 Ta 3 -0110110 Jeri 3 -0110110 Georgene 3 -0110110 Bahar 3 -0110110 Jose-Luis 3 -0110110 Lennard 3 -0110110 Jaacov 3 -0110110 Toshiko 3 -0110110 Karole 3 -0110110 Noberto 3 -0110110 Teena 3 -0110110 Rigoberto 3 -0110110 Catalino 3 -0110110 Arjay 3 -0110110 Hisako 3 -0110110 Gigi 3 -0110110 Kiran 3 -0110110 Ariyoshi 3 -0110110 Rotraut 3 -0110110 Yoshitaka 3 -0110110 Johsen 3 -0110110 Gouverneur 3 -0110110 Cabreo 3 -0110110 Lyudmila 3 -0110110 Shinji 4 -0110110 Snooty 4 -0110110 L.W. 4 -0110110 Rosabeth 4 -0110110 Derk 4 -0110110 Jaak 4 -0110110 Gwyn 4 -0110110 Nobuhiro 4 -0110110 Ayako 4 -0110110 Jiro 4 -0110110 Kensuke 4 -0110110 Haruhiko 4 -0110110 Yoshinobu 4 -0110110 Seiichi 4 -0110110 Marj 4 -0110110 Takuro 4 -0110110 ipso 4 -0110110 Morty 4 -0110110 Tad 4 -0110110 RitaSue 4 -0110110 Hiroko 4 -0110110 Nariman 4 -0110110 Waltraud 4 -0110110 Hisamichi 4 -0110110 Sherri 4 -0110110 Tomomitsu 4 -0110110 Alfre 4 -0110110 Henny 4 -0110110 Moira 4 -0110110 Goro 4 -0110110 Lora 4 -0110110 Kokichi 4 -0110110 Manoucher 4 -0110110 Jeannine 4 -0110110 Helgi 4 -0110110 T.D. 4 -0110110 M.M. 4 -0110110 Shuichi 4 -0110110 Ib 4 -0110110 Hei 4 -0110110 Allanna 4 -0110110 Yoh 4 -0110110 W.P. 4 -0110110 Shirgeru 4 -0110110 Wynand 4 -0110110 Matti 4 -0110110 Hanae 4 -0110110 Berthold 4 -0110110 Yasushi 4 -0110110 Katsuya 5 -0110110 Karl-Erik 5 -0110110 Seijiro 5 -0110110 Arnab 5 -0110110 Motoi 5 -0110110 Yuichi 5 -0110110 Joichi 5 -0110110 Armond 5 -0110110 Tamotsu 5 -0110110 Yuji 5 -0110110 Angelina 5 -0110110 Fereydon 5 -0110110 Aloys 5 -0110110 Toshiaki 5 -0110110 Kozo 5 -0110110 Ingenio 5 -0110110 Tatsuo 5 -0110110 Mitsuru 5 -0110110 Marybeth 5 -0110110 Erdal 5 -0110110 Yoshiyuki 5 -0110110 Theodor 5 -0110110 Ulf 5 -0110110 Aharon 5 -0110110 Eliza 5 -0110110 Ilona 5 -0110110 Pratap 5 -0110110 K.F. 5 -0110110 Clem 5 -0110110 Arlon 5 -0110110 Zohar 6 -0110110 Enno 6 -0110110 Domenic 6 -0110110 Ivor 6 -0110110 M.R. 6 -0110110 Yumiko 6 -0110110 Udayan 6 -0110110 Norio 6 -0110110 Vixen 6 -0110110 Yusuke 6 -0110110 Kaoru 6 -0110110 Ryuzo 6 -0110110 Mstislav 6 -0110110 Harve 6 -0110110 Mirella 7 -0110110 DuWayne 7 -0110110 Masami 7 -0110110 Eishi 7 -0110110 Vahid 7 -0110110 Shigekuni 7 -0110110 Ruam 7 -0110110 Yaacov 7 -0110110 Stockard 7 -0110110 O.J. 7 -0110110 Hiromasa 7 -0110110 R.K. 7 -0110110 mr. 7 -0110110 Ibn 7 -0110110 Katsumi 7 -0110110 Mariette 7 -0110110 Magneti 7 -0110110 Brigitte 7 -0110110 Twyla 7 -0110110 Dani 8 -0110110 Jorio 8 -0110110 Kris 8 -0110110 Arie 8 -0110110 Jacquie 8 -0110110 Mushtaq 8 -0110110 Mieczyslaw 8 -0110110 Evelina 8 -0110110 Trude 8 -0110110 Arve 8 -0110110 Cybill 8 -0110110 Hitoshi 8 -0110110 Eiichi 8 -0110110 Leonel 9 -0110110 Avner 9 -0110110 Daini 9 -0110110 T.E. 9 -0110110 Hannoch 9 -0110110 Christiane 9 -0110110 Eiji 10 -0110110 MTU 10 -0110110 Yasuo 10 -0110110 Hans-Joerg 10 -0110110 Frederica 10 -0110110 Hisao 10 -0110110 S.L. 10 -0110110 Yuko 10 -0110110 Stanislas 11 -0110110 Tsuneo 11 -0110110 W.I. 12 -0110110 F.A.O. 12 -0110110 Dinsa 12 -0110110 Belkacem 12 -0110110 Jing 12 -0110110 Oleg 13 -0110110 Genghis 14 -0110110 Trygve 14 -0110110 Einar 14 -0110110 Jean-Francois 14 -0110110 Lorne 15 -0110110 Felice 15 -0110110 Tetsuo 16 -0110110 Akio 16 -0110110 Keiichi 17 -0110110 Francoise 18 -0110110 Hildegard 18 -0110110 Toyoo 19 -0110110 Masakazu 20 -0110110 Koichi 20 -0110110 Zubin 20 -0110110 Orson 21 -0110110 Placido 24 -0110110 Refaat 24 -0110110 Susumu 25 -0110110 C.R. 29 -0110110 Priscilla 33 -0110110 Norberto 36 -0110110 W.R. 177 -0110110 Nigel 263 -0110110 Bayerische 308 -0110110 Banca 348 -0110110 Dr. 4048 -0110110 Mrs. 4377 -0110110 Mr. 207594 -0110110 Ms. 8748 -011011100 Veras 1 -011011100 Kooi 1 -011011100 Mercer/Harry 1 -011011100 ricos 1 -011011100 PULLED 1 -011011100 Burns-Gracie 1 -011011100 Haniff 1 -011011100 Spinks-Gerry 1 -011011100 Claret 1 -011011100 Nader-founded 1 -011011100 Joaquina 1 -011011100 Shoop 1 -011011100 Olu 1 -011011100 Mettesheim 1 -011011100 Abdelhamid 1 -011011100 Eddin 1 -011011100 Makki 1 -011011100 Mokhtar 1 -011011100 Junipero 1 -011011100 Jawad 1 -011011100 Camerine 1 -011011100 Ramage 1 -011011100 Ud 1 -011011100 Jorgen 1 -011011100 Sigifredo 1 -011011100 Arditas 1 -011011100 North-Brendan 1 -011011100 al-Abdulla 1 -011011100 Goldberg/Lily 1 -011011100 clown/dancer/mime 1 -011011100 Ruffo 1 -011011100 al-Ahmed 1 -011011100 Waclaw 1 -011011100 Bernert 1 -011011100 Mikailovich 1 -011011100 Calcott 1 -011011100 Acero 1 -011011100 Kounty 1 -011011100 Tyson-Robin 1 -011011100 Helms-Jerry 1 -011011100 Tarsisius 1 -011011100 Morris/Kraft/General 1 -011011100 Toinette 1 -011011100 Zurita 1 -011011100 Eldridge/Loose 1 -011011100 Clerc 1 -011011100 Hashin 1 -011011100 Vissaronovich 1 -011011100 Haddon 1 -011011100 Astaire-Ginger 1 -011011100 shitsurei 1 -011011100 Popa 1 -011011100 Szandor 1 -011011100 Mallord 1 -011011100 Beatty-Dustin 1 -011011100 McLelland 1 -011011100 Dagnino 1 -011011100 Geovanna 1 -011011100 Freiherr 1 -011011100 Nunn-Chuck 1 -011011100 Prawer 1 -011011100 Granberry 1 -011011100 Fergusonesque 1 -011011100 Dacres 1 -011011100 Hearns-James 1 -011011100 Minuth 1 -011011100 Bux 1 -011011100 Rivero 1 -011011100 Spinks-Mike 1 -011011100 Esquius 1 -011011100 Leiland 1 -011011100 Hiromu 1 -011011100 Steinberg-controlled 1 -011011100 McEnroe-Jimmy 1 -011011100 Arsht 1 -011011100 Yaseen 1 -011011100 Khadr 1 -011011100 Salaheddin 1 -011011100 Poulos 1 -011011100 Guyla 1 -011011100 Diables 1 -011011100 Bachir 1 -011011100 Stillson 1 -011011100 Fentener 1 -011011100 Igrejas 1 -011011100 Calbraith 1 -011011100 Weil-Garris 1 -011011100 Hope-Bing 1 -011011100 Lel 1 -011011100 Auli 1 -011011100 fein 1 -011011100 Smith-Ross 1 -011011100 Chavira 1 -011011100 Monroe. 1 -011011100 Barrajas 1 -011011100 MaGregor 1 -011011100 Vorder 1 -011011100 Bhabani 1 -011011100 Aleksandrovich 1 -011011100 Geovanni 1 -011011100 Tyson-Trevor 1 -011011100 Clogston 1 -011011100 Beaux. 1 -011011100 Holl 1 -011011100 Cercone 1 -011011100 Sive 1 -011011100 Saraiva 1 -011011100 Sarit 1 -011011100 Reni. 1 -011011100 Kapalekilahao 1 -011011100 Jacob/Beth 1 -011011100 Maclay 1 -011011100 Greenspan-led 1 -011011100 Stack/Eliot 1 -011011100 Cottin 1 -011011100 Palma-David 1 -011011100 Gaddy 1 -011011100 Higueras 1 -011011100 Kaizan 1 -011011100 Shalispin. 1 -011011100 F.U. 1 -011011100 Raheemm 1 -011011100 Velspa 1 -011011100 Amerine 1 -011011100 Barranco 1 -011011100 Dole-George 1 -011011100 Hidro 1 -011011100 Avilar 1 -011011100 Harlemm 1 -011011100 Kloevedal 1 -011011100 Alvero 1 -011011100 Savar 1 -011011100 V.W. 1 -011011100 Eletra 1 -011011100 Hall-Steinberg 1 -011011100 Sou 1 -011011100 Ryu 1 -011011100 Bhawani 1 -011011100 Toribin 1 -011011100 Chitoshi 1 -011011100 Schwengel 1 -011011100 Jessy 1 -011011100 Flahertie 1 -011011100 Retano 1 -011011100 Siad 1 -011011100 Bevers 1 -011011100 Kyros 1 -011011100 McVacy 1 -011011100 Money-Judgments 1 -011011100 Weinlader 1 -011011100 Mollegen 1 -011011100 Chik 1 -011011100 Macklowe 1 -011011100 Ferst 1 -011011100 Sau-Ki 1 -011011100 Tanzman 1 -011011100 Pavolvich 1 -011011100 Davalos 1 -011011100 Velline 1 -011011100 Lynfield 1 -011011100 Lynise 1 -011011100 Maiz 1 -011011100 Azeglio 1 -011011100 Dobrish 1 -011011100 Kiyohide 1 -011011100 Porter. 1 -011011100 Irigoyen 1 -011011100 Dibble 1 -011011100 Doubilet. 1 -011011100 Barran 1 -011011100 Timofeyevich 1 -011011100 Rather/George 1 -011011100 Tomsits 1 -011011100 Browing 1 -011011100 Garrote 1 -011011100 Sybilla 1 -011011100 Maler 1 -011011100 VIII/ 1 -011011100 Kasmin 1 -011011100 Ellena 1 -011011100 Cichan 1 -011011100 Granados 1 -011011100 Canape 1 -011011100 Dy 1 -011011100 Kless 1 -011011100 Magill 1 -011011100 Alemany 1 -011011100 Hippel 1 -011011100 Gahaghan 1 -011011100 Schomaker 1 -011011100 Blaisdell 1 -011011100 Jungho 1 -011011100 Yoni 1 -011011100 Raich 1 -011011100 Cahal 1 -011011100 Internazionale 1 -011011100 Phillips/Harry 1 -011011100 Koopmans 1 -011011100 Romanee 1 -011011100 Vicent 1 -011011100 Pleasance 1 -011011100 OncoScint 1 -011011100 J.McCall 1 -011011100 Shotzberger-Sichi 1 -011011100 Curtenius 1 -011011100 Lunder 1 -011011100 Heimsath 1 -011011100 Malvenius 1 -011011100 Domeier 1 -011011100 Rogers-Dale 1 -011011100 Presidnet 1 -011011100 Micklin 1 -011011100 Lapinsky 1 -011011100 Howat 1 -011011100 Deaner 1 -011011100 Paulsel 1 -011011100 Klipper. 1 -011011100 Inocente 1 -011011100 Diers 1 -011011100 Amueda 1 -011011100 Ikuo 1 -011011100 Pesqueira 1 -011011100 AMUSEMENT 1 -011011100 Geragandi 1 -011011100 Coote 1 -011011100 Prin 1 -011011100 Ludvig 1 -011011100 Newcomb-Allen 1 -011011100 Ossawa 1 -011011100 Horwin 1 -011011100 Aleu 1 -011011100 Tyson-Michael 1 -011011100 Girardot 1 -011011100 Eamonn 1 -011011100 Tuat 1 -011011100 Rockwell-tinted 1 -011011100 Sui-Kan 1 -011011100 Ridings 1 -011011100 Reul 1 -011011100 Wright-William 1 -011011100 Rost 1 -011011100 el-Abed 1 -011011100 Elbo 1 -011011100 Doguardi 1 -011011100 Hawbaker 1 -011011100 Klehr 1 -011011100 Regan-Larry 1 -011011100 Feathergail 1 -011011100 Attarian 1 -011011100 Fischman 1 -011011100 Overbeek 1 -011011100 Montana-to-Jerry 1 -011011100 Kelne 1 -011011100 Neza 1 -011011100 Sotelo 1 -011011100 Abdel-Ali 1 -011011100 Jeung 1 -011011100 Woodley 2 -011011100 F.G. 2 -011011100 W.M. 2 -011011100 vanden 2 -011011100 Tun 2 -011011100 Raouf 2 -011011100 L.K. 2 -011011100 zur 2 -011011100 Lian 2 -011011100 Sharron 2 -011011100 Heun 2 -011011100 Leonard-Marvin 2 -011011100 C.Y. 2 -011011100 Auffenberg 2 -011011100 Milhous 2 -011011100 Ley 2 -011011100 Nour 2 -011011100 N.R. 2 -011011100 S.Y. 2 -011011100 B.M. 2 -011011100 Alim 2 -011011100 Shorenstein 2 -011011100 Terwilliger 2 -011011100 P.L. 2 -011011100 Hastie 2 -011011100 Russi 2 -011011100 Needles 2 -011011100 Rehman 2 -011011100 K.P. 2 -011011100 Neme 2 -011011100 DuRoss 2 -011011100 Konik 2 -011011100 Cooperativo 2 -011011100 Leonard-Donny 2 -011011100 Ballas 2 -011011100 delle 2 -011011100 Herrnstein 2 -011011100 Tsing 2 -011011100 Lardi 2 -011011100 B.E. 2 -011011100 Wha 2 -011011100 Halim 2 -011011100 Kilduff 2 -011011100 Southall 2 -011011100 Khasan 2 -011011100 Wyck 2 -011011100 Bra 2 -011011100 Smangaliso 2 -011011100 Krome 2 -011011100 Nesley 3 -011011100 B.W. 3 -011011100 K.J. 3 -011011100 Sirot 3 -011011100 Piasecka 3 -011011100 Huei 3 -011011100 M.N. 3 -011011100 T.F. 3 -011011100 Gilray 3 -011011100 C.O. 3 -011011100 Emlyn 3 -011011100 K.A. 3 -011011100 Mouton 3 -011011100 Amuedo 3 -011011100 Lenor 3 -011011100 Dassault-Breguet 3 -011011100 Joergen 3 -011011100 Conchita 3 -011011100 ROARED 3 -011011100 Perszyx 3 -011011100 Kreider 3 -011011100 G.L. 3 -011011100 H.S. 4 -011011100 Europe/Middle 4 -011011100 Daerr 4 -011011100 Jeong 4 -011011100 arap 4 -011011100 Ivanovich 4 -011011100 Penfield 4 -011011100 F.X. 4 -011011100 O.P. 4 -011011100 Akhbar 5 -011011100 D.G. 5 -011011100 Hatwood 5 -011011100 Ardito 5 -011011100 Delle 5 -011011100 Delfim 5 -011011100 C.T. 5 -011011100 Bashevis 5 -011011100 Pour 6 -011011100 dell' 6 -011011100 Kok 6 -011011100 Rahim 6 -011011100 Sui-Kuan 6 -011011100 Minister-designate 7 -011011100 Dos 7 -011011100 Raheem 7 -011011100 Recital 7 -011011100 Weyforth 7 -011011100 H.M. 9 -011011100 McChesney 9 -011011100 Dore 10 -011011100 Xuan 10 -011011100 Tilson 10 -011011100 dos 10 -011011100 Gurley 10 -011011100 I.J. 12 -011011100 Hens 13 -011011100 Ochs 13 -011011100 Industriali 14 -011011100 E.R. 17 -011011100 Karim 17 -011011100 C.M. 17 -011011100 J.F. 17 -011011100 Vonder 19 -011011100 Febres 21 -011011100 Abba 22 -011011100 Fiorini 24 -011011100 Akbar 24 -011011100 Khalifa 28 -011011100 C.W. 32 -011011100 Zaki 34 -011011100 X. 36 -011011100 Q. 36 -011011100 W.C. 37 -011011100 Kuan 53 -011011100 Y. 63 -011011100 Z. 67 -011011100 Kampen 69 -011011100 Josef 71 -011011100 di 87 -011011100 del 151 -011011100 da 153 -011011100 Luther 170 -011011100 Dae 252 -011011100 des 326 -011011100 d' 419 -011011100 AND 499 -011011100 V. 503 -011011100 I. 507 -011011100 O. 552 -011011100 N. 634 -011011100 K. 771 -011011100 P. 1630 -011011100 G. 1803 -011011100 T. 1806 -011011100 S. 2251 -011011100 B. 2321 -011011100 W. 2739 -011011100 H. 2866 -011011100 F. 2914 -011011100 L. 2921 -011011100 C. 3076 -011011100 M. 3282 -011011100 Minister 3455 -011011100 E. 3542 -011011100 de 3927 -011011100 A. 4321 -011011100 J. 5801 -011011101 1872-1951 1 -011011101 Dukovic 1 -011011101 Yandell 1 -011011101 Videotaping 1 -011011101 Terrian 1 -011011101 Kalmar 1 -011011101 Rehor 1 -011011101 Klinkhoff 1 -011011101 Joyal 1 -011011101 Dresner 1 -011011101 Suize 1 -011011101 Stegall 1 -011011101 Littlefon 1 -011011101 Metrulis 1 -011011101 Scollin 1 -011011101 Gabinski 1 -011011101 Hart. 1 -011011101 Ladendorff 1 -011011101 Weisbein 1 -011011101 Lapatine 1 -011011101 Moquin 1 -011011101 Wollstonecraft 1 -011011101 Kestner 1 -011011101 Fogg-Johnson 1 -011011101 Vanderpool 1 -011011101 Pottasch 1 -011011101 Samton 1 -011011101 1770-1850 1 -011011101 Seine-Martime 1 -011011101 Hearne 1 -011011101 Nicolescu 1 -011011101 Vuu 1 -011011101 Stellman 1 -011011101 Osseiran 1 -011011101 Gajan 1 -011011101 Klehs 1 -011011101 Ascuenaga 1 -011011101 Gutkoski 1 -011011101 Stalcup 1 -011011101 Yibo 1 -011011101 Steltzer 1 -011011101 Shaplen 1 -011011101 Whelpley 1 -011011101 Drotman 1 -011011101 Coronel 1 -011011101 Jalandoni 1 -011011101 Ausburn 1 -011011101 Veady 1 -011011101 Bennette 1 -011011101 Berley 1 -011011101 Khalili 1 -011011101 Rienhoff 1 -011011101 Kouros 1 -011011101 Tomochika 1 -011011101 Kaneda 1 -011011101 Renstroem 1 -011011101 Liedke 1 -011011101 Satungia 1 -011011101 Nadelhoffer 1 -011011101 Stolenburg 1 -011011101 Russenberger 1 -011011101 DelVecchio 1 -011011101 Parkel 1 -011011101 Borrelli 1 -011011101 Frerot 1 -011011101 Auque 1 -011011101 Wolsky 1 -011011101 Vaczek 1 -011011101 DeLaura 1 -011011101 Miranti 1 -011011101 Fregni 1 -011011101 Heuvelen 1 -011011101 Kodl 1 -011011101 Paternotte 1 -011011101 Dobbin 1 -011011101 Pinkert 1 -011011101 Fellouris 1 -011011101 Romatowsky 1 -011011101 Steuert 1 -011011101 Hirschy 1 -011011101 Najas 1 -011011101 Strohm 1 -011011101 Ekey 1 -011011101 DeBisschop 1 -011011101 Illegitimacy 1 -011011101 Briesch 1 -011011101 Weiss-Terbell 1 -011011101 Hagaman 1 -011011101 Windeler 1 -011011101 Ljubimov 1 -011011101 Martinson 1 -011011101 Ceidro 1 -011011101 Hitchler 1 -011011101 Ross-Munro 1 -011011101 Spilny 1 -011011101 Stafford-Clark 1 -011011101 Erola 1 -011011101 Haggens 1 -011011101 Defren 1 -011011101 Syse 1 -011011101 Levignac 1 -011011101 Lavroff 1 -011011101 Cazier 1 -011011101 Duin 1 -011011101 Gair 1 -011011101 Kirstie 1 -011011101 Armenakis 1 -011011101 Melfe 1 -011011101 Lovato 1 -011011101 1942-77 1 -011011101 Zar 1 -011011101 Woiwode 1 -011011101 Aboutboul 1 -011011101 Triner 1 -011011101 Folkes 1 -011011101 DiNuzzo 1 -011011101 Swearer 1 -011011101 Zwhalan 1 -011011101 Regazzi 1 -011011101 Lubalin 1 -011011101 Meskin 1 -011011101 Sonkin 1 -011011101 Melcer 1 -011011101 Kleypas 1 -011011101 Manolikakis 1 -011011101 Askey 1 -011011101 Schmicker 1 -011011101 Wiessmann 1 -011011101 Mindt 1 -011011101 Corbyn 1 -011011101 Hettema 1 -011011101 Boylen 1 -011011101 Gonsalves 1 -011011101 Frankenberg 1 -011011101 Melinsky 1 -011011101 Soraparu 1 -011011101 Michanowicz 1 -011011101 Huebner 1 -011011101 1789-1986 1 -011011101 fedEYE 1 -011011101 Vasin 1 -011011101 Sedgman 1 -011011101 McMichael 1 -011011101 1791-1883 1 -011011101 Meservey 1 -011011101 HautBrion 1 -011011101 Agnell 1 -011011101 Rosengren 1 -011011101 Delham 1 -011011101 Stendahl 1 -011011101 Lyster 1 -011011101 Leibowtiz 1 -011011101 Jakucs 1 -011011101 Bacle 1 -011011101 Halli 1 -011011101 Figurelli 1 -011011101 Wharmby 1 -011011101 Corvalan 1 -011011101 Arnow 1 -011011101 DiMarizio 1 -011011101 Vigil 1 -011011101 Maringer 1 -011011101 Lloyd-Davies 1 -011011101 Canby 1 -011011101 McSweeny 1 -011011101 Pernfors 1 -011011101 Schreib 1 -011011101 STROM 1 -011011101 BarLev 1 -011011101 Hover 1 -011011101 Ohlson 1 -011011101 Passaro 1 -011011101 Khouli 1 -011011101 Diercks 1 -011011101 Boorda 1 -011011101 Sardot 1 -011011101 Xinrong 1 -011011101 Ossofsky 1 -011011101 Akabas 1 -011011101 Parman 1 -011011101 Kosiak 1 -011011101 Tantalean 1 -011011101 Spight 1 -011011101 Chaisson 1 -011011101 Geske 1 -011011101 Polmar 1 -011011101 Feuchter 1 -011011101 Onofrio 1 -011011101 Rehard 1 -011011101 Detorie 1 -011011101 Mincing 1 -011011101 Salemme 1 -011011101 Sapirstein 1 -011011101 Rimmeli 1 -011011101 Andstein 1 -011011101 Chantry 1 -011011101 Marsay 1 -011011101 Talis 1 -011011101 Raschke 1 -011011101 Bourg 1 -011011101 R.D.R. 1 -011011101 Theeuwes 1 -011011101 Bonsen 1 -011011101 Elvidge 1 -011011101 Pelaez 1 -011011101 Slyunkov 1 -011011101 pobres 1 -011011101 Fanego 1 -011011101 Thorrington-Smith 1 -011011101 Mingo-Jones 1 -011011101 Irie 1 -011011101 Doringer 1 -011011101 Horchler 1 -011011101 Glysteen 1 -011011101 Izenour 1 -011011101 Cameron-Webb 1 -011011101 Abdelnour 1 -011011101 Avramedes 1 -011011101 Al-Awadi 1 -011011101 Serongoane 1 -011011101 Al-Otaiba 1 -011011101 Froland 1 -011011101 Ellenbogen 1 -011011101 Courtiss 1 -011011101 Solorio 1 -011011101 Vardi 1 -011011101 Barbach 1 -011011101 Hoblin 1 -011011101 Dolin 1 -011011101 Cardile 1 -011011101 Vanauken 1 -011011101 Helfman 1 -011011101 Dugo 1 -011011101 Arneth 1 -011011101 Kluver 1 -011011101 Wesstroem 1 -011011101 Borowitz 1 -011011101 Rappaciolli 1 -011011101 Mulliner 1 -011011101 Schoenen 1 -011011101 Presutti 1 -011011101 Shabacker 1 -011011101 Streem 1 -011011101 Weiant 1 -011011101 Custance-Baker 1 -011011101 Nobele 1 -011011101 Jobert 1 -011011101 Krief 1 -011011101 Duykers 1 -011011101 Mirasol 1 -011011101 Canady 1 -011011101 Amhaus 1 -011011101 Nakazawa 1 -011011101 Cassman 1 -011011101 Ben-Zvi 1 -011011101 Hertig 1 -011011101 Pato 1 -011011101 Noelling 1 -011011101 Somemiya 1 -011011101 Sugimura 1 -011011101 Yaoi 1 -011011101 Inoki 1 -011011101 Shuler 1 -011011101 Steinkras 1 -011011101 Saint-Pierre 1 -011011101 Aleandro 1 -011011101 Norflus 1 -011011101 Dowden 1 -011011101 Smethurst 1 -011011101 Rinzler 1 -011011101 Carlstedt 1 -011011101 Nasello 1 -011011101 Annear 1 -011011101 Hylbert 1 -011011101 Veer 1 -011011101 Mertens 1 -011011101 Simonnet 1 -011011101 Hervet 1 -011011101 Chatillon 1 -011011101 Bonadies 1 -011011101 Strauss-Kahn 1 -011011101 Gardee 1 -011011101 Mohtashami-Por 1 -011011101 Dravecky 1 -011011101 Brunansky 1 -011011101 Tremitiere 1 -011011101 Sienes 1 -011011101 Zielke 1 -011011101 show-MET-lah 1 -011011101 Cluchey 1 -011011101 Smurra 1 -011011101 Ulstein 1 -011011101 Taubeneck 1 -011011101 Copps 1 -011011101 Bauchard 1 -011011101 DiLallo 1 -011011101 Saviola 1 -011011101 Bartenstein 1 -011011101 Fischinger 1 -011011101 Benincasa 1 -011011101 Ram-BOO-ka 1 -011011101 Schmoll 1 -011011101 Castenson 1 -011011101 Bewley 1 -011011101 Bankford 1 -011011101 Philipps 1 -011011101 Oseroff 1 -011011101 Landess 1 -011011101 Zatko 1 -011011101 Knadler 1 -011011101 Miali 1 -011011101 Frucht 1 -011011101 Beuren 1 -011011101 Kasdorf 1 -011011101 Focht 1 -011011101 Toledo-Flores 1 -011011101 Stanzel 1 -011011101 Mazlish 1 -011011101 Morelli 1 -011011101 Eyzaguirre 1 -011011101 1841-1895 1 -011011101 DeGruson 1 -011011101 DeLange 1 -011011101 Nederkoom 1 -011011101 Cerra 1 -011011101 Dantowitz 1 -011011101 Litzenberger 1 -011011101 Lueck 1 -011011101 1855-1899 1 -011011101 Kilmartin 1 -011011101 Grummer 1 -011011101 Telramund 1 -011011101 rt-PA 1 -011011101 Leehaug 1 -011011101 Weisburg 1 -011011101 Vavrik 1 -011011101 Mege 1 -011011101 Heneault 1 -011011101 Chaykin 1 -011011101 Bryne 1 -011011101 Trewin 1 -011011101 Lantrip 1 -011011101 Swarts 1 -011011101 RHU 1 -011011101 CPCU 1 -011011101 Mamase 1 -011011101 Stonestreet 1 -011011101 Heynes 1 -011011101 Lainez 1 -011011101 Knutzen 1 -011011101 Oie 1 -011011101 Velotta 1 -011011101 film-related 1 -011011101 Kerschaw 1 -011011101 Beardslee 1 -011011101 Koban 1 -011011101 Tusher 1 -011011101 Runciman 1 -011011101 Dudler 1 -011011101 Axen 1 -011011101 Delasalle 1 -011011101 Hasselgren 1 -011011101 Yanev 1 -011011101 Siffert 1 -011011101 Gentsher 1 -011011101 Leemann 1 -011011101 Purviness 1 -011011101 Penhaligon 1 -011011101 212-242-0800 1 -011011101 Walton-Mackie 1 -011011101 Ashurst 1 -011011101 ATD 1 -011011101 Stelloff 1 -011011101 3.14159265 1 -011011101 Kila 1 -011011101 Ruvo 1 -011011101 Wiesz 1 -011011101 Brandley 1 -011011101 Ligammari 1 -011011101 Mattioli 1 -011011101 Allio 1 -011011101 Ditmore 1 -011011101 Buchli 1 -011011101 Agnos 1 -011011101 Harner 1 -011011101 Clougherty 1 -011011101 Delins 1 -011011101 Damiani 1 -011011101 Kurlansky 1 -011011101 Oyer 1 -011011101 D-Wis. 1 -011011101 Wice 1 -011011101 Henricks 1 -011011101 Lachance 1 -011011101 Boell 1 -011011101 Seagly 1 -011011101 Eichenger 1 -011011101 Hufford 1 -011011101 Rutkowski 1 -011011101 Mauser 1 -011011101 Valis 1 -011011101 Sard 1 -011011101 Gorkow 1 -011011101 Zeeb 1 -011011101 Throneburg 1 -011011101 Roosma 1 -011011101 Bishofberger 1 -011011101 Fasullo 1 -011011101 Murza 1 -011011101 Brangaccio 1 -011011101 Ortiner 1 -011011101 Capozzi 1 -011011101 1-800-235-KIDS 1 -011011101 Xenokis 1 -011011101 1976-1981 1 -011011101 Gussner 1 -011011101 Botka 1 -011011101 1565-1635 1 -011011101 DeStefano 1 -011011101 HR-4 1 -011011101 NYCHA 1 -011011101 Raus 1 -011011101 Buckwold 1 -011011101 Haggie 1 -011011101 Stugis 1 -011011101 Moxely 1 -011011101 Rautenberg 1 -011011101 Sabbagh 1 -011011101 Gunselman 1 -011011101 Osato 1 -011011101 Tregidon 1 -011011101 KISSING 1 -011011101 Bratanata 1 -011011101 Sule 1 -011011101 Delavallee 1 -011011101 Serusier 1 -011011101 Kavafian 1 -011011101 Kaihara 1 -011011101 non-restaurant 1 -011011101 Schwed 1 -011011101 Benko 1 -011011101 Fusen 1 -011011101 Konilovsky 1 -011011101 Petukhov 1 -011011101 Jastrow 1 -011011101 Bhardwaj 1 -011011101 Stilgoe 1 -011011101 Stavisky 1 -011011101 Wignowsky 1 -011011101 Trossen 1 -011011101 McGonigle 1 -011011101 LaVista 1 -011011101 Mauzy 1 -011011101 Haueter 1 -011011101 Zaluckyj 1 -011011101 Ledwidge 1 -011011101 al-Anbari 1 -011011101 Tumonainen 1 -011011101 Finkleman 1 -011011101 Lajas 1 -011011101 Daughenbaugh 1 -011011101 Chocula 1 -011011101 bonnier 1 -011011101 Edles 1 -011011101 IUPUI 1 -011011101 Serow 1 -011011101 Kalita 1 -011011101 Chamoun 1 -011011101 Forszt 1 -011011101 sidder-OG-ruh-ferz 1 -011011101 Sharawi 1 -011011101 1711-1776 1 -011011101 224-3753 1 -011011101 224-2315 1 -011011101 225-2464 1 -011011101 225-6235 1 -011011101 Gaeddert 1 -011011101 Dawaa 1 -011011101 Llanza 1 -011011101 Shati 1 -011011101 McVean 1 -011011101 800-621-0379 1 -011011101 Holdsworth 1 -011011101 Oiwa 1 -011011101 Chodash 1 -011011101 Moreschi 1 -011011101 Curlook 1 -011011101 Ben-Veniste 1 -011011101 plant-owning 1 -011011101 Lindelow 1 -011011101 Bohnen 1 -011011101 Tauman 1 -011011101 Demeuleneere 1 -011011101 Demarbaix 1 -011011101 Almaviva 1 -011011101 1793-94 1 -011011101 Hirayama 1 -011011101 Vondracek 1 -011011101 Assis 1 -011011101 Branham 1 -011011101 Rotsch 1 -011011101 Lloydisms 1 -011011101 Deronda 1 -011011101 Hutto 1 -011011101 Gimenez 1 -011011101 Abdulkader 1 -011011101 Mustazaafin 1 -011011101 Fakhrou 1 -011011101 Ruchalski 1 -011011101 Munns 1 -011011101 Ketelle 1 -011011101 i.e 1 -011011101 Kindlelan 1 -011011101 Ulacia 1 -011011101 Siddall 1 -011011101 LaVigne 1 -011011101 Heckel 1 -011011101 LONG-e 1 -011011101 Hampel 1 -011011101 Thirkill 1 -011011101 Hait 1 -011011101 Bonsignore 1 -011011101 Rauber 1 -011011101 Mense 1 -011011101 Geschwill 1 -011011101 Brickey 1 -011011101 Beaubrun 1 -011011101 gonah-EVE 1 -011011101 Nedda 1 -011011101 Algieri 1 -011011101 EL-uhter 1 -011011101 Poltrock 1 -011011101 Verplank 1 -011011101 Webb-Ware 1 -011011101 Begell 1 -011011101 Kunzmann 1 -011011101 Wileman 1 -011011101 Rabossi 1 -011011101 Monro 1 -011011101 Dollarhyde 1 -011011101 Nachtsheim 1 -011011101 Wineman 1 -011011101 Nagai 1 -011011101 Motlatsi 1 -011011101 Corp./Group 1 -011011101 Bonaventura 1 -011011101 Vipond 1 -011011101 Fise 1 -011011101 Mapston 1 -011011101 Kretch 1 -011011101 Patella 1 -011011101 Bloechle 1 -011011101 Cornacchione 1 -011011101 Vahala 1 -011011101 Destounis 1 -011011101 Ryll 1 -011011101 Saied 1 -011011101 Firstenberg 1 -011011101 Scanzoni 1 -011011101 Wolin 1 -011011101 Melano 1 -011011101 Trussel 1 -011011101 Borovsky 1 -011011101 Veno 1 -011011101 Bardon 1 -011011101 Liepins 1 -011011101 Subtitle 1 -011011101 -.429 1 -011011101 -.713 1 -011011101 SEC/CFTC 1 -011011101 Weinzweig 1 -011011101 Kaufer 1 -011011101 Conelo 1 -011011101 DiGenova 1 -011011101 Mellstig 1 -011011101 Hermansson 1 -011011101 1983-1985 1 -011011101 CRSs 1 -011011101 Hadjelias 1 -011011101 Portalakis 1 -011011101 Kuzma 1 -011011101 Eysser 1 -011011101 Magidson 1 -011011101 Ohya 1 -011011101 Heltman 1 -011011101 Byham 1 -011011101 Osos 1 -011011101 Szewach 1 -011011101 Cairncross 1 -011011101 Cotchett 1 -011011101 Bowder 1 -011011101 Commiskey 1 -011011101 Boornazian 1 -011011101 Lammert-Reeves 1 -011011101 Pestalozzi 1 -011011101 Guyett 1 -011011101 Caldabaugh 1 -011011101 Smeenk 1 -011011101 Stiglitz 1 -011011101 Espinasse 1 -011011101 NNRF 1 -011011101 Dezan 1 -011011101 Uccellini 1 -011011101 Valkin 1 -011011101 Ciccolini 1 -011011101 Colosimo 1 -011011101 Chiaradia 1 -011011101 Swindal 1 -011011101 Lauryk 1 -011011101 Fieldman 1 -011011101 Hoye 1 -011011101 Saborio 1 -011011101 Robicheaux 1 -011011101 Burmester 1 -011011101 Winskie 1 -011011101 McPeek 1 -011011101 BOSS-key 1 -011011101 Darro 1 -011011101 Teigen 1 -011011101 Fenigsen 1 -011011101 Gevers 1 -011011101 Rigter 1 -011011101 Sutorius 1 -011011101 fue 1 -011011101 Dauhajre 1 -011011101 Lattie 1 -011011101 Vetrone 1 -011011101 Nickol 1 -011011101 Buglass 1 -011011101 SPILLOVER 1 -011011101 Melrose-Brown 1 -011011101 Pinkham 1 -011011101 Metheny 1 -011011101 Dockendorf 1 -011011101 Rajski 1 -011011101 1706-90 1 -011011101 Nisley 1 -011011101 Miccolis 1 -011011101 Kassinger 1 -011011101 Ferman 1 -011011101 Virenque 1 -011011101 Spadine 1 -011011101 Paro 1 -011011101 Kouris 1 -011011101 Kalthoff 1 -011011101 Angeltvit 1 -011011101 Sinowski 1 -011011101 Tamiya 1 -011011101 Portmann 1 -011011101 Chonggye 1 -011011101 Bisignani 1 -011011101 Schmolzer 1 -011011101 Kressler 1 -011011101 Parmentier 1 -011011101 Rodarte 1 -011011101 Northcutt 1 -011011101 Borkowicz 1 -011011101 Andreini 1 -011011101 Soane 1 -011011101 Fieldsteel 1 -011011101 Buxbaum 1 -011011101 Semer 1 -011011101 Skeens 1 -011011101 Konnersmann 1 -011011101 Farrand 1 -011011101 NARSAD 1 -011011101 Pizzorno 1 -011011101 Jorndt 1 -011011101 Lindorff 1 -011011101 McLagan 1 -011011101 Lukyanenko 1 -011011101 Berestovsky 1 -011011101 Teles 1 -011011101 Constantio 1 -011011101 55-yard-long 1 -011011101 peenahns 1 -011011101 Slee 1 -011011101 Salleh 1 -011011101 Silversmith 1 -011011101 Shafi 1 -011011101 RCA/Bluebird 1 -011011101 Andricks 1 -011011101 Jirovsky 1 -011011101 Chaitin 1 -011011101 Fezatte 1 -011011101 Saphos 1 -011011101 Swesnik 1 -011011101 Prinstein 1 -011011101 Rovsek 1 -011011101 Brihay 1 -011011101 Al-Rubee 1 -011011101 Tribaldos 1 -011011101 Vanasco 1 -011011101 Sherba 1 -011011101 Hottinger 1 -011011101 Tsurumi 1 -011011101 Passin 1 -011011101 Gillin 1 -011011101 McEnroe-like 1 -011011101 Latrenta 1 -011011101 Komisar 1 -011011101 Labasse 1 -011011101 Fleys 1 -011011101 Rivoire 1 -011011101 Chemain 1 -011011101 Grapsi 1 -011011101 Gervacio 1 -011011101 Willdanger 1 -011011101 Mehr 1 -011011101 Bossong 1 -011011101 Heigham 1 -011011101 Halterman 1 -011011101 Tabbert 1 -011011101 Wideman 1 -011011101 Shortliffe 1 -011011101 Sandness 1 -011011101 Blaustein 1 -011011101 Qvigstad 1 -011011101 Frady 1 -011011101 Valiquette 1 -011011101 Uggams 1 -011011101 Antilles/New 1 -011011101 Bason 1 -011011101 Ashkenazi 1 -011011101 Hartstein 1 -011011101 Dastor 1 -011011101 Gancher 1 -011011101 Demain 1 -011011101 Johnboy 1 -011011101 Blecksmith 1 -011011101 Kajiwara 1 -011011101 Nakaoka 1 -011011101 Pacsi 1 -011011101 Pagliaroli 1 -011011101 Vadala 1 -011011101 Orsatti 1 -011011101 Verden 1 -011011101 Gessell 1 -011011101 Geneson 1 -011011101 Kook-Chin 1 -011011101 Fanizza 1 -011011101 Monogenis 1 -011011101 Lavchenko 1 -011011101 Drummond-Hay 1 -011011101 Dhawan 1 -011011101 Sommerfield 1 -011011101 Leggatt 1 -011011101 Leonsis 1 -011011101 Cristy 1 -011011101 Schollbach 1 -011011101 Barsi 1 -011011101 McElduff 1 -011011101 Morneault 1 -011011101 Ishizumi 1 -011011101 Benford 1 -011011101 Klein-Siebenbuergen 1 -011011101 Plautt 1 -011011101 Boff 1 -011011101 Grear 1 -011011101 Sungman 1 -011011101 Dendtler 1 -011011101 Bargert 1 -011011101 Brattland 1 -011011101 Colley 1 -011011101 Bessmertnova 1 -011011101 Natalya 1 -011011101 Irek 1 -011011101 203-496-1222 1 -011011101 212-316-7540 1 -011011101 Rentsch 1 -011011101 Bastankhah 1 -011011101 Thiessen 1 -011011101 Huckabee 1 -011011101 Dopmeyer 1 -011011101 Kelson 1 -011011101 Panelli 1 -011011101 Posman 1 -011011101 Serrani 1 -011011101 Bodow 1 -011011101 Bruckhiemer 1 -011011101 Kittleson 1 -011011101 Jauch 1 -011011101 Halis 1 -011011101 Blankenbuehler 1 -011011101 Caldecott 1 -011011101 Steppe 1 -011011101 Imber 1 -011011101 Feinsod 1 -011011101 Ater 1 -011011101 Papiano 1 -011011101 Bleiweiss 1 -011011101 Sedlmayr 1 -011011101 Ballamy 1 -011011101 Menzies 1 -011011101 Kerston 1 -011011101 Sherwell 1 -011011101 Dunnett 1 -011011101 Wiswall 1 -011011101 Jenchura 1 -011011101 Moayeri 1 -011011101 Mouhadjer 1 -011011101 1553-1610 1 -011011101 Faussat 1 -011011101 Laingen 1 -011011101 Hoyinck 1 -011011101 Fenical 1 -011011101 Giametta 1 -011011101 Krutch 1 -011011101 Bechtholdt 1 -011011101 Nuttall 1 -011011101 Beffa 1 -011011101 Fredston 1 -011011101 Krawczuk 1 -011011101 Resiman 1 -011011101 Iacono 1 -011011101 McDermitt 1 -011011101 Vangreen 1 -011011101 Goldener 1 -011011101 Conway-Welch 1 -011011101 Mottram-Doss 1 -011011101 Esai 1 -011011101 Rosana 1 -011011101 Esbeck 1 -011011101 Manweller 1 -011011101 McMonigall 1 -011011101 Balmaseda 1 -011011101 Conthe 1 -011011101 Tamames 1 -011011101 Dalchau 1 -011011101 Wathen 1 -011011101 Colella 1 -011011101 Gaiti 1 -011011101 Sangster 1 -011011101 Kriebel 1 -011011101 Balick 1 -011011101 Markkula 1 -011011101 Frechette 1 -011011101 Kantrow 1 -011011101 Rummell 1 -011011101 Turman 1 -011011101 Merjos 1 -011011101 Zonis 1 -011011101 Hamdoun 1 -011011101 Kroeger 1 -011011101 Bortle 1 -011011101 Terranova 1 -011011101 Brosee 1 -011011101 Pourier 1 -011011101 Werdekker 1 -011011101 Puccinelli 1 -011011101 Gallia 1 -011011101 Bahl 1 -011011101 Simonetti 1 -011011101 Ingleby 1 -011011101 Stogsdill 1 -011011101 Disson 1 -011011101 Pranga 1 -011011101 Brechtel 1 -011011101 Kasner 1 -011011101 Klenaitis 1 -011011101 Forner 1 -011011101 Kalf 1 -011011101 Pfeifle 1 -011011101 Pandolfini 1 -011011101 Menzer 1 -011011101 Streibl 1 -011011101 Manz 1 -011011101 Nishisaka 1 -011011101 Dosher 1 -011011101 Iddles 1 -011011101 Routledge 1 -011011101 Klepac 1 -011011101 Caranchini 1 -011011101 Ngugi 1 -011011101 Kech 1 -011011101 1890-1988 1 -011011101 Saunby 1 -011011101 Strasheim 1 -011011101 Krattenmaker 1 -011011101 Goos 1 -011011101 Carmon 1 -011011101 CAMS 1 -011011101 CONNECTIONS 1 -011011101 Crumley 1 -011011101 Hudock 1 -011011101 Shea-Stonum 1 -011011101 Vitner 1 -011011101 Litwok 1 -011011101 Fransi 1 -011011101 Manduca 1 -011011101 Nolvadex 1 -011011101 Odle 1 -011011101 Vernon-Katz 1 -011011101 Branand 1 -011011101 D-Wisc. 1 -011011101 D.-Miss. 1 -011011101 Borlaug 1 -011011101 Trombetti 1 -011011101 Martignetti 1 -011011101 Sortwell 1 -011011101 800-832-1838 1 -011011101 Thoday 1 -011011101 Bonyata 1 -011011101 Shefts 1 -011011101 Trillo 1 -011011101 Moscato 1 -011011101 Pestcoe 1 -011011101 Shiftlett 1 -011011101 Mabro 1 -011011101 Calwell 1 -011011101 Baldus 1 -011011101 DeWeese 1 -011011101 Barschi 1 -011011101 Gelston 1 -011011101 Cromie 1 -011011101 Franch 1 -011011101 Damaska 1 -011011101 Coppel 1 -011011101 DuMouchel 1 -011011101 Fabiero 1 -011011101 Bubrick 1 -011011101 Basagoiti 1 -011011101 Tijerina 1 -011011101 Shoff 1 -011011101 Masser 1 -011011101 Alcaman 1 -011011101 Somare 1 -011011101 Plenier 1 -011011101 Furedi 1 -011011101 Garidze 1 -011011101 Moffat 1 -011011101 Briguglio 1 -011011101 Yarberry 1 -011011101 Tarabbia 1 -011011101 Thorup 1 -011011101 Tongate 1 -011011101 Seay 1 -011011101 Schieferdecker 1 -011011101 Gelinas 1 -011011101 Nollet 1 -011011101 Inai 1 -011011101 Shamas 1 -011011101 Schaab 1 -011011101 Moschner 1 -011011101 Tattam 1 -011011101 Gripp 1 -011011101 Anifantis 1 -011011101 Englehorn 1 -011011101 Mitome 1 -011011101 Karamtchakov 1 -011011101 Marksee 1 -011011101 Hartig 1 -011011101 Kotoski 1 -011011101 Giraudo 1 -011011101 Soderberg 1 -011011101 Eveland 1 -011011101 Grapenthien 1 -011011101 Kindle 1 -011011101 Shabanov 1 -011011101 DeMarois 1 -011011101 Rezendes 1 -011011101 Kosko 1 -011011101 Grossberg 1 -011011101 Hankla 1 -011011101 Balz 1 -011011101 Sittig 1 -011011101 Allgayer 1 -011011101 Dux 1 -011011101 Schupper 1 -011011101 Werning 1 -011011101 Willhite 1 -011011101 Venora 1 -011011101 Murch 1 -011011101 Traverse-Healy 1 -011011101 Ruland 1 -011011101 Sterbenz 1 -011011101 Amaon 1 -011011101 Bulzacchelli 1 -011011101 Grosman 1 -011011101 Grandon 1 -011011101 Dyjor 1 -011011101 Sharperson 1 -011011101 Iwanaga 1 -011011101 Wender 1 -011011101 Blunte 1 -011011101 Seevers 1 -011011101 Solt 1 -011011101 Guinta 1 -011011101 Franciscovich 1 -011011101 Jaschke 1 -011011101 Rodenberger 1 -011011101 Kunv 1 -011011101 Vaska 1 -011011101 Fygi 1 -011011101 Grundler 1 -011011101 Kierans 1 -011011101 Montemayor 1 -011011101 Latto 1 -011011101 Debreu 1 -011011101 Rion 1 -011011101 Drouhin 1 -011011101 Erath 1 -011011101 Eversole 1 -011011101 Ripert 1 -011011101 Schneeweis 1 -011011101 Bickwit 1 -011011101 Zachman 1 -011011101 Brownelle 1 -011011101 Ferron 1 -011011101 Ehara 1 -011011101 Smolla 1 -011011101 Yaroslovsky 1 -011011101 Gueron 1 -011011101 Santulli 1 -011011101 Froess 1 -011011101 Widomski 1 -011011101 Bozza 1 -011011101 Klapthor 1 -011011101 Tronetti 1 -011011101 Boyll 1 -011011101 Geohegan 1 -011011101 Semmelmeyer 1 -011011101 Santoski 1 -011011101 Foscarinis 1 -011011101 Trauth 1 -011011101 Cuilian 1 -011011101 Chapnik 1 -011011101 Sedin 1 -011011101 Peetz 1 -011011101 Funsch 1 -011011101 Cekander 1 -011011101 Beligratis 1 -011011101 Denari 1 -011011101 Bension 1 -011011101 Pavone 1 -011011101 Zviak 1 -011011101 Greata 1 -011011101 Meadville 1 -011011101 Quimby 1 -011011101 Mullet 1 -011011101 Odescalchi 1 -011011101 Puerner 1 -011011101 Gunnels 1 -011011101 Muratov 1 -011011101 Woo-Choong 1 -011011101 Ekers 1 -011011101 Beavan 1 -011011101 Kmiec 1 -011011101 Canick 1 -011011101 Tumanov 1 -011011101 Karaganova 1 -011011101 Raycraft 1 -011011101 Heigel 1 -011011101 Knust 1 -011011101 Zaren 1 -011011101 Giunta 1 -011011101 Youngwood 1 -011011101 Leardi 1 -011011101 Carraher 1 -011011101 Yufu 1 -011011101 Eslinger 1 -011011101 codices 1 -011011101 Glyptis 1 -011011101 Ekenberg 1 -011011101 Demarco 1 -011011101 Behzad 1 -011011101 Kamagata 1 -011011101 al-Rashed 1 -011011101 Cranch 1 -011011101 Fojtik 1 -011011101 Milosevich 1 -011011101 Langham 1 -011011101 Teston 1 -011011101 Vogler 1 -011011101 Piela 1 -011011101 1975-78 1 -011011101 Kovener 1 -011011101 Fairnington 1 -011011101 Rahdert 1 -011011101 Djerassi 1 -011011101 Unverzagt 1 -011011101 Fitterman 1 -011011101 1975-1985 1 -011011101 BUYer 1 -011011101 McCalla 1 -011011101 Bloor 1 -011011101 Riegels 1 -011011101 fate-telling 1 -011011101 Kapustin 1 -011011101 Gaulding 1 -011011101 Hybels 1 -011011101 Shchelokov 1 -011011101 Pregl 1 -011011101 Gostancic 1 -011011101 Bavcar 1 -011011101 Warnecke 1 -011011101 Schneuwly 1 -011011101 Trink 1 -011011101 Gambaccini 1 -011011101 Chaltiel 1 -011011101 Behringer 1 -011011101 Szybillo 1 -011011101 1913-14 1 -011011101 Houlne 1 -011011101 Hewie 1 -011011101 McGavick 1 -011011101 Gugino 1 -011011101 Pirault 1 -011011101 Kamanitz 1 -011011101 D.-N.Y. 1 -011011101 Wyner 1 -011011101 Tonha 1 -011011101 Ofrichter 1 -011011101 Eddins 1 -011011101 Mehall 1 -011011101 Hokmark 1 -011011101 Reimers 1 -011011101 Moorefield 1 -011011101 Gentes 1 -011011101 Espach 1 -011011101 Lovic 1 -011011101 Velenik 1 -011011101 Charleton-Jones 1 -011011101 Koo-CHIN-ski 1 -011011101 Wiskeman 1 -011011101 Gennity 1 -011011101 .325 1 -011011101 Moorehouse 1 -011011101 McReynolds 1 -011011101 Kneen 1 -011011101 Cicconi 1 -011011101 Scheri 1 -011011101 Kohda 1 -011011101 McLaughlan 1 -011011101 ERD 1 -011011101 Legac 1 -011011101 Skelley 1 -011011101 1603-1867 1 -011011101 Udono 1 -011011101 Carisio 1 -011011101 2-lahn 1 -011011101 Cornut 1 -011011101 Bechtler 1 -011011101 Buomberger 1 -011011101 Knopp 1 -011011101 Warshafsky 1 -011011101 Spallone 1 -011011101 Grath 1 -011011101 Gundersheim 1 -011011101 single/married 1 -011011101 Nagamochi 1 -011011101 Rashkow 1 -011011101 Rootness 1 -011011101 Cunning 1 -011011101 VI. 1 -011011101 Rosing 1 -011011101 Shappelle 1 -011011101 Mafaje 1 -011011101 Notte 1 -011011101 Ellison-Sandler 1 -011011101 5,284 1 -011011101 5,334 1 -011011101 Kert 1 -011011101 Corigliano 1 -011011101 Winby 1 -011011101 Nauwelaerts 1 -011011101 Chongsoo 1 -011011101 Kobuse 1 -011011101 1918- 1 -011011101 Arnem 1 -011011101 Stadd 1 -011011101 Hershenson 1 -011011101 McPhillips 1 -011011101 Stofan 1 -011011101 Bugg 1 -011011101 Patrucco 1 -011011101 Routh 1 -011011101 Lowen 1 -011011101 Lockman-Brooks 1 -011011101 Wollin 1 -011011101 Walhout 1 -011011101 Tullier 1 -011011101 Cadloff 1 -011011101 Cannon-Albright 1 -011011101 Giblin 1 -011011101 Mapondo 1 -011011101 Ehrhart 1 -011011101 Pragoff 1 -011011101 Reahm 1 -011011101 Mesheshvilli 1 -011011101 Rafiq-Doust 1 -011011101 Swaveley 1 -011011101 Mobley 1 -011011101 Egmont 1 -011011101 Irminger 1 -011011101 Reishman 1 -011011101 Klonski 1 -011011101 Cossutta 1 -011011101 CMHCs 1 -011011101 Sexer 1 -011011101 1:01.2 1 -011011101 2:08.6 1 -011011101 Gallimore 1 -011011101 Stehrenberger 1 -011011101 Recktenwald 1 -011011101 Skowronski 1 -011011101 Minier 1 -011011101 Bhattacherjee 1 -011011101 Marchick 1 -011011101 Donzelli 1 -011011101 Sowiski 1 -011011101 cooched 1 -011011101 Neimeier 1 -011011101 Damore. 1 -011011101 Gutt 1 -011011101 Tumavitch 1 -011011101 Doctrow 1 -011011101 Pfander 1 -011011101 Ellert 1 -011011101 Signore 1 -011011101 Nakatani 1 -011011101 Washkowitz 1 -011011101 Catequista 1 -011011101 Geruso 1 -011011101 Rehr 1 -011011101 Depa 1 -011011101 Ambrosi 1 -011011101 Vidmar 1 -011011101 Gold-Bilkin 1 -011011101 Althoff 1 -011011101 Freidheim 1 -011011101 Gerritsen 1 -011011101 Casy 1 -011011101 DeLucas 1 -011011101 Uman 1 -011011101 Lackritz 1 -011011101 Mitarai 1 -011011101 Stanovich 1 -011011101 Libenson 1 -011011101 Nepantla 1 -011011101 Sherratt 1 -011011101 Veziris 1 -011011101 Kalendarian 1 -011011101 Jabara 1 -011011101 Soukup 1 -011011101 Denove 1 -011011101 Kralovec 1 -011011101 Bos 1 -011011101 Stepnes 1 -011011101 Zeftel 1 -011011101 Khachapuri 1 -011011101 Piggott 1 -011011101 Raighn 1 -011011101 Winborn 1 -011011101 Wrench 1 -011011101 Ferree 1 -011011101 Paulshock 1 -011011101 Schaafsma 1 -011011101 Mulva 1 -011011101 Galer 1 -011011101 Tackx 1 -011011101 Beratan 1 -011011101 Behrman 1 -011011101 Armijo 1 -011011101 Tarves 1 -011011101 Monod 1 -011011101 Lapinski 1 -011011101 Rittmaster 1 -011011101 Acello 1 -011011101 Gorlin 1 -011011101 Mitani 1 -011011101 Warley-Cummings 1 -011011101 Soviet-watcher 1 -011011101 Verding 1 -011011101 Likus 1 -011011101 Delorme 1 -011011101 Morfogen 1 -011011101 Cacciotti 1 -011011101 Drooyan 1 -011011101 Lemka 1 -011011101 Shwe 1 -011011101 Glaub 1 -011011101 Widney 1 -011011101 McLodge 1 -011011101 McJobs 1 -011011101 Bowick 1 -011011101 Genis 1 -011011101 Ziv 1 -011011101 Mansky 1 -011011101 Kalm 1 -011011101 Yakimanka 1 -011011101 Hayghe 1 -011011101 Biklin 1 -011011101 Frison 1 -011011101 Stoker 1 -011011101 Kashima 1 -011011101 Rakewell 1 -011011101 800-255-3396 1 -011011101 Raiser 1 -011011101 Traylor 1 -011011101 Shubin 1 -011011101 Hackbarth 1 -011011101 Lesage 1 -011011101 VerPloeg 1 -011011101 Marro 1 -011011101 Esh 1 -011011101 Mueser 1 -011011101 Harangody 1 -011011101 Grin 1 -011011101 Tovin 1 -011011101 Pawliger 1 -011011101 Schanback 1 -011011101 Briam 1 -011011101 Meit 1 -011011101 Eilon 1 -011011101 Schellmoser 1 -011011101 Dettmer 1 -011011101 Doren 1 -011011101 Carideo 1 -011011101 Meale 1 -011011101 Tebbutt 1 -011011101 Pomerance 1 -011011101 Carroli 1 -011011101 Nomura-Eastdil 1 -011011101 Rosewater 1 -011011101 Overwalle 1 -011011101 Tsugawa 1 -011011101 Westphall 1 -011011101 Auschlander 1 -011011101 Ettinger 1 -011011101 Matsebula 1 -011011101 Elisburg 1 -011011101 Poppic 1 -011011101 Honney 1 -011011101 Geeling 1 -011011101 Wartman 1 -011011101 Gendall 1 -011011101 Godisch 1 -011011101 Kothe 1 -011011101 Getraer 1 -011011101 Coneway 1 -011011101 Vestuto 1 -011011101 Silvana 1 -011011101 McKinnerney 1 -011011101 Denemark 1 -011011101 ba-GOD-ja 1 -011011101 Pitegoff 1 -011011101 Bretland 1 -011011101 Buesse 1 -011011101 Tapner 1 -011011101 Brocksom 1 -011011101 Christafalo 1 -011011101 Jamele 1 -011011101 Matutes 1 -011011101 Seabury 1 -011011101 Lindenauer 1 -011011101 Botwin 1 -011011101 Raim 1 -011011101 Sheffler 1 -011011101 Oreja 1 -011011101 Letsche 1 -011011101 Levander 1 -011011101 Boersma 1 -011011101 Renirie 1 -011011101 Seielstad 1 -011011101 Zitzer 1 -011011101 Brenn 1 -011011101 Luchini 1 -011011101 Gettings 1 -011011101 Mayginnes 1 -011011101 Wooldridge 1 -011011101 Netter 1 -011011101 DeFina 1 -011011101 Settelmeyer 1 -011011101 Chaiken 1 -011011101 Martinus 1 -011011101 Velzer 1 -011011101 54-24-1 1 -011011101 Moschella 1 -011011101 Nowikowski 1 -011011101 Romweber 1 -011011101 M&As 1 -011011101 Bittke 1 -011011101 Furciniti 1 -011011101 Colarusso 1 -011011101 Savaides 1 -011011101 Hougardy 1 -011011101 Mossbacher 1 -011011101 Arenstein 1 -011011101 Sutin 1 -011011101 Scwarzschild 1 -011011101 Dettinger-Gardner 1 -011011101 Schaal 1 -011011101 Hampe 1 -011011101 Morrongiello 1 -011011101 Tague 1 -011011101 Foisy 1 -011011101 Petruzzi 1 -011011101 Flaster 1 -011011101 Ashenfelter 1 -011011101 Asenjo 1 -011011101 Frumberg 1 -011011101 Rumbolz 1 -011011101 Meechum 1 -011011101 Stiglin 1 -011011101 Schwarzl 1 -011011101 Yeates 1 -011011101 DiBiase 1 -011011101 Poletto 1 -011011101 Yernault 1 -011011101 Leek 1 -011011101 Shebel 1 -011011101 Haire 1 -011011101 Besnoff 1 -011011101 Silaev 1 -011011101 Ruggeiro 1 -011011101 Rumsey 1 -011011101 Mehlman 1 -011011101 Depoe 1 -011011101 Motiuk 1 -011011101 Busfield 1 -011011101 Hensel 1 -011011101 Yachechak 1 -011011101 Lutter 1 -011011101 Roomkin 1 -011011101 Carsello 1 -011011101 Lindsell 1 -011011101 Oldknow 1 -011011101 Desloge 1 -011011101 Wulken 1 -011011101 Uzungu 1 -011011101 Arensberg 1 -011011101 Mallos 1 -011011101 4.63-4.47 1 -011011101 113-168 1 -011011101 196-210 1 -011011101 .261-.266 1 -011011101 Cottrill 1 -011011101 Walewander 1 -011011101 Miller-Jones 1 -011011101 Antaramian 1 -011011101 Espeland 1 -011011101 Reh 1 -011011101 Bovee 1 -011011101 Mellinger 1 -011011101 Hanon 1 -011011101 Loades 1 -011011101 Kamins 1 -011011101 Brynaert 1 -011011101 Carrion 1 -011011101 Vaught 1 -011011101 Greschner 1 -011011101 Bovey 1 -011011101 Nesmith 1 -011011101 Jannetta 1 -011011101 Wendkos 1 -011011101 Kurinari 1 -011011101 Matell 1 -011011101 Vangelos 1 -011011101 Freece 1 -011011101 Schoenbauer 1 -011011101 Endsley 1 -011011101 Jospe 1 -011011101 Hogle 1 -011011101 Clenaghan 1 -011011101 Veccio 1 -011011101 Moellering 1 -011011101 Gourley 1 -011011101 Retief 1 -011011101 Chenery 1 -011011101 Mansiri 1 -011011101 Kippen 1 -011011101 Aarn 1 -011011101 Kimberleigh 1 -011011101 Siddayao 1 -011011101 Kalban 1 -011011101 Helppie 1 -011011101 Oberbeeke 1 -011011101 Sheasby 1 -011011101 McKeel 1 -011011101 1601-65 1 -011011101 deBerardinis 1 -011011101 Vaes 1 -011011101 Hutcherson 1 -011011101 Froggatt 1 -011011101 Tadokoro 1 -011011101 Angrisani 1 -011011101 Luttner 1 -011011101 Weddle 1 -011011101 Ponomarev-Stepnoy 1 -011011101 McElvany 1 -011011101 Ziglar 1 -011011101 Mourou 1 -011011101 Kaup 1 -011011101 Ehrenhaft 1 -011011101 Souder 1 -011011101 Secco 1 -011011101 Anouilh 1 -011011101 Grossklaus 1 -011011101 Wartungsleben 1 -011011101 Gilham 1 -011011101 Dubren 1 -011011101 Hanzelka 1 -011011101 Lindstroem 1 -011011101 DiChiera 1 -011011101 Gockley 1 -011011101 Vanderploeg 1 -011011101 Wettreich 1 -011011101 Gearty 1 -011011101 Roever 1 -011011101 Rodewig 1 -011011101 Schey 1 -011011101 Jaspan 1 -011011101 Szollosi 1 -011011101 Inuyama 1 -011011101 Kleinaitis 1 -011011101 Springmann 1 -011011101 Silary 1 -011011101 Lagasca 1 -011011101 Brugger 1 -011011101 Mesagno 1 -011011101 Sanfedele 1 -011011101 Brehaut 1 -011011101 Mangada 1 -011011101 Amrhein 1 -011011101 Kamer 1 -011011101 Yarger 1 -011011101 Shanis 1 -011011101 VonWormer 1 -011011101 Doroff 1 -011011101 DeDoncker 1 -011011101 Nagamura 1 -011011101 Kennish 1 -011011101 Wyrsch 1 -011011101 Wolinsky 1 -011011101 Murphine 1 -011011101 Balisle 1 -011011101 Vernamonti 1 -011011101 Hatsopolous 1 -011011101 Oistad 1 -011011101 Darling-Hammond 1 -011011101 Litewka 1 -011011101 Thorning 1 -011011101 Menefee 1 -011011101 Gerstenzang 1 -011011101 Cronin-Golomb 1 -011011101 Raspler 1 -011011101 Ciatto 1 -011011101 Hempling 1 -011011101 Bainwol 1 -011011101 Noyer 1 -011011101 Olfert 1 -011011101 DeBernardo 1 -011011101 Chaudhuri 1 -011011101 Bagaman 1 -011011101 Jortberg 1 -011011101 Decourtray 1 -011011101 Durcholz 1 -011011101 Thyme 1 -011011101 Defrene 1 -011011101 Knabe 1 -011011101 Roco 1 -011011101 Klatell 1 -011011101 Chang-Soo 1 -011011101 Firnhaber 1 -011011101 Anbinder 1 -011011101 Pleck 1 -011011101 Correu 1 -011011101 Smithwick 1 -011011101 Solas 1 -011011101 Druskin 1 -011011101 Weand 1 -011011101 Nozaki 1 -011011101 Elektra/Nonesuch 1 -011011101 Kuriokhin 1 -011011101 Roark-Strummer 1 -011011101 Buche 1 -011011101 McCully 1 -011011101 Monferdini 1 -011011101 McCants 1 -011011101 Sypher 1 -011011101 97-94 1 -011011101 96-94 1 -011011101 Stepfanie 1 -011011101 Cingano 1 -011011101 Redish 1 -011011101 Kubarych 1 -011011101 Overholt 1 -011011101 Raptopoulous 1 -011011101 DiMarco 1 -011011101 Daverio 1 -011011101 Russler 1 -011011101 Bruenner 1 -011011101 Chernyshev 1 -011011101 TROOR-nisht 1 -011011101 Yankwitt 1 -011011101 Tregillus 1 -011011101 Hers-his-er 1 -011011101 Marvet 1 -011011101 Sidorsky 1 -011011101 Fentanes 1 -011011101 Defensor-Santiago 1 -011011101 Shelton-Colby 1 -011011101 Thurop 1 -011011101 Verrecchia 1 -011011101 Pelanne 1 -011011101 Utecht 1 -011011101 Ameche 1 -011011101 Curiel 1 -011011101 Kireta 1 -011011101 Luczaj 1 -011011101 Lagno 1 -011011101 Thirteen-year-old 1 -011011101 Vollum 1 -011011101 Kanegae 1 -011011101 Baldassari 1 -011011101 Redesdale 1 -011011101 Cutitta 1 -011011101 Rozenberg 1 -011011101 Gubrud 1 -011011101 Vapnek 1 -011011101 Wienheim 1 -011011101 Picci 1 -011011101 Daltrey 1 -011011101 Opatowski 1 -011011101 Balicki 1 -011011101 Bergdahl 1 -011011101 Bormann 1 -011011101 PMRC 1 -011011101 Overlan 1 -011011101 Kvols 1 -011011101 Luebke 1 -011011101 Galmiche 1 -011011101 leClerc 1 -011011101 Labreque 1 -011011101 Overchuck 1 -011011101 Seagrove 1 -011011101 Anway 1 -011011101 Ballan 1 -011011101 Harr 1 -011011101 Swilley 1 -011011101 Brenneman 1 -011011101 Harmatz 1 -011011101 Beletic 1 -011011101 Defty 1 -011011101 Oberhuber 1 -011011101 1594-1665 1 -011011101 Koya 1 -011011101 LaReese 1 -011011101 Terington 1 -011011101 Debber 1 -011011101 Bivins 1 -011011101 Haveles 1 -011011101 Tschantz 1 -011011101 Zakarin 1 -011011101 Bulaski 1 -011011101 Hamida 1 -011011101 Chehabar 1 -011011101 Grupp 1 -011011101 Deford 1 -011011101 Barbery 1 -011011101 Bornholdt 1 -011011101 Hatoyama 1 -011011101 Roehls 1 -011011101 Orear 1 -011011101 Robinson-Lewis 1 -011011101 Simko 1 -011011101 I-Jen 1 -011011101 Kinzbach 1 -011011101 Pinkele 1 -011011101 Kalisch 1 -011011101 McElwain 1 -011011101 Geater 1 -011011101 Kashpaw 1 -011011101 Rippon 1 -011011101 Adare 1 -011011101 Langness 1 -011011101 Geleji 1 -011011101 Karch 1 -011011101 Crowson 1 -011011101 Finan 1 -011011101 Talafre 1 -011011101 Fuerst 1 -011011101 VanderMeulen 1 -011011101 Proetta 1 -011011101 Selley 1 -011011101 Hollembeak 1 -011011101 Kotnour 1 -011011101 Lomazow 1 -011011101 Grego 1 -011011101 Sugi 1 -011011101 1836-37 1 -011011101 Hercz 1 -011011101 Muang 1 -011011101 Binggeli 1 -011011101 Gillego 1 -011011101 Skaags 1 -011011101 Stroeder 1 -011011101 Urbut 1 -011011101 Isman 1 -011011101 Ornest 1 -011011101 Tsurikov 1 -011011101 Kathrada 1 -011011101 Puliselik 1 -011011101 Andreeva 1 -011011101 Soorus 1 -011011101 Herries 1 -011011101 Leerhsen 1 -011011101 Philomel 1 -011011101 Shimshack 1 -011011101 Giess 1 -011011101 deHaven-Smith 1 -011011101 Kirstien 1 -011011101 Haniyeh 1 -011011101 Kepel 1 -011011101 Grenon 1 -011011101 Dantin 1 -011011101 Wingard 1 -011011101 Sayenga 1 -011011101 Facchetti 1 -011011101 Devalle 1 -011011101 Longwell 1 -011011101 Granade 1 -011011101 Negrier 1 -011011101 Dubow 1 -011011101 Arikady 1 -011011101 Hinkson 1 -011011101 817-155-1 1 -011011101 PolyGram-Verve 1 -011011101 101-106 1 -011011101 Ritze 1 -011011101 Hochhalter 1 -011011101 Recholtz 1 -011011101 1948-55 1 -011011101 1946-47 1 -011011101 1944-48 1 -011011101 Nadolski 1 -011011101 Lurton 1 -011011101 Paulet 1 -011011101 Schack 1 -011011101 Phale 1 -011011101 Noeth 1 -011011101 Taraba 1 -011011101 Nitzberg 1 -011011101 Freeberg 1 -011011101 Bakstansky 1 -011011101 Sarti 1 -011011101 1793-1864 1 -011011101 655-731 1 -011011101 Morris/Kraft 1 -011011101 Shapolsky 1 -011011101 Medoff 1 -011011101 Bolka 1 -011011101 Roesler 1 -011011101 Federighi 1 -011011101 Chehardy 1 -011011101 Newmarch 1 -011011101 Venables 1 -011011101 Choudhury 1 -011011101 Upcott 1 -011011101 Killelea 1 -011011101 Sayler 1 -011011101 Zia-ulHaq 1 -011011101 Hagenmeyer 1 -011011101 Dymond 1 -011011101 Shusas 1 -011011101 Zolezzi 1 -011011101 Rachko 1 -011011101 Ehrenhaus 1 -011011101 Zampa 1 -011011101 Hopcroft 1 -011011101 McIlroy 1 -011011101 Bereskov 1 -011011101 Hilvitz 1 -011011101 non-insiders 1 -011011101 Brehault 1 -011011101 ro-HEY-lio 1 -011011101 Bidinotto 1 -011011101 Setrakian 1 -011011101 Durack 1 -011011101 Knappman 1 -011011101 Dahmer 1 -011011101 Kolof 1 -011011101 Porteous 1 -011011101 Bearisto 1 -011011101 Gaba 1 -011011101 Bare-ZHAY 1 -011011101 Caldiero 1 -011011101 Devaquet 1 -011011101 Stenberg 1 -011011101 Steijger 1 -011011101 Vejnoska 1 -011011101 Zoglin 1 -011011101 Hollom 1 -011011101 Neree 1 -011011101 Chanoine 1 -011011101 Philidor 1 -011011101 Raalte 1 -011011101 Kappus 1 -011011101 Padia 1 -011011101 DiMaura 1 -011011101 Strobl 1 -011011101 Ashfield 1 -011011101 Mauhs 1 -011011101 Christia 1 -011011101 Gehringer 1 -011011101 Musha 1 -011011101 peep-LEEN 1 -011011101 golly-mah-CHAH 1 -011011101 waw-wah-RHAWN 1 -011011101 Berowne 1 -011011101 Skopp 1 -011011101 Steslow 1 -011011101 LaFrere 1 -011011101 Evey 1 -011011101 Cowfer 1 -011011101 Bohnett 1 -011011101 Parell 1 -011011101 McComas 1 -011011101 Versalle 1 -011011101 Latscher 1 -011011101 Midorikawa 1 -011011101 Inhofe 1 -011011101 Lusardi 1 -011011101 Noces 1 -011011101 Mati 1 -011011101 McConaughy 1 -011011101 Hartsel 1 -011011101 gah-YET 1 -011011101 Rhead 1 -011011101 Khatemi 1 -011011101 Ramsier 1 -011011101 Guell 1 -011011101 Haggin 1 -011011101 Lazaris 1 -011011101 Bidner 1 -011011101 Zanowski 1 -011011101 Viejitos 1 -011011101 Duflos 1 -011011101 Lefevbre 1 -011011101 Harino 1 -011011101 Briance 1 -011011101 Kambanis 1 -011011101 R-Calif. 1 -011011101 Tapagni 1 -011011101 Winne 1 -011011101 Warach 1 -011011101 Culberson 1 -011011101 1943-45 1 -011011101 Fugate 1 -011011101 Zindler 1 -011011101 Gbeho 1 -011011101 oh-WHY-hee 1 -011011101 Gievers 1 -011011101 Nanes 1 -011011101 Zubak 1 -011011101 Narcado 1 -011011101 Houminer 1 -011011101 Scaramozi 1 -011011101 Newkome 1 -011011101 DeCote 1 -011011101 Bricchetti 1 -011011101 Eshleman 1 -011011101 Mazze 1 -011011101 Stellas 1 -011011101 Adamski 1 -011011101 Hudd 1 -011011101 Stasick 1 -011011101 Lockleer 1 -011011101 Vagadori 1 -011011101 Moscarino 1 -011011101 Wambach 1 -011011101 Gault-Williams 1 -011011101 Grabel 1 -011011101 Arnette 1 -011011101 1921-22 1 -011011101 Offen 1 -011011101 Terris 1 -011011101 Bremridge 1 -011011101 Koyanagi 1 -011011101 Kueppers 1 -011011101 Sadaoui 1 -011011101 Puz 1 -011011101 Ingebretson 1 -011011101 Scinicariello 1 -011011101 Fryer 1 -011011101 Ramsen 1 -011011101 Shapiro-Matthews 1 -011011101 Bilstad 1 -011011101 Stancliffe 1 -011011101 Paysee 1 -011011101 Feess 1 -011011101 Fosbeck 1 -011011101 Memishian 1 -011011101 Peloquin 1 -011011101 Delport 1 -011011101 Tiner 1 -011011101 Scoppetta 1 -011011101 Genuario 1 -011011101 Herge 1 -011011101 Pitroda 1 -011011101 Marchione 1 -011011101 Paulin 1 -011011101 Ndemande 1 -011011101 Mashele 1 -011011101 Skapertas 1 -011011101 1724-1753 1 -011011101 Ille 1 -011011101 Reissig 1 -011011101 Zorina 1 -011011101 Mulrow 1 -011011101 Quattropani 1 -011011101 Lohss 1 -011011101 Rauschenbach 1 -011011101 Belforte 1 -011011101 Wegler 1 -011011101 Kotchian 1 -011011101 Hanawada 1 -011011101 McGull-Billingsley 1 -011011101 Gouws 1 -011011101 Elardo 1 -011011101 Mercaldo 1 -011011101 Bramsden 1 -011011101 Nothdurft 1 -011011101 Promocion 1 -011011101 Doctores 1 -011011101 Hegeman 1 -011011101 Grossvogel 1 -011011101 Deterding 1 -011011101 Cordery 1 -011011101 Chater 1 -011011101 McNaul 1 -011011101 Ribolow 1 -011011101 Tuffield 1 -011011101 bleeper 1 -011011101 Brunswijk 1 -011011101 Talensky 1 -011011101 Arnesen 1 -011011101 Kotar 1 -011011101 Kaericher 1 -011011101 Oswold 1 -011011101 Refsland 1 -011011101 Klath 1 -011011101 Margaronis 1 -011011101 Langbaum 1 -011011101 Squitero 1 -011011101 Elphick 1 -011011101 Lucchi 1 -011011101 Kalec 1 -011011101 Orentlicher 1 -011011101 Chenin 1 -011011101 Cavada 1 -011011101 Pierrard 1 -011011101 Ramond 1 -011011101 Sabatier 1 -011011101 Gutshall 1 -011011101 Calianese 1 -011011101 Dormer 1 -011011101 LoBue 1 -011011101 Bimonte 1 -011011101 Favretto 1 -011011101 Pettigrew 1 -011011101 Langton 1 -011011101 Kennard 1 -011011101 irately 1 -011011101 Phalen 1 -011011101 unspiked 1 -011011101 Entman 1 -011011101 Bargen 1 -011011101 Zichroni 1 -011011101 Toussia-Cohen 1 -011011101 Yadom-Lewis 1 -011011101 Geronimi 1 -011011101 Filarski 1 -011011101 Worner 1 -011011101 Kressel 1 -011011101 Kasofsky 1 -011011101 Takai 1 -011011101 Mogel 1 -011011101 Clifton-Bligh 1 -011011101 Shlossman 1 -011011101 Cersosimo 1 -011011101 Staak 1 -011011101 Guttag 1 -011011101 Morath 1 -011011101 Kovacevic 1 -011011101 Piersante 1 -011011101 Virden 1 -011011101 Hilson 1 -011011101 Mulhare 1 -011011101 Jester 1 -011011101 Kirton 1 -011011101 Jost 1 -011011101 Glinert 1 -011011101 Pfann 1 -011011101 D-Ore. 1 -011011101 Inselmann 1 -011011101 Havahart 1 -011011101 Knoblock 1 -011011101 Dicasoli 1 -011011101 Kravitt 1 -011011101 Beefsteaks 1 -011011101 Ogure 1 -011011101 Gushner 1 -011011101 Shumate 1 -011011101 Gillette-made 1 -011011101 Bufkin 1 -011011101 Slutzky 1 -011011101 Shulansky 1 -011011101 gibbs 1 -011011101 Landymore 1 -011011101 Skomorowsky 1 -011011101 N.B. 1 -011011101 Quirsfeld 1 -011011101 Levinger 1 -011011101 Typaldos 1 -011011101 Miyamura 1 -011011101 Shorten 1 -011011101 Stracuzzi 1 -011011101 Melius 1 -011011101 Poncet 1 -011011101 Cajal 1 -011011101 Herriman 1 -011011101 Pineo 1 -011011101 Courson 1 -011011101 Bee-rye-ter 1 -011011101 Mm-fu-may 1 -011011101 Qua-ee-see 1 -011011101 Furuichi 1 -011011101 Minich 1 -011011101 hetero 1 -011011101 Oliveti 1 -011011101 Proh-teck-shun-izm 1 -011011101 Cuhm-peh-tuh-tiv-nuss 1 -011011101 five-tone 1 -011011101 Polonofsky 1 -011011101 Lendrum 1 -011011101 1967-70 1 -011011101 Glockner 1 -011011101 Hobert 1 -011011101 Redburn 1 -011011101 Penzler 1 -011011101 Magram 1 -011011101 Schocket 1 -011011101 Rine 1 -011011101 Bertschmann 1 -011011101 Galvani 1 -011011101 Benkendorf 1 -011011101 McKimmie 1 -011011101 Sotoloff 1 -011011101 Niederhoffer 1 -011011101 DuVall 1 -011011101 Anana 1 -011011101 Brackett 1 -011011101 1841-1904 1 -011011101 Kloepfer 1 -011011101 Ramer 1 -011011101 Pollaci 1 -011011101 Huneker 1 -011011101 Schierling 1 -011011101 Sain 1 -011011101 Donow 1 -011011101 Theze 1 -011011101 Wrye 1 -011011101 Saloom 1 -011011101 Thiart 1 -011011101 Currin 1 -011011101 trefoil 1 -011011101 birdsfoot 1 -011011101 Verderosa 1 -011011101 Bessell 1 -011011101 Dromeshauser 1 -011011101 Mandaville 1 -011011101 Beauchemin 1 -011011101 Veronen 1 -011011101 51,001 1 -011011101 Generalis 1 -011011101 Dausch 1 -011011101 Krull 1 -011011101 DISSINGER 1 -011011101 Greacen 1 -011011101 Hensler 1 -011011101 Dobriner 1 -011011101 1568-1615 1 -011011101 Bonchick 1 -011011101 Yllescas 1 -011011101 Capelli 1 -011011101 Gants 1 -011011101 Bandrowsky 1 -011011101 Maruo 1 -011011101 Angermueller 1 -011011101 Shiniara 1 -011011101 Poincare 1 -011011101 Vinas 1 -011011101 Hoopes 1 -011011101 Erceg 1 -011011101 c.365 1 -011011101 Paarlberg 1 -011011101 Kintzle 1 -011011101 Ruthman 1 -011011101 Schlappi 1 -011011101 Sandage 1 -011011101 Koziol 1 -011011101 Tanimoto 1 -011011101 Lannutti 1 -011011101 Pohmiller 1 -011011101 Kirkner 1 -011011101 Riddel 1 -011011101 puh-KAY 1 -011011101 Gruensteidl 1 -011011101 Mizushima 1 -011011101 Heessels 1 -011011101 Hulett-Needham 1 -011011101 Mrozkowska-Brand 1 -011011101 Azzolina 1 -011011101 Goffin 1 -011011101 Duckworth 1 -011011101 Ottaviano 1 -011011101 Ruello 1 -011011101 Tella 1 -011011101 Gochman 1 -011011101 Rej 1 -011011101 Negronida 1 -011011101 Jehle 1 -011011101 Ake 1 -011011101 aargh 1 -011011101 Klimaszewski 1 -011011101 Flintoft 1 -011011101 Strawhorn 1 -011011101 Kiejman 1 -011011101 Kapsch 1 -011011101 Ryskind 1 -011011101 Flamment 1 -011011101 Scheyer 1 -011011101 Tavitian 1 -011011101 Rentzer 1 -011011101 FitzRandolph 1 -011011101 Mayersohn 1 -011011101 Mechsner 1 -011011101 Gwizdela 1 -011011101 Yengst 1 -011011101 Garages 1 -011011101 Laarman 1 -011011101 Meischen 1 -011011101 Goeldner 1 -011011101 Maanhede 1 -011011101 Deme 1 -011011101 Fasola 1 -011011101 Schuss 1 -011011101 Bordisso 1 -011011101 Nuber 1 -011011101 Satula 1 -011011101 Zurfluh 1 -011011101 Katzoff 1 -011011101 Pencke 1 -011011101 Breenan 1 -011011101 Amoureuses 1 -011011101 Korvach 1 -011011101 Bushfield 1 -011011101 Lewinter 1 -011011101 Steinbrunner 1 -011011101 BEE-loe 1 -011011101 Brossier 1 -011011101 Sjolin 1 -011011101 Rampal 1 -011011101 Paladeau 1 -011011101 Zakheim 1 -011011101 Cubbin 1 -011011101 Maluta 1 -011011101 Bertinelli 1 -011011101 Durrance 1 -011011101 Rothermore 1 -011011101 Caprile 1 -011011101 Cleeman 1 -011011101 Herwitz 1 -011011101 Processini 1 -011011101 Tagliabue 1 -011011101 Ollmann 1 -011011101 Brueghel 1 -011011101 Catala-Roca 1 -011011101 Hipps 1 -011011101 IBUs 1 -011011101 Gamse 1 -011011101 PAHN-ish 1 -011011101 Dubroc 1 -011011101 Fyffe 1 -011011101 Dobbs-Higginson 1 -011011101 Dember 1 -011011101 Paret 1 -011011101 HEE-guh 1 -011011101 Marzani 1 -011011101 Lauenstein 1 -011011101 Duchateau 1 -011011101 Zacchi 1 -011011101 Eckford 1 -011011101 Karkow 1 -011011101 Miyao 1 -011011101 Carceres 1 -011011101 Boczek 1 -011011101 Martinet 1 -011011101 Dettmar 1 -011011101 Enga 1 -011011101 Ponnet 1 -011011101 Wilshe 1 -011011101 Creer 1 -011011101 Willox 1 -011011101 DeProsse 1 -011011101 Olenick 1 -011011101 Gentles 1 -011011101 Haggarty 1 -011011101 Clossey 1 -011011101 Pincham 1 -011011101 Schulz-Koehn 1 -011011101 Epton 1 -011011101 Rubes 1 -011011101 Broadman 1 -011011101 Shurkin 1 -011011101 Rozen 1 -011011101 Falsgraf 1 -011011101 DeCof 1 -011011101 Bonne 1 -011011101 Greenwold 1 -011011101 Washburne 1 -011011101 Gutowski 1 -011011101 Orgolini 1 -011011101 Hadlock 1 -011011101 Footlick 1 -011011101 Shaib 1 -011011101 Schopick 1 -011011101 Hilford 1 -011011101 Battipaglia 1 -011011101 1969-84 1 -011011101 Abberley 1 -011011101 Kotzan 1 -011011101 Knappik 1 -011011101 Hart-Dyke 1 -011011101 468-102 1 -011011101 Heitzeberg 1 -011011101 201-933-8500 1 -011011101 1-800-2234050 1 -011011101 Bodan 1 -011011101 Kupinski 1 -011011101 Holihan 1 -011011101 Borrus 1 -011011101 Bollerer 1 -011011101 Tavris 1 -011011101 McAlister 1 -011011101 Theofanous 1 -011011101 Pietropinto 1 -011011101 Meadlock 1 -011011101 Foots 1 -011011101 Engstrom 1 -011011101 Hatskin 1 -011011101 Wierusz 1 -011011101 Ruizhou 1 -011011101 Prot 1 -011011101 Tkach 1 -011011101 Canale 1 -011011101 Cren 1 -011011101 Vair-Zhess 1 -011011101 Stolpen 1 -011011101 Jackiewicz 1 -011011101 Owenby 1 -011011101 Albu 1 -011011101 Sclafani 1 -011011101 Chorlton 1 -011011101 Wailes 1 -011011101 Bouchot 1 -011011101 Ebsen 1 -011011101 9/27/85 1 -011011101 oaky 1 -011011101 Langsley 1 -011011101 Thrun 1 -011011101 Verrone 1 -011011101 Stabinski 1 -011011101 Gapp 1 -011011101 Kushman 1 -011011101 Zigholboim 1 -011011101 Bengtson 1 -011011101 Carnesecca 1 -011011101 Bertrane 1 -011011101 Mackenroth 1 -011011101 Partlow 1 -011011101 Benderson 1 -011011101 Villega 1 -011011101 Meacher 1 -011011101 Kuechenmeister 1 -011011101 Seisser 1 -011011101 Bengston 1 -011011101 Hutnick 1 -011011101 Rohl 1 -011011101 Galizia 1 -011011101 Spicuzza 1 -011011101 Bachner 1 -011011101 Nemecek 1 -011011101 Seisert 1 -011011101 OSLER 1 -011011101 Lemen 1 -011011101 Reitze 1 -011011101 Belshe 1 -011011101 Schlichting 1 -011011101 Teichgraeber 1 -011011101 Schlenger 1 -011011101 Higginbottom 1 -011011101 Wronskyj 1 -011011101 Blanke 1 -011011101 Pyke 1 -011011101 Panoi 1 -011011101 Hurst-Hyde 1 -011011101 Burricelli 1 -011011101 Wolvers 1 -011011101 Benney 1 -011011101 Scarano 1 -011011101 Wachman 1 -011011101 Quillinan 1 -011011101 STLV-3 1 -011011101 Hoshinoya 1 -011011101 Serotkin 1 -011011101 Murillo 1 -011011101 Lifka 1 -011011101 Korty 1 -011011101 Sarducci 1 -011011101 Upchurch 1 -011011101 McWeeney 1 -011011101 Carron 1 -011011101 Anni 1 -011011101 Behrenwaldt 1 -011011101 Baszucki 1 -011011101 Bohne 1 -011011101 Schelling 1 -011011101 Dilenscheider 1 -011011101 Reichard 1 -011011101 Morgaman 1 -011011101 Laviano 1 -011011101 Mossinghoff 1 -011011101 Bollin 1 -011011101 Sennish 1 -011011101 Hallisey 1 -011011101 2:29:58 1 -011011101 2:29:53 1 -011011101 Kavett 1 -011011101 Carroccio 1 -011011101 Zoi 1 -011011101 Kirlin 1 -011011101 Malakoff 1 -011011101 Tschinkel 1 -011011101 Godlin 1 -011011101 Ricke 1 -011011101 Slyly 1 -011011101 Jalinos 1 -011011101 Abeng 1 -011011101 Breitenstein 1 -011011101 Bilger 1 -011011101 Gunyon 1 -011011101 Propeck 1 -011011101 Pakendorf 1 -011011101 Wietschner 1 -011011101 Teracura 1 -011011101 MacCullum 1 -011011101 Sevrens 1 -011011101 TENURE 1 -011011101 Conquerors 1 -011011101 Petrelis 1 -011011101 Kanchuger 1 -011011101 Bolus 1 -011011101 Eidenberg 1 -011011101 Egge 1 -011011101 Allgood 1 -011011101 Svedburg 1 -011011101 Berryhill 1 -011011101 Zimel 1 -011011101 Naddaff 1 -011011101 Benteen 1 -011011101 Kiesling 1 -011011101 Glanzelius 1 -011011101 zuh-GAHT 1 -011011101 Cantone 1 -011011101 Aikhomu 1 -011011101 DeanColeman 1 -011011101 Gindin 1 -011011101 Noels 1 -011011101 Benbrook 1 -011011101 Belbruno 1 -011011101 Hobelmann 1 -011011101 Sanera 1 -011011101 Tsubaki 1 -011011101 Mathew-Bauer 1 -011011101 Depeni 1 -011011101 Lenter 1 -011011101 Arnstein 1 -011011101 Caspel 1 -011011101 DeWinter 1 -011011101 McGilvrey 1 -011011101 Bleaman 1 -011011101 DeMent 1 -011011101 Chilenskas 1 -011011101 Plewes 1 -011011101 Nishiwaki 1 -011011101 Heiblim 1 -011011101 Perdikakis 1 -011011101 Koppelin 1 -011011101 Kashiwada 1 -011011101 Companc 1 -011011101 M2+CDs 1 -011011101 Notari 1 -011011101 Lieberfarb 1 -011011101 Mourglatos 1 -011011101 Oh-my 1 -011011101 Alejos 1 -011011101 Bomberger 1 -011011101 Dibbern 1 -011011101 Lakatos 1 -011011101 Crapper 1 -011011101 Kraslow 1 -011011101 Caicedo 1 -011011101 Bessho 1 -011011101 Cudmore 1 -011011101 Asada 1 -011011101 Harmelin 1 -011011101 Brockmeier 1 -011011101 Petschek 1 -011011101 Koletar 1 -011011101 Mahn-je 1 -011011101 Lahar 1 -011011101 Grinstead 1 -011011101 Godfrey-Isaacs 1 -011011101 Warriner 1 -011011101 Finniston 1 -011011101 Dautresme 1 -011011101 Meurling 1 -011011101 Seitler 1 -011011101 Siegenthaler 1 -011011101 Ordas 1 -011011101 Jackalone 1 -011011101 Kalke 1 -011011101 Zitz 1 -011011101 Beason 1 -011011101 Patane 1 -011011101 Ipanoff 1 -011011101 Appleyard 1 -011011101 Bechanan 1 -011011101 Ternus 1 -011011101 Schenider 1 -011011101 Crory 1 -011011101 Lurye 1 -011011101 Kaska 1 -011011101 Polisuk 1 -011011101 Borofsky 1 -011011101 Otterness 1 -011011101 Glusman 1 -011011101 Bethusy-Huc 1 -011011101 Zanker 1 -011011101 Tullius 1 -011011101 Fromm 1 -011011101 Gregorsky 1 -011011101 Kretzschmar 1 -011011101 Kyotani 1 -011011101 1864-1941 1 -011011101 1862-1941 1 -011011101 Koshiishi 1 -011011101 Morisaki 1 -011011101 Banes 1 -011011101 Hould-Ward 1 -011011101 Wessling 1 -011011101 Wunch 1 -011011101 Konle 1 -011011101 Dockser 1 -011011101 Kilberg 1 -011011101 Lutze 1 -011011101 Hallan-Gibson 1 -011011101 Heale 1 -011011101 amendment-passing 1 -011011101 Mozen 1 -011011101 Kiszynski 1 -011011101 Ruttenberg 1 -011011101 Fronius 1 -011011101 Wissak 1 -011011101 Stadtmueller 1 -011011101 Sever 1 -011011101 Saavedra 1 -011011101 Wynette 1 -011011101 Skuse 1 -011011101 Weston-Smith 1 -011011101 DeGenaro 1 -011011101 Mattuck 1 -011011101 McBay 1 -011011101 Bayliss 1 -011011101 Vucci 1 -011011101 Prestamo 1 -011011101 Nikkila 1 -011011101 Ferreri 1 -011011101 Birakos 1 -011011101 Grimmett 1 -011011101 Reaser 1 -011011101 Drennig 1 -011011101 Cochet 1 -011011101 Boettner 1 -011011101 Nadlman 1 -011011101 Biernat 1 -011011101 AK-yur-a 1 -011011101 Gleissner 1 -011011101 Wolfsberger 1 -011011101 Herko 1 -011011101 Hiers 1 -011011101 Wynia 1 -011011101 Shuffleton 1 -011011101 Wonnacott 1 -011011101 Mander 1 -011011101 Funt 1 -011011101 Shalit 1 -011011101 Kinison 1 -011011101 Javers 1 -011011101 Sundick 1 -011011101 Fannon 1 -011011101 Gushurst 1 -011011101 Ezzard 1 -011011101 Kengor 1 -011011101 Stahel 1 -011011101 Marus 1 -011011101 Grayzel 1 -011011101 Rozanov 1 -011011101 Jessel 1 -011011101 CROW-way-er 1 -011011101 Raulston 1 -011011101 Hulsebos 1 -011011101 Weirup 1 -011011101 Reger 1 -011011101 Siyassah 1 -011011101 Whitham 1 -011011101 Maddams 1 -011011101 Shontell 1 -011011101 Dolinger 1 -011011101 Wichser 1 -011011101 Hoppin 1 -011011101 Gerberding 1 -011011101 Herbeck 1 -011011101 Muehlig 1 -011011101 Chindler 1 -011011101 Celli 1 -011011101 Spaventa 1 -011011101 Lucchini 1 -011011101 Knightley 1 -011011101 Feltner 1 -011011101 Buttel 1 -011011101 Breimyer 1 -011011101 Akechi 1 -011011101 Dollard 1 -011011101 Tansill 1 -011011101 Bertin-Mourot 1 -011011101 Maraz 1 -011011101 Goldthwaite 1 -011011101 Whibley 1 -011011101 Heimbinder 1 -011011101 Whichard 1 -011011101 Gaub 1 -011011101 Laudeman 1 -011011101 Mowat 1 -011011101 Fonyo 1 -011011101 Woodgate 1 -011011101 Matto 1 -011011101 Kuttin 1 -011011101 ASW 1 -011011101 Willis-Fleming 1 -011011101 Kettl 1 -011011101 Suber-Smith 1 -011011101 Oberg 1 -011011101 Heimark 1 -011011101 Gallois 1 -011011101 Kowalik 1 -011011101 Tadeo 1 -011011101 Pottinger 1 -011011101 Huembes 1 -011011101 Cartes 1 -011011101 Bogel 1 -011011101 Rork 1 -011011101 Winstead 1 -011011101 Fabrikant 1 -011011101 Wilgus 1 -011011101 1892-1942 1 -011011101 Andemening 1 -011011101 Featherman 1 -011011101 Goalby 1 -011011101 Noddings 1 -011011101 Volkoff 1 -011011101 Mesiti 1 -011011101 Olzowski 1 -011011101 Kulikov 1 -011011101 Werdegar 1 -011011101 Bogni 1 -011011101 Goldthorpe 1 -011011101 ENG-vay 1 -011011101 Diefenderfer 1 -011011101 Lomotey 1 -011011101 Barg 1 -011011101 four-kilometer 1 -011011101 01 1 -011011101 Keehner 1 -011011101 VanDongen 1 -011011101 Mitty-like 1 -011011101 Lodato 1 -011011101 Truluck 1 -011011101 Walburn 1 -011011101 Poch 1 -011011101 Fetterley 1 -011011101 Flanery 1 -011011101 Habschmidt 1 -011011101 Barte 1 -011011101 Hunsinger 1 -011011101 Muste 1 -011011101 McLinn 1 -011011101 Trawicki 1 -011011101 Zorgniotti 1 -011011101 Loddo 1 -011011101 Kesh 1 -011011101 Moreau-Defarges 1 -011011101 Gomu 1 -011011101 Burgum 1 -011011101 Lipshultz 1 -011011101 Nepsa 1 -011011101 Lewitt 1 -011011101 Weingaertner 1 -011011101 Kanupke 1 -011011101 FCIA 1 -011011101 Bensen 1 -011011101 Cordelle 1 -011011101 Acciaioli 1 -011011101 CBP 1 -011011101 Beatley 1 -011011101 Yeaton 1 -011011101 Krainin 1 -011011101 Hoche 1 -011011101 1863-1952 1 -011011101 Deitch 1 -011011101 Tomaino 1 -011011101 Horrow 1 -011011101 Haroutunian 1 -011011101 Dodman 1 -011011101 Athanasiou 1 -011011101 Katsky 1 -011011101 Capatosto 1 -011011101 Bellino 1 -011011101 Codd 1 -011011101 Hitchell 1 -011011101 Laberis 1 -011011101 Hamerling 1 -011011101 Archiv 1 -011011101 eye-KEY-ah 1 -011011101 Laemmle 1 -011011101 Bressand 1 -011011101 Sleater 1 -011011101 Zuur 1 -011011101 EMI-Angel 1 -011011101 Trask 1 -011011101 1853-1857 1 -011011101 Ratterman 1 -011011101 Aschenbach 1 -011011101 Haverland 1 -011011101 Schaffarzick 1 -011011101 NQSO 1 -011011101 Batalden 1 -011011101 Postawa 1 -011011101 Wack 1 -011011101 Dummar 1 -011011101 Riniker 1 -011011101 Machesko 1 -011011101 Augustyn 1 -011011101 Weithers 1 -011011101 Bongianino 1 -011011101 Gallison 1 -011011101 Marchaterre 1 -011011101 Jaroslavsky 1 -011011101 Lickleider 1 -011011101 Dammers 1 -011011101 Callone 1 -011011101 Durik 1 -011011101 Rezak 1 -011011101 Carranza 1 -011011101 Ham-TRAM-ick 1 -011011101 Burnett-Hall 1 -011011101 Garfein 1 -011011101 Schnee 1 -011011101 McIlvaine 1 -011011101 Mandelker 1 -011011101 Tati 1 -011011101 Bryk 1 -011011101 McGlone 1 -011011101 Petereit 1 -011011101 Boman 1 -011011101 Loscutoff 1 -011011101 Shindo 1 -011011101 Lefferman 1 -011011101 Siener 1 -011011101 Cawood 1 -011011101 Bagge 1 -011011101 Bedbrook 1 -011011101 Habermann 1 -011011101 Kanada 1 -011011101 5-feet-8 1 -011011101 5-feet-11 1 -011011101 Craviso 1 -011011101 Wilmerding 1 -011011101 Cosley 1 -011011101 Valeggia 1 -011011101 Tiberio 1 -011011101 Fillon 1 -011011101 schnell 1 -011011101 Boyes 1 -011011101 Pilotti 1 -011011101 Markoski 1 -011011101 Lorant 1 -011011101 Jingozian 1 -011011101 Adshead 1 -011011101 Jaen 1 -011011101 Broms 1 -011011101 Wieczorek 1 -011011101 Reimann 1 -011011101 Loemker 1 -011011101 Verryn 1 -011011101 Molatsi 1 -011011101 Swerling 1 -011011101 Kitaori 1 -011011101 Dovalina 1 -011011101 Fuson 1 -011011101 Okinow 1 -011011101 Nakanishi 1 -011011101 Goshima 1 -011011101 Giannoulas 1 -011011101 Chandros 1 -011011101 LaBrecque 1 -011011101 Paster 1 -011011101 Zandt 1 -011011101 Tinham 1 -011011101 Geisman 1 -011011101 OMGs 1 -011011101 Hrizo 1 -011011101 Meidel 1 -011011101 1958-63 1 -011011101 Cangelosi 1 -011011101 Sanfilippo 1 -011011101 Codon 1 -011011101 Jaros 1 -011011101 Wojtyla 1 -011011101 Lopatka 1 -011011101 Piasecki 1 -011011101 Jamka 1 -011011101 Tischner 1 -011011101 Mosconi 1 -011011101 Kleinas 1 -011011101 Cousteaus 1 -011011101 ACE/Putnam 1 -011011101 MccGwire 1 -011011101 Schwindeman 1 -011011101 Brandner 1 -011011101 Santiesteban 1 -011011101 Duyck 1 -011011101 Eltsin 1 -011011101 Modugno 1 -011011101 Dever 1 -011011101 Bevilaqua 1 -011011101 Mee-co-een 1 -011011101 Hannefin 1 -011011101 Conoscenti 1 -011011101 Sound-alikes 1 -011011101 Sichting 1 -011011101 Udbinac 1 -011011101 Griels 1 -011011101 DeWalden 1 -011011101 Tous 1 -011011101 Gersonde 1 -011011101 Rankis 1 -011011101 Koplowitz 1 -011011101 Nieznay 1 -011011101 Okuzawa 1 -011011101 Bonnington 1 -011011101 212-362-8719 1 -011011101 516-632-7230 1 -011011101 Benowitz 1 -011011101 Raintree-Northwoods 1 -011011101 Sandborg 1 -011011101 Allec 1 -011011101 Wilkniss 1 -011011101 Kosaka 1 -011011101 Spix 1 -011011101 Saifer 1 -011011101 Ikonen 1 -011011101 Boecklin 1 -011011101 Gehlen 1 -011011101 Shepher 1 -011011101 Casden 1 -011011101 Worswick 1 -011011101 Rohrs 1 -011011101 Arime 1 -011011101 Sphar 1 -011011101 Abdou 1 -011011101 Getsinger 1 -011011101 Ardolino 1 -011011101 all-too-humanly 1 -011011101 Koschitzki 1 -011011101 Maultsby 1 -011011101 Comtois 1 -011011101 Rachlin 1 -011011101 Hapke 1 -011011101 Allegrezza 1 -011011101 Lysaker 1 -011011101 Lutrin 1 -011011101 nhonga 1 -011011101 Wielgos 1 -011011101 Maclennan 1 -011011101 Hoelzel 1 -011011101 Geurtz 1 -011011101 Dorbin 1 -011011101 Murrah 1 -011011101 Hylind 1 -011011101 Brunelle 1 -011011101 Marbach 1 -011011101 Diedrick 1 -011011101 Chiodi 1 -011011101 Kobell 1 -011011101 Wodraska 1 -011011101 Hoermann 1 -011011101 Heathfield 1 -011011101 Kamaryt 1 -011011101 Kench 1 -011011101 Klemann 1 -011011101 Pascuito 1 -011011101 Mastropolo 1 -011011101 Ceccarelli 1 -011011101 Schulhofer 1 -011011101 Belter 1 -011011101 Feinschreiber 1 -011011101 Imbrecht 1 -011011101 Heppe 1 -011011101 Fabricant 1 -011011101 Ostry 1 -011011101 Kerwin 1 -011011101 Goesling 1 -011011101 Brost 1 -011011101 Tilling 1 -011011101 Tozzi 1 -011011101 Braet 1 -011011101 Giammo 1 -011011101 Beton 1 -011011101 Blais 1 -011011101 Fullmer 1 -011011101 McEver 1 -011011101 Naifeh 1 -011011101 Lindenthal 1 -011011101 Asmann 1 -011011101 Maskovich 1 -011011101 Moriarity 1 -011011101 Bryck 1 -011011101 Skeie 1 -011011101 Massinga 1 -011011101 Sagal 1 -011011101 Katey 1 -011011101 McGarity 1 -011011101 Allegrucci 1 -011011101 Nothnagel 1 -011011101 Donsky 1 -011011101 huevos=eggs=testicles 1 -011011101 Heidenberger 1 -011011101 Ahrendt 1 -011011101 Nyberg 1 -011011101 COW-et 1 -011011101 Morrissette 1 -011011101 Dlugatch 1 -011011101 Chahine 1 -011011101 Gelsthorpe 1 -011011101 Bardeen 1 -011011101 Smalhout 1 -011011101 MACLEN 1 -011011101 Kobre 1 -011011101 Busiek 1 -011011101 Vona 1 -011011101 MacAdoo 1 -011011101 Misset 1 -011011101 1951-54 1 -011011101 1945-51 1 -011011101 Ogrocki 1 -011011101 Landsman 1 -011011101 Feuerstein 1 -011011101 Biasotti 1 -011011101 Demeny 1 -011011101 Hammel 1 -011011101 Kresky 1 -011011101 Kartalis 1 -011011101 Markezinis 1 -011011101 Tangstad 1 -011011101 Blauner 1 -011011101 Darmanin 1 -011011101 Zolotas 1 -011011101 1880-1940 1 -011011101 Repin 1 -011011101 Ennals 1 -011011101 Rossovich 1 -011011101 Antcliffe 1 -011011101 Fatale 1 -011011101 Hudack 1 -011011101 Bonhoeffer 1 -011011101 Ringlien 1 -011011101 Herbison 1 -011011101 Matzkin 1 -011011101 Soorko 1 -011011101 Zeledon 1 -011011101 Shahan 1 -011011101 Kuecker 1 -011011101 Ingari 1 -011011101 Fusilier 1 -011011101 Mouvagha 1 -011011101 Hirdman 1 -011011101 Shauklas 1 -011011101 Bolcar 1 -011011101 Merk 1 -011011101 Ionson 1 -011011101 Hewes 1 -011011101 Gurlacz 1 -011011101 Mutahar 1 -011011101 Brouster 1 -011011101 Petherick 1 -011011101 Gloeckle 1 -011011101 1557 1 -011011101 Nowaczyk 1 -011011101 Argueta 1 -011011101 Grijalva 1 -011011101 Kerstetter 1 -011011101 DePuzzo 1 -011011101 McGuiness 1 -011011101 Boas 1 -011011101 Loria 1 -011011101 Miailovich 1 -011011101 Nock 1 -011011101 LUST 1 -011011101 Vanbeek 1 -011011101 Mielewczyk 1 -011011101 Borkowska 1 -011011101 Slomczynski 1 -011011101 Feltwell 1 -011011101 Diedrichsen 1 -011011101 Mejillas 1 -011011101 Tuca 1 -011011101 Goussen 1 -011011101 Altamirano 1 -011011101 Charnwood 1 -011011101 Kulju 1 -011011101 Moreyra 1 -011011101 Martelle 1 -011011101 Condry 1 -011011101 Hackes 1 -011011101 Oakapple 1 -011011101 Meilleur 1 -011011101 Centeno 1 -011011101 Tessmann 1 -011011101 Troppito 1 -011011101 McElfresh 1 -011011101 luhFRACK 1 -011011101 LEFF-rack 1 -011011101 Lauricella 1 -011011101 herstory 1 -011011101 scutage 1 -011011101 Jungmeyer 1 -011011101 Speca 1 -011011101 Guerrieria 1 -011011101 Tacheuchi 1 -011011101 Stefik 1 -011011101 Tempel 1 -011011101 Wilkinsen 1 -011011101 Turlington 1 -011011101 Colaneri 1 -011011101 Utterback 1 -011011101 Margenau 1 -011011101 Poitevin 1 -011011101 Cozzolino 1 -011011101 Camens 1 -011011101 Mecum 1 -011011101 Flescher 1 -011011101 Schmalstieg 1 -011011101 RobbinsRoth 1 -011011101 Benyon 1 -011011101 Casabianca-Hilton 1 -011011101 McKinnes 1 -011011101 Ratchford 1 -011011101 Drozdow 1 -011011101 Benstead 1 -011011101 Rinner 1 -011011101 Scharbo 1 -011011101 Flaig 1 -011011101 Cavanah 1 -011011101 Himona 1 -011011101 Wahtera 1 -011011101 Staigor 1 -011011101 Bretzing 1 -011011101 Kandell 1 -011011101 Meachum 1 -011011101 Atieh 1 -011011101 Jostes 1 -011011101 Stirring 1 -011011101 Deratany 1 -011011101 June-AY-joe 1 -011011101 Ohtomo 1 -011011101 1745-1818 1 -011011101 Sotnick 1 -011011101 Kelty 1 -011011101 Tugendhat 1 -011011101 Trebatoski 1 -011011101 Obminsky 1 -011011101 Studemann 1 -011011101 Riis 1 -011011101 Archerd 1 -011011101 Dartland 1 -011011101 Bugno 1 -011011101 Pennywell 1 -011011101 Lebovitz 1 -011011101 Trau 1 -011011101 Shattls 1 -011011101 Hamnet 1 -011011101 Gribetz 1 -011011101 Auken 1 -011011101 Tylor 1 -011011101 Lewo 1 -011011101 Vandever 1 -011011101 Whyles 1 -011011101 Fauske 1 -011011101 Fondell 1 -011011101 Ryczek 1 -011011101 1833-1917 1 -011011101 Finucan 1 -011011101 Mulrooney 1 -011011101 Produccion 1 -011011101 Fomin 1 -011011101 Merrithew 1 -011011101 Ablondi 1 -011011101 Dermee 1 -011011101 Cervenka 1 -011011101 Emswiler 1 -011011101 Narutomi 1 -011011101 Miyashita 1 -011011101 Cook-Carlisle 1 -011011101 Guardiola 1 -011011101 1714-1778 1 -011011101 Kreger 1 -011011101 Niethammer 1 -011011101 Komiyama 1 -011011101 Kibbel 1 -011011101 Batkin 1 -011011101 Slacik 1 -011011101 Lidberg 1 -011011101 Tsikerdanos 1 -011011101 Gossert 1 -011011101 LeVay 1 -011011101 Croswhite 1 -011011101 Susetka 1 -011011101 Kamler 1 -011011101 Houdon 1 -011011101 Calverly 1 -011011101 EM-shuh 1 -011011101 Sorrel 1 -011011101 Takemi 1 -011011101 Bonsal 1 -011011101 Bessinger 1 -011011101 Tannucilli 1 -011011101 Roose 1 -011011101 Loorz 1 -011011101 Mlezcko 1 -011011101 kot 1 -011011101 Oshish 1 -011011101 1862-1867 1 -011011101 Nezu 1 -011011101 Gibney 1 -011011101 Declusin 1 -011011101 Chrysothemis 1 -011011101 Maythenyi 1 -011011101 DeRocker 1 -011011101 DuPois 1 -011011101 Starletta 1 -011011101 Yourcenar 1 -011011101 JEFCO 1 -011011101 Alschuler 1 -011011101 Zimbert 1 -011011101 Suddleson 1 -011011101 Lesperance 1 -011011101 1910-1917 1 -011011101 Copeman 1 -011011101 Cantafio 1 -011011101 Macove 1 -011011101 Scollander 1 -011011101 Yastrzemski 1 -011011101 Duemer 1 -011011101 Cazalet 1 -011011101 Rachofsky 1 -011011101 Bergel 1 -011011101 Starfin 1 -011011101 Fogge 1 -011011101 Vernet 1 -011011101 Leatherbury 1 -011011101 Umehara 1 -011011101 Pilsen 1 -011011101 Romanos 1 -011011101 Kenber 1 -011011101 Hod 1 -011011101 Drea 1 -011011101 viz 1 -011011101 Romatowski 1 -011011101 ABDC 1 -011011101 Sczudlo 1 -011011101 DeLoatche 1 -011011101 Quagliata 1 -011011101 Overdorf 1 -011011101 Gundersen 1 -011011101 Dunnam 1 -011011101 Goldfaden 1 -011011101 Stiefel 1 -011011101 Norich 1 -011011101 Borts 1 -011011101 Soreanu 1 -011011101 Grudniewicz 1 -011011101 VerStandig 1 -011011101 Gourio 1 -011011101 Arranda 1 -011011101 Lapierre 1 -011011101 Tabu/CBS 1 -011011101 Wiegman 1 -011011101 Teesdale 1 -011011101 Gurevitch 1 -011011101 Abdalla 1 -011011101 Shain 1 -011011101 Eveloff 1 -011011101 Soener 1 -011011101 Burlingham 1 -011011101 Clansman 1 -011011101 Kurdus 1 -011011101 Swinarton 1 -011011101 Flicker 1 -011011101 Sono 1 -011011101 Lonicera 1 -011011101 sempervirens 1 -011011101 Yednock 1 -011011101 Mahlhmann 1 -011011101 Coulsen 1 -011011101 Eccleston 1 -011011101 Cardascia 1 -011011101 Krasucki 1 -011011101 Tickett 1 -011011101 Niesenholtz 1 -011011101 Heditsian 1 -011011101 Dentlinger 1 -011011101 Sorsby 1 -011011101 Lierde 1 -011011101 Ponting 1 -011011101 Zepf 1 -011011101 Henchman 1 -011011101 .448 1 -011011101 Guokas 1 -011011101 Okamura 1 -011011101 D-Texas 1 -011011101 Hamelin 1 -011011101 Noakes 1 -011011101 ARCS 1 -011011101 RATS 1 -011011101 Stormonth-Darling 1 -011011101 Parsloe 1 -011011101 Guilbert 1 -011011101 Haroldsen 1 -011011101 Candrian 1 -011011101 Reinke 1 -011011101 Michell 1 -011011101 Kotula 1 -011011101 Warsch 1 -011011101 Riccardi 1 -011011101 Elephantorrhiza 1 -011011101 1873-1947 1 -011011101 FORECASTERS 1 -011011101 Munnell 1 -011011101 1870-1902 1 -011011101 Pizer 1 -011011101 Granito 1 -011011101 Fiorito 1 -011011101 Holmstrom 1 -011011101 Hazell 1 -011011101 Rebhan 1 -011011101 Furnari 1 -011011101 McBurnie 1 -011011101 Gilgo 1 -011011101 Lupeo 1 -011011101 Millhouse 1 -011011101 Homolle 1 -011011101 Salz 1 -011011101 Mommy-by-Objective 1 -011011101 Yanney 1 -011011101 1962-1965 1 -011011101 Romjue 1 -011011101 Maysles 1 -011011101 Cruys 1 -011011101 Romanko 1 -011011101 Apsey 1 -011011101 Millington 1 -011011101 Francl 1 -011011101 Hitchener 1 -011011101 1792-1822 1 -011011101 1856-1939 1 -011011101 1818-1883 1 -011011101 Sterbenc 1 -011011101 pay-GON 1 -011011101 1/25/87 1 -011011101 Bonnaire 1 -011011101 Sarkanen 1 -011011101 Ajootian 1 -011011101 Gorczyk 1 -011011101 post-1948 1 -011011101 Beckmeyer 1 -011011101 Gianinno 1 -011011101 Truit 1 -011011101 McConaghy 1 -011011101 Wruble 1 -011011101 11/25 1 -011011101 11/18 1 -011011101 11/14 1 -011011101 11/10 1 -011011101 11/3 1 -011011101 10/24 1 -011011101 10/21 1 -011011101 10/13 1 -011011101 10/6 1 -011011101 10/3 1 -011011101 9/29 1 -011011101 9/18 1 -011011101 9/8 1 -011011101 9/2 1 -011011101 8/26 1 -011011101 12/29 1 -011011101 12/22 1 -011011101 12/18 1 -011011101 12/16 1 -011011101 12/12 1 -011011101 12/11 1 -011011101 12/3 1 -011011101 12/2 1 -011011101 11/28 1 -011011101 3/26 1 -011011101 3/21 1 -011011101 3/10 1 -011011101 2/26 1 -011011101 1/28 1 -011011101 1/23 1 -011011101 1/17 1 -011011101 8/21 1 -011011101 8/18 1 -011011101 8/6 1 -011011101 8/1 1 -011011101 7/28 1 -011011101 7/25 1 -011011101 7/18 1 -011011101 7/10 1 -011011101 7/3 1 -011011101 7/2 1 -011011101 6/26 1 -011011101 6/23 1 -011011101 6/18 1 -011011101 6/9 1 -011011101 5/13 1 -011011101 5/6 1 -011011101 4/29 1 -011011101 4/22 1 -011011101 4/15 1 -011011101 Costonis 1 -011011101 Prasoprattanasuk 1 -011011101 Chasuparinr 1 -011011101 Nanayakkara 1 -011011101 Mirchandani 1 -011011101 Tjan 1 -011011101 Leventon 1 -011011101 Carrafiello 1 -011011101 Kobes 1 -011011101 Brisson 1 -011011101 Colville 1 -011011101 McKamey 1 -011011101 Pokorski 1 -011011101 Caloudes 1 -011011101 Hankiss 1 -011011101 Emberton 1 -011011101 Bonneil 1 -011011101 Serageldin 1 -011011101 Hindom 1 -011011101 Silalahi 1 -011011101 Geidt 1 -011011101 Kazanoff 1 -011011101 Bellus 1 -011011101 Langenhoven 1 -011011101 Lissack 1 -011011101 Areen 1 -011011101 Laufer 1 -011011101 Petropoulos 1 -011011101 Rockenstein 1 -011011101 Matuszak 1 -011011101 1890-91 1 -011011101 1937-40 1 -011011101 1920-22 1 -011011101 Sheeler 1 -011011101 Schoettle 1 -011011101 McCluggage 1 -011011101 Babitzke 1 -011011101 Tiefenthaler 1 -011011101 Usami 1 -011011101 Magota 1 -011011101 Kambury 1 -011011101 Dachik 1 -011011101 Berlstein 1 -011011101 PTY 1 -011011101 Owara 1 -011011101 Kinmonth 1 -011011101 Atanowsky 1 -011011101 Varnai 1 -011011101 Sinclair-Jones 1 -011011101 Badyna 1 -011011101 Bond-style 1 -011011101 DeHoll 1 -011011101 Escue 1 -011011101 Mallery 1 -011011101 Robalewski 1 -011011101 koo-TRAH-lay 1 -011011101 Forbush 1 -011011101 Hinchliffe 1 -011011101 Moosekian 1 -011011101 Eastaway 1 -011011101 Kharrazi 1 -011011101 Shelanskey 1 -011011101 Dechicco 1 -011011101 Mutumbuka 1 -011011101 Shenar 1 -011011101 Telnac 1 -011011101 Tolson 1 -011011101 Stirland 1 -011011101 Cukier 1 -011011101 Kecskemeti 1 -011011101 1968-1973 1 -011011101 Humblot 1 -011011101 Quast 1 -011011101 Lieblein 1 -011011101 Bantel 1 -011011101 Martersteck 1 -011011101 Parnas 1 -011011101 Garman 1 -011011101 Raffanti 1 -011011101 Nourizadeh 1 -011011101 Volmer 1 -011011101 Horrocks 1 -011011101 Razin 1 -011011101 Cohn-Bendit 1 -011011101 Orsich 1 -011011101 Funkhauser 1 -011011101 Hotseller 1 -011011101 Louzon 1 -011011101 Rendine 1 -011011101 Huie 1 -011011101 Portuondo 1 -011011101 Greenway 1 -011011101 Koide 1 -011011101 Malacarne 1 -011011101 Mebus 1 -011011101 Yonnone 1 -011011101 Holtapp 1 -011011101 Goldfield 1 -011011101 Greehey 1 -011011101 Morone 1 -011011101 Conforte 1 -011011101 Szramka 1 -011011101 Thorlo 1 -011011101 Chegwyn 1 -011011101 Truszkowski 1 -011011101 Bolea 1 -011011101 Mitiguy 1 -011011101 Tayler 1 -011011101 Stencil 1 -011011101 Nettercille 1 -011011101 MacEachern 1 -011011101 Fitchew 1 -011011101 Devas 1 -011011101 FIP 1 -011011101 Trippier 1 -011011101 1520-66 1 -011011101 Harenberg 1 -011011101 Pah-neesh 1 -011011101 Bethkenhagen 1 -011011101 Thunnell 1 -011011101 Reeff 1 -011011101 Iveagh 1 -011011101 Biviano 1 -011011101 Rodenhuis 1 -011011101 Paeschke 1 -011011101 Dorf 1 -011011101 Siegrist 1 -011011101 Sarpkaya 1 -011011101 Itagaki 1 -011011101 Zitek 1 -011011101 Nickoll 1 -011011101 Hillery 1 -011011101 Stracey 1 -011011101 Pettibone 1 -011011101 Souviron 1 -011011101 Ortibez 1 -011011101 Gainsburg 1 -011011101 DeGanay 1 -011011101 Winzenburg 1 -011011101 Ulis 1 -011011101 Padian 1 -011011101 Montagna 1 -011011101 Vellante 1 -011011101 OAPEC 1 -011011101 PID 1 -011011101 McPeak 1 -011011101 Durkan 1 -011011101 Amendolia 1 -011011101 Meagen 1 -011011101 Pantin 1 -011011101 Bukata 1 -011011101 Strohl 1 -011011101 Gutoff 1 -011011101 Vanda 1 -011011101 Zubrensky 1 -011011101 Hartauer 1 -011011101 Hudspeth 1 -011011101 Grumbly 1 -011011101 Kaferle 1 -011011101 D-Mass. 1 -011011101 Bellantoni 1 -011011101 conspiratologist 1 -011011101 Wagstaff 1 -011011101 Froning 1 -011011101 Geanoulis 1 -011011101 Luberski 1 -011011101 Radwanski 1 -011011101 Chaplanov 1 -011011101 Lalla 1 -011011101 Lacina 1 -011011101 Purpel 1 -011011101 Rasky 1 -011011101 Shallus 1 -011011101 Essaye 1 -011011101 Blackley 1 -011011101 Roseman 1 -011011101 Diez-Alegria 1 -011011101 Barefield 1 -011011101 Seftenberg 1 -011011101 Larriberot 1 -011011101 Gregga 1 -011011101 DiLillo 1 -011011101 Scelia 1 -011011101 Manuchia 1 -011011101 Kaline 1 -011011101 Jeddeloh 1 -011011101 Belluardo 1 -011011101 Perse 1 -011011101 Wyroba 1 -011011101 Kamensky 1 -011011101 StucchiPiretti 1 -011011101 E.Lefton 1 -011011101 IUFA 1 -011011101 Menetrez 1 -011011101 Wilker 1 -011011101 Ostrovsky 1 -011011101 Kiehne 1 -011011101 Gothlin 1 -011011101 Chandla 1 -011011101 1857-1934 1 -011011101 Wachtmeister 1 -011011101 Bourgue 1 -011011101 1872-1958 1 -011011101 Telarc 1 -011011101 Giteck 1 -011011101 Hodgdon 1 -011011101 Abalkhail 1 -011011101 Bosse 1 -011011101 push-a-thon 1 -011011101 Bischof 1 -011011101 Blankstein 1 -011011101 Baillargeon 1 -011011101 Paule 1 -011011101 Beugen 1 -011011101 Klinkner 1 -011011101 Loeser 1 -011011101 Raisman 1 -011011101 Boudames 1 -011011101 Ludt 1 -011011101 Sutfin 1 -011011101 McCluskey 1 -011011101 Pfautch 1 -011011101 Whibbs 1 -011011101 Curia 1 -011011101 68,200-mile 1 -011011101 Mathrani 1 -011011101 Valones 1 -011011101 Hornido 1 -011011101 Hornett 1 -011011101 Charlap 1 -011011101 Crestol 1 -011011101 Shamosh 1 -011011101 Rosenne 1 -011011101 Sosnowitz 1 -011011101 Belcaster 1 -011011101 Daenzer 1 -011011101 Abdow 1 -011011101 Hestor 1 -011011101 Preslund 1 -011011101 NERP 1 -011011101 Subas 1 -011011101 Consultoria 1 -011011101 Gumbinger 1 -011011101 Astaburuaga 1 -011011101 Respectively 1 -011011101 Stobbe 1 -011011101 Lecuona 1 -011011101 Saebo 1 -011011101 Maire 1 -011011101 Boeninger 1 -011011101 Gartenlaub 1 -011011101 Pruskin 1 -011011101 eteneproste 1 -011011101 Muyshondt 1 -011011101 Capitman 1 -011011101 Kasdin 1 -011011101 Mocambo 1 -011011101 Patchett 1 -011011101 Glorieux 1 -011011101 Sessena 1 -011011101 polypropolene 1 -011011101 Stuurop 1 -011011101 Aluta 1 -011011101 Knoche 1 -011011101 Klaffer 1 -011011101 Semrod 1 -011011101 Kreiter 1 -011011101 Campolungo 1 -011011101 Wuiss 1 -011011101 Harlen 1 -011011101 Benaron 1 -011011101 Baumes 1 -011011101 Polesta 1 -011011101 Yingbi 1 -011011101 Castner 1 -011011101 Bevier 1 -011011101 Demelle 1 -011011101 Riefle 1 -011011101 Carabatsos 1 -011011101 Silver-Conway 1 -011011101 Hattingh 1 -011011101 Kambule 1 -011011101 Perlmuth 1 -011011101 Velie 1 -011011101 Smith-Cameron 1 -011011101 Schowengerdt 1 -011011101 Netcher 1 -011011101 Herrera-Sobek 1 -011011101 Reibstein 1 -011011101 Dallin 1 -011011101 Tijerino 1 -011011101 Gorski 1 -011011101 Naygrow 1 -011011101 Ordower 1 -011011101 Tarkovsky 1 -011011101 Overturf 1 -011011101 IMAs 1 -011011101 SMI 1 -011011101 Brenk 1 -011011101 St-Jacques 1 -011011101 Bodenburg 1 -011011101 Malinsky 1 -011011101 Penning 1 -011011101 Tsubouchi 1 -011011101 Zeppelins 1 -011011101 Tsumuri 1 -011011101 Mastrocovi 1 -011011101 Cluff 1 -011011101 deCair 1 -011011101 Paullin 1 -011011101 Leo-Grande 1 -011011101 Spruell 1 -011011101 Fayle 1 -011011101 Passarella 1 -011011101 Ormsbee 1 -011011101 Derbes 1 -011011101 Gillies 1 -011011101 Eschete 1 -011011101 Cavaliere 1 -011011101 Obrecht 1 -011011101 shahr-DAY 1 -011011101 Froats 1 -011011101 Jaram 1 -011011101 Cascio 1 -011011101 Soltman 1 -011011101 Jakobovsky 1 -011011101 Hevener 1 -011011101 Beigen 1 -011011101 Hadrych 1 -011011101 Borowski 1 -011011101 Freedenburg 1 -011011101 Aumueller 1 -011011101 Bocaccio 1 -011011101 Kolsch 1 -011011101 Fosco 1 -011011101 PHA 1 -011011101 FIN 1 -011011101 Maltempo 1 -011011101 Wolkowitz 1 -011011101 Trembley 1 -011011101 Anselmi 1 -011011101 Flexner 1 -011011101 Gallivan 1 -011011101 Duston 1 -011011101 Tipgos 1 -011011101 Cremasco 1 -011011101 Bula 1 -011011101 1839-1906 1 -011011101 Hotlen 1 -011011101 Tehransfer 1 -011011101 Ferden 1 -011011101 Sargisson 1 -011011101 Kotzin 1 -011011101 Scialdone 1 -011011101 Ohlbach 1 -011011101 Saade 1 -011011101 Siboni 1 -011011101 Pretto 1 -011011101 Heiligbrodt 1 -011011101 Ziltz 1 -011011101 Merrow 1 -011011101 Mogavero 1 -011011101 1734-81 1 -011011101 Muertos 1 -011011101 Lowther 1 -011011101 Weintrob 1 -011011101 Nowakowski 1 -011011101 Gorynski 1 -011011101 Wynne-Morgan 1 -011011101 Spargo 1 -011011101 Burrow 1 -011011101 Schaja 1 -011011101 Federici 1 -011011101 Shikles 1 -011011101 Schreter 1 -011011101 Ostrager 1 -011011101 Purpora 1 -011011101 Edri 1 -011011101 Bakalian 1 -011011101 Dellibovi 1 -011011101 Steckler 1 -011011101 Rulnick 1 -011011101 Aslanian 1 -011011101 Pallack 1 -011011101 Somerfield 1 -011011101 Liscio 1 -011011101 Heatherington 1 -011011101 Scheringer 1 -011011101 Elgee 1 -011011101 Kottlowski 1 -011011101 Goll 1 -011011101 Mingyuan 1 -011011101 Laynor 1 -011011101 Sabotnick 1 -011011101 Jenne 1 -011011101 Kachadurian 1 -011011101 Courville 1 -011011101 Brannan 1 -011011101 Maisonpierre 1 -011011101 Embrey 1 -011011101 Duprey 1 -011011101 Prip 1 -011011101 Trame 1 -011011101 1732-1806 1 -011011101 Sagonis 1 -011011101 Mgeni 1 -011011101 Isnardi 1 -011011101 Gausling 1 -011011101 1711-1669 1 -011011101 Grindlay 1 -011011101 Freyre 1 -011011101 Figueira 1 -011011101 Profeta 1 -011011101 Ludd 1 -011011101 Gordan 1 -011011101 Allam 1 -011011101 Temmin 1 -011011101 Mant 1 -011011101 Lacovera 1 -011011101 hoofnotes 1 -011011101 Betley 1 -011011101 Fenig 1 -011011101 Callanta 1 -011011101 Damron 1 -011011101 Bujaj 1 -011011101 Lebrecque 1 -011011101 1762 1 -011011101 Perchak 1 -011011101 Beksiak 1 -011011101 Miodowicz 1 -011011101 Pajestka 1 -011011101 Kagy 1 -011011101 Stura 1 -011011101 Presbrey 1 -011011101 Cowie 1 -011011101 sativa 1 -011011101 Hamersveld 1 -011011101 Zishka 1 -011011101 Trump-style 1 -011011101 Bar-Shavit 1 -011011101 AGVs 1 -011011101 Nagatsuka 1 -011011101 Madeyski 1 -011011101 Schwoegler 1 -011011101 Hesseman 1 -011011101 Doeren 1 -011011101 Houtte 1 -011011101 Pialat 1 -011011101 Lelouch 1 -011011101 Tsur 1 -011011101 Berglas 1 -011011101 Ulterino 1 -011011101 Gasca 1 -011011101 Olberg 1 -011011101 Barberi 1 -011011101 Runolfson 1 -011011101 Pegg 1 -011011101 Hooke 1 -011011101 Lisovolik 1 -011011101 Fulkerson 1 -011011101 Schenkkan 1 -011011101 Feders 1 -011011101 1859-1935 1 -011011101 Wanger 1 -011011101 Reisert 1 -011011101 Bleustein-Blanchet 1 -011011101 Pedraglio 1 -011011101 Hornig 1 -011011101 Druker 1 -011011101 Petrucci 1 -011011101 Hackle 1 -011011101 Baik 1 -011011101 Cappellino 1 -011011101 Ajzenman 1 -011011101 BRON-tiss 1 -011011101 TRIBE 1 -011011101 Faight 1 -011011101 Damrad-Frye 1 -011011101 Ehrecke 1 -011011101 Kabak 1 -011011101 Kovens 1 -011011101 Segev 1 -011011101 Candler 1 -011011101 Handman 1 -011011101 Swig 1 -011011101 Yakupzack 1 -011011101 Hockins 1 -011011101 Mois 1 -011011101 Ruvin 1 -011011101 Batesole 1 -011011101 Noodleman 1 -011011101 Kranich 1 -011011101 Lilienthal 1 -011011101 Noser 1 -011011101 Corran 1 -011011101 McKneely 1 -011011101 Yuckert 1 -011011101 175-pound 1 -011011101 Branfman 1 -011011101 Safran 1 -011011101 Twayne 1 -011011101 Bartholet 1 -011011101 Estier 1 -011011101 Lavenhar 1 -011011101 Rabie 1 -011011101 Soal 1 -011011101 Louria 1 -011011101 Vahlberg 1 -011011101 Olinski 1 -011011101 Cortazar 1 -011011101 Atha 1 -011011101 Gorshkov 1 -011011101 Mikolay 1 -011011101 Eckerle 1 -011011101 Valenstein 1 -011011101 Freudenberger 1 -011011101 Duverne 1 -011011101 roe-DAY-oh 1 -011011101 Arpaillange 1 -011011101 Poperen 1 -011011101 Sathe 1 -011011101 Mouchet 1 -011011101 DiPasquale 1 -011011101 Slane 1 -011011101 Lepo 1 -011011101 Al-Faqih 1 -011011101 Perez-Cisneros 1 -011011101 thumb-size 1 -011011101 Ralace 1 -011011101 3,704 1 -011011101 Sindbad 1 -011011101 Boatman 1 -011011101 Wimmer 1 -011011101 Phan 1 -011011101 Arbetman 1 -011011101 Partei 1 -011011101 Watz 1 -011011101 Altenau 1 -011011101 Metschke 1 -011011101 Wickers 1 -011011101 Durflinger 1 -011011101 Oduber 1 -011011101 Artuzov 1 -011011101 Neisloss 1 -011011101 Perell 1 -011011101 Dittus 1 -011011101 Tarshis 1 -011011101 Ritscher 1 -011011101 Schoel 1 -011011101 Jankowsky 1 -011011101 Zweifach 1 -011011101 Tremayne 1 -011011101 Harenski 1 -011011101 Stallworth 1 -011011101 Zdziarska 1 -011011101 Kozar 1 -011011101 Pinard 1 -011011101 Lormans 1 -011011101 Records. 1 -011011101 Sostilio 1 -011011101 Cerys 1 -011011101 Brionne 1 -011011101 Akieh 1 -011011101 Zednik 1 -011011101 Deserti 1 -011011101 Bignardi 1 -011011101 Estragon 1 -011011101 Allgeier 1 -011011101 Schoder 1 -011011101 Constello 1 -011011101 Salveson 1 -011011101 Lenckos 1 -011011101 Ausubel 1 -011011101 Libertini 1 -011011101 Florek 1 -011011101 Fragin 1 -011011101 Forteza 1 -011011101 1968-1981 1 -011011101 Radsch 1 -011011101 Malmierca 1 -011011101 Shellenberger 1 -011011101 Washawanny 1 -011011101 Astorga 1 -011011101 Leichty 1 -011011101 Adkerson 1 -011011101 Vanke 1 -011011101 Hebba 1 -011011101 Maghribi 1 -011011101 Dotrice 1 -011011101 Yumoto 1 -011011101 Tewnion 1 -011011101 Berentsen 1 -011011101 Lamond 1 -011011101 Moubagha 1 -011011101 Handoussa 1 -011011101 Whittredge 1 -011011101 Moonves 1 -011011101 Kusin 1 -011011101 Gombos 1 -011011101 Porges 1 -011011101 1971-79 1 -011011101 Ramenda 1 -011011101 Monteath 1 -011011101 Chiarrocchi 1 -011011101 Bolvin 1 -011011101 LaBastille 1 -011011101 Steidtman 1 -011011101 Canino 1 -011011101 Kaestner 1 -011011101 Raimer 1 -011011101 Howley 1 -011011101 Nuissl 1 -011011101 Bussitil 1 -011011101 Zolo 1 -011011101 Slawinksi 1 -011011101 Gusses 1 -011011101 Betancourt 1 -011011101 Gehm 1 -011011101 Dileo 1 -011011101 Huss 1 -011011101 Hougham 1 -011011101 Theisen 1 -011011101 Wodicka 1 -011011101 Spier 1 -011011101 Hudig 1 -011011101 Broughton 1 -011011101 Krampf 1 -011011101 Bemowski 1 -011011101 Redeker 1 -011011101 Kinzie 1 -011011101 Sacrement 1 -011011101 Deba 1 -011011101 Keefer 1 -011011101 Kowalsky 1 -011011101 Aslin 1 -011011101 Fejto 1 -011011101 Negret 1 -011011101 Morier-Genoud 1 -011011101 Roodhouse 1 -011011101 Bahna 1 -011011101 Minneapolis-St.Paul 1 -011011101 SSNP 1 -011011101 Mazaika 1 -011011101 Schweiz 1 -011011101 Handke 1 -011011101 Robinson-Simpson 1 -011011101 Knickman 1 -011011101 Hokin 1 -011011101 Schragis 1 -011011101 Varennikov 1 -011011101 Sullins 1 -011011101 Swanzey 1 -011011101 Mitzman 1 -011011101 Peacher 1 -011011101 Rudolphi 1 -011011101 Unterreiner 1 -011011101 Sheahin 1 -011011101 Hawkens 1 -011011101 Pytka 1 -011011101 Hannaman 1 -011011101 Rosmarin 1 -011011101 Cappo 1 -011011101 Winterer 1 -011011101 Holbert 1 -011011101 Issaacson 1 -011011101 Jaclot 1 -011011101 Elofson-Gardine 1 -011011101 Schonbeck 1 -011011101 Svedgerb 1 -011011101 Navarette 1 -011011101 Ehrnreich 1 -011011101 Costanzo 1 -011011101 Kenndey 1 -011011101 Heckmann 1 -011011101 Therkelsen 1 -011011101 DeSanctis 1 -011011101 Bluhme 1 -011011101 Ljungh 1 -011011101 Stormer 1 -011011101 Uhlman 1 -011011101 Vernhes 1 -011011101 Kleinert 1 -011011101 Mercurio 1 -011011101 Mercandino 1 -011011101 Ririe 1 -011011101 EMI-Manhattan 1 -011011101 Hochwert 1 -011011101 Whitington 1 -011011101 Arambulo 1 -011011101 Sweetnam 1 -011011101 Seelbach 1 -011011101 Shinners 1 -011011101 Sandman 1 -011011101 Pancich 1 -011011101 Gillatano 1 -011011101 Kantlehner 1 -011011101 Hadder 1 -011011101 Ryckman 1 -011011101 Perrow 1 -011011101 Rathers 1 -011011101 Berghaus 1 -011011101 Cazzarelli 1 -011011101 Macaleer 1 -011011101 Hanby 1 -011011101 Weyl 1 -011011101 Pouliot 1 -011011101 Arrighi 1 -011011101 Stranahan 1 -011011101 Racord 1 -011011101 Rubeli 1 -011011101 Coulton 1 -011011101 Havlicek 1 -011011101 Diebenkorn 1 -011011101 Klayman 1 -011011101 Peletz 1 -011011101 soon-to-appear 1 -011011101 Ritblat 1 -011011101 Meiklejohn 1 -011011101 Venegas 1 -011011101 Propst 1 -011011101 Hagstroem 1 -011011101 Malotke 1 -011011101 Aaronson 1 -011011101 Hone 1 -011011101 Sheirer 1 -011011101 Tattle 1 -011011101 Dahmen 1 -011011101 Krohley 1 -011011101 Drazek 1 -011011101 960-1126 1 -011011101 Eidemuller 1 -011011101 Najarian 1 -011011101 Birzon 1 -011011101 Bolotsky 1 -011011101 618-906 1 -011011101 581-618 1 -011011101 Thoennes 1 -011011101 Brueckner 1 -011011101 Buczynski 1 -011011101 Bengter 1 -011011101 Rathje 1 -011011101 Otsubo 1 -011011101 Pawlak 1 -011011101 Mayekawa 1 -011011101 Schnirel 1 -011011101 Stiling 1 -011011101 Brahs 1 -011011101 Steinbrook 1 -011011101 Arangio 1 -011011101 Wellhauser 1 -011011101 Lesgold 1 -011011101 Voltz 1 -011011101 Streusand 1 -011011101 Havard 1 -011011101 Bova 1 -011011101 Noodle 1 -011011101 Stocke 1 -011011101 Hignett 1 -011011101 Morante 1 -011011101 Schempf 1 -011011101 Angersbach 1 -011011101 Pellegrene 1 -011011101 McKissack 1 -011011101 Curby 1 -011011101 Anglewicz 1 -011011101 Mazzolini 1 -011011101 Ludwiniak 1 -011011101 Henfrey 1 -011011101 Next-door 1 -011011101 Duques 1 -011011101 Dargan 1 -011011101 Ricciuto 1 -011011101 Hedman 1 -011011101 Holback 1 -011011101 Vilaplana 1 -011011101 Adamy 1 -011011101 Harrigian 1 -011011101 Kuwahara 1 -011011101 Hickock 1 -011011101 Pavlovna 1 -011011101 Stasov 1 -011011101 Jauregui 1 -011011101 Vargulick 1 -011011101 Kingsick 1 -011011101 Zarker 1 -011011101 Bostic 1 -011011101 Apar 1 -011011101 Vorenberg 1 -011011101 Sweetland 1 -011011101 Vranken 1 -011011101 Peirano 1 -011011101 Koreman 1 -011011101 Schnur 1 -011011101 chuck-chee 1 -011011101 Auspitz 1 -011011101 Zylman 1 -011011101 Minnery 1 -011011101 Guillermin 1 -011011101 DeMar 1 -011011101 Rawkins 1 -011011101 Bussolari 1 -011011101 Fishkin 1 -011011101 Philpot 1 -011011101 Turturro 1 -011011101 Boettger 1 -011011101 Hochstrasser 1 -011011101 Batt 1 -011011101 Becht 1 -011011101 Lisnow 1 -011011101 Duccio 1 -011011101 Boggess 1 -011011101 Rohrman 1 -011011101 Meerschwam 1 -011011101 Sabinson 1 -011011101 Merdian 1 -011011101 Andel 1 -011011101 Buatta 1 -011011101 Leffler 1 -011011101 DiSabato 1 -011011101 Neibor 1 -011011101 Lakness 1 -011011101 Roskens 1 -011011101 Goldwag 1 -011011101 Bondfund 1 -011011101 LaHaie 1 -011011101 Huneke 1 -011011101 Supranational 1 -011011101 Denktash 1 -011011101 Hoyos 1 -011011101 Saragat 1 -011011101 Crothers 1 -011011101 Kobey 1 -011011101 Calisi 1 -011011101 Faltermeier 1 -011011101 Burke-Hennessy 1 -011011101 Poplawski 1 -011011101 Maisonrouge 1 -011011101 Greeve 1 -011011101 Posthuma 1 -011011101 Neuer 1 -011011101 Pitchford 1 -011011101 Schabel 1 -011011101 Hunnewell 1 -011011101 Yohem 1 -011011101 non-equity-holding 1 -011011101 Warheart 1 -011011101 Verlaine 1 -011011101 Leshley 1 -011011101 Weg 1 -011011101 Padovani 1 -011011101 Persing 1 -011011101 Killow 1 -011011101 Vossen 1 -011011101 Ecola 1 -011011101 Congiu 1 -011011101 Weitzer 1 -011011101 Posford 1 -011011101 Lidval 1 -011011101 zek 1 -011011101 DeVeaugh-Geiss 1 -011011101 Fiuszynski 1 -011011101 Eichhorn 1 -011011101 Heiler 1 -011011101 Lorello 1 -011011101 Davell 1 -011011101 Velner 1 -011011101 Kreiner 1 -011011101 Mulvihill 1 -011011101 Moor-Jankowski 1 -011011101 Teleki 1 -011011101 Sackman 1 -011011101 Beckhart 1 -011011101 Serlin 1 -011011101 Koenike 1 -011011101 Tsentraliye 1 -011011101 Rynok 1 -011011101 Mannery 1 -011011101 Zepp 1 -011011101 Kinkaid 1 -011011101 Landberg 1 -011011101 Luksik 1 -011011101 Delahooke 1 -011011101 Fedyski 1 -011011101 Awartani 1 -011011101 Golovensky 1 -011011101 Lanning 1 -011011101 Moggeridge 1 -011011101 Arbit 1 -011011101 Raty 1 -011011101 Leebaw 1 -011011101 Quill/Morrow 1 -011011101 Orzechowski 1 -011011101 Viada 1 -011011101 Piquet 1 -011011101 Dalston 1 -011011101 Hubscher 1 -011011101 Yuqing 1 -011011101 Vayno 1 -011011101 Delacourt 1 -011011101 McElaney 1 -011011101 McConnaughey 1 -011011101 double-income 1 -011011101 Provencher 1 -011011101 Bryggman 1 -011011101 Busichio 1 -011011101 Zitto 1 -011011101 Wroblewski 1 -011011101 Toornstra 1 -011011101 Saiki 1 -011011101 Vitoux 1 -011011101 Frearson 1 -011011101 Mizuuchi 1 -011011101 Nishimoto 1 -011011101 Shils 1 -011011101 Stuffle 1 -011011101 Pedott 1 -011011101 Mancebo 1 -011011101 .523 1 -011011101 Shafran 1 -011011101 Bugel 1 -011011101 Maladowitz 1 -011011101 Kuendig 1 -011011101 Thielemann 1 -011011101 Boneberg 1 -011011101 McFeeley 1 -011011101 Petitbon 1 -011011101 Franzetta 1 -011011101 Hillriegel 1 -011011101 Swol 1 -011011101 Pontier 1 -011011101 Moskowsky 1 -011011101 Severoni 1 -011011101 Mallary 1 -011011101 McVicker 1 -011011101 16-byte 1 -011011101 Korot 1 -011011101 Overbury 1 -011011101 Vasvani 1 -011011101 Lugosh 1 -011011101 Hirschler 1 -011011101 Lelong 1 -011011101 Theriot 1 -011011101 Schissel 1 -011011101 Okudaira 1 -011011101 Pisar 1 -011011101 Boleat 1 -011011101 McQuay 1 -011011101 Baytos 1 -011011101 Nanni 1 -011011101 Slader 1 -011011101 Hussai 1 -011011101 Ahluwalia 1 -011011101 Tobiyama 1 -011011101 Basterrechea 1 -011011101 Frascatore 1 -011011101 Dwojakowski 1 -011011101 Boese 1 -011011101 Rearick 1 -011011101 Lewels 1 -011011101 Oher 1 -011011101 Hanselman 1 -011011101 Nyhuis 1 -011011101 Graney 1 -011011101 Vikbladh 1 -011011101 Clinkard 1 -011011101 Gorriti 1 -011011101 McNeight 1 -011011101 Harwin 1 -011011101 Carusillo 1 -011011101 McCleod 1 -011011101 Rande 1 -011011101 Mahdaviani 1 -011011101 Bonnefoux 1 -011011101 Mazingo 1 -011011101 Torke 1 -011011101 Pizam 1 -011011101 Clyburn 1 -011011101 Demetrias 1 -011011101 Noettl 1 -011011101 Vandiver 1 -011011101 DeClementi 1 -011011101 Karotkin 1 -011011101 Caurier 1 -011011101 Aggeler 1 -011011101 Murakoshi 1 -011011101 Krasinski 1 -011011101 Teranishi 1 -011011101 1883-1959 1 -011011101 1903-1975 1 -011011101 Durrie 1 -011011101 1840-1917 1 -011011101 Strohmeyer 1 -011011101 Ziemak 1 -011011101 Schwalbe 1 -011011101 Clissold 1 -011011101 Andreyeva 1 -011011101 Bradsher 1 -011011101 Greisler 1 -011011101 Bunyaner 1 -011011101 Meth 1 -011011101 Gromley 1 -011011101 Musich 1 -011011101 Lohle 1 -011011101 Gruza 1 -011011101 Papadjiakou 1 -011011101 Weidinger 1 -011011101 Grillos 1 -011011101 Gallahue 1 -011011101 Kresch 1 -011011101 Ciesinki 1 -011011101 Peerce 1 -011011101 Millais 1 -011011101 kahSEE-kays 1 -011011101 Radner 1 -011011101 Macaskill 1 -011011101 TooSHOOM 1 -011011101 Balzo 1 -011011101 Basham 1 -011011101 Nociforo 1 -011011101 Youens 1 -011011101 Vannieuwenburg 1 -011011101 Korbynska 1 -011011101 Pernetz 1 -011011101 Caccappolo 1 -011011101 Dumars 1 -011011101 Laudon 1 -011011101 Tanzi 1 -011011101 Matthis 1 -011011101 Gambelli 1 -011011101 Mirman 1 -011011101 Vickerman 1 -011011101 Ribis 1 -011011101 Stine 1 -011011101 Secretaria 1 -011011101 Gantcher 1 -011011101 Lamberjack 1 -011011101 Neihart 1 -011011101 Hagee 1 -011011101 Carnahan 1 -011011101 Korbyback 1 -011011101 Gounarides 1 -011011101 Schouten 1 -011011101 Sudarsky 1 -011011101 Kawauchi 1 -011011101 Donini 1 -011011101 Kajachian 1 -011011101 Shimkin 1 -011011101 Blay 1 -011011101 Keirns 1 -011011101 Raymaker 1 -011011101 Veru 1 -011011101 Flatoff 1 -011011101 Charof 1 -011011101 Mackay-Coghill 1 -011011101 Kollins 1 -011011101 Littlewood 1 -011011101 Morril 1 -011011101 Zubor 1 -011011101 McTigue 1 -011011101 Challen 1 -011011101 Ramqvist 1 -011011101 Weinschelbaum 1 -011011101 McGlassen 1 -011011101 Swersky 1 -011011101 Hwoo 1 -011011101 Wessler 1 -011011101 Leese 1 -011011101 Gosiengfiao 1 -011011101 Boily 1 -011011101 Bisson 1 -011011101 Baumgarth 1 -011011101 Pevehouse 1 -011011101 plomo 1 -011011101 Stavetski 1 -011011101 Cavour 1 -011011101 Bilder 1 -011011101 Berlincourt 1 -011011101 Stieven 1 -011011101 Giallorenzi 1 -011011101 Cecconi 1 -011011101 Avorn 1 -011011101 Norment 1 -011011101 Bardach 1 -011011101 Tufayli 1 -011011101 Lanigan 1 -011011101 Clarksboro 1 -011011101 Warme 1 -011011101 Dixmont 1 -011011101 Munro-Davies 1 -011011101 Krudt 1 -011011101 Metuchen 1 -011011101 Penhorwood 1 -011011101 Aligood 1 -011011101 Langa 1 -011011101 Equale 1 -011011101 Riquelme 1 -011011101 Vennera 1 -011011101 Musca 1 -011011101 Podmore 1 -011011101 Jabari 1 -011011101 Kletch 1 -011011101 Rehill 1 -011011101 Elswick 1 -011011101 Smelov 1 -011011101 Barzilay 1 -011011101 Sparacino 1 -011011101 Sluzewski 1 -011011101 Dutton/ 1 -011011101 Readdy 1 -011011101 DelliQuadri 1 -011011101 Celmer 1 -011011101 Pilak 1 -011011101 Rhinehart 1 -011011101 Ferruggia 1 -011011101 Trogden 1 -011011101 Mayoux 1 -011011101 Metrinko 1 -011011101 Tirpak 1 -011011101 Witterwulghe 1 -011011101 Nuttal 1 -011011101 Fuoco 1 -011011101 Garralda 1 -011011101 Cogger 1 -011011101 Hinojosa 1 -011011101 Samuelian 1 -011011101 Pallone 1 -011011101 Domogala 1 -011011101 Shimmek 1 -011011101 Buntack 1 -011011101 Allera 1 -011011101 Spurgin 1 -011011101 Madlem 1 -011011101 Bielecki 1 -011011101 Tavormina 1 -011011101 Erber 1 -011011101 Pavlis 1 -011011101 Grakal 1 -011011101 Holdstein 1 -011011101 Esser 1 -011011101 Buente 1 -011011101 Rauner 1 -011011101 .180 1 -011011101 Bodek 1 -011011101 Sheldrick 1 -011011101 Bifulco 1 -011011101 Gez 1 -011011101 Keffer 1 -011011101 Snowboards 1 -011011101 Karoff 1 -011011101 LaBier 1 -011011101 Mordock 1 -011011101 Karvan 1 -011011101 Hulton 1 -011011101 Sunahara 1 -011011101 Wesbury 1 -011011101 McMakin 1 -011011101 Malentacchi 1 -011011101 Donnet 1 -011011101 Messier 1 -011011101 Wigle 1 -011011101 Sydorick 1 -011011101 Branner 1 -011011101 Campadese 1 -011011101 Cusick 1 -011011101 Allevi 1 -011011101 Bendheim 1 -011011101 Brusco 1 -011011101 Graupe 1 -011011101 Folkenflik 1 -011011101 Firster 1 -011011101 Gamzu 1 -011011101 Sid-Ahmed 1 -011011101 Welke 1 -011011101 Filipson 1 -011011101 Corlett 1 -011011101 Wanecq 1 -011011101 Sentes 1 -011011101 Hoskin 1 -011011101 Marasca 1 -011011101 Voznesenky 1 -011011101 Emerich 1 -011011101 Hanss 1 -011011101 Tchuruka 1 -011011101 Middaugh 1 -011011101 2097 1 -011011101 Fritzman 1 -011011101 Kamine 1 -011011101 Criss 1 -011011101 Sterret 1 -011011101 Beevor 1 -011011101 Schore 1 -011011101 Fenstermacher 1 -011011101 Weyn 1 -011011101 Ryckebosch 1 -011011101 Bulmash 1 -011011101 Stritch 1 -011011101 Gerot 1 -011011101 Buenaventura 1 -011011101 Sieron 1 -011011101 Theodores 1 -011011101 Endacott 1 -011011101 Staiano 1 -011011101 Galecke 1 -011011101 Secundy 1 -011011101 Cabe 1 -011011101 Aliksanian 1 -011011101 Terzaghi 1 -011011101 Parlett 1 -011011101 Syryjczyk 1 -011011101 Slisz 1 -011011101 DeMeo 1 -011011101 DeSchutter 1 -011011101 Fishback 1 -011011101 Stavin 1 -011011101 Mazurek 1 -011011101 Segrest 1 -011011101 Netanyahu 1 -011011101 Beamis 1 -011011101 Druz 1 -011011101 Skubiszewski 1 -011011101 Lorgus 1 -011011101 Knowland 1 -011011101 Helmar 1 -011011101 Klores 1 -011011101 Jueneman 1 -011011101 Brandstad 1 -011011101 Deeley 1 -011011101 Pacchioni 1 -011011101 Sansbury 1 -011011101 Windmuller 1 -011011101 Gennaoui 1 -011011101 Stietz 1 -011011101 Duffer 1 -011011101 Gillum 1 -011011101 p-type 1 -011011101 n-type 1 -011011101 Cuzzocrea 1 -011011101 Broonzy 1 -011011101 1890-1945 1 -011011101 CK40846 1 -011011101 PolyGram/Mercury 1 -011011101 Salb 1 -011011101 Abo 1 -011011101 Allen-look-alike 1 -011011101 Zed 1 -011011101 Makant 1 -011011101 Matusevich 1 -011011101 Grider 1 -011011101 Marlinga 1 -011011101 Graziadei 1 -011011101 Topel 1 -011011101 Wietecki 1 -011011101 Vardeman 1 -011011101 Issachs 1 -011011101 Lico 1 -011011101 Misrock 1 -011011101 Fueuerman 1 -011011101 Steinbrueck 1 -011011101 Marklow 1 -011011101 Breiterman 1 -011011101 Shein 1 -011011101 Goffstein 1 -011011101 Aul 1 -011011101 Tenison 1 -011011101 Gendler 1 -011011101 Grinkov 1 -011011101 Mouscher 1 -011011101 Fresco 1 -011011101 6288-2-RB 1 -011011101 Nishioki 1 -011011101 Silberstein 1 -011011101 Baux 1 -011011101 Modrall 1 -011011101 1965-71 1 -011011101 Essig 1 -011011101 Rabassa 1 -011011101 Momtchiloff 1 -011011101 Gritten 1 -011011101 Quiroga 1 -011011101 Bongrand 1 -011011101 1861-1948 1 -011011101 Faisant 1 -011011101 Wehrly 1 -011011101 Gutjahr 1 -011011101 Boroff 1 -011011101 Ahtisaari 1 -011011101 Dacheff 1 -011011101 Sembler 1 -011011101 Tolmie 1 -011011101 Likierman 1 -011011101 kayo 1 -011011101 Folkers 1 -011011101 Joell 1 -011011101 Seccombe 1 -011011101 UPAU 1 -011011101 Lyall 1 -011011101 Aldape 1 -011011101 Reedus 1 -011011101 Sardelli 1 -011011101 Bedowitz 1 -011011101 Svos 1 -011011101 el-Bashir 1 -011011101 Trepper 1 -011011101 Bramlage 1 -011011101 Slewinski 1 -011011101 McClune 1 -011011101 Griego 1 -011011101 Rickett 1 -011011101 Ribe 1 -011011101 Orsmond 1 -011011101 Pendse 1 -011011101 CavenAtack 1 -011011101 Mazner 1 -011011101 Burmeister 1 -011011101 Loucata 1 -011011101 Scarpati 1 -011011101 Rosenker 1 -011011101 Simkin 1 -011011101 Payolle 1 -011011101 McIvoy 1 -011011101 Immergut 1 -011011101 Burnet 1 -011011101 Tsuaska 1 -011011101 Maitlin 1 -011011101 Skansera 1 -011011101 Forbesian 1 -011011101 Thorsteinson 1 -011011101 Botsford 1 -011011101 Yianalos 1 -011011101 Pohlmann 1 -011011101 Mangone 1 -011011101 Eversberg 1 -011011101 Hiestermann 1 -011011101 Terens 1 -011011101 Golob 1 -011011101 Mauraine 1 -011011101 Maruno 1 -011011101 Pelinka 1 -011011101 Gilruth 1 -011011101 Okuyama 1 -011011101 Hayslett 1 -011011101 Rapkins 1 -011011101 Murnane 1 -011011101 Quailey 1 -011011101 Perec 1 -011011101 Kokert 1 -011011101 Gleckman 1 -011011101 Cogren 1 -011011101 Schwalb 1 -011011101 Azzoni 1 -011011101 Nigri 1 -011011101 Byas 1 -011011101 ness-TAH 1 -011011101 Mizusuna 1 -011011101 tah-BESS 1 -011011101 McButter 1 -011011101 Seelinger 1 -011011101 Jonklaas 1 -011011101 Bosl 1 -011011101 Cunliffe 1 -011011101 Koberg 1 -011011101 Amason 1 -011011101 Pagliasotti 1 -011011101 Dicino 1 -011011101 Papavizas 1 -011011101 Cohl 1 -011011101 Hoffecker 1 -011011101 Asakura 1 -011011101 Pautler 1 -011011101 Britcher 1 -011011101 Durdin 1 -011011101 Blasdell 1 -011011101 Wert 1 -011011101 Loney 1 -011011101 Corkins 1 -011011101 Dalley 1 -011011101 Fitt 1 -011011101 Heathcott 1 -011011101 Zeschin 1 -011011101 Honeyman 1 -011011101 Zamorano 1 -011011101 Pohlod 1 -011011101 Tanikawa 1 -011011101 Lanschulz 1 -011011101 Mitford 1 -011011101 Hrisak 1 -011011101 Prushansky 1 -011011101 Sklarin 1 -011011101 Iannuzzo 1 -011011101 Gordley 1 -011011101 Moone 1 -011011101 Bareika 1 -011011101 Azbell 1 -011011101 Methner 1 -011011101 Utoft 1 -011011101 Schoeppner 1 -011011101 Mashey 1 -011011101 Dardick 1 -011011101 habla 1 -011011101 Zimroth 1 -011011101 Olarsch 1 -011011101 Wienckoski 1 -011011101 Maikish 1 -011011101 Fili 1 -011011101 H3N2 1 -011011101 Shekar 1 -011011101 Rafat 1 -011011101 Chaitow 1 -011011101 Lapayover 1 -011011101 Fardella 1 -011011101 Kermani 1 -011011101 Wendorff 1 -011011101 Acomb 1 -011011101 Pfeiler 1 -011011101 Bratkovich 1 -011011101 Baruzdin 1 -011011101 Muhri 1 -011011101 Clabaugh 1 -011011101 Ishiko 1 -011011101 Danese 1 -011011101 Barile 1 -011011101 Poppell 1 -011011101 Daems 1 -011011101 Sheidy 1 -011011101 Sturdier 1 -011011101 Tekeda 1 -011011101 Kalejs 1 -011011101 Shikano 1 -011011101 Yasinovsky 1 -011011101 Obrentz 1 -011011101 Buffa 1 -011011101 Schwandt 1 -011011101 Breene 1 -011011101 Padala 1 -011011101 Obermiaer 1 -011011101 Morrish 1 -011011101 Wasserspring 1 -011011101 Pallan 1 -011011101 Migliaccio 1 -011011101 Nevelson 1 -011011101 Broman 1 -011011101 Ogunjobi 1 -011011101 Horstman 1 -011011101 Bukoosh 1 -011011101 Wernet 1 -011011101 Saitoti 1 -011011101 Hoad 1 -011011101 92-448 1 -011011101 Wambui 1 -011011101 Dhuu 1 -011011101 Haarhuis 1 -011011101 Lutuli 1 -011011101 Elshout 1 -011011101 Chlopak 1 -011011101 Vlasin 1 -011011101 Brimble 1 -011011101 Coppersmith 1 -011011101 non-AMT 1 -011011101 Buser 1 -011011101 Ghotbzadeh 1 -011011101 Boernsen 1 -011011101 Watterworth 1 -011011101 Wheelen 1 -011011101 Nicolaisen 1 -011011101 212-362-6000 1 -011011101 800-424-8504 1 -011011101 Bonfield 1 -011011101 Wallwork 1 -011011101 Cornejo 1 -011011101 Zyman 1 -011011101 Sibthorpe 1 -011011101 Brochu 1 -011011101 Protess 1 -011011101 Cantwin 1 -011011101 Gotterer 1 -011011101 Powless 1 -011011101 McFather 1 -011011101 Berrow 1 -011011101 Braye 1 -011011101 Orzell 1 -011011101 Nies 1 -011011101 Wainaina 1 -011011101 DeBolske 1 -011011101 2G 1 -011011101 1848-1903 1 -011011101 Heisen 1 -011011101 Avincola 1 -011011101 2625-703 1 -011011101 Noppen 1 -011011101 Yunusova 1 -011011101 Kwiatkowski 1 -011011101 Sabini 1 -011011101 Mazzarello 1 -011011101 Dimisa 1 -011011101 Varitimidis 1 -011011101 Zey 1 -011011101 Flury 1 -011011101 Chiz 1 -011011101 Calb 1 -011011101 Emen 1 -011011101 Frazen 1 -011011101 Budnick 1 -011011101 Axford 1 -011011101 Benedek 1 -011011101 Frumkes 1 -011011101 Glickstein 1 -011011101 Neufeld 1 -011011101 Mcauliffe 1 -011011101 Raffield 1 -011011101 Parasco 1 -011011101 Pasties 1 -011011101 Mobilieres 1 -011011101 Glavine 1 -011011101 DeMicoli 1 -011011101 Gergorin 1 -011011101 Roed 1 -011011101 Ohiwa 1 -011011101 Bodson 1 -011011101 terHorst 1 -011011101 Leterach 1 -011011101 Funderburg 1 -011011101 1509-64 1 -011011101 AlunJones 1 -011011101 Jipson 1 -011011101 Wright-style 1 -011011101 Charleson 1 -011011101 Johnes 1 -011011101 Rathborne 1 -011011101 Blacknall 1 -011011101 Gabrielsen 1 -011011101 Rimpel 1 -011011101 Riedesel 1 -011011101 Willenbring 1 -011011101 Hopkinson 1 -011011101 Katzive 1 -011011101 Latham-Koenig 1 -011011101 McQuiston 1 -011011101 KBI 1 -011011101 Macksey 1 -011011101 Mis-Speakes. 1 -011011101 Hogberg 1 -011011101 PARM 1 -011011101 Sellecca 1 -011011101 Underwarning 1 -011011101 Himelfarb 1 -011011101 Sevcec 1 -011011101 Wahba 1 -011011101 Shimayama 1 -011011101 Kimelman 1 -011011101 Wolicki 1 -011011101 Cheverall 1 -011011101 Artuso 1 -011011101 Bailen 1 -011011101 Sweeting 1 -011011101 Vercruysse 1 -011011101 McGlothlin 1 -011011101 Ashworth 1 -011011101 Stearman 1 -011011101 Dombi 1 -011011101 Supple 1 -011011101 Morson 1 -011011101 Hochstin 1 -011011101 Dedousis 1 -011011101 Iervasi 1 -011011101 Sawicki 1 -011011101 Woikin 1 -011011101 MacVittie 1 -011011101 Yawney 1 -011011101 Stephanopolous 1 -011011101 HEMit 1 -011011101 trouserless 1 -011011101 Hadar 1 -011011101 Deisroth 1 -011011101 Dohlen 1 -011011101 Falcone-Graves 1 -011011101 Rhys-Davies 1 -011011101 Apkarian 1 -011011101 Caserta 1 -011011101 Happ 1 -011011101 Quenington 1 -011011101 Landgraf 1 -011011101 McGrawHill 1 -011011101 Belakian 1 -011011101 Rabattu 1 -011011101 Karpf 1 -011011101 Adelo 1 -011011101 Goad 1 -011011101 Berghorst 1 -011011101 Karcher-Everly 1 -011011101 Aroesty 1 -011011101 Surber 1 -011011101 Poinsett 1 -011011101 Pietras 1 -011011101 Doughty 1 -011011101 Locken 1 -011011101 Jaroslawicz 1 -011011101 Harriss 1 -011011101 Dumon 1 -011011101 Knicely 1 -011011101 Filvaroff 1 -011011101 Lorsch 1 -011011101 Montalto 1 -011011101 Frishberg 1 -011011101 Fishzohn 1 -011011101 Kuschuk 1 -011011101 Barakett 1 -011011101 McVicar 1 -011011101 Brydges 1 -011011101 Catz 1 -011011101 Renatus 1 -011011101 Stretz 1 -011011101 Gerstenblatt 1 -011011101 Parseghian 1 -011011101 Helgerson 1 -011011101 Bachlund 1 -011011101 Gammon 1 -011011101 Schildkraut 1 -011011101 Guidette 1 -011011101 Cedegren 1 -011011101 DePhillips 1 -011011101 Steiber 1 -011011101 DiBernardo 1 -011011101 Loebbecke 1 -011011101 Baruschke 1 -011011101 .557 1 -011011101 Wiarda 1 -011011101 Rosenblat 1 -011011101 Harkinson 1 -011011101 Flemister 1 -011011101 McReady 1 -011011101 Derryberry 1 -011011101 Korus 1 -011011101 Whalley 1 -011011101 Huelsemann 1 -011011101 Haverty 1 -011011101 Kerins 1 -011011101 DiMario 1 -011011101 DuBay 1 -011011101 Disbrow 1 -011011101 Masley 1 -011011101 Bellmer 1 -011011101 Pfenning 1 -011011101 Keelor 1 -011011101 q 1 -011011101 Wiggenhorn 1 -011011101 Biesack 1 -011011101 Yamakoshi 1 -011011101 Gabrysch 1 -011011101 KOHsur 1 -011011101 1839-42 1 -011011101 Snepsts 1 -011011101 Schoenfield 1 -011011101 Chanoff 1 -011011101 Trouyet 1 -011011101 1946-1952 1 -011011101 1934-1940 1 -011011101 Ringwood 1 -011011101 Meintjies 1 -011011101 Mazibuko 1 -011011101 Keech 1 -011011101 Caba 1 -011011101 Thackrah 1 -011011101 Talucci 1 -011011101 Wisneski 1 -011011101 Poscover 1 -011011101 Crikelair 1 -011011101 Droal 1 -011011101 Amkraut 1 -011011101 Gaudio 1 -011011101 Bussfeld 1 -011011101 Bernau 1 -011011101 Rosch 1 -011011101 Naimi 1 -011011101 Breiteneicher 1 -011011101 Pauken 1 -011011101 Foglio 1 -011011101 Heery 1 -011011101 Weidenhammer 1 -011011101 Piercey 1 -011011101 Shouse 1 -011011101 Sweanor 1 -011011101 duCille 1 -011011101 LaRiviere 1 -011011101 Beeler 1 -011011101 Haronian 1 -011011101 Gilby 1 -011011101 Matkins 1 -011011101 Fonso 1 -011011101 Buzzotta 1 -011011101 Spielman 1 -011011101 Wakeman 1 -011011101 Herdt 1 -011011101 Kailin 1 -011011101 Bertini 1 -011011101 Maunz 1 -011011101 Edwardo-Franco 1 -011011101 Ligeti 1 -011011101 Pakradoonian 1 -011011101 Kurtwood 1 -011011101 Rivers-type 1 -011011101 7,812 1 -011011101 Muncke 1 -011011101 Vint 1 -011011101 Rentrow 1 -011011101 Kooij 1 -011011101 Herpin 1 -011011101 Solandt 1 -011011101 Harvey-Jones 1 -011011101 Stukey 1 -011011101 Stray-Gunderson 1 -011011101 Jelinek 1 -011011101 Haddadin 1 -011011101 Noy 1 -011011101 Ashington-Pickett 1 -011011101 Rieke 1 -011011101 Zanga 1 -011011101 Probandt 1 -011011101 Howards 1 -011011101 Jarbawi 1 -011011101 mentum 1 -011011101 Bienstadt 1 -011011101 Padula 1 -011011101 Crocus-fearer 1 -011011101 Delworth 1 -011011101 Encarnation 1 -011011101 Materniak 1 -011011101 McLachlin 1 -011011101 Creson 1 -011011101 Mohlere 1 -011011101 Kerim 1 -011011101 Chettle 1 -011011101 Novis 1 -011011101 Clohesy 1 -011011101 Pellinghuisen 1 -011011101 bweeg 1 -011011101 Scowen 1 -011011101 Andreieva 1 -011011101 Yancik 1 -011011101 Grether 1 -011011101 Studwell 1 -011011101 Lacher 1 -011011101 Mancino 1 -011011101 1644-1911 1 -011011101 Brunelli 1 -011011101 Diffenderffer 1 -011011101 Mendes-France 1 -011011101 Pharis 1 -011011101 Singletary 1 -011011101 Nemunaitis 1 -011011101 Beechen 1 -011011101 Sidberry 1 -011011101 Rattlay 1 -011011101 Aldershoff 1 -011011101 Chauhan 1 -011011101 Molishever 1 -011011101 Giaquinta 1 -011011101 Nesgos 1 -011011101 Teclaw 1 -011011101 Baish 1 -011011101 Sirotin 1 -011011101 Ellwein 1 -011011101 Feola 1 -011011101 Schoenhaar 1 -011011101 Agresto 1 -011011101 Annunziato 1 -011011101 Lippitt 1 -011011101 Lubert 1 -011011101 Ditoro 1 -011011101 under21 1 -011011101 Iqbal 1 -011011101 Raifman 1 -011011101 DeFosset 1 -011011101 Eichenauer 1 -011011101 Turnblad 1 -011011101 Neimark 1 -011011101 Hsiang 1 -011011101 Springut 1 -011011101 Tysoe 1 -011011101 Wunderlich 1 -011011101 Salitan 1 -011011101 Dumeny 1 -011011101 Shreck 1 -011011101 Phillipson 1 -011011101 Sengstock 1 -011011101 Oulton 1 -011011101 p. 1 -011011101 Giuffrida 1 -011011101 Langangen 1 -011011101 Biundo 1 -011011101 Jobes 1 -011011101 Kemp-Welch 1 -011011101 Switz 1 -011011101 Tindle 1 -011011101 Mostoff 1 -011011101 Garea 1 -011011101 Lasley 1 -011011101 Simenon 1 -011011101 McNatt 1 -011011101 Giraldo 1 -011011101 Culbreath 1 -011011101 Dietzer 1 -011011101 Jeary 1 -011011101 Corporon 1 -011011101 Tauxe 1 -011011101 Maccario 1 -011011101 Drinkard 1 -011011101 Molpus 1 -011011101 Leibson 1 -011011101 Mazerov 1 -011011101 pre-human 1 -011011101 e.g 1 -011011101 Feagles 1 -011011101 Lannaman 1 -011011101 Delehanty 1 -011011101 Kuspit 1 -011011101 Seideneck 1 -011011101 Guigni 1 -011011101 Branton 1 -011011101 Amyx 1 -011011101 Poberezny 1 -011011101 Qura 1 -011011101 Khayyam 1 -011011101 Pai 1 -011011101 Davi 1 -011011101 Felsher 1 -011011101 Heinke 1 -011011101 Bonaccolta 1 -011011101 Brandhorst 1 -011011101 Dragoumis 1 -011011101 Vecker 1 -011011101 Lovegren 1 -011011101 Mennel 1 -011011101 Erlandson 1 -011011101 Shukri 1 -011011101 Satlin 1 -011011101 Schildhause 1 -011011101 Fukayama 1 -011011101 Tippin 1 -011011101 Hofstad 1 -011011101 Fulson 1 -011011101 Satell 1 -011011101 Jodrell 1 -011011101 Niedermaier 1 -011011101 Alizart 1 -011011101 Galluzzi 1 -011011101 Coulas 1 -011011101 Mehdorn 1 -011011101 Dagget 1 -011011101 Dehlendorf 1 -011011101 DeFord 1 -011011101 Zipoy 1 -011011101 Luxmoor 1 -011011101 nonrefrigerated 1 -011011101 Mincey 1 -011011101 Bisignano 1 -011011101 Grolimund 1 -011011101 non-discount 1 -011011101 Rositano 1 -011011101 Dattels 1 -011011101 Nicksay 1 -011011101 Denzenhall 1 -011011101 Kametches 1 -011011101 Romankow 1 -011011101 Friccius 1 -011011101 Fauchey 1 -011011101 Siehafer 1 -011011101 Rodenas 1 -011011101 Balthazor 1 -011011101 Takeyasu 1 -011011101 Shiraki 1 -011011101 Opulence 1 -011011101 phew 1 -011011101 Dolfi 1 -011011101 Deady 1 -011011101 Tiberghien 1 -011011101 Riddlesperger 1 -011011101 Samios 1 -011011101 Krumhansl 1 -011011101 Sulak 1 -011011101 74,000-acre 1 -011011101 Creasey 1 -011011101 Dehn 1 -011011101 Shellac 1 -011011101 Pflock 1 -011011101 Sinsar 1 -011011101 Smif 1 -011011101 Jaycobs 1 -011011101 Lobe 1 -011011101 Felk 1 -011011101 Cotliar 1 -011011101 Lavergne 1 -011011101 Howlett 1 -011011101 Raibolini 1 -011011101 Moxham 1 -011011101 Bouza 1 -011011101 Craner 1 -011011101 Haring 1 -011011101 Stancs 1 -011011101 Steurle 1 -011011101 Tabano 1 -011011101 Chalfie 1 -011011101 Moehn 1 -011011101 Rafiq-Dust 1 -011011101 Mydans 1 -011011101 Barbanell 1 -011011101 Kuser 1 -011011101 Bergstresser 1 -011011101 Bassios 1 -011011101 Mielenz 1 -011011101 1882-1943 1 -011011101 McCrossan 1 -011011101 Shirwen 1 -011011101 Wolder 1 -011011101 Chesshire 1 -011011101 Liautaud 1 -011011101 Zamfear 1 -011011101 Smialek 1 -011011101 Wiederlight 1 -011011101 Heerwagen 1 -011011101 Seme 1 -011011101 Klyver 1 -011011101 Holz 1 -011011101 Dearden 1 -011011101 Ncgoya 1 -011011101 Besher 1 -011011101 Wold 1 -011011101 Pittelman 1 -011011101 Krementz 1 -011011101 Chafin 1 -011011101 Pikul 1 -011011101 KMU 1 -011011101 Darira 1 -011011101 Pokorny 1 -011011101 Bacharach 1 -011011101 Jabril 1 -011011101 Thoman 1 -011011101 Landefeld 1 -011011101 Reboredo 1 -011011101 Deegenaar 1 -011011101 Stebben 1 -011011101 Haro 1 -011011101 Brodsly 1 -011011101 Lobene 1 -011011101 Tschoegl 1 -011011101 Artabane 1 -011011101 Sung-il 1 -011011101 Zunxin 1 -011011101 Akvilyanov 1 -011011101 Purow 1 -011011101 Carus 1 -011011101 1978-82 1 -011011101 Nahyyan 1 -011011101 Savelyeva 1 -011011101 Kenna 1 -011011101 Hennefeld 1 -011011101 Hagie 1 -011011101 Berte 1 -011011101 Kays 1 -011011101 over-covered 1 -011011101 Thorsell 1 -011011101 Sebelius 1 -011011101 Tatten 1 -011011101 Schmidt-Chiari 1 -011011101 Kupelian 1 -011011101 Loquasto 1 -011011101 Rumore 1 -011011101 Arbus 1 -011011101 Caddel 1 -011011101 Laubich 1 -011011101 Bontems 1 -011011101 Hecker 1 -011011101 Claussen 1 -011011101 Kilory 1 -011011101 Castagna 1 -011011101 Lenos 1 -011011101 Zugschwert 1 -011011101 1530-1650 1 -011011101 212-970-JOKE 1 -011011101 Elkman 1 -011011101 Brockelman 1 -011011101 Schwertfeger 1 -011011101 Vekovius 1 -011011101 Schaney 1 -011011101 laudably 1 -011011101 Lofts 1 -011011101 Karinch 1 -011011101 Shishlin 1 -011011101 Henig 1 -011011101 Wilmott-Brown 1 -011011101 Libeskind 1 -011011101 Gadbois 1 -011011101 Burkhead 1 -011011101 Pavlou 1 -011011101 Centlivre 1 -011011101 Painke 1 -011011101 Seyfried 1 -011011101 Nagl 1 -011011101 Walmsley 1 -011011101 Lyness 1 -011011101 Shemiatenkov 1 -011011101 LePlaca 1 -011011101 Rudzki 1 -011011101 Pekkala 1 -011011101 Gattis 1 -011011101 Retsinas 1 -011011101 al-Moayed 1 -011011101 Spoeri 1 -011011101 Wahab 1 -011011101 Casselli 1 -011011101 Ferlinghetti 1 -011011101 Crichton-Brown 1 -011011101 Rozanski 1 -011011101 Aldin 1 -011011101 Treschow 1 -011011101 Swindells 1 -011011101 Asmussen 1 -011011101 Makharadze 1 -011011101 Bloodworth 1 -011011101 Avtandil 1 -011011101 Guarin 1 -011011101 Saporta 1 -011011101 Konopnicki 1 -011011101 Burman 1 -011011101 Corbeil-Vincent 1 -011011101 Hurvis 1 -011011101 Romagnoli 1 -011011101 Sadden 1 -011011101 Wehmeier 1 -011011101 Altenburg 1 -011011101 Redlich 1 -011011101 Pariser 1 -011011101 Chee-ju 1 -011011101 Thomessen 1 -011011101 Il-ho 1 -011011101 Sang-po 1 -011011101 Chitiea 1 -011011101 Wallman 1 -011011101 Sankovitz 1 -011011101 Hoeft 1 -011011101 Sacconi 1 -011011101 Paysop 1 -011011101 Otwell 1 -011011101 Counsil 1 -011011101 Stelzel 1 -011011101 Mottran 1 -011011101 Urbiet 1 -011011101 Plowden 1 -011011101 Groninger 1 -011011101 Lindup 1 -011011101 Shakhasheri 1 -011011101 1952-58 1 -011011101 D-Ohio 1 -011011101 Whang-Peng 1 -011011101 Ripberger 1 -011011101 Purkis 1 -011011101 VanDenBerg 1 -011011101 Hechtkopf 1 -011011101 Moudy 1 -011011101 too-koo-MAHN 1 -011011101 Raisfeld 1 -011011101 Sternklar 1 -011011101 Ellingwood 1 -011011101 Weinhold 1 -011011101 Chesser 1 -011011101 Plastow 1 -011011101 Slosser 1 -011011101 Sicherman 1 -011011101 Lorick 1 -011011101 Breglio 1 -011011101 Gaboury 1 -011011101 Roualt 1 -011011101 Urmstom 1 -011011101 Norbury 1 -011011101 Altimari 1 -011011101 Cappelluzzo 1 -011011101 Sondakh 1 -011011101 Zeidenberg 1 -011011101 Stronks 1 -011011101 Sacqynski 1 -011011101 Beltrami 1 -011011101 Maushammer 1 -011011101 Lethcoe 1 -011011101 Gurit- 1 -011011101 Bendixen 1 -011011101 Mitropolous 1 -011011101 Longabaugh 1 -011011101 Cancian 1 -011011101 Kazdin 1 -011011101 Guttierez 1 -011011101 Rochford 1 -011011101 Zadow 1 -011011101 DuVal 1 -011011101 Snowbarger 1 -011011101 Cantrill 1 -011011101 Birkensleigh 1 -011011101 Nkala 1 -011011101 Lyndorff 1 -011011101 Troiso 1 -011011101 Muzorewa 1 -011011101 Vasta 1 -011011101 1947-58 1 -011011101 Taghavi 1 -011011101 Mamoudzadeh 1 -011011101 Bajelan 1 -011011101 Hesketh 1 -011011101 Morthland 1 -011011101 McNabb 1 -011011101 flyrod 1 -011011101 Hammerley 1 -011011101 Mizuguchi 1 -011011101 Lugeon 1 -011011101 Lintz 1 -011011101 Willever 1 -011011101 Tomasin 1 -011011101 Tamberlane 1 -011011101 Frazza 1 -011011101 Maravich 1 -011011101 Montaruli 1 -011011101 a-koo-ka 1 -011011101 Jetmundson 1 -011011101 Vradenburg 1 -011011101 Rivett 1 -011011101 Foxe 1 -011011101 Kassim 1 -011011101 Fesharaki 1 -011011101 Murphy-autographed 1 -011011101 Sandlund 1 -011011101 Colleran 1 -011011101 Salvisberg 1 -011011101 Wakil 1 -011011101 Rachels 1 -011011101 Grunberg 1 -011011101 Dulworth 1 -011011101 Harburg 1 -011011101 Hershatter 1 -011011101 Pica 1 -011011101 Kimihide 1 -011011101 Akazawa 1 -011011101 Jindrich 1 -011011101 Nishihashi 1 -011011101 Stagliano 1 -011011101 Schwinger 1 -011011101 Buzzell 1 -011011101 Shunk 1 -011011101 MacEachen 1 -011011101 Dorfler 1 -011011101 Wetheimer 1 -011011101 Schommers 1 -011011101 Senderens 1 -011011101 Ecuyer 1 -011011101 Stahnke 1 -011011101 Urbina 1 -011011101 Dunkley 1 -011011101 Huetten 1 -011011101 Haemmerle 1 -011011101 Sivitz 1 -011011101 Woitas 1 -011011101 Sonday 1 -011011101 Gres 1 -011011101 Hayhurst 1 -011011101 Thesiger 1 -011011101 Rimes 1 -011011101 Clavenna 1 -011011101 Narol 1 -011011101 Spiotta 1 -011011101 Misaki 1 -011011101 CPDH 1 -011011101 Creelman 1 -011011101 Bianchi-Sand 1 -011011101 Hessan 1 -011011101 Ghio 1 -011011101 Westerterpe 1 -011011101 Diest 1 -011011101 Dantchik 1 -011011101 deNoia 1 -011011101 Granin 1 -011011101 Samoilov 1 -011011101 Garmaise 1 -011011101 Outcault 1 -011011101 Rogari 1 -011011101 Shafonsky 1 -011011101 Luker 1 -011011101 Yoshikawa 1 -011011101 Urdanoff 1 -011011101 Kots 1 -011011101 Baynard 1 -011011101 Halva-Neubauer 1 -011011101 Nakauchi 1 -011011101 CPTs 1 -011011101 Boorstyn 1 -011011101 Sipiora 1 -011011101 Loewenherz 1 -011011101 Divall 1 -011011101 Loevner 1 -011011101 Tornay 1 -011011101 Roganti 1 -011011101 Yohannan 1 -011011101 Viclad 1 -011011101 CAPA 1 -011011101 COA 1 -011011101 Bianchetti 1 -011011101 Frankola 1 -011011101 Flacks 1 -011011101 Aglira 1 -011011101 RETREATED 1 -011011101 Banovick 1 -011011101 Chappelle 1 -011011101 Fossan 1 -011011101 Oristaglio 1 -011011101 Lashof 1 -011011101 INSERM 1 -011011101 Suess 1 -011011101 Denais 1 -011011101 Aurelian 1 -011011101 1892-94 1 -011011101 Neckers 1 -011011101 Giboux 1 -011011101 Schessler 1 -011011101 1875-76 1 -011011101 Gouilloud 1 -011011101 Adoo 1 -011011101 Hendren 1 -011011101 Branchflower 1 -011011101 Meekison 1 -011011101 Rawle 1 -011011101 Gallens 1 -011011101 Phin 1 -011011101 Laufenberg 1 -011011101 Norquist 1 -011011101 1900-02 1 -011011101 Chitty 1 -011011101 Dreebman 1 -011011101 Fiattarone 1 -011011101 Ventimiglia 1 -011011101 Branscome 1 -011011101 Sekel 1 -011011101 Kesler 1 -011011101 Varalli 1 -011011101 BenVeniste 1 -011011101 Jerdee 1 -011011101 Cherner 1 -011011101 Maseji 1 -011011101 non-Havana 1 -011011101 DeLellis 1 -011011101 Sessa 1 -011011101 Kuschel 1 -011011101 Gosset 1 -011011101 Jeske 1 -011011101 Piel 1 -011011101 Frees 1 -011011101 Ansdell 1 -011011101 Dockweiler 1 -011011101 216-204 1 -011011101 Elswit 1 -011011101 Pacho 1 -011011101 nonfrozen 1 -011011101 Harootyan 1 -011011101 Clenendan 1 -011011101 Frykholm 1 -011011101 Abernethy 1 -011011101 Winterhalder 1 -011011101 McGeown 1 -011011101 Woodwell 1 -011011101 Riegert 1 -011011101 Suzzy 1 -011011101 Tamaras 1 -011011101 Svasemberg 1 -011011101 Roeber 1 -011011101 Sorich 1 -011011101 Leinwand 1 -011011101 Ringenbach 1 -011011101 Tancock 1 -011011101 Merszei 1 -011011101 Ispahani 1 -011011101 Tuerkheimer 1 -011011101 Pilko 1 -011011101 Dunnan 1 -011011101 Mako 1 -011011101 Steckles 1 -011011101 Annacone 1 -011011101 Comizio 1 -011011101 Orentreich 1 -011011101 Citrin 1 -011011101 Jasey 1 -011011101 Rouvillois 1 -011011101 Bogossian 1 -011011101 Hinchliff 1 -011011101 Arvantidis 1 -011011101 Mujica 1 -011011101 Ehlinger 1 -011011101 Rouleau 1 -011011101 Kameishi 1 -011011101 Ahlerich 1 -011011101 1912-33 1 -011011101 Finsilver 1 -011011101 Milbauer 1 -011011101 Haniye 1 -011011101 Downton 1 -011011101 Mentzer 1 -011011101 Tirrel 1 -011011101 1896-1976 1 -011011101 285,754 1 -011011101 Vass 1 -011011101 Kardos 1 -011011101 SCULLEY 1 -011011101 CALFAB 1 -011011101 Cicarone 1 -011011101 Dyshalenkova 1 -011011101 Ninomiya 1 -011011101 Coiffet 1 -011011101 Mihalas 1 -011011101 Shulstad 1 -011011101 1967=100 1 -011011101 Kahwaty 1 -011011101 Eigo 1 -011011101 Greindl 1 -011011101 Voskarides 1 -011011101 731-798 1 -011011101 Slightam 1 -011011101 Ramishvili 1 -011011101 Grandis 1 -011011101 Champtaloup 1 -011011101 Sheiner 1 -011011101 Mielock 1 -011011101 Hymanson 1 -011011101 Kernish 1 -011011101 Pewsey 1 -011011101 Sallet 1 -011011101 1332-1404 1 -011011101 1263-1328 1 -011011101 Huwa 1 -011011101 Holler 1 -011011101 Ettelbrick 1 -011011101 Krolikowski 1 -011011101 Muns 1 -011011101 Bricken 1 -011011101 Echeandia 1 -011011101 Weckstein 1 -011011101 Herberich 1 -011011101 Karrh 1 -011011101 Bissiere 1 -011011101 Alechinsky 1 -011011101 Griss 1 -011011101 1840-1906 1 -011011101 Clayton-Pedersen 1 -011011101 Kelsea 1 -011011101 Kolsrud 1 -011011101 Plaze 1 -011011101 Steube 1 -011011101 Pradilla 1 -011011101 Kupperman 1 -011011101 Coltoff 1 -011011101 Danko 1 -011011101 Sukel 1 -011011101 Holch 1 -011011101 Ragano 1 -011011101 Deatherage 1 -011011101 Dornfield 1 -011011101 Tortoriello 1 -011011101 Biondo 1 -011011101 Lipsen 1 -011011101 Orsino 1 -011011101 Perloff 1 -011011101 Senyei 1 -011011101 Uretz 1 -011011101 McLagen 1 -011011101 Shagoury 1 -011011101 Escott 1 -011011101 Nakash 1 -011011101 Korobytsin 1 -011011101 Oddy 1 -011011101 Halsmuseum 1 -011011101 Holynskyj 1 -011011101 Weintraut 1 -011011101 Hagelstein 1 -011011101 Grenesko 1 -011011101 Verban 1 -011011101 1948-50 1 -011011101 Stana 1 -011011101 Pasternack 1 -011011101 Tionko 1 -011011101 Grove/Weidenfeld 1 -011011101 Hirasuna 1 -011011101 Al. 1 -011011101 Tsunozaki 1 -011011101 McLuggage 1 -011011101 Burka 1 -011011101 Serra-Badue 1 -011011101 Gallinger 1 -011011101 Sonsky 1 -011011101 Kolodner 1 -011011101 Alberding 1 -011011101 Grantham-Hill 1 -011011101 Sietsma 1 -011011101 Angellism 1 -011011101 Surmanek 1 -011011101 Dyar 1 -011011101 DuPrey 1 -011011101 Asay 1 -011011101 Ostrowsky 1 -011011101 Poyne 1 -011011101 Sult 1 -011011101 1966-1967 1 -011011101 Clooney 1 -011011101 Urben 1 -011011101 Defeo 1 -011011101 Nagorski 1 -011011101 Derobert 1 -011011101 Charlebois 1 -011011101 Jue 1 -011011101 deGuillenchmidt 1 -011011101 Hollsworth 1 -011011101 Ringnauld 1 -011011101 Fege 1 -011011101 DeLiefde 1 -011011101 Jaspers 1 -011011101 Hoexum 1 -011011101 Gilhooley 1 -011011101 Prelegos 1 -011011101 Holscher 1 -011011101 Lindamood 1 -011011101 Drobnick 1 -011011101 Bygdeman 1 -011011101 Stahler-Sholk 1 -011011101 Alyward 1 -011011101 Feingold 1 -011011101 Aufthauser 1 -011011101 Wetherill 1 -011011101 1618-48 1 -011011101 Bozicevich 1 -011011101 Edwardh 1 -011011101 Binsfeld 1 -011011101 Studach 1 -011011101 Magnanti 1 -011011101 Persabal 1 -011011101 Canedo 1 -011011101 ci 1 -011011101 Tineo 1 -011011101 Dills 1 -011011101 Coler 1 -011011101 Digre 1 -011011101 Parkos 1 -011011101 Tominovich 1 -011011101 Hiratsuka 1 -011011101 Humiston 1 -011011101 Zechman 1 -011011101 Raptapolous 1 -011011101 Lepiner 1 -011011101 Naiman 1 -011011101 Nthenda 1 -011011101 Mio 1 -011011101 Moher 1 -011011101 Milko 1 -011011101 Jacobson-Sive 1 -011011101 Tauranac 1 -011011101 Turchin 1 -011011101 Bedeian 1 -011011101 Zable 1 -011011101 Scarperi 1 -011011101 1959-1986 1 -011011101 Bienz 1 -011011101 Stares 1 -011011101 Hastoy 1 -011011101 Munkenbeck 1 -011011101 BEE-kee 1 -011011101 Froybu 1 -011011101 Hulkower 1 -011011101 1828-1910 1 -011011101 Tichenor 1 -011011101 Schlager-Herscott 1 -011011101 Yura 1 -011011101 Mildner 1 -011011101 Teschner 1 -011011101 Shushat 1 -011011101 Worre 1 -011011101 Zanotti 1 -011011101 Furusaka 1 -011011101 shhh 1 -011011101 Hadland 1 -011011101 Waki 1 -011011101 Svistunov 1 -011011101 Lutmer 1 -011011101 Wurm 1 -011011101 Brokaw. 1 -011011101 Manenti 1 -011011101 laughed. 1 -011011101 Glorie 1 -011011101 Huey-Burns 1 -011011101 Fiering 1 -011011101 Puette 1 -011011101 Maleska 1 -011011101 Winegar 1 -011011101 Pollnow 1 -011011101 Browder 1 -011011101 Rietz 1 -011011101 Carbaugh 1 -011011101 Marcellino 1 -011011101 Treleaven 1 -011011101 Augenthaler 1 -011011101 Schoonmaker 1 -011011101 Erginsoy 1 -011011101 Israfil 1 -011011101 Brandler 1 -011011101 Turbyfill 1 -011011101 Wragg 1 -011011101 Scratchard 1 -011011101 Dupps 1 -011011101 Broich 1 -011011101 Naster 1 -011011101 Yune 1 -011011101 Waage 1 -011011101 Crunkleton 1 -011011101 Pinson-Smith 1 -011011101 Brummel 1 -011011101 Lyles 1 -011011101 Stoltman 1 -011011101 Camnitzer 1 -011011101 Gerven 1 -011011101 Wolbrette 1 -011011101 Ghurair 1 -011011101 Travkin 1 -011011101 Sklyarov 1 -011011101 Kudryavtsev 1 -011011101 Vatanen 1 -011011101 Mrad 1 -011011101 LaGamba 1 -011011101 Kentoff 1 -011011101 Mazzucchelli 1 -011011101 Wychwood 1 -011011101 Borst 1 -011011101 Eavey 1 -011011101 Doose 1 -011011101 Kassapian 1 -011011101 Knipe 1 -011011101 uh-oh 1 -011011101 Bodurtha 1 -011011101 Sangenito 1 -011011101 Dahman 1 -011011101 Fisketjon 1 -011011101 Schwarte 1 -011011101 Jiangmen 1 -011011101 Rejto 1 -011011101 Schneider-Maunoury 1 -011011101 Klyuchevsky 1 -011011101 Westney 1 -011011101 Odinokov 1 -011011101 Hauptly 1 -011011101 Taphorn 1 -011011101 Ferriday 1 -011011101 Ertman 1 -011011101 bogoiskatel 1 -011011101 stvo 1 -011011101 Duga 1 -011011101 Szemeredy 1 -011011101 Veilleux 1 -011011101 Schmotzer 1 -011011101 Stillinger 1 -011011101 Panet-Raymond 1 -011011101 Lochridge 1 -011011101 Badr-Taleh 1 -011011101 Conheeney 1 -011011101 Schoener 1 -011011101 Stensrud 1 -011011101 Rydholm 1 -011011101 Bozanich 1 -011011101 Sprandel 1 -011011101 Bunkell 1 -011011101 Meinerzthagen 1 -011011101 Schuberth 1 -011011101 Bolley 1 -011011101 Bernish 1 -011011101 Dittamore 1 -011011101 Didley 1 -011011101 DiPasquali 1 -011011101 Kaplowitz 1 -011011101 Zeisel 1 -011011101 McKirgan 1 -011011101 Torello 1 -011011101 Wadleigh 1 -011011101 Gouba 1 -011011101 Favelukes 1 -011011101 Tilberg 1 -011011101 Tenan 1 -011011101 Gajewski 1 -011011101 Turzak 1 -011011101 Yudoff 1 -011011101 Radspieler 1 -011011101 Garver 1 -011011101 Emly 1 -011011101 Torgl 1 -011011101 Suwa 1 -011011101 Dewhirst 1 -011011101 Ivany 1 -011011101 Beier 1 -011011101 Gabin 1 -011011101 Neppl 1 -011011101 Steyer 1 -011011101 Zemmol 1 -011011101 Mickle 1 -011011101 Hadwiger 1 -011011101 Golman 1 -011011101 Drumheller 1 -011011101 DeIanni 1 -011011101 Ketchen 1 -011011101 Pantano 1 -011011101 Ginter 1 -011011101 Luttig 1 -011011101 Reuling 1 -011011101 Ruggieri 1 -011011101 Fullett 1 -011011101 Cabrales 1 -011011101 Karfunkel 1 -011011101 Kibbe 1 -011011101 Schlissel 1 -011011101 UNAG 1 -011011101 LINEUP 1 -011011101 Vizzone 1 -011011101 Sudmeier 1 -011011101 Kashef 1 -011011101 Aronica 1 -011011101 Sako 1 -011011101 Eber 1 -011011101 Erhrenhalt 1 -011011101 Likhachev 1 -011011101 Braatz 1 -011011101 Wolzein 1 -011011101 Libin 1 -011011101 Milbourne 1 -011011101 Beddow 1 -011011101 Fulgham 1 -011011101 Varoutsos 1 -011011101 Watry 1 -011011101 Szewczyk 1 -011011101 Niegsch 1 -011011101 Dubitzky 1 -011011101 TAMS 1 -011011101 Brudzinski 1 -011011101 Crowninshield 1 -011011101 Blate 1 -011011101 Nappo 1 -011011101 Mantell 1 -011011101 Cordonier 1 -011011101 Yema 1 -011011101 Lowsley 1 -011011101 Wolbarsht 1 -011011101 Dzershinsky 1 -011011101 Petizon 1 -011011101 Maxon 1 -011011101 Oyama 1 -011011101 Heys 1 -011011101 Panocchia 1 -011011101 Rappaccioli 1 -011011101 Signorelli 1 -011011101 Quinones 1 -011011101 Dahltorp 1 -011011101 Lumbly 1 -011011101 Kaczorowski 1 -011011101 Eickman 1 -011011101 Shakely 1 -011011101 Ulrey 1 -011011101 Novogrod 1 -011011101 McNeish 1 -011011101 Halverson 1 -011011101 Sauvan 1 -011011101 Fronk 1 -011011101 Fagg 1 -011011101 Clayton-Cragg 1 -011011101 Seisler 1 -011011101 4,416 1 -011011101 Wilby 1 -011011101 Farahi 1 -011011101 Bulfield 1 -011011101 Qabir 1 -011011101 Anziano 1 -011011101 Harshman 1 -011011101 Doocy 1 -011011101 Russell-Jones 1 -011011101 Schull 1 -011011101 Jojoba 1 -011011101 Pitou 1 -011011101 Turon 1 -011011101 Girolimon 1 -011011101 Suhrke 1 -011011101 Katzav 1 -011011101 Pohilko 1 -011011101 Grodahl 1 -011011101 Birdsong 1 -011011101 nonexpert 1 -011011101 14:17-21 1 -011011101 Bettencourt 1 -011011101 Destro 1 -011011101 Yegian 1 -011011101 Nyby 1 -011011101 Tabatabai 1 -011011101 Kiszcak 1 -011011101 Avildsen 1 -011011101 Bednarscuk 1 -011011101 Bovenzi 1 -011011101 Wander 1 -011011101 Pfiefer 1 -011011101 Shenold 1 -011011101 Dadd 1 -011011101 Kimberlin 1 -011011101 Podgers 1 -011011101 Raychuk 1 -011011101 1801-1835 1 -011011101 Lovegrove 1 -011011101 Maslen 1 -011011101 Nex 1 -011011101 McLeland 1 -011011101 Kassin 1 -011011101 Yaquinto 1 -011011101 Pekrul 1 -011011101 Galegher 1 -011011101 Durmoy 1 -011011101 Georgesen 1 -011011101 Hickerson 1 -011011101 Skouem 1 -011011101 Vadies 1 -011011101 Koritzinsky 1 -011011101 McNee 1 -011011101 Kettrick 1 -011011101 Jahnigen 1 -011011101 Tarrantino 1 -011011101 Libow 1 -011011101 Pfauwadel 1 -011011101 Ceresney 1 -011011101 Keddington 1 -011011101 Chanler 1 -011011101 Bice 1 -011011101 Bealmear 1 -011011101 Rully 1 -011011101 In-Ki 1 -011011101 Yourdon 1 -011011101 Fagundes 1 -011011101 MacCrate 1 -011011101 Veille 1 -011011101 Hamar 1 -011011101 Gebhard 1 -011011101 Travaglini 1 -011011101 Seefeldt 1 -011011101 Biamby 1 -011011101 Fellberg 1 -011011101 Kampula 1 -011011101 Feldsott 1 -011011101 Ringkjob 1 -011011101 Beston 1 -011011101 Villata 1 -011011101 Kibart 1 -011011101 Romash 1 -011011101 Amlot 1 -011011101 Epting 1 -011011101 Su-kyung 1 -011011101 Sylphides 1 -011011101 Tardos 1 -011011101 Fizdale 1 -011011101 Anzalone 1 -011011101 Geraschenko 1 -011011101 Tampin 1 -011011101 Loe 1 -011011101 Sternbach 1 -011011101 Sharlitt 1 -011011101 Mansson 1 -011011101 Novarro 1 -011011101 Nederkoorn 1 -011011101 Gerdes 1 -011011101 Rayher 1 -011011101 Corden 1 -011011101 Lescott 1 -011011101 Huiskamp 1 -011011101 Kellmer 1 -011011101 Gouse 1 -011011101 Courtman 1 -011011101 Heley-Hutchinson 1 -011011101 Leemans 1 -011011101 Gabour 1 -011011101 149.5pound 1 -011011101 Skoropowski 1 -011011101 Selyunin 1 -011011101 Riekert 1 -011011101 Hazouri 1 -011011101 Kasher 1 -011011101 Jurdahl 1 -011011101 Indrocarburi 1 -011011101 Voorhes 1 -011011101 Goodings 1 -011011101 Harry-Porter 1 -011011101 Hegi 1 -011011101 Chimberg 1 -011011101 Shiqing 1 -011011101 Erbin 1 -011011101 Nobs 1 -011011101 Lench 1 -011011101 Arzymanow 1 -011011101 Gonzelli 1 -011011101 Alstott 1 -011011101 Nader-related 1 -011011101 Farer 1 -011011101 Kirsh 1 -011011101 Cosham 1 -011011101 Janasz 1 -011011101 Roballo 1 -011011101 Yettaw 1 -011011101 Sherick 1 -011011101 Ols 1 -011011101 Laug 1 -011011101 Knothenberg 1 -011011101 Nofi 1 -011011101 Lammerding 1 -011011101 Miron 1 -011011101 Hernly 1 -011011101 Claypole 1 -011011101 Feniger 1 -011011101 what's-his-name 1 -011011101 Lefort 1 -011011101 Miskel 1 -011011101 Medavoy 1 -011011101 Dodwell 1 -011011101 Wigg 1 -011011101 N.Zealand 1 -011011101 Polin 1 -011011101 Polachi 1 -011011101 Morowitz 1 -011011101 Massocca 1 -011011101 Erben 1 -011011101 Fescher 1 -011011101 Falkenstein 1 -011011101 Rueve 1 -011011101 Tikhonov 1 -011011101 Turissini 1 -011011101 Hileman 1 -011011101 Zegar 1 -011011101 Rolan 1 -011011101 Kutzke 1 -011011101 Rabi 1 -011011101 Shosteck 1 -011011101 Novitch 1 -011011101 DeNoon 1 -011011101 Yusko 1 -011011101 Sansolo 1 -011011101 Yayama 1 -011011101 Aramanda 1 -011011101 Simonberg 1 -011011101 Devere 1 -011011101 Nedaskovskaya 1 -011011101 Nonna 1 -011011101 DiJoseph 1 -011011101 Kotwas 1 -011011101 DeNoville 1 -011011101 Lithell 1 -011011101 Voltaggio 1 -011011101 Bowdon 1 -011011101 Behague 1 -011011101 Zomber 1 -011011101 Gurevich 1 -011011101 NagyAntal 1 -011011101 Nickson 1 -011011101 Bargerter 1 -011011101 Rentz 1 -011011101 Bracey 1 -011011101 Jauhiainen 1 -011011101 Clinkscales 1 -011011101 Huffstodt 1 -011011101 Pelin 1 -011011101 Ogtrop 1 -011011101 Holdman 1 -011011101 Grenside 1 -011011101 Risley 1 -011011101 Azzi 1 -011011101 Busterud 1 -011011101 Balboni 1 -011011101 Laciura 1 -011011101 Luetzel 1 -011011101 Uroshevich 1 -011011101 SLFP 1 -011011101 Gatward 1 -011011101 Kromer 1 -011011101 Handshy 1 -011011101 Masurel 1 -011011101 Magrizi 1 -011011101 Francanzani 1 -011011101 Karten 1 -011011101 Neddo 1 -011011101 McMurry 1 -011011101 Coughran 1 -011011101 Southon 1 -011011101 Rayboy 1 -011011101 Henn 1 -011011101 Wempner 1 -011011101 Frio 1 -011011101 Katzke 1 -011011101 Waxweiler 1 -011011101 Hintze 1 -011011101 Jeffe 1 -011011101 literally> 1 -011011101 Copp 1 -011011101 Kennedy-wordsmith 1 -011011101 Lysiak 1 -011011101 Lewis-Davies 1 -011011101 Zulkarnain 1 -011011101 Blaydes 1 -011011101 Kutner 1 -011011101 MacCallan 1 -011011101 1972-80 1 -011011101 Suneby 1 -011011101 Dupond 1 -011011101 Fahner 1 -011011101 Kleinfield 1 -011011101 Brezinski 1 -011011101 Schmalzried 1 -011011101 Zirkle 1 -011011101 Schwarzenberg 1 -011011101 Browen 1 -011011101 Lengesia 1 -011011101 Tempesst 1 -011011101 Uston 1 -011011101 Denard 1 -011011101 Chemin 1 -011011101 Armentrout 1 -011011101 Lifar 1 -011011101 Matsuzaki 1 -011011101 Tufteland 1 -011011101 Maitumo 1 -011011101 Heimfeld 1 -011011101 Forgash 1 -011011101 Garrecht 1 -011011101 Chite 1 -011011101 Boyde 1 -011011101 Houchin 1 -011011101 Glesinger 1 -011011101 Hirschboeck 1 -011011101 Delwiche 1 -011011101 Laroy 1 -011011101 Leddick 1 -011011101 Beirise 1 -011011101 a-Natour 1 -011011101 Niccolini 1 -011011101 Tysse 1 -011011101 Monteux 1 -011011101 Aguiar 1 -011011101 Elsholz 1 -011011101 Dutcher 1 -011011101 Codrington 1 -011011101 Ewers 1 -011011101 3.3-inch-diagonal 1 -011011101 Markgraf 1 -011011101 Ariola 1 -011011101 Houtman 1 -011011101 LaVoie 1 -011011101 Alment 1 -011011101 Mulvey 1 -011011101 Recce 1 -011011101 Caspe 1 -011011101 Termaat 1 -011011101 Klitzman 1 -011011101 Jenkinson 1 -011011101 Mutton 1 -011011101 Tabacchi 1 -011011101 41-55 1 -011011101 Uhlenhop 1 -011011101 Zipko 1 -011011101 GSE 1 -011011101 Breihan 1 -011011101 Chronometer 1 -011011101 Westermeyer 1 -011011101 Dettinger 1 -011011101 Buddendorf 1 -011011101 Yaklin 1 -011011101 Boeren-Veen 1 -011011101 Geun 1 -011011101 Boles 1 -011011101 Osiander 1 -011011101 Brostowitz 1 -011011101 Buttigan 1 -011011101 Carnduff 1 -011011101 Mayall 1 -011011101 Gromov 1 -011011101 Mitscher 1 -011011101 Driker 2 -011011101 Dor 2 -011011101 Lawshe 2 -011011101 Gerstgrasser 2 -011011101 ugh 2 -011011101 Hampp 2 -011011101 Hudnall 2 -011011101 Hime 2 -011011101 1886-1980 2 -011011101 Cliggot 2 -011011101 Lunchbucket 2 -011011101 Sonenclar 2 -011011101 Pinney 2 -011011101 Spannaus 2 -011011101 Serre 2 -011011101 Guibilato 2 -011011101 Summerall 2 -011011101 Paletz 2 -011011101 Heras 2 -011011101 Bjelke-Petersen 2 -011011101 DeAngelo 2 -011011101 Henschel 2 -011011101 BSPP 2 -011011101 Marcano 2 -011011101 Scollard 2 -011011101 Taras 2 -011011101 Thevenot 2 -011011101 Reiffel 2 -011011101 Ostergard 2 -011011101 Raffin 2 -011011101 Prizel 2 -011011101 Loos 2 -011011101 Lamesch 2 -011011101 Wellesz 2 -011011101 PPPs 2 -011011101 PPIs 2 -011011101 Herskowitz 2 -011011101 Arenas 2 -011011101 Riper 2 -011011101 Rochac 2 -011011101 Foppiano 2 -011011101 1966-73 2 -011011101 Huse 2 -011011101 Ruschkowski 2 -011011101 Roenigk 2 -011011101 Solters 2 -011011101 Probus 2 -011011101 Colliver 2 -011011101 Pipho 2 -011011101 Elsberg 2 -011011101 Chinitz 2 -011011101 Yocum 2 -011011101 Wetmore 2 -011011101 Curvin 2 -011011101 Sidoti 2 -011011101 Montalbetti 2 -011011101 Salhany 2 -011011101 Dacey 2 -011011101 2/10 2 -011011101 4/2 2 -011011101 Pohle 2 -011011101 HI 2 -011011101 Ciaccio 2 -011011101 Weissmann 2 -011011101 Null 2 -011011101 Barrot 2 -011011101 Tichy 2 -011011101 Chabrol 2 -011011101 1368-1644 2 -011011101 PETA 2 -011011101 diGenova 2 -011011101 Ruesing 2 -011011101 Medgyessy 2 -011011101 Reni 2 -011011101 Razak 2 -011011101 Elinsky 2 -011011101 Satterthwaite 2 -011011101 Mullady 2 -011011101 Cobban 2 -011011101 Qvale 2 -011011101 Verso 2 -011011101 Hammock 2 -011011101 UyTioco 2 -011011101 Halberstadt 2 -011011101 DeGregorio 2 -011011101 Hoenicke 2 -011011101 Soule 2 -011011101 Christin 2 -011011101 Newton-John 2 -011011101 Valdner 2 -011011101 Schicchi 2 -011011101 Dunn-Rankin 2 -011011101 Brandstetter 2 -011011101 Yavitz 2 -011011101 Corney 2 -011011101 Petrick 2 -011011101 Ochi 2 -011011101 Avelar 2 -011011101 Spirrison 2 -011011101 Riben 2 -011011101 Magness 2 -011011101 Lawlor 2 -011011101 Duffey 2 -011011101 Lalli 2 -011011101 Manner 2 -011011101 Porcelli 2 -011011101 Geballe 2 -011011101 Nulty 2 -011011101 Quiros 2 -011011101 Wellborn 2 -011011101 Koltes 2 -011011101 Minch 2 -011011101 Deisz 2 -011011101 Schlapfer 2 -011011101 Bostwick 2 -011011101 Maarbjerg 2 -011011101 Marer 2 -011011101 Teagarden 2 -011011101 Onidi 2 -011011101 Elbaz 2 -011011101 Emrich 2 -011011101 Scopo 2 -011011101 Koller 2 -011011101 Lombardy 2 -011011101 Mansour 2 -011011101 Haake 2 -011011101 Parler 2 -011011101 Overbeeke 2 -011011101 Kavesh 2 -011011101 Cattrall 2 -011011101 LRINF 2 -011011101 Lannie 2 -011011101 Bloggs 2 -011011101 Newlin 2 -011011101 Eastham 2 -011011101 Bishvat 2 -011011101 Halebian 2 -011011101 Lionetti 2 -011011101 Bruner 2 -011011101 Ragavan 2 -011011101 COMEX 2 -011011101 Agajanian 2 -011011101 Abuchowski 2 -011011101 MacFarlane 2 -011011101 Lapenter 2 -011011101 Kump 2 -011011101 Miller-Bakewell 2 -011011101 Scalettar 2 -011011101 Dutt 2 -011011101 Chadonic 2 -011011101 Licon 2 -011011101 Koufax 2 -011011101 1209 2 -011011101 Hetrick 2 -011011101 Gerrard 2 -011011101 Mell 2 -011011101 Shiba 2 -011011101 Danse 2 -011011101 Hurlburt 2 -011011101 Cabria 2 -011011101 Lappe 2 -011011101 Saviers 2 -011011101 Doerig 2 -011011101 AAZK 2 -011011101 1868-1912 2 -011011101 Fuelner 2 -011011101 Bario 2 -011011101 Parlato 2 -011011101 Mauri 2 -011011101 Renteria 2 -011011101 Amiel 2 -011011101 Boakes 2 -011011101 Narkewicz 2 -011011101 Romualdez 2 -011011101 Farago 2 -011011101 Adieux 2 -011011101 Launder 2 -011011101 Lachowsky 2 -011011101 Beaumont-Dark 2 -011011101 Sontheimer 2 -011011101 Kawashima 2 -011011101 Gonski 2 -011011101 Bulloch 2 -011011101 Wachter 2 -011011101 Granwell 2 -011011101 Louis-Dreyfus 2 -011011101 Goldsboro 2 -011011101 Orenstein 2 -011011101 Moeltner 2 -011011101 Verster 2 -011011101 Baumgarten 2 -011011101 Sanson 2 -011011101 Yamamura 2 -011011101 Stancell 2 -011011101 Grissom 2 -011011101 SRs 2 -011011101 JCAH 2 -011011101 Ruehl 2 -011011101 Pilcher 2 -011011101 Labiner 2 -011011101 Kuper 2 -011011101 Maready 2 -011011101 Fialkow 2 -011011101 Cadaret 2 -011011101 1970-76 2 -011011101 Chertow 2 -011011101 Schanbaum 2 -011011101 Haffner 2 -011011101 CEQ 2 -011011101 Selway-Swift 2 -011011101 Conigliaro 2 -011011101 Tebbe 2 -011011101 Erlichman 2 -011011101 Schleicher 2 -011011101 Boal 2 -011011101 Demesse 2 -011011101 MacLaury 2 -011011101 Kitamura 2 -011011101 Wetherby 2 -011011101 Tyrer 2 -011011101 Gielen 2 -011011101 Pratte 2 -011011101 Shulz 2 -011011101 Gorney 2 -011011101 Hendrickse 2 -011011101 Mastrangelo 2 -011011101 Tortorici 2 -011011101 Neveu 2 -011011101 Macdougall 2 -011011101 Lomanno 2 -011011101 Barberis 2 -011011101 Bainbridge 2 -011011101 Meaden 2 -011011101 Sizemore 2 -011011101 Rafuse 2 -011011101 Malmgren 2 -011011101 Capiau 2 -011011101 Wigginton 2 -011011101 ta-KESH-ta 2 -011011101 Obrinksy 2 -011011101 Liberatore 2 -011011101 Gressel 2 -011011101 Mischler 2 -011011101 Kornfeld 2 -011011101 Makens 2 -011011101 Yalen 2 -011011101 Westlund 2 -011011101 McKusick 2 -011011101 Lopata 2 -011011101 Cetrone 2 -011011101 Goutard 2 -011011101 Kreidler 2 -011011101 Glos 2 -011011101 Dalzell 2 -011011101 Soble 2 -011011101 Wiedenmayer 2 -011011101 Mazura 2 -011011101 Accessoires 2 -011011101 Anzola 2 -011011101 Serino 2 -011011101 Berigan 2 -011011101 Shinato 2 -011011101 Ranelli 2 -011011101 Calbo 2 -011011101 Barshop 2 -011011101 Letertre 2 -011011101 Rees-Mogg 2 -011011101 Lobsenz 2 -011011101 mid-May-mid-August 2 -011011101 Jean-Philippe 2 -011011101 Baty 2 -011011101 Manwani 2 -011011101 Allardice 2 -011011101 Diderot 2 -011011101 Grimbley 2 -011011101 Kuhl 2 -011011101 Abtahi 2 -011011101 Minicucci 2 -011011101 McFerran 2 -011011101 Murr 2 -011011101 Marthe 2 -011011101 Spen 2 -011011101 McKeehan 2 -011011101 Binstein 2 -011011101 Jureidini 2 -011011101 Howland 2 -011011101 Perlstein 2 -011011101 Tello 2 -011011101 Andewelt 2 -011011101 Delroy 2 -011011101 Mackenrodt 2 -011011101 Padgitt 2 -011011101 Yaroslavsky 2 -011011101 5,033 2 -011011101 Strozier 2 -011011101 Haglund 2 -011011101 Kwok 2 -011011101 2030-2050 2 -011011101 Huyett 2 -011011101 Hyett 2 -011011101 Sheikholislam 2 -011011101 Crawshaw 2 -011011101 Holroyd 2 -011011101 Kiely 2 -011011101 Hemnes 2 -011011101 Kerfourn 2 -011011101 Kozak 2 -011011101 Transfusion 2 -011011101 Pereire 2 -011011101 Weidner 2 -011011101 Morony 2 -011011101 Laptev 2 -011011101 ChFC 2 -011011101 Boxberger 2 -011011101 Miernyk 2 -011011101 Shillingford 2 -011011101 Menadue 2 -011011101 Poston 2 -011011101 SHAPE 2 -011011101 Ik 2 -011011101 Hodgkinson 2 -011011101 Pinkowitz 2 -011011101 Kirst 2 -011011101 Hartle 2 -011011101 Berckmans 2 -011011101 Riegger 2 -011011101 Moros 2 -011011101 Blane 2 -011011101 Aranha 2 -011011101 fixed/ARPS 2 -011011101 Bonsor 2 -011011101 Anka 2 -011011101 Lari 2 -011011101 Kloner 2 -011011101 Kasuga 2 -011011101 Shuffstall 2 -011011101 Gregoire 2 -011011101 Zeh 2 -011011101 Belas 2 -011011101 Brotman 2 -011011101 Selinger 2 -011011101 Hayter 2 -011011101 Brooker 2 -011011101 Todt 2 -011011101 Hald 2 -011011101 Lenox-Conyngham 2 -011011101 Fallow 2 -011011101 Betterton 2 -011011101 Merrigan 2 -011011101 Bergner 2 -011011101 DalBello 2 -011011101 MacKnight 2 -011011101 Hesburgh 2 -011011101 Beinstein 2 -011011101 Grinold 2 -011011101 2.2-pound 2 -011011101 Adcock 2 -011011101 Grooms 2 -011011101 Gotoda 2 -011011101 Schlemm 2 -011011101 Leleti 2 -011011101 Krejci 2 -011011101 Lipner 2 -011011101 Womble 2 -011011101 McEnally 2 -011011101 Tarrson 2 -011011101 Christakos 2 -011011101 WCC 2 -011011101 Frisbie 2 -011011101 Oct.3 2 -011011101 Dahood 2 -011011101 Brealey 2 -011011101 Brancoli 2 -011011101 Mitchell-Innes 2 -011011101 Dineen 2 -011011101 Hjort 2 -011011101 Gaeckler 2 -011011101 Shahn 2 -011011101 Dupuy 2 -011011101 Burstyn 2 -011011101 Bohane 2 -011011101 Charbonneau 2 -011011101 Heisterberg 2 -011011101 Banducci 2 -011011101 Hilfiger 2 -011011101 Schanz 2 -011011101 Stickel 2 -011011101 Kasanof 2 -011011101 Yin 2 -011011101 Kerns 2 -011011101 Weisler 2 -011011101 Baxendale 2 -011011101 Abedrop 2 -011011101 Schreuder 2 -011011101 Mangione 2 -011011101 Voke 2 -011011101 Perigord 2 -011011101 Danielak 2 -011011101 Witte 2 -011011101 Evers 2 -011011101 Ranada 2 -011011101 Malson 2 -011011101 Diezi 2 -011011101 Schiffman 2 -011011101 Wimbish 2 -011011101 MacDonnell 2 -011011101 1568 2 -011011101 Mussati 2 -011011101 Iffland 2 -011011101 Brossard 2 -011011101 Riedl 2 -011011101 Spiker 2 -011011101 Fulaij 2 -011011101 Adham 2 -011011101 Cappello 2 -011011101 Biffen 2 -011011101 Schavernoch 2 -011011101 Grimstone 2 -011011101 Dotterweich 2 -011011101 Miesmer 2 -011011101 Drumm 2 -011011101 Graebner 2 -011011101 Yanchar 2 -011011101 Malman 2 -011011101 Tembe 2 -011011101 Hedley 2 -011011101 Meagher-Davis 2 -011011101 Adelsheim 2 -011011101 Jamila 2 -011011101 Thrasher 2 -011011101 SOM 2 -011011101 Bruckheimer 2 -011011101 Mitsuzuka 2 -011011101 Naqvi 2 -011011101 mcf 2 -011011101 Kunkle 2 -011011101 Preece 2 -011011101 Meresman 2 -011011101 Altshuler 2 -011011101 Meghan 2 -011011101 Koonce 2 -011011101 Vanderwoude 2 -011011101 Matsuki 2 -011011101 Ashkin 2 -011011101 Shar 2 -011011101 Harvill 2 -011011101 Ure 2 -011011101 Nasky 2 -011011101 Kani 2 -011011101 Beurskens 2 -011011101 Chulsu 2 -011011101 Weng 2 -011011101 Edmondson 2 -011011101 Mastro 2 -011011101 Ouchi 2 -011011101 Doubled 2 -011011101 Utsman 2 -011011101 Shimokobe 2 -011011101 Marcovicci 2 -011011101 Stromberg 2 -011011101 Sequeira 2 -011011101 D-Calif. 2 -011011101 Kihwan 2 -011011101 Tretheway 2 -011011101 Avila 2 -011011101 Peep 2 -011011101 Goulde 2 -011011101 Democratico 2 -011011101 Reinfrank 2 -011011101 Manus 2 -011011101 Medvid 2 -011011101 Glanz 2 -011011101 Petrocik 2 -011011101 Wandner 2 -011011101 Lowy 2 -011011101 1834-1917 2 -011011101 Treace 2 -011011101 Panuska 2 -011011101 Gunnell 2 -011011101 Iimura 2 -011011101 F.S. 2 -011011101 Levental 2 -011011101 Suchet 2 -011011101 Lawner 2 -011011101 Winsten 2 -011011101 Chaffin 2 -011011101 Trosper 2 -011011101 1c 2 -011011101 Digney 2 -011011101 McCahill 2 -011011101 Salembier 2 -011011101 Vardy 2 -011011101 Mohammedi 2 -011011101 Fajr 2 -011011101 Auth 2 -011011101 Temin 2 -011011101 Magary 2 -011011101 al-Hassan 2 -011011101 Treanor 2 -011011101 DiBello 2 -011011101 Aichi 2 -011011101 Guisewite 2 -011011101 Millenbruch 2 -011011101 Jerram 2 -011011101 Simonelli 2 -011011101 Blackwill 2 -011011101 Pakkasem 2 -011011101 CFTC-regulated 2 -011011101 Stobaugh 2 -011011101 Horlick 2 -011011101 Panzer 2 -011011101 Leow 2 -011011101 first-in 2 -011011101 DiBuono 2 -011011101 Weig 2 -011011101 Widmer 2 -011011101 McCaul 2 -011011101 Dotti 2 -011011101 Glicksman 2 -011011101 Rom 2 -011011101 Dykstra 2 -011011101 Koprucki 2 -011011101 Turnock 2 -011011101 Sulej 2 -011011101 Saslow 2 -011011101 Jacobus 2 -011011101 Hefley 2 -011011101 Bachand 2 -011011101 Brong 2 -011011101 Atzmon 2 -011011101 Rideau 2 -011011101 Dagnan 2 -011011101 Streed 2 -011011101 Vassos 2 -011011101 Matteucci 2 -011011101 Trienens 2 -011011101 Nield 2 -011011101 Reiners 2 -011011101 Frankenheim 2 -011011101 Yip 2 -011011101 Setogawa 2 -011011101 Caulo 2 -011011101 Sudo 2 -011011101 Geils 2 -011011101 Harron 2 -011011101 1633 2 -011011101 Artiano 2 -011011101 Burbach 2 -011011101 Mahorn 2 -011011101 Zeitler 2 -011011101 Hotard 2 -011011101 Dingilian 2 -011011101 Cally 2 -011011101 Lamprey 2 -011011101 al-Haq 2 -011011101 McFarlain 2 -011011101 Buker 2 -011011101 LeGrange 2 -011011101 Baly 2 -011011101 Dessart 2 -011011101 Delsener 2 -011011101 Gilkes 2 -011011101 Aidinoff 2 -011011101 Luiso 2 -011011101 Strumwasser 2 -011011101 MacMurray 2 -011011101 Dammeyer 2 -011011101 Backhaus 2 -011011101 Balderston 2 -011011101 Yamaki 2 -011011101 Caras 2 -011011101 Laxer 2 -011011101 Lorentz 2 -011011101 Lie-Nielsen 2 -011011101 Cleu 2 -011011101 Vinocour 2 -011011101 Preiss 2 -011011101 Treen 2 -011011101 Ogg 2 -011011101 Kamiya 2 -011011101 Daniella 2 -011011101 Brailey 2 -011011101 Evron 2 -011011101 Merl 2 -011011101 Mackness 2 -011011101 SPNFZ 2 -011011101 Thessalonians 2 -011011101 Odascalchi 2 -011011101 McCandless 2 -011011101 Toda 2 -011011101 Stumbo 2 -011011101 Pushkarev 2 -011011101 Fabrizio 2 -011011101 Jacque 2 -011011101 Slan 2 -011011101 Lagnado 2 -011011101 Kinzer 2 -011011101 Riegel 2 -011011101 Saghal 2 -011011101 Hewin 2 -011011101 Ione 2 -011011101 Rathbun 2 -011011101 VERs 2 -011011101 D-Mich. 2 -011011101 Yelsey 2 -011011101 Jaeggi 2 -011011101 MAP 2 -011011101 Randazzo 2 -011011101 Miyasaka 2 -011011101 Plotz 2 -011011101 Alcindor 2 -011011101 Darder 2 -011011101 nothings 2 -011011101 McLoughlin 2 -011011101 Helbig 2 -011011101 Wikes 2 -011011101 Siebenburgen 2 -011011101 Webman 2 -011011101 Mastroddi 2 -011011101 8-7 2 -011011101 Mantilini 2 -011011101 Rivard 2 -011011101 NAIA 2 -011011101 Heclo 2 -011011101 Wegter 2 -011011101 Guyette 2 -011011101 Shirai 2 -011011101 Kirwin 2 -011011101 Barstow 2 -011011101 Lunde 2 -011011101 Kavkaz 2 -011011101 Robbins-Roth 2 -011011101 Keeny 2 -011011101 Callagy 2 -011011101 Schweninger 2 -011011101 Melman 2 -011011101 Marrinson 2 -011011101 Berentson 2 -011011101 Marita 2 -011011101 Guarascio 2 -011011101 Qualman 2 -011011101 Crombie 2 -011011101 Niemier 2 -011011101 Henriquez 2 -011011101 Nehrling 2 -011011101 Calvello 2 -011011101 Scheffer 2 -011011101 1882-1963 2 -011011101 Sinopoli 2 -011011101 DiMartino 2 -011011101 Shik 2 -011011101 Collis 2 -011011101 Mousavi 2 -011011101 Hegemony 2 -011011101 Rosskamm 2 -011011101 Berke 2 -011011101 Rannala 2 -011011101 Schambra 2 -011011101 Rehmet 2 -011011101 Grieco 2 -011011101 McVoy 2 -011011101 Cowden 2 -011011101 Legato 2 -011011101 Westover 2 -011011101 McGillivray 2 -011011101 Liley 2 -011011101 Pursell 2 -011011101 Gittelman 2 -011011101 MasterMedia 2 -011011101 Mauriac 2 -011011101 Irsay 2 -011011101 Wefald 2 -011011101 Gries 2 -011011101 LASC 2 -011011101 Penser 2 -011011101 Mashburn 2 -011011101 Povich 2 -011011101 Bernson 2 -011011101 Gilpin 2 -011011101 Borseth 2 -011011101 DeNiro 2 -011011101 Osnos 2 -011011101 Ergas 2 -011011101 Griles 2 -011011101 Artandi 2 -011011101 Vanasek 2 -011011101 Berecz 2 -011011101 Babich 2 -011011101 Lyden 2 -011011101 Hattner 2 -011011101 Skorpil 2 -011011101 Ryden 2 -011011101 Borisoff 2 -011011101 Lapidus 2 -011011101 Merideth 2 -011011101 Demarest 2 -011011101 McAteer 2 -011011101 Rigden 2 -011011101 Birkner 2 -011011101 Genest 2 -011011101 Selebi 2 -011011101 Ayton 2 -011011101 Toal 2 -011011101 Bagoon 2 -011011101 Cachalia 2 -011011101 Smiddy 2 -011011101 Nejezchleb 2 -011011101 AUB 2 -011011101 Rodham 2 -011011101 1981-1988 2 -011011101 Ladner 2 -011011101 Sneller 2 -011011101 Briloff 2 -011011101 Kunst 2 -011011101 Pierandri 2 -011011101 Weiland 2 -011011101 Hatry 2 -011011101 Staw 2 -011011101 Adderley 2 -011011101 Urich 2 -011011101 Gibbens 2 -011011101 Bininda 2 -011011101 Gaskins 2 -011011101 Winship 2 -011011101 Jurkowitz 2 -011011101 Negri 2 -011011101 Zigas 2 -011011101 Ryon 2 -011011101 Itteilag 2 -011011101 Abramoff 2 -011011101 Stabbert 2 -011011101 Miskin 2 -011011101 Adriatico 2 -011011101 Gady 2 -011011101 Schwartzstein 2 -011011101 Veliotes 2 -011011101 Reingold 2 -011011101 Wattleton 2 -011011101 Bratkowski 2 -011011101 Dymetrol 2 -011011101 Posthumus 2 -011011101 Grassmuck 2 -011011101 Corpora 2 -011011101 Tyszkiewicz 2 -011011101 Hubbert 2 -011011101 Loesch 2 -011011101 Relly 2 -011011101 McGirr 2 -011011101 Ardito-Barletta 2 -011011101 Fyfe 2 -011011101 Nickas 2 -011011101 Kimbrell 2 -011011101 Selleca 2 -011011101 Krisel 2 -011011101 Gibert 2 -011011101 Allingham 3 -011011101 1973-1986 3 -011011101 Barkema 3 -011011101 Svedberg 3 -011011101 Honiss 3 -011011101 Vaness 3 -011011101 Emry 3 -011011101 Sprouse 3 -011011101 Viking/Penguin 3 -011011101 Aldred 3 -011011101 Schardt 3 -011011101 analogs 3 -011011101 Yanes 3 -011011101 Skubal 3 -011011101 Buscaglia 3 -011011101 Abele 3 -011011101 Arata 3 -011011101 Abbeville 3 -011011101 Harkavy 3 -011011101 Peyrefitte 3 -011011101 Zief 3 -011011101 Loy 3 -011011101 Rhea 3 -011011101 Pucci 3 -011011101 Revocable 3 -011011101 Hales 3 -011011101 Strassberg 3 -011011101 McAdoo 3 -011011101 Tynan 3 -011011101 Arnum 3 -011011101 Guillaume 3 -011011101 Akiba 3 -011011101 Lansberg 3 -011011101 Norrett 3 -011011101 Pepe 3 -011011101 Petits 3 -011011101 Flournoy 3 -011011101 Fajen 3 -011011101 natch 3 -011011101 Villeneuve 3 -011011101 CF8 3 -011011101 Biegen 3 -011011101 Coulombe 3 -011011101 Foti 3 -011011101 Triplett 3 -011011101 Moos 3 -011011101 Murasawa 3 -011011101 Ostro 3 -011011101 Kosner 3 -011011101 Reymond 3 -011011101 Parola 3 -011011101 '49 3 -011011101 Weingard 3 -011011101 Schlosser 3 -011011101 Westview 3 -011011101 Fram 3 -011011101 Hartenstein 3 -011011101 Ogiba 3 -011011101 Spader 3 -011011101 Calegari 3 -011011101 Donney 3 -011011101 Bross 3 -011011101 Threadgold 3 -011011101 Jarmin 3 -011011101 Matsumura 3 -011011101 Sakamaki 3 -011011101 Shorell 3 -011011101 Keran 3 -011011101 Lygo 3 -011011101 Stickler 3 -011011101 Minikes 3 -011011101 Azenberg 3 -011011101 McNeilage 3 -011011101 Pannone 3 -011011101 Grote 3 -011011101 Figlewski 3 -011011101 Salami 3 -011011101 Pires 3 -011011101 Hartley-Leonard 3 -011011101 Garbutt 3 -011011101 Krul 3 -011011101 Yager 3 -011011101 Haus 3 -011011101 Minsky 3 -011011101 Podberesky 3 -011011101 Ewart 3 -011011101 Saxbe 3 -011011101 Zvonek 3 -011011101 Puder-York 3 -011011101 Halfpenny 3 -011011101 Pitofsky 3 -011011101 Durning 3 -011011101 Hao 3 -011011101 Rayl 3 -011011101 Loehr 3 -011011101 Mazor 3 -011011101 Godeaux 3 -011011101 Gladden 3 -011011101 Noss 3 -011011101 16-24 3 -011011101 Anglade 3 -011011101 Hinderaker 3 -011011101 Jasim 3 -011011101 Gabele 3 -011011101 Yarmis 3 -011011101 Dallara 3 -011011101 Ottavio 3 -011011101 Assumma 3 -011011101 Dornblaser 3 -011011101 Schily 3 -011011101 Morcom 3 -011011101 Christianson 3 -011011101 Balin 3 -011011101 LeBaube 3 -011011101 Jeancourt-Galignani 3 -011011101 Colliano 3 -011011101 Hyams 3 -011011101 Fireside 3 -011011101 Anzai 3 -011011101 Rodrigues 3 -011011101 Hsieh 3 -011011101 Mograbi 3 -011011101 Ortoli 3 -011011101 Lipinski 3 -011011101 Monnet 3 -011011101 Particelli 3 -011011101 Gwynne 3 -011011101 Hosomi 3 -011011101 Blin 3 -011011101 Lynner 3 -011011101 Tebbitt 3 -011011101 Catalano 3 -011011101 Smerlis 3 -011011101 Halcrow 3 -011011101 Hein 3 -011011101 Sirois 3 -011011101 Brancatelli 3 -011011101 Pau 3 -011011101 Tegner 3 -011011101 Garrow 3 -011011101 Bogenschutz 3 -011011101 Auteuil 3 -011011101 Casnoff 3 -011011101 Pidgeon 3 -011011101 Dufresne 3 -011011101 Obbink 3 -011011101 Mikhailovich 3 -011011101 Pruett 3 -011011101 Catlett 3 -011011101 Rudie 3 -011011101 Behn 3 -011011101 check-ups 3 -011011101 Epperson 3 -011011101 Voy 3 -011011101 Gerster 3 -011011101 Sindona 3 -011011101 Kolstad 3 -011011101 Rehme 3 -011011101 Haass 3 -011011101 Tragos 3 -011011101 Hillaker 3 -011011101 Kuehnle 3 -011011101 Sitzer 3 -011011101 Nader-style 3 -011011101 Boesenberg 3 -011011101 Curren 3 -011011101 Dowding 3 -011011101 Gloyne 3 -011011101 Natividad 3 -011011101 Joad 3 -011011101 Grandfather 3 -011011101 Geisterfer 3 -011011101 MYG 3 -011011101 Kirschbaum 3 -011011101 Cadman 3 -011011101 Azerbaydzhan 3 -011011101 Teslik 3 -011011101 Poutney 3 -011011101 Wassong 3 -011011101 Napley 3 -011011101 Fredericksen 3 -011011101 Aberg 3 -011011101 Mahini 3 -011011101 Nicely 3 -011011101 Seidemann 3 -011011101 Miz 3 -011011101 Schuette 3 -011011101 Deeks 3 -011011101 Spengler 3 -011011101 Heley 3 -011011101 Scherb 3 -011011101 Christiani 3 -011011101 Freeborn 3 -011011101 SCR 3 -011011101 TNM 3 -011011101 Nimoy 4 -011011101 Poelker 4 -011011101 Frutschy 4 -011011101 Edmunds 4 -011011101 Jacki 4 -011011101 Mahmud 4 -011011101 Ostrom 4 -011011101 Ferland 4 -011011101 Gitner 4 -011011101 Bellew 4 -011011101 Neugarten 4 -011011101 Mitropoulos 4 -011011101 Braziller 4 -011011101 pacem 4 -011011101 Myrdal 4 -011011101 Frankovich 4 -011011101 Rafshoon 4 -011011101 Cadwell 4 -011011101 Laurin 4 -011011101 Copperfield 4 -011011101 Menear 4 -011011101 Swords 4 -011011101 Fossen 4 -011011101 Dzodin 4 -011011101 Malizia 4 -011011101 Hershberg 4 -011011101 Laupheimer 4 -011011101 Bensinger 4 -011011101 Katarincic 4 -011011101 Matthau 4 -011011101 Terzian 4 -011011101 Runiewicz 4 -011011101 Krasner 4 -011011101 Taira 4 -011011101 Voorhees 4 -011011101 Sheinkman 4 -011011101 DeLeon 4 -011011101 Rebitz 4 -011011101 Donahoe 4 -011011101 Manfredi 4 -011011101 Bruns 4 -011011101 Gruhn 4 -011011101 Burghardt 4 -011011101 Petrovich 4 -011011101 brraap 4 -011011101 Hedi 4 -011011101 Mottram 4 -011011101 Scribners 4 -011011101 Colvin 4 -011011101 Mikesell 4 -011011101 Enna 4 -011011101 Salfen 4 -011011101 Carnesale 4 -011011101 Mier 4 -011011101 Niculescu 4 -011011101 McCrudden 4 -011011101 Ruxton 4 -011011101 Pazienza 4 -011011101 Ruvkun 4 -011011101 Takemura 4 -011011101 Blanco 4 -011011101 Wilmouth 4 -011011101 Colm 4 -011011101 Winkelried 4 -011011101 Wahl 4 -011011101 Bisset 4 -011011101 Dang 4 -011011101 Spiewak 4 -011011101 Werkstell 4 -011011101 Talvela 4 -011011101 1978-81 4 -011011101 Merigan 4 -011011101 Dellamonte 4 -011011101 Fallick 4 -011011101 Twiss 4 -011011101 Shove 4 -011011101 Weichmann 4 -011011101 Enfants 5 -011011101 Racz 5 -011011101 Youde 5 -011011101 Oelbaum 5 -011011101 Zalusky 5 -011011101 Keye 5 -011011101 Gator 5 -011011101 Wozniak 5 -011011101 Cay 5 -011011101 Smock 5 -011011101 Polhill 5 -011011101 Jackman 5 -011011101 Ogawa 5 -011011101 Baugh 5 -011011101 Primakov 5 -011011101 S.P. 5 -011011101 GAIN 5 -011011101 Beedle 5 -011011101 Benfer 5 -011011101 Rotenberg 5 -011011101 Aperture 5 -011011101 Wass 5 -011011101 Snyderman 5 -011011101 Chalpin 5 -011011101 Nohavec 5 -011011101 Pilevsky 5 -011011101 Loggia 5 -011011101 Schollmeyer 5 -011011101 Malisewski 5 -011011101 Forester 5 -011011101 Oxnard 6 -011011101 Cornwell 6 -011011101 Larrabee 6 -011011101 Grandmaison 6 -011011101 Naipaul 6 -011011101 Smick 6 -011011101 GLCMs 6 -011011101 Liaisons 6 -011011101 Kies 6 -011011101 Orren 7 -011011101 Workman 7 -011011101 Chick 7 -011011101 PLUS 7 -011011101 Sabato 7 -011011101 Kaneko 7 -011011101 Feltes 7 -011011101 Archey 7 -011011101 Neuhauser 7 -011011101 Berrill 7 -011011101 Everson 7 -011011101 Ballinger 7 -011011101 Pohl 7 -011011101 Bolanos 7 -011011101 Fiberglass 7 -011011101 h 7 -011011101 Ravitz 7 -011011101 Leiken 8 -011011101 Marose 8 -011011101 Ukman 8 -011011101 Coggin 8 -011011101 1982=100 8 -011011101 Yingling 8 -011011101 Silbergeld 8 -011011101 Pre 9 -011011101 Meinertzhagen 9 -011011101 Atheneum 9 -011011101 Dongen 9 -011011101 Nickleby 9 -011011101 Chew 9 -011011101 f 9 -011011101 Messrs. 9 -011011101 Shooshan 9 -011011101 Korologos 10 -011011101 H.K. 10 -011011101 bleep 10 -011011101 E.P. 10 -011011101 Griff 11 -011011101 Fri 11 -011011101 oops 12 -011011101 G.m.b. 12 -011011101 U.S.A 15 -011011101 Furniss 17 -011011101 Pantheon 18 -011011101 Charren 18 -011011101 L&A 19 -011011101 S.p. 20 -011011101 Basse 22 -011011101 Bookshelf 24 -011011101 UK 27 -011011101 Topix 28 -011011101 Miserables 31 -011011101 Farrar 35 -011011101 e 39 -011011101 d 39 -011011101 Editorial 47 -011011101 P 49 -011011101 c 62 -011011101 b 73 -011011101 Loewy 74 -011011101 k 74 -011011101 Lespinasse 76 -011011101 Knopf 79 -011011101 Nuys 85 -011011101 e.g. 131 -011011101 LIBOR 198 -011011101 212 207 -011011101 U.S.A. 654 -011011101 See 980 -011011101 D. 5804 -011011101 R. 4173 -0110111100 dive-bombed 1 -0110111100 Springs/Mister 1 -0110111100 Legislator 1 -0110111100 pro-Diem 1 -0110111100 Ex-priest 1 -0110111100 Necmettin 1 -0110111100 football-hulk 1 -0110111100 reporter-turned-hostess 1 -0110111100 Governor-General 1 -0110111100 Thirty-three-year-old 1 -0110111100 Meadows-Corona 1 -0110111100 Tajwar 1 -0110111100 Contestant 1 -0110111100 Jaroy 1 -0110111100 Gannadi 1 -0110111100 TV-character 1 -0110111100 Meteorologist 1 -0110111100 Ven 1 -0110111100 Concurs 1 -0110111100 Hisatsune 1 -0110111100 Tax-weary 1 -0110111100 Inflicts 1 -0110111100 Co-host 1 -0110111100 Insouciant 1 -0110111100 Ange 1 -0110111100 KGB-boss-cum-union-chief 1 -0110111100 Ranja 1 -0110111100 Tawfik 1 -0110111100 Emmanuel-Joseph 1 -0110111100 Farag 1 -0110111100 Abdelkarim 1 -0110111100 Unshaven 1 -0110111100 Aldouri 1 -0110111100 misspells 1 -0110111100 Budding 1 -0110111100 Claude-Michel 1 -0110111100 Grandpappy 1 -0110111100 Olshever 1 -0110111100 Slinky 1 -0110111100 gloom-monger 1 -0110111100 avant-guitarist 1 -0110111100 Shortstop 1 -0110111100 also-tall 1 -0110111100 guitarist/theoretician 1 -0110111100 Thelonius 1 -0110111100 sometime-exhibitionist 1 -0110111100 PRODS 1 -0110111100 Olivette 1 -0110111100 ice-skater 1 -0110111100 Ismaile 1 -0110111100 volleyballer 1 -0110111100 Faan 1 -0110111100 then-Archbishop 1 -0110111100 Carlee 1 -0110111100 Mohammar 1 -0110111100 Kaare 1 -0110111100 Jerko 1 -0110111100 Essayist 1 -0110111100 Elastic-eared 1 -0110111100 Palmiro 1 -0110111100 Twelve-year-old 1 -0110111100 hardballer 1 -0110111100 Interrupts 1 -0110111100 Salce 1 -0110111100 Sixty-seven-year-old 1 -0110111100 Stock-analyst 1 -0110111100 Ellana 1 -0110111100 Ichirou 1 -0110111100 Aisaburo 1 -0110111100 Carissa 1 -0110111100 Sayid 1 -0110111100 Vitor 1 -0110111100 Rightfielder 1 -0110111100 Trombonist 1 -0110111100 Publicist 1 -0110111100 Raymund 1 -0110111100 Hard-liner 1 -0110111100 Munna 1 -0110111100 bee-geneticist 1 -0110111100 Bhasker 1 -0110111100 Yasuki 1 -0110111100 then-captain 1 -0110111100 Eppy 1 -0110111100 Charis 1 -0110111100 Yevgeniy 1 -0110111100 Hulki 1 -0110111100 Wole 1 -0110111100 Academics-conscious 1 -0110111100 Brunei-incorporated 1 -0110111100 Georgena 1 -0110111100 Predecessor 1 -0110111100 Twenty-one-year-old 1 -0110111100 Twice-as-old 1 -0110111100 hostage-negotiator 1 -0110111100 refusenik 1 -0110111100 Choreographer 1 -0110111100 Chambolle-Musigny 1 -0110111100 Mezzo 1 -0110111100 Mother-in-law 1 -0110111100 UC-Santa 1 -0110111100 Point-guard 1 -0110111100 Pumper 1 -0110111100 Georganne 1 -0110111100 Sinologist 1 -0110111100 Chancellor-candidate 1 -0110111100 Aldous 1 -0110111100 Cigarette-maker 1 -0110111100 Jutta 1 -0110111100 Oon 1 -0110111100 Raritan-based 1 -0110111100 Farshad 1 -0110111100 Kept 1 -0110111100 Thirty-two-year-old 1 -0110111100 Bayani 1 -0110111100 Tharon 1 -0110111100 Eighteen-month-old 1 -0110111100 soccer-playing 1 -0110111100 Unheralded 1 -0110111100 PATCO. 1 -0110111100 Helder 1 -0110111100 Tulio 1 -0110111100 Horst-Dieter 1 -0110111100 music-promoter 1 -0110111100 Gymboree-founder 1 -0110111100 talent-agent 1 -0110111100 Brandeis-educated 1 -0110111100 Baby-face 1 -0110111100 Kazimiery 1 -0110111100 Cisero 1 -0110111100 Norval 1 -0110111100 salvager 1 -0110111100 Haqiqat 1 -0110111100 McDonnel 1 -0110111100 witin 1 -0110111100 Panelist 1 -0110111100 Levente 1 -0110111100 Rangy 1 -0110111100 Monique 1 -0110111100 Mostafa 1 -0110111100 Linebacker 1 -0110111100 placekicker 1 -0110111100 Nemisio 1 -0110111100 pass-catcher 1 -0110111100 Mazinani 1 -0110111100 Maharishi 1 -0110111100 Bass-baritones 1 -0110111100 choreographer-director 1 -0110111100 Genady 1 -0110111100 Plumber 1 -0110111100 Co-writer 1 -0110111100 Inquisitor 1 -0110111100 PERSUADED 1 -0110111100 Karie 1 -0110111100 Olmeira 1 -0110111100 Joie 1 -0110111100 7-foot-5 1 -0110111100 Cried 1 -0110111100 potato-supplier 1 -0110111100 Leobardo 1 -0110111100 oboeist 1 -0110111100 Nickolas 1 -0110111100 Market-leader 1 -0110111100 then-unbeaten 1 -0110111100 Six-foot-10 1 -0110111100 Burhannudin 1 -0110111100 Co-producer 1 -0110111100 Tarso 1 -0110111100 Ex-Premier 1 -0110111100 Floid 1 -0110111100 Binnett 1 -0110111100 transliterated 1 -0110111100 Then-Chairman 1 -0110111100 Joseph-Marie 1 -0110111100 Hilde 1 -0110111100 Mahomed 1 -0110111100 Razi 1 -0110111100 Jeanelle 1 -0110111100 Environmentalist 1 -0110111100 Ranbir 1 -0110111100 Karima 1 -0110111100 power-hitter 1 -0110111100 Side-armer 1 -0110111100 Blustery 1 -0110111100 condylomata 1 -0110111100 Pilar 1 -0110111100 Jacques-Francois 1 -0110111100 Consumer-advocate 1 -0110111100 Nida 1 -0110111100 Infielders 1 -0110111100 Kilt 1 -0110111100 Naftali 1 -0110111100 Y.C. 1 -0110111100 Sunil 1 -0110111100 Headhunter 1 -0110111100 Second-placer 1 -0110111100 Gundi 1 -0110111100 Bettina 1 -0110111100 Fini 1 -0110111100 fellow-jockey 1 -0110111100 small-timer 1 -0110111100 Goodloe 1 -0110111100 Eighty-year-old 1 -0110111100 Orlin 1 -0110111100 Lauri 1 -0110111100 then-Judge 1 -0110111100 ex-Lord 1 -0110111100 Bluesman 1 -0110111100 Kozuo 1 -0110111100 Taggarty 1 -0110111100 Ex-pro 1 -0110111100 Carine 1 -0110111100 WORDSMITH 1 -0110111100 Then-President 1 -0110111100 Then-spokesman 1 -0110111100 Azriel 1 -0110111100 Zehdi 1 -0110111100 quipster 1 -0110111100 Surinder 1 -0110111100 Bearish-looking 1 -0110111100 out-sweating 1 -0110111100 fourth-seeded 1 -0110111100 Biologist 1 -0110111100 Bioethicist 1 -0110111100 Goree 1 -0110111100 Jacques-Henri 1 -0110111100 Gedalio 1 -0110111100 Quintin 1 -0110111100 Asserted 1 -0110111100 Carel 1 -0110111100 Natie 1 -0110111100 Ex-broker 1 -0110111100 Marathoner 1 -0110111100 Editor-in-chief 1 -0110111100 Dudu 1 -0110111100 Yitzach 1 -0110111100 Ex-president 1 -0110111100 diminutives 1 -0110111100 Nve 1 -0110111100 Firma 1 -0110111100 Taikichiro 1 -0110111100 Uto 1 -0110111100 Kasmi 1 -0110111100 designer-author 1 -0110111100 Setsuo 1 -0110111100 tavern-keeper 1 -0110111100 Sideman 1 -0110111100 Lindenberg 1 -0110111100 Litton/Dalmo 1 -0110111100 Kenggie 1 -0110111100 Y.W. 1 -0110111100 Ustad 1 -0110111100 K.D. 1 -0110111100 Ventured 1 -0110111100 Seijirou 1 -0110111100 T.Boone 1 -0110111100 Outfielder 1 -0110111100 Detra 1 -0110111100 mischief-maker 1 -0110111100 Maurine 1 -0110111100 Yihya 1 -0110111100 al-Karim 1 -0110111100 Medhi 1 -0110111100 Noufou 1 -0110111100 Idrissa 1 -0110111100 Cosmonaut 1 -0110111100 ADVISES 1 -0110111100 coproducer 1 -0110111100 Ophthalmologist 1 -0110111100 Puppeteer 1 -0110111100 Marziyeh 1 -0110111100 Alaedin 1 -0110111100 Nominee 1 -0110111100 Freckled 1 -0110111100 Appraiser 1 -0110111100 Garba 1 -0110111100 Mihail 1 -0110111100 breakdown-prone 1 -0110111100 bueno 1 -0110111100 Seso 1 -0110111100 Burrle 1 -0110111100 Annita 1 -0110111100 politician-preacher 1 -0110111100 Cameraman 1 -0110111100 Sedell 1 -0110111100 Erline 1 -0110111100 second-baseman 1 -0110111100 Left-fielder 1 -0110111100 papaya-seller 1 -0110111100 LIFO. 1 -0110111100 Rancher 1 -0110111100 Effi 1 -0110111100 Merilyn 1 -0110111100 architect-developer 2 -0110111100 Abdulrahman 2 -0110111100 Haile-Mariam 2 -0110111100 Arrie 2 -0110111100 Leche 2 -0110111100 Gae 2 -0110111100 non-candidate 2 -0110111100 Garel 2 -0110111100 Reuven 2 -0110111100 Mikail 2 -0110111100 Leenie 2 -0110111100 Ozires 2 -0110111100 Sculptor 2 -0110111100 Alejo 2 -0110111100 Tricia 2 -0110111100 Yvon 2 -0110111100 Pinklon 2 -0110111100 commuter-driver 2 -0110111100 Zomar 2 -0110111100 Zvi 2 -0110111100 Joelle 2 -0110111100 Meadow-Corona 2 -0110111100 Twenty-eight-year-old 2 -0110111100 BLUE-CHIP 2 -0110111100 Fakhruddin 2 -0110111100 Lodewijk 2 -0110111100 alumna 2 -0110111100 Jordi 2 -0110111100 pinchhitter 2 -0110111100 Yorba 2 -0110111100 Uriel 2 -0110111100 Helio 2 -0110111100 Moo 2 -0110111100 Quips 2 -0110111100 Ryuichi 2 -0110111100 Italo 2 -0110111100 Garya 2 -0110111100 Laurene 2 -0110111100 Abdul-Amir 2 -0110111100 Assemblywoman 2 -0110111100 Eiko 2 -0110111100 Yoshifumi 2 -0110111100 Mireille 2 -0110111100 Hershel 2 -0110111100 Raju 2 -0110111100 Godward 2 -0110111100 Keynoter 2 -0110111100 Co-Chairmen 2 -0110111100 Wynfred 2 -0110111100 Paraphrasing 2 -0110111100 old-campaigner 2 -0110111100 Hans-Werner 2 -0110111100 Marlo 2 -0110111100 Industrialist 2 -0110111100 then-Speaker 2 -0110111100 Nicos 2 -0110111100 Kuben 2 -0110111100 Ten-year-old 2 -0110111100 Punky 2 -0110111100 Isiah 2 -0110111100 Teammate 2 -0110111100 master-spy 2 -0110111100 Gerontologist 2 -0110111100 Yasuko 2 -0110111100 Free-lancer 2 -0110111100 Tomasz 2 -0110111100 Herard 2 -0110111100 Fullback 2 -0110111100 Kajo 2 -0110111100 Bodo 2 -0110111100 portraitist 2 -0110111100 Sese 2 -0110111100 Devi 2 -0110111100 Rafik 2 -0110111100 Fob 2 -0110111100 Ramzi 2 -0110111100 G.N. 2 -0110111100 Venita 2 -0110111100 Tonie 2 -0110111100 Zircon 3 -0110111100 Amerigo 3 -0110111100 Kilton 3 -0110111100 Andries 3 -0110111100 Ambroise 3 -0110111100 Yacov 3 -0110111100 Paata 3 -0110111100 Dibo 3 -0110111100 Sandi 3 -0110111100 Takara 3 -0110111100 presidential-hopeful 3 -0110111100 Afonso 3 -0110111100 Yannis 3 -0110111100 Jaswant 3 -0110111100 Hayne 3 -0110111100 Elem 3 -0110111100 Naji 3 -0110111100 Shigeaki 3 -0110111100 Supervisor 3 -0110111100 Kavin 3 -0110111100 Helmuth 3 -0110111100 Velupillai 3 -0110111100 Astronaut 3 -0110111100 Tahseen 3 -0110111100 Arbitrator 3 -0110111100 Rab 3 -0110111100 Co-pilot 3 -0110111100 Kelli 3 -0110111100 Jacky 3 -0110111100 Haruyuki 3 -0110111100 Krzystof 3 -0110111100 leftfielder 3 -0110111100 J.Y. 3 -0110111100 Gulbeddin 3 -0110111100 Edita 3 -0110111100 Janez 3 -0110111100 Kazuya 3 -0110111100 third-baseman 3 -0110111100 Congressman-elect 3 -0110111100 Tamsanqa 3 -0110111100 Erno 3 -0110111100 Urs 3 -0110111100 R.N. 3 -0110111100 Luu 3 -0110111100 Yassir 4 -0110111100 Georgy 4 -0110111100 Sami 4 -0110111100 Nikos 4 -0110111100 Jascha 4 -0110111100 Manei 4 -0110111100 Cinematographer 4 -0110111100 T.L. 4 -0110111100 Tiang 4 -0110111100 Astrophysicist 4 -0110111100 Egor 4 -0110111100 C.I. 4 -0110111100 Claudette 4 -0110111100 Jimmie 4 -0110111100 Kalart 4 -0110111100 Arlo 4 -0110111100 Dara 4 -0110111100 Arif 4 -0110111100 Etta 4 -0110111100 Essam 4 -0110111100 Jinho 4 -0110111100 Baritone 4 -0110111100 Syed 5 -0110111100 Porfirio 5 -0110111100 State-designate 5 -0110111100 Aristides 5 -0110111100 Nabih 5 -0110111100 Monsignor 5 -0110111100 Amjad 5 -0110111100 Mitsuo 5 -0110111100 Tenor 5 -0110111100 Younis 5 -0110111100 Tokuo 5 -0110111100 Pollster 5 -0110111100 S.K. 5 -0110111100 Everette 5 -0110111100 Yigor 5 -0110111100 Grandmaster 5 -0110111100 Auctioneer 5 -0110111100 Willa 6 -0110111100 Hojatolislam 6 -0110111100 Sociologist 6 -0110111100 Aviem 6 -0110111100 DEFEATED 6 -0110111100 Playwright 6 -0110111100 Debi 6 -0110111100 Kwame 6 -0110111100 Sirjang 6 -0110111100 Jacobo 6 -0110111100 Jean-Maxime 7 -0110111100 Congresswoman 7 -0110111100 Reynaldo 7 -0110111100 Friedhelm 7 -0110111100 Coretta 7 -0110111100 Violeta 7 -0110111100 Critic 7 -0110111100 Novelist 7 -0110111100 then-Chairman 7 -0110111100 Alessandra 7 -0110111100 Hiroaki 8 -0110111100 Paulette 8 -0110111100 Soprano 8 -0110111100 Alderman 8 -0110111100 producer-director 8 -0110111100 Fr. 9 -0110111100 Shigeo 9 -0110111100 Screenwriter 9 -0110111100 Walid 9 -0110111100 Columnist 9 -0110111100 Jimi 10 -0110111100 Raquel 10 -0110111100 Gennadi 10 -0110111100 Monsieur 10 -0110111100 Journalist 10 -0110111100 L.D. 10 -0110111100 Historian 10 -0110111100 Cpl. 10 -0110111100 O.M. 11 -0110111100 Roone 11 -0110111100 Sheikh 11 -0110111100 Varick 11 -0110111100 Tunku 11 -0110111100 Marta 11 -0110111100 Ortwin 11 -0110111100 Hans-Jochen 11 -0110111100 Karlheinz 12 -0110111100 Framed 12 -0110111100 Manuela 12 -0110111100 Takako 12 -0110111100 Conductor 12 -0110111100 Arbitrager 12 -0110111100 Lampf 13 -0110111100 Reinaldo 13 -0110111100 Comrade 13 -0110111100 Abbe 13 -0110111100 G.W. 13 -0110111100 Merce 13 -0110111100 Marlon 13 -0110111100 Christa 14 -0110111100 Comedian 14 -0110111100 Ichiro 15 -0110111100 Mehdi 16 -0110111100 Milos 16 -0110111100 Rabbi 18 -0110111100 Meryl 18 -0110111100 Alastair 19 -0110111100 Developer 21 -0110111100 Barbra 21 -0110111100 Assemblyman 23 -0110111100 Benazir 23 -0110111100 Yegor 24 -0110111100 Prosecutor 26 -0110111100 Financier 30 -0110111100 C.A. 30 -0110111100 Detective 31 -0110111100 Magistrate 31 -0110111100 Sister 34 -0110111100 I.M. 34 -0110111100 Manucher 34 -0110111100 Sein 35 -0110111100 Rauscher 37 -0110111100 J.E. 39 -0110111100 Fernao 41 -0110111100 Cuauhtemoc 41 -0110111100 S.B. 45 -0110111100 R.G. 46 -0110111100 Vittorio 48 -0110111100 A.W. 53 -0110111100 Yasser 60 -0110111100 Lech 62 -0110111100 Adolfo 71 -0110111100 President-elect 77 -0110111100 Congressman 91 -0110111100 Sgt. 132 -0110111100 Sheik 133 -0110111100 Merv 133 -0110111100 Justices 151 -0110111100 Tae 154 -0110111100 Capt. 193 -0110111100 Marlin 232 -0110111100 Rupert 390 -0110111100 Mayor 531 -0110111100 Senator 606 -0110111100 Mikhail 725 -0110111100 Adm. 744 -0110111100 Prof. 992 -0110111100 Miss 1032 -0110111100 Sir 1541 -0110111100 Gov. 2048 -0110111100 Gen. 2319 -0110111100 Judge 5570 -0110111100 Sen. 6737 -0110111100 Rep. 5602 -01101111010 Selwa 1 -01101111010 roustabout 1 -01101111010 right-fielder 1 -01101111010 Multipurpose 1 -01101111010 ex-Senator 1 -01101111010 Pre-breathe 1 -01101111010 Staughton 1 -01101111010 Jean-Bertrand 1 -01101111010 director-actor 1 -01101111010 Centrais 1 -01101111010 Kjeld 1 -01101111010 COMMISSIONER 1 -01101111010 Optik 1 -01101111010 Undersecretary-General 1 -01101111010 Seppo 1 -01101111010 neurophysiologist 1 -01101111010 super-motivator 1 -01101111010 saki 1 -01101111010 Hughes-McDonnell 1 -01101111010 Declan 1 -01101111010 Feed/Weed 1 -01101111010 son-successor 1 -01101111010 Kasa 1 -01101111010 five-disk 1 -01101111010 Inc.-San 1 -01101111010 even-older 1 -01101111010 hard-to-please 1 -01101111010 Partillo 1 -01101111010 Assessor 1 -01101111010 Director-designate 1 -01101111010 promotor 1 -01101111010 Textile-Asher 1 -01101111010 pianist-composer-leader 1 -01101111010 Chairperson 1 -01101111010 Eilif 1 -01101111010 Haircutting 1 -01101111010 Assails 1 -01101111010 Metalurgica 1 -01101111010 actress/singer 1 -01101111010 composer/trombonist 1 -01101111010 Steely 1 -01101111010 neurobiologist 1 -01101111010 Band-mate 1 -01101111010 Remembers 1 -01101111010 Joun 1 -01101111010 P.N. 1 -01101111010 Governer 1 -01101111010 Ombudsman 1 -01101111010 movie-director 1 -01101111010 then-congressman 1 -01101111010 Lyncher 1 -01101111010 lobbyist/critic 1 -01101111010 Director-Energy 1 -01101111010 Abiel 1 -01101111010 Ringmaster 1 -01101111010 Suzette 1 -01101111010 Secetary 1 -01101111010 religious-broadcaster 1 -01101111010 reporter/editor 1 -01101111010 drug-user 1 -01101111010 man-on-the-moon 1 -01101111010 Quelle 1 -01101111010 Treasurer-General 1 -01101111010 hit-maker 1 -01101111010 giorno 1 -01101111010 INTO 1 -01101111010 Councilmen 1 -01101111010 ADMIT 1 -01101111010 SECRETARY 1 -01101111010 Ugine 1 -01101111010 Josephus 1 -01101111010 ex-mercenary 1 -01101111010 Fuerzas 1 -01101111010 plaster-grinned 1 -01101111010 Sigismundus 1 -01101111010 Domanatrix 1 -01101111010 Ppresident 1 -01101111010 Var 1 -01101111010 Hidetoshi 1 -01101111010 Pizzaria 1 -01101111010 Presdent 1 -01101111010 superagent 1 -01101111010 A.V. 2 -01101111010 Authority-Garden 2 -01101111010 co-plaintiff 2 -01101111010 BANKER 2 -01101111010 Priestess 2 -01101111010 Commisioner 2 -01101111010 Boelkow 2 -01101111010 Fenech 2 -01101111010 Rosamund 2 -01101111010 ex-analyst 2 -01101111010 Envoy 2 -01101111010 Thrift-Rescue 2 -01101111010 INRA 2 -01101111010 counter-tenor 2 -01101111010 Salutes 2 -01101111010 Defections 2 -01101111010 Co-founder 2 -01101111010 then-counselor 2 -01101111010 SENATOR 2 -01101111010 Vessel 2 -01101111010 Speaker-designate 2 -01101111010 Snaps 3 -01101111010 Welcomes 3 -01101111010 Chairman-designate 3 -01101111010 Nhan 3 -01101111010 president-designate 3 -01101111010 Co-chairman 3 -01101111010 Lobbyist 3 -01101111010 Rowdy 3 -01101111010 Counselor 3 -01101111010 Secretary-Treasurer 3 -01101111010 Dermatologist 3 -01101111010 Selectman 3 -01101111010 Tricky 4 -01101111010 Recruiter 4 -01101111010 Risk-Pools 4 -01101111010 Presence 4 -01101111010 Councilwoman 4 -01101111010 Coordinator 4 -01101111010 Businessman 4 -01101111010 Speaker-elect 4 -01101111010 Encouragement 4 -01101111010 Clears 4 -01101111010 K.G. 4 -01101111010 Revoir 5 -01101111010 Provost 5 -01101111010 Estado 5 -01101111010 Architect 5 -01101111010 Controller 6 -01101111010 Auditor 6 -01101111010 Collector 6 -01101111010 Musician 6 -01101111010 Secretary-designate 6 -01101111010 Co-Chairman 6 -01101111010 mezzo-soprano 7 -01101111010 then-Chief 9 -01101111010 Angotti 10 -01101111010 Spokesman 13 -01101111010 Chairmen 14 -01101111010 Chairwoman 15 -01101111010 Dalmo 15 -01101111010 Owner 17 -01101111010 Consultant 24 -01101111010 Cmdr. 27 -01101111010 Superintendent 28 -01101111010 Councilman 31 -01101111010 Bertrand 36 -01101111010 Secretary-General 51 -01101111010 Publisher 53 -01101111010 Analyst 59 -01101111010 Notice 59 -01101111010 Abby 61 -01101111010 Editor 75 -01101111010 Treasurer 75 -01101111010 Whip 83 -01101111010 Administrator 104 -01101111010 Brother 122 -01101111010 Undersecretary 143 -01101111010 Professor 149 -01101111010 Officer 206 -01101111010 Ambassador 236 -01101111010 Representative 259 -01101111010 Adviser 265 -01101111010 Prince 356 -01101111010 Governor 417 -01101111010 Chancellor 499 -01101111010 Commissioner 549 -01101111010 Leader 553 -01101111010 Director 644 -01101111010 Speaker 752 -01101111010 Chief 1144 -01101111010 Chairman 5115 -01101111010 Secretary 3689 -01101111011 Rizzaria 1 -01101111011 Aleli 1 -01101111011 19,083,475 1 -01101111011 ex-haberdasher 1 -01101111011 638,900 1 -01101111011 Hinders 1 -01101111011 Q.G. 1 -01101111011 Dhirubhai 1 -01101111011 Trespassers 1 -01101111011 vigorous-looking 1 -01101111011 composer/saxophonist 1 -01101111011 Khaleda 1 -01101111011 7-foot-1 1 -01101111011 Beshir 1 -01101111011 Zehava 1 -01101111011 Pinar 1 -01101111011 then-Bishop 1 -01101111011 1,068,750 1 -01101111011 Jassim 1 -01101111011 Canon-distributed 1 -01101111011 kayoing 1 -01101111011 host/artist/composer 1 -01101111011 then-freshman 1 -01101111011 super-sleuth 1 -01101111011 left-fielder 1 -01101111011 Kellie 1 -01101111011 Corp.-McDonnell 1 -01101111011 Generoso 1 -01101111011 defection-wracked 1 -01101111011 Celesto 1 -01101111011 second-seeded 1 -01101111011 Dharmo 1 -01101111011 abitrager 1 -01101111011 19,550,000 1 -01101111011 Hungarian-American 1 -01101111011 Kobus 1 -01101111011 Hoagy 1 -01101111011 cleavage-baring 1 -01101111011 Jhoon 1 -01101111011 Anouk 1 -01101111011 Premier-designate 1 -01101111011 pre-spinoff 1 -01101111011 Clamma 1 -01101111011 wonder-worker 1 -01101111011 reelect 1 -01101111011 GMHE. 1 -01101111011 Inocencio 1 -01101111011 Guilio 1 -01101111011 unfettering 1 -01101111011 flame-haired 1 -01101111011 conductor-pianist 1 -01101111011 Stain 1 -01101111011 Kabbalah 1 -01101111011 Pinacoteca 1 -01101111011 1981-through-1983 1 -01101111011 Naviera 1 -01101111011 Hyder 1 -01101111011 ex-teammate 1 -01101111011 Canada-owned 1 -01101111011 slow-witted 1 -01101111011 Mnister 1 -01101111011 Ambrogio 1 -01101111011 Hissein 1 -01101111011 Victorino 1 -01101111011 38,880 1 -01101111011 Ozilio 1 -01101111011 Evadna 1 -01101111011 disasterprone 1 -01101111011 then-chancellor 1 -01101111011 one-day-old 1 -01101111011 Jehan 1 -01101111011 Voleene 1 -01101111011 Tevin 1 -01101111011 Carleen 1 -01101111011 Mauno 1 -01101111011 Pappa 1 -01101111011 pogo-stick-legged 1 -01101111011 frequenter 1 -01101111011 Verlagsgruppe 1 -01101111011 Hornos 1 -01101111011 Citicorp-owned 1 -01101111011 Ieremia 1 -01101111011 arch-statist 1 -01101111011 Angelyne 1 -01101111011 basketballer 1 -01101111011 whiteknight 1 -01101111011 John-Claude 1 -01101111011 Il-Soon 1 -01101111011 Hojatalislam 1 -01101111011 shrewy 1 -01101111011 Best/Worst 1 -01101111011 overhacked 1 -01101111011 Discover-toting 1 -01101111011 Hafizullah 1 -01101111011 medal-threat 1 -01101111011 third-placer 1 -01101111011 Maroone 1 -01101111011 Abdul-Rahim 1 -01101111011 rocket-maker 1 -01101111011 Hurrican 1 -01101111011 detente-minded 1 -01101111011 Yoweri 1 -01101111011 Affonso 1 -01101111011 rightfielder 1 -01101111011 Mezh 1 -01101111011 Mezhdunarodniya 1 -01101111011 Fusako 1 -01101111011 32,250 1 -01101111011 post-toddler 1 -01101111011 pinch-hitter 1 -01101111011 1,166,650 1 -01101111011 20th-place 1 -01101111011 columnist-for-hire 1 -01101111011 second-year-man 1 -01101111011 Erroll 1 -01101111011 President-in-Hiding 1 -01101111011 192,941 1 -01101111011 Risher 1 -01101111011 poverty-pressed 1 -01101111011 115th-ranked 1 -01101111011 91st-ranked 1 -01101111011 Perveen 1 -01101111011 point-guard 1 -01101111011 off-court-affable 1 -01101111011 bookstore-owner 1 -01101111011 activist-nutritionist 1 -01101111011 CAP. 1 -01101111011 Stohlman 1 -01101111011 Guiseppe 1 -01101111011 then-billionaire 1 -01101111011 pro-Turkey 1 -01101111011 Rustum 1 -01101111011 SOM. 1 -01101111011 similar-priced 1 -01101111011 Acqua 1 -01101111011 automobile-dealer 1 -01101111011 out-Jackson 1 -01101111011 punch-happy 1 -01101111011 Catulle 1 -01101111011 26,900 1 -01101111011 leftie 1 -01101111011 Gimenez/Rossini 1 -01101111011 Meteor 1 -01101111011 Leopoldine 1 -01101111011 7,459 1 -01101111011 Alain-Dominique 1 -01101111011 supply-side-conscious 1 -01101111011 Raghib 1 -01101111011 Tahir 1 -01101111011 birdman 1 -01101111011 Napolean 1 -01101111011 Plutarco 1 -01101111011 Ruhani 1 -01101111011 card-shop 1 -01101111011 Michel-Etienne 1 -01101111011 Mette-Ida 1 -01101111011 Minisa 1 -01101111011 Philadephia-based 1 -01101111011 982,200 1 -01101111011 ANM. 1 -01101111011 WOW. 2 -01101111011 Georgie 2 -01101111011 Goats 2 -01101111011 Baltasar 2 -01101111011 Beheshte 2 -01101111011 CH. 2 -01101111011 Glengarry 2 -01101111011 Dian 2 -01101111011 Pawel 2 -01101111011 Mowbray 2 -01101111011 PROTESTER 2 -01101111011 Keikichi 2 -01101111011 Ifincorp 2 -01101111011 Viyacheslav 2 -01101111011 ARC. 2 -01101111011 Acerias 2 -01101111011 Berl 2 -01101111011 Battlement 2 -01101111011 Amalia 2 -01101111011 Tante 2 -01101111011 president-in-hiding 2 -01101111011 textile-maker 2 -01101111011 Josiah 2 -01101111011 Vonn 2 -01101111011 Viscount 2 -01101111011 President-for-life 2 -01101111011 Hapag 2 -01101111011 Nasir 2 -01101111011 Tingo 2 -01101111011 Kaamel 2 -01101111011 Broz 2 -01101111011 RealCorp 2 -01101111011 Nasib 2 -01101111011 Eustace 2 -01101111011 Great-Uncle 2 -01101111011 Saturnino 2 -01101111011 Amon 2 -01101111011 S.F. 2 -01101111011 Shigeyuki 2 -01101111011 Sahabzada 2 -01101111011 Ary 2 -01101111011 Dooney 2 -01101111011 Belisario 3 -01101111011 I/N 3 -01101111011 Sopranos 3 -01101111011 California-Santa 3 -01101111011 GEC. 3 -01101111011 then-Chancellor 3 -01101111011 Mamie 3 -01101111011 Vo 3 -01101111011 McFeely 3 -01101111011 Physicist 3 -01101111011 Julienne 3 -01101111011 Hafiz 3 -01101111011 Comte 3 -01101111011 Gotz 3 -01101111011 Ladislao 3 -01101111011 Jihan 3 -01101111011 Pantron 3 -01101111011 Rena 3 -01101111011 Maybelle 3 -01101111011 Comando 3 -01101111011 Leonidas 3 -01101111011 Soloman 3 -01101111011 Farmitalia 3 -01101111011 Totta 4 -01101111011 Verna 4 -01101111011 Wilfredo 4 -01101111011 Hojatoleslam 4 -01101111011 Gustavus 4 -01101111011 Juliana 4 -01101111011 Babrak 4 -01101111011 Chine 4 -01101111011 Irfan 4 -01101111011 Frantisek 4 -01101111011 Aleksei 4 -01101111011 ex-President 4 -01101111011 Lucian 4 -01101111011 Raggedy 4 -01101111011 Accountant 4 -01101111011 Yo-Yo 4 -01101111011 Brooklynite 4 -01101111011 Cris 4 -01101111011 Bashir 5 -01101111011 Typhoid 5 -01101111011 Elbridge 5 -01101111011 Councilor 5 -01101111011 Hilda 5 -01101111011 Piggly 5 -01101111011 Alhaji 5 -01101111011 Felicia 5 -01101111011 NTN 5 -01101111011 Mallard 6 -01101111011 Rudyard 6 -01101111011 Golda 6 -01101111011 Saburo 6 -01101111011 Vivien 6 -01101111011 C.L. 7 -01101111011 ACA 7 -01101111011 Gian 7 -01101111011 Frieda 7 -01101111011 Arnulfo 7 -01101111011 Jessye 7 -01101111011 J.A.C. 7 -01101111011 Ghulam 7 -01101111011 Rosalynn 7 -01101111011 Coosa 7 -01101111011 Vinicio 7 -01101111011 Umm 7 -01101111011 Pham 7 -01101111011 Francesca 7 -01101111011 M.H. 8 -01101111011 Kenan 8 -01101111011 Marukin 8 -01101111011 Mehmet 8 -01101111011 Avions 9 -01101111011 Syngman 9 -01101111011 Buckskin 9 -01101111011 Marvelous 9 -01101111011 Kiri 9 -01101111011 Empress 9 -01101111011 Sor 10 -01101111011 Anibal 10 -01101111011 Branko 10 -01101111011 Arnoldo 10 -01101111011 Zulfikar 10 -01101111011 Gamal 10 -01101111011 Generalissimo 10 -01101111011 Beefsteak 11 -01101111011 Agatha 11 -01101111011 then-President 12 -01101111011 Mana 12 -01101111011 Ijaz 12 -01101111011 Nicolae 13 -01101111011 Junius 13 -01101111011 Moby 13 -01101111011 Aretha 13 -01101111011 Minneapolis-St. 13 -01101111011 Comandante 14 -01101111011 Typhoon 14 -01101111011 F.H. 15 -01101111011 Stew 15 -01101111011 Aldo 16 -01101111011 Teapot 16 -01101111011 Claudio 16 -01101111011 Issam 16 -01101111011 Alexei 16 -01101111011 Giulio 16 -01101111011 Virgilio 18 -01101111011 Zsa 18 -01101111011 Velda 19 -01101111011 Wee 20 -01101111011 Sigmund 20 -01101111011 Humpty 21 -01101111011 Gustav 22 -01101111011 Amin 22 -01101111011 Aston 23 -01101111011 Hodding 23 -01101111011 Actor 23 -01101111011 Benigno 24 -01101111011 Hafez 24 -01101111011 G.I. 26 -01101111011 Dom 28 -01101111011 Babe 31 -01101111011 Hosni 32 -01101111011 Ente 35 -01101111011 Muhammad 35 -01101111011 R.R. 37 -01101111011 Desmond 37 -01101111011 Anastasio 40 -01101111011 Aunt 42 -01101111011 Anwar 42 -01101111011 Helene 42 -01101111011 Valery 44 -01101111011 Ponce 51 -01101111011 Marshal 51 -01101111011 Jean-Claude 55 -01101111011 Remy 56 -01101111011 Aca 56 -01101111011 Madame 57 -01101111011 Jonas 57 -01101111011 Leonid 68 -01101111011 Luiz 80 -01101111011 G.D. 81 -01101111011 Yves 95 -01101111011 Corazon 111 -01101111011 Dwight 113 -01101111011 Archbishop 115 -01101111011 Napoleon 129 -01101111011 R.H. 129 -01101111011 Presidents 130 -01101111011 Hurricane 139 -01101111011 Raul 146 -01101111011 C.J. 159 -01101111011 Billy 167 -01101111011 Oscar 229 -01101111011 Uncle 232 -01101111011 Staff 539 -01101111011 Jimmy 581 -01101111011 McDonnell 1266 -01101111011 President 11921 -01101111011 Ronald 2133 -0110111110 Iegor 1 -0110111110 Loel 1 -0110111110 TEARS 1 -0110111110 RELOCATE 1 -0110111110 Aine 1 -0110111110 Masood 1 -0110111110 Audra 1 -0110111110 D.E.P. 1 -0110111110 Hazem 1 -0110111110 Norie 1 -0110111110 Katsushi 1 -0110111110 Lyor 1 -0110111110 Kermath 1 -0110111110 Negociaos 1 -0110111110 Renslow 1 -0110111110 Krister 1 -0110111110 Fayville 1 -0110111110 Kichirou 1 -0110111110 Adley 1 -0110111110 Kristena 1 -0110111110 Wyn 1 -0110111110 Noreta 1 -0110111110 Tokutaro 1 -0110111110 Fakhry 1 -0110111110 Abulsamad 1 -0110111110 Janharn 1 -0110111110 Candido 1 -0110111110 Sarason 1 -0110111110 A.T.& 1 -0110111110 Lenis 1 -0110111110 Masamichi 1 -0110111110 Duward 1 -0110111110 Hossur 1 -0110111110 Harjap 1 -0110111110 JeanYves 1 -0110111110 Mahadi 1 -0110111110 Takahiko 1 -0110111110 Barbet 1 -0110111110 Adentokunbo 1 -0110111110 Inoke 1 -0110111110 Isseyas 1 -0110111110 Vonda 1 -0110111110 Daan 1 -0110111110 Mujibur 1 -0110111110 Margretta 1 -0110111110 Kaneyoshi 1 -0110111110 Bernon 1 -0110111110 Hermann-Otto 1 -0110111110 Yevgenii 1 -0110111110 Frithjof 1 -0110111110 Shahla 1 -0110111110 Bronislawa 1 -0110111110 Daris 1 -0110111110 Rosette 1 -0110111110 Wyllis 1 -0110111110 Pricilla 1 -0110111110 Taufik 1 -0110111110 Slamet 1 -0110111110 Angelis 1 -0110111110 Maitama 1 -0110111110 Jusuf 1 -0110111110 Sakichiro 1 -0110111110 Kishimitsu 1 -0110111110 R.B.L. 1 -0110111110 Sakari 1 -0110111110 LouAnn 1 -0110111110 Belen 1 -0110111110 Nageh 1 -0110111110 Peter-Cyrus 1 -0110111110 Kerrie 1 -0110111110 Goran 1 -0110111110 Tarek 1 -0110111110 Nabuo 1 -0110111110 yellowy-eyed 1 -0110111110 Octave 1 -0110111110 Lydell 1 -0110111110 Tsuneharu 1 -0110111110 Briant 1 -0110111110 Kyosaku 1 -0110111110 Wojiech 1 -0110111110 B.J.G. 1 -0110111110 Keena 1 -0110111110 Noriyoshi 1 -0110111110 Conall 1 -0110111110 Ruti 1 -0110111110 Hedric 1 -0110111110 Satindar 1 -0110111110 Randolf 1 -0110111110 Jurrit 1 -0110111110 Fenella 1 -0110111110 J.K.M. 1 -0110111110 Bink 1 -0110111110 Karl-Werner 1 -0110111110 Galvao 1 -0110111110 Taib 1 -0110111110 Bokkie 1 -0110111110 Yoshiya 1 -0110111110 Philmore 1 -0110111110 Geir 1 -0110111110 underwiter 1 -0110111110 Hideharu 1 -0110111110 Nancie 1 -0110111110 Pran 1 -0110111110 Otakar 1 -0110111110 Nagishima 1 -0110111110 Kondobo 1 -0110111110 Tsun-yan 1 -0110111110 Kazumoto 1 -0110111110 Valerij 1 -0110111110 Rinse 1 -0110111110 Manubhai 1 -0110111110 Mitsugu 1 -0110111110 Naoya 1 -0110111110 Royden 1 -0110111110 Messerschmitt-Boeklow-Blohm 1 -0110111110 LIVESTOCKS 1 -0110111110 Mineo 1 -0110111110 Anussorn 1 -0110111110 Yohio 1 -0110111110 Sonjit 1 -0110111110 Prathap 1 -0110111110 Kroghie 1 -0110111110 20,277 1 -0110111110 18,988 1 -0110111110 Endre 1 -0110111110 Augie 1 -0110111110 Ilana 1 -0110111110 Pavlos 1 -0110111110 Judie 1 -0110111110 Dzemal 1 -0110111110 Ilpo 1 -0110111110 Gar 1 -0110111110 Fadi 1 -0110111110 Gualtiero 1 -0110111110 Particio 1 -0110111110 Teruyoshi 1 -0110111110 Darry 1 -0110111110 DeAnn 1 -0110111110 Sharaf 1 -0110111110 Haekke 1 -0110111110 Elhanan 1 -0110111110 Gikas 1 -0110111110 Kimihisa 1 -0110111110 Wulfrano 1 -0110111110 Inez 1 -0110111110 Nazir 1 -0110111110 Ikuhiko 1 -0110111110 Wladimir 1 -0110111110 Miraed 1 -0110111110 Zivko 1 -0110111110 Utz 1 -0110111110 Clementio 1 -0110111110 Desiderio 1 -0110111110 Alyssa 1 -0110111110 Valter 1 -0110111110 Kasumasa 1 -0110111110 Crispina 1 -0110111110 Hideyuki 1 -0110111110 Masanaga 1 -0110111110 Kenichiro 1 -0110111110 Yukinori 1 -0110111110 Haruyasu 1 -0110111110 Kyhl 1 -0110111110 Hamed 1 -0110111110 Nila 1 -0110111110 Isoroku 1 -0110111110 Kinue 1 -0110111110 Glynne 1 -0110111110 Yoshinara 1 -0110111110 Earladeen 1 -0110111110 Fernard 1 -0110111110 Gay-Leclerc 1 -0110111110 Teuvo 1 -0110111110 Sibendra 1 -0110111110 Ilanna 1 -0110111110 Issei 1 -0110111110 Takaaki 1 -0110111110 ni 1 -0110111110 Kunisa 1 -0110111110 Zenta 1 -0110111110 Keizou 1 -0110111110 Harlington 1 -0110111110 Kamiran 1 -0110111110 Mecit 1 -0110111110 Leninskive 1 -0110111110 Deryk 1 -0110111110 Pallie 1 -0110111110 Marlaine 1 -0110111110 Eilene 1 -0110111110 Yehezkel 1 -0110111110 Attillo 1 -0110111110 Jabu 1 -0110111110 Rhesa 1 -0110111110 Sidy 1 -0110111110 Villas-Boas 1 -0110111110 Dorab 1 -0110111110 Alon 1 -0110111110 Pluria 1 -0110111110 Heriberto 1 -0110111110 Dittmar 1 -0110111110 Cicciolino 1 -0110111110 Yahya 1 -0110111110 Crescencio 1 -0110111110 Uemon 1 -0110111110 Marilynn 1 -0110111110 DASSAULT 1 -0110111110 Kohtaro 1 -0110111110 Yukoh 1 -0110111110 Kosti 1 -0110111110 Ruedi 1 -0110111110 Vadaketh 1 -0110111110 Machelle 1 -0110111110 Seagal 1 -0110111110 Manas 1 -0110111110 Marie-Helene 1 -0110111110 Evandro 1 -0110111110 Jun-ichi 1 -0110111110 Cheskel 1 -0110111110 Cathi 1 -0110111110 copresident 1 -0110111110 Nawaf 1 -0110111110 Roelf 1 -0110111110 M.L.T. 1 -0110111110 Teisuke 1 -0110111110 Reezin 1 -0110111110 Kasuichi 1 -0110111110 Ikuei 1 -0110111110 Shigeju 1 -0110111110 Rei 1 -0110111110 Rasul 1 -0110111110 Hitomi 1 -0110111110 Kendra 1 -0110111110 Almarin 1 -0110111110 Masateru 1 -0110111110 Bonifacio 1 -0110111110 Gewela 1 -0110111110 Filemon 1 -0110111110 Davia 1 -0110111110 Beppe 1 -0110111110 Kamil 1 -0110111110 Arlinda 1 -0110111110 Bloxham 1 -0110111110 Olev 1 -0110111110 Josefa 1 -0110111110 Roubina 1 -0110111110 D.N. 1 -0110111110 Wondie 1 -0110111110 Wilmad 1 -0110111110 Frencesco 1 -0110111110 Edmon 1 -0110111110 Ysuhiko 1 -0110111110 Christof 1 -0110111110 Iswar 1 -0110111110 Ioan 1 -0110111110 Royston 1 -0110111110 Lesse 1 -0110111110 Wonmo 1 -0110111110 Darold 1 -0110111110 Hristos 1 -0110111110 Dorwin 1 -0110111110 Mouloud 1 -0110111110 Abdul-Rahman 1 -0110111110 Jame 1 -0110111110 Mackarness 1 -0110111110 Libbie 1 -0110111110 Gentaro 1 -0110111110 Krish 1 -0110111110 Moriyuki 1 -0110111110 Zetwese 1 -0110111110 Pip 1 -0110111110 Kinji 1 -0110111110 Yoshide 1 -0110111110 Marqua 1 -0110111110 Ruther 1 -0110111110 Dragutin 1 -0110111110 Zdrvko 1 -0110111110 Milorad 1 -0110111110 Radmila 1 -0110111110 Darko 1 -0110111110 Chinese-built 1 -0110111110 Laurine 1 -0110111110 Khushwant 1 -0110111110 Romesh 1 -0110111110 Nannerl 1 -0110111110 Pernendu 1 -0110111110 Phyliss 1 -0110111110 Ido 1 -0110111110 Dominico 1 -0110111110 Kyeisha 1 -0110111110 Roblee 1 -0110111110 Pullio 1 -0110111110 U.J. 1 -0110111110 Wladziu 1 -0110111110 Kweisi 1 -0110111110 Masabumi 1 -0110111110 Wayde 1 -0110111110 Necmeddin 1 -0110111110 Ruta 1 -0110111110 Shanna 1 -0110111110 Boustead 1 -0110111110 Michihisa 1 -0110111110 Leonardus 1 -0110111110 Katarzyna 1 -0110111110 tenorman 1 -0110111110 Adriane 1 -0110111110 Camron 1 -0110111110 Torkel 1 -0110111110 Kelle 1 -0110111110 Karunkara 1 -0110111110 Homobono 1 -0110111110 Meta 1 -0110111110 Nuala 1 -0110111110 Sutezo 1 -0110111110 Relle 1 -0110111110 Hillsman 1 -0110111110 Jyll 1 -0110111110 Elwynn 1 -0110111110 Gunhild 1 -0110111110 Melisa 1 -0110111110 Nirmal 1 -0110111110 Arleyne 1 -0110111110 Wolodymyr 1 -0110111110 Abrao 1 -0110111110 Oshel 1 -0110111110 Kiyohiko 1 -0110111110 Marjo 1 -0110111110 Kendal 1 -0110111110 Miodrag 1 -0110111110 Aleksandar 1 -0110111110 Vico 1 -0110111110 Tenri 1 -0110111110 Gerrold 1 -0110111110 Otes 1 -0110111110 Yash 1 -0110111110 Mow 1 -0110111110 Hans-Christian 1 -0110111110 Hidefumi 1 -0110111110 Shijuro 1 -0110111110 Annelies 1 -0110111110 Gerd-Ulf 1 -0110111110 Koro 1 -0110111110 Masayaki 1 -0110111110 Kiyotsugu 1 -0110111110 Surgit 1 -0110111110 Juris 1 -0110111110 Kaley 1 -0110111110 Tomumatsu 1 -0110111110 Karren 1 -0110111110 Kazuhide 1 -0110111110 Fauchier-Magnan/Durant 1 -0110111110 Becki 1 -0110111110 Velinda 1 -0110111110 Milli 1 -0110111110 Colston 1 -0110111110 Masayasu 1 -0110111110 Tatsunari 1 -0110111110 Luanne 1 -0110111110 Wiltrud 1 -0110111110 Tiffani 1 -0110111110 Motoo 1 -0110111110 Naoyuki 1 -0110111110 Annice 1 -0110111110 Blondell 1 -0110111110 Keanu 1 -0110111110 Eckehardt 1 -0110111110 Shreekant 1 -0110111110 Eugeniusz 1 -0110111110 Theorie 1 -0110111110 Keigo 1 -0110111110 Serphin 1 -0110111110 J.H.K. 1 -0110111110 Attiba 1 -0110111110 Kofi 1 -0110111110 Leellen 1 -0110111110 Arlond 1 -0110111110 Khurshid 1 -0110111110 Nasos 1 -0110111110 Gautam 1 -0110111110 Odoardo 1 -0110111110 Benehakaka 1 -0110111110 Mililani 1 -0110111110 Ilei 1 -0110111110 Alin 1 -0110111110 Darl 1 -0110111110 Godofredo 1 -0110111110 Leocadia 1 -0110111110 Timoteo 1 -0110111110 Jamin 1 -0110111110 Dominga 1 -0110111110 F.W.A. 1 -0110111110 Novine 1 -0110111110 Taketsuyo 1 -0110111110 Yupo 1 -0110111110 Grzegorz 1 -0110111110 Hisatoshi 1 -0110111110 Lumpy 1 -0110111110 Kaushik 1 -0110111110 Hatoko 1 -0110111110 Yujiro 1 -0110111110 Sin-Tax 1 -0110111110 Enriqueta 1 -0110111110 Zea 1 -0110111110 Junya 1 -0110111110 Naoichi 1 -0110111110 Ithiel 1 -0110111110 Masako 1 -0110111110 Tsugioki 1 -0110111110 Shunichiro 1 -0110111110 Heino 1 -0110111110 V.G. 1 -0110111110 Anastase 1 -0110111110 Cloyd 1 -0110111110 Diljit 1 -0110111110 Vasilike 1 -0110111110 Kathyrn 1 -0110111110 Masahisa 1 -0110111110 Mindell 1 -0110111110 Stanislawa 1 -0110111110 Despard 1 -0110111110 Severyn 1 -0110111110 Vilmar 1 -0110111110 Daisuke 1 -0110111110 Valerian 1 -0110111110 Tsuguro 1 -0110111110 Yoshitake 1 -0110111110 Aleda 1 -0110111110 Onute 1 -0110111110 KarlHeinz 1 -0110111110 Svend 1 -0110111110 Anelia 1 -0110111110 Marice 1 -0110111110 TURKEYS 1 -0110111110 Yasunobu 1 -0110111110 Shotaro 1 -0110111110 Risto 1 -0110111110 Bjoernar 1 -0110111110 Joern 1 -0110111110 Yosho 1 -0110111110 ElsaGrace 1 -0110111110 Taizo 1 -0110111110 Hatsuo 1 -0110111110 Hiromitsu 1 -0110111110 Tokunosuke 1 -0110111110 Talat 1 -0110111110 Risaburo 1 -0110111110 Yasue 1 -0110111110 Kuzmich 1 -0110111110 Kuni 1 -0110111110 F.S.K. 1 -0110111110 Eugune 1 -0110111110 Dunacan 1 -0110111110 Moti 1 -0110111110 Kalle 1 -0110111110 Dannielle 1 -0110111110 Sven-Erik 1 -0110111110 Ismail-Sabri 1 -0110111110 Bogunika 1 -0110111110 Niels-Erik 1 -0110111110 Naoto 1 -0110111110 Mitsugi 1 -0110111110 Pazel 1 -0110111110 Tishah 1 -0110111110 Prajon 1 -0110111110 Vitoon 1 -0110111110 Ramchand 1 -0110111110 Izaac 1 -0110111110 Hapusan 1 -0110111110 Dicky 1 -0110111110 Marci 1 -0110111110 Tadanobu 1 -0110111110 Vipul 1 -0110111110 Dzingai 1 -0110111110 Navegantes 1 -0110111110 Ludger 1 -0110111110 METS 1 -0110111110 Zay 1 -0110111110 Masahito 1 -0110111110 Ansley 1 -0110111110 Marisse 1 -0110111110 Ajai 1 -0110111110 Mahlon 1 -0110111110 Rumiana 1 -0110111110 Dascomb 1 -0110111110 Raksha 1 -0110111110 Chimanbhai 1 -0110111110 Shinsuke 1 -0110111110 Evgenii 1 -0110111110 Rifka 1 -0110111110 Rowe-Price 1 -0110111110 HansJoerg 1 -0110111110 Roelfien 1 -0110111110 Finanzarie 1 -0110111110 Othniel 1 -0110111110 Janlori 1 -0110111110 Wahib 1 -0110111110 Commentator 1 -0110111110 Psychotherapists 1 -0110111110 Aidee 1 -0110111110 Neisen 1 -0110111110 Myriel 1 -0110111110 Duan 1 -0110111110 K.V. 1 -0110111110 Sheriday 1 -0110111110 Roseann 1 -0110111110 Maurene 1 -0110111110 Zafiro 1 -0110111110 Sibyl 1 -0110111110 Dougles 1 -0110111110 C.D.L. 1 -0110111110 Ozcan 1 -0110111110 Ardith 1 -0110111110 Nati 1 -0110111110 Euzhan 1 -0110111110 Marcis 1 -0110111110 Lesren 1 -0110111110 Tonja 1 -0110111110 Shusei 1 -0110111110 Holsten 1 -0110111110 Ptachia 1 -0110111110 Bhanu 1 -0110111110 Katsuhiro 1 -0110111110 Muki 1 -0110111110 Catlin 1 -0110111110 Edwviges 1 -0110111110 LaVern 1 -0110111110 Promo-tora 1 -0110111110 Shary 1 -0110111110 Yana 1 -0110111110 Schlomo 1 -0110111110 Maurita 1 -0110111110 Paolo-Filippo 1 -0110111110 Khrushid 1 -0110111110 Jevetta 1 -0110111110 Krystyna 1 -0110111110 Lami 1 -0110111110 Sadia 1 -0110111110 STEVEN 1 -0110111110 Heba 1 -0110111110 Evgenia 1 -0110111110 Kingsly 1 -0110111110 Karlhans 1 -0110111110 Noriyuki 1 -0110111110 Motoaki 1 -0110111110 Soji 1 -0110111110 V.K. 1 -0110111110 HUSTLED 1 -0110111110 Volkert 1 -0110111110 T.P. 1 -0110111110 Ladell 1 -0110111110 Carl-Hugo 1 -0110111110 Marie-Claire 1 -0110111110 Evalina 1 -0110111110 Collette 1 -0110111110 Randsell 1 -0110111110 Rolf-Dieter 1 -0110111110 Nelba 1 -0110111110 Malia 1 -0110111110 Ellwyn 1 -0110111110 Klaus-Wermer 1 -0110111110 Meldrim 1 -0110111110 Ertugrul 1 -0110111110 BrandsMart 1 -0110111110 Edgrick 1 -0110111110 Dewain 1 -0110111110 Andi 1 -0110111110 Seiroku 1 -0110111110 Prachaya 1 -0110111110 Shellie 1 -0110111110 Deeohn 1 -0110111110 Radomir 1 -0110111110 Claus-Wilhelm 1 -0110111110 Zahi 1 -0110111110 Domenick 1 -0110111110 Naohiro 1 -0110111110 Valere 1 -0110111110 Sosi 1 -0110111110 Calman 1 -0110111110 Herwig 1 -0110111110 Duvan 1 -0110111110 Ruthanne 1 -0110111110 Shmulig 1 -0110111110 Renatte 1 -0110111110 Serje 1 -0110111110 Farideh 1 -0110111110 Marribell 1 -0110111110 Gerburg 1 -0110111110 Kohzo 1 -0110111110 Olav 1 -0110111110 Copie 1 -0110111110 Misao 1 -0110111110 K.M.S. 1 -0110111110 Dinu 1 -0110111110 Rhae 1 -0110111110 Devendra 1 -0110111110 Belva 1 -0110111110 Bhikhubhai 1 -0110111110 Kennocott 1 -0110111110 Jervase 1 -0110111110 Rodrick 1 -0110111110 Reta 1 -0110111110 Vesna 1 -0110111110 Subhi 1 -0110111110 Huub 1 -0110111110 Hartzel 1 -0110111110 Kaaren 1 -0110111110 Fundidora 1 -0110111110 Cisley 1 -0110111110 PaineWebber/ 1 -0110111110 Rafeek 1 -0110111110 Dorick 1 -0110111110 Shigeichi 1 -0110111110 P.G.T. 1 -0110111110 Adroaldo 1 -0110111110 Jessa 1 -0110111110 Braam 1 -0110111110 Cletus 1 -0110111110 Jonni 1 -0110111110 Stacye 1 -0110111110 Sallianne 1 -0110111110 Elysa 1 -0110111110 Lisl 1 -0110111110 Shiu-Lok 1 -0110111110 Adin 1 -0110111110 Suellen 1 -0110111110 Teofisto 1 -0110111110 Giorgios 1 -0110111110 Dimitris 1 -0110111110 Oiva 1 -0110111110 Krafft 1 -0110111110 Fauad 1 -0110111110 Kimimasa 1 -0110111110 Malvina 1 -0110111110 Sedfrey 1 -0110111110 Christafor 1 -0110111110 Davoru 1 -0110111110 Takahiro 1 -0110111110 Teiji 1 -0110111110 Olio 1 -0110111110 Kazunao 1 -0110111110 Brielle 1 -0110111110 Riab 1 -0110111110 Emelyn 1 -0110111110 Yue-Kong 1 -0110111110 Photios 1 -0110111110 Donzella 1 -0110111110 Temma 1 -0110111110 Bisi 1 -0110111110 Gita 1 -0110111110 Olusegun 1 -0110111110 Sissela 1 -0110111110 Supavud 1 -0110111110 Ramdas 1 -0110111110 Hisaya 1 -0110111110 Lita 1 -0110111110 JeanMarc 1 -0110111110 Hanked 1 -0110111110 Harvy 1 -0110111110 Brownen 1 -0110111110 Jacalyn 1 -0110111110 Thami 1 -0110111110 Kerri 1 -0110111110 Henrick 1 -0110111110 Bernadine 1 -0110111110 Buie 1 -0110111110 Avraham 1 -0110111110 Rosier 1 -0110111110 Nuzhet 1 -0110111110 Prevented 1 -0110111110 Jerrell 1 -0110111110 Tomiyuki 1 -0110111110 Gisela 1 -0110111110 Goichi 1 -0110111110 Mindee 1 -0110111110 Munther 1 -0110111110 Saeb 1 -0110111110 Drug-czar 1 -0110111110 Wiliam 1 -0110111110 Valent 1 -0110111110 Manzar 1 -0110111110 Kyriakos 1 -0110111110 Grigoriy 1 -0110111110 Shimpei 1 -0110111110 Markeeta 1 -0110111110 Kevork 1 -0110111110 Perin 1 -0110111110 Detlef 1 -0110111110 Shyam 1 -0110111110 Shailendra 1 -0110111110 Dathan 1 -0110111110 Dierk 1 -0110111110 Yasunosuke 1 -0110111110 Hans-Gert 1 -0110111110 Fidencio 1 -0110111110 Kees 1 -0110111110 Birtan 1 -0110111110 Tamayose 1 -0110111110 Mitsuhide 1 -0110111110 Ryosuke 1 -0110111110 Tetsunari 1 -0110111110 Marjan 1 -0110111110 Mclean 1 -0110111110 Turker 1 -0110111110 Osha 1 -0110111110 Arseny 1 -0110111110 Yasushige 1 -0110111110 8,915,965 1 -0110111110 FranzJosef 1 -0110111110 Barret 1 -0110111110 Krystof 1 -0110111110 Rege 1 -0110111110 Choe 1 -0110111110 Griselda 1 -0110111110 nominee-to-be 1 -0110111110 Hipolito 1 -0110111110 Baldemar 1 -0110111110 Melanne 1 -0110111110 Dharani 1 -0110111110 Myriam 1 -0110111110 Lucrecia 1 -0110111110 JeanMaxime 1 -0110111110 Arvind 1 -0110111110 Hermut 1 -0110111110 Abdol-Reza 1 -0110111110 Yoshitomo 1 -0110111110 Collyn 1 -0110111110 Ichitaro 1 -0110111110 Fereidun 1 -0110111110 Takano 1 -0110111110 Zoran 1 -0110111110 Albemarle-Pamlico 1 -0110111110 Winant 1 -0110111110 Gulam 1 -0110111110 Daniil 1 -0110111110 Annlia 1 -0110111110 Radley 1 -0110111110 Kamala 1 -0110111110 Toba 1 -0110111110 Kunishiro 1 -0110111110 Trinita 1 -0110111110 Slavko 1 -0110111110 Zita 1 -0110111110 Dismisses 1 -0110111110 Chrisianthia 1 -0110111110 Sabas 1 -0110111110 Wendee 1 -0110111110 Maudine 1 -0110111110 Mazhar 1 -0110111110 Mahnaz 1 -0110111110 Naoaki 1 -0110111110 Hidemi 1 -0110111110 Levao 1 -0110111110 Sohsuke 1 -0110111110 Rimma 1 -0110111110 Tasuke 1 -0110111110 Edwina 1 -0110111110 Gretl 1 -0110111110 Ismet 1 -0110111110 Durk 1 -0110111110 Dilsie 1 -0110111110 Xabier 1 -0110111110 Flavel 1 -0110111110 Roark 1 -0110111110 Masafumi 1 -0110111110 soupe 1 -0110111110 Jaoa 1 -0110111110 Arezki 1 -0110111110 Cecie 1 -0110111110 Madelon 1 -0110111110 Rezsoe 1 -0110111110 Iftikhar 1 -0110111110 Lollit 1 -0110111110 Tita 1 -0110111110 Chane 1 -0110111110 Chuy 1 -0110111110 Dickran 1 -0110111110 Yutake 1 -0110111110 Lottie 1 -0110111110 Edmonia 1 -0110111110 Stanfield 1 -0110111110 Tonya 1 -0110111110 Lloyce 1 -0110111110 Selina 1 -0110111110 Murvin 1 -0110111110 Ses 1 -0110111110 Kailash 1 -0110111110 Moushaheen 1 -0110111110 Gayl 1 -0110111110 Tetsuro 1 -0110111110 Gershen 1 -0110111110 Elyse 1 -0110111110 LaVarne 1 -0110111110 Asghar 1 -0110111110 Erlene 1 -0110111110 Fulvio 1 -0110111110 Rosina 1 -0110111110 Renard 1 -0110111110 Joallyn 1 -0110111110 Lovida 1 -0110111110 Derryl 1 -0110111110 Verena 1 -0110111110 Petter 1 -0110111110 Jose-Angel 1 -0110111110 Geaton 1 -0110111110 Elisio 1 -0110111110 Arped 1 -0110111110 Tadaaki 1 -0110111110 Fuminori 1 -0110111110 MALCOM 1 -0110111110 PATRICK 1 -0110111110 Nilo 1 -0110111110 Eckhard 1 -0110111110 Naas 1 -0110111110 Letitia 1 -0110111110 BengtGoeran 1 -0110111110 Shackford 1 -0110111110 Yukiko 1 -0110111110 Waino 1 -0110111110 Sayeeda 1 -0110111110 Fatta 1 -0110111110 Tamio 1 -0110111110 Yoran 1 -0110111110 Soucy 1 -0110111110 Keiichiro 1 -0110111110 Zakar 1 -0110111110 Kosuke 1 -0110111110 -Samuel 1 -0110111110 Winfred 1 -0110111110 Sammye 1 -0110111110 Sonni 1 -0110111110 Ila 1 -0110111110 Cia. 1 -0110111110 Monsoor 1 -0110111110 Tetsuhisa 1 -0110111110 Kathrine 1 -0110111110 Mirrel 1 -0110111110 Mosen 1 -0110111110 Courteney 1 -0110111110 Jenard 1 -0110111110 Lavinia 2 -0110111110 Eliana 2 -0110111110 Cyriac 2 -0110111110 Rence 2 -0110111110 Krishan 2 -0110111110 Yutaro 2 -0110111110 Raymon 2 -0110111110 Gwendolyn 2 -0110111110 Adan 2 -0110111110 Elihu 2 -0110111110 Plamen 2 -0110111110 Tal 2 -0110111110 Abelardo 2 -0110111110 Kell 2 -0110111110 Bondurant 2 -0110111110 Tamas 2 -0110111110 Katsuhiko 2 -0110111110 Jaydev 2 -0110111110 Bernado 2 -0110111110 Vasilii 2 -0110111110 Petros 2 -0110111110 Lysle 2 -0110111110 Carl-Olof 2 -0110111110 Yvette 2 -0110111110 Tomihiro 2 -0110111110 I.I. 2 -0110111110 Carl-Johan 2 -0110111110 Lilia 2 -0110111110 Maximo 2 -0110111110 Deidre 2 -0110111110 Chiam 2 -0110111110 Ebbe 2 -0110111110 Yaichi 2 -0110111110 Steffan 2 -0110111110 Elissa 2 -0110111110 Shdema 2 -0110111110 Elemer 2 -0110111110 Harriett 2 -0110111110 Ludolf 2 -0110111110 Lennart 2 -0110111110 Shayne 2 -0110111110 Verenda 2 -0110111110 Mordehai 2 -0110111110 Masashi 2 -0110111110 Ralf 2 -0110111110 Hans-Juergen 2 -0110111110 Arney 2 -0110111110 Rikio 2 -0110111110 Ryuji 2 -0110111110 Elwin 2 -0110111110 Jas 2 -0110111110 Hennie 2 -0110111110 Ryoji 2 -0110111110 Alicemarie 2 -0110111110 Zenon 2 -0110111110 Graemer 2 -0110111110 Mikio 2 -0110111110 Jud 2 -0110111110 Hanif 2 -0110111110 Seishichi 2 -0110111110 Heinn 2 -0110111110 Verlin 2 -0110111110 Nikki 2 -0110111110 Alasdair 2 -0110111110 Mic 2 -0110111110 Larisa 2 -0110111110 Mina 2 -0110111110 Shige 2 -0110111110 Yuriy 2 -0110111110 Tommie 2 -0110111110 Seizaburo 2 -0110111110 G.K. 2 -0110111110 Othmar 2 -0110111110 Donna-Ann 2 -0110111110 Rizzoli-Corriere 2 -0110111110 Lanty 2 -0110111110 Alirio 2 -0110111110 Fairleigh 2 -0110111110 Amalya 2 -0110111110 Dato 2 -0110111110 Hannelore 2 -0110111110 Harriette 2 -0110111110 Gloire 2 -0110111110 Satoru 2 -0110111110 Sumiko 2 -0110111110 Marcie 2 -0110111110 Rashi 2 -0110111110 Valorie 2 -0110111110 Hoyte 2 -0110111110 Adrianne 2 -0110111110 Makota 2 -0110111110 Buffy 2 -0110111110 Stefania 2 -0110111110 Carolann 2 -0110111110 Dewitt 2 -0110111110 Yue-kong 2 -0110111110 Heberto 2 -0110111110 E.O. 2 -0110111110 Causewell 2 -0110111110 Baltazar 2 -0110111110 Wallie 2 -0110111110 Patric 2 -0110111110 SPAIN 2 -0110111110 Shiro 2 -0110111110 Mamoru 2 -0110111110 -Robert 2 -0110111110 Vitaliy 2 -0110111110 Carll 2 -0110111110 Froylan 2 -0110111110 Swaleh 2 -0110111110 Madelyn 2 -0110111110 Maryellen 2 -0110111110 Stanilas 2 -0110111110 Sumio 2 -0110111110 Aneurin 2 -0110111110 Ryoichi 2 -0110111110 Karl-Josef 2 -0110111110 Chappe 2 -0110111110 Radulphus 2 -0110111110 Renz 2 -0110111110 Marilee 2 -0110111110 Jannie 2 -0110111110 Marvis 2 -0110111110 Shinichiro 2 -0110111110 Norihiro 2 -0110111110 Hy 2 -0110111110 Bayan 2 -0110111110 F.E. 2 -0110111110 Yanosuke 2 -0110111110 Lurana 2 -0110111110 Nuria 2 -0110111110 Dena 2 -0110111110 Aims 2 -0110111110 Wendeen 2 -0110111110 Tammis 2 -0110111110 Stas 2 -0110111110 Yurii 2 -0110111110 Jurij 2 -0110111110 Els 2 -0110111110 Micha 2 -0110111110 Semyon 2 -0110111110 Kenko 2 -0110111110 Raffaella 2 -0110111110 Claibourne 2 -0110111110 Corydon 2 -0110111110 Waymond 2 -0110111110 Takatoshi 2 -0110111110 Helge 2 -0110111110 Joesph 2 -0110111110 Stelios 2 -0110111110 Hammad 2 -0110111110 B.Z. 2 -0110111110 Thibaut 2 -0110111110 Isak 2 -0110111110 Ueli 2 -0110111110 Rolph 2 -0110111110 Eben 2 -0110111110 Ihor 2 -0110111110 Ghaith 2 -0110111110 Ara 2 -0110111110 Kinzey 2 -0110111110 Theodora 2 -0110111110 Wernher 2 -0110111110 Clementina 2 -0110111110 Nand 2 -0110111110 Mindy 2 -0110111110 Edda 2 -0110111110 Beverley 2 -0110111110 Donal 2 -0110111110 Linnet 2 -0110111110 Juzo 2 -0110111110 Toney 2 -0110111110 Masakatsu 2 -0110111110 Rezso 2 -0110111110 Sergey 2 -0110111110 Krysztof 2 -0110111110 Ronaldo 2 -0110111110 Alvan 2 -0110111110 Yvgeny 2 -0110111110 Sungho 2 -0110111110 Oystein 2 -0110111110 Silvano 2 -0110111110 Cengiz 2 -0110111110 Theron 2 -0110111110 Romualdo 2 -0110111110 Anastasios 2 -0110111110 Katherina 2 -0110111110 COEUR 2 -0110111110 Ronni 2 -0110111110 Kakutaro 2 -0110111110 Reubin 2 -0110111110 Jaroslav 2 -0110111110 Pei-yuan 2 -0110111110 Mansoura 2 -0110111110 Glendon 2 -0110111110 Norihiko 2 -0110111110 Eppie 2 -0110111110 K.I. 2 -0110111110 Michitoshi 2 -0110111110 Flaxie 2 -0110111110 Leonhard 2 -0110111110 E.Y. 2 -0110111110 Torsten 2 -0110111110 Detlev 2 -0110111110 Beate 2 -0110111110 Buckminster 2 -0110111110 Fabio 2 -0110111110 Christoper 2 -0110111110 Davitt 2 -0110111110 Guiliano 2 -0110111110 Amina 2 -0110111110 Roxane 2 -0110111110 Lissa 2 -0110111110 Ornette 2 -0110111110 TerriAnn 2 -0110111110 Jeanie 2 -0110111110 Heinz-Juergen 2 -0110111110 Hiromichi 2 -0110111110 Penaia 2 -0110111110 Kewal 2 -0110111110 Yasumasa 2 -0110111110 Isidoro 2 -0110111110 Masumi 2 -0110111110 Kraig 2 -0110111110 Sar 2 -0110111110 Electricas 2 -0110111110 Ruffen 2 -0110111110 Edgard 2 -0110111110 Gib 2 -0110111110 Dorcas 3 -0110111110 Delo 3 -0110111110 Graciela 3 -0110111110 Rawleigh 3 -0110111110 Delmont 3 -0110111110 Kamisese 3 -0110111110 Hugues 3 -0110111110 Avron 3 -0110111110 Istvan 3 -0110111110 Mahesh 3 -0110111110 Saad 3 -0110111110 Sugiichiro 3 -0110111110 S.O. 3 -0110111110 Winfried 3 -0110111110 Bama 3 -0110111110 Heiko 3 -0110111110 Guri 3 -0110111110 Yuzo 3 -0110111110 Kazutoshi 3 -0110111110 Sheena 3 -0110111110 L.R. 3 -0110111110 Arye 3 -0110111110 Amnon 3 -0110111110 Hidehiro 3 -0110111110 Loris 3 -0110111110 Eneas 3 -0110111110 Lary 3 -0110111110 Hansgeorg 3 -0110111110 Johnathan 3 -0110111110 C.F. 3 -0110111110 Kathie 3 -0110111110 Welton 3 -0110111110 Youssef 3 -0110111110 Jaap 3 -0110111110 Elwyn 3 -0110111110 Vicky 3 -0110111110 Byrle 3 -0110111110 Kinya 3 -0110111110 Anne-Marie 3 -0110111110 I.H. 3 -0110111110 Ric 3 -0110111110 Yevgeni 3 -0110111110 Wim 3 -0110111110 Steny 3 -0110111110 Renate 3 -0110111110 Seiichiro 3 -0110111110 Cornisch 3 -0110111110 Sanjiv 3 -0110111110 Masataka 3 -0110111110 Sanjoy 3 -0110111110 Ute 3 -0110111110 Renita 3 -0110111110 Anthonie 3 -0110111110 Linwood 3 -0110111110 Rony 3 -0110111110 Tomio 3 -0110111110 Shunichi 3 -0110111110 Masanori 3 -0110111110 Amil 3 -0110111110 Joschka 3 -0110111110 Comme 3 -0110111110 Rhona 3 -0110111110 Kanji 3 -0110111110 Yoichiro 3 -0110111110 Hortense 3 -0110111110 Livio 3 -0110111110 Soeren 3 -0110111110 Zacharias 3 -0110111110 Erick 3 -0110111110 Ajit 3 -0110111110 Keisuke 3 -0110111110 Maura 3 -0110111110 Marlys 3 -0110111110 Garen 3 -0110111110 Gilles 3 -0110111110 Merwyn 3 -0110111110 Reva 3 -0110111110 Yuzuru 3 -0110111110 Yair 3 -0110111110 Henk 3 -0110111110 Akiyoshi 3 -0110111110 Yusef 3 -0110111110 Junichi 3 -0110111110 Tidal 3 -0110111110 Takaharu 3 -0110111110 Alcides 3 -0110111110 Marjory 3 -0110111110 Syd 3 -0110111110 C.G. 3 -0110111110 Vaclav 3 -0110111110 Vijay 3 -0110111110 Darius 3 -0110111110 Rudi 3 -0110111110 Eamon 3 -0110111110 Darrin 3 -0110111110 Mbongeni 3 -0110111110 Henryk 3 -0110111110 Sampie 3 -0110111110 Millicent 3 -0110111110 Orrie 3 -0110111110 Lasse 3 -0110111110 Mumtaz 3 -0110111110 Gianluigi 3 -0110111110 Ivers 3 -0110111110 Mithileshwar 3 -0110111110 Dwain 3 -0110111110 Yasunori 3 -0110111110 Shel 3 -0110111110 Efren 3 -0110111110 Erling 3 -0110111110 Achim 3 -0110111110 Terree 3 -0110111110 Jeanine 3 -0110111110 Iwao 3 -0110111110 Karst 3 -0110111110 Vincente 3 -0110111110 Kristina 3 -0110111110 Tetsuya 3 -0110111110 Teruo 3 -0110111110 Louella 3 -0110111110 Levon 3 -0110111110 Hidehiko 3 -0110111110 Gyula 3 -0110111110 Cathryn 3 -0110111110 Gari 3 -0110111110 Hiroo 3 -0110111110 Etienne-Emile 3 -0110111110 Frigyes 3 -0110111110 Hanoch 3 -0110111110 Stevan 3 -0110111110 Massimo 3 -0110111110 Josep 3 -0110111110 Kipp 4 -0110111110 Glenhall 4 -0110111110 Selwin 4 -0110111110 Kazuhisa 4 -0110111110 Isamu 4 -0110111110 Masato 4 -0110111110 Tu 4 -0110111110 Shaul 4 -0110111110 Jerold 4 -0110111110 Ladislav 4 -0110111110 Rya 4 -0110111110 D.R. 4 -0110111110 Lamberto 4 -0110111110 Cheri 4 -0110111110 Harun 4 -0110111110 B.G. 4 -0110111110 Nobuyoshi 4 -0110111110 Ceris 4 -0110111110 Rozanne 4 -0110111110 Kingman 4 -0110111110 Delwin 4 -0110111110 Jerilyn 4 -0110111110 Lisbeth 4 -0110111110 L.G. 4 -0110111110 M.L. 4 -0110111110 Geza 4 -0110111110 Noriko 4 -0110111110 Inzer 4 -0110111110 W.G. 4 -0110111110 Janusz 4 -0110111110 Annemarie 4 -0110111110 RAYMOND 4 -0110111110 Yukuo 4 -0110111110 Ina 4 -0110111110 Celia 4 -0110111110 Myrna 4 -0110111110 Bassam 4 -0110111110 Sari 4 -0110111110 Gavyn 4 -0110111110 Lana 4 -0110111110 Avram 4 -0110111110 Rosalyn 4 -0110111110 Welko 4 -0110111110 McCaughan 4 -0110111110 Denholm 4 -0110111110 Dagmar 4 -0110111110 Hans-Peter 4 -0110111110 Roderic 4 -0110111110 Saundra 4 -0110111110 Isadore 4 -0110111110 Leontyne 4 -0110111110 Stu 4 -0110111110 Udo 4 -0110111110 Randon 4 -0110111110 Hartmut 4 -0110111110 Mancur 4 -0110111110 Nackey 4 -0110111110 Arjun 4 -0110111110 Bernell 4 -0110111110 Junjiro 4 -0110111110 Sadeg 4 -0110111110 Keizo 4 -0110111110 Laurans 4 -0110111110 Marla 4 -0110111110 Kathi 4 -0110111110 Keiko 4 -0110111110 Fawzi 4 -0110111110 Kazimierz 4 -0110111110 Diethard 4 -0110111110 Yoshinori 4 -0110111110 Arland 4 -0110111110 Eartha 4 -0110111110 Fiona 4 -0110111110 Gena 4 -0110111110 Domingos 4 -0110111110 Grahame 4 -0110111110 Kevan 4 -0110111110 Fujio 4 -0110111110 Gidon 4 -0110111110 Minda 4 -0110111110 B.D. 4 -0110111110 Meinhard 4 -0110111110 Ehud 4 -0110111110 Hans-Joachim 4 -0110111110 Eile 4 -0110111110 Amir 4 -0110111110 Gyorgy 4 -0110111110 P.X. 4 -0110111110 Glynis 4 -0110111110 Luci 4 -0110111110 Trish 4 -0110111110 Derwin 4 -0110111110 Mikael 4 -0110111110 Nobuyuki 4 -0110111110 Dinesh 4 -0110111110 Jerre 4 -0110111110 B.L. 4 -0110111110 Jean-Michel 4 -0110111110 Kiyotaka 5 -0110111110 Blas 5 -0110111110 Arlan 5 -0110111110 Thekla 5 -0110111110 Daphne 5 -0110111110 Mauricio 5 -0110111110 Hani 5 -0110111110 Trudy 5 -0110111110 Shireen 5 -0110111110 Amando 5 -0110111110 Geert 5 -0110111110 Virginius 5 -0110111110 Laurance 5 -0110111110 Tasso 5 -0110111110 Kari 5 -0110111110 Masatoshi 5 -0110111110 Lenore 5 -0110111110 Bevis 5 -0110111110 B.R. 5 -0110111110 Susanne 5 -0110111110 Hillel 5 -0110111110 Nikolaus 5 -0110111110 Donnie 5 -0110111110 Constantin 5 -0110111110 Myles 5 -0110111110 Sy 5 -0110111110 Consuelo 5 -0110111110 Morry 5 -0110111110 Budge 5 -0110111110 Takayoshi 5 -0110111110 Nerio 5 -0110111110 Akiko 5 -0110111110 G.R. 5 -0110111110 Alick 5 -0110111110 Darrel 5 -0110111110 Ilene 5 -0110111110 D.B. 5 -0110111110 A.O. 5 -0110111110 Isao 5 -0110111110 Witold 5 -0110111110 Vicomte 5 -0110111110 Betsey 5 -0110111110 Deno 5 -0110111110 Martti 5 -0110111110 Kwasha 5 -0110111110 Akihiro 5 -0110111110 Yoji 5 -0110111110 RICHARD 5 -0110111110 Judi 5 -0110111110 Rosanna 5 -0110111110 Hikmat 5 -0110111110 Livia 5 -0110111110 Fouad 5 -0110111110 Burtt 5 -0110111110 P.G. 5 -0110111110 Delores 5 -0110111110 Gwen 5 -0110111110 Burl 5 -0110111110 Robbin 5 -0110111110 Nelly 5 -0110111110 Francois-Xavier 5 -0110111110 Wilfrid 5 -0110111110 Margie 5 -0110111110 Sheri 5 -0110111110 PHILIP 5 -0110111110 Marisa 5 -0110111110 W.F. 5 -0110111110 Spottswood 5 -0110111110 Marcelo 5 -0110111110 Parren 5 -0110111110 Nella 5 -0110111110 Patrice 6 -0110111110 G.E. 6 -0110111110 Toshiyuki 6 -0110111110 Bonita 6 -0110111110 Jochen 6 -0110111110 Caryl 6 -0110111110 Sheryl 6 -0110111110 Kazuhiko 6 -0110111110 Thaddeus 6 -0110111110 Ryal 6 -0110111110 Petr 6 -0110111110 T.H. 6 -0110111110 Masaharu 6 -0110111110 Aleksander 6 -0110111110 Attilio 6 -0110111110 Vahan 6 -0110111110 Ewan 6 -0110111110 Cristina 6 -0110111110 Matty 6 -0110111110 Sergiu 6 -0110111110 Lanny 6 -0110111110 Mervin 6 -0110111110 Bridget 6 -0110111110 Yoichi 6 -0110111110 Marcella 6 -0110111110 Breckinridge 6 -0110111110 Nils 6 -0110111110 T.B. 6 -0110111110 Lothar 6 -0110111110 Nita 6 -0110111110 Suh 6 -0110111110 V.S. 6 -0110111110 Carmelo 6 -0110111110 Jean-Yves 6 -0110111110 Alois 6 -0110111110 Taro 6 -0110111110 Orestes 6 -0110111110 Donny 6 -0110111110 Edgardo 6 -0110111110 Gad 6 -0110111110 Hisashi 6 -0110111110 Alann 6 -0110111110 Nando 6 -0110111110 Sanjay 6 -0110111110 Vinod 6 -0110111110 I.G. 6 -0110111110 Gedale 6 -0110111110 Morrie 6 -0110111110 Maryanne 6 -0110111110 Yoshihiro 6 -0110111110 Hideki 6 -0110111110 Margery 6 -0110111110 Windle 6 -0110111110 G.J. 6 -0110111110 Rhonda 6 -0110111110 Candace 6 -0110111110 Dina 6 -0110111110 Eugenio 6 -0110111110 Jeannie 6 -0110111110 Yoshiro 6 -0110111110 Mal 6 -0110111110 Phillipe 7 -0110111110 Lenny 7 -0110111110 Russel 7 -0110111110 Genevieve 7 -0110111110 Langhorne 7 -0110111110 Kristin 7 -0110111110 Gerrit 7 -0110111110 Sven 7 -0110111110 Vincenzo 7 -0110111110 Micky 7 -0110111110 Rosanne 7 -0110111110 Irv 7 -0110111110 Garnett 7 -0110111110 Ryohei 7 -0110111110 Orval 7 -0110111110 Kaspar 7 -0110111110 Ramesh 7 -0110111110 R.T. 7 -0110111110 Terrel 7 -0110111110 Dinmukhamed 7 -0110111110 Miroslav 7 -0110111110 Georgette 7 -0110111110 Masayuki 7 -0110111110 Fumio 7 -0110111110 Kenzo 7 -0110111110 Shinichi 7 -0110111110 Naim 7 -0110111110 Juliusz 7 -0110111110 Jean-Jacques 7 -0110111110 H.D. 7 -0110111110 Marek 7 -0110111110 Wilbert 7 -0110111110 Junji 7 -0110111110 Natalia 7 -0110111110 DeRoy 7 -0110111110 Jiri 7 -0110111110 THOMAS 7 -0110111110 Abid 7 -0110111110 Cees 7 -0110111110 Lucius 7 -0110111110 Nomi 7 -0110111110 Jean-Baptiste 7 -0110111110 Tancredo 7 -0110111110 Tsutomu 7 -0110111110 Hakan 7 -0110111110 Cecile 7 -0110111110 Benno 7 -0110111110 Nunzio 7 -0110111110 WILLIAM 7 -0110111110 Willam 7 -0110111110 E.H. 7 -0110111110 Kimba 7 -0110111110 Dolph 7 -0110111110 Tod 7 -0110111110 Ravi 7 -0110111110 D.D. 7 -0110111110 Cecelia 7 -0110111110 Corinne 7 -0110111110 Norodom 7 -0110111110 Kamal 7 -0110111110 Alcee 8 -0110111110 Dianna 8 -0110111110 Herbie 8 -0110111110 Cardiss 8 -0110111110 Carolyne 8 -0110111110 Wilford 8 -0110111110 Mariano 8 -0110111110 Gillian 8 -0110111110 W.N. 8 -0110111110 Alair 8 -0110111110 Jean-Rene 8 -0110111110 Kristen 8 -0110111110 Denys 8 -0110111110 Lesa 8 -0110111110 H.E. 8 -0110111110 Ilya 8 -0110111110 Hamid 8 -0110111110 Hosea 8 -0110111110 Karl-Heinz 8 -0110111110 Lorna 8 -0110111110 C.K. 8 -0110111110 Shaun 8 -0110111110 Fern 8 -0110111110 Pedro-Pablo 8 -0110111110 Shahrokh 8 -0110111110 Alistair 8 -0110111110 Sadao 8 -0110111110 Gilberto 8 -0110111110 C.P. 8 -0110111110 Bjoern 8 -0110111110 Barrie 8 -0110111110 Eunice 8 -0110111110 Hideaki 8 -0110111110 Dilip 8 -0110111110 Bengt 8 -0110111110 Garo 8 -0110111110 Hilary 8 -0110111110 Fyodor 8 -0110111110 Rachelle 8 -0110111110 Irina 8 -0110111110 Toru 9 -0110111110 Ruthann 9 -0110111110 Aleksandr 9 -0110111110 Mangosuthu 9 -0110111110 Freda 9 -0110111110 Abigail 9 -0110111110 Jennie 9 -0110111110 Shoichiro 9 -0110111110 Mordechai 9 -0110111110 Cathleen 9 -0110111110 Darren 9 -0110111110 Rudiger 9 -0110111110 Donn 9 -0110111110 Sherrie 9 -0110111110 Mathilde 9 -0110111110 JoAnn 9 -0110111110 Zev 9 -0110111110 Jerald 9 -0110111110 Yoshi 9 -0110111110 Kristine 9 -0110111110 Claes 9 -0110111110 Bernadette 9 -0110111110 Trilby 9 -0110111110 Carly 9 -0110111110 Juliette 9 -0110111110 Claudine 9 -0110111110 Kiyoshi 9 -0110111110 Phua 9 -0110111110 Takeo 9 -0110111110 Reto 9 -0110111110 Nobuaki 9 -0110111110 Orel 9 -0110111110 Vadim 10 -0110111110 Ruediger 10 -0110111110 Lando 10 -0110111110 Thad 10 -0110111110 Jared 10 -0110111110 Charls 10 -0110111110 A.E. 10 -0110111110 Baine 10 -0110111110 Yevgeny 10 -0110111110 Olivia 10 -0110111110 Jayne 10 -0110111110 Mia 10 -0110111110 Toshihiko 10 -0110111110 Viren 10 -0110111110 Volker 10 -0110111110 Masahiro 10 -0110111110 Gretchen 10 -0110111110 Shigeki 10 -0110111110 Kjell 10 -0110111110 Ramiro 10 -0110111110 Stansfield 10 -0110111110 Lal 11 -0110111110 Vyacheslav 11 -0110111110 Eberhard 11 -0110111110 Kip 11 -0110111110 Zoltan 11 -0110111110 L.C. 11 -0110111110 Becky 11 -0110111110 Harald 11 -0110111110 H.W. 11 -0110111110 Malcom 11 -0110111110 Masahiko 11 -0110111110 Rodd 11 -0110111110 Yoshihisa 11 -0110111110 Yvonne 11 -0110111110 Joann 11 -0110111110 C.E. 11 -0110111110 H.P. 11 -0110111110 Vern 11 -0110111110 Takao 12 -0110111110 Rimmer 12 -0110111110 Charlene 12 -0110111110 Shoichi 12 -0110111110 C.N. 12 -0110111110 Beau 12 -0110111110 Deepak 12 -0110111110 Emile 12 -0110111110 R.M. 12 -0110111110 Gennady 12 -0110111110 Umberto 12 -0110111110 E.G. 12 -0110111110 Andrzej 12 -0110111110 Kenji 12 -0110111110 Masaru 12 -0110111110 Hiroyuki 13 -0110111110 Marlene 13 -0110111110 Guenter 13 -0110111110 Kalo 13 -0110111110 Koji 13 -0110111110 Gianni 13 -0110111110 Isabel 13 -0110111110 Teri 13 -0110111110 Millie 13 -0110111110 Mari 13 -0110111110 Edmar 13 -0110111110 J.G. 13 -0110111110 Jeffry 13 -0110111110 Elgie 13 -0110111110 Milt 13 -0110111110 R.E. 13 -0110111110 Rolando 13 -0110111110 Cecilia 13 -0110111110 W.L. 13 -0110111110 P.J. 13 -0110111110 Euan 13 -0110111110 R.S. 13 -0110111110 Shelly 13 -0110111110 Deryck 13 -0110111110 Gareth 13 -0110111110 Pieter 14 -0110111110 Hazel 14 -0110111110 C.C. 14 -0110111110 Ilan 14 -0110111110 Rogelio 14 -0110111110 Leif 14 -0110111110 Juanita 14 -0110111110 Johan 14 -0110111110 Alvah 14 -0110111110 Elmo 14 -0110111110 Errol 14 -0110111110 Ewen 14 -0110111110 Luc 14 -0110111110 Jean-Marc 14 -0110111110 P.H. 14 -0110111110 Mildred 14 -0110111110 Andras 14 -0110111110 Ashok 15 -0110111110 Loretta 15 -0110111110 Randal 15 -0110111110 Willem 15 -0110111110 Margot 15 -0110111110 Bertil 15 -0110111110 Hernando 15 -0110111110 Avi 15 -0110111110 Eldon 15 -0110111110 Iain 15 -0110111110 Fredrick 15 -0110111110 Naomi 16 -0110111110 Herve 16 -0110111110 Patt 16 -0110111110 Jere 16 -0110111110 W.S. 16 -0110111110 Gustave 16 -0110111110 Bobbie 16 -0110111110 Orin 16 -0110111110 Lindley 16 -0110111110 E.L. 16 -0110111110 Bernice 16 -0110111110 Piers 16 -0110111110 Hardwick 16 -0110111110 Aulana 16 -0110111110 Rainer 16 -0110111110 Milo 16 -0110111110 Michio 17 -0110111110 Francine 17 -0110111110 Kenichi 17 -0110111110 Marsha 17 -0110111110 Herschel 17 -0110111110 Alicia 17 -0110111110 Kika 17 -0110111110 Wes 17 -0110111110 Dwayne 17 -0110111110 Niels 17 -0110111110 Marge 17 -0110111110 Jean-Luc 18 -0110111110 Dimitri 18 -0110111110 Atsushi 18 -0110111110 Y.K. 18 -0110111110 Hideo 18 -0110111110 Emmanuel 18 -0110111110 Arlene 18 -0110111110 Nobuo 18 -0110111110 Arnie 18 -0110111110 Gladys 18 -0110111110 Lon 18 -0110111110 Gunnar 18 -0110111110 Ginger 18 -0110111110 Maryann 18 -0110111110 Rodger 18 -0110111110 Reg 18 -0110111110 Dmitri 18 -0110111110 E.J. 18 -0110111110 Merton 18 -0110111110 Boake 18 -0110111110 Yoko 19 -0110111110 Alison 19 -0110111110 Lesley 19 -0110111110 W.B. 19 -0110111110 E.E. 19 -0110111110 Lodwrick 19 -0110111110 Bernd 19 -0110111110 Heidi 20 -0110111110 Zane 20 -0110111110 Geoff 20 -0110111110 Rocco 20 -0110111110 Jed 20 -0110111110 Takeshi 20 -0110111110 Vicente 20 -0110111110 Keiji 20 -0110111110 Micheal 20 -0110111110 Helane 20 -0110111110 Alec 20 -0110111110 Burnell 20 -0110111110 Annette 20 -0110111110 Colleen 20 -0110111110 Akira 20 -0110111110 Didier 20 -0110111110 Uwe 21 -0110111110 Valentin 21 -0110111110 Melanie 21 -0110111110 Terri 21 -0110111110 Marcy 21 -0110111110 Katharina 21 -0110111110 Osamu 21 -0110111110 Jess 21 -0110111110 Renee 22 -0110111110 Cindy 22 -0110111110 Marguerite 22 -0110111110 Norm 22 -0110111110 Kimberly 22 -0110111110 W.W. 22 -0110111110 Abner 22 -0110111110 Johann 22 -0110111110 J.T. 23 -0110111110 Madeleine 23 -0110111110 Johannes 23 -0110111110 Dino 23 -0110111110 Hamish 23 -0110111110 Graeme 23 -0110111110 Yoshio 23 -0110111110 Rosalind 23 -0110111110 Adlai 23 -0110111110 Pauline 23 -0110111110 L.S. 24 -0110111110 Hemant 24 -0110111110 B.J. 24 -0110111110 Caleb 24 -0110111110 R.C. 24 -0110111110 Suresh 24 -0110111110 Roberta 25 -0110111110 Juergen 25 -0110111110 Ella 25 -0110111110 Toni 25 -0110111110 Ricky 25 -0110111110 Gus 26 -0110111110 Sal 26 -0110111110 Fredric 26 -0110111110 Basil 26 -0110111110 Jean-Marie 26 -0110111110 Roxani 27 -0110111110 E.B. 27 -0110111110 Minoru 27 -0110111110 Kermit 27 -0110111110 Jean-Pierre 27 -0110111110 Bjorn 27 -0110111110 Greta 27 -0110111110 Jeremiah 28 -0110111110 Alexia 28 -0110111110 Dianne 28 -0110111110 Stephanie 28 -0110111110 Makoto 28 -0110111110 Dirk 28 -0110111110 Marcia 29 -0110111110 Melinda 29 -0110111110 Fortney 29 -0110111110 Ernesto 29 -0110111110 Lonnie 30 -0110111110 Giuseppe 30 -0110111110 W.J. 30 -0110111110 Ulric 30 -0110111110 Jean-Louis 30 -0110111110 Karsten 31 -0110111110 Kazuo 31 -0110111110 Leroy 31 -0110111110 Irene 32 -0110111110 Alejandro 32 -0110111110 LeRoy 32 -0110111110 Fawn 32 -0110111110 Lynne 32 -0110111110 STOCKS 33 -0110111110 Garry 33 -0110111110 Shintaro 33 -0110111110 Emil 33 -0110111110 Viktor 33 -0110111110 Heinrich 33 -0110111110 Joanne 33 -0110111110 R.W. 33 -0110111110 Maury 33 -0110111110 Miriam 33 -0110111110 Emma 34 -0110111110 Vicki 34 -0110111110 Norbert 34 -0110111110 Erik 34 -0110111110 Delbert 34 -0110111110 J.W. 34 -0110111110 Egon 35 -0110111110 Dominic 35 -0110111110 JOHN 35 -0110111110 Norma 35 -0110111110 Clive 35 -0110111110 Billie 35 -0110111110 Guillermo 35 -0110111110 Meshulam 35 -0110111110 Susie 35 -0110111110 Carla 36 -0110111110 Rolf 36 -0110111110 Silvio 36 -0110111110 Edmond 37 -0110111110 Javier 38 -0110111110 J.J. 38 -0110111110 Jules 38 -0110111110 Horst 38 -0110111110 Emilio 38 -0110111110 Merle 38 -0110111110 Katharine 39 -0110111110 Lois 39 -0110111110 Manfred 39 -0110111110 Shigeru 39 -0110111110 Salvatore 39 -0110111110 Carole 40 -0110111110 Darryl 40 -0110111110 A.J. 40 -0110111110 Fabian 40 -0110111110 W.H. 41 -0110111110 Carmine 41 -0110111110 Hiroshi 41 -0110111110 Mitch 41 -0110111110 Augustus 42 -0110111110 Jennifer 42 -0110111110 Sheila 43 -0110111110 Ronnie 43 -0110111110 Edith 43 -0110111110 Nicolas 43 -0110111110 Takashi 43 -0110111110 Eileen 43 -0110111110 Denise 43 -0110111110 Johnnie 44 -0110111110 Daryl 44 -0110111110 J.L. 44 -0110111110 Toshio 44 -0110111110 M.J. 44 -0110111110 Cheryl 44 -0110111110 Brendan 45 -0110111110 Betsy 45 -0110111110 Maureen 45 -0110111110 Rebecca 46 -0110111110 Jeanne 46 -0110111110 Audrey 46 -0110111110 Janice 46 -0110111110 Constance 46 -0110111110 Curt 47 -0110111110 Len 47 -0110111110 Rita 48 -0110111110 Michele 49 -0110111110 Jill 49 -0110111110 Esther 50 -0110111110 Valerie 50 -0110111110 Jeane 50 -0110111110 Bonnie 51 -0110111110 Alfonse 51 -0110111110 Darrell 51 -0110111110 Omar 51 -0110111110 Paula 52 -0110111110 H.L. 52 -0110111110 Edson 54 -0110111110 Cecil 55 -0110111110 Rosemary 55 -0110111110 Alfredo 56 -0110111110 Reginald 57 -0110111110 Terrence 58 -0110111110 Anton 58 -0110111110 Rob 58 -0110111110 Ruben 59 -0110111110 Duane 60 -0110111110 Debra 60 -0110111110 Doris 61 -0110111110 Willy 61 -0110111110 Suzanne 61 -0110111110 Jacqueline 61 -0110111110 Bette 62 -0110111110 Phyllis 62 -0110111110 Connie 63 -0110111110 Kathy 64 -0110111110 Kathryn 64 -0110111110 Myron 66 -0110111110 Trevor 66 -0110111110 Michelle 67 -0110111110 Katherine 67 -0110111110 Klaus 67 -0110111110 Evelyn 68 -0110111110 Thurgood 68 -0110111110 Brad 69 -0110111110 Philippe 69 -0110111110 Mimi 70 -0110111110 Geraldine 70 -0110111110 Carolyn 71 -0110111110 Ned 72 -0110111110 Cyril 72 -0110111110 Amy 73 -0110111110 Charming 74 -0110111110 Wendell 75 -0110111110 Enrique 75 -0110111110 Denis 76 -0110111110 Melvyn 76 -0110111110 Rudolf 76 -0110111110 Peggy 77 -0110111110 Yuri 78 -0110111110 Jason 79 -0110111110 Catherine 80 -0110111110 Adrian 80 -0110111110 Sally 80 -0110111110 Gail 81 -0110111110 D.H. 81 -0110111110 Christine 81 -0110111110 Seth 82 -0110111110 Cynthia 83 -0110111110 Elaine 84 -0110111110 Nauman 85 -0110111110 Wolfgang 85 -0110111110 J.R. 85 -0110111110 Marcel 86 -0110111110 Frederic 86 -0110111110 Aubrey 88 -0110111110 Rod 89 -0110111110 Derek 91 -0110111110 Tommy 92 -0110111110 Clyde 92 -0110111110 Dorothy 93 -0110111110 Pamela 93 -0110111110 Alain 94 -0110111110 Vladimir 96 -0110111110 Sean 96 -0110111110 Henri 97 -0110111110 Emanuel 97 -0110111110 Jorge 103 -0110111110 Brenda 104 -0110111110 Hubert 104 -0110111110 Fernand 105 -0110111110 Randy 109 -0110111110 Deborah 109 -0110111110 Terence 116 -0110111110 Mel 117 -0110111110 Joshua 120 -0110111110 Laura 121 -0110111110 Jeremy 121 -0110111110 Alvin 122 -0110111110 Stan 122 -0110111110 Lester 125 -0110111110 Janet 127 -0110111110 Felix 129 -0110111110 Julian 130 -0110111110 Rodney 131 -0110111110 LIVESTOCK 133 -0110111110 Marilyn 133 -0110111110 Roland 134 -0110111110 Roberto 136 -0110111110 Donna 140 -0110111110 Judy 140 -0110111110 Lyndon 143 -0110111110 Melvin 144 -0110111110 Chuck 145 -0110111110 Colin 153 -0110111110 Doug 154 -0110111110 Hans 157 -0110111110 Greg 157 -0110111110 Claude 161 -0110111110 Judith 167 -0110111110 Matthew 173 -0110111110 Ellen 175 -0110111110 Bobby 176 -0110111110 Clarence 183 -0110111110 Martha 185 -0110111110 Edmund 186 -0110111110 Diane 189 -0110111110 Maurice 189 -0110111110 Ira 191 -0110111110 Dave 191 -0110111110 Phillip 194 -0110111110 Andre 197 -0110111110 Jan 198 -0110111110 Karen 198 -0110111110 Guy 199 -0110111110 Bert 204 -0110111110 Kathleen 206 -0110111110 Hal 214 -0110111110 Mickey 220 -0110111110 Rick 231 -0110111110 Kurt 233 -0110111110 Sandra 234 -0110111110 GRAINS 236 -0110111110 Joan 237 -0110111110 Jerome 239 -0110111110 Carol 243 -0110111110 Tim 247 -0110111110 Jeff 250 -0110111110 Patricia 251 -0110111110 Chris 263 -0110111110 Ian 265 -0110111110 Sidney 265 -0110111110 Phil 269 -0110111110 Jon 276 -0110111110 Geoffrey 281 -0110111110 Leon 294 -0110111110 Ken 299 -0110111110 Les 302 -0110111110 Marc 304 -0110111110 Leslie 304 -0110111110 Gene 307 -0110111110 Malcolm 307 -0110111110 Allan 309 -0110111110 Jean 317 -0110111110 Laurence 330 -0110111110 Jonathan 331 -0110111110 Milton 344 -0110111110 Ben 347 -0110111110 Theodore 352 -0110111110 Linda 355 -0110111110 Hugh 358 -0110111110 Timothy 360 -0110111110 Kevin 381 -0110111110 Ron 392 -0110111110 Joel 394 -0110111110 Tony 407 -0110111110 Susan 416 -0110111110 Ernest 424 -0110111110 Stuart 430 -0110111110 Leo 432 -0110111110 Eric 433 -0110111110 Terry 437 -0110111110 Mario 438 -0110111110 Nancy 452 -0110111110 Pat 477 -0110111110 Marvin 491 -0110111110 Ted 512 -0110111110 Jay 545 -0110111110 Eugene 577 -0110111110 Bernard 595 -0110111110 Alfred 597 -0110111110 Steve 597 -0110111110 Frederick 618 -0110111110 Victor 620 -0110111110 Christopher 624 -0110111110 Ralph 699 -0110111110 Raymond 705 -0110111110 Don 712 -0110111110 Brian 742 -0110111110 Harold 775 -0110111110 Albert 808 -0110111110 Jeffrey 829 -0110111110 Andrew 840 -0110111110 Jerry 853 -0110111110 Gerald 870 -0110111110 Larry 882 -0110111110 Harry 900 -0110111110 Anthony 931 -0110111110 Tom 974 -0110111110 Fred 984 -0110111110 Steven 1070 -0110111110 Dan 1071 -0110111110 Roger 1127 -0110111110 Kenneth 1135 -0110111110 Bruce 1249 -0110111110 Gary 1420 -0110111110 Daniel 1465 -0110111110 Jim 1472 -0110111110 Stephen 1601 -0110111110 Arthur 1650 -0110111110 Mark 1660 -0110111110 Philip 1940 -0110111110 Alan 1977 -0110111110 Jack 2032 -0110111110 Donald 2471 -0110111110 Edward 2510 -0110111110 Joseph 2648 -0110111110 Peter 3133 -0110111110 Charles 3560 -0110111110 Thomas 3923 -0110111110 James 7848 -0110111110 David 5531 -0110111110 Richard 5651 -0110111110 Robert 10216 -0110111110 John 11552 -0110111110 William 7233 -0110111111 Encans 1 -0110111111 Ocal 1 -0110111111 Kalpokor 1 -0110111111 Gandra 1 -0110111111 Narcis 1 -0110111111 Edialeuda 1 -0110111111 Perles 1 -0110111111 Alfie 1 -0110111111 outgeneraled 1 -0110111111 Yusof 1 -0110111111 Doyne 1 -0110111111 TANEJA 1 -0110111111 repeater 1 -0110111111 Herty 1 -0110111111 Shashi 1 -0110111111 Ys 1 -0110111111 Gholam 1 -0110111111 Montefibre 1 -0110111111 Kathleeen 1 -0110111111 Ziaur 1 -0110111111 Starke 1 -0110111111 Jussi 1 -0110111111 Marie-Jo 1 -0110111111 Minako 1 -0110111111 Higino 1 -0110111111 Virgen 1 -0110111111 Clotildo 1 -0110111111 Alwa 1 -0110111111 Willabald 1 -0110111111 Bump 1 -0110111111 Edelmiro 1 -0110111111 Sylvain 1 -0110111111 amnistia 1 -0110111111 ley 1 -0110111111 Linsy 1 -0110111111 Zail 1 -0110111111 Buen 1 -0110111111 Thorvald 1 -0110111111 Kecker 1 -0110111111 Filtros 1 -0110111111 Constrution 1 -0110111111 Taraq 1 -0110111111 Karina 1 -0110111111 Coleen 1 -0110111111 Evon 1 -0110111111 Emily-May 1 -0110111111 Blurton 1 -0110111111 Midaq 1 -0110111111 Falwell-Pat 1 -0110111111 STRUCTURE 1 -0110111111 Chub 1 -0110111111 Filippo-Fara 1 -0110111111 lli 1 -0110111111 Mahbubur 1 -0110111111 rof 1 -0110111111 Yuya 1 -0110111111 88-91 1 -0110111111 Cpt 1 -0110111111 shimasu. 1 -0110111111 Lambertina 1 -0110111111 Bashir-ud-Din 1 -0110111111 Grossa 1 -0110111111 Simoes 1 -0110111111 CLEAVER 1 -0110111111 pre-majority 1 -0110111111 Jovita 1 -0110111111 Vladislav 1 -0110111111 Stabat 1 -0110111111 Evva 1 -0110111111 Erkki 1 -0110111111 N.T. 1 -0110111111 Ezer 1 -0110111111 Montieth 1 -0110111111 Partecipazione 1 -0110111111 Giovani 1 -0110111111 Mr.Thomas 1 -0110111111 Mahbub-ul 1 -0110111111 1,065,900 1 -0110111111 Juges 1 -0110111111 Lalit 1 -0110111111 Progres 1 -0110111111 Gurgel 1 -0110111111 Patrizia 1 -0110111111 Opieki 1 -0110111111 Imee 1 -0110111111 Moonbeam 1 -0110111111 Garney 1 -0110111111 London-born 1 -0110111111 Ziering 1 -0110111111 ascia 1 -0110111111 87-23 1 -0110111111 Jourlet 1 -0110111111 Ryo 1 -0110111111 Chevrefeuille 1 -0110111111 ecole 1 -0110111111 Clest 1 -0110111111 Purwin 1 -0110111111 Venancio 1 -0110111111 Vasek 1 -0110111111 Trashy 1 -0110111111 Kelvyn 1 -0110111111 Surjit 1 -0110111111 Hermilo 1 -0110111111 Wendall 1 -0110111111 Laage 1 -0110111111 MacNeil/ 1 -0110111111 Hasburgh-Stephen 1 -0110111111 statistics-keeper 1 -0110111111 BOB 1 -0110111111 Vajiralongkorn 1 -0110111111 novo 1 -0110111111 Chevaliers 1 -0110111111 4590 1 -0110111111 Low-Pay 1 -0110111111 Genese 1 -0110111111 Zenko 1 -0110111111 Cuba/Fuera 1 -0110111111 chemicals-maker 1 -0110111111 Krystian 1 -0110111111 lusso 1 -0110111111 Eisenhower-Robert 1 -0110111111 Cyrille 1 -0110111111 Mauran 1 -0110111111 Lightfoot 1 -0110111111 Yotaro 1 -0110111111 Shive 1 -0110111111 Fredlock 1 -0110111111 87-61 1 -0110111111 Barzikhin 1 -0110111111 Cothran 1 -0110111111 Almir 1 -0110111111 Ali-Joe 1 -0110111111 Siviglia 1 -0110111111 Barbiere 1 -0110111111 Ona 1 -0110111111 Suo 1 -0110111111 Zur 1 -0110111111 Lize 1 -0110111111 Siderugica 1 -0110111111 out-Agnewed 1 -0110111111 8714 1 -0110111111 Lolis 1 -0110111111 Gafaar 1 -0110111111 Bertel 1 -0110111111 Dunner 1 -0110111111 Bogodyazh 1 -0110111111 Wolfram 1 -0110111111 Galystin 1 -0110111111 Conrado 1 -0110111111 Wedick 1 -0110111111 Nobile 1 -0110111111 Trottoirs 1 -0110111111 Interdisciplinaria 1 -0110111111 Ardel 1 -0110111111 Quizy 1 -0110111111 Korvatunturi 1 -0110111111 Technologie 1 -0110111111 Instrucao 1 -0110111111 Qolam 1 -0110111111 Isik 1 -0110111111 CarCool 1 -0110111111 Hap 1 -0110111111 Eoghan 1 -0110111111 Zakes 1 -0110111111 89-95 1 -0110111111 88-19 1 -0110111111 Vladymir 1 -0110111111 Plus-Sociedad 1 -0110111111 Edgie 1 -0110111111 Janoski 1 -0110111111 Horning 1 -0110111111 Neubecker 1 -0110111111 Establissements 1 -0110111111 Lahan 1 -0110111111 Abdul-Raheem 1 -0110111111 Molinos 1 -0110111111 Hypo-Crit 1 -0110111111 DEMPSEY 1 -0110111111 Desmoiselles 1 -0110111111 Cavallari 1 -0110111111 Cascadura 1 -0110111111 Aunty 1 -0110111111 Gilmer 1 -0110111111 Shyamalendu 1 -0110111111 Nafis 1 -0110111111 Aletta 1 -0110111111 Especial 1 -0110111111 Abdel-Halim 1 -0110111111 Korobochka 1 -0110111111 terminalis 1 -0110111111 Ali-George 1 -0110111111 Guennady 1 -0110111111 AIU 1 -0110111111 Kashmeri 1 -0110111111 Leed 1 -0110111111 Krieg 1 -0110111111 Rosamond 1 -0110111111 Breaker 1 -0110111111 88-28 1 -0110111111 Tyll 1 -0110111111 F.V. 1 -0110111111 Murfree 1 -0110111111 Kisilyov 1 -0110111111 Mirek 1 -0110111111 Beaven 1 -0110111111 Miller/Grubb 1 -0110111111 Granata 1 -0110111111 Arias-Jared 1 -0110111111 Christer 1 -0110111111 Michihiko 1 -0110111111 88-42 1 -0110111111 88-49 1 -0110111111 Lute 1 -0110111111 Wardoyo 1 -0110111111 empathetically 1 -0110111111 Panayotis 1 -0110111111 Toi 1 -0110111111 Blier 1 -0110111111 Kater 1 -0110111111 Nadkarni 1 -0110111111 Blaque 1 -0110111111 Sulliman 1 -0110111111 CCMI/McGraw-Hill 1 -0110111111 Strekel 1 -0110111111 Linsenberg 1 -0110111111 Lieman 1 -0110111111 Rafidah 1 -0110111111 Legare 1 -0110111111 Dizak 1 -0110111111 Heitkamp 1 -0110111111 Armi 1 -0110111111 Miram 1 -0110111111 Hirano 1 -0110111111 Esercizio 1 -0110111111 88-96 1 -0110111111 88-94 1 -0110111111 Isabell 1 -0110111111 Kylie 1 -0110111111 Moreton 1 -0110111111 Manca 1 -0110111111 88-89 1 -0110111111 Bloeser 1 -0110111111 Cobern 1 -0110111111 Vallecas 1 -0110111111 Mr.Mohr 1 -0110111111 Manya 1 -0110111111 Assainissement 1 -0110111111 Carros 1 -0110111111 Hammersla 1 -0110111111 Roine 1 -0110111111 Derald 1 -0110111111 88-74 1 -0110111111 Burtch 1 -0110111111 Tamela 1 -0110111111 Speakes-Michael 1 -0110111111 Langedon 1 -0110111111 Auxiliar 1 -0110111111 Silvan 1 -0110111111 Jokichi 1 -0110111111 Sarosdy 1 -0110111111 Ramsewak 1 -0110111111 Long-time 1 -0110111111 Jog 2 -0110111111 Beulah 2 -0110111111 Sandine 2 -0110111111 Electricitie 2 -0110111111 Mirza 2 -0110111111 Khaled 2 -0110111111 Harri 2 -0110111111 Developpement 2 -0110111111 Takuma 2 -0110111111 Wrong-Way 2 -0110111111 Renay 2 -0110111111 Unsettling 2 -0110111111 Sela 2 -0110111111 Sina 2 -0110111111 Francesc 2 -0110111111 Pedroza 2 -0110111111 Bucyrus 2 -0110111111 Houshang 2 -0110111111 Bara 2 -0110111111 Benndorf 2 -0110111111 Lars-Erik 2 -0110111111 Rosamunde 2 -0110111111 Dios 2 -0110111111 Hyogo 2 -0110111111 Nihat 2 -0110111111 Homme 2 -0110111111 Informatica 2 -0110111111 Demetrios 2 -0110111111 Kaneo 2 -0110111111 Allo 2 -0110111111 Brownson 2 -0110111111 Jewelle 2 -0110111111 Arend 2 -0110111111 Katrina 2 -0110111111 Feodor 2 -0110111111 Andimo 2 -0110111111 Shingo 2 -0110111111 Edmundo 2 -0110111111 Combustiveis 2 -0110111111 Roch 2 -0110111111 Agostinho 2 -0110111111 Marko 2 -0110111111 Ro 2 -0110111111 Amr 2 -0110111111 Eudora 2 -0110111111 Bridgeport-Stamford-Norwalk-Danbury 2 -0110111111 Kamel 2 -0110111111 Cipriani 2 -0110111111 Ima 2 -0110111111 Doodles 2 -0110111111 Fingal 2 -0110111111 Gertrud 2 -0110111111 Hau 2 -0110111111 Baghiti 2 -0110111111 Susy 2 -0110111111 Cleo 2 -0110111111 Claud 2 -0110111111 Burnie 2 -0110111111 Chiung 2 -0110111111 Farrel 2 -0110111111 Nicandra 2 -0110111111 Annees 2 -0110111111 Cauff 2 -0110111111 Taya 2 -0110111111 Piemonte 2 -0110111111 Seeger 2 -0110111111 Salma 2 -0110111111 Macht 2 -0110111111 Nabil 2 -0110111111 Rollie 2 -0110111111 Lockett 2 -0110111111 deBorda 2 -0110111111 Nazionali 2 -0110111111 Yaakov 2 -0110111111 Caren 2 -0110111111 Qasim 2 -0110111111 Levine-Ivan 2 -0110111111 Matchabelli 2 -0110111111 Huw 2 -0110111111 Keifer 2 -0110111111 Chicklet 2 -0110111111 Noburo 2 -0110111111 Sveta 2 -0110111111 Gussie 2 -0110111111 Liebeslieder 2 -0110111111 Ouf 2 -0110111111 Nichole 2 -0110111111 Asa 2 -0110111111 Junzo 2 -0110111111 Aureliano 2 -0110111111 Zoya 2 -0110111111 Azmi 2 -0110111111 Scottie 2 -0110111111 Elisir 2 -0110111111 Nolfredo 2 -0110111111 Olly 2 -0110111111 Anya 2 -0110111111 Akeme 2 -0110111111 Futaba 2 -0110111111 Wil 2 -0110111111 Merrett 2 -0110111111 Gladness 2 -0110111111 Mohsen 2 -0110111111 Byun 2 -0110111111 K.M. 2 -0110111111 Rebekah 2 -0110111111 Tinsley 2 -0110111111 Terrill 2 -0110111111 Jozsef 2 -0110111111 Aeffra 2 -0110111111 Saengravi 2 -0110111111 Phog 2 -0110111111 Elke 2 -0110111111 Debora 2 -0110111111 clean-domed 2 -0110111111 Provincia 2 -0110111111 Giorgi 2 -0110111111 Eby 2 -0110111111 Gerhardt 2 -0110111111 Eda 2 -0110111111 Prakash 2 -0110111111 Shigenobu 2 -0110111111 Frederik 2 -0110111111 Pastilles 2 -0110111111 Adeline 2 -0110111111 Amar 2 -0110111111 Carlen 2 -0110111111 Jasen 2 -0110111111 Arleen 2 -0110111111 Tronquistas 2 -0110111111 Susannah 2 -0110111111 Marise 2 -0110111111 Bosko 2 -0110111111 Mithileswhar 2 -0110111111 Margrethe 2 -0110111111 Hotelier 2 -0110111111 Kenin 2 -0110111111 Whinston 2 -0110111111 Terren 2 -0110111111 Verlyn 2 -0110111111 Hamad 2 -0110111111 Mahar 2 -0110111111 Vought 2 -0110111111 Noor 2 -0110111111 Dweezil 2 -0110111111 Rone 2 -0110111111 Tedjosuwarno 2 -0110111111 Hoffinger 2 -0110111111 Plessix 2 -0110111111 Finanziamento 2 -0110111111 LaSonja 2 -0110111111 Torrence 2 -0110111111 Chatterji 2 -0110111111 Cully 2 -0110111111 Masroor 2 -0110111111 Tohru 2 -0110111111 Shahnawaz 2 -0110111111 Tikka 2 -0110111111 Sinteticas 2 -0110111111 Ebrahim 2 -0110111111 Sei 2 -0110111111 Adina 2 -0110111111 Janna 2 -0110111111 Sousuke 2 -0110111111 Obediah 2 -0110111111 Thorton 2 -0110111111 Sten 2 -0110111111 Ruy 2 -0110111111 Drue 2 -0110111111 Maximilian 2 -0110111111 Ghafoor 2 -0110111111 Lalith 2 -0110111111 Ach 2 -0110111111 Melian 2 -0110111111 pleadingly 2 -0110111111 Alojz 2 -0110111111 Kevern 2 -0110111111 Nadezhda 2 -0110111111 Holleque 2 -0110111111 Truett 2 -0110111111 Elsa-Grace 2 -0110111111 Cadell 2 -0110111111 Comtesse 2 -0110111111 Siah 2 -0110111111 Abdur 2 -0110111111 Carl-Frederik 2 -0110111111 Garrard 2 -0110111111 Tedford 2 -0110111111 Raffineries 2 -0110111111 Sil 2 -0110111111 McComb 2 -0110111111 Nobu 2 -0110111111 Lied 2 -0110111111 Empresas 2 -0110111111 Greville 2 -0110111111 BRIAN 2 -0110111111 Uffe 2 -0110111111 Gwathmey 2 -0110111111 Chiou 2 -0110111111 Kare 2 -0110111111 Jaye 2 -0110111111 Zakia 2 -0110111111 Elkan 2 -0110111111 Fredrik 2 -0110111111 Craighill 2 -0110111111 Bertell 2 -0110111111 Katsutoshi 2 -0110111111 Nicario 2 -0110111111 Campell 2 -0110111111 GQ. 2 -0110111111 Thane 2 -0110111111 Kalevi 2 -0110111111 Almon 2 -0110111111 Bongani 2 -0110111111 Elisabetta 2 -0110111111 Mainstreet 2 -0110111111 Camillo 2 -0110111111 Suzano 2 -0110111111 Bernt 2 -0110111111 ArenaBowl 2 -0110111111 Lavon 2 -0110111111 Jameel 2 -0110111111 Y.T. 2 -0110111111 Roxie 2 -0110111111 Ebola 2 -0110111111 Munim 2 -0110111111 Loni 2 -0110111111 Flecha 2 -0110111111 Ramalho 2 -0110111111 Rino 2 -0110111111 Hautes 2 -0110111111 Christophe 3 -0110111111 Xia 3 -0110111111 Barnaby 3 -0110111111 Kiichiro 3 -0110111111 Boundary 3 -0110111111 Hermione 3 -0110111111 Digby 3 -0110111111 Bhaskar 3 -0110111111 Durwood 3 -0110111111 Atlee 3 -0110111111 Eugenia 3 -0110111111 Aimee 3 -0110111111 Spurgeon 3 -0110111111 Inge 3 -0110111111 Dalila 3 -0110111111 Mi 3 -0110111111 Inder 3 -0110111111 Abdul-Aziz 3 -0110111111 Vladek 3 -0110111111 Kosta 3 -0110111111 Estella 3 -0110111111 Henrique 3 -0110111111 Mayotte 3 -0110111111 Orley 3 -0110111111 Cor 3 -0110111111 Adi 3 -0110111111 Bazyli 3 -0110111111 Murry 3 -0110111111 Conceicao 3 -0110111111 D.T. 3 -0110111111 Rosso 3 -0110111111 Domenico 3 -0110111111 Vasso 3 -0110111111 Shozo 3 -0110111111 Antena-3 3 -0110111111 Labib 3 -0110111111 Coletta 3 -0110111111 Tatyana 3 -0110111111 Edie 3 -0110111111 Nobuko 3 -0110111111 Megat 3 -0110111111 Townes 3 -0110111111 Bezal 3 -0110111111 Hermosa 3 -0110111111 Bramham 3 -0110111111 MACY 3 -0110111111 Rodion 3 -0110111111 Cipriano 3 -0110111111 Loyd 3 -0110111111 Nachun 3 -0110111111 Uma 3 -0110111111 Lefferts 3 -0110111111 Chieko 3 -0110111111 Loree 3 -0110111111 Shere 3 -0110111111 Henrich 3 -0110111111 Moncure 3 -0110111111 Sleigh 3 -0110111111 B.N. 3 -0110111111 Armon 3 -0110111111 Stavros 3 -0110111111 Yolanda 3 -0110111111 Toshihiro 3 -0110111111 Kei 3 -0110111111 Talton 3 -0110111111 Chinua 3 -0110111111 Estelle 3 -0110111111 Haeworth 3 -0110111111 Cluck 3 -0110111111 Contes 3 -0110111111 Ria 3 -0110111111 Goldwin 3 -0110111111 Clarice 3 -0110111111 Zeke 3 -0110111111 Hoai 3 -0110111111 Fra 3 -0110111111 Pere 3 -0110111111 Eisaku 3 -0110111111 G.S. 3 -0110111111 Duesenberg 3 -0110111111 Rauf 3 -0110111111 Guillermina 3 -0110111111 Lynwood 3 -0110111111 Annee 3 -0110111111 Alun 3 -0110111111 Zach 3 -0110111111 Noreen 3 -0110111111 Kitaro 3 -0110111111 Folke 3 -0110111111 Einson 3 -0110111111 Leyla 3 -0110111111 Velma 3 -0110111111 Pietie 3 -0110111111 Latif 3 -0110111111 Gilda 3 -0110111111 Kjell-Olof 3 -0110111111 Zeng 3 -0110111111 Sadeq 3 -0110111111 Romulo 3 -0110111111 Sigurd 3 -0110111111 Issac 3 -0110111111 Frits 3 -0110111111 Genty 3 -0110111111 Vard 3 -0110111111 Cherries 3 -0110111111 Virgilia 3 -0110111111 Kinnie 3 -0110111111 Camilo 3 -0110111111 Reinder 3 -0110111111 Liebe 3 -0110111111 Zelda 3 -0110111111 Lis 3 -0110111111 Savas 3 -0110111111 Franz-Josef 3 -0110111111 Zeno 3 -0110111111 Fermin 3 -0110111111 Marisol 3 -0110111111 Fen 3 -0110111111 Delma 3 -0110111111 Iben 3 -0110111111 Mathew 3 -0110111111 Leticia 3 -0110111111 Risparmio 3 -0110111111 Fereira 3 -0110111111 M.B. 3 -0110111111 Papel 3 -0110111111 Emmet 3 -0110111111 Alvar 3 -0110111111 Yitzak 3 -0110111111 Montserrat 3 -0110111111 Studs 3 -0110111111 Pyotr 3 -0110111111 Seweryn 3 -0110111111 Manly 3 -0110111111 Finis 3 -0110111111 Luder 3 -0110111111 Carman 3 -0110111111 Karene 3 -0110111111 Tenley 3 -0110111111 P.K. 3 -0110111111 Ove 3 -0110111111 Majid 3 -0110111111 Gruff 3 -0110111111 Chace 3 -0110111111 Phisit 3 -0110111111 Avital 3 -0110111111 Valentina 3 -0110111111 Bronislaw 3 -0110111111 Eliezer 3 -0110111111 Neils 3 -0110111111 Demoiselles 4 -0110111111 Peyton 4 -0110111111 Bayardo 4 -0110111111 Kisho 4 -0110111111 Amity 4 -0110111111 Popolare 4 -0110111111 Lise 4 -0110111111 Hosein 4 -0110111111 General-Secretary 4 -0110111111 M.K. 4 -0110111111 Nozze 4 -0110111111 Lacroze 4 -0110111111 Broe 4 -0110111111 Vitali 4 -0110111111 Vande 4 -0110111111 Shuzo 4 -0110111111 Timoci 4 -0110111111 Rachmat 4 -0110111111 Moeen 4 -0110111111 Yitshak 4 -0110111111 Ky 4 -0110111111 Sledge 4 -0110111111 Rhiannon 4 -0110111111 Rollin 4 -0110111111 Kornick 4 -0110111111 Jamil 4 -0110111111 Boutros 4 -0110111111 Albertina 4 -0110111111 Elma 4 -0110111111 Hyacinth 4 -0110111111 Kuniji 4 -0110111111 Ismael 4 -0110111111 Cleon 4 -0110111111 Lennie 4 -0110111111 Lenora 4 -0110111111 Mattie 4 -0110111111 Deyo 4 -0110111111 Kwai 4 -0110111111 Augustin 4 -0110111111 Yehuda 4 -0110111111 Lizzie 4 -0110111111 Suliman 4 -0110111111 Shep 4 -0110111111 Yael 4 -0110111111 Celestino 4 -0110111111 Imad 4 -0110111111 Vanni 4 -0110111111 Janelle 4 -0110111111 Herm 4 -0110111111 Ragnar 4 -0110111111 Hyung 4 -0110111111 Glenys 4 -0110111111 Yusuf 4 -0110111111 Barak 4 -0110111111 Mare 4 -0110111111 Denes 4 -0110111111 Wackerle 4 -0110111111 Zygmunt 4 -0110111111 Codex 4 -0110111111 Darnell 4 -0110111111 Dominee 4 -0110111111 Im 4 -0110111111 Betti 4 -0110111111 Tak 4 -0110111111 Bessie 4 -0110111111 Karol 4 -0110111111 Beyers 4 -0110111111 Chloe 4 -0110111111 Lysander 4 -0110111111 T.W. 4 -0110111111 Enos 4 -0110111111 Christos 4 -0110111111 Sucocitrico 4 -0110111111 Ester 4 -0110111111 Deke 4 -0110111111 Etoile 4 -0110111111 Mavis 4 -0110111111 affaire 4 -0110111111 Morarji 4 -0110111111 Museo 4 -0110111111 Justus 4 -0110111111 Dano 4 -0110111111 Athol 4 -0110111111 Petra 4 -0110111111 Adriaan 4 -0110111111 Lewie 4 -0110111111 Zahra 4 -0110111111 Ein 4 -0110111111 Brandy 4 -0110111111 Jessie 4 -0110111111 Norby 4 -0110111111 Hedda 4 -0110111111 Alfons 4 -0110111111 Henrietta 4 -0110111111 Jose-Maria 4 -0110111111 Grossinger 4 -0110111111 Malachi 5 -0110111111 Isa 5 -0110111111 M.G. 5 -0110111111 Ripa 5 -0110111111 Natasha 5 -0110111111 Barend 5 -0110111111 Letty 5 -0110111111 Lula 5 -0110111111 Kokoi 5 -0110111111 Norrie 5 -0110111111 Alexandre 5 -0110111111 Chaim 5 -0110111111 Courbet 5 -0110111111 Takis 5 -0110111111 Espirito 5 -0110111111 Anjelica 5 -0110111111 Aquilino 5 -0110111111 Luisa 5 -0110111111 Ryszard 5 -0110111111 Leila 5 -0110111111 Newcomer 5 -0110111111 Colombe 5 -0110111111 Marcelino 5 -0110111111 Martyn 5 -0110111111 Yaqub 5 -0110111111 Euterpe 5 -0110111111 Dusty 5 -0110111111 Ronny 5 -0110111111 Liam 5 -0110111111 Fatima 5 -0110111111 R.F. 5 -0110111111 Mordecai 5 -0110111111 Stoffel 5 -0110111111 Akram 5 -0110111111 Adolphe 5 -0110111111 Erin 5 -0110111111 Alphonse 5 -0110111111 Cai 5 -0110111111 Olnick 5 -0110111111 Amintore 5 -0110111111 B.T. 5 -0110111111 Gerd 5 -0110111111 Todor 5 -0110111111 Pino 5 -0110111111 Gosta 5 -0110111111 Scoop 5 -0110111111 Claeys 5 -0110111111 Arkadi 5 -0110111111 Romaine 5 -0110111111 Margit 5 -0110111111 Hendrik 5 -0110111111 Karlis 5 -0110111111 Rhys 5 -0110111111 Ambler 5 -0110111111 Michal 5 -0110111111 Jodie 5 -0110111111 Patsy 5 -0110111111 Mohan 5 -0110111111 Quotidien 5 -0110111111 Takaji 5 -0110111111 Midge 5 -0110111111 FAULDING 5 -0110111111 Panitch 5 -0110111111 Elwood 5 -0110111111 Osvaldo 5 -0110111111 Svetlana 5 -0110111111 Adalberto 5 -0110111111 Daniele 5 -0110111111 Heiner 5 -0110111111 Cornelis 5 -0110111111 Odell 5 -0110111111 Phillippe 5 -0110111111 Tamino 5 -0110111111 Cuyler 5 -0110111111 Ennio 5 -0110111111 Teh 5 -0110111111 Polay 5 -0110111111 Khe 5 -0110111111 Dov 5 -0110111111 Honore 5 -0110111111 Kirsten 5 -0110111111 Nouvelles 5 -0110111111 89-99 6 -0110111111 Maxine 6 -0110111111 Omer 6 -0110111111 Wahid 6 -0110111111 Chemins 6 -0110111111 Rafe 6 -0110111111 I.T. 6 -0110111111 Yasir 6 -0110111111 Aryeh 6 -0110111111 Juanito 6 -0110111111 Abreu 6 -0110111111 Heenan 6 -0110111111 Mershon 6 -0110111111 Rolfe 6 -0110111111 Danilo 6 -0110111111 Randi 6 -0110111111 Chandra 6 -0110111111 H.A. 6 -0110111111 Gabrielle 6 -0110111111 Arlie 6 -0110111111 Wladyslaw 6 -0110111111 Mariko 6 -0110111111 Panos 6 -0110111111 Swartwood 6 -0110111111 Valeri 6 -0110111111 Astrid 6 -0110111111 Dona 6 -0110111111 Dmitry 6 -0110111111 Sondra 6 -0110111111 Alonzo 6 -0110111111 Hiroyasu 6 -0110111111 Schwarze 6 -0110111111 Xenophon 6 -0110111111 Rahila 6 -0110111111 Lilian 6 -0110111111 Chana 6 -0110111111 Gerardo 6 -0110111111 Beland 6 -0110111111 Jeannette 6 -0110111111 Bruskin 6 -0110111111 Tyrell 6 -0110111111 Matias 6 -0110111111 Artur 6 -0110111111 Collin 6 -0110111111 Forza 6 -0110111111 Lorie 6 -0110111111 Templar 6 -0110111111 Bourses 6 -0110111111 H.I. 6 -0110111111 Haim 6 -0110111111 Winton 6 -0110111111 Rawn 6 -0110111111 Cassandra 6 -0110111111 Adriana 6 -0110111111 las 6 -0110111111 Randell 6 -0110111111 D.W. 6 -0110111111 PAUL 6 -0110111111 Erika 6 -0110111111 Howie 6 -0110111111 Opere 7 -0110111111 Alonso 7 -0110111111 Zhou 7 -0110111111 A.K. 7 -0110111111 Erica 7 -0110111111 Qiao 7 -0110111111 Garret 7 -0110111111 Jann 7 -0110111111 Markus 7 -0110111111 Kwan 7 -0110111111 Sparky 7 -0110111111 Lorena 7 -0110111111 Agustin 7 -0110111111 Elie 7 -0110111111 Etablissements 7 -0110111111 Miklos 7 -0110111111 Baillie 7 -0110111111 Leszek 7 -0110111111 Ingo 7 -0110111111 Krzysztof 7 -0110111111 Horacio 7 -0110111111 Myrick 7 -0110111111 Stanislav 7 -0110111111 Blaise 7 -0110111111 Corky 7 -0110111111 Jodi 7 -0110111111 Mystere 7 -0110111111 Franck 7 -0110111111 Ari 7 -0110111111 Aileen 7 -0110111111 Lynette 7 -0110111111 Padua 7 -0110111111 Parnell 7 -0110111111 Tipper 7 -0110111111 Damm 7 -0110111111 Earnest 7 -0110111111 Bayard 7 -0110111111 Roi 7 -0110111111 Ko 7 -0110111111 Schuyler 7 -0110111111 B.S. 7 -0110111111 Jens 7 -0110111111 Gennaro 7 -0110111111 Casimir 7 -0110111111 Freya 7 -0110111111 Stig 7 -0110111111 Morten 7 -0110111111 Ion 7 -0110111111 Rhoda 7 -0110111111 Truong 7 -0110111111 Yehudi 7 -0110111111 Elinor 7 -0110111111 Jovito 7 -0110111111 Christiaan 7 -0110111111 Hattie 7 -0110111111 Filippo 7 -0110111111 Getulio 7 -0110111111 Doreen 7 -0110111111 Karl-Otto 7 -0110111111 Kanon 7 -0110111111 Crispin 7 -0110111111 Heyward 7 -0110111111 Licio 7 -0110111111 Ding 7 -0110111111 Sigourney 7 -0110111111 F.N. 7 -0110111111 Nico 7 -0110111111 B.H. 7 -0110111111 Mahatma 7 -0110111111 Burkhard 8 -0110111111 Kunio 8 -0110111111 Jurgen 8 -0110111111 Jean-Bernard 8 -0110111111 Felicity 8 -0110111111 Kalman 8 -0110111111 Pik 8 -0110111111 Oren 8 -0110111111 Terrance 8 -0110111111 Arline 8 -0110111111 Cyndi 8 -0110111111 Rickey 8 -0110111111 Bynum 8 -0110111111 W.E. 8 -0110111111 Florentino 8 -0110111111 Arno 8 -0110111111 Pellegrino 8 -0110111111 Bret 8 -0110111111 Allyn 8 -0110111111 Masayoshi 8 -0110111111 Elger 8 -0110111111 Castor 8 -0110111111 Garn-St 8 -0110111111 Onni 8 -0110111111 Sly 8 -0110111111 Bertin 8 -0110111111 Thabo 8 -0110111111 Pas 8 -0110111111 Olaf 8 -0110111111 Vasco 8 -0110111111 Q.T. 8 -0110111111 Ezekiel 8 -0110111111 Syndicats 8 -0110111111 Marv 8 -0110111111 Ephraim 8 -0110111111 Bulent 8 -0110111111 Lien 8 -0110111111 Vickie 8 -0110111111 Cedric 8 -0110111111 E.C. 8 -0110111111 Wyche 8 -0110111111 por 8 -0110111111 Yo 8 -0110111111 Thelma 8 -0110111111 Yoshikazu 8 -0110111111 Susanna 8 -0110111111 Elvira 8 -0110111111 Willi 8 -0110111111 Arlin 8 -0110111111 Dorian 8 -0110111111 Milledge 8 -0110111111 Wonda 8 -0110111111 Salah 8 -0110111111 Arvid 8 -0110111111 Alban 8 -0110111111 Iosif 8 -0110111111 Binkley 8 -0110111111 Arnaldo 8 -0110111111 Lonesome 8 -0110111111 Bijan 8 -0110111111 J.V. 9 -0110111111 Tanya 9 -0110111111 Magdalena 9 -0110111111 Mikey 9 -0110111111 Rosie 9 -0110111111 Nizar 9 -0110111111 Slobodan 9 -0110111111 Jeana 9 -0110111111 Rory 9 -0110111111 Muffy 9 -0110111111 Elbert 9 -0110111111 Minnie 9 -0110111111 Judah 9 -0110111111 Evel 9 -0110111111 Kenton 9 -0110111111 Gert 9 -0110111111 A.R. 9 -0110111111 Rufus 9 -0110111111 Jun 9 -0110111111 Mendes 9 -0110111111 Czeslaw 9 -0110111111 F.J. 9 -0110111111 Leopoldo 9 -0110111111 Yosef 9 -0110111111 Nellie 9 -0110111111 Elia 9 -0110111111 Deanna 9 -0110111111 Vitaly 9 -0110111111 Yannick 9 -0110111111 Piero 9 -0110111111 Jewell 9 -0110111111 Financement 9 -0110111111 Celso 9 -0110111111 Renata 9 -0110111111 Stefano 9 -0110111111 Tess 9 -0110111111 Marius 10 -0110111111 Tylee 10 -0110111111 Anselm 10 -0110111111 Fayez 10 -0110111111 Nell 10 -0110111111 Gram 10 -0110111111 Onno 10 -0110111111 Hasan 10 -0110111111 Ciriaco 10 -0110111111 Gro 10 -0110111111 Prosper 10 -0110111111 Konstantin 10 -0110111111 Galen 10 -0110111111 Companhia 10 -0110111111 Dottie 10 -0110111111 Automoviles 10 -0110111111 Kakuei 10 -0110111111 Karel 10 -0110111111 Mitchel 10 -0110111111 F.M. 10 -0110111111 Milian 10 -0110111111 Elijah 10 -0110111111 Cesare 10 -0110111111 Ileana 10 -0110111111 E.S. 10 -0110111111 Skelly 10 -0110111111 Maris 10 -0110111111 Vinnie 10 -0110111111 Graydon 10 -0110111111 Johanna 10 -0110111111 Pasquale 10 -0110111111 Pinot 10 -0110111111 Kung 10 -0110111111 Masaaki 10 -0110111111 Isabella 10 -0110111111 Pico 10 -0110111111 Tone 11 -0110111111 Jacek 11 -0110111111 Clell 11 -0110111111 Ishaq 11 -0110111111 Dort 11 -0110111111 Itzhak 11 -0110111111 Allerton 11 -0110111111 Solita 11 -0110111111 Tawana 11 -0110111111 Whoopi 11 -0110111111 Glenda 11 -0110111111 Harvie 11 -0110111111 Coco 11 -0110111111 Anatoli 11 -0110111111 Lucinda 11 -0110111111 Georgi 11 -0110111111 Siegmund 11 -0110111111 Veronica 11 -0110111111 Fergus 11 -0110111111 Maeda 11 -0110111111 Selwyn 11 -0110111111 R.A. 11 -0110111111 Bea 11 -0110111111 Gina 11 -0110111111 JoAnne 11 -0110111111 Hillary 11 -0110111111 Sophie 11 -0110111111 Lino 11 -0110111111 Lena 12 -0110111111 Antonia 12 -0110111111 Matthias 12 -0110111111 Puppy 12 -0110111111 Darlene 12 -0110111111 Bertha 12 -0110111111 Sherrill 12 -0110111111 Gregor 12 -0110111111 Sinn 12 -0110111111 Joaquim 12 -0110111111 Jock 12 -0110111111 Marceau 12 -0110111111 Sonia 12 -0110111111 Yoshiaki 12 -0110111111 Haskell 12 -0110111111 J.S. 12 -0110111111 Pasco 12 -0110111111 Leah 12 -0110111111 Uzi 12 -0110111111 Margarita 12 -0110111111 Joanna 12 -0110111111 Devan 12 -0110111111 Leap 12 -0110111111 Ryutaro 12 -0110111111 Mendonca 12 -0110111111 Vivian 13 -0110111111 Rae 13 -0110111111 Xavier 13 -0110111111 Sholem 13 -0110111111 Alvaro 13 -0110111111 Rube 13 -0110111111 Govan 13 -0110111111 Hinshaw 13 -0110111111 Slade 13 -0110111111 Dolores 13 -0110111111 Scot 13 -0110111111 Waldo 13 -0110111111 Wilma 13 -0110111111 Danielle 13 -0110111111 Faisal 13 -0110111111 Amiram 13 -0110111111 Participations 13 -0110111111 Poul 13 -0110111111 Nicole 13 -0110111111 Wilfried 13 -0110111111 Selig 13 -0110111111 Irma 13 -0110111111 Haruo 13 -0110111111 Tomilson 13 -0110111111 Alta 13 -0110111111 Reggie 13 -0110111111 D.A. 13 -0110111111 Vin 13 -0110111111 Conan 13 -0110111111 J.K. 13 -0110111111 Samora 13 -0110111111 Charley 13 -0110111111 Jeb 14 -0110111111 Tian 14 -0110111111 Pauli 14 -0110111111 Moteurs 14 -0110111111 Alix 14 -0110111111 Ingvar 14 -0110111111 Madeline 14 -0110111111 Dora 14 -0110111111 Patricio 14 -0110111111 Meir 14 -0110111111 Natan 14 -0110111111 Saeed 14 -0110111111 Valle 14 -0110111111 Ismail 14 -0110111111 Amber 14 -0110111111 W.A. 14 -0110111111 Gino 14 -0110111111 Hossein 14 -0110111111 Bianca 14 -0110111111 Tyrone 14 -0110111111 S.J. 14 -0110111111 Yukio 14 -0110111111 Ingrid 14 -0110111111 Adrienne 14 -0110111111 Ozzie 15 -0110111111 Adele 15 -0110111111 Yutaka 15 -0110111111 Christoph 15 -0110111111 Harrold 15 -0110111111 Vie 15 -0110111111 Nate 15 -0110111111 Edna 15 -0110111111 Stacey 15 -0110111111 Jozef 15 -0110111111 Juana 15 -0110111111 Toshiki 15 -0110111111 Charlton 15 -0110111111 Teodoro 15 -0110111111 Barnet 15 -0110111111 Yuli 15 -0110111111 Seiji 15 -0110111111 Bettino 15 -0110111111 Bao 15 -0110111111 Prudence 15 -0110111111 Vasily 15 -0110111111 Nahum 15 -0110111111 Fuhrman 15 -0110111111 Marcello 15 -0110111111 Tariq 15 -0110111111 Gholamreza 15 -0110111111 Lila 16 -0110111111 Vera 16 -0110111111 Whitey 16 -0110111111 Gonzalo 16 -0110111111 Elena 16 -0110111111 Jac 16 -0110111111 Spiro 16 -0110111111 Ingmar 16 -0110111111 M.S. 16 -0110111111 Richie 16 -0110111111 Jeanette 16 -0110111111 Ida 16 -0110111111 Mandy 16 -0110111111 Lydia 16 -0110111111 Ignacio 17 -0110111111 Elmore 17 -0110111111 Baie 17 -0110111111 Reinhard 17 -0110111111 Raisa 17 -0110111111 Detente 17 -0110111111 Menachem 17 -0110111111 Simone 17 -0110111111 Isabelle 17 -0110111111 Vanessa 17 -0110111111 Linn 17 -0110111111 Trammel 17 -0110111111 Frans 18 -0110111111 Masao 18 -0110111111 A.A. 18 -0110111111 Moselle 18 -0110111111 Chet 18 -0110111111 Khalil 18 -0110111111 Karoly 18 -0110111111 Abbie 18 -0110111111 Memel 18 -0110111111 Rodrigo 18 -0110111111 Flores 18 -0110111111 Cordell 18 -0110111111 Maurizio 18 -0110111111 Tatiana 18 -0110111111 Tadeusz 19 -0110111111 Jeffery 19 -0110111111 Heather 19 -0110111111 Marianne 19 -0110111111 Armin 19 -0110111111 Shoji 19 -0110111111 Yelena 19 -0110111111 Lynda 19 -0110111111 K.C. 19 -0110111111 Butch 19 -0110111111 Zahir 19 -0110111111 Brenton 19 -0110111111 Pancho 19 -0110111111 Joao 19 -0110111111 Konrad 19 -0110111111 Lucille 19 -0110111111 Printon 19 -0110111111 Peg 19 -0110111111 Penelope 19 -0110111111 Rodgin 19 -0110111111 Verne 19 -0110111111 Alma 19 -0110111111 Frankie 19 -0110111111 Rosalie 19 -0110111111 Kyle 20 -0110111111 Nat 20 -0110111111 Alexis 20 -0110111111 Geraldo 20 -0110111111 Gayle 20 -0110111111 Alva 20 -0110111111 Corey 20 -0110111111 Patty 20 -0110111111 Stokely 20 -0110111111 Lazaro 20 -0110111111 Chic 20 -0110111111 Mahmoud 20 -0110111111 Arne 20 -0110111111 Maya 20 -0110111111 Humberto 21 -0110111111 Raoul 21 -0110111111 Marjorie 21 -0110111111 Yoram 21 -0110111111 Flora 21 -0110111111 Gideon 21 -0110111111 Nestor 21 -0110111111 Smoot 21 -0110111111 Olof 21 -0110111111 Rhett 21 -0110111111 Faure 21 -0110111111 Liliana 21 -0110111111 los 21 -0110111111 creme 21 -0110111111 Hobart 21 -0110111111 Serge 21 -0110111111 F.C. 21 -0110111111 Salman 22 -0110111111 Tamara 22 -0110111111 Josephine 22 -0110111111 Theresa 22 -0110111111 Emeritus 22 -0110111111 Renato 22 -0110111111 Generales 22 -0110111111 Cornish 22 -0110111111 Zimbalist 22 -0110111111 Toby 22 -0110111111 Indira 22 -0110111111 Karin 22 -0110111111 Roscoe 22 -0110111111 Abdel 22 -0110111111 Christina 22 -0110111111 Gresham 22 -0110111111 Boyden 22 -0110111111 Leonardo 22 -0110111111 Nathaniel 23 -0110111111 C.D. 23 -0110111111 Phoebe 23 -0110111111 Joerg 23 -0110111111 Ursula 23 -0110111111 Igor 23 -0110111111 Lucien 23 -0110111111 Camille 23 -0110111111 Seward 23 -0110111111 Bertram 24 -0110111111 Val 24 -0110111111 Mohamed 24 -0110111111 H.B. 24 -0110111111 Sander 24 -0110111111 Cavaco 24 -0110111111 Nan 24 -0110111111 Giancarlo 24 -0110111111 Dustin 25 -0110111111 Buster 25 -0110111111 Edzard 25 -0110111111 Dominique 25 -0110111111 Anspach 25 -0110111111 Bernardo 25 -0110111111 Natalie 25 -0110111111 D.J. 25 -0110111111 Sosuke 26 -0110111111 Alfonso 26 -0110111111 Jody 26 -0110111111 Sebastian 26 -0110111111 Faye 26 -0110111111 Katie 26 -0110111111 Alf 26 -0110111111 Libby 26 -0110111111 Jerrold 26 -0110111111 Luigi 26 -0110111111 A.S. 27 -0110111111 Franklyn 27 -0110111111 Ruby 27 -0110111111 Antoine 27 -0110111111 Josh 27 -0110111111 Hans-Dietrich 27 -0110111111 Clarkson 27 -0110111111 Roxanne 27 -0110111111 Gunther 27 -0110111111 Joker 27 -0110111111 Elisabeth 28 -0110111111 Pam 28 -0110111111 Mohammad 28 -0110111111 Rodolfo 28 -0110111111 Alton 28 -0110111111 Rosario 28 -0110111111 Jenny 28 -0110111111 Orville 29 -0110111111 Theo 29 -0110111111 Zachary 29 -0110111111 Candidate 29 -0110111111 Lily 29 -0110111111 Grover 29 -0110111111 Julien 29 -0110111111 Adolf 30 -0110111111 Felipe 30 -0110111111 Nguyen 30 -0110111111 Tadashi 30 -0110111111 Eva 30 -0110111111 Renaud 30 -0110111111 Wilhelm 30 -0110111111 Etienne 31 -0110111111 Stefan 31 -0110111111 Lars 31 -0110111111 T.J. 31 -0110111111 Sylvia 31 -0110111111 Dietrich 31 -0110111111 Hernan 31 -0110111111 Virgil 31 -0110111111 Jervis 31 -0110111111 Lucia 31 -0110111111 al 31 -0110111111 Neville 31 -0110111111 Pascal 31 -0110111111 Vaughn 31 -0110111111 Francesco 31 -0110111111 Fran 31 -0110111111 Nora 32 -0110111111 Vito 32 -0110111111 Manny 32 -0110111111 Guido 32 -0110111111 P.W. 32 -0110111111 Lorraine 32 -0110111111 Mats 32 -0110111111 Vanna 32 -0110111111 Dizzy 33 -0110111111 Stephan 33 -0110111111 Salim 33 -0110111111 Archie 33 -0110111111 Gustavo 33 -0110111111 Landon 33 -0110111111 Jerzy 33 -0110111111 Clement 34 -0110111111 Lori 34 -0110111111 Darwin 34 -0110111111 Clare 34 -0110111111 Siegfried 34 -0110111111 Alexandra 34 -0110111111 Cornelius 34 -0110111111 Thom 34 -0110111111 Vince 34 -0110111111 Huey 35 -0110111111 Benito 35 -0110111111 Wanda 35 -0110111111 Sammy 35 -0110111111 Patti 35 -0110111111 Ethel 35 -0110111111 Janos 36 -0110111111 Marian 36 -0110111111 Prentice 36 -0110111111 Agnes 36 -0110111111 Silas 36 -0110111111 Dieter 36 -0110111111 Leona 36 -0110111111 Sherry 37 -0110111111 Axel 37 -0110111111 Wojciech 37 -0110111111 Smokey 37 -0110111111 Moshe 38 -0110111111 Turgut 38 -0110111111 Wally 38 -0110111111 Tina 38 -0110111111 Bart 38 -0110111111 Homer 38 -0110111111 Elton 38 -0110111111 Giles 39 -0110111111 Armando 39 -0110111111 Mick 40 -0110111111 Santo 40 -0110111111 Wilmer 40 -0110111111 Tammy 40 -0110111111 Justin 40 -0110111111 Tomas 41 -0110111111 Sihanouk 41 -0110111111 Earle 41 -0110111111 Jasper 42 -0110111111 Lillian 42 -0110111111 Debbie 42 -0110111111 Claudia 42 -0110111111 Laszlo 42 -0110111111 Sol 43 -0110111111 Georg 43 -0110111111 Ezra 43 -0110111111 Pablo 43 -0110111111 Halsey 43 -0110111111 Lucy 43 -0110111111 A.M. 43 -0110111111 Travis 43 -0110111111 Friedrich 44 -0110111111 Sherlock 44 -0110111111 Cathy 44 -0110111111 Antony 44 -0110111111 Emily 44 -0110111111 Carrie 44 -0110111111 J.A. 44 -0110111111 Harriet 44 -0110111111 Ike 45 -0110111111 Mort 45 -0110111111 Maggie 46 -0110111111 Bo 46 -0110111111 Benedict 46 -0110111111 U. 46 -0110111111 Hajime 46 -0110111111 Ludwig 46 -0110111111 Kendrick 46 -0110111111 Ernie 46 -0110111111 Sergei 47 -0110111111 Amanda 47 -0110111111 Arlen 47 -0110111111 Courtney 47 -0110111111 Melissa 47 -0110111111 Sheriff 48 -0110111111 Quentin 48 -0110111111 Arch 48 -0110111111 Imelda 48 -0110111111 Ulysses 48 -0110111111 Jo 48 -0110111111 Dante 48 -0110111111 Julio 48 -0110111111 Forrest 49 -0110111111 Raphael 49 -0110111111 Paolo 49 -0110111111 Anatoly 49 -0110111111 Rachel 49 -0110111111 Cote 50 -0110111111 Aga 50 -0110111111 Clint 50 -0110111111 Ramon 50 -0110111111 Julia 50 -0110111111 Hector 50 -0110111111 Monty 51 -0110111111 Angela 51 -0110111111 Tip 51 -0110111111 Trent 51 -0110111111 M.W. 52 -0110111111 Rex 52 -0110111111 Nina 52 -0110111111 Benny 52 -0110111111 Giscard 52 -0110111111 Jessica 52 -0110111111 Gavin 53 -0110111111 Mortimer 53 -0110111111 Tracy 53 -0110111111 Erwin 53 -0110111111 Weldon 53 -0110111111 Abel 54 -0110111111 Loren 54 -0110111111 Zbigniew 54 -0110111111 Bernhard 54 -0110111111 Angus 54 -0110111111 Newt 55 -0110111111 Kitty 55 -0110111111 Ma 55 -0110111111 Rilwanu 55 -0110111111 Eleanor 55 -0110111111 Reuben 55 -0110111111 A.B. 56 -0110111111 Matt 57 -0110111111 Dawn 57 -0110111111 Andres 57 -0110111111 Cary 57 -0110111111 Elmer 57 -0110111111 Emmett 57 -0110111111 Hank 58 -0110111111 Ahmed 58 -0110111111 Ferreira 58 -0110111111 Russ 59 -0110111111 Ricardo 59 -0110111111 Nikolai 59 -0110111111 Wesley 59 -0110111111 Usines 59 -0110111111 Margo 59 -0110111111 Mailson 60 -0110111111 Sumner 60 -0110111111 Andrei 60 -0110111111 Sonny 60 -0110111111 Penny 61 -0110111111 Louise 61 -0110111111 Augusto 61 -0110111111 Leigh 61 -0110111111 Nazionale 62 -0110111111 Vic 62 -0110111111 Cesar 63 -0110111111 Kate 63 -0110111111 Woodrow 63 -0110111111 Annie 63 -0110111111 Rudy 64 -0110111111 Lyn 64 -0110111111 Count 64 -0110111111 Coach 65 -0110111111 Wilfred 65 -0110111111 Angelo 65 -0110111111 Frances 67 -0110111111 Olivier 67 -0110111111 Hisham 67 -0110111111 Caroline 69 -0110111111 Nolan 69 -0110111111 J.B. 70 -0110111111 Hashemi 70 -0110111111 Andrea 70 -0110111111 Rajiv 71 -0110111111 Adnan 71 -0110111111 Beth 72 -0110111111 Sergio 72 -0110111111 Strom 73 -0110111111 Shimon 73 -0110111111 Giovanni 73 -0110111111 Dexter 74 -0110111111 Colby 74 -0110111111 Garth 74 -0110111111 Mona 74 -0110111111 Edsel 74 -0110111111 Orrin 75 -0110111111 Dilson 75 -0110111111 Barrington 75 -0110111111 Kit 76 -0110111111 Assurances 76 -0110111111 Abdul 77 -0110111111 Marty 77 -0110111111 Lew 78 -0110111111 Fritz 78 -0110111111 Lacy 80 -0110111111 Brandon 81 -0110111111 Herb 82 -0110111111 Evan 82 -0110111111 Yitzhak 82 -0110111111 Gil 84 -0110111111 Alberto 84 -0110111111 Buddy 84 -0110111111 Wilbur 84 -0110111111 Gloria 84 -0110111111 Cliff 85 -0110111111 Laurie 85 -0110111111 Patton 85 -0110111111 Eduard 87 -0110111111 Pedro 89 -0110111111 Eduardo 89 -0110111111 Arturo 91 -0110111111 Pink 92 -0110111111 Elias 92 -0110111111 Molly 92 -0110111111 Satoshi 92 -0110111111 Erich 93 -0110111111 Carmen 94 -0110111111 Julie 94 -0110111111 Rene 94 -0110111111 Sue 95 -0110111111 Lawton 97 -0110111111 Dudley 99 -0110111111 Edouard 100 -0110111111 Franz 100 -0110111111 Noel 100 -0110111111 Woody 101 -0110111111 Jaime 101 -0110111111 Sandy 102 -0110111111 Angel 102 -0110111111 Sid 103 -0110111111 Jamie 103 -0110111111 Elliot 104 -0110111111 Lamar 106 -0110111111 Gabriel 106 -0110111111 Floyd 107 -0110111111 Nick 108 -0110111111 Shelby 110 -0110111111 Armand 116 -0110111111 Marie 116 -0110111111 Otis 116 -0110111111 Leland 118 -0110111111 Lisa 118 -0110111111 Boris 119 -0110111111 Sarah 119 -0110111111 Isaac 120 -0110111111 Teddy 123 -0110111111 Lou 125 -0110111111 Georges 126 -0110111111 Gerry 126 -0110111111 Kerry 126 -0110111111 Kiichi 126 -0110111111 Willard 130 -0110111111 Jake 131 -0110111111 Noboru 134 -0110111111 Betty 136 -0110111111 Levi 138 -0110111111 Anna 140 -0110111111 Gerard 140 -0110111111 Sheldon 144 -0110111111 Perez 145 -0110111111 Shirley 146 -0110111111 Glen 147 -0110111111 Jackie 150 -0110111111 Diana 150 -0110111111 Conrad 153 -0110111111 Burt 156 -0110111111 Calvin 157 -0110111111 Ferdinand 157 -0110111111 Willie 158 -0110111111 Beryl 159 -0110111111 Johnny 159 -0110111111 Alice 170 -0110111111 Randall 170 -0110111111 Clifford 171 -0110111111 Mohammed 173 -0110111111 Lance 176 -0110111111 Perrin 177 -0110111111 Curtis 179 -0110111111 Fidel 179 -0110111111 Miguel 180 -0110111111 Luis 181 -0110111111 Otto 182 -0110111111 Jacob 182 -0110111111 Bud 187 -0110111111 Aaron 189 -0110111111 Nathan 189 -0110111111 Andy 194 -0110111111 Maria 194 -0110111111 Neal 197 -0110111111 Helen 197 -0110111111 Gerhard 201 -0110111111 Yasuhiro 201 -0110111111 Herman 203 -0110111111 Caspar 210 -0110111111 Byron 211 -0110111111 Charlie 215 -0110111111 Saint 224 -0110111111 Francois 227 -0110111111 Ruth 228 -0110111111 Lynn 232 -0110111111 Rudolph 234 -0110111111 Rand 235 -0110111111 Ali 236 -0110111111 Winston 238 -0110111111 St 240 -0110111111 Saul 242 -0110111111 Danny 245 -0110111111 Earl 248 -0110111111 Adam 249 -0110111111 Edgar 250 -0110111111 Robin 252 -0110111111 Hyde 253 -0110111111 Father 263 -0110111111 Abraham 268 -0110111111 Dale 269 -0110111111 Eli 270 -0110111111 Pete 274 -0110111111 Gibbons 275 -0110111111 Lowell 282 -0110111111 Helmut 287 -0110111111 Anne 294 -0110111111 Pope 297 -0110111111 Jane 297 -0110111111 Burton 299 -0110111111 Carlo 300 -0110111111 Gregory 320 -0110111111 Max 325 -0110111111 Banque 327 -0110111111 Pierre 340 -0110111111 Karl 351 -0110111111 Benjamin 351 -0110111111 Kirk 355 -0110111111 Francis 355 -0110111111 Keith 359 -0110111111 Asher 361 -0110111111 Neil 365 -0110111111 Rowe 365 -0110111111 Vincent 366 -0110111111 Jacques 371 -0110111111 Manuel 374 -0110111111 Michel 374 -0110111111 Glenn 378 -0110111111 Carlos 394 -0110111111 Irwin 431 -0110111111 Sanford 431 -0110111111 Del 438 -0110111111 Boone 449 -0110111111 Al 453 -0110111111 Clayton 465 -0110111111 Harvey 471 -0110111111 Dick 473 -0110111111 Elizabeth 480 -0110111111 Ann 520 -0110111111 Ray 521 -0110111111 Ed 527 -0110111111 Craig 535 -0110111111 Margaret 544 -0110111111 Mike 603 -0110111111 Nicholas 604 -0110111111 Herbert 614 -0110111111 Morton 622 -0110111111 Barbara 630 -0110111111 Arnold 645 -0110111111 Roy 658 -0110111111 Leonard 689 -0110111111 Wayne 721 -0110111111 Edwin 752 -0110111111 Norman 760 -0110111111 Ivan 772 -0110111111 Franklin 773 -0110111111 Mary 785 -0110111111 Jesse 790 -0110111111 Barry 808 -0110111111 Patrick 828 -0110111111 Van 854 -0110111111 Warren 899 -0110111111 Lloyd 967 -0110111111 Joe 987 -0110111111 Samuel 1004 -0110111111 Kim 1087 -0110111111 Sam 1123 -0110111111 Bob 1145 -0110111111 Dennis 1174 -0110111111 Lord 1209 -0110111111 Carl 1227 -0110111111 Bill 1326 -0110111111 Scott 1350 -0110111111 Walter 1451 -0110111111 Henry 1556 -0110111111 Lawrence 1688 -0110111111 Douglas 1892 -0110111111 Howard 1898 -0110111111 Frank 2492 -0110111111 Martin 2584 -0110111111 George 4899 -0110111111 Michael 5281 -0110111111 Paul 4377 -011100 Spun 1 -011100 PASSIVE-INCOME 1 -011100 Houtbrion 1 -011100 anti-female 1 -011100 Haji 1 -011100 Petrorep 1 -011100 SBNICs 1 -011100 edgily 1 -011100 Hausa 1 -011100 Praful 1 -011100 Performance-a 1 -011100 Purpurea 1 -011100 Mechid 1 -011100 99.458 1 -011100 99.499 1 -011100 Killings 1 -011100 144-something 1 -011100 one-note 1 -011100 Lazares 1 -011100 cellist-conductor 1 -011100 snoods 1 -011100 pouffs 1 -011100 bellini 1 -011100 A.U.S. 1 -011100 Akademic 1 -011100 U.S.N. 1 -011100 IMELDA 1 -011100 block-shaped 1 -011100 Cambridge-educated 1 -011100 LaPoint 1 -011100 Hangs 1 -011100 CPA. 1 -011100 Yasuaki 1 -011100 Comisiones 1 -011100 /not 1 -011100 Gostiniyi 1 -011100 full-spirited 1 -011100 Wrestle 1 -011100 KDLZ-FM 1 -011100 jug-eared 1 -011100 Miljenko 1 -011100 Parthe 1 -011100 KEB 1 -011100 SALARY. 1 -011100 MAC/V 1 -011100 Daryono 1 -011100 sons-a- 1 -011100 Bails 1 -011100 cephalexin 1 -011100 Assures 1 -011100 e.e. 1 -011100 partnering 1 -011100 TENACIOUS 1 -011100 Yukitsugu 1 -011100 Unimak 1 -011100 Nurrungar 1 -011100 PINCs 1 -011100 AVCO 1 -011100 Hungarian-speaking 1 -011100 Manich 1 -011100 ex-student 1 -011100 Panguitch 1 -011100 Computer-Enhanced 1 -011100 purism 1 -011100 Qat 1 -011100 pre-vernal 1 -011100 Dood 1 -011100 3.5620 1 -011100 94064 1 -011100 ans 1 -011100 county-sponsored 1 -011100 Varied 1 -011100 quel 1 -011100 110,000-kilometer 1 -011100 Eccentricity 1 -011100 Kayla 1 -011100 Yoshiharu 1 -011100 antidrugs 1 -011100 Revelation 1 -011100 Titu 1 -011100 Chingiz 1 -011100 Sonnich 1 -011100 EMPRESA 1 -011100 Bildisco 1 -011100 Yosihiro 1 -011100 FEMINISTS 1 -011100 cherub-faced 1 -011100 Genital 1 -011100 UNPAID 1 -011100 Virginia-born 1 -011100 Naruemol 1 -011100 Fritze 1 -011100 Phillippe-Francois 1 -011100 serological 1 -011100 Lamberts 1 -011100 23,400-18,410 1 -011100 Robertao 1 -011100 72,361-64,250 1 -011100 Longue 1 -011100 Erlen 1 -011100 artspeak-spouting 1 -011100 co-edits 1 -011100 205-pound 1 -011100 66222 1 -011100 sadeyed 1 -011100 Taketoshi 1 -011100 Einstein-like 1 -011100 Romare 1 -011100 Penepeistas 1 -011100 Panado 1 -011100 ECCT1989-2 1 -011100 JEFFREY 1 -011100 Alexa 1 -011100 MANDELA 1 -011100 Ilarion 1 -011100 REN 1 -011100 Khigh 1 -011100 Masari 1 -011100 Phill 1 -011100 Asil 1 -011100 WWL2M 1 -011100 Lufeng 1 -011100 Collegially 1 -011100 Ulalume 1 -011100 Bout 1 -011100 Sukru 1 -011100 composer/arranger 1 -011100 .31 1 -011100 Baiba 1 -011100 writer-physician 1 -011100 FORMERLY 1 -011100 Josue 1 -011100 Menno 1 -011100 CYCLICAL 1 -011100 Impacto 1 -011100 hoodle 1 -011100 Tick 1 -011100 silver-bearded 1 -011100 Hermando 1 -011100 Gillie 1 -011100 Remedios 1 -011100 Benigna 1 -011100 98.069 1 -011100 non-Alternative 1 -011100 98.003 1 -011100 97.993 1 -011100 97.988 1 -011100 Cynanchum 1 -011100 Duns 1 -011100 DROWSY 1 -011100 SilverMen 1 -011100 Stanislavs 1 -011100 mythologies 1 -011100 Washed 1 -011100 mid-rise 1 -011100 histing 1 -011100 97.958 1 -011100 MANTON 1 -011100 FTD 1 -011100 97.956 1 -011100 97.973 1 -011100 Zeppo 1 -011100 succeded 1 -011100 baboutie 1 -011100 Nagahide 1 -011100 Mihag 1 -011100 Suchart 1 -011100 Diocletian 1 -011100 FGF 1 -011100 Resthaven 1 -011100 Cavas 1 -011100 unchanged. 1 -011100 CH 2 -011100 Dinos 2 -011100 anti-populist 2 -011100 Chito 2 -011100 Chernobyl-4 2 -011100 Lawful 2 -011100 Ishi 2 -011100 Mullerian 2 -011100 Adriano 2 -011100 WRIV-TV 2 -011100 98.066 2 -011100 Measure 2 -011100 Assar 2 -011100 Routinely 2 -011100 Rune 2 -011100 Zonia 2 -011100 AVIONS 2 -011100 Shukan 2 -011100 DOUBLE 2 -011100 Sanusi 2 -011100 Dak 2 -011100 Rumpled 2 -011100 Playtime 2 -011100 hairy-chested 2 -011100 Deduct 2 -011100 Transformed 2 -011100 lowrated 2 -011100 Gulshan 2 -011100 Quarterback 2 -011100 Revamps 2 -011100 Corrupted 2 -011100 Shaklovity 2 -011100 Melina 2 -011100 Bouncing 2 -011100 Schnejer 2 -011100 Ahmet 2 -011100 WESTDEUTSCHE 2 -011100 Colette 2 -011100 Vulgar 2 -011100 S&C 2 -011100 Damian 3 -011100 Plucking 3 -011100 Jabe 3 -011100 Medallis 3 -011100 CSFB. 3 -011100 HARRIS 3 -011100 Appear 3 -011100 polishes 3 -011100 smudges 3 -011100 Peluso 3 -011100 Lubomir 3 -011100 Molecules 4 -011100 Guilt 4 -011100 Braulio 4 -011100 Khim 5 -011100 Infants 6 -011100 '' 342712 -011100 Predicts 8 -011101 Three-foot-high 1 -011101 Faraway 1 -011101 MAINTAINING 1 -011101 FABLED 1 -011101 Genuinely 1 -011101 Ex-Chief 1 -011101 RETRO 1 -011101 DOMESTIC 1 -011101 Retaliate 1 -011101 Hossiers 1 -011101 528,600 1 -011101 THERAPISTS 1 -011101 VIII. 1 -011101 Excessively 1 -011101 December/ 1 -011101 clay/ 1 -011101 tumble/ 1 -011101 capers/ 1 -011101 papers/ 1 -011101 bill/ 1 -011101 Dronenburg 1 -011101 SMOKE-FREE 1 -011101 Dispelling 1 -011101 IDS. 1 -011101 FLEAS 1 -011101 Anal 1 -011101 Reaga 1 -011101 Gegendstandstheorie 1 -011101 ECGD. 1 -011101 CONCLUSION. 1 -011101 Stint 1 -011101 Golfing 1 -011101 FOLLOW-UP 1 -011101 Thumbs 1 -011101 SNA. 1 -011101 F.A.E. 1 -011101 Staunchly 1 -011101 PUMPKIN-PATCH 1 -011101 Forte-Vital 1 -011101 BEGGING 1 -011101 GASB. 1 -011101 Jean-Leon 1 -011101 millenarian 1 -011101 EEC. 1 -011101 lawyers/ 1 -011101 741.2 1 -011101 MLRS. 1 -011101 Maxcess 1 -011101 Brandsburg 1 -011101 Laserdrive 1 -011101 EMPLOYEE-LEASING 1 -011101 3.5387 1 -011101 2.8427 1 -011101 UNLV. 1 -011101 Djamila 1 -011101 GP. 1 -011101 celebrity-filled 1 -011101 polyurethane-foam 1 -011101 IBJ. 1 -011101 Unblemished 1 -011101 OUTDOOR 1 -011101 LAWN-CARE 1 -011101 ALTON 1 -011101 ABA. 1 -011101 Sendum 1 -011101 CEDAR 1 -011101 PCW. 1 -011101 Gayling 1 -011101 MDM. 1 -011101 Defined-contribution 1 -011101 ESPN. 1 -011101 Totum 1 -011101 Fiercely 1 -011101 ACF. 1 -011101 Harlon 1 -011101 Admiration 1 -011101 HMOS 1 -011101 FIFTEEN-SECOND 1 -011101 HOME-EQUITY 1 -011101 723.6 1 -011101 2.8624 1 -011101 TEMPORARY-HELP 1 -011101 Comchek 1 -011101 FSC. 1 -011101 Ferocity 1 -011101 ZZ 1 -011101 Regain 1 -011101 STUDENTS. 1 -011101 DISMISSALS 1 -011101 GEORGE. 1 -011101 pre-Born 1 -011101 VALET 1 -011101 Invite 1 -011101 Freebies 1 -011101 WELL-GROOMED 1 -011101 2,533 1 -011101 CWA. 1 -011101 BICYCLE 1 -011101 Reaganismo 1 -011101 P.L.O. 1 -011101 DDT. 1 -011101 471-page 1 -011101 much-enjoyed 1 -011101 Taylor-Johnson 1 -011101 Fanatic 1 -011101 BOPA. 1 -011101 Milburne 1 -011101 Nicolaas 1 -011101 Tepid 1 -011101 two-photon 1 -011101 Fastframe 1 -011101 Earnestly 1 -011101 Ideologue 1 -011101 Succeeded 1 -011101 Slimming 1 -011101 Coda 1 -011101 PC/Tax 1 -011101 RESIDENCE 1 -011101 Aristarch 1 -011101 RENT-AN-EXEC 1 -011101 USDA. 1 -011101 Skeptic 1 -011101 Backache 1 -011101 Awe 1 -011101 LYME 1 -011101 Convention-going 1 -011101 SAILBOATS 1 -011101 Low-Tech 1 -011101 Anglo-phobic 1 -011101 P&S 1 -011101 Blithely 1 -011101 Harbor/Save 1 -011101 Sorts 1 -011101 IMC. 1 -011101 nitrofurantoin 1 -011101 Damp 1 -011101 Toshiwo 1 -011101 Barrelhouse 1 -011101 Madmen 1 -011101 BEDEVILED 1 -011101 Wuer 1 -011101 Describes 1 -011101 Post-INF 1 -011101 JON 1 -011101 .remains 1 -011101 Intervene 1 -011101 Oozing 1 -011101 1962-65 1 -011101 pianist-statesman 1 -011101 Soheila 1 -011101 commiphora 1 -011101 SEVENTEEN 1 -011101 COMMUTER 1 -011101 Junie 1 -011101 Chatter-Proofed 1 -011101 Aurel 2 -011101 Tristate 2 -011101 Triple-A-rated 2 -011101 Hokkai 2 -011101 HONEST 2 -011101 HLA 2 -011101 Perfectly 2 -011101 Communicate 2 -011101 Tehranis 2 -011101 Bearclaw 2 -011101 Minicomputers 2 -011101 Kuznetsky 2 -011101 NCNB. 2 -011101 NHTSA. 2 -011101 Loda 2 -011101 Realign 2 -011101 MS-DOS-based 2 -011101 Medical-Legal 2 -011101 tong 2 -011101 AIRPORT 2 -011101 VII. 2 -011101 GAAP. 2 -011101 Underwrote 2 -011101 PPG. 2 -011101 BLOOD 2 -011101 Pistol 2 -011101 Potent 2 -011101 Renn 2 -011101 Regret 2 -011101 JAL. 2 -011101 applied-specific 2 -011101 Payback 2 -011101 stouter 2 -011101 Signifying 2 -011101 Chewing 3 -011101 Vastly 3 -011101 Smith-Corona 3 -011101 Interdale 3 -011101 Undermined 3 -011101 Harness 3 -011101 Explosives 3 -011101 Stays 3 -011101 HIV. 3 -011101 Mauve 3 -011101 Lowered 4 -011101 Dresses 4 -011101 Coronary 4 -011101 B-cell 4 -011101 Poorly 4 -011101 .44-caliber 4 -011101 Khao 4 -011101 Hooge 4 -011101 bizarrely 4 -011101 Aikia 4 -011101 GDP. 4 -011101 Emilian 4 -011101 Spreadsheet 4 -011101 Category 4 -011101 PAC. 4 -011101 Dorling 5 -011101 Suffer 5 -011101 IRA. 5 -011101 Zippo 5 -011101 FBI. 5 -011101 Trendy 5 -011101 BMW. 5 -011101 Sans 5 -011101 Stops 6 -011101 Spare 6 -011101 AZT. 7 -011101 Gotta 8 -011101 Identa 8 -011101 Fishy 9 -011101 Chap 10 -011101 Appendix 14 -011101 GNP. 22 -011101 Chock 53 -011101 ` 62 -011101 `` 343470 -011101 Phase 74 -0111100 Air-shipped 1 -0111100 Round-trip 1 -0111100 Energy-equipment 1 -0111100 One-hundred 1 -0111100 Servers 1 -0111100 Torrential 1 -0111100 Once-sleepy 1 -0111100 MOTIVATING 1 -0111100 Great-uncle 1 -0111100 Rail-mounted 1 -0111100 Age-based 1 -0111100 Paper-industry 1 -0111100 Jakob 1 -0111100 Full-sized 1 -0111100 County-level 1 -0111100 Contested 1 -0111100 Ritualistic 1 -0111100 Non-rubber 1 -0111100 Foreign-held 1 -0111100 Sixteen-year-old 1 -0111100 .my 1 -0111100 Foundation-owned 1 -0111100 Smurf-TV-show 1 -0111100 Third-round 1 -0111100 U.S.-CANADIAN 1 -0111100 Mutagen 1 -0111100 Environmental-law 1 -0111100 Then-assistant 1 -0111100 Buccaneering 1 -0111100 Underpaid 1 -0111100 Interventionist 1 -0111100 GSIF 1 -0111100 owner-protection 1 -0111100 Personal-finance 1 -0111100 Pro-business 1 -0111100 All-girl 1 -0111100 Ecclesiastical 1 -0111100 unhardened 1 -0111100 House-hunters 1 -0111100 Equipment-leasing 1 -0111100 Dark-humor 1 -0111100 Applicable 1 -0111100 Attractively 1 -0111100 Auto-components 1 -0111100 Crediting 1 -0111100 Destructive 1 -0111100 Then-Assistant 1 -0111100 Fee-hungry 1 -0111100 Lanthanum 1 -0111100 Theater-sized 1 -0111100 Scandal-tarred 1 -0111100 Snowy-haired 1 -0111100 Public-employee 1 -0111100 Thermoplastic 1 -0111100 Makeshift 1 -0111100 Brazilian-U.S. 1 -0111100 Unguaranteed 1 -0111100 High-class 1 -0111100 Grilled 1 -0111100 Shish 1 -0111100 Old-hand 1 -0111100 Big-game 1 -0111100 Standout 1 -0111100 BUREAUCRATIC 1 -0111100 Butthe 1 -0111100 Numerical 1 -0111100 Payroll-based 1 -0111100 Smaller-than-expected 1 -0111100 Current-account 1 -0111100 High-stakes 1 -0111100 Hurling 1 -0111100 Transient 1 -0111100 Five-cent 1 -0111100 Nonqualified 1 -0111100 Quickening 1 -0111100 Underprepared 1 -0111100 Overhand 1 -0111100 Unwary 1 -0111100 Similar-sized 1 -0111100 Three-time 1 -0111100 Account-holder 1 -0111100 Misguided 1 -0111100 Hankook 1 -0111100 Casino-quality 1 -0111100 Chinese-Polish 1 -0111100 WHEREFORE 1 -0111100 LESS-BITTER 1 -0111100 Ayu 1 -0111100 Giti 1 -0111100 Smuggled 1 -0111100 Ad-Week 1 -0111100 Plaintive 1 -0111100 .by 1 -0111100 Often-mentioned 1 -0111100 Two-tone 1 -0111100 multiconcept 1 -0111100 Polycrystalline 1 -0111100 Microencapsulation 1 -0111100 Anti-corrosion 1 -0111100 Rental-car 1 -0111100 Black-and-white 1 -0111100 181.12 1 -0111100 Korea-Vietnam 1 -0111100 CASH-FLOW 1 -0111100 259.82 1 -0111100 UNFLUORIDATED 1 -0111100 Administrations 1 -0111100 Collateralizing 1 -0111100 COMMA 1 -0111100 Besmitten 1 -0111100 Cowboy-hat 1 -0111100 Intoned 1 -0111100 Coking 1 -0111100 Sacramento-Calif.-based 1 -0111100 Waist-high 1 -0111100 Mid-level 1 -0111100 Wide-bodied 1 -0111100 non-protectionist 1 -0111100 Back-to-school 1 -0111100 Book-club 1 -0111100 Lame-duck 1 -0111100 Rarity 1 -0111100 Multi-billion 1 -0111100 Government-granted 1 -0111100 Play-only 1 -0111100 Falsifying 1 -0111100 Heavy-hitting 1 -0111100 OVER-THE-COUNTER 1 -0111100 UNSIGHTLY 1 -0111100 Repetitious 1 -0111100 PANAMANIANS 1 -0111100 Five-hundred-foot-high 1 -0111100 Handmade 1 -0111100 Gold-medal 1 -0111100 Cattle-feeding 1 -0111100 other-equipment 1 -0111100 THRIFT-BILL 1 -0111100 Flattering 1 -0111100 Heavy-equipment 1 -0111100 Obsolescent 1 -0111100 transfer-pricing 1 -0111100 Org 1 -0111100 Dissolved 1 -0111100 Pertinent 1 -0111100 Wiseacre 1 -0111100 Extrusion 1 -0111100 Steeples 1 -0111100 Rubyfruit 1 -0111100 Out-of-home 1 -0111100 Hamburger-related 1 -0111100 Non-traded 1 -0111100 Four-wheel 1 -0111100 Pulmonary 1 -0111100 Gleaming 1 -0111100 Crude-products 1 -0111100 Rent-a-car 1 -0111100 All-cash 1 -0111100 COMFORT 1 -0111100 Exceptionally 1 -0111100 Appallingly 1 -0111100 Slow-paying 1 -0111100 Tamer 1 -0111100 Religious-cult 1 -0111100 loading-dock 1 -0111100 Intercepting 1 -0111100 Decomposing 1 -0111100 Lobbs 1 -0111100 Reptilian 1 -0111100 American-Chinese 1 -0111100 High-octane 1 -0111100 Too-rapid 1 -0111100 Gold-backed 1 -0111100 Shrugged 1 -0111100 Rutgers-The 1 -0111100 Summer-school 1 -0111100 Harmonizing 1 -0111100 Vacuous 1 -0111100 LIFE-INSURANCE 1 -0111100 Ferro-alloy 1 -0111100 Matsuzakaya 1 -0111100 Uncomfortably 1 -0111100 Locker-room 1 -0111100 Pipeliners 1 -0111100 Unearthly 1 -0111100 Mortgage-servicing 1 -0111100 Flashier 2 -0111100 Bribing 2 -0111100 Talmage 2 -0111100 Scrubby 2 -0111100 Transracial 2 -0111100 Oil-patch 2 -0111100 Less-stringent 2 -0111100 Pro-Western 2 -0111100 Four-member 2 -0111100 Three-year 2 -0111100 Non-tariff 2 -0111100 Lump-sum 2 -0111100 Thirty-year 2 -0111100 Prototype 2 -0111100 Spinal 2 -0111100 Pricey 2 -0111100 Top-tier 2 -0111100 PLANT-CLOSING 2 -0111100 Medium-size 2 -0111100 Office-furniture 2 -0111100 Low-level 2 -0111100 Damaged 2 -0111100 Government-run 2 -0111100 Land-based 2 -0111100 Hoped-for 2 -0111100 Microscopic 2 -0111100 Non-communist 2 -0111100 Unstable 2 -0111100 Earmarking 2 -0111100 PLASTIC 2 -0111100 Oppressive 2 -0111100 Defeated 3 -0111100 Electrical-products 3 -0111100 Melding 3 -0111100 Prime-time 3 -0111100 Billionaire 3 -0111100 Containing 3 -0111100 Footnote 3 -0111100 Unidentified 3 -0111100 Devising 3 -0111100 Fixed-rated 3 -0111100 Silicone 3 -0111100 Heated 3 -0111100 Elaborate 4 -0111100 Methylene 4 -0111100 Four-year 4 -0111100 Substituting 4 -0111100 Polyvinyl 4 -0111100 Mid-December 4 -0111100 Behind-the-scenes 4 -0111100 Medium-term 4 -0111100 Prepayment 4 -0111100 .The 4 -0111100 PROTESTERS 4 -0111100 Indefinite 5 -0111100 Fledgling 5 -0111100 Hard-line 5 -0111100 Rigid 6 -0111100 High-ranking 7 -0111100 Indirect 9 -0111100 High-level 10 -0111100 Bellwether 14 -0111100 State-owned 21 -0111100 The 320579 -0111100 Comparable 60 -0111101000 loamy 1 -0111101000 FREE-AGENT 1 -0111101000 OUT-OF-STATE 1 -0111101000 Clap 1 -0111101000 Seaborne 1 -0111101000 -More 1 -0111101000 mass-participatory 1 -0111101000 less-broad 1 -0111101000 Whassa 1 -0111101000 Amatory 1 -0111101000 SAILBOAT 1 -0111101000 EPILEPTIC 1 -0111101000 just-trust-us 1 -0111101000 TOURISTIK 1 -0111101000 Singable 1 -0111101000 save-the-seat 1 -0111101000 undamped 1 -0111101000 Well-documented 1 -0111101000 CONSUMING 1 -0111101000 Soften 1 -0111101000 out-trade 1 -0111101000 On-Time 1 -0111101000 Vingt 1 -0111101000 U.S.-MADE 1 -0111101000 unmeritorious 1 -0111101000 PEACE-PLAN 1 -0111101000 sauve 1 -0111101000 Open-mouth 1 -0111101000 neo-capitalist 1 -0111101000 UNLADYLIKE 1 -0111101000 Below-Replacement 1 -0111101000 Smoke-free 1 -0111101000 omnicompetent 1 -0111101000 near-stagnant 1 -0111101000 CAMCORDER 1 -0111101000 Mourning 1 -0111101000 IMITATION 1 -0111101000 HAPPIER 1 -0111101000 data-integrity 1 -0111101000 obsoleting 1 -0111101000 Uncommon 1 -0111101000 OLDER 1 -0111101000 LIBERAL-ARTS 1 -0111101000 Trade-union 1 -0111101000 Underline 1 -0111101000 Self-interested 1 -0111101000 rock-oriented 1 -0111101000 Abysmal 1 -0111101000 WASTE 1 -0111101000 Social-security 1 -0111101000 pay-and-play 1 -0111101000 never-aging 1 -0111101000 Aggravate 1 -0111101000 Bell-Shaped 1 -0111101000 diluvian 1 -0111101000 KIDDIE 1 -0111101000 company-led 1 -0111101000 FIXING 1 -0111101000 Flaunting 1 -0111101000 sprint-relay 1 -0111101000 Societal 1 -0111101000 Circumstantial 1 -0111101000 Apple/Thomson 1 -0111101000 self-protecting 1 -0111101000 Channelers 1 -0111101000 Refigured 1 -0111101000 Multiparty 1 -0111101000 Desk-Top 1 -0111101000 OCTANE 1 -0111101000 COATED 1 -0111101000 substitute-teacher 1 -0111101000 Skinny-Dip 1 -0111101000 CONTINGENT 1 -0111101000 Jests 1 -0111101000 Massmutual 1 -0111101000 Irredentist 1 -0111101000 NONUNION 1 -0111101000 Kennedy/Johnson 1 -0111101000 Preapproved 1 -0111101000 Vile 1 -0111101000 52-Week 1 -0111101000 looniest 1 -0111101000 CUSTOMER 1 -0111101000 Vegetarian 1 -0111101000 bakmee 1 -0111101000 JANUS 1 -0111101000 Grizzly 1 -0111101000 Elfin 1 -0111101000 Sustainable 1 -0111101000 WARRANTY 1 -0111101000 VINTAGE 1 -0111101000 Fruiting 1 -0111101000 DUAL-DIAL 1 -0111101000 ROBUST 1 -0111101000 Kamikaze 1 -0111101000 Single-chain 1 -0111101000 machol 1 -0111101000 Anecdotal 1 -0111101000 RADIATION 1 -0111101000 Free-floating 1 -0111101000 Nuclear-policy 1 -0111101000 ALIEN 1 -0111101000 narced-up 1 -0111101000 power-to-the-poor 1 -0111101000 tax-preference 1 -0111101000 ENERGY-STATE 1 -0111101000 Grenada-style 1 -0111101000 Sold-out 1 -0111101000 Allowable 1 -0111101000 Stock-option 1 -0111101000 SUNTRUST 1 -0111101000 SELF 1 -0111101000 Nonmarital 1 -0111101000 72-Hour 1 -0111101000 well-perceived 1 -0111101000 frightfully 1 -0111101000 Neccessary 1 -0111101000 Bankrolling 1 -0111101000 DISLOCATED 1 -0111101000 Pat-your-foot 1 -0111101000 Deodorizer 1 -0111101000 All-Male 1 -0111101000 in-built 1 -0111101000 Myopic 1 -0111101000 DIVI 1 -0111101000 pipe-dream 1 -0111101000 less-than-vigorous 1 -0111101000 CONNECTED 1 -0111101000 couragious 1 -0111101000 PENNY-PINCHING 1 -0111101000 Retirement-income 1 -0111101000 Candidate-centered 1 -0111101000 daurade 1 -0111101000 Mirabai 1 -0111101000 bourgeoise 1 -0111101000 marche 1 -0111101000 MAIDENFORM 1 -0111101000 light-switch 1 -0111101000 Multifund 1 -0111101000 Unaided 1 -0111101000 Rightful 1 -0111101000 Burroughs-Wellcome=Greedy 1 -0111101000 DELUXE 1 -0111101000 Minority-group 1 -0111101000 ORIENT-EXPRESS 1 -0111101000 wettest 1 -0111101000 Retread 1 -0111101000 Regional-based 1 -0111101000 impermissibly 1 -0111101000 Amoco-type 1 -0111101000 OP 1 -0111101000 Outdoing 1 -0111101000 Multidisciplinary 1 -0111101000 Capital-cost 1 -0111101000 Step-Parenting 1 -0111101000 ANTIQUE 1 -0111101000 two-three 1 -0111101000 ADVANCE-TUITION 1 -0111101000 ratifier 1 -0111101000 Geriatric-Psychiatric 1 -0111101000 PREP-SCHOOL 1 -0111101000 STAN 1 -0111101000 Pre-game 1 -0111101000 Be-Happy 1 -0111101000 Leaky 1 -0111101000 Costliest 1 -0111101000 OBJECTIVITY 1 -0111101000 Weaken 1 -0111101000 ONE-COMPANY 1 -0111101000 TRAVELING 1 -0111101000 Slavonic 1 -0111101000 quality-of-work 1 -0111101000 Critically 1 -0111101000 kinesthetic 1 -0111101000 BUFFS 1 -0111101000 platelet-derived 1 -0111101000 mother-love 1 -0111101000 split-radar 1 -0111101000 home-automation 1 -0111101000 self-authorization 1 -0111101000 TV-living-room 1 -0111101000 design-build 1 -0111101000 BUY-OR-SELL 1 -0111101000 Sport-Utility 1 -0111101000 VIOLENT 1 -0111101000 Devious 1 -0111101000 posy 1 -0111101000 hortis 1 -0111101000 SKI 1 -0111101000 Mid-term 1 -0111101000 Crushing 1 -0111101000 CHAMPAGNE 1 -0111101000 Soothsayers 1 -0111101000 Favorably 1 -0111101000 Black-white 1 -0111101000 blue-baby 1 -0111101000 SEED-FUND 1 -0111101000 NEGLIGENCE 1 -0111101000 Ailee 1 -0111101000 out-of 1 -0111101000 TAX-FACTS 1 -0111101000 councilmanic 1 -0111101000 BUSINESS-SAVVY 1 -0111101000 Tactile 1 -0111101000 drag-raced 1 -0111101000 Day-time 1 -0111101000 IRANIANS 1 -0111101000 fix-it-first 1 -0111101000 JOB-SAFETY 1 -0111101000 Denounce 1 -0111101000 Ouaily 1 -0111101000 YANKS 1 -0111101000 Nonpolitical 1 -0111101000 Keistone 1 -0111101000 -casted 1 -0111101000 EAT 1 -0111101000 zai 1 -0111101000 Drexel-Staley 1 -0111101000 Relevance 1 -0111101000 Oceanfront 1 -0111101000 multiple-point 1 -0111101000 Cloaking 1 -0111101000 Busing 1 -0111101000 Carrier-safety 1 -0111101000 H.O.M.E. 1 -0111101000 Borderline 1 -0111101000 Crawfish 1 -0111101000 Patricidal 1 -0111101000 subjectivist 1 -0111101000 WHATEVER 1 -0111101000 compassionating 1 -0111101000 VENTURE-LEASING 1 -0111101000 Profoundly 1 -0111101000 Quo 1 -0111101000 luxury-appointed 1 -0111101000 executive-legislative 1 -0111101000 TROUBLE 1 -0111101000 divisionwide 1 -0111101000 POINTING 1 -0111101000 Casilda 1 -0111101000 ODER 1 -0111101000 feebler 1 -0111101000 167.44 1 -0111101000 Faring 1 -0111101000 Inherent 1 -0111101000 Enhancing 1 -0111101000 Gut-wrenching 1 -0111101000 Fooling 1 -0111101000 second-most-conservative 1 -0111101000 DISTRUST 1 -0111101000 non-infringing 1 -0111101000 HYATT 1 -0111101000 taste-aversion 1 -0111101000 fab 1 -0111101000 RIVALRIES 1 -0111101000 PATIENCE 1 -0111101000 win-at-all-costs 1 -0111101000 Poitical 1 -0111101000 DEPRECATE 1 -0111101000 Issueless 1 -0111101000 onlie 1 -0111101000 Benign 1 -0111101000 Scouting 1 -0111101000 CIGARETTE 1 -0111101000 Coast-to-Coast 1 -0111101000 PACKAGE-DESIGN 1 -0111101000 multi-front 1 -0111101000 ACCEPTING 1 -0111101000 SCHMIEDE 1 -0111101000 CURBING 1 -0111101000 Risk-Based 1 -0111101000 bi-modal 1 -0111101000 Job-related 1 -0111101000 EUONYMUS 1 -0111101000 Pelicans 1 -0111101000 Great-tasting 1 -0111101000 -sized 1 -0111101000 condition-of-the-people 1 -0111101000 starve-gorge 1 -0111101000 zombielike 1 -0111101000 reticulate 1 -0111101000 Sheep-like 1 -0111101000 Downright 1 -0111101000 Limitless 1 -0111101000 Fruitful 1 -0111101000 pre-30 1 -0111101000 semi-live 1 -0111101000 Extramarital 1 -0111101000 WESPAC 1 -0111101000 EXTREME 1 -0111101000 Speed-sensitive 1 -0111101000 firesale 1 -0111101000 MARITIME 1 -0111101000 Rectangular 1 -0111101000 Shouted 1 -0111101000 GRINDING 1 -0111101000 Fletch 1 -0111101000 idee 1 -0111101000 scholarboy 1 -0111101000 business-led 1 -0111101000 VICORP 1 -0111101000 SUPPOSE 1 -0111101000 Epitomizes 1 -0111101000 Rape-and-ruin 1 -0111101000 psychologic 1 -0111101000 Thought-out 1 -0111101000 drug-like 1 -0111101000 long-ball 1 -0111101000 True-life 1 -0111101000 Madisonian 1 -0111101000 two-fuel 1 -0111101000 publick 1 -0111101000 Incomplete 1 -0111101000 Bubbly 1 -0111101000 Valolapour 1 -0111101000 finite-time 1 -0111101000 Toyotero 1 -0111101000 MONITORING 1 -0111101000 Judeo-Islamic 1 -0111101000 Literal 1 -0111101000 Normalize 1 -0111101000 COSMETICS 1 -0111101000 diktat 1 -0111101000 Hotter 1 -0111101000 Variable-Rate 1 -0111101000 No-smoking 1 -0111101000 Slimy 1 -0111101000 efficiency-type 1 -0111101000 mammothly 1 -0111101000 Hand-lettered 1 -0111101000 SHALLOW 1 -0111101000 MULE 1 -0111101000 Corporate-owned 1 -0111101000 short-hand 1 -0111101000 Small-cell 1 -0111101000 Unexplainable 1 -0111101000 Washlet 1 -0111101000 self-enforced 1 -0111101000 U.F.O. 1 -0111101000 Demonstrative 1 -0111101000 crime-fraud 1 -0111101000 Late-cycle 1 -0111101000 non-punitive 1 -0111101000 Grotesque 1 -0111101000 hard-to-fit 1 -0111101000 Cooked 1 -0111101000 TWELVE 1 -0111101000 stock-and-options 1 -0111101000 Hypersonic 1 -0111101000 Forty-Four 1 -0111101000 Drug-Treatment 1 -0111101000 covert/clandestine 1 -0111101000 doctor-oriented 1 -0111101000 University-based 1 -0111101000 oven-like 1 -0111101000 MEXICAN-Americans 1 -0111101000 Intolerable 1 -0111101000 Inter-market-making 1 -0111101000 ASSUME 1 -0111101000 sunbleached 1 -0111101000 diametric 1 -0111101000 Chipping 1 -0111101000 FERC-mandated 1 -0111101000 Doctor-patient 1 -0111101000 Inspect 1 -0111101000 Peeved 1 -0111101000 Feline 1 -0111101000 on-arrival 1 -0111101000 RECESSION 1 -0111101000 -spouting 1 -0111101000 piss 1 -0111101000 Robbing 1 -0111101000 One-Horse 1 -0111101000 ORIGINAL 1 -0111101000 age-associated 1 -0111101000 TAX-COURT 1 -0111101000 maggot-covered 1 -0111101000 Subsistence 1 -0111101000 Instated 1 -0111101000 Preacher 1 -0111101000 FORTY-SIX 1 -0111101000 Two-Dimensional 1 -0111101000 wunduh 1 -0111101000 Renewable-energy 1 -0111101000 Vamo-BDM 1 -0111101000 all-over 1 -0111101000 EVERYBODY 1 -0111101000 Point-of-sale 1 -0111101000 state-trading 1 -0111101000 Common-law 2 -0111101000 TANDEM 2 -0111101000 connoted 2 -0111101000 BARNETT 2 -0111101000 Disputed 2 -0111101000 Discretionary 2 -0111101000 Expose 2 -0111101000 Jean-Honore 2 -0111101000 Rifles 2 -0111101000 Conscious 2 -0111101000 Flattened 2 -0111101000 Reptiles 2 -0111101000 Well-intentioned 2 -0111101000 lumpen 2 -0111101000 Shopping-center 2 -0111101000 Four-week 2 -0111101000 Leading-edge 2 -0111101000 Comparatively 2 -0111101000 Terminated 2 -0111101000 Predatory 2 -0111101000 Swapping 2 -0111101000 Evolving 2 -0111101000 DEBIT 2 -0111101000 SMART 2 -0111101000 Backup 2 -0111101000 borrow-and-pay-back 2 -0111101000 Rhapsodic 2 -0111101000 Modified 2 -0111101000 Funnier 2 -0111101000 Sphagnum 2 -0111101000 quasi-automatic 2 -0111101000 Honestly 2 -0111101000 USUALLY 2 -0111101000 Resilient 2 -0111101000 Gingerly 2 -0111101000 Downside 2 -0111101000 Towering 2 -0111101000 bust-out 2 -0111101000 Guarded 2 -0111101000 Discounted 2 -0111101000 Re-establish 2 -0111101000 Misplaced 2 -0111101000 Amusing 2 -0111101000 DUPED 2 -0111101000 Fright 2 -0111101000 Freaky 2 -0111101000 Polygraph 2 -0111101000 Answered 2 -0111101000 Tumultuous 2 -0111101000 Pumping 2 -0111101000 Sandostatin 2 -0111101000 zero-dollar 2 -0111101000 Pitting 2 -0111101000 Vacant 2 -0111101000 heart-healthy 2 -0111101000 Symphonic 2 -0111101000 Impotence 2 -0111101000 prix 2 -0111101000 Baise 2 -0111101000 Childless 2 -0111101000 Vesting 2 -0111101000 Thrilling 2 -0111101000 Dishonest 2 -0111101000 Relieving 2 -0111101000 Thirty-Six 2 -0111101000 Louder 2 -0111101000 Spontaneous 2 -0111101000 Style-conscious 2 -0111101000 ENNIS 2 -0111101000 Stimulating 2 -0111101000 HEALTH-CARE 2 -0111101000 Builds 2 -0111101000 Carnal 2 -0111101000 Irreconcilable 2 -0111101000 Mercurial 2 -0111101000 Readiness 2 -0111101000 Data-base 2 -0111101000 Infamous 2 -0111101000 sea-oriented 2 -0111101000 Diminishing 2 -0111101000 Flouting 2 -0111101000 Notary 2 -0111101000 Lower-house 2 -0111101000 Impaired 2 -0111101000 Swaying 2 -0111101000 Snob 2 -0111101000 Overhearing 2 -0111101000 Delightful 2 -0111101000 Rienzi 2 -0111101000 Sticky 2 -0111101000 Shocking 2 -0111101000 Bantu 2 -0111101000 Chronically 2 -0111101000 Chuck-wagon 2 -0111101000 Sheiks 2 -0111101000 Questionable 2 -0111101000 Keenly 2 -0111101000 free-ride 2 -0111101000 Tasteful 3 -0111101000 Superb 3 -0111101000 Do-it-yourself 3 -0111101000 Uncontrolled 3 -0111101000 Starvation 3 -0111101000 LONE 3 -0111101000 Quicker 3 -0111101000 Midair 3 -0111101000 Topical 3 -0111101000 RABBI 3 -0111101000 Baked 3 -0111101000 All-terrain 3 -0111101000 Line-Item 3 -0111101000 Sixty-eight 3 -0111101000 Spacious 3 -0111101000 Unapproved 3 -0111101000 Belly 3 -0111101000 Imperil 3 -0111101000 MINIMUM-WAGE 3 -0111101000 Quality-control 3 -0111101000 Incompetent 3 -0111101000 Zoot 3 -0111101000 Mortal 3 -0111101000 -type 3 -0111101000 Presumed 3 -0111101000 Insufficient 3 -0111101000 Assertive 3 -0111101000 Singular 3 -0111101000 Brideshead 3 -0111101000 Neonatal 3 -0111101000 Long-range 3 -0111101000 Polling 3 -0111101000 Stolen 3 -0111101000 Uphill 3 -0111101000 High-energy 3 -0111101000 notional 3 -0111101000 Persistently 3 -0111101000 Utterly 3 -0111101000 Dormant 3 -0111101000 Midsize 3 -0111101000 Soy 4 -0111101000 COUNTRYWIDE 4 -0111101000 Halting 4 -0111101000 Splendid 4 -0111101000 POISON-PILL 4 -0111101000 -price 4 -0111101000 Unwanted 4 -0111101000 Meaningful 4 -0111101000 Deconstructivist 4 -0111101000 Orfeo 4 -0111101000 actus 4 -0111101000 Shrewd 4 -0111101000 Prosecutorial 4 -0111101000 Insuring 4 -0111101000 Senor 4 -0111101000 Madama 4 -0111101000 Abrupt 4 -0111101000 Reasonably 5 -0111101000 Unpleasant 5 -0111101000 Overcoming 5 -0111101000 Que 5 -0111101000 Overly 5 -0111101000 Pouring 5 -0111101000 Harsh 5 -0111101000 Endless 5 -0111101000 Bearded 5 -0111101000 Ragged 5 -0111101000 Ambitious 5 -0111101000 Probable 5 -0111101000 Timely 5 -0111101000 Fascinating 5 -0111101000 Inefficient 5 -0111101000 Tense 5 -0111101000 Enormous 6 -0111101000 ancien 6 -0111101000 Downward 6 -0111101000 Painful 6 -0111101000 Elegant 6 -0111101000 Necessary 6 -0111101000 Sentence 6 -0111101000 Cosi 7 -0111101000 Honorable 7 -0111101000 Immediate 7 -0111101000 Legitimate 7 -0111101000 Sentimental 7 -0111101000 Supply-side 7 -0111101000 Ruthless 7 -0111101000 Middle-aged 7 -0111101000 Undercover 8 -0111101000 Shattered 8 -0111101000 Warm 8 -0111101000 Lethal 8 -0111101000 Frantic 8 -0111101000 Part-time 8 -0111101000 Foul 8 -0111101000 Jagged 9 -0111101000 Breathing 9 -0111101000 Ideological 9 -0111101000 Extremely 9 -0111101000 Allegedly 9 -0111101000 Mere 10 -0111101000 Das 10 -0111101000 -style 10 -0111101000 Extreme 10 -0111101000 Potentially 11 -0111101000 Reasonable 11 -0111101000 Empty 12 -0111101000 Absolute 12 -0111101000 Designing 12 -0111101000 Loose 14 -0111101000 Honest 16 -0111101000 Costly 17 -0111101000 Ordinary 18 -0111101000 Unsolved 19 -0111101000 Sophisticated 22 -0111101000 YOUR 22 -0111101000 Faster 22 -0111101000 Revolving 22 -0111101000 Miscellaneous 23 -0111101000 Whose 27 -0111101000 Highly 28 -0111101000 Simple 33 -0111101000 Tough 36 -0111101000 Different 44 -0111101000 Serious 53 -0111101000 Fewer 93 -0111101000 Equally 115 -0111101000 Bad 121 -0111101000 Very 191 -0111101000 Less 260 -0111101000 Any 1094 -0111101000 Your 1197 -0111101000 My 2130 -0111101000 Our 2520 -0111101000 No 4232 -0111101000 More 3152 -01111010010 Non-CFC 1 -01111010010 Computer-science 1 -01111010010 Growth-control 1 -01111010010 Brimming 1 -01111010010 THIRD-QUARTER 1 -01111010010 Fiscal-policy 1 -01111010010 Spirited 1 -01111010010 Children-oriented 1 -01111010010 Large-trade 1 -01111010010 Charged-off 1 -01111010010 Cause-related 1 -01111010010 Over-the-air 1 -01111010010 Allocated 1 -01111010010 Unprofitable 1 -01111010010 Flatulent 1 -01111010010 Late-June 1 -01111010010 Ceremony-conscious 1 -01111010010 Warmest 1 -01111010010 Long-run 1 -01111010010 CULLEN 1 -01111010010 Shared-tenant 1 -01111010010 Six-figure 1 -01111010010 Bond-yield 1 -01111010010 Company-arranged 1 -01111010010 Nursery-rhyme 1 -01111010010 Air-passenger 1 -01111010010 Take-over 1 -01111010010 Resurgent 1 -01111010010 Checkbook 1 -01111010010 Appreciating 1 -01111010010 Nonaccrual 1 -01111010010 Full-time-equivalent 1 -01111010010 Long-bond 1 -01111010010 Thrombolytic 1 -01111010010 NTT-related 1 -01111010010 Unanticipated 1 -01111010010 Thirties-style 1 -01111010010 Double-Digit 1 -01111010010 Late-day 1 -01111010010 Oil-refining 1 -01111010010 Dairy-product 1 -01111010010 Souring 1 -01111010010 Head-injury 1 -01111010010 Bloated 1 -01111010010 Diminished 1 -01111010010 Farm-export 1 -01111010010 Lawyerly 1 -01111010010 RESHAPING 1 -01111010010 Covert-action 1 -01111010010 Storm-driven 1 -01111010010 Producer-price 1 -01111010010 Heroic 1 -01111010010 Study-hall 1 -01111010010 Five-hour 1 -01111010010 Eyk 1 -01111010010 Priceless 1 -01111010010 Sharpened 1 -01111010010 Personal-property 1 -01111010010 Allocators 1 -01111010010 Out-of-power 1 -01111010010 Commercial-bank 1 -01111010010 Cornstarch-based 1 -01111010010 Sunglass 1 -01111010010 Older-worker 1 -01111010010 WELFARE-REFORM 1 -01111010010 Rubbing 1 -01111010010 Power-line 1 -01111010010 Spot-market 1 -01111010010 Pump-primed 1 -01111010010 Safe-harbor 1 -01111010010 Ferrochrome 1 -01111010010 Poor-boy-style 1 -01111010010 One-step 1 -01111010010 Golfing-related 1 -01111010010 Induced 1 -01111010010 Offshore-California 1 -01111010010 IBM-related 1 -01111010010 Lessened 1 -01111010010 Big-rig 1 -01111010010 Temporal 1 -01111010010 Oatmeal-colored 1 -01111010010 Mail-volume 1 -01111010010 In-vitro 1 -01111010010 Bugged 1 -01111010010 Money-management 1 -01111010010 Older-style 1 -01111010010 Whitewashed 1 -01111010010 Food-supply 1 -01111010010 Pension-insurance 1 -01111010010 Policy-based 1 -01111010010 Mummified 1 -01111010010 Jingoistic 1 -01111010010 Megadeal 1 -01111010010 REDUCING 1 -01111010010 Long-suffering 1 -01111010010 Privatesector 1 -01111010010 Consumer-led 1 -01111010010 Red-meat 1 -01111010010 Overriding 1 -01111010010 Catchy 1 -01111010010 Boom-time 1 -01111010010 Common-stock 1 -01111010010 Unit-volume 1 -01111010010 Carbonized 1 -01111010010 FAST-TRACKERS 1 -01111010010 Pre-election 1 -01111010010 Dog-bite 1 -01111010010 Frying 1 -01111010010 BACKYARD 1 -01111010010 Fashion-industry 1 -01111010010 Samizdat 1 -01111010010 Simplify 1 -01111010010 Appreciated 1 -01111010010 Big-dollar 1 -01111010010 National-landmark 1 -01111010010 Oversold 1 -01111010010 PAY-FOR-KNOWLEDGE 1 -01111010010 Untied 1 -01111010010 Amyl 1 -01111010010 Deficient 1 -01111010010 CHARLTON 1 -01111010010 Inclement 1 -01111010010 Photosensitive 1 -01111010010 Super-saver 1 -01111010010 Short-time 1 -01111010010 Mexican-based 1 -01111010010 Two-for-one 1 -01111010010 Peak-load 1 -01111010010 S-CORPORATION 1 -01111010010 Green-apple 1 -01111010010 Underpriced 1 -01111010010 Dodging 1 -01111010010 Post-Mao 1 -01111010010 Dingell-directed 1 -01111010010 Refined-nickel 1 -01111010010 Domesticating 1 -01111010010 Easy-cash 1 -01111010010 Virginal 1 -01111010010 Time-deposit 1 -01111010010 Air-cushioned 1 -01111010010 Pre-trial 1 -01111010010 Business-equipment 1 -01111010010 Kinetic-kill 1 -01111010010 Off-balance 1 -01111010010 Non-Communist 1 -01111010010 Six-day 1 -01111010010 Television-repair 1 -01111010010 Government-imposed 1 -01111010010 Service-sector 1 -01111010010 Old-time 1 -01111010010 Tricalcium 1 -01111010010 Bank-interest 1 -01111010010 Three-way 1 -01111010010 Shelf-stable 1 -01111010010 Imbibing 1 -01111010010 Late-winter 1 -01111010010 Damping 1 -01111010010 High-yen 1 -01111010010 oil-shock 1 -01111010010 Neswprint 1 -01111010010 Chorus-line 1 -01111010010 Hand-to-mouth 1 -01111010010 Dollar-denominated 1 -01111010010 Melly 1 -01111010010 Much-needed 1 -01111010010 Visualize 1 -01111010010 wheelchair-sports 1 -01111010010 One-minute 1 -01111010010 Mercantilist 1 -01111010010 Human-development 1 -01111010010 One-stop 1 -01111010010 Homing 1 -01111010010 Uninvested 1 -01111010010 Weight-loss 1 -01111010010 Pre-summit 1 -01111010010 Antibiotic 1 -01111010010 Requested 1 -01111010010 Stretched-out 1 -01111010010 Public-partnership 1 -01111010010 Heat-transfer 1 -01111010010 Paternalistic 1 -01111010010 Flood-insurance 1 -01111010010 Farm-debt 1 -01111010010 Niobium 1 -01111010010 Concealed 1 -01111010010 Undulating 1 -01111010010 Current-value 1 -01111010010 Laissez 1 -01111010010 Rotting 1 -01111010010 Scorching 1 -01111010010 Once-simple 1 -01111010010 Well-timed 1 -01111010010 Chemical-weapons 1 -01111010010 Sales-starved 1 -01111010010 Air-base 1 -01111010010 Neophyte 1 -01111010010 Image-enhancing 1 -01111010010 Noncommunist 1 -01111010010 Annualizing 1 -01111010010 Foreign-language 1 -01111010010 Non-traditional 1 -01111010010 Grain-dust 1 -01111010010 Closed-door 1 -01111010010 Narrow-minded 1 -01111010010 Seven-figure 1 -01111010010 State-bank 1 -01111010010 BESIDES 1 -01111010010 Mineable 1 -01111010010 Mortgage-interest 1 -01111010010 Telephoned 1 -01111010010 Fatigue-related 1 -01111010010 Sub-zero 1 -01111010010 Returns-processing 1 -01111010010 Deceiving 1 -01111010010 Stray 1 -01111010010 Psychiatric-hospital 1 -01111010010 Botrytis-infected 1 -01111010010 State-level 1 -01111010010 Piddling 1 -01111010010 Car-company 1 -01111010010 Anti-satellite 1 -01111010010 Property-liability 1 -01111010010 Arousing 1 -01111010010 Llama 1 -01111010010 Once-cowed 1 -01111010010 Middle-management 1 -01111010010 Smoked 1 -01111010010 Analogous 1 -01111010010 .Domestic 1 -01111010010 Incentive-driven 1 -01111010010 Exhaled 1 -01111010010 flinger 1 -01111010010 Car-insurance 1 -01111010010 Right-to 1 -01111010010 Quarter-to-quarter 1 -01111010010 Whirring 1 -01111010010 Non-gold 1 -01111010010 High-altitude 1 -01111010010 Life-sustaining 1 -01111010010 SUPERCONDUCTIVITY 1 -01111010010 Compressed 1 -01111010010 Board-meeting 1 -01111010010 Thunderous 1 -01111010010 Closed-caption 1 -01111010010 Ramie 1 -01111010010 Fatuous 1 -01111010010 Sprained 1 -01111010010 Gross-profit 1 -01111010010 Single-occupancy 1 -01111010010 SUBURBAN 1 -01111010010 CONVENTIONAL 1 -01111010010 PASSPORT 1 -01111010010 Gem-quality 1 -01111010010 Two-day 1 -01111010010 In-law 1 -01111010010 Non-European 1 -01111010010 Distressing 1 -01111010010 Overnight-delivery 1 -01111010010 Ingested 1 -01111010010 Two-gender 1 -01111010010 Obstinate 1 -01111010010 Renminbi 1 -01111010010 RECORDING 1 -01111010010 Venetian-style 1 -01111010010 Auto-insurance 1 -01111010010 Serum 1 -01111010010 Occupational-disease 1 -01111010010 Labor-union 1 -01111010010 Simpler 1 -01111010010 Month-end 1 -01111010010 Gold-bullion 1 -01111010010 Yearlong 1 -01111010010 Domestic-violence 1 -01111010010 129,932 1 -01111010010 Government-held 1 -01111010010 Grayish 1 -01111010010 Meat-judging 1 -01111010010 Mortgage-rate 1 -01111010010 Disparaging 1 -01111010010 Variable-rate 1 -01111010010 Nonreporting 1 -01111010010 Better-than-average 1 -01111010010 Plentiful 1 -01111010010 Eldest 1 -01111010010 Alternative-operator 1 -01111010010 Lower-alcohol 1 -01111010010 Obvious 1 -01111010010 Decent 1 -01111010010 Steel-industry 1 -01111010010 Fixed-mortgage 1 -01111010010 Low-alcohol 1 -01111010010 Stronger-than-anticipated 1 -01111010010 Roll-bar 1 -01111010010 Amiable 1 -01111010010 Company-paid 1 -01111010010 Short-hop 1 -01111010010 Fission-nuclear 1 -01111010010 Rush-hour 1 -01111010010 Blistering 1 -01111010010 Bow-tie 1 -01111010010 Poignant 1 -01111010010 Agriculture-business 1 -01111010010 Investment-house 1 -01111010010 Flagrant 1 -01111010010 Slow-to-no 1 -01111010010 Pre-1986 1 -01111010010 Overarching 1 -01111010010 Forty-five-gallon 1 -01111010010 Scarce 1 -01111010010 Pro-debt 1 -01111010010 First-person 1 -01111010010 Heavier-than-normal 1 -01111010010 Food-price 1 -01111010010 Non-price 1 -01111010010 Nursing-home 1 -01111010010 Erstwhile 1 -01111010010 Honest-to-goodness 1 -01111010010 Palate 1 -01111010010 Primary-dealer 1 -01111010010 Dignified 1 -01111010010 Chumming 1 -01111010010 Ham-handed 1 -01111010010 COMPUTER-ASSISTED 1 -01111010010 belt-driven 1 -01111010010 Non-essential 1 -01111010010 Curried 1 -01111010010 Securities-markets 1 -01111010010 Biotechnology-stock 1 -01111010010 Broad-market 1 -01111010010 Long-rumored 1 -01111010010 Spotlighting 1 -01111010010 Worker-compensation 1 -01111010010 Illness-related 1 -01111010010 Armed-forces 1 -01111010010 Old-age 1 -01111010010 Stunning 1 -01111010010 Bias-motivated 1 -01111010010 Chart-following 1 -01111010010 Public-college 1 -01111010010 Penny-stock 1 -01111010010 Undervalued 1 -01111010010 Irrigated 1 -01111010010 Ninety-day 1 -01111010010 Textile-mill 1 -01111010010 Ominous 1 -01111010010 Goods-producing 1 -01111010010 Poached 1 -01111010010 Travel-agent 1 -01111010010 Shared-equity 1 -01111010010 Curbside 1 -01111010010 Twenty-gauge 1 -01111010010 Player-union 1 -01111010010 grill-gotten 1 -01111010010 Sweeter 1 -01111010010 .as 1 -01111010010 Mid-February 1 -01111010010 Open-air 1 -01111010010 Pellet-sized 1 -01111010010 Slower-growing 1 -01111010010 Depicting 1 -01111010010 Whomever 1 -01111010010 Low-interest-rate 1 -01111010010 Continent-wide 1 -01111010010 Freewheeling 1 -01111010010 Assess 1 -01111010010 Above-normal 1 -01111010010 Crib 1 -01111010010 Monetary-policy 1 -01111010010 non-flattening 1 -01111010010 Employer-provided 1 -01111010010 Plug-in 1 -01111010010 Airline-traffic 1 -01111010010 TOWN-GOWN 1 -01111010010 Short-maturity 1 -01111010010 Garden-variety 1 -01111010010 Lap-belt 1 -01111010010 Alternate-operator 1 -01111010010 Foreign-led 1 -01111010010 Bumper-to-bumper 1 -01111010010 Hard-charging 1 -01111010010 Mishandled 1 -01111010010 Student-loan 1 -01111010010 Good-faith 1 -01111010010 Thirty-odd 1 -01111010010 Marginal-rate 1 -01111010010 price-corroding 1 -01111010010 Gasoline-refining 1 -01111010010 Embarrassing 1 -01111010010 Districtwide 1 -01111010010 State-capitol 1 -01111010010 Large-deposit 1 -01111010010 Coupon-equivalent 1 -01111010010 Company-sponsored 1 -01111010010 Private-school 1 -01111010010 Business-faculty 1 -01111010010 water-guzzling 1 -01111010010 Craving 1 -01111010010 Softwood-timber 1 -01111010010 Overshooting 1 -01111010010 State-financed 1 -01111010010 Luxury-car 1 -01111010010 Stiffening 1 -01111010010 Exportable 1 -01111010010 Trade-related 1 -01111010010 Non-sugar 1 -01111010010 Maternal 1 -01111010010 Low-grade 1 -01111010010 Racketeers 1 -01111010010 --Law 1 -01111010010 .utility 1 -01111010010 High-profile 1 -01111010010 Intentional 1 -01111010010 Self-service 1 -01111010010 Death's-door 1 -01111010010 Fantasy-hotel 1 -01111010010 Subsoil 1 -01111010010 Apartmenthouse 1 -01111010010 Fully-indexed 1 -01111010010 Column-shaped 1 -01111010010 Accounting-profession 1 -01111010010 Sobering 1 -01111010010 Unleashing 1 -01111010010 Unsound 1 -01111010010 Price-rule 1 -01111010010 Ill-advised 1 -01111010010 Post-race 1 -01111010010 Deposit-insurance 1 -01111010010 Hedonic 1 -01111010010 Back-door 1 -01111010010 Sugar-grower 1 -01111010010 Unsupported 1 -01111010010 Reoffering 1 -01111010010 Lessening 1 -01111010010 Indian-interest 1 -01111010010 Bond-fund 1 -01111010010 Impending 1 -01111010010 Employment-related 1 -01111010010 Anti-Armenian 1 -01111010010 Acceptable 2 -01111010010 Forsaking 2 -01111010010 Single-source 2 -01111010010 More-liberal 2 -01111010010 Nonbuilding 2 -01111010010 Cult 2 -01111010010 Inpatient 2 -01111010010 Dissecting 2 -01111010010 Improper 2 -01111010010 Pacemaker 2 -01111010010 Far-reaching 2 -01111010010 Expatriate 2 -01111010010 FIRST-QUARTER 2 -01111010010 Drug-development 2 -01111010010 Narrower 2 -01111010010 Mid-January 2 -01111010010 Burgeoning 2 -01111010010 Superfluous 2 -01111010010 Home-grown 2 -01111010010 General-aviation 2 -01111010010 Flashy 2 -01111010010 Retrofitting 2 -01111010010 Scant 2 -01111010010 Storing 2 -01111010010 Supersaver 2 -01111010010 Brokerage-house 2 -01111010010 Skyrocketing 2 -01111010010 Multi-employer 2 -01111010010 Free-spending 2 -01111010010 Swifter 2 -01111010010 Cramped 2 -01111010010 Raw-material 2 -01111010010 Lighter-than-expected 2 -01111010010 Front-line 2 -01111010010 Bodily 2 -01111010010 Revoking 2 -01111010010 Defective 2 -01111010010 Unintended 2 -01111010010 Frivolous 2 -01111010010 Decisive 2 -01111010010 Septic 2 -01111010010 Fruitcake 2 -01111010010 Industry-wide 2 -01111010010 Purported 2 -01111010010 Outraging 2 -01111010010 Direct-mail 2 -01111010010 Balky 2 -01111010010 Legalize 2 -01111010010 Plant-closing 2 -01111010010 Burdensome 2 -01111010010 Smear 2 -01111010010 Grass-roots 2 -01111010010 Mid-October 2 -01111010010 New-construction 2 -01111010010 Longterm 2 -01111010010 Parochial 2 -01111010010 High-density 2 -01111010010 LAPTOP 2 -01111010010 Forthcoming 2 -01111010010 Explicit 2 -01111010010 Disk-drive 2 -01111010010 Onerous 2 -01111010010 Sterilized 2 -01111010010 Photodegradable 2 -01111010010 Woodlot 2 -01111010010 Swath 2 -01111010010 Sulfur-dioxide 2 -01111010010 b-GM 2 -01111010010 Packaged-goods 2 -01111010010 Hardwood 2 -01111010010 Exploratory 2 -01111010010 Top-quality 2 -01111010010 MARVIN 2 -01111010010 Spurning 2 -01111010010 Inappropriate 2 -01111010010 Arbitrary 2 -01111010010 Introductory 2 -01111010010 Unfunded 2 -01111010010 Robusta-type 2 -01111010010 Flashing 2 -01111010010 STOCK-OPTION 2 -01111010010 DESIGNING 2 -01111010010 Clearer 2 -01111010010 Incorrect 2 -01111010010 Ongoing 2 -01111010010 Crosstown 2 -01111010010 Requesting 2 -01111010010 ADJUSTABLE-RATE 2 -01111010010 Unanimous 2 -01111010010 Non-manufacturer 2 -01111010010 Microsocial 2 -01111010010 Inaccurate 2 -01111010010 Law-firm 2 -01111010010 Stringent 2 -01111010010 Duplicate 2 -01111010010 Tranquil 2 -01111010010 Sunflower-seed 2 -01111010010 Value-added 2 -01111010010 Glasses 2 -01111010010 Latest-period 2 -01111010010 Accumulating 2 -01111010010 Concentrated 2 -01111010010 On-time 2 -01111010010 Lesser-known 2 -01111010010 Corrosion 2 -01111010010 Agreeable 2 -01111010010 Judicious 2 -01111010010 Printronix 2 -01111010010 Gradual 2 -01111010010 Private-label 2 -01111010010 Collect 2 -01111010010 Consumer-price 2 -01111010010 Subjective 2 -01111010010 Non-oil 2 -01111010010 Asbestos-related 2 -01111010010 Tightened 2 -01111010010 Internecine 2 -01111010010 Risking 2 -01111010010 Delegating 2 -01111010010 Remedial 2 -01111010010 Absentee 2 -01111010010 Startling 2 -01111010010 Cumbersome 2 -01111010010 Computer-driven 2 -01111010010 Flinging 2 -01111010010 Merchant-bank 2 -01111010010 Wholehearted 2 -01111010010 Long-awaited 2 -01111010010 Mortgage-banker 2 -01111010010 Chave 2 -01111010010 Drought-related 2 -01111010010 Oil-company 2 -01111010010 Revived 2 -01111010010 Enlarged 2 -01111010010 Abusive 2 -01111010010 Anti-Israeli 2 -01111010010 Nontraditional 2 -01111010010 Intermittent 2 -01111010010 Fund-raising 2 -01111010010 Elevated 2 -01111010010 Garnering 2 -01111010010 Intravenous 2 -01111010010 Low-interest 2 -01111010010 Prepublication 2 -01111010010 Unrestricted 2 -01111010010 Home-mortgage 2 -01111010010 Intensified 2 -01111010010 Cost-of-funds 2 -01111010010 Reagan-style 2 -01111010010 Fiber-rich 2 -01111010010 Rigorous 2 -01111010010 Gloomy 2 -01111010010 Concerted 2 -01111010010 Hard-currency 2 -01111010010 Off-duty 2 -01111010010 Auto-parts 2 -01111010010 Extracting 2 -01111010010 Doctrinal 2 -01111010010 Heavier-than-expected 2 -01111010010 Irking 2 -01111010010 Resulting 2 -01111010010 Frenzied 2 -01111010010 Farm-subsidy 2 -01111010010 Extradition 2 -01111010010 Record-industry 2 -01111010010 Pork-barrel 2 -01111010010 Inject 2 -01111010010 Mini-mall 2 -01111010010 Minimum-security 2 -01111010010 Tuk-tuk 2 -01111010010 Operating-profit 2 -01111010010 Lignite 2 -01111010010 Second-class 2 -01111010010 Index-arbitrage 2 -01111010010 Over-optimistic 2 -01111010010 Campaign-finance 2 -01111010010 Fluorescent 2 -01111010010 Cancerphobia 2 -01111010010 Preferring 2 -01111010010 Cassettes 2 -01111010010 Modern-day 3 -01111010010 Contaminated 3 -01111010010 Brandishing 3 -01111010010 Pent-up 3 -01111010010 Odd-lot 3 -01111010010 Two-tier 3 -01111010010 Natural-gas 3 -01111010010 Chart-oriented 3 -01111010010 Rusting 3 -01111010010 Birth-control 3 -01111010010 Big-ticket 3 -01111010010 Updated 3 -01111010010 Passenger-car 3 -01111010010 Empirical 3 -01111010010 Centralizing 3 -01111010010 Subdued 3 -01111010010 Factional 3 -01111010010 Deliberate 3 -01111010010 Better-than-expected 3 -01111010010 Long-simmering 3 -01111010010 Compulsory 3 -01111010010 Fault-tolerant 3 -01111010010 Fickle 3 -01111010010 Stronger-than-expected 3 -01111010010 Eased 3 -01111010010 Toll-free 3 -01111010010 Unfavorable 3 -01111010010 Countervailing 3 -01111010010 Bankruptcy-court 3 -01111010010 Double-stack 3 -01111010010 Non-residential 3 -01111010010 Unanswered 3 -01111010010 Budgetary 3 -01111010010 Capital-goods 3 -01111010010 Consumer-products 3 -01111010010 Managerial 3 -01111010010 Triple-digit 3 -01111010010 Photodynamic 3 -01111010010 Suitable 3 -01111010010 Higher-than-expected 3 -01111010010 Outdated 3 -01111010010 Optimistic 3 -01111010010 Roaster 3 -01111010010 Minimum-wage 3 -01111010010 Fiscal-year 3 -01111010010 Heterosexual 3 -01111010010 Small-scale 3 -01111010010 Lateral 3 -01111010010 Respectable 3 -01111010010 BACK-TO-SCHOOL 3 -01111010010 Child-support 3 -01111010010 Wooing 3 -01111010010 Heaviest 3 -01111010010 Received 3 -01111010010 Superpower 3 -01111010010 Lower-than-expected 3 -01111010010 Programmable 3 -01111010010 Labor-management 3 -01111010010 Oil-field 3 -01111010010 Youthful 3 -01111010010 Featuring 3 -01111010010 Evacuation 3 -01111010010 Labor-force 3 -01111010010 Ice-cream 3 -01111010010 Overhaul 3 -01111010010 Planted 3 -01111010010 Takeover-related 3 -01111010010 Brokered 3 -01111010010 Preferential 3 -01111010010 Corrugated 3 -01111010010 Exposing 3 -01111010010 Paramilitary 3 -01111010010 Nuclear-powered 3 -01111010010 Volcanic 3 -01111010010 Credible 3 -01111010010 Periodic 3 -01111010010 Late-breaking 3 -01111010010 Sagging 3 -01111010010 User 3 -01111010010 Non-dollar 3 -01111010010 Softer 3 -01111010010 Franchisee 3 -01111010010 Certificate-of-deposit 3 -01111010010 Detailed 3 -01111010010 .the 3 -01111010010 Follow-up 3 -01111010010 Job-training 3 -01111010010 Out-of-control 3 -01111010010 Community-based 3 -01111010010 Non-accruing 3 -01111010010 Discriminatory 3 -01111010010 Shaky 3 -01111010010 Audience 3 -01111010010 Pro-Israel 3 -01111010010 NED 3 -01111010010 Defended 3 -01111010010 Unsold 4 -01111010010 New-product 4 -01111010010 Full-page 4 -01111010010 Cable-TV 4 -01111010010 Plea 4 -01111010010 Maximizing 4 -01111010010 Collapsing 4 -01111010010 Cost-containment 4 -01111010010 One-hour 4 -01111010010 Heavier 4 -01111010010 Vigorous 4 -01111010010 Avacus 4 -01111010010 Non-defense 4 -01111010010 Long-established 4 -01111010010 Spiritual 4 -01111010010 Output-based 4 -01111010010 Biodegradable 4 -01111010010 Overbuilt 4 -01111010010 Thick 4 -01111010010 Gray-market 4 -01111010010 Late-night 4 -01111010010 Seven-year 4 -01111010010 Recurring 4 -01111010010 Franchised 4 -01111010010 Low-cost 4 -01111010010 Longstanding 4 -01111010010 Unfriendly 4 -01111010010 Stock-fund 4 -01111010010 Non-Japanese 4 -01111010010 Light-duty 4 -01111010010 Cable-television 4 -01111010010 Anti-drug 4 -01111010010 Municipal-bond 4 -01111010010 Procedural 4 -01111010010 Food-industry 4 -01111010010 Nondefense 4 -01111010010 Inconsistent 4 -01111010010 Dish 4 -01111010010 Anti-dumping 4 -01111010010 First-class 4 -01111010010 Diehard 4 -01111010010 Protracted 4 -01111010010 Government-funded 4 -01111010010 Color-television 4 -01111010010 Careless 4 -01111010010 Mass-market 4 -01111010010 Entry-level 4 -01111010010 Unprecedented 4 -01111010010 Public-works 4 -01111010010 Semifinished 4 -01111010010 Stricter 4 -01111010010 Distillate 4 -01111010010 Runaway 4 -01111010010 Fairly 4 -01111010010 Uneven 4 -01111010010 Loan-loss 4 -01111010010 Non-accrual 5 -01111010010 Overt 5 -01111010010 Top-level 5 -01111010010 Verbal 5 -01111010010 Marginal 5 -01111010010 Adverse 5 -01111010010 Lengthy 5 -01111010010 Aggregate 5 -01111010010 Preferred-stock 5 -01111010010 Unpublished 5 -01111010010 Prolonged 5 -01111010010 Decreased 5 -01111010010 Foreign-policy 5 -01111010010 Perceived 5 -01111010010 Joint-venture 5 -01111010010 Non-military 5 -01111010010 Vivid 5 -01111010010 Second-half 5 -01111010010 Small-company 5 -01111010010 Double-digit 5 -01111010010 Controversial 5 -01111010010 Condom 5 -01111010010 Smelling 5 -01111010010 Motor-vehicle 5 -01111010010 Across-the-board 5 -01111010010 Tumbling 5 -01111010010 Surprising 5 -01111010010 Logging 5 -01111010010 Business-cycle 5 -01111010010 Enthusiastic 5 -01111010010 Buoyant 5 -01111010010 Stop-loss 5 -01111010010 Restrictive 5 -01111010010 Day-to-day 5 -01111010010 Practicing 5 -01111010010 Dubious 5 -01111010010 Varying 5 -01111010010 Anti-Bork 5 -01111010010 Dietary 5 -01111010010 Brand-name 5 -01111010010 Third-party 5 -01111010010 Lagging 5 -01111010010 Obsolete 5 -01111010010 Inner-city 5 -01111010010 Differing 6 -01111010010 Curb 6 -01111010010 Considerable 6 -01111010010 Blue-collar 6 -01111010010 Outpatient 6 -01111010010 Identical 6 -01111010010 Stiffer 6 -01111010010 Successive 6 -01111010010 Department-store 6 -01111010010 Buy-out 6 -01111010010 Accumulated 6 -01111010010 High-quality 6 -01111010010 Benchmark 6 -01111010010 Free-lance 6 -01111010010 Healthier 6 -01111010010 Consumer-goods 6 -01111010010 Accrued 6 -01111010010 Personal-computer 6 -01111010010 Retaining 6 -01111010010 Violent 6 -01111010010 Realized 6 -01111010010 Tax-free 6 -01111010010 Fierce 6 -01111010010 Sustained 7 -01111010010 Computer-guided 7 -01111010010 Accelerated 7 -01111010010 Dissenting 7 -01111010010 Central-bank 7 -01111010010 Ample 7 -01111010010 Public-sector 7 -01111010010 Emotional 7 -01111010010 Drastic 7 -01111010010 Restoring 7 -01111010010 Anticipated 7 -01111010010 Unadjusted 7 -01111010010 Tax-shelter 7 -01111010010 Cross-border 7 -01111010010 Proved 7 -01111010010 Deferred 7 -01111010010 Unconfirmed 7 -01111010010 Mixing 7 -01111010010 c-Domestic 7 -01111010010 Workstation 7 -01111010010 Old-fashioned 7 -01111010010 Premature 7 -01111010010 Faulty 7 -01111010010 Explosive 7 -01111010010 Two-way 7 -01111010010 Heightened 7 -01111010010 Regulated 7 -01111010010 Color-TV 8 -01111010010 Optional 8 -01111010010 Unionized 8 -01111010010 Desktop 8 -01111010010 Skilled 8 -01111010010 Tentative 8 -01111010010 Authorized 8 -01111010010 Copying 8 -01111010010 Five-year 8 -01111010010 Free-market 8 -01111010010 Escalating 8 -01111010010 Non-OPEC 8 -01111010010 Single-premium 8 -01111010010 Boosting 8 -01111010010 Payroll 8 -01111010010 One-time 8 -01111010010 Lackluster 8 -01111010010 Vaccine 9 -01111010010 Outstanding 9 -01111010010 Upward 9 -01111010010 Definitive 9 -01111010010 Insider-trading 9 -01111010010 Severe 9 -01111010010 Vast 9 -01111010010 Informal 9 -01111010010 Yearly 9 -01111010010 New-home 9 -01111010010 Non-performing 9 -01111010010 Volatile 9 -01111010010 Suggested 9 -01111010010 Median 9 -01111010010 Mandated 9 -01111010010 Incoming 9 -01111010010 Brisk 9 -01111010010 Subordinated 9 -01111010010 Firmer 10 -01111010010 Inadequate 10 -01111010010 Careful 10 -01111010010 Home-equity 10 -01111010010 Demographic 10 -01111010010 Nonfarm 10 -01111010010 Wider 10 -01111010010 Sweeping 10 -01111010010 Attracting 10 -01111010010 Money-fund 10 -01111010010 Taxable 10 -01111010010 Routine 10 -01111010010 Chronic 10 -01111010010 Mainframe 10 -01111010010 Unexpected 10 -01111010010 Projected 10 -01111010010 Outright 10 -01111010010 Bilateral 10 -01111010010 New-issue 10 -01111010010 Yen-denominated 10 -01111010010 Bearish 11 -01111010010 Soft-drink 11 -01111010010 Near-term 11 -01111010010 Unauthorized 11 -01111010010 Tax-exempt 11 -01111010010 Nonmilitary 11 -01111010010 Heavily 11 -01111010010 Imposing 11 -01111010010 Sporadic 11 -01111010010 Conflicting 11 -01111010010 Valuable 11 -01111010010 Arbitrage-related 11 -01111010010 Plunging 11 -01111010010 Depressed 11 -01111010010 Reported 11 -01111010010 Cautious 11 -01111010010 Slumping 12 -01111010010 Proper 12 -01111010010 Expensive 12 -01111010010 Unfair 12 -01111010010 Alleged 12 -01111010010 Disposable 12 -01111010010 Lingering 12 -01111010010 Inflation-adjusted 12 -01111010010 Exchange-rate 12 -01111010010 Air-traffic 12 -01111010010 Promotional 12 -01111010010 Tougher 12 -01111010010 Teen-age 12 -01111010010 Punitive 12 -01111010010 Non-U.S. 12 -01111010010 Investment-grade 12 -01111010010 Large-scale 12 -01111010010 Maximum 13 -01111010010 Steady 13 -01111010010 Intense 13 -01111010010 Expanded 13 -01111010010 Narrow 13 -01111010010 Hefty 13 -01111010010 Paid 13 -01111010010 First-year 13 -01111010010 Robust 13 -01111010010 Would-be 13 -01111010010 Thin 14 -01111010010 Comparative 14 -01111010010 Chart-guided 14 -01111010010 Mobile-home 14 -01111010010 Coordinated 14 -01111010010 Tighter 14 -01111010010 Protectionist 14 -01111010010 Precise 14 -01111010010 Extensive 14 -01111010010 Unilateral 14 -01111010010 Parliamentary 14 -01111010010 Shorter 15 -01111010010 Encouraging 15 -01111010010 Preventive 15 -01111010010 Modest 15 -01111010010 Last-minute 15 -01111010010 Powerful 16 -01111010010 Credit-card 16 -01111010010 Crude-steel 16 -01111010010 Cheaper 16 -01111010010 Favorable 16 -01111010010 Non-building 17 -01111010010 Longtime 17 -01111010010 Weaker 17 -01111010010 Strict 17 -01111010010 Persistent 17 -01111010010 Ethnic 18 -01111010010 Cumulative 18 -01111010010 Mandatory 18 -01111010010 Proxy 18 -01111010010 Year-end 18 -01111010010 Seasonal 18 -01111010010 Mounting 19 -01111010010 Three-month 19 -01111010010 Sudden 19 -01111010010 Negative 19 -01111010010 Unofficial 20 -01111010010 Secured 20 -01111010010 Sluggish 20 -01111010010 Covert 20 -01111010010 Adjustable-rate 20 -01111010010 Revised 20 -01111010010 Mutual-fund 21 -01111010010 Raw 21 -01111010010 Excessive 21 -01111010010 Scattered 21 -01111010010 Stock-market 21 -01111010010 Sexual 21 -01111010010 Slower 22 -01111010010 Stronger 22 -01111010010 Racial 22 -01111010010 Extraordinary 22 -01111010010 Rebel 22 -01111010010 Long-distance 22 -01111010010 Repeated 23 -01111010010 Partial 23 -01111010010 Massive 23 -01111010010 Excess 23 -01111010010 Positive 23 -01111010010 Bullish 23 -01111010010 High-tech 24 -01111010010 Unsecured 24 -01111010010 Substantial 24 -01111010010 Year-to-date 25 -01111010010 Prospective 25 -01111010010 Fixed 25 -01111010010 Surging 26 -01111010010 Per 26 -01111010010 Veteran 27 -01111010010 Cigarette 28 -01111010010 Jury 28 -01111010010 Speculative 28 -01111010010 Larger 28 -01111010010 Nonresidential 28 -01111010010 Renewed 29 -01111010010 Reduced 29 -01111010010 Tight 30 -01111010010 Non-farm 30 -01111010010 Important 30 -01111010010 Minimum 31 -01111010010 Significant 31 -01111010010 Soaring 31 -01111010010 Margin 31 -01111010010 Computerized 31 -01111010010 Latest 32 -01111010010 Interest-rate 32 -01111010010 Illegal 34 -01111010010 Health-care 34 -01111010010 Specific 34 -01111010010 Formal 36 -01111010010 Proposed 36 -01111010010 Developing 37 -01111010010 Active 37 -01111010010 Weak 38 -01111010010 Fixed-rate 38 -01111010010 Longer 39 -01111010010 Striking 41 -01111010010 Regular 41 -01111010010 Secondary 41 -01111010010 Slow 41 -01111010010 Separate 45 -01111010010 Successful 46 -01111010010 Remaining 46 -01111010010 Widespread 47 -01111010010 Foreign-exchange 49 -01111010010 Rival 49 -01111010010 Hourly 49 -01111010010 Possible 49 -01111010010 Improved 50 -01111010010 Real-estate 50 -01111010010 Subsequent 51 -01111010010 Phone 52 -01111010010 Actual 52 -01111010010 Existing 53 -01111010010 So-called 55 -01111010010 Wage 57 -01111010010 Shareholder 59 -01111010010 Huge 61 -01111010010 Nonperforming 62 -01111010010 Numerous 70 -01111010010 Potential 72 -01111010010 Past 73 -01111010010 Falling 74 -01111010010 Various 79 -01111010010 Preliminary 83 -01111010010 World-wide 85 -01111010010 Heating 87 -01111010010 Broader 91 -01111010010 Growing 97 -01111010010 Conventional 103 -01111010010 Previous 105 -01111010010 Smaller 111 -01111010010 Increased 112 -01111010010 Traditional 113 -01111010010 Raw-steel 113 -01111010010 Continued 115 -01111010010 Additional 125 -01111010010 Short-term 138 -01111010010 Low 143 -01111010010 Long-term 148 -01111010010 Full 150 -01111010010 Annual 157 -01111010010 Final 158 -01111010010 Rising 194 -01111010010 Crude 198 -01111010010 Large 207 -01111010010 Initial 223 -01111010010 Takeover 229 -01111010010 Strong 250 -01111010010 Lower 272 -01111010010 Domestic 325 -01111010010 Higher 350 -01111010010 Current 381 -01111010010 Recent 520 -01111010010 Total 878 -01111010010 Her 1010 -01111010010 Their 2149 -01111010010 Its 3519 -01111010010 Such 3747 -01111010010 His 6035 -01111010010 Other 4082 -01111010011 Residential-building 1 -01111010011 Community-care 1 -01111010011 Sale-leaseback 1 -01111010011 Imaginative 1 -01111010011 Put-call 1 -01111010011 Travel-related 1 -01111010011 Pro-Syrian 1 -01111010011 More-substantial 1 -01111010011 hedge-type 1 -01111010011 Corporate-run 1 -01111010011 Market-reservation 1 -01111010011 First-born 1 -01111010011 Oil-sensitive 1 -01111010011 Nonlinear 1 -01111010011 Track-side 1 -01111010011 Pin-stripe 1 -01111010011 Fuel-economy 1 -01111010011 Foisting 1 -01111010011 Non-brokerage 1 -01111010011 Disconnecting 1 -01111010011 Price-trend 1 -01111010011 Sprinters 1 -01111010011 Archival 1 -01111010011 Pre-holiday 1 -01111010011 Eavesdropping 1 -01111010011 Re-regulatory 1 -01111010011 Arms-smuggling 1 -01111010011 Car-mounted 1 -01111010011 Military-type 1 -01111010011 Property-rights 1 -01111010011 Reflex 1 -01111010011 Slice-of-life 1 -01111010011 Labor-protective 1 -01111010011 Drenching 1 -01111010011 Stubbed 1 -01111010011 Job-guarantee 1 -01111010011 Vital-interest 1 -01111010011 Countervailing-duty 1 -01111010011 STOLEN 1 -01111010011 Chemical-producing 1 -01111010011 Ranchland 1 -01111010011 Price-supporting 1 -01111010011 Unsupervised 1 -01111010011 Grownups 1 -01111010011 Goblins 1 -01111010011 Post-season 1 -01111010011 Lopsided 1 -01111010011 Post-Watergate 1 -01111010011 Maglev 1 -01111010011 Employee-leasing 1 -01111010011 Tax-consuming 1 -01111010011 Predominant 1 -01111010011 Converter-equipped 1 -01111010011 Order-entry 1 -01111010011 Pageantry-filled 1 -01111010011 31,191 1 -01111010011 Lifetime-care 1 -01111010011 Work-force 1 -01111010011 Stimulative 1 -01111010011 Public-school 1 -01111010011 Anti-fraud 1 -01111010011 Manufacturing-industry 1 -01111010011 Overambitious 1 -01111010011 Homebuyers 1 -01111010011 Deficit-reduction 1 -01111010011 Contrived 1 -01111010011 Cholesterol-reducing 1 -01111010011 Pro-nuclear 1 -01111010011 red-diaper 1 -01111010011 Semiconductor-oriented 1 -01111010011 Ill-chosen 1 -01111010011 Base-wage 1 -01111010011 Fetal-cell 1 -01111010011 Baldness 1 -01111010011 Hideous 1 -01111010011 Pit-bull 1 -01111010011 inconceivably 1 -01111010011 Non-banking 1 -01111010011 Anti-Sandinista 1 -01111010011 Lecturers 1 -01111010011 Hereditary 1 -01111010011 EXPENSE-ACCOUNT 1 -01111010011 MORTGAGE-DEDUCTION 1 -01111010011 Openend 1 -01111010011 College-tuition 1 -01111010011 Work-zone 1 -01111010011 Sing-song 1 -01111010011 Digital-to-digital 1 -01111010011 Economic-growth 1 -01111010011 Papal-tour 1 -01111010011 Tenure 1 -01111010011 Narrow-interest 1 -01111010011 Five-thousand-plus 1 -01111010011 Dressy 1 -01111010011 High-turnover 1 -01111010011 Credit-rating 1 -01111010011 Commonplace 1 -01111010011 Predictable 1 -01111010011 Family-planning 1 -01111010011 IDEALISTIC 1 -01111010011 Legal-malpractice 1 -01111010011 Equity-purchase 1 -01111010011 Low-beta 1 -01111010011 Alabaster 1 -01111010011 Tartar-control 1 -01111010011 Mouth-watering 1 -01111010011 Non-alcoholic 1 -01111010011 anti-Irish 1 -01111010011 Wage-cut 1 -01111010011 Corporate-control 1 -01111010011 Upper-level 1 -01111010011 Preferred-share 1 -01111010011 Equal-time 1 -01111010011 75,325 1 -01111010011 Cluttered 1 -01111010011 Laser-beam 1 -01111010011 capacity-control 1 -01111010011 Youse 1 -01111010011 Groundbreaking 1 -01111010011 Uncoordinated 1 -01111010011 Advance-fee 1 -01111010011 Verifiable 1 -01111010011 Flight-information 1 -01111010011 Tax-treaty 1 -01111010011 Undersea 1 -01111010011 Noxious 1 -01111010011 Minesweeper 1 -01111010011 Superconductor-oriented 1 -01111010011 Overlapping 1 -01111010011 CORN-HOG 1 -01111010011 Anabolic 1 -01111010011 Gas-mileage 1 -01111010011 dope-smuggling 1 -01111010011 Service-oriented 1 -01111010011 Seeing-eye 1 -01111010011 Name-brand 1 -01111010011 Socket 1 -01111010011 Metallic 1 -01111010011 Two-parent 1 -01111010011 Human-hair 1 -01111010011 Weighty 1 -01111010011 Well-groomed 1 -01111010011 Sinking-fund 1 -01111010011 Oil-field-service 1 -01111010011 Standby 1 -01111010011 Discordant 1 -01111010011 First-round 1 -01111010011 Commercial-liability 1 -01111010011 Discouraging 1 -01111010011 Momentous 1 -01111010011 City-campus 1 -01111010011 Spray-can 1 -01111010011 Self-funded 1 -01111010011 Five-dollar 1 -01111010011 Eight-year-long 1 -01111010011 Tort-reform 1 -01111010011 Pre-tax-revision 1 -01111010011 Homosexual-rights 1 -01111010011 Anti-pollution 1 -01111010011 Fund-management 1 -01111010011 missile-seeking 1 -01111010011 Infrastructural 1 -01111010011 Auto-purchase 1 -01111010011 Subliminal 1 -01111010011 Windblown 1 -01111010011 Extended-stay 1 -01111010011 Pre-season 1 -01111010011 Get-out-and-vote 1 -01111010011 Strike-authorization 1 -01111010011 Wind-whipped 1 -01111010011 Operating-differential-subsidies 1 -01111010011 egg-bearing 1 -01111010011 Big-money 1 -01111010011 Cigar-making 1 -01111010011 Currency-swap 1 -01111010011 ANTI-PLASTIC 1 -01111010011 Titian-tressed 1 -01111010011 Specialty-steel 1 -01111010011 Accented-French 1 -01111010011 Multi-year 1 -01111010011 Rate-regulation 1 -01111010011 Cigarette-lighter 1 -01111010011 pay-to-vote 1 -01111010011 Tear-gas 1 -01111010011 Wind-shear 1 -01111010011 Joint-custody 1 -01111010011 Lucrative 1 -01111010011 Fancier 1 -01111010011 Court-appointed 1 -01111010011 Income-support 1 -01111010011 Asset-allocation 1 -01111010011 Swallowing 1 -01111010011 HEATING 1 -01111010011 Food-service 1 -01111010011 Better-reviewed 1 -01111010011 Unauthorized-practice-of-law 1 -01111010011 Add-on 1 -01111010011 shrink-reduction 1 -01111010011 Documented 1 -01111010011 Pro-Bork 1 -01111010011 Top-notch 1 -01111010011 Asbestos-claim 1 -01111010011 Shorter-maturity 1 -01111010011 Hourlong 1 -01111010011 White-owned 1 -01111010011 Public-affairs 1 -01111010011 Proxy-solicitation 1 -01111010011 Family-leave 1 -01111010011 Anti-gravity 1 -01111010011 Self-cleaning 1 -01111010011 Piecemeal 1 -01111010011 Rate-of-return 1 -01111010011 Out-in-the-sticks 1 -01111010011 Antigen-based 1 -01111010011 Sports-rights 1 -01111010011 Eleventh-hour 1 -01111010011 Live-floor 1 -01111010011 Bookkeeping 1 -01111010011 Immigrant-rights 1 -01111010011 Time-zone 1 -01111010011 Less-durable 1 -01111010011 lightning-rod 1 -01111010011 PUBLIC-INTEREST 1 -01111010011 Single-country 1 -01111010011 Snappy 1 -01111010011 Industry-environmentalist 1 -01111010011 Sales-tax 1 -01111010011 Inventory-sales 1 -01111010011 High-precision 1 -01111010011 Switched 1 -01111010011 Cooped-up 1 -01111010011 Scraggly 1 -01111010011 Widows 1 -01111010011 Nonmanufacturing-sector 1 -01111010011 Health-cost 1 -01111010011 Foreign-controlled 1 -01111010011 Rubber-based 1 -01111010011 Methane-making 1 -01111010011 Horse-drawn 1 -01111010011 Little-noticed 1 -01111010011 Exclusionary-rule 1 -01111010011 Performance-measurement 1 -01111010011 Resident-alien 1 -01111010011 Depreciable 1 -01111010011 Well-crafted 1 -01111010011 Broker-client 1 -01111010011 emigrational 1 -01111010011 Debtor-country 1 -01111010011 U.S.-Jewish 1 -01111010011 Sex-harassment 1 -01111010011 Mangy 1 -01111010011 Shell-torn 1 -01111010011 Parasite 1 -01111010011 Oil-drilling 1 -01111010011 Nuclear-weapons-free 1 -01111010011 Price-increase 1 -01111010011 Farm-program 1 -01111010011 Commercial-jet 1 -01111010011 Memorable 1 -01111010011 Lower-court 1 -01111010011 Traffic-engineering 1 -01111010011 Work-and-family 1 -01111010011 family-strengthening 1 -01111010011 Bread-and-butter 1 -01111010011 Capital-budget 1 -01111010011 Subconscious 1 -01111010011 Thorny 1 -01111010011 Expiration-related 1 -01111010011 Co-insurance 1 -01111010011 Home-office 1 -01111010011 Five-thousand 1 -01111010011 Service-related 1 -01111010011 Air-force 1 -01111010011 Stereotypical 1 -01111010011 Nuclear-free 1 -01111010011 Antiapartheid 1 -01111010011 Offshore-banking 1 -01111010011 Nicer 1 -01111010011 Daytime-only 1 -01111010011 Plastics-related 1 -01111010011 Inconvenient 1 -01111010011 Transmittal 1 -01111010011 Gamesmanship 1 -01111010011 Defensible 1 -01111010011 Triplicate 1 -01111010011 Unprotected 1 -01111010011 Dividend-reinvestment 1 -01111010011 Drive-in 1 -01111010011 Computer-industry 1 -01111010011 IIIA 1 -01111010011 reeducation 1 -01111010011 High-rise 1 -01111010011 Anti-military 1 -01111010011 Data-gathering 1 -01111010011 Laboratory-baked 1 -01111010011 Pink-cheeked 1 -01111010011 Non-core 1 -01111010011 Star-studded 1 -01111010011 Auctioning 1 -01111010011 Electronic-publishing 1 -01111010011 Non-Catholic 1 -01111010011 Foster-care 1 -01111010011 Scanner-based 1 -01111010011 Bucolic 1 -01111010011 Record-high 1 -01111010011 Farmworker-advocacy 1 -01111010011 Phase-two 1 -01111010011 Human-testing 1 -01111010011 TAXPAYING 1 -01111010011 Calendar-year 1 -01111010011 Air-brushed 1 -01111010011 Reused 1 -01111010011 Small-diameter 1 -01111010011 Foreclosed 1 -01111010011 Pension-law 1 -01111010011 Fifty-five-year-old 1 -01111010011 Out-of-area 1 -01111010011 Rheumatic 1 -01111010011 Fibric 1 -01111010011 Enzyme 1 -01111010011 German-supplied 1 -01111010011 Loss-on-sale 1 -01111010011 Wheeler-dealers 1 -01111010011 Household-borrowing 1 -01111010011 Spillover 1 -01111010011 Demand-side 1 -01111010011 State-supported 1 -01111010011 Higher-density 1 -01111010011 Gasoline-tax 1 -01111010011 Light-colored 1 -01111010011 Legal-fee 1 -01111010011 Smallformat 1 -01111010011 Balance-of-payments 1 -01111010011 Life-of-contract 1 -01111010011 Lung-cancer 1 -01111010011 Space-launch 1 -01111010011 Office-supplies 1 -01111010011 Development-agency 1 -01111010011 Self-managed 1 -01111010011 Gold-linked 1 -01111010011 Rhesus 1 -01111010011 Stop-smoking 1 -01111010011 Collectivized 1 -01111010011 Insecticidal 1 -01111010011 Gold-certificate 1 -01111010011 Innumerable 1 -01111010011 Nagging 1 -01111010011 Between-bout 1 -01111010011 tract-by-tract 1 -01111010011 Tunable 1 -01111010011 Debt-ceiling 1 -01111010011 Pension-related 1 -01111010011 Theses 1 -01111010011 Drawn-out 1 -01111010011 Unrated 1 -01111010011 Freestanding 1 -01111010011 Yen-related 1 -01111010011 Rate-increase 1 -01111010011 Streamlined 1 -01111010011 Lower-margin 1 -01111010011 Invisibles 1 -01111010011 New-found 1 -01111010011 Fill-or-kill 1 -01111010011 ex-cons 1 -01111010011 Non-railroad 1 -01111010011 Detachable 1 -01111010011 Statefunded 1 -01111010011 self-defensive 1 -01111010011 Water-diversion 1 -01111010011 Health-insurance 1 -01111010011 Soviet-Marxist-Leninist 1 -01111010011 Silver-dollar-sized 1 -01111010011 Anti-cancer 1 -01111010011 Matchbook 1 -01111010011 Finance-related 1 -01111010011 slave-trading 1 -01111010011 Auto-production 1 -01111010011 Self-mutilating 1 -01111010011 SUPERCONDUCTOR 1 -01111010011 Right-to-work 1 -01111010011 Pro-test 1 -01111010011 Single-room-occupancy 1 -01111010011 Treacherous 1 -01111010011 Wrongful-death 1 -01111010011 Work-rule 1 -01111010011 Job-inflation 1 -01111010011 Cold-metal 1 -01111010011 Price-fixing 1 -01111010011 Hand-woven 1 -01111010011 Agricultural-chemicals 1 -01111010011 Teletext 1 -01111010011 Cold-weather 1 -01111010011 Higher-quality 1 -01111010011 First-generation 1 -01111010011 Much-ballyhooed 1 -01111010011 Business-management 1 -01111010011 High-resolution 1 -01111010011 Heirloom-seed 1 -01111010011 Fairness-doctrine 1 -01111010011 Adventure-travel 1 -01111010011 Cotton-producing 1 -01111010011 Non-stop 1 -01111010011 Amended 1 -01111010011 Personal-interest 1 -01111010011 Discount-rate 1 -01111010011 Extravagant 1 -01111010011 High-capacity 1 -01111010011 Almost-complete 1 -01111010011 Termite 1 -01111010011 Contradictory 1 -01111010011 Two-foot-high 1 -01111010011 Sought-after 1 -01111010011 Wind-etched 1 -01111010011 Shriveled 1 -01111010011 Public-service 1 -01111010011 Cradling 1 -01111010011 Child-welfare 1 -01111010011 ADF 1 -01111010011 Cotton-growing 1 -01111010011 Basketball-size 1 -01111010011 Hydrogeologic 1 -01111010011 Stacked 1 -01111010011 Consumer-protection 1 -01111010011 Eleven-month 1 -01111010011 Superconductive 1 -01111010011 Full-term 1 -01111010011 Home-improvement 1 -01111010011 Co-marketing 1 -01111010011 Instructional 1 -01111010011 Doctorate 1 -01111010011 Youth-related 1 -01111010011 Feedlot 1 -01111010011 Manipulable 1 -01111010011 Non-refundable 1 -01111010011 Foreign-made 1 -01111010011 Budget-gobbling 1 -01111010011 Once-dingy 1 -01111010011 Public-interest 1 -01111010011 Private-interest 1 -01111010011 November-period 1 -01111010011 Energy-efficiency 1 -01111010011 Food-processing 1 -01111010011 Teleconferencing 1 -01111010011 State-of-the-art 1 -01111010011 Category-killer 1 -01111010011 Converging 1 -01111010011 Hazardous-waste 1 -01111010011 Dollar-related 1 -01111010011 Early-entry 1 -01111010011 Long-buried 1 -01111010011 three-piece-suit 1 -01111010011 Video-imaging 1 -01111010011 Driver-training 1 -01111010011 Kleig 1 -01111010011 Memory-resident 1 -01111010011 Steel-framed 1 -01111010011 U.S.-Marcos 1 -01111010011 Wage-concession 1 -01111010011 Evoking 1 -01111010011 Mer-myths 1 -01111010011 Dialysis 1 -01111010011 Student-run 1 -01111010011 Joint-filing 1 -01111010011 non-denial 1 -01111010011 Toxic-tort 1 -01111010011 Social-welfare 1 -01111010011 Master's-degree 1 -01111010011 Stoppages 1 -01111010011 High-double-digit 1 -01111010011 Tape-recorded 1 -01111010011 Venture-backed 1 -01111010011 Title-insurance 1 -01111010011 Frequent-guest 1 -01111010011 Summer-grown 1 -01111010011 Debt-restructuring 1 -01111010011 Fudging 1 -01111010011 Once-struggling 1 -01111010011 Well-conducted 1 -01111010011 Air-raid 1 -01111010011 Disappearing 1 -01111010011 Defense-software 1 -01111010011 Job-search 1 -01111010011 Sports-related 1 -01111010011 Burial 1 -01111010011 Doom-and-gloom 1 -01111010011 Variable-life 1 -01111010011 Round-table 1 -01111010011 Medical-emergency 1 -01111010011 Fist 1 -01111010011 Multi-interest 1 -01111010011 Recalcitrant 1 -01111010011 Lurid 1 -01111010011 Also-rans 1 -01111010011 Rabies 1 -01111010011 Irrelevant 1 -01111010011 Pay-equity 1 -01111010011 Mall-industry 1 -01111010011 Thrill 1 -01111010011 Piebald 1 -01111010011 Additive 1 -01111010011 Omissions 1 -01111010011 Right-to-die 1 -01111010011 Right-to-life 1 -01111010011 Farm-supply 1 -01111010011 Seeming 1 -01111010011 At-risk 1 -01111010011 Droopy 1 -01111010011 Incendiary 1 -01111010011 Pre-fight 1 -01111010011 Tobacco-grower 1 -01111010011 Megabit 1 -01111010011 Plenary 1 -01111010011 Securities-analyst 1 -01111010011 PRIVACY 1 -01111010011 Take-out 1 -01111010011 Two-child 1 -01111010011 Child-labor 1 -01111010011 Hands-off 1 -01111010011 Space-starved 1 -01111010011 Nonmanufacturing 1 -01111010011 Grassroots 1 -01111010011 Earth-moving 1 -01111010011 Still-sketchy 1 -01111010011 voluntarist 1 -01111010011 Replacement-fuel 1 -01111010011 Kiss-and-tell 1 -01111010011 RAFSANJANI 1 -01111010011 Surly 1 -01111010011 Full-scale 1 -01111010011 Similiar 1 -01111010011 Undetectable 1 -01111010011 Snow-crowned 1 -01111010011 Unsocialized 1 -01111010011 Securitizing 1 -01111010011 Expectant 1 -01111010011 Groomers 1 -01111010011 Search-and-rescue 1 -01111010011 Quilting 1 -01111010011 Thicker 1 -01111010011 White-robed 1 -01111010011 Solar-energy 1 -01111010011 Classless 1 -01111010011 Defense-electronics 1 -01111010011 Work-practice 1 -01111010011 Ring-laser 1 -01111010011 Toy-based 1 -01111010011 Health-food 1 -01111010011 State-tax 1 -01111010011 Narration 1 -01111010011 Nearmost 1 -01111010011 Weeklong 1 -01111010011 Business-climate 1 -01111010011 Anti-hunting 1 -01111010011 Obligation 1 -01111010011 Categories 1 -01111010011 Celluloid 1 -01111010011 Frequent-traveler 1 -01111010011 Playwriting 1 -01111010011 Pupils 1 -01111010011 Pro-French 1 -01111010011 Gifting 1 -01111010011 Three-point 1 -01111010011 counterhegemonic 1 -01111010011 Currency-exchange 1 -01111010011 Prespill 1 -01111010011 Consumer-advocacy 1 -01111010011 Picket 1 -01111010011 More-recent 1 -01111010011 Transit-planning 1 -01111010011 Congested 1 -01111010011 Paltry 1 -01111010011 Incontinency-care 1 -01111010011 non-formal 1 -01111010011 Early-retirement 1 -01111010011 Car-cost 1 -01111010011 Photovoltaic 1 -01111010011 Local-content 1 -01111010011 Temporary-Help 1 -01111010011 Non-peelable 1 -01111010011 semi-transportable 1 -01111010011 Maid-Service 1 -01111010011 Debt-protection 1 -01111010011 Cardiac-bypass 1 -01111010011 Property-damage 1 -01111010011 Electroluminescent 1 -01111010011 Heat-recovery 1 -01111010011 Charitable-gift 1 -01111010011 Steel-price 1 -01111010011 FOREIGN-TAX-CREDIT 1 -01111010011 Revolving-credit 1 -01111010011 Middle-tier 1 -01111010011 Underserved 1 -01111010011 Office-supply 1 -01111010011 Law-review 1 -01111010011 Computer-run 1 -01111010011 Preflight 1 -01111010011 Polymeric 1 -01111010011 Acid-washed 1 -01111010011 Seaside 1 -01111010011 Seasick 1 -01111010011 PlanAAhead 1 -01111010011 Graduate-student 1 -01111010011 Pro-Jackson 1 -01111010011 Catastrophic-care 1 -01111010011 Honking 1 -01111010011 Square-cut 1 -01111010011 Full-length 1 -01111010011 More-drastic 1 -01111010011 Multicrystal 1 -01111010011 Weatherizing 1 -01111010011 Productive 1 -01111010011 Free-enterprise 1 -01111010011 127,297 1 -01111010011 KMT-led 1 -01111010011 Catgut 1 -01111010011 TOUCH-SCREEN 1 -01111010011 Pre-sale 1 -01111010011 Sixteen-bit 1 -01111010011 Sullen 1 -01111010011 Non-petroleum 1 -01111010011 Oil-and-gas 1 -01111010011 1536.0 1 -01111010011 Three-judge 1 -01111010011 Sociodemographic 1 -01111010011 Solar-powered 1 -01111010011 Land-development 1 -01111010011 Insurance-underwriting 1 -01111010011 Submarine-launched 1 -01111010011 White-jacketed 1 -01111010011 Court-ordered 1 -01111010011 Half-frame 1 -01111010011 Petrochemicals-based 1 -01111010011 Anti-Swapo 1 -01111010011 Farm-bred 1 -01111010011 Slower-than-normal 1 -01111010011 high-kill 1 -01111010011 Spacesuit-type 1 -01111010011 Cochlear 1 -01111010011 Campaign-disclosure 1 -01111010011 Twenty-four-hour 1 -01111010011 Doctor-owned 1 -01111010011 Hardship 1 -01111010011 Internationally-oriented 1 -01111010011 Pro-apartheid 1 -01111010011 Small-sized 1 -01111010011 Anti-Lilco 1 -01111010011 Oil-price 1 -01111010011 Wrought-iron 1 -01111010011 Prewar 1 -01111010011 Clustering 1 -01111010011 Billion-dollar 1 -01111010011 Gas-cooled 1 -01111010011 Fungal 1 -01111010011 Mending 1 -01111010011 Doctoring 1 -01111010011 More-specific 1 -01111010011 Monied 1 -01111010011 Abnormal 1 -01111010011 debtsettlement 1 -01111010011 Face-to-face 1 -01111010011 Unused 1 -01111010011 white-boy 1 -01111010011 Bone-weary 1 -01111010011 dollar-a-year 1 -01111010011 Coercive 1 -01111010011 UNEXPECTED 1 -01111010011 Foreign-investment 1 -01111010011 Recurrent 1 -01111010011 Jet-fuel 1 -01111010011 Rolled-over 1 -01111010011 Strong-voiced 1 -01111010011 V-sat 1 -01111010011 Strong-arm 1 -01111010011 Unsubtle 1 -01111010011 Forty-mile-per-hour 1 -01111010011 Recalled 1 -01111010011 Organ-procurement 1 -01111010011 Insurance-related 1 -01111010011 Price-controlled 1 -01111010011 Conclusive 1 -01111010011 Corporate-governance 1 -01111010011 Fiscal-1987 1 -01111010011 Sweatshop 1 -01111010011 Demagogic 1 -01111010011 Growth-and-income 1 -01111010011 Shareholder-rights 1 -01111010011 Preproduction 1 -01111010011 Job-enrichment 1 -01111010011 Brokered-time 1 -01111010011 Bottleneck 1 -01111010011 Immune-suppressed 1 -01111010011 Customer-entertainment 1 -01111010011 Military-procurement 1 -01111010011 Pre-menopausal 1 -01111010011 Contract-based 1 -01111010011 Air-freight 1 -01111010011 Bank-secrecy 1 -01111010011 Medical-related 1 -01111010011 Non-tendering 1 -01111010011 Earth-resources 1 -01111010011 Sole-source 1 -01111010011 Stretch 1 -01111010011 Incidental 1 -01111010011 Avid 1 -01111010011 grower-protection 1 -01111010011 Agrichemical 1 -01111010011 Wife-husband 1 -01111010011 Inoperative 1 -01111010011 Well-heeled 1 -01111010011 Cropless 1 -01111010011 Penarroya 1 -01111010011 Advertising-promotional 1 -01111010011 Hair-raising 1 -01111010011 TWO-CAREER 1 -01111010011 Coal-mine 1 -01111010011 Decriminalizing 1 -01111010011 Dishonored 1 -01111010011 Powerhouse 1 -01111010011 Strategic-weapons 1 -01111010011 plain-guy 1 -01111010011 Anti-Mecham 1 -01111010011 Chicken-sandwich 1 -01111010011 Christian-run 1 -01111010011 Auto-assembly 1 -01111010011 Bereaved 1 -01111010011 Sectoral 1 -01111010011 Pre-teen 1 -01111010011 Electrical-machinery 1 -01111010011 Crack-cocaine 1 -01111010011 Local-area 1 -01111010011 Natural-gas-transportation 1 -01111010011 New-venture 1 -01111010011 Low-volume 1 -01111010011 Double-stacks 1 -01111010011 Grimy 1 -01111010011 Urine 1 -01111010011 Metal-working 1 -01111010011 Sports-drink 1 -01111010011 Disclosed 1 -01111010011 Dual-income 1 -01111010011 Brownish 1 -01111010011 Financial-company 1 -01111010011 brown-and-serve 1 -01111010011 Loose-credit 1 -01111010011 Sales-productivity 1 -01111010011 Two-career 1 -01111010011 Vendor-neutral 1 -01111010011 Carry-over 1 -01111010011 Lab-test 1 -01111010011 Semitrailer 1 -01111010011 Computer-reservation 1 -01111010011 Carpentry 1 -01111010011 Flowcontrol 1 -01111010011 Strong-earnings 1 -01111010011 Diagnosing 1 -01111010011 Cigarette-vending 1 -01111010011 Test-market 1 -01111010011 Home-purchase 1 -01111010011 Loftier 1 -01111010011 Unfounded 1 -01111010011 Sunnites 1 -01111010011 Live-in 1 -01111010011 Antibody 1 -01111010011 Open-adoption 1 -01111010011 Foreign-registered 1 -01111010011 Once-glamorous 1 -01111010011 Recreation-related 1 -01111010011 High-calorie 1 -01111010011 Anti-legislation 1 -01111010011 Fuera 1 -01111010011 Longer-maturity 1 -01111010011 rebate/incentive 1 -01111010011 Totalitarian 1 -01111010011 Rare-coin 1 -01111010011 Anti-plastic 1 -01111010011 BACKROOM 1 -01111010011 Cat-sized 1 -01111010011 Off-the-rack 1 -01111010011 Finer 1 -01111010011 size-eight 1 -01111010011 Cellular-mobile 1 -01111010011 Non-profit 1 -01111010011 Custom-made 1 -01111010011 Naked-put 1 -01111010011 Underage 1 -01111010011 Criminal-fraud 1 -01111010011 Mass-burn 1 -01111010011 2,099.8 1 -01111010011 1,981.3 1 -01111010011 85.0 1 -01111010011 12,505.8 1 -01111010011 932.0 1 -01111010011 896.0 1 -01111010011 Monsoon 1 -01111010011 Weather-driven 1 -01111010011 Mimeographed 1 -01111010011 1549.1 1 -01111010011 1970.7 1 -01111010011 Feel-good 1 -01111010011 Natural-gas-pipeline 1 -01111010011 Marine-transportation 1 -01111010011 Contract-drilling 1 -01111010011 Forest-products 1 -01111010011 Non-steel 1 -01111010011 375,202 1 -01111010011 61,530 1 -01111010011 Rocket-powered 1 -01111010011 Mint-condition 1 -01111010011 b-Imported 1 -01111010011 c-Imported 1 -01111010011 SUBTLE 1 -01111010011 Double-breasted 1 -01111010011 Medical-instrument 1 -01111010011 Wage-settlement 1 -01111010011 Quick-fix 1 -01111010011 636.0 1 -01111010011 6,309.0 1 -01111010011 Bustling 1 -01111010011 KITCHEN 1 -01111010011 Fotoforms 1 -01111010011 Insurgent 1 -01111010011 Off-airport 1 -01111010011 Turbofan 1 -01111010011 Credit-risk 1 -01111010011 Internment 1 -01111010011 Back-of-the-envelope 1 -01111010011 Lighted 1 -01111010011 Leash 1 -01111010011 .investigative 1 -01111010011 Adenomatous 1 -01111010011 Sleep-disorder 1 -01111010011 Vitrification 1 -01111010011 Broker-sold 1 -01111010011 Squatter 1 -01111010011 Inferior 1 -01111010011 Computer-peripherals 1 -01111010011 Drawbacks 1 -01111010011 Stopgap 1 -01111010011 Fat-based 1 -01111010011 Government-mandated 1 -01111010011 Brightly-colored 1 -01111010011 Foremen 1 -01111010011 Less-elaborate 1 -01111010011 Readily 1 -01111010011 Affirmative-action 1 -01111010011 CORPORATE-TRAINING 1 -01111010011 Coal-producing 1 -01111010011 Digitizing 1 -01111010011 Haigspeak 1 -01111010011 Environmental-services 1 -01111010011 Fervent 1 -01111010011 Criminal-libel 1 -01111010011 PRE-EMPLOYMENT 1 -01111010011 Foreign-government 1 -01111010011 Gratuitous 1 -01111010011 SOLIDARITY 1 -01111010011 Irksome 1 -01111010011 FASB-neutralizing 1 -01111010011 Choosy 1 -01111010011 Collectible 1 -01111010011 Once-shunned 1 -01111010011 Tax-code 1 -01111010011 Services-producing 1 -01111010011 Outfield 1 -01111010011 Eye-tracking 1 -01111010011 Anti-poison-pill 1 -01111010011 Anti-greenmail 1 -01111010011 Felony 1 -01111010011 Uncut 1 -01111010011 Secretarial 1 -01111010011 StarKist 1 -01111010011 Grain-price 1 -01111010011 asset-intensive 1 -01111010011 Auto-transfusion 1 -01111010011 Aborted 1 -01111010011 Comanagers 1 -01111010011 Property-investment 1 -01111010011 Wholesale-trade 1 -01111010011 Businesspeople 1 -01111010011 start-out 1 -01111010011 Attorney-general 1 -01111010011 Memory-training 1 -01111010011 Authorizing 1 -01111010011 -people 1 -01111010011 ULTRALOW-TAR 1 -01111010011 Later-stage 1 -01111010011 Payout-window 1 -01111010011 document-intensive 1 -01111010011 Thunderstorm 1 -01111010011 Central-office 1 -01111010011 Higher-earning 1 -01111010011 Anti-Khomeini 1 -01111010011 Executive-search 1 -01111010011 Anti-psychotic 1 -01111010011 Stressed-out 1 -01111010011 Sweet-scented 1 -01111010011 Prohibitive 1 -01111010011 Long-cut 1 -01111010011 Yield-curve 1 -01111010011 Employee-attitude 1 -01111010011 Submachine 1 -01111010011 Minicomputer 1 -01111010011 Capitalist-style 1 -01111010011 Federal-court 1 -01111010011 Technical-chart 1 -01111010011 Laser-weapon 1 -01111010011 Higher-waisted 1 -01111010011 Base-closing 1 -01111010011 Dignitaries 1 -01111010011 2054.2 1 -01111010011 Fragmented 2 -01111010011 Readership 2 -01111010011 Anti-terrorist 2 -01111010011 Overwhelming 2 -01111010011 Two-stroke 2 -01111010011 Housing-related 2 -01111010011 Marketable 2 -01111010011 Church-related 2 -01111010011 Agriculture-sector 2 -01111010011 Commodity-related 2 -01111010011 Miscreants 2 -01111010011 Institutional-type 2 -01111010011 Large-screen 2 -01111010011 Remarried 2 -01111010011 Aggrieved 2 -01111010011 Spacing 2 -01111010011 Transportation-equipment 2 -01111010011 Precocious 2 -01111010011 Career-ladder 2 -01111010011 Replicating 2 -01111010011 Center-right 2 -01111010011 Non-cosmetic 2 -01111010011 Political-action 2 -01111010011 Bond-rating 2 -01111010011 Man-made 2 -01111010011 Exhaustive 2 -01111010011 Definite 2 -01111010011 Classroom 2 -01111010011 Black-market 2 -01111010011 Floppy 2 -01111010011 Broad-based 2 -01111010011 Code-sharing 2 -01111010011 Securities-fraud 2 -01111010011 VENTURE-CAPITAL 2 -01111010011 Tenant-management 2 -01111010011 Freezing 2 -01111010011 Arcane 2 -01111010011 Savings-and-loan 2 -01111010011 Ultrasonic 2 -01111010011 Tendered 2 -01111010011 Thirty-second 2 -01111010011 Paired 2 -01111010011 Extraneous 2 -01111010011 Deinstitutionalization 2 -01111010011 Glossy 2 -01111010011 Declassified 2 -01111010011 Importer 2 -01111010011 Working-class 2 -01111010011 Risk-retention 2 -01111010011 Acquisitive 2 -01111010011 Commodities-trading 2 -01111010011 Well-informed 2 -01111010011 Intrauterine 2 -01111010011 Trade-ins 2 -01111010011 Not-for-profit 2 -01111010011 Itemized 2 -01111010011 Derivative 2 -01111010011 Pollution-control 2 -01111010011 Heavy-duty 2 -01111010011 Debt-for-equity 2 -01111010011 Boarded-up 2 -01111010011 Retrenchment 2 -01111010011 Gay-rights 2 -01111010011 Investment-banking 2 -01111010011 Late-stage 2 -01111010011 Customer-service 2 -01111010011 Straight-debt 2 -01111010011 Superfast 2 -01111010011 Nationalistic 2 -01111010011 Diploma 2 -01111010011 Insurance-industry 2 -01111010011 Deficit-cutting 2 -01111010011 Grandiose 2 -01111010011 Box-office 2 -01111010011 Best-selling 2 -01111010011 Glowing 2 -01111010011 Die-hard 2 -01111010011 Yen-based 2 -01111010011 Ground-based 2 -01111010011 Test-tube 2 -01111010011 Anti-friction 2 -01111010011 Midrange 2 -01111010011 Fixed-price 2 -01111010011 Anti-American 2 -01111010011 Product-liability 2 -01111010011 College-educated 2 -01111010011 Enlightened 2 -01111010011 Prepaid 2 -01111010011 non-Latin 2 -01111010011 Substantive 2 -01111010011 Employee-benefit 2 -01111010011 Multiprocessor 2 -01111010011 Cheeseburgers 2 -01111010011 Well-publicized 2 -01111010011 Bond-market 2 -01111010011 Preferred-dividend 2 -01111010011 Generic-drug 2 -01111010011 Health-maintenance 2 -01111010011 Fast-moving 2 -01111010011 Barnstorming 2 -01111010011 Medi-gap 2 -01111010011 Pension-accounting 2 -01111010011 Gab 2 -01111010011 Employee-rights 2 -01111010011 Defined-benefit 2 -01111010011 Time-share 2 -01111010011 Gun-control 2 -01111010011 Air-quality 2 -01111010011 Bolder 2 -01111010011 Nonstop 2 -01111010011 Indigent 2 -01111010011 Class-action 2 -01111010011 Jurisdictional 2 -01111010011 Tremendous 2 -01111010011 Self-help 2 -01111010011 Multiline 2 -01111010011 Levitating 2 -01111010011 Back-to-back 2 -01111010011 DELAYING 2 -01111010011 Million-dollar 2 -01111010011 Medical-malpractice 2 -01111010011 Peacekeeping 2 -01111010011 Low-priced 2 -01111010011 Excise-tax 2 -01111010011 Option-income 2 -01111010011 FREQUENT 2 -01111010011 Anti-war 2 -01111010011 Anencephalic 2 -01111010011 Intermediate-term 2 -01111010011 Waste-management 2 -01111010011 Two-earner 2 -01111010011 Sectarian 2 -01111010011 Oil-service 2 -01111010011 Anti-Noriega 2 -01111010011 Frilly 2 -01111010011 Diskless 2 -01111010011 Rastafarian 2 -01111010011 Anti-Seabrook 2 -01111010011 Nighttime 2 -01111010011 Aramid 2 -01111010011 Consumer-spending 2 -01111010011 Utilization-review 2 -01111010011 Nerve 2 -01111010011 Eight-inch 2 -01111010011 Bond-related 2 -01111010011 Mine-sweeper 2 -01111010011 Vested 2 -01111010011 Mandatory-sentencing 2 -01111010011 Window-shade 2 -01111010011 Capital-spending 2 -01111010011 Longer-dated 2 -01111010011 Consumer-related 2 -01111010011 Nello 2 -01111010011 Out-of-pocket 2 -01111010011 Wire-service 2 -01111010011 Defense-related 2 -01111010011 Oil-exploration 2 -01111010011 Conflict-of-interest 3 -01111010011 Employee-owned 3 -01111010011 Non-union 3 -01111010011 Ducking 3 -01111010011 Posh 3 -01111010011 Negligence 3 -01111010011 Unmarried 3 -01111010011 Higher-priced 3 -01111010011 No-load 3 -01111010011 Offbeat 3 -01111010011 Machinery-maker 3 -01111010011 Discontinued 3 -01111010011 Free-trade 3 -01111010011 Sodium 3 -01111010011 Consumer-oriented 3 -01111010011 Hospital-supply 3 -01111010011 Export-related 3 -01111010011 MAIL-ORDER 3 -01111010011 Noncompetitive 3 -01111010011 Government-sponsored 3 -01111010011 Stresses 3 -01111010011 Industrialized 3 -01111010011 Assorted 3 -01111010011 Quota 3 -01111010011 Building-related 3 -01111010011 Human-rights 3 -01111010011 Animal-rights 3 -01111010011 Anti-pornography 3 -01111010011 Entitlement 3 -01111010011 Epidemiological 3 -01111010011 Single-parent 3 -01111010011 Machine-vision 3 -01111010011 Pro-gun 3 -01111010011 Penalty 3 -01111010011 Home-video 3 -01111010011 Small-town 3 -01111010011 Phenolic 3 -01111010011 Dollar-dependent 3 -01111010011 Non-lawyers 3 -01111010011 Downgraded 3 -01111010011 Bunk 3 -01111010011 Asset-backed 3 -01111010011 Nonrecurring 3 -01111010011 Newborn 3 -01111010011 Nuisance 3 -01111010011 Market-research 3 -01111010011 Twelve-month 3 -01111010011 Big-city 3 -01111010011 Ninety-eight 3 -01111010011 Index-linked 3 -01111010011 High-income 3 -01111010011 Cease-fire 3 -01111010011 Prime-rate 3 -01111010011 CAR-RENTAL 3 -01111010011 Slots 3 -01111010011 Slotting 3 -01111010011 Dollar-earning 3 -01111010011 Family-owned 3 -01111010011 Capital-gains 3 -01111010011 Corrective 3 -01111010011 Gallium-arsenide 3 -01111010011 Interest-sensitive 3 -01111010011 Bondholder 3 -01111010011 Populations 4 -01111010011 Anti-tax 4 -01111010011 Jobless 4 -01111010011 Anti-takeover 4 -01111010011 Midsized 4 -01111010011 Bulging 4 -01111010011 Drought-relief 4 -01111010011 Legalizing 4 -01111010011 Venture-capital 4 -01111010011 Non-telephone 4 -01111010011 Donor 4 -01111010011 Denim 4 -01111010011 Current-cost 4 -01111010011 Solvency 4 -01111010011 Debt-ridden 4 -01111010011 Oil-related 4 -01111010011 Abortion-rights 4 -01111010011 One-way 4 -01111010011 Equity-related 4 -01111010011 Inexpensive 4 -01111010011 Wholly 4 -01111010011 Proudest 4 -01111010011 Ruling-party 4 -01111010011 High-powered 4 -01111010011 Borrowed 4 -01111010011 Stock-loan 4 -01111010011 Unsuccessful 4 -01111010011 Cost-control 4 -01111010011 License 4 -01111010011 Particular 4 -01111010011 Warrant 4 -01111010011 Apparent 4 -01111010011 Waste-to-energy 5 -01111010011 Fast-food 5 -01111010011 Life-insurance 5 -01111010011 Child-care 5 -01111010011 Dividend-capture 5 -01111010011 Unnecessary 5 -01111010011 Small-capitalization 5 -01111010011 Soliciting 5 -01111010011 Ten-year 5 -01111010011 Starring 5 -01111010011 Mainland 5 -01111010011 Year-to-year 5 -01111010011 Covered 5 -01111010011 Homosexual 6 -01111010011 Co-op 6 -01111010011 Income-tax 6 -01111010011 Fundamentalist 6 -01111010011 Defensive 6 -01111010011 Adjustable 6 -01111010011 Installment 6 -01111010011 Foreign-currency 6 -01111010011 Nonelectrical 6 -01111010011 Low-income 6 -01111010011 Discounts 6 -01111010011 High-coupon 6 -01111010011 Grown 6 -01111010011 Mail-order 6 -01111010011 Non-manufacturing 6 -01111010011 Job-security 6 -01111010011 Public-opinion 6 -01111010011 Stock-exchange 6 -01111010011 Nondurable-goods 7 -01111010011 High-priced 7 -01111010011 Abandoned 7 -01111010011 Left-wing 7 -01111010011 Anti-nuclear 7 -01111010011 Poison-pill 7 -01111010011 Smaller-capitalization 7 -01111010011 Money-supply 8 -01111010011 Eligible 8 -01111010011 Unresolved 8 -01111010011 Take-or-pay 8 -01111010011 Educated 8 -01111010011 Neural 8 -01111010011 Equity-linked 8 -01111010011 Shorter-term 8 -01111010011 Day-care 8 -01111010011 Pregnant 8 -01111010011 a-Totals 8 -01111010011 Videocassette 8 -01111010011 Exceptions 8 -01111010011 Rumored 9 -01111010011 Price-earnings 9 -01111010011 Two-year 9 -01111010011 Frequent-flier 9 -01111010011 SMALL-BUSINESS 9 -01111010011 High-technology 9 -01111010011 Featured 9 -01111010011 Export-dependent 9 -01111010011 Arms-control 9 -01111010011 Open-end 9 -01111010011 Anti-smoking 9 -01111010011 Pro-choice 9 -01111010011 High-yield 10 -01111010011 Export-oriented 10 -01111010011 Special-interest 10 -01111010011 Anti-government 10 -01111010011 Entire 10 -01111010011 Inflationary 11 -01111010011 Debt-equity 11 -01111010011 Tax-law 11 -01111010011 Bureaucratic 12 -01111010011 Exit 12 -01111010011 Interested 12 -01111010011 Start-up 12 -01111010011 Durable-goods 13 -01111010011 Multifamily 13 -01111010011 Cyclical 13 -01111010011 Anti-abortion 13 -01111010011 State-run 14 -01111010011 Factoring 14 -01111010011 Unfilled 14 -01111010011 Identifying 14 -01111010011 Uninsured 16 -01111010011 Civil-rights 16 -01111010011 Money-market 17 -01111010011 Fixed-income 19 -01111010011 Anti-apartheid 20 -01111010011 Machine-tool 22 -01111010011 Dissident 24 -01111010011 Zero-coupon 25 -01111010011 Likely 26 -01111010011 Gaining 26 -01111010011 Affected 27 -01111010011 Competing 28 -01111010011 Hostile 29 -01111010011 Capacity 32 -01111010011 Small-business 40 -01111010011 Percentage 42 -01111010011 Highlights 45 -01111010011 Closed-end 45 -01111010011 Over-the-counter 75 -01111010011 Blue-chip 92 -01111010011 Seats 154 -01111010011 Advancing 166 -01111010011 Declining 173 -01111010011 Opposition 205 -01111010011 Accepted 215 -01111010011 Anyone 247 -01111010011 Similar 282 -01111010011 Those 3105 -01111010011 Both 4229 -01111010011 These 5794 -0111101010 Reintegration 1 -0111101010 Existence 1 -0111101010 Contagions 1 -0111101010 Full-fledged 1 -0111101010 Crates 1 -0111101010 Denizens 1 -0111101010 Cross-checking 1 -0111101010 Pollination 1 -0111101010 Binders 1 -0111101010 Back-testing 1 -0111101010 Philadelphia-goers 1 -0111101010 Gaggles 1 -0111101010 Satirical 1 -0111101010 becauase 1 -0111101010 Imposition 1 -0111101010 Ex-trustees 1 -0111101010 Infusions 1 -0111101010 Hospital-management 1 -0111101010 Overexpansion 1 -0111101010 Scenting 1 -0111101010 Nine-tenths 1 -0111101010 Platoons 1 -0111101010 Reminder 1 -0111101010 Picture-profiles 1 -0111101010 Mud-wrestling 1 -0111101010 Robbed 1 -0111101010 Trust-held 1 -0111101010 dairy-herd 1 -0111101010 One-tenth 1 -0111101010 Asset-value 1 -0111101010 Solicitation 1 -0111101010 Reimposition 1 -0111101010 Compilations 1 -0111101010 COMARCO 1 -0111101010 Tributaries 1 -0111101010 Ex-Yankee 1 -0111101010 Severity 1 -0111101010 Backgrounds 1 -0111101010 Ingestion 1 -0111101010 Confidants 1 -0111101010 Scion 1 -0111101010 Cessation 1 -0111101010 NORDBANKEN 1 -0111101010 Recitation 1 -0111101010 Pro-football 1 -0111101010 Seizures 1 -0111101010 Affirmations 1 -0111101010 soda-machine 1 -0111101010 Contamination 1 -0111101010 Theorists 1 -0111101010 UNDERPAYMENTS 1 -0111101010 Sweeps 1 -0111101010 Hives 1 -0111101010 Respectful 1 -0111101010 Oversupply 1 -0111101010 Wearying 1 -0111101010 Inhabitants 1 -0111101010 Postponement 1 -0111101010 Upturns 1 -0111101010 Glossaries 1 -0111101010 Maturation 1 -0111101010 RENT-A-HERD 1 -0111101010 Violation 1 -0111101010 crop-reduction 1 -0111101010 Soc. 1 -0111101010 Penetration 1 -0111101010 Unforgiving 1 -0111101010 Contemptuous 1 -0111101010 Ultrasophistication 1 -0111101010 Firebombing 1 -0111101010 Whiffs 1 -0111101010 Trendiest 1 -0111101010 Poorness 1 -0111101010 Howls 1 -0111101010 Hijackings 1 -0111101010 Reacquisition 1 -0111101010 disinhibition 1 -0111101010 Phase-out 1 -0111101010 Phalanxes 1 -0111101010 Fetishism 1 -0111101010 Field-goal 1 -0111101010 Stirrings 1 -0111101010 Scraps 1 -0111101010 Co-sponsors 1 -0111101010 Fistfuls 1 -0111101010 Two-fifths 1 -0111101010 Reinterpretation 1 -0111101010 Intead 1 -0111101010 Unmindful 1 -0111101010 Redoubled 1 -0111101010 Cognizant 1 -0111101010 Terminations 1 -0111101010 Leveling 1 -0111101010 Re-enactments 1 -0111101010 Determination 1 -0111101010 OVERBOOKED 1 -0111101010 Pursuers 1 -0111101010 Shareholder-tenants 1 -0111101010 Characteristic 1 -0111101010 Kingpins 1 -0111101010 Objectives 1 -0111101010 Envious 1 -0111101010 Denomination 1 -0111101010 Denunciations 1 -0111101010 Dispersion 1 -0111101010 Blockage 1 -0111101010 Habeas 1 -0111101010 Crossownership 1 -0111101010 Unheard 1 -0111101010 Weatherization 1 -0111101010 Gravest 1 -0111101010 Two-time 1 -0111101010 Planetary 1 -0111101010 Flurries 1 -0111101010 Chock-full 1 -0111101010 Cancellation 1 -0111101010 Transfusions 1 -0111101010 golf-and-residential 1 -0111101010 Qualification 1 -0111101010 Mailing-list 1 -0111101010 Misleading 1 -0111101010 Majorities 1 -0111101010 Critiques 1 -0111101010 Trays 1 -0111101010 Outflows 1 -0111101010 Regiments 1 -0111101010 Barrels 1 -0111101010 Twelve-packs 1 -0111101010 Hallmarks 1 -0111101010 Identities 1 -0111101010 rust-proof 1 -0111101010 Fully-diluted 1 -0111101010 Municipalization 1 -0111101010 Blasts 1 -0111101010 Inventions 1 -0111101010 Mentions 1 -0111101010 THOUSANDS 1 -0111101010 Creator/arranger 1 -0111101010 instigatory 1 -0111101010 Epidemics 1 -0111101010 Skeletons 1 -0111101010 Dismemberment 1 -0111101010 Overestimates 1 -0111101010 Master-class 1 -0111101010 Non-money 1 -0111101010 Seepages 1 -0111101010 Convoys 1 -0111101010 Weakest 1 -0111101010 Beads 1 -0111101010 Devolution 1 -0111101010 Accumulation 1 -0111101010 Updates 1 -0111101010 Packs 1 -0111101010 Non-rodent 1 -0111101010 Extrapolation 1 -0111101010 Anti-Patten 1 -0111101010 Multibillions 1 -0111101010 Pluralism 1 -0111101010 Faded 1 -0111101010 Reregulation 1 -0111101010 .offer 1 -0111101010 Presentiments 1 -0111101010 Truckloads 1 -0111101010 Ever-confident 1 -0111101010 Then-Secretary 1 -0111101010 Reorganizations 1 -0111101010 Depictions 2 -0111101010 SNOW 2 -0111101010 Deferral 2 -0111101010 Diffusion 2 -0111101010 Dismissal 2 -0111101010 Eighty-three 2 -0111101010 Secession 2 -0111101010 Gusts 2 -0111101010 Injections 2 -0111101010 Cost-effectiveness 2 -0111101010 Leery 2 -0111101010 Midlife 2 -0111101010 Continuation 2 -0111101010 Indicative 2 -0111101010 Three-fifths 2 -0111101010 Undergo 2 -0111101010 GALAXY 2 -0111101010 Calculation 2 -0111101010 Unaware 2 -0111101010 Booklets 2 -0111101010 Herds 2 -0111101010 PLENTY 2 -0111101010 Reforestation 2 -0111101010 Underuse 2 -0111101010 Illustrative 2 -0111101010 HongkongBank 2 -0111101010 Intimations 2 -0111101010 Receivers 2 -0111101010 Capitalization 2 -0111101010 Broadcasts 2 -0111101010 Floors 2 -0111101010 Gilbeys 2 -0111101010 Planeloads 2 -0111101010 Despairing 2 -0111101010 Flocks 2 -0111101010 Description 2 -0111101010 Alecia 2 -0111101010 Schedulers 2 -0111101010 Layers 2 -0111101010 Chunks 2 -0111101010 Summaries 2 -0111101010 Rabble-rousing 2 -0111101010 Fortunes 2 -0111101010 Consummation 2 -0111101010 Omission 2 -0111101010 Shorn 2 -0111101010 Bottler 2 -0111101010 Vials 2 -0111101010 Replicas 2 -0111101010 Decay 2 -0111101010 Traces 2 -0111101010 Conceptions 2 -0111101010 Condemnation 2 -0111101010 Extremes 2 -0111101010 .is 2 -0111101010 Mistreatment 2 -0111101010 Short-selling 2 -0111101010 Inflows 2 -0111101010 Throngs 2 -0111101010 Calculations 2 -0111101010 Opposites 2 -0111101010 Simplification 2 -0111101010 Interruption 2 -0111101010 Resurgence 2 -0111101010 SaskTel 2 -0111101010 Enactment 3 -0111101010 Apropos 3 -0111101010 Droves 3 -0111101010 Swarms 3 -0111101010 Costing 3 -0111101010 Isicad 3 -0111101010 Rationing 3 -0111101010 Consisting 3 -0111101010 Ignorance 3 -0111101010 SAG 3 -0111101010 Independently 3 -0111101010 Erosion 3 -0111101010 Symptomatic 3 -0111101010 Rewards 3 -0111101010 Guarantees 3 -0111101010 Bereft 3 -0111101010 Acquitted 3 -0111101010 DISCRIMINATION 3 -0111101010 Denials 3 -0111101010 Outlines 3 -0111101010 Rounds 3 -0111101010 Devotees 3 -0111101010 Subsidizing 3 -0111101010 Centrally 3 -0111101010 Resumption 3 -0111101010 Followers 3 -0111101010 Disposing 3 -0111101010 Sponsorship 3 -0111101010 Lubicon 3 -0111101010 Consistency 3 -0111101010 Liberalization 3 -0111101010 Relaxation 4 -0111101010 Connoisseurs 4 -0111101010 Pooling 4 -0111101010 Legalization 4 -0111101010 Scarcity 4 -0111101010 Actel 4 -0111101010 Strands 4 -0111101010 Disbursement 4 -0111101010 Rookie 4 -0111101010 Denial 4 -0111101010 Four-fifths 4 -0111101010 Invergordon 4 -0111101010 Abolishing 4 -0111101010 Piles 4 -0111101010 One-fourth 4 -0111101010 Specifics 4 -0111101010 One-half 4 -0111101010 Interpretations 5 -0111101010 Injection 5 -0111101010 Strangelove 5 -0111101010 Messages 5 -0111101010 Adherents 5 -0111101010 Utilization 5 -0111101010 Versions 5 -0111101010 Churning 5 -0111101010 B-As 5 -0111101010 Tons 5 -0111101010 Mistrust 5 -0111101010 Issuance 5 -0111101010 Upgrading 5 -0111101010 Devaluation 5 -0111101010 Municipality 5 -0111101010 Internationalization 5 -0111101010 Repatriation 5 -0111101010 Exhibits 5 -0111101010 Divestiture 6 -0111101010 Drafts 6 -0111101010 Portions 6 -0111101010 Courtesy 6 -0111101010 Decentralization 6 -0111101010 Mobs 6 -0111101010 Inclusion 6 -0111101010 Standardization 6 -0111101010 CADBURY 6 -0111101010 First-time 6 -0111101010 Aspects 7 -0111101010 One-fifth 7 -0111101010 Elements 7 -0111101010 Methane 7 -0111101010 Consideration 7 -0111101010 Elimination 8 -0111101010 Vinyl 8 -0111101010 One-quarter 8 -0111101010 Economies 8 -0111101010 Deprived 9 -0111101010 Beneficiaries 9 -0111101010 Convicted 9 -0111101010 Ethanol 9 -0111101010 Liquidation 10 -0111101010 Removal 11 -0111101010 Recipients 11 -0111101010 Installation 11 -0111101010 Sort 11 -0111101010 Waves 11 -0111101010 Rejection 12 -0111101010 Implementation 12 -0111101010 Three-fourths 13 -0111101010 Mindful 13 -0111101010 Wary 14 -0111101010 Ratification 14 -0111101010 Repayment 14 -0111101010 Billions 16 -0111101010 Decades 17 -0111101010 Confirmation 23 -0111101010 Copies 24 -0111101010 Tired 27 -0111101010 Three-quarters 28 -0111101010 Worst 30 -0111101010 One-third 32 -0111101010 Purchases 33 -0111101010 Tens 34 -0111101010 Plenty 36 -0111101010 Announcement 42 -0111101010 Disclosure 43 -0111101010 Defenders 46 -0111101010 Criticism 49 -0111101010 Lack 50 -0111101010 Backers 53 -0111101010 Millions 60 -0111101010 Two-thirds 61 -0111101010 Lots 64 -0111101010 Delivery 76 -0111101010 Scores 77 -0111101010 Dozens 88 -0111101010 Evidence 96 -0111101010 Leaders 109 -0111101010 Completion 133 -0111101010 Regardless 146 -0111101010 Hundreds 184 -0111101010 Thousands 198 -0111101010 Load 304 -0111101010 Units 314 -0111101010 Holders 470 -0111101010 Assets 480 -0111101010 Part 570 -0111101010 Members 592 -0111101010 None 700 -0111101010 Much 1014 -0111101010 Each 1600 -0111101010 One 11056 -0111101010 Another 3435 -01111010110 Mid-November 1 -01111010110 Drill-bit 1 -01111010110 ASLEEP 1 -01111010110 TWENTY-FOUR 1 -01111010110 speak-up 1 -01111010110 Design-conscious 1 -01111010110 seventh-10th 1 -01111010110 third-sixth 1 -01111010110 17th-11th 1 -01111010110 10th-13th 1 -01111010110 13th-14th 1 -01111010110 Doctoral-level 1 -01111010110 Coffee-consuming 1 -01111010110 Pardoning 1 -01111010110 TRICKLE 1 -01111010110 Fifty-three 1 -01111010110 Pooling-of-interests 1 -01111010110 Seventy-eight 1 -01111010110 Forty-hour 1 -01111010110 fossil-free 1 -01111010110 Non-auto 1 -01111010110 Conjoining 1 -01111010110 Consciously 1 -01111010110 Small-population 1 -01111010110 Comfortable 1 -01111010110 Stressful 1 -01111010110 Bile-acid 1 -01111010110 Electrophotographic 1 -01111010110 Ameliorating 1 -01111010110 Strong-currency 1 -01111010110 Extra-feature 1 -01111010110 Eighty-two 1 -01111010110 Artificial-intelligence 1 -01111010110 Flawed 1 -01111010110 Monstrous 1 -01111010110 Softening 1 -01111010110 Pipkins 1 -01111010110 Aid-donor 1 -01111010110 Energy-depressed 1 -01111010110 bitching 1 -01111010110 Mitigating 1 -01111010110 Undirected 1 -01111010110 Divisive 1 -01111010110 Willingly 1 -01111010110 Vilification 1 -01111010110 EIGHT 1 -01111010110 ELSEWHERE 1 -01111010110 Erasable 1 -01111010110 Harbinger 1 -01111010110 Textbook-sized 1 -01111010110 Energy-producing 1 -01111010110 More-developed 1 -01111010110 good-value 1 -01111010110 2,122,503 1 -01111010110 Punish 1 -01111010110 Pointless 1 -01111010110 Word-processing 1 -01111010110 Ther 1 -01111010110 Ninetythree 1 -01111010110 -Most 1 -01111010110 2,061,546 1 -01111010110 Capitalincludes 1 -01111010110 Two-and-a-half 1 -01111010110 Super-powerful 1 -01111010110 EIGHTEEN 1 -01111010110 Circulated 1 -01111010110 Gas-reactor 1 -01111010110 13/16th 1 -01111010110 Participant 1 -01111010110 Computer-aided 1 -01111010110 Fiber-optic 1 -01111010110 Eighty-four 1 -01111010110 After-market 1 -01111010110 Lesser-developed 1 -01111010110 Less-developed 1 -01111010110 Sterling-denominated 1 -01111010110 Ailments 1 -01111010110 Lifeguard 1 -01111010110 Ninety-nine 1 -01111010110 Amomng 1 -01111010110 Ninety-seven 1 -01111010110 OPTICAL-DISK 1 -01111010110 .8 1 -01111010110 Unreported 1 -01111010110 Information-systems 1 -01111010110 Overprescribing 1 -01111010110 Uniting 1 -01111010110 nineteen 1 -01111010110 Middle-grade 1 -01111010110 Institutionalized 1 -01111010110 Smog-bound 1 -01111010110 Singly 1 -01111010110 Cost-effective 1 -01111010110 Big-bucks 1 -01111010110 High-yielding 2 -01111010110 Primitive 2 -01111010110 Operating-system 2 -01111010110 Eighty-seven 2 -01111010110 Three-and-a-half 2 -01111010110 Seventy-nine 2 -01111010110 Compromising 2 -01111010110 Junkyard 2 -01111010110 Culminating 2 -01111010110 Weak-currency 2 -01111010110 Fifty-six 2 -01111010110 Ninety-six 2 -01111010110 Stretched 2 -01111010110 Predominantly 2 -01111010110 Betel 2 -01111010110 Sixty-seven 2 -01111010110 Forty-nine 2 -01111010110 Prolonging 2 -01111010110 Sixty-six 2 -01111010110 Reclassifying 2 -01111010110 Fifty-eight 2 -01111010110 Sacrificing 2 -01111010110 Second-tier 2 -01111010110 Thrown 2 -01111010110 Frenchified 2 -01111010110 Explode 2 -01111010110 Long-haul 2 -01111010110 Defenses 2 -01111010110 Inadvertent 2 -01111010110 Eighty-one 2 -01111010110 Swirling 2 -01111010110 Admiring 2 -01111010110 Witching 2 -01111010110 Manipulating 2 -01111010110 Sixty-four 3 -01111010110 Medium-sized 3 -01111010110 Underdeveloped 3 -01111010110 Sixty-nine 3 -01111010110 Sixty-one 3 -01111010110 Debit 3 -01111010110 Trotting 3 -01111010110 Tonk 3 -01111010110 Arrival 3 -01111010110 Curing 3 -01111010110 Registering 3 -01111010110 Seventy-two 3 -01111010110 1430 3 -01111010110 Forty-seven 3 -01111010110 Thirty-nine 3 -01111010110 Sixty-two 3 -01111010110 Seventy-seven 3 -01111010110 Seventy-six 3 -01111010110 FISCAL 3 -01111010110 Punctuating 3 -01111010110 Eighty-eight 3 -01111010110 Faltering 3 -01111010110 Frail 3 -01111010110 Fifty-seven 3 -01111010110 TEN 4 -01111010110 Thirty-six 4 -01111010110 Fifty-nine 4 -01111010110 Fifty-two 4 -01111010110 Stylish 4 -01111010110 Thirty-eight 4 -01111010110 Unethical 4 -01111010110 Forty-three 4 -01111010110 Erratic 4 -01111010110 Export-sensitive 4 -01111010110 SIX 4 -01111010110 Forty-two 4 -01111010110 Tax-loss 4 -01111010110 Fifty-five 4 -01111010110 DAMAGES 4 -01111010110 Ninety-five 4 -01111010110 Neglected 4 -01111010110 Prohibiting 4 -01111010110 Sixty-three 4 -01111010110 Eighty-five 5 -01111010110 Grumpy 5 -01111010110 High-end 5 -01111010110 Twenty-three 5 -01111010110 Pragmatic 5 -01111010110 Confusing 5 -01111010110 Thirty-seven 5 -01111010110 Opposite 5 -01111010110 Forty-eight 5 -01111010110 Fifty-four 5 -01111010110 Well-known 6 -01111010110 Courting 6 -01111010110 Unsolicited 6 -01111010110 Large-capitalization 7 -01111010110 Exempting 7 -01111010110 Myriad 7 -01111010110 Forty-four 7 -01111010110 Sixty-five 7 -01111010110 Seventy-one 7 -01111010110 Forty-one 7 -01111010110 Fifty-one 8 -01111010110 Thirty-two 8 -01111010110 Persuading 8 -01111010110 Twenty-seven 8 -01111010110 Thirty-four 8 -01111010110 Seventy-five 8 -01111010110 Levels 8 -01111010110 Delaying 9 -01111010110 Suspected 9 -01111010110 Banning 9 -01111010110 Leftist 9 -01111010110 Scor 9 -01111010110 Forty-six 9 -01111010110 Summary 11 -01111010110 Consuming 11 -01111010110 Twenty-six 12 -01111010110 Countless 12 -01111010110 Thirty-one 12 -01111010110 Forty-five 12 -01111010110 Thirty-five 13 -01111010110 Debtor 13 -01111010110 Deeply 13 -01111010110 Issuing 13 -01111010110 Targeting 14 -01111010110 Twenty-eight 16 -01111010110 Twenty-four 19 -01111010110 Twenty-two 19 -01111010110 Seventy 20 -01111010110 Creditor 22 -01111010110 Eighty 24 -01111010110 Moderate 24 -01111010110 Twenty-five 29 -01111010110 Sixty 30 -01111010110 Eighteen 32 -01111010110 Ninety 33 -01111010110 Most-Remarkable 33 -01111010110 Export-led 35 -01111010110 Fourteen 50 -01111010110 Sixteen 51 -01111010110 Seventeen 52 -01111010110 Fifty 53 -01111010110 Thirteen 56 -01111010110 Forty 58 -01111010110 Thirty 66 -01111010110 Eleven 78 -01111010110 Fifteen 79 -01111010110 Twelve 89 -01111010110 Twenty 126 -01111010110 Lead 154 -01111010110 Leading 203 -01111010110 Eight 256 -01111010110 Nine 264 -01111010110 Ten 311 -01111010110 Six 448 -01111010110 Seven 791 -01111010110 Five 802 -01111010110 Four 991 -01111010110 Three 2016 -01111010110 Two 3012 -01111010110 Among 5056 -01111010111 lower-echelon 1 -01111010111 Enlisting 1 -01111010111 Residual 1 -01111010111 Hearing-aid 1 -01111010111 Service-station 1 -01111010111 Assignment-group 1 -01111010111 Congressional-panel 1 -01111010111 Vending-machine 1 -01111010111 Leveraged-buyout 1 -01111010111 Unhealthy 1 -01111010111 Employee-benefits 1 -01111010111 Electronic-warfare 1 -01111010111 Computer-synthesizer 1 -01111010111 Group-health 1 -01111010111 Once-skeptical 1 -01111010111 Fratricidal 1 -01111010111 Fiftyfour 1 -01111010111 Vengeful 1 -01111010111 Sugar-industry 1 -01111010111 Jerrybuilt 1 -01111010111 Short-listed 1 -01111010111 Space-station 1 -01111010111 DEFINED-CONTRIBUTION 1 -01111010111 Farsighted 1 -01111010111 Non-management 1 -01111010111 Pre-opening 1 -01111010111 Pre-Revolutionary 1 -01111010111 Dog-club 1 -01111010111 Irresponsible 1 -01111010111 Coddle 1 -01111010111 Task-force 1 -01111010111 Unisex 1 -01111010111 Fashion-conscious 1 -01111010111 Once-hostile 1 -01111010111 One-family 1 -01111010111 Coexecutive 1 -01111010111 Community-theater 1 -01111010111 Mixed-race 1 -01111010111 Vacation-home 1 -01111010111 Developing-country 1 -01111010111 Educational-policy 1 -01111010111 Starry-eyed 1 -01111010111 Energy-related 1 -01111010111 barters 1 -01111010111 Consumer-affairs 1 -01111010111 Second-circulation 1 -01111010111 Acid-rain 1 -01111010111 Wine-cooler 1 -01111010111 Electronics-industry 1 -01111010111 Bottom-line 1 -01111010111 Futures-exchange 1 -01111010111 Beer-industry 1 -01111010111 Milkysweet 1 -01111010111 pick-off 1 -01111010111 Coffee-trade 1 -01111010111 early-arriving 1 -01111010111 Do-gooder 1 -01111010111 Uncooperative 1 -01111010111 Complacent 1 -01111010111 Waiting-room 1 -01111010111 Video-marketing 1 -01111010111 Old-line 1 -01111010111 Plain-paper 1 -01111010111 Larcenous 1 -01111010111 Public-diplomacy 1 -01111010111 HUMAN-RESOURCE 1 -01111010111 Ebullient 1 -01111010111 Morning-after 1 -01111010111 College-bound 1 -01111010111 Accredited 1 -01111010111 Pro-Serbian 1 -01111010111 Producing-country 1 -01111010111 More-skeptical 1 -01111010111 Mid-tier 1 -01111010111 Scab 1 -01111010111 Asset-mix 1 -01111010111 Space-business 1 -01111010111 More-playful 1 -01111010111 SOFT-DRINK 1 -01111010111 Space-shuttle 1 -01111010111 Music-industry 1 -01111010111 Fish-loving 1 -01111010111 Advertising-industry 1 -01111010111 Liberal-establishment 1 -01111010111 Less-partisan 1 -01111010111 Thirsty 1 -01111010111 Gold-oriented 1 -01111010111 Heart-disease 1 -01111010111 Receivable-backed 1 -01111010111 Good-quality 1 -01111010111 Jobless-benefits 1 -01111010111 Doctrinaire 1 -01111010111 Auto-making 1 -01111010111 Dessert 1 -01111010111 Blue-and-white 1 -01111010111 Sweetmeat 1 -01111010111 Futures-market 1 -01111010111 Model-airplane 1 -01111010111 latenight 1 -01111010111 White-smocked 1 -01111010111 Merger-law 1 -01111010111 Rate-sensitive 1 -01111010111 Arms-trade 1 -01111010111 Profitmaking 1 -01111010111 Motivating 1 -01111010111 Child-rearing 1 -01111010111 Auto-accident 1 -01111010111 Street-corner 1 -01111010111 Hopeful 1 -01111010111 Sales-clerk 1 -01111010111 Well-to-do 1 -01111010111 Pedicab 1 -01111010111 State-legislature 1 -01111010111 Overextended 1 -01111010111 mealymouth 1 -01111010111 seed-sized 1 -01111010111 Unlicensed 1 -01111010111 Owner-operator 1 -01111010111 Price-busting 1 -01111010111 Veal 1 -01111010111 Infrequent 1 -01111010111 Securities-industry 1 -01111010111 Ivory-tower 1 -01111010111 Impairing 1 -01111010111 Nuclear-industry 1 -01111010111 Stress-management 1 -01111010111 STRESSED-OUT 1 -01111010111 Insurance-claims 1 -01111010111 Sheet-metal 1 -01111010111 Fine-fiber 1 -01111010111 Loan-backed 1 -01111010111 Browbeating 1 -01111010111 non-yenbased 1 -01111010111 Heart-transplant 1 -01111010111 Show-biz 1 -01111010111 Upper-tier 1 -01111010111 Foreign-hand 1 -01111010111 Original-intent 1 -01111010111 EYE-IN-THE-SKY 1 -01111010111 Land-grant 1 -01111010111 Superconducted 1 -01111010111 Conventional-wisdom 1 -01111010111 Hi-fi 1 -01111010111 Pension-plan 1 -01111010111 Fluctuating 1 -01111010111 Auction-house 1 -01111010111 Redeploying 1 -01111010111 State-chartered 1 -01111010111 Underfunded 1 -01111010111 One-company 1 -01111010111 More-efficient 1 -01111010111 Fair-trade 1 -01111010111 Higher-paid 1 -01111010111 Publishing-industry 1 -01111010111 Personal-stereo 1 -01111010111 Machetewielding 1 -01111010111 Evicted 1 -01111010111 Nondescript 1 -01111010111 Expansion-minded 1 -01111010111 Heart-attack 1 -01111010111 Hard-left 1 -01111010111 securities-oriented 1 -01111010111 Home-computer 1 -01111010111 Hedge-fund 1 -01111010111 Vile-looking 1 -01111010111 Well-lubricated 1 -01111010111 Broadcasting-industry 1 -01111010111 Foraging 1 -01111010111 Government-controlled 1 -01111010111 Non-life 1 -01111010111 Nonvoting 1 -01111010111 Finite 1 -01111010111 Deep-pocket 1 -01111010111 Feed-lot 1 -01111010111 University-Oriented 1 -01111010111 TOMATO 1 -01111010111 Stainless-steel 1 -01111010111 Coal-industry 1 -01111010111 Imaging-system 1 -01111010111 Globe-trotting 1 -01111010111 business-opportunity 1 -01111010111 Nitrate 1 -01111010111 Low-capital 1 -01111010111 Demoted 1 -01111010111 Television-set 1 -01111010111 Separatist 1 -01111010111 Rhythm-and-blues 1 -01111010111 Enervated 1 -01111010111 Creditor-government 1 -01111010111 Revenue-hungry 1 -01111010111 Real-life 1 -01111010111 Sleep-out 1 -01111010111 Clean-coal 1 -01111010111 Delivery-truck 1 -01111010111 Building-materials 1 -01111010111 Bootlegging 1 -01111010111 Non-French 1 -01111010111 Glass-industry 1 -01111010111 Technology-hungry 1 -01111010111 Spurting 1 -01111010111 Law-abiding 1 -01111010111 Non-KMA 1 -01111010111 Lower-ranking 1 -01111010111 Hard-bitten 1 -01111010111 Folklore 1 -01111010111 Overoptimistic 1 -01111010111 Down-to-earth 1 -01111010111 Status-conscious 1 -01111010111 Foreign-car 1 -01111010111 Public-policy 1 -01111010111 Moderate-priced 1 -01111010111 SINGLE-SPONSOR 1 -01111010111 Nongovernment 1 -01111010111 More-mature 1 -01111010111 garbage-can 1 -01111010111 Imaging-team 1 -01111010111 Idled 1 -01111010111 Holdover 1 -01111010111 Anti-Clore 1 -01111010111 Compensate 1 -01111010111 Non-trust 1 -01111010111 Seventy-three 1 -01111010111 Portfolio-insurance 1 -01111010111 33,926 1 -01111010111 LAME-DUCK 1 -01111010111 Able-bodied 1 -01111010111 Halfhearted 1 -01111010111 Seed-potato 1 -01111010111 Long-term-care 1 -01111010111 Look-alike 1 -01111010111 Illiterate 1 -01111010111 Once-poor 1 -01111010111 Long-shot 1 -01111010111 Hushing 1 -01111010111 Ethanol-blend 1 -01111010111 Meat-team 1 -01111010111 Trigger-happy 1 -01111010111 Low-paid 1 -01111010111 Branded 1 -01111010111 TAX-EXEMPT 1 -01111010111 Documenting 1 -01111010111 Family-law 1 -01111010111 Oil-market 1 -01111010111 Graymarket 1 -01111010111 Merger-and-acquisition 1 -01111010111 Short-line 1 -01111010111 Cable-industry 1 -01111010111 Entertainment-industry 1 -01111010111 Higher-income 1 -01111010111 Broadline 1 -01111010111 Plant-location 1 -01111010111 Cartoon-like 1 -01111010111 Respected 1 -01111010111 Securities-law 1 -01111010111 Inflation-weary 1 -01111010111 Muddy 1 -01111010111 Non-NMS 1 -01111010111 Drive-up 1 -01111010111 Gulping 1 -01111010111 EX-CONRAIL 1 -01111010111 Better-capitalized 1 -01111010111 Legal-liability 1 -01111010111 Truant 1 -01111010111 Extra-Dry 1 -01111010111 Electric-razor 1 -01111010111 Data-entry 1 -01111010111 Image-conscious 1 -01111010111 Superdelegate 1 -01111010111 Off-road 1 -01111010111 Once-bitten 1 -01111010111 Crap 1 -01111010111 Physician-owned 1 -01111010111 Folding-room 1 -01111010111 Public-relations-minded 1 -01111010111 Outbidding 1 -01111010111 Unlucky 1 -01111010111 Two-minute 1 -01111010111 Contingency-fee 1 -01111010111 Buy-America 1 -01111010111 Government-bought 1 -01111010111 Slimmed-down 1 -01111010111 New-generation 1 -01111010111 Nearby-delivery 1 -01111010111 Guitar-driven 1 -01111010111 Boiler-room 1 -01111010111 private-investigator 1 -01111010111 Pairs 1 -01111010111 Well-fed 1 -01111010111 Laidoff 1 -01111010111 May-settlement 1 -01111010111 Zealous 1 -01111010111 Pressuring 1 -01111010111 Top-ranking 1 -01111010111 Past-due 1 -01111010111 Big-firm 1 -01111010111 Early-morning 1 -01111010111 Yen-bond 1 -01111010111 PARTNERSHIP 1 -01111010111 Housing-industry 1 -01111010111 In-state 1 -01111010111 Evicting 1 -01111010111 Thrusting 1 -01111010111 Unsuspecting 1 -01111010111 Stationary 1 -01111010111 Space-agency 1 -01111010111 Sorghum 1 -01111010111 Wristbound 1 -01111010111 Shopping-mall 1 -01111010111 Tobacco-litigation 1 -01111010111 Tobacco-industry 1 -01111010111 Asbestosis 1 -01111010111 Overweight 1 -01111010111 Foam-packaging 1 -01111010111 Gate-keeper 1 -01111010111 HAVEN 1 -01111010111 Half-day 1 -01111010111 Aprildelivery 1 -01111010111 Pre-fabricated 1 -01111010111 Ever-competitive 1 -01111010111 Safety-conscious 1 -01111010111 Age-old 1 -01111010111 Subordinated-debt 1 -01111010111 Government-organized 1 -01111010111 Deter 1 -01111010111 Price-boosting 1 -01111010111 Teas 1 -01111010111 Mild-coffee 1 -01111010111 Pro-Israeli 1 -01111010111 Litigation-happy 1 -01111010111 Self-designated 1 -01111010111 Holding-company 1 -01111010111 Water-scooter 1 -01111010111 Well-placed 1 -01111010111 Steamed 1 -01111010111 Drought-stricken 1 -01111010111 Market-oriented 1 -01111010111 Retirement-plan 1 -01111010111 Aviation-industry 1 -01111010111 Non-technical 1 -01111010111 Tradition-minded 1 -01111010111 Freshmen 1 -01111010111 Financial-market 1 -01111010111 Unpaid 1 -01111010111 Electronic-component 1 -01111010111 Consumer-food 1 -01111010111 third-wave 1 -01111010111 Half-time 1 -01111010111 Light-skinned 1 -01111010111 Untrained 1 -01111010111 Hardline 1 -01111010111 Criminal-defense 1 -01111010111 Political-economic 1 -01111010111 Pakeha 1 -01111010111 Nonstriking 1 -01111010111 non-Sears 1 -01111010111 Mystified 1 -01111010111 Wilted 1 -01111010111 Base-metal 1 -01111010111 Second-string 1 -01111010111 Fur-industry 1 -01111010111 Intercity 1 -01111010111 Low-dose 1 -01111010111 Drought-obsessed 1 -01111010111 White-aproned 1 -01111010111 Inflation-indexed 1 -01111010111 Anti-gun 1 -01111010111 Jet-setting 1 -01111010111 Non-Estonian 1 -01111010111 Foreign-issued 1 -01111010111 Jangle 1 -01111010111 Credit-life 1 -01111010111 Disenfranchised 1 -01111010111 Tobacco-company 1 -01111010111 Off-beat 1 -01111010111 Proxy-fight 1 -01111010111 Healthy-looking 1 -01111010111 Cable-system 1 -01111010111 Befuddled 1 -01111010111 Bilking 1 -01111010111 Unreliable 1 -01111010111 Cash-short 1 -01111010111 Investment-oriented 1 -01111010111 once-sympathetic 1 -01111010111 pablum-puking 1 -01111010111 Panic-stricken 1 -01111010111 Non-elected 1 -01111010111 Omnipotent 1 -01111010111 Sun-hungry 1 -01111010111 Solvent 1 -01111010111 Voracious 1 -01111010111 Defrauded 1 -01111010111 Artful 1 -01111010111 Fortifying 1 -01111010111 Pro-Sandinista 1 -01111010111 Treasury-market 1 -01111010111 Tax-bill 1 -01111010111 Health-policy 2 -01111010111 Multicolored 2 -01111010111 Oil-state 2 -01111010111 Big-name 2 -01111010111 Drug-abuse 2 -01111010111 Better-educated 2 -01111010111 Greedy 2 -01111010111 Luring 2 -01111010111 Lower-rated 2 -01111010111 Civil-liberties 2 -01111010111 Vulture 2 -01111010111 Skittish 2 -01111010111 Wineries 2 -01111010111 Seedlings 2 -01111010111 Trend-following 2 -01111010111 Eighty-six 2 -01111010111 Boxed 2 -01111010111 Enlisted 2 -01111010111 Hand-held 2 -01111010111 Off-price 2 -01111010111 Closed-circuit 2 -01111010111 Cash-market 2 -01111010111 Interviewing 2 -01111010111 Surveyed 2 -01111010111 Data-processing 2 -01111010111 Foreign-born 2 -01111010111 Advisory-group 2 -01111010111 Big-league 2 -01111010111 Race-car 2 -01111010111 Well-run 2 -01111010111 Information-service 2 -01111010111 Gold-related 2 -01111010111 Nonfederal 2 -01111010111 Devout 2 -01111010111 Non-family 2 -01111010111 Defense-industry 2 -01111010111 Auto-industry 2 -01111010111 Panicky 2 -01111010111 Armchair 2 -01111010111 Nonlife 2 -01111010111 Food-exporting 2 -01111010111 Euphoric 2 -01111010111 Takeover-stock 2 -01111010111 Self-appointed 2 -01111010111 Bankruptcy-law 2 -01111010111 Seventy-four 2 -01111010111 Cost-conscious 2 -01111010111 CHIRAC 2 -01111010111 Financial-aid 2 -01111010111 Sensible 2 -01111010111 Lower-level 2 -01111010111 Plummeting 2 -01111010111 Criminal-law 2 -01111010111 Embittered 2 -01111010111 Discharged 2 -01111010111 Adoptive 2 -01111010111 Cynical 2 -01111010111 Knowledgeable 2 -01111010111 Auto-safety 2 -01111010111 Out-of-town 2 -01111010111 Fleeing 2 -01111010111 Nuclear-winter 2 -01111010111 Pro-Iranian 2 -01111010111 Show-business 2 -01111010111 Air-to-ground 2 -01111010111 Death-row 2 -01111010111 Consumer-electronics 2 -01111010111 Personal-injury 2 -01111010111 Pre-payment 2 -01111010111 Sleepless 2 -01111010111 Self-proclaimed 2 -01111010111 Nonbank 2 -01111010111 Public-choice 2 -01111010111 Fashionable 2 -01111010111 Hot-pot 2 -01111010111 Public-housing 2 -01111010111 Oil-industry 2 -01111010111 Hard-pressed 3 -01111010111 Timid 3 -01111010111 Drug-industry 3 -01111010111 Upper-income 3 -01111010111 Desalinization 3 -01111010111 Exiled 3 -01111010111 Eucalyptus 3 -01111010111 Conscientious 3 -01111010111 Excited 3 -01111010111 Clone 3 -01111010111 Car-rental 3 -01111010111 Rank-and-file 3 -01111010111 Munitions 3 -01111010111 Executive-compensation 3 -01111010111 Brokerage-firm 3 -01111010111 Plainclothes 3 -01111010111 Banking-industry 3 -01111010111 Commodity-fund 3 -01111010111 Unskilled 3 -01111010111 Compact-disk 3 -01111010111 Junk-fund 3 -01111010111 Offending 3 -01111010111 Centrist 3 -01111010111 Principal-only 3 -01111010111 Old-guard 3 -01111010111 Public-relations 3 -01111010111 Laid-off 4 -01111010111 Nonresident 4 -01111010111 Storm-sea 4 -01111010111 High-speed 4 -01111010111 Talented 4 -01111010111 Non-financial 4 -01111010111 Non-bank 4 -01111010111 Third-class 4 -01111010111 Reputable 4 -01111010111 Farm-state 4 -01111010111 Skeptical 4 -01111010111 Reform-minded 4 -01111010111 Foreign-owned 4 -01111010111 Financial-services 4 -01111010111 Nonfinancial 4 -01111010111 Leaded 4 -01111010111 Minority-owned 4 -01111010111 Jittery 4 -01111010111 Health-conscious 4 -01111010111 Demoralized 4 -01111010111 Baskets 5 -01111010111 Big-time 5 -01111010111 Prototypes 5 -01111010111 Subsidized 5 -01111010111 Courtroom 5 -01111010111 Surviving 5 -01111010111 Sympathetic 5 -01111010111 Irate 5 -01111010111 Pension-fund 5 -01111010111 Full-service 5 -01111010111 Out-of-state 5 -01111010111 Full-time 6 -01111010111 Tightening 6 -01111010111 Durum 6 -01111010111 Nonunion 6 -01111010111 Public-health 7 -01111010111 Unscrupulous 7 -01111010111 Small-stock 7 -01111010111 Thirty-three 8 -01111010111 Twenty-nine 8 -01111010111 Property-casualty 9 -01111010111 Insolvent 9 -01111010111 Twenty-one 9 -01111010111 Thoughtful 9 -01111010111 Government-income 10 -01111010111 Newer 10 -01111010111 High-definition 10 -01111010111 Private-sector 10 -01111010111 Wealthy 11 -01111010111 High-school 11 -01111010111 Influential 11 -01111010111 White-collar 12 -01111010111 Fixed-coupon 12 -01111010111 Middle-class 12 -01111010111 Informed 13 -01111010111 Disgruntled 13 -01111010111 Affluent 13 -01111010111 Experienced 14 -01111010111 Money-center 14 -01111010111 Bargain-hunting 14 -01111010111 Current-delivery 15 -01111010111 Right-wing 16 -01111010111 Limited-service 17 -01111010111 Prominent 18 -01111010111 Participating 18 -01111010111 Unleaded 20 -01111010111 Single-family 23 -01111010111 Nervous 23 -01111010111 Nineteen 28 -01111010111 Angry 30 -01111010111 Younger 67 -01111010111 Older 72 -01111010111 Seasoned 83 -01111010111 Certain 172 -01111010111 Top 376 -01111010111 Few 598 -01111010111 Several 2448 -01111010111 Most 5655 -01111010111 Many 6384 -01111010111 Some 13725 -011110110 Microwave-transmission 1 -011110110 BEGOT 1 -011110110 Enforce 1 -011110110 Female-headed 1 -011110110 Minuscule 1 -011110110 PICKED 1 -011110110 Assignment 1 -011110110 Pro-Washington 1 -011110110 Sardonically 1 -011110110 One-person 1 -011110110 fox-trot 1 -011110110 Reinvigorating 1 -011110110 Verbose 1 -011110110 Platinum-coiffed 1 -011110110 Eighty-nine 1 -011110110 anemic-looking 1 -011110110 Consequent 1 -011110110 Thorough 1 -011110110 Glendale-based 1 -011110110 Unnecessarily 1 -011110110 Abdulla 1 -011110110 Government-affiliated 1 -011110110 Out-of-print 1 -011110110 Sigmatron 1 -011110110 Stonecutters 1 -011110110 Renamed 1 -011110110 Dollar-sensitive 1 -011110110 Junk-food 1 -011110110 Gather 1 -011110110 Job-loyal 1 -011110110 His-and-her 1 -011110110 Jellied 1 -011110110 Nonclearing 1 -011110110 Dichromatic 1 -011110110 Fabri-Center 1 -011110110 Bulky 1 -011110110 Precariously 1 -011110110 Unseasonably 1 -011110110 long-fact 1 -011110110 Disgraced 1 -011110110 Sheepskins 1 -011110110 Idegaard 1 -011110110 minimum-equipment 1 -011110110 Rented 1 -011110110 Far-right 1 -011110110 Publishing-segment 1 -011110110 LOWERED 1 -011110110 Aping 1 -011110110 Prim 1 -011110110 Machine-gun 1 -011110110 Mused 1 -011110110 Peking-born 1 -011110110 TWO-EARNER 1 -011110110 Infected 1 -011110110 Crassly 1 -011110110 Beer-truck 1 -011110110 Cantilevers 1 -011110110 Prime-age 1 -011110110 RITE 1 -011110110 Multipart 1 -011110110 Arming 1 -011110110 Madcap 1 -011110110 CBS/ 1 -011110110 A-like 1 -011110110 Dreary 1 -011110110 Chemically 1 -011110110 Cycle-maker 1 -011110110 Classically 1 -011110110 Rickety 1 -011110110 Matted 1 -011110110 Once-mighty 1 -011110110 Finance-charge 1 -011110110 Country-and-western 1 -011110110 Sneers 1 -011110110 Battle-weary 1 -011110110 Oil-hungry 1 -011110110 Hand-dug 1 -011110110 Notoriously 1 -011110110 decluttering 1 -011110110 LEVITATED 1 -011110110 Tax-revision 1 -011110110 In-ground 1 -011110110 Caged 1 -011110110 Continually 1 -011110110 Road-building 1 -011110110 Government-subsidized 1 -011110110 3,002,901 1 -011110110 Broad-scope 1 -011110110 Ministeelmaker 1 -011110110 Breathtaking 1 -011110110 Boiled 1 -011110110 Saturday-only 1 -011110110 spore 1 -011110110 Sufficiently 1 -011110110 Upstart 1 -011110110 uproots 1 -011110110 Northshore 1 -011110110 Resellers 1 -011110110 Unremittingly 1 -011110110 Untendered 1 -011110110 Radiopharmacies 1 -011110110 More-or-less 1 -011110110 Obsessive 1 -011110110 Authoritarian 1 -011110110 Interminable 1 -011110110 Coffee-drinking 1 -011110110 1988B 1 -011110110 Became 1 -011110110 BristolMyers 1 -011110110 Perceiving 1 -011110110 Fiscally 1 -011110110 Sorters 1 -011110110 Static 1 -011110110 Trawling 1 -011110110 Carding 1 -011110110 Reasoned 1 -011110110 Non-Hispanic 1 -011110110 Unwed 1 -011110110 Get-tough 1 -011110110 Oldtimer 1 -011110110 Hoo 1 -011110110 HISTORIC 1 -011110110 Consummate 1 -011110110 Ineffably 1 -011110110 Bronwyn 1 -011110110 Property-tax 1 -011110110 Youngest 1 -011110110 Cowboyheeled 1 -011110110 Seventh-place 1 -011110110 E-11 1 -011110110 Newspaper-division 1 -011110110 Lightbulbs 1 -011110110 Twelfth-century 1 -011110110 .If 1 -011110110 Once-proud 1 -011110110 Non-GM 1 -011110110 Pro-Bussi 1 -011110110 Proportionately 1 -011110110 Thoroughly 1 -011110110 Ballerina 1 -011110110 NEPOOL 1 -011110110 Free-speech 1 -011110110 Drought-driven 1 -011110110 Wordy 1 -011110110 MacGeorge 1 -011110110 Temperamentally 1 -011110110 Copywriters 1 -011110110 Penalize 1 -011110110 Henchmen 1 -011110110 Neighborly 1 -011110110 Sudeep 1 -011110110 Impossibly 1 -011110110 Delivery-only 1 -011110110 Ill-starred 1 -011110110 Major-appliance 1 -011110110 Discontented 1 -011110110 Renegade 1 -011110110 Market-trained 1 -011110110 Researching 2 -011110110 REHNQUIST 2 -011110110 Moderately 2 -011110110 Tradition-bound 2 -011110110 Domestic-demand 2 -011110110 A-related 2 -011110110 CORPORATES 2 -011110110 Co-author 2 -011110110 ARTHRITIS 2 -011110110 Fifty-year-old 2 -011110110 Tendering 2 -011110110 Highflying 2 -011110110 Gleeful 2 -011110110 Tackling 2 -011110110 Quirky 2 -011110110 Self-contained 2 -011110110 LEGISLATORS 2 -011110110 Plausible 2 -011110110 Televised 2 -011110110 Gold-mining 2 -011110110 Decidedly 2 -011110110 Boil 2 -011110110 Explosively 2 -011110110 Albeit 2 -011110110 Glass-fiber 2 -011110110 Second-ranked 2 -011110110 a-Ex-dividend. 3 -011110110 VMS-sponsored 3 -011110110 Steelmaker 3 -011110110 Archrival 4 -011110110 On-site 4 -011110110 Sohio/BP 4 -011110110 Lax 4 -011110110 Acquisition-minded 4 -011110110 ANNUAL 5 -011110110 Fractional 5 -011110110 Loss-plagued 6 -011110110 Unusually 7 -011110110 Fast-growing 10 -011110110 Unexpectedly 12 -011110110 Sharply 28 -011110110 Slightly 28 -011110110 Federally 29 -011110110 A 47753 -011110110 Relatively 44 -011110111 FORTY 1 -011110111 SHOWTIME/THE 1 -011110111 GLOWING 1 -011110111 GIOVANNI 1 -011110111 LANGLEY 1 -011110111 FISTFUL 1 -011110111 SWISSAIR 1 -011110111 DIAMOND-BATHURST 1 -011110111 TRIBUNE 1 -011110111 SPECTRAMED 1 -011110111 DESIGNATED 1 -011110111 MULTIFAMILY 1 -011110111 PAUPER 1 -011110111 TAX. 1 -011110111 PROFESSIONAL 1 -011110111 BOWEN 1 -011110111 FREMONT 1 -011110111 VANCOUVER 1 -011110111 WEAN 1 -011110111 STOCK-INDEX 1 -011110111 MARGIN 1 -011110111 SPECTROMETERS 1 -011110111 SWATH 1 -011110111 SEASICK-PROOF 1 -011110111 NUT 1 -011110111 FORMICA 1 -011110111 AMERITRUST 1 -011110111 COGNOS 1 -011110111 TIMBERLAND 1 -011110111 RESORTING 1 -011110111 UNDONE 1 -011110111 CREDIT-UNION 1 -011110111 BLACK-OWNED 1 -011110111 SCOTTY 1 -011110111 BAYLY 1 -011110111 SIKH 1 -011110111 COLLISION 1 -011110111 TELEFONIA 1 -011110111 COASTAMERICA 1 -011110111 AQUIFER 1 -011110111 MYCOGEN 1 -011110111 PENWEST 1 -011110111 CLAIRE 1 -011110111 BAGS 1 -011110111 NUVEEN 1 -011110111 MAYFAIR 1 -011110111 Barcode 1 -011110111 TECOGEN 1 -011110111 COMPOUNDING 1 -011110111 QUEBECOR 1 -011110111 CONTENTED-LOOKING 1 -011110111 VESTAR 1 -011110111 REGINA 1 -011110111 INTEGON 1 -011110111 HARSCO 1 -011110111 613,000-SHARE 1 -011110111 MUNSINGWEAR 1 -011110111 EQUION 1 -011110111 HATHAWAY 1 -011110111 BEARINGS 1 -011110111 Hemophilia 1 -011110111 NAKASONE 1 -011110111 REXHAM 1 -011110111 IMMUNITY 1 -011110111 HARD-LINERS 1 -011110111 Grumble 1 -011110111 Co-Mar 1 -011110111 STIRRING 1 -011110111 INDIANAPOLIS 1 -011110111 Multi-millionaire 1 -011110111 BIOTECH 1 -011110111 NORWAY 1 -011110111 Stormont-Bail 1 -011110111 VIRGO 1 -011110111 TAURUS 1 -011110111 ARIES 1 -011110111 aircraft-industry 1 -011110111 By-elections 1 -011110111 PISCES 1 -011110111 AQUARIUS 1 -011110111 CAPRICORN 1 -011110111 SAGITTARIUS 1 -011110111 SCORPIO 1 -011110111 LIBRA 1 -011110111 Forme 1 -011110111 GLOVE 1 -011110111 CHOPSTICKS 1 -011110111 9,457,036 1 -011110111 COOLING 1 -011110111 KINGS 1 -011110111 ILLUSORY 1 -011110111 HAMPER 1 -011110111 SUPPORTERS 1 -011110111 9/30 1 -011110111 YENS 1 -011110111 DROPPING 1 -011110111 TYPHOID 1 -011110111 SHAS 1 -011110111 Douche 1 -011110111 Hard-liquor 1 -011110111 WANING 1 -011110111 PREMIUM 1 -011110111 QUEEN 1 -011110111 FRAUDULENT 1 -011110111 PLAGUED 1 -011110111 ROADWAY 1 -011110111 RATIONALE 1 -011110111 CYACQ 1 -011110111 CARDIOVASCULAR 1 -011110111 DONNA 1 -011110111 XSCRIBE 1 -011110111 AZLAN 1 -011110111 BEST-SELLING 1 -011110111 APPEAR 1 -011110111 GLOBE 1 -011110111 PUSHES 1 -011110111 QUESTIONING 1 -011110111 ARCHIVE 1 -011110111 COMERICA 1 -011110111 EXPECTING 1 -011110111 ALZHEIMER 1 -011110111 CONSTRUCTED 1 -011110111 TRAFALGAR 1 -011110111 CONQUER 1 -011110111 LESSONS 1 -011110111 SOTHEBY 1 -011110111 LINEAR 1 -011110111 CONVOY 1 -011110111 SKANSKA 1 -011110111 LOCTITE 1 -011110111 JEPSON 1 -011110111 DECLINING 1 -011110111 PUTNAM 1 -011110111 BREAST 1 -011110111 KERR-MCGEE 1 -011110111 MINNEAPOLIS 1 -011110111 FISHY 1 -011110111 INTELLICALL 1 -011110111 IX. 1 -011110111 MAXIMUM 1 -011110111 LONETREE 1 -011110111 LINGERING 1 -011110111 CURIOUS 1 -011110111 HALF-TIME 1 -011110111 CONDEMNS 1 -011110111 FIRES 1 -011110111 SLUGGISH 1 -011110111 COLORING 1 -011110111 Vilified 1 -011110111 Ballet/Aspen 1 -011110111 CERAMICS 1 -011110111 KELLOGG 1 -011110111 TRANSIT 1 -011110111 SWEEPING 1 -011110111 GROSSMAN 1 -011110111 PEGASUS 1 -011110111 LAFARGE-COPPEE 1 -011110111 INTERLAKE 1 -011110111 Modules 1 -011110111 BEATING 1 -011110111 FAT 1 -011110111 CIE.FINANCIERE 1 -011110111 ALBERTSON 1 -011110111 DATACARD 1 -011110111 EDIZIONE 1 -011110111 CONCERNED 1 -011110111 DIRTY 1 -011110111 RESTRICTING 1 -011110111 BLACKOUT 1 -011110111 MOACQ 1 -011110111 BARRELING 1 -011110111 STUNNING 1 -011110111 JOULE 1 -011110111 LOBLAW 1 -011110111 SIERRACIN 1 -011110111 BUTT 1 -011110111 BANCTEC 1 -011110111 GILT 1 -011110111 YA 1 -011110111 PREPAID-TUITION 1 -011110111 Hopelessly 1 -011110111 BALDRIGE 1 -011110111 SCHLITZ 1 -011110111 MENTION 1 -011110111 ISHIKAWAJIMA-HARIMA 1 -011110111 SASEBO 1 -011110111 ABITIBI-PRICE 1 -011110111 PARENTING 1 -011110111 INCENTIVE-OPTION 1 -011110111 NANNY 1 -011110111 VESTRON 1 -011110111 CELGENE 1 -011110111 PERENNIAL 1 -011110111 FERRO 1 -011110111 Contracted 1 -011110111 ACHIEVE 1 -011110111 FLOAT 1 -011110111 EAGER 1 -011110111 Monitrend 1 -011110111 LandesKreditbank 1 -011110111 BALLOT 1 -011110111 DAISY-CHAIN 1 -011110111 TIMEX 1 -011110111 TRADER 1 -011110111 EXPECTATIONS 1 -011110111 MESSAGES 1 -011110111 Transmigration 1 -011110111 REPORTERS 1 -011110111 SABOTAGE 1 -011110111 Vicam 1 -011110111 PLANTINGS 1 -011110111 SAGGING 1 -011110111 BIZARRE 1 -011110111 FEATURES. 1 -011110111 MISREADING 1 -011110111 MISJUDGING 1 -011110111 TRUSTING 1 -011110111 unrelentless 1 -011110111 Kennestone 1 -011110111 AIMING 1 -011110111 SIKES 1 -011110111 THIRTY 1 -011110111 IMPROVED 1 -011110111 DEARTH 1 -011110111 KLUGE 1 -011110111 SETTLING 1 -011110111 High-risk 1 -011110111 LADY 1 -011110111 FIRST-REFUSAL 1 -011110111 VIEWS 1 -011110111 SMS 1 -011110111 BUREAUCRATS 1 -011110111 BIG. 1 -011110111 431.69-POINT 1 -011110111 THAT. 1 -011110111 PUTTING 1 -011110111 OFFENDERS 1 -011110111 MASSMUTUAL 1 -011110111 STANDSTILL 1 -011110111 Disingenuous 1 -011110111 EXOTIC 1 -011110111 ACROSS 1 -011110111 ENDOWED 1 -011110111 LEBANON 1 -011110111 DAN 1 -011110111 PREENING 1 -011110111 11. 1 -011110111 PERILS 1 -011110111 DANGEROUS 1 -011110111 TAXING 1 -011110111 Eurco 1 -011110111 HEEKIN 1 -011110111 GEN-PROBE 1 -011110111 Wallpaper 1 -011110111 ADDITIONAL 1 -011110111 Angling 1 -011110111 ESTONIA 1 -011110111 PHASE 1 -011110111 Gurenenthal 1 -011110111 MOLSON 1 -011110111 High-flying 1 -011110111 TEXAS-NEW 1 -011110111 DIALING 1 -011110111 KASLER 1 -011110111 PENDING 1 -011110111 CORONARY 1 -011110111 DOMINICAN 1 -011110111 Estamos 1 -011110111 RAVE 1 -011110111 CHESEBROUGH-POND 1 -011110111 FREER 1 -011110111 CODE-ALARM 1 -011110111 MONTGOMERY 1 -011110111 AIRPLANE 1 -011110111 DUARTE 1 -011110111 DEPRECIABLE 1 -011110111 CODA 1 -011110111 BREAKUP 1 -011110111 LAND-USE 1 -011110111 DIFFERING 1 -011110111 SIX-PLUS 1 -011110111 TRELLEBORG 1 -011110111 PEPPERIDGE 1 -011110111 INVITRON 1 -011110111 COPPERWELD 1 -011110111 SUPERVOTING 1 -011110111 ELDORADO 1 -011110111 PENNY-STOCK 1 -011110111 CONAGRA 1 -011110111 Windstorms 1 -011110111 INTERCO 1 -011110111 AFFIRMATIVE 1 -011110111 LAY 1 -011110111 RAYCHEM 1 -011110111 COVERING 1 -011110111 Unbalancing 1 -011110111 RELAXED 1 -011110111 LAID 1 -011110111 WISE 1 -011110111 ERRONEOUS 1 -011110111 insurance-law 1 -011110111 NO-TAX 1 -011110111 THANKSGIVING 1 -011110111 LYNCHBURG 1 -011110111 INTEGRA-A 1 -011110111 Sabminco 1 -011110111 EARNINGS-YIELD 1 -011110111 SOUPED-UP 1 -011110111 EXPECTED-RETURN 1 -011110111 AGUIRRE 1 -011110111 Post-riot 1 -011110111 Wily 1 -011110111 DIMINISHED 1 -011110111 DASHED 1 -011110111 STRETCH 1 -011110111 LEAF 1 -011110111 NATURE 1 -011110111 SITTING 1 -011110111 EARLIER 1 -011110111 RAYTHEON 1 -011110111 Wisnom 1 -011110111 DOOR-TO-DOOR 1 -011110111 NERCO 1 -011110111 STANDARD-PACIFIC 1 -011110111 TAMBRANDS 1 -011110111 LEGISLATURE 1 -011110111 Divorcing 1 -011110111 FOXBORO 1 -011110111 ONCOR 1 -011110111 Decoupling 1 -011110111 MINSTAR 1 -011110111 SANMARK-STARDUST 1 -011110111 LEUCADIA 1 -011110111 SUPERFUND 1 -011110111 LUGAR 1 -011110111 READER 1 -011110111 ROPER 1 -011110111 Hooch. 1 -011110111 DUTTON 1 -011110111 ALTERNACARE 1 -011110111 LOFT 1 -011110111 ADJUSTMENTS 1 -011110111 BANPONCE 1 -011110111 VALSPAR 1 -011110111 TABLE. 1 -011110111 INTEREST. 1 -011110111 ADJUSTED 1 -011110111 SECURITY. 1 -011110111 KEOGH 1 -011110111 CALMAT 1 -011110111 MEREDITH 1 -011110111 MARKEL 1 -011110111 BANCROFT 1 -011110111 Attwoods 1 -011110111 SYNERGEN 1 -011110111 BLOC 1 -011110111 BENIHANA 1 -011110111 FARM-CREDIT 1 -011110111 FACSIMILE 1 -011110111 JAMESWAY 1 -011110111 DATACOPY 1 -011110111 WEDGESTONE 1 -011110111 SHARPER 1 -011110111 AMPLICON 1 -011110111 NONSMOKER 1 -011110111 TOPPING 1 -011110111 GOPHER 1 -011110111 CRIES 1 -011110111 TIPPERARY 1 -011110111 UNI-MARTS 1 -011110111 CERNER 1 -011110111 NOTES 1 -011110111 BIG-SPENDER 1 -011110111 GOOD-OLD-BOY 1 -011110111 IDIOT 1 -011110111 INSIDER-TRADING 1 -011110111 POLK 1 -011110111 SKY 1 -011110111 Fanmac 1 -011110111 12/11/86 1 -011110111 DATASCOPE 1 -011110111 EXITING 1 -011110111 GUIDES 1 -011110111 USER 1 -011110111 BURNING 1 -011110111 ASTOUNDING 1 -011110111 HAIRY 1 -011110111 BLOOMS 1 -011110111 RECALL 1 -011110111 sentado 1 -011110111 Sentado 1 -011110111 OIL-IMPORT 1 -011110111 LUFFA 1 -011110111 DIGILOG 1 -011110111 CIRCON 1 -011110111 SAN/BAR 1 -011110111 MARRIOTT 1 -011110111 FORGED 1 -011110111 VOICING 1 -011110111 BROTHERLIER 1 -011110111 TORCHMARK 1 -011110111 RELIGIOUS 1 -011110111 JULIUS 1 -011110111 TIMETABLE 1 -011110111 SPECTRA-PHYSICS 1 -011110111 EXCIMER 1 -011110111 AGRIBIOTECH 1 -011110111 SIZELER 1 -011110111 BELVEDERE 1 -011110111 ADTEC 1 -011110111 JOSLYN 1 -011110111 NYCOR 1 -011110111 Verifying 1 -011110111 INFORMAL 1 -011110111 SACRAMENTO 1 -011110111 MAYTAG 1 -011110111 BACARDI 1 -011110111 KNOTTY 1 -011110111 FRAYING 1 -011110111 CALFED 1 -011110111 PIZZA 1 -011110111 NEUTROGENA 1 -011110111 CENTRE 1 -011110111 NIXON 1 -011110111 TYPICAL 1 -011110111 REACH 1 -011110111 WOODSTREAM 1 -011110111 ACCORDS 1 -011110111 SHAKLEE 1 -011110111 KOMAG 1 -011110111 NASTY 1 -011110111 PRINTEMPS 1 -011110111 CATERERS 1 -011110111 INTERFACE 1 -011110111 AMERIBANC 1 -011110111 METROPOLIS 1 -011110111 DO-IT-YOURSELF 1 -011110111 VANITY 1 -011110111 WHITTAKER 1 -011110111 PALACE 1 -011110111 BANDAG 1 -011110111 ENDOTRONICS 1 -011110111 CHESAPEAKE 1 -011110111 LIVINGWELL 1 -011110111 REID-ASHMAN 1 -011110111 Inkhay 1 -011110111 KENNER 1 -011110111 RUSSIAN 1 -011110111 PENANCE 1 -011110111 CHITTENDEN 1 -011110111 KONISHIROKU 1 -011110111 COMMODITY 1 -011110111 DISAGREEMENTS 1 -011110111 LIKES 1 -011110111 STRYKER 1 -011110111 KLAUS 1 -011110111 CERTIFIED 1 -011110111 ROYEX 1 -011110111 AVNET 1 -011110111 KIMBERLY-CLARK 1 -011110111 CHILI 1 -011110111 ELECTRO-BIOLOGY 1 -011110111 JUMPING 1 -011110111 ARTISTIC 1 -011110111 NO-SMOKING 1 -011110111 HESSTON 1 -011110111 TASTE 1 -011110111 PERFECT 1 -011110111 LORAL 1 -011110111 ROWAN 1 -011110111 TELECREDIT 1 -011110111 WELDWOOD 1 -011110111 SCALIA 1 -011110111 MORTON 1 -011110111 TWENTIETH 1 -011110111 UNIVISION 1 -011110111 MATURE 1 -011110111 LEGGY 1 -011110111 AMSOUTH 1 -011110111 CANONIE 1 -011110111 REFERENCE 1 -011110111 PAYS. 1 -011110111 DEMOGRAPHERS 1 -011110111 HELEN 1 -011110111 AVEMCO 1 -011110111 CADNETIX 1 -011110111 EMCO 1 -011110111 POLYGRAPH 1 -011110111 GROLIER 1 -011110111 MITRAL 1 -011110111 COMPETITORS 1 -011110111 POWERFUL 1 -011110111 EASING 1 -011110111 BILLBOARD 1 -011110111 DYNASCAN 1 -011110111 LINGER 1 -011110111 PURITAN-BENNETT 1 -011110111 NVHOMES 1 -011110111 PROVIDE 1 -011110111 Crowsfeet 1 -011110111 BUGGED 1 -011110111 KUHLMAN 1 -011110111 WARNER-LAMBERT 1 -011110111 SCENES 1 -011110111 Wanes 1 -011110111 NORFOLK 1 -011110111 THETFORD 1 -011110111 WRATHER 1 -011110111 NELLCOR 1 -011110111 QUOTES 1 -011110111 ANON. 1 -011110111 Credential 1 -011110111 TRULY 1 -011110111 DAHLBERG 1 -011110111 COMPUTERVISION 1 -011110111 IRE 1 -011110111 LYDALL 1 -011110111 MICROCOM 1 -011110111 MOREHOUSE 1 -011110111 TELLS 1 -011110111 HALLIBURTON 1 -011110111 REPLACING 1 -011110111 GADHAFI 1 -011110111 NORDSON 1 -011110111 Stotts 1 -011110111 SHOOT 1 -011110111 FAILING 1 -011110111 GWINNETT 1 -011110111 NOAH 1 -011110111 EQK 1 -011110111 CLINI-THERM 1 -011110111 NONE 1 -011110111 OSCAR 1 -011110111 WIDELY 1 -011110111 GLAMIS 1 -011110111 PENSION-LAW 1 -011110111 TRIMAC 1 -011110111 XEBEC 1 -011110111 ULTRAHIGH-PRESSURE 1 -011110111 ULTRASYSTEMS 1 -011110111 Purchasing-power 1 -011110111 Defiantly 1 -011110111 CONRAC 1 -011110111 WHICHEVER 1 -011110111 NICARAGUAN 1 -011110111 RAYROCK 1 -011110111 Providentially 1 -011110111 CONSCIOUS 1 -011110111 FORGERY 1 -011110111 HUNGARIAN 1 -011110111 ACADEMY 1 -011110111 PRE-MARITAL 1 -011110111 WHALE 1 -011110111 WHITHER 1 -011110111 CENERGY 1 -011110111 WEITEK 1 -011110111 ENSERCH 1 -011110111 SQUEEZED 1 -011110111 X-FLIX 1 -011110111 DISCOUNTS 1 -011110111 Huu 1 -011110111 ECHO 1 -011110111 Soviet-Indian 1 -011110111 SALESMAN 1 -011110111 SATURDAY 1 -011110111 GOTTSCHALKS 1 -011110111 INFORMIX 1 -011110111 COMPOUND 1 -011110111 CHESS 1 -011110111 DYLEX 1 -011110111 UNIBANCORP 1 -011110111 HUNDRED 1 -011110111 ANTI-TAKEOVER 1 -011110111 BERKEY 1 -011110111 VARITY 1 -011110111 BADGER 1 -011110111 LOGICON 1 -011110111 EMERY 1 -011110111 MARKET-SHARE 1 -011110111 TASTE-TEST 1 -011110111 KARAMI 1 -011110111 E-SYSTEMS 1 -011110111 HOH 1 -011110111 ANECDOTES 1 -011110111 ERIEZ 1 -011110111 SHIRT 1 -011110111 MALONE 1 -011110111 ALPHAREL 1 -011110111 HARLEY-DAVIDSON 1 -011110111 COVENANT 1 -011110111 AUTODESK 1 -011110111 TELXON 1 -011110111 WELLMAN 1 -011110111 REXWORKS 1 -011110111 COUNTRIES 1 -011110111 NEAR-MILITARY 1 -011110111 QUELL 1 -011110111 LOBBY 1 -011110111 GENOVESE 1 -011110111 GAINLESS 1 -011110111 ANTI-ABORTION 1 -011110111 SMOOTH 1 -011110111 AIDING 1 -011110111 PATROLLING 1 -011110111 MARUBENI 1 -011110111 PRE-NATAL 1 -011110111 Oksana 1 -011110111 ESSEF 1 -011110111 QUIXOTE 1 -011110111 SOMETIME 1 -011110111 ULTIMATE 1 -011110111 INTERSPEC 1 -011110111 MOTORBOAT-FUEL 1 -011110111 Rearranging 1 -011110111 GREATER 1 -011110111 LENNAR 1 -011110111 FRIENDS 1 -011110111 RX 1 -011110111 MARIO 1 -011110111 AUSTAD 1 -011110111 HEAR 1 -011110111 OWENS-ILLINOIS 1 -011110111 CROSSING 1 -011110111 SKIP 1 -011110111 MINEBEA 1 -011110111 COOPERATION 1 -011110111 JUSTICES 1 -011110111 WIMPSKI 1 -011110111 EYEWITNESS 1 -011110111 HANGS 1 -011110111 Fingerprint 1 -011110111 POSSIS 1 -011110111 DEUTZ 1 -011110111 AUDI 1 -011110111 MAYFLOWER 1 -011110111 FEE 1 -011110111 Ryans 1 -011110111 DEBT-SWAP 1 -011110111 RON 1 -011110111 THUS 1 -011110111 mis 1 -011110111 PAY. 1 -011110111 CURTICE 1 -011110111 SHANGRI-LA 1 -011110111 MALADROIT 1 -011110111 ROILS 1 -011110111 DATATRAK 1 -011110111 Decoding 1 -011110111 UNCHRISTMAS 1 -011110111 SASKATCHEWAN 1 -011110111 KANEMATSU-GOSHO 1 -011110111 ADAMS 1 -011110111 ALLISON 1 -011110111 MICHEL 1 -011110111 BANCARIO 1 -011110111 MILLION-DOLLAR 1 -011110111 FOREIGN-EXCHANGE 1 -011110111 CHARTS 1 -011110111 LOEWS 1 -011110111 CRESTMONT 1 -011110111 NON-TRANSACTION 1 -011110111 ABSHIRE 1 -011110111 HYPONEX 1 -011110111 DISTURBED 1 -011110111 INVESTING 1 -011110111 TRUSTCORP 1 -011110111 COOK 1 -011110111 Bilateralism 1 -011110111 PERFECTLY 1 -011110111 Operate 1 -011110111 RELATED 1 -011110111 PET-FOOD 1 -011110111 ARMCHAIR 1 -011110111 DAYCO 1 -011110111 POLLARD 1 -011110111 BOARDROOM 1 -011110111 ENTHUSIASTS 1 -011110111 COASTAL 1 -011110111 BIOTHERAPEUTICS 1 -011110111 CLAIROL 1 -011110111 CENTERRE 1 -011110111 RESOLUTION 1 -011110111 FREYMILLER 1 -011110111 GEICO 1 -011110111 CASTING 1 -011110111 FULTON 1 -011110111 CAL 1 -011110111 MUSCLED 1 -011110111 HELMS 1 -011110111 CROSS 1 -011110111 KOGER 1 -011110111 SCUDDER 1 -011110111 PUTS 1 -011110111 KEITHLEY 1 -011110111 PASSING 1 -011110111 BEREAVED 1 -011110111 ONGPIN 1 -011110111 TRUTH 1 -011110111 BUSINESS-CLIMATE 1 -011110111 ABOVE 1 -011110111 BEAT 1 -011110111 BLOUNT 1 -011110111 Denant 1 -011110111 ENGLISH-MUFFIN 1 -011110111 TRACOR 1 -011110111 HEARx 1 -011110111 KOENIG 1 -011110111 ELEXIS 1 -011110111 KNIGHT-RIDDER 1 -011110111 GUNDLE 1 -011110111 LAUGHING 1 -011110111 WELFARE-STATE 1 -011110111 PROVIDES 1 -011110111 KEYNESIAN 1 -011110111 AUTOMOVILES 1 -011110111 NEGLIGENT 1 -011110111 UNIMED 1 -011110111 AFFLUENTS 1 -011110111 PAY-PHONE 1 -011110111 SYNTREX 1 -011110111 ROCKROSE 1 -011110111 Well-financed 1 -011110111 IMMUNO 1 -011110111 TELEFLEX 1 -011110111 ANGIO-MEDICAL 1 -011110111 WEIGH 1 -011110111 BENJ. 1 -011110111 EFFICIENCY 1 -011110111 COSTUME 1 -011110111 FORUM 1 -011110111 SWEDLOW 1 -011110111 CARROLS 1 -011110111 FOOTING 1 -011110111 ON-THE-JOB 1 -011110111 COCONUTS 1 -011110111 TEEING 1 -011110111 VOODOO 1 -011110111 POSSESSION 1 -011110111 162,528 1 -011110111 95,854 1 -011110111 +70 1 -011110111 STAR-STUDDED 1 -011110111 2,902 1 -011110111 OGURA 1 -011110111 965.00 1 -011110111 FEDERALLY 1 -011110111 CAMBODIAN 1 -011110111 Aluminum-Bat 1 -011110111 OVERDEVELOPED 1 -011110111 GOLFERS 1 -011110111 Internists 1 -011110111 FIRING 1 -011110111 CARLO 1 -011110111 YESTERDAY. 1 -011110111 PERUSAHAN 1 -011110111 TURNED 1 -011110111 GIPPER 1 -011110111 ANNUITY 1 -011110111 REDUCED 1 -011110111 ASSOCIATION-COLLEGE 1 -011110111 37,028 1 -011110111 31,261 1 -011110111 CLOSED-END 1 -011110111 71,957 1 -011110111 66,328 1 -011110111 CEREAL 1 -011110111 Earache 1 -011110111 1,301 1 -011110111 3,804 1 -011110111 2,553 1 -011110111 5,430 1 -011110111 8,308 1 -011110111 5,113 1 -011110111 5,405 1 -011110111 5,696 1 -011110111 BEMIS 1 -011110111 SCENARIO 1 -011110111 VALHI 1 -011110111 ASAMERA 1 -011110111 PORTLAND 1 -011110111 DAIMARU 1 -011110111 CLOSEST 1 -011110111 BEARS 1 -011110111 61,802 1 -011110111 54,651 1 -011110111 67,908 1 -011110111 Kloeckner-Humbold-Deutz 1 -011110111 112,274 1 -011110111 DIANE 1 -011110111 POST-TRIAL 1 -011110111 2,700.0 1 -011110111 ENROLLED 1 -011110111 +123.9 1 -011110111 1,206.0 1 -011110111 Profane 1 -011110111 VOEST 1 -011110111 MYSTERIES 1 -011110111 KEYSTONE 1 -011110111 CONDOM 1 -011110111 PYRRHIC 1 -011110111 BETTOR 1 -011110111 PATRON 1 -011110111 REPUBLICAN 1 -011110111 GATHERING 1 -011110111 HELMSLEY 1 -011110111 NOFZIGER 1 -011110111 KROC 1 -011110111 DIAPERS 1 -011110111 STORA 1 -011110111 ATTORNEYS 1 -011110111 NURSING 1 -011110111 GUIDE 1 -011110111 DESSAUER 1 -011110111 GRANVILLE 1 -011110111 OPTION 1 -011110111 TONY 1 -011110111 HENFREY 1 -011110111 HOLT 1 -011110111 22-7-Hum 1 -011110111 ERITREAN 1 -011110111 BALTIC 1 -011110111 MINOLTA 1 -011110111 LIBYA 1 -011110111 PERUVIAN 1 -011110111 ANTI-BIAS 1 -011110111 RAX 1 -011110111 RESPOND 1 -011110111 Proliferating 1 -011110111 PERIPATETIC 1 -011110111 COSTLY 1 -011110111 DIAMONDS 1 -011110111 CARTERA 1 -011110111 RYMER 1 -011110111 Drop-kicked 1 -011110111 REACHING 1 -011110111 905.0 1 -011110111 1510.0 1 -011110111 18020.0 1 -011110111 SIXTIES 1 -011110111 Docks 1 -011110111 5150.0 1 -011110111 4950.0 1 -011110111 25000.0 1 -011110111 Bowthorpe 1 -011110111 ARMOR 1 -011110111 CAPTORS 1 -011110111 Moonshining 1 -011110111 DOMESTIC-MADE 1 -011110111 WEIGHTY 1 -011110111 HOLLIS 1 -011110111 PREVENTIVE 1 -011110111 CANCEL 1 -011110111 78,044 1 -011110111 +87 1 -011110111 PROUVOST 1 -011110111 PARTICIPATIONS 1 -011110111 Commutation 1 -011110111 108,987 1 -011110111 +24 1 -011110111 .adjust 1 -011110111 POSITIVE 1 -011110111 HUCKSTER 1 -011110111 12,357 1 -011110111 27,582 1 -011110111 1,150,625 1 -011110111 7,198 1 -011110111 607,363 1 -011110111 55,496 1 -011110111 48,706 1 -011110111 33,978 1 -011110111 35,088 1 -011110111 67,577 1 -011110111 PALESTINIAN 1 -011110111 POSITION 1 -011110111 RELATIONSHIP 1 -011110111 Prestarted 1 -011110111 Start-Ups 1 -011110111 BURIAL 1 -011110111 Embrae 1 -011110111 STRUTHERS 1 -011110111 TRUSTCOMPANY 1 -011110111 Classifying 1 -011110111 Enwood 1 -011110111 249,750 1 -011110111 RESILIENT 1 -011110111 43,591 1 -011110111 GOLDBERG 1 -011110111 REAX 1 -011110111 TOILERS 1 -011110111 LORE 1 -011110111 SILVER 1 -011110111 SALES-TAX 1 -011110111 KAWAI 1 -011110111 MUSICAL 1 -011110111 CORRECTIONS 1 -011110111 FIELD 1 -011110111 COMISKEY 1 -011110111 118,418 1 -011110111 VIN 1 -011110111 59,194 1 -011110111 7,570 1 -011110111 7,302 1 -011110111 7,290 1 -011110111 220,195 1 -011110111 WAR-ON-POVERTY 1 -011110111 NURTURE 1 -011110111 Fanciful 1 -011110111 60,685 1 -011110111 95,987 1 -011110111 SCHOLARS 1 -011110111 PACKAGE 1 -011110111 +118 1 -011110111 WANDERING 1 -011110111 TASTY 1 -011110111 BEAM 1 -011110111 BOWL 1 -011110111 P&E 1 -011110111 Vaaomala 1 -011110111 VINTAGE-CAR 1 -011110111 Crackerjack 1 -011110111 PRICEY 1 -011110111 EARS 1 -011110111 HANG 1 -011110111 ARABS 1 -011110111 KURZWEIL 1 -011110111 CONVICTIONS 1 -011110111 LIBEL 1 -011110111 Synovus 1 -011110111 Sistemas 1 -011110111 TUTU 1 -011110111 SPARKLING 1 -011110111 DEAR 1 -011110111 GRIDIRON 1 -011110111 FRUITFUL 1 -011110111 WEIGHT 1 -011110111 OPUS 1 -011110111 BRUNO 1 -011110111 OVERWEIGHT 1 -011110111 GROUNDLESS 1 -011110111 INFLATED 1 -011110111 SKELETON 1 -011110111 HEALTHIEST 1 -011110111 HEMLINE 1 -011110111 Beeswax 1 -011110111 MASSAGE 1 -011110111 NOWHERE 1 -011110111 Summonses 1 -011110111 AFTERNOON 1 -011110111 VIEWER 1 -011110111 158,190 1 -011110111 91,585 1 -011110111 +73 1 -011110111 31,393 1 -011110111 67,355 1 -011110111 51,893 1 -011110111 20,914 1 -011110111 BLUE-COLLAR 1 -011110111 CUOMO 1 -011110111 SHADY 1 -011110111 AMBIVALENT 1 -011110111 SESSIONS 1 -011110111 24,256 1 -011110111 29,498 1 -011110111 GEORGES 1 -011110111 5,954 1 -011110111 BRASCAN 1 -011110111 38,068 1 -011110111 WEEKS 1 -011110111 1,021,540 1 -011110111 AUGUSTE 1 -011110111 Ordo 1 -011110111 LEAST 1 -011110111 Ex-U.S. 1 -011110111 UNACCREDITED 1 -011110111 ELECTS 1 -011110111 PRESSER 1 -011110111 GIVEBACK 1 -011110111 SNAGS 1 -011110111 DEMJANJUK 1 -011110111 LOWER-FAT 1 -011110111 TWO-MINUTE 1 -011110111 YESTERDAY 1 -011110111 MIDSIZE 1 -011110111 ROTCH 1 -011110111 SLEEPERS 1 -011110111 Narrow-based 1 -011110111 SOCIAL-WELFARE 1 -011110111 KOCH 1 -011110111 INCHCAPE 1 -011110111 MATRIMONIAL 1 -011110111 REQUESTS 1 -011110111 SITUATION 1 -011110111 THRONGS 1 -011110111 DAIEI 1 -011110111 HAROLD 1 -011110111 RUST 1 -011110111 PACIFYING 1 -011110111 LOGGING 1 -011110111 AIRCOA 1 -011110111 TEACHING 1 -011110111 RACHEL 1 -011110111 DARING 1 -011110111 METALLURGIQUE 1 -011110111 FIGHTER 1 -011110111 TRIDENT 1 -011110111 MEDIUM-RANGE 1 -011110111 AIR-TO-AIR 1 -011110111 LUNCH 1 -011110111 Shoring 1 -011110111 UNDERWATER 1 -011110111 SOMEWHERE 1 -011110111 BELGIUM 1 -011110111 THORSBERG 1 -011110111 PURPOSE 1 -011110111 ADVERSE 1 -011110111 AUTOCLAVE 1 -011110111 CAME 1 -011110111 NINETY-DAY 1 -011110111 54,239 1 -011110111 OUSTING 1 -011110111 DAZZLING 1 -011110111 61,571 1 -011110111 Court-awarded 1 -011110111 114,924 1 -011110111 +20 1 -011110111 4,513 1 -011110111 153,541 1 -011110111 86,961 1 -011110111 OFF-THE-WALL 1 -011110111 11.086 1 -011110111 1931.0 1 -011110111 1526.1 1 -011110111 5.240 1 -011110111 -131,700 1 -011110111 Dubied 1 -011110111 Bernina 1 -011110111 HARD-HAT 1 -011110111 MECHAM 1 -011110111 GARDEN 1 -011110111 COLOMBIAN 1 -011110111 COLLECT 1 -011110111 DEBORAH 1 -011110111 AEGON 1 -011110111 IMASCO 1 -011110111 Coercion 1 -011110111 INCREASING 1 -011110111 FOAM 1 -011110111 PARTING 1 -011110111 HIJACKED 1 -011110111 94,505 1 -011110111 INTERPROVINCIAL 1 -011110111 123,693 1 -011110111 73,833 1 -011110111 45,067 1 -011110111 46,811 1 -011110111 21,419 1 -011110111 49,756 1 -011110111 57,144 1 -011110111 -73.3 1 -011110111 3,806,694 1 -011110111 +12.9 1 -011110111 2,551,848 1 -011110111 2,584,467 1 -011110111 78,212 1 -011110111 66,536 1 -011110111 +17.5 1 -011110111 531,167 1 -011110111 498,144 1 -011110111 243,026 1 -011110111 TORRAS-HOSTENCH 1 -011110111 610,839 1 -011110111 73,564 1 -011110111 60,655 1 -011110111 +21.3 1 -011110111 JACOBS-SUCHARD 1 -011110111 Mistaken 1 -011110111 MAGISTRATES 1 -011110111 POLITICIAN 1 -011110111 881,188 1 -011110111 +10.4 1 -011110111 6,946,218 1 -011110111 4,126 1 -011110111 6,583 1 -011110111 9,368 1 -011110111 PRETORIA 1 -011110111 Sports-Drink 1 -011110111 RAIN 1 -011110111 PREFER 1 -011110111 Crave 1 -011110111 Iraqi-based 1 -011110111 CRITICAL 1 -011110111 ENSURING 1 -011110111 THORNBURGH 1 -011110111 NONRESIDENTIAL 1 -011110111 IMPASSE 1 -011110111 Seamens 1 -011110111 DISTRIBUTIONS 1 -011110111 Warring 1 -011110111 Unacceptably 1 -011110111 JEWELS 1 -011110111 REFUGEE 1 -011110111 FROZEN 1 -011110111 CORTES 1 -011110111 FITCH 1 -011110111 EXPANDING 1 -011110111 DIVIDING 1 -011110111 DOG 1 -011110111 SAVINGS-BOND 1 -011110111 PetroLogistics 1 -011110111 ACHING 1 -011110111 WESLEY 1 -011110111 ROMANS 1 -011110111 RUSSIA 1 -011110111 CLAIMING 1 -011110111 FALCONBRIDGE 1 -011110111 SOVIET-EC 1 -011110111 EAVESDROPPING 1 -011110111 SAKS 1 -011110111 MULTIRACIAL 1 -011110111 DADS 1 -011110111 LATCHKEY 1 -011110111 Amclyde 1 -011110111 CULLUM 1 -011110111 ACQUA 1 -011110111 PIA 1 -011110111 Tellefsen 1 -011110111 REVISED 1 -011110111 167,253 1 -011110111 1964-1967 1 -011110111 1973-1979 1 -011110111 MUBARAK 1 -011110111 BERTELSMANN 1 -011110111 SHERRITT 1 -011110111 BORE 1 -011110111 ENERGEN 1 -011110111 Tweeter 1 -011110111 LELAND 1 -011110111 TRADE-GAP 1 -011110111 UNCLAIMED 1 -011110111 SUNBURN 1 -011110111 ATTACKING 1 -011110111 KHOMEINI 1 -011110111 PANHANDLE 1 -011110111 REISTERSTOWN 1 -011110111 8,493 1 -011110111 47.0 1 -011110111 10,869 1 -011110111 29,168 1 -011110111 PRIVATIZATION 1 -011110111 HEINEKEN 1 -011110111 8,566 1 -011110111 7,986,633 1 -011110111 3,730,048 1 -011110111 INSOLVENT 1 -011110111 Rl 1 -011110111 LIFETIME 1 -011110111 PAGEANT 1 -011110111 THRIFT-BAILOUT 1 -011110111 RIOT 1 -011110111 SUSPECTED 1 -011110111 SPIES 1 -011110111 5,653 1 -011110111 6,393 1 -011110111 6,377,695 1 -011110111 37,548 1 -011110111 CHIPPING 1 -011110111 Tasuku 1 -011110111 711,012 1 -011110111 MERGING 1 -011110111 639,516 1 -011110111 629,908 1 -011110111 ANDERSEN 1 -011110111 616,181 1 -011110111 625,212 1 -011110111 825,696 1 -011110111 1,015,580 1 -011110111 763,501 1 -011110111 766,703 1 -011110111 Taikisha 1 -011110111 CORRUPTION 1 -011110111 BRITONS 1 -011110111 PERSUADING 1 -011110111 272,577 1 -011110111 1,696,982 1 -011110111 106,882 1 -011110111 +61 1 -011110111 NO-WIN 1 -011110111 33,415 1 -011110111 36,920 1 -011110111 WARSAW 1 -011110111 684,961 1 -011110111 34,665 1 -011110111 2,327.0 1 -011110111 1,045.0 1 -011110111 +122.7 1 -011110111 53,286 1 -011110111 76,100 1 -011110111 SETBACK 1 -011110111 DEFYING 1 -011110111 116,430 1 -011110111 136,343 1 -011110111 expansion. 1 -011110111 524,096 1 -011110111 431,608 1 -011110111 68,233 1 -011110111 50,508 1 -011110111 166,653 1 -011110111 1,148,204 1 -011110111 229,476 1 -011110111 270,966 1 -011110111 2,458,629 1 -011110111 2,507,224 1 -011110111 705,811 1 -011110111 776,725 1 -011110111 56,763 1 -011110111 573,899 1 -011110111 624,477 1 -011110111 5,233,774 1 -011110111 2,932,119 1 -011110111 b-5,196,232 1 -011110111 27,054 1 -011110111 31,617 1 -011110111 279,509 1 -011110111 61,010 1 -011110111 BURIED 1 -011110111 278,045 1 -011110111 GUESS 1 -011110111 EXCEPT 1 -011110111 LEFT-HANDED 1 -011110111 CRY 1 -011110111 CEASE-FIRE 1 -011110111 ABORTION 1 -011110111 Key-Royal 1 -011110111 Bun 1 -011110111 HUNGER 1 -011110111 KEOWEE 1 -011110111 TOTALTOP 1 -011110111 LESSER 1 -011110111 LINPRO 1 -011110111 BIAGGI 1 -011110111 1537.7 1 -011110111 COKE 1 -011110111 DAIMLER 1 -011110111 CHALLENGING 1 -011110111 ONE-ARMED 1 -011110111 CHARON 1 -011110111 DUELING 1 -011110111 7,610 1 -011110111 7,665 1 -011110111 PAYLOAD 1 -011110111 64,499 1 -011110111 +109 1 -011110111 GIMMEE 1 -011110111 Intangibles 1 -011110111 32,163 1 -011110111 3200.0 1 -011110111 210.0 1 -011110111 1280.0 1 -011110111 89.0 1 -011110111 32500.0 1 -011110111 ACRONYMIC 1 -011110111 VENDING 1 -011110111 BOTTOMING 1 -011110111 WARMING 1 -011110111 REVISIONS 1 -011110111 ADMAN 1 -011110111 JOKE 1 -011110111 BRAND 1 -011110111 STUDEBAKER 1 -011110111 MERGED 1 -011110111 Illegally 1 -011110111 BRUSHED 1 -011110111 EMISSIONS 1 -011110111 SHOWY 1 -011110111 PREDAWN 1 -011110111 COMCAST 1 -011110111 WOOING 1 -011110111 UNDIPLOMATIC 1 -011110111 CHRISTIES 1 -011110111 WINDS 1 -011110111 MEASURED 1 -011110111 MAHLON 1 -011110111 GRABS 1 -011110111 SWISSAIR-SAS 1 -011110111 REBUKE 1 -011110111 DELEGATE 1 -011110111 MAYORS 1 -011110111 FATAL 1 -011110111 PRIMARK 1 -011110111 GRANTS 1 -011110111 EARNED 1 -011110111 GROVE 1 -011110111 PHILANTHROPY 1 -011110111 STARCRAFT 1 -011110111 FUNDAMENTALIST 1 -011110111 VALID 1 -011110111 PEPSICO 1 -011110111 THORN-EMI 1 -011110111 Submicron-sized 1 -011110111 ARMENIAN 1 -011110111 VALEO 1 -011110111 INSPIRED 1 -011110111 QUASHING 1 -011110111 Twists 1 -011110111 NOTCH 1 -011110111 FERVENT 1 -011110111 SURVIVING 1 -011110111 IDLED 1 -011110111 MALAYSIAN 1 -011110111 MOROCCO 1 -011110111 CUTTY 1 -011110111 BREAKDOWN 1 -011110111 240.00 1 -011110111 CONCEPT 1 -011110111 185.00 1 -011110111 -11.1 1 -011110111 GLOOMY 1 -011110111 Heaping 1 -011110111 MOM 1 -011110111 DAUGHTERS 1 -011110111 MARIANNE 1 -011110111 EISENHOWER 1 -011110111 MINIMUM-TAX 1 -011110111 CYNICAL 1 -011110111 BROKERAGE 1 -011110111 BENGUET 1 -011110111 TRASH 1 -011110111 GASSED 1 -011110111 JEWS 1 -011110111 RUNNERS 1 -011110111 QWINZY 1 -011110111 CLEANUP 1 -011110111 SCORING 1 -011110111 TAIYO 1 -011110111 LACKING 1 -011110111 SHRINKING 1 -011110111 ENVY 1 -011110111 EXPANSION 1 -011110111 DYING 1 -011110111 ACTING 1 -011110111 HUBBLE 1 -011110111 BURGEONING 1 -011110111 FIREMAN 1 -011110111 TAMPA 1 -011110111 HEARING 1 -011110111 LIPPER 1 -011110111 JEREZ 1 -011110111 Tranch 1 -011110111 BIDDING 1 -011110111 900-ACRE 1 -011110111 HOME-TOWN 1 -011110111 Montupet 1 -011110111 FULL-FUNDING 1 -011110111 BEATS 1 -011110111 FIDDLE 1 -011110111 NOSTALGIC 1 -011110111 RENTING 1 -011110111 PAYROLL 1 -011110111 PRIVATE-RULING 1 -011110111 FLAT 2 -011110111 RELOCATION 2 -011110111 MALES 2 -011110111 CONFLICTING 2 -011110111 SOCK 2 -011110111 BUM 2 -011110111 CAPITAL-GAINS 2 -011110111 EPITOPE 2 -011110111 THRIVING 2 -011110111 ANITEC 2 -011110111 Adjunct 2 -011110111 HADSON 2 -011110111 MONICA 2 -011110111 LORIMAR-TELEPICTURES 2 -011110111 INITIAL 2 -011110111 LOBBYING 2 -011110111 TWO-TIER 2 -011110111 HANDYMAN 2 -011110111 AETNA 2 -011110111 GRADED 2 -011110111 KAMAN 2 -011110111 ARIAS 2 -011110111 RHODE 2 -011110111 ALARM 2 -011110111 WEBB 2 -011110111 PHARMACIA 2 -011110111 Installations 2 -011110111 QUIKSILVER 2 -011110111 PEKING 2 -011110111 BRAZILIAN 2 -011110111 TEXTRON 2 -011110111 MISCELLANEOUS 2 -011110111 VOTING 2 -011110111 FRUIT 2 -011110111 ELDERLY 2 -011110111 SENSITIVE 2 -011110111 HEARINGS 2 -011110111 INSIDER 2 -011110111 TERRORIST 2 -011110111 BOWATER 2 -011110111 KOHL 2 -011110111 BRING 2 -011110111 HEICO 2 -011110111 KOITO 2 -011110111 IVORY 2 -011110111 CENTEX 2 -011110111 BIRD 2 -011110111 CAESARS 2 -011110111 CAREMARK 2 -011110111 INDEPENDENCE 2 -011110111 SAFECO 2 -011110111 DUN 2 -011110111 REXON 2 -011110111 80.0 2 -011110111 CROWDED 2 -011110111 Third-ranked 2 -011110111 BILLION-DOLLAR 2 -011110111 PENNWALT 2 -011110111 ZIONS 2 -011110111 TRANSWORLD 2 -011110111 STUDYING 2 -011110111 Beefing 2 -011110111 FOUGHT 2 -011110111 COMPETENT 2 -011110111 SIGNATURE 2 -011110111 PINE 2 -011110111 HELPERS 2 -011110111 FACED 2 -011110111 DISCOVERY 2 -011110111 MAXTOR 2 -011110111 EXCELAN 2 -011110111 AMTRAK 2 -011110111 TRAIN 2 -011110111 ARTHUR 2 -011110111 FORCED 2 -011110111 LOCK 2 -011110111 EVANS 2 -011110111 Next-Most-Remarkable 2 -011110111 PERRIER 2 -011110111 MACNEAL-SCHWENDLER 2 -011110111 GUARDIAN 2 -011110111 LOUISIANA-PACIFIC 2 -011110111 BORIS 2 -011110111 NU-MED 2 -011110111 CALLING 2 -011110111 Authoritative 2 -011110111 YALE 2 -011110111 ENGELHARD 2 -011110111 ADULTS 2 -011110111 NIKE 2 -011110111 MINICOMPUTER 2 -011110111 APACHE 2 -011110111 BRISTOL-MYERS 2 -011110111 FRANKLIN 2 -011110111 TOGETHER 2 -011110111 TENNECO 2 -011110111 MOTORISTS 2 -011110111 WASTE-CLEANUP 2 -011110111 Rifle-toting 2 -011110111 MISSION 2 -011110111 METER 2 -011110111 BOTHA 2 -011110111 NEW-PRODUCT 2 -011110111 XICOR 2 -011110111 PULTE 2 -011110111 SWEET 2 -011110111 KLOECKNER-WERKE 2 -011110111 DEMONSTRATORS 2 -011110111 WINNERS 2 -011110111 VOYAGER 2 -011110111 MALAYSIA 2 -011110111 HILTON 2 -011110111 CONSERVATIVE 2 -011110111 UNIT 2 -011110111 ANIMAL 2 -011110111 DEVON 2 -011110111 PREGNANT 2 -011110111 LATER 2 -011110111 PUSHED 2 -011110111 LEATHER 2 -011110111 TASTES 2 -011110111 HEALTHY 2 -011110111 SHARE 2 -011110111 PURCHASING 2 -011110111 SANFORD 2 -011110111 PROVINCE 2 -011110111 MICROSEMI 2 -011110111 ARSON 2 -011110111 PEREZ 2 -011110111 CUTTING 2 -011110111 KEEPING 2 -011110111 AWARE 2 -011110111 HIMONT 2 -011110111 DOUBT 2 -011110111 BUSINESSLAND 2 -011110111 GUN 2 -011110111 ELIZABETH 2 -011110111 BIO-TECHNOLOGY 2 -011110111 NUCLEAR 2 -011110111 BASIX 2 -011110111 RIVAL 2 -011110111 GEORGIA 2 -011110111 JESSE 2 -011110111 GLASNOST 2 -011110111 ZHAO 2 -011110111 TRAILS 2 -011110111 THOUSAND 2 -011110111 BROWN-FORMAN 2 -011110111 ZEHNTEL 2 -011110111 BURNLEY 2 -011110111 TRUCKING 2 -011110111 ECHLIN 2 -011110111 1530.9 2 -011110111 DUKE 2 -011110111 FARMS 2 -011110111 ACCOUNTANTS 2 -011110111 SHAWMUT 2 -011110111 AGING 2 -011110111 OPTICAL 2 -011110111 PORTABLE 2 -011110111 115,436 2 -011110111 ROLLINS 2 -011110111 BURLINGTON 2 -011110111 HOCKEY 2 -011110111 WRIGLEY 2 -011110111 GELCO 2 -011110111 PLAYING 2 -011110111 FIRSTFED 2 -011110111 XIDEX 2 -011110111 KNOGO 2 -011110111 YET 2 -011110111 STREETS 2 -011110111 CHECKING 2 -011110111 DRAFTING 2 -011110111 SOCIALISTS 2 -011110111 COLGATE-PALMOLIVE 2 -011110111 TRINOVA 2 -011110111 SAFER 2 -011110111 LOSES 2 -011110111 MARKED 2 -011110111 WICKES 2 -011110111 MILLIPORE 2 -011110111 FEATHERING 2 -011110111 FOLLOW 2 -011110111 DENTISTS 2 -011110111 RETRAINING 2 -011110111 Cerinvest 2 -011110111 SUNUNU 2 -011110111 EACH 2 -011110111 ORIENT 2 -011110111 ESTATE-TAX 2 -011110111 HANCOCK 2 -011110111 NORANDA 2 -011110111 STRUCTURAL 2 -011110111 MARSHALL 2 -011110111 ATTRACTS 2 -011110111 CARTER 2 -011110111 HAWLEY 2 -011110111 TEAMWORK 2 -011110111 KEYNOTE 2 -011110111 SLEAZE 2 -011110111 HISTORY 2 -011110111 CLIENTS 2 -011110111 Leaking 2 -011110111 MOTHERS 2 -011110111 FALL 2 -011110111 MICROSOFT 2 -011110111 GREENER 2 -011110111 SOLID 2 -011110111 VOLUNTEERS 2 -011110111 DAVOX 2 -011110111 SERVICO 2 -011110111 DISCHARGED 2 -011110111 RETIREE 2 -011110111 ELCOR 2 -011110111 CONFUSION 2 -011110111 GARBAGE 2 -011110111 DISPOSABLE 2 -011110111 SEACOAST 2 -011110111 WEINBERGER 2 -011110111 HANGING 2 -011110111 CERUS 2 -011110111 STATEHOOD 2 -011110111 EASTER 2 -011110111 EXCUSE 2 -011110111 FARMLAND 2 -011110111 SURVEY 2 -011110111 BONUS 2 -011110111 INSTITUTO 2 -011110111 RADAR 2 -011110111 ANTONOVICH 2 -011110111 Mid-August 2 -011110111 VANDERBILT 2 -011110111 NORTHWESTERN 2 -011110111 THANKS 2 -011110111 INSTALLMENT 2 -011110111 ESTIMATED 2 -011110111 BMR 2 -011110111 TELERATE 2 -011110111 LISTED 2 -011110111 FIBER-OPTIC 2 -011110111 WELBILT 2 -011110111 YELTSIN 2 -011110111 MAZOWIECKI 2 -011110111 FIGURES 2 -011110111 MONARCH 2 -011110111 NORSTAR 2 -011110111 DUMPING 2 -011110111 GINSBURG 2 -011110111 INCREASED 2 -011110111 MAGMA 2 -011110111 CHOLESTEROL 2 -011110111 HORIZON 2 -011110111 WALGREEN 2 -011110111 FINAL 2 -011110111 JUNK 2 -011110111 STAY 2 -011110111 BREAKING 2 -011110111 WARY 2 -011110111 IMPAC 2 -011110111 RARE 2 -011110111 SENIOR 2 -011110111 DEWKS 2 -011110111 DRIVE-IN 2 -011110111 WESTAMERICA 2 -011110111 PENTAIR 2 -011110111 JOHNSTON 2 -011110111 GEMINA 2 -011110111 IRVINE 2 -011110111 BUG 2 -011110111 MASTER 2 -011110111 ARMED 2 -011110111 VOTER 2 -011110111 READ 2 -011110111 KYSOR 2 -011110111 PERES 2 -011110111 UTAH 2 -011110111 BETWEEN 2 -011110111 ALGERIA 2 -011110111 ELECTRON 2 -011110111 LOCKHEED 2 -011110111 WEDDING 2 -011110111 FIRST-CLASS 2 -011110111 COMPANIA 2 -011110111 PHONY 2 -011110111 ROCKY 2 -011110111 NERVOUS 2 -011110111 AMDAHL 2 -011110111 MEDIAN 2 -011110111 RYAN 2 -011110111 XYVISION 2 -011110111 SPREAD 2 -011110111 JURORS 2 -011110111 KENTUCKY 2 -011110111 EASCO 2 -011110111 GLENN 2 -011110111 Salesmanship 2 -011110111 BRINKMANN 2 -011110111 TRAUMA 2 -011110111 ARMS-CONTROL 2 -011110111 ROCKEFELLER 2 -011110111 TRUCK 2 -011110111 MEASUREX 2 -011110111 PACIFIC-RIM 2 -011110111 WOLSELEY 2 -011110111 Whiz-kid 2 -011110111 SOCIALIST 2 -011110111 Equivalent 2 -011110111 ATARI 2 -011110111 PHYSICISTS 2 -011110111 BERNARD 2 -011110111 ROSY 2 -011110111 UNTIL 2 -011110111 QUEENSWAY 2 -011110111 IGNORANCE 2 -011110111 MICE 2 -011110111 DIVIDEND-YIELD 2 -011110111 SUED 2 -011110111 1535.6 2 -011110111 1920.8 2 -011110111 HIGHLAND 2 -011110111 GENEROUS 2 -011110111 3COM 2 -011110111 FOREMOST 2 -011110111 REGULATORY 2 -011110111 DOCK 2 -011110111 Piling 2 -011110111 DESKTOP 2 -011110111 TBM 2 -011110111 KAY 2 -011110111 GUNS 2 -011110111 BABBITT 2 -011110111 PERRY 2 -011110111 BEYOND 2 -011110111 SHORE 2 -011110111 JANITORS 2 -011110111 STRANGE 2 -011110111 JAN 2 -011110111 TIGHTER 2 -011110111 LEANER 2 -011110111 SEQUA 2 -011110111 SPARE 2 -011110111 NEGOTIATIONS 2 -011110111 SURGEONS 2 -011110111 IDEAL 2 -011110111 AUDIO 2 -011110111 LURE 2 -011110111 Colder 2 -011110111 EATING 2 -011110111 TOILET 2 -011110111 S.N.L. 2 -011110111 Engex 2 -011110111 ARGENTINA 2 -011110111 CONGRESSMAN 2 -011110111 OUTLET 2 -011110111 AMES 2 -011110111 PERINI 2 -011110111 CELEBRITY 2 -011110111 IVAN 2 -011110111 RUDER 2 -011110111 PORT 2 -011110111 ORGANIZED 2 -011110111 State-controlled 2 -011110111 CONSIDERING 2 -011110111 Lifelong 2 -011110111 FOUL 2 -011110111 WISH 2 -011110111 Soufre 2 -011110111 MINUTEMAN 2 -011110111 PERMANENT 2 -011110111 SCREEN 2 -011110111 Hardened 2 -011110111 TEXTILE 2 -011110111 PROGRESSIVE 2 -011110111 FOREIGN-POLICY 2 -011110111 QUEST 2 -011110111 GASOLINE 2 -011110111 PATLEX 2 -011110111 PRIORITIES 2 -011110111 OLLIE 2 -011110111 SIGNS 2 -011110111 AMOSKEAG 2 -011110111 POSH 2 -011110111 ARTIFICIAL 2 -011110111 Saturated 2 -011110111 STADIUM 2 -011110111 CONCRETE 2 -011110111 EXTENDED-CARE 2 -011110111 WEDTECH 2 -011110111 COMEBACK 2 -011110111 Stagflation 2 -011110111 LOW-INCOME 2 -011110111 TRY 2 -011110111 EVERYONE 2 -011110111 DEEP 2 -011110111 WEEDING 2 -011110111 Portraying 2 -011110111 LATIN 2 -011110111 BERGER 2 -011110111 FINISH 2 -011110111 DAY-CARE 2 -011110111 BETTY 2 -011110111 RESTORING 2 -011110111 INTEL 2 -011110111 ESCAGEN 2 -011110111 ADOPTION 2 -011110111 SURF 2 -011110111 OPEN 2 -011110111 SHADES 2 -011110111 ADVANCES 2 -011110111 ARMCO 2 -011110111 MITTERRAND 2 -011110111 WELLCOME 2 -011110111 GENERIC 2 -011110111 HYDRAULIC 2 -011110111 LOOSE 2 -011110111 LEADERSHIP 2 -011110111 WELLNESS 2 -011110111 BANNER 2 -011110111 FAILURE 2 -011110111 LINDA 2 -011110111 REDEEMING 2 -011110111 Tieless 2 -011110111 ALPINE 2 -011110111 ANCHOR 2 -011110111 YANKEE 2 -011110111 DOMTAR 2 -011110111 CHUBB 2 -011110111 CAPITALIST 2 -011110111 Touchy 2 -011110111 BROCK 2 -011110111 WALDHEIM 2 -011110111 DOSKOCIL 2 -011110111 SUNGARD 2 -011110111 HIGHWAY 2 -011110111 SURPRISING 2 -011110111 DAISY 2 -011110111 DR. 2 -011110111 PROVIDENT 2 -011110111 HAITI 2 -011110111 todos 2 -011110111 GIVEN 2 -011110111 HEFTY 2 -011110111 EX-CIA 2 -011110111 ENCOR 2 -011110111 DEPUTY 2 -011110111 SOONER 2 -011110111 MARRIAGE 2 -011110111 BRANIFF 2 -011110111 JACK 2 -011110111 Cognitronics 2 -011110111 COMPACT 2 -011110111 NINE 2 -011110111 NEITHER 2 -011110111 ITCHING 2 -011110111 COMPROMISE 2 -011110111 PITY 2 -011110111 MIDLANTIC 2 -011110111 OSHMAN 2 -011110111 SPORTING 2 -011110111 DRUG-TESTING 2 -011110111 CARSON 2 -011110111 ALLTEL 2 -011110111 SCANNING 2 -011110111 GOTTA 2 -011110111 BALLY 2 -011110111 REGAN 2 -011110111 ALAN 2 -011110111 DEVELOPERS 2 -011110111 FREDERICK 2 -011110111 SPARTECH 2 -011110111 HIGHEST 2 -011110111 EATON 2 -011110111 WARD 2 -011110111 ROUSE 2 -011110111 VOEST-ALPINE 2 -011110111 MINISCRIBE 2 -011110111 UNEASY 2 -011110111 PHANTOM 2 -011110111 OCTOBER 2 -011110111 LIONEL 2 -011110111 U.S.-SOVIET 2 -011110111 EVIDENCE 3 -011110111 LOWER 3 -011110111 ROOSEVELT 3 -011110111 SMALLER 3 -011110111 MCFARLANE 3 -011110111 KEMPER 3 -011110111 RATING 3 -011110111 ARGENTINE 3 -011110111 MIAMI 3 -011110111 FARMER 3 -011110111 VIETNAM 3 -011110111 GEORGE 3 -011110111 CLOSE 3 -011110111 BRITAIN 3 -011110111 NICOR 3 -011110111 GARY 3 -011110111 AFGHAN 3 -011110111 ENDEVCO 3 -011110111 MIDDLE 3 -011110111 ARKLA 3 -011110111 DUCOMMUN 3 -011110111 PATTEN 3 -011110111 OGDEN 3 -011110111 PILLSBURY 3 -011110111 PART-TIME 3 -011110111 WESTWOOD 3 -011110111 WATCHING 3 -011110111 HUGHES 3 -011110111 HAVING 3 -011110111 FEDDERS 3 -011110111 EDWARD 3 -011110111 FICTION 3 -011110111 mise 3 -011110111 HUSSEIN 3 -011110111 THATCHER 3 -011110111 FISONS 3 -011110111 COLOMBIA 3 -011110111 XYLOGICS 3 -011110111 DONORS 3 -011110111 EAGLE 3 -011110111 OPERATING 3 -011110111 ALIMONY 3 -011110111 CERTAIN 3 -011110111 PROVIGO 3 -011110111 INSIDE 3 -011110111 +23 3 -011110111 UNLIKE 3 -011110111 APARTMENT 3 -011110111 AEROSPATIALE 3 -011110111 RAINIER 3 -011110111 ODD 3 -011110111 NELSON 3 -011110111 DEXTER 3 -011110111 WESTVACO 3 -011110111 KAISER 3 -011110111 RISING 3 -011110111 CARLUCCI 3 -011110111 LEMON 3 -011110111 SYRIA 3 -011110111 PECHINEY 3 -011110111 ALFONSIN 3 -011110111 INB 3 -011110111 THERMO 3 -011110111 DOMINION 3 -011110111 EXPORT 3 -011110111 UNCERTAINTY 3 -011110111 WENDY 3 -011110111 VALERO 3 -011110111 QUICK 3 -011110111 DIVORCE 3 -011110111 DISPUTES 3 -011110111 CLOTHING 3 -011110111 ADOLPH 3 -011110111 COORS 3 -011110111 GILBERT 3 -011110111 Healthsouth 3 -011110111 SUIT 3 -011110111 WANG 3 -011110111 UNDER 3 -011110111 CALTON 3 -011110111 SOARING 3 -011110111 START-UP 3 -011110111 HERBERT 3 -011110111 GUARANTY 3 -011110111 SCHERING-PLOUGH 3 -011110111 MICROPOLIS 3 -011110111 ECONOMISTS 3 -011110111 CURRENCY 3 -011110111 KID 3 -011110111 IMPORTED 3 -011110111 ACCORDING 3 -011110111 PANAMA 3 -011110111 CONTRACTING 3 -011110111 COMMODITIES 3 -011110111 PUBLICLY 3 -011110111 EMPIRE 3 -011110111 SPY 3 -011110111 PEACE 3 -011110111 WITCO 3 -011110111 OUTSIDE 3 -011110111 DEKALB 3 -011110111 AMBITIOUS 3 -011110111 CLOCK 3 -011110111 ALBANY 3 -011110111 AGRICULTURAL 3 -011110111 TECHNICAL 3 -011110111 KARSTADT 3 -011110111 SEN. 3 -011110111 KOREAN 3 -011110111 STUDENT 3 -011110111 CONFERENCE 3 -011110111 DEAVER 3 -011110111 FRANCHISE 3 -011110111 ROGER 3 -011110111 PRODUCER 3 -011110111 DAIRY 3 -011110111 FISHING 3 -011110111 EXPENSIVE 3 -011110111 PRUDENTIAL 3 -011110111 COMBAT 3 -011110111 KIM 3 -011110111 AVENUE 3 -011110111 MOODY 3 -011110111 OUTBOARD 3 -011110111 FISH 3 -011110111 LOS 3 -011110111 PRIDE 3 -011110111 CORONA 3 -011110111 CURRENT 3 -011110111 Comercial 3 -011110111 RISKY 3 -011110111 SAHARA 3 -011110111 BEHIND 3 -011110111 CALIFORNIANS 3 -011110111 TANDY 3 -011110111 MONKEY 3 -011110111 BROADWAY 3 -011110111 MAPCO 3 -011110111 HIJACKERS 3 -011110111 TEACHER 3 -011110111 DURING 3 -011110111 SPEED 3 -011110111 RICE 3 -011110111 THRIFT 3 -011110111 BEECHAM 3 -011110111 TRANSAMERICA 3 -011110111 DEGUSSA 3 -011110111 ESPANOL 3 -011110111 EMERGENCY 3 -011110111 TORONTO 3 -011110111 BRAMALEA 3 -011110111 HAMBROS 3 -011110111 AMFAC 3 -011110111 HER 3 -011110111 ROCHESTER 3 -011110111 LOAD 3 -011110111 BLIND 3 -011110111 ILL 3 -011110111 LECH 3 -011110111 AGENT 3 -011110111 WRITING 3 -011110111 BASS 3 -011110111 GENENTECH 3 -011110111 CONTRAS 3 -011110111 SIMON 3 -011110111 CRUISE 3 -011110111 PINOCHET 3 -011110111 CHRONAR 3 -011110111 TANKS 3 -011110111 HERTZ 3 -011110111 SHUTTLE 3 -011110111 GREYHOUND 3 -011110111 TALMAN 3 -011110111 AVOID 3 -011110111 SPREADING 3 -011110111 INSTANT 3 -011110111 MEXICAN 3 -011110111 SEAGATE 3 -011110111 CATALOG 3 -011110111 MARCOS 3 -011110111 NYNEX 3 -011110111 LOGIC 3 -011110111 IRAQI 3 -011110111 SEATTLE 3 -011110111 PILGRIM 3 -011110111 DILLARD 3 -011110111 AMGEN 3 -011110111 CREATIVE 3 -011110111 CLEAR 3 -011110111 CHICKEN 3 -011110111 REVLON 3 -011110111 NEWBERY 3 -011110111 KLERK 3 -011110111 NOBODY 3 -011110111 NORTHWEST 3 -011110111 MELVILLE 3 -011110111 BURMESE 3 -011110111 BUILD 3 -011110111 TOWN 3 -011110111 440.8 3 -011110111 2138.9 3 -011110111 BAHAMIAN 3 -011110111 KLOECKNER-HUMBOLDT-DEUTZ 3 -011110111 STOP 3 -011110111 MAYBE 3 -011110111 REGULATORS 3 -011110111 GROSS 3 -011110111 DEFENSIVE 3 -011110111 SLOWER 3 -011110111 RECRUITS 3 -011110111 LURING 3 -011110111 MERIT 3 -011110111 FIFTH 3 -011110111 MAKING 3 -011110111 HALF 3 -011110111 RESULTS 3 -011110111 COMMUNIST 3 -011110111 PIEDMONT 3 -011110111 WORRIED 3 -011110111 CITIZEN 3 -011110111 WHETHER 3 -011110111 GAG 3 -011110111 BRUCE 4 -011110111 FINE 4 -011110111 TRADITIONAL 4 -011110111 SPECIAL 4 -011110111 CINCINNATI 4 -011110111 BRIDGESTONE 4 -011110111 FRENCH 4 -011110111 CIRCUS 4 -011110111 HUMAN 4 -011110111 LIABILITY 4 -011110111 COLONIAL 4 -011110111 BURMA 4 -011110111 NEWSPAPER 4 -011110111 BOUYGUES 4 -011110111 TRYING 4 -011110111 ROBOT 4 -011110111 DISABILITY 4 -011110111 MESA 4 -011110111 BROKE 4 -011110111 CHIPS 4 -011110111 SHARING 4 -011110111 SPACE 4 -011110111 Excludes 4 -011110111 BEFORE 4 -011110111 BASE 4 -011110111 EMHART 4 -011110111 FOODMAKER 4 -011110111 SAFETY 4 -011110111 WISCONSIN 4 -011110111 HORSE 4 -011110111 EXPLOSIVOS 4 -011110111 BRUNSWICK 4 -011110111 STERLING 4 -011110111 MUTUAL-FUND 4 -011110111 SALOMON 4 -011110111 COURTAULDS 4 -011110111 WEYERHAEUSER 4 -011110111 ENTEX 4 -011110111 BANKRUPTCY 4 -011110111 BOTH 4 -011110111 BLACKS 4 -011110111 SIGN 4 -011110111 SHAREHOLDER 4 -011110111 KOHLBERG 4 -011110111 KRAVIS 4 -011110111 LAWRENCE 4 -011110111 DIGITAL 4 -011110111 FATHER 4 -011110111 UTILICORP 4 -011110111 SET 4 -011110111 PIPE 4 -011110111 NORWEST 4 -011110111 TRACTEBEL 4 -011110111 ARMSTRONG 4 -011110111 FERRANTI 4 -011110111 CAREER 4 -011110111 SEA 4 -011110111 CONCERN 4 -011110111 POSTAL 4 -011110111 CENTURY 4 -011110111 SOUTHWESTERN 4 -011110111 HISPANIC 4 -011110111 DAILY 4 -011110111 TYLER 4 -011110111 RIVALS 4 -011110111 WINTER 4 -011110111 COMINCO 4 -011110111 SECOND 4 -011110111 MILITARY 4 -011110111 EVERY 4 -011110111 MAXICARE 4 -011110111 GLASS 4 -011110111 SON 4 -011110111 DELAYED 4 -011110111 GUY 4 -011110111 DIRECT 4 -011110111 FUR 4 -011110111 EMPLOYER 4 -011110111 EUROPE 4 -011110111 SEVEN 4 -011110111 MATCH 4 -011110111 FLUOR 4 -011110111 ESSEX 4 -011110111 BRIGHT 4 -011110111 GOT 4 -011110111 MINIMUM 4 -011110111 BEERS 4 -011110111 TRIANGLE 4 -011110111 JERRY 4 -011110111 FINALLY 4 -011110111 PREMIER 4 -011110111 GLENFED 4 -011110111 EASTMAN 4 -011110111 GOLDMAN 4 -011110111 SACHS 4 -011110111 POPE 4 -011110111 BURNS 4 -011110111 STRONG 4 -011110111 BIDEN 4 -011110111 CROSSLAND 4 -011110111 STARTING 4 -011110111 LAB 4 -011110111 TARGET 4 -011110111 KEMP 4 -011110111 EQUIMARK 4 -011110111 JIM 4 -011110111 ANALYSTS 4 -011110111 CONVENTION 4 -011110111 JOINT 4 -011110111 BANNED 4 -011110111 TEKTRONIX 4 -011110111 CUBAN 4 -011110111 RENTAL 4 -011110111 LEADING 4 -011110111 HIGH-TECH 4 -011110111 WAR 4 -011110111 INDEPENDENT 4 -011110111 CHANGING 4 -011110111 LOCAL 4 -011110111 BANC 4 -011110111 SECORD 4 -011110111 SUPER 4 -011110111 QUAKER 5 -011110111 AMSTRAD 5 -011110111 IMAGINE 5 -011110111 MASSACHUSETTS 5 -011110111 TRANSCANADA 5 -011110111 DIVIDEND 5 -011110111 SHEVARDNADZE 5 -011110111 POLICY 5 -011110111 KNOW 5 -011110111 BELIEVE 5 -011110111 LOUISIANA 5 -011110111 st 5 -011110111 HWC 5 -011110111 MERGER 5 -011110111 ROSTENKOWSKI 5 -011110111 SHELL 5 -011110111 APPLIED 5 -011110111 WHERE 5 -011110111 OUR 5 -011110111 GERMAN 5 -011110111 Noted 5 -011110111 NEARLY 5 -011110111 BAY 5 -011110111 EXPORTERS 5 -011110111 INDIAN 5 -011110111 SWEDISH 5 -011110111 JOSEPH 5 -011110111 NUOVO 5 -011110111 LANDMARK 5 -011110111 CONTRA 5 -011110111 GORE 5 -011110111 CHILD-CARE 5 -011110111 ROBERTSON 5 -011110111 CHANCES 5 -011110111 ANGLO 5 -011110111 PREUSSAG 5 -011110111 RICOH 5 -011110111 PAID 5 -011110111 IOWA 5 -011110111 KOMATSU 5 -011110111 MENTOR 5 -011110111 Lucio 5 -011110111 HELPING 5 -011110111 TAXABLE 5 -011110111 BARRY 5 -011110111 DEMOCRATIC 5 -011110111 HUNTING 5 -011110111 GIANT 5 -011110111 TIGER 5 -011110111 MASCO 5 -011110111 HUNGARY 5 -011110111 LASER 5 -011110111 TOY 5 -011110111 HENRY 5 -011110111 PRESIDENTIAL 5 -011110111 Braathens 5 -011110111 ALLEGIS 5 -011110111 BAN 5 -011110111 FLEXIBLE 5 -011110111 ANY 5 -011110111 JARUZELSKI 5 -011110111 ARAB 5 -011110111 UNISYS 5 -011110111 Unreimbursed 5 -011110111 SLOW 5 -011110111 BRAZIL 5 -011110111 CHASE 5 -011110111 VOICE 5 -011110111 GRAIN 5 -011110111 ALTHOUGH 5 -011110111 REMY 5 -011110111 OREGON 5 -011110111 BALTIMORE 5 -011110111 BATTLED 5 -011110111 FEWER 5 -011110111 ORTEGA 5 -011110111 DELAWARE 5 -011110111 MOORE 5 -011110111 SAVE 5 -011110111 IMPORTS 5 -011110111 COOPER 5 -011110111 PRECISION 5 -011110111 MARYLAND 5 -011110111 SELECTED 5 -011110111 SCOTT 5 -011110111 RULE 5 -011110111 PHILIPPINE 5 -011110111 MOVIE 5 -011110111 BOOTS 5 -011110111 AIRLINE 5 -011110111 HEAD 5 -011110111 SOMETIMES 5 -011110111 MERIDIAN 5 -011110111 INCENTIVE 6 -011110111 LOOKING 6 -011110111 STANLEY 6 -011110111 POLITICAL 6 -011110111 GEPHARDT 6 -011110111 GLOBAL 6 -011110111 CONNECTICUT 6 -011110111 FORGET 6 -011110111 NEED 6 -011110111 BUSY 6 -011110111 HURRICANE 6 -011110111 BROAD 6 -011110111 HOLD 6 -011110111 BAR 6 -011110111 USING 6 -011110111 USED 6 -011110111 AMNESTY 6 -011110111 NOTHING 6 -011110111 ARIZONA 6 -011110111 INVESTIGATORS 6 -011110111 CHUN 6 -011110111 JOBLESS 6 -011110111 WATCH 6 -011110111 MATTEL 6 -011110111 CANCER 6 -011110111 SEVERAL 6 -011110111 HOT 6 -011110111 TRANS 6 -011110111 COMING 6 -011110111 PAKISTAN 6 -011110111 LEGAL 6 -011110111 BEER 6 -011110111 ILLEGAL 6 -011110111 CASEY 6 -011110111 FINDING 6 -011110111 ALLEGHENY 6 -011110111 FREE 6 -011110111 TEAMSTERS 6 -011110111 EVER 6 -011110111 RESIDENTIAL 6 -011110111 CHARITY 6 -011110111 SOMETHING 6 -011110111 LEGISLATION 6 -011110111 WAGE 6 -011110111 CONGRESSIONAL 6 -011110111 EUROPEAN 6 -011110111 RESOURCE 6 -011110111 ADD 6 -011110111 ETHICS 6 -011110111 VOLCKER 6 -011110111 DIAMOND 6 -011110111 EQUITABLE 6 -011110111 LOOKS 6 -011110111 HIRING 6 -011110111 THOUGH 6 -011110111 MERCHANTS 6 -011110111 ARMS 6 -011110111 NEVER 6 -011110111 DELTA 6 -011110111 WHY 6 -011110111 WALESA 6 -011110111 INLAND 6 -011110111 GROWING 6 -011110111 PRATT 6 -011110111 UNIVERSAL 6 -011110111 FACTORY 6 -011110111 PITTSBURGH 6 -011110111 MACMILLAN 6 -011110111 MAINE 6 -011110111 MCORP 6 -011110111 REBEL 6 -011110111 DEFENSE 6 -011110111 MANILA 6 -011110111 LAWMAKERS 6 -011110111 SILICON 6 -011110111 TENDER 6 -011110111 COATS 6 -011110111 MANAGER 6 -011110111 TAIWAN 6 -011110111 WELLS 7 -011110111 ZENITH 7 -011110111 POINDEXTER 7 -011110111 ASSOCIATED 7 -011110111 WHICH 7 -011110111 WRIGHT 7 -011110111 Candid 7 -011110111 FAST 7 -011110111 UNIVERSITY 7 -011110111 GUNMEN 7 -011110111 LOOK 7 -011110111 KODAK 7 -011110111 PENNZOIL 7 -011110111 ENGINEERS 7 -011110111 HOUSTON 7 -011110111 DOES 7 -011110111 VENTURE 7 -011110111 ST. 7 -011110111 QUAYLE 7 -011110111 ONCE 7 -011110111 AQUINO 7 -011110111 REPUBLICBANK 7 -011110111 BOEING 7 -011110111 PRIMERICA 7 -011110111 MOSLEM 7 -011110111 MINORITY 7 -011110111 REGIONAL 7 -011110111 FIGHTING 7 -011110111 PEOPLES 7 -011110111 FLYING 7 -011110111 HANSON 7 -011110111 IRANIAN 7 -011110111 NAVY 7 -011110111 IMMIGRATION 7 -011110111 BUYING 7 -011110111 COUNTRY 7 -011110111 FREEPORT-MCMORAN 7 -011110111 CAMPUS 7 -011110111 JIFFY 7 -011110111 JUSTICE 7 -011110111 TRADING 7 -011110111 NACIONAL 7 -011110111 STAKE 7 -011110111 EXEMPT 7 -011110111 WORKING 7 -011110111 MOUNTAIN 7 -011110111 FORT 7 -011110111 SOCIAL 7 -011110111 JARDINE 7 -011110111 FEDERATED 7 -011110111 ATLANTA 7 -011110111 COME 7 -011110111 ISTITUTO 7 -011110111 HOLLYWOOD 7 -011110111 NEWMONT 8 -011110111 SMOKING 8 -011110111 KANSAS 8 -011110111 Occasional 8 -011110111 OVERSEAS 8 -011110111 RIO 8 -011110111 REPUBLIC 8 -011110111 SOUTHWEST 8 -011110111 QUALITY 8 -011110111 IMAGE 8 -011110111 SUCH 8 -011110111 MCDONALD 8 -011110111 HOLIDAY 8 -011110111 THEIR 8 -011110111 TELEFONICA 8 -011110111 MAKE 8 -011110111 FAMILY 8 -011110111 MERCANTILE 8 -011110111 MARINE 8 -011110111 BAYERISCHE 8 -011110111 RECENT 8 -011110111 FIVE 8 -011110111 REAGANITES 8 -011110111 GREENSPAN 8 -011110111 IRAQ 8 -011110111 THOSE 8 -011110111 REAL-ESTATE 8 -011110111 VICTOR 8 -011110111 WEEKLY 8 -011110111 HERITAGE 8 -011110111 BEEN 8 -011110111 NICARAGUA 8 -011110111 MUSIC 8 -011110111 MAZDA 8 -011110111 RETIREMENT 8 -011110111 CHRISTMAS 8 -011110111 PHONE 8 -011110111 BENTSEN 8 -011110111 CITIZENS 8 -011110111 ALASKA 9 -011110111 FIDELITY 9 -011110111 ACTION 9 -011110111 CRASH 9 -011110111 GOLDEN 9 -011110111 CHINA 9 -011110111 CHARTER 9 -011110111 FEW 9 -011110111 Outgoing 9 -011110111 TAKE 9 -011110111 HOUSING 9 -011110111 NORTHEAST 9 -011110111 MOVING 9 -011110111 HOWARD 9 -011110111 DESPITE 9 -011110111 MY 9 -011110111 HOSPITAL 9 -011110111 BRUSSELS 9 -011110111 POLICE 9 -011110111 TAKING 9 -011110111 RETURN 9 -011110111 AVERAGE 9 -011110111 CAMPAIGN 9 -011110111 WANT 9 -011110111 NIAGARA 9 -011110111 HIGHER 9 -011110111 MUNICIPAL 9 -011110111 LINCOLN 9 -011110111 MEN 9 -011110111 DEAN 9 -011110111 PARTY 9 -011110111 CHRYSLER 10 -011110111 SHAMIR 10 -011110111 TAKEOVER 10 -011110111 PARIS 10 -011110111 BUY 10 -011110111 STRATEGIC 10 -011110111 Ailing 10 -011110111 COULD 10 -011110111 ODDS 10 -011110111 DETROIT 10 -011110111 SANTA 10 -011110111 OLD 10 -011110111 HELP 10 -011110111 GETTING 10 -011110111 AMAX 10 -011110111 KIDS 10 -011110111 BANQUE 10 -011110111 SHOULD 10 -011110111 SHOPPING 10 -011110111 TOTAL 10 -011110111 FARM 10 -011110111 BEING 10 -011110111 HART 10 -011110111 CHINESE 10 -011110111 LITTLE 10 -011110111 PENNSYLVANIA 10 -011110111 STUDENTS 11 -011110111 DID 11 -011110111 INDIANA 11 -011110111 JAMES 11 -011110111 FRANK 11 -011110111 PRIVATE 11 -011110111 KRAFT 11 -011110111 MICHAEL 11 -011110111 WORKER 11 -011110111 ITS 11 -011110111 FUJI 11 -011110111 TOUGH 11 -011110111 RIGHT 11 -011110111 FORMER 11 -011110111 THESE 11 -011110111 PERSONAL 11 -011110111 REYNOLDS 11 -011110111 PIONEER 11 -011110111 NORTHERN 12 -011110111 GULF 12 -011110111 LOUIS 12 -011110111 MICHIGAN 12 -011110111 POOR 12 -011110111 TELEVISION 12 -011110111 LET 12 -011110111 KIDDER 12 -011110111 BAD 12 -011110111 EVEN 12 -011110111 ONLY 12 -011110111 STILL 12 -011110111 Confidential 12 -011110111 WALSH 12 -011110111 FOUR 12 -011110111 SUMMIT 12 -011110111 MOSCOW 12 -011110111 MARTIN 12 -011110111 CIRCLE 13 -011110111 HITACHI 13 -011110111 SINGAPORE 13 -011110111 CHICAGO 13 -011110111 LONG 13 -011110111 MANUFACTURERS 13 -011110111 HOTEL 13 -011110111 POLAND 13 -011110111 CANADIAN 13 -011110111 DALLAS 13 -011110111 SUMMER 13 -011110111 BANCO 13 -011110111 ILLINOIS 13 -011110111 GOVERNMENT 14 -011110111 *** 14 -011110111 JUST 14 -011110111 WHILE 14 -011110111 HERE 14 -011110111 EMPLOYEE 14 -011110111 OHIO 14 -011110111 FED 14 -011110111 POLISH 14 -011110111 CASH 14 -011110111 Ago 14 -011110111 TOO 14 -011110111 SMITH 14 -011110111 GOOD 14 -011110111 ISRAELI 14 -011110111 CHILDREN 14 -011110111 MAJOR 15 -011110111 ENVIRONMENTAL 15 -011110111 IRAN 15 -011110111 MEXICO 15 -011110111 TEXACO 15 -011110111 NEXT 15 -011110111 BETTER 15 -011110111 SHORT 15 -011110111 EARLY 15 -011110111 OFF 15 -011110111 THREE 16 -011110111 LIKE 16 -011110111 COLLEGE 16 -011110111 EXECUTIVE 16 -011110111 TRAVEL 16 -011110111 BACK 16 -011110111 ANOTHER 16 -011110111 LABOR 16 -011110111 AD 16 -011110111 EAST 16 -011110111 TOSHIBA 16 -011110111 HIS 16 -011110111 ATLANTIC 16 -011110111 EASTERN 16 -011110111 VALLEY 16 -011110111 ECONOMIC 17 -011110111 NORIEGA 17 -011110111 PENSION 17 -011110111 MUTUAL 17 -011110111 SUN 17 -011110111 GO 18 -011110111 BY 18 -011110111 SAN 18 -011110111 FOOD 18 -011110111 OTHER 18 -011110111 ISRAEL 19 -011110111 BORK 19 -011110111 MR. 19 -011110111 DOLE 19 -011110111 Daffynition 19 -011110111 LAST 19 -011110111 TIMES 19 -011110111 WALL 20 -011110111 BAKER 20 -011110111 ROBERT 20 -011110111 STATES 20 -011110111 HOW 20 -011110111 TIME 20 -011110111 FORD 20 -011110111 HE 20 -011110111 JOB 20 -011110111 MEESE 20 -011110111 SO 20 -011110111 SMALL 21 -011110111 CONSUMER 21 -011110111 AFTER 21 -011110111 CENTRAL 21 -011110111 BLUE 21 -011110111 SOVIET 21 -011110111 WHITE 21 -011110111 SUPREME 21 -011110111 TWO 22 -011110111 GREAT 22 -011110111 LLOYD 22 -011110111 CONTINENTAL 23 -011110111 HIGH 23 -011110111 BOSTON 23 -011110111 Help-wanted 23 -011110111 FROM 23 -011110111 CALIFORNIA 23 -011110111 DRUG 24 -011110111 CONGRESS 24 -011110111 AUTO 24 -011110111 BOND 24 -011110111 TOP 24 -011110111 FLORIDA 25 -011110111 HEALTH 25 -011110111 DEMOCRATS 25 -011110111 CONSOLIDATED 25 -011110111 JAPANESE 25 -011110111 THEY 26 -011110111 SOUTHERN 26 -011110111 ELECTRONIC 27 -011110111 NOT 28 -011110111 MOST 29 -011110111 DO 29 -011110111 WOMEN 31 -011110111 WESTERN 31 -011110111 CAN 32 -011110111 THAT 33 -011110111 MANY 34 -011110111 ALL 34 -011110111 NORTH 34 -011110111 BOESKY 35 -011110111 BUT 36 -011110111 SOUTH 36 -011110111 SHULTZ 36 -011110111 GORBACHEV 36 -011110111 TOKYO 37 -011110111 WITH 38 -011110111 ORANGE 38 -011110111 WORST 39 -011110111 AMERICA 39 -011110111 STATE 40 -011110111 JAPAN 40 -011110111 THIS 40 -011110111 CORPORATE 41 -011110111 SOME 42 -011110111 DUKAKIS 44 -011110111 BIG 44 -011110111 THERE 45 -011110111 DREXEL 46 -011110111 NO 47 -011110111 UNITED 51 -011110111 ONE 51 -011110111 AIR 51 -011110111 BEST 51 -011110111 TEXAS 54 -011110111 Municipals 55 -011110111 IF 59 -011110111 ** 60 -011110111 WHAT 60 -011110111 MORE 62 -011110111 WHEN 64 -011110111 WASHINGTON 69 -011110111 BUSH 76 -011110111 ON 82 -011110111 DE 100 -011110111 AN 106 -011110111 MINOR 112 -011110111 FOR 115 -011110111 FIRST 118 -011110111 IT 120 -011110111 AMERICAN 136 -011110111 TO 136 -011110111 REAGAN 142 -011110111 IN 145 -011110111 STOCK 150 -011110111 Ad 176 -011110111 CERTIFICATES 188 -011110111 BANKERS 191 -011110111 TREASURY 192 -011110111 MERRILL 208 -011110111 FOREIGN 251 -011110111 NEW 266 -011110111 Senior 337 -011110111 COMMERCIAL 403 -011110111 LONDON 446 -011110111 Former 581 -011110111 FEDERAL 636 -011110111 THE 1352 -011110111 An 7259 -011110111 --- 3093 -011111000 MCKINLEY 1 -011111000 Three-term 1 -011111000 In-over-the-counter 1 -011111000 SAO 1 -011111000 Gepruefte 1 -011111000 PEDIATRIC 1 -011111000 ELECTION-NIGHT 1 -011111000 LANCASTER 1 -011111000 Ilmar 1 -011111000 ILAN 1 -011111000 PHILLIPS-VAN 1 -011111000 Dramha 1 -011111000 Incurring 1 -011111000 Jananne 1 -011111000 TIMBER 1 -011111000 Trumpeter 1 -011111000 Computer-triggered 1 -011111000 VIRTUE 1 -011111000 DETAILING 1 -011111000 Panic-driven 1 -011111000 Rinichi 1 -011111000 STINGER 1 -011111000 POLLY 1 -011111000 WILLIS 1 -011111000 Solicitors 1 -011111000 ESTIMATED-TAX 1 -011111000 Masuo 1 -011111000 Kornel 1 -011111000 EXCHANGES 1 -011111000 Still-higher 1 -011111000 221,399 1 -011111000 277,989 1 -011111000 -110,864 1 -011111000 342,394 1 -011111000 47,274 1 -011111000 Mentoring 1 -011111000 Cultivating 1 -011111000 MONDALE 1 -011111000 GAZ 1 -011111000 Lubov 1 -011111000 EVERETT 1 -011111000 FranCine 1 -011111000 FEMININE 1 -011111000 Violinists 1 -011111000 LILLIAN 1 -011111000 ENDING 1 -011111000 Tossed 1 -011111000 MILWAUKEE 1 -011111000 THRIFTY 1 -011111000 SALMON 1 -011111000 Destabilizing 1 -011111000 Communist-capitalist 1 -011111000 Rueben 1 -011111000 TAVERN 1 -011111000 Bumbershoot 1 -011111000 BALLROOM 1 -011111000 Dannie 1 -011111000 MANDATORY 1 -011111000 Yukiyo 1 -011111000 Semi-retired 1 -011111000 Then-president 1 -011111000 Razing 1 -011111000 Meita 1 -011111000 FLOODS 1 -011111000 CLINTON 1 -011111000 Tsutae 1 -011111000 Wulf 1 -011111000 Anne-Claire 1 -011111000 Hidezo 1 -011111000 Urvan 1 -011111000 Suitemates 1 -011111000 Olov 1 -011111000 CHILE 1 -011111000 NATIONAL-DEBT 1 -011111000 Aerovias 1 -011111000 COL. 1 -011111000 Unify 1 -011111000 Zuheir 1 -011111000 ENRIQUE 1 -011111000 RURAL 1 -011111000 CLINICAL 1 -011111000 Chierry 1 -011111000 Programmed 1 -011111000 ANNOYING 1 -011111000 RECKLESS 1 -011111000 USELESS 1 -011111000 Gilli 1 -011111000 REVERSE 1 -011111000 DOUBTFUL 1 -011111000 MOBS 1 -011111000 Brud 1 -011111000 BRIEFLY 1 -011111000 DIXIE 1 -011111000 Tinkham 1 -011111000 Junnosuke 1 -011111000 Gohei 1 -011111000 Metin 1 -011111000 Tap-water 1 -011111000 Insurer 1 -011111000 JIMMY 1 -011111000 Goryackiye 1 -011111000 Lauris 1 -011111000 BON 1 -011111000 Heyva 1 -011111000 Swiss-franc-futures 1 -011111000 Belyiye 1 -011111000 Sorok 1 -011111000 Priin 1 -011111000 HOSTILE 1 -011111000 COMPUTER-AIDED 1 -011111000 BIRDHOUSES 1 -011111000 Yeti 1 -011111000 COMFORTABLE 1 -011111000 Frinna 1 -011111000 REPORTING 1 -011111000 One-month 1 -011111000 PHILLY 1 -011111000 MUSCOCHO 1 -011111000 STALEMATE 1 -011111000 ANDROS 1 -011111000 COSTA 1 -011111000 Homa 1 -011111000 Rockwell-Marconi 1 -011111000 Model-year 1 -011111000 DORCHESTER 1 -011111000 GEOGRAPHY 1 -011111000 MUGGING 1 -011111000 BLOCKING 1 -011111000 RECYCLED 1 -011111000 EMPHASIZE 1 -011111000 ANGRY 1 -011111000 ASBESTOS 1 -011111000 JEFF 1 -011111000 Once-cozy 1 -011111000 KEN 1 -011111000 Academician 1 -011111000 CAPT. 1 -011111000 Radka 1 -011111000 GUN-CONTROL 1 -011111000 TRAINED 1 -011111000 Keshav 1 -011111000 EHRLICH 1 -011111000 REQUIRED 1 -011111000 RAGS-TO-RICHES 1 -011111000 STOCK-QUOTE 1 -011111000 PIGGLY 1 -011111000 Wakao 1 -011111000 BRIEFING 1 -011111000 PITNEY 1 -011111000 Takehiro 1 -011111000 WORKPLACE 1 -011111000 Odeh 1 -011111000 BAMBERGER 1 -011111000 PARTLY 1 -011111000 Albina 1 -011111000 Pagona 1 -011111000 FINGERS 1 -011111000 Najeeb 1 -011111000 COPENHAGEN 1 -011111000 HEMEN 1 -011111000 State-church 1 -011111000 DENVER 1 -011111000 Chagrined 1 -011111000 3.3577 1 -011111000 2.7963 1 -011111000 2.6926 1 -011111000 SOBRIETY 1 -011111000 PACKERLAND 1 -011111000 MAPLE 1 -011111000 Teruka 1 -011111000 Forty-three-year-old 1 -011111000 BAXTER 1 -011111000 Eleanore 1 -011111000 FUNARO 1 -011111000 KEYLESS 1 -011111000 FREEZER 1 -011111000 Foreign-currency-related 1 -011111000 UNILATERAL 1 -011111000 SPIRITED 1 -011111000 Deploring 1 -011111000 ERSATZ 1 -011111000 Northernmost 1 -011111000 CHEMIE 1 -011111000 Hako 1 -011111000 Honduran-Contra 1 -011111000 BOLT 1 -011111000 Taurai 1 -011111000 Fashioning 1 -011111000 Technicolor-bright 1 -011111000 TIMELY 1 -011111000 EAGLE-EYED 1 -011111000 CREDIT-CARD 1 -011111000 LEONARD 1 -011111000 LUTZ 1 -011111000 SALARY 1 -011111000 SCUBA 1 -011111000 GLITCHES 1 -011111000 Ruslan 1 -011111000 MERE 1 -011111000 Perfected 1 -011111000 UPPER-CRUST 1 -011111000 HEIRLOOM 1 -011111000 Ikegami 1 -011111000 PLASTIC-WRAPPED 1 -011111000 BUENOS 1 -011111000 Flexing 1 -011111000 Yonina 1 -011111000 IRWIN 1 -011111000 FRANCIS 1 -011111000 BINDER 1 -011111000 STOCK-FOR-DEBT 1 -011111000 Index-options 1 -011111000 INVITATION 1 -011111000 Mitral-valve 1 -011111000 Exiting 1 -011111000 MATERIAL 1 -011111000 KLOECKNER 1 -011111000 Stodgy 1 -011111000 Prickly 1 -011111000 Feral 1 -011111000 Ottorino 1 -011111000 Malvin 1 -011111000 PRIVATELY 1 -011111000 RIVER 1 -011111000 Gyrating 1 -011111000 DOWN-UNDER 1 -011111000 717.3 1 -011111000 Parent-teacher 1 -011111000 Surasak 1 -011111000 Bangorn 1 -011111000 ELLIOTT 1 -011111000 SWAPPING 1 -011111000 Pairote 1 -011111000 MARGO 1 -011111000 Yadel 1 -011111000 Moustafa 1 -011111000 BORROWED 1 -011111000 TAP-AIR 1 -011111000 TRES 1 -011111000 Ideler 1 -011111000 Allergic 1 -011111000 MAN-MADE 1 -011111000 WILLIE 1 -011111000 Manabu 1 -011111000 EVENHANDED 1 -011111000 ACADEMIC 1 -011111000 STOCKING 1 -011111000 Vorarlberger 1 -011111000 BASKING 1 -011111000 Jackalyne 1 -011111000 Karl-Olof 1 -011111000 LYNN 1 -011111000 Mid-States 1 -011111000 UNSOLICITED 1 -011111000 Kallen 1 -011111000 Susil 1 -011111000 YELLOW-PAGE 1 -011111000 Grandson 1 -011111000 BABY-BOOM 1 -011111000 Determinedly 1 -011111000 Legislative-executive 1 -011111000 Triennial 1 -011111000 GOODBYE 1 -011111000 Waturu 1 -011111000 MOET 1 -011111000 Moshav 1 -011111000 MOONLIGHTING 1 -011111000 OCE-VAN 1 -011111000 THIN 1 -011111000 Spiros 1 -011111000 Sakei 1 -011111000 23,801 1 -011111000 Sunnyi 1 -011111000 60,228 1 -011111000 714.2 1 -011111000 2002.6 1 -011111000 Divulging 1 -011111000 RIPPLE 1 -011111000 DARK-HORSE 1 -011111000 REMAINDER 1 -011111000 PETERSVILLE 1 -011111000 Low-tax 1 -011111000 FOILING 1 -011111000 Jettisoning 1 -011111000 PROCUREMENT 1 -011111000 Etablissement 1 -011111000 BRYN 1 -011111000 SAFEGUARD 1 -011111000 OBSERVANT 1 -011111000 Upcountry 1 -011111000 ENTHUSIASM 1 -011111000 COZY 1 -011111000 Ileene 1 -011111000 Church-state 1 -011111000 Boom-city 1 -011111000 Granulocyte 1 -011111000 CLIFF 1 -011111000 SIDNEY 1 -011111000 Australian-Indonesian 1 -011111000 GREENMAN 1 -011111000 OKOBANK 1 -011111000 HAWKER 1 -011111000 INTERCONTINENTAL 1 -011111000 Mid-sized 1 -011111000 Ex-dividend 1 -011111000 Lacked 1 -011111000 State-farm 1 -011111000 NO-FRILLS 1 -011111000 TUBES 1 -011111000 Drab 1 -011111000 Previewing 1 -011111000 Nightshift 1 -011111000 Shyamal 1 -011111000 TRADE-BILL 1 -011111000 DOGFIGHTS 1 -011111000 Dshamil 1 -011111000 Deriving 1 -011111000 FARM-ACREAGE 1 -011111000 Disemboweling 1 -011111000 Stock-basket 1 -011111000 FOUNTAIN 1 -011111000 Cash-heavy 1 -011111000 CONTAMINATION 1 -011111000 Altama 1 -011111000 Dissipating 1 -011111000 Jay-Dee 1 -011111000 Bungo 1 -011111000 Sulaiman 1 -011111000 Yaphet 1 -011111000 CLEANLINESS 1 -011111000 339.0 1 -011111000 13,724.7 1 -011111000 1,983.0 1 -011111000 342.0 1 -011111000 510.9 1 -011111000 SHAUL 1 -011111000 3,138.0 1 -011111000 5,596.5 1 -011111000 Shoba 1 -011111000 135,979 1 -011111000 239,223 1 -011111000 Severa 1 -011111000 120,242 1 -011111000 13,966 1 -011111000 158,593 1 -011111000 Tapan 1 -011111000 Melanin-impregnated 1 -011111000 FLY 1 -011111000 Satjipto 1 -011111000 1,955.0 1 -011111000 2,255.0 1 -011111000 11,421.0 1 -011111000 2,163.9 1 -011111000 1,220.2 1 -011111000 3,714.6 1 -011111000 5,800.0 1 -011111000 4,028.5 1 -011111000 101,156 1 -011111000 83,091 1 -011111000 TRIVIA 1 -011111000 128,320 1 -011111000 404,545 1 -011111000 127,382 1 -011111000 277,163 1 -011111000 Purchasing-power-parity 1 -011111000 10,545 1 -011111000 139,854 1 -011111000 20,053 1 -011111000 10,475 1 -011111000 ALANN 1 -011111000 Sukio 1 -011111000 RUPERT 1 -011111000 2,617 1 -011111000 19,506 1 -011111000 FREEZING 1 -011111000 THROW-AWAY 1 -011111000 Maijardie 1 -011111000 Ould 1 -011111000 Tiado 1 -011111000 DARMAN 1 -011111000 Oil-busted 1 -011111000 HAITIANS 1 -011111000 World-class 1 -011111000 HIDDEN 1 -011111000 Government-issue 1 -011111000 2470.00 1 -011111000 LEGG 1 -011111000 Computer-directed 1 -011111000 Kierie 1 -011111000 Hoboken-Union 1 -011111000 82,539 1 -011111000 Faramand 1 -011111000 Reflexive 1 -011111000 1563.0 1 -011111000 32,352 1 -011111000 When-issued 2 -011111000 RONALD 2 -011111000 STATISTICAL 2 -011111000 GZA 2 -011111000 Lyonel 2 -011111000 HAIR 2 -011111000 BROADCASTERS 2 -011111000 MUNICIPALS 2 -011111000 POOCH 2 -011111000 CINEPLEX 2 -011111000 Denzel 2 -011111000 SEPARATE 2 -011111000 CO-OPS 2 -011111000 FEELING 2 -011111000 Anil 2 -011111000 GALILEO 2 -011111000 SMITHKLINE 3 -011111000 War-torn 3 -011111000 Averaging 3 -011111000 RALSTON 4 -011111000 CONSERVATIVES 4 -011111000 DANCE 4 -011111000 Dividend-related 5 -011111000 Invoking 7 -011111000 Displaying 7 -011111000 CARL 8 -011111000 Defining 8 -011111000 In 83979 -011111000 PHELPS 9 -01111100100 Anthropomorphic 1 -01111100100 Electioneering 1 -01111100100 Cicada 1 -01111100100 Corks 1 -01111100100 Synthesized 1 -01111100100 Inhalable 1 -01111100100 Coffee-table 1 -01111100100 Soluble 1 -01111100100 Rheumatoid 1 -01111100100 Stroke-causing 1 -01111100100 Macrophages 1 -01111100100 Preservationist 1 -01111100100 .what 1 -01111100100 Diamond-coated 1 -01111100100 More-advanced 1 -01111100100 Craggy 1 -01111100100 Awkward 1 -01111100100 Batting 1 -01111100100 Forums 1 -01111100100 Props 1 -01111100100 Unilaterally 1 -01111100100 Inflammatory 1 -01111100100 Commence 1 -01111100100 Choreographing 1 -01111100100 Driver-side 1 -01111100100 Renaming 1 -01111100100 Degradable 1 -01111100100 Suppressing 1 -01111100100 Generators 1 -01111100100 Oraflex-related 1 -01111100100 Sweetened 1 -01111100100 Cut-your-own 1 -01111100100 Sanitizing 1 -01111100100 Gauging 1 -01111100100 Endometrial 1 -01111100100 Sign-carrying 1 -01111100100 Hugging 1 -01111100100 Succinic 1 -01111100100 Thespians 1 -01111100100 Bulldozing 1 -01111100100 Stearic 1 -01111100100 Carrier-based 1 -01111100100 Rectum 1 -01111100100 Flanking 1 -01111100100 Counteracting 1 -01111100100 Unificationists 1 -01111100100 Dramatically 1 -01111100100 Hydrochloric 1 -01111100100 Sweet-talking 1 -01111100100 Vao 1 -01111100100 Rendering 1 -01111100100 M.F. 1 -01111100100 Elbowing 1 -01111100100 Falciparum 1 -01111100100 Commercializing 1 -01111100100 Complementing 1 -01111100100 Incorrectly 1 -01111100100 Acetic 1 -01111100100 COMMUNION 1 -01111100100 No-fault 1 -01111100100 Ultraviolet 1 -01111100100 Possessing 1 -01111100100 Powdering 1 -01111100100 Unwinding 1 -01111100100 Swishing 1 -01111100100 Bled 1 -01111100100 Acute 1 -01111100100 Bailouts 1 -01111100100 Rhetoricians 1 -01111100100 Unadulterated 1 -01111100100 Demented 1 -01111100100 Corroborating 2 -01111100100 Diagnosed 2 -01111100100 Accruing 2 -01111100100 Waiving 2 -01111100100 Prostate 2 -01111100100 Athough 2 -01111100100 Hospitalized 2 -01111100100 Liberating 2 -01111100100 Hampering 2 -01111100100 High-performance 2 -01111100100 Humorous 2 -01111100100 Rescinding 2 -01111100100 Buttressing 2 -01111100100 Implanted 2 -01111100100 Spilling 2 -01111100100 Reorganize 2 -01111100100 Intensifying 2 -01111100100 Entertainers 2 -01111100100 Erasing 2 -01111100100 Suspecting 2 -01111100100 ABANDONING 2 -01111100100 Retelling 2 -01111100100 Dissolving 2 -01111100100 Reconstructing 2 -01111100100 Upping 2 -01111100100 Quoth 2 -01111100100 LINKING 2 -01111100100 Grenade 2 -01111100100 VOLUNTARY 2 -01111100100 ABANDONED 3 -01111100100 Determine 3 -01111100100 Sparking 3 -01111100100 Discarding 3 -01111100100 Resuming 3 -01111100100 Hailing 3 -01111100100 Enabling 3 -01111100100 Unloading 3 -01111100100 Onto 3 -01111100100 Improve 3 -01111100100 Ensuring 3 -01111100100 Acknowledges 3 -01111100100 Redeeming 3 -01111100100 .for 3 -01111100100 Propelling 3 -01111100100 Assigning 3 -01111100100 Favoring 3 -01111100100 Exercising 3 -01111100100 Witnessing 3 -01111100100 Modernizing 3 -01111100100 Eschewing 3 -01111100100 Stoking 3 -01111100100 Condemning 3 -01111100100 Narrowing 3 -01111100100 Justifying 3 -01111100100 Relentless 3 -01111100100 Refunding 3 -01111100100 Confronting 4 -01111100100 Abandoning 4 -01111100100 Patrolling 4 -01111100100 Suspending 4 -01111100100 Concluded 4 -01111100100 Tapping 4 -01111100100 Projecting 4 -01111100100 Causing 4 -01111100100 Enacting 4 -01111100100 Surrounding 4 -01111100100 Decreasing 4 -01111100100 Disregarding 4 -01111100100 Designating 4 -01111100100 Exchanging 4 -01111100100 Valuing 4 -01111100100 Postponing 4 -01111100100 Highlighting 4 -01111100100 Favors 5 -01111100100 Countering 5 -01111100100 Rampant 5 -01111100100 Eyeing 5 -01111100100 Implementing 5 -01111100100 Terming 5 -01111100100 Aggravating 5 -01111100100 Capping 5 -01111100100 Bolstering 5 -01111100100 Denied 5 -01111100100 Chasing 5 -01111100100 Withdrawing 5 -01111100100 Discovering 5 -01111100100 Weakening 5 -01111100100 Posting 5 -01111100100 Accusing 5 -01111100100 Revising 5 -01111100100 Basing 5 -01111100100 Prompting 6 -01111100100 Interpreting 6 -01111100100 Outlining 6 -01111100100 Contradicting 6 -01111100100 Contemplating 6 -01111100100 Stabilizing 6 -01111100100 Reviving 6 -01111100100 Himself 6 -01111100100 Redefining 6 -01111100100 Awaiting 6 -01111100100 Exploiting 6 -01111100100 Characterizing 6 -01111100100 Underlining 6 -01111100100 Examining 6 -01111100100 Subtracting 6 -01111100100 Wielding 6 -01111100100 Attending 6 -01111100100 Attaining 6 -01111100100 Reiterating 6 -01111100100 Covering 7 -01111100100 Curbing 7 -01111100100 Retiring 7 -01111100100 Shedding 7 -01111100100 Delivering 7 -01111100100 Alleging 7 -01111100100 Earning 7 -01111100100 Accept 7 -01111100100 Privatizing 7 -01111100100 Estimating 7 -01111100100 Minus 8 -01111100100 Urging 8 -01111100100 Charging 8 -01111100100 Emphasizing 8 -01111100100 Alongside 8 -01111100100 Atop 8 -01111100100 Battling 8 -01111100100 Signaling 8 -01111100100 Marking 8 -01111100100 Assessing 8 -01111100100 Representing 9 -01111100100 Spurring 9 -01111100100 Adopting 9 -01111100100 Resolving 9 -01111100100 Balancing 10 -01111100100 Believing 10 -01111100100 Illustrating 10 -01111100100 Predicting 10 -01111100100 Waving 10 -01111100100 Dismissing 10 -01111100100 Defying 10 -01111100100 Pursuing 11 -01111100100 Underscoring 11 -01111100100 Announcing 11 -01111100100 Restricting 12 -01111100100 Expecting 12 -01111100100 Analyzing 13 -01111100100 Limiting 13 -01111100100 Passing 13 -01111100100 Installing 13 -01111100100 Forcing 13 -01111100100 Calculating 14 -01111100100 Obtaining 14 -01111100100 Confirming 14 -01111100100 Lowering 14 -01111100100 Studying 15 -01111100100 Reversing 15 -01111100100 Avoiding 16 -01111100100 Claiming 16 -01111100100 Achieving 16 -01111100100 Rejecting 17 -01111100100 Requiring 17 -01111100100 Ignoring 17 -01111100100 Removing 17 -01111100100 Recalling 18 -01111100100 Protecting 18 -01111100100 Accepting 18 -01111100100 Lifting 19 -01111100100 Offsetting 19 -01111100100 Applying 19 -01111100100 Placing 21 -01111100100 Reaching 21 -01111100100 Exact 21 -01111100100 Establishing 21 -01111100100 Owning 23 -01111100100 Combining 24 -01111100100 Choosing 24 -01111100100 Supporting 25 -01111100100 Riding 26 -01111100100 Eliminating 26 -01111100100 Maintaining 26 -01111100100 Sensing 26 -01111100100 Comparing 28 -01111100100 Compounding 28 -01111100100 Defending 29 -01111100100 Fueling 31 -01111100100 Acknowledging 31 -01111100100 Providing 31 -01111100100 Underlying 33 -01111100100 Creating 35 -01111100100 Discussing 35 -01111100100 Beneath 36 -01111100100 Wearing 39 -01111100100 Reducing 40 -01111100100 Ending 41 -01111100100 Anticipating 42 -01111100100 Extending 43 -01111100100 Addressing 47 -01111100100 Offering 48 -01111100100 Lacking 50 -01111100100 Explaining 50 -01111100100 Fearing 55 -01111100100 Notwithstanding 55 -01111100100 Concerning 57 -01111100100 Absent 60 -01111100100 Watching 62 -01111100100 Facing 62 -01111100100 Pending 78 -01111100100 Called 79 -01111100100 Raising 81 -01111100100 Considering 98 -01111100100 Barring 101 -01111100100 Upon 159 -01111100100 Including 165 -01111100100 Reflecting 167 -01111100100 Assuming 190 -01111100100 Behind 195 -01111100100 Taking 210 -01111100100 Citing 218 -01111100100 Throughout 219 -01111100100 Amid 259 -01111100100 Against 285 -01111100100 Beyond 319 -01111100100 Excluding 385 -01111100100 Using 438 -01111100100 Given 722 -01111100100 Within 746 -01111100100 Following 758 -01111100100 Without 1377 -01111100100 During 2495 -01111100100 After 7762 -01111100100 With 6817 -01111100100 Under 7580 -01111100100 Despite 3947 -01111100101 Tansy 1 -01111100101 Bracing 1 -01111100101 Allying 1 -01111100101 Focused 1 -01111100101 Imagining 1 -01111100101 Screenings 1 -01111100101 Europeennes 1 -01111100101 Overshadowing 1 -01111100101 Dedicate 1 -01111100101 Priding 1 -01111100101 Uncompensated 1 -01111100101 Divesting 1 -01111100101 Directing 1 -01111100101 Committing 1 -01111100101 Commits 1 -01111100101 them-for 1 -01111100101 Extricating 1 -01111100101 Outrunning 1 -01111100101 Non-actors 1 -01111100101 BHA 1 -01111100101 Bridging 2 -01111100101 Reminds 2 -01111100101 Install 2 -01111100101 c-Includes 2 -01111100101 Amidst 2 -01111100101 Likening 2 -01111100101 Abdala 2 -01111100101 Sacking 2 -01111100101 Spicing 2 -01111100101 Remind 2 -01111100101 Arresting 3 -01111100101 Utilizing 3 -01111100101 Buoying 3 -01111100101 Renting 3 -01111100101 Educate 3 -01111100101 Prepaying 3 -01111100101 Triggering 4 -01111100101 Spanning 4 -01111100101 Overhanging 4 -01111100101 Substantially 4 -01111100101 Embracing 4 -01111100101 Evaluating 4 -01111100101 Accompanying 14 -01111100101 Revolucionario 16 -01111100101 Describing 38 -01111100101 Above 140 -01111100101 For 19851 -01111100101 Counting 144 -01111100110 Recessionary 1 -01111100110 voluntary-contribution 1 -01111100110 Judiciously 1 -01111100110 ADJOURNED 1 -01111100110 Suburb 1 -01111100110 diagnostically 1 -01111100110 Nixing 1 -01111100110 Pack-style 1 -01111100110 Communiques 1 -01111100110 Manually 1 -01111100110 Strangling 1 -01111100110 DENIES 1 -01111100110 Botanically 1 -01111100110 Argricetus 1 -01111100110 WHIPSAW 1 -01111100110 Multiyear 1 -01111100110 Toxicity 1 -01111100110 Liveried 1 -01111100110 Fool-proof 1 -01111100110 HIGH-TECH-EXECUTIVE 1 -01111100110 CONTINUOUS 1 -01111100110 Raucous 1 -01111100110 Wraparound 1 -01111100110 Personal-care 1 -01111100110 Gleefully 1 -01111100110 Quarter-end 1 -01111100110 Clot 1 -01111100110 Avocations 1 -01111100110 Feverish 1 -01111100110 Cheerfully 1 -01111100110 Rank-and-filers 1 -01111100110 Free-form 1 -01111100110 Twelve-meter 1 -01111100110 Post-Teledyne 1 -01111100110 COUCH 1 -01111100110 Nutri-Systems 1 -01111100110 Adamantly 1 -01111100110 Claustrophobic 1 -01111100110 Stop-and-go 1 -01111100110 Crop-dusters 1 -01111100110 Tax-motivated 1 -01111100110 Ignited 1 -01111100110 lacquered 1 -01111100110 Orchestrated 1 -01111100110 Wide-scale 1 -01111100110 Nonozone 1 -01111100110 Facilitating 1 -01111100110 First-run 1 -01111100110 Bilzerian-Hammermill 1 -01111100110 Preassembling 1 -01111100110 Writeoffs 1 -01111100110 ghoul 1 -01111100110 ELECTION-YEAR 1 -01111100110 Inhouse 1 -01111100110 re-grand 1 -01111100110 STARTED 1 -01111100110 ENTERING 1 -01111100110 half-an-hour 1 -01111100110 Skillfully 1 -01111100110 Transportation-related 1 -01111100110 Sailboat 1 -01111100110 .in 1 -01111100110 Injunctions 1 -01111100110 Index-related 1 -01111100110 Subcompacts 1 -01111100110 dog-days 1 -01111100110 Preretirement 1 -01111100110 General-products 1 -01111100110 Kroczek 1 -01111100110 Follow-through 1 -01111100110 Hemophiliacs 1 -01111100110 Seven-month 1 -01111100110 Clinicians 1 -01111100110 Spillers 1 -01111100110 READERS 1 -01111100110 Tromatically 1 -01111100110 Planks 1 -01111100110 DESK-TOP 1 -01111100110 Varietal 1 -01111100110 UNSANITARY 1 -01111100110 Poetically 1 -01111100110 OCO 2 -01111100110 Dwarfing 2 -01111100110 Exploring 2 -01111100110 CLUB 2 -01111100110 Steadily 2 -01111100110 Commit 2 -01111100110 Minions 2 -01111100110 Contests 2 -01111100110 Clandestine 2 -01111100110 Gilding 2 -01111100110 Boldly 2 -01111100110 Demanding 2 -01111100110 Dismal 2 -01111100110 Reconsider 2 -01111100110 Wildly 3 -01111100110 Anemic 3 -01111100110 Sectors 3 -01111100110 Promptly 3 -01111100110 NOVEMBER 3 -01111100110 Futures-related 4 -01111100110 Detecting 4 -01111100110 Aggressively 4 -01111100110 Weathering 4 -01111100110 Pleading 4 -01111100110 Implicitly 4 -01111100110 CONSIDER 4 -01111100110 SEPTEMBER 4 -01111100110 REMEMBER 5 -01111100110 Cash-basis 5 -01111100110 Broadly 6 -01111100110 Martial 8 -01111100110 SINCE 9 -01111100110 Remembering 11 -01111100110 Merely 14 -01111100110 ARE 63 -01111100110 Fiscal 128 -01111100110 Between 434 -01111100110 Until 1525 -01111100110 Before 2048 -01111100110 From 2123 -01111100110 By 5717 -01111100110 Since 4768 -011111001110 Future-queen 1 -011111001110 Black-and-Blue 1 -011111001110 Broad-brush 1 -011111001110 Loosened 1 -011111001110 --WSJ 1 -011111001110 Merger-speculating 1 -011111001110 Tenuous 1 -011111001110 Inaugurated 1 -011111001110 Skylake 1 -011111001110 Plascencia 1 -011111001110 Incompetence 1 -011111001110 Premiering 1 -011111001110 1252 1 -011111001110 electronic/robotics 1 -011111001110 Glistening 1 -011111001110 Salt-front 1 -011111001110 Pastoral 1 -011111001110 Profit-hungry 1 -011111001110 Crooner-actor 1 -011111001110 Ragusa 1 -011111001110 Mailbox 1 -011111001110 Frets 2 -011111001110 Enact 2 -011111001110 Overruling 2 -011111001110 Scrapping 2 -011111001110 Reconciling 2 -011111001110 Shunning 2 -011111001110 Dispersing 2 -011111001110 Lived 2 -011111001110 CHOCK 2 -011111001110 Hurting 2 -011111001110 Experiencing 2 -011111001110 Dated 3 -011111001110 Accelerating 3 -011111001110 Perish 3 -011111001110 Lengthening 3 -011111001110 Restrict 3 -011111001110 NW. 3 -011111001110 Undermining 4 -011111001110 Debating 4 -011111001110 Stormy 5 -011111001110 Unveiling 5 -011111001110 Meltdown 5 -011111001110 Mirroring 7 -011111001110 Skipping 7 -011111001110 Sipping 7 -011111001110 TGI 12 -011111001110 Complicating 34 -011111001110 Through 792 -011111001110 Of 3000 -011111001110 On 9183 -011111001111 Renegotiating 1 -011111001111 Spearheading 1 -011111001111 Hoisting 1 -011111001111 Submerging 1 -011111001111 Recapping 1 -011111001111 Rejoining 1 -011111001111 Testimonials 1 -011111001111 Powering 1 -011111001111 Clematis-wise 1 -011111001111 Clouding 1 -011111001111 Skewing 1 -011111001111 Revealing 1 -011111001111 Curtail 1 -011111001111 Climaxing 1 -011111001111 Adapting 1 -011111001111 Allemande 1 -011111001111 Satisfying 1 -011111001111 Recalculating 1 -011111001111 Sealing 1 -011111001111 Pedigreed 1 -011111001111 Disproving 1 -011111001111 Monday-through-Saturday 1 -011111001111 Pintails 1 -011111001111 Inhaling 1 -011111001111 17,841 1 -011111001111 Mothballing 1 -011111001111 Complimenting 1 -011111001111 Persisting 1 -011111001111 Emitting 1 -011111001111 Overlaying 1 -011111001111 Obscuring 1 -011111001111 Mistaking 1 -011111001111 Disbanding 1 -011111001111 Approving 1 -011111001111 Paving 1 -011111001111 Exorcising 1 -011111001111 Nullifying 1 -011111001111 Retrieving 1 -011111001111 Marshaling 1 -011111001111 Masaichi 1 -011111001111 Outwitting 1 -011111001111 Reeking 1 -011111001111 703.9 1 -011111001111 718.7 1 -011111001111 Insinuate 1 -011111001111 Overhauling 1 -011111001111 Exaggerating 1 -011111001111 Contravening 1 -011111001111 Irregular 1 -011111001111 719.1 1 -011111001111 3.4809 1 -011111001111 Disseminating 1 -011111001111 Midafternoon 1 -011111001111 Remarketing 1 -011111001111 Reassuring 1 -011111001111 Widening 1 -011111001111 Disdaining 1 -011111001111 Condensing 1 -011111001111 Breaching 1 -011111001111 Adjoining 1 -011111001111 Outmaneuvering 1 -011111001111 Assimilating 1 -011111001111 Four-megabyte 1 -011111001111 Bending 1 -011111001111 Doubting 1 -011111001111 Dragging 1 -011111001111 Yerba 1 -011111001111 Bypassing 1 -011111001111 Befitting 1 -011111001111 Amortizing 1 -011111001111 LIZ 1 -011111001111 Steamrolling 1 -011111001111 .To 1 -011111001111 Navigating 1 -011111001111 Conveying 1 -011111001111 Groomed 1 -011111001111 Flagging 1 -011111001111 Compiling 1 -011111001111 Once-thriving 1 -011111001111 Inserting 1 -011111001111 Swiftly 1 -011111001111 Amending 1 -011111001111 Commanding 1 -011111001111 POLICING 1 -011111001111 Repaying 1 -011111001111 Comprehend 1 -011111001111 Rekindling 1 -011111001111 Trusting 1 -011111001111 Rejigger 1 -011111001111 Emphasize 1 -011111001111 Watering 1 -011111001111 Vaccine-maker 1 -011111001111 Once-plodding 1 -011111001111 Lob 1 -011111001111 quoth 1 -011111001111 Bagging 1 -011111001111 Vocally 1 -011111001111 Meshing 1 -011111001111 Physicist. 1 -011111001111 Actuary. 1 -011111001111 Enjoying 1 -011111001111 Rename 1 -011111001111 Stipulations 1 -011111001111 Belabor 1 -011111001111 Outfits 1 -011111001111 Tallying 1 -011111001111 Shucking 1 -011111001111 Gracing 1 -011111001111 Championing 1 -011111001111 reassesses 1 -011111001111 Quicken 1 -011111001111 Mowing 1 -011111001111 Paralleling 1 -011111001111 Second-place 1 -011111001111 Supplying 1 -011111001111 Enjoining 1 -011111001111 Belying 1 -011111001111 Aver 1 -011111001111 CASH-STRAPPED 1 -011111001111 Nurture 1 -011111001111 Magnifying 1 -011111001111 Maintain 1 -011111001111 Referenda 1 -011111001111 Braised 1 -011111001111 Debugging 1 -011111001111 SCRATCH 1 -011111001111 Attributing 1 -011111001111 Transporting 1 -011111001111 Tool-resetting 1 -011111001111 Disengaging 1 -011111001111 Tempering 1 -011111001111 Employ 1 -011111001111 Socking 1 -011111001111 Scuttling 1 -011111001111 Repeaters 1 -011111001111 Deriding 1 -011111001111 Publicizing 1 -011111001111 SKANDINAVISKA 1 -011111001111 Methinks 1 -011111001111 Hyping 1 -011111001111 Demolishing 1 -011111001111 Symbolizing 1 -011111001111 .like 1 -011111001111 Equating 1 -011111001111 Undoing 1 -011111001111 Reintroducing 1 -011111001111 Belligerents 2 -011111001111 Angering 2 -011111001111 Endorsing 2 -011111001111 Restraining 2 -011111001111 Awarding 2 -011111001111 Eighteen-year-old 2 -011111001111 Forgoing 2 -011111001111 Suggesting 2 -011111001111 Anti-aging 2 -011111001111 Deploying 2 -011111001111 Ridding 2 -011111001111 Overturning 2 -011111001111 Alienating 2 -011111001111 Householders 2 -011111001111 Yanking 2 -011111001111 Braving 2 -011111001111 Subtract 2 -011111001111 Foreshadowing 2 -011111001111 Reputedly 2 -011111001111 Computerizing 2 -011111001111 Hosting 2 -011111001111 Quipped 2 -011111001111 Disputing 2 -011111001111 harrumphed 2 -011111001111 Pinpointing 2 -011111001111 Invade 2 -011111001111 Escaping 2 -011111001111 Kinju 2 -011111001111 LICKING 2 -011111001111 Devalue 2 -011111001111 Perfecting 2 -011111001111 Decrying 2 -011111001111 Elevating 2 -011111001111 Composing 2 -011111001111 Depressing 2 -011111001111 Advising 2 -011111001111 Summarizing 2 -011111001111 Abusing 2 -011111001111 Scrubbing 2 -011111001111 Alhough 2 -011111001111 Embattled 2 -011111001111 Reaping 2 -011111001111 Conviction 2 -011111001111 Pondering 2 -011111001111 Educating 3 -011111001111 Cracking 3 -011111001111 Forgetting 3 -011111001111 Bando 3 -011111001111 Recognize 3 -011111001111 Typifying 3 -011111001111 Integrating 3 -011111001111 Pounding 3 -011111001111 Touting 3 -011111001111 Strengthening 3 -011111001111 Nearing 3 -011111001111 Recounting 4 -011111001111 Omitting 4 -011111001111 Clarifying 4 -011111001111 Noticing 4 -011111001111 Restarting 4 -011111001111 Seize 4 -011111001111 Praising 4 -011111001111 Dominating 4 -011111001111 Reinforcing 5 -011111001111 Stating 5 -011111001111 Insisting 5 -011111001111 Guaranteeing 5 -011111001111 Repealing 6 -011111001111 Multiplying 6 -011111001111 Enforcing 7 -011111001111 Surveying 7 -011111001111 Indicating 8 -011111001111 Hitting 8 -011111001111 Bucking 9 -011111001111 Completing 10 -011111001111 Contrast 11 -011111001111 Declaring 11 -011111001111 Stressing 12 -011111001111 Asserting 18 -011111001111 Realizing 19 -011111001111 Conceding 19 -011111001111 Heading 33 -011111001111 Recognizing 40 -011111001111 Toward 86 -011111001111 Across 133 -011111001111 Around 158 -011111001111 Noting 254 -011111001111 At 13855 -011111001111 Over 1423 -01111101000 knee-jerked 1 -01111101000 Dispossessing 1 -01111101000 Manana 1 -01111101000 Eradicate 1 -01111101000 Crabgrass 1 -01111101000 Pheumo 1 -01111101000 Finessing 1 -01111101000 Scaring 1 -01111101000 Prestigious 1 -01111101000 Imitate 1 -01111101000 Motivate 1 -01111101000 Politicizing 1 -01111101000 Roiling 1 -01111101000 Chucking 1 -01111101000 Takeaway 1 -01111101000 Italicize 1 -01111101000 Grievous 1 -01111101000 regularizing 1 -01111101000 Razz 1 -01111101000 Scuffy 1 -01111101000 Automating 1 -01111101000 Tax-Hike 1 -01111101000 Home-porting 1 -01111101000 Funniest 1 -01111101000 execessive 1 -01111101000 Shadowing 1 -01111101000 Clocking 1 -01111101000 Jawbone 1 -01111101000 Blanch 1 -01111101000 Explore 1 -01111101000 Wistful 1 -01111101000 dao 1 -01111101000 Hairy 1 -01111101000 Uprooting 1 -01111101000 Outflanking 1 -01111101000 WAKE 1 -01111101000 disrespecting 1 -01111101000 Reelect 1 -01111101000 Nimble 1 -01111101000 Frisk 1 -01111101000 Untie 1 -01111101000 giant-fruited 1 -01111101000 Derail 1 -01111101000 Organize 1 -01111101000 Stalking 1 -01111101000 Thar 1 -01111101000 .but 1 -01111101000 Wili 1 -01111101000 Noticiario 1 -01111101000 reexcite 1 -01111101000 underutilizing 1 -01111101000 overfished 1 -01111101000 Framing 1 -01111101000 Clogging 1 -01111101000 unhitching 1 -01111101000 Magnify 1 -01111101000 Frosty 1 -01111101000 Leveraging 1 -01111101000 Festive 1 -01111101000 Painfully 1 -01111101000 overinterpreting 1 -01111101000 Objets 1 -01111101000 milk-crate 1 -01111101000 Drop-Out 1 -01111101000 chacun 1 -01111101000 Acutely 1 -01111101000 Pledging 1 -01111101000 Destination 1 -01111101000 Misreading 1 -01111101000 Confront 1 -01111101000 Madman 1 -01111101000 Conserve 1 -01111101000 Deregulate 1 -01111101000 Tis 1 -01111101000 a/the 1 -01111101000 Supposing 1 -01111101000 Torturing 1 -01111101000 newage 1 -01111101000 adventure-based 1 -01111101000 N.W.R. 1 -01111101000 Avenge 1 -01111101000 democratizes 1 -01111101000 Occupying 1 -01111101000 Re-inventing 1 -01111101000 Skeptically 1 -01111101000 Higher-ups 1 -01111101000 coz 1 -01111101000 Conquering 1 -01111101000 DOHC 1 -01111101000 Clocker 1 -01111101000 Chemturf 1 -01111101000 Shackle 1 -01111101000 Unflinchingly 1 -01111101000 Critiquing 1 -01111101000 Hommage 1 -01111101000 Omniscient 1 -01111101000 Wrangle 1 -01111101000 Right-Sided 1 -01111101000 Gautamah 1 -01111101000 Xochlit 1 -01111101000 Annihilate 1 -01111101000 Evading 1 -01111101000 Tillie 1 -01111101000 Defund 1 -01111101000 Antagonizing 1 -01111101000 TURF 1 -01111101000 Hiroji 1 -01111101000 bulk-mailed 1 -01111101000 Boxcar 1 -01111101000 Smash 1 -01111101000 Stiffing 1 -01111101000 Eclectisme 1 -01111101000 Arbeit 1 -01111101000 Bienvenido 1 -01111101000 -legislation 1 -01111101000 COMPULSIVE 1 -01111101000 Geduldige 1 -01111101000 Notifying 1 -01111101000 8-Ball 1 -01111101000 deforming 1 -01111101000 Middle-of-the-night 1 -01111101000 Impeding 1 -01111101000 gild 2 -01111101000 Inventing 2 -01111101000 Suor 2 -01111101000 Upsetting 2 -01111101000 Confess 2 -01111101000 Subjecting 2 -01111101000 .are 2 -01111101000 Curtailing 2 -01111101000 Zorba 2 -01111101000 fend-for-yourself 2 -01111101000 Depreciating 2 -01111101000 Paay 2 -01111101000 Riskier 2 -01111101000 Plump 2 -01111101000 Noisy 2 -01111101000 Woza 2 -01111101000 Souci 2 -01111101000 Pleasantly 2 -01111101000 misinterprets 2 -01111101000 Donating 2 -01111101000 Encountering 2 -01111101000 Soak 2 -01111101000 Intentionally 2 -01111101000 Minimizing 2 -01111101000 Attach 2 -01111101000 Neutron 3 -01111101000 Voici 3 -01111101000 Solve 3 -01111101000 Emotionally 3 -01111101000 Nothwithstanding 3 -01111101000 Disclosing 3 -01111101000 Halving 3 -01111101000 Observe 4 -01111101000 Positively 4 -01111101000 Behold 4 -01111101000 Contending 4 -01111101000 Oftentimes 4 -01111101000 Lacombe 5 -01111101000 Visibly 5 -01111101000 Terminating 5 -01111101000 Reforming 5 -01111101000 Privatize 5 -01111101000 Took 5 -01111101000 Jingle 5 -01111101000 Inherit 5 -01111101000 Solving 6 -01111101000 Beside 6 -01111101000 Feeding 6 -01111101000 Towards 6 -01111101000 Everytime 7 -01111101000 Rightly 7 -01111101000 Permitting 8 -01111101000 Celebrating 8 -01111101000 Separating 8 -01111101000 Denying 9 -01111101000 Primetime 9 -01111101000 Blaming 12 -01111101000 Showing 18 -01111101000 Assume 19 -01111101000 Lest 20 -01111101000 Introducing 20 -01111101000 Anytime 28 -01111101000 Wherever 46 -01111101000 Saying 48 -01111101000 Seeing 51 -01111101000 Suppose 84 -01111101000 Putting 95 -01111101000 Thank 99 -01111101000 Meet 101 -01111101000 Ask 133 -01111101000 Whenever 134 -01111101000 Probably 141 -01111101000 Being 197 -01111101000 Getting 207 -01111101000 Had 258 -01111101000 Either 260 -01111101000 Did 276 -01111101000 Would 346 -01111101000 Take 501 -01111101000 Should 509 -01111101000 Unless 543 -01111101000 Whether 774 -01111101000 Maybe 897 -01111101000 Once 1471 -01111101000 If 18512 -01111101000 When 10110 -01111101001 Spate 1 -01111101001 Dishing 1 -01111101001 Proofs 1 -01111101001 disincorporation 1 -01111101001 Lenient 1 -01111101001 Straightening 1 -01111101001 Decimation 1 -01111101001 Excesses 1 -01111101001 -sales 1 -01111101001 Toting 1 -01111101001 Stepped 1 -01111101001 Fleshing 1 -01111101001 Adaptations 1 -01111101001 Rime 1 -01111101001 Sparse 1 -01111101001 Grafted 1 -01111101001 Lulled 1 -01111101001 Lined 1 -01111101001 Breezing 1 -01111101001 Toleration 1 -01111101001 Cosmonauts 1 -01111101001 Barreling 1 -01111101001 Rumbling 1 -01111101001 bowlful 1 -01111101001 Parroting 1 -01111101001 Ljungvall 1 -01111101001 Extramural 1 -01111101001 Toughening 1 -01111101001 Peeping 1 -01111101001 Squaring 1 -01111101001 Expiration 1 -01111101001 Blown 1 -01111101001 Rollovers 1 -01111101001 Leakage 1 -01111101001 Rites 1 -01111101001 Definitions 1 -01111101001 Agnellus 1 -01111101001 Mocking 1 -01111101001 Meanness 1 -01111101001 Cashbacks 1 -01111101001 crossroad 1 -01111101001 multi-tens 1 -01111101001 Sluicing 1 -01111101001 Chairing 1 -01111101001 Swings 1 -01111101001 Flung 1 -01111101001 Converted 1 -01111101001 Peeling 1 -01111101001 Bumping 1 -01111101001 Poring 1 -01111101001 Dispose 1 -01111101001 Crowding 1 -01111101001 Unreliability 1 -01111101001 Abdication 1 -01111101001 Boasting 1 -01111101001 Graphs 1 -01111101001 Wrung 1 -01111101001 Welcomed 1 -01111101001 neocolonies 1 -01111101001 emoluments 1 -01111101001 Pawing 1 -01111101001 Sucking 1 -01111101001 Variability 1 -01111101001 Tidied 1 -01111101001 Jutting 1 -01111101001 Averting 1 -01111101001 Descriptions 1 -01111101001 Irrespective 1 -01111101001 Sopping 1 -01111101001 hairstylists 1 -01111101001 Harking 1 -01111101001 Realms 1 -01111101001 Denigrations 1 -01111101001 annulization 1 -01111101001 Staking 1 -01111101001 Propel 1 -01111101001 Spruced 1 -01111101001 Crawling 1 -01111101001 Bootleg 1 -01111101001 Washington-City 1 -01111101001 Cauterization 1 -01111101001 Kingdoms 1 -01111101001 Queller 1 -01111101001 Earth-slides 1 -01111101001 Suited 1 -01111101001 Corruptions 1 -01111101001 Androgynous 1 -01111101001 Reinstating 1 -01111101001 Soaking 1 -01111101001 Instrumentalities 1 -01111101001 Subtly 1 -01111101001 Fluttering 1 -01111101001 Legislate 1 -01111101001 Earler 1 -01111101001 sweatpants/sweatshirts 1 -01111101001 Hopping 1 -01111101001 Rectifying 1 -01111101001 Redressing 1 -01111101001 Dentrifice 1 -01111101001 Loads 1 -01111101001 Kicked 1 -01111101001 Tiring 1 -01111101001 Browse 1 -01111101001 Furthest 1 -01111101001 Murmur 1 -01111101001 Lullaby 1 -01111101001 Muddling 1 -01111101001 Nosing 1 -01111101001 pastiches 1 -01111101001 Partway 1 -01111101001 Hellcats 1 -01111101001 Awhile 1 -01111101001 Kickover 1 -01111101001 Knifing 1 -01111101001 Softspoken 1 -01111101001 Scrunching 1 -01111101001 Singling 1 -01111101001 Legacies 1 -01111101001 Factored 1 -01111101001 bucket-loads 1 -01111101001 Strung 1 -01111101001 Restitution 1 -01111101001 Zeroing 1 -01111101001 Monroe-Beyond 1 -01111101001 Accentuating 1 -01111101001 Hacking 1 -01111101001 Robes 1 -01111101001 Gunned 1 -01111101001 Dolled 1 -01111101001 Apotheosis 1 -01111101001 Rooftop 1 -01111101001 Icons 1 -01111101001 Bounces 1 -01111101001 Zipping 1 -01111101001 Coyness 1 -01111101001 Abundance 1 -01111101001 Collectivization 1 -01111101001 Bemoaning 1 -01111101001 Spoke 1 -01111101001 Pitted 1 -01111101001 Hyped 1 -01111101001 Chiracization 1 -01111101001 Rollback 1 -01111101001 robotization 1 -01111101001 Bushels 1 -01111101001 Popping 1 -01111101001 Lesion 1 -01111101001 Jammed 1 -01111101001 metal-alloys 1 -01111101001 Five-feet 1 -01111101001 Martyr 1 -01111101001 Validity 1 -01111101001 Painstakingly 1 -01111101001 Half-way 1 -01111101001 Waterseller 1 -01111101001 Camped 1 -01111101001 Self-parody 1 -01111101001 Fished 1 -01111101001 Slogging 1 -01111101001 Recollections 1 -01111101001 Paths 1 -01111101001 Bundling 1 -01111101001 Cozying 1 -01111101001 Fending 1 -01111101001 Pivot 1 -01111101001 Prevalence 1 -01111101001 Conjuring 1 -01111101001 Tearing 1 -01111101001 Emblems 1 -01111101001 Ex-voto 1 -01111101001 Pulled 1 -01111101001 Well-received 2 -01111101001 Insult 2 -01111101001 Dreaming 2 -01111101001 Determinations 2 -01111101001 Liven 2 -01111101001 Tighten 2 -01111101001 Patronage 2 -01111101001 Shortening 2 -01111101001 Sums 2 -01111101001 Apprehensions 2 -01111101001 Safeguarding 2 -01111101001 Restrain 2 -01111101001 Indicates 2 -01111101001 Disadvantages 2 -01111101001 Baser 2 -01111101001 Lilies 2 -01111101001 Fostering 2 -01111101001 Midday 2 -01111101001 Weighed 2 -01111101001 Stroll 2 -01111101001 Slant 2 -01111101001 FULL-TIME 2 -01111101001 Whipped 2 -01111101001 Seigniorage 2 -01111101001 Sugar-Free 2 -01111101001 Belief 2 -01111101001 Anglers 2 -01111101001 Venturing 2 -01111101001 Pinched 2 -01111101001 Combing 2 -01111101001 Rallying 2 -01111101001 Outlived 2 -01111101001 Cautioning 2 -01111101001 Sounded 2 -01111101001 Entirely 2 -01111101001 Breadth 2 -01111101001 Stumble 2 -01111101001 Disciplined 2 -01111101001 Propping 2 -01111101001 Worrisome 2 -01111101001 Self-defense 2 -01111101001 Repurchased 2 -01111101001 Smoothly 2 -01111101001 Wariness 2 -01111101001 Reflect 2 -01111101001 Rattling 2 -01111101001 Waging 2 -01111101001 Differentiate 2 -01111101001 Thumbing 2 -01111101001 Rotating 2 -01111101001 Coupling 2 -01111101001 Stunted 2 -01111101001 RESORT 2 -01111101001 Threw 2 -01111101001 Bobbing 2 -01111101001 Glut 2 -01111101001 Showmanship 2 -01111101001 Routing 2 -01111101001 Motorcycles 2 -01111101001 Dominance 2 -01111101001 Enveloped 2 -01111101001 Ferreting 2 -01111101001 Rub 2 -01111101001 Ticking 2 -01111101001 Twiddling 2 -01111101001 Holed 2 -01111101001 Pearls 2 -01111101001 Phasing 2 -01111101001 Bands 2 -01111101001 Ripping 2 -01111101001 Paychecks 2 -01111101001 Undercut 2 -01111101001 Acidification 2 -01111101001 Barbarians 2 -01111101001 SO-CALLED 2 -01111101001 Clustered 2 -01111101001 Fountains 2 -01111101001 Biting 2 -01111101001 Understands 2 -01111101001 Magnified 2 -01111101001 Depletion 2 -01111101001 Rumpole 2 -01111101001 Crafting 2 -01111101001 Shovel 2 -01111101001 Blighted 2 -01111101001 Invalid 2 -01111101001 Winding 2 -01111101001 Poking 2 -01111101001 Plot 2 -01111101001 Speeding 2 -01111101001 Striding 2 -01111101001 Racking 2 -01111101001 Instances 2 -01111101001 Superiors 2 -01111101001 Shouts 2 -01111101001 Oswalt 2 -01111101001 Ayre 2 -01111101001 Humming 2 -01111101001 Panning 3 -01111101001 Constantly 3 -01111101001 Fad 3 -01111101001 Freeing 3 -01111101001 Tried 3 -01111101001 Deserves 3 -01111101001 Principled 3 -01111101001 Deductibility 3 -01111101001 Assuring 3 -01111101001 Injured 3 -01111101001 Shaping 3 -01111101001 Mastering 3 -01111101001 Resignations 3 -01111101001 Toddler 3 -01111101001 Scared 3 -01111101001 Examine 3 -01111101001 Relocating 3 -01111101001 Shouting 3 -01111101001 Mandating 3 -01111101001 Overlooking 3 -01111101001 Apply 3 -01111101001 Blowing 3 -01111101001 Slash 3 -01111101001 Drifting 3 -01111101001 Submit 3 -01111101001 Dried 3 -01111101001 Disparate 3 -01111101001 Wipe 3 -01111101001 Weaving 3 -01111101001 Rethink 3 -01111101001 Skirts 3 -01111101001 Sneak 3 -01111101001 Tap 3 -01111101001 Punk 3 -01111101001 Consolidating 3 -01111101001 Taming 3 -01111101001 Servants 3 -01111101001 Fastest 3 -01111101001 Sweaty 3 -01111101001 Gearing 3 -01111101001 Lesbians 3 -01111101001 Tossing 3 -01111101001 Investigate 3 -01111101001 Examined 3 -01111101001 Eclectic 3 -01111101001 Branching 3 -01111101001 Tracked 3 -01111101001 Racks 3 -01111101001 Brewed 3 -01111101001 Raspberry 3 -01111101001 Missed 3 -01111101001 Tribes 3 -01111101001 Nordiska 3 -01111101001 Mentioned 3 -01111101001 Lighten 3 -01111101001 Feasibility 3 -01111101001 AFFINITY 3 -01111101001 Stockpiling 3 -01111101001 Mothershead 3 -01111101001 Difficulty 3 -01111101001 Thrust 3 -01111101001 Realize 3 -01111101001 Singled 3 -01111101001 Vulnerable 3 -01111101001 Bailing 3 -01111101001 Pressing 3 -01111101001 Clusters 3 -01111101001 Resurrected 3 -01111101001 streamlines 3 -01111101001 Violating 3 -01111101001 Exceeding 3 -01111101001 Lobb 3 -01111101001 Waking 3 -01111101001 Carving 3 -01111101001 Flipping 3 -01111101001 Celebrate 3 -01111101001 Wiping 3 -01111101001 Affecting 3 -01111101001 Destroying 4 -01111101001 Bury 4 -01111101001 Announce 4 -01111101001 Boarding 4 -01111101001 Tying 4 -01111101001 Cartoonist 4 -01111101001 Earn 4 -01111101001 Protected 4 -01111101001 Chest 4 -01111101001 Stressed 4 -01111101001 Encourage 4 -01111101001 Destroy 4 -01111101001 Wrapped 4 -01111101001 Policing 4 -01111101001 Presuming 4 -01111101001 Kicking 4 -01111101001 Stripping 4 -01111101001 Demonstrating 4 -01111101001 Appealing 4 -01111101001 Slipping 4 -01111101001 Articulate 4 -01111101001 Dismantling 4 -01111101001 Darn 4 -01111101001 Tread 4 -01111101001 Swept 4 -01111101001 Adopt 4 -01111101001 Restore 4 -01111101001 Instrumental 4 -01111101001 Reinstatement 4 -01111101001 Arrest 4 -01111101001 Cancel 4 -01111101001 Chilled 4 -01111101001 Decked 4 -01111101001 Encounters 4 -01111101001 Admit 4 -01111101001 Rewriting 4 -01111101001 Renters 4 -01111101001 Dredging 4 -01111101001 Arise 4 -01111101001 Doubtful 4 -01111101001 Fading 4 -01111101001 Probing 4 -01111101001 Transforming 4 -01111101001 Lining 4 -01111101001 CONTRACT 4 -01111101001 Stopped 4 -01111101001 RENT 4 -01111101001 Freeze 4 -01111101001 Causes 4 -01111101001 Stir 4 -01111101001 Bluffing 4 -01111101001 Creeping 4 -01111101001 Carved 4 -01111101001 Safely 4 -01111101001 Debts 4 -01111101001 Returned 4 -01111101001 Turned 4 -01111101001 Invented 5 -01111101001 Tear 5 -01111101001 Broadening 5 -01111101001 Beating 5 -01111101001 Knocking 5 -01111101001 Canceled 5 -01111101001 Panicked 5 -01111101001 Blocking 5 -01111101001 Periods 5 -01111101001 Termination 5 -01111101001 Gave 5 -01111101001 Comparison 5 -01111101001 Planting 5 -01111101001 Preserving 5 -01111101001 Woven 5 -01111101001 Merits 5 -01111101001 Altering 5 -01111101001 Brushing 5 -01111101001 Breast 5 -01111101001 Squeezing 5 -01111101001 Revive 5 -01111101001 Finished 5 -01111101001 Unsure 5 -01111101001 Warned 5 -01111101001 Purchased 5 -01111101001 Wrapping 5 -01111101001 Disclosures 5 -01111101001 Hats 5 -01111101001 Checking 5 -01111101001 Lying 5 -01111101001 Reluctant 6 -01111101001 Revelations 6 -01111101001 Tipped 6 -01111101001 Knock 6 -01111101001 Looming 6 -01111101001 Bourgeois 6 -01111101001 Aboard 6 -01111101001 Killed 6 -01111101001 Recovering 6 -01111101001 Signed 6 -01111101001 Pitching 6 -01111101001 Recorded 6 -01111101001 Opposes 6 -01111101001 Prove 6 -01111101001 Listing 6 -01111101001 Leaves 6 -01111101001 Tracing 6 -01111101001 Anthills 6 -01111101001 Remove 6 -01111101001 Choking 6 -01111101001 Entering 6 -01111101001 Separation 6 -01111101001 Captured 6 -01111101001 Harvesting 6 -01111101001 Distressed 6 -01111101001 Coup 6 -01111101001 Weary 6 -01111101001 Puts 6 -01111101001 Teach 6 -01111101001 Shrugging 6 -01111101001 Decide 6 -01111101001 Entrenched 6 -01111101001 Everyday 6 -01111101001 Screaming 6 -01111101001 Consult 6 -01111101001 Rapidly 6 -01111101001 Bored 6 -01111101001 Locked 6 -01111101001 Attacks 7 -01111101001 Touring 7 -01111101001 Arranged 7 -01111101001 Converting 7 -01111101001 Investigating 7 -01111101001 Found 7 -01111101001 Confused 7 -01111101001 Prosecuting 7 -01111101001 Remain 7 -01111101001 Disappointed 7 -01111101001 Reminded 7 -01111101001 Ease 7 -01111101001 Repeating 7 -01111101001 Develop 7 -01111101001 Stealing 7 -01111101001 Weighing 7 -01111101001 Doubling 7 -01111101001 Reverse 7 -01111101001 Assertions 8 -01111101001 Combine 8 -01111101001 Hiding 8 -01111101001 Furious 8 -01111101001 Surprised 8 -01111101001 Stretching 8 -01111101001 Crying 8 -01111101001 Challenging 8 -01111101001 Throwing 8 -01111101001 Smooth 8 -01111101001 Opposed 8 -01111101001 Allowed 8 -01111101001 Catching 8 -01111101001 Fake 8 -01111101001 Spinning 8 -01111101001 Shocked 8 -01111101001 Oppose 8 -01111101001 Saved 8 -01111101001 Finishing 8 -01111101001 Viewing 8 -01111101001 Dismissed 8 -01111101001 Went 8 -01111101001 Confident 8 -01111101001 Merging 8 -01111101001 Warming 8 -01111101001 Rebuilding 8 -01111101001 Resident 8 -01111101001 Rankings 8 -01111101001 Traded 8 -01111101001 Curious 9 -01111101001 Forming 9 -01111101001 Ranking 9 -01111101001 Stacks 9 -01111101001 Understand 9 -01111101001 Difficult 9 -01111101001 Include 9 -01111101001 Discounting 9 -01111101001 Knows 9 -01111101001 Clones 9 -01111101001 Preventing 9 -01111101001 Spread 9 -01111101001 Protect 9 -01111101001 Spreading 9 -01111101001 Involving 9 -01111101001 Opposing 9 -01111101001 Incidents 9 -01111101001 Splitting 9 -01111101001 Appointment 9 -01111101001 Divisions 9 -01111101001 Pull 10 -01111101001 Easing 10 -01111101001 Been 10 -01111101001 Echoes 10 -01111101001 Feel 10 -01111101001 Correcting 10 -01111101001 Temporarily 10 -01111101001 Generations 10 -01111101001 Stopping 10 -01111101001 Uncertain 10 -01111101001 Limit 10 -01111101001 Sorting 10 -01111101001 Expand 10 -01111101001 Scrap 11 -01111101001 Leaning 11 -01111101001 Smell 11 -01111101001 Loves 11 -01111101001 Tucked 11 -01111101001 Afraid 11 -01111101001 Stuck 11 -01111101001 Catch 11 -01111101001 Join 11 -01111101001 Takes 11 -01111101001 Shaking 12 -01111101001 Trash 12 -01111101001 Divided 12 -01111101001 Begins 12 -01111101001 Filling 12 -01111101001 Controlling 12 -01111101001 Quietly 12 -01111101001 Settling 12 -01111101001 Lifestyles 12 -01111101001 Collecting 12 -01111101001 Letting 13 -01111101001 Signing 13 -01111101001 Anywhere 13 -01111101001 Laying 13 -01111101001 Mention 13 -01111101001 Burning 13 -01111101001 Till 13 -01111101001 Comes 13 -01111101001 Measuring 13 -01111101001 Pulling 13 -01111101001 Naming 13 -01111101001 Lose 13 -01111101001 Buried 14 -01111101001 Figuring 14 -01111101001 Makes 14 -01111101001 Insituform 14 -01111101001 Boost 14 -01111101001 Doubts 14 -01111101001 Dropping 14 -01111101001 Spend 14 -01111101001 Sensitive 14 -01111101001 Rounding 14 -01111101001 Build 14 -01111101001 Sold 14 -01111101001 Hire 14 -01111101001 Fixing 15 -01111101001 Hanging 15 -01111101001 Granting 15 -01111101001 Stripped 15 -01111101001 Told 15 -01111101001 Approved 15 -01111101001 Ignore 15 -01111101001 Stepping 16 -01111101001 Chariots 16 -01111101001 Learn 16 -01111101001 Repeat 16 -01111101001 Answering 16 -01111101001 Repeal 17 -01111101001 Create 17 -01111101001 Worry 17 -01111101001 Convinced 17 -01111101001 Halfway 17 -01111101001 Follow 17 -01111101001 Reduce 17 -01111101001 Seems 18 -01111101001 Shut 18 -01111101001 Promoting 18 -01111101001 Introduction 18 -01111101001 Temperatures 18 -01111101001 Rest 18 -01111101001 Fix 18 -01111101001 Stick 19 -01111101001 Avoid 19 -01111101001 Eliminate 19 -01111101001 Push 19 -01111101001 Tracking 19 -01111101001 Allegations 19 -01111101001 Raise 19 -01111101001 Drought 19 -01111101001 Lesser 20 -01111101001 Pity 20 -01111101001 Farther 20 -01111101001 Publicity 20 -01111101001 Taxing 20 -01111101001 Wish 20 -01111101001 Might 20 -01111101001 Treating 21 -01111101001 Beware 21 -01111101001 Eat 21 -01111101001 Proving 22 -01111101001 Traveling 22 -01111101001 Lending 22 -01111101001 Sharing 23 -01111101001 Throw 23 -01111101001 Increase 23 -01111101001 Reflections 23 -01111101001 Eating 23 -01111101001 Expanding 24 -01111101001 Praise 24 -01111101001 Stable 24 -01111101001 Send 24 -01111101001 Allow 25 -01111101001 Understanding 25 -01111101001 Desperate 26 -01111101001 Picking 26 -01111101001 Drop 27 -01111101001 Aware 28 -01111101001 Published 29 -01111101001 Hearing 29 -01111101001 Walking 29 -01111101001 Skip 30 -01111101001 Topping 30 -01111101001 Pick 30 -01111101001 Anticipation 30 -01111101001 Fearful 30 -01111101001 Blame 30 -01111101001 Feeling 31 -01111101001 Compare 31 -01111101001 Bringing 32 -01111101001 Hit 32 -01111101001 Hiring 33 -01111101001 Turn 33 -01111101001 Losing 34 -01111101001 Pass 34 -01111101001 Troubled 36 -01111101001 Need 38 -01111101001 Got 38 -01111101001 Indications 39 -01111101001 Breaking 40 -01111101001 Hold 43 -01111101001 Bring 44 -01111101001 Acquiring 44 -01111101001 Complaints 45 -01111101001 Thinking 45 -01111101001 Built 46 -01111101001 Opening 47 -01111101001 Setting 48 -01111101001 Leaving 49 -01111101001 Failing 49 -01111101001 Name 49 -01111101001 Witness 50 -01111101001 Find 51 -01111101001 Set 52 -01111101001 Paying 53 -01111101001 Hurt 53 -01111101001 Talking 53 -01111101001 Stay 55 -01111101001 Knowing 57 -01111101001 Somewhere 57 -01111101001 Driving 58 -01111101001 Giving 60 -01111101001 Leave 60 -01111101001 Changing 61 -01111101001 Into 64 -01111101001 Playing 67 -01111101001 Sell 67 -01111101001 Cut 67 -01111101001 Concerned 68 -01111101001 Cutting 70 -01111101001 Off 72 -01111101001 Turning 76 -01111101001 Winning 76 -01111101001 Fighting 77 -01111101001 Running 79 -01111101001 Forget 81 -01111101001 Face 86 -01111101001 Signs 88 -01111101001 Questions 89 -01111101001 Keeping 91 -01111101001 Closing 93 -01111101001 Sale 95 -01111101001 Fears 97 -01111101001 Calling 98 -01111101001 Wheel 99 -01111101001 Think 100 -01111101001 Made 102 -01111101001 Close 104 -01111101001 Word 104 -01111101001 Continuing 105 -01111101001 Near 109 -01111101001 Keep 111 -01111101001 Cost 112 -01111101001 Fear 115 -01111101001 Talk 125 -01111101001 Going 131 -01111101001 Use 131 -01111101001 Has 138 -01111101001 Put 143 -01111101001 Were 148 -01111101001 Making 185 -01111101001 Could 189 -01111101001 Call 192 -01111101001 Was 211 -01111101001 Selling 219 -01111101001 Outside 223 -01111101001 Buying 225 -01111101001 Half 274 -01111101001 Rumors 276 -01111101001 Out 298 -01111101001 Does 484 -01111101001 Will 585 -01111101001 Early 668 -01111101001 Is 1303 -01111101001 Earlier 2211 -01111101001 All 4572 -01111101001 Because 3236 -01111101010 Creaming 1 -01111101010 semifinalist 1 -01111101010 Pussycats 1 -01111101010 Blackmail 1 -01111101010 errRRAW 1 -01111101010 couzenage 1 -01111101010 Self-Regulation 1 -01111101010 Overs 1 -01111101010 jump-up-and-down-when-you-win-on-the-slots 1 -01111101010 yeahh 1 -01111101010 Demonstrably 1 -01111101010 A'-level 1 -01111101010 B'-level 1 -01111101010 Videofashion 1 -01111101010 /Near 1 -01111101010 dja 1 -01111101010 craws 1 -01111101010 sturgeons 1 -01111101010 Richly 1 -01111101010 Whaddyawan 1 -01111101010 YES. 1 -01111101010 Oho 1 -01111101010 Fraternities 1 -01111101010 Drums 1 -01111101010 Possibility 1 -01111101010 Nevermind 1 -01111101010 Yahoo 1 -01111101010 Wallflowers 1 -01111101010 Outings 1 -01111101010 Dreadfully 1 -01111101010 Overstated 1 -01111101010 Achtung 1 -01111101010 AM-BUSHED 1 -01111101010 Mil-i-ken 1 -01111101010 Hugged 1 -01111101010 Snails 1 -01111101010 tehee 1 -01111101010 benedicite 1 -01111101010 gramercy 1 -01111101010 avoy 1 -01111101010 goder-heal 1 -01111101010 oho 1 -01111101010 prut 1 -01111101010 perfay 1 -01111101010 swith 1 -01111101010 wellaway 1 -01111101010 pyromania 1 -01111101010 Shindig 1 -01111101010 Daaad 1 -01111101010 Poussin/The 1 -01111101010 FFMC 1 -01111101010 Ex-Admiral 1 -01111101010 DUE 1 -01111101010 Fodder 1 -01111101010 Breasts 1 -01111101010 Tchaikovsky/Balanchine 1 -01111101010 Thrills 1 -01111101010 Midasize 1 -01111101010 Dadah 1 -01111101010 Five-fifty 1 -01111101010 Blacktop 1 -01111101010 Modernize 1 -01111101010 SISS-BOOM-BAH 1 -01111101010 Embraceable 1 -01111101010 Race-of-the-day 1 -01111101010 /Give 1 -01111101010 Rewind 1 -01111101010 Footprints 1 -01111101010 Ceau-Ses-Cu 1 -01111101010 Gor-Ba-Chev 1 -01111101010 Huzzah 1 -01111101010 Tenderness 1 -01111101010 Hocus-pocus 1 -01111101010 Nangadeff 1 -01111101010 grizzle-face 1 -01111101010 Nessie 1 -01111101010 Diiinner 1 -01111101010 Nervy 1 -01111101010 FANTASTIC 1 -01111101010 INCREDIBLE 1 -01111101010 Euonymus 1 -01111101010 aspergette 1 -01111101010 AGREE 1 -01111101010 mandla 1 -01111101010 Yakety 1 -01111101010 Irresponsibility 1 -01111101010 Hi-yea 1 -01111101010 geddit 1 -01111101010 what-do-I-get-out-of-it 1 -01111101010 Bitchy 1 -01111101010 Ravenous 1 -01111101010 earplug 1 -01111101010 Nog 1 -01111101010 Piracy 1 -01111101010 Double-B 1 -01111101010 Snugging 1 -01111101010 HiiiYa 1 -01111101010 Portion 1 -01111101010 Zounds 1 -01111101010 AIDS-CIA 1 -01111101010 Testifies 1 -01111101010 Kalokohan 1 -01111101010 Solicitations 1 -01111101010 Drug-Lag 1 -01111101010 Bopha 1 -01111101010 cioffi 1 -01111101010 COLLEGIANS 1 -01111101010 Legged 1 -01111101010 Outrageousness 1 -01111101010 Bratislav 1 -01111101010 Escargots 1 -01111101010 Adventurous 1 -01111101010 Indiscriminate 1 -01111101010 Exploding 1 -01111101010 IBM-speakers 1 -01111101010 Conceptual 1 -01111101010 Rebound 1 -01111101010 Agrobiz 1 -01111101010 Iranbo 1 -01111101010 Shhhhh 1 -01111101010 Pindi 1 -01111101010 Wheee 1 -01111101010 custodes 1 -01111101010 Ma-DON-na 1 -01111101010 MA-donna 1 -01111101010 Precautions 1 -01111101010 ex-auditor 1 -01111101010 Adrift 1 -01111101010 teens/adults 1 -01111101010 Phew 1 -01111101010 spendere 1 -01111101010 Eerie 1 -01111101010 Globalize 1 -01111101010 ABSOLUT 1 -01111101010 Mixer 1 -01111101010 Circular 1 -01111101010 SMILE 1 -01111101010 Shhhh 1 -01111101010 Plodders 1 -01111101010 boooo 1 -01111101010 yeaaaaa 1 -01111101010 Argggh 1 -01111101010 Hyah 1 -01111101010 muttcracker 1 -01111101010 Mussels 1 -01111101010 Stumped 1 -01111101010 Straights 1 -01111101010 Storytelling 1 -01111101010 Eeeek 1 -01111101010 eeek 1 -01111101010 eek 1 -01111101010 Seductions 1 -01111101010 enfants 1 -01111101010 .did 1 -01111101010 fer 1 -01111101010 impassiveness 1 -01111101010 zakuska 1 -01111101010 regnant 1 -01111101010 Single-elimination 1 -01111101010 Revisionists 1 -01111101010 YEEEEEECH 1 -01111101010 nuestro 1 -01111101010 Bullfeathers 1 -01111101010 Quadragesimo 1 -01111101010 Swearing 1 -01111101010 sstudy 1 -01111101010 CarnegieMellon 1 -01111101010 Identifications 1 -01111101010 GREAT-AUNT 1 -01111101010 agitates 1 -01111101010 Downeyflake 1 -01111101010 TITLE 1 -01111101010 Begorra 1 -01111101010 Splat 1 -01111101010 Whitesnake 1 -01111101010 partis 1 -01111101010 Mongeese 1 -01111101010 Post-War 1 -01111101010 Rejoice 1 -01111101010 hiiteen 1 -01111101010 who-are-you 1 -01111101010 Commissars 1 -01111101010 bastarda 1 -01111101010 Biffex 1 -01111101010 Bleep 1 -01111101010 Arrggh 1 -01111101010 SH-H-H-H 1 -01111101010 Rerum 1 -01111101010 Kickbacks 1 -01111101010 Dutiful 1 -01111101010 mai 1 -01111101010 scortesia 1 -01111101010 Cedrela 1 -01111101010 BUSHWHACKED 1 -01111101010 Wimpeach 1 -01111101010 Riflery 1 -01111101010 COMETH 1 -01111101010 Miscanthus 1 -01111101010 Vaccinium 1 -01111101010 Armpits 1 -01111101010 Earwax 1 -01111101010 Poof 1 -01111101010 Hyperbole 1 -01111101010 Fret 1 -01111101010 Chim 1 -01111101010 Murderers 1 -01111101010 get-facts-and 1 -01111101010 non-practicing 1 -01111101010 Drive-ins 1 -01111101010 Ilalim 1 -01111101010 Badges 1 -01111101010 Unrealistic 1 -01111101010 Transcribing 1 -01111101010 Yakkety 1 -01111101010 Repent 1 -01111101010 Icterus 1 -01111101010 Cyanocitta 1 -01111101010 Similarities 1 -01111101010 Turncoats 1 -01111101010 Brevity 1 -01111101010 Panhandling 1 -01111101010 PHILANTHROPOLOGY 1 -01111101010 WUDDA 1 -01111101010 Funky 1 -01111101010 Brahe 1 -01111101010 /A 1 -01111101010 Prognosis 1 -01111101010 Defeatism 1 -01111101010 plasticine 1 -01111101010 ] 1 -01111101010 Somocista 1 -01111101010 82,672 1 -01111101010 Aber 2 -01111101010 THINKING 2 -01111101010 Censored 2 -01111101010 Yawning 2 -01111101010 Miraculous 2 -01111101010 Whoop 2 -01111101010 Roumania 2 -01111101010 Co-sponsoring 2 -01111101010 IPB 2 -01111101010 Summitry 2 -01111101010 Self-control 2 -01111101010 tres 2 -01111101010 SYRIAN 2 -01111101010 Spontaneity 2 -01111101010 YEEECH 2 -01111101010 Ve 2 -01111101010 Dook 2 -01111101010 Dialing 2 -01111101010 Squid 2 -01111101010 Skill 2 -01111101010 Nearer 2 -01111101010 jua 2 -01111101010 Bikes 2 -01111101010 Wertmuller 2 -01111101010 Elation 2 -01111101010 PALMER 2 -01111101010 Wiped 2 -01111101010 Baloney 2 -01111101010 Clampers 2 -01111101010 Imagination 2 -01111101010 pow 2 -01111101010 Nooooo 2 -01111101010 Criticisms 2 -01111101010 Deadlock 2 -01111101010 Brilliantly 2 -01111101010 Naivete 2 -01111101010 Wishing 2 -01111101010 Abolish 2 -01111101010 Round-robin 2 -01111101010 TALKING 2 -01111101010 OPERA 2 -01111101010 Heal 2 -01111101010 Cannot 2 -01111101010 Fixes 2 -01111101010 DRESS 2 -01111101010 SAKE 2 -01111101010 Immature 2 -01111101010 Sunspots 2 -01111101010 Brainstorming 2 -01111101010 Precedent 2 -01111101010 FRICTION 2 -01111101010 Retreat 2 -01111101010 Honoraria 2 -01111101010 INSECURITY 2 -01111101010 Nie 2 -01111101010 Bush/Noriega 2 -01111101010 Mummification 2 -01111101010 Perjury 2 -01111101010 Wayta 2 -01111101010 Hallo 2 -01111101010 Frustrating 2 -01111101010 Corpsman 2 -01111101010 Gripes 2 -01111101010 Descend 2 -01111101010 MOGOOOO 2 -01111101010 Modesty 2 -01111101010 Culprits 2 -01111101010 A.M.L. 2 -01111101010 Asthma 2 -01111101010 Deflation 2 -01111101010 Jurisdiction 2 -01111101010 Formidable 2 -01111101010 Correlation 2 -01111101010 Quiapo 2 -01111101010 Infringement 2 -01111101010 Overqualified 2 -01111101010 Name-calling 2 -01111101010 Fingerprints 2 -01111101010 Assign 2 -01111101010 Burglars 2 -01111101010 ow 2 -01111101010 Right-Wing 2 -01111101010 SWITCH-HITTER 2 -01111101010 Cramden 2 -01111101010 Norteamericanos 2 -01111101010 Sevvy 2 -01111101010 Nativist 2 -01111101010 Corridos 2 -01111101010 Worrying 3 -01111101010 Honk 3 -01111101010 Rejections 3 -01111101010 Junta 3 -01111101010 Marry 3 -01111101010 Insane 3 -01111101010 Impeach 3 -01111101010 Pretending 3 -01111101010 Laymen 3 -01111101010 Prick 3 -01111101010 Censure 3 -01111101010 Capriccio 3 -01111101010 Promoter 3 -01111101010 Pretend 3 -01111101010 Anemia 3 -01111101010 Abandon 3 -01111101010 Confrontation 3 -01111101010 Cliches 3 -01111101010 Overpopulation 3 -01111101010 Unacceptable 3 -01111101010 Psst 3 -01111101010 Banzai 3 -01111101010 SICK 3 -01111101010 Bats 3 -01111101010 GAN 3 -01111101010 BIGGER 3 -01111101010 DISEASE 3 -01111101010 Sock 3 -01111101010 Weep 3 -01111101010 Predictability 3 -01111101010 Burned 3 -01111101010 Twas 3 -01111101010 Goodness 3 -01111101010 Anxieties 3 -01111101010 Discuss 3 -01111101010 Oo 3 -01111101010 Mitla 3 -01111101010 Unhappiness 3 -01111101010 im 3 -01111101010 LETTERS 3 -01111101010 Reorganizing 3 -01111101010 Jogging 3 -01111101010 Abie 3 -01111101010 Trailing 3 -01111101010 Homosexuals 3 -01111101010 Attend 3 -01111101010 Undecided 3 -01111101010 .that 4 -01111101010 Ouch 4 -01111101010 Weigh 4 -01111101010 Tequila 4 -01111101010 Lindell 4 -01111101010 Incineration 4 -01111101010 Bearishness 4 -01111101010 Dedicated 4 -01111101010 Hah 4 -01111101010 Pills 4 -01111101010 Stomach 4 -01111101010 Stickball 4 -01111101010 Tarkanian 4 -01111101010 Pardon 4 -01111101010 Touching 4 -01111101010 Desperation 4 -01111101010 Inefficiency 4 -01111101010 Openness 5 -01111101010 Hurry 5 -01111101010 Threaten 5 -01111101010 Ich 5 -01111101010 Haste 5 -01111101010 Males 5 -01111101010 Explain 5 -01111101010 Puff 5 -01111101010 Starry 5 -01111101010 Pinch 5 -01111101010 'Tis 6 -01111101010 Hypnosis 6 -01111101010 Rhetoric 6 -01111101010 Censorship 6 -01111101010 Forgive 6 -01111101010 Tastes 6 -01111101010 Discriminate 6 -01111101010 PDLA 6 -01111101010 Nationalism 6 -01111101010 Beats 7 -01111101010 Pelleas 7 -01111101010 Youngsters 7 -01111101010 Consistently 7 -01111101010 Desperately 8 -01111101010 Baggage 8 -01111101010 Proof 9 -01111101010 Credibility 10 -01111101010 Shall 10 -01111101010 Methanol 10 -01111101010 Recessions 10 -01111101010 CUT 10 -01111101010 Skepticism 12 -01111101010 Whom 12 -01111101010 Nostalgia 12 -01111101010 Terrorists 13 -01111101010 Excuse 15 -01111101010 Definitely 16 -01111101010 l 16 -01111101010 Gimme 16 -01111101010 Burn 16 -01111101010 Choose 17 -01111101010 Seldom 17 -01111101010 Controversy 18 -01111101010 Damn 18 -01111101010 Hail 19 -01111101010 Anxiety 21 -01111101010 Caution 22 -01111101010 Sarafina 23 -01111101010 Shoot 23 -01111101010 Confusion 24 -01111101010 Hear 25 -01111101010 Volatility 25 -01111101010 Protectionism 25 -01111101010 Firing 26 -01111101010 Rarely 31 -01111101010 Greenmail 33 -01111101010 RE 33 -01111101010 Pretty 41 -01111101010 Sounds 44 -01111101010 Absolutely 45 -01111101010 Must 46 -01111101010 Know 47 -01111101010 Want 50 -01111101010 Believe 52 -01111101010 Attention 54 -01111101010 Help 55 -01111101010 Tell 78 -01111101010 Whoever 82 -01111101010 n 99 -01111101010 Somebody 107 -01111101010 Say 123 -01111101010 Give 140 -01111101010 Make 142 -01111101010 Anything 154 -01111101010 Buy 156 -01111101010 Come 157 -01111101010 Save 166 -01111101010 Someone 175 -01111101010 Something 180 -01111101010 Get 182 -01111101010 Be 214 -01111101010 Have 221 -01111101010 Speculation 245 -01111101010 Everything 282 -01111101010 Too 347 -01111101010 Nothing 439 -01111101010 Everybody 511 -01111101010 Are 575 -01111101010 Everyone 585 -01111101010 Nobody 675 -01111101010 Where 693 -01111101010 Nor 777 -01111101010 Can 790 -01111101010 Let 815 -01111101010 Who 966 -01111101010 Do 1227 -01111101010 Why 1681 -01111101010 What 6937 -01111101010 How 2224 -01111101011 Jeeves 1 -01111101011 OPBOPM 1 -01111101011 Unimaginable 1 -01111101011 principal-onlys 1 -01111101011 denkiya 1 -01111101011 troubled-youth 1 -01111101011 Stelae 1 -01111101011 Street-fighting 1 -01111101011 flatlanders 1 -01111101011 meatgrinder 1 -01111101011 Chaconne 1 -01111101011 Sci-Fi 1 -01111101011 unAmerican 1 -01111101011 Barf 1 -01111101011 minestrone 1 -01111101011 scuadre 1 -01111101011 Whence 1 -01111101011 Japanapologist 1 -01111101011 Slavefare 1 -01111101011 Daybreak 1 -01111101011 Afridi 1 -01111101011 flaneur 1 -01111101011 sprier 1 -01111101011 Neuromancer 1 -01111101011 Sekunjalo 1 -01111101011 Uniformly 1 -01111101011 goniff 1 -01111101011 green-lining 1 -01111101011 megathrifts 1 -01111101011 tortiously 1 -01111101011 Eastenders 1 -01111101011 short-list 1 -01111101011 yeah-boo 1 -01111101011 Footage 1 -01111101011 hoozer 1 -01111101011 hacklings 1 -01111101011 husher 1 -01111101011 Binderweed 1 -01111101011 micropsia 1 -01111101011 TaiPan 1 -01111101011 wreckers 1 -01111101011 Pixars 1 -01111101011 Jesu 1 -01111101011 uncontentious 1 -01111101011 pistes 1 -01111101011 hlasnist 1 -01111101011 Beuys/Voice 1 -01111101011 entfremdungsgefuhl 1 -01111101011 Stable-instability 1 -01111101011 pamyal 1 -01111101011 bisnes 1 -01111101011 Fitzcarraldo 1 -01111101011 dicere 1 -01111101011 not-in-my-back-yard 1 -01111101011 DeWhine 1 -01111101011 hammerbox 1 -01111101011 Albo-Picta 1 -01111101011 no-brainers 1 -01111101011 Frosts 1 -01111101011 Marginally 1 -01111101011 probusiness 1 -01111101011 corbeille 1 -01111101011 Reverberating 1 -01111101011 Bugis 1 -01111101011 ooh-ooh-ooh 1 -01111101011 counterprogram 1 -01111101011 unsnugging 1 -01111101011 De-Stalinization 1 -01111101011 Jazzfest 1 -01111101011 Mijo 1 -01111101011 Unmistakably 1 -01111101011 accomplisher 1 -01111101011 Footlose 1 -01111101011 Funhouse 1 -01111101011 vellus 1 -01111101011 MTNs 1 -01111101011 Interrogation 1 -01111101011 Kukla 1 -01111101011 Joyful 1 -01111101011 Lamentably 1 -01111101011 Sheherazade 1 -01111101011 regroups 1 -01111101011 Meta-analysis 1 -01111101011 Valedictory 1 -01111101011 Slave-fare 1 -01111101011 Teflons 1 -01111101011 Forio 1 -01111101011 Hardcore 1 -01111101011 grazers 1 -01111101011 Bravado 1 -01111101011 chochas 1 -01111101011 ducting 1 -01111101011 parentectomy 1 -01111101011 McTicket 1 -01111101011 Cotillon 1 -01111101011 spokescat 1 -01111101011 dawg 1 -01111101011 Nil 1 -01111101011 toof 1 -01111101011 documonial 1 -01111101011 Thexder 1 -01111101011 Subjectively 1 -01111101011 out-placed 1 -01111101011 larger-ticket 1 -01111101011 clonekiller 1 -01111101011 Scruffily 1 -01111101011 no-pass 1 -01111101011 God-willing 1 -01111101011 rebenchmarking 1 -01111101011 quoll 1 -01111101011 gibber 1 -01111101011 yabber 1 -01111101011 humpy 1 -01111101011 quandong 1 -01111101011 waddy 1 -01111101011 locomote 1 -01111101011 pettifog 1 -01111101011 jeopard 1 -01111101011 misnome 1 -01111101011 burgle 1 -01111101011 Ayuh 1 -01111101011 highliners 1 -01111101011 garmento 1 -01111101011 pets-only 1 -01111101011 Kkamdong 1 -01111101011 Rhodium 1 -01111101011 Fish-tar 1 -01111101011 svan 1 -01111101011 pairage 1 -01111101011 Papermaker 1 -01111101011 Ecologically 1 -01111101011 Inexperience 1 -01111101011 SHOPPING-MALL 1 -01111101011 greige 1 -01111101011 Cardenistas 1 -01111101011 abrebocas 1 -01111101011 Unalloyed 1 -01111101011 gold-fixing 1 -01111101011 flame-broiling 1 -01111101011 Onstage 1 -01111101011 jamu 1 -01111101011 Bapak 1 -01111101011 childminders 1 -01111101011 keikis 1 -01111101011 re-occlusion 1 -01111101011 Biladi 1 -01111101011 Attaboys 1 -01111101011 Clinically 1 -01111101011 dachas 1 -01111101011 Smorgasbord 1 -01111101011 design-ins 1 -01111101011 Humama 1 -01111101011 Daaaddy 1 -01111101011 CAMILLA 1 -01111101011 Excusez-moi 1 -01111101011 minifabs 1 -01111101011 radiation-hard 1 -01111101011 Bebi 1 -01111101011 Shamefully 1 -01111101011 Attaboy 1 -01111101011 Waterlily 1 -01111101011 rakugo 1 -01111101011 Stopdoc 1 -01111101011 pir 1 -01111101011 eins 1 -01111101011 Playkill 1 -01111101011 dee-do 1 -01111101011 homeostasis 1 -01111101011 kaval 1 -01111101011 Superfights 1 -01111101011 KoKo 1 -01111101011 self-front-running 1 -01111101011 co-commander 1 -01111101011 nomu 1 -01111101011 sac-a-lait 1 -01111101011 chaoui 1 -01111101011 ouaouaron 1 -01111101011 grenouille 1 -01111101011 closet-indexed 1 -01111101011 vested-interest 1 -01111101011 capitation 1 -01111101011 Transfigurations 1 -01111101011 Pumice 1 -01111101011 Mothering 1 -01111101011 superspecialists 1 -01111101011 E.T 1 -01111101011 Personage 1 -01111101011 kappo 1 -01111101011 precedent-shattering 1 -01111101011 muti 1 -01111101011 sangomas 1 -01111101011 sportif 1 -01111101011 megabrand 1 -01111101011 ratu 1 -01111101011 petrolized 1 -01111101011 nonstrategy 1 -01111101011 orientated 1 -01111101011 Cocoricocoboy 1 -01111101011 griots 1 -01111101011 tama 1 -01111101011 businessman-governors 1 -01111101011 buckaroos 1 -01111101011 storm-swept 1 -01111101011 Cypresses 1 -01111101011 Firewalker 1 -01111101011 Cuomoesque 1 -01111101011 Caritas 1 -01111101011 tarikat 1 -01111101011 irtica 1 -01111101011 mini-tycoon 1 -01111101011 certs 1 -01111101011 Rosalinda 1 -01111101011 chapans 1 -01111101011 Codfather 1 -01111101011 pulu 1 -01111101011 Cloudy 1 -01111101011 roadblocking 1 -01111101011 negociants 1 -01111101011 Suleymanname 1 -01111101011 DIAL-A-TAX 1 -01111101011 Exuberance 1 -01111101011 B-roll 1 -01111101011 o-daiko 1 -01111101011 all-seeing 1 -01111101011 Deandome 1 -01111101011 Digger 1 -01111101011 supermerchant 1 -01111101011 fweets 1 -01111101011 deconglomeratization 1 -01111101011 Menuetto 1 -01111101011 Markings 1 -01111101011 Nihilism 1 -01111101011 Meaningless 1 -01111101011 epis 1 -01111101011 Steelhammer 1 -01111101011 Sparkplug 1 -01111101011 pixelization 1 -01111101011 Debategate 1 -01111101011 micropreneur 1 -01111101011 ultrapreneur 1 -01111101011 Intrapreneuring 1 -01111101011 Monday-morning-quarterbacking 1 -01111101011 Castaway 1 -01111101011 Shards 1 -01111101011 Karatemania 1 -01111101011 Do-Sa-Do 1 -01111101011 aggro 1 -01111101011 graffiti-free 1 -01111101011 Calyx 1 -01111101011 THEM 1 -01111101011 Staggerlee 1 -01111101011 Bullshipper 1 -01111101011 dochakuka 1 -01111101011 box-and-one 1 -01111101011 taisho 1 -01111101011 Cowdillac 1 -01111101011 he-comes-home-drunk-but-she-loves-him-still 1 -01111101011 Huissier 1 -01111101011 post-millennialists 1 -01111101011 superworkstation 1 -01111101011 plain-language 1 -01111101011 retablista 1 -01111101011 arpilleras 1 -01111101011 capoeira 1 -01111101011 B-scaler 1 -01111101011 milliner 1 -01111101011 Momentarily 1 -01111101011 tree-spiking 1 -01111101011 Garcinia 1 -01111101011 BusinessSavers 1 -01111101011 Model-Secretary 1 -01111101011 Bonito 1 -01111101011 Rolmans 1 -01111101011 Macroinstructions 1 -01111101011 Bretons 1 -01111101011 big-small 1 -01111101011 reacteur 1 -01111101011 moteur 1 -01111101011 Braids 1 -01111101011 Barracoon 1 -01111101011 Pygtailion 1 -01111101011 Assassins 1 -01111101011 Blinking 1 -01111101011 Kennilworth 1 -01111101011 Verrat 1 -01111101011 Issai 1 -01111101011 fearness 1 -01111101011 dismuting 1 -01111101011 Victorianism 1 -01111101011 RingMaster 1 -01111101011 Waterproof 1 -01111101011 Musicircus 1 -01111101011 Kur 1 -01111101011 Genossenschaft 1 -01111101011 Autobahnen 1 -01111101011 niceism 1 -01111101011 Truthfully 1 -01111101011 gatilho 1 -01111101011 one-minutes 1 -01111101011 Double-breasting 1 -01111101011 Nonresidents 1 -01111101011 whoa 1 -01111101011 FABULOUS 1 -01111101011 Horny 1 -01111101011 A-u 1 -01111101011 Tapeheads 1 -01111101011 Shadowinnower 1 -01111101011 Berufsverbot 1 -01111101011 Deal-Estate 1 -01111101011 Offensively 1 -01111101011 noninterventionist 1 -01111101011 Talk-Back 1 -01111101011 Exportise 1 -01111101011 narazuke 1 -01111101011 chindonya 1 -01111101011 Decemberitis 1 -01111101011 Redi-Paks 1 -01111101011 Arrives 1 -01111101011 Cadi-Vette 1 -01111101011 Gymkhana 1 -01111101011 Puk-puk 1 -01111101011 puk-puk 1 -01111101011 Serendipitously 1 -01111101011 Barthold 1 -01111101011 Fuku 1 -01111101011 bioreactors 1 -01111101011 thugee 1 -01111101011 vodoun 1 -01111101011 Assyrian 1 -01111101011 vlanbindingues 1 -01111101011 galipotes 1 -01111101011 zobop 1 -01111101011 mbaqanga 1 -01111101011 pommies 1 -01111101011 Manhunt 1 -01111101011 Harmonium 1 -01111101011 yomp 1 -01111101011 Bureaucratese 1 -01111101011 Dial-a-Santa 1 -01111101011 zeitgeist 1 -01111101011 non-patented 1 -01111101011 Naturalism 1 -01111101011 conflation 1 -01111101011 Cardenio 1 -01111101011 Achievers 1 -01111101011 Experientials 1 -01111101011 kulturbeflissen 1 -01111101011 whatshizname 1 -01111101011 ogres 1 -01111101011 Tobaccutti 1 -01111101011 Superbulls 1 -01111101011 Bagtime 1 -01111101011 Fussy 1 -01111101011 ji-boong 1 -01111101011 feathers-off 1 -01111101011 one-person-one-vote 1 -01111101011 Interoperability 1 -01111101011 Flugabwehrkanone 1 -01111101011 Price-wise 1 -01111101011 Oh-oh 1 -01111101011 Bare-faced 1 -01111101011 Blimpo 1 -01111101011 bottegai 1 -01111101011 poujadism 1 -01111101011 Ladenschlussgesetz 1 -01111101011 Wows 1 -01111101011 turt 1 -01111101011 legere 1 -01111101011 podion 1 -01111101011 sah 1 -01111101011 satura 1 -01111101011 McNaticos 1 -01111101011 self-cleansing 1 -01111101011 embranquecer 1 -01111101011 Effie 1 -01111101011 reviewed/designed 1 -01111101011 Footnoteitis 1 -01111101011 mispigeonholed 1 -01111101011 Kibbutzim 1 -01111101011 Big-capitalization 1 -01111101011 Rampage 1 -01111101011 Symbolon 1 -01111101011 Sharehi 1 -01111101011 German-bashing 1 -01111101011 Flim-flam 1 -01111101011 BUD 1 -01111101011 khorosho 1 -01111101011 traktoristka 1 -01111101011 anti-lipemic 1 -01111101011 Praiseworthy 1 -01111101011 Baretta 1 -01111101011 Firefox 1 -01111101011 Lifecare 1 -01111101011 Erwartung 1 -01111101011 Trovatores 1 -01111101011 kif 1 -01111101011 inflation-proof 1 -01111101011 mergee 1 -01111101011 Shh 1 -01111101011 Schadenfreude 1 -01111101011 festival-oriented 1 -01111101011 HeartGuide 1 -01111101011 Comity 1 -01111101011 Fierrabras 1 -01111101011 DOC-IN-A-BOX 1 -01111101011 Glamoc 1 -01111101011 Batdance 1 -01111101011 sliders 1 -01111101011 sodbusting 1 -01111101011 PC9801LX5C 1 -01111101011 Viscerally 1 -01111101011 Inheritance 1 -01111101011 Mefistofele 1 -01111101011 Howzit 1 -01111101011 deficit-neutrality 1 -01111101011 dazibao 1 -01111101011 polystylistic 1 -01111101011 Goldfink 1 -01111101011 highgrowth 1 -01111101011 Merci 1 -01111101011 cooperativa 1 -01111101011 Ohara 1 -01111101011 Supercarrier 1 -01111101011 Firestarter 1 -01111101011 Pericle 1 -01111101011 Rotate 1 -01111101011 loquitur 1 -01111101011 Ta-Hu-Wa-Hu-Wai 1 -01111101011 counter-gap 1 -01111101011 Stagecoach 1 -01111101011 run-of-the-press 1 -01111101011 Archetypes 1 -01111101011 Tanzspiel 1 -01111101011 social-mindedness 1 -01111101011 politicals 1 -01111101011 companero 1 -01111101011 disapppointed 1 -01111101011 super-stability 1 -01111101011 Sonderweg 1 -01111101011 No-Speed 1 -01111101011 major-major 1 -01111101011 Janssens 1 -01111101011 rotators 1 -01111101011 Institutionally 1 -01111101011 heart-driven 1 -01111101011 half-pipes 1 -01111101011 promotionist 1 -01111101011 microfiber 1 -01111101011 Skimming 1 -01111101011 un-poor 1 -01111101011 spetsnaz 1 -01111101011 benchmarking 1 -01111101011 lyophilizer 1 -01111101011 Schmerzfest 1 -01111101011 Clive-ia 1 -01111101011 Expressiv 1 -01111101011 vendido 1 -01111101011 framestore 1 -01111101011 Carpetbaggers 1 -01111101011 Wunderbar 1 -01111101011 Magnifico 1 -01111101011 Mopes 1 -01111101011 See-Hear 1 -01111101011 get-it-fast 1 -01111101011 pro-SEC 1 -01111101011 frottoir 1 -01111101011 self-developers 1 -01111101011 To-ron-to 1 -01111101011 well-housed 1 -01111101011 Machoism 1 -01111101011 Sparcintoshes 1 -01111101011 SuperDave 1 -01111101011 Grasshopper 1 -01111101011 Heinasirkka 1 -01111101011 echorche 1 -01111101011 carpetgate 1 -01111101011 Kurozuka 1 -01111101011 Puffball 1 -01111101011 double-team 1 -01111101011 Funnily 1 -01111101011 Dakkie 1 -01111101011 K-9 1 -01111101011 goldbugs 1 -01111101011 Bondweek 1 -01111101011 Showed 1 -01111101011 Sniff 1 -01111101011 On-Target 1 -01111101011 lawful-to-sell 1 -01111101011 Thunderchicken 1 -01111101011 Legwork 1 -01111101011 INFO-2 1 -01111101011 Megamarketing 1 -01111101011 Intervale 1 -01111101011 condottiere 1 -01111101011 supersoft 1 -01111101011 Molnia 1 -01111101011 airier 1 -01111101011 futuristics 1 -01111101011 higahikaku 1 -01111101011 zenbara 1 -01111101011 Strapless 1 -01111101011 hairhoppers 1 -01111101011 Repulsion 1 -01111101011 age-appropriate 1 -01111101011 Air-jet 1 -01111101011 Pre-October 1 -01111101011 fumblerooski 1 -01111101011 Pocho 1 -01111101011 zakat 1 -01111101011 Bullish-Bullish-Bullish 1 -01111101011 compadre 1 -01111101011 comadre 1 -01111101011 Elephantenhochzeit 1 -01111101011 Libidine 1 -01111101011 Overboard 1 -01111101011 Insulate 1 -01111101011 Cajoling 1 -01111101011 polycephalous 1 -01111101011 Typee 1 -01111101011 METHOTREXATE 1 -01111101011 Wherein 1 -01111101011 dumbed-down 1 -01111101011 yogwans 1 -01111101011 proviruses 1 -01111101011 NAO 1 -01111101011 Urdis 1 -01111101011 collegialism 1 -01111101011 tarek 1 -01111101011 hear-nothing 1 -01111101011 Novanoah 1 -01111101011 Arcodiga 1 -01111101011 anti-materialism 1 -01111101011 Cubetown 1 -01111101011 Incoherence 1 -01111101011 Globaloney 1 -01111101011 Dadillacs 1 -01111101011 Launcher 1 -01111101011 Beforehand 1 -01111101011 animatics 1 -01111101011 Anastasia 1 -01111101011 buppies 1 -01111101011 narrowcaster 1 -01111101011 Son-of-a-gun 1 -01111101011 lipophilic 1 -01111101011 Kayaker 1 -01111101011 Parenthesis 1 -01111101011 Colorcoat 1 -01111101011 F.I.S.T. 1 -01111101011 Equivalently 1 -01111101011 Ceaselessly 1 -01111101011 Emphatically 1 -01111101011 Astrobabble 1 -01111101011 Ti-di 1 -01111101011 Deplorably 1 -01111101011 Algazel 1 -01111101011 Ripoffs 1 -01111101011 comandancia 1 -01111101011 neuro-computers 1 -01111101011 Stoneheads 1 -01111101011 phat 1 -01111101011 Traitor 1 -01111101011 chestwarmers 1 -01111101011 berried 1 -01111101011 athematic 1 -01111101011 Thamos 1 -01111101011 Alakshak 1 -01111101011 ayni 1 -01111101011 Maoridom 1 -01111101011 chaga 1 -01111101011 ooooo 1 -01111101011 Trembling 1 -01111101011 maya 1 -01111101011 gaman 1 -01111101011 Mmm 1 -01111101011 Caregiving 1 -01111101011 pro-peacock 1 -01111101011 ballparking 1 -01111101011 Amakudari 1 -01111101011 down-down 1 -01111101011 be-ins 1 -01111101011 Cholesterol-wise 1 -01111101011 Geech 1 -01111101011 nitwits 1 -01111101011 Checkmates 1 -01111101011 capitulations 1 -01111101011 shortwings 1 -01111101011 Heigh-oh 1 -01111101011 hojin 1 -01111101011 icepick 1 -01111101011 chuanxiong 1 -01111101011 loge 1 -01111101011 idiotypes 1 -01111101011 double-discounted 1 -01111101011 Bestseller 1 -01111101011 W-U-D-D-A 1 -01111101011 I-R-S 1 -01111101011 cross-subsidy 1 -01111101011 Rik 1 -01111101011 Chameleon-like 1 -01111101011 investor-driven 1 -01111101011 S.P.E.B.S.Q.S.A 1 -01111101011 Datson 1 -01111101011 E-car 1 -01111101011 regisseur 1 -01111101011 Kettentanz 1 -01111101011 etude 1 -01111101011 France/Dance 1 -01111101011 in-filling 1 -01111101011 Bucketing 1 -01111101011 fizzlick 1 -01111101011 puppydogs 1 -01111101011 yobiko 1 -01111101011 tamamushi 1 -01111101011 Janites 1 -01111101011 Yo-Goat 1 -01111101011 non-obvious 1 -01111101011 sub-therapeutic 1 -01111101011 Clinicard 1 -01111101011 Paperhouse 1 -01111101011 enzymatic 1 -01111101011 francheesy 1 -01111101011 Personages 1 -01111101011 Poochies 1 -01111101011 Wenesday 1 -01111101011 dunk-tanks 1 -01111101011 ultra-perestroika 1 -01111101011 Banging 1 -01111101011 Bluntly 1 -01111101011 nonchange 1 -01111101011 etoiles 1 -01111101011 Willie/Mingo 1 -01111101011 huggy-huggy 1 -01111101011 Aphorismi 1 -01111101011 passe-partout 1 -01111101011 Bleary-eyed 2 -01111101011 Fumbling 2 -01111101011 Arrogant 2 -01111101011 Enraged 2 -01111101011 Quantitatively 2 -01111101011 Weekdays 2 -01111101011 Oh-la-la 2 -01111101011 SWIMMING 2 -01111101011 Extraditables 2 -01111101011 Vamos 2 -01111101011 Terrified 2 -01111101011 Jawohl 2 -01111101011 Cellist 2 -01111101011 Symbolically 2 -01111101011 Mastergate 2 -01111101011 Ooh 2 -01111101011 Messy 2 -01111101011 Biosensor 2 -01111101011 SleepTight 2 -01111101011 Shrug 2 -01111101011 WILMINGTON 2 -01111101011 abridging 2 -01111101011 BORROW 2 -01111101011 Takings 2 -01111101011 Nicotinic 2 -01111101011 Ethicists 2 -01111101011 Deliberately 2 -01111101011 longueurs 2 -01111101011 Artifact 2 -01111101011 Hostas 2 -01111101011 Hard-working 2 -01111101011 Rollover 2 -01111101011 Airwolf 2 -01111101011 Hmm 2 -01111101011 Assumed 2 -01111101011 paso 2 -01111101011 Excepting 2 -01111101011 Ay 2 -01111101011 Starlings 2 -01111101011 nunchakus 2 -01111101011 Brickyard 2 -01111101011 Obeying 2 -01111101011 Ninotchka 2 -01111101011 MAX 2 -01111101011 coach-ball 2 -01111101011 wah 2 -01111101011 Evander 2 -01111101011 Ho-hum 2 -01111101011 Operationally 2 -01111101011 Otlichno 2 -01111101011 Shuttered 2 -01111101011 Knightwatch 2 -01111101011 Rugged 2 -01111101011 Lard 2 -01111101011 Quintus 2 -01111101011 nein 2 -01111101011 Ovens 2 -01111101011 Succinctly 2 -01111101011 Supply-sider 2 -01111101011 Divining 2 -01111101011 delegators 2 -01111101011 Smithereens 2 -01111101011 Naively 2 -01111101011 Depends 2 -01111101011 Nunnally 2 -01111101011 Rosmira 2 -01111101011 Moribund 2 -01111101011 COLGATE 2 -01111101011 Instinctively 2 -01111101011 BehaviorScan 2 -01111101011 Legionella 2 -01111101011 Breakout 2 -01111101011 EM 2 -01111101011 Simulators 2 -01111101011 Awful 2 -01111101011 Relevant 2 -01111101011 Balderdash 2 -01111101011 THEN 2 -01111101011 Suprematism 2 -01111101011 Hasten 2 -01111101011 Murderous 2 -01111101011 pixilation 2 -01111101011 Gremlins 2 -01111101011 Mosques 2 -01111101011 Kayaks 2 -01111101011 Lush 2 -01111101011 Gridlock 2 -01111101011 Lunches 2 -01111101011 Second-guessing 2 -01111101011 Feelgood 2 -01111101011 Self-employed 2 -01111101011 Eagle-Tribune 2 -01111101011 Carefully 2 -01111101011 Industrially 2 -01111101011 Siblings 2 -01111101011 Carny 2 -01111101011 Naw 3 -01111101011 Puller 3 -01111101011 Self-management 3 -01111101011 Yep 3 -01111101011 Feck 3 -01111101011 Brahms-Handel 3 -01111101011 Overlooked 3 -01111101011 Sexy 3 -01111101011 Roufus 3 -01111101011 Posit 3 -01111101011 Chiefly 3 -01111101011 Channeling 3 -01111101011 Beaming 3 -01111101011 Grudgingly 3 -01111101011 Recommend 3 -01111101011 Fandango 3 -01111101011 shelterable 3 -01111101011 Uh-oh 3 -01111101011 Trade-In 3 -01111101011 Revillon 3 -01111101011 Ribs 3 -01111101011 Striptease 3 -01111101011 Thereby 3 -01111101011 Brag 3 -01111101011 Candidly 3 -01111101011 Offstage 3 -01111101011 Unrepentant 3 -01111101011 Sloppy 3 -01111101011 Pubs 3 -01111101011 Praised 3 -01111101011 Logical 3 -01111101011 Ruled 3 -01111101011 Barden 3 -01111101011 Oooh 3 -01111101011 Kayaking 3 -01111101011 WITHOUT 3 -01111101011 Nah 3 -01111101011 Sideways 3 -01111101011 Commercially 3 -01111101011 MetroEconomica 3 -01111101011 Totalitarianism 3 -01111101011 Distraught 3 -01111101011 Unequivocally 3 -01111101011 Nigger 3 -01111101011 Yuasa 3 -01111101011 Mariameneo 3 -01111101011 Mommas 3 -01111101011 tholin 3 -01111101011 Logistically 3 -01111101011 Zirconium 3 -01111101011 THOMSON-CSF 3 -01111101011 Dreamgirls 3 -01111101011 Constitutionally 3 -01111101011 Orphans 3 -01111101011 OH 4 -01111101011 Caliban 4 -01111101011 Professionally 4 -01111101011 Aw 4 -01111101011 Mammograms 4 -01111101011 Streamlining 4 -01111101011 Coincidence 4 -01111101011 Farrowing 4 -01111101011 Selecting 4 -01111101011 Stockbroker 4 -01111101011 Easily 4 -01111101011 Pray 4 -01111101011 Flamboyant 4 -01111101011 Stupid 4 -01111101011 Aesthetically 4 -01111101011 Speeches 4 -01111101011 Hogwash 4 -01111101011 Bashing 4 -01111101011 Strikingly 4 -01111101011 Ethically 4 -01111101011 Typewriters 4 -01111101011 Camarinha 5 -01111101011 GATES 5 -01111101011 Pupil 5 -01111101011 Interesting 5 -01111101011 Erythropoietin 5 -01111101011 Smiling 5 -01111101011 Jeez 5 -01111101011 Eurocops 5 -01111101011 Conceptually 5 -01111101011 Breathless 5 -01111101011 Generous 5 -01111101011 Scratch 5 -01111101011 Deeds 5 -01111101011 Chlorofluorocarbons 5 -01111101011 Culturally 5 -01111101011 Footloose 5 -01111101011 Socially 6 -01111101011 Doubtless 6 -01111101011 Strategically 6 -01111101011 Herewith 6 -01111101011 Conception 6 -01111101011 Rubbish 6 -01111101011 Dopey 6 -01111101011 Short-covering 6 -01111101011 Je 6 -01111101011 Unquestionably 6 -01111101011 Regularly 6 -01111101011 Locally 6 -01111101011 Benji 6 -01111101011 Appropriately 6 -01111101011 Monday-Friday 7 -01111101011 Undeniably 7 -01111101011 Unbelievable 7 -01111101011 Aha 7 -01111101011 Ostensibly 8 -01111101011 Backstage 8 -01111101011 Effectively 8 -01111101011 Uh 8 -01111101011 Intellectually 8 -01111101011 Bokassa 8 -01111101011 Plainly 9 -01111101011 Oops 9 -01111101011 Embarrassed 9 -01111101011 Outraged 9 -01111101011 Nope 10 -01111101011 Rioting 10 -01111101011 DEBATE 11 -01111101011 Domestically 12 -01111101011 Whoa 12 -01111101011 Realistically 12 -01111101011 Briefly 12 -01111101011 Seemingly 13 -01111101011 Psychologically 14 -01111101011 Henceforth 17 -01111101011 Wow 17 -01111101011 Underneath 18 -01111101011 Primarily 18 -01111101011 Upstairs 18 -01111101011 Economically 18 -01111101011 Industrywide 18 -01111101011 Therein 18 -01111101011 Translated 18 -01111101011 Someday 19 -01111101011 Goodbye 19 -01111101011 Overnight 21 -01111101011 Slowly 21 -01111101011 Undoubtedly 23 -01111101011 Evidently 24 -01111101011 Recall 27 -01111101011 Below 27 -01111101011 Fundamentally 29 -01111101011 Okay 32 -01111101011 Hi 32 -01111101011 Everywhere 33 -01111101011 Oddly 37 -01111101011 Granted 42 -01111101011 Wait 42 -01111101011 Luckily 43 -01111101011 Sorry 45 -01111101011 Hello 45 -01111101011 Hopefully 48 -01111101011 Personally 50 -01111101011 Gee 53 -01111101011 Always 59 -01111101011 Financially 59 -01111101011 Nearby 60 -01111101011 Ah 61 -01111101011 Yeah 67 -01111101011 Occasionally 80 -01111101011 Nowadays 88 -01111101011 Frankly 89 -01111101011 Presumably 94 -01111101011 Somehow 94 -01111101011 Mostly 98 -01111101011 Twice 101 -01111101011 Naturally 116 -01111101011 Hence 128 -01111101011 Tomorrow 133 -01111101011 Surely 145 -01111101011 Remember 147 -01111101011 Imagine 149 -01111101011 Hey 164 -01111101011 Basically 178 -01111101011 Again 222 -01111101011 Down 225 -01111101011 Usually 226 -01111101011 Sure 236 -01111101011 Inside 253 -01111101011 Suddenly 253 -01111101011 Apparently 256 -01111101011 Together 262 -01111101011 True 269 -01111101011 Often 275 -01111101011 Oh 294 -01111101011 Soon 371 -01111101011 Obviously 398 -01111101011 Certainly 453 -01111101011 Clearly 464 -01111101011 Yes 474 -01111101011 Sometimes 634 -01111101011 Well 688 -01111101011 Second 792 -01111101011 Rather 931 -01111101011 Or 1072 -01111101011 Besides 1341 -01111101011 Today 2522 -01111101011 Then 3233 -01111101011 Now 6403 -01111101011 So 6986 -01111101100 Huffs 1 -01111101100 Exults 1 -01111101100 Accommodating 1 -01111101100 .have 1 -01111101100 VideoStar 1 -01111101100 Kenzy 1 -01111101100 Insisted 1 -01111101100 Computer-giant 1 -01111101100 Soothing 1 -01111101100 Hostesses 1 -01111101100 Oil-rich 1 -01111101100 Teleindustria 1 -01111101100 Dollar-hungry 1 -01111101100 Tacitly 1 -01111101100 Muses 1 -01111101100 Storky 1 -01111101100 Arch-rival 1 -01111101100 VACUUMING 1 -01111101100 POST-STRIKE 1 -01111101100 Hard-nosed 1 -01111101100 REGULATIONS 1 -01111101100 Easygoing 1 -01111101100 General-interest 1 -01111101100 First-term 1 -01111101100 Ex-guard 1 -01111101100 Drought-ravaged 1 -01111101100 Proclaimed 1 -01111101100 Renouncing 1 -01111101100 Advises 1 -01111101100 PERONISTS 1 -01111101100 EARRING 1 -01111101100 Speculates 1 -01111101100 Two-term 1 -01111101100 Money-manager 1 -01111101100 Sixty-year-old 1 -01111101100 Middle-level 1 -01111101100 Rough-and-ready 1 -01111101100 Lambasting 1 -01111101100 Shudder 1 -01111101100 Protocol-conscious 1 -01111101100 EDUCATIONAL 1 -01111101100 Insists 1 -01111101100 Green-eyed 1 -01111101100 BanCal 1 -01111101100 Eighteenth-century 1 -01111101100 Ex-cop 1 -01111101100 Cornerback 1 -01111101100 Radioing 1 -01111101100 Roseland-based 1 -01111101100 Rejoins 1 -01111101100 Retorted 1 -01111101100 Ship-maker 1 -01111101100 Speed-skater 2 -01111101100 Confides 2 -01111101100 Nicknamed 2 -01111101100 Wrinkling 2 -01111101100 Psychic 2 -01111101100 Jealous 2 -01111101100 Modifying 2 -01111101100 Swelling 2 -01111101100 Mild-mannered 2 -01111101100 ELDER 2 -01111101100 Heightening 2 -01111101100 Three-year-old 2 -01111101100 Pre-selling 2 -01111101100 Accomplishing 2 -01111101100 Beefy 2 -01111101100 TOM 2 -01111101100 Predicted 2 -01111101100 Emulating 2 -01111101100 Money-losing 2 -01111101100 Foreseeing 2 -01111101100 Nineteenth-century 2 -01111101100 Re-enter 2 -01111101100 Admits 2 -01111101100 Bordering 2 -01111101100 Enriching 2 -01111101100 Enlarging 2 -01111101100 SIR 2 -01111101100 Seventeen-year-old 2 -01111101100 Gripping 3 -01111101100 Humorist 3 -01111101100 Truer 3 -01111101100 Joked 3 -01111101100 Preaching 3 -01111101100 Better-known 3 -01111101100 Five-year-old 3 -01111101100 Spokeswoman 3 -01111101100 Eight-year-old 3 -01111101100 Overseeing 3 -01111101100 Argues 3 -01111101100 Outlawing 3 -01111101100 Seven-year-old 3 -01111101100 Present-day 3 -01111101100 Firming 3 -01111101100 Deducting 3 -01111101100 Flooding 3 -01111101100 COMPREHENSIVE 4 -01111101100 Explained 4 -01111101100 Screenwriters 4 -01111101100 Worsening 4 -01111101100 REP. 4 -01111101100 Advocating 4 -01111101100 Countered 4 -01111101100 Transferring 4 -01111101100 Underpinning 4 -01111101100 Fumes 4 -01111101100 Shutting 4 -01111101100 Exacerbating 4 -01111101100 Contends 5 -01111101100 Backing 5 -01111101100 Capturing 5 -01111101100 Presenting 5 -01111101100 Protesting 6 -01111101100 Pianist 6 -01111101100 Hard-core 6 -01111101100 Observed 6 -01111101100 Entertainer 6 -01111101100 Replied 7 -01111101100 Linking 7 -01111101100 Complains 7 -01111101100 V.H. 7 -01111101100 Government-owned 7 -01111101100 Nine-year-old 7 -01111101100 Warns 7 -01111101100 Responded 7 -01111101100 Attacking 8 -01111101100 Pacing 8 -01111101100 Responds 8 -01111101100 Boasts 8 -01111101100 Approaching 8 -01111101100 Aiding 8 -01111101100 Cash-rich 8 -01111101100 Trimming 8 -01111101100 Heeding 9 -01111101100 Retorts 9 -01111101100 Dubbed 9 -01111101100 Asserts 9 -01111101100 Matching 9 -01111101100 Carrying 10 -01111101100 Cash-strapped 10 -01111101100 Neighboring 10 -01111101100 Shifting 11 -01111101100 Observing 11 -01111101100 Expressing 11 -01111101100 Recalls 11 -01111101100 Criticizing 11 -01111101100 Slowing 12 -01111101100 Declares 12 -01111101100 Asking 12 -01111101100 Observes 13 -01111101100 Asks 14 -01111101100 Replies 14 -01111101100 Concludes 15 -01111101100 Reviewing 15 -01111101100 Concedes 16 -01111101100 Shrinking 16 -01111101100 Improving 18 -01111101100 Replacing 18 -01111101100 Visiting 23 -01111101100 Counters 24 -01111101100 Echoing 24 -01111101100 Explains 38 -01111101100 Whereas 58 -01111101100 Joining 59 -01111101100 Increasing 64 -01111101100 Succeeding 67 -01111101100 Finding 82 -01111101100 Enter 97 -01111101100 Regarding 160 -01111101100 Said 246 -01111101100 Added 272 -01111101100 Adds 643 -01111101100 Whatever 753 -01111101100 Unlike 1064 -01111101100 Says 1259 -01111101100 Neither 1347 -01111101100 Like 1852 -01111101100 Though 2772 -01111101100 While 8457 -01111101100 Although 6744 -01111101101 Stifling 1 -01111101101 Acknowledge 1 -01111101101 Longer-lasting 1 -01111101101 WALTERS 1 -01111101101 Elope 1 -01111101101 Entertain 1 -01111101101 Y.H. 1 -01111101101 Notoriety 1 -01111101101 Swindling 1 -01111101101 Isodoro 1 -01111101101 RAILROAD 1 -01111101101 Arenaballers 1 -01111101101 Telwatch 1 -01111101101 Multi-option 1 -01111101101 Springing 1 -01111101101 Eusebio 1 -01111101101 Reversals 1 -01111101101 Extorting 1 -01111101101 Birthdays 1 -01111101101 Snowmobile 1 -01111101101 De-emphasizing 1 -01111101101 Despots 1 -01111101101 C-LD-R 1 -01111101101 Stewardesses 1 -01111101101 Composition-wise 1 -01111101101 Triploid 1 -01111101101 Methodically 1 -01111101101 Ex- 1 -01111101101 Doggone 1 -01111101101 Homely 1 -01111101101 Overlook 1 -01111101101 Tight-lipped 1 -01111101101 Termed 1 -01111101101 CALERO 1 -01111101101 STEAMBOAT 1 -01111101101 Surpluses 1 -01111101101 IMPROPER 1 -01111101101 Urologists 1 -01111101101 Samplers 1 -01111101101 Ditching 1 -01111101101 .because 1 -01111101101 Roughing 1 -01111101101 Pre-empting 1 -01111101101 Passenger-service 1 -01111101101 Executing 1 -01111101101 Colorize 1 -01111101101 RABIN 1 -01111101101 Miniaturized 1 -01111101101 .Writing 1 -01111101101 Securities-lending 1 -01111101101 Captioned 1 -01111101101 Thence 1 -01111101101 Self-medication 1 -01111101101 Inflation-led 1 -01111101101 Stature 1 -01111101101 .So 1 -01111101101 Slaughterings 1 -01111101101 Interwoven 1 -01111101101 .until 1 -01111101101 Boy-crazy 1 -01111101101 Prescribing 1 -01111101101 MANAGUA 1 -01111101101 Whyever 1 -01111101101 Prodigious 2 -01111101101 Reimbursing 2 -01111101101 TAX-LAW 2 -01111101101 ABRAMS 2 -01111101101 Hammering 2 -01111101101 Clumsy 2 -01111101101 Obscure 2 -01111101101 PARENTAL 2 -01111101101 Locking 2 -01111101101 ARAFAT 2 -01111101101 .and 2 -01111101101 Jabbing 2 -01111101101 Subtitled 2 -01111101101 Jailed 2 -01111101101 Pursued 2 -01111101101 Preceding 2 -01111101101 Beleaguered 3 -01111101101 Veins 3 -01111101101 Considerations 3 -01111101101 Chanting 3 -01111101101 Advertised 3 -01111101101 Incensed 3 -01111101101 Cozy 3 -01111101101 DICK 3 -01111101101 Entitled 3 -01111101101 Chastened 4 -01111101101 Discouraged 4 -01111101101 Ironic 4 -01111101101 McFARLANE 4 -01111101101 Inexperienced 4 -01111101101 Upholding 4 -01111101101 Sidestepping 4 -01111101101 Relaxing 4 -01111101101 Wanting 4 -01111101101 Attractive 5 -01111101101 Nestled 5 -01111101101 Ousted 5 -01111101101 Titled 5 -01111101101 Laments 5 -01111101101 Seizing 5 -01111101101 Repeatedly 5 -01111101101 Spotting 6 -01111101101 Convictions 6 -01111101101 Concluding 7 -01111101101 Admitting 9 -01111101101 Whereupon 9 -01111101101 Provided 10 -01111101101 Incumbent 12 -01111101101 Convincing 12 -01111101101 Suffice 12 -01111101101 Determining 13 -01111101101 Ditto 17 -01111101101 Quoting 18 -01111101101 Arguing 31 -01111101101 Mainly 40 -01111101101 Possibly 53 -01111101101 Quite 121 -01111101101 Consider 466 -01111101101 Perhaps 1205 -01111101101 Yet 2950 -01111101101 But 73602 -01111101101 And 23158 -01111101110 PUZZLING 1 -01111101110 Unloosing 1 -01111101110 Groused 1 -01111101110 Inoculating 1 -01111101110 Depleting 1 -01111101110 Mountainizing 1 -01111101110 re-humanizes 1 -01111101110 Contended 1 -01111101110 Toppling 1 -01111101110 Fast-track 1 -01111101110 Interrupting 1 -01111101110 Donning 1 -01111101110 Stiffling 1 -01111101110 Hustling 1 -01111101110 Slinging 1 -01111101110 Nary 1 -01111101110 Prerequisites 1 -01111101110 Labeled 1 -01111101110 Clinging 1 -01111101110 Slip 1 -01111101110 Formulating 1 -01111101110 Resembling 1 -01111101110 Cornering 1 -01111101110 Spared 1 -01111101110 Bankside 1 -01111101110 Remarked 1 -01111101110 Rebuffing 1 -01111101110 Adjectives 1 -01111101110 MASS 1 -01111101110 Depite 1 -01111101110 Pawning 1 -01111101110 Argued 1 -01111101110 Forfeiting 1 -01111101110 Exhibiting 1 -01111101110 Unraveling 1 -01111101110 Copping 1 -01111101110 Successively 1 -01111101110 Exerting 1 -01111101110 Anchoring 1 -01111101110 Proclaims 1 -01111101110 Hypoglycemia 1 -01111101110 ENDOWMENTS 1 -01111101110 PREPAYING 1 -01111101110 Mimicking 1 -01111101110 Growth-minded 1 -01111101110 Repudiating 1 -01111101110 Ousting 1 -01111101110 Underpaying 1 -01111101110 Unfurling 1 -01111101110 Denominate 1 -01111101110 Unrolling 1 -01111101110 Scrounging 1 -01111101110 CLK 1 -01111101110 Energy-intensive 1 -01111101110 Punching 1 -01111101110 Idling 1 -01111101110 non-covered 1 -01111101110 Tucking 1 -01111101110 Constructing 1 -01111101110 Appoint 1 -01111101110 Sustaining 1 -01111101110 Thwarting 1 -01111101110 Reshaping 1 -01111101110 Snatching 1 -01111101110 Thankful 1 -01111101110 Reaffirming 1 -01111101110 Mumbles 1 -01111101110 Cementing 1 -01111101110 Unlocking 1 -01111101110 Outbreaks 1 -01111101110 codewords 2 -01111101110 Reciting 2 -01111101110 Ere 2 -01111101110 Assemble 2 -01111101110 Greeting 2 -01111101110 Moans 2 -01111101110 Nudging 2 -01111101110 Begging 2 -01111101110 Grabbing 2 -01111101110 Fingering 2 -01111101110 Groping 2 -01111101110 Espousing 3 -01111101110 Scraping 3 -01111101110 Opting 3 -01111101110 Allocating 3 -01111101110 Securing 3 -01111101110 Electing 3 -01111101110 Introduce 3 -01111101110 Renowned 3 -01111101110 Legislating 3 -01111101110 Puffing 3 -01111101110 Suing 3 -01111101110 Pantyhose 3 -01111101110 Commented 3 -01111101110 Co-defendants 3 -01111101110 Caring 4 -01111101110 Scarcely 4 -01111101110 Dressing 4 -01111101110 Conducting 4 -01111101110 Qualifying 4 -01111101110 Arranging 4 -01111101110 Sighs 4 -01111101110 Employing 5 -01111101110 Bedtime 5 -01111101110 Sending 9 -01111101110 Launching 11 -01111101110 Aiming 11 -01111101110 Preparing 13 -01111101110 Negotiating 14 -01111101110 Searching 16 -01111101110 Adjusting 25 -01111101110 Waiting 42 -01111101110 Formerly 59 -01111101110 As 20081 -01111101110 Allowing 61 -01111101111 Inactivity 1 -01111101111 Writ 1 -01111101111 Queues 1 -01111101111 Embodying 1 -01111101111 Self-taught 1 -01111101111 Tuning 1 -01111101111 Complacency 1 -01111101111 Billeted 1 -01111101111 Long-timers 1 -01111101111 Imbedded 1 -01111101111 Apolitical 1 -01111101111 Owner-managers 1 -01111101111 Unsurprising 1 -01111101111 Relishing 1 -01111101111 Ranching 1 -01111101111 Implied 1 -01111101111 Nonparticipants 1 -01111101111 Tangled 1 -01111101111 Clots 1 -01111101111 Leaping 1 -01111101111 WNEV 1 -01111101111 Abounding 1 -01111101111 Protestation 1 -01111101111 Congregations 1 -01111101111 Delter 1 -01111101111 Duvalierism 1 -01111101111 Skirmishing 1 -01111101111 Garbed 1 -01111101111 Residency 1 -01111101111 4:57 1 -01111101111 Breakdowns 1 -01111101111 Exceedingly 1 -01111101111 Unbowed 1 -01111101111 Punctilious 1 -01111101111 -A 1 -01111101111 Boltzmann 1 -01111101111 Enmeshed 1 -01111101111 44,524,000 1 -01111101111 Cross-holdings 1 -01111101111 Walled 1 -01111101111 Provoked 1 -01111101111 Deemed 1 -01111101111 Watched 1 -01111101111 Abuzz 1 -01111101111 Counted 1 -01111101111 Uproars 1 -01111101111 Indefensible 1 -01111101111 Sinister 1 -01111101111 FALLING 1 -01111101111 Immortalized 1 -01111101111 Undesirable 1 -01111101111 Reflected 1 -01111101111 Cavorting 1 -01111101111 Microphone 1 -01111101111 Qualify 1 -01111101111 Citisavings 1 -01111101111 Kneeling 1 -01111101111 Misalignment 1 -01111101111 Peace-keeping 1 -01111101111 Frankness 1 -01111101111 Casualness 1 -01111101111 MDL 1 -01111101111 Cocky 1 -01111101111 Expiring 1 -01111101111 Highlighted 1 -01111101111 Saddened 1 -01111101111 Inconsistencies 1 -01111101111 Kropotkinskaya 1 -01111101111 Unkempt 1 -01111101111 Latecomers 1 -01111101111 Pictured 1 -01111101111 Oddsmakers 1 -01111101111 Unfolding 1 -01111101111 Thirty-year-olds 1 -01111101111 Distasteful 1 -01111101111 Lolling 1 -01111101111 Cloaked 1 -01111101111 DETERMINING 1 -01111101111 Domesticated 1 -01111101111 Concurring 1 -01111101111 Singleminded 1 -01111101111 Gracious 1 -01111101111 HOSIERY 1 -01111101111 Waitresses 1 -01111101111 Expertise 1 -01111101111 Swooning 1 -01111101111 Upswings 1 -01111101111 Interbreeding 1 -01111101111 Huddled 1 -01111101111 Conjecture 1 -01111101111 Gathered 1 -01111101111 Resonant 1 -01111101111 Dominant 1 -01111101111 Changeovers 1 -01111101111 Doubly 1 -01111101111 Senility 1 -01111101111 Inundated 1 -01111101111 Intervening 1 -01111101111 Skaters 1 -01111101111 Patched 1 -01111101111 BACKSLIDING 1 -01111101111 Outsourcing 1 -01111101111 Co-plaintiffs 1 -01111101111 Obsessional 1 -01111101111 Foals 1 -01111101111 Flimsy 1 -01111101111 Okko 1 -01111101111 Disruptions 1 -01111101111 Hedgers 1 -01111101111 Sixth-ranked 1 -01111101111 Stogies 1 -01111101111 Reopenings 1 -01111101111 Bunched 1 -01111101111 Tire-maker 1 -01111101111 Lodged 1 -01111101111 Prying 1 -01111101111 Incapable 1 -01111101111 Delectable 1 -01111101111 overexuberance 1 -01111101111 Freighted 1 -01111101111 Bikers 1 -01111101111 Over-eagerness 1 -01111101111 Stationed 1 -01111101111 Impoliteness 1 -01111101111 Stockbroking 1 -01111101111 Appropriated 1 -01111101111 Fitted 1 -01111101111 Valleys 1 -01111101111 Flare-ups 1 -01111101111 Heralded 1 -01111101111 Placard 1 -01111101111 Oxides 1 -01111101111 Refreshing 1 -01111101111 Suspense 1 -01111101111 Misrepresentation 1 -01111101111 Fieldwork 1 -01111101111 Disruption 1 -01111101111 Pieced 1 -01111101111 Self-congratulation 1 -01111101111 Spats 1 -01111101111 Shake-ups 1 -01111101111 Replaced 1 -01111101111 Primaries 1 -01111101111 Civas 1 -01111101111 Billowing 1 -01111101111 Fascinated 1 -01111101111 Fluency 1 -01111101111 Paradoxical 1 -01111101111 Skirmishes 1 -01111101111 Surveillants 1 -01111101111 Wallowing 1 -01111101111 Stayed 1 -01111101111 Unsophisticated 1 -01111101111 Reelection 1 -01111101111 Snazzy 1 -01111101111 Graduating 1 -01111101111 Eccentric 1 -01111101111 Fretting 1 -01111101111 Renovations 1 -01111101111 Rumblings 1 -01111101111 Gun-shy 1 -01111101111 Consumerism 1 -01111101111 Slapped 1 -01111101111 -0.8 1 -01111101111 120.0 1 -01111101111 Huddling 1 -01111101111 Cheapness 1 -01111101111 Commercialization 1 -01111101111 Speedskaters 1 -01111101111 Implemented 1 -01111101111 Regrettable 1 -01111101111 373.0 1 -01111101111 Officeholding 1 -01111101111 Suggest 1 -01111101111 Splashed 1 -01111101111 Uproar 1 -01111101111 Sprinkled 1 -01111101111 Baffled 1 -01111101111 Uncomfortable 1 -01111101111 BP&N 1 -01111101111 Gene-splicing 1 -01111101111 Lurching 1 -01111101111 Gallstones 1 -01111101111 Denunciation 1 -01111101111 Noninterference 1 -01111101111 Glimpsed 1 -01111101111 Housekeepers 1 -01111101111 Open-handed 1 -01111101111 TINKERER 1 -01111101111 Unsympathetic 1 -01111101111 Under- 1 -01111101111 Restlessness 1 -01111101111 Borrow 1 -01111101111 Fascination 1 -01111101111 Unremarkable 1 -01111101111 Dotted 1 -01111101111 Chiming 1 -01111101111 Catapulted 1 -01111101111 Astronomer. 1 -01111101111 Mathematician. 1 -01111101111 Cowboy. 1 -01111101111 Roofer. 1 -01111101111 Seaman. 1 -01111101111 Fisherman. 1 -01111101111 Decreases 1 -01111101111 Downtime 1 -01111101111 Groggy 1 -01111101111 FW 1 -01111101111 Intriguing 1 -01111101111 Totaling 1 -01111101111 Lunging 1 -01111101111 Prancing 1 -01111101111 Exultant 1 -01111101111 Vigilantes 1 -01111101111 Naysaying 1 -01111101111 fter 1 -01111101111 Trampled 1 -01111101111 Flown 1 -01111101111 Fraying 1 -01111101111 Ringed 1 -01111101111 Dissents 1 -01111101111 Deadlocks 1 -01111101111 Retreats 1 -01111101111 .slowdowns 1 -01111101111 Replete 1 -01111101111 Well-guarded 1 -01111101111 58,913,000 1 -01111101111 58,035,000 1 -01111101111 Encompassing 1 -01111101111 Indecisiveness 1 -01111101111 Bunching 1 -01111101111 Wincing 1 -01111101111 Hemmed 1 -01111101111 Alternating 1 -01111101111 ndentures 1 -01111101111 Apparatchiks 1 -01111101111 wheaten 1 -01111101111 Abducted 1 -01111101111 Delighting 1 -01111101111 Vacationing 1 -01111101111 Checklists 1 -01111101111 Weak-willed 1 -01111101111 Banal 1 -01111101111 Irregularities 1 -01111101111 Hitches 1 -01111101111 Drenched 1 -01111101111 Veils 1 -01111101111 Studded 1 -01111101111 Carelessness 1 -01111101111 557.3 1 -01111101111 Undefined 1 -01111101111 9,107 1 -01111101111 Translocations 1 -01111101111 Contrasted 1 -01111101111 Lumped 1 -01111101111 .was 1 -01111101111 Discharging 1 -01111101111 Jumbled 1 -01111101111 Idiom 1 -01111101111 Joke-bashing 1 -01111101111 Kansei 1 -01111101111 Delving 1 -01111101111 Stringing 1 -01111101111 Shrouded 1 -01111101111 Shelved 1 -01111101111 Half-crocked 1 -01111101111 Bombarded 1 -01111101111 Decorated 1 -01111101111 Trite 1 -01111101111 Enticing 1 -01111101111 Plotted 1 -01111101111 Inequities 1 -01111101111 Laboring 1 -01111101111 Andchanges 1 -01111101111 Sous 1 -01111101111 Decision-makers 1 -01111101111 Slumped 1 -01111101111 Fussing 1 -01111101111 Phases 1 -01111101111 Wording 1 -01111101111 Trimmed 1 -01111101111 Melted 1 -01111101111 Clod 1 -01111101111 Booked 1 -01111101111 MARKSMEN 1 -01111101111 Lounging 1 -01111101111 Disincentives 1 -01111101111 Envelopes 1 -01111101111 Misunderstandings 1 -01111101111 KMHA-FM 1 -01111101111 Synonymous 1 -01111101111 426.4 1 -01111101111 Occupations 1 -01111101111 Gazing 2 -01111101111 Patterned 2 -01111101111 Collaborating 2 -01111101111 Write-downs 2 -01111101111 Interfering 2 -01111101111 Loitering 2 -01111101111 Railing 2 -01111101111 Chartering 2 -01111101111 Sweating 2 -01111101111 Retain 2 -01111101111 Compatibility 2 -01111101111 Staging 2 -01111101111 Replying 2 -01111101111 Assembling 2 -01111101111 Performed 2 -01111101111 Plop 2 -01111101111 Forbidding 2 -01111101111 Dollar-buying 2 -01111101111 Tasters 2 -01111101111 Lavish 2 -01111101111 Credited 2 -01111101111 Experimenting 2 -01111101111 Defer 2 -01111101111 Balking 2 -01111101111 Non-callable 2 -01111101111 NOV. 2 -01111101111 Purges 2 -01111101111 WILD 2 -01111101111 Improbable 2 -01111101111 Bitterness 2 -01111101111 Tags 2 -01111101111 Stitched 2 -01111101111 Experimentation 2 -01111101111 Coaching 2 -01111101111 MOTEL 2 -01111101111 Stranded 2 -01111101111 Strongest 2 -01111101111 Broke 2 -01111101111 Puttable 2 -01111101111 Well-meaning 2 -01111101111 Outfitted 2 -01111101111 Squatting 2 -01111101111 Endowed 2 -01111101111 Scratching 2 -01111101111 Isolated 2 -01111101111 Indulgent 2 -01111101111 Sentiments 2 -01111101111 Equipped 2 -01111101111 Unsatisfied 2 -01111101111 Dividing 2 -01111101111 Proceeding 2 -01111101111 Coinciding 2 -01111101111 Knew 2 -01111101111 Retreating 2 -01111101111 Intoxicated 2 -01111101111 Murmuring 2 -01111101111 Occurring 2 -01111101111 Shimmering 2 -01111101111 Acted 2 -01111101111 Identified 2 -01111101111 Sliding 2 -01111101111 STANDING 2 -01111101111 Misconceptions 2 -01111101111 COUNTING 2 -01111101111 Downturns 2 -01111101111 Apprehension 2 -01111101111 Embedded 2 -01111101111 Swathed 2 -01111101111 Bristling 2 -01111101111 Flushed 2 -01111101111 Surfacing 2 -01111101111 Bloodied 2 -01111101111 Rummaging 2 -01111101111 POST-OCH 2 -01111101111 Strolling 2 -01111101111 Chafing 2 -01111101111 Crammed 2 -01111101111 Packed 2 -01111101111 Piecing 2 -01111101111 Entwined 2 -01111101111 Chatting 2 -01111101111 Speculations 2 -01111101111 Headquartered 2 -01111101111 Queried 2 -01111101111 Questioning 3 -01111101111 FURTHER 3 -01111101111 Exciting 3 -01111101111 Yielding 3 -01111101111 Softness 3 -01111101111 Damned 3 -01111101111 Prodding 3 -01111101111 Perennially 3 -01111101111 Impatient 3 -01111101111 Indecision 3 -01111101111 Little-known 3 -01111101111 SECTION 3 -01111101111 Far-fetched 3 -01111101111 Enacted 3 -01111101111 PARENTS 3 -01111101111 Translating 3 -01111101111 Complying 3 -01111101111 Parked 3 -01111101111 Reminiscing 3 -01111101111 Housed 3 -01111101111 Flaws 3 -01111101111 Lumping 3 -01111101111 Siding 3 -01111101111 Finalists 3 -01111101111 Irritated 3 -01111101111 Proposing 3 -01111101111 Run-ups 3 -01111101111 Nationalized 3 -01111101111 Rescued 3 -01111101111 Interspersed 3 -01111101111 Toss 3 -01111101111 Satisfied 3 -01111101111 Schooled 3 -01111101111 Hunched 3 -01111101111 Haggling 3 -01111101111 Bursting 3 -01111101111 Teaming 3 -01111101111 Advised 3 -01111101111 Scurrying 3 -01111101111 Greatly 4 -01111101111 Impressive 4 -01111101111 Awash 4 -01111101111 Squabbling 4 -01111101111 Tightness 4 -01111101111 Digging 4 -01111101111 Unveiled 4 -01111101111 Expressed 4 -01111101111 Maneuvering 4 -01111101111 Regarded 4 -01111101111 Collaboration 4 -01111101111 Preoccupied 4 -01111101111 Posing 4 -01111101111 Conflicts 4 -01111101111 Hailed 4 -01111101111 Rebuffed 4 -01111101111 Fiddling 4 -01111101111 Recruited 4 -01111101111 Diversify 4 -01111101111 Supplied 4 -01111101111 Obsessed 4 -01111101111 Deterioration 4 -01111101111 Assisting 4 -01111101111 Wondering 4 -01111101111 Worn 4 -01111101111 Valued 5 -01111101111 Glancing 5 -01111101111 Billed 5 -01111101111 Serving 5 -01111101111 Trapped 5 -01111101111 Shown 5 -01111101111 Gesturing 5 -01111101111 Touted 5 -01111101111 MARCH 5 -01111101111 Stated 5 -01111101111 Tampering 5 -01111101111 Enrollments 5 -01111101111 Youths 5 -01111101111 Tinkering 5 -01111101111 Fluctuations 5 -01111101111 Presiding 5 -01111101111 Dropped 5 -01111101111 Negotiate 6 -01111101111 Pleased 6 -01111101111 Partially 6 -01111101111 Handing 6 -01111101111 Passed 6 -01111101111 Multiply 6 -01111101111 Fluent 6 -01111101111 Wrangling 6 -01111101111 Rejected 6 -01111101111 FEB. 6 -01111101111 Ordered 6 -01111101111 Incorporated 6 -01111101111 Purely 6 -01111101111 Consistent 7 -01111101111 Strictly 7 -01111101111 Uncertainties 7 -01111101111 Inasmuch 7 -01111101111 Fortified 7 -01111101111 Wandering 7 -01111101111 Opened 7 -01111101111 Jitters 7 -01111101111 Charged 7 -01111101111 OCT. 7 -01111101111 Complaining 7 -01111101111 Disappointment 7 -01111101111 Dissatisfied 7 -01111101111 Dissatisfaction 7 -01111101111 Saddled 7 -01111101111 Simultaneous 8 -01111101111 Conceived 8 -01111101111 Filed 8 -01111101111 Disagreements 8 -01111101111 Presented 8 -01111101111 Fungible 8 -01111101111 Situated 8 -01111101111 Calculated 9 -01111101111 Kidnappers 9 -01111101111 Threatened 9 -01111101111 Announced 9 -01111101111 Contacted 9 -01111101111 Staying 9 -01111101111 JULY 9 -01111101111 Clad 9 -01111101111 Receiving 9 -01111101111 Frustration 9 -01111101111 Blessed 10 -01111101111 Described 10 -01111101111 Released 10 -01111101111 Modeled 10 -01111101111 Fired 11 -01111101111 Upset 11 -01111101111 Questioned 11 -01111101111 Hired 12 -01111101111 Issued 12 -01111101111 Becoming 12 -01111101111 Remarks 12 -01111101111 Sounding 12 -01111101111 Provide 12 -01111101111 Played 12 -01111101111 Agreeing 13 -01111101111 Unhappy 13 -01111101111 Insofar 14 -01111101111 Conversations 14 -01111101111 Interviewed 14 -01111101111 Write 15 -01111101111 Formed 15 -01111101111 Somewhat 15 -01111101111 Seconds 15 -01111101111 Sticking 15 -01111101111 Invest 16 -01111101111 Flush 16 -01111101111 Raised 18 -01111101111 Nervousness 18 -01111101111 KILLED 18 -01111101111 Implicit 19 -01111101111 Launched 19 -01111101111 Trained 19 -01111101111 Located 20 -01111101111 Deciding 20 -01111101111 Started 21 -01111101111 Pushing 21 -01111101111 Expect 21 -01111101111 Precisely 21 -01111101111 Considered 21 -01111101111 Introduced 21 -01111101111 Fluctuation 22 -01111101111 Created 23 -01111101111 Interviews 25 -01111101111 Seated 25 -01111101111 Alarmed 25 -01111101111 Confronted 26 -01111101111 Approximately 27 -01111101111 Established 27 -01111101111 Optimism 29 -01111101111 Caught 29 -01111101111 Barely 30 -01111101111 Same 30 -01111101111 Viewed 30 -01111101111 Elected 31 -01111101111 Written 33 -01111101111 Coupled 33 -01111101111 Dressed 36 -01111101111 Seen 37 -01111101111 Testimony 39 -01111101111 Sometime 40 -01111101111 Practically 42 -01111101111 Weakness 44 -01111101111 Frustrated 47 -01111101111 Testifying 51 -01111101111 Appearing 55 -01111101111 Exactly 57 -01111101111 Roughly 57 -01111101111 Worried 58 -01111101111 Doing 60 -01111101111 Immediately 60 -01111101111 Moving 60 -01111101111 Measured 61 -01111101111 Worries 62 -01111101111 Known 66 -01111101111 Effective 66 -01111101111 Concerns 67 -01111101111 Writing 68 -01111101111 Uncertainty 72 -01111101111 Acting 76 -01111101111 Hardly 76 -01111101111 Taken 76 -01111101111 Try 80 -01111101111 Fully 80 -01111101111 Reached 82 -01111101111 Largely 85 -01111101111 Particularly 88 -01111101111 Sitting 90 -01111101111 Virtually 104 -01111101111 Founded 105 -01111101111 Named 110 -01111101111 Add 114 -01111101111 Especially 129 -01111101111 Concern 165 -01111101111 Compared 168 -01111101111 Combined 178 -01111101111 Faced 196 -01111101111 Beginning 203 -01111101111 Partly 209 -01111101111 Starting 240 -01111101111 Looking 249 -01111101111 Shortly 352 -01111101111 Along 407 -01111101111 Back 467 -01111101111 Nearly 508 -01111101111 Almost 531 -01111101111 Late 821 -01111101111 Asked 865 -01111101111 Just 1718 -01111101111 Only 2049 -01111101111 Not 2759 -01111101111 About 2895 -01111101111 Even 6139 -011111100 Home-borrowing 1 -011111100 Co-productions 1 -011111100 Reflexivity 1 -011111100 Bettors 1 -011111100 Mr.Greenberg 1 -011111100 Left-wingers 1 -011111100 BENNETT 1 -011111100 Voice-overs 1 -011111100 Reaffiliation 1 -011111100 Duramend 1 -011111100 Survivalists 1 -011111100 First-place 1 -011111100 Nondollar 1 -011111100 Dogfighters 1 -011111100 Oversized 1 -011111100 Brightly 1 -011111100 HOMEWORK 1 -011111100 Add-ons 1 -011111100 Obsequiousness 1 -011111100 Differentiation 1 -011111100 Intercorporate 1 -011111100 Sushi 1 -011111100 Extravagance 1 -011111100 b-Casino 1 -011111100 Novel-staging 1 -011111100 Reset 1 -011111100 Puzzlement 1 -011111100 Comparable-worth 1 -011111100 NASB 1 -011111100 Decision-making 1 -011111100 Pre-set 1 -011111100 GRAIN-TESTING 1 -011111100 Stars-to-Go 1 -011111100 Punsters 1 -011111100 RCA-Nashville 1 -011111100 Audio/Vidio 1 -011111100 Cloning 1 -011111100 NTU 1 -011111100 Rupiah 1 -011111100 Twelve-year-olds 1 -011111100 Paleoanthropology 1 -011111100 Executive-bashing 1 -011111100 Onandaga 1 -011111100 Hi-Profit 1 -011111100 Underdoggedness 1 -011111100 Mr.Gipson 1 -011111100 Mr.McFarlin 1 -011111100 AMBUSHERS 1 -011111100 Must-carry 1 -011111100 Flurbiprofen 1 -011111100 Reformists 1 -011111100 Mangled 1 -011111100 Sluggishness 1 -011111100 GRS 1 -011111100 State-rights 1 -011111100 Klein-the-owner 1 -011111100 Filers 1 -011111100 HOMICIDE 1 -011111100 Halloid 1 -011111100 Penny-pinching 1 -011111100 Liquid-crystal 1 -011111100 Gutters 1 -011111100 Stockbrokerages 1 -011111100 Smoking-policy 1 -011111100 Ramsey-Spirolox 1 -011111100 Ledgers 1 -011111100 Distinctive 1 -011111100 Asset-valuation 1 -011111100 Amnesties 1 -011111100 Bread-baking 1 -011111100 Felines 1 -011111100 Nonintervention 1 -011111100 Dogmas 1 -011111100 Scribbled 1 -011111100 ADVANCED-CERAMICS 1 -011111100 Freely 1 -011111100 Semanticists 1 -011111100 Co-location 1 -011111100 Magnets 1 -011111100 CACI-Federal 1 -011111100 Mid-1987 1 -011111100 Misunderstanding 1 -011111100 Trickers 1 -011111100 Mannessman 1 -011111100 FLEXTIME 1 -011111100 GRUMBLING 1 -011111100 SOFE 1 -011111100 HONECKER 1 -011111100 IDAHO 1 -011111100 RE/MAX 1 -011111100 BancFirst-Austin 1 -011111100 BARTENDERS 1 -011111100 Spencer-Stuart 1 -011111100 Wage-leveling 1 -011111100 Flux 1 -011111100 Yessan 1 -011111100 HAPPINESS 1 -011111100 Incongruity 1 -011111100 Blinding 1 -011111100 In-between 1 -011111100 N-75 1 -011111100 Gunships 1 -011111100 Neutralism 1 -011111100 Historical-performance 1 -011111100 Acceptability 1 -011111100 Gunboats 1 -011111100 Distancing 1 -011111100 Interventionism 1 -011111100 SPANISH 1 -011111100 Meteneprost 1 -011111100 Nonconvertibility 1 -011111100 Offense 1 -011111100 Wurtlizer 1 -011111100 Miniaturization 1 -011111100 Low-tech 1 -011111100 Rebalancing 1 -011111100 Multi-family 1 -011111100 Driftnets 1 -011111100 Dichlorvos 1 -011111100 UNIONIZATION 1 -011111100 Redlining 1 -011111100 Save-the-rigs 1 -011111100 Aeroquip-Vickers 1 -011111100 Remorse 1 -011111100 Retails 1 -011111100 Booking 1 -011111100 Single-family-home 1 -011111100 Silverware 1 -011111100 Karsdadt 1 -011111100 Consiton 1 -011111100 Most-recommended 1 -011111100 Hypnotists 1 -011111100 Extra-point 1 -011111100 Top-rated 1 -011111100 Newspeople 1 -011111100 Townfolk 1 -011111100 Mergers-and-acquisitions 1 -011111100 Inhumanity 1 -011111100 Postmodernism 1 -011111100 Lethargy 1 -011111100 NEBRASKA 1 -011111100 Active-matrix 1 -011111100 Inhospitality 1 -011111100 Tightfistedness 1 -011111100 Freeloaders 1 -011111100 Respectability 1 -011111100 BARTER 1 -011111100 Nonenforcement 1 -011111100 Coarsely 1 -011111100 Familar 1 -011111100 Envy 1 -011111100 Safety-related 1 -011111100 NEPOTISM 1 -011111100 Vacillation 1 -011111100 Mr.Borman 1 -011111100 Widowers 1 -011111100 Homeownership 1 -011111100 Humility 1 -011111100 Tax-overhaul 1 -011111100 Tetrodotoxin 1 -011111100 Tabletop 1 -011111100 Dynamism 1 -011111100 Solemnity 1 -011111100 Mine-sweepers 1 -011111100 Court-martials 1 -011111100 AIDS-relief 1 -011111100 Infrequency 1 -011111100 Surfactant 1 -011111100 Sofas 1 -011111100 Wine-tasting 1 -011111100 Daylighting 1 -011111100 Depletions 1 -011111100 Icahn-watching 1 -011111100 Impersonators 1 -011111100 Yugolsavia 1 -011111100 Estancieros 1 -011111100 d-Volkswagen 1 -011111100 Anesthetics 1 -011111100 Malaria 1 -011111100 Liner 1 -011111100 Onomatopoeia 1 -011111100 FOLEY 1 -011111100 Bling 1 -011111100 Irresistible 1 -011111100 CCOF 1 -011111100 Oblong 1 -011111100 Platronics 1 -011111100 TML 1 -011111100 Resin 1 -011111100 Handled 1 -011111100 Nativists 1 -011111100 Bureaucratism 1 -011111100 Bisneo 1 -011111100 Calmly 1 -011111100 Schering> 1 -011111100 Microphones 1 -011111100 ARMENIANS 1 -011111100 Fatigue 1 -011111100 COHABITATION 1 -011111100 System-specific 1 -011111100 Consents 1 -011111100 Estimaters 1 -011111100 Lenses 1 -011111100 NAMPHY 1 -011111100 Right-field 1 -011111100 Shredding 2 -011111100 Prosectors 2 -011111100 Meningitis 2 -011111100 Claustrophobia 2 -011111100 Rave 2 -011111100 Weyerhaueser 2 -011111100 Quilts 2 -011111100 Backpedaling 2 -011111100 Money-back 2 -011111100 Hyperinflation 2 -011111100 Anguished 2 -011111100 Bebop 2 -011111100 Democratization 2 -011111100 Tornadoes 2 -011111100 Interdependence 2 -011111100 AWKWARD 2 -011111100 GWI 2 -011111100 AMERADA 2 -011111100 Anti-Semitism 2 -011111100 Multiunit 2 -011111100 Absenteeism 2 -011111100 Nuff 2 -011111100 MMH 2 -011111100 Cross-trading 2 -011111100 Jaycor 2 -011111100 ESC 2 -011111100 PESSIMISM 2 -011111100 Ego 2 -011111100 Scuffles 2 -011111100 Checkout 2 -011111100 Cam-out 2 -011111100 Ghoulish 2 -011111100 Loosely 2 -011111100 Kielar 3 -011111100 Measles 3 -011111100 Home-buying 3 -011111100 Wildfires 3 -011111100 Stock-picking 3 -011111100 Misinformation 3 -011111100 ELI 3 -011111100 Bomba 3 -011111100 Resignation 3 -011111100 Warships 3 -011111100 Handwritten 3 -011111100 Specially 3 -011111100 Sexually 4 -011111100 Zelly 4 -011111100 Caliman 4 -011111100 Tipping 4 -011111100 PRESSURE 6 -011111100 Litter 6 -011111100 Euphoria 6 -011111100 Gerrymandering 7 -011111100 Unrest 8 -011111100 Cost-cutting 16 -011111100 Floating-rate 19 -011111100 Newly 43 -011111100 He 47160 -011111100 She 5096 -01111110100 Metal-forming 1 -01111110100 Video-cheating 1 -01111110100 glitterball 1 -01111110100 Impeachment 1 -01111110100 Approve 1 -01111110100 Filibustering 1 -01111110100 business-birth 1 -01111110100 Slot 1 -01111110100 kind-of-scary 1 -01111110100 Capital-raising 1 -01111110100 cooler-heater 1 -01111110100 Emoting 1 -01111110100 Giardiasis 1 -01111110100 fetcher 1 -01111110100 eight-to-nine-year 1 -01111110100 Bad-news 1 -01111110100 Leda 1 -01111110100 Insolvency 1 -01111110100 Amateurism 1 -01111110100 must-legislation 1 -01111110100 Hlasnist 1 -01111110100 Shattering 1 -01111110100 Net-back 1 -01111110100 ROARE 1 -01111110100 Ontology 1 -01111110100 Mine-sweeping 1 -01111110100 Riboflavin 1 -01111110100 Lamco 1 -01111110100 WRIF 1 -01111110100 Forgery 1 -01111110100 Okpu 1 -01111110100 Flirtation 1 -01111110100 believer-clergyman 1 -01111110100 East-and-West 1 -01111110100 Coir 1 -01111110100 Self-awareness 1 -01111110100 T-PA 1 -01111110100 BEEFED-UP 1 -01111110100 Punting 1 -01111110100 integrity-assurance 1 -01111110100 Debt-shock 1 -01111110100 Self-examination 1 -01111110100 Boldface 1 -01111110100 Germplasm 1 -01111110100 Photo-radar 1 -01111110100 cow-plop 1 -01111110100 Comic-turned-TV 1 -01111110100 Methacrylate 1 -01111110100 Polyacetylene 1 -01111110100 Liftoff 1 -01111110100 Self-insurance 1 -01111110100 Tele-politics 1 -01111110100 Obscurity 1 -01111110100 Jojosumarto 1 -01111110100 Certon 1 -01111110100 Earnestness 1 -01111110100 Solid-waste 1 -01111110100 Off-terminal 1 -01111110100 Cross-dressing 1 -01111110100 Sequencing 1 -01111110100 Out-migration 1 -01111110100 Foliage 1 -01111110100 Lysine 1 -01111110100 Voodooo 1 -01111110100 Ju-ju 1 -01111110100 Benignity 1 -01111110100 Creosote 1 -01111110100 Luck-approaching 1 -01111110100 Earshot 1 -01111110100 BanPonce 1 -01111110100 exit-lighting 1 -01111110100 pro-test 1 -01111110100 Yummiedom 1 -01111110100 all-posts 1 -01111110100 Television-news 1 -01111110100 Job-switching 1 -01111110100 Mitsui-Fudosan 1 -01111110100 Petilia 1 -01111110100 Perseverance 1 -01111110100 Pandering 1 -01111110100 Courseware 1 -01111110100 horsy 1 -01111110100 Tax-avoidance 1 -01111110100 Synecdoche 1 -01111110100 Market-failure 1 -01111110100 Roadblocking 1 -01111110100 Cupid 1 -01111110100 overcall 1 -01111110100 Tallow 1 -01111110100 white-coat 1 -01111110100 Breakneck 1 -01111110100 Abstinence 1 -01111110100 Dinoseb 1 -01111110100 Orimulsion 1 -01111110100 Sinter 1 -01111110100 Transcending 1 -01111110100 Mescaline 1 -01111110100 Ohmae-God 1 -01111110100 Tunability 1 -01111110100 Anti-Nakasone 1 -01111110100 -shaped 1 -01111110100 Euro-pessimism 1 -01111110100 Surliness 1 -01111110100 Jeopardizing 1 -01111110100 CHINN 1 -01111110100 Word-of-mouth 1 -01111110100 Gloving 1 -01111110100 Daylight-saving 1 -01111110100 Polyploidy 1 -01111110100 Employability 1 -01111110100 Fujiberio 1 -01111110100 Prevailing 1 -01111110100 800-to-1 1 -01111110100 Omitted 1 -01111110100 Cumene 1 -01111110100 -era 1 -01111110100 color-picture 1 -01111110100 Polyhemoglobin 1 -01111110100 reserve-adjusted 1 -01111110100 Spoilage 1 -01111110100 Bottom-up 1 -01111110100 Attribution 1 -01111110100 Commercialism 1 -01111110100 Tabulation 1 -01111110100 window-seat 1 -01111110100 Beltline 1 -01111110100 Sangemini 1 -01111110100 COMPUTER-SOFTWARE 1 -01111110100 madrigal 1 -01111110100 Enduring 1 -01111110100 Exasperation 1 -01111110100 Chlordimeform 1 -01111110100 Checkerboarding 1 -01111110100 MID-QUARTER 1 -01111110100 pinhole 1 -01111110100 Immunotherapy 1 -01111110100 lordless 1 -01111110100 Talc 1 -01111110100 dual-pricing 1 -01111110100 Escapism 1 -01111110100 Pallor 1 -01111110100 Crumbled 1 -01111110100 Newproduct 1 -01111110100 Ooh-ah 1 -01111110100 Gestevision-Telecinco 1 -01111110100 Seeding 1 -01111110100 Midazolam 1 -01111110100 Tact 1 -01111110100 semi-secret 1 -01111110100 Childlessness 1 -01111110100 Impartiality 1 -01111110100 April-December 1 -01111110100 Institutionalization 1 -01111110100 Moisture 1 -01111110100 incincerator 1 -01111110100 Batdancing 1 -01111110100 Pectin 1 -01111110100 Instructive 1 -01111110100 Chit-chat 1 -01111110100 Debt-financed 1 -01111110100 Localism 1 -01111110100 cross-over 1 -01111110100 Gratification 1 -01111110100 McIngvale 1 -01111110100 b-Percent 1 -01111110100 EXPORTING 1 -01111110100 Fast-breaking 1 -01111110100 professional-managerial 1 -01111110100 bubbler 1 -01111110100 Grade-school 1 -01111110100 Topsoil 1 -01111110100 Likability 1 -01111110100 Dealmaking 1 -01111110100 Orphan-drug 1 -01111110100 FLEX-TIME 1 -01111110100 labouring 1 -01111110100 deconsolidation 1 -01111110100 Firefighting 1 -01111110100 Bentonite 1 -01111110100 Symbolic 1 -01111110100 Chloroquine 1 -01111110100 Irreverence 1 -01111110100 Inventory-probing 1 -01111110100 Elaboration 1 -01111110100 Advertorial 1 -01111110100 Speechmaking 1 -01111110100 HEADHUNTING 1 -01111110100 Endometriosis 1 -01111110100 Electrogalvanizing 1 -01111110100 establisment 1 -01111110100 Moralizing 1 -01111110100 Imaginary 1 -01111110100 Acetylcholine 1 -01111110100 make-it-or-break-it 1 -01111110100 Undisputed 1 -01111110100 INN 1 -01111110100 Missionizing 1 -01111110100 Dystrophin 1 -01111110100 Gouging 1 -01111110100 Littering 1 -01111110100 Primogeniture 1 -01111110100 Zooming 1 -01111110100 Hodgepodge 1 -01111110100 job-strain 1 -01111110100 Arbitraging 1 -01111110100 Veiling 1 -01111110100 Ego-stroking 1 -01111110100 Massonaud-Fontenay 1 -01111110100 Coolies 1 -01111110100 reach-for-yield 1 -01111110100 Tardiness 1 -01111110100 feast-famine 1 -01111110100 Porno-movie 1 -01111110100 Clozapine 1 -01111110100 Electrowinning 1 -01111110100 Biodegradability 1 -01111110100 b-Percentage 1 -01111110100 f-Percentage 1 -01111110100 GFSA 1 -01111110100 Paraquat 1 -01111110100 Tebuthiuron 1 -01111110100 Victimization 1 -01111110100 labeling-overkill 1 -01111110100 Hyperopia 1 -01111110100 Millenarianism 1 -01111110100 Redesign 1 -01111110100 Peacemaking 1 -01111110100 Procrastination 1 -01111110100 Kaixi 1 -01111110100 Over-hasty 1 -01111110100 ROTENSTREICH 1 -01111110100 FCB/LKP 1 -01111110100 Basswood 1 -01111110100 lead-pipe-cinch 1 -01111110100 Brilliance 1 -01111110100 Trade-mart 1 -01111110100 Expert-development-system 1 -01111110100 Centralism 1 -01111110100 Verisimilitude 1 -01111110100 WIPO 1 -01111110100 PAC-driven 1 -01111110100 Bait-and-switch 1 -01111110100 SDIO 1 -01111110100 Foxfie 1 -01111110100 Indomethacin 1 -01111110100 Reapportionment 1 -01111110100 TALL 1 -01111110100 Pentagon-bashing 1 -01111110100 Case-by-case 2 -01111110100 Normalcy 2 -01111110100 Piping 2 -01111110100 Elapsed 2 -01111110100 corporativism 2 -01111110100 Barristers 2 -01111110100 Stalling 2 -01111110100 Cyanazine 2 -01111110100 One-day 2 -01111110100 Linerboard 2 -01111110100 Traumatic 2 -01111110100 Ground-breaking 2 -01111110100 Maquila 2 -01111110100 Geopolitical 2 -01111110100 Familiarity 2 -01111110100 Waslic 2 -01111110100 Superoxide 2 -01111110100 Visibility 2 -01111110100 Vermiculite 2 -01111110100 Irrigation 2 -01111110100 Levamisole 2 -01111110100 Acreage 2 -01111110100 Disenchantment 2 -01111110100 Bimbosis 2 -01111110100 Misappropriation 2 -01111110100 Apologizing 2 -01111110100 Borrower 2 -01111110100 Partition 2 -01111110100 Risk-taking 2 -01111110100 Antifreeze 2 -01111110100 Foreclosure 2 -01111110100 Methadone 2 -01111110100 Carpeting 2 -01111110100 Influenza 2 -01111110100 Melodramatic 2 -01111110100 Corto-plazismo 2 -01111110100 Psoriasis 2 -01111110100 Officialdom 2 -01111110100 Sputtering 2 -01111110100 Angioplasty 2 -01111110100 Record-keeping 2 -01111110100 Temperament 2 -01111110100 Honesty 2 -01111110100 Lupus 2 -01111110100 Mexico-bashing 2 -01111110100 Foot-dragging 2 -01111110100 Illiquidity 2 -01111110100 Snoring 2 -01111110100 Leakers 2 -01111110100 Mortons 2 -01111110100 Xenophobia 2 -01111110100 Suicide 3 -01111110100 Benzene 3 -01111110100 Objectivity 3 -01111110100 Self-regulation 3 -01111110100 Self-interest 3 -01111110100 Polysilicon 3 -01111110100 Psychotherapy 3 -01111110100 Villahermosa 3 -01111110100 Rapeseed 3 -01111110100 Dissemination 3 -01111110100 Aggressiveness 3 -01111110100 Casein 3 -01111110100 Hydrogen 3 -01111110100 Zucchini 3 -01111110100 Vanillin 3 -01111110100 Weekday 3 -01111110100 Cohabitation 3 -01111110100 Polypropylene 3 -01111110100 Bitumen 3 -01111110100 Subsidy 3 -01111110100 PARKING 3 -01111110100 Dextran 3 -01111110100 Technique 3 -01111110100 Countertrade 3 -01111110100 Overcapacity 3 -01111110100 Ethane 3 -01111110100 ENTREPRENEURSHIP 3 -01111110100 Hypertension 3 -01111110100 Jai-alai 3 -01111110100 Lodgepole 4 -01111110100 Anti-sense 4 -01111110100 Trimetrexate 4 -01111110100 Slivovitz 4 -01111110100 Repackaging 4 -01111110100 Arraignment 4 -01111110100 Psyllium 4 -01111110100 Homework 4 -01111110100 Homelessness 4 -01111110100 Shorting 5 -01111110100 Imitation 5 -01111110100 Twelfth 5 -01111110100 Contraception 5 -01111110100 Shivering 5 -01111110100 Recruitment 5 -01111110100 Polyethylene 5 -01111110100 DESIGN 5 -01111110100 Flaps 5 -01111110100 Dioxin 5 -01111110100 Hers 6 -01111110100 Suspicion 6 -01111110100 Nicotine 6 -01111110100 Hashing 6 -01111110100 Gallium 6 -01111110100 Cute 6 -01111110100 Flexibility 6 -01111110100 Front-running 6 -01111110100 Confidentiality 6 -01111110100 Plutonium 7 -01111110100 Manga 7 -01111110100 Overtime 8 -01111110100 Globalization 9 -01111110100 Feminism 9 -01111110100 Profitability 10 -01111110100 Theirs 11 -01111110100 Indexing 15 -01111110100 Compromise 16 -01111110100 Ozone 17 -01111110100 Size 17 -01111110100 Aflatoxin 22 -01111110100 Morale 32 -01111110100 Dumping 56 -01111110100 Deregulation 61 -01111110100 Which 310 -01111110100 Inflation 313 -01111110100 This 18663 -01111110100 Every 911 -01111110101 Reneging 1 -01111110101 Pillage 1 -01111110101 Four-wheel-steering 1 -01111110101 Socko 1 -01111110101 Railroadmen 1 -01111110101 MBX 1 -01111110101 Variance 1 -01111110101 Microgeneration 1 -01111110101 Lyricists 1 -01111110101 fulsomely 1 -01111110101 Acrophobia 1 -01111110101 Beatification 1 -01111110101 Militarism 1 -01111110101 Hubbing 1 -01111110101 Abandonment 1 -01111110101 Peak-shedding 1 -01111110101 Non-Communists 1 -01111110101 BioAnalogics 1 -01111110101 Shuttles 1 -01111110101 Undertaker 1 -01111110101 Xcelite 1 -01111110101 Perjurer 1 -01111110101 Thrips 1 -01111110101 Recounts 1 -01111110101 Sacino 1 -01111110101 Monoline 1 -01111110101 Chesebrough-pond 1 -01111110101 Potsdamers 1 -01111110101 SpectraPhysics 1 -01111110101 Colonialism 1 -01111110101 Celluar 1 -01111110101 Holography 1 -01111110101 Ciba-Giegy 1 -01111110101 Hormones 1 -01111110101 Fetuses 1 -01111110101 Candi 1 -01111110101 Conquistarose 1 -01111110101 WAREHOUSE 1 -01111110101 Amputation 1 -01111110101 Embezzler 1 -01111110101 Shortfalls 1 -01111110101 ROYALTIES 1 -01111110101 Sympathetically 1 -01111110101 Homeporting 1 -01111110101 Micro-images 1 -01111110101 Assessments 1 -01111110101 Incumbency 1 -01111110101 Saber-rattling 1 -01111110101 super-realistic 1 -01111110101 Hypochondriac 1 -01111110101 Deployed 1 -01111110101 Tele-Communication 1 -01111110101 Bahrian 1 -01111110101 TWA-USAir 1 -01111110101 Skiers 1 -01111110101 Wheeling-Pittsburg 1 -01111110101 Gourmets 1 -01111110101 Vinegar 1 -01111110101 Overallotments 1 -01111110101 Cheesecloth 1 -01111110101 Chryon 1 -01111110101 SaabScania 1 -01111110101 Plows 1 -01111110101 .It 1 -01111110101 Breathalyzers 1 -01111110101 .There 1 -01111110101 Rykoff 1 -01111110101 Teatime 1 -01111110101 Fragophiles 1 -01111110101 Hypothyroidism 1 -01111110101 MBLE 1 -01111110101 Floodwaters 1 -01111110101 Never-known 1 -01111110101 Mr.Cooke 1 -01111110101 DETECTOR 1 -01111110101 Laggards 1 -01111110101 Duly 1 -01111110101 Non-Russians 1 -01111110101 Saturation 1 -01111110101 Galvanizing 1 -01111110101 antigenic 1 -01111110101 ROBOTS 1 -01111110101 Accommodation 1 -01111110101 Potsherds 1 -01111110101 E-System 1 -01111110101 Reserving 1 -01111110101 Illegality 1 -01111110101 Decriminalization 1 -01111110101 Irretrievably 1 -01111110101 reeport-McMoRan 1 -01111110101 In-duct 1 -01111110101 Serrine 1 -01111110101 IEF 1 -01111110101 Scrubbers 1 -01111110101 Coerced 1 -01111110101 TELEMARKETING 1 -01111110101 Fists 1 -01111110101 Snacking 1 -01111110101 Aphrodite 1 -01111110101 Overfertilizing 1 -01111110101 MUSI 1 -01111110101 Registrants 1 -01111110101 Cunny-thumb 1 -01111110101 Straddles 1 -01111110101 Asset-stripping 1 -01111110101 Khamir 1 -01111110101 Urgently 1 -01111110101 Aboriginals 1 -01111110101 Delicacy 1 -01111110101 Buy-back 2 -01111110101 Priests 2 -01111110101 Ex-smokers 2 -01111110101 Demolition 2 -01111110101 Probenecid 2 -01111110101 Lentulov 2 -01111110101 ForeSight 2 -01111110101 Bathers 2 -01111110101 Prominently 2 -01111110101 Centralization 2 -01111110101 Simonomics 2 -01111110101 INVESTCORP 2 -01111110101 Exempted 2 -01111110101 Straight-line 2 -01111110101 Gerome 2 -01111110101 Indignation 2 -01111110101 Upfront 2 -01111110101 Ever-increasing 2 -01111110101 Fifty-fifty 2 -01111110101 TAXPAYER 3 -01111110101 Sequestration 3 -01111110101 Hardliners 3 -01111110101 Frill 3 -01111110101 Amiprilose 3 -01111110101 Spectron 3 -01111110101 Estrogen 3 -01111110101 Melanin 3 -01111110101 Cross-margining 4 -01111110101 BB&K 4 -01111110101 FISCAL-YEAR 4 -01111110101 EIB 5 -01111110101 Refinancing 5 -01111110101 Dial-a-porn 5 -01111110101 Krista 5 -01111110101 OperaDelaware 5 -01111110101 Renny 5 -01111110101 Noticeably 5 -01111110101 Irony 6 -01111110101 Whichever 14 -01111110101 That 19242 -01111110101 Hardest 20 -01111110110 Canvas 1 -01111110110 Straightforwardness 1 -01111110110 Inconsistency 1 -01111110110 Heterodoxy 1 -01111110110 Log-rolling 1 -01111110110 Alarms 1 -01111110110 Unstated 1 -01111110110 triboluminescence 1 -01111110110 Vessels 1 -01111110110 Wetness 1 -01111110110 Otherworldly 1 -01111110110 Finetuning 1 -01111110110 Mr.Rogers 1 -01111110110 Dialect 1 -01111110110 Coherence 1 -01111110110 Unpredictability 1 -01111110110 Euro-communist 1 -01111110110 .it 1 -01111110110 /We 1 -01111110110 Demagoguery 1 -01111110110 Songwriting 1 -01111110110 IGBE 1 -01111110110 Jueteng 1 -01111110110 Etretinate 1 -01111110110 ex-son-in-law 1 -01111110110 Azidothymidine 1 -01111110110 Overcrowding 1 -01111110110 Capital-sharing 1 -01111110110 Evangelism 1 -01111110110 Prose 1 -01111110110 Gratitude 1 -01111110110 Nonreimbursed 1 -01111110110 Kinship 1 -01111110110 Retroactivity 1 -01111110110 Opera-Delaware 1 -01111110110 Fanaticism 1 -01111110110 Meese-bashing 1 -01111110110 Sterilization 1 -01111110110 Decentralizing 1 -01111110110 .money 1 -01111110110 Second-sourcing 1 -01111110110 Sectionalism 1 -01111110110 Miscasting 1 -01111110110 Indebtedness 1 -01111110110 Contemplation 1 -01111110110 Toddlers 1 -01111110110 JUICY 1 -01111110110 Serendipity 1 -01111110110 Austria-bashing 1 -01111110110 Collectibility 1 -01111110110 Laissez-faire 1 -01111110110 Homophobia 1 -01111110110 Homage 1 -01111110110 Hazama-Gumi 1 -01111110110 Clonidine 1 -01111110110 Profanity 1 -01111110110 Southnet 1 -01111110110 Nemerov 1 -01111110110 Largeness 1 -01111110110 Foreman-Qawi 1 -01111110110 Understandings 1 -01111110110 Acrimony 1 -01111110110 Snap-shooters 1 -01111110110 Upkeep 1 -01111110110 Overbooking 1 -01111110110 Shipbuildings 1 -01111110110 Multilateralism 1 -01111110110 Millward 1 -01111110110 Sopako 1 -01111110110 Overdosing 1 -01111110110 Cortisone 1 -01111110110 Mr.Aquino 1 -01111110110 Hokey 1 -01111110110 Low-pitch 1 -01111110110 Pettifoggery 1 -01111110110 Business-as-usual 1 -01111110110 Stifter 1 -01111110110 Poaching 1 -01111110110 Tollman 1 -01111110110 Mischarging 1 -01111110110 Paderewski 1 -01111110110 Deathbed 1 -01111110110 stabililty 1 -01111110110 Mayehzabeh 1 -01111110110 CP&L 1 -01111110110 More-relaxed 1 -01111110110 Image-building 2 -01111110110 Stone-washing 2 -01111110110 Dogtown 2 -01111110110 Shunto 2 -01111110110 Segregation 2 -01111110110 Dissension 2 -01111110110 Daminozide 2 -01111110110 Groupware 2 -01111110110 squeamishness 2 -01111110110 Sleepwalking 2 -01111110110 Stollen 2 -01111110110 Image-processing 2 -01111110110 Urbanization 2 -01111110110 Self-sufficiency 2 -01111110110 Gemfibrozil 2 -01111110110 Buprenorphine 2 -01111110110 Pork-barreling 2 -01111110110 Picketing 2 -01111110110 Memberships 2 -01111110110 Bipartisanship 2 -01111110110 Gravity 2 -01111110110 Home-building 2 -01111110110 RIMS 2 -01111110110 Bond-holders 2 -01111110110 Hashish 2 -01111110110 Symbolism 2 -01111110110 Retrorunning 2 -01111110110 Instability 2 -01111110110 wiener 2 -01111110110 Paramaribo 2 -01111110110 Sojuzkarta 2 -01111110110 Jamming 3 -01111110110 Gaspesia 3 -01111110110 DISK 3 -01111110110 Unionism 3 -01111110110 Osteoporosis 4 -01111110110 Austerity 4 -01111110110 Lovastatin 4 -01111110110 Decertification 4 -01111110110 Gentrification 5 -01111110110 Boredom 6 -01111110110 Workfare 6 -01111110110 It 51431 -01111110110 Streptokinase 13 -01111110111 Degradability 1 -01111110111 Suitors 1 -01111110111 Calisthenics 1 -01111110111 Marigolds 1 -01111110111 Gruel 1 -01111110111 Garbage-pickers 1 -01111110111 Brakemen 1 -01111110111 Zeros 1 -01111110111 Spices 1 -01111110111 Oversights 1 -01111110111 Overruns 1 -01111110111 Tangos 1 -01111110111 Uphemisms 1 -01111110111 back-packer 1 -01111110111 Yogis 1 -01111110111 Geminis 1 -01111110111 Mean-spiritedness 1 -01111110111 Walk-ins 1 -01111110111 Paroles 1 -01111110111 Smelt 1 -01111110111 Landlubbers 1 -01111110111 Indiana-no-place 1 -01111110111 Surcharges 1 -01111110111 GALLSTONES 1 -01111110111 Ysabel 1 -01111110111 two-McDonald 1 -01111110111 Non-residents 1 -01111110111 Atherosclerosis 1 -01111110111 Trouble-shooters 1 -01111110111 Blowouts 1 -01111110111 Rosters 1 -01111110111 Superminicomputers 1 -01111110111 Sabbaticals 1 -01111110111 Whitewash 1 -01111110111 Jubilees 1 -01111110111 Aspirations 1 -01111110111 Rapists 1 -01111110111 Interviewees 1 -01111110111 Meinong 1 -01111110111 Annulments 1 -01111110111 Lubricants 1 -01111110111 Decoders 1 -01111110111 Captions 1 -01111110111 Weekends 1 -01111110111 Benchmarks 1 -01111110111 Sheepskin 1 -01111110111 Publicans 1 -01111110111 Forgeries 1 -01111110111 Secuestros 1 -01111110111 Cuteness 1 -01111110111 Backstrokers 1 -01111110111 Collisions 1 -01111110111 Rotaters 1 -01111110111 Distractions 1 -01111110111 Hospices 1 -01111110111 Businesswomen 1 -01111110111 Junkies 1 -01111110111 Courtships 1 -01111110111 Puns 1 -01111110111 Warmth 1 -01111110111 Geese 1 -01111110111 BreakMates 1 -01111110111 Minks 1 -01111110111 Waterbeds 1 -01111110111 Home-hunters 1 -01111110111 Noncommittal 1 -01111110111 Refurbishment 1 -01111110111 Gapologists 1 -01111110111 leachate 1 -01111110111 Face-to-Face 1 -01111110111 Microorganisms 1 -01111110111 Rejects 1 -01111110111 Waivers 1 -01111110111 Basrawis 1 -01111110111 mmmm 1 -01111110111 Obscenity 1 -01111110111 Restitutions 1 -01111110111 Worshippers 1 -01111110111 Industry-watchers 1 -01111110111 Surinamese 1 -01111110111 Compartmentalizing 1 -01111110111 Four-wheelers 1 -01111110111 Hosie 1 -01111110111 Rehearings 1 -01111110111 Radiopharmaceuticals 1 -01111110111 Endorsements 1 -01111110111 Door-to-door 1 -01111110111 Neoliberals 1 -01111110111 Avocadoes 1 -01111110111 Cover-ups 1 -01111110111 Chronicity 1 -01111110111 Palms 1 -01111110111 Symbols 1 -01111110111 Yams 1 -01111110111 Hairdressers 1 -01111110111 Farsightedness 1 -01111110111 Boozers 1 -01111110111 Disbelief 1 -01111110111 Mangosteens 1 -01111110111 Ex-Congressman 1 -01111110111 School-building 1 -01111110111 Oratory 1 -01111110111 Cavers 1 -01111110111 Incinerators 1 -01111110111 Chistmas 1 -01111110111 Drones 1 -01111110111 Partridges 1 -01111110111 Massacres 1 -01111110111 Badgers 1 -01111110111 Submariners 1 -01111110111 Southwesterners 1 -01111110111 Extensions 1 -01111110111 Ethanolamines 1 -01111110111 Depressions 1 -01111110111 Minimills 1 -01111110111 Cadres 1 -01111110111 Constitutions 1 -01111110111 Nightcrawlers 1 -01111110111 Curmudgeons 1 -01111110111 Heroics 1 -01111110111 Noboby 1 -01111110111 Surrogates 1 -01111110111 Calipers 1 -01111110111 Gondra 1 -01111110111 Frittatas 1 -01111110111 Pushups 1 -01111110111 Fortnight 1 -01111110111 Dictatorship 1 -01111110111 Rehearing 1 -01111110111 Tailings 1 -01111110111 Stoicism 1 -01111110111 Astrologists 1 -01111110111 Mornings 1 -01111110111 Cautions 1 -01111110111 Tattinger 1 -01111110111 Guarding 1 -01111110111 Ordering 1 -01111110111 Mangroves 1 -01111110111 Compromises 1 -01111110111 Four-tenths 1 -01111110111 .People 1 -01111110111 Wafers 1 -01111110111 ABZ 1 -01111110111 Blindman 1 -01111110111 Non-Moldavians 1 -01111110111 Matchmaking 1 -01111110111 Conforming 1 -01111110111 Hazelnuts 1 -01111110111 Reputation 1 -01111110111 Preservatives 1 -01111110111 INVENTIONS 1 -01111110111 Collectivas 1 -01111110111 Rescissions 1 -01111110111 S-RAMs 1 -01111110111 Logbooks 1 -01111110111 Sightseeing 1 -01111110111 Non-officers 1 -01111110111 Bradykinins 1 -01111110111 Tear-jerkers 1 -01111110111 Suzi 1 -01111110111 RVB 1 -01111110111 Cable-bashing 1 -01111110111 Anniversaries 1 -01111110111 Frankfurt-Berlin 1 -01111110111 Righteousness 1 -01111110111 Ex-jocks 1 -01111110111 Getaways 1 -01111110111 Tiering 1 -01111110111 Knives 1 -01111110111 Rhyme 1 -01111110111 Furloughs 1 -01111110111 Backpackers 1 -01111110111 Survivability 1 -01111110111 Talkativeness 1 -01111110111 Greasies 1 -01111110111 Floppies 1 -01111110111 Muggers 1 -01111110111 DELEGATOR-MANAGERS 1 -01111110111 swhich 1 -01111110111 Courtrooms 1 -01111110111 Storytellers 1 -01111110111 narco-communism 1 -01111110111 Media-buying 1 -01111110111 Polygamy 1 -01111110111 Underdiagnoses 1 -01111110111 Drug-free 1 -01111110111 Smokejumpers 1 -01111110111 Hospitable 1 -01111110111 Ring-leaders 1 -01111110111 Voids 1 -01111110111 Polystyrenics 1 -01111110111 Felons 1 -01111110111 Roadblocks 1 -01111110111 Incrementalism 1 -01111110111 Beards 1 -01111110111 Misleaders 1 -01111110111 Remainders 1 -01111110111 User-friendly 1 -01111110111 Cartographers 1 -01111110111 Musicals 1 -01111110111 Landfills 1 -01111110111 PNP 1 -01111110111 Caviar-lovers 1 -01111110111 Raccoons 1 -01111110111 Dioxins 1 -01111110111 Toxins 1 -01111110111 Engaging 1 -01111110111 Extracts 1 -01111110111 Piggy-backing 1 -01111110111 jaywalkers 1 -01111110111 Job-hopping 1 -01111110111 Seams 1 -01111110111 Cross-pollination 1 -01111110111 Noddy 1 -01111110111 anti-capitalism 1 -01111110111 Speakership 1 -01111110111 Earthlings 1 -01111110111 Panhandlers 1 -01111110111 Venues 1 -01111110111 Potshots 1 -01111110111 noboby 1 -01111110111 Markups 1 -01111110111 Fly-fishermen 1 -01111110111 Antibiotics 1 -01111110111 Hydrochlorothiazides 1 -01111110111 Bumpkin 1 -01111110111 Fatso 1 -01111110111 Desks 1 -01111110111 Villains 1 -01111110111 FEMALES 2 -01111110111 Juggling 2 -01111110111 Bagpipes 2 -01111110111 Expatriates 2 -01111110111 Cleanliness 2 -01111110111 Bad-mouthing 2 -01111110111 Taping 2 -01111110111 Informers 2 -01111110111 Feedback 2 -01111110111 Bootleggers 2 -01111110111 Nematodes 2 -01111110111 Tombstones 2 -01111110111 Linkage 2 -01111110111 Whodunit 2 -01111110111 Microchips 2 -01111110111 Railbikes 2 -01111110111 Underemployment 2 -01111110111 Solos 2 -01111110111 Phobias 2 -01111110111 Mail-Order 2 -01111110111 Swampbuster 2 -01111110111 Slowness 2 -01111110111 Signatories 2 -01111110111 Compliments 2 -01111110111 LoveSexy 2 -01111110111 Estuaries 2 -01111110111 Prospecting 2 -01111110111 Lobsters 2 -01111110111 Laughter 2 -01111110111 Hindsight 2 -01111110111 Curfews 2 -01111110111 Scripts 2 -01111110111 Overblown 2 -01111110111 Stipends 2 -01111110111 Jockeys 2 -01111110111 Tenampa 2 -01111110111 Kiessling 2 -01111110111 Shapes 2 -01111110111 Competency 2 -01111110111 Bohemianism 2 -01111110111 Discretion 3 -01111110111 FIAC 3 -01111110111 Galaxies 3 -01111110111 Knees 3 -01111110111 Specialization 3 -01111110111 Gondolas 3 -01111110111 Perceptions 3 -01111110111 Scooters 3 -01111110111 Loyalties 3 -01111110111 Securitization 3 -01111110111 Maneater 3 -01111110111 Mainframes 3 -01111110111 Horoscopes 3 -01111110111 Radios 3 -01111110111 Plaque 3 -01111110111 Anthropologists 3 -01111110111 Suspensions 3 -01111110111 Trainees 3 -01111110111 Titles 3 -01111110111 Raids 3 -01111110111 Oncogenes 3 -01111110111 Ideologues 4 -01111110111 Sakau 4 -01111110111 Residuals 4 -01111110111 Prizzi 4 -01111110111 Pay-per-view 4 -01111110111 Manipulation 4 -01111110111 Blazing 4 -01111110111 Honorariums 4 -01111110111 Enclosed 5 -01111110111 Landowners 5 -01111110111 Illiteracy 5 -01111110111 Vampire 5 -01111110111 Correspondent 6 -01111110111 Entries 6 -01111110111 Dissent 7 -01111110111 Roasters 12 -01111110111 Winnings 12 -01111110111 Surfing 13 -01111110111 Ethylene 17 -01111110111 Ours 30 -01111110111 Trouble 79 -01111110111 Nowhere 109 -01111110111 Gone 109 -01111110111 There 15145 -01111110111 Here 2184 -011111110 Snickering 1 -011111110 Beggar-thy-neighbor 1 -011111110 Glassboro 1 -011111110 Unnoticed 1 -011111110 Provincialism 1 -011111110 Zackerman 1 -011111110 GENERATORS 1 -011111110 Minis 1 -011111110 Superiority 1 -011111110 Autolatina-Comercio 1 -011111110 Non-degreed 1 -011111110 Procedurally 1 -011111110 Well-researched 1 -011111110 Karlsten 1 -011111110 DOLPHINS 1 -011111110 Self-mutilation 1 -011111110 STAMFORD 1 -011111110 Mini-malls 1 -011111110 CINNAMINSON 1 -011111110 DRYDEN 1 -011111110 Homicides 1 -011111110 FONTANA 1 -011111110 Wondervision 1 -011111110 Necklaces 1 -011111110 Analogously 1 -011111110 TULSA 1 -011111110 SORRY 1 -011111110 Edgerton 1 -011111110 CIMCO 1 -011111110 Craftmatic 1 -011111110 Half-seriously 1 -011111110 Manifestly 1 -011111110 Solomonlike 1 -011111110 Estelbina 1 -011111110 Charismatics 1 -011111110 BURBANK 1 -011111110 Tactfully 1 -011111110 Spacesuits 1 -011111110 EAGAN 1 -011111110 Boron 1 -011111110 Deficit-financed 1 -011111110 LeRoys 1 -011111110 handslaps 1 -011111110 Schlami 1 -011111110 Sidjakov 1 -011111110 JAKARTA 1 -011111110 Ropongi 1 -011111110 Bidwai 1 -011111110 Acupuncturists 1 -011111110 Nathan/Tyler 1 -011111110 TUNIS 1 -011111110 Flamenco 1 -011111110 BIOCONTROL 1 -011111110 Uncowed 1 -011111110 Strawflowers 1 -011111110 SUPERCOMPUTERS 1 -011111110 Gordex 1 -011111110 Tamoxifen 1 -011111110 Vroom-Kastelein 1 -011111110 Hotelmotel 1 -011111110 FliteCalc 1 -011111110 HILB 1 -011111110 Clocks 1 -011111110 Med-Fax 1 -011111110 Morira 1 -011111110 Pampering 1 -011111110 Clyff 1 -011111110 SOUTHFIELD 1 -011111110 Break-dancing 1 -011111110 Plankton 1 -011111110 Noodling 1 -011111110 Geopolitically 1 -011111110 Oncocin 1 -011111110 Glaze-eyed 1 -011111110 LIMOUSINES 1 -011111110 Pilferage 1 -011111110 Effervescent 1 -011111110 Garello 1 -011111110 Ussery 1 -011111110 WXCR-FM 1 -011111110 SYRACUSE 1 -011111110 Isui 1 -011111110 Authenticity 1 -011111110 WNET-TV 1 -011111110 Penicillin 1 -011111110 Gamely 1 -011111110 Neutropenia 1 -011111110 Texture 1 -011111110 Utilitarianism 1 -011111110 Michaan 1 -011111110 Blooms 1 -011111110 Alico 1 -011111110 Elegantly 1 -011111110 MINOXIDIL 1 -011111110 SUBORDINATE 1 -011111110 Bromines 1 -011111110 Oparin 1 -011111110 Customer-raiding 1 -011111110 Engelwood 1 -011111110 Cranks 1 -011111110 Keyboards 1 -011111110 1988-style 1 -011111110 Unamused 1 -011111110 Lonhro 1 -011111110 Adventest 1 -011111110 Diaphragms 1 -011111110 Amniocentesis 1 -011111110 Respecting 1 -011111110 Imprecision 1 -011111110 Decree-laws 1 -011111110 Overwhelmingly 1 -011111110 Pawtuckett 1 -011111110 Balding 1 -011111110 Camping 1 -011111110 Zivijinovic 1 -011111110 Ideologically 1 -011111110 FD3878 1 -011111110 Strong-minded 1 -011111110 Roofless 1 -011111110 Intuitively 1 -011111110 Anthrax 1 -011111110 Obreras 1 -011111110 squint-eyed 1 -011111110 Voskhod 1 -011111110 Volna 1 -011111110 Guriya 1 -011111110 Gumista 1 -011111110 Yildiz 1 -011111110 TISZA 1 -011111110 Kolkhioa 1 -011111110 Vstrecha 1 -011111110 Arevik 1 -011111110 Apsheron 1 -011111110 Skazka 1 -011111110 Myikhua 1 -011111110 Air-driven 1 -011111110 Assol 1 -011111110 Antrakt 1 -011111110 Vika 1 -011111110 Berigi 1 -011111110 Agar-agar 1 -011111110 Hertogenbosch 1 -011111110 Hawtal-Whiting 1 -011111110 Cost-sharing 1 -011111110 Maddeningly 1 -011111110 Secretly 1 -011111110 Hoopeston 1 -011111110 Beitzel 1 -011111110 Couponing 1 -011111110 Streamlinings 1 -011111110 COSATU 1 -011111110 NAFCOC 1 -011111110 Heavyset 1 -011111110 FLRA 1 -011111110 Calico 1 -011111110 Rancoo 1 -011111110 Mirvac 1 -011111110 Consquently 1 -011111110 Kyomi 1 -011111110 Sayuri 1 -011111110 peruana 1 -011111110 Editorialists 1 -011111110 Mathematicians 1 -011111110 Unleashed 1 -011111110 Barneus 1 -011111110 Unintentionally 1 -011111110 DriverGuide 1 -011111110 Self-care 1 -011111110 On-again 1 -011111110 Ameriwest 1 -011111110 CRYSTALLUME 1 -011111110 Yamagiwa 1 -011111110 SEPTUAGENARIANS 1 -011111110 Rasberry 1 -011111110 Bat-fans 1 -011111110 Fee-setting 1 -011111110 Schoolbooks 1 -011111110 Ganciclovir 1 -011111110 Universally 1 -011111110 Corporate-wide 1 -011111110 Wildebeests 1 -011111110 Ticket-splitting 1 -011111110 High-value 1 -011111110 Shampoos 1 -011111110 Self-Development 1 -011111110 DONALDSON 1 -011111110 Monetarily 1 -011111110 Overtly 1 -011111110 Raja 1 -011111110 Buy-stops 1 -011111110 Unpersuaded 1 -011111110 Mixups 1 -011111110 Arten 1 -011111110 AKRON 1 -011111110 Earmuffs 1 -011111110 JACKSONVILLE 1 -011111110 Unchallenged 1 -011111110 Cerniglia 1 -011111110 PHOTOFINISHERS 1 -011111110 Blomkvest 1 -011111110 Equilibrium 1 -011111110 Amusingly 1 -011111110 Biographies 1 -011111110 Sobbing 1 -011111110 Guilt-ridden 1 -011111110 COINCIDENTALLY 1 -011111110 Kertosastro 1 -011111110 Stalwart 1 -011111110 Vucenich 1 -011111110 Fujirebio 1 -011111110 Smelteverk 1 -011111110 Flattered 1 -011111110 Grothgar 1 -011111110 AMARILLO 1 -011111110 BETAVON 1 -011111110 DMY 1 -011111110 Acyclovir 1 -011111110 Fresh-faced 1 -011111110 No-shows 1 -011111110 Guante 1 -011111110 Shooters 1 -011111110 BISMARCK 1 -011111110 Middle-of-the-roaders 1 -011111110 Denti 1 -011111110 Regradless 1 -011111110 KEYCORP. 1 -011111110 monohydrate 1 -011111110 Undetected 1 -011111110 Barpassers 1 -011111110 Thursday-Sunday 1 -011111110 Delicately 1 -011111110 Formatting 1 -011111110 Time-consuming 1 -011111110 UNDOUBTEDLY 1 -011111110 Ribaminol 1 -011111110 MacFadden-Bartell 1 -011111110 Tsakotelis 1 -011111110 Retitled 1 -011111110 BBC-BROWN 1 -011111110 Paddio 1 -011111110 Baibakov 1 -011111110 Phadoonsidhi 1 -011111110 Dardarananda 1 -011111110 Bouhired 1 -011111110 Obligingly 1 -011111110 Cefazoline 1 -011111110 Unluckily 1 -011111110 Face-licking 1 -011111110 Ganatra 1 -011111110 INEVITABLY 1 -011111110 Minamio 1 -011111110 Enviously 1 -011111110 Mercantilism 1 -011111110 Monday-Thursday 1 -011111110 MBH 1 -011111110 Polished 1 -011111110 Cyclosporin 1 -011111110 Donkeys 1 -011111110 Subdivided 1 -011111110 AH 1 -011111110 Trifecta 1 -011111110 Risotto 1 -011111110 Dideoxyadenosine 1 -011111110 Phlebitis 1 -011111110 Upriver 1 -011111110 Untitled 1 -011111110 Shimokawa 1 -011111110 Laghi 1 -011111110 Eadie 1 -011111110 Surfboards 1 -011111110 Indignant 1 -011111110 Commodity-based 1 -011111110 Slapstick 1 -011111110 Dipscam 1 -011111110 Meanhwile 1 -011111110 Siamwalla 1 -011111110 Suntrangkoon 1 -011111110 Pornpiriyakulchai 1 -011111110 Harnage 1 -011111110 Informally 1 -011111110 Unconquered 1 -011111110 Hostage-taking 1 -011111110 Outsized 1 -011111110 Mailmen 1 -011111110 Schoolmates 1 -011111110 Pneumonia 1 -011111110 Lozol 1 -011111110 Droll 1 -011111110 Undismayed 1 -011111110 DEMOTED 1 -011111110 Moralistic 1 -011111110 Non-Moslems 1 -011111110 Nikkatsu 1 -011111110 NATIONALLY 1 -011111110 Reassured 1 -011111110 Durians 1 -011111110 Fruiteries 1 -011111110 Wheelbarrows 1 -011111110 Szeklers 1 -011111110 Sooksomchitra 1 -011111110 Payavichien 1 -011111110 Bullfighters 1 -011111110 LATELY 1 -011111110 CHACABUCO 1 -011111110 Mittal 1 -011111110 Biologically 1 -011111110 Horsefeathers 1 -011111110 Agco 1 -011111110 Predictibly 1 -011111110 Adultery 1 -011111110 Heartened 1 -011111110 KYOTO 1 -011111110 Terauchi 1 -011111110 Disappointingly 1 -011111110 Elsag 1 -011111110 Weariness 1 -011111110 bowsprits 1 -011111110 Click-plop 1 -011111110 Passports 1 -011111110 Unrecorded 1 -011111110 Pennants 1 -011111110 ADIDAS 1 -011111110 Mazelike 1 -011111110 PACIFICORP 1 -011111110 Weingarden 1 -011111110 Plotting 1 -011111110 Languidly 1 -011111110 Glutaraldehyde 1 -011111110 Surrealism 1 -011111110 Honeybees 1 -011111110 Smallpox 1 -011111110 Faculties 1 -011111110 Visaless 1 -011111110 FARROW 1 -011111110 Recovered 1 -011111110 Thereupon 1 -011111110 ARMONK 1 -011111110 Moreoever 1 -011111110 LIMA 1 -011111110 Confrontational 1 -011111110 Stockslager 1 -011111110 Cypus 1 -011111110 DEPRESSED 1 -011111110 Pseudorabies 1 -011111110 SCHAUMBURG 1 -011111110 Theatrics 1 -011111110 Self-pity 1 -011111110 Cariplo 1 -011111110 USTS 1 -011111110 Tenors 1 -011111110 Inspeech 1 -011111110 subheadings 1 -011111110 MURORAN 1 -011111110 Intracorp. 1 -011111110 bake-offs 1 -011111110 Eerily 1 -011111110 Psychotics 1 -011111110 Pump-storage 1 -011111110 Zombification 1 -011111110 Unarrested 1 -011111110 altissima 1 -011111110 vernalization 1 -011111110 Mournfulness 1 -011111110 Crackbusters 1 -011111110 Unabashed 1 -011111110 Intesa 1 -011111110 Upstaging 1 -011111110 McEarthon 1 -011111110 Biceps 1 -011111110 Unattainable 1 -011111110 Nevetheless 1 -011111110 Tearfully 1 -011111110 Afternoons 1 -011111110 Relenting 1 -011111110 Escamillo 1 -011111110 Sheepishly 1 -011111110 Meawnwhile 1 -011111110 PENNBANCORP. 1 -011111110 Yonex 1 -011111110 Expresso 1 -011111110 WTVK 1 -011111110 Squat 1 -011111110 BETHESDA 1 -011111110 horreur 1 -011111110 SHREDDERS 1 -011111110 Concretely 1 -011111110 Mashers 1 -011111110 Psyche 1 -011111110 Quickness 1 -011111110 WALA-TV 1 -011111110 Socializing 1 -011111110 Aghast 1 -011111110 HOWEVER 1 -011111110 Shiraishi 1 -011111110 Hosono 1 -011111110 EWSR814 1 -011111110 Awata 1 -011111110 MOKPO 1 -011111110 Daruwalla 1 -011111110 Unpacified 1 -011111110 Purpa 1 -011111110 Ambulances 1 -011111110 Kolkman 1 -011111110 Netbacks 1 -011111110 Shucks 1 -011111110 Lathes 1 -011111110 Megafunds 1 -011111110 UpScale 1 -011111110 BARRE 1 -011111110 CANTOR 1 -011111110 Artistically 1 -011111110 Unwittingly 1 -011111110 Gillan 1 -011111110 Boneh 1 -011111110 Satoh 1 -011111110 Orchester 1 -011111110 Martiny 1 -011111110 Awww 1 -011111110 Insecurity 1 -011111110 Arquitectonica 1 -011111110 irmao 1 -011111110 Unofficially 1 -011111110 Magnanimous 1 -011111110 Substantively 1 -011111110 Amused 1 -011111110 Blatant 1 -011111110 Yupanki 1 -011111110 Aitmatov 1 -011111110 Standees 1 -011111110 Whirlwinds 1 -011111110 Rodis 1 -011111110 Sonically 1 -011111110 Telegrambyra 1 -011111110 Chronologically 1 -011111110 Non-presidents 1 -011111110 Sedro-Woolley 1 -011111110 Fryland 1 -011111110 Kubosawa 1 -011111110 nuki 1 -011111110 Inayama 1 -011111110 SENIORITY 1 -011111110 Konafa 1 -011111110 Malicious 1 -011111110 Deluca 1 -011111110 Shipwrecks 1 -011111110 Good-looking 1 -011111110 COBEPA 1 -011111110 Confidently 1 -011111110 Pre-merger 1 -011111110 Dalitz 1 -011111110 Droopy-faced 1 -011111110 Non-A 1 -011111110 Nyunt 1 -011111110 Martenot 1 -011111110 Valiente 1 -011111110 Self-expression 1 -011111110 Worsaae 1 -011111110 Unmollified 1 -011111110 Pontiac-West 1 -011111110 Half-dead 1 -011111110 Engert 1 -011111110 Kolo 1 -011111110 Deadlocked 1 -011111110 Kardous 1 -011111110 SecurScan 1 -011111110 atras 1 -011111110 Explicably 1 -011111110 Well-worn 1 -011111110 Pellicano 1 -011111110 Nagila 1 -011111110 Malotky 1 -011111110 Molineux 1 -011111110 Massasoit 1 -011111110 Cautiously 1 -011111110 Condensates 1 -011111110 AnNawras 1 -011111110 Mix-up 1 -011111110 Multiusers 1 -011111110 Innards 1 -011111110 Sillapee 1 -011111110 MILLIONAIRE 1 -011111110 Nordstrum 1 -011111110 Barenholtz 1 -011111110 Cross-country 1 -011111110 Photo-Finishing 1 -011111110 Self-censorship 1 -011111110 Jungjohann 1 -011111110 stylosa 1 -011111110 nervosum 1 -011111110 Dinners 1 -011111110 Hondius 1 -011111110 LeBrun 1 -011111110 Cripples 1 -011111110 Terdayne 1 -011111110 Boerenbond 1 -011111110 Jaskiewicz 1 -011111110 BRONX 1 -011111110 Ringbarkus 1 -011111110 Teichberg 1 -011111110 Fishponds 1 -011111110 Spotters 1 -011111110 Lerena 1 -011111110 Hiraiwa 1 -011111110 Prophetically 1 -011111110 Heredity 1 -011111110 Fainthearted 1 -011111110 Basu 1 -011111110 Domination 1 -011111110 Erythromycin 1 -011111110 Decentralized 1 -011111110 Samapthi 1 -011111110 Weinblatt 1 -011111110 Shiva 1 -011111110 sick-fund 1 -011111110 Kawana 1 -011111110 Vue 1 -011111110 Sugary 1 -011111110 Deutschlandpolitik 1 -011111110 Glogowski 1 -011111110 Ntuli-Carter 1 -011111110 Unself-consciously 1 -011111110 Inexhaustible 1 -011111110 KANSALLIS-OSAKE-PANKKI 1 -011111110 Essenhigh 1 -011111110 Pervyshin 1 -011111110 Academicians 1 -011111110 francais 1 -011111110 Paquin 1 -011111110 Fingerprinting 1 -011111110 Arauz 1 -011111110 columnaris 1 -011111110 Tugwana 1 -011111110 Meticulously 1 -011111110 Poliomyelitis 1 -011111110 Wanikawa 1 -011111110 Naouri 1 -011111110 Coincidently 1 -011111110 Magically 1 -011111110 Wantagh 1 -011111110 bitartrate 1 -011111110 Gray-suited 1 -011111110 Self-knowledge 1 -011111110 ANNAPOLIS 1 -011111110 Lymphocytes 1 -011111110 Bred 1 -011111110 Chlorinated 1 -011111110 museumniks 1 -011111110 Applesauce 1 -011111110 Mr.Benson 1 -011111110 Kokubo 1 -011111110 Evaded 1 -011111110 Vlachoutsicos 1 -011111110 MUNCIE 1 -011111110 Indisputably 1 -011111110 Bearden 1 -011111110 Al-Fatah 1 -011111110 Disturbingly 1 -011111110 Saturday-Wednesday 1 -011111110 Unfailingly 1 -011111110 CALGARY 1 -011111110 Thermoplastics 1 -011111110 V-sats 1 -011111110 Johnson/Burgee 1 -011111110 Frictions 1 -011111110 Kusaka 1 -011111110 Cordelia 1 -011111110 Upstage 1 -011111110 SYDNEY 1 -011111110 Clandestinely 1 -011111110 Betties 1 -011111110 VEVEY 1 -011111110 Pennybags 1 -011111110 Shamans 1 -011111110 Graceful 1 -011111110 albopictus 1 -011111110 Unfortunate 1 -011111110 Baksheesh 1 -011111110 Factory-made 1 -011111110 complexions 1 -011111110 IIP 1 -011111110 McCloughan 1 -011111110 Migranyan 1 -011111110 Grinning 1 -011111110 Shehee 1 -011111110 LUSAKA 1 -011111110 Bioethicists 1 -011111110 Infections 1 -011111110 Ellaurie 1 -011111110 Unimpressed 1 -011111110 Shimshoni 1 -011111110 Yongchaiyut 1 -011111110 Savetsila 1 -011111110 Tulsans 1 -011111110 Lequeux 1 -011111110 Chejlyk 1 -011111110 Murtazayev 1 -011111110 Wastepaper 1 -011111110 Loudspeakers 1 -011111110 Similarily 1 -011111110 excitation 1 -011111110 Labo 1 -011111110 DOUBLEDAY 1 -011111110 Corp.-USA 1 -011111110 Ever-tanned 1 -011111110 CRADOCK 1 -011111110 CHARLOTTESVILLE 1 -011111110 Arao 1 -011111110 Dhiegh 1 -011111110 Sunday-Monday 1 -011111110 Empirically 1 -011111110 DEFRA 1 -011111110 DevelopMate 1 -011111110 Kakutani 1 -011111110 Netline 1 -011111110 Avuncular 1 -011111110 Bazaaris 1 -011111110 Epithets 1 -011111110 Three-on-three 1 -011111110 Dolomite 1 -011111110 Lifecycle 1 -011111110 CompuTrainer 1 -011111110 Delinquencies 1 -011111110 BECKLEY 1 -011111110 Triumphantly 1 -011111110 abadis 1 -011111110 Ceraulo 1 -011111110 Danazol 1 -011111110 Nadier 1 -011111110 Jammas 1 -011111110 Ljubojevic 1 -011111110 Slosberg 1 -011111110 CheddarMelt 1 -011111110 Weirdly 1 -011111110 Hanfsaengl 1 -011111110 Rey/Fawcett 1 -011111110 22-1-2 1 -011111110 Incongruously 1 -011111110 Starch-Inra-Hooper 1 -011111110 Zukim 1 -011111110 Kahl 1 -011111110 CHARLOTTE 1 -011111110 Maccowatt 1 -011111110 Borgmann 1 -011111110 Crosscurrents 1 -011111110 Salinity 1 -011111110 Kaycliff 1 -011111110 Crozes-Hermitage 1 -011111110 Overfunding 1 -011111110 Abbate 1 -011111110 Nates 1 -011111110 Thirty-year-old 1 -011111110 Barsasch 1 -011111110 Frustratingly 1 -011111110 MADISON 1 -011111110 Elekdag 1 -011111110 Minisupercomputers 1 -011111110 Naphtha 1 -011111110 prelim 1 -011111110 Dresder 1 -011111110 Borzois 1 -011111110 Gazeuses 1 -011111110 Nahcolyte 1 -011111110 Williamette 1 -011111110 superspot 1 -011111110 Timidly 1 -011111110 Re-regulation 1 -011111110 BANGKOK 1 -011111110 EASTPORT 1 -011111110 CHEYENNE 1 -011111110 Maimonides 1 -011111110 dipropionate 1 -011111110 Vaikule 1 -011111110 Plaude 1 -011111110 al-Jarallah 1 -011111110 Criminalization 1 -011111110 Idenoshita 1 -011111110 Tactically 1 -011111110 Glyco 1 -011111110 Oyens 1 -011111110 Bossiness 1 -011111110 Retinoblastoma 1 -011111110 SANE/FREEZE 1 -011111110 Meriodionale 1 -011111110 Uncovered 1 -011111110 Information-on-the-Go 1 -011111110 Purdeys 1 -011111110 Alanon 1 -011111110 Bouzoukis 1 -011111110 Glossier 1 -011111110 Shouldered 1 -011111110 co-thief 1 -011111110 CAMDEN 1 -011111110 Camba 1 -011111110 vivace 1 -011111110 Recaptured 1 -011111110 Casanovas 1 -011111110 Fukinbara 1 -011111110 Hedwig 1 -011111110 Throbbing 1 -011111110 Neat 1 -011111110 Quick-witted 1 -011111110 Angelou 1 -011111110 Forewarned 1 -011111110 Ratzker 1 -011111110 Blimey 1 -011111110 Post-tragedy 1 -011111110 Babinec 1 -011111110 Thirdly 1 -011111110 Ecologists 1 -011111110 Envigado 1 -011111110 Morover 1 -011111110 Contrarily 1 -011111110 Tanjuatco 1 -011111110 Vallenato 1 -011111110 Ozgur 1 -011111110 RICHARDSONSMITH 1 -011111110 ahdawam 1 -011111110 Whiissh 1 -011111110 Twinkle 1 -011111110 Bryggerier 1 -011111110 Zurzday 1 -011111110 Streegan 1 -011111110 Numb 1 -011111110 Medani 1 -011111110 macrocrystals 1 -011111110 Hospitalization 1 -011111110 s.r.l. 1 -011111110 Augeri 1 -011111110 Doko 1 -011111110 Parenthetically 1 -011111110 Diaz-Oliver 1 -011111110 Shockingly 1 -011111110 Daunting 1 -011111110 Recondite 1 -011111110 Principally 1 -011111110 Peacocks 1 -011111110 Gertie 1 -011111110 Suksamran 1 -011111110 Proportions 1 -011111110 S&P/McGraw-Hill 1 -011111110 Mustasaari 1 -011111110 Lateef 1 -011111110 Bodenheimer 1 -011111110 Ano 1 -011111110 Goldang 1 -011111110 Abdoon 1 -011111110 nigrum 1 -011111110 Ersen 1 -011111110 Sirketi 1 -011111110 Ogisu 1 -011111110 Torrez 1 -011111110 Inexorably 1 -011111110 Flicek 1 -011111110 Thunderbolt 1 -011111110 Byerwalter 1 -011111110 Bante 1 -011111110 Croom-Helm 1 -011111110 Gin-soaked 1 -011111110 S.A.P.I.C. 1 -011111110 Additionaly 1 -011111110 Relentlessly 1 -011111110 Waldrip 1 -011111110 WOLFSON 1 -011111110 Absurdly 1 -011111110 Hirogane 1 -011111110 Delis 1 -011111110 Auto-manufacturing 1 -011111110 Aboukhater 1 -011111110 Kiyoi 1 -011111110 Phong 1 -011111110 Agitated 1 -011111110 Olivira 1 -011111110 Nexsen-Boyd 1 -011111110 Crucially 1 -011111110 Zukulis 1 -011111110 Cosbi 1 -011111110 Veljanovski 1 -011111110 Thursday-Friday 1 -011111110 TIE-Communications 1 -011111110 Materially 1 -011111110 TRENTON 1 -011111110 Roslyakova 1 -011111110 PLAYBOY 1 -011111110 Originality 1 -011111110 ERRED 1 -011111110 Pangolos 1 -011111110 Suttles 1 -011111110 Mortgage- 1 -011111110 Underpayment 1 -011111110 Milkmen 1 -011111110 chasuble 1 -011111110 Ipek 1 -011111110 Panchita 1 -011111110 Vicenta 1 -011111110 bretheren 1 -011111110 Detected 1 -011111110 Surrendering 1 -011111110 Good-paying 1 -011111110 Velobind 1 -011111110 Kanrhi 1 -011111110 Qureshy 1 -011111110 Boyington 1 -011111110 Felicialiver 1 -011111110 Minicars 1 -011111110 Palsho 1 -011111110 Santicchi 1 -011111110 Tsk 1 -011111110 Onozawa 1 -011111110 Camara 1 -011111110 Gallantly 1 -011111110 Morakotdacho 1 -011111110 Rousseas 1 -011111110 Fentanyl 1 -011111110 Single-handedly 1 -011111110 Classifieds 1 -011111110 Cytomegalovirus 1 -011111110 MacPeg 1 -011111110 Kaczynski 1 -011111110 Incredulous 1 -011111110 bibliophiles 1 -011111110 Disposables 1 -011111110 Acetone 1 -011111110 Architecturally 1 -011111110 Tyrannies 1 -011111110 Gobhai 1 -011111110 Wrongly 1 -011111110 CANBERRA 2 -011111110 Cornea 2 -011111110 noblesse-oblige 2 -011111110 Recapitalization 2 -011111110 Freezes 2 -011111110 Spurned 2 -011111110 Urug 2 -011111110 Longoria 2 -011111110 Matrons 2 -011111110 Subtlety 2 -011111110 Sunday-Wednesday 2 -011111110 NEVERTHELESS 2 -011111110 purpura 2 -011111110 Conventionally 2 -011111110 Engl 2 -011111110 Okuda 2 -011111110 Guanxi 2 -011111110 Uniquely 2 -011111110 Pausing 2 -011111110 Polystyrene 2 -011111110 Loafing 2 -011111110 Technik 2 -011111110 LEVINE 2 -011111110 Dwek 2 -011111110 Pointedly 2 -011111110 Dumaines 2 -011111110 Philosophically 2 -011111110 Optimistically 2 -011111110 Galvalange 2 -011111110 ARROGANT 2 -011111110 Prudently 2 -011111110 GREENWICH 2 -011111110 Kashiwa 2 -011111110 Lindbeck 2 -011111110 Amouage 2 -011111110 Relieved 2 -011111110 Retrospectively 2 -011111110 Large-capital 2 -011111110 Niem 2 -011111110 Unanimously 2 -011111110 Moroever 2 -011111110 LYCOMING 2 -011111110 Simplistic 2 -011111110 Fortuitously 2 -011111110 Pergamon-Brassey 2 -011111110 Re-exports 2 -011111110 Imprisonment 2 -011111110 Metolachlor 2 -011111110 Proudly 2 -011111110 Thalidomide 2 -011111110 Ohmori 2 -011111110 BRASILIA 2 -011111110 Sunday-Tuesday 2 -011111110 Hypothetically 2 -011111110 Erroneously 2 -011111110 MOREOVER 2 -011111110 Decrepit 2 -011111110 WESTCORP 2 -011111110 Dura 2 -011111110 Flustered 2 -011111110 CANTON 2 -011111110 Egorov 2 -011111110 Pre-crisis 2 -011111110 Unconcerned 2 -011111110 Perpetuals 2 -011111110 Abruptly 2 -011111110 Jik 2 -011111110 Doggedly 2 -011111110 Unbelievably 2 -011111110 Solvents 2 -011111110 Admirably 2 -011111110 Plena 2 -011111110 Kamei 2 -011111110 Stylistically 2 -011111110 Tchioba 2 -011111110 Bemused 2 -011111110 Meanwile 2 -011111110 Sous-vide 2 -011111110 TAIPEI 2 -011111110 DataTrak 2 -011111110 Defensively 2 -011111110 Unconvinced 2 -011111110 Photofinishers 2 -011111110 Fourth-class 2 -011111110 Mercouri 2 -011111110 Snowboarders 2 -011111110 Snowboarding 2 -011111110 Brooding 2 -011111110 Naive 2 -011111110 Dvor 2 -011111110 CAMBRIDGE 2 -011111110 Pokrovka 2 -011111110 Zaphiropoulos 2 -011111110 Untrue 2 -011111110 Musically 2 -011111110 Petrobonds 2 -011111110 INDEED 2 -011111110 Gurman 2 -011111110 BUFFALO 2 -011111110 Mercifully 2 -011111110 Crystals 2 -011111110 cummings 2 -011111110 Perversely 2 -011111110 LANDESBANK 2 -011111110 Tabun 2 -011111110 Heh 2 -011111110 Front-runners 2 -011111110 Vaksberg 2 -011111110 Astonishingly 3 -011111110 Sadder 3 -011111110 Inexplicably 3 -011111110 Tellingly 3 -011111110 Superficially 3 -011111110 Intriguingly 3 -011111110 Riens 3 -011111110 Monday-Wednesday 3 -011111110 Indoors 3 -011111110 Correspondingly 3 -011111110 Outwardly 3 -011111110 Junid 3 -011111110 Purportedly 3 -011111110 Fittingly 3 -011111110 Hatorah 3 -011111110 Off-season 3 -011111110 Sekigawa 3 -011111110 Vividly 3 -011111110 Yarmouth 3 -011111110 Externally 3 -011111110 Unabashedly 3 -011111110 Tsering 3 -011111110 Investa 3 -011111110 Diplomatically 3 -011111110 FYI 3 -011111110 ATTENTION 3 -011111110 Conservatively 3 -011111110 Dejected 3 -011111110 SPRING 3 -011111110 Energetic 3 -011111110 Wisely 3 -011111110 Druzhba 3 -011111110 Scientifically 3 -011111110 Seperately 3 -011111110 Morally 3 -011111110 Foolishly 4 -011111110 Cumulatively 4 -011111110 Conveniently 4 -011111110 Profit-sharing 4 -011111110 Pragmatism 4 -011111110 Namely 4 -011111110 Reluctantly 4 -011111110 Neverthless 4 -011111110 Mootham 4 -011111110 Technologically 4 -011111110 SABENA 4 -011111110 Withal 4 -011111110 Militarily 4 -011111110 Miraculously 4 -011111110 Suspicious 4 -011111110 Kindersley 5 -011111110 Globally 5 -011111110 Presently 5 -011111110 Importantly 5 -011111110 Tritium 5 -011111110 Indirectly 5 -011111110 Morever 5 -011111110 Infuriated 5 -011111110 Tragically 5 -011111110 Structurally 6 -011111110 Characteristically 6 -011111110 Hitherto 6 -011111110 Individually 6 -011111110 Instantly 6 -011111110 Customarily 6 -011111110 Reportedly 6 -011111110 Annually 6 -011111110 Unsurprisingly 6 -011111110 Ominously 6 -011111110 Statistically 6 -011111110 Anyhow 7 -011111110 Remarkably 7 -011111110 Arguably 7 -011111110 Geographically 7 -011111110 Belatedly 7 -011111110 Heretofore 8 -011111110 Slurp 8 -011111110 BEAR 8 -011111110 Post-crash 8 -011111110 Internally 9 -011111110 Thankfully 9 -011111110 Alternately 9 -011111110 Regionally 9 -011111110 Amazingly 9 -011111110 Logically 10 -011111110 Afterwards 10 -011111110 Legally 10 -011111110 Invariably 11 -011111110 Concurrently 11 -011111110 Lastly 11 -011111110 Unhappily 12 -011111110 SEOUL 13 -011111110 Strangely 14 -011111110 Collectively 14 -011111110 Periodically 16 -011111110 Supposedly 16 -011111110 Internationally 17 -011111110 Coincidentally 18 -011111110 Incredibly 20 -011111110 Incidentally 21 -011111110 Quickly 22 -011111110 Conceivably 22 -011111110 Notably 22 -011111110 Regrettably 23 -011111110 Understandably 24 -011111110 Longer-term 25 -011111110 Happily 29 -011111110 Undaunted 31 -011111110 Secondly 32 -011111110 Thereafter 33 -011111110 Abroad 35 -011111110 Sadly 35 -011111110 Paradoxically 37 -011111110 Frequently 37 -011111110 Predictably 38 -011111110 Nationally 38 -011111110 Gradually 39 -011111110 Ordinarily 39 -011111110 Simultaneously 44 -011111110 Significantly 47 -011111110 Inevitably 48 -011111110 Publicly 49 -011111110 Politically 51 -011111110 Interestingly 51 -011111110 Admittedly 52 -011111110 Ideally 53 -011111110 Theoretically 53 -011111110 Curiously 54 -011111110 Alternatively 60 -011111110 Technically 60 -011111110 Surprisingly 70 -011111110 Officially 74 -011111110 Afterward 79 -011111110 Essentially 86 -011111110 Privately 93 -011111110 Alas 93 -011111110 Anyway 96 -011111110 Altogether 98 -011111110 Subsequently 104 -011111110 Conversely 108 -011111110 Historically 127 -011111110 Originally 129 -011111110 Accordingly 131 -011111110 Traditionally 148 -011111110 Increasingly 167 -011111110 Likewise 180 -011111110 Negotiable 185 -011111110 Fortunately 188 -011111110 Worse 189 -011111110 Normally 192 -011111110 Lately 194 -011111110 Meantime 218 -011111110 Additionally 226 -011111110 Typically 252 -011111110 Consequently 260 -011111110 Therefore 262 -011111110 Initially 273 -011111110 Actually 296 -011111110 Generally 298 -011111110 Specifically 338 -011111110 Ironically 372 -011111110 Otherwise 412 -011111110 Eventually 416 -011111110 Ultimately 427 -011111110 Elsewhere 540 -011111110 Furthermore 569 -011111110 Unfortunately 601 -011111110 Already 633 -011111110 Recently 633 -011111110 Overall 644 -011111110 Further 719 -011111110 Similarly 734 -011111110 Later 782 -011111110 Previously 799 -011111110 Finally 915 -011111110 Nonetheless 996 -011111110 Currently 1482 -011111110 Nevertheless 1695 -011111110 Thus 2378 -011111110 Instead 2675 -011111110 Indeed 3046 -011111110 Yesterday 3147 -011111110 Separately 3605 -011111110 Also 3705 -011111110 Still 3807 -011111110 Moreover 3910 -011111110 However 7580 -011111110 Meanwhile 5160 -01111111100 Just-released 1 -01111111100 Plucky 1 -01111111100 First-section 1 -01111111100 Teetotalers 1 -01111111100 Bouyed 1 -01111111100 MAINFRAME 1 -01111111100 Refers 1 -01111111100 Attesting 1 -01111111100 Struts 1 -01111111100 INACOMP 1 -01111111100 Passive-activity 1 -01111111100 Resupplied 1 -01111111100 Nourished 1 -01111111100 Short-sales 1 -01111111100 MESOZOIC 1 -01111111100 Declarations 1 -01111111100 Reasoning 1 -01111111100 Traveler's-check 1 -01111111100 LIE-DETECTOR 1 -01111111100 Clobbered 1 -01111111100 Downdraft 1 -01111111100 Rerun 1 -01111111100 Late-October 1 -01111111100 Parole 1 -01111111100 Drafted 1 -01111111100 Vying 1 -01111111100 Non-adherence 1 -01111111100 Soulful 1 -01111111100 rededicated 1 -01111111100 Goaded 1 -01111111100 Co-opted 1 -01111111100 Fade 1 -01111111100 Trespasses 1 -01111111100 PASSIVE-ACTIVITY 1 -01111111100 Decimated 1 -01111111100 Per-ADR 1 -01111111100 Options-related 1 -01111111100 Endorsement 1 -01111111100 Unnerved 1 -01111111100 Earlier-released 1 -01111111100 VACANCY 1 -01111111100 Gurus 1 -01111111100 Bedeviled 1 -01111111100 Condescend 1 -01111111100 Trumpeting 1 -01111111100 LIQUIDATING 1 -01111111100 Late-afternoon 1 -01111111100 Diluted 1 -01111111100 Worshiped 1 -01111111100 Rankled 1 -01111111100 Conditioned 1 -01111111100 Believed 1 -01111111100 Unbeknown 1 -01111111100 Circled 1 -01111111100 Exams 1 -01111111100 Hounded 1 -01111111100 Alleviating 1 -01111111100 Snack-foods 1 -01111111100 Per-store 1 -01111111100 Operated 1 -01111111100 Comforted 1 -01111111100 Ryoden 1 -01111111100 POST-CRASH 1 -01111111100 Unchanged 1 -01111111100 Vibrations 1 -01111111100 Corrected 1 -01111111100 Self-addressed 1 -01111111100 Buffs 1 -01111111100 Advertise 1 -01111111100 Communications-equipment 1 -01111111100 Blasted 1 -01111111100 Umpired 1 -01111111100 Small-car 1 -01111111100 Power-tool 1 -01111111100 Culled 1 -01111111100 Unappeased 1 -01111111100 PLACATING 1 -01111111100 Flutter 1 -01111111100 Want-ad 1 -01111111100 ODYSSEY 1 -01111111100 Gruzinskaya 1 -01111111100 Uzbekskaya 1 -01111111100 Shoulder 1 -01111111100 Dwarfed 1 -01111111100 SHORTWAVE 1 -01111111100 Cremation 1 -01111111100 Third-qarter 1 -01111111100 Vacated 1 -01111111100 OFFERINGS 1 -01111111100 Lifted 1 -01111111100 Pedaling 1 -01111111100 SHIPMENTS 1 -01111111100 CONSORTIUM 1 -01111111100 Late-September 1 -01111111100 Bribes 1 -01111111100 Meters 1 -01111111100 Antagonism 1 -01111111100 Submissions 1 -01111111100 Aspirants 1 -01111111100 PENNY 1 -01111111100 Polymer-products 1 -01111111100 Unrelated 1 -01111111100 Plumped 1 -01111111100 Arising 1 -01111111100 Previous-year 1 -01111111100 Station-wagon 1 -01111111100 Eliminated 1 -01111111100 Subtracted 1 -01111111100 Soothed 1 -01111111100 MCA-America 1 -01111111100 MAXUS 1 -01111111100 Keyed 1 -01111111100 Odysssey 1 -01111111100 Foretold 1 -01111111100 SEX-HARASSMENT 1 -01111111100 Outgunned 1 -01111111100 REVERE 1 -01111111100 PIGGYBACKING 1 -01111111100 Vowing 1 -01111111100 Exempt-interest 1 -01111111100 Beseiged 1 -01111111100 Trailed 1 -01111111100 SNAPPY 1 -01111111100 LEHIGH 1 -01111111100 STEPPED-UP 1 -01111111100 Pestered 1 -01111111100 Rags 1 -01111111100 Refusals 1 -01111111100 Itching 1 -01111111100 FRAUD-FINDING 1 -01111111100 Retire 1 -01111111100 Exhortations 1 -01111111100 Grocery-product 1 -01111111100 Snack-food 1 -01111111100 Dangling 1 -01111111100 Pivotal 1 -01111111100 Asset-backed-securities 1 -01111111100 Unshackled 1 -01111111100 CAUSE-RELATED 1 -01111111100 MEAT-COUNTER 1 -01111111100 Latest-year 1 -01111111100 PROBATE 1 -01111111100 Stairway 1 -01111111100 Germane 1 -01111111100 Reelected 1 -01111111100 Coal-related 1 -01111111100 TAFT 1 -01111111100 Conferring 1 -01111111100 PULITZER 1 -01111111100 SUPPLY-SIDERS 1 -01111111100 Travelers-check 1 -01111111100 Moscow-Kuwait 1 -01111111100 Steaming 1 -01111111100 Specialty-store 1 -01111111100 Attended 1 -01111111100 Abiding 1 -01111111100 Curated 1 -01111111100 Export-bonus 1 -01111111100 REIMBURSEMENT 1 -01111111100 Semiannual 1 -01111111100 Dilution 1 -01111111100 Scarred 1 -01111111100 Hospital-chain 1 -01111111100 Aluminum-company 1 -01111111100 amaur 1 -01111111100 Agrochemical 1 -01111111100 Pocketbooks 1 -01111111100 DEPARTS 1 -01111111100 Eight-week 1 -01111111100 Looted 1 -01111111100 Darting 1 -01111111100 Virginity 1 -01111111100 Agitation 1 -01111111100 Drained 1 -01111111100 Landlocked 1 -01111111100 NORCEN 1 -01111111100 Nine-week 1 -01111111100 MIDEAST 1 -01111111100 Multiplied 1 -01111111100 Graduated 1 -01111111100 Weigh-in 1 -01111111100 KAITEK 1 -01111111100 Less-than-robust 1 -01111111100 Counterfeiting-related 1 -01111111100 Dedication 1 -01111111100 Unaffected 1 -01111111100 Urgings 1 -01111111100 Limited-partnership 1 -01111111100 Inordinate 1 -01111111100 Worse-than-expected 1 -01111111100 DENIM 1 -01111111100 SELF-EMPLOYMENT 1 -01111111100 Industrial-parts 1 -01111111100 Motions 1 -01111111100 Minirefunding 1 -01111111100 Hole-by-hole 1 -01111111100 Barraged 1 -01111111100 Kowtowing 1 -01111111100 Store-for-store 1 -01111111100 Advantages 1 -01111111100 Chaufeurred 1 -01111111100 Shielded 1 -01111111100 Ever-rising 1 -01111111100 FLOPPY-DISK 1 -01111111100 PARTISAN 1 -01111111100 MAGNUM 1 -01111111100 Press-corps 1 -01111111100 IRAN-CONTRA 1 -01111111100 Supplemented 1 -01111111100 MENTAL-HEALTH 1 -01111111100 Realists 1 -01111111100 Populated 1 -01111111100 PROPER 1 -01111111100 Samestore 1 -01111111100 Preceded 1 -01111111100 Euro-clear 1 -01111111100 Minivan 1 -01111111100 PAY-OFF 1 -01111111100 Followed 1 -01111111100 Clamped 1 -01111111100 Striving 1 -01111111100 Relocations 1 -01111111100 Stoked 1 -01111111100 Profiting 1 -01111111100 Truck-divison 1 -01111111100 MERGE 1 -01111111100 c1986 1 -01111111100 Non-cash 1 -01111111100 CONFRONTED 1 -01111111100 SAGE 1 -01111111100 Ridicule 1 -01111111100 Delivered 1 -01111111100 Reverting 1 -01111111100 RIPPLES 1 -01111111100 Sonyclimbed 1 -01111111100 Slip-ups 1 -01111111100 Amplified 1 -01111111100 Seized 1 -01111111100 Militarists 1 -01111111100 PRO-CHOICE 1 -01111111100 Infant-Vision 1 -01111111100 FERTILITY 1 -01111111100 PLATEAUED 1 -01111111100 QUICKER 1 -01111111100 Hardest-hit 1 -01111111100 .Willingness 1 -01111111100 Shaped 1 -01111111100 Overcharges 1 -01111111100 .there 1 -01111111100 Zircons 1 -01111111100 Tormented 1 -01111111100 Guessing 1 -01111111100 PAYOFF 1 -01111111100 Fruition 1 -01111111100 Mid-May 1 -01111111100 Domestic-vehicle 1 -01111111100 REPATRIATED 1 -01111111100 Tuned 1 -01111111100 Hamburger-restaurant 1 -01111111100 YASUDA 1 -01111111100 Cheered 1 -01111111100 SMUG 1 -01111111100 Journeying 1 -01111111100 Good-bye 1 -01111111100 Counterweights 1 -01111111100 Bumped 1 -01111111100 Pedants 1 -01111111100 DURABLE-GOODS 1 -01111111100 SOLAR 1 -01111111100 Local-currency 1 -01111111100 Bond-trading 1 -01111111100 Stock-trading 1 -01111111100 STRIP 1 -01111111100 Early-August 1 -01111111100 Mortgage-loan 1 -01111111100 Delegations 1 -01111111100 COMMITTED 1 -01111111100 Bankrolled 1 -01111111100 Raspy-voiced 1 -01111111100 Devoted 1 -01111111100 replacement-part 1 -01111111100 Cushioned 1 -01111111100 Minibooms 1 -01111111100 Half-year 1 -01111111100 Co-signed 1 -01111111100 Unremitted 1 -01111111100 MAXIM 1 -01111111100 Unhampered 1 -01111111100 CORPORATE-PROFIT 1 -01111111100 PAY-FOR-VIEW 1 -01111111100 Submitted 1 -01111111100 Mitake 1 -01111111100 .this 1 -01111111100 unmellowed 1 -01111111100 Acquiescence 1 -01111111100 Persuaded 1 -01111111100 Late-February 1 -01111111100 Acceding 1 -01111111100 Small-donor 1 -01111111100 Tonnage 1 -01111111100 Beggared 1 -01111111100 Intercepted 1 -01111111100 Referrals 1 -01111111100 Leapfrogging 1 -01111111100 Swamped 1 -01111111100 Undertaken 1 -01111111100 New-circulation 1 -01111111100 Unaltered 1 -01111111100 Disloyal 1 -01111111100 Knighted 1 -01111111100 Heir 1 -01111111100 HIGH-COURT 1 -01111111100 Descended 1 -01111111100 Shipped 1 -01111111100 Autopsy 1 -01111111100 Snubbed 1 -01111111100 Reinforced 1 -01111111100 .trying 1 -01111111100 Grandfathers 1 -01111111100 Pollutants 1 -01111111100 Hand-tool 1 -01111111100 FOOD-INFLATION 1 -01111111100 Motivation 1 -01111111100 ABUSIVE 1 -01111111100 Impelled 1 -01111111100 Summations 1 -01111111100 SWIFT 1 -01111111100 Grants-in-aid 1 -01111111100 Annexation 1 -01111111100 Usurpations 1 -01111111100 Single-pack 1 -01111111100 Reassigned 1 -01111111100 Hatched 1 -01111111100 Gauged 1 -01111111100 Slippage 1 -01111111100 Firsthalf 1 -01111111100 CAHNERS 1 -01111111100 Self-employment 1 -01111111100 Shuttling 1 -01111111100 Gripped 1 -01111111100 Custom-mades 1 -01111111100 Soggy 1 -01111111100 PER-SHARE 1 -01111111100 Factory-machinery 1 -01111111100 Government-to-government 1 -01111111100 Championed 1 -01111111100 FOND 1 -01111111100 Promoted 1 -01111111100 BACKUP 1 -01111111100 Productivity-software 1 -01111111100 Ballooned 1 -01111111100 Abstracting 1 -01111111100 Greeted 1 -01111111100 Becalmed 1 -01111111100 Droppings 1 -01111111100 Cattails 1 -01111111100 Before-tax 1 -01111111100 Clips 1 -01111111100 Bowed 1 -01111111100 Pioneered 1 -01111111100 Pummeled 1 -01111111100 Compelled 1 -01111111100 COUNTRY-CLUB 1 -01111111100 Colorizers 1 -01111111100 Elevation 1 -01111111100 Silentair 1 -01111111100 INVEST 1 -01111111100 Incited 1 -01111111100 Hand-picked 1 -01111111100 Exercisable 1 -01111111100 Unconstrained 1 -01111111100 Shell-shocked 1 -01111111100 CASIO 1 -01111111100 counter-reaction 1 -01111111100 Forfeitures 1 -01111111100 Traumatized 1 -01111111100 Clues 1 -01111111100 Devised 1 -01111111100 Fatalities 1 -01111111100 Foreign-production 1 -01111111100 Bigotry 1 -01111111100 Energized 1 -01111111100 Refrain 2 -01111111100 Underwritten 2 -01111111100 Pro-forma 2 -01111111100 Humiliated 2 -01111111100 Insensitivity 2 -01111111100 Pinned 2 -01111111100 Retroactive 2 -01111111100 Thwarted 2 -01111111100 Elated 2 -01111111100 Reinvested 2 -01111111100 Attaching 2 -01111111100 Obscured 2 -01111111100 APPLICATION 2 -01111111100 Besieged 2 -01111111100 Pursuant 2 -01111111100 Worldly 2 -01111111100 Nine-months 2 -01111111100 CONVEX 2 -01111111100 LaValliere 2 -01111111100 WHEREHOUSE 2 -01111111100 Repelled 2 -01111111100 Overwhelmed 2 -01111111100 Five-month 2 -01111111100 Edited 2 -01111111100 Sheltered 2 -01111111100 Slowed 2 -01111111100 Crippled 2 -01111111100 Adjusters 2 -01111111100 CREDIBILITY 2 -01111111100 W4 2 -01111111100 Price-cutting 2 -01111111100 Enraptured 2 -01111111100 BLOCKER 2 -01111111100 Confined 2 -01111111100 Hewing 2 -01111111100 Predisposition 2 -01111111100 Motioning 2 -01111111100 DIPLOMATIC 2 -01111111100 Subscribe 2 -01111111100 Deluged 2 -01111111100 Charge-card 2 -01111111100 Swayed 2 -01111111100 Invited 2 -01111111100 Luggage 2 -01111111100 WELFARE 2 -01111111100 Sterling-M-Whatever 2 -01111111100 Small- 2 -01111111100 RESTRICT 2 -01111111100 Rattled 2 -01111111100 Flanked 2 -01111111100 Arrears 2 -01111111100 SAUDI 2 -01111111100 Non-recurring 2 -01111111100 Securities-related 2 -01111111100 Food-store 2 -01111111100 Noninterest 2 -01111111100 Enticed 2 -01111111100 Unearned 2 -01111111100 20.45 2 -01111111100 Empowered 2 -01111111100 Unrealized 2 -01111111100 Swollen 2 -01111111100 Tacked 2 -01111111100 Endorsed 2 -01111111100 Hammered 2 -01111111100 Supervised 2 -01111111100 Jockeying 2 -01111111100 CREW 2 -01111111100 Existing-home 2 -01111111100 BYLINE 2 -01111111100 PLEDGE 2 -01111111100 Remains 2 -01111111100 Subjected 2 -01111111100 Current-year 2 -01111111100 Strive 2 -01111111100 SEQUENT 2 -01111111100 Staggering 2 -01111111100 Meant 2 -01111111100 CENTERIOR 2 -01111111100 Endeavour 2 -01111111100 Circling 2 -01111111100 Enamored 2 -01111111100 BUDGETS 2 -01111111100 Attentive 2 -01111111100 Consulted 2 -01111111100 GREY 2 -01111111100 Motivated 2 -01111111100 Racked 2 -01111111100 Dazzled 2 -01111111100 Escorted 2 -01111111100 Nodding 2 -01111111100 Gasoline-station 2 -01111111100 Cowed 2 -01111111100 Miffed 2 -01111111100 BOCA 2 -01111111100 Consumer-product 2 -01111111100 Heavy-truck 2 -01111111100 PLENUM 2 -01111111100 Sparked 2 -01111111100 Awarded 2 -01111111100 AIMS 2 -01111111100 CUSTOMERS 2 -01111111100 Low-end 2 -01111111100 Inattention 2 -01111111100 Complain 2 -01111111100 STATESIDE 2 -01111111100 Narrated 2 -01111111100 Chased 2 -01111111100 Hurrying 2 -01111111100 Relocated 2 -01111111100 Wooed 2 -01111111100 Companywide 2 -01111111100 COMPARED 2 -01111111100 Residences 2 -01111111100 Nominated 2 -01111111100 U.S.-Style 2 -01111111100 Payouts 2 -01111111100 Hobbled 3 -01111111100 Untouched 3 -01111111100 Applies 3 -01111111100 Hampered 3 -01111111100 First-day 3 -01111111100 ON-LINE 3 -01111111100 FALCON 3 -01111111100 Buttressed 3 -01111111100 COMPAQ 3 -01111111100 Fourth-period 3 -01111111100 Allusions 3 -01111111100 Parent-company 3 -01111111100 Acclaimed 3 -01111111100 Dominated 3 -01111111100 TRANSCO 3 -01111111100 Ode 3 -01111111100 DAMAGE 3 -01111111100 Banned 3 -01111111100 Transferred 3 -01111111100 JUMBO 3 -01111111100 TAX-BILL 3 -01111111100 Chaired 3 -01111111100 HARCOURT 3 -01111111100 Clutching 3 -01111111100 Historical-cost 3 -01111111100 Willingness 3 -01111111100 Unaccustomed 3 -01111111100 POSSIBLE 3 -01111111100 Reimbursement 3 -01111111100 Oblivious 3 -01111111100 Sentenced 3 -01111111100 Anchored 3 -01111111100 Upgraded 3 -01111111100 SEXUAL 3 -01111111100 Six-months 3 -01111111100 Installed 3 -01111111100 Staffed 3 -01111111100 Taped 3 -01111111100 APPLE 3 -01111111100 Adjacent 3 -01111111100 Marketed 3 -01111111100 Proposes 3 -01111111100 Alimony 3 -01111111100 Third-period 3 -01111111100 Extrapolating 3 -01111111100 Kudos 3 -01111111100 Overproduction 3 -01111111100 Commercial-vehicle 3 -01111111100 Accustomed 3 -01111111100 Retained 3 -01111111100 Financed 3 -01111111100 Bruised 3 -01111111100 Nominal 3 -01111111100 Inability 3 -01111111100 Light-truck 3 -01111111100 Computed 3 -01111111100 Struck 3 -01111111100 Latest-quarter 3 -01111111100 Co-produced 3 -01111111100 Hostility 4 -01111111100 Woe 4 -01111111100 Disturbed 4 -01111111100 Conspicuous 4 -01111111100 Entrances 4 -01111111100 Burdened 4 -01111111100 Prior-year 4 -01111111100 Commissioned 4 -01111111100 Condemned 4 -01111111100 Relating 4 -01111111100 Unbeknownst 4 -01111111100 Taught 4 -01111111100 Shocks 4 -01111111100 Rebounding 4 -01111111100 Retail-sales 4 -01111111100 Startled 4 -01111111100 Systemwide 4 -01111111100 SWITCHING 4 -01111111100 First-period 4 -01111111100 Jolted 4 -01111111100 Directed 4 -01111111100 Appalled 4 -01111111100 Spooked 4 -01111111100 ETHNIC 4 -01111111100 Non-operating 4 -01111111100 Deviations 4 -01111111100 Compounded 4 -01111111100 Buffeted 4 -01111111100 Committed 4 -01111111100 Restated 4 -01111111100 Indexes 4 -01111111100 Intrigued 4 -01111111100 Conducted 4 -01111111100 Deteriorating 4 -01111111100 Stemming 4 -01111111100 Summoned 4 -01111111100 Second-period 4 -01111111100 Intended 5 -01111111100 Expects 5 -01111111100 Disgusted 5 -01111111100 Scrambling 5 -01111111100 Judged 5 -01111111100 Weakened 5 -01111111100 Irked 5 -01111111100 Dogged 5 -01111111100 Deferring 5 -01111111100 TESTING 5 -01111111100 Adherence 5 -01111111100 Alerted 5 -01111111100 CATALYST 5 -01111111100 Unconsolidated 5 -01111111100 Unfazed 5 -01111111100 Constraints 5 -01111111100 Tend 5 -01111111100 Borrowings 6 -01111111100 Powered 6 -01111111100 Exhausted 6 -01111111100 Sent 6 -01111111100 Moved 6 -01111111100 ALBERTA 6 -01111111100 Lyrics 6 -01111111100 Assisted 6 -01111111100 NIXDORF 6 -01111111100 MITCHELL 6 -01111111100 Reluctance 6 -01111111100 Distributions 6 -01111111100 Repairs 6 -01111111100 TRITON 6 -01111111100 Pushed 6 -01111111100 Needing 6 -01111111100 ADVANCED 6 -01111111100 Annoyed 6 -01111111100 Threats 6 -01111111100 Licence 6 -01111111100 Distracted 6 -01111111100 Paced 7 -01111111100 Compiled 7 -01111111100 HARD 7 -01111111100 Lured 7 -01111111100 Adopted 7 -01111111100 e-Estimated. 7 -01111111100 Unfettered 7 -01111111100 References 7 -01111111100 Dismayed 7 -01111111100 Excluded 7 -01111111100 Threatening 7 -01111111100 Propelled 7 -01111111100 Objections 7 -01111111100 GEN. 7 -01111111100 Funded 7 -01111111100 Owing 7 -01111111100 Benefiting 7 -01111111100 Promising 7 -01111111100 Camps 7 -01111111100 CHARITABLE 7 -01111111100 Hosted 7 -01111111100 Attached 8 -01111111100 Slated 8 -01111111100 Tied 8 -01111111100 LAURENTIIS 8 -01111111100 Stunned 8 -01111111100 BATTLES 8 -01111111100 Shaken 8 -01111111100 Rushing 8 -01111111100 Assigned 8 -01111111100 SHELTER 8 -01111111100 Carried 8 -01111111100 Indicated 8 -01111111100 Required 8 -01111111100 Linked 9 -01111111100 Urged 9 -01111111100 Harder 9 -01111111100 Visits 9 -01111111100 Refusing 9 -01111111100 Drawn 9 -01111111100 New-car 9 -01111111100 Boosted 9 -01111111100 Willing 9 -01111111100 Brought 9 -01111111100 Guided 10 -01111111100 Impressed 10 -01111111100 Attracted 10 -01111111100 Strapped 10 -01111111100 Joined 10 -01111111100 Supported 10 -01111111100 Crucial 10 -01111111100 Frightened 11 -01111111100 Headed 11 -01111111100 Departing 11 -01111111100 Squeezed 11 -01111111100 Produced 11 -01111111100 Unwilling 12 -01111111100 Beset 12 -01111111100 Challenges 12 -01111111100 Prodded 12 -01111111100 MOVES 13 -01111111100 Appointed 13 -01111111100 Anxious 13 -01111111100 Contributions 13 -01111111100 Plagued 14 -01111111100 Disappointing 14 -01111111100 Accompanied 14 -01111111100 Undeterred 14 -01111111100 Emboldened 14 -01111111100 One-year 15 -01111111100 Inspired 15 -01111111100 Bolstered 16 -01111111100 Angered 16 -01111111100 Unknown 16 -01111111100 Donations 16 -01111111100 Prompted 16 -01111111100 REPUBLICANS 17 -01111111100 Struggling 17 -01111111100 Bowing 17 -01111111100 Battered 18 -01111111100 Attempting 18 -01111111100 Driven 18 -01111111100 Surrounded 19 -01111111100 Forced 19 -01111111100 Pressured 19 -01111111100 Developed 20 -01111111100 Relative 20 -01111111100 Subscribers 20 -01111111100 Closer 21 -01111111100 Alluding 22 -01111111100 Sponsored 23 -01111111100 Damage 23 -01111111100 Stung 24 -01111111100 Fueled 24 -01111111100 Determined 24 -01111111100 Listening 25 -01111111100 Per-capita 27 -01111111100 Scheduled 28 -01111111100 Ranked 28 -01111111100 Congratulations 29 -01111111100 After-tax 30 -01111111100 Helped 30 -01111111100 Subject 31 -01111111100 Encouraged 32 -01111111100 Pressed 32 -01111111100 Used 34 -01111111100 Expected 35 -01111111100 Returning 35 -01111111100 Eager 37 -01111111100 Backed 37 -01111111100 Buoyed 40 -01111111100 Designed 41 -01111111100 Pointing 43 -01111111100 Reaction 44 -01111111100 Proposals 47 -01111111100 Reacting 47 -01111111100 Listen 49 -01111111100 Spurred 52 -01111111100 Needless 52 -01111111100 Payments 53 -01111111100 Hoping 53 -01111111100 Contributing 53 -01111111100 Year-ago 57 -01111111100 Borrowing 58 -01111111100 Comparable-store 58 -01111111100 Non-interest 58 -01111111100 TAX 58 -01111111100 Aided 60 -01111111100 Due 63 -01111111100 Attempts 64 -01111111100 Welcome 68 -01111111100 Pre-tax 69 -01111111100 Led 71 -01111111100 First-half 71 -01111111100 Same-store 80 -01111111100 Adjusted 81 -01111111100 Judging 85 -01111111100 Unable 85 -01111111100 Seeking 86 -01111111100 Nine-month 90 -01111111100 Full-year 90 -01111111100 INTEREST 103 -01111111100 Second-quarter 104 -01111111100 Failure 106 -01111111100 Third-quarter 107 -01111111100 Trying 108 -01111111100 First-quarter 110 -01111111100 Six-month 116 -01111111100 Referring 126 -01111111100 Responding 132 -01111111100 Pretax 138 -01111111100 Fourth-quarter 146 -01111111100 Apart 154 -01111111100 Contrary 154 -01111111100 Efforts 158 -01111111100 Adding 176 -01111111100 PRECIOUS 183 -01111111100 Guaranteed 192 -01111111100 DISCOUNT 193 -01111111100 Thanks 201 -01111111100 CALL 205 -01111111100 Year-earlier 207 -01111111100 Aside 215 -01111111100 Fees 224 -01111111100 Annualized 264 -01111111100 Up 295 -01111111100 Per-share 326 -01111111100 Short 366 -01111111100 Prior 378 -01111111100 Estimated 388 -01111111100 PRIME 403 -01111111100 Operating 533 -01111111100 Proceeds 822 -01111111100 According 4999 -01111111100 Net 1274 -011111111010 Spooky 1 -011111111010 Bouts 1 -011111111010 Timetables 1 -011111111010 Searing 1 -011111111010 Routines 1 -011111111010 Cast-iron 1 -011111111010 PLUCKING 1 -011111111010 Stalagmites 1 -011111111010 Diligent 1 -011111111010 3.5129 1 -011111111010 2.8229 1 -011111111010 now-scheduled 1 -011111111010 Glumly 1 -011111111010 Shantytowns 1 -011111111010 soonest-to-expire 1 -011111111010 Writer-proof 1 -011111111010 HOSTAGE 3 -011111111010 Illumination 6 -011111111010 b-Current 62 -011111111010 Seasonally 83 -011111111010 Rated 181 -011111111010 Last 8461 -011111111010 Next 860 -011111111011 Eunuchs 1 -011111111011 Disputants 1 -011111111011 Dinner-table 1 -011111111011 Thisfelt 1 -011111111011 Buzzers 1 -011111111011 Crudely 1 -011111111011 Faint 1 -011111111011 Disallowances 1 -011111111011 Boxscore 1 -011111111011 Cardmember 1 -011111111011 Wimps 1 -011111111011 Dissimilarities 1 -011111111011 third-game 1 -011111111011 SUPERCONDUCTORS 1 -011111111011 Diagrams 1 -011111111011 Cleverly 1 -011111111011 Time-honored 1 -011111111011 Unmitigated 1 -011111111011 Non-prescription 1 -011111111011 Munis 1 -011111111011 Piecework 1 -011111111011 Reg-negs 1 -011111111011 Bedfellows 1 -011111111011 Chiropractors 1 -011111111011 Slit 1 -011111111011 Autocrats 1 -011111111011 Diskettes 1 -011111111011 Derrieres 1 -011111111011 Anent 1 -011111111011 toney 1 -011111111011 Election-time 1 -011111111011 Non-profits 1 -011111111011 Blackened 1 -011111111011 Perpetrators 1 -011111111011 pro-immigration 1 -011111111011 Servicers 1 -011111111011 Right-to-lifers 1 -011111111011 Higher-grade 1 -011111111011 Anti-communism 1 -011111111011 Photorefractive 1 -011111111011 Cover-sheet 1 -011111111011 Lightening 1 -011111111011 Seismographs 1 -011111111011 model-search 1 -011111111011 chucklehead 1 -011111111011 Hydrologists 1 -011111111011 Busily 1 -011111111011 Intra-army 1 -011111111011 Curatorial 1 -011111111011 Transvestite 1 -011111111011 Porches 1 -011111111011 Amaze 1 -011111111011 Imitates 1 -011111111011 Janizaries 1 -011111111011 Maoist-like 1 -011111111011 Boustany 1 -011111111011 Sadness 1 -011111111011 Guffaws 1 -011111111011 RETIREMENTS 1 -011111111011 Epidemiologists 1 -011111111011 Explicitly 1 -011111111011 Cogwheels 1 -011111111011 Sibling 1 -011111111011 Cocktail-party 1 -011111111011 Newsstands 1 -011111111011 Broaden 1 -011111111011 Bicyclists 1 -011111111011 Buffaloes 1 -011111111011 Barroom 1 -011111111011 Rickshaws 1 -011111111011 Mustering 1 -011111111011 Enzymes 1 -011111111011 Airliners 1 -011111111011 Spores 1 -011111111011 Tin-cup 1 -011111111011 Ballplayers 1 -011111111011 Homespun 1 -011111111011 Antigens 1 -011111111011 Photocopy 1 -011111111011 Bodyguards 1 -011111111011 Unconditional 1 -011111111011 Amphetamine 1 -011111111011 CREATED 1 -011111111011 SAVERS 1 -011111111011 HOURS 1 -011111111011 Old-world 1 -011111111011 No-sweat 1 -011111111011 Describe 1 -011111111011 Helmless 1 -011111111011 Reactive 1 -011111111011 Classmates 1 -011111111011 Handcuff 1 -011111111011 CORPORATE-OWNED 1 -011111111011 Widescale 1 -011111111011 CURBS 1 -011111111011 Cocoons 1 -011111111011 minifilms 1 -011111111011 EMTers 1 -011111111011 Steadfast 1 -011111111011 Transistors 1 -011111111011 Revelers 1 -011111111011 Laundry-pile 1 -011111111011 Monopolists 1 -011111111011 Captives 1 -011111111011 Batters 1 -011111111011 Computer-related 1 -011111111011 Home-care 1 -011111111011 Risk-aversives 1 -011111111011 Inflate 1 -011111111011 PUTTERS 1 -011111111011 Blankets 1 -011111111011 moisturizing 1 -011111111011 Nuclear-utility 1 -011111111011 Newsmen 1 -011111111011 Anti-Chinese 1 -011111111011 Chauffeurs 1 -011111111011 Analyze 1 -011111111011 Frostbiters 1 -011111111011 Broader-based 1 -011111111011 Arab-Moslem 1 -011111111011 AUDIOPHILES 1 -011111111011 Poorest 1 -011111111011 Boa 1 -011111111011 Novelists 1 -011111111011 Modernists 1 -011111111011 Porters 1 -011111111011 Thrillers 1 -011111111011 Yappers 1 -011111111011 UAW-negotiated 1 -011111111011 Peddling 1 -011111111011 Indulge 1 -011111111011 Kangaroos 1 -011111111011 Song-titles 1 -011111111011 junk-yard 1 -011111111011 Sophomores 1 -011111111011 Giggle 1 -011111111011 Fasten 1 -011111111011 Dueling 1 -011111111011 Gallows 1 -011111111011 Hitched 1 -011111111011 Kernels 1 -011111111011 Skunks 1 -011111111011 8,748 1 -011111111011 Flexicokers 1 -011111111011 Twould 1 -011111111011 Headings 1 -011111111011 UNPOPULAR 1 -011111111011 Forgot 1 -011111111011 Pagodas 1 -011111111011 Biweekly 1 -011111111011 Byting 1 -011111111011 Wearables 1 -011111111011 Job-seeking 1 -011111111011 Taxonomists 1 -011111111011 Inured 1 -011111111011 Inviting 1 -011111111011 Mindless 1 -011111111011 Skiffs 1 -011111111011 Paraphrase 1 -011111111011 Volkswagen. 1 -011111111011 Mothers-to-be 1 -011111111011 Geriatricians 1 -011111111011 Sunken 1 -011111111011 Co-ops 1 -011111111011 Hastily 1 -011111111011 Careerists 1 -011111111011 Vapors 1 -011111111011 Artists. 1 -011111111011 Minidorms 1 -011111111011 Out-of-towners 2 -011111111011 Identify 2 -011111111011 HEMLINES 2 -011111111011 Interservice 2 -011111111011 CRITICS 2 -011111111011 Sharpen 2 -011111111011 Centralized 2 -011111111011 Sends 2 -011111111011 Election-year 2 -011111111011 Three-wheelers 2 -011111111011 Steroid 2 -011111111011 Spotlights 2 -011111111011 Feedlots 2 -011111111011 After-school 2 -011111111011 Lobbies 2 -011111111011 Sandbags 2 -011111111011 .to 2 -011111111011 Recommended 2 -011111111011 VIDEOS 2 -011111111011 Gag 2 -011111111011 Stagehands 2 -011111111011 Patrols 2 -011111111011 Digressions 2 -011111111011 sensitizes 2 -011111111011 Small-lot 2 -011111111011 Multiplexers 2 -011111111011 Inadvertently 2 -011111111011 Splits 3 -011111111011 TOURISTS 3 -011111111011 Armies 3 -011111111011 Videotapes 3 -011111111011 COMMERCIALS 3 -011111111011 ROOMS 3 -011111111011 Visuals 3 -011111111011 Telexes 4 -011111111011 Labels 4 -011111111011 Once-only 4 -011111111011 Disturbing 4 -011111111011 Charts 5 -011111111011 Waiters 5 -011111111011 Kindly 5 -011111111011 LOANS 6 -011111111011 Wanna 6 -011111111011 Reinsurers 9 -011111111011 Badly 10 -011111111011 Completely 11 -011111111011 Parental 15 -011111111011 FIRMS 17 -011111111011 Helping 49 -011111111011 Simply 83 -011111111011 Polls 86 -011111111011 Please 129 -011111111011 Ever 205 -011111111011 Closely 226 -011111111011 Never 262 -011111111011 Re 388 -011111111011 To 8012 -011111111011 Having 507 -01111111110 Downticks 1 -01111111110 Toneless 1 -01111111110 Dressmakers 1 -01111111110 Laid-back 1 -01111111110 LATECOMERS 1 -01111111110 Bohanon 1 -01111111110 Rappers 1 -01111111110 Clearinghouses 1 -01111111110 Aloof 1 -01111111110 Ratios 1 -01111111110 CHECK-CLEARING 1 -01111111110 Thickness 1 -01111111110 Sharp-tongued 1 -01111111110 Politicized 1 -01111111110 Stubborn 1 -01111111110 Boaters 1 -01111111110 OBANDO 1 -01111111110 Collusion 1 -01111111110 Hulking 1 -01111111110 Eyeglass 1 -01111111110 WORLDCORP 1 -01111111110 RIDE 1 -01111111110 Pseudo-injuries 1 -01111111110 Reticent 1 -01111111110 Sealions 1 -01111111110 Handpicked 1 -01111111110 Non-religiously 1 -01111111110 Upper- 1 -01111111110 Accommodate 1 -01111111110 Sergeants 1 -01111111110 Lavishly 1 -01111111110 LANDS 1 -01111111110 Nightfall 1 -01111111110 Diminutive 1 -01111111110 Juniors 1 -01111111110 Skis 1 -01111111110 Overeating 1 -01111111110 Coffee-producing 1 -01111111110 Obedient 1 -01111111110 BOARDING 1 -01111111110 WASH-SALE 1 -01111111110 Underdressed 1 -01111111110 Honorifics 1 -01111111110 .has 1 -01111111110 Dwelling 1 -01111111110 Toilets 1 -01111111110 Radion 1 -01111111110 Midpriced 1 -01111111110 Foreign-invested 1 -01111111110 Brawls 1 -01111111110 Disapproval 1 -01111111110 SPARIN 1 -01111111110 Tacticians 1 -01111111110 Flavor 1 -01111111110 Briefcases 1 -01111111110 HYDRO-QUEBEC 1 -01111111110 Boisterous 1 -01111111110 Hairstyling 1 -01111111110 Spheres 1 -01111111110 Czarist-Russian 1 -01111111110 Money-changers 1 -01111111110 Boyish-looking 1 -01111111110 Bedpans 1 -01111111110 Locators 1 -01111111110 Affectionately 1 -01111111110 KLOL-FM 1 -01111111110 Narrowly 1 -01111111110 Ambrands 1 -01111111110 Irreverent 1 -01111111110 Superregionals 1 -01111111110 Griping 1 -01111111110 raders 1 -01111111110 Mr.Benton 1 -01111111110 Jesters 1 -01111111110 Peleus 1 -01111111110 Giggling 1 -01111111110 Compacts 1 -01111111110 Symbiotically 1 -01111111110 Zigging 1 -01111111110 Jumpy 1 -01111111110 Labor-intensive 1 -01111111110 Ribbon-cutting 1 -01111111110 Shells 1 -01111111110 SURVIVORS 1 -01111111110 Food-stamp 1 -01111111110 Psychobiographers 1 -01111111110 Classicists 1 -01111111110 Swindlers 1 -01111111110 Main-home 1 -01111111110 Balloting 1 -01111111110 Broad-shouldered 1 -01111111110 Smoothed 1 -01111111110 Guardi 1 -01111111110 Monographs 1 -01111111110 Jocks 1 -01111111110 Therapies 1 -01111111110 Spirometers 1 -01111111110 Iranscams 1 -01111111110 Fuming 1 -01111111110 Embossed 1 -01111111110 Enforcers 1 -01111111110 Surfers 1 -01111111110 SCHOLARSHIPS 1 -01111111110 Lepers 1 -01111111110 Stocky 1 -01111111110 PARIETAL 1 -01111111110 PERSONAL-COMPUTER 1 -01111111110 Grievers 1 -01111111110 Pronunciation 1 -01111111110 Hout 1 -01111111110 Barlcays 1 -01111111110 Osepian 1 -01111111110 Ironies 1 -01111111110 Evasive 1 -01111111110 Vandalism 1 -01111111110 Appointing 1 -01111111110 NO-SPOUSE 1 -01111111110 Jintai 1 -01111111110 Autonomy 1 -01111111110 Ducts 1 -01111111110 Pre-capitalistic 1 -01111111110 Sneeze 1 -01111111110 Presentations 1 -01111111110 Horsesense 1 -01111111110 Somethin 1 -01111111110 Politicos 1 -01111111110 Jeremiahs 1 -01111111110 Catalogers 1 -01111111110 Amateurish 1 -01111111110 Arson 1 -01111111110 Midyear 1 -01111111110 Sincere-sounding 1 -01111111110 Expressivity 1 -01111111110 Overplanting 1 -01111111110 Devaluations 1 -01111111110 Unloved 1 -01111111110 Hand-washing 1 -01111111110 Gamboling 1 -01111111110 Furriers 1 -01111111110 Journalistic 1 -01111111110 White-haired 1 -01111111110 Shutterless 1 -01111111110 Clamps 1 -01111111110 Commuter-drivers 1 -01111111110 Churchgoers 1 -01111111110 Ambushers 1 -01111111110 FILL 1 -01111111110 Well-managed 1 -01111111110 Disheveled 1 -01111111110 Churls 1 -01111111110 Unscathed 1 -01111111110 Swedlow 1 -01111111110 LENDERS 1 -01111111110 Enjoyment 1 -01111111110 Narrow-gauged 1 -01111111110 Hailstorms 1 -01111111110 Anthologies 1 -01111111110 Lower- 1 -01111111110 Caseloads 1 -01111111110 VMN 1 -01111111110 Baubles 1 -01111111110 Electronically 1 -01111111110 .He 1 -01111111110 Passives 1 -01111111110 Slurs 1 -01111111110 .good 1 -01111111110 Dreamy 1 -01111111110 Snicker 1 -01111111110 Strong-willed 1 -01111111110 Financial-service 1 -01111111110 Low- 1 -01111111110 Preachers 1 -01111111110 Second- 1 -01111111110 Clomipramine 1 -01111111110 Slogans 1 -01111111110 Affable 1 -01111111110 Less-well 1 -01111111110 Two-up 1 -01111111110 Nonexistent 1 -01111111110 Parrots 1 -01111111110 Disguises 1 -01111111110 Dismay 1 -01111111110 Khopa 1 -01111111110 Fetterman 1 -01111111110 Bare-chested 1 -01111111110 REQUIRED-PAYOUT 1 -01111111110 Technician 1 -01111111110 Overviews 1 -01111111110 Thinly 1 -01111111110 Safes 1 -01111111110 Short- 1 -01111111110 Arbitrations 1 -01111111110 Robustness 1 -01111111110 Cancellations 1 -01111111110 Cutest 1 -01111111110 Hikers 1 -01111111110 Ballrooms 1 -01111111110 Six-feet-two 1 -01111111110 Criminologists 1 -01111111110 Exiles 1 -01111111110 Estate-tax 1 -01111111110 Two- 1 -01111111110 Stock-switching 1 -01111111110 Nibbling 1 -01111111110 Logs 1 -01111111110 Sportspeak 1 -01111111110 Policy-makers 1 -01111111110 ESTATE-FREEZE 1 -01111111110 trader-entrepreneurs 1 -01111111110 Headstrong 1 -01111111110 Bystanders 1 -01111111110 PASSIVE-LOSS 1 -01111111110 Middle-term 1 -01111111110 Doghouses 1 -01111111110 ANIMAL-RIGHTS 1 -01111111110 Wiry 1 -01111111110 Foolish 1 -01111111110 Unschooled 1 -01111111110 Workshops 1 -01111111110 Behaviorists 1 -01111111110 Personable 1 -01111111110 Correctly 1 -01111111110 Underinvestment 1 -01111111110 Interred 1 -01111111110 Variously 1 -01111111110 Wisconsinites 1 -01111111110 Soupy 1 -01111111110 Plaids 1 -01111111110 Nastiness 1 -01111111110 Summarized 1 -01111111110 Courted 1 -01111111110 Cebuanos 1 -01111111110 Perturbed 1 -01111111110 Grandly 1 -01111111110 Slicing 1 -01111111110 Videotech 1 -01111111110 Banxquotes 1 -01111111110 Two-month 1 -01111111110 Kaiser-Frazer 1 -01111111110 Reformist 1 -01111111110 Catchily 1 -01111111110 Hecklers 1 -01111111110 Specialty-care 1 -01111111110 Snorts 1 -01111111110 TURBULENCE 1 -01111111110 Middle- 1 -01111111110 Medium- 1 -01111111110 Excavation 1 -01111111110 Ever-complaining 1 -01111111110 Club- 1 -01111111110 Gert-Friedrich 1 -01111111110 Prematurity 1 -01111111110 Macro-economists 1 -01111111110 Liquidators 1 -01111111110 Biochemists 1 -01111111110 Junkholders 1 -01111111110 Ex-staffers 1 -01111111110 Towboats 1 -01111111110 Rock-concert 1 -01111111110 Mental-handicap 1 -01111111110 Sixty-day 1 -01111111110 Chelation 1 -01111111110 Third-baseman 1 -01111111110 Kelpie 1 -01111111110 Ideologies 1 -01111111110 Sandpaper 1 -01111111110 Razors 1 -01111111110 Nicknames 2 -01111111110 Officals 2 -01111111110 Fromme 2 -01111111110 Honjo 2 -01111111110 Snafus 2 -01111111110 Storekeepers 2 -01111111110 Strides 2 -01111111110 Market-watchers 2 -01111111110 Contrasts 2 -01111111110 Petitioners 2 -01111111110 Trustcorp. 2 -01111111110 Torotel 2 -01111111110 Reimbursements 2 -01111111110 Petulant 2 -01111111110 Consolidations 2 -01111111110 Ensconced 2 -01111111110 Biometrics 2 -01111111110 Neurosurgeons 2 -01111111110 Grumbling 2 -01111111110 CA.Blockers 2 -01111111110 Philanthropists 2 -01111111110 Depositions 2 -01111111110 Capitalized 2 -01111111110 Monopoles 2 -01111111110 Doctrines 2 -01111111110 Arbitrageurs 2 -01111111110 Mohacs 2 -01111111110 SLHD 2 -01111111110 THRIFTS 2 -01111111110 Cabbies 2 -01111111110 Canvassers 2 -01111111110 Artisans 2 -01111111110 Camcorders 2 -01111111110 Brainstormers 2 -01111111110 Self-funding 2 -01111111110 Settlers 2 -01111111110 SUPERMARKETS 2 -01111111110 Huts 2 -01111111110 Niobec 2 -01111111110 Railbikers 2 -01111111110 Pianists 2 -01111111110 Pediatricians 2 -01111111110 Yelling 2 -01111111110 Marinas 2 -01111111110 Modems 2 -01111111110 Downgrades 2 -01111111110 OPERATORS 2 -01111111110 Datavision 2 -01111111110 Menacing 2 -01111111110 Grasses 2 -01111111110 Rubles 2 -01111111110 MUSEUMS 2 -01111111110 Discreet 2 -01111111110 Nattily 2 -01111111110 Cheapskates 2 -01111111110 Placards 2 -01111111110 Jails 2 -01111111110 Shincho 2 -01111111110 Sonyma 2 -01111111110 Scriptwriters 2 -01111111110 MEDICARE 2 -01111111110 Audiophiles 2 -01111111110 Adolescents 2 -01111111110 Bullishness 2 -01111111110 Floods 2 -01111111110 Seismologists 2 -01111111110 Modestly 2 -01111111110 DRIVERS 2 -01111111110 Chamulans 2 -01111111110 Wigs 2 -01111111110 Blueprints 2 -01111111110 Free-marketeers 2 -01111111110 Deadlines 2 -01111111110 Bottom-fishing 2 -01111111110 Buttons 2 -01111111110 YUGOSLAVIA 2 -01111111110 CCOPs 2 -01111111110 Cereal-makers 2 -01111111110 Orphaned 2 -01111111110 Nonbelievers 2 -01111111110 Ceilings 2 -01111111110 Exasperated 2 -01111111110 Cramming 2 -01111111110 Bargainers 2 -01111111110 Adversely 2 -01111111110 Desegregation 2 -01111111110 Stackware 2 -01111111110 Quarantine 2 -01111111110 Anachronisms 2 -01111111110 Clergymen 2 -01111111110 Summits 2 -01111111110 Settled 2 -01111111110 Asbestriens 2 -01111111110 Schoolteachers 2 -01111111110 Kugelfischer 2 -01111111110 Politely 2 -01111111110 ANCHORAGE 2 -01111111110 Spokes 2 -01111111110 Signers 2 -01111111110 Gangsters 2 -01111111110 Initials 2 -01111111110 Dutifully 2 -01111111110 Meatpackers 2 -01111111110 Chimps 2 -01111111110 Gatherings 2 -01111111110 Publicists 2 -01111111110 Urbane 2 -01111111110 Contrasting 2 -01111111110 Xeriscapers 2 -01111111110 Aquifers 2 -01111111110 Hinting 2 -01111111110 Protestors 2 -01111111110 Subcommittees 2 -01111111110 Heroin 2 -01111111110 Unitholders 2 -01111111110 Greyvest 2 -01111111110 Landslides 2 -01111111110 Capitalists 2 -01111111110 Bhawnesh 3 -01111111110 Marrow-Tech 3 -01111111110 Charge-offs 3 -01111111110 Pitchmen 3 -01111111110 WEBSTER 3 -01111111110 Isco 3 -01111111110 Appetites 3 -01111111110 Non-itemizers 3 -01111111110 Indemnities 3 -01111111110 Editorials 3 -01111111110 Neighborhoods 3 -01111111110 Linage 3 -01111111110 Quarantines 3 -01111111110 Tuberculosis 3 -01111111110 Brochures 3 -01111111110 Cyclicals 3 -01111111110 Tentatively 3 -01111111110 Noncompliance 3 -01111111110 Motives 3 -01111111110 Theatergoers 3 -01111111110 Partisanship 3 -01111111110 MagneTek 3 -01111111110 Soft-spoken 3 -01111111110 Profit-takers 3 -01111111110 Arrivals 3 -01111111110 Neophytes 3 -01111111110 Wags 3 -01111111110 Pre-crash 3 -01111111110 Rows 3 -01111111110 Advertisements 3 -01111111110 Jetliners 3 -01111111110 STRATEGISTS 3 -01111111110 Clerics 3 -01111111110 Footnotes 3 -01111111110 Upgrades 3 -01111111110 Sophisticates 3 -01111111110 Unforeseen 3 -01111111110 Hijackers 3 -01111111110 Workaholics 3 -01111111110 Lightly 3 -01111111110 FLOWERS 3 -01111111110 Shipowners 3 -01111111110 Belts 3 -01111111110 CPC-Rexcel 3 -01111111110 Accommodations 3 -01111111110 Pots 3 -01111111110 Liquidations 3 -01111111110 Tampons 3 -01111111110 Dermatologists 3 -01111111110 Stymied 3 -01111111110 Agronomists 3 -01111111110 Provinces 3 -01111111110 Prosecutions 3 -01111111110 Strougal 3 -01111111110 Pensioners 3 -01111111110 Townsfolk 3 -01111111110 Workmen 3 -01111111110 Wildcatters 3 -01111111110 PetroCorp 3 -01111111110 Combinations 3 -01111111110 Rescuers 3 -01111111110 Stockpiles 3 -01111111110 Spinoffs 3 -01111111110 Derailments 3 -01111111110 Warranties 3 -01111111110 Screams 3 -01111111110 Staffs 3 -01111111110 Reruns 3 -01111111110 Fruitcakes 3 -01111111110 Laptops 3 -01111111110 Preservationists 3 -01111111110 Mirocha 3 -01111111110 Supers 3 -01111111110 Trainers 4 -01111111110 Innovators 4 -01111111110 Commanders 4 -01111111110 Scanners 4 -01111111110 Numismatists 4 -01111111110 Treated 4 -01111111110 Squatters 4 -01111111110 Exhibitors 4 -01111111110 Turbulence 4 -01111111110 Microphoretic 4 -01111111110 Trud 4 -01111111110 Textbooks 4 -01111111110 Panels 4 -01111111110 Minivans 4 -01111111110 Amateurs 4 -01111111110 Commonly 4 -01111111110 Tables 4 -01111111110 Admac 4 -01111111110 Prepayments 4 -01111111110 Winos 4 -01111111110 Oysters 4 -01111111110 Storms 4 -01111111110 Leaflets 4 -01111111110 TEEN-AGERS 4 -01111111110 Walkouts 4 -01111111110 Shelves 4 -01111111110 Setbacks 4 -01111111110 Right-wingers 4 -01111111110 Severely 4 -01111111110 Glitches 4 -01111111110 Protectionists 4 -01111111110 Onlookers 4 -01111111110 Completed 4 -01111111110 Municipalities 4 -01111111110 Astro-Med 4 -01111111110 Unionists 4 -01111111110 Archaeologists 4 -01111111110 Affidavits 4 -01111111110 Memos 4 -01111111110 Assailants 4 -01111111110 Arsonists 4 -01111111110 Bacteria 4 -01111111110 Spying 4 -01111111110 Statisticians 4 -01111111110 Nonaccruing 4 -01111111110 Slight 4 -01111111110 Convertibles 5 -01111111110 Pedestrians 5 -01111111110 HARTFORD 5 -01111111110 Formally 5 -01111111110 Co-workers 5 -01111111110 Substitutes 5 -01111111110 Banners 5 -01111111110 Rainfall 5 -01111111110 HEALTHVEST 5 -01111111110 Invitations 5 -01111111110 Evenings 5 -01111111110 Inspections 5 -01111111110 Symptoms 5 -01111111110 Fund-raisers 5 -01111111110 Foresters 5 -01111111110 Modernism 5 -01111111110 Independents 5 -01111111110 Spectators 5 -01111111110 Inmates 5 -01111111110 Cutbacks 5 -01111111110 Vacationers 5 -01111111110 Start-ups 5 -01111111110 Easier 5 -01111111110 Defectors 5 -01111111110 Enthusiasts 5 -01111111110 Condoms 5 -01111111110 GOODMAN 5 -01111111110 Censors 5 -01111111110 Blue-chips 6 -01111111110 Veterinarians 6 -01111111110 Instructors 6 -01111111110 Maturities 6 -01111111110 Syndicators 6 -01111111110 Mourners 6 -01111111110 Monetarists 6 -01111111110 Pounds 6 -01111111110 Pharmacists 6 -01111111110 Dues 6 -01111111110 Strokes 6 -01111111110 Buy-outs 6 -01111111110 Spouses 6 -01111111110 Attendees 6 -01111111110 Demographers 6 -01111111110 Peering 6 -01111111110 Old-timers 6 -01111111110 CARU 6 -01111111110 Promoters 6 -01111111110 Acquaintances 6 -01111111110 Truckers 6 -01111111110 Commentators 6 -01111111110 Vandals 6 -01111111110 Drafters 6 -01111111110 Fundamentalists 6 -01111111110 Younkers 6 -01111111110 ADVERTISERS 7 -01111111110 Packages 7 -01111111110 Sociologists 7 -01111111110 Listeners 7 -01111111110 Geologists 7 -01111111110 Leaks 7 -01111111110 Addicts 7 -01111111110 Actuaries 7 -01111111110 Credits 7 -01111111110 Subscriptions 7 -01111111110 HOSPITALS 7 -01111111110 Suggestions 7 -01111111110 Headlines 7 -01111111110 Notices 7 -01111111110 Feminists 8 -01111111110 Restaurateurs 8 -01111111110 Juries 8 -01111111110 Schedules 8 -01111111110 Subpoenas 8 -01111111110 Performers 8 -01111111110 Ranchers 8 -01111111110 Foxes 8 -01111111110 Optimists 8 -01111111110 Pollsters 8 -01111111110 Meteorologists 8 -01111111110 Adjustments 8 -01111111110 Discounters 8 -01111111110 Posters 8 -01111111110 Looked 8 -01111111110 Royalties 8 -01111111110 Contestants 8 -01111111110 Chemists 8 -01111111110 Biologists 8 -01111111110 Patrons 8 -01111111110 Expenditures 8 -01111111110 Offerings 8 -01111111110 Buy-backs 9 -01111111110 Villagers 9 -01111111110 Debtors 9 -01111111110 Rooms 9 -01111111110 Hard-liners 9 -01111111110 Foes 9 -01111111110 Afternoon 9 -01111111110 Crops 9 -01111111110 Principals 9 -01111111110 Gangs 9 -01111111110 Warrants 9 -01111111110 Acquirers 9 -01111111110 Nutritionists 9 -01111111110 Firefighters 9 -01111111110 Landlords 10 -01111111110 Conspicuously 10 -01111111110 Suncoast 10 -01111111110 Courses 10 -01111111110 Celebrities 10 -01111111110 Franchisers 10 -01111111110 Pessimists 10 -01111111110 Relatives 10 -01111111110 Photos 10 -01111111110 Challengers 10 -01111111110 Moderates 10 -01111111110 Strongly 10 -01111111110 Policyholders 10 -01111111110 Guerrillas 10 -01111111110 Explanations 10 -01111111110 Emotions 10 -01111111110 Respondents 10 -01111111110 Salesmen 10 -01111111110 Dentists 10 -01111111110 Detractors 10 -01111111110 Academics 11 -01111111110 Overbuilding 11 -01111111110 Physicists 11 -01111111110 Workstations 11 -01111111110 Incumbents 11 -01111111110 Bombs 11 -01111111110 Mistakes 12 -01111111110 Experiments 12 -01111111110 Injuries 12 -01111111110 Backlogs 12 -01111111110 Filings 12 -01111111110 Subordinates 12 -01111111110 Requirements 12 -01111111110 Admirers 12 -01111111110 Psychiatrists 12 -01111111110 Tenants 13 -01111111110 Commercials 13 -01111111110 Fabri-Centers 13 -01111111110 Retirees 13 -01111111110 Teen-agers 13 -01111111110 Activists 13 -01111111110 Cynics 13 -01111111110 Astronomers 13 -01111111110 Vendors 14 -01111111110 Dissidents 14 -01111111110 Heekin 14 -01111111110 Demonstrators 15 -01111111110 Psychologists 15 -01111111110 Swaps 15 -01111111110 Violations 16 -01111111110 Strategists 16 -01111111110 Widely 16 -01111111110 Claimants 17 -01111111110 Brokerages 17 -01111111110 Depositors 17 -01111111110 Properly 17 -01111111110 Aimed 17 -01111111110 Supercomputers 17 -01111111110 Inspectors 18 -01111111110 Callers 18 -01111111110 Bidders 19 -01111111110 Refiners 19 -01111111110 Arriving 19 -01111111110 Protests 19 -01111111110 Staffers 20 -01111111110 Reasons 20 -01111111110 Jurors 20 -01111111110 Protesters 21 -01111111110 Teams 21 -01111111110 Layoffs 22 -01111111110 Applicants 22 -01111111110 Sponsors 23 -01111111110 Franchisees 23 -01111111110 Shortages 24 -01111111110 Guests 24 -01111111110 Defendants 24 -01111111110 Historians 25 -01111111110 Lawsuits 25 -01111111110 Stockholders 25 -01111111110 Locals 25 -01111111110 Forecasters 26 -01111111110 Gunmen 27 -01111111110 Meetings 27 -01111111110 Salaries 27 -01111111110 Advancers 28 -01111111110 Issuers 28 -01111111110 Decliners 29 -01111111110 Priced 29 -01111111110 Outsiders 29 -01111111110 Organizers 29 -01111111110 Educators 29 -01111111110 Smokers 29 -01111111110 Drivers 30 -01111111110 Short-sellers 31 -01111111110 Counselors 33 -01111111110 Lobbyists 34 -01111111110 Steelmakers 34 -01111111110 Borrowers 36 -01111111110 Troops 37 -01111111110 Actively 39 -01111111110 Colleagues 40 -01111111110 Delegates 43 -01111111110 Marketers 43 -01111111110 Fans 44 -01111111110 Losers 45 -01111111110 Viewers 46 -01111111110 Sellers 47 -01111111110 Stockbrokers 47 -01111111110 Documents 49 -01111111110 Witnesses 49 -01111111110 Skeptics 50 -01111111110 Odds 51 -01111111110 Governments 52 -01111111110 Arbitragers 55 -01111111110 Specialists 55 -01111111110 Environmentalists 55 -01111111110 Legislators 56 -01111111110 Plaintiffs 58 -01111111110 Ads 62 -01111111110 Gainers 62 -01111111110 Clients 62 -01111111110 Developers 64 -01111111110 Businessmen 67 -01111111110 Users 70 -01111111110 Wages 71 -01111111110 Negotiators 72 -01111111110 Reporters 74 -01111111110 Makers 74 -01111111110 Insiders 76 -01111111110 Residents 76 -01111111110 Diplomats 80 -01111111110 Chances 81 -01111111110 Profit-taking 83 -01111111110 Thrifts 84 -01111111110 Readers 88 -01111111110 Creditors 96 -01111111110 Competitors 99 -01111111110 Observers 99 -01111111110 Groups 104 -01111111110 Lenders 104 -01111111110 Participants 111 -01111111110 Insurers 121 -01111111110 Politicians 122 -01111111110 Aides 128 -01111111110 Proponents 131 -01111111110 Voters 133 -01111111110 Experts 134 -01111111110 Supporters 150 -01111111110 Retailers 166 -01111111110 Friends 170 -01111111110 Opponents 175 -01111111110 Individuals 178 -01111111110 Authorities 181 -01111111110 Prosecutors 189 -01111111110 Reserves 196 -01111111110 Doctors 203 -01111111110 Regulators 223 -01111111110 Researchers 236 -01111111110 Directors 268 -01111111110 Lawmakers 290 -01111111110 Investigators 298 -01111111110 Scientists 308 -01111111110 Attorneys 314 -01111111110 Underwriters 369 -01111111110 Shareholders 441 -01111111110 Executives 445 -01111111110 Brokers 504 -01111111110 Police 552 -01111111110 Critics 556 -01111111110 Economists 575 -01111111110 Lawyers 586 -01111111110 Sources 753 -01111111110 Dealers 1372 -01111111110 Others 1474 -01111111110 Officials 2320 -01111111110 Analysts 4350 -01111111110 Traders 2637 -01111111111 Artifacts 1 -01111111111 TWO-FOR-ONE 1 -01111111111 IBM-COMPATIBLE 1 -01111111111 Odometers 1 -01111111111 Intruders 1 -01111111111 Gluttony 1 -01111111111 Incme 1 -01111111111 Pessimist 1 -01111111111 Catheters 1 -01111111111 Utopias 1 -01111111111 Feelers 1 -01111111111 Standardizing 1 -01111111111 Jargon 1 -01111111111 Dealer-managers 1 -01111111111 Pronouncing 1 -01111111111 Fencers 1 -01111111111 HOSTAGE-TAKING 1 -01111111111 COMEDY 1 -01111111111 DEODORANT 1 -01111111111 LIQUOR 1 -01111111111 Keying 1 -01111111111 Envision 1 -01111111111 Plagiarism 1 -01111111111 Squabbles 1 -01111111111 AIR-SAFETY 1 -01111111111 Stamped 1 -01111111111 Voice/Dance 1 -01111111111 Unissued 1 -01111111111 THEORY 1 -01111111111 Tamefollow 1 -01111111111 OLLIEGATE 1 -01111111111 Flip-flop 1 -01111111111 AMENITIES 1 -01111111111 NOTIFICATION 1 -01111111111 Bashful 1 -01111111111 Sneezy 1 -01111111111 Fulfillment 1 -01111111111 Tumbrels 1 -01111111111 IRWINDALE 1 -01111111111 Rosencrantz 1 -01111111111 Hypercriticism 1 -01111111111 Draftees 1 -01111111111 RESERVATIONS 1 -01111111111 OVERBOOKING 1 -01111111111 BAGGAGE 1 -01111111111 PETS 1 -01111111111 Portending 1 -01111111111 Bandanna 1 -01111111111 POSTPONEMENT 1 -01111111111 CALCULATIONS 1 -01111111111 Invoices 1 -01111111111 COMPLICATIONS 1 -01111111111 Valuations 1 -01111111111 Piggybacking 1 -01111111111 ICOT 1 -01111111111 Hach 1 -01111111111 CANNIBALS 1 -01111111111 Proselytizer 1 -01111111111 Auditioning 1 -01111111111 STAY-AT-HOMES 1 -01111111111 Re-loading 1 -01111111111 Rely 1 -01111111111 Rooting 1 -01111111111 Remarking 1 -01111111111 Viatech 1 -01111111111 Controversies 1 -01111111111 Starving 1 -01111111111 Broker-dealers 1 -01111111111 Airfares 1 -01111111111 Kailas 1 -01111111111 Skimping 1 -01111111111 Differentials 1 -01111111111 Entrepreneuring 1 -01111111111 /Serpent 1 -01111111111 THERMAL 1 -01111111111 Quiddities 1 -01111111111 Reputations 1 -01111111111 ITALY 1 -01111111111 Ohbayashji 1 -01111111111 Minutes-of-use 1 -01111111111 AFFILIATE 1 -01111111111 CANCELLATION 1 -01111111111 BUY-BACKS 1 -01111111111 PENSIONERS 1 -01111111111 Cityvideos 1 -01111111111 RESTRUCTURING 1 -01111111111 BUZZZZZZZZ 1 -01111111111 Harmonies 1 -01111111111 Pilloried 1 -01111111111 hostess/human 1 -01111111111 Art/Car 1 -01111111111 HIGH-INCOME 1 -01111111111 Assailed 1 -01111111111 RE-LOADING 1 -01111111111 Scenery 1 -01111111111 Piled 1 -01111111111 CHALLENGES 1 -01111111111 GTECH 1 -01111111111 Dealerships 1 -01111111111 RENT-A-TREE 1 -01111111111 Sabers 1 -01111111111 WOMAN-SIZED 1 -01111111111 REPAIR 1 -01111111111 Shippo 1 -01111111111 LUMBER 1 -01111111111 Innocents 1 -01111111111 FILIPINOS 1 -01111111111 Bickering 1 -01111111111 Installments 1 -01111111111 Oarsman 1 -01111111111 Man-hours 1 -01111111111 Sarcasm 1 -01111111111 Tussles 1 -01111111111 Substitution 1 -01111111111 Medicines 1 -01111111111 ESCALATION 1 -01111111111 Bloodhounds 1 -01111111111 Preparers 1 -01111111111 Anti-Age 1 -01111111111 Past/Imperfect 1 -01111111111 TRADE-WAR 1 -01111111111 Parchment 1 -01111111111 Brushes 1 -01111111111 Blips 1 -01111111111 Piecrust 1 -01111111111 ENEMY 1 -01111111111 Fusstidious 1 -01111111111 WNEP-TV 1 -01111111111 Tournaments 1 -01111111111 Mortars 1 -01111111111 Contradictions 1 -01111111111 Backtracking 1 -01111111111 SELF-FUNDING 1 -01111111111 Adjustables 1 -01111111111 Best-known 1 -01111111111 BEACHHEAD 1 -01111111111 EXONERATED 1 -01111111111 Pamphlets 1 -01111111111 FRESHMEN 1 -01111111111 Ratting 1 -01111111111 Jostling 1 -01111111111 CO-PARENTING 1 -01111111111 Superimposed 1 -01111111111 Expounding 1 -01111111111 Apace 1 -01111111111 Thumbtacks 1 -01111111111 WHENEVER 1 -01111111111 Seat-prices 1 -01111111111 Morrisen-Knudsen 1 -01111111111 Defaulting 1 -01111111111 Relocate 1 -01111111111 Nondurables 1 -01111111111 Agriculturalists 1 -01111111111 Boors 1 -01111111111 Imbroglio 1 -01111111111 Azel 1 -01111111111 Congratulated 1 -01111111111 Announcer 1 -01111111111 Fortunetelling 1 -01111111111 Chysler 1 -01111111111 ALIENATED 1 -01111111111 Acquittal 1 -01111111111 Impetus 1 -01111111111 Agendas 1 -01111111111 Edibles 1 -01111111111 Obituaries 1 -01111111111 PAYOLA 1 -01111111111 PHILOSOPHY 1 -01111111111 Eagerness 1 -01111111111 Hawked 1 -01111111111 Tibetan-Americans 1 -01111111111 Specialize 1 -01111111111 Fidget 1 -01111111111 Cross-promotions 1 -01111111111 Housings 1 -01111111111 Shippings 1 -01111111111 Punctuality 1 -01111111111 Impacts 1 -01111111111 BIATHLON 1 -01111111111 LUGE 1 -01111111111 LINEBACKERS 1 -01111111111 Climatic 1 -01111111111 SPLIT-UP 1 -01111111111 Depicted 1 -01111111111 FRAGRANCE 1 -01111111111 Restaurant-goers 1 -01111111111 Electrician 1 -01111111111 POLITICKING 1 -01111111111 Deficiencies 1 -01111111111 Sell-stops 1 -01111111111 QUARTERBACKS 1 -01111111111 RECEIVERS 1 -01111111111 Newborns 1 -01111111111 Cashiers 1 -01111111111 Semtech 1 -01111111111 Hanker 1 -01111111111 ProGroup 1 -01111111111 Levies 1 -01111111111 Spokepersons 1 -01111111111 Sidetracked 1 -01111111111 Shacks 1 -01111111111 SEQUEL 1 -01111111111 Militiamen 1 -01111111111 bhaga 1 -01111111111 Fluidly 1 -01111111111 Evangelicalism 1 -01111111111 Spray-painted 1 -01111111111 Cremations 1 -01111111111 MOVIETIME 1 -01111111111 Televangelism 1 -01111111111 Flashback 1 -01111111111 Impoundments 1 -01111111111 TKD 1 -01111111111 THREE-IN-ONE 1 -01111111111 G.R.C.O.P. 1 -01111111111 Molds 1 -01111111111 ProfScam 1 -01111111111 Codename 1 -01111111111 High-technologies 1 -01111111111 Lugers 1 -01111111111 Exercises 1 -01111111111 RESIGNATION 1 -01111111111 Tally-ho 1 -01111111111 Poindexter/North/McFarlane 1 -01111111111 Prospectuses 1 -01111111111 Attempted 1 -01111111111 Baker/Meese/Deaver 1 -01111111111 Att 1 -01111111111 Krostiny 1 -01111111111 Ethicist 1 -01111111111 Moscow-on-the-Pacific 1 -01111111111 Novo-Nordisk 1 -01111111111 DEBENTURES 1 -01111111111 UNOCAL 1 -01111111111 AMOCO 1 -01111111111 BUY-BACK 1 -01111111111 Perennials 1 -01111111111 Finger-pointing 1 -01111111111 Microscoft 1 -01111111111 Greystoke 1 -01111111111 TUESDAY 1 -01111111111 VACATIONS 1 -01111111111 ANTIFREEZE 1 -01111111111 FERTILIZER 1 -01111111111 Campers 1 -01111111111 DUCKS 1 -01111111111 Calgon-Carbon 1 -01111111111 HAIG 1 -01111111111 Acceptances 1 -01111111111 BENTSEN-BASHING 1 -01111111111 Bangs 1 -01111111111 MUMBO 1 -01111111111 MAY/JUNE 1 -01111111111 FEBRUARY 1 -01111111111 TRACY-LOCKE 1 -01111111111 HEUBLEIN 1 -01111111111 Taito 1 -01111111111 Deferments 1 -01111111111 Volunteering 1 -01111111111 Cross-Purposes 1 -01111111111 Peacemaker 1 -01111111111 Accident-prone 1 -01111111111 BALLPARK 1 -01111111111 Specifications 1 -01111111111 Nadelmann 1 -01111111111 Types 1 -01111111111 soybean-futures-trading 1 -01111111111 Ticket-sellers 1 -01111111111 REORGANIZATION 1 -01111111111 glorifiers 1 -01111111111 STUDIO 1 -01111111111 Internationals 1 -01111111111 Jettisoned 1 -01111111111 MARK-UP 1 -01111111111 Promiscuity 1 -01111111111 CELTICS 1 -01111111111 Tailspin 1 -01111111111 Congre 1 -01111111111 USUAL 1 -01111111111 Medications 1 -01111111111 Cohabiting 1 -01111111111 Vermin 1 -01111111111 SKATES 1 -01111111111 Pawns 1 -01111111111 Star-struck 1 -01111111111 Psicor 1 -01111111111 Guesses 1 -01111111111 Intervenors 1 -01111111111 DIAL-A-PIANO-LESSON 1 -01111111111 CONTROLS 1 -01111111111 Sprayed 1 -01111111111 Sneering 1 -01111111111 Draped 2 -01111111111 UNEMPLOYMENT 2 -01111111111 Soured 2 -01111111111 CHARGES 2 -01111111111 Disillusion 2 -01111111111 Imprisoned 2 -01111111111 RAGED 2 -01111111111 Fanatics 2 -01111111111 Overheard 2 -01111111111 Outcome 2 -01111111111 Spreadsheets 2 -01111111111 AMSTERDAM 2 -01111111111 VIENNA 2 -01111111111 Catches 2 -01111111111 SILENCE 2 -01111111111 Centered 2 -01111111111 Drunks 2 -01111111111 Desserts 2 -01111111111 MARC 2 -01111111111 Turnpikes 2 -01111111111 Feuding 2 -01111111111 Ipalco 2 -01111111111 ITALIAN 2 -01111111111 Deadline 2 -01111111111 Undercapitalized 2 -01111111111 Reared 2 -01111111111 Musing 2 -01111111111 SQUASH 2 -01111111111 SYMBOL 2 -01111111111 Cabdrivers 2 -01111111111 Machineries 2 -01111111111 Concentrating 2 -01111111111 Mired 2 -01111111111 COACHING 2 -01111111111 BONANZA 2 -01111111111 WOODSTOCK 2 -01111111111 Engagement 2 -01111111111 Transcripts 2 -01111111111 SUNDAY 2 -01111111111 Landings 2 -01111111111 DEFERRAL 2 -01111111111 ATTACK 2 -01111111111 Atonio 2 -01111111111 Abstaining 2 -01111111111 BANKAMERICA 2 -01111111111 Brighter 2 -01111111111 SALESPEOPLE 2 -01111111111 El-Damer 2 -01111111111 FIGURE 2 -01111111111 PLAINS 2 -01111111111 Ghettos 2 -01111111111 Townsview 2 -01111111111 Tumors 2 -01111111111 LICENSING 2 -01111111111 Collage 2 -01111111111 Ambitions 2 -01111111111 Marketability 2 -01111111111 Unanimity 2 -01111111111 Converts 2 -01111111111 IMPACT 2 -01111111111 PORTFOLIO 2 -01111111111 Reverberations 2 -01111111111 GUIDELINES 2 -01111111111 Macroeconomics 2 -01111111111 Strife 2 -01111111111 CABLE-TV 2 -01111111111 LAWSUIT 2 -01111111111 Corleone 2 -01111111111 RAILROADS 2 -01111111111 CHEVRON 2 -01111111111 Ridership 2 -01111111111 MacNeal-Schwendler 2 -01111111111 WORD 2 -01111111111 Thefts 2 -01111111111 BOZELL 2 -01111111111 COVENANTS 2 -01111111111 DIVERSIFY 2 -01111111111 Eyebrows 2 -01111111111 LITIGATION 2 -01111111111 Yamashita-Shinnihon 2 -01111111111 M/A/R/C 2 -01111111111 GRAPHIC 2 -01111111111 FAREWELL 2 -01111111111 Matched 2 -01111111111 Layout 2 -01111111111 ANNUITIES 2 -01111111111 Fouts 2 -01111111111 Brothels 2 -01111111111 SETTLEMENT 2 -01111111111 Transponders 2 -01111111111 Socialization 2 -01111111111 BOLINGBROKE 2 -01111111111 EXTON 2 -01111111111 Disquiet 2 -01111111111 Reappointment 2 -01111111111 REMODELING 2 -01111111111 Literati 2 -01111111111 Repurchases 2 -01111111111 REGIONS 2 -01111111111 Dollar-selling 2 -01111111111 Statues 2 -01111111111 ARNOLD 2 -01111111111 Prohibitions 2 -01111111111 Pruning 2 -01111111111 Gunbattles 2 -01111111111 Balances 2 -01111111111 PROBES 2 -01111111111 Quoted 2 -01111111111 WPL 2 -01111111111 Emblazoned 2 -01111111111 Confirmed 2 -01111111111 CRYSTAL 2 -01111111111 Indexation 2 -01111111111 Coincidences 2 -01111111111 Inscribed 2 -01111111111 Crises 2 -01111111111 Repayments 2 -01111111111 Repurchase 2 -01111111111 NICKEL 2 -01111111111 Recombination 2 -01111111111 SMOKE 2 -01111111111 INGLEWOOD 2 -01111111111 Disparities 2 -01111111111 AVON 2 -01111111111 Sows 2 -01111111111 AUGUST 2 -01111111111 Combatants 3 -01111111111 BITE 3 -01111111111 Sympathy 3 -01111111111 MILAN 3 -01111111111 Contributors 3 -01111111111 Fallout 3 -01111111111 Residues 3 -01111111111 SEVEN-UP 3 -01111111111 Provision 3 -01111111111 PROMOTERS 3 -01111111111 WITHHOLDING 3 -01111111111 Truce 3 -01111111111 MICRO 3 -01111111111 Limitations 3 -01111111111 Ranging 3 -01111111111 Escalators 3 -01111111111 Nails 3 -01111111111 OSLO 3 -01111111111 ALLEN 3 -01111111111 Refinements 3 -01111111111 Jumps 3 -01111111111 Starved 3 -01111111111 Modifications 3 -01111111111 Animosity 3 -01111111111 RETAILING 3 -01111111111 Hordes 3 -01111111111 Vacancies 3 -01111111111 Displayed 3 -01111111111 DINING 3 -01111111111 Disdain 3 -01111111111 DELAYS 3 -01111111111 Filming 3 -01111111111 CONTRACTS 3 -01111111111 Offsets 3 -01111111111 Begajahans 3 -01111111111 Elaborating 3 -01111111111 RATHER 3 -01111111111 Drinkers 3 -01111111111 THROW 3 -01111111111 Sorokin 3 -01111111111 MOMENTUM 3 -01111111111 Absences 3 -01111111111 Celadon 3 -01111111111 Vikonics 3 -01111111111 Lurking 3 -01111111111 Scrutiny 3 -01111111111 Assaults 3 -01111111111 Financings 3 -01111111111 Commuters 3 -01111111111 Announcements 3 -01111111111 Suspicions 3 -01111111111 Watchdog 3 -01111111111 Pins 3 -01111111111 THAILAND 3 -01111111111 Births 3 -01111111111 ZURICH 3 -01111111111 MADRID 3 -01111111111 Retaliating 3 -01111111111 Jumpers 3 -01111111111 Restraints 3 -01111111111 FORECASTS 3 -01111111111 Firmly 3 -01111111111 COUNT 3 -01111111111 Egalitarianism 3 -01111111111 Firmness 3 -01111111111 Argument 3 -01111111111 Loneliness 3 -01111111111 Arrayed 3 -01111111111 FAST-FOOD 3 -01111111111 Voice-over 3 -01111111111 Blamed 3 -01111111111 Remedies 3 -01111111111 INDIVIDUAL 3 -01111111111 Elevators 3 -01111111111 MILLER 3 -01111111111 Conferences 4 -01111111111 Expectation 4 -01111111111 STRIKE 4 -01111111111 Exemptions 4 -01111111111 Refineries 4 -01111111111 FAIRCHILD 4 -01111111111 Liabilities 4 -01111111111 LAWSUITS 4 -01111111111 PROTEST 4 -01111111111 Divestitures 4 -01111111111 REGULATION 4 -01111111111 Speculating 4 -01111111111 Hostilities 4 -01111111111 Defaults 4 -01111111111 FASHION 4 -01111111111 Approvals 4 -01111111111 FITZWATER 4 -01111111111 Licenses 4 -01111111111 SOUTHEAST 4 -01111111111 VOTE 4 -01111111111 Hint 4 -01111111111 Reeling 4 -01111111111 Dispute 4 -01111111111 STOCKHOLM 4 -01111111111 Babenko 4 -01111111111 REFUNDS 4 -01111111111 Poised 4 -01111111111 Eligibility 4 -01111111111 Apathy 4 -01111111111 Schemes 4 -01111111111 tel 4 -01111111111 Confrontations 4 -01111111111 Hoopla 4 -01111111111 Budgets 4 -01111111111 Viewership 4 -01111111111 Successes 4 -01111111111 Runners-up 4 -01111111111 ROUND 4 -01111111111 Distortions 4 -01111111111 Arrested 4 -01111111111 Composed 4 -01111111111 G&K 4 -01111111111 Conclusion 4 -01111111111 FEES 4 -01111111111 Transplants 4 -01111111111 MEMBERS 4 -01111111111 Co-managers 4 -01111111111 Caviar 4 -01111111111 Re-election 4 -01111111111 FILMS 4 -01111111111 Bail 4 -01111111111 Bushspeak 5 -01111111111 Separated 5 -01111111111 Registrations 5 -01111111111 Infighting 5 -01111111111 Branches 5 -01111111111 Covenants 5 -01111111111 Possibilities 5 -01111111111 Prescriptions 5 -01111111111 Subjects 5 -01111111111 Butkevich 5 -01111111111 Rulings 5 -01111111111 INTEGRATED 5 -01111111111 MORTGAGES 5 -01111111111 RETAIL 5 -01111111111 TRANSACTION 5 -01111111111 WAGES 5 -01111111111 Ignored 5 -01111111111 Traditions 5 -01111111111 Sandwiched 5 -01111111111 Duties 5 -01111111111 Multinationals 5 -01111111111 POLITICS 5 -01111111111 Market-making 5 -01111111111 Commitments 5 -01111111111 PERSONNEL 5 -01111111111 RECOGNITION 5 -01111111111 PENALTY 6 -01111111111 Dealings 6 -01111111111 MOBIL 6 -01111111111 Astronauts 6 -01111111111 Printed 6 -01111111111 Infection 6 -01111111111 Curbs 6 -01111111111 Popularity 6 -01111111111 Defeat 6 -01111111111 Ambition 6 -01111111111 Sizable 6 -01111111111 Resigning 6 -01111111111 Repression 6 -01111111111 Shipment 6 -01111111111 Financials 6 -01111111111 COMPETITION 6 -01111111111 CREDITS 6 -01111111111 ALUMINUM 6 -01111111111 Joblessness 6 -01111111111 Comparisons 6 -01111111111 Thriving 6 -01111111111 MEDIA 6 -01111111111 Spokeswomen 6 -01111111111 OPTIMISM 6 -01111111111 Contacts 6 -01111111111 Preparation 6 -01111111111 TENSIONS 6 -01111111111 Anti-Americanism 6 -01111111111 ORDERS 6 -01111111111 Backlog 7 -01111111111 Hungry 7 -01111111111 AWAY 7 -01111111111 PRUDENTIAL-BACHE 7 -01111111111 OVERHAUL 7 -01111111111 Rallies 7 -01111111111 Excerpts 7 -01111111111 Preparations 7 -01111111111 Refunds 7 -01111111111 PROBLEMS 7 -01111111111 Instructions 7 -01111111111 Amounts 7 -01111111111 Concerts 7 -01111111111 PRODUCTION 7 -01111111111 EXXON 7 -01111111111 SPLIT 7 -01111111111 Miracles 7 -01111111111 Accusations 7 -01111111111 Clearance 7 -01111111111 Volumes 8 -01111111111 Promotions 8 -01111111111 ALTERNATIVE 8 -01111111111 Involved 8 -01111111111 JACKSON 8 -01111111111 Corporates 8 -01111111111 HUTTON 8 -01111111111 BAKES 8 -01111111111 Troubles 8 -01111111111 x-There 8 -01111111111 Negotiation 8 -01111111111 MOVIES 8 -01111111111 Write-offs 8 -01111111111 Emphasis 8 -01111111111 Placed 8 -01111111111 Occupancy 9 -01111111111 Bookings 9 -01111111111 Payrolls 9 -01111111111 Gloom 9 -01111111111 Filing 9 -01111111111 GOING 9 -01111111111 INCREASES 9 -01111111111 Listed 9 -01111111111 Recommendations 9 -01111111111 RELATIONS 9 -01111111111 Subsidiaries 9 -01111111111 Photographs 9 -01111111111 Deaths 9 -01111111111 Warnings 9 -01111111111 SALE 9 -01111111111 GIFTS 9 -01111111111 BRAIN 9 -01111111111 Lobbying 9 -01111111111 CONTROL 9 -01111111111 Hints 9 -01111111111 Successors 9 -01111111111 INDEX 10 -01111111111 Electricals 10 -01111111111 Requests 10 -01111111111 MAGAZINES 10 -01111111111 Hooray 10 -01111111111 Capitalizing 10 -01111111111 Withdrawal 10 -01111111111 Perched 10 -01111111111 Disagreement 10 -01111111111 EARNINGS 10 -01111111111 Arrests 10 -01111111111 Deductions 11 -01111111111 Turnout 11 -01111111111 Samples 11 -01111111111 Enthusiasm 11 -01111111111 Hedging 11 -01111111111 News-Gazette 11 -01111111111 Redemptions 11 -01111111111 Diversification 11 -01111111111 Pessimism 11 -01111111111 BENEFITS 12 -01111111111 Topics 12 -01111111111 Responses 12 -01111111111 CANDIDATES 12 -01111111111 INFLATION 12 -01111111111 Enrollment 12 -01111111111 Bonuses 12 -01111111111 Reactions 12 -01111111111 Penalties 12 -01111111111 Rebates 13 -01111111111 Callable 13 -01111111111 NEWSPAPERS 13 -01111111111 Votes 13 -01111111111 Failures 14 -01111111111 Flights 14 -01111111111 LAWYER 14 -01111111111 Result 14 -01111111111 SHEARSON 14 -01111111111 Resentment 14 -01111111111 PAINEWEBBER 14 -01111111111 Turmoil 14 -01111111111 Demonstrations 14 -01111111111 JOBS 15 -01111111111 Intent 15 -01111111111 FILM 15 -01111111111 Clashes 15 -01111111111 Demands 16 -01111111111 LORENZO 16 -01111111111 Bidding 16 -01111111111 BUDGET 17 -01111111111 Predictions 17 -01111111111 Casualties 17 -01111111111 Tension 17 -01111111111 Purchasers 18 -01111111111 Premiums 18 -01111111111 Arguments 18 -01111111111 Relying 18 -01111111111 Betting 19 -01111111111 BROADCASTING 19 -01111111111 Bayles 19 -01111111111 Provisions 19 -01111111111 Statements 20 -01111111111 Damages 20 -01111111111 Steels 20 -01111111111 Redemption 20 -01111111111 GOMEZ 20 -01111111111 Pressures 20 -01111111111 Focusing 20 -01111111111 SOFTWARE 22 -01111111111 Reductions 22 -01111111111 Example 22 -01111111111 Quotas 22 -01111111111 Projections 22 -01111111111 Certificates 22 -01111111111 Attendance 22 -01111111111 Restrictions 23 -01111111111 Campaigning 23 -01111111111 Withdrawals 23 -01111111111 Permits 24 -01111111111 RADIO 25 -01111111111 Advances 25 -01111111111 PRESS 26 -01111111111 Disputes 27 -01111111111 Fares 28 -01111111111 Tensions 28 -01111111111 Tickets 28 -01111111111 ENTERTAINMENT 28 -01111111111 Hopes 30 -01111111111 Margins 30 -01111111111 Answer 31 -01111111111 Limits 31 -01111111111 Deposits 32 -01111111111 Conditions 32 -01111111111 Delays 32 -01111111111 Contracting 33 -01111111111 ACQUISITION 33 -01111111111 REMARKS 34 -01111111111 MARKETING 34 -01111111111 Examples 34 -01111111111 Receipts 34 -01111111111 PUBLISHING 35 -01111111111 Cases 35 -01111111111 Commissions 36 -01111111111 Sentiment 36 -01111111111 CABLE 36 -01111111111 Expenses 37 -01111111111 Households 37 -01111111111 Dividends 39 -01111111111 Declines 41 -01111111111 Membership 42 -01111111111 Soybeans 47 -01111111111 Discussions 49 -01111111111 Revenues 49 -01111111111 Hearings 51 -01111111111 Differences 52 -01111111111 Comments 52 -01111111111 Starts 53 -01111111111 Deliveries 57 -01111111111 Charges 60 -01111111111 Tests 60 -01111111111 COMPUTER 61 -01111111111 Calls 63 -01111111111 Commenting 63 -01111111111 Increases 65 -01111111111 Outlays 65 -01111111111 Loss 69 -01111111111 ADVERTISING 70 -01111111111 COCOA 70 -01111111111 Approval 71 -01111111111 Contracts 74 -01111111111 Forecasts 77 -01111111111 Prospects 79 -01111111111 Productivity 79 -01111111111 Sentencing 81 -01111111111 Losses 90 -01111111111 Inventories 93 -01111111111 COFFEE 94 -01111111111 Ratings 101 -01111111111 COTTON 102 -01111111111 Figures 103 -01111111111 Output 107 -01111111111 Pressure 107 -01111111111 Expectations 121 -01111111111 Depending 125 -01111111111 Gains 129 -01111111111 Changes 129 -01111111111 Activity 137 -01111111111 SUGAR 146 -01111111111 Turnover 146 -01111111111 Tenders 149 -01111111111 Shipments 152 -01111111111 Spending 167 -01111111111 Q 169 -01111111111 Estimates 169 -01111111111 Profits 171 -01111111111 Unemployment 173 -01111111111 COPPER 181 -01111111111 Negotiations 191 -01111111111 METALS 193 -01111111111 Talks 200 -01111111111 Died 203 -01111111111 MONEY 210 -01111111111 Included 224 -01111111111 BRIEFS 235 -01111111111 ENERGY 240 -01111111111 Except 240 -01111111111 TRUST 242 -01111111111 Spokesmen 251 -01111111111 Yields 257 -01111111111 Orders 269 -01111111111 Bids 288 -01111111111 Details 293 -01111111111 Demand 293 -01111111111 Speaking 312 -01111111111 RATE 403 -01111111111 Imports 429 -01111111111 Exports 483 -01111111111 Results 493 -01111111111 Production 504 -01111111111 Profit 553 -01111111111 Rates 562 -01111111111 Earnings 590 -01111111111 Dollar 617 -01111111111 Shares 703 -01111111111 Source 718 -01111111111 Commodities 744 -01111111111 Bonds 846 -01111111111 Based 881 -01111111111 Stocks 1202 -01111111111 Trading 1596 -01111111111 Prices 1678 -01111111111 Volume 1980 -01111111111 Terms 2396 -01111111111 Sales 4065 -01111111111 Revenue 3633 -1000000 Cloris 1 -1000000 Japanese-unit 1 -1000000 IAS 1 -1000000 tough-bargaining 1 -1000000 797,487 1 -1000000 Nisha 1 -1000000 bowtie-sporting 1 -1000000 corporate-statist 1 -1000000 preappraising 1 -1000000 hostile-to-government 1 -1000000 Singye 1 -1000000 Board-appointed 1 -1000000 oft-criticized 1 -1000000 Onwardleyswell 1 -1000000 386,729 1 -1000000 building-and-loan 1 -1000000 anniversary-celebration 1 -1000000 gruff-voiced 1 -1000000 Specradyne 1 -1000000 local-bank 1 -1000000 Turkophobic 1 -1000000 never-elected 1 -1000000 ex-vice 1 -1000000 construction-company 1 -1000000 47year-old 1 -1000000 television-group 1 -1000000 Dunawayesque 1 -1000000 Fiorillo 1 -1000000 H.T. 1 -1000000 1,178,000 1 -1000000 owlish-looking 1 -1000000 41year-old 1 -1000000 14th-floor 1 -1000000 once-affluent 1 -1000000 Nedim 1 -1000000 gray-bearded 1 -1000000 then-lame-duck 1 -1000000 Fed-bank 1 -1000000 Racquel 1 -1000000 Adamantios 1 -1000000 publicity-eager 1 -1000000 securities-board 1 -1000000 pork-rind-eating 1 -1000000 555,800 1 -1000000 too-eager 1 -1000000 field-based 1 -1000000 most-beloved 1 -1000000 1,297,022 1 -1000000 Sibrand 1 -1000000 student-body 1 -1000000 Steero 2 -1000000 Wigberto 2 -1000000 district-bank 3 -1000000 vice 20762 -1000000 Taiwan-born 6 -1000001 export-company 1 -1000001 colored-gem 1 -1000001 deled 1 -1000001 third-echelon 1 -1000001 flag-etiquette 1 -1000001 Raimonds 1 -1000001 REO 1 -1000001 flight-safety 1 -1000001 Nipponese 1 -1000001 131-member 1 -1000001 QIT-Fer 1 -1000001 Construciones 1 -1000001 unrestrainable 1 -1000001 face-mask 1 -1000001 electrical/electronics 1 -1000001 Nastassia 1 -1000001 K-Y 1 -1000001 Foersta 1 -1000001 UNIX/XENIX 1 -1000001 ex-GE 1 -1000001 flotillas 1 -1000001 CARRIE 1 -1000001 Makana 1 -1000001 Mileva 1 -1000001 Zuerich 1 -1000001 welltrained 1 -1000001 steel-furnace 1 -1000001 foresnoots 1 -1000001 safety-standards 1 -1000001 Nyanga 1 -1000001 flight-operations 1 -1000001 decathalon 1 -1000001 franchise-financing 1 -1000001 third-section 1 -1000001 casinolike 1 -1000001 language-qualified 1 -1000001 Sovietsky 1 -1000001 Dilating 1 -1000001 Lavrenti 1 -1000001 sports-division 1 -1000001 Ledesma 1 -1000001 pipeline-industry 1 -1000001 once-diverse 1 -1000001 shipping-line 1 -1000001 C.J.C. 1 -1000001 floor-grazing 1 -1000001 51-member 1 -1000001 consumer-attitude 1 -1000001 fatlike 1 -1000001 Eilana 1 -1000001 Grosswell 1 -1000001 Anglo-Polish 1 -1000001 vasoactive 1 -1000001 state-guaranteed 1 -1000001 rules-based 1 -1000001 dog-law 1 -1000001 banking-system 1 -1000001 Hidebumi 1 -1000001 second-highest-paid 1 -1000001 C-23 1 -1000001 staff-model 1 -1000001 AT&T-Microsoft 1 -1000001 Soviet-refined 1 -1000001 most-outspoken 1 -1000001 proMahathir 1 -1000001 paid-time 1 -1000001 silly-looking 1 -1000001 6:00 1 -1000001 more-meticulous 1 -1000001 several-dozen 1 -1000001 fuel-company 1 -1000001 pseudo-modernist 1 -1000001 Kascho 1 -1000001 Khone 1 -1000001 Ozzy 1 -1000001 hard-playing 1 -1000001 ex-Citibank 1 -1000001 Lagoven 1 -1000001 Alexandrina 1 -1000001 Avo 1 -1000001 CP/M 1 -1000001 Antonina 1 -1000001 chart-motivated 1 -1000001 Yngwie 1 -1000001 U.S.-naturalized 1 -1000001 1:11 1 -1000001 Turkoman 1 -1000001 then-Durham 1 -1000001 director-chief 1 -1000001 Jotun 1 -1000001 next-in-line 1 -1000001 president-sector 1 -1000001 19-county 1 -1000001 Noori 1 -1000001 Argas 1 -1000001 travel-company 1 -1000001 unstabilizing 1 -1000001 ex-Drexel 1 -1000001 West-to-East 1 -1000001 Marie-France 1 -1000001 Birgitte 1 -1000001 Japan-born 1 -1000001 AUEW 1 -1000001 Athanasios 1 -1000001 Marissa 1 -1000001 often-consulted 1 -1000001 controling 1 -1000001 Gachinger 1 -1000001 evironmental 1 -1000001 Teamsters-enriched 1 -1000001 Canadian-educated 1 -1000001 bandshell-like 1 -1000001 Haifa-based 1 -1000001 Construccionnes 1 -1000001 somewhat-wooden 1 -1000001 much-resented 1 -1000001 apposite 1 -1000001 subsidy-related 1 -1000001 six-foot-six-inch 1 -1000001 bug-and-gravel 1 -1000001 Chrysothamnus 1 -1000001 racehorse-stable 1 -1000001 Anthropic 1 -1000001 securities-company 1 -1000001 Buhrmann 1 -1000001 Invercon 1 -1000001 Telcon 1 -1000001 Crepes 1 -1000001 Marilyne 1 -1000001 cable-sales 1 -1000001 Agnus 1 -1000001 textbook-proper 2 -1000001 resource-industry 2 -1000001 government-designated 2 -1000001 securitiesindustry 2 -1000001 counterspy 2 -1000001 arts-council 2 -1000001 tire-company 2 -1000001 kitchen-equipment 2 -1000001 ex-Salomon 2 -1000001 Winifred 2 -1000001 Ruin 2 -1000001 Caitlin 3 -1000001 chemical-company 3 -1000001 curmudgeonly 3 -1000001 ex-chief 6 -1000001 Construcciones 37 -1000001 chief 26192 -1000001 co-chief 92 -1000010 slashingly 1 -1000010 executiving 1 -1000010 Speedwagon 1 -1000010 boyish-faced 1 -1000010 self-contempt 1 -1000010 bridge-playing 1 -1000010 super-legislative 1 -1000010 tuggings 1 -1000010 SparBanken 1 -1000010 Tshabalala 1 -1000010 quacker 1 -1000010 Maric 1 -1000010 upheaved 1 -1000010 now-popular 1 -1000010 civil-affairs 1 -1000010 U.N 1 -1000010 Khudozhnik 1 -1000010 GuideWire 1 -1000010 S.A.A.I. 1 -1000010 Rutenfrans 1 -1000010 execitive 1 -1000010 backbends 1 -1000010 often-strident 1 -1000010 subtances 1 -1000010 Mylliemngap 1 -1000010 statistics-oriented 1 -1000010 aficionada 1 -1000010 Gerins 1 -1000010 Ohnuki 1 -1000010 Sherpa 1 -1000010 sub-editor 1 -1000010 employee-compensation 1 -1000010 Kakao-und 1 -1000010 Osbourne 1 -1000010 Milcheva 1 -1000010 Kittask 1 -1000010 Fonds 1 -1000010 Tortillas 1 -1000010 Canonchet 1 -1000010 radio-show 1 -1000010 Garaud 1 -1000010 data-security 1 -1000010 Theologis 1 -1000010 farceur 1 -1000010 seismographers 1 -1000010 tight-waisted 1 -1000010 flexers 1 -1000010 pennywatcher 1 -1000010 moneyman 1 -1000010 execuitive 1 -1000010 executive-type 1 -1000010 apses 1 -1000010 equities-portfolio 1 -1000010 nauseosus 1 -1000010 finishing-school 1 -1000010 Suzettes 1 -1000010 excutive 1 -1000010 Surita 1 -1000010 eighth-floor 1 -1000010 exeuctive 2 -1000010 pretenders 2 -1000010 exective 2 -1000010 excecutive 2 -1000010 executice 2 -1000010 assessor-treasurer 2 -1000010 executive. 3 -1000010 executive 26453 -1000010 Beria 3 -10000110 governor. 1 -10000110 Leachman 1 -10000110 president-building 1 -10000110 Loveyet 1 -10000110 Yussif 1 -10000110 president-futures 1 -10000110 president-materials 1 -10000110 Alvares 1 -10000110 president-stores 1 -10000110 Yangchuk 1 -10000110 president-Europe 1 -10000110 president-supply 1 -10000110 Zsusza 1 -10000110 president-energy 1 -10000110 president-machine 1 -10000110 president-industrial 1 -10000110 prsident 1 -10000110 president-engineering 1 -10000110 president-construction 1 -10000110 president-secretary 1 -10000110 Nengtdu 1 -10000110 president-chemicals 1 -10000110 Prahlad 1 -10000110 president-law 1 -10000110 Feetlebaum 1 -10000110 preisdent 1 -10000110 president-world 1 -10000110 CL9 1 -10000110 HandyWriter 1 -10000110 al-Razi 1 -10000110 C-3PO 1 -10000110 Estuar 1 -10000110 Mulryan 1 -10000110 Hodge-Podge 1 -10000110 Miracle. 1 -10000110 president-special 1 -10000110 president-nuclear 1 -10000110 president-information 1 -10000110 pesident 1 -10000110 president-publicity 1 -10000110 executrix 1 -10000110 Sadaka 1 -10000110 president-operating 1 -10000110 Gyatso 1 -10000110 president/composite 1 -10000110 treasurer-general 1 -10000110 Tejada 1 -10000110 president-editorial 1 -10000110 Pepelasis 1 -10000110 president-treasury 1 -10000110 president/East 1 -10000110 Quackenbush. 1 -10000110 president-communications 1 -10000110 Luk 1 -10000110 president-science 1 -10000110 president-exploration 1 -10000110 executive-in-charge 1 -10000110 president-cargo 1 -10000110 president-transportation 1 -10000110 Sluggo 1 -10000110 president-gas 1 -10000110 president-utility 1 -10000110 versa. 1 -10000110 president-international 1 -10000110 Jurriaans 1 -10000110 president-counsel 1 -10000110 spoilsports 2 -10000110 Lyubov 2 -10000110 president-office 2 -10000110 Peabodys 2 -10000110 president-controller 2 -10000110 presdient 2 -10000110 chairman. 2 -10000110 transposing 2 -10000110 president-planning 2 -10000110 short-weighting 2 -10000110 gizzard 2 -10000110 president-sales 2 -10000110 president-field 2 -10000110 president-chief 2 -10000110 before-school 2 -10000110 president-corporate 2 -10000110 Pontormo 3 -10000110 sallow 3 -10000110 spoilers 3 -10000110 Half-Pint 3 -10000110 president-treasurer 3 -10000110 co-leader 3 -10000110 president-marketing 3 -10000110 webbing 3 -10000110 dogwoods 3 -10000110 president-research 4 -10000110 editor-at-large 4 -10000110 president/finance 4 -10000110 Colossus 4 -10000110 penguins 4 -10000110 Vanderbilts 5 -10000110 president. 5 -10000110 president-administration 6 -10000110 president-operations 6 -10000110 president-finance 20 -10000110 versa 85 -10000110 president 47529 -10000110 presidents 1121 -10000111 Soutine 1 -10000111 WETA-TV 1 -10000111 Khathula 1 -10000111 Browsers 1 -10000111 unexceptionally 1 -10000111 hostless 1 -10000111 CVP 1 -10000111 well-signed 1 -10000111 commercial-telecommunications 1 -10000111 Luncheonette 1 -10000111 Ristorante 1 -10000111 CarePsychCenter 1 -10000111 safflowers 1 -10000111 bulemia 1 -10000111 maternity-wear 1 -10000111 aeropower 1 -10000111 self-subsistency 1 -10000111 self-education 1 -10000111 endodontics 1 -10000111 Yes-man 1 -10000111 Wharfside 1 -10000111 SDPs 1 -10000111 ungoverned 1 -10000111 Barboursville 1 -10000111 dairyman 1 -10000111 indisposedness 1 -10000111 Strohs 1 -10000111 Broad-Beans 1 -10000111 biggest-giving 1 -10000111 para-dichlorobenzene 1 -10000111 little-goody-two-shoes 1 -10000111 Model-30 1 -10000111 macho-sounding 1 -10000111 BDNIW 1 -10000111 RSWPI 1 -10000111 LDPWI 1 -10000111 tomate 1 -10000111 asymmetrically 1 -10000111 Thrombosis 1 -10000111 ee-pples 1 -10000111 Desqview 1 -10000111 Kayo 1 -10000111 Mooged 1 -10000111 wherabouts 1 -10000111 Mini-Market 1 -10000111 out-of-shape 1 -10000111 Eurocard/Mastercard 1 -10000111 mulleins 1 -10000111 Krypton 1 -10000111 badmouthing 1 -10000111 wheel-manufacturing 1 -10000111 bosh 1 -10000111 percipient 1 -10000111 3-3-1 1 -10000111 Thalco 1 -10000111 numerology 1 -10000111 jurymates 1 -10000111 Lizsport 1 -10000111 R-rating 1 -10000111 quasi-cabinet 1 -10000111 radiographs 1 -10000111 micrometeoroids 1 -10000111 smokey 1 -10000111 inkstone 1 -10000111 Rebora 1 -10000111 suboptimization 1 -10000111 macrochange 1 -10000111 UGNEU 1 -10000111 E-250s 1 -10000111 Ananias 1 -10000111 futons 1 -10000111 anatomists 1 -10000111 animists 1 -10000111 restoppered 1 -10000111 Ridgewells 1 -10000111 electric-motor 1 -10000111 X-raying 1 -10000111 mole-maze 1 -10000111 barfing 1 -10000111 homeopathy 1 -10000111 C100 1 -10000111 crudest 1 -10000111 CELLW 1 -10000111 silver-leaved 1 -10000111 self-chronicler 1 -10000111 mignonette 1 -10000111 edgings 1 -10000111 ostlers 1 -10000111 spurge 1 -10000111 disbarments 1 -10000111 candelabras 1 -10000111 Mossadegh 1 -10000111 half-session 1 -10000111 Rouens 1 -10000111 rear-axle 1 -10000111 337.10 1 -10000111 Feica 1 -10000111 Miros 1 -10000111 Laramie 1 -10000111 nabam 1 -10000111 Comets 1 -10000111 Italstrade 1 -10000111 intrigue-voyeurs 1 -10000111 Kayans 1 -10000111 BNHNA 1 -10000111 XPP 1 -10000111 KKPWI 1 -10000111 nitroglycerine 1 -10000111 roguishness 1 -10000111 dehumidifiers 1 -10000111 hithertos 1 -10000111 Yabira 1 -10000111 bulgogi 1 -10000111 pub-meister 1 -10000111 Brzezinskis 1 -10000111 catchwords 1 -10000111 Loutfi 1 -10000111 handplucked 1 -10000111 BZP 1 -10000111 reinspects 1 -10000111 DuMont 1 -10000111 unitive 1 -10000111 market-indexed 1 -10000111 Marinda 1 -10000111 foglamps 1 -10000111 713,340 1 -10000111 greatgrandson 1 -10000111 gadget-meister 1 -10000111 Angkana 1 -10000111 Camembert 1 -10000111 heptathalon 1 -10000111 453.63 1 -10000111 Miskolc 1 -10000111 colonel-general 1 -10000111 Bio-Advance 1 -10000111 pre-Donahue 1 -10000111 carpet-cleaners 1 -10000111 200- 1 -10000111 Wayward 1 -10000111 peppiness 1 -10000111 1.85-to-1.90-mark 1 -10000111 self- 1 -10000111 hyper-cautious 1 -10000111 Bub 1 -10000111 Fungicide 1 -10000111 equerries 1 -10000111 gunsels 1 -10000111 tramsmigration 1 -10000111 counterbetrayal 1 -10000111 Holton 1 -10000111 CTX-2500 1 -10000111 Vermont-born 1 -10000111 apple-growers 1 -10000111 collators 1 -10000111 CF6-50 1 -10000111 Zwieg 1 -10000111 biocides 1 -10000111 Wolfschmidt 1 -10000111 Bassett-Walker 1 -10000111 glass-manufacturing 1 -10000111 self-responsibility 1 -10000111 phoenixes 1 -10000111 wall-scrolls 1 -10000111 Bayerite 1 -10000111 adjuvants 1 -10000111 fluid-filtration 1 -10000111 Carpaccio 1 -10000111 foam-cup 1 -10000111 clothespins 1 -10000111 Zashikibuta 1 -10000111 Frankfurters 1 -10000111 Sane/Freeze 1 -10000111 straight-from-the-shoulder 1 -10000111 Perugino 1 -10000111 trunked 1 -10000111 dissemble 1 -10000111 setaside 1 -10000111 85,087 1 -10000111 crime/drugs 1 -10000111 Tomohiko 1 -10000111 Enerserv 1 -10000111 Euro-currency 1 -10000111 myositis 1 -10000111 WUSA-TV 1 -10000111 dockworker 1 -10000111 tare 1 -10000111 gravies 1 -10000111 Airtemp 1 -10000111 debt-load 1 -10000111 ferrochromium 1 -10000111 Metzenbaums 1 -10000111 Orthene 1 -10000111 portrait-years 1 -10000111 surgical-implant 1 -10000111 131,202 1 -10000111 Goralogodatsky 1 -10000111 combings 1 -10000111 1997-2005 1 -10000111 brick-makers 1 -10000111 fifes 1 -10000111 home-lending 1 -10000111 apalling 1 -10000111 neckerchiefs 1 -10000111 Wessel-Therhorns 1 -10000111 Chromius 1 -10000111 255-198 1 -10000111 PC6300 1 -10000111 commercialbanking 1 -10000111 unvalued 1 -10000111 non-strikers 1 -10000111 dryads 1 -10000111 bookbinder 1 -10000111 gold-marketing 1 -10000111 reified 1 -10000111 seventh- 1 -10000111 pub-goer 1 -10000111 video-proof 1 -10000111 drug-stores 1 -10000111 carapace 1 -10000111 Israeli-Soviet 1 -10000111 Decca/London 1 -10000111 EA-135 1 -10000111 59-acre 1 -10000111 bandsaws 1 -10000111 lantana 1 -10000111 McSalads 1 -10000111 exes 1 -10000111 Yum-Yum 1 -10000111 double-dutch 1 -10000111 Gearingly 1 -10000111 waste-dumping 1 -10000111 multi-engine 1 -10000111 WBOS-FM 1 -10000111 idiot-savants 1 -10000111 darker-haired 1 -10000111 95-93 1 -10000111 hallelujahs 1 -10000111 debeaked 1 -10000111 rescision 1 -10000111 arch-competitor 1 -10000111 reputation-building 1 -10000111 three-wood 1 -10000111 Gargoyles 1 -10000111 re-Englishing 1 -10000111 off-flavor 1 -10000111 Minstrels 1 -10000111 pentacloraphenol 1 -10000111 WGBH/Boston 1 -10000111 Brackenridge 1 -10000111 Allied/Egry 1 -10000111 likability 1 -10000111 8257C 1 -10000111 weatherization 1 -10000111 disease-research 1 -10000111 ultrarich 1 -10000111 admonishment 1 -10000111 tamboura 1 -10000111 median- 1 -10000111 biathlons 1 -10000111 42- 1 -10000111 detesting 1 -10000111 pro-Canadian 1 -10000111 Milnet 1 -10000111 strategycurrently 1 -10000111 Thrace 1 -10000111 Formalwear 1 -10000111 priority-setting 1 -10000111 unfamous 1 -10000111 Buf-Puf 1 -10000111 farm-ownership 1 -10000111 threshes 1 -10000111 scandalmongers 1 -10000111 Rajesh 1 -10000111 photosystems 1 -10000111 Furskins 1 -10000111 court-directed 1 -10000111 dog-grooming 1 -10000111 Conajoharie 1 -10000111 bayonetting 1 -10000111 foreplaying 1 -10000111 Embroideries 1 -10000111 Centurions 1 -10000111 cast-steel 1 -10000111 mestizo-Spanish 1 -10000111 stone-throwings 1 -10000111 anti-church 1 -10000111 A-Ha 1 -10000111 option-prime 1 -10000111 snorkels 1 -10000111 Duey 1 -10000111 Deceit 1 -10000111 turbid 1 -10000111 Tamworth 1 -10000111 Orajel 1 -10000111 kneepads 1 -10000111 Snookies 1 -10000111 progressiveness 1 -10000111 wide-set 1 -10000111 mineral-ceiling 1 -10000111 ling 1 -10000111 form-follows-function 1 -10000111 Alani 1 -10000111 DOOYANG 1 -10000111 279.00 1 -10000111 lawyer-CPA 1 -10000111 SHCOU 1 -10000111 Uglich 1 -10000111 Sikhism 1 -10000111 thick-steel-plate 1 -10000111 DEFINITE 1 -10000111 BYPWI 1 -10000111 ATPWI 1 -10000111 bugbear 1 -10000111 cyclosporine-A 1 -10000111 2,270,000 1 -10000111 Ranji 1 -10000111 cardamom 1 -10000111 cedars 1 -10000111 bushwoman 1 -10000111 fawn-spotted 1 -10000111 Tolrestat 1 -10000111 sorbinil 1 -10000111 tendonitis 1 -10000111 Psychodiepetics 1 -10000111 118-year-history 1 -10000111 prescription- 1 -10000111 pro-housing 1 -10000111 87,698 1 -10000111 Catviar 1 -10000111 Confectionary 1 -10000111 maims 1 -10000111 green-mailers 1 -10000111 transnationalized 1 -10000111 WMMA-AM 1 -10000111 cucurbits 1 -10000111 Mazzolino 1 -10000111 resource-processing 1 -10000111 Sovietophile 1 -10000111 Timer 1 -10000111 pipefitters 1 -10000111 Healthamerica 1 -10000111 Kayseri 1 -10000111 gazetteer 1 -10000111 Roz 1 -10000111 aviation-insurance 1 -10000111 KDPWI 1 -10000111 engineering-and-construction 1 -10000111 PC8 1 -10000111 tri-engined 1 -10000111 customer-services 1 -10000111 rearmed 1 -10000111 Coca-Colas 1 -10000111 Lincoln/Mercury 1 -10000111 Asunciones 1 -10000111 public-library 1 -10000111 Effies 1 -10000111 grumpiness 1 -10000111 screen-printed 1 -10000111 exuberances 1 -10000111 dressmaking-form 1 -10000111 clandestinenes 1 -10000111 clothe 1 -10000111 February-to-February 1 -10000111 screenwriter-turned-director 1 -10000111 underqualified 1 -10000111 Lesbos 1 -10000111 Slo-Bid 1 -10000111 '52 1 -10000111 Corweeta 1 -10000111 OGPWI 1 -10000111 Encapsulation 1 -10000111 part-writer 1 -10000111 Cloverdale 1 -10000111 seaplanes 1 -10000111 papaverine 1 -10000111 TF-33 1 -10000111 moderate-risk 1 -10000111 sporrans 1 -10000111 unsized 1 -10000111 phototypesetting 1 -10000111 pro-Turkish 1 -10000111 mini-lagoons 1 -10000111 Hand-in-Hand 1 -10000111 Macworld 1 -10000111 people-wise 1 -10000111 underorganized 1 -10000111 undercoating 1 -10000111 Dallas-Atlanta 1 -10000111 Fla.-Atlanta 1 -10000111 scaleback 1 -10000111 computer-upgrading 1 -10000111 Comeek 1 -10000111 aphoristic 1 -10000111 Amandine 1 -10000111 thick-set 1 -10000111 Basilica 1 -10000111 over-booking 1 -10000111 genderless 1 -10000111 silver-tipped 1 -10000111 33,350 1 -10000111 66,343 1 -10000111 hurler 1 -10000111 scroungy 1 -10000111 infantilized 1 -10000111 Percogesic 1 -10000111 hot-dogs 1 -10000111 pickerelweed 1 -10000111 shoe-products 1 -10000111 talon 1 -10000111 rebricking 1 -10000111 feloniousness 1 -10000111 bid-riggers 1 -10000111 fine-boned 1 -10000111 Sun-Diamond 1 -10000111 mother-in-mourning 1 -10000111 obfuscatory 1 -10000111 sitars 1 -10000111 Lo-Ovral 1 -10000111 1987-2000 1 -10000111 Boisterousness 1 -10000111 underdosing 1 -10000111 Khowar 1 -10000111 clothiers 1 -10000111 1627 1 -10000111 predecesor 1 -10000111 episodically 1 -10000111 Bird-in-Hand 1 -10000111 organ-grinders 1 -10000111 Romanism 1 -10000111 redebated 1 -10000111 peridots 1 -10000111 strathspey 1 -10000111 nearapotheosis 1 -10000111 Braques 1 -10000111 psycho-graphic 1 -10000111 tomblike 1 -10000111 Carl-Zeiss-Stiftung 1 -10000111 transmutation 1 -10000111 dextrose 1 -10000111 rhizopods 1 -10000111 betwixt 1 -10000111 factfinder 1 -10000111 Ariz.-market 1 -10000111 metal-pressing 1 -10000111 856th 1 -10000111 prepaid-legal 1 -10000111 electrical-installations 1 -10000111 mathemeticians 1 -10000111 1961-72 1 -10000111 Milingimbi 1 -10000111 executive-in-residence 1 -10000111 stratigraphic 1 -10000111 hyperuicemia 1 -10000111 Tritons 1 -10000111 extra-terrestrials 1 -10000111 redbud 1 -10000111 lawn-mowers 1 -10000111 heliotrope 1 -10000111 interlinings 1 -10000111 home-hardware 1 -10000111 Yalom 1 -10000111 Beerenauslese 1 -10000111 rural-electric 1 -10000111 Waynesburg 1 -10000111 house-pets 1 -10000111 DPPW 1 -10000111 percolations 1 -10000111 fertilzer 1 -10000111 familywide 1 -10000111 Sidewinders 1 -10000111 agri-chemicals 1 -10000111 corporate-marketing 1 -10000111 Expoland 1 -10000111 lamb-packing 1 -10000111 computer-phobes 1 -10000111 Samick 1 -10000111 day-in 1 -10000111 Plumpy 1 -10000111 non-coverage 1 -10000111 accouchements 1 -10000111 Katisha 1 -10000111 involtini 1 -10000111 pasteboard 1 -10000111 61-win 1 -10000111 rejuvinated 1 -10000111 Endurall-K 1 -10000111 N.H.-builder 1 -10000111 JellO 1 -10000111 packaged-soap 1 -10000111 silver-glass 1 -10000111 jazzified 1 -10000111 half-avid 1 -10000111 outman 1 -10000111 tantrum- 1 -10000111 Immunogenetics 1 -10000111 tradenames 1 -10000111 cofounders 1 -10000111 Seapower 1 -10000111 supersalesman-chairman 1 -10000111 author-character 1 -10000111 edam 1 -10000111 23,805 1 -10000111 cab-driver 1 -10000111 IMark 1 -10000111 Kimber 1 -10000111 disease-infested 1 -10000111 untrampled 1 -10000111 R-15 1 -10000111 Irangola 1 -10000111 central-heating 1 -10000111 HPP.WI 1 -10000111 stringer 1 -10000111 Simonized 1 -10000111 palmistry 1 -10000111 grandmasters 1 -10000111 2,000- 1 -10000111 nuded-up 1 -10000111 Eteloina 1 -10000111 peredyshka 1 -10000111 Sake 1 -10000111 Unicos 1 -10000111 Nathalie 1 -10000111 own-headaches 1 -10000111 pulsars 1 -10000111 mathless 1 -10000111 elastomerics 1 -10000111 blem 1 -10000111 groomer 1 -10000111 mesmerism 1 -10000111 horror-story 1 -10000111 unzipped 1 -10000111 co-promoter 1 -10000111 Calaber 1 -10000111 pro-technology 1 -10000111 canniest 1 -10000111 DDVP 1 -10000111 safety-enforcement 1 -10000111 Nagaland 1 -10000111 Rykov 1 -10000111 batgarb 1 -10000111 tailfins 1 -10000111 parent-to-be 1 -10000111 electrometallurgical 1 -10000111 Euro-debentures 1 -10000111 ex-publisher 1 -10000111 lupin 1 -10000111 theater- 1 -10000111 hairbrushes 1 -10000111 Kensoha 1 -10000111 narcissistically 1 -10000111 self-motivated 1 -10000111 Levothroid 1 -10000111 Supp-Hose 1 -10000111 Vizir 1 -10000111 undernurtured 1 -10000111 phenobarbital 1 -10000111 artmasks 1 -10000111 Goebel 1 -10000111 HIV-2-UC1 1 -10000111 Chephren 1 -10000111 false-statement 1 -10000111 geriatric-care 1 -10000111 HUHOU 1 -10000111 Pro-Brite 1 -10000111 rough-fringed 1 -10000111 Asia-Pacific-Australia 1 -10000111 Econolodge 1 -10000111 VLA 1 -10000111 Crypt 1 -10000111 riffles 1 -10000111 voice-switching 1 -10000111 Julias 1 -10000111 Castros 1 -10000111 shortbread 1 -10000111 antimaterialism 1 -10000111 vegetarianism 1 -10000111 Cepsa 1 -10000111 mateless 1 -10000111 aquariums 1 -10000111 Red-basher 1 -10000111 houseboy 1 -10000111 course-work 1 -10000111 Agrexco 1 -10000111 Choo-Choo 1 -10000111 time-bound 1 -10000111 friction-free 1 -10000111 Parajon 1 -10000111 scrutineers 1 -10000111 stockman 1 -10000111 Bloomers 1 -10000111 anti-bank 1 -10000111 rebutias 1 -10000111 Zonian 1 -10000111 babydoll 1 -10000111 writer/director/producer 1 -10000111 Octobrists 1 -10000111 blindfolding 1 -10000111 administrator-general 1 -10000111 Yiren 1 -10000111 full-brimmed 1 -10000111 Hartack 1 -10000111 double-coupons 1 -10000111 tufted-velvet 1 -10000111 imperials 1 -10000111 paisleys 1 -10000111 trip-ups 1 -10000111 Nematron 1 -10000111 hoity 1 -10000111 electric-motors 1 -10000111 Utikuma 1 -10000111 IZE 1 -10000111 Arrietas 1 -10000111 armlock 1 -10000111 1170 1 -10000111 Brisay 1 -10000111 Rumsford 1 -10000111 gulfs 1 -10000111 steel-fabrications 1 -10000111 lapwings 1 -10000111 yersinia 1 -10000111 resculpting 1 -10000111 Myres 1 -10000111 Grasbrook 1 -10000111 blueberry-raking 1 -10000111 indoor-batting 1 -10000111 Dunston 1 -10000111 worm-digger 1 -10000111 cytosine 1 -10000111 mini-110 1 -10000111 DentsuInc. 1 -10000111 barechested 1 -10000111 ex-Czech 1 -10000111 beleaguer 1 -10000111 1100/70 1 -10000111 hemagglutinin 1 -10000111 Fernspaehtruppe 1 -10000111 ferretlike 1 -10000111 geoscience 1 -10000111 over-powered 1 -10000111 onion-shaped 1 -10000111 factotum 1 -10000111 Mowgli 1 -10000111 Electrikbroom 1 -10000111 Freds 1 -10000111 caravansary 1 -10000111 literates 1 -10000111 triple-team 1 -10000111 mortagage-banking 1 -10000111 Mercurys 1 -10000111 medical- 1 -10000111 post-structuralism 1 -10000111 F-24 1 -10000111 border-bombing 1 -10000111 runned 1 -10000111 one-on-three 1 -10000111 curiousity 1 -10000111 premium-look 1 -10000111 quartzite-quarrying 1 -10000111 sand-mining 1 -10000111 Filipino-Chinese 1 -10000111 value- 1 -10000111 management-intensive 1 -10000111 Basements 1 -10000111 Snoozer 1 -10000111 al-Fatah 1 -10000111 postmistress 1 -10000111 Galax 1 -10000111 Peugot 1 -10000111 neurasthenia 1 -10000111 PEELS 1 -10000111 Gilad 1 -10000111 pickpocketing 1 -10000111 chipboard 1 -10000111 sem-eyes 1 -10000111 Sarwoto 1 -10000111 ex-roommate 1 -10000111 resah 1 -10000111 fords 1 -10000111 handscrolls 1 -10000111 Messineo 1 -10000111 cocoa- 1 -10000111 belt-tightener 1 -10000111 Torelli 1 -10000111 disco-hopping 1 -10000111 narrator-hero 1 -10000111 1981B 1 -10000111 Coudelet 1 -10000111 Congregationalists 1 -10000111 smiley 1 -10000111 acesulfame-K 1 -10000111 Maleviches 1 -10000111 Quaff 1 -10000111 Damour 1 -10000111 godparent 1 -10000111 enamelware 1 -10000111 tax-assessor 1 -10000111 price-liberalizing 1 -10000111 ad-libbed 1 -10000111 Whataburger 1 -10000111 Chee-Pees 1 -10000111 pastureland 1 -10000111 MGM-UA 1 -10000111 unpunctured 1 -10000111 1995-2001 1 -10000111 Williwear 1 -10000111 belly-to-belly 1 -10000111 BAYAN 1 -10000111 crusting 1 -10000111 under-depreciated 1 -10000111 HCFC-141b 1 -10000111 canoeing/kayaking 1 -10000111 J-stars 1 -10000111 bureaucraticized 1 -10000111 rewound 1 -10000111 reprographic 1 -10000111 construction-metal 1 -10000111 Conelec 1 -10000111 limes 1 -10000111 Vesnin 1 -10000111 fosinopril 1 -10000111 bare-faced 1 -10000111 Micom-Interlan 1 -10000111 data-conversion 1 -10000111 workshoppers 1 -10000111 Terracom 1 -10000111 Hellcat 1 -10000111 AA+ 1 -10000111 RTT 1 -10000111 cupolas 1 -10000111 nonaggressive 1 -10000111 TransAms 1 -10000111 closeknit 1 -10000111 Vendetta 1 -10000111 Burkean 1 -10000111 cost-slashing 1 -10000111 unfinanced 1 -10000111 team-playing 1 -10000111 Hezbollahs 1 -10000111 precision-timing 1 -10000111 Bauknecht 1 -10000111 3,004 1 -10000111 excongressman 1 -10000111 unrelined 1 -10000111 economic-revision 1 -10000111 Challis 1 -10000111 wormwood 1 -10000111 self-parking 1 -10000111 Bible-thumpers 1 -10000111 O.D. 1 -10000111 rigatoni 1 -10000111 pizza-toppings 1 -10000111 test-kitchens 1 -10000111 Duse 1 -10000111 black-backed 1 -10000111 Sindis 1 -10000111 Encare 1 -10000111 Aqua-Ban 1 -10000111 Chocoballs 1 -10000111 gourds 1 -10000111 blow-down 1 -10000111 autostrade 1 -10000111 Reels 1 -10000111 4C41.17 1 -10000111 decametrina 1 -10000111 Drummers 1 -10000111 Hellisen 1 -10000111 radiopaging 1 -10000111 ex-mayor 1 -10000111 moisturizers 1 -10000111 tree-huggers 1 -10000111 advertiser-friendly 1 -10000111 engineless 1 -10000111 Pizzaland 1 -10000111 dowdy-looking 1 -10000111 stock-tips 1 -10000111 overexercised 1 -10000111 Scoresby 1 -10000111 Lermontov 1 -10000111 Frumil 1 -10000111 sweatbands 1 -10000111 Crobsy 1 -10000111 Gulbenkian 1 -10000111 xerophily 1 -10000111 housing- 1 -10000111 Bandolino 1 -10000111 cadenced 1 -10000111 MiniSport 1 -10000111 computer-regulated 1 -10000111 non-expansionary 1 -10000111 Bronkotabs 1 -10000111 Marionsville 1 -10000111 facemask 1 -10000111 Potterton 1 -10000111 Slimetime 1 -10000111 expos 1 -10000111 recreative 1 -10000111 laboratory-sciences 1 -10000111 numbers-portrait 1 -10000111 Saugus 1 -10000111 organic-chemical 1 -10000111 hand-signals 1 -10000111 transshipments 1 -10000111 stonewashed 1 -10000111 oinking 1 -10000111 urine- 1 -10000111 Coushatta 1 -10000111 OMON 1 -10000111 cablecasts 1 -10000111 graphic-communications 1 -10000111 meritous 1 -10000111 womanized 1 -10000111 clearing-houses 1 -10000111 replate 1 -10000111 ex-marine 1 -10000111 ethnicities 1 -10000111 110.01 1 -10000111 119.28 1 -10000111 squad-mates 1 -10000111 Resales 1 -10000111 Cramer-Crasselt 1 -10000111 newspaper-insert 1 -10000111 wallabees 1 -10000111 Apsi 1 -10000111 slogan-shouting 1 -10000111 rubber-covered 1 -10000111 just-rejuvenated 1 -10000111 meclizine 1 -10000111 peccadillos 1 -10000111 defendable 1 -10000111 software-installation 1 -10000111 roiliest 1 -10000111 Janina 1 -10000111 cunny-thumb 1 -10000111 left-populist 1 -10000111 amoxycillin 1 -10000111 Zinoviev 1 -10000111 Tonne 1 -10000111 blocky 1 -10000111 saw-mill 1 -10000111 Team-mate 1 -10000111 IT&T 1 -10000111 Drapes 1 -10000111 Ling-Temco-Vought 1 -10000111 vehicle-registration 1 -10000111 Beanblossom 1 -10000111 PCjrs 1 -10000111 operations-marketing 1 -10000111 porfolio 1 -10000111 Luxair 1 -10000111 Crito 1 -10000111 gametrackers 1 -10000111 medium-heavy 1 -10000111 tire-slashing 1 -10000111 re-ordered 1 -10000111 A7s 1 -10000111 dibasics 1 -10000111 Najran 1 -10000111 job-shop 1 -10000111 ionic 1 -10000111 money-gusher 1 -10000111 hoenders 1 -10000111 Zest 1 -10000111 medium-dry 1 -10000111 business-applications 1 -10000111 67-3893 1 -10000111 groundskeepers 1 -10000111 Lyubasha 1 -10000111 1997-2000 1 -10000111 recension 1 -10000111 guitar-twanging 1 -10000111 Aqua-Net 1 -10000111 Hidatsa 1 -10000111 reconfigures 1 -10000111 boy-soldiers 1 -10000111 grocery-specialties 1 -10000111 Philishave 1 -10000111 biscotti 1 -10000111 annuitant 1 -10000111 nemeses 1 -10000111 WNEW 2 -10000111 1984- 2 -10000111 KMVP-AM 2 -10000111 Marlstone 2 -10000111 Rattle 2 -10000111 Crackle 2 -10000111 foxtail 2 -10000111 pasteurizing 2 -10000111 Enjoli 2 -10000111 1985- 2 -10000111 offal 2 -10000111 matchbooks 2 -10000111 ITV 2 -10000111 military-supply 2 -10000111 Bangladeshis 2 -10000111 Bombieri 2 -10000111 disavowal 2 -10000111 Rittman 2 -10000111 hollyhock 2 -10000111 Baranovichi 2 -10000111 Euro-securities 2 -10000111 Hermia 2 -10000111 Zurek 2 -10000111 streetcars 2 -10000111 co-marketer 2 -10000111 Gowns 2 -10000111 contusions 2 -10000111 starkness 2 -10000111 merman 2 -10000111 E-2c 2 -10000111 concubinage 2 -10000111 laetrile 2 -10000111 under-appreciated 2 -10000111 Multi-Corp 2 -10000111 Oilgram 2 -10000111 canteloupe 2 -10000111 fezzes 2 -10000111 Bouillon 2 -10000111 loose-tobacco 2 -10000111 Preziosilla 2 -10000111 Kittinger 2 -10000111 breezeways 2 -10000111 crashworthiness 2 -10000111 Fiats 2 -10000111 redskin 2 -10000111 Petuna 2 -10000111 scrupulousness 2 -10000111 plastic-pellet 2 -10000111 Miesque 2 -10000111 Mooty 2 -10000111 prefaces 2 -10000111 Hoovervilles 2 -10000111 Tanada 2 -10000111 Guinevere 2 -10000111 Dashers 2 -10000111 Superintendency 2 -10000111 anti-modern 2 -10000111 post-impressionism 2 -10000111 Pimlico 2 -10000111 commissioner-elect 2 -10000111 Salisburys 2 -10000111 Saeki 2 -10000111 Toiletry 2 -10000111 courtesans 2 -10000111 polystyrenics 2 -10000111 Waltraute 2 -10000111 Hennessys 2 -10000111 Chelsey 2 -10000111 Northport 2 -10000111 Longinus 2 -10000111 birdbaths 2 -10000111 stairwells 2 -10000111 double-sided 2 -10000111 tomahawk 2 -10000111 pouts 2 -10000111 Multiplan 2 -10000111 Caramello 2 -10000111 securities-clearance 2 -10000111 22s 2 -10000111 Frigitronics 2 -10000111 diktats 2 -10000111 feed-grains 2 -10000111 2003-2005 2 -10000111 smartness 2 -10000111 sub-contractors 2 -10000111 Illnesses 2 -10000111 Zerlina 2 -10000111 Q30 2 -10000111 nonflammable 2 -10000111 trimethoprim 2 -10000111 cooking-range 2 -10000111 security-alarm 2 -10000111 winegrower 2 -10000111 Vonny 2 -10000111 Feep 2 -10000111 customs-brokerage 2 -10000111 varnishes 2 -10000111 nightshade 2 -10000111 Boraxo 2 -10000111 photogrammetry 2 -10000111 Brangane 2 -10000111 braiding 2 -10000111 Temperate 2 -10000111 lobelias 2 -10000111 pumas 2 -10000111 bloodiness 2 -10000111 esplanades 2 -10000111 pyrethrum 2 -10000111 NYSEG 2 -10000111 ColecoVision 2 -10000111 F-104 2 -10000111 rending 2 -10000111 mausoleums 2 -10000111 unlittered 2 -10000111 Optel 2 -10000111 Habomai 2 -10000111 sixth- 2 -10000111 cornices 2 -10000111 Qhupaq 2 -10000111 Ophelia 2 -10000111 IGAT-1 2 -10000111 kerchief 2 -10000111 nutmeg 3 -10000111 Shikotan 3 -10000111 electron-device 3 -10000111 communitarian 3 -10000111 Babes 3 -10000111 Actifed 3 -10000111 sacredness 3 -10000111 fluoridation 3 -10000111 half-man 3 -10000111 Tajiks 3 -10000111 Monwabisi 3 -10000111 Matz 3 -10000111 '74 3 -10000111 thick-skinned 3 -10000111 Folly 3 -10000111 Scorpions 3 -10000111 strictness 3 -10000111 phlox 3 -10000111 housemate 3 -10000111 grandnephew 3 -10000111 popemobiles 3 -10000111 Rehearsal 3 -10000111 WGMS-AM 3 -10000111 Titian 3 -10000111 mundanely 3 -10000111 tax-selling 3 -10000111 well-drilling 3 -10000111 ramie 3 -10000111 Merlot 3 -10000111 WHBQ-TV 3 -10000111 onyx 3 -10000111 Izzy 3 -10000111 chinos 3 -10000111 Petersville 3 -10000111 malts 3 -10000111 Sacrament 3 -10000111 Pooty 3 -10000111 Jezibaba 4 -10000111 solicitor-general 4 -10000111 aerodynamics 4 -10000111 Shalimar 4 -10000111 Hornell 4 -10000111 SAMs 4 -10000111 Aereas 4 -10000111 undramatic 4 -10000111 Kisses 4 -10000111 llamas 4 -10000111 paymaster 4 -10000111 wall-coverings 4 -10000111 workbooks 4 -10000111 Pistoleiro 4 -10000111 sisal 4 -10000111 Chillicothe 4 -10000111 Brim 4 -10000111 hernias 4 -10000111 electrochemicals 4 -10000111 Medexport 4 -10000111 Moneyletter 4 -10000111 Titleist 4 -10000111 Aleuts 4 -10000111 ghostwriter 4 -10000111 rosaries 4 -10000111 WFLA-AM 4 -10000111 inlets 4 -10000111 Maestro 5 -10000111 then-parent 5 -10000111 flaxseed 5 -10000111 6-foot-4 5 -10000111 oboes 5 -10000111 margarines 6 -10000111 co-publisher 6 -10000111 chardonnay 6 -10000111 famines 7 -10000111 cochairman 7 -10000111 frisked 8 -10000111 vice-chairman 8 -10000111 reconstructions 8 -10000111 jellies 9 -10000111 7-5 10 -10000111 saunas 10 -10000111 Ninety-Eight 11 -10000111 chairman-elect 11 -10000111 chairman-designate 13 -10000111 Insights 15 -10000111 co-founders 15 -10000111 provost 15 -10000111 transporters 16 -10000111 then-president 16 -10000111 co-editor 18 -10000111 second-in-command 19 -10000111 ex-chairman 33 -10000111 grinders 36 -10000111 secretary-treasurer 63 -10000111 chairwoman 70 -10000111 secretary-general 157 -10000111 co-chairman 273 -10000111 treasurer 918 -10000111 chairman 24881 -10000111 founder 1508 -1000100 citizen-exchange 1 -1000100 WCIX-Channel 1 -1000100 once-envisioned 1 -1000100 -18,552 1 -1000100 29,713 1 -1000100 -50,581 1 -1000100 1987-March 1 -1000100 Apr. 1 -1000100 Gesetzlich 1 -1000100 details. 1 -1000100 thrills. 1 -1000100 Oct.4-Jan. 1 -1000100 Spt. 1 -1000100 Sadovaya-Samotechnaya 1 -1000100 bldg 1 -1000100 higher-spending 1 -1000100 20,000-odd 1 -1000100 figurines. 1 -1000100 Merger/reorganization 1 -1000100 pre-Feb. 1 -1000100 720.0 1 -1000100 1987-Sept. 1 -1000100 1988-April 1 -1000100 WLTV/Channel 1 -1000100 1987-Jan 1 -1000100 gymkhana 1 -1000100 TF 1 -1000100 B-R 1 -1000100 Baa- 1 -1000100 Bachaquero 1 -1000100 front-nine 1 -1000100 Mktg 1 -1000100 Khorewah 1 -1000100 sidewise 1 -1000100 be11.72 1 -1000100 Julu 1 -1000100 hamstring-popping 1 -1000100 Subsection 1 -1000100 Atomita 2 -1000100 AUG. 2 -1000100 Vol. 2 -1000100 Amundsena 2 -1000100 1988-Feb. 3 -1000100 pre-Oct. 3 -1000100 HCFC 3 -1000100 jai 3 -1000100 Sep. 4 -1000100 1987-Feb. 4 -1000100 Mar. 4 -1000100 JAN. 4 -1000100 SEPT. 7 -1000100 Nov 8 -1000100 post-Oct. 8 -1000100 Feb 10 -1000100 Aug 12 -1000100 1987-Jan. 12 -1000100 1988-Jan. 13 -1000100 Oct 26 -1000100 Sept 29 -1000100 Feb. 3050 -1000100 Nov. 3206 -1000100 Sept. 5871 -1000100 Aug. 4015 -1000100 Jan. 4289 -1000100 Dec. 4442 -1000100 Oct. 6327 -10001010 Oct.30 1 -10001010 -22,496 1 -10001010 53,362 1 -10001010 storage-down 1 -10001010 PS/2-clone 1 -10001010 Nov.29 1 -10001010 mid-Feburary 1 -10001010 Dec.26 1 -10001010 1:9 1 -10001010 Sept.3 1 -10001010 741.0 1 -10001010 Sept.6 1 -10001010 today.The 1 -10001010 Banaszynski 1 -10001010 Schiele. 1 -10001010 609,898 1 -10001010 big-box 1 -10001010 baptism-by-fire 1 -10001010 54,291 1 -10001010 yestereday 1 -10001010 index-buying 2 -10001010 Pare 2 -10001010 Hlly 2 -10001010 cost-plus-fixed-fee 2 -10001010 wind-carried 2 -10001010 Ertegun 2 -10001010 1607 2 -10001010 Tordon 2 -10001010 Shaft 2 -10001010 June. 2 -10001010 Leftover 2 -10001010 NDRP 2 -10001010 immobilization 3 -10001010 Jan.1 3 -10001010 Montrevel 3 -10001010 Flaccianello 3 -10001010 district. 3 -10001010 May. 4 -10001010 Sept.30 4 -10001010 Dec 6 -10001010 April 10034 -10001010 June 12969 -10001010 March 11506 -10001010 May 10466 -10001010 July 11241 -10001011 HORDERN 1 -10001011 often-imitated 1 -10001011 Myocardial 1 -10001011 Euro-American 1 -10001011 Delahaye 1 -10001011 Wyth 1 -10001011 platinum-bearing 1 -10001011 U.S.-Sweden 1 -10001011 Chinese-to-English 1 -10001011 Devon-Smedvig 1 -10001011 Soviet-Finnish 1 -10001011 Schaipparelli 1 -10001011 profitabiity 1 -10001011 Alexsova 1 -10001011 Piekary 1 -10001011 PAYOUTS 1 -10001011 October/November 1 -10001011 Pepto 1 -10001011 1985-early 1 -10001011 Alaskan-walrus 1 -10001011 Musigny 1 -10001011 2017. 1 -10001011 Morbio 1 -10001011 nearl 1 -10001011 Aldermen 1 -10001011 futures-style 1 -10001011 Jaunary 1 -10001011 GUCCIO 1 -10001011 jackboots 1 -10001011 gospel-inspired 1 -10001011 reciepts 1 -10001011 EFFECTS 1 -10001011 Kishinev 1 -10001011 full-cry 1 -10001011 non-differentiable 1 -10001011 index-buy 1 -10001011 1,350,948 1 -10001011 COGEFAR 1 -10001011 1970s-early 1 -10001011 Israeli-Japanese 1 -10001011 non-goods 1 -10001011 processsing 1 -10001011 1970-77 1 -10001011 Medan 2 -10001011 Siuna 2 -10001011 October. 2 -10001011 Ruthenia 2 -10001011 Taif 2 -10001011 DeRidder 2 -10001011 mid-1956 2 -10001011 Calabassas 2 -10001011 1961-62 2 -10001011 134.89 2 -10001011 Meneba 2 -10001011 Haut-Brion 2 -10001011 Moberly 2 -10001011 Nowy 2 -10001011 Feburary 2 -10001011 soon-to-be-introduced 2 -10001011 Maseru 2 -10001011 S.E.M.T. 2 -10001011 Queenstown 2 -10001011 Misima 2 -10001011 Evry 3 -10001011 Changchun 3 -10001011 punctual 3 -10001011 1739 3 -10001011 l983 3 -10001011 1806 3 -10001011 Tignanello 3 -10001011 1356 3 -10001011 Tavernelle 3 -10001011 Sammarco 3 -10001011 Solaia 3 -10001011 lucre 4 -10001011 1986. 4 -10001011 1833 4 -10001011 Janaury 5 -10001011 Exile 5 -10001011 20-20 6 -10001011 Tampa-St 6 -10001011 mid-1992 6 -10001011 midflight 8 -10001011 mid-summer 11 -10001011 1864 13 -10001011 absentia 18 -10001011 1979-80 37 -10001011 mid-February 106 -10001011 mid-November 133 -10001011 mid-January 134 -10001011 mid-July 141 -10001011 mid-December 144 -10001011 mid-May 149 -10001011 mid-September 155 -10001011 mid-August 165 -10001011 mid-October 179 -10001011 October 7580 -10001011 December 6723 -10001011 November 5746 -10001011 September 6314 -10001011 August 6680 -10001011 February 5306 -10001011 January 6982 -10001100 long-iron 1 -10001100 1992-2007 1 -10001100 1984-1994 1 -10001100 Wolfcraft 1 -10001100 Spain-1988 1 -10001100 bop-intricate 1 -10001100 2005-2007 1 -10001100 ite 1 -10001100 Revolution. 1 -10001100 Kennebunk 1 -10001100 Nov.2 1 -10001100 Aug.3 1 -10001100 consolidators. 1 -10001100 2340 1 -10001100 swamplands 1 -10001100 Strindberg 1 -10001100 1992-2002 1 -10001100 1989-1997 1 -10001100 1987-2002 1 -10001100 1961-71 1 -10001100 Mahbubani 1 -10001100 Dec.15 1 -10001100 Laoussine 1 -10001100 choc 1 -10001100 222-yard 1 -10001100 1992-2008 1 -10001100 product-tampering 1 -10001100 2014-2017 1 -10001100 1991-1999 1 -10001100 1988-2008 1 -10001100 19912003 1 -10001100 1994-1998 1 -10001100 1994-2001 1 -10001100 1991-2009 1 -10001100 1995-2004 1 -10001100 domestic-vehicles 1 -10001100 1991-2019 1 -10001100 2006-2009 1 -10001100 2010-2019 1 -10001100 1999-2002 1 -10001100 Sept.1 1 -10001100 smaller-capital 1 -10001100 1,000,000,000,000,000 1 -10001100 1998-2004 1 -10001100 anti-ideological 1 -10001100 1992-1998 1 -10001100 1989-1993 1 -10001100 Aug.23 1 -10001100 1991-2007 1 -10001100 27. 1 -10001100 1996-2007 1 -10001100 19922003 1 -10001100 Everding 1 -10001100 19912004 1 -10001100 1990-2008 1 -10001100 1994-2011 1 -10001100 1994-2003 1 -10001100 19942016 1 -10001100 1994-2019 1 -10001100 2003-2012 1 -10001100 2007-2012 1 -10001100 1999-2007 1 -10001100 2001-2010 1 -10001100 Bartville 1 -10001100 1994-2002 1 -10001100 1989-2005 1 -10001100 1988-2003 1 -10001100 Africare 1 -10001100 2011-2015 1 -10001100 year-ends 1 -10001100 near-meltdown 1 -10001100 2000-2020 1 -10001100 gene-therapy 1 -10001100 2001-2009 1 -10001100 2000-2005 1 -10001100 1991-2000 1 -10001100 1954-1958 1 -10001100 SAARC 1 -10001100 2005-2010 1 -10001100 1990-2005 1 -10001100 15AUG90 1 -10001100 2010-2017 1 -10001100 1991-2010 1 -10001100 1991-2001 1 -10001100 1990-2019 1 -10001100 2004-2006 1 -10001100 2014-2019 1 -10001100 1995-2003 1 -10001100 1992-1996 1 -10001100 1996-2002 1 -10001100 469-yard 1 -10001100 1998-2002 2 -10001100 1993-1999 2 -10001100 1990-1996 2 -10001100 2000-2003 2 -10001100 philistinism 2 -10001100 ejidos 2 -10001100 Edinburg 2 -10001100 1976-1980 2 -10001100 2004-2010 2 -10001100 1989-2018 2 -10001100 1989-2004 2 -10001100 2007-2013 2 -10001100 1993-2000 2 -10001100 impetigo 2 -10001100 vivo 2 -10001100 1997-2003 2 -10001100 Indianapolis. 2 -10001100 1970-83 2 -10001100 1970-1986 2 -10001100 1988s 2 -10001100 IBH. 2 -10001100 Mossyrock 2 -10001100 24-28 2 -10001100 1999-2005 2 -10001100 1763.3 2 -10001100 1992-1999 2 -10001100 grade-schoolers 2 -10001100 Virginia. 2 -10001100 1988-2012 2 -10001100 Thessco 2 -10001100 2002-2005 2 -10001100 300CE 2 -10001100 2000-2007 2 -10001100 pre-auction 2 -10001100 2037/2038 2 -10001100 1989-2000 2 -10001100 1988-90 2 -10001100 Mandryka 2 -10001100 410-0 2 -10001100 1991-2004 2 -10001100 Balthus 2 -10001100 Petionville 2 -10001100 36-15 2 -10001100 layovers 2 -10001100 1992-2000 2 -10001100 Ascriptin 2 -10001100 midSeptember 2 -10001100 48-46 2 -10001100 1988-2004 2 -10001100 2004-2007 2 -10001100 Glyco-Group 2 -10001100 1968-70 2 -10001100 Transafrica 2 -10001100 1996-2004 2 -10001100 1993-2009 2 -10001100 tetrahydroaminocridine 2 -10001100 1994-2000 2 -10001100 2004-2008 2 -10001100 1989-2013 2 -10001100 2009-2013 2 -10001100 1995-2000 2 -10001100 2001-2004 2 -10001100 1992-2004 2 -10001100 71-25 2 -10001100 2000-2008 2 -10001100 Poas 2 -10001100 surprise. 2 -10001100 277-125 2 -10001100 Zlenice 2 -10001100 Masan 2 -10001100 1348 2 -10001100 Belorussia 2 -10001100 punning 2 -10001100 OTNs 2 -10001100 Onnes 2 -10001100 1984-88 2 -10001100 Lilliput 2 -10001100 1987-91 3 -10001100 Survanta 3 -10001100 1990. 3 -10001100 Corfu 3 -10001100 2002-2004 3 -10001100 Tuktoyaktuk 3 -10001100 1989-1991 3 -10001100 prearrangement 3 -10001100 Tilade 3 -10001100 teenitis 3 -10001100 2006-2007 3 -10001100 1990-2003 3 -10001100 18-21 3 -10001100 1990-1992 3 -10001100 January-September 3 -10001100 1989-1999 3 -10001100 1988-1993 3 -10001100 1988-1992 3 -10001100 1990-1998 3 -10001100 Radiocor 3 -10001100 Hapeville 3 -10001100 1989-2001 3 -10001100 Sovran-D.C. 3 -10001100 1988-2007 3 -10001100 1992-2003 3 -10001100 Fujairah 3 -10001100 Klerksdorp 3 -10001100 1994-2008 3 -10001100 Bydgoszcz 3 -10001100 1991-2008 3 -10001100 Tokyo. 3 -10001100 exchange-rates 3 -10001100 dilligence 3 -10001100 mid-1993 3 -10001100 Kandinsky 3 -10001100 Warner-Chilcott 3 -10001100 3,612,000 3 -10001100 Vneshtorgreklama 3 -10001100 2008-2010 3 -10001100 2000-2004 3 -10001100 1846 3 -10001100 Broschal 3 -10001100 1980-87 3 -10001100 semiliterate 3 -10001100 1979-1981 3 -10001100 2001-2003 4 -10001100 1992-1993 4 -10001100 1991-2005 4 -10001100 gasoil 4 -10001100 2037 4 -10001100 Hakkari 4 -10001100 1990-2004 4 -10001100 1942-43 4 -10001100 WNBC 4 -10001100 Bancotrans 4 -10001100 1991-2003 4 -10001100 cosmology 4 -10001100 Bethanie 4 -10001100 Seveso 4 -10001100 hysterics 4 -10001100 2026 4 -10001100 1990-2001 4 -10001100 1990-2009 4 -10001100 epileptics 4 -10001100 Bridgend 4 -10001100 Hibbing 4 -10001100 1990-1993 4 -10001100 Saarbruecken 4 -10001100 1991-2002 4 -10001100 Boston. 5 -10001100 Afton 5 -10001100 l986 5 -10001100 1979-85 5 -10001100 1989-1998 5 -10001100 1813 5 -10001100 1982-85 5 -10001100 1990-2000 5 -10001100 1973-85 5 -10001100 1990-2002 5 -10001100 1990-1999 6 -10001100 1989-2003 6 -10001100 1981-83 6 -10001100 2047 6 -10001100 1978-1979 6 -10001100 2003-2007 6 -10001100 1982-1983 6 -10001100 1981-86 6 -10001100 l988 7 -10001100 Galesburg 7 -10001100 1989-2002 7 -10001100 1978-1986 7 -10001100 1984-87 8 -10001100 1982-86 8 -10001100 l987 8 -10001100 1983-1984 8 -10001100 1989-2008 8 -10001100 1983-85 9 -10001100 1988. 9 -10001100 mid-1991 9 -10001100 1980-84 9 -10001100 2028 10 -10001100 1983-86 11 -10001100 1984-1985 11 -10001100 2022 12 -10001100 1985-87 12 -10001100 2027 13 -10001100 2030 13 -10001100 1981-85 13 -10001100 '81 14 -10001100 2024 14 -10001100 1812 14 -10001100 Genoa 15 -10001100 2023 15 -10001100 2029 15 -10001100 2021 16 -10001100 1983-84 20 -10001100 Cancun 24 -10001100 2025 24 -10001100 1984-86 25 -10001100 '89 33 -10001100 Ft 37 -10001100 mid-1990 45 -10001100 midsummer 51 -10001100 2014 53 -10001100 1787 53 -10001100 2020 57 -10001100 2013 67 -10001100 2015 71 -10001100 2011 83 -10001100 2005 86 -10001100 '88 90 -10001100 mid-1989 91 -10001100 2019 100 -10001100 diligence 101 -10001100 mid-1988 103 -10001100 2009 103 -10001100 2003/2007 105 -10001100 2006 114 -10001100 2004 114 -10001100 2003 116 -10001100 2001 138 -10001100 2002 156 -10001100 2010 156 -10001100 2007 167 -10001100 2008 178 -10001100 1934 191 -10001100 2016 191 -10001100 2012 217 -10001100 2018 220 -10001100 1999 384 -10001100 2017 425 -10001100 1996 442 -10001100 1995 491 -10001100 1998 511 -10001100 1994 627 -10001100 1993 787 -10001100 1997 818 -10001100 1969 1063 -10001100 1991 1409 -10001100 1992 1904 -10001100 1986 20314 -10001100 1990 3417 -10001100 1987 18645 -10001100 1988 12509 -10001100 1989 5846 -10001101 Huckingen 1 -10001101 mid-Tuesday 1 -10001101 Zollikon 1 -10001101 Dunstable 1 -10001101 1970-1973 1 -10001101 1243.44 1 -10001101 Kaliakor 1 -10001101 edgewise 1 -10001101 Oradea 1 -10001101 double-B-plus/B 1 -10001101 mid-1932 1 -10001101 Qualitaet 1 -10001101 1247.98 1 -10001101 arb-speak 1 -10001101 Wynnwood 1 -10001101 Powertown 1 -10001101 mazuma 1 -10001101 1294.45 1 -10001101 Esterwood 1 -10001101 Grossmont 1 -10001101 1811 1 -10001101 OPECNA 1 -10001101 Colwich 1 -10001101 Zacatecas 1 -10001101 Napanoch 1 -10001101 Wurtsboro 1 -10001101 Quitman 1 -10001101 1306.37 1 -10001101 1313.60 1 -10001101 mid-trip 1 -10001101 Tsuruga 1 -10001101 1421.76 1 -10001101 Runnymede 1 -10001101 2007-2008 1 -10001101 Woerth 1 -10001101 Nimtz 1 -10001101 1235.21 1 -10001101 1231.02 1 -10001101 Patoka 1 -10001101 Duffel 1 -10001101 1229.11 1 -10001101 1976-1979 1 -10001101 parenthesis 1 -10001101 Chilliwack 1 -10001101 Cuiaba 1 -10001101 1121.54 1 -10001101 1205.48 1 -10001101 3529 1 -10001101 1556 1 -10001101 2009-2012 1 -10001101 1178.78 1 -10001101 1179.02 1 -10001101 3,529 1 -10001101 1251.05 1 -10001101 Biddeford 1 -10001101 1257.42 1 -10001101 Oct.12 1 -10001101 549,048 1 -10001101 Grahamstown 1 -10001101 Sienna 1 -10001101 Yeochun 1 -10001101 A-Major 1 -10001101 1224.70 1 -10001101 Conakry 1 -10001101 2:11:01 1 -10001101 1227.66 1 -10001101 McConnelsville 1 -10001101 aggressing 1 -10001101 Heerenveen 1 -10001101 Kunakova 1 -10001101 Arace 1 -10001101 1264.08 1 -10001101 Delicias 1 -10001101 Lacon 1 -10001101 1249.72 1 -10001101 near-balance 1 -10001101 Wiscasset 1 -10001101 Crusinallo 1 -10001101 Gessate 1 -10001101 1251.66 1 -10001101 TV-land 1 -10001101 salesmanlike 1 -10001101 1.5740 1 -10001101 1258.16 1 -10001101 1424.38 1 -10001101 Ani 1 -10001101 1256.34 1 -10001101 Shakopee 1 -10001101 telekinesis 1 -10001101 1249.29 1 -10001101 AMerica 1 -10001101 Delaware. 1 -10001101 chlorophyl 1 -10001101 1252.57 1 -10001101 1250.23 1 -10001101 re-licensing 1 -10001101 midstroke 1 -10001101 1261.53 1 -10001101 1255.63 1 -10001101 Iraq. 1 -10001101 Karbalah 1 -10001101 1227.35 1 -10001101 Caseyville 1 -10001101 Edgartown 1 -10001101 Luquillo 1 -10001101 Beeville 1 -10001101 Pampanga 1 -10001101 Pineville 1 -10001101 1236.80 1 -10001101 campanula 1 -10001101 2.9945 1 -10001101 1227.67 1 -10001101 colloquia 1 -10001101 Wunsiedel 1 -10001101 2076 1 -10001101 1249.43 1 -10001101 1251.99 1 -10001101 midascent 1 -10001101 1256.08 1 -10001101 1253.04 1 -10001101 1251.61 1 -10001101 fusion-reactors 1 -10001101 Neodesha 1 -10001101 1289.73 1 -10001101 1295.27 1 -10001101 1961-80 1 -10001101 1286.52 1 -10001101 Oestrich-Winkel 1 -10001101 Joliette 1 -10001101 overmedication 1 -10001101 Anglo- 1 -10001101 Nieuwpoort 1 -10001101 1294.07 1 -10001101 Saint-Tropez 1 -10001101 Lubec 1 -10001101 Amerinet 1 -10001101 Keeseville 1 -10001101 NaplesSyracuse 1 -10001101 McMasterville 1 -10001101 l980 1 -10001101 Kwinana 1 -10001101 1296.93 1 -10001101 Gitchagumee 1 -10001101 Fleury-Merogis 1 -10001101 1292.71 1 -10001101 1259.76 1 -10001101 Mitchellville 1 -10001101 Wrightstown 1 -10001101 Solentuna 1 -10001101 Fagersta 1 -10001101 Herzogenaurach 1 -10001101 midsemester 1 -10001101 1247.91 1 -10001101 Qufu 1 -10001101 Mayport 1 -10001101 1261.58 1 -10001101 Menomonie 1 -10001101 1267.80 1 -10001101 Paulinia 1 -10001101 7,325 1 -10001101 Geismer 1 -10001101 Ryazan 1 -10001101 1263.72 1 -10001101 Nagadoches 1 -10001101 Vorhees 1 -10001101 Manhasett 1 -10001101 1247.57 1 -10001101 1724 1 -10001101 1191 1 -10001101 mid-Baltic 1 -10001101 Soquimich 1 -10001101 obstetrics/gynecology 1 -10001101 1232.35 1 -10001101 Avchala 1 -10001101 1233.08 1 -10001101 1910-1945 1 -10001101 Clermont-Ferrand 1 -10001101 E-Flat 1 -10001101 376,649 1 -10001101 Igaras 1 -10001101 LaCosta 1 -10001101 1257.12 1 -10001101 1253.68 1 -10001101 Greenelefe 1 -10001101 Droitwich 1 -10001101 FEATURES 1 -10001101 jeapordy 1 -10001101 Mulberry 1 -10001101 Osuka 1 -10001101 1246.18 1 -10001101 FLIPPERS 1 -10001101 Clubmoor 1 -10001101 1252.37 1 -10001101 1259.97 1 -10001101 woodshop 1 -10001101 1237.98 1 -10001101 1968-72 1 -10001101 1236.72 1 -10001101 1173 1 -10001101 1172 1 -10001101 1171 1 -10001101 Guayanilla 1 -10001101 Amagasaki 1 -10001101 1436 1 -10001101 Schnectady 1 -10001101 Burkville 1 -10001101 1241.32 1 -10001101 Placerville 1 -10001101 1198.51 1 -10001101 Cernay 1 -10001101 Ferney-Voltaire 1 -10001101 1209.40 1 -10001101 1210.29 1 -10001101 25500 1 -10001101 Sauget 1 -10001101 1245.04 1 -10001101 Nacimiento 1 -10001101 Cayce 1 -10001101 Overalls 1 -10001101 198185 1 -10001101 1672 1 -10001101 Tisza 1 -10001101 drydock 1 -10001101 1239.11 1 -10001101 pictorials 1 -10001101 Bitlis 1 -10001101 Macclesfield 1 -10001101 beelines 1 -10001101 Tessenderloo 1 -10001101 Stoneham 1 -10001101 Drumright 1 -10001101 1715 1 -10001101 Oct.1 1 -10001101 1175.25 1 -10001101 DESTROYED 1 -10001101 dispute-subcontracting 1 -10001101 1181.94 1 -10001101 2010-2012 1 -10001101 2.9960 1 -10001101 60-year-maturity 1 -10001101 Secacus 1 -10001101 1240.83 1 -10001101 Dharmsala 1 -10001101 1187.37 1 -10001101 Cies 1 -10001101 Sisterhood 1 -10001101 user-friendliness 1 -10001101 Newvineyard 1 -10001101 StGeorges-de-Beauce 1 -10001101 1180.72 1 -10001101 yuppie-vision 1 -10001101 1426.29 1 -10001101 Gumede 1 -10001101 Grayslake 1 -10001101 1111.00 1 -10001101 ScanAmerican 1 -10001101 1130.44 1 -10001101 1168.38 1 -10001101 1970-72 1 -10001101 over-lending 1 -10001101 1165.67 1 -10001101 1678 1 -10001101 1263.65 1 -10001101 Berryville 1 -10001101 Grannis 1 -10001101 1253.98 1 -10001101 Raeford 1 -10001101 1938-1988 1 -10001101 1536 1 -10001101 1271.65 1 -10001101 mid-novel 1 -10001101 Annecy 1 -10001101 Roseau 1 -10001101 2.1429 1 -10001101 1266.98 1 -10001101 Surprise-II 1 -10001101 chicken-raising 1 -10001101 poultry-fattening 1 -10001101 Brecksville 1 -10001101 mid-fall 1 -10001101 1251.42 1 -10001101 Juliaca 1 -10001101 1248.47 1 -10001101 Saddlebrook 1 -10001101 Quakertown 1 -10001101 midcentury 1 -10001101 midconversation 1 -10001101 Statesboro 1 -10001101 Anoka 1 -10001101 Ilion 1 -10001101 Dickens. 1 -10001101 Rouiba 1 -10001101 1933-1937 1 -10001101 1265.60 1 -10001101 Southborough 1 -10001101 2:28:07 1 -10001101 Gattatico 1 -10001101 1461 1 -10001101 Aubonne 1 -10001101 Thankgsgiving 1 -10001101 Holyhead 1 -10001101 1.6403 1 -10001101 hookas 1 -10001101 Stamboul 1 -10001101 Sakaide 1 -10001101 Assiut 1 -10001101 2059 1 -10001101 1919-1920 1 -10001101 1277.32 1 -10001101 Angwin 1 -10001101 Clarkston 1 -10001101 CentAm. 1 -10001101 1918. 1 -10001101 Apia 1 -10001101 1419.79 1 -10001101 E-Major 1 -10001101 Chicoutimi 1 -10001101 1420.18 1 -10001101 Burrillville 1 -10001101 Woodlynne 1 -10001101 Zama 1 -10001101 Araby 1 -10001101 1258.86 1 -10001101 Saragosa 1 -10001101 Nanticoke 1 -10001101 self-mortification 1 -10001101 Jicaro 1 -10001101 Jalapa 1 -10001101 Esteli 1 -10001101 Waslays 1 -10001101 Bismol 1 -10001101 Gazankulu 1 -10001101 Vannes 1 -10001101 mid1989 1 -10001101 Freetown 1 -10001101 mid-shot 1 -10001101 1421.18 1 -10001101 1418.64 1 -10001101 1271.09 1 -10001101 Dottingen 1 -10001101 Valence 1 -10001101 1907-11 1 -10001101 Auvers-sur-Oise 1 -10001101 Shuangcheng 1 -10001101 Oviedo 1 -10001101 1417.82 1 -10001101 2,675,900 1 -10001101 Cluses 1 -10001101 impeachments 1 -10001101 1931-1981 1 -10001101 1413.90 1 -10001101 Maypearl 1 -10001101 1989-91 1 -10001101 Primagaz 1 -10001101 1950-51 1 -10001101 Ningbo 1 -10001101 Spillville 1 -10001101 1413.54 1 -10001101 Walthill 1 -10001101 1425.34 1 -10001101 mid-stage 1 -10001101 super-powers 1 -10001101 Abitare 1 -10001101 three-packs 1 -10001101 St.-Joseph-deBeauce 1 -10001101 1421.47 1 -10001101 4,082 1 -10001101 4,112 1 -10001101 Omak 1 -10001101 Mamelodi 1 -10001101 1731 1 -10001101 Adrar 1 -10001101 Mendham 1 -10001101 1399.98 1 -10001101 Theresienstadt 1 -10001101 Fernley 1 -10001101 Yaroslavl 1 -10001101 Carlow 1 -10001101 Delfzijl 1 -10001101 521,147 1 -10001101 toto. 1 -10001101 EKO 1 -10001101 1291.83 1 -10001101 46,557 1 -10001101 Tooele 1 -10001101 Calverton 1 -10001101 1291.29 1 -10001101 1276.10 1 -10001101 Quelimane 1 -10001101 1332.71 1 -10001101 10,225 1 -10001101 1508 1 -10001101 1281.69 1 -10001101 1313.29 1 -10001101 Wintersburg 1 -10001101 2:58:06 1 -10001101 1272.85 1 -10001101 1:55:42 1 -10001101 2:12:42 1 -10001101 2:12:37 1 -10001101 1278.42 1 -10001101 Vercelli 1 -10001101 1563 1 -10001101 1294.15 1 -10001101 Gosselies 1 -10001101 Deepwater 1 -10001101 Gibbstown 1 -10001101 Sibu 1 -10001101 Houston. 1 -10001101 1283.37 1 -10001101 2013-2016 1 -10001101 1296.94 1 -10001101 1275.27 1 -10001101 Eupora 1 -10001101 Cataumet 1 -10001101 Tulelake 1 -10001101 potpies 1 -10001101 1276.60 1 -10001101 Edinborough 1 -10001101 Negril 1 -10001101 DAFSA 1 -10001101 Kleve 1 -10001101 1246.11 1 -10001101 Essexville 1 -10001101 Washaba 1 -10001101 1237.80 1 -10001101 Alkmaar 1 -10001101 1374.94 1 -10001101 1374.62 1 -10001101 Kasumigaseki 1 -10001101 push-er 1 -10001101 Sotexo 1 -10001101 Torquay 1 -10001101 1420.19 1 -10001101 1416.25 1 -10001101 1939-40 1 -10001101 1346 1 -10001101 midMarch 1 -10001101 1331.55 1 -10001101 NORAID 1 -10001101 Yongkwang 1 -10001101 1690 1 -10001101 Turin. 1 -10001101 Brownville 1 -10001101 Tonowanda 1 -10001101 Brigante 1 -10001101 generalizing 1 -10001101 Hominy 1 -10001101 1295.81 1 -10001101 Oskaloosa 1 -10001101 magnetoencephalography 1 -10001101 1372.42 1 -10001101 Limbo 1 -10001101 BTP 1 -10001101 Saluda 1 -10001101 Lawnside 1 -10001101 midlife-illness 1 -10001101 Penticton 1 -10001101 flophouses 1 -10001101 1349.61 1 -10001101 payroll-cutting 1 -10001101 platooning 1 -10001101 1275.82 1 -10001101 Follansbee 1 -10001101 Mariposa 1 -10001101 Darjeeling 1 -10001101 taxes-income 1 -10001101 Hennef 1 -10001101 Windemere 1 -10001101 1489 1 -10001101 semi-gibberish 1 -10001101 Hartheim 1 -10001101 spending-to-sales 1 -10001101 europium 1 -10001101 understimulating 1 -10001101 1252.65 1 -10001101 Czestochowa 1 -10001101 dead-stroke 1 -10001101 Herefordshire 1 -10001101 Franconia 1 -10001101 Decorah 1 -10001101 Saticoy 1 -10001101 Arnoldia 1 -10001101 1938-41 1 -10001101 1954-55 1 -10001101 478,907 1 -10001101 SANDWICHES 1 -10001101 1197.76 1 -10001101 Ceasa 1 -10001101 1221.87 1 -10001101 1,688 1 -10001101 Eastbourne 1 -10001101 Grantsburg 1 -10001101 extra-legalism 1 -10001101 1195.85 1 -10001101 Bolingbrook 1 -10001101 Thorold 1 -10001101 Derbyshire 1 -10001101 56,930 1 -10001101 Bardstown 1 -10001101 1208.55 1 -10001101 Aabenraa 1 -10001101 Denver. 1 -10001101 Paignton 1 -10001101 1419.41 1 -10001101 1222.83 1 -10001101 triathalons 1 -10001101 Diaspora. 1 -10001101 1195.59 1 -10001101 Angola. 1 -10001101 Decembers 1 -10001101 Petoskey 1 -10001101 TVW7 1 -10001101 1203.29 1 -10001101 1561 1 -10001101 gunbursts 1 -10001101 Winnersh 1 -10001101 Leola 1 -10001101 rice-wine 1 -10001101 Bladenboro 1 -10001101 sequenced 1 -10001101 Norridgewock 1 -10001101 Kronberg 1 -10001101 1221.38 1 -10001101 Escatawpa 1 -10001101 1427.73 1 -10001101 Asnieres 1 -10001101 1422.92 1 -10001101 Coraopolis 1 -10001101 Raytown 1 -10001101 1245.08 1 -10001101 Gorongosa 1 -10001101 cartoonland 1 -10001101 MCCRK 1 -10001101 SLMAJ 1 -10001101 7,762 1 -10001101 1,332,106 1 -10001101 Algona 1 -10001101 1684 1 -10001101 patients. 1 -10001101 Colorodo 1 -10001101 German. 1 -10001101 Crestview 1 -10001101 1241.34 1 -10001101 4:05.45 1 -10001101 Placentia 1 -10001101 businessland 1 -10001101 Amherstberg 1 -10001101 1272 1 -10001101 Barranquilla 1 -10001101 255,601 1 -10001101 1664 1 -10001101 leprosariums 1 -10001101 gentile 1 -10001101 mid-Missouri 1 -10001101 1.6053 1 -10001101 6,236 1 -10001101 1976-85 1 -10001101 Acworth 1 -10001101 1402.75 1 -10001101 1981-1983 1 -10001101 midtakeoff 1 -10001101 1984. 1 -10001101 Apure 1 -10001101 3,712 1 -10001101 port-drinking 1 -10001101 1421.89 1 -10001101 carcass-form 1 -10001101 D-Minor 1 -10001101 1423.94 1 -10001101 1810-21 1 -10001101 Magalia 1 -10001101 Deshler 1 -10001101 240.54 1 -10001101 1433.31 1 -10001101 telecoms 1 -10001101 Wickenburg 1 -10001101 Neuilly 1 -10001101 1435.92 1 -10001101 Chariton 1 -10001101 Bulacan 1 -10001101 Wackersdorf 1 -10001101 Dimbaza 1 -10001101 Bensenville 1 -10001101 olive-drab 1 -10001101 cacocracy 1 -10001101 1178.35 1 -10001101 Myock 1 -10001101 1178.14 1 -10001101 Crawfordville 1 -10001101 Saukville 1 -10001101 Wanamassa 1 -10001101 Lilleborg 1 -10001101 1185.85 1 -10001101 1182.26 1 -10001101 Reddington 1 -10001101 Lancing 1 -10001101 Serbo-Croat 1 -10001101 1184.18 1 -10001101 1196.08 1 -10001101 1171.23 1 -10001101 1422.42 1 -10001101 Hughesville 1 -10001101 teacherdom 1 -10001101 1194.61 1 -10001101 dicators 1 -10001101 1178.46 1 -10001101 1427.28 1 -10001101 Yakutsk 1 -10001101 1414.22 1 -10001101 Ranua 1 -10001101 CablEntertainment 1 -10001101 Rieme 1 -10001101 1405.34 1 -10001101 197576 1 -10001101 all-Nisei 1 -10001101 1420.48 1 -10001101 Saulieu 1 -10001101 1987-90 1 -10001101 colic 1 -10001101 metal-crafting 1 -10001101 HBO-land 1 -10001101 1087 1 -10001101 Belleview 1 -10001101 1614 1 -10001101 1224.74 1 -10001101 Bondage 1 -10001101 Llangollen 1 -10001101 1586 1 -10001101 Scarfarotti 1 -10001101 1424.33 1 -10001101 UFOs. 1 -10001101 2016-2018 1 -10001101 1229.19 1 -10001101 1230.14 1 -10001101 5.6460 1 -10001101 3.3920 1 -10001101 Pielstick 1 -10001101 Westcliffe 1 -10001101 Edmunston 1 -10001101 Euroilstock 1 -10001101 1723 1 -10001101 1582 1 -10001101 20072008 1 -10001101 Naarden 1 -10001101 1215.90 1 -10001101 Bushells 1 -10001101 tabloidland 1 -10001101 Mozzanica 1 -10001101 Foresthill 1 -10001101 AVSN 1 -10001101 1227.63 1 -10001101 Belbeuf 1 -10001101 Omegna 1 -10001101 1975. 1 -10001101 philanthropyspeak 1 -10001101 livestock-tending 1 -10001101 Stutgart 1 -10001101 Queretaro 1 -10001101 1226.08 1 -10001101 Bridgeview 1 -10001101 1943-44 1 -10001101 Vernal 1 -10001101 Maydown 1 -10001101 1234.81 1 -10001101 1860-1865 1 -10001101 Spurgeons 1 -10001101 Limassol 1 -10001101 Massachusetts. 1 -10001101 1306.94 1 -10001101 bowlingdom 1 -10001101 Yehupetz 1 -10001101 Sanbornville 1 -10001101 Kearneysville 1 -10001101 1245.50 1 -10001101 1245.69 1 -10001101 1245.19 1 -10001101 8,172 1 -10001101 midboom 1 -10001101 Weltschmerz 1 -10001101 1235.98 1 -10001101 Mmabatho 1 -10001101 2014-2018 1 -10001101 Stalin. 1 -10001101 1330.68 1 -10001101 Heredon 1 -10001101 1240.38 1 -10001101 1232.11 1 -10001101 scats 1 -10001101 Kahului 1 -10001101 Hangul 1 -10001101 1239.35 1 -10001101 1318.29 1 -10001101 1291.48 1 -10001101 midMay 1 -10001101 1225.99 1 -10001101 McConnellsburg 1 -10001101 Lemoore 1 -10001101 Hopland 1 -10001101 1921-1922 1 -10001101 1230.57 1 -10001101 mils 1 -10001101 1305.99 1 -10001101 2.9736 1 -10001101 sing-alongs 1 -10001101 Lachute 1 -10001101 Waseca 1 -10001101 1203.38 1 -10001101 Lotus-land 1 -10001101 Belpre 1 -10001101 Sindelfingen 1 -10001101 Abidjian 1 -10001101 8,349 1 -10001101 9,528 1 -10001101 7,077,100 1 -10001101 unrealizable 1 -10001101 1280.21 1 -10001101 1232.27 1 -10001101 1054 1 -10001101 attendence 1 -10001101 Osseo 1 -10001101 extenso 1 -10001101 56,327 1 -10001101 Dillontown 1 -10001101 Mundelein 1 -10001101 1312.84 1 -10001101 quadruplicate 1 -10001101 239,634 1 -10001101 Lackawaxen 1 -10001101 1205.35 1 -10001101 Alburtis 1 -10001101 12:00 1 -10001101 1535 1 -10001101 1202.96 1 -10001101 25,096 1 -10001101 1201.77 1 -10001101 1309.14 1 -10001101 60,533 1 -10001101 demand. 1 -10001101 law-in-theory 1 -10001101 8,584 1 -10001101 1210.71 1 -10001101 1207.50 1 -10001101 ceremoniality 1 -10001101 711.3 1 -10001101 1976.8 1 -10001101 Sebring 1 -10001101 Lubbock. 1 -10001101 Hasselt 1 -10001101 Cortaro 1 -10001101 Burgenstock 1 -10001101 near-seclusion 1 -10001101 1635 1 -10001101 Freesoil 1 -10001101 Gackle 1 -10001101 Yokneam 1 -10001101 McMechen 1 -10001101 mid-Febuary 1 -10001101 Donetsk 1 -10001101 green-apple 1 -10001101 Coroma 1 -10001101 Aubange 1 -10001101 Deluth 1 -10001101 harpdom 1 -10001101 1971-85 1 -10001101 1268.03 1 -10001101 enzymology 1 -10001101 Kentfield 1 -10001101 Midvale 1 -10001101 Dolbeau 1 -10001101 megacompensation 1 -10001101 Samgait 1 -10001101 1320.09 1 -10001101 Otterlo 1 -10001101 Bothel 1 -10001101 Flatwoods 1 -10001101 near-depressions 1 -10001101 Turnhout 1 -10001101 1319.20 1 -10001101 Xinxiang 1 -10001101 Portau-Prince 1 -10001101 Warna 1 -10001101 1298.58 1 -10001101 darkness. 1 -10001101 Konstanz 1 -10001101 1298.83 1 -10001101 1298.17 1 -10001101 1295.68 1 -10001101 Murraysville 1 -10001101 Keosauqua 1 -10001101 1293.29 1 -10001101 20,400 1 -10001101 1294.28 1 -10001101 Hertfordshire 1 -10001101 1294.23 1 -10001101 Hanworth 1 -10001101 Kirovabad 1 -10001101 Emmetsburg 1 -10001101 Chanhassen 1 -10001101 Kitzbuehel 1 -10001101 1300.31 1 -10001101 Helmstedt 1 -10001101 Ramat-Gan 1 -10001101 2010-2013 1 -10001101 Patchogue 1 -10001101 saint-john's-wort 1 -10001101 2:08:43 1 -10001101 Riveredge 1 -10001101 1249.07 1 -10001101 Wilkliffe 1 -10001101 Safat 1 -10001101 midJanuary 1 -10001101 Tamaulipas 1 -10001101 1304.91 1 -10001101 Serowe 1 -10001101 Desolation 1 -10001101 Marxism. 1 -10001101 logotypes 1 -10001101 1493 1 -10001101 1269.22 1 -10001101 Lebel-Sur-Quevillon 1 -10001101 12,737 1 -10001101 Montpellier 1 -10001101 1303.86 1 -10001101 Golete 1 -10001101 Glencoe 1 -10001101 Cheraw 1 -10001101 2006-2010 1 -10001101 l972 1 -10001101 Harco 1 -10001101 1496 1 -10001101 1295.03 1 -10001101 double-A1 1 -10001101 1238.76 1 -10001101 1259.13 1 -10001101 '84-85 1 -10001101 2003-2009 1 -10001101 Bankok 1 -10001101 2005-2008 1 -10001101 19-feet 1 -10001101 Rossendale 1 -10001101 Huacrachuco 1 -10001101 1267.72 1 -10001101 1822-28 1 -10001101 Middlefield 1 -10001101 mid-trade 1 -10001101 1970-75 1 -10001101 mid-Tennessee 1 -10001101 midshift 1 -10001101 Gordonsville 1 -10001101 Hamburg-Grassbrook 1 -10001101 crocus-lavender 1 -10001101 perpetuum 1 -10001101 1269.93 1 -10001101 2006-2008 1 -10001101 Bebee 1 -10001101 mid-Janurary 1 -10001101 1318.16 1 -10001101 13,552 1 -10001101 Frome 1 -10001101 midstride 1 -10001101 1214.24 1 -10001101 1609 1 -10001101 Sorrento 1 -10001101 Boyds 1 -10001101 cinematography. 1 -10001101 1218.20 1 -10001101 Seattle. 1 -10001101 1250.14 1 -10001101 43.93 1 -10001101 Hogeye 1 -10001101 1225.13 1 -10001101 Clackamas 1 -10001101 Mechanicsville 1 -10001101 1993-95 1 -10001101 1229.44 1 -10001101 Contactair 1 -10001101 1977-88 1 -10001101 Sarrebourg 1 -10001101 2007-09 1 -10001101 Skillman 1 -10001101 Breinigsville 1 -10001101 Streator 1 -10001101 1241.17 1 -10001101 1967-1977 1 -10001101 moneysyllables 1 -10001101 1208.59 1 -10001101 ferro-alloys 1 -10001101 Yacopi 1 -10001101 Korea. 1 -10001101 1225.94 1 -10001101 Hooverman 1 -10001101 G-strings 1 -10001101 Watchmaking 1 -10001101 Cuma 1 -10001101 1996-98 1 -10001101 inflation- 1 -10001101 Nacagdoches 1 -10001101 underexpectations 1 -10001101 bluejeans 1 -10001101 5,478 1 -10001101 Bethseda 1 -10001101 Cedartown 1 -10001101 1246.09 1 -10001101 epistemology 1 -10001101 Kulm 1 -10001101 urethanes 1 -10001101 Promontory 1 -10001101 Telemunchen 1 -10001101 Austral-Asia 1 -10001101 Sligo 1 -10001101 Coesfeld 1 -10001101 hyposmia 1 -10001101 Pieterburen 1 -10001101 Berkeley. 1 -10001101 309.0 1 -10001101 12,937.9 1 -10001101 Demopolis 1 -10001101 1,594.0 1 -10001101 Wuerzburg 1 -10001101 474.0 1 -10001101 1197.99 1 -10001101 Pune 1 -10001101 Victorville 1 -10001101 1193.82 1 -10001101 small-displacement 1 -10001101 Ravennan 1 -10001101 Swindon 1 -10001101 Australia. 1 -10001101 4,853.7 1 -10001101 1191.46 1 -10001101 143,109 1 -10001101 254,846 1 -10001101 119,195 1 -10001101 13,066 1 -10001101 179,322 1 -10001101 1194.90 1 -10001101 Chiyah 1 -10001101 Vietnam. 1 -10001101 1198.68 1 -10001101 Conda 1 -10001101 1,704.0 1 -10001101 2,085.0 1 -10001101 2,044.5 1 -10001101 Ottobrunn 1 -10001101 9,127.0 1 -10001101 1,140.6 1 -10001101 3,338.4 1 -10001101 5,120.0 1 -10001101 3,418.0 1 -10001101 Nomisma 1 -10001101 1199.80 1 -10001101 mark-sterling 1 -10001101 mid-1967 1 -10001101 198081 1 -10001101 1,686,500 1 -10001101 1985-88 1 -10001101 Dreieich 1 -10001101 1221.66 1 -10001101 1214.18 1 -10001101 super-absorbency 1 -10001101 2008-10 1 -10001101 Boykins 1 -10001101 2010-2014 1 -10001101 1662 1 -10001101 Kalush 1 -10001101 1228.84 1 -10001101 Fontainbleau 1 -10001101 Apopka 1 -10001101 Hyannisport 1 -10001101 Habaniya 1 -10001101 1192.91 1 -10001101 Woodhaven 1 -10001101 Tecuseh 1 -10001101 Leixlip 1 -10001101 semimonthly 1 -10001101 1197.88 1 -10001101 Rhinecliff 1 -10001101 Aulnay 1 -10001101 non-Tories 1 -10001101 Lehi 1 -10001101 .5269 1 -10001101 1203.22 1 -10001101 Leping 1 -10001101 Rozenburg 1 -10001101 Donnacona 1 -10001101 1005 1 -10001101 1249.69 1 -10001101 Demography 1 -10001101 Oldsmar 1 -10001101 Balmertown 1 -10001101 1267.04 1 -10001101 Manilaarea 1 -10001101 Arlit 1 -10001101 Wausa 1 -10001101 Saatchification 1 -10001101 Asti 1 -10001101 Chinandega 1 -10001101 Francesville 1 -10001101 Ropers 1 -10001101 1263.37 1 -10001101 1241.96 1 -10001101 1260.00 1 -10001101 aliya 1 -10001101 1255.13 1 -10001101 Utsunomiya 1 -10001101 1277.13 1 -10001101 Iowa. 1 -10001101 Sandpoint 1 -10001101 Stoneville 1 -10001101 Chesire 1 -10001101 electrophotography 1 -10001101 Canovanas 1 -10001101 Tigard 1 -10001101 1.7370 1 -10001101 1.7225 1 -10001101 1919-1939 1 -10001101 Floresville 1 -10001101 histroy 1 -10001101 Hunstville 1 -10001101 autodidacts 1 -10001101 1657 1 -10001101 Scituate 1 -10001101 1226.13 1 -10001101 1946-48 1 -10001101 Arlee 1 -10001101 1268.10 1 -10001101 1980. 1 -10001101 hotel-housekeeping 1 -10001101 Madawaska 1 -10001101 Borispole 1 -10001101 1224.90 1 -10001101 Gartcosh 1 -10001101 Crossville 1 -10001101 16,558 1 -10001101 Vukovar 1 -10001101 Champa 1 -10001101 Smryna 1 -10001101 Oceana 1 -10001101 1963-64 1 -10001101 1235.27 1 -10001101 Minhang 1 -10001101 Serrana 1 -10001101 1554 1 -10001101 Hilversum 1 -10001101 Clover 1 -10001101 1226.82 1 -10001101 1230.18 1 -10001101 sputnik 1 -10001101 1970-81 1 -10001101 Terneuzen 1 -10001101 Quesnel 1 -10001101 Hydrostone 1 -10001101 Azcapotzalco 1 -10001101 1910-20 1 -10001101 1190 1 -10001101 1661 1 -10001101 bas-relief 1 -10001101 Moroleon 1 -10001101 1561.0 1 -10001101 Drachten 1 -10001101 Rothamsted 1 -10001101 1251.85 1 -10001101 Tubingen 1 -10001101 1736 1 -10001101 1231.96 1 -10001101 33,849 1 -10001101 Ashtabula 2 -10001101 IBM-speak 2 -10001101 1642 2 -10001101 Korem 2 -10001101 '32 2 -10001101 1981-89 2 -10001101 haystacks 2 -10001101 Tredyffrin 2 -10001101 2007-2009 2 -10001101 1702 2 -10001101 Khayelitsha 2 -10001101 1291 2 -10001101 sight. 2 -10001101 2009-2020 2 -10001101 Taichung 2 -10001101 1411.17 2 -10001101 Dhahran 2 -10001101 25-to-1 2 -10001101 1194.60 2 -10001101 1490 2 -10001101 Hydaburg 2 -10001101 Wyncote 2 -10001101 Bracebridge 2 -10001101 Anniston 2 -10001101 1520 2 -10001101 Shadeyside 2 -10001101 forget-me-not 2 -10001101 Barryville 2 -10001101 tax-swaps 2 -10001101 Haleyville 2 -10001101 Ligonier 2 -10001101 1763 2 -10001101 1453 2 -10001101 1526 2 -10001101 Pforzheim 2 -10001101 2260 2 -10001101 Gorbals 2 -10001101 resume-writing 2 -10001101 Opelousas 2 -10001101 Mississagua 2 -10001101 Vienne 2 -10001101 Vitebsk 2 -10001101 centerfield 2 -10001101 1483 2 -10001101 Westerville 2 -10001101 Hula-Hoops 2 -10001101 Luneburg 2 -10001101 Swissvale 2 -10001101 cheesecloth 2 -10001101 restrospect 2 -10001101 Corsicana 2 -10001101 1669 2 -10001101 Stuntbrand 2 -10001101 1240.03 2 -10001101 B/C 2 -10001101 SGGMD 2 -10001101 Cordele 2 -10001101 Wuppertal 2 -10001101 Folkestone 2 -10001101 Manhattan. 2 -10001101 Pella 2 -10001101 Vitos 2 -10001101 Kayenta 2 -10001101 Bequai 2 -10001101 '13 2 -10001101 1200.94 2 -10001101 1300.49 2 -10001101 Bramlea 2 -10001101 mid-1975 2 -10001101 1248.23 2 -10001101 Afabet 2 -10001101 1694 2 -10001101 Cottonton 2 -10001101 Waterville 2 -10001101 1971-1972 2 -10001101 Poway 2 -10001101 Sherbourne 2 -10001101 1932-1933 2 -10001101 1588 2 -10001101 backstretch 2 -10001101 1211.47 2 -10001101 Boxborough 2 -10001101 Florenceville 2 -10001101 Merseyside 2 -10001101 1623 2 -10001101 Fontainebleu 2 -10001101 Collegedale 2 -10001101 1270.18 2 -10001101 April. 2 -10001101 Goiania 2 -10001101 Edenton 2 -10001101 2060 2 -10001101 1758 2 -10001101 Napanee 2 -10001101 pantomine 2 -10001101 Effingham 2 -10001101 triplicate 2 -10001101 1249.45 2 -10001101 Taxila 2 -10001101 Phoeniz 2 -10001101 Korba 2 -10001101 2:25:21 2 -10001101 1249.51 2 -10001101 haberdashery 2 -10001101 Manaus 2 -10001101 1932-33 2 -10001101 1689 2 -10001101 Huntingburg 2 -10001101 Ephrata 2 -10001101 1660 2 -10001101 Bastrop 2 -10001101 '81-82 2 -10001101 1981-1986 2 -10001101 1257.35 2 -10001101 Owego 2 -10001101 Greenock 2 -10001101 1576 2 -10001101 Abkhazians 2 -10001101 Millen 2 -10001101 2004-2009 2 -10001101 Guayaquil 2 -10001101 1381 2 -10001101 Thomonde 2 -10001101 1929-1932 2 -10001101 1696 2 -10001101 INXS 2 -10001101 Recife 2 -10001101 higher-yield 2 -10001101 1232.49 2 -10001101 Seekonk 2 -10001101 2003-2008 2 -10001101 Herborn 2 -10001101 Mosul 2 -10001101 1808 2 -10001101 1604 2 -10001101 Duisburg-Rheinhausen 2 -10001101 Pushto 2 -10001101 crayon 2 -10001101 Moncton 2 -10001101 1515 2 -10001101 January. 2 -10001101 Riegelwood 2 -10001101 1644 2 -10001101 Dorval 2 -10001101 Ontonagon 2 -10001101 Tampico 2 -10001101 Peekskill 2 -10001101 degeneracy 2 -10001101 Lindenwold 2 -10001101 1768 3 -10001101 Bratislava 3 -10001101 Gloucestershire 3 -10001101 Killeen 3 -10001101 McCamey 3 -10001101 Alpena 3 -10001101 Statesville 3 -10001101 1632 3 -10001101 Nazareth 3 -10001101 l985 3 -10001101 1611 3 -10001101 mid-1996 3 -10001101 1843 3 -10001101 Sobibor 3 -10001101 Eschborn 3 -10001101 1978-80 3 -10001101 Pottstown 3 -10001101 Standerton 3 -10001101 Borken 3 -10001101 1829 3 -10001101 Naples-Syracuse 3 -10001101 21000 3 -10001101 Visalia 3 -10001101 Stateline 3 -10001101 Lakeville 3 -10001101 Puchon 3 -10001101 sweatsuits 3 -10001101 1622 3 -10001101 Sukoharjo 3 -10001101 Uvalde 3 -10001101 Ghent 3 -10001101 Songnam 3 -10001101 October-November 3 -10001101 1783 3 -10001101 1796 3 -10001101 22000 3 -10001101 '64 3 -10001101 Vilnius 3 -10001101 Ketchikan 3 -10001101 Dudhrej 3 -10001101 Chico-Redding 3 -10001101 Lumberton 3 -10001101 Plaquemine 3 -10001101 1625 3 -10001101 1826 3 -10001101 Miami. 3 -10001101 Wellsville 3 -10001101 Bloomsburg 3 -10001101 Rockmart 3 -10001101 Uniontown 3 -10001101 Cracow 3 -10001101 Oakton 3 -10001101 1610 3 -10001101 1809 3 -10001101 Skowhegan 3 -10001101 1985. 3 -10001101 Jeffersonville 3 -10001101 mid-flight 4 -10001101 1981-1985 4 -10001101 Harleyville 4 -10001101 Moundsville 4 -10001101 Gurnee 4 -10001101 extremis 4 -10001101 1797 4 -10001101 Tagalog 4 -10001101 1977-78 4 -10001101 Ziebarth 4 -10001101 1801 4 -10001101 Japan. 4 -10001101 Suzuka 4 -10001101 1675 4 -10001101 mid-1979 4 -10001101 GPT 4 -10001101 Dyersville 4 -10001101 Modena 4 -10001101 1599 4 -10001101 mid-1994 4 -10001101 1744 4 -10001101 Agadez 4 -10001101 1516 4 -10001101 1957-58 4 -10001101 1785 4 -10001101 Titograd 4 -10001101 Jonesboro 4 -10001101 Peterborough 4 -10001101 1802 4 -10001101 1822 4 -10001101 2080 4 -10001101 Mountainview 4 -10001101 1755 4 -10001101 1964-65 4 -10001101 Tarzana 4 -10001101 1814 4 -10001101 Malmoe 4 -10001101 Koblenz 4 -10001101 Ajijic 5 -10001101 Baalbek 5 -10001101 '48 5 -10001101 1978-79 5 -10001101 1821 5 -10001101 Kingsey-Falls 5 -10001101 '63 5 -10001101 1960-61 5 -10001101 1770 5 -10001101 Whitefish 5 -10001101 Jabalpur 5 -10001101 1823 5 -10001101 1636 5 -10001101 '72 5 -10001101 Brattleboro 5 -10001101 1828 5 -10001101 Mayaguez 5 -10001101 Martinsville 5 -10001101 Charleroi 5 -10001101 1953-54 5 -10001101 Bridgetown 5 -10001101 1804 5 -10001101 1798 6 -10001101 1825 6 -10001101 Frankfort 6 -10001101 1966-67 6 -10001101 Maastricht 6 -10001101 1805 6 -10001101 mid-Manhattan 6 -10001101 1847 6 -10001101 Truro 6 -10001101 1831 6 -10001101 Guadeloupe 6 -10001101 1781 6 -10001101 1774 6 -10001101 1730 6 -10001101 1815 6 -10001101 Dodgeville 6 -10001101 Stellarton 6 -10001101 1794 6 -10001101 1775 7 -10001101 Augsburg 7 -10001101 1974-75 7 -10001101 Saskatoon 7 -10001101 1877 7 -10001101 1885 7 -10001101 1780 7 -10001101 Albertville 7 -10001101 1841 7 -10001101 Munster 7 -10001101 Marshalltown 7 -10001101 Bracknell 7 -10001101 1842 7 -10001101 Nogales 7 -10001101 1793 7 -10001101 1972-73 7 -10001101 E-flat 7 -10001101 Loretto 7 -10001101 Quantico 7 -10001101 1827 7 -10001101 1816 7 -10001101 1845 7 -10001101 Heidelberg 7 -10001101 Washington. 7 -10001101 lavatories 8 -10001101 1856 8 -10001101 1824 8 -10001101 Torreon 8 -10001101 1784 8 -10001101 1810 8 -10001101 1835 8 -10001101 Marseilles 8 -10001101 1878 8 -10001101 1875 8 -10001101 Lahore 8 -10001101 1883 8 -10001101 Hefei 8 -10001101 1980-82 9 -10001101 2150 9 -10001101 '78 9 -10001101 mid-1981 9 -10001101 Tashkent 10 -10001101 1817 10 -10001101 1792 10 -10001101 numismatics 10 -10001101 1863 10 -10001101 1862 10 -10001101 1637 10 -10001101 Groton 10 -10001101 mid-1980 11 -10001101 1750 11 -10001101 abeyance 11 -10001101 Potsdam 11 -10001101 spades 11 -10001101 1853 11 -10001101 1865 11 -10001101 1791 11 -10001101 1969-70 11 -10001101 1832 11 -10001101 '83 11 -10001101 Mainz 11 -10001101 1871 12 -10001101 1820 12 -10001101 1790 12 -10001101 1894 12 -10001101 1881 12 -10001101 1795 12 -10001101 1851 12 -10001101 1982-1984 12 -10001101 1857 12 -10001101 1874 13 -10001101 1892 13 -10001101 1854 13 -10001101 1982-84 14 -10001101 1840 14 -10001101 1830 15 -10001101 1882 16 -10001101 Amritsar 16 -10001101 Tuscany 16 -10001101 1869 16 -10001101 1803 16 -10001101 '82 16 -10001101 1902 16 -10001101 1776 17 -10001101 1982-83 17 -10001101 1899 17 -10001101 Erlangen 17 -10001101 1891 17 -10001101 988 18 -10001101 1848 18 -10001101 1887 18 -10001101 1788 18 -10001101 1886 18 -10001101 1897 18 -10001101 1884 18 -10001101 1870 19 -10001101 1867 19 -10001101 tatters 19 -10001101 1889 19 -10001101 1879 20 -10001101 1904 20 -10001101 1850 20 -10001101 1868 20 -10001101 1876 20 -10001101 perpetuity 21 -10001101 1980-81 21 -10001101 mid-1982 21 -10001101 1861 22 -10001101 1880 22 -10001101 1903 22 -10001101 1898 23 -10001101 1905 23 -10001101 1890 23 -10001101 1906 24 -10001101 mid-1983 24 -10001101 1888 25 -10001101 1908 26 -10001101 jest 27 -10001101 1909 27 -10001101 1860 27 -10001101 1873 28 -10001101 1893 29 -10001101 1895 32 -10001101 unison 32 -10001101 1789 33 -10001101 1901 33 -10001101 1927 34 -10001101 1916 34 -10001101 1923 34 -10001101 '85 35 -10001101 Toulouse 37 -10001101 1910 37 -10001101 1918 38 -10001101 1896 39 -10001101 1907 39 -10001101 1922 42 -10001101 1915 42 -10001101 1984-85 44 -10001101 1914 44 -10001101 1912 45 -10001101 1921 47 -10001101 '86 48 -10001101 mid-1984 49 -10001101 1925 50 -10001101 1928 50 -10001101 1924 52 -10001101 1926 53 -10001101 1911 54 -10001101 1913 56 -10001101 1920 58 -10001101 1919 61 -10001101 1917 63 -10001101 1931 64 -10001101 1943 66 -10001101 1900 68 -10001101 1935 68 -10001101 diameter 73 -10001101 1942 79 -10001101 mid-1985 83 -10001101 1985-86 86 -10001101 1941 87 -10001101 hindsight 89 -10001101 1981-82 91 -10001101 1944 92 -10001101 mid-1986 93 -10001101 1937 94 -10001101 1939 94 -10001101 1936 96 -10001101 1932 99 -10001101 mid-March 103 -10001101 1938 104 -10001101 1951 105 -10001101 mid-1987 106 -10001101 1930 109 -10001101 1946 121 -10001101 1953 123 -10001101 mid-April 127 -10001101 mid-June 128 -10001101 1940 136 -10001101 1955 139 -10001101 1952 140 -10001101 1945 146 -10001101 1947 152 -10001101 1954 153 -10001101 1933 154 -10001101 1958 155 -10001101 1957 183 -10001101 1956 185 -10001101 1949 195 -10001101 1950 197 -10001101 1948 214 -10001101 1959 231 -10001101 1963 250 -10001101 1961 257 -10001101 1962 308 -10001101 1966 309 -10001101 1965 351 -10001101 1964 365 -10001101 1929 377 -10001101 1960 384 -10001101 1967 512 -10001101 1971 521 -10001101 1968 533 -10001101 1972 734 -10001101 1970 741 -10001101 1975 764 -10001101 1974 767 -10001101 1973 802 -10001101 1976 971 -10001101 1977 974 -10001101 1978 1278 -10001101 1979 1808 -10001101 1981 3011 -10001101 1980 3229 -10001101 1982 3813 -10001101 1983 4195 -10001101 1985 11496 -10001101 1984 6740 -100011100 SURRENDERED 1 -100011100 SIMILARITIES 1 -100011100 BERZOFSKY 1 -100011100 DOTS 1 -100011100 ANSWERS 1 -100011100 Uzzi 1 -100011100 TROUT 1 -100011100 SPIRIT 1 -100011100 ORIGINS 1 -100011100 STATION 1 -100011100 FAVORS 1 -100011100 PRECISE 1 -100011100 OFFICERS 1 -100011100 INCENTIVES 1 -100011100 40-HOUR 1 -100011100 APPRECIATION 1 -100011100 BULLET 1 -100011100 HOSPITALITY 1 -100011100 DUNKIN 1 -100011100 PREVIEWS 1 -100011100 AMPLE 1 -100011100 VIGOR 1 -100011100 CONCEDES 1 -100011100 DISTRIBUTION 1 -100011100 CHIN-LOR 1 -100011100 TOVIG 1 -100011100 COMPLICATION 1 -100011100 CHAMP 1 -100011100 ALLURE 1 -100011100 IMPROVEMENT 1 -100011100 TRESPASS 1 -100011100 mile. 1 -100011100 ANGUISH 1 -100011100 PALS 1 -100011100 fire-in-the-belly 1 -100011100 SILVER-TONGUED 1 -100011100 CELEBRITIES 1 -100011100 PRECHTER 1 -100011100 Donerries 1 -100011100 BALES 1 -100011100 CHAOS 1 -100011100 SEELIG 1 -100011100 TUMULT 1 -100011100 embarrassement 1 -100011100 RAW-STEEL 1 -100011100 SCANLON 1 -100011100 ROSEMARY 1 -100011100 C.B 1 -100011100 Virieu 1 -100011100 MUFFIN 1 -100011100 THIRTIES 1 -100011100 FETCH 1 -100011100 NAGOYA 1 -100011100 DEPARTURE 1 -100011100 CONTEST 1 -100011100 DAGGER 1 -100011100 Yummies 1 -100011100 Cut-Rate 1 -100011100 ZIYANG 1 -100011100 HAGEMAN 1 -100011100 FLAVORS 1 -100011100 EAGERNESS 1 -100011100 870817-0031 1 -100011100 BOWLS 1 -100011100 HANES 1 -100011100 ALLEGATIONS 1 -100011100 INCIDENT 1 -100011100 RUNWAY 1 -100011100 FLASK 1 -100011100 STRIVES 1 -100011100 TEO 1 -100011100 WERSTIUK 1 -100011100 Meeni 1 -100011100 BRISCOE 1 -100011100 DIAGNOSTICS 1 -100011100 DISILLUSION 1 -100011100 TECHNIQUES 1 -100011100 Lector 1 -100011100 heartwarmer 1 -100011100 Salado 1 -100011100 COMMONLY 1 -100011100 SCRAMBLES 1 -100011100 WINSTON-SALEM 1 -100011100 PROMOTIONS 1 -100011100 Bocayare 1 -100011100 WELL-BEING 1 -100011100 PIED 1 -100011100 GROUND 1 -100011100 MAYOR 1 -100011100 DROPOUTS 1 -100011100 SHORTAGES 1 -100011100 STARTS 1 -100011100 DISRUPTIVE 1 -100011100 FLEISHER 1 -100011100 CONSOLIDATION 1 -100011100 pale-green-glazed 1 -100011100 bar-to-tennis-court-ratio 1 -100011100 Binatang 1 -100011100 IVES 1 -100011100 BLITZ 1 -100011100 Caju 1 -100011100 NETHERLANDS 1 -100011100 INWARD 1 -100011100 SANTANDER 1 -100011100 COASTS 1 -100011100 CORNERS 1 -100011100 WORKWEEKS 1 -100011100 TISSUES 1 -100011100 CENTERFOLD 1 -100011100 COMRADE 1 -100011100 GOAL 1 -100011100 ACCOUNTANT 1 -100011100 CLAYS 1 -100011100 GURU 1 -100011100 BENASULI 1 -100011100 PLACEMENT 1 -100011100 SECURE 1 -100011100 STRIVE 1 -100011100 EUROPEANS 1 -100011100 VEREINSBANK 1 -100011100 FORMULA 1 -100011100 Go-Betweens 1 -100011100 PARALLEL 1 -100011100 CONSIDERED 1 -100011100 FORMALLY 1 -100011100 PAMED 1 -100011100 WEINSTEIN 1 -100011100 CONTRIBUTION 1 -100011100 DEFINED 1 -100011100 Sheikdom 1 -100011100 attorney-director 1 -100011100 TICKETS 1 -100011100 GOOD-WILL 1 -100011100 APPLES 1 -100011100 REASONS 1 -100011100 ASTRONAUTS 1 -100011100 goofily 1 -100011100 HASN 1 -100011100 PARTISANSHIP 1 -100011100 PLOY 1 -100011100 WHOLESALE 1 -100011100 Fictions 1 -100011100 VICE 1 -100011100 CROWS 1 -100011100 EXCITMENT 1 -100011100 TURNAROUND 1 -100011100 TEMPORARIES 1 -100011100 OPPOSED 1 -100011100 PROCEDURES 1 -100011100 AIRSPACE 1 -100011100 LIQUIDITY 1 -100011100 FLAWS 1 -100011100 FLOW 1 -100011100 DRIPS 1 -100011100 LOCKER 1 -100011100 Talcos 1 -100011100 Imprensa 1 -100011100 THAR 1 -100011100 Dahuk 1 -100011100 super-weapon 1 -100011100 STAFFED 1 -100011100 Hockery 1 -100011100 offer-in-compromise 1 -100011100 A.B.D. 1 -100011100 SUPPLIERS 1 -100011100 CONDITIONERS 1 -100011100 AUSSIE 1 -100011100 ROBERTS 1 -100011100 ROCKS 1 -100011100 IMPRESSIONS 1 -100011100 LIABILITIES 1 -100011100 IDEAS 1 -100011100 SCENE 1 -100011100 confidence-builder 1 -100011100 ANEMOMETER 1 -100011100 REYES 1 -100011100 ABOARD 1 -100011100 CATCH-444 1 -100011100 REGION 1 -100011100 GRINCH 1 -100011100 PERFUMES 1 -100011100 MIDLIFE 1 -100011100 CORRECTION 1 -100011100 SELDOM 1 -100011100 KEDS 1 -100011100 SUCCEEDS 1 -100011100 HEARTS 1 -100011100 YORKERS 1 -100011100 EARTHQUAKE 1 -100011100 PERSPECTIVE 1 -100011100 SPREADS 1 -100011100 COLLECTION 1 -100011100 Kowtowskys 1 -100011100 Entomology 1 -100011100 COPING 1 -100011100 SOLICITORS 1 -100011100 PLIGHT 1 -100011100 CHOLET 1 -100011100 japes 1 -100011100 PINUP 1 -100011100 SLOPES 1 -100011100 BEDS 1 -100011100 FURNISHINGS 1 -100011100 WARPLANES 1 -100011100 ATTRACTIONS 1 -100011100 HANDCUFFS 1 -100011100 TRANSFERS 1 -100011100 DAKOTANS 1 -100011100 PENH 1 -100011100 PHNOM 1 -100011100 CALENDAR 1 -100011100 JUNG 1 -100011100 DAE 1 -100011100 810-square-foot 1 -100011100 CABLEVISION 1 -100011100 CONDUCTOR 1 -100011100 IRONY 1 -100011100 VENTURING 1 -100011100 RESTRAINT 1 -100011100 OUTSKIRTS 1 -100011100 CLAY 1 -100011100 871008-0033 1 -100011100 FOLIAGE 1 -100011100 FABRICS 1 -100011100 EXEMPTION 1 -100011100 CENTERPIECE 1 -100011100 outgoers 1 -100011100 AVERAGING 1 -100011100 GRAPE 1 -100011100 EQUIPPED 1 -100011100 89-page 1 -100011100 FADES 1 -100011100 BASES 1 -100011100 POTATOES 1 -100011100 INSPECTOR 1 -100011100 pilferproof 1 -100011100 OPTIMISTS 1 -100011100 SUE 1 -100011100 LEVIES 1 -100011100 SCHEDULES 1 -100011100 BLOWS 1 -100011100 READING 1 -100011100 BEGINNING 1 -100011100 POLISHING 1 -100011100 GREEDY 1 -100011100 INNOVATION 1 -100011100 DANIA 1 -100011100 English-made 1 -100011100 GUFFEY 1 -100011100 FII-Fyffes 1 -100011100 THEATERGOERS 1 -100011100 MUNCHIES 1 -100011100 PIANCONE 1 -100011100 DOMINATE 1 -100011100 REWARD 1 -100011100 VANISH 1 -100011100 KNIGHT 1 -100011100 SEASONS 1 -100011100 Peixe 1 -100011100 PERU 1 -100011100 PLUGS 1 -100011100 Werner-speak 1 -100011100 OBSERVERS 1 -100011100 SCREENING 1 -100011100 REVELRY 1 -100011100 AMEN 1 -100011100 BRINGS 1 -100011100 UNFAIRNESS 1 -100011100 UNBARRED 1 -100011100 FACADE 1 -100011100 THOUGHTS 1 -100011100 TOWER 1 -100011100 ITEMIZED 1 -100011100 DIVIDENDS. 1 -100011100 STORYBOARD 1 -100011100 TOLEDO 1 -100011100 freebooter 1 -100011100 ATTRACTION 1 -100011100 BETS 1 -100011100 JEWELLERS 1 -100011100 VALUES 1 -100011100 DEFECTED 1 -100011100 SURFACED 1 -100011100 SHORES 1 -100011100 YANG 1 -100011100 PEEKING 1 -100011100 UNEMPLOYED 1 -100011100 AUDIT 1 -100011100 PRAISE 1 -100011100 POSITIONS 1 -100011100 COME-ON 1 -100011100 CHANCE-OF-A-LIFETIME 1 -100011100 VIOLATIONS 1 -100011100 FIREFIGHTERS 1 -100011100 AVIACION 1 -100011100 TELECOMUNICATIONS 1 -100011100 TRAPPINGS 1 -100011100 Trap-Ease 1 -100011100 MOUSETRAP 1 -100011100 BANQUES 1 -100011100 PAGE 1 -100011100 BERTHA 1 -100011100 CRUCIFIXION 1 -100011100 SPONGES 1 -100011100 THUMB 1 -100011100 BLUEBERRIES 1 -100011100 BULLISH 1 -100011100 ABREAST 1 -100011100 BEVERAGE 1 -100011100 GIRLFRIEND 1 -100011100 SIDES 1 -100011100 Self-Employed 1 -100011100 SIGHTED 1 -100011100 DEFINITION 1 -100011100 eye-grabber 1 -100011100 COFFEEHOUSE 1 -100011100 SPOUSE 1 -100011100 INNOCENT 1 -100011100 HALTED 1 -100011100 AGRONOMICS 1 -100011100 EDGES 1 -100011100 VANS 1 -100011100 ABSOLUTE 1 -100011100 FOE 1 -100011100 ANTONIO 1 -100011100 RODIME 1 -100011100 SUBWAYS 1 -100011100 GENERATING 1 -100011100 BALLYHOOED 1 -100011100 EMERGE 1 -100011100 ESCALATE 1 -100011100 CLOSER 1 -100011100 AMWAY 1 -100011100 abalone-lover 1 -100011100 SHORESIDE 1 -100011100 EX-SPOUSE 1 -100011100 VOCALS 1 -100011100 CERTIFICATION 1 -100011100 BIOSCIENCE 1 -100011100 BARRIER 1 -100011100 ARRANGEMENTS 1 -100011100 UNPROFITABLE 1 -100011100 CARLSON 1 -100011100 ARGUMENT 1 -100011100 SHIELD 1 -100011100 ESSENCE 1 -100011100 child/Her 1 -100011100 JOCKEY 1 -100011100 STAG 1 -100011100 TONGUE 1 -100011100 CONVERTED 1 -100011100 BOUND 1 -100011100 GRATIFICATION 1 -100011100 Rondelli 1 -100011100 arras 1 -100011100 FOX 1 -100011100 UNSWORTH 1 -100011100 TROY 1 -100011100 WEREN 1 -100011100 ASSEMBLED 1 -100011100 ADVANTAGE 1 -100011100 ATTITUDES 1 -100011100 BRANCH 1 -100011100 LASERS 1 -100011100 CADAVERS 1 -100011100 PHARRISS 1 -100011100 WESTON 1 -100011100 BUSINESSPHONES 1 -100011100 LUDLUM 1 -100011100 Amount 1 -100011100 DEGREE 1 -100011100 GUARD 1 -100011100 BOMBSHELLS 1 -100011100 LAWMAKER 1 -100011100 Aulnois 1 -100011100 WORLDS 1 -100011100 WINNER 1 -100011100 COST-OF-LAUGHING 1 -100011100 RESOLUTIONS 1 -100011100 Immodest 1 -100011100 AVALON 1 -100011100 STARK 1 -100011100 MORIYAMA 1 -100011100 BAINS 1 -100011100 insider/arbitrager 1 -100011100 LACK 1 -100011100 LUMPSUM 1 -100011100 TONGUE-TWISTING 1 -100011100 INDICTMENTS 1 -100011100 BLEEP 1 -100011100 SCHEMING 1 -100011100 INSTANCE 1 -100011100 GLOOM 1 -100011100 KILL 1 -100011100 INFORMED 1 -100011100 Reject 1 -100011100 HALMI 1 -100011100 Prosterman 1 -100011100 TINTO-ZINC 1 -100011100 Auteroche 1 -100011100 OFFSHORE 1 -100011100 QUESTIONERS 1 -100011100 ENFORCERS 1 -100011100 SYNDICATOR 1 -100011100 AEGIS 1 -100011100 Thanarat 1 -100011100 MORALE 1 -100011100 INVENTORIES 1 -100011100 TUNE 1 -100011100 Eyeball 1 -100011100 INHERITANCE 1 -100011100 PLAINTIFF 1 -100011100 HURRAH 1 -100011100 TRACK 1 -100011100 ETHICAL 1 -100011100 STARKVILLE 1 -100011100 SORRELL 1 -100011100 CASTPARTS 1 -100011100 FACTORIES 1 -100011100 DEBUTS 1 -100011100 VETERANS 1 -100011100 MCHALE 1 -100011100 SNEAKER 1 -100011100 layettes 1 -100011100 PARTIES 1 -100011100 Morass 1 -100011100 INTER 1 -100011100 MEETINGS 1 -100011100 MOTIVES 1 -100011100 MILEAGE 1 -100011100 FLEXIBILITY 1 -100011100 Clampdown 1 -100011100 Camouflage 1 -100011100 SKEPTICS 1 -100011100 NOMINEE 1 -100011100 SEMENCES 1 -100011100 870615-0116 1 -100011100 BACKSLIDES 1 -100011100 GUNBOATS 1 -100011100 MUDDLED 1 -100011100 NORRIS 1 -100011100 KINNEAR 1 -100011100 JAMAIL 1 -100011100 DISCOVERIES 1 -100011100 FOLKS 1 -100011100 LEVERAGE 1 -100011100 RESCUE 1 -100011100 Wagnerites 1 -100011100 HOSTS 1 -100011100 NUTCRACKER 1 -100011100 ANXIOUS 1 -100011100 CONCEDED 1 -100011100 GRIM 1 -100011100 POCKETS 1 -100011100 AIRLINER 1 -100011100 CON 1 -100011100 PROMOTED 1 -100011100 QUALIFIED 1 -100011100 1872-1922 1 -100011100 apocalypticism 1 -100011100 KARLOFF 1 -100011100 FLYNN 1 -100011100 DEPOT 1 -100011100 DREAMERS 1 -100011100 TEMPTATIONS 1 -100011100 NECESSARY 1 -100011100 Panacea 1 -100011100 PHIPPS 1 -100011100 Epilogue 1 -100011100 CPSU 1 -100011100 FEED 1 -100011100 OLDSTER 1 -100011100 ROSTY 1 -100011100 WILKIS 1 -100011100 VERMONT 1 -100011100 WOOS 1 -100011100 GROPE 1 -100011100 GOVERNMENTS 1 -100011100 BALLOONS 1 -100011100 VALU 1 -100011100 FALLOFF 1 -100011100 SOUTHARD 1 -100011100 caduceus 1 -100011100 INTERESTS 1 -100011100 BIRTHDAY 1 -100011100 DERAILED 1 -100011100 UNDERWENT 1 -100011100 MINERA 1 -100011100 HUSIC 1 -100011100 AGRI-VATION 1 -100011100 BUREAUCRACY 1 -100011100 COMPUTING 1 -100011100 CONVENED 1 -100011100 Necklace 1 -100011100 QUOTATIONS 1 -100011100 SIKORA 1 -100011100 OVERTURES 1 -100011100 WHOLE 1 -100011100 CULTURAL 1 -100011100 EXPANSIONS 1 -100011100 BOUNTY 1 -100011100 CHEATERS 1 -100011100 Dastour 1 -100011100 AGGREGATES 1 -100011100 prizefights 1 -100011100 ITEM 1 -100011100 STEELWORKERS 1 -100011100 7130 1 -100011100 SPORTY 1 -100011100 PAPERS 1 -100011100 REPORTEDLY 1 -100011100 adverb 1 -100011100 CUP 1 -100011100 BURROUGH 1 -100011100 PADDED 1 -100011100 THIRD 1 -100011100 Montepulciano 1 -100011100 VETERINARIANS 1 -100011100 DIFFERENCES 1 -100011100 YIELD 1 -100011100 preposterousness 1 -100011100 MORMON 1 -100011100 tripone 1 -100011100 COURTHOUSE 1 -100011100 PROCEDURE 1 -100011100 PROLIFERATION 1 -100011100 PELLEGRINO 1 -100011100 BEAMS 1 -100011100 ESTATES 1 -100011100 VEHICLE 1 -100011100 KROCK 1 -100011100 DIRT 1 -100011100 BAKERIES 1 -100011100 TURISMO 1 -100011100 OVERPAYING 1 -100011100 SPEAK 1 -100011100 RIZZO 1 -100011100 SURVEILLANCE 1 -100011100 VARIABLES 1 -100011100 EVERYTHING 1 -100011100 LORD 1 -100011100 IMPORTERS 1 -100011100 DRIVES 1 -100011100 SUPPLIES 1 -100011100 encouragements 1 -100011100 BURNOUT 1 -100011100 OSTEOPATHS 1 -100011100 WRITE-OFFS 1 -100011100 WEAR 1 -100011100 TACK 1 -100011100 18-YEAR-OLD 1 -100011100 REVERSAL 1 -100011100 MANEUVER 1 -100011100 UNITES 1 -100011100 AMBITIONS 1 -100011100 Cyanuric 1 -100011100 POSER 1 -100011100 Plumage 1 -100011100 Man-Made 1 -100011100 +26 1 -100011100 81,437 1 -100011100 86,782 1 -100011100 CO-OPs 1 -100011100 RE-ELECTED 1 -100011100 LICK 1 -100011100 FASTEST 1 -100011100 DOOR 1 -100011100 ANTIBIOTIC 1 -100011100 OINTMENT 1 -100011100 TENANT 1 -100011100 TOURED 1 -100011100 WARMER 1 -100011100 EMERGES 1 -100011100 REIGNS 1 -100011100 LEECH 1 -100011100 BIRTHMARKS 1 -100011100 rival-as 1 -100011100 MAMMOGRAPHY 1 -100011100 ROSES 1 -100011100 EMPLOYMENT 1 -100011100 75,930 1 -100011100 ARCHIVES 1 -100011100 34,106 1 -100011100 Bornstein 1 -100011100 SCOOP 1 -100011100 ELECTRICIDAD 1 -100011100 INDUSTRIA 1 -100011100 5,987 1 -100011100 OUTBURST 1 -100011100 MARCUS 1 -100011100 LEUTHOLD 1 -100011100 WACHNER 1 -100011100 SHEEPSKIN 1 -100011100 MARKETER 1 -100011100 PADAVAN 1 -100011100 UNTAXABLE 1 -100011100 FRANCS 1 -100011100 FADS 1 -100011100 ACHIEVER 1 -100011100 DISABLED 1 -100011100 MOTORENWERKE 1 -100011100 INDICTMENT 1 -100011100 HYPERBOLE 1 -100011100 NANCY 1 -100011100 VOW 1 -100011100 RACKS 1 -100011100 SKIING 1 -100011100 HAWAII 1 -100011100 ASKS 1 -100011100 ADVANCEMENT 1 -100011100 COCAINE 1 -100011100 HAZARDOUS 1 -100011100 PATTON 1 -100011100 ADMISSIONS 1 -100011100 PRIVILEGE 1 -100011100 KILBY 1 -100011100 FINISHING 1 -100011100 ADVISOR 1 -100011100 ADVISORY 1 -100011100 OBERMAIER 1 -100011100 SMOKES 1 -100011100 DEADLINE 1 -100011100 Negotiator 1 -100011100 almost-industry 1 -100011100 FINALISTS 1 -100011100 RING 1 -100011100 BOMBER 1 -100011100 STEALTH 1 -100011100 EFFICIENT 1 -100011100 HARDER 1 -100011100 Sexes 1 -100011100 SKYSCRAPERS 1 -100011100 LEVENTHAL 1 -100011100 MITTELSTADT 1 -100011100 CLIPS 1 -100011100 half-ironically 1 -100011100 LATEST 1 -100011100 WORKSHOP 1 -100011100 SOLES 1 -100011100 M-I-C-K-E-Y 1 -100011100 HOUR 1 -100011100 Hoboken-Overpelt 1 -100011100 Agonized 1 -100011100 Treibacher 1 -100011100 Stenstrom 1 -100011100 PROSECUTIONS 1 -100011100 U.S.-Built 1 -100011100 Fogleman 1 -100011100 STOPPED 1 -100011100 RESERVES 1 -100011100 242,010 1 -100011100 247,505 1 -100011100 topper 1 -100011100 MINIMALISM 1 -100011100 EMBARKED 1 -100011100 Terai 1 -100011100 1,197,955 1 -100011100 SURFACES 1 -100011100 COMMUNICATORS 1 -100011100 PHOBIA 1 -100011100 ATTORNEY 1 -100011100 NAVIGATOR 1 -100011100 JACQUES 1 -100011100 UNCOUPLING 1 -100011100 52-pounder 1 -100011100 TERMINATED 1 -100011100 IMPUTED 1 -100011100 LOVERS 1 -100011100 SUPERPOWERS 1 -100011100 TRANSATLANTICO 1 -100011100 RESPONDED 1 -100011100 LORDS 1 -100011100 INSTEAD 1 -100011100 SYMPTOMS 1 -100011100 COS 1 -100011100 DENIED 1 -100011100 PERMANENTE 1 -100011100 PATCHES 1 -100011100 CIRCLES 1 -100011100 SPUR 1 -100011100 DISTANCE 1 -100011100 Pozzi 1 -100011100 QUALMS 1 -100011100 SURROGATES 1 -100011100 LINING 1 -100011100 Absence 1 -100011100 TEXACO-PENNZOIL 1 -100011100 Blankety-Blanks 1 -100011100 responsibilities. 1 -100011100 FUTILE 1 -100011100 BILLBOARDS 1 -100011100 TIPTOES 1 -100011100 College-entrance 1 -100011100 MARSHALS 1 -100011100 ARRIVE 1 -100011100 PLAZA 1 -100011100 PORN 1 -100011100 ORDINAIRE 1 -100011100 +14 1 -100011100 bancs 1 -100011100 212,556 1 -100011100 JUNGLE 1 -100011100 GHOST 1 -100011100 BOBSLED 1 -100011100 REACTION 1 -100011100 TYPEWRITERS 1 -100011100 EXCHANGED 1 -100011100 ROUTE 1 -100011100 BERTH 1 -100011100 SLICE 1 -100011100 CLEAN 1 -100011100 KICKS 1 -100011100 UKRAINIANS 1 -100011100 DIEM 1 -100011100 BASKIN 1 -100011100 BREAKERS 1 -100011100 REFUGEES 1 -100011100 CLASH 1 -100011100 FRAUD 1 -100011100 poltically 1 -100011100 DRESSES 1 -100011100 GATE 1 -100011100 DIGS 1 -100011100 CAREENS 1 -100011100 SPIN 1 -100011100 FINLEY 1 -100011100 BOATS 1 -100011100 OUNCE 1 -100011100 GUERRILLAS 1 -100011100 HUNTS 1 -100011100 DISCIPLINE 1 -100011100 SEEKERS 1 -100011100 COOKED 1 -100011100 SUBSIDIARIES 1 -100011100 HAYWARD 1 -100011100 FOLD 1 -100011100 TEXT 1 -100011100 72,643 1 -100011100 34,198 1 -100011100 MEND 1 -100011100 GOALS 1 -100011100 NATIVE 1 -100011100 RUMORS 1 -100011100 ATTAINS 1 -100011100 EXPECTS 1 -100011100 DIXON 1 -100011100 SURGES 1 -100011100 12,706 1 -100011100 SOLDIER 1 -100011100 1,083,822 1 -100011100 541,413 1 -100011100 RAN 1 -100011100 FAVOR 1 -100011100 ESCOFFIER 1 -100011100 HUNTERS 1 -100011100 SAND 1 -100011100 Ambre 1 -100011100 Seclorum 1 -100011100 GUITAR 1 -100011100 CUFF 1 -100011100 BISCUITS 1 -100011100 BERLIN 1 -100011100 VATICAN 1 -100011100 DECADES 1 -100011100 FREEMAN 1 -100011100 PROLIFERATORS 1 -100011100 ZOOS 1 -100011100 FITNESS 1 -100011100 AWAKE 1 -100011100 MORASS 1 -100011100 Feliciani 1 -100011100 SORT 1 -100011100 BRADLEY 1 -100011100 JUDITH 1 -100011100 MILLIONS 1 -100011100 TRIES 1 -100011100 RECALLS 1 -100011100 GEPPER 1 -100011100 DISARRAY 1 -100011100 STICKS 1 -100011100 insurgency. 1 -100011100 LUNG 1 -100011100 VIBROMETER 1 -100011100 MOVEMENT 1 -100011100 TERRORISM 1 -100011100 TAXIS 1 -100011100 PENARROYA 1 -100011100 VEHICLES 1 -100011100 FIGHTERS 1 -100011100 INITIATIVE 1 -100011100 SELES 1 -100011100 gioia 1 -100011100 GIRL 1 -100011100 TRANSACTIONS 1 -100011100 manager-on-the-edge 1 -100011100 RUNG 1 -100011100 DUO 1 -100011100 STAND 1 -100011100 FIXES 1 -100011100 TAKEOVERS 1 -100011100 SAURER 1 -100011100 +77 1 -100011100 DONNYBROOK 1 -100011100 SUFFERERS 1 -100011100 alphabetize 1 -100011100 SURFACE 1 -100011100 BATHROOM 1 -100011100 RAINS 1 -100011100 SEEN 1 -100011100 Attackers 1 -100011100 RICH 1 -100011100 COAT 1 -100011100 TRENCH 1 -100011100 DISAPPEARS 1 -100011100 BUSTERS 1 -100011100 SURVEYS 1 -100011100 78,713 1 -100011100 7,348 1 -100011100 471,834 1 -100011100 Fonsalette 1 -100011100 1536.5 1 -100011100 1901.7 1 -100011100 RACE 1 -100011100 Afterword 1 -100011100 7,545 1 -100011100 7,258,887 1 -100011100 SMUGGLERS 1 -100011100 Anti-abortionists 1 -100011100 VACUUM 1 -100011100 WEDDINGS 1 -100011100 COLUMNISTS 1 -100011100 WEEKENDS 1 -100011100 UHL 1 -100011100 SELF-DESTROYED 1 -100011100 Waterlooplein 1 -100011100 COMMITTEES 1 -100011100 BATHROOMS 1 -100011100 PROMISE 1 -100011100 INTERIORS 1 -100011100 POWELL 1 -100011100 out-of-stater 1 -100011100 Riunitie 1 -100011100 LAUDERDALE 1 -100011100 LOBSTERS 1 -100011100 OVERDOSE 1 -100011100 QUOTIENT 1 -100011100 RANDELL 1 -100011100 BOAST 1 -100011100 ROOM 1 -100011100 distributors/studios 1 -100011100 CONTENDERS 1 -100011100 DIPLOMATS 1 -100011100 INMATE 1 -100011100 CEREMONY 1 -100011100 employee-morale 1 -100011100 RFP 1 -100011100 WALLACH 1 -100011100 BREAKS 1 -100011100 DISRUPTION 1 -100011100 FAIRS 1 -100011100 CUISINE 1 -100011100 MARCIA 1 -100011100 HELPS 1 -100011100 ANTICA 1 -100011100 COTTING 1 -100011100 BIG-NAME 1 -100011100 GLAUBER 1 -100011100 101,379 1 -100011100 2,957 1 -100011100 EXPOSURE 1 -100011100 MUSTARD 1 -100011100 1947-1962 1 -100011100 REACTIONS 1 -100011100 Cranky 1 -100011100 UNITY 1 -100011100 CONSCIENCE 1 -100011100 SNUFF 1 -100011100 EATERIES 1 -100011100 HEIRDALE 1 -100011100 Leprechaun 1 -100011100 TRICKLES 1 -100011100 SENSOR 1 -100011100 WOUNDED 1 -100011100 HUNT 1 -100011100 1-800-CBT-LEND 1 -100011100 Magnier 1 -100011100 OUTRAGE 1 -100011100 NEWT 1 -100011100 BANCORPORATION 1 -100011100 OPERATION 1 -100011100 Over-50 1 -100011100 springboards 1 -100011100 MOTIVATE 1 -100011100 BITTEN 1 -100011100 CRUTCH 1 -100011100 NONSMOKERS 1 -100011100 Mitsubishi-a 1 -100011100 SAHGAL 1 -100011100 TALENT 1 -100011100 Caroni 1 -100011100 WEAPON 1 -100011100 THREATS 1 -100011100 CAUTION 1 -100011100 HOFFER 1 -100011100 1,333,517 1 -100011100 EURO 1 -100011100 Cataluna 1 -100011100 STATIONS 1 -100011100 TIPS 1 -100011100 Sep 1 -100011100 COLUMN 1 -100011100 514,658 1 -100011100 reqion 1 -100011100 FELLOWSHIP 1 -100011100 CASSETTE 1 -100011100 TAMMY 1 -100011100 CICIPIO 1 -100011100 TERRY 1 -100011100 SEWERS 1 -100011100 DALEY 1 -100011100 PLODDERS 1 -100011100 RUDOLPH 1 -100011100 YORK-To 1 -100011100 executive-desk 1 -100011100 ENGEL 1 -100011100 xero-lingo 1 -100011100 2118.7 1 -100011100 1541.0 1 -100011100 Perduyn 1 -100011100 Glynwed 1 -100011100 least-trumpeted 1 -100011100 ABRACADABRA 1 -100011100 UNDEFINED 1 -100011100 ESTABLISHMENT 1 -100011100 STRIPES 1 -100011100 still-fresh 1 -100011100 Moderating 1 -100011100 FRIDAY 1 -100011100 RESURFACES 1 -100011100 NERVES 1 -100011100 Heyssel 1 -100011100 SUBURBIA 1 -100011100 BRAINTRUSTERS 1 -100011100 CORNFELD 1 -100011100 VICES 1 -100011100 BATHURST 1 -100011100 ADD-ON 1 -100011100 REAP 1 -100011100 REJECTION 1 -100011100 ABUSES 1 -100011100 SHOCKS 1 -100011100 PRELATE 1 -100011100 MOAN 1 -100011100 SUCKER 1 -100011100 good-lookers 1 -100011100 198,400 1 -100011100 ACCRUALS 1 -100011100 DEALER 1 -100011100 VINES 1 -100011100 DELEGATES 1 -100011100 APOLOGIES 1 -100011100 IMAGING 1 -100011100 FOULEST 1 -100011100 ENVELOPES 1 -100011100 Ferrocarril 1 -100011100 KNIFE 1 -100011100 ASSIGNMENT 1 -100011100 SARK 1 -100011100 Wearne 1 -100011100 DIVORCEE 1 -100011100 UNLUCKY 1 -100011100 France-Caecl 1 -100011100 UNITS 1 -100011100 DIET 1 -100011100 KEYBOARDS 1 -100011100 ONE-TIME 1 -100011100 RESNICK 1 -100011100 TRIAL 1 -100011100 SNAFU 1 -100011100 LINKS 1 -100011100 ICEMAN 1 -100011100 PALESTINIANS 1 -100011100 LODESTAR 1 -100011100 EYEWEAR 1 -100011100 TELESCOPE 1 -100011100 REMAINED 1 -100011100 FOURTH 1 -100011100 MOTIVE 1 -100011100 SATISFACTION. 1 -100011100 OUELLETTE 1 -100011100 Rioters 1 -100011100 RETREAT 1 -100011100 TAKESHITA 1 -100011100 AMOUNT 1 -100011100 HEALTH-BENEFITS 1 -100011100 RIDDLE 1 -100011100 ADJUSTMENT 2 -100011100 DECLINES 2 -100011100 ADDITION 2 -100011100 STEIN 2 -100011100 MOMENT 2 -100011100 ELLIS 2 -100011100 AXIOM 2 -100011100 OWNERSHIP 2 -100011100 CHECKS 2 -100011100 DRAFT 2 -100011100 GOBAIN 2 -100011100 SUREST 2 -100011100 INTERIOR 2 -100011100 LONGER 2 -100011100 AMENDMENTS 2 -100011100 POSNER 2 -100011100 PLEA 2 -100011100 SENTENCED 2 -100011100 6251 2 -100011100 ORGANIZERS 2 -100011100 COALITION 2 -100011100 Kools 2 -100011100 HAPPENS 2 -100011100 PIERCE 2 -100011100 ASSERTED 2 -100011100 MINORITIES 2 -100011100 DISTRIBUTORS 2 -100011100 FOLLOWERS 2 -100011100 TASTERS 2 -100011100 WING 2 -100011100 YIELDS 2 -100011100 VS. 2 -100011100 PROBE 2 -100011100 REGULARLY 2 -100011100 LAMENT 2 -100011100 CORP.-c 2 -100011100 ERRORS 2 -100011100 HOMEMADE 2 -100011100 LEAGUE 2 -100011100 FAMOUS 2 -100011100 TALE 2 -100011100 AWAITED 2 -100011100 HOG 2 -100011100 HOMELESS 2 -100011100 QUOTABLE 2 -100011100 BILZERIAN 2 -100011100 APPOINTMENT 2 -100011100 CONDEMNED 2 -100011100 SOLDIERS 2 -100011100 TURNOUT 2 -100011100 BIDCOS 2 -100011100 EXPIRED 2 -100011100 WHEEL 2 -100011100 SPREE 2 -100011100 MEASURES 2 -100011100 LICENSE 2 -100011100 ANITA 2 -100011100 EYE 2 -100011100 CRIMINALS 2 -100011100 SELLER 2 -100011100 WHEELS 2 -100011100 JUAN 2 -100011100 PUBLISHERS 2 -100011100 SAILING 2 -100011100 DISPUTE 2 -100011100 OFTEN 2 -100011100 ramification 2 -100011100 CLOSINGS 2 -100011100 MIDWEST 2 -100011100 REVENGE 2 -100011100 REFORM 2 -100011100 LEGACY 2 -100011100 DEMOCRACY 2 -100011100 JUNE 2 -100011100 matriarchy 2 -100011100 TILT 2 -100011100 INDISPENSABLE 2 -100011100 APOLOGIZES 2 -100011100 PLANNERS 2 -100011100 Jingoism 2 -100011100 Intermittently 2 -100011100 AUTHORITIES 2 -100011100 CONNECTION 2 -100011100 PUBLICATION 2 -100011100 CUELLAR 2 -100011100 RELAX 2 -100011100 BACKS 2 -100011100 TEXTBOOK 2 -100011100 DUTY 2 -100011100 YOURSELF 2 -100011100 VAULT 2 -100011100 PERFORMANCE 2 -100011100 RELUCTANCE 2 -100011100 BASHES 2 -100011100 SCIENCES 2 -100011100 MAKER 2 -100011100 ROOT 2 -100011100 SUCCESSOR 2 -100011100 UTILITY 2 -100011100 ROLLOVER 2 -100011100 SPEAKES 2 -100011100 CHARACTER 2 -100011100 SUBMARINES 2 -100011100 CAMERAS 2 -100011100 BURDEN 2 -100011100 PROOF 2 -100011100 TALLY 2 -100011100 Laredos 2 -100011100 STEP 2 -100011100 EGGS 2 -100011100 AGREEMENTS 2 -100011100 Preface 2 -100011100 SLEEP 2 -100011100 CABLESYSTEMS 2 -100011100 ASSURED 2 -100011100 PICTURE 2 -100011100 RELIEF 2 -100011100 STUMBLES 2 -100011100 MEETING 2 -100011100 BYRD 2 -100011100 SHADOW 2 -100011100 CHANCE 2 -100011100 POLLUTION 2 -100011100 detours 2 -100011100 DRIVE 2 -100011100 SENATORS 2 -100011100 LEFTOVERS 2 -100011100 SUGGESTED 2 -100011100 VEEP 2 -100011100 DELAY 2 -100011100 FATE 2 -100011100 WIRE 2 -100011100 RALLY 2 -100011100 RANGE 2 -100011100 OPPONENTS 2 -100011100 PACKARD 2 -100011100 SPEND 2 -100011100 PASTURES 2 -100011100 DEFEAT 2 -100011100 FLOOR 2 -100011100 WRONG 2 -100011100 JOSTLE 2 -100011100 CREDITORS 2 -100011100 NO-NO 2 -100011100 ELECTIONS 2 -100011100 HEADS 2 -100011100 DUMP 2 -100011100 INDOSUEZ 2 -100011100 SANCTIONS 2 -100011100 PIG 2 -100011100 PRICIEST 2 -100011100 DEDUCT 2 -100011100 PROPOSALS 2 -100011100 MEDICINE 2 -100011100 BOOSTERS 2 -100011100 SHIPS 2 -100011100 SATELLITES 2 -100011100 MEOW 2 -100011100 VACCINE 2 -100011100 Robot-70s 2 -100011100 NUMBER 2 -100011100 FACING 2 -100011100 TREND 2 -100011100 MICROWAVE 2 -100011100 RUNNING 2 -100011100 EASY 2 -100011100 BEQUEST 2 -100011100 APPLIANCES 2 -100011100 TARGETS 2 -100011100 GORDON 2 -100011100 PROJECT 2 -100011100 MIGRATION 2 -100011100 EXPECT 2 -100011100 LIPS 2 -100011100 CYANAMID 2 -100011100 ITEMS 2 -100011100 WEATHER 2 -100011100 CONTROLLERS 2 -100011100 NEWEST 2 -100011100 FACTS 2 -100011100 SPARRED 2 -100011100 DIRECTIONS 2 -100011100 SOURCE 2 -100011100 DEFECTIONS 2 -100011100 JANEIRO 2 -100011100 OKLAHOMA 2 -100011100 TELLER 2 -100011100 STEAK 2 -100011100 STRUGGLES 2 -100011100 SELLS 2 -100011100 EXPAND 2 -100011100 RESISTS 2 -100011100 MINISTERS 2 -100011100 TOOLS 2 -100011100 PARLIAMENT 2 -100011100 CONSULTANTS 2 -100011100 FILED 2 -100011100 EXPENSES 2 -100011100 RETIRE 2 -100011100 BREAK 2 -100011100 DEFAULTS 2 -100011100 LITERARY 2 -100011100 ALLIANCE 2 -100011100 PACKAGING 2 -100011100 Rustling 2 -100011100 BORDER 2 -100011100 BIT 2 -100011100 BUS 2 -100011100 MINUTES 2 -100011100 COLLECTING 2 -100011100 SPIRITS 2 -100011100 PANELS 2 -100011100 ARCHITECT 2 -100011100 Chimie 2 -100011100 ROUTINE 2 -100011100 Adventurer 2 -100011100 TRIP 2 -100011100 GUILT 2 -100011100 POOL 2 -100011100 RESTRICTIONS 2 -100011100 WEALTH 2 -100011100 BOARDS 2 -100011100 PAST 2 -100011100 SHOT 2 -100011100 NATIONWIDE 2 -100011100 MUSCLE 2 -100011100 CREAM 2 -100011100 MILKEN 2 -100011100 TRACKING 2 -100011100 OVERTIME 2 -100011100 CANDIDATE 2 -100011100 all-party 2 -100011100 AREA 2 -100011100 BAUDOUIN 2 -100011100 Gunfire 2 -100011100 HOLIDAYS 2 -100011100 VAST 2 -100011100 LEARNING 2 -100011100 TREES 2 -100011100 PRODUCERS 2 -100011100 APPROVAL 2 -100011100 STRUGGLE 2 -100011100 RESULT 2 -100011100 RATINGS 2 -100011100 MESSAGE 2 -100011100 WOODSIDE 2 -100011100 SLOWDOWN 2 -100011100 ADVOCATES 2 -100011100 DETAINEES 2 -100011100 APPEALED 2 -100011100 TRAIL 2 -100011100 SECRETARIES 2 -100011100 SCORECARD 2 -100011100 WOODS 2 -100011100 SAME 2 -100011100 FACTOR 2 -100011100 GRADUATES 2 -100011100 SHIFTING 2 -100011100 BORING 2 -100011100 CHIEFS 2 -100011100 HEAT 2 -100011100 BLOEDEL 2 -100011100 PATONS 2 -100011100 WIFE 2 -100011100 statement. 2 -100011100 SOYBEAN 2 -100011100 WONDER 2 -100011100 CRIME 2 -100011100 ROME 2 -100011100 WHOLESALERS 2 -100011100 SPLITS 2 -100011100 SURGERY 2 -100011100 SPLASH 2 -100011100 GRANTING 2 -100011100 WIDE 2 -100011100 DILEMMA 2 -100011100 BILBAO 2 -100011100 AGNELLI 2 -100011100 CHANNEL 2 -100011100 Bruss 2 -100011100 INMATES 2 -100011100 POST 2 -100011100 TWIST 2 -100011100 TECHNIQUE 2 -100011100 ZOSEN 2 -100011100 Breather 2 -100011100 TREATMENT 2 -100011100 ORDER 2 -100011100 POTENTIAL 2 -100011100 COLLATERAL 2 -100011100 FILE 2 -100011100 GONE 2 -100011100 TRUE 2 -100011100 ANGELES 2 -100011100 BELT 2 -100011100 MCCORMACK 2 -100011100 HOOK 2 -100011100 BAILOUT 2 -100011100 WOLF 2 -100011100 YOUTH 2 -100011100 CORPS 2 -100011100 CONTRACTORS 2 -100011100 COVER 2 -100011100 LAKES 3 -100011100 KISSINGER 3 -100011100 EXTREMISTS 3 -100011100 MAGNETICS 3 -100011100 BONE 3 -100011100 SETTLED 3 -100011100 HARMONY 3 -100011100 COURSE 3 -100011100 STANDS 3 -100011100 WIND 3 -100011100 RESPONSE 3 -100011100 STANCE 3 -100011100 AGREEMENT 3 -100011100 BEACH 3 -100011100 CONTAINERS 3 -100011100 DELIVERY 3 -100011100 Saturn-esque 3 -100011100 HEADED 3 -100011100 TYPE 3 -100011100 INTENDS 3 -100011100 CHOICE 3 -100011100 SUPPORT 3 -100011100 MOUNT 3 -100011100 RISK 3 -100011100 DEVELOPMENTS 3 -100011100 CALLS 3 -100011100 ACCORD 3 -100011100 MATHESON 3 -100011100 SENSE 3 -100011100 COUPLE 3 -100011100 PROSECUTOR 3 -100011100 WEEKEND 3 -100011100 WEXNER 3 -100011100 TUITION 3 -100011100 BARRICK 3 -100011100 HOPEFULS 3 -100011100 AUCTIONS 3 -100011100 PEPPER 3 -100011100 FIT 3 -100011100 AUSTIN 3 -100011100 INFIGHTING 3 -100011100 SIGNALS 3 -100011100 EFFORTS 3 -100011100 TURNOVER 3 -100011100 SHIFT 3 -100011100 GASP 3 -100011100 BLUES 3 -100011100 GLITTERS 3 -100011100 FOUNDATIONS 3 -100011100 CAMPAIGNS 3 -100011100 NUNN 3 -100011100 TIES 3 -100011100 SOAR 3 -100011100 WARNINGS 3 -100011100 EVENTS 3 -100011100 OATS 3 -100011100 SCRAMBLE 3 -100011100 TRUCE 3 -100011100 RISKS 3 -100011100 STUDY 3 -100011100 CATCHING 3 -100011100 sac 3 -100011100 PERK 3 -100011100 HANDICAPPED 3 -100011100 CLAIM 3 -100011100 DEPT. 3 -100011100 IMMIGRANTS 3 -100011100 APPEAL 3 -100011100 TOURISM 3 -100011100 LIQUIDE 3 -100011100 THOMPSON 3 -100011100 DRUGS 3 -100011100 WANTS 3 -100011100 RETIREES 3 -100011100 FRET 3 -100011100 RAISE 3 -100011100 GIVING 3 -100011100 SKILLS 3 -100011100 FADE 3 -100011100 PTY. 3 -100011100 PRISON 3 -100011100 SURPRISE 3 -100011100 ENTRY 3 -100011100 PHILIPPINES 3 -100011100 DATE 3 -100011100 BALANCE 3 -100011100 LOTTERIES 3 -100011100 SEARCH 3 -100011100 BEGIN 3 -100011100 LEVY 3 -100011100 PARENT 3 -100011100 INVESTIGATION 3 -100011100 LOYALTY 3 -100011100 DRIVING 3 -100011100 CRACKDOWN 3 -100011100 VIOLENCE 3 -100011100 CNV 3 -100011100 DOCUMENTS 3 -100011100 BLAMED 3 -100011100 DECISION 3 -100011100 GAMES 3 -100011100 CHOCOLATE 3 -100011100 MISSILE 3 -100011100 COLLEGES 3 -100011100 SLUMPED 3 -100011100 PLEDGED 3 -100011100 HARBOR 3 -100011100 PREPARERS 3 -100011100 MIXED 3 -100011100 DECLINE 3 -100011100 CIRCUIT 3 -100011100 DEATH 3 -100011100 SUBSIDIES 3 -100011100 LESS 3 -100011100 URBAN 3 -100011100 AFRICAN 3 -100011100 AGENDA 3 -100011100 NATIONS 3 -100011100 DENIAL 3 -100011100 FANCY 3 -100011100 KOREANS 3 -100011100 ROH 3 -100011100 BALL 3 -100011100 TRAVELED 3 -100011100 THYSELF 3 -100011100 Eaters 3 -100011100 KENNEDY 3 -100011100 CREDITO 3 -100011100 STATEMENT 3 -100011100 VIYELLA 3 -100011100 NEEDS 3 -100011100 MEMBERSHIP 3 -100011100 CONSULTING 3 -100011100 UNREST 3 -100011100 PLUNGE 3 -100011100 pre-condition 3 -100011100 MOOD 3 -100011100 LIGHTS 3 -100011100 CONDOS 3 -100011100 CITED 3 -100011100 MANIA 3 -100011100 FACT 3 -100011100 EPISODE 3 -100011100 ATTEMPTED 3 -100011100 ACTIONS 3 -100011100 VUITTON 3 -100011100 PARTICIPATION 3 -100011100 HOTTEST 3 -100011100 COMPLAINTS 3 -100011100 CLIMBED 3 -100011100 MATTER 3 -100011100 CATCH 3 -100011100 ECONOMICS 3 -100011100 BOOSTS 3 -100011100 SKIES 3 -100011100 RUSSIANS 3 -100011100 Sight 3 -100011100 STYLE 3 -100011100 GREEK 3 -100011100 BOAT 3 -100011100 CODES 3 -100011100 STRIKERS 3 -100011100 PHONES 3 -100011100 RE-ENTRY 3 -100011100 PLACE 3 -100011100 POINT 3 -100011100 REVENUE 3 -100011100 NARROWED 3 -100011100 KREMLIN 3 -100011100 COMPENSATION 3 -100011100 MEANS 3 -100011100 HIRE 3 -100011100 STAFF 3 -100011100 MIND 3 -100011100 STUFF 3 -100011100 MYSTERY 3 -100011100 HELICOPTER 3 -100011100 SCENTS 3 -100011100 QUOTAS 3 -100011100 KIDNAPPERS 4 -100011100 VICTORY 4 -100011100 ADVICE 4 -100011100 REVOLUTION 4 -100011100 LIVING 4 -100011100 EXAMPLE 4 -100011100 THING 4 -100011100 COMMITTEE 4 -100011100 RULING 4 -100011100 GAUGE 4 -100011100 BEEF 4 -100011100 NUMBERS 4 -100011100 BARBARA 4 -100011100 SECRET 4 -100011100 OFFER 4 -100011100 SPOTS 4 -100011100 DECEMBER 4 -100011100 JETS 4 -100011100 BENEFIT 4 -100011100 TABLES 4 -100011100 CENSUS 4 -100011100 EDITION 4 -100011100 CLAIMED 4 -100011100 DOLLARS 4 -100011100 OPPOSITION 4 -100011100 MEAN 4 -100011100 AROUND 4 -100011100 COLORADO 4 -100011100 VIEW 4 -100011100 ISLAND 4 -100011100 MIGUEL 4 -100011100 SUES 4 -100011100 IDEA 4 -100011100 Halon 4 -100011100 OFFERING 4 -100011100 APPEARS 4 -100011100 MAGAZINE 4 -100011100 AGENTS 4 -100011100 STRATEGIES 4 -100011100 NEST 4 -100011100 SCANDALS 4 -100011100 HIM 4 -100011100 CABINET 4 -100011100 REASON 4 -100011100 PROFILE 4 -100011100 NATION 4 -100011100 MARCHED 4 -100011100 COUP 4 -100011100 BENEDETTI 4 -100011100 APRIL 4 -100011100 SIZE 4 -100011100 DAKOTA 4 -100011100 UPDATE 4 -100011100 REBELS 4 -100011100 PLANT 4 -100011100 LIKELY 4 -100011100 FRANCHISING 4 -100011100 TESTIFIED 4 -100011100 Mediterraneo 4 -100011100 SOUNDS 4 -100011100 SCANDAL 4 -100011100 BID 4 -100011100 PARTNER 4 -100011100 DOORS 4 -100011100 PATENT 4 -100011100 TECH 4 -100011100 BEGINS 4 -100011100 MONDAY 4 -100011100 ARTISTS 4 -100011100 CHILD 4 -100011100 INQUIRY 4 -100011100 FUTURES 4 -100011100 FAMILIES 4 -100011100 VIE 4 -100011100 BORN 4 -100011100 SHIFTS 4 -100011100 AFFILIATION 4 -100011100 ACKNOWLEDGED 4 -100011100 EXPLOSION 4 -100011100 PLAY 4 -100011100 COMES 4 -100011100 SQUEEZE 4 -100011100 FUSS 4 -100011100 VOTERS 4 -100011100 SWITCH 4 -100011100 EXPENSE 4 -100011100 SAINT 4 -100011100 TROUBLES 4 -100011100 FORM 4 -100011100 WALTER 4 -100011100 AWARDS 4 -100011100 JURY 4 -100011100 TRADED 4 -100011100 WAIT 4 -100011100 Waart 4 -100011100 WORRY 4 -100011100 OFFICES 4 -100011100 QUESTION 4 -100011100 COOPERATIVE 4 -100011100 LOSE 4 -100011100 Autocamiones 4 -100011100 DEMANDS 4 -100011100 REVIEWS 4 -100011100 MATTRESS 5 -100011100 STUDIES 5 -100011100 HANOVER 5 -100011100 PROFIT 5 -100011100 ATTACKS 5 -100011100 ISSUE 5 -100011100 PIPELINES 5 -100011100 SHIP 5 -100011100 BRADY 5 -100011100 HAMPSHIRE 5 -100011100 KEY 5 -100011100 PROPOSAL 5 -100011100 DIRECTOR 5 -100011100 PHOTO 5 -100011100 KING 5 -100011100 LEFT 5 -100011100 TINTO 5 -100011100 WEEK 5 -100011100 DROUGHT 5 -100011100 THEATERS 5 -100011100 GERMANY 5 -100011100 GERMANS 5 -100011100 INTERNAL 5 -100011100 AMBROSIANO 5 -100011100 EGG 5 -100011100 WARNING 5 -100011100 PROTECTION 5 -100011100 LOOM 5 -100011100 COMMISSION 5 -100011100 PARACHUTES 5 -100011100 TELECOM 5 -100011100 GIFT 5 -100011100 TIMING 5 -100011100 CORN 5 -100011100 CAROLINA 5 -100011100 CHIP 5 -100011100 FORCE 5 -100011100 SURGE 5 -100011100 WERKE 5 -100011100 MOTOREN 5 -100011100 BABY 5 -100011100 NEGOTIATORS 5 -100011100 QUESTIONS 5 -100011100 LETTER 5 -100011100 OUSTED 5 -100011100 SAFE 5 -100011100 PROCESS 5 -100011100 COVERAGE 5 -100011100 FRANCISCO 5 -100011100 PLANE 5 -100011100 Dictator 5 -100011100 FACTORS 5 -100011100 GAME 5 -100011100 STRATEGY 5 -100011100 PROJECTS 5 -100011100 Electricidad 5 -100011100 EXPERT 5 -100011100 BOOK 5 -100011100 SUEZ 5 -100011100 FE 5 -100011100 BOOST 5 -100011100 PICK 5 -100011100 WAYS 6 -100011100 FUTURE 6 -100011100 EFFORT 6 -100011100 PROGRAMS 6 -100011100 TURMOIL 6 -100011100 DEMAND 6 -100011100 DEBT 6 -100011100 HUGO 6 -100011100 LIMITS 6 -100011100 RENTALS 6 -100011100 AIDES 6 -100011100 SEEMS 6 -100011100 COMMON 6 -100011100 CONTINUED 6 -100011100 PLANNING 6 -100011100 ADMINISTRATION 6 -100011100 PROSPECTS 6 -100011100 NICE 6 -100011100 SOON 6 -100011100 TEST 6 -100011100 WARNED 6 -100011100 RICHFIELD 6 -100011100 TABLE 6 -100011100 SURE 6 -100011100 PREPARED 6 -100011100 ARROW 6 -100011100 DECIDED 6 -100011100 SPORTS 6 -100011100 OFFICIAL 6 -100011100 JANUARY 6 -100011100 JET 6 -100011100 DEAL 6 -100011100 SUCCESS 6 -100011100 BOSS 6 -100011100 SCHWEPPES 6 -100011100 OFFERS 6 -100011100 FINANCING 6 -100011100 JOURNAL 6 -100011100 CUTBACKS 7 -100011100 RECORD 7 -100011100 HEART 7 -100011100 Recoveries 7 -100011100 LAWS 7 -100011100 FAR 7 -100011100 FIELDS 7 -100011100 TRAINING 7 -100011100 INDICTED 7 -100011100 CHANGE 7 -100011100 CLOSING 7 -100011100 Ado 7 -100011100 POLICIES 7 -100011100 FAULTED 7 -100011100 SOVIETS 7 -100011100 HAND 7 -100011100 DEDUCTIONS 7 -100011100 ROAD 7 -100011100 SHOW 7 -100011100 ESPANA 7 -100011100 CHAIRMAN 7 -100011100 MIRROR 7 -100011100 MONTH 7 -100011100 INSTRUMENTS 8 -100011100 BUSINESSES 8 -100011100 accolade 8 -100011100 AGAIN 8 -100011100 RULED 8 -100011100 REFUSED 8 -100011100 TESTS 8 -100011100 AGENCY 8 -100011100 BARNEY 8 -100011100 COUNSEL 8 -100011100 VOWED 8 -100011100 WAY 8 -100011100 DIRECTORS 8 -100011100 SHORTAGE 8 -100011100 FORCES 8 -100011100 AGENCIES 8 -100011100 WITTER 8 -100011100 PANEL 8 -100011100 WANTED 8 -100011100 TOLD 8 -100011100 END 8 -100011100 ENOUGH 8 -100011100 AFRICA 8 -100011100 PAYMENTS 8 -100011100 RUN 8 -100011100 RUSH 8 -100011100 PARK 8 -100011100 ENGLAND 8 -100011100 RETURNS 9 -100011100 FRONT 9 -100011100 APPEARED 9 -100011100 LEADER 9 -100011100 TALK 9 -100011100 OPTIONS 9 -100011100 SELLING 9 -100011100 PROFITS 9 -100011100 SOUGHT 9 -100011100 INTERSTATE 9 -100011100 USE 9 -100011100 WATER 10 -100011100 WERE 10 -100011100 CHIEF 10 -100011100 DOWN 10 -100011100 BOOKS 10 -100011100 DAYS 10 -100011100 CORPORATIONS 10 -100011100 BELGIQUE 10 -100011100 FAILED 10 -100011100 MAIL 10 -100011100 FIRED 11 -100011100 PROBLEM 11 -100011100 SAY 11 -100011100 CITIES 11 -100011100 COST 11 -100011100 TIP 11 -100011100 -Yr. 11 -100011100 BURNHAM 11 -100011100 rigueur 11 -100011100 LEADERS 11 -100011100 MUCH 12 -100011100 BATTLE 12 -100011100 FRANCE 12 -100011100 MOVED 12 -100011100 ORDERED 12 -100011100 PEABODY 12 -100011100 ISSUES 13 -100011100 KOREA 13 -100011100 HOPES 13 -100011100 ZEALAND 13 -100011100 SEEKS 13 -100011100 PRICE 14 -100011100 DEFICIT 14 -100011100 BOOM 14 -100011100 PLAN 14 -100011100 PRESIDENT 14 -100011100 SPENDING 14 -100011100 ECONOMY 15 -100011100 JERSEY 16 -100011100 LINES 16 -100011100 PENTAGON 16 -100011100 EXCHANGE 16 -100011100 NOTE 17 -100011100 EXPRESS 17 -100011100 YEAR 18 -100011100 BOARD 18 -100011100 GROWTH 18 -100011100 PARIBAS 18 -100011100 MEAT 18 -100011100 WORLD 19 -100011100 ACCOUNTS 20 -100011100 JUDGE 21 -100011100 CALLED 21 -100011100 STREET 21 -100011100 BILL 22 -100011100 BONDS 22 -100011100 ACCOUNT 23 -100011100 SENATE 24 -100011100 VOTED 24 -100011100 NAME 25 -100011100 OUT 29 -100011100 MARKET 30 -100011100 WORK 30 -100011100 VIDEO 31 -100011100 GOLD 33 -100011100 WILL 35 -100011100 JUICE 37 -100011100 COMPANY 40 -100011100 HAS 41 -100011100 DOLLAR 44 -100011100 TRADE 45 -100011100 CURRENCIES 46 -100011100 Notes. 50 -100011100 HOUSE 53 -100011100 PLANS 53 -100011100 PRICES 69 -100011100 ROLE 71 -100011100 INDEXES 81 -100011100 drawback 93 -100011100 MEMOS 113 -100011100 CHECKOFF 113 -100011100 MEATS 114 -100011100 YORK 118 -100011100 FUNDS 166 -100011100 BILLS 183 -100011100 ACCEPTANCES 184 -100011100 NEWS 189 -100011100 EURODOLLARS 190 -100011100 INTERBANK 192 -100011100 DEPOSIT 192 -100011100 LATE 201 -100011100 LYNCH 208 -100011100 SOYBEANS 234 -100011100 HOME 242 -100011100 reason 5811 -100011100 PAPER 395 -1000111010 NCEO 1 -1000111010 EMERGENCIES 1 -1000111010 PARTYING 1 -1000111010 goonery 1 -1000111010 third-parties 1 -1000111010 mono-analysis 1 -1000111010 polytechnic 1 -1000111010 REWARDED 1 -1000111010 GAULT 1 -1000111010 PAYERS 1 -1000111010 primary-market 1 -1000111010 ELLIN 1 -1000111010 mid-sermon 1 -1000111010 HYGIENE 1 -1000111010 SAVORS 1 -1000111010 45-knot 1 -1000111010 NET-PENS 1 -1000111010 PATRONS 1 -1000111010 microswitch 1 -1000111010 surveyers 1 -1000111010 APPARENTLY 1 -1000111010 WATCHERS 1 -1000111010 semi-vacuum 1 -1000111010 debt-issuing 1 -1000111010 POLLS. 1 -1000111010 COATTAILS 1 -1000111010 GUARANTEES 1 -1000111010 NOTED 1 -1000111010 PERELMAN 1 -1000111010 scalds 1 -1000111010 VOYAGE 1 -1000111010 Chetyrye 1 -1000111010 MEGAMERGERS 1 -1000111010 national-over-the 1 -1000111010 CUSTODY 1 -1000111010 SLIPPERS 1 -1000111010 outdoors-books 1 -1000111010 Velika-Kladusa 1 -1000111010 JVT 1 -1000111010 LESSON 1 -1000111010 MIKE 1 -1000111010 STAKES 1 -1000111010 DIVIDENDS 1 -1000111010 SOURCES 1 -1000111010 REMOVALS 1 -1000111010 button-pushing 1 -1000111010 HAYASHIBARA 1 -1000111010 KIRK 1 -1000111010 DOGS 1 -1000111010 NOMINEES 1 -1000111010 ADDICTS 1 -1000111010 BUST 1 -1000111010 LITERACY 1 -1000111010 creepers 1 -1000111010 anti-ballet 1 -1000111010 PERFUME 1 -1000111010 missimpression 1 -1000111010 sensitization 1 -1000111010 SYRUP 1 -1000111010 TENDERED 1 -1000111010 FREEDOM 1 -1000111010 COOLERS 1 -1000111010 rhinovirus 1 -1000111010 sophisms 1 -1000111010 EXODUS 1 -1000111010 MOVIEGOERS 1 -1000111010 FAKERY 1 -1000111010 SUPERSTARS 1 -1000111010 Gahden 1 -1000111010 near-gridlock 1 -1000111010 AIRS 1 -1000111010 SEEDS 1 -1000111010 AIRES 1 -1000111010 inner-cities 1 -1000111010 SWAPS 1 -1000111010 INTRIGUE 1 -1000111010 prolapse 1 -1000111010 PARTICIPANTS 1 -1000111010 Hodeidah 1 -1000111010 scirocco 1 -1000111010 masseria 1 -1000111010 BUYBACK 1 -1000111010 traitor-spies 1 -1000111010 better-countries 1 -1000111010 PC2 1 -1000111010 small-mindedness 1 -1000111010 SCHLANG 1 -1000111010 MONIKER 1 -1000111010 CHIC 1 -1000111010 tom-tom 1 -1000111010 SUTTON 1 -1000111010 BACKER 1 -1000111010 pinstripers 1 -1000111010 STUFFER 1 -1000111010 Esperian 1 -1000111010 Bagdads 1 -1000111010 counterforces 1 -1000111010 finfish 1 -1000111010 neo-Leninism 1 -1000111010 GOOFY 1 -1000111010 pseudo-government 1 -1000111010 in-set 1 -1000111010 collection-building 1 -1000111010 883,281 1 -1000111010 Dubrovnik 1 -1000111010 Kuybyshev 1 -1000111010 COUNSELS 1 -1000111010 giant-killer 1 -1000111010 PREISS 1 -1000111010 priviso 1 -1000111010 STYLING 1 -1000111010 MISSILES 1 -1000111010 plywood-pounding 1 -1000111010 coliseums 1 -1000111010 BASEBALL 1 -1000111010 Pecksniffianism 1 -1000111010 QUANDARIES 1 -1000111010 Mufid-Zade 1 -1000111010 PENS 1 -1000111010 PERKS 1 -1000111010 TAINTS 1 -1000111010 pitons 1 -1000111010 weatherstripping 1 -1000111010 departure-gate 1 -1000111010 Kennedy-mystique 1 -1000111010 COUNTS 1 -1000111010 provitamin 1 -1000111010 BAKHASH 1 -1000111010 QUIZ 1 -1000111010 pseudo-scientists 1 -1000111010 mega-acquisitions 1 -1000111010 MURDOCH 1 -1000111010 LENSES 1 -1000111010 WARNS 1 -1000111010 estrangment 1 -1000111010 rumour 1 -1000111010 Strydom 1 -1000111010 divertissements 1 -1000111010 1639 1 -1000111010 Mito 2 -1000111010 offerers 2 -1000111010 pacifist-minded 2 -1000111010 1619 2 -1000111010 SAMPLING 2 -1000111010 Eurythmics 2 -1000111010 Watseka 2 -1000111010 zesty 2 -1000111010 Brokdorf 2 -1000111010 one-acters 2 -1000111010 Moraga 2 -1000111010 Econoclast 2 -1000111010 Emilia 2 -1000111010 punitives 2 -1000111010 LaFox 2 -1000111010 aerospace/electronics 2 -1000111010 Vergennes 2 -1000111010 aerosal 2 -1000111010 durian 2 -1000111010 remanding 2 -1000111010 Rexdale 2 -1000111010 seance 2 -1000111010 Pampa 2 -1000111010 1733 2 -1000111010 theater-TV 2 -1000111010 promise-to-agree 2 -1000111010 C-Line 2 -1000111010 crime-plagued 2 -1000111010 WY-212m 2 -1000111010 Oroville 2 -1000111010 1786 2 -1000111010 cultish 2 -1000111010 Rosenhayn 2 -1000111010 Willows 2 -1000111010 Ichon 2 -1000111010 Springville 2 -1000111010 Tontitown 2 -1000111010 maintenance-free 2 -1000111010 pre-Hispanic 2 -1000111010 Topton 2 -1000111010 Athlona 2 -1000111010 off-chance 2 -1000111010 Sayreville 3 -1000111010 Cookeville 3 -1000111010 Alba 3 -1000111010 Guasare 3 -1000111010 free-mail 3 -1000111010 Bernardsville 3 -1000111010 GA22V10 3 -1000111010 Deauville 3 -1000111010 rumours 3 -1000111010 Glastonbury 3 -1000111010 straightaway 3 -1000111010 Greenbrae 3 -1000111010 Moorpark 3 -1000111010 Manhasset 3 -1000111010 Columbiana 3 -1000111010 good-cop 3 -1000111010 PC1 3 -1000111010 Forestville 3 -1000111010 Edina 3 -1000111010 Schaumberg 3 -1000111010 Hazlet 3 -1000111010 Gloversville 3 -1000111010 macaw 4 -1000111010 Sowetan 4 -1000111010 turreted 4 -1000111010 Ghazni 4 -1000111010 Vestal 4 -1000111010 Midland-Odessa 4 -1000111010 snowboarding 4 -1000111010 13-1 4 -1000111010 Burkburnett 4 -1000111010 megafirms 5 -1000111010 Tullnerfeld 5 -1000111010 Changwon 6 -1000111010 Uniondale 6 -1000111010 Waynesville 7 -1000111010 Treviso 7 -1000111010 Mequon 7 -1000111010 Bexley 7 -1000111010 ICAHN 7 -1000111010 Stanleytown 9 -1000111010 actuality 13 -1000111010 Hicksville 45 -1000111010 retrospect 118 -1000111010 essence 245 -1000111010 fact 7357 -1000111010 particular 2410 -1000111011 ALLSOPP 1 -1000111011 PAULO 1 -1000111011 COLONY 1 -1000111011 Taska 1 -1000111011 REICH 1 -1000111011 HEUSEN 1 -1000111011 Seleebi 1 -1000111011 Tijeras 1 -1000111011 Sharpless 1 -1000111011 REALIZATION 1 -1000111011 AdWatch 1 -1000111011 Kozaki 1 -1000111011 STING 1 -1000111011 FABER 1 -1000111011 Teramoto 1 -1000111011 Morawiecki 1 -1000111011 last-hired 1 -1000111011 constrast 1 -1000111011 METROPOLITAIN 1 -1000111011 49-0 1 -1000111011 Sadorus 1 -1000111011 epee 1 -1000111011 VERNON 1 -1000111011 CHIPPER 1 -1000111011 MISUNDERSTOOD 1 -1000111011 Aftermath 1 -1000111011 mid-trial 1 -1000111011 comparsion 1 -1000111011 Mayes 1 -1000111011 Taechon 1 -1000111011 Mayanga 1 -1000111011 Leikina 1 -1000111011 1397 1 -1000111011 SHINES 1 -1000111011 Hyodo 1 -1000111011 Horstkotte 1 -1000111011 Alran 1 -1000111011 Inaba 1 -1000111011 Sternfels 1 -1000111011 Fjell 1 -1000111011 Asiasat 1 -1000111011 geoscientists 1 -1000111011 o.s.f.a. 1 -1000111011 BLIMP 1 -1000111011 PESCARMONA 1 -1000111011 TRIALS 1 -1000111011 Poyotte 1 -1000111011 SPEED. 1 -1000111011 Caflish 1 -1000111011 LeTourneau 1 -1000111011 Workbench 1 -1000111011 CLICKS 1 -1000111011 Kishida 1 -1000111011 Kogure 1 -1000111011 1347 1 -1000111011 nonconvertibility 1 -1000111011 Zakuski 1 -1000111011 Norstad 1 -1000111011 Saddik 1 -1000111011 nochi 1 -1000111011 Camcar 1 -1000111011 Bradwell 1 -1000111011 Touche-Ross 1 -1000111011 SITTERS 1 -1000111011 MEETS 1 -1000111011 EXPLORATIONS 1 -1000111011 ANALYZERS 1 -1000111011 WQED 1 -1000111011 RICA 1 -1000111011 Motamen 1 -1000111011 HUGOTON 1 -1000111011 163-148 1 -1000111011 Brezhnevs 1 -1000111011 Chambellan 1 -1000111011 Southbridge 1 -1000111011 BURNETT 1 -1000111011 SURRENDER 1 -1000111011 Pingali 1 -1000111011 Znanie 1 -1000111011 WIGGLY 1 -1000111011 Ohba 1 -1000111011 Agthor 1 -1000111011 mid-1977 1 -1000111011 SLATED 1 -1000111011 Naruse 1 -1000111011 al-Zaghmory 1 -1000111011 POLYMERS 1 -1000111011 Ngula 1 -1000111011 Eddystone 1 -1000111011 Catsounis 1 -1000111011 CROSSED 1 -1000111011 Netromycin 1 -1000111011 Halaby 1 -1000111011 HANDELSBANK 1 -1000111011 Fujireibo 1 -1000111011 WDRC-FM 1 -1000111011 Sinan 1 -1000111011 EUSKERA 1 -1000111011 MOBILIZE 1 -1000111011 3.4445 1 -1000111011 2.8040 1 -1000111011 2.7652 1 -1000111011 Rostov 1 -1000111011 1951-84 1 -1000111011 TRIUMPHS 1 -1000111011 PACKING 1 -1000111011 Ishikura 1 -1000111011 Floboda 1 -1000111011 Questionnaire 1 -1000111011 Kenebo 1 -1000111011 3/4-length 1 -1000111011 order-splitting 1 -1000111011 MCADAMS 1 -1000111011 E&N 1 -1000111011 Fly-by-Nights 1 -1000111011 SOLUTIONS 1 -1000111011 questa 1 -1000111011 LINZ 1 -1000111011 Mairinque 1 -1000111011 sandblasters 1 -1000111011 BERANEK/NEWMAN 1 -1000111011 Pequiven 1 -1000111011 Oporto 1 -1000111011 Chingomo 1 -1000111011 GARMENT 1 -1000111011 QUAQUIL 1 -1000111011 DIVERS 1 -1000111011 Khasbulatov 1 -1000111011 SUSPICION 1 -1000111011 Pairing 1 -1000111011 Tsushinki 1 -1000111011 1950-52 1 -1000111011 Sait 1 -1000111011 medicant 1 -1000111011 GOLDWYN 1 -1000111011 HAMLYN 1 -1000111011 FLAIL 1 -1000111011 Fauchon 1 -1000111011 HUMBOLDT 1 -1000111011 Procter-speak 1 -1000111011 HURTING 1 -1000111011 Respighi 1 -1000111011 Pavik 1 -1000111011 FUNDED 1 -1000111011 major-leaguers 1 -1000111011 CREDIOP 1 -1000111011 1,324 1 -1000111011 lawn-grasses 1 -1000111011 jove 1 -1000111011 Puawaranukroh 1 -1000111011 Panich 1 -1000111011 pre-arrangement 1 -1000111011 Boonpong 1 -1000111011 NURSERY 1 -1000111011 Haidari 1 -1000111011 Vitoria 1 -1000111011 Roseburg 1 -1000111011 cabinetwork 1 -1000111011 Tonelli 1 -1000111011 MOLECULAR 1 -1000111011 nonappealable 1 -1000111011 mis-markdowns 1 -1000111011 Fujimura 1 -1000111011 Sensuntepeque 1 -1000111011 RIDGE 1 -1000111011 Authoritarianism 1 -1000111011 Ruffles 1 -1000111011 Hammarkvist 1 -1000111011 OEHMEN 1 -1000111011 reality-land 1 -1000111011 Trikha 1 -1000111011 LISTINGS 1 -1000111011 Luxco 1 -1000111011 Aiglemont 1 -1000111011 Nippon-Otis 1 -1000111011 1470 1 -1000111011 1254 1 -1000111011 Fukuzawa 1 -1000111011 HENNESSY 1 -1000111011 DER 1 -1000111011 LAYERS 1 -1000111011 Eupaforice 1 -1000111011 Argiris 1 -1000111011 Kuwamura 1 -1000111011 Ariane-space 1 -1000111011 Melles 1 -1000111011 Villa-Lobos 1 -1000111011 Upsala 1 -1000111011 COPIES 1 -1000111011 SLEIGH 1 -1000111011 TIGHTENING 1 -1000111011 Spirituals 1 -1000111011 Summerville 1 -1000111011 VIEWERS 1 -1000111011 Nodland 1 -1000111011 Gruprensa 1 -1000111011 WPBT-TV 1 -1000111011 WOLFE 1 -1000111011 Osuuspankkien 1 -1000111011 22-12 1 -1000111011 1965-66 1 -1000111011 JCPenney 1 -1000111011 Admarketing 1 -1000111011 Ghosh 1 -1000111011 I.N.D. 1 -1000111011 ERUPT 1 -1000111011 Tamapua 1 -1000111011 277-187 1 -1000111011 Calumus 1 -1000111011 Alawites 1 -1000111011 Giardini/Russell 1 -1000111011 singer-actors 1 -1000111011 Ishizaki 1 -1000111011 Groupama 1 -1000111011 Laiq 1 -1000111011 160.0 1 -1000111011 Gauguins 1 -1000111011 1,411.0 1 -1000111011 Diwan 1 -1000111011 Datta 1 -1000111011 Techcorps 1 -1000111011 CHEAP 1 -1000111011 Rahadjo 1 -1000111011 Sudomo 1 -1000111011 Famagusta 1 -1000111011 128,540 1 -1000111011 142,426 1 -1000111011 93,463 1 -1000111011 470,036 1 -1000111011 147,625 1 -1000111011 322,411 1 -1000111011 154,473 1 -1000111011 18,069 1 -1000111011 12,213 1 -1000111011 Paris-Match 1 -1000111011 Emptiness-Sinai 1 -1000111011 STEEN 1 -1000111011 1973-1981 1 -1000111011 Annapurna 1 -1000111011 Iwatare 1 -1000111011 20,403 1 -1000111011 Fati 1 -1000111011 ad-speak 1 -1000111011 +13.3 1 -1000111011 1513 1 -1000111011 Ehayatizadeh 1 -1000111011 Eurogrip 1 -1000111011 SWIM 1 -1000111011 Fairplay 2 -1000111011 Kaiserslautern 2 -1000111011 1695 2 -1000111011 Zunz 2 -1000111011 automotives 2 -1000111011 Nubia 2 -1000111011 Arteries 2 -1000111011 Sirota 2 -1000111011 LINGUS 2 -1000111011 FIND/SVP 2 -1000111011 ODEON 2 -1000111011 Avenel 2 -1000111011 Asheboro 2 -1000111011 CONVERTING 2 -1000111011 Ivrea 2 -1000111011 Brusheski 2 -1000111011 Nampo 2 -1000111011 ELECTRO-OPTICS 2 -1000111011 Vleifontein 2 -1000111011 mid-1978 3 -1000111011 BECKMAN 3 -1000111011 1634 3 -1000111011 Nacogdoches 3 -1000111011 Newnan 3 -1000111011 1687 3 -1000111011 Rockleigh 4 -1000111011 contrast 2268 -1000111011 addition 8360 -100011110 182.20 1 -100011110 205.55 1 -100011110 Benedito 1 -100011110 205.95 1 -100011110 217.12 1 -100011110 procedurals 1 -100011110 207.51 1 -100011110 206.76 1 -100011110 208.14 1 -100011110 210.10 1 -100011110 176.21 1 -100011110 jiggery 1 -100011110 160.98 1 -100011110 170.10 1 -100011110 190.14 1 -100011110 poohbah 1 -100011110 184.27 1 -100011110 180.95 1 -100011110 risk-tolerance 1 -100011110 181.96 1 -100011110 188.06 1 -100011110 188.66 1 -100011110 213.79 1 -100011110 212.96 1 -100011110 212.19 1 -100011110 215.80 1 -100011110 202.23 1 -100011110 204.13 1 -100011110 210.76 1 -100011110 209.87 1 -100011110 Jacy 1 -100011110 205.01 1 -100011110 207.68 1 -100011110 176.98 1 -100011110 177.51 1 -100011110 210.59 1 -100011110 211.06 1 -100011110 209.82 1 -100011110 208.45 1 -100011110 208.75 1 -100011110 204.17 1 -100011110 204.00 1 -100011110 200.71 1 -100011110 206.24 1 -100011110 204.57 1 -100011110 205.15 1 -100011110 200.92 1 -100011110 201.22 1 -100011110 199.91 1 -100011110 200.48 1 -100011110 200.39 1 -100011110 181.84 1 -100011110 184.39 1 -100011110 184.98 1 -100011110 recruiters. 1 -100011110 187.47 1 -100011110 183.62 1 -100011110 216.95 1 -100011110 178.58 1 -100011110 179.71 1 -100011110 179.05 1 -100011110 196.18 1 -100011110 195.23 1 -100011110 196.95 1 -100011110 199.74 1 -100011110 196.83 1 -100011110 183.08 1 -100011110 198.44 1 -100011110 195.41 1 -100011110 196.06 1 -100011110 196.60 1 -100011110 200.57 1 -100011110 198.49 1 -100011110 director-elect 1 -100011110 200.75 1 -100011110 198.61 1 -100011110 197.61 1 -100011110 197.90 1 -100011110 186.88 1 -100011110 187.59 1 -100011110 187.23 1 -100011110 186.70 1 -100011110 186.34 1 -100011110 185.22 1 -100011110 188.30 1 -100011110 213.84 1 -100011110 214.47 1 -100011110 211.94 1 -100011110 196.17 1 -100011110 213.90 1 -100011110 218.45 1 -100011110 220.23 1 -100011110 211.48 1 -100011110 197.60 1 -100011110 213.09 1 -100011110 195.01 1 -100011110 212.40 1 -100011110 221.56 1 -100011110 212.23 1 -100011110 226.16 1 -100011110 218.39 1 -100011110 227.31 1 -100011110 227.49 1 -100011110 221.50 1 -100011110 producer/director/writer 1 -100011110 223.40 1 -100011110 224.72 1 -100011110 227.08 1 -100011110 225.99 1 -100011110 221.96 1 -100011110 222.02 1 -100011110 220.98 1 -100011110 220.41 1 -100011110 219.14 1 -100011110 221.38 1 -100011110 203.02 1 -100011110 203.82 1 -100011110 209.29 1 -100011110 205.61 1 -100011110 204.05 1 -100011110 204.28 1 -100011110 203.59 1 -100011110 206.30 1 -100011110 198.99 1 -100011110 199.33 1 -100011110 200.20 1 -100011110 191.39 1 -100011110 192.71 1 -100011110 213.32 1 -100011110 193.69 1 -100011110 220.06 1 -100011110 217.07 1 -100011110 198.70 1 -100011110 204.34 1 -100011110 208.72 1 -100011110 214.01 1 -100011110 209.52 1 -100011110 198.53 1 -100011110 201.06 1 -100011110 201.75 1 -100011110 203.77 1 -100011110 194.61 1 -100011110 Schokoladenwerke 1 -100011110 198.64 1 -100011110 203.06 1 -100011110 201.52 1 -100011110 202.29 1 -100011110 203.25 1 -100011110 216.43 1 -100011110 207.44 1 -100011110 203.07 1 -100011110 174.73 1 -100011110 178.46 1 -100011110 173.19 1 -100011110 173.72 1 -100011110 173.13 1 -100011110 176.74 1 -100011110 221.04 1 -100011110 222.65 1 -100011110 220.81 1 -100011110 210.44 1 -100011110 219.08 1 -100011110 206.01 1 -100011110 216.37 1 -100011110 213.67 1 -100011110 225.36 1 -100011110 220.00 1 -100011110 222.82 1 -100011110 224.32 1 -100011110 195.29 1 -100011110 195.71 1 -100011110 194.17 1 -100011110 217.47 1 -100011110 199.32 1 -100011110 199.86 1 -100011110 211.83 1 -100011110 209.70 1 -100011110 208.03 1 -100011110 205.78 1 -100011110 209.47 1 -100011110 210.67 1 -100011110 217.76 1 -100011110 212.06 1 -100011110 185.04 1 -100011110 167.79 1 -100011110 169.57 1 -100011110 169.04 1 -100011110 184.86 1 -100011110 167.73 1 -100011110 A-S 1 -100011110 167.08 1 -100011110 218.94 1 -100011110 168.39 1 -100011110 169.22 1 -100011110 170.40 1 -100011110 184.09 1 -100011110 171.17 1 -100011110 170.82 1 -100011110 168.80 1 -100011110 168.86 1 -100011110 217.05 1 -100011110 169.69 1 -100011110 184.33 1 -100011110 170.93 1 -100011110 178.34 1 -100011110 177.93 1 -100011110 179.11 1 -100011110 184.15 1 -100011110 215.67 1 -100011110 213.34 1 -100011110 188.77 1 -100011110 167.97 1 -100011110 168.03 1 -100011110 186.17 1 -100011110 216.80 1 -100011110 219.82 1 -100011110 170.87 1 -100011110 170.34 1 -100011110 219.32 1 -100011110 174.43 1 -100011110 178.17 1 -100011110 215.42 1 -100011110 215.61 1 -100011110 215.54 1 -100011110 172.95 1 -100011110 215.98 1 -100011110 173.07 1 -100011110 173.01 1 -100011110 editor. 1 -100011110 214.10 1 -100011110 177.22 1 -100011110 215.92 1 -100011110 statments 1 -100011110 180.71 1 -100011110 182.73 1 -100011110 168.56 1 -100011110 217.93 1 -100011110 175.14 1 -100011110 217.24 1 -100011110 director-nuclear 1 -100011110 169.87 1 -100011110 167.26 1 -100011110 218.62 1 -100011110 183.03 1 -100011110 174.55 1 -100011110 182.61 1 -100011110 171.47 1 -100011110 214.66 1 -100011110 220.45 1 -100011110 185.34 1 -100011110 176.56 1 -100011110 recuiter 1 -100011110 219.00 1 -100011110 220.32 1 -100011110 179.65 1 -100011110 217.18 1 -100011110 216.17 1 -100011110 oficer 1 -100011110 220.20 1 -100011110 175.50 1 -100011110 184.80 1 -100011110 offier 1 -100011110 176.86 1 -100011110 218.69 1 -100011110 218.81 1 -100011110 218.18 1 -100011110 175.62 1 -100011110 217.68 1 -100011110 177.69 1 -100011110 176.62 1 -100011110 221.20 1 -100011110 219.50 1 -100011110 178.99 1 -100011110 221.64 1 -100011110 182.91 1 -100011110 219.13 1 -100011110 181.66 1 -100011110 181.90 1 -100011110 181.07 1 -100011110 218.31 1 -100011110 178.40 1 -100011110 180.83 1 -100011110 215.17 1 -100011110 181.31 1 -100011110 182.25 1 -100011110 213.91 1 -100011110 181.37 1 -100011110 bogymen 1 -100011110 180.60 1 -100011110 219.19 1 -100011110 216.93 1 -100011110 215.48 1 -100011110 successfully. 1 -100011110 182.31 1 -100011110 176.92 2 -100011110 204.54 2 -100011110 Exell 2 -100011110 218.97 2 -100011110 182.49 2 -100011110 officer. 2 -100011110 218.37 2 -100011110 217.30 2 -100011110 224.26 2 -100011110 216.30 2 -100011110 184.57 2 -100011110 217.56 2 -100011110 199.92 2 -100011110 188.42 2 -100011110 213.78 2 -100011110 196.86 2 -100011110 179.35 2 -100011110 180.30 2 -100011110 183.56 2 -100011110 205.49 2 -100011110 179.82 2 -100011110 169.51 2 -100011110 182.08 2 -100011110 176.68 2 -100011110 169.16 2 -100011110 184.03 2 -100011110 179.47 2 -100011110 168.74 2 -100011110 180.42 2 -100011110 182.67 2 -100011110 211.31 2 -100011110 182.43 2 -100011110 185.57 2 -100011110 204.11 2 -100011110 182.37 2 -100011110 186.05 2 -100011110 185.75 2 -100011110 186.58 2 -100011110 183.74 2 -100011110 177.04 2 -100011110 182.14 2 -100011110 186.11 2 -100011110 177.99 2 -100011110 179.59 2 -100011110 186.28 2 -100011110 209.64 2 -100011110 175.44 2 -100011110 180.00 2 -100011110 175.73 2 -100011110 178.05 2 -100011110 217.74 2 -100011110 212.17 2 -100011110 201.04 2 -100011110 209.98 2 -100011110 178.76 2 -100011110 204.97 2 -100011110 221.33 2 -100011110 207.22 3 -100011110 184.92 3 -100011110 178.11 3 -100011110 201.12 3 -100011110 220.12 3 -100011110 181.54 3 -100011110 206.36 3 -100011110 170.16 3 -100011110 202.10 3 -100011110 201.70 3 -100011110 205.90 3 -100011110 183.68 3 -100011110 178.52 3 -100011110 178.64 3 -100011110 178.88 3 -100011110 177.45 3 -100011110 179.94 4 -100011110 216.55 4 -100011110 177.81 4 -100011110 181.72 5 -100011110 180.18 5 -100011110 officer 16304 -100011110 177.34 5 -1000111110 Jamiat-e-Islami 1 -1000111110 regionalists 1 -1000111110 Watford 1 -1000111110 Serponder 1 -1000111110 Very-high-frequency 1 -1000111110 Reinvigoration 1 -1000111110 bull-baiting 1 -1000111110 1,1,1-trichloethane 1 -1000111110 big-marquee 1 -1000111110 Ku-wait 1 -1000111110 attracters 1 -1000111110 breast-beating 1 -1000111110 vacuousness 1 -1000111110 DeHypnotherapy 1 -1000111110 psychohistorians 1 -1000111110 horselaughs 1 -1000111110 nighties 1 -1000111110 big-government-bashing 1 -1000111110 Zlatni 1 -1000111110 housecoat 1 -1000111110 two-a-day 1 -1000111110 aminoethylpiperazine 1 -1000111110 Utahns 1 -1000111110 1,885 1 -1000111110 Fracture 1 -1000111110 Softkins 1 -1000111110 possibles 1 -1000111110 cookies-in-ice-cream 1 -1000111110 Chrissakes 1 -1000111110 DEAD-WEIGHT 1 -1000111110 ethlyene 1 -1000111110 Godfathers 1 -1000111110 Animex 1 -1000111110 9,268,482 1 -1000111110 conformation 1 -1000111110 670,659 1 -1000111110 on-track 1 -1000111110 cotinine 1 -1000111110 alecky 1 -1000111110 multi-purpose-vehicle 1 -1000111110 Stalinolatry 1 -1000111110 caretaking 1 -1000111110 chin-ups 1 -1000111110 restauraunt 1 -1000111110 IRSA 1 -1000111110 WBLS-FM 1 -1000111110 celiprolol 1 -1000111110 cachepots 1 -1000111110 legibility 1 -1000111110 snowplowing 1 -1000111110 hedgerow 1 -1000111110 brassieres 1 -1000111110 pollinators 1 -1000111110 Ebonite 1 -1000111110 bone-jarring 1 -1000111110 mini-nukes 1 -1000111110 Seshego 1 -1000111110 steets 1 -1000111110 job-switchers 1 -1000111110 non-destination 1 -1000111110 WBTV 1 -1000111110 Parkinsonism 1 -1000111110 shorter-maturities 1 -1000111110 European-looking 1 -1000111110 Rustler 1 -1000111110 ephedrine 1 -1000111110 self-gratification 1 -1000111110 Grandparenting 1 -1000111110 Tooltown 1 -1000111110 Interpool 1 -1000111110 Leeway 1 -1000111110 WCBS-FM 1 -1000111110 M/ACom 1 -1000111110 RHONE 1 -1000111110 non-cooks 1 -1000111110 examle 1 -1000111110 vinyl-acetate 1 -1000111110 1,842 1 -1000111110 63,500 1 -1000111110 slipups 1 -1000111110 schmuck 1 -1000111110 WorldPaper 1 -1000111110 Hovedstedt-Regionens 1 -1000111110 MIGA. 1 -1000111110 co-habitation 1 -1000111110 F.T.O. 1 -1000111110 under-accrual 1 -1000111110 cognoscent 1 -1000111110 Asade-Ame 1 -1000111110 fuuebsies 1 -1000111110 pirogis 1 -1000111110 gold-crazy 1 -1000111110 ozones 1 -1000111110 nonpublished 1 -1000111110 phenylketonuria 1 -1000111110 Furlanetto 1 -1000111110 middle-frequencies 1 -1000111110 33.499 1 -1000111110 Lefties 1 -1000111110 Barclay-card 1 -1000111110 lecher 1 -1000111110 Overlord 1 -1000111110 press-ganged 1 -1000111110 mischeviousness 1 -1000111110 HealthWeek 1 -1000111110 Warner-Lambert/Parke-Davis 1 -1000111110 186,385 1 -1000111110 Elisaveta 1 -1000111110 Euro-consumers 1 -1000111110 pro-Slavism 1 -1000111110 collateral-backed 1 -1000111110 mordidas 1 -1000111110 IMIGest 1 -1000111110 3,674,000 1 -1000111110 driblets 1 -1000111110 B.M.W. 1 -1000111110 poetess 1 -1000111110 non-crimes 1 -1000111110 decencies 1 -1000111110 Panadol 1 -1000111110 Spetsialnoye 1 -1000111110 Andy-mania 1 -1000111110 advanced-passive 1 -1000111110 hepatitis-C 1 -1000111110 twenty-seven 1 -1000111110 cross-regulation 1 -1000111110 Scaasi 1 -1000111110 arbitration. 1 -1000111110 hanky 1 -1000111110 Adjustco 1 -1000111110 Hoguet 1 -1000111110 Klansman 1 -1000111110 Dreyfusards 1 -1000111110 Cortizone-5 1 -1000111110 Coutinho 1 -1000111110 Ilpap 1 -1000111110 100-foot-deep 1 -1000111110 step-fathers 1 -1000111110 purposess 1 -1000111110 Recyclers 1 -1000111110 later-generation 1 -1000111110 wedge-driving 1 -1000111110 counterbidder 1 -1000111110 Xywrite 1 -1000111110 diazepam 1 -1000111110 KCOW 1 -1000111110 high-skilled 1 -1000111110 employeees 1 -1000111110 Trumbell 2 -1000111110 TKTS 2 -1000111110 Shroeder 2 -1000111110 ServantCor 2 -1000111110 cyclists 2 -1000111110 DARTS 2 -1000111110 Nubians 2 -1000111110 Hardhats 2 -1000111110 millenia 2 -1000111110 daredevils 2 -1000111110 Resource-Based 2 -1000111110 piperazine 2 -1000111110 Wakhi 2 -1000111110 internal-financing 2 -1000111110 wintergreen 2 -1000111110 5-year-olds 2 -1000111110 Helpers 2 -1000111110 SunSense 2 -1000111110 Reunies 3 -1000111110 Humanity 3 -1000111110 Super-Summit 3 -1000111110 pseudorabies 3 -1000111110 Bucaram 3 -1000111110 tat 4 -1000111110 Itself 5 -1000111110 Prairiefire 7 -1000111110 Institucional 16 -1000111110 starters 104 -1000111110 example 9388 -1000111110 instance 3880 -1000111111 uncivility 1 -1000111111 kwaZulu 1 -1000111111 1659.9 1 -1000111111 235.59 1 -1000111111 Terryville 1 -1000111111 Pittstown 1 -1000111111 Metrocorp. 1 -1000111111 1.6667 1 -1000111111 Viareggio 1 -1000111111 1694.4 1 -1000111111 medium-and-long-term 1 -1000111111 Lowestoft 1 -1000111111 Marguerites 1 -1000111111 dynamic-random 1 -1000111111 INET 1 -1000111111 Lobelia 1 -1000111111 LachowskyZucker 1 -1000111111 pomology 1 -1000111111 transportables 1 -1000111111 xanthophyll 1 -1000111111 114,872 1 -1000111111 538,545 1 -1000111111 108.45 1 -1000111111 CEDICE 1 -1000111111 Goias 1 -1000111111 177,084 1 -1000111111 413,500 1 -1000111111 39,264 1 -1000111111 292-102 1 -1000111111 Permanency 1 -1000111111 radio-carbon 1 -1000111111 ecdysiasts 1 -1000111111 Heightstown 1 -1000111111 1306.97 1 -1000111111 Eustacio 1 -1000111111 wrist-thick 1 -1000111111 Enumclaw 1 -1000111111 1975-77 1 -1000111111 Naroda 1 -1000111111 Okayama-Ken 1 -1000111111 connectedness 1 -1000111111 portentousness 1 -1000111111 Derna 1 -1000111111 Kadison 1 -1000111111 215-201 1 -1000111111 5:04 1 -1000111111 1313.42 1 -1000111111 NACPAC 1 -1000111111 Schnader 1 -1000111111 53-46 1 -1000111111 existentialism 1 -1000111111 Burson-Marsteller/Europe 1 -1000111111 103.674 1 -1000111111 Kalashnikovization 1 -1000111111 supermakets 1 -1000111111 Genji 1 -1000111111 116.2643581 1 -1000111111 tele-fishing 1 -1000111111 Glamis 1 -1000111111 RosenShontz 1 -1000111111 SEP 1 -1000111111 Bernkopf 1 -1000111111 temporary-employee 1 -1000111111 L-Serine 1 -1000111111 CRVS 1 -1000111111 Solingen 1 -1000111111 atrazine 1 -1000111111 1987-from 1 -1000111111 1120.70 1 -1000111111 dollar-cost-averaging 1 -1000111111 229-182 1 -1000111111 pull-tabs 1 -1000111111 1598.0 1 -1000111111 1978-1981 1 -1000111111 Shienfeld 1 -1000111111 suspension. 1 -1000111111 1153.17 1 -1000111111 SLONE 1 -1000111111 Viry-Chatillon 1 -1000111111 Norrkoping 1 -1000111111 manioc 1 -1000111111 DatagraphiX 1 -1000111111 Granbury 1 -1000111111 speechlessness 1 -1000111111 Lungenau 1 -1000111111 Lungen 1 -1000111111 14-2 1 -1000111111 Conjugated 1 -1000111111 bati 1 -1000111111 Drekeniwai 1 -1000111111 Gent 1 -1000111111 Oct.31 1 -1000111111 Ingres 1 -1000111111 preimum-priced 1 -1000111111 Austerlitz 1 -1000111111 dolor 1 -1000111111 20513.65 1 -1000111111 cornsilk 1 -1000111111 Blumenthalism 1 -1000111111 Jiffylube 1 -1000111111 firelight 1 -1000111111 prosecution-basher 1 -1000111111 magnetization-demagnetization 1 -1000111111 Bendit 1 -1000111111 49-46 1 -1000111111 3.3995 1 -1000111111 counterculturists 1 -1000111111 Malaysia. 1 -1000111111 2:30:16 1 -1000111111 Wahoo 1 -1000111111 Daventry 1 -1000111111 Bingen 1 -1000111111 nettles 1 -1000111111 Autohaus-Tischer 1 -1000111111 scriptorial 1 -1000111111 knockwurst 1 -1000111111 Carlinville 1 -1000111111 Interleukin 1 -1000111111 Brescia 1 -1000111111 Ollieolatry 1 -1000111111 memorizations 1 -1000111111 WKBW-TV 1 -1000111111 curability 1 -1000111111 Metricom 1 -1000111111 acquisitors. 1 -1000111111 Prabhat 1 -1000111111 gameness 1 -1000111111 film-goers 1 -1000111111 wanna-be 1 -1000111111 Koch-family 1 -1000111111 propoganda 1 -1000111111 Sharretts 1 -1000111111 Berkshire-Hathaway 1 -1000111111 95-2 1 -1000111111 Kilbarry 1 -1000111111 Mardan 1 -1000111111 Limbang 1 -1000111111 blue-lavender-purple-pink-magenta 1 -1000111111 PaperTree 1 -1000111111 Radiologists 1 -1000111111 BOSH 1 -1000111111 Boukman 1 -1000111111 Carterville 1 -1000111111 Horlicks 1 -1000111111 dance-making 1 -1000111111 self-mutilations 1 -1000111111 8,659 1 -1000111111 137,738 1 -1000111111 2157.2 1 -1000111111 Herstatt 1 -1000111111 mega-events 1 -1000111111 83-11 1 -1000111111 doorstops 1 -1000111111 nine-to-fivers 1 -1000111111 sex-'n'-drugs-'n'-rock-'n'-roll 1 -1000111111 bawdiness 1 -1000111111 Kaysville 1 -1000111111 25,343 1 -1000111111 Quasimodo 1 -1000111111 Leavenworth 1 -1000111111 Clairin 1 -1000111111 Longquan 1 -1000111111 Vulnerability 1 -1000111111 Rimbunan 1 -1000111111 110.767 1 -1000111111 104.29 1 -1000111111 rappy 1 -1000111111 FAW 1 -1000111111 WETA/Washington 1 -1000111111 Wormwood 1 -1000111111 Duntisbourne 1 -1000111111 resewing 1 -1000111111 Chingford 1 -1000111111 Rockrimmon 1 -1000111111 McCamish 1 -1000111111 Beekmantown 1 -1000111111 1302.73 1 -1000111111 Rapco 1 -1000111111 Blackmon-Mooring 1 -1000111111 tenpins 1 -1000111111 1298.37 1 -1000111111 15,805 1 -1000111111 3.359 1 -1000111111 Amansco 1 -1000111111 Pennyslvania 1 -1000111111 dissuasion 1 -1000111111 tattler 1 -1000111111 Meerut 1 -1000111111 enviromentalists 1 -1000111111 cephalosporins 1 -1000111111 Guaianases 1 -1000111111 anti-Luddism 1 -1000111111 midward 1 -1000111111 WQXR-AM/FM 1 -1000111111 396-17 1 -1000111111 .406 1 -1000111111 1269.73 1 -1000111111 98,835 1 -1000111111 Enskede 1 -1000111111 Calama 1 -1000111111 Cheeky 1 -1000111111 Ilie 1 -1000111111 sweatstuff 1 -1000111111 tricosaccaride 1 -1000111111 ex-Reaganites 1 -1000111111 Noriegaism 1 -1000111111 TravelRite 1 -1000111111 .900 1 -1000111111 SABRE 1 -1000111111 antivirals 1 -1000111111 1270.58 1 -1000111111 1636-37 1 -1000111111 1262.64 1 -1000111111 brean 1 -1000111111 1270.54 1 -1000111111 exhibitionism 1 -1000111111 parters 1 -1000111111 Filmmakers 1 -1000111111 Rustam 1 -1000111111 Izieu 1 -1000111111 390-28 1 -1000111111 Handymen 1 -1000111111 324,802 1 -1000111111 526,743 1 -1000111111 100.41 1 -1000111111 Murcia 1 -1000111111 troubador 1 -1000111111 halon 1 -1000111111 ParkeDavis 1 -1000111111 scrumpy 1 -1000111111 Eliotiana 1 -1000111111 8789 1 -1000111111 Benetton. 1 -1000111111 JWT-London. 1 -1000111111 JWT-Germany 1 -1000111111 JWT-Europe 1 -1000111111 Dreamland 1 -1000111111 27638.74 1 -1000111111 Lincroft 1 -1000111111 1817.8 1 -1000111111 1232.81 1 -1000111111 highway. 1 -1000111111 non-medaldom 1 -1000111111 Maxene 1 -1000111111 Waghausel 1 -1000111111 co-parenting 1 -1000111111 90,183 1 -1000111111 1264.77 1 -1000111111 truth-seekers 1 -1000111111 1841.2 1 -1000111111 Bahawalpur 1 -1000111111 Ambulance-Chasers 1 -1000111111 1254.94 1 -1000111111 1831.1 1 -1000111111 Eqypt 1 -1000111111 Lemuria 1 -1000111111 101.98 1 -1000111111 1867.8 1 -1000111111 Tualatin 1 -1000111111 Solaro 1 -1000111111 1267.71 1 -1000111111 Onaizah 1 -1000111111 56-39 1 -1000111111 Synthelabo 1 -1000111111 Hitters 1 -1000111111 100.09 1 -1000111111 935.57 1 -1000111111 peroxidase 1 -1000111111 Methwold 1 -1000111111 meso-America 1 -1000111111 oxidization 1 -1000111111 Carro 1 -1000111111 tenants. 1 -1000111111 Braeside 1 -1000111111 Pithiviers 1 -1000111111 Y.I.E.L.D. 1 -1000111111 escargot 1 -1000111111 GTM 1 -1000111111 Tsukubao 1 -1000111111 1777.1 1 -1000111111 Nampa 1 -1000111111 ghostwriting 1 -1000111111 Goroka 1 -1000111111 teratology 1 -1000111111 Domvraina 1 -1000111111 Danning 1 -1000111111 Istria 1 -1000111111 100.656 1 -1000111111 Tetla 1 -1000111111 Mexico. 1 -1000111111 Flatulence 1 -1000111111 1753.6 1 -1000111111 millionthe 1 -1000111111 Flon 1 -1000111111 Dogberry 1 -1000111111 Qonduz 1 -1000111111 8,365 1 -1000111111 Chichijima 1 -1000111111 Housatonic 1 -1000111111 doublebilling 1 -1000111111 Pennoyer 1 -1000111111 96.96 1 -1000111111 ADVO 1 -1000111111 Clewiston 1 -1000111111 Anaba 1 -1000111111 98.96 1 -1000111111 rope-hopping 1 -1000111111 Badenweiler 1 -1000111111 Mamati 1 -1000111111 797,100 1 -1000111111 177,588 1 -1000111111 Kovoso 1 -1000111111 reconquering 1 -1000111111 LaRouche-style 1 -1000111111 Popocatepetl 1 -1000111111 Baldwinsville 1 -1000111111 98.99 1 -1000111111 plastics-making 1 -1000111111 forboding 1 -1000111111 ball-pounding 1 -1000111111 chromakalim 1 -1000111111 brand-loyalists 1 -1000111111 Gujran 1 -1000111111 Surah 1 -1000111111 spymasters 1 -1000111111 1245.05 1 -1000111111 Samarra 1 -1000111111 1243.70 1 -1000111111 McQuick 1 -1000111111 Dionysius 1 -1000111111 21,209 1 -1000111111 21,380 1 -1000111111 nongraduates 1 -1000111111 Rossmoor 1 -1000111111 Kinyu 1 -1000111111 Milltown 1 -1000111111 153,578 1 -1000111111 1176.32 1 -1000111111 Lodovico 1 -1000111111 Montecatini 1 -1000111111 31-14 1 -1000111111 Udang 1 -1000111111 Ambon 1 -1000111111 Sethe 1 -1000111111 co-evolution 1 -1000111111 Intercrossing 1 -1000111111 state-designate 1 -1000111111 Castelfidardo 1 -1000111111 102.36 1 -1000111111 1235.04 1 -1000111111 1824.4 1 -1000111111 SCECorp. 1 -1000111111 Noninformation 1 -1000111111 dingoes 1 -1000111111 somethings 1 -1000111111 102.72 1 -1000111111 Francoism 1 -1000111111 Grisati 1 -1000111111 high-sticking 1 -1000111111 Chappaquidick 1 -1000111111 non-performance 1 -1000111111 HFD 1 -1000111111 549,500 1 -1000111111 348-68 1 -1000111111 hyperoxygenation 1 -1000111111 Shaka 1 -1000111111 MNMN 1 -1000111111 McAlester 1 -1000111111 Laplace 1 -1000111111 86-0 1 -1000111111 interring 1 -1000111111 11-to-10 1 -1000111111 Phoneworks 1 -1000111111 Fangs 1 -1000111111 26400.63 1 -1000111111 1158.51 1 -1000111111 ARBUTHNOT 1 -1000111111 powerstation 1 -1000111111 Narayama 1 -1000111111 Foghorn 1 -1000111111 Jew-bashing 1 -1000111111 3949.73 1 -1000111111 Krupp/ 1 -1000111111 hearing. 1 -1000111111 1158.26 1 -1000111111 156,207 1 -1000111111 fish-farming 1 -1000111111 Chanute 1 -1000111111 68,357 1 -1000111111 Goring 1 -1000111111 crypts 1 -1000111111 Carnarvon 1 -1000111111 1864.7 1 -1000111111 over-leveraging 1 -1000111111 leveragability 1 -1000111111 I-don't-know-who 1 -1000111111 Castleacre 1 -1000111111 Festerson 1 -1000111111 M109A2 1 -1000111111 Elko 1 -1000111111 Gastroenterology 1 -1000111111 media-bashing 1 -1000111111 Technimetrics 1 -1000111111 Moosup 1 -1000111111 holocausts 1 -1000111111 Caracalla 1 -1000111111 n-butanol 1 -1000111111 Potgietersrus 1 -1000111111 1858.8 1 -1000111111 373,216 1 -1000111111 358-1 1 -1000111111 Carrenfour 1 -1000111111 circumferential 1 -1000111111 banister 1 -1000111111 102.43 1 -1000111111 538.27 1 -1000111111 movement. 1 -1000111111 superhighways 1 -1000111111 Tigoni 1 -1000111111 1248.80 1 -1000111111 28645.14 1 -1000111111 Voluntown 1 -1000111111 crybabying 1 -1000111111 238.90 1 -1000111111 deciles 1 -1000111111 255-177 1 -1000111111 Texmati 1 -1000111111 1275.51 1 -1000111111 339,428 1 -1000111111 externals 1 -1000111111 Hartington 1 -1000111111 Sargou 1 -1000111111 98.046 1 -1000111111 101.91 1 -1000111111 digital-graphics 1 -1000111111 ganglia 1 -1000111111 2,305 1 -1000111111 Kapuskasing 1 -1000111111 27798.18 1 -1000111111 1291.51 1 -1000111111 2:08:20 1 -1000111111 1255.19 1 -1000111111 1776-1777 1 -1000111111 Telshop 1 -1000111111 gesticulation 1 -1000111111 Ideal-Alembrec 1 -1000111111 creakiness 1 -1000111111 Qinhuangdao 1 -1000111111 106.66 1 -1000111111 plug-ins 1 -1000111111 Bassists 1 -1000111111 fact-mongering 1 -1000111111 Battlements 1 -1000111111 Presse-Actualite 1 -1000111111 TV-6 1 -1000111111 Zwentendorf 1 -1000111111 Rosedale 1 -1000111111 misdealing 1 -1000111111 Valjevo 1 -1000111111 Cogarthanghika 1 -1000111111 bagatelles 1 -1000111111 1923-24 1 -1000111111 Powercraft 1 -1000111111 6,675 1 -1000111111 Mensa 1 -1000111111 Evlico 1 -1000111111 106.417 1 -1000111111 Indore 1 -1000111111 ukiyoe 1 -1000111111 Self-Love 1 -1000111111 managerial/professional 1 -1000111111 Lingxixiang 1 -1000111111 Geisa 1 -1000111111 mouldy 1 -1000111111 Tegison 1 -1000111111 Marietou 1 -1000111111 Ablaye 1 -1000111111 Chapare 1 -1000111111 non-complainers 1 -1000111111 574,490 1 -1000111111 noncommunicating 1 -1000111111 Trondheim 1 -1000111111 self-dissolution 1 -1000111111 Sandton 1 -1000111111 85.908 1 -1000111111 Dragoons 1 -1000111111 1914-15 1 -1000111111 Comitan 1 -1000111111 1,521,000 1 -1000111111 1914-1918 1 -1000111111 Setubal 1 -1000111111 propolis 1 -1000111111 papiermache 1 -1000111111 Soshanguve 1 -1000111111 1-by-2s 1 -1000111111 bights 1 -1000111111 Shahs 1 -1000111111 proceduritis 1 -1000111111 156-5 1 -1000111111 12,984 1 -1000111111 commerce. 1 -1000111111 KLTJ 1 -1000111111 Payette 1 -1000111111 Atil 1 -1000111111 truth-in-budgeting 1 -1000111111 Montreux 1 -1000111111 Antongalon 1 -1000111111 malarkey 1 -1000111111 Valencias 1 -1000111111 ordinariness 1 -1000111111 14,158 1 -1000111111 Maghdousheh 1 -1000111111 stupefaction 1 -1000111111 Pierr 1 -1000111111 Aquaculture 1 -1000111111 Ceuta 1 -1000111111 109,112 1 -1000111111 greaseless 1 -1000111111 1,896,000 1 -1000111111 3,384,000 1 -1000111111 2183.9 1 -1000111111 Rajasthan 1 -1000111111 radiophobia 1 -1000111111 moodiness 1 -1000111111 cefazoline 1 -1000111111 183-day 1 -1000111111 Arverne 1 -1000111111 1980-83 1 -1000111111 arm-waving 1 -1000111111 Rievaulx 1 -1000111111 holes. 1 -1000111111 Somax 1 -1000111111 Solvang 1 -1000111111 Rubelsanto 1 -1000111111 memory-hungry 1 -1000111111 296-124 1 -1000111111 3.7-to-1 1 -1000111111 desparecidos 1 -1000111111 23868.43 1 -1000111111 Calvinists 1 -1000111111 standpatters 1 -1000111111 Libertads 1 -1000111111 Vasari 1 -1000111111 O.N.E. 1 -1000111111 decertifications 1 -1000111111 aid-the-Contras 1 -1000111111 418-0 1 -1000111111 Krnjevo 1 -1000111111 2:07:51 1 -1000111111 Salta 1 -1000111111 2:13:30 1 -1000111111 Marmarth 1 -1000111111 ethylenebisdithiocarbamates 1 -1000111111 5,623 1 -1000111111 Selectmen 1 -1000111111 directors. 1 -1000111111 non-attorneys 1 -1000111111 1601 1 -1000111111 Emporium-Capwell 1 -1000111111 lip-moistening 1 -1000111111 Bloemfontein 1 -1000111111 Ukranians 1 -1000111111 protropin 1 -1000111111 friends-who-have-been-there 1 -1000111111 record-keepers 1 -1000111111 mini-Disneyland 1 -1000111111 Tarlac 1 -1000111111 Travelmasters 1 -1000111111 NQ 1 -1000111111 Jezzine 1 -1000111111 1282.38 1 -1000111111 Austro-Marxism 1 -1000111111 Spinoza 1 -1000111111 Chincoteague 1 -1000111111 1308.87 1 -1000111111 Sisseton 1 -1000111111 Euro-logic 1 -1000111111 Herrsching 1 -1000111111 Thermopylae 1 -1000111111 111.70 1 -1000111111 megahouse-building 1 -1000111111 Universology 1 -1000111111 IBM-Europe 1 -1000111111 Anesthesiologists 1 -1000111111 record-making 1 -1000111111 disreputability 1 -1000111111 messagery 1 -1000111111 Yimlamay 1 -1000111111 Wordmark 1 -1000111111 prizewinners 1 -1000111111 sacrality 1 -1000111111 Lupao 1 -1000111111 1,269,100 1 -1000111111 show-and-sell 1 -1000111111 21-20 1 -1000111111 Quinua 1 -1000111111 Dillwyn 1 -1000111111 Angur 1 -1000111111 Lemnos 1 -1000111111 Vozni 1 -1000111111 24608.22 1 -1000111111 Zabrze 1 -1000111111 1317.88 1 -1000111111 Amazonas 1 -1000111111 456,971 1 -1000111111 699,421 1 -1000111111 Ellwangen 1 -1000111111 Fantine 1 -1000111111 Hainesville 1 -1000111111 knuckle-biting 1 -1000111111 mediocrity. 1 -1000111111 Democracy. 1 -1000111111 overextension 1 -1000111111 here-today 1 -1000111111 hard-hats 1 -1000111111 Minorange 1 -1000111111 Iffley 1 -1000111111 Procreation 1 -1000111111 PTAs 1 -1000111111 Transylvania. 1 -1000111111 Buckhannon 1 -1000111111 Montjuic 1 -1000111111 Promethee 1 -1000111111 overproduction. 1 -1000111111 Wheatgrowers 1 -1000111111 Valec 1 -1000111111 Sidbec 1 -1000111111 111.138 1 -1000111111 15,254 1 -1000111111 Covidea 1 -1000111111 Puyallup 1 -1000111111 ultra-exclusive 1 -1000111111 Flame. 1 -1000111111 Herbert-Verkamp 1 -1000111111 2,954,620 1 -1000111111 debt-recycling 1 -1000111111 Duduza 1 -1000111111 whack. 1 -1000111111 1,100. 1 -1000111111 have-it 1 -1000111111 nonresponsibility 1 -1000111111 +0.64 1 -1000111111 American-planned 1 -1000111111 49-to-46 1 -1000111111 Toomay 1 -1000111111 labetalol 1 -1000111111 Nayarit 1 -1000111111 622,303 1 -1000111111 Abert 1 -1000111111 411-0 1 -1000111111 freethinkers 1 -1000111111 Fedecamaras 1 -1000111111 self-independence 1 -1000111111 rusticity 1 -1000111111 58.921 1 -1000111111 home-work 1 -1000111111 one-carat 1 -1000111111 Mancos 1 -1000111111 Hamtramc 1 -1000111111 ultra-cool 1 -1000111111 Witloof 1 -1000111111 Shuichuan 1 -1000111111 Shovelers 1 -1000111111 videodrones 1 -1000111111 orthography 1 -1000111111 529,862 1 -1000111111 Lincolnwood 1 -1000111111 1951-53 1 -1000111111 Israel. 1 -1000111111 Clydebank 1 -1000111111 13,044 1 -1000111111 72-21 1 -1000111111 1969-82 1 -1000111111 153,907 1 -1000111111 149,732 1 -1000111111 Tiffin 1 -1000111111 Texas/M.D. 1 -1000111111 Nagykanizsa 1 -1000111111 Collingswood 1 -1000111111 solid-wood 1 -1000111111 Saucier 1 -1000111111 reserpine 1 -1000111111 Edgars 1 -1000111111 GOPAC 1 -1000111111 Teacherswill 1 -1000111111 Fri. 1 -1000111111 20,401,098 1 -1000111111 1620.4 1 -1000111111 Stadtpark 1 -1000111111 leglislators 1 -1000111111 3,249 1 -1000111111 Neon 1 -1000111111 Holofernes 1 -1000111111 unrecognizability 1 -1000111111 1738.42 1 -1000111111 risk-hedging 1 -1000111111 Norka 1 -1000111111 Happytown 1 -1000111111 837,511 1 -1000111111 Etchers 1 -1000111111 1980-1988 1 -1000111111 irreversibility 1 -1000111111 324-68 1 -1000111111 1257.15 1 -1000111111 Cloaks 1 -1000111111 Thermopolis 1 -1000111111 1235.07 1 -1000111111 1230.21 1 -1000111111 150,058 1 -1000111111 Cogoleto 1 -1000111111 nonreporting 1 -1000111111 isradipine 1 -1000111111 HIRAM 1 -1000111111 59-30 1 -1000111111 Illustrators 1 -1000111111 46,020 1 -1000111111 Afro-bop 1 -1000111111 nonrefundability 1 -1000111111 Representatives. 1 -1000111111 ALFA-LANCIA 1 -1000111111 manors 1 -1000111111 Renault-designed 1 -1000111111 1717.6 1 -1000111111 criticism. 1 -1000111111 TDCC 1 -1000111111 182,975 1 -1000111111 Abyssinia 1 -1000111111 Matamoras 1 -1000111111 0.5520 1 -1000111111 romanticism. 1 -1000111111 dino-hatchlings 1 -1000111111 everyone. 1 -1000111111 0.5243 1 -1000111111 Clemmons 1 -1000111111 Tena 1 -1000111111 playacting 1 -1000111111 Buyers-Up 1 -1000111111 overchoice 1 -1000111111 counter-retaliation 1 -1000111111 tsking 1 -1000111111 corpse-gathering 1 -1000111111 Lacowsky-Zucker 1 -1000111111 watchdogging 1 -1000111111 836.13 1 -1000111111 Folcroft 1 -1000111111 semi-cylindrical 1 -1000111111 Melanesia 1 -1000111111 Texas-M.D. 1 -1000111111 aztreonam 1 -1000111111 anti-intellectuals 1 -1000111111 276.40 1 -1000111111 Khaki 1 -1000111111 laborite 1 -1000111111 Shalamcheh 1 -1000111111 Khorramshahr 1 -1000111111 Inchelium 1 -1000111111 36,152 1 -1000111111 45,976 1 -1000111111 Palanpur 1 -1000111111 1962-64 1 -1000111111 123-46 1 -1000111111 26.7-to-1 1 -1000111111 282.60 1 -1000111111 268.40 1 -1000111111 Handouts 1 -1000111111 Bromm 1 -1000111111 rope-bearers 1 -1000111111 procaterol 1 -1000111111 Multiplex 1 -1000111111 797,679 1 -1000111111 Wheatland 1 -1000111111 Hueblein 1 -1000111111 Missiones 1 -1000111111 catalepsy 1 -1000111111 box-shaped 1 -1000111111 youk-now-what 1 -1000111111 Calexico 1 -1000111111 blackmarketeers 1 -1000111111 1958-1960 1 -1000111111 61-32 1 -1000111111 151,425 1 -1000111111 Irrelevance 1 -1000111111 Comerce 1 -1000111111 Ventersdorp 1 -1000111111 price-to-revenue 1 -1000111111 Kohyang 1 -1000111111 DensePac 1 -1000111111 animism 1 -1000111111 J.R.R. 1 -1000111111 Gomina 1 -1000111111 2722.22 1 -1000111111 singlemindedness 1 -1000111111 Epostane 1 -1000111111 Trilafon 1 -1000111111 perphenazine 1 -1000111111 mini-bank 1 -1000111111 1230.24 1 -1000111111 unenforceability 1 -1000111111 433,100 1 -1000111111 irreplaceability 1 -1000111111 Miniatures 1 -1000111111 Craftmark 1 -1000111111 WCLQ 1 -1000111111 Vorarlberg 1 -1000111111 Nutcracker-Cavalier 1 -1000111111 shutterbugs 1 -1000111111 Amazonia 1 -1000111111 Penna. 1 -1000111111 bronchopneumonia 1 -1000111111 G.L.A.D. 1 -1000111111 Shana 1 -1000111111 Nurse-Midwives 1 -1000111111 valium 1 -1000111111 1.9930 1 -1000111111 Omnibancorp 1 -1000111111 BBs 1 -1000111111 aquatint 1 -1000111111 73,054 1 -1000111111 17,475 1 -1000111111 arthropods 1 -1000111111 socialist-realism 1 -1000111111 97.20 1 -1000111111 Hafiftruths 1 -1000111111 Wooddale 1 -1000111111 writers'-strike 1 -1000111111 H20 1 -1000111111 telephony 1 -1000111111 I-10 1 -1000111111 Fredericton 1 -1000111111 Pompian 1 -1000111111 CableTek 1 -1000111111 Evisceration 1 -1000111111 1227.16 1 -1000111111 155-1 1 -1000111111 2394.4 1 -1000111111 Trat 1 -1000111111 Wheatridge 1 -1000111111 1.7077 1 -1000111111 1800.5 1 -1000111111 supplies-fuel 1 -1000111111 1,032,000 1 -1000111111 1316.49 1 -1000111111 1,561,000 1 -1000111111 Printout 1 -1000111111 27534.87 1 -1000111111 gp61 1 -1000111111 Cosep 1 -1000111111 shop-aholics 1 -1000111111 262.00 1 -1000111111 Eurokitsch 1 -1000111111 Uenohara 1 -1000111111 opinionmakers 1 -1000111111 self-support 1 -1000111111 complementarity 1 -1000111111 Mizoram 1 -1000111111 Ladue 1 -1000111111 Aptos 1 -1000111111 70-13 1 -1000111111 Saxe-Coburg-Gotha 1 -1000111111 1902-1914 1 -1000111111 Tonopah 1 -1000111111 34244.43 1 -1000111111 play-acting 1 -1000111111 Cheltenham 1 -1000111111 MVS-Multivision 1 -1000111111 self-treatments 1 -1000111111 Cosmetology 1 -1000111111 non-refrigerated 1 -1000111111 2847.98 1 -1000111111 uncertainty. 1 -1000111111 2394.3 1 -1000111111 253-159 1 -1000111111 eucalyptus-based 1 -1000111111 dance-goers 1 -1000111111 Hating 1 -1000111111 Florsheims 1 -1000111111 3,918,000 1 -1000111111 microsurgery 1 -1000111111 2366.3 1 -1000111111 2379.8 1 -1000111111 349.66 1 -1000111111 drugdealing 1 -1000111111 megapools 1 -1000111111 Tropworld 1 -1000111111 batwear 1 -1000111111 antei 1 -1000111111 2373.3 1 -1000111111 sun-damage 1 -1000111111 Dolgoprudny 1 -1000111111 coup-makers 1 -1000111111 astrophyics 1 -1000111111 182day 1 -1000111111 Nagyr 1 -1000111111 Minneosta 1 -1000111111 Bacton 1 -1000111111 103.22 1 -1000111111 Jouberton 1 -1000111111 Schweizer-Reneke 1 -1000111111 Apothecaries 1 -1000111111 Hayfield 1 -1000111111 analystics 1 -1000111111 defanging 1 -1000111111 Vergil 1 -1000111111 Castlewood 1 -1000111111 102.98 1 -1000111111 sawdust-bread 1 -1000111111 Armaments 1 -1000111111 Kein 1 -1000111111 259.69 1 -1000111111 achievement. 1 -1000111111 1.735 1 -1000111111 374.81 1 -1000111111 1235.35 1 -1000111111 70-49 1 -1000111111 Hart-mania 1 -1000111111 Feydeau 1 -1000111111 Suring 1 -1000111111 IBJ/Schroder 1 -1000111111 Biberach 1 -1000111111 interleukins 1 -1000111111 102.57 1 -1000111111 Suitland 1 -1000111111 Sranton 1 -1000111111 Ajmer 1 -1000111111 306.59 1 -1000111111 Fegersheim 1 -1000111111 St-Basilele-Grand 1 -1000111111 cantalopes 1 -1000111111 1936-39 1 -1000111111 Gruenau 1 -1000111111 328-78 1 -1000111111 Homosote 1 -1000111111 obsessive-compulsiveness 1 -1000111111 28056.98 1 -1000111111 Silao 1 -1000111111 96.53 1 -1000111111 Lemsip 1 -1000111111 Kersey 1 -1000111111 Ladenberg 1 -1000111111 243-169 1 -1000111111 2385.2 1 -1000111111 tulipmania 1 -1000111111 Arscott 1 -1000111111 163,300 1 -1000111111 Hoven 1 -1000111111 Gozkomizdat 1 -1000111111 Yank-bashing 1 -1000111111 Gorbachevolatry 1 -1000111111 28,865 1 -1000111111 wedge-nosed 1 -1000111111 phlebitis 1 -1000111111 Contitech 1 -1000111111 Fiskars 1 -1000111111 109.93 1 -1000111111 hypothesis-testing 1 -1000111111 286-98 1 -1000111111 97,112 1 -1000111111 self-worthiness 1 -1000111111 Taylorism 1 -1000111111 Altamahaw 1 -1000111111 Missouri-St 1 -1000111111 58-41 1 -1000111111 Glenrock 1 -1000111111 KLM-Northwest 1 -1000111111 IVIG-induced 1 -1000111111 Umbria 1 -1000111111 Granard 1 -1000111111 Bombast 1 -1000111111 Movietime/Alfalfa 1 -1000111111 1215.99 1 -1000111111 1.7325 1 -1000111111 blood-filtering 1 -1000111111 Bacillus 1 -1000111111 Attivo 1 -1000111111 99.643 1 -1000111111 neo-Italian 1 -1000111111 104.79 1 -1000111111 103.85 1 -1000111111 1315.72 1 -1000111111 2369.7 1 -1000111111 Hivaoa 1 -1000111111 AICorp. 1 -1000111111 Velayat-e-faqih 1 -1000111111 soapdom 1 -1000111111 1274.62 1 -1000111111 humoria 1 -1000111111 maleantes 1 -1000111111 WGCI 1 -1000111111 naysay 1 -1000111111 Guanacaste 1 -1000111111 Resist 1 -1000111111 school. 1 -1000111111 Anarcho-Syndicalists 1 -1000111111 cycloramas 1 -1000111111 Pruitt-Igoes 1 -1000111111 DISCoveries 1 -1000111111 48a 1 -1000111111 stirred-up 1 -1000111111 peritonitis. 1 -1000111111 2269.7 1 -1000111111 life-asserting 1 -1000111111 26013.19 1 -1000111111 adenine 1 -1000111111 Gesarol 1 -1000111111 Iblisi 1 -1000111111 95.32 1 -1000111111 nonsexual 1 -1000111111 phocomedlia 1 -1000111111 Hamden 1 -1000111111 34542.51 1 -1000111111 34266.75 1 -1000111111 Lashio 1 -1000111111 1327.60 1 -1000111111 SVP 1 -1000111111 Lethlabile 1 -1000111111 2388.1 1 -1000111111 2352.7 1 -1000111111 Elvel 1 -1000111111 53-41 1 -1000111111 conduct-trespassing 1 -1000111111 Attainder 1 -1000111111 2284.5 1 -1000111111 Depiction 1 -1000111111 1274.47 1 -1000111111 1906-07 1 -1000111111 eschatological 1 -1000111111 1321.21 1 -1000111111 2287.4 1 -1000111111 Bubiyan 1 -1000111111 26320.07 1 -1000111111 Antibes 1 -1000111111 13-4 1 -1000111111 96.74 1 -1000111111 prematurity 1 -1000111111 Negmegan 1 -1000111111 2.7-to-1 1 -1000111111 Ekaterina 1 -1000111111 Coachella 1 -1000111111 1264.70 1 -1000111111 Lanett 1 -1000111111 2435.7 1 -1000111111 2223.0 1 -1000111111 Coroca 1 -1000111111 Roadside 1 -1000111111 Euroeconomics 1 -1000111111 rackteering 1 -1000111111 420-0 1 -1000111111 500,000-pound 1 -1000111111 transience 1 -1000111111 95.83 1 -1000111111 Exportkhleb 1 -1000111111 ComputerWare 1 -1000111111 Lubyanka 1 -1000111111 4,986,000 1 -1000111111 monopsony 1 -1000111111 Walpert 1 -1000111111 88.93 1 -1000111111 hearing-aids 1 -1000111111 Alsip 1 -1000111111 self-advertising 1 -1000111111 Kulikovo 1 -1000111111 Lisieux 1 -1000111111 nucleotides 1 -1000111111 571-147 1 -1000111111 male-majority 1 -1000111111 Leesport 1 -1000111111 Uz 1 -1000111111 Midian 1 -1000111111 1756-63 1 -1000111111 doghouses 1 -1000111111 Sevierville 1 -1000111111 Glattbrugg 1 -1000111111 1764 1 -1000111111 1304.15 1 -1000111111 2399.0 1 -1000111111 1289.14 1 -1000111111 ENR 1 -1000111111 2:24:30 1 -1000111111 1243.72 1 -1000111111 begonias 1 -1000111111 hamburger-flippers 1 -1000111111 nomadism 1 -1000111111 Omodaka 1 -1000111111 fat-fighters 1 -1000111111 non-delivery 1 -1000111111 26984.11 1 -1000111111 2926.19 1 -1000111111 2424.5 1 -1000111111 661,600 1 -1000111111 Protectorate 1 -1000111111 2426 1 -1000111111 2410.4 1 -1000111111 Somoto 1 -1000111111 1312.50 1 -1000111111 self-mockery 1 -1000111111 69-26 1 -1000111111 Toettingen 1 -1000111111 99.662 1 -1000111111 hightechnologies 1 -1000111111 2379.4 1 -1000111111 gut-twisting 1 -1000111111 fumblers 1 -1000111111 Barikot 1 -1000111111 growth- 1 -1000111111 non-war 1 -1000111111 4,345 1 -1000111111 Saucony 1 -1000111111 demonology 1 -1000111111 realness 1 -1000111111 blancmange 1 -1000111111 backwoodsmen 1 -1000111111 garrulity 1 -1000111111 misrepresentation. 1 -1000111111 Hooker. 1 -1000111111 Moravia 1 -1000111111 256.10 1 -1000111111 34.59 1 -1000111111 1273.21 1 -1000111111 Gondar 1 -1000111111 improvization 1 -1000111111 endometrium 1 -1000111111 Sunzest 1 -1000111111 KMTF 1 -1000111111 7,740 1 -1000111111 scumbags 1 -1000111111 over-ordering 1 -1000111111 23,156 1 -1000111111 Panagia 1 -1000111111 Indramayu 1 -1000111111 Amery 1 -1000111111 96.09 1 -1000111111 0-to-60 1 -1000111111 Sukaharjo 1 -1000111111 2416.1 1 -1000111111 gruesomeness 1 -1000111111 79-14 1 -1000111111 Lightnet 1 -1000111111 Tuonela 1 -1000111111 Riefenstahl 1 -1000111111 Revell/Monogram 1 -1000111111 ASH 1 -1000111111 98.665 1 -1000111111 Nurserymen 1 -1000111111 Japanese-bashing 1 -1000111111 1270.55 1 -1000111111 sound-painting 1 -1000111111 Co-REEN-thee-an 1 -1000111111 risk-variance 1 -1000111111 Guinnesss 1 -1000111111 TurboTax 1 -1000111111 harder-to-read 1 -1000111111 tetrahydroaminoacradine 1 -1000111111 XT6 1 -1000111111 ickiness 1 -1000111111 coke-snorting 1 -1000111111 Jasrac 1 -1000111111 France. 1 -1000111111 Europoort 1 -1000111111 child-stealing 1 -1000111111 Leaseurope 1 -1000111111 home-improvement-store 1 -1000111111 Chapoutier 1 -1000111111 1283.85 1 -1000111111 2358.3 1 -1000111111 2390.8 1 -1000111111 Beita 1 -1000111111 Interconsult 1 -1000111111 Eilat 1 -1000111111 Sieradz 1 -1000111111 spumanti 1 -1000111111 1634-37 1 -1000111111 Sofipa 1 -1000111111 676.84 1 -1000111111 Burtonsville 1 -1000111111 Awali 1 -1000111111 Lasix 1 -1000111111 VWD 1 -1000111111 2302 1 -1000111111 Lazlo 1 -1000111111 lawyerdom 1 -1000111111 points. 1 -1000111111 4112.9 1 -1000111111 misstriped 1 -1000111111 Delphos 1 -1000111111 KPRC-TV 1 -1000111111 2346.4 1 -1000111111 1826.7 1 -1000111111 2,458,700 1 -1000111111 Feltham 1 -1000111111 Armscor 1 -1000111111 Stanislavsky 1 -1000111111 Jiye 1 -1000111111 Roniglione 1 -1000111111 Oneka 1 -1000111111 Hubler/Swartz 1 -1000111111 2357.9 1 -1000111111 100.698 1 -1000111111 polypropylenes 1 -1000111111 Defi 1 -1000111111 2724 1 -1000111111 2363.6 1 -1000111111 predictiveness 1 -1000111111 group-identity 1 -1000111111 Marsala 1 -1000111111 NCNB-Midland 1 -1000111111 97.19 1 -1000111111 Chollipo 1 -1000111111 Gosheim 1 -1000111111 Beirut-on-Hudson 1 -1000111111 half-reruns 1 -1000111111 1917-1919 1 -1000111111 M&Ms. 1 -1000111111 arrogance. 1 -1000111111 Heilbronn 1 -1000111111 snobism 1 -1000111111 2354.9 1 -1000111111 japan 1 -1000111111 SoCalGas 1 -1000111111 Gulmit 1 -1000111111 Balbalan 1 -1000111111 nudists 1 -1000111111 99.74 1 -1000111111 29,021 1 -1000111111 reteaching 1 -1000111111 advertizing 1 -1000111111 sociobiology 1 -1000111111 Benamou 1 -1000111111 3309 1 -1000111111 Artsbridge 1 -1000111111 autism 1 -1000111111 MCCA 1 -1000111111 1219.56 1 -1000111111 Chesaning 1 -1000111111 Mapleton 1 -1000111111 meningioma 1 -1000111111 1,454,000 1 -1000111111 Yuffies 1 -1000111111 non-asthmatics 1 -1000111111 2278.3 1 -1000111111 shareholdersfunds 1 -1000111111 Wedtechs 1 -1000111111 330.72 1 -1000111111 Irans 1 -1000111111 negligibility 1 -1000111111 13,446,000 1 -1000111111 Console 1 -1000111111 1896-97 1 -1000111111 Mickleton 1 -1000111111 TARP 1 -1000111111 maturity. 1 -1000111111 99.08 1 -1000111111 Rotha 1 -1000111111 WGMS 1 -1000111111 18-to-29-year-olds 1 -1000111111 Subs 1 -1000111111 427.62 1 -1000111111 291-123 1 -1000111111 DnC 1 -1000111111 Slovaks 1 -1000111111 trypanosomes 1 -1000111111 2329.1 1 -1000111111 Honfleur 1 -1000111111 Cadaques 1 -1000111111 5,280 1 -1000111111 Jastrzebie 1 -1000111111 Hethel 1 -1000111111 2297 1 -1000111111 Minorca 1 -1000111111 Oscoda 1 -1000111111 Tanjore 1 -1000111111 Najaf 1 -1000111111 feedgrains 1 -1000111111 479.32 1 -1000111111 2310.3 1 -1000111111 2331.1 1 -1000111111 Paekdu 1 -1000111111 Yalies 1 -1000111111 Ivins 1 -1000111111 Edgefield 1 -1000111111 million-member-Teamsters 1 -1000111111 98.59 1 -1000111111 419.32 1 -1000111111 Byrdstown 1 -1000111111 Jacobius 1 -1000111111 Chicagoana 1 -1000111111 Whittle-produced 1 -1000111111 Lanzhou 1 -1000111111 1885.2 1 -1000111111 Tondal 1 -1000111111 suttee 1 -1000111111 383-18 1 -1000111111 non-Castilians 1 -1000111111 Lae 1 -1000111111 pudicity 1 -1000111111 garbage-in 1 -1000111111 Lastec 1 -1000111111 Medjugorje 1 -1000111111 2218.6 1 -1000111111 agriculture. 1 -1000111111 Coarsegold 1 -1000111111 profit-makers 1 -1000111111 Sidewalks 1 -1000111111 Cotui 1 -1000111111 Provence. 1 -1000111111 Esba 1 -1000111111 221-199 1 -1000111111 conceptualizing 1 -1000111111 semiprocessed 1 -1000111111 ComputerWorld 1 -1000111111 java 1 -1000111111 Tilsit 1 -1000111111 374.07 1 -1000111111 pentigetide 1 -1000111111 non-Hungarians 1 -1000111111 melatonin 1 -1000111111 96.80 1 -1000111111 Atonement 1 -1000111111 2341.5 1 -1000111111 starlike 1 -1000111111 Sofitel 1 -1000111111 Tekstilbank 1 -1000111111 98.073 1 -1000111111 unfunniness 1 -1000111111 Falconry 1 -1000111111 1917-18 1 -1000111111 Menoken 1 -1000111111 peepers 1 -1000111111 successs 1 -1000111111 access-buying 1 -1000111111 1,500mg 1 -1000111111 1239.61 1 -1000111111 mousedom 1 -1000111111 1793.6 1 -1000111111 fice 1 -1000111111 Jiddah 1 -1000111111 KSP 1 -1000111111 1248.48 1 -1000111111 2374.8 1 -1000111111 radar-fooling 1 -1000111111 Muelheim-Ruhr 1 -1000111111 RATP 1 -1000111111 Chungli 1 -1000111111 Komi 1 -1000111111 7,580,000 1 -1000111111 Fowls 1 -1000111111 997-254 1 -1000111111 98.401 1 -1000111111 2332.4 1 -1000111111 foreignborns 1 -1000111111 Taoyuan 1 -1000111111 391.62 1 -1000111111 1251.78 1 -1000111111 27177.54 1 -1000111111 Macumba 1 -1000111111 histamine 1 -1000111111 Gollaprolu 1 -1000111111 ours. 1 -1000111111 royal-baiting 1 -1000111111 megaphones 1 -1000111111 Dipolog 1 -1000111111 doubledealing 1 -1000111111 13,822 1 -1000111111 lionesses 1 -1000111111 COSEP 1 -1000111111 102.06 1 -1000111111 techno-nationalism 1 -1000111111 6,793 1 -1000111111 81-19 1 -1000111111 wigggling 1 -1000111111 120.30 1 -1000111111 Paris-IX-Dauphine 1 -1000111111 under-ascertainment 1 -1000111111 1242.00 1 -1000111111 591,419 1 -1000111111 89-11 1 -1000111111 Kansas. 1 -1000111111 Altamira 1 -1000111111 1910-12 1 -1000111111 oneupmanship 1 -1000111111 Croton 1 -1000111111 America-Canada 1 -1000111111 worktables 1 -1000111111 four. 1 -1000111111 regulation-tightening 1 -1000111111 Crotone 1 -1000111111 373216 1 -1000111111 2383.8 1 -1000111111 Artvin 1 -1000111111 maximum- 1 -1000111111 Creamer. 1 -1000111111 2368.4 1 -1000111111 AVAir 1 -1000111111 pretentiousness 1 -1000111111 390-16 1 -1000111111 13,803 1 -1000111111 ligistics 1 -1000111111 Purdys 1 -1000111111 DMB&B/USA 1 -1000111111 Asiawatch 1 -1000111111 quasi-statehood 1 -1000111111 acetominophen 1 -1000111111 Buchman 1 -1000111111 PEN 1 -1000111111 Horseheads 1 -1000111111 ill-treatment 1 -1000111111 Ophthalmologists 1 -1000111111 1,374,000 1 -1000111111 Coronet/MTI 1 -1000111111 rounders 1 -1000111111 Khaesong 1 -1000111111 regionalitis 1 -1000111111 Edw 1 -1000111111 2314.4 1 -1000111111 Zamunda 1 -1000111111 10-years 1 -1000111111 Heliopolis 1 -1000111111 Grayer 1 -1000111111 multibranch 1 -1000111111 single-A/double-A-minus 1 -1000111111 Fatherlands 1 -1000111111 Umea 1 -1000111111 Copersucar 1 -1000111111 Lehighton 1 -1000111111 Forgiveness 1 -1000111111 Wadi 1 -1000111111 al-Tahl 1 -1000111111 Introspect 1 -1000111111 1222.08 1 -1000111111 Ensenar 1 -1000111111 Namelok 1 -1000111111 372.40 1 -1000111111 Tir 1 -1000111111 2258.3 1 -1000111111 hyphens 1 -1000111111 Elea 1 -1000111111 MBR 1 -1000111111 2291.7 1 -1000111111 stumper 1 -1000111111 309.33 1 -1000111111 Prodintorg 1 -1000111111 35689.98 1 -1000111111 1219.59 1 -1000111111 block-building 1 -1000111111 Equalization 2 -1000111111 237-181 2 -1000111111 glyphosate 2 -1000111111 Abd 2 -1000111111 bus-loads 2 -1000111111 basij 2 -1000111111 Gretna 2 -1000111111 Jaipur 2 -1000111111 neuropharmacology 2 -1000111111 asphyxiation 2 -1000111111 Chittagong 2 -1000111111 Zionsville 2 -1000111111 Synge 2 -1000111111 Illinois-Chicago 2 -1000111111 Reviewers 2 -1000111111 Kunsan 2 -1000111111 dBase4 2 -1000111111 Billund 2 -1000111111 chloroflurocarbons 2 -1000111111 embossers 2 -1000111111 seashores 2 -1000111111 worthlessness 2 -1000111111 Kratowvo 2 -1000111111 quiescence 2 -1000111111 big-bellied 2 -1000111111 acclimatization 2 -1000111111 316,209 2 -1000111111 CHAUMET 2 -1000111111 Weslaco 2 -1000111111 bobcats 2 -1000111111 Steinhagen 2 -1000111111 Bedminster 2 -1000111111 pocho-bashing 2 -1000111111 accountant-catastrophists 2 -1000111111 2443 2 -1000111111 Bellmore 2 -1000111111 Bihac 2 -1000111111 Kiester 2 -1000111111 Centoxin 2 -1000111111 Katutura 2 -1000111111 bitches 2 -1000111111 Allemonde 2 -1000111111 Strongsville 2 -1000111111 Gwalia 2 -1000111111 C-5s 2 -1000111111 Meltex 2 -1000111111 264-121 2 -1000111111 Elmont 2 -1000111111 Canada. 2 -1000111111 corporeal 2 -1000111111 acquirees 2 -1000111111 Verkehrskreditbank 2 -1000111111 Sheba 2 -1000111111 Silsbee 2 -1000111111 Wisconsin-Milwaukee 2 -1000111111 monasticism 2 -1000111111 Beemans 2 -1000111111 Quebecair 2 -1000111111 vancomycin 2 -1000111111 Florida. 2 -1000111111 '40 2 -1000111111 6-feet 2 -1000111111 Wholesalers-Distributors 2 -1000111111 superperformers 2 -1000111111 30,226 2 -1000111111 portal 2 -1000111111 Education. 2 -1000111111 Francorp. 2 -1000111111 378-4 2 -1000111111 gristle 2 -1000111111 Downington 2 -1000111111 Knightstown 2 -1000111111 Londrina 2 -1000111111 Khomeiniism 2 -1000111111 Sportrooms 2 -1000111111 1914-18 2 -1000111111 Nivard 2 -1000111111 neutrophils 2 -1000111111 Poisons 2 -1000111111 Ilminster 2 -1000111111 Stikeman 2 -1000111111 Blackbeard 2 -1000111111 prunes 2 -1000111111 aminopterin 2 -1000111111 50-to-1 2 -1000111111 tripods 2 -1000111111 Ginborak 2 -1000111111 dog-fighting 2 -1000111111 America-U.S. 2 -1000111111 beef-eating 2 -1000111111 farm-ins 2 -1000111111 2345.8 2 -1000111111 Les-Loges-en-Josas 2 -1000111111 Araserv 2 -1000111111 Unionville 2 -1000111111 Dazzling 2 -1000111111 insufferability 2 -1000111111 Fallacies 2 -1000111111 Shoreview 2 -1000111111 Troyes 2 -1000111111 Sparber 2 -1000111111 9-7 2 -1000111111 nicotine. 2 -1000111111 printmaking 2 -1000111111 superalloys 2 -1000111111 Kitezh 2 -1000111111 439.64 2 -1000111111 bedsheets 2 -1000111111 Lynbrook 2 -1000111111 Bimsa 2 -1000111111 Tadzhikistan 2 -1000111111 biostatistics 2 -1000111111 Medicaments 2 -1000111111 Raytec 2 -1000111111 Sokoto 2 -1000111111 Maru 2 -1000111111 Equador 2 -1000111111 1919.71 2 -1000111111 lading 2 -1000111111 snowshoes 2 -1000111111 Amun 2 -1000111111 151,141 2 -1000111111 C.O.P.S. 2 -1000111111 73-24 2 -1000111111 Yearning 2 -1000111111 Madisonville 2 -1000111111 tearoom 2 -1000111111 short-notice 2 -1000111111 Unalaska 2 -1000111111 pay-backs 2 -1000111111 Astrologers 2 -1000111111 Railfan 2 -1000111111 3/17/88 2 -1000111111 2365.4 2 -1000111111 windowsills 2 -1000111111 Econometrix 2 -1000111111 Missouri-Columbia 2 -1000111111 2386.6 2 -1000111111 cholecystokinin 2 -1000111111 Helsingborg 2 -1000111111 Zwide 2 -1000111111 9-4 2 -1000111111 gladiolus 2 -1000111111 non-involvement 2 -1000111111 jujubes 2 -1000111111 Burnaby 2 -1000111111 yester-year 2 -1000111111 peptides 2 -1000111111 untrustworthiness 2 -1000111111 Hercule 2 -1000111111 Deventer 2 -1000111111 goody-goody 2 -1000111111 Provins 2 -1000111111 Okhotsk 2 -1000111111 verapamul 2 -1000111111 Ulanova 2 -1000111111 Pasedena 2 -1000111111 methylenedianiline 2 -1000111111 23938.35 2 -1000111111 Maribor 2 -1000111111 InfoTech 2 -1000111111 Hitlerian 2 -1000111111 C-17s 3 -1000111111 obstructions 3 -1000111111 2237.49 3 -1000111111 Kuito 3 -1000111111 2404.5 3 -1000111111 101.07 3 -1000111111 Famers 3 -1000111111 stoplights 3 -1000111111 Tehuantepec 3 -1000111111 imbeciles 3 -1000111111 Pernambuco 3 -1000111111 Falmouth 3 -1000111111 Eurocommunism 3 -1000111111 muckrakers 3 -1000111111 Tela 3 -1000111111 Middleborough 3 -1000111111 329.7 3 -1000111111 Emergence 3 -1000111111 Ceara 3 -1000111111 bradykinins 3 -1000111111 425,534 3 -1000111111 Darmstadt 3 -1000111111 Hispaniola 3 -1000111111 Thebes 3 -1000111111 denigration 3 -1000111111 biopharmaceuticals 3 -1000111111 ultra-leftism 3 -1000111111 2280.23 3 -1000111111 Peugeots 3 -1000111111 communality 3 -1000111111 Upperville 3 -1000111111 Nalcosa 3 -1000111111 holies 3 -1000111111 zidovudine 3 -1000111111 pulchritude 3 -1000111111 fifth-graders 3 -1000111111 Gethsemane 3 -1000111111 pseudo-intellectuals 3 -1000111111 Biochemistry 3 -1000111111 Lauderhill 3 -1000111111 Softletter 3 -1000111111 pounder 3 -1000111111 Kubera 3 -1000111111 Narberth 3 -1000111111 Lubeck 3 -1000111111 2131.40 4 -1000111111 Oceanography 4 -1000111111 Rexeco 4 -1000111111 2572.07 4 -1000111111 Radiology 4 -1000111111 SoftLetter 4 -1000111111 1929-33 4 -1000111111 227.83 4 -1000111111 2445.51 4 -1000111111 28342.46 4 -1000111111 dunks 4 -1000111111 Wilmont 4 -1000111111 Double-A 4 -1000111111 18936.24 4 -1000111111 negation 4 -1000111111 Herat 4 -1000111111 254.00 4 -1000111111 regents 4 -1000111111 Ecanal 4 -1000111111 Wyomissing 4 -1000111111 Therfectin 4 -1000111111 locomotion 4 -1000111111 400.13 5 -1000111111 grands 5 -1000111111 Rhizobium 5 -1000111111 2152.20 5 -1000111111 28423.38 5 -1000111111 adhesion 5 -1000111111 coquette 5 -1000111111 hypothecation 5 -1000111111 Sidra 5 -1000111111 PSFS 5 -1000111111 unconstitutionality 5 -1000111111 2463.97 5 -1000111111 2451.05 5 -1000111111 1688 5 -1000111111 Tarsus 6 -1000111111 Lok 6 -1000111111 2752.09 6 -1000111111 reserve-building 6 -1000111111 photons 6 -1000111111 Revision 6 -1000111111 Discontent 6 -1000111111 Homebuilders 6 -1000111111 Overseers 6 -1000111111 Damocles 7 -1000111111 455.26 7 -1000111111 Assisi 7 -1000111111 411.16 7 -1000111111 proprietorship 8 -1000111111 mumbo 8 -1000111111 nitrosamines 8 -1000111111 Wrath 9 -1000111111 Wholesaler-Distributors 10 -1000111111 Circulations 10 -1000111111 2405.54 10 -1000111111 Macrodantin 10 -1000111111 2110.08 10 -1000111111 Corinth 11 -1000111111 opus 12 -1000111111 powerlessness 12 -1000111111 Scientology 14 -1000111111 kilter 15 -1000111111 mandamus 16 -1000111111 Babel 17 -1000111111 yore 19 -1000111111 Pediatrics 20 -1000111111 Campus 21 -1000111111 Preferences 22 -1000111111 wedlock 24 -1000111111 berths 25 -1000111111 Prussia 35 -1000111111 Deputies 36 -1000111111 whack 42 -1000111111 Lords 45 -1000111111 Mineworkers 47 -1000111111 Churches 49 -1000111111 2722.42 58 -1000111111 Appeal 76 -1000111111 Hormuz 95 -1000111111 182-day 121 -1000111111 incorporation 122 -1000111111 91-day 146 -1000111111 Machinists 154 -1000111111 Commons 195 -1000111111 Representatives 339 -1000111111 Appeals 533 -1000111111 page 1313 -1000111111 pages 1740 -1000111111 course 5915 -1001000 spy-catchers 1 -1001000 swashbuckler 1 -1001000 wench 1 -1001000 Nandos 1 -1001000 Toyodas 1 -1001000 491,300 1 -1001000 fundametals 1 -1001000 Burtonmander 1 -1001000 trustbusters 1 -1001000 regrooming 1 -1001000 40-to-45-year-olds 1 -1001000 outheast 1 -1001000 Kenne 1 -1001000 transacton 1 -1001000 quasi-index 1 -1001000 slimming-down 1 -1001000 Goldsteins 1 -1001000 Teodorico 1 -1001000 Monstera 1 -1001000 journalist-as-star 1 -1001000 Igo 1 -1001000 propectus 1 -1001000 dealer-appraiser 1 -1001000 Rubinsons 1 -1001000 ISB 1 -1001000 Tapps 1 -1001000 campanies 1 -1001000 sawbones 1 -1001000 book-signings 1 -1001000 1,958 1 -1001000 coompany 1 -1001000 Tokyos 1 -1001000 Eduskunta 1 -1001000 provison 1 -1001000 job-holder 1 -1001000 alarmists 1 -1001000 inchief 1 -1001000 co-conductors 1 -1001000 ground-it 1 -1001000 Gelches 1 -1001000 Olzhas 1 -1001000 cutting-back 1 -1001000 Nylons 1 -1001000 Stephenses 1 -1001000 landspeculation 1 -1001000 C5-A 1 -1001000 1,241 1 -1001000 Tashjians 1 -1001000 compancy 1 -1001000 DSO 1 -1001000 nicely. 1 -1001000 spokesowman 1 -1001000 Slonimskys 1 -1001000 man-in-the-buff 1 -1001000 Finno-Ugrians 1 -1001000 mobilizations 1 -1001000 arrrangement 1 -1001000 grousers 1 -1001000 indutry 1 -1001000 hippoisie 1 -1001000 MD-90s 1 -1001000 prescriber 1 -1001000 Y/MP 1 -1001000 singer-actor 1 -1001000 tractor-semitrailer 1 -1001000 Neeme 1 -1001000 dogooders 1 -1001000 Wigtons 1 -1001000 Virgins 1 -1001000 environmentalist-actor 1 -1001000 yanquis 1 -1001000 Banawans 2 -1001000 MWU 2 -1001000 Iacoccas 2 -1001000 Campodonicos 2 -1001000 embalmers 2 -1001000 Wahrmans 2 -1001000 ex-officer 2 -1001000 WGDB 2 -1001000 partership 2 -1001000 S81 2 -1001000 Milsteins 2 -1001000 bridegroom 2 -1001000 Rosses 2 -1001000 handscroll 2 -1001000 SLT/286 2 -1001000 SwissChamp 2 -1001000 Swensons 2 -1001000 Oneidas 2 -1001000 Pragmatist 2 -1001000 Saxons 3 -1001000 doge 3 -1001000 Frasers 3 -1001000 CCIFP 3 -1001000 Kaskels 3 -1001000 QE2 3 -1001000 minimagazine 3 -1001000 Pasdaran 3 -1001000 FNYIFA 3 -1001000 SX-70 3 -1001000 Burdas 4 -1001000 cameraperson 4 -1001000 telecommuter 4 -1001000 Tanskis 4 -1001000 Review-Journal 6 -1001000 Carnivore 6 -1001000 comany 6 -1001000 taxman 7 -1001000 EIU 7 -1001000 Galloways 7 -1001000 IBA 7 -1001000 Coloradan 8 -1001000 divisor 10 -1001000 coroner 11 -1001000 OTS 11 -1001000 Erria 12 -1001000 toymaker 14 -1001000 Raleses 15 -1001000 Hollanders 18 -1001000 company 123986 -1001000 pope 248 -100100100 Steel-Net 1 -100100100 rhetoric-and-run 1 -100100100 transept 1 -100100100 health-care-financing 1 -100100100 non-eating 1 -100100100 McLanguage 1 -100100100 grotto 1 -100100100 crop-year 1 -100100100 capital-planning 1 -100100100 semi-unification 1 -100100100 undynamic 1 -100100100 Bohmerwald 1 -100100100 CW-capable 1 -100100100 dive-bomber 1 -100100100 Busoni 1 -100100100 gastronome 2 -100100100 twig 2 -100100100 90-footers 2 -100100100 coliseum 2 -100100100 Yorkshireman 2 -100100100 flibbertigibbet 2 -100100100 deviationism 2 -100100100 porker 2 -100100100 rube 2 -100100100 Indiana-sized 2 -100100100 Lazour 2 -100100100 Wandelaar 2 -100100100 clockmaker 2 -100100100 ump 2 -100100100 darkroom 3 -100100100 heartlands 3 -100100100 troglodyte 3 -100100100 cuticle 3 -100100100 gastropod 3 -100100100 hunter-gatherer 3 -100100100 jacuzzi 3 -100100100 wrecker 3 -100100100 Ganges 3 -100100100 streetwalker 3 -100100100 Sahand 4 -100100100 AFLCIO 4 -100100100 newsweeklies 4 -100100100 Boers 4 -100100100 ALA 4 -100100100 Arizonan 4 -100100100 Conqueror 4 -100100100 proscenium 4 -100100100 dodo 4 -100100100 nostrum 4 -100100100 ZJ 4 -100100100 mahout 5 -100100100 cove 5 -100100100 Saddledome 5 -100100100 Sabalan 6 -100100100 loon 6 -100100100 nurseryman 6 -100100100 ZEN 7 -100100100 epoch 7 -100100100 farmhand 7 -100100100 lessee 8 -100100100 postman 8 -100100100 trachea 8 -100100100 griever 9 -100100100 kidnapper 9 -100100100 genus 9 -100100100 roadsides 9 -100100100 isthmus 10 -100100100 Occupation 10 -100100100 estuary 10 -100100100 Silverdome 11 -100100100 Poconos 11 -100100100 city-state 13 -100100100 Ozarks 13 -100100100 highlands 15 -100100100 emirate 16 -100100100 Kansan 16 -100100100 hive 17 -100100100 motherland 17 -100100100 PRO 17 -100100100 lifeboat 17 -100100100 layman 22 -100100100 mid-50s 22 -100100100 eelpout 23 -100100100 Superdome 23 -100100100 mid-20s 24 -100100100 hen 24 -100100100 prefecture 25 -100100100 tortoise 25 -100100100 archipelago 25 -100100100 vine 26 -100100100 Gipper 27 -100100100 convent 27 -100100100 piper 27 -100100100 canyon 32 -100100100 archdiocese 32 -100100100 YMCA 35 -100100100 Ripper 39 -100100100 sultan 47 -100100100 butterfly 52 -100100100 governorship 52 -100100100 monastery 53 -100100100 hemisphere 59 -100100100 sheik 63 -100100100 winery 64 -100100100 rim 64 -100100100 devil 80 -100100100 ruble 99 -100100100 tribe 112 -100100100 peninsula 124 -100100100 masses 157 -100100100 planet 161 -100100100 valley 161 -100100100 colonel 197 -100100100 emperor 207 -100100100 continent 212 -100100100 kingdom 255 -100100100 issuer 307 -100100100 republic 326 -100100100 borrower 355 -100100100 reader 373 -100100100 river 416 -100100100 league 516 -100100100 coast 572 -100100100 cartel 598 -100100100 province 660 -100100100 museum 789 -100100100 island 833 -100100100 region 2550 -100100100 country 13400 -100100100 city 5861 -1001001010 more-pessimistic 1 -1001001010 farm-based 1 -1001001010 Tibet-Nepal 1 -1001001010 Gippsland 1 -1001001010 1,200-room 1 -1001001010 drip-filter 1 -1001001010 foggier 1 -1001001010 labor-starved 1 -1001001010 nitrogen-filled 1 -1001001010 Provencale 1 -1001001010 cockpit-to-cockpit 1 -1001001010 then-famous 1 -1001001010 scratch-and-win 1 -1001001010 most-innocuous 1 -1001001010 cardiac-care 1 -1001001010 Saskatchewan-Alberta 1 -1001001010 Trans-Arabian 1 -1001001010 Whiterose 1 -1001001010 Mexico-Guatemala 1 -1001001010 3,986-mile 1 -1001001010 insurgency-wracked 1 -1001001010 1,400-year-old 1 -1001001010 large-account 1 -1001001010 transisthmian 1 -1001001010 Honduras-Nicaragua 1 -1001001010 Soviet-Afghanistan 1 -1001001010 fold-away 1 -1001001010 immunodiagnostics 1 -1001001010 Quebec-U.S. 1 -1001001010 commodity-chip 1 -1001001010 Kentucky-Virginia 1 -1001001010 often-forecast 1 -1001001010 dreamiest 1 -1001001010 Marcos-ruled 1 -1001001010 prow-shaped 1 -1001001010 295-seat 1 -1001001010 sevennation 1 -1001001010 socialist-planned 1 -1001001010 Spain-Gibraltar 1 -1001001010 recession-stricken 1 -1001001010 Indian-Pakistani 1 -1001001010 ill-administered 1 -1001001010 dawn-tinged 1 -1001001010 Venezuela-Guyana 1 -1001001010 FINEX 1 -1001001010 internal-demand-driven 1 -1001001010 59-million-and-growing 1 -1001001010 lacklaster 1 -1001001010 stichomythic 1 -1001001010 Indiana-Ohio 1 -1001001010 pj 1 -1001001010 do-it-for-me 1 -1001001010 California-Nevada 1 -1001001010 still-jittery 1 -1001001010 heart-fitness 1 -1001001010 18-tanker 1 -1001001010 Nazi-devastated 1 -1001001010 recession-ravaged 1 -1001001010 Hungarian-Austrian 1 -1001001010 Sassan 1 -1001001010 insurgent-wracked 1 -1001001010 drapery-enfolded 1 -1001001010 French/German 1 -1001001010 181-pound-class 1 -1001001010 Afghan-Pakistani 1 -1001001010 Come-by-Chance 1 -1001001010 Quebec-Vermont 1 -1001001010 speed-limitless 1 -1001001010 chemicals-industry 1 -1001001010 Utah-Arizona 1 -1001001010 Angola-Namibian 1 -1001001010 Thai-Cambodia 1 -1001001010 Oklahoma-Arkansas 1 -1001001010 already-extended 1 -1001001010 trans-Andean 1 -1001001010 still-expanding 1 -1001001010 Yibal 1 -1001001010 sun-parched 1 -1001001010 dipeptide 1 -1001001010 Austro-Italian 1 -1001001010 agricultural-futures 1 -1001001010 Afghan-Pakistan 1 -1001001010 Jordan-Israel 1 -1001001010 Angola-Namibia 1 -1001001010 Malawian 1 -1001001010 Ethiopian-Sudanese 1 -1001001010 often-misleading 1 -1001001010 decades-wide 1 -1001001010 Exxon-Valdez 1 -1001001010 French-Swiss 1 -1001001010 dollar-fighting 1 -1001001010 expenditure-cutting 1 -1001001010 Ashland-based 1 -1001001010 mass-merchandiser 2 -1001001010 1264 2 -1001001010 war-strained 2 -1001001010 Honduran-Nicaraguan 2 -1001001010 40-room 2 -1001001010 Alberta-Saskatchewan 2 -1001001010 Tizio 2 -1001001010 460-member 2 -1001001010 Nevada-Arizona 2 -1001001010 windless 2 -1001001010 stingiest 2 -1001001010 letter-writer 2 -1001001010 sleazemonger 2 -1001001010 Automat 2 -1001001010 blurber 2 -1001001010 Quebec-Maine 2 -1001001010 Shiviyacu 2 -1001001010 Chungang 2 -1001001010 monsignor 2 -1001001010 now-cheaper 2 -1001001010 trans-Ecuadorian 2 -1001001010 lemon-yellow 2 -1001001010 track. 2 -1001001010 state-planned 3 -1001001010 Intifada 3 -1001001010 AFI 3 -1001001010 California-Oregon 3 -1001001010 all-aluminum 3 -1001001010 1979-1980 3 -1001001010 Entumeni 3 -1001001010 Charolais 3 -1001001010 Thai-Cambodian 3 -1001001010 Alaska-Siberia 3 -1001001010 Texas-Mexico 3 -1001001010 Khuzinstan 3 -1001001010 she-devil 3 -1001001010 inflation-battered 3 -1001001010 ERP 3 -1001001010 Talisman 3 -1001001010 Mistral 3 -1001001010 shins 4 -1001001010 flyways 4 -1001001010 aorta 4 -1001001010 broomcorn 4 -1001001010 noonday 4 -1001001010 Ogallala 4 -1001001010 RPA 4 -1001001010 crowd-pleaser 4 -1001001010 post-Marcos 4 -1001001010 Kenilworth-Parkside 5 -1001001010 Wilis 5 -1001001010 souffle 5 -1001001010 EWSD 5 -1001001010 Nicaraguan-Honduran 5 -1001001010 Bosporus 5 -1001001010 December-March 5 -1001001010 Friedrichstrasse 5 -1001001010 U.K 5 -1001001010 Manchus 5 -1001001010 Travicom 6 -1001001010 2,000-mile 7 -1001001010 early-1970s 7 -1001001010 Eighties 9 -1001001010 Unlikely 10 -1001001010 DOD 11 -1001001010 late-1970s 11 -1001001010 AFC 12 -1001001010 Clock 20 -1001001010 finder 35 -1001001010 Lavi 39 -1001001010 Earth 356 -1001001010 world 14714 -1001001010 Mideast 524 -1001001011 NAPM 1 -1001001011 care-giver 1 -1001001011 television-commercial-director 1 -1001001011 day-tripper 1 -1001001011 Hitchhiker 1 -1001001011 dry-gulcher 1 -1001001011 maket 1 -1001001011 carbuyer 1 -1001001011 lion-tamer 1 -1001001011 momnent 1 -1001001011 Dodge/Sweet 1 -1001001011 ex-premier 1 -1001001011 bus-driver 1 -1001001011 fairgoer 1 -1001001011 tax-man 1 -1001001011 PSEA 1 -1001001011 lemon-law 1 -1001001011 full-week 1 -1001001011 CMHC 1 -1001001011 biographee 1 -1001001011 Freedmen 1 -1001001011 Executioner 1 -1001001011 small-boy 1 -1001001011 antigen-vaccine 1 -1001001011 jew 1 -1001001011 Bootlegger 1 -1001001011 committe 1 -1001001011 Beggar 1 -1001001011 turbotrain 1 -1001001011 mourner 1 -1001001011 muezzin 1 -1001001011 early-1970 1 -1001001011 discount-retailer 1 -1001001011 USISA 1 -1001001011 paperboy 1 -1001001011 Epitaph 1 -1001001011 fabulator 1 -1001001011 pandora 1 -1001001011 parishoner 1 -1001001011 Flowt 1 -1001001011 drainer 1 -1001001011 doodler 1 -1001001011 Truxell 1 -1001001011 busman 1 -1001001011 bookworm 1 -1001001011 Gambel 1 -1001001011 Boyfriend 1 -1001001011 ski-jumper 1 -1001001011 baronet 1 -1001001011 railwaymen 1 -1001001011 sub-group 1 -1001001011 cetacean 1 -1001001011 Wartburg 1 -1001001011 adminostration 1 -1001001011 well-digger 1 -1001001011 flatfoot 1 -1001001011 Mealey 1 -1001001011 nation-next-door 1 -1001001011 UNFPA 1 -1001001011 foreign-correspondent 1 -1001001011 candymaker 1 -1001001011 battered-men 1 -1001001011 snake-charmer 1 -1001001011 Tyrant 1 -1001001011 100/200 1 -1001001011 bond-issuer 1 -1001001011 money-man 1 -1001001011 biller 1 -1001001011 stockowner 1 -1001001011 freedom-lover 1 -1001001011 cockatoo 1 -1001001011 albertosaurus 1 -1001001011 story-teller 1 -1001001011 life-sentence 1 -1001001011 note-holder 1 -1001001011 letterman 1 -1001001011 Loverboy 1 -1001001011 program.Canada 1 -1001001011 video-retailer 1 -1001001011 return-preparer 1 -1001001011 analysand 1 -1001001011 never-eat-at-a-place-called-Mom 1 -1001001011 military-party 1 -1001001011 IROC 1 -1001001011 ex-prof 1 -1001001011 sanctions-buster 1 -1001001011 doe 1 -1001001011 Carthaginian 1 -1001001011 registrant 1 -1001001011 developer-architect 1 -1001001011 Milliner 1 -1001001011 newsboy 1 -1001001011 livin 1 -1001001011 sweepstake 1 -1001001011 sheepfarmer 1 -1001001011 playwright/actor 1 -1001001011 congregant 1 -1001001011 Sears-McDonald 1 -1001001011 meuzzin 1 -1001001011 insitution 1 -1001001011 comissioner 1 -1001001011 flyfisherman 1 -1001001011 sugarcane 1 -1001001011 Sportswriter 1 -1001001011 CND 2 -1001001011 Vitosha 2 -1001001011 COB 2 -1001001011 mid-70 2 -1001001011 JJ. 2 -1001001011 dey 2 -1001001011 commish 2 -1001001011 Attwater 2 -1001001011 Tattletale 2 -1001001011 protestor 2 -1001001011 MPA 2 -1001001011 Tanakas 2 -1001001011 Kuboyes 2 -1001001011 proposer 2 -1001001011 dialectician 2 -1001001011 Jacquemart-Andre 2 -1001001011 businesman 2 -1001001011 born-salesman 2 -1001001011 Itinerary 2 -1001001011 coachman 2 -1001001011 appellant 2 -1001001011 half-month 2 -1001001011 tangwai 3 -1001001011 picador 3 -1001001011 vicomte 3 -1001001011 job-seeker 3 -1001001011 mini-conglomerate 3 -1001001011 kaiser 3 -1001001011 boatman 3 -1001001011 StrokeMaker 3 -1001001011 compay 3 -1001001011 complainant 4 -1001001011 FNM 4 -1001001011 CHA 4 -1001001011 Bolkiah 4 -1001001011 SFO 5 -1001001011 Dario 5 -1001001011 minidorm 5 -1001001011 Kitten 5 -1001001011 hangman 5 -1001001011 no-man 6 -1001001011 MISL 6 -1001001011 Furrier 7 -1001001011 NRECA 9 -1001001011 duchess 9 -1001001011 Rubik 9 -1001001011 ITA 9 -1001001011 hornet 10 -1001001011 Parthenon 12 -1001001011 sultanate 14 -1001001011 swami 15 -1001001011 synod 15 -1001001011 Shatt 15 -1001001011 Pandora 23 -1001001011 ayatollah 117 -1001001011 shah 133 -1001001011 lion 137 -1001001011 nation 9985 -1001001011 colony 400 -100100110 gold-market 1 -100100110 updaters 1 -100100110 rattlers 1 -100100110 downstater 1 -100100110 171,308 1 -100100110 adamancy 1 -100100110 shamefulness 1 -100100110 more-rapid-than-expected 1 -100100110 commercial-bearing 1 -100100110 zephyr 1 -100100110 owner-to-be 1 -100100110 shirt-maker 1 -100100110 attachable 1 -100100110 dollar-induced 1 -100100110 Herreras 1 -100100110 discount-travel 1 -100100110 Lion-hearted 1 -100100110 people-watcher 1 -100100110 tibia 1 -100100110 back-log 1 -100100110 five-night 1 -100100110 God/There 1 -100100110 Jauchlers 1 -100100110 cud 1 -100100110 Selzers 1 -100100110 Stormtroopers 1 -100100110 Chetniks 1 -100100110 Detwilers 1 -100100110 Palmerites 1 -100100110 Altays 1 -100100110 clarions 1 -100100110 mobility-impaired 1 -100100110 rubled 1 -100100110 249,770 1 -100100110 Luz-Ardiden 1 -100100110 Taorminas 1 -100100110 Lumbermen 1 -100100110 Muchas 1 -100100110 bushman 1 -100100110 abbe 1 -100100110 coyest 1 -100100110 malpractice-policy 1 -100100110 geeps 1 -100100110 512-seat 1 -100100110 imposingly 1 -100100110 brooders-about-1929 1 -100100110 long-since 1 -100100110 Boxells 1 -100100110 al-Anonos 1 -100100110 25-yarder 1 -100100110 CL215T 1 -100100110 Lapenters 1 -100100110 late-buying 1 -100100110 hard-timers 1 -100100110 communicant 1 -100100110 home-owner 1 -100100110 piris 1 -100100110 watercourse 1 -100100110 400-line 1 -100100110 1,186-page 1 -100100110 brewery-scion-turned-banker 1 -100100110 Plunger 1 -100100110 thrfit 1 -100100110 NYPD 1 -100100110 Congressperson 1 -100100110 NCSC 1 -100100110 MGs 1 -100100110 chumming 1 -100100110 single-B-minus/C-rated 1 -100100110 Becker-Lendl 1 -100100110 fretboard 1 -100100110 outlands 1 -100100110 specialness 1 -100100110 pork-filled 1 -100100110 Circus-Circus 1 -100100110 pregame 1 -100100110 Single-A/A-1 1 -100100110 Bergers 1 -100100110 Brices 1 -100100110 829,200 1 -100100110 mythmaking 1 -100100110 deep-yellow 1 -100100110 strike-hobbled 1 -100100110 Riggis 1 -100100110 Clintons 1 -100100110 120-period 1 -100100110 dead-cat 1 -100100110 666,400 1 -100100110 spend-now 1 -100100110 payments-freeze 1 -100100110 payments-ban 1 -100100110 dromedary 2 -100100110 PEG-ADA 2 -100100110 beer-related 2 -100100110 Wigwam 2 -100100110 picturephone 2 -100100110 frostbiters 2 -100100110 Olivieris 2 -100100110 merger-mania 2 -100100110 whiting 2 -100100110 855S 2 -100100110 friars 2 -100100110 Highwaymen 2 -100100110 FT30 2 -100100110 extractant 2 -100100110 Sagamore 2 -100100110 200-pounder 2 -100100110 mainsail 2 -100100110 Thomsons 2 -100100110 discrepencies 2 -100100110 Slatkins 2 -100100110 GEs 2 -100100110 M-380 2 -100100110 Zieglers 2 -100100110 low-loads 2 -100100110 FL657 2 -100100110 on-paper 2 -100100110 Workslate 3 -100100110 Campbells 3 -100100110 testicles 3 -100100110 Malvinas 3 -100100110 Metges 3 -100100110 Piobaireachd 3 -100100110 nefos 3 -100100110 NCBB 3 -100100110 stent 3 -100100110 SS-19 3 -100100110 Benders 3 -100100110 Modarressis 3 -100100110 Indianan 3 -100100110 Decembrists 3 -100100110 clownish 3 -100100110 Dauphine 3 -100100110 Deutschemark 3 -100100110 debugger 3 -100100110 20K 4 -100100110 late-1987 4 -100100110 BOJ 4 -100100110 hypothalamus 4 -100100110 Hatfields 4 -100100110 Hindenburg 4 -100100110 FHFB 4 -100100110 Fridge 4 -100100110 Sixers 4 -100100110 Bedspreadmaker 5 -100100110 shortest-term 5 -100100110 Nenad 6 -100100110 Oriskany 6 -100100110 Yevropeiskaya 6 -100100110 Sniper 6 -100100110 IAM 6 -100100110 WEU 7 -100100110 Mark-50 7 -100100110 JUA 7 -100100110 lizard 8 -100100110 Repository 9 -100100110 CNCL 9 -100100110 Maranon 11 -100100110 Sephardim 12 -100100110 AWSJ 14 -100100110 zloty 15 -100100110 LEI 16 -100100110 DJIA 19 -100100110 Bima 20 -100100110 Casbah 28 -100100110 peseta 34 -100100110 greenback 70 -100100110 CPI 91 -100100110 peso 239 -100100110 dollar 23007 -100100110 latter 702 -100100111 flower. 1 -100100111 Jacobins 1 -100100111 Lusitania 1 -100100111 NICSs 1 -100100111 pike. 1 -100100111 cheesesteak 1 -100100111 heebiejeebies 1 -100100111 placemat 1 -100100111 Taunus 1 -100100111 gundeck 1 -100100111 Sun-1 1 -100100111 Marseillaise 1 -100100111 M-240 1 -100100111 M-280 1 -100100111 regs 1 -100100111 floor. 1 -100100111 empyrean 1 -100100111 self-assertiveness 1 -100100111 Laramies 1 -100100111 Upjohns 1 -100100111 corpmembers 1 -100100111 Majordomo 1 -100100111 woodpulp 1 -100100111 Hochland 1 -100100111 Oresteia 1 -100100111 measurer 1 -100100111 dominions 1 -100100111 crankiest 1 -100100111 masses. 1 -100100111 backog 1 -100100111 request-for-proposal 1 -100100111 Tontons-Macoute 1 -100100111 PADS 1 -100100111 Americanos 1 -100100111 not-so-celebrated 1 -100100111 legroom 1 -100100111 staff. 1 -100100111 exchanges. 1 -100100111 don't-cares 1 -100100111 homeless. 1 -100100111 worker-plaintiff 1 -100100111 church. 1 -100100111 cup. 1 -100100111 disinheritance 1 -100100111 ha-ha 1 -100100111 hostages. 1 -100100111 Pulsifers 1 -100100111 record. 1 -100100111 West. 1 -100100111 penny. 1 -100100111 border. 1 -100100111 Wahhabi 1 -100100111 Indo-U.S.S.R. 1 -100100111 Ramones 1 -100100111 comebacker 1 -100100111 Waitzkins 1 -100100111 Maul 1 -100100111 arabicas 1 -100100111 bushelful 1 -100100111 survey. 1 -100100111 strikers. 1 -100100111 screw-head 1 -100100111 DEBT-MOCRATS 1 -100100111 pastorate 1 -100100111 floccinaucinihilipilification 1 -100100111 Democrats. 1 -100100111 Gregarious 1 -100100111 downstroke 1 -100100111 affray 1 -100100111 reinterpreters 1 -100100111 paranormal 1 -100100111 Venders 1 -100100111 Finansbank 1 -100100111 Placebo 1 -100100111 compamy 1 -100100111 voiceover 1 -100100111 Volga-diving 1 -100100111 l960s 1 -100100111 ECGD 1 -100100111 80C286 1 -100100111 Martinezes 1 -100100111 briefing-book-speak 1 -100100111 BPOA 1 -100100111 non-churchgoers 1 -100100111 proliferators 1 -100100111 sea-coast 1 -100100111 parent. 1 -100100111 Euro-pie 1 -100100111 quale 1 -100100111 two-wheeler 1 -100100111 pro-abortionist 1 -100100111 Portnoys 1 -100100111 N-word 1 -100100111 icky-stickiness 1 -100100111 Lennymania 1 -100100111 Minutemen 1 -100100111 driveshaft 1 -100100111 division. 1 -100100111 position-takers 1 -100100111 broker-traders 1 -100100111 Limmat 1 -100100111 zinger-meister 1 -100100111 garbagemen 1 -100100111 quickshops 1 -100100111 MH-60K 1 -100100111 Ayat 1 -100100111 overdelegator 1 -100100111 owners. 1 -100100111 130s 1 -100100111 Mark-46 1 -100100111 payors 1 -100100111 cymbidiums 1 -100100111 Lodger 1 -100100111 Sophisticatz 1 -100100111 unclubbable 1 -100100111 Sandinistas. 1 -100100111 Lifeboats 1 -100100111 odd-man-out 1 -100100111 situation. 1 -100100111 nationbuilders 1 -100100111 Soilers 1 -100100111 Pretenders 1 -100100111 Ex-Patriots 1 -100100111 Beagles 1 -100100111 thunbergia 1 -100100111 Reinerts 1 -100100111 corrugation 1 -100100111 shut-out 1 -100100111 keyword 1 -100100111 windstorms 1 -100100111 snail-darter 1 -100100111 undebunkable 1 -100100111 laundryman 1 -100100111 Baskervilles 1 -100100111 mega-leveraged-buy-out 1 -100100111 once-mundane 1 -100100111 Nazi-hunter 1 -100100111 corruption. 1 -100100111 Deeps 1 -100100111 firebase 1 -100100111 heather 1 -100100111 Punisher 1 -100100111 jetty 1 -100100111 minibattle 1 -100100111 legalizations 1 -100100111 lecturn 1 -100100111 Spokesman-Review 1 -100100111 offense. 1 -100100111 MiniTower 1 -100100111 sticky-sweetness 1 -100100111 full-loads 1 -100100111 Halves 1 -100100111 Tropics 1 -100100111 rear-wheels 1 -100100111 scrapheap 1 -100100111 boomdocks 1 -100100111 microcosmos 1 -100100111 narrator-protagonist 1 -100100111 gunsel 1 -100100111 A-team 1 -100100111 lowborn 1 -100100111 Sot 1 -100100111 pelters 1 -100100111 paunches 1 -100100111 Opera-Comique 1 -100100111 Sundown 1 -100100111 psycho-killer 1 -100100111 prospekt 1 -100100111 laxers 1 -100100111 yard. 1 -100100111 weekend. 1 -100100111 knowledge-worker 1 -100100111 pan. 1 -100100111 halyard 1 -100100111 vivarium 1 -100100111 HoffmanBormanGallery 1 -100100111 commercial. 1 -100100111 Amalekites 1 -100100111 nene 1 -100100111 fifth-in-a-row 1 -100100111 ex-Mrs 1 -100100111 carport 1 -100100111 claimers 1 -100100111 ex-Nazi 1 -100100111 Dittos 1 -100100111 superconsumer 1 -100100111 trailhead 1 -100100111 haziest 1 -100100111 fuselage. 1 -100100111 840S 1 -100100111 legislature. 1 -100100111 tax-hikers 1 -100100111 Morgontorn 1 -100100111 fly-by-nights 1 -100100111 machines. 1 -100100111 sand. 1 -100100111 Minotaur 1 -100100111 Rijksmuseum 1 -100100111 beneficiary. 1 -100100111 gun-battle 1 -100100111 museum-goer 1 -100100111 remaidner 1 -100100111 mouse. 1 -100100111 best-hoops-ensemble-ever 1 -100100111 bass. 1 -100100111 curtain-raiser 1 -100100111 eye. 1 -100100111 Yellobag 1 -100100111 misprints 1 -100100111 perforator 1 -100100111 Ghermezians 1 -100100111 Adirondacks 1 -100100111 earldom 1 -100100111 paperflow 1 -100100111 Berezina 1 -100100111 Crackerjacks 1 -100100111 dislikable 1 -100100111 mini-disk 1 -100100111 Arbatovs 1 -100100111 stall-out 1 -100100111 centrist-conservative 1 -100100111 McBud 1 -100100111 gun. 1 -100100111 Nolanistas 1 -100100111 conference. 1 -100100111 gym. 1 -100100111 Wallendatorium 1 -100100111 empresarios 1 -100100111 RPMs 1 -100100111 time-being 1 -100100111 holidays. 1 -100100111 Reichstag 1 -100100111 adogiwa-zoku 1 -100100111 superinvestors 1 -100100111 mange 1 -100100111 homefolk 1 -100100111 Expediter 1 -100100111 pageant. 1 -100100111 viewer-voyeur 1 -100100111 expense-cutting 1 -100100111 self-starter 1 -100100111 Auerbachs 1 -100100111 Histradut 1 -100100111 Scantlings. 1 -100100111 backboards 1 -100100111 owners/customers 1 -100100111 Overflow 1 -100100111 self-irony 1 -100100111 arse 1 -100100111 ecomomy 1 -100100111 owner-client 1 -100100111 child-to-be 1 -100100111 puchaser 1 -100100111 2700s 1 -100100111 Agaship 1 -100100111 1960s-flowerchild-turned-1980s-Yuppie 1 -100100111 indigenes 1 -100100111 hoaxers 1 -100100111 Aztecs 1 -100100111 porta-johns 1 -100100111 Jesuits. 1 -100100111 screenful 1 -100100111 accordionist 1 -100100111 advisee 1 -100100111 Krupps 1 -100100111 pompadour 1 -100100111 Bi-Zone 1 -100100111 malefaction 1 -100100111 diggings 1 -100100111 Rockers 1 -100100111 R-5 1 -100100111 Mescalaro 1 -100100111 Spits 1 -100100111 Benedictus 1 -100100111 tricicleto 1 -100100111 super-greedy 1 -100100111 Deep-Minded 1 -100100111 mid-heaven 1 -100100111 chaperones 1 -100100111 grip. 1 -100100111 P-7As 1 -100100111 bullethole 1 -100100111 heliopause 1 -100100111 librettos 1 -100100111 Ultimatte 1 -100100111 gumline 1 -100100111 Kahanites 1 -100100111 wigglers 1 -100100111 Commendatore 1 -100100111 nonsuccessful 1 -100100111 Dreamtime 1 -100100111 ZPG 1 -100100111 annunciation 1 -100100111 smut-battlers 1 -100100111 defender. 1 -100100111 Doughboys 1 -100100111 Jackal 1 -100100111 beeper-pager 1 -100100111 olympics 1 -100100111 scourge. 1 -100100111 ex-creditor 1 -100100111 afterlife. 1 -100100111 3090-E 1 -100100111 32/650 1 -100100111 chaparral 1 -100100111 best-remembered 1 -100100111 selfemployed 1 -100100111 bombblasts 1 -100100111 vibraphones 1 -100100111 licence 1 -100100111 Brazil-U.S. 1 -100100111 helio-copter 1 -100100111 negativist 1 -100100111 governship 1 -100100111 ordinary. 1 -100100111 Gringos 1 -100100111 CRX-HF 1 -100100111 Blocs 1 -100100111 mortgage-business 1 -100100111 Solomons 1 -100100111 Leningraders 1 -100100111 Rekord 1 -100100111 corps. 1 -100100111 cover. 1 -100100111 undefendable 1 -100100111 specifications. 1 -100100111 subtance 1 -100100111 Triplex 1 -100100111 crossbar 1 -100100111 cancellaton 1 -100100111 13th. 1 -100100111 selftender 1 -100100111 SU-85B 1 -100100111 Mohicans 1 -100100111 forefront. 1 -100100111 distractor 1 -100100111 Dutch. 1 -100100111 splitter 1 -100100111 Rinkas 1 -100100111 handoff 1 -100100111 whatevers 1 -100100111 then-Rev 1 -100100111 mega-operas 1 -100100111 nominaton 1 -100100111 subholdings 1 -100100111 snorkeler 1 -100100111 Pez 1 -100100111 Barneses 1 -100100111 voters. 1 -100100111 vanful 1 -100100111 doctor/author 1 -100100111 zestful 1 -100100111 mother-at-home 1 -100100111 numbers. 1 -100100111 slackers 1 -100100111 slugfests 1 -100100111 queenside 1 -100100111 ultra-rich 1 -100100111 yakkers 1 -100100111 narco-communists 1 -100100111 NDP. 1 -100100111 K-word 1 -100100111 Sibaral 1 -100100111 nation-modern 1 -100100111 indecorous 1 -100100111 NCAAs 1 -100100111 least. 1 -100100111 Phoenicians 1 -100100111 what-ifs 1 -100100111 hot-seller 1 -100100111 oil-driller 1 -100100111 already-nervous 1 -100100111 lease-owner 1 -100100111 '89s 1 -100100111 house. 1 -100100111 Y2 1 -100100111 technolology 1 -100100111 Governed 1 -100100111 Enchanter 1 -100100111 archvillain 1 -100100111 licker 1 -100100111 doubler 1 -100100111 miler 1 -100100111 collective. 1 -100100111 Mazurka 1 -100100111 Sachers 1 -100100111 floatation 1 -100100111 RICO-butchering 1 -100100111 spoutees 1 -100100111 dockhouse 1 -100100111 unmaking 1 -100100111 A-bomb-droppers 1 -100100111 mangroves 1 -100100111 wackos 1 -100100111 unk-unks 1 -100100111 gut-shooting 1 -100100111 sun-loving 1 -100100111 Phillipines 1 -100100111 jangles 1 -100100111 penmanship 1 -100100111 KBG 1 -100100111 mid-1600s 1 -100100111 dustbowl 1 -100100111 physician-suppliers 1 -100100111 Tsuru 1 -100100111 inseminations 1 -100100111 8mm-format 1 -100100111 barracks. 1 -100100111 Children. 1 -100100111 instep 1 -100100111 Shires 1 -100100111 footlights. 1 -100100111 powpow 1 -100100111 afterburners 1 -100100111 same. 1 -100100111 richissimos 1 -100100111 wells. 1 -100100111 Four-in-Hand 1 -100100111 sibilants 1 -100100111 Rip-off 1 -100100111 Vus 1 -100100111 carbonara 1 -100100111 services-oriented 1 -100100111 dialecticians 1 -100100111 NV-144 1 -100100111 Dushmans 1 -100100111 rules. 1 -100100111 play-within-a-play 1 -100100111 breadline 1 -100100111 Sixteenth 1 -100100111 Crawfords 1 -100100111 Dunns 1 -100100111 five-and-ten 1 -100100111 shires 1 -100100111 mudhole 1 -100100111 harpsichordist 1 -100100111 18-to-35-year-olds 1 -100100111 stouthearted 1 -100100111 386/33 1 -100100111 Misbegotten 1 -100100111 jetstream 1 -100100111 Iguana 1 -100100111 Senate. 1 -100100111 WAVE. 2 -100100111 Maritimes 2 -100100111 commonweal 2 -100100111 pseudonomads 2 -100100111 cortex 2 -100100111 prof 2 -100100111 semi-finalists 2 -100100111 Kyrie 2 -100100111 pushup 2 -100100111 millenium 2 -100100111 past. 2 -100100111 Mandelas 2 -100100111 McNugget 2 -100100111 Coordinadora 2 -100100111 corporativists 2 -100100111 mini- 2 -100100111 1670s 2 -100100111 cowherd 2 -100100111 Barabars 2 -100100111 Amudarya 2 -100100111 anitus 2 -100100111 Cornbelt 2 -100100111 1790s 2 -100100111 Sixes 2 -100100111 TLWP 2 -100100111 Gorilla 2 -100100111 sabbath 2 -100100111 Mermaid 2 -100100111 press. 2 -100100111 above. 2 -100100111 Warpath 2 -100100111 chancel 2 -100100111 iconostasis 2 -100100111 facililty 2 -100100111 sharpshooter 2 -100100111 onionmeter 2 -100100111 Fed. 2 -100100111 Contras. 2 -100100111 Thorns 2 -100100111 Padmini 2 -100100111 tobacconist 2 -100100111 Trincheros 2 -100100111 tippee 2 -100100111 Lilliputians 2 -100100111 Raeletts 2 -100100111 Sadies 2 -100100111 neocons 2 -100100111 gaiety 2 -100100111 squids 2 -100100111 Merciful 2 -100100111 Stricklands 2 -100100111 Amerikanis 2 -100100111 Reaganauts 2 -100100111 sales. 2 -100100111 heartaches 2 -100100111 phone. 2 -100100111 Magazaniks 2 -100100111 Isopoint 2 -100100111 Nenes 2 -100100111 Kadoories 2 -100100111 castrato 2 -100100111 peephole 2 -100100111 left. 2 -100100111 buck. 2 -100100111 Sun-Tattler 2 -100100111 Hoosierdome 2 -100100111 M&Ms 2 -100100111 truth. 2 -100100111 Nineties 2 -100100111 divinities 2 -100100111 pralines 2 -100100111 fauves 2 -100100111 Amandebele 2 -100100111 credit-earners 2 -100100111 H-II 2 -100100111 Coetzees 2 -100100111 Mysterians 2 -100100111 Sulejmanagics 2 -100100111 Bombergs 2 -100100111 Amazin 2 -100100111 secularists 2 -100100111 NIRA 2 -100100111 Tampa/St 2 -100100111 glens 2 -100100111 Ballgame 2 -100100111 LDEF 2 -100100111 aright 2 -100100111 scoffers 2 -100100111 Clash 2 -100100111 Fuggers 2 -100100111 Peacemakers 2 -100100111 warfront 2 -100100111 0-86 2 -100100111 Chongela 2 -100100111 BOPA 2 -100100111 Seraglio 2 -100100111 opera-lovers 2 -100100111 device. 2 -100100111 sunbelt 2 -100100111 rapidily 2 -100100111 whitecaps 2 -100100111 population. 2 -100100111 semanticists 2 -100100111 Rifleman 2 -100100111 fantods 2 -100100111 Venturis 2 -100100111 Springers 2 -100100111 Buhrs 2 -100100111 Nilgeses 2 -100100111 FHLBs 2 -100100111 mantlepiece 2 -100100111 Ruins 2 -100100111 Pentagon. 2 -100100111 parents-to-be 2 -100100111 anteater 3 -100100111 Barbarian 3 -100100111 Florendos 3 -100100111 anti-Christ 3 -100100111 Subcontinent 3 -100100111 five-miles-an-hour 3 -100100111 beaters 3 -100100111 Eurocracy 3 -100100111 orb 3 -100100111 Rimstalker 3 -100100111 SOBs 3 -100100111 fortepiano 3 -100100111 autobahn 3 -100100111 Mogopas 3 -100100111 ex-partners 3 -100100111 BioDreads 3 -100100111 tablers 3 -100100111 Duvalls 3 -100100111 PSD 3 -100100111 80286-16 3 -100100111 confiteria 3 -100100111 TGWU 3 -100100111 airport. 3 -100100111 Bigelows 3 -100100111 Botschaft 3 -100100111 Round-Up 3 -100100111 Kuriles 3 -100100111 Aliotos 3 -100100111 out-of-doors 3 -100100111 McDeals 3 -100100111 treetops 3 -100100111 quarter-finals 3 -100100111 frontrunning 3 -100100111 Maronites 3 -100100111 IIgs 3 -100100111 inferno 3 -100100111 Chuns 3 -100100111 Pollards 3 -100100111 borderlands 3 -100100111 Tsjudes 3 -100100111 Elms 3 -100100111 Moncriefs 4 -100100111 EESP 4 -100100111 Glashaus 4 -100100111 twitch-peavey-deck 4 -100100111 bigs 4 -100100111 hausfrau 4 -100100111 Rutans 4 -100100111 Dordogne 4 -100100111 Beehive 4 -100100111 crabbers 4 -100100111 woodshed 4 -100100111 Wishnicks 4 -100100111 glitterati 4 -100100111 headboard 4 -100100111 speechmaker 4 -100100111 Ahlgrens 4 -100100111 autobahns 4 -100100111 DDR 4 -100100111 stooges 4 -100100111 Ayatollahs 4 -100100111 RFC 4 -100100111 LGP 4 -100100111 Lewises 4 -100100111 ACCT 4 -100100111 Seychelles 4 -100100111 sacadolares 4 -100100111 juicer 4 -100100111 home-builder 4 -100100111 board. 4 -100100111 electrolyte 4 -100100111 IASC 4 -100100111 cityscape 4 -100100111 Hortons 4 -100100111 adoptee 4 -100100111 Haidas 4 -100100111 papacy 4 -100100111 merchantman 4 -100100111 Hades 4 -100100111 agency. 4 -100100111 Fonz 4 -100100111 sucre 4 -100100111 economy. 5 -100100111 Womanagh 5 -100100111 Berlaymont 5 -100100111 Y.O. 5 -100100111 kyoppo 5 -100100111 Paulista 5 -100100111 Acropolis 5 -100100111 anesthesiologist 5 -100100111 Scriptures 5 -100100111 Copts 5 -100100111 Tigris 5 -100100111 midteens 5 -100100111 Pips 5 -100100111 provenance 5 -100100111 Comintern 5 -100100111 NKVD 5 -100100111 matchbook 5 -100100111 PRD 5 -100100111 DGI 5 -100100111 13ths 5 -100100111 Pyrenees 5 -100100111 CNFR 5 -100100111 Khashoggis 5 -100100111 Panovs 5 -100100111 Waltons 5 -100100111 Atchafalaya 5 -100100111 Flicks 5 -100100111 AX-5 5 -100100111 Nicholsons 5 -100100111 Gallos 5 -100100111 OEX 5 -100100111 E-10 6 -100100111 SACP 6 -100100111 fatherland 6 -100100111 Ngos 6 -100100111 intifada 6 -100100111 handlebars 6 -100100111 Hawkettes 6 -100100111 Nationals 6 -100100111 zodiac 6 -100100111 Nats 6 -100100111 beater 6 -100100111 non-communists 6 -100100111 Sun-4/110 6 -100100111 mid-teens 6 -100100111 Bornecks 6 -100100111 Oltcit 6 -100100111 merrier 6 -100100111 Witwatersrand 6 -100100111 Ptolemies 6 -100100111 Hendersons 6 -100100111 DMZ 6 -100100111 bastards 6 -100100111 Annenbergs 6 -100100111 Saarland 6 -100100111 Bundeswehr 7 -100100111 Rappahannock 7 -100100111 world. 7 -100100111 SAP 7 -100100111 Chautauquans 7 -100100111 BRZ 7 -100100111 NFSW 7 -100100111 extremities 7 -100100111 Crimea 7 -100100111 Dobrins 7 -100100111 mid-1800s 7 -100100111 mid-60s 7 -100100111 Estates-General 7 -100100111 vicar 7 -100100111 Taylors 7 -100100111 Malloys 7 -100100111 Wrights 7 -100100111 guillotine 8 -100100111 Himalayas 8 -100100111 naira 8 -100100111 Iran-U.S. 8 -100100111 ancients 8 -100100111 penis 8 -100100111 Osmonds 8 -100100111 FSIA 8 -100100111 Sturmans 8 -100100111 Euphrates 8 -100100111 T-word 8 -100100111 Tompkinses 8 -100100111 Adriatic 8 -100100111 Incas 8 -100100111 barrens 8 -100100111 Roccas 8 -100100111 bandstand 9 -100100111 Festspielhaus 9 -100100111 PHPO 9 -100100111 cob 9 -100100111 riverbed 9 -100100111 fittest 9 -100100111 hustings 9 -100100111 Enlightenment 9 -100100111 U.A.E. 9 -100100111 grindstone 9 -100100111 superstructure 9 -100100111 equator 10 -100100111 peasantry 10 -100100111 Merciless 10 -100100111 royals 10 -100100111 Azores 10 -100100111 mujahadeen 10 -100100111 wishbone 10 -100100111 gills 10 -100100111 Mezzogiorno 10 -100100111 Tulipmania 11 -100100111 Anschluss 11 -100100111 Brautigams 11 -100100111 ZCBs 11 -100100111 Bundys 11 -100100111 Oppenheimers 11 -100100111 cosmos 12 -100100111 lam 12 -100100111 Aleutians 12 -100100111 F-20s 13 -100100111 Joneses 13 -100100111 speakership 13 -100100111 Posners 13 -100100111 drachma 13 -100100111 Sphinx 13 -100100111 Vanities 14 -100100111 Balkans 14 -100100111 Koala 14 -100100111 petitioner 14 -100100111 Seine 14 -100100111 outback 14 -100100111 Volga 15 -100100111 mid-70s 15 -100100111 hatches 15 -100100111 Thalia 15 -100100111 impressionists 15 -100100111 foreground 15 -100100111 strait 16 -100100111 rafters 16 -100100111 hinterlands 16 -100100111 Pilgrims 16 -100100111 Caucasus 17 -100100111 Sejm 17 -100100111 austral 17 -100100111 pike 17 -100100111 tropics 17 -100100111 Gulag 17 -100100111 bleachers 18 -100100111 Jesuits 18 -100100111 dinar 18 -100100111 Bolsheviks 19 -100100111 uninitiated 19 -100100111 Elbe 19 -100100111 Majors 19 -100100111 proletariat 19 -100100111 esophagus 19 -100100111 dais 20 -100100111 subcontinent 21 -100100111 wearer 21 -100100111 panhandle 22 -100100111 Beast 22 -100100111 Andes 22 -100100111 Bundestag 22 -100100111 birthrate 23 -100100111 Arbat 23 -100100111 gulag 24 -100100111 Danube 24 -100100111 heavens 25 -100100111 feds 25 -100100111 uterus 26 -100100111 premiership 27 -100100111 Urals 27 -100100111 Pershings 27 -100100111 Dakotas 27 -100100111 intelligentsia 27 -100100111 accordion 28 -100100111 womb 28 -100100111 UAE 29 -100100111 floodgates 31 -100100111 Rockies 34 -100100111 monarchy 36 -100100111 coastline 36 -100100111 Skins 36 -100100111 abyss 37 -100100111 skids 37 -100100111 Carolinas 38 -100100111 pendulum 39 -100100111 originals 42 -100100111 fore 43 -100100111 Rhine 44 -100100111 throne 44 -100100111 Amazon 44 -100100111 Titanic 45 -100100111 Framers 47 -100100111 stratosphere 48 -100100111 Koran 51 -100100111 monarch 51 -100100111 citizenry 53 -100100111 Reagans 54 -100100111 Ukraine 55 -100100111 Continent 58 -100100111 Marcoses 59 -100100111 bloodstream 61 -100100111 Euromarkets 63 -100100111 populace 67 -100100111 Pritzkers 72 -100100111 iceberg 77 -100100111 limelight 77 -100100111 airwaves 80 -100100111 mujahideen 82 -100100111 mujahedeen 84 -100100111 Beatles 85 -100100111 offing 94 -100100111 lira 104 -100100111 Nazis 107 -100100111 frigate 109 -100100111 skies 120 -100100111 Mediterranean 139 -100100111 woods 155 -100100111 globe 172 -100100111 Bahamas 173 -100100111 contras 182 -100100111 Taj 184 -100100111 countryside 224 -100100111 horizon 256 -100100111 sky 267 -100100111 mainland 305 -100100111 electorate 306 -100100111 U.S.S.R. 363 -100100111 sun 379 -100100111 insurgents 483 -100100111 sidelines 518 -100100111 Sandinistas 774 -100100111 Netherlands 835 -100100111 gulf 926 -100100111 marketplace 1007 -100100111 Philippines 1052 -100100111 presidency 1089 -100100111 border 1235 -100100111 Constitution 1286 -100100111 economy 12694 -100100111 Contras 2273 -100101000 Glimmerglassers 1 -100101000 Vicelords 1 -100101000 322-87 1 -100101000 good-time 1 -100101000 Bork-wrecking 1 -100101000 laser-trimmer 1 -100101000 union-mandated 1 -100101000 investigtion 1 -100101000 car-borne 1 -100101000 82-inch-tall 1 -100101000 dark-suit-and-white-shirt 1 -100101000 whoop-de-do 1 -100101000 English-speaker 1 -100101000 Kramdens 1 -100101000 long-stayers 1 -100101000 apostate 1 -100101000 founder-entrepreneur 1 -100101000 aid-giving 1 -100101000 Krantzes 1 -100101000 BMWE 1 -100101000 56-foot 1 -100101000 now-familar 1 -100101000 settlment 1 -100101000 Gip 1 -100101000 240-person 1 -100101000 Liffey 1 -100101000 defects-office 1 -100101000 car-crashing 1 -100101000 three-astronaut 1 -100101000 end-result 1 -100101000 ride-sharing 1 -100101000 paint-by-numbers 1 -100101000 less-than-complete 1 -100101000 cobbler 1 -100101000 USGS. 1 -100101000 third-highest-ranking 1 -100101000 anti-rebate 1 -100101000 Koussevitzkys 1 -100101000 inner-core 1 -100101000 stop-watch 1 -100101000 multichip 1 -100101000 spick-and-spanners 1 -100101000 govenment 1 -100101000 11s 1 -100101000 play-within-the-opera 1 -100101000 Madeiras 2 -100101000 Stuntman 2 -100101000 miscasting 2 -100101000 finance-company 2 -100101000 Barksdales 2 -100101000 NAR 2 -100101000 F.D.R. 2 -100101000 RTA 2 -100101000 Ramblas 2 -100101000 caliper 2 -100101000 California-banking 2 -100101000 Bop 2 -100101000 unitization 2 -100101000 Crucifixion 2 -100101000 short-listed 2 -100101000 pro-repeal 2 -100101000 ex-spouse 2 -100101000 embyro 2 -100101000 once-quiet 2 -100101000 Frogdesign 2 -100101000 Udine 2 -100101000 Hansens 2 -100101000 SACE 2 -100101000 WEFA/RSI 2 -100101000 investment-company 2 -100101000 D-100 2 -100101000 USTR 3 -100101000 Merchant-Ivory 3 -100101000 RA 3 -100101000 SWAPO 3 -100101000 PNDC 3 -100101000 Cockpit 3 -100101000 OTV 3 -100101000 Bolands 3 -100101000 FEPA 3 -100101000 PRON 3 -100101000 ASID 3 -100101000 EBRI 3 -100101000 Spaters 3 -100101000 Levelland 3 -100101000 NCNA 3 -100101000 Unmanned 3 -100101000 ICTA 3 -100101000 USBA 3 -100101000 HKSAR 3 -100101000 no-nukers 3 -100101000 SFRC 3 -100101000 Breeder 3 -100101000 Keswicks 3 -100101000 sec 3 -100101000 Istana 3 -100101000 ANA 3 -100101000 Merc-Comex 3 -100101000 bedpan 3 -100101000 ex-PRI 3 -100101000 DSG 3 -100101000 INTV 3 -100101000 NIJ 3 -100101000 epinephrine 4 -100101000 LIRR 4 -100101000 ASTD 4 -100101000 NLA 4 -100101000 Bourj 4 -100101000 CSAB 4 -100101000 Sulejmanagic 4 -100101000 Enagas 4 -100101000 AP600 4 -100101000 moshav 4 -100101000 IWA 4 -100101000 appellants 4 -100101000 DLC 4 -100101000 PDI 4 -100101000 NAA 4 -100101000 UFW 4 -100101000 ATU 4 -100101000 SCLC 4 -100101000 IPMA 4 -100101000 NTIS 4 -100101000 Djemaa 4 -100101000 IDSA 4 -100101000 VRA 4 -100101000 labor-department 4 -100101000 JCT 4 -100101000 GMA 4 -100101000 UNDP 5 -100101000 USTA 5 -100101000 USSF 5 -100101000 NAIC 5 -100101000 SCO 5 -100101000 BFEA 5 -100101000 ILGWU 5 -100101000 Brawn 5 -100101000 3Station 5 -100101000 CSIS 5 -100101000 IPFA 5 -100101000 NEH 6 -100101000 TFD 6 -100101000 UKAEA 6 -100101000 FDIC/FSLIC 6 -100101000 APPWP 6 -100101000 NFPA 6 -100101000 JDA 6 -100101000 Houstonian 6 -100101000 NFA 6 -100101000 NAPAP 6 -100101000 SSBI 6 -100101000 Magyar 6 -100101000 UNOS 7 -100101000 Bulldozer 7 -100101000 futures-exchange 7 -100101000 FIA 7 -100101000 IFA 7 -100101000 NCTA 7 -100101000 SBF 7 -100101000 Ikle-Wohlstetter 7 -100101000 AFT 7 -100101000 ASTA 7 -100101000 PMA 7 -100101000 FHLB 7 -100101000 SIPC 7 -100101000 BLM 7 -100101000 GPO 8 -100101000 Siderographers 8 -100101000 LPP 8 -100101000 Trib 8 -100101000 medfly 8 -100101000 APA 9 -100101000 VFW 9 -100101000 MAS 9 -100101000 SACC 9 -100101000 Nines 9 -100101000 FDC 9 -100101000 UTU 10 -100101000 Tupelov 10 -100101000 CAB 10 -100101000 NAM 10 -100101000 SUNY 10 -100101000 NIA 10 -100101000 FHLBB 10 -100101000 NAEP 10 -100101000 OCC 10 -100101000 Histadrut 11 -100101000 COPS 11 -100101000 DCCC 11 -100101000 CID 11 -100101000 Maktoums 11 -100101000 Hart-Scott 11 -100101000 JCS 12 -100101000 FHAA 12 -100101000 NTIA 12 -100101000 BWA 12 -100101000 MTR 12 -100101000 BVI 12 -100101000 AICPA 12 -100101000 AFSCME 12 -100101000 SAL 12 -100101000 ADRDA 13 -100101000 CEP 13 -100101000 Hemlock 13 -100101000 ECC 13 -100101000 NDF 13 -100101000 SOS 13 -100101000 WAVE 13 -100101000 PRC 13 -100101000 OPM 14 -100101000 P&LE 14 -100101000 MMPI 15 -100101000 MRTA 15 -100101000 NSF 16 -100101000 AEA 16 -100101000 GCC 16 -100101000 PSC 16 -100101000 RenCen 16 -100101000 USPS 16 -100101000 OAS 16 -100101000 NAB 16 -100101000 CTM 17 -100101000 Exon-Florio 17 -100101000 Glomar 17 -100101000 FRA 18 -100101000 IAEA 18 -100101000 ICRP 19 -100101000 CPP 19 -100101000 JSP 20 -100101000 AIBD 20 -100101000 GCI 20 -100101000 IPE 20 -100101000 MPAA 20 -100101000 Riksbank 21 -100101000 NTSB 21 -100101000 Corrado 21 -100101000 DGA 21 -100101000 IUE 21 -100101000 IOC 22 -100101000 UNHCR 22 -100101000 CPSC 22 -100101000 CMF 22 -100101000 BLS 22 -100101000 Matif 22 -100101000 PUC 23 -100101000 USC 23 -100101000 Saemaul 24 -100101000 ADA 25 -100101000 USFL 25 -100101000 ISO 25 -100101000 NYFE 26 -100101000 ICCO 27 -100101000 Kefauver 27 -100101000 CED 27 -100101000 CPB 28 -100101000 SDR 28 -100101000 NRDC 29 -100101000 FAO 30 -100101000 EPLF 30 -100101000 IEA 31 -100101000 MTA 31 -100101000 USOC 32 -100101000 EEC 33 -100101000 ASPCA 34 -100101000 OTA 35 -100101000 NHS 35 -100101000 NFIB 37 -100101000 GASB 37 -100101000 CAW 42 -100101000 NHL 44 -100101000 OCAW 44 -100101000 COURT 46 -100101000 Bundespost 48 -100101000 HCFA 49 -100101000 Kerner 51 -100101000 EEOC 52 -100101000 FEC 53 -100101000 FmHA 53 -100101000 SIB 54 -100101000 NEA 57 -100101000 DTI 65 -100101000 SIA 65 -100101000 USDA 66 -100101000 API 70 -100101000 Sun-Times 74 -100101000 cardinal 75 -100101000 LSC 76 -100101000 BIS 78 -100101000 ICO 79 -100101000 SSC 81 -100101000 DEA 82 -100101000 IADB 92 -100101000 SPD 97 -100101000 KIO 97 -100101000 ADB 99 -100101000 NSA 102 -100101000 AARP 103 -100101000 DOT 104 -100101000 PBGC 105 -100101000 NLRB 105 -100101000 NRA 105 -100101000 AP 107 -100101000 NCAA 108 -100101000 NBA 121 -100101000 FHA 124 -100101000 BBC 125 -100101000 IFC 127 -100101000 RTC 129 -100101000 NAACP 130 -100101000 CBO 130 -100101000 Nymex 136 -100101000 NIH 148 -100101000 HHS 148 -100101000 TVA 164 -100101000 VA 170 -100101000 AMA 171 -100101000 ITC 184 -100101000 FERC 185 -100101000 ABA 193 -100101000 ICC 195 -100101000 CBOT 199 -100101000 OMB 251 -100101000 SBA 251 -100101000 CDC 251 -100101000 OECD 269 -100101000 CBOE 295 -100101000 EMS 305 -100101000 ACLU 311 -100101000 NFL 355 -100101000 AFL-CIO 363 -100101000 ANC 366 -100101000 FASB 372 -100101000 GSA 379 -100101000 INS 429 -100101000 NSC 433 -100101000 GAO 497 -100101000 PLO 507 -100101000 Kremlin 533 -100101000 Amex 545 -100101000 Comex 557 -100101000 CFTC 608 -100101000 UAW 668 -100101000 NRC 679 -100101000 FTC 686 -100101000 NASD 819 -100101000 FBI 991 -100101000 Merc 1129 -100101000 IMF 1176 -100101000 FAA 1247 -100101000 Bundesbank 1295 -100101000 EPA 1297 -100101000 FSLIC 1303 -100101000 CIA 1455 -100101000 FCC 1456 -100101000 FDIC 1485 -100101000 EC 1976 -100101000 FDA 2371 -100101000 Pentagon 2850 -100101000 IRS 2853 -100101000 SEC 6821 -100101000 Fed 7449 -1001010010 anti-recessionary 1 -1001010010 agriculture-subsidy 1 -1001010010 back-out 1 -1001010010 Carbon-14 1 -1001010010 governemnt 1 -1001010010 license-revocation 1 -1001010010 securities-exchange 1 -1001010010 Clausen-Armacost 1 -1001010010 auditor-general 1 -1001010010 foreign-money 1 -1001010010 favor-the-rich 1 -1001010010 parents-teachers 1 -1001010010 triglycerides-cholesterol 1 -1001010010 Columbia-registered 1 -1001010010 hair-restoration 1 -1001010010 non-museum 1 -1001010010 post-office-box 1 -1001010010 mineral-leasing 1 -1001010010 hurricane-relief 1 -1001010010 once-remote 1 -1001010010 tax-bloated 1 -1001010010 insurance-investment 1 -1001010010 agricultural-support 1 -1001010010 congolomerate 1 -1001010010 midcrop 1 -1001010010 coilspring 1 -1001010010 nuttiest 1 -1001010010 grants-making 1 -1001010010 Wilkin 1 -1001010010 missile-research 1 -1001010010 required-request 1 -1001010010 ditch-digger 1 -1001010010 Kerbala 1 -1001010010 Nino-Murcia 1 -1001010010 matching-fund 1 -1001010010 emaciating 1 -1001010010 Avinas 1 -1001010010 Reagan-Volcker 1 -1001010010 great-books 1 -1001010010 program-financing 1 -1001010010 electronic-industry 1 -1001010010 alphabet-soup 1 -1001010010 sight-gag 1 -1001010010 see-sawing 1 -1001010010 hill-dwellers 1 -1001010010 trading-house 1 -1001010010 oerations 1 -1001010010 minority-studies 1 -1001010010 time-sheet 1 -1001010010 oilsupply 1 -1001010010 governent 2 -1001010010 closed-circuit-television 2 -1001010010 biotechnology-research 2 -1001010010 2,000-pound 2 -1001010010 35-day 3 -1001010010 raj 3 -1001010010 conservancy 4 -1001010010 sorcery 5 -1001010010 governmment 5 -1001010010 presenter 6 -1001010010 decedent 8 -1001010010 matador 9 -1001010010 lignin 10 -1001010010 corporal 14 -1001010010 franc-denominated 20 -1001010010 cruzado 20 -1001010010 goverment 37 -1001010010 DOE 54 -1001010010 bourse 83 -1001010010 mint 86 -1001010010 government 42075 -1001010010 Euromarket 102 -10010100110 EEPROM 1 -10010100110 87-124 1 -10010100110 8723082 1 -10010100110 marjority 1 -10010100110 8741066 1 -10010100110 66,837 1 -10010100110 shabbier 1 -10010100110 8837022 1 -10010100110 8833043 1 -10010100110 8831004 1 -10010100110 always-desperate 1 -10010100110 8837034 1 -10010100110 8832043 1 -10010100110 8824026 1 -10010100110 ever-watchful 1 -10010100110 8834085 1 -10010100110 Klanners 1 -10010100110 8739034 1 -10010100110 8737037 1 -10010100110 8841019 1 -10010100110 stretched-body 1 -10010100110 more-dangerous 1 -10010100110 8644041 1 -10010100110 8648027 1 -10010100110 8645017 1 -10010100110 8716032 1 -10010100110 8715006 1 -10010100110 special-force 1 -10010100110 8714035 1 -10010100110 8717003 1 -10010100110 8710009 1 -10010100110 8707004 1 -10010100110 unversity 1 -10010100110 8712009 1 -10010100110 Ensemble-Newark 1 -10010100110 maximo 1 -10010100110 8722083 1 -10010100110 8651055 1 -10010100110 8651007 1 -10010100110 geo-strategic 1 -10010100110 8816005 1 -10010100110 8516002 1 -10010100110 8816046 1 -10010100110 8802003 1 -10010100110 Gaugin 1 -10010100110 8814063 1 -10010100110 8815036 1 -10010100110 ex-bank 1 -10010100110 8820086 1 -10010100110 8746055 1 -10010100110 least-remarked-upon 1 -10010100110 8817002 1 -10010100110 musket-bearing 1 -10010100110 8928016 1 -10010100110 indoctrinational 1 -10010100110 8930012 1 -10010100110 Dictionaries 1 -10010100110 couch-shaped 1 -10010100110 miniature-sized 1 -10010100110 youth-leadership 1 -10010100110 8932004 1 -10010100110 8929001 1 -10010100110 independence.The 1 -10010100110 299,776 1 -10010100110 what-you-know 1 -10010100110 who-you-know 1 -10010100110 recordbook 1 -10010100110 Obernauer 1 -10010100110 8825020 1 -10010100110 discourteously 1 -10010100110 8741002 1 -10010100110 8826003 1 -10010100110 Cassano 1 -10010100110 8832050 1 -10010100110 glazier 1 -10010100110 features-loaded 1 -10010100110 cybermusical 1 -10010100110 8828026 1 -10010100110 non-Fleet 1 -10010100110 copper-domed 1 -10010100110 Alawite 1 -10010100110 8752034 1 -10010100110 8819075 1 -10010100110 5,256 1 -10010100110 8936002 1 -10010100110 8824054 1 -10010100110 8930029 1 -10010100110 Tuskers 2 -10010100110 non-democratic 2 -10010100110 ash-handling 2 -10010100110 Amharas 2 -10010100110 UAW-GM 2 -10010100110 8927005 2 -10010100110 back-bench 2 -10010100110 Reformatory 2 -10010100110 hot-tub 2 -10010100110 anti-sale 2 -10010100110 stonemason 2 -10010100110 unexpressed 2 -10010100110 gas-leak 2 -10010100110 non-line 2 -10010100110 8823109 2 -10010100110 GTD-5 2 -10010100110 washer-dryer 2 -10010100110 crash-landing 2 -10010100110 Dergue 2 -10010100110 sicko 2 -10010100110 Sqaud 2 -10010100110 8812049 2 -10010100110 pelican 2 -10010100110 MI6 2 -10010100110 ITU 2 -10010100110 favela 2 -10010100110 cabana 2 -10010100110 Tangwai 3 -10010100110 figure-skating 3 -10010100110 MNR 3 -10010100110 UFT 3 -10010100110 VJs 3 -10010100110 CEO. 3 -10010100110 Avibras 3 -10010100110 CORAH 3 -10010100110 ZAPU 3 -10010100110 dustjacket 3 -10010100110 Falldin 3 -10010100110 42-10 3 -10010100110 TUG 4 -10010100110 bandoneon 4 -10010100110 Weathermen 4 -10010100110 Scupper 4 -10010100110 campesino 4 -10010100110 URC 4 -10010100110 imaging-team 4 -10010100110 PLP 4 -10010100110 Snowflakes 4 -10010100110 ACUCAA 4 -10010100110 salaryman 4 -10010100110 Kestrel 4 -10010100110 RUC 4 -10010100110 UFCW 4 -10010100110 biathlon 4 -10010100110 NSPA 4 -10010100110 mollusk 4 -10010100110 sultans 5 -10010100110 Misurasata 5 -10010100110 lumberyard 5 -10010100110 TDU 5 -10010100110 Centrao 5 -10010100110 CDS 5 -10010100110 McCoys 5 -10010100110 pant 5 -10010100110 anti-SDI 5 -10010100110 PCN 5 -10010100110 Thirties 5 -10010100110 near-poor 5 -10010100110 reverend 6 -10010100110 RAF 6 -10010100110 Taukei 6 -10010100110 timeline 6 -10010100110 Bonum 6 -10010100110 Hegenna 7 -10010100110 Bizango 7 -10010100110 GE/Kidder 7 -10010100110 BCOA 7 -10010100110 madam 7 -10010100110 SLA 7 -10010100110 Piston 7 -10010100110 LEAVE 7 -10010100110 VC 7 -10010100110 city-council 7 -10010100110 PD 8 -10010100110 imam 8 -10010100110 reptile 8 -10010100110 CBT 8 -10010100110 bandit 8 -10010100110 Gosbank 9 -10010100110 earl 9 -10010100110 Klansmen 9 -10010100110 P-2 9 -10010100110 petunia 9 -10010100110 unionist 10 -10010100110 ANWR 10 -10010100110 giraffe 10 -10010100110 PPD 10 -10010100110 CGT 10 -10010100110 Nepalese 10 -10010100110 Woman/McCall 10 -10010100110 GMHC 10 -10010100110 JVP 10 -10010100110 CSU 11 -10010100110 Rohe 11 -10010100110 welterweight 11 -10010100110 Laker 11 -10010100110 FSLN 11 -10010100110 newsweekly 11 -10010100110 bizango 11 -10010100110 Simex 12 -10010100110 cacique 12 -10010100110 WGA 13 -10010100110 USW 13 -10010100110 Maaco 13 -10010100110 D&H 14 -10010100110 TSSU 14 -10010100110 CFO 14 -10010100110 TTAPS 14 -10010100110 PATCO 15 -10010100110 Klugt 16 -10010100110 ATA 17 -10010100110 Thread 17 -10010100110 UJA 18 -10010100110 RSC 18 -10010100110 Tecos 19 -10010100110 IOR 19 -10010100110 JRA 19 -10010100110 Intrepid 21 -10010100110 RDP 23 -10010100110 Knesset 23 -10010100110 URW 23 -10010100110 counterculture 25 -10010100110 FDP 26 -10010100110 Klan 30 -10010100110 CDU 31 -10010100110 Inkatha 31 -10010100110 MPLA 31 -10010100110 NDP 32 -10010100110 MP 32 -10010100110 Parti 33 -10010100110 ILA 33 -10010100110 DPP 38 -10010100110 IBEW 43 -10010100110 Komsomol 46 -10010100110 kibbutz 46 -10010100110 UDF 49 -10010100110 Scout 50 -10010100110 UMNO 58 -10010100110 commonwealth 63 -10010100110 Establishment 65 -10010100110 FDN 71 -10010100110 NPA 71 -10010100110 PMDB 72 -10010100110 guild 73 -10010100110 DJP 77 -10010100110 SDP 84 -10010100110 tourney 86 -10010100110 militia 89 -10010100110 CWA 91 -10010100110 co-op 93 -10010100110 KMT 94 -10010100110 viewer 97 -10010100110 symphony 98 -10010100110 zoo 98 -10010100110 junta 100 -10010100110 camel 104 -10010100110 Mafia 118 -10010100110 Kuomintang 120 -10010100110 PAN 136 -10010100110 UMW 141 -10010100110 KGB 250 -10010100110 Politburo 258 -10010100110 Diet 260 -10010100110 PAC 264 -10010100110 federation 295 -10010100110 LDP 318 -10010100110 plaintiff 477 -10010100110 PRI 498 -10010100110 university 981 -10010100110 church 1188 -10010100110 union 7775 -10010100110 party 7360 -10010100111 December-future 1 -10010100111 265.0 1 -10010100111 non-retired 1 -10010100111 2,986,453 1 -10010100111 December-cattle 1 -10010100111 343,450 1 -10010100111 2,747 1 -10010100111 NBC-affiliation 1 -10010100111 SBA-processed 1 -10010100111 1,598 1 -10010100111 land-purchase 1 -10010100111 650,320 1 -10010100111 benchwarmer 1 -10010100111 1,022,209 1 -10010100111 compensatory-damage 1 -10010100111 Gatorback 1 -10010100111 32,192 1 -10010100111 EAFE-based 1 -10010100111 Betsie 1 -10010100111 94,300 1 -10010100111 Tumaturmari 1 -10010100111 39,856 1 -10010100111 coal-supply 1 -10010100111 28,057 1 -10010100111 305,419 1 -10010100111 yen-exchange 1 -10010100111 Laidley 1 -10010100111 126,800 1 -10010100111 400,157 1 -10010100111 184,724 1 -10010100111 pollution-insurance 1 -10010100111 8,620,000 1 -10010100111 25,290 1 -10010100111 789,104 1 -10010100111 history-against 1 -10010100111 3,352,100 1 -10010100111 powder-additive 1 -10010100111 55,071 1 -10010100111 61,211 1 -10010100111 Inquirer-type 1 -10010100111 41,352 1 -10010100111 49,343 1 -10010100111 electrical-construction 1 -10010100111 Lisas 1 -10010100111 5,143 1 -10010100111 1,514 1 -10010100111 military-export 1 -10010100111 French-financed 1 -10010100111 Lemur 1 -10010100111 Siuda 1 -10010100111 Greenspoint 1 -10010100111 Democrat-Green 1 -10010100111 12,014 1 -10010100111 road-wheel 1 -10010100111 coal-management 1 -10010100111 82,939 1 -10010100111 2,884 1 -10010100111 Glucometer 1 -10010100111 5-85 1 -10010100111 carpet-purchasing 1 -10010100111 184,177 1 -10010100111 334,156 1 -10010100111 Beach-Norfolk 1 -10010100111 nearest-term 1 -10010100111 inflation-futures 1 -10010100111 8,693 1 -10010100111 85,431 1 -10010100111 CLOUT 1 -10010100111 broker-investor 1 -10010100111 5,197,543 1 -10010100111 Giermak 1 -10010100111 15,132 1 -10010100111 413,838 1 -10010100111 673,311 1 -10010100111 117,220 1 -10010100111 320,900 1 -10010100111 67,251 1 -10010100111 Parameters 1 -10010100111 29,613 1 -10010100111 254,865 1 -10010100111 gift-annuity 1 -10010100111 7,123 1 -10010100111 544,969 1 -10010100111 automatic-penalty 1 -10010100111 78,350 1 -10010100111 GM-UAW 1 -10010100111 gas-export 1 -10010100111 30,267 1 -10010100111 27,298 1 -10010100111 664,580 1 -10010100111 Alexanderplatz 1 -10010100111 28,692 1 -10010100111 Androvett 1 -10010100111 System/20 1 -10010100111 626,300 1 -10010100111 2,337 1 -10010100111 Re-regulating 1 -10010100111 113,899 1 -10010100111 12,195,100 1 -10010100111 3,473,500 1 -10010100111 1,040,200 1 -10010100111 15-satellite 1 -10010100111 1,496 1 -10010100111 pin-setting 1 -10010100111 Hitachi-Goldstar 1 -10010100111 financial-adviser 1 -10010100111 January-futures 1 -10010100111 residual-fuel-oil 1 -10010100111 March-futures 1 -10010100111 advanced-motor 1 -10010100111 trilingual 1 -10010100111 24,027 1 -10010100111 1,674,300 1 -10010100111 bird-cage 1 -10010100111 tar-based 1 -10010100111 100,000-car 1 -10010100111 319,355 1 -10010100111 2,479 1 -10010100111 60,864 1 -10010100111 234,487 1 -10010100111 531,225 1 -10010100111 121,673 1 -10010100111 11,507 1 -10010100111 60,380,000 1 -10010100111 169,800 1 -10010100111 45,376 1 -10010100111 140,439 1 -10010100111 gasturbine 1 -10010100111 81,349 1 -10010100111 militaryship 1 -10010100111 562,060 1 -10010100111 News-two-minute 1 -10010100111 May-futures 1 -10010100111 5,716 1 -10010100111 29,593 1 -10010100111 5,536 1 -10010100111 10,360 1 -10010100111 2,001 1 -10010100111 same-priced 1 -10010100111 116,665 1 -10010100111 Chrysler-UAW 1 -10010100111 2,551 1 -10010100111 1,939 1 -10010100111 153,500 1 -10010100111 334,200 1 -10010100111 146,302 1 -10010100111 Hochschule 1 -10010100111 7,541 1 -10010100111 Solent 1 -10010100111 flower-service 1 -10010100111 already-signed 1 -10010100111 331,551 1 -10010100111 17,095 1 -10010100111 3,664,456 1 -10010100111 llegally 1 -10010100111 Voll 1 -10010100111 281,129 1 -10010100111 851,606 1 -10010100111 Dardalla 1 -10010100111 a-GM 1 -10010100111 7,641 1 -10010100111 Staatskapelle 1 -10010100111 steel-stock 1 -10010100111 gas-sales 1 -10010100111 DMS100 1 -10010100111 electricity-export 1 -10010100111 105,338 1 -10010100111 135,916 1 -10010100111 advanced-tactical-fighter 1 -10010100111 1,180,898 1 -10010100111 Typewriter 1 -10010100111 Ropelowski 1 -10010100111 consideration. 1 -10010100111 test-facility 1 -10010100111 357,378 1 -10010100111 IFC-supported 1 -10010100111 nine-month-long 1 -10010100111 Strangler 1 -10010100111 2,573 1 -10010100111 1,329 1 -10010100111 20,747 1 -10010100111 547,798 1 -10010100111 aviation-display 1 -10010100111 tire-dealer 1 -10010100111 1,786 2 -10010100111 Bellocchio 2 -10010100111 much-sought 2 -10010100111 ship-conversion 2 -10010100111 swim-wear 2 -10010100111 1,942 2 -10010100111 volume-based 2 -10010100111 student-athletes 2 -10010100111 nine-to-10-month 2 -10010100111 minitour 2 -10010100111 Cecily 2 -10010100111 Telesynetics 2 -10010100111 pro-basketball 2 -10010100111 Shakes 2 -10010100111 pro-PLO 2 -10010100111 Treasury-bond-futures 2 -10010100111 engineering-support 2 -10010100111 sing-off 2 -10010100111 malcontent 2 -10010100111 comicstrip 2 -10010100111 ATACC 2 -10010100111 Capes 2 -10010100111 lower-commission 2 -10010100111 diaspora 2 -10010100111 1-85 2 -10010100111 Soutpansberg 2 -10010100111 217,941 2 -10010100111 near-most 2 -10010100111 twin-turboprop 2 -10010100111 416,949 2 -10010100111 Abuses 2 -10010100111 non-passenger 2 -10010100111 more-deferred 2 -10010100111 mine-detector 2 -10010100111 live-cattle 2 -10010100111 pharmacy-research 2 -10010100111 1,064,000 2 -10010100111 2,643 2 -10010100111 2,642 2 -10010100111 126,700 2 -10010100111 expressionless 2 -10010100111 AC-130U 2 -10010100111 Bigeye 2 -10010100111 wiliest 2 -10010100111 metric-ton 2 -10010100111 Rhenish 2 -10010100111 Caribbean-Admiral 2 -10010100111 PrimeTime 3 -10010100111 Hui 3 -10010100111 wood-fired 3 -10010100111 surrogate-mother 3 -10010100111 trans-Hudson 3 -10010100111 RBMK 3 -10010100111 Backwards 3 -10010100111 Polytech 3 -10010100111 10,415 4 -10010100111 derrick 4 -10010100111 computer-maker 4 -10010100111 hotel-chain 4 -10010100111 April-delivery 4 -10010100111 Lamp 4 -10010100111 soybean-oil 5 -10010100111 RSO 5 -10010100111 phone-switching 6 -10010100111 Vagabond 6 -10010100111 MicroVax 6 -10010100111 E-3 6 -10010100111 1986-88 6 -10010100111 three-unit 6 -10010100111 Czarnikow 7 -10010100111 TOPIX 8 -10010100111 Charade 8 -10010100111 advanced-rocket 8 -10010100111 Doulton 9 -10010100111 Cadet 10 -10010100111 Passport 10 -10010100111 Karry 11 -10010100111 jet-fuel 13 -10010100111 Karl-Lorimar 14 -10010100111 Yomiuri 16 -10010100111 RECAP 17 -10010100111 Pewex 17 -10010100111 Finex 17 -10010100111 Divad 18 -10010100111 Slims 18 -10010100111 Daedalus 22 -10010100111 phone-switch 32 -10010100111 no-bid 54 -10010100111 FTS-2000 70 -10010100111 Admiral 80 -10010100111 MMI 103 -10010100111 Mint 141 -10010100111 Guard 519 -10010100111 Sprint 627 -10010100111 Army 2280 -10010100111 Navy 3424 -10010100111 giant 2659 -1001010100 court-constraints 1 -1001010100 poisongas 1 -1001010100 boy-king 1 -1001010100 Waleses 1 -1001010100 police-department 1 -1001010100 price-per-thousand 1 -1001010100 pooh-bah 1 -1001010100 Metrozoo 1 -1001010100 pot-of-gold 1 -1001010100 satrapy 1 -1001010100 MetalWars 1 -1001010100 Gambles 1 -1001010100 polysaccharide 1 -1001010100 levelbut 1 -1001010100 vizier 1 -1001010100 featherheads 1 -1001010100 kaftans 1 -1001010100 subpeonas 1 -1001010100 Tokushoku 1 -1001010100 sneakiest 1 -1001010100 biogrammatically 1 -1001010100 mini-empires 1 -1001010100 post-cancer 1 -1001010100 Galtneys 1 -1001010100 Niemiecs 1 -1001010100 Grub 1 -1001010100 communist-turned-conservative 1 -1001010100 grandjury 1 -1001010100 shallowly 1 -1001010100 basilicas 1 -1001010100 grantgivers 1 -1001010100 pay-setting 1 -1001010100 Mississippian 1 -1001010100 China-watcher 1 -1001010100 equity-committee 1 -1001010100 posion-gas 1 -1001010100 press-shy 2 -1001010100 WLF 2 -1001010100 Runckels 2 -1001010100 Chernack 2 -1001010100 bather 2 -1001010100 Democracies 2 -1001010100 bloodstains 2 -1001010100 Swansons 2 -1001010100 Pattersons 2 -1001010100 man-in-the-street 3 -1001010100 Taggarts 3 -1001010100 respites 3 -1001010100 Rowdies 3 -1001010100 sharecropper 3 -1001010100 bailiff 3 -1001010100 Petries 3 -1001010100 Hastingses 3 -1001010100 Haukes 3 -1001010100 Greylord 5 -1001010100 Branco 5 -1001010100 duchy 5 -1001010100 jester 9 -1001010100 lesion 12 -1001010100 logbook 14 -1001010100 judgeship 14 -1001010100 conciliator 29 -1001010100 pre-emption 30 -1001010100 breaker 35 -1001010100 maestro 36 -1001010100 referee 63 -1001010100 breakers 117 -1001010100 magistrate 132 -1001010100 courthouse 146 -1001010100 mediator 164 -1001010100 judiciary 173 -1001010100 senator 923 -1001010100 prosecutor 962 -1001010100 judge 5457 -1001010100 jury 3192 -1001010101 just-compensation 1 -1001010101 time-value-of-money 1 -1001010101 pork-rationing 1 -1001010101 moratoriumin 1 -1001010101 first-cut 1 -1001010101 horse-shopping 1 -1001010101 Klu 1 -1001010101 maximum-permitted 1 -1001010101 procurers 1 -1001010101 guarani 1 -1001010101 colliery 1 -1001010101 mid-passage 1 -1001010101 flight-deck 1 -1001010101 26-year-olds 1 -1001010101 photochemistry 1 -1001010101 uric-acid 1 -1001010101 1,000-contract 1 -1001010101 parklands 1 -1001010101 payout-suspension 1 -1001010101 Campeau-DeBartolo 1 -1001010101 productionrelated 1 -1001010101 fruit-of-the-poison-tree 1 -1001010101 anti-feeding 1 -1001010101 ex-government 1 -1001010101 scale. 1 -1001010101 officials. 1 -1001010101 PC-export 1 -1001010101 all-but-mandatory 1 -1001010101 Meese-Reagan 1 -1001010101 wholesale-rate 1 -1001010101 pro-slavery 2 -1001010101 glass-factory 2 -1001010101 high-hurdle 2 -1001010101 beat-the-clock 2 -1001010101 near-depression 2 -1001010101 66-page 2 -1001010101 guignol 2 -1001010101 housing-discrimination 2 -1001010101 Fishers 3 -1001010101 show-cause 3 -1001010101 juvenile-court 3 -1001010101 pueblos 3 -1001010101 jailer 3 -1001010101 harmonics 3 -1001010101 verandas 3 -1001010101 mine-layer 4 -1001010101 OSC 4 -1001010101 panther 4 -1001010101 penitentiaries 5 -1001010101 snowboard 5 -1001010101 civil-court 6 -1001010101 trooper 10 -1001010101 capitol 22 -1001010101 penitentiary 33 -1001010101 larceny 40 -1001010101 court 17136 -1001010101 appeals-court 51 -1001010110 Suey 1 -1001010110 Realizations 1 -1001010110 Jasinski 1 -1001010110 glassworks 1 -1001010110 nuclear-liability 1 -1001010110 NAWBO 1 -1001010110 Hruska. 1 -1001010110 Tupolev 1 -1001010110 sideboard 1 -1001010110 Udder 1 -1001010110 470-room 1 -1001010110 SKYSCRAPER 1 -1001010110 Realisations 1 -1001010110 House-supported 1 -1001010110 House-sanctioned 1 -1001010110 House-prepared 1 -1001010110 Rauda 1 -1001010110 junctions 1 -1001010110 House-designated 1 -1001010110 Camomile 1 -1001010110 Kubiczek 1 -1001010110 House/Treasury 1 -1001010110 Pipko 1 -1001010110 legionnaires 1 -1001010110 Gemco-United 1 -1001010110 House-Iran 1 -1001010110 Mischief 1 -1001010110 wheat-board 1 -1001010110 Wolchuk 1 -1001010110 GeorgiaPacific 1 -1001010110 medical-college 1 -1001010110 Dzindzihashvili 1 -1001010110 Labyrinth 1 -1001010110 BALLETIC 1 -1001010110 185-page 1 -1001010110 House-directed 1 -1001010110 Stalinsky 1 -1001010110 Kolompar 1 -1001010110 Intracoastal 1 -1001010110 Middel 1 -1001010110 23d 1 -1001010110 OSU 2 -1001010110 McCarran-Walter 2 -1001010110 12-judge 2 -1001010110 Magnuszewski 2 -1001010110 Beasts 2 -1001010110 Vet 2 -1001010110 tribune 2 -1001010110 Plains-based 2 -1001010110 Dail 3 -1001010110 CAGE 3 -1001010110 Reaper 3 -1001010110 Collar 4 -1001010110 Colosseum 4 -1001010110 Lengths 4 -1001010110 Oberoi 4 -1001010110 Grenache 5 -1001010110 Unlisted 5 -1001010110 House-congressional 5 -1001010110 House-Congress 7 -1001010110 Dinh 7 -1001010110 House-backed 8 -1001010110 Shark 8 -1001010110 Cong 23 -1001010110 Sox 100 -1001010110 Racketeer 114 -1001010110 House 15745 -1001010110 Plains 530 -1001010111 High-End 1 -1001010111 Inter-German 1 -1001010111 Snaky 1 -1001010111 monetarist-minded 1 -1001010111 Goldwater-Nichols 1 -1001010111 Reagan-Rostenkowski-Byrd-Bentsen-Wright 1 -1001010111 613,000-Share 1 -1001010111 Carter-created 1 -1001010111 41-member 1 -1001010111 Cregem 1 -1001010111 JPI 1 -1001010111 Bayernhypo 1 -1001010111 austerity-minded 1 -1001010111 Stupendous 1 -1001010111 Citibank-led 1 -1001010111 Inouye-Hamilton 1 -1001010111 US/Canada 1 -1001010111 building-trades 1 -1001010111 Dilute 1 -1001010111 Bestiality 1 -1001010111 Congresssional 1 -1001010111 Nanny 1 -1001010111 Gaffe 1 -1001010111 Balkar 1 -1001010111 Off-the-Beaten-Path 1 -1001010111 Worthem 1 -1001010111 Procter-Syntex 1 -1001010111 Board.of 1 -1001010111 Neo-Classical 1 -1001010111 Slumbering 1 -1001010111 U.S.-Tibet 1 -1001010111 Congessional 1 -1001010111 Year-Round 1 -1001010111 production-jawboning 1 -1001010111 Daimyo 1 -1001010111 Avian 1 -1001010111 Quip-Filled 1 -1001010111 Parklabrea 1 -1001010111 Sembawang 1 -1001010111 Avrin 1 -1001010111 Insular 1 -1001010111 Colossal 1 -1001010111 Wither 1 -1001010111 Carhaul 1 -1001010111 426-member 1 -1001010111 Regulate 1 -1001010111 Magec 1 -1001010111 master-bedroom 1 -1001010111 All-Poland 1 -1001010111 Wuxi-MSA 1 -1001010111 LTD/Marquis 1 -1001010111 Kamora 1 -1001010111 TransGlobe 1 -1001010111 Upended 1 -1001010111 Politic 1 -1001010111 UM-Michigan 1 -1001010111 Belgian-Luxembourg 1 -1001010111 300,000-plus 1 -1001010111 Distributive 1 -1001010111 OverseaChinese 1 -1001010111 NSW 1 -1001010111 pastor-parish 1 -1001010111 10th-ranking 1 -1001010111 Textual 1 -1001010111 multisectoral 1 -1001010111 Rosenbalm 1 -1001010111 Oromo 1 -1001010111 Meliora 1 -1001010111 PacificCare 1 -1001010111 Politics/In 1 -1001010111 Trade-bill 1 -1001010111 Unspoken 1 -1001010111 Troubling 1 -1001010111 Monarch/Merrill 1 -1001010111 Beltway-consensus 1 -1001010111 Shidler/West 1 -1001010111 NACO 1 -1001010111 compensation-insurance 1 -1001010111 HWWA 1 -1001010111 Explanatory 1 -1001010111 Check-Kiters 1 -1001010111 interministerial 1 -1001010111 Sophistication 1 -1001010111 Dermatologic 1 -1001010111 Root-Tilden-Snow 1 -1001010111 Econonomic 1 -1001010111 Jamiat 1 -1001010111 Allou 1 -1001010111 academic-dominated 1 -1001010111 GINI 1 -1001010111 13th-floor 1 -1001010111 BOGSAT 1 -1001010111 Foreign-Born 1 -1001010111 Rascher 1 -1001010111 Summaryof 1 -1001010111 75-member 2 -1001010111 olive-skinned 2 -1001010111 Sirica 2 -1001010111 Kapiolani 2 -1001010111 six-county 2 -1001010111 Lothian 2 -1001010111 anti-boredom 2 -1001010111 Literatura 2 -1001010111 Medis 2 -1001010111 13-2 2 -1001010111 BAII 2 -1001010111 Inhibiting 2 -1001010111 75-nation 2 -1001010111 Departmental 2 -1001010111 Video-Velodrome 2 -1001010111 Bewildered 2 -1001010111 six-country 2 -1001010111 Ain 2 -1001010111 Calorie 2 -1001010111 3480 2 -1001010111 budget-slashing 2 -1001010111 93-member 2 -1001010111 Curaflex 2 -1001010111 Pepper-Roybal 2 -1001010111 Chatilla 2 -1001010111 Centinela 2 -1001010111 254-158 2 -1001010111 hispanic 2 -1001010111 Econo 2 -1001010111 Imprinted 2 -1001010111 law-society 2 -1001010111 Julliard 2 -1001010111 tigher 2 -1001010111 then-reigning 2 -1001010111 west-south-central 2 -1001010111 36-member 2 -1001010111 Irvington 2 -1001010111 7,000-member 2 -1001010111 Symbionese 2 -1001010111 1929-31 2 -1001010111 subcabinet-level 2 -1001010111 one-million-acre 2 -1001010111 245-181 2 -1001010111 truck-based 2 -1001010111 Neil/Lehrer 2 -1001010111 1,200-member 2 -1001010111 Offensive 2 -1001010111 often-frustrating 2 -1001010111 Immoral 2 -1001010111 Rickmansworth 2 -1001010111 Newscorp 2 -1001010111 NagornoKarabakh 2 -1001010111 Posse 2 -1001010111 103-year-old 2 -1001010111 Developmental 2 -1001010111 Livingstone 2 -1001010111 Profitco 2 -1001010111 Borobudur 2 -1001010111 38-member 3 -1001010111 NIMBY 3 -1001010111 IDF 3 -1001010111 10-6 3 -1001010111 Oncogene 3 -1001010111 Communist-allied 3 -1001010111 Feminist 3 -1001010111 Cedel 3 -1001010111 industry-creditors 3 -1001010111 Arcoa 3 -1001010111 Extravehicular 3 -1001010111 Washington/Baltimore 3 -1001010111 undetectable-handgun 3 -1001010111 EPL 3 -1001010111 Saguenay 3 -1001010111 Cardio-Renal 3 -1001010111 Westerly 3 -1001010111 borage 3 -1001010111 Ifo 3 -1001010111 Spartacist 3 -1001010111 Ceylon 3 -1001010111 Sobeys 3 -1001010111 200,000-member 3 -1001010111 CONFEREES 3 -1001010111 Folketing 3 -1001010111 Tacolcy 3 -1001010111 Ecuadoreans 3 -1001010111 Gilyarovsky 3 -1001010111 then-proposed 3 -1001010111 CSX/Sea-Land 3 -1001010111 Tigreans 3 -1001010111 Ndebele 3 -1001010111 Restless 3 -1001010111 BNA 3 -1001010111 Multi-Fiber 3 -1001010111 Straphangers 3 -1001010111 jaguar 3 -1001010111 Amhara 3 -1001010111 IWA-Canada 3 -1001010111 Cathodic 3 -1001010111 56-story 3 -1001010111 Polonia 3 -1001010111 48-member 3 -1001010111 Radiological 4 -1001010111 Forensic 4 -1001010111 high-tariff 4 -1001010111 Fetal 4 -1001010111 Visigoths 4 -1001010111 1,400-member 4 -1001010111 Real-World 4 -1001010111 Kalahari 4 -1001010111 Holts 4 -1001010111 general-creditors 4 -1001010111 L&N 4 -1001010111 74-member 4 -1001010111 UNCLE 4 -1001010111 GOP. 4 -1001010111 Dove-Pork 4 -1001010111 Alienated 4 -1001010111 Immunological 4 -1001010111 6,000-member 4 -1001010111 AEU 4 -1001010111 Kissing 4 -1001010111 Regressive 4 -1001010111 Oversea-Chinese 4 -1001010111 Politician 4 -1001010111 Cagliari 4 -1001010111 Ballycotton 4 -1001010111 Solna 4 -1001010111 Nervion 5 -1001010111 Leonard-Hagler 5 -1001010111 Accidental 5 -1001010111 Airwaves 5 -1001010111 chairing 5 -1001010111 Naco 5 -1001010111 Dardanelles 5 -1001010111 Minories 5 -1001010111 Cabinet-level 5 -1001010111 Kennedy-Markey 5 -1001010111 Deutsches 5 -1001010111 Soligaz 5 -1001010111 Uffizi 5 -1001010111 over-50 5 -1001010111 Idanha 5 -1001010111 Joes 6 -1001010111 Pill 6 -1001010111 Thinker 6 -1001010111 NPC 6 -1001010111 Paris-Dakar 6 -1001010111 Helaba 6 -1001010111 Bundesrat 6 -1001010111 MacNeil-Lehrer 6 -1001010111 Nuremburg 6 -1001010111 Chosen 6 -1001010111 Karakoram 6 -1001010111 Shearson-Hutton 6 -1001010111 Washington-Baltimore 6 -1001010111 Libel 6 -1001010111 PE 7 -1001010111 Tenth 7 -1001010111 Manned 7 -1001010111 Interferon 7 -1001010111 AuSable 7 -1001010111 Laborers 7 -1001010111 SPAR 7 -1001010111 Riksdag 7 -1001010111 Handicapped 7 -1001010111 Paperwork 7 -1001010111 Mid-South 7 -1001010111 1948-49 7 -1001010111 Affirmative 7 -1001010111 Exhibitor 7 -1001010111 Composer 8 -1001010111 Detainees 8 -1001010111 Sixties 8 -1001010111 mid-South 8 -1001010111 Cydonia 8 -1001010111 MCP 8 -1001010111 Gobi 8 -1001010111 Masai 8 -1001010111 14-bank 8 -1001010111 Asian-Pacific 8 -1001010111 Mendelssohn 9 -1001010111 Palladium 9 -1001010111 Hubble 9 -1001010111 Barabar 9 -1001010111 G-6 9 -1001010111 DIW 10 -1001010111 G7 10 -1001010111 IFO 10 -1001010111 Crips 11 -1001010111 Belgo-Luxembourg 11 -1001010111 Flathead 11 -1001010111 Character 11 -1001010111 Nerds 11 -1001010111 Basle 11 -1001010111 9,000-member 11 -1001010111 Gaydos 11 -1001010111 UN 12 -1001010111 MTB 12 -1001010111 Mossad 12 -1001010111 Childcraft 12 -1001010111 Soil 12 -1001010111 Mob 13 -1001010111 Jungle 13 -1001010111 Dying 13 -1001010111 TIMI 14 -1001010111 Baroque 14 -1001010111 SBC 14 -1001010111 alewife 14 -1001010111 Equilink 14 -1001010111 O's 14 -1001010111 ELN 15 -1001010111 Eurofighter 15 -1001010111 PSUM 15 -1001010111 Provisional 15 -1001010111 Amateur 16 -1001010111 Faw 16 -1001010111 16-nation 16 -1001010111 GDR 17 -1001010111 MacNeil/Lehrer 18 -1001010111 Intergovernmental 20 -1001010111 Homeless 22 -1001010111 Kirov 23 -1001010111 Gospel 23 -1001010111 O&W 25 -1001010111 Omnibus 25 -1001010111 Katyn 26 -1001010111 APS 26 -1001010111 Reconstruction 26 -1001010111 M-19 26 -1001010111 Okura 27 -1001010111 Waldorf-Astoria 27 -1001010111 Algonquin 27 -1001010111 AAA 31 -1001010111 Nile 32 -1001010111 Berne 33 -1001010111 Antarctic 34 -1001010111 Hidden 36 -1001010111 Hermitage 40 -1001010111 Eritrean 42 -1001010111 Mayflower 42 -1001010111 Mesaba 44 -1001010111 External 48 -1001010111 Cara 57 -1001010111 Mental 63 -1001010111 Moral 64 -1001010111 senate 70 -1001010111 Border 71 -1001010111 Cabinet 73 -1001010111 Ritz 74 -1001010111 tax-writing 74 -1001010111 Voting 77 -1001010111 Claridge 80 -1001010111 cabinet-level 82 -1001010111 False 84 -1001010111 Westpac 87 -1001010111 Rainbow 100 -1001010111 Equal 111 -1001010111 Beltway 116 -1001010111 Uruguay 125 -1001010111 House-passed 133 -1001010111 Corrupt 153 -1001010111 Palestine 174 -1001010111 Occupational 192 -1001010111 Arctic 211 -1001010111 Vatican 302 -1001010111 Currency 305 -1001010111 Challenger 324 -1001010111 G-7 357 -1001010111 GATT 376 -1001010111 Caribbean 440 -1001010111 Teamsters 654 -1001010111 Congressional 822 -1001010111 Northeast 823 -1001010111 U.N. 908 -1001010111 Senate 9003 -1001010111 Midwest 1191 -100101100 heartier 1 -100101100 anti-exploration 1 -100101100 Jonason 1 -100101100 not-so-charming 1 -100101100 clBut 1 -100101100 on-exchange 1 -100101100 carpet-replacement 1 -100101100 exchange. 1 -100101100 plastic-bag 1 -100101100 bookrunners 1 -100101100 765-yard 1 -100101100 sales-and-delivery 1 -100101100 decentralization-centralization 1 -100101100 Elsevier-Pearson 1 -100101100 hyper-competitive 1 -100101100 philosopher-poet 1 -100101100 action-reaction 1 -100101100 15-footer 1 -100101100 product-dollar 1 -100101100 less-frenzied 1 -100101100 +0.15 1 -100101100 inflation/deflation 1 -100101100 5,090,000 1 -100101100 foreign-control 1 -100101100 financing-incentives 1 -100101100 heightened-sensitivity 1 -100101100 product-life 1 -100101100 rangelands 1 -100101100 takeoff-pressurization-landing 1 -100101100 0.2108 1 -100101100 per-dose 1 -100101100 unchanelled 1 -100101100 coupon-pricing 1 -100101100 clubfeet 1 -100101100 buying-on-credit 1 -100101100 marekt 1 -100101100 maidnapper 1 -100101100 afflatus 1 -100101100 anti-PRI 1 -100101100 chemical-induced 1 -100101100 sleep-wake 1 -100101100 deficit-inflation-capital-flight 1 -100101100 order-to-ship 1 -100101100 healther 1 -100101100 immiserated 1 -100101100 postride 1 -100101100 liquor-drinking 1 -100101100 sunspot 2 -100101100 megacarrier 2 -100101100 insurance-market 2 -100101100 Siemens-Asea 2 -100101100 Coke-Pepsi 2 -100101100 H-P/Toshiba 2 -100101100 swindler 3 -100101100 walrus 6 -100101100 market. 8 -100101100 swindle 13 -100101100 market 63611 -100101100 terrier 13 -1001011010 surfacewater 1 -1001011010 industrial-engineering 1 -1001011010 electrical-industry 1 -1001011010 bail-outs 1 -1001011010 Equitables 1 -1001011010 OPEC-production 1 -1001011010 riflemen 1 -1001011010 pedophobic 1 -1001011010 Australian-equities 1 -1001011010 Norvus 1 -1001011010 Edelch 1 -1001011010 international-pharmaceuticals 1 -1001011010 magazine-industry 1 -1001011010 Babylonians 1 -1001011010 autosafety 1 -1001011010 scientists/executives 1 -1001011010 SALVAGE 1 -1001011010 sell-side 1 -1001011010 failure-analysis 1 -1001011010 advertising-industry 1 -1001011010 photolithography 1 -1001011010 glass-industry 1 -1001011010 Polanica 1 -1001011010 Farmers-B.A.T 1 -1001011010 asssociation 1 -1001011010 spillage 2 -1001011010 pension-industry 2 -1001011010 arms-industry 2 -1001011010 price-cut 2 -1001011010 imaging-technology 2 -1001011010 eighty-seven 2 -1001011010 budworm 2 -1001011010 industy 2 -1001011010 recording-industry 2 -1001011010 underpass 2 -1001011010 payor 2 -1001011010 boundary-making 2 -1001011010 chief-of-staff 3 -1001011010 owner-operator 3 -1001011010 housing-industry 3 -1001011010 aluminum-industry 4 -1001011010 impurity 5 -1001011010 eighty-eight 5 -1001011010 industry-funded 6 -1001011010 trestle 6 -1001011010 aerospace-industry 6 -1001011010 neuropathy 9 -1001011010 exhibitor 17 -1001011010 auto-industry 56 -1001011010 oil-industry 73 -1001011010 additive 78 -1001011010 industry 23933 -1001011010 oven 81 -1001011011 SOMC 1 -1001011011 tooth-rattling 1 -1001011011 Admirals 1 -1001011011 Brushstyle 1 -1001011011 secondary-markets 1 -1001011011 Maliano 1 -1001011011 renominates 1 -1001011011 Louisianan 1 -1001011011 Xiaojun 1 -1001011011 Venkataraman 1 -1001011011 unctuously 1 -1001011011 knew. 1 -1001011011 118-113 1 -1001011011 splurged 1 -1001011011 Alburt 1 -1001011011 Coucouzes 1 -1001011011 Ku-hwa 1 -1001011011 ulHaq 1 -1001011011 Dizdarevic 1 -1001011011 Habyarimana 1 -1001011011 administration-initiated 1 -1001011011 Tae-woo 1 -1001011011 Seyed 1 -1001011011 Harrlach 1 -1001011011 commissionership 1 -1001011011 scribbler 1 -1001011011 heckles 1 -1001011011 domestic-affairs 1 -1001011011 Velazco 1 -1001011011 Schluep 1 -1001011011 Po-yun 1 -1001011011 w/ 1 -1001011011 Sokolovskiy 1 -1001011011 Tapes. 1 -1001011011 Pida 1 -1001011011 Goltzius 1 -1001011011 insurance-department 1 -1001011011 Talavera 1 -1001011011 Seisakoshu 1 -1001011011 bedazzlement 1 -1001011011 icn 1 -1001011011 Wrenn 1 -1001011011 administation 1 -1001011011 BinJadid 1 -1001011011 Piozzi 1 -1001011011 Langtry 1 -1001011011 counterterror 1 -1001011011 Kouri 1 -1001011011 bewails 1 -1001011011 Lodwick 1 -1001011011 Kaddah 1 -1001011011 Mun 1 -1001011011 Kuang-yuan 1 -1001011011 Liankui 1 -1001011011 inadvisedly 1 -1001011011 Chithaisong 1 -1001011011 wilai 1 -1001011011 Zhiqing 1 -1001011011 Puddle-Duck 1 -1001011011 Youchan 1 -1001011011 Petres 1 -1001011011 Schwaz 1 -1001011011 Institution-sponsored 1 -1001011011 Mojsov 1 -1001011011 dello 1 -1001011011 26s 1 -1001011011 administration-bashing 1 -1001011011 Trilateralists 1 -1001011011 Schmall 1 -1001011011 Gossens 1 -1001011011 Bernuth 1 -1001011011 eccentrically 1 -1001011011 undersecretary-level 1 -1001011011 Chief-of-Staff 1 -1001011011 Changqin 1 -1001011011 Doo-whan 1 -1001011011 Institution. 1 -1001011011 Farfan 1 -1001011011 Doo-hwan 1 -1001011011 Hsiaoyung 1 -1001011011 Tiscornia 1 -1001011011 Kyung-Hwan 1 -1001011011 information-ministry 1 -1001011011 PRINCETON/NEWPORT 1 -1001011011 contoversy 1 -1001011011 Qatari 1 -1001011011 Fed/Dukakis 1 -1001011011 Shigao 1 -1001011011 Sydow 1 -1001011011 Okongwu 1 -1001011011 Chikwong 1 -1001011011 ephebe 1 -1001011011 won-who 1 -1001011011 Luan 1 -1001011011 Savalas 2 -1001011011 Puche 2 -1001011011 Magana 2 -1001011011 Onizuka 2 -1001011011 centurions 2 -1001011011 Justines 2 -1001011011 Ledgard 2 -1001011011 Klink 2 -1001011011 military-policy 2 -1001011011 Chromatography 2 -1001011011 Senile 2 -1001011011 Hsiao-wu 2 -1001011011 al-Samman 2 -1001011011 Paullada 2 -1001011011 Jiwei 2 -1001011011 Resigns 2 -1001011011 Arreaza 2 -1001011011 Delarbre 2 -1001011011 el-Mahdi 2 -1001011011 Jinglian 2 -1001011011 An-225 2 -1001011011 Crue 2 -1001011011 Kashing 2 -1001011011 Georgoudis 2 -1001011011 Lorca 2 -1001011011 Figarella 2 -1001011011 Goon 2 -1001011011 Qiaomu 2 -1001011011 Premadasa 2 -1001011011 Gierke 2 -1001011011 Randone 2 -1001011011 Aux 2 -1001011011 Eskew 2 -1001011011 Sarhan 2 -1001011011 nostalgiacs 2 -1001011011 Clariond 2 -1001011011 Leoncavallo 2 -1001011011 Dello 2 -1001011011 Identity 2 -1001011011 Urbino 2 -1001011011 Cattela 2 -1001011011 Grunewald 2 -1001011011 Greenewalt 2 -1001011011 Polshek 2 -1001011011 Flimflam 3 -1001011011 Mahan 3 -1001011011 Bradsky 3 -1001011011 Yuk-sui 3 -1001011011 Bed-Lift 3 -1001011011 Alyea 3 -1001011011 Zainuddin 3 -1001011011 Hofmannsthal 3 -1001011011 Pahlevi 3 -1001011011 Hoyo 3 -1001011011 Arevalo 3 -1001011011 Commager 3 -1001011011 Hamzah 3 -1001011011 Halsted 3 -1001011011 Klub 3 -1001011011 Chi-cheng 3 -1001011011 Urbaneja 3 -1001011011 stand-ins 3 -1001011011 Mola 3 -1001011011 Meyern-Hohenberg 3 -1001011011 Alam 3 -1001011011 Meesters 3 -1001011011 Pahlavi 3 -1001011011 Xitong 3 -1001011011 Mateos 3 -1001011011 Popovic 3 -1001011011 Ul-Haq 3 -1001011011 Xueqian 3 -1001011011 Beg 3 -1001011011 Chingkuo 4 -1001011011 Weizsacker 4 -1001011011 Clemm 4 -1001011011 Wassefs 4 -1001011011 Rihua 4 -1001011011 Runnan 4 -1001011011 al-Din 4 -1001011011 Ax 4 -1001011011 Waaden 4 -1001011011 Peale 4 -1001011011 Yining 4 -1001011011 Gewelber 4 -1001011011 Bueller 4 -1001011011 Chau 4 -1001011011 Qili 4 -1001011011 court-packing 4 -1001011011 Cuenca 4 -1001011011 Bendjedid 5 -1001011011 Rajan 5 -1001011011 Wissell 5 -1001011011 addressee 5 -1001011011 Erenu 5 -1001011011 Teape 5 -1001011011 McGuffey 5 -1001011011 Akhtar 5 -1001011011 Benjedid 5 -1001011011 Kao-cheng 5 -1001011011 Mai 5 -1001011011 Holtzbrinck 6 -1001011011 Ramlawi 6 -1001011011 Schaaf 6 -1001011011 Pimienta 6 -1001011011 Loewenstern 6 -1001011011 Golembe 6 -1001011011 Barrows 7 -1001011011 Chok 7 -1001011011 Poo 7 -1001011011 ISE 7 -1001011011 Asiain 7 -1001011011 Longworth 7 -1001011011 Carruthers 7 -1001011011 Stengel 7 -1001011011 Wassef 7 -1001011011 Ledyard 8 -1001011011 Liqun 8 -1001011011 Bulow 9 -1001011011 Joyner 9 -1001011011 Svizzera 10 -1001011011 Kanawa 10 -1001011011 Yilin 10 -1001011011 Tae-Woo 10 -1001011011 adminstration 11 -1001011011 Pomicino 12 -1001011011 Mancha 14 -1001011011 Calderon 14 -1001011011 Ledo 14 -1001011011 Stade 14 -1001011011 Resende 15 -1001011011 Jagt 15 -1001011011 Defarges 15 -1001011011 Presidency 16 -1001011011 Kuenheim 17 -1001011011 Curve 18 -1001011011 ul-Haq 18 -1001011011 Zalm 19 -1001011011 Tessler 19 -1001011011 DiLeo 19 -1001011011 Marbod 21 -1001011011 Rana 21 -1001011011 Mardon 23 -1001011011 Mohamad 25 -1001011011 Kyung 30 -1001011011 Hee 31 -1001011011 Ka-shing 34 -1001011011 Grisanti 38 -1001011011 Kai-shek 40 -1001011011 Portillo 42 -1001011011 Ching-kuo 46 -1001011011 Llosa 47 -1001011011 Yaobang 50 -1001011011 Peng 52 -1001011011 Ziyang 71 -1001011011 appointee 90 -1001011011 Doo 134 -1001011011 Xiaoping 153 -1001011011 Doctrine 175 -1001011011 Pereira 275 -1001011011 Institution 335 -1001011011 administration 12262 -1001011011 Hawley 467 -10010111000 commiteee 1 -10010111000 die-offs 1 -10010111000 Mountaineering 1 -10010111000 77-12 1 -10010111000 groundskeeper 1 -10010111000 barrette 1 -10010111000 convertible. 1 -10010111000 Lodges 1 -10010111000 38-0 1 -10010111000 Deloria 1 -10010111000 rightsand 1 -10010111000 Safety. 1 -10010111000 venture-capitalists 1 -10010111000 sworn-in 1 -10010111000 CEILING 1 -10010111000 behind-the-times 1 -10010111000 Seligmans 1 -10010111000 crooners 1 -10010111000 near-silence 1 -10010111000 shop-till-you-drop 1 -10010111000 361-47 1 -10010111000 Neo-PAN 1 -10010111000 campaign-planting 1 -10010111000 Riyadh-on-the-Seine 1 -10010111000 risk-value 1 -10010111000 Rubouts 1 -10010111000 usurpations 1 -10010111000 newshawks 2 -10010111000 Wilsonians 2 -10010111000 dawi 2 -10010111000 carrels 2 -10010111000 Dalkon-Shield 2 -10010111000 S.A 2 -10010111000 accumulator 2 -10010111000 Harriers 2 -10010111000 Out-Witted 2 -10010111000 mountaineer 2 -10010111000 85-7 2 -10010111000 subcommitee 2 -10010111000 deliberators 2 -10010111000 Subcomittee 2 -10010111000 searcher 3 -10010111000 85-11 3 -10010111000 subcomittee 4 -10010111000 Kultura 5 -10010111000 imputation 6 -10010111000 commitee 6 -10010111000 Newshour 8 -10010111000 Sketch 8 -10010111000 doorkeeper 13 -10010111000 summiteers 14 -10010111000 Presidium 15 -10010111000 econships 19 -10010111000 Vincennes 51 -10010111000 suite 191 -10010111000 conferees 335 -10010111000 council 1214 -10010111000 subcommittee 1471 -10010111000 panel 4211 -10010111000 committee 7600 -10010111001 long-latent 1 -10010111001 ChesebroughPond 1 -10010111001 681,169 1 -10010111001 Sherpas 1 -10010111001 drug-advertising 1 -10010111001 ever-eroding 1 -10010111001 Groove 1 -10010111001 final-term 1 -10010111001 Loniten 1 -10010111001 once-bulging 1 -10010111001 once-unified 1 -10010111001 40-1 1 -10010111001 drug-besotted 1 -10010111001 Kewanee 1 -10010111001 flimsiness 1 -10010111001 balanace 1 -10010111001 Vineyard. 1 -10010111001 standardbearer 1 -10010111001 Sportman 1 -10010111001 Eximbank 1 -10010111001 9,986 1 -10010111001 Wethersfield 1 -10010111001 secretarytreasurer 1 -10010111001 mule. 1 -10010111001 non-cement 1 -10010111001 gruffness 1 -10010111001 midland 1 -10010111001 80,967 1 -10010111001 bellringers 1 -10010111001 high-service 1 -10010111001 pizzicato-heavy 1 -10010111001 much-labored-over 1 -10010111001 De-Lovely 1 -10010111001 Busman 1 -10010111001 53-employee 1 -10010111001 restraurants 1 -10010111001 BATF 1 -10010111001 UltraLite 1 -10010111001 power-takeoff 1 -10010111001 kaleidoscopes 1 -10010111001 proceduresas 1 -10010111001 publican 1 -10010111001 pseudo-democratic 1 -10010111001 Etowa 1 -10010111001 auditable 1 -10010111001 22,383 1 -10010111001 Saltville 1 -10010111001 pro-Labor 1 -10010111001 rape-obsessed 1 -10010111001 meager-yielding 1 -10010111001 Wilksboro 1 -10010111001 basicchemicals 1 -10010111001 modernizaton 1 -10010111001 a-wasting 1 -10010111001 Takeshitasan 1 -10010111001 Chicago-Columbus 1 -10010111001 geniuses-by-consensus 1 -10010111001 Quayle-baiting 1 -10010111001 closing. 1 -10010111001 dustbins 1 -10010111001 5,858,102 1 -10010111001 yarn-making 1 -10010111001 proselytizers 1 -10010111001 biomatrix 1 -10010111001 fees. 1 -10010111001 Joutel 1 -10010111001 640-employee 1 -10010111001 flyleaf 1 -10010111001 permission. 1 -10010111001 Koyanagi-san 1 -10010111001 gorgeous. 1 -10010111001 re-fattening 1 -10010111001 village-council 1 -10010111001 2,057 1 -10010111001 designed-in 1 -10010111001 heels-in 1 -10010111001 polo-playing 1 -10010111001 8:26.58 1 -10010111001 Colestipol 1 -10010111001 image-consciousness 1 -10010111001 Litkontrol 1 -10010111001 53,162 1 -10010111001 1,459 1 -10010111001 Baltimore-London 1 -10010111001 1697.35 1 -10010111001 14day 1 -10010111001 113,360 1 -10010111001 twitchy 1 -10010111001 curly-blond 1 -10010111001 Chiasso 1 -10010111001 Chindits 1 -10010111001 Boisbriand 1 -10010111001 Arrived 1 -10010111001 re-authorized 1 -10010111001 1600-speed 1 -10010111001 Andys 1 -10010111001 91-5 1 -10010111001 amazing. 1 -10010111001 DC9-30s 1 -10010111001 Rawsonville 1 -10010111001 subcommitees 1 -10010111001 predications 1 -10010111001 23-11 1 -10010111001 325,734 1 -10010111001 money-targeting 1 -10010111001 19,868 1 -10010111001 172,895 1 -10010111001 frippery 1 -10010111001 tumults 1 -10010111001 WJR 1 -10010111001 Trentwood 1 -10010111001 statusy 1 -10010111001 oddsmaking 1 -10010111001 neo-chlamys 1 -10010111001 profligateness 1 -10010111001 duff 1 -10010111001 Wrangel-St 1 -10010111001 pinfeathers 1 -10010111001 now-defeated 1 -10010111001 civil-rights-minded 1 -10010111001 ever-so-smarmy 1 -10010111001 108,245 1 -10010111001 titilating 1 -10010111001 secondary-mortgage-loan 1 -10010111001 deeps 1 -10010111001 journalism. 1 -10010111001 smoke-and-mirrors 1 -10010111001 233,360 1 -10010111001 Delhaize. 1 -10010111001 1.6900-mark 1 -10010111001 83-6 1 -10010111001 CDROMs 1 -10010111001 peaceniks 1 -10010111001 production-scheduling 1 -10010111001 26-9 1 -10010111001 nerveracking 1 -10010111001 underclothes 1 -10010111001 unhealthy. 1 -10010111001 car-like 1 -10010111001 signature. 1 -10010111001 depredation 1 -10010111001 1.7200-mark 1 -10010111001 Meavcor 1 -10010111001 money-granting 1 -10010111001 longest-sitting 1 -10010111001 spacebar 1 -10010111001 child-psychiatry 1 -10010111001 wok 1 -10010111001 executive-board 1 -10010111001 vermicatalog 1 -10010111001 note-printing 1 -10010111001 sugar-policy 1 -10010111001 moaners 1 -10010111001 vivacity 1 -10010111001 over-engineered 1 -10010111001 102.99 1 -10010111001 Millbury 1 -10010111001 sabre-rattling 1 -10010111001 crash-battered 1 -10010111001 sexpert 1 -10010111001 thriftiest 1 -10010111001 premium-end 1 -10010111001 pentastar 1 -10010111001 mushroom-gobbling 1 -10010111001 Edsion 1 -10010111001 possible. 1 -10010111001 ignorant. 1 -10010111001 then-14 1 -10010111001 syndrome. 1 -10010111001 madeleine 1 -10010111001 long-successful 1 -10010111001 trees. 1 -10010111001 NEWSLETTER 1 -10010111001 unwieldiness 1 -10010111001 forewall 1 -10010111001 duties. 1 -10010111001 adoptive-parent 1 -10010111001 1-900-234-JOSE 1 -10010111001 Ivonia 1 -10010111001 cold-bloodedness 1 -10010111001 Digest-Canada 1 -10010111001 codename 1 -10010111001 ever-so-Oxonian 1 -10010111001 salads/Campbell 1 -10010111001 stamp-information 1 -10010111001 taproots 1 -10010111001 Hippieville 1 -10010111001 downsides 1 -10010111001 pteranodon 1 -10010111001 lovable/hateable 1 -10010111001 Fester 1 -10010111001 6286 1 -10010111001 correspondence-made-public 1 -10010111001 2,322 1 -10010111001 A-OK 1 -10010111001 military-assistance 1 -10010111001 acetyl-L-carnitine 1 -10010111001 fifth-least 1 -10010111001 121,321 1 -10010111001 Doswell 1 -10010111001 glasnosticians 1 -10010111001 /Bullock 1 -10010111001 Galatoire 1 -10010111001 super-lightweight 1 -10010111001 Zermatt 1 -10010111001 president-to-be 1 -10010111001 Skuh-LEE-uh 1 -10010111001 PACmen 1 -10010111001 Meyrin 1 -10010111001 Sharonville 1 -10010111001 132.66 1 -10010111001 1.618 1 -10010111001 ill-effects 1 -10010111001 developement 1 -10010111001 loaves. 1 -10010111001 hacksaw-proof 1 -10010111001 mortgagee 1 -10010111001 useability 1 -10010111001 mini-crop 1 -10010111001 pro-research 1 -10010111001 Catlettsburg 1 -10010111001 Pickens-inspired 1 -10010111001 over-indebtedness 2 -10010111001 anti-matter 2 -10010111001 filo 2 -10010111001 roadbeds 2 -10010111001 blacksmith 2 -10010111001 Steelton 2 -10010111001 energy-wasting 2 -10010111001 problems. 2 -10010111001 31,484 2 -10010111001 16-party 2 -10010111001 abbot 2 -10010111001 playbook 2 -10010111001 managing-board 2 -10010111001 particularity 2 -10010111001 position. 2 -10010111001 crotchets 2 -10010111001 extra-parliamentary 3 -10010111001 utopianism 3 -10010111001 ousters 3 -10010111001 retransmissions 3 -10010111001 Aliquippa 3 -10010111001 Ueroku 3 -10010111001 apogee 3 -10010111001 825SL 3 -10010111001 Hirschite 3 -10010111001 Asiad 3 -10010111001 A310s 3 -10010111001 Hemopump 3 -10010111001 regatta 4 -10010111001 Finest 4 -10010111001 autopilot 4 -10010111001 union-led 4 -10010111001 syllabus 6 -10010111001 report. 6 -10010111001 dues-paying 8 -10010111001 Jumbos 9 -10010111001 Storting 11 -10010111001 midsection 11 -10010111001 reaffiliation 12 -10010111001 Basement 15 -10010111001 governor-general 15 -10010111001 FOMC 16 -10010111001 Mujahedeen 17 -10010111001 /Bishop 21 -10010111001 board 17062 -10010111001 hull 51 -10010111010 Fabiola 1 -10010111010 farm/factory 1 -10010111010 relatons 1 -10010111010 Giulia 1 -10010111010 non-Briton 1 -10010111010 Hametz 1 -10010111010 clock-computer 1 -10010111010 trading-by-headline 1 -10010111010 datum 1 -10010111010 WUSL-FM 1 -10010111010 Sooni 1 -10010111010 Dorrits 1 -10010111010 drug-abuser 1 -10010111010 picocurie 1 -10010111010 Inga 1 -10010111010 CATEGORY 1 -10010111010 Middle-Westerner 1 -10010111010 Liliuokalani 1 -10010111010 shyster 1 -10010111010 jakes 1 -10010111010 pitman 1 -10010111010 match-ups 1 -10010111010 mile-and-a-half 1 -10010111010 companywho 1 -10010111010 toolsheds 1 -10010111010 Liliukalani 1 -10010111010 trine 1 -10010111010 Jeroen 1 -10010111010 14-D-1 1 -10010111010 gastronaut 1 -10010111010 Tippi 1 -10010111010 Nefertiti. 1 -10010111010 Floriana 1 -10010111010 passenger-mile 1 -10010111010 Gallego 1 -10010111010 unblushingly 1 -10010111010 slumlord 1 -10010111010 evening-shift 1 -10010111010 remic 1 -10010111010 Ruz 1 -10010111010 Chauvin 1 -10010111010 frothings 1 -10010111010 transcriber 1 -10010111010 power-company 2 -10010111010 Dealey 2 -10010111010 man-year 2 -10010111010 Natshe 2 -10010111010 dioxane 2 -10010111010 Delfeayo 2 -10010111010 CFIII 2 -10010111010 sayers 2 -10010111010 mariachis 2 -10010111010 retarders 2 -10010111010 family. 2 -10010111010 Patties 2 -10010111010 ganglion 2 -10010111010 shufflings 2 -10010111010 piglet 2 -10010111010 JSIM 2 -10010111010 vitrine 2 -10010111010 Northerner 3 -10010111010 5/2 4 -10010111010 Survivor 5 -10010111010 Maker 12 -10010111010 confederation 50 -10010111010 clan 51 -10010111010 shake-up 199 -10010111010 group 31210 -10010111010 consortium 1093 -100101110110 YVES 1 -100101110110 ajustment 1 -100101110110 clerks. 1 -100101110110 ILG 1 -100101110110 unmusicality 1 -100101110110 COURCOUX 1 -100101110110 CCR2.2VHNLX 1 -100101110110 rulemakers 1 -100101110110 satellite-by 1 -100101110110 MASSONAUD-FONTENAY 1 -100101110110 coneheads 1 -100101110110 self-effacement 1 -100101110110 Dewaay 2 -100101110110 hard-hearted 2 -100101110110 Butchers 3 -100101110110 rule-setting 4 -100101110110 firm 20979 -100101110110 firm. 10 -1001011101110 Wolverines 1 -1001011101110 infinit 1 -1001011101110 anti-testers 1 -1001011101110 Meskos 1 -1001011101110 revenue-based 1 -1001011101110 raisings 1 -1001011101110 industry-commissioned 1 -1001011101110 slenderly 1 -1001011101110 Mobilgas 1 -1001011101110 165-pounder 1 -1001011101110 stix 1 -1001011101110 negotatiators 1 -1001011101110 Nuf 1 -1001011101110 agency-advertiser 1 -1001011101110 800-mile-long 1 -1001011101110 activitiesan 1 -1001011101110 posters. 1 -1001011101110 litem 1 -1001011101110 much-spurned 1 -1001011101110 Jungvolk 2 -1001011101110 forelock 2 -1001011101110 EPC 2 -1001011101110 excavator 2 -1001011101110 N-car 2 -1001011101110 Confrerie 2 -1001011101110 PROGRAM 2 -1001011101110 Villagrans 2 -1001011101110 agencies. 2 -1001011101110 Armagnac 2 -1001011101110 Exploder 2 -1001011101110 libs 2 -1001011101110 VPT391 3 -1001011101110 argolla 3 -1001011101110 AAGPBL 4 -1001011101110 chancellery 4 -1001011101110 Missourian 4 -1001011101110 NMFS 4 -1001011101110 valorem 5 -1001011101110 infinitum 5 -1001011101110 Leones 6 -1001011101110 hominem 6 -1001011101110 nauseam 7 -1001011101110 PAP 22 -1001011101110 observatory 32 -1001011101110 hoc 67 -1001011101110 announcer 96 -1001011101110 admiral 104 -1001011101110 academy 116 -1001011101110 agency 12750 -1001011101110 association 2325 -1001011101111 Franco-British 1 -1001011101111 pass-the-buck 1 -1001011101111 Iranagua 1 -1001011101111 leaved 1 -1001011101111 yuppies-in-training 1 -1001011101111 seigniorial 1 -1001011101111 Robot-70 1 -1001011101111 Byzantines 1 -1001011101111 Honzawas 1 -1001011101111 Kazino 1 -1001011101111 record-bashing 1 -1001011101111 Haixian 1 -1001011101111 casement 1 -1001011101111 4/4 1 -1001011101111 770-room 1 -1001011101111 dutyfree 1 -1001011101111 state-monitored 1 -1001011101111 Pillsbury-owned 1 -1001011101111 300-bed 1 -1001011101111 already-packed 1 -1001011101111 anthracite-burning 1 -1001011101111 578-room 1 -1001011101111 blond-bombshell 1 -1001011101111 501-room 1 -1001011101111 pre-board-meeting 1 -1001011101111 5,500-unit 1 -1001011101111 two-stick 1 -1001011101111 16-time 1 -1001011101111 260-room 1 -1001011101111 electronic-assembly 1 -1001011101111 deparment 1 -1001011101111 345,000-circulation 1 -1001011101111 literary-awards 1 -1001011101111 knifelike 1 -1001011101111 80-seat 1 -1001011101111 multiscreened 1 -1001011101111 ex-SBA 1 -1001011101111 teen-dominated 1 -1001011101111 205-seat 1 -1001011101111 Allegis-owned 1 -1001011101111 rimstone 1 -1001011101111 main-floor 1 -1001011101111 Yama 1 -1001011101111 Avion 1 -1001011101111 opera-like 1 -1001011101111 radical-slick 1 -1001011101111 tropical-fish 1 -1001011101111 oil-ministry 1 -1001011101111 53,629 1 -1001011101111 dozen-plus 1 -1001011101111 early-budding 1 -1001011101111 Samuelson-Nordhaus 1 -1001011101111 690-outlet 1 -1001011101111 Mulroneys 1 -1001011101111 alley/Italian 1 -1001011101111 400-bedroom 1 -1001011101111 simonpure 1 -1001011101111 600,000-circulation 1 -1001011101111 lit-hype 1 -1001011101111 Washington-centered 1 -1001011101111 111-year-old 1 -1001011101111 Boersen-Zeitung 1 -1001011101111 health-centered 1 -1001011101111 glasnost-drunk 1 -1001011101111 20-dealer 1 -1001011101111 360-room 1 -1001011101111 supermarket-style 1 -1001011101111 2,800-room 1 -1001011101111 bomb-bay 1 -1001011101111 42-megawatt 1 -1001011101111 Robesonian 1 -1001011101111 half-frame 1 -1001011101111 eight-warhead 1 -1001011101111 poverty-ridden 1 -1001011101111 Wallenbergs 1 -1001011101111 Sternbergs 1 -1001011101111 down-home-style 1 -1001011101111 TV-cable 1 -1001011101111 60,000-circulation 1 -1001011101111 headliners 1 -1001011101111 piranha-like 1 -1001011101111 non-Nazi 1 -1001011101111 IGA 1 -1001011101111 supermarket-styled 1 -1001011101111 supersafe 1 -1001011101111 136-year-old 1 -1001011101111 semilurid 1 -1001011101111 318-suite 1 -1001011101111 Phildelphia-based 1 -1001011101111 almost-empty 1 -1001011101111 non-retro 1 -1001011101111 left-bank 1 -1001011101111 165-bed 1 -1001011101111 city/regional 1 -1001011101111 windbell 1 -1001011101111 Wilkinsons 1 -1001011101111 pro-Sendero 1 -1001011101111 telephone-connected 1 -1001011101111 Burgsteinfurt 1 -1001011101111 JDL 1 -1001011101111 lovestruck 1 -1001011101111 385-room 1 -1001011101111 son-of-a-gun 1 -1001011101111 new-look 1 -1001011101111 capsule-maker 1 -1001011101111 1,292-screen 1 -1001011101111 calcium-chloride 1 -1001011101111 too-expensive 1 -1001011101111 35,000-circulation 1 -1001011101111 42nd-largest 1 -1001011101111 four-to-six 1 -1001011101111 63-store 1 -1001011101111 90,000-square-foot 2 -1001011101111 Camerons 2 -1001011101111 Artswatch 2 -1001011101111 Virginian-Pilot 2 -1001011101111 Grosses 2 -1001011101111 page-white 2 -1001011101111 Hebrew-language 2 -1001011101111 250-room 2 -1001011101111 shilly-shallying 2 -1001011101111 twisters 2 -1001011101111 government-influenced 2 -1001011101111 Kayhan 2 -1001011101111 Newmans 3 -1001011101111 1,174-room 3 -1001011101111 Hapsburgs 3 -1001011101111 Deity 3 -1001011101111 AIA 3 -1001011101111 Cotronics 4 -1001011101111 kebab 4 -1001011101111 Talmud 5 -1001011101111 Colliers 5 -1001011101111 GIA 5 -1001011101111 superlative 5 -1001011101111 CSO 5 -1001011101111 Mummy 6 -1001011101111 AHA 8 -1001011101111 N-reactor 10 -1001011101111 Ilbo 11 -1001011101111 navigator 14 -1001011101111 Aladdin 14 -1001011101111 emir 18 -1001011101111 pontiff 32 -1001011101111 Gazeta 35 -1001011101111 denomination 46 -1001011101111 Lancet 56 -1001011101111 tribunal 113 -1001011101111 Nation 195 -1001011101111 institute 1012 -1001011101111 ministry 1116 -1001011101111 department 7344 -1001011101111 commission 4913 -10010111100 Reliant/Caravelle 1 -10010111100 character-reading 1 -10010111100 7,000-shop 1 -10010111100 Corp.-type 1 -10010111100 court-reporting 1 -10010111100 mass-communications 1 -10010111100 friendlies 1 -10010111100 fantasy-tapes 1 -10010111100 frozen-specialties 1 -10010111100 voice-technology 1 -10010111100 nonelectrical-machinery 1 -10010111100 fabricated-metal-products 1 -10010111100 candystriped 1 -10010111100 outdoor-services 1 -10010111100 Cabranes 1 -10010111100 nonferrous-casting 1 -10010111100 gasoline-distribution 1 -10010111100 telecommuncations 1 -10010111100 metal-packaging 1 -10010111100 modeling-compound 1 -10010111100 crossing-guard 1 -10010111100 placer-mining 1 -10010111100 buggy-whip 1 -10010111100 baby-goods 1 -10010111100 folding-carton 1 -10010111100 Fino 1 -10010111100 concrete-pipe 1 -10010111100 electron-tube 1 -10010111100 rough-shod 1 -10010111100 inter-connect 1 -10010111100 shoe-retailing 1 -10010111100 phone-manufacturing 1 -10010111100 period-but 1 -10010111100 close-to-the-ground 1 -10010111100 offshore-oil 1 -10010111100 major-airline 1 -10010111100 sugaring 1 -10010111100 pharmacuetical 1 -10010111100 shell-fishing 1 -10010111100 paging-services 1 -10010111100 savings-banks 1 -10010111100 steel-drum 1 -10010111100 market-letter 1 -10010111100 shooting-preserve 1 -10010111100 telephone-marketing 1 -10010111100 health-maintenance-organization 1 -10010111100 architectural-hardware 1 -10010111100 insulin-device 1 -10010111100 consumer-cyclical 1 -10010111100 glass-distribution 1 -10010111100 microcomputer-software 1 -10010111100 automotive-supplier 1 -10010111100 tv 1 -10010111100 nomenclatural 1 -10010111100 once-fraternal 1 -10010111100 wholesale-utility 1 -10010111100 baby-formula 1 -10010111100 N-bloctin 1 -10010111100 cattle-packing 1 -10010111100 home-services 1 -10010111100 wind-power 1 -10010111100 ICAC 2 -10010111100 80-store 2 -10010111100 Americanophile 2 -10010111100 jingoes 2 -10010111100 thift 2 -10010111100 electricpower 2 -10010111100 digital-communications 2 -10010111100 motion-picture-theater 2 -10010111100 confectioners 2 -10010111100 wine-industry 2 -10010111100 soft-contact-lens 2 -10010111100 takeover-rumor 2 -10010111100 slumlords 2 -10010111100 early-1960s 3 -10010111100 honeybee 3 -10010111100 tire-maker 3 -10010111100 housing-market 3 -10010111100 ironworks 3 -10010111100 Herbfarm 3 -10010111100 midlands 3 -10010111100 nuclear-utility 3 -10010111100 Kendons 3 -10010111100 curries 3 -10010111100 H-I 3 -10010111100 Olmec 4 -10010111100 Amethyste 4 -10010111100 watchmaker 4 -10010111100 chromatograph 4 -10010111100 everyman 4 -10010111100 nation-state 4 -10010111100 lead-recycling 5 -10010111100 twin-engined 5 -10010111100 stork 5 -10010111100 Intecom 5 -10010111100 pawnbroker 5 -10010111100 Airtours 5 -10010111100 CBC 5 -10010111100 countertop 6 -10010111100 triathlon 6 -10010111100 SBIC 6 -10010111100 colonizers 6 -10010111100 chipmaker 6 -10010111100 Globe-Democrat 8 -10010111100 savings-bank 8 -10010111100 commuter-airline 8 -10010111100 forwarder 8 -10010111100 Mesbic 9 -10010111100 tiremaker 9 -10010111100 Oncogen 11 -10010111100 Chargers 12 -10010111100 oracle 14 -10010111100 ETA-10 14 -10010111100 E2C 15 -10010111100 amphitheater 16 -10010111100 SAR 16 -10010111100 automaker 18 -10010111100 homebuilder 26 -10010111100 MLP 36 -10010111100 shipbuilder 38 -10010111100 meatpacker 41 -10010111100 electric-utility 47 -10010111100 arb 47 -10010111100 infantry 51 -10010111100 freighter 65 -10010111100 REIT 118 -10010111100 HMO 173 -10010111100 savings-and-loan 179 -10010111100 brewer 303 -10010111100 steelmaker 504 -10010111100 S&L 527 -10010111100 insurer 1105 -10010111100 railroad 1460 -10010111100 army 1562 -10010111100 carrier 2018 -10010111100 thrift 3824 -10010111100 utility 4621 -10010111100 airline 5311 -10010111101 Korps 1 -10010111101 provision-federal 1 -10010111101 nondepository 1 -10010111101 water-leakage 1 -10010111101 Gaubert-McBirney 1 -10010111101 customers. 1 -10010111101 file-server 1 -10010111101 neo-Calvinism 1 -10010111101 392,400-share 1 -10010111101 Nova-controlled 1 -10010111101 Muavesi 1 -10010111101 rail-mill 1 -10010111101 training-center 1 -10010111101 51-bank 1 -10010111101 honeybrown 1 -10010111101 telephone-utility 1 -10010111101 unrelated-business-income 1 -10010111101 Batchy 1 -10010111101 mortgage-bank 1 -10010111101 IAPA 1 -10010111101 grass-root 1 -10010111101 non-Tiger 1 -10010111101 yet-to-be-created 1 -10010111101 PL480 1 -10010111101 freehanded 1 -10010111101 space-center 1 -10010111101 62-bank 1 -10010111101 41-bank 1 -10010111101 33-bank 1 -10010111101 Holyoke-based 1 -10010111101 al-Shalabi 1 -10010111101 financical 1 -10010111101 intramarginal-intervention 1 -10010111101 multi-airline 1 -10010111101 Chicago-branch 1 -10010111101 gelatin-like 1 -10010111101 dividend-capturing 1 -10010111101 Purolator-related 1 -10010111101 radiostation 1 -10010111101 Mabsorba-column 1 -10010111101 highest-interest 1 -10010111101 surbordinated 1 -10010111101 sales-solicitation 1 -10010111101 Mexican-type 1 -10010111101 national-edition 1 -10010111101 industry-residential 1 -10010111101 Carlo-based 1 -10010111101 muzzle-loading 1 -10010111101 fluctuating-rate 1 -10010111101 Communitywide 1 -10010111101 banks. 1 -10010111101 cold-fusion 2 -10010111101 company-financed 2 -10010111101 nonconsolidated 2 -10010111101 Manute 2 -10010111101 multi-bank 2 -10010111101 dollardenominated 2 -10010111101 operating-company 2 -10010111101 three-bank 2 -10010111101 Baden-Baden 2 -10010111101 inter-company 2 -10010111101 correlating 2 -10010111101 five-bank 2 -10010111101 emergency-care 2 -10010111101 Unifil 2 -10010111101 C&NW 3 -10010111101 barrack 3 -10010111101 nine-bank 3 -10010111101 currency-denominated 3 -10010111101 bank-issued 3 -10010111101 advertising-agency 3 -10010111101 lesser-developed-country 3 -10010111101 USAID 3 -10010111101 military-sales 5 -10010111101 Hilo 5 -10010111101 one-bank 6 -10010111101 Freia 6 -10010111101 water-utility 8 -10010111101 securities-firm 16 -10010111101 multibank 20 -10010111101 commercial-bank 72 -10010111101 bank 24267 -10010111101 IDA 96 -10010111110 21-floor 1 -10010111110 250-dog 1 -10010111110 wholesaler-distributor 1 -10010111110 Sterivet 1 -10010111110 wispiness 1 -10010111110 consitution 1 -10010111110 chocolate-box 1 -10010111110 1753 1 -10010111110 wood-tie 1 -10010111110 interprovincial 1 -10010111110 quasi-party 1 -10010111110 open-claw 1 -10010111110 MBBC 1 -10010111110 hich 1 -10010111110 cabaret-like 1 -10010111110 irresponsiblity 1 -10010111110 insect-infested 1 -10010111110 MONITOR 1 -10010111110 REINSURERS 1 -10010111110 ECRS 1 -10010111110 non-veteran 1 -10010111110 jukebox-like 1 -10010111110 parklike 2 -10010111110 multiplexes 2 -10010111110 follow-the-leader 2 -10010111110 Impressionists 2 -10010111110 bloc-controlled 2 -10010111110 crossbreeding 2 -10010111110 malingerers 2 -10010111110 lean-tos 2 -10010111110 private-bank 3 -10010111110 poorhouse 3 -10010111110 sidewall 3 -10010111110 dogcatcher 4 -10010111110 york 4 -10010111110 acounting 4 -10010111110 evader 4 -10010111110 Grotto 4 -10010111110 matchbox 4 -10010111110 Limelight 6 -10010111110 assessor 10 -10010111110 preparer 10 -10010111110 Sidekick 16 -10010111110 fiat 31 -10010111110 Legislature 287 -10010111110 constitution 540 -10010111110 legislature 598 -10010111110 statute 668 -10010111110 law 17112 -10010111110 code 1017 -100101111110 parternships 1 -100101111110 unproductivity 1 -100101111110 barflies 1 -100101111110 Compaqs 1 -100101111110 minisubs 1 -100101111110 technique. 1 -100101111110 pageboy 1 -100101111110 2,038,000 1 -100101111110 mineral-assay 1 -100101111110 nincompoop 1 -100101111110 troop-trains 1 -100101111110 hub-currency 1 -100101111110 hot-sellers 1 -100101111110 mintage 1 -100101111110 inductors 1 -100101111110 pregnancy-disability 1 -100101111110 engine-makers 1 -100101111110 benefits-write-offs 1 -100101111110 playpants 1 -100101111110 succcess 1 -100101111110 divots 1 -100101111110 Terzo 1 -100101111110 graphicss 1 -100101111110 aircraft-fighters 1 -100101111110 Chrysler-Renault 1 -100101111110 phrasings 1 -100101111110 207,307,135 1 -100101111110 534,514 1 -100101111110 1,565,000 1 -100101111110 end-product 1 -100101111110 partnerhsips 1 -100101111110 mood-piece 1 -100101111110 self-searching 1 -100101111110 budget. 1 -100101111110 48/17B-5 1 -100101111110 boat-maker 1 -100101111110 Butazolidin 1 -100101111110 workingmen 1 -100101111110 retail-client 1 -100101111110 mise-en-scene 1 -100101111110 43,120 1 -100101111110 rates-of-return 1 -100101111110 tirewrecker 1 -100101111110 Bedlam 1 -100101111110 rat-bashing 1 -100101111110 Accord-fighter 1 -100101111110 non-Indonesian 1 -100101111110 trader-brokers 1 -100101111110 Teletas 1 -100101111110 beef-trade 1 -100101111110 program-training 1 -100101111110 counterspace 1 -100101111110 incomprehension 2 -100101111110 mischiefs 2 -100101111110 parterships 2 -100101111110 Lotta 2 -100101111110 parternship 2 -100101111110 Demond 2 -100101111110 C9CAA 2 -100101111110 Landrau 3 -100101111110 influence. 3 -100101111110 Belly-Button 3 -100101111110 Sudamtex 3 -100101111110 airspaces 3 -100101111110 ex-nun 3 -100101111110 dirtball 3 -100101111110 spaceflight 3 -100101111110 partnerhip 4 -100101111110 co-insurer 4 -100101111110 measure. 4 -100101111110 depositories 5 -100101111110 revenue-raiser 5 -100101111110 brats 6 -100101111110 prostates 6 -100101111110 scaffold 7 -100101111110 vote-getter 11 -100101111110 rate-mortgages 12 -100101111110 Federated-Macy 13 -100101111110 telemarketer 17 -100101111110 conduits 45 -100101111110 conduit 145 -100101111110 trusts 687 -100101111110 corporation 1631 -100101111110 partnerships 1729 -100101111110 banker 2229 -100101111110 partnership 4364 -100101111110 trust 3664 -100101111111 F-50s 1 -100101111111 signficiant 1 -100101111111 equity-to-risk 1 -100101111111 Soviet-North 1 -100101111111 accordion-making 1 -100101111111 newspaper-printing 1 -100101111111 theme-pub-cum-wine-bar 1 -100101111111 employer-worker 1 -100101111111 fiber-optic/digital 1 -100101111111 Quebecor/British 1 -100101111111 investigations/prosecutions 1 -100101111111 chip-development 1 -100101111111 BP-Standard 1 -100101111111 OECD-BIS 1 -100101111111 concluded. 1 -100101111111 Bahian 1 -100101111111 gatefolds 1 -100101111111 two-jury 1 -100101111111 State-Justice 1 -100101111111 industry-FAA 1 -100101111111 Armenian-Azerbaijani 1 -100101111111 Odyssey-Pepperell 1 -100101111111 then-lower 1 -100101111111 U.S.-Peruvian 1 -100101111111 oil-auto 1 -100101111111 757-767 1 -100101111111 often-fictional 1 -100101111111 tidelands 1 -100101111111 industrial/municipal 1 -100101111111 solications 1 -100101111111 sitzbath 1 -100101111111 laser-treatment 1 -100101111111 ownerships 2 -100101111111 Brazilian-Argentine 2 -100101111111 Congolese 2 -100101111111 policies. 2 -100101111111 airport-service 2 -100101111111 venturers 3 -100101111111 Cubbies 3 -100101111111 pratfall 3 -100101111111 knowhow 4 -100101111111 link-up 8 -100101111111 tenancy 8 -100101111111 union-management 17 -100101111111 solicitors 28 -100101111111 solicitation 313 -100101111111 venture 5842 -100101111111 ventures 1528 -10011000 Manchurians 1 -10011000 68020s 1 -10011000 68000s 1 -10011000 sshares 1 -10011000 vision. 1 -10011000 23-to-32-year-olds 1 -10011000 13-to-22-year-olds 1 -10011000 106,874 1 -10011000 Pluribus 1 -10011000 debenetures 1 -10011000 floating-rates 1 -10011000 rather-ordinary-looking 1 -10011000 embyros 1 -10011000 shop-management 1 -10011000 3,104,918 1 -10011000 baton-twirling 1 -10011000 sdhares 1 -10011000 sensepredicts 1 -10011000 prefixes 1 -10011000 techno-dome 1 -10011000 cattle-contracts 1 -10011000 resaurants 1 -10011000 ounces-and 1 -10011000 CELLS 1 -10011000 meat-eater 1 -10011000 milliion 1 -10011000 plaint 1 -10011000 mega-resort 1 -10011000 15,723 1 -10011000 situs 2 -10011000 admittees 2 -10011000 FLAP 2 -10011000 stockowners 2 -10011000 pyong 2 -10011000 nickelodeons 2 -10011000 yuck 2 -10011000 International. 3 -10011000 bequerel 4 -10011000 110s 4 -10011000 RTs 4 -10011000 Rabbits 5 -10011000 Zulus 9 -10011000 ADSs 9 -10011000 Continentals 10 -10011000 shares 61945 -10011000 denominator 39 -10011001 single-pack 1 -10011001 Amercan 1 -10011001 post-bailout 1 -10011001 huge-foreign 1 -10011001 Druckers 1 -10011001 already-aggressive 1 -10011001 yet-to-be-convened 1 -10011001 most-discussed 1 -10011001 takeover-scarred 1 -10011001 then-fair 1 -10011001 116-year-old 1 -10011001 Sami-Burke 1 -10011001 debt-issue 1 -10011001 4:38-to-go 1 -10011001 peso-dollar 1 -10011001 18.5-mile-wide 1 -10011001 five-five 1 -10011001 three-quarter-mile 1 -10011001 Nasdaq-London 1 -10011001 24000-point 1 -10011001 four-for-four 1 -10011001 slow-starting 1 -10011001 waffle-machine 1 -10011001 dollar-pound 1 -10011001 200-drachma 1 -10011001 hair-coloring 1 -10011001 stylist-customer 1 -10011001 30-ton 1 -10011001 5.75-cent 1 -10011001 two-page-plus 1 -10011001 one-million-vehicle 1 -10011001 Carson-Bushkin 1 -10011001 MSOE-to-industry 1 -10011001 9,500-meter 1 -10011001 100-MIPS 1 -10011001 still-booming 1 -10011001 24-state 1 -10011001 25,000-yen 1 -10011001 city-metropolitan 1 -10011001 risk-riddled 1 -10011001 oral-contraceptive 1 -10011001 477-pence 1 -10011001 six-minutes-to-go 1 -10011001 crude-production 1 -10011001 two-issue 1 -10011001 five-billion 1 -10011001 motor-scooter 1 -10011001 stock-for-asset 1 -10011001 bulk-purchased 1 -10011001 7,000-point 1 -10011001 debt-for-securities 1 -10011001 1,300-person 1 -10011001 platinum-contract 1 -10011001 ruble/gold 1 -10011001 once-indominable 1 -10011001 specialty-cheese 1 -10011001 0.71-point 1 -10011001 onscene 1 -10011001 Valdez-based 1 -10011001 highwater 2 -10011001 radio-advertising 2 -10011001 Levine-Boesky 2 -10011001 2320.4 2 -10011001 FinanceAmerica 2 -10011001 260,000-barrel 2 -10011001 wider-than-normal 2 -10011001 family-vacation 2 -10011001 aluminum-ingot 2 -10011001 options-only 2 -10011001 bonds-for-debt 2 -10011001 240-degree 2 -10011001 clothes-for-credit 2 -10011001 low-tide 2 -10011001 debt-for-bonds 3 -10011001 encomia 3 -10011001 dollar/mark 4 -10011001 transceiver 4 -10011001 bid-ask 4 -10011001 uncut-diamond 5 -10011001 on-scene 5 -10011001 MOB 7 -10011001 stock 51420 -10011001 debt-for-bond 10 -100110100 243,514 1 -100110100 223,600 1 -100110100 180,200 1 -100110100 620,651 1 -100110100 5,045,000 1 -100110100 349,768,945 1 -100110100 50,049 1 -100110100 0.84896 1 -100110100 120,900 1 -100110100 34,200 1 -100110100 1,604,800 1 -100110100 362,961 1 -100110100 517,700 1 -100110100 702,400 1 -100110100 45,548 1 -100110100 329,900 1 -100110100 759,186 1 -100110100 360,437 1 -100110100 589,375 1 -100110100 3,439 1 -100110100 23,231 1 -100110100 36,357,891 1 -100110100 669,900 1 -100110100 71,200 1 -100110100 442,400 1 -100110100 576,800 1 -100110100 756,390 1 -100110100 11,127,500 1 -100110100 198,800 1 -100110100 131,293 1 -100110100 629,600 1 -100110100 93,544 1 -100110100 819,600 1 -100110100 524,472 1 -100110100 522,266 1 -100110100 192,900 1 -100110100 417,518 1 -100110100 388,600 1 -100110100 25,437 1 -100110100 245,900 1 -100110100 5,837,798 1 -100110100 208,600 1 -100110100 435,300 1 -100110100 78,900 1 -100110100 227,200 1 -100110100 511,500 1 -100110100 997,756 1 -100110100 1,051,500 1 -100110100 13,171,914 1 -100110100 301,434,000 1 -100110100 190,506,900 1 -100110100 82,900 1 -100110100 8,289,440 1 -100110100 1,374,800 1 -100110100 373,200 1 -100110100 659,420 1 -100110100 894,400 1 -100110100 586,500 1 -100110100 302,833 1 -100110100 605,667 1 -100110100 4,745 1 -100110100 298,852 1 -100110100 972,938 1 -100110100 524,900 1 -100110100 17,342 1 -100110100 284,117,100 1 -100110100 288,059,700 1 -100110100 6.161 1 -100110100 8,053,181 1 -100110100 76,300 1 -100110100 28,548,213 1 -100110100 665,700 1 -100110100 718,400 1 -100110100 519,300 1 -100110100 1,335,500 1 -100110100 199,700 1 -100110100 850,800 1 -100110100 446,400 1 -100110100 1,277,988 1 -100110100 532,900 1 -100110100 1,558,916 1 -100110100 4,194 1 -100110100 346,200 1 -100110100 27,100 1 -100110100 138,300 1 -100110100 446,600 1 -100110100 529,300 1 -100110100 238,900 1 -100110100 988,400 1 -100110100 363,800 1 -100110100 158,300 1 -100110100 28,054 1 -100110100 2,988,510 1 -100110100 175,400 1 -100110100 313,300 1 -100110100 123,599,500 1 -100110100 869,700 1 -100110100 457,291 1 -100110100 268,900 1 -100110100 1,670,900 1 -100110100 45.977 1 -100110100 505,100 1 -100110100 482,300 1 -100110100 2,540,100 1 -100110100 35,900 1 -100110100 38,463,772 1 -100110100 85,585 1 -100110100 375,698 1 -100110100 4,465,000 1 -100110100 913,600 1 -100110100 4,945,817 1 -100110100 400,050 1 -100110100 188,600 1 -100110100 272,200 1 -100110100 Bfree 1 -100110100 working-style 1 -100110100 316,700 1 -100110100 556,475 1 -100110100 3,858,781 1 -100110100 35,236,997 1 -100110100 1,215,000 1 -100110100 566,400 1 -100110100 4,564,300 1 -100110100 97,756 1 -100110100 752,071 1 -100110100 11,576,900 1 -100110100 548,100 1 -100110100 2,077,800 1 -100110100 111,744 1 -100110100 0.763754 1 -100110100 33,722,150 1 -100110100 374,943,059 1 -100110100 2,302,600 1 -100110100 305,200 1 -100110100 225,810 1 -100110100 140,967 1 -100110100 43,412 1 -100110100 48,330 1 -100110100 53,990 1 -100110100 271,170,584 1 -100110100 333,325 1 -100110100 712,500 1 -100110100 1,690,400 1 -100110100 628,600 1 -100110100 68,800 1 -100110100 2,305,000 1 -100110100 6,699,000 1 -100110100 376,602 1 -100110100 9,059,520 1 -100110100 6,716,077 1 -100110100 12,069,472 1 -100110100 38,309 1 -100110100 30,858,070 1 -100110100 876,075 1 -100110100 405,124 1 -100110100 1,450,294 1 -100110100 10,498,955 1 -100110100 186,300 1 -100110100 7,510 1 -100110100 9,678,457 1 -100110100 137,325 1 -100110100 1,303,408 1 -100110100 622,727 1 -100110100 4.167 1 -100110100 314,700 1 -100110100 2,130,600 1 -100110100 393,300 1 -100110100 194,700 1 -100110100 487,378 1 -100110100 2,588,000 1 -100110100 395,501 1 -100110100 624,900 1 -100110100 10,858,918 1 -100110100 854,900 1 -100110100 164,001 1 -100110100 720,462 1 -100110100 1,533,400 1 -100110100 191,196 1 -100110100 323,733 1 -100110100 21,996,000 1 -100110100 515,900 1 -100110100 251,860 1 -100110100 4,896,275 1 -100110100 2,472,950 1 -100110100 288,300 1 -100110100 2,408,700 1 -100110100 2,801,016 1 -100110100 217,340 1 -100110100 292,100 1 -100110100 269,600 1 -100110100 285,590 1 -100110100 4,015,000 1 -100110100 378,900 1 -100110100 999,600 1 -100110100 2,489,429 1 -100110100 1,124,200 1 -100110100 752,600 1 -100110100 16,160 1 -100110100 5,375 1 -100110100 50,950 1 -100110100 849,100 1 -100110100 1,618,100 1 -100110100 89,556 1 -100110100 51,378 1 -100110100 219,303 1 -100110100 234,200 1 -100110100 7,241,743 1 -100110100 1,172,270 1 -100110100 831,283 1 -100110100 1,281,100 1 -100110100 2,578,956 1 -100110100 AshtonTate 1 -100110100 FDIC-held 1 -100110100 441,500 1 -100110100 129,240 1 -100110100 31,413,438 1 -100110100 takeover-play 1 -100110100 318,624,104 1 -100110100 599,076 1 -100110100 210,900 1 -100110100 387,541 1 -100110100 679,600 1 -100110100 64,533 1 -100110100 200,649 1 -100110100 6,336,000 1 -100110100 13,188 1 -100110100 1.736 1 -100110100 927,700 1 -100110100 355,400 1 -100110100 163,500 1 -100110100 122,500 1 -100110100 350,100 1 -100110100 734,700 1 -100110100 non-Icahn 1 -100110100 357,815 1 -100110100 115,400 1 -100110100 26,612 1 -100110100 1,270,490 1 -100110100 720,600 1 -100110100 44,798 1 -100110100 267,562 1 -100110100 80-million-share 1 -100110100 208,200 1 -100110100 1,295,700 1 -100110100 424,500 1 -100110100 556,200 1 -100110100 125,600 1 -100110100 184,100 1 -100110100 214,500 1 -100110100 253,600 1 -100110100 4,752 1 -100110100 300,013 1 -100110100 372,400 1 -100110100 337,200 1 -100110100 1,387,539 1 -100110100 253,030 1 -100110100 218,800 1 -100110100 330,600 1 -100110100 1,160,271 1 -100110100 2,485,510 1 -100110100 171,800 1 -100110100 5,402,986 1 -100110100 333,980 1 -100110100 231,039 1 -100110100 394,920 1 -100110100 10,639,276 1 -100110100 832,900 1 -100110100 401,600 1 -100110100 129,500 1 -100110100 651,700 1 -100110100 258,400 1 -100110100 2,495,600 1 -100110100 248,235,302 1 -100110100 591,800 1 -100110100 7,859,925 1 -100110100 8,054,737 1 -100110100 2,743,000 1 -100110100 post-payout 1 -100110100 7,000-barrel-a-day 1 -100110100 370,650 1 -100110100 1,059,210 1 -100110100 402,988 1 -100110100 8,040,000 1 -100110100 34,630 1 -100110100 109,500 1 -100110100 1,959,674 1 -100110100 985,838 1 -100110100 41,107 1 -100110100 665,900 1 -100110100 128,375 1 -100110100 8,340,000 1 -100110100 9,501,267 1 -100110100 19,202 1 -100110100 520,180 1 -100110100 1,548,015 1 -100110100 291,691 1 -100110100 145,119 1 -100110100 124,900 1 -100110100 84,200 1 -100110100 29,150 1 -100110100 672,376 1 -100110100 3,720,000 1 -100110100 132,400 1 -100110100 355,471 1 -100110100 141,750 1 -100110100 50,771 1 -100110100 751,800 1 -100110100 848,100 1 -100110100 2,878,070 1 -100110100 4,025,000 1 -100110100 4,915,170 1 -100110100 200,232 1 -100110100 584,946 1 -100110100 449,981 1 -100110100 already-undervalued 1 -100110100 254,100 1 -100110100 3,353,900 1 -100110100 8.609 1 -100110100 24,010 1 -100110100 551,930 1 -100110100 309,700 1 -100110100 390-megawatt 1 -100110100 3,338,329 1 -100110100 17,657,260 1 -100110100 10,184,410 1 -100110100 852,800 1 -100110100 765,100 1 -100110100 47,775 1 -100110100 287,013 1 -100110100 636,600 1 -100110100 531,800 1 -100110100 785,178 1 -100110100 419,220 1 -100110100 182,600 1 -100110100 48,323 1 -100110100 462,399 1 -100110100 659,380 1 -100110100 66,667 1 -100110100 46,200 1 -100110100 358,900 1 -100110100 63,417,171 1 -100110100 315,820 1 -100110100 537,100 1 -100110100 389,549 1 -100110100 5,501,936 1 -100110100 216,600 1 -100110100 66,088,880 1 -100110100 920,900 1 -100110100 164,013 1 -100110100 90,750 1 -100110100 71,700 1 -100110100 6,333 1 -100110100 10,580,000 1 -100110100 271,700 1 -100110100 291,709 1 -100110100 15,410,000 1 -100110100 768,018 1 -100110100 30,464 1 -100110100 insider-held 1 -100110100 2,295,000 1 -100110100 1,287,500 1 -100110100 677,500 1 -100110100 283,200 1 -100110100 1,098,200 1 -100110100 187,500,000 1 -100110100 2,249,227 1 -100110100 4,220,000 1 -100110100 3,220,000 1 -100110100 6,440,400 1 -100110100 1,551,100 1 -100110100 274,586 1 -100110100 2,064,900 1 -100110100 2,618,300 1 -100110100 353,200 1 -100110100 295,096 1 -100110100 704,904 1 -100110100 94,286 1 -100110100 5,361,000 1 -100110100 937,400 1 -100110100 Angiomedic 1 -100110100 476,191 1 -100110100 12,845,000 1 -100110100 241,600 1 -100110100 238,739,384 1 -100110100 450,400 1 -100110100 3,172,600 1 -100110100 1,546,427 1 -100110100 208,391 1 -100110100 1,279,177 1 -100110100 613,900 1 -100110100 326,100 1 -100110100 8,481,700 1 -100110100 103,540 1 -100110100 3,137,400 1 -100110100 905,737 1 -100110100 7,963,927 1 -100110100 214,779 1 -100110100 414,706 1 -100110100 328,970 1 -100110100 4,032,710 1 -100110100 173,733 1 -100110100 302,300 1 -100110100 31,026,717 1 -100110100 32,953,082 1 -100110100 185,923,477 1 -100110100 0.2065 1 -100110100 903,000 1 -100110100 2,690,000 1 -100110100 14,721 1 -100110100 213,100 1 -100110100 86,325 1 -100110100 5,025,578 1 -100110100 862,200 1 -100110100 6,521,739 1 -100110100 39,800 1 -100110100 347,222 1 -100110100 415,222 1 -100110100 638,372 1 -100110100 925,394 1 -100110100 88,400 1 -100110100 698,200 1 -100110100 807,800 1 -100110100 106,400 1 -100110100 185,530 1 -100110100 421,100 1 -100110100 5,130,000 1 -100110100 647,186 1 -100110100 1,137,500 1 -100110100 206,200 1 -100110100 284,080 1 -100110100 600,200 1 -100110100 892,400 1 -100110100 0.845 1 -100110100 671,215 1 -100110100 172,100 1 -100110100 2,794,276 1 -100110100 five-or-10-paragraph 1 -100110100 119,648 1 -100110100 1,056,480 1 -100110100 62,100 1 -100110100 459,400 1 -100110100 2,749,300 1 -100110100 2,515,400 1 -100110100 700,102 1 -100110100 12,226,666 1 -100110100 120,200 1 -100110100 641,609 1 -100110100 751,700 1 -100110100 491,790 1 -100110100 1,350,800 1 -100110100 2,546,600 1 -100110100 301,600 1 -100110100 1,018,382 1 -100110100 283,235 1 -100110100 61,125 1 -100110100 371,511 1 -100110100 1,957,419 1 -100110100 203,937 1 -100110100 209,350 1 -100110100 25,322,514 1 -100110100 294,019,870 1 -100110100 154,500 1 -100110100 578,600 1 -100110100 146,752 1 -100110100 398,900 1 -100110100 2,760,000 1 -100110100 847,161 1 -100110100 8,923,136 1 -100110100 14,126,000 1 -100110100 282,500 1 -100110100 1,024,000 1 -100110100 2,455,369 1 -100110100 606,600 1 -100110100 3,546,627 1 -100110100 326,250 1 -100110100 343,700 1 -100110100 3,003,750 1 -100110100 4,324,390 1 -100110100 29,503,573 1 -100110100 318,299,016 1 -100110100 537,680 1 -100110100 343,900 1 -100110100 1,624,200 1 -100110100 168,200 1 -100110100 576,320 1 -100110100 87,292 1 -100110100 355,700 1 -100110100 672,500 1 -100110100 2,202,556 1 -100110100 3,233,000 1 -100110100 1,021,000 1 -100110100 non-melanoma 1 -100110100 837,500 1 -100110100 856,689 1 -100110100 2,384,333 1 -100110100 1,176,320 1 -100110100 888,500 1 -100110100 180,400 1 -100110100 102,107 1 -100110100 15,927,873 1 -100110100 71,100 1 -100110100 89,702 1 -100110100 462,800 1 -100110100 675,803 1 -100110100 865,100 1 -100110100 943,480 1 -100110100 205,032 1 -100110100 4,166,006 1 -100110100 918,800 1 -100110100 8,296,800 1 -100110100 4,103,270 1 -100110100 533,600 1 -100110100 1,152,900 1 -100110100 30,837,000 1 -100110100 2,636,100 1 -100110100 41,194 1 -100110100 191,763 1 -100110100 607,300 1 -100110100 2,633,800 1 -100110100 123,686,269 1 -100110100 200,650 1 -100110100 9.894 1 -100110100 crossheld 1 -100110100 729,500 1 -100110100 302,500 1 -100110100 439,418 1 -100110100 151,953 1 -100110100 11,399,082 1 -100110100 5,364,109 1 -100110100 10,914 1 -100110100 40,369 1 -100110100 1,690,500 1 -100110100 829,500 1 -100110100 750,700 1 -100110100 23,625 1 -100110100 1,951,006 1 -100110100 229,682 1 -100110100 60,050 1 -100110100 184,800 1 -100110100 A&A 1 -100110100 1,954,700 1 -100110100 29,100 1 -100110100 296,400 1 -100110100 899,712 1 -100110100 1,113,100 1 -100110100 9,362,197 1 -100110100 6,764,004 1 -100110100 559,800 1 -100110100 298,200 1 -100110100 179,867 1 -100110100 2,830,390 1 -100110100 pro-rating 1 -100110100 95,510 1 -100110100 326,400 1 -100110100 401,254 1 -100110100 469,900 1 -100110100 415,086 1 -100110100 163,350 1 -100110100 553,955 1 -100110100 33,100 1 -100110100 1,337,800 1 -100110100 17,332,184 1 -100110100 ever-sterling 1 -100110100 930,300 1 -100110100 1,824,000 1 -100110100 960,100 1 -100110100 389,083 1 -100110100 390,800 1 -100110100 80,090 1 -100110100 9,658,000 1 -100110100 386,400 1 -100110100 915,500 1 -100110100 2,748,575 1 -100110100 125,882 1 -100110100 639,245 1 -100110100 33,639 1 -100110100 nonrestricted 1 -100110100 565,100 1 -100110100 163,200 1 -100110100 175,800 1 -100110100 1,480,830 1 -100110100 325,932 1 -100110100 2.1382 1 -100110100 1,058,500 1 -100110100 211,300 1 -100110100 707,905 1 -100110100 548,849 1 -100110100 486,720 1 -100110100 168,500 1 -100110100 217,150 1 -100110100 1,238,311 1 -100110100 436,332 1 -100110100 230,650 1 -100110100 1,954,000 1 -100110100 5,099 1 -100110100 2,563,065 1 -100110100 356,084 1 -100110100 1,151,879 1 -100110100 1,257,000 1 -100110100 134,286 1 -100110100 997,671 1 -100110100 642,936 1 -100110100 3,248,200 1 -100110100 456,900 1 -100110100 26,239 1 -100110100 725,600 1 -100110100 58,850 1 -100110100 433,785 1 -100110100 273,347 1 -100110100 146,600 1 -100110100 925,510 1 -100110100 597,800 1 -100110100 186,700 1 -100110100 20-vote 1 -100110100 240,300 1 -100110100 586,684 1 -100110100 378,060 1 -100110100 52,100 1 -100110100 24,800 1 -100110100 416,900 1 -100110100 324,100 1 -100110100 186,100 1 -100110100 1,099,500 1 -100110100 46.06 1 -100110100 48,186 1 -100110100 614,900 1 -100110100 32,437,729 1 -100110100 2,254,000 1 -100110100 4,414,400 1 -100110100 44,025,300 1 -100110100 563,825 1 -100110100 607,600 1 -100110100 229,400 1 -100110100 1,474,800 1 -100110100 2,203,433 1 -100110100 1,802,992 1 -100110100 3,382,377 1 -100110100 6,976 1 -100110100 697,500 1 -100110100 769,500 1 -100110100 2,165,684 1 -100110100 14,104 1 -100110100 2,066,170 1 -100110100 3,679,400 1 -100110100 796,413 1 -100110100 1.667 1 -100110100 776,300 1 -100110100 333,333 1 -100110100 306,224 1 -100110100 40,081,552 1 -100110100 639,850 1 -100110100 851,119 1 -100110100 460,500 1 -100110100 1,530,851 1 -100110100 758,616 1 -100110100 4,420,419 1 -100110100 546,628 1 -100110100 243,190 1 -100110100 382,394 1 -100110100 1,560,750 1 -100110100 30,025 1 -100110100 4,436,852 1 -100110100 coal-rate 1 -100110100 28,169,919 1 -100110100 138,877 1 -100110100 213,900 1 -100110100 543,237 1 -100110100 2,705,700 1 -100110100 1,728,770 1 -100110100 983,770 1 -100110100 3,691,145 1 -100110100 573,800 1 -100110100 222,200 1 -100110100 332,204 1 -100110100 88,050 1 -100110100 2,867,500 1 -100110100 78,557 1 -100110100 1,722,500 1 -100110100 2,045,250 1 -100110100 209,400 1 -100110100 980,800 1 -100110100 1,797,300 1 -100110100 2,436,700 1 -100110100 single-company 1 -100110100 387,124,739 1 -100110100 2,293,200 1 -100110100 10,980,000 1 -100110100 5,460,600 1 -100110100 1,149,300 1 -100110100 2,215,100 1 -100110100 531,993 1 -100110100 58,300 1 -100110100 319,020 1 -100110100 749,600 1 -100110100 200,085 1 -100110100 357,221 1 -100110100 non-Jansen 1 -100110100 557,500 1 -100110100 48,200 1 -100110100 1,234,900 1 -100110100 1,237,500 1 -100110100 223,663,077 1 -100110100 2,114,500 1 -100110100 441,700 1 -100110100 8,419,000 1 -100110100 597,579 1 -100110100 626,230 1 -100110100 128,295,721 1 -100110100 29,519 1 -100110100 3,626,400 1 -100110100 488,200 1 -100110100 352,200 1 -100110100 729,800 1 -100110100 4,724,694 1 -100110100 102,022,000 1 -100110100 1,010,200 1 -100110100 3,492,600 1 -100110100 361,095 1 -100110100 875,034 1 -100110100 1,242,927 1 -100110100 2,521,200 1 -100110100 279,700 1 -100110100 505,135 1 -100110100 202,457 1 -100110100 744,425 1 -100110100 1,819,935 1 -100110100 2,213,000 1 -100110100 2,018,355 1 -100110100 8,255,562 1 -100110100 71,460 1 -100110100 39,246 1 -100110100 2,633,197 1 -100110100 2,148,548 1 -100110100 29,210,443 1 -100110100 2,168,020 1 -100110100 1,241,232 1 -100110100 4,861,400 1 -100110100 639,800 1 -100110100 1,111,116 1 -100110100 575,190 1 -100110100 423,200 1 -100110100 14,279,041 1 -100110100 118,751,500 1 -100110100 168,140 1 -100110100 39,480 1 -100110100 102,729,700 1 -100110100 246,600 1 -100110100 30,364,000 1 -100110100 147,900 1 -100110100 below-market-price 1 -100110100 644,823 1 -100110100 3,181,063 1 -100110100 7,875,573 1 -100110100 346,655 1 -100110100 9,567,000 1 -100110100 9,303,000 1 -100110100 648,225 1 -100110100 22,550 1 -100110100 firstpreference 1 -100110100 11,883,672 1 -100110100 109,700 1 -100110100 271,800 1 -100110100 79,223 1 -100110100 low-30s 1 -100110100 28,864,000 1 -100110100 20,925 1 -100110100 120,513 1 -100110100 one-vote-per-share 1 -100110100 47,100 1 -100110100 710,800 1 -100110100 704,900 1 -100110100 663,500 1 -100110100 452,031 1 -100110100 38,934 1 -100110100 3,154,400 1 -100110100 1,660,740 1 -100110100 123,300 1 -100110100 436,500 1 -100110100 579,400 1 -100110100 815,600 1 -100110100 717,900 1 -100110100 645,100 1 -100110100 263,709 1 -100110100 343,111 1 -100110100 4,413 1 -100110100 528,784 1 -100110100 94,314 1 -100110100 8,148,913 1 -100110100 291,100 1 -100110100 517,600 1 -100110100 2,549,210 1 -100110100 135,676,459 1 -100110100 55,936,673 1 -100110100 lodgepole-pine 1 -100110100 23,017 1 -100110100 738,700 1 -100110100 57,400 1 -100110100 second-preferred 1 -100110100 8,743,000 1 -100110100 167,500 1 -100110100 10,235,000 1 -100110100 625,300 1 -100110100 139,895 1 -100110100 8,294,365 1 -100110100 1,361,300 1 -100110100 55,690 1 -100110100 184,300 1 -100110100 245,100 1 -100110100 711,200 1 -100110100 13,180,000 1 -100110100 584,100 1 -100110100 860,800 1 -100110100 4,521,200 1 -100110100 11,850,000 1 -100110100 147,800 1 -100110100 642,500 1 -100110100 819,928 1 -100110100 1,084,606 1 -100110100 409,500 1 -100110100 988,200 1 -100110100 126,300 1 -100110100 709,200 1 -100110100 427,700 1 -100110100 1,079,700 1 -100110100 30,823,733 1 -100110100 28,668,016 1 -100110100 16,780,000 1 -100110100 3,786,398 1 -100110100 1,222,700 1 -100110100 0.101 1 -100110100 8,007 1 -100110100 265,200 1 -100110100 157,800 1 -100110100 49,054,037 1 -100110100 48,922,594 1 -100110100 broker-consultant 1 -100110100 741,800 1 -100110100 150,831 1 -100110100 107,600 1 -100110100 123,694 1 -100110100 253,500 1 -100110100 7,016,110 1 -100110100 158,312 1 -100110100 5,817 1 -100110100 873,900 1 -100110100 1,901,979 1 -100110100 2,117,000 1 -100110100 51,850 1 -100110100 1.6807 1 -100110100 9,951,796 1 -100110100 464,800 1 -100110100 143,600 1 -100110100 89,568 1 -100110100 188,700 1 -100110100 6,903,274 1 -100110100 928,230 1 -100110100 383,144 1 -100110100 4,987,500 1 -100110100 4,030,000 1 -100110100 1,430,300 1 -100110100 593,700 1 -100110100 937,900 1 -100110100 327,700 1 -100110100 107,378 1 -100110100 797,300 1 -100110100 16,290,682 1 -100110100 593,950 1 -100110100 178,214 1 -100110100 8,489,800 1 -100110100 465,986 1 -100110100 47,125 1 -100110100 104,200 1 -100110100 3,070,637 1 -100110100 1,514,300 1 -100110100 insititutional 1 -100110100 619,850 1 -100110100 4,482,840 1 -100110100 485,300 1 -100110100 968,500 1 -100110100 657,600 1 -100110100 1.1415 1 -100110100 396,600 1 -100110100 240,450 1 -100110100 287,900 1 -100110100 1,614,746 1 -100110100 1,386,500 1 -100110100 265,300 1 -100110100 500,900 1 -100110100 151,250 1 -100110100 3,674,700 1 -100110100 979,750 1 -100110100 494,096 1 -100110100 2,352,371 1 -100110100 238,864 1 -100110100 211,235 1 -100110100 25,266 1 -100110100 1,677,100 1 -100110100 482,200 1 -100110100 98,700 1 -100110100 1,075,100 1 -100110100 5,091,290 1 -100110100 2,890,512 1 -100110100 198,414 1 -100110100 99,207 1 -100110100 9,414,152 1 -100110100 193,814 1 -100110100 194,500 1 -100110100 401,876 1 -100110100 209,100 1 -100110100 61,674 1 -100110100 845,900 1 -100110100 88,994 1 -100110100 6,292,791 1 -100110100 883,200 1 -100110100 879,200 1 -100110100 38,400 1 -100110100 373,600 1 -100110100 911,400 1 -100110100 707,200 1 -100110100 471,869 1 -100110100 305,594 1 -100110100 215,400 1 -100110100 204,900 1 -100110100 237,900 1 -100110100 2,999,710 1 -100110100 689,900 1 -100110100 135,700 1 -100110100 336,200 1 -100110100 181,400 1 -100110100 483,906 1 -100110100 18,008 1 -100110100 161,600 1 -100110100 428,600 1 -100110100 142,206 1 -100110100 179,507 1 -100110100 27,200 1 -100110100 non-disposable 1 -100110100 270,500 1 -100110100 212,900 1 -100110100 719,900 1 -100110100 4,584 1 -100110100 228,571 1 -100110100 223,507 1 -100110100 767,700 1 -100110100 700,800 1 -100110100 1,138,200 1 -100110100 4,356,245 1 -100110100 121,292 1 -100110100 120,352 1 -100110100 1,574,000 1 -100110100 138,400 1 -100110100 94,700 1 -100110100 56,074 1 -100110100 small-capitalized 1 -100110100 663,845 1 -100110100 625,200 1 -100110100 473,100 1 -100110100 5,503,107 1 -100110100 233,600 1 -100110100 31,413,448 1 -100110100 380,144,863 1 -100110100 981,154 1 -100110100 29,440,048 1 -100110100 168,300 1 -100110100 355,800 1 -100110100 13,004,175 1 -100110100 427,975 1 -100110100 1,284,000 1 -100110100 117,100 1 -100110100 1,479,626 1 -100110100 2,216,800 1 -100110100 473,600 1 -100110100 909,100 1 -100110100 71,504 1 -100110100 108,100 1 -100110100 809,300 1 -100110100 3,599,927 1 -100110100 122,379 1 -100110100 715,600 1 -100110100 691,900 1 -100110100 31,032,501 1 -100110100 27,325,841 1 -100110100 111,850 1 -100110100 weighted-average 1 -100110100 253,800 1 -100110100 77,325 1 -100110100 99,400 1 -100110100 31,100 1 -100110100 80,700 1 -100110100 321,419 1 -100110100 2,220,039 1 -100110100 6,080,000 1 -100110100 97,800 1 -100110100 413,600 1 -100110100 715,986 1 -100110100 908,300 1 -100110100 862,700 1 -100110100 796,379 1 -100110100 39,050 1 -100110100 736,752 1 -100110100 1.429 1 -100110100 193,600 1 -100110100 68,666 1 -100110100 456,700 1 -100110100 140,700 1 -100110100 903,200 1 -100110100 515,700 1 -100110100 2,506 1 -100110100 194,444 1 -100110100 566,500 1 -100110100 3,980,000 1 -100110100 5,685,110 1 -100110100 407,295 1 -100110100 1,864,155 1 -100110100 17,990,000 1 -100110100 54,050,000 1 -100110100 534,400 1 -100110100 49,950,000 1 -100110100 1,531,200 1 -100110100 1,823,000 1 -100110100 398,325 1 -100110100 274,295 1 -100110100 2,084,876 1 -100110100 139,003 1 -100110100 514,013 1 -100110100 187,700 1 -100110100 176,650 1 -100110100 4,135,160 1 -100110100 1,549,400 1 -100110100 200,696 1 -100110100 501,600 1 -100110100 227,100 1 -100110100 218,300 1 -100110100 597,400 1 -100110100 887,100 1 -100110100 399,700 1 -100110100 216,400 1 -100110100 9,946,802 1 -100110100 358,400 1 -100110100 913,893 1 -100110100 356,600 1 -100110100 549,755 1 -100110100 695,547 1 -100110100 468,170 1 -100110100 311,300 1 -100110100 1,442,614 1 -100110100 33,300 1 -100110100 353,467 1 -100110100 143,956 1 -100110100 226,500 1 -100110100 142,857 1 -100110100 753,300 1 -100110100 512,300 1 -100110100 2,308,000 1 -100110100 once-glamorous 1 -100110100 dividend-right 1 -100110100 275,800 1 -100110100 36,100 1 -100110100 566,300 1 -100110100 1,067,800 1 -100110100 822,500 1 -100110100 623,400 1 -100110100 412,900 1 -100110100 531,507 1 -100110100 177,760 1 -100110100 0.5747 1 -100110100 318,600 1 -100110100 402,200 1 -100110100 322,712 1 -100110100 10,432 1 -100110100 832,143 1 -100110100 1,417,200 1 -100110100 0.3417 1 -100110100 1,415,000 1 -100110100 242,389 1 -100110100 12.256 1 -100110100 548,388 1 -100110100 657,482 1 -100110100 169,690,000 1 -100110100 9,463,987 1 -100110100 595,400 1 -100110100 103,982 1 -100110100 229,200 1 -100110100 357,700 1 -100110100 421,600 1 -100110100 167,300 1 -100110100 505,044 1 -100110100 344,500 1 -100110100 61,250 1 -100110100 889,700 1 -100110100 290,634 1 -100110100 764,800 1 -100110100 262,400 1 -100110100 814,900 1 -100110100 3,670,000 1 -100110100 7,631,873 1 -100110100 463,541 1 -100110100 24,056 1 -100110100 48,672,419 1 -100110100 555,057 1 -100110100 third-tranche 1 -100110100 151,197,400 1 -100110100 6.0824 1 -100110100 4,268,172 1 -100110100 359,700 1 -100110100 578,500 1 -100110100 144,200 1 -100110100 67,400 1 -100110100 1,073,300 1 -100110100 120,219 1 -100110100 231,347 1 -100110100 13,389,764 1 -100110100 3,554,273 1 -100110100 1,369,760 1 -100110100 2,207,771 1 -100110100 197,708 1 -100110100 606,300 1 -100110100 26.8959 1 -100110100 50,060 1 -100110100 1,770,943 1 -100110100 677,700 1 -100110100 240,900 1 -100110100 447,500 1 -100110100 449,900 1 -100110100 16,689,655 1 -100110100 756,800 1 -100110100 6,826,138 1 -100110100 92,300 1 -100110100 2,893,500 1 -100110100 2,752,300 1 -100110100 163,800 1 -100110100 1,076,700 1 -100110100 82,298 1 -100110100 471,125 1 -100110100 798,728 1 -100110100 B-restricted 1 -100110100 1,030,636 1 -100110100 54,425 1 -100110100 259,418 1 -100110100 693,627 1 -100110100 561,200 1 -100110100 1,246,175 1 -100110100 0.941 1 -100110100 622,777 1 -100110100 32,463,670 1 -100110100 2,155,900 1 -100110100 515,200 1 -100110100 192,500 1 -100110100 31,912,415 1 -100110100 760,211 1 -100110100 518,500 1 -100110100 34,250,000 1 -100110100 159,761 1 -100110100 1,037,360 1 -100110100 68,692 1 -100110100 209,885 1 -100110100 3,669,700 1 -100110100 141,600 1 -100110100 company-option 1 -100110100 1,147,194 1 -100110100 2,113,600 1 -100110100 10,128,000 1 -100110100 769,316 1 -100110100 434,600 1 -100110100 393,500 1 -100110100 617,600 1 -100110100 199,994 1 -100110100 91,900 1 -100110100 1,104,617 1 -100110100 8,322,645 1 -100110100 255,600 1 -100110100 21,211 1 -100110100 1,203,600 1 -100110100 90,621 1 -100110100 4,273 1 -100110100 501,698 1 -100110100 3,655,080 1 -100110100 3,921,115 1 -100110100 320,800 1 -100110100 242,600 1 -100110100 296,200 1 -100110100 1,022,600 1 -100110100 922,522 1 -100110100 813,678 1 -100110100 567,356 1 -100110100 bank-embezzlement 1 -100110100 599,300 1 -100110100 785,300 1 -100110100 55,600 1 -100110100 983,600 1 -100110100 306,800 1 -100110100 170,138 1 -100110100 559,403 1 -100110100 101,938 1 -100110100 536,800 1 -100110100 443,500 1 -100110100 65,900 1 -100110100 6,332,471 2 -100110100 41.66667 2 -100110100 185,793,411 2 -100110100 215,743,879 2 -100110100 715,570 2 -100110100 751,739 2 -100110100 118,928 2 -100110100 commom 2 -100110100 526,315 2 -100110100 43,780 2 -100110100 34,498,661 2 -100110100 27,657,440 2 -100110100 operator-services 2 -100110100 7,650,000 2 -100110100 105,500 2 -100110100 192,600 2 -100110100 494,596,541 2 -100110100 1.418 2 -100110100 302,700 2 -100110100 153,300 2 -100110100 30,099 2 -100110100 578,572 2 -100110100 odd-lots 2 -100110100 404,041 2 -100110100 432,700 2 -100110100 410,400 2 -100110100 86,810,000 2 -100110100 2,025,398 2 -100110100 182,376,552 2 -100110100 922,900 2 -100110100 5,350,000 2 -100110100 227,500 2 -100110100 29,001,763 2 -100110100 448,190,631 2 -100110100 873,000 2 -100110100 662,100 2 -100110100 7,550,000 2 -100110100 4,894 2 -100110100 237,200 2 -100110100 625,800 2 -100110100 439,265,365 2 -100110100 510,150,597 2 -100110100 partly-paid-for 2 -100110100 1,462,476 2 -100110100 522,300 2 -100110100 453,527,893 2 -100110100 34,310,924 2 -100110100 3,843 2 -100110100 2.5125 2 -100110100 527,700 2 -100110100 556,500 2 -100110100 272,400 2 -100110100 504,227 2 -100110100 488,465 2 -100110100 698,600 2 -100110100 159,300 2 -100110100 31,300 2 -100110100 53,300 2 -100110100 52,300 2 -100110100 483,621,746 2 -100110100 40,740 2 -100110100 1,784 2 -100110100 242,244,279 2 -100110100 13.068 2 -100110100 beneficial-interest 2 -100110100 146,370,000 2 -100110100 59,342 2 -100110100 40,556,000 2 -100110100 306,200 2 -100110100 436,900 2 -100110100 445,200 2 -100110100 power-utility 2 -100110100 383,364,953 2 -100110100 2,877 2 -100110100 173,100 2 -100110100 211,200 2 -100110100 133,900 2 -100110100 37.037 2 -100110100 436,763,450 2 -100110100 419,279 2 -100110100 2,157,357 2 -100110100 11,018,955 2 -100110100 174,900 2 -100110100 1.935 2 -100110100 169,750,000 2 -100110100 39,300 2 -100110100 465,831,221 2 -100110100 2,026,399 2 -100110100 182,550,000 3 -100110100 141,610,000 3 -100110100 114,700 3 -100110100 158,350,000 3 -100110100 155,320,000 3 -100110100 133,100 3 -100110100 Agricoles 3 -100110100 225,520,000 3 -100110100 12,750,000 3 -100110100 full-value 3 -100110100 106,200 3 -100110100 179,600 3 -100110100 3,436,037 3 -100110100 80386SX 3 -100110100 20,200 3 -100110100 967,000 3 -100110100 58,750,000 3 -100110100 572,500 3 -100110100 3,749,401 3 -100110100 9,101,583 3 -100110100 420,900 3 -100110100 113,010,000 3 -100110100 3,358 3 -100110100 465,468,621 3 -100110100 445,674,104 3 -100110100 multiple-voting 3 -100110100 147,560,000 3 -100110100 17,200 3 -100110100 1,940,000 3 -100110100 128,920,000 3 -100110100 1,041,000 3 -100110100 S&N 3 -100110100 1,751,000 3 -100110100 37,180,852 4 -100110100 name-recognition 4 -100110100 608,120,000 4 -100110100 1,027,000 4 -100110100 high-voting 4 -100110100 1,121,493 4 -100110100 2.636 4 -100110100 546,294,477 4 -100110100 1.055 4 -100110100 24,175,000 4 -100110100 685,600 4 -100110100 888,634 5 -100110100 470,578,343 5 -100110100 commmon 6 -100110100 USH 6 -100110100 optioned 13 -100110100 common 19559 -100110100 fractional 54 -100110101 180,261 1 -100110101 139,790,000 1 -100110101 199,520,000 1 -100110101 220,480,000 1 -100110101 29,883,575 1 -100110101 123,002 1 -100110101 28,864,973 1 -100110101 4,032,211 1 -100110101 86,360,000 1 -100110101 148,250,000 1 -100110101 158,270,000 1 -100110101 164,340,000 1 -100110101 573,000 1 -100110101 189,170,000 1 -100110101 4,153 1 -100110101 569,800 1 -100110101 143,160,000 1 -100110101 3,863,862 1 -100110101 44,685,032 1 -100110101 8,198,768 1 -100110101 884,300 1 -100110101 3,173,024 1 -100110101 157,140,000 1 -100110101 4,170,000 1 -100110101 154,930,000 1 -100110101 165,480,000 1 -100110101 177,310,000 1 -100110101 9,137,000 1 -100110101 200,730,000 1 -100110101 3,457,569 1 -100110101 145,175 1 -100110101 2,581,000 1 -100110101 135,856 1 -100110101 153,760,000 1 -100110101 1,162,900 1 -100110101 178,210,000 1 -100110101 541,742 1 -100110101 537,064 1 -100110101 2,365,000 1 -100110101 618,370 1 -100110101 194,200,000 1 -100110101 192,200 1 -100110101 310,086 1 -100110101 1,322,700 1 -100110101 176,200 1 -100110101 142,490,000 1 -100110101 1,706,984 1 -100110101 239,003,879 1 -100110101 150,540,000 1 -100110101 592,200 1 -100110101 505,618 1 -100110101 173,520,000 1 -100110101 higher-vote 1 -100110101 1,465,000 1 -100110101 254,350 1 -100110101 602,781,000 1 -100110101 627,900 1 -100110101 245,560,000 1 -100110101 Sevice 1 -100110101 1,194,700 1 -100110101 3,261,482 1 -100110101 258,140,000 1 -100110101 279,410,000 1 -100110101 1,623,207 1 -100110101 10,631,800 1 -100110101 849,247 1 -100110101 198,140,000 1 -100110101 11,159,037 1 -100110101 338,480,000 1 -100110101 2,992,345 1 -100110101 118,500 1 -100110101 1,356,051 1 -100110101 13,288,884 1 -100110101 152,538 1 -100110101 306,500 1 -100110101 184,310,000 1 -100110101 147,850,000 1 -100110101 C-2 1 -100110101 C-1 1 -100110101 160,690,000 1 -100110101 283,100 1 -100110101 191,500 1 -100110101 160,400 1 -100110101 174,920,000 1 -100110101 206,280,000 1 -100110101 1,536 1 -100110101 227,840,000 1 -100110101 139,213,100 1 -100110101 303,360,000 1 -100110101 176,040,000 1 -100110101 1,027,878 1 -100110101 201,660 1 -100110101 228,290,000 1 -100110101 202,530,000 1 -100110101 217,300 1 -100110101 225,960,000 1 -100110101 4,695,000 1 -100110101 196,120,000 1 -100110101 217,070,000 1 -100110101 198,400,000 1 -100110101 581,800 1 -100110101 938,955 1 -100110101 414,600 1 -100110101 134,930,000 1 -100110101 638,773 1 -100110101 212,660,000 1 -100110101 6.3158 1 -100110101 192,720,000 1 -100110101 191,950,000 1 -100110101 278,130,000 1 -100110101 235,750,000 1 -100110101 187,200,000 1 -100110101 156,330,000 1 -100110101 .5084 1 -100110101 163,610,000 1 -100110101 50,345 1 -100110101 pre-plunge 1 -100110101 149,870,000 1 -100110101 1,917,500 1 -100110101 272,800 1 -100110101 148,890,000 1 -100110101 327,050 1 -100110101 1,125,831 1 -100110101 88,888 1 -100110101 818,300 1 -100110101 268,910,000 1 -100110101 2.5-for1 1 -100110101 market-battered 1 -100110101 1987-1 1 -100110101 180,880,000 1 -100110101 410,800 1 -100110101 196,570,000 1 -100110101 213,480,000 1 -100110101 1.2174 1 -100110101 86,100 1 -100110101 196,190,000 1 -100110101 149,350,000 1 -100110101 210,880,000 1 -100110101 209,980,000 1 -100110101 1,223,398 1 -100110101 3-for2 1 -100110101 1,110,719 1 -100110101 202,290,000 1 -100110101 3,066,400 1 -100110101 3,459,000 1 -100110101 186,570,000 1 -100110101 unvested 1 -100110101 2,637,773 1 -100110101 17,784,525 1 -100110101 3,738,095 1 -100110101 168,140,000 1 -100110101 6,053,244 1 -100110101 195,400,000 1 -100110101 433,800 1 -100110101 207,460,000 1 -100110101 185,850,000 1 -100110101 2,899,000 1 -100110101 2,971,000 1 -100110101 172,130,000 1 -100110101 1,662,721 1 -100110101 3,962,421 1 -100110101 1,856,421 1 -100110101 2,851,950 1 -100110101 1,511,667 1 -100110101 4,474,477 1 -100110101 181,870,000 1 -100110101 10,605,258 1 -100110101 208,020,000 1 -100110101 166,490,000 1 -100110101 207,840,000 1 -100110101 158,390,000 1 -100110101 13,503,889 1 -100110101 174,650,000 1 -100110101 163,670,000 1 -100110101 806,680 1 -100110101 172,600,000 1 -100110101 196,180,000 1 -100110101 244,244,279 1 -100110101 2.923 1 -100110101 GG 1 -100110101 2,788,363 1 -100110101 130,380,000 1 -100110101 restricted-stock 1 -100110101 949,025 1 -100110101 56,832 1 -100110101 36,364 1 -100110101 958,200 1 -100110101 30,769,469 1 -100110101 785,757 1 -100110101 48,344,085 1 -100110101 56,360,838 1 -100110101 151,213,610 1 -100110101 150,027,195 1 -100110101 6,476,000 1 -100110101 merino 1 -100110101 9,190,000 1 -100110101 1,359,233 1 -100110101 11,203,287 1 -100110101 28,677 1 -100110101 sleep-well 1 -100110101 11,640,000 1 -100110101 715,100 1 -100110101 698,500 1 -100110101 139,590,000 1 -100110101 3,325,175 1 -100110101 1,798,769 1 -100110101 114,880,000 1 -100110101 8,680,000 1 -100110101 1,511 1 -100110101 149,380,000 1 -100110101 141,540,000 1 -100110101 108,720,000 1 -100110101 99,280,000 1 -100110101 159,840,000 1 -100110101 144,090,000 1 -100110101 1,845,500 1 -100110101 1,029,220 1 -100110101 5,872,000 1 -100110101 135,770,000 1 -100110101 437,484 1 -100110101 177,220,000 1 -100110101 162,490,000 1 -100110101 junk-bond-fund 1 -100110101 1,561 1 -100110101 2,222,681 1 -100110101 211,110,000 1 -100110101 161,210,000 1 -100110101 100,200 1 -100110101 1,316,724 1 -100110101 162,150,000 1 -100110101 137,950,000 1 -100110101 183,070,000 1 -100110101 193,200,000 1 -100110101 173,530,000 1 -100110101 892,833 1 -100110101 220,280,000 1 -100110101 7,486,344 1 -100110101 10,335,000 1 -100110101 209,510,000 1 -100110101 141,870,000 1 -100110101 158,310,000 1 -100110101 1,607,350 1 -100110101 1,179,200 1 -100110101 263,180,000 1 -100110101 172,870,000 1 -100110101 207,350,000 1 -100110101 2,775,000 1 -100110101 2for-1 1 -100110101 743,008 1 -100110101 170,610 1 -100110101 159,650,000 1 -100110101 853,100 1 -100110101 186,250,000 1 -100110101 198,700,000 1 -100110101 175,600,000 1 -100110101 421,700 1 -100110101 146,300,000 1 -100110101 3,130,500 1 -100110101 concert-party 1 -100110101 26-cent-a-share 1 -100110101 much-buffeted 1 -100110101 9-for-1 1 -100110101 0.164 1 -100110101 8,000,000 1 -100110101 195,410,000 1 -100110101 4,666,666 1 -100110101 8,990,000 1 -100110101 545,226 1 -100110101 667,975 1 -100110101 55,975,693 1 -100110101 59,694,091 1 -100110101 148,110,503 1 -100110101 160,631,079 1 -100110101 126,746 1 -100110101 924,497 1 -100110101 0.9375 1 -100110101 119,180 1 -100110101 7,456 1 -100110101 Thema 1 -100110101 7,640,000 1 -100110101 18,603,172 1 -100110101 4,485,000 1 -100110101 51,228 1 -100110101 7,400,000 1 -100110101 1,123,500 1 -100110101 200,140,000 1 -100110101 all-ordinary 1 -100110101 all-resource 1 -100110101 1,982,168 1 -100110101 230,350,000 1 -100110101 568,437 1 -100110101 1,011,479 1 -100110101 63,821 1 -100110101 512,500 1 -100110101 196,432,525 1 -100110101 less-plentiful 1 -100110101 171,420,000 1 -100110101 156,910,000 1 -100110101 5,112,782 1 -100110101 165,800,000 1 -100110101 6,088,211 1 -100110101 184,140,000 1 -100110101 133,750,000 1 -100110101 382,700 1 -100110101 5,743,000 1 -100110101 153,770,000 1 -100110101 93,530,000 1 -100110101 3,275,000 1 -100110101 148,220,000 1 -100110101 44,445 1 -100110101 135,820,000 1 -100110101 126,610,000 1 -100110101 416,400 1 -100110101 285,715 1 -100110101 14,160,000 1 -100110101 189,850,000 1 -100110101 819,398 1 -100110101 1,923 1 -100110101 330,110 1 -100110101 5,891,523 1 -100110101 1,445,000 1 -100110101 233,250 1 -100110101 128,690,000 1 -100110101 803,100 1 -100110101 1,540,750 1 -100110101 114,400 1 -100110101 early-1986 1 -100110101 777,750 1 -100110101 135,990,000 1 -100110101 139,670,000 1 -100110101 86H 1 -100110101 256,660,000 1 -100110101 3,922,715 1 -100110101 184,100,000 1 -100110101 149,240,000 1 -100110101 222,430,000 1 -100110101 corseted 1 -100110101 168,290,000 1 -100110101 6,222,523 1 -100110101 7,968,633 1 -100110101 971,207 1 -100110101 143,300,000 1 -100110101 resource-dominated 1 -100110101 743,100 1 -100110101 220,838 1 -100110101 163,360,000 1 -100110101 195,820,000 1 -100110101 205,250,000 1 -100110101 198,050,000 1 -100110101 0.2802 1 -100110101 5,175,000 1 -100110101 4,557,458 1 -100110101 22,223 1 -100110101 177,360,000 1 -100110101 764,900 1 -100110101 142,800,000 1 -100110101 181,530,000 1 -100110101 2,144,188 1 -100110101 166,500 1 -100110101 937,192 1 -100110101 238,389 1 -100110101 8,023,953 1 -100110101 218,210,000 1 -100110101 249,350 1 -100110101 151,310,000 1 -100110101 5.45445 1 -100110101 1,059,500 1 -100110101 fast-running 1 -100110101 170,450,000 1 -100110101 200,380,000 1 -100110101 9,854 1 -100110101 444,200 1 -100110101 1,263,348 1 -100110101 172,350,000 1 -100110101 920,100 1 -100110101 187,820,000 1 -100110101 453,870 1 -100110101 2,465,000 1 -100110101 184,380,000 1 -100110101 1,357,100 1 -100110101 1,589,428 1 -100110101 185,930,000 1 -100110101 2,104,597 1 -100110101 17,050,450 1 -100110101 77,320 1 -100110101 17,740,000 1 -100110101 2,565,518 1 -100110101 1,725,000 1 -100110101 cost-rigidity 1 -100110101 20,946,368 1 -100110101 173,930,000 1 -100110101 372,500 1 -100110101 12,122,507 1 -100110101 189,570,000 1 -100110101 460,944 1 -100110101 exchange-rate-linked 1 -100110101 123,800 1 -100110101 191,340,000 1 -100110101 139,070,000 1 -100110101 3,409,000 1 -100110101 196,560,000 1 -100110101 183,060,000 1 -100110101 2,325,000 1 -100110101 13,346,851 1 -100110101 567,309 1 -100110101 140,610,000 1 -100110101 192,290,000 1 -100110101 160,110,000 1 -100110101 4,348,545 1 -100110101 1,333,237 1 -100110101 42.78 1 -100110101 PINCH 1 -100110101 222,710,000 1 -100110101 161,880,000 1 -100110101 177,960,000 1 -100110101 8,299,988 1 -100110101 44,944 1 -100110101 173,590,000 1 -100110101 215,200,000 1 -100110101 180,080,000 1 -100110101 140,600 1 -100110101 182,630,000 1 -100110101 171,760,000 1 -100110101 0.051675 1 -100110101 206,830,000 1 -100110101 175,350,000 1 -100110101 213,390,000 1 -100110101 182,950,000 1 -100110101 1/2-for-1 1 -100110101 164,830,000 1 -100110101 0.893 1 -100110101 196,040,000 1 -100110101 171,340,000 1 -100110101 208,440,000 1 -100110101 7,907,700 1 -100110101 184,400,000 1 -100110101 925,341 1 -100110101 180,800,000 1 -100110101 181,030,000 1 -100110101 2,333,333 1 -100110101 169,530,000 1 -100110101 9,628,500 1 -100110101 1,327,300 1 -100110101 1,050,610 1 -100110101 198,150,000 1 -100110101 489,764 1 -100110101 266,540,000 1 -100110101 1,692,000 1 -100110101 1,806,200 1 -100110101 186,410,000 1 -100110101 173,720,000 1 -100110101 382,600 1 -100110101 295,445 1 -100110101 180,250,000 1 -100110101 752,125 1 -100110101 179,840,000 1 -100110101 174,160,000 1 -100110101 164,180,000 1 -100110101 67,161 1 -100110101 56,300 1 -100110101 136,370,000 1 -100110101 138,860,000 1 -100110101 905,285 1 -100110101 175,070,000 1 -100110101 86,700 1 -100110101 83,575 1 -100110101 169,294 1 -100110101 litigation-minded 1 -100110101 197,440,000 1 -100110101 6-for-5 1 -100110101 ironed-body 1 -100110101 153,360,000 1 -100110101 964,936 1 -100110101 149,340,000 1 -100110101 82B 1 -100110101 82A 1 -100110101 140,300,000 1 -100110101 129,110,000 1 -100110101 164,170,000 1 -100110101 199,940,000 1 -100110101 3,360,000 1 -100110101 1,790,00 1 -100110101 193,450,000 1 -100110101 129,070,000 1 -100110101 242,880,000 1 -100110101 165,200,000 1 -100110101 157,790,000 1 -100110101 186,880,000 1 -100110101 1,341,700 1 -100110101 16,787,720 1 -100110101 156,920,000 1 -100110101 29.205 1 -100110101 168,580,000 1 -100110101 3,891,486 1 -100110101 165,810,000 1 -100110101 388,080 1 -100110101 184,720,000 1 -100110101 807,855 1 -100110101 151,680,000 1 -100110101 925,600 1 -100110101 188,960,000 1 -100110101 4,667,000 1 -100110101 214,970,000 1 -100110101 168,400 1 -100110101 678,125 1 -100110101 193,820,000 1 -100110101 10,582,762 1 -100110101 187,690,000 1 -100110101 1,132,500 1 -100110101 6,174,929 1 -100110101 184,800,000 1 -100110101 204,160,000 1 -100110101 8,984,464 1 -100110101 150,870,000 1 -100110101 231,430,000 1 -100110101 146,660,000 1 -100110101 227,310,000 1 -100110101 174,470,000 1 -100110101 hormone-fed 1 -100110101 131,220,000 1 -100110101 3,454,666 1 -100110101 10,751,000 1 -100110101 920,545 1 -100110101 108,800,000 1 -100110101 1,745,195 1 -100110101 418,923 1 -100110101 153,500,000 1 -100110101 111,580,000 1 -100110101 149,230,000 1 -100110101 862,547 1 -100110101 276,220,000 1 -100110101 148,910 1 -100110101 191,780,000 1 -100110101 192,650,000 1 -100110101 203,110,000 1 -100110101 183,800 1 -100110101 5,134,000 1 -100110101 161,790,000 1 -100110101 8,433,539 1 -100110101 193,030,000 1 -100110101 194,520,000 1 -100110101 318,405 1 -100110101 220,158 1 -100110101 705,930 1 -100110101 214,230,000 1 -100110101 3,132,000 1 -100110101 170,940,000 1 -100110101 91,880,000 1 -100110101 19,040,000 1 -100110101 181,590,000 1 -100110101 Ansbacher-held 1 -100110101 three-century 1 -100110101 542,224 1 -100110101 139,170,000 1 -100110101 1,206,000 1 -100110101 189,300,000 1 -100110101 190,870,000 1 -100110101 869,400 1 -100110101 181,850,000 1 -100110101 449,400 1 -100110101 302,390,000 1 -100110101 25,388 1 -100110101 56,181,731 1 -100110101 188,660,000 1 -100110101 198,410,000 1 -100110101 192,320,000 1 -100110101 245,400 1 -100110101 138,800,000 1 -100110101 4,805,575 1 -100110101 0.055 1 -100110101 218,390,000 1 -100110101 1,463,502 1 -100110101 615,530 1 -100110101 957,285 1 -100110101 253,120,000 1 -100110101 224,790,000 1 -100110101 162,830,000 1 -100110101 1,643,230 1 -100110101 150,710,000 1 -100110101 136,240,000 1 -100110101 1,729,900 1 -100110101 195,740,000 1 -100110101 28,207,148 1 -100110101 60,840 1 -100110101 170,070,000 1 -100110101 207,700 1 -100110101 491,579 1 -100110101 179,790,000 1 -100110101 174,760,000 1 -100110101 10,607,595 1 -100110101 1,538,462 1 -100110101 164,910,000 1 -100110101 154,380,000 1 -100110101 1,250,600 1 -100110101 1,766,026 1 -100110101 178,020,000 1 -100110101 697,341 1 -100110101 95,410,000 1 -100110101 732,011 1 -100110101 212,821,575 1 -100110101 157,610,000 1 -100110101 1,673,077 1 -100110101 188,700,000 1 -100110101 99,800,000 1 -100110101 126,180,000 1 -100110101 745,200 1 -100110101 93.74997 1 -100110101 47,269 1 -100110101 2,069,834 1 -100110101 48,860,000 1 -100110101 NLV 1 -100110101 148,840,000 1 -100110101 1,036,000 1 -100110101 2,923,957 1 -100110101 3,820,332 1 -100110101 165,430,000 1 -100110101 136,200 1 -100110101 195,400 1 -100110101 low-dividend 1 -100110101 9,172,000 1 -100110101 244,680,000 1 -100110101 955,877 1 -100110101 8,625,000 1 -100110101 1,569,176 1 -100110101 3,669,512 1 -100110101 155,430,000 1 -100110101 558,520 1 -100110101 2,984,810 1 -100110101 17,852,000 1 -100110101 1,051,600 1 -100110101 routine-looking 1 -100110101 176,720,000 1 -100110101 arbitrage-traded 1 -100110101 7,506,339 1 -100110101 168,850,000 1 -100110101 143,880,000 1 -100110101 88,600 1 -100110101 41,240 1 -100110101 166,320,000 1 -100110101 129,080,000 1 -100110101 131,200,000 1 -100110101 2,122,087 1 -100110101 162,350,000 1 -100110101 133,850,000 1 -100110101 186,490,000 1 -100110101 9,332,858 1 -100110101 209,420,000 1 -100110101 408,200 1 -100110101 9,965,710 1 -100110101 754,162 1 -100110101 868,000 1 -100110101 147,240,000 1 -100110101 6,925 1 -100110101 127,700,000 1 -100110101 1,545,700 1 -100110101 161,310,000 1 -100110101 128,680,000 1 -100110101 13,170,000 1 -100110101 A-M 1 -100110101 18,553,119 1 -100110101 177,190,000 1 -100110101 776,600 1 -100110101 3,820 1 -100110101 135,620,000 1 -100110101 152,300,000 1 -100110101 4,119,525 1 -100110101 2,094,100 1 -100110101 354,237 1 -100110101 133,810,000 1 -100110101 CONDO 1 -100110101 1,759,271 1 -100110101 324,910 1 -100110101 135,380,000 1 -100110101 141,320,000 1 -100110101 187,980,000 1 -100110101 171,840,000 1 -100110101 121,237,200 1 -100110101 1,233,460 1 -100110101 on-land 1 -100110101 Stephens-Riady 1 -100110101 1,474,507 1 -100110101 1989-62 1 -100110101 872,550 1 -100110101 136,470,000 1 -100110101 auction-preferred 1 -100110101 131,061,800 1 -100110101 200,760,000 1 -100110101 176,920,000 1 -100110101 1,818,182 1 -100110101 1,948,920 1 -100110101 88-A 1 -100110101 189,600,000 1 -100110101 168,710,000 1 -100110101 10,600,000 1 -100110101 176,360,000 1 -100110101 1988-17 1 -100110101 14,280,000 1 -100110101 8,980,290 1 -100110101 B-complex 1 -100110101 234,560,000 1 -100110101 2,730,000 1 -100110101 907,700 1 -100110101 4,380,000 1 -100110101 166,430,000 1 -100110101 193,540,000 1 -100110101 4,615,500 1 -100110101 235,160,000 1 -100110101 6,830,000 1 -100110101 11,930,000 1 -100110101 155,710,000 1 -100110101 275,250,000 1 -100110101 JJ 1 -100110101 730,618 1 -100110101 188,757,085 1 -100110101 404,799 1 -100110101 now-depressed 1 -100110101 484,818,847 1 -100110101 138,380,000 1 -100110101 310,030,000 1 -100110101 191,200 1 -100110101 558,095 1 -100110101 139,930,000 1 -100110101 164,920,000 1 -100110101 75,200 1 -100110101 102,640,000 1 -100110101 2,851,364 1 -100110101 189,500 1 -100110101 138,310,000 1 -100110101 1.0593 1 -100110101 234,010,000 1 -100110101 20,908,166 1 -100110101 1,492,317 1 -100110101 88A 1 -100110101 165,160,000 1 -100110101 237,270,000 1 -100110101 preferrance 1 -100110101 EE2 1 -100110101 HH2 1 -100110101 120,600,000 1 -100110101 605,076 1 -100110101 678,100 1 -100110101 211,880,000 1 -100110101 133,590,000 1 -100110101 247,610,000 1 -100110101 3,988,746 1 -100110101 1,141,628 1 -100110101 1989-70 1 -100110101 277,773 1 -100110101 125,068,000 1 -100110101 Appia 1 -100110101 210,660,000 1 -100110101 164,260,000 1 -100110101 16,480,000 1 -100110101 167,370,000 1 -100110101 166,667 1 -100110101 63,140 1 -100110101 WARRIORS 1 -100110101 184,910,000 1 -100110101 128,830,000 1 -100110101 191,900 1 -100110101 11,130,000 1 -100110101 587,700 1 -100110101 199,630,000 1 -100110101 2,482 1 -100110101 142,000,000 1 -100110101 5/7 1 -100110101 152,690,000 1 -100110101 236,050,000 1 -100110101 1/2-for-one 1 -100110101 13,550,000 1 -100110101 151,810,000 1 -100110101 3,629,715 1 -100110101 five-sevenths 1 -100110101 1989-63 1 -100110101 515,500 1 -100110101 199,990,000 1 -100110101 70,944,421 1 -100110101 134,185,698 1 -100110101 136,422,919 1 -100110101 205,130,119 1 -100110101 163,170,000 1 -100110101 17,418,000 1 -100110101 3,473,000 1 -100110101 Crista 1 -100110101 142,820,000 1 -100110101 200,020,000 1 -100110101 5,079,800 1 -100110101 131,890,000 1 -100110101 1,119,100 1 -100110101 793,400 1 -100110101 210,300 1 -100110101 210,900,000 1 -100110101 237,680,000 1 -100110101 197,260,000 1 -100110101 486,100 1 -100110101 B-trucks 1 -100110101 1989-66 1 -100110101 629,400 1 -100110101 211,920,000 1 -100110101 5,373,393 1 -100110101 311,400 1 -100110101 245,750,000 1 -100110101 1989-64 1 -100110101 203,310,000 1 -100110101 1989-67 1 -100110101 133,170,000 1 -100110101 363,750 1 -100110101 1,834,200 1 -100110101 1,970,819 1 -100110101 102,800 1 -100110101 201,410,000 1 -100110101 4,631,400 1 -100110101 153,590,000 1 -100110101 144,650,000 1 -100110101 367,500 1 -100110101 94,473 1 -100110101 646,330 1 -100110101 234,160,000 1 -100110101 small-capital 1 -100110101 161,910,000 1 -100110101 10-for-one 1 -100110101 966,676 1 -100110101 3,220,090 1 -100110101 180,300,000 1 -100110101 4,703,113 1 -100110101 185,120,000 1 -100110101 16,250,000 1 -100110101 211,810,000 1 -100110101 1989-69 1 -100110101 178,930,000 1 -100110101 176,830,000 1 -100110101 544,600 1 -100110101 152,520,000 1 -100110101 244,510,000 1 -100110101 316,980 1 -100110101 147,590,000 1 -100110101 1,016,027 1 -100110101 873,631 1 -100110101 1,111,612 1 -100110101 seductiveness 1 -100110101 151,430,000 1 -100110101 1,563,499 1 -100110101 168,440,000 1 -100110101 135,290,000 1 -100110101 182,080,000 1 -100110101 5,339,148 1 -100110101 189,760,000 1 -100110101 150,677 1 -100110101 14,190,000 1 -100110101 1988-No.1 1 -100110101 213,490,000 1 -100110101 933,300 1 -100110101 7,381,486 1 -100110101 158,060,000 1 -100110101 139,870,000 1 -100110101 1,766,400 1 -100110101 10,110,000 1 -100110101 1989-68 1 -100110101 1,237,800 1 -100110101 ScientificAtlanta 1 -100110101 2,945,000 1 -100110101 4,179,044 1 -100110101 678,300 1 -100110101 1,031,250 1 -100110101 3,261,468 1 -100110101 192,260,000 1 -100110101 146,400,000 1 -100110101 177,840,000 1 -100110101 1981A 1 -100110101 172,925 1 -100110101 175,280,659 1 -100110101 133,892,616 1 -100110101 212,730,000 1 -100110101 169,300,000 1 -100110101 1,584,550 1 -100110101 58,329,085 1 -100110101 143,957,072 1 -100110101 135,890,000 1 -100110101 7,568,000 1 -100110101 154,570,000 1 -100110101 170,140,000 1 -100110101 11,610,000 1 -100110101 2,216,739 1 -100110101 671,995 1 -100110101 1,456,358 1 -100110101 215,140,000 1 -100110101 9,653,000 1 -100110101 181,810,000 1 -100110101 121,960,000 1 -100110101 2,410,000 1 -100110101 4,410,000 1 -100110101 1989C 1 -100110101 29,699,919 1 -100110101 166,660,000 1 -100110101 Resort-related 1 -100110101 203,590,000 1 -100110101 192,340,000 1 -100110101 267,983 1 -100110101 1,837,300 1 -100110101 1989-78 1 -100110101 1989-80 1 -100110101 1989-77 1 -100110101 138,170,000 1 -100110101 199,710,000 1 -100110101 serial-preferred 1 -100110101 175,360,000 1 -100110101 144,110,000 1 -100110101 156,210,000 1 -100110101 980,256 1 -100110101 339,366 1 -100110101 197,300,000 1 -100110101 35,200 1 -100110101 54,200 1 -100110101 520,700 1 -100110101 16,136,513 1 -100110101 602,500 1 -100110101 2,430,000 1 -100110101 505,430 1 -100110101 9,279,000 1 -100110101 1989-73 1 -100110101 155,300,000 1 -100110101 492,041 1 -100110101 162,300 1 -100110101 raider-repelling 1 -100110101 149,460,000 1 -100110101 198,660,000 1 -100110101 209,520,000 1 -100110101 148,880,000 1 -100110101 2,308,342 1 -100110101 484,948 1 -100110101 6,787,000 1 -100110101 3,310,000 1 -100110101 151,990,000 1 -100110101 169,737,000 1 -100110101 122,370,000 1 -100110101 419,699 1 -100110101 248,521 1 -100110101 3,194,230 1 -100110101 33,732,498 1 -100110101 95,700 1 -100110101 15,760,000 1 -100110101 172,520,000 1 -100110101 first-preferred 1 -100110101 162,790,000 1 -100110101 1898-57 1 -100110101 1989-56 1 -100110101 post-Crash 1 -100110101 169,500,000 1 -100110101 127,640,000 1 -100110101 63,071,815 1 -100110101 49,699,758 1 -100110101 151,617,606 1 -100110101 150,840,848 1 -100110101 1,435,700 1 -100110101 45,977 1 -100110101 12,820,000 1 -100110101 1989-55 1 -100110101 89,240,000 1 -100110101 119,540,000 1 -100110101 coated-end 1 -100110101 127,800,000 1 -100110101 984,224 1 -100110101 278,289 1 -100110101 169,099 1 -100110101 227,155 1 -100110101 426,100 1 -100110101 Europreference 1 -100110101 200,710,000 1 -100110101 548,784 1 -100110101 1989-74 1 -100110101 10,949,800 1 -100110101 157,240,000 1 -100110101 12,670,000 1 -100110101 88,451 1 -100110101 113,400,000 1 -100110101 128,560,000 1 -100110101 229,170 1 -100110101 1989-75 1 -100110101 76-A 1 -100110101 5,231,419 1 -100110101 707,997 1 -100110101 324,566 1 -100110101 200,950,000 1 -100110101 449,201 1 -100110101 399,959 1 -100110101 176,960,000 1 -100110101 173,000,000 1 -100110101 236,466 1 -100110101 1989-58 1 -100110101 92,046 1 -100110101 1,387,000 1 -100110101 15,180,000 1 -100110101 401,500 1 -100110101 135,100,000 1 -100110101 179,880,000 1 -100110101 948,143 1 -100110101 1,691,318 1 -100110101 3,954,167 1 -100110101 264,410,000 1 -100110101 1962-1964 1 -100110101 3,068,500 1 -100110101 153,550,000 1 -100110101 217,510,000 1 -100110101 96,960 1 -100110101 148,250 1 -100110101 12,210,000 1 -100110101 185,770,000 1 -100110101 272,900 1 -100110101 131,328 1 -100110101 397,963 1 -100110101 10,760,000 1 -100110101 15,220,000 1 -100110101 227,410,000 1 -100110101 608,148,710 1 -100110101 238,330,000 1 -100110101 140,570,000 1 -100110101 197,940,000 1 -100110101 152,370,000 1 -100110101 15,240,000 1 -100110101 159,590,000 1 -100110101 11,988,000 1 -100110101 150,260,000 1 -100110101 114,226,678 1 -100110101 276,694 1 -100110101 2,627,450 1 -100110101 13,300,000 1 -100110101 161,550,000 1 -100110101 11,848,000 1 -100110101 203,800 1 -100110101 447,700 1 -100110101 158,080,000 1 -100110101 147,050,000 1 -100110101 4,942,022 1 -100110101 359,790 1 -100110101 8,638,000 1 -100110101 427,600 1 -100110101 125,310,000 1 -100110101 488,600 1 -100110101 227,150,000 1 -100110101 8,710,000 1 -100110101 181,660,000 1 -100110101 747,175 1 -100110101 73,985,000 1 -100110101 155,060,000 1 -100110101 343,920,000 1 -100110101 1989-52 1 -100110101 1989-53 1 -100110101 1989-72 1 -100110101 9,500,000 1 -100110101 1989-60 1 -100110101 1989-61 1 -100110101 1989-3 1 -100110101 116,750,000 1 -100110101 11.674 1 -100110101 14,890,000 1 -100110101 123,300,000 1 -100110101 154,020,000 1 -100110101 12,430,000 1 -100110101 151,875 1 -100110101 189,630,000 1 -100110101 1,634,000 1 -100110101 136,070,000 1 -100110101 21.5-million 1 -100110101 13,967,000 1 -100110101 156,100,000 1 -100110101 8,526,260 1 -100110101 14,340,000 1 -100110101 165,730,000 1 -100110101 most-purchased 1 -100110101 171,790,000 1 -100110101 equity-redemption 1 -100110101 11,510,000 1 -100110101 11,170,000 1 -100110101 161,650,000 1 -100110101 317,800 1 -100110101 149,250,000 2 -100110101 179,270,000 2 -100110101 five-for-four 2 -100110101 5,678,750 2 -100110101 14,790,000 2 -100110101 188,070,000 2 -100110101 14,350,000 2 -100110101 15,110,000 2 -100110101 578,700 2 -100110101 104,500 2 -100110101 840,576 2 -100110101 496,861,713 2 -100110101 0.725 2 -100110101 9,990,000 2 -100110101 anti-dilutive 2 -100110101 96,500 2 -100110101 post-divestiture 2 -100110101 136,640,000 2 -100110101 '10 2 -100110101 999,999 2 -100110101 180,610,000 2 -100110101 4,080,000 2 -100110101 528,735 2 -100110101 184,220,000 2 -100110101 164,240,000 2 -100110101 15,470,000 2 -100110101 177,890,000 2 -100110101 1,411,300 2 -100110101 380,900 2 -100110101 713,700 2 -100110101 9,420,000 2 -100110101 146,930,000 2 -100110101 164,070,000 2 -100110101 14,080,000 2 -100110101 12,510,000 2 -100110101 583,500 2 -100110101 12,560,000 2 -100110101 2,663,000 2 -100110101 23,271,011 2 -100110101 127,410,000 2 -100110101 10,580 2 -100110101 2,806,000 2 -100110101 422,245 2 -100110101 first-preference 2 -100110101 166,650,000 2 -100110101 246,500 2 -100110101 158,400,000 2 -100110101 4,540,000 2 -100110101 234,870,000 2 -100110101 7,375,000 2 -100110101 205,430,000 2 -100110101 preferrred 2 -100110101 12,310,000 2 -100110101 incentive-option 2 -100110101 133,350,000 2 -100110101 1,543,916 2 -100110101 2,045,640 2 -100110101 15,040 2 -100110101 652,742 2 -100110101 14,100,000 2 -100110101 260,220,000 2 -100110101 141,930,000 2 -100110101 449,350,000 2 -100110101 392,160,000 2 -100110101 7,208,000 2 -100110101 bond-for-debt 2 -100110101 34,100 2 -100110101 11,892,000 2 -100110101 180,500 2 -100110101 Palmitate 2 -100110101 5,271,600 2 -100110101 145,810,000 2 -100110101 120,400 2 -100110101 1,216,700 2 -100110101 119,853 2 -100110101 8,430,000 2 -100110101 47,700 2 -100110101 996,511 2 -100110101 165,930,000 2 -100110101 8,610,000 2 -100110101 6,980,000 2 -100110101 9,950,000 2 -100110101 1,013,500 2 -100110101 159,640,000 2 -100110101 664,500 2 -100110101 9,450,000 2 -100110101 5,850,000 2 -100110101 157,760,000 2 -100110101 12,748,590 2 -100110101 9,010,000 2 -100110101 170,590,000 2 -100110101 8,804,010 2 -100110101 9,510,000 2 -100110101 91,500 2 -100110101 9,778,440 2 -100110101 Mafia-backed 2 -100110101 8,307,000 2 -100110101 10,190,000 2 -100110101 181,550,000 2 -100110101 152,040,000 2 -100110101 197,550,000 2 -100110101 196,540,000 2 -100110101 170,970,000 2 -100110101 166,120,000 2 -100110101 153,570,000 2 -100110101 8,110 2 -100110101 10,650,000 2 -100110101 235,200 2 -100110101 216,390,000 2 -100110101 1,428,572 2 -100110101 209,900,000 2 -100110101 10,176,000 2 -100110101 16,350,000 2 -100110101 6,265,000 2 -100110101 19,010,000 2 -100110101 160,240,000 2 -100110101 9,020,000 2 -100110101 8,920,000 2 -100110101 154,530,000 2 -100110101 175,130,000 2 -100110101 203,660,000 2 -100110101 8,280,000 2 -100110101 161,710,000 2 -100110101 197,580,000 2 -100110101 135,500,000 2 -100110101 142,900,000 2 -100110101 8,080,000 2 -100110101 181,760,000 2 -100110101 non-qualified 2 -100110101 245,500 2 -100110101 157,560,000 2 -100110101 300,500 2 -100110101 9,170,000 2 -100110101 no-par 2 -100110101 34,900 2 -100110101 188,270,000 2 -100110101 A-C 2 -100110101 9,729,830 2 -100110101 1,871,420 2 -100110101 143,580,000 2 -100110101 122,250,000 2 -100110101 160,160,000 2 -100110101 12,300,000 2 -100110101 narrow-based 2 -100110101 422,700 2 -100110101 1,484,224 2 -100110101 383,600 2 -100110101 158,980,000 2 -100110101 1B 2 -100110101 1,605,430 2 -100110101 763,071 2 -100110101 225,280,000 2 -100110101 7,690,000 2 -100110101 8,420,000 2 -100110101 12,460,000 2 -100110101 7,930,000 2 -100110101 709,500 2 -100110101 non-transferable 2 -100110101 155,700 2 -100110101 11,080,000 2 -100110101 904,500 2 -100110101 A-D 2 -100110101 11,910,000 2 -100110101 8,570,000 2 -100110101 16,800,000 2 -100110101 2,978,586 2 -100110101 1,669,212 2 -100110101 139,820,000 2 -100110101 76,900 2 -100110101 B-free 2 -100110101 1988-1 2 -100110101 1987-20 2 -100110101 1,000-dollar 2 -100110101 9,140,000 2 -100110101 tomato-juice 2 -100110101 155,010,000 2 -100110101 805,194 2 -100110101 10,530,000 2 -100110101 1,664,087 2 -100110101 10,550,000 2 -100110101 400,700 2 -100110101 2.5-for-1 2 -100110101 estate-freeze 2 -100110101 202,800 2 -100110101 7,840,000 2 -100110101 18,190,000 2 -100110101 3,640,000 2 -100110101 0.709 2 -100110101 509,067 2 -100110101 3,650,000 2 -100110101 1988-B 2 -100110101 131,180,000 2 -100110101 1,433,929 2 -100110101 157,040,000 2 -100110101 145,180,000 2 -100110101 super-voting 2 -100110101 AX 2 -100110101 213,680,000 2 -100110101 Conwest 2 -100110101 4,875,000 2 -100110101 143,420,000 2 -100110101 36,900 2 -100110101 158,771 2 -100110101 168,690,000 2 -100110101 14,610,000 2 -100110101 189,070,000 2 -100110101 86B 2 -100110101 86C 2 -100110101 86D 2 -100110101 156,950,000 2 -100110101 five-for-one 3 -100110101 13,120,000 3 -100110101 common-equivalent 3 -100110101 175,750,000 3 -100110101 174,350,000 3 -100110101 436,966,248 3 -100110101 162,189 3 -100110101 133,300,000 3 -100110101 136,940,000 3 -100110101 4,747,000 3 -100110101 387,100 3 -100110101 175,210,000 3 -100110101 126,020,000 3 -100110101 154,090,000 3 -100110101 142,140,000 3 -100110101 175,330,000 3 -100110101 BO 3 -100110101 AY 3 -100110101 152,460,000 3 -100110101 1,436,265 3 -100110101 142,010,000 3 -100110101 150,060,000 3 -100110101 148,770,000 3 -100110101 200,340,000 3 -100110101 1989B 3 -100110101 1,746,000 3 -100110101 1,235,000 3 -100110101 11,790,000 3 -100110101 121,130,000 3 -100110101 136,800,000 3 -100110101 farmer-borrower 3 -100110101 1,028,000 3 -100110101 308,820,000 3 -100110101 52,800 3 -100110101 1,855,000 3 -100110101 189,580,000 3 -100110101 661,693 3 -100110101 1,605,000 3 -100110101 5-for-3 3 -100110101 Unigas 3 -100110101 155,790,000 3 -100110101 162,500,000 3 -100110101 can-body 3 -100110101 119,290,000 3 -100110101 2,040,000 3 -100110101 186,350,000 3 -100110101 140,900,000 3 -100110101 8,160,000 3 -100110101 154,840,000 3 -100110101 124,660,000 3 -100110101 194,590,000 3 -100110101 127,400,000 3 -100110101 convertible-preferred 3 -100110101 923,100 3 -100110101 145,100,000 3 -100110101 116,420,000 3 -100110101 150,670,000 3 -100110101 7,780,000 3 -100110101 152,980,000 3 -100110101 161,300,000 3 -100110101 133,870,000 3 -100110101 972,400 3 -100110101 363,500 3 -100110101 141,660,000 3 -100110101 151,250,000 3 -100110101 153,140,000 3 -100110101 115,170,000 3 -100110101 143,460,000 3 -100110101 155,190,000 3 -100110101 8,580,000 3 -100110101 non-tendering 4 -100110101 dividend-yielding 4 -100110101 137,600 4 -100110101 337,500 4 -100110101 five-million 4 -100110101 perferred 4 -100110101 three-for-one 4 -100110101 533,500 4 -100110101 83,300 4 -100110101 5,950,000 4 -100110101 1989-B 4 -100110101 1988-A 4 -100110101 834,000 5 -100110101 then-outstanding 5 -100110101 1988A 5 -100110101 2,350,000 5 -100110101 1,115,000 5 -100110101 I.G.E. 6 -100110101 three-for-two 6 -100110101 EE 6 -100110101 10000 6 -100110101 four-for-one 6 -100110101 presplit 7 -100110101 1989A 7 -100110101 5-for-2 8 -100110101 Cabriolet 10 -100110101 3,450,000 11 -100110101 0.6672 12 -100110101 5-for-4 13 -100110101 car-market 14 -100110101 4-for-1 15 -100110101 4-for-3 21 -100110101 two-for-one 37 -100110101 supervoting 39 -100110101 1.575 54 -100110101 Y 66 -100110101 3-for-1 74 -100110101 F 80 -100110101 G 91 -100110101 unissued 96 -100110101 non-voting 116 -100110101 post-split 133 -100110101 H 145 -100110101 pre-split 157 -100110101 buffer 181 -100110101 nonvoting 182 -100110101 D 267 -100110101 3-for-2 314 -100110101 E 315 -100110101 debenture 459 -100110101 2-for-1 524 -100110101 preference 772 -100110101 preferred 6731 -100110101 B 1883 -100110110 uncourageous 1 -100110110 polyalpha 1 -100110110 56,000-member 1 -100110110 mini-manic 1 -100110110 known. 1 -100110110 multi-volume 1 -100110110 depositers 1 -100110110 auto-gear 1 -100110110 146-member 1 -100110110 deepest-water 1 -100110110 misredemption 1 -100110110 centurie-sold 1 -100110110 122,020 1 -100110110 free-admission 1 -100110110 teenaged 1 -100110110 salty-snack 1 -100110110 cool-and 1 -100110110 kindergarten-teacher 1 -100110110 television-ministry 1 -100110110 one-in-eight 1 -100110110 ultra-dovish 1 -100110110 highest-value 1 -100110110 406-member 1 -100110110 instate 1 -100110110 already-bullish 1 -100110110 debt-strategy 1 -100110110 Conan-Terminator 1 -100110110 unshucked 1 -100110110 gridded 1 -100110110 glass-top 1 -100110110 15-piece 1 -100110110 temporary-investments 1 -100110110 marketable-securities 1 -100110110 dandyish 1 -100110110 social-moral 1 -100110110 pro-poor 1 -100110110 once-overwhelming 1 -100110110 labyrinthian 1 -100110110 140-button 1 -100110110 hide-outs 1 -100110110 least-promising 1 -100110110 frothiest 1 -100110110 nonmilitaristic 1 -100110110 heavy-hanging 1 -100110110 anti-acid 1 -100110110 intaday 1 -100110110 32-station 1 -100110110 Sensititre 1 -100110110 starchily 1 -100110110 amnesty-program 1 -100110110 291.88-point 1 -100110110 worm-picking 1 -100110110 soybean-processor 1 -100110110 assumptive 1 -100110110 ticket-selling 1 -100110110 only-show-in-town 1 -100110110 once-sealed 1 -100110110 medicine-show 1 -100110110 GI-bill 1 -100110110 hybrid-corn 1 -100110110 sing-a-long 1 -100110110 all-too-accurate 1 -100110110 already-enormous 1 -100110110 dating-service 1 -100110110 financial-integrity 1 -100110110 export-development 1 -100110110 122-year 1 -100110110 debt-loaded 1 -100110110 bookfilled 1 -100110110 geodesic-dome 1 -100110110 29-foot 1 -100110110 international-presidency 1 -100110110 gangster-movie 1 -100110110 Full-Size 1 -100110110 Schahfer 1 -100110110 well-shaped 1 -100110110 trend-setters 1 -100110110 1,500-screen 1 -100110110 rapidly-expanding 1 -100110110 postchampionship 1 -100110110 suit-rep-tie-white-shirt 1 -100110110 MicroMagic 1 -100110110 audaciousness 1 -100110110 square-shouldered 1 -100110110 sector-fund 1 -100110110 czarevitch 1 -100110110 864-page 1 -100110110 court-recognized 1 -100110110 then-lagging 1 -100110110 gun-metal 1 -100110110 league-table 1 -100110110 high-country 1 -100110110 926,402 1 -100110110 wooden-faced 1 -100110110 lit-major 1 -100110110 non-accounting 1 -100110110 blues-rooted 1 -100110110 exlusive 1 -100110110 hind-leg 1 -100110110 670-person 1 -100110110 submission-for-salami 1 -100110110 120-foot 1 -100110110 next-level 1 -100110110 suit-jacket 1 -100110110 league-leading 1 -100110110 controlled-capacity 1 -100110110 Tente-brand 1 -100110110 still-awaited 1 -100110110 Sandinista-formed 1 -100110110 crew-scheduling 1 -100110110 1,513 1 -100110110 golf-crazy 1 -100110110 insurance-writing 1 -100110110 bluestocking 1 -100110110 8,400-member 1 -100110110 club-land 1 -100110110 dilettantish 1 -100110110 coppery 1 -100110110 co-anchor/partner/best 1 -100110110 pre-debate 1 -100110110 129-year 1 -100110110 97-page 1 -100110110 then-19-year-old 1 -100110110 shrewed 1 -100110110 Anglo-Celtic 1 -100110110 97-year-old 1 -100110110 haggish 1 -100110110 704-page 1 -100110110 Getty-sized 1 -100110110 well-trodden 1 -100110110 graphic-research 1 -100110110 Neupogen 1 -100110110 prosodic 1 -100110110 roach-filled 1 -100110110 less-than-legal 1 -100110110 87-year 1 -100110110 cocaine-smoking 1 -100110110 just-picked 1 -100110110 10,000-hour 1 -100110110 5,710-member 1 -100110110 skidrow 1 -100110110 neofascist 1 -100110110 trade-threatening 1 -100110110 353-year 1 -100110110 mood-enhancing 1 -100110110 megaphone-like 1 -100110110 county-fair 1 -100110110 marblelike 1 -100110110 junior-management 1 -100110110 28,915 1 -100110110 dry-goods 1 -100110110 near-magical 1 -100110110 reactor-building 1 -100110110 tender-offering 1 -100110110 often-dreadful 1 -100110110 spare-part 1 -100110110 25-vehicle 1 -100110110 retire-and-consult 1 -100110110 once-healthy 1 -100110110 5000-model 1 -100110110 5,400-kilowatt 1 -100110110 gold-toothed 1 -100110110 5550 1 -100110110 anti-anginal 1 -100110110 self-abasing 1 -100110110 fault-free 1 -100110110 wheezy 1 -100110110 365-mile 1 -100110110 SuperNow 1 -100110110 not-so-behind-the-scenes 1 -100110110 boarding-home 1 -100110110 hyperactivist 1 -100110110 eight-car 1 -100110110 Kentucky-Ohio 1 -100110110 75-month 1 -100110110 hotel-executive 1 -100110110 pixillated 1 -100110110 election-campaign 1 -100110110 worst-in-the-league 1 -100110110 much-injured 1 -100110110 refrigerator-components 1 -100110110 soon-to-be-opened 1 -100110110 party-furnished 1 -100110110 10-stop 1 -100110110 dance-instructor 1 -100110110 coral-lacquered 1 -100110110 pointillistic 1 -100110110 lease. 1 -100110110 children's-center 1 -100110110 Goldstake 1 -100110110 feast-and-famine 1 -100110110 justification-for-life 1 -100110110 anti-waterbed 1 -100110110 state-provided 1 -100110110 fluorescent-lamp 1 -100110110 Samscan 1 -100110110 82-person 1 -100110110 service-performance 1 -100110110 12-by-16-foot 1 -100110110 most-willing 1 -100110110 59th-floor 1 -100110110 71-year 1 -100110110 client-contract 1 -100110110 most-cautious 1 -100110110 always-fluent 1 -100110110 hydrocephalic 1 -100110110 regional-service 1 -100110110 microchip/computers 1 -100110110 black-glass 1 -100110110 3,000-employee 1 -100110110 112-year 1 -100110110 four-zip 1 -100110110 curveball 1 -100110110 Swiss-immigrant 1 -100110110 federal-bench 1 -100110110 Aquaflex 1 -100110110 no-tax-rise 1 -100110110 souvenir-cluttered 1 -100110110 Chevron-issued 1 -100110110 guaranteed-student-loan 1 -100110110 17.5-ounce 1 -100110110 32nd-floor 1 -100110110 12.6-acre 1 -100110110 biotechology 1 -100110110 prole 1 -100110110 most-notable 1 -100110110 lottery-like 1 -100110110 blood-spattered 1 -100110110 money-for-bodies 1 -100110110 21,866 1 -100110110 Caminada 1 -100110110 presidential-elector 1 -100110110 new-fi 1 -100110110 megalarian 1 -100110110 defensive-strategy 1 -100110110 2,100-broker 1 -100110110 Chinese-character 1 -100110110 philanthropic-minded 1 -100110110 1,426,800 1 -100110110 colorfulness 1 -100110110 worst-dressed 1 -100110110 long-runnning 1 -100110110 carbuncular 1 -100110110 cell-inhibiting 1 -100110110 top-25 1 -100110110 361,500 1 -100110110 debut-bound 1 -100110110 historical-landmark 1 -100110110 non-wind 1 -100110110 once-stated 1 -100110110 Hanoverian 1 -100110110 schizzy 1 -100110110 customer-owner 1 -100110110 financial-planner 1 -100110110 fan-feathered 1 -100110110 acanthusleaf 1 -100110110 klutziness 1 -100110110 eight-and-a-half-month 1 -100110110 cuddliest 1 -100110110 921-foot 1 -100110110 business-system 1 -100110110 driver's-test 1 -100110110 griot 1 -100110110 195,250 1 -100110110 unflowery 1 -100110110 moon-in-June 1 -100110110 five-of-diamonds 1 -100110110 poetry-writing 1 -100110110 knock-heads-with-the-competition 1 -100110110 farthest-flung 1 -100110110 dual-drive 1 -100110110 Mideastern-sounding 1 -100110110 Vitalis 1 -100110110 waste-managment 1 -100110110 sugar-market 1 -100110110 13-jet 1 -100110110 430-acre 1 -100110110 litigation-stalled 1 -100110110 minority-business 1 -100110110 three-month-long 1 -100110110 machine-style 1 -100110110 post-meal 1 -100110110 talismanic 1 -100110110 upbeat-Dallas 1 -100110110 man-in-the-moon 1 -100110110 communications-based 1 -100110110 600th 1 -100110110 BENNES 1 -100110110 begetters 1 -100110110 curfew-long 1 -100110110 tourist-drawing 1 -100110110 4361 1 -100110110 rules-enforcing 1 -100110110 plant-order 1 -100110110 earth-bound 1 -100110110 beach-blond 1 -100110110 fellow-Czech 1 -100110110 several-pack-a-day 1 -100110110 pack-and-a-half-a-day 1 -100110110 undomesticated 1 -100110110 bradykinin-blocking 1 -100110110 employee-benefit-plan 1 -100110110 bearer-of-bad-news 1 -100110110 1,045,947 1 -100110110 already-considerable 1 -100110110 Instamatics 1 -100110110 oft-made 1 -100110110 highest-energy 1 -100110110 pre-restructuring 1 -100110110 near-freezing 1 -100110110 nationalist/protectionist 1 -100110110 college-degreed 1 -100110110 frequent-flying 1 -100110110 emergency-law 1 -100110110 system-bank 1 -100110110 design-development 1 -100110110 gas-service 1 -100110110 heretic-burning 1 -100110110 chipmunk 1 -100110110 out-by-out 1 -100110110 declining-price 1 -100110110 sun-washed 1 -100110110 Tendercuts 1 -100110110 erogenous 1 -100110110 videotape-editing 1 -100110110 squash-court 1 -100110110 jumbo-sized 1 -100110110 pension-retirement 1 -100110110 hen-and-chick 1 -100110110 unified-engineering 1 -100110110 no-longer-chic 1 -100110110 quick-pitch 1 -100110110 seven-jet 1 -100110110 oral-history 1 -100110110 harbor-view 1 -100110110 rabbit-hunting 1 -100110110 Patran 1 -100110110 274,400 1 -100110110 two-pack-a-week 1 -100110110 Tonys 1 -100110110 763,546 1 -100110110 prosecutorially 1 -100110110 prosperous-looking 1 -100110110 ill-guided 1 -100110110 all-fruit 1 -100110110 literary-agent 1 -100110110 combed-cotton 1 -100110110 Marxist-planned 1 -100110110 Chopin-style 1 -100110110 musk-ox 1 -100110110 DEX 1 -100110110 ruby-encrusted 1 -100110110 creedal 1 -100110110 romantic-comedy 1 -100110110 once-magical 1 -100110110 6,900-acre 1 -100110110 58,000-subscriber 1 -100110110 rough-skinned 1 -100110110 early-session 1 -100110110 store-shy 1 -100110110 pre-Raphaelite 1 -100110110 hard-toiling 1 -100110110 loan-brokerage 1 -100110110 cash-paying 1 -100110110 Commie 1 -100110110 Normodyne 1 -100110110 lider 1 -100110110 MaxSaving 1 -100110110 saccharine-sweet 1 -100110110 amendment-drafting 1 -100110110 between-service 1 -100110110 slower-reacting 1 -100110110 34,000-person 1 -100110110 sometimes-profane 1 -100110110 good-guys-take-out-the-bad-guys 1 -100110110 anti-MBA 1 -100110110 prescripts 1 -100110110 Hyphae 1 -100110110 inching-along 1 -100110110 film-library 1 -100110110 merger-happy 1 -100110110 TV-shaped 1 -100110110 140,000-man 1 -100110110 6-foot-6-inch 1 -100110110 tissue-thin 1 -100110110 Ciao 1 -100110110 television-fixated 1 -100110110 2,485 1 -100110110 46-unit 1 -100110110 3,400-person 1 -100110110 iron-curtain 1 -100110110 Washington-departing 1 -100110110 alcohol-consuming 1 -100110110 parlous 1 -100110110 299-year 1 -100110110 limited-time 1 -100110110 American-modern 1 -100110110 unfussy 1 -100110110 snowed-in 1 -100110110 ornithic 1 -100110110 nip-and-tuck 1 -100110110 slogan-makers 1 -100110110 cult-captured 1 -100110110 cork-shot 1 -100110110 farmer-stockholders 1 -100110110 anual 1 -100110110 Slurpee 1 -100110110 greediest 1 -100110110 corollary-supply-side 1 -100110110 anti-Hollywood 1 -100110110 three-decades-old 1 -100110110 Apulian 1 -100110110 220-employee 1 -100110110 tax-professional 1 -100110110 Zylin 1 -100110110 piano-teacher 1 -100110110 Zulu-based 1 -100110110 car-centered 1 -100110110 9-volt 1 -100110110 two-cent-a-gallon 1 -100110110 provenience 1 -100110110 dead-level 1 -100110110 two-millionth 1 -100110110 art-historian 1 -100110110 105-year 1 -100110110 current-lease 1 -100110110 nine-year-long 1 -100110110 six-million-strong 1 -100110110 centuries-long 1 -100110110 periwinkle-painted 1 -100110110 most-anticipated 1 -100110110 best-developed 1 -100110110 salivary 1 -100110110 Canada-to-California 1 -100110110 flapper 1 -100110110 movieland 1 -100110110 350-plus 1 -100110110 Colona 1 -100110110 red-shaded 1 -100110110 government-acquired 1 -100110110 60,000-car 1 -100110110 byproduct-prosperity 1 -100110110 once-tranquil 1 -100110110 3,000-member 1 -100110110 188,000-employee 1 -100110110 tribal-warfare 1 -100110110 fur-draped 1 -100110110 Robinson-Dike 1 -100110110 Leewards 1 -100110110 abusive-tax-shelter 1 -100110110 now-traditional 1 -100110110 human-knuckle 1 -100110110 anti-spending 1 -100110110 17-aircraft 1 -100110110 subscribersand 1 -100110110 angry-looking 1 -100110110 Marxist-Leninist-based 1 -100110110 frozen-pork 1 -100110110 overnight-call 1 -100110110 right-to-privacy 1 -100110110 Tony-winning 1 -100110110 already-stated 1 -100110110 soon-to-be-born 1 -100110110 thaler 1 -100110110 police-band 1 -100110110 black-township 1 -100110110 ecumenicism 1 -100110110 fourlegged 1 -100110110 ready-to-pick 1 -100110110 unanesthetized 1 -100110110 listener-request 1 -100110110 letter-national 1 -100110110 Cuban-type 1 -100110110 ursine 1 -100110110 union-prone 1 -100110110 nylon-covered 1 -100110110 Carinthian 1 -100110110 cardboard-recycling 1 -100110110 favored-company 1 -100110110 telephone-filled 1 -100110110 pecan-based 1 -100110110 astrologist 1 -100110110 77-seat 1 -100110110 early-running 1 -100110110 gray-edged 1 -100110110 gold-capped 1 -100110110 looseleaf 1 -100110110 730-member 1 -100110110 170-member 1 -100110110 972-unit 1 -100110110 70-foot 1 -100110110 protected-species 1 -100110110 40,000-year-old 1 -100110110 Styrofoam-brand 1 -100110110 bright-yellow 1 -100110110 well-promoted 1 -100110110 Borsari 1 -100110110 plasticized 1 -100110110 steel-export 1 -100110110 screechy 1 -100110110 perfume-trademark 1 -100110110 1991-1995 1 -100110110 eight-game 1 -100110110 Azerty 1 -100110110 29,320-member 1 -100110110 33,000-person 1 -100110110 ice-queen 1 -100110110 4x2 1 -100110110 pony-picking 1 -100110110 anti-technology 1 -100110110 basest 1 -100110110 15,000-share 1 -100110110 diapered 1 -100110110 3,000th 1 -100110110 gutsier 1 -100110110 once-clever 1 -100110110 would-have-been 1 -100110110 well-overdue 1 -100110110 suit-clad 1 -100110110 then-Harvard 1 -100110110 death-related 1 -100110110 Esoteric-brand 1 -100110110 dry-grocery 1 -100110110 drug-addled 1 -100110110 spread-the-wealth 1 -100110110 anti-utopian 1 -100110110 chip-buying 1 -100110110 foreign-wned 1 -100110110 broker-members 1 -100110110 mom-pop-and-brothers 1 -100110110 16-man 1 -100110110 still-beautiful 1 -100110110 enrichment-plant 1 -100110110 Coraflex 1 -100110110 billy-goat 1 -100110110 Ritmo 1 -100110110 mud-wall 1 -100110110 oh-so-brief 1 -100110110 full-life 1 -100110110 purple-haired 1 -100110110 business-use 1 -100110110 cushion-like 1 -100110110 42nd-floor 1 -100110110 bowling-league 1 -100110110 stage-design 1 -100110110 44,000-member 1 -100110110 inter-line 1 -100110110 still-mammoth 1 -100110110 137,000-pound 1 -100110110 freezenik 1 -100110110 gulyas 1 -100110110 deficit-projection 1 -100110110 let-'em-hit-it 1 -100110110 pine-paneled 1 -100110110 hot-dog-loving 1 -100110110 bat-counting 1 -100110110 no-increase 1 -100110110 packhorse 1 -100110110 three-millionth 1 -100110110 baseball-watching 1 -100110110 supercool 1 -100110110 once-revised 1 -100110110 docudramatic 1 -100110110 29-volume 1 -100110110 laboratory-tested 1 -100110110 blonde-streaked 1 -100110110 Diplock 1 -100110110 wordprocessing 1 -100110110 non-MLP 1 -100110110 moral/political 1 -100110110 bordello-like 1 -100110110 big-bopper 1 -100110110 car-quota 1 -100110110 insurgency-threatened 1 -100110110 784,000-a-year 1 -100110110 body-shipping 1 -100110110 happi 1 -100110110 post-boxing 1 -100110110 propaganda-machine 1 -100110110 live-entertainment 1 -100110110 collegues 1 -100110110 23-story 1 -100110110 THA-lecithin 1 -100110110 star-athlete 1 -100110110 cast. 1 -100110110 flame-broiled 1 -100110110 much-cherished 1 -100110110 AIDS-tainted 1 -100110110 once-lofty 1 -100110110 tax-crime 1 -100110110 polyester-blend 1 -100110110 movie-placement 1 -100110110 eight-cent-a-share 1 -100110110 moony 1 -100110110 transmission-pressure 1 -100110110 big-boat 1 -100110110 publicity-battered 1 -100110110 Dorito 1 -100110110 media-borne 1 -100110110 imported-from-Europe 1 -100110110 jurisdiction. 1 -100110110 mail-solicitation 1 -100110110 musicial 1 -100110110 annual-banquet 1 -100110110 debt-subordination 1 -100110110 widely-used 1 -100110110 intracacies 1 -100110110 splotched 1 -100110110 fraudulent-transactions 1 -100110110 Case-Pac 1 -100110110 nests. 1 -100110110 anti-Giuliani 1 -100110110 motherand 1 -100110110 well-embalmed 1 -100110110 loss-posting 1 -100110110 500-store 1 -100110110 paint-it-black 1 -100110110 TV-interview 1 -100110110 grandiloquence 1 -100110110 bumpiest 1 -100110110 extra-Guarneri 1 -100110110 exploitational 1 -100110110 target-market 1 -100110110 Chablis-sipping 1 -100110110 oft-volatile 1 -100110110 sex-symbol 1 -100110110 320-picture 1 -100110110 124-year 1 -100110110 much-adapted 1 -100110110 73-page 1 -100110110 Armorall 1 -100110110 egg-crate 1 -100110110 long-sacred 1 -100110110 just-received 1 -100110110 Teamster-represented 1 -100110110 factoring-receivables 1 -100110110 aspartame-sweetened 1 -100110110 53-plane 1 -100110110 property-distribution 1 -100110110 714,680 1 -100110110 penny-a-point 1 -100110110 much-repeated 1 -100110110 imprecations 1 -100110110 WesBlot 1 -100110110 cottage-industry 1 -100110110 wine-cured 1 -100110110 spangled 1 -100110110 states'-rights 1 -100110110 Matra-Racing 1 -100110110 bookcase-lined 1 -100110110 prostate-surgery 1 -100110110 pre-nomination 1 -100110110 street-talk 1 -100110110 less-than-startling 1 -100110110 ever-critical 1 -100110110 just-above-a-whisper 1 -100110110 Tele-Tax 1 -100110110 interposition 1 -100110110 adenoidal 1 -100110110 random-urinalysis 1 -100110110 ditsy 1 -100110110 hospital-green 1 -100110110 on-the-mark 1 -100110110 unseeing 1 -100110110 dark-squared 1 -100110110 TRV 1 -100110110 MO. 1 -100110110 103-points-a-game 1 -100110110 chart-room 1 -100110110 book-tour 1 -100110110 drugstore-style 1 -100110110 Reagan-Republican 1 -100110110 scarf-like 1 -100110110 pill-factory 1 -100110110 artificers 1 -100110110 fast-turnaround 1 -100110110 200-calorie 1 -100110110 popcorn-marketing 1 -100110110 Italianate 1 -100110110 week-one 1 -100110110 four-round 1 -100110110 nation-leading 1 -100110110 four-back 1 -100110110 Soviet-crazy 1 -100110110 cogeneration/district 1 -100110110 ice-gathering 1 -100110110 four-games-to-one 1 -100110110 100mg 1 -100110110 14-month-long 1 -100110110 68-foot 1 -100110110 ingredient-oriented 1 -100110110 866-room 1 -100110110 space-travel-haunted-house-action 1 -100110110 anti-administration 1 -100110110 long-ineffective 1 -100110110 dart-board 1 -100110110 space-consuming 1 -100110110 symptomssciatic 1 -100110110 feet-lasted 1 -100110110 Pantheon-published 1 -100110110 591-page 1 -100110110 8-year-old 1 -100110110 PaineWebber-involved 1 -100110110 class-based 1 -100110110 TV-sales 1 -100110110 once-downtrodden 1 -100110110 romanticizing 1 -100110110 criminal-abortion 1 -100110110 limited-conflict 1 -100110110 northern-region 1 -100110110 keep-the-pipeline 1 -100110110 Polish-built 1 -100110110 10-lawyer 1 -100110110 half-mad 1 -100110110 dissolving-pulp 1 -100110110 security-obsessed 1 -100110110 cleaner-than-clean 1 -100110110 Third-World-can-do-no-wrong 1 -100110110 good-cop/bad-cop 1 -100110110 1,565 1 -100110110 rough-housing 1 -100110110 153-year-old 1 -100110110 pro-peace 1 -100110110 bi-hemispheric 1 -100110110 spaghetti-western 1 -100110110 nominee-account 1 -100110110 already-stumbling 1 -100110110 above-ceiling 1 -100110110 pre-junta 1 -100110110 cigarette-factory 1 -100110110 owner. 1 -100110110 co-executors 1 -100110110 bulk-container 1 -100110110 rags-to-ranches 1 -100110110 119-year 1 -100110110 once-laughed-at 1 -100110110 five-foot-eight 1 -100110110 300-picture 1 -100110110 heady-left 1 -100110110 since-deceased 1 -100110110 110-plane 1 -100110110 Frankfurt-Vienna 1 -100110110 peace-oriented 1 -100110110 hit-man 1 -100110110 egotisical 1 -100110110 1-meg 1 -100110110 913-person 1 -100110110 futures-pit 1 -100110110 MerCruiser 1 -100110110 multibilliondollar 1 -100110110 gee-gosh 1 -100110110 MDL-1 1 -100110110 64-outlet 1 -100110110 field-price 1 -100110110 kid-cluttered 1 -100110110 people-counting 1 -100110110 movie-fed 1 -100110110 over-populated 1 -100110110 self-commissioned 1 -100110110 self-transforming 1 -100110110 goat-drawn 1 -100110110 Sedco-Forex 1 -100110110 A-320-200 1 -100110110 play-on-words 1 -100110110 cream-of-the-crop 1 -100110110 client-oriented 1 -100110110 cybernetic 1 -100110110 Bronzavia-Air 1 -100110110 172-foot 1 -100110110 Pooh-like 1 -100110110 spike-heeled 1 -100110110 backgrounding 1 -100110110 Gene-Amp 1 -100110110 genetic-inheritance 1 -100110110 80-employee 1 -100110110 post-spill 1 -100110110 everpresent 1 -100110110 other-than-peacekeeping 1 -100110110 Toledo-area 1 -100110110 southbound 1 -100110110 woman-as-devil 1 -100110110 basketball-mad 1 -100110110 380-person 1 -100110110 swept-back 1 -100110110 fund-performance 1 -100110110 500,000th 1 -100110110 135th 1 -100110110 fall-harvest 1 -100110110 sixteenth 1 -100110110 roach-killing 1 -100110110 73-acre 1 -100110110 bardic 1 -100110110 now-public 1 -100110110 200th-birthday 1 -100110110 Jiminy 1 -100110110 hatchet-man 1 -100110110 Bernie-and-Earnie 1 -100110110 clean-sheet-of-paper 1 -100110110 whalelike 1 -100110110 361,700 1 -100110110 Lastac 1 -100110110 dobermans 1 -100110110 Tangiers 1 -100110110 defense-cooperation 1 -100110110 work-hardened 1 -100110110 oncebright 1 -100110110 involuted 1 -100110110 powderpuff 1 -100110110 20th-floor 1 -100110110 cancer-detection 1 -100110110 oratorial 1 -100110110 pre-1986 1 -100110110 cot-sized 1 -100110110 underdog-becomes-champion 1 -100110110 63-year 1 -100110110 Top-Shelf 1 -100110110 brassknuckle 1 -100110110 cat-nabbed 1 -100110110 Hourglass 1 -100110110 quasi-lame-duck 1 -100110110 wage-based 1 -100110110 education-accountability 1 -100110110 sugared-water 1 -100110110 365-mile-long 1 -100110110 PCAX2 1 -100110110 above-the-fray 1 -100110110 46-member 1 -100110110 amniotic 1 -100110110 Elizabethan-style 1 -100110110 69-person 1 -100110110 poignance 1 -100110110 deftful 1 -100110110 OSE 1 -100110110 2,000-company 1 -100110110 175-mile-range 1 -100110110 once-big 1 -100110110 post-Mengers 1 -100110110 Krugercraft 1 -100110110 Benzamycin 1 -100110110 cram-school 1 -100110110 graphological 1 -100110110 castle-like 1 -100110110 Petasol 1 -100110110 chunky-knit 1 -100110110 chokecherry 1 -100110110 not-very-virginal 1 -100110110 77-store 1 -100110110 planted-acreage 1 -100110110 handwoven 1 -100110110 assortments. 1 -100110110 1,731 1 -100110110 permed 1 -100110110 lone-hero 1 -100110110 Anscriptin 1 -100110110 184th-place 1 -100110110 wasp-waisted 1 -100110110 stand-up-and-be-counted 1 -100110110 blue-and-yellow 2 -100110110 weak-on-defense 2 -100110110 Featherlite 2 -100110110 drought-plagued 2 -100110110 eight-ship 2 -100110110 96-page 2 -100110110 15-week 2 -100110110 chess-playing 2 -100110110 phone-lines 2 -100110110 billion-year-old 2 -100110110 1,747,796 2 -100110110 apportions 2 -100110110 15,239 2 -100110110 then-controversial 2 -100110110 once-favorite 2 -100110110 grain-buying 2 -100110110 230-member 2 -100110110 dollar-linked 2 -100110110 frizzy 2 -100110110 counterinflationary 2 -100110110 Recombigen 2 -100110110 employer-services 2 -100110110 pollution-cleanup 2 -100110110 61-year 2 -100110110 no-new-tax 2 -100110110 16-mm 2 -100110110 uncelebrated 2 -100110110 1,800-member 2 -100110110 9800 2 -100110110 A12 2 -100110110 savings-plan 2 -100110110 30-office 2 -100110110 MMF 2 -100110110 CashStream 2 -100110110 uncommunicative 2 -100110110 nightmare-like 2 -100110110 Torsen 2 -100110110 company-contributed 2 -100110110 state-college 2 -100110110 900-line 2 -100110110 buckskin 2 -100110110 dextrous 2 -100110110 non-TV 2 -100110110 least-liked 2 -100110110 459-room 2 -100110110 scare-mongering 2 -100110110 32-county 2 -100110110 95-year 2 -100110110 military-minded 2 -100110110 never-fail 2 -100110110 70-odd 2 -100110110 Holt-McDermott 2 -100110110 7,500-member 2 -100110110 waste-in-government 2 -100110110 escutcheon 2 -100110110 despoiled 2 -100110110 weak-voting 2 -100110110 kingly 2 -100110110 emergency-management 2 -100110110 M-939 2 -100110110 little-girl 2 -100110110 138-year 2 -100110110 AIDS-stricken 2 -100110110 casualty-property 2 -100110110 Ticlopidine 2 -100110110 off-court 3 -100110110 secretary-of-state 3 -100110110 happy-go-lucky 3 -100110110 108,710 3 -100110110 80-year 3 -100110110 collectability 3 -100110110 bloodstreams 3 -100110110 search-warrant 3 -100110110 712,650 3 -100110110 I.O.U. 3 -100110110 oft-expressed 3 -100110110 rumps 4 -100110110 computer-buying 4 -100110110 Clairton 4 -100110110 top-floor 4 -100110110 sulky 4 -100110110 nonlisted 4 -100110110 militaries 5 -100110110 sternest 7 -100110110 livings 8 -100110110 oft-stated 11 -100110110 hard-earned 21 -100110110 own 19771 -100110110 entirety 44 -1001101110 peviously 1 -1001101110 commercial-currently 1 -1001101110 previoulsy 1 -1001101110 Behrmann 1 -1001101110 orignally 1 -1001101110 Ekspres 1 -1001101110 Detroiter 1 -1001101110 Radyo 1 -1001101110 C.A.U. 1 -1001101110 electro-Latino 1 -1001101110 Steigbigel 1 -1001101110 Benet 1 -1001101110 Mihajlo 1 -1001101110 previosuly 1 -1001101110 18,385 1 -1001101110 engine-level 1 -1001101110 Victorica 1 -1001101110 Prevoyance 1 -1001101110 Dahmane 1 -1001101110 thunderously 1 -1001101110 Yehoshafat 1 -1001101110 1,517 1 -1001101110 Short-Sighted 1 -1001101110 tail-gunner 1 -1001101110 attendent 1 -1001101110 Stratocruisers 1 -1001101110 non-lesser 1 -1001101110 storm-driven 1 -1001101110 groundings 1 -1001101110 lodgepoles 2 -1001101110 previouly 2 -1001101110 previously 11230 -1001101110 incorrectly 362 -1001101111 agri-chemical 1 -1001101111 crop-genetics 1 -1001101111 floor-wax 1 -1001101111 four-division 1 -1001101111 seventh-ranking 1 -1001101111 outdoor-wear 1 -1001101111 optical-scanning-equipment 1 -1001101111 tax-preparer 1 -1001101111 computer-automation 1 -1001101111 bookbinding 1 -1001101111 telecommmunications 1 -1001101111 30-employee 1 -1001101111 construction-development 1 -1001101111 healthproducts 1 -1001101111 118-year-old 1 -1001101111 sewing-pattern 1 -1001101111 cashstrapped 1 -1001101111 savings-andloan 1 -1001101111 CIA-operated 1 -1001101111 Hutton-recommended 1 -1001101111 dual-business 1 -1001101111 project-driven 1 -1001101111 three-product 1 -1001101111 pharmaceutical-based 1 -1001101111 paper-wide 1 -1001101111 transportation-manufacturing 1 -1001101111 Icahn-controlled 1 -1001101111 transaction-systems 1 -1001101111 doctor-owned 1 -1001101111 flavors-and-scents 1 -1001101111 BNP-AK 1 -1001101111 micrographic-services 1 -1001101111 company-backed 1 -1001101111 oil-field-service 1 -1001101111 broadcasting-only 1 -1001101111 Shreveport-based 1 -1001101111 traget 1 -1001101111 real-estate-information 1 -1001101111 concentrate-completing 1 -1001101111 medical-billing 1 -1001101111 land-shark 1 -1001101111 brothers-controlled 1 -1001101111 cable-services 1 -1001101111 transporatation 1 -1001101111 TV-retailing 1 -1001101111 laundry-appliance 1 -1001101111 tardiest 1 -1001101111 children's-clothing 1 -1001101111 delivery-services 1 -1001101111 prestige-brand 1 -1001101111 Spectrum-led 1 -1001101111 mineral-mining 1 -1001101111 bird-seed 1 -1001101111 Corona-import 1 -1001101111 company-by-private 1 -1001101111 studio/production 1 -1001101111 insurance-sales 1 -1001101111 specialty-stores 1 -1001101111 Coke-financed 1 -1001101111 newspaper-operating 1 -1001101111 small-to-mid-sized 1 -1001101111 Curacao-registered 1 -1001101111 Hunt-family 1 -1001101111 bath-equipment 1 -1001101111 magazine-publishing 1 -1001101111 billiard-table 1 -1001101111 Toulouse-based 1 -1001101111 bottler-run 1 -1001101111 management-owned 1 -1001101111 households-goods 1 -1001101111 telecommunications-holding 1 -1001101111 year-earlier. 1 -1001101111 Japansese 1 -1001101111 bakery-goods 1 -1001101111 solvent-refining 1 -1001101111 carbonated-drink 1 -1001101111 Fry-Merrill 1 -1001101111 catalog-supply 1 -1001101111 residence-in-exile 1 -1001101111 Orem-based 1 -1001101111 bus-contracting 1 -1001101111 equipment-rental 1 -1001101111 Kansai-based 1 -1001101111 chemical-handling 1 -1001101111 reindeers 1 -1001101111 television-and-media 1 -1001101111 sugar-holding 1 -1001101111 Wellington-based 1 -1001101111 mushroom-producing 1 -1001101111 health-management 1 -1001101111 gas-delivery 1 -1001101111 Columbia-Tri-Star 1 -1001101111 luxury-product 1 -1001101111 consumer-membership-services 1 -1001101111 publishing-research 1 -1001101111 auto-leasing 1 -1001101111 total-control 1 -1001101111 once-sprawling 1 -1001101111 436,162 1 -1001101111 then-employee-owned 1 -1001101111 cost-driven 1 -1001101111 predivestiture 1 -1001101111 machine-making 1 -1001101111 Wars'-related 1 -1001101111 worker-run 1 -1001101111 milk-products 1 -1001101111 precision-stamping 1 -1001101111 Khashoggi-related 1 -1001101111 convertible-investment 1 -1001101111 home-canning 1 -1001101111 name-plating 1 -1001101111 slowestgrowing 1 -1001101111 rice-marketing 1 -1001101111 higher-growth-rate 1 -1001101111 corn-pone 1 -1001101111 Weber-controlled 1 -1001101111 nuclear-fuel-processing 1 -1001101111 Swiss-backed 1 -1001101111 regulationstied 1 -1001101111 paperboard-products 1 -1001101111 Imperial-Holly 1 -1001101111 Negras 1 -1001101111 pen-patent 1 -1001101111 Western-owned 1 -1001101111 financial-holding 1 -1001101111 river-rafting 1 -1001101111 30-person 1 -1001101111 rollingstock 1 -1001101111 offshore-service 1 -1001101111 one-drug 1 -1001101111 stuffed-toy 1 -1001101111 1,000-worker 1 -1001101111 kitchen-installation 1 -1001101111 suntan-booth 1 -1001101111 cellular-phone-system 1 -1001101111 now-saltless 1 -1001101111 hydrocarbon-storage 1 -1001101111 French-run 1 -1001101111 most-shopped 1 -1001101111 land-investment 1 -1001101111 picture-framing 1 -1001101111 not-yet-formed 1 -1001101111 sales-representative 1 -1001101111 zinc-processing 1 -1001101111 travel-management 1 -1001101111 land-resources 1 -1001101111 mutual-life-insurance 1 -1001101111 Delaware-registered 1 -1001101111 now-smaller 1 -1001101111 plastic-molding 1 -1001101111 telecommunication-service 1 -1001101111 homeopathic-drug 1 -1001101111 screw-machine 1 -1001101111 containerized-shipping 1 -1001101111 stock-exchange-listed 1 -1001101111 computer-networking-systems 1 -1001101111 takeover-prone 1 -1001101111 metals-refining 1 -1001101111 familyrun 1 -1001101111 computer-room-equipment 1 -1001101111 rock-management 1 -1001101111 biotechnlogy 1 -1001101111 preciousmetals 1 -1001101111 Shannon-based 1 -1001101111 environmental-management 1 -1001101111 specialtychemicals 1 -1001101111 70-employee 1 -1001101111 Jackson-based 1 -1001101111 once-private 1 -1001101111 lower-tech 1 -1001101111 one-restaurant 1 -1001101111 royalty-collecting 1 -1001101111 financial-publications 1 -1001101111 herbal-medicine 1 -1001101111 telecommuniations 1 -1001101111 personality-test 1 -1001101111 civil-service-like 1 -1001101111 marketing-type 1 -1001101111 musical-production 1 -1001101111 disk-technology 1 -1001101111 parcel-delivery 1 -1001101111 personnel-testing 1 -1001101111 correctional-services 1 -1001101111 730-employee 1 -1001101111 travel-book 1 -1001101111 restraurant 1 -1001101111 37,800-employee 1 -1001101111 financial-marketing 1 -1001101111 television-receiver 1 -1001101111 computer-using 1 -1001101111 return-on-assets-driven 1 -1001101111 Spainish 1 -1001101111 Pittsburghbased 1 -1001101111 cotton-picking 1 -1001101111 nonlitigious 1 -1001101111 real-estate-investment 2 -1001101111 foreign-capital 2 -1001101111 food-supply 2 -1001101111 cocoa-processing 2 -1001101111 information-age 2 -1001101111 mining-finance 2 -1001101111 final-quarter 2 -1001101111 post-LBO 2 -1001101111 hunting-equipment 2 -1001101111 Trupin-related 2 -1001101111 industrial-management 2 -1001101111 cult-like 2 -1001101111 railroad-holding 2 -1001101111 radio-broadcasting 2 -1001101111 parcel-post 2 -1001101111 steel-trading 2 -1001101111 titanium-production 2 -1001101111 financial-publication 2 -1001101111 software-systems 2 -1001101111 adult-beverage 2 -1001101111 governmentowned 2 -1001101111 photo-equipment 2 -1001101111 graphics-products 2 -1001101111 non-sister 2 -1001101111 Anglo-Italian 2 -1001101111 sanction-list 2 -1001101111 Reichmann-controlled 3 -1001101111 hotel-development 3 -1001101111 technology-services 3 -1001101111 natural-gas-distribution 3 -1001101111 data-processing-services 4 -1001101111 research-driven 4 -1001101111 industrial-holding 5 -1001101111 worker-owned 7 -1001101111 amalgamated 7 -1001101111 one-product 9 -1001101111 bankholding 9 -1001101111 insurance-holding 11 -1001101111 airline-holding 12 -1001101111 thrift-holding 13 -1001101111 utility-holding 13 -1001101111 development-stage 14 -1001101111 Posner-controlled 15 -1001101111 recapitalized 92 -1001101111 bank-holding 132 -1001101111 surviving 462 -1001101111 holding 10237 -10011100000 medical-education 1 -10011100000 joint-financing 1 -10011100000 first-base 1 -10011100000 SAISON 1 -10011100000 Euro-convertible 1 -10011100000 pointdrop 1 -10011100000 oversize-load 1 -10011100000 fire-support 1 -10011100000 divestituture 1 -10011100000 fruit-and-cookie 1 -10011100000 Cordobesa 1 -10011100000 anti-pope 1 -10011100000 mony 1 -10011100000 domestic-oil 1 -10011100000 sourcebook 1 -10011100000 brunette-bombshell 1 -10011100000 Antinous 1 -10011100000 anti-landlord 1 -10011100000 nasality 1 -10011100000 nia 1 -10011100000 symphonic/operatic 1 -10011100000 carnivores 1 -10011100000 short-grain 1 -10011100000 bow-killed 1 -10011100000 jeweller 1 -10011100000 pro-pot 1 -10011100000 television-film 1 -10011100000 Sasa 1 -10011100000 weapon. 1 -10011100000 coffee-producer 1 -10011100000 Materielverk 1 -10011100000 scrap-iron 1 -10011100000 month-from-prior-month 1 -10011100000 income-averaging 1 -10011100000 income-producers 1 -10011100000 Holmesiana 1 -10011100000 7032 1 -10011100000 calorimeter 1 -10011100000 liberal-studies 1 -10011100000 watchmakers 1 -10011100000 Philippine-Japanese 1 -10011100000 albatrosses 1 -10011100000 fixed-disk 1 -10011100000 senza 1 -10011100000 possessory 1 -10011100000 theircompany 1 -10011100000 franchisee-investor 1 -10011100000 USAF 1 -10011100000 volume-wine 1 -10011100000 embarassments 1 -10011100000 youth-fitness 1 -10011100000 family-led 1 -10011100000 non-sterling 1 -10011100000 cleanup-cost 1 -10011100000 capital-city 1 -10011100000 pilot-seniority 1 -10011100000 shell-jewelry 1 -10011100000 mutual-fund-industry 1 -10011100000 scoopers 1 -10011100000 Suez-led 1 -10011100000 corn-seed 1 -10011100000 goat-milk 1 -10011100000 Video. 1 -10011100000 jug-wine 1 -10011100000 half-breathing 1 -10011100000 cartonero 2 -10011100000 50-yard-line 2 -10011100000 cash-withdrawal 2 -10011100000 two-third 2 -10011100000 13-ounce 2 -10011100000 16-11 2 -10011100000 7010 2 -10011100000 yule 2 -10011100000 seafarer 2 -10011100000 mortgage-service 2 -10011100000 two-session 2 -10011100000 felony-conspiracy 2 -10011100000 IBM-designed 2 -10011100000 Christmas-card 2 -10011100000 employee-initiated 2 -10011100000 pepenador 2 -10011100000 72-23 2 -10011100000 rerun-sales 2 -10011100000 pre-delivery 2 -10011100000 choirmaster 2 -10011100000 hit-making 2 -10011100000 breaststroke 2 -10011100000 Krokodil 2 -10011100000 landlubber 2 -10011100000 caddie 2 -10011100000 ziggurat 2 -10011100000 bleeder 2 -10011100000 moon-shot 2 -10011100000 230-page 2 -10011100000 post-spinoff 3 -10011100000 86-14 3 -10011100000 robin 3 -10011100000 boozer 3 -10011100000 27-inch 3 -10011100000 sports-page 3 -10011100000 moss-covered 3 -10011100000 Biker 3 -10011100000 model-year-end 3 -10011100000 celeb 3 -10011100000 gold-investment 3 -10011100000 still-functioning 3 -10011100000 Sansei 3 -10011100000 market-capitalization 3 -10011100000 formalist 4 -10011100000 chlorzoxazone 4 -10011100000 gray-blue 4 -10011100000 toga 4 -10011100000 12-3 4 -10011100000 13G 4 -10011100000 unit-holder 4 -10011100000 glassmakers 4 -10011100000 field-goal 5 -10011100000 fortnightly 5 -10011100000 shareowner 5 -10011100000 tutorial 5 -10011100000 Tinseltown 5 -10011100000 paramedic 6 -10011100000 high-wire 6 -10011100000 prompter 6 -10011100000 federal-government 6 -10011100000 minibus 6 -10011100000 nuclear-industry 6 -10011100000 concierge 6 -10011100000 lap-shoulder 7 -10011100000 unitholder 7 -10011100000 locality 8 -10011100000 U.S.-dollar 8 -10011100000 cipher 9 -10011100000 rump 10 -10011100000 warm-up 11 -10011100000 cadaver 11 -10011100000 stagecoach 12 -10011100000 co-marketing 13 -10011100000 imponderable 14 -10011100000 cardholder 15 -10011100000 visitation 16 -10011100000 catalogue 20 -10011100000 nonsmoker 20 -10011100000 LOT 21 -10011100000 stud 28 -10011100000 snail 28 -10011100000 pupil 32 -10011100000 share-purchase 33 -10011100000 battleship 33 -10011100000 whirlwind 35 -10011100000 clown 40 -10011100000 machinist 45 -10011100000 biweekly 46 -10011100000 policyholder 51 -10011100000 constituent 63 -10011100000 memorial 68 -10011100000 bondholder 78 -10011100000 goat 81 -10011100000 referral 95 -10011100000 depositor 99 -10011100000 stock-purchase 103 -10011100000 placebo 121 -10011100000 retiree 122 -10011100000 blanket 153 -10011100000 franchisee 174 -10011100000 donor 197 -10011100000 tenant 201 -10011100000 subscriber 229 -10011100000 voter 245 -10011100000 stockholder 373 -10011100000 pro 453 -10011100000 user 487 -10011100000 taxpayer 535 -10011100000 master 906 -10011100000 pilot 1081 -10011100000 holder 1404 -10011100000 student 1792 -10011100000 rival 2010 -10011100000 shareholder 4866 -10011100000 customer 2826 -10011100001 138-day 1 -10011100001 225-day 1 -10011100001 134-day 1 -10011100001 161-day 1 -10011100001 supercounterintelligence 1 -10011100001 felicities 1 -10011100001 1.3-month 1 -10011100001 27-judge 1 -10011100001 54-day 1 -10011100001 Jive/RCA 1 -10011100001 7.1-month 1 -10011100001 crop-curbing 1 -10011100001 Cran-Blueberry 1 -10011100001 federal/industry 1 -10011100001 508-point-plunge 1 -10011100001 scientism 1 -10011100001 handsomeness 1 -10011100001 low-prestige 1 -10011100001 crowd. 1 -10011100001 once-tight 1 -10011100001 pushovers 1 -10011100001 five-and-a-half-hour 1 -10011100001 widemouthed 1 -10011100001 arduousness 1 -10011100001 63-member 1 -10011100001 combatant-theater 1 -10011100001 cross-court 1 -10011100001 Kerouac-style 1 -10011100001 Hire-A-Kid 1 -10011100001 jackpot-control 1 -10011100001 Amtrack 1 -10011100001 146-day 1 -10011100001 scientific-miracles 1 -10011100001 59-day 1 -10011100001 fistsize 1 -10011100001 waker-upper 1 -10011100001 IABP-like 1 -10011100001 subversiveness 1 -10011100001 inexorability 1 -10011100001 materials-research 1 -10011100001 micro-environment 1 -10011100001 Custerlike 1 -10011100001 puniness 1 -10011100001 hun 1 -10011100001 hora 1 -10011100001 models. 1 -10011100001 microtones 1 -10011100001 74-day 1 -10011100001 legislative-like 1 -10011100001 lactic-acid 1 -10011100001 vestry 1 -10011100001 raiments 1 -10011100001 farm-outlook 1 -10011100001 five-paragraph 1 -10011100001 disply 1 -10011100001 methanol-fuel 1 -10011100001 snd 1 -10011100001 note-referring 1 -10011100001 preparaton 1 -10011100001 oilcan 1 -10011100001 raiment 1 -10011100001 105-day 1 -10011100001 power-demand 1 -10011100001 60.6-day 1 -10011100001 four-and-a-half-hour 1 -10011100001 twin-spired 1 -10011100001 minimum-pricing 1 -10011100001 congressional-committee 1 -10011100001 nocturne 1 -10011100001 episcopal 1 -10011100001 shop-steward 1 -10011100001 142-day 1 -10011100001 theme-trading 1 -10011100001 import-damage 1 -10011100001 117-day 1 -10011100001 suggestiveness 1 -10011100001 22-day 1 -10011100001 doctor-ordered 1 -10011100001 universities. 1 -10011100001 5.4-month 1 -10011100001 blaster 1 -10011100001 speed-filled 1 -10011100001 137-day 1 -10011100001 population-decline 1 -10011100001 aloneness 1 -10011100001 review-board 1 -10011100001 tabbies 1 -10011100001 non-cabinet 1 -10011100001 175-day 1 -10011100001 92-day 1 -10011100001 Celtic-sounding 1 -10011100001 plts 1 -10011100001 131-days 1 -10011100001 92-days 1 -10011100001 love-on-the-road-to-who-knows-where 1 -10011100001 grill-toasted 1 -10011100001 6.6-month 1 -10011100001 pre-show 1 -10011100001 authentic-instrument 1 -10011100001 counter-news 1 -10011100001 salt-labeling 1 -10011100001 KCNA 1 -10011100001 32,251 1 -10011100001 trust-department 1 -10011100001 preppie/bad 1 -10011100001 single-candidate 1 -10011100001 coins. 1 -10011100001 video-tape 1 -10011100001 chilliness 1 -10011100001 epigraphs 1 -10011100001 mixed-discipline 1 -10011100001 Sigunna 1 -10011100001 temporary-lawyer 1 -10011100001 civil-resistance 1 -10011100001 strokelike 1 -10011100001 television-reference 1 -10011100001 digital-editing 1 -10011100001 riverine 1 -10011100001 hypoxic 1 -10011100001 new-future-world 1 -10011100001 gold-eagle 1 -10011100001 273-day 1 -10011100001 youth-services 1 -10011100001 parentheticals 1 -10011100001 165-day 1 -10011100001 U.S.-Russian 1 -10011100001 margin-rules 1 -10011100001 free-vote 1 -10011100001 auto-shop 1 -10011100001 superpower-sponsored 1 -10011100001 share-value 1 -10011100001 126-day 1 -10011100001 167-day 1 -10011100001 sharkskin-covered 1 -10011100001 7,000-person 1 -10011100001 bi-regional 1 -10011100001 intra-office 1 -10011100001 Karntnerthor 1 -10011100001 caramel-dipped 1 -10011100001 roper 1 -10011100001 Oja 1 -10011100001 Harvard-Genentech 1 -10011100001 washcloth 1 -10011100001 blue-cheese 1 -10011100001 experimentalist 1 -10011100001 Xeph 1 -10011100001 43rd-floor 1 -10011100001 Bournemouth 1 -10011100001 protrusion 1 -10011100001 actuarial-science 1 -10011100001 manufactured-export 1 -10011100001 dirt-bike 1 -10011100001 circular-file 1 -10011100001 banker. 1 -10011100001 half-hourly 1 -10011100001 precipices 1 -10011100001 pre-exhibition 1 -10011100001 dogooder 1 -10011100001 branchline 1 -10011100001 pseudo-Tudor 1 -10011100001 career-counseling 1 -10011100001 goony 1 -10011100001 3.7-month 1 -10011100001 filet-mignon 1 -10011100001 anti-vending 1 -10011100001 educational-computing 1 -10011100001 tartan-patterned 1 -10011100001 sodium-rich 1 -10011100001 irised 1 -10011100001 health-summary 1 -10011100001 boutique-like 1 -10011100001 one-acter 1 -10011100001 surprise-filled 1 -10011100001 director-related 1 -10011100001 well-photographed 1 -10011100001 68-day 1 -10011100001 bank-security 1 -10011100001 lecture-like 1 -10011100001 treaty-amending 1 -10011100001 presidential-gubernatorial 1 -10011100001 Tevye. 1 -10011100001 kangaroo-committee 1 -10011100001 pseudo-world 1 -10011100001 56-day 2 -10011100001 audiocassette 2 -10011100001 consensus-seeking 2 -10011100001 seasonals 2 -10011100001 port-side 2 -10011100001 horseracing 2 -10011100001 Pecora 2 -10011100001 marquise 2 -10011100001 48-day 2 -10011100001 private-detective 2 -10011100001 79-day 2 -10011100001 51-day 2 -10011100001 mind-expanding 2 -10011100001 fiestas 2 -10011100001 55-mile-an-hour 2 -10011100001 environmental-awareness 2 -10011100001 72-day 2 -10011100001 110-day 2 -10011100001 twaddle 2 -10011100001 SSSP 2 -10011100001 contract-cost 2 -10011100001 hospital-inspection 2 -10011100001 19-minute 2 -10011100001 Army-McCarthy 2 -10011100001 IISS 2 -10011100001 280-seat 2 -10011100001 6.9-month 2 -10011100001 GRQ 2 -10011100001 anti-gang 2 -10011100001 subtexts 2 -10011100001 anti-imperialist 2 -10011100001 quarter-pound 2 -10011100001 94-day 2 -10011100001 presentencing 2 -10011100001 nightshirt 2 -10011100001 6.5-month 2 -10011100001 advisory-committee 2 -10011100001 conceptualizer 2 -10011100001 102-day 2 -10011100001 super-regulatory 2 -10011100001 131-day 2 -10011100001 cattle-breeding 3 -10011100001 Falb 3 -10011100001 55-miles-per-hour 3 -10011100001 glass-topped 3 -10011100001 Maquiladora 3 -10011100001 UCSD 3 -10011100001 bank-rating 3 -10011100001 6.4-month 3 -10011100001 6.7-month 3 -10011100001 note-taker 3 -10011100001 5.9-month 3 -10011100001 6.3-month 3 -10011100001 doom-and-gloom 3 -10011100001 Francophile 3 -10011100001 43-day 3 -10011100001 47-day 3 -10011100001 6.8-month 3 -10011100001 news-service 3 -10011100001 coefficient 3 -10011100001 crag 3 -10011100001 Beetles 3 -10011100001 97-day 3 -10011100001 66-day 3 -10011100001 military-technology 3 -10011100001 superstate 3 -10011100001 62-day 3 -10011100001 pro-drilling 3 -10011100001 64-day 3 -10011100001 flat-screen 3 -10011100001 reaper 3 -10011100001 3,000-page 4 -10011100001 ULI 4 -10011100001 Nyheter 4 -10011100001 riddance 4 -10011100001 credit-reporting 4 -10011100001 SuperX 4 -10011100001 sublimation 4 -10011100001 78-day 4 -10011100001 news-agency 4 -10011100001 76-day 4 -10011100001 Wehrkunde 4 -10011100001 63-day 5 -10011100001 SALP 5 -10011100001 99-day 5 -10011100001 pro-football 6 -10011100001 business-news 6 -10011100001 temporary-personnel 6 -10011100001 44-day 6 -10011100001 near-miss 7 -10011100001 state-created 7 -10011100001 95-day 8 -10011100001 41-day 9 -10011100001 fides 10 -10011100001 near-collision 15 -10011100001 Senate-House 16 -10011100001 reconfirmation 16 -10011100001 wire-service 22 -10011100001 fide 89 -10011100001 House-Senate 282 -10011100001 news 9958 -10011100001 confirmation 706 -10011100010 black-to-white 1 -10011100010 governmentgranted 1 -10011100010 dividend-producing 1 -10011100010 brut 1 -10011100010 garbage-limitation 1 -10011100010 anti-tampering 1 -10011100010 artier 1 -10011100010 federal-contract 1 -10011100010 now-still 1 -10011100010 Hillhead 1 -10011100010 Macoutes-made 1 -10011100010 rust-belt 1 -10011100010 Dukakis-backed 1 -10011100010 Globaliztion 1 -10011100010 run-from-above 1 -10011100010 Mining-made 1 -10011100010 water-user 1 -10011100010 light-refracting 1 -10011100010 farm-bred 1 -10011100010 Yankees-Brooklyn 1 -10011100010 four-million-member 1 -10011100010 central-district 1 -10011100010 then-rampant 1 -10011100010 barbiturate 1 -10011100010 reciprocates 2 -10011100010 Flashman 2 -10011100010 woodmen 2 -10011100010 Kiplinger 2 -10011100010 total-immersion 2 -10011100010 out-of-plan 2 -10011100010 vocational-school 2 -10011100010 three-toed 2 -10011100010 ILO 2 -10011100010 test-kit 2 -10011100010 KMT-run 2 -10011100010 Democratic-held 2 -10011100010 GrammRudman 2 -10011100010 non-means-tested 2 -10011100010 unpunctuated 2 -10011100010 Firstbancorp. 2 -10011100010 heath 3 -10011100010 best-sellerdom 3 -10011100010 Zairean 3 -10011100010 dynamiting 3 -10011100010 calligraphy 3 -10011100010 Ukranian 3 -10011100010 Deblois 3 -10011100010 NMU 4 -10011100010 parson 4 -10011100010 niggling 4 -10011100010 employee-led 4 -10011100010 miscreant 4 -10011100010 inexpert 4 -10011100010 physician-owned 8 -10011100010 FICA 8 -10011100010 Knicks 12 -10011100010 Nottingham 12 -10011100010 Journal-Constitution 13 -10011100010 racquets 19 -10011100010 EDA 20 -10011100010 Sundance 52 -10011100010 lemon 60 -10011100010 Yankees 102 -10011100010 Mets 103 -10011100010 riot 228 -10011100010 state 20666 -10011100010 county 681 -10011100011 mahogany-paneled 1 -10011100011 ground-systems 1 -10011100011 Arab-Jewish 1 -10011100011 chemical-biological 1 -10011100011 taxpayer-IRS 1 -10011100011 one-store 1 -10011100011 physician-led 1 -10011100011 buyer-supplier 1 -10011100011 Austrian-U.S. 1 -10011100011 final-year 1 -10011100011 moving-industry 1 -10011100011 blacked-out 1 -10011100011 Moslem-world 1 -10011100011 deficit-inspired 1 -10011100011 mosque-state 1 -10011100011 57-foot 1 -10011100011 crackly 1 -10011100011 intra-personnel 1 -10011100011 product-supply 1 -10011100011 desensitizing 1 -10011100011 five-year-long 1 -10011100011 biomedical-research 1 -10011100011 intercarrier 1 -10011100011 buffoonish 1 -10011100011 Russian-Polish 1 -10011100011 inter-firm 1 -10011100011 dfensive 1 -10011100011 200-person 1 -10011100011 near-wartime 1 -10011100011 Chinese-Soviet 1 -10011100011 golden-boy 1 -10011100011 Iraqi-U.S. 1 -10011100011 bloodpressure 1 -10011100011 once-conservative 1 -10011100011 shoddy-product 1 -10011100011 company-provided 1 -10011100011 Bloomberg-type 1 -10011100011 35,000-member 1 -10011100011 840-acre 1 -10011100011 commercialpaper 1 -10011100011 much-sullied 1 -10011100011 maternity-related 1 -10011100011 ugly-German 1 -10011100011 private-entrepreneurial 1 -10011100011 semirealistic 1 -10011100011 11-seat 1 -10011100011 cross-generational 1 -10011100011 Cooper-Beethoven 1 -10011100011 wrestling/sweat 1 -10011100011 academic/research 1 -10011100011 insider-trading-scandal 1 -10011100011 Indian-U.S. 1 -10011100011 air-support 1 -10011100011 high-IQ 1 -10011100011 Minnesota-Duluth 1 -10011100011 arms-test 1 -10011100011 207-year-old 1 -10011100011 Springsteen/Mellencamp 1 -10011100011 463-page 1 -10011100011 career-threatening 1 -10011100011 B-school 1 -10011100011 competition-battered 1 -10011100011 207-bed 1 -10011100011 Stallone/Schwarzenegger 1 -10011100011 sagelike 1 -10011100011 cookies-and-crackers 1 -10011100011 fire-code 1 -10011100011 hardshell 1 -10011100011 tricontinental 1 -10011100011 once-poisonous 1 -10011100011 foreign-hand 1 -10011100011 insider-tradings 1 -10011100011 just-begun 1 -10011100011 Neutrality-Act 1 -10011100011 small-talk 1 -10011100011 central-France 1 -10011100011 U.S.-Arab 1 -10011100011 police-minority 1 -10011100011 Arab-African 1 -10011100011 merchant-customer 1 -10011100011 folk-music 1 -10011100011 railroad-to-barge 1 -10011100011 trademark-application 1 -10011100011 four-corners 1 -10011100011 technical-staff 1 -10011100011 fumblitis 1 -10011100011 jute-milling 1 -10011100011 Sino-Iranian 1 -10011100011 French-Zairean 1 -10011100011 Walters-Bloom 1 -10011100011 Out-of-Bounds 1 -10011100011 nuclear-biological-chemical 1 -10011100011 Salmeron 1 -10011100011 telecommunications-project 1 -10011100011 local-plant 1 -10011100011 prdominant 1 -10011100011 Anglo-Chinese 1 -10011100011 math-teaching 1 -10011100011 Boesky-Drexel 1 -10011100011 Ligurian 1 -10011100011 tax-of-the-month 1 -10011100011 pass-run 1 -10011100011 poster-clad 1 -10011100011 them-and-us 1 -10011100011 microcomputer-to-mainframe 1 -10011100011 Korean-Soviet 1 -10011100011 115-pence 1 -10011100011 genealogists 1 -10011100011 machine-industry 1 -10011100011 silver-mine 1 -10011100011 casual/chic 1 -10011100011 voting-trust 1 -10011100011 starlit 1 -10011100011 six-to-ten-week 1 -10011100011 Shijo 1 -10011100011 crusading-prosecutor 1 -10011100011 price-dictated 1 -10011100011 gusty 1 -10011100011 boys-will-be-boys 1 -10011100011 49-patient 1 -10011100011 90-cents 1 -10011100011 nonownership 1 -10011100011 soon-to-boom 1 -10011100011 Polish-Czech 1 -10011100011 gum-popping 1 -10011100011 Ibadhi 1 -10011100011 24,000-foot 1 -10011100011 allembracing 1 -10011100011 sometimes-bizarre 1 -10011100011 Japanese-Panamanian 1 -10011100011 3,800-acre 1 -10011100011 Belgian-style 1 -10011100011 Jeeplike 1 -10011100011 Giuliani-era 1 -10011100011 Iraqi-American 1 -10011100011 network-writer 1 -10011100011 command-and-control-system 1 -10011100011 Seoul-supported 1 -10011100011 Dessalines 1 -10011100011 flag-festooned 1 -10011100011 European-U.S. 1 -10011100011 ever-soaring 1 -10011100011 they-ought-to-be-grateful 1 -10011100011 defence 1 -10011100011 aerostat 1 -10011100011 crown-prince 1 -10011100011 EastWest 1 -10011100011 north-coast 1 -10011100011 49-page 1 -10011100011 731,000-ton 1 -10011100011 fashion-tinged 1 -10011100011 dead-ahead 1 -10011100011 vestigal 1 -10011100011 electric-transmission 1 -10011100011 four-decade-old 1 -10011100011 public-stock 1 -10011100011 17,366 1 -10011100011 Health-sponsored 1 -10011100011 closed-end-fund 1 -10011100011 bordertruce 1 -10011100011 noncompany 1 -10011100011 industry-bashing 1 -10011100011 corporate-employee 1 -10011100011 stockexchange 1 -10011100011 telephone-wristwatch 1 -10011100011 eye-rolling 1 -10011100011 amateur-hockey 1 -10011100011 four-dollar 1 -10011100011 40/41 1 -10011100011 MedaSonics 1 -10011100011 defeatest 1 -10011100011 attorneys-fee 1 -10011100011 ship-classification 1 -10011100011 50-horsepower 1 -10011100011 more-normal 1 -10011100011 normal-length 1 -10011100011 police-community 1 -10011100011 techno-managerial 1 -10011100011 movie-themed 1 -10011100011 low-threshold 1 -10011100011 irresolvable 1 -10011100011 IRS-HHS 1 -10011100011 scarf-style 1 -10011100011 ponderosa 1 -10011100011 154-year-old 1 -10011100011 U.S.-Czech 1 -10011100011 clerk-turned-politician 1 -10011100011 145-pence-a-share 1 -10011100011 longstrained 1 -10011100011 new-technologies 1 -10011100011 1,379-mile 1 -10011100011 Greco-Turkish 1 -10011100011 pre-causus 1 -10011100011 grass-ro 1 -10011100011 grain-traders 1 -10011100011 less-strident 1 -10011100011 electronic-typing 1 -10011100011 less-than-rigorous 2 -10011100011 ceremonious 2 -10011100011 non-debtor 2 -10011100011 U.S.-Chinese 2 -10011100011 1962-63 2 -10011100011 well-cultivated 2 -10011100011 manatee 2 -10011100011 Lijiaping 2 -10011100011 zai-tech 2 -10011100011 tabular 2 -10011100011 dairy-price 2 -10011100011 cash-payment 2 -10011100011 telegraphic 2 -10011100011 premium-brand 2 -10011100011 U.S.-Brazilian 2 -10011100011 700-pound 2 -10011100011 work-oriented 2 -10011100011 ECU-bill 2 -10011100011 Meese-Wallach 2 -10011100011 home-owning 2 -10011100011 Junrong 2 -10011100011 problem-oriented 2 -10011100011 graphoanalysis 2 -10011100011 2,515 2 -10011100011 Indo-American 2 -10011100011 physician-patient 2 -10011100011 Soviet-Japanese 3 -10011100011 U.S.-Iraq 3 -10011100011 goodie 3 -10011100011 puffed-up 3 -10011100011 retrogressive 3 -10011100011 global-marketing 3 -10011100011 Spandex 3 -10011100011 U.S.D.A. 3 -10011100011 milk-price 3 -10011100011 Fenian 3 -10011100011 sexual-morality 3 -10011100011 drug-taking 4 -10011100011 peekaboo 4 -10011100011 schoolyards 4 -10011100011 Palgrave 4 -10011100011 cozier 4 -10011100011 convertible-debt 4 -10011100011 U.S.-Philippine 4 -10011100011 shipwreck 5 -10011100011 prophylactic 5 -10011100011 Gujarati 5 -10011100011 Teheran 5 -10011100011 dosing 5 -10011100011 Hippocratic 5 -10011100011 Cantonese 6 -10011100011 U.S.-German 6 -10011100011 rate-cut 6 -10011100011 U.S.-Pakistan 6 -10011100011 upriver 7 -10011100011 wholehearted 7 -10011100011 Chautauqua 7 -10011100011 back-and-forth 8 -10011100011 lock-step 8 -10011100011 squeaky-clean 8 -10011100011 yellow-rain 9 -10011100011 reflexive 10 -10011100011 online 10 -10011100011 barroom 13 -10011100011 cuff 15 -10011100011 cameo 19 -10011100011 watchful 27 -10011100011 public 17347 -10011100011 purchasing-power 34 -10011100100 46-man 1 -10011100100 dividend-tax 1 -10011100100 Itaparica 1 -10011100100 often-tedious 1 -10011100100 booby-trap 1 -10011100100 material-flammability 1 -10011100100 specialprosecutor 1 -10011100100 trade-embargo 1 -10011100100 spending-recision 1 -10011100100 truck-option 1 -10011100100 sugar-refund 1 -10011100100 86-acre 1 -10011100100 429-acre 1 -10011100100 commerce-clause 1 -10011100100 food-subsidy 1 -10011100100 naval-air 1 -10011100100 deficitcutting 1 -10011100100 citizen-lawsuit 1 -10011100100 civil-racketeer 1 -10011100100 establishment-of-religion 1 -10011100100 free-exercise-of-religion 1 -10011100100 fleet-replacement 1 -10011100100 socialist-inspired 1 -10011100100 mandatory-notice 1 -10011100100 back-fit 1 -10011100100 crime-victims 1 -10011100100 legislature-imposed 1 -10011100100 41-section 1 -10011100100 flat-world 1 -10011100100 no-war 1 -10011100100 26.5-mpg 1 -10011100100 23,637 1 -10011100100 contractor-fee 1 -10011100100 prior-hospitalization 1 -10011100100 collateral-source 1 -10011100100 profit-recapture 1 -10011100100 two-battery 1 -10011100100 written-contract 1 -10011100100 market-capitalization-weighted 1 -10011100100 Indianapolis-Milwaukee 1 -10011100100 weight-saving 1 -10011100100 13-block 1 -10011100100 tradebill 1 -10011100100 team-election 1 -10011100100 bribe-and-fraud 1 -10011100100 multi-tenant 1 -10011100100 minority-rights 1 -10011100100 speedy-trial 1 -10011100100 pledge-leading 1 -10011100100 pay-parity 1 -10011100100 plant-closing-notification 1 -10011100100 union-security 1 -10011100100 automatic-stay 1 -10011100100 taxincrease 1 -10011100100 organized-crime-control 1 -10011100100 360-page 1 -10011100100 Jeffords-Henry 1 -10011100100 airline-advertising 1 -10011100100 legislative-review 1 -10011100100 convertible-Eurobond 1 -10011100100 game-management 1 -10011100100 10,000-yen 1 -10011100100 supermajority-voting 1 -10011100100 nautilus-shaped 1 -10011100100 491,000-square-foot 1 -10011100100 5,000-signature 1 -10011100100 pooper-scooper 1 -10011100100 benefits-denial 1 -10011100100 B-Minor 1 -10011100100 special-permit 1 -10011100100 no-competition 1 -10011100100 431-page 1 -10011100100 total-divestment 1 -10011100100 minority-contracting 1 -10011100100 manufacturing-engineering 1 -10011100100 tariff-valuation 1 -10011100100 center-of-mass 1 -10011100100 welfare-coordinating 1 -10011100100 trade-expanding 1 -10011100100 investment-disclosure 1 -10011100100 pre-martial 1 -10011100100 cash-andsecurities 1 -10011100100 well-water 1 -10011100100 benefit-of-the-bargain 1 -10011100100 public-sector-borrowing 1 -10011100100 minimum-rest 1 -10011100100 tax-broadening 1 -10011100100 Skousen-influenced 1 -10011100100 4,000-word 1 -10011100100 Biden-Levine 1 -10011100100 500-square-foot 1 -10011100100 sense-of-the-Senate 1 -10011100100 automatic-restraint 1 -10011100100 ski-service 1 -10011100100 civil-guard 1 -10011100100 floorwide 1 -10011100100 Stark-Gradison 1 -10011100100 63-word 1 -10011100100 estimated-payment 1 -10011100100 operating-expenses 1 -10011100100 Marxist-influenced 1 -10011100100 education-planning 1 -10011100100 3,000-day 1 -10011100100 448-seat 1 -10011100100 two-disc 1 -10011100100 promoter-penalty 1 -10011100100 asset-limitation 1 -10011100100 no-marriage 1 -10011100100 public-funding 1 -10011100100 PAC-ban 1 -10011100100 domestic-stimulus 1 -10011100100 intelligence-authorization 1 -10011100100 use-up-your-college-eligibility-first 1 -10011100100 half-heartening 1 -10011100100 Gallo-Proxmire 1 -10011100100 mortgage-commitment 1 -10011100100 future-year 1 -10011100100 Teflon-president 1 -10011100100 10,000-word 1 -10011100100 involuntary-conversion 1 -10011100100 price-and-production 1 -10011100100 interest-deductibility 1 -10011100100 budget-tax 1 -10011100100 dead-letter 1 -10011100100 124-page 1 -10011100100 consumer-complaints 1 -10011100100 corrections-bill 1 -10011100100 breakup-fee 1 -10011100100 tax-forms 1 -10011100100 Tins-for-Tots 1 -10011100100 Connnecticut 1 -10011100100 Choisin 1 -10011100100 hand-shaking 1 -10011100100 now-changed 1 -10011100100 all-holders 1 -10011100100 two-senators-to-a-state 1 -10011100100 A-340/A-330 1 -10011100100 rate-design 1 -10011100100 minimum-health-benefits 1 -10011100100 500-unit 1 -10011100100 Rostenkowski-Gibbons 1 -10011100100 residential-linkage 1 -10011100100 anti-contraception 1 -10011100100 10-votes-to-one 1 -10011100100 student-housing 1 -10011100100 inflation-accounting 1 -10011100100 LIPA-introduced 1 -10011100100 already-passed 1 -10011100100 towlette 1 -10011100100 Quabbin 1 -10011100100 450-page 1 -10011100100 joint-petition 1 -10011100100 tire-unit 1 -10011100100 disease-notification 1 -10011100100 civil-damage 1 -10011100100 520-unit 1 -10011100100 Watergate-era 1 -10011100100 NRA-backed 1 -10011100100 harder-to-value 1 -10011100100 163.2-cubic-inch 1 -10011100100 quick-exit 1 -10011100100 incompatability 1 -10011100100 business-combination 1 -10011100100 56-member 1 -10011100100 anti-jobs 1 -10011100100 core-capital 1 -10011100100 approveda 1 -10011100100 cross-guarantee 1 -10011100100 Japanese-Catalan 1 -10011100100 pro-birth 1 -10011100100 Kennedy-Moynihan 1 -10011100100 ironhanded 1 -10011100100 late-penalty 1 -10011100100 successorship 1 -10011100100 nitrosamines-blocking 1 -10011100100 tenant-hardship 1 -10011100100 special-access 1 -10011100100 equal-justice 1 -10011100100 agricultural-trade 1 -10011100100 tombstone-ad 1 -10011100100 evil-intent 1 -10011100100 plant-inspection 1 -10011100100 Treasury-requested 1 -10011100100 committee-approved 1 -10011100100 Morresi 1 -10011100100 one-to-a-market 1 -10011100100 Kennedy-Waxman 1 -10011100100 much-listed 1 -10011100100 PLO-Syria 1 -10011100100 500-cruzado 1 -10011100100 --w 1 -10011100100 common-ownership 1 -10011100100 three-seconds 1 -10011100100 type-size 1 -10011100100 conventional-arms-reduction 1 -10011100100 airline-liberalization 1 -10011100100 oil-leasing 1 -10011100100 bank-nationalization 1 -10011100100 Kreutzer 1 -10011100100 Oahe 1 -10011100100 Proxmire-Garn 1 -10011100100 antique-furnished 1 -10011100100 anti-accountability 1 -10011100100 dividend-sweetened 1 -10011100100 once-derelict 1 -10011100100 union-constitution 1 -10011100100 36-acre 1 -10011100100 pension-costs 1 -10011100100 29-floor 1 -10011100100 early-departure 1 -10011100100 60-vote 1 -10011100100 yttrium-containing 1 -10011100100 regulatory-exclusion 1 -10011100100 drug-safety 1 -10011100100 state-aid 1 -10011100100 downard 1 -10011100100 singleparty 1 -10011100100 prochoice 1 -10011100100 cement-like 1 -10011100100 consumer-warning 1 -10011100100 anti-drug-law 1 -10011100100 700-page 1 -10011100100 Uprenski 1 -10011100100 no-false-starts 1 -10011100100 tax-uniformity 1 -10011100100 procurement-office 1 -10011100100 Bakersfield-area 1 -10011100100 light-activated 1 -10011100100 multilane 1 -10011100100 home-finance 1 -10011100100 single-most-needed 1 -10011100100 business-purpose 1 -10011100100 fundamentalist-sponsored 1 -10011100100 tax-inducement 1 -10011100100 deficit-limiting 1 -10011100100 Gardelin 1 -10011100100 two-button 1 -10011100100 300page 1 -10011100100 beer-pricing 1 -10011100100 sulfur-reduction 1 -10011100100 computer-shoes 1 -10011100100 simultaneous-candidacy 1 -10011100100 negative-pledge 1 -10011100100 p4 2 -10011100100 mid-quarter 2 -10011100100 catastrophic-health-insurance 2 -10011100100 full-financing 2 -10011100100 local-tax 2 -10011100100 M-2 2 -10011100100 beer-advertising 2 -10011100100 international-payments 2 -10011100100 tax-immunity 2 -10011100100 cash-distribution 2 -10011100100 presentment 2 -10011100100 arms-embargo 2 -10011100100 spending-limit 2 -10011100100 general-welfare 2 -10011100100 headrest 2 -10011100100 fast-dwindling 2 -10011100100 65-story 2 -10011100100 currency-loss 2 -10011100100 tort-revision 2 -10011100100 labor-policy 2 -10011100100 single-license 2 -10011100100 banking-reform 2 -10011100100 campaign-reform 2 -10011100100 Pepper-Simon 2 -10011100100 due-obedience 2 -10011100100 bribery-and-fraud 2 -10011100100 58-year 2 -10011100100 copyright-protection 2 -10011100100 80/20 2 -10011100100 construction-ban 2 -10011100100 labor-supported 2 -10011100100 single-child 2 -10011100100 pension-reform 2 -10011100100 prudent-man 2 -10011100100 Republican-backed 2 -10011100100 public-notice 2 -10011100100 clinical-trial 2 -10011100100 foreign-disclosure 2 -10011100100 waste-cleanup 2 -10011100100 notice-of-plant-closing 2 -10011100100 gasoline-mileage 2 -10011100100 trust-building 2 -10011100100 175-page 2 -10011100100 foreign-oil 2 -10011100100 stock-for-concessions 2 -10011100100 phosphorothioate 2 -10011100100 PAC-limit 2 -10011100100 wage-and-benefits 2 -10011100100 government-affairs 2 -10011100100 super-collider 2 -10011100100 waiting-period 2 -10011100100 open-enrollment 2 -10011100100 phantom-income 2 -10011100100 social-program 2 -10011100100 13-person 2 -10011100100 conference-approved 2 -10011100100 Jedi 3 -10011100100 public-liaison 3 -10011100100 import-restricting 3 -10011100100 defense-appropriations 3 -10011100100 flight-time 3 -10011100100 nonbank-bank 3 -10011100100 military-base 3 -10011100100 committee-passed 3 -10011100100 annual-meeting 3 -10011100100 world-debt 3 -10011100100 650-foot 3 -10011100100 free-exercise 3 -10011100100 military-reform 3 -10011100100 plantclosing 3 -10011100100 exit-fee 3 -10011100100 CSCE 3 -10011100100 automotive-safety 3 -10011100100 30-story 3 -10011100100 factfinding 3 -10011100100 AT&T/Olivetti 3 -10011100100 McCarthy-era 3 -10011100100 taxpayer-rights 3 -10011100100 fiscal-stimulus 3 -10011100100 flat-tax 3 -10011100100 excessive-fines 3 -10011100100 seven-digit 3 -10011100100 American-Arab 3 -10011100100 production-cost 3 -10011100100 pledge-of-allegiance 3 -10011100100 common-carrier 3 -10011100100 military-construction 3 -10011100100 asbestos-in-schools 3 -10011100100 annual-income 3 -10011100100 credit-loss 3 -10011100100 by-law 3 -10011100100 addiction-treatment 3 -10011100100 transportation-spending 4 -10011100100 Harkin-Gephardt 4 -10011100100 Risk-Pooling 4 -10011100100 software-copyright 4 -10011100100 home-health-care 4 -10011100100 change-of-control 4 -10011100100 corrupt-practices 4 -10011100100 family-leave 4 -10011100100 73-year 4 -10011100100 21-story 4 -10011100100 ease-of-use 4 -10011100100 Mexico-Morgan 4 -10011100100 independent-prosecutor 4 -10011100100 weapons-procurement 4 -10011100100 price-discounting 4 -10011100100 Senate-approved 4 -10011100100 non-circumvention 4 -10011100100 prompt-pay 5 -10011100100 homeless-aid 5 -10011100100 federal-budget 5 -10011100100 supplemental-appropriations 5 -10011100100 Kennedy-Hollings 5 -10011100100 health-benefits 5 -10011100100 co-financing 5 -10011100100 parental-consent 6 -10011100100 advice-and-consent 6 -10011100100 Simpson-Mazzoli 6 -10011100100 immigration-reform 6 -10011100100 welfare-overhaul 6 -10011100100 liberal-conservative 6 -10011100100 Saudi-Iranian 6 -10011100100 budget-reconciliation 7 -10011100100 prevailing-wage 7 -10011100100 deficit-reducing 7 -10011100100 advance-notice 8 -10011100100 bank-powers 8 -10011100100 equal-protection 8 -10011100100 thrift-bailout 8 -10011100100 on-budget 8 -10011100100 tax-and-spending 8 -10011100100 work-for-welfare 8 -10011100100 flipper 9 -10011100100 defense-authorization 10 -10011100100 speed-limit 12 -10011100100 tax-filing 12 -10011100100 budget-reduction 12 -10011100100 base-closing 13 -10011100100 business-judgment 13 -10011100100 welfare-revision 13 -10011100100 debt-limit 14 -10011100100 economic-stimulus 14 -10011100100 tax-reduction 14 -10011100100 single-market 14 -10011100100 intellectual-property 14 -10011100100 thrift-rescue 14 -10011100100 G-R-H 17 -10011100100 due-process 18 -10011100100 budget-balancing 18 -10011100100 technical-corrections 18 -10011100100 wiretap 18 -10011100100 tax-credit 20 -10011100100 clean-water 23 -10011100100 airworthiness 23 -10011100100 welfare-reform 24 -10011100100 tax-cut 28 -10011100100 tax-revision 28 -10011100100 rescission 31 -10011100100 budget-deficit 35 -10011100100 baseline 37 -10011100100 drought-relief 39 -10011100100 takings 43 -10011100100 independent-counsel 45 -10011100100 exclusionary 46 -10011100100 plant-closings 50 -10011100100 stopgap 51 -10011100100 cross-ownership 59 -10011100100 budget-cutting 60 -10011100100 Senate-passed 61 -10011100100 Gramm-Rudman-Hollings 64 -10011100100 debt-ceiling 70 -10011100100 clean-air 81 -10011100100 tax-increase 82 -10011100100 tax-reform 82 -10011100100 gender 98 -10011100100 tax-overhaul 111 -10011100100 Superfund 126 -10011100100 deficit-cutting 143 -10011100100 plant-closing 148 -10011100100 copyright 405 -10011100100 deficit-reduction 508 -10011100100 appropriations 545 -10011100100 Gramm-Rudman 741 -10011100100 budget 9557 -10011100100 patent 1244 -10011100101 deficittrimming 1 -10011100101 seven-shot 1 -10011100101 pretax-income 1 -10011100101 pre-marital-testing 1 -10011100101 parentalleave 1 -10011100101 budget-reducing 1 -10011100101 three-games-to-two 1 -10011100101 debt-increase 1 -10011100101 record-deep 1 -10011100101 price-ceiling 1 -10011100101 currentaccount 1 -10011100101 Penan 1 -10011100101 movie-queen 1 -10011100101 microswitches 1 -10011100101 rock-and-rap 1 -10011100101 segmentssanitary 1 -10011100101 employment-data 1 -10011100101 in-class 1 -10011100101 international-trade 1 -10011100101 impove 1 -10011100101 pay-and-benefits 1 -10011100101 21-3 1 -10011100101 defense-overhaul 1 -10011100101 local-ownership 1 -10011100101 risk-pooling 1 -10011100101 environmentalist-industry 1 -10011100101 base-closings 1 -10011100101 catastrophic-illness-insurance 1 -10011100101 no-purchase 1 -10011100101 tax-corrections 1 -10011100101 celebrity-rights 1 -10011100101 corn-loan 1 -10011100101 two-games-to-none 1 -10011100101 female-asparagus 1 -10011100101 retail-bank 1 -10011100101 galumphed 1 -10011100101 defense-caused 1 -10011100101 limited-number 1 -10011100101 Japan-trade 1 -10011100101 pain-producing 1 -10011100101 highway/transit 1 -10011100101 broadcasting-deregulation 1 -10011100101 industry-environmentalist 1 -10011100101 market-penetration 1 -10011100101 52-44 1 -10011100101 Out-of-stock 1 -10011100101 transfers.The 1 -10011100101 layoff-notification 1 -10011100101 horticultural-crops 1 -10011100101 two-sets-to-one 1 -10011100101 computer-user 1 -10011100101 prepayment-plan 1 -10011100101 futures/stocks 1 -10011100101 airline-traffic 1 -10011100101 sell-order 1 -10011100101 invisible-earnings 1 -10011100101 in-print 1 -10011100101 unsurmountable 1 -10011100101 import-limitation 1 -10011100101 emloyment 1 -10011100101 water-pollution-control 1 -10011100101 Construct 1 -10011100101 current-season 1 -10011100101 dog-kennel 1 -10011100101 export/import 1 -10011100101 ski-and-culture-borne 1 -10011100101 service-trade 1 -10011100101 hand-crafted 1 -10011100101 barnacled 1 -10011100101 590,000-ton 1 -10011100101 chemical-recovery 1 -10011100101 insurance-purchasing 1 -10011100101 highway-authorization 1 -10011100101 technical-correction 1 -10011100101 trade-account 1 -10011100101 legal/regulatory 1 -10011100101 13-percentage-point 1 -10011100101 computer-delivered 1 -10011100101 noncancellation 1 -10011100101 year-after-year 1 -10011100101 fiscal-year-to-date 1 -10011100101 brand-awareness 1 -10011100101 economic-output 1 -10011100101 drug-regulating 1 -10011100101 shoot-while-talking 1 -10011100101 oil-trade 1 -10011100101 trading-rights 1 -10011100101 present-year 1 -10011100101 State-imposed 1 -10011100101 20,000-peso 1 -10011100101 exchange-to-mutual-benefit 1 -10011100101 ethics-related 1 -10011100101 fivedollar 1 -10011100101 5,000-cruzado 1 -10011100101 dodecaphonic 1 -10011100101 visitor-arrival 1 -10011100101 budget-swamping 1 -10011100101 Top-40 1 -10011100101 sales-stimulating 1 -10011100101 highly-regarded 1 -10011100101 external-account 1 -10011100101 consumer-survey 1 -10011100101 widenening 1 -10011100101 trade-restraint 1 -10011100101 school/college 1 -10011100101 presumptive-sentencing 1 -10011100101 6.8-ton 1 -10011100101 water-irrigation 1 -10011100101 high-profile/low-esteem 1 -10011100101 investment/savings 1 -10011100101 5.7-percentage-point 1 -10011100101 cytology-test 1 -10011100101 trustfund 1 -10011100101 market-revision 1 -10011100101 pollution-caused 1 -10011100101 travel-trade 2 -10011100101 MITI-backed 2 -10011100101 wraithlike 2 -10011100101 interest-default 2 -10011100101 production-over-consumption 2 -10011100101 money-flow 2 -10011100101 capital-account 2 -10011100101 NEC/Intel 2 -10011100101 price-stabilizing 2 -10011100101 earnings-forecast 2 -10011100101 timber-company 2 -10011100101 private-pilots 2 -10011100101 demand-supply 2 -10011100101 truth-in-savings 2 -10011100101 dissident-shareholder 2 -10011100101 housing-authorization 2 -10011100101 DNC 2 -10011100101 refinishing 2 -10011100101 oil-inventory 2 -10011100101 metastasized 2 -10011100101 birth-certificate 2 -10011100101 SEC-type 2 -10011100101 business-lobbying 2 -10011100101 defense-and-space 3 -10011100101 placebo-control 3 -10011100101 water-projects 3 -10011100101 ring-arc 3 -10011100101 savings/investment 3 -10011100101 low-bid 3 -10011100101 Modi 3 -10011100101 horsemeat 3 -10011100101 nuclear-cooperation 3 -10011100101 price-stabilization 3 -10011100101 biosciences 3 -10011100101 Bechtel-led 3 -10011100101 aerospace-and-defense 4 -10011100101 corporate-takeover 4 -10011100101 management-committee 4 -10011100101 armscontrol 4 -10011100101 union-backed 4 -10011100101 already-reported 4 -10011100101 nontariff 5 -10011100101 trading-surveillance 5 -10011100101 saving-investment 5 -10011100101 short-sales 5 -10011100101 canasta 7 -10011100101 grain-trade 8 -10011100101 balance-of-trade 8 -10011100101 drug-company 9 -10011100101 farm-trade 9 -10011100101 trade-balance 11 -10011100101 balance-of-payment 13 -10011100101 splinter 38 -10011100101 non-tariff 39 -10011100101 trade-deficit 49 -10011100101 merchandise-trade 56 -10011100101 Franco-Belgian 112 -10011100101 balance-of-payments 145 -10011100101 trade 22204 -10011100101 current-account 396 -10011100110 U.K.-U.S. 1 -10011100110 new-station 1 -10011100110 sweeping-yet-vague 1 -10011100110 AIDS-spending 1 -10011100110 bu-yout 1 -10011100110 buy-out-that 1 -10011100110 target-lowering 1 -10011100110 price-sustaining 1 -10011100110 screen-splitting 1 -10011100110 11page 1 -10011100110 securities-tax 1 -10011100110 standard-of-need 1 -10011100110 connecting-flight 1 -10011100110 pooch-next-door 1 -10011100110 generic-standard 1 -10011100110 half-humorous 1 -10011100110 receivables-financing 1 -10011100110 non-pension 1 -10011100110 Northrop-Grumman 1 -10011100110 borrrowing 1 -10011100110 376-page 1 -10011100110 reg 1 -10011100110 takeover. 1 -10011100110 suitor.That 1 -10011100110 buy-outs. 1 -10011100110 Telemundo/CNN 1 -10011100110 brewing-assets 1 -10011100110 fish-food 1 -10011100110 lease-purchasing 1 -10011100110 reduced-commission 1 -10011100110 funding-cutoff 1 -10011100110 preliminary-injunction 1 -10011100110 AMR-Delta 1 -10011100110 anti-MX 1 -10011100110 candidacy-declaration 1 -10011100110 credit-transfer 1 -10011100110 Morgan-Mexican 1 -10011100110 Walinsky-Rubinstein 1 -10011100110 beef-access 1 -10011100110 4,764 1 -10011100110 Paris-Washington 1 -10011100110 MTCR 2 -10011100110 Telemundo-CNN 2 -10011100110 loan-and-option 2 -10011100110 lammergeier 2 -10011100110 Eurocredit 2 -10011100110 English-proficiency 2 -10011100110 Mack-Morsani 2 -10011100110 lesser-paid 2 -10011100110 Asia-bashing 2 -10011100110 hyperventilation 2 -10011100110 stock-offering 3 -10011100110 technology-exchange 3 -10011100110 co-finances 3 -10011100110 ICP 3 -10011100110 multi-racial 3 -10011100110 state- 3 -10011100110 treasure-trove 3 -10011100110 French-Belgian 4 -10011100110 huissier 4 -10011100110 management-pilot 4 -10011100110 pork-buster 4 -10011100110 share-exchange 5 -10011100110 Limited-DeBartolo 5 -10011100110 management/Goldman 6 -10011100110 power-sales 6 -10011100110 Antar-Belzberg 7 -10011100110 tabling 7 -10011100110 MBFR 7 -10011100110 NACM 9 -10011100110 troika 10 -10011100110 enlistment 10 -10011100110 debarment 14 -10011100110 pilot-management 21 -10011100110 co-production 23 -10011100110 power-sharing 29 -10011100110 rate-increase 38 -10011100110 JOA 40 -10011100110 sale-leaseback 44 -10011100110 disallowance 51 -10011100110 buyouts 222 -10011100110 confidentiality 318 -10011100110 buy-outs 649 -10011100110 consent 890 -10011100110 buyout 1530 -10011100110 buy-out 3824 -10011100110 merger 7179 -10011100110 settlement 5534 -10011100111 reward-or-inducement 1 -10011100111 customer-incentive 1 -10011100111 synthetic-fuels 1 -10011100111 SmokEnders 1 -10011100111 diversification-by-acquisition 1 -10011100111 paper-folding 1 -10011100111 economic-decentralization 1 -10011100111 1987/88 1 -10011100111 negligible-risk 1 -10011100111 school-construction 1 -10011100111 sales-only 1 -10011100111 departmentwide 1 -10011100111 energy-incentive 1 -10011100111 quality-test 1 -10011100111 open-border 1 -10011100111 soak-the-two-earner-family 1 -10011100111 tank-landing 1 -10011100111 get-even-richer-quick 1 -10011100111 anti-deficit 1 -10011100111 33,800-ton 1 -10011100111 child-restraint 1 -10011100111 airline-inspection 1 -10011100111 capital-restructuring 1 -10011100111 still-nascent 1 -10011100111 night-and-day 1 -10011100111 records-review 1 -10011100111 10-course 1 -10011100111 10-year-averaging 1 -10011100111 earthquake-response 1 -10011100111 slide-show 1 -10011100111 privilege-hungry 1 -10011100111 hypermacho 1 -10011100111 Gray-Chiles 1 -10011100111 early-repayment 1 -10011100111 recession-contingency 1 -10011100111 water-injection 1 -10011100111 budget-deficit-reduction 1 -10011100111 lawyer-free 1 -10011100111 U.S.-brand 1 -10011100111 well-calculated 1 -10011100111 Cleveland-LaGuardia 1 -10011100111 Earth-observation 1 -10011100111 budget-enhancing 1 -10011100111 tension-relief 1 -10011100111 capital-creating 1 -10011100111 tube-assembly 1 -10011100111 zinc-citrate 1 -10011100111 turf-protective 1 -10011100111 torch-cutter 1 -10011100111 Heinz-Bonker 1 -10011100111 back-to-school/stay-in-school 1 -10011100111 surgical-instrument 1 -10011100111 dog-chasing-its-tail 1 -10011100111 no-longer-secret 1 -10011100111 Art-in-Architecture 1 -10011100111 1,000-man 1 -10011100111 water-cleaning 1 -10011100111 subsidy-reducing 1 -10011100111 price-freeze 1 -10011100111 glass-and-embrane 1 -10011100111 -minded 1 -10011100111 back-to-front 1 -10011100111 105-foot 1 -10011100111 mold-produced 1 -10011100111 citizens-sponsored 1 -10011100111 protocol/internet 1 -10011100111 pettiest 1 -10011100111 fiscal-austerity 1 -10011100111 laser-detecting 1 -10011100111 no-fault-insurance 1 -10011100111 five-class 1 -10011100111 lapel-pin 1 -10011100111 non-thermal 1 -10011100111 retirement-insurance 1 -10011100111 text-search 1 -10011100111 Seattle-to-Tokyo 1 -10011100111 employee-relocation 1 -10011100111 growth-restraining 1 -10011100111 X.25 1 -10011100111 CD-Rom 1 -10011100111 dioxin-containing 1 -10011100111 early-afternoon 1 -10011100111 financial-restoration 1 -10011100111 hot-dog-shaped 1 -10011100111 capital-restoration 1 -10011100111 aid-to-Africa 1 -10011100111 incomes-maintenance 1 -10011100111 waste-reduction 1 -10011100111 criminal-furlough 1 -10011100111 hurricane-preparation 1 -10011100111 fundamental-skills 1 -10011100111 pension-protection 1 -10011100111 nicotine-inhaling 1 -10011100111 stock-jobbing 1 -10011100111 visiting-judge 1 -10011100111 buyer-protection 1 -10011100111 non-Conrail 1 -10011100111 fare-discount 1 -10011100111 12.7mm 1 -10011100111 pressure-relief 1 -10011100111 self-exclusion 1 -10011100111 ultra-compact 1 -10011100111 character-investigation 1 -10011100111 financial-assistance 1 -10011100111 Fugu 1 -10011100111 bunk-bed 1 -10011100111 management-trainee 1 -10011100111 deep-freeze 1 -10011100111 designer-jeans 1 -10011100111 377-passenger 1 -10011100111 old-standby 1 -10011100111 clamp-like 1 -10011100111 flexible-freeze 1 -10011100111 capacity-expanding 1 -10011100111 network-modernization 1 -10011100111 chemical-mixing 1 -10011100111 reverse-compensation 1 -10011100111 racial-quota 1 -10011100111 note-counting 1 -10011100111 heat-detection 1 -10011100111 civilian-in-space 1 -10011100111 300,000-person 1 -10011100111 semi-custom 1 -10011100111 lumbar-extension 1 -10011100111 dialysis-at-home 1 -10011100111 high-loan 1 -10011100111 tobacco-tax 1 -10011100111 youth-service 1 -10011100111 re-zoning 1 -10011100111 coal-loading 1 -10011100111 resource-control 1 -10011100111 double-severance 1 -10011100111 weapons-purchasing 1 -10011100111 Brussels-Kinshasa 1 -10011100111 pay-as-you-don't-plow 1 -10011100111 dollar-rescue 1 -10011100111 debt-paring 1 -10011100111 Eurolaser 1 -10011100111 strategic-policy 1 -10011100111 defense-appropriation 1 -10011100111 voluntary-separation 1 -10011100111 block-club 1 -10011100111 penny-diversion 1 -10011100111 Taylorville 1 -10011100111 Flint-area 1 -10011100111 summer-jobs-for-youth 1 -10011100111 bored-looking 1 -10011100111 linked-trading 1 -10011100111 reference-zones 1 -10011100111 224-page 1 -10011100111 discounted-fare 1 -10011100111 sensitive-skin 1 -10011100111 hard-times 1 -10011100111 reactor-testing 1 -10011100111 worker-adjustment 1 -10011100111 profit-booking 1 -10011100111 consensus-type 1 -10011100111 blue-shirted 1 -10011100111 Reagan-Bowen 1 -10011100111 capital-sharing 1 -10011100111 volunteer-based 1 -10011100111 stock-equivalent 1 -10011100111 375,000-kilowatt 1 -10011100111 515,000-kilowatt 1 -10011100111 fare-restructuring 1 -10011100111 auction-sale 1 -10011100111 Vienna-Bangkok 1 -10011100111 benefit-distribution 1 -10011100111 Heals 1 -10011100111 glass-and-copper 1 -10011100111 chorale-like 1 -10011100111 master-teacher 1 -10011100111 phony-invoicing 1 -10011100111 kendo 1 -10011100111 million-car-a-year 1 -10011100111 export-aiding 1 -10011100111 discount-sale 1 -10011100111 seismic-research 1 -10011100111 corporate-socialist 1 -10011100111 equalaccess 1 -10011100111 EPRI-DOE 1 -10011100111 check-deposit 1 -10011100111 leprosy-vaccination 1 -10011100111 job-selling 1 -10011100111 flexible-bonus 1 -10011100111 dollar-per-trolley 1 -10011100111 Dodd-Schumer 1 -10011100111 tax-allocation 1 -10011100111 joint-development 1 -10011100111 mentor-teacher 1 -10011100111 import-insurance 1 -10011100111 tuition-financing 1 -10011100111 Boston-Syracuse 1 -10011100111 mathematical-analysis 1 -10011100111 peace-conference 1 -10011100111 voluntary-bumping 1 -10011100111 slim-down 1 -10011100111 customer-loyalty 1 -10011100111 pave-your-own-street 1 -10011100111 wage-moderation 1 -10011100111 still-vague 1 -10011100111 two-company 1 -10011100111 fleet-renewal 1 -10011100111 balloon-tipped 1 -10011100111 loan-refinancing 1 -10011100111 SuperCalc 1 -10011100111 amnesty-assistance 1 -10011100111 34-well 1 -10011100111 cave-rescue 1 -10011100111 comparable-work 1 -10011100111 almond-butter 1 -10011100111 computer-powered 1 -10011100111 drug-patent 1 -10011100111 tax-certificate 1 -10011100111 fly-by-the-book 1 -10011100111 rural-response 1 -10011100111 car-shopping 1 -10011100111 reorganization-cum-settlement 1 -10011100111 citizen-initiated 1 -10011100111 technical-manual 1 -10011100111 Baker-Webster 1 -10011100111 growth-boosting 1 -10011100111 encription 1 -10011100111 homeownership-assistance 1 -10011100111 Charlotte-to-London 1 -10011100111 640K 1 -10011100111 rate-refund 1 -10011100111 wildlife-recreation 1 -10011100111 staff-development 1 -10011100111 half-submerged 1 -10011100111 stock-compensation 1 -10011100111 railroad-basing 1 -10011100111 youth-employment 1 -10011100111 passports-for-sale 1 -10011100111 reconstructed-conversation 1 -10011100111 metaproterenol 1 -10011100111 financial-compliance 1 -10011100111 fixed-tuition 1 -10011100111 C-minor 1 -10011100111 antitheft 1 -10011100111 job-outreach 1 -10011100111 cost-cutback 1 -10011100111 much-contested 1 -10011100111 ASU 1 -10011100111 neck-to-the-hind-legs 1 -10011100111 dispute-resolving 1 -10011100111 inventory-holding 1 -10011100111 work-scholarship 1 -10011100111 eye-exam 1 -10011100111 Florida-like 1 -10011100111 time-period 1 -10011100111 film-and-Rockettes 1 -10011100111 security-awareness 1 -10011100111 export-compliance 1 -10011100111 excellence-in-education 1 -10011100111 college-savings 1 -10011100111 ozonating 1 -10011100111 housing-linkage 1 -10011100111 race-reclassification 1 -10011100111 tax-rebate 1 -10011100111 25,000-mile 1 -10011100111 pin-making 1 -10011100111 time-planning 1 -10011100111 wage-trigger 1 -10011100111 Cuny-Thompson 1 -10011100111 tax-restructuring 1 -10011100111 pewter-casting 1 -10011100111 kidney-transplant 1 -10011100111 skills-retraining 1 -10011100111 immigrant-amnesty 1 -10011100111 protection-rights 1 -10011100111 share-dilution 1 -10011100111 corporate-listing 1 -10011100111 immunassay 1 -10011100111 consent-form 1 -10011100111 pet-adoption 1 -10011100111 Miami-London 1 -10011100111 pink-slip 1 -10011100111 media/image 1 -10011100111 shareholders-rights 1 -10011100111 243-step 1 -10011100111 swine-identification 1 -10011100111 expense-reducing 1 -10011100111 home-port 1 -10011100111 multihulled 1 -10011100111 useful-looking 1 -10011100111 sprinkler-system 1 -10011100111 software-designing 1 -10011100111 overhead-reduction 1 -10011100111 consent-solicitation 1 -10011100111 dump-Noriega 1 -10011100111 still-uncompleted 1 -10011100111 import-replacement 1 -10011100111 once-languid 1 -10011100111 Armey-Roth 1 -10011100111 loan-growth 1 -10011100111 still-wilder 1 -10011100111 buffer-stock-buying 1 -10011100111 medication-substitution 1 -10011100111 exotic-Hawaiian-locale 1 -10011100111 toxic-chemicals 1 -10011100111 370-mile 1 -10011100111 minimumwage 1 -10011100111 save-the-Sphinx 1 -10011100111 video-vending 1 -10011100111 cash-purchase 1 -10011100111 guard-dog 1 -10011100111 compliance-measurement 1 -10011100111 quiz-show 1 -10011100111 unit-repurchase 1 -10011100111 largest-diameter 1 -10011100111 deficit-elimination 1 -10011100111 military-buying 1 -10011100111 all-feminine 1 -10011100111 Greenwalds 1 -10011100111 crew-coordination 1 -10011100111 loan-restructuring 1 -10011100111 cooperative-research 1 -10011100111 2,350-mile 1 -10011100111 processing-modernization 1 -10011100111 heat-generating 1 -10011100111 regional-aid 1 -10011100111 Manoplax 1 -10011100111 plant-modernization 1 -10011100111 foodpackage 1 -10011100111 asset-privatization 1 -10011100111 taxover-haul 1 -10011100111 rabbit-breeding 1 -10011100111 brain-scanning 1 -10011100111 super-austerity 1 -10011100111 330-mile 1 -10011100111 vincristine 1 -10011100111 target-detecting 1 -10011100111 second-longest-running 1 -10011100111 patient-relations 1 -10011100111 140,000-mile 1 -10011100111 lawyer-export 1 -10011100111 15-foot-long 1 -10011100111 sound-detection 1 -10011100111 faculty-aid 1 -10011100111 film-promotion 1 -10011100111 structured-interview 1 -10011100111 anti-takeover-rights 1 -10011100111 home-reading 1 -10011100111 agricultural-worker 1 -10011100111 stockrepurchase 1 -10011100111 anti-recording 1 -10011100111 Court-packing 1 -10011100111 debt-repudiation 1 -10011100111 ink-jetting 1 -10011100111 seventh-place 1 -10011100111 tax-clinic 1 -10011100111 technology-liberalization 1 -10011100111 stock-grant 1 -10011100111 6,600-nautical-mile 1 -10011100111 store-remodeling 1 -10011100111 New-Wave 1 -10011100111 final-days 1 -10011100111 freeroom 1 -10011100111 sugar-quota 1 -10011100111 gift-certificate 1 -10011100111 Mexico-debt 1 -10011100111 payequity 1 -10011100111 cattle-cloning 1 -10011100111 highway-funds 1 -10011100111 self-recapitalization 1 -10011100111 assets-sale 1 -10011100111 performance-achievement 1 -10011100111 Broviac 1 -10011100111 holder-rights 1 -10011100111 INCENTIVE-PAY 1 -10011100111 single-disk-jockey 1 -10011100111 capital-risk 1 -10011100111 retirement-centers 1 -10011100111 corporate-awareness 1 -10011100111 recaptalization 1 -10011100111 hostage-swap 1 -10011100111 virus-by-mail 1 -10011100111 ship-and-test 1 -10011100111 financial-support 1 -10011100111 Lex-Campbell 1 -10011100111 trade-pact 1 -10011100111 four-by-four-inch 1 -10011100111 SpellRight 1 -10011100111 citizen-sponsored 1 -10011100111 ESPRIT 1 -10011100111 user-interface 1 -10011100111 seized-property 1 -10011100111 grape-crushing 1 -10011100111 family-assistance 1 -10011100111 claimantsa 1 -10011100111 benefits-communication 1 -10011100111 disaster-payments 1 -10011100111 non-operative 1 -10011100111 farm-therapy 1 -10011100111 oil-skimming 1 -10011100111 computer/keyboard 1 -10011100111 quake-related 1 -10011100111 payroll-reduction 1 -10011100111 tree-replacement 1 -10011100111 celebrity-driven 1 -10011100111 full-coverage 1 -10011100111 132-bomber 1 -10011100111 OnePlus 1 -10011100111 lease-incentive 1 -10011100111 village-destruction 1 -10011100111 business-migration 1 -10011100111 minishock 1 -10011100111 debt-repurchasing 1 -10011100111 aging-fleet 1 -10011100111 debt-securitization 1 -10011100111 120-degree 1 -10011100111 house-the-poor 1 -10011100111 two-inch-wide 1 -10011100111 work-furlough 1 -10011100111 much-bigger 1 -10011100111 U.S.-endorsed 1 -10011100111 paced-incremental-dullness 1 -10011100111 vehicle-recall 1 -10011100111 clamshell-like 1 -10011100111 stock/cash 1 -10011100111 Anti-Ballistic-Missile 1 -10011100111 false-vouchering 1 -10011100111 134-page 1 -10011100111 Kennedy-Dukakis 1 -10011100111 pen-usage 1 -10011100111 store-opening 1 -10011100111 Bush-supported 1 -10011100111 judicial-bypass 1 -10011100111 loan-forgiveness 1 -10011100111 blood-scavenging 1 -10011100111 Dulles-Cancun 1 -10011100111 investment-visa 1 -10011100111 S&L-rescue 1 -10011100111 public-assistant 1 -10011100111 MD90 1 -10011100111 briefcase-like 1 -10011100111 Jamesbury 1 -10011100111 industry-specialization 1 -10011100111 FlexComp 1 -10011100111 B1-Bomber 1 -10011100111 magnet-school 1 -10011100111 managed-cost 1 -10011100111 instant-credit 1 -10011100111 focused-factory 1 -10011100111 Y/MP-832 1 -10011100111 craftsman-in-residence 1 -10011100111 Montreal-Toronto 1 -10011100111 push-back 1 -10011100111 coastal-development 1 -10011100111 debt-for-export 1 -10011100111 prison-building 1 -10011100111 constitutional-amendment 1 -10011100111 466-mile 1 -10011100111 employee-investment 1 -10011100111 limited-scale 1 -10011100111 utility-draw 1 -10011100111 steelrod-making 1 -10011100111 duty-remission 1 -10011100111 market-purchase 1 -10011100111 student-placement 1 -10011100111 stock-dispersal 1 -10011100111 stock-conspiracy 1 -10011100111 36,000-ton 1 -10011100111 Hunt-backed 1 -10011100111 fleet-modernization 1 -10011100111 public-jobs 1 -10011100111 quality-growth 1 -10011100111 sharesupport 1 -10011100111 hot-breakfast 1 -10011100111 singhe 1 -10011100111 bonus-incentive 1 -10011100111 asset-enhancing 1 -10011100111 savings-incentive 1 -10011100111 inventable 1 -10011100111 drug-sensing 1 -10011100111 economic-offset 1 -10011100111 breadbox-size 1 -10011100111 very-talked-about 1 -10011100111 sixpoint 1 -10011100111 disaster-loan 1 -10011100111 proficiency-testing 1 -10011100111 downsizers 1 -10011100111 labor-separation 1 -10011100111 lock-out 2 -10011100111 automatic-cut 2 -10011100111 log-on 2 -10011100111 jazz-classical 2 -10011100111 tax-equalization 2 -10011100111 reorganizaton 2 -10011100111 cost-curbing 2 -10011100111 pay-deferral 2 -10011100111 Morgan-Mexico 2 -10011100111 investment-note 2 -10011100111 block-grant 2 -10011100111 mirror-subsidiary 2 -10011100111 contract-compliance 2 -10011100111 immuno-adsorption 2 -10011100111 moneymen 2 -10011100111 debt-moratorium 2 -10011100111 kick-back 2 -10011100111 Moneypaper 2 -10011100111 recapitalizaton 2 -10011100111 social-development 2 -10011100111 automatic-retaliation 2 -10011100111 early-deployment 2 -10011100111 AppleCD 2 -10011100111 expense-reduction 2 -10011100111 check-overdrafting 2 -10011100111 employee-bonus 2 -10011100111 debt-buyback 2 -10011100111 work-training 2 -10011100111 Goldman-Kidder 2 -10011100111 sound-money 2 -10011100111 employee-stock-ownership 2 -10011100111 outdoor-training 2 -10011100111 Rohatyn-Altman 2 -10011100111 equity-participation 2 -10011100111 68030-based 2 -10011100111 campaign-fund 2 -10011100111 Fez 2 -10011100111 job-reduction 2 -10011100111 JOAs 2 -10011100111 deficit-narrowing 2 -10011100111 inventory-reduction 2 -10011100111 day-camp 2 -10011100111 condominium-financing 2 -10011100111 Cabletime 2 -10011100111 store-renovation 2 -10011100111 Patent/ANDA 2 -10011100111 national-health-care 2 -10011100111 housing-integration 2 -10011100111 dealer-incentive 2 -10011100111 hypo-allergenic 2 -10011100111 rice-purchase 2 -10011100111 non-HMO 2 -10011100111 strike-preparation 2 -10011100111 ethics-training 2 -10011100111 ward-heeling 2 -10011100111 AIDS-research 2 -10011100111 asset-shedding 2 -10011100111 eating-disorder 2 -10011100111 manned-spaceflight 2 -10011100111 Brayalls 2 -10011100111 villagization 2 -10011100111 cost-paring 2 -10011100111 staff-cutting 2 -10011100111 spill-prevention 2 -10011100111 misbranding 2 -10011100111 exchange-offer 2 -10011100111 metal-bonding 2 -10011100111 rain-insurance 2 -10011100111 set-back 2 -10011100111 economic-stimulation 2 -10011100111 cash-incentive 2 -10011100111 Dare-to-be-Great 2 -10011100111 Belfast-London 2 -10011100111 city-approved 2 -10011100111 tax-limitation 2 -10011100111 loss-to-profit 2 -10011100111 aortic 2 -10011100111 retirement-incentive 2 -10011100111 store-expansion 2 -10011100111 Sun-compatible 2 -10011100111 DPSC 2 -10011100111 severance-payment 2 -10011100111 marketing-loan 2 -10011100111 microsponge 2 -10011100111 roof-bolting 2 -10011100111 revaccination 2 -10011100111 inflation-adjustment 2 -10011100111 disaster-aid 2 -10011100111 official-English 2 -10011100111 first-of-its-kind 2 -10011100111 foreign-income 2 -10011100111 frequent-shopper 2 -10011100111 direct-payment 2 -10011100111 shareholder-investment 2 -10011100111 individual-rate 2 -10011100111 general-amnesty 2 -10011100111 stock-incentive 2 -10011100111 director-retirement 2 -10011100111 open-skies 2 -10011100111 stock-bonus 2 -10011100111 reform-resistant 2 -10011100111 nuclear-test-limitation 3 -10011100111 severence 3 -10011100111 frequent-traveler 3 -10011100111 rural-housing 3 -10011100111 drug-detection 3 -10011100111 Buffetts 3 -10011100111 nation-building 3 -10011100111 debt-refinancing 3 -10011100111 rate-reduction 3 -10011100111 asset-redeployment 3 -10011100111 musicology 3 -10011100111 blood-filtration 3 -10011100111 risk-avoidance 3 -10011100111 parts-switching 3 -10011100111 borrowed-manager 3 -10011100111 report-card 3 -10011100111 deferred-maintenance 3 -10011100111 jackboot 3 -10011100111 stock-withholding 3 -10011100111 import-liberalization 3 -10011100111 reoganization 3 -10011100111 employee-ownership 3 -10011100111 tax-dodging 3 -10011100111 eight-processor 3 -10011100111 5990-1400 3 -10011100111 pay-incentive 3 -10011100111 no-fuss 3 -10011100111 management-compensation 3 -10011100111 transmigration 3 -10011100111 debt-problem 3 -10011100111 economic-liberalization 3 -10011100111 GCEC 3 -10011100111 health-and-fitness 3 -10011100111 memory-resident 3 -10011100111 urban-grant 3 -10011100111 big-donor 3 -10011100111 air-piracy 3 -10011100111 page-layout 3 -10011100111 FDIC-approved 3 -10011100111 economic-restructuring 3 -10011100111 mileage-based 3 -10011100111 COLTS 4 -10011100111 market-halting 4 -10011100111 blood-recycling 4 -10011100111 tax-amnesty 4 -10011100111 pocket-charter 4 -10011100111 management-incentive 4 -10011100111 divesture 4 -10011100111 land-redistribution 4 -10011100111 price-propping 4 -10011100111 housing-voucher 4 -10011100111 cost-allocation 4 -10011100111 Medicare-HMO 4 -10011100111 currying 4 -10011100111 safety-net 4 -10011100111 Wright-Reagan 4 -10011100111 tachycardia 4 -10011100111 access-charge 4 -10011100111 witness-protection 4 -10011100111 acercamiento 4 -10011100111 well-conceived 4 -10011100111 bank-financing 4 -10011100111 return-to-work 4 -10011100111 cost-shifting 5 -10011100111 worker-retraining 5 -10011100111 primavera 5 -10011100111 casualness 5 -10011100111 tax-enforcement 5 -10011100111 crew-escape 5 -10011100111 resection 5 -10011100111 overdrafting 5 -10011100111 restucturing 5 -10011100111 trigger-price 5 -10011100111 tax-benefit 5 -10011100111 stock-buy-back 5 -10011100111 phone-access 5 -10011100111 BCal 5 -10011100111 career-ladder 5 -10011100111 end-of-model-year 5 -10011100111 staff-reduction 5 -10011100111 military-aid 5 -10011100111 consumption-tax 5 -10011100111 work-release 5 -10011100111 6/60 6 -10011100111 stockholder-rights 6 -10011100111 debt-forgiveness 6 -10011100111 PINs 6 -10011100111 management-consignment 6 -10011100111 payroll-padding 6 -10011100111 6386 7 -10011100111 loan-sale 7 -10011100111 guest-worker 7 -10011100111 cash-out 7 -10011100111 TEA 7 -10011100111 0-92 7 -10011100111 career-break 7 -10011100111 decertification 7 -10011100111 frequent-guest 7 -10011100111 moderate-rehabilitation 7 -10011100111 school-lunch 7 -10011100111 economic-recovery 8 -10011100111 agrarian-reform 8 -10011100111 financial-restructuring 8 -10011100111 stock-parking 8 -10011100111 stock-buyback 8 -10011100111 share-buyback 8 -10011100111 PCR 8 -10011100111 dividend-reinvestment 8 -10011100111 policy-coordination 8 -10011100111 debt-exchange 9 -10011100111 rezoning 9 -10011100111 bidco 9 -10011100111 wildcatting 9 -10011100111 import-restraint 9 -10011100111 alternative-fuels 9 -10011100111 costcutting 9 -10011100111 dextran 9 -10011100111 export-enhancement 10 -10011100111 debt-conversion 10 -10011100111 severance-pay 10 -10011100111 Reagan-Wright 10 -10011100111 AT&T-Sun 11 -10011100111 gain-sharing 11 -10011100111 pump-priming 12 -10011100111 export-subsidy 12 -10011100111 Seattle-Tokyo 13 -10011100111 shut-off 13 -10011100111 catastrophic-care 13 -10011100111 self-insurance 13 -10011100111 confidence-building 13 -10011100111 subtraction 14 -10011100111 OEM 14 -10011100111 secession 14 -10011100111 split-up 15 -10011100111 bankruptcy-reorganization 15 -10011100111 zero-zero 15 -10011100111 coupling 15 -10011100111 checkoff 16 -10011100111 share-support 16 -10011100111 coinsurance 16 -10011100111 entrenchment 17 -10011100111 cost-savings 17 -10011100111 asset-sale 18 -10011100111 economic-reform 19 -10011100111 information-sharing 19 -10011100111 collectivization 20 -10011100111 share-repurchase 21 -10011100111 trade-liberalization 21 -10011100111 Ponzi 22 -10011100111 debt-payment 24 -10011100111 land-reform 24 -10011100111 decoupling 25 -10011100111 consignment 25 -10011100111 capital-raising 26 -10011100111 stock-repurchase 29 -10011100111 trade-in 32 -10011100111 debt-swap 33 -10011100111 cost-sharing 36 -10011100111 conservatorship 37 -10011100111 phase-in 37 -10011100111 check-kiting 39 -10011100111 debt-restructuring 40 -10011100111 capital-spending 48 -10011100111 debt-relief 48 -10011100111 partition 48 -10011100111 reincorporation 49 -10011100111 UDAG 51 -10011100111 desegregation 53 -10011100111 credit-easing 58 -10011100111 resettlement 59 -10011100111 debt-reduction 63 -10011100111 price-support 65 -10011100111 divestment 66 -10011100111 stock-option 66 -10011100111 belt-tightening 83 -10011100111 break-up 86 -10011100111 kickback 92 -10011100111 cost-reduction 95 -10011100111 kidnapping 100 -10011100111 credit-tightening 100 -10011100111 shareholder-rights 103 -10011100111 early-retirement 104 -10011100111 anti-inflation 127 -10011100111 extradition 153 -10011100111 denationalization 163 -10011100111 stabilization 174 -10011100111 streamlining 227 -10011100111 rescheduling 237 -10011100111 profit-sharing 258 -10011100111 succession 312 -10011100111 austerity 352 -10011100111 divestiture 385 -10011100111 refinancing 531 -10011100111 privatization 599 -10011100111 liquidation 760 -10011100111 bailout 775 -10011100111 cost-cutting 800 -10011100111 recapitalization 1442 -10011100111 reorganization 2354 -10011100111 peace 2495 -10011100111 retirement 2527 -10011100111 restructuring 6567 -10011101000 8.75-dollar 1 -10011101000 LaFontant-Baker 1 -10011101000 95.55 1 -10011101000 1,367,000 1 -10011101000 period-piece 1 -10011101000 legitimate-enough 1 -10011101000 switchback 1 -10011101000 gasoline-content 1 -10011101000 Chita 1 -10011101000 15,972 1 -10011101000 multi-medal 1 -10011101000 Sigoloff-Drexel 1 -10011101000 wintergreen-scented 1 -10011101000 management-buy-out 1 -10011101000 share-and-cash 1 -10011101000 outermost 1 -10011101000 four-class 1 -10011101000 bond-exchange 1 -10011101000 physician's-office 1 -10011101000 biocide 1 -10011101000 shellacking 1 -10011101000 Shearson-backed 1 -10011101000 less-adored 1 -10011101000 seven-million-share 1 -10011101000 -a-share 1 -10011101000 worm-carrying 1 -10011101000 below-the-Beltway 1 -10011101000 canned-goods 1 -10011101000 deaccession 1 -10011101000 Euromarks 1 -10011101000 three-month-leave 1 -10011101000 untender 1 -10011101000 Pereslavl-Zalessky 1 -10011101000 Yawata 1 -10011101000 Chun-Nakasone 1 -10011101000 Carquinez 1 -10011101000 green-tubed 1 -10011101000 80-mile-an-hour 1 -10011101000 croc-sized 1 -10011101000 pro-deregulation 1 -10011101000 middle-voiced 1 -10011101000 non-Dutch-produced 1 -10011101000 bone-crushing 1 -10011101000 350-pence 1 -10011101000 notes-exchange 1 -10011101000 price-floor 1 -10011101000 shoptalk 1 -10011101000 660-pence 1 -10011101000 price-fall 1 -10011101000 cardboard-packing 1 -10011101000 rottenest 1 -10011101000 12-dollar-a-share 1 -10011101000 college-textbook 1 -10011101000 interim-aid 1 -10011101000 precursory 1 -10011101000 request.The 1 -10011101000 often-subtle 1 -10011101000 Swit 1 -10011101000 14-dollar-a-share 1 -10011101000 160-pence-a-share 1 -10011101000 Noranda-Trelleborg 1 -10011101000 890-pence 1 -10011101000 siege-and-search 1 -10011101000 CULOTTES 1 -10011101000 Magellanic 1 -10011101000 horns-four 1 -10011101000 big-navy 1 -10011101000 830-foot 1 -10011101000 furthur-sweetened 1 -10011101000 dog-pile 1 -10011101000 baseball-bat-sized 1 -10011101000 quarter-and 1 -10011101000 ploughman 1 -10011101000 form/instant 1 -10011101000 franc-a-share 1 -10011101000 Sovilla 1 -10011101000 baseline-basher 1 -10011101000 can-plant 1 -10011101000 diamond-polishing 1 -10011101000 receptor-equipped 1 -10011101000 metalforming 1 -10011101000 320-megabyte 1 -10011101000 85-megabyte 1 -10011101000 coprocessor 1 -10011101000 Sindi 1 -10011101000 hand-hewn 1 -10011101000 nova 1 -10011101000 self-reflexive 1 -10011101000 orange-and-white 1 -10011101000 cold-tolerance 1 -10011101000 red-cushioned 1 -10011101000 mechanical-movement 1 -10011101000 Shaker-like 1 -10011101000 pre-litigation 1 -10011101000 seperate 1 -10011101000 multiplestep 1 -10011101000 850-pence-a-share 1 -10011101000 135-mile-an-hour 1 -10011101000 micros 1 -10011101000 ear-piercing 1 -10011101000 10-dollar-a-share 1 -10011101000 free-air-conditioning 1 -10011101000 50-mile-an-hour 2 -10011101000 merit-award 2 -10011101000 cash-and-shares 2 -10011101000 Purolator-Hutton 2 -10011101000 U.S.-negotiated 2 -10011101000 890-pence-a-share 2 -10011101000 tuneless 2 -10011101000 twotier 2 -10011101000 voluntary-severance 2 -10011101000 below-book-value 2 -10011101000 cash-and-debenture 2 -10011101000 minority-stake 4 -10011101000 Ciba-Geigy/Chiron 5 -10011101000 dollar-a-share 11 -10011101000 all-paper 12 -10011101000 cash-back 19 -10011101000 self-tender 37 -10011101000 tender 5972 -10011101000 sweetened 966 -10011101001 Inkatha-UDF 1 -10011101001 trade-education 1 -10011101001 one-week-old 1 -10011101001 management-Bass 1 -10011101001 combat-proven 1 -10011101001 French-U.S. 1 -10011101001 post-hoc 1 -10011101001 pass-rush-based 1 -10011101001 anti-Kennedy 1 -10011101001 lastditch 1 -10011101001 share-accumulation 1 -10011101001 bottom-drawer 1 -10011101001 foreignaid 1 -10011101001 acquisition-pool 1 -10011101001 multidwelling 1 -10011101001 123-page 1 -10011101001 build-in-Japan 1 -10011101001 sovereign-immunity 1 -10011101001 Contra-funding 1 -10011101001 pro-sugar-import-quota 1 -10011101001 bigger-than-usual 1 -10011101001 numercal 1 -10011101001 union-imposed 1 -10011101001 U.S.-missile 1 -10011101001 toilet-tissue 1 -10011101001 cook-and-freeze 1 -10011101001 intra-factional 1 -10011101001 soccer-pools 1 -10011101001 recording-studio 1 -10011101001 family-insurance 1 -10011101001 long-murmured 1 -10011101001 court-named 1 -10011101001 team-sport 1 -10011101001 worker-performance 1 -10011101001 telephone-sales 1 -10011101001 once-in-a-millennium 1 -10011101001 shrimp-shaped 1 -10011101001 sometimes-passionate 1 -10011101001 read-the-book 1 -10011101001 buyout-related 1 -10011101001 107,000-acre 1 -10011101001 Euro-Asian 1 -10011101001 get-soft 1 -10011101001 Siemens-GEC 1 -10011101001 GEC-Siemens 1 -10011101001 two-pipeline 1 -10011101001 print-advertising 1 -10011101001 donkey-headed 1 -10011101001 U.S.-only 1 -10011101001 control-rod 1 -10011101001 810-pence-a-share 1 -10011101001 Kanga-Roll 1 -10011101001 job-rotation 1 -10011101001 personal-greed 1 -10011101001 13-month-long 1 -10011101001 ball-player 1 -10011101001 television-interview 1 -10011101001 Anglo-French-Israeli 1 -10011101001 source-reduction 1 -10011101001 now-nostalgic 1 -10011101001 tantalum-tungsten 1 -10011101001 back-county 1 -10011101001 pre-deployed 1 -10011101001 borderland 1 -10011101001 FDA-mandated 1 -10011101001 prefatory 1 -10011101001 center-front 1 -10011101001 2,400-square-foot 1 -10011101001 computer-centers 1 -10011101001 Turkish-born 1 -10011101001 Micro-Sony 1 -10011101001 AT&T-Boeing 1 -10011101001 twice-spurned 1 -10011101001 dour-faced 1 -10011101001 even-worse 1 -10011101001 cost-tightening 1 -10011101001 Mephistophelean 1 -10011101001 political-reconstruction 1 -10011101001 child-safety 1 -10011101001 troop-withdrawal 1 -10011101001 260-page 1 -10011101001 chocolate-truffle 1 -10011101001 two-series 1 -10011101001 three-lane 1 -10011101001 shareholder-solicitation 1 -10011101001 billiard-company 1 -10011101001 second-choice 1 -10011101001 so-far-encouraging 1 -10011101001 subsidy-backed 1 -10011101001 more-pronounced 1 -10011101001 3,200-year-old 1 -10011101001 leather-shop 1 -10011101001 tongue-in-check 1 -10011101001 Calvi-related 1 -10011101001 country-store 1 -10011101001 mostly-stock 1 -10011101001 360,000-share 1 -10011101001 united-front 1 -10011101001 singleyear 1 -10011101001 stock-support 1 -10011101001 mustsign 1 -10011101001 moderate-cost 1 -10011101001 bulk-building 1 -10011101001 non-robotic 1 -10011101001 bond-loss 1 -10011101001 slangier 1 -10011101001 pacifist-inclined 1 -10011101001 Texaco-sponsored 1 -10011101001 post-Ottoman 1 -10011101001 populist/progressive 1 -10011101001 high-steel 1 -10011101001 450-a-share 1 -10011101001 music-channel 1 -10011101001 near-religious 1 -10011101001 unhittable 1 -10011101001 parts-manufacturing 1 -10011101001 medium-to-long-term 1 -10011101001 three-ruble 1 -10011101001 woe-filled 1 -10011101001 back-to-fat 1 -10011101001 burro-management 1 -10011101001 nature-conservation 1 -10011101001 Rumanian 1 -10011101001 inflation-fed 1 -10011101001 cashout 1 -10011101001 investment-area 1 -10011101001 toughest-ever 1 -10011101001 20-plane 1 -10011101001 bridge-lending 1 -10011101001 astrology-driven 1 -10011101001 preventive-medicine 1 -10011101001 Kirghiz 1 -10011101001 newspaper-tabloid 1 -10011101001 return-on-savings 1 -10011101001 shock-radio 1 -10011101001 radical-right 1 -10011101001 bank-takeover 1 -10011101001 500-pence-a-share 1 -10011101001 oil-consumption 1 -10011101001 2525 1 -10011101001 Westway 1 -10011101001 near-unmatched 1 -10011101001 three-series 1 -10011101001 governors-association 1 -10011101001 school-improvement 1 -10011101001 7,000-franc 1 -10011101001 beer-and-hamburger 1 -10011101001 appliance-shop 1 -10011101001 provincewide 1 -10011101001 380-pence-a-share 1 -10011101001 rate-boost 1 -10011101001 low-bracket 1 -10011101001 computer-services-firm 1 -10011101001 late-inning 1 -10011101001 coal-contract 1 -10011101001 loop-shaped 1 -10011101001 life-affirming 1 -10011101001 career-development 1 -10011101001 herpetological 1 -10011101001 evacuation-plan 1 -10011101001 head-cutting 1 -10011101001 Massachsetts 1 -10011101001 5,000-car 1 -10011101001 five-mark 1 -10011101001 1,000-mark 1 -10011101001 bare-knuckles 1 -10011101001 Brierley-led 1 -10011101001 rich-and-famous 1 -10011101001 peaches-and-cream 1 -10011101001 early-hours 1 -10011101001 bond-default 1 -10011101001 non-electric 1 -10011101001 Dutch-uncle 1 -10011101001 5,000-peso 1 -10011101001 cracked-open 1 -10011101001 branch-sale 1 -10011101001 early-reinforcement 1 -10011101001 none-too-veiled 1 -10011101001 throttle-control 1 -10011101001 twice-frustrated 1 -10011101001 Co.-757 1 -10011101001 hold-pat 1 -10011101001 long-blocked 1 -10011101001 tightly-controlled 1 -10011101001 bull's-eye-shaped 1 -10011101001 1,000-cruzado 1 -10011101001 risk/reward 1 -10011101001 4,000-franc 1 -10011101001 city-organized 1 -10011101001 pigskin-variety 1 -10011101001 overhwelming 1 -10011101001 plant-shop 1 -10011101001 goodfaith 1 -10011101001 emic/etic 1 -10011101001 government-bailout 1 -10011101001 production-threatening 1 -10011101001 labor-sponsored 1 -10011101001 import-screening 1 -10011101001 production-controlling 1 -10011101001 Spanish-born 1 -10011101001 10-week-leave 1 -10011101001 kind/generous/thoughtful/engaging 1 -10011101001 Socanav-Caisse 1 -10011101001 well-camouflaged 1 -10011101001 dollar-propping 1 -10011101001 punker 1 -10011101001 tanker-financing 1 -10011101001 pickle-store 1 -10011101001 CIA-sponsored 1 -10011101001 4,500-word 1 -10011101001 crunchie 1 -10011101001 young-skewing 1 -10011101001 clear-the-deck 1 -10011101001 name-the-flavor 1 -10011101001 Merrill-Lynch 1 -10011101001 all-services 1 -10011101001 stop-Giuliani 1 -10011101001 cleaner-burning 1 -10011101001 court-appoined 1 -10011101001 road-paving 1 -10011101001 state-retained 1 -10011101001 half-successful 1 -10011101001 last-gasp 1 -10011101001 radiation-safety 1 -10011101001 Hatfields-McCoys 1 -10011101001 joint-aid 1 -10011101001 bombproof 1 -10011101001 0.8-point 1 -10011101001 less-than-attractive 1 -10011101001 spill-cleanup 1 -10011101001 House-floor 1 -10011101001 multi-step 1 -10011101001 300-person 1 -10011101001 Asian-diplomacy 1 -10011101001 no-contest 2 -10011101001 five-wheeled 2 -10011101001 export-bonus 2 -10011101001 cannibalistic 2 -10011101001 19-nation 2 -10011101001 ruffed 2 -10011101001 last-chance 2 -10011101001 punchier 2 -10011101001 Messianic 2 -10011101001 not-guilty 2 -10011101001 trade-clearing 2 -10011101001 heaven-sent 2 -10011101001 loan-rescheduling 2 -10011101001 Ali-Frazier 2 -10011101001 dermatitis 2 -10011101001 Rondo 2 -10011101001 amatory 2 -10011101001 750-film 2 -10011101001 hostile-bid 2 -10011101001 commodity-market 2 -10011101001 558-mile 2 -10011101001 diamond-coated 2 -10011101001 change-of-ownership 2 -10011101001 silver-price 2 -10011101001 semiconductor-patent 2 -10011101001 recess-appointment 2 -10011101001 semiconductor-technology 2 -10011101001 less-partisan 2 -10011101001 farm-reform 2 -10011101001 persistant 2 -10011101001 save-the-hotel 2 -10011101001 nutria 2 -10011101001 three-decade 2 -10011101001 swizzle 2 -10011101001 E-mail 2 -10011101001 unsportsmanlike 2 -10011101001 Trion 2 -10011101001 firstround 2 -10011101001 Miesian 2 -10011101001 uncrowned 2 -10011101001 political-reform 2 -10011101001 singles-bar 2 -10011101001 fantasy-adventure 2 -10011101001 pile-on 2 -10011101001 more-creative 2 -10011101001 sale-lease-back 3 -10011101001 pilots-management 3 -10011101001 Guinness-Distillers 3 -10011101001 consumer-education 3 -10011101001 pre-indictment 3 -10011101001 gene-mapping 3 -10011101001 time-proven 3 -10011101001 domestic-incentive 3 -10011101001 loan-note 3 -10011101001 research-grant 3 -10011101001 bisneo 3 -10011101001 counterinsurgent 3 -10011101001 Ph.D 3 -10011101001 Democratic-backed 4 -10011101001 capital-maintenance 4 -10011101001 in-service 5 -10011101001 new-construction 5 -10011101001 monetary-growth 5 -10011101001 military-contract 5 -10011101001 sale/leaseback 5 -10011101001 liquid-yield 6 -10011101001 share-swap 7 -10011101001 David-and-Goliath 7 -10011101001 tax-exemption 7 -10011101001 cash-and-share 8 -10011101001 corporate-control 9 -10011101001 takover 10 -10011101001 come-from-behind 12 -10011101001 guardianship 12 -10011101001 hostile-takeover 14 -10011101001 commencement 28 -10011101001 keynote 56 -10011101001 leveraged-buyout 58 -10011101001 takeover 11667 -10011101001 last-ditch 75 -10011101010 court-related 1 -10011101010 stock-boosting 1 -10011101010 export-rule 1 -10011101010 Full-fare 1 -10011101010 best-deal 1 -10011101010 government-defined 1 -10011101010 Saatchi-DFS 1 -10011101010 Republic-LTV 1 -10011101010 National-USX 1 -10011101010 foreign-reserve 1 -10011101010 consumer-laws 1 -10011101010 court-case 1 -10011101010 basic-football 1 -10011101010 42-foot-high 1 -10011101010 765-pence-a-share 1 -10011101010 Sunstar-Butler 1 -10011101010 federally-aided 1 -10011101010 six-for-seven 1 -10011101010 toy-company 1 -10011101010 ever-rumored 1 -10011101010 sick-thrift 1 -10011101010 seatback 1 -10011101010 Sino-Syrian 1 -10011101010 Kohlberg-led 1 -10011101010 takeover-resistant 1 -10011101010 buyerless 1 -10011101010 Gas-SCEcorp 1 -10011101010 Ford-Lockheed 1 -10011101010 production-limitation 1 -10011101010 most-ambitious 1 -10011101010 yclical 1 -10011101010 untouted 1 -10011101010 Emery-Purolator 1 -10011101010 nuclear-scare 1 -10011101010 13-to-11 1 -10011101010 six-weeklong 1 -10011101010 exfoliative 1 -10011101010 Hughes-sized 1 -10011101010 altogether.The 1 -10011101010 government-guarded 1 -10011101010 single-lump 1 -10011101010 300-pence-a-share 1 -10011101010 politico-politicee 1 -10011101010 wildcard 1 -10011101010 FSLIC-supervised 1 -10011101010 Salomon-Phibro 1 -10011101010 Marwick-KMG 1 -10011101010 Encor-Aberford 1 -10011101010 Piedmont-USAir 1 -10011101010 Drexel-inspired 1 -10011101010 twotiered 1 -10011101010 wholeherd 1 -10011101010 state-assisted 1 -10011101010 government-encouraged 1 -10011101010 cash-and-note 1 -10011101010 tax-case 1 -10011101010 190-pence-a-share 1 -10011101010 lower-bidding 1 -10011101010 Federal-Tiger 1 -10011101010 Texas-thrift 1 -10011101010 Shearson/Hutton 1 -10011101010 Gibbons-led 1 -10011101010 Cossack-like 1 -10011101010 Pepperell-Stevens 1 -10011101010 whole-herd 1 -10011101010 Bristol-Myers-Squibb 1 -10011101010 mechanical/technical 1 -10011101010 MCO-Maxxam 1 -10011101010 full-firm 1 -10011101010 186-milewide 1 -10011101010 debt-structured 1 -10011101010 Bristol-Squibb 1 -10011101010 BBC/WNET 1 -10011101010 cowpox 1 -10011101010 forestry-industry 1 -10011101010 foreign-bank-debt 1 -10011101010 Bolognese 1 -10011101010 Coniston-backed 1 -10011101010 Pelican-style 1 -10011101010 65-month 1 -10011101010 forestry-sector 1 -10011101010 previously-reported 1 -10011101010 peristent 1 -10011101010 negligence-suit 1 -10011101010 Tasaki-Riger 1 -10011101010 RJR-style 1 -10011101010 Posner-led 1 -10011101010 Anglo-Swedish 1 -10011101010 FCC-approved 1 -10011101010 often-acrimonious 1 -10011101010 bottling-operation 1 -10011101010 nostalgia-provoking 1 -10011101010 Fabtex 1 -10011101010 life-time 1 -10011101010 night-opener 1 -10011101010 corbeled 1 -10011101010 Siemens-GEC-Plessey 1 -10011101010 government-decreed 1 -10011101010 remarkabe 1 -10011101010 sand-swept 1 -10011101010 comparitive 1 -10011101010 friend-ofthe-court 1 -10011101010 Lipton-Celestial 1 -10011101010 then-rumored 1 -10011101010 45day 1 -10011101010 Japanese/Chinese 1 -10011101010 pro-bono 2 -10011101010 450-pence-a-share 2 -10011101010 strife-free 2 -10011101010 non-caloric 2 -10011101010 now-terminated 2 -10011101010 thrift-plan 2 -10011101010 Noticiero 2 -10011101010 940-pence-a-share 2 -10011101010 exchange-of-stock 2 -10011101010 Sorg-Young 2 -10011101010 Finarte-Euromobiliare 2 -10011101010 next-largest 2 -10011101010 board-approved 2 -10011101010 five-step 2 -10011101010 junk-bond-financed 2 -10011101010 managementled 2 -10011101010 obscenity-law 2 -10011101010 friendly-suitor 2 -10011101010 currency-law 2 -10011101010 long-discussed 2 -10011101010 leverged 2 -10011101010 Arab-sponsored 2 -10011101010 550-pence-a-share 2 -10011101010 amalgamation-type 3 -10011101010 now-withdrawn 3 -10011101010 non-negotiated 3 -10011101010 management-union 3 -10011101010 lowball 3 -10011101010 1,194-page 3 -10011101010 200-mark 3 -10011101010 pro-Dukakis 3 -10011101010 Warner-Lorimar 3 -10011101010 pilot-led 4 -10011101010 stockswap 4 -10011101010 single-number 4 -10011101010 stock-for-stock 4 -10011101010 late-entry 4 -10011101010 Burroughs-Sperry 4 -10011101010 Campeau-Federated 4 -10011101010 Drexel-led 5 -10011101010 FSLIC-assisted 5 -10011101010 management-employee 5 -10011101010 employee-management 5 -10011101010 Compton-DFS 5 -10011101010 federally-assisted 5 -10011101010 second-step 6 -10011101010 Fujitsu-Fairchild 7 -10011101010 Drexel-backed 7 -10011101010 Rales-led 8 -10011101010 government-assisted 9 -10011101010 stock-and-cash 10 -10011101010 cash-and-stock 39 -10011101010 stock-swap 43 -10011101010 friend-of-the-court 85 -10011101010 two-step 88 -10011101010 out-of-court 150 -10011101010 management-led 322 -10011101010 friendly 1902 -10011101010 hostile 3500 -10011101010 leveraged 3712 -10011101011 much-shortened 1 -10011101011 mandate-bidding 1 -10011101011 Hankyu 1 -10011101011 UDAG-HoDAG 1 -10011101011 quarter-billion-dollar 1 -10011101011 Sony-CBS 1 -10011101011 15,000-square-mile 1 -10011101011 Ford-VW 1 -10011101011 dental-research 1 -10011101011 45-paragraph 1 -10011101011 midcampaign 1 -10011101011 Celnik-arranged 1 -10011101011 countervailable 1 -10011101011 lead-pigments 1 -10011101011 deep-ocean 1 -10011101011 34,000-word 1 -10011101011 re-aimed 1 -10011101011 anti-reality 1 -10011101011 phone-making 1 -10011101011 Spinks-Cooney 1 -10011101011 2,000th 1 -10011101011 per-column 1 -10011101011 advertising-slogan 1 -10011101011 atrium-capped 1 -10011101011 go-fast 1 -10011101011 single-laser 1 -10011101011 Santayanish 1 -10011101011 day-after-Christmas 1 -10011101011 semi-popular 1 -10011101011 nomination-acceptance 1 -10011101011 powder-keg 1 -10011101011 worker-student 1 -10011101011 credit-oriented 1 -10011101011 50-square-mile 1 -10011101011 DC-7 1 -10011101011 Mobius 1 -10011101011 camel-trading 1 -10011101011 down-in-the-mouth 1 -10011101011 48-nation 1 -10011101011 Gephardt-Harkin 1 -10011101011 rifle-and-machete 1 -10011101011 CIT-224 1 -10011101011 CIT-220+ 1 -10011101011 hoop-throwing 1 -10011101011 Ergonomic 1 -10011101011 pro-Seoul 1 -10011101011 utility-funded 1 -10011101011 sterling-yen 1 -10011101011 cocaine-addiction 1 -10011101011 one-for-50 1 -10011101011 endocrinology 1 -10011101011 7.5-million-share 1 -10011101011 firstplace 1 -10011101011 swap-meet 1 -10011101011 business-funded 1 -10011101011 presidential-looking 1 -10011101011 sports-business 1 -10011101011 blast-proof 1 -10011101011 economic-impact 1 -10011101011 Tyuratam 1 -10011101011 98-acre 1 -10011101011 fourth-round 1 -10011101011 been-around-the 1 -10011101011 half-won 1 -10011101011 nonmortal 1 -10011101011 1,562,800-share 1 -10011101011 baton-passing 1 -10011101011 15-word 1 -10011101011 superwarehouse 1 -10011101011 anti-Durant 1 -10011101011 inperson 1 -10011101011 computer-readable 1 -10011101011 36-minute 1 -10011101011 government-contract 1 -10011101011 Ridder-Tribune 1 -10011101011 video-market 1 -10011101011 tin-mining 1 -10011101011 sunder 1 -10011101011 auto-building 1 -10011101011 33-12 1 -10011101011 GTE-AT&T 1 -10011101011 welcome-aboard 1 -10011101011 bitterly-contested 1 -10011101011 over-hyped 1 -10011101011 air-brushed 1 -10011101011 quick-copy 1 -10011101011 451,000-share 1 -10011101011 16,246 1 -10011101011 telephone-to-wristwatch 1 -10011101011 interim-committee 1 -10011101011 undestroyed 1 -10011101011 cold-finished 1 -10011101011 283,200-share 1 -10011101011 919,168-share 1 -10011101011 180-foot 1 -10011101011 dozen-car 1 -10011101011 Fed-administration 1 -10011101011 libertarian-conservative 1 -10011101011 polished-wood 1 -10011101011 information-science 1 -10011101011 60-cents-a-gallon 1 -10011101011 house-decorating 1 -10011101011 insurance-banking 1 -10011101011 lamination 1 -10011101011 gardening-supplies 1 -10011101011 GM-Allied-Signal 1 -10011101011 contract-interpretation 1 -10011101011 still-spreading 1 -10011101011 digital-to-analog 1 -10011101011 tighter-than-anticipated 1 -10011101011 conclusory 1 -10011101011 drug-and-alcohol 1 -10011101011 cocaine-abuse 1 -10011101011 days-long 1 -10011101011 post-inaugural 1 -10011101011 13,000-dinar 1 -10011101011 family-confrontation 1 -10011101011 10-LP 1 -10011101011 yellow-big-head 1 -10011101011 biological-weapons-defense 1 -10011101011 two-dog 1 -10011101011 back-tax 1 -10011101011 African-bee 1 -10011101011 domestic-is-best 1 -10011101011 wafer-making 1 -10011101011 less-ambitious 1 -10011101011 1-for-15 1 -10011101011 3,500-acre 1 -10011101011 often-emotional 1 -10011101011 ichthyology 1 -10011101011 high-beam 1 -10011101011 rolling-on-the-floor 1 -10011101011 post-concert 1 -10011101011 760-yard 1 -10011101011 marble-tiled 1 -10011101011 5,300-foot 1 -10011101011 184-day-old 1 -10011101011 Americus-trust 1 -10011101011 newspaper-television 1 -10011101011 televideo-marketing 1 -10011101011 Washington-Tokyo 1 -10011101011 43-nation 1 -10011101011 team-tonnage 1 -10011101011 fathead 1 -10011101011 most-probable 1 -10011101011 1,000-for-1 1 -10011101011 72-acre 1 -10011101011 praetorian 1 -10011101011 pre-concert 1 -10011101011 onyx-handled 1 -10011101011 black-cowboy 1 -10011101011 warning-of-deed-restriction-violation 1 -10011101011 community-center 1 -10011101011 midnight-to-5-a.m. 1 -10011101011 floury 1 -10011101011 14-11 1 -10011101011 works-council 1 -10011101011 watergun 1 -10011101011 entrenched-manager 1 -10011101011 switch-making 1 -10011101011 VA-rate 1 -10011101011 segregative 1 -10011101011 twin-tube 1 -10011101011 six-acre 1 -10011101011 German-Canadian 1 -10011101011 suburban-Dallas 1 -10011101011 regulatory-body 1 -10011101011 magnetic-field 1 -10011101011 market-controlling 1 -10011101011 4,083,000-share 1 -10011101011 thirteen-ounce 1 -10011101011 three-seventh 1 -10011101011 Vietnam-like 1 -10011101011 12-building 1 -10011101011 minority-led 1 -10011101011 corporate-financed 1 -10011101011 dentist-style 1 -10011101011 international-communications 1 -10011101011 1-for-1,000 1 -10011101011 squid-recipe 1 -10011101011 multi-company 1 -10011101011 three-alarm 1 -10011101011 anti-Mozambique 1 -10011101011 28,000-square-foot 1 -10011101011 ping-pong-ball 1 -10011101011 scientific-political 1 -10011101011 480-mile 1 -10011101011 French-dominated 1 -10011101011 major-championship 1 -10011101011 31-foot 1 -10011101011 Leonard/Duran 1 -10011101011 whorehouse 1 -10011101011 16-letter 1 -10011101011 Cooney-Tyson 1 -10011101011 tax-opinion 1 -10011101011 500-word 1 -10011101011 used-can 1 -10011101011 to-and-fro 1 -10011101011 cat-vs.-bird 1 -10011101011 violence-marred 1 -10011101011 all-European 1 -10011101011 head-tax 1 -10011101011 top-of-the-ticket 1 -10011101011 testing-the-waters 1 -10011101011 recipe/comic 1 -10011101011 765-foot-long 1 -10011101011 freedom-of-thought 1 -10011101011 Bush-Dole 1 -10011101011 BP-government 1 -10011101011 48-game 1 -10011101011 4,250,000-share 1 -10011101011 phone-directory 1 -10011101011 not-so-glamorous 1 -10011101011 slanging 1 -10011101011 out-moded 1 -10011101011 2.15-million 1 -10011101011 3.7-acre 1 -10011101011 truth-may-be-stranger-than-fiction 1 -10011101011 GPA-Airbus 1 -10011101011 Democratic-majority 1 -10011101011 mass-manufacturing 1 -10011101011 Leath-Aspin 1 -10011101011 Reagan-Mondale 1 -10011101011 13-minute 1 -10011101011 humpbacked 1 -10011101011 land-condemnation 1 -10011101011 two-earner/two-job 1 -10011101011 multi-hued 1 -10011101011 500-mile-an-hour 1 -10011101011 62-page 1 -10011101011 jount 1 -10011101011 Montgomery-based 1 -10011101011 international-operations 1 -10011101011 27,560 1 -10011101011 MK-50 1 -10011101011 wheel-clamping 1 -10011101011 mud-soaked 1 -10011101011 tax-write-off 1 -10011101011 natiowide 1 -10011101011 women's-studies 1 -10011101011 Ron-to-Yasu 1 -10011101011 department-funded 1 -10011101011 1-ounce 1 -10011101011 level-toned 1 -10011101011 castle-shaped 1 -10011101011 weeks-old 1 -10011101011 634,000-share 1 -10011101011 Bush/Rather 1 -10011101011 sharp-tongued 1 -10011101011 transitional-bilingual 1 -10011101011 seating-support 1 -10011101011 4,500-mile 1 -10011101011 Tallahassee-based 1 -10011101011 direct-pay 1 -10011101011 independence-day 1 -10011101011 homosexual-oriented 1 -10011101011 sterling/mark 1 -10011101011 swap-offer 1 -10011101011 breadbakers 1 -10011101011 cheaper-to-produce 1 -10011101011 annual-report 1 -10011101011 AEG-designed 1 -10011101011 I-am-a-democrat 1 -10011101011 many-armed 1 -10011101011 100-lane 1 -10011101011 mad-cap 1 -10011101011 183,000-unit 1 -10011101011 communications-equipment-manufacturing 1 -10011101011 bulk-mail 1 -10011101011 fourway 1 -10011101011 100-for-1 1 -10011101011 wedding-anniversary 1 -10011101011 English-rights 1 -10011101011 baby-picture 1 -10011101011 starting-gate 1 -10011101011 88-minute 1 -10011101011 highly-confident 1 -10011101011 21-foot-wide 1 -10011101011 220,000-acre 1 -10011101011 heat-stable 1 -10011101011 fourth-down 1 -10011101011 multiple-rocket 1 -10011101011 big-stock/little-stock 1 -10011101011 stockloan 1 -10011101011 stock-receiving 1 -10011101011 Chrysler-Belarus 1 -10011101011 medal-round 1 -10011101011 Jafco-Nomura 1 -10011101011 anti-Edwards 1 -10011101011 Toyota-GM 1 -10011101011 mini-trading 1 -10011101011 ultrashort 1 -10011101011 text-to-type 1 -10011101011 Merc-Reuters 1 -10011101011 380,000-subscriber 1 -10011101011 one-for-100 1 -10011101011 vile-tasting 1 -10011101011 three-race 1 -10011101011 Pacificus 1 -10011101011 M-50 1 -10011101011 Macmillan/McGraw 1 -10011101011 civil-case 1 -10011101011 Amoco-Exxon 1 -10011101011 pottery-packed 1 -10011101011 sod-turning 1 -10011101011 AT&T-Italtel 1 -10011101011 softer-core 1 -10011101011 popgun 1 -10011101011 better-fitting 1 -10011101011 3,000-name 1 -10011101011 cranberry-growers 1 -10011101011 anticorruption 1 -10011101011 action-crammed 1 -10011101011 67-43 1 -10011101011 Dole-Bush 1 -10011101011 pro-maritime 1 -10011101011 livestock-products 1 -10011101011 small-shopkeepers 1 -10011101011 121-page 1 -10011101011 impossible-to-satisfy 1 -10011101011 threater 1 -10011101011 crop-eradication 1 -10011101011 pricedepressing 1 -10011101011 demobilizea 1 -10011101011 seven-unit 1 -10011101011 loudening 1 -10011101011 Hungary-Austria 1 -10011101011 cochlear-implant 1 -10011101011 2,000-room 1 -10011101011 54-nation 1 -10011101011 14-car 1 -10011101011 corporate-bond-syndicate 1 -10011101011 station/hydro 1 -10011101011 consumer-billing 1 -10011101011 Tyson-Cayton 1 -10011101011 71,000-share 1 -10011101011 pumped-water 1 -10011101011 Whirlpool-Philips 1 -10011101011 brown-glass 1 -10011101011 eight-partner 1 -10011101011 chin-out 1 -10011101011 110-man 1 -10011101011 unpermitted 1 -10011101011 topping-off 1 -10011101011 11-car 1 -10011101011 company-issued 1 -10011101011 busy-signal 1 -10011101011 GE-Siemens 1 -10011101011 party-sanctioned 1 -10011101011 insect-control 1 -10011101011 40th-anniversary 1 -10011101011 chemical-vapor 1 -10011101011 nuclear-based 1 -10011101011 midfive-figure 1 -10011101011 ICL-GE 1 -10011101011 Budapest-based 1 -10011101011 utility-drawn 1 -10011101011 37,000-square-foot 1 -10011101011 1-for-20 1 -10011101011 long-bitter 1 -10011101011 cashiering 1 -10011101011 chili-eating 1 -10011101011 500,000-dollar 1 -10011101011 1,798,600-share 1 -10011101011 big-bug 1 -10011101011 car-crunching 1 -10011101011 women-at-work 1 -10011101011 hand-squeeze 1 -10011101011 Bradford-led 1 -10011101011 school-crossing 1 -10011101011 mass-mail 1 -10011101011 nationalist-cause 1 -10011101011 matey 1 -10011101011 European-size 1 -10011101011 junior-national 1 -10011101011 board-control 1 -10011101011 155-mile 1 -10011101011 migratory-bird 1 -10011101011 debt-syndicate 1 -10011101011 27-mile 1 -10011101011 Reagan-Takeshita 1 -10011101011 drug-bill 1 -10011101011 425,000-share 1 -10011101011 21-17 1 -10011101011 450-room 1 -10011101011 whole-animal 1 -10011101011 Pentagon-appointed 1 -10011101011 future-not 1 -10011101011 genetherapy 1 -10011101011 pomp-filled 1 -10011101011 government-organized 2 -10011101011 multicity 2 -10011101011 Philips/GEC 2 -10011101011 NuMed 2 -10011101011 videocasette 2 -10011101011 one-for-two 2 -10011101011 six-to-one 2 -10011101011 much-despised 2 -10011101011 rough-and-ready 2 -10011101011 grocery-shopping 2 -10011101011 bill-signing 2 -10011101011 70-foot-long 2 -10011101011 spare-tire 2 -10011101011 above-the-knee 2 -10011101011 no-nuke 2 -10011101011 resource-intensive 2 -10011101011 Tyson-Spinks 2 -10011101011 phone-based 2 -10011101011 health-publishing 2 -10011101011 one-round 2 -10011101011 kerosene-based 2 -10011101011 opening-game 2 -10011101011 113-page 2 -10011101011 space-telescope 2 -10011101011 reinforced-concrete 2 -10011101011 migraine-art 2 -10011101011 smart-money 2 -10011101011 two-line 2 -10011101011 wham 2 -10011101011 thermos-making 2 -10011101011 cross-continental 2 -10011101011 Galanis-linked 2 -10011101011 stock-registration 2 -10011101011 Astro-Pizza 2 -10011101011 three-sentence 2 -10011101011 230-mile 2 -10011101011 Oak-Mitsui 2 -10011101011 needleless 2 -10011101011 video-duplicating 2 -10011101011 500-acre 2 -10011101011 foreign-funded 2 -10011101011 75-mile 2 -10011101011 salad-dressing 2 -10011101011 state-of-the-state 2 -10011101011 hospital-industry 2 -10011101011 party-to-party 2 -10011101011 decrement 2 -10011101011 gloom-filled 2 -10011101011 telephone-service 2 -10011101011 IBM-Toshiba 2 -10011101011 77-day 2 -10011101011 540-mile 2 -10011101011 fashion-magazine 2 -10011101011 three-character 2 -10011101011 state-of-the-nation 2 -10011101011 Copenhagen-based 2 -10011101011 much-deserved 2 -10011101011 still-unsettled 2 -10011101011 700,000-share 2 -10011101011 hyped-up 2 -10011101011 178-delegate 2 -10011101011 bubonic 3 -10011101011 Macmillan/McGraw-Hill 3 -10011101011 post-meeting 3 -10011101011 4,000-mile 3 -10011101011 customer-complaint 3 -10011101011 58-million-bag 3 -10011101011 slow-burning 3 -10011101011 100,000-share 3 -10011101011 long-sterling/short-mark 3 -10011101011 crank-it-up 3 -10011101011 1-for-25 3 -10011101011 Dukakis-Jackson 3 -10011101011 U.S.-Panama 3 -10011101011 GEC-Plessey 3 -10011101011 Ford-like 3 -10011101011 250-mile 3 -10011101011 43-page 3 -10011101011 business-type 3 -10011101011 300,000-share 3 -10011101011 Brierley-Packer 3 -10011101011 crescent-shaped 3 -10011101011 pre-Olympics 3 -10011101011 15-unit 3 -10011101011 submarine-seeking 3 -10011101011 jail-house 3 -10011101011 countywide 3 -10011101011 four-paragraph 3 -10011101011 suburban-Chicago 3 -10011101011 Senate-backed 3 -10011101011 joint-research 3 -10011101011 IBM-Fiat 3 -10011101011 HUD-backed 3 -10011101011 quarterfinal 3 -10011101011 strongly-worded 3 -10011101011 multi-image 3 -10011101011 intra-industry 3 -10011101011 Quayle-Bentsen 3 -10011101011 sister-city 4 -10011101011 yen-mark 4 -10011101011 concentration-camp 4 -10011101011 1-for-7 4 -10011101011 Hagler-Leonard 4 -10011101011 Westinghouse-Airship 4 -10011101011 ITT-CGE 4 -10011101011 one-for-10 4 -10011101011 international-banking 4 -10011101011 globe-girdling 4 -10011101011 1-for-8 4 -10011101011 hobby-based 4 -10011101011 brake-light 4 -10011101011 turbine-vane 4 -10011101011 long-forgotten 4 -10011101011 five-million-share 4 -10011101011 radio-television 4 -10011101011 three-foot-wide 5 -10011101011 Swiss-Swedish 5 -10011101011 half-page 5 -10011101011 110-mile 5 -10011101011 tax-treaty 5 -10011101011 three-paragraph 5 -10011101011 nuclear-arms-control 5 -10011101011 ribbon-cutting 5 -10011101011 pit-bull 5 -10011101011 two-sentence 6 -10011101011 23-page 6 -10011101011 Badin 6 -10011101011 dusk-to-dawn 6 -10011101011 1-for-50 6 -10011101011 pro-sanctions 6 -10011101011 one-for-four 6 -10011101011 12-foot-high 6 -10011101011 joint-production 6 -10011101011 sonobuoy 6 -10011101011 financial-markets 6 -10011101011 5-for-1 6 -10011101011 pre-hearing 7 -10011101011 one-paragraph 7 -10011101011 two-paragraph 7 -10011101011 40-nation 7 -10011101011 1-for-3 7 -10011101011 military-style 8 -10011101011 1-for-2 9 -10011101011 Sino-foreign 9 -10011101011 truck-leasing 9 -10011101011 1-for-4 10 -10011101011 knockdown 10 -10011101011 nonregulated 11 -10011101011 hand-to-hand 12 -10011101011 profit-and-loss 13 -10011101011 round-the-world 13 -10011101011 1-for-10 13 -10011101011 ion 14 -10011101011 pre-sentencing 18 -10011101011 private-placement 19 -10011101011 five-page 19 -10011101011 1-for-5 23 -10011101011 one-sentence 26 -10011101011 long-simmering 29 -10011101011 four-page 29 -10011101011 three-page 30 -10011101011 collaborative 31 -10011101011 nuclear-waste 38 -10011101011 pastoral 41 -10011101011 two-page 44 -10011101011 hand-picked 63 -10011101011 terse 80 -10011101011 non-binding 94 -10011101011 stumbling 214 -10011101011 televised 322 -10011101011 joint 5147 -10011101011 proxy 1999 -1001110110 world-export 1 -1001110110 postal-fraud 1 -1001110110 tenth-circuit 1 -1001110110 1,543 1 -1001110110 Beijing-backed 1 -1001110110 1987-89 1 -1001110110 CIVIL-RIGHTS 1 -1001110110 Riggs-Itakura 1 -1001110110 swamp-bound 1 -1001110110 multiprovince 1 -1001110110 defense-contact 1 -1001110110 5,135 1 -1001110110 rocket-docket 1 -1001110110 stengthened 1 -1001110110 now-toothless 1 -1001110110 trade-complaint 1 -1001110110 first-circuit 1 -1001110110 riot-ready 1 -1001110110 Russian-imposed 1 -1001110110 iron-pumping 1 -1001110110 pro-wilderness 1 -1001110110 1930s-era 1 -1001110110 10-million-franc 1 -1001110110 Marxist-ruled 1 -1001110110 10th-circuit 1 -1001110110 criminal-coddling 1 -1001110110 austral-denominated 1 -1001110110 IRI-like 1 -1001110110 non-Kurdish 1 -1001110110 allpowerful 1 -1001110110 25-month-old 1 -1001110110 often-blander 1 -1001110110 more-holistic 1 -1001110110 2,909 1 -1001110110 14,459 1 -1001110110 financing-incentive 1 -1001110110 review-commission 1 -1001110110 4,058 1 -1001110110 750-page 1 -1001110110 national-unity 1 -1001110110 non-obtrusive 1 -1001110110 methods-engineering 1 -1001110110 film-market 1 -1001110110 credit-because 1 -1001110110 six-day-old 1 -1001110110 nuclear-laden 1 -1001110110 wind-pool 1 -1001110110 city-backed 1 -1001110110 Marxist-style 1 -1001110110 building-siding 1 -1001110110 nickel-sized 1 -1001110110 litigation-wary 1 -1001110110 stimulus-laden 1 -1001110110 professional-athlete 1 -1001110110 bass-tourney 1 -1001110110 fibric-acid 1 -1001110110 Boane 1 -1001110110 circuit-riding 1 -1001110110 Baker-fashioned 1 -1001110110 wildlife-law 1 -1001110110 SPD-led 1 -1001110110 32-month-old 1 -1001110110 20year 1 -1001110110 fair-payment 1 -1001110110 Cuban-instigated 1 -1001110110 U.S.ICanada 1 -1001110110 early-retirement-incentive 1 -1001110110 boat-show 1 -1001110110 white-led 1 -1001110110 anti-enroadment 1 -1001110110 ministry-level 1 -1001110110 always-balanced 1 -1001110110 race-driven 1 -1001110110 big-figure 1 -1001110110 health-protecting 1 -1001110110 27-month-old 1 -1001110110 military-linked 1 -1001110110 single-faction 1 -1001110110 1718 1 -1001110110 federals 1 -1001110110 post-occupation 1 -1001110110 Continentwide 1 -1001110110 faction-torn 1 -1001110110 semi-deranged 1 -1001110110 roadhouse 1 -1001110110 non-PRI 1 -1001110110 Deleware 1 -1001110110 21-square-mile 1 -1001110110 Somalian 1 -1001110110 WORLDLY 1 -1001110110 manager-matching 1 -1001110110 Social-Liberal 1 -1001110110 free-market-promoting 1 -1001110110 non-debt 1 -1001110110 fussier 1 -1001110110 minority-recruiting 1 -1001110110 Meese-Deaver-Nofziger-North 1 -1001110110 extra-executive 1 -1001110110 Watkins-appointed 1 -1001110110 defense-oversight 1 -1001110110 whisper-stock 1 -1001110110 thoroughbred-racing 1 -1001110110 habeas-corpus 1 -1001110110 commodity-exchange 1 -1001110110 paper-manipulating 1 -1001110110 Republican-selected 1 -1001110110 tourism-promotion 1 -1001110110 TUC 1 -1001110110 fourth-circuit 1 -1001110110 Waive 1 -1001110110 newspaper-TV 1 -1001110110 custom-written 1 -1001110110 more-tightly 1 -1001110110 outside-service 1 -1001110110 trade-reporting 1 -1001110110 Hoshiarpur 1 -1001110110 unruliest 1 -1001110110 processing-plant 1 -1001110110 post-Monet 1 -1001110110 French-model 1 -1001110110 ever-attentive 1 -1001110110 left-center 1 -1001110110 city-county 1 -1001110110 yellow-light 1 -1001110110 rodeo-riding 1 -1001110110 then-Missouri 1 -1001110110 high-adventure 1 -1001110110 130-sponsor 1 -1001110110 anti-popular 1 -1001110110 IRS-proposed 1 -1001110110 Malay-dominated 1 -1001110110 Noriega-backed 1 -1001110110 federal-bank 1 -1001110110 highranking 1 -1001110110 sub-granting 1 -1001110110 Alaouite 1 -1001110110 Simmons-controlled 1 -1001110110 diamond-cutting 1 -1001110110 ticket-writing 1 -1001110110 military-appointed 1 -1001110110 church-funded 1 -1001110110 Sans-a-belt 1 -1001110110 corporate-ethics 1 -1001110110 Cheryomushky 1 -1001110110 positive-seeming 1 -1001110110 still-rapid 1 -1001110110 REAR-VIEW 1 -1001110110 post-Zia 1 -1001110110 Cuban-supported 1 -1001110110 nonspecific 1 -1001110110 film-festival 1 -1001110110 securities-enforcement 1 -1001110110 EPA-certified 1 -1001110110 West-German 1 -1001110110 Nsanje 1 -1001110110 God-sponsored 1 -1001110110 60-to-65-year-old 1 -1001110110 single-tier 1 -1001110110 ever-new 1 -1001110110 less-fiery 1 -1001110110 chili-loving 1 -1001110110 federally-chartered 1 -1001110110 more-representative 1 -1001110110 single-count 1 -1001110110 overbloated 1 -1001110110 share-buy-back 1 -1001110110 119-page 1 -1001110110 Akasaka 1 -1001110110 guest-conducting 1 -1001110110 more-humane 2 -1001110110 Sofres 2 -1001110110 federal-circuit 2 -1001110110 301-member 2 -1001110110 pro-UAW 2 -1001110110 savings-oriented 2 -1001110110 10-judge 2 -1001110110 Socialist-Communist 2 -1001110110 saucepan 2 -1001110110 film-school 2 -1001110110 bloody-minded 2 -1001110110 850-member 2 -1001110110 sixth-circuit 2 -1001110110 industrial-property 2 -1001110110 Class-1 2 -1001110110 five-to-four 2 -1001110110 poorer-performing 2 -1001110110 search-and-seizure 2 -1001110110 less-complex 2 -1001110110 congresssional 2 -1001110110 Bazargan 2 -1001110110 Saint-Jean 2 -1001110110 Djiboutian 2 -1001110110 general-practice 2 -1001110110 insurance-benefit 2 -1001110110 criminal-court 2 -1001110110 Catalonian 2 -1001110110 court-mandated 2 -1001110110 Hunt-related 2 -1001110110 takeoff-warning 2 -1001110110 eighth-circuit 2 -1001110110 drug-forfeiture 2 -1001110110 defense-fraud 2 -1001110110 weapons-testing 2 -1001110110 dirt-road 2 -1001110110 poverty-level 2 -1001110110 stand-pat 3 -1001110110 two-chamber 3 -1001110110 research-related 3 -1001110110 slide-in 3 -1001110110 housing-authority 3 -1001110110 messiest 3 -1001110110 BNS-related 3 -1001110110 art-house 3 -1001110110 military-civilian 3 -1001110110 post-Noriega 3 -1001110110 quasi-federal 3 -1001110110 one-world 3 -1001110110 120,000-man 3 -1001110110 1,482 3 -1001110110 high-employment 4 -1001110110 Carter-appointed 4 -1001110110 near-constant 4 -1001110110 second-circuit 4 -1001110110 third-circuit 4 -1001110110 Vietnamese-backed 4 -1001110110 post-conviction 4 -1001110110 plain-clothes 5 -1001110110 mandatory-use 5 -1001110110 red-light 5 -1001110110 44-nation 5 -1001110110 treble-damages 5 -1001110110 seventh-circuit 5 -1001110110 ninth-circuit 6 -1001110110 texas 6 -1001110110 state-utility 7 -1001110110 second-degree 9 -1001110110 Paraguayan 9 -1001110110 court-supervised 11 -1001110110 Solidarity-led 18 -1001110110 state-court 34 -1001110110 federal 23225 -1001110110 supplementary 76 -10011101110 undeposited 1 -10011101110 banruptcy-law 1 -10011101110 captive-shipper 1 -10011101110 single-elimination 1 -10011101110 customer-builder 1 -10011101110 Breakthru 1 -10011101110 anti-Toshiba 1 -10011101110 police/fire 1 -10011101110 wildlife-habitat 1 -10011101110 family-advice 1 -10011101110 open-court 1 -10011101110 dual-source 1 -10011101110 single-Brated 1 -10011101110 dazedly 1 -10011101110 HartScott 1 -10011101110 seatcloth 1 -10011101110 better-franchised 1 -10011101110 common-market 1 -10011101110 vein-clogging 1 -10011101110 bankrutpcy-court 1 -10011101110 closed-court 1 -10011101110 intersystem 1 -10011101110 praticcal 1 -10011101110 3,000-person 1 -10011101110 intermaterial 1 -10011101110 CIA-Mossad 1 -10011101110 83A 1 -10011101110 85A 1 -10011101110 suspense-snuffing 1 -10011101110 anti-liability 1 -10011101110 210-page 1 -10011101110 Baker-inspired 1 -10011101110 asbestos-lawsuit 1 -10011101110 rate-review 1 -10011101110 delaying-action 1 -10011101110 post-Chapter 1 -10011101110 horse-and-buggy 1 -10011101110 non-vivid 1 -10011101110 patent-type 1 -10011101110 still-intense 1 -10011101110 Etruscans 1 -10011101110 Middendorf. 1 -10011101110 non-licensees 1 -10011101110 352-page 1 -10011101110 U.S.-Greek 1 -10011101110 greed-heads 1 -10011101110 Liberal-NDP 1 -10011101110 bankruptcy-court-protection 1 -10011101110 defense-economic 1 -10011101110 bankruptcty-law 1 -10011101110 WTTW-Channel 1 -10011101110 criminal-information 1 -10011101110 David-vs.-Goliath 1 -10011101110 Maine-grown 1 -10011101110 outlanders 1 -10011101110 23,885 1 -10011101110 roped-off 1 -10011101110 legal-style 1 -10011101110 262-page 1 -10011101110 9-approximately 1 -10011101110 presidential-congressional 1 -10011101110 producer-consumer 1 -10011101110 Pervasive 1 -10011101110 composition. 1 -10011101110 aug. 1 -10011101110 5,240.5 1 -10011101110 nerly 1 -10011101110 bargained-for 1 -10011101110 16MHz 1 -10011101110 DISQUALIFIED 1 -10011101110 non-Chapter 1 -10011101110 emasculates 1 -10011101110 price-and-seasonally 1 -10011101110 8K 1 -10011101110 b11.01 1 -10011101110 _ 1 -10011101110 country-versus-country 1 -10011101110 a11.66 1 -10011101110 b13.22 1 -10011101110 b11.72 1 -10011101110 b12.91 1 -10011101110 defense-consultant 1 -10011101110 public/private-sector 1 -10011101110 precompetitive 1 -10011101110 option-based 1 -10011101110 presidential/senatorial 1 -10011101110 bankrupty-law 1 -10011101110 BREAKING-UP 1 -10011101110 unfaltering 1 -10011101110 AIDS-based 2 -10011101110 72-hour 2 -10011101110 cordite 2 -10011101110 noise-related 2 -10011101110 below-freezing 2 -10011101110 loss-of-consortium 2 -10011101110 pre-Chapter 2 -10011101110 vaulter 2 -10011101110 power-disturbance 2 -10011101110 bankrutpcy-law 2 -10011101110 bankruptcylaw 3 -10011101110 interbrand 3 -10011101110 seaonally 3 -10011101110 bankrupcty-law 4 -10011101110 hand-eye 4 -10011101110 tortious 4 -10011101110 contempt-of-Congress 4 -10011101110 10-Q 6 -10011101110 bankruptcy-code 8 -10011101110 hedonic 11 -10011101110 13-D 29 -10011101110 treble 36 -10011101110 Deskpro 41 -10011101110 compensatory 181 -10011101110 bankruptcy-court 212 -10011101110 punitive 728 -10011101110 bankruptcy-law 1492 -10011101110 seasonally 1510 -10011101110 Chapter 2543 -10011101111 Acoma 1 -10011101111 nine-woman 1 -10011101111 Castelo 1 -10011101111 140,000-member 1 -10011101111 seven-millimeter 1 -10011101111 toughest-sentencing 1 -10011101111 construction-wage 1 -10011101111 11-judge 1 -10011101111 inter-departmental 1 -10011101111 26-officer 1 -10011101111 health-store 1 -10011101111 crash-survivability 1 -10011101111 11th-circuit 1 -10011101111 37-judge 1 -10011101111 intermediate-credit 1 -10011101111 drumhead 1 -10011101111 joint-ownership 1 -10011101111 unidentifed 1 -10011101111 distict 1 -10011101111 banckruptcy 1 -10011101111 100-foot-tall 1 -10011101111 antiterrorism 1 -10011101111 shipbuilding-subsidy 1 -10011101111 rackeetering 1 -10011101111 non-enforcement 1 -10011101111 Guinness-requested 1 -10011101111 ex-Colorado 1 -10011101111 bourbon-soaked 1 -10011101111 farmland-idling 1 -10011101111 kangeroo 1 -10011101111 anti-testing 1 -10011101111 solvency-threatening 1 -10011101111 warehouse-like 1 -10011101111 family-court 1 -10011101111 much-divided 1 -10011101111 Rehnquist-Scalia 1 -10011101111 woman-sized 1 -10011101111 truth-in-lending 1 -10011101111 bankrutcpty 1 -10011101111 mega-circuit 1 -10011101111 land-disposal 1 -10011101111 Food-for-Peace 1 -10011101111 FACA. 1 -10011101111 thousand-page 1 -10011101111 bankborrowing 1 -10011101111 IMAGINARY 1 -10011101111 emissions-warranty 1 -10011101111 Rationalizing 1 -10011101111 natural-gas-pricing 1 -10011101111 wedding-cake 1 -10011101111 instant-replay 1 -10011101111 longshoreman 1 -10011101111 similar-ounding 1 -10011101111 1,832 1 -10011101111 apellate 1 -10011101111 Testy 1 -10011101111 restrictive-practices 1 -10011101111 patient-dumping 1 -10011101111 bankuptcy 1 -10011101111 construction-site 1 -10011101111 ash-dumping 1 -10011101111 common-pleas 1 -10011101111 food-surplus 1 -10011101111 thhern 1 -10011101111 solar-industry 1 -10011101111 railway-labor 1 -10011101111 summary-trial 2 -10011101111 incognito 2 -10011101111 friend-of-the 2 -10011101111 bankrupcy 2 -10011101111 driver-training 2 -10011101111 appelate 2 -10011101111 viceregal 2 -10011101111 secret-service 2 -10011101111 appellate-court 2 -10011101111 superior-court 2 -10011101111 bankruptcy-protection 2 -10011101111 APPELLATE 2 -10011101111 farm-income 3 -10011101111 anti-graft 3 -10011101111 opt-in 3 -10011101111 circuit-court 3 -10011101111 Romanov 4 -10011101111 Castello 4 -10011101111 trial-court 6 -10011101111 KwaNdebele 6 -10011101111 bankrupcty 6 -10011101111 administrative-law 6 -10011101111 risk-assessment 8 -10011101111 district-court 11 -10011101111 small-claims 14 -10011101111 probate 38 -10011101111 chancery 50 -10011101111 11-member 51 -10011101111 supreme 213 -10011101111 appellate 230 -10011101111 circuit 619 -10011101111 grand 1811 -10011101111 district 2372 -10011101111 appeals 2816 -10011101111 bankruptcy 2893 -10011110000 mini-IMF 1 -10011110000 computer-sales 1 -10011110000 consumer-sales 1 -10011110000 truckstop-style 1 -10011110000 leather-wear 1 -10011110000 cruiseship 1 -10011110000 Toyota-Volkswagen 1 -10011110000 race-fixing 1 -10011110000 apparel-buying 1 -10011110000 buy-by-television 1 -10011110000 well-wrought 1 -10011110000 union-only 1 -10011110000 commodities-futures 1 -10011110000 bingo-parlor 1 -10011110000 cold-storage-facility 1 -10011110000 green-gray 1 -10011110000 1920s-style 1 -10011110000 census-taking 1 -10011110000 air-supply 1 -10011110000 paper-converting 1 -10011110000 toy-retailing 1 -10011110000 fabric-store 1 -10011110000 air-resupply 1 -10011110000 180.5-pound 1 -10011110000 multi-island 1 -10011110000 309-store 1 -10011110000 salmon-raising 1 -10011110000 pyramid-sales 1 -10011110000 airlift-resupply 1 -10011110000 dinner-house 1 -10011110000 42-unit 1 -10011110000 B-O-C 1 -10011110000 healthfoods 1 -10011110000 telemarketing-like 1 -10011110000 120-hour-a-week 1 -10011110000 school-accessories 1 -10011110000 seamless-pipe 1 -10011110000 1,500-store 1 -10011110000 spirits-market 1 -10011110000 peak-shedding 1 -10011110000 Direct-Marketing 1 -10011110000 Bainbridge-Aquabatten 1 -10011110000 332-store 1 -10011110000 then-stumbling 1 -10011110000 TV-rental 1 -10011110000 392-outlet 1 -10011110000 engine-components 1 -10011110000 astro-space 1 -10011110000 weapons-smuggling 1 -10011110000 outdoor-clothing 1 -10011110000 home-infusion-therapy 1 -10011110000 five-truck 1 -10011110000 resource-energy-systems 1 -10011110000 apparel-making 1 -10011110000 563-unit 1 -10011110000 5,687-store 1 -10011110000 450-hog 1 -10011110000 Northamptonshire-based 1 -10011110000 war-injured 1 -10011110000 Halloween-costume 1 -10011110000 Colorado-Utah 1 -10011110000 Tribune-Turner 1 -10011110000 75-and-older 1 -10011110000 Pandex 1 -10011110000 voice-systems 1 -10011110000 steam-system 1 -10011110000 bond-distribution 1 -10011110000 392-unit 1 -10011110000 department-stores 1 -10011110000 540-store 1 -10011110000 clinical-laboratory 1 -10011110000 bakery-restaurant 1 -10011110000 printed-circuit-board 1 -10011110000 Hydro-Aire 1 -10011110000 150-employee 1 -10011110000 dinnerhouse 1 -10011110000 wild-animal 1 -10011110000 bondresearch 1 -10011110000 23-person 1 -10011110000 Aeroplex 1 -10011110000 Sovyetskaya 1 -10011110000 141-store 1 -10011110000 food-bank 1 -10011110000 too-late-for-the-a.m.s 1 -10011110000 Vitre-Graf 1 -10011110000 beauty-supplies-store 1 -10011110000 830-store 1 -10011110000 interior-products 1 -10011110000 abalone-processing 1 -10011110000 natural-science 1 -10011110000 computer-switching 1 -10011110000 pharmacy-chain 1 -10011110000 6-foot-4-and-under 1 -10011110000 20-store 1 -10011110000 39-hospital 1 -10011110000 55-person 1 -10011110000 110-store 1 -10011110000 home-electronics 1 -10011110000 6,000-employee 1 -10011110000 loan-intermediation 1 -10011110000 hotstock 1 -10011110000 reserve-draining 1 -10011110000 retail-broker 1 -10011110000 luxuryitem 1 -10011110000 61-newspaper 1 -10011110000 media-and-entertainment 1 -10011110000 military-like 1 -10011110000 hog-farming 1 -10011110000 youthwear 1 -10011110000 Japanese-auto 1 -10011110000 Break-Free 1 -10011110000 litigation-services 1 -10011110000 Fast-Tax 1 -10011110000 advertising-placement 1 -10011110000 balsa-wood 1 -10011110000 ship-breaking 1 -10011110000 multi-regional 1 -10011110000 Acme/Chaston 1 -10011110000 private-arms 1 -10011110000 airport-restaurant 1 -10011110000 quintuple-bypass 1 -10011110000 multi-million-dollar 1 -10011110000 CIA-NSC 1 -10011110000 large-appliance 1 -10011110000 space-products 1 -10011110000 aircraft-controls 1 -10011110000 special-credits 1 -10011110000 drugstore-chain 1 -10011110000 freebooting 1 -10011110000 heating-products 1 -10011110000 corporatecommunications 1 -10011110000 12-hotel 1 -10011110000 Lee-Norse 1 -10011110000 Protector 1 -10011110000 granite-gray 1 -10011110000 VR/Wesson 1 -10011110000 Hersant-run 1 -10011110000 craft-stores 1 -10011110000 Fisher-Guide 1 -10011110000 Lily-Tulip 1 -10011110000 fife-and-drum 1 -10011110000 residential-community 1 -10011110000 meshlike 1 -10011110000 110,000-square-foot 1 -10011110000 professional-information 1 -10011110000 hydroponic-greenhouse 1 -10011110000 quick-change 1 -10011110000 Chrysler-Plymouth-Dodge 1 -10011110000 325-store 1 -10011110000 public-auction 1 -10011110000 five-store 1 -10011110000 prescription-drugs 1 -10011110000 executive-clothing 1 -10011110000 100-store 1 -10011110000 quick-lubrication 1 -10011110000 Pumptron 1 -10011110000 liquiditysteering 1 -10011110000 scented-candle 1 -10011110000 terminal-equipment 1 -10011110000 mall-nourishing 1 -10011110000 Miracle-Ear 1 -10011110000 fountain-syrup 1 -10011110000 radio-communications 1 -10011110000 old-lady 1 -10011110000 200-dealer 1 -10011110000 HUD-supervised 1 -10011110000 most-depressed 1 -10011110000 campaign-plane 1 -10011110000 delicatessen-and-grocery 1 -10011110000 33-store 1 -10011110000 82-store 1 -10011110000 seafood-restaurant 1 -10011110000 sugar-manufacturing 1 -10011110000 WNET-produced 1 -10011110000 resources-investment 1 -10011110000 platinummarketing 1 -10011110000 18-store 1 -10011110000 semifinished-products 1 -10011110000 anti-BASF 1 -10011110000 urological 1 -10011110000 sports-gear 1 -10011110000 general-books 1 -10011110000 vacuum-products 1 -10011110000 vacation-village 1 -10011110000 ex-telephone 1 -10011110000 10-restaurant 1 -10011110000 print-music 1 -10011110000 oil-marketing 1 -10011110000 litarary 1 -10011110000 agricultural-loan 1 -10011110000 upscale-jewelry 1 -10011110000 interactive-systems 1 -10011110000 Mexican-fast-food 1 -10011110000 Bandito 1 -10011110000 specialty-food-stores 1 -10011110000 Deco-style 1 -10011110000 merchantbanking 1 -10011110000 newspaper-chain 1 -10011110000 college-book 1 -10011110000 private-delivery 1 -10011110000 Investment-Banking 1 -10011110000 independent-study 1 -10011110000 delivery-based 1 -10011110000 country-radio 1 -10011110000 21-store 1 -10011110000 Pharmaseal 1 -10011110000 fiber-reinforcing 1 -10011110000 137-store 1 -10011110000 mill-service 1 -10011110000 videocassette-making 1 -10011110000 specialty-brands 1 -10011110000 leisure-travel 1 -10011110000 roast-beef-sandwich 1 -10011110000 144-store 1 -10011110000 29-dealer 1 -10011110000 juice-packaging 1 -10011110000 Amecom 1 -10011110000 leather-apparel 1 -10011110000 cement/concrete 1 -10011110000 consumer-magazines 1 -10011110000 business-furniture 1 -10011110000 car-smashing 1 -10011110000 teacher-support 1 -10011110000 beard-growing 1 -10011110000 Memcor 1 -10011110000 post-Yaltan 1 -10011110000 theater-exhibition 1 -10011110000 videocassette-rental 1 -10011110000 lead-processing 1 -10011110000 146-store 1 -10011110000 Amhara-dominated 1 -10011110000 U.S.-Honduran 1 -10011110000 glass-distributing 1 -10011110000 convenience-stores 1 -10011110000 loss-troubled 1 -10011110000 motorcycle-industry 1 -10011110000 military-truck 1 -10011110000 Welex 1 -10011110000 landmachinery 1 -10011110000 Bussman 1 -10011110000 panzer 1 -10011110000 ski-shop 1 -10011110000 computer-hardware-services 1 -10011110000 audio-components 1 -10011110000 special-asset 1 -10011110000 services-repair 1 -10011110000 all-Spanish 1 -10011110000 Transmic 1 -10011110000 property-claims-service 1 -10011110000 transportation-management-services 1 -10011110000 Asia/Australasia 1 -10011110000 power-boat 1 -10011110000 group-sales 1 -10011110000 retail-distribution 1 -10011110000 men's-clothing 1 -10011110000 3,750-unit 1 -10011110000 casket-making 1 -10011110000 insurance-premium-finance 1 -10011110000 Russian-Marxist 1 -10011110000 luncheon-voucher 1 -10011110000 Darex 1 -10011110000 aerobics-studio 1 -10011110000 membership-warehouse 1 -10011110000 psychiatric-center 1 -10011110000 science-products 1 -10011110000 polyomerase 1 -10011110000 donut-sales 1 -10011110000 Rothshchild 1 -10011110000 mainframe-manufacturing 1 -10011110000 314-store 1 -10011110000 premium-tobacco 1 -10011110000 Vellumoid 1 -10011110000 26-paper 1 -10011110000 113-store 1 -10011110000 internationalcredit 1 -10011110000 arts/craft 1 -10011110000 Etienne-Aigner 1 -10011110000 Heckett 1 -10011110000 advertising-services 1 -10011110000 Panamanian-based 1 -10011110000 grain-store 1 -10011110000 HomeClub-type 1 -10011110000 copy-shop 1 -10011110000 food-production 1 -10011110000 timber-salvaging 1 -10011110000 81-unit 1 -10011110000 856-store 1 -10011110000 Microsoft/Sybase 1 -10011110000 golfequipment 1 -10011110000 AUTOS 1 -10011110000 factory-construction 1 -10011110000 motor-products 1 -10011110000 rental-office 1 -10011110000 scientific-equipment 2 -10011110000 motor-hotel 2 -10011110000 business-magazines 2 -10011110000 bath-fashions 2 -10011110000 casual-apparel 2 -10011110000 townfolk 2 -10011110000 retail-space 2 -10011110000 Vive 2 -10011110000 37-store 2 -10011110000 fiber-products 2 -10011110000 PH 2 -10011110000 3+ 2 -10011110000 fruit-drink 2 -10011110000 65-store 2 -10011110000 vitamin-mineral 2 -10011110000 toystore 2 -10011110000 Baltimore-area 2 -10011110000 Hayters 2 -10011110000 Eater 2 -10011110000 medical-systems 2 -10011110000 AHP 2 -10011110000 gift-shop 2 -10011110000 Librascope 2 -10011110000 sex-change 2 -10011110000 68-store 2 -10011110000 NetWare 2 -10011110000 City-area 2 -10011110000 family-dining 2 -10011110000 specialty-toy 2 -10011110000 bio-products 2 -10011110000 Taussig-Blalock 2 -10011110000 bond-offering 2 -10011110000 MacTCP 2 -10011110000 oil-fields 2 -10011110000 public-radio 2 -10011110000 business-supplies 2 -10011110000 charter-flight 2 -10011110000 contra-aid 2 -10011110000 Marlite 2 -10011110000 non-target 2 -10011110000 machine-technology 2 -10011110000 securities-clearing 2 -10011110000 pet-shop 2 -10011110000 Mepco/Centralab 2 -10011110000 129-store 2 -10011110000 fuel-consumption 2 -10011110000 425-screen 2 -10011110000 citrus-processing 2 -10011110000 Rayloc 2 -10011110000 wire-harness 2 -10011110000 golf-club 3 -10011110000 hotel/casino 3 -10011110000 image-polishing 3 -10011110000 gasoline-station 3 -10011110000 fingertip 3 -10011110000 self-enforcement 3 -10011110000 mag 3 -10011110000 electromagnetics 3 -10011110000 26-store 3 -10011110000 car-lubrication 3 -10011110000 popsicle 3 -10011110000 Plexo 3 -10011110000 Transicold 3 -10011110000 beef-cattle 3 -10011110000 charter-airline 3 -10011110000 theatre 3 -10011110000 30-store 3 -10011110000 data-products 3 -10011110000 discount-department-store 3 -10011110000 gold-refining 3 -10011110000 dialysis-center 3 -10011110000 animal-control 3 -10011110000 casino/hotel 3 -10011110000 Magnedyne 3 -10011110000 Buckhead 3 -10011110000 handbill 3 -10011110000 drug-and-grocery 3 -10011110000 bootstrap 3 -10011110000 24-store 4 -10011110000 bullfight 4 -10011110000 good-old-boy 4 -10011110000 funeral-home 4 -10011110000 8000 4 -10011110000 record-store 4 -10011110000 QDE 4 -10011110000 hernia 4 -10011110000 affiliate-relations 4 -10011110000 17-store 4 -10011110000 liquor-store 4 -10011110000 Hizbollah 4 -10011110000 clothing-catalog 4 -10011110000 sambuca 4 -10011110000 travel-guide 4 -10011110000 ski-resort 5 -10011110000 100-hotel 5 -10011110000 Blower 5 -10011110000 hospital-products 5 -10011110000 discount-stores 5 -10011110000 civil-aviation 5 -10011110000 14-store 5 -10011110000 yahoo 5 -10011110000 16-store 5 -10011110000 cut-price 5 -10011110000 theater-chain 5 -10011110000 doorknob 6 -10011110000 jueteng 6 -10011110000 Contra-resupply 6 -10011110000 trade-magazine 6 -10011110000 Verson 6 -10011110000 toy-store 6 -10011110000 oceanfront 6 -10011110000 retail-chain 6 -10011110000 DC-3 6 -10011110000 clothing-store 7 -10011110000 bookshop 7 -10011110000 windmill 7 -10011110000 Crowntek 7 -10011110000 track-and-field 7 -10011110000 Convair 7 -10011110000 APT 7 -10011110000 pizzeria 7 -10011110000 Neue 8 -10011110000 building-supplies 8 -10011110000 Mercantil 8 -10011110000 swimwear 8 -10011110000 jewelry-store 9 -10011110000 polymerase 9 -10011110000 thrift-institution 9 -10011110000 microcircuits 9 -10011110000 drug-store 9 -10011110000 costume-jewelry 10 -10011110000 Contra-supply 10 -10011110000 Asia/Pacific 10 -10011110000 radio-station 10 -10011110000 semifinal 11 -10011110000 kelp 11 -10011110000 barbershop 11 -10011110000 Aramis 12 -10011110000 video-store 12 -10011110000 steakhouse 12 -10011110000 hardware-store 12 -10011110000 gumshoe 12 -10011110000 hypermarket 14 -10011110000 pawnshop 14 -10011110000 daisy 16 -10011110000 iris 16 -10011110000 Gilfillan 16 -10011110000 tugboat 17 -10011110000 gallbladder 17 -10011110000 catalog-showroom 17 -10011110000 Minitel 18 -10011110000 saloon 18 -10011110000 Goose 19 -10011110000 building-supply 19 -10011110000 Ginza 19 -10011110000 statehouse 20 -10011110000 discount-store 21 -10011110000 playback 22 -10011110000 turnpike 22 -10011110000 dorm 24 -10011110000 Jeep/Eagle 24 -10011110000 Post-Dispatch 25 -10011110000 tango 25 -10011110000 synagogue 28 -10011110000 fishery 28 -10011110000 racetrack 30 -10011110000 tavern 30 -10011110000 commando 32 -10011110000 dormitory 35 -10011110000 burger 36 -10011110000 sawmill 37 -10011110000 movie-theater 37 -10011110000 health-club 38 -10011110000 storefront 40 -10011110000 oyster 42 -10011110000 newswire 43 -10011110000 slum 48 -10011110000 cinema 49 -10011110000 plantation 49 -10011110000 foundry 57 -10011110000 nightclub 62 -10011110000 grocery-store 64 -10011110000 pub 66 -10011110000 convenience-store 73 -10011110000 banquet 74 -10011110000 casino-hotel 77 -10011110000 billboard 85 -10011110000 bookstore 90 -10011110000 brewery 114 -10011110000 motel 116 -10011110000 hamburger 129 -10011110000 tabloid 133 -10011110000 cafeteria 143 -10011110000 pig 150 -10011110000 navy 153 -10011110000 department-store 160 -10011110000 hotel-casino 163 -10011110000 textbook 169 -10011110000 condominium 179 -10011110000 Bible 182 -10011110000 drugstore 226 -10011110000 warehouse 409 -10011110000 lab 695 -10011110000 casino 733 -10011110000 supermarket 815 -10011110000 theater 1058 -10011110000 restaurant 1682 -10011110000 hospital 2331 -10011110000 hotel 2524 -10011110000 media 2854 -10011110000 store 3197 -10011110000 newspaper 3751 -10011110000 press 3952 -10011110000 magazine 3885 -100111100010 revenue-ravenous 1 -100111100010 deficit-obsessed 1 -100111100010 Gramm-Rudman-influenced 1 -100111100010 reregulatory-minded 1 -100111100010 protectionist-bent 1 -100111100010 jagged-glass 1 -100111100010 Army-style 1 -100111100010 Labor-controlled 1 -100111100010 persimmons 1 -100111100010 deficit-wary 1 -100111100010 rocket-riding 1 -100111100010 RSS1 1 -100111100010 liquid-drug 1 -100111100010 consturction 1 -100111100010 rum-based 1 -100111100010 Thatcher-dominated 1 -100111100010 projects-something 1 -100111100010 Sourdough 1 -100111100010 naso-gastro 1 -100111100010 357-member 1 -100111100010 truckbed 1 -100111100010 cardmember 2 -100111100010 jail-bar 2 -100111100010 tricameral 2 -100111100010 Hardison 2 -100111100010 steel-rod 2 -100111100010 Hof 2 -100111100010 Lukas-trained 2 -100111100010 retinoid 2 -100111100010 briquette 2 -100111100010 headcheese 2 -100111100010 custom-keyboard 2 -100111100010 composite-parts 2 -100111100010 allopurinol 2 -100111100010 spirits-based 2 -100111100010 Chiller 2 -100111100010 truck-body 2 -100111100010 Scirocco 3 -100111100010 situation-comedy 3 -100111100010 open-house 3 -100111100010 825SRX 3 -100111100010 dhow 3 -100111100010 grapefruit-juice 3 -100111100010 joggling 3 -100111100010 sardine 3 -100111100010 teeter-totter 3 -100111100010 Riehl 3 -100111100010 dinette 3 -100111100010 Pissarro 3 -100111100010 nuclear-materials 3 -100111100010 buccaneering 3 -100111100010 adult-bookstore 3 -100111100010 free-style 3 -100111100010 meatloaf 3 -100111100010 Spanish-style 3 -100111100010 professional-sports 3 -100111100010 Ultradrive 3 -100111100010 plotter 3 -100111100010 semi-automatic 3 -100111100010 sorbet 3 -100111100010 goggle 4 -100111100010 full-bore 4 -100111100010 mannerist 4 -100111100010 bubble-gum 5 -100111100010 toupee 5 -100111100010 pain-reliever 5 -100111100010 woodland 5 -100111100010 rhinoceros 5 -100111100010 feature-film 5 -100111100010 dill 5 -100111100010 walk-on 5 -100111100010 audiophile 5 -100111100010 shoe-polish 5 -100111100010 countertenor 6 -100111100010 marigold 6 -100111100010 Check-Up 6 -100111100010 carnation 6 -100111100010 KH-11 6 -100111100010 D-RAM 6 -100111100010 lacquer 6 -100111100010 tri-cone 6 -100111100010 grille 6 -100111100010 microwave-oven 6 -100111100010 Rheinhausen 6 -100111100010 pay-phone 6 -100111100010 headlight 6 -100111100010 intravenous-drug 6 -100111100010 Marshalls 7 -100111100010 confection 7 -100111100010 kilometer 7 -100111100010 chariot 7 -100111100010 mascara 7 -100111100010 slipper 7 -100111100010 towboat 7 -100111100010 tot 7 -100111100010 rattlesnake 7 -100111100010 methamphetamine 7 -100111100010 spacesuit 7 -100111100010 centrifuge 7 -100111100010 body-building 7 -100111100010 bottomfish 7 -100111100010 travel-agency 8 -100111100010 Gatling 8 -100111100010 widget 8 -100111100010 fungicide 8 -100111100010 VAD 8 -100111100010 fruit-juice 8 -100111100010 LeSharo 8 -100111100010 CSA 8 -100111100010 streetcar 8 -100111100010 beetle 8 -100111100010 marshmallow 8 -100111100010 suture 9 -100111100010 Atocha 9 -100111100010 occult 9 -100111100010 petroleum-products 9 -100111100010 motorboat 9 -100111100010 binder 9 -100111100010 carbon-dioxide 9 -100111100010 shaver 9 -100111100010 carbohydrate 9 -100111100010 nuclear-reactor 10 -100111100010 dinnerware 10 -100111100010 bagel 10 -100111100010 tractor-trailer 10 -100111100010 40-foot 10 -100111100010 peacock 10 -100111100010 Slowpoke 10 -100111100010 mosquito 10 -100111100010 mini-supercomputer 10 -100111100010 Bronte 11 -100111100010 1040EZ 11 -100111100010 pretzel 11 -100111100010 SRAM 12 -100111100010 diuretic 12 -100111100010 minisupercomputer 12 -100111100010 ranger 12 -100111100010 kimono 12 -100111100010 pellet 12 -100111100010 Chrysler-Plymouth 12 -100111100010 lollipop 13 -100111100010 zipper 13 -100111100010 blazer 14 -100111100010 thermostat 14 -100111100010 slivovitz 14 -100111100010 Montero 14 -100111100010 lathe 14 -100111100010 lager 14 -100111100010 snowmobile 15 -100111100010 hot-dog 15 -100111100010 decoder 16 -100111100010 minicar 16 -100111100010 coal-mine 16 -100111100010 roach 16 -100111100010 Eprom 16 -100111100010 jeep 16 -100111100010 skier 17 -100111100010 burro 17 -100111100010 megahouse 17 -100111100010 mango 17 -100111100010 preservative 17 -100111100010 analgesic 17 -100111100010 waterbed 18 -100111100010 gallium-arsenide 18 -100111100010 candlestick 18 -100111100010 leech 19 -100111100010 sneaker 19 -100111100010 Checker 19 -100111100010 Strawberries 20 -100111100010 three-story 20 -100111100010 pickle 20 -100111100010 swimsuit 20 -100111100010 nozzle 21 -100111100010 toothbrush 22 -100111100010 spear 22 -100111100010 polysilicon 23 -100111100010 mouthwash 23 -100111100010 scooter 23 -100111100010 steroid 23 -100111100010 K-car 25 -100111100010 tranquilizer 25 -100111100010 Lada 25 -100111100010 pottery 25 -100111100010 cartridge 26 -100111100010 tampon 26 -100111100010 rag 27 -100111100010 rayon 27 -100111100010 lubricant 27 -100111100010 transistor 28 -100111100010 small-car 28 -100111100010 handgun 29 -100111100010 swine 29 -100111100010 FSC 30 -100111100010 pastry 31 -100111100010 camcorder 31 -100111100010 sherry 31 -100111100010 modem 31 -100111100010 Blazer 32 -100111100010 cologne 32 -100111100010 used-car 32 -100111100010 flute 33 -100111100010 wallpaper 33 -100111100010 memory-chip 33 -100111100010 hilltop 33 -100111100010 doughnut 33 -100111100010 Dali 33 -100111100010 refrigerant 33 -100111100010 broom 34 -100111100010 lingerie 35 -100111100010 dishwasher 36 -100111100010 hydrocarbon 36 -100111100010 mink 36 -100111100010 rum 37 -100111100010 Corvette 38 -100111100010 sailboat 38 -100111100010 casket 39 -100111100010 mattress 40 -100111100010 tablet 44 -100111100010 tile 46 -100111100010 freeway 46 -100111100010 mule 46 -100111100010 fisheries 48 -100111100010 lamp 48 -100111100010 porcelain 48 -100111100010 feedlot 50 -100111100010 butcher 50 -100111100010 cola 51 -100111100010 lobster 51 -100111100010 liner 51 -100111100010 bee 53 -100111100010 crane 55 -100111100010 worm 56 -100111100010 sausage 56 -100111100010 Probe 60 -100111100010 monkey 61 -100111100010 cottage 62 -100111100010 blade 63 -100111100010 wig 63 -100111100010 menswear 64 -100111100010 limestone 65 -100111100010 fountain 67 -100111100010 raisin 67 -100111100010 bulb 68 -100111100010 locomotive 69 -100111100010 yarn 69 -100111100010 sweater 71 -100111100010 hospitality 71 -100111100010 Fiero 75 -100111100010 tuna 75 -100111100010 condo 76 -100111100010 shampoo 81 -100111100010 typewriter 83 -100111100010 nursery 83 -100111100010 compressor 86 -100111100010 diaper 86 -100111100010 underwear 88 -100111100010 T-shirt 99 -100111100010 trailer 99 -100111100010 Scotch 100 -100111100010 bike 102 -100111100010 condom 107 -100111100010 showroom 109 -100111100010 doll 115 -100111100010 barge 119 -100111100010 turkey 120 -100111100010 minivan 120 -100111100010 VCR 122 -100111100010 refrigerator 128 -100111100010 tractor 130 -100111100010 cookie 131 -100111100010 landfill 134 -100111100010 lens 134 -100111100010 motorcycle 137 -100111100010 fur 142 -100111100010 cabin 143 -100111100010 toothpaste 143 -100111100010 fragrance 145 -100111100010 robot 145 -100111100010 keyboard 150 -100111100010 bicycle 159 -100111100010 garage 161 -100111100010 microchip 161 -100111100010 cooler 162 -100111100010 Samurai 170 -100111100010 pasta 172 -100111100010 perfume 177 -100111100010 pesticide 187 -100111100010 brick 192 -100111100010 cereal 208 -100111100010 clone 216 -100111100010 manual 216 -100111100010 ballet 217 -100111100010 cockpit 219 -100111100010 diamond 244 -100111100010 Jeep 263 -100111100010 workstation 272 -100111100010 battery 284 -100111100010 supercomputer 286 -100111100010 carpet 289 -100111100010 pizza 331 -100111100010 coin 336 -100111100010 container 344 -100111100010 fiber 352 -100111100010 garden 362 -100111100010 musical 500 -100111100010 vaccine 565 -100111100010 catalog 571 -100111100010 van 578 -100111100010 boat 674 -100111100010 camera 742 -100111100010 bus 820 -100111100010 cigarette 943 -100111100010 wine 1023 -100111100010 glass 1024 -100111100010 beer 1245 -100111100010 vehicle 1589 -100111100010 chip 1723 -100111100010 truck 1757 -100111100010 factory 1767 -100111100010 movie 2666 -100111100010 film 2938 -100111100010 drug 8357 -100111100010 car 5703 -100111100011 arms-summit 1 -100111100011 screwlike 1 -100111100011 3090E 1 -100111100011 Kool-Aid-colored 1 -100111100011 Coke/old 1 -100111100011 Camper 1 -100111100011 PC-RT 1 -100111100011 nasty-executive 1 -100111100011 tightly-disciplined 1 -100111100011 transimission 1 -100111100011 see-no-evil-hear-no-evil 1 -100111100011 barcoded 1 -100111100011 no-salt 1 -100111100011 4AD 1 -100111100011 Cetera 1 -100111100011 Jeep-production 1 -100111100011 high-dosage 1 -100111100011 buffalo-meat 1 -100111100011 whooping-cough 1 -100111100011 1,600-page 1 -100111100011 tent-meeting 1 -100111100011 stock-evaluation 1 -100111100011 20-window 1 -100111100011 thick-film 1 -100111100011 lemon-drink 1 -100111100011 airline-manufacturing 1 -100111100011 Wright-Rudman 1 -100111100011 white-plastic 1 -100111100011 Naugahyde 1 -100111100011 SR5 1 -100111100011 tax-information 1 -100111100011 beverage-portfolio 1 -100111100011 Textra 1 -100111100011 high-fluoride 1 -100111100011 gin-and-orange-juice 1 -100111100011 greenway 1 -100111100011 Nielsens 1 -100111100011 babka 1 -100111100011 tumor-associated 1 -100111100011 banana-fiber 1 -100111100011 laundermat 1 -100111100011 seven-company 1 -100111100011 in-every-home 1 -100111100011 halide-based 1 -100111100011 rotary-file 1 -100111100011 middle-of-the-line 1 -100111100011 5990-series 1 -100111100011 procurement/marketing 1 -100111100011 committeemen 1 -100111100011 maximum-tax 1 -100111100011 thirst-quencher 1 -100111100011 one-franc 1 -100111100011 parents-and-kids 1 -100111100011 SL-1 1 -100111100011 SEi 1 -100111100011 broadband 1 -100111100011 mortgage-credit 1 -100111100011 Tennesseans 1 -100111100011 call-routing 1 -100111100011 software-marketing 1 -100111100011 nipapalm 1 -100111100011 EC-1 1 -100111100011 crisis-response 1 -100111100011 fast-cut 1 -100111100011 passenger-safety 1 -100111100011 miniconglomerates 1 -100111100011 over-counter-trading 1 -100111100011 furors 1 -100111100011 toy-sales 1 -100111100011 schnitzel 2 -100111100011 majority-party 2 -100111100011 etouffee 2 -100111100011 1987-1/2 2 -100111100011 amino-acid 2 -100111100011 radar-aircraft 2 -100111100011 90-footer 2 -100111100011 Miamians 2 -100111100011 dreamboat 2 -100111100011 Interhash 2 -100111100011 Aviion 2 -100111100011 MV40000 2 -100111100011 GVL 2 -100111100011 GVS 2 -100111100011 528e 2 -100111100011 two-handled 2 -100111100011 leveraged-liberalism 2 -100111100011 single-level 2 -100111100011 Koromex 2 -100111100011 386S 2 -100111100011 shower-singing 2 -100111100011 minibudget 2 -100111100011 hydrate 2 -100111100011 Apostrophe 2 -100111100011 labels. 2 -100111100011 C201 2 -100111100011 StorageTek 2 -100111100011 TenderCare 2 -100111100011 cornice 2 -100111100011 318i 2 -100111100011 LXi 2 -100111100011 bomba 2 -100111100011 enmities 2 -100111100011 once-over-lightly 2 -100111100011 rail-intermodal 2 -100111100011 box-sized 2 -100111100011 computer-printed 2 -100111100011 80/90 2 -100111100011 retail-sized 2 -100111100011 1100-90 2 -100111100011 financial-center 2 -100111100011 cocaine-related 2 -100111100011 80-bed 3 -100111100011 jowls 3 -100111100011 635CSi 3 -100111100011 caplet 3 -100111100011 XA2000 3 -100111100011 wish-list 3 -100111100011 PS-2 3 -100111100011 E5 3 -100111100011 consumption-led 3 -100111100011 over-the 3 -100111100011 Coty 3 -100111100011 Relativity 3 -100111100011 bisdithiocarbamate 3 -100111100011 928S-4 3 -100111100011 condiment 3 -100111100011 scatter-gun 3 -100111100011 hydrates 3 -100111100011 535i 3 -100111100011 500SL 3 -100111100011 xeric 3 -100111100011 1100/90 3 -100111100011 GXE 3 -100111100011 medical-emergency 3 -100111100011 sorriest 4 -100111100011 Eighty-Eight 4 -100111100011 sign-off 4 -100111100011 hothead 4 -100111100011 wage-setting 4 -100111100011 rind 4 -100111100011 Chillery 4 -100111100011 A6 4 -100111100011 blotches 4 -100111100011 Corsica/Beretta 4 -100111100011 Wilsons 4 -100111100011 Silhouette 4 -100111100011 Erato 4 -100111100011 sportscar 5 -100111100011 735i 5 -100111100011 GTA 5 -100111100011 EX 5 -100111100011 MV 5 -100111100011 mind-sets 5 -100111100011 curd 5 -100111100011 bouillon 5 -100111100011 CLX 5 -100111100011 planter 5 -100111100011 Ektar 5 -100111100011 190D 5 -100111100011 cleaver 5 -100111100011 Breton 5 -100111100011 Sun-3 5 -100111100011 V-series 5 -100111100011 1,200-mile 6 -100111100011 lookalikes 6 -100111100011 Galant 6 -100111100011 325i 6 -100111100011 grain-marketing 6 -100111100011 nugget 6 -100111100011 Forenza 6 -100111100011 base-model 6 -100111100011 tax-withholding 6 -100111100011 heirloom 7 -100111100011 burrito 7 -100111100011 sparrow 7 -100111100011 DPS 7 -100111100011 Vanagon 7 -100111100011 386SX 7 -100111100011 5990 7 -100111100011 centerfold 7 -100111100011 IIe 7 -100111100011 ST 7 -100111100011 XR4Ti 7 -100111100011 Cray-2 8 -100111100011 Justy 8 -100111100011 ballgame 8 -100111100011 190E 8 -100111100011 peptide 8 -100111100011 7000 8 -100111100011 I.D. 8 -100111100011 Omni/Horizon 8 -100111100011 1975-80 8 -100111100011 I-Mark 8 -100111100011 Monster 8 -100111100011 teriyaki 9 -100111100011 two-seater 9 -100111100011 Passat 9 -100111100011 RX-7 9 -100111100011 confessional 9 -100111100011 yearling 9 -100111100011 Taurus/Sable 10 -100111100011 Tipo 10 -100111100011 PCjr 10 -100111100011 Q45 10 -100111100011 Brougham 10 -100111100011 conga 11 -100111100011 committeeman 11 -100111100011 pox 12 -100111100011 turbo 12 -100111100011 medallion 12 -100111100011 jerky 13 -100111100011 Vectra 13 -100111100011 DeVille 13 -100111100011 4381 14 -100111100011 TC 14 -100111100011 grinder 14 -100111100011 Scorpio 14 -100111100011 Tercel 14 -100111100011 roll-out 15 -100111100011 CRX 15 -100111100011 demarcation 15 -100111100011 Casera 17 -100111100011 antacid 17 -100111100011 Sedan 17 -100111100011 whirlpool 18 -100111100011 X-MP 18 -100111100011 coop 18 -100111100011 VAXstation 19 -100111100011 LX 20 -100111100011 Slice 21 -100111100011 FX 21 -100111100011 Toronado 21 -100111100011 maglev 22 -100111100011 Prelude 22 -100111100011 LS 22 -100111100011 Stanza 23 -100111100011 Merkur 24 -100111100011 Jetta 26 -100111100011 3090 26 -100111100011 XJ6 27 -100111100011 Allante 28 -100111100011 MicroVAX 28 -100111100011 Corolla 29 -100111100011 Coupe 30 -100111100011 carry-over 30 -100111100011 GL 33 -100111100011 anthem 36 -100111100011 Wrangler 36 -100111100011 bran 36 -100111100011 Walkman 38 -100111100011 Camry 39 -100111100011 rollout 41 -100111100011 model-year 43 -100111100011 AS/400 44 -100111100011 nameplate 44 -100111100011 hatchback 47 -100111100011 Lumina 47 -100111100011 pastime 64 -100111100011 GM-10 69 -100111100011 blimp 71 -100111100011 cane 71 -100111100011 Amiga 76 -100111100011 oxide 82 -100111100011 bicentennial 86 -100111100011 9370 87 -100111100011 leaf 94 -100111100011 Escort 98 -100111100011 freshman 106 -100111100011 bug 110 -100111100011 W-4 115 -100111100011 medal 151 -100111100011 banner 163 -100111100011 Accord 171 -100111100011 sedan 175 -100111100011 hormone 203 -100111100011 census 249 -100111100011 PS/2 300 -100111100011 cell 343 -100111100011 meal 416 -100111100011 calendar 461 -100111100011 harvest 635 -100111100011 ticket 989 -100111100011 brand 1646 -100111100011 crop 1716 -100111100011 product 8153 -100111100011 model 2973 -100111100100 31-degree 1 -100111100100 summerlike 1 -100111100100 close-to-normal 1 -100111100100 racing-news 1 -100111100100 marching-band 1 -100111100100 express-freight 1 -100111100100 high-ratings 1 -100111100100 5-17 1 -100111100100 cucumber-smelling 1 -100111100100 non-hyperbolic 1 -100111100100 dish-antenna 1 -100111100100 chanteys 1 -100111100100 immigrant-tale 1 -100111100100 non-air 1 -100111100100 unstimulating 1 -100111100100 Federal-Bell 1 -100111100100 direct-to-the-U.S. 1 -100111100100 64-inch 1 -100111100100 weekend-only 1 -100111100100 fast-lubrication 1 -100111100100 begrudging 1 -100111100100 35-44 1 -100111100100 NBC-made 1 -100111100100 dejeuner 1 -100111100100 30-below 1 -100111100100 aversive 1 -100111100100 bomb-grade 1 -100111100100 morphogenetic 1 -100111100100 mainland-Japan 1 -100111100100 Epstein-Barr 1 -100111100100 garbage-dumping 1 -100111100100 finger-sized 1 -100111100100 rail-and-highway 1 -100111100100 tangy-sweet 1 -100111100100 clot-disolving 1 -100111100100 300,000,000,000,000,000,000,000,000 1 -100111100100 multiflavored 1 -100111100100 2,611 1 -100111100100 seal-blubber 1 -100111100100 Foreign-debt 1 -100111100100 galium 1 -100111100100 non-declared 1 -100111100100 gold-laden 1 -100111100100 late-night-TV 1 -100111100100 vapor-venting 1 -100111100100 trial-balloon 1 -100111100100 seeped-in 1 -100111100100 Texas-Louisiana 1 -100111100100 fixed-route 1 -100111100100 prodemocracy 1 -100111100100 spay/neuter 1 -100111100100 Alar-style 1 -100111100100 water-particle 1 -100111100100 container-refuse 1 -100111100100 non-stain-resistant 1 -100111100100 commerical-banking 1 -100111100100 deep-dwelling 1 -100111100100 preplanning 1 -100111100100 64-degree 1 -100111100100 weapons-usable 1 -100111100100 tenant-landlord 1 -100111100100 drier-than-normal 1 -100111100100 mock-Japanese 1 -100111100100 amateur-baseball 1 -100111100100 nonrebating 1 -100111100100 typewriter-style 1 -100111100100 divorce-related 1 -100111100100 gabardine 1 -100111100100 new-mown 1 -100111100100 egg-borne 1 -100111100100 laboratory-acquired 1 -100111100100 defect-related 1 -100111100100 audio-tech 1 -100111100100 synthesizer-driven 1 -100111100100 blackberry-basil 1 -100111100100 chuckholed 1 -100111100100 newspaper-and-croissant 1 -100111100100 fascimile-machine 1 -100111100100 export-controlling 1 -100111100100 Riverwalk 1 -100111100100 less-than-amicable 1 -100111100100 advertiser-supplied 1 -100111100100 modulatory 1 -100111100100 wind-blitzed 1 -100111100100 express-bus 1 -100111100100 save-the-universe 1 -100111100100 three-times-a-week 1 -100111100100 shuttle-type 1 -100111100100 oil-forming 1 -100111100100 woodpecker 1 -100111100100 red-tailed 1 -100111100100 unforested 1 -100111100100 warmer-than-normal 2 -100111100100 bagpipe 2 -100111100100 bitter-cold 2 -100111100100 dinner-hour 2 -100111100100 non-credit 2 -100111100100 Caesarean-section 2 -100111100100 tabasco 2 -100111100100 sex-gene 2 -100111100100 868,778 2 -100111100100 Semillon 2 -100111100100 intra-family 2 -100111100100 2,317 2 -100111100100 g-CSF 2 -100111100100 1,202 2 -100111100100 brick-hard 2 -100111100100 switching-equipment 2 -100111100100 70-plus 2 -100111100100 tasseling 2 -100111100100 river-bank 2 -100111100100 self-stick 2 -100111100100 needle-stick 2 -100111100100 pelf 2 -100111100100 pension-dumping 2 -100111100100 well-trampled 2 -100111100100 45,800 2 -100111100100 call-girl 2 -100111100100 sequinned 2 -100111100100 Treason 2 -100111100100 oily-looking 2 -100111100100 passsenger 2 -100111100100 air-passenger 2 -100111100100 gold-bearing 2 -100111100100 post-Balanchinian 2 -100111100100 grade-A 2 -100111100100 ticket-counter 2 -100111100100 putrid 2 -100111100100 Lidex 2 -100111100100 non-explosive 2 -100111100100 missing-in-action 2 -100111100100 gastroesophageal 2 -100111100100 income-tax-preparation 2 -100111100100 in-the-home 2 -100111100100 rhubarb 2 -100111100100 fino 2 -100111100100 antiabortion 2 -100111100100 ruly 2 -100111100100 insufficient-funds 2 -100111100100 brucellosis 2 -100111100100 crash-injury 2 -100111100100 iced-tea 2 -100111100100 employer/employee 2 -100111100100 fact-gathering 2 -100111100100 regulator-assisted 2 -100111100100 flambe 2 -100111100100 all-Gershwin 2 -100111100100 plasticene 2 -100111100100 dog-day 2 -100111100100 cysts 2 -100111100100 Karoo 2 -100111100100 neoclassic 3 -100111100100 HIV/AIDS 3 -100111100100 M6 3 -100111100100 milder-than-usual 3 -100111100100 taro 3 -100111100100 LAV-2 3 -100111100100 fireside 3 -100111100100 50-pound 3 -100111100100 Eldercare 3 -100111100100 auto-dealer 3 -100111100100 sauntering 3 -100111100100 pumpernickel 3 -100111100100 snakelike 3 -100111100100 blotter 3 -100111100100 giardiasis 3 -100111100100 grayish 3 -100111100100 frisk 3 -100111100100 Mugs 3 -100111100100 current-events 3 -100111100100 government-paid 3 -100111100100 lead-free 3 -100111100100 offpeak 3 -100111100100 dandruff 3 -100111100100 Phase-3 3 -100111100100 AIDS-causing 3 -100111100100 strapless 3 -100111100100 aseptic 3 -100111100100 fuel-related 3 -100111100100 Bernini 3 -100111100100 sado-masochistic 3 -100111100100 downwind 3 -100111100100 acid-based 3 -100111100100 Airstream 3 -100111100100 Steer-Mom 3 -100111100100 indigo 3 -100111100100 hermit 3 -100111100100 nordic 3 -100111100100 pop-up 4 -100111100100 music-oriented 4 -100111100100 mid-century 4 -100111100100 cognition 4 -100111100100 Ovaltine 4 -100111100100 TRAX 4 -100111100100 network-TV 4 -100111100100 fainting 4 -100111100100 MIR 4 -100111100100 Montparnasse 4 -100111100100 undiagnosed 4 -100111100100 Puss 4 -100111100100 EC-made 4 -100111100100 Contragate 4 -100111100100 GSL 4 -100111100100 Panavision 4 -100111100100 Kojonup 4 -100111100100 wicking 4 -100111100100 1976-1982 4 -100111100100 Kix 4 -100111100100 D-2 4 -100111100100 overdressed 4 -100111100100 RTD 4 -100111100100 airbag 4 -100111100100 bedspread 4 -100111100100 Schwartauer 4 -100111100100 Metroliner 4 -100111100100 leasable 4 -100111100100 Endymion 4 -100111100100 liturgical 4 -100111100100 1,023 4 -100111100100 sports-oriented 4 -100111100100 danazol 4 -100111100100 mini-doll 4 -100111100100 pine-covered 4 -100111100100 aquisitions 4 -100111100100 Afro 4 -100111100100 deuterium 4 -100111100100 lobe 4 -100111100100 schlami 4 -100111100100 aborigine 4 -100111100100 water-borne 4 -100111100100 Mbaqanga 4 -100111100100 VisaPhone 4 -100111100100 Porcher 4 -100111100100 sphinx-like 4 -100111100100 garage-door 4 -100111100100 Saharan 5 -100111100100 engraving 5 -100111100100 brie 5 -100111100100 commercial-free 5 -100111100100 auto-accident 5 -100111100100 InterTalent 5 -100111100100 alder 5 -100111100100 Aeropostale 5 -100111100100 Santeria 5 -100111100100 artichoke 5 -100111100100 goulash 5 -100111100100 Martine 5 -100111100100 re-registration 5 -100111100100 ECPA 5 -100111100100 One-Pass 5 -100111100100 trackside 5 -100111100100 milk-based 5 -100111100100 homemaking 5 -100111100100 cellulite 5 -100111100100 eggplant 5 -100111100100 HSV 5 -100111100100 unimproved 5 -100111100100 embalming 5 -100111100100 pita 5 -100111100100 KPFK 5 -100111100100 drinkable 5 -100111100100 5500 5 -100111100100 trinket 5 -100111100100 dog-tooth 5 -100111100100 Frigidaire 5 -100111100100 CDW 5 -100111100100 concrete-and-steel 5 -100111100100 WorldPass 5 -100111100100 nafarelin 5 -100111100100 Leukemia 6 -100111100100 potable 6 -100111100100 meatball 6 -100111100100 Lip 6 -100111100100 Clio 6 -100111100100 polyacetylene 6 -100111100100 aoudad 6 -100111100100 cheddar 6 -100111100100 digitized 6 -100111100100 2-by-4 6 -100111100100 truth-telling 6 -100111100100 Freeform 6 -100111100100 Orangina 6 -100111100100 Off-Broadway 6 -100111100100 stone-washing 6 -100111100100 rock-and-roll 6 -100111100100 M.O. 6 -100111100100 vaccinia 6 -100111100100 naltrexone 6 -100111100100 developable 6 -100111100100 Velcro 6 -100111100100 ambulance-chasing 6 -100111100100 phase-two 6 -100111100100 scriptwriting 6 -100111100100 looped 6 -100111100100 trial-and-error 6 -100111100100 fin-de-siecle 6 -100111100100 marimba 6 -100111100100 DPT 7 -100111100100 amphetamine 7 -100111100100 muggy 7 -100111100100 Everyman 7 -100111100100 kimchi 7 -100111100100 3.8-liter 7 -100111100100 microfiche 7 -100111100100 reciprocating 7 -100111100100 puffer 7 -100111100100 MS 7 -100111100100 Mutt 7 -100111100100 MRP 7 -100111100100 raptor 7 -100111100100 Beefeater 7 -100111100100 Riesling 7 -100111100100 Dixieland 7 -100111100100 ant 7 -100111100100 business-class 7 -100111100100 mesothelioma 7 -100111100100 Snoopy 7 -100111100100 reduced-instruction-set-computing 7 -100111100100 IMU 7 -100111100100 Matsapa 7 -100111100100 italics 7 -100111100100 anti-family 7 -100111100100 truffle 7 -100111100100 pepperoni 7 -100111100100 FC134a 7 -100111100100 hypothermia 7 -100111100100 MIC 7 -100111100100 Zeebrugge 8 -100111100100 interplanetary 8 -100111100100 gout 8 -100111100100 Ashcreek 8 -100111100100 teak 8 -100111100100 sable 8 -100111100100 otter 8 -100111100100 chinook 8 -100111100100 10-to-1 8 -100111100100 decompression 8 -100111100100 crankshaft 8 -100111100100 archeological 8 -100111100100 WWII 8 -100111100100 BST 8 -100111100100 Smalltalk 8 -100111100100 inclement 8 -100111100100 private-school 8 -100111100100 oblong 8 -100111100100 Skoda 8 -100111100100 scleroderma 9 -100111100100 berry 9 -100111100100 Tavist 9 -100111100100 Chianti 9 -100111100100 muslin 9 -100111100100 anti-wrinkle 9 -100111100100 foie 9 -100111100100 Landsat 9 -100111100100 aeronautics 9 -100111100100 cellophane 9 -100111100100 '68 9 -100111100100 sulfite 9 -100111100100 macaroni 9 -100111100100 pre-kindergarten 9 -100111100100 radium 9 -100111100100 private-industry 9 -100111100100 Christendom 9 -100111100100 flag-burning 9 -100111100100 bebop 9 -100111100100 cytology 9 -100111100100 VSAT 9 -100111100100 well-done 9 -100111100100 AlaskaMen 9 -100111100100 Torque 9 -100111100100 reflexivity 9 -100111100100 zydeco 10 -100111100100 peat 10 -100111100100 Medi-Cal 10 -100111100100 Inglenook 10 -100111100100 unorganized 10 -100111100100 VHS-C 10 -100111100100 kenaf 10 -100111100100 phonograph 10 -100111100100 Lark 10 -100111100100 rashes 10 -100111100100 EBDC 10 -100111100100 cappuccino 10 -100111100100 chimpanzee 10 -100111100100 VISA 10 -100111100100 100-degree 10 -100111100100 wastewater 10 -100111100100 Bayonne 10 -100111100100 typhoid 10 -100111100100 pumice 11 -100111100100 styrofoam 11 -100111100100 dew 11 -100111100100 Verve 11 -100111100100 skeet 11 -100111100100 T-1 11 -100111100100 Sanskrit 11 -100111100100 scavenger 11 -100111100100 post-accident 11 -100111100100 Tron 11 -100111100100 gauze 11 -100111100100 ex 11 -100111100100 inanimate 11 -100111100100 HTLV-I 11 -100111100100 oboe 11 -100111100100 urinalysis 12 -100111100100 grandfathering 12 -100111100100 Dealerline 12 -100111100100 Vaseline 12 -100111100100 rabies 12 -100111100100 Velveeta 12 -100111100100 Miata 12 -100111100100 bighorn 12 -100111100100 Stolichnaya 12 -100111100100 Precis 12 -100111100100 Oxbridge 12 -100111100100 jade 13 -100111100100 Lysol 13 -100111100100 hemophilia 13 -100111100100 freshwater 13 -100111100100 CAD 13 -100111100100 broiling 13 -100111100100 salsa 13 -100111100100 hepatitis-B 13 -100111100100 Sputnik 13 -100111100100 NA 13 -100111100100 FAX 13 -100111100100 kayaking 13 -100111100100 Smirnoff 13 -100111100100 overwork 13 -100111100100 Transformers 13 -100111100100 rib 13 -100111100100 candlelight 13 -100111100100 gator 13 -100111100100 leprosy 14 -100111100100 NewWave 14 -100111100100 epilepsy 14 -100111100100 antiquities 14 -100111100100 enamel 14 -100111100100 Nehemiah 14 -100111100100 Mild 14 -100111100100 ammo 14 -100111100100 arable 14 -100111100100 yoga 14 -100111100100 RoadRailer 14 -100111100100 lewd 14 -100111100100 Marineland 15 -100111100100 TIL 15 -100111100100 waterfowl 15 -100111100100 beluga 15 -100111100100 lavender 15 -100111100100 acupuncture 15 -100111100100 in-vitro 16 -100111100100 blueberry 16 -100111100100 clotting 16 -100111100100 feverfew 16 -100111100100 Chiapas 16 -100111100100 bluegrass 16 -100111100100 Colorwatch 17 -100111100100 urchin 17 -100111100100 AAdvantage 17 -100111100100 demon 17 -100111100100 unsightly 17 -100111100100 heart-disease 17 -100111100100 Tougaloo 17 -100111100100 grizzly 17 -100111100100 kiwi 17 -100111100100 Biedermeier 17 -100111100100 sightseeing 17 -100111100100 burlap 17 -100111100100 reggae 17 -100111100100 A-B 17 -100111100100 Spinfizz 17 -100111100100 telecommuting 17 -100111100100 Play-Doh 17 -100111100100 JIT 17 -100111100100 oncoming 17 -100111100100 flowered 17 -100111100100 Crotonville 18 -100111100100 overland 18 -100111100100 ovulation 18 -100111100100 B-scale 18 -100111100100 Habitat 18 -100111100100 Emmy 18 -100111100100 crocus 18 -100111100100 VIP 18 -100111100100 slapstick 18 -100111100100 polka 18 -100111100100 child-rearing 18 -100111100100 Wheaties 18 -100111100100 Cheerios 18 -100111100100 Listerine 18 -100111100100 onion 19 -100111100100 movable 19 -100111100100 Kronk 19 -100111100100 8th 19 -100111100100 Subway 19 -100111100100 Beaujolais 19 -100111100100 breast-cancer 19 -100111100100 Steppenwolf 19 -100111100100 badminton 20 -100111100100 Rossini 20 -100111100100 plasma 20 -100111100100 Malacanang 20 -100111100100 rush-hour 20 -100111100100 Kleenex 20 -100111100100 walnut 20 -100111100100 seltzer 20 -100111100100 PCP 21 -100111100100 smallpox 21 -100111100100 cholera 21 -100111100100 Eternity 21 -100111100100 ALPS 21 -100111100100 dystrophin 21 -100111100100 Nuremberg 21 -100111100100 psoriasis 22 -100111100100 supper 22 -100111100100 influenza 22 -100111100100 FSA 22 -100111100100 Bresse 22 -100111100100 semen 22 -100111100100 ballast 23 -100111100100 emphysema 23 -100111100100 mumps 23 -100111100100 colorization 23 -100111100100 est 23 -100111100100 Freon 23 -100111100100 quail 23 -100111100100 IVF 23 -100111100100 Midas 24 -100111100100 Caldor 24 -100111100100 CASE 24 -100111100100 acetaminophen 24 -100111100100 Lexis 24 -100111100100 almond 24 -100111100100 Lanvin 24 -100111100100 Outward 24 -100111100100 SAD 24 -100111100100 HTLV-1 24 -100111100100 fluoride 24 -100111100100 saltwater 25 -100111100100 check-in 25 -100111100100 thrombolytic 25 -100111100100 Absolut 26 -100111100100 shellfish 26 -100111100100 Izod 26 -100111100100 Rhone 26 -100111100100 alphabet 27 -100111100100 impoundment 27 -100111100100 kerosene 27 -100111100100 J&B 27 -100111100100 fingerprint 27 -100111100100 menopause 27 -100111100100 chiropractic 28 -100111100100 Hiroshima 28 -100111100100 amyloid 28 -100111100100 Passover 28 -100111100100 Impulse 29 -100111100100 deodorant 29 -100111100100 Abscam 30 -100111100100 off-Broadway 30 -100111100100 Garfield 30 -100111100100 midweek 30 -100111100100 angina 30 -100111100100 hardcover 30 -100111100100 frying 31 -100111100100 ROTC 31 -100111100100 Teflon 31 -100111100100 salami 32 -100111100100 ibuprofen 32 -100111100100 cellulose 32 -100111100100 pre-employment 32 -100111100100 measles 32 -100111100100 Roundup 33 -100111100100 Spam 33 -100111100100 Phobos 33 -100111100100 Intourist 33 -100111100100 unisex 33 -100111100100 sushi 34 -100111100100 melanin 34 -100111100100 manga 34 -100111100100 fancier 34 -100111100100 first-degree 34 -100111100100 chrome 34 -100111100100 occupant 34 -100111100100 polar 34 -100111100100 Iranamok 34 -100111100100 allergy 35 -100111100100 Niihau 35 -100111100100 Camel 35 -100111100100 Hanes 36 -100111100100 Kool-Aid 36 -100111100100 surfing 37 -100111100100 autograph 37 -100111100100 opium 38 -100111100100 AA 38 -100111100100 Caesarean 38 -100111100100 fasting 38 -100111100100 bamboo 39 -100111100100 Rodin 39 -100111100100 linear 39 -100111100100 COCOM 40 -100111100100 cyanide 41 -100111100100 Goliath 41 -100111100100 excursion 41 -100111100100 yeast 42 -100111100100 IUD 42 -100111100100 adhesive 42 -100111100100 IPS 42 -100111100100 ankle 43 -100111100100 plaster 43 -100111100100 booze 43 -100111100100 WTBS 44 -100111100100 melanoma 44 -100111100100 mating 44 -100111100100 margarine 44 -100111100100 graft 45 -100111100100 Valium 45 -100111100100 estrogen 46 -100111100100 backstage 46 -100111100100 look-alike 46 -100111100100 Burgundy 46 -100111100100 8mm 47 -100111100100 daylight 47 -100111100100 baldness 47 -100111100100 tuberculosis 47 -100111100100 cello 47 -100111100100 Cinemax 48 -100111100100 abalone 49 -100111100100 assembly-line 49 -100111100100 malaria 49 -100111100100 turtle 49 -100111100100 squid 50 -100111100100 oatmeal 51 -100111100100 granite 51 -100111100100 spaghetti 52 -100111100100 gasohol 52 -100111100100 Arabic 53 -100111100100 ketchup 53 -100111100100 Pampers 53 -100111100100 insect 53 -100111100100 oak 55 -100111100100 rust 55 -100111100100 dialysis 55 -100111100100 dessert 55 -100111100100 asthma 56 -100111100100 aerobics 56 -100111100100 formaldehyde 57 -100111100100 fibrosis 57 -100111100100 angioplasty 59 -100111100100 gymnastics 59 -100111100100 gallium 59 -100111100100 Nimrod 59 -100111100100 burial 60 -100111100100 low-calorie 60 -100111100100 roadside 60 -100111100100 Mir 61 -100111100100 trout 61 -100111100100 dope 62 -100111100100 herpes 62 -100111100100 surf 63 -100111100100 Aging 63 -100111100100 jogging 64 -100111100100 Monopoly 65 -100111100100 ham 65 -100111100100 AFDC 65 -100111100100 aspartame 66 -100111100100 polio 67 -100111100100 chemotherapy 67 -100111100100 aerial 69 -100111100100 elk 69 -100111100100 disco 69 -100111100100 ATM 70 -100111100100 Budweiser 71 -100111100100 insulin 71 -100111100100 proficiency 71 -100111100100 inheritance 71 -100111100100 ulcer 71 -100111100100 Tylenol 72 -100111100100 flu 72 -100111100100 self-defense 73 -100111100100 barbecue 73 -100111100100 acne 73 -100111100100 kindergarten 74 -100111100100 alligator 75 -100111100100 impeachment 75 -100111100100 refueling 77 -100111100100 particle 77 -100111100100 weekday 77 -100111100100 pine 79 -100111100100 fiberglass 79 -100111100100 benzene 80 -100111100100 Bordeaux 82 -100111100100 salmonella 82 -100111100100 groundwater 82 -100111100100 self-help 84 -100111100100 bottled 85 -100111100100 MBA 89 -100111100100 Beretta 90 -100111100100 voodoo 90 -100111100100 Mustang 93 -100111100100 Geo 93 -100111100100 methanol 98 -100111100100 Halloween 100 -100111100100 HDTV 101 -100111100100 calcium 103 -100111100100 hypertension 108 -100111100100 year-round 109 -100111100100 Arena 111 -100111100100 daytime 112 -100111100100 deer 112 -100111100100 corrosion 114 -100111100100 singles 115 -100111100100 silk 118 -100111100100 graduation 120 -100111100100 nicotine 120 -100111100100 foul 121 -100111100100 lip 121 -100111100100 lightning 123 -100111100100 urine 131 -100111100100 HIV 131 -100111100100 leukemia 134 -100111100100 Elvis 135 -100111100100 cardboard 138 -100111100100 torture 139 -100111100100 Form 141 -100111100100 heroin 145 -100111100100 heart-attack 147 -100111100100 tumor 148 -100111100100 Disneyland 153 -100111100100 sweat 156 -100111100100 math 163 -100111100100 Mass 170 -100111100100 transplant 177 -100111100100 arthritis 180 -100111100100 tin 180 -100111100100 apple 182 -100111100100 takeoff 185 -100111100100 espionage 187 -100111100100 Thanksgiving 188 -100111100100 narcotics 189 -100111100100 Cocom 191 -100111100100 boxing 195 -100111100100 Easter 207 -100111100100 wet 208 -100111100100 Mercedes 214 -100111100100 marijuana 233 -100111100100 champagne 234 -100111100100 superconductivity 245 -100111100100 Watergate 255 -100111100100 egg 258 -100111100100 aspirin 259 -100111100100 wildlife 259 -100111100100 trash 263 -100111100100 pregnancy 265 -100111100100 infant 270 -100111100100 DNA 278 -100111100100 tea 292 -100111100100 swimming 303 -100111100100 ocean 313 -100111100100 charity 324 -100111100100 breakfast 362 -100111100100 jazz 379 -100111100100 radiation 385 -100111100100 pop 404 -100111100100 garbage 432 -100111100100 acid 441 -100111100100 Broadway 444 -100111100100 iron 449 -100111100100 divorce 462 -100111100100 Medicaid 491 -100111100100 cocaine 636 -100111100100 arbitration 645 -100111100100 alcohol 656 -100111100100 animal 663 -100111100100 lunch 676 -100111100100 abortion 681 -100111100100 ice 710 -100111100100 SDI 716 -100111100100 vacation 772 -100111100100 dinner 802 -100111100100 wire 802 -100111100100 asbestos 807 -100111100100 dry 911 -100111100100 rock 914 -100111100100 sex 917 -100111100100 color 1027 -100111100100 Medicare 1106 -100111100100 Christmas 1454 -100111100100 English 1545 -100111100100 mail 1569 -100111100100 cancer 2021 -100111100100 college 2091 -100111100100 art 2185 -100111100100 air 4413 -100111100100 AIDS 4355 -100111100101 water-pumping 1 -100111100101 random-sample 1 -100111100101 adobe-colored 1 -100111100101 Atlantique 1 -100111100101 4,672 1 -100111100101 atherosclerotic 1 -100111100101 front-disc 1 -100111100101 formaldehyde-induced 1 -100111100101 Illinos 1 -100111100101 genecontaining 1 -100111100101 cellulose-eating 1 -100111100101 HemisFair 1 -100111100101 anti-misting 1 -100111100101 tail-finned 1 -100111100101 foot-in-mouth 1 -100111100101 copper-type 1 -100111100101 suit-and-tie-clad 1 -100111100101 pink-and-blue 1 -100111100101 yellow-and-red 1 -100111100101 pillow-sized 1 -100111100101 t-cell 1 -100111100101 field-trial 1 -100111100101 Klondike-brand 1 -100111100101 Glascoat 1 -100111100101 grain-moving 1 -100111100101 hydrofluoric 1 -100111100101 cancer-screening 1 -100111100101 per-table 1 -100111100101 18-to-19-inch 1 -100111100101 Incirlik 1 -100111100101 city-approvals 1 -100111100101 Bull's-Eye 1 -100111100101 forcolorectal 1 -100111100101 prussic 1 -100111100101 four-times-a-week 1 -100111100101 Nottinghamshire 1 -100111100101 Os-Cal 1 -100111100101 self-sealing 1 -100111100101 Villamor 1 -100111100101 waterfilled 1 -100111100101 book-studying 1 -100111100101 10,000-foot 1 -100111100101 populist-type 1 -100111100101 humanwave 1 -100111100101 nickel-alloy 1 -100111100101 pot-shaped 1 -100111100101 tambourine-wielding 1 -100111100101 770-yard 1 -100111100101 anhydrite 1 -100111100101 long-acting 1 -100111100101 Madonna-ish 1 -100111100101 nine-ton 1 -100111100101 foreign-policy-making 1 -100111100101 still-accented 1 -100111100101 six-loss 1 -100111100101 on-sale 1 -100111100101 mind-destroying 1 -100111100101 column-free 1 -100111100101 32-by-16-foot 1 -100111100101 American-like 1 -100111100101 355,511 1 -100111100101 single-missile 1 -100111100101 Relay 1 -100111100101 chocolate-chocolate-chip 1 -100111100101 dollar-stabilizing 1 -100111100101 letter-size 1 -100111100101 Kinkakuji 1 -100111100101 hemophilic 1 -100111100101 Breyers 1 -100111100101 state-ofthe-art 1 -100111100101 air-piercing 1 -100111100101 25-to-40-year-old 1 -100111100101 Grenada-like 1 -100111100101 non-ionizing 1 -100111100101 4,400-yard 1 -100111100101 tuberculosis-related 1 -100111100101 populist-style 1 -100111100101 once-endangered 1 -100111100101 experimental-jazz 1 -100111100101 1000-megawatt 1 -100111100101 post-cease-fire 1 -100111100101 mustard-gas 1 -100111100101 Shashlik 1 -100111100101 recriminalizing 1 -100111100101 Lichtenstein-based 1 -100111100101 Tirstrup 1 -100111100101 immune-suppressing 1 -100111100101 Motown-style 1 -100111100101 shrug-offable 1 -100111100101 scotland 1 -100111100101 lion-sized 1 -100111100101 1,818,604 1 -100111100101 chlorous 1 -100111100101 network-televised 1 -100111100101 hand-grenade 1 -100111100101 all-Mongolian 1 -100111100101 drill-team 1 -100111100101 scooped-out 1 -100111100101 Jewish-conspiracy 1 -100111100101 woodlike 1 -100111100101 audience-pleasing 1 -100111100101 antibody-derived 1 -100111100101 superduper-rich 1 -100111100101 Proventil 1 -100111100101 peptide-secreting 1 -100111100101 long-shelf-life 1 -100111100101 Solid-state 1 -100111100101 racetrack-shaped 1 -100111100101 20-century 1 -100111100101 quasi-magical 1 -100111100101 charcoal-burning 1 -100111100101 bathetic 1 -100111100101 post-vote 1 -100111100101 baled 1 -100111100101 five-borough 1 -100111100101 568-578 1 -100111100101 corporate-parody 1 -100111100101 drip-drip-drip 1 -100111100101 sandpapering 1 -100111100101 golden-oldies 1 -100111100101 third-lowest 1 -100111100101 dive-bombing 1 -100111100101 multipartisan 1 -100111100101 well-printed 1 -100111100101 Adamstown-area 1 -100111100101 paper-copying 1 -100111100101 street-stall 1 -100111100101 interference-from 1 -100111100101 7,000-gallon 1 -100111100101 pygmyish 1 -100111100101 Fatih 1 -100111100101 palm-shrouded 1 -100111100101 tofu-and-vegetable 1 -100111100101 military-goods 1 -100111100101 satisfied-looking 1 -100111100101 brocaded 1 -100111100101 drum-like 1 -100111100101 6,807 1 -100111100101 Borden-style 1 -100111100101 low-effort 1 -100111100101 Paris-Lyon 1 -100111100101 jamoca 1 -100111100101 disk-gusting 1 -100111100101 Libya-style 1 -100111100101 mapmaking 1 -100111100101 harvestable 1 -100111100101 workplace-related 1 -100111100101 television-type 1 -100111100101 700-student 1 -100111100101 Chapstick 1 -100111100101 Illopango 1 -100111100101 diastolic 1 -100111100101 systolic 1 -100111100101 frescoed 1 -100111100101 briquetted 1 -100111100101 tacked-on 1 -100111100101 advertising-heavy 1 -100111100101 highboy 1 -100111100101 salary-arbitration 1 -100111100101 ever-so-exciting 1 -100111100101 Malay-Filipino 1 -100111100101 three-foot-deep 1 -100111100101 laser-light 1 -100111100101 alcohol-breast 1 -100111100101 hyper-tufa 1 -100111100101 London-broil 1 -100111100101 Novyi 1 -100111100101 three-sided 1 -100111100101 Citibank-American 1 -100111100101 108-acre 1 -100111100101 dance/martial 1 -100111100101 irregularites 1 -100111100101 investment-community 1 -100111100101 404-square-mile 1 -100111100101 ball-swallowing 1 -100111100101 main-event 1 -100111100101 guerrilla-inflicted 1 -100111100101 Tay-Sachs 1 -100111100101 adult-t-cell 1 -100111100101 frost-stricken 1 -100111100101 Hellenistic 1 -100111100101 Off-Off 1 -100111100101 48-minute 1 -100111100101 gangliated 1 -100111100101 Pre-marital 1 -100111100101 120-feet-long 1 -100111100101 staccatto 1 -100111100101 dribbly 1 -100111100101 one-ring 1 -100111100101 cyprus-lined 1 -100111100101 2,700-member 1 -100111100101 bacteria-proof 1 -100111100101 proton-beam 1 -100111100101 4-by-5-inch 1 -100111100101 Futuristic 1 -100111100101 bullet-nicked 1 -100111100101 non-television 1 -100111100101 Gothic-style 1 -100111100101 endometrial 1 -100111100101 two-ounce 1 -100111100101 next-morning 1 -100111100101 turkey-trotting 1 -100111100101 fresh-caught 1 -100111100101 2.4-mile 1 -100111100101 somnambulant 1 -100111100101 tax-treatment 1 -100111100101 tween 1 -100111100101 hot-gas 1 -100111100101 American-assembled 1 -100111100101 1,000-megawatt 1 -100111100101 barbering 1 -100111100101 Reagan-led 1 -100111100101 accordion-pleated 1 -100111100101 black-walnut 1 -100111100101 oxygen-consuming 1 -100111100101 152-yard-long 1 -100111100101 arrogance-of-power 1 -100111100101 frozen-water 1 -100111100101 oxalic 1 -100111100101 hunter-turned 1 -100111100101 fake-brass-colored 1 -100111100101 fingernail-width 1 -100111100101 merriest 1 -100111100101 crosswalk 1 -100111100101 anti-intellectualan 1 -100111100101 not-so-famous 1 -100111100101 muriatic 1 -100111100101 shrapnel-bomb 1 -100111100101 five-course 1 -100111100101 scarlet-sided 1 -100111100101 spaz 1 -100111100101 synchotron 1 -100111100101 lankmark 1 -100111100101 cockroach-infested 1 -100111100101 hydroxyethyl 1 -100111100101 media-age 1 -100111100101 derringer-concealing 1 -100111100101 .25-caliber 1 -100111100101 velveteen 1 -100111100101 GIFT. 1 -100111100101 linoleic 1 -100111100101 ammonia-streaked 1 -100111100101 eve-of-hostilities 1 -100111100101 482,179 1 -100111100101 10,000-name 1 -100111100101 48-foot 1 -100111100101 dialed-up 1 -100111100101 Atlanta-Chicago 1 -100111100101 35-foot-diameter 1 -100111100101 pool-side 1 -100111100101 three-row 1 -100111100101 30-by-54-inch 1 -100111100101 125-acre 1 -100111100101 defense-orders 1 -100111100101 Glagolitic 1 -100111100101 multiarm 1 -100111100101 guilt-driven 1 -100111100101 blue-tinted 1 -100111100101 wage-inflation 1 -100111100101 Bufferin-brand 1 -100111100101 green-and-gold 1 -100111100101 wassail 1 -100111100101 mathematic 1 -100111100101 4,705,269 1 -100111100101 non-running 1 -100111100101 4,361 1 -100111100101 castiron 1 -100111100101 inquisitional 1 -100111100101 hemlock-covered 1 -100111100101 Glasgow-to-London 1 -100111100101 headbanging 1 -100111100101 Rent-a-Russian 1 -100111100101 fieldstone 1 -100111100101 farm-polluting 1 -100111100101 sausage-sandwich 1 -100111100101 anti-monoclonal 1 -100111100101 Stri-Dex 1 -100111100101 flying-club 1 -100111100101 hiccupy 1 -100111100101 live-virus 1 -100111100101 fourday 1 -100111100101 RAMP 1 -100111100101 summer's-end 1 -100111100101 eicosapentaenoic 1 -100111100101 six-LP 1 -100111100101 nutsy 1 -100111100101 plinking 1 -100111100101 .51-caliber 1 -100111100101 conoid 1 -100111100101 corrogated 1 -100111100101 tear-wringing 1 -100111100101 hooked-up 1 -100111100101 Pamyet 1 -100111100101 seaweed-wrapped 1 -100111100101 price/size 1 -100111100101 light-green 1 -100111100101 razor-edged 1 -100111100101 transfusion-borne 1 -100111100101 acetylsalicylic 1 -100111100101 multi-drug 1 -100111100101 E.p.t. 1 -100111100101 non-lymphocytic 1 -100111100101 roll-off 1 -100111100101 Mig 1 -100111100101 Bunsen 1 -100111100101 nonionizing 1 -100111100101 44-pound 1 -100111100101 pork-industry 1 -100111100101 coal-generated 1 -100111100101 Reversed 1 -100111100101 acclimation 1 -100111100101 WHO-sponsored 1 -100111100101 dollar-a-pint 1 -100111100101 nonscheduled 1 -100111100101 inactivation 1 -100111100101 20-meters-long 1 -100111100101 SportsTicker 1 -100111100101 French-accented 1 -100111100101 dioxin-tainted 1 -100111100101 electical 1 -100111100101 egg-related 1 -100111100101 more-varied 1 -100111100101 celiac 1 -100111100101 verhiess 1 -100111100101 poverty-making 1 -100111100101 in-the-cup 1 -100111100101 tatami 1 -100111100101 celadon-colored 1 -100111100101 24-bar 1 -100111100101 myelocytic 1 -100111100101 sword-resistant 1 -100111100101 hat-in-hand 1 -100111100101 Fabian-like 1 -100111100101 igneous 1 -100111100101 post-heart 1 -100111100101 230E 1 -100111100101 ARSR-3 1 -100111100101 miasmic 1 -100111100101 maraschino 1 -100111100101 timber-ceilinged 1 -100111100101 postheart 1 -100111100101 N.D.-based 1 -100111100101 macaroni-and-cheese 1 -100111100101 -accepted 1 -100111100101 moth-like 1 -100111100101 AK47 1 -100111100101 myelogenous 1 -100111100101 chuck-holed 1 -100111100101 piney-woods 1 -100111100101 laser-enhanced 1 -100111100101 doll-like 1 -100111100101 33,401 1 -100111100101 43,020 1 -100111100101 HIV-related 1 -100111100101 olympic-size 1 -100111100101 rear-disc 1 -100111100101 non-functioning 1 -100111100101 four-drug 1 -100111100101 full-dose 1 -100111100101 country-swing 1 -100111100101 mother-and-daughter 1 -100111100101 Oshkosh-made 1 -100111100101 extra-clear 1 -100111100101 near-riotous 1 -100111100101 trailers-exactly 1 -100111100101 Drowsy 1 -100111100101 praline 1 -100111100101 260-clause 1 -100111100101 close-packed 1 -100111100101 ceiling-ball 1 -100111100101 coal-heated 1 -100111100101 cobweb-covered 1 -100111100101 Health-Recombinant 1 -100111100101 50-ton 1 -100111100101 dirt-spattered 1 -100111100101 backcourt 1 -100111100101 reverse-weave 1 -100111100101 pewterlike 1 -100111100101 practice-ski 1 -100111100101 warm-red 1 -100111100101 dustiest 1 -100111100101 silver-white 1 -100111100101 toss-'em-together 1 -100111100101 broadcast-related 1 -100111100101 6-foot-plus 1 -100111100101 heartstring-plucking 1 -100111100101 tenderest 2 -100111100101 Lisburne 2 -100111100101 3,262 2 -100111100101 sex-determining 2 -100111100101 wintering 2 -100111100101 ERYX 2 -100111100101 median-nerve 2 -100111100101 pidgin 2 -100111100101 bobwhite 2 -100111100101 sandbag 2 -100111100101 welcome-home 2 -100111100101 Enzo-developed 2 -100111100101 cuddliness 2 -100111100101 beer-promotion 2 -100111100101 174,075 2 -100111100101 sulphuric 2 -100111100101 Precambrian 2 -100111100101 cheeriest 2 -100111100101 enlivening 2 -100111100101 ice-fishing 2 -100111100101 whitest 2 -100111100101 split-rail 2 -100111100101 Europalia 2 -100111100101 thatch 2 -100111100101 candle-lit 2 -100111100101 near-exclusive 2 -100111100101 self-wringing 2 -100111100101 chicken-wire 2 -100111100101 Clearasil 2 -100111100101 tungstic 2 -100111100101 human-wave 2 -100111100101 uric 2 -100111100101 exercise-induced 2 -100111100101 film-developing 2 -100111100101 Jamesport 2 -100111100101 burled 2 -100111100101 locust 2 -100111100101 metal-plated 2 -100111100101 carnii 2 -100111100101 fold-up 2 -100111100101 small-boat 2 -100111100101 wittiest 2 -100111100101 aluminum-sided 2 -100111100101 midautumn 2 -100111100101 Suchitoto 2 -100111100101 blood-related 2 -100111100101 kindey 2 -100111100101 lymphocytic 2 -100111100101 tick-tack-toe 2 -100111100101 four-foot-high 2 -100111100101 too-short 2 -100111100101 community-sponsored 2 -100111100101 steelhead 2 -100111100101 Worldopoly 2 -100111100101 mid-autumn 2 -100111100101 drug-laden 2 -100111100101 immunoglobulin 2 -100111100101 multicellular 2 -100111100101 predispute 2 -100111100101 granulomatous 2 -100111100101 deus 2 -100111100101 hard-to-detect 2 -100111100101 lap-joint 2 -100111100101 Gamay 2 -100111100101 PIPS 2 -100111100101 concertina 2 -100111100101 thrift-shop 2 -100111100101 HOVE 2 -100111100101 testicular 2 -100111100101 blood-based 2 -100111100101 lymphoblastic 2 -100111100101 whelping 2 -100111100101 auto-generated 2 -100111100101 easy-to-handle 2 -100111100101 12-foot-diameter 2 -100111100101 65-and-over 2 -100111100101 furfuryl 2 -100111100101 driver's-side 2 -100111100101 acidifying 2 -100111100101 arachidonic 2 -100111100101 66,907 2 -100111100101 Tenderleaf 2 -100111100101 refastenable 2 -100111100101 SEC-required 2 -100111100101 coronary-artery 2 -100111100101 lymphatic 2 -100111100101 UYK-43 2 -100111100101 soft-serve 2 -100111100101 requiem 2 -100111100101 sunblocking 2 -100111100101 main-meals 2 -100111100101 60-inch 2 -100111100101 5-foot-2-inch 2 -100111100101 17-3 2 -100111100101 76,503 2 -100111100101 Lud 2 -100111100101 12/ 2 -100111100101 25s 2 -100111100101 plate-glass 2 -100111100101 cursive 2 -100111100101 Korean-style 2 -100111100101 Okoujava 2 -100111100101 black-marble 2 -100111100101 nonfunctioning 2 -100111100101 path-dependent 2 -100111100101 palmitic 2 -100111100101 Muscovy 2 -100111100101 oleanolic 2 -100111100101 Colorgene 2 -100111100101 C-4 2 -100111100101 hours-long 2 -100111100101 myeloid 2 -100111100101 exhalation 2 -100111100101 pod-setting 2 -100111100101 testings 2 -100111100101 blast-resistant 2 -100111100101 1585 2 -100111100101 PXCL 2 -100111100101 deep-vein 2 -100111100101 demerit 2 -100111100101 citric 3 -100111100101 Hollywood-style 3 -100111100101 neurotoxic 3 -100111100101 gluing 3 -100111100101 Galil 3 -100111100101 Eastern-style 3 -100111100101 Chiffon 3 -100111100101 luxury-class 3 -100111100101 five-gallon 3 -100111100101 fortuneteller 3 -100111100101 tubal 3 -100111100101 Fallopian 3 -100111100101 sun. 3 -100111100101 litter-strewn 3 -100111100101 album-oriented 3 -100111100101 Rivonia 3 -100111100101 underutilization 3 -100111100101 nicotinic 3 -100111100101 conceptualization 3 -100111100101 baling 3 -100111100101 tracheostomy 3 -100111100101 rapier 3 -100111100101 pesto 3 -100111100101 corrugated-metal 3 -100111100101 Carara 3 -100111100101 FHLMC 3 -100111100101 dunking 3 -100111100101 male-pattern 3 -100111100101 weeding-out 3 -100111100101 teetotaling 3 -100111100101 diode 3 -100111100101 ribonucleic 3 -100111100101 granny 3 -100111100101 terephthalic 3 -100111100101 25-acre 3 -100111100101 silo 3 -100111100101 thermostatic 3 -100111100101 Hearty 3 -100111100101 tinting 3 -100111100101 half-acre 3 -100111100101 fourth-best 3 -100111100101 Bangles 3 -100111100101 metastatic 3 -100111100101 JAS 3 -100111100101 damage-assessment 3 -100111100101 ROA 3 -100111100101 phosphoric 3 -100111100101 squeezable 3 -100111100101 Parkay 3 -100111100101 gingham 3 -100111100101 Proto 4 -100111100101 clunker 4 -100111100101 triploid 4 -100111100101 Boghammer 4 -100111100101 vitamin-enriched 4 -100111100101 boric 4 -100111100101 smokable 4 -100111100101 Cremonese 4 -100111100101 capital-formation 4 -100111100101 rock-hard 4 -100111100101 thymus 4 -100111100101 antisense 4 -100111100101 barrel-vaulted 4 -100111100101 unventilated 4 -100111100101 P-51 4 -100111100101 MX-5 4 -100111100101 pod-filling 4 -100111100101 Geritol 4 -100111100101 multisite 4 -100111100101 ENA 4 -100111100101 hydrochloric 4 -100111100101 cobblestone 4 -100111100101 engine-compartment 4 -100111100101 parking-brake 4 -100111100101 comprehensiveness 4 -100111100101 six-foot-high 4 -100111100101 upper-management 4 -100111100101 magnetite 4 -100111100101 small-minded 4 -100111100101 telepathic 4 -100111100101 magnolia 4 -100111100101 subjectivity 4 -100111100101 Cray-1 4 -100111100101 Luftwaffe 5 -100111100101 ambient 5 -100111100101 6,350 5 -100111100101 numerator 5 -100111100101 AIDS-like 5 -100111100101 teary 5 -100111100101 folic 5 -100111100101 liquid-nitrogen 5 -100111100101 hucksters 5 -100111100101 low-impact 5 -100111100101 inhalable 5 -100111100101 roe 5 -100111100101 blood-vessel 5 -100111100101 pseudomonas 5 -100111100101 Fabulous 5 -100111100101 grandsons 5 -100111100101 ochre 5 -100111100101 tinder 5 -100111100101 Snorre 5 -100111100101 unpaved 5 -100111100101 VD 5 -100111100101 10-pound 5 -100111100101 doleful 5 -100111100101 chamomile 5 -100111100101 OvuStick 5 -100111100101 KTM 5 -100111100101 petit 5 -100111100101 sketchbook 5 -100111100101 fast-acting 6 -100111100101 cicada 6 -100111100101 post-Chernobyl 6 -100111100101 ionizing 6 -100111100101 Chernobyl-related 6 -100111100101 simian 6 -100111100101 2,008 6 -100111100101 colorectal 6 -100111100101 clink 6 -100111100101 Kaiseraugst 6 -100111100101 hurdling 6 -100111100101 standards-setting 6 -100111100101 hang-glider 6 -100111100101 waterborne 6 -100111100101 follicle 6 -100111100101 cyanuric 6 -100111100101 drive-up 6 -100111100101 p53 6 -100111100101 pancreatic 7 -100111100101 passenger-side 7 -100111100101 cardigan 7 -100111100101 Rb 7 -100111100101 pre-dispute 7 -100111100101 hyaluronic 7 -100111100101 flaking 7 -100111100101 Superstation 7 -100111100101 potluck 7 -100111100101 lumberjack 7 -100111100101 oscillating 7 -100111100101 pasteurization 7 -100111100101 peppermint 8 -100111100101 prepackaged 8 -100111100101 contour 8 -100111100101 lactic 8 -100111100101 predisposing 8 -100111100101 car-body 8 -100111100101 gurgling 8 -100111100101 chain-link 8 -100111100101 trade-adjustment 8 -100111100101 Claymation 9 -100111100101 bunt 9 -100111100101 AWACs 9 -100111100101 radiation-induced 9 -100111100101 deoxyribonucleic 9 -100111100101 bootlegging 9 -100111100101 Prego 9 -100111100101 duodenal 9 -100111100101 Mukluk 9 -100111100101 foraging 9 -100111100101 metabolic 9 -100111100101 Klondike 10 -100111100101 blue-green 10 -100111100101 lilac 10 -100111100101 boll 10 -100111100101 paralytic 10 -100111100101 stearic 10 -100111100101 nonfat 10 -100111100101 delirium 10 -100111100101 renal 10 -100111100101 reentry 10 -100111100101 Cyrillic 10 -100111100101 honking 10 -100111100101 arterial 11 -100111100101 sulfuric 11 -100111100101 layered 11 -100111100101 dictation 11 -100111100101 opiate 11 -100111100101 travelogue 11 -100111100101 navel 11 -100111100101 lodgepole 12 -100111100101 pandemic 12 -100111100101 VHL 12 -100111100101 delegate-selection 12 -100111100101 pituitary 12 -100111100101 state-of-the 12 -100111100101 feline 12 -100111100101 standing-room-only 12 -100111100101 lily 13 -100111100101 sunscreen 13 -100111100101 papier-mache 13 -100111100101 thatched 13 -100111100101 coloratura 13 -100111100101 SoHo 13 -100111100101 tinsel 13 -100111100101 burgundy 13 -100111100101 Extra-Strength 13 -100111100101 barnyard 14 -100111100101 ovarian 14 -100111100101 Novy 15 -100111100101 carpal 15 -100111100101 soldering 15 -100111100101 carinii 16 -100111100101 bedtime 16 -100111100101 pancreas 16 -100111100101 DMD 17 -100111100101 dining-room 17 -100111100101 room-temperature 17 -100111100101 T-cell 17 -100111100101 bile 18 -100111100101 lava 18 -100111100101 leaching 18 -100111100101 Nandaime 18 -100111100101 maturation 18 -100111100101 bone-marrow 19 -100111100101 uterine 20 -100111100101 neutron 21 -100111100101 urinary 22 -100111100101 venereal 22 -100111100101 iced 22 -100111100101 genital 23 -100111100101 strand 23 -100111100101 head-injury 24 -100111100101 jug 25 -100111100101 aft 26 -100111100101 genome 27 -100111100101 amino 29 -100111100101 thyroid 34 -100111100101 machine-gun 35 -100111100101 barbed 35 -100111100101 rheumatoid 36 -100111100101 frontal 38 -100111100101 bladder 42 -100111100101 IQ 42 -100111100101 chromosome 43 -100111100101 driver-side 45 -100111100101 malignant 52 -100111100101 SAT 55 -100111100101 cystic 56 -100111100101 sunset 56 -100111100101 cervical 62 -100111100101 recombinant 68 -100111100101 fusion 69 -100111100101 healing 78 -100111100101 meter 81 -100111100101 sperm 83 -100111100101 colon 109 -100111100101 prostate 114 -100111100101 nest 120 -100111100101 roller 131 -100111100101 liberation 135 -100111100101 courtesy 149 -100111100101 organ 151 -100111100101 peer 162 -100111100101 kidney 163 -100111100101 dawn 164 -100111100101 breast 195 -100111100101 horror 209 -100111100101 nerve 210 -100111100101 liver 217 -100111100101 dirt 241 -100111100101 rear 251 -100111100101 bone 263 -100111100101 Chernobyl 263 -100111100101 root 278 -100111100101 pleasure 301 -100111100101 aged 304 -100111100101 ages 309 -100111100101 lung 335 -100111100101 brain 494 -100111100101 fairness 499 -100111100101 sea 608 -100111100101 skin 624 -100111100101 birth 743 -100111100101 maturity 1003 -100111100101 memory 1191 -100111100101 blood 1921 -100111100101 heart 2693 -100111100101 standard 3206 -100111100101 age 3230 -100111100110 warning-system 1 -100111100110 missile-training 1 -100111100110 helicopter-gun 1 -100111100110 Elettrica 1 -100111100110 handling-equipment 1 -100111100110 fish-raising 1 -100111100110 software-maintenance 1 -100111100110 beecham 1 -100111100110 aeronautic 1 -100111100110 mission-planning 1 -100111100110 fighter-attack 1 -100111100110 GE-100 1 -100111100110 resources-ethical 1 -100111100110 combat-control 1 -100111100110 diagnostic-test 1 -100111100110 complex-bend 1 -100111100110 Fiorden 1 -100111100110 weather-reporting 1 -100111100110 jets. 1 -100111100110 storers 1 -100111100110 Jijo 1 -100111100110 pulp-bleaching 1 -100111100110 non-leaded 1 -100111100110 twin-prop 1 -100111100110 767-300-ER 1 -100111100110 measurement-oriented 1 -100111100110 cylinderblock 1 -100111100110 mine-detecting 1 -100111100110 aviaiton 1 -100111100110 nuclear-delivery 1 -100111100110 gun-system 1 -100111100110 weedkiller 1 -100111100110 backscatter 1 -100111100110 62M 1 -100111100110 diesel-electric 1 -100111100110 ski-season 1 -100111100110 44P 1 -100111100110 service-four 1 -100111100110 Panhard 1 -100111100110 Haircare 1 -100111100110 Ahitagni 1 -100111100110 night-attack 1 -100111100110 757-225 1 -100111100110 helicopter-training 1 -100111100110 707-type 1 -100111100110 oxygenation 1 -100111100110 34Ds 1 -100111100110 female-busted 1 -100111100110 bronchodilating 1 -100111100110 bloats 1 -100111100110 WorldPort 1 -100111100110 10-30 1 -100111100110 torpedo-defense 1 -100111100110 aircraft-part 1 -100111100110 Backscatter 1 -100111100110 noise-suppression 1 -100111100110 hightop 1 -100111100110 higher-altitude 1 -100111100110 central-processor 1 -100111100110 rig-fishing 1 -100111100110 aircraft-operating 1 -100111100110 fire-extingishing 1 -100111100110 fresh-orange-juice 1 -100111100110 submarine-fired 1 -100111100110 fanjet 1 -100111100110 aircraft-development 1 -100111100110 prfits 1 -100111100110 city-to-city 1 -100111100110 DC-8-71 1 -100111100110 subcurrents 1 -100111100110 radar-avoiding 1 -100111100110 5659-2-RB 1 -100111100110 cruisemissile 1 -100111100110 heavy-machine-tool 1 -100111100110 vehicle-guidance 1 -100111100110 spectrometry 1 -100111100110 MI-17 1 -100111100110 shipboard-weapons 1 -100111100110 chemical-thermomechanical 1 -100111100110 oil-changing 1 -100111100110 sprouts-laden 1 -100111100110 1,196,189 1 -100111100110 Prowlers 1 -100111100110 mission-control 1 -100111100110 digital-imaging 1 -100111100110 punch-out 1 -100111100110 mopup 1 -100111100110 bed-liner 1 -100111100110 electronic-quote 1 -100111100110 bellyskin 1 -100111100110 freesheet 1 -100111100110 RB-211-535E4 1 -100111100110 56-5A 1 -100111100110 landing-assistance 1 -100111100110 knockers 1 -100111100110 radar-surveillance 1 -100111100110 mailsorting 1 -100111100110 forest-lands 1 -100111100110 early-production 1 -100111100110 jet-style 1 -100111100110 dangly 1 -100111100110 dronelike 1 -100111100110 Finback 1 -100111100110 4,184,412 1 -100111100110 rotor-blade 1 -100111100110 radar-test 1 -100111100110 ejection-seat 1 -100111100110 sulphite 1 -100111100110 styrene-acrylic 1 -100111100110 bomb-carrying 1 -100111100110 INTELSAT-5 1 -100111100110 gunfire-control 1 -100111100110 signal-detecting 1 -100111100110 advanced-tactical 1 -100111100110 wattle 1 -100111100110 transport-plane 1 -100111100110 battlefield-reconnaissance 1 -100111100110 up-link 1 -100111100110 wallcovering 1 -100111100110 107mm 1 -100111100110 belly-skin 1 -100111100110 middle-weight 1 -100111100110 decongestant 2 -100111100110 satellite-launcher 2 -100111100110 launch-vehicle 2 -100111100110 singlet 2 -100111100110 ultra-light 2 -100111100110 electronic-display 2 -100111100110 all-Reich 2 -100111100110 reentry-vehicle 2 -100111100110 IL-18 2 -100111100110 Cinnamon 2 -100111100110 Jeep-brand 2 -100111100110 economy-size 2 -100111100110 250,045 2 -100111100110 turbo-fan 2 -100111100110 RB-211-524L 2 -100111100110 Orions 2 -100111100110 antiship 2 -100111100110 chicory 2 -100111100110 900,000-plus 2 -100111100110 widebodies 2 -100111100110 accuracies 2 -100111100110 powerplant 2 -100111100110 rough-terrain 2 -100111100110 air-crew 2 -100111100110 179-seat 2 -100111100110 II-gs 2 -100111100110 satellite-delivery 2 -100111100110 wide-cabin 2 -100111100110 fuel-distribution 2 -100111100110 S211 2 -100111100110 fixed-flame 2 -100111100110 umbrella-like 2 -100111100110 airlifter 2 -100111100110 jetplane 2 -100111100110 151,131 2 -100111100110 missile-targeting 2 -100111100110 ad-hominem 2 -100111100110 missile-basing 2 -100111100110 turbo-prop 2 -100111100110 Gigondas 2 -100111100110 avionics-support 2 -100111100110 uncontrived 2 -100111100110 firs 2 -100111100110 Spitfire 2 -100111100110 fighterbombers 2 -100111100110 AC-130 2 -100111100110 space-research 2 -100111100110 aircraft-communications 2 -100111100110 ripens 2 -100111100110 II-type 2 -100111100110 free-sheet 2 -100111100110 saxatilis 2 -100111100110 gatling 2 -100111100110 weapons-making 2 -100111100110 Turboprop 2 -100111100110 rosa 2 -100111100110 P-body 2 -100111100110 Akula 2 -100111100110 all-Beethoven 2 -100111100110 8-inch 2 -100111100110 blow-molding 2 -100111100110 laser-weapons 2 -100111100110 AGM-130 2 -100111100110 redecoration 2 -100111100110 honeydew 2 -100111100110 testrange 2 -100111100110 EP-3E 3 -100111100110 aircraft-training 3 -100111100110 Ilyushin 3 -100111100110 retrofits 3 -100111100110 B-25 3 -100111100110 four-stroke 3 -100111100110 trijet 3 -100111100110 still-life 3 -100111100110 mobile-missile 3 -100111100110 crew-training 3 -100111100110 proof-of-purchase 3 -100111100110 stepper 3 -100111100110 all-wheel-drive 3 -100111100110 ground-wood 3 -100111100110 767-200ER 3 -100111100110 impatiens 3 -100111100110 prowler 3 -100111100110 neo-classical 3 -100111100110 net-pen 3 -100111100110 aircraft-electronics 3 -100111100110 Tigershark 3 -100111100110 ginger-ale 3 -100111100110 backpacking 3 -100111100110 Boeing-737 3 -100111100110 Ariane-3 3 -100111100110 reconnaisance 3 -100111100110 altimeter 3 -100111100110 G-1 3 -100111100110 jellybean 3 -100111100110 325is 3 -100111100110 PW-2000 3 -100111100110 Peacekeeper 3 -100111100110 200SX 3 -100111100110 flight-inspection 3 -100111100110 MD-81 3 -100111100110 antiballistic-missile 3 -100111100110 combat-system 4 -100111100110 co-processor 4 -100111100110 A-340-200 4 -100111100110 banknote 4 -100111100110 Buran 4 -100111100110 suppressor 4 -100111100110 A310-300 4 -100111100110 short-to-medium 4 -100111100110 reconaissance 4 -100111100110 fuel-cell 4 -100111100110 F-27 4 -100111100110 Commander-in-Chief 4 -100111100110 SR-71 4 -100111100110 MD11 4 -100111100110 air-breathing 4 -100111100110 classiest 4 -100111100110 B-767s 4 -100111100110 industry-owned 4 -100111100110 4s 4 -100111100110 superalloy 4 -100111100110 tri-jets 4 -100111100110 747-100 4 -100111100110 estanciero 4 -100111100110 Cobras 4 -100111100110 missile-system 4 -100111100110 A-300-600 4 -100111100110 cratered 4 -100111100110 Raskolnikov 4 -100111100110 quasi-military 4 -100111100110 longhorn 4 -100111100110 deodorizing 4 -100111100110 P-7A 4 -100111100110 727-200 4 -100111100110 shuddering 5 -100111100110 727-100 5 -100111100110 H-1 5 -100111100110 Tomcat 5 -100111100110 landing-gear 5 -100111100110 F/A-18C 5 -100111100110 R3000 5 -100111100110 data-recording 5 -100111100110 chloride-backed 5 -100111100110 B1 5 -100111100110 test-equipment 5 -100111100110 F-16C 5 -100111100110 airframes 5 -100111100110 cut-out 5 -100111100110 anti-collision 5 -100111100110 twinjet 5 -100111100110 34D 5 -100111100110 Woolite 5 -100111100110 CFM-56 5 -100111100110 purifier 5 -100111100110 pentachlorophenol 6 -100111100110 MD-87 6 -100111100110 NX 6 -100111100110 Manchu 6 -100111100110 A-310-300 6 -100111100110 Maktoum 6 -100111100110 SSN-688 6 -100111100110 Bluebird 6 -100111100110 Lacrosse 6 -100111100110 commode 6 -100111100110 oat-bran 6 -100111100110 Superfan 6 -100111100110 anti-radar 6 -100111100110 sulfide 6 -100111100110 Ledger 6 -100111100110 jet-fighter 6 -100111100110 airman 6 -100111100110 duct 6 -100111100110 dressmaker 7 -100111100110 washroom 7 -100111100110 A-321 7 -100111100110 tri-jet 7 -100111100110 hot-water 7 -100111100110 emulsion 7 -100111100110 EFA 7 -100111100110 F16 7 -100111100110 minesweeper 7 -100111100110 rummy 8 -100111100110 RS 8 -100111100110 four-engined 8 -100111100110 F-1 8 -100111100110 slasher 8 -100111100110 767-300ER 8 -100111100110 Chinook 8 -100111100110 Hind 8 -100111100110 corkscrew 8 -100111100110 home-run 8 -100111100110 Belarus 8 -100111100110 Blackjack 8 -100111100110 gunship 8 -100111100110 Osprey 8 -100111100110 satellite-launch 8 -100111100110 Ariane-4 8 -100111100110 floater 8 -100111100110 F-50 8 -100111100110 cinder-block 9 -100111100110 turbojet 9 -100111100110 pebble 9 -100111100110 wide-bodies 9 -100111100110 smasher 9 -100111100110 MD-83 9 -100111100110 Kenworth 9 -100111100110 8086 9 -100111100110 rocket-motor 9 -100111100110 amplifier 9 -100111100110 howitzer 9 -100111100110 .45 9 -100111100110 Tristar 9 -100111100110 rotor 9 -100111100110 sapphire 9 -100111100110 ALR-67 9 -100111100110 88000 9 -100111100110 L&M 10 -100111100110 monomer 10 -100111100110 oxidizer 10 -100111100110 blower 10 -100111100110 767-200 10 -100111100110 SuperFan 10 -100111100110 747-300 10 -100111100110 eucalyptus 10 -100111100110 kinetic-kill 10 -100111100110 T-46 10 -100111100110 Pulsar 10 -100111100110 roundtrip 10 -100111100110 T800 11 -100111100110 Wok 11 -100111100110 sentry 11 -100111100110 A-310 11 -100111100110 isotope 11 -100111100110 A1 11 -100111100110 inter-island 11 -100111100110 PW-4000 12 -100111100110 turbofan 12 -100111100110 antidepressant 12 -100111100110 Rafale 12 -100111100110 Seawolf 12 -100111100110 A-300 13 -100111100110 fir 13 -100111100110 XE 13 -100111100110 peroxide 13 -100111100110 Backfire 13 -100111100110 O-ring 13 -100111100110 V2500 13 -100111100110 fighter-bomber 13 -100111100110 air-cooled 14 -100111100110 speedboat 14 -100111100110 DC-8 14 -100111100110 acetate 15 -100111100110 ordnance 15 -100111100110 icebreaker 15 -100111100110 pinball 15 -100111100110 300E 15 -100111100110 68030 15 -100111100110 hopper 16 -100111100110 Starship 16 -100111100110 7J-7 17 -100111100110 MiG 17 -100111100110 aviator 17 -100111100110 rodent 18 -100111100110 workhorse 18 -100111100110 Cray-3 18 -100111100110 A340 18 -100111100110 metal-cutting 18 -100111100110 Blackhawk 18 -100111100110 A320 19 -100111100110 octane 20 -100111100110 projectile 20 -100111100110 747-200 20 -100111100110 757-200 20 -100111100110 Hornet 20 -100111100110 aptitude 21 -100111100110 Aeromexico 22 -100111100110 causeway 22 -100111100110 ATF 22 -100111100110 Amraam 22 -100111100110 SS-25 22 -100111100110 kraft 22 -100111100110 marsh 23 -100111100110 AWACS 24 -100111100110 three-door 24 -100111100110 herb 25 -100111100110 carbide 25 -100111100110 drone 26 -100111100110 drainage 26 -100111100110 767-300 27 -100111100110 V-22 27 -100111100110 737-500 27 -100111100110 heater 30 -100111100110 Y-MP 30 -100111100110 launcher 31 -100111100110 SS-24 31 -100111100110 elm 31 -100111100110 membrane 32 -100111100110 interceptor 32 -100111100110 737-200 33 -100111100110 D-5 33 -100111100110 buffalo 34 -100111100110 twin-jet 34 -100111100110 advanced-technology 34 -100111100110 Aquila 35 -100111100110 P-3 35 -100111100110 space-launch 35 -100111100110 Aeroflot 35 -100111100110 crab 35 -100111100110 Concorde 35 -100111100110 power-plant 36 -100111100110 Phalanx 36 -100111100110 ballistic-missile 36 -100111100110 737-400 36 -100111100110 MRI 36 -100111100110 matrix 37 -100111100110 Tide 38 -100111100110 turboprop 38 -100111100110 missile-guidance 38 -100111100110 sub 38 -100111100110 whaling 38 -100111100110 wafer 39 -100111100110 payload 39 -100111100110 F/A-18 40 -100111100110 L-1011 41 -100111100110 ICBM 42 -100111100110 cruise-missile 43 -100111100110 7J7 43 -100111100110 propeller 43 -100111100110 airframe 44 -100111100110 mortar 44 -100111100110 LHX 46 -100111100110 re-entry 47 -100111100110 C-17 47 -100111100110 707 49 -100111100110 Sentra 50 -100111100110 early-warning 50 -100111100110 grenade 52 -100111100110 737-300 53 -100111100110 F-18 53 -100111100110 robber 56 -100111100110 DC-9 56 -100111100110 air-defense 57 -100111100110 antenna 58 -100111100110 A-330 59 -100111100110 cruiser 59 -100111100110 compartment 60 -100111100110 propulsion 60 -100111100110 accessory 62 -100111100110 Holocaust 62 -100111100110 alloy 64 -100111100110 atom 66 -100111100110 Ariane 66 -100111100110 simulator 66 -100111100110 grape 67 -100111100110 A-6 68 -100111100110 FSX 68 -100111100110 reconnaissance 69 -100111100110 F-20 71 -100111100110 propfan 71 -100111100110 Mirage 80 -100111100110 SS-20 80 -100111100110 MD-80 81 -100111100110 747-400 85 -100111100110 Awacs 86 -100111100110 A-320 92 -100111100110 incinerator 101 -100111100110 DC-10 101 -100111100110 727 106 -100111100110 X-ray 108 -100111100110 vending 110 -100111100110 trainer 110 -100111100110 767 112 -100111100110 chloride 112 -100111100110 Sparc 112 -100111100110 paperboard 115 -100111100110 A-340 116 -100111100110 Aegis 118 -100111100110 detergent 122 -100111100110 B-2 133 -100111100110 757 135 -100111100110 antibody 143 -100111100110 salad 143 -100111100110 Midgetman 148 -100111100110 B-1 150 -100111100110 subcompact 151 -100111100110 munitions 158 -100111100110 attendant 159 -100111100110 fax 160 -100111100110 potato 163 -100111100110 laundry 169 -100111100110 silicon 183 -100111100110 artillery 184 -100111100110 brass 192 -100111100110 MD-11 194 -100111100110 airliner 200 -100111100110 747 225 -100111100110 precision 231 -100111100110 explosives 233 -100111100110 custom 235 -100111100110 737 236 -100111100110 jetliner 241 -100111100110 booster 259 -100111100110 submarine 277 -100111100110 microprocessor 308 -100111100110 pipe 356 -100111100110 MX 394 -100111100110 airplane 412 -100111100110 bomber 417 -100111100110 motor 504 -100111100110 charter 507 -100111100110 freight 544 -100111100110 helicopter 556 -100111100110 cargo 623 -100111100110 fighter 651 -100111100110 radar 656 -100111100110 rocket 686 -100111100110 laboratory 852 -100111100110 satellite 994 -100111100110 airport 1192 -100111100110 shuttle 1269 -100111100110 jet 1310 -100111100110 metal 1536 -100111100110 missile 1574 -100111100110 engine 1593 -100111100110 flight 2505 -100111100110 aircraft 4787 -100111100110 paper 5812 -1001111001110 03138-131 1 -1001111001110 Filbert 1 -1001111001110 1-selling 1 -1001111001110 Collapses 1 -1001111001110 Ts 1 -1001111001110 3,668,658 1 -1001111001110 89-57 1 -1001111001110 27,800 1 -1001111001110 2784 1 -1001111001110 Walesboro 2 -1001111001110 2051 2 -1001111001110 rat-race 2 -1001111001110 1,2,3 2 -1001111001110 8-100s 2 -1001111001110 KitKat 2 -1001111001110 70-mile-an-hour 2 -1001111001110 odontoglossums 2 -1001111001110 Birchtree 2 -1001111001110 canefields 2 -1001111001110 Phantoms 2 -1001111001110 9200 2 -1001111001110 5-foot-11-inch 2 -1001111001110 firebrick 2 -1001111001110 8500 3 -1001111001110 2750 3 -1001111001110 PFP 3 -1001111001110 Centauri 3 -1001111001110 lavenders 3 -1001111001110 1342 3 -1001111001110 villainy 3 -1001111001110 carbaryl 3 -1001111001110 marginals 3 -1001111001110 bullring 4 -1001111001110 SS-21s 4 -1001111001110 TCS 4 -1001111001110 Trofeo 4 -1001111001110 mops 4 -1001111001110 Nescafe 4 -1001111001110 enviroment 4 -1001111001110 genealogy 4 -1001111001110 vigils 4 -1001111001110 mallets 4 -1001111001110 bifida 4 -1001111001110 flatulence 4 -1001111001110 Novocain 4 -1001111001110 mozzarella 5 -1001111001110 latrines 5 -1001111001110 icebergs 5 -1001111001110 credenza 5 -1001111001110 Elavil 5 -1001111001110 yokels 5 -1001111001110 paraffin 5 -1001111001110 cleavage 5 -1001111001110 quill 5 -1001111001110 nematode 5 -1001111001110 custard 6 -1001111001110 quails 6 -1001111001110 cackling 6 -1001111001110 bugling 6 -1001111001110 coves 6 -1001111001110 pantsuit 6 -1001111001110 parsley 6 -1001111001110 ferro 6 -1001111001110 redwoods 6 -1001111001110 watermelons 7 -1001111001110 parkland 7 -1001111001110 narrators 7 -1001111001110 sparrows 7 -1001111001110 lemmings 7 -1001111001110 domesticity 7 -1001111001110 milkweed 7 -1001111001110 fortifications 7 -1001111001110 uni 7 -1001111001110 Madras 7 -1001111001110 U-2 7 -1001111001110 scrimmage 8 -1001111001110 pastrami 8 -1001111001110 revelry 8 -1001111001110 Foltene 8 -1001111001110 cider 8 -1001111001110 hardwoods 8 -1001111001110 sod 8 -1001111001110 deerskin 8 -1001111001110 theatricality 8 -1001111001110 groveling 8 -1001111001110 crepe 8 -1001111001110 hide-and-seek 8 -1001111001110 tofu 8 -1001111001110 wastepaper 8 -1001111001110 macroeconomics 8 -1001111001110 Khad 8 -1001111001110 grime 9 -1001111001110 chastity 9 -1001111001110 hymns 9 -1001111001110 gras 9 -1001111001110 1961-69 9 -1001111001110 noninterference 9 -1001111001110 linoleum 9 -1001111001110 meatballs 9 -1001111001110 muffin 9 -1001111001110 garter 9 -1001111001110 songwriting 10 -1001111001110 rhythmically 10 -1001111001110 sturgeon 10 -1001111001110 WGN 10 -1001111001110 riverfront 10 -1001111001110 Sabbath 10 -1001111001110 muggers 10 -1001111001110 napalm 10 -1001111001110 mountainsides 10 -1001111001110 spinach 10 -1001111001110 sangiovese 11 -1001111001110 collagen 11 -1001111001110 zucchini 11 -1001111001110 freestyle 11 -1001111001110 helplessness 11 -1001111001110 greenery 11 -1001111001110 SS-24s 12 -1001111001110 dumpsters 12 -1001111001110 coiled 12 -1001111001110 cabotage 12 -1001111001110 celery 12 -1001111001110 woodlands 13 -1001111001110 vanillin 13 -1001111001110 lard 13 -1001111001110 octopus 13 -1001111001110 puffery 13 -1001111001110 cube 13 -1001111001110 hand-holding 14 -1001111001110 ed 14 -1001111001110 underdogs 14 -1001111001110 overbooking 14 -1001111001110 brine 14 -1001111001110 boxcar 16 -1001111001110 airship 16 -1001111001110 hearth 17 -1001111001110 tartar 17 -1001111001110 '92 17 -1001111001110 filler 17 -1001111001110 moss 17 -1001111001110 magnesium 17 -1001111001110 algebra 18 -1001111001110 slime 18 -1001111001110 finger-pointing 18 -1001111001110 lacrosse 18 -1001111001110 pigeon 18 -1001111001110 rhyme 19 -1001111001110 silverware 19 -1001111001110 compost 19 -1001111001110 3600 19 -1001111001110 reed 19 -1001111001110 jelly 20 -1001111001110 scrubbers 20 -1001111001110 arc 20 -1001111001110 stockyards 20 -1001111001110 obscenities 20 -1001111001110 grasses 20 -1001111001110 self-rule 21 -1001111001110 effluent 21 -1001111001110 tequila 21 -1001111001110 bun 21 -1001111001110 lipstick 22 -1001111001110 froth 22 -1001111001110 gentrification 22 -1001111001110 crabs 22 -1001111001110 partying 22 -1001111001110 acidity 22 -1001111001110 forage 23 -1001111001110 fright 23 -1001111001110 pantyhose 23 -1001111001110 insanity 23 -1001111001110 chaff 23 -1001111001110 number-crunching 24 -1001111001110 hostage-taking 24 -1001111001110 pavement 25 -1001111001110 contraband 26 -1001111001110 cropland 26 -1001111001110 pyramids 27 -1001111001110 sizzle 27 -1001111001110 fluff 27 -1001111001110 orchards 27 -1001111001110 reprisal 28 -1001111001110 ether 28 -1001111001110 ammonia 29 -1001111001110 pigment 29 -1001111001110 asparagus 29 -1001111001110 rancor 29 -1001111001110 decoration 30 -1001111001110 meditation 30 -1001111001110 cabbage 30 -1001111001110 mercury 30 -1001111001110 lemonade 31 -1001111001110 trench 33 -1001111001110 gown 33 -1001111001110 garlic 33 -1001111001110 catfish 34 -1001111001110 Jell-O 35 -1001111001110 misinformation 36 -1001111001110 desserts 36 -1001111001110 sakau 38 -1001111001110 bushes 39 -1001111001110 subsistence 40 -1001111001110 ribbon 41 -1001111001110 conciliation 41 -1001111001110 RNA 41 -1001111001110 arch 42 -1001111001110 glitz 43 -1001111001110 shoreline 46 -1001111001110 bleach 47 -1001111001110 coolant 47 -1001111001110 sidewalks 48 -1001111001110 insecticide 49 -1001111001110 pasture 49 -1001111001110 wills 50 -1001111001110 fruitcake 50 -1001111001110 bourbon 50 -1001111001110 manure 51 -1001111001110 chili 54 -1001111001110 2500 55 -1001111001110 gravel 56 -1001111001110 dynamite 59 -1001111001110 2200 62 -1001111001110 gunfire 62 -1001111001110 sunshine 63 -1001111001110 gin 65 -1001111001110 accelerator 65 -1001111001110 rationing 66 -1001111001110 carpets 67 -1001111001110 PPP 67 -1001111001110 glue 70 -1001111001110 caviar 70 -1001111001110 layout 71 -1001111001110 habitat 72 -1001111001110 3000 74 -1001111001110 outdoors 76 -1001111001110 sludge 78 -1001111001110 electrons 79 -1001111001110 bonding 79 -1001111001110 canvas 80 -1001111001110 yogurt 80 -1001111001110 tar 81 -1001111001110 rhythm 81 -1001111001110 cloth 82 -1001111001110 stairs 82 -1001111001110 suspense 83 -1001111001110 Krasnoyarsk 86 -1001111001110 rehearsal 86 -1001111001110 sunlight 87 -1001111001110 hydrogen 87 -1001111001110 sandwich 89 -1001111001110 plutonium 91 -1001111001110 hysteria 92 -1001111001110 famine 95 -1001111001110 hay 96 -1001111001110 fireworks 97 -1001111001110 debris 98 -1001111001110 ash 99 -1001111001110 bait 104 -1001111001110 airspace 104 -1001111001110 timberland 109 -1001111001110 rope 114 -1001111001110 blues 114 -1001111001110 grapes 116 -1001111001110 detente 121 -1001111001110 vodka 124 -1001111001110 nostalgia 126 -1001111001110 gum 128 -1001111001110 clay 129 -1001111001110 wilderness 129 -1001111001110 sauce 134 -1001111001110 farmland 139 -1001111001110 impulse 140 -1001111001110 medication 146 -1001111001110 correspondence 147 -1001111001110 bathroom 151 -1001111001110 romance 152 -1001111001110 jungle 162 -1001111001110 powder 164 -1001111001110 cake 165 -1001111001110 hype 166 -1001111001110 sheep 167 -1001111001110 adventure 172 -1001111001110 chemistry 180 -1001111001110 salmon 181 -1001111001110 tail 183 -1001111001110 luggage 189 -1001111001110 mud 195 -1001111001110 soup 203 -1001111001110 salt 204 -1001111001110 battlefield 208 -1001111001110 grass 211 -1001111001110 addiction 213 -1001111001110 insulation 216 -1001111001110 pie 216 -1001111001110 terror 216 -1001111001110 oxygen 222 -1001111001110 sand 222 -1001111001110 baggage 231 -1001111001110 butter 232 -1001111001110 patience 236 -1001111001110 cheese 239 -1001111001110 snow 259 -1001111001110 noise 263 -1001111001110 bread 297 -1001111001110 holidays 307 -1001111001110 plate 315 -1001111001110 tissue 339 -1001111001110 infection 340 -1001111001110 medium 346 -1001111001110 dust 349 -1001111001110 privacy 402 -1001111001110 therapy 427 -1001111001110 fruit 495 -1001111001110 steam 655 -1001111001110 offensive 689 -1001111001110 rain 776 -1001111001110 heat 893 -1001111001110 fish 923 -1001111001110 litigation 2198 -1001111001110 music 2363 -1001111001110 ground 2605 -1001111001110 property 3489 -1001111001110 water 3549 -1001111001110 space 3643 -1001111001110 land 3738 -1001111001110 war 5434 -10011110011110 feed-water 1 -10011110011110 monotheistic 1 -10011110011110 schlemiels 1 -10011110011110 better-yielding 1 -10011110011110 Publica 1 -10011110011110 plant-specific 1 -10011110011110 maintenance-tracking 1 -10011110011110 latchings 1 -10011110011110 gardening-tools 1 -10011110011110 little-traded 1 -10011110011110 phallus 1 -10011110011110 new-class 1 -10011110011110 electronics-system 1 -10011110011110 corporate- 1 -10011110011110 checkout-scanning 1 -10011110011110 trademark-licensing 1 -10011110011110 car-radio 1 -10011110011110 odalisques 1 -10011110011110 die-design 1 -10011110011110 phone-dialing 1 -10011110011110 launch-related 1 -10011110011110 fried-seafood 1 -10011110011110 business-safety 1 -10011110011110 Gottex 1 -10011110011110 hip-waders 1 -10011110011110 lentil 1 -10011110011110 repairers 1 -10011110011110 ochres 1 -10011110011110 overgraded 1 -10011110011110 axial 1 -10011110011110 tech-low 1 -10011110011110 S-series 1 -10011110011110 red-bean 1 -10011110011110 troglodytic 1 -10011110011110 local-exchange 1 -10011110011110 train-inspection 1 -10011110011110 urban-aid 1 -10011110011110 radiation-therapy 1 -10011110011110 land-moving 1 -10011110011110 checks-and-balances 1 -10011110011110 pitch-sensing 1 -10011110011110 ophthalmoscope 1 -10011110011110 ozonides 1 -10011110011110 high-beta 1 -10011110011110 spectrum-analyzer 1 -10011110011110 rand-hedge 1 -10011110011110 cask 1 -10011110011110 medium-capitalized 1 -10011110011110 travel-reservation 1 -10011110011110 electronic-test 1 -10011110011110 datastorage 1 -10011110011110 liability-lid 1 -10011110011110 ultra-filtration 1 -10011110011110 audience-polling 1 -10011110011110 narcotics-control 1 -10011110011110 car-related 1 -10011110011110 tape-coating 1 -10011110011110 inaugurations 1 -10011110011110 yenta 1 -10011110011110 nonindustrial 1 -10011110011110 low-dividend-paying 1 -10011110011110 major-capitalization 1 -10011110011110 support-software 1 -10011110011110 douches 1 -10011110011110 strength-training 1 -10011110011110 direct-mailing 1 -10011110011110 5,461 1 -10011110011110 passenger-information 1 -10011110011110 cholesterol-reduction 1 -10011110011110 quasi-populist 1 -10011110011110 antiaging 1 -10011110011110 transpositions 1 -10011110011110 172,038 1 -10011110011110 equipment-making 1 -10011110011110 industrial-minerals 1 -10011110011110 sign-making 1 -10011110011110 GSP-related 1 -10011110011110 notchback 1 -10011110011110 interestsensitive 1 -10011110011110 electronic-design 2 -10011110011110 boy. 2 -10011110011110 bioherbicide 2 -10011110011110 photorealism 2 -10011110011110 luminosity 2 -10011110011110 trust-management 2 -10011110011110 1,218 2 -10011110011110 excreta 2 -10011110011110 clapper 2 -10011110011110 database-manager 2 -10011110011110 intellection 2 -10011110011110 most-recommended 2 -10011110011110 trade-monitoring 2 -10011110011110 countercharge 2 -10011110011110 growth-company 2 -10011110011110 businesss 2 -10011110011110 cheekbones 2 -10011110011110 rotatable 2 -10011110011110 antipersonnel 2 -10011110011110 1,401 2 -10011110011110 cellular-communication 2 -10011110011110 Subarus 2 -10011110011110 set-ups 2 -10011110011110 third-line 2 -10011110011110 order-distribution 2 -10011110011110 AutoCAD 2 -10011110011110 trade-crossing 2 -10011110011110 VGA 2 -10011110011110 recoded 2 -10011110011110 rollerskating 2 -10011110011110 Technet 2 -10011110011110 weight-training 2 -10011110011110 tomagraphic 2 -10011110011110 presentation-manager 2 -10011110011110 paper-manufacturing 2 -10011110011110 SpeechViewer 2 -10011110011110 carlike 2 -10011110011110 ultra-lightweight 2 -10011110011110 A-frame 2 -10011110011110 trade-confirmation 2 -10011110011110 CenDec 2 -10011110011110 polypropylene-based 2 -10011110011110 variety-type 2 -10011110011110 drug-chain 2 -10011110011110 Pomeranians 2 -10011110011110 consumer-growth 2 -10011110011110 insulin-delivery 2 -10011110011110 automatic-transmission 2 -10011110011110 Japanese-like 2 -10011110011110 computer-booking 2 -10011110011110 myself. 2 -10011110011110 perm 2 -10011110011110 adornment 2 -10011110011110 1,029 2 -10011110011110 gerontologists 2 -10011110011110 orangeade 2 -10011110011110 CoAdvil 3 -10011110011110 pink-sheet 3 -10011110011110 construction-grant 3 -10011110011110 active-matrix 3 -10011110011110 1,356 3 -10011110011110 1,749 3 -10011110011110 survivalism 3 -10011110011110 chipmaking 3 -10011110011110 mask-making 3 -10011110011110 1,064 3 -10011110011110 beam-control 3 -10011110011110 resource-related 3 -10011110011110 untended 3 -10011110011110 PC/Forum 3 -10011110011110 cordiality 3 -10011110011110 barometric 3 -10011110011110 10-2 3 -10011110011110 workplace-exposure 3 -10011110011110 consols 3 -10011110011110 polyols 3 -10011110011110 magneto-optical 3 -10011110011110 high-capitalization 3 -10011110011110 vote-tallying 3 -10011110011110 satiety 3 -10011110011110 refried 3 -10011110011110 color-printing 3 -10011110011110 Ibans 4 -10011110011110 hyperthermia 4 -10011110011110 encapsulation 4 -10011110011110 MultiFinder 4 -10011110011110 cellular-communications 4 -10011110011110 cable-ready 4 -10011110011110 duplicator 4 -10011110011110 subsystem 4 -10011110011110 A/UX 4 -10011110011110 quick-profit 4 -10011110011110 missile-warning 4 -10011110011110 Xenix 4 -10011110011110 barcode 4 -10011110011110 1,183 4 -10011110011110 duplicators 4 -10011110011110 auto-focus 5 -10011110011110 incentive-backed 5 -10011110011110 large-company 5 -10011110011110 Pyrex 5 -10011110011110 Garfields 5 -10011110011110 casseroles 5 -10011110011110 document-matching 5 -10011110011110 freon 5 -10011110011110 XTs 5 -10011110011110 manikin 5 -10011110011110 Netware 6 -10011110011110 Caridex 6 -10011110011110 horseflesh 6 -10011110011110 Vancouver-listed 6 -10011110011110 tomography 6 -10011110011110 PALs 6 -10011110011110 figuration 6 -10011110011110 Pagemaker 6 -10011110011110 chemical-weapon 6 -10011110011110 algorithms 6 -10011110011110 shrubbery 6 -10011110011110 debugging 7 -10011110011110 vote-counting 7 -10011110011110 replicase 7 -10011110011110 Q-beta 7 -10011110011110 photo-radar 7 -10011110011110 minis 7 -10011110011110 Fosters 8 -10011110011110 vector 8 -10011110011110 psychobabble 8 -10011110011110 Inboard 8 -10011110011110 sculpturing 8 -10011110011110 health-service 9 -10011110011110 F-150 9 -10011110011110 groupware 9 -10011110011110 videodisk 9 -10011110011110 frock 9 -10011110011110 PARS 9 -10011110011110 pigskin 10 -10011110011110 levitation 10 -10011110011110 MagNet 10 -10011110011110 order-entry 10 -10011110011110 betel 10 -10011110011110 superminicomputer 11 -10011110011110 PSR 11 -10011110011110 typeface 11 -10011110011110 rustproofing 11 -10011110011110 MS/DOS 11 -10011110011110 monorail 12 -10011110011110 co-insurance 12 -10011110011110 interest-rate-sensitive 12 -10011110011110 urethane 12 -10011110011110 6300 12 -10011110011110 quartz 12 -10011110011110 100-index 12 -10011110011110 Legends 13 -10011110011110 embroidery 13 -10011110011110 VisiCalc 13 -10011110011110 Postscript 14 -10011110011110 big-capitalization 14 -10011110011110 bluechip 15 -10011110011110 yttrium 16 -10011110011110 sculpting 17 -10011110011110 aftermarket 22 -10011110011110 toner 22 -10011110011110 Maxima 23 -10011110011110 Rolex 23 -10011110011110 typesetting 24 -10011110011110 DOS 24 -10011110011110 pager 25 -10011110011110 supercollider 29 -10011110011110 penicillin 29 -10011110011110 XT 30 -10011110011110 thallium 31 -10011110011110 UNIX 33 -10011110011110 smaller-capitalization 35 -10011110011110 rate-sensitive 35 -10011110011110 disc 38 -10011110011110 scanner 40 -10011110011110 hard-disk 43 -10011110011110 small-capitalization 44 -10011110011110 composites 45 -10011110011110 interest-sensitive 47 -10011110011110 helium 49 -10011110011110 hygiene 50 -10011110011110 nut 53 -10011110011110 sensor 62 -10011110011110 tech 63 -10011110011110 resonance 65 -10011110011110 generics 74 -10011110011110 MS-DOS 79 -10011110011110 Legend 82 -10011110011110 large-capitalization 90 -10011110011110 magnets 90 -10011110011110 stationery 91 -10011110011110 popcorn 97 -10011110011110 AT 100 -10011110011110 carpeting 118 -10011110011110 ceramics 148 -10011110011110 photography 151 -10011110011110 networking 153 -10011110011110 nitrogen 156 -10011110011110 spreadsheet 215 -10011110011110 OS/2 236 -10011110011110 reservation 309 -10011110011110 1-2-3 334 -10011110011110 printer 349 -10011110011110 Unix 429 -10011110011110 graphics 491 -10011110011110 blue-chip 694 -10011110011110 disk 840 -10011110011110 hardware 849 -10011110011110 technology 6072 -10011110011110 software 4195 -10011110011111 cotton-mouth 1 -10011110011111 connaisseuse 1 -10011110011111 McCambridge 1 -10011110011111 tete-a-tetes 1 -10011110011111 8282 1 -10011110011111 sextants 1 -10011110011111 Underalls 1 -10011110011111 '56 1 -10011110011111 8582 1 -10011110011111 extruders 1 -10011110011111 rain/snow 1 -10011110011111 ethnography 1 -10011110011111 anti-parasitic 1 -10011110011111 pochee 1 -10011110011111 cargo-related 1 -10011110011111 pomace 1 -10011110011111 hybridization 1 -10011110011111 probe-based 1 -10011110011111 5329 1 -10011110011111 orchid-viewing 1 -10011110011111 anti-viruses 1 -10011110011111 rose-and-green 1 -10011110011111 nucleating 1 -10011110011111 Sings 1 -10011110011111 1040-ES 1 -10011110011111 VE-2-2508 1 -10011110011111 831-553-1 1 -10011110011111 837-176-1 1 -10011110011111 spectrograph 1 -10011110011111 traffic-messages 1 -10011110011111 Regression 1 -10011110011111 inducers 1 -10011110011111 hash-browns 1 -10011110011111 Disclaimer 1 -10011110011111 hulling 1 -10011110011111 auger 1 -10011110011111 sororities. 1 -10011110011111 spermatozoa 1 -10011110011111 4626-W 1 -10011110011111 1040-X 1 -10011110011111 typherium 1 -10011110011111 sulphide 1 -10011110011111 2031. 1 -10011110011111 Gumbie 1 -10011110011111 1099-B. 1 -10011110011111 programs-research 1 -10011110011111 disemboweled 1 -10011110011111 1040ES 1 -10011110011111 ceviche 1 -10011110011111 kabob 1 -10011110011111 nog 1 -10011110011111 shantung 1 -10011110011111 crepes 1 -10011110011111 giftgiving 1 -10011110011111 1099-S 1 -10011110011111 sequesterants 1 -10011110011111 cargo-vessels 1 -10011110011111 shuttlecocks 1 -10011110011111 foo 1 -10011110011111 cream-making 1 -10011110011111 entrance-examination 1 -10011110011111 treatment-evaluation 1 -10011110011111 5498 1 -10011110011111 Seders 1 -10011110011111 Classico 1 -10011110011111 sickness. 1 -10011110011111 political-corruption 1 -10011110011111 5500EZ 1 -10011110011111 Scrapbook 1 -10011110011111 prognostication 1 -10011110011111 Cost-Shifting 1 -10011110011111 Stardom 1 -10011110011111 water-sea 1 -10011110011111 reader-printer 1 -10011110011111 aria-mongers 1 -10011110011111 ordains 1 -10011110011111 Setup 1 -10011110011111 slug-kebab 1 -10011110011111 Mahood 1 -10011110011111 Record-Tribune 1 -10011110011111 weather-Kansas 1 -10011110011111 antimonide 1 -10011110011111 20-minute-long 1 -10011110011111 resurfacer 1 -10011110011111 half-figures 1 -10011110011111 Profiteer 1 -10011110011111 phraseologist 1 -10011110011111 pyres 1 -10011110011111 LaCoste 1 -10011110011111 beurre 1 -10011110011111 seders 1 -10011110011111 cream. 1 -10011110011111 virs 1 -10011110011111 gardener-writers 1 -10011110011111 lites 1 -10011110011111 sveltes 1 -10011110011111 noncertified 1 -10011110011111 cleanable 1 -10011110011111 cathedra 1 -10011110011111 minus/A-1-plus 1 -10011110011111 rovings 1 -10011110011111 grogginess 1 -10011110011111 fumigant 1 -10011110011111 18-6 1 -10011110011111 Ripperologist 1 -10011110011111 antiques. 1 -10011110011111 Benzes 1 -10011110011111 ironware 1 -10011110011111 waistcoats 1 -10011110011111 finos 1 -10011110011111 holdbacks 1 -10011110011111 curer 1 -10011110011111 silicate 2 -10011110011111 prunings 2 -10011110011111 attractant 2 -10011110011111 signboards 2 -10011110011111 3115 2 -10011110011111 marinara 2 -10011110011111 nectars 2 -10011110011111 sauteed 2 -10011110011111 suppressors 2 -10011110011111 linesman 2 -10011110011111 300SEL 2 -10011110011111 savannas 2 -10011110011111 ratemaking 2 -10011110011111 gulches 2 -10011110011111 penury 2 -10011110011111 MoCA 2 -10011110011111 2688 2 -10011110011111 profiteer 2 -10011110011111 jack-o'-lanterns 2 -10011110011111 parte 2 -10011110011111 bugled 2 -10011110011111 machina 2 -10011110011111 slims 2 -10011110011111 Bound-type 2 -10011110011111 1040X 2 -10011110011111 bromeliads 2 -10011110011111 forests. 2 -10011110011111 hexachloride 2 -10011110011111 service. 2 -10011110011111 mini-museums 2 -10011110011111 8606 2 -10011110011111 sweetbread 2 -10011110011111 hospital-insurance 3 -10011110011111 pulley 3 -10011110011111 1040-A 3 -10011110011111 compactors 3 -10011110011111 crocs 3 -10011110011111 Bio/Technology 3 -10011110011111 pectoris 3 -10011110011111 testiness 3 -10011110011111 8283 3 -10011110011111 icecap 3 -10011110011111 pinafore 3 -10011110011111 ripoff 3 -10011110011111 reflux 3 -10011110011111 textbook-publishing 4 -10011110011111 Haunt 4 -10011110011111 shoehorns 4 -10011110011111 steamers 4 -10011110011111 dither 4 -10011110011111 authentication 4 -10011110011111 Verse 4 -10011110011111 compactor 5 -10011110011111 shoot-'em-up 5 -10011110011111 8716 5 -10011110011111 Tracker 5 -10011110011111 bunnies 5 -10011110011111 LCDs 5 -10011110011111 chino 5 -10011110011111 fuzz 5 -10011110011111 preventatives 6 -10011110011111 8598 6 -10011110011111 Seder 6 -10011110011111 1099 6 -10011110011111 simplex 6 -10011110011111 lifers 6 -10011110011111 injector 7 -10011110011111 husbandry 7 -10011110011111 fireproofing 7 -10011110011111 sherbet 7 -10011110011111 sacs 8 -10011110011111 gift-giving 8 -10011110011111 carbonate 9 -10011110011111 carols 9 -10011110011111 yolks 9 -10011110011111 Virus 10 -10011110011111 sequencing 10 -10011110011111 reseller 12 -10011110011111 pail 12 -10011110011111 theocracy 13 -10011110011111 arcade 15 -10011110011111 minimill 15 -10011110011111 cubes 15 -10011110011111 corks 16 -10011110011111 fingerprinting 16 -10011110011111 openers 17 -10011110011111 foliage 18 -10011110011111 balm 23 -10011110011111 sorters 25 -10011110011111 deco 25 -10011110011111 curricula 28 -10011110011111 cork 28 -10011110011111 1040 30 -10011110011111 habitats 33 -10011110011111 educations 35 -10011110011111 telecast 39 -10011110011111 Bound 40 -10011110011111 linen 46 -10011110011111 abatement 47 -10011110011111 nouveau 49 -10011110011111 blackout 51 -10011110011111 conditioner 53 -10011110011111 hotline 55 -10011110011111 interface 56 -10011110011111 arsenide 57 -10011110011111 upstream 57 -10011110011111 sickness 58 -10011110011111 wax 63 -10011110011111 Presley 66 -10011110011111 skating 67 -10011110011111 gateway 72 -10011110011111 vanilla 74 -10011110011111 rod 90 -10011110011111 poisoning 92 -10011110011111 stunt 96 -10011110011111 directory 120 -10011110011111 conditioners 127 -10011110011111 cleaner 157 -10011110011111 Eve 159 -10011110011111 conditioning 177 -10011110011111 prayer 198 -10011110011111 ore 288 -10011110011111 shelter 406 -10011110011111 cream 438 -10011110011111 dance 516 -10011110011111 transport 547 -10011110011111 channel 564 -10011110011111 monopoly 694 -10011110011111 franchise 848 -10011110011111 programming 1147 -10011110011111 fare 1148 -10011110011111 broadcast 1188 -10011110011111 fashion 1228 -10011110011111 weather 1658 -10011110011111 service 8948 -10011110011111 travel 2457 -10011110100 forklift-truck 1 -10011110100 charter-aircraft 1 -10011110100 smoking-tobacco 1 -10011110100 payroll-processing 1 -10011110100 ground-courier 1 -10011110100 bank-data 1 -10011110100 industrial-service 1 -10011110100 microgeneration 1 -10011110100 apparel-retailing 1 -10011110100 office-furnishings 1 -10011110100 customer-accounting 1 -10011110100 options-broking 1 -10011110100 airconditioning 1 -10011110100 waste-recovery 1 -10011110100 label-manufacturing 1 -10011110100 amines 1 -10011110100 dourness 1 -10011110100 hotel-and-casino 1 -10011110100 spray-coating 1 -10011110100 industrial-container 1 -10011110100 storage-terminal 1 -10011110100 baby-product 1 -10011110100 buildingmaterials 1 -10011110100 soundstudio 1 -10011110100 waste-management-services 1 -10011110100 univeral 1 -10011110100 timing-device 1 -10011110100 houseplant 1 -10011110100 trust-services 1 -10011110100 Warszawa 1 -10011110100 uranium-conversion 1 -10011110100 congeneration 1 -10011110100 garment-trucking 1 -10011110100 packaging-products 1 -10011110100 carabineros 1 -10011110100 phony-business 1 -10011110100 steam-iron 1 -10011110100 metals-products 1 -10011110100 individual-investment 1 -10011110100 beer-making 1 -10011110100 steel-product 1 -10011110100 performance-materials 1 -10011110100 linen-supply 1 -10011110100 ripening-inhibitor 1 -10011110100 camping-equipment 1 -10011110100 well-anchored 1 -10011110100 frozen-potato-processing 1 -10011110100 rehabilitation-center 1 -10011110100 healthservices 1 -10011110100 sugar-production 1 -10011110100 equipment-syndication 1 -10011110100 timber-products 1 -10011110100 computing-services 1 -10011110100 hot-chocolate 1 -10011110100 pork-products 1 -10011110100 resort-development 1 -10011110100 pneumatic-automation 1 -10011110100 tooth-care 1 -10011110100 car-leasing 1 -10011110100 toxic-waste-disposal 1 -10011110100 party-favors 1 -10011110100 specialty-product 1 -10011110100 tert-butyl 1 -10011110100 heavy-duty-truck 1 -10011110100 marketing-and-services 1 -10011110100 egocentrism 1 -10011110100 panelling 1 -10011110100 business-finance 1 -10011110100 photographic-equipment 1 -10011110100 blood-substitute 1 -10011110100 gasoline-retailing 1 -10011110100 gendarme 1 -10011110100 Brisbane-based 1 -10011110100 workstation/terminals 1 -10011110100 refrigerated-storage 1 -10011110100 sports-apparel 1 -10011110100 glass-packing 1 -10011110100 slime-plant 1 -10011110100 fastest-shrinking 1 -10011110100 fuels-trading 1 -10011110100 road-transport 1 -10011110100 driveline 1 -10011110100 tent-making 1 -10011110100 automobile- 1 -10011110100 beneficiation 1 -10011110100 fresh-meats 1 -10011110100 public-health-and-safety 1 -10011110100 home-supplies 1 -10011110100 mechanical-services 1 -10011110100 liquidation-services 1 -10011110100 hardware-products 1 -10011110100 food-color 1 -10011110100 utility-dominated 1 -10011110100 PC-software 1 -10011110100 respiratory-therapy 1 -10011110100 audiovisual-products 1 -10011110100 forest-resources 1 -10011110100 corn-canning 1 -10011110100 reform-twisting 1 -10011110100 credit-card-services 1 -10011110100 horse-packing 1 -10011110100 tableting 1 -10011110100 bunkering 2 -10011110100 rubber-products 2 -10011110100 food-and-beverage 2 -10011110100 electrical-machinery 2 -10011110100 consumer-food 2 -10011110100 electronic-keyboard 2 -10011110100 cellular-radio 2 -10011110100 560SEC 2 -10011110100 package-goods 2 -10011110100 interior-construction 2 -10011110100 reinforced-plastics 2 -10011110100 chemical-making 2 -10011110100 food-making 2 -10011110100 process-controls 2 -10011110100 computerized-communications 2 -10011110100 oilfield-services 2 -10011110100 electronics-components 2 -10011110100 electronic-components 2 -10011110100 contract-food 2 -10011110100 commercial-products 2 -10011110100 high-image 2 -10011110100 mah-jongg 2 -10011110100 business-publishing 2 -10011110100 aerospace/technology 2 -10011110100 thoroughbred-breeding 2 -10011110100 contract-research 2 -10011110100 Pritzker-affiliated 2 -10011110100 financial-advisory 2 -10011110100 industrial-vehicle 2 -10011110100 travelers-check 2 -10011110100 railcar-maintenance 2 -10011110100 gas-marketing 2 -10011110100 vermiculite 2 -10011110100 120-year-old 2 -10011110100 Sprinter 2 -10011110100 petroleum-services 2 -10011110100 non-competing 2 -10011110100 manufacturing-technology 2 -10011110100 electrical-electronics 2 -10011110100 nutritional-supplements 2 -10011110100 ironwork 2 -10011110100 automobile-rental 2 -10011110100 bus-manufacturing 2 -10011110100 shrimp-farming 2 -10011110100 beachware 2 -10011110100 Signal-Stat 2 -10011110100 career-school 2 -10011110100 loungewear 2 -10011110100 Stephens-Adamson 2 -10011110100 mushroom-growing 2 -10011110100 computer-disk-drive 2 -10011110100 bio-tech 2 -10011110100 energy-service 2 -10011110100 movie-camera 2 -10011110100 military-equipment 2 -10011110100 specialty-foods 2 -10011110100 non-pill 2 -10011110100 800-service 2 -10011110100 microwave-equipment 2 -10011110100 laser-scanning 2 -10011110100 pipeline-inspection 2 -10011110100 eye-wear 2 -10011110100 videoconferencing 2 -10011110100 building-services 2 -10011110100 pre-theater 2 -10011110100 strategic-materials 2 -10011110100 re-insurance 2 -10011110100 cable-manufacturing 2 -10011110100 lease-financing 2 -10011110100 electronics-goods 2 -10011110100 diversified-services 2 -10011110100 energy-exploration 2 -10011110100 dairy-products 2 -10011110100 oil-pumping 2 -10011110100 Suomi 2 -10011110100 energy-resources 2 -10011110100 communication-systems 2 -10011110100 computer-servicing 2 -10011110100 fluoropolymers 2 -10011110100 electrical-distribution 2 -10011110100 hazardous-waste-management 2 -10011110100 financial-software 2 -10011110100 geothermal-power 2 -10011110100 leisure-services 2 -10011110100 icemaking 2 -10011110100 construction-services 2 -10011110100 lower-price 2 -10011110100 intimate-apparel 2 -10011110100 balustrades 2 -10011110100 furniture-manufacturing 2 -10011110100 Glassware 2 -10011110100 light-metals 2 -10011110100 fire-extinguisher 2 -10011110100 lighting-parts 2 -10011110100 mineral-resources 2 -10011110100 Bra-Con 2 -10011110100 Pennbank 2 -10011110100 bright-red 2 -10011110100 temporary-service 2 -10011110100 boatmaking 2 -10011110100 express-delivery 2 -10011110100 Brockville 2 -10011110100 commodites 2 -10011110100 carbon-products 2 -10011110100 diversified-products 2 -10011110100 international-services 2 -10011110100 particleboard 3 -10011110100 freight-transportation 3 -10011110100 cold-storage 3 -10011110100 processed-meats 3 -10011110100 Almay 3 -10011110100 textile-finishing 3 -10011110100 Wellcraft 3 -10011110100 beauty-aids 3 -10011110100 steel-wire 3 -10011110100 service-merchandising 3 -10011110100 woodcrafts 3 -10011110100 agricultural-equipment 3 -10011110100 well-built 3 -10011110100 freight-car 3 -10011110100 specialty-printing 3 -10011110100 electronic-imaging 3 -10011110100 sports-shoe 3 -10011110100 alcohol- 3 -10011110100 distilled-spirits 3 -10011110100 Franco-Italian 3 -10011110100 nonresidential-construction 3 -10011110100 precision-instrument 3 -10011110100 toiletry 3 -10011110100 office-machine 3 -10011110100 metal-pipe 3 -10011110100 niobium 3 -10011110100 security-guard 3 -10011110100 resorts-development 3 -10011110100 aerospace-defense 3 -10011110100 bio-technology 3 -10011110100 catalog-shopping 3 -10011110100 scientific-instruments 3 -10011110100 environmental-consulting 3 -10011110100 tantalum 3 -10011110100 mineral-exploration 3 -10011110100 agri-business 3 -10011110100 industrial-piping 3 -10011110100 television-game-show 3 -10011110100 plastic-container 3 -10011110100 beef-slaughtering 3 -10011110100 manufactured-homes 3 -10011110100 plasterboard 3 -10011110100 pet-foods 3 -10011110100 writing-instrument 3 -10011110100 teapots 3 -10011110100 gas-utility 3 -10011110100 garment-making 3 -10011110100 missile-systems 3 -10011110100 plastic-products 3 -10011110100 sorter 3 -10011110100 better-focused 3 -10011110100 metal-fabricating 3 -10011110100 uniform-rental 3 -10011110100 plasticizers 3 -10011110100 medium-capitalization 3 -10011110100 construction-products 3 -10011110100 money-creating 3 -10011110100 health-product 3 -10011110100 chemical-plant 3 -10011110100 slag-recycling 3 -10011110100 recreational-products 3 -10011110100 laboratory-equipment 3 -10011110100 medical-instrument 3 -10011110100 communications-services 3 -10011110100 property-investment 3 -10011110100 Bujones 3 -10011110100 electric-controls 3 -10011110100 chlorinators 4 -10011110100 industrial-services 4 -10011110100 commercial-finance 4 -10011110100 instant-printing 4 -10011110100 office-product 4 -10011110100 defense-equipment 4 -10011110100 building-product 4 -10011110100 agrochemical 4 -10011110100 Thalhimers 4 -10011110100 verbose 4 -10011110100 engine-parts 4 -10011110100 computer-retail 4 -10011110100 fuel-trading 4 -10011110100 tarpaulin 4 -10011110100 high-roller 4 -10011110100 auto-rental 4 -10011110100 outdoor-advertising 4 -10011110100 baseball-card 4 -10011110100 health-care-services 4 -10011110100 specialty-metals 4 -10011110100 support-services 4 -10011110100 fire-damage 4 -10011110100 seven-day-a-week 4 -10011110100 steel-bar 4 -10011110100 aerospace/defense 4 -10011110100 tire-retreading 4 -10011110100 ultrasonics 4 -10011110100 protective-services 4 -10011110100 asbestos-mining 4 -10011110100 auto-part 4 -10011110100 energy-products 4 -10011110100 farm-management 4 -10011110100 beachwear 4 -10011110100 hazardous-waste-disposal 4 -10011110100 steamship 4 -10011110100 office-systems 4 -10011110100 food-and-drink 4 -10011110100 arms-making 4 -10011110100 barging 4 -10011110100 nondairy 4 -10011110100 radiopharmaceutical 4 -10011110100 leisure-related 4 -10011110100 family-entertainment 4 -10011110100 marine-products 4 -10011110100 power-systems 4 -10011110100 hog-slaughtering 4 -10011110100 cleaning-services 4 -10011110100 aircraft-parts 4 -10011110100 polyolefins 4 -10011110100 WheelTek 4 -10011110100 health-care-products 4 -10011110100 mining-equipment 4 -10011110100 corn-sweetener 4 -10011110100 optoelectronics 5 -10011110100 butyl 5 -10011110100 consumer-foods 5 -10011110100 nondurable-goods 5 -10011110100 retail-brokerage 5 -10011110100 medical-electronics 5 -10011110100 aromatics 5 -10011110100 recycled-paperboard 5 -10011110100 furniture-making 5 -10011110100 electronic-systems 5 -10011110100 raw-milk 5 -10011110100 feminine-protection 5 -10011110100 beef-packing 5 -10011110100 bus-making 5 -10011110100 personnel-services 5 -10011110100 car-parts 5 -10011110100 cleaning-products 5 -10011110100 sundries 5 -10011110100 electronics-distribution 5 -10011110100 acrylics 5 -10011110100 liquefied-petroleum-gas 5 -10011110100 corn-syrup 5 -10011110100 nuclear-fuel 5 -10011110100 computer-peripheral 5 -10011110100 vegetable-oil 5 -10011110100 flour-milling 5 -10011110100 energy-development 5 -10011110100 fiberboard 5 -10011110100 tobacco-based 5 -10011110100 satellite-television 5 -10011110100 Lenscrafters 5 -10011110100 household-product 5 -10011110100 medical-instruments 5 -10011110100 plant-building 5 -10011110100 synthetic-rubber 5 -10011110100 replacement-parts 5 -10011110100 barrow 5 -10011110100 sugar-processing 5 -10011110100 elastomer 5 -10011110100 ice-making 5 -10011110100 neckwear 5 -10011110100 flat-glass 5 -10011110100 oil-products 5 -10011110100 escudo 5 -10011110100 medical-supply 6 -10011110100 ferro-nickel 6 -10011110100 construction-machinery 6 -10011110100 single-product 6 -10011110100 micrographics 6 -10011110100 medical-technology 6 -10011110100 steel-fabricating 6 -10011110100 electrical-contracting 6 -10011110100 optical-products 6 -10011110100 pet-food 6 -10011110100 personal-care-products 6 -10011110100 electrical-equipment 6 -10011110100 corn-milling 6 -10011110100 golf-course 6 -10011110100 furniture-rental 6 -10011110100 elastomers 6 -10011110100 chewing-gum 6 -10011110100 Zuercher 6 -10011110100 grocery-products 6 -10011110100 glassmaking 6 -10011110100 vehicle-leasing 6 -10011110100 kaolin 6 -10011110100 Anacin 6 -10011110100 heavy-engineering 6 -10011110100 nickel-mining 6 -10011110100 medical-diagnostic 6 -10011110100 auto-products 6 -10011110100 metal-stamping 6 -10011110100 rent-a-car 7 -10011110100 Bild 7 -10011110100 Tareyton 7 -10011110100 luxury-products 7 -10011110100 refractories 7 -10011110100 mineral-water 7 -10011110100 oil-field-services 7 -10011110100 sugar-refining 7 -10011110100 razor-blade 7 -10011110100 beverage-can 7 -10011110100 snack-foods 7 -10011110100 private-client 7 -10011110100 copper-mining 7 -10011110100 computer-maintenance 7 -10011110100 now-troubled 7 -10011110100 Thermopatch 7 -10011110100 bioscience 7 -10011110100 ocean-shipping 7 -10011110100 animal-feed 7 -10011110100 professional-services 7 -10011110100 truck-rental 7 -10011110100 gingerbread 7 -10011110100 needlework 7 -10011110100 data-services 8 -10011110100 heavy-construction 8 -10011110100 manufactured-housing 8 -10011110100 engineered-materials 8 -10011110100 stevedoring 8 -10011110100 office-supplies 8 -10011110100 Polynesia 8 -10011110100 drill-bit 8 -10011110100 movie-production 8 -10011110100 filmed-entertainment 8 -10011110100 outerwear 8 -10011110100 anti-smuggling 8 -10011110100 smokeless-tobacco 8 -10011110100 defense-contracting 8 -10011110100 capacitor 8 -10011110100 mutual-funds 8 -10011110100 scrap-metal 9 -10011110100 third- 9 -10011110100 construction-material 9 -10011110100 contract-services 9 -10011110100 molasses 9 -10011110100 truck-trailer 9 -10011110100 television-production 9 -10011110100 electrical-appliance 9 -10011110100 Sleipner 9 -10011110100 health-services 9 -10011110100 agricultural-products 9 -10011110100 leisure-products 9 -10011110100 sleepwear 9 -10011110100 oil-seed 9 -10011110100 recorded-music 9 -10011110100 business-products 9 -10011110100 tropical-fruit 9 -10011110100 check-cashing 10 -10011110100 heat-treating 10 -10011110100 lithography 10 -10011110100 transportation-services 10 -10011110100 sales-promotion 10 -10011110100 special-events 10 -10011110100 asbestos-abatement 10 -10011110100 defense-systems 10 -10011110100 information-technology 10 -10011110100 business-equipment 10 -10011110100 music-publishing 10 -10011110100 aviation-services 10 -10011110100 kitchenware 10 -10011110100 cement-making 10 -10011110100 food-retailing 10 -10011110100 data-systems 10 -10011110100 handicrafts 10 -10011110100 bookmaking 11 -10011110100 Monteil 11 -10011110100 stapler 11 -10011110100 soft-drinks 11 -10011110100 drapery 11 -10011110100 Cuajone 11 -10011110100 hydro 11 -10011110100 corn-refining 11 -10011110100 investment-trust 11 -10011110100 gunpowder 11 -10011110100 canned-food 11 -10011110100 beauty-products 11 -10011110100 freight-forwarding 12 -10011110100 photographic-products 12 -10011110100 debt-rating 12 -10011110100 building-material 12 -10011110100 meat-packing 12 -10011110100 hydraulics 12 -10011110100 computer-equipment 12 -10011110100 Toquepala 12 -10011110100 softdrink 12 -10011110100 air-cargo 13 -10011110100 travel-services 13 -10011110100 hotel-management 13 -10011110100 home-products 13 -10011110100 biopharmaceutical 13 -10011110100 agrochemicals 13 -10011110100 environmental-services 14 -10011110100 hospital-management 14 -10011110100 giftware 14 -10011110100 silicones 14 -10011110100 automotive-products 14 -10011110100 sulphur 14 -10011110100 business-information 14 -10011110100 aircraft-leasing 14 -10011110100 automotive-parts 14 -10011110100 money-broking 15 -10011110100 specialty-steel 15 -10011110100 industrial-automation 15 -10011110100 gas-pipeline 15 -10011110100 technical-services 15 -10011110100 specialty-retailing 16 -10011110100 flooring 16 -10011110100 marketing-services 16 -10011110100 palm-oil 16 -10011110100 sugar-beet 17 -10011110100 manganese 17 -10011110100 business-services 17 -10011110100 commercial-banking 17 -10011110100 solids 17 -10011110100 electrical-products 17 -10011110100 asbestos-removal 17 -10011110100 connector 17 -10011110100 air-freight 17 -10011110100 frozen-foods 18 -10011110100 computer-products 18 -10011110100 styrene 18 -10011110100 plumbers 18 -10011110100 oil-services 19 -10011110100 glass-making 19 -10011110100 agro-industrial 19 -10011110100 oil-refining 19 -10011110100 wood-products 19 -10011110100 snack-food 19 -10011110100 biscuit 19 -10011110100 home-furnishings 19 -10011110100 dry-cleaning 20 -10011110100 personal-products 20 -10011110100 agricultural-chemicals 21 -10011110100 beryllium 21 -10011110100 containerboard 21 -10011110100 package-delivery 22 -10011110100 shampoos 22 -10011110100 computer-leasing 22 -10011110100 household-products 22 -10011110100 flavorings 24 -10011110100 office-supply 24 -10011110100 delicatessen 26 -10011110100 paper-products 26 -10011110100 fastener 27 -10011110100 industrial-products 27 -10011110100 knitwear 27 -10011110100 book-publishing 27 -10011110100 land-development 27 -10011110100 food-products 27 -10011110100 theme-park 27 -10011110100 private-banking 27 -10011110100 food-services 28 -10011110100 homebuilding 28 -10011110100 alternative-energy 28 -10011110100 liqueur 29 -10011110100 computer-services 29 -10011110100 cutlery 29 -10011110100 forest-product 29 -10011110100 employment-services 29 -10011110100 industrial-gas 30 -10011110100 pay-television 30 -10011110100 specialty-chemicals 30 -10011110100 glassware 30 -10011110100 lawn-care 31 -10011110100 medical-products 31 -10011110100 microelectronics 31 -10011110100 eye-care 32 -10011110100 consumer-finance 32 -10011110100 upholstery 33 -10011110100 graphite 33 -10011110100 realty 33 -10011110100 construction-materials 33 -10011110100 natural-resource 33 -10011110100 abrasives 35 -10011110100 confectionary 36 -10011110100 molybdenum 36 -10011110100 distilling 38 -10011110100 information-systems 39 -10011110100 carpet-cleaning 41 -10011110100 iron-ore 42 -10011110100 waste-management 42 -10011110100 consumer-product 45 -10011110100 polystyrene 45 -10011110100 sporting-goods 45 -10011110100 confectionery 46 -10011110100 office-equipment 48 -10011110100 warehousing 48 -10011110100 financial-service 49 -10011110100 telegraph 49 -10011110100 robotics 49 -10011110100 luxury-goods 53 -10011110100 roofing 55 -10011110100 consumer-goods 56 -10011110100 non-telephone 58 -10011110100 non-oil 58 -10011110100 motion-picture 60 -10011110100 non-utility 60 -10011110100 gypsum 60 -10011110100 health-products 61 -10011110100 mortgage-banking 61 -10011110100 resin 61 -10011110100 cookware 61 -10011110100 bedding 62 -10011110100 propane 63 -10011110100 asphalt 66 -10011110100 rental-car 67 -10011110100 natural-resources 67 -10011110100 denim 69 -10011110100 hosiery 71 -10011110100 china 72 -10011110100 building-products 73 -10011110100 home-building 73 -10011110100 fertilizers 73 -10011110100 crafts 73 -10011110100 defense-electronics 74 -10011110100 information-services 74 -10011110100 adhesives 77 -10011110100 polypropylene 85 -10011110100 agribusiness 85 -10011110100 food-processing 87 -10011110100 baking 87 -10011110100 toiletries 89 -10011110100 factoring 93 -10011110100 gaming 94 -10011110100 flour 96 -10011110100 bakery 99 -10011110100 oil-service 100 -10011110100 meatpacking 104 -10011110100 forestry 104 -10011110100 housewares 106 -10011110100 cognac 109 -10011110100 building-materials 113 -10011110100 forest-products 122 -10011110100 gold-mining 124 -10011110100 polyethylene 132 -10011110100 petrochemicals 136 -10011110100 seafood 139 -10011110100 whiskey 144 -10011110100 citrus 169 -10011110100 sportswear 191 -10011110100 lodging 193 -10011110100 plumbing 204 -10011110100 consumer-products 228 -10011110100 chocolate 228 -10011110100 shipbuilding 233 -10011110100 poultry 237 -10011110100 footwear 251 -10011110100 fertilizer 280 -10011110100 petrochemical 281 -10011110100 candy 297 -10011110100 bottling 304 -10011110100 timber 306 -10011110100 textiles 313 -10011110100 minerals 330 -10011110100 leisure 343 -10011110100 appliance 352 -10011110100 brewing 355 -10011110100 beverage 374 -10011110100 dairy 384 -10011110100 lumber 411 -10011110100 soft-drink 418 -10011110100 cosmetics 454 -10011110100 trucking 464 -10011110100 jewelry 471 -10011110100 rubber 479 -10011110100 cement 528 -10011110100 liquor 575 -10011110100 pharmaceuticals 602 -10011110100 gambling 622 -10011110100 plastics 699 -10011110100 financial-services 728 -10011110100 textile 770 -10011110100 clothing 937 -10011110100 broadcasting 963 -10011110100 furniture 967 -10011110100 packaging 970 -10011110100 biotechnology 998 -10011110100 petroleum 1005 -10011110100 aluminum 1187 -10011110100 pharmaceutical 1225 -10011110100 retailing 1303 -10011110100 apparel 1384 -10011110100 coal 1588 -10011110100 entertainment 1700 -10011110100 tobacco 1762 -10011110100 mining 2016 -10011110100 aerospace 2149 -10011110100 publishing 2372 -10011110100 chemicals 2649 -10011110100 electronics 3257 -10011110100 chemical 3366 -10011110100 steel 4090 -10011110100 energy 4808 -10011110100 food 6217 -100111101010 bangle 1 -100111101010 defense-product 1 -100111101010 impoliticly 1 -100111101010 nursing-school 1 -100111101010 Citronelle 1 -100111101010 Walsh-Greenwood 1 -100111101010 well-brought-up 1 -100111101010 marble- 1 -100111101010 11-for-1 1 -100111101010 denarius 1 -100111101010 secondary-trading 1 -100111101010 Youthair 1 -100111101010 tobacco-products 1 -100111101010 energy-guzzling 1 -100111101010 price- 1 -100111101010 intravenous-feeding 1 -100111101010 raw-silk 1 -100111101010 dollar-a-day 1 -100111101010 soybean-contract 1 -100111101010 popular-song 1 -100111101010 protraits 1 -100111101010 KLZ-AM 1 -100111101010 primary-aluminum 1 -100111101010 then-defense 1 -100111101010 specialty-niche 1 -100111101010 crude-sale 1 -100111101010 cassette-phone 1 -100111101010 alkaloid 1 -100111101010 wastemanagement 1 -100111101010 reactionism 1 -100111101010 now-diminished 1 -100111101010 cane-refining 1 -100111101010 inlays 1 -100111101010 bare-cement 1 -100111101010 apartment-housing 1 -100111101010 CF-6000 1 -100111101010 ropings 1 -100111101010 Depression-level 1 -100111101010 regulator-set 1 -100111101010 TRUSTEES 1 -100111101010 denaturalization 1 -100111101010 lampshade 1 -100111101010 tab-stock 1 -100111101010 Huskies 1 -100111101010 OTC-stock 1 -100111101010 dioxides 1 -100111101010 Dungeons 1 -100111101010 motorvehicle 1 -100111101010 security-house 1 -100111101010 Royal-190 1 -100111101010 white-fronted 1 -100111101010 Simpson/Bruckheimer 1 -100111101010 cattlefutures 1 -100111101010 gas-conditioning 1 -100111101010 Orientation 1 -100111101010 Assam 1 -100111101010 borates 1 -100111101010 rough-diamond 1 -100111101010 then-plunging 1 -100111101010 asphalt-products 1 -100111101010 7120 1 -100111101010 smaller-unit 1 -100111101010 hexafluoride 1 -100111101010 142b 1 -100111101010 less-destructive 1 -100111101010 almost-was 1 -100111101010 market-pulp 1 -100111101010 once-burdensome 1 -100111101010 taconite 1 -100111101010 better-dressed 1 -100111101010 lower-middle- 1 -100111101010 marketdetermined 1 -100111101010 aggregrates 1 -100111101010 comsumption 1 -100111101010 Tigris-Euphrates 1 -100111101010 fun-facts 1 -100111101010 fresh-orange 1 -100111101010 crash-reduced 1 -100111101010 CIA-handled 1 -100111101010 mind-wilting 1 -100111101010 ocial 1 -100111101010 automotive-product 1 -100111101010 Lycra 1 -100111101010 clockmaking 1 -100111101010 exchange-certified 1 -100111101010 refined-zinc 1 -100111101010 retrovirologists 1 -100111101010 consumer-good 1 -100111101010 rush-lord 1 -100111101010 indium 1 -100111101010 German-sized 1 -100111101010 blowdown 1 -100111101010 civil-engine 1 -100111101010 shoplifting-prevention 1 -100111101010 singing-telegram 1 -100111101010 avidity 1 -100111101010 knife-sharpener 1 -100111101010 remainders 1 -100111101010 vis-avis 1 -100111101010 colonial-era 1 -100111101010 knocked-down 1 -100111101010 Peregourdine 1 -100111101010 speculator-driven 1 -100111101010 gril 1 -100111101010 canned-mushroom 1 -100111101010 diving-support 1 -100111101010 electric-wire 1 -100111101010 bullfighters 1 -100111101010 automated-wagering 1 -100111101010 trilobites 1 -100111101010 augers 1 -100111101010 626s 2 -100111101010 tankage 2 -100111101010 equity-for-debt 2 -100111101010 authority-figure 2 -100111101010 damage-restoration 2 -100111101010 air-delivery 2 -100111101010 medium-truck 2 -100111101010 earworm 2 -100111101010 shanks 2 -100111101010 stroganoff 2 -100111101010 oil-equipment 2 -100111101010 health- 2 -100111101010 Gert-Rudolf 2 -100111101010 agricultural-commodity 2 -100111101010 seed-corn 2 -100111101010 media-related 2 -100111101010 mill-product 2 -100111101010 barge-shipping 2 -100111101010 oil-for-sugar 2 -100111101010 medical-surgical 2 -100111101010 cufflinks 2 -100111101010 state-fixed 2 -100111101010 antimony 2 -100111101010 Comex-approved 2 -100111101010 ex-interior 2 -100111101010 drought-depleted 2 -100111101010 refined-products 2 -100111101010 radio-only 2 -100111101010 transport-only 2 -100111101010 Tots-R-Us 2 -100111101010 ester 2 -100111101010 cut-flower 2 -100111101010 suprematist 2 -100111101010 telephone-wire 2 -100111101010 guayaberas 2 -100111101010 sea-lift 2 -100111101010 market-intervention 2 -100111101010 dryhole 2 -100111101010 exchange-approved 2 -100111101010 scatter-market 2 -100111101010 raw-sugar 3 -100111101010 haiku 3 -100111101010 petroleum-product 3 -100111101010 nonferrous-metals 3 -100111101010 oil-product 3 -100111101010 operating-lease 3 -100111101010 Safavid 3 -100111101010 gaslights 3 -100111101010 plant-engineering 3 -100111101010 bookcases 3 -100111101010 crudeoil 3 -100111101010 mash 3 -100111101010 ginning 4 -100111101010 2-ethylhexanol 4 -100111101010 left- 4 -100111101010 oil-processing 4 -100111101010 gourmet-food 5 -100111101010 manufactured-goods 5 -100111101010 aircraft-maintenance 5 -100111101010 can-sheet 6 -100111101010 offshore-drilling 6 -100111101010 oil- 7 -100111101010 oil-platform 7 -100111101010 non-technology 7 -100111101010 paper-product 7 -100111101010 pre- 8 -100111101010 red-meat 8 -100111101010 wet-milling 11 -100111101010 1973-75 12 -100111101010 Nutone 13 -100111101010 starch 37 -100111101010 oil 19397 -100111101010 syrup 120 -100111101011 million-or-more 1 -100111101011 birthing-bed 1 -100111101011 first-ranking 1 -100111101011 asbestos-product 1 -100111101011 licorice-extract 1 -100111101011 greater-than-majority 1 -100111101011 adventurer-film 1 -100111101011 printing-materials 1 -100111101011 communications-electronics 1 -100111101011 soft-coal 1 -100111101011 692-foot 1 -100111101011 English-muffin 1 -100111101011 counter-intelligence 1 -100111101011 facsimile-machine 1 -100111101011 merchant-vessel 1 -100111101011 smarmiest 1 -100111101011 heavy-duty-parts 1 -100111101011 Dionysian 1 -100111101011 luxury-apartment 1 -100111101011 building-components 1 -100111101011 woman-shaped 1 -100111101011 larger-than-planned 1 -100111101011 Compton-based 1 -100111101011 sports-undergarment 1 -100111101011 Indian-jewelry 1 -100111101011 farm-tractor 1 -100111101011 leaf-blower 1 -100111101011 electrical-goods 1 -100111101011 burled-walnut 1 -100111101011 sanitary-papers 1 -100111101011 horsehair-and-plaster 1 -100111101011 alternative-fueled-vehicle 1 -100111101011 preparatory-school 1 -100111101011 anti-mural 1 -100111101011 plastic-card 1 -100111101011 demand-related 1 -100111101011 Vicenza-based 1 -100111101011 bobby-soxer 1 -100111101011 dormer-crowded 1 -100111101011 liquefied-gas 1 -100111101011 second-offense 1 -100111101011 Aerolinas 1 -100111101011 less-believable 1 -100111101011 prepared-salad 1 -100111101011 laminate 1 -100111101011 ERISA-qualified 1 -100111101011 microdisk 1 -100111101011 diskdrive 1 -100111101011 pharmaeutical 1 -100111101011 packaging-machinery 1 -100111101011 more-visible 1 -100111101011 571,021 1 -100111101011 computer-disk-drives 1 -100111101011 sunken-treasure 1 -100111101011 stereoscopic 1 -100111101011 storage-systems 1 -100111101011 roofing-materials 1 -100111101011 Koala-related 1 -100111101011 Vogtlenuclear-power 1 -100111101011 metalproducts 1 -100111101011 state-selected 1 -100111101011 sketchiest 1 -100111101011 equities-quote 1 -100111101011 storm-related 1 -100111101011 specialty-tea 1 -100111101011 2,286,280 1 -100111101011 potting-soil 1 -100111101011 knitted-outerwear 1 -100111101011 women's-sportswear 1 -100111101011 Northridge-based 1 -100111101011 digital-watch 1 -100111101011 beer-importing 1 -100111101011 heating-gas 1 -100111101011 manufacturing-investment 1 -100111101011 cordless-telephone 1 -100111101011 expresso 1 -100111101011 specialty-fabrics 1 -100111101011 phone-tap 1 -100111101011 temp-services 1 -100111101011 once-enthusiastic 1 -100111101011 uranium-metal 1 -100111101011 small-appliances 1 -100111101011 electronic-instrument 1 -100111101011 cement-kiln 1 -100111101011 specialty-bed 1 -100111101011 ceramic-products 1 -100111101011 automotive-and-aerospace 1 -100111101011 men's-apparel 1 -100111101011 poet/wine 1 -100111101011 restaurant-food 1 -100111101011 electrical-wire 1 -100111101011 pine-scented 1 -100111101011 BOLDFACE 1 -100111101011 clucky 1 -100111101011 national-level 1 -100111101011 2,142 1 -100111101011 energy-sated 1 -100111101011 food-container 1 -100111101011 Mitsubishi-supplied 1 -100111101011 anti-knock 1 -100111101011 non-Cyber 1 -100111101011 light-plane 1 -100111101011 stoutest 1 -100111101011 fat-protein 1 -100111101011 very-small-business 1 -100111101011 laser-equipment 1 -100111101011 pevious 1 -100111101011 tapered-roller-bearing 1 -100111101011 sika 1 -100111101011 power-press 1 -100111101011 chip-pact 1 -100111101011 policy-planning 1 -100111101011 lift-truck 1 -100111101011 frozen-cake 1 -100111101011 quick-frozen 1 -100111101011 hydraulic-parts 1 -100111101011 tradtional 1 -100111101011 legal-clinic 1 -100111101011 rock-product 1 -100111101011 truck-equipment 1 -100111101011 genre-life-size 1 -100111101011 million-type 1 -100111101011 floating-train 1 -100111101011 cash-tight 1 -100111101011 luxury-home 1 -100111101011 toy-manufacturing 1 -100111101011 13,450 1 -100111101011 piping-products 1 -100111101011 thumbtack-size 1 -100111101011 filtration-equipment 1 -100111101011 appliance-parts 1 -100111101011 ex-prime 1 -100111101011 trillion-a-year 1 -100111101011 carbonated-drinks 1 -100111101011 single-life 1 -100111101011 class-ring 1 -100111101011 auto-components 1 -100111101011 electric-products 1 -100111101011 glass-products 1 -100111101011 discount-drinks 1 -100111101011 Hertz-Avis 1 -100111101011 sugar-cola 1 -100111101011 electric-appliances 1 -100111101011 electronic-publishing-systems 1 -100111101011 soup-kitchen 1 -100111101011 artificial-heart-valve 1 -100111101011 licorice-extracts 1 -100111101011 aerospace-components 1 -100111101011 press-room 1 -100111101011 documentary-film 1 -100111101011 copper-zinc 1 -100111101011 specialty-food-store 1 -100111101011 linotype 1 -100111101011 easy-life 1 -100111101011 chip-filled 1 -100111101011 electronic-controller 1 -100111101011 bus-production 1 -100111101011 BURNED 1 -100111101011 Taylor-based 1 -100111101011 spreadsheet-program 1 -100111101011 ski-apparel 1 -100111101011 Stop-n-Shop 1 -100111101011 farm-implements 1 -100111101011 sportcoat 1 -100111101011 non-machine 1 -100111101011 compatible-parts 1 -100111101011 orange-juice-concentrate 1 -100111101011 home-game 1 -100111101011 international-economic-policy 1 -100111101011 semiconductor-capital-equipment 1 -100111101011 screwball-sentimental 1 -100111101011 greediest-looking 1 -100111101011 stencil-like 1 -100111101011 general-industries 1 -100111101011 lightning-ignited 1 -100111101011 opinion-forming 1 -100111101011 penny-sized 1 -100111101011 woodworking-machine 1 -100111101011 softmaterial 1 -100111101011 basic-chemical 1 -100111101011 cargo-trailer 1 -100111101011 warning-flag 1 -100111101011 art-hungry 1 -100111101011 police-comedy 1 -100111101011 condo-lined 1 -100111101011 machine-parts 1 -100111101011 reactor-room 1 -100111101011 post-seminary 1 -100111101011 limousine-manufacturing 1 -100111101011 PS/2-type 1 -100111101011 developing-nations 1 -100111101011 silver-coin 1 -100111101011 sports-trivia 1 -100111101011 waferboard 1 -100111101011 nuclear-fuels 1 -100111101011 construction-gear 1 -100111101011 propane-gas 1 -100111101011 tourist-office 1 -100111101011 car-amplifier 1 -100111101011 Glashovian 1 -100111101011 floral-papered 1 -100111101011 institutional-food 1 -100111101011 chocolate-drink 1 -100111101011 boat-engine 1 -100111101011 Akademie 1 -100111101011 aerospace-equipment 1 -100111101011 information-displays 1 -100111101011 seedier 1 -100111101011 badcheck 1 -100111101011 aircraft-equipment 1 -100111101011 catalog-company 1 -100111101011 hazardous-waste-fluid 1 -100111101011 military/strategic 1 -100111101011 phospate 1 -100111101011 steel-recycling 1 -100111101011 selective-strike 1 -100111101011 eyeglass-frame 1 -100111101011 container-freight 1 -100111101011 gear-making 1 -100111101011 anchor-chain 1 -100111101011 financial-community 1 -100111101011 microprocessor-chip 1 -100111101011 electronic-material 1 -100111101011 now-unsuccessful 1 -100111101011 plumbing-supplies 1 -100111101011 miniature-bearing 1 -100111101011 computer-terminals 1 -100111101011 automatic-welding-equipment 1 -100111101011 video-program 1 -100111101011 all-lines 1 -100111101011 food-ingredient 1 -100111101011 air-gun 1 -100111101011 noodle-opera 1 -100111101011 healthcare-products 1 -100111101011 midwest 1 -100111101011 now-sluggish 1 -100111101011 management-research 1 -100111101011 book-world 1 -100111101011 olive-oil 1 -100111101011 now-graying 1 -100111101011 safety-controls 1 -100111101011 more-risky 1 -100111101011 precision-motor 1 -100111101011 ethelyne 1 -100111101011 Anabaptist 1 -100111101011 auto-upholstery 1 -100111101011 pickup-truck-accessory 1 -100111101011 medical-devices 1 -100111101011 foresake 1 -100111101011 jet-turbine 1 -100111101011 upholstered-furniture 1 -100111101011 steel-plant 1 -100111101011 porn-theater 1 -100111101011 computer-keyboard 1 -100111101011 performing-rights 1 -100111101011 soy-processing 1 -100111101011 trash-heap 1 -100111101011 compressed-air-products 1 -100111101011 fast-transmission 1 -100111101011 bridal-dress 1 -100111101011 pizza-topping 1 -100111101011 aeronautical-equipment 1 -100111101011 motorcyle 1 -100111101011 all-student 1 -100111101011 tinting-film 1 -100111101011 291-branch 1 -100111101011 cargo-transport 1 -100111101011 injectable-drug 1 -100111101011 air-tools 1 -100111101011 space-rocket 1 -100111101011 scientific-instrument 1 -100111101011 Augean 1 -100111101011 pharmaceutical-capsule 1 -100111101011 grocery-bag 1 -100111101011 bathroom-fixture 1 -100111101011 Amagasaki-based 1 -100111101011 gas-market 1 -100111101011 compressor-driven 1 -100111101011 Gimbles 1 -100111101011 agricultural-machine 1 -100111101011 woolens 1 -100111101011 grocery-chain 1 -100111101011 automobile-tire 1 -100111101011 one-ship 1 -100111101011 non-vested 1 -100111101011 government-aviation 1 -100111101011 motion-picture-print 1 -100111101011 naval-construction 1 -100111101011 picture-telephone 1 -100111101011 already-embattled 1 -100111101011 retail-paper 1 -100111101011 style-setting 1 -100111101011 constitutive 1 -100111101011 bait-worm 1 -100111101011 office-temp 1 -100111101011 pool-table 1 -100111101011 medical-image-device 1 -100111101011 9-by-12-foot 1 -100111101011 pickiest 1 -100111101011 trattoria 1 -100111101011 post-structuralist 1 -100111101011 truck-engine 1 -100111101011 ocean-borne 1 -100111101011 FDA-regulated 1 -100111101011 end-copper 1 -100111101011 electronics-publishing-systems 1 -100111101011 nonregistered 1 -100111101011 8,421 1 -100111101011 matzoh 1 -100111101011 glassed-over 1 -100111101011 bucket-shop 1 -100111101011 aviation-equipment 1 -100111101011 compressor-manufacturing 1 -100111101011 weather-sensitive 1 -100111101011 biological-products 1 -100111101011 writing-instruments 1 -100111101011 protection-equipment 1 -100111101011 heavy-vehicle 2 -100111101011 video-shopping 2 -100111101011 fur-coat 2 -100111101011 pharmaceutical/chemical 2 -100111101011 bowling-ball 2 -100111101011 running-shoe 2 -100111101011 home-construction 2 -100111101011 air-filter 2 -100111101011 analytic-instruments 2 -100111101011 specialty-vehicle 2 -100111101011 automotive-lighting 2 -100111101011 electric-equipment 2 -100111101011 processing-equipment 2 -100111101011 aerospace-parts 2 -100111101011 hardboard 2 -100111101011 children's-wear 2 -100111101011 large-business 2 -100111101011 audiometer 2 -100111101011 budget-policy 2 -100111101011 computer-retailing 2 -100111101011 beef-jerky 2 -100111101011 door-chime 2 -100111101011 computer-gear 2 -100111101011 specialty-machinery 2 -100111101011 Osem 2 -100111101011 Oce-van 2 -100111101011 filing-cabinet 2 -100111101011 Afrikaans-speaking 2 -100111101011 lead-paint 2 -100111101011 transportation-parts 2 -100111101011 household-appliances 2 -100111101011 small-aircraft 2 -100111101011 life-reinsurance 2 -100111101011 electrical-utility 2 -100111101011 computer-workstation 2 -100111101011 specialty-fabric 2 -100111101011 microwave-popcorn 2 -100111101011 matzo 2 -100111101011 sports-drink 2 -100111101011 fine-fragrance 2 -100111101011 shopping-cart 2 -100111101011 communications-systems 2 -100111101011 chemical-bomb 2 -100111101011 fantasy-hotel 2 -100111101011 software-products 2 -100111101011 high-ceilinged 2 -100111101011 gold-chain 2 -100111101011 narc. 2 -100111101011 business-credit 2 -100111101011 car-engine 2 -100111101011 farm-tire 2 -100111101011 skin-cream 2 -100111101011 cable-TV-system 2 -100111101011 nonlife 2 -100111101011 tubular-goods 2 -100111101011 potbellied 2 -100111101011 floor-tile 2 -100111101011 aerospace-electronics 2 -100111101011 airline-catering 2 -100111101011 luncheon-meat 2 -100111101011 pleasure-boat 2 -100111101011 auto-engine 2 -100111101011 independent-station 2 -100111101011 Indian-American 2 -100111101011 automobile-lighting 2 -100111101011 communications-product 2 -100111101011 technical-computer 2 -100111101011 carpet-underlay 2 -100111101011 day-care-center 2 -100111101011 non-film 2 -100111101011 foreign-film 2 -100111101011 lighting-equipment 3 -100111101011 sugar-substitute 3 -100111101011 aluminum-products 3 -100111101011 defense-products 3 -100111101011 Israel-based 3 -100111101011 lower-scale 3 -100111101011 commuter-aircraft 3 -100111101011 steel-products 3 -100111101011 agricultural-chemical 3 -100111101011 million-a-day 3 -100111101011 floor-covering 3 -100111101011 container-ship 3 -100111101011 women's-wear 3 -100111101011 potato-chip 3 -100111101011 concrete-products 3 -100111101011 electronic-typewriter 3 -100111101011 electronic-equipment 3 -100111101011 doughnut-shop 3 -100111101011 water-cooler 3 -100111101011 glass-fabrics 3 -100111101011 automobile-parts 3 -100111101011 security-systems 3 -100111101011 snowplow 3 -100111101011 gun-fashion 3 -100111101011 stump-dump 3 -100111101011 motor-home 3 -100111101011 traded-options 3 -100111101011 steel-rail 3 -100111101011 auto-tire 3 -100111101011 candy-bar 3 -100111101011 compact-pickup 3 -100111101011 homeowners-insurance 3 -100111101011 business-machines 3 -100111101011 commercial-printing 3 -100111101011 period-instrument 3 -100111101011 fleecewear 3 -100111101011 imported-beer 4 -100111101011 airplane-engine 4 -100111101011 farm-implement 4 -100111101011 specialty-apparel 4 -100111101011 carpet-tile 4 -100111101011 business-forms 4 -100111101011 industrial-equipment 4 -100111101011 industrial-materials 4 -100111101011 cooking-oil 4 -100111101011 imported-car 4 -100111101011 office-gear 4 -100111101011 small-appliance 4 -100111101011 packaging-materials 4 -100111101011 phone-equipment 4 -100111101011 luxury-auto 4 -100111101011 field-service 4 -100111101011 computer-parts 4 -100111101011 electrical-accessories 4 -100111101011 computer-shoe 4 -100111101011 root-beer 4 -100111101011 hand-tool 4 -100111101011 cable-systems 4 -100111101011 primary-metals 4 -100111101011 audio-equipment 4 -100111101011 nitrogen-fertilizer 4 -100111101011 electrical-product 4 -100111101011 baked-goods 5 -100111101011 household-appliance 5 -100111101011 property-and-casualty 5 -100111101011 vehicle-parts 5 -100111101011 sports-equipment 5 -100111101011 electronic-products 5 -100111101011 off-airport 5 -100111101011 crude-steel 5 -100111101011 800-store 5 -100111101011 electronics-parts 5 -100111101011 engine-overheating 5 -100111101011 ball-bearings 5 -100111101011 tennis-racket 5 -100111101011 computer-peripherals 5 -100111101011 package-tour 5 -100111101011 illegal-drug 5 -100111101011 small-computer 5 -100111101011 industrial-electronics 5 -100111101011 TV-set 5 -100111101011 nuclear-power-plant 6 -100111101011 sewing-machine 6 -100111101011 water-scooter 6 -100111101011 strap-on 6 -100111101011 trade-show 6 -100111101011 ground-service 6 -100111101011 wall-covering 6 -100111101011 sports-car 6 -100111101011 steel-pipe 7 -100111101011 plastic-packaging 7 -100111101011 automation-equipment 7 -100111101011 women's-apparel 7 -100111101011 autoparts 7 -100111101011 metal-products 7 -100111101011 computer-printer 7 -100111101011 vending-machine 8 -100111101011 feed-lot 9 -100111101011 commercial-vehicle 9 -100111101011 alcoholic-beverage 9 -100111101011 athletic-footwear 9 -100111101011 cable-system 9 -100111101011 engine-making 9 -100111101011 tool-and-die 10 -100111101011 gas-station 10 -100111101011 computer-hardware 10 -100111101011 foreign-car 10 -100111101011 desktop-computer 11 -100111101011 non-life 11 -100111101011 semiconductor-equipment 11 -100111101011 property-liability 11 -100111101011 motor-oil 12 -100111101011 herbal-tea 12 -100111101011 home-appliance 13 -100111101011 gelatin-capsule 13 -100111101011 ball-bearing 13 -100111101011 powerboat 13 -100111101011 office-furniture 14 -100111101011 communications-equipment 14 -100111101011 air-conditioner 14 -100111101011 light-bulb 16 -100111101011 commercial-aircraft 17 -100111101011 control-room 19 -100111101011 circuit-board 19 -100111101011 electronic-parts 20 -100111101011 telecommunications-equipment 21 -100111101011 property/casualty 22 -100111101011 office-products 23 -100111101011 baby-food 25 -100111101011 construction-equipment 25 -100111101011 athletic-shoe 26 -100111101011 glass-container 27 -100111101011 ATV 43 -100111101011 motor-vehicle 45 -100111101011 mobile-home 46 -100111101011 aircraft-engine 52 -100111101011 capital-goods 62 -100111101011 ice-cream 73 -100111101011 farm-equipment 82 -100111101011 luxury-car 85 -100111101011 generic-drug 103 -100111101011 auto-parts 148 -100111101011 machine-tool 180 -100111101011 property-casualty 181 -100111101011 automobile 604 -100111101011 auto 6726 -100111101011 tire 939 -100111101100 environmental-risk 1 -100111101100 net-lease 1 -100111101100 ex-aerospace 1 -100111101100 user-owned 1 -100111101100 car-fleet 1 -100111101100 deep-shelter 1 -100111101100 Industrial-nation 1 -100111101100 Liberal-SDP 1 -100111101100 deal-on-a-handshake 1 -100111101100 unamendable 1 -100111101100 Venezuela-based 1 -100111101100 Finks-Mora 1 -100111101100 pattern-making 1 -100111101100 Washington-connected 1 -100111101100 CEO/investment 1 -100111101100 economics-consulting 1 -100111101100 research-investment 1 -100111101100 50-year-veteran 1 -100111101100 acting-service 1 -100111101100 agrichemical 1 -100111101100 MIT-educated 1 -100111101100 image-based 1 -100111101100 pre-offer 1 -100111101100 treasury-investment 1 -100111101100 beer-marketing 1 -100111101100 low-leverage 1 -100111101100 real-estate-management 1 -100111101100 computer-supply 1 -100111101100 Warner-Columbia 1 -100111101100 cash-backed 1 -100111101100 expansionist-minded 1 -100111101100 advanced-weapons 1 -100111101100 financial-business 1 -100111101100 theatrical-management 1 -100111101100 film-financing 1 -100111101100 doctorate-level 1 -100111101100 overlying 1 -100111101100 employee-run 1 -100111101100 industry-consumer 1 -100111101100 non-security 1 -100111101100 Leastec-managed 1 -100111101100 racket-tossing 1 -100111101100 favor-pleading 1 -100111101100 meat-department 1 -100111101100 bond-investment 1 -100111101100 business-location 1 -100111101100 coal-tax 1 -100111101100 Olivetti-like 1 -100111101100 structuralist-type 1 -100111101100 food-law 1 -100111101100 LAID-OFF 1 -100111101100 equity-unit 1 -100111101100 aviation-service 1 -100111101100 public-hospital 1 -100111101100 under-regulated 1 -100111101100 yield/merchant 1 -100111101100 art-group 1 -100111101100 378-bed 1 -100111101100 sensory-perception 1 -100111101100 unfortuitous 1 -100111101100 Guterman-controlled 1 -100111101100 antinomian 1 -100111101100 Penman-Ross 1 -100111101100 contract-guarantee 1 -100111101100 dial-a-banker 1 -100111101100 Janitors 1 -100111101100 technology-shy 1 -100111101100 military-space 1 -100111101100 marine-insurance 1 -100111101100 salon-products 1 -100111101100 equipmwent-leasing 1 -100111101100 Duenas 1 -100111101100 ex-Citicorp 1 -100111101100 EC-based 1 -100111101100 balleyhooed 1 -100111101100 institutional-investment 1 -100111101100 Stearns-Cobey 2 -100111101100 noncombat 2 -100111101100 124-year-old 2 -100111101100 egg-producing 2 -100111101100 training-services 2 -100111101100 shipowning 2 -100111101100 marketing-communications 2 -100111101100 invesment 2 -100111101100 soubrette 2 -100111101100 option-fund 2 -100111101100 market-tending 2 -100111101100 soap-making 2 -100111101100 newspaper-publishing 3 -100111101100 out-placement 3 -100111101100 45-member 3 -100111101100 private-public 3 -100111101100 obstetric 3 -100111101100 Lindner-led 3 -100111101100 astronautics 3 -100111101100 insurance-underwriting 3 -100111101100 growth-hormone 3 -100111101100 nontraded 3 -100111101100 Cralin 3 -100111101100 magazine-development 4 -100111101100 Jakarta-based 4 -100111101100 investment-fund 4 -100111101100 index-fund 5 -100111101100 undiversified 5 -100111101100 synfuels 6 -100111101100 investment-holding 6 -100111101100 co-lead 13 -100111101100 export-import 17 -100111101100 energy-services 26 -100111101100 equipment-leasing 29 -100111101100 investment 22746 -100111101100 Edelman-Dominion 40 -1001111011010 strangulating 1 -1001111011010 empty-plane 1 -1001111011010 anticopying 1 -1001111011010 instrument-landing 1 -1001111011010 security-shutter 1 -1001111011010 best-conceived 1 -1001111011010 100,000-subscriber 1 -1001111011010 MPN-XX 1 -1001111011010 195-year-old 1 -1001111011010 Guillain-Barre 1 -1001111011010 air-evacuation 1 -1001111011010 retail-insurance 1 -1001111011010 designated-order-turnaround 1 -1001111011010 fixed-commission 1 -1001111011010 output-monitoring 1 -1001111011010 premium-setting 1 -1001111011010 parts-producing 1 -1001111011010 barterlike 1 -1001111011010 dought-relief 1 -1001111011010 knives-in-the-dark 1 -1001111011010 farmer-controlled 1 -1001111011010 owl/lark 1 -1001111011010 one-venture 1 -1001111011010 non-exotic 1 -1001111011010 ontological 1 -1001111011010 unisex-pricing 1 -1001111011010 party-governmental 1 -1001111011010 family-tenancy 1 -1001111011010 tractor-production 1 -1001111011010 dance/performance 1 -1001111011010 dipotassium 1 -1001111011010 water-removal 1 -1001111011010 health-care-delivery 1 -1001111011010 Contra-arms 1 -1001111011010 graduated-commission 1 -1001111011010 Paris-or-nothing 1 -1001111011010 fire-wall 1 -1001111011010 computer-monitoring 1 -1001111011010 Jekyll-and-Hyde 1 -1001111011010 two-year-college 1 -1001111011010 two-chairmen 1 -1001111011010 fabric-coating 1 -1001111011010 Image-Plus 1 -1001111011010 tort-based 1 -1001111011010 electronic-dealing 1 -1001111011010 blind-draw 1 -1001111011010 electronics-equipment 1 -1001111011010 MT/P 1 -1001111011010 education-information 1 -1001111011010 radio-programming 1 -1001111011010 price-bidding 1 -1001111011010 3-Display 1 -1001111011010 trading-stamps 1 -1001111011010 equipment-monitoring 1 -1001111011010 international-financial 1 -1001111011010 shoot-the-messenger 1 -1001111011010 land-management 1 -1001111011010 rental-leasing 1 -1001111011010 gravity-chute 1 -1001111011010 atmosphere-ocean 1 -1001111011010 bond-quotation 1 -1001111011010 flower-growing 1 -1001111011010 employment-level 1 -1001111011010 home-policy 1 -1001111011010 trade-inspection 1 -1001111011010 federal-tax-deposit 1 -1001111011010 non-proprietary 1 -1001111011010 fabric-sales 1 -1001111011010 judicial-conduct 1 -1001111011010 collective-farming 1 -1001111011010 installment-payment 1 -1001111011010 research-funding 1 -1001111011010 consensus-based 1 -1001111011010 592,000-student 1 -1001111011010 chemical-treatment 1 -1001111011010 target-attack 1 -1001111011010 movie-rating 1 -1001111011010 regional-pricing 1 -1001111011010 lending-rate 1 -1001111011010 Soviet-imposed 1 -1001111011010 landingfee 1 -1001111011010 state-university 1 -1001111011010 Laserprobe 1 -1001111011010 business-survey 1 -1001111011010 liquid-packaging 1 -1001111011010 message-processing 1 -1001111011010 luxury-good 1 -1001111011010 export-credit-insurance 1 -1001111011010 rock-quarrying 1 -1001111011010 auction-trading 1 -1001111011010 job-support 1 -1001111011010 radiation-confinement 1 -1001111011010 executive-bonus 1 -1001111011010 Visa-MasterCard 1 -1001111011010 climate-modeling 1 -1001111011010 plane-making 1 -1001111011010 Salomon-Citibank-Cedel 1 -1001111011010 60,000-square-foot 1 -1001111011010 radar-beacon 1 -1001111011010 targetzone 1 -1001111011010 food-rationing 1 -1001111011010 bowl-like 1 -1001111011010 mandatory-sentencing 1 -1001111011010 PC-DOS 1 -1001111011010 state-planning 1 -1001111011010 64-campus 1 -1001111011010 photo-identification 1 -1001111011010 door-to-door-delivery 1 -1001111011010 jet-making 1 -1001111011010 health-sentinel 1 -1001111011010 securities-review 1 -1001111011010 neighborhood-school 1 -1001111011010 ball-valve 1 -1001111011010 spy-scandal 1 -1001111011010 136-office 1 -1001111011010 humidity-control 1 -1001111011010 warning-and-control 1 -1001111011010 dual-board 1 -1001111011010 157-member 1 -1001111011010 signal-transmission 1 -1001111011010 prospective-payment 1 -1001111011010 telescoping 1 -1001111011010 hospital-care 1 -1001111011010 grade-implied 1 -1001111011010 windshield-installation 1 -1001111011010 deficency 1 -1001111011010 price-and-supply 1 -1001111011010 gun-permit 1 -1001111011010 two-cave 1 -1001111011010 garden-center 1 -1001111011010 nuclear-family 1 -1001111011010 multiple-trading 1 -1001111011010 coffee-filter 1 -1001111011010 photoelectric-type 1 -1001111011010 quick-delivery 1 -1001111011010 Victorian-style 1 -1001111011010 medical-alert 1 -1001111011010 fire-suppression 1 -1001111011010 bond-yield 1 -1001111011010 controlled-combustion 1 -1001111011010 clothing-chain 1 -1001111011010 spendand-elect 1 -1001111011010 15,500-mile 1 -1001111011010 13,000-mile 1 -1001111011010 white-settler 1 -1001111011010 iron-and-steel 1 -1001111011010 two-bracket 1 -1001111011010 24,000-student 1 -1001111011010 energy-storage 1 -1001111011010 bank-advisory 1 -1001111011010 26,600-subscriber 1 -1001111011010 sociocommunal 1 -1001111011010 GSA-requested 1 -1001111011010 people-meter-only 1 -1001111011010 credit-card-telephone 1 -1001111011010 brake-manufacturing 1 -1001111011010 affiliate-payment 1 -1001111011010 eye-care-products 1 -1001111011010 profits-monitoring 1 -1001111011010 Baathist 1 -1001111011010 9,600-mile 1 -1001111011010 judicial-nominees 1 -1001111011010 family-responsibility 1 -1001111011010 idle-control 1 -1001111011010 corporate-maturity 1 -1001111011010 drug-review 1 -1001111011010 curtain-tracking 1 -1001111011010 stock-margining 1 -1001111011010 physical-gold 1 -1001111011010 Autex 1 -1001111011010 political-patronage 1 -1001111011010 Dauod 1 -1001111011010 decision-by-committee 1 -1001111011010 criminaljustice 1 -1001111011010 42,798-mile 1 -1001111011010 launch-control 1 -1001111011010 SEAQ 1 -1001111011010 homeshopping 1 -1001111011010 dying-loyalty 1 -1001111011010 service-and-parts 1 -1001111011010 trader-reporting 1 -1001111011010 beef-importing 1 -1001111011010 beef-distribution 1 -1001111011010 election-readiness 1 -1001111011010 FEAL-8 1 -1001111011010 import-surveillance 1 -1001111011010 trade-regulatory 1 -1001111011010 electrosurgical 1 -1001111011010 sprinker 1 -1001111011010 institutional-equity 1 -1001111011010 Baker-Deaver 1 -1001111011010 discount-securities 1 -1001111011010 diahrreal 1 -1001111011010 aid-delivery 1 -1001111011010 beef-quota 1 -1001111011010 non-Communist-led 1 -1001111011010 belt-and-pulley 1 -1001111011010 industiral 1 -1001111011010 permanent-quota 1 -1001111011010 Stevens-Johnson 1 -1001111011010 6013A 1 -1001111011010 grateful-dead 1 -1001111011010 19,600-mile 1 -1001111011010 postal-savings 1 -1001111011010 pressurizer 1 -1001111011010 air-mail 1 -1001111011010 businessman-as-celebrity 1 -1001111011010 jilted-lover 1 -1001111011010 shared-risk 1 -1001111011010 customs-rules 1 -1001111011010 space-propulsion 1 -1001111011010 camera-control 1 -1001111011010 military-justice 1 -1001111011010 Pronto 1 -1001111011010 6,700-subscriber 1 -1001111011010 market-monitoring 1 -1001111011010 import-management 1 -1001111011010 Streams 1 -1001111011010 chip-monitoring 1 -1001111011010 non-dogmatic 1 -1001111011010 air-injection 1 -1001111011010 Business-phone 1 -1001111011010 family-education 1 -1001111011010 local-ratings 1 -1001111011010 power-marketing 1 -1001111011010 Sovietbacked 1 -1001111011010 110,000-subscriber 1 -1001111011010 three-beam 1 -1001111011010 secondary-education 1 -1001111011010 industrial-licensing 1 -1001111011010 Ob-Irtysh 1 -1001111011010 check-return 1 -1001111011010 personnel-management 1 -1001111011010 Laboratories-U.S. 1 -1001111011010 Hydra-headed 1 -1001111011010 shuttle-cargo 1 -1001111011010 once-macho 1 -1001111011010 DGA-directed 1 -1001111011010 financial-records 1 -1001111011010 left-ventricular-assist 1 -1001111011010 wet-scrubber 1 -1001111011010 ADEX 1 -1001111011010 3,400-student 1 -1001111011010 81.6-mile 1 -1001111011010 electrical-manufacturing 1 -1001111011010 Thrift-bailout 1 -1001111011010 greed-driven 1 -1001111011010 accounts-receivable 1 -1001111011010 color-game 1 -1001111011010 price-regulatory 1 -1001111011010 payment-processing 1 -1001111011010 corporate-reporting 1 -1001111011010 AA/NA 1 -1001111011010 voluntary-compliance 1 -1001111011010 risk-transfer 1 -1001111011010 cable-program 1 -1001111011010 shareholder-controlled 1 -1001111011010 TV-ratings 1 -1001111011010 mobile-telecommunications 1 -1001111011010 Moscow-supported 1 -1001111011010 warehouse-management 1 -1001111011010 dual-share 1 -1001111011010 automated-pit-trading 1 -1001111011010 Solidarityled 1 -1001111011010 ITQ 1 -1001111011010 high-networth 1 -1001111011010 coated-fabrics 1 -1001111011010 seniority-promotion 1 -1001111011010 war-gaming 1 -1001111011010 industry-advisory 1 -1001111011010 less-elaborate 1 -1001111011010 quota-procurement 1 -1001111011010 Hitler-like 1 -1001111011010 insurance-exchange 1 -1001111011010 Nasdaq-type 1 -1001111011010 earth-sciences 1 -1001111011010 officer-election 1 -1001111011010 insider-dominated 1 -1001111011010 motion-analysis 1 -1001111011010 library-automation 1 -1001111011010 bank-supervision 1 -1001111011010 not-untypical 1 -1001111011010 procrement 1 -1001111011010 RMJ/Delta 1 -1001111011010 country-elevator 1 -1001111011010 military-command 1 -1001111011010 writin 1 -1001111011010 electro-deposition 1 -1001111011010 alcohol-producing 1 -1001111011010 defense-consulting 1 -1001111011010 Mengitsu 1 -1001111011010 DECnet 1 -1001111011010 color-electronic-imaging 1 -1001111011010 drip-irrigation 1 -1001111011010 secondrate 1 -1001111011010 industry-based 1 -1001111011010 good-news-is-bad-news 1 -1001111011010 banks-for-cooperatives 1 -1001111011010 market-data 2 -1001111011010 reference-price 2 -1001111011010 investment-policy 2 -1001111011010 product-testing 2 -1001111011010 floating-exchange 2 -1001111011010 floating-exchange-rate 2 -1001111011010 semiconductor-industry 2 -1001111011010 trauma-care 2 -1001111011010 banking-related 2 -1001111011010 foreign-trading 2 -1001111011010 product-distribution 2 -1001111011010 parts-purchasing 2 -1001111011010 family-preference 2 -1001111011010 kisha-club 2 -1001111011010 strategy-steering 2 -1001111011010 international-stock 2 -1001111011010 Rogerson 2 -1001111011010 meat-rationing 2 -1001111011010 family-like 2 -1001111011010 DO3 2 -1001111011010 business-aircraft 2 -1001111011010 educational-services 2 -1001111011010 food-retail 2 -1001111011010 case-lottery 2 -1001111011010 non-crystalline 2 -1001111011010 inter-provincial 2 -1001111011010 sports-promotion 2 -1001111011010 psychological-testing 2 -1001111011010 base-chemicals 2 -1001111011010 web-press 2 -1001111011010 new-city 2 -1001111011010 loan-review 2 -1001111011010 business-reporting 2 -1001111011010 photographic-services 2 -1001111011010 meal-voucher 2 -1001111011010 senior/subordinated 2 -1001111011010 eyecare 2 -1001111011010 unsecured-creditors 2 -1001111011010 public-court 2 -1001111011010 trickle-up 2 -1001111011010 videocassette-ratings 2 -1001111011010 random-selection 2 -1001111011010 probable-cause 2 -1001111011010 ASME 2 -1001111011010 document-search 2 -1001111011010 juvenile-justice 2 -1001111011010 administrative-services 2 -1001111011010 arms-dealing 3 -1001111011010 airborne-radar 3 -1001111011010 world-trading 3 -1001111011010 adult-entertainment 3 -1001111011010 passenger-jet 3 -1001111011010 6800 3 -1001111011010 water-resources 3 -1001111011010 Chainsaw 3 -1001111011010 electro-optics 3 -1001111011010 reference-range 3 -1001111011010 three-branch 3 -1001111011010 military-airplane 3 -1001111011010 not-invented-here 3 -1001111011010 agri-monetary 3 -1001111011010 human-service 3 -1001111011010 public-transport 3 -1001111011010 tort-liability 3 -1001111011010 air-services 3 -1001111011010 check-clearance 3 -1001111011010 satellite-telecommunications 3 -1001111011010 gun-missile 3 -1001111011010 pre-menstrual 3 -1001111011010 laser-weapon 3 -1001111011010 parkway 4 -1001111011010 contract-drilling 4 -1001111011010 consumer-banking 4 -1001111011010 civil-justice 4 -1001111011010 performance-review 4 -1001111011010 financial-regulatory 4 -1001111011010 international-finance 4 -1001111011010 customer-supplier 4 -1001111011010 investment-research 4 -1001111011010 apparel-manufacturing 4 -1001111011010 agrimonetary 4 -1001111011010 ground-services 4 -1001111011010 metal-container 5 -1001111011010 natural-gas-pipeline 5 -1001111011010 Playcount 5 -1001111011010 space-transportation 5 -1001111011010 reserve-currency 5 -1001111011010 prison-furlough 5 -1001111011010 defense-technology 5 -1001111011010 insurance-broking 5 -1001111011010 auto-making 5 -1001111011010 heavy-electrical-engineering 6 -1001111011010 mortgage-finance 6 -1001111011010 flow-control 6 -1001111011010 options-clearing 8 -1001111011010 check-clearing 8 -1001111011010 aircraft-services 9 -1001111011010 check-processing 10 -1001111011010 production-quota 10 -1001111011010 hub-and-spoke 10 -1001111011010 insurance-brokerage 10 -1001111011010 biosafety 10 -1001111011010 caste 11 -1001111011010 business-research 12 -1001111011010 mortgage-lending 13 -1001111011010 satellite-launching 13 -1001111011010 equity-trading 13 -1001111011010 consumer-affairs 13 -1001111011010 policymaking 15 -1001111011010 electrical-engineering 15 -1001111011010 pension-insurance 16 -1001111011010 lawmaking 20 -1001111011010 public-finance 21 -1001111011010 old-boy 27 -1001111011010 futures-trading 29 -1001111011010 media-buying 30 -1001111011010 fund-management 31 -1001111011010 temporary-services 34 -1001111011010 oil-trading 42 -1001111011010 policy-setting 46 -1001111011010 price-monitoring 51 -1001111011010 merchant-banking 116 -1001111011010 quotation 145 -1001111011010 policy-making 247 -1001111011010 deficiency 630 -1001111011010 banking 7899 -1001111011010 advisory 915 -1001111011011 acrylic-fibers 1 -1001111011011 1,340,100 1 -1001111011011 promotion-security 1 -1001111011011 institutional-brokerage 1 -1001111011011 Kongsberg-Vaapenfabrikk 1 -1001111011011 Cowgirls 1 -1001111011011 futures-brokerage 1 -1001111011011 member-dealer 1 -1001111011011 better-insulated 1 -1001111011011 wage-related 1 -1001111011011 commercial-grains 1 -1001111011011 metals-research 1 -1001111011011 furniture-like 1 -1001111011011 undergarment 1 -1001111011011 equipment-supply 1 -1001111011011 pharmaceutical-exporting 1 -1001111011011 insurance-administration 1 -1001111011011 signal-quality 1 -1001111011011 later-day 1 -1001111011011 oil-appraisal 1 -1001111011011 career-management 1 -1001111011011 executive-outplacement 1 -1001111011011 merchandising-consulting 1 -1001111011011 refining-consulting 1 -1001111011011 210-lawyer 1 -1001111011011 brokerage-selling 1 -1001111011011 220-lawyer 1 -1001111011011 consulting-engineer 1 -1001111011011 personal-management 1 -1001111011011 celebrity-brokerage 1 -1001111011011 energy-forecasting 1 -1001111011011 security-selling 1 -1001111011011 agriculture-equipment 1 -1001111011011 woman-owned 1 -1001111011011 139-lawyer 1 -1001111011011 plan-funding 1 -1001111011011 480-employee 1 -1001111011011 20-person 1 -1001111011011 security-consulting 1 -1001111011011 temporary-doctor 1 -1001111011011 investmentbanking 1 -1001111011011 800-lawyer 1 -1001111011011 broadcast-equipment 1 -1001111011011 wire-making 1 -1001111011011 five-partner 1 -1001111011011 X-rated-movie 1 -1001111011011 left/right 1 -1001111011011 stucco-on-brick 1 -1001111011011 honesty-testing 1 -1001111011011 less-secretive 1 -1001111011011 optical-communications 1 -1001111011011 broad-product-line 1 -1001111011011 270-lawyer 1 -1001111011011 graphics-design 1 -1001111011011 econometric-forecasting 1 -1001111011011 economypolicy 1 -1001111011011 multiple-construction 1 -1001111011011 log-and-stone 1 -1001111011011 brand-naming 1 -1001111011011 military-systems 1 -1001111011011 13th-biggest 1 -1001111011011 chip-shot 1 -1001111011011 acoustical-engineering 1 -1001111011011 tar-paper 1 -1001111011011 travel-sales 1 -1001111011011 development-consulting 1 -1001111011011 makers-brokerage 1 -1001111011011 10-bed 1 -1001111011011 commodity-research 1 -1001111011011 wine-marketing 1 -1001111011011 1,900-employee 1 -1001111011011 Jaoul 1 -1001111011011 professional-service 1 -1001111011011 exchange-member 1 -1001111011011 cat-burglar 1 -1001111011011 Stock-brokerage 1 -1001111011011 sports-management 1 -1001111011011 100th-largest 1 -1001111011011 investmentmanagement 1 -1001111011011 apartment-maintenance 1 -1001111011011 mortgage-tracking 1 -1001111011011 more-staid 1 -1001111011011 product-research 1 -1001111011011 profit-yielding 1 -1001111011011 venture-leasing 1 -1001111011011 retail-based 1 -1001111011011 marine-towing 1 -1001111011011 investor-wned 1 -1001111011011 A-cup 1 -1001111011011 105mm 1 -1001111011011 industrial-psychology 1 -1001111011011 market-strategy 1 -1001111011011 tomato-products 1 -1001111011011 top-billing 1 -1001111011011 68-lawyer 1 -1001111011011 cost-consulting 1 -1001111011011 white-collar-defense 1 -1001111011011 immigration-consulting 1 -1001111011011 fertilizer-importing 1 -1001111011011 fashion-design 1 -1001111011011 ducal 1 -1001111011011 fiber-making 1 -1001111011011 foreign-oriented 1 -1001111011011 textile/apparel 1 -1001111011011 275-lawyer 1 -1001111011011 230-lawyer 1 -1001111011011 compensation-consultant 1 -1001111011011 training-aid 1 -1001111011011 behind-the-scene 1 -1001111011011 seven-professional 1 -1001111011011 protective-coating 1 -1001111011011 Suddeutsche 1 -1001111011011 media-investment 1 -1001111011011 Southfield-based 1 -1001111011011 options-selling 1 -1001111011011 benefits-research 1 -1001111011011 wireless-cable 1 -1001111011011 business-market 1 -1001111011011 beverage-consulting 1 -1001111011011 Washingtonbased 1 -1001111011011 16th-ranking 1 -1001111011011 Board-member 1 -1001111011011 200-lawyer 1 -1001111011011 135-lawyer 1 -1001111011011 foreign-bribery 1 -1001111011011 government-built 1 -1001111011011 once-sickly 1 -1001111011011 policy-analysis 1 -1001111011011 legal-graphics 1 -1001111011011 drug-wholesaler 1 -1001111011011 brokerage-oriented 1 -1001111011011 520-lawyer 1 -1001111011011 159-year-old 1 -1001111011011 rooming 1 -1001111011011 480-lawyer 1 -1001111011011 550-lawyer 1 -1001111011011 454-lawyer 1 -1001111011011 neo-Colonial 1 -1001111011011 252-lawyer 1 -1001111011011 fund-selling 1 -1001111011011 250-lawyer 1 -1001111011011 Roche/Dinkeloo 1 -1001111011011 ballot-counting 1 -1001111011011 rat-control 1 -1001111011011 accounting-method 1 -1001111011011 accounting-period 1 -1001111011011 technology-patent 1 -1001111011011 investment-advising 1 -1001111011011 executive-summary 1 -1001111011011 fraud-auditing 1 -1001111011011 turn-key 1 -1001111011011 concrete-lined 1 -1001111011011 money-exchange 1 -1001111011011 fund-research 2 -1001111011011 worker-managed 2 -1001111011011 bond-insurance 2 -1001111011011 nonclearing 2 -1001111011011 Reichmann-owned 2 -1001111011011 bank-consulting 2 -1001111011011 white-oriented 2 -1001111011011 personal-trading 2 -1001111011011 Panama-registered 2 -1001111011011 benefit-consulting 2 -1001111011011 charnel 2 -1001111011011 160-lawyer 2 -1001111011011 pennystock 2 -1001111011011 dealer-related 2 -1001111011011 acccounting 2 -1001111011011 grocery-buying 2 -1001111011011 bond-management 2 -1001111011011 research-consulting 2 -1001111011011 Ohio-incorporated 2 -1001111011011 eight-lawyer 2 -1001111011011 beauty-product 2 -1001111011011 25-employee 2 -1001111011011 management-consultant 2 -1001111011011 pinky 2 -1001111011011 catalog-consulting 2 -1001111011011 20-man 2 -1001111011011 plumbing-supply 2 -1001111011011 grain-exporting 2 -1001111011011 pension-investment 2 -1001111011011 Western-civilization 2 -1001111011011 Deny 2 -1001111011011 bank-securities 2 -1001111011011 pension-consulting 2 -1001111011011 industrial-controls 2 -1001111011011 securities-brokerage 2 -1001111011011 fight-promotion 2 -1001111011011 securities-rating 2 -1001111011011 shareholder-search 2 -1001111011011 household-survey 2 -1001111011011 deposit-rating 2 -1001111011011 energy-consulting 2 -1001111011011 cash-machine 2 -1001111011011 mortgage-brokerage 2 -1001111011011 120-lawyer 2 -1001111011011 bank-ratings 2 -1001111011011 executive-consulting 2 -1001111011011 agronomic 2 -1001111011011 jacaranda 2 -1001111011011 trade-consulting 2 -1001111011011 Sukrawetan 2 -1001111011011 cartage 2 -1001111011011 stock-watch 2 -1001111011011 corsets 2 -1001111011011 retail-consulting 2 -1001111011011 oyster-shucking 2 -1001111011011 non-exchange 2 -1001111011011 franchise-consulting 2 -1001111011011 house-building 2 -1001111011011 marketing-strategy 2 -1001111011011 tax-service 2 -1001111011011 financial-consulting 2 -1001111011011 options-brokerage 2 -1001111011011 ocean-side 2 -1001111011011 travel-consulting 2 -1001111011011 airport-security 2 -1001111011011 compensation-consulting 2 -1001111011011 farm-law 2 -1001111011011 multi-product 2 -1001111011011 boat-making 2 -1001111011011 executive-recruitment 2 -1001111011011 well-motivated 2 -1001111011011 metal-trading 2 -1001111011011 profit-maximizing 2 -1001111011011 stock-specialist 2 -1001111011011 investment-consulting 3 -1001111011011 marketing-consulting 3 -1001111011011 commodity-brokerage 3 -1001111011011 ink-stained 3 -1001111011011 media-research 3 -1001111011011 mail-processing 3 -1001111011011 16-person 3 -1001111011011 home-remodeling 3 -1001111011011 legal-consulting 3 -1001111011011 tradition-steeped 3 -1001111011011 waste-collection 3 -1001111011011 package-design 3 -1001111011011 retirement-housing 3 -1001111011011 political-consulting 3 -1001111011011 stock-research 3 -1001111011011 bearing-manufacturing 3 -1001111011011 parts-delivery 3 -1001111011011 50-lawyer 3 -1001111011011 700-lawyer 3 -1001111011011 general-contracting 4 -1001111011011 African-American 4 -1001111011011 headhunting 4 -1001111011011 securities-research 4 -1001111011011 inventory-accounting 4 -1001111011011 300-lawyer 4 -1001111011011 computer-consulting 4 -1001111011011 propeller-jet 4 -1001111011011 140-lawyer 5 -1001111011011 thespian 5 -1001111011011 Japanese-affiliated 5 -1001111011011 investment-counseling 5 -1001111011011 American-controlled 5 -1001111011011 cinderblock 5 -1001111011011 marketing-research 5 -1001111011011 private-investment 5 -1001111011011 chaise 5 -1001111011011 security-services 6 -1001111011011 grain-trading 6 -1001111011011 accounting-rule 6 -1001111011011 management-services 6 -1001111011011 oil-consulting 6 -1001111011011 stock-brokerage 7 -1001111011011 financial-management 7 -1001111011011 metals-trading 7 -1001111011011 full-cost 7 -1001111011011 labor-law 7 -1001111011011 auto-financing 7 -1001111011011 corn-processing 7 -1001111011011 executive-recruiting 8 -1001111011011 work-out 8 -1001111011011 benefits-consulting 9 -1001111011011 consumer-research 9 -1001111011011 inventory-control 9 -1001111011011 pension-accounting 10 -1001111011011 econometrics 10 -1001111011011 proxy-solicitation 12 -1001111011011 sports-marketing 13 -1001111011011 economic-consulting 13 -1001111011011 commercial/industrial 14 -1001111011011 discount-brokerage 17 -1001111011011 options-trading 17 -1001111011011 broking 18 -1001111011011 investment-advisory 22 -1001111011011 executive-search 29 -1001111011011 temp 29 -1001111011011 stockbroking 32 -1001111011011 consultancy 34 -1001111011011 management-consulting 35 -1001111011011 financial-planning 40 -1001111011011 asset-management 41 -1001111011011 investment-management 52 -1001111011011 outplacement 75 -1001111011011 advance-purchase 86 -1001111011011 CPA 101 -1001111011011 market-research 119 -1001111011011 money-management 148 -1001111011011 stockbrokerage 165 -1001111011011 auditing 240 -1001111011011 investment-banking 329 -1001111011011 clearing 626 -1001111011011 consulting 2415 -1001111011011 brokerage 3594 -1001111011011 accounting 4209 -10011110111000 collision-warning 1 -10011110111000 retailiatory 1 -10011110111000 flexible-manufacturing 1 -10011110111000 mail-forwarding 1 -10011110111000 altitude-measuring 1 -10011110111000 test-audience 1 -10011110111000 cubo-futurist 1 -10011110111000 electronic-shopping 1 -10011110111000 long-range-radar 1 -10011110111000 coke-fueled 1 -10011110111000 fraud-detection 1 -10011110111000 counter-espionage 1 -10011110111000 plaque-removing 1 -10011110111000 order-option 1 -10011110111000 pulse-research 1 -10011110111000 snow-making 1 -10011110111000 communiciations 1 -10011110111000 defueling 1 -10011110111000 tooth-cleaning 1 -10011110111000 shot-in-the-dark 1 -10011110111000 avionics-engineering 1 -10011110111000 sports-programming 1 -10011110111000 program-development 1 -10011110111000 base-publishing 1 -10011110111000 retarder 1 -10011110111000 behind-the-lines 1 -10011110111000 homosexual-support 1 -10011110111000 production-engineering 1 -10011110111000 tactical-display 1 -10011110111000 appliance-store 1 -10011110111000 mergers-advisory 1 -10011110111000 theft-alarm 1 -10011110111000 political-funding 1 -10011110111000 maintenance-program 1 -10011110111000 price-quotation 2 -10011110111000 pre-funding 2 -10011110111000 power-producing 2 -10011110111000 computer-graphic 2 -10011110111000 ballon 2 -10011110111000 facsimile-transmission 2 -10011110111000 WHDH-AM 2 -10011110111000 telephone-system 2 -10011110111000 cash-register 2 -10011110111000 economic-cooperation 2 -10011110111000 engine-development 2 -10011110111000 impulse-buying 2 -10011110111000 deficit-control 2 -10011110111000 tax-compliance 2 -10011110111000 crime-detection 2 -10011110111000 factory-building 2 -10011110111000 sub-assembly 2 -10011110111000 cardiac-pacing 2 -10011110111000 unappropriated 2 -10011110111000 electronic-defense 2 -10011110111000 night-shift 2 -10011110111000 timber-harvesting 2 -10011110111000 unenacted 2 -10011110111000 home-stretch 2 -10011110111000 annealing 2 -10011110111000 regasification 2 -10011110111000 film-editing 2 -10011110111000 test-range 2 -10011110111000 home-cooking 3 -10011110111000 fractal 3 -10011110111000 steady-as-she-goes 3 -10011110111000 monoline 3 -10011110111000 lactation 3 -10011110111000 community-relations 3 -10011110111000 concertizing 3 -10011110111000 television-programming 3 -10011110111000 tune-up 3 -10011110111000 unselfish 3 -10011110111000 BMP 3 -10011110111000 cowgirls 3 -10011110111000 information-storage 3 -10011110111000 round-robin 3 -10011110111000 non-engineering 3 -10011110111000 gold-trading 3 -10011110111000 data-analysis 3 -10011110111000 truck-making 3 -10011110111000 home-banking 3 -10011110111000 containable 3 -10011110111000 anti-Electrolux 3 -10011110111000 employment-severance 3 -10011110111000 Polydor 3 -10011110111000 phonics 3 -10011110111000 discus 3 -10011110111000 atropine 3 -10011110111000 targetable 3 -10011110111000 fee-related 4 -10011110111000 roadbuilding 4 -10011110111000 union-company 4 -10011110111000 satellite-control 4 -10011110111000 chrome-plating 4 -10011110111000 star-gazing 4 -10011110111000 encrypted 4 -10011110111000 rewind 4 -10011110111000 business-management 4 -10011110111000 Medicare-certified 4 -10011110111000 audience-measurement 4 -10011110111000 pyrotechnic 4 -10011110111000 electrolysis 4 -10011110111000 electric-powered 4 -10011110111000 acqusitions 4 -10011110111000 merchandizing 4 -10011110111000 hematology 5 -10011110111000 air-service 5 -10011110111000 energy-supply 5 -10011110111000 Kotex 5 -10011110111000 quicksilver 5 -10011110111000 countersuits 5 -10011110111000 missile-production 5 -10011110111000 order-processing 5 -10011110111000 manicure 6 -10011110111000 deposit-gathering 6 -10011110111000 trading-company 6 -10011110111000 municipal-finance 6 -10011110111000 floor-trading 6 -10011110111000 electronic-trading 6 -10011110111000 composting 6 -10011110111000 information-retrieval 7 -10011110111000 electronic-information 7 -10011110111000 co-ownership 7 -10011110111000 well-lit 7 -10011110111000 command-and-control 8 -10011110111000 data-collection 8 -10011110111000 sneering 8 -10011110111000 get-out-the-vote 8 -10011110111000 biking 8 -10011110111000 reprocessing 8 -10011110111000 remediation 9 -10011110111000 argon 9 -10011110111000 fire-fighting 9 -10011110111000 intermodal 9 -10011110111000 stock-buying 9 -10011110111000 trouble-shooting 10 -10011110111000 export-finance 10 -10011110111000 intelligence-gathering 11 -10011110111000 hand-washing 11 -10011110111000 lubrication 11 -10011110111000 critical-care 11 -10011110111000 image-building 11 -10011110111000 mine-clearing 11 -10011110111000 ventilating 12 -10011110111000 decontamination 13 -10011110111000 lube 13 -10011110111000 representational 13 -10011110111000 high-strength 13 -10011110111000 movie-making 13 -10011110111000 drug-interdiction 14 -10011110111000 feathered 14 -10011110111000 business-development 14 -10011110111000 bleaching 15 -10011110111000 software-development 15 -10011110111000 docking 16 -10011110111000 ginger 16 -10011110111000 rafting 17 -10011110111000 post-production 17 -10011110111000 peacemaking 18 -10011110111000 telemetry 18 -10011110111000 supercomputing 18 -10011110111000 merger-and-acquisition 19 -10011110111000 relending 19 -10011110111000 risk-management 19 -10011110111000 managed-care 19 -10011110111000 canning 20 -10011110111000 robotic 20 -10011110111000 missile-engineering 20 -10011110111000 image-processing 21 -10011110111000 news-gathering 21 -10011110111000 currency-trading 23 -10011110111000 messaging 25 -10011110111000 prospecting 26 -10011110111000 percussion 26 -10011110111000 extrusion 26 -10011110111000 ticketing 26 -10011110111000 firefighting 28 -10011110111000 converter 28 -10011110111000 photocopying 29 -10011110111000 towing 30 -10011110111000 problem-solving 31 -10011110111000 brokering 32 -10011110111000 wagering 34 -10011110111000 forwarding 35 -10011110111000 boating 35 -10011110111000 sourcing 35 -10011110111000 decorating 37 -10011110111000 landscaping 38 -10011110111000 dredging 41 -10011110111000 retrieval 44 -10011110111000 product-development 47 -10011110111000 molding 54 -10011110111000 deal-making 55 -10011110111000 welding 56 -10011110111000 camping 56 -10011110111000 braking 56 -10011110111000 grazing 60 -10011110111000 subcontracting 61 -10011110111000 fabricating 63 -10011110111000 telemarketing 64 -10011110111000 interchange 64 -10011110111000 M&A 74 -10011110111000 stock-trading 78 -10011110111000 logistics 88 -10011110111000 courier 88 -10011110111000 pharmacy 92 -10011110111000 seating 98 -10011110111000 wiring 101 -10011110111000 PR 104 -10011110111000 corporate-finance 127 -10011110111000 paging 141 -10011110111000 irrigation 142 -10011110111000 navigation 157 -10011110111000 market-making 160 -10011110111000 franchising 176 -10011110111000 backup 194 -10011110111000 fitness 225 -10011110111000 recycling 243 -10011110111000 conservation 257 -10011110111000 computing 258 -10011110111000 merchandising 299 -10011110111000 lighting 302 -10011110111000 billing 332 -10011110111000 fund-raising 338 -10011110111000 servicing 358 -10011110111000 communication 366 -10011110111000 public-relations 380 -10011110111000 hedging 392 -10011110111000 beauty 429 -10011110111000 promotional 450 -10011110111000 syndication 453 -10011110111000 cooperative 477 -10011110111000 fishing 522 -10011110111000 landing 587 -10011110111000 storage 761 -10011110111000 licensing 793 -10011110111000 lobbying 1023 -10011110111000 shipping 1209 -10011110111000 processing 1484 -10011110111000 engineering 2368 -10011110111000 marketing 7473 -10011110111000 communications 2482 -10011110111001 driling 1 -10011110111001 maxi-debate 1 -10011110111001 spirts 1 -10011110111001 nsurance 1 -10011110111001 joint-exploration 1 -10011110111001 specialty-insurance 1 -10011110111001 development/production/distribution 1 -10011110111001 radiative 1 -10011110111001 wild-catting 1 -10011110111001 cost-recognition 1 -10011110111001 multihued 1 -10011110111001 part-making 1 -10011110111001 steel-finishing 1 -10011110111001 directory-printing 1 -10011110111001 turbine-related 1 -10011110111001 container-transport 1 -10011110111001 Microsoft-Apple 1 -10011110111001 basic-materials 1 -10011110111001 to-four-family 1 -10011110111001 jackup 1 -10011110111001 draining-and-flushing 1 -10011110111001 Hanina 1 -10011110111001 drugs-for-arms 1 -10011110111001 CLAUSTROPHOBIC 1 -10011110111001 protection-related 1 -10011110111001 life-health 1 -10011110111001 roof-support 1 -10011110111001 submicron 1 -10011110111001 masonry-clad 1 -10011110111001 cow-like 1 -10011110111001 hay-topped 1 -10011110111001 dealing-room 2 -10011110111001 drilling-bit 2 -10011110111001 wage-negotiation 2 -10011110111001 home-buyer 2 -10011110111001 807-type 2 -10011110111001 profiteroles 2 -10011110111001 field-equipment 2 -10011110111001 unpressurized 2 -10011110111001 bookselling 2 -10011110111001 commercial-jet 2 -10011110111001 order-delivery 2 -10011110111001 soft-drink-bottling 2 -10011110111001 paper-distribution 2 -10011110111001 Eurobond-trading 2 -10011110111001 inertial-guidance 2 -10011110111001 process-development 2 -10011110111001 bus-building 2 -10011110111001 Tempo/Topaz 2 -10011110111001 battery-manufacturing 2 -10011110111001 oil-shale 2 -10011110111001 minority-employment 2 -10011110111001 computer-manufacturing 2 -10011110111001 deflations 2 -10011110111001 missile-support 2 -10011110111001 exploration-equipment 2 -10011110111001 drillings 2 -10011110111001 Beruit 2 -10011110111001 aluminum-making 2 -10011110111001 disposer 2 -10011110111001 automations 2 -10011110111001 mortgage-making 2 -10011110111001 grouting 2 -10011110111001 Lowenbrau 3 -10011110111001 congregate-living 3 -10011110111001 desipramine 3 -10011110111001 crash-protection 3 -10011110111001 Oceania 3 -10011110111001 SCEcorp. 3 -10011110111001 pest-resistant 3 -10011110111001 air-carrier 3 -10011110111001 bankrutpcy 3 -10011110111001 video-distribution 3 -10011110111001 power-production 3 -10011110111001 Dalhousie 3 -10011110111001 steering-column 3 -10011110111001 desulfurization 3 -10011110111001 colorings 3 -10011110111001 mulberry 3 -10011110111001 component-making 3 -10011110111001 1960s-style 3 -10011110111001 squirting 3 -10011110111001 industry-related 3 -10011110111001 barbeque 3 -10011110111001 spearing 3 -10011110111001 waste-processing 4 -10011110111001 gas-drilling 4 -10011110111001 site-preparation 4 -10011110111001 well-service 4 -10011110111001 tourism-related 4 -10011110111001 alpha-naphthol 4 -10011110111001 commercial-lending 4 -10011110111001 military-aerospace 4 -10011110111001 dataprocessing 4 -10011110111001 non-transportation 4 -10011110111001 denim-making 4 -10011110111001 note-issuance 4 -10011110111001 timekeeping 4 -10011110111001 white-run 4 -10011110111001 parts-distribution 5 -10011110111001 electronics-related 5 -10011110111001 packinghouse 5 -10011110111001 Cryovac 5 -10011110111001 dipstick 5 -10011110111001 plant-construction 5 -10011110111001 corporate-lending 5 -10011110111001 film-distribution 5 -10011110111001 well-servicing 5 -10011110111001 basic-chemicals 5 -10011110111001 bulk-shipping 6 -10011110111001 magnetics 6 -10011110111001 cargo-handling 6 -10011110111001 market-surveillance 6 -10011110111001 capital-investment 6 -10011110111001 separator 6 -10011110111001 sealant 6 -10011110111001 monomers 6 -10011110111001 waste-removal 7 -10011110111001 contruction 7 -10011110111001 film-production 7 -10011110111001 mooring 7 -10011110111001 bank-refinancing 8 -10011110111001 doctor's-office 8 -10011110111001 order-routing 8 -10011110111001 de-icing 8 -10011110111001 gas-supply 9 -10011110111001 car-making 9 -10011110111001 pulping 9 -10011110111001 guzzler 10 -10011110111001 radiator 10 -10011110111001 tax-preparation 10 -10011110111001 claims-processing 11 -10011110111001 reexport 13 -10011110111001 paper-making 13 -10011110111001 interconnection 14 -10011110111001 film-processing 14 -10011110111001 parts-making 16 -10011110111001 tire-making 16 -10011110111001 etching 17 -10011110111001 Claymore 18 -10011110111001 waste-treatment 18 -10011110111001 airways 18 -10011110111001 intensive-care 19 -10011110111001 compression 29 -10011110111001 rehab 29 -10011110111001 chip-making 30 -10011110111001 capital-markets 32 -10011110111001 purification 33 -10011110111001 veneer 35 -10011110111001 ranching 38 -10011110111001 goods-producing 38 -10011110111001 slaughtering 38 -10011110111001 optic 46 -10011110111001 wholesaling 46 -10011110111001 smelting 48 -10011110111001 wallboard 53 -10011110111001 startup 57 -10011110111001 incineration 59 -10011110111001 waste-disposal 62 -10011110111001 extraction 62 -10011110111001 Corsica 65 -10011110111001 animation 66 -10011110111001 remodeling 71 -10011110111001 combustion 73 -10011110111001 instrumentation 76 -10011110111001 simulation 86 -10011110111001 fabrication 89 -10011110111001 logging 91 -10011110111001 coating 93 -10011110111001 enrichment 93 -10011110111001 refrigeration 94 -10011110111001 avionics 103 -10011110111001 steelmaking 109 -10011110111001 turbine 111 -10011110111001 liquids 116 -10011110111001 convoy 117 -10011110111001 sewage 144 -10011110111001 Taurus 180 -10011110111001 measurement 202 -10011110111001 imaging 215 -10011110111001 spirits 335 -10011110111001 automation 406 -10011110111001 start-up 654 -10011110111001 refining 774 -10011110111001 transmission 826 -10011110111001 printing 929 -10011110111001 drilling 995 -10011110111001 leasing 1051 -10011110111001 maintenance 1364 -10011110111001 pipeline 1606 -10011110111001 exploration 1638 -10011110111001 distribution 3397 -10011110111001 construction 5299 -10011110111001 manufacturing 4660 -100111101110100 air-emergency 1 -100111101110100 limited-release 1 -100111101110100 opinion-polling 1 -100111101110100 Clark-Cowlitz 1 -100111101110100 Banishing 1 -100111101110100 refugee-protection 1 -100111101110100 univesrity 1 -100111101110100 IMF-style 1 -100111101110100 159-nation 1 -100111101110100 alcoholism-treatment 1 -100111101110100 special-needs 1 -100111101110100 anti-tax-reform 1 -100111101110100 advertiser-produced 1 -100111101110100 program-sales 1 -100111101110100 unshared 1 -100111101110100 all-but-independent 1 -100111101110100 securities-watchdog 1 -100111101110100 independent-expenditure 1 -100111101110100 alternatative 1 -100111101110100 trellising 1 -100111101110100 awareness-building 1 -100111101110100 philatelic 1 -100111101110100 anti-slowdown 1 -100111101110100 work-welfare 1 -100111101110100 export-guarantee 1 -100111101110100 toy-related 1 -100111101110100 income-preserving 1 -100111101110100 temperature-taking 1 -100111101110100 small-publishing 1 -100111101110100 devlopment 1 -100111101110100 anti-spiritual-pollution 1 -100111101110100 all-beef 1 -100111101110100 wing-part 1 -100111101110100 dude-ranch 1 -100111101110100 regional-marketing 1 -100111101110100 economice 1 -100111101110100 at-my-desk 1 -100111101110100 real-estate-loan 1 -100111101110100 energy-efficiency 1 -100111101110100 consumer-country 1 -100111101110100 software-license 1 -100111101110100 petroleum-cracking 1 -100111101110100 advance-guard 1 -100111101110100 social-interest 1 -100111101110100 poverty-law 1 -100111101110100 pension-benefits 1 -100111101110100 IVF/GIFT 1 -100111101110100 SPENDERS 1 -100111101110100 gold-braided 1 -100111101110100 anti-Armenian 1 -100111101110100 domestic-violence 1 -100111101110100 deep-space 1 -100111101110100 Turner-Kumagai 1 -100111101110100 liquor-marketing 1 -100111101110100 8,000-square-foot 1 -100111101110100 tool-builders 1 -100111101110100 information-security 1 -100111101110100 loan-guaranty 1 -100111101110100 split-commission 1 -100111101110100 due-on-sale 1 -100111101110100 bag-related 1 -100111101110100 Crew-reduction 1 -100111101110100 early-release 1 -100111101110100 OSHA-type 1 -100111101110100 energy-cost 1 -100111101110100 527,000but 1 -100111101110100 all-state 1 -100111101110100 show/merchandising 1 -100111101110100 taxi-owners 1 -100111101110100 communist-front 1 -100111101110100 presorting 1 -100111101110100 food-relief 1 -100111101110100 marine-machinery 1 -100111101110100 up-close-and-personal 1 -100111101110100 player-sportswriter 1 -100111101110100 Guide-sized 1 -100111101110100 themepark 1 -100111101110100 industrial-finance 1 -100111101110100 semipublic 1 -100111101110100 commercial-insurance 1 -100111101110100 risk-absorbing 1 -100111101110100 stock-photo 1 -100111101110100 budget-driven 1 -100111101110100 auto-lubrication 1 -100111101110100 as-yet-unwritten 1 -100111101110100 television-advertising 2 -100111101110100 jury-duty 2 -100111101110100 body-collection 2 -100111101110100 office-temporary 2 -100111101110100 coin-production 2 -100111101110100 straight-faced 2 -100111101110100 anti-feminist 2 -100111101110100 tax-collecting 2 -100111101110100 image-boosting 2 -100111101110100 principal-transaction 2 -100111101110100 vehicle-making 2 -100111101110100 adverstising 2 -100111101110100 quick-print 2 -100111101110100 neoprene 2 -100111101110100 coupon-distribution 2 -100111101110100 AIDS-prevention 2 -100111101110100 image-advertising 2 -100111101110100 bourgeois-liberalization 2 -100111101110100 bluestone 2 -100111101110100 anti-free-trade 2 -100111101110100 anti-banking 2 -100111101110100 patent-licensing 2 -100111101110100 15-game 2 -100111101110100 investment-guarantee 2 -100111101110100 Adachiya 2 -100111101110100 2,545 2 -100111101110100 issue-less 2 -100111101110100 growth-management 2 -100111101110100 private-employer 2 -100111101110100 bistate 2 -100111101110100 anti-gambling 3 -100111101110100 industrial-strength 3 -100111101110100 rheumatism 3 -100111101110100 newspaper-ad 3 -100111101110100 serialization 3 -100111101110100 self-motivation 3 -100111101110100 schilling 3 -100111101110100 106-member 3 -100111101110100 anti-drinking 3 -100111101110100 fumigation 4 -100111101110100 applesauce 4 -100111101110100 Citi-One 5 -100111101110100 advertising-sales 5 -100111101110100 town-house 5 -100111101110100 trade-promotion 6 -100111101110100 alms 6 -100111101110100 capital-improvement 7 -100111101110100 eyebrow 10 -100111101110100 miniature-golf 11 -100111101110100 stumpage 11 -100111101110100 advertorial 12 -100111101110100 ox 12 -100111101110100 credit-research 12 -100111101110100 accrediting 15 -100111101110100 151-nation 17 -100111101110100 debt-collection 17 -100111101110100 oil-change 18 -100111101110100 anti-corruption 19 -100111101110100 overdraft 23 -100111101110100 encyclopedia 45 -100111101110100 traffic-safety 53 -100111101110100 ARM 56 -100111101110100 invoice 69 -100111101110100 ADR 102 -100111101110100 entitlement 159 -100111101110100 escrow 208 -100111101110100 drinks 508 -100111101110100 underwriting 1320 -100111101110100 advertising 5616 -100111101110100 ad 3450 -100111101110101 bulk-mailing 1 -100111101110101 pharmaceutics 1 -100111101110101 company-administration 1 -100111101110101 head-scratching 1 -100111101110101 hairbrained 1 -100111101110101 loan-underwriting 1 -100111101110101 oil-transfer 1 -100111101110101 traumatology 1 -100111101110101 market-promoting 1 -100111101110101 Lasertronics 1 -100111101110101 mutual-aid 1 -100111101110101 silk-trading 1 -100111101110101 IMF-endorsed 1 -100111101110101 Piper-Heidseick 1 -100111101110101 discrimination-complaint 1 -100111101110101 dysfunctions 1 -100111101110101 safety-training 1 -100111101110101 debate-organizing 1 -100111101110101 media-watchdog 1 -100111101110101 Setback 1 -100111101110101 4,497,205 1 -100111101110101 joint-trade 1 -100111101110101 8,000-odd 1 -100111101110101 heat-escape 1 -100111101110101 thrift-study 1 -100111101110101 small-business-development 1 -100111101110101 Mutt-and-Jeff 1 -100111101110101 angiotensin-converting 1 -100111101110101 non-naturalistic 1 -100111101110101 serology 1 -100111101110101 emergency-locater 1 -100111101110101 protective-custody 1 -100111101110101 cartographic 1 -100111101110101 geochemistry 1 -100111101110101 346.44 1 -100111101110101 distraction-free 1 -100111101110101 ethnic-study 1 -100111101110101 obstetrics-gynecology 1 -100111101110101 1777-78 1 -100111101110101 fauteuils 1 -100111101110101 563.24 1 -100111101110101 Jurisprudence 1 -100111101110101 face-painting 1 -100111101110101 counterinflation 1 -100111101110101 educational-research 1 -100111101110101 cross-linking 1 -100111101110101 news-digging 1 -100111101110101 equipment-partsmaking 1 -100111101110101 cream-vending 1 -100111101110101 consumer-advice 1 -100111101110101 peritonitis 1 -100111101110101 domestic-commodity 1 -100111101110101 time-space 1 -100111101110101 Jersey-Pennsylvania 1 -100111101110101 window-filled 1 -100111101110101 rice-bug 1 -100111101110101 load-management 1 -100111101110101 bond-sales 1 -100111101110101 newsgathering 1 -100111101110101 news-and-gossip 1 -100111101110101 unjaded 1 -100111101110101 2286.2 1 -100111101110101 Monplaisir 1 -100111101110101 otology 1 -100111101110101 district-attorney 1 -100111101110101 energy-pricing 1 -100111101110101 user-funded 1 -100111101110101 globetrotting 1 -100111101110101 Alabam 1 -100111101110101 second-act 1 -100111101110101 trade-fair 1 -100111101110101 highbrow-furrowing 1 -100111101110101 Rebar 1 -100111101110101 loan-workout 1 -100111101110101 Toronto-Montreal-Ottawa 1 -100111101110101 Theremin 1 -100111101110101 pre-stamped 1 -100111101110101 engine-casting 1 -100111101110101 pushbacks 1 -100111101110101 car-window 1 -100111101110101 suburb-to-center 1 -100111101110101 trdaing 1 -100111101110101 Wartnaby 1 -100111101110101 insider-selling 1 -100111101110101 gene-analysis 1 -100111101110101 payment-system 1 -100111101110101 hematology-oncology 2 -100111101110101 shams 2 -100111101110101 policy-research 2 -100111101110101 light-industry 2 -100111101110101 broadcasted 2 -100111101110101 murder-for-hire 2 -100111101110101 international-relations 2 -100111101110101 Khuzestan 2 -100111101110101 closed-off 2 -100111101110101 order-matching 2 -100111101110101 carnivore 2 -100111101110101 loungers 2 -100111101110101 power-assisted 2 -100111101110101 two-fund 2 -100111101110101 taste-testing 2 -100111101110101 credit-review 2 -100111101110101 corporate-communications 2 -100111101110101 flea-bitten 2 -100111101110101 symposia 2 -100111101110101 Habsheim 2 -100111101110101 well-administered 2 -100111101110101 year-in 2 -100111101110101 enology 2 -100111101110101 bill-padding 2 -100111101110101 bloater 2 -100111101110101 chemical-weapon-free 2 -100111101110101 F&I 2 -100111101110101 audiology 2 -100111101110101 perishing 2 -100111101110101 every-man-for-himself 2 -100111101110101 380SL 2 -100111101110101 AIDS-service 2 -100111101110101 city-planning 2 -100111101110101 shoebox-size 2 -100111101110101 art-history 3 -100111101110101 freshet 3 -100111101110101 laryngitis 3 -100111101110101 tuba 3 -100111101110101 entomology 3 -100111101110101 self-addressed 3 -100111101110101 Cassino 3 -100111101110101 reseach 3 -100111101110101 agate 3 -100111101110101 export-processing 3 -100111101110101 photojournalism 3 -100111101110101 depositor-owned 3 -100111101110101 45-degree 3 -100111101110101 popular-culture 3 -100111101110101 environmental-affairs 3 -100111101110101 supra-national 3 -100111101110101 non-money 3 -100111101110101 bricklayer 3 -100111101110101 loudness 3 -100111101110101 sponging 3 -100111101110101 croc 4 -100111101110101 behaviorist 4 -100111101110101 gerontology 4 -100111101110101 ophthalmology 4 -100111101110101 video-communications 4 -100111101110101 phonetics 4 -100111101110101 agronomy 4 -100111101110101 zoology 4 -100111101110101 biomechanics 4 -100111101110101 customs-free 4 -100111101110101 debt-financing 4 -100111101110101 geophysics 4 -100111101110101 anesthesiology 5 -100111101110101 rosary 5 -100111101110101 nail-biting 5 -100111101110101 near-misses 5 -100111101110101 invoicing 5 -100111101110101 botany 5 -100111101110101 bioengineering 5 -100111101110101 linguistics 5 -100111101110101 superconduction 5 -100111101110101 employee-assistance 5 -100111101110101 shuffleboard 5 -100111101110101 deftness 5 -100111101110101 biophysics 5 -100111101110101 health-promotion 6 -100111101110101 detoxification 6 -100111101110101 worker-training 6 -100111101110101 commas 6 -100111101110101 pod 6 -100111101110101 Chosun 7 -100111101110101 speedskating 7 -100111101110101 picture-taking 7 -100111101110101 biofeedback 7 -100111101110101 silica 8 -100111101110101 bestsellers 8 -100111101110101 cephalosporin 8 -100111101110101 horticulture 9 -100111101110101 deliberative 9 -100111101110101 birthing 9 -100111101110101 bradykinin 9 -100111101110101 gynecology 10 -100111101110101 matinee 10 -100111101110101 Dong-A 10 -100111101110101 groundbreaking 10 -100111101110101 1002 10 -100111101110101 virology 10 -100111101110101 criminology 10 -100111101110101 viola 11 -100111101110101 oncology 12 -100111101110101 epidemiology 12 -100111101110101 aquaculture 12 -100111101110101 rapt 12 -100111101110101 neurology 14 -100111101110101 methadone 14 -100111101110101 microbiology 14 -100111101110101 cathedrals 14 -100111101110101 dysfunction 14 -100111101110101 insemination 16 -100111101110101 cardiology 16 -100111101110101 toxicology 16 -100111101110101 immunology 16 -100111101110101 self-regulating 17 -100111101110101 sit-ins 17 -100111101110101 astronomy 17 -100111101110101 radiology 17 -100111101110101 dermatology 17 -100111101110101 geriatrics 18 -100111101110101 obstetrics 19 -100111101110101 pediatrics 21 -100111101110101 firebombs 22 -100111101110101 biochemistry 22 -100111101110101 Literaturnaya 22 -100111101110101 pharmacology 23 -100111101110101 brainstorming 26 -100111101110101 public-affairs 28 -100111101110101 standard-setting 29 -100111101110101 geology 31 -100111101110101 pathology 31 -100111101110101 anthropology 31 -100111101110101 rodeo 31 -100111101110101 investor-relations 32 -100111101110101 genetics 35 -100111101110101 athletics 36 -100111101110101 health-maintenance 36 -100111101110101 twilight 44 -100111101110101 psychiatry 49 -100111101110101 humanities 65 -100111101110101 gardening 69 -100111101110101 sociology 72 -100111101110101 literacy 84 -100111101110101 syndications 87 -100111101110101 biology 103 -100111101110101 mathematics 124 -100111101110101 recreation 138 -100111101110101 bowling 142 -100111101110101 gossip 174 -100111101110101 admissions 191 -100111101110101 detention 200 -100111101110101 polling 200 -100111101110101 physics 204 -100111101110101 watchdog 226 -100111101110101 architecture 250 -100111101110101 soap 294 -100111101110101 decision-making 295 -100111101110101 counseling 345 -100111101110101 commerce 559 -100111101110101 science 1199 -100111101110101 economics 1199 -100111101110101 research 8973 -100111101110101 shopping 1511 -100111101110110 d-piano 1 -100111101110110 silvery-leaved 1 -100111101110110 Cohen-Boyer 1 -100111101110110 commercial-development 1 -100111101110110 chocolate-bar 1 -100111101110110 paper-white 1 -100111101110110 rock-influenced 1 -100111101110110 more-luxurious 1 -100111101110110 KWTO-AM 1 -100111101110110 WCAO-AM 1 -100111101110110 WAOK-AM 1 -100111101110110 WONE-AM 1 -100111101110110 WAKR-AM 1 -100111101110110 KFOR-AM 1 -100111101110110 18,000-employee 1 -100111101110110 fabricated-metal 1 -100111101110110 as----- 1 -100111101110110 global-circulation 1 -100111101110110 antifungal 1 -100111101110110 WLAC-AM 1 -100111101110110 WNIC-FM 1 -100111101110110 vehicle-shipment 1 -100111101110110 heatingoil 1 -100111101110110 single-colored 1 -100111101110110 leasing-company 1 -100111101110110 magnesite 1 -100111101110110 nondepositor 1 -100111101110110 eye-and-ear 1 -100111101110110 moon-launch 1 -100111101110110 non-mushroom 1 -100111101110110 post-enactment 1 -100111101110110 animal-human 1 -100111101110110 Shuffling 1 -100111101110110 scandal-free 1 -100111101110110 outside-contract 1 -100111101110110 fast-approaching 1 -100111101110110 refrigerator-compressor 1 -100111101110110 50,890 1 -100111101110110 non-signatory 1 -100111101110110 congessional 1 -100111101110110 electrical-worker 1 -100111101110110 counterguerrilla 1 -100111101110110 Pentacostal 2 -100111101110110 Pepsodent 2 -100111101110110 social-affairs 2 -100111101110110 equal-opportunities 2 -100111101110110 lowest-quality 2 -100111101110110 monetary-affairs 2 -100111101110110 can-sealing 2 -100111101110110 WIBC-AM 2 -100111101110110 WCBS-TV 2 -100111101110110 PR-wise 2 -100111101110110 marketing-service 2 -100111101110110 transcutaneous 2 -100111101110110 domestic-airline 2 -100111101110110 escrow-account 2 -100111101110110 Euroguilder 2 -100111101110110 three-section 2 -100111101110110 hand-dyed 2 -100111101110110 defense-production 2 -100111101110110 40-some 2 -100111101110110 swoony 2 -100111101110110 tax-based 2 -100111101110110 large-cap 2 -100111101110110 government-private 2 -100111101110110 bathroom-tissue 2 -100111101110110 more-disciplined 2 -100111101110110 Breuners 3 -100111101110110 drudge 3 -100111101110110 corporate-affairs 3 -100111101110110 corporate-travel 3 -100111101110110 needle-sharing 3 -100111101110110 all-in-one 3 -100111101110110 agricultural-development 3 -100111101110110 corrosion-control 3 -100111101110110 Byrds 3 -100111101110110 drywall 3 -100111101110110 nondestructive 3 -100111101110110 family-care 3 -100111101110110 crop-insurance 3 -100111101110110 stone-faced 3 -100111101110110 computer-education 3 -100111101110110 space-exploration 3 -100111101110110 social-studies 3 -100111101110110 copper-consuming 4 -100111101110110 neatness 4 -100111101110110 recession-fighting 4 -100111101110110 Wellsburg 4 -100111101110110 weapons-plant 4 -100111101110110 school-district 5 -100111101110110 stair 5 -100111101110110 human-services 5 -100111101110110 road-construction 5 -100111101110110 retail-ad 5 -100111101110110 strategic-defense 6 -100111101110110 telecom 6 -100111101110110 government-wide 6 -100111101110110 causative 7 -100111101110110 public-spending 7 -100111101110110 investment-recovery 7 -100111101110110 production-control 8 -100111101110110 ag 8 -100111101110110 foreign-assistance 8 -100111101110110 non-medical 8 -100111101110110 transporation 9 -100111101110110 self-protection 9 -100111101110110 Huta 13 -100111101110110 antidrug 16 -100111101110110 hedge-fund 19 -100111101110110 masonry 19 -100111101110110 bromine 19 -100111101110110 catchall 22 -100111101110110 remarketing 23 -100111101110110 transportation-equipment 33 -100111101110110 foreign-aid 58 -100111101110110 research-and-development 89 -100111101110110 nonresidential 115 -100111101110110 public-works 196 -100111101110110 R&D 211 -100111101110110 tourism 302 -100111101110110 lawn 312 -100111101110110 interior 338 -100111101110110 treasury 409 -100111101110110 highway 699 -100111101110110 agriculture 882 -100111101110110 defense 8156 -100111101110110 transportation 2444 -100111101110111 marketing-conference 1 -100111101110111 care-products 1 -100111101110111 radio-related 1 -100111101110111 offshore-services 1 -100111101110111 medical-facility 1 -100111101110111 tartar-free 1 -100111101110111 non-Marxists 1 -100111101110111 legal-defense 1 -100111101110111 expansion-oriented 1 -100111101110111 restorers 1 -100111101110111 relational-database 1 -100111101110111 informationsystems 1 -100111101110111 audio-visual-systems 1 -100111101110111 interministry 1 -100111101110111 shut. 1 -100111101110111 erythematosus 1 -100111101110111 eight-million 1 -100111101110111 whale-sized 1 -100111101110111 Deep-South 1 -100111101110111 lauryl 1 -100111101110111 Corp.-affiliated 1 -100111101110111 spins. 1 -100111101110111 overnight-mail 1 -100111101110111 new-name 1 -100111101110111 Chetnik-style 1 -100111101110111 Indiana-incorporated 1 -100111101110111 Sumitomo-clan 1 -100111101110111 strainer 1 -100111101110111 aerosol-packing 1 -100111101110111 Egyptological 1 -100111101110111 Ontario-chartered 1 -100111101110111 depressors 1 -100111101110111 cuttlefish 1 -100111101110111 aircraft-making 1 -100111101110111 airplane-repair 1 -100111101110111 cable-service 1 -100111101110111 alarm-systems 1 -100111101110111 surf-fashion 1 -100111101110111 Pritzker-controlled 1 -100111101110111 noncard 1 -100111101110111 fruit-farm 1 -100111101110111 pomades 1 -100111101110111 jobs-for-teens 1 -100111101110111 Popeye-style 1 -100111101110111 accrual-method 1 -100111101110111 web-printing 1 -100111101110111 airport-services 1 -100111101110111 rites. 1 -100111101110111 irrigation-management 1 -100111101110111 re-emerges 1 -100111101110111 CREDIT-card 1 -100111101110111 import-verification 1 -100111101110111 non-quiet 1 -100111101110111 shouter 1 -100111101110111 non-quoted 1 -100111101110111 stage-five 1 -100111101110111 financialservices 1 -100111101110111 makersa 1 -100111101110111 Semites 1 -100111101110111 Nonproductive 1 -100111101110111 nonmedia 1 -100111101110111 ROUNTABLE 1 -100111101110111 food-oriented 1 -100111101110111 Israeli-based 1 -100111101110111 refacing 1 -100111101110111 equity-mortgage 1 -100111101110111 currency-consulting 1 -100111101110111 relaxer 1 -100111101110111 water-engineering 1 -100111101110111 fresher-feeling 1 -100111101110111 asset-based-financing 1 -100111101110111 low-multiple 1 -100111101110111 state-charted 1 -100111101110111 lab-equipment 1 -100111101110111 single-industry 1 -100111101110111 striping 1 -100111101110111 computer-imaging-systems 1 -100111101110111 supercomputer-manufacturing 1 -100111101110111 EC-controlled 1 -100111101110111 employee-controlled 2 -100111101110111 college-loan 2 -100111101110111 engineering-services 2 -100111101110111 agricultural-biotechnology 2 -100111101110111 Hispanic-market 2 -100111101110111 salinization 2 -100111101110111 cleaning-service 2 -100111101110111 Australian-listed 2 -100111101110111 peasant-style 2 -100111101110111 Combs-Gates 2 -100111101110111 state-designed 2 -100111101110111 environmental-quality 2 -100111101110111 financial-fraud 2 -100111101110111 11-bank 2 -100111101110111 big-borrowing 2 -100111101110111 letter-box 2 -100111101110111 extra-European 2 -100111101110111 Dutch-registered 2 -100111101110111 land-asset 2 -100111101110111 Oppenheimer-controlled 2 -100111101110111 more-successful 2 -100111101110111 have-not 2 -100111101110111 CompuHealth 2 -100111101110111 engineering-software 2 -100111101110111 grise 2 -100111101110111 Chinese-controlled 2 -100111101110111 nonlife-insurance 2 -100111101110111 athletic-wear 2 -100111101110111 data-service 2 -100111101110111 once-potent 2 -100111101110111 coupon-redemption 2 -100111101110111 community-affairs 2 -100111101110111 late-stage 2 -100111101110111 unreserved 2 -100111101110111 auto-electronics 2 -100111101110111 chromatograph/mass 2 -100111101110111 pharmaecutical 2 -100111101110111 dislocated-worker 3 -100111101110111 boggling 3 -100111101110111 follicles 3 -100111101110111 self-fulfillment 3 -100111101110111 asset-sales 3 -100111101110111 buying-in 3 -100111101110111 gasoline-refining 3 -100111101110111 catalog-sales 3 -100111101110111 television-syndication 3 -100111101110111 teacher-training 3 -100111101110111 processed-foods 4 -100111101110111 insurance-service 4 -100111101110111 major-medical 4 -100111101110111 state-regulated 4 -100111101110111 local-telephone 4 -100111101110111 multi-industry 4 -100111101110111 guesthouse 4 -100111101110111 pack-style 4 -100111101110111 in-law 4 -100111101110111 preserver 4 -100111101110111 grain-storage 4 -100111101110111 automobile-insurance 5 -100111101110111 plaited 5 -100111101110111 accounts-payable 5 -100111101110111 lozenges 5 -100111101110111 credit-insurance 5 -100111101110111 tax-haven 7 -100111101110111 municipal-securities 7 -100111101110111 petroleum-refining 7 -100111101110111 expectancies 7 -100111101110111 air-transport 8 -100111101110111 Petites 8 -100111101110111 retardant 8 -100111101110111 drug-distribution 9 -100111101110111 data-gathering 9 -100111101110111 metallurgy 10 -100111101110111 public-utility 12 -100111101110111 computer-service 12 -100111101110111 investment-bank 12 -100111101110111 title-insurance 13 -100111101110111 economic-research 16 -100111101110111 import-export 16 -100111101110111 early-stage 16 -100111101110111 IND 17 -100111101110111 information-service 22 -100111101110111 dryers 29 -100111101110111 mortgage-insurance 31 -100111101110111 oil-exploration 37 -100111101110111 auto-insurance 46 -100111101110111 deposit-insurance 50 -100111101110111 expectancy 54 -100111101110111 employee-owned 57 -100111101110111 car-rental 118 -100111101110111 annuity 167 -100111101110111 life-insurance 189 -100111101110111 insurance 9937 -100111101110111 reinsurance 276 -10011110111100 -managed 1 -10011110111100 domed-stadium 1 -10011110111100 nightlong 1 -10011110111100 construction-financing 1 -10011110111100 Training-Choices 1 -10011110111100 Socialistic 1 -10011110111100 sno-cone 1 -10011110111100 vehicle-financing 1 -10011110111100 basketcase 1 -10011110111100 21-mile 1 -10011110111100 too-long 1 -10011110111100 Knightsbridge 1 -10011110111100 abuse/prevention 1 -10011110111100 gas-storage 1 -10011110111100 Photro 1 -10011110111100 ego-building 1 -10011110111100 litigation-support 1 -10011110111100 attitude-changing 1 -10011110111100 laser-development 1 -10011110111100 18-foot-long 1 -10011110111100 .50-caliber 1 -10011110111100 close-to-the-edge 1 -10011110111100 retreatment 1 -10011110111100 tax-software 1 -10011110111100 platform-maintenance 1 -10011110111100 mop-up 2 -10011110111100 dales 2 -10011110111100 disposers 2 -10011110111100 sukiyaki 2 -10011110111100 nonperformers 2 -10011110111100 Weizhou 2 -10011110111100 make-overs 2 -10011110111100 implementer 2 -10011110111100 selflessness 2 -10011110111100 whitening 2 -10011110111100 entourages 2 -10011110111100 cytarabine 2 -10011110111100 developent 2 -10011110111100 re-marketer 2 -10011110111100 maintainability 2 -10011110111100 VPT390 2 -10011110111100 cashing-out 2 -10011110111100 pocks 2 -10011110111100 Exxons 2 -10011110111100 door-opening 2 -10011110111100 substructure 2 -10011110111100 pointlessness 2 -10011110111100 greenfield 2 -10011110111100 royalty-free 2 -10011110111100 EXPs 2 -10011110111100 maladjustment 2 -10011110111100 Anahuac 2 -10011110111100 producer-distributor 2 -10011110111100 progesterone 3 -10011110111100 entryways 3 -10011110111100 impresarios 3 -10011110111100 hara-kiri 3 -10011110111100 Baluchis 3 -10011110111100 stodgiest 3 -10011110111100 superfund 3 -10011110111100 bookmakers 3 -10011110111100 recurrences 3 -10011110111100 whimsies 3 -10011110111100 workover 3 -10011110111100 Pitfalls 3 -10011110111100 M-CSF 4 -10011110111100 closeout 4 -10011110111100 emaciation 4 -10011110111100 Moduretic 4 -10011110111100 malleability 4 -10011110111100 pacification 4 -10011110111100 portraiture 4 -10011110111100 wherefores 4 -10011110111100 orbits 4 -10011110111100 cheerfulness 4 -10011110111100 seacoast 5 -10011110111100 draftsmen 5 -10011110111100 mockups 5 -10011110111100 spin-offs 5 -10011110111100 deprivations 5 -10011110111100 insufficiency 5 -10011110111100 industriousness 5 -10011110111100 sorrows 5 -10011110111100 crevices 5 -10011110111100 Bloods 5 -10011110111100 inflection 5 -10011110111100 mock-ups 5 -10011110111100 embezzlements 5 -10011110111100 vestibule 6 -10011110111100 matchmaking 6 -10011110111100 decriminalization 6 -10011110111100 initiators 6 -10011110111100 bratwurst 6 -10011110111100 testosterone 6 -10011110111100 exhaled 6 -10011110111100 damnation 7 -10011110111100 vomit 7 -10011110111100 activation 7 -10011110111100 gals 7 -10011110111100 arousal 7 -10011110111100 vibrancy 7 -10011110111100 extermination 7 -10011110111100 forthrightness 7 -10011110111100 distillation 8 -10011110111100 woof 8 -10011110111100 firebombing 8 -10011110111100 Fate 9 -10011110111100 house-cleaning 10 -10011110111100 functionality 10 -10011110111100 absorber 10 -10011110111100 hardness 10 -10011110111100 expropriations 10 -10011110111100 condemnations 10 -10011110111100 crannies 11 -10011110111100 rearmament 11 -10011110111100 waists 11 -10011110111100 cutouts 11 -10011110111100 refurbishment 12 -10011110111100 cranny 12 -10011110111100 adjudication 15 -10011110111100 reclamation 15 -10011110111100 resuscitation 18 -10011110111100 abuser 19 -10011110111100 contemplation 19 -10011110111100 desecration 20 -10011110111100 destabilization 21 -10011110111100 flyer 21 -10011110111100 eradication 22 -10011110111100 excavation 23 -10011110111100 leaseback 26 -10011110111100 clean-up 30 -10011110111100 obsolescence 30 -10011110111100 semantics 30 -10011110111100 cons 31 -10011110111100 upkeep 33 -10011110111100 cultivation 35 -10011110111100 inflammation 38 -10011110111100 standardization 38 -10011110111100 convertibility 39 -10011110111100 rationalization 40 -10011110111100 revitalization 41 -10011110111100 overhauls 42 -10011110111100 overdose 43 -10011110111100 demolition 46 -10011110111100 Snecma 47 -10011110111100 interdiction 47 -10011110111100 lease-back 48 -10011110111100 commercialization 53 -10011110111100 piracy 59 -10011110111100 rotation 64 -10011110111100 downsizing 67 -10011110111100 redevelopment 67 -10011110111100 duplication 71 -10011110111100 reproduction 73 -10011110111100 aggregates 78 -10011110111100 reinvestment 80 -10011110111100 retention 83 -10011110111100 reconstruction 91 -10011110111100 enhancement 110 -10011110111100 downs 123 -10011110111100 recruitment 127 -10011110111100 modification 140 -10011110111100 relocation 146 -10011110111100 sponsorship 153 -10011110111100 amortization 155 -10011110111100 detection 159 -10011110111100 legalization 160 -10011110111100 renovation 171 -10011110111100 appraisal 175 -10011110111100 prevention 199 -10011110111100 rehabilitation 227 -10011110111100 renewal 259 -10011110111100 infrastructure 264 -10011110111100 innovation 336 -10011110111100 integration 339 -10011110111100 modernization 389 -10011110111100 cleanup 492 -10011110111100 diversification 503 -10011110111100 disposal 567 -10011110111100 placement 631 -10011110111100 abuse 817 -10011110111100 promotion 832 -10011110111100 development 7633 -10011110111100 expansion 3581 -10011110111101 action-tax 1 -10011110111101 chances. 1 -10011110111101 reshape. 1 -10011110111101 cutesy-poo 1 -10011110111101 nobile 1 -10011110111101 unfair-dismissal 1 -10011110111101 gene-insertion 1 -10011110111101 hold-and-forward 1 -10011110111101 multiple-rate 1 -10011110111101 Hugg-A-Planet 1 -10011110111101 interferon-TNF 1 -10011110111101 early-caucus 1 -10011110111101 Lijfrentekas 1 -10011110111101 Cremi 1 -10011110111101 balls. 1 -10011110111101 callus 1 -10011110111101 bid-proof 1 -10011110111101 capital-to-loan 1 -10011110111101 motorbiking 1 -10011110111101 emerging-business 1 -10011110111101 videos. 1 -10011110111101 shared-cost 1 -10011110111101 entitlement- 1 -10011110111101 Velban 1 -10011110111101 staffship 1 -10011110111101 nutriments 1 -10011110111101 Eisensteinian 1 -10011110111101 XBR 1 -10011110111101 dust-collection 1 -10011110111101 titling 1 -10011110111101 in-transit 1 -10011110111101 technology-policing 1 -10011110111101 air-emission 1 -10011110111101 service-return 1 -10011110111101 coal-marketing 1 -10011110111101 vacanices 1 -10011110111101 ruboff 1 -10011110111101 self-repudiation 1 -10011110111101 Scholasticus 1 -10011110111101 slayer 1 -10011110111101 air-fuel 1 -10011110111101 kidney-failure 1 -10011110111101 cluster-manager 1 -10011110111101 electronics-research 1 -10011110111101 mishap. 1 -10011110111101 abscesses 1 -10011110111101 talkfests 1 -10011110111101 O-medal 1 -10011110111101 radiocommunications 1 -10011110111101 position-risk 1 -10011110111101 smog-control 1 -10011110111101 ingeneral 1 -10011110111101 Turner-sponsored 1 -10011110111101 melt-up 1 -10011110111101 50/56-seat 1 -10011110111101 passenger-transportation 1 -10011110111101 Tatanga 1 -10011110111101 strangler 1 -10011110111101 safety-monitoring 1 -10011110111101 consumer-advertising 1 -10011110111101 meat-based 1 -10011110111101 varieties. 1 -10011110111101 smellers 1 -10011110111101 attention-deficit 1 -10011110111101 one-market 2 -10011110111101 acid-washing 2 -10011110111101 borrow-and-spend 2 -10011110111101 70-member 2 -10011110111101 technology-intensive 2 -10011110111101 capital-reserve 2 -10011110111101 poultry-inspection 2 -10011110111101 anti-counterfeit 2 -10011110111101 BMW-5 2 -10011110111101 acid-rain-control 2 -10011110111101 satellite-navigation 2 -10011110111101 welfare-work 2 -10011110111101 latchkey 2 -10011110111101 general-staff 2 -10011110111101 consolidated-return 2 -10011110111101 unitary-tax 2 -10011110111101 extruding 2 -10011110111101 third-hand 2 -10011110111101 currency-option 2 -10011110111101 enhanced-recovery 2 -10011110111101 computer-training 2 -10011110111101 skill-training 2 -10011110111101 hutches 2 -10011110111101 self-study 2 -10011110111101 judicial-election 2 -10011110111101 hotel-administration 2 -10011110111101 -500 2 -10011110111101 burn-out 2 -10011110111101 prisoner-furlough 2 -10011110111101 planar 2 -10011110111101 slave-labor 2 -10011110111101 phonebook 2 -10011110111101 refugee-resettlement 2 -10011110111101 yuppie-bashing 2 -10011110111101 self-screening 2 -10011110111101 partial-divestment 2 -10011110111101 PSX/300 2 -10011110111101 patent-application 2 -10011110111101 patent-office 2 -10011110111101 crew-reduction 2 -10011110111101 Ariodante 2 -10011110111101 interlacing 2 -10011110111101 Marxian 2 -10011110111101 pheromone 2 -10011110111101 lock-picking 2 -10011110111101 Discoverer 2 -10011110111101 pinscher 2 -10011110111101 shoulder-belt 2 -10011110111101 gas-separation 2 -10011110111101 hardiness 2 -10011110111101 fluorescence 2 -10011110111101 taxpayer-aid 2 -10011110111101 modulation 2 -10011110111101 document-image-processing 2 -10011110111101 show-and-tell 2 -10011110111101 dial-a-video 2 -10011110111101 people-to-people 3 -10011110111101 pettifogging 3 -10011110111101 bone-growth 3 -10011110111101 blow-out 3 -10011110111101 asynchronous 3 -10011110111101 cosmetic-surgery 3 -10011110111101 vehicle-safety 3 -10011110111101 action-filled 3 -10011110111101 semi-public 3 -10011110111101 know-your-client 3 -10011110111101 D'Amato-Cranston 3 -10011110111101 wands 3 -10011110111101 vicious-dog 3 -10011110111101 electronic-payment 3 -10011110111101 identifier 3 -10011110111101 government-procurement 3 -10011110111101 drug-counseling 3 -10011110111101 temporary-worker 3 -10011110111101 military-satellite 3 -10011110111101 jambiya 3 -10011110111101 Mittelstand 3 -10011110111101 work-sharing 3 -10011110111101 strike-outs 3 -10011110111101 minilateral 3 -10011110111101 syndicated-exclusivity 3 -10011110111101 encoder 4 -10011110111101 parastatals 4 -10011110111101 trawling 4 -10011110111101 savings-bond 4 -10011110111101 biomechanical 4 -10011110111101 lift-slab 4 -10011110111101 audit-trail 4 -10011110111101 formulary 4 -10011110111101 Dial-A-Sailor 4 -10011110111101 galleria 4 -10011110111101 anti-monopoly 4 -10011110111101 pretreatment 4 -10011110111101 domestic-spending 4 -10011110111101 hairsplitting 4 -10011110111101 carotene 4 -10011110111101 no-action 4 -10011110111101 quality-inspection 4 -10011110111101 loss-on-sale 4 -10011110111101 transshipment 5 -10011110111101 off-terminal 5 -10011110111101 pre-treatment 5 -10011110111101 security-related 5 -10011110111101 train-control 5 -10011110111101 competitive-bidding 5 -10011110111101 age-group 5 -10011110111101 buy-write 5 -10011110111101 right-of-way 5 -10011110111101 trade-handling 5 -10011110111101 contact-tracing 5 -10011110111101 mister 5 -10011110111101 low-life 5 -10011110111101 freight-hauling 5 -10011110111101 dispute-settling 5 -10011110111101 lockout/tagout 6 -10011110111101 two-shift 6 -10011110111101 goon 6 -10011110111101 export-screening 6 -10011110111101 X.75 6 -10011110111101 foreign-worker 6 -10011110111101 flim-flam 6 -10011110111101 LACMA 6 -10011110111101 frivolity 7 -10011110111101 universality 7 -10011110111101 canto 7 -10011110111101 shift-lock 7 -10011110111101 bail-out 7 -10011110111101 right-to-know 7 -10011110111101 tree-planting 7 -10011110111101 price-control 7 -10011110111101 superstore 8 -10011110111101 calibration 8 -10011110111101 vagrancy 8 -10011110111101 Bullwinkle 8 -10011110111101 preferred-provider 8 -10011110111101 coinage 9 -10011110111101 anti-growth 9 -10011110111101 reemployment 9 -10011110111101 case-management 9 -10011110111101 child-protection 9 -10011110111101 kennel 9 -10011110111101 first-strike 10 -10011110111101 accountancy 10 -10011110111101 Monkees 10 -10011110111101 naturalization 10 -10011110111101 beggar-thy-neighbor 10 -10011110111101 swampbuster 10 -10011110111101 self-censorship 10 -10011110111101 open-outcry 10 -10011110111101 Iranscam 11 -10011110111101 siting 11 -10011110111101 slalom 12 -10011110111101 time-sharing 12 -10011110111101 internal-security 12 -10011110111101 dango 13 -10011110111101 air-bag 13 -10011110111101 bait-and-switch 13 -10011110111101 torts 13 -10011110111101 lymphadenopathy 14 -10011110111101 down-payment 14 -10011110111101 rulemaking 16 -10011110111101 fundraising 16 -10011110111101 coding 18 -10011110111101 home-buying 18 -10011110111101 weapons-buying 19 -10011110111101 rate-setting 20 -10011110111101 double-breasting 20 -10011110111101 immunization 20 -10011110111101 vaccination 20 -10011110111101 spoiler 21 -10011110111101 wellness 21 -10011110111101 flammability 21 -10011110111101 POW 22 -10011110111101 dieting 22 -10011110111101 word-of-mouth 22 -10011110111101 toxics 22 -10011110111101 redistricting 23 -10011110111101 outreach 24 -10011110111101 self-policing 27 -10011110111101 reflagging 28 -10011110111101 indecency 28 -10011110111101 eviction 30 -10011110111101 affordability 30 -10011110111101 SuperDot 35 -10011110111101 ignition 41 -10011110111101 sterilization 42 -10011110111101 housekeeping 44 -10011110111101 trivia 47 -10011110111101 voucher 51 -10011110111101 nationalities 55 -10011110111101 nonlethal 59 -10011110111101 fact-finding 60 -10011110111101 drug-testing 64 -10011110111101 accreditation 69 -10011110111101 ventilation 70 -10011110111101 disinformation 70 -10011110111101 quality-control 84 -10011110111101 grievance 91 -10011110111101 furlough 93 -10011110111101 bookkeeping 109 -10011110111101 parole 110 -10011110111101 retraining 126 -10011110111101 residency 128 -10011110111101 containment 138 -10011110111101 contraceptive 145 -10011110111101 nutrition 153 -10011110111101 mediation 155 -10011110111101 zoning 178 -10011110111101 certification 192 -10011110111101 humanitarian 217 -10011110111101 supervisory 225 -10011110111101 record-keeping 233 -10011110111101 verification 268 -10011110111101 transit 315 -10011110111101 lottery 318 -10011110111101 propaganda 358 -10011110111101 oversight 405 -10011110111101 surveillance 420 -10011110111101 sentencing 429 -10011110111101 procurement 621 -10011110111101 parking 649 -10011110111101 ethics 837 -10011110111101 welfare 1324 -10011110111101 pricing 1624 -10011110111101 enforcement 1805 -10011110111101 training 2342 -10011110111101 safety 3426 -10011110111101 security 4405 -10011110111110 oil-sharing 1 -10011110111110 side-street 1 -10011110111110 clot-fighting 1 -10011110111110 strategems 1 -10011110111110 Astianax 1 -10011110111110 EAS-fostered 1 -10011110111110 limited-premium 1 -10011110111110 RV20 1 -10011110111110 8-iron 1 -10011110111110 concordances 2 -10011110111110 allocative 2 -10011110111110 optronics 2 -10011110111110 hooding 3 -10011110111110 non-labor 3 -10011110111110 guano 3 -10011110111110 Touchdown 3 -10011110111110 unserviceable 3 -10011110111110 asymmetries 3 -10011110111110 breastplate 3 -10011110111110 newsies 3 -10011110111110 gigantism 3 -10011110111110 taximeters 4 -10011110111110 subzone 4 -10011110111110 spillway 4 -10011110111110 overcollateralization 4 -10011110111110 tutus 4 -10011110111110 activewear 5 -10011110111110 dormancy 6 -10011110111110 midcareer 6 -10011110111110 BIOS 9 -10011110111110 adrenalin 11 -10011110111110 flack 11 -10011110111110 blitzkrieg 11 -10011110111110 blackness 11 -10011110111110 price-setting 11 -10011110111110 recompense 12 -10011110111110 scrip 14 -10011110111110 conditionality 15 -10011110111110 self-government 15 -10011110111110 cross-margining 16 -10011110111110 repellent 16 -10011110111110 cheerleading 22 -10011110111110 mammography 22 -10011110111110 shorthand 22 -10011110111110 honoraria 23 -10011110111110 remuneration 24 -10011110111110 shrapnel 24 -10011110111110 digestion 25 -10011110111110 vesting 26 -10011110111110 debt-servicing 27 -10011110111110 indenture 27 -10011110111110 sequestration 29 -10011110111110 spillover 32 -10011110111110 housecleaning 33 -10011110111110 registry 35 -10011110111110 reinforcement 41 -10011110111110 reparations 41 -10011110111110 fodder 45 -10011110111110 payback 50 -10011110111110 decommissioning 50 -10011110111110 forbearance 59 -10011110111110 picketing 61 -10011110111110 affinity 63 -10011110111110 indemnification 64 -10011110111110 set-aside 71 -10011110111110 exclusivity 86 -10011110111110 reciprocity 92 -10011110111110 deferral 106 -10011110111110 ransom 106 -10011110111110 deportation 109 -10011110111110 visa 113 -10011110111110 input 121 -10011110111110 goodwill 126 -10011110111110 indexing 131 -10011110111110 appropriation 132 -10011110111110 donation 135 -10011110111110 paperwork 158 -10011110111110 scholarship 164 -10011110111110 restitution 167 -10011110111110 eligibility 173 -10011110111110 instruction 194 -10011110111110 reimbursement 204 -10011110111110 documentation 211 -10011110111110 notification 239 -10011110111110 contempt 273 -10011110111110 warranty 318 -10011110111110 amnesty 413 -10011110111110 subsidy 501 -10011110111110 gift 571 -10011110111110 salary 1224 -10011110111110 relief 1430 -10011110111110 compensation 1780 -10011110111110 reserve 1806 -10011110111110 funding 2016 -10011110111110 fine 2216 -10011110111110 material 2410 -10011110111110 treatment 2824 -10011110111110 financing 6698 -10011110111111 conduct-of-business 1 -10011110111111 dissatisfying 1 -10011110111111 contract-managed 1 -10011110111111 paper-cutters 1 -10011110111111 1,726 1 -10011110111111 childbirths 1 -10011110111111 model-building 1 -10011110111111 rock- 1 -10011110111111 carrot-nibbling 1 -10011110111111 four-fifty 1 -10011110111111 rice-milling 1 -10011110111111 bond- 1 -10011110111111 sunrises 1 -10011110111111 carob 1 -10011110111111 yin 1 -10011110111111 zarzuelas 1 -10011110111111 anthills 1 -10011110111111 governerships 1 -10011110111111 peut 1 -10011110111111 2,452 1 -10011110111111 Acupuncture 1 -10011110111111 Asyut 1 -10011110111111 44-2 1 -10011110111111 graphicart 1 -10011110111111 ABA- 1 -10011110111111 tough-on-crime 1 -10011110111111 flummoxed 1 -10011110111111 169-9 1 -10011110111111 Muffie 1 -10011110111111 SAVAK 1 -10011110111111 pseudo-workaholics 1 -10011110111111 Shalamar 1 -10011110111111 Spanish- 1 -10011110111111 Jaerfaella 1 -10011110111111 junior- 1 -10011110111111 apogees 1 -10011110111111 Journeymen 1 -10011110111111 well-control 1 -10011110111111 226,286 1 -10011110111111 likeability 1 -10011110111111 JWT-Italia 1 -10011110111111 KRPM-AM 1 -10011110111111 hobgoblins 1 -10011110111111 leavetakings 1 -10011110111111 97.710 1 -10011110111111 Dearing 1 -10011110111111 kawaii 1 -10011110111111 WTVS/Detroit 1 -10011110111111 522,500 1 -10011110111111 LaRouchites 1 -10011110111111 9.8s 1 -10011110111111 130-megabyte 1 -10011110111111 flappers 1 -10011110111111 master's-level 1 -10011110111111 SAIL 1 -10011110111111 Macfarlanes 1 -10011110111111 Bonebrake 1 -10011110111111 steel- 1 -10011110111111 low-rainfall 1 -10011110111111 life-presidency 1 -10011110111111 electro-galvanized 1 -10011110111111 clean-air-technology 1 -10011110111111 timbrel 1 -10011110111111 1.6:1 1 -10011110111111 14.5:1 1 -10011110111111 I-beams 1 -10011110111111 Angria 1 -10011110111111 6.6-liter 1 -10011110111111 network-control 1 -10011110111111 fuchsias 1 -10011110111111 Arcunum 1 -10011110111111 Khalistan 1 -10011110111111 pecan-shelling 1 -10011110111111 pro-Americans 1 -10011110111111 overutilization 1 -10011110111111 lily-gilding 1 -10011110111111 one-machine 1 -10011110111111 El-Mashrek 1 -10011110111111 113.17 1 -10011110111111 child-killers 1 -10011110111111 business- 1 -10011110111111 pluckier 1 -10011110111111 counter-revolutions 1 -10011110111111 Limburg 1 -10011110111111 15-9 1 -10011110111111 underbilling 1 -10011110111111 heterosexuality 1 -10011110111111 road-access 1 -10011110111111 pain-killers 1 -10011110111111 Varanasi 1 -10011110111111 boxboard 1 -10011110111111 resistants 1 -10011110111111 1592-98 1 -10011110111111 Condivi 1 -10011110111111 Tocache 1 -10011110111111 tin-producing 1 -10011110111111 fuel-spurting 1 -10011110111111 lugubriously 1 -10011110111111 cultdom 1 -10011110111111 group-liability 1 -10011110111111 turnabouts 1 -10011110111111 forsythia 1 -10011110111111 late-romantic 1 -10011110111111 precipitators 1 -10011110111111 summit-gouging 1 -10011110111111 huggermugger 1 -10011110111111 cassis 1 -10011110111111 submitters 1 -10011110111111 Rimini 1 -10011110111111 hacksaws 1 -10011110111111 component-supply 1 -10011110111111 431,087 1 -10011110111111 Bounceroos 1 -10011110111111 millenarianism 1 -10011110111111 proverbs 1 -10011110111111 hazels 1 -10011110111111 recharger 1 -10011110111111 smoking- 1 -10011110111111 686,787 1 -10011110111111 tumeric 1 -10011110111111 Marinduque 1 -10011110111111 coxswains 1 -10011110111111 pop-funk 1 -10011110111111 biologicals 1 -10011110111111 108.05 1 -10011110111111 swing-producers 1 -10011110111111 gunrunning 1 -10011110111111 Berseba 1 -10011110111111 indefatigability 1 -10011110111111 microbreweries 1 -10011110111111 lives. 1 -10011110111111 Filipinas 1 -10011110111111 swinishness 1 -10011110111111 Marusa 1 -10011110111111 Ibid.s 1 -10011110111111 inflationism 1 -10011110111111 damge 1 -10011110111111 child- 1 -10011110111111 teacups 1 -10011110111111 Appropriateness 1 -10011110111111 ocean-research 1 -10011110111111 Wellington/Thorndike 1 -10011110111111 semi-bleached-softwood 1 -10011110111111 Euroskepticism 1 -10011110111111 evasion-related 1 -10011110111111 Libyas 1 -10011110111111 cies 1 -10011110111111 auto-collision 1 -10011110111111 Cobh 1 -10011110111111 Langres 1 -10011110111111 Tobolsk 1 -10011110111111 lacework 1 -10011110111111 founder/president 1 -10011110111111 hard- 1 -10011110111111 racoons 1 -10011110111111 air-distribution 1 -10011110111111 sexually-explicit 1 -10011110111111 Bakunin 1 -10011110111111 bond-tagging 1 -10011110111111 Montanans 1 -10011110111111 inkwells 1 -10011110111111 1323.24 1 -10011110111111 mini-cars 1 -10011110111111 snowthrowers 1 -10011110111111 fluid-analysis 1 -10011110111111 neo-conservatism 1 -10011110111111 Plumbers 1 -10011110111111 postal-business 1 -10011110111111 saguaros 1 -10011110111111 Penzoil 1 -10011110111111 bluegill 1 -10011110111111 rough-gem 1 -10011110111111 hype-merchant 1 -10011110111111 77-21 1 -10011110111111 crampons 1 -10011110111111 generic-pharmaceutical 1 -10011110111111 swifts 1 -10011110111111 1929-1933 1 -10011110111111 narcotraffickers 1 -10011110111111 Edek 1 -10011110111111 car-audio 1 -10011110111111 cigarets 1 -10011110111111 duct-work 1 -10011110111111 gang- 1 -10011110111111 2351.4 1 -10011110111111 determinedness 1 -10011110111111 mesas 1 -10011110111111 automated-ticketing 1 -10011110111111 99.698 1 -10011110111111 mega-positions 1 -10011110111111 258.90 1 -10011110111111 encripting 1 -10011110111111 butterscotch 1 -10011110111111 double- 1 -10011110111111 Lombok 1 -10011110111111 L-DOPA 1 -10011110111111 m.b.a.s 1 -10011110111111 bookwriting 1 -10011110111111 Kents 1 -10011110111111 nationalsecurity 1 -10011110111111 Barja 1 -10011110111111 1679.0 1 -10011110111111 folk-song 1 -10011110111111 watercraft 1 -10011110111111 598,800 1 -10011110111111 accelerometers 1 -10011110111111 federal-insured 1 -10011110111111 Embalmers 1 -10011110111111 head-down 1 -10011110111111 guidewheels 1 -10011110111111 storage-management 1 -10011110111111 tackboard 1 -10011110111111 rubouts 1 -10011110111111 Alabama-Huntsville 1 -10011110111111 pugnaciousness 1 -10011110111111 Arcot 1 -10011110111111 pet-seekers 1 -10011110111111 mink-trimmed 1 -10011110111111 transaxle 1 -10011110111111 ornithology 1 -10011110111111 belled 1 -10011110111111 1665 1 -10011110111111 tinplate 1 -10011110111111 Pointe-aux-Trembles 1 -10011110111111 yen/mark 1 -10011110111111 BAMs 1 -10011110111111 1245.78 1 -10011110111111 Packinghouse 1 -10011110111111 non-maple 1 -10011110111111 slaves-turned-sharecroppers 1 -10011110111111 crawler-bulldozers 1 -10011110111111 Vaelaes 1 -10011110111111 61,206 1 -10011110111111 Harlequins 1 -10011110111111 urine-testing 1 -10011110111111 Vaeles 1 -10011110111111 surface- 1 -10011110111111 plexiglas 1 -10011110111111 carpetbagging 1 -10011110111111 Matabeleland 1 -10011110111111 rattraps 1 -10011110111111 Salish 1 -10011110111111 luaus 1 -10011110111111 Geology 1 -10011110111111 Zaporozh 1 -10011110111111 highhanded 2 -10011110111111 corrals 2 -10011110111111 fluid-control 2 -10011110111111 self-executing 2 -10011110111111 collusions 2 -10011110111111 Clergy 2 -10011110111111 anti-extortion 2 -10011110111111 ice-breaker 2 -10011110111111 black-gum 2 -10011110111111 concealments 2 -10011110111111 97.17 2 -10011110111111 air- 2 -10011110111111 load-shedding 2 -10011110111111 OvestMarine 2 -10011110111111 U.S.- 2 -10011110111111 loons 2 -10011110111111 eight- 2 -10011110111111 clamshell 2 -10011110111111 contract-settlement 2 -10011110111111 brambles 2 -10011110111111 anti-semitism 2 -10011110111111 Goldilocks 2 -10011110111111 relapses 2 -10011110111111 Antichrist 2 -10011110111111 ROP 2 -10011110111111 cavity-fighting 2 -10011110111111 Inbal 2 -10011110111111 germplasm 2 -10011110111111 summa 2 -10011110111111 premenstrual 2 -10011110111111 emulsifiers 2 -10011110111111 pro-opposition 2 -10011110111111 Tiran 2 -10011110111111 spiritualist 2 -10011110111111 attractants 2 -10011110111111 marimbas 2 -10011110111111 sienna 2 -10011110111111 empanadas 2 -10011110111111 rosemary 2 -10011110111111 IMUs 2 -10011110111111 tweeds 2 -10011110111111 pilasters 2 -10011110111111 anti-party 2 -10011110111111 mental-stress 2 -10011110111111 swashbucklers 2 -10011110111111 homesites 3 -10011110111111 endearment 3 -10011110111111 1976-80 3 -10011110111111 terrorism-related 3 -10011110111111 thrift-fraud 3 -10011110111111 24-7 3 -10011110111111 put-ons 3 -10011110111111 meteorites 3 -10011110111111 syndromes 3 -10011110111111 paraprofessionals 3 -10011110111111 menstruation 3 -10011110111111 anchovies 3 -10011110111111 MMFs 3 -10011110111111 moonshining 3 -10011110111111 grape-growing 3 -10011110111111 re-enlistment 3 -10011110111111 scrollwork 3 -10011110111111 mark- 3 -10011110111111 seven- 3 -10011110111111 manicures 3 -10011110111111 salmonellosis 3 -10011110111111 punkers 3 -10011110111111 merriment 3 -10011110111111 Collierville 3 -10011110111111 Hanaspur 3 -10011110111111 non-customer 3 -10011110111111 Coconuts 3 -10011110111111 piranha 4 -10011110111111 conflicts-of-interest 4 -10011110111111 dallying 4 -10011110111111 gun-running 4 -10011110111111 RSV 4 -10011110111111 nickeling 4 -10011110111111 spittoons 4 -10011110111111 calluses 4 -10011110111111 headscarf 4 -10011110111111 snowdrifts 4 -10011110111111 name-dropping 4 -10011110111111 Keynesianism 4 -10011110111111 mother-of-pearl 4 -10011110111111 courtships 4 -10011110111111 jots 5 -10011110111111 MacBasic 5 -10011110111111 ooh 5 -10011110111111 licit 5 -10011110111111 moi 5 -10011110111111 elves 5 -10011110111111 underfunding 5 -10011110111111 mimicry 5 -10011110111111 hoes 5 -10011110111111 redeemability 5 -10011110111111 khakis 5 -10011110111111 canes 5 -10011110111111 biologic 5 -10011110111111 baccarat 5 -10011110111111 jealousies 5 -10011110111111 Voyagers 5 -10011110111111 wastebaskets 5 -10011110111111 polygamy 6 -10011110111111 Eatsco 6 -10011110111111 oxidation 6 -10011110111111 fryers 6 -10011110111111 backaches 6 -10011110111111 autarky 6 -10011110111111 shimmy 6 -10011110111111 19- 6 -10011110111111 pails 6 -10011110111111 Skull 6 -10011110111111 skyboxes 6 -10011110111111 over-regulation 6 -10011110111111 tam 6 -10011110111111 lepers 7 -10011110111111 turrets 7 -10011110111111 muggings 7 -10011110111111 repossessions 7 -10011110111111 ringleaders 7 -10011110111111 comings 7 -10011110111111 de-industrialization 7 -10011110111111 chlordane 7 -10011110111111 self-expression 7 -10011110111111 oohs 7 -10011110111111 digitalis 7 -10011110111111 vacillation 7 -10011110111111 waterproofing 7 -10011110111111 lawbreaking 7 -10011110111111 seaports 7 -10011110111111 multitasking 7 -10011110111111 treadmills 7 -10011110111111 law-breaking 8 -10011110111111 saccharin 8 -10011110111111 cremation 8 -10011110111111 Engraving 8 -10011110111111 Anthropology 8 -10011110111111 groin 8 -10011110111111 wining 8 -10011110111111 huffing 8 -10011110111111 non-discrimination 8 -10011110111111 heartbreak 8 -10011110111111 underwithholding 8 -10011110111111 sleet 8 -10011110111111 strikebreakers 9 -10011110111111 back-scratching 9 -10011110111111 trespass 9 -10011110111111 guilds 9 -10011110111111 disorganization 9 -10011110111111 equalization 9 -10011110111111 improvising 9 -10011110111111 drug-running 9 -10011110111111 guile 10 -10011110111111 arms-smuggling 10 -10011110111111 self-sacrifice 10 -10011110111111 multiplication 10 -10011110111111 obfuscation 10 -10011110111111 Mellaril 10 -10011110111111 botulism 10 -10011110111111 maquiladoras 10 -10011110111111 gluttony 10 -10011110111111 lupus 10 -10011110111111 make-goods 10 -10011110111111 pilferage 11 -10011110111111 immorality 11 -10011110111111 tarring 11 -10011110111111 Judea 11 -10011110111111 Marlboros 11 -10011110111111 mail- 11 -10011110111111 megamergers 11 -10011110111111 phobias 11 -10011110111111 overconsumption 11 -10011110111111 franking 11 -10011110111111 butane 11 -10011110111111 comp 11 -10011110111111 irrationality 12 -10011110111111 sodomy 12 -10011110111111 causation 12 -10011110111111 collectivism 12 -10011110111111 Obstetricians 12 -10011110111111 boron 12 -10011110111111 cease-fires 12 -10011110111111 pomp 12 -10011110111111 interrogations 13 -10011110111111 tardiness 14 -10011110111111 six- 14 -10011110111111 price-gouging 14 -10011110111111 sawdust 14 -10011110111111 safekeeping 15 -10011110111111 second- 15 -10011110111111 sofas 15 -10011110111111 four- 15 -10011110111111 sedition 15 -10011110111111 Oraflex 16 -10011110111111 portability 16 -10011110111111 small- 18 -10011110111111 mutilation 18 -10011110111111 cowardice 19 -10011110111111 topsoil 20 -10011110111111 nondiscrimination 20 -10011110111111 stabilizers 20 -10011110111111 lockouts 21 -10011110111111 statesmanship 21 -10011110111111 shoplifting 21 -10011110111111 transparency 21 -10011110111111 regression 22 -10011110111111 vinegar 23 -10011110111111 cronyism 23 -10011110111111 obedience 24 -10011110111111 wiretapping 24 -10011110111111 mischarging 24 -10011110111111 malfeasance 25 -10011110111111 Eurodollars 25 -10011110111111 malnutrition 25 -10011110111111 wheeling 28 -10011110111111 contagion 29 -10011110111111 short- 29 -10011110111111 burden-sharing 29 -10011110111111 anthrax 29 -10011110111111 statehood 29 -10011110111111 authoritarianism 31 -10011110111111 uniformity 31 -10011110111111 profanity 32 -10011110111111 hue 32 -10011110111111 polluters 32 -10011110111111 manslaughter 33 -10011110111111 civility 35 -10011110111111 deliberation 35 -10011110111111 vandalism 35 -10011110111111 Allergy 35 -10011110111111 plagiarism 35 -10011110111111 adultery 36 -10011110111111 forgery 36 -10011110111111 arm-twisting 38 -10011110111111 nausea 38 -10011110111111 profiteering 40 -10011110111111 disinflation 40 -10011110111111 arson 45 -10011110111111 fidelity 46 -10011110111111 starvation 47 -10011110111111 leakage 47 -10011110111111 deceit 47 -10011110111111 dementia 48 -10011110111111 treason 49 -10011110111111 homicide 49 -10011110111111 defamation 52 -10011110111111 decency 55 -10011110111111 firearms 56 -10011110111111 disinvestment 58 -10011110111111 self-dealing 60 -10011110111111 euthanasia 66 -10011110111111 risk-taking 68 -10011110111111 obscenity 70 -10011110111111 hospitalization 76 -10011110111111 coercion 76 -10011110111111 forfeiture 78 -10011110111111 misrepresentation 83 -10011110111111 influence-peddling 84 -10011110111111 robbery 89 -10011110111111 extortion 101 -10011110111111 price-cutting 104 -10011110111111 bid-rigging 105 -10011110111111 rollover 105 -10011110111111 spying 105 -10011110111111 front-running 110 -10011110111111 toxicity 111 -10011110111111 ups 121 -10011110111111 embezzlement 127 -10011110111111 intimidation 130 -10011110111111 imprisonment 130 -10011110111111 moisture 133 -10011110111111 rape 141 -10011110111111 price-fixing 141 -10011110111111 short-covering 149 -10011110111111 foreclosure 170 -10011110111111 hunger 178 -10011110111111 perjury 181 -10011110111111 cheating 190 -10011110111111 seniority 197 -10011110111111 misconduct 222 -10011110111111 negligence 230 -10011110111111 mismanagement 234 -10011110111111 probation 246 -10011110111111 bribery 283 -10011110111111 suicide 297 -10011110111111 malpractice 315 -10011110111111 secrecy 327 -10011110111111 theft 367 -10011110111111 taxation 430 -10011110111111 RICO 451 -10011110111111 racketeering 513 -10011110111111 injury 597 -10011110111111 corruption 675 -10011110111111 conspiracy 943 -10011110111111 justice 1003 -10011110111111 smoking 1022 -10011110111111 deposit 1561 -10011110111111 mergers 1701 -10011110111111 liability 2073 -10011110111111 fraud 3142 -10011110111111 savings 4196 -100111110000 floating-interest 1 -100111110000 department-set 1 -100111110000 greenhouse-grown 1 -100111110000 market/GNP 1 -100111110000 garbage-collection 1 -100111110000 exchange-trading 1 -100111110000 40-mph 1 -100111110000 principal-repayment 1 -100111110000 coupon-reinvestment 1 -100111110000 debt-to-exports 1 -100111110000 trade-after 1 -100111110000 conveners 1 -100111110000 foliage-area 1 -100111110000 curtain-raisers 1 -100111110000 PORTUGAL 1 -100111110000 commonstock 1 -100111110000 manipulationan 1 -100111110000 options-buying 1 -100111110000 enthusiam 1 -100111110000 solid-chocolate 1 -100111110000 70-mm 1 -100111110000 Wheatcroft 1 -100111110000 two-set 1 -100111110000 best-of-three-set 1 -100111110000 most-recommended-issues 1 -100111110000 currencies-at 1 -100111110000 Cophenhagen 1 -100111110000 800-meter-and-over 1 -100111110000 computer-activated 1 -100111110000 end-of-aisle 1 -100111110000 market-exchange 1 -100111110000 investment. 2 -100111110000 credit-creation 2 -100111110000 1,375 2 -100111110000 Towles 2 -100111110000 mainframe-software 2 -100111110000 Jidda 3 -100111110000 gravestone 3 -100111110000 timekeeper 3 -100111110000 1,648,000 3 -100111110000 T-bonds 3 -100111110000 repurchase-agreement 11 -100111110000 interbank-offered 13 -100111110000 exchange 12623 -100111110000 IPO 60 -1001111100010 715.16 1 -1001111100010 578,748 1 -1001111100010 fund-administered 1 -1001111100010 military-trained 1 -1001111100010 Thunderbird/Cougar 1 -1001111100010 gold-fund 1 -1001111100010 office-technology 1 -1001111100010 small-money 1 -1001111100010 portfolio-analysis 1 -1001111100010 ceritifcates 1 -1001111100010 funds-one 1 -1001111100010 companiess 1 -1001111100010 futures-fund 1 -1001111100010 once-cosseted 1 -1001111100010 equity-broking 1 -1001111100010 equity-brokerage 1 -1001111100010 out-year 2 -1001111100010 non-recognition 2 -1001111100010 computer-shy 2 -1001111100010 Altemus 2 -1001111100010 Itkol 2 -1001111100010 safety-conscious 2 -1001111100010 fund-owned 2 -1001111100010 Palestinian-American 2 -1001111100010 mutualfund 3 -1001111100010 UMOPAR 3 -1001111100010 funds-excluding 3 -1001111100010 Renthals 3 -1001111100010 USBCs 4 -1001111100010 Ohioan 4 -1001111100010 barbecue-sauce 5 -1001111100010 paysop 5 -1001111100010 Harrania 5 -1001111100010 fund 9183 -1001111100010 NYSE 147 -1001111100011 flagsticks 1 -1001111100011 noires 1 -1001111100011 penefits 1 -1001111100011 self-renewal 1 -1001111100011 emnity 1 -1001111100011 27,035 1 -1001111100011 regulatons 1 -1001111100011 head-banging 1 -1001111100011 derogations 1 -1001111100011 business-mileage 1 -1001111100011 aerials 1 -1001111100011 non-buying 1 -1001111100011 hyper-velocity 1 -1001111100011 litanies 1 -1001111100011 buyershave 1 -1001111100011 gorup 2 -1001111100011 foreplay 2 -1001111100011 rights. 2 -1001111100011 135.78 2 -1001111100011 Deadeye 2 -1001111100011 reversers 3 -1001111100011 timecards 3 -1001111100011 Brownies 3 -1001111100011 penetrations 3 -1001111100011 raters 4 -1001111100011 Kalashnikovs 6 -1001111100011 money. 7 -1001111100011 recrimination 8 -1001111100011 causeways 10 -1001111100011 Stingers 58 -1001111100011 funds 15885 -1001111100011 monies 59 -1001111100100 olefin 1 -1001111100100 slower-than-usual 1 -1001111100100 sexual-orientation 1 -1001111100100 telepathically 1 -1001111100100 fourth-inning 1 -1001111100100 pork-type 1 -1001111100100 mother-to-be 1 -1001111100100 tax-money 1 -1001111100100 dog. 1 -1001111100100 anti-obscenity 1 -1001111100100 Lubbers-Ruding 1 -1001111100100 property-based 1 -1001111100100 IvecoFord 1 -1001111100100 religion-based 1 -1001111100100 videotape-processing 1 -1001111100100 black-made 1 -1001111100100 shorthaul 1 -1001111100100 limit-busting 1 -1001111100100 hailstone-hurling 1 -1001111100100 stock-divestment 1 -1001111100100 captial 1 -1001111100100 backlot 1 -1001111100100 capital-like 1 -1001111100100 1972-1973 1 -1001111100100 nonfinancial-business 1 -1001111100100 bullion-price 1 -1001111100100 2,324 1 -1001111100100 capitial 1 -1001111100100 farmland-price 1 -1001111100100 ermal 1 -1001111100100 defense-industrial 1 -1001111100100 palm-trees. 1 -1001111100100 nonhousing-related 1 -1001111100100 HMX 1 -1001111100100 farm-wage 1 -1001111100100 captal 1 -1001111100100 clerical-secretarial 1 -1001111100100 intellectual/philosophical 1 -1001111100100 tax-derived 1 -1001111100100 audience-share 1 -1001111100100 2,077 1 -1001111100100 pre-natal-care 1 -1001111100100 900,000-share 1 -1001111100100 Afro-funky 1 -1001111100100 Sun-based 1 -1001111100100 softheaded 1 -1001111100100 home-produced 1 -1001111100100 Depression-weakened 1 -1001111100100 newspaper-advertising 1 -1001111100100 airline-rating 1 -1001111100100 food-labeling 1 -1001111100100 less-than-anticipated 1 -1001111100100 plant-operating 1 -1001111100100 month-over-month 1 -1001111100100 pugilistic 1 -1001111100100 disorientedly 1 -1001111100100 value-conscious 1 -1001111100100 real-estate-sales 1 -1001111100100 sausage-in-waiting 1 -1001111100100 manufacturing-job 1 -1001111100100 body-builder 1 -1001111100100 4,777,872 1 -1001111100100 dead. 1 -1001111100100 winningly 1 -1001111100100 anti-productive 1 -1001111100100 pay-and-benefit 1 -1001111100100 inflation-based 1 -1001111100100 smokestack-height 1 -1001111100100 fund-valuation 1 -1001111100100 stiffnecked 1 -1001111100100 16.43-point 1 -1001111100100 doper 1 -1001111100100 commercial-goods 1 -1001111100100 folding-chair 1 -1001111100100 extra-fat 1 -1001111100100 intervention-speeded 1 -1001111100100 deficit-financed 1 -1001111100100 ash- 1 -1001111100100 labor-camp 2 -1001111100100 independent-TV 2 -1001111100100 already-inexpensive 2 -1001111100100 leggings 2 -1001111100100 crop-saving 2 -1001111100100 business-investment 2 -1001111100100 policy-writing 2 -1001111100100 current-cash 2 -1001111100100 unit-volume 3 -1001111100100 shrimping 3 -1001111100100 marketmaking 3 -1001111100100 gas-price 3 -1001111100100 bank-capital 3 -1001111100100 opening-price 3 -1001111100100 ramrod 3 -1001111100100 citrus-fruit 3 -1001111100100 once-a-month 4 -1001111100100 personal-consumption 4 -1001111100100 trade-financing 4 -1001111100100 ovations 6 -1001111100100 capital-to-asset 6 -1001111100100 OASDI 6 -1001111100100 usury 7 -1001111100100 Queensberry 7 -1001111100100 per-pupil 8 -1001111100100 plant-and-equipment 10 -1001111100100 trade-processing 17 -1001111100100 capital 13598 -1001111100100 ovation 50 -10011111001010 ton-a-year 1 -10011111001010 retail-sugar 1 -10011111001010 rule-by-whim 1 -10011111001010 strict-constructionist 1 -10011111001010 anti-Quayle 1 -10011111001010 U.S./Canadian 1 -10011111001010 Exclusivity 1 -10011111001010 less-than-overwhelmingly 1 -10011111001010 contraceptive-pill 1 -10011111001010 Binghams 1 -10011111001010 government-research 1 -10011111001010 phone-gear 1 -10011111001010 INVALIDATED 1 -10011111001010 attorney. 1 -10011111001010 EnviroSpray 1 -10011111001010 food-business 1 -10011111001010 ADVISER 1 -10011111001010 Timepieces 1 -10011111001010 oil-drilling-equipment 1 -10011111001010 innovatively 1 -10011111001010 price-destabilizing 1 -10011111001010 already-heated 1 -10011111001010 cotton-sheeting 1 -10011111001010 WRBQ 1 -10011111001010 uppermiddle 1 -10011111001010 electric-sunroof 1 -10011111001010 Singverein 1 -10011111001010 Brocksmiths 1 -10011111001010 bridal-boutique 1 -10011111001010 automatic-equity 1 -10011111001010 italix 1 -10011111001010 3,978 1 -10011111001010 space-software 1 -10011111001010 commercial-liability 1 -10011111001010 electric-range 1 -10011111001010 rail-equipment 1 -10011111001010 public-procurement 1 -10011111001010 orange-drink 1 -10011111001010 intro-EMS 1 -10011111001010 auto-production 1 -10011111001010 Donsbachs 1 -10011111001010 based-CAE 1 -10011111001010 automotive-repair 1 -10011111001010 Batallion-2000 1 -10011111001010 Tekko 1 -10011111001010 tax-dollar 1 -10011111001010 handwasher 1 -10011111001010 chilled-food 1 -10011111001010 derecognition 1 -10011111001010 bargaining-chip 1 -10011111001010 Kooperitief 1 -10011111001010 U.K.-Japan 1 -10011111001010 ground-coffee 2 -10011111001010 ACV 2 -10011111001010 Campuses 2 -10011111001010 neuroscience 2 -10011111001010 next-day-delivery 2 -10011111001010 military-loan 2 -10011111001010 food-canning 2 -10011111001010 franc-dollar 2 -10011111001010 foreign-lent 2 -10011111001010 Brezhnevism 2 -10011111001010 military-simulation 2 -10011111001010 separationists 2 -10011111001010 international-equity 2 -10011111001010 anti-Japan 2 -10011111001010 product-market 2 -10011111001010 stock-portfolio 2 -10011111001010 vexation 2 -10011111001010 digital-switch 2 -10011111001010 Ameh-sha 2 -10011111001010 marinade 2 -10011111001010 Union-busting 2 -10011111001010 keyhole 3 -10011111001010 options-related 3 -10011111001010 Canadian-U.S. 3 -10011111001010 PC-1512 4 -10011111001010 Prefecture 4 -10011111001010 interest-rates 5 -10011111001010 Eurocurrency 6 -10011111001010 coastlines 7 -10011111001010 expressionist 9 -10011111001010 Comdex 13 -10011111001010 Leipzig 13 -10011111001010 Borax 28 -10011111001010 Pact 278 -10011111001010 interbank 507 -10011111001010 sterling 575 -10011111001010 equities 1006 -10011111001010 foreign-exchange 1235 -10011111001010 currency 6637 -10011111001010 merchandise 1430 -10011111001011 3,484,000-share 1 -10011111001011 fiberglass-fabric 1 -10011111001011 930,000-share 1 -10011111001011 non-selling 1 -10011111001011 let's-talk-up-the-market 1 -10011111001011 recently-promulgated 1 -10011111001011 572,500-share 1 -10011111001011 movskaya 1 -10011111001011 U.S.-Japan-Europe 1 -10011111001011 vehicle-production 1 -10011111001011 oil-output 1 -10011111001011 wingmen 1 -10011111001011 Ryad-el-Feth 1 -10011111001011 grandparental 1 -10011111001011 eightpager 1 -10011111001011 456,900-share 1 -10011111001011 equity-asset 1 -10011111001011 late-14th-century 1 -10011111001011 outstanding.The 1 -10011111001011 corporate-spending 1 -10011111001011 24-million-share 1 -10011111001011 -floor 1 -10011111001011 industrial-customer 1 -10011111001011 voter-redistricting 1 -10011111001011 once-significant 1 -10011111001011 steel-wool 1 -10011111001011 pro-farmer 1 -10011111001011 technical-research 1 -10011111001011 corporate-operations 1 -10011111001011 offensive-line 1 -10011111001011 and-or 1 -10011111001011 medical-community 1 -10011111001011 buy-now 1 -10011111001011 750-share 1 -10011111001011 Guthire 1 -10011111001011 814,000-square-foot 1 -10011111001011 market-weary 1 -10011111001011 capital-timber 1 -10011111001011 coal-seam-gas 1 -10011111001011 life-of-contracts 1 -10011111001011 stock-purchasing 1 -10011111001011 asset-disposition 2 -10011111001011 cross-company 2 -10011111001011 diviner 2 -10011111001011 25-6 2 -10011111001011 ex-head 2 -10011111001011 Value-Line 2 -10011111001011 trade-up 2 -10011111001011 casework 2 -10011111001011 1,345 2 -10011111001011 top-rate 2 -10011111001011 250-point 2 -10011111001011 commonshare 2 -10011111001011 Moncada 2 -10011111001011 TechSym 2 -10011111001011 cataloguing 2 -10011111001011 long-dollar 3 -10011111001011 rate-relief 3 -10011111001011 Countermeasures 3 -10011111001011 food-sector 3 -10011111001011 melamine 4 -10011111001011 common-equity 4 -10011111001011 inestimable 4 -10011111001011 ergonomics 5 -10011111001011 equity-conversion 5 -10011111001011 tariff-free 6 -10011111001011 consumer-loan 11 -10011111001011 paid-in 12 -10011111001011 off-market 15 -10011111001011 eternity 29 -10011111001011 stock-ownership 53 -10011111001011 evacuation 229 -10011111001011 fixed-income 659 -10011111001011 ownership 2840 -10011111001011 equity 6355 -1001111100110 inventory-keeping 1 -1001111100110 OV-1 1 -1001111100110 corporate-equity 1 -1001111100110 commission-approved 1 -1001111100110 share-sale 1 -1001111100110 lawyer-rainmakers 1 -1001111100110 debentureholders 1 -1001111100110 bibliographical 1 -1001111100110 partowned 1 -1001111100110 supervisers 1 -1001111100110 tightly-priced 1 -1001111100110 contra-bonds 1 -1001111100110 85-cent-a-bushel 1 -1001111100110 Banespa 1 -1001111100110 once-a-week 1 -1001111100110 1,137,541 1 -1001111100110 income-subsidy 1 -1001111100110 receivable-related 1 -1001111100110 property-specific 1 -1001111100110 War-related 1 -1001111100110 get-out-of-my-way 1 -1001111100110 viablity 1 -1001111100110 holdingcompany 1 -1001111100110 neutrino 1 -1001111100110 broadcasting-service 1 -1001111100110 solubility 1 -1001111100110 tax-research 1 -1001111100110 titleholders 2 -1001111100110 problem-drinking 2 -1001111100110 Self-Esteem 2 -1001111100110 competition. 2 -1001111100110 Jno 2 -1001111100110 fussiness 2 -1001111100110 chronic-care 2 -1001111100110 pre-announced 2 -1001111100110 reconquest 2 -1001111100110 parleys 2 -1001111100110 records-keeping 3 -1001111100110 pendants 3 -1001111100110 federal-employee 3 -1001111100110 1,415 3 -1001111100110 coiling 3 -1001111100110 communications. 3 -1001111100110 vocational-education 3 -1001111100110 OIRA 4 -1001111100110 conviviality 4 -1001111100110 cha-cha 4 -1001111100110 subordinated-debt 7 -1001111100110 Ridgecrest 7 -1001111100110 problem-loan 7 -1001111100110 U.S.-mediated 8 -1001111100110 senior-debt 10 -1001111100110 Eurodebt 25 -1001111100110 bank-debt 25 -1001111100110 indebtedness 119 -1001111100110 debt 22878 -10011111001110 cooperative-production 1 -10011111001110 residential-servicing 1 -10011111001110 whoopie 1 -10011111001110 piscatorial 1 -10011111001110 economic-performance 1 -10011111001110 technology-production 1 -10011111001110 insider-buying 1 -10011111001110 non-distributed 1 -10011111001110 anti-teen 1 -10011111001110 slim-trim-and-full-of-vim 1 -10011111001110 gypsum-products 1 -10011111001110 firm-structured 1 -10011111001110 wins-55 1 -10011111001110 domesitc 1 -10011111001110 home-sale 1 -10011111001110 nonbonus 1 -10011111001110 energy-loan 1 -10011111001110 export-monitoring 1 -10011111001110 subsistence-level 1 -10011111001110 post-lunch 1 -10011111001110 same-stores 1 -10011111001110 freewayside 1 -10011111001110 Todorovich 1 -10011111001110 domestic-concentrated 1 -10011111001110 Kundruhns 1 -10011111001110 charter-business 1 -10011111001110 radar-receiver 1 -10011111001110 family-support 1 -10011111001110 quasi-extortionary 1 -10011111001110 rust-prone 1 -10011111001110 34-cents-a-share 1 -10011111001110 new-stadium 1 -10011111001110 hand-and-brush 1 -10011111001110 exchange-of-knowledge 1 -10011111001110 inflation-hedging 1 -10011111001110 all-employee 1 -10011111001110 7,000-share-a-day 1 -10011111001110 10,936 1 -10011111001110 dollar-income 1 -10011111001110 capital-coverage 1 -10011111001110 output-restricting 1 -10011111001110 tobacco-division 1 -10011111001110 2,000-zloty 1 -10011111001110 entertainment-based 1 -10011111001110 counter-trade 2 -10011111001110 bomb-making 2 -10011111001110 fire-rescue 2 -10011111001110 presummit 2 -10011111001110 horniness 2 -10011111001110 direct-rent 2 -10011111001110 final-status 2 -10011111001110 fattens 2 -10011111001110 phasedown 2 -10011111001110 more-frequent 2 -10011111001110 food-growing 2 -10011111001110 customer-contact 2 -10011111001110 benefit-fund 2 -10011111001110 semiconductor-chip 2 -10011111001110 re-lection 2 -10011111001110 superconductivity-patent 2 -10011111001110 low-volatility 2 -10011111001110 capital-expenditure 2 -10011111001110 pot-smoking 2 -10011111001110 Vortex 2 -10011111001110 off-book 2 -10011111001110 foreign-payoff 2 -10011111001110 building-height 2 -10011111001110 six-bank 3 -10011111001110 loan-to-capital 3 -10011111001110 disaster-assistance 3 -10011111001110 investment-securities 3 -10011111001110 income-aiding 3 -10011111001110 operability 3 -10011111001110 Beechjet 3 -10011111001110 pensionfund 3 -10011111001110 PX 4 -10011111001110 business-interruption 4 -10011111001110 tillage 4 -10011111001110 certificate-of-deposit 4 -10011111001110 collateralization 4 -10011111001110 before-tax 5 -10011111001110 headcount 5 -10011111001110 job-retraining 5 -10011111001110 Zapmail 6 -10011111001110 return-on-investment 6 -10011111001110 economic-aid 6 -10011111001110 credit-line 6 -10011111001110 new-loan 7 -10011111001110 dartboard 7 -10011111001110 currency-translation 7 -10011111001110 farm-support 8 -10011111001110 mortgage-loan 8 -10011111001110 farm-loan 9 -10011111001110 sweatshop 9 -10011111001110 export-financing 9 -10011111001110 remarriage 10 -10011111001110 SUB 11 -10011111001110 income-protection 11 -10011111001110 job-creation 12 -10011111001110 consumer-lending 13 -10011111001110 bank-loan 13 -10011111001110 mortgage-servicing 14 -10011111001110 loan-servicing 14 -10011111001110 income-support 15 -10011111001110 economic-adjustment 16 -10011111001110 home-loan 18 -10011111001110 currency-exchange 22 -10011111001110 securities-repurchase 24 -10011111001110 securities-trading 25 -10011111001110 export-credit 34 -10011111001110 take-home 40 -10011111001110 bond-trading 49 -10011111001110 origination 56 -10011111001110 CD 434 -10011111001110 severance 485 -10011111001110 loan 6621 -10011111001110 lending 2651 -10011111001111 Japanese-bond 1 -10011111001111 futures-index 1 -10011111001111 curling-iron 1 -10011111001111 semi-western 1 -10011111001111 714,190 1 -10011111001111 oncogenic 1 -10011111001111 15-year-term 1 -10011111001111 14,850,000 1 -10011111001111 constrictor-like 1 -10011111001111 656,000 1 -10011111001111 SL1 1 -10011111001111 13,667 1 -10011111001111 1,611,000 1 -10011111001111 electronic-transfer 1 -10011111001111 15,518,000 1 -10011111001111 Reagan-Gatsby 1 -10011111001111 run-pass 1 -10011111001111 electronic-scanning 1 -10011111001111 K1 1 -10011111001111 DN500 1 -10011111001111 6,770,020 1 -10011111001111 345,000-volt 1 -10011111001111 stapling-product 1 -10011111001111 left-stick 1 -10011111001111 animated-bear 1 -10011111001111 claims-paying-ability 1 -10011111001111 700-mark 1 -10011111001111 disposable-equipment 1 -10011111001111 irrational-market 1 -10011111001111 Ray-Ban 1 -10011111001111 hot-forging 1 -10011111001111 no-compromise-with-the-imperialists 1 -10011111001111 11,980 1 -10011111001111 4x5 1 -10011111001111 customer-group 1 -10011111001111 ethane-extraction 1 -10011111001111 Anderson-run 1 -10011111001111 151,617 1 -10011111001111 Toon/non-Toon 1 -10011111001111 oldgrowth 1 -10011111001111 2200-600 1 -10011111001111 1,086,000 1 -10011111001111 1,436,000 1 -10011111001111 outdoor-product 1 -10011111001111 sometimes-sloppy 1 -10011111001111 chocolate-cake-mix 1 -10011111001111 voice-only 1 -10011111001111 state-engineered 1 -10011111001111 once-well-defined 1 -10011111001111 B-a-3 1 -10011111001111 A-1plus 1 -10011111001111 Stab-Lok 1 -10011111001111 owner-satisfaction 1 -10011111001111 pencil-like 1 -10011111001111 213-mile 1 -10011111001111 post-Series 1 -10011111001111 A-containing 1 -10011111001111 left-nationalist 1 -10011111001111 off-speed 1 -10011111001111 Lanterns 1 -10011111001111 14,534 1 -10011111001111 machinery-making 1 -10011111001111 positive-negative 1 -10011111001111 silicon-carbide 1 -10011111001111 two-driver 1 -10011111001111 1,200-square-foot 1 -10011111001111 22,700-ton 1 -10011111001111 micro-cogeneration 1 -10011111001111 Service/2 1 -10011111001111 Back-end 1 -10011111001111 smoking-gun 1 -10011111001111 D.C.-Maryland 1 -10011111001111 19-yard 1 -10011111001111 3-by-5-inch 1 -10011111001111 Nopco 1 -10011111001111 food-ration 1 -10011111001111 22,434 1 -10011111001111 studio-management 1 -10011111001111 IBM-compatibility 1 -10011111001111 1,806,000 1 -10011111001111 pimps-and-bankers 1 -10011111001111 18,700-square-foot 1 -10011111001111 otherwise-anemic 1 -10011111001111 Citicorp-issued 1 -10011111001111 industry/government/residents 1 -10011111001111 four-share 1 -10011111001111 don't-worry 1 -10011111001111 field-hockey 1 -10011111001111 anti-Wilson 1 -10011111001111 700-seat 1 -10011111001111 helicopter-assembly 1 -10011111001111 solvent-extraction-electrowinning 1 -10011111001111 natural-ingredient 1 -10011111001111 nonpharmaceutical 1 -10011111001111 900-foot 1 -10011111001111 185-mile 1 -10011111001111 Philadelphia-to-Pittsburgh 1 -10011111001111 eight-model 1 -10011111001111 new-contract 1 -10011111001111 acupunctural 1 -10011111001111 7,300-pound 1 -10011111001111 gas-miser 1 -10011111001111 aircraft-brake 1 -10011111001111 6,058,635 1 -10011111001111 non-hologramed 1 -10011111001111 job-for-job 1 -10011111001111 aircraft-purchase 1 -10011111001111 steelpipe 1 -10011111001111 300-mark 1 -10011111001111 433,300 1 -10011111001111 contraceptive-products 1 -10011111001111 higher-strength 1 -10011111001111 safety-instruction 1 -10011111001111 domestic-route 1 -10011111001111 photo-I.D. 1 -10011111001111 aluminum-coil-production 1 -10011111001111 nuclear-fossil 1 -10011111001111 direction-finding 1 -10011111001111 truth-is-stranger 1 -10011111001111 fluty 1 -10011111001111 nonsupermarket 1 -10011111001111 one-yard 1 -10011111001111 36-yard 1 -10011111001111 helium-distribution 1 -10011111001111 cash-dispenser 1 -10011111001111 pre-SB 1 -10011111001111 1,802,000 1 -10011111001111 95-yard 1 -10011111001111 boil-in 1 -10011111001111 af 1 -10011111001111 desireable 1 -10011111001111 3,565,000 1 -10011111001111 duffle 1 -10011111001111 four-player 1 -10011111001111 three-by-five 1 -10011111001111 bells-and-whistles 1 -10011111001111 gear-reduction 1 -10011111001111 five-doll 1 -10011111001111 non-greeting 1 -10011111001111 1,093,000 1 -10011111001111 highest-profit 1 -10011111001111 548,273 1 -10011111001111 536,158 1 -10011111001111 528,420 1 -10011111001111 kibbutz-made 1 -10011111001111 Aries/Reliant 1 -10011111001111 1,416,000 1 -10011111001111 marine-safety 1 -10011111001111 helicopter-company 1 -10011111001111 132-pound 1 -10011111001111 almost-good-as-new 1 -10011111001111 five-row 1 -10011111001111 yuppie-looking 1 -10011111001111 Tarot-like 1 -10011111001111 417,00 1 -10011111001111 278,230 1 -10011111001111 7,780 1 -10011111001111 summit-time 1 -10011111001111 smaller-engine 1 -10011111001111 clown-white 1 -10011111001111 charged-particle 1 -10011111001111 franchising-related 1 -10011111001111 J-953 1 -10011111001111 now-fluid 1 -10011111001111 16-yard 1 -10011111001111 safedeposit 1 -10011111001111 461,340 1 -10011111001111 Aa 1 -10011111001111 court-compelled 1 -10011111001111 146,900 1 -10011111001111 Paraguaya 1 -10011111001111 71,280 1 -10011111001111 residential-plumbing 1 -10011111001111 6,461 1 -10011111001111 kitchen-range 1 -10011111001111 not-Prime 1 -10011111001111 nondistribution 1 -10011111001111 1,402,000 1 -10011111001111 Paris-held 1 -10011111001111 aluminum-producing 1 -10011111001111 284,914 1 -10011111001111 large-car 1 -10011111001111 3,800-horsepower 1 -10011111001111 107,166 1 -10011111001111 committee-assignment 1 -10011111001111 cyclamate 1 -10011111001111 insurance-fund 1 -10011111001111 apronlike 1 -10011111001111 Dellums-Jackson 1 -10011111001111 single-B-Minus 1 -10011111001111 stump-speech 1 -10011111001111 gab-party 1 -10011111001111 non-housing 1 -10011111001111 already-glutted 1 -10011111001111 world-currency 1 -10011111001111 1,089,000 1 -10011111001111 102,929 1 -10011111001111 reinbursement 1 -10011111001111 package-handling 1 -10011111001111 computer-and-semiconductor 1 -10011111001111 personneltest 1 -10011111001111 travelers-aid 1 -10011111001111 dollars-for-data 1 -10011111001111 39-mile 1 -10011111001111 all-girl 1 -10011111001111 refrigerated-food 1 -10011111001111 X-Acto 1 -10011111001111 Frostar 1 -10011111001111 120-car 1 -10011111001111 waste-composting 1 -10011111001111 1,267,000 1 -10011111001111 standard-body 1 -10011111001111 hitting-pitching 1 -10011111001111 MoneyCard-issued 1 -10011111001111 cholesterol-screening 1 -10011111001111 distinctive-looking 1 -10011111001111 550-mile 1 -10011111001111 fought-for 1 -10011111001111 van-sized 1 -10011111001111 bacteria-contaminated 1 -10011111001111 too-few 1 -10011111001111 paint-recycling 1 -10011111001111 30-by-30 1 -10011111001111 Ziari 1 -10011111001111 9,504 1 -10011111001111 Biore 1 -10011111001111 351,700 1 -10011111001111 576,134 1 -10011111001111 securities-parking 2 -10011111001111 information-products 2 -10011111001111 26-yard 2 -10011111001111 325e 2 -10011111001111 E10 2 -10011111001111 Miskito-Creole 2 -10011111001111 Ellaville 2 -10011111001111 business-plane 2 -10011111001111 five-yard 2 -10011111001111 Sancel 2 -10011111001111 technology-development 2 -10011111001111 favorable-unfavorable 2 -10011111001111 asset-valuation 2 -10011111001111 tarot 2 -10011111001111 Nakfa 2 -10011111001111 System/370 2 -10011111001111 apples-to-oranges 2 -10011111001111 7,520,000 2 -10011111001111 Speedring 2 -10011111001111 1,384,000 2 -10011111001111 fee-charging 2 -10011111001111 garbage-treatment 2 -10011111001111 seven-yard 2 -10011111001111 Cardene 2 -10011111001111 439,968 2 -10011111001111 PSX/200 2 -10011111001111 SP-1 2 -10011111001111 pH 2 -10011111001111 three-machine 2 -10011111001111 MFN 2 -10011111001111 production-restraint 2 -10011111001111 R1 2 -10011111001111 A001R/A008R 2 -10011111001111 Filenes 2 -10011111001111 weather-radar 2 -10011111001111 Pro-Specs 2 -10011111001111 big-three 2 -10011111001111 1,489,000 2 -10011111001111 sheet-coating 2 -10011111001111 1,590,000 2 -10011111001111 magnetic-stripped 2 -10011111001111 Nazca 3 -10011111001111 1,095,000 3 -10011111001111 right-left 3 -10011111001111 snappier 3 -10011111001111 10-yard 3 -10011111001111 EI 3 -10011111001111 7UP 3 -10011111001111 68-ounce 3 -10011111001111 condolence 3 -10011111001111 1,377,000 3 -10011111001111 Selectives 3 -10011111001111 widescale 3 -10011111001111 Ramis 3 -10011111001111 Taurus-Sable 3 -10011111001111 pickling 3 -10011111001111 DECstation 3 -10011111001111 favorable/unfavorable 3 -10011111001111 PET 3 -10011111001111 fuel-mileage 3 -10011111001111 Bartenders 4 -10011111001111 Sybervision 4 -10011111001111 anti-corporate 4 -10011111001111 HBI 4 -10011111001111 Armadillo 4 -10011111001111 Euronote 5 -10011111001111 check-off 5 -10011111001111 50-yard 5 -10011111001111 job-approval 5 -10011111001111 work-authorization 5 -10011111001111 duffel 5 -10011111001111 two-yard 5 -10011111001111 16-ounce 5 -10011111001111 customer-satisfaction 5 -10011111001111 bank-credit 5 -10011111001111 Mason-Dixon 6 -10011111001111 semi-Western 6 -10011111001111 Batan 6 -10011111001111 letter-of-credit 6 -10011111001111 adaptor 6 -10011111001111 favorability 7 -10011111001111 Manager-based 7 -10011111001111 top-of-the 7 -10011111001111 Crocus 8 -10011111001111 specialty-food 10 -10011111001111 claims-paying 13 -10011111001111 Trivial 15 -10011111001111 revolving-credit 28 -10011111001111 trump 29 -10011111001111 gab 33 -10011111001111 debit 54 -10011111001111 Optima 75 -10011111001111 greeting 129 -10011111001111 credit 9619 -10011111001111 picket 145 -10011111010 solid-to-water 1 -10011111010 program-contract 1 -10011111010 immortalize 1 -10011111010 Achievements 1 -10011111010 short-money 1 -10011111010 74,544 1 -10011111010 earthquake-relief 1 -10011111010 loan-principal 1 -10011111010 cropsubsidy 1 -10011111010 bank-draft 1 -10011111010 Cruzados 1 -10011111010 finace 1 -10011111010 stamp-duty 1 -10011111010 electrical-accident 1 -10011111010 guaranteed-income 1 -10011111010 spooled 1 -10011111010 program-acquisition 1 -10011111010 land-diversion 1 -10011111010 leave-of-absence 1 -10011111010 government-support 1 -10011111010 non-interest-fee 1 -10011111010 educational-loan 1 -10011111010 loan-default 1 -10011111010 mail-preparation 1 -10011111010 Disoriented 1 -10011111010 auto-theft 1 -10011111010 fire-fighters 1 -10011111010 Latitude 1 -10011111010 Slowest 1 -10011111010 Airport-lot 1 -10011111010 1,349,349-share 1 -10011111010 recipient-participation 1 -10011111010 subsistance 1 -10011111010 hospice-care 1 -10011111010 lombard 1 -10011111010 post-bankruptcy-filing 1 -10011111010 marginality 1 -10011111010 loan-finance 1 -10011111010 predetermining 1 -10011111010 political-ad 1 -10011111010 strikeouts-to-walks 1 -10011111010 cost-highest 1 -10011111010 air-fatality 1 -10011111010 273.40 1 -10011111010 salary-sized 1 -10011111010 paid-circulation 1 -10011111010 Barbarina 1 -10011111010 worth-to-deposit 1 -10011111010 profitsharing 1 -10011111010 fixed-labor 1 -10011111010 Eurodeposit 1 -10011111010 Candidacy 1 -10011111010 oil-feedstock 1 -10011111010 per-sale 1 -10011111010 debenture-interest 1 -10011111010 beginner-level 1 -10011111010 capacity-use 1 -10011111010 debt-to-total-capital 1 -10011111010 rehospitalization 1 -10011111010 card-based 1 -10011111010 RIOTING 1 -10011111010 traffic-fatality 1 -10011111010 productivity-fund 1 -10011111010 non-programming 1 -10011111010 buyer-inquiry 1 -10011111010 foreign-manufacturing 1 -10011111010 bridegrooms 1 -10011111010 t-term 1 -10011111010 even-higher 1 -10011111010 oil-flow 1 -10011111010 bank-failure 1 -10011111010 GATHERED 1 -10011111010 government-subsidy 1 -10011111010 single-rate 1 -10011111010 industry-order 1 -10011111010 feed-corn 1 -10011111010 plant-use 2 -10011111010 intellgence 2 -10011111010 16.6-million-barrel 2 -10011111010 college-completion 2 -10011111010 violent-crime 2 -10011111010 dollar-exchange 2 -10011111010 cost-of-living-adjustment 2 -10011111010 market-price 2 -10011111010 repossession 3 -10011111010 Harborplace 3 -10011111010 telegraphic-transfer 3 -10011111010 ordinary-income 3 -10011111010 assemblyline 3 -10011111010 interst 4 -10011111010 fixed-mortgage 4 -10011111010 interest. 4 -10011111010 office-vacancy 7 -10011111010 recidivism 8 -10011111010 mortgage-interest 30 -10011111010 delinquency 44 -10011111010 debt-service 78 -10011111010 interest 27987 -10011111010 occupancy 133 -100111110110 polyester-yarn 1 -100111110110 seasonending 1 -100111110110 whale-shaped 1 -100111110110 Alif 1 -100111110110 custom-parts 1 -100111110110 petroluem 1 -100111110110 domestic-travel 1 -100111110110 Cocom-related 1 -100111110110 14,509 1 -100111110110 offsore 1 -100111110110 polyoxyalkylene 1 -100111110110 Weisbaden 1 -100111110110 Caffa 1 -100111110110 radiotelescopes 1 -100111110110 fuel-based 1 -100111110110 PCB-loaded 1 -100111110110 alumimum 1 -100111110110 silicon-crystal 1 -100111110110 airdropping 1 -100111110110 50-gallon 1 -100111110110 appliance-control 1 -100111110110 1,416 1 -100111110110 mung 1 -100111110110 near-infrared-spectroscopy 1 -100111110110 pinto 1 -100111110110 fine-fiber 1 -100111110110 light-fuel 1 -100111110110 funny-face 1 -100111110110 staphylococcus 1 -100111110110 bisphenol-A 1 -100111110110 non-Greeks 1 -100111110110 corklike 1 -100111110110 microwave-components 1 -100111110110 vinyl-acrylic 1 -100111110110 U.S.-bought 1 -100111110110 London-exchange 1 -100111110110 12month 1 -100111110110 bi-metallic 1 -100111110110 Medicaid-subsidized 1 -100111110110 cod-liver 1 -100111110110 flight-certified 1 -100111110110 Nod-A-Way 1 -100111110110 unhusked-rice 1 -100111110110 inground 1 -100111110110 raw-ivory 1 -100111110110 deliverymonth 1 -100111110110 slatternly 1 -100111110110 consumer-preferred 1 -100111110110 package-foreign 1 -100111110110 Screamers 1 -100111110110 Swedish-language 1 -100111110110 air-dropping 1 -100111110110 super-tanker 1 -100111110110 producer-output 1 -100111110110 Trinidadian 1 -100111110110 nearnormal 1 -100111110110 recreation-center 1 -100111110110 fuel-injector 1 -100111110110 steel-sheet 1 -100111110110 June-expiration 1 -100111110110 high-benefit 1 -100111110110 Pacific-area 1 -100111110110 Lit-Ning 1 -100111110110 war-damaged 1 -100111110110 eight-foot-high 1 -100111110110 kraut 1 -100111110110 IBM-bashing 1 -100111110110 non-fossil 1 -100111110110 Pentyde 1 -100111110110 pre-financed 1 -100111110110 mousselike 1 -100111110110 metricton-sized 1 -100111110110 copper-tubing 1 -100111110110 broadsiding 1 -100111110110 gas-oil 2 -100111110110 anise 2 -100111110110 100-yen 2 -100111110110 yen-related 2 -100111110110 Mylanta 2 -100111110110 Ranchero 2 -100111110110 Fudgsicle 2 -100111110110 mealy 2 -100111110110 panic-prone 2 -100111110110 Catapres 2 -100111110110 tachometer 2 -100111110110 brightly-colored 2 -100111110110 producible 2 -100111110110 5/8-inch 2 -100111110110 wontons 2 -100111110110 large-quantity 2 -100111110110 old-crop 2 -100111110110 four-million-gallon 2 -100111110110 Cyprus-based 2 -100111110110 Rosehaugh 2 -100111110110 094 2 -100111110110 Mistletoe 2 -100111110110 Amvisc 2 -100111110110 empty-looking 2 -100111110110 Friday-night 2 -100111110110 male-oriented 2 -100111110110 bilge 2 -100111110110 mini-major 2 -100111110110 bimetallic 2 -100111110110 tomato-plant 2 -100111110110 50-49 2 -100111110110 colloquialisms 3 -100111110110 paratungstate 3 -100111110110 deliciosa 3 -100111110110 1,061 3 -100111110110 cassava 3 -100111110110 1-1 3 -100111110110 beefsteak 3 -100111110110 palm-kernel 3 -100111110110 coking-coal 3 -100111110110 MR2 3 -100111110110 HCFC-22 3 -100111110110 5,119 3 -100111110110 ferrous 3 -100111110110 scalable 3 -100111110110 aluminium 3 -100111110110 Diprolene 3 -100111110110 gumdrops 3 -100111110110 pinto-bean 3 -100111110110 sesame 3 -100111110110 zirconium 4 -100111110110 towelettes 4 -100111110110 safflower 4 -100111110110 public-minded 4 -100111110110 nitrous 4 -100111110110 self-portraits 4 -100111110110 IL-2/TIL 4 -100111110110 Tums 4 -100111110110 Sprite 4 -100111110110 SO2 4 -100111110110 tarlike 4 -100111110110 emeralds 4 -100111110110 toluene 4 -100111110110 business-form 4 -100111110110 Avitene 4 -100111110110 A4 4 -100111110110 soybean-meal 4 -100111110110 curlers 4 -100111110110 human-growth 5 -100111110110 Philco 5 -100111110110 shut-in 5 -100111110110 jojoba 5 -100111110110 anti-personnel 5 -100111110110 price-controlled 5 -100111110110 Ibiza 5 -100111110110 Rolaids 5 -100111110110 motor-fuel 5 -100111110110 sevruga 6 -100111110110 castor 6 -100111110110 corn-gluten 6 -100111110110 phenol 6 -100111110110 woody 6 -100111110110 voyeurism 6 -100111110110 fajita 7 -100111110110 crayfish 7 -100111110110 hazelnut 7 -100111110110 lima 7 -100111110110 sugar-free 7 -100111110110 mauve 7 -100111110110 olefins 7 -100111110110 Pentax 7 -100111110110 cane-sugar 7 -100111110110 base-metals 8 -100111110110 home-heating 8 -100111110110 footware 8 -100111110110 maize 8 -100111110110 anti-freeze 8 -100111110110 T-bond 8 -100111110110 cottonseed 8 -100111110110 MEK 8 -100111110110 winter-wheat 9 -100111110110 cinnamon 9 -100111110110 new-crop 9 -100111110110 urea 9 -100111110110 vanadium 9 -100111110110 steel-ingot 10 -100111110110 Crisco 10 -100111110110 placer 10 -100111110110 naphtha 10 -100111110110 selenium 11 -100111110110 antelope 12 -100111110110 glucose 12 -100111110110 sickle 13 -100111110110 Kirkuk 13 -100111110110 Canadian-owned 14 -100111110110 papaya 14 -100111110110 ferronickel 15 -100111110110 denser 15 -100111110110 submersible 15 -100111110110 WTI 15 -100111110110 canola 15 -100111110110 burley 15 -100111110110 chlorofluorocarbon 16 -100111110110 Scrabble 16 -100111110110 rapeseed 16 -100111110110 broccoli 17 -100111110110 Robitussin 17 -100111110110 lubricating 18 -100111110110 cobalt 19 -100111110110 broiler 19 -100111110110 chromium 19 -100111110110 anthracite 20 -100111110110 7-Up 20 -100111110110 shale 21 -100111110110 hydropower 22 -100111110110 Chardonnay 22 -100111110110 deliverable 22 -100111110110 ferrochrome 22 -100111110110 pineapple 23 -100111110110 veal 23 -100111110110 orange-juice 24 -100111110110 cod 25 -100111110110 Maalox 26 -100111110110 above-ground 26 -100111110110 casein 26 -100111110110 encyclopedias 26 -100111110110 feed-grain 28 -100111110110 raw-materials 30 -100111110110 feedstock 30 -100111110110 grapefruit 33 -100111110110 soy 33 -100111110110 KHJ 34 -100111110110 antifreeze 36 -100111110110 oilseed 36 -100111110110 alfalfa 37 -100111110110 bauxite 40 -100111110110 lime 40 -100111110110 strawberry 40 -100111110110 distillate 42 -100111110110 calf 43 -100111110110 maple 45 -100111110110 palladium 47 -100111110110 sorghum 48 -100111110110 monoxide 49 -100111110110 ethane 50 -100111110110 tritium 52 -100111110110 oat 52 -100111110110 shrimp 54 -100111110110 linerboard 54 -100111110110 lamb 58 -100111110110 alumina 58 -100111110110 potash 59 -100111110110 chlorine 61 -100111110110 brandy 62 -100111110110 lettuce 62 -100111110110 honey 66 -100111110110 bacon 74 -100111110110 piping 75 -100111110110 raw-material 79 -100111110110 oats 82 -100111110110 coca 83 -100111110110 bean 84 -100111110110 ivory 86 -100111110110 heating-oil 89 -100111110110 postage 91 -100111110110 plywood 100 -100111110110 wool 115 -100111110110 barley 122 -100111110110 bumper 128 -100111110110 methane 139 -100111110110 vegetable 157 -100111110110 zinc 160 -100111110110 ethylene 161 -100111110110 soda 172 -100111110110 ethanol 185 -100111110110 dioxide 206 -100111110110 crude-oil 262 -100111110110 livestock 333 -100111110110 hog 354 -100111110110 uranium 359 -100111110110 nickel 371 -100111110110 cocoa 459 -100111110110 juice 493 -100111110110 heating 543 -100111110110 soybeans 552 -100111110110 pork 578 -100111110110 rice 583 -100111110110 milk 608 -100111110110 pulp 637 -100111110110 chicken 652 -100111110110 newsprint 671 -100111110110 cotton 703 -100111110110 platinum 722 -100111110110 meat 726 -100111110110 cattle 953 -100111110110 beef 981 -100111110110 coffee 1229 -100111110110 soybean 1263 -100111110110 electricity 1287 -100111110110 wheat 1443 -100111110110 gasoline 1461 -100111110110 silver 1466 -100111110110 grain 1500 -100111110110 sugar 1530 -100111110110 copper 1719 -100111110110 corn 1992 -100111110110 fuel 2117 -100111110110 crude 2384 -100111110110 gold 6226 -100111110110 housing 2949 -1001111101110 debt-and-interest 1 -1001111101110 vestigation 1 -1001111101110 aid-to-religious-schools 1 -1001111101110 65-to-100-bed 1 -1001111101110 131-foot 1 -1001111101110 order-growth 1 -1001111101110 micro-injected 1 -1001111101110 Bos-Wash 1 -1001111101110 1631 1 -1001111101110 pinch-hitters 1 -1001111101110 SNCC 1 -1001111101110 world-stock 1 -1001111101110 toxemia 1 -1001111101110 blackmarketeering 1 -1001111101110 Bermudas 1 -1001111101110 execution-manufacturing 1 -1001111101110 6,200-mile 1 -1001111101110 windsheer-detection 1 -1001111101110 nitrous-oxide 1 -1001111101110 1749 1 -1001111101110 growth-target 1 -1001111101110 gasoline-making 1 -1001111101110 downspouts 1 -1001111101110 on- 1 -1001111101110 video-text 1 -1001111101110 biological- 1 -1001111101110 Giesmar 1 -1001111101110 national-prestige 1 -1001111101110 zymurgical 1 -1001111101110 Mr.Cotte 1 -1001111101110 133-to-137-yen 1 -1001111101110 Boeing-747s 1 -1001111101110 Euphemisms 1 -1001111101110 anhydrous-ammonia 1 -1001111101110 1976-81 1 -1001111101110 fixed-wing-aircraft 1 -1001111101110 10,000-job 1 -1001111101110 carwash 1 -1001111101110 396-402 1 -1001111101110 1484 1 -1001111101110 3- 1 -1001111101110 dahlias 1 -1001111101110 ticket-sale 1 -1001111101110 nonperformer 1 -1001111101110 senior-acquisition 1 -1001111101110 application-development 1 -1001111101110 meg 1 -1001111101110 mid-aria 1 -1001111101110 2500-to-2700 1 -1001111101110 handwork 1 -1001111101110 concertinas 1 -1001111101110 carcinogenesis 1 -1001111101110 parts-per-trillion 1 -1001111101110 patent-maintenance 1 -1001111101110 knee-surgery 1 -1001111101110 Flins 1 -1001111101110 6-to-7 1 -1001111101110 F-14d 1 -1001111101110 engineeering 1 -1001111101110 800-holder 1 -1001111101110 copier-duplicator 1 -1001111101110 mark-pound 1 -1001111101110 rumor-buffeted 1 -1001111101110 small-community 1 -1001111101110 under-500-kilometer 1 -1001111101110 Brezins 1 -1001111101110 957-acre 1 -1001111101110 higher-than-allowed 1 -1001111101110 perhour 1 -1001111101110 restorable 1 -1001111101110 Terengganu 1 -1001111101110 tire-pricing 1 -1001111101110 1993-1994 1 -1001111101110 Humoresque 1 -1001111101110 once-continuous 1 -1001111101110 6,600-mile 1 -1001111101110 motor-fuels 1 -1001111101110 runon 1 -1001111101110 Wauseon 1 -1001111101110 Eldertrivia 1 -1001111101110 chameleonlike 1 -1001111101110 6-to-8 1 -1001111101110 chlorophyll 1 -1001111101110 sewage-treatment-plant 1 -1001111101110 scuffs 1 -1001111101110 level-six 1 -1001111101110 supermini 1 -1001111101110 power-wielding 1 -1001111101110 oh-so-polite 1 -1001111101110 3,000-nautical-mile 1 -1001111101110 quota-price 1 -1001111101110 subisidies 1 -1001111101110 Drummondville 1 -1001111101110 boating-safety 1 -1001111101110 1952-53 1 -1001111101110 pre-Colombian 1 -1001111101110 mechanical-design 1 -1001111101110 100-hour-or-less 1 -1001111101110 500-hour 1 -1001111101110 land-access 1 -1001111101110 mid-250 1 -1001111101110 cardiological 1 -1001111101110 electronic-guidance 1 -1001111101110 MORTICES 1 -1001111101110 Woosung 1 -1001111101110 Logansport 1 -1001111101110 pool-spa 1 -1001111101110 Ford- 1 -1001111101110 mid-30,000 1 -1001111101110 foreign-broadcasting-rights 1 -1001111101110 five-to-10-year 1 -1001111101110 TF-39 1 -1001111101110 centipedes 1 -1001111101110 400,000-to-800,000 1 -1001111101110 part-surreal 1 -1001111101110 Ukrainian-Americans 1 -1001111101110 0.02-cent 1 -1001111101110 science- 1 -1001111101110 mid-hundred-million-dollar 1 -1001111101110 formlessness 1 -1001111101110 100-degree-plus 1 -1001111101110 quarter-cent-a-pound 1 -1001111101110 habitability 1 -1001111101110 Chekovian 1 -1001111101110 single-word 1 -1001111101110 extended-payment 1 -1001111101110 high-pitch 1 -1001111101110 1950-1960 1 -1001111101110 12-to-14-year-old 1 -1001111101110 Rooseveltology 1 -1001111101110 emergency-cash 1 -1001111101110 Noxzema 1 -1001111101110 dirty-water 1 -1001111101110 platinum-clearing 1 -1001111101110 custards 1 -1001111101110 digestable 1 -1001111101110 offering-price 1 -1001111101110 non-raisin 1 -1001111101110 Liego 1 -1001111101110 Kortrijk 1 -1001111101110 manufacturer-dealer 1 -1001111101110 1,250-to-1,550-lire 1 -1001111101110 velvets 1 -1001111101110 53-30 1 -1001111101110 1-mark 1 -1001111101110 Israel-bashing 1 -1001111101110 architect-engineering 1 -1001111101110 hand-painting 1 -1001111101110 tantric 1 -1001111101110 Coricidin 1 -1001111101110 prosperty 1 -1001111101110 adhesions 1 -1001111101110 lowgrowth 1 -1001111101110 development-aid 1 -1001111101110 52,790,000 1 -1001111101110 Vegematics 1 -1001111101110 stressors 1 -1001111101110 book-promotion 1 -1001111101110 Bajaur 1 -1001111101110 private-income 1 -1001111101110 budget-message 1 -1001111101110 eye- 1 -1001111101110 English- 1 -1001111101110 1238 1 -1001111101110 in-duct 1 -1001111101110 sickos 1 -1001111101110 two-shift-a-day 1 -1001111101110 Kolozsvar/Cluj-Napoca 1 -1001111101110 40-cents-a-pound 1 -1001111101110 heroin-user 1 -1001111101110 low-caliber 1 -1001111101110 seven-million-dollar 1 -1001111101110 short-word 1 -1001111101110 feedmills 1 -1001111101110 bloodlettings 1 -1001111101110 low-40 1 -1001111101110 leis 1 -1001111101110 less-than-flattering 1 -1001111101110 Treasury-rate 1 -1001111101110 radiation-containment 1 -1001111101110 consensus-forecast 1 -1001111101110 Forstmann-Leff-Associates 1 -1001111101110 1.9200-mark 1 -1001111101110 two-pfennig 1 -1001111101110 hoagies 1 -1001111101110 vendor-performance 1 -1001111101110 F/F-18 1 -1001111101110 billionths-of-a-second 1 -1001111101110 20-foot-wide 1 -1001111101110 surgicenters 1 -1001111101110 moderate- 1 -1001111101110 10-ticket 1 -1001111101110 operating-cash 1 -1001111101110 Alapaha 1 -1001111101110 transgressive 1 -1001111101110 BCGM 1 -1001111101110 Kars 1 -1001111101110 Westinghouse-built 1 -1001111101110 awful-and-scarce 1 -1001111101110 dollar-equivalent 1 -1001111101110 half-hourlong 1 -1001111101110 glissandi 1 -1001111101110 mezzo-sopranos 1 -1001111101110 Stuttgart-Zuffenhausen 1 -1001111101110 pollution-sampling 1 -1001111101110 10W-30 1 -1001111101110 mid-vacation 1 -1001111101110 engineering-procurement 1 -1001111101110 saris 2 -1001111101110 current-dollar 2 -1001111101110 C-12 2 -1001111101110 tradesman 2 -1001111101110 Muynak 2 -1001111101110 intracoronary 2 -1001111101110 145-yen 2 -1001111101110 Lismore 2 -1001111101110 putouts 2 -1001111101110 Trimline 2 -1001111101110 greatcoats 2 -1001111101110 financal 2 -1001111101110 fleet-underway 2 -1001111101110 sniffles 2 -1001111101110 swap-market 2 -1001111101110 peonage 2 -1001111101110 order-handling 2 -1001111101110 rebar 2 -1001111101110 silkworms 2 -1001111101110 1994-2014 2 -1001111101110 bagpipers 2 -1001111101110 crime- 2 -1001111101110 175-mile 2 -1001111101110 aroni 2 -1001111101110 agrarianism 2 -1001111101110 construction-differential-subsidies 2 -1001111101110 marketshare 2 -1001111101110 blowguns 2 -1001111101110 Hetchy 3 -1001111101110 transboundary 3 -1001111101110 property- 3 -1001111101110 west-to-east 3 -1001111101110 waistcoat 3 -1001111101110 bioethics 3 -1001111101110 operating-differential-subsidies 3 -1001111101110 television-rights 3 -1001111101110 income- 3 -1001111101110 middle-price 3 -1001111101110 19th- 3 -1001111101110 self-care 3 -1001111101110 lower- 4 -1001111101110 drought-assistance 4 -1001111101110 64K 4 -1001111101110 zigs 4 -1001111101110 pinstripes 4 -1001111101110 boogie-woogie 4 -1001111101110 mid-sentence 4 -1001111101110 corduroys 4 -1001111101110 dreadlocks 4 -1001111101110 Goa 4 -1001111101110 midriff 4 -1001111101110 medical-expense 5 -1001111101110 Itaran 5 -1001111101110 dribs 5 -1001111101110 full- 5 -1001111101110 loco 5 -1001111101110 declarative 5 -1001111101110 year-and-a-day 6 -1001111101110 12- 6 -1001111101110 lederhosen 6 -1001111101110 long- 7 -1001111101110 personal-appearance 7 -1001111101110 sign-up 10 -1001111101110 one- 19 -1001111101110 three- 24 -1001111101110 common-share 24 -1001111101110 captivity 31 -1001111101110 middle- 33 -1001111101110 medium- 37 -1001111101110 low- 44 -1001111101110 alimony 49 -1001111101110 jail 824 -1001111101110 cash 14457 -1001111101110 prison 1983 -10011111011110 perspiration-inducing 1 -10011111011110 contract-flight 1 -10011111011110 buttes 1 -10011111011110 driving-while-intoxicated 1 -10011111011110 refundability 1 -10011111011110 9/18B 1 -10011111011110 16/27b 1 -10011111011110 16/26 1 -10011111011110 down-the-road 1 -10011111011110 1-to-4 1 -10011111011110 judoists 1 -10011111011110 chikungunya 1 -10011111011110 Manzini 1 -10011111011110 wall-mounted 1 -10011111011110 paid-leave 1 -10011111011110 alphabets 1 -10011111011110 field-production 1 -10011111011110 punditdom 1 -10011111011110 stop-out 1 -10011111011110 Fontanelle 1 -10011111011110 drug-positive 1 -10011111011110 campanile 1 -10011111011110 Kaly 1 -10011111011110 factious 1 -10011111011110 private-ownership 1 -10011111011110 WOR-FM 1 -10011111011110 990-T 1 -10011111011110 Trepps 1 -10011111011110 re-authorization 1 -10011111011110 wire-reference 1 -10011111011110 imprecision 1 -10011111011110 aggies 1 -10011111011110 embankments 1 -10011111011110 GNP-growth 1 -10011111011110 catarrh 1 -10011111011110 seniority-based 1 -10011111011110 centrism 1 -10011111011110 broadcast-rights 1 -10011111011110 2430 1 -10011111011110 innaccurate 1 -10011111011110 zeppelins 1 -10011111011110 over-commercialization 1 -10011111011110 toper 1 -10011111011110 Cuberli 1 -10011111011110 stale-cigarette 1 -10011111011110 tainted-food 1 -10011111011110 drug-traffickers 1 -10011111011110 re-order 1 -10011111011110 unperceivable 1 -10011111011110 previously-filed 1 -10011111011110 ordinary-loss 1 -10011111011110 long-distance-rate 1 -10011111011110 6407/9 1 -10011111011110 goaltending 1 -10011111011110 Bindernagel 1 -10011111011110 chip-on-the-shoulder 1 -10011111011110 patent-infringers 1 -10011111011110 doomers 1 -10011111011110 franc/mark 1 -10011111011110 dominos 1 -10011111011110 intracellulare 1 -10011111011110 politico-plaintiffs 1 -10011111011110 positioner 1 -10011111011110 sugar-planted 1 -10011111011110 cable-copyright 1 -10011111011110 microcosms 1 -10011111011110 unable-to-locate 1 -10011111011110 Schatten 1 -10011111011110 government-as-usual 1 -10011111011110 unaccommodating 1 -10011111011110 heart-stoppingly 1 -10011111011110 labor-participation 1 -10011111011110 masonry-wall 1 -10011111011110 9/23B 1 -10011111011110 serge 1 -10011111011110 special-case 1 -10011111011110 multiple-appraisal 1 -10011111011110 inflation-tag 1 -10011111011110 post-service 1 -10011111011110 uncapped 2 -10011111011110 S-RAM 2 -10011111011110 profitablilty 2 -10011111011110 Ahonoora 2 -10011111011110 audiotapes 2 -10011111011110 Cispes 2 -10011111011110 niggardly 2 -10011111011110 Ho-Ho-Kus 2 -10011111011110 savings-deposit 2 -10011111011110 Pomaks 2 -10011111011110 55-46 2 -10011111011110 quota-cheating 2 -10011111011110 severance-tax 2 -10011111011110 Cytotechnologists 2 -10011111011110 light-walled 2 -10011111011110 Mi-Cebrin 2 -10011111011110 reduced-duty 2 -10011111011110 re-unionization 2 -10011111011110 RUB 2 -10011111011110 15/22 2 -10011111011110 encephalopathy 2 -10011111011110 red-lining 2 -10011111011110 live-sighting 2 -10011111011110 atheists 2 -10011111011110 numberless 2 -10011111011110 childrearing 2 -10011111011110 Unfulfilled 2 -10011111011110 icicle 2 -10011111011110 Roquefort 3 -10011111011110 medians 3 -10011111011110 inscrutability 3 -10011111011110 Gudrid 3 -10011111011110 tweezers 3 -10011111011110 SRAM-II 3 -10011111011110 paydowns 3 -10011111011110 arsenate 3 -10011111011110 homology 3 -10011111011110 baby-selling 3 -10011111011110 itemizing 3 -10011111011110 mendacious 3 -10011111011110 parasols 3 -10011111011110 undertakers 3 -10011111011110 25929.42 3 -10011111011110 medical-assistance 3 -10011111011110 neckline 3 -10011111011110 pseudonymity 3 -10011111011110 dabblers 3 -10011111011110 woodpeckers 3 -10011111011110 R2D2 3 -10011111011110 majoritarianism 3 -10011111011110 annualization 4 -10011111011110 brawn 4 -10011111011110 hypochondria 4 -10011111011110 HTLV-4 4 -10011111011110 EEP 4 -10011111011110 17th- 4 -10011111011110 onlending 4 -10011111011110 Ormuz 4 -10011111011110 understaffing 4 -10011111011110 idolatry 4 -10011111011110 busineses 4 -10011111011110 over-capacity 4 -10011111011110 mitzvahs 4 -10011111011110 pettifoggery 4 -10011111011110 interest-income 4 -10011111011110 counterrevolutionaries 4 -10011111011110 babysitting 4 -10011111011110 Darvon 4 -10011111011110 fatherhood 4 -10011111011110 evenhandedness 4 -10011111011110 osmosis 5 -10011111011110 ballutes 5 -10011111011110 mitzvah 5 -10011111011110 Turgenev 5 -10011111011110 lesbianism 5 -10011111011110 smut 5 -10011111011110 sequoias 5 -10011111011110 Shangri-La 5 -10011111011110 AFIS 5 -10011111011110 MediCal 5 -10011111011110 dysentery 5 -10011111011110 Wordstar 5 -10011111011110 neurosurgery 5 -10011111011110 2350 5 -10011111011110 deconstructionism 6 -10011111011110 glaucoma 6 -10011111011110 countryman 6 -10011111011110 FIFO 6 -10011111011110 liquidities 6 -10011111011110 morbidity 6 -10011111011110 crabmeat 6 -10011111011110 CCK 6 -10011111011110 legalisms 6 -10011111011110 mid-America 6 -10011111011110 fatalism 7 -10011111011110 osteoarthritis 7 -10011111011110 Internet 7 -10011111011110 diltiazem 7 -10011111011110 hemorrhoids 7 -10011111011110 yarmulkes 7 -10011111011110 repentance 7 -10011111011110 firecrackers 7 -10011111011110 seller-financing 7 -10011111011110 NMP 8 -10011111011110 wildflowers 8 -10011111011110 autocracy 8 -10011111011110 eugenics 8 -10011111011110 overpopulation 8 -10011111011110 overregulation 8 -10011111011110 mechanization 8 -10011111011110 cadmium 8 -10011111011110 inoculation 8 -10011111011110 Pinstripes 8 -10011111011110 truancy 8 -10011111011110 coyotes 9 -10011111011110 drop-out 9 -10011111011110 EDB 9 -10011111011110 mackerel 9 -10011111011110 breakage 9 -10011111011110 advance-decline 9 -10011111011110 hemoglobin 9 -10011111011110 check-writing 9 -10011111011110 serotonin 9 -10011111011110 anti-selection 9 -10011111011110 PLAM 10 -10011111011110 seigniorage 10 -10011111011110 propylene 10 -10011111011110 bilingualism 11 -10011111011110 dehydration 11 -10011111011110 dwarfism 11 -10011111011110 cubism 11 -10011111011110 reforestation 11 -10011111011110 senility 12 -10011111011110 artifice 12 -10011111011110 permeability 12 -10011111011110 fabrications 12 -10011111011110 poppies 12 -10011111011110 triglycerides 13 -10011111011110 35000 13 -10011111011110 abstention 14 -10011111011110 respiration 14 -10011111011110 immunotherapy 14 -10011111011110 monogamy 14 -10011111011110 quack 15 -10011111011110 repos 15 -10011111011110 LDL-cholesterol 15 -10011111011110 self-restraint 15 -10011111011110 couponing 15 -10011111011110 dominoes 15 -10011111011110 nonviolence 16 -10011111011110 spoilage 16 -10011111011110 Peptide 17 -10011111011110 parenthood 17 -10011111011110 liming 17 -10011111011110 interventionism 17 -10011111011110 drunkenness 18 -10011111011110 Nicorette 19 -10011111011110 home-ownership 20 -10011111011110 deforestation 21 -10011111011110 counterfeiting 22 -10011111011110 Nazism 22 -10011111011110 drowsiness 23 -10011111011110 anesthesia 23 -10011111011110 illegitimacy 25 -10011111011110 ridership 25 -10011111011110 fascism 26 -10011111011110 radioactivity 29 -10011111011110 humidity 29 -10011111011110 contraception 30 -10011111011110 caffeine 31 -10011111011110 syphilis 33 -10011111011110 hypnosis 33 -10011111011110 Stalinism 33 -10011111011110 psychotherapy 33 -10011111011110 childbirth 36 -10011111011110 busing 37 -10011111011110 osteoporosis 37 -10011111011110 homeownership 37 -10011111011110 fertilization 38 -10011111011110 incest 39 -10011111011110 obesity 42 -10011111011110 cabernet 42 -10011111011110 anti-Semitism 42 -10011111011110 1800 45 -10011111011110 artwork 45 -10011111011110 ebb 49 -10011111011110 diarrhea 52 -10011111011110 absenteeism 54 -10011111011110 overcrowding 55 -10011111011110 illiteracy 55 -10011111011110 homelessness 56 -10011111011110 self-regulation 61 -10011111011110 joblessness 61 -10011111011110 slavery 70 -10011111011110 prostitution 75 -10011111011110 sodium 78 -10011111011110 homosexuality 82 -10011111011110 self-incrimination 86 -10011111011110 alcoholism 93 -10011111011110 fertility 96 -10011111011110 diabetes 96 -10011111011110 smog 102 -10011111011110 pornography 106 -10011111011110 dropout 106 -10011111011110 dioxin 119 -10011111011110 Libor 174 -10011111011110 aflatoxin 187 -10011111011110 theirs 188 -10011111011110 mortality 206 -10011111011110 M2 219 -10011111011110 gilts 228 -10011111011110 communism 305 -10011111011110 tuition 321 -10011111011110 M1 386 -10011111011110 apartheid 449 -10011111011110 protectionism 452 -10011111011110 terrorism 485 -10011111011110 poverty 753 -10011111011110 inflationary 1021 -10011111011110 unemployment 2504 -10011111011110 inflation 8882 -10011111011110 education 2908 -10011111011111 finding-cost 1 -10011111011111 stowage 1 -10011111011111 merchandise-inventory 1 -10011111011111 title-policy 1 -10011111011111 cholesterol/HDL 1 -10011111011111 midsize-car 1 -10011111011111 63-page 1 -10011111011111 agrarianethnic 1 -10011111011111 Effektenbank-Warburg 1 -10011111011111 reorganization-related 1 -10011111011111 postal-worker 1 -10011111011111 1,200-page 1 -10011111011111 contract-penalty 1 -10011111011111 noir-lit 1 -10011111011111 Gazettes 1 -10011111011111 trade-transport 1 -10011111011111 non-distribution 1 -10011111011111 many-digit 1 -10011111011111 39,189 1 -10011111011111 paint-finish 1 -10011111011111 manufacuturing 1 -10011111011111 last-in-first-out 1 -10011111011111 worker-benefit 1 -10011111011111 debt/economic 1 -10011111011111 death-benefit 1 -10011111011111 travelrelated 1 -10011111011111 home-borrowing 1 -10011111011111 steel-labor 1 -10011111011111 customer-broker 1 -10011111011111 production-run 1 -10011111011111 non-recoverable 1 -10011111011111 expansion-related 1 -10011111011111 timber-clearing 1 -10011111011111 investment-financing 1 -10011111011111 peak-service 1 -10011111011111 under-projected 1 -10011111011111 shareholder-servicing 1 -10011111011111 state-of-the-industry 1 -10011111011111 medical-claims 1 -10011111011111 personal-identification 1 -10011111011111 garden-hose 1 -10011111011111 lost-opportunity 1 -10011111011111 wooden-sounding 1 -10011111011111 work-and-savings 1 -10011111011111 paper-storage 1 -10011111011111 factory-capacity-utilization 1 -10011111011111 paper-processing 1 -10011111011111 community-hospital 1 -10011111011111 alarm-system 1 -10011111011111 food-tolerance 1 -10011111011111 fish-contamination 1 -10011111011111 war-movie 1 -10011111011111 store-liquidation 1 -10011111011111 production-rate 1 -10011111011111 fuel-transportation 1 -10011111011111 utility-construction 1 -10011111011111 engineering-design 1 -10011111011111 replacement-energy 1 -10011111011111 airline-performance 1 -10011111011111 job-settlement 1 -10011111011111 mileage-use 1 -10011111011111 stock-issues 1 -10011111011111 defense-preparedness 1 -10011111011111 livestock-related 1 -10011111011111 post-construction 1 -10011111011111 militia-style 1 -10011111011111 primary-production 1 -10011111011111 squirrel-like 1 -10011111011111 producer-price-index 1 -10011111011111 industry-operating 1 -10011111011111 garment-makers 1 -10011111011111 ex-Atlanta 1 -10011111011111 business-inventory 1 -10011111011111 unbudgeted 1 -10011111011111 million-computer 1 -10011111011111 cement-manufacturing 1 -10011111011111 defense-work 1 -10011111011111 employment-payroll 1 -10011111011111 once-ballooning 1 -10011111011111 total-yardage 1 -10011111011111 rawmaterials 1 -10011111011111 1.89-mark 1 -10011111011111 gasline-repair 1 -10011111011111 30,000-won 1 -10011111011111 often-lethal 1 -10011111011111 already-incurred 1 -10011111011111 production-utilization 1 -10011111011111 trading-staff 1 -10011111011111 soybeanoil 1 -10011111011111 noncommodity 1 -10011111011111 1.92-mark 1 -10011111011111 inflationery 1 -10011111011111 cranberry-and-gray 1 -10011111011111 still-punishing 1 -10011111011111 private-airplane 1 -10011111011111 average-earnings 1 -10011111011111 AIDS-care 1 -10011111011111 housing-start 1 -10011111011111 Express-prepared 1 -10011111011111 shutdown-related 1 -10011111011111 retiree-medical 1 -10011111011111 Airbus-related 1 -10011111011111 target-price 2 -10011111011111 farm-labor 2 -10011111011111 business-promotion 2 -10011111011111 voluntary-restraint 2 -10011111011111 cupids 2 -10011111011111 Cimulcer 2 -10011111011111 104-page 2 -10011111011111 Titania 2 -10011111011111 order-inflow 2 -10011111011111 oil-finding 2 -10011111011111 half-length 2 -10011111011111 exit-poll 2 -10011111011111 2.00-mark 2 -10011111011111 team-handball 2 -10011111011111 product-introduction 2 -10011111011111 anti-export 2 -10011111011111 soft-brown 2 -10011111011111 near-equal 2 -10011111011111 runs-batted-in 2 -10011111011111 consumer-recognition 2 -10011111011111 offshore-insurance 2 -10011111011111 patent-litigation 2 -10011111011111 health-claim 2 -10011111011111 U.S.-Angola 2 -10011111011111 quarter-end 2 -10011111011111 '73 2 -10011111011111 asbestos-claim 2 -10011111011111 strike-breaking 2 -10011111011111 export-sales 2 -10011111011111 Soviet-Japan 2 -10011111011111 enrichment-program 2 -10011111011111 heeling 2 -10011111011111 client-agency 2 -10011111011111 1570 2 -10011111011111 bank-customer 2 -10011111011111 pre-development 2 -10011111011111 preproduction 2 -10011111011111 unit-labor 2 -10011111011111 self-seeking 3 -10011111011111 SCOPE 3 -10011111011111 retail-trade 3 -10011111011111 2400-point 3 -10011111011111 CCOP 3 -10011111011111 health-industry 3 -10011111011111 pipeline-producer 3 -10011111011111 cattle-inventory 3 -10011111011111 more-extreme 3 -10011111011111 hourly-wage 3 -10011111011111 economic-crime 3 -10011111011111 purchased-power 3 -10011111011111 jiggles 3 -10011111011111 1975-79 3 -10011111011111 bad-news 3 -10011111011111 HxCDD 3 -10011111011111 election-night 3 -10011111011111 old-school 4 -10011111011111 half-yearly 4 -10011111011111 medical-benefit 4 -10011111011111 triglyceride 4 -10011111011111 scrapbooks 4 -10011111011111 equity-capital 4 -10011111011111 EVD 4 -10011111011111 airline-service 4 -10011111011111 Jessi 4 -10011111011111 Komeito 4 -10011111011111 pre-operational 4 -10011111011111 Akai 4 -10011111011111 white-blood-cell 4 -10011111011111 NCIC 4 -10011111011111 pre-launch 4 -10011111011111 personnel-related 4 -10011111011111 age-related 4 -10011111011111 consumer-complaint 4 -10011111011111 asbestos-litigation 4 -10011111011111 blood-cholesterol 5 -10011111011111 skilled-worker 5 -10011111011111 crop-production 5 -10011111011111 Handelsblatt 5 -10011111011111 carbamazepine 5 -10011111011111 Celine 5 -10011111011111 unrecoverable 5 -10011111011111 jobholders 5 -10011111011111 regionalism 5 -10011111011111 backslapping 6 -10011111011111 campaign-spending 6 -10011111011111 pseudo 6 -10011111011111 broker-customer 6 -10011111011111 work-in-progress 6 -10011111011111 industrial-production 6 -10011111011111 malpractice-insurance 6 -10011111011111 tinkling 6 -10011111011111 discount-fare 7 -10011111011111 TEFRA 7 -10011111011111 non-political 8 -10011111011111 replacement-power 9 -10011111011111 investment-interest 9 -10011111011111 military-spending 9 -10011111011111 IVIG 11 -10011111011111 EISA 11 -10011111011111 surrogacy 12 -10011111011111 strike-related 13 -10011111011111 farm-program 14 -10011111011111 Alma-Ata 15 -10011111011111 retail-price 17 -10011111011111 ISDN 17 -10011111011111 PPI 17 -10011111011111 10K 20 -10011111011111 vibration 23 -10011111011111 Cabernet 23 -10011111011111 cattle-on-feed 24 -10011111011111 Maekawa 24 -10011111011111 brute 27 -10011111011111 serum 27 -10011111011111 underworld 27 -10011111011111 LIFO 30 -10011111011111 NAS 31 -10011111011111 LDL 33 -10011111011111 10-K 35 -10011111011111 retail-sales 41 -10011111011111 GAAP 42 -10011111011111 HDL 47 -10011111011111 out-of-pocket 52 -10011111011111 public-opinion 71 -10011111011111 radon 86 -10011111011111 dosage 90 -10011111011111 emigration 168 -10011111011111 staffing 177 -10011111011111 GDP 232 -10011111011111 ozone 383 -10011111011111 overhead 559 -10011111011111 cholesterol 593 -10011111011111 payroll 698 -10011111011111 GNP 1110 -10011111011111 inventory 1710 -10011111011111 labor 5768 -10011111011111 employment 2993 -10011111100 credit-loans 1 -10011111100 Autophiles 1 -10011111100 finger-waggling 1 -10011111100 disinvests 1 -10011111100 -shareholder 1 -10011111100 debntures 1 -10011111100 shootin 1 -10011111100 9288 1 -10011111100 veterand 1 -10011111100 middle-paying 1 -10011111100 kiwi-uniqueness 1 -10011111100 Shenlu 1 -10011111100 Candida 1 -10011111100 Citroens 1 -10011111100 ruble. 1 -10011111100 appproval 1 -10011111100 Breitung 1 -10011111100 boy-Merlin 1 -10011111100 G-men-and 1 -10011111100 five-o 1 -10011111100 agents-in-training 1 -10011111100 disbelieves 1 -10011111100 el-Damer 1 -10011111100 capitulates 1 -10011111100 dithers 2 -10011111100 minicompact 2 -10011111100 Koncar 2 -10011111100 thuds 2 -10011111100 Renoirs 2 -10011111100 camshaft 2 -10011111100 BOOMS 2 -10011111100 planos 2 -10011111100 Oukasie 2 -10011111100 Lilburn 2 -10011111100 Dunhills 2 -10011111100 franks 3 -10011111100 Eurodebentures 20 -10011111100 Euronotes 24 -10011111100 Eurobonds 718 -10011111100 debentures 4411 -10011111100 notes 10471 -10011111101 hasn't-as 1 -10011111101 sylvestris 1 -10011111101 noload 1 -10011111101 affairs-Washington 1 -10011111101 affairs-Bethlehem 1 -10011111101 then. 1 -10011111101 lower-downs 1 -10011111101 undies 1 -10011111101 pre-pubescents 1 -10011111101 collapsed. 1 -10011111101 ballot-rigging 1 -10011111101 Jefe 1 -10011111101 pronouncements. 1 -10011111101 2002-2008 1 -10011111101 treasurys 1 -10011111101 cash-equivalents 1 -10011111101 1550-1700 1 -10011111101 post-fray 1 -10011111101 budget-squeezing 1 -10011111101 parsonages 1 -10011111101 subvention 1 -10011111101 whetstones 1 -10011111101 granaries 1 -10011111101 3-year 1 -10011111101 valuuuue 1 -10011111101 hula-hooping 1 -10011111101 bonds-high-yield 1 -10011111101 crckdown 1 -10011111101 bluebooks 2 -10011111101 1624 2 -10011111101 spendthrifts 2 -10011111101 fuel-switching 2 -10011111101 investor. 2 -10011111101 1995-1996 2 -10011111101 obit 2 -10011111101 882.51 3 -10011111101 FICOs 3 -10011111101 IOU 3 -10011111101 Zwilich 3 -10011111101 per-diems 3 -10011111101 program. 4 -10011111101 Eurodeposits 9 -10011111101 OATs 10 -10011111101 butterfat 17 -10011111101 delinquencies 28 -10011111101 corporates 30 -10011111101 munis 30 -10011111101 municipals 153 -10011111101 CDs 517 -10011111101 bonds 17318 -10011111101 bills 4524 -100111111100 futures-clearing 1 -100111111100 associaton 1 -100111111100 joint-member 1 -100111111100 offense-minded 1 -100111111100 April-October 1 -100111111100 cargo-preference 1 -100111111100 price-mileage 1 -100111111100 dog-bite 1 -100111111100 caught-foreign 1 -100111111100 caught-U.S. 1 -100111111100 market/book 1 -100111111100 agricultural-debt 1 -100111111100 gray-shingle 1 -100111111100 crop-loan 1 -100111111100 currency-control 1 -100111111100 merger-and-acquisitions 1 -100111111100 landuse 1 -100111111100 Technical-oriented 1 -100111111100 17,012,288 1 -100111111100 NASD-member 1 -100111111100 scooper 1 -100111111100 capitalist/imperialist 1 -100111111100 multi-city 1 -100111111100 Alzheimer-type 1 -100111111100 network-switching 1 -100111111100 labor-vouchering 1 -100111111100 paper-clip 1 -100111111100 once-exotic 1 -100111111100 securities-has 1 -100111111100 Matsushita-owned 1 -100111111100 anti-cruelty 2 -100111111100 electricity-supply 2 -100111111100 bond-financed 2 -100111111100 competitive-analysis 2 -100111111100 pr 2 -100111111100 bigamy 2 -100111111100 marine-assistance 2 -100111111100 mergers-and-acquisition 2 -100111111100 second-opinion 3 -100111111100 food-stock 3 -100111111100 gaming-industry 3 -100111111100 committment 3 -100111111100 military-contracting 4 -100111111100 stockholding 7 -100111111100 chip-industry 8 -100111111100 z-Not 8 -100111111100 securites 9 -100111111100 mortgage-security 9 -100111111100 securities 17077 -100111111100 commodities-trading 15 -100111111101 industrial-fuel 1 -100111111101 connection-charge 1 -100111111101 anti-stock 1 -100111111101 literature-outline 1 -100111111101 bond-future 1 -100111111101 1961-1962 1 -100111111101 family/business 1 -100111111101 tax-discrimination 1 -100111111101 jump-the-gun 1 -100111111101 metals-money 1 -100111111101 once-handy 1 -100111111101 used-PC 1 -100111111101 competition-free 1 -100111111101 cash-bond 1 -100111111101 seventh-most-active 1 -100111111101 sporty-car 1 -100111111101 auto-resale 1 -100111111101 public-issue 1 -100111111101 non-controvertible 1 -100111111101 futures-type 1 -100111111101 securities-hedging 1 -100111111101 mechanical-seals 1 -100111111101 nonauto 1 -100111111101 valuation-related 1 -100111111101 international-airline 1 -100111111101 right-to-refuse-treatment 1 -100111111101 new-grad 1 -100111111101 non-benchmark 1 -100111111101 toy-block 1 -100111111101 quality-oriented 1 -100111111101 office-refurbishing 1 -100111111101 Portland-Seattle 1 -100111111101 sanitary-napkin 1 -100111111101 AI-specialty 1 -100111111101 assetbacked 1 -100111111101 refrigeration-substitutes 1 -100111111101 bankpowers 1 -100111111101 sex-magazine 1 -100111111101 100-million-year-old 1 -100111111101 health-records 1 -100111111101 agriculture-biotech 1 -100111111101 not-so-simple 1 -100111111101 clip-below 1 -100111111101 rental-store 1 -100111111101 Naral 1 -100111111101 then-overheated 1 -100111111101 management-experience 1 -100111111101 ELV 1 -100111111101 syndicated-credit 1 -100111111101 banking-services 1 -100111111101 string-piano 1 -100111111101 Denver-to-Dallas 1 -100111111101 currency-driven 1 -100111111101 tiny-television 1 -100111111101 long-rising 1 -100111111101 quality-debt 1 -100111111101 island-versus-mainland 1 -100111111101 longignored 1 -100111111101 pre-tax-change 1 -100111111101 Eurowarrants 1 -100111111101 sexual-discrimination 1 -100111111101 logic-chip 1 -100111111101 theme-driven 1 -100111111101 U.S.-London 1 -100111111101 business-microcomputing 1 -100111111101 movie-print 1 -100111111101 sixth-most-active 1 -100111111101 utility-vehicle 1 -100111111101 electric-generation 1 -100111111101 sub-sector 1 -100111111101 engineering-workstation 1 -100111111101 naming-rights 1 -100111111101 consumer-consultation 1 -100111111101 book-of-the-year 1 -100111111101 photoprocessing 1 -100111111101 no-rust 1 -100111111101 economy-motel 1 -100111111101 home-dish 1 -100111111101 contract-suspension 1 -100111111101 home-insulation 1 -100111111101 noncarbonated-water 1 -100111111101 home-gardening 1 -100111111101 taxable-municipal 1 -100111111101 contra-funding 1 -100111111101 dining-out 1 -100111111101 two-diaper 1 -100111111101 personalcomputer 1 -100111111101 middle-Tennesse 1 -100111111101 nuptial 1 -100111111101 truck-parts 1 -100111111101 movieprint 1 -100111111101 business-minicomputer 1 -100111111101 much-called-for 1 -100111111101 employment-opportunity 1 -100111111101 expensive-car 1 -100111111101 construction-machine 1 -100111111101 video-cartridge 1 -100111111101 used-aircraft 1 -100111111101 ton-plus 1 -100111111101 sleep-deprivation 1 -100111111101 most-withered 1 -100111111101 station-license 1 -100111111101 service-level 1 -100111111101 secret-society-related 1 -100111111101 regional-security 1 -100111111101 now-glutted 1 -100111111101 news-driven 1 -100111111101 bottled-beer 1 -100111111101 therapy-denial 1 -100111111101 serious-speaker 1 -100111111101 now-deflated 1 -100111111101 drug-availability 1 -100111111101 compact-audio-disk 1 -100111111101 telephone-deregulation 1 -100111111101 preserved-plant 1 -100111111101 ornamental-plant 1 -100111111101 lowest-coupon 1 -100111111101 water-filtration 1 -100111111101 subconstitutional 1 -100111111101 ultra-deluxe 1 -100111111101 ultility 1 -100111111101 2,003 1 -100111111101 grain-sales 1 -100111111101 welfare-policy 1 -100111111101 tradable-goods 1 -100111111101 corn-herbicide 1 -100111111101 soybean-herbicide 1 -100111111101 bearer-bond 1 -100111111101 1,394 1 -100111111101 bond-backed 1 -100111111101 import-fee 1 -100111111101 rabies-vaccine 1 -100111111101 casual-shoe 1 -100111111101 worst-ranked 1 -100111111101 environmental-safety 1 -100111111101 bank-led 1 -100111111101 registered-share 1 -100111111101 election-cycle 1 -100111111101 letter-of-credit-backed 1 -100111111101 color-TV-set 1 -100111111101 Taiwan-mainland 1 -100111111101 happy-face 1 -100111111101 juvenile-book 1 -100111111101 after-bourse 1 -100111111101 government-destabilized 1 -100111111101 used-equipment 1 -100111111101 no-circumvention 1 -100111111101 older-people 1 -100111111101 4,378 1 -100111111101 luxury-watch 1 -100111111101 still-emerging 1 -100111111101 retirement-living 1 -100111111101 military-personnel 1 -100111111101 educational-software 1 -100111111101 canned-soup 1 -100111111101 quasi-stock 1 -100111111101 high-rate-deposit 1 -100111111101 used-3X 1 -100111111101 crash-collapsed 1 -100111111101 international-capital 1 -100111111101 fallout-shelter 1 -100111111101 tile-coatings 1 -100111111101 parent/child 1 -100111111101 right-to-counsel 1 -100111111101 automobile-loan 1 -100111111101 synthetic-food 1 -100111111101 mechanical-calculator 1 -100111111101 sea-transport 1 -100111111101 giant-capital 1 -100111111101 dollar-warrant 1 -100111111101 electronic-printing 1 -100111111101 underground-transfer 1 -100111111101 air-rights 1 -100111111101 polyester-fiber 1 -100111111101 often-stuffy 1 -100111111101 multifamily-home 1 -100111111101 matching-funds 1 -100111111101 utilities-index 1 -100111111101 once-coveted 1 -100111111101 high-rewards 1 -100111111101 small-issues 1 -100111111101 taped-music 1 -100111111101 less-than-resounding 1 -100111111101 retail-music 1 -100111111101 low-conviction 1 -100111111101 contract-law 1 -100111111101 community-wide 1 -100111111101 4,698-issue 1 -100111111101 international-oriented 1 -100111111101 bank-supported 1 -100111111101 most-divisive 1 -100111111101 cooled-down 1 -100111111101 UTS/UNIX 1 -100111111101 nonbrand 1 -100111111101 utilization-review 1 -100111111101 cold-cereal 1 -100111111101 diet-related 1 -100111111101 flavor-oriented 1 -100111111101 rumor-fraught 1 -100111111101 city-pair 1 -100111111101 personal-desktop-publishing 1 -100111111101 gold-loan 1 -100111111101 data-gathering-and-massaging 1 -100111111101 cleated 1 -100111111101 still-sprawling 1 -100111111101 foreign-exhange 1 -100111111101 high-cap 1 -100111111101 compact-stereo-component 1 -100111111101 cashmarket 1 -100111111101 foreign-movie 1 -100111111101 retirement-home 1 -100111111101 health-record 1 -100111111101 end-of-school 1 -100111111101 black-consumer 1 -100111111101 4,346 1 -100111111101 forex 1 -100111111101 bar-soap 1 -100111111101 three-installment 1 -100111111101 color-television-set 1 -100111111101 retiree-health-benefit 1 -100111111101 coffeemaker 1 -100111111101 ng 1 -100111111101 tomato-paste 1 -100111111101 rail-signaling 1 -100111111101 lightly-traded 1 -100111111101 size-of-government 1 -100111111101 self-medicated 1 -100111111101 manufacturerset 1 -100111111101 diabetes-care 1 -100111111101 hair-relaxer 1 -100111111101 mainframe-computing 1 -100111111101 big-tube 1 -100111111101 ruble-exchange 1 -100111111101 Canada-U.S.-Mexico 1 -100111111101 tax-backed 1 -100111111101 drug-pricing 1 -100111111101 prepared-food 1 -100111111101 newissue 1 -100111111101 offshore-reinsurance 1 -100111111101 PEN/Hemingway 1 -100111111101 day-labor 1 -100111111101 drought-elevated 1 -100111111101 4,405 1 -100111111101 prison-site 1 -100111111101 4,402 1 -100111111101 diluge 1 -100111111101 inter-bank 1 -100111111101 ash-disposal 1 -100111111101 new-powers 1 -100111111101 medium-price 1 -100111111101 time-deposits 1 -100111111101 containership 1 -100111111101 best-funded 1 -100111111101 water-diversion 1 -100111111101 industrial-enzymes 1 -100111111101 military-simulator 1 -100111111101 still-camera 1 -100111111101 single-premium-life 1 -100111111101 yen-interest 1 -100111111101 dollar-interest 1 -100111111101 world-oil 2 -100111111101 bean-oil 2 -100111111101 initial-offering 2 -100111111101 commodity-swap 2 -100111111101 Eurodollar-deposit 2 -100111111101 credit-enhancement 2 -100111111101 cooking-appliance 2 -100111111101 used-computer 2 -100111111101 front-burner 2 -100111111101 tire-division 2 -100111111101 supermarket-chain 2 -100111111101 still-fragmented 2 -100111111101 single-dish 2 -100111111101 farm-commodity 2 -100111111101 luxury-housing 2 -100111111101 trash-hauling 2 -100111111101 freescrip 2 -100111111101 ballute 2 -100111111101 salted-nut 2 -100111111101 cat-food 2 -100111111101 hotel-industry 2 -100111111101 chip-supply 2 -100111111101 biotechnolgy 2 -100111111101 preference-share 2 -100111111101 straight-bond 2 -100111111101 noncontrolled 2 -100111111101 consumer-battery 2 -100111111101 hot-cereal 2 -100111111101 merger-driven 2 -100111111101 homemarket 2 -100111111101 bulk-fuels 3 -100111111101 heavy-freight 3 -100111111101 Pacific-route 3 -100111111101 silver-futures 3 -100111111101 best-received 3 -100111111101 fixedincome 3 -100111111101 mortgage-backed-securities 3 -100111111101 white-out 3 -100111111101 debt-futures 3 -100111111101 sovereign-debt 3 -100111111101 secondary-mortgage 3 -100111111101 conventional-mortgage 3 -100111111101 sun-screen 3 -100111111101 regional-airline 3 -100111111101 secondary-loan 3 -100111111101 outdoor-equipment 3 -100111111101 Sinking-Fund 4 -100111111101 1,053 4 -100111111101 crude-futures 4 -100111111101 post-stock 4 -100111111101 financial-asset 4 -100111111101 bulk-power 4 -100111111101 personal-loan 4 -100111111101 gas-futures 4 -100111111101 aerobic-shoe 4 -100111111101 hog-futures 4 -100111111101 pet-supplies 4 -100111111101 aviation-fuel 5 -100111111101 floating-rate-note 5 -100111111101 syndicated-loan 5 -100111111101 private-insurance 5 -100111111101 bond-index 6 -100111111101 collectible-car 6 -100111111101 Newark-Chicago 6 -100111111101 color-copier 6 -100111111101 yen-bond 7 -100111111101 free-exchange 7 -100111111101 long-bond 8 -100111111101 conventional-film 8 -100111111101 debt-securities 8 -100111111101 GIC 8 -100111111101 new-share 9 -100111111101 A-scale 9 -100111111101 refined-product 10 -100111111101 farm-land 11 -100111111101 foreign-bond 15 -100111111101 corporate-bond 17 -100111111101 straight-debt 20 -100111111101 bond-futures 20 -100111111101 new-issues 21 -100111111101 convertible-bond 22 -100111111101 CMO 24 -100111111101 flea 26 -100111111101 financial-futures 28 -100111111101 muni 30 -100111111101 commercial-paper 34 -100111111101 government-bond 36 -100111111101 government-securities 67 -100111111101 municipal-bond 113 -100111111101 gilt 148 -100111111101 new-issue 185 -100111111101 junk-bond 543 -100111111101 Eurobond 597 -100111111101 bull 960 -100111111101 bond 11005 -100111111101 secondary 1380 -1001111111100 flower-bulb 1 -1001111111100 102,333 1 -1001111111100 ivestment 1 -1001111111100 exemptive 1 -1001111111100 store-package 1 -1001111111100 snack-cake 1 -1001111111100 municipal-utility 1 -1001111111100 non-OTC 1 -1001111111100 exhaust-emission 1 -1001111111100 capital-import 1 -1001111111100 copper-contract 1 -1001111111100 high-competition 1 -1001111111100 electronic-technology 1 -1001111111100 two-machine 1 -1001111111100 chart-conscious 1 -1001111111100 antihistamine-decongestant 1 -1001111111100 unit/dollar 1 -1001111111100 market-gasoline 1 -1001111111100 noncapitalist 1 -1001111111100 foreign-share 1 -1001111111100 peripheral-products 1 -1001111111100 rate-dominated 1 -1001111111100 undercompetitive 1 -1001111111100 quasi-market 1 -1001111111100 oil-share 1 -1001111111100 pipeline-supply 1 -1001111111100 Ministry-stock 1 -1001111111100 after-holiday 1 -1001111111100 MITI-funded 1 -1001111111100 expenditure/GDP 1 -1001111111100 heavy-job 1 -1001111111100 48,775 1 -1001111111100 building-industry 1 -1001111111100 20-bond 1 -1001111111100 Frenetic 1 -1001111111100 inflation-fueled 1 -1001111111100 new-equipment 1 -1001111111100 options-arbitraging 1 -1001111111100 sports-art 1 -1001111111100 job-producing 1 -1001111111100 migrant-visa 1 -1001111111100 profit-enhancing 1 -1001111111100 cooking-gas 1 -1001111111100 still-outraged 1 -1001111111100 international-defense 1 -1001111111100 standard-form 1 -1001111111100 multiplane 1 -1001111111100 phone-exchange 1 -1001111111100 noise-detecting 1 -1001111111100 sales-restructuring 1 -1001111111100 breakfast-cereal 1 -1001111111100 polymer-products 1 -1001111111100 guaranteed-value 1 -1001111111100 in-the-kitchen 1 -1001111111100 individual-stock 1 -1001111111100 computer-stock 1 -1001111111100 chicken-breast 1 -1001111111100 coal-sales 1 -1001111111100 local-news 1 -1001111111100 beet-growing 1 -1001111111100 straight-down 1 -1001111111100 7,253 1 -1001111111100 sleep-and-wake 1 -1001111111100 farm-futures 1 -1001111111100 smallinvestor 1 -1001111111100 March-contract 2 -1001111111100 Tianguis 2 -1001111111100 hubcap 2 -1001111111100 post-theatrical 2 -1001111111100 mortgage-market 2 -1001111111100 1987-1991 2 -1001111111100 price-tag 2 -1001111111100 crude-oil-futures 2 -1001111111100 apparel-fabric 2 -1001111111100 ordinaries 2 -1001111111100 field-services 2 -1001111111100 forward-dollar 2 -1001111111100 back-month 2 -1001111111100 index-option 2 -1001111111100 grain-futures 3 -1001111111100 front-month 3 -1001111111100 stackers 3 -1001111111100 naturalists 3 -1001111111100 glycols 3 -1001111111100 crude-goods 3 -1001111111100 direct-market 3 -1001111111100 Hermanos 3 -1001111111100 forward-oil 4 -1001111111100 corn-futures 4 -1001111111100 frankfurter 4 -1001111111100 currency-futures 6 -1001111111100 government-regulated 6 -1001111111100 cattle-futures 7 -1001111111100 futures-contract 7 -1001111111100 commodity-futures 8 -1001111111100 wheat-futures 9 -1001111111100 yen-futures 10 -1001111111100 finished-goods 10 -1001111111100 stock-futures 11 -1001111111100 energy-futures 12 -1001111111100 stock-index-futures 13 -1001111111100 stock-options 13 -1001111111100 futures-prices 13 -1001111111100 soybean-futures 14 -1001111111100 green-coffee 16 -1001111111100 gas-purchase 16 -1001111111100 oil-futures 21 -1001111111100 precious-metal 23 -1001111111100 index-futures 23 -1001111111100 precious-metals 159 -1001111111100 belly 225 -1001111111100 bullion 335 -1001111111100 commodities 1130 -1001111111100 metals 1993 -1001111111100 futures 9813 -1001111111100 commodity 2083 -1001111111101 135.57 1 -1001111111101 130.62 1 -1001111111101 125.29 1 -1001111111101 133.03 1 -1001111111101 131.60 1 -1001111111101 131.52 1 -1001111111101 130.47 1 -1001111111101 129.72 1 -1001111111101 131.46 1 -1001111111101 1251.12 1 -1001111111101 125.46 1 -1001111111101 128.49 1 -1001111111101 126.87 1 -1001111111101 126.14 1 -1001111111101 126.86 1 -1001111111101 124.16 1 -1001111111101 122.72 1 -1001111111101 126.81 1 -1001111111101 124.31 1 -1001111111101 124.45 1 -1001111111101 124.74 1 -1001111111101 1311.45 1 -1001111111101 Sinkiang 1 -1001111111101 127.56 1 -1001111111101 126.63 1 -1001111111101 129.53 1 -1001111111101 125.33 1 -1001111111101 126.23 1 -1001111111101 132.59 1 -1001111111101 125.16 1 -1001111111101 127.32 1 -1001111111101 113.74 1 -1001111111101 126.51 1 -1001111111101 127.87 1 -1001111111101 127.44 1 -1001111111101 129.02 1 -1001111111101 Oman-all 1 -1001111111101 125.79 1 -1001111111101 128.84 1 -1001111111101 129.91 1 -1001111111101 112.88 1 -1001111111101 113.23 1 -1001111111101 130.12 1 -1001111111101 129.52 1 -1001111111101 131.13 1 -1001111111101 134.86 1 -1001111111101 130.08 1 -1001111111101 129.29 1 -1001111111101 131.43 1 -1001111111101 128.85 1 -1001111111101 125.42 1 -1001111111101 127.53 1 -1001111111101 126.06 1 -1001111111101 127.64 1 -1001111111101 126.52 1 -1001111111101 128.31 1 -1001111111101 125.91 1 -1001111111101 126.29 1 -1001111111101 129.68 1 -1001111111101 129.51 1 -1001111111101 131.03 1 -1001111111101 127.72 1 -1001111111101 128.72 1 -1001111111101 135.64 1 -1001111111101 135.91 1 -1001111111101 136.09 1 -1001111111101 134.92 1 -1001111111101 139.03 1 -1001111111101 138.51 1 -1001111111101 134.49 1 -1001111111101 139.28 1 -1001111111101 insurance-against 1 -1001111111101 132.91 1 -1001111111101 137.45 1 -1001111111101 136.56 1 -1001111111101 113.80 1 -1001111111101 113.43 1 -1001111111101 137.72 1 -1001111111101 137.43 1 -1001111111101 133.77 1 -1001111111101 137.33 1 -1001111111101 136.48 1 -1001111111101 135.88 1 -1001111111101 136.71 1 -1001111111101 1239.18 1 -1001111111101 136.49 1 -1001111111101 254-43-05 1 -1001111111101 134.16 1 -1001111111101 134.51 1 -1001111111101 134.67 1 -1001111111101 134.63 1 -1001111111101 137.96 1 -1001111111101 137.66 1 -1001111111101 1242.15 1 -1001111111101 133.89 1 -1001111111101 136.86 1 -1001111111101 130.76 1 -1001111111101 130.57 1 -1001111111101 137.84 1 -1001111111101 133.09 1 -1001111111101 126.71 1 -1001111111101 126.73 1 -1001111111101 131.42 1 -1001111111101 132.39 1 -1001111111101 800-424-3676 1 -1001111111101 137.90 1 -1001111111101 135.13 1 -1001111111101 138.68 1 -1001111111101 138.22 1 -1001111111101 kudohka 1 -1001111111101 139.22 1 -1001111111101 139.13 1 -1001111111101 warlocks 1 -1001111111101 135.24 1 -1001111111101 139.53 1 -1001111111101 137.27 1 -1001111111101 136.63 1 -1001111111101 139.58 1 -1001111111101 135.41 1 -1001111111101 135.73 1 -1001111111101 139.62 1 -1001111111101 137.34 1 -1001111111101 140.81 1 -1001111111101 136.24 1 -1001111111101 120.00 1 -1001111111101 119.04 1 -1001111111101 120.02 1 -1001111111101 119.22 1 -1001111111101 118.41 1 -1001111111101 118.53 1 -1001111111101 118.26 1 -1001111111101 114.51 1 -1001111111101 1-800-424-FORM 1 -1001111111101 115.26 1 -1001111111101 120.42 1 -1001111111101 119.76 1 -1001111111101 117.18 1 -1001111111101 130.19 1 -1001111111101 117.13 1 -1001111111101 212-587-1111 1 -1001111111101 115.06 1 -1001111111101 115.15 1 -1001111111101 115.63 1 -1001111111101 116.90 1 -1001111111101 117.71 1 -1001111111101 116.82 1 -1001111111101 114.61 1 -1001111111101 115.48 1 -1001111111101 115.44 1 -1001111111101 116.63 1 -1001111111101 116.22 1 -1001111111101 116.12 1 -1001111111101 116.79 1 -1001111111101 117.12 1 -1001111111101 114.95 1 -1001111111101 114.50 1 -1001111111101 113.79 1 -1001111111101 113.30 1 -1001111111101 secured-debt 1 -1001111111101 114.14 1 -1001111111101 113.61 1 -1001111111101 114.31 1 -1001111111101 115.59 1 -1001111111101 114.24 1 -1001111111101 114.98 1 -1001111111101 113.81 1 -1001111111101 114.55 1 -1001111111101 115.09 1 -1001111111101 816-926-0060 1 -1001111111101 122.10 1 -1001111111101 122.63 1 -1001111111101 124.13 1 -1001111111101 executory 1 -1001111111101 130.29 1 -1001111111101 121.14 1 -1001111111101 131.05 1 -1001111111101 120.62 1 -1001111111101 121.79 1 -1001111111101 123.08 1 -1001111111101 129.49 1 -1001111111101 122.15 1 -1001111111101 127.61 1 -1001111111101 124.81 1 -1001111111101 127.81 1 -1001111111101 127.51 1 -1001111111101 127.24 1 -1001111111101 123.72 1 -1001111111101 123.46 1 -1001111111101 123.32 1 -1001111111101 115.04 1 -1001111111101 114.23 1 -1001111111101 114.10 1 -1001111111101 1383.01 1 -1001111111101 131.40 1 -1001111111101 131.38 1 -1001111111101 130.72 1 -1001111111101 115.46 1 -1001111111101 113.96 1 -1001111111101 131.47 1 -1001111111101 115.27 1 -1001111111101 114.22 1 -1001111111101 115.81 1 -1001111111101 114.71 1 -1001111111101 116.08 1 -1001111111101 116.04 1 -1001111111101 115.56 1 -1001111111101 132.84 1 -1001111111101 132.47 1 -1001111111101 118.14 1 -1001111111101 119.39 1 -1001111111101 118.06 1 -1001111111101 118.09 1 -1001111111101 120.63 1 -1001111111101 120.43 1 -1001111111101 119.66 1 -1001111111101 121.39 1 -1001111111101 116.69 1 -1001111111101 117.64 1 -1001111111101 116.27 1 -1001111111101 126.04 1 -1001111111101 129.86 1 -1001111111101 128.16 1 -1001111111101 128.43 1 -1001111111101 126.11 1 -1001111111101 127.19 1 -1001111111101 126.93 1 -1001111111101 131.27 1 -1001111111101 127.59 1 -1001111111101 128.68 1 -1001111111101 130.87 1 -1001111111101 micro-instructions 1 -1001111111101 113.77 1 -1001111111101 113.07 1 -1001111111101 126.47 1 -1001111111101 132.33 1 -1001111111101 131.78 1 -1001111111101 134.14 1 -1001111111101 132.23 1 -1001111111101 133.79 1 -1001111111101 132.76 1 -1001111111101 1242.49 1 -1001111111101 112.85 1 -1001111111101 129.47 1 -1001111111101 130.20 1 -1001111111101 113.62 1 -1001111111101 113.70 1 -1001111111101 136.02 1 -1001111111101 1259.62 1 -1001111111101 128.71 1 -1001111111101 126.09 1 -1001111111101 133.70 1 -1001111111101 1-800-626-3333 1 -1001111111101 132.67 1 -1001111111101 135.44 1 -1001111111101 end-of-month 1 -1001111111101 135.32 1 -1001111111101 115.90 1 -1001111111101 114.16 1 -1001111111101 116.51 1 -1001111111101 115.79 1 -1001111111101 115.93 1 -1001111111101 112.90 1 -1001111111101 113.94 1 -1001111111101 115.14 1 -1001111111101 115.00 1 -1001111111101 115.49 1 -1001111111101 115.92 1 -1001111111101 115.85 1 -1001111111101 116.83 1 -1001111111101 114.15 1 -1001111111101 115.67 1 -1001111111101 115.05 1 -1001111111101 115.38 1 -1001111111101 116.01 1 -1001111111101 116.34 1 -1001111111101 128.21 1 -1001111111101 130.80 1 -1001111111101 128.91 1 -1001111111101 113.14 1 -1001111111101 128.18 1 -1001111111101 131.21 1 -1001111111101 1196.00 1 -1001111111101 115.61 1 -1001111111101 114.72 1 -1001111111101 114.46 1 -1001111111101 114.84 1 -1001111111101 115.69 1 -1001111111101 112.93 1 -1001111111101 Iranograms 1 -1001111111101 115.86 1 -1001111111101 134.26 1 -1001111111101 134.62 1 -1001111111101 1321.41 1 -1001111111101 3282.31 1 -1001111111101 129.99 1 -1001111111101 1324.07 1 -1001111111101 135.61 1 -1001111111101 1311.69 1 -1001111111101 136.15 1 -1001111111101 134.36 1 -1001111111101 301-955-7703 1 -1001111111101 129.67 1 -1001111111101 3302.47 1 -1001111111101 3271.65 1 -1001111111101 131.09 1 -1001111111101 134.21 1 -1001111111101 1329.20 1 -1001111111101 301-443-3504 1 -1001111111101 301-295-8012 1 -1001111111101 130.59 1 -1001111111101 134.48 1 -1001111111101 132.54 1 -1001111111101 shrimp-trawler 1 -1001111111101 132.02 1 -1001111111101 128.07 1 -1001111111101 131.34 1 -1001111111101 3283.08 1 -1001111111101 1306.00 1 -1001111111101 128.52 1 -1001111111101 3290.17 1 -1001111111101 3309.27 1 -1001111111101 128.51 1 -1001111111101 142.44 1 -1001111111101 139.82 1 -1001111111101 138.02 1 -1001111111101 136.96 1 -1001111111101 3288.04 1 -1001111111101 141.62 1 -1001111111101 138.52 1 -1001111111101 3273.85 1 -1001111111101 138.23 1 -1001111111101 134.19 1 -1001111111101 140.73 1 -1001111111101 3260.04 1 -1001111111101 upgraded-corporate 1 -1001111111101 129.39 1 -1001111111101 134.41 1 -1001111111101 132.82 1 -1001111111101 134.81 1 -1001111111101 131.91 1 -1001111111101 128.38 1 -1001111111101 113.72 1 -1001111111101 130.21 1 -1001111111101 3286.90 1 -1001111111101 136.68 1 -1001111111101 shortcake 1 -1001111111101 3301.17 1 -1001111111101 3345.70 1 -1001111111101 131.86 1 -1001111111101 128.99 1 -1001111111101 131.30 1 -1001111111101 129.85 1 -1001111111101 3294.90 1 -1001111111101 129.74 1 -1001111111101 3302.41 1 -1001111111101 3336.13 1 -1001111111101 127.31 1 -1001111111101 133.26 1 -1001111111101 130.28 1 -1001111111101 3337.61 1 -1001111111101 132.19 1 -1001111111101 135.02 1 -1001111111101 132.22 1 -1001111111101 3328.83 1 -1001111111101 127.21 1 -1001111111101 1265.00 1 -1001111111101 132.08 1 -1001111111101 131.71 1 -1001111111101 3317.72 1 -1001111111101 3330.03 1 -1001111111101 3323.47 1 -1001111111101 130.61 1 -1001111111101 1296.13 1 -1001111111101 129.44 1 -1001111111101 132.62 1 -1001111111101 129.59 1 -1001111111101 127.09 1 -1001111111101 slip-and-fall 1 -1001111111101 132.93 1 -1001111111101 129.24 1 -1001111111101 129.13 1 -1001111111101 135.17 1 -1001111111101 130.05 1 -1001111111101 3310.66 1 -1001111111101 129.83 1 -1001111111101 133.33 1 -1001111111101 129.16 1 -1001111111101 3309.98 1 -1001111111101 3335.28 1 -1001111111101 3330.80 1 -1001111111101 130.38 1 -1001111111101 134.91 1 -1001111111101 132.12 1 -1001111111101 130.53 1 -1001111111101 1312.55 1 -1001111111101 131.99 1 -1001111111101 127.76 1 -1001111111101 131.89 1 -1001111111101 3316.11 1 -1001111111101 129.37 1 -1001111111101 3398.84 1 -1001111111101 128.47 1 -1001111111101 128.28 1 -1001111111101 3334.96 1 -1001111111101 retyping 1 -1001111111101 130.88 1 -1001111111101 138.98 1 -1001111111101 Wasabelle 1 -1001111111101 135.36 1 -1001111111101 131.06 1 -1001111111101 3364.20 1 -1001111111101 128.13 1 -1001111111101 3302.78 1 -1001111111101 128.73 1 -1001111111101 3304.42 1 -1001111111101 134.61 1 -1001111111101 junkification 1 -1001111111101 132.32 1 -1001111111101 142.54 1 -1001111111101 136.84 1 -1001111111101 3302.17 1 -1001111111101 136.44 1 -1001111111101 141.91 1 -1001111111101 129.23 1 -1001111111101 135.67 1 -1001111111101 3303.44 1 -1001111111101 137.28 1 -1001111111101 3293.27 1 -1001111111101 130.92 1 -1001111111101 141.79 1 -1001111111101 137.19 1 -1001111111101 129.03 1 -1001111111101 3332.36 1 -1001111111101 202-566-3171 1 -1001111111101 141.93 1 -1001111111101 136.16 1 -1001111111101 136.32 1 -1001111111101 141.47 1 -1001111111101 136.82 1 -1001111111101 132.99 1 -1001111111101 3351.00 1 -1001111111101 135.52 1 -1001111111101 koala 1 -1001111111101 3373.79 1 -1001111111101 3376.52 1 -1001111111101 3321.95 1 -1001111111101 136.30 1 -1001111111101 1198.37 1 -1001111111101 135.01 1 -1001111111101 132.41 1 -1001111111101 3320.24 1 -1001111111101 136.12 1 -1001111111101 132.09 1 -1001111111101 3372.02 1 -1001111111101 128.12 1 -1001111111101 136.11 1 -1001111111101 3378.46 1 -1001111111101 electronic-transaction 1 -1001111111101 3322.41 1 -1001111111101 135.19 1 -1001111111101 131.59 1 -1001111111101 133.32 1 -1001111111101 3323.09 1 -1001111111101 3320.70 1 -1001111111101 129.31 1 -1001111111101 135.79 1 -1001111111101 134.42 1 -1001111111101 135.96 1 -1001111111101 139.77 1 -1001111111101 3290.64 1 -1001111111101 141.57 1 -1001111111101 133.76 1 -1001111111101 142.29 1 -1001111111101 137.63 1 -1001111111101 3305.07 1 -1001111111101 141.76 1 -1001111111101 138.79 1 -1001111111101 135.68 1 -1001111111101 129.04 1 -1001111111101 3287.17 1 -1001111111101 139.87 1 -1001111111101 141.52 1 -1001111111101 Solidarity-controlled 1 -1001111111101 133.12 1 -1001111111101 130.44 1 -1001111111101 3285.93 1 -1001111111101 140.89 1 -1001111111101 143.44 1 -1001111111101 3400.61 1 -1001111111101 142.12 1 -1001111111101 142.99 1 -1001111111101 3289.54 1 -1001111111101 144.54 1 -1001111111101 3290.19 1 -1001111111101 3285.65 1 -1001111111101 139.08 1 -1001111111101 133.91 1 -1001111111101 142.36 1 -1001111111101 140.79 1 -1001111111101 141.08 1 -1001111111101 137.56 1 -1001111111101 3287.63 1 -1001111111101 137.55 1 -1001111111101 3262.16 1 -1001111111101 135.99 1 -1001111111101 139.92 1 -1001111111101 130.58 2 -1001111111101 114.33 2 -1001111111101 134.32 2 -1001111111101 128.36 2 -1001111111101 recourses 2 -1001111111101 share-equivalents 2 -1001111111101 moderne 2 -1001111111101 115.45 2 -1001111111101 114.52 2 -1001111111101 131.26 2 -1001111111101 115.40 2 -1001111111101 134.94 2 -1001111111101 anti-fashion 2 -1001111111101 130.69 2 -1001111111101 128.10 2 -1001111111101 134.46 2 -1001111111101 129.94 2 -1001111111101 Karadjordje 2 -1001111111101 116.74 2 -1001111111101 128.39 2 -1001111111101 130.93 2 -1001111111101 129.26 2 -1001111111101 127.94 2 -1001111111101 130.78 2 -1001111111101 115.01 2 -1001111111101 113.59 2 -1001111111101 131.48 2 -1001111111101 115.98 2 -1001111111101 131.16 2 -1001111111101 128.58 2 -1001111111101 130.73 2 -1001111111101 129.56 2 -1001111111101 140.37 2 -1001111111101 133.97 2 -1001111111101 128.70 2 -1001111111101 130.68 2 -1001111111101 116.46 2 -1001111111101 129.78 2 -1001111111101 129.63 2 -1001111111101 129.21 2 -1001111111101 127.29 2 -1001111111101 lifeinsurance 2 -1001111111101 116.02 2 -1001111111101 133.02 2 -1001111111101 130.54 2 -1001111111101 134.18 2 -1001111111101 132.36 2 -1001111111101 136.01 2 -1001111111101 134.47 2 -1001111111101 128.03 2 -1001111111101 114.59 2 -1001111111101 137.10 2 -1001111111101 138.66 2 -1001111111101 138.78 2 -1001111111101 130.49 2 -1001111111101 134.04 2 -1001111111101 135.63 2 -1001111111101 135.39 2 -1001111111101 137.88 2 -1001111111101 hither 2 -1001111111101 117.60 2 -1001111111101 thioridazine 2 -1001111111101 137.09 2 -1001111111101 Scuds 2 -1001111111101 magnetometer 2 -1001111111101 134.74 2 -1001111111101 130.17 2 -1001111111101 129.45 2 -1001111111101 128.14 2 -1001111111101 130.85 2 -1001111111101 134.54 2 -1001111111101 129.66 2 -1001111111101 116.17 2 -1001111111101 116.38 2 -1001111111101 117.09 2 -1001111111101 129.17 2 -1001111111101 profit-skimming 2 -1001111111101 Cordley 2 -1001111111101 132.69 2 -1001111111101 127.97 2 -1001111111101 127.74 2 -1001111111101 135.04 2 -1001111111101 Congress-bashing 2 -1001111111101 131.96 2 -1001111111101 133.18 2 -1001111111101 131.82 2 -1001111111101 134.33 2 -1001111111101 134.84 2 -1001111111101 131.62 2 -1001111111101 132.28 2 -1001111111101 deceits 2 -1001111111101 133.01 2 -1001111111101 129.22 2 -1001111111101 119.58 2 -1001111111101 132.44 2 -1001111111101 128.29 2 -1001111111101 127.92 2 -1001111111101 128.56 2 -1001111111101 132.16 2 -1001111111101 126.69 2 -1001111111101 134.39 2 -1001111111101 merchandise-margin 2 -1001111111101 132.72 2 -1001111111101 128.92 2 -1001111111101 131.14 2 -1001111111101 heartbreaks 2 -1001111111101 131.33 2 -1001111111101 116.09 2 -1001111111101 132.71 2 -1001111111101 126.66 2 -1001111111101 127.96 2 -1001111111101 115.42 3 -1001111111101 128.48 3 -1001111111101 126.61 3 -1001111111101 115.41 3 -1001111111101 Fedvolks 3 -1001111111101 129.97 3 -1001111111101 116.14 3 -1001111111101 1207.12 3 -1001111111101 snappish 3 -1001111111101 130.46 3 -1001111111101 113.39 3 -1001111111101 132.96 3 -1001111111101 thrill-seeking 3 -1001111111101 131.32 3 -1001111111101 129.64 3 -1001111111101 129.90 3 -1001111111101 placemats 3 -1001111111101 futures-options 3 -1001111111101 129.48 3 -1001111111101 128.19 3 -1001111111101 129.46 3 -1001111111101 129.07 3 -1001111111101 129.34 3 -1001111111101 128.64 3 -1001111111101 127.62 3 -1001111111101 132.61 3 -1001111111101 132.29 3 -1001111111101 sash 3 -1001111111101 Tyvek 3 -1001111111101 131.68 3 -1001111111101 133.46 3 -1001111111101 1213.35 3 -1001111111101 136.31 3 -1001111111101 ill-housed 3 -1001111111101 135.29 3 -1001111111101 128.41 3 -1001111111101 glycerin 3 -1001111111101 weak-willed 3 -1001111111101 128.37 3 -1001111111101 131.84 3 -1001111111101 129.77 4 -1001111111101 bedspreads 4 -1001111111101 sororities 4 -1001111111101 130.36 4 -1001111111101 134.11 4 -1001111111101 134.44 4 -1001111111101 clerking 4 -1001111111101 100-to-1 4 -1001111111101 HEDI 4 -1001111111101 129.54 4 -1001111111101 postured 4 -1001111111101 132.88 4 -1001111111101 128.22 4 -1001111111101 115.84 4 -1001111111101 strivers 4 -1001111111101 markets. 4 -1001111111101 130.63 4 -1001111111101 brokerdealers 4 -1001111111101 appetizer 5 -1001111111101 outgo 5 -1001111111101 scalpels 5 -1001111111101 biologics 5 -1001111111101 orthodontics 5 -1001111111101 zingers 6 -1001111111101 thesaurus 6 -1001111111101 phosphates 6 -1001111111101 Lightness 6 -1001111111101 WRKO-AM 6 -1001111111101 Optica 6 -1001111111101 grooms 6 -1001111111101 Motrin 7 -1001111111101 SS-25s 8 -1001111111101 rutile 8 -1001111111101 roadwork 8 -1001111111101 crispy 9 -1001111111101 clearinghouses 10 -1001111111101 silks 10 -1001111111101 best-sellers 10 -1001111111101 Mastercard 11 -1001111111101 bequests 12 -1001111111101 consumerism 23 -1001111111101 MasterCards 25 -1001111111101 participations 33 -1001111111101 subcontracts 46 -1001111111101 collectibles 46 -1001111111101 antiques 58 -1001111111101 ammunition 309 -1001111111101 collateral 781 -1001111111101 arbitrage 1332 -1001111111101 warrants 1858 -1001111111101 options 5475 -1001111111101 overseas 2818 -1001111111110 esate 1 -1001111111110 grabber 1 -1001111111110 p-e 1 -1001111111110 world-events 1 -1001111111110 Laundromat 1 -1001111111110 under-recorded 1 -1001111111110 87-56 1 -1001111111110 estate. 1 -1001111111110 baddies 1 -1001111111110 Megadeaths 1 -1001111111110 bustiers 1 -1001111111110 Installer 1 -1001111111110 Southern-fried 1 -1001111111110 WOO 1 -1001111111110 Senesino 1 -1001111111110 tingly 1 -1001111111110 topsyturvy 1 -1001111111110 Proofing 1 -1001111111110 Saturnalia 1 -1001111111110 Antilles-registered 1 -1001111111110 angelicism 1 -1001111111110 asset-level 1 -1001111111110 new-era 1 -1001111111110 prolixity 1 -1001111111110 Krystle 1 -1001111111110 estate-investment 1 -1001111111110 estate-income 1 -1001111111110 Pomus 1 -1001111111110 advertisingwise 1 -1001111111110 Rescheduling 1 -1001111111110 anti-handgun 1 -1001111111110 Euro-handwringing 1 -1001111111110 edgier 1 -1001111111110 laserlike 1 -1001111111110 speed-shifting 1 -1001111111110 Power-Dow 1 -1001111111110 knee-slapping 1 -1001111111110 taxi-cab 1 -1001111111110 most-owned 1 -1001111111110 top-shelf 1 -1001111111110 orangy-pinks 1 -1001111111110 Sont 1 -1001111111110 sont 1 -1001111111110 de-Nazification 1 -1001111111110 non-bargains 1 -1001111111110 most-aggressive 1 -1001111111110 art-buyer 1 -1001111111110 Western-level 1 -1001111111110 plugger 1 -1001111111110 Japanese-European 1 -1001111111110 pixxax 1 -1001111111110 VIOLATED 1 -1001111111110 PROFESSOR 1 -1001111111110 Gossips 1 -1001111111110 antiyuppie 1 -1001111111110 Mahal-flavor 1 -1001111111110 rib-tickling 1 -1001111111110 dualisms 1 -1001111111110 estate-finance 1 -1001111111110 whipper-snapper 1 -1001111111110 Princeton-based 1 -1001111111110 estate-based 2 -1001111111110 Majal 2 -1001111111110 Boilerworks 2 -1001111111110 Aryans 2 -1001111111110 estate-secured 2 -1001111111110 problem. 2 -1001111111110 multipaks 2 -1001111111110 honest-to-goodness 2 -1001111111110 difficilior 2 -1001111111110 estate-rich 3 -1001111111110 visors 6 -1001111111110 estate-related 8 -1001111111110 Antilles-based 8 -1001111111110 Theorist 16 -1001111111110 Mahal 129 -1001111111110 estate 7130 -1001111111110 Antilles 180 -1001111111111 822-mile 1 -1001111111111 acrylic-resin 1 -1001111111111 ampitheater 1 -1001111111111 related-services 1 -1001111111111 D-series 1 -1001111111111 natural-resouces 1 -1001111111111 sportinggoods 1 -1001111111111 hand-knitting 1 -1001111111111 wastage. 1 -1001111111111 rotary-screw 1 -1001111111111 streamers. 1 -1001111111111 five-well 1 -1001111111111 donation-related 1 -1001111111111 WLII 1 -1001111111111 ba-nee-nees 1 -1001111111111 900-kilometer 1 -1001111111111 market-busting 1 -1001111111111 indigenously 1 -1001111111111 mini-hydro 1 -1001111111111 nonrenewable 1 -1001111111111 135-mile 1 -1001111111111 fibreoptic 1 -1001111111111 yang 1 -1001111111111 Reappraisals 1 -1001111111111 theater-operating 1 -1001111111111 hospital-bed 1 -1001111111111 urban-landscaping 1 -1001111111111 luxury-item 1 -1001111111111 ground-delivery 1 -1001111111111 Greenspans 1 -1001111111111 voice-transaction 1 -1001111111111 clinical-scale 1 -1001111111111 Oglivy 1 -1001111111111 pleurisy 1 -1001111111111 urban-redevelopment 1 -1001111111111 blood-plasma 1 -1001111111111 185,000-square-foot 1 -1001111111111 nitrogen-oxides 1 -1001111111111 608-mile 1 -1001111111111 gas-holding 1 -1001111111111 photographic-papers 1 -1001111111111 almuninum 1 -1001111111111 blood-collection 1 -1001111111111 agro-industries 1 -1001111111111 electronics-assembly 1 -1001111111111 industrial-supply 1 -1001111111111 synthetic-fuel 1 -1001111111111 concrete-encased 1 -1001111111111 44-cent-a-unit 1 -1001111111111 collection-agency 1 -1001111111111 TransAlaska 1 -1001111111111 two-Skoda 1 -1001111111111 multipolar 1 -1001111111111 harmony. 1 -1001111111111 new-prison 1 -1001111111111 wood-room 1 -1001111111111 Valley-like 1 -1001111111111 Suze 1 -1001111111111 amusements-machine 1 -1001111111111 error-checking 1 -1001111111111 brand-development 1 -1001111111111 latex-glove 1 -1001111111111 1,050-kilometer 1 -1001111111111 mining-services 1 -1001111111111 molls 1 -1001111111111 downsies 1 -1001111111111 Remand 1 -1001111111111 113,000-square-foot 1 -1001111111111 coastal-oil 1 -1001111111111 drug-packaging 1 -1001111111111 refining-and-marketing 1 -1001111111111 newhome 1 -1001111111111 investigative-services 1 -1001111111111 inland-marine 1 -1001111111111 cotton-candy 1 -1001111111111 uhs 1 -1001111111111 re-certify 1 -1001111111111 animal-byproducts 1 -1001111111111 mortgage-bond 1 -1001111111111 Dataspan 1 -1001111111111 metal-marketing 1 -1001111111111 systems-engineering 1 -1001111111111 diversified-foods 1 -1001111111111 import-competing 1 -1001111111111 membership-campground 1 -1001111111111 control-system 1 -1001111111111 student-loan-servicing 1 -1001111111111 forestry-products 1 -1001111111111 pharamaceutical 1 -1001111111111 Climatrol 1 -1001111111111 lowest-margin 1 -1001111111111 management-service 1 -1001111111111 chitin 1 -1001111111111 K-Tec 1 -1001111111111 KMEZ-AM 1 -1001111111111 seascapes 1 -1001111111111 new-airport 1 -1001111111111 incandescent-lamp 1 -1001111111111 mortgage- 1 -1001111111111 non-mortgaged 1 -1001111111111 cocooner 1 -1001111111111 gnarled-handed 1 -1001111111111 59-mile 1 -1001111111111 securitues 1 -1001111111111 timing-products 1 -1001111111111 new-oil 1 -1001111111111 electrical-contacts 1 -1001111111111 1,900-mile 1 -1001111111111 12,032 1 -1001111111111 phospholipids 1 -1001111111111 Dogpatch 1 -1001111111111 galvanized-metal 1 -1001111111111 all-ceramic 1 -1001111111111 gadulka 1 -1001111111111 worm-like 1 -1001111111111 sensitive-materials 1 -1001111111111 technology-consulting 1 -1001111111111 Pans 1 -1001111111111 U.S.-currency 1 -1001111111111 farm-operation 1 -1001111111111 farming-oriented 1 -1001111111111 Soundness 1 -1001111111111 Phoenix-missile 1 -1001111111111 fourth-string 1 -1001111111111 underregulated 1 -1001111111111 needle-borne 1 -1001111111111 275,000-square-foot 1 -1001111111111 disaster-rehabilitation 1 -1001111111111 equipage 1 -1001111111111 no-calorie 1 -1001111111111 aramid-fiber 1 -1001111111111 agriservice 1 -1001111111111 alternativefuels 1 -1001111111111 broadasting 1 -1001111111111 fiancees 1 -1001111111111 Usseri 1 -1001111111111 niobium-germanium 1 -1001111111111 KPL 1 -1001111111111 Tweedledee 1 -1001111111111 Canmar 1 -1001111111111 business-lending 1 -1001111111111 tank-wagon 1 -1001111111111 tank-car 1 -1001111111111 stinko 1 -1001111111111 still-centralized 1 -1001111111111 steel-equipment 1 -1001111111111 allergens 1 -1001111111111 mineral-fiber 1 -1001111111111 counterfilings 1 -1001111111111 new-housing 1 -1001111111111 rubber-product 1 -1001111111111 Scirrocos 1 -1001111111111 oil-andgas 1 -1001111111111 capital-lease 1 -1001111111111 foot-stamping 1 -1001111111111 over-mechanistic 1 -1001111111111 transmission-line 1 -1001111111111 advertising-related 1 -1001111111111 venture-investments 1 -1001111111111 industrial- 1 -1001111111111 KKOB-AM 1 -1001111111111 Butterfingers 1 -1001111111111 central-research 1 -1001111111111 lease-loss 1 -1001111111111 F150 1 -1001111111111 acetaminophen-based 1 -1001111111111 30-inch-diameter 1 -1001111111111 paid-access 1 -1001111111111 TINY 1 -1001111111111 344-mile 1 -1001111111111 extended-coverage 1 -1001111111111 four-well 1 -1001111111111 168,374-acre 1 -1001111111111 Tziganes 1 -1001111111111 -operated 1 -1001111111111 Detergents 1 -1001111111111 agricultural-engineering 1 -1001111111111 lawn-mowing 1 -1001111111111 single-row 1 -1001111111111 domestic-service 1 -1001111111111 book-keeping 1 -1001111111111 ground-equipment 1 -1001111111111 general-industry 1 -1001111111111 sea-grass 1 -1001111111111 mixed-concrete 1 -1001111111111 oil-and-mineral 1 -1001111111111 6,963 1 -1001111111111 radio-tags 1 -1001111111111 letter-press 1 -1001111111111 home-improvement-products 1 -1001111111111 giant-ship 1 -1001111111111 aircraft-hull 1 -1001111111111 Uhland 1 -1001111111111 natuiral-gas 1 -1001111111111 263-mile 1 -1001111111111 profit-intensive 1 -1001111111111 product-support 1 -1001111111111 Sensuality 1 -1001111111111 Dinettes 1 -1001111111111 metal-mining 1 -1001111111111 Seaswirl 1 -1001111111111 turquoises 1 -1001111111111 Gooseberries 1 -1001111111111 home-care-products 1 -1001111111111 Calligraphy 1 -1001111111111 19-mile 1 -1001111111111 electric-energy 1 -1001111111111 imaging-product 1 -1001111111111 steel-intensive 1 -1001111111111 financial-data-service 1 -1001111111111 electric-product 1 -1001111111111 engineering-materials 1 -1001111111111 residual-value 1 -1001111111111 TENONS 1 -1001111111111 Soviet-Bulgarian 1 -1001111111111 chemical-munitions 1 -1001111111111 quasi-state 1 -1001111111111 paging-systems 1 -1001111111111 end-of-Depression-era 1 -1001111111111 health-assessment 1 -1001111111111 125,000-barrel-a-day 1 -1001111111111 disease-carrying 1 -1001111111111 cussing 1 -1001111111111 explosives-detection 1 -1001111111111 barkless 1 -1001111111111 electric-tools 1 -1001111111111 falafel 1 -1001111111111 796-mile 1 -1001111111111 microwave-systems 1 -1001111111111 fastrising 1 -1001111111111 commodity-processing 1 -1001111111111 export-reliant 1 -1001111111111 nonspecialized 1 -1001111111111 fullpower 1 -1001111111111 over-the-wire 1 -1001111111111 resource-conserving 1 -1001111111111 Rothian 1 -1001111111111 millwork 1 -1001111111111 Narita-style 1 -1001111111111 12-foot-by-24-foot 1 -1001111111111 Melnor 1 -1001111111111 whiplike 1 -1001111111111 co-CEOs 1 -1001111111111 barite 1 -1001111111111 micro-electronics 1 -1001111111111 bulk-carrier 1 -1001111111111 gift-products 1 -1001111111111 nonconducting 1 -1001111111111 thalessemia 1 -1001111111111 embarassed 1 -1001111111111 volubility 1 -1001111111111 daybeds 1 -1001111111111 small-cigar 1 -1001111111111 takeovers. 1 -1001111111111 snow-laden 1 -1001111111111 a-Monthly 1 -1001111111111 well-thought-of 1 -1001111111111 foodservices 1 -1001111111111 photopolymer 1 -1001111111111 asymptotic 1 -1001111111111 reach-through 1 -1001111111111 Amee 1 -1001111111111 now-separate 1 -1001111111111 elevens 1 -1001111111111 uplink 1 -1001111111111 human-robot 1 -1001111111111 easy-to-turn 1 -1001111111111 SCRIVEN 1 -1001111111111 135,233 1 -1001111111111 300Z 1 -1001111111111 transportation-service 1 -1001111111111 distribution-related 1 -1001111111111 primary-metal 1 -1001111111111 Uranus. 1 -1001111111111 salt-products 1 -1001111111111 pelvises 1 -1001111111111 snow-plow 1 -1001111111111 motel-operating 1 -1001111111111 insurance-testing 1 -1001111111111 radio-pharmaceutical 1 -1001111111111 Colorado-winter-wheat 1 -1001111111111 17-foot-high 1 -1001111111111 navy-escorted 1 -1001111111111 car-dealership 1 -1001111111111 petroleum-catalyst 1 -1001111111111 273-mile 1 -1001111111111 shortage-enforced 1 -1001111111111 aerospace-products 1 -1001111111111 Granadas 1 -1001111111111 Waterton 1 -1001111111111 marketing/telemarketing 1 -1001111111111 opacity 1 -1001111111111 non-gas 1 -1001111111111 cutting-tools 1 -1001111111111 sales-order 1 -1001111111111 bone-deep 1 -1001111111111 gas-range 1 -1001111111111 science-education 1 -1001111111111 laboratory-supply 1 -1001111111111 rail-products 1 -1001111111111 wholsale-drug 1 -1001111111111 Sensibilia 1 -1001111111111 quadruple-team 1 -1001111111111 4X 1 -1001111111111 three-well 1 -1001111111111 surveillance-functions 1 -1001111111111 entertainment-programming 1 -1001111111111 non-menthol 1 -1001111111111 one-Adam-twelved 1 -1001111111111 security-check 1 -1001111111111 special-metals 1 -1001111111111 Cuban- 1 -1001111111111 ill-costumed 1 -1001111111111 network-building 1 -1001111111111 petroleumproducts 1 -1001111111111 nonstick 1 -1001111111111 boxed-beef-fabrication 1 -1001111111111 nowbankrupt 1 -1001111111111 V-6-equipped 1 -1001111111111 sawn-timber 1 -1001111111111 child-molesters 1 -1001111111111 settlement-expense 1 -1001111111111 wound-management 1 -1001111111111 Alberta-to-California 1 -1001111111111 paper-milling 1 -1001111111111 laser-sensitive 1 -1001111111111 grade-reduction 1 -1001111111111 beet-sugar 1 -1001111111111 nitrogen-bearing 1 -1001111111111 congesting 1 -1001111111111 pre-construction 1 -1001111111111 gas-centrifuge 1 -1001111111111 engineering-resins 1 -1001111111111 Misdemeanors 1 -1001111111111 commercial-scale 1 -1001111111111 instructions. 1 -1001111111111 skim-milk 1 -1001111111111 CYB 1 -1001111111111 bleat 1 -1001111111111 1,700-mile 1 -1001111111111 incorruptibility 1 -1001111111111 40MB 1 -1001111111111 WPIX-TV 1 -1001111111111 assessories 1 -1001111111111 container-board 1 -1001111111111 metal-management 1 -1001111111111 metal-based 1 -1001111111111 Astrup-Hoeyer 1 -1001111111111 photoconductor 1 -1001111111111 laurel-wreathed 1 -1001111111111 amusement-machine 1 -1001111111111 1,500-ton 1 -1001111111111 then-sluggish 1 -1001111111111 Soviet-advised 1 -1001111111111 minerals-projects 1 -1001111111111 newlyformed 1 -1001111111111 Syrian-Iraqi 1 -1001111111111 resort-management 1 -1001111111111 timber-dependent 1 -1001111111111 oil-transportation 1 -1001111111111 autoglass 1 -1001111111111 lawn- 1 -1001111111111 never-ceasing 1 -1001111111111 Defoe 1 -1001111111111 engine-timing 1 -1001111111111 responder 1 -1001111111111 wildlife-related 1 -1001111111111 computer-power-supply 1 -1001111111111 high-technology-services 1 -1001111111111 small-denomination 1 -1001111111111 Willys 1 -1001111111111 trans-Panama 1 -1001111111111 petroleum-fuel 1 -1001111111111 morning-tomidnight 1 -1001111111111 vehicle-transmission 1 -1001111111111 motion-video 1 -1001111111111 alcohol-drenched 1 -1001111111111 alternative-power 1 -1001111111111 bammed 1 -1001111111111 THWACKs 1 -1001111111111 too-hot 1 -1001111111111 residential-heating 1 -1001111111111 dateless 1 -1001111111111 newts 1 -1001111111111 real-estate-service 1 -1001111111111 dealer-services 1 -1001111111111 mass-faxing 1 -1001111111111 veneer-mill 1 -1001111111111 magnetic-resonance 1 -1001111111111 gold-processing 1 -1001111111111 124.90 1 -1001111111111 horse-steak 1 -1001111111111 Whiteland 1 -1001111111111 macadamias 1 -1001111111111 Jupiler 1 -1001111111111 50-pence 1 -1001111111111 oil-development 1 -1001111111111 274-mile 1 -1001111111111 trifecta 1 -1001111111111 5.5-mile 1 -1001111111111 little-practiced 1 -1001111111111 defense-analysis 1 -1001111111111 33-mile-long 1 -1001111111111 retransport 1 -1001111111111 semisubmersible 1 -1001111111111 television-bulb-glass 1 -1001111111111 flagpole-stiff 1 -1001111111111 900-mile 1 -1001111111111 brick-paved 1 -1001111111111 computer-research 1 -1001111111111 distrubition 1 -1001111111111 67-38931 1 -1001111111111 photovoltaic-film 1 -1001111111111 document-reproduction 1 -1001111111111 nitrogenoxide 1 -1001111111111 amusement-game 1 -1001111111111 long-chilled 1 -1001111111111 Warsaw-Chicago 1 -1001111111111 machine-formed 1 -1001111111111 modelling 1 -1001111111111 dental-fillings 1 -1001111111111 psychiatric-testing 1 -1001111111111 Delilah 1 -1001111111111 2megabyte 1 -1001111111111 specialty-rubber-product 1 -1001111111111 Islands-registered 2 -1001111111111 Eikonix 2 -1001111111111 sevice 2 -1001111111111 laboratory-services 2 -1001111111111 ferro-alloy 2 -1001111111111 ferroalloys 2 -1001111111111 life-span 2 -1001111111111 specialty-products 2 -1001111111111 business-park 2 -1001111111111 photographic-paper 2 -1001111111111 satellite-to-home 2 -1001111111111 architectural-services 2 -1001111111111 non-monogamous 2 -1001111111111 brand-building 2 -1001111111111 Circumstance 2 -1001111111111 LN-7 2 -1001111111111 mortgage-and-equity 2 -1001111111111 Islands-based 2 -1001111111111 nuclear-technology 2 -1001111111111 industrial-parts 2 -1001111111111 industrial-process 2 -1001111111111 transportation-products 2 -1001111111111 electricity-generation 2 -1001111111111 photovoltaic-panel 2 -1001111111111 truck-manufacturing 2 -1001111111111 industrial-capacity 2 -1001111111111 KCBS-TV 2 -1001111111111 perinatal 2 -1001111111111 Showak 2 -1001111111111 Overburdened 2 -1001111111111 third-base 2 -1001111111111 geothermal-energy 2 -1001111111111 Myths 2 -1001111111111 wine-and-spirits 2 -1001111111111 commercial-vehicles 2 -1001111111111 anti-oxidant 2 -1001111111111 industrial-product 2 -1001111111111 parttime 2 -1001111111111 joint-life 2 -1001111111111 Justification 2 -1001111111111 constuction 2 -1001111111111 home-fashions 2 -1001111111111 shirt-making 2 -1001111111111 investible 2 -1001111111111 retsina 2 -1001111111111 platinum-mining 2 -1001111111111 better-supervision 2 -1001111111111 redrilling 2 -1001111111111 telecommunications-products 2 -1001111111111 tenth-ounce 2 -1001111111111 low-net-worth 2 -1001111111111 non-underwritten 2 -1001111111111 WYLD-AM 2 -1001111111111 cruise-line 2 -1001111111111 stop-action 2 -1001111111111 Vitabath 2 -1001111111111 couscous 2 -1001111111111 gas-development 2 -1001111111111 lawn-equipment 2 -1001111111111 financial-data 2 -1001111111111 cash-and-equity 2 -1001111111111 radiographic 2 -1001111111111 estrangements 2 -1001111111111 truck-building 2 -1001111111111 gas-plant 2 -1001111111111 Feasting 2 -1001111111111 federally-funded 2 -1001111111111 resale-price 2 -1001111111111 aluminum-related 2 -1001111111111 Bio-T 2 -1001111111111 expediently 2 -1001111111111 leisure-activities 2 -1001111111111 Beit 2 -1001111111111 television-program 2 -1001111111111 WFLZ-FM 2 -1001111111111 mineral-resource 2 -1001111111111 Goffriller 2 -1001111111111 Sunnah 2 -1001111111111 Atlanta-Tokyo 2 -1001111111111 TV-program 3 -1001111111111 latrine 3 -1001111111111 Benedick 3 -1001111111111 Quebec-Telephone 3 -1001111111111 682-mile 3 -1001111111111 light-wave 3 -1001111111111 industrial-park 3 -1001111111111 out-patient 3 -1001111111111 kneading 3 -1001111111111 synthetic-fiber 3 -1001111111111 lighting-fixture 3 -1001111111111 Storyteller 3 -1001111111111 over-medicate 3 -1001111111111 naturalgas 3 -1001111111111 textile-related 3 -1001111111111 Kahlua 3 -1001111111111 locksmith 3 -1001111111111 tire-recapping 3 -1001111111111 consumer-services 3 -1001111111111 blackberry 3 -1001111111111 cubed 3 -1001111111111 racing-parts 3 -1001111111111 television-audience 3 -1001111111111 loan-related 3 -1001111111111 non-art 3 -1001111111111 localizing 3 -1001111111111 telephone-call 3 -1001111111111 water-damaged 3 -1001111111111 euchre 3 -1001111111111 flight-simulator 3 -1001111111111 parking-garage 3 -1001111111111 hawed 3 -1001111111111 Volvo/GMC 3 -1001111111111 steel-fabrication 3 -1001111111111 wholesale-drug 3 -1001111111111 Deweyism 4 -1001111111111 wheel-making 4 -1001111111111 data/voice 4 -1001111111111 precision-materials 4 -1001111111111 re-issued 4 -1001111111111 Bushmills 4 -1001111111111 business-service 4 -1001111111111 trans-Alaska 4 -1001111111111 steam-turbine 4 -1001111111111 wood-processing 4 -1001111111111 hydration 4 -1001111111111 Miquelon 4 -1001111111111 Lancers 4 -1001111111111 flexographic 5 -1001111111111 coal-slurry 5 -1001111111111 little-cigar 5 -1001111111111 30-inch 5 -1001111111111 Frigid 5 -1001111111111 diming 5 -1001111111111 Trans-Panama 5 -1001111111111 gas-related 5 -1001111111111 subsea 5 -1001111111111 gas-producing 6 -1001111111111 laude 6 -1001111111111 sheet-fed 6 -1001111111111 resource-development 6 -1001111111111 semi-submersible 6 -1001111111111 fixed-charge 7 -1001111111111 phosphorus 7 -1001111111111 Widuri 7 -1001111111111 packaged-foods 7 -1001111111111 nonbuilding 7 -1001111111111 gas-transmission 7 -1001111111111 casualty-insurance 7 -1001111111111 Error 8 -1001111111111 Samaria 8 -1001111111111 Berettas 8 -1001111111111 flavoring 9 -1001111111111 bitumen 9 -1001111111111 Scapa 9 -1001111111111 Cain-Sloan 9 -1001111111111 airway 9 -1001111111111 computer-integrated 12 -1001111111111 diamond-mining 12 -1001111111111 railcar 14 -1001111111111 ivy 16 -1001111111111 slurry 17 -1001111111111 coral 18 -1001111111111 cracker 20 -1001111111111 non-building 20 -1001111111111 Remembrance 25 -1001111111111 Oster 27 -1001111111111 Stripes 29 -1001111111111 personal-service 31 -1001111111111 condensate 40 -1001111111111 Ends 45 -1001111111111 Topaz 48 -1001111111111 distilled 57 -1001111111111 Sable 136 -1001111111111 mineral 316 -1001111111111 resource 352 -1001111111111 casualty 373 -1001111111111 natural-gas 406 -1001111111111 gas 7770 -1001111111111 pill 856 -1010000000 25974.96 1 -1010000000 rate-rise 1 -1010000000 OPEC-wide 1 -1010000000 payout-ratios 1 -1010000000 investigationsof 1 -1010000000 PROVISION 2 -1010000000 EDGE 2 -1010000000 FOCUS 2 -1010000000 1,955,000 2 -1010000000 affadavit 2 -1010000000 leopards 2 -1010000000 3,120 4 -1010000000 upsurge 63 -1010000000 uptick 69 -1010000000 increase 20854 -1010000000 overhaul 773 -1010000001 Rheingau 1 -1010000001 Mussulmen 1 -1010000001 Stay-On-Tab 1 -1010000001 break-off 1 -1010000001 electrooptics 1 -1010000001 Warburgs 1 -1010000001 117th 1 -1010000001 Westernizers 1 -1010000001 Elizabethans 1 -1010000001 3,097,173 1 -1010000001 Penitent 1 -1010000001 Pushtuns 1 -1010000001 passthroughs 1 -1010000001 Hellespont 1 -1010000001 155th-largest 1 -1010000001 gremlin 1 -1010000001 near-halt 1 -1010000001 Yalie 1 -1010000001 Sandinists 1 -1010000001 commpany 1 -1010000001 boo-boos 1 -1010000001 coryphees 1 -1010000001 Druids 1 -1010000001 hackbox 1 -1010000001 potter-partner 1 -1010000001 equity-raising 1 -1010000001 under-25,000 1 -1010000001 urgencies 1 -1010000001 766,361 1 -1010000001 top-rankers 1 -1010000001 Marschallin 1 -1010000001 beef-packer 1 -1010000001 Antipodes 1 -1010000001 flea-flicker 1 -1010000001 Unassailable 1 -1010000001 divertissement 1 -1010000001 salesrooms 1 -1010000001 -a 1 -1010000001 longest-ever 1 -1010000001 dum-dums 1 -1010000001 consternations 1 -1010000001 Helmses 1 -1010000001 Washingtonian/Baltimore 1 -1010000001 pickpocket 1 -1010000001 pseudo-history 1 -1010000001 Narragansetts 1 -1010000001 Rostovs 1 -1010000001 cost-efficiencies 1 -1010000001 calmest 1 -1010000001 nevetheless 1 -1010000001 hot-tickets 1 -1010000001 UFCWU 1 -1010000001 quarter-finalists 1 -1010000001 chainsmoker 1 -1010000001 imperishables 1 -1010000001 Chieftains 1 -1010000001 unsteadiness 1 -1010000001 viewer/listener/reader 1 -1010000001 post-fluency 1 -1010000001 29th-largest 1 -1010000001 near-freeze 1 -1010000001 Newsweekly 1 -1010000001 plasmodium 1 -1010000001 deterioriation 1 -1010000001 d-Stck. 1 -1010000001 Pueblos 1 -1010000001 Mozarteum 1 -1010000001 F-word 1 -1010000001 pork-dove 1 -1010000001 doom-mongering 1 -1010000001 faries 1 -1010000001 non-job 1 -1010000001 croupier-in-training 1 -1010000001 Gantlet 1 -1010000001 third-fastest 1 -1010000001 straightest-arrows 1 -1010000001 leaseholder 1 -1010000001 Budespot 1 -1010000001 Newport-Inglewood 1 -1010000001 drop-offs 2 -1010000001 biathlete 2 -1010000001 downslide 2 -1010000001 flexiblity 2 -1010000001 convocation 2 -1010000001 mote 2 -1010000001 neutralists 2 -1010000001 hawkishness 2 -1010000001 easiness 3 -1010000001 rescreen 3 -1010000001 Liquors 3 -1010000001 hobbyhorse 3 -1010000001 Kunstmuseum 3 -1010000001 backslide 4 -1010000001 jinx 5 -1010000001 leveling-off 8 -1010000001 twinkle 9 -1010000001 washout 9 -1010000001 dropoff 13 -1010000001 homer 17 -1010000001 fall-off 17 -1010000001 falloff 45 -1010000001 runup 50 -1010000001 drop-off 54 -1010000001 spike 56 -1010000001 weighting 88 -1010000001 dip 190 -1010000001 spurt 192 -1010000001 tumble 277 -1010000001 leap 278 -1010000001 run-up 284 -1010000001 retreat 563 -1010000001 decrease 677 -1010000001 rebound 1219 -1010000001 slide 1246 -1010000001 plunge 1450 -1010000001 jump 1618 -1010000001 surge 2227 -1010000001 decline 9171 -1010000001 rise 11039 -1010000001 drop 7484 -1010000010 constriction 1 -1010000010 sagesse 1 -1010000010 persecutor 1 -1010000010 9-foot-3 1 -1010000010 dabblings 1 -1010000010 poulterer 1 -1010000010 -jump 1 -1010000010 cerium 1 -1010000010 occupancy. 1 -1010000010 32-10/32 1 -1010000010 secuestros 1 -1010000010 -occupied 1 -1010000010 churches-turned-nightclubs 1 -1010000010 bardship 1 -1010000010 workshare 1 -1010000010 sequencer 1 -1010000010 TV-watch 1 -1010000010 shareholdership 1 -1010000010 passer-runner 1 -1010000010 -margin 1 -1010000010 sleuthed 1 -1010000010 contempories 1 -1010000010 KYSP-FM 1 -1010000010 counterlogic 1 -1010000010 waterflood 1 -1010000010 owner-employers 1 -1010000010 smokehouse 1 -1010000010 WYSP-FM 1 -1010000010 Astrakan 1 -1010000010 bicentenntial 1 -1010000010 cost-structuring 1 -1010000010 tuberoses 1 -1010000010 pre-leased 1 -1010000010 decider 1 -1010000010 intererst 1 -1010000010 over-caution 1 -1010000010 inclinitions 1 -1010000010 KLAT 1 -1010000010 high-seriousness 1 -1010000010 -state 1 -1010000010 incrrease 1 -1010000010 one-reelers 1 -1010000010 man-at-the-grill 1 -1010000010 REDUCTION 1 -1010000010 Golightly 1 -1010000010 Chinese-run 1 -1010000010 KCCI 1 -1010000010 fromMay 1 -1010000010 pre-eminance 1 -1010000010 involvment 1 -1010000010 puppet-government 1 -1010000010 -debt 1 -1010000010 hoarseness 1 -1010000010 furthet 1 -1010000010 tippets 1 -1010000010 auto-oriented 1 -1010000010 addresss 1 -1010000010 Week-e 1 -1010000010 moneybags 1 -1010000010 shrinkages 1 -1010000010 Casino-Hotel 1 -1010000010 Westword 1 -1010000010 thrusters 1 -1010000010 overfulfilled 1 -1010000010 Felson 2 -1010000010 Steakhouse 2 -1010000010 Barracks 2 -1010000010 recliners 2 -1010000010 rowboat 2 -1010000010 -leased 2 -1010000010 -off 3 -1010000010 -deductible 4 -1010000010 -invested 4 -1010000010 -stake 5 -1010000010 half-stake 6 -1010000010 > 7 -1010000010 -owner 24 -1010000010 half-interest 42 -1010000010 stake 15501 -1010000010 inception 114 -1010000011 inflation-wise 1 -1010000011 non-happenings 1 -1010000011 quadrille 1 -1010000011 physician-scientists 1 -1010000011 kick-ins 1 -1010000011 --party 1 -1010000011 cytopathologist 1 -1010000011 haunter 1 -1010000011 musketeers 1 -1010000011 8080 1 -1010000011 techno-babble 1 -1010000011 bordellos 1 -1010000011 three-rigger 1 -1010000011 principle-- 1 -1010000011 witnessess 1 -1010000011 laugh-getter 1 -1010000011 fellow-workers 1 -1010000011 tone-decoder 1 -1010000011 Pegnitz 1 -1010000011 rationalizer 1 -1010000011 Reagan-basher 1 -1010000011 stituation 1 -1010000011 netorks 1 -1010000011 insurance-sponsored 1 -1010000011 Cussing 1 -1010000011 bombardier-navigator 1 -1010000011 sub-categories 1 -1010000011 hirer 1 -1010000011 socializers 1 -1010000011 4-year-olds 1 -1010000011 20-ton 1 -1010000011 pt 1 -1010000011 buzzed-about 1 -1010000011 estragole 1 -1010000011 technonerds 1 -1010000011 treaty-scoffer 1 -1010000011 brown-steel 1 -1010000011 misquotations 1 -1010000011 neuropsychological 1 -1010000011 multiprocessing 1 -1010000011 pace. 1 -1010000011 14-foot-tall 1 -1010000011 competitition 1 -1010000011 lamenter 1 -1010000011 disseminators 1 -1010000011 panflutist 1 -1010000011 discrepency 1 -1010000011 antibody-making 1 -1010000011 Taucher 1 -1010000011 dollar-sellers 1 -1010000011 .81 1 -1010000011 gamesmen 1 -1010000011 colorizer 1 -1010000011 cross-promotion 1 -1010000011 adulteration 1 -1010000011 complicitous 1 -1010000011 enshrinement 2 -1010000011 undervaluations 2 -1010000011 limits. 2 -1010000011 bracero 2 -1010000011 epochs 2 -1010000011 head-to-toe 2 -1010000011 sinkholes 2 -1010000011 procurer 2 -1010000011 ratemakers 2 -1010000011 kevlar 2 -1010000011 colorist 2 -1010000011 handover 2 -1010000011 consul-general 2 -1010000011 tickertape 2 -1010000011 bearskin 2 -1010000011 Swasy 2 -1010000011 advancer 2 -1010000011 margarita 2 -1010000011 presser 2 -1010000011 money-raiser 2 -1010000011 man-of-war 2 -1010000011 insurrections 2 -1010000011 canonization 2 -1010000011 southerner 3 -1010000011 KCSB-FM 3 -1010000011 clone-maker 3 -1010000011 courtmartial 3 -1010000011 squiggle 3 -1010000011 sturdiness 3 -1010000011 fearmonger 3 -1010000011 near-failure 3 -1010000011 wraith 4 -1010000011 headstart 4 -1010000011 detachments 4 -1010000011 tsunami 4 -1010000011 chink 6 -1010000011 step-up 6 -1010000011 strategem 6 -1010000011 turnip 6 -1010000011 Hypocrisy 7 -1010000011 reacceleration 7 -1010000011 healer 7 -1010000011 dossier 8 -1010000011 speed-up 8 -1010000011 presences 9 -1010000011 cog 11 -1010000011 sojourn 15 -1010000011 tempest 21 -1010000011 drawdown 22 -1010000011 determinant 24 -1010000011 thorn 28 -1010000011 quirk 30 -1010000011 beachhead 33 -1010000011 toehold 35 -1010000011 build-up 41 -1010000011 mover 43 -1010000011 plank 46 -1010000011 pick-up 46 -1010000011 bulge 55 -1010000011 believer 72 -1010000011 rollback 74 -1010000011 doctorate 93 -1010000011 shareholding 120 -1010000011 flaw 146 -1010000011 foothold 190 -1010000011 ingredient 231 -1010000011 participant 263 -1010000011 component 413 -1010000011 buildup 521 -1010000011 pickup 546 -1010000011 element 609 -1010000011 player 1193 -1010000011 involvement 1217 -1010000011 presence 1668 -1010000011 reduction 2739 -1010000011 role 5866 -1010000011 factor 3044 -101000010 Rantoul 1 -101000010 nine-inch-wide 1 -101000010 wild-tulipo-trend 1 -101000010 coulibiac 1 -101000010 Mockingbird 1 -101000010 peerage 1 -101000010 Malvolio 1 -101000010 gelding 1 -101000010 souvenir. 1 -101000010 dishcloth 1 -101000010 milkmaid 1 -101000010 non-Contadora 1 -101000010 greenish-gray 1 -101000010 900-seat 1 -101000010 gotterdammerung 1 -101000010 D-minus 1 -101000010 Georgetown-St 1 -101000010 crack-up 1 -101000010 needler 1 -101000010 billion-eight 1 -101000010 ranchhand 1 -101000010 Fridley 1 -101000010 punkette 1 -101000010 column-inch 1 -101000010 rip-snorting 1 -101000010 non-system 1 -101000010 hanky-wringer 1 -101000010 cummerbund 1 -101000010 military-imposed 1 -101000010 Saugerties 1 -101000010 furore 1 -101000010 lovo 1 -101000010 last-play 1 -101000010 47-yarder 1 -101000010 pah-ty 1 -101000010 herbarium 1 -101000010 113-liter 1 -101000010 Guymon 1 -101000010 fructo-oligosaccharide 1 -101000010 mail-drop 1 -101000010 trifler 1 -101000010 self-assigned 1 -101000010 non-response 1 -101000010 Booneville 1 -101000010 mid-match 1 -101000010 Rennewick 1 -101000010 four-store 1 -101000010 one-bodied 1 -101000010 blackmailer 1 -101000010 wimper 1 -101000010 22-21 1 -101000010 JT8D-217A 1 -101000010 third. 1 -101000010 handstand 1 -101000010 gale-driven 1 -101000010 novena 1 -101000010 mini-ranch 1 -101000010 westerner 1 -101000010 hairnet 1 -101000010 showstopper 1 -101000010 workpiece 1 -101000010 job-producer 1 -101000010 747F 1 -101000010 chance. 1 -101000010 video-equipment 1 -101000010 Saline. 1 -101000010 dropper 1 -101000010 30second 1 -101000010 pseudo-informality 1 -101000010 semicrisis 1 -101000010 croak 1 -101000010 Nazi-Fascist 1 -101000010 foxtrot 1 -101000010 payer-of-last-resort 1 -101000010 stickhorse 1 -101000010 oneshare 1 -101000010 waste-cutter 1 -101000010 440-foot 1 -101000010 mission-oriented 1 -101000010 trainee-broker 1 -101000010 non-protester 1 -101000010 19-year-veteran 1 -101000010 music-hall 1 -101000010 damned-if-he-knew 1 -101000010 22,800-kilowatt 1 -101000010 four-win 1 -101000010 caminhada 1 -101000010 homebody 1 -101000010 Western-cut 1 -101000010 jocund 1 -101000010 non-Jew 1 -101000010 de-testimonial 1 -101000010 confrontationist 1 -101000010 more-youthful 1 -101000010 5.9-liter 1 -101000010 monstre 1 -101000010 down-trend 1 -101000010 rangefinder 1 -101000010 detraction 1 -101000010 quinella 1 -101000010 Sov 1 -101000010 TBTF 1 -101000010 clef 1 -101000010 nine-year-low 1 -101000010 bubble-bursting 1 -101000010 Hastingson-Hudson 1 -101000010 wineglass 1 -101000010 playlet 1 -101000010 Quarryville 1 -101000010 refrigerator-freezer 1 -101000010 one-afternoon 1 -101000010 HomeSpa 1 -101000010 portico 1 -101000010 Hollidaysburg 1 -101000010 quasi-cigarette 1 -101000010 flyway 1 -101000010 cashpoor 1 -101000010 crampon 1 -101000010 rara 1 -101000010 bomb-store 1 -101000010 speak-easy 1 -101000010 Dalmatiner 1 -101000010 halftruth 1 -101000010 direction. 1 -101000010 heavy-breather 1 -101000010 Blacklick 1 -101000010 novel. 1 -101000010 put-off 1 -101000010 near-fiasco 1 -101000010 28-megawatt 1 -101000010 bayonnet 1 -101000010 headwind 1 -101000010 Casselton 1 -101000010 Bromyard 1 -101000010 900-austral 1 -101000010 Euro-bank 1 -101000010 wimple 1 -101000010 townful 1 -101000010 lawnful 1 -101000010 dishevelled-looking 1 -101000010 14-footer 1 -101000010 clone-killer 1 -101000010 non-obese 1 -101000010 garrison-state 1 -101000010 bailout. 1 -101000010 six-attorney 1 -101000010 hurry. 1 -101000010 nonbanker 1 -101000010 fast-disbursing 1 -101000010 Countryside 1 -101000010 bumblebee 1 -101000010 Tilsonburg 1 -101000010 miner. 1 -101000010 rotisserie 1 -101000010 safecracker 1 -101000010 dingo 1 -101000010 gray-templed 1 -101000010 gigabyte 1 -101000010 Necrophiliac 1 -101000010 mistakeover 1 -101000010 house-foundation 1 -101000010 half-quote 1 -101000010 SAL. 1 -101000010 self-deceiver 1 -101000010 Matchmate 1 -101000010 Valise 1 -101000010 52,000-square-foot 1 -101000010 Rockwall 1 -101000010 frame-up 1 -101000010 ballotbox 1 -101000010 spitoon 1 -101000010 plagiarist 1 -101000010 zebu 1 -101000010 quack-up 1 -101000010 schlockmeister 1 -101000010 biter 1 -101000010 much-weakened 1 -101000010 discussion. 1 -101000010 cupcake 1 -101000010 swish 1 -101000010 passkey 1 -101000010 co-nominee 1 -101000010 280,000-member 1 -101000010 cash-conscious 1 -101000010 near-fanatic 1 -101000010 djab 1 -101000010 switch-hitter 1 -101000010 third-to-home 1 -101000010 taxcutter 1 -101000010 dealbreaker 1 -101000010 fish-finder 1 -101000010 23-pounder 1 -101000010 1966-style 1 -101000010 widely-recognized 1 -101000010 Concordville 1 -101000010 biochip 1 -101000010 curie 1 -101000010 single-brand 1 -101000010 demurrer 1 -101000010 made-in-Paris 1 -101000010 takeover-evidence 1 -101000010 carbon-dioxide-charged 1 -101000010 road-hugging 1 -101000010 blackfly 1 -101000010 l-l-l-l-liberal 1 -101000010 purple-body 1 -101000010 green-head 1 -101000010 '90s-style 1 -101000010 plowhorse 1 -101000010 Yunozawa 1 -101000010 Poughquag 1 -101000010 heads-you-win 1 -101000010 supranationalism 1 -101000010 stone-free 1 -101000010 1040-C 1 -101000010 paper-shuffler 1 -101000010 105-point 1 -101000010 globby 1 -101000010 34-foot-long 1 -101000010 Gustine 1 -101000010 dwarf. 1 -101000010 cabinet-government 1 -101000010 no-carbohydrates 1 -101000010 psephologist 1 -101000010 164-seat 1 -101000010 lien-to 1 -101000010 Willmar 1 -101000010 marmoset 1 -101000010 capuccino 1 -101000010 four-passenger 1 -101000010 Gold-Trimmed 1 -101000010 43-footer 1 -101000010 two-pack 1 -101000010 stratocracy 1 -101000010 Chickamauga 1 -101000010 demi-studio 1 -101000010 quasi-businessman 1 -101000010 contingency-measure 1 -101000010 super-symbol 1 -101000010 Cogdon 1 -101000010 smashup 1 -101000010 Bio-Bibliography 1 -101000010 shorter-fuselage 1 -101000010 rancher-guide 1 -101000010 Hartsdale 1 -101000010 91-unit 1 -101000010 Painesville 1 -101000010 non-politician 1 -101000010 shiny-red 1 -101000010 25-man 1 -101000010 Glance 1 -101000010 Belmar 1 -101000010 10-ppm 1 -101000010 pre-conception 1 -101000010 decade. 1 -101000010 doc-in-a-box 1 -101000010 transsexual 1 -101000010 yards-long 1 -101000010 kanji 1 -101000010 fare-thee-well 1 -101000010 Coleville 1 -101000010 son. 1 -101000010 half-sibling 1 -101000010 Wrentham 1 -101000010 proctologist 1 -101000010 football. 1 -101000010 premillennialist 1 -101000010 32-story 1 -101000010 rose-red 1 -101000010 paraphase 1 -101000010 geohydrologist 1 -101000010 kidder 1 -101000010 blowgun 1 -101000010 concert. 1 -101000010 rijsttafel 1 -101000010 wave-briefly 1 -101000010 plasticizer 1 -101000010 newsman-turned-speechwriter 1 -101000010 5-foot 1 -101000010 millionairess 1 -101000010 catch-phrase 1 -101000010 prayer. 1 -101000010 homeroom 1 -101000010 four-level 1 -101000010 drab-looking 1 -101000010 halfwit 1 -101000010 handcarved 1 -101000010 hand-folded 1 -101000010 technothriller 1 -101000010 semi-monopoly 1 -101000010 wool-gatherer 1 -101000010 Tukwila 1 -101000010 gutser 1 -101000010 bright-orange 1 -101000010 dedocracy 1 -101000010 mini-AT&T 1 -101000010 mini-consolidation 1 -101000010 neo-anything 1 -101000010 woman-hater 1 -101000010 theologian. 1 -101000010 stationer 1 -101000010 stomach-ache 1 -101000010 50,000-watt 1 -101000010 re-vote 1 -101000010 roomie 1 -101000010 semiologist 1 -101000010 Clafoutis 1 -101000010 Hazelcrest 1 -101000010 length-and-a-half 1 -101000010 single-interest 1 -101000010 pipedream 1 -101000010 European-East 1 -101000010 sailboard 1 -101000010 Brimfield 1 -101000010 late-edition 1 -101000010 bump-and-grinder 1 -101000010 tn5-marked 1 -101000010 fee-pot 1 -101000010 shoe-in 1 -101000010 mou-esse 1 -101000010 superperson 1 -101000010 point-of-difference 1 -101000010 mutual-support 1 -101000010 30-year-career 1 -101000010 photodiode 1 -101000010 gravedigger 1 -101000010 mink-clad 1 -101000010 1,127-page 1 -101000010 reco 1 -101000010 Wallenda 1 -101000010 less-homogenous 1 -101000010 superministry 1 -101000010 toastmaster 1 -101000010 129-foot 1 -101000010 remote-operated 1 -101000010 stroke. 1 -101000010 demerger 1 -101000010 sulfur-laden 1 -101000010 l00 1 -101000010 spill-over 1 -101000010 44-hour 1 -101000010 chloropsis 1 -101000010 Floridan 1 -101000010 slogger 1 -101000010 green-barriered 1 -101000010 Loudonville 1 -101000010 third-down-and-20 1 -101000010 miss-hit 1 -101000010 schoolmistress 1 -101000010 library-socialist 1 -101000010 muchness 1 -101000010 two-aisle 1 -101000010 Canonsburg 1 -101000010 well-girthed 1 -101000010 gun-for-gun 1 -101000010 twopart 1 -101000010 culture. 1 -101000010 short-timer 1 -101000010 cloak-and-suiter 1 -101000010 mini-newspaper 1 -101000010 mass-and 1 -101000010 4,580-pound 1 -101000010 fryer 1 -101000010 Eurosecurity 1 -101000010 halfcentury 1 -101000010 short-on-top 1 -101000010 900-bed 1 -101000010 nonracist 1 -101000010 backbiter 1 -101000010 neanderthal 1 -101000010 battleship-sized 1 -101000010 Conneaut 1 -101000010 lion's-head 1 -101000010 sunny-tempered 1 -101000010 substantive-due-process 1 -101000010 SQUID 1 -101000010 golf-lover 1 -101000010 thimble 1 -101000010 sculler 1 -101000010 teamster 1 -101000010 semi-sadist 1 -101000010 non-actress 1 -101000010 skywalk 1 -101000010 black-woman-without-a-friend-in-the-world-dying-of-leukemia- 1 -101000010 Weathersfield 1 -101000010 schlump 1 -101000010 LeMars 1 -101000010 sorehead 1 -101000010 hirsute 1 -101000010 copy. 1 -101000010 vocoder 1 -101000010 lapdog. 1 -101000010 weenie 1 -101000010 bloodsucker 1 -101000010 compliment. 1 -101000010 composer-slash-businessman 1 -101000010 phase-up 1 -101000010 coupon-level 1 -101000010 Worland 1 -101000010 paparazzo 1 -101000010 Troika 1 -101000010 cockapoo 1 -101000010 summer-camp 1 -101000010 ticket-taker 1 -101000010 40-year-period 1 -101000010 backdown 1 -101000010 multimillionare 1 -101000010 marketing. 1 -101000010 committee-in-chief 1 -101000010 rig-turned-reef 1 -101000010 goatee. 1 -101000010 mini-reversal 1 -101000010 very-good-yielding 1 -101000010 talkfest 1 -101000010 17-unit 1 -101000010 panic-type 1 -101000010 brushstroke 1 -101000010 scamp 1 -101000010 piricuaco 1 -101000010 cause-celebre 1 -101000010 blubbery 1 -101000010 compere 1 -101000010 belvedere 1 -101000010 self-contradiction 1 -101000010 bomb-builder 1 -101000010 hydroholic 1 -101000010 5.1-million-barrel 1 -101000010 man-tended 1 -101000010 freethinker 1 -101000010 room-size 1 -101000010 pigsty 1 -101000010 conumdrum 1 -101000010 chest-puffing 1 -101000010 tooth. 1 -101000010 five-in-one 1 -101000010 telephone. 1 -101000010 non-genius 1 -101000010 finger-licking 1 -101000010 bomb-thrower 1 -101000010 120-horsepower 1 -101000010 Mellotone 1 -101000010 non-entity 1 -101000010 26-inch-high 1 -101000010 gold-depressing 1 -101000010 jack-in-the-box 1 -101000010 Hayti 1 -101000010 Brocket 1 -101000010 Plattsmouth 1 -101000010 review. 1 -101000010 nanny. 1 -101000010 slick-paper 1 -101000010 furnitureless 1 -101000010 problemsolver 1 -101000010 forward-deployed 1 -101000010 book-signing 1 -101000010 200-million-year-old 1 -101000010 quarterpoint 1 -101000010 12-car 1 -101000010 father-confessor 1 -101000010 Euroconsumer 1 -101000010 chippy 1 -101000010 high-privilege 1 -101000010 Euro-son 1 -101000010 7-foot-5-inch 1 -101000010 fiddle-dee-dee 1 -101000010 thirteen-year-old 1 -101000010 telenovela 1 -101000010 dreadnought 1 -101000010 chewer-outer 1 -101000010 Florida-produced 1 -101000010 seamer 1 -101000010 beartrap 1 -101000010 per-channel 1 -101000010 pseudo-problem 1 -101000010 Honolulu-Nagoya 1 -101000010 let-'em-eat-cake 1 -101000010 Spanish-designed 1 -101000010 quasi-autonomous 1 -101000010 boatmaker 1 -101000010 shoot-first 1 -101000010 worker-compensation-styled 1 -101000010 mini-estate 1 -101000010 carpetbag 1 -101000010 near-standoff 1 -101000010 fatwa 1 -101000010 stand-out 1 -101000010 1.03-billion-rand 1 -101000010 heartstring 1 -101000010 1653 1 -101000010 humidified 1 -101000010 162-foot-high 1 -101000010 high-investment 1 -101000010 mutually-beneficial 1 -101000010 2-inch-by-4-inch 1 -101000010 polecat 1 -101000010 Ferarri 1 -101000010 non-insider 1 -101000010 bull-headed 1 -101000010 magpie 1 -101000010 cofferdam 1 -101000010 Suzycott 1 -101000010 three-pack 1 -101000010 wingless 1 -101000010 ministampede 1 -101000010 ditz 1 -101000010 Nappanee 1 -101000010 uniter 1 -101000010 fellow-bishop 1 -101000010 strange-Protestant-land 1 -101000010 100-kilo 1 -101000010 counter-example 1 -101000010 split-fingered 1 -101000010 Shinnston 1 -101000010 spellchecker 1 -101000010 smoke-spewing 1 -101000010 sousaphone 1 -101000010 Naziland. 1 -101000010 minipanic 1 -101000010 money-grubber 1 -101000010 profanity-laced 1 -101000010 13-candidate 1 -101000010 try. 1 -101000010 counterguarantee 1 -101000010 reanimator 1 -101000010 recession-causer 1 -101000010 teetotaller 1 -101000010 larky 1 -101000010 multi-cultural 1 -101000010 Carrolton 1 -101000010 9-pence 1 -101000010 worstcase 1 -101000010 Moviola 1 -101000010 policy-easing 1 -101000010 snitch. 1 -101000010 polemicist 1 -101000010 Zeroine 1 -101000010 162-year-old 1 -101000010 creampuff 1 -101000010 circulation-builder 1 -101000010 squaw 1 -101000010 dramadoc 1 -101000010 cycle. 1 -101000010 high-calorie 1 -101000010 35-3 1 -101000010 Republican. 1 -101000010 tradition. 1 -101000010 graffiti-smeared 1 -101000010 mini-backpack 1 -101000010 thudding 1 -101000010 side-show 1 -101000010 leek 1 -101000010 51-yard 1 -101000010 dirigiste 1 -101000010 Gorgosaurus 1 -101000010 videocam 1 -101000010 powder-brained 1 -101000010 Broomall 1 -101000010 middle-octane 1 -101000010 heartstopper 1 -101000010 30,000-hectare 1 -101000010 human-looking 1 -101000010 soft-liner 1 -101000010 sunstroke 1 -101000010 non-investigative 1 -101000010 basket-maker 1 -101000010 five-foot-tall 1 -101000010 SIM 1 -101000010 skirt-chaser 1 -101000010 wildgrowing 1 -101000010 laissez-passer 1 -101000010 non-fan 1 -101000010 honey-pot. 1 -101000010 Pistil 1 -101000010 mininursery 1 -101000010 protozoan 1 -101000010 nahs 1 -101000010 one-hour-at-a-time 1 -101000010 one-day-at-a-time 1 -101000010 five-stick 1 -101000010 U-Miss 1 -101000010 deal-closer 1 -101000010 TEAC 1 -101000010 one-stooler 1 -101000010 splitlevel 1 -101000010 super-agency 1 -101000010 succesor 1 -101000010 naco 1 -101000010 quasi-LBO 1 -101000010 backing-away 1 -101000010 2-win 1 -101000010 railbiker 1 -101000010 Bush-whacker 1 -101000010 125,000-franc 1 -101000010 cinemogul 1 -101000010 22-foot-tall 1 -101000010 nickel-a-pound 1 -101000010 re-mix 1 -101000010 semi-worker 1 -101000010 non-team-player 1 -101000010 howler 1 -101000010 sexologist 1 -101000010 snaggletoothed 1 -101000010 Laytonsville 1 -101000010 super-headache 1 -101000010 three-meringue 1 -101000010 Fungus 1 -101000010 bearbaiting 1 -101000010 mohajir 1 -101000010 non-problem 1 -101000010 Testerossa 1 -101000010 co-major 1 -101000010 27-incher 1 -101000010 60,000- 1 -101000010 cesspool. 1 -101000010 Hermantown 1 -101000010 trollop 1 -101000010 winging-it 1 -101000010 40-billion-yen 1 -101000010 semi-isolationism 1 -101000010 tablepounder 1 -101000010 portrait. 1 -101000010 3,200-acre 1 -101000010 scrooge 1 -101000010 treehouse 1 -101000010 Boerne 1 -101000010 pseudo-hawk 1 -101000010 Hauppage 1 -101000010 boat-rocker 1 -101000010 mini-apprenticeship 1 -101000010 style-cramper 1 -101000010 sandstorm 1 -101000010 526-page 1 -101000010 Supertot 1 -101000010 woodstove 1 -101000010 gray-brown 1 -101000010 Takeover-Related 1 -101000010 several-dollars 1 -101000010 crime-bribery 1 -101000010 sieve. 1 -101000010 frameup 1 -101000010 Kinderhook 1 -101000010 triphammer 1 -101000010 70-to-1 1 -101000010 clear-thinking 1 -101000010 Kentuckian 1 -101000010 both/and 1 -101000010 5.6-trillion-yen 1 -101000010 climb-down 1 -101000010 halfmile 1 -101000010 wolf. 1 -101000010 Bore 1 -101000010 640-acre 1 -101000010 3,000-room 1 -101000010 dictatorship. 1 -101000010 non-vote-getter 1 -101000010 sadomasochist 1 -101000010 Mandolin 1 -101000010 Dorecht 1 -101000010 go-cart 1 -101000010 birthmark 1 -101000010 half-black 1 -101000010 180-pounder 1 -101000010 mineworker 1 -101000010 nonparticipant 1 -101000010 whip-tap 1 -101000010 14-race 1 -101000010 Perugia 1 -101000010 Torringford 1 -101000010 pilot-trainee 1 -101000010 Carload 1 -101000010 sphincter-tightening 1 -101000010 rudderman 1 -101000010 Trussville 1 -101000010 doctor. 1 -101000010 sit-around 1 -101000010 Porta-Potti 1 -101000010 helideck 1 -101000010 drought-breaker 1 -101000010 unit-by-unit 1 -101000010 high-tax-rate 1 -101000010 seven-panel 1 -101000010 model/actress 1 -101000010 roadrunner 1 -101000010 1779 1 -101000010 mini-corporation 1 -101000010 Bite-O-Meter 1 -101000010 scoutmaster 2 -101000010 360,000-kilowatt 2 -101000010 trice 2 -101000010 jet-setter 2 -101000010 well-argued 2 -101000010 co-organizer 2 -101000010 27-yarder 2 -101000010 Vonore 2 -101000010 minirefunding 2 -101000010 topknot 2 -101000010 tepee 2 -101000010 one-nighter 2 -101000010 ceramicist 2 -101000010 clambake 2 -101000010 subpeona 2 -101000010 cablegram 2 -101000010 sandbar 2 -101000010 Perk 2 -101000010 Montgomeryville 2 -101000010 hunderweight 2 -101000010 thunderclap 2 -101000010 mini-industry 2 -101000010 Tampa. 2 -101000010 warchest 2 -101000010 by-your-leave 2 -101000010 thumbtack 2 -101000010 centipede 2 -101000010 neuromagnetometer 2 -101000010 woodcarver 2 -101000010 walk-out 2 -101000010 trenchcoat 2 -101000010 powderkeg 2 -101000010 while. 2 -101000010 mid-double-A 2 -101000010 high-triple-B 2 -101000010 speargun 2 -101000010 rabble-rouser 2 -101000010 handbasket 2 -101000010 tentadero 2 -101000010 pansy 2 -101000010 ka-chunk 2 -101000010 Fostoria 2 -101000010 non-story 2 -101000010 MiG-19 2 -101000010 heartbreaker 2 -101000010 Dansville 2 -101000010 great-great-great-grandson 2 -101000010 Securities-JTM 2 -101000010 co-bidder 2 -101000010 vacuum. 2 -101000010 nail-biter 2 -101000010 skinflint 2 -101000010 microsecond 2 -101000010 Hitter 2 -101000010 one-piece 2 -101000010 deal-breaker 2 -101000010 faker 2 -101000010 semi-desert 2 -101000010 Landisville 2 -101000010 co-defendent 2 -101000010 superflood 2 -101000010 desk. 2 -101000010 sicky 2 -101000010 half-truth 2 -101000010 farthing 2 -101000010 maatam 2 -101000010 Murrysville 2 -101000010 narwhal 2 -101000010 Crisfield 2 -101000010 cheapskate 2 -101000010 revenue-loser 2 -101000010 murder-suicide 2 -101000010 sawbuck 2 -101000010 straddler 2 -101000010 churl 2 -101000010 flashover 2 -101000010 hard-nose 2 -101000010 dabbler 2 -101000010 Newburgh 2 -101000010 descrambler 2 -101000010 Colrain 2 -101000010 smidgeon 2 -101000010 profit-maker 2 -101000010 nondrinker 2 -101000010 four-footer 2 -101000010 stomachache 2 -101000010 kleptocracy 2 -101000010 straight-out 2 -101000010 halfpoint 2 -101000010 stinker 3 -101000010 half-cent 3 -101000010 psychopath 3 -101000010 mastiff 3 -101000010 laywer 3 -101000010 tourniquet 3 -101000010 mini-recession 3 -101000010 gully 3 -101000010 timeout 3 -101000010 low-double-A 3 -101000010 dauber 3 -101000010 grimace 3 -101000010 Lebec 3 -101000010 heliport 3 -101000010 fistfight 3 -101000010 magnetron 3 -101000010 Cobleskill 3 -101000010 penguin 3 -101000010 non-person 3 -101000010 greenhorn 3 -101000010 no-hitter 3 -101000010 promontory 3 -101000010 sweatsuit 3 -101000010 one-kilogram 3 -101000010 left-winger 3 -101000010 bummer 3 -101000010 bagpiper 3 -101000010 toady 3 -101000010 Simca 3 -101000010 taxiway 4 -101000010 Phillipsburg 4 -101000010 non-smoker 4 -101000010 Syosset 4 -101000010 daze 4 -101000010 price-depressant 4 -101000010 bell-ringer 4 -101000010 capon 4 -101000010 firearm 4 -101000010 tragicomedy 4 -101000010 coward 4 -101000010 madhouse 5 -101000010 paperweight 5 -101000010 Coltibuono 5 -101000010 Limb 5 -101000010 goner 5 -101000010 whisker 5 -101000010 counter-bid 6 -101000010 hundredfold 6 -101000010 pedicure 6 -101000010 bullhorn 6 -101000010 molehill 6 -101000010 fishbowl 6 -101000010 blowtorch 6 -101000010 money-loser 7 -101000010 fireball 7 -101000010 non-starter 7 -101000010 hundred-weight 7 -101000010 glossary 8 -101000010 Middleburg 8 -101000010 spade 8 -101000010 doer 9 -101000010 huff 9 -101000010 6-foot 9 -101000010 tizzy 9 -101000010 Salesman 9 -101000010 whopper 10 -101000010 skateboard 10 -101000010 cop-out 10 -101000010 cropper 10 -101000010 lark 11 -101000010 co-trustee 13 -101000010 first-come 13 -101000010 nonstarter 13 -101000010 nonevent 14 -101000010 teapot 15 -101000010 pushover 16 -101000010 kilo 16 -101000010 trance 16 -101000010 whimper 17 -101000010 nutshell 17 -101000010 non-issue 19 -101000010 shoo-in 20 -101000010 misnomer 23 -101000010 kilogram 23 -101000010 gram 24 -101000010 coma 25 -101000010 godsend 27 -101000010 traitor 27 -101000010 Shrewsbury 27 -101000010 Sedona 43 -101000010 hundredweight 44 -101000010 non-event 45 -101000010 quarter-point 47 -101000010 shambles 51 -101000010 fluke 54 -101000010 vengeance 73 -101000010 Holliston 137 -101000010 gallon 452 -101000010 bushel 472 -101000010 row 678 -101000010 share 51621 -101000010 barrel 1924 -10100001100 anotheir 1 -10100001100 skyscraper-to-go 1 -10100001100 ob-gyn 1 -10100001100 hard-baked 1 -10100001100 millirem 1 -10100001100 shut-eye 1 -10100001100 foreigner-basher 1 -10100001100 Kansas-bred 1 -10100001100 foulness 1 -10100001100 studio-within-a-studio 1 -10100001100 nitwit 1 -10100001100 Euro-stagnation 1 -10100001100 immodesty 1 -10100001100 near-perfection 1 -10100001100 silviculture 1 -10100001100 cents-per 1 -10100001100 lifelessly 1 -10100001100 new-that 1 -10100001100 intangibly 1 -10100001100 nonbureaucracy 1 -10100001100 high-ball 1 -10100001100 bender 2 -10100001100 immunosorbent 2 -10100001100 buzzards 2 -10100001100 birdhouse 3 -10100001100 somersault 3 -10100001100 sunspots 3 -10100001100 colonnaded 3 -10100001100 3/8-point 5 -10100001100 decliner 10 -10100001100 juncture 83 -10100001100 notch 87 -10100001100 point 11085 -10100001100 gainer 103 -10100001101 per-metric-ton 1 -10100001101 ammendments 1 -10100001101 football-free 1 -10100001101 Miles. 1 -10100001101 20-by-24-inch 1 -10100001101 Cornetti 1 -10100001101 post-Meltdown 1 -10100001101 grainhandlers 1 -10100001101 milles 1 -10100001101 wassubstantially 1 -10100001101 cowhide 1 -10100001101 Years. 1 -10100001101 pounds-a-year 1 -10100001101 carfare 2 -10100001101 F-100s 3 -10100001101 cogs 4 -10100001101 billion. 4 -10100001101 shekels 4 -10100001101 Billion 19 -10100001101 pfennigs 52 -10100001101 Million 66 -10100001101 points 9731 -10100001101 degrees 648 -10100001110 son-of-Smoot-Hawley 1 -10100001110 countercurrent 1 -10100001110 Girondists 1 -10100001110 sawhorse 1 -10100001110 misanthrope 1 -10100001110 straight-shooter 1 -10100001110 cowbell 1 -10100001110 black-marketeer 1 -10100001110 447-yarder 1 -10100001110 counter-coalition 1 -10100001110 Kremlin-watcher 1 -10100001110 light-year 1 -10100001110 drumstick 1 -10100001110 remittitur 1 -10100001110 concordat 1 -10100001110 home-purchaser 1 -10100001110 penalty-loss 1 -10100001110 house-raising 1 -10100001110 10-year-sentence 1 -10100001110 quota-breaker 1 -10100001110 pacifier 1 -10100001110 superteam 1 -10100001110 incumbent-lock 1 -10100001110 down-side 1 -10100001110 tsubo 1 -10100001110 Mafia-fighter 1 -10100001110 miscarry 1 -10100001110 over-withhold 1 -10100001110 Beachhead 1 -10100001110 stepparent 1 -10100001110 Foreword 1 -10100001110 Gauloise 1 -10100001110 quasi-specialist 1 -10100001110 megapurse 1 -10100001110 finishing-course 1 -10100001110 social-democrat 1 -10100001110 softie 1 -10100001110 agglutinate 1 -10100001110 soft-liners 1 -10100001110 realigment 1 -10100001110 byelection 1 -10100001110 gazelle 1 -10100001110 resectoscope 1 -10100001110 mega-winner 1 -10100001110 near-fistfight 1 -10100001110 mini-Olympics 1 -10100001110 quarter-- 1 -10100001110 tankhouse 1 -10100001110 mini-revolt 1 -10100001110 fleabite 1 -10100001110 sign-post 1 -10100001110 parcel-bomb 1 -10100001110 soft-top/hard-top 1 -10100001110 crash-course 1 -10100001110 Curveball 1 -10100001110 Wannabee 1 -10100001110 delusory 1 -10100001110 spatzle 1 -10100001110 X-factor 1 -10100001110 lacuna 1 -10100001110 micromanager 1 -10100001110 mini-experiment 1 -10100001110 22-year-term 1 -10100001110 shopowner 1 -10100001110 Slavophile 1 -10100001110 solecism 1 -10100001110 re-incorporation 1 -10100001110 record-breaker 1 -10100001110 Turkey-bashing 1 -10100001110 knee-stance 1 -10100001110 Nereid 1 -10100001110 do-except 1 -10100001110 transpose 1 -10100001110 lawyer-pharmacologist 1 -10100001110 loaner 2 -10100001110 talkies 2 -10100001110 stealer 2 -10100001110 rater 2 -10100001110 rear-guardist 2 -10100001110 Kelowna 2 -10100001110 lulu 2 -10100001110 cosponsor 2 -10100001110 slick-fielding 2 -10100001110 Kladusa 2 -10100001110 unmeasured 2 -10100001110 hippo 2 -10100001110 Capricorn 2 -10100001110 half-pound 2 -10100001110 Rowayton 2 -10100001110 lay-up 2 -10100001110 thickener 2 -10100001110 clicker 2 -10100001110 Radcliff 2 -10100001110 Hatboro 2 -10100001110 Guilderland 2 -10100001110 Sylacauga 2 -10100001110 savviness 2 -10100001110 near-tripling 2 -10100001110 down-draft 2 -10100001110 half-marathon 2 -10100001110 M-O-N-E-Y 2 -10100001110 thickset 2 -10100001110 Dabbler 2 -10100001110 Califon 2 -10100001110 WTO 2 -10100001110 homunculus 3 -10100001110 plateful 3 -10100001110 thimbleful 3 -10100001110 nullity 3 -10100001110 substrain 3 -10100001110 stein 3 -10100001110 quadrillionth 3 -10100001110 Cellar 3 -10100001110 Abduction 3 -10100001110 near-accident 4 -10100001110 lithotripter 5 -10100001110 peculiarity 6 -10100001110 brownout 6 -10100001110 near-doubling 9 -10100001110 bundle 71 -10100001110 result 11039 -10100001110 upshot 106 -10100001111 363.67 1 -10100001111 1/2-cent-a-barrel 1 -10100001111 647.77 1 -10100001111 138.60 1 -10100001111 369.20 1 -10100001111 769.74 1 -10100001111 1387.63 1 -10100001111 two-hundredths 1 -10100001111 318.75 1 -10100001111 70.15 1 -10100001111 no-effect 1 -10100001111 otherwise-inevitable 1 -10100001111 99-basis 1 -10100001111 Labors 1 -10100001111 pro-IMF 1 -10100001111 215.68 1 -10100001111 175.96 1 -10100001111 33.27 1 -10100001111 two-aircraft 1 -10100001111 6/100ths 1 -10100001111 enlargening 1 -10100001111 38.19 1 -10100001111 perfect-10 1 -10100001111 138.07 1 -10100001111 250.98 1 -10100001111 fashion-cycle 1 -10100001111 0.69033 1 -10100001111 cackled 1 -10100001111 160.37 1 -10100001111 199.11 1 -10100001111 3/100th 1 -10100001111 semi-fixed 1 -10100001111 7.06-point 1 -10100001111 1163.17 1 -10100001111 re-capitalization 1 -10100001111 welfare-assistance 1 -10100001111 several-day 1 -10100001111 boobook 1 -10100001111 well-sharpened 1 -10100001111 79-basis 1 -10100001111 due-date 1 -10100001111 1656.62 1 -10100001111 207.56 1 -10100001111 1/2,500th 1 -10100001111 1/2-percentage 1 -10100001111 1/2-mile-per-gallon 1 -10100001111 0.78-point 1 -10100001111 confabulations 1 -10100001111 82.87 1 -10100001111 contract-negotiating 1 -10100001111 6.60-point 1 -10100001111 traffic-generating 1 -10100001111 124.01 1 -10100001111 51.53 1 -10100001111 updatings 1 -10100001111 88-29 1 -10100001111 name-and-nominal-value 1 -10100001111 peavey 1 -10100001111 sorest 1 -10100001111 farther-than-normal 1 -10100001111 parallel-parking 1 -10100001111 788.50 1 -10100001111 UNESCOs 1 -10100001111 taking-off 1 -10100001111 quarter-percentage 1 -10100001111 34945.56 1 -10100001111 percentgage 1 -10100001111 2584.07 1 -10100001111 193.31 1 -10100001111 20/100ths 1 -10100001111 5160 1 -10100001111 pertcentage 1 -10100001111 219.22-point 1 -10100001111 second-person 1 -10100001111 1512.99 1 -10100001111 net-cord 1 -10100001111 135.56-point 1 -10100001111 70.66-point 1 -10100001111 1545.77 1 -10100001111 156.04 1 -10100001111 civil-liberty 1 -10100001111 point-gain 1 -10100001111 reservationholder 1 -10100001111 stock-option-plan 1 -10100001111 Kinds 1 -10100001111 perforation 1 -10100001111 75.03 1 -10100001111 Beijing-Moscow 1 -10100001111 progressive-conservative 1 -10100001111 17/100ths 1 -10100001111 78.27 1 -10100001111 Lagrangian 1 -10100001111 excustomers 1 -10100001111 20-30 1 -10100001111 278.64 1 -10100001111 determinent 1 -10100001111 165.74 1 -10100001111 payout-bylaws 1 -10100001111 609.53 1 -10100001111 141.01 1 -10100001111 left-to-right 1 -10100001111 benefit-related 1 -10100001111 board-another 1 -10100001111 Archimedean 1 -10100001111 midnight-to-8-a.m. 1 -10100001111 34771.21 1 -10100001111 167.16 2 -10100001111 lead-pipe 2 -10100001111 500-yen 2 -10100001111 1203.23 2 -10100001111 97.56 2 -10100001111 vogues 2 -10100001111 d-Percent 2 -10100001111 enzyme-linked 2 -10100001111 273.46 2 -10100001111 4/100ths 2 -10100001111 188.95 2 -10100001111 189.43 2 -10100001111 305.99 2 -10100001111 vanloads 2 -10100001111 pecentage 2 -10100001111 Musketeers 2 -10100001111 trans-shipment 2 -10100001111 73.21 2 -10100001111 ca 2 -10100001111 132.52 2 -10100001111 287.66 2 -10100001111 81.61 2 -10100001111 enduser 2 -10100001111 criticial 3 -10100001111 dramatizations 3 -10100001111 trillionths 3 -10100001111 906.42 3 -10100001111 143.74 3 -10100001111 one-percentage 4 -10100001111 615.49 4 -10100001111 short-position 4 -10100001111 half-percentage 5 -10100001111 billionths 6 -10100001111 44.15 6 -10100001111 jumping-off 7 -10100001111 d-Percentage 9 -10100001111 decimal 14 -10100001111 megabyte 25 -10100001111 percentage-point 28 -10100001111 1/2-point 28 -10100001111 508.00 31 -10100001111 hundredths 39 -10100001111 vantage 39 -10100001111 five-cent 40 -10100001111 focal 70 -10100001111 percentage 5784 -10100001111 percent 442 -1010001000 arangement 1 -1010001000 Petard 1 -1010001000 veto. 1 -1010001000 198,339 1 -1010001000 comedy-adventure-fantasy 1 -1010001000 sexenio 1 -1010001000 two-footer 1 -1010001000 eight-foot-chain 1 -1010001000 magnetization 1 -1010001000 equipoise 1 -1010001000 arbitrament 1 -1010001000 ABM-mode 1 -1010001000 triteness 1 -1010001000 iron-bending 1 -1010001000 curtsy 1 -1010001000 pro-nuncio 1 -1010001000 locket 1 -1010001000 6-foot-7-incher 1 -1010001000 PERSISTED 1 -1010001000 angstrom 1 -1010001000 ROMANCES 1 -1010001000 indemnifaction 1 -1010001000 concern-had 1 -1010001000 amnesiac 1 -1010001000 Komisarjevsky 1 -1010001000 educationalist 1 -1010001000 self-centeredness 1 -1010001000 Kozara 1 -1010001000 ontology 1 -1010001000 makeweight 1 -1010001000 Paris-Marseilles 1 -1010001000 Kluxers 1 -1010001000 exachanges 1 -1010001000 intermeddler 1 -1010001000 mischance 1 -1010001000 wiz 1 -1010001000 supergroups 1 -1010001000 Mainers 2 -1010001000 nuncio 2 -1010001000 underbidder 2 -1010001000 words. 2 -1010001000 Agasse 2 -1010001000 megatrade 2 -1010001000 ottoman 2 -1010001000 infiltrator 2 -1010001000 enhancer 2 -1010001000 CONTACT 2 -1010001000 ever-smiling 2 -1010001000 reconnection 2 -1010001000 clinic-hospital 2 -1010001000 twosome 3 -1010001000 angiogram 4 -1010001000 architect-engineer 4 -1010001000 arrangments 4 -1010001000 advertisment 4 -1010001000 aesthete 5 -1010001000 algorithm 5 -1010001000 CLASHED 7 -1010001000 agreeement 7 -1010001000 announcment 8 -1010001000 afterlife 8 -1010001000 designations 8 -1010001000 injuction 9 -1010001000 earring 13 -1010001000 appendix 21 -1010001000 armistice 23 -1010001000 ax 71 -1010001000 ordinance 138 -1010001000 obsession 163 -1010001000 impasse 238 -1010001000 embargo 345 -1010001000 experiment 715 -1010001000 alliance 913 -1010001000 injunction 1061 -1010001000 arrangement 1412 -1010001000 amendment 1861 -1010001000 agreement 19323 -1010001000 accord 3321 -10100010010 80-child 1 -10100010010 18-person 1 -10100010010 icehouse 1 -10100010010 over-distribution 1 -10100010010 obstetrician/gynecologist 1 -10100010010 index- 1 -10100010010 Aukland 1 -10100010010 MCA-vs.-Disney 1 -10100010010 airhead. 1 -10100010010 anum 1 -10100010010 88-foot 1 -10100010010 acquiree 1 -10100010010 amulet 1 -10100010010 acronymaniac 1 -10100010010 anti-Radical 1 -10100010010 inmate-number 1 -10100010010 injury-plagued 1 -10100010010 ex-laundress 1 -10100010010 Enjoyable 1 -10100010010 worker-hour 1 -10100010010 amateur-night 1 -10100010010 extrovert 1 -10100010010 ever-spiraling 1 -10100010010 egg-shell 1 -10100010010 annoucement 1 -10100010010 eight-medal 1 -10100010010 Abstraction 1 -10100010010 '80-type 1 -10100010010 indeterminancy 1 -10100010010 saltiness 1 -10100010010 underplanned 1 -10100010010 annnoucement 1 -10100010010 apron-clad 1 -10100010010 HCE 1 -10100010010 oceansurvivalist 1 -10100010010 uninstructed 1 -10100010010 octane-enhancer 1 -10100010010 Admonishment 1 -10100010010 avenue. 1 -10100010010 815,000-share 1 -10100010010 orgiastically 1 -10100010010 afterburner 1 -10100010010 Atascadero 1 -10100010010 ambulette 1 -10100010010 aider 1 -10100010010 airball 1 -10100010010 anti-hormone 1 -10100010010 plebicite 1 -10100010010 infirmary 1 -10100010010 Atchinson 1 -10100010010 appraisal. 1 -10100010010 A&E-sponsored 1 -10100010010 full. 1 -10100010010 bargirls 1 -10100010010 Ozalist 1 -10100010010 unspellbinding 1 -10100010010 84-yard 1 -10100010010 offshore-oil-lease 1 -10100010010 instamatic 1 -10100010010 11-Bush 1 -10100010010 imposter 1 -10100010010 adventure-fantasy 1 -10100010010 aid-to-the-contras 1 -10100010010 unreconstituted 1 -10100010010 order-taker 1 -10100010010 ex-consultant 1 -10100010010 Arbeitskreis 1 -10100010010 animal-hater 1 -10100010010 arthrogram 1 -10100010010 Illness 1 -10100010010 inteview 1 -10100010010 earth-shaker 1 -10100010010 envelope. 1 -10100010010 auto-decouplage 1 -10100010010 overachiever 1 -10100010010 upclose-and-personal 1 -10100010010 Elkview 1 -10100010010 overbid 1 -10100010010 oxy-moron 1 -10100010010 anti-asthmatic 1 -10100010010 industry-suported 1 -10100010010 amethyst-lover 1 -10100010010 oversale 1 -10100010010 egotist 1 -10100010010 agent-telegrapher 1 -10100010010 ever-so-slim 1 -10100010010 affair. 1 -10100010010 assistant. 1 -10100010010 over-the-table 1 -10100010010 employment-practices 1 -10100010010 exciton 1 -10100010010 X-curve 1 -10100010010 expatriation 1 -10100010010 aproned 1 -10100010010 aardvark 1 -10100010010 11.93-point 1 -10100010010 11-yard 1 -10100010010 ex-IBMer 1 -10100010010 allergist. 1 -10100010010 inferiority-complex 1 -10100010010 NEAR 1 -10100010010 afterword 1 -10100010010 electrocardiograph 1 -10100010010 efficent 1 -10100010010 Orwellian-type 1 -10100010010 upsweep 1 -10100010010 endrun 1 -10100010010 aileron 1 -10100010010 Inkster 1 -10100010010 eater. 1 -10100010010 Afrikaaner 1 -10100010010 also-dunked 1 -10100010010 18-mile-long 1 -10100010010 accelerometer 1 -10100010010 oxygenate 1 -10100010010 English-Korean 1 -10100010010 identical-looking 1 -10100010010 steak. 1 -10100010010 owner-occupier 1 -10100010010 route-mile 1 -10100010010 Idahoan 1 -10100010010 oats-growing 1 -10100010010 engine-seal 1 -10100010010 interview.But 1 -10100010010 aura. 1 -10100010010 alky 1 -10100010010 Ehrhard 1 -10100010010 hour-confirmation 1 -10100010010 obsession-compulsion 1 -10100010010 inbounds 1 -10100010010 ess 1 -10100010010 aberrancy 1 -10100010010 activist-lawyer-turned-publisher 1 -10100010010 inverview 1 -10100010010 almost-idea 1 -10100010010 ouch 1 -10100010010 outliner 1 -10100010010 epoxied 1 -10100010010 over-dramatic 1 -10100010010 abortion. 1 -10100010010 excrescence 1 -10100010010 second-nearly 1 -10100010010 officer/director 1 -10100010010 18-screener 1 -10100010010 MC6700 1 -10100010010 unchaperoned 1 -10100010010 ill-ventilated 1 -10100010010 erractic 1 -10100010010 iron-mining 1 -10100010010 ulcerating 1 -10100010010 Econo-Lodge 1 -10100010010 even-better 1 -10100010010 eight-blade 1 -10100010010 accountant-turned-entrepreneur 1 -10100010010 corm 1 -10100010010 Ogeechee-lime 1 -10100010010 apron-wearer 1 -10100010010 H2Owner 1 -10100010010 imprinter 1 -10100010010 averaging-out 1 -10100010010 expensive-to-make 1 -10100010010 arcology 1 -10100010010 agency-broker 1 -10100010010 on-deck 1 -10100010010 impetuousness 1 -10100010010 ending-ending 1 -10100010010 ever-so-tentative 1 -10100010010 over-groomed 1 -10100010010 idea-rich 1 -10100010010 Biologico 1 -10100010010 8mm-tape 1 -10100010010 Mexican. 1 -10100010010 up-close 1 -10100010010 eskimo 1 -10100010010 Keckhaver 1 -10100010010 American-Noriega 1 -10100010010 artiodactyl 1 -10100010010 unblurred 1 -10100010010 S.R.O. 1 -10100010010 kwe 1 -10100010010 advice-giver 1 -10100010010 eight-foot-fence 1 -10100010010 in-grown 1 -10100010010 industrial-explosives 1 -10100010010 anti-country 1 -10100010010 escallation 1 -10100010010 ow-ah 1 -10100010010 over-two-decade 1 -10100010010 index-finger 1 -10100010010 ex-janitor 1 -10100010010 hour-and-a-half-long 1 -10100010010 labor-hour 1 -10100010010 18-ounce 1 -10100010010 uitlander 1 -10100010010 aneurism 1 -10100010010 unpompous 1 -10100010010 attention-grabber 2 -10100010010 Iraqi-fired 2 -10100010010 atomosphere 2 -10100010010 audiologist 2 -10100010010 efflorescence 2 -10100010010 tablespoon 2 -10100010010 kiloliter 2 -10100010010 experimenter 2 -10100010010 EKG 2 -10100010010 aperitif 2 -10100010010 Erector 2 -10100010010 ex-partner 2 -10100010010 eyeful 2 -10100010010 ember 2 -10100010010 RBI 2 -10100010010 airbrush 2 -10100010010 8-8 2 -10100010010 8.6-million-share 2 -10100010010 extra-careful 2 -10100010010 18/64-inch 2 -10100010010 cosmopolite 2 -10100010010 Umpire 2 -10100010010 abortionist 2 -10100010010 schmeer 2 -10100010010 aneurysm 2 -10100010010 ammendment 2 -10100010010 LVAD 2 -10100010010 ibex 2 -10100010010 ex-boss 2 -10100010010 endophyte 2 -10100010010 airline. 2 -10100010010 orangutan 2 -10100010010 editee 2 -10100010010 organist 2 -10100010010 Osterville 2 -10100010010 unpatrolled 2 -10100010010 atelier 3 -10100010010 ibis 3 -10100010010 instrumentality 3 -10100010010 endoscope 3 -10100010010 eight-iron 3 -10100010010 ex-communist 3 -10100010010 underachiever 3 -10100010010 anticoagulant 3 -10100010010 introvert 3 -10100010010 applicator 3 -10100010010 Doum 3 -10100010010 icebox 3 -10100010010 ensign 3 -10100010010 pagare 3 -10100010010 eraser 4 -10100010010 man-hour 4 -10100010010 elegy 4 -10100010010 obelisk 4 -10100010010 acupuncturist 4 -10100010010 anticlimax 5 -10100010010 alleyway 5 -10100010010 amoeba 5 -10100010010 easement 5 -10100010010 abacus 6 -10100010010 appendectomy 6 -10100010010 impostor 6 -10100010010 amenity 6 -10100010010 asterisk 6 -10100010010 autocrat 6 -10100010010 eyesore 6 -10100010010 anchorage 7 -10100010010 adulterer 7 -10100010010 attention-getter 7 -10100010010 android 7 -10100010010 aphrodisiac 7 -10100010010 egomaniac 7 -10100010010 agnostic 8 -10100010010 octave 8 -10100010010 earful 9 -10100010010 underperformer 9 -10100010010 Elkhorn 10 -10100010010 easel 10 -10100010010 outhouse 10 -10100010010 antihistamine 11 -10100010010 annulment 11 -10100010010 aftershock 11 -10100010010 abomination 12 -10100010010 ashtray 13 -10100010010 annum 14 -10100010010 idealist 14 -10100010010 also-ran 15 -10100010010 inflation-fighter 15 -10100010010 end-run 15 -10100010010 iota 15 -10100010010 encore 17 -10100010010 A-plus 18 -10100010010 S.O.B. 18 -10100010010 deciliter 19 -10100010010 oddity 20 -10100010010 opportunist 23 -10100010010 enigma 24 -10100010010 accomplice 26 -10100010010 uptrend 27 -10100010010 afterthought 27 -10100010010 anachronism 29 -10100010010 arrow 30 -10100010010 ambush 48 -10100010010 optimist 51 -10100010010 anomaly 72 -10100010010 se 81 -10100010010 interviewer 95 -10100010010 intermediary 115 -10100010010 aberration 124 -10100010010 uphill 149 -10100010010 acre 182 -10100010010 outsider 232 -10100010010 advertisement 249 -10100010010 inch 251 -10100010010 ounce 2213 -10100010010 hour 2224 -10100010010 interview 4336 -10100010011 artspeak 1 -10100010011 awareness-training 1 -10100010011 microenvironment 1 -10100010011 battlement 1 -10100010011 emmissions 1 -10100010011 invester 1 -10100010011 self-explanations 1 -10100010011 otolaryngologist 1 -10100010011 arson-for-profit 1 -10100010011 in-joke 1 -10100010011 twenty-nine 1 -10100010011 anti-fundamentalist 1 -10100010011 ACT-SO 1 -10100010011 Airbus-300 1 -10100010011 raider-villains 1 -10100010011 orienting 1 -10100010011 Illinoisan 1 -10100010011 animal-exchange 1 -10100010011 entrepreneurial-studies 1 -10100010011 FDIC-sponsored 1 -10100010011 girlfully 1 -10100010011 elementary-school-French 1 -10100010011 adult-care 1 -10100010011 bodyblow 1 -10100010011 egg-grading 1 -10100010011 ex-Maoist 1 -10100010011 non-mice 1 -10100010011 officer-exchange 1 -10100010011 petroleum-acquisition 1 -10100010011 insurance-style 1 -10100010011 boner 1 -10100010011 oil-sensing 1 -10100010011 pallet 1 -10100010011 finial 1 -10100010011 affort 1 -10100010011 menance 1 -10100010011 arms-elimination 1 -10100010011 output-cutting 1 -10100010011 89.76 1 -10100010011 genuflection 1 -10100010011 Amoco-owned 1 -10100010011 negotiatiors 1 -10100010011 110.22 1 -10100010011 resemblence 1 -10100010011 employee-reduction 1 -10100010011 all-Mozart 1 -10100010011 car-line 1 -10100010011 backing-up 1 -10100010011 carwashes 1 -10100010011 overexposures 1 -10100010011 thumb-sucking 1 -10100010011 stock-switching 1 -10100010011 all-Copland 1 -10100010011 evacuant 1 -10100010011 travel-weariness 1 -10100010011 deadness 1 -10100010011 investment-promotion 1 -10100010011 ethics-education 1 -10100010011 starchiness 1 -10100010011 proneness 1 -10100010011 all-Ellington 1 -10100010011 energizer 1 -10100010011 162,870 1 -10100010011 mislabelings 1 -10100010011 2200s 1 -10100010011 upgrade-coordinating 1 -10100010011 18-yarder 1 -10100010011 nurse-organizing 1 -10100010011 endurable 2 -10100010011 piquancy 2 -10100010011 sonority 2 -10100010011 inflated-invoice 2 -10100010011 RAMs 2 -10100010011 counterpoints 2 -10100010011 anxiousness 2 -10100010011 vinblastine 2 -10100010011 satchels 2 -10100010011 service-centers 2 -10100010011 anti-climax 3 -10100010011 interruptaholic 3 -10100010011 all-digital 3 -10100010011 oldie 3 -10100010011 exemplar 3 -10100010011 earpiece 4 -10100010011 obeisance 4 -10100010011 adherent 4 -10100010011 axe 5 -10100010011 apologia 5 -10100010011 addendum 5 -10100010011 eye-opener 6 -10100010011 appendage 6 -10100010011 analogue 6 -10100010011 understudy 9 -10100010011 internship 9 -10100010011 inroad 9 -10100010011 enticement 10 -10100010011 ambassadorship 10 -10100010011 ode 11 -10100010011 approximation 12 -10100010011 exhortation 17 -10100010011 epitaph 17 -10100010011 irritant 26 -10100010011 blanche 26 -10100010011 allusion 31 -10100010011 affront 34 -10100010011 ultimatum 36 -10100010011 overreaction 51 -10100010011 antidote 55 -10100010011 inducement 67 -10100010011 impediment 81 -10100010011 apology 108 -10100010011 insult 115 -10100010011 impetus 188 -10100010011 objection 219 -10100010011 invitation 308 -10100010011 embarrassment 330 -10100010011 excuse 363 -10100010011 obstacle 450 -10100010011 incentive 1463 -10100010011 alternative 2301 -10100010011 opportunity 2965 -10100010011 option 3205 -10100010011 attempt 4194 -10100010011 effort 7127 -10100010100 hotdog-to-go 1 -10100010100 counterchallenge 1 -10100010100 womanfully 1 -10100010100 router 1 -10100010100 vica 1 -10100010100 frug 1 -10100010100 stencil 1 -10100010100 lustre 1 -10100010100 howdy-do 1 -10100010100 700-pound-woman 1 -10100010100 chiropracter 1 -10100010100 counter-ideology 1 -10100010100 shareand 1 -10100010100 4,445 1 -10100010100 late-comer 1 -10100010100 codicil 1 -10100010100 ricotta 1 -10100010100 half-guilder 1 -10100010100 subisidiaries 1 -10100010100 president/publishers 1 -10100010100 bedfellow 1 -10100010100 moneylender 1 -10100010100 surpise 1 -10100010100 player/actor 1 -10100010100 fruit-yield 1 -10100010100 midsections 1 -10100010100 stepping-stone 1 -10100010100 B-24s 1 -10100010100 Kennedyites 1 -10100010100 cross-appeal 1 -10100010100 quarter-turn 1 -10100010100 coondog 1 -10100010100 clasps 1 -10100010100 93-seat 1 -10100010100 reluctancy 1 -10100010100 schnook 1 -10100010100 mammy 1 -10100010100 xenophobe 1 -10100010100 Rottweiler 1 -10100010100 centime 1 -10100010100 sitcoms-within-a-sitcom 1 -10100010100 successsor 1 -10100010100 Impulses 1 -10100010100 eye-banger 1 -10100010100 20-yarder 1 -10100010100 moralizer 1 -10100010100 Bophuthatswanan 1 -10100010100 backdoors 1 -10100010100 willingess 1 -10100010100 manueuver 1 -10100010100 14-yarder 1 -10100010100 mailboat 1 -10100010100 300- 1 -10100010100 scientist-consultant 1 -10100010100 superagency 2 -10100010100 modulations 2 -10100010100 firefights 2 -10100010100 subtheme 2 -10100010100 late-16th-century 2 -10100010100 body-blow 2 -10100010100 lusher 2 -10100010100 excitement. 2 -10100010100 royalist 2 -10100010100 drubbings 2 -10100010100 stength 2 -10100010100 crappie 2 -10100010100 fictionist 2 -10100010100 Japans 2 -10100010100 near-miracle 3 -10100010100 resonances 3 -10100010100 snoozer 3 -10100010100 headdresses 3 -10100010100 problem-solver 3 -10100010100 excision 3 -10100010100 candlepower 3 -10100010100 mailmen 3 -10100010100 barn-burner 3 -10100010100 renationalization 4 -10100010100 puzzler 4 -10100010100 musket 4 -10100010100 countertrend 4 -10100010100 sidelight 4 -10100010100 frameworks 4 -10100010100 get-up 4 -10100010100 tripwire 4 -10100010100 cat's-paw 5 -10100010100 bridgehead 5 -10100010100 mitigation 5 -10100010100 pre-conditions 5 -10100010100 ringer 5 -10100010100 ornamentation 5 -10100010100 latecomer 5 -10100010100 memorials 6 -10100010100 signposts 6 -10100010100 countersanctions 6 -10100010100 chameleon 6 -10100010100 counterpunch 6 -10100010100 counterforce 7 -10100010100 steppingstone 7 -10100010100 Tribute 8 -10100010100 turnoff 9 -10100010100 Salute 9 -10100010100 recalculation 11 -10100010100 morsel 11 -10100010100 carryover 12 -10100010100 sledgehammer 13 -10100010100 10- 14 -10100010100 paean 15 -10100010100 misstatement 17 -10100010100 capitulation 17 -10100010100 palliative 18 -10100010100 godfather 18 -10100010100 subterfuge 20 -10100010100 stimulant 21 -10100010100 smokescreen 21 -10100010100 cataclysm 22 -10100010100 counterweight 24 -10100010100 predisposition 27 -10100010100 counterpoint 28 -10100010100 precondition 29 -10100010100 provocation 32 -10100010100 hindrance 35 -10100010100 breakout 35 -10100010100 testament 37 -10100010100 disturbance 37 -10100010100 disincentive 39 -10100010100 throwback 39 -10100010100 gratuity 41 -10100010100 technicality 44 -10100010100 rebuttal 48 -10100010100 pretext 51 -10100010100 yardstick 51 -10100010100 rebuke 53 -10100010100 springboard 56 -10100010100 menace 61 -10100010100 precursor 65 -10100010100 prerequisite 68 -10100010100 disservice 71 -10100010100 roadblock 75 -10100010100 consolation 75 -10100010100 giveaway 84 -10100010100 relevance 87 -10100010100 resemblance 91 -10100010100 recourse 92 -10100010100 monument 99 -10100010100 prelude 105 -10100010100 sin 123 -10100010100 clue 129 -10100010100 stranger 131 -10100010100 boon 144 -10100010100 tribute 153 -10100010100 lengths 162 -10100010100 contributor 168 -10100010100 temptation 182 -10100010100 clues 263 -10100010100 concession 294 -10100010100 barrier 350 -10100010100 tendency 449 -10100010100 precedent 483 -10100010100 reference 628 -10100010100 transition 794 -10100010100 solution 1504 -10100010100 threat 2608 -10100010100 ways 3406 -10100010100 chance 3442 -10100010101 mademoiselle 1 -10100010101 CLHB 1 -10100010101 JII 1 -10100010101 POAI 1 -10100010101 industry-wafting 1 -10100010101 Rochesters 1 -10100010101 positionings 1 -10100010101 WCRSY 1 -10100010101 PSB.WS 1 -10100010101 CMAFC 1 -10100010101 HYI 1 -10100010101 cash-plus-securities 1 -10100010101 amateurishness 1 -10100010101 jabber 1 -10100010101 macroscopic 1 -10100010101 viscosities 1 -10100010101 PANL 1 -10100010101 ATO 1 -10100010101 dogfighting 1 -10100010101 liabilitysince 1 -10100010101 JMPC 1 -10100010101 LARL 1 -10100010101 snoot 1 -10100010101 X-MPs 1 -10100010101 Boz-worth 1 -10100010101 Edal 1 -10100010101 window-shop 1 -10100010101 DMF 1 -10100010101 MWGP 1 -10100010101 METC 1 -10100010101 124.30-yen 1 -10100010101 tram-ride 1 -10100010101 sociobabble 1 -10100010101 indoor-track 1 -10100010101 79,072 1 -10100010101 private-labels 1 -10100010101 survelance 1 -10100010101 REAS 1 -10100010101 eyes/Look 1 -10100010101 Goldfarbs 1 -10100010101 enormities 1 -10100010101 tendril 1 -10100010101 hairdryers 1 -10100010101 bejesus 1 -10100010101 earthling 1 -10100010101 K-rations 1 -10100010101 3,131,000 1 -10100010101 Rouse. 1 -10100010101 HWNC 1 -10100010101 FBTC 1 -10100010101 TOV 1 -10100010101 CXV 1 -10100010101 code-word 1 -10100010101 2,814 1 -10100010101 monetarily 1 -10100010101 getting-to-know 1 -10100010101 Feb.19 1 -10100010101 ashcan 1 -10100010101 hairdresser-husband 1 -10100010101 alehouses 1 -10100010101 CBOG 1 -10100010101 USM 1 -10100010101 requisites 1 -10100010101 LVX 1 -10100010101 HLYS 1 -10100010101 stepladders 1 -10100010101 IHKSV 1 -10100010101 98-pound 1 -10100010101 assistor 1 -10100010101 Anne-Sophie 1 -10100010101 170,517 1 -10100010101 non-performer 1 -10100010101 GMGW 1 -10100010101 GNE 1 -10100010101 NWGI 1 -10100010101 self-possession 1 -10100010101 brand-names 1 -10100010101 VRSY 1 -10100010101 proles 1 -10100010101 Lenin. 1 -10100010101 TDRLF 1 -10100010101 VCEL 1 -10100010101 INBS 1 -10100010101 FRC 1 -10100010101 PPT 1 -10100010101 PSF 1 -10100010101 TTF 1 -10100010101 HYB 1 -10100010101 U.S.that 1 -10100010101 fuel-but 1 -10100010101 snowdrops 1 -10100010101 FPRY 1 -10100010101 NGFCF 1 -10100010101 NRG 1 -10100010101 STW 1 -10100010101 duvets 1 -10100010101 SLRV 1 -10100010101 FFGT 1 -10100010101 no-brainer-if 1 -10100010101 toots 1 -10100010101 long-discredited 1 -10100010101 microsocieties 1 -10100010101 DM3,500 1 -10100010101 stuffings 1 -10100010101 PL-480 1 -10100010101 coach-and-horses 1 -10100010101 GLYT 1 -10100010101 LMAC 1 -10100010101 MFFC 1 -10100010101 PWRR 1 -10100010101 manager-owner 1 -10100010101 hell-hole 1 -10100010101 NNCXF 1 -10100010101 CGNEP 1 -10100010101 dissembling 1 -10100010101 BIM 1 -10100010101 UBN 1 -10100010101 CNCD 1 -10100010101 FSVA 1 -10100010101 down- 1 -10100010101 7,479 1 -10100010101 SLFC 1 -10100010101 card-counters 1 -10100010101 perimeters 1 -10100010101 preachments 2 -10100010101 Imamate 2 -10100010101 stolovia 2 -10100010101 Guasches 2 -10100010101 incarcerations 2 -10100010101 excursus 2 -10100010101 windsurfers 2 -10100010101 G-word 2 -10100010101 mid-1700s 2 -10100010101 bejeezus 2 -10100010101 stratagem 2 -10100010101 Northeasterner 2 -10100010101 workspace 2 -10100010101 recordkeeper 2 -10100010101 gravitation 2 -10100010101 brazilwood 2 -10100010101 euphony 2 -10100010101 valediction 2 -10100010101 Subandrios 2 -10100010101 ascents 2 -10100010101 Romagna 2 -10100010101 tear-jerkers 2 -10100010101 Protons 3 -10100010101 bodices 3 -10100010101 variousness 3 -10100010101 darnedest 3 -10100010101 5-foot-2 3 -10100010101 nabobs 3 -10100010101 Philadelphian 3 -10100010101 sleigh 3 -10100010101 darndest 3 -10100010101 legitimization 4 -10100010101 toolbox 4 -10100010101 semicircle 5 -10100010101 sotto 5 -10100010101 damnedest 5 -10100010101 daylights 6 -10100010101 bylines 7 -10100010101 trendline 7 -10100010101 way. 11 -10100010101 soonest 13 -10100010101 way 17452 -10100010101 prologue 14 -10100010110 1807 1 -10100010110 viticulture 1 -10100010110 1960-64 1 -10100010110 residence. 1 -10100010110 London-contributed 1 -10100010110 canticles 1 -10100010110 wig-wearing 1 -10100010110 1583 1 -10100010110 perniciousness 1 -10100010110 Unicbank 1 -10100010110 Chicago. 1 -10100010110 ton-miles 1 -10100010110 even-aged 1 -10100010110 Schnucks 1 -10100010110 midspeech 1 -10100010110 parttimers 1 -10100010110 additon 1 -10100010110 25th-anniversary 1 -10100010110 superefficient 1 -10100010110 anti-piracy 1 -10100010110 1951-52 1 -10100010110 10-box 1 -10100010110 DONATIONS 1 -10100010110 politcs 1 -10100010110 Pfannenstiel 1 -10100010110 contradistinction 1 -10100010110 blue-water 1 -10100010110 '91 1 -10100010110 Beersheva 1 -10100010110 Arzamas 1 -10100010110 tattling 1 -10100010110 Mummers 1 -10100010110 Pittburgh 1 -10100010110 doodad 1 -10100010110 vestors 1 -10100010110 Port-of-Spain 1 -10100010110 Stravropol 1 -10100010110 Pepsilike 1 -10100010110 Lap-land 1 -10100010110 Zenchiku 1 -10100010110 Rochester. 1 -10100010110 Maschera 1 -10100010110 bass-dominated 1 -10100010110 pressroom 2 -10100010110 Wanaka 2 -10100010110 1638 2 -10100010110 Pittsburgh. 2 -10100010110 Jurong 2 -10100010110 mantillas 2 -10100010110 headfirst 2 -10100010110 Relation 2 -10100010110 indentations 2 -10100010110 soft-cover 2 -10100010110 November. 2 -10100010110 endeavoring 2 -10100010110 greatcoat 2 -10100010110 weapons-building 2 -10100010110 Marudi 2 -10100010110 intenders 3 -10100010110 utero 3 -10100010110 Argos 3 -10100010110 Babysitting 4 -10100010110 midsentence 4 -10100010110 undersupply 4 -10100010110 foal 7 -10100010110 midstream 9 -10100010110 thrall 12 -10100010110 reponse 13 -10100010110 deference 80 -10100010110 vain 120 -10100010110 jeopardy 178 -10100010110 relation 296 -10100010110 principle 1754 -10100010110 reaction 1897 -10100010110 order 8164 -10100010110 response 4310 -10100010111 extraneity 1 -10100010111 Schweikmost 1 -10100010111 un-chic 1 -10100010111 incapability 1 -10100010111 unacceptability 1 -10100010111 linespeed 1 -10100010111 visor 1 -10100010111 overwillingness 1 -10100010111 homages 1 -10100010111 29-yarder 1 -10100010111 ambassador-designate 1 -10100010111 milltowns 1 -10100010111 bill-collectors 1 -10100010111 mega-agreement 1 -10100010111 inabilty 1 -10100010111 Camargue 1 -10100010111 ablility 1 -10100010111 protfolio 1 -10100010111 Vow 1 -10100010111 flunkies 1 -10100010111 inkwell 1 -10100010111 Barcaloungers 1 -10100010111 workshed 1 -10100010111 VideoGuide 1 -10100010111 Payoff 1 -10100010111 vists 1 -10100010111 intructions 1 -10100010111 ten-year-old 1 -10100010111 splaining 1 -10100010111 yachtrepreneurs 1 -10100010111 Enough-go 1 -10100010111 bank-bashing 1 -10100010111 panegyric 1 -10100010111 13,510,000 1 -10100010111 susceptibilities 1 -10100010111 kinsmen 1 -10100010111 sergeant-at-arms 2 -10100010111 nearness 2 -10100010111 indebtness 2 -10100010111 reproof 2 -10100010111 Pastamatic 2 -10100010111 allocable 2 -10100010111 Attempt 2 -10100010111 hindrances 2 -10100010111 recommitment 2 -10100010111 wombs 3 -10100010111 preachings 3 -10100010111 re-admission 3 -10100010111 Ability 3 -10100010111 EFTA 3 -10100010111 acquiesence 4 -10100010111 resemblances 4 -10100010111 keenness 4 -10100010111 incantations 4 -10100010111 16- 5 -10100010111 receptiveness 5 -10100010111 immunities 6 -10100010111 congregants 6 -10100010111 parliament-in-exile 6 -10100010111 paeans 8 -10100010111 riposte 9 -10100010111 pilgrimages 10 -10100010111 receptivity 11 -10100010111 subordination 12 -10100010111 contortions 15 -10100010111 newness 15 -10100010111 overexposure 17 -10100010111 susceptibility 19 -10100010111 allusions 20 -10100010111 protestations 22 -10100010111 refusals 22 -10100010111 responsiveness 30 -10100010111 entreaties 31 -10100010111 assent 31 -10100010111 audacity 36 -10100010111 hesitancy 38 -10100010111 insensitivity 45 -10100010111 closeness 46 -10100010111 acquiescence 47 -10100010111 compulsion 49 -10100010111 attachment 62 -10100010111 impediments 65 -10100010111 haste 67 -10100010111 propensity 75 -10100010111 proximity 79 -10100010111 devotion 83 -10100010111 aversion 85 -10100010111 adherence 93 -10100010111 indifference 97 -10100010111 dedication 100 -10100010111 eagerness 104 -10100010111 energies 116 -10100010111 inclination 131 -10100010111 readiness 134 -10100010111 unwillingness 135 -10100010111 bylaws 155 -10100010111 zeal 180 -10100010111 vulnerability 209 -10100010111 sensitivity 230 -10100010111 references 256 -10100010111 overtures 278 -10100010111 additions 307 -10100010111 reluctance 345 -10100010111 responses 380 -10100010111 inability 550 -10100010111 determination 553 -10100010111 refusal 619 -10100010111 intentions 683 -10100010111 threats 691 -10100010111 objections 692 -10100010111 intention 910 -10100010111 contribution 917 -10100010111 willingness 954 -10100010111 desire 1148 -10100010111 exposure 1354 -10100010111 attempts 1582 -10100010111 commitment 1881 -10100010111 failure 2576 -10100010111 efforts 7029 -10100010111 ability 3590 -101000110000 anti-antibody 1 -101000110000 progressivists 1 -101000110000 service-free 1 -101000110000 Badea 1 -101000110000 as-of-right 1 -101000110000 megatrial 1 -101000110000 TINs 1 -101000110000 matched-book 1 -101000110000 Swingers 1 -101000110000 triple-trigger 1 -101000110000 second-highest-ranking 1 -101000110000 quota-discipline 1 -101000110000 counterplot 1 -101000110000 stablemates 1 -101000110000 superpremium-priced 1 -101000110000 aggregate-income 1 -101000110000 retrodates 1 -101000110000 nine-band 1 -101000110000 absurdum 1 -101000110000 Salt-I 1 -101000110000 AAS 1 -101000110000 nominee-apparent 1 -101000110000 campaign. 2 -101000110000 tapado 2 -101000110000 rower 2 -101000110000 Max-Saver 2 -101000110000 maxi-trial 2 -101000110000 fellow-traveler 2 -101000110000 sourdoughs 2 -101000110000 supergiants 2 -101000110000 barstool 2 -101000110000 sales-related 2 -101000110000 Tidings 2 -101000110000 poolers 2 -101000110000 basilica 2 -101000110000 baptistery 2 -101000110000 heartlessness 2 -101000110000 Prize-winner 2 -101000110000 Laureate 3 -101000110000 Ji 3 -101000110000 redoubts 3 -101000110000 drawing-room 3 -101000110000 tartan 3 -101000110000 anti-idiotypes 3 -101000110000 Universiad 3 -101000110000 timeframe 3 -101000110000 encampment 3 -101000110000 consumables 3 -101000110000 compaign 3 -101000110000 potentate 3 -101000110000 trapdoor 3 -101000110000 firewalls 4 -101000110000 pathfinder 4 -101000110000 safer-sex 4 -101000110000 gibes 4 -101000110000 constitutionalist 4 -101000110000 homeopathic 4 -101000110000 cloakroom 4 -101000110000 lib 4 -101000110000 collapsible 5 -101000110000 lilt 5 -101000110000 schema 5 -101000110000 rabble-rousing 5 -101000110000 wipeout 6 -101000110000 frogman 6 -101000110000 landfall 6 -101000110000 seamstress 8 -101000110000 dialectic 8 -101000110000 swearing-in 11 -101000110000 fete 14 -101000110000 frontrunner 16 -101000110000 copywriter 16 -101000110000 counteroffensive 18 -101000110000 theoretician 21 -101000110000 drawl 21 -101000110000 Olympiad 22 -101000110000 pitchman 26 -101000110000 opener 30 -101000110000 crusader 32 -101000110000 aspirant 34 -101000110000 go-between 36 -101000110000 sweepstakes 66 -101000110000 hopefuls 71 -101000110000 insurgency 121 -101000110000 blitz 129 -101000110000 challenger 138 -101000110000 front-runner 148 -101000110000 crusade 152 -101000110000 fund-raiser 160 -101000110000 palace 163 -101000110000 caucus 164 -101000110000 contender 234 -101000110000 candidacy 264 -101000110000 caucuses 284 -101000110000 primaries 300 -101000110000 Games 557 -101000110000 platform 767 -101000110000 camp 844 -101000110000 nominee 895 -101000110000 convention 1386 -101000110000 nomination 1545 -101000110000 victory 2147 -101000110000 race 2170 -101000110000 campaign 8400 -101000110000 candidate 3086 -101000110001 now-you're-a-legend 1 -101000110001 out-loud 1 -101000110001 ascetic-looking 1 -101000110001 dystopian 1 -101000110001 debt-fornature 1 -101000110001 FAPA. 1 -101000110001 cornmeal-coated 1 -101000110001 august-sounding 1 -101000110001 gray-marketeers 1 -101000110001 Oscar-nominated 1 -101000110001 gourmandizing 1 -101000110001 Northrop-produced 1 -101000110001 monk-like 1 -101000110001 PSA. 1 -101000110001 inspirer 1 -101000110001 6500 1 -101000110001 ECC. 1 -101000110001 commercial-heat 1 -101000110001 Petipa/Gorsky 1 -101000110001 month-would 1 -101000110001 September-to-June 1 -101000110001 over-collections 1 -101000110001 Konsomol 1 -101000110001 10-run 1 -101000110001 twin-plant 1 -101000110001 water-deluge 1 -101000110001 hosta 1 -101000110001 zinnia 1 -101000110001 Scandinavian-inspired 1 -101000110001 often-heralded 1 -101000110001 shrublike 1 -101000110001 hairy-leaved 1 -101000110001 unwieldy-sounding 1 -101000110001 silver-screen-come-to-life 1 -101000110001 Stopping. 1 -101000110001 Coralli-Petipa 1 -101000110001 silent-movie-style 1 -101000110001 study. 1 -101000110001 debate-is 1 -101000110001 HCFA. 1 -101000110001 Gibraltar. 1 -101000110001 yield-management 1 -101000110001 police. 1 -101000110001 now-discarded 1 -101000110001 setback. 1 -101000110001 learning. 1 -101000110001 Fujisan 1 -101000110001 Op-ed 1 -101000110001 earth-penetrator 1 -101000110001 Tortes 1 -101000110001 stodgier-sounding 1 -101000110001 1/2-octave 1 -101000110001 race. 1 -101000110001 15,693-line 1 -101000110001 now-widespread 1 -101000110001 call-backs 1 -101000110001 football-shaped 1 -101000110001 aluminum-cased 1 -101000110001 individuals. 1 -101000110001 soundware-software 1 -101000110001 consultant. 1 -101000110001 ill-described 1 -101000110001 sprint-and-coast 1 -101000110001 cartel. 1 -101000110001 Liberace-style 1 -101000110001 Basie-Green 1 -101000110001 computerized-database 1 -101000110001 non-procedure 1 -101000110001 Spielberg-directed 1 -101000110001 immunoregulator 1 -101000110001 LaserShare 1 -101000110001 unspecifed 1 -101000110001 expert-systems 1 -101000110001 ultracold 1 -101000110001 13,671 1 -101000110001 data-reading 1 -101000110001 35-to-50-year-old 1 -101000110001 Israeli-American 1 -101000110001 solemncholy 1 -101000110001 Lawrence-Rafii 1 -101000110001 Bush-as-a- 1 -101000110001 660th 1 -101000110001 unneccessarily 1 -101000110001 Take-Aways 1 -101000110001 Give-Aways 1 -101000110001 acupunctures 1 -101000110001 eveninglong 1 -101000110001 unbearlike 1 -101000110001 Isetta 1 -101000110001 purchase. 1 -101000110001 public-hearing 1 -101000110001 under-rehearsed 1 -101000110001 non-words 1 -101000110001 Powells 1 -101000110001 gun-training 1 -101000110001 asphyxiating 1 -101000110001 HP-12-C 1 -101000110001 micro- 1 -101000110001 accursed 1 -101000110001 mile-range 1 -101000110001 no-longer-practiced 1 -101000110001 wowability 1 -101000110001 Western-designated 1 -101000110001 cubist-inspired 1 -101000110001 now- 1 -101000110001 sailers 1 -101000110001 21-LP 1 -101000110001 squawky 1 -101000110001 four-times-optioned 1 -101000110001 Hemdale-financed 1 -101000110001 over-inked 1 -101000110001 long-heralded 1 -101000110001 resignation. 1 -101000110001 red-green 1 -101000110001 gray-cold 1 -101000110001 clean-scrubbed 1 -101000110001 early-19th 1 -101000110001 Flea-O-Rama 1 -101000110001 serio-comic 1 -101000110001 happily-ever-after 1 -101000110001 penumbra-based 1 -101000110001 NMP-produced 1 -101000110001 just-out 1 -101000110001 Kesslers 1 -101000110001 cafe-lined 1 -101000110001 anti-androgens 1 -101000110001 swamp-creature 1 -101000110001 Dimple 1 -101000110001 partner-notification 1 -101000110001 sulfa-drug 1 -101000110001 curves. 1 -101000110001 much-celebrated 1 -101000110001 Civ. 1 -101000110001 end-of-day 1 -101000110001 yet-to-be-proven 1 -101000110001 adder 1 -101000110001 strongarm 1 -101000110001 pobre 1 -101000110001 crepuscular 1 -101000110001 3,296 1 -101000110001 still-startling 1 -101000110001 URC. 1 -101000110001 platinum-gold 1 -101000110001 much-advertised 1 -101000110001 fluoxetine 1 -101000110001 28-quarter 1 -101000110001 comparative-negligence 1 -101000110001 non-sightseer 1 -101000110001 1,296 1 -101000110001 transition. 1 -101000110001 Biedermier 1 -101000110001 mini-tax 1 -101000110001 kettle-timbred 1 -101000110001 hearttugging 1 -101000110001 yachtsman-broadcaster 1 -101000110001 REALs 1 -101000110001 FDA-Summers 1 -101000110001 Cell. 1 -101000110001 modified. 1 -101000110001 security-analysis 1 -101000110001 pull-back 1 -101000110001 presentment-clause 1 -101000110001 recently-acquired 1 -101000110001 now-epic 1 -101000110001 wolfer 1 -101000110001 micro-brewers 1 -101000110001 hurricane-caused 1 -101000110001 201st 1 -101000110001 mandatory-attendance 1 -101000110001 basket-stuffing 1 -101000110001 Giacometti-influenced 1 -101000110001 two-yard-high 1 -101000110001 80,000-ton-a 1 -101000110001 baroque-inspired 1 -101000110001 self-dubbed 1 -101000110001 disseration 1 -101000110001 Bambi-syndronists 1 -101000110001 office/dept 1 -101000110001 not-so-funny 1 -101000110001 exiguous 1 -101000110001 piks 1 -101000110001 megaborrowers 1 -101000110001 prision 1 -101000110001 too-often-seen 1 -101000110001 aircraft-like 1 -101000110001 ras 1 -101000110001 McArrogance 1 -101000110001 long-lamented 1 -101000110001 1,685 1 -101000110001 toe-tapper 1 -101000110001 0259-86-3630 1 -101000110001 house-price 1 -101000110001 Phreak 1 -101000110001 LDP. 1 -101000110001 election. 1 -101000110001 35mms 1 -101000110001 inamorata 1 -101000110001 editorial-writing 1 -101000110001 anti-warehousing 1 -101000110001 unnumbered 1 -101000110001 election-Olympic 1 -101000110001 compatiblizers 1 -101000110001 powersteering 1 -101000110001 AIDS-defining 1 -101000110001 port-shopping 1 -101000110001 one-semester 1 -101000110001 al-Salaam 1 -101000110001 Ruggeri 1 -101000110001 headliner 2 -101000110001 speechwriting 2 -101000110001 FARs 2 -101000110001 CSPAN 2 -101000110001 U.P. 2 -101000110001 NB 2 -101000110001 two-column 2 -101000110001 1338 2 -101000110001 back-of-the-book 2 -101000110001 third-graders 2 -101000110001 Olympic-election 2 -101000110001 UDPS 2 -101000110001 lustful 2 -101000110001 relabeling 2 -101000110001 mid-forties 2 -101000110001 THEATER 2 -101000110001 foulards 2 -101000110001 DINKS 2 -101000110001 light-fingered 2 -101000110001 KPRP 2 -101000110001 inchworm 2 -101000110001 Trumpets 2 -101000110001 W2 2 -101000110001 misreporting 2 -101000110001 one-handers 2 -101000110001 claims-made 2 -101000110001 asymetrical 2 -101000110001 barbell 2 -101000110001 Mum 2 -101000110001 giraffes 2 -101000110001 nonperformance 2 -101000110001 billion-ECU 2 -101000110001 pull-ahead 2 -101000110001 Napo 2 -101000110001 rain-forest 2 -101000110001 recording. 2 -101000110001 Nixon-Ford 3 -101000110001 process. 3 -101000110001 non-banks 3 -101000110001 FUN 3 -101000110001 anti-idiotype 3 -101000110001 comparative-fault 3 -101000110001 pre-calculus 3 -101000110001 TBMs 3 -101000110001 exterminator 3 -101000110001 graphical-user-interface 3 -101000110001 ATR-42 3 -101000110001 overpass 3 -101000110001 OS-2 3 -101000110001 upper-affluent 3 -101000110001 festivity 3 -101000110001 speechmaking 3 -101000110001 anti- 4 -101000110001 agreement. 4 -101000110001 8,448 4 -101000110001 superstations 4 -101000110001 show. 4 -101000110001 sportsmanship 5 -101000110001 Oktoberfest 5 -101000110001 p.r. 5 -101000110001 Bechuanaland 5 -101000110001 greensward 5 -101000110001 almanac 6 -101000110001 bannings 6 -101000110001 scoreless 6 -101000110001 SARs 6 -101000110001 stenciled 6 -101000110001 EAS 6 -101000110001 insulator 7 -101000110001 intercom 7 -101000110001 censuses 7 -101000110001 Regions 7 -101000110001 renovators 7 -101000110001 by-elections 8 -101000110001 oncogene 9 -101000110001 patrimony 9 -101000110001 magnum 10 -101000110001 encyclical 10 -101000110001 adapter 11 -101000110001 IRA-Plus 11 -101000110001 prefix 11 -101000110001 razzmatazz 11 -101000110001 Asides 13 -101000110001 editorialist 13 -101000110001 Rossiya 14 -101000110001 go-around 16 -101000110001 expletive 16 -101000110001 Viewpoint 41 -101000110001 op-ed 65 -101000110001 balloting 142 -101000110001 essay 160 -101000110001 column 832 -101000110001 editorial 1855 -101000110001 elections 2204 -101000110001 election 4543 -101000110001 article 3812 -101000110010 Zeiss-Ikon 1 -101000110010 serfs-in-fact 1 -101000110010 FLOODING 1 -101000110010 Barcalounger 1 -101000110010 self-torture 1 -101000110010 multisourcing 1 -101000110010 oddness 1 -101000110010 tithe 2 -101000110010 overtone 2 -101000110010 laager 2 -101000110010 bonhomie 2 -101000110010 agenda. 2 -101000110010 call-ups 2 -101000110010 atomization 2 -101000110010 digression 2 -101000110010 predispositions 2 -101000110010 off-ramp 2 -101000110010 avowal 2 -101000110010 Alp 2 -101000110010 pinafores 2 -101000110010 garishness 2 -101000110010 disavowals 3 -101000110010 smelts 3 -101000110010 OS 3 -101000110010 impracticality 3 -101000110010 gunplay 3 -101000110010 undersheriff 3 -101000110010 entre 3 -101000110010 captor 3 -101000110010 recognitions 3 -101000110010 bureacracy 4 -101000110010 investigation. 4 -101000110010 potboiler 4 -101000110010 farewells 4 -101000110010 automaton 4 -101000110010 anteroom 4 -101000110010 expansiveness 4 -101000110010 octopuses 5 -101000110010 inhabitant 5 -101000110010 looseness 5 -101000110010 arsonist 5 -101000110010 profundity 5 -101000110010 oscilloscope 5 -101000110010 shibboleth 6 -101000110010 disciplinarian 6 -101000110010 seige 6 -101000110010 utterance 6 -101000110010 oration 7 -101000110010 agitator 7 -101000110010 avocation 7 -101000110010 epilogue 7 -101000110010 initiator 7 -101000110010 epigram 7 -101000110010 aggrandizement 7 -101000110010 affections 7 -101000110010 observances 7 -101000110010 overpayment 8 -101000110010 carburetor 8 -101000110010 obstructionism 8 -101000110010 incongruity 9 -101000110010 banishment 10 -101000110010 animus 10 -101000110010 abnormality 10 -101000110010 MPV 10 -101000110010 isle 10 -101000110010 frailty 10 -101000110010 orchestration 11 -101000110010 aftertaste 11 -101000110010 specification 11 -101000110010 interception 13 -101000110010 irregularity 13 -101000110010 extrapolation 14 -101000110010 conceptions 15 -101000110010 inhibitor 15 -101000110010 obituary 17 -101000110010 earnestness 17 -101000110010 idiom 17 -101000110010 ass 18 -101000110010 indulgence 21 -101000110010 attic 21 -101000110010 letterhead 21 -101000110010 odyssey 21 -101000110010 bombardment 22 -101000110010 artifact 24 -101000110010 abdication 25 -101000110010 undercurrent 25 -101000110010 narration 26 -101000110010 cross-examination 26 -101000110010 edifice 26 -101000110010 intrusions 26 -101000110010 tutelage 28 -101000110010 encroachment 28 -101000110010 incursion 28 -101000110010 machinations 29 -101000110010 ointment 29 -101000110010 autopsy 29 -101000110010 infiltration 29 -101000110010 imprimatur 30 -101000110010 exposition 30 -101000110010 anthology 33 -101000110010 enlargement 34 -101000110010 acquittal 34 -101000110010 insurrection 35 -101000110010 itinerary 36 -101000110010 anecdote 37 -101000110010 absurdity 38 -101000110010 abstraction 39 -101000110010 oligopoly 39 -101000110010 annoyance 39 -101000110010 overstatement 41 -101000110010 ethos 42 -101000110010 impairment 44 -101000110010 arbiter 44 -101000110010 affirmation 44 -101000110010 ambiance 45 -101000110010 largess 46 -101000110010 admirer 50 -101000110010 exaggeration 54 -101000110010 outburst 55 -101000110010 entree 66 -101000110010 understatement 71 -101000110010 imprint 73 -101000110010 occurrence 73 -101000110010 altitude 75 -101000110010 allotment 76 -101000110010 adaptation 77 -101000110010 injustice 77 -101000110010 forays 82 -101000110010 intrusion 84 -101000110010 interrogation 86 -101000110010 about-face 89 -101000110010 servant 97 -101000110010 uproar 108 -101000110010 oath 115 -101000110010 autobiography 119 -101000110010 engagement 120 -101000110010 escalation 127 -101000110010 domain 131 -101000110010 foray 136 -101000110010 invention 146 -101000110010 oversupply 146 -101000110010 illustration 153 -101000110010 outcry 170 -101000110010 observation 179 -101000110010 insight 188 -101000110010 identification 220 -101000110010 entrance 248 -101000110010 offense 273 -101000110010 acceleration 358 -101000110010 admission 364 -101000110010 examination 376 -101000110010 expression 384 -101000110010 supervision 405 -101000110010 evaluation 406 -101000110010 endorsement 416 -101000110010 inspection 589 -101000110010 assessment 608 -101000110010 prosecution 614 -101000110010 interpretation 631 -101000110010 identity 652 -101000110010 scrutiny 663 -101000110010 error 697 -101000110010 probe 843 -101000110010 audit 849 -101000110010 entry 857 -101000110010 appearance 874 -101000110010 agenda 1072 -101000110010 attitude 1076 -101000110010 eye 1186 -101000110010 application 1198 -101000110010 investigations 1234 -101000110010 inquiry 1506 -101000110010 analysis 1826 -101000110010 image 2103 -101000110010 investigation 6516 -101000110010 opinion 2675 -1010001100110 Berg-Batchelder 1 -1010001100110 OSHA-commissioned 1 -1010001100110 inanely 1 -1010001100110 intermediate-nuclear-forces 1 -1010001100110 spermacides 1 -1010001100110 semi-barbarians 1 -1010001100110 aeromagnetic 1 -1010001100110 woe-is-me 1 -1010001100110 uncrossed 1 -1010001100110 stalement 1 -1010001100110 revenue-losers 1 -1010001100110 Czechoslovakians 1 -1010001100110 Harborpark 1 -1010001100110 physiotherapist 2 -1010001100110 calipers 2 -1010001100110 chaffing 2 -1010001100110 coifs 2 -1010001100110 Israelites 2 -1010001100110 1,600-patient 2 -1010001100110 region. 2 -1010001100110 928S 2 -1010001100110 charterer 2 -1010001100110 brickwork 2 -1010001100110 EPG 2 -1010001100110 autostrada 2 -1010001100110 cheerier 2 -1010001100110 ex-actor 2 -1010001100110 USGS 2 -1010001100110 other. 3 -1010001100110 Tiber 3 -1010001100110 Spartans 3 -1010001100110 Mitchells 3 -1010001100110 indaba 3 -1010001100110 newsmakers 3 -1010001100110 bureauracy 3 -1010001100110 mufti 3 -1010001100110 Turners 3 -1010001100110 Cressida 4 -1010001100110 Wrathers 4 -1010001100110 tie-breaker 4 -1010001100110 apostates 4 -1010001100110 grantee 4 -1010001100110 crudeness 4 -1010001100110 warpath 5 -1010001100110 1500s 5 -1010001100110 FX16 5 -1010001100110 pulsation 5 -1010001100110 backstroke 6 -1010001100110 Mercato 6 -1010001100110 Schubertiade 6 -1010001100110 inti 7 -1010001100110 contagiousness 7 -1010001100110 celebrants 8 -1010001100110 multitudes 10 -1010001100110 eventuality 12 -1010001100110 payday 12 -1010001100110 Tramp 12 -1010001100110 Guadalcanal 12 -1010001100110 denouement 16 -1010001100110 dugout 21 -1010001100110 woodwork 28 -1010001100110 mishap 48 -1010001100110 trusteeship 50 -1010001100110 chairmanship 241 -1010001100110 bench 251 -1010001100110 privilege 254 -1010001100110 occasion 392 -1010001100110 episode 480 -1010001100110 incident 1065 -1010001100110 event 2115 -1010001100110 case 14463 -1010001100111 Wellesey 1 -1010001100111 Locale 1 -1010001100111 Duxorcist 1 -1010001100111 economist-banker 1 -1010001100111 cross-checks 1 -1010001100111 5-foot-5 1 -1010001100111 Monett 1 -1010001100111 Perryville 1 -1010001100111 Derg 1 -1010001100111 Charades 1 -1010001100111 Gleaners 1 -1010001100111 Measurmatic 1 -1010001100111 Chinquapin 1 -1010001100111 minarettes 1 -1010001100111 Bacchae 1 -1010001100111 tap-taps 1 -1010001100111 Gershwins 1 -1010001100111 leaper 1 -1010001100111 Citibanks 1 -1010001100111 Tehran-triggered 1 -1010001100111 semi-government 1 -1010001100111 contaminations 1 -1010001100111 Dealmakers 1 -1010001100111 WKTC-FM 1 -1010001100111 Petraks 1 -1010001100111 perfumers 1 -1010001100111 co-researchers 1 -1010001100111 six-class 1 -1010001100111 flowerpot 1 -1010001100111 Whirly-Girls 1 -1010001100111 Colchester 1 -1010001100111 kinking 1 -1010001100111 Miamian 1 -1010001100111 fettuccine 1 -1010001100111 Bottings 1 -1010001100111 liberal/Keynesians 1 -1010001100111 Dalles 1 -1010001100111 FFF 1 -1010001100111 dualism 1 -1010001100111 grievant 1 -1010001100111 Duden 1 -1010001100111 788,630 1 -1010001100111 6,000-warhead 1 -1010001100111 rejecters 1 -1010001100111 author/sleuth 1 -1010001100111 Discoverers 1 -1010001100111 Creators 1 -1010001100111 Beekeepers 1 -1010001100111 Ewes 1 -1010001100111 Mastermind 1 -1010001100111 vaccinates 1 -1010001100111 no-seating 1 -1010001100111 BUNDESBANK 1 -1010001100111 ejectee 1 -1010001100111 citizen-president 1 -1010001100111 Soverville 1 -1010001100111 Jeffersons 1 -1010001100111 save-now 1 -1010001100111 Symphonettes 1 -1010001100111 stagiaires 1 -1010001100111 McName 1 -1010001100111 communally 1 -1010001100111 fair-mindedness 1 -1010001100111 11-sided 1 -1010001100111 legations 1 -1010001100111 Ghostwriter 1 -1010001100111 anti-Bolsheviks 1 -1010001100111 Gales 1 -1010001100111 ScanAmerica 1 -1010001100111 then-financially 1 -1010001100111 Tortellis 1 -1010001100111 Edisons 1 -1010001100111 4400 1 -1010001100111 cross-complaints 1 -1010001100111 late-1500s 1 -1010001100111 Gunner 1 -1010001100111 Gondoliers 1 -1010001100111 Sunshield 1 -1010001100111 spilt 1 -1010001100111 linen-service 1 -1010001100111 poncho-clad 1 -1010001100111 refreshers 1 -1010001100111 Informer 1 -1010001100111 eyebags 1 -1010001100111 Kanaks 1 -1010001100111 Misfits 1 -1010001100111 confidence-induced 1 -1010001100111 32/850 1 -1010001100111 oysterman 1 -1010001100111 Bedfordshire 1 -1010001100111 commutation 1 -1010001100111 month-to-month-growth 1 -1010001100111 Earth-birds 1 -1010001100111 Miser 1 -1010001100111 bauble 1 -1010001100111 Dhammapada 1 -1010001100111 Killers 1 -1010001100111 Supai 1 -1010001100111 Madsens 1 -1010001100111 vote-switchers 1 -1010001100111 Shaumburg 1 -1010001100111 Songlines 1 -1010001100111 half-sentences 1 -1010001100111 Keidaren 1 -1010001100111 Good-Morrow 1 -1010001100111 storeowner 1 -1010001100111 Rookies 1 -1010001100111 PLO-sanctioned 1 -1010001100111 guestworkers 1 -1010001100111 Broadway-bound 1 -1010001100111 Redeemers 1 -1010001100111 townswomen 1 -1010001100111 Manns 1 -1010001100111 Kochtopus 1 -1010001100111 Wickcliffe 1 -1010001100111 6150 1 -1010001100111 dogfish 1 -1010001100111 asset-seizure 1 -1010001100111 suppliers-St 1 -1010001100111 Skyrider 1 -1010001100111 pampas 1 -1010001100111 Bangerters 1 -1010001100111 Smug 1 -1010001100111 civil-theft 1 -1010001100111 Itos 1 -1010001100111 AAUP 1 -1010001100111 Wenham 1 -1010001100111 GOPers 1 -1010001100111 Xerophyte 1 -1010001100111 1.2-liter 1 -1010001100111 Hucksters 1 -1010001100111 under-cuirasses 1 -1010001100111 285-mile 1 -1010001100111 Fourbeats 1 -1010001100111 evaporator 1 -1010001100111 Sanksrit 1 -1010001100111 Middletons 1 -1010001100111 homolies 1 -1010001100111 Monkey-Doodle-Do 1 -1010001100111 NAEYC 1 -1010001100111 ex-manager 1 -1010001100111 Kokeses 1 -1010001100111 tee-time 1 -1010001100111 Highwayman 2 -1010001100111 workers. 2 -1010001100111 Wiz 2 -1010001100111 neologism 2 -1010001100111 Enforcer 2 -1010001100111 Welshman 2 -1010001100111 Revolutionist 2 -1010001100111 Gotliebs 2 -1010001100111 IRRC 2 -1010001100111 Afterlife 2 -1010001100111 madras 2 -1010001100111 Grandville 2 -1010001100111 Naifys 2 -1010001100111 Brethren 2 -1010001100111 Uprooted 2 -1010001100111 breastwork 2 -1010001100111 Stepfather 2 -1010001100111 523,770 2 -1010001100111 Gunslinger 2 -1010001100111 cuckold 2 -1010001100111 property-damage 2 -1010001100111 bogyman 2 -1010001100111 Cavanaughs 2 -1010001100111 Jerker 2 -1010001100111 Idolmaker 2 -1010001100111 MHA 3 -1010001100111 Dresdener 3 -1010001100111 Clicker 3 -1010001100111 Avengers 3 -1010001100111 minirally 3 -1010001100111 commitees 3 -1010001100111 rainout 3 -1010001100111 cudgel 3 -1010001100111 RULINGS 3 -1010001100111 Deuce 3 -1010001100111 Ironman 3 -1010001100111 Moderns 3 -1010001100111 Kusha 4 -1010001100111 Charmings 4 -1010001100111 kabo 4 -1010001100111 Blob 4 -1010001100111 derivatively 4 -1010001100111 Shawl 4 -1010001100111 R.A.C.E. 4 -1010001100111 recliner 4 -1010001100111 three-speed 5 -1010001100111 steerer 5 -1010001100111 Gruenbergs 5 -1010001100111 Counterlife 6 -1010001100111 updraft 6 -1010001100111 cross-complaint 6 -1010001100111 informations 7 -1010001100111 Colbys 7 -1010001100111 two-by-four 8 -1010001100111 Cocoanuts 8 -1010001100111 A-Team 9 -1010001100111 judgement 15 -1010001100111 Abyss 19 -1010001100111 bulwark 24 -1010001100111 server 29 -1010001100111 vendetta 37 -1010001100111 counterclaim 63 -1010001100111 countersuit 69 -1010001100111 affidavit 242 -1010001100111 verdict 657 -1010001100111 indictment 1503 -1010001100111 judgment 1833 -1010001100111 complaint 1847 -1010001100111 suit 8184 -1010001100111 lawsuit 2670 -1010001101000 kombinats 1 -1010001101000 cost-allocating 1 -1010001101000 more-sex-is-better 1 -1010001101000 unrealities 1 -1010001101000 mixed-nation 1 -1010001101000 confederacy 1 -1010001101000 MSRB 1 -1010001101000 centripetal 1 -1010001101000 meliorist 1 -1010001101000 agreeemnt 1 -1010001101000 counter-argument 1 -1010001101000 quick-reaction 1 -1010001101000 reinventions 1 -1010001101000 American-invented 1 -1010001101000 rubberband 1 -1010001101000 non-journalist 1 -1010001101000 division-size 1 -1010001101000 reproduction/sampling 1 -1010001101000 definer 1 -1010001101000 Badness 1 -1010001101000 versification 1 -1010001101000 scrollery 1 -1010001101000 surroundings. 1 -1010001101000 Hippopotamus 1 -1010001101000 videoscape 1 -1010001101000 mavenhood 1 -1010001101000 V-word 1 -1010001101000 ego-satisfaction 1 -1010001101000 fifteen-carrier 1 -1010001101000 shabbiness 1 -1010001101000 lubricator 1 -1010001101000 theocrat 1 -1010001101000 pro-inflationary 1 -1010001101000 Fibe-Mini 1 -1010001101000 counternationalist 1 -1010001101000 mystagogues 1 -1010001101000 sucessor 1 -1010001101000 free-spiritedness 1 -1010001101000 Futurist 1 -1010001101000 capper 1 -1010001101000 98,000-employee 1 -1010001101000 Snows 2 -1010001101000 tiredness 2 -1010001101000 fearlessness 2 -1010001101000 least-governed 2 -1010001101000 Tooz 2 -1010001101000 funder 2 -1010001101000 sentimentalist 2 -1010001101000 feistiness 2 -1010001101000 geniality 2 -1010001101000 Brontes 2 -1010001101000 SS24 2 -1010001101000 positiveness 2 -1010001101000 undergrounds 2 -1010001101000 aeries 2 -1010001101000 possibilty 2 -1010001101000 incomprehensibility 2 -1010001101000 guardedness 2 -1010001101000 gook 2 -1010001101000 Confession 2 -1010001101000 eyesores 3 -1010001101000 unlikelihood 3 -1010001101000 shogunate 3 -1010001101000 drabness 3 -1010001101000 otherworldliness 3 -1010001101000 CONCERNS 3 -1010001101000 egoism 3 -1010001101000 fantasyland 3 -1010001101000 begetter 3 -1010001101000 lenience 3 -1010001101000 LIVES 3 -1010001101000 mistranslation 3 -1010001101000 obligors 3 -1010001101000 runt 3 -1010001101000 overviews 3 -1010001101000 grinch 3 -1010001101000 tax-deductibility 3 -1010001101000 backwash 4 -1010001101000 one-sidedness 4 -1010001101000 concensus 5 -1010001101000 Pleasures 5 -1010001101000 edginess 5 -1010001101000 hallucinogen 5 -1010001101000 XMP-14 5 -1010001101000 immaturity 5 -1010001101000 oppressor 6 -1010001101000 catechism 6 -1010001101000 weirdness 6 -1010001101000 irrelevancy 7 -1010001101000 drawbridge 7 -1010001101000 insinuation 7 -1010001101000 supposition 7 -1010001101000 quotient 8 -1010001101000 tingle 8 -1010001101000 tortures 8 -1010001101000 tipoff 9 -1010001101000 subculture 11 -1010001101000 deletion 13 -1010001101000 timbre 14 -1010001101000 vibes 15 -1010001101000 verities 16 -1010001101000 axiom 16 -1010001101000 possiblity 16 -1010001101000 infraction 18 -1010001101000 conceit 19 -1010001101000 onus 21 -1010001101000 corpus 21 -1010001101000 delusion 22 -1010001101000 perpetrator 24 -1010001101000 muse 25 -1010001101000 omen 27 -1010001101000 admonition 27 -1010001101000 mindset 27 -1010001101000 tenet 29 -1010001101000 fallacy 30 -1010001101000 particulars 37 -1010001101000 mind-set 40 -1010001101000 caveat 55 -1010001101000 presumption 61 -1010001101000 stereotype 63 -1010001101000 accusation 79 -1010001101000 omission 83 -1010001101000 stigma 83 -1010001101000 thrill 88 -1010001101000 illusion 139 -1010001101000 realization 172 -1010001101000 implication 189 -1010001101000 allegation 200 -1010001101000 premise 202 -1010001101000 trick 223 -1010001101000 proposition 244 -1010001101000 irony 309 -1010001101000 thrust 352 -1010001101000 topic 366 -1010001101000 expectation 456 -1010001101000 suggestion 587 -1010001101000 impression 668 -1010001101000 assumption 706 -1010001101000 objective 717 -1010001101000 aim 758 -1010001101000 exception 813 -1010001101000 conclusion 839 -1010001101000 notion 916 -1010001101000 truth 930 -1010001101000 danger 1098 -1010001101000 concept 1175 -1010001101000 purpose 1488 -1010001101000 task 2035 -1010001101000 idea 4698 -1010001101000 question 5928 -1010001101001 NARROWS 1 -1010001101001 counter-revolution 1 -1010001101001 mega-bidding 1 -1010001101001 brouhahas 1 -1010001101001 dissimilarity 1 -1010001101001 culturalclash 1 -1010001101001 computer-part 1 -1010001101001 boy-bias 1 -1010001101001 taxophiliac 1 -1010001101001 almost-romance 1 -1010001101001 non-winner 1 -1010001101001 Pest 1 -1010001101001 self-shackling 1 -1010001101001 rectifications 1 -1010001101001 compatability 1 -1010001101001 PARDON 1 -1010001101001 vote-grabber 1 -1010001101001 yuk-yuk 1 -1010001101001 signal-sending 1 -1010001101001 curmudgeonhood 1 -1010001101001 Hobohemia 1 -1010001101001 five-leafer 1 -1010001101001 firebreak 1 -1010001101001 how-you-doing 1 -1010001101001 interstices 1 -1010001101001 Louislike 1 -1010001101001 corporation/organization 1 -1010001101001 back-and-forthing 1 -1010001101001 artful-if-intentional 1 -1010001101001 drumrolls 1 -1010001101001 Gallon 1 -1010001101001 infringer 1 -1010001101001 mean-time 1 -1010001101001 kohl 1 -1010001101001 pseudo-opposition 1 -1010001101001 pasa 1 -1010001101001 treaty-ratification-by-letter 1 -1010001101001 backround 1 -1010001101001 lady-killer 1 -1010001101001 narcotraficante 1 -1010001101001 synapse 1 -1010001101001 Compatriots 1 -1010001101001 Sagittarius 1 -1010001101001 block-trader 1 -1010001101001 FLARE 1 -1010001101001 wingman 1 -1010001101001 Euro-factories 1 -1010001101001 boondoggie 1 -1010001101001 quadrangle 1 -1010001101001 Autograph 1 -1010001101001 fluffies 1 -1010001101001 in-box 1 -1010001101001 220-mile-route 1 -1010001101001 rain-makers 1 -1010001101001 backseams 1 -1010001101001 meathead 1 -1010001101001 BARFO 1 -1010001101001 department/office 1 -1010001101001 dirt-bag 1 -1010001101001 non-custodians 1 -1010001101001 Dukacrat 1 -1010001101001 chests. 1 -1010001101001 afro 1 -1010001101001 tunefulness 1 -1010001101001 brotherism 1 -1010001101001 Turtletop 1 -1010001101001 gnu 1 -1010001101001 glasshopper 1 -1010001101001 hugger 1 -1010001101001 chevalier 2 -1010001101001 close-down 2 -1010001101001 opossum 2 -1010001101001 hedgerows 2 -1010001101001 nation-states 2 -1010001101001 Shagger 2 -1010001101001 cross-investing 2 -1010001101001 harborside 2 -1010001101001 32-7 2 -1010001101001 bruiser 2 -1010001101001 mid-point 2 -1010001101001 overcentralized 2 -1010001101001 concision 2 -1010001101001 mistake. 2 -1010001101001 hard-action 2 -1010001101001 payee 2 -1010001101001 fake-out 2 -1010001101001 jingo 2 -1010001101001 dolt 2 -1010001101001 manifestoes 2 -1010001101001 coughers 2 -1010001101001 incompatibilities 2 -1010001101001 career-minded 2 -1010001101001 pup 2 -1010001101001 rest. 2 -1010001101001 clubbiness 2 -1010001101001 hoedown 2 -1010001101001 right-to-lifer 2 -1010001101001 Heimlich 2 -1010001101001 post-modernism 3 -1010001101001 Cleburne 3 -1010001101001 Boz 3 -1010001101001 speakerphone 3 -1010001101001 opt-out 3 -1010001101001 matter. 3 -1010001101001 deal. 3 -1010001101001 punchline 3 -1010001101001 disjunction 3 -1010001101001 cytotechnologist 3 -1010001101001 maiming 3 -1010001101001 rampart 3 -1010001101001 quid-pro-quo 3 -1010001101001 doubter 3 -1010001101001 law. 3 -1010001101001 gatehouse 3 -1010001101001 prude 4 -1010001101001 Jerk 4 -1010001101001 facilitator 4 -1010001101001 vowel 4 -1010001101001 lance 4 -1010001101001 discontinuity 4 -1010001101001 cavalcade 4 -1010001101001 householder 4 -1010001101001 fatso 5 -1010001101001 gentleman-farmer 5 -1010001101001 tossup 6 -1010001101001 toss-up 6 -1010001101001 dowry 6 -1010001101001 tradeoff 6 -1010001101001 fissure 6 -1010001101001 constancy 6 -1010001101001 pygmy 6 -1010001101001 meritocracy 6 -1010001101001 de-emphasis 6 -1010001101001 continuum 7 -1010001101001 nexus 7 -1010001101001 typo 7 -1010001101001 laughingstock 7 -1010001101001 flagpole 7 -1010001101001 wallflower 8 -1010001101001 congruence 8 -1010001101001 heckler 8 -1010001101001 Hoe 9 -1010001101001 catchword 9 -1010001101001 synergism 10 -1010001101001 midget 10 -1010001101001 pivot 10 -1010001101001 heretic 10 -1010001101001 mouthful 11 -1010001101001 slouch 12 -1010001101001 rematch 14 -1010001101001 crook 16 -1010001101001 dichotomy 17 -1010001101001 shocker 20 -1010001101001 chasm 21 -1010001101001 mismatch 28 -1010001101001 crossfire 29 -1010001101001 interplay 29 -1010001101001 travesty 33 -1010001101001 knot 42 -1010001101001 tightrope 48 -1010001101001 wimp 52 -1010001101001 compliment 57 -1010001101001 divergence 58 -1010001101001 wedge 61 -1010001101001 panacea 64 -1010001101001 similarity 72 -1010001101001 trade-off 85 -1010001101001 splash 101 -1010001101001 correlation 105 -1010001101001 discrepancy 110 -1010001101001 contradiction 112 -1010001101001 coincidence 177 -1010001101001 disparity 181 -1010001101001 virtue 238 -1010001101001 mystery 349 -1010001101001 distinction 374 -1010001101001 mistake 936 -1010001101001 surprise 1795 -1010001101001 difference 2551 -1010001101001 matter 4788 -1010001101010 artfulness 1 -1010001101010 hussies 1 -1010001101010 patches. 1 -1010001101010 conformists 1 -1010001101010 garbageman 1 -1010001101010 woman-chasers 1 -1010001101010 urbanite 1 -1010001101010 conifers 1 -1010001101010 poet/critic/scholar 1 -1010001101010 market-movers 1 -1010001101010 luftmensch 1 -1010001101010 incrustation 1 -1010001101010 grossness 1 -1010001101010 V-8s 1 -1010001101010 toxin. 1 -1010001101010 rondo-burlesque 1 -1010001101010 gamebird 1 -1010001101010 gamefish 1 -1010001101010 manuverings 1 -1010001101010 sentencers 1 -1010001101010 ex-senator 1 -1010001101010 destiny. 1 -1010001101010 yen-holders 1 -1010001101010 cellblock 1 -1010001101010 cephalopod 1 -1010001101010 notetakers 1 -1010001101010 flesh-eaters 1 -1010001101010 whitish-gray 1 -1010001101010 photo-technology 1 -1010001101010 praxis 1 -1010001101010 whirligigs 1 -1010001101010 tumor-fighter 1 -1010001101010 plinths 1 -1010001101010 Draupadi 1 -1010001101010 triology 1 -1010001101010 karts 1 -1010001101010 oil-prices 1 -1010001101010 quadrilateral 1 -1010001101010 fatcats 1 -1010001101010 imp 1 -1010001101010 penny-stocks 1 -1010001101010 test-taker 1 -1010001101010 present. 1 -1010001101010 schismatic 1 -1010001101010 disarmers 1 -1010001101010 presentation. 1 -1010001101010 indiscriminacy 1 -1010001101010 page-turner 1 -1010001101010 Transcaucasus 1 -1010001101010 parodist-whether 1 -1010001101010 idea. 1 -1010001101010 overgeneralizations 1 -1010001101010 insider-traders 1 -1010001101010 salami-slicing 1 -1010001101010 homelife 1 -1010001101010 head-topper 1 -1010001101010 drollery 1 -1010001101010 olorosos 1 -1010001101010 solutions. 1 -1010001101010 postion 2 -1010001101010 benediction 2 -1010001101010 grandfolk 2 -1010001101010 rescreening 2 -1010001101010 Frustrations 2 -1010001101010 look-see 2 -1010001101010 explantion 2 -1010001101010 technolgy 2 -1010001101010 savant 2 -1010001101010 self-description 2 -1010001101010 defibrillator 2 -1010001101010 kung 2 -1010001101010 fleetness 2 -1010001101010 gunrunner 2 -1010001101010 bureaucratese 2 -1010001101010 fez 3 -1010001101010 Weltanschauung 3 -1010001101010 repulsion 3 -1010001101010 intonation 3 -1010001101010 underestimation 3 -1010001101010 flyspeck 3 -1010001101010 frescos 3 -1010001101010 draftsmanship 3 -1010001101010 egomania 3 -1010001101010 double-whammy 4 -1010001101010 decision. 4 -1010001101010 omniscience 4 -1010001101010 demigod 4 -1010001101010 putdown 4 -1010001101010 fieldwork 4 -1010001101010 duality 4 -1010001101010 hallucination 5 -1010001101010 transmogrification 5 -1010001101010 helmsman 5 -1010001101010 hairpiece 5 -1010001101010 enchantment 5 -1010001101010 miscue 5 -1010001101010 coda 6 -1010001101010 vignette 6 -1010001101010 detonator 6 -1010001101010 one-liner 6 -1010001101010 mantra 6 -1010001101010 proclivities 6 -1010001101010 contrivance 6 -1010001101010 substrate 6 -1010001101010 smirk 7 -1010001101010 fillip 8 -1010001101010 convulsion 9 -1010001101010 shortsightedness 9 -1010001101010 polemic 9 -1010001101010 mire 9 -1010001101010 obstinacy 10 -1010001101010 qualifier 10 -1010001101010 stakeout 10 -1010001101010 generalization 10 -1010001101010 lair 11 -1010001101010 comeuppance 11 -1010001101010 crutch 11 -1010001101010 fastball 11 -1010001101010 U-turn 11 -1010001101010 misjudgment 12 -1010001101010 bedfellows 12 -1010001101010 hulk 13 -1010001101010 dagger 13 -1010001101010 sheen 13 -1010001101010 mousetrap 15 -1010001101010 lineage 15 -1010001101010 pronunciation 16 -1010001101010 tirade 18 -1010001101010 triumvirate 19 -1010001101010 locale 19 -1010001101010 reportage 20 -1010001101010 metamorphosis 20 -1010001101010 motivator 20 -1010001101010 zenith 20 -1010001101010 standard-bearer 21 -1010001101010 moniker 21 -1010001101010 crust 22 -1010001101010 malignancy 25 -1010001101010 mettle 25 -1010001101010 synthesis 25 -1010001101010 ruse 25 -1010001101010 concurrence 26 -1010001101010 connotation 27 -1010001101010 bequest 29 -1010001101010 riddle 30 -1010001101010 miscalculation 35 -1010001101010 terminology 38 -1010001101010 quagmire 38 -1010001101010 vocation 39 -1010001101010 disclaimer 39 -1010001101010 firestorm 40 -1010001101010 nadir 40 -1010001101010 prognosis 40 -1010001101010 prerogative 41 -1010001101010 savior 42 -1010001101010 mecca 44 -1010001101010 hunch 45 -1010001101010 buzzword 47 -1010001101010 blunder 49 -1010001101010 morass 52 -1010001101010 regimen 52 -1010001101010 chore 53 -1010001101010 lever 62 -1010001101010 criterion 69 -1010001101010 designation 76 -1010001101010 veil 77 -1010001101010 methodology 77 -1010001101010 metaphor 88 -1010001101010 predicament 94 -1010001101010 gimmick 103 -1010001101010 heyday 105 -1010001101010 feat 115 -1010001101010 dimension 125 -1010001101010 journey 156 -1010001101010 reign 158 -1010001101010 backdrop 169 -1010001101010 destination 171 -1010001101010 motive 184 -1010001101010 haven 190 -1010001101010 mode 191 -1010001101010 calculation 205 -1010001101010 ploy 205 -1010001101010 blessing 216 -1010001101010 constituency 220 -1010001101010 frenzy 254 -1010001101010 gesture 254 -1010001101010 posture 259 -1010001101010 disadvantage 273 -1010001101010 nightmare 284 -1010001101010 triumph 295 -1010001101010 prediction 308 -1010001101010 forum 325 -1010001101010 legacy 329 -1010001101010 framework 331 -1010001101010 reception 425 -1010001101010 tactic 477 -1010001101010 path 667 -1010001101010 climate 739 -1010001101010 mood 743 -1010001101010 tone 768 -1010001101010 manner 810 -1010001101010 vision 823 -1010001101010 stance 834 -1010001101010 mission 855 -1010001101010 method 1173 -1010001101010 reputation 1492 -1010001101010 condition 1737 -1010001101010 goal 2438 -1010001101010 position 7818 -1010001101010 strategy 5658 -1010001101011 party-girl's-eye 1 -1010001101011 odor-fighting 1 -1010001101011 Yogi-isms 1 -1010001101011 public-turned-private 1 -1010001101011 Primates 1 -1010001101011 con-man 1 -1010001101011 major-media 1 -1010001101011 sun-scorched 1 -1010001101011 appointments. 1 -1010001101011 Leagacy 1 -1010001101011 history- 1 -1010001101011 carbides 1 -1010001101011 areas. 1 -1010001101011 otherwise-unsung 1 -1010001101011 pageant-filled 1 -1010001101011 deer-are-long-legged-rats-with-big-ears 1 -1010001101011 up-move 1 -1010001101011 super-priority 1 -1010001101011 visualizations 1 -1010001101011 zillionaire 1 -1010001101011 near-ghost 1 -1010001101011 sad-faced 2 -1010001101011 multibusiness 2 -1010001101011 timberline 2 -1010001101011 rumpus 2 -1010001101011 lonely-hearts 2 -1010001101011 meeting. 2 -1010001101011 wife. 2 -1010001101011 astrolabes 2 -1010001101011 orthochlorophenol 2 -1010001101011 lickin 2 -1010001101011 semi-nude 2 -1010001101011 nemisis 2 -1010001101011 much-covered 2 -1010001101011 monicker 2 -1010001101011 first-century 2 -1010001101011 Bab-el-Oued 2 -1010001101011 cupid 2 -1010001101011 STORY 2 -1010001101011 clean-plate 2 -1010001101011 tocsin 2 -1010001101011 phantasmagoria 2 -1010001101011 inconstancy 2 -1010001101011 DIETS 2 -1010001101011 picturesquely 2 -1010001101011 happens. 2 -1010001101011 mega-hit 3 -1010001101011 remittance 3 -1010001101011 prescriptive 3 -1010001101011 piffle 3 -1010001101011 modifier 3 -1010001101011 hangup 3 -1010001101011 folderol 3 -1010001101011 martingale 3 -1010001101011 condor 3 -1010001101011 Alabamian 3 -1010001101011 begonia 3 -1010001101011 parry 3 -1010001101011 jackal 3 -1010001101011 U.S.-Pahlavi 3 -1010001101011 chalkboard 4 -1010001101011 Sandie 4 -1010001101011 unifier 4 -1010001101011 Muziektheater 4 -1010001101011 cubbyhole 4 -1010001101011 prognosticator 4 -1010001101011 tetralogy 4 -1010001101011 tremolo 4 -1010001101011 criers 4 -1010001101011 theorem 4 -1010001101011 songbook 4 -1010001101011 cherub 4 -1010001101011 haziness 4 -1010001101011 scrambler 4 -1010001101011 deification 4 -1010001101011 precedential 4 -1010001101011 screed 5 -1010001101011 restorer 5 -1010001101011 duster 5 -1010001101011 grimness 5 -1010001101011 causality 5 -1010001101011 suffix 5 -1010001101011 dirge 5 -1010001101011 Carracci 5 -1010001101011 boatyard 6 -1010001101011 cantata 6 -1010001101011 disrespectful 6 -1010001101011 discography 6 -1010001101011 weathervane 6 -1010001101011 threesome 6 -1010001101011 poop 6 -1010001101011 wrap-up 7 -1010001101011 soliloquy 7 -1010001101011 turret 7 -1010001101011 subplot 8 -1010001101011 put-down 8 -1010001101011 decision-maker 8 -1010001101011 decapitation 8 -1010001101011 pachysandra 8 -1010001101011 moisturizer 8 -1010001101011 critter 9 -1010001101011 pessimist 10 -1010001101011 supernova 11 -1010001101011 mast 11 -1010001101011 tidbit 11 -1010001101011 mandarin 11 -1010001101011 speedometer 11 -1010001101011 gantlet 12 -1010001101011 homily 12 -1010001101011 verb 12 -1010001101011 bogeyman 12 -1010001101011 come-on 12 -1010001101011 operetta 12 -1010001101011 defensiveness 12 -1010001101011 mausoleum 12 -1010001101011 sobriquet 12 -1010001101011 conundrum 13 -1010001101011 docudrama 13 -1010001101011 transponder 14 -1010001101011 stallion 14 -1010001101011 motifs 14 -1010001101011 credential 14 -1010001101011 potion 14 -1010001101011 aphorism 14 -1010001101011 tagline 14 -1010001101011 blurb 15 -1010001101011 bugaboo 16 -1010001101011 revue 17 -1010001101011 campsite 17 -1010001101011 trilogy 17 -1010001101011 brainstorm 18 -1010001101011 guidebook 18 -1010001101011 ballad 19 -1010001101011 spiel 19 -1010001101011 skit 19 -1010001101011 adjective 19 -1010001101011 quip 20 -1010001101011 grapevine 20 -1010001101011 contraption 20 -1010001101011 truism 21 -1010001101011 buzzer 21 -1010001101011 marquee 21 -1010001101011 affliction 21 -1010001101011 majesty 21 -1010001101011 reassignment 21 -1010001101011 tome 22 -1010001101011 dictum 22 -1010001101011 straitjacket 22 -1010001101011 flick 22 -1010001101011 gaffe 23 -1010001101011 sleeper 25 -1010001101011 dialect 26 -1010001101011 charade 26 -1010001101011 subtitle 27 -1010001101011 maxim 28 -1010001101011 noose 28 -1010001101011 vibrations 30 -1010001101011 credo 31 -1010001101011 microbe 31 -1010001101011 skeptic 31 -1010001101011 mural 32 -1010001101011 phobia 33 -1010001101011 libretto 34 -1010001101011 specimen 34 -1010001101011 bacterium 37 -1010001101011 adage 38 -1010001101011 fable 39 -1010001101011 baton 42 -1010001101011 monologue 43 -1010001101011 caption 44 -1010001101011 trait 46 -1010001101011 quartet 48 -1010001101011 verse 49 -1010001101011 fungus 55 -1010001101011 circumstance 56 -1010001101011 racket 57 -1010001101011 memoir 58 -1010001101011 farce 59 -1010001101011 cliche 62 -1010001101011 scent 64 -1010001101011 sitcom 66 -1010001101011 mystique 67 -1010001101011 thriller 67 -1010001101011 motto 67 -1010001101011 hypothesis 70 -1010001101011 honeymoon 75 -1010001101011 confession 78 -1010001101011 manuscript 79 -1010001101011 deed 80 -1010001101011 villain 86 -1010001101011 qualification 88 -1010001101011 rug 90 -1010001101011 poem 92 -1010001101011 repertoire 94 -1010001101011 revelation 95 -1010001101011 poster 97 -1010001101011 parody 97 -1010001101011 arithmetic 98 -1010001101011 questionnaire 105 -1010001101011 paradox 107 -1010001101011 saga 127 -1010001101011 miniseries 128 -1010001101011 nickname 142 -1010001101011 brochure 144 -1010001101011 ritual 146 -1010001101011 commentary 160 -1010001101011 thesis 163 -1010001101011 myth 194 -1010001101011 button 200 -1010001101011 documentary 202 -1010001101011 remark 227 -1010001101011 logo 235 -1010001101011 crown 238 -1010001101011 script 253 -1010001101011 reasoning 254 -1010001101011 slogan 278 -1010001101011 headline 286 -1010001101011 phrase 344 -1010001101011 tale 367 -1010001101011 comedy 387 -1010001101011 joke 399 -1010001101011 protein 404 -1010001101011 drama 430 -1010001101011 song 434 -1010001101011 text 446 -1010001101011 plot 459 -1010001101011 prize 460 -1010001101011 breakup 484 -1010001101011 rumor 516 -1010001101011 lesson 589 -1010001101011 seller 733 -1010001101011 stuff 884 -1010001101011 theme 964 -1010001101011 novel 970 -1010001101011 consensus 1119 -1010001101011 title 1249 -1010001101011 argument 1374 -1010001101011 theory 1520 -1010001101011 language 1545 -1010001101011 message 2027 -1010001101011 word 2162 -1010001101011 picture 2413 -1010001101011 story 3889 -1010001101011 book 5262 -1010001101100 repackagings 1 -1010001101100 stocking-up 1 -1010001101100 editions. 1 -1010001101100 barbarity 1 -1010001101100 shamaness 1 -1010001101100 palaver 1 -1010001101100 disinform 1 -1010001101100 win-by-default 1 -1010001101100 mini-IBM 1 -1010001101100 enunciation 1 -1010001101100 pseudo-newscast 1 -1010001101100 disagreeemnt 1 -1010001101100 Tschernobyl 1 -1010001101100 gamebirds 1 -1010001101100 Milward 1 -1010001101100 superstructures 1 -1010001101100 lassos 1 -1010001101100 plus-176 1 -1010001101100 exclusionism 1 -1010001101100 drawbridges 1 -1010001101100 footstep 1 -1010001101100 timorousness 1 -1010001101100 polyphosphate 1 -1010001101100 pharmacotherapy 1 -1010001101100 minicontroversy 1 -1010001101100 bullshit 1 -1010001101100 yawper 1 -1010001101100 conclude. 1 -1010001101100 manuvering 1 -1010001101100 lolls 1 -1010001101100 donnybrooks 1 -1010001101100 center-fielder 1 -1010001101100 223.34 2 -1010001101100 warehouser 2 -1010001101100 1,336,000 2 -1010001101100 tambourine 2 -1010001101100 25366.11 2 -1010001101100 319.25 2 -1010001101100 1722.2 2 -1010001101100 359.80 2 -1010001101100 wall. 2 -1010001101100 bumpersticker 2 -1010001101100 counter-puncher 2 -1010001101100 crossmember 2 -1010001101100 MPIST 2 -1010001101100 Paraguayans 2 -1010001101100 searchlight 2 -1010001101100 leadership. 2 -1010001101100 coarseness 2 -1010001101100 papa 2 -1010001101100 petrocurrency 2 -1010001101100 tangent 3 -1010001101100 counter-trend 3 -1010001101100 bounceback 3 -1010001101100 dirigible 3 -1010001101100 rumor-mongering 3 -1010001101100 coursework 3 -1010001101100 culpas 3 -1010001101100 frieze 3 -1010001101100 1,490,000 3 -1010001101100 hurrahs 3 -1010001101100 Regionales 3 -1010001101100 299.80 3 -1010001101100 firewall 4 -1010001101100 dithered 4 -1010001101100 standoffs 4 -1010001101100 tiffs 4 -1010001101100 near-revolt 4 -1010001101100 jitteriness 4 -1010001101100 bellyache 4 -1010001101100 wranglings 4 -1010001101100 keratitis 4 -1010001101100 cyclone 5 -1010001101100 snit 5 -1010001101100 fussing 5 -1010001101100 glossing 5 -1010001101100 predation 5 -1010001101100 discourses 5 -1010001101100 turpitude 6 -1010001101100 militance 6 -1010001101100 horse-trading 6 -1010001101100 papering 6 -1010001101100 unconcern 6 -1010001101100 licensure 7 -1010001101100 contretemps 8 -1010001101100 preening 9 -1010001101100 slugfest 9 -1010001101100 blather 9 -1010001101100 swooning 9 -1010001101100 quibbles 10 -1010001101100 dithering 11 -1010001101100 entanglement 11 -1010001101100 hullabaloo 11 -1010001101100 self-examination 11 -1010001101100 tantrum 12 -1010001101100 quibbling 12 -1010001101100 dogfight 14 -1010001101100 tiff 17 -1010001101100 jousting 18 -1010001101100 dickering 18 -1010001101100 fracas 19 -1010001101100 stink 19 -1010001101100 skirmishing 19 -1010001101100 ruckus 20 -1010001101100 glaze 20 -1010001101100 brouhaha 21 -1010001101100 schism 30 -1010001101100 feuds 31 -1010001101100 tussle 33 -1010001101100 tug-of-war 34 -1010001101100 brawl 36 -1010001101100 ferment 36 -1010001101100 gloss 37 -1010001101100 wrangle 44 -1010001101100 sniping 48 -1010001101100 acrimony 52 -1010001101100 poring 53 -1010001101100 squabbles 53 -1010001101100 pall 60 -1010001101100 haggling 66 -1010001101100 hoopla 68 -1010001101100 spat 68 -1010001101100 skirmish 69 -1010001101100 squabbling 73 -1010001101100 standoff 74 -1010001101100 hardball 75 -1010001101100 squabble 84 -1010001101100 feuding 87 -1010001101100 wrangling 114 -1010001101100 bickering 117 -1010001101100 deadlock 120 -1010001101100 stalemate 134 -1010001101100 fuss 137 -1010001101100 flap 150 -1010001101100 furor 152 -1010001101100 feud 217 -1010001101100 maneuvering 219 -1010001101100 disagreement 315 -1010001101100 struggle 1248 -1010001101100 controversy 1403 -1010001101100 debate 3065 -1010001101100 dispute 3071 -1010001101100 date 3704 -1010001101100 battle 3714 -1010001101101 nonpolitician 1 -1010001101101 periodontist 1 -1010001101101 drake 1 -1010001101101 constructionists 1 -1010001101101 clergyperson 1 -1010001101101 232,000-acre 1 -1010001101101 fare-war 1 -1010001101101 critical/historical 1 -1010001101101 bloom-dependent 1 -1010001101101 spatters 1 -1010001101101 drug-analyst 1 -1010001101101 stateswoman 1 -1010001101101 parnership 1 -1010001101101 pseudoclassical 1 -1010001101101 trickster 1 -1010001101101 tip-in 1 -1010001101101 pole-vaulter 1 -1010001101101 plea-agreement 1 -1010001101101 rebonding 1 -1010001101101 definitiveness 1 -1010001101101 four-setter 1 -1010001101101 five-setter 1 -1010001101101 ziti 1 -1010001101101 dislikings 1 -1010001101101 parchute 1 -1010001101101 destocking 1 -1010001101101 sub-universe 1 -1010001101101 bogey-word 1 -1010001101101 glinting 1 -1010001101101 salesman-trader 1 -1010001101101 channel-zap 1 -1010001101101 proto-galaxy 1 -1010001101101 toggle 1 -1010001101101 assuredness 1 -1010001101101 radiosensitizer 1 -1010001101101 rubdown 1 -1010001101101 chumminess 1 -1010001101101 millionare 1 -1010001101101 17-judge 1 -1010001101101 279-4200 1 -1010001101101 seeress 1 -1010001101101 semi-supply-sider 1 -1010001101101 beanie 1 -1010001101101 3,000-year-old 1 -1010001101101 exigency 1 -1010001101101 runin 1 -1010001101101 jockography 1 -1010001101101 crapshooter 1 -1010001101101 sail-off 1 -1010001101101 groaner 1 -1010001101101 Olympics-goers 1 -1010001101101 mini-flap 1 -1010001101101 Adalgisa 1 -1010001101101 rendevous 1 -1010001101101 beer-drinker 1 -1010001101101 doo-doo. 1 -1010001101101 CHECKUPS 1 -1010001101101 packt 1 -1010001101101 coexistance 1 -1010001101101 whiteboard 1 -1010001101101 link-ups 2 -1010001101101 disemployment 2 -1010001101101 fault-line 2 -1010001101101 tongued 2 -1010001101101 cackle 2 -1010001101101 woman. 2 -1010001101101 co-venture 2 -1010001101101 hook-up 2 -1010001101101 leveler 2 -1010001101101 outrageousness 2 -1010001101101 superwoman 2 -1010001101101 trois 2 -1010001101101 21-10 2 -1010001101101 dust-up 2 -1010001101101 moonshot 2 -1010001101101 truncation 2 -1010001101101 liason 2 -1010001101101 set-to 2 -1010001101101 counter-attack 3 -1010001101101 mongrel 3 -1010001101101 constructionism 3 -1010001101101 mope 3 -1010001101101 impasses 3 -1010001101101 confict 3 -1010001101101 REITS 3 -1010001101101 nihilist 3 -1010001101101 gunfight 4 -1010001101101 monopolists 4 -1010001101101 dialog 4 -1010001101101 entente 4 -1010001101101 crossbreed 4 -1010001101101 falling-out 5 -1010001101101 carbuncle 5 -1010001101101 gourd 5 -1010001101101 mots 5 -1010001101101 miscommunication 5 -1010001101101 breech 5 -1010001101101 cuddle 5 -1010001101101 affinities 6 -1010001101101 hole-in-one 6 -1010001101101 stand-off 6 -1010001101101 schmooze 6 -1010001101101 veranda 6 -1010001101101 doo-doo 6 -1010001101101 dealmaking 6 -1010001101101 dalliance 6 -1010001101101 rapture 7 -1010001101101 coziness 7 -1010001101101 candelabra 7 -1010001101101 rehabilitations 8 -1010001101101 superhighway 9 -1010001101101 slam-dunk 9 -1010001101101 hanky-panky 9 -1010001101101 incompatibility 9 -1010001101101 whore 9 -1010001101101 vacillate 10 -1010001101101 tryst 10 -1010001101101 whine 11 -1010001101101 oldies 11 -1010001101101 brim 11 -1010001101101 tramp 12 -1010001101101 jibes 13 -1010001101101 collider 14 -1010001101101 kinship 15 -1010001101101 face-off 15 -1010001101101 run-in 15 -1010001101101 weariness 15 -1010001101101 commune 16 -1010001101101 recap 17 -1010001101101 give-and-take 17 -1010001101101 tie-up 17 -1010001101101 scuffle 18 -1010001101101 whirl 18 -1010001101101 shoot-out 20 -1010001101101 coexistence 21 -1010001101101 giggle 22 -1010001101101 queue 22 -1010001101101 flirtation 23 -1010001101101 romp 23 -1010001101101 rendezvous 27 -1010001101101 linkup 28 -1010001101101 fling 28 -1010001101101 wager 30 -1010001101101 variance 36 -1010001101101 duet 36 -1010001101101 duel 40 -1010001101101 rupture 47 -1010001101101 hassle 52 -1010001101101 rapport 54 -1010001101101 yawn 55 -1010001101101 rapprochement 57 -1010001101101 interaction 63 -1010001101101 parting 67 -1010001101101 synergy 67 -1010001101101 chord 70 -1010001101101 parachute 81 -1010001101101 grin 81 -1010001101101 linkage 107 -1010001101101 preoccupation 117 -1010001101101 chat 118 -1010001101101 puzzle 119 -1010001101101 quarrel 127 -1010001101101 parallels 131 -1010001101101 overlap 132 -1010001101101 treasure 143 -1010001101101 rift 152 -1010001101101 shame 153 -1010001101101 reconciliation 172 -1010001101101 brush 175 -1010001101101 rivalry 177 -1010001101101 collision 178 -1010001101101 affiliation 181 -1010001101101 showdown 193 -1010001101101 friendship 194 -1010001101101 clash 277 -1010001101101 gamble 305 -1010001101101 smile 316 -1010001101101 dialogue 352 -1010001101101 hell 461 -1010001101101 conversation 534 -1010001101101 confrontation 536 -1010001101101 distance 628 -1010001101101 bargain 763 -1010001101101 link 1097 -1010001101101 conflict 1451 -1010001101101 compromise 1682 -1010001101101 deal 6464 -1010001101101 relationship 2168 -1010001101110 never-identified 1 -1010001101110 ticketholder 1 -1010001101110 two-base 1 -1010001101110 quick-ratification 1 -1010001101110 flaring-up 1 -1010001101110 Buddha-like 1 -1010001101110 dollhouse 1 -1010001101110 houseflies 1 -1010001101110 shepherdess 1 -1010001101110 seed-growing 1 -1010001101110 parasol 1 -1010001101110 tollbooth 1 -1010001101110 artilce 1 -1010001101110 weavings 2 -1010001101110 kidnap-murder 2 -1010001101110 hellhole 2 -1010001101110 starlight 2 -1010001101110 guesstimate 2 -1010001101110 Brakes 2 -1010001101110 motorcycle-riding 2 -1010001101110 half-ownership 2 -1010001101110 Monegasque 2 -1010001101110 derangement 2 -1010001101110 fender-bender 2 -1010001101110 megabid 2 -1010001101110 muleback 2 -1010001101110 mini-revolution 2 -1010001101110 tiebreaker 2 -1010001101110 ex-lover 2 -1010001101110 braggart 2 -1010001101110 sparkler 2 -1010001101110 rearguard 2 -1010001101110 crick 3 -1010001101110 damsel 3 -1010001101110 misquote 3 -1010001101110 sojourner 3 -1010001101110 stayaway 3 -1010001101110 mafrag 3 -1010001101110 nonparticipation 3 -1010001101110 followthrough 3 -1010001101110 sinecure 3 -1010001101110 moviemaker 3 -1010001101110 mainspring 3 -1010001101110 retrievers 3 -1010001101110 counterargument 3 -1010001101110 concussion 3 -1010001101110 flasher 3 -1010001101110 miniboom 4 -1010001101110 stele 4 -1010001101110 palazzo 4 -1010001101110 cave-in 4 -1010001101110 declamation 4 -1010001101110 geriatrician 4 -1010001101110 weakling 4 -1010001101110 bumbler 4 -1010001101110 photojournalist 4 -1010001101110 greenbelt 4 -1010001101110 mega-deal 4 -1010001101110 plunger 5 -1010001101110 megahit 5 -1010001101110 swastika 5 -1010001101110 supercycle 5 -1010001101110 sea-change 5 -1010001101110 tusk 5 -1010001101110 mini-hub 5 -1010001101110 lawbreaker 5 -1010001101110 glider 5 -1010001101110 toad 6 -1010001101110 go-getter 6 -1010001101110 spire 6 -1010001101110 blahs 6 -1010001101110 blooper 6 -1010001101110 tremor 6 -1010001101110 pileup 7 -1010001101110 trendsetter 7 -1010001101110 divider 7 -1010001101110 bounce-back 7 -1010001101110 oratorio 7 -1010001101110 dragnet 7 -1010001101110 jig 8 -1010001101110 layover 8 -1010001101110 mixup 8 -1010001101110 coverup 8 -1010001101110 racketeer 8 -1010001101110 cytotech 8 -1010001101110 cliffhanger 8 -1010001101110 TD 9 -1010001101110 blindfold 9 -1010001101110 gash 9 -1010001101110 run-off 10 -1010001101110 downswing 10 -1010001101110 ravine 10 -1010001101110 rectangle 10 -1010001101110 budget-buster 10 -1010001101110 stripper 10 -1010001101110 stopover 10 -1010001101110 fly-rod 11 -1010001101110 firefight 11 -1010001101110 holdup 11 -1010001101110 gale 11 -1010001101110 troublemaker 11 -1010001101110 freefall 12 -1010001101110 sunburn 12 -1010001101110 beginner 12 -1010001101110 no-brainer 12 -1010001101110 firebomb 12 -1010001101110 shake-out 12 -1010001101110 combatant 12 -1010001101110 crater 12 -1010001101110 quakes 13 -1010001101110 discotheque 13 -1010001101110 jihad 13 -1010001101110 torpor 13 -1010001101110 buffoon 14 -1010001101110 goof 14 -1010001101110 depressant 14 -1010001101110 catamaran 15 -1010001101110 downdraft 15 -1010001101110 retriever 15 -1010001101110 crapshoot 15 -1010001101110 mix-up 15 -1010001101110 conflagration 16 -1010001101110 no-no 16 -1010001101110 hiccup 16 -1010001101110 snowfall 16 -1010001101110 free-fall 16 -1010001101110 letdown 17 -1010001101110 counterrevolution 18 -1010001101110 retrial 18 -1010001101110 thunderstorm 18 -1010001101110 makeover 18 -1010001101110 slumber 19 -1010001101110 waterfall 19 -1010001101110 closedown 20 -1010001101110 speedup 20 -1010001101110 peacemaker 21 -1010001101110 tornado 21 -1010001101110 berth 21 -1010001101110 swoon 21 -1010001101110 dud 21 -1010001101110 rainstorm 22 -1010001101110 drubbing 23 -1010001101110 nosedive 24 -1010001101110 grudge 24 -1010001101110 notation 25 -1010001101110 broadside 26 -1010001101110 deceleration 26 -1010001101110 rampage 27 -1010001101110 chuckle 27 -1010001101110 martyr 28 -1010001101110 wink 30 -1010001101110 bimbo 31 -1010001101110 pariah 31 -1010001101110 downtrend 31 -1010001101110 ceasefire 32 -1010001101110 flare-up 32 -1010001101110 Catch-22 33 -1010001101110 mutiny 33 -1010001101110 blowout 34 -1010001101110 mist 35 -1010001101110 bombshell 36 -1010001101110 hangover 39 -1010001101110 glitch 40 -1010001101110 bloodbath 40 -1010001101110 calamity 42 -1010001101110 blockade 43 -1010001101110 lockout 45 -1010001101110 hoax 48 -1010001101110 mistrial 48 -1010001101110 touchdown 49 -1010001101110 malfunction 49 -1010001101110 selloff 50 -1010001101110 snowstorm 52 -1010001101110 turnabout 53 -1010001101110 scapegoat 61 -1010001101110 cover-up 64 -1010001101110 rarity 65 -1010001101110 runoff 70 -1010001101110 meltdown 71 -1010001101110 quake 75 -1010001101110 blip 82 -1010001101110 snag 84 -1010001101110 flier 86 -1010001101110 rehearing 89 -1010001101110 watershed 93 -1010001101110 pullback 95 -1010001101110 frost 97 -1010001101110 tailspin 104 -1010001101110 bonanza 104 -1010001101110 fad 106 -1010001101110 flop 107 -1010001101110 lull 115 -1010001101110 milestone 121 -1010001101110 hurricane 132 -1010001101110 catastrophe 141 -1010001101110 rout 146 -1010001101110 contraction 165 -1010001101110 rage 169 -1010001101110 retrenchment 174 -1010001101110 cutback 190 -1010001101110 recess 198 -1010001101110 pioneer 199 -1010001101110 shakeout 200 -1010001101110 backlash 220 -1010001101110 layoff 223 -1010001101110 miracle 225 -1010001101110 truce 271 -1010001101110 walkout 272 -1010001101110 comeback 274 -1010001101110 breakthrough 381 -1010001101110 depression 390 -1010001101110 demonstration 422 -1010001101110 storm 492 -1010001101110 panic 553 -1010001101110 sell-off 601 -1010001101110 cease-fire 603 -1010001101110 setback 610 -1010001101110 correction 662 -1010001101110 downturn 802 -1010001101110 coup 814 -1010001101110 turnaround 1011 -1010001101110 disaster 1131 -1010001101110 slowdown 1163 -1010001101110 drought 1272 -1010001101110 boom 1452 -1010001101110 slump 1456 -1010001101110 recession 3137 -1010001101110 trial 3425 -1010001101110 rally 3755 -1010001101110 strike 4329 -10100011011110 CRISIS 1 -10100011011110 pre-revolution-debts 1 -10100011011110 dance-maker 1 -10100011011110 6,329,533 1 -10100011011110 445-pence-a-share 1 -10100011011110 NCC-1701-D 1 -10100011011110 trackbed 1 -10100011011110 physician-ethicist 1 -10100011011110 two-doors 1 -10100011011110 dogfood 1 -10100011011110 booklist 1 -10100011011110 medcines 1 -10100011011110 somnolence 1 -10100011011110 5890-600 1 -10100011011110 Palmers 1 -10100011011110 kingship 1 -10100011011110 undisguisedly 1 -10100011011110 drug-maker 1 -10100011011110 corms 1 -10100011011110 Lilliputs 1 -10100011011110 mini-TVs 1 -10100011011110 nonmedically 1 -10100011011110 refurbisher 1 -10100011011110 postage-stamp-size 1 -10100011011110 Pattons 1 -10100011011110 reacquisition 2 -10100011011110 cook-off 2 -10100011011110 Medicis 2 -10100011011110 recapitaliztion 2 -10100011011110 crusher 2 -10100011011110 Aspide 2 -10100011011110 sheepdog 2 -10100011011110 Simplifier 2 -10100011011110 rakers 2 -10100011011110 lysine 2 -10100011011110 plane-maker 2 -10100011011110 Millards 2 -10100011011110 8380R 2 -10100011011110 table. 2 -10100011011110 meuniere 2 -10100011011110 hokey-pokey 2 -10100011011110 pay-outs 2 -10100011011110 NYCLU 2 -10100011011110 Mariels 2 -10100011011110 consumer-taxpayer 2 -10100011011110 Thingi 2 -10100011011110 skillet 2 -10100011011110 Staircase 2 -10100011011110 scow 3 -10100011011110 LXN 3 -10100011011110 forcola 3 -10100011011110 joyride 3 -10100011011110 Printables 3 -10100011011110 nunnery 3 -10100011011110 burnet 3 -10100011011110 yolk 3 -10100011011110 tautology 3 -10100011011110 8615 3 -10100011011110 PDPA 3 -10100011011110 sextet 3 -10100011011110 Trupins 3 -10100011011110 sandstorms 3 -10100011011110 scrim 3 -10100011011110 cabanas 3 -10100011011110 NLPA 3 -10100011011110 G-Analyst 3 -10100011011110 briquettes 3 -10100011011110 Parodis 3 -10100011011110 cupboards 3 -10100011011110 B-1s 3 -10100011011110 boo-boo 3 -10100011011110 WY-150 3 -10100011011110 colonoscopy 3 -10100011011110 supertitles 4 -10100011011110 22V10 4 -10100011011110 microburst 4 -10100011011110 supercharger 4 -10100011011110 1,200-acre 4 -10100011011110 defendent 4 -10100011011110 32/800 4 -10100011011110 literatus 4 -10100011011110 piazza 4 -10100011011110 gondolier 5 -10100011011110 runaround 5 -10100011011110 microExplorer 5 -10100011011110 shaman 5 -10100011011110 Gaucho 5 -10100011011110 brewmaster 5 -10100011011110 enrollee 6 -10100011011110 megafirm 6 -10100011011110 ITO 6 -10100011011110 Somozas 6 -10100011011110 Sierras 6 -10100011011110 Nahnmwarki 6 -10100011011110 sniffer 7 -10100011011110 Biennale 7 -10100011011110 Marielitos 7 -10100011011110 clinician 7 -10100011011110 sender 8 -10100011011110 CR 8 -10100011011110 matchup 9 -10100011011110 jirga 9 -10100011011110 unicorn 10 -10100011011110 Doles 10 -10100011011110 V-2500 11 -10100011011110 EITC 12 -10100011011110 bolivar 13 -10100011011110 cannisters 14 -10100011011110 mike 14 -10100011011110 W-4A 21 -10100011011110 painkiller 25 -10100011011110 liquidator 46 -10100011011110 curtain 102 -10100011011110 sweetener 116 -10100011011110 virus 1388 -10100011011110 treaty 1928 -10100011011110 plane 2032 -10100011011110 transaction 8651 -10100011011110 pact 3034 -10100011011111 1.000 1 -10100011011111 PATENTS 1 -10100011011111 .186 1 -10100011011111 Cooz 1 -10100011011111 neglect-maintenance 1 -10100011011111 .301 1 -10100011011111 position-staking 1 -10100011011111 problemsolving 1 -10100011011111 89-98 1 -10100011011111 .293 1 -10100011011111 directionlessness 1 -10100011011111 .340 1 -10100011011111 .350 1 -10100011011111 crowd-puller 1 -10100011011111 impasto 1 -10100011011111 mahouts 2 -10100011011111 pang 2 -10100011011111 Wasteland 2 -10100011011111 rationalism 2 -10100011011111 seachange 2 -10100011011111 Ramthites 2 -10100011011111 infirmity 2 -10100011011111 intiative 2 -10100011011111 AVA 2 -10100011011111 rejectionism 2 -10100011011111 Wanderers 2 -10100011011111 re-appraisal 2 -10100011011111 Fundis 3 -10100011011111 C-word 3 -10100011011111 nutcracker 3 -10100011011111 bogy 3 -10100011011111 kouros 3 -10100011011111 sortie 3 -10100011011111 3A 3 -10100011011111 jiageya 3 -10100011011111 shrew 3 -10100011011111 winglet 3 -10100011011111 crock 3 -10100011011111 scumbag 3 -10100011011111 bufyet 3 -10100011011111 urinal 4 -10100011011111 blow-off 4 -10100011011111 misdeed 4 -10100011011111 charger 4 -10100011011111 '90 4 -10100011011111 dilettante 4 -10100011011111 joker 5 -10100011011111 drover 5 -10100011011111 Extra-Terrestrial 5 -10100011011111 activators 5 -10100011011111 stunner 5 -10100011011111 streaker 5 -10100011011111 downer 5 -10100011011111 JR. 6 -10100011011111 Wunderkind 6 -10100011011111 corset 6 -10100011011111 zinger 6 -10100011011111 minuet 6 -10100011011111 battlefront 7 -10100011011111 10-X 7 -10100011011111 colloquy 7 -10100011011111 idioms 8 -10100011011111 screw-up 8 -10100011011111 boulevard 8 -10100011011111 make-up 8 -10100011011111 doozy 8 -10100011011111 spectrometer 9 -10100011011111 sandbox 9 -10100011011111 company. 9 -10100011011111 pacesetter 9 -10100011011111 Bretts 10 -10100011011111 blowup 10 -10100011011111 asymmetry 11 -10100011011111 money-maker 11 -10100011011111 hang-up 11 -10100011011111 bonfire 11 -10100011011111 Terminator 12 -10100011011111 patsy 12 -10100011011111 clincher 12 -10100011011111 catharsis 12 -10100011011111 donnybrook 13 -10100011011111 sedative 13 -10100011011111 monstrosity 13 -10100011011111 degeneration 14 -10100011011111 caper 14 -10100011011111 Inquisition 15 -10100011011111 precipice 15 -10100011011111 maelstrom 18 -10100011011111 hubbub 18 -10100011011111 sideshow 19 -10100011011111 pitfall 21 -10100011011111 dike 22 -10100011011111 kicker 22 -10100011011111 parasite 23 -10100011011111 malady 23 -10100011011111 moneymaker 24 -10100011011111 bottleneck 26 -10100011011111 spigot 26 -10100011011111 checkpoint 27 -10100011011111 juggernaut 28 -10100011011111 misstep 29 -10100011011111 dissenter 29 -10100011011111 holdout 29 -10100011011111 free-for-all 37 -10100011011111 Untouchables 37 -10100011011111 imbroglio 38 -10100011011111 logjam 42 -10100011011111 gambit 52 -10100011011111 culprits 54 -10100011011111 quandary 61 -10100011011111 renaissance 74 -10100011011111 hitch 78 -10100011011111 statistic 91 -10100011011111 battleground 92 -10100011011111 fiasco 111 -10100011011111 scam 112 -10100011011111 culprit 119 -10100011011111 spiral 146 -10100011011111 headache 159 -10100011011111 payoff 172 -10100011011111 bell 212 -10100011011111 crunch 247 -10100011011111 hurdle 248 -10100011011111 debacle 259 -10100011011111 shortfall 275 -10100011011111 tragedy 277 -10100011011111 loser 286 -10100011011111 dilemma 403 -10100011011111 mess 447 -10100011011111 scenario 466 -10100011011111 phenomenon 472 -10100011011111 revision 594 -10100011011111 winner 805 -10100011011111 revolution 897 -10100011011111 summit 1689 -10100011011111 scandal 1940 -10100011011111 trend 2637 -10100011011111 crisis 2755 -10100011011111 problem 10083 -10100011011111 situation 3825 -1010001110000 trade-policies 1 -1010001110000 Quinism 1 -1010001110000 Focuses 1 -1010001110000 schlub 1 -1010001110000 supply-above 1 -1010001110000 rapporteurs 1 -1010001110000 3737 1 -1010001110000 repassed 1 -1010001110000 iguanas 1 -1010001110000 FIDDLER 1 -1010001110000 repairperson 1 -1010001110000 correspondant 1 -1010001110000 variationfrom 1 -1010001110000 Kodar 1 -1010001110000 cum-office 1 -1010001110000 radiothon 1 -1010001110000 Treatise 1 -1010001110000 smash-up 2 -1010001110000 Aftenposten 2 -1010001110000 spot-checks 2 -1010001110000 Petunias 2 -1010001110000 Duvalierists 3 -1010001110000 clerkship 3 -1010001110000 REPORTS 4 -1010001110000 notary 5 -1010001110000 eunuch 5 -1010001110000 colloquium 5 -1010001110000 play-offs 5 -1010001110000 melodramas 6 -1010001110000 debriefing 6 -1010001110000 gander 6 -1010001110000 over-the-counter-trading 6 -1010001110000 scolding 10 -1010001110000 pun 17 -1010001110000 clipping 26 -1010001110000 parley 31 -1010001110000 clippings 35 -1010001110000 liftoff 39 -1010001110000 symposium 55 -1010001110000 plenum 66 -1010001110000 plebiscite 95 -1010001110000 luncheon 167 -1010001110000 seminar 214 -1010001110000 conferences 243 -1010001110000 briefing 338 -1010001110000 referendum 358 -1010001110000 hearings 1857 -1010001110000 conference 3956 -1010001110000 hearing 2921 -1010001110001 disatisfaction 1 -1010001110001 metrical 1 -1010001110001 fracases 1 -1010001110001 gay-lesbian 1 -1010001110001 super-crop 1 -1010001110001 uanimously 1 -1010001110001 catfight 1 -1010001110001 louvers 1 -1010001110001 bill-writers 1 -1010001110001 tail-chasing 1 -1010001110001 intitiative 1 -1010001110001 auto-lease 1 -1010001110001 Stored 1 -1010001110001 still-overheated 1 -1010001110001 game-to-end-all-games 1 -1010001110001 144.37 1 -1010001110001 assigment 1 -1010001110001 EC-Japan 1 -1010001110001 Ilyushin-62 1 -1010001110001 oppressions 1 -1010001110001 four-section 1 -1010001110001 buscapade 1 -1010001110001 storybooks 1 -1010001110001 jamboree 1 -1010001110001 zaniness 1 -1010001110001 verifed 1 -1010001110001 miniaturist 2 -1010001110001 acquiesces 2 -1010001110001 income. 2 -1010001110001 nebula 2 -1010001110001 nimbleness 2 -1010001110001 scorcher 2 -1010001110001 love-fest 2 -1010001110001 extention 2 -1010001110001 hoopsters 2 -1010001110001 reports. 3 -1010001110001 murk 3 -1010001110001 Playmate 3 -1010001110001 reassessments 3 -1010001110001 Tutsi 3 -1010001110001 show-stopper 4 -1010001110001 sleekness 4 -1010001110001 highflyer 4 -1010001110001 powwow 4 -1010001110001 carryforward 4 -1010001110001 shindig 5 -1010001110001 windstorm 5 -1010001110001 conclave 7 -1010001110001 carryforwards 8 -1010001110001 tempore 9 -1010001110001 get-together 13 -1010001110001 dispensation 14 -1010001110001 shootout 22 -1010001110001 massacre 142 -1010001110001 carry-forward 178 -1010001110001 meeting 12776 -1010001110001 carry-forwards 209 -1010001110010 87-106 1 -1010001110010 87-103 1 -1010001110010 87-17 1 -1010001110010 87-102 1 -1010001110010 87-62 1 -1010001110010 chairmen. 1 -1010001110010 headquaters 1 -1010001110010 ex-staffer 1 -1010001110010 88-66 1 -1010001110010 asumes 1 -1010001110010 88-73 1 -1010001110010 Handelsblad 1 -1010001110010 87-95 1 -1010001110010 86-141 1 -1010001110010 87-22 1 -1010001110010 al-Barajneh 1 -1010001110010 22920 1 -1010001110010 1341 1 -1010001110010 87-131 1 -1010001110010 86-148 1 -1010001110010 Nailing 1 -1010001110010 86-151 1 -1010001110010 shim 1 -1010001110010 87-94 1 -1010001110010 lyceum 1 -1010001110010 el-Fna 1 -1010001110010 post-hearing 1 -1010001110010 89-90 1 -1010001110010 frostiness 1 -1010001110010 AUTOMOBILES 1 -1010001110010 return-printing 1 -1010001110010 Frederico 1 -1010001110010 SHAKE-UPS 1 -1010001110010 pass-back 1 -1010001110010 nuclear-performance 1 -1010001110010 205.0 1 -1010001110010 Racisme 1 -1010001110010 slickers 1 -1010001110010 88-46 1 -1010001110010 87-136 1 -1010001110010 heir-designate 2 -1010001110010 Mafioso 2 -1010001110010 owner-occupant 2 -1010001110010 420SEL 2 -1010001110010 slurred 2 -1010001110010 1981-1987 2 -1010001110010 Tanners 2 -1010001110010 88-50 2 -1010001110010 Kapels 2 -1010001110010 86-142 2 -1010001110010 75-280 2 -1010001110010 shoebox 3 -1010001110010 approval. 3 -1010001110010 Undong 3 -1010001110010 260E 4 -1010001110010 Il-96 4 -1010001110010 milkman 4 -1010001110010 GLS 4 -1010001110010 Wooz 4 -1010001110010 innovating 4 -1010001110010 ly 5 -1010001110010 Slowey 6 -1010001110010 Scandia 10 -1010001110010 registration 774 -1010001110010 filing 8479 -1010001110010 filings 806 -1010001110011 constitutional-revision 1 -1010001110011 debt-accord 1 -1010001110011 personnel-records 1 -1010001110011 wild-card 1 -1010001110011 national-contract 1 -1010001110011 playrooms 1 -1010001110011 Moscow-induced 1 -1010001110011 Crite 1 -1010001110011 Reappraised 1 -1010001110011 3300 1 -1010001110011 Fractions 1 -1010001110011 Kronholz 1 -1010001110011 piggybanks 1 -1010001110011 torpedo-man 1 -1010001110011 salesclerk 1 -1010001110011 guilden 1 -1010001110011 RunTime 1 -1010001110011 containerships 1 -1010001110011 car- 1 -1010001110011 840,000-square-foot 1 -1010001110011 multiple-cells 1 -1010001110011 Regained 1 -1010001110011 96503. 1 -1010001110011 man-ape 1 -1010001110011 do-or-goodbye 1 -1010001110011 production-supply 1 -1010001110011 2,436 1 -1010001110011 block-purchases 1 -1010001110011 Dougall 1 -1010001110011 worldtrade 1 -1010001110011 sergeant-major 1 -1010001110011 Reservist 1 -1010001110011 SJN-5 1 -1010001110011 Champain 1 -1010001110011 tactical-vehicle 1 -1010001110011 Stockpoint 1 -1010001110011 state-lottery 1 -1010001110011 storerooms 2 -1010001110011 limerick 2 -1010001110011 projects. 2 -1010001110011 Causa 2 -1010001110011 Contra-Sandinista 2 -1010001110011 erector 2 -1010001110011 ContraFund 2 -1010001110011 Sacz 2 -1010001110011 base-rights 2 -1010001110011 Backfires 2 -1010001110011 clothespin 2 -1010001110011 Preventor 3 -1010001110011 time-frame 4 -1010001110011 panda 5 -1010001110011 A-12 7 -1010001110011 contract 13631 -1010001110011 margining 10 -1010001110100 seditionist 1 -1010001110100 one-run-in-eight 1 -1010001110100 bookstacks 1 -1010001110100 swayback 1 -1010001110100 Freeleys 1 -1010001110100 counterreport 1 -1010001110100 NABJ 1 -1010001110100 Benedictis 1 -1010001110100 franchise-winner 1 -1010001110100 most-hyped 1 -1010001110100 doorframe 1 -1010001110100 recepit 1 -1010001110100 face-lifting 1 -1010001110100 DENY 1 -1010001110100 hydrogeologist 1 -1010001110100 bio-documentary 1 -1010001110100 dawn-to-dusk 1 -1010001110100 tie-vote 1 -1010001110100 peace-maker 1 -1010001110100 tensiometer 1 -1010001110100 offscreen 1 -1010001110100 assassination-theory 1 -1010001110100 buckaroo 1 -1010001110100 misdeal 1 -1010001110100 patterused 1 -1010001110100 privatizer 1 -1010001110100 CG-47 1 -1010001110100 092 1 -1010001110100 currency-devalued 1 -1010001110100 7s 1 -1010001110100 trilogy-in-progress 1 -1010001110100 MFG42887 1 -1010001110100 MFG52987 1 -1010001110100 1661966S 1 -1010001110100 resoluton 1 -1010001110100 prior-period 1 -1010001110100 Universal-made 1 -1010001110100 econonomists 1 -1010001110100 Mexican-produced 1 -1010001110100 adminstrations 1 -1010001110100 tracheotomy 1 -1010001110100 talk-format 1 -1010001110100 non-precedential 1 -1010001110100 ur 1 -1010001110100 regrading 1 -1010001110100 NUTHATCH 1 -1010001110100 play/musical 1 -1010001110100 better-offs 1 -1010001110100 four-gold-medal 1 -1010001110100 epaulets 1 -1010001110100 1,197,411 1 -1010001110100 hhhmmmm 1 -1010001110100 pathmaker 1 -1010001110100 yearall 1 -1010001110100 83381-011 1 -1010001110100 career-boost 1 -1010001110100 Al-Nayyam 1 -1010001110100 husband-to-be 1 -1010001110100 32/200 2 -1010001110100 Lure 2 -1010001110100 15-year-veteran 2 -1010001110100 1,101 2 -1010001110100 20/1 2 -1010001110100 browbeating 2 -1010001110100 streetfighter 2 -1010001110100 number-cruncher 2 -1010001110100 Shabba-Haft 2 -1010001110100 rechecking 2 -1010001110100 extensiveness 2 -1010001110100 Natatorium 2 -1010001110100 seismologist 2 -1010001110100 most-often 2 -1010001110100 posturings 3 -1010001110100 avatars 3 -1010001110100 retablo 3 -1010001110100 Lisboa 3 -1010001110100 Skynyrd 3 -1010001110100 minion 3 -1010001110100 cyclorama 3 -1010001110100 firebombings 3 -1010001110100 litigiousness 3 -1010001110100 Kidspac 3 -1010001110100 Chippewas 5 -1010001110100 PA-28 5 -1010001110100 tracker 5 -1010001110100 REPORT 5 -1010001110100 monograph 8 -1010001110100 temblor 9 -1010001110100 crunchers 10 -1010001110100 self-portrait 17 -1010001110100 diagram 17 -1010001110100 graph 33 -1010001110100 chart 340 -1010001110100 poll 1313 -1010001110100 study 6950 -1010001110100 survey 3636 -1010001110101 less-enlightened 1 -1010001110101 L-100-30s 1 -1010001110101 16,072,000 1 -1010001110101 knob-turning 1 -1010001110101 MILE 1 -1010001110101 Nedelya 1 -1010001110101 trend-attracting 1 -1010001110101 quasi-safety 1 -1010001110101 167,107 1 -1010001110101 inundation 1 -1010001110101 balance-of-accounts 1 -1010001110101 pileups 1 -1010001110101 festivalmaking 1 -1010001110101 caffeinated 1 -1010001110101 183.85 2 -1010001110101 Elghanayans 2 -1010001110101 exciter 2 -1010001110101 undercard 2 -1010001110101 ILIB 2 -1010001110101 Sise 3 -1010001110101 nose-dive 4 -1010001110101 DIFFERENCE 5 -1010001110101 stricture 5 -1010001110101 report 18214 -1010001110101 Duper 9 -1010001110110 Mazdectomy 1 -1010001110110 alliance-builders 1 -1010001110110 gonadotrophin 1 -1010001110110 ride. 1 -1010001110110 persuader 1 -1010001110110 mamas 1 -1010001110110 debt-swapping 1 -1010001110110 Microvax 1 -1010001110110 HP-22s 1 -1010001110110 Indextron 1 -1010001110110 venturer 1 -1010001110110 moneywise 1 -1010001110110 13-passenger 1 -1010001110110 318is 2 -1010001110110 Lynching 2 -1010001110110 3S/200 2 -1010001110110 uncrating 2 -1010001110110 Yad 2 -1010001110110 Saddams 2 -1010001110110 abutment 2 -1010001110110 Warner-Amex 2 -1010001110110 wonderfulness 3 -1010001110110 Bonn-Roettgen 3 -1010001110110 timelessness 3 -1010001110110 USGA 3 -1010001110110 Equalens 3 -1010001110110 reversions 3 -1010001110110 Herald-Press 3 -1010001110110 antecedent 3 -1010001110110 Progressives 5 -1010001110110 Arhat 5 -1010001110110 Pioneers 7 -1010001110110 armadillo 7 -1010001110110 cooker 12 -1010001110110 tranche 28 -1010001110110 exhibit 307 -1010001110110 indicator 700 -1010001110110 issue 17426 -1010001110110 award 1254 -10100011101110 Euratom 1 -10100011101110 derogatorily 1 -10100011101110 rhapsodists 1 -10100011101110 ROLLING 1 -10100011101110 four-parter 1 -10100011101110 presupposition 1 -10100011101110 tighening 1 -10100011101110 tuna-head 1 -10100011101110 say-because 1 -10100011101110 jobholder 1 -10100011101110 retentions 1 -10100011101110 inimitability 1 -10100011101110 commission-producers 1 -10100011101110 Brutality 2 -10100011101110 nihilists 2 -10100011101110 mongers 2 -10100011101110 old-old 2 -10100011101110 deliverability 2 -10100011101110 scholar-critic 3 -10100011101110 tally 210 -10100011101110 advocate 501 -10100011101110 projection 521 -10100011101110 forecast 2599 -10100011101110 estimate 4174 -10100011101110 figure 4390 -10100011101111 house-burnings 1 -10100011101111 4.5-day 1 -10100011101111 Confederateland 1 -10100011101111 work-easies 1 -10100011101111 self-propulsion 1 -10100011101111 372,155 1 -10100011101111 time-of-game 1 -10100011101111 4-to-6-foot-tall 1 -10100011101111 counterdemonstrations 1 -10100011101111 Spiegelman/Mouly 1 -10100011101111 moneyeaters 1 -10100011101111 mega-theater 1 -10100011101111 artsiness 1 -10100011101111 lameness 1 -10100011101111 Christianism 1 -10100011101111 repulsiveness 1 -10100011101111 wimpmobiles 1 -10100011101111 babyhoods 1 -10100011101111 tax-frees 1 -10100011101111 infantilism 1 -10100011101111 yodeler 1 -10100011101111 Aziscohos 1 -10100011101111 war-by-biology 1 -10100011101111 woodblocks 1 -10100011101111 rhetoric-making 1 -10100011101111 sanatoriums 1 -10100011101111 faxers 1 -10100011101111 hyperspeed 1 -10100011101111 emendations 1 -10100011101111 dihydrostesterone 1 -10100011101111 bootlaces 1 -10100011101111 Ster 1 -10100011101111 near-anonymity 1 -10100011101111 federal-assistance 1 -10100011101111 tonsillitis 1 -10100011101111 stablemate 1 -10100011101111 forestation 1 -10100011101111 ludicrousness 1 -10100011101111 academese 1 -10100011101111 blank-verse 1 -10100011101111 CMPA 1 -10100011101111 unidentifiability 1 -10100011101111 ungloved 1 -10100011101111 low-input 1 -10100011101111 four-sevenths 1 -10100011101111 piecrust 1 -10100011101111 bookmarks 1 -10100011101111 policy-holders 1 -10100011101111 farmworker-amnesty 1 -10100011101111 outspokeness 1 -10100011101111 existence. 1 -10100011101111 vichyssoise 1 -10100011101111 subdisciplines 1 -10100011101111 273,926 1 -10100011101111 petards 1 -10100011101111 Copec 1 -10100011101111 transition-team 1 -10100011101111 42-cent-a-share 1 -10100011101111 stimulater 1 -10100011101111 archfoes 1 -10100011101111 cross-subsidized 1 -10100011101111 strong-mindedness 1 -10100011101111 pharmeceuticals 1 -10100011101111 market-timers 1 -10100011101111 aqueducts 1 -10100011101111 no-pays 1 -10100011101111 charcoal-lined 1 -10100011101111 special-enforcement 1 -10100011101111 mini-pickup 1 -10100011101111 324,403 1 -10100011101111 Eurotab 1 -10100011101111 churlishness 1 -10100011101111 Hayleyolatry 1 -10100011101111 momemtum 1 -10100011101111 Varadero 1 -10100011101111 Schubertiades 1 -10100011101111 one-hander 1 -10100011101111 fiats 1 -10100011101111 business/environmental 1 -10100011101111 al-Amarah 1 -10100011101111 quasi-welfare 1 -10100011101111 Stammtisch 1 -10100011101111 Excelled 1 -10100011101111 ill-advisedly 1 -10100011101111 glass-beaded 1 -10100011101111 deadheading 1 -10100011101111 levelheadedness 1 -10100011101111 fancy-dress 1 -10100011101111 deceptiveness 1 -10100011101111 Compustat 1 -10100011101111 sports. 1 -10100011101111 Dragados 1 -10100011101111 rapiers 1 -10100011101111 VWs 1 -10100011101111 Tirana 1 -10100011101111 jeepneys 1 -10100011101111 Japanese. 1 -10100011101111 mini-mafia 1 -10100011101111 Bandaranaike 1 -10100011101111 Equipement 1 -10100011101111 benefit. 1 -10100011101111 secularist 1 -10100011101111 countrywomen 1 -10100011101111 spaceworthy 1 -10100011101111 ethylenethiourea 2 -10100011101111 acccount 2 -10100011101111 wigwams 2 -10100011101111 Andromaca 2 -10100011101111 cultivars 2 -10100011101111 ex- 2 -10100011101111 undulations 2 -10100011101111 lapdogs 2 -10100011101111 periscope 2 -10100011101111 cash-benefits 2 -10100011101111 tang 2 -10100011101111 environmental-law 2 -10100011101111 Milesburg 2 -10100011101111 sleepiness 2 -10100011101111 line. 2 -10100011101111 corto-plazismo 2 -10100011101111 frankfurters 2 -10100011101111 quarter-more 2 -10100011101111 breakouts 3 -10100011101111 fief 3 -10100011101111 plowshares 3 -10100011101111 storehouses 3 -10100011101111 airbill 3 -10100011101111 bunkhouse 3 -10100011101111 unsuitability 3 -10100011101111 vocoders 3 -10100011101111 IIci 3 -10100011101111 arbor 3 -10100011101111 unmarketable 4 -10100011101111 P-3s 4 -10100011101111 rowdiness 5 -10100011101111 orthodontist 5 -10100011101111 insignificance 5 -10100011101111 petard 7 -10100011101111 volition 10 -10100011101111 increment 17 -10100011101111 recognizance 26 -10100011101111 overflow 51 -10100011101111 accrual 52 -10100011101111 allowance 264 -10100011101111 exit 375 -10100011101111 exemption 556 -10100011101111 account 6041 -10100011101111 adjustment 1223 -101000111100 22.22 1 -101000111100 tele-ectorate 1 -101000111100 offeree 1 -101000111100 sinisterly 1 -101000111100 reflectiveness 1 -101000111100 patent-protection 1 -101000111100 481-berth 1 -101000111100 chart-- 1 -101000111100 parka 2 -101000111100 Neckar 2 -101000111100 2155 2 -101000111100 illustration-- 2 -101000111100 immolation 2 -101000111100 ecomony 2 -101000111100 DV-1 4 -101000111100 mercies 9 -101000111100 offer 25523 -101000111100 overture 131 -101000111101 chronoflower 1 -101000111101 question. 1 -101000111101 game-player 1 -101000111101 woman-friend 1 -101000111101 phonebooks 1 -101000111101 miniscandal 1 -101000111101 leveraged-buyouts 1 -101000111101 channel. 1 -101000111101 workers-1,400 1 -101000111101 pugilism 1 -101000111101 quant 1 -101000111101 McOutfit 1 -101000111101 supersedence 1 -101000111101 anually 1 -101000111101 584-4500 1 -101000111101 cross-petition 1 -101000111101 Mexicanism 1 -101000111101 DOS/16M 1 -101000111101 vitamin-wise 1 -101000111101 930-0855 1 -101000111101 Urbain 2 -101000111101 vapidity 2 -101000111101 nodule 2 -101000111101 sparkplug 2 -101000111101 -level 2 -101000111101 genders 2 -101000111101 then- 2 -101000111101 quitter 3 -101000111101 subleases 3 -101000111101 chambermaid 3 -101000111101 disassociation 3 -101000111101 decline. 3 -101000111101 basis. 3 -101000111101 paunch 4 -101000111101 offerer 7 -101000111101 cue 101 -101000111101 suitor 889 -101000111101 bid 16345 -101000111101 bidder 976 -1010001111100 grittiness 1 -1010001111100 merrymaker 1 -1010001111100 inseparably 1 -1010001111100 thinktank 1 -1010001111100 double-needle 1 -1010001111100 checkbut 1 -1010001111100 tear-jerker 1 -1010001111100 flowerdecked 1 -1010001111100 non-relative 1 -1010001111100 scare-letter 1 -1010001111100 four-set 1 -1010001111100 sticking-point 1 -1010001111100 supersyndicate 1 -1010001111100 countermotion 1 -1010001111100 university-like 1 -1010001111100 12-footer 1 -1010001111100 next-to-nothing 1 -1010001111100 cellmate 1 -1010001111100 higher-than-level 1 -1010001111100 expiraton 1 -1010001111100 late-late-late 1 -1010001111100 tax-reductions 1 -1010001111100 counterposter 1 -1010001111100 trencherman 1 -1010001111100 subtype 1 -1010001111100 lion-fish 1 -1010001111100 canoeist 1 -1010001111100 sometimes-rock 1 -1010001111100 soldier-informant 1 -1010001111100 careeningly 1 -1010001111100 septet 1 -1010001111100 more-comfortable 1 -1010001111100 insp. 1 -1010001111100 rail-highway 1 -1010001111100 submissiveness 1 -1010001111100 220-page 1 -1010001111100 counterdemonstrator 1 -1010001111100 10-question 1 -1010001111100 lozenge 1 -1010001111100 mega-manager 1 -1010001111100 10-for-26 1 -1010001111100 Jeremiad 1 -1010001111100 locution 1 -1010001111100 tassel 1 -1010001111100 dormitory-like 1 -1010001111100 recesson 1 -1010001111100 hardnose 1 -1010001111100 less-structured 1 -1010001111100 12-rounder 1 -1010001111100 thunderhead 1 -1010001111100 quasi-belief 1 -1010001111100 resume-enhancing 1 -1010001111100 carnival-type 1 -1010001111100 more-level 1 -1010001111100 glissando 2 -1010001111100 semanticist 2 -1010001111100 streamer 2 -1010001111100 communqiue 2 -1010001111100 Winterset 2 -1010001111100 teabag 2 -1010001111100 footpath 2 -1010001111100 lisp 2 -1010001111100 kip 2 -1010001111100 stagehand 2 -1010001111100 muskrats 2 -1010001111100 spyglass 2 -1010001111100 lander 2 -1010001111100 near-crawl 2 -1010001111100 stepladder 2 -1010001111100 coolie 2 -1010001111100 near-agreement 2 -1010001111100 windowpane 2 -1010001111100 beaker 3 -1010001111100 punctiliousness 3 -1010001111100 Eurocrat 3 -1010001111100 10-footer 3 -1010001111100 stasher 3 -1010001111100 well-planned 3 -1010001111100 brazier 3 -1010001111100 fact-finder 3 -1010001111100 sweet-faced 3 -1010001111100 miniconglomerate 3 -1010001111100 knucklehead 3 -1010001111100 doubleheader 3 -1010001111100 countercomplaint 3 -1010001111100 workup 3 -1010001111100 neuropsychologist 3 -1010001111100 straightjacket 3 -1010001111100 Japan-basher 3 -1010001111100 preschooler 4 -1010001111100 two-iron 4 -1010001111100 piccolo 4 -1010001111100 DC-6 4 -1010001111100 forint 4 -1010001111100 reminiscence 4 -1010001111100 baseliner 4 -1010001111100 statment 5 -1010001111100 Mailgram 5 -1010001111100 mini-rally 5 -1010001111100 summation 5 -1010001111100 bathrobe 5 -1010001111100 pinata 5 -1010001111100 roadshow 5 -1010001111100 scythe 5 -1010001111100 feint 5 -1010001111100 epistle 6 -1010001111100 car. 6 -1010001111100 tux 6 -1010001111100 minnow 6 -1010001111100 missive 7 -1010001111100 valedictory 7 -1010001111100 mailgram 7 -1010001111100 crowbar 7 -1010001111100 barb 7 -1010001111100 jaunt 7 -1010001111100 counter-offer 8 -1010001111100 masterwork 8 -1010001111100 tongue-lashing 8 -1010001111100 tinderbox 9 -1010001111100 tip-off 9 -1010001111100 telethon 9 -1010001111100 countermove 10 -1010001111100 yo-yo 10 -1010001111100 syringe 10 -1010001111100 lather 11 -1010001111100 leaflet 11 -1010001111100 preamble 11 -1010001111100 facelift 11 -1010001111100 placard 11 -1010001111100 weatherman 13 -1010001111100 postscript 14 -1010001111100 midwife 15 -1010001111100 biopsy 16 -1010001111100 foreword 17 -1010001111100 chateau 18 -1010001111100 bodyguard 20 -1010001111100 handout 20 -1010001111100 shortcut 21 -1010001111100 worksheet 21 -1010001111100 demotion 23 -1010001111100 counterproposal 24 -1010001111100 pittance 25 -1010001111100 sabbatical 26 -1010001111100 motorcade 27 -1010001111100 corollary 28 -1010001111100 quorum 34 -1010001111100 formality 41 -1010001111100 pamphlet 43 -1010001111100 microscope 43 -1010001111100 stipulation 43 -1010001111100 sermon 45 -1010001111100 counterbid 47 -1010001111100 counteroffer 55 -1010001111100 reprieve 55 -1010001111100 telegram 58 -1010001111100 pilgrimage 58 -1010001111100 curfew 77 -1010001111100 sequel 98 -1010001111100 footnote 113 -1010001111100 circular 126 -1010001111100 deposition 181 -1010001111100 ceremony 220 -1010001111100 communique 260 -1010001111100 memorandum 296 -1010001111100 declaration 298 -1010001111100 presentation 420 -1010001111100 memo 977 -1010001111100 successor 1336 -1010001111100 trip 1368 -1010001111100 speech 2546 -1010001111100 pound 2946 -1010001111100 letter 6014 -1010001111100 statement 6530 -1010001111101 least-controversial 1 -1010001111101 pick-pocket-tax 1 -1010001111101 mismangement 1 -1010001111101 re-indictment 1 -1010001111101 three-town 1 -1010001111101 FLOOD 1 -1010001111101 70,000-seat 1 -1010001111101 leitmotifs 1 -1010001111101 736,788 1 -1010001111101 margin-cutting 1 -1010001111101 late-show 1 -1010001111101 Boorish 1 -1010001111101 Doubletalk 1 -1010001111101 oil-workers 1 -1010001111101 moonshiner 1 -1010001111101 noselessness 1 -1010001111101 ostentatiousness 1 -1010001111101 Pedrillo 1 -1010001111101 Action-Touch 1 -1010001111101 jacket-copy 1 -1010001111101 23-minute 1 -1010001111101 once-monolithic 1 -1010001111101 treacle 1 -1010001111101 660,000-member 1 -1010001111101 second-highest-rated 1 -1010001111101 college-hoop 1 -1010001111101 randier 1 -1010001111101 ProMavica 1 -1010001111101 roundtrippers 1 -1010001111101 non-discounter 1 -1010001111101 methylepijasmonate 1 -1010001111101 pollster-in-chief 1 -1010001111101 doo 1 -1010001111101 reform-driven 1 -1010001111101 photo-safari 1 -1010001111101 towrope 1 -1010001111101 easygoingness 1 -1010001111101 l-a-t-e-s-t 1 -1010001111101 critic-bashing 1 -1010001111101 T-Factor 1 -1010001111101 maintenance-of-way 1 -1010001111101 SwedBank 1 -1010001111101 40-inch 1 -1010001111101 sightseer 1 -1010001111101 leadenness 1 -1010001111101 coppers 1 -1010001111101 truant 1 -1010001111101 daughters-in-law 1 -1010001111101 indestructibility 1 -1010001111101 upcut 1 -1010001111101 bid-information 1 -1010001111101 schlockiness 1 -1010001111101 non-amnesty 1 -1010001111101 Peerscope 1 -1010001111101 climbable 1 -1010001111101 metaphor-of-choice 1 -1010001111101 taffeta-weaving 1 -1010001111101 expection 1 -1010001111101 hyperzeal 1 -1010001111101 pop-musical 1 -1010001111101 ServiceXtra 1 -1010001111101 Batallion 1 -1010001111101 pro-Washington 1 -1010001111101 more-hawkish 1 -1010001111101 Moscow-line 1 -1010001111101 weapon-of-choice 1 -1010001111101 telecommunicationsindustry 1 -1010001111101 little-heard 1 -1010001111101 Provenzanos 2 -1010001111101 Sun-Sentinel 2 -1010001111101 uttermost 2 -1010001111101 Congregationalist 2 -1010001111101 FCB/Telecom 2 -1010001111101 chorea 2 -1010001111101 Pacifics 2 -1010001111101 Panhellenic 2 -1010001111101 Holiness 2 -1010001111101 Haight-Ashbury 2 -1010001111101 adorability 2 -1010001111101 wobbliness 2 -1010001111101 Ramboys 2 -1010001111101 ath 2 -1010001111101 logotype 2 -1010001111101 very-much-in-power 2 -1010001111101 minicoup 2 -1010001111101 curia 2 -1010001111101 near-default 2 -1010001111101 Levines 2 -1010001111101 trigonometry 2 -1010001111101 Moscow-oriented 2 -1010001111101 anointment 2 -1010001111101 brusqueness 3 -1010001111101 thumbprint 3 -1010001111101 Wehrmacht 3 -1010001111101 Lorton 3 -1010001111101 el-Barajneh 3 -1010001111101 XA 3 -1010001111101 NEP 3 -1010001111101 reclusiveness 3 -1010001111101 Steppenwolves 3 -1010001111101 stenographer 4 -1010001111101 designee 4 -1010001111101 decison 5 -1010001111101 listlessness 5 -1010001111101 Notebook 5 -1010001111101 readmission 5 -1010001111101 acquittals 5 -1010001111101 reemergence 6 -1010001111101 Iago 7 -1010001111101 Sarcoma 8 -1010001111101 coming-out 8 -1010001111101 Apra 8 -1010001111101 schoolroom 8 -1010001111101 stock-in-trade 9 -1010001111101 accession 11 -1010001111101 ascension 20 -1010001111101 edict 22 -1010001111101 Klux 25 -1010001111101 pronouncement 30 -1010001111101 proclamation 32 -1010001111101 arraignment 40 -1010001111101 finale 51 -1010001111101 downfall 93 -1010001111101 Panel 126 -1010001111101 insistence 256 -1010001111101 assertion 322 -1010001111101 recommendation 1076 -1010001111101 appointment 1150 -1010001111101 departure 1345 -1010001111101 resignation 1438 -1010001111101 decision 10690 -1010001111101 ruling 5195 -1010001111101 announcement 4421 -10100011111100 Averted 1 -10100011111100 ROI 1 -10100011111100 cobweb 1 -10100011111100 87-82 1 -10100011111100 hrugouttheU 1 -10100011111100 starburst 1 -10100011111100 levelization 1 -10100011111100 relationhip 1 -10100011111100 Marrack 1 -10100011111100 Port-O-Potty 2 -10100011111100 gloominess 2 -10100011111100 whooshing 2 -10100011111100 subcategory 2 -10100011111100 cam 4 -10100011111100 preventer 4 -10100011111100 prudery 4 -10100011111100 infringers 4 -10100011111100 OTN 5 -10100011111100 bandage 11 -10100011111100 psychosis 13 -10100011111100 foul-up 14 -10100011111100 proviso 17 -10100011111100 monopole 26 -10100011111100 guideline 43 -10100011111100 sequester 46 -10100011111100 booklet 63 -10100011111100 covenant 77 -10100011111100 directive 216 -10100011111100 loophole 242 -10100011111100 restriction 245 -10100011111100 defect 323 -10100011111100 waiver 336 -10100011111100 clause 445 -10100011111100 compound 450 -10100011111100 sum 677 -10100011111100 document 1154 -10100011111100 requirement 1214 -10100011111100 resolution 1387 -10100011111100 package 3349 -10100011111100 provision 3438 -10100011111100 measure 4995 -10100011111100 rule 4356 -10100011111101 miscode 1 -10100011111101 provisons 1 -10100011111101 manufacturing-doomsayers 1 -10100011111101 clay-lime 1 -10100011111101 money-multiplier 1 -10100011111101 JJIRA 1 -10100011111101 Nevadan 1 -10100011111101 ex-chancellor 1 -10100011111101 DWUs 1 -10100011111101 DWU 1 -10100011111101 pay-off 1 -10100011111101 sunbather 1 -10100011111101 education-campaign 1 -10100011111101 H-pattern 1 -10100011111101 rhinally 1 -10100011111101 Creche 1 -10100011111101 Procter-speaker 1 -10100011111101 7-foot-2er 1 -10100011111101 supervotes 1 -10100011111101 doorkeepers 1 -10100011111101 uptakes 1 -10100011111101 al-Khayils 1 -10100011111101 Hanninens 1 -10100011111101 costs-of-golfing 1 -10100011111101 heat-up 1 -10100011111101 recommentations 1 -10100011111101 headhunt 1 -10100011111101 hold-downs 1 -10100011111101 Goldenrod 1 -10100011111101 more-rapidly 1 -10100011111101 Hightowers 1 -10100011111101 bills-measures 1 -10100011111101 snake-tube 1 -10100011111101 all-time-high 1 -10100011111101 questionbut 1 -10100011111101 988,000-unit 1 -10100011111101 result-orientation 2 -10100011111101 Cray-4 2 -10100011111101 deluges 2 -10100011111101 drug-runner 2 -10100011111101 veep 2 -10100011111101 limiter 2 -10100011111101 peony 2 -10100011111101 UAVs 2 -10100011111101 typescript 2 -10100011111101 tete-a-tete 3 -10100011111101 Bernadotte 3 -10100011111101 avoiders 3 -10100011111101 Strad 3 -10100011111101 sump 4 -10100011111101 bill 11118 -10100011111101 Hotel-Casino 7 -10100011111110 non-ownership 1 -10100011111110 violation. 1 -10100011111110 miniconstitution 1 -10100011111110 virus-1 1 -10100011111110 negotiaions 1 -10100011111110 defict 2 -10100011111110 leer 2 -10100011111110 check-up 2 -10100011111110 sterilizers 2 -10100011111110 accounts. 3 -10100011111110 feeler 3 -10100011111110 cordoba 3 -10100011111110 Paele 3 -10100011111110 plans. 3 -10100011111110 plan 22781 -10100011111110 Merwe 7 -10100011111111 jail-cell 1 -10100011111111 19,621 1 -10100011111111 Vanillamark 1 -10100011111111 competitveness 1 -10100011111111 decreee 1 -10100011111111 rubout 2 -10100011111111 C-note 2 -10100011111111 sitting-room 2 -10100011111111 cops-and-robbers 2 -10100011111111 Nap 2 -10100011111111 pantleg 2 -10100011111111 Dubliner 2 -10100011111111 pre-operative 2 -10100011111111 undershipments 2 -10100011111111 co-option 2 -10100011111111 standard-setter 2 -10100011111111 endgame 3 -10100011111111 monoclonals 3 -10100011111111 piker 3 -10100011111111 counter-proposal 3 -10100011111111 union-busters 3 -10100011111111 stretcher 3 -10100011111111 decatherm 3 -10100011111111 forester 4 -10100011111111 ambassador-at-large 4 -10100011111111 madonna 4 -10100011111111 kilt 4 -10100011111111 flareup 5 -10100011111111 squeaker 5 -10100011111111 novella 6 -10100011111111 jackhammer 6 -10100011111111 clothier 7 -10100011111111 cyst 7 -10100011111111 manhunt 7 -10100011111111 houseboat 8 -10100011111111 Biennial 9 -10100011111111 inquisitors 11 -10100011111111 byword 12 -10100011111111 synonym 14 -10100011111111 swan 21 -10100011111111 prank 21 -10100011111111 proclivity 23 -10100011111111 handbook 39 -10100011111111 euphemism 40 -10100011111111 manifesto 44 -10100011111111 screenplay 50 -10100011111111 go-ahead 62 -10100011111111 citation 64 -10100011111111 knack 93 -10100011111111 mania 93 -10100011111111 blueprint 139 -10100011111111 recipe 148 -10100011111111 catalyst 207 -10100011111111 quest 258 -10100011111111 pleas 268 -10100011111111 timetable 361 -10100011111111 decree 433 -10100011111111 prospectus 495 -10100011111111 plea 649 -10100011111111 petition 731 -10100011111111 motion 1186 -10100011111111 deadline 1458 -10100011111111 proposal 10610 -10100011111111 request 3469 -10100100000 fezlike 1 -10100100000 anti-Gadhafi 1 -10100100000 second-row 1 -10100100000 bloodcell 1 -10100100000 chart-following 1 -10100100000 drilling-supply 1 -10100100000 176-90 1 -10100100000 rabbit-fur 1 -10100100000 pistol-grip 1 -10100100000 life-tenured 1 -10100100000 one-inning 1 -10100100000 tertile 2 -10100100000 216-208 2 -10100100000 crackpopulist 2 -10100100000 coal-miners 2 -10100100000 employee-consultant 2 -10100100000 fat-man 2 -10100100000 sing-song 2 -10100100000 T-34 2 -10100100000 26-25 2 -10100100000 413-3 2 -10100100000 food-processor 2 -10100100000 klutz 2 -10100100000 EDSer 2 -10100100000 322-90 2 -10100100000 crankcase 2 -10100100000 forkball 2 -10100100000 second-circulation 2 -10100100000 alabaster 3 -10100100000 agitprop 3 -10100100000 chain-of-command 3 -10100100000 seatbelt 3 -10100100000 pillbox 3 -10100100000 monocle 3 -10100100000 statuette 3 -10100100000 sloop 3 -10100100000 stutter 3 -10100100000 outcrop 3 -10100100000 union-buster 3 -10100100000 multiballot 3 -10100100000 stock-picker 3 -10100100000 narco 3 -10100100000 estancia 3 -10100100000 407-17 3 -10100100000 Pekingese 3 -10100100000 thunderbolt 4 -10100100000 sulk 4 -10100100000 showoff 4 -10100100000 dishwater 4 -10100100000 headset 4 -10100100000 draftee 4 -10100100000 maximalist 4 -10100100000 poacher 4 -10100100000 sweetie 4 -10100100000 pinup 4 -10100100000 hypochondriac 4 -10100100000 tabby 4 -10100100000 gunfighter 4 -10100100000 kachina 4 -10100100000 Lamaze 4 -10100100000 panflute 4 -10100100000 handlebar 4 -10100100000 metronome 4 -10100100000 underpants 4 -10100100000 vestments 4 -10100100000 cortege 4 -10100100000 larynx 4 -10100100000 backhoe 4 -10100100000 chintz 4 -10100100000 girdle 4 -10100100000 RN 4 -10100100000 followership 4 -10100100000 tap-tap 4 -10100100000 halter 4 -10100100000 layette 4 -10100100000 caver 5 -10100100000 Plattsburgh 5 -10100100000 washboard 5 -10100100000 five-iron 5 -10100100000 rhino 5 -10100100000 godmother 5 -10100100000 bookie 5 -10100100000 hazing 5 -10100100000 17-0 5 -10100100000 retrovirus 5 -10100100000 hovel 5 -10100100000 disconsolate 5 -10100100000 lawyer-bashing 5 -10100100000 paratrooper 5 -10100100000 six-story 5 -10100100000 Azucena 5 -10100100000 boardinghouse 5 -10100100000 boar 5 -10100100000 Hegelian 5 -10100100000 bead 5 -10100100000 laundromat 6 -10100100000 reawakening 6 -10100100000 mastectomy 6 -10100100000 banjo 6 -10100100000 croissant 6 -10100100000 sombrero 6 -10100100000 juggler 6 -10100100000 windup 6 -10100100000 smock 6 -10100100000 roundhouse 6 -10100100000 newspeak 6 -10100100000 highchair 6 -10100100000 ranch-style 6 -10100100000 paintbrush 6 -10100100000 raincoat 7 -10100100000 sell-out 7 -10100100000 weirdo 7 -10100100000 samba 7 -10100100000 tricycle 7 -10100100000 shakedown 7 -10100100000 shashlik 7 -10100100000 disconnection 7 -10100100000 monohull 7 -10100100000 shaker 7 -10100100000 cream-colored 7 -10100100000 hurdler 7 -10100100000 coyote 7 -10100100000 machete 7 -10100100000 jersey 7 -10100100000 footprint 7 -10100100000 megalomaniac 7 -10100100000 dolphin 7 -10100100000 dune 7 -10100100000 tripod 7 -10100100000 rudder 7 -10100100000 pueblo 7 -10100100000 gopher 7 -10100100000 Toon 7 -10100100000 hula 8 -10100100000 trampoline 8 -10100100000 striptease 8 -10100100000 spotter 8 -10100100000 kite 8 -10100100000 mite 8 -10100100000 spreader 8 -10100100000 steamer 8 -10100100000 7-0 8 -10100100000 kiosk 8 -10100100000 caterpillar 8 -10100100000 Synchro-Energizer 8 -10100100000 Doberman 8 -10100100000 horseshoe 8 -10100100000 soapbox 8 -10100100000 wonderland 8 -10100100000 brio 8 -10100100000 tram 8 -10100100000 bastard 8 -10100100000 job. 8 -10100100000 five-bedroom 8 -10100100000 bel 8 -10100100000 talker 8 -10100100000 hotshot 8 -10100100000 dinghy 8 -10100100000 comet 8 -10100100000 sheepskin 9 -10100100000 mammal 9 -10100100000 zombie 9 -10100100000 chopper 9 -10100100000 thumbnail 9 -10100100000 strangeness 9 -10100100000 chainsaw 9 -10100100000 limo 9 -10100100000 blacktop 9 -10100100000 survivalist 9 -10100100000 puddle 9 -10100100000 swinger 9 -10100100000 manhole 9 -10100100000 steamboat 9 -10100100000 Megabucks 9 -10100100000 Busier-Than-Thou 9 -10100100000 turtleneck 9 -10100100000 no-show 9 -10100100000 stopwatch 9 -10100100000 percentile 9 -10100100000 echelon 9 -10100100000 mallet 9 -10100100000 railbike 9 -10100100000 ark 9 -10100100000 duplex 9 -10100100000 half-time 10 -10100100000 bargainer 10 -10100100000 counterparty 10 -10100100000 garret 10 -10100100000 gong 10 -10100100000 play-by-play 10 -10100100000 beaver 10 -10100100000 merry-go-round 10 -10100100000 chick 10 -10100100000 headband 10 -10100100000 sauna 10 -10100100000 grasshopper 10 -10100100000 cheeseburger 10 -10100100000 wheelbarrow 10 -10100100000 walkie-talkie 10 -10100100000 climate-controlled 11 -10100100000 postcard 11 -10100100000 turban 11 -10100100000 fender 11 -10100100000 harpsichord 11 -10100100000 thermos 11 -10100100000 shrieking 11 -10100100000 ronin 11 -10100100000 sluice 11 -10100100000 skylight 11 -10100100000 hysterectomy 11 -10100100000 snout 11 -10100100000 falsehood 11 -10100100000 baboon 11 -10100100000 saucer 11 -10100100000 rulebook 11 -10100100000 scorecard 11 -10100100000 slob 11 -10100100000 kitty 12 -10100100000 quivering 12 -10100100000 boilerplate 12 -10100100000 preppie 12 -10100100000 blender 12 -10100100000 shingle 12 -10100100000 poodle 12 -10100100000 showpiece 12 -10100100000 rotunda 12 -10100100000 monotone 12 -10100100000 byline 12 -10100100000 Stradivarius 12 -10100100000 price-slashing 12 -10100100000 gatekeeper 12 -10100100000 dresser 12 -10100100000 Yank 12 -10100100000 debater 13 -10100100000 canteen 13 -10100100000 martini 13 -10100100000 pedestal 13 -10100100000 womanizer 13 -10100100000 UFO 13 -10100100000 palatial 13 -10100100000 brothel 13 -10100100000 wetland 13 -10100100000 silhouette 14 -10100100000 surfboard 14 -10100100000 boomer 14 -10100100000 skunk 14 -10100100000 heptathlon 14 -10100100000 sax 14 -10100100000 coronation 14 -10100100000 bookshelf 14 -10100100000 twitch 14 -10100100000 bubbly 14 -10100100000 blocker 14 -10100100000 flashback 14 -10100100000 kettle 14 -10100100000 hideaway 15 -10100100000 respirator 15 -10100100000 keg 15 -10100100000 by-election 15 -10100100000 diva 15 -10100100000 cockroach 15 -10100100000 getaway 15 -10100100000 SuperBar 15 -10100100000 valet 15 -10100100000 dung 15 -10100100000 waltz 16 -10100100000 funk 16 -10100100000 napkin 16 -10100100000 wand 16 -10100100000 hymn 16 -10100100000 jukebox 16 -10100100000 playpen 16 -10100100000 daredevil 16 -10100100000 hippie 16 -10100100000 chestnut 17 -10100100000 backpack 17 -10100100000 bulldozer 17 -10100100000 torso 17 -10100100000 brat 17 -10100100000 luge 17 -10100100000 necklace 17 -10100100000 sandstone 17 -10100100000 saxophone 17 -10100100000 checkers 18 -10100100000 mini 18 -10100100000 hairdo 18 -10100100000 homestead 18 -10100100000 revolver 18 -10100100000 junkyard 18 -10100100000 cookbook 18 -10100100000 scalpel 19 -10100100000 watercolor 19 -10100100000 canoe 19 -10100100000 ventilator 19 -10100100000 manor 19 -10100100000 chimp 19 -10100100000 sinner 19 -10100100000 forehand 20 -10100100000 washer 20 -10100100000 jock 20 -10100100000 goldfish 20 -10100100000 synthesizer 20 -10100100000 bravura 20 -10100100000 fin 20 -10100100000 homecoming 20 -10100100000 pumpkin 20 -10100100000 lighthouse 20 -10100100000 rut 21 -10100100000 sweatshirt 21 -10100100000 blouse 21 -10100100000 crap 21 -10100100000 watermelon 21 -10100100000 backhand 21 -10100100000 crucifix 21 -10100100000 crib 21 -10100100000 wristwatch 21 -10100100000 necktie 21 -10100100000 finisher 21 -10100100000 schoolboy 21 -10100100000 jab 22 -10100100000 beeper 22 -10100100000 lapel 22 -10100100000 birdie 22 -10100100000 ankles 22 -10100100000 pillow 22 -10100100000 lunatic 22 -10100100000 bra 22 -10100100000 tryout 23 -10100100000 pedigree 23 -10100100000 gymnasium 23 -10100100000 directorship 23 -10100100000 gondola 23 -10100100000 fellowship 24 -10100100000 Datsun 24 -10100100000 pothole 24 -10100100000 rip-off 24 -10100100000 gutter 25 -10100100000 voice-over 25 -10100100000 gangster 25 -10100100000 boondoggle 25 -10100100000 gorilla 25 -10100100000 password 25 -10100100000 bikini 25 -10100100000 hacker 26 -10100100000 carnival 26 -10100100000 racehorse 26 -10100100000 frog 26 -10100100000 canopy 26 -10100100000 flashlight 26 -10100100000 slippers 27 -10100100000 checklist 27 -10100100000 puppy 28 -10100100000 tombstone 28 -10100100000 sage 28 -10100100000 clarinet 28 -10100100000 checkbook 29 -10100100000 scalp 29 -10100100000 den 29 -10100100000 donkey 29 -10100100000 burnout 29 -10100100000 bedside 30 -10100100000 seminary 30 -10100100000 toaster 31 -10100100000 mustache 31 -10100100000 ledger 32 -10100100000 markdown 32 -10100100000 breadwinner 32 -10100100000 gavel 32 -10100100000 vigil 32 -10100100000 spine 32 -10100100000 runner-up 32 -10100100000 sled 32 -10100100000 screwdriver 33 -10100100000 god 33 -10100100000 knockout 33 -10100100000 kickoff 33 -10100100000 tuxedo 33 -10100100000 pocketbook 33 -10100100000 heartbeat 33 -10100100000 nap 34 -10100100000 candle 34 -10100100000 farmhouse 34 -10100100000 mailbox 34 -10100100000 tray 34 -10100100000 marker 34 -10100100000 noir 35 -10100100000 voltage 35 -10100100000 jingle 36 -10100100000 dragon 36 -10100100000 carriage 36 -10100100000 bunker 36 -10100100000 chauffeur 37 -10100100000 burglary 37 -10100100000 fireplace 38 -10100100000 boyhood 38 -10100100000 recital 38 -10100100000 wardrobe 38 -10100100000 graveyard 39 -10100100000 crocodile 40 -10100100000 notebook 40 -10100100000 siren 40 -10100100000 melody 41 -10100100000 dinosaur 41 -10100100000 jaw 42 -10100100000 suitcase 42 -10100100000 fortress 42 -10100100000 freezer 42 -10100100000 haircut 42 -10100100000 tub 43 -10100100000 lifestyle 43 -10100100000 sofa 43 -10100100000 pennant 44 -10100100000 fox 44 -10100100000 triangle 45 -10100100000 beta 45 -10100100000 fanatic 46 -10100100000 drawer 46 -10100100000 rainbow 46 -10100100000 sucker 46 -10100100000 boardroom 46 -10100100000 workday 46 -10100100000 bathtub 47 -10100100000 quarry 47 -10100100000 bounty 47 -10100100000 missionary 48 -10100100000 playground 48 -10100100000 trophy 50 -10100100000 psychic 50 -10100100000 starter 50 -10100100000 sweetheart 51 -10100100000 workforce 51 -10100100000 bluff 52 -10100100000 plum 52 -10100100000 calculator 52 -10100100000 hillside 53 -10100100000 vineyard 53 -10100100000 virtuoso 53 -10100100000 pyramid 54 -10100100000 cathedral 54 -10100100000 warrior 54 -10100100000 cage 54 -10100100000 curse 55 -10100100000 handshake 56 -10100100000 whale 56 -10100100000 workout 56 -10100100000 beard 56 -10100100000 coffin 57 -10100100000 sideline 58 -10100100000 destroyer 58 -10100100000 shotgun 59 -10100100000 rabbit 59 -10100100000 paycheck 59 -10100100000 gala 60 -10100100000 tan 60 -10100100000 limb 61 -10100100000 tomb 62 -10100100000 censure 63 -10100100000 helmet 63 -10100100000 lounge 63 -10100100000 tiger 65 -10100100000 styling 66 -10100100000 sanctuary 66 -10100100000 precinct 66 -10100100000 superstar 67 -10100100000 ballroom 67 -10100100000 wolf 68 -10100100000 diploma 68 -10100100000 picnic 69 -10100100000 pencil 70 -10100100000 horn 70 -10100100000 backyard 70 -10100100000 laggard 71 -10100100000 violin 72 -10100100000 fist 73 -10100100000 castle 73 -10100100000 steak 73 -10100100000 messenger 73 -10100100000 magnet 76 -10100100000 sensation 76 -10100100000 tooth 76 -10100100000 wrist 77 -10100100000 plateau 79 -10100100000 plaque 79 -10100100000 exterior 80 -10100100000 cigar 80 -10100100000 handwriting 81 -10100100000 wheelchair 82 -10100100000 briefcase 83 -10100100000 limousine 83 -10100100000 sword 83 -10100100000 self 86 -10100100000 workshop 88 -10100100000 snake 88 -10100100000 Ph.D. 90 -10100100000 pistol 90 -10100100000 novelty 92 -10100100000 rat 95 -10100100000 knee 96 -10100100000 rap 96 -10100100000 collar 98 -10100100000 gospel 100 -10100100000 guitar 104 -10100100000 passport 106 -10100100000 fraternity 106 -10100100000 cab 107 -10100100000 hobby 109 -10100100000 ghost 109 -10100100000 landslide 111 -10100100000 nuisance 117 -10100100000 diary 118 -10100100000 closet 122 -10100100000 tent 122 -10100100000 solo 123 -10100100000 marathon 124 -10100100000 narrative 127 -10100100000 cult 127 -10100100000 rifle 131 -10100100000 purse 137 -10100100000 yacht 141 -10100100000 monster 141 -10100100000 mob 142 -10100100000 bass 145 -10100100000 pen 150 -10100100000 mouse 155 -10100100000 straw 160 -10100100000 foe 164 -10100100000 legend 166 -10100100000 hybrid 168 -10100100000 bedroom 168 -10100100000 basement 183 -10100100000 coat 185 -10100100000 killer 186 -10100100000 ranch 193 -10100100000 companion 196 -10100100000 breath 197 -10100100000 homeland 201 -10100100000 flavor 205 -10100100000 wedding 206 -10100100000 cow 208 -10100100000 classroom 211 -10100100000 cat 211 -10100100000 finger 220 -10100100000 childhood 223 -10100100000 genius 226 -10100100000 performer 228 -10100100000 stroke 229 -10100100000 bird 231 -10100100000 fantasy 232 -10100100000 funeral 248 -10100100000 celebrity 257 -10100100000 piano 271 -10100100000 neck 288 -10100100000 hat 291 -10100100000 magic 297 -10100100000 chest 307 -10100100000 courtroom 307 -10100100000 guest 321 -10100100000 stone 336 -10100100000 birthday 342 -10100100000 chair 347 -10100100000 diet 358 -10100100000 tree 379 -10100100000 nose 380 -10100100000 kitchen 389 -10100100000 grade 396 -10100100000 niche 401 -10100100000 trademark 401 -10100100000 lifetime 417 -10100100000 fortune 441 -10100100000 personality 481 -10100100000 horse 493 -10100100000 hero 502 -10100100000 youth 544 -10100100000 gun 601 -10100100000 pit 615 -10100100000 talent 630 -10100100000 marriage 633 -10100100000 taste 675 -10100100000 dog 680 -10100100000 desk 757 -10100100000 star 867 -10100100000 background 875 -10100100000 baby 895 -10100100000 priority 930 -10100100000 character 1055 -10100100000 crime 1461 -10100100000 voice 1671 -10100100000 career 1779 -10100100000 floor 2450 -10100100000 population 2545 -10100100000 job 7975 -10100100000 house 3417 -10100100001 house-husband 1 -10100100001 mini-tulipomania 1 -10100100001 merchandise-return 1 -10100100001 Americanness 1 -10100100001 339,683 1 -10100100001 Musicae 1 -10100100001 tuggers 1 -10100100001 much-revised 1 -10100100001 plan/I 1 -10100100001 husband. 1 -10100100001 egg-swollen 1 -10100100001 lounger 1 -10100100001 eight-shooter 1 -10100100001 loftmate 1 -10100100001 beanstalk 1 -10100100001 escallonias 1 -10100100001 octane-enhancing 1 -10100100001 Austrian-made 1 -10100100001 interpretor 1 -10100100001 agent-investors 1 -10100100001 attorney-husband 1 -10100100001 baronesses 1 -10100100001 soon-to-be-ex-wife 1 -10100100001 labor-government 1 -10100100001 schoolteacher-mother 1 -10100100001 secretary. 1 -10100100001 determination. 1 -10100100001 blankness 1 -10100100001 godchild 1 -10100100001 lawyer-wife 1 -10100100001 washcloths 1 -10100100001 high-keyed 1 -10100100001 pot-sweeteners 1 -10100100001 brother-inlaw 1 -10100100001 presidente 1 -10100100001 scrimshaws 1 -10100100001 re-book 1 -10100100001 bone-weariness 1 -10100100001 tra-la-la 1 -10100100001 butcher. 1 -10100100001 one-pieces 1 -10100100001 chaft 1 -10100100001 Stroemsnes 1 -10100100001 predecesssor 1 -10100100001 cold-eyed 1 -10100100001 cage-mate 1 -10100100001 carter 1 -10100100001 Homburg 1 -10100100001 Petrova 1 -10100100001 Windsheim 1 -10100100001 too-willing 1 -10100100001 all-present 1 -10100100001 fathe 1 -10100100001 licensors 1 -10100100001 soft-on-crime 1 -10100100001 brainpan 1 -10100100001 gris 1 -10100100001 unnaturalness 1 -10100100001 corpulence 1 -10100100001 ehs 1 -10100100001 obtuseness 1 -10100100001 laser- 1 -10100100001 subalterns 1 -10100100001 C-shaped 1 -10100100001 under-five 1 -10100100001 bush-camp 1 -10100100001 bailer 1 -10100100001 11-mile 1 -10100100001 shirt-front 1 -10100100001 toque 1 -10100100001 tempo-setter 1 -10100100001 countrywoman 1 -10100100001 seed-counting 1 -10100100001 Kinenos 1 -10100100001 grotesqueness 1 -10100100001 stoniness 1 -10100100001 beaus 1 -10100100001 great-great-uncle 1 -10100100001 partner/hubby 1 -10100100001 politicalthinking 1 -10100100001 delegates. 1 -10100100001 paddlewheels 1 -10100100001 neediness 1 -10100100001 son-inlaw 1 -10100100001 existences 1 -10100100001 nightclothes 1 -10100100001 half-chewed 1 -10100100001 mossback 1 -10100100001 spouse-equivalent 1 -10100100001 girl-next-door 1 -10100100001 self-infatuation 1 -10100100001 lummox 1 -10100100001 tablemates 1 -10100100001 Boswells 1 -10100100001 smokefilled 1 -10100100001 volleying 1 -10100100001 sinfulness 1 -10100100001 physician-father 1 -10100100001 precedessor 1 -10100100001 practice-tee 1 -10100100001 hightops 1 -10100100001 bejeaned 1 -10100100001 stickups 1 -10100100001 layups 1 -10100100001 doppelganger 1 -10100100001 catastrophe-laden 1 -10100100001 valise 1 -10100100001 firstborn 1 -10100100001 paint-covered 1 -10100100001 Bounds 1 -10100100001 arbitrariness. 1 -10100100001 half-mistress 1 -10100100001 then-mistress 1 -10100100001 Aasen 1 -10100100001 Calamity 1 -10100100001 great-great-great-grandchildren 1 -10100100001 bicuspid 1 -10100100001 gutsiness 1 -10100100001 city-suburb 1 -10100100001 eyebrow-raising 1 -10100100001 rapaciously 1 -10100100001 Wrightwood 1 -10100100001 shirt-throwing 1 -10100100001 watch-chain 1 -10100100001 160th 1 -10100100001 self-vaccination 1 -10100100001 I.R.A. 1 -10100100001 snorkle 1 -10100100001 kang 1 -10100100001 Schooling 1 -10100100001 tripe-cutting 1 -10100100001 anti-macassars 1 -10100100001 spaciness 1 -10100100001 surfer-girl 1 -10100100001 Deviation 1 -10100100001 golden-hued 1 -10100100001 Veilchen 1 -10100100001 scholasticism 1 -10100100001 crisp-weather 1 -10100100001 cold-warrior 1 -10100100001 neo-detentists 1 -10100100001 governmnent 1 -10100100001 contenement 1 -10100100001 involvments 1 -10100100001 empire. 1 -10100100001 trellises 1 -10100100001 855th 1 -10100100001 brattiness 1 -10100100001 drink-up 1 -10100100001 dismissible 1 -10100100001 ex-aunt 1 -10100100001 inactions 1 -10100100001 gaura 1 -10100100001 half-glasses 1 -10100100001 horrormaster 1 -10100100001 amours 1 -10100100001 Butterflys 1 -10100100001 berouged 1 -10100100001 cantaloupemeter 1 -10100100001 Modus 1 -10100100001 Fluggerate 1 -10100100001 radarman 1 -10100100001 Farmington-based 1 -10100100001 step-nephew 1 -10100100001 biometrics 1 -10100100001 owner-trainer 1 -10100100001 chairlift-mate 1 -10100100001 partner/suitor 1 -10100100001 thinnings 1 -10100100001 lorgnette 1 -10100100001 tormenters 1 -10100100001 demonically 1 -10100100001 robert 1 -10100100001 epic-length 1 -10100100001 lechery 1 -10100100001 tush 1 -10100100001 ................................... 1 -10100100001 then-wife 1 -10100100001 excitability 1 -10100100001 battiness 1 -10100100001 jubilees 1 -10100100001 Perking 1 -10100100001 carry-back 1 -10100100001 ex-chattels 1 -10100100001 ex-boyfriend 1 -10100100001 gardening-accessories 1 -10100100001 art-throb 1 -10100100001 dish-on-a-truck 1 -10100100001 half-sincere 1 -10100100001 backswing 1 -10100100001 Kitcheners 1 -10100100001 ax-handle 1 -10100100001 putsch 1 -10100100001 cast-mates 1 -10100100001 cantankerousness 1 -10100100001 augurers 1 -10100100001 flightiness 1 -10100100001 insta-book 1 -10100100001 forepaw 1 -10100100001 recomendation 1 -10100100001 woolshed 1 -10100100001 mouth-hooked 1 -10100100001 ex-Czech-to-be 1 -10100100001 non-crime 1 -10100100001 tangibly 1 -10100100001 jowls. 1 -10100100001 Clef 1 -10100100001 wife-to-be 1 -10100100001 maxillary 1 -10100100001 jollies 1 -10100100001 allegros 1 -10100100001 mother-upon 1 -10100100001 grandad 1 -10100100001 writer-producer-activist 1 -10100100001 obiter 1 -10100100001 intellectuality 1 -10100100001 range-wise 1 -10100100001 Luckies 1 -10100100001 sassiness 1 -10100100001 short-shorts 1 -10100100001 fuse. 1 -10100100001 Burts 1 -10100100001 inarticulateness 1 -10100100001 back-ups 1 -10100100001 nurse/companion 1 -10100100001 sister. 1 -10100100001 halfbrother 1 -10100100001 poor/Your 1 -10100100001 physician-wife 1 -10100100001 housemates 1 -10100100001 derriere 1 -10100100001 troopship 1 -10100100001 veh. 1 -10100100001 lacerating 1 -10100100001 stagemate 1 -10100100001 licentiousness 1 -10100100001 icecream 1 -10100100001 Hassle 1 -10100100001 market-conscious 1 -10100100001 110-pound 1 -10100100001 chef-mobile 1 -10100100001 adventurously 1 -10100100001 hydrophilous 1 -10100100001 Greenness 1 -10100100001 jawline 1 -10100100001 godson 1 -10100100001 ex-astronaut 1 -10100100001 snow-blower 1 -10100100001 manager-son 1 -10100100001 rookeries 1 -10100100001 sleazily 1 -10100100001 tutuclad 1 -10100100001 shiner 1 -10100100001 Achilleses 1 -10100100001 scenery-chewing 1 -10100100001 subordinates. 1 -10100100001 six-lawyer 1 -10100100001 ball-fan 1 -10100100001 departure. 1 -10100100001 Tanztheater 1 -10100100001 trips. 1 -10100100001 HISPANICS 1 -10100100001 Workplaces 1 -10100100001 cocksureness 1 -10100100001 Southernness 1 -10100100001 executive-cousins 1 -10100100001 injury-of-the-moment 1 -10100100001 Hanayagi 1 -10100100001 misters 1 -10100100001 ephemeras 1 -10100100001 holdingly 1 -10100100001 armories 1 -10100100001 paintbrushes 1 -10100100001 Forsa 2 -10100100001 victuals 2 -10100100001 superjock 2 -10100100001 lunacies 2 -10100100001 500-meter 2 -10100100001 backhands 2 -10100100001 medal-winning 2 -10100100001 Murtra 2 -10100100001 pro-NATO 2 -10100100001 bloodline 2 -10100100001 ball-handling 2 -10100100001 queen's-knight 2 -10100100001 bleached-blond 2 -10100100001 orals 2 -10100100001 cosmetologist 2 -10100100001 overlord 2 -10100100001 bodice 2 -10100100001 letter-turning 2 -10100100001 labour 2 -10100100001 liberationists 2 -10100100001 then-employer 2 -10100100001 preachiness 2 -10100100001 demitasse 2 -10100100001 sternum 2 -10100100001 stick-to-itiveness 2 -10100100001 pipefitter 2 -10100100001 mother-inlaw 2 -10100100001 cub 2 -10100100001 cleats 2 -10100100001 somnambulism 2 -10100100001 Kanes 2 -10100100001 exhusband 2 -10100100001 sandaled 2 -10100100001 delts 2 -10100100001 headstone 2 -10100100001 aays 2 -10100100001 zwieback 2 -10100100001 80-lawyer 2 -10100100001 shipmates 2 -10100100001 affectations 2 -10100100001 Oba-san 2 -10100100001 gaudiness 2 -10100100001 Raywood 2 -10100100001 Begum 2 -10100100001 cello-playing 2 -10100100001 coiffure 2 -10100100001 sufferance 2 -10100100001 eyrie 2 -10100100001 bullfrog 2 -10100100001 amour 2 -10100100001 biddy 2 -10100100001 Brazier 2 -10100100001 Doxerl 2 -10100100001 composer/pianist 2 -10100100001 Spouse 2 -10100100001 crewmates 2 -10100100001 client-state 2 -10100100001 roll-on 2 -10100100001 bedchamber 2 -10100100001 doctor-husband 2 -10100100001 Eminence 2 -10100100001 Angeleno 2 -10100100001 pickax 2 -10100100001 rancheros 3 -10100100001 megaphone 3 -10100100001 fierceness 3 -10100100001 granary 3 -10100100001 Naturalist 3 -10100100001 stethoscope 3 -10100100001 thoughtfulness 3 -10100100001 witticism 3 -10100100001 sickbed 3 -10100100001 Polonaise 3 -10100100001 spatula 3 -10100100001 lifetime-employment 3 -10100100001 protegee 3 -10100100001 dominee 3 -10100100001 momma 3 -10100100001 careerism 3 -10100100001 shirt-sleeves 3 -10100100001 73-ton 3 -10100100001 Pomeranian 3 -10100100001 Byung 3 -10100100001 detractor 3 -10100100001 Messaggero 3 -10100100001 sidemen 3 -10100100001 oregano 3 -10100100001 dinner-party 3 -10100100001 tonsils 3 -10100100001 sis 3 -10100100001 DAVIS 3 -10100100001 musicianship 3 -10100100001 6-6 3 -10100100001 reapplication 3 -10100100001 costumers 3 -10100100001 pagoda 3 -10100100001 schtick 3 -10100100001 ex-employer 3 -10100100001 rucksack 3 -10100100001 calliope 3 -10100100001 silkscreen 3 -10100100001 stepdaughter 4 -10100100001 dachshund 4 -10100100001 cassock 4 -10100100001 nightgown 4 -10100100001 workingman 4 -10100100001 co-executor 4 -10100100001 volk 4 -10100100001 inheritors 4 -10100100001 Cockney 4 -10100100001 claque 4 -10100100001 Throne 4 -10100100001 round-faced 4 -10100100001 pre-teen 4 -10100100001 Jewishness 4 -10100100001 knapsack 4 -10100100001 paramour 4 -10100100001 Broederbond 4 -10100100001 poncho 4 -10100100001 henchman 4 -10100100001 bride-to-be 4 -10100100001 cowshed 4 -10100100001 bete 4 -10100100001 courtesan 4 -10100100001 mailbag 4 -10100100001 rook 5 -10100100001 axioms 5 -10100100001 oar 5 -10100100001 buttock 5 -10100100001 backache 5 -10100100001 Excellency 5 -10100100001 Valkyrie 5 -10100100001 workbench 5 -10100100001 coldness 5 -10100100001 no-tax-increase 5 -10100100001 ketch 5 -10100100001 truck-driver 5 -10100100001 generalissimo 5 -10100100001 greenmailer 5 -10100100001 cost-basis 5 -10100100001 stuttering 5 -10100100001 rearrest 5 -10100100001 mommy 6 -10100100001 dander 6 -10100100001 grandpa 6 -10100100001 Merga 6 -10100100001 mama 6 -10100100001 playmate 6 -10100100001 couturier 6 -10100100001 druggist 6 -10100100001 Molero 6 -10100100001 superheavyweight 6 -10100100001 co-screenwriter 6 -10100100001 recantation 6 -10100100001 great-great-grandfather 6 -10100100001 steed 7 -10100100001 landlady 7 -10100100001 mariner 7 -10100100001 armpits 7 -10100100001 motorbike 7 -10100100001 great-uncle 7 -10100100001 tummy 7 -10100100001 Inferno 8 -10100100001 crotch 8 -10100100001 great-grandmother 8 -10100100001 accuser 8 -10100100001 geyser 8 -10100100001 lifeguard 8 -10100100001 overcoat 8 -10100100001 Pains 8 -10100100001 beehive 9 -10100100001 half-sister 9 -10100100001 Saxony 9 -10100100001 confidante 9 -10100100001 tormentors 9 -10100100001 beau 9 -10100100001 forties 10 -10100100001 lynching 10 -10100100001 coven 10 -10100100001 womanizing 10 -10100100001 co-producer 10 -10100100001 arranger 10 -10100100001 instigation 10 -10100100001 eyelids 11 -10100100001 retinue 11 -10100100001 gosh 11 -10100100001 grantor 11 -10100100001 fiancee 12 -10100100001 caddy 12 -10100100001 great-grandfather 12 -10100100001 sixties 12 -10100100001 harem 12 -10100100001 CFP 12 -10100100001 connoisseur 13 -10100100001 bluntness 13 -10100100001 druthers 13 -10100100001 directness 14 -10100100001 fingertips 14 -10100100001 stepson 14 -10100100001 Liberace 14 -10100100001 primate 14 -10100100001 next-door 14 -10100100001 oeuvre 14 -10100100001 co-star 14 -10100100001 half-brother 15 -10100100001 tuk-tuk 15 -10100100001 brow 16 -10100100001 backside 16 -10100100001 spleen 17 -10100100001 bunny 17 -10100100001 daughter-in-law 17 -10100100001 colt 18 -10100100001 stepmother 18 -10100100001 Darblay 19 -10100100001 thigh 19 -10100100001 mid-30s 19 -10100100001 likeness 19 -10100100001 mid-40s 19 -10100100001 stepfather 20 -10100100001 deathbed 20 -10100100001 sidekick 20 -10100100001 ancestor 20 -10100100001 Rumson 21 -10100100001 ilk 21 -10100100001 ex-husband 22 -10100100001 nanny 22 -10100100001 junkie 22 -10100100001 palette 23 -10100100001 namesake 23 -10100100001 loyalist 24 -10100100001 sister-in-law 24 -10100100001 granddaughter 25 -10100100001 thighs 25 -10100100001 modus 25 -10100100001 Majesty 27 -10100100001 toddler 27 -10100100001 fiance 28 -10100100001 father-in-law 28 -10100100001 teammate 29 -10100100001 teammates 29 -10100100001 sleeve 30 -10100100001 estimation 32 -10100100001 crony 33 -10100100001 forte 34 -10100100001 sibling 36 -10100100001 forehead 38 -10100100001 protagonist 40 -10100100001 collaborator 42 -10100100001 ex-wife 42 -10100100001 wallet 42 -10100100001 roommate 43 -10100100001 niece 44 -10100100001 nemesis 45 -10100100001 entourage 47 -10100100001 pal 50 -10100100001 Corner 51 -10100100001 mother-in-law 52 -10100100001 bride 54 -10100100001 aunt 55 -10100100001 biographer 56 -10100100001 mistress 57 -10100100001 alma 58 -10100100001 captors 61 -10100100001 son-in-law 61 -10100100001 buddy 64 -10100100001 congregation 67 -10100100001 chin 70 -10100100001 boyfriend 72 -10100100001 countrymen 72 -10100100001 brother-in-law 82 -10100100001 nephew 93 -10100100001 heroine 97 -10100100001 mom 99 -10100100001 dad 108 -10100100001 confidant 108 -10100100001 mentor 110 -10100100001 glove 111 -10100100001 lap 119 -10100100001 girlfriend 125 -10100100001 landlord 129 -10100100001 grandmother 131 -10100100001 lover 134 -10100100001 uncle 159 -10100100001 cousin 165 -10100100001 widow 192 -10100100001 hometown 199 -10100100001 grandfather 209 -10100100001 signature 212 -10100100001 neighbor 309 -10100100001 colleague 390 -10100100001 sister 531 -10100100001 predecessor 629 -10100100001 daughter 894 -10100100001 favorite 949 -10100100001 boss 954 -10100100001 brother 1022 -10100100001 husband 1346 -10100100001 mother 1471 -10100100001 friend 1761 -10100100001 client 2026 -10100100001 son 2098 -10100100001 father 2129 -10100100001 wife 2793 -10100100001 family 8277 -10100100001 team 3984 -10100100010 near-martyr 1 -10100100010 Welshmen 1 -10100100010 rapper 1 -10100100010 attoney 1 -10100100010 superpatriot 1 -10100100010 submariner 1 -10100100010 bird-dog 1 -10100100010 shrimper 1 -10100100010 Man/Beast 1 -10100100010 punkrocker 1 -10100100010 nonbeliever 1 -10100100010 seven-ounce 1 -10100100010 perjurer 1 -10100100010 sophisticate 1 -10100100010 Pilsener 1 -10100100010 blackguard 1 -10100100010 call-to-prayer 1 -10100100010 herpetologist 1 -10100100010 reprobate 1 -10100100010 Atlantan 1 -10100100010 non-Mormon 1 -10100100010 two-masted 1 -10100100010 60-piece 1 -10100100010 geezer 1 -10100100010 snorters 1 -10100100010 folkie 1 -10100100010 roofer 1 -10100100010 pop-tart 1 -10100100010 car-style 1 -10100100010 preacher/politician/pedophile 1 -10100100010 disloyalists 1 -10100100010 chanteuses 1 -10100100010 aridity 1 -10100100010 anti-vivisectionist 1 -10100100010 JETLINER 1 -10100100010 Kellerton 1 -10100100010 iconoclasts 1 -10100100010 parachutists 1 -10100100010 bellboy 1 -10100100010 red-baiter 1 -10100100010 para-professional 1 -10100100010 less-than-fresh 1 -10100100010 post-docs 1 -10100100010 near-human 1 -10100100010 B-squader 1 -10100100010 bookbinders 1 -10100100010 landmine 1 -10100100010 mummiform 1 -10100100010 faggots 1 -10100100010 pencil-jockey 1 -10100100010 Columbus-Ohio 1 -10100100010 horsebreeder 1 -10100100010 grantsmen 1 -10100100010 Greek-Italian 1 -10100100010 Joigny 1 -10100100010 rowhouses 1 -10100100010 bowman 1 -10100100010 apartment-seeker 1 -10100100010 late-runner 1 -10100100010 tinkler 1 -10100100010 Celie 1 -10100100010 townsfathers 1 -10100100010 grandmom-and-pop 1 -10100100010 fems 1 -10100100010 frontiersmen 1 -10100100010 stickman 1 -10100100010 Calcuttan 1 -10100100010 ovate 1 -10100100010 foul-mouth 1 -10100100010 garagemen 1 -10100100010 steamfitter 1 -10100100010 martinet 1 -10100100010 marcher 1 -10100100010 Toltec/Chorotegans 1 -10100100010 novelist-philosopher 1 -10100100010 ex-Czecher 1 -10100100010 brahmin 1 -10100100010 skywriter 1 -10100100010 surveillant 1 -10100100010 microeconomist 1 -10100100010 Republican-turned-Democrat 1 -10100100010 mud-wrestlers 1 -10100100010 three-handicapper 1 -10100100010 ex-carpenter 1 -10100100010 consensus-seeker 1 -10100100010 anti-statists 1 -10100100010 pro-lifer 1 -10100100010 Tshirt 1 -10100100010 nonscientist 1 -10100100010 non-salmon 1 -10100100010 Sochaux 1 -10100100010 highschooler 1 -10100100010 Thunder-on-Wheelite 1 -10100100010 major-leaguer 1 -10100100010 workmates 1 -10100100010 Kingites 1 -10100100010 Sephardi 1 -10100100010 shnook 1 -10100100010 ninth-grader 1 -10100100010 gyrfalcon 1 -10100100010 statehooder 1 -10100100010 deliveryman 1 -10100100010 less-interventionist 1 -10100100010 table-pounder 1 -10100100010 gamecock 1 -10100100010 irridentists 1 -10100100010 lumberman 1 -10100100010 workmate 1 -10100100010 mysterioso 1 -10100100010 nightwear 1 -10100100010 225-foot-long 1 -10100100010 too-swift 1 -10100100010 20-pound-carp 1 -10100100010 armorer 1 -10100100010 zombie-meister 1 -10100100010 sybarite 1 -10100100010 not-quite-22-year-old 1 -10100100010 student-turned-actress 1 -10100100010 lunger 1 -10100100010 Hong-Kong 1 -10100100010 goatherd 1 -10100100010 Johnny-come-lately 2 -10100100010 ex-lawyer 2 -10100100010 washerwoman 2 -10100100010 chubbikins 2 -10100100010 saleslady 2 -10100100010 chile 2 -10100100010 policymaker 2 -10100100010 salamander 2 -10100100010 coworker 2 -10100100010 spitball 2 -10100100010 hitchhiker 2 -10100100010 despots 2 -10100100010 hotdogs 2 -10100100010 Torn 2 -10100100010 wrongdoer 2 -10100100010 sociopath 2 -10100100010 saloonkeeper 2 -10100100010 terminus 2 -10100100010 nitpicker 2 -10100100010 midpreneur 2 -10100100010 farts 2 -10100100010 warhorse 2 -10100100010 gnome 2 -10100100010 ponytail 2 -10100100010 fifth-grader 2 -10100100010 bumpkins 2 -10100100010 geezers 2 -10100100010 pursers 2 -10100100010 cutie 2 -10100100010 bitters 2 -10100100010 moo 2 -10100100010 woodworker 2 -10100100010 sexpot 2 -10100100010 arroyo 2 -10100100010 tiepin 2 -10100100010 pleasantry 2 -10100100010 wretch 2 -10100100010 cadenzas 2 -10100100010 hooey 2 -10100100010 leprechaun 2 -10100100010 fantast 2 -10100100010 half-caste 2 -10100100010 preppies 2 -10100100010 Frenchwoman 2 -10100100010 dumpling 2 -10100100010 fortune-teller 2 -10100100010 one-antitrypsin 2 -10100100010 bombthrower 2 -10100100010 digger 2 -10100100010 sommelier 2 -10100100010 yarmulke 2 -10100100010 Chateauneuf-du-Pape 2 -10100100010 Rotarian 2 -10100100010 ashram 2 -10100100010 middleweights 2 -10100100010 Jacksonian 2 -10100100010 demand-sider 2 -10100100010 buzzard 2 -10100100010 squall 2 -10100100010 margi 2 -10100100010 Realtor 2 -10100100010 hedger 2 -10100100010 schnauzer 2 -10100100010 avant-gardist 2 -10100100010 Constanze 2 -10100100010 Gigolo 2 -10100100010 Poonie 2 -10100100010 worshipper 2 -10100100010 freeman 2 -10100100010 second-grader 2 -10100100010 ball-bashers 2 -10100100010 newswoman 2 -10100100010 backpacker 2 -10100100010 schooler 2 -10100100010 Louisianian 2 -10100100010 longboat 2 -10100100010 Catalogue 2 -10100100010 chain-smoker 2 -10100100010 warmonger 2 -10100100010 fogey 2 -10100100010 techno-weenie 2 -10100100010 TKO 2 -10100100010 salesgirl 2 -10100100010 gadabout 2 -10100100010 Newfoundlander 2 -10100100010 woodsman 2 -10100100010 simpleton 2 -10100100010 faintheart 2 -10100100010 harmonium 2 -10100100010 leotard 2 -10100100010 Shar-Pei 3 -10100100010 dieter 3 -10100100010 metalworker 3 -10100100010 lass 3 -10100100010 menorah 3 -10100100010 small-businessman 3 -10100100010 babysitter 3 -10100100010 desperado 3 -10100100010 deckhand 3 -10100100010 worrier 3 -10100100010 fastballer 3 -10100100010 SHARK 3 -10100100010 cellmates 3 -10100100010 bandana 3 -10100100010 fop 3 -10100100010 ingrate 3 -10100100010 pinups 3 -10100100010 duffer 3 -10100100010 bloke 3 -10100100010 blowhards 3 -10100100010 churchman 3 -10100100010 railroader 3 -10100100010 congressperson 3 -10100100010 folklorist 3 -10100100010 hitman 3 -10100100010 whiner 3 -10100100010 reveler 3 -10100100010 genealogist 3 -10100100010 krewe 3 -10100100010 horticulturist 3 -10100100010 Pennsylvanian 3 -10100100010 prig 3 -10100100010 Manhattanite 3 -10100100010 oaf 3 -10100100010 crone 3 -10100100010 graffito 3 -10100100010 viscount 3 -10100100010 boor 3 -10100100010 ninny 3 -10100100010 friar 3 -10100100010 DPM 3 -10100100010 haberdasher 3 -10100100010 charlatan 3 -10100100010 plantiff 3 -10100100010 weightlifter 3 -10100100010 loafer 3 -10100100010 geophysicist 3 -10100100010 bigwig 3 -10100100010 bibliography 3 -10100100010 billfold 3 -10100100010 globe-trotter 3 -10100100010 trouper 3 -10100100010 deregulator 3 -10100100010 sphinx 3 -10100100010 pedant 3 -10100100010 Diemut 3 -10100100010 bloodhound 3 -10100100010 career-switcher 3 -10100100010 fast-tracker 3 -10100100010 Weerstandsbeweging 3 -10100100010 Nibelung 3 -10100100010 Democrat-turned-Republican 3 -10100100010 shrub 3 -10100100010 disarmer 3 -10100100010 gabmonger 3 -10100100010 barmaid 3 -10100100010 codger 3 -10100100010 lobsterman 3 -10100100010 selectman 3 -10100100010 eavesdropper 3 -10100100010 guardsman 3 -10100100010 busybody 3 -10100100010 tightwad 3 -10100100010 bozo 3 -10100100010 puppeteer 4 -10100100010 free-marketeer 4 -10100100010 podiatrist 4 -10100100010 sorceress 4 -10100100010 naif 4 -10100100010 shipowner 4 -10100100010 scrapper 4 -10100100010 deacon 4 -10100100010 masochist 4 -10100100010 browser 4 -10100100010 fiddler 4 -10100100010 habitation 4 -10100100010 huckster 4 -10100100010 mason 4 -10100100010 power-broker 4 -10100100010 trainman 4 -10100100010 hag 4 -10100100010 Vermonter 4 -10100100010 Navel 4 -10100100010 whistleblower 4 -10100100010 logger 4 -10100100010 harridan 4 -10100100010 picketer 4 -10100100010 starlet 4 -10100100010 snagger 4 -10100100010 first-grader 4 -10100100010 gofer 4 -10100100010 conversationalist 4 -10100100010 loincloth 4 -10100100010 werewolf 4 -10100100010 complainer 4 -10100100010 nostril 4 -10100100010 moron 4 -10100100010 Aliena 4 -10100100010 dames 4 -10100100010 singer-songwriter 4 -10100100010 switchman 4 -10100100010 choirboy 4 -10100100010 kaftan 4 -10100100010 frump 4 -10100100010 bidet 4 -10100100010 philanderer 4 -10100100010 conquistador 4 -10100100010 fussbudget 4 -10100100010 cabbie 4 -10100100010 lexicographer 4 -10100100010 toolmaker 4 -10100100010 Rockette 4 -10100100010 politican 4 -10100100010 copilot 4 -10100100010 constable 4 -10100100010 centerfielder 4 -10100100010 counterfeiter 4 -10100100010 risotto 4 -10100100010 cappella 4 -10100100010 cabinetmaker 4 -10100100010 Oklahoman 4 -10100100010 hoodlum 4 -10100100010 pasha 4 -10100100010 sleepwalker 4 -10100100010 Huns 4 -10100100010 scribe 5 -10100100010 IBMer 5 -10100100010 seventh-grader 5 -10100100010 highlander 5 -10100100010 nymphet 5 -10100100010 physician-researcher 5 -10100100010 sheikdom 5 -10100100010 Casanova 5 -10100100010 Monastery 5 -10100100010 serf 5 -10100100010 hasher 5 -10100100010 pitchfork 5 -10100100010 vaudevillian 5 -10100100010 boarder 5 -10100100010 clot-dissolver 5 -10100100010 sadist 5 -10100100010 mugger 5 -10100100010 barman 5 -10100100010 conglomerateur 5 -10100100010 planetarium 5 -10100100010 businessperson 5 -10100100010 bandleader 5 -10100100010 fedora 5 -10100100010 Ptolemy 5 -10100100010 QB 5 -10100100010 batsman 5 -10100100010 passerby 5 -10100100010 mitten 5 -10100100010 DTC 5 -10100100010 gnat 5 -10100100010 clipboard 5 -10100100010 storekeeper 5 -10100100010 schoolgirl 5 -10100100010 bettor 5 -10100100010 potter 5 -10100100010 tinkerer 5 -10100100010 beekeeper 5 -10100100010 supersalesman 5 -10100100010 rascal 5 -10100100010 transvestite 5 -10100100010 bicyclist 5 -10100100010 mallard 5 -10100100010 bodysuit 5 -10100100010 zookeeper 5 -10100100010 tomboy 5 -10100100010 marksman 5 -10100100010 trapper 5 -10100100010 record-keeper 5 -10100100010 capes 5 -10100100010 cougar 5 -10100100010 moviegoer 5 -10100100010 monopolist 6 -10100100010 seedsman 6 -10100100010 schooner 6 -10100100010 slip-up 6 -10100100010 geographer 6 -10100100010 busboy 6 -10100100010 ingenue 6 -10100100010 burgher 6 -10100100010 frill 6 -10100100010 leopard 6 -10100100010 porter 6 -10100100010 sportsman 6 -10100100010 ref 6 -10100100010 free-marketer 6 -10100100010 nobles 6 -10100100010 sorcerer 6 -10100100010 hypocrite 6 -10100100010 platitude 6 -10100100010 metallurgist 6 -10100100010 grandma 6 -10100100010 chador 6 -10100100010 ballplayer 6 -10100100010 C-minus 6 -10100100010 redhead 7 -10100100010 schemer 7 -10100100010 right-winger 7 -10100100010 playhouse 7 -10100100010 seducer 7 -10100100010 pooch 7 -10100100010 crewman 7 -10100100010 deity 7 -10100100010 paralegal 7 -10100100010 Reverend 7 -10100100010 mullah 7 -10100100010 cyclist 7 -10100100010 Muscovite 7 -10100100010 hearse 7 -10100100010 mortician 7 -10100100010 journeyman 7 -10100100010 curmudgeon 7 -10100100010 councilwoman 7 -10100100010 Steeler 7 -10100100010 wanderer 7 -10100100010 seminarian 7 -10100100010 Bostonian 7 -10100100010 nonentity 7 -10100100010 parishioner 7 -10100100010 bigot 7 -10100100010 impersonator 7 -10100100010 tipster 7 -10100100010 detainee 7 -10100100010 purist 7 -10100100010 courtier 7 -10100100010 countess 7 -10100100010 septuagenarian 7 -10100100010 viper 7 -10100100010 classicist 7 -10100100010 gent 7 -10100100010 narc 8 -10100100010 reservist 8 -10100100010 virologist 8 -10100100010 Chardonnays 8 -10100100010 weaver 8 -10100100010 gal 8 -10100100010 consensus-builder 8 -10100100010 naturalist 8 -10100100010 schoolmate 8 -10100100010 six-footer 8 -10100100010 mailman 8 -10100100010 firehouse 8 -10100100010 turbocharger 8 -10100100010 vacationer 8 -10100100010 philistine 8 -10100100010 Minnesotan 8 -10100100010 shawl 8 -10100100010 landscaper 8 -10100100010 falcon 8 -10100100010 motorcyclist 8 -10100100010 policewoman 8 -10100100010 raconteur 8 -10100100010 smokejumper 8 -10100100010 Spaniard 8 -10100100010 empress 8 -10100100010 mountaintop 9 -10100100010 bulldog 9 -10100100010 self-promoter 9 -10100100010 spinster 9 -10100100010 geisha 9 -10100100010 divorcee 9 -10100100010 prankster 9 -10100100010 villager 9 -10100100010 fullback 9 -10100100010 heartthrob 9 -10100100010 seaman 9 -10100100010 matriarch 9 -10100100010 madman 9 -10100100010 beautician 9 -10100100010 forger 9 -10100100010 Scotsman 9 -10100100010 wino 9 -10100100010 deserter 9 -10100100010 lawman 9 -10100100010 nobleman 9 -10100100010 assessors 9 -10100100010 surfer 10 -10100100010 stewardess 10 -10100100010 sufferer 10 -10100100010 jogger 10 -10100100010 governess 10 -10100100010 pensioner 10 -10100100010 patrolman 10 -10100100010 maniac 10 -10100100010 biggie 10 -10100100010 fixer 10 -10100100010 cadet 10 -10100100010 welder 10 -10100100010 furrier 10 -10100100010 bungalow 10 -10100100010 ditty 10 -10100100010 bootlegger 10 -10100100010 belle 10 -10100100010 scoundrels 11 -10100100010 Floridian 11 -10100100010 dramatist 11 -10100100010 vocalist 11 -10100100010 wunderkind 11 -10100100010 despot 11 -10100100010 crooner 11 -10100100010 zealot 11 -10100100010 flutist 11 -10100100010 widower 11 -10100100010 vermin 11 -10100100010 dame 12 -10100100010 lefty 12 -10100100010 filer 12 -10100100010 harpist 12 -10100100010 risk-taker 12 -10100100010 schoolmaster 12 -10100100010 moralist 12 -10100100010 Brit 12 -10100100010 sleuth 12 -10100100010 panelist 12 -10100100010 cot 12 -10100100010 screener 12 -10100100010 vampire 12 -10100100010 fielder 12 -10100100010 drifter 12 -10100100010 cost-cutter 12 -10100100010 co-investor 13 -10100100010 pol 13 -10100100010 goalie 13 -10100100010 litigant 13 -10100100010 prelate 13 -10100100010 Midwesterner 13 -10100100010 cabby 13 -10100100010 cubicle 13 -10100100010 butler 13 -10100100010 free-lancer 13 -10100100010 lyricist 13 -10100100010 supply-sider 13 -10100100010 commissar 13 -10100100010 perfectionist 13 -10100100010 conservationist 14 -10100100010 Dutchman 14 -10100100010 hustler 14 -10100100010 scorer 14 -10100100010 eatery 14 -10100100010 hooker 14 -10100100010 mathematician 14 -10100100010 Nisei 14 -10100100010 handkerchief 14 -10100100010 cabdriver 14 -10100100010 gunner 14 -10100100010 theologian 14 -10100100010 paraplegic 14 -10100100010 rooster 15 -10100100010 psychotherapist 15 -10100100010 chiropractor 15 -10100100010 barrister 15 -10100100010 pimp 15 -10100100010 matron 15 -10100100010 showman 15 -10100100010 percussionist 15 -10100100010 vintner 15 -10100100010 alderman 15 -10100100010 respondent 15 -10100100010 Swede 16 -10100100010 firefighter 16 -10100100010 settler 16 -10100100010 gynecologist 16 -10100100010 shooter 16 -10100100010 dreamer 16 -10100100010 clergyman 16 -10100100010 tactician 16 -10100100010 woodchuck 16 -10100100010 sprinter 16 -10100100010 florist 16 -10100100010 cornfield 16 -10100100010 brunette 16 -10100100010 volcano 17 -10100100010 mystic 17 -10100100010 mare 17 -10100100010 mirage 17 -10100100010 peddler 17 -10100100010 craftsman 17 -10100100010 urologist 17 -10100100010 draftsman 17 -10100100010 Westerner 17 -10100100010 slugger 17 -10100100010 demonstrator 18 -10100100010 neurosurgeon 18 -10100100010 wheeler-dealer 18 -10100100010 newspaperman 18 -10100100010 bookseller 18 -10100100010 bystander 19 -10100100010 dude 19 -10100100010 protester 19 -10100100010 doorman 19 -10100100010 highflier 19 -10100100010 whistle-blower 19 -10100100010 cynic 19 -10100100010 fireman 19 -10100100010 motorist 19 -10100100010 Gentleman 20 -10100100010 songwriter 20 -10100100010 biker 20 -10100100010 racer 21 -10100100010 reinsurer 21 -10100100010 hard-liner 21 -10100100010 parliamentarian 21 -10100100010 chap 21 -10100100010 plumber 21 -10100100010 vet 21 -10100100010 mannequin 22 -10100100010 drinker 22 -10100100010 playboy 22 -10100100010 partridge 22 -10100100010 kitten 22 -10100100010 charmer 22 -10100100010 diocese 22 -10100100010 bowler 23 -10100100010 comrade 23 -10100100010 recluse 23 -10100100010 swimmer 23 -10100100010 magician 23 -10100100010 philanthropist 23 -10100100010 gymnast 23 -10100100010 grandparent 23 -10100100010 lad 24 -10100100010 typist 24 -10100100010 ballerina 24 -10100100010 grandchild 24 -10100100010 chum 24 -10100100010 goddess 25 -10100100010 businesswoman 25 -10100100010 janitor 25 -10100100010 teenager 25 -10100100010 bookkeeper 26 -10100100010 lineman 26 -10100100010 socialite 26 -10100100010 patriot 26 -10100100010 mobster 26 -10100100010 hairdresser 26 -10100100010 tyrant 26 -10100100010 steelworker 26 -10100100010 salesperson 26 -10100100010 Briton 27 -10100100010 questioner 27 -10100100010 shortstop 27 -10100100010 realist 27 -10100100010 decorator 27 -10100100010 nun 27 -10100100010 loner 27 -10100100010 diner 28 -10100100010 soloist 28 -10100100010 mummy 28 -10100100010 cameraman 28 -10100100010 wrestler 28 -10100100010 geologist 29 -10100100010 claimant 29 -10100100010 felon 30 -10100100010 hijacker 30 -10100100010 scarf 30 -10100100010 fella 30 -10100100010 contestant 30 -10100100010 Tennessean 30 -10100100010 newsman 30 -10100100010 hitter 31 -10100100010 veterinarian 31 -10100100010 pragmatist 31 -10100100010 restaurateur 31 -10100100010 pathologist 31 -10100100010 jeweler 31 -10100100010 co-worker 31 -10100100010 landowner 31 -10100100010 laborer 32 -10100100010 smuggler 32 -10100100010 hostess 32 -10100100010 storyteller 33 -10100100010 grocer 33 -10100100010 headhunter 34 -10100100010 shopkeeper 35 -10100100010 burglar 35 -10100100010 homemaker 35 -10100100010 mezzo 36 -10100100010 housekeeper 36 -10100100010 pseudonym 37 -10100100010 diver 37 -10100100010 supertanker 37 -10100100010 hospice 37 -10100100010 cartoonist 37 -10100100010 baker 37 -10100100010 gardener 38 -10100100010 skater 38 -10100100010 trucker 39 -10100100010 repairman 39 -10100100010 pediatrician 39 -10100100010 monk 39 -10100100010 Southerner 41 -10100100010 jurist 41 -10100100010 therapist 41 -10100100010 campaigner 42 -10100100010 technocrat 42 -10100100010 violinist 42 -10100100010 bartender 43 -10100100010 sergeant 43 -10100100010 listener 43 -10100100010 Californian 43 -10100100010 guitarist 44 -10100100010 cardiologist 44 -10100100010 princess 44 -10100100010 waitress 45 -10100100010 co-conspirator 45 -10100100010 workaholic 45 -10100100010 carpenter 45 -10100100010 sculptor 46 -10100100010 cashier 46 -10100100010 municipality 46 -10100100010 gunman 49 -10100100010 narrator 50 -10100100010 drummer 50 -10100100010 translator 52 -10100100010 blonde 53 -10100100010 golfer 54 -10100100010 waiter 54 -10100100010 catcher 54 -10100100010 youngster 55 -10100100010 thief 55 -10100100010 gambler 55 -10100100010 reviewer 55 -10100100010 prostitute 56 -10100100010 juror 56 -10100100010 thinker 57 -10100100010 pharmacist 58 -10100100010 liar 58 -10100100010 fisherman 59 -10100100010 schoolteacher 59 -10100100010 murderer 59 -10100100010 rider 61 -10100100010 sailor 63 -10100100010 shark 64 -10100100010 receptionist 64 -10100100010 rancher 65 -10100100010 philosopher 65 -10100100010 preacher 65 -10100100010 bishop 68 -10100100010 maid 71 -10100100010 foreigner 71 -10100100010 Frenchman 71 -10100100010 boxer 72 -10100100010 homeowner 73 -10100100010 reformer 75 -10100100010 choreographer 75 -10100100010 runner 78 -10100100010 bachelor 79 -10100100010 bureaucrat 79 -10100100010 shopper 80 -10100100010 Jew 81 -10100100010 newcomer 87 -10100100010 publicist 89 -10100100010 pianist 90 -10100100010 mechanic 90 -10100100010 dancer 92 -10100100010 hunter 94 -10100100010 middleman 95 -10100100010 chef 96 -10100100010 musician 103 -10100100010 gentleman 103 -10100100010 knife 103 -10100100010 miner 105 -10100100010 pitcher 105 -10100100010 Texan 114 -10100100010 playwright 116 -10100100010 smoker 117 -10100100010 dentist 118 -10100100010 housewife 123 -10100100010 psychiatrist 131 -10100100010 millionaire 132 -10100100010 quarterback 133 -10100100010 painter 142 -10100100010 photographer 143 -10100100010 policeman 151 -10100100010 caller 151 -10100100010 cop 153 -10100100010 teen-ager 153 -10100100010 legislator 156 -10100100010 novelist 157 -10100100010 detective 175 -10100100010 poet 178 -10100100010 lawmaker 179 -10100100010 collector 185 -10100100010 nurse 193 -10100100010 broadcaster 203 -10100100010 priest 220 -10100100010 spouse 236 -10100100010 soldier 258 -10100100010 composer 274 -10100100010 lady 278 -10100100010 singer 283 -10100100010 stockbroker 298 -10100100010 visitor 336 -10100100010 kid 341 -10100100010 journalist 375 -10100100010 clerk 406 -10100100010 citizen 439 -10100100010 congressman 442 -10100100010 farmer 485 -10100100010 politician 499 -10100100010 defendant 563 -10100100010 physician 577 -10100100010 girl 580 -10100100010 teacher 632 -10100100010 driver 649 -10100100010 boy 730 -10100100010 doctor 995 -10100100010 businessman 1129 -10100100010 guy 1189 -10100100010 reporter 1216 -10100100010 patient 1228 -10100100010 writer 1242 -10100100010 worker 1629 -10100100010 Democrat 1632 -10100100010 child 1922 -10100100010 woman 2563 -10100100010 person 3215 -10100100010 lawyer 4409 -10100100010 man 6474 -101001000110 Communards 1 -101001000110 political-philosophy 1 -101001000110 NOTICE 1 -101001000110 57-story 1 -101001000110 Spanish-literature 1 -101001000110 energy-law 1 -101001000110 far-western 1 -101001000110 Carthusian 1 -101001000110 Czech-emigre 1 -101001000110 Apayao 1 -101001000110 book-Bureau 1 -101001000110 formulator 1 -101001000110 Uygur 1 -101001000110 pre-law 1 -101001000110 Bia 1 -101001000110 development-phase 1 -101001000110 once-vacant 1 -101001000110 co-record 1 -101001000110 managerialist 1 -101001000110 timber-state 1 -101001000110 Wolfes 1 -101001000110 antebellum-style 1 -101001000110 flambuoyant 1 -101001000110 leaders-cum-arms 1 -101001000110 scrum 2 -101001000110 crime-buster 2 -101001000110 gold-convertible 2 -101001000110 video-retail 2 -101001000110 low-saving 2 -101001000110 appassionato 2 -101001000110 candy-making 2 -101001000110 villainess 2 -101001000110 Stelly 2 -101001000110 knight-errant 2 -101001000110 cement-block 2 -101001000110 torpedo-bomber 2 -101001000110 tap-dance 3 -101001000110 31-story 3 -101001000110 Nogueira 3 -101001000110 machine-shop 3 -101001000110 tax-department 3 -101001000110 27-story 3 -101001000110 quarter-share 3 -101001000110 Estacado 3 -101001000110 ferryboat 3 -101001000110 87-1 3 -101001000110 P-38 3 -101001000110 adjutant 3 -101001000110 co-agent 4 -101001000110 cryptographer 4 -101001000110 rice-growing 4 -101001000110 maharajah 4 -101001000110 tributary 4 -101001000110 confab 4 -101001000110 sycophant 4 -101001000110 elf 5 -101001000110 toothpick 5 -101001000110 demo 7 -101001000110 reunified 7 -101001000110 beggar 8 -101001000110 lakefront 9 -101001000110 lackey 9 -101001000110 Diocese 9 -101001000110 generalist 9 -101001000110 burlesque 9 -101001000110 leper 12 -101001000110 redoubt 12 -101001000110 validation 13 -101001000110 knockoff 13 -101001000110 firebrand 13 -101001000110 devotee 13 -101001000110 signatory 21 -101001000110 disciple 22 -101001000110 truckload 23 -101001000110 penthouse 24 -101001000110 Soldier 27 -101001000110 stalwart 29 -101001000110 co-sponsor 32 -101001000110 garrison 38 -101001000110 multimillionaire 41 -101001000110 pawn 49 -101001000110 packet 49 -101001000110 rundown 51 -101001000110 Member 61 -101001000110 puppet 76 -101001000110 defender 89 -101001000110 protege 98 -101001000110 prisoner 116 -101001000110 backer 123 -101001000110 proponent 123 -101001000110 lieutenant 143 -101001000110 supporter 288 -101001000110 suburb 312 -101001000110 champion 319 -101001000110 fan 359 -101001000110 summary 369 -101001000110 resident 466 -101001000110 critic 526 -101001000110 graduate 652 -101001000110 native 716 -101001000110 host 835 -101001000110 veteran 936 -101001000110 representative 1211 -101001000110 branch 1833 -101001000110 member 5138 -101001000111 5E 1 -101001000111 pointings 1 -101001000111 nearly-six-foot 1 -101001000111 noteholder 1 -101001000111 synthesizer-processed 1 -101001000111 twofer 1 -101001000111 vibraphonist 1 -101001000111 Yamatsu 1 -101001000111 ex-client 1 -101001000111 lithographer 1 -101001000111 arbritrager 1 -101001000111 voyager 1 -101001000111 milt 1 -101001000111 cofradia 1 -101001000111 fluctuations.The 1 -101001000111 embattlement 1 -101001000111 shortstops 1 -101001000111 croquettes 1 -101001000111 87-2 1 -101001000111 spartanly 1 -101001000111 86-121 1 -101001000111 less-passive 1 -101001000111 gemologist 1 -101001000111 clocker 1 -101001000111 lintel 1 -101001000111 barrel-forward 1 -101001000111 lasciviousness 1 -101001000111 cut-glass 1 -101001000111 shortner 1 -101001000111 bandannas 1 -101001000111 Aprons 1 -101001000111 spatulas 1 -101001000111 89-122 1 -101001000111 quasi-exception 1 -101001000111 Chateaubriand 1 -101001000111 scrawler 1 -101001000111 X-tend 1 -101001000111 greeter 2 -101001000111 pyre 2 -101001000111 chartist 2 -101001000111 distributary 2 -101001000111 spectroscope 2 -101001000111 steeds 2 -101001000111 dramatics 3 -101001000111 gibe 3 -101001000111 profiler 3 -101001000111 topcoat 3 -101001000111 disseminator 3 -101001000111 projectionist 3 -101001000111 subunit 3 -101001000111 parapet 3 -101001000111 freeloader 3 -101001000111 sprain 3 -101001000111 carafe 3 -101001000111 Lubovitch 4 -101001000111 jitney 4 -101001000111 spectrometers 4 -101001000111 smithy 4 -101001000111 laugher 4 -101001000111 potline 5 -101001000111 marketmaker 5 -101001000111 brig 5 -101001000111 gastroenterologist 6 -101001000111 parsonage 6 -101001000111 striker 6 -101001000111 loader 7 -101001000111 c-Translated 8 -101001000111 polluter 9 -101001000111 eulogy 10 -101001000111 dumpster 10 -101001000111 Francais 11 -101001000111 carver 11 -101001000111 deal-maker 13 -101001000111 impresario 13 -101001000111 saver 13 -101001000111 shortcoming 14 -101001000111 propagandist 15 -101001000111 thoroughfare 15 -101001000111 conspirator 16 -101001000111 cure-all 18 -101001000111 wreath 20 -101001000111 seeker 21 -101001000111 rescuer 22 -101001000111 manipulator 25 -101001000111 sitter 27 -101001000111 short-seller 34 -101001000111 saleswoman 36 -101001000111 breeder 39 -101001000111 cheerleader 43 -101001000111 predator 45 -101001000111 market-maker 54 -101001000111 licensee 78 -101001000111 statesman 80 -101001000111 survivor 93 -101001000111 vendor 222 -101001000111 regulator 311 -101001000111 raider 470 -101001000111 salesman 478 -101001000111 lender 631 -101001000111 competitor 993 -101001000111 dealer 2141 -101001000111 buyer 2249 -101001000111 broker 2287 -101001000111 source 3818 -101001000111 trader 2894 -101001001000 snakebit 1 -101001001000 volvulvus 1 -101001001000 Zylis-Gara 1 -101001001000 outside-cable 1 -101001001000 VEGAS 1 -101001001000 spectra 1 -101001001000 stents 1 -101001001000 video-shop 1 -101001001000 videoshop 1 -101001001000 Siderographer 1 -101001001000 Borjas 1 -101001001000 family-program 1 -101001001000 Hanbai 1 -101001001000 Cavenagh 1 -101001001000 kniahs 1 -101001001000 Michigan. 1 -101001001000 7/7/7 1 -101001001000 teacher-union 1 -101001001000 maceration 1 -101001001000 Homemaker 1 -101001001000 Unfairly 1 -101001001000 Toasts 1 -101001001000 Duryea 1 -101001001000 Demiral 1 -101001001000 Beets 1 -101001001000 balaclavas 1 -101001001000 magazine-type 1 -101001001000 precision-machine 1 -101001001000 Dusossoit 1 -101001001000 Hindawi 1 -101001001000 Velmain 1 -101001001000 Fajar 1 -101001001000 reposing 1 -101001001000 Beiderbecke 1 -101001001000 Moderato 1 -101001001000 Penseroso 1 -101001001000 Seina 1 -101001001000 --it 1 -101001001000 TH 1 -101001001000 betrayed. 1 -101001001000 stationmaster 1 -101001001000 Lidke 1 -101001001000 fever. 1 -101001001000 season-ender 1 -101001001000 chiming 1 -101001001000 cinerea 1 -101001001000 championships. 1 -101001001000 deaminase 1 -101001001000 motocross 1 -101001001000 mine-mill 1 -101001001000 Hartsaw 1 -101001001000 Gigogne 1 -101001001000 Lanchester 1 -101001001000 spanielpoodle 1 -101001001000 Clore-backed 1 -101001001000 exasperates 1 -101001001000 Aveugle 1 -101001001000 Grigorian 1 -101001001000 1+1=3 1 -101001001000 wielder 1 -101001001000 hcl 1 -101001001000 39694 1 -101001001000 b-Volkswagen 1 -101001001000 Arcas 1 -101001001000 Slinger 1 -101001001000 tax-troglodyte 1 -101001001000 Maritima 1 -101001001000 ladle 1 -101001001000 Supertrims 1 -101001001000 control-related 1 -101001001000 Signal-gathering 1 -101001001000 biryanis 1 -101001001000 Amott 1 -101001001000 Blacketer 1 -101001001000 keratectomy 1 -101001001000 Khorshid 1 -101001001000 pre-emptions 1 -101001001000 CJ5 2 -101001001000 panelboard 2 -101001001000 TM-4 2 -101001001000 Enchaine 2 -101001001000 Amphitheatre 2 -101001001000 snuggles 2 -101001001000 gunbattle 2 -101001001000 monocytogenes 2 -101001001000 loch 2 -101001001000 hyacinths 2 -101001001000 plant. 2 -101001001000 Kreisky 2 -101001001000 glowered 2 -101001001000 Sabagal 2 -101001001000 overlays 2 -101001001000 homier 2 -101001001000 goblet 2 -101001001000 hypnotherapist 2 -101001001000 Mosnier 2 -101001001000 Leignadier 2 -101001001000 sing-along 2 -101001001000 Vilmain 2 -101001001000 degasification 2 -101001001000 Hartzog 2 -101001001000 blintzes 3 -101001001000 Treasury-indexed 3 -101001001000 NPL 3 -101001001000 Cerna 3 -101001001000 Amberville 3 -101001001000 single-lens 3 -101001001000 vasectomy 3 -101001001000 Goncourt 3 -101001001000 horseman 3 -101001001000 Saint-Freres 3 -101001001000 Gymnich 3 -101001001000 Moors 3 -101001001000 Secunde 3 -101001001000 EuroDisneyland 3 -101001001000 recorder-television 3 -101001001000 Kondratieff 3 -101001001000 Orangerie 3 -101001001000 Revs 3 -101001001000 SR 3 -101001001000 goalposts 3 -101001001000 twister 4 -101001001000 Caverns 4 -101001001000 pincers 4 -101001001000 fronton 5 -101001001000 hanger 5 -101001001000 BSO 5 -101001001000 1/35 5 -101001001000 FFA 5 -101001001000 gallate 5 -101001001000 hex 5 -101001001000 dairymen 5 -101001001000 softeners 5 -101001001000 Peas 6 -101001001000 hatchery 6 -101001001000 canner 6 -101001001000 Minnelli 6 -101001001000 milkshake 6 -101001001000 hobbyist 7 -101001001000 substation 7 -101001001000 mesa 7 -101001001000 jumpers 7 -101001001000 upgrader 7 -101001001000 purifiers 7 -101001001000 sorpasso 7 -101001001000 9580 7 -101001001000 newscaster 7 -101001001000 canker 7 -101001001000 paddy 8 -101001001000 flume 8 -101001001000 DeskJet 8 -101001001000 Chevette 9 -101001001000 Minelli 9 -101001001000 trawler 9 -101001001000 puck 9 -101001001000 CJ-5 9 -101001001000 spaniel 9 -101001001000 thrower 9 -101001001000 hawkers 10 -101001001000 conferencing 10 -101001001000 Nestea 11 -101001001000 Argentinas 11 -101001001000 cannery 11 -101001001000 mini-series 12 -101001001000 pollen 14 -101001001000 dispatcher 14 -101001001000 softener 15 -101001001000 schoolhouse 15 -101001001000 chandelier 15 -101001001000 faucets 15 -101001001000 Conservancy 16 -101001001000 tester 17 -101001001000 Bosendorfer 17 -101001001000 distillery 17 -101001001000 laxative 17 -101001001000 brunch 18 -101001001000 mousse 19 -101001001000 CJ 20 -101001001000 projector 21 -101001001000 scaffolding 22 -101001001000 transformer 23 -101001001000 dismutase 24 -101001001000 spoon 25 -101001001000 cone 25 -101001001000 outage 27 -101001001000 vapor 28 -101001001000 distributorship 30 -101001001000 depot 36 -101001001000 hangar 37 -101001001000 grid 39 -101001001000 transmitter 40 -101001001000 salon 44 -101001001000 marina 44 -101001001000 shipper 49 -101001001000 parlor 60 -101001001000 detector 67 -101001001000 telescope 68 -101001001000 furnace 78 -101001001000 hose 84 -101001001000 coupe 89 -101001001000 spacecraft 132 -101001001000 dish 135 -101001001000 mansion 136 -101001001000 rig 157 -101001001000 dam 185 -101001001000 smelter 196 -101001001000 dealership 214 -101001001000 shipyard 225 -101001001000 tournament 228 -101001001000 stadium 253 -101001001000 Guide 267 -101001001000 tanker 356 -101001001000 terminal 412 -101001001000 reactor 433 -101001001000 mall 471 -101001001000 refinery 566 -101001001000 tank 735 -101001001000 studio 790 -101001001000 shop 972 -101001001000 mill 974 -101001001000 mine 1658 -101001001000 station 2448 -101001001000 facility 2619 -101001001000 plant 11452 -1010010010010 Springield 1 -1010010010010 artist/singer 1 -1010010010010 basic-food 1 -1010010010010 Eric=Jericho 1 -1010010010010 Japanese-brand 1 -1010010010010 market-predictor 1 -1010010010010 Smalltown 1 -1010010010010 Edgarton 1 -1010010010010 sub-unit 1 -1010010010010 quota-offenders 1 -1010010010010 LAMP 1 -1010010010010 Day-Timer 1 -1010010010010 McMaid 1 -1010010010010 McPrint 1 -1010010010010 MISURA 1 -1010010010010 KOBC-TV 1 -1010010010010 KCSTTV 1 -1010010010010 WJBKTV 1 -1010010010010 Shaw-Barton 1 -1010010010010 margin-busting 1 -1010010010010 products/indirect 1 -1010010010010 greenhouse-growing 1 -1010010010010 leuprolide 1 -1010010010010 somatrem 1 -1010010010010 Super-Deb 1 -1010010010010 Dublin-Amsterdam 1 -1010010010010 Shannon-London 1 -1010010010010 Cork-London 1 -1010010010010 Ashbrooks 1 -1010010010010 Charmes-Chambertin 1 -1010010010010 WHOI-TV 1 -1010010010010 WTRF-TV 1 -1010010010010 WMTV 1 -1010010010010 Compazine 1 -1010010010010 co-movements 1 -1010010010010 price-comparison 1 -1010010010010 Indiana-Sweet 1 -1010010010010 5,499,000 1 -1010010010010 Thomson-Sintra 1 -1010010010010 Euralair 1 -1010010010010 WCIZ-TV 1 -1010010010010 semi-passive 1 -1010010010010 WITI 1 -1010010010010 WAGA 1 -1010010010010 WJW 1 -1010010010010 oligopoly-driven 1 -1010010010010 Logos 1 -1010010010010 Tessenderlo 1 -1010010010010 WL-TV 1 -1010010010010 WX-TV 1 -1010010010010 KMEX 1 -1010010010010 1967-based 1 -1010010010010 Herzen 1 -1010010010010 WYNK 1 -1010010010010 Libreville 1 -1010010010010 Dowell-Schlumberger 1 -1010010010010 per-mule 1 -1010010010010 miller.The 1 -1010010010010 Tempore 1 -1010010010010 Australia-wide 1 -1010010010010 Grit 1 -1010010010010 Scotties 1 -1010010010010 WDCA 1 -1010010010010 KTXH 1 -1010010010010 KTXA 1 -1010010010010 -drugs 1 -1010010010010 WIVES 1 -1010010010010 3-by-5 1 -1010010010010 LASA 1 -1010010010010 350-stock 1 -1010010010010 9.770 1 -1010010010010 employment-cost 1 -1010010010010 -unsecured 1 -1010010010010 1-800-283-7777 1 -1010010010010 b-Based 1 -1010010010010 honorably. 1 -1010010010010 h-Stck. 1 -1010010010010 hydrotherapy 1 -1010010010010 Ritchard 1 -1010010010010 220,000,003 1 -1010010010010 X-bodies 1 -1010010010010 violinist/conductor 1 -1010010010010 already-identified 1 -1010010010010 conventional- 2 -1010010010010 seat-sale 2 -1010010010010 WLS 2 -1010010010010 Chaskel 2 -1010010010010 Shulim 2 -1010010010010 brooder 2 -1010010010010 personal-income-tax 2 -1010010010010 steerage 2 -1010010010010 bopper 2 -1010010010010 Price-Cutting 2 -1010010010010 equipments 2 -1010010010010 KTXA-TV 2 -1010010010010 WDCA-TV 2 -1010010010010 videodiscs 2 -1010010010010 Baseline 2 -1010010010010 Mediocrity 2 -1010010010010 vagabonds 2 -1010010010010 40-bond 2 -1010010010010 slinger 2 -1010010010010 crisis. 2 -1010010010010 venders 3 -1010010010010 relaxants 3 -1010010010010 Lucifer 3 -1010010010010 dollar-amount 3 -1010010010010 EAFE 3 -1010010010010 prepublication 3 -1010010010010 per-bushel 3 -1010010010010 laminations 3 -1010010010010 price-weighted 3 -1010010010010 Renaldo 3 -1010010010010 1,100-stock 3 -1010010010010 WITI-TV 4 -1010010010010 livability 4 -1010010010010 market-clearing 4 -1010010010010 creamer 4 -1010010010010 ombudsmen 4 -1010010010010 double-cross 4 -1010010010010 urns 4 -1010010010010 heist 5 -1010010010010 Jacko 5 -1010010010010 Ibuprin 5 -1010010010010 I.V. 6 -1010010010010 leaker 6 -1010010010010 premium-to-market 6 -1010010010010 WBBM-TV 7 -1010010010010 by-products 8 -1010010010010 mini-mill 8 -1010010010010 return-on-asset 8 -1010010010010 gluten 10 -1010010010010 schoolbooks 10 -1010010010010 grove 16 -1010010010010 glycol 17 -1010010010010 carcass 18 -1010010010010 medalist 21 -1010010010010 driller 28 -1010010010010 cost-of-funds 30 -1010010010010 bin 36 -1010010010010 packer 37 -1010010010010 kingpin 45 -1010010010010 grower 73 -1010010010010 stickers 74 -1010010010010 ingot 105 -1010010010010 sticker 132 -1010010010010 exporter 186 -1010010010010 refiner 198 -1010010010010 utilization 249 -1010010010010 processor 420 -1010010010010 coach 484 -1010010010010 designer 616 -1010010010010 spot 2241 -1010010010010 producer 3529 -1010010010010 base 4649 -1010010010011 737.43 1 -1010010010011 peach-and-cream 1 -1010010010011 pauvres 1 -1010010010011 740.71 1 -1010010010011 1026.94 1 -1010010010011 728.43 1 -1010010010011 738.43 1 -1010010010011 738.71 1 -1010010010011 748.29 1 -1010010010011 betes 1 -1010010010011 726.57 1 -1010010010011 Christstollen 1 -1010010010011 1026.08 1 -1010010010011 938.35 1 -1010010010011 1030.16 1 -1010010010011 1029.27 1 -1010010010011 1029.79 1 -1010010010011 1039.25 1 -1010010010011 689.15 1 -1010010010011 749.60 1 -1010010010011 685.59 1 -1010010010011 examplesusually 1 -1010010010011 776.87 1 -1010010010011 941.65 1 -1010010010011 751.71 1 -1010010010011 sulu 1 -1010010010011 787.01 1 -1010010010011 736.57 1 -1010010010011 5/8-a-share 1 -1010010010011 734.29 1 -1010010010011 749.86 1 -1010010010011 750.14 1 -1010010010011 nonmagnetic 1 -1010010010011 770.55 1 -1010010010011 768.86 1 -1010010010011 766.20 1 -1010010010011 1099.97 1 -1010010010011 930.47 1 -1010010010011 dashman 1 -1010010010011 1082.85 1 -1010010010011 1069.15 1 -1010010010011 1074.03 1 -1010010010011 1100.11 1 -1010010010011 1094.18 1 -1010010010011 1094.31 1 -1010010010011 1062.04 1 -1010010010011 alcohol-industry 1 -1010010010011 697.14 1 -1010010010011 702.43 1 -1010010010011 695.14 1 -1010010010011 1086.67 1 -1010010010011 1075.87 1 -1010010010011 1080.74 1 -1010010010011 1091.41 1 -1010010010011 1084.43 1 -1010010010011 1044.78 1 -1010010010011 1041.62 1 -1010010010011 link. 1 -1010010010011 1039.91 1 -1010010010011 1031.61 1 -1010010010011 investors. 1 -1010010010011 1035.56 1 -1010010010011 1076.66 1 -1010010010011 1076.26 1 -1010010010011 1060.59 1 -1010010010011 mark-downs 1 -1010010010011 1052.42 1 -1010010010011 1058.09 1 -1010010010011 1067.57 1 -1010010010011 exhange 1 -1010010010011 saram 1 -1010010010011 911.14 1 -1010010010011 906.96 1 -1010010010011 918.01 1 -1010010010011 unfriendliness 1 -1010010010011 912.34 1 -1010010010011 890.38 1 -1010010010011 891.73 1 -1010010010011 908.60 1 -1010010010011 915.11 1 -1010010010011 912.76 1 -1010010010011 929.01 1 -1010010010011 916.42 1 -1010010010011 news-and-commentary 1 -1010010010011 924.03 1 -1010010010011 914.43 1 -1010010010011 929.06 1 -1010010010011 908.81 1 -1010010010011 945.86 1 -1010010010011 cashthat 1 -1010010010011 924.47 1 -1010010010011 866.94 1 -1010010010011 in-season 1 -1010010010011 867.68 1 -1010010010011 866.64 1 -1010010010011 873.81 1 -1010010010011 848.42 1 -1010010010011 857.23 1 -1010010010011 886.80 1 -1010010010011 881.42 1 -1010010010011 892.32 1 -1010010010011 gyno 1 -1010010010011 888.29 1 -1010010010011 Rituals 1 -1010010010011 875.30 1 -1010010010011 871.57 1 -1010010010011 guilt-purge 1 -1010010010011 870.37 1 -1010010010011 1036.09 1 -1010010010011 1027.79 1 -1010010010011 1033.19 1 -1010010010011 1047.68 1 -1010010010011 1062.30 1 -1010010010011 1037.14 1 -1010010010011 890.98 1 -1010010010011 906.51 1 -1010010010011 1025.16 1 -1010010010011 cave-digger 1 -1010010010011 nouveaus 1 -1010010010011 shaper 1 -1010010010011 WILD-AM 1 -1010010010011 WDAS-FM 1 -1010010010011 1036.88 1 -1010010010011 1011.59 1 -1010010010011 1063.22 1 -1010010010011 1064.41 1 -1010010010011 1044.92 1 -1010010010011 1038.46 1 -1010010010011 1049.79 1 -1010010010011 galabaya 1 -1010010010011 921.59 1 -1010010010011 stylebook 1 -1010010010011 922.95 1 -1010010010011 C64/ 1 -1010010010011 931.09 1 -1010010010011 926.72 1 -1010010010011 938.33 1 -1010010010011 ministership 1 -1010010010011 933.84 1 -1010010010011 garage/office 1 -1010010010011 925.36 1 -1010010010011 923.55 1 -1010010010011 927.62 1 -1010010010011 909.08 1 -1010010010011 909.38 1 -1010010010011 ok 1 -1010010010011 after-summer 1 -1010010010011 936.67 1 -1010010010011 letters-of-credit 1 -1010010010011 932.75 1 -1010010010011 921.14 1 -1010010010011 929.73 1 -1010010010011 858.84 1 -1010010010011 riser 1 -1010010010011 939.56 1 -1010010010011 abroadquietly 1 -1010010010011 845.91 1 -1010010010011 834.77 1 -1010010010011 953.73 1 -1010010010011 related-products 1 -1010010010011 grog 1 -1010010010011 841.12 1 -1010010010011 845.31 1 -1010010010011 917.39 1 -1010010010011 940.77 1 -1010010010011 aesthetes 1 -1010010010011 911.94 1 -1010010010011 907.82 1 -1010010010011 915.82 1 -1010010010011 874.88 1 -1010010010011 881.90 1 -1010010010011 935.68 1 -1010010010011 951.07 1 -1010010010011 951.55 1 -1010010010011 953.00 1 -1010010010011 building. 1 -1010010010011 939.44 1 -1010010010011 938.95 1 -1010010010011 910.85 1 -1010010010011 two-one 1 -1010010010011 dollar-owners 1 -1010010010011 922.36 1 -1010010010011 956.87 1 -1010010010011 mushmouths 1 -1010010010011 929.27 1 -1010010010011 924.09 1 -1010010010011 batik 1 -1010010010011 intertitles 1 -1010010010011 941.32 1 -1010010010011 927.46 1 -1010010010011 914.12 1 -1010010010011 fuds 1 -1010010010011 916.45 1 -1010010010011 910.23 1 -1010010010011 netowrk 1 -1010010010011 910.88 1 -1010010010011 908.03 1 -1010010010011 925.15 1 -1010010010011 Matea 1 -1010010010011 919.69 1 -1010010010011 933.42 1 -1010010010011 934.33 1 -1010010010011 951.43 1 -1010010010011 928.90 1 -1010010010011 951.19 1 -1010010010011 949.61 1 -1010010010011 935.44 1 -1010010010011 963.86 1 -1010010010011 950.26 1 -1010010010011 921.37 1 -1010010010011 914.90 1 -1010010010011 songsmith 1 -1010010010011 953.63 1 -1010010010011 1028.37 1 -1010010010011 1029.53 1 -1010010010011 kidkillers 1 -1010010010011 966.58 1 -1010010010011 970.73 1 -1010010010011 compies 1 -1010010010011 986.66 1 -1010010010011 978.76 1 -1010010010011 film-Kodak 1 -1010010010011 1037.93 1 -1010010010011 1048.21 1 -1010010010011 1012.12 1 -1010010010011 1033.72 1 -1010010010011 939.80 1 -1010010010011 1026.81 1 -1010010010011 1022.80 1 -1010010010011 stargazer 1 -1010010010011 699.00 1 -1010010010011 731.00 1 -1010010010011 721.14 1 -1010010010011 Disini 1 -1010010010011 661.00 1 -1010010010011 673.57 1 -1010010010011 935.32 1 -1010010010011 707.43 1 -1010010010011 681.14 1 -1010010010011 699.86 1 -1010010010011 943.68 1 -1010010010011 753.57 1 -1010010010011 770.29 1 -1010010010011 photo-typesetting 1 -1010010010011 976.68 1 -1010010010011 747.71 1 -1010010010011 airmanship 1 -1010010010011 754.43 1 -1010010010011 767.29 1 -1010010010011 770.43 1 -1010010010011 774.00 1 -1010010010011 767.86 1 -1010010010011 853.92 1 -1010010010011 merketplace 1 -1010010010011 853.56 1 -1010010010011 exchange-related 1 -1010010010011 816.38 1 -1010010010011 807.17 1 -1010010010011 841.93 1 -1010010010011 869.19 1 -1010010010011 876.09 1 -1010010010011 952.88 1 -1010010010011 yong 1 -1010010010011 tubers 1 -1010010010011 865.55 1 -1010010010011 872.21 1 -1010010010011 natural- 1 -1010010010011 877.79 1 -1010010010011 1021.47 1 -1010010010011 Hamtramckers 1 -1010010010011 1024.76 1 -1010010010011 1005.80 1 -1010010010011 decretary 1 -1010010010011 1021.60 1 -1010010010011 949.01 1 -1010010010011 1038.72 1 -1010010010011 1032.53 1 -1010010010011 820.37 1 -1010010010011 over-ripeness 1 -1010010010011 industry-software 1 -1010010010011 830.91 1 -1010010010011 824.13 1 -1010010010011 810.20 1 -1010010010011 819.65 1 -1010010010011 829.58 1 -1010010010011 Steinberg-watcher 1 -1010010010011 944.77 1 -1010010010011 establishment. 1 -1010010010011 effort-systems 1 -1010010010011 835.88 1 -1010010010011 825.34 1 -1010010010011 821.98 1 -1010010010011 diviners 1 -1010010010011 756.86 1 -1010010010011 818.40 1 -1010010010011 gamesman 1 -1010010010011 843.04 1 -1010010010011 1506.58 1 -1010010010011 single-image 1 -1010010010011 Steelworks 1 -1010010010011 760.43 1 -1010010010011 813.47 1 -1010010010011 760.86 1 -1010010010011 796.74 1 -1010010010011 tollbooths 1 -1010010010011 Fridtjof 1 -1010010010011 822.43 1 -1010010010011 829.30 1 -1010010010011 758.57 1 -1010010010011 840.20 1 -1010010010011 panter 1 -1010010010011 842.00 1 -1010010010011 850.81 1 -1010010010011 165-pound 1 -1010010010011 845.43 1 -1010010010011 791.14 1 -1010010010011 instutitions 1 -1010010010011 776.86 1 -1010010010011 trodding 1 -1010010010011 1457.33 1 -1010010010011 nighthawks 1 -1010010010011 774.14 1 -1010010010011 857.97 1 -1010010010011 853.94 1 -1010010010011 854.24 1 -1010010010011 746.00 1 -1010010010011 hairiness 1 -1010010010011 761.43 1 -1010010010011 1437.77 1 -1010010010011 paperhangers 1 -1010010010011 872.61 1 -1010010010011 business-residential 1 -1010010010011 perfumery 1 -1010010010011 877.39 1 -1010010010011 749.29 1 -1010010010011 coatdress 1 -1010010010011 743.43 1 -1010010010011 873.06 1 -1010010010011 1433.50 1 -1010010010011 campaign-decided 1 -1010010010011 794.95 1 -1010010010011 771.14 1 -1010010010011 784.05 1 -1010010010011 794.65 1 -1010010010011 948.89 1 -1010010010011 796.89 1 -1010010010011 759.14 1 -1010010010011 796.59 1 -1010010010011 1448.26 1 -1010010010011 764.29 1 -1010010010011 804.66 1 -1010010010011 rule-of-thumb 1 -1010010010011 andheating 1 -1010010010011 1269.20 1 -1010010010011 765.00 1 -1010010010011 800.33 1 -1010010010011 1448.79 1 -1010010010011 U.S.-bashing 1 -1010010010011 878.73 1 -1010010010011 880.08 1 -1010010010011 sector. 1 -1010010010011 1469.59 1 -1010010010011 snowboarder 1 -1010010010011 838.37 1 -1010010010011 make-loans-not-war 1 -1010010010011 1439.72 1 -1010010010011 863.80 1 -1010010010011 danseurs 1 -1010010010011 834.96 1 -1010010010011 moist-eyed 1 -1010010010011 859.47 1 -1010010010011 832.59 1 -1010010010011 860.96 1 -1010010010011 847.12 1 -1010010010011 850.68 1 -1010010010011 1469.24 1 -1010010010011 849.05 1 -1010010010011 858.24 1 -1010010010011 853.50 1 -1010010010011 841.19 1 -1010010010011 toxoid 1 -1010010010011 849.94 1 -1010010010011 848.01 1 -1010010010011 849.79 1 -1010010010011 836.17 1 -1010010010011 1266.18 1 -1010010010011 836.47 1 -1010010010011 815.54 1 -1010010010011 877.69 1 -1010010010011 841.85 1 -1010010010011 795.67 1 -1010010010011 domponents 1 -1010010010011 827.36 1 -1010010010011 1450.21 1 -1010010010011 796.26 1 -1010010010011 830.50 1 -1010010010011 875.15 1 -1010010010011 826.36 1 -1010010010011 879.48 1 -1010010010011 1278.98 1 -1010010010011 884.56 1 -1010010010011 819.69 1 -1010010010011 874.25 1 -1010010010011 817.62 1 -1010010010011 1442.21 1 -1010010010011 883.66 1 -1010010010011 855.73 1 -1010010010011 educrats 1 -1010010010011 quandries 1 -1010010010011 858.27 1 -1010010010011 860.22 1 -1010010010011 12-month/12,000-mile 1 -1010010010011 891.58 1 -1010010010011 diselenide 1 -1010010010011 handshaker 1 -1010010010011 887.84 1 -1010010010011 1455.19 1 -1010010010011 lowtechnology 1 -1010010010011 busybodies 1 -1010010010011 891.28 1 -1010010010011 789.43 1 -1010010010011 877.09 1 -1010010010011 886.65 1 -1010010010011 745.00 1 -1010010010011 1450.04 1 -1010010010011 anchorages 1 -1010010010011 869.47 1 -1010010010011 repertoire-Mozart 1 -1010010010011 857.38 1 -1010010010011 780.29 1 -1010010010011 danseur 1 -1010010010011 883.06 1 -1010010010011 783.86 1 -1010010010011 833.78 1 -1010010010011 1266.89 1 -1010010010011 1250.00 1 -1010010010011 845.88 1 -1010010010011 846.33 1 -1010010010011 cryptofascists 1 -1010010010011 1467.11 1 -1010010010011 +126.6 1 -1010010010011 838.56 1 -1010010010011 831.54 1 -1010010010011 845.58 1 -1010010010011 1277.74 1 -1010010010011 market-Europe 1 -1010010010011 1505.87 1 -1010010010011 gallery-bookstore 1 -1010010010011 867.53 1 -1010010010011 choice-making 1 -1010010010011 885.30 1 -1010010010011 881.27 1 -1010010010011 1459.28 1 -1010010010011 848.57 1 -1010010010011 852.15 1 -1010010010011 757.29 1 -1010010010011 898.89 1 -1010010010011 881.57 1 -1010010010011 755.00 1 -1010010010011 882.77 1 -1010010010011 wait-for-the-customers-to-come-to-you 1 -1010010010011 890.68 1 -1010010010011 skyjams 1 -1010010010011 908.15 1 -1010010010011 1401.67 1 -1010010010011 899.34 1 -1010010010011 740.43 1 -1010010010011 756.00 1 -1010010010011 890.23 1 -1010010010011 888.14 1 -1010010010011 consumer-packaging 1 -1010010010011 865.89 1 -1010010010011 737.57 1 -1010010010011 742.86 1 -1010010010011 873.36 1 -1010010010011 881.12 1 -1010010010011 741.57 1 -1010010010011 868.13 1 -1010010010011 864.10 1 -1010010010011 856.93 1 -1010010010011 1273.47 1 -1010010010011 1424.96 1 -1010010010011 890.83 1 -1010010010011 746.29 1 -1010010010011 co-chairperson 1 -1010010010011 889.19 1 -1010010010011 894.41 1 -1010010010011 756.43 1 -1010010010011 1404.69 1 -1010010010011 749.57 1 -1010010010011 908.45 1 -1010010010011 1413.94 1 -1010010010011 882.62 1 -1010010010011 813.23 2 -1010010010011 1033.46 2 -1010010010011 1504.62 2 -1010010010011 1253.07 2 -1010010010011 reseeding 2 -1010010010011 891.84 2 -1010010010011 1019.30 2 -1010010010011 1060.85 2 -1010010010011 businessess 2 -1010010010011 867.01 2 -1010010010011 griefs 2 -1010010010011 1465.86 2 -1010010010011 1484.53 2 -1010010010011 960.36 2 -1010010010011 railroaders 2 -1010010010011 rigger 2 -1010010010011 1427.63 2 -1010010010011 842.42 2 -1010010010011 LearJet 2 -1010010010011 851.02 2 -1010010010011 877.54 2 -1010010010011 822.66 2 -1010010010011 984.59 2 -1010010010011 822.06 2 -1010010010011 843.27 2 -1010010010011 1023.45 2 -1010010010011 1013.34 2 -1010010010011 1023.32 2 -1010010010011 1001.42 2 -1010010010011 956.64 2 -1010010010011 893.53 2 -1010010010011 1518.49 2 -1010010010011 863.74 2 -1010010010011 980.70 2 -1010010010011 1021.11 2 -1010010010011 852.96 2 -1010010010011 740.25 2 -1010010010011 fixed-principal 2 -1010010010011 980.24 2 -1010010010011 879.18 2 -1010010010011 674.92 2 -1010010010011 913.47 2 -1010010010011 DPA 2 -1010010010011 954.15 2 -1010010010011 961.01 2 -1010010010011 caregivers 2 -1010010010011 947.67 2 -1010010010011 1442.39 2 -1010010010011 burgeons 2 -1010010010011 745.57 2 -1010010010011 726.29 2 -1010010010011 945.85 2 -1010010010011 1467.99 2 -1010010010011 callings 2 -1010010010011 784.38 2 -1010010010011 847.67 2 -1010010010011 725.50 2 -1010010010011 757.24 2 -1010010010011 perspicacity 2 -1010010010011 849.01 2 -1010010010011 928.50 2 -1010010010011 826.31 2 -1010010010011 892.77 2 -1010010010011 777.86 2 -1010010010011 918.91 2 -1010010010011 1413.23 2 -1010010010011 935.01 2 -1010010010011 976.04 2 -1010010010011 924.22 2 -1010010010011 886.20 2 -1010010010011 1406.29 2 -1010010010011 863.05 2 -1010010010011 classicists 2 -1010010010011 1355.80 2 -1010010010011 1428.34 2 -1010010010011 conquerer 2 -1010010010011 short-sightedness 2 -1010010010011 1266.66 2 -1010010010011 932.90 2 -1010010010011 869.18 2 -1010010010011 1089.17 2 -1010010010011 841.48 2 -1010010010011 957.38 2 -1010010010011 1075.47 2 -1010010010011 853.69 2 -1010010010011 1473.68 2 -1010010010011 roustabouts 2 -1010010010011 857.83 2 -1010010010011 1090.62 2 -1010010010011 1477.06 2 -1010010010011 863.75 2 -1010010010011 692.86 2 -1010010010011 872.02 2 -1010010010011 839.01 2 -1010010010011 860.87 2 -1010010010011 904.12 2 -1010010010011 962.82 2 -1010010010011 866.74 2 -1010010010011 1021.73 2 -1010010010011 856.78 2 -1010010010011 831.69 2 -1010010010011 1030.43 2 -1010010010011 854.84 2 -1010010010011 876.94 2 -1010010010011 842.44 2 -1010010010011 915.21 2 -1010010010011 spangles 2 -1010010010011 1027.20 2 -1010010010011 830.10 2 -1010010010011 833.33 2 -1010010010011 1509.42 2 -1010010010011 1032.93 2 -1010010010011 1047.02 2 -1010010010011 947.55 2 -1010010010011 oligopolies 2 -1010010010011 853.35 2 -1010010010011 951.30 2 -1010010010011 933.81 3 -1010010010011 844.83 3 -1010010010011 Houstonians 3 -1010010010011 1040.31 3 -1010010010011 748.86 3 -1010010010011 meridian 3 -1010010010011 masseur 3 -1010010010011 1013.83 3 -1010010010011 SHO 3 -1010010010011 clamper 3 -1010010010011 892.92 3 -1010010010011 dollar-holders 4 -1010010010011 income-protecting 5 -1010010010011 shaming 5 -1010010010011 vane 6 -1010010010011 Verses 10 -1010010010011 minister-designate 15 -1010010010011 riche 17 -1010010010011 premiers 24 -1010010010011 mower 29 -1010010010011 mowers 60 -1010010010011 placements 128 -1010010010011 contractor 1138 -1010010010011 ministers 1411 -1010010010011 sector 3630 -1010010010011 minister 3604 -101001001010 quota-busting 1 -101001001010 licensed-character 1 -101001001010 Hondaland 1 -101001001010 Canadian-border 1 -101001001010 bar-accredited 1 -101001001010 media-dominated 1 -101001001010 human-health-care 1 -101001001010 syndrome-related 1 -101001001010 Latinate 1 -101001001010 something-he 1 -101001001010 silk-screening 1 -101001001010 Imbaba 1 -101001001010 edited-down 1 -101001001010 union-managment 1 -101001001010 trade-industry 1 -101001001010 4,099,963 1 -101001001010 family-migrant 1 -101001001010 Covenanter 1 -101001001010 communication-cluttered 1 -101001001010 10,435 1 -101001001010 6,716 1 -101001001010 Gogh-craving 1 -101001001010 large-typeface 1 -101001001010 1,236,338 1 -101001001010 9,987 1 -101001001010 13,602 1 -101001001010 6,835 1 -101001001010 9,079 1 -101001001010 haul-out 1 -101001001010 tour/theme 1 -101001001010 Iran-hostages 1 -101001001010 mealtime 1 -101001001010 500,112 2 -101001001010 Arab-Sudanese 2 -101001001010 Kangnam 2 -101001001010 Catalans 2 -101001001010 Vilna 2 -101001001010 cosmopolitans 2 -101001001010 fund-switching 2 -101001001010 A-minor 2 -101001001010 Ellingtonia 2 -101001001010 living-related 2 -101001001010 train-surfing 2 -101001001010 repast 2 -101001001010 alluvial 2 -101001001010 outlier 2 -101001001010 pulse-quickening 2 -101001001010 boxier 2 -101001001010 cross-stitch 2 -101001001010 rubbled 3 -101001001010 tea-leaf 3 -101001001010 disk-based 3 -101001001010 Cosanti 3 -101001001010 stockholders. 3 -101001001010 counter-insurgency 3 -101001001010 girder 3 -101001001010 Malightco 3 -101001001010 jive-talking 3 -101001001010 Matsekha 3 -101001001010 joystick 3 -101001001010 impersonations 4 -101001001010 paper-shuffling 4 -101001001010 ovum 4 -101001001010 falconry 4 -101001001010 movie-going 5 -101001001010 CPE 5 -101001001010 backgammon 6 -101001001010 gyroscope 6 -101001001010 zaibatsu 7 -101001001010 bismuth 7 -101001001010 seam 7 -101001001010 pantry 8 -101001001010 business. 8 -101001001010 KKB 8 -101001001010 Bedford-Stuyvesant 10 -101001001010 non-trading 10 -101001001010 mentoring 11 -101001001010 trombone 12 -101001001010 HP029 12 -101001001010 schnapps 13 -101001001010 housework 15 -101001001010 pushups 17 -101001001010 dentistry 18 -101001001010 shui 19 -101001001010 shingles 20 -101001001010 behemoth 36 -101001001010 ticker 39 -101001001010 business 33745 -101001001010 farming 331 -1010010010110 graphics-materials 1 -1010010010110 often-sued 1 -1010010010110 yackety 1 -1010010010110 tax-spending 1 -1010010010110 supply-growth 1 -1010010010110 retail-stores 1 -1010010010110 yacht-racing 1 -1010010010110 solar-engineering 1 -1010010010110 credit-management 1 -1010010010110 peer-counseling 1 -1010010010110 Chicano-lesbian 1 -1010010010110 Buick-Oldsmobile-Pontiac 1 -1010010010110 12-researcher 1 -1010010010110 serenading 1 -1010010010110 bank-creditor 1 -1010010010110 real-estate-lending 1 -1010010010110 coalition-ruled 1 -1010010010110 rumor-mill 1 -1010010010110 refrigeration-components 1 -1010010010110 Truckload 1 -1010010010110 insider-investigations 1 -1010010010110 no-longer-big 1 -1010010010110 One-for-one 1 -1010010010110 film-and-real-life 1 -1010010010110 tax-advisory 1 -1010010010110 All-Short 1 -1010010010110 global-trade-finance 1 -1010010010110 sustainable-agriculture 1 -1010010010110 trumpet-playing 1 -1010010010110 ProMax 1 -1010010010110 automotive-systems 1 -1010010010110 written-premium 1 -1010010010110 Comp-Tech 1 -1010010010110 lippy 1 -1010010010110 39,975 1 -1010010010110 once-handsome 1 -1010010010110 foodprocessing 1 -1010010010110 actress-courtesan 1 -1010010010110 testing-services 1 -1010010010110 fluid-technology 1 -1010010010110 technology/telecommunications 1 -1010010010110 project-finance 1 -1010010010110 travel-related-services 1 -1010010010110 beauty-queen 1 -1010010010110 corporate-coverage 1 -1010010010110 geeky 1 -1010010010110 leaveraged 1 -1010010010110 airplane-bird 1 -1010010010110 religous 1 -1010010010110 asset-managment 1 -1010010010110 Eastern-educated 1 -1010010010110 CHIPSet 1 -1010010010110 action-promoting 1 -1010010010110 sports-products 1 -1010010010110 trailguide 1 -1010010010110 vill 1 -1010010010110 cable-making 1 -1010010010110 Beelzebub 1 -1010010010110 corporate-strategy 1 -1010010010110 understandably-ex 1 -1010010010110 hostage-negotiating 1 -1010010010110 airline-hostess 1 -1010010010110 chip-repair 1 -1010010010110 professional-products 1 -1010010010110 appellate-litigation 1 -1010010010110 sureties 1 -1010010010110 restuarant 1 -1010010010110 hard-to-fill 1 -1010010010110 Vilgrain 1 -1010010010110 vavoom 1 -1010010010110 wraith-like 1 -1010010010110 interest-accrual 1 -1010010010110 federal-local 2 -1010010010110 sirloin 2 -1010010010110 new-ventures 2 -1010010010110 Roerig 2 -1010010010110 Olympic-like 2 -1010010010110 Mistsubishi 2 -1010010010110 1,4 2 -1010010010110 automotive-components 2 -1010010010110 sales-management 2 -1010010010110 post-1980 2 -1010010010110 NVA 2 -1010010010110 Europartners 2 -1010010010110 life-sciences 2 -1010010010110 market-analysis 2 -1010010010110 LWR 2 -1010010010110 ALS 2 -1010010010110 land-barge 2 -1010010010110 HU 2 -1010010010110 Buhrle 2 -1010010010110 misprinted 2 -1010010010110 Forest-Line 2 -1010010010110 run-on 3 -1010010010110 bank-regulation 3 -1010010010110 wielders 3 -1010010010110 CATS 3 -1010010010110 nuclear-planning 3 -1010010010110 farm-workers 3 -1010010010110 redesigns 3 -1010010010110 manangement 3 -1010010010110 do-it-yourselfer 3 -1010010010110 nonsalaried 3 -1010010010110 market-fund 3 -1010010010110 aircraft-building 3 -1010010010110 kryptonite 3 -1010010010110 24,200 3 -1010010010110 Thomson-SGS 3 -1010010010110 sanctions-busting 3 -1010010010110 2200/400 3 -1010010010110 medical-benefits 3 -1010010010110 political-economic 3 -1010010010110 high-skill 4 -1010010010110 doc 4 -1010010010110 corporate-identity 4 -1010010010110 Impco 4 -1010010010110 PARC 4 -1010010010110 Mostel 5 -1010010010110 eight-bit 5 -1010010010110 Savak 5 -1010010010110 mangement 6 -1010010010110 quartile 7 -1010010010110 DisplayWrite 7 -1010010010110 auctioneering 7 -1010010010110 Doughboy 7 -1010010010110 management. 8 -1010010010110 Chevrolet-Pontiac-Canada 9 -1010010010110 ballerinas 9 -1010010010110 Techint 9 -1010010010110 Nutrasweet 9 -1010010010110 SWAT 11 -1010010010110 VP 13 -1010010010110 schlock 14 -1010010010110 Perma 15 -1010010010110 prom 16 -1010010010110 managment 19 -1010010010110 Buick-Oldsmobile-Cadillac 25 -1010010010110 management 15893 -1010010010110 share-buying 29 -1010010010111 antique-filled 1 -1010010010111 low-rider 1 -1010010010111 vehicle-research 1 -1010010010111 school-committee 1 -1010010010111 Chicago-trained 1 -1010010010111 press-gallery 1 -1010010010111 estate-conservation 1 -1010010010111 13,847 1 -1010010010111 ex-boxing 1 -1010010010111 toiler 1 -1010010010111 atomic-bomb 1 -1010010010111 brokerage-affiliated 1 -1010010010111 gamey 1 -1010010010111 lady-explorer 1 -1010010010111 wirefraud 1 -1010010010111 statistical-services 1 -1010010010111 calculator-sized 1 -1010010010111 Klampenborg 1 -1010010010111 Italian-speaking 1 -1010010010111 anecdotage 1 -1010010010111 business-suited 1 -1010010010111 security-development 1 -1010010010111 seceding 1 -1010010010111 advisory-group 1 -1010010010111 drug-compliance 1 -1010010010111 trailer-office 1 -1010010010111 national-secuity 1 -1010010010111 gangsterish 1 -1010010010111 Machinist-union 1 -1010010010111 save-the-wildlife 1 -1010010010111 then-campaign 1 -1010010010111 let-the-locals-decide 1 -1010010010111 steering-committee 1 -1010010010111 dollar-pinching 1 -1010010010111 HMW 1 -1010010010111 self-chosen 2 -1010010010111 TED-spread 2 -1010010010111 kidney-disease 2 -1010010010111 advisory-board 2 -1010010010111 public-course 2 -1010010010111 bank-management 2 -1010010010111 hazel-eyed 2 -1010010010111 popular-music 2 -1010010010111 talkshow 2 -1010010010111 slavering 2 -1010010010111 white-cell 2 -1010010010111 jazzed-up 2 -1010010010111 commodity-fund 2 -1010010010111 predevelopment 2 -1010010010111 AWB 2 -1010010010111 hexagonally 2 -1010010010111 non-floor-trading 2 -1010010010111 ASL 2 -1010010010111 Vanceburg 2 -1010010010111 six-string 2 -1010010010111 nuclear-accident 2 -1010010010111 Supernova 3 -1010010010111 floorboard 3 -1010010010111 titlist 3 -1010010010111 1,585 3 -1010010010111 tyro 3 -1010010010111 management-board 3 -1010010010111 winegrowing 3 -1010010010111 hemophiliac 4 -1010010010111 TSP 4 -1010010010111 5-foot-9 4 -1010010010111 nectar 5 -1010010010111 nonfamily 5 -1010010010111 product-planning 5 -1010010010111 media-relations 6 -1010010010111 non-party 6 -1010010010111 delectable 7 -1010010010111 careerist 8 -1010010010111 politburo 9 -1010010010111 Award-winning 10 -1010010010111 counter-terrorism 10 -1010010010111 primes 11 -1010010010111 13d 19 -1010010010111 brakeman 21 -1010010010111 task-force 24 -1010010010111 directorate 72 -1010010010111 brigade 75 -1010010010111 gang 261 -1010010010111 faculty 367 -1010010010111 syndicate 593 -1010010010111 crew 871 -1010010010111 cabinet 1262 -1010010010111 fellow 1274 -1010010010111 personnel 1541 -1010010010111 staff 6011 -1010010010111 portfolio 3339 -1010010011000 =Have 1 -1010010011000 radon-screening 1 -1010010011000 air-cleaning 1 -1010010011000 GESTURE 1 -1010010011000 spending-factors 1 -1010010011000 COOLNESS 1 -1010010011000 shift-control 1 -1010010011000 nippers 1 -1010010011000 divisors 2 -1010010011000 flyby 2 -1010010011000 Meeschaert 2 -1010010011000 speedway 2 -1010010011000 covers. 2 -1010010011000 mudball 3 -1010010011000 near-disaster 3 -1010010011000 harvester 3 -1010010011000 prioritization 4 -1010010011000 Express-News 4 -1010010011000 Newswire 4 -1010010011000 microorganism 7 -1010010011000 footrace 7 -1010010011000 threshhold 8 -1010010011000 concourses 8 -1010010011000 countermeasure 8 -1010010011000 concessionaire 9 -1010010011000 sunroof 9 -1010010011000 cleanser 9 -1010010011000 analyzer 11 -1010010011000 break-in 11 -1010010011000 sonata 12 -1010010011000 contaminant 12 -1010010011000 SC 13 -1010010011000 pointer 13 -1010010011000 disinfectant 14 -1010010011000 quintet 14 -1010010011000 periodical 15 -1010010011000 diskette 18 -1010010011000 checkup 18 -1010010011000 sulfate 20 -1010010011000 gadget 22 -1010010011000 dispenser 24 -1010010011000 thermometer 26 -1010010011000 docket 31 -1010010011000 propellant 33 -1010010011000 catheter 34 -1010010011000 sponge 38 -1010010011000 venue 44 -1010010011000 setup 56 -1010010011000 carcinogen 64 -1010010011000 clearinghouse 69 -1010010011000 generator 84 -1010010011000 protocol 87 -1010010011000 craze 98 -1010010011000 kit 115 -1010010011000 herbicide 121 -1010010011000 squad 139 -1010010011000 valve 167 -1010010011000 hazard 201 -1010010011000 vessel 267 -1010010011000 format 343 -1010010011000 mechanism 522 -1010010011000 weapon 564 -1010010011000 bureaucracy 671 -1010010011000 procedure 693 -1010010011000 technique 698 -1010010011000 route 845 -1010010011000 formula 866 -1010010011000 device 1132 -1010010011000 initiative 1184 -1010010011000 scheme 1420 -1010010011000 program 14868 -1010010011000 machine 2417 -1010010011001 stackups 1 -1010010011001 ships/troopships 1 -1010010011001 center. 1 -1010010011001 osmotic 1 -1010010011001 less-than-radiant 1 -1010010011001 calls-that 1 -1010010011001 Hookers 1 -1010010011001 give-up 1 -1010010011001 sydrome 1 -1010010011001 author-historian 1 -1010010011001 proect 1 -1010010011001 boson 2 -1010010011001 plan. 2 -1010010011001 cruzeiro 2 -1010010011001 bill. 2 -1010010011001 intermediation 3 -1010010011001 keystroke 3 -1010010011001 pleaders 3 -1010010011001 legislation. 3 -1010010011001 minilab 3 -1010010011001 sytem 3 -1010010011001 decisions. 4 -1010010011001 snorer 4 -1010010011001 typesetter 4 -1010010011001 lifter 4 -1010010011001 hologram 5 -1010010011001 clerisy 5 -1010010011001 handicapper 6 -1010010011001 globulin 6 -1010010011001 chessboard 8 -1010010011001 prosthesis 8 -1010010011001 gizmo 9 -1010010011001 dynamo 10 -1010010011001 sentries 11 -1010010011001 leviathan 12 -1010010011001 colossus 17 -1010010011001 Confederacy 19 -1010010011001 set-up 19 -1010010011001 warden 24 -1010010011001 cutter 27 -1010010011001 printout 30 -1010010011001 pathway 38 -1010010011001 dynasty 56 -1010010011001 ladder 169 -1010010011001 apparatus 195 -1010010011001 curve 214 -1010010011001 profession 481 -1010010011001 syndrome 696 -1010010011001 regime 1232 -1010010011001 system 15761 -1010010011001 structure 2360 -1010010011010 bond-dealing 1 -1010010011010 oil. 1 -1010010011010 Pollyannas 1 -1010010011010 AUDITORS 1 -1010010011010 dollar-holdings 1 -1010010011010 ITSELF 1 -1010010011010 overhaul-related 1 -1010010011010 works-related 1 -1010010011010 royalism 1 -1010010011010 thought. 1 -1010010011010 military-sale 1 -1010010011010 parlance-while 1 -1010010011010 forcasts 1 -1010010011010 pointman 1 -1010010011010 normatives 1 -1010010011010 triumverate 1 -1010010011010 pattern. 1 -1010010011010 design-life 1 -1010010011010 juddgments 1 -1010010011010 values-free 1 -1010010011010 rate-IRA 1 -1010010011010 factor. 1 -1010010011010 dressed-in-black 1 -1010010011010 re-opener 1 -1010010011010 buyers. 1 -1010010011010 risk-benefited 1 -1010010011010 macro-indicators 1 -1010010011010 misrule 2 -1010010011010 competitiors 2 -1010010011010 upliftment 2 -1010010011010 mastitis 2 -1010010011010 brassheads 2 -1010010011010 telecommunications-policy 2 -1010010011010 lexicography 2 -1010010011010 affairs. 2 -1010010011010 dissaving 3 -1010010011010 fecklessness 3 -1010010011010 trial. 3 -1010010011010 suppport 3 -1010010011010 assigned-risk 3 -1010010011010 language. 3 -1010010011010 royalists 3 -1010010011010 performance. 4 -1010010011010 hotspots 4 -1010010011010 dissavings 4 -1010010011010 issues. 4 -1010010011010 seapower 4 -1010010011010 consensus-building 5 -1010010011010 mercantilists 5 -1010010011010 stooge 5 -1010010011010 fisc 7 -1010010011010 decisionmaking 7 -1010010011010 somatotropin 7 -1010010011010 policy. 7 -1010010011010 stringency 9 -1010010011010 stollen 9 -1010010011010 readjustment 10 -1010010011010 government. 10 -1010010011010 opprobrium 13 -1010010011010 rectitude 13 -1010010011010 stimulants 14 -1010010011010 collaborations 15 -1010010011010 lifeline 26 -1010010011010 largesse 32 -1010010011010 stimulation 52 -1010010011010 stimulus 228 -1010010011010 affairs 1983 -1010010011010 reform 2578 -1010010011010 policy 12756 -10100100110110 sport-fishermen 1 -10100100110110 Kozyrev 1 -10100100110110 cook-offs 1 -10100100110110 slurpers 1 -10100100110110 damage-flattened 1 -10100100110110 locaters 1 -10100100110110 chewers 1 -10100100110110 bearnaise 1 -10100100110110 Scarf 1 -10100100110110 gage 1 -10100100110110 tractor-cades 1 -10100100110110 chicken-skin 1 -10100100110110 heavers 1 -10100100110110 rellenos 1 -10100100110110 k-e-e-p-s 1 -10100100110110 Fenvalerate 1 -10100100110110 check-forging 1 -10100100110110 limitable 1 -10100100110110 crimpers 1 -10100100110110 Sociales 1 -10100100110110 cov 1 -10100100110110 stirrups 1 -10100100110110 Eludes 1 -10100100110110 business-records 1 -10100100110110 Respiration 1 -10100100110110 area-commander 1 -10100100110110 responsibily 1 -10100100110110 nada 1 -10100100110110 vehicles. 1 -10100100110110 booboos 1 -10100100110110 industryas 1 -10100100110110 tectonics 1 -10100100110110 railbed 1 -10100100110110 scaler 1 -10100100110110 handers 1 -10100100110110 purees 1 -10100100110110 dispersions 1 -10100100110110 veterans. 1 -10100100110110 spawning-ground 1 -10100100110110 nibblers 1 -10100100110110 bisque 1 -10100100110110 aqueduct 1 -10100100110110 footballers 2 -10100100110110 BankAmericard 2 -10100100110110 kinetic-killers 2 -10100100110110 write-ups 2 -10100100110110 20-F 2 -10100100110110 droppers 2 -10100100110110 Clyne 2 -10100100110110 crisis-era 2 -10100100110110 basketballers 2 -10100100110110 hunter-gatherers 2 -10100100110110 alliance. 2 -10100100110110 tutti 3 -10100100110110 vaccuum 3 -10100100110110 awakenings 3 -10100100110110 SS-18s 3 -10100100110110 vocabularies 3 -10100100110110 Embassies 3 -10100100110110 regrowth 3 -10100100110110 cru 3 -10100100110110 rovers 3 -10100100110110 sumps 3 -10100100110110 sprite 4 -10100100110110 clindamycin 4 -10100100110110 net-pens 4 -10100100110110 bonnets 4 -10100100110110 Euridice 4 -10100100110110 clime 4 -10100100110110 ringmaster 4 -10100100110110 Trophy 5 -10100100110110 biplane 5 -10100100110110 hideouts 5 -10100100110110 sparkled 6 -10100100110110 exchanger 6 -10100100110110 bordello 6 -10100100110110 splices 7 -10100100110110 F-111s 7 -10100100110110 charades 7 -10100100110110 hideout 8 -10100100110110 cannister 8 -10100100110110 sallies 8 -10100100110110 PIN 9 -10100100110110 hatcheries 9 -10100100110110 exchangers 10 -10100100110110 lookalike 11 -10100100110110 insignia 13 -10100100110110 setters 14 -10100100110110 dunes 15 -10100100110110 bleeds 15 -10100100110110 Opens 16 -10100100110110 outrages 21 -10100100110110 fins 22 -10100100110110 allocators 23 -10100100110110 preparedness 24 -10100100110110 cannons 30 -10100100110110 deployments 31 -10100100110110 implements 36 -10100100110110 stunts 36 -10100100110110 rebounds 38 -10100100110110 stabilizes 50 -10100100110110 harbors 53 -10100100110110 juices 60 -10100100110110 plasminogen 62 -10100100110110 escorts 72 -10100100110110 patrols 77 -10100100110110 handlers 128 -10100100110110 exercises 231 -10100100110110 belts 256 -10100100110110 guards 317 -10100100110110 hostage 401 -10100100110110 bases 1028 -10100100110110 values 2506 -10100100110110 forces 3589 -10100100110110 -RCB- 4154 -10100100110111 ambassador-nominee 1 -10100100110111 processional 1 -10100100110111 drop-kicker 1 -10100100110111 apparatuses 1 -10100100110111 strength-more 1 -10100100110111 commandantes 1 -10100100110111 \cuts 1 -10100100110111 OBJECTIONS 1 -10100100110111 returnee 1 -10100100110111 assitance 1 -10100100110111 buildup. 1 -10100100110111 euromissiles 1 -10100100110111 dockyard 1 -10100100110111 juntas 1 -10100100110111 martinets 1 -10100100110111 forces. 1 -10100100110111 forces-which 1 -10100100110111 i0 1 -10100100110111 stock-plan 1 -10100100110111 oppositio 1 -10100100110111 prgas 1 -10100100110111 mulelift 1 -10100100110111 target-towing 1 -10100100110111 resale-royalty 1 -10100100110111 functions. 1 -10100100110111 MARINES 1 -10100100110111 defense-funding 1 -10100100110111 serivces 1 -10100100110111 prosposal 1 -10100100110111 sub-committee 1 -10100100110111 infiltrations 1 -10100100110111 unlimited-underwater 1 -10100100110111 specialists. 1 -10100100110111 ratios-caused 1 -10100100110111 selfinterest 1 -10100100110111 judgments. 2 -10100100110111 recruitments 2 -10100100110111 recipiency 2 -10100100110111 acrobat 3 -10100100110111 involvements 3 -10100100110111 oligarchies 3 -10100100110111 arms-supply 3 -10100100110111 mixups 3 -10100100110111 potentates 6 -10100100110111 legerdemain 9 -10100100110111 conscription 16 -10100100110111 Armageddon 20 -10100100110111 emissary 24 -10100100110111 wherewithal 32 -10100100110111 advisor 33 -10100100110111 attache 45 -10100100110111 airlift 143 -10100100110111 envoy 199 -10100100110111 planner 274 -10100100110111 ambassador 621 -10100100110111 assistance 1827 -10100100110111 aid 4621 -10100100110111 adviser 2946 -1010010011100 gashlike 1 -1010010011100 officio 1 -1010010011100 jointed 1 -1010010011100 falutin 1 -1010010011100 Jura 1 -1010010011100 tax-review 1 -1010010011100 copper-colored 1 -1010010011100 wheelchair-marathon 1 -1010010011100 sugar-farming 1 -1010010011100 economic-justice 1 -1010010011100 Kareol 1 -1010010011100 T4-cell 1 -1010010011100 six-wheeled 1 -1010010011100 anti-Saudi 1 -1010010011100 objectives/characteristics 1 -1010010011100 job-referral 1 -1010010011100 free-hospital 1 -1010010011100 balling 1 -1010010011100 sierra 1 -1010010011100 school-only 1 -1010010011100 Ahaggar 1 -1010010011100 Asir 1 -1010010011100 Guildhall 2 -1010010011100 Juchitan 2 -1010010011100 over-achievers 2 -1010010011100 Wanchai 2 -1010010011100 timbres 2 -1010010011100 beguilement 2 -1010010011100 walkaway 2 -1010010011100 unviewed 2 -1010010011100 socialism. 2 -1010010011100 Auvergne 2 -1010010011100 event. 2 -1010010011100 Stetsons 2 -1010010011100 dick 2 -1010010011100 Fs 2 -1010010011100 tessitura 2 -1010010011100 terrorism. 2 -1010010011100 Jap 2 -1010010011100 3,663 2 -1010010011100 riff 2 -1010010011100 Melians 2 -1010010011100 Heerlen 2 -1010010011100 Sisyphus 3 -1010010011100 dragon-boat 3 -1010010011100 semi-abstract 3 -1010010011100 practical-minded 3 -1010010011100 Alleghenies 3 -1010010011100 4,440 3 -1010010011100 home-economics 3 -1010010011100 fortresses 3 -1010010011100 demimonde 3 -1010010011100 birth-weight 3 -1010010011100 reflector 3 -1010010011100 loam 3 -1010010011100 school-educated 3 -1010010011100 scorpion 3 -1010010011100 crescent 3 -1010010011100 waterfronts 3 -1010010011100 SS-1 4 -1010010011100 cymbals 4 -1010010011100 grassland 4 -1010010011100 sanitarian 4 -1010010011100 rectory 4 -1010010011100 one-handed 4 -1010010011100 creationist 4 -1010010011100 hilltops 4 -1010010011100 lowland 4 -1010010011100 cavalryman 4 -1010010011100 negligee 4 -1010010011100 numeral 4 -1010010011100 Rockettes 4 -1010010011100 tablecloth 4 -1010010011100 confreres 4 -1010010011100 misadventure 4 -1010010011100 knoll 5 -1010010011100 Ivry 5 -1010010011100 do-gooder 5 -1010010011100 riverbank 5 -1010010011100 esplanade 5 -1010010011100 lowlands 6 -1010010011100 Kush 6 -1010010011100 oilfields 6 -1010010011100 rectangles 7 -1010010011100 self-treatment 7 -1010010011100 scrawl 7 -1010010011100 slicker 8 -1010010011100 bullfighter 8 -1010010011100 blandishments 9 -1010010011100 minstrel 9 -1010010011100 readout 9 -1010010011100 titan 9 -1010010011100 Kurdistan 10 -1010010011100 taiko 10 -1010010011100 skits 11 -1010010011100 captions 11 -1010010011100 hygienist 11 -1010010011100 mermaid 11 -1010010011100 equivalency 12 -1010010011100 dispossessed 12 -1010010011100 bayou 12 -1010010011100 shutters 12 -1010010011100 UNCF 12 -1010010011100 repute 12 -1010010011100 Moment 12 -1010010011100 cults 14 -1010010011100 monolith 14 -1010010011100 promenade 14 -1010010011100 seaport 15 -1010010011100 Masses 15 -1010010011100 samurai 15 -1010010011100 birch 15 -1010010011100 think-tank 16 -1010010011100 shantytown 16 -1010010011100 pews 16 -1010010011100 gentry 18 -1010010011100 councilors 19 -1010010011100 yearbook 20 -1010010011100 barrio 20 -1010010011100 pines 21 -1010010011100 cape 22 -1010010011100 vernacular 24 -1010010011100 squire 24 -1010010011100 lettering 26 -1010010011100 safari 28 -1010010011100 bourgeoisie 30 -1010010011100 sprawl 31 -1010010011100 festivals 31 -1010010011100 slang 33 -1010010011100 90s 34 -1010010011100 backwater 34 -1010010011100 spa 35 -1010010011100 roulette 39 -1010010011100 hallways 40 -1010010011100 etiquette 41 -1010010011100 hamlet 48 -1010010011100 colonies 62 -1010010011100 parish 62 -1010010011100 plains 66 -1010010011100 heartland 68 -1010010011100 underclass 72 -1010010011100 seas 73 -1010010011100 slums 81 -1010010011100 ghetto 83 -1010010011100 barracks 86 -1010010011100 boutique 90 -1010010011100 majors 92 -1010010011100 dictionary 95 -1010010011100 jewels 95 -1010010011100 township 111 -1010010011100 prince 124 -1010010011100 bulletin 135 -1010010011100 curriculum 148 -1010010011100 frontier 161 -1010010011100 sculpture 168 -1010010011100 glory 172 -1010010011100 traveler 176 -1010010011100 journalism 254 -1010010011100 exile 259 -1010010011100 clinic 306 -1010010011100 Revolution 312 -1010010011100 suburbs 323 -1010010011100 fiction 325 -1010010011100 journal 385 -1010010011100 campus 409 -1010010011100 elite 442 -1010010011100 arts 443 -1010010011100 parks 461 -1010010011100 port 481 -1010010011100 library 501 -1010010011100 village 529 -1010010011100 flag 540 -1010010011100 neighborhood 699 -1010010011100 sport 777 -1010010011100 enterprise 807 -1010010011100 park 938 -1010010011100 club 957 -1010010011100 tape 957 -1010010011100 society 2110 -1010010011100 town 2444 -1010010011100 schools 2516 -1010010011100 practice 2700 -1010010011100 community 3433 -1010010011100 school 4376 -1010010011101 HJR 1 -1010010011101 restaurant-related 1 -1010010011101 psychology. 1 -1010010011101 Orlean 1 -1010010011101 Skids 1 -1010010011101 conniption 1 -1010010011101 Medeo 1 -1010010011101 69-cent 1 -1010010011101 letterhead. 1 -1010010011101 Tacjams 1 -1010010011101 16-track 1 -1010010011101 Taskhkadzor 1 -1010010011101 martket 1 -1010010011101 Lanzino 1 -1010010011101 Gan-Ru 1 -1010010011101 NEA-owned 1 -1010010011101 Basks 1 -1010010011101 ceramics-copper-oxide 1 -1010010011101 K-Series 1 -1010010011101 congressional-bureaucratic-journalistic 1 -1010010011101 Fulano 1 -1010010011101 306,000-square-foot 1 -1010010011101 Elek 1 -1010010011101 five-color 1 -1010010011101 Kepong 1 -1010010011101 jam-ups 1 -1010010011101 nomenclatura 1 -1010010011101 inward-investment 1 -1010010011101 500,000-name 1 -1010010011101 impresario-like 1 -1010010011101 Zalaquett 1 -1010010011101 head-wise 1 -1010010011101 once-lavish 1 -1010010011101 Times-Union 1 -1010010011101 asset-financing 1 -1010010011101 careers. 1 -1010010011101 1976-86 1 -1010010011101 glanders 1 -1010010011101 serious-faced 1 -1010010011101 atrisk 1 -1010010011101 Thermenos 1 -1010010011101 burned-over 1 -1010010011101 dispersement 1 -1010010011101 peace-talk 1 -1010010011101 faint-voiced 1 -1010010011101 Enteria 1 -1010010011101 means-based 1 -1010010011101 non-telecommunications 1 -1010010011101 Intraco 1 -1010010011101 Pizarro 1 -1010010011101 mall-office 1 -1010010011101 cradlelike 1 -1010010011101 jostles 1 -1010010011101 immuno-stimulating 1 -1010010011101 performance-day 1 -1010010011101 deicer 1 -1010010011101 Sophisticate 1 -1010010011101 anti-lice 1 -1010010011101 inyanga 1 -1010010011101 Valdiviesco 1 -1010010011101 Bank-Huron 1 -1010010011101 9R/27L 1 -1010010011101 720,000-square-foot 1 -1010010011101 Weltwirtschaft 1 -1010010011101 Ingenuity 1 -1010010011101 Super-Dough 1 -1010010011101 protection. 1 -1010010011101 auto-plant 1 -1010010011101 95-points-per-game 1 -1010010011101 Contents 1 -1010010011101 viprostol 1 -1010010011101 fat-replacement 1 -1010010011101 2,134-year-old 1 -1010010011101 Apollinaire 1 -1010010011101 manufactuing 1 -1010010011101 Mouratgolu 1 -1010010011101 advertising-ESPN 1 -1010010011101 selection. 1 -1010010011101 Jouvet 1 -1010010011101 sills 1 -1010010011101 61-mile 1 -1010010011101 lefthand 1 -1010010011101 broadcastng 1 -1010010011101 2.3-million-square-foot 1 -1010010011101 6-foot-high 1 -1010010011101 nuclear-storage 1 -1010010011101 Telephone. 1 -1010010011101 14-12 1 -1010010011101 self-alleged 1 -1010010011101 black-walled 1 -1010010011101 AN/ALQ-135 1 -1010010011101 second-safest 1 -1010010011101 ganlanqiu 1 -1010010011101 Chaya 1 -1010010011101 blasphemed 1 -1010010011101 democratic-reform 1 -1010010011101 minisummit 1 -1010010011101 ropelike 1 -1010010011101 Fievel-adorned 1 -1010010011101 car-painting 1 -1010010011101 socialite-oracle 1 -1010010011101 swing-and-picket 1 -1010010011101 born-and-bred 1 -1010010011101 2,400-seat 1 -1010010011101 leather-covered 1 -1010010011101 ................................ 1 -1010010011101 defense-market 1 -1010010011101 Motorolas 1 -1010010011101 Square-area 1 -1010010011101 grounders 1 -1010010011101 ocean-transportation 1 -1010010011101 stalkers 1 -1010010011101 building-restoration 1 -1010010011101 Gruson 1 -1010010011101 Sojic 1 -1010010011101 Munchkins 1 -1010010011101 thongs. 1 -1010010011101 public-schools 1 -1010010011101 shed-like 1 -1010010011101 knocker 1 -1010010011101 191,000-square-foot 1 -1010010011101 laddie 1 -1010010011101 doublers 1 -1010010011101 office-shopping 1 -1010010011101 union-by-union 1 -1010010011101 cobras 1 -1010010011101 wingshooting 1 -1010010011101 stockbrockerage 1 -1010010011101 hotel/entertainment 1 -1010010011101 1988-1989-1990 1 -1010010011101 proof. 1 -1010010011101 much-developed 1 -1010010011101 Canucks 1 -1010010011101 10,729 1 -1010010011101 voles 1 -1010010011101 cherimoya 1 -1010010011101 light-vehicle-parts 1 -1010010011101 often-predicted 1 -1010010011101 Gillibrand 1 -1010010011101 37-story 1 -1010010011101 dissolvents 1 -1010010011101 Maree 1 -1010010011101 outlet. 1 -1010010011101 sidestreet 1 -1010010011101 2,572 1 -1010010011101 chamberpot 1 -1010010011101 Cassise 1 -1010010011101 empty-necked 1 -1010010011101 v.B. 1 -1010010011101 TAS-65 1 -1010010011101 tomato-ish 1 -1010010011101 INT-1 1 -1010010011101 Grafica 1 -1010010011101 singer-comedian 1 -1010010011101 position-location 1 -1010010011101 Chronical 1 -1010010011101 off-the-bench 1 -1010010011101 inflation-watchers 1 -1010010011101 clock-stopped 1 -1010010011101 usinessmen 1 -1010010011101 defoggers 1 -1010010011101 conglomerated 1 -1010010011101 Lookouts 1 -1010010011101 Mattei 1 -1010010011101 Stewart-Hertzberg 1 -1010010011101 gray-walled 1 -1010010011101 Concertgebouw 1 -1010010011101 abbess 1 -1010010011101 ex-friends 2 -1010010011101 Staatsoper 2 -1010010011101 Skydome 2 -1010010011101 Basilio 2 -1010010011101 trouble-making 2 -1010010011101 conveyers 2 -1010010011101 mortem 2 -1010010011101 optionals 2 -1010010011101 47-story 2 -1010010011101 D-3 2 -1010010011101 Triumphant 2 -1010010011101 Claremore 2 -1010010011101 headwaters 2 -1010010011101 sarcophagus 2 -1010010011101 procrastinates 2 -1010010011101 14-32 2 -1010010011101 taproom 2 -1010010011101 Irmas 2 -1010010011101 two-million-square-foot 2 -1010010011101 alternative-fuel 2 -1010010011101 evil-smelling 2 -1010010011101 quick-cooking 2 -1010010011101 Ghawar 2 -1010010011101 05 2 -1010010011101 Argonauts 2 -1010010011101 shore-front 2 -1010010011101 CityTrust 2 -1010010011101 Shangri-la 2 -1010010011101 cabarets 3 -1010010011101 unblushing 3 -1010010011101 Sketchbooks 3 -1010010011101 nuclear-production 3 -1010010011101 Atoll 3 -1010010011101 engraver 3 -1010010011101 coffeehouse 3 -1010010011101 Penguins 3 -1010010011101 overstretched 3 -1010010011101 rope-like 3 -1010010011101 schoolrooms 3 -1010010011101 yams 3 -1010010011101 most-publicized 3 -1010010011101 preludes 3 -1010010011101 islander 3 -1010010011101 prism-shaped 3 -1010010011101 Rizal 3 -1010010011101 Mausoleum 3 -1010010011101 pleasers 3 -1010010011101 Peerage 3 -1010010011101 hostelry 3 -1010010011101 co-ordinator 3 -1010010011101 Lotto 3 -1010010011101 menu. 3 -1010010011101 overprotected 3 -1010010011101 WKAQ-TV 3 -1010010011101 Araiza 3 -1010010011101 liposuctions 4 -1010010011101 Tatler 4 -1010010011101 defogger 4 -1010010011101 KPFK-FM 4 -1010010011101 WSVN-TV 4 -1010010011101 eight-story 4 -1010010011101 optician 4 -1010010011101 BART 4 -1010010011101 neurotics 4 -1010010011101 pleaser 4 -1010010011101 Florist 4 -1010010011101 DMS-100 4 -1010010011101 speakeasy 4 -1010010011101 Sharfman 4 -1010010011101 Glue 4 -1010010011101 beltway 5 -1010010011101 nightspot 5 -1010010011101 Beans 5 -1010010011101 bistro 5 -1010010011101 Desdemona 5 -1010010011101 Forties 5 -1010010011101 Allied/Federated 5 -1010010011101 metering 6 -1010010011101 scat 6 -1010010011101 caterer 6 -1010010011101 Stradivari 7 -1010010011101 AHEAD 7 -1010010011101 Docklands 7 -1010010011101 Anatolia 7 -1010010011101 fairgrounds 8 -1010010011101 Dorset 8 -1010010011101 Wola 8 -1010010011101 Reservoir 10 -1010010011101 epoxy 10 -1010010011101 Statehouse 10 -1010010011101 semis 12 -1010010011101 dissolvers 13 -1010010011101 brownstone 13 -1010010011101 delta 14 -1010010011101 Freeway 14 -1010010011101 buster 15 -1010010011101 Star-Telegram 15 -1010010011101 Tavern 15 -1010010011101 wipers 16 -1010010011101 McNuggets 17 -1010010011101 tenement 17 -1010010011101 orchard 20 -1010010011101 lysis 20 -1010010011101 Fog 22 -1010010011101 expressway 23 -1010010011101 Thoroughbred 24 -1010010011101 sarcoma 25 -1010010011101 secretariat 26 -1010010011101 Sonata 27 -1010010011101 symphonies 29 -1010010011101 Birthday 30 -1010010011101 BBB 30 -1010010011101 inferiority 32 -1010010011101 precincts 33 -1010010011101 loft 34 -1010010011101 Vineyard 35 -1010010011101 mayonnaise 37 -1010010011101 dissolver 39 -1010010011101 Bourse 49 -1010010011101 skyline 49 -1010010011101 LaGuardia 50 -1010010011101 tallest 52 -1010010011101 townhouse 52 -1010010011101 Cathedral 55 -1010010011101 skyscraper 57 -1010010011101 coverings 60 -1010010011101 Reliant 63 -1010010011101 Newsday 72 -1010010011101 inmate 74 -1010010011101 waterfront 115 -1010010011101 Choice 140 -1010010011101 Philharmonic 152 -1010010011101 Symphony 240 -1010010011101 Strip 242 -1010010011101 hub 335 -1010010011101 embassy 409 -1010010011101 apartment 965 -1010010011101 bureau 976 -1010010011101 office 11070 -1010010011101 headquarters 2520 -1010010011110 crawler 1 -1010010011110 SDI-derived 1 -1010010011110 scenarist 1 -1010010011110 beause 1 -1010010011110 availabilities 1 -1010010011110 extracurriculars 1 -1010010011110 evening. 1 -1010010011110 stockpilings 1 -1010010011110 jasper 1 -1010010011110 Songbook 1 -1010010011110 influence-peddlers 1 -1010010011110 Journal-American 1 -1010010011110 KH-12 2 -1010010011110 shoal 2 -1010010011110 eight-pounder 2 -1010010011110 Gallardo 2 -1010010011110 skiff 2 -1010010011110 boat. 2 -1010010011110 arm-twister 2 -1010010011110 pace-setters 2 -1010010011110 up-and-comer 2 -1010010011110 skylines 3 -1010010011110 18-wheeler 3 -1010010011110 stayover 3 -1010010011110 group. 3 -1010010011110 fractionalization 3 -1010010011110 dumper 3 -1010010011110 scrappage 3 -1010010011110 iguana 3 -1010010011110 Herald-Tribune 3 -1010010011110 desperadoes 3 -1010010011110 quarterbacking 3 -1010010011110 crawlers 3 -1010010011110 personages 3 -1010010011110 stay-over 4 -1010010011110 watchman 4 -1010010011110 anitu 4 -1010010011110 omelet 4 -1010010011110 agglutination 4 -1010010011110 nouns 4 -1010010011110 anvil 4 -1010010011110 salesroom 4 -1010010011110 7310 4 -1010010011110 abortifacient 5 -1010010011110 attendee 5 -1010010011110 indentation 5 -1010010011110 inhaler 5 -1010010011110 snowfalls 5 -1010010011110 embankment 5 -1010010011110 allegro 5 -1010010011110 prelims 5 -1010010011110 incarnate 5 -1010010011110 cityscapes 6 -1010010011110 huddles 6 -1010010011110 burg 6 -1010010011110 electrocardiogram 6 -1010010011110 MFA 6 -1010010011110 apparition 6 -1010010011110 antigen 6 -1010010011110 soiree 6 -1010010011110 inlet 7 -1010010011110 one. 7 -1010010011110 interregnum 7 -1010010011110 waif 7 -1010010011110 achiever 7 -1010010011110 artisan 7 -1010010011110 splint 7 -1010010011110 churchyard 7 -1010010011110 idyll 7 -1010010011110 X-car 8 -1010010011110 topography 8 -1010010011110 junction 8 -1010010011110 F-117A 8 -1010010011110 allocator 8 -1010010011110 gossips 8 -1010010011110 imitator 8 -1010010011110 endpoint 9 -1010010011110 urn 9 -1010010011110 flimflam 9 -1010010011110 inquisition 9 -1010010011110 attacker 9 -1010010011110 interloper 10 -1010010011110 ex-cop 10 -1010010011110 officeholder 10 -1010010011110 F-19 10 -1010010011110 aficionado 10 -1010010011110 orphanage 10 -1010010011110 craziness 11 -1010010011110 mutt 11 -1010010011110 fest 11 -1010010011110 eater 11 -1010010011110 armory 11 -1010010011110 undertaker 11 -1010010011110 enclosure 12 -1010010011110 mandarins 12 -1010010011110 regalia 12 -1010010011110 interviewee 12 -1010010011110 Massacre 12 -1010010011110 bullpen 13 -1010010011110 appellation 13 -1010010011110 spinner 13 -1010010011110 ogre 13 -1010010011110 oligarchy 14 -1010010011110 interlude 15 -1010010011110 ecosystem 15 -1010010011110 Astrodome 15 -1010010011110 elixir 15 -1010010011110 drizzle 15 -1010010011110 citadel 15 -1010010011110 infield 16 -1010010011110 underbrush 16 -1010010011110 armada 17 -1010010011110 itch 18 -1010010011110 undertone 19 -1010010011110 invader 19 -1010010011110 assailant 19 -1010010011110 module 19 -1010010011110 outcast 19 -1010010011110 incubator 20 -1010010011110 mafia 20 -1010010011110 anesthetic 21 -1010010011110 intruder 21 -1010010011110 milieu 21 -1010010011110 atlas 21 -1010010011110 infestation 21 -1010010011110 atrium 21 -1010010011110 orator 22 -1010010011110 oxymoron 23 -1010010011110 antagonist 23 -1010010011110 escalator 24 -1010010011110 organism 25 -1010010011110 aquarium 25 -1010010011110 apron 26 -1010010011110 idol 26 -1010010011110 aquifer 27 -1010010011110 splendor 27 -1010010011110 undercount 27 -1010010011110 aristocracy 27 -1010010011110 stripe 27 -1010010011110 ornament 27 -1010010011110 inscription 27 -1010010011110 enforcer 28 -1010010011110 lexicon 29 -1010010011110 Affair 30 -1010010011110 albatross 30 -1010010011110 inn 33 -1010010011110 idiot 33 -1010010011110 oasis 35 -1010010011110 airfield 36 -1010010011110 newscast 36 -1010010011110 aggressor 38 -1010010011110 metropolis 38 -1010010011110 subdivision 38 -1010010011110 umpire 40 -1010010011110 aria 41 -1010010011110 embryo 41 -1010010011110 intersection 42 -1010010011110 icon 42 -1010010011110 bazaar 42 -1010010011110 ideologue 42 -1010010011110 innovator 44 -1010010011110 rink 44 -1010010011110 angel 44 -1010010011110 interval 46 -1010010011110 airstrip 46 -1010010011110 alley 47 -1010010011110 outing 48 -1010010011110 outpost 48 -1010010011110 ace 48 -1010010011110 offender 52 -1010010011110 lore 54 -1010010011110 eagle 61 -1010010011110 enclave 61 -1010010011110 basin 62 -1010010011110 aisle 64 -1010010011110 expedition 65 -1010010011110 addict 69 -1010010011110 underdog 69 -1010010011110 extravaganza 70 -1010010011110 avenue 71 -1010010011110 interpreter 76 -1010010011110 acquaintance 77 -1010010011110 ailment 77 -1010010011110 ordeal 77 -1010010011110 antibiotic 77 -1010010011110 artery 78 -1010010011110 auditorium 84 -1010010011110 enzyme 89 -1010010011110 envelope 90 -1010010011110 angle 95 -1010010011110 ensemble 104 -1010010011110 adversary 110 -1010010011110 analogy 110 -1010010011110 applicant 121 -1010010011110 equation 134 -1010010011110 upswing 151 -1010010011110 corridor 168 -1010010011110 elephant 169 -1010010011110 outfit 172 -1010010011110 doldrums 175 -1010010011110 exam 181 -1010010011110 mentality 182 -1010010011110 earthquake 186 -1010010011110 elevator 192 -1010010011110 lineup 196 -1010010011110 outlet 205 -1010010011110 uprising 214 -1010010011110 album 240 -1010010011110 epidemic 252 -1010010011110 umbrella 258 -1010010011110 orchestra 284 -1010010011110 attraction 312 -1010010011110 landscape 317 -1010010011110 assignment 328 -1010010011110 exhibition 378 -1010010011110 arena 410 -1010010011110 opponent 473 -1010010011110 zone 476 -1010010011110 instrument 485 -1010010011110 ally 495 -1010010011110 enemy 518 -1010010011110 opera 539 -1010010011110 entity 594 -1010010011110 explosion 632 -1010010011110 item 640 -1010010011110 atmosphere 745 -1010010011110 establishment 756 -1010010011110 Olympics 766 -1010010011110 era 1121 -1010010011110 accident 1425 -1010010011110 institution 1481 -1010010011110 affair 1528 -1010010011110 audience 1592 -1010010011110 environment 1817 -1010010011110 body 1953 -1010010011110 organization 2762 -1010010011110 center 3278 -1010010011110 area 5366 -1010010011110 session 3723 -1010010011111 cathedral-style 1 -1010010011111 sea-view 1 -1010010011111 Waldens 1 -1010010011111 pretty-much 1 -1010010011111 back-lights 1 -1010010011111 taupe 1 -1010010011111 overreaches 2 -1010010011111 non-realistic 2 -1010010011111 203-acre 2 -1010010011111 waddlers 2 -1010010011111 ministates 2 -1010010011111 horsepacking 2 -1010010011111 snowbanks 3 -1010010011111 uptake 3 -1010010011111 boater 3 -1010010011111 sidewalls 3 -1010010011111 disease. 3 -1010010011111 kitchenette 3 -1010010011111 WWOR-TV 3 -1010010011111 pathogen 3 -1010010011111 synchrotrons 3 -1010010011111 lamprey 4 -1010010011111 Centipede 4 -1010010011111 Rhineland 4 -1010010011111 doormat 4 -1010010011111 Rialto 4 -1010010011111 awning 4 -1010010011111 ambience 4 -1010010011111 proctor 4 -1010010011111 Shatt-al-Arab 4 -1010010011111 theatergoer 4 -1010010011111 patois 4 -1010010011111 casserole 4 -1010010011111 mir 4 -1010010011111 trellis 4 -1010010011111 troubleshooting 4 -1010010011111 trajectories 5 -1010010011111 entryway 5 -1010010011111 moderators 5 -1010010011111 Hug-A-World 5 -1010010011111 mistral 5 -1010010011111 crags 5 -1010010011111 proprieties 5 -1010010011111 nave 5 -1010010011111 anthill 5 -1010010011111 armpit 5 -1010010011111 linguist 5 -1010010011111 wheelbase 5 -1010010011111 paddock 5 -1010010011111 grounder 5 -1010010011111 lobotomy 6 -1010010011111 headmistress 6 -1010010011111 downpour 6 -1010010011111 verisimilitude 6 -1010010011111 beautification 6 -1010010011111 doorbell 6 -1010010011111 Mobe 6 -1010010011111 boulder 6 -1010010011111 griddle 6 -1010010011111 stairwell 7 -1010010011111 triptych 7 -1010010011111 hydrant 7 -1010010011111 pendant 7 -1010010011111 pew 8 -1010010011111 mid-80s 8 -1010010011111 pusher 8 -1010010011111 galley 8 -1010010011111 mists 8 -1010010011111 wringer 8 -1010010011111 boondocks 8 -1010010011111 cupboard 8 -1010010011111 fulcrum 8 -1010010011111 scroll 8 -1010010011111 passageway 9 -1010010011111 checker 9 -1010010011111 flask 9 -1010010011111 faucet 9 -1010010011111 hare 9 -1010010011111 lavatory 9 -1010010011111 stylus 9 -1010010011111 hostel 9 -1010010011111 OED 9 -1010010011111 Flintstones 9 -1010010011111 Flowton 10 -1010010011111 gearbox 10 -1010010011111 slammer 10 -1010010011111 wildcatters 10 -1010010011111 semifinals 10 -1010010011111 redness 10 -1010010011111 dressers 10 -1010010011111 moat 10 -1010010011111 seashore 10 -1010010011111 Tevatron 10 -1010010011111 cauldron 10 -1010010011111 cavity 10 -1010010011111 mailroom 11 -1010010011111 scum 11 -1010010011111 welds 11 -1010010011111 souk 11 -1010010011111 rostrum 11 -1010010011111 phoenix 11 -1010010011111 wastebasket 11 -1010010011111 turntable 11 -1010010011111 lattice 11 -1010010011111 ridges 11 -1010010011111 walkway 11 -1010010011111 terrace 12 -1010010011111 stairway 12 -1010010011111 concourse 12 -1010010011111 Catskills 12 -1010010011111 broomstick 12 -1010010011111 combo 12 -1010010011111 roll-up 12 -1010010011111 H-2 13 -1010010011111 henhouse 13 -1010010011111 dispersant 13 -1010010011111 meadow 13 -1010010011111 megadeal 13 -1010010011111 plume 13 -1010010011111 conservatory 13 -1010010011111 matchmaker 14 -1010010011111 hem 14 -1010010011111 wharf 14 -1010010011111 foursome 14 -1010010011111 foyer 14 -1010010011111 fort 14 -1010010011111 spermicide 14 -1010010011111 miniskirt 15 -1010010011111 shredder 15 -1010010011111 breezes 15 -1010010011111 payer 15 -1010010011111 kiln 15 -1010010011111 chute 16 -1010010011111 lantern 16 -1010010011111 diaphragm 16 -1010010011111 bracelet 17 -1010010011111 chimney 17 -1010010011111 hangout 17 -1010010011111 varnish 17 -1010010011111 doghouse 17 -1010010011111 pouch 18 -1010010011111 groove 18 -1010010011111 spaceship 19 -1010010011111 czars 19 -1010010011111 tarmac 19 -1010010011111 outfield 19 -1010010011111 reef 19 -1010010011111 pollutant 19 -1010010011111 stabilizer 19 -1010010011111 dunk 19 -1010010011111 ledge 20 -1010010011111 Dinky 20 -1010010011111 seams 20 -1010010011111 mountainside 20 -1010010011111 slaughterhouse 21 -1010010011111 scoreboard 21 -1010010011111 restroom 21 -1010010011111 fairway 21 -1010010011111 battlefields 21 -1010010011111 cohort 21 -1010010011111 bulkhead 21 -1010010011111 melee 22 -1010010011111 caster 22 -1010010011111 priesthood 22 -1010010011111 cursor 22 -1010010011111 boardwalk 23 -1010010011111 hoop 23 -1010010011111 vase 24 -1010010011111 concerto 24 -1010010011111 bud 24 -1010010011111 pier 25 -1010010011111 doorway 25 -1010010011111 motif 25 -1010010011111 creek 25 -1010010011111 blackboard 26 -1010010011111 derby 26 -1010010011111 coil 26 -1010010011111 hash 26 -1010010011111 mongoose 28 -1010010011111 villa 28 -1010010011111 staircase 28 -1010010011111 tee 30 -1010010011111 shack 30 -1010010011111 loot 31 -1010010011111 decor 31 -1010010011111 toxin 31 -1010010011111 chapel 31 -1010010011111 gland 32 -1010010011111 sands 32 -1010010011111 orbiter 33 -1010010011111 muck 33 -1010010011111 pudding 33 -1010010011111 mosque 34 -1010010011111 clubhouse 35 -1010010011111 dashboard 35 -1010010011111 hemorrhage 36 -1010010011111 stool 36 -1010010011111 casing 36 -1010010011111 hut 37 -1010010011111 finals 37 -1010010011111 skeleton 37 -1010010011111 gel 38 -1010010011111 bible 41 -1010010011111 transfusion 41 -1010010011111 Bridgeton 41 -1010010011111 plaza 42 -1010010011111 repertory 42 -1010010011111 porch 43 -1010010011111 shaft 43 -1010010011111 hauler 43 -1010010011111 torch 43 -1010010011111 dome 44 -1010010011111 goose 44 -1010010011111 glitter 44 -1010010011111 pulpit 45 -1010010011111 hallway 45 -1010010011111 whim 45 -1010010011111 cellar 46 -1010010011111 mat 46 -1010010011111 soundtrack 46 -1010010011111 pageant 46 -1010010011111 balcony 48 -1010010011111 docks 49 -1010010011111 ramp 49 -1010010011111 slope 49 -1010010011111 driveway 49 -1010010011111 lotion 50 -1010010011111 slopes 51 -1010010011111 jackpot 51 -1010010011111 duo 51 -1010010011111 molecule 52 -1010010011111 stove 52 -1010010011111 courtyard 52 -1010010011111 hood 53 -1010010011111 countdown 53 -1010010011111 catch-up 53 -1010010011111 corpse 53 -1010010011111 decks 53 -1010010011111 loop 54 -1010010011111 cylinder 55 -1010010011111 shrine 55 -1010010011111 newsroom 56 -1010010011111 beast 56 -1010010011111 festivities 57 -1010010011111 windshield 58 -1010010011111 beacon 58 -1010010011111 trenches 58 -1010010011111 victor 58 -1010010011111 skull 58 -1010010011111 residue 59 -1010010011111 dice 60 -1010010011111 blaze 61 -1010010011111 aisles 62 -1010010011111 feast 62 -1010010011111 pedal 62 -1010010011111 playoffs 65 -1010010011111 trunk 66 -1010010011111 burner 67 -1010010011111 carrot 68 -1010010011111 choir 69 -1010010011111 breeze 69 -1010010011111 trough 70 -1010010011111 sidewalk 70 -1010010011111 waterway 73 -1010010011111 fuselage 74 -1010010011111 barn 76 -1010010011111 cafe 79 -1010010011111 stump 79 -1010010011111 bucket 81 -1010010011111 cart 81 -1010010011111 cemetery 82 -1010010011111 pond 83 -1010010011111 dock 84 -1010010011111 bush 84 -1010010011111 ropes 84 -1010010011111 lane 85 -1010010011111 whistle 90 -1010010011111 troupe 92 -1010010011111 temple 93 -1010010011111 bowl 93 -1010010011111 microphone 97 -1010010011111 couch 98 -1010010011111 basics 99 -1010010011111 podium 109 -1010010011111 bandwagon 110 -1010010011111 booth 110 -1010010011111 ballpark 112 -1010010011111 clot 113 -1010010011111 gym 115 -1010010011111 genre 116 -1010010011111 tract 120 -1010010011111 wagon 122 -1010010011111 circus 123 -1010010011111 towel 125 -1010010011111 bubble 132 -1010010011111 hill 136 -1010010011111 halls 137 -1010010011111 queen 139 -1010010011111 norm 146 -1010010011111 bullet 147 -1010010011111 canal 167 -1010010011111 universe 168 -1010010011111 lake 173 -1010010011111 hills 174 -1010010011111 deck 176 -1010010011111 tab 177 -1010010011111 tunnel 178 -1010010011111 herd 180 -1010010011111 moon 184 -1010010011111 fray 185 -1010010011111 fence 186 -1010010011111 gate 191 -1010010011111 runway 192 -1010010011111 gallery 200 -1010010011111 wheel 201 -1010010011111 disorder 204 -1010010011111 pot 205 -1010010011111 brakes 219 -1010010011111 tube 241 -1010010011111 spotlight 243 -1010010011111 yard 256 -1010010011111 vacuum 265 -1010010011111 festival 301 -1010010011111 map 305 -1010010011111 roof 319 -1010010011111 beach 321 -1010010011111 tower 342 -1010010011111 leak 359 -1010010011111 clock 367 -1010010011111 ballot 385 -1010010011111 pack 395 -1010010011111 hall 396 -1010010011111 chamber 408 -1010010011111 gene 421 -1010010011111 hole 451 -1010010011111 bag 458 -1010010011111 earth 460 -1010010011111 doctrine 523 -1010010011111 ring 572 -1010010011111 corner 682 -1010010011111 surface 712 -1010010011111 window 733 -1010010011111 ball 735 -1010010011111 box 802 -1010010011111 foundation 818 -1010010011111 streets 893 -1010010011111 wall 913 -1010010011111 category 943 -1010010011111 crowd 960 -1010010011111 screen 978 -1010010011111 scene 1084 -1010010011111 street 1172 -1010010011111 door 1420 -1010010011111 road 1453 -1010010011111 table 1596 -1010010011111 site 1635 -1010010011111 disease 1949 -1010010011111 stage 2140 -1010010011111 game 3060 -1010010011111 field 3163 -1010010011111 process 6075 -1010010011111 project 5621 -1010010100 prices-factors 1 -1010010100 processsor 1 -1010010100 precut 1 -1010010100 Foscolos 1 -1010010100 Takara-Gumin 1 -1010010100 projectionists 1 -1010010100 teraphthalate 1 -1010010100 oxychloride 1 -1010010100 gangrene 1 -1010010100 Wilsey 1 -1010010100 microscopist 1 -1010010100 resaler 1 -1010010100 Newburg 1 -1010010100 processers 1 -1010010100 perlite 1 -1010010100 circumstances. 1 -1010010100 veneers 1 -1010010100 hydroprene 1 -1010010100 import-limits 1 -1010010100 nostalgia-fest 1 -1010010100 butadiene-emulsions 1 -1010010100 Ummar 1 -1010010100 terephlate 1 -1010010100 structures. 1 -1010010100 striper 1 -1010010100 duckie 1 -1010010100 Shohola 1 -1010010100 SALK 1 -1010010100 double-skirted 1 -1010010100 waster 1 -1010010100 easy-open 1 -1010010100 1-aminocyclopropane-1 1 -1010010100 airfoils 1 -1010010100 COLOGNE 1 -1010010100 manufacturers. 1 -1010010100 exploraton 1 -1010010100 recitation-harangue 1 -1010010100 Autostrade 1 -1010010100 unmasculine 1 -1010010100 non-affiliate 1 -1010010100 ducky 1 -1010010100 refinishers 1 -1010010100 terephthalate 1 -1010010100 H-piles 2 -1010010100 924.18 2 -1010010100 selector 2 -1010010100 conern 2 -1010010100 Haiphong 2 -1010010100 powerboats 3 -1010010100 Kantonalbank 3 -1010010100 relaxant 4 -1010010100 controversialist 4 -1010010100 fetishism 6 -1010010100 concern 22804 -1010010100 conglomerate 551 -10100101010 SERA 1 -10100101010 LE-ISRAEL 1 -10100101010 Meccanotechnia 1 -10100101010 Cimento 1 -10100101010 BM 1 -10100101010 Corp.-sponsored 1 -10100101010 Seldin 1 -10100101010 FMH 1 -10100101010 504,500 1 -10100101010 Mourdes 1 -10100101010 CACHET 1 -10100101010 2WB 1 -10100101010 MODIFIED 1 -10100101010 monarchy. 1 -10100101010 Custos 1 -10100101010 Maria-Paula 1 -10100101010 34,513 1 -10100101010 Piren 1 -10100101010 Kathelyn 1 -10100101010 LTDA 1 -10100101010 Suspects 1 -10100101010 Vetraria 1 -10100101010 subdiary 1 -10100101010 SKANDIA 1 -10100101010 20,993 1 -10100101010 Sally. 1 -10100101010 Bierce 1 -10100101010 ogan 1 -10100101010 McClintock 1 -10100101010 Cmdr 1 -10100101010 institutions-all 1 -10100101010 266,327 1 -10100101010 EUROC 1 -10100101010 Bonnierforetagen 1 -10100101010 Ashisuto 1 -10100101010 -14.7 1 -10100101010 MD82s 1 -10100101010 Bering-Jensen 1 -10100101010 Trekanten 1 -10100101010 442,789 1 -10100101010 22,093 1 -10100101010 447,195 1 -10100101010 727-100s 1 -10100101010 peace-keepers 1 -10100101010 Effjohn 1 -10100101010 11820.0 1 -10100101010 2,006,026 1 -10100101010 reserarch 1 -10100101010 Magazines-Asia 1 -10100101010 Vapenfabrikk 2 -10100101010 Mey 2 -10100101010 modulator 2 -10100101010 tabernacle 2 -10100101010 Thach 2 -10100101010 Beperk 2 -10100101010 INDUSTRIVAERDEN 2 -10100101010 memoirist 2 -10100101010 looker 2 -10100101010 Utama 2 -10100101010 Mota 3 -10100101010 Coil 3 -10100101010 toy-maker 3 -10100101010 SLQ-32 3 -10100101010 satchel 3 -10100101010 Argentus 3 -10100101010 TSF/Wellhead 3 -10100101010 Troutman 3 -10100101010 subsidary 4 -10100101010 Peller 4 -10100101010 Providentia 4 -10100101010 ELECTROLUX 5 -10100101010 Goerdeler 5 -10100101010 Pollitt 5 -10100101010 Hungerfords 6 -10100101010 unit. 7 -10100101010 messiah 7 -10100101010 VOLVO 16 -10100101010 op 24 -10100101010 PHILIPS 26 -10100101010 unit 31129 -10100101010 subsidiary 5532 -101001010110 mold-casting 1 -101001010110 sty 1 -101001010110 ad-campaign 1 -101001010110 industry-Knight-Ridder 1 -101001010110 qualifiedly 1 -101001010110 clause. 1 -101001010110 Tikkun 1 -101001010110 Hurriyet 1 -101001010110 Somos 1 -101001010110 An-Nahar 1 -101001010110 Okaz 1 -101001010110 product-purchasing 1 -101001010110 open. 1 -101001010110 inserters 1 -101001010110 industry-extended-stay 1 -101001010110 deodorizer 1 -101001010110 maganate 1 -101001010110 bull-session 1 -101001010110 outserts 1 -101001010110 centerfolds 1 -101001010110 agentry 1 -101001010110 Heimat 1 -101001010110 resticted 1 -101001010110 Wache 1 -101001010110 housemother 1 -101001010110 Shutterbug 1 -101001010110 Regardies 1 -101001010110 dispositon 1 -101001010110 Maeil 1 -101001010110 DELETE 1 -101001010110 Regulation. 1 -101001010110 Spectathlete 1 -101001010110 kit. 1 -101001010110 converage 1 -101001010110 box. 1 -101001010110 sailboards 1 -101001010110 al-Fajr 1 -101001010110 input-prices 1 -101001010110 megachain 1 -101001010110 right-of-access 1 -101001010110 Nationalgalerie 2 -101001010110 Izvestiya 2 -101001010110 technicans 2 -101001010110 shuckers 2 -101001010110 Liberator 2 -101001010110 lootings 2 -101001010110 Commonweal 2 -101001010110 87-15 2 -101001010110 sward 2 -101001010110 inhalant 2 -101001010110 services/broadcast 2 -101001010110 boardwalks 3 -101001010110 fakery 3 -101001010110 KZKC-TV 3 -101001010110 brogue 3 -101001010110 indexer 3 -101001010110 pornographers 3 -101001010110 owner-manager 3 -101001010110 marksmen 4 -101001010110 verite 4 -101001010110 Dagens 4 -101001010110 keypad 4 -101001010110 Milliyet 4 -101001010110 squeegee 6 -101001010110 commissary 8 -101001010110 leitmotif 8 -101001010110 integrator 9 -101001010110 divison 9 -101001010110 Excelsior 10 -101001010110 deliverers 10 -101001010110 magnates 11 -101001010110 assembler 14 -101001010110 emporium 14 -101001010110 installer 15 -101001010110 photofinisher 28 -101001010110 lord 30 -101001010110 LTD 31 -101001010110 discounter 36 -101001010110 mogul 49 -101001010110 coils 52 -101001010110 buff 56 -101001010110 enthusiast 61 -101001010110 merchandiser 63 -101001010110 baron 69 -101001010110 czar 124 -101001010110 bottler 173 -101001010110 magnate 173 -101001010110 corps 185 -101001010110 importer 241 -101001010110 builder 416 -101001010110 empire 722 -101001010110 segment 1060 -101001010110 affiliate 1331 -101001010110 arm 1476 -101001010110 operator 2164 -101001010110 retailer 2643 -101001010110 chain 3896 -101001010110 division 7501 -101001010110 operation 4559 -101001010110 network 4754 -101001010111 finials 1 -101001010111 Booneco 1 -101001010111 weed-trimmer 1 -101001010111 Diamond-Bathhurst 1 -101001010111 edibility 1 -101001010111 Masci 1 -101001010111 re-telling 1 -101001010111 measurement-control 1 -101001010111 Filterite 1 -101001010111 Gehring 1 -101001010111 witch-name 1 -101001010111 XT. 1 -101001010111 enrichments 1 -101001010111 270,836 1 -101001010111 Hannen 1 -101001010111 S.S.T. 1 -101001010111 mich 1 -101001010111 Compugrahic 1 -101001010111 Guafitas 1 -101001010111 Liggons 1 -101001010111 343,500 1 -101001010111 Augurio 1 -101001010111 apothecary 1 -101001010111 Buitenen 1 -101001010111 Efrayim 1 -101001010111 Happart 1 -101001010111 Skillers 1 -101001010111 Solovei 1 -101001010111 photographic-product 1 -101001010111 goup 1 -101001010111 659,860 1 -101001010111 756,700 1 -101001010111 Astier 1 -101001010111 Pogorelich 1 -101001010111 metals-projects 1 -101001010111 babbino 1 -101001010111 aftermarkets 1 -101001010111 Beniquez 1 -101001010111 Gavalondo 1 -101001010111 satyr 1 -101001010111 teetotalism 2 -101001010111 Garces 2 -101001010111 cowling 2 -101001010111 retreader 2 -101001010111 7300 2 -101001010111 proselytizer 2 -101001010111 steins 2 -101001010111 27-20 2 -101001010111 scaffolds 2 -101001010111 glass-maker 2 -101001010111 Gitomer 2 -101001010111 undersecretaries 2 -101001010111 least-known 2 -101001010111 bootmaker 2 -101001010111 outfitters 2 -101001010111 Pinebrook 2 -101001010111 formulators 2 -101001010111 Montville 2 -101001010111 sidecar 2 -101001010111 Boott 2 -101001010111 MSD 2 -101001010111 Wolferen 2 -101001010111 excessiveness 2 -101001010111 Latane 2 -101001010111 towage 2 -101001010111 Eyck 2 -101001010111 armamentarium 2 -101001010111 truck-maker 3 -101001010111 Barnham 3 -101001010111 crassness 3 -101001010111 Dijk 3 -101001010111 luminary 3 -101001010111 puree 4 -101001010111 hawker 5 -101001010111 integrators 5 -101001010111 Duinen 5 -101001010111 dignitary 6 -101001010111 cataloger 6 -101001010111 Arsdale 7 -101001010111 leaser 7 -101001010111 recycler 9 -101001010111 servicer 11 -101001010111 shoemaker 15 -101001010111 glassmaker 22 -101001010111 packager 22 -101001010111 confectioner 26 -101001010111 renter 26 -101001010111 fabricator 30 -101001010111 purveyor 37 -101001010111 lessor 41 -101001010111 distiller 99 -101001010111 Gogh 139 -101001010111 franchiser 199 -101001010111 wholesaler 234 -101001010111 provider 419 -101001010111 marketer 485 -101001010111 supplier 1219 -101001010111 distributor 1224 -101001010111 maker 13080 -101001010111 manufacturer 1435 -10100101100 supervior 1 -10100101100 andchairman 1 -10100101100 fuehrer 1 -10100101100 nuttiness 1 -10100101100 deptartment 1 -10100101100 composer/conductor 1 -10100101100 10,065 1 -10100101100 director-president 1 -10100101100 general. 1 -10100101100 director-operations 1 -10100101100 director/president 1 -10100101100 pricewise 2 -10100101100 director-designate 2 -10100101100 brawler 2 -10100101100 Podufaly 2 -10100101100 inhalations 2 -10100101100 viceroy 2 -10100101100 ex-University 2 -10100101100 director-investments 2 -10100101100 tincture 2 -10100101100 Arcangelo 2 -10100101100 contortion 2 -10100101100 friezes 2 -10100101100 archway 2 -10100101100 habitue 2 -10100101100 Tajik 2 -10100101100 Balkanization 2 -10100101100 fastness 3 -10100101100 compiler 3 -10100101100 fourth-grader 3 -10100101100 parter 3 -10100101100 treament 3 -10100101100 impulsion 3 -10100101100 m.b.H. 3 -10100101100 co-chairwoman 3 -10100101100 Latour 4 -10100101100 perquisite 5 -10100101100 sixth-grader 5 -10100101100 co-developer 6 -10100101100 drafter 9 -10100101100 quarter-ounce 9 -10100101100 rector 9 -10100101100 cofounder 11 -10100101100 co-president 12 -10100101100 conservator 18 -10100101100 vice-president 24 -10100101100 part-owner 26 -10100101100 curator 85 -10100101100 co-owner 110 -10100101100 recruiter 112 -10100101100 co-founder 155 -10100101100 dean 356 -10100101100 editor 2586 -10100101100 director 15492 -10100101100 professor 2621 -101001011010 WITHDRAWALS 1 -101001011010 meteriorlogist 1 -101001011010 Rulons 1 -101001011010 terminologist 1 -101001011010 three-alarmer 1 -101001011010 thunks 1 -101001011010 staterooms 1 -101001011010 par-saver 1 -101001011010 scoutmasters 1 -101001011010 restaurant-goers 1 -101001011010 quiverer 1 -101001011010 superviser 1 -101001011010 Nytt 1 -101001011010 peeker 1 -101001011010 P205 1 -101001011010 13.22-gain 1 -101001011010 nurse-practitioner 1 -101001011010 GMer 1 -101001011010 psychopharmacologist 1 -101001011010 Hall-of-Famers 1 -101001011010 reservationist 1 -101001011010 medal-winner 1 -101001011010 chemist-turned-physicist 1 -101001011010 loincloth-clad 1 -101001011010 countermessage 1 -101001011010 mangager 1 -101001011010 non-discounted 1 -101001011010 bottler-distributorships 1 -101001011010 labled 1 -101001011010 seine 1 -101001011010 carouser 1 -101001011010 box-boy 1 -101001011010 townswoman 1 -101001011010 puposes 1 -101001011010 churchgoer 1 -101001011010 Supply/Demand 1 -101001011010 televiewers 1 -101001011010 bookstall 1 -101001011010 domiciles 1 -101001011010 counsel-regions 1 -101001011010 wing-ding 1 -101001011010 road-grader 1 -101001011010 sinologist 1 -101001011010 garnets 1 -101001011010 monoliths 1 -101001011010 chipper-looking 1 -101001011010 quarter-final 1 -101001011010 ex-girlfriend 1 -101001011010 rager 1 -101001011010 futurist/director 1 -101001011010 compounder 1 -101001011010 magazine-ad 1 -101001011010 purpose-machines 1 -101001011010 skiier 1 -101001011010 afficionado 1 -101001011010 neuroscientist 1 -101001011010 327-megabyte 1 -101001011010 courtswatcher 1 -101001011010 contributions. 1 -101001011010 conglomerate-watcher 1 -101001011010 J-30 1 -101001011010 committee-President 1 -101001011010 miscommunications 1 -101001011010 practicioner 1 -101001011010 package-tracing 1 -101001011010 pedometer 1 -101001011010 cormholes 1 -101001011010 fact-checker 1 -101001011010 johnboat 1 -101001011010 sidetable 1 -101001011010 1476 1 -101001011010 carpet-seller 1 -101001011010 fill-up 1 -101001011010 spartanism 1 -101001011010 journey. 1 -101001011010 SPCAs 1 -101001011010 behavioralist 1 -101001011010 handwashing 1 -101001011010 misanthropy 1 -101001011010 brownshirts 1 -101001011010 two-pence 1 -101001011010 asserts. 1 -101001011010 reoperation 1 -101001011010 neurochemist 2 -101001011010 carousing 2 -101001011010 mainlander 2 -101001011010 procurator 2 -101001011010 rock-thrower 2 -101001011010 anti-Americans 2 -101001011010 echidna 2 -101001011010 Cough 2 -101001011010 mini-cinemogul 2 -101001011010 naysayer 2 -101001011010 Nixonite 2 -101001011010 polltaker 2 -101001011010 serious-looking 2 -101001011010 battler 2 -101001011010 businesmen 2 -101001011010 determinist 2 -101001011010 outdoorsman 2 -101001011010 dykes 2 -101001011010 senator-elect 2 -101001011010 re-rating 2 -101001011010 container-leasing 3 -101001011010 TWICE 3 -101001011010 cul-de-sac 3 -101001011010 creche 3 -101001011010 jujitsu 3 -101001011010 clerk-typist 3 -101001011010 humdinger 3 -101001011010 rustler 3 -101001011010 rheumatologist 3 -101001011010 hematologist 3 -101001011010 receptacle 4 -101001011010 backbencher 4 -101001011010 Horatius 4 -101001011010 caboose 4 -101001011010 part-timer 4 -101001011010 Misty 4 -101001011010 nonperson 4 -101001011010 fugue 4 -101001011010 nesters 5 -101001011010 acclamation 5 -101001011010 Svengali 5 -101001011010 chaser 5 -101001011010 sneezes 5 -101001011010 sideman 5 -101001011010 share. 5 -101001011010 proofreader 5 -101001011010 Kremlinologist 5 -101001011010 dietician 5 -101001011010 paleontologist 6 -101001011010 temptress 6 -101001011010 knighthood 6 -101001011010 cornerback 6 -101001011010 tether 6 -101001011010 bonnet 6 -101001011010 teetotaler 6 -101001011010 muckraker 6 -101001011010 outfitter 7 -101001011010 guidepost 7 -101001011010 trend-setter 7 -101001011010 prospector 7 -101001011010 high-flier 7 -101001011010 trailblazer 7 -101001011010 vagabond 7 -101001011010 physiologist 8 -101001011010 hardliner 8 -101001011010 halfback 8 -101001011010 seer 8 -101001011010 sportscaster 9 -101001011010 pharmacologist 9 -101001011010 criminologist 9 -101001011010 psychoanalyst 9 -101001011010 professorship 9 -101001011010 yachtsman 10 -101001011010 stylist 10 -101001011010 trouble-shooter 11 -101001011010 satirist 11 -101001011010 pundit 11 -101001011010 archivist 11 -101001011010 misfit 11 -101001011010 storeroom 11 -101001011010 caseworker 12 -101001011010 handyman 12 -101001011010 microbiologist 13 -101001011010 neurologist 14 -101001011010 troubleshooter 14 -101001011010 toxicologist 14 -101001011010 grad 14 -101001011010 fundraiser 15 -101001011010 walker 15 -101001011010 nutritionist 16 -101001011010 botanist 16 -101001011010 climber 17 -101001011010 nerd 18 -101001011010 Albanians 18 -101001011010 tinge 19 -101001011010 minefield 19 -101001011010 radiologist 20 -101001011010 geneticist 20 -101001011010 sportswriter 20 -101001011010 handler 20 -101001011010 democrat 20 -101001011010 tutor 21 -101001011010 demographer 23 -101001011010 cellist 23 -101001011010 sit-in 26 -101001011010 Commander 27 -101001011010 dermatologist 27 -101001011010 biochemist 31 -101001011010 litigator 34 -101001011010 co-defendant 34 -101001011010 parlance 34 -101001011010 speechwriter 37 -101001011010 sophomore 39 -101001011010 wizard 42 -101001011010 theorist 43 -101001011010 librarian 45 -101001011010 trainee 48 -101001011010 fixture 49 -101001011010 classmate 62 -101001011010 lecturer 65 -101001011010 practitioner 67 -101001011010 whiz 69 -101001011010 meteorologist 70 -101001011010 programmer 70 -101001011010 foreman 76 -101001011010 biologist 81 -101001011010 tycoon 86 -101001011010 chemist 87 -101001011010 forecaster 93 -101001011010 guru 97 -101001011010 subcontractor 102 -101001011010 powerhouse 114 -101001011010 sociologist 119 -101001011010 physicist 144 -101001011010 commentator 150 -101001011010 technician 162 -101001011010 promoter 183 -101001011010 counselor 190 -101001011010 psychologist 221 -101001011010 scholar 236 -101001011010 counsels 253 -101001011010 correspondent 253 -101001011010 historian 294 -101001011010 supervisor 311 -101001011010 columnist 351 -101001011010 lobbyist 386 -101001011010 researcher 539 -101001011010 scientist 676 -101001011010 newsletter 1243 -101001011010 specialist 1388 -101001011010 counsel 3188 -101001011010 partner 4680 -101001011010 consultant 3190 -101001011011 pueblo-style 1 -101001011011 fiords 1 -101001011011 sailingthere 1 -101001011011 bibliographer 1 -101001011011 repraisals 1 -101001011011 Ioffe 1 -101001011011 transcendentalist 1 -101001011011 Tetha 1 -101001011011 fleshpressing 1 -101001011011 Radmin 1 -101001011011 Polityka 1 -101001011011 Meditations 1 -101001011011 cartelists 1 -101001011011 demi-centenarians 1 -101001011011 groovers 1 -101001011011 perfomances 1 -101001011011 wie 1 -101001011011 philosopohy 1 -101001011011 Varya 1 -101001011011 Lubovich 1 -101001011011 plantsman 1 -101001011011 trafficways 1 -101001011011 yelps 1 -101001011011 wagon-1,354 1 -101001011011 Watson-Guptill 1 -101001011011 chairman/consultant 1 -101001011011 INPS 1 -101001011011 secretarys 1 -101001011011 6-feet-8 1 -101001011011 tatcntbeuedfr 1 -101001011011 vamps 2 -101001011011 headman 2 -101001011011 keynoter 2 -101001011011 appearances. 2 -101001011011 tanneries 2 -101001011011 Montanan 2 -101001011011 roadmap 2 -101001011011 mustiness 2 -101001011011 scorekeeper 2 -101001011011 Nebraskan 2 -101001011011 toadstools 2 -101001011011 pallor 2 -101001011011 secretary-designate 3 -101001011011 confederations 3 -101001011011 kitties 3 -101001011011 destructiveness 3 -101001011011 co-sponsorship 3 -101001011011 Baathists 3 -101001011011 basso 3 -101001011011 bagmen 3 -101001011011 basher 4 -101001011011 Laurette 4 -101001011011 lackeys 5 -101001011011 launderer 7 -101001011011 manger 7 -101001011011 officiating 7 -101001011011 dweller 8 -101001011011 launderers 12 -101001011011 raiser 18 -101001011011 co-manager 57 -101001011011 organizer 136 -101001011011 superintendent 158 -101001011011 coordinator 215 -101001011011 undersecretary 246 -101001011011 controller 517 -101001011011 administrator 626 -101001011011 commissioner 927 -101001011011 underwriter 1169 -101001011011 manager 7937 -101001011011 secretary 3491 -101001011100 Porteno 1 -101001011100 suplementation 1 -101001011100 WRESTLE 1 -101001011100 piccata 1 -101001011100 ex-liberal 1 -101001011100 developer-turned-banker 1 -101001011100 DISSATISFACTION 1 -101001011100 market-watcher 1 -101001011100 hibernants 1 -101001011100 BALKED 1 -101001011100 vender 1 -101001011100 WRESTLES 1 -101001011100 87-10 1 -101001011100 groundlings 1 -101001011100 unmuddled 1 -101001011100 semi-works 1 -101001011100 ex-pal 1 -101001011100 tune-ups 1 -101001011100 octupus 1 -101001011100 owner-employee 1 -101001011100 breadboxes 1 -101001011100 exit-bond 1 -101001011100 OPENS 1 -101001011100 shut-offs 1 -101001011100 legged 1 -101001011100 INTERFERES 1 -101001011100 athletic-trainer-turned-scholar 1 -101001011100 age-mate 1 -101001011100 evolutionist 1 -101001011100 88-16 1 -101001011100 archswindler 1 -101001011100 Taymor 1 -101001011100 extermist 1 -101001011100 oulet 1 -101001011100 88-60 1 -101001011100 SALESMEN 1 -101001011100 11th-grader 1 -101001011100 time-expert 1 -101001011100 PROSPER 1 -101001011100 architect/planner 1 -101001011100 entreprenuer 1 -101001011100 BANS 1 -101001011100 ex-Democrat 1 -101001011100 anlayst 2 -101001011100 immuno-modulator 2 -101001011100 87-12 2 -101001011100 Oscar-winner 2 -101001011100 ex-engineer 2 -101001011100 aviculturist 2 -101001011100 archeologist 2 -101001011100 MLP. 2 -101001011100 EXPERIMENT 2 -101001011100 ............................... 3 -101001011100 out-of-towner 3 -101001011100 agenda-setter 3 -101001011100 ex-general 3 -101001011100 COPE 4 -101001011100 oceanographer 4 -101001011100 upholsterer 4 -101001011100 Egyptologist 6 -101001011100 analyst 12140 -101001011100 MET 15 -101001011101 remounting 1 -101001011101 Bitenieks 1 -101001011101 proceduces 1 -101001011101 Lubricating 1 -101001011101 DOLAN 1 -101001011101 combat-training 1 -101001011101 gold-medalist 1 -101001011101 cofinancings 1 -101001011101 Confections 1 -101001011101 artist-in-residence 1 -101001011101 Izaak 1 -101001011101 numismatist 1 -101001011101 Kinmukhamed 1 -101001011101 Metros 1 -101001011101 owner-chefs 1 -101001011101 Playmakers 1 -101001011101 inhospitality 1 -101001011101 Yasar 1 -101001011101 lech 1 -101001011101 Shmeruk 1 -101001011101 deskman 1 -101001011101 airbase 1 -101001011101 rabbinates 1 -101001011101 point-man 1 -101001011101 pipewelder 1 -101001011101 ex-generals 1 -101001011101 2/5 1 -101001011101 recordholder 1 -101001011101 reprices 1 -101001011101 asssumption 1 -101001011101 cliveia 1 -101001011101 Federspiel 1 -101001011101 An-Hyp 1 -101001011101 industrial-drive 1 -101001011101 I.O.S. 1 -101001011101 Cosmology 1 -101001011101 Tetterode 1 -101001011101 Papermills 1 -101001011101 Versicherings 1 -101001011101 sculptor-engraver 1 -101001011101 Dei 1 -101001011101 1392 2 -101001011101 Ass 2 -101001011101 rusher 2 -101001011101 confabs 2 -101001011101 student-athlete 2 -101001011101 R2-D2 2 -101001011101 chinoiserie 2 -101001011101 appropriator 2 -101001011101 Iacocca. 2 -101001011101 ornithologist 2 -101001011101 flyfishing 2 -101001011101 80-16 2 -101001011101 undergrads 2 -101001011101 impingement 2 -101001011101 enologist 2 -101001011101 xenografts 2 -101001011101 Ex-Aide 2 -101001011101 arthritics 2 -101001011101 entrepot 2 -101001011101 honcho 3 -101001011101 vote-counter 3 -101001011101 caddying 3 -101001011101 gerontologist 4 -101001011101 8-4 4 -101001011101 Hassanal 4 -101001011101 tormentor 5 -101001011101 bioethicist 5 -101001011101 fence-sitters 5 -101001011101 barker 5 -101001011101 endocrinologist 6 -101001011101 alibi 6 -101001011101 KMET 7 -101001011101 technologist 8 -101001011101 apologist 9 -101001011101 immunologist 9 -101001011101 entomologist 9 -101001011101 iconoclast 10 -101001011101 climatologist 11 -101001011101 ecologist 11 -101001011101 Sovietologist 11 -101001011101 ethicist 13 -101001011101 agronomist 13 -101001011101 astrophysicist 15 -101001011101 intern 26 -101001011101 astronomer 27 -101001011101 epidemiologist 32 -101001011101 actuary 33 -101001011101 Aeronauticas 34 -101001011101 statistician 36 -101001011101 watcher 39 -101001011101 quotations 320 -101001011101 negotiator 366 -101001011101 strategist 883 -101001011101 engineer 894 -101001011101 economist 4414 -101001011101 expert 1028 -101001011110 then-solicitor 1 -101001011110 Caddies 1 -101001011110 underwiters 1 -101001011110 Stateside 1 -101001011110 exMarine 1 -101001011110 Cooperating 1 -101001011110 president/assistant 1 -101001011110 Grissett 1 -101001011110 importer/distributor 1 -101001011110 WAGS 1 -101001011110 Pillager 1 -101001011110 rail-operations 1 -101001011110 Brunei-based 1 -101001011110 less-senior 1 -101001011110 power-seeking 1 -101001011110 cavalry-complete 1 -101001011110 porkmeister 1 -101001011110 Appetite 1 -101001011110 god-child 1 -101001011110 hidey-hole 1 -101001011110 molts 1 -101001011110 clents 1 -101001011110 old-people 1 -101001011110 older-person 1 -101001011110 FILERS 1 -101001011110 atorney 1 -101001011110 broker-elected 1 -101001011110 SCALPERS 1 -101001011110 DEBUT 1 -101001011110 embasssy 1 -101001011110 YORK-Moody 1 -101001011110 vice-consul 1 -101001011110 fogie 1 -101001011110 shot-putter 1 -101001011110 debt-portfolio 1 -101001011110 earphone 1 -101001011110 ward-heeler 1 -101001011110 commandoes 1 -101001011110 greatgrandmother 1 -101001011110 stattorney 1 -101001011110 knifesman 1 -101001011110 eighteen-wheeler 1 -101001011110 Stapler 2 -101001011110 ex-schoolteacher 2 -101001011110 ex-congressman 2 -101001011110 MULTINATIONALS 2 -101001011110 spoilsport 2 -101001011110 acorn 2 -101001011110 airlifts 2 -101001011110 embalmer 2 -101001011110 eighth-grader 2 -101001011110 crematories 2 -101001011110 acronymn 2 -101001011110 Easterner 2 -101001011110 epigraph 2 -101001011110 retaliates 2 -101001011110 inverter 2 -101001011110 opposition-led 2 -101001011110 wipe-out 2 -101001011110 inflator 2 -101001011110 ZAPS 2 -101001011110 gamekeeper 3 -101001011110 chamberlain 3 -101001011110 obstetrician-gynecologist 3 -101001011110 optometrist 3 -101001011110 acolyte 3 -101001011110 ex-attorney 3 -101001011110 expediter 3 -101001011110 HOMEOWNERS 3 -101001011110 TEAM 4 -101001011110 clubbers 4 -101001011110 Luster 4 -101001011110 abbreviation 5 -101001011110 Darts 5 -101001011110 maximums 5 -101001011110 Elysees 6 -101001011110 executioner 6 -101001011110 Iowan 8 -101001011110 ombudsman 13 -101001011110 registrar 13 -101001011110 M.P. 14 -101001011110 alias 15 -101001011110 adjuster 18 -101001011110 assemblyman 18 -101001011110 consul 21 -101001011110 electrician 34 -101001011110 councilman 53 -101001011110 postmaster 59 -101001011110 informant 68 -101001011110 acronym 69 -101001011110 instructor 90 -101001011110 solicitor 114 -101001011110 examiner 115 -101001011110 arbitrator 148 -101001011110 surgeon 255 -101001011110 investigator 271 -101001011110 inspector 380 -101001011110 auditor 438 -101001011110 accountant 489 -101001011110 attorney 6083 -101001011110 agent 1474 -101001011111 Best-Draft 1 -101001011111 Baltic-Helsinki 1 -101001011111 8,755 1 -101001011111 Amoco-operated 1 -101001011111 Amerada-operated 1 -101001011111 20-to-30-year-old 1 -101001011111 copyright-law 1 -101001011111 Iranian-led 1 -101001011111 chicos 1 -101001011111 Wesray-led 1 -101001011111 Giant-led 1 -101001011111 EMI-Palmieri 1 -101001011111 Chambers-Archimedes 1 -101001011111 rural-advocacy 1 -101001011111 Japanese-Hungarian 1 -101001011111 noble-spirited 1 -101001011111 agent-investor 1 -101001011111 bond-portfolio-analysis 1 -101001011111 NETWORKING 1 -101001011111 UBS-Hill 1 -101001011111 Sweetgrass 1 -101001011111 brand-management 1 -101001011111 aster 1 -101001011111 constructed-products 1 -101001011111 not-so-great 1 -101001011111 Self-Realization 1 -101001011111 Reliance-led 1 -101001011111 songstress 1 -101001011111 tax-dodge 1 -101001011111 Hamilton-McFadden-Szabo 1 -101001011111 minor-key 1 -101001011111 shipping-and-services 1 -101001011111 booze-hounds 1 -101001011111 electronics-systems 1 -101001011111 voter-action 1 -101001011111 890,600 1 -101001011111 non-melancholic 1 -101001011111 Tsaritsa 1 -101001011111 over-45 1 -101001011111 Major-Leaguer 1 -101001011111 machinery-diversified 1 -101001011111 patientadvocacy 1 -101001011111 Ivy-Stanford-M.I.T. 1 -101001011111 topers 1 -101001011111 by-then-abdicated 1 -101001011111 pro-Chirac 1 -101001011111 food-ingredients 1 -101001011111 16/29a-9 1 -101001011111 air-inflatable 1 -101001011111 environmental-advocacy 1 -101001011111 Habomais 1 -101001011111 nine-store 1 -101001011111 issues-research 1 -101001011111 non-screened 1 -101001011111 fleet-voiced 1 -101001011111 UNION-MANAGEMENT 1 -101001011111 she-sleuth 1 -101001011111 often-abrasive 1 -101001011111 non-affinity 1 -101001011111 superconductivity-research 1 -101001011111 recession-battered 1 -101001011111 Ford-backed 1 -101001011111 Johnson-Shearson-Salomon 1 -101001011111 ever-charming 1 -101001011111 Iroquis 1 -101001011111 Johnson-Shearson 1 -101001011111 operations-management 1 -101001011111 Fialho-Conservas 1 -101001011111 Forstmann-led 1 -101001011111 political-organizing 1 -101001011111 anti-conscription 1 -101001011111 Philharmonic. 1 -101001011111 plastic-surgeon 1 -101001011111 Brunei-registered 1 -101001011111 AT&T-Philips-led 1 -101001011111 85-and-over 1 -101001011111 now-established 1 -101001011111 test-pilot 1 -101001011111 longest-listed 1 -101001011111 anti-imperalist 1 -101001011111 home-builders 1 -101001011111 paddlewheeler 1 -101001011111 80-bank 1 -101001011111 RUMASA 1 -101001011111 AIDS-information 1 -101001011111 battery-processing 1 -101001011111 urban-terrorist 1 -101001011111 Mobil-operated 1 -101001011111 Heinz-Pickle-Pepper 1 -101001011111 Shamrock-led 1 -101001011111 core-holder 1 -101001011111 Commissione 1 -101001011111 widest-spread 1 -101001011111 10-piece 1 -101001011111 definition-drafting 1 -101001011111 jeans-maker 1 -101001011111 all-but-deified 1 -101001011111 Adorable 1 -101001011111 non-hysterial 1 -101001011111 airheaded 1 -101001011111 Revillon/Cora/Editions/Mondiales 1 -101001011111 market-coverage 1 -101001011111 '70s-issue 1 -101001011111 keyboardist 1 -101001011111 loan-shark 1 -101001011111 Zuccherifici 1 -101001011111 aid-donor 1 -101001011111 some-of-the-time 1 -101001011111 Timesman 1 -101001011111 social-reform 1 -101001011111 tuxed-up 1 -101001011111 philologist 1 -101001011111 bull-like 1 -101001011111 sculptor/fiance 1 -101001011111 sentient 1 -101001011111 unslaked 1 -101001011111 once-bullish 1 -101001011111 Narraganset/Taft 1 -101001011111 mechanical-components 1 -101001011111 much-younger 1 -101001011111 oliveball 1 -101001011111 German-Brazilian 1 -101001011111 three-country 1 -101001011111 stock-pricing 1 -101001011111 railroad-labor 1 -101001011111 then-state-owned 1 -101001011111 unlustrous 1 -101001011111 ocean-crossing 1 -101001011111 Bharata 1 -101001011111 mortgage-bankers 1 -101001011111 legal-action 1 -101001011111 ever-reliable 1 -101001011111 Epic-label 1 -101001011111 Harrison/Prudential-Bache 1 -101001011111 noble-under-the-circumstances 1 -101001011111 focus/discussion 1 -101001011111 PORTRAIT 1 -101001011111 ultra-select 1 -101001011111 heptathlete 1 -101001011111 Chekist 1 -101001011111 18-company 1 -101001011111 much-hyped 1 -101001011111 transportation-industry 1 -101001011111 INVENTOR 1 -101001011111 slavery-tolerating 1 -101001011111 popularist 1 -101001011111 consumer-watchdog 1 -101001011111 brass-heavy 1 -101001011111 Casita 1 -101001011111 Mitsui-led 1 -101001011111 88-member 1 -101001011111 Steamrollers 1 -101001011111 under-three-years 1 -101001011111 arch-Hun 1 -101001011111 iridologist 1 -101001011111 Buffett-Tisch 1 -101001011111 electric-haired 1 -101001011111 death-squad-linked 1 -101001011111 Caribbean-Philippine 1 -101001011111 color-man 1 -101001011111 1939-41 1 -101001011111 Updikean 1 -101001011111 Electronic-Mechanical 1 -101001011111 Telecom-Mitel 1 -101001011111 Amplex 1 -101001011111 impressario 1 -101001011111 S.P.A 1 -101001011111 uncommissioned 1 -101001011111 sydicator 1 -101001011111 kind-hearted 1 -101001011111 124-outlet 1 -101001011111 ever-clever 1 -101001011111 Engle-led 1 -101001011111 cathouse 1 -101001011111 Rocio 1 -101001011111 manpower-services 1 -101001011111 Neuropsychologist 1 -101001011111 aspirational 1 -101001011111 barely-seen 1 -101001011111 330-screen 1 -101001011111 corn-farmers 1 -101001011111 she-woman 1 -101001011111 external-relations 1 -101001011111 privatization-consulting 1 -101001011111 consumerwatchdog 1 -101001011111 Cinchoneros 1 -101001011111 Mutual-Wesray 1 -101001011111 Pasadena-based 1 -101001011111 distance-race 1 -101001011111 super-cautious 1 -101001011111 club-pro-based 1 -101001011111 trade-sponsored 1 -101001011111 nerve-scraping 1 -101001011111 farm-engineering 1 -101001011111 year-older 1 -101001011111 D.C.based 1 -101001011111 agency-contracted 1 -101001011111 plantswoman 1 -101001011111 homefurnishings 1 -101001011111 Corimon 1 -101001011111 Evergo 1 -101001011111 Eller-Turley 1 -101001011111 Amoco-led 1 -101001011111 hall-of-famer 1 -101001011111 anti-hunger 1 -101001011111 ever-so-civil 1 -101001011111 Finno-Ugric 1 -101001011111 ultra-rightist 1 -101001011111 wholesale-grocers 1 -101001011111 lamp-manufacturing 1 -101001011111 business-press 1 -101001011111 industrysupported 1 -101001011111 LDP-supporting 1 -101001011111 defenseman 2 -101001011111 cineaste 2 -101001011111 concertmaster 2 -101001011111 ex-champ 2 -101001011111 Dreamers 2 -101001011111 Icahn-led 2 -101001011111 bookmaker 2 -101001011111 oligopolist 2 -101001011111 TVA. 2 -101001011111 singer/songwriter 2 -101001011111 producer/director 2 -101001011111 Yousef 2 -101001011111 Dreyfusard 2 -101001011111 octagenarian 2 -101001011111 elfish 2 -101001011111 anti-romantic 2 -101001011111 animal-protection 2 -101001011111 Simon-Martin 2 -101001011111 Bregman/Belzberg 2 -101001011111 courtside 2 -101001011111 biotechnologist 2 -101001011111 adjusted-gross-income 2 -101001011111 Electrolytic 2 -101001011111 smooth-haired 2 -101001011111 American-led 2 -101001011111 restauranteur 2 -101001011111 Robespierre 2 -101001011111 model-turned-actress 2 -101001011111 arms-controller 2 -101001011111 PERSON 2 -101001011111 Blackstone-Wasserstein 2 -101001011111 Hyon 2 -101001011111 upswept 2 -101001011111 ex-pug 2 -101001011111 Hecco-Craig 2 -101001011111 acccountants 2 -101001011111 incrementalist 2 -101001011111 Koc 2 -101001011111 Ericsson-led 2 -101001011111 Corsair-Concord 2 -101001011111 ex-fighter 2 -101001011111 WINES 2 -101001011111 country-singer 2 -101001011111 inside-trader 2 -101001011111 labor-monitoring 2 -101001011111 writer/producer 2 -101001011111 even-money 2 -101001011111 Agracetus 2 -101001011111 Soros-led 2 -101001011111 assemblywoman 2 -101001011111 Pee-wee 2 -101001011111 pain-in-the-neck 2 -101001011111 ethnic-studies 2 -101001011111 anti-Fed 2 -101001011111 Impressionism 3 -101001011111 bluesman 3 -101001011111 bicyclists 3 -101001011111 then-mayor 3 -101001011111 ironist 3 -101001011111 Salam 3 -101001011111 compatriot 3 -101001011111 noblewoman 3 -101001011111 private-investor 3 -101001011111 caucus-goers 3 -101001011111 CGE-led 3 -101001011111 money-manager 3 -101001011111 nuclear-services 3 -101001011111 trumpeters 3 -101001011111 multibillionaire 3 -101001011111 Bass-management 3 -101001011111 instrumentalist 3 -101001011111 Narragansett/Taft 3 -101001011111 Sarita 3 -101001011111 cricketer 3 -101001011111 Anglo-Argentine 3 -101001011111 madame 4 -101001011111 Campeche 4 -101001011111 right-hander 4 -101001011111 allergist 4 -101001011111 inquisitor 4 -101001011111 futurist 4 -101001011111 management-buyout 4 -101001011111 inner-circle 4 -101001011111 speed-skater 4 -101001011111 freelancer 4 -101001011111 image-maker 4 -101001011111 illusionist 4 -101001011111 actor-director 4 -101001011111 ironworker 4 -101001011111 punter 4 -101001011111 anchorwoman 4 -101001011111 writer-director 5 -101001011111 poll-taker 5 -101001011111 Saudi-American 5 -101001011111 anti-Semite 5 -101001011111 Peppermint 5 -101001011111 airhead 5 -101001011111 cattleman 5 -101001011111 buccaneer 5 -101001011111 auteur 5 -101001011111 ex-governor 5 -101001011111 oboist 5 -101001011111 film-maker 5 -101001011111 rupee 5 -101001011111 plutocrats 5 -101001011111 reliefer 5 -101001011111 running-mate 5 -101001011111 Ayn 6 -101001011111 agribusinessman 6 -101001011111 jazzman 6 -101001011111 Archduke 6 -101001011111 animator 6 -101001011111 anarchist 6 -101001011111 ex-convict 6 -101001011111 luger 6 -101001011111 Griffith-Joyner 6 -101001011111 all-Japanese 6 -101001011111 heldentenor 7 -101001011111 whiz-kid 7 -101001011111 RJR-Shearson-Salomon 7 -101001011111 Irishman 7 -101001011111 outfielders 7 -101001011111 trombonist 7 -101001011111 alchemist 7 -101001011111 Englishwoman 8 -101001011111 archaeologist 8 -101001011111 woodsmen 8 -101001011111 Wazir 8 -101001011111 cosmonaut 8 -101001011111 Beatle 9 -101001011111 individualist 9 -101001011111 realtor 9 -101001011111 embezzler 9 -101001011111 emigrant 9 -101001011111 preservationist 9 -101001011111 congresswoman 9 -101001011111 comedienne 9 -101001011111 infielder 9 -101001011111 ex-employee 9 -101001011111 EXPRESSED 10 -101001011111 academician 10 -101001011111 Edelman-led 10 -101001011111 electrocution 10 -101001011111 Chicagoan 11 -101001011111 GI 11 -101001011111 scriptwriter 11 -101001011111 Tara 11 -101001011111 filly 11 -101001011111 insider-trader 11 -101001011111 adman 12 -101001011111 innkeeper 12 -101001011111 ex-con 12 -101001011111 Ferruzzi-Montedison 13 -101001011111 ex-Marine 13 -101001011111 infantryman 14 -101001011111 essayist 15 -101001011111 cinematographer 15 -101001011111 oncologist 16 -101001011111 clarinetist 16 -101001011111 illustrator 17 -101001011111 bassist 17 -101001011111 wildcatter 17 -101001011111 ophthalmologist 18 -101001011111 adventurer 18 -101001011111 Prophet 18 -101001011111 aristocrat 18 -101001011111 internist 20 -101001011111 hotelier 21 -101001011111 saxophonist 22 -101001011111 trumpeter 22 -101001011111 rocker 22 -101001011111 Pickens-led 23 -101001011111 obstetrician 23 -101001011111 Olympian 24 -101001011111 explorer 24 -101001011111 then-chairman 28 -101001011111 heiress 31 -101001011111 linebacker 34 -101001011111 astrologer 34 -101001011111 anthropologist 36 -101001011111 educator 36 -101001011111 screenwriter 37 -101001011111 Englishman 38 -101001011111 baritone 44 -101001011111 oilmen 44 -101001011111 appraiser 45 -101001011111 anchorman 49 -101001011111 industry-supported 63 -101001011111 extremist 64 -101001011111 astronaut 65 -101001011111 auctioneer 72 -101001011111 syndicator 87 -101001011111 oilman 88 -101001011111 evangelist 92 -101001011111 entertainer 95 -101001011111 comedian 97 -101001011111 industrialist 98 -101001011111 soprano 100 -101001011111 advertiser 127 -101001011111 athlete 132 -101001011111 speculator 150 -101001011111 billionaire 157 -101001011111 advocacy 198 -101001011111 pollster 214 -101001011111 Queen 280 -101001011111 actress 297 -101001011111 actor 439 -101001011111 arbitrager 441 -101001011111 activist 469 -101001011111 entrepreneur 475 -101001011111 artist 692 -101001011111 financier 795 -101001011111 employer 1124 -101001011111 investor 7461 -101001011111 developer 1578 -101001100000 Yongin 1 -101001100000 Washington-an 1 -101001100000 extenuation 1 -101001100000 mid-stride 1 -101001100000 work-outs 1 -101001100000 evenness 1 -101001100000 Consequence 1 -101001100000 84,600 1 -101001100000 we'll-settle-for-less 1 -101001100000 bevies 1 -101001100000 Kranj 2 -101001100000 thicknesses 2 -101001100000 recisions 2 -101001100000 Uentrop 2 -101001100000 dacha 3 -101001100000 exegesis 5 -101001100000 longhand 7 -101001100000 effigy 7 -101001100000 fractions 15 -101001100000 contravention 16 -101001100000 increments 52 -101001100000 droves 80 -101001100000 observance 107 -101001100000 defiance 107 -101001100000 multiples 328 -101001100000 sight 551 -101001100000 anticipation 724 -101001100000 violation 963 -101001100000 favor 2971 -101001100000 charge 8031 -101001100000 advance 2983 -1010011000010 Big-event 1 -1010011000010 re-bidding 1 -1010011000010 loan-rating 1 -1010011000010 Salem-style 1 -1010011000010 530,271 1 -1010011000010 Rivaud 1 -1010011000010 ABANDON 1 -1010011000010 area-code-900 1 -1010011000010 seven-billion 1 -1010011000010 Yogiism 1 -1010011000010 LOCKERS 1 -1010011000010 1446 1 -1010011000010 softcover 1 -1010011000010 1,119,000 1 -1010011000010 anti-Federalists 1 -1010011000010 Hadera 1 -1010011000010 24,192 1 -1010011000010 163,000-subscriber 1 -1010011000010 napped 1 -1010011000010 share-of-market 1 -1010011000010 laser-assisted 1 -1010011000010 66,691 1 -1010011000010 419.79 1 -1010011000010 ERODES 1 -1010011000010 80-channel 1 -1010011000010 Veraguas 1 -1010011000010 1174.62 1 -1010011000010 STRINGS 1 -1010011000010 non-DNA 1 -1010011000010 Xalapa 1 -1010011000010 evaporators 1 -1010011000010 beansprouts 1 -1010011000010 Britain-U.S. 1 -1010011000010 13-0 2 -1010011000010 Kaffir 2 -1010011000010 TRAC 2 -1010011000010 preregistration 2 -1010011000010 239-190 2 -1010011000010 Phuket 2 -1010011000010 613.67 2 -1010011000010 paraquat 2 -1010011000010 rebidding 2 -1010011000010 2373.8 2 -1010011000010 Orangeroof 2 -1010011000010 bambino 2 -1010011000010 minutes-of-use 2 -1010011000010 90-0 2 -1010011000010 5,850 2 -1010011000010 11,356,625 2 -1010011000010 62-38 2 -1010011000010 olfaction 2 -1010011000010 eyewash 2 -1010011000010 Zululand 2 -1010011000010 anodes 2 -1010011000010 Variation 2 -1010011000010 65-33 3 -1010011000010 opinion-shopping 3 -1010011000010 93-3 3 -1010011000010 Cigli 3 -1010011000010 nondeductibility 4 -1010011000010 GST 6 -1010011000010 Bid 28 -1010011000010 preparation 359 -1010011000010 default 1047 -1010011000010 return 8089 -1010011000010 search 1580 -1010011000011 sabatoge 1 -1010011000011 0.5449 1 -1010011000011 getups 1 -1010011000011 non-reappointment 1 -1010011000011 serious-sounding 1 -1010011000011 slapsticky 1 -1010011000011 Drammen 1 -1010011000011 one-iron 1 -1010011000011 non-citizens 1 -1010011000011 Turkmenistan 1 -1010011000011 Rarotonga 1 -1010011000011 yuppiehood 1 -1010011000011 role-players 1 -1010011000011 over-the-shoulder 1 -1010011000011 strike-authorization 1 -1010011000011 Tescheljabinsk 1 -1010011000011 Grosseto 1 -1010011000011 Erftstadt 1 -1010011000011 Moundhouse 1 -1010011000011 tollway 1 -1010011000011 flimflammed 1 -1010011000011 Astrakhan 1 -1010011000011 diagnotics 1 -1010011000011 pranksterism 1 -1010011000011 behaviour. 1 -1010011000011 Spidey 1 -1010011000011 1455 1 -1010011000011 majority. 1 -1010011000011 mini-speeches 1 -1010011000011 Grizabella 1 -1010011000011 Franklinisms 1 -1010011000011 Baaba 1 -1010011000011 coincidently 1 -1010011000011 prenant 1 -1010011000011 lunch-breaks 1 -1010011000011 Hartlike 1 -1010011000011 midconstruction 1 -1010011000011 Invercargill 1 -1010011000011 Newarkness 1 -1010011000011 welt 1 -1010011000011 Stratford-upon-Avon 1 -1010011000011 mega-vitamins 1 -1010011000011 propeller-topped 1 -1010011000011 Polesine 1 -1010011000011 drug. 1 -1010011000011 unionized. 1 -1010011000011 glasnost-perestroika 1 -1010011000011 afterwork 1 -1010011000011 midsaunter 1 -1010011000011 dietitians 1 -1010011000011 handle. 1 -1010011000011 thorium 1 -1010011000011 breakfast-eaters 1 -1010011000011 .321 1 -1010011000011 door-locks 1 -1010011000011 fluconazole 1 -1010011000011 25,261,323,898,060,800 1 -1010011000011 Dax-Pontonx 1 -1010011000011 calligraphically 1 -1010011000011 self-exile 1 -1010011000011 654,744 1 -1010011000011 ambassadorships 1 -1010011000011 lepidoptery 1 -1010011000011 rehashed. 1 -1010011000011 test-markets 1 -1010011000011 INPAC 1 -1010011000011 megabids 1 -1010011000011 ampersands 1 -1010011000011 164,428 1 -1010011000011 Eurocrooks 1 -1010011000011 obsolesence 1 -1010011000011 back-offices 1 -1010011000011 Altamont 1 -1010011000011 slow-building 1 -1010011000011 Silkstone 1 -1010011000011 badder 1 -1010011000011 1953-1960 1 -1010011000011 Dogukapi 1 -1010011000011 illegibly 1 -1010011000011 Raybestos 1 -1010011000011 STUD 1 -1010011000011 stowaway 2 -1010011000011 Znaniye 2 -1010011000011 207,514 2 -1010011000011 teach-ins 2 -1010011000011 trowel 2 -1010011000011 Antilon 2 -1010011000011 arabesque 2 -1010011000011 Connemara 2 -1010011000011 superminis 2 -1010011000011 rascality 2 -1010011000011 lobotomies 2 -1010011000011 1680 2 -1010011000011 Chongju 2 -1010011000011 Episcopalians 2 -1010011000011 effect. 2 -1010011000011 commandment 2 -1010011000011 .100 2 -1010011000011 wing-tips 2 -1010011000011 crematorium 2 -1010011000011 ringsiders 2 -1010011000011 goggled 3 -1010011000011 play. 3 -1010011000011 action. 3 -1010011000011 chaotically 3 -1010011000011 snowflake 3 -1010011000011 aspirins 3 -1010011000011 tuyere 4 -1010011000011 non-musical 4 -1010011000011 double-digits 4 -1010011000011 Europe. 4 -1010011000011 locator 4 -1010011000011 hooting 4 -1010011000011 toenail 4 -1010011000011 eddies 4 -1010011000011 shirtsleeves 5 -1010011000011 dungarees 5 -1010011000011 blemish 6 -1010011000011 crypt 6 -1010011000011 semi-retirement 6 -1010011000011 Beantown 7 -1010011000011 pelvis 8 -1010011000011 disuse 9 -1010011000011 crouch 9 -1010011000011 Psalm 9 -1010011000011 naps 11 -1010011000011 potshots 14 -1010011000011 disequilibrium 14 -1010011000011 hock 16 -1010011000011 shortcuts 17 -1010011000011 umbrage 17 -1010011000011 adulthood 27 -1010011000011 fiddle 42 -1010011000011 handcuffs 49 -1010011000011 ruins 61 -1010011000011 vogue 89 -1010011000011 stride 110 -1010011000011 flames 121 -1010011000011 receivership 127 -1010011000011 pad 142 -1010011000011 delight 158 -1010011000011 orbit 189 -1010011000011 pains 210 -1010011000011 refuge 221 -1010011000011 tune 335 -1010011000011 detail 551 -1010011000011 foot 734 -1010011000011 place 7223 -1010011000011 shape 1029 -101001100010 akimbo 1 -101001100010 odor-control 1 -101001100010 915,600 1 -101001100010 Piqua 1 -101001100010 missile-surveillance 1 -101001100010 uncertaintly 1 -101001100010 sphagnol 1 -101001100010 10-mos 1 -101001100010 176,700 1 -101001100010 continuances 1 -101001100010 Prosecute 1 -101001100010 Evensen 1 -101001100010 298,857 1 -101001100010 30,154 1 -101001100010 parboiled 1 -101001100010 1,527,050 1 -101001100010 9,015,230 1 -101001100010 dual-decks 1 -101001100010 Ektelon 1 -101001100010 29,975 1 -101001100010 good-neighborly 1 -101001100010 centre 1 -101001100010 459,500 1 -101001100010 nonofficer 1 -101001100010 superspeeds 1 -101001100010 fast-enough 1 -101001100010 ratio-operating 1 -101001100010 1,099,930 1 -101001100010 luncheonettes 1 -101001100010 1,227,650 1 -101001100010 glucocerebrosidase 1 -101001100010 Europe-1992 1 -101001100010 blacklists 1 -101001100010 sub-units 1 -101001100010 suzerainty 1 -101001100010 Swer 1 -101001100010 covert-aid 1 -101001100010 Roper-produced 1 -101001100010 Khabbouz 1 -101001100010 Ranta 1 -101001100010 Space-Co 1 -101001100010 developer-partners 1 -101001100010 542,652 1 -101001100010 healthiness 1 -101001100010 optimizer 1 -101001100010 Caedmon 1 -101001100010 controversialists 1 -101001100010 380,579 1 -101001100010 40,946 1 -101001100010 altitude-broadcasting 1 -101001100010 Roomful 1 -101001100010 commisioner 1 -101001100010 Steller 1 -101001100010 460,633 1 -101001100010 maleness 1 -101001100010 469,605 1 -101001100010 self-audits 1 -101001100010 megadoses 1 -101001100010 multiple-cable 1 -101001100010 10,594,925 1 -101001100010 Hydraquip 1 -101001100010 Odizor 1 -101001100010 Zymogenetics 1 -101001100010 roll-era 1 -101001100010 location-fixing 1 -101001100010 compromise-seekers 1 -101001100010 squintier 1 -101001100010 pollings 1 -101001100010 Lapygin 1 -101001100010 risk-in-force 1 -101001100010 1,115,937 1 -101001100010 bra-burners 1 -101001100010 broomsticks 1 -101001100010 GIVENCHY 1 -101001100010 17,100 1 -101001100010 457,800 1 -101001100010 airbus 1 -101001100010 twirly 1 -101001100010 No.7 1 -101001100010 204,350 1 -101001100010 tieups 1 -101001100010 ekagrata 1 -101001100010 four-speaker 1 -101001100010 workturns 1 -101001100010 NORCEM 1 -101001100010 oil-removal 1 -101001100010 gnation 1 -101001100010 reprobation 1 -101001100010 clownsmanship 1 -101001100010 Mahoganny 1 -101001100010 437,500 1 -101001100010 free- 1 -101001100010 Prantl 1 -101001100010 dialectically 1 -101001100010 2,007,544 1 -101001100010 0.6397 1 -101001100010 Chelny 1 -101001100010 117,400 1 -101001100010 sales-of 1 -101001100010 patienthood 1 -101001100010 anti-littering 1 -101001100010 Interprovinciale 1 -101001100010 black-marketeers 1 -101001100010 splatted 1 -101001100010 order-recording 1 -101001100010 nationaltaxes 1 -101001100010 double-counting 2 -101001100010 pole-vault 2 -101001100010 subsidence 2 -101001100010 penny-wise 2 -101001100010 atriums 2 -101001100010 In-Depth 2 -101001100010 twenty-fives 2 -101001100010 implemention 2 -101001100010 near-accidents 2 -101001100010 Sluts 2 -101001100010 cavil 3 -101001100010 porpoises 3 -101001100010 shallowness 3 -101001100010 bohemians 3 -101001100010 authoring 3 -101001100010 dissidence 4 -101001100010 control. 4 -101001100010 remakes 5 -101001100010 habitues 6 -101001100010 mishandling 34 -101001100010 jams 42 -101001100010 precedence 64 -101001100010 possession 263 -101001100010 jurisdiction 465 -101001100010 control 12083 -101001100010 rid 519 -1010011000110 Duisburg-Huckingen 1 -1010011000110 dodgier 1 -1010011000110 megaliths 1 -1010011000110 self-caricature 1 -1010011000110 politicizations 1 -1010011000110 advanatge 1 -1010011000110 wood/ 1 -1010011000110 wads 1 -1010011000110 behavior. 1 -1010011000110 nymphomania 1 -1010011000110 legup 1 -1010011000110 Volzhsk 1 -1010011000110 coupon-clipping 1 -1010011000110 Ciceros 1 -1010011000110 upholders 1 -1010011000110 neurotoxicity 1 -1010011000110 flummery 1 -1010011000110 pictures. 1 -1010011000110 1985s 1 -1010011000110 wicket 1 -1010011000110 voodoo. 1 -1010011000110 guineas 1 -1010011000110 marketing-directed 1 -1010011000110 rat-faces 1 -1010011000110 in-theater 1 -1010011000110 ghoulishness 1 -1010011000110 rockface 1 -1010011000110 shedder 1 -1010011000110 lost-worktime 1 -1010011000110 fuzzballs 1 -1010011000110 manner. 1 -1010011000110 renumeration 1 -1010011000110 syncopation 1 -1010011000110 diffences 1 -1010011000110 vino 1 -1010011000110 science-fictionish 1 -1010011000110 neoliberalism 1 -1010011000110 lip-smacker 1 -1010011000110 bill-payer 1 -1010011000110 cusses 1 -1010011000110 seriousnesses 1 -1010011000110 thumb-twiddling 1 -1010011000110 people-places 1 -1010011000110 52.57 1 -1010011000110 translucence 1 -1010011000110 grinding-down 1 -1010011000110 entites 1 -1010011000110 titer 1 -1010011000110 foliar 1 -1010011000110 hardeners 1 -1010011000110 cancer-causer 1 -1010011000110 fusillades 1 -1010011000110 incrustations 1 -1010011000110 Taninga 1 -1010011000110 Manjacaze 1 -1010011000110 knower 1 -1010011000110 nightcrawlers 1 -1010011000110 adumbration 1 -1010011000110 LDLcholesterol 1 -1010011000110 non-stars 1 -1010011000110 mannerism 1 -1010011000110 price-trimming 1 -1010011000110 Wite-Out 1 -1010011000110 peccancies 1 -1010011000110 attender 1 -1010011000110 Tula 1 -1010011000110 celebrator 1 -1010011000110 Wickersham-2 1 -1010011000110 hocus 1 -1010011000110 JRS 1 -1010011000110 rethinkings 1 -1010011000110 dragomans 1 -1010011000110 co-responsibility. 1 -1010011000110 uplinks 1 -1010011000110 aggrandization 1 -1010011000110 tariff-cutting 1 -1010011000110 thanthose 1 -1010011000110 advange 1 -1010011000110 misinvestments 1 -1010011000110 bptism 1 -1010011000110 three-program 1 -1010011000110 onomatopoeia 1 -1010011000110 pugs 1 -1010011000110 intransigencies 1 -1010011000110 knot-points 1 -1010011000110 minicycles 1 -1010011000110 expectationism 1 -1010011000110 documenter 1 -1010011000110 voyage-to-nowhere 1 -1010011000110 forewarnings 1 -1010011000110 tap-technique 1 -1010011000110 gangplanks 1 -1010011000110 coveys 1 -1010011000110 Pacmen 1 -1010011000110 disrepair. 1 -1010011000110 malversation 1 -1010011000110 1487 1 -1010011000110 self-multilation 1 -1010011000110 Mimis 1 -1010011000110 open-to-buy 1 -1010011000110 Hudsonville 1 -1010011000110 C-ration 1 -1010011000110 dazzlements 1 -1010011000110 near-violation 1 -1010011000110 underwiting 1 -1010011000110 soldier-statesman 1 -1010011000110 dissolvent 1 -1010011000110 contract-negotiation 1 -1010011000110 downburst 1 -1010011000110 product-options 1 -1010011000110 impossibilities 1 -1010011000110 hankypanky 1 -1010011000110 side-bets 1 -1010011000110 steeplechase 2 -1010011000110 abscess 2 -1010011000110 adaption 2 -1010011000110 Kimolina 2 -1010011000110 succulents 2 -1010011000110 recapitulation 2 -1010011000110 business-expense 2 -1010011000110 beagles 2 -1010011000110 letter-turner 3 -1010011000110 deities 3 -1010011000110 cognizance 3 -1010011000110 Spite 3 -1010011000110 lowdown 3 -1010011000110 gales 3 -1010011000110 gazebo 3 -1010011000110 zing 3 -1010011000110 triviality 3 -1010011000110 dabs 3 -1010011000110 babushkas 3 -1010011000110 loaners 3 -1010011000110 non-interventionism 3 -1010011000110 vivant 4 -1010011000110 nocere 4 -1010011000110 aggregation 4 -1010011000110 blotch 4 -1010011000110 polarity 4 -1010011000110 humus 4 -1010011000110 overdrive 9 -1010011000110 vu 29 -1010011000110 impossibility 29 -1010011000110 abundance 105 -1010011000110 edge 1142 -1010011000110 advantage 2751 -1010011000110 impact 4068 -1010011000110 effect 7228 -1010011000111 0.805461 1 -1010011000111 chroniclers 1 -1010011000111 south-southwest 1 -1010011000111 phasing-in 1 -1010011000111 --or 1 -1010011000111 290,282 1 -1010011000111 +544 1 -1010011000111 tongue-lashings 1 -1010011000111 CEFP 1 -1010011000111 1977-85 1 -1010011000111 LFB. 1 -1010011000111 128,000-square-foot 1 -1010011000111 A- 1 -1010011000111 price-lists 1 -1010011000111 short-tons 1 -1010011000111 99,150 1 -1010011000111 permissibility 1 -1010011000111 outliers 1 -1010011000111 7/12ths 1 -1010011000111 west-southwest 1 -1010011000111 copperplates 1 -1010011000111 slews 1 -1010011000111 Removals 1 -1010011000111 Rapsheet 1 -1010011000111 Fourcroy 1 -1010011000111 Allies. 1 -1010011000111 greenbriars 1 -1010011000111 Jersey/Delaware 1 -1010011000111 spates 1 -1010011000111 abeam 1 -1010011000111 55-story 1 -1010011000111 reestimation 1 -1010011000111 addding-up 1 -1010011000111 Usefulness 1 -1010011000111 498,334 1 -1010011000111 19,556 1 -1010011000111 150,487 1 -1010011000111 30,000-case 1 -1010011000111 Zhongnanhai 1 -1010011000111 decimations 1 -1010011000111 3/100ths 1 -1010011000111 225,477 1 -1010011000111 Elites 1 -1010011000111 126-mile 1 -1010011000111 0.30453 1 -1010011000111 Shutdowns 1 -1010011000111 0.2494 1 -1010011000111 78,535 1 -1010011000111 correspondent/news 1 -1010011000111 Dalma 1 -1010011000111 Lifecircuit 1 -1010011000111 linking-up 1 -1010011000111 22,483 1 -1010011000111 1,358,976 1 -1010011000111 tax-laws 1 -1010011000111 malpractices 1 -1010011000111 164,560 1 -1010011000111 73,345 1 -1010011000111 74,064 1 -1010011000111 Doormat 1 -1010011000111 Fiddle 1 -1010011000111 DEFIANCE 1 -1010011000111 itchiness 2 -1010011000111 F-sharp 2 -1010011000111 EL.GE 2 -1010011000111 vanguards 2 -1010011000111 undercarriages 2 -1010011000111 desiderata 2 -1010011000111 dubiety 2 -1010011000111 shapers 2 -1010011000111 re-releases 2 -1010011000111 BATC 2 -1010011000111 bards 2 -1010011000111 co-chiefs 2 -1010011000111 bistros 2 -1010011000111 resegregation 2 -1010011000111 elucidation 2 -1010011000111 nonpayers 2 -1010011000111 die-off 3 -1010011000111 teaspoons 3 -1010011000111 imprimaturs 3 -1010011000111 0.801 3 -1010011000111 statuettes 3 -1010011000111 daylighting 3 -1010011000111 usurpers 3 -1010011000111 0.3675 3 -1010011000111 testimonies 4 -1010011000111 progenitors 4 -1010011000111 decimation 4 -1010011000111 avant 4 -1010011000111 watchmen 4 -1010011000111 epiphanies 4 -1010011000111 handfuls 5 -1010011000111 cobblestones 5 -1010011000111 money-changers 5 -1010011000111 facsimiles 6 -1010011000111 compilations 6 -1010011000111 interviewees 6 -1010011000111 engravings 7 -1010011000111 retesting 8 -1010011000111 psyches 8 -1010011000111 Consequences 9 -1010011000111 flurries 11 -1010011000111 tabulations 12 -1010011000111 circumference 12 -1010011000111 blizzards 16 -1010011000111 swarms 26 -1010011000111 southwest 126 -1010011000111 northwest 134 -1010011000111 southeast 143 -1010011000111 northeast 176 -1010011000111 specifics 283 -1010011000111 west 394 -1010011000111 east 404 -1010011000111 portions 441 -1010011000111 stages 596 -1010011000111 south 731 -1010011000111 north 766 -1010011000111 terms 7532 -1010011000111 details 3250 -101001100100 further-and 1 -101001100100 crosssections 1 -101001100100 expecation 1 -101001100100 barberfish 1 -101001100100 emplacement 1 -101001100100 front-ending 1 -101001100100 Monitor-produced 1 -101001100100 Zantec-one 1 -101001100100 figurine 1 -101001100100 fair-sounding 1 -101001100100 recriminalization 1 -101001100100 farmer-tenants 1 -101001100100 lock-and-dam 1 -101001100100 compunctions 1 -101001100100 respecter 2 -101001100100 antihero 2 -101001100100 misdiagnosis 2 -101001100100 fabulations 2 -101001100100 disinterestedness 2 -101001100100 non-starters 2 -101001100100 shares. 2 -101001100100 recalibration 2 -101001100100 sub-specialty 2 -101001100100 down-sizing 2 -101001100100 sheaths 2 -101001100100 factoids 2 -101001100100 gentlemanliness 2 -101001100100 knowlege 3 -101001100100 nakedness 3 -101001100100 derelictions 3 -101001100100 fixity 3 -101001100100 localization 3 -101001100100 defoliation 3 -101001100100 chastisement 3 -101001100100 sieges 3 -101001100100 cowgirl 3 -101001100100 inklings 3 -101001100100 sinew 3 -101001100100 nay-saying 3 -101001100100 intimation 3 -101001100100 offs 4 -101001100100 mincemeat 4 -101001100100 redistributions 4 -101001100100 foreknowledge 4 -101001100100 advertisments 4 -101001100100 infirmities 4 -101001100100 multiculturalism 4 -101001100100 hangups 4 -101001100100 editorializing 5 -101001100100 filaments 5 -101001100100 panaceas 5 -101001100100 forewarning 5 -101001100100 infinity 5 -101001100100 pretentions 5 -101001100100 equivocation 6 -101001100100 legalism 6 -101001100100 blowouts 6 -101001100100 wickedness 7 -101001100100 embellishment 7 -101001100100 irritants 7 -101001100100 eccentricity 8 -101001100100 gushers 8 -101001100100 refutation 8 -101001100100 symbiosis 8 -101001100100 pilgrim 8 -101001100100 dissection 8 -101001100100 vilification 9 -101001100100 misapprehension 9 -101001100100 corroboration 9 -101001100100 articulation 10 -101001100100 canard 10 -101001100100 substantiation 11 -101001100100 exponent 12 -101001100100 commonality 13 -101001100100 emancipation 13 -101001100100 dissipation 14 -101001100100 insinuations 14 -101001100100 notations 14 -101001100100 renderings 15 -101001100100 snugging 15 -101001100100 streaks 15 -101001100100 specificity 16 -101001100100 misperception 17 -101001100100 collage 17 -101001100100 reassurances 18 -101001100100 pretensions 20 -101001100100 sleight 21 -101001100100 misconception 22 -101001100100 accessibility 23 -101001100100 proofs 23 -101001100100 inkling 25 -101001100100 ifs 25 -101001100100 manifestations 27 -101001100100 regularity 28 -101001100100 expedient 29 -101001100100 inference 30 -101001100100 urgings 32 -101001100100 acknowledgement 38 -101001100100 overview 38 -101001100100 reminders 42 -101001100100 rumblings 42 -101001100100 acknowledgment 45 -101001100100 complication 46 -101001100100 unanimity 47 -101001100100 hesitation 50 -101001100100 apologies 54 -101001100100 pretense 54 -101001100100 vindication 59 -101001100100 recollection 59 -101001100100 reassurance 59 -101001100100 thread 74 -101001100100 condemnation 80 -101001100100 impressions 83 -101001100100 imitation 83 -101001100100 interruption 106 -101001100100 clarification 131 -101001100100 misunderstanding 137 -101001100100 streak 145 -101001100100 characteristic 159 -101001100100 encouragement 162 -101001100100 reminder 197 -101001100100 certainty 206 -101001100100 hints 260 -101001100100 hint 288 -101001100100 awareness 301 -101001100100 suspicion 320 -101001100100 assurance 391 -101001100100 assurances 415 -101001100100 proof 541 -101001100100 acceptance 633 -101001100100 explanation 743 -101001100100 recognition 794 -101001100100 understanding 994 -101001100100 indication 1075 -101001100100 discussion 1095 -101001100100 warning 1229 -101001100100 notice 1369 -101001100100 knowledge 1435 -101001100100 criticism 1881 -101001100100 signs 2477 -101001100100 choice 2492 -101001100100 sense 3523 -101001100100 evidence 4668 -101001100101 asseveration 1 -101001100101 preconception 1 -101001100101 purblindness 1 -101001100101 boobytraps 1 -101001100101 sportsjackets 1 -101001100101 theorems 1 -101001100101 bloodbaths 1 -101001100101 agora 1 -101001100101 Tarrance-SRI 1 -101001100101 jauntiness 2 -101001100101 cooperativeness 2 -101001100101 Buckaroo 2 -101001100101 winterkill 2 -101001100101 unbelievability 2 -101001100101 neo-detente 2 -101001100101 eclat 2 -101001100101 fathoming 2 -101001100101 lavishness 2 -101001100101 polis 3 -101001100101 alleyways 3 -101001100101 Drain 3 -101001100101 capsizing 3 -101001100101 funereal 4 -101001100101 footnoting 4 -101001100101 tempi 4 -101001100101 hectoring 5 -101001100101 partiality 6 -101001100101 hypocrites 6 -101001100101 anomie 6 -101001100101 under-reporting 7 -101001100101 thump 8 -101001100101 flaunting 9 -101001100101 Lourdes 9 -101001100101 pilfering 9 -101001100101 rejiggering 10 -101001100101 debunking 11 -101001100101 flogging 12 -101001100101 gush 13 -101001100101 pummeling 16 -101001100101 shriek 18 -101001100101 bustle 19 -101001100101 surmise 21 -101001100101 retort 28 -101001100101 undoing 42 -101001100101 whisper 50 -101001100101 lament 51 -101001100101 dread 60 -101001100101 mistrust 67 -101001100101 characterization 96 -101001100101 vow 122 -101001100101 envy 137 -101001100101 neglect 204 -101001100101 contention 355 -101001100101 fault 381 -101001100101 perception 620 -101001100101 dream 717 -101001100101 suspected 838 -101001100101 stress 849 -101001100101 belief 1043 -101001100101 promise 1295 -101001100101 handling 1295 -101001100101 feeling 1476 -101001100101 love 1493 -101001100101 claim 3176 -101001100101 view 5171 -101001100101 fear 3575 -101001100110 1963-65 1 -101001100110 draconic 1 -101001100110 0S/2 1 -101001100110 cardio-selective 1 -101001100110 document-shredding 1 -101001100110 debauched 1 -101001100110 persiflage 1 -101001100110 video-sculpture 1 -101001100110 data-selling 1 -101001100110 selfsufficiency 1 -101001100110 cash-generator 1 -101001100110 didacticism 1 -101001100110 proselytized 1 -101001100110 anguishing 1 -101001100110 mis-paced 1 -101001100110 ex-IBMers 1 -101001100110 non-voluntary 1 -101001100110 pigheadedness 1 -101001100110 ritualized 1 -101001100110 skepticim 1 -101001100110 batsmen 1 -101001100110 Phanaung 1 -101001100110 charlatanism 1 -101001100110 zagging 1 -101001100110 geochemists 1 -101001100110 specialized. 1 -101001100110 screechings 1 -101001100110 conflict-mediation 1 -101001100110 glumness 1 -101001100110 retarded. 1 -101001100110 aninvestment 1 -101001100110 pseudo-books 1 -101001100110 impossible. 1 -101001100110 heat-prostration 1 -101001100110 day-from 1 -101001100110 leaseholders 1 -101001100110 data-bases 1 -101001100110 earings 1 -101001100110 moldiness 1 -101001100110 incoporation 1 -101001100110 extortions 1 -101001100110 prestissimo 1 -101001100110 self-dismemberment 1 -101001100110 nosier 1 -101001100110 tizziness 1 -101001100110 tetraploid 1 -101001100110 screeds 1 -101001100110 salamanders 1 -101001100110 candids 1 -101001100110 sperms 1 -101001100110 factory-farms 1 -101001100110 self-congratulating 1 -101001100110 non-nationals 1 -101001100110 classwork 1 -101001100110 mega-project 1 -101001100110 super-pessimists 1 -101001100110 70,900 1 -101001100110 preception 1 -101001100110 ostracizing 1 -101001100110 miscegenation 1 -101001100110 pssibility 1 -101001100110 inauthenticity 1 -101001100110 disppointment 1 -101001100110 calicos 1 -101001100110 burblings 1 -101001100110 Sieglindes 1 -101001100110 Overcharge 1 -101001100110 Daza 1 -101001100110 mimesis 1 -101001100110 updrift 1 -101001100110 reverse-LBOs 1 -101001100110 mini-features 1 -101001100110 28059.97 1 -101001100110 news-blurbs 1 -101001100110 belly-aching 1 -101001100110 Longden 1 -101001100110 Czestochwa 1 -101001100110 exorcist 1 -101001100110 antiSemite 1 -101001100110 self-dare 1 -101001100110 still-muddled 1 -101001100110 pingpongs 1 -101001100110 26445.87 1 -101001100110 secularity 1 -101001100110 creamers 1 -101001100110 after-taste 1 -101001100110 Antietam 1 -101001100110 soulsearching 1 -101001100110 .264 1 -101001100110 hellcat 1 -101001100110 debt-bonds 1 -101001100110 walk-outs 1 -101001100110 Japaneseness 1 -101001100110 circuitbreakers 1 -101001100110 patinating 1 -101001100110 yield-per-acre 1 -101001100110 bedsheet 1 -101001100110 Leviticus 2 -101001100110 rules-of-thumb 2 -101001100110 woodlots 2 -101001100110 sound-and-light 2 -101001100110 founder-entrepreneurs 2 -101001100110 aahs 2 -101001100110 non-stories 2 -101001100110 Capriccioso 2 -101001100110 solipsistic 2 -101001100110 pungently 2 -101001100110 sophistries 2 -101001100110 unconsciousness 2 -101001100110 somberness 2 -101001100110 Adventists 2 -101001100110 trapdoors 2 -101001100110 discreditably 2 -101001100110 calendulas 2 -101001100110 to-do 2 -101001100110 sanctioneers 2 -101001100110 rootlessness 2 -101001100110 modularization 2 -101001100110 Gauls 2 -101001100110 celerity 2 -101001100110 guilts 2 -101001100110 bravos 2 -101001100110 factionalized 2 -101001100110 ravings 3 -101001100110 flippancy 3 -101001100110 diffident 3 -101001100110 willfulness 3 -101001100110 Duneava 3 -101001100110 bioethicists 3 -101001100110 fetters 3 -101001100110 typecasting 3 -101001100110 over-optimism 3 -101001100110 mystification 3 -101001100110 chukkers 3 -101001100110 Olliemania 3 -101001100110 handwringing 4 -101001100110 shortcovering 4 -101001100110 protozoa 4 -101001100110 befuddlement 4 -101001100110 taxiways 4 -101001100110 caterwauling 4 -101001100110 broods 4 -101001100110 oversimplification 4 -101001100110 moxie 5 -101001100110 debits 5 -101001100110 snowing 5 -101001100110 encouragingly 5 -101001100110 over-expansion 5 -101001100110 holler 6 -101001100110 .300 6 -101001100110 prattle 6 -101001100110 gabbing 7 -101001100110 trickery 7 -101001100110 shyness 7 -101001100110 queasiness 7 -101001100110 retablos 7 -101001100110 bromides 7 -101001100110 caterpillars 7 -101001100110 hocus-pocus 8 -101001100110 clucking 9 -101001100110 snickering 9 -101001100110 disgruntlement 9 -101001100110 harangue 9 -101001100110 fallacies 9 -101001100110 interminably 9 -101001100110 confusions 10 -101001100110 happenstance 10 -101001100110 fantasizes 11 -101001100110 ranting 11 -101001100110 fantasizing 12 -101001100110 8-1 12 -101001100110 theorizing 12 -101001100110 cautiousness 13 -101001100110 foreboding 14 -101001100110 musing 14 -101001100110 disquiet 14 -101001100110 incredulity 14 -101001100110 silt 15 -101001100110 discouragement 15 -101001100110 profittaking 16 -101001100110 bewilderment 17 -101001100110 demoralization 17 -101001100110 grousing 18 -101001100110 self-criticism 18 -101001100110 negativism 19 -101001100110 moaning 19 -101001100110 ado 19 -101001100110 puzzlement 20 -101001100110 raves 20 -101001100110 pandemonium 21 -101001100110 hand-wringing 22 -101001100110 conjecture 26 -101001100110 trepidation 27 -101001100110 position-squaring 28 -101001100110 misunderstandings 33 -101001100110 wariness 52 -101001100110 skittishness 60 -101001100110 unease 66 -101001100110 ambivalence 67 -101001100110 bullishness 75 -101001100110 uneasiness 84 -101001100110 bearishness 87 -101001100110 grumbling 96 -101001100110 cynicism 101 -101001100110 bargain-hunting 103 -101001100110 apprehension 111 -101001100110 pessimism 182 -101001100110 jitters 190 -101001100110 outrage 214 -101001100110 nervousness 261 -101001100110 anxiety 338 -101001100110 anger 451 -101001100110 disappointment 492 -101001100110 skepticism 575 -101001100110 caution 731 -101001100110 optimism 795 -101001100110 confusion 829 -101001100110 profit-taking 935 -101001100110 doubts 982 -101001100110 worries 1546 -101001100110 uncertainty 1597 -101001100110 rumors 2699 -101001100110 note 3217 -101001100110 speculation 3455 -101001100111 standing. 1 -101001100111 Aww 1 -101001100111 Faggots 1 -101001100111 Petrouchka 1 -101001100111 John-End-of-the-World-Posteraro 1 -101001100111 Whoopee 1 -101001100111 third-and 1 -101001100111 managers. 1 -101001100111 PEs 1 -101001100111 pardners 1 -101001100111 empty-nester 1 -101001100111 riting 1 -101001100111 Anxiolytic 1 -101001100111 earned-run-averages 1 -101001100111 669-acre 1 -101001100111 if-if-if 1 -101001100111 Vette 1 -101001100111 yevskiy 1 -101001100111 mugshots 1 -101001100111 8,437,483 1 -101001100111 15,187,470 1 -101001100111 ABN 1 -101001100111 hieroglyphica 1 -101001100111 bullfeathers 1 -101001100111 work/family 1 -101001100111 Toast-R-Cakes 1 -101001100111 ius 1 -101001100111 perserverence 1 -101001100111 D.E.C. 1 -101001100111 emi 1 -101001100111 284.40 1 -101001100111 seldom-touched 1 -101001100111 Embezzlement 1 -101001100111 concept. 1 -101001100111 easter 1 -101001100111 esnobismo 1 -101001100111 outing. 1 -101001100111 adviser. 1 -101001100111 sires 1 -101001100111 Gastronome 1 -101001100111 equitize 1 -101001100111 compadrazgo 1 -101001100111 Fourscore 1 -101001100111 committtee 1 -101001100111 carryovers 1 -101001100111 Hija 1 -101001100111 Mangles 1 -101001100111 osophies 1 -101001100111 streetscapes 1 -101001100111 Capable 1 -101001100111 dy 1 -101001100111 Jeepers 1 -101001100111 aint 1 -101001100111 re-deployment 1 -101001100111 Ab 1 -101001100111 heavy-compressor 1 -101001100111 Deerslayer 1 -101001100111 Fidelista 1 -101001100111 abrazo 1 -101001100111 nicht 1 -101001100111 RO1 1 -101001100111 bear/beaver 1 -101001100111 Monosson 1 -101001100111 Shoemakers 1 -101001100111 yeses 1 -101001100111 Nicargua 1 -101001100111 expecations 1 -101001100111 fund. 1 -101001100111 regenerators 1 -101001100111 ullu 1 -101001100111 candidate-apparent 1 -101001100111 1/14th 1 -101001100111 abdomens 1 -101001100111 uncomfortableness 1 -101001100111 animal-like 1 -101001100111 Farmersville 1 -101001100111 guestbook 1 -101001100111 hoper 1 -101001100111 He-Mans 1 -101001100111 Ahh 1 -101001100111 sketchpads 1 -101001100111 etazh 1 -101001100111 ez 1 -101001100111 pill-taking 1 -101001100111 Rah-rah-rah 1 -101001100111 hotelcasino 1 -101001100111 voice-communications 1 -101001100111 anti-monarchism 1 -101001100111 Shaunavon 1 -101001100111 fluffiness 1 -101001100111 outcrys 1 -101001100111 monopoly-hold 1 -101001100111 etzni 1 -101001100111 liberationisms 1 -101001100111 Maxithins 1 -101001100111 low-ish 1 -101001100111 Lambertazzi 1 -101001100111 appendectomies 1 -101001100111 ooooh 1 -101001100111 crip 1 -101001100111 Dibs 1 -101001100111 expectatons 1 -101001100111 aime 1 -101001100111 hot-buttons 1 -101001100111 greenlined 1 -101001100111 insurability 1 -101001100111 DeadEnders 1 -101001100111 Republican-like 1 -101001100111 bullet-proofing 1 -101001100111 garbs 1 -101001100111 shamrocks 1 -101001100111 Wadoo 1 -101001100111 baby-killer 1 -101001100111 purchases. 1 -101001100111 nametags 1 -101001100111 administrivia 1 -101001100111 7,241 1 -101001100111 Em. 1 -101001100111 Opossum 1 -101001100111 hover-time 1 -101001100111 self-images 1 -101001100111 long-exercised 1 -101001100111 Duh 1 -101001100111 ari 1 -101001100111 paradises 2 -101001100111 mailrooms 2 -101001100111 Krasnaya 2 -101001100111 Aknahten 2 -101001100111 amortizations 2 -101001100111 not-for-profits 2 -101001100111 aw 2 -101001100111 electrolytes 2 -101001100111 pinholes 2 -101001100111 10Ks 2 -101001100111 burbs 2 -101001100111 roo 2 -101001100111 Lays 2 -101001100111 rithmetic 2 -101001100111 infers 2 -101001100111 assesment 2 -101001100111 Golly 2 -101001100111 skaya 2 -101001100111 boomette 2 -101001100111 Quantities 2 -101001100111 Spoonful 2 -101001100111 nt 3 -101001100111 airdrops 3 -101001100111 ecumenism 3 -101001100111 chessboards 3 -101001100111 etymologies 3 -101001100111 Nellies 3 -101001100111 LOSSES 3 -101001100111 Wuzzle 3 -101001100111 floodwaters 4 -101001100111 clients. 4 -101001100111 self-assessment 4 -101001100111 VE 4 -101001100111 Nique 4 -101001100111 Hagura 5 -101001100111 patties 5 -101001100111 aretz 6 -101001100111 reconciliations 6 -101001100111 misuses 6 -101001100111 Canes 8 -101001100111 insecurities 8 -101001100111 rith 9 -101001100111 fictions 10 -101001100111 gourmets 11 -101001100111 disallowances 11 -101001100111 bicarbonate 12 -101001100111 proclamations 14 -101001100111 outlooks 41 -101001100111 guesses 67 -101001100111 denials 74 -101001100111 Donuts 80 -101001100111 T 169 -101001100111 perceptions 194 -101001100111 assertions 215 -101001100111 releases 405 -101001100111 predictions 530 -101001100111 suggestions 553 -101001100111 indications 836 -101001100111 projections 1128 -101001100111 forecasts 1371 -101001100111 fears 2644 -101001100111 expectations 3014 -101001100111 estimates 5234 -101001100111 reports 5956 -101001101000 Brazil/Cuba 1 -101001101000 anti-regulation 1 -101001101000 popularvor 1 -101001101000 industrial-purchasing 1 -101001101000 execulunching 1 -101001101000 uncontestable 1 -101001101000 insurance-portfolio 1 -101001101000 childwelfare 1 -101001101000 computer-technology 1 -101001101000 successfuly 1 -101001101000 water-rights 1 -101001101000 .345 1 -101001101000 chardonnays 1 -101001101000 bedrails 1 -101001101000 polyamide 1 -101001101000 dividend-yield 1 -101001101000 1986-dated 1 -101001101000 coked-up 1 -101001101000 proletarians 1 -101001101000 more-threatening 1 -101001101000 one-merchant 1 -101001101000 rock-studded 1 -101001101000 time-sense 1 -101001101000 adhesiveness 1 -101001101000 CBS/Hungaroton 1 -101001101000 4.3-mile 1 -101001101000 young-Turk 1 -101001101000 dark-suited 1 -101001101000 0.0126-inch 1 -101001101000 invest-for-the-long-haul 1 -101001101000 private-resource 1 -101001101000 business-strategy 1 -101001101000 sharebuying 1 -101001101000 gas-air 1 -101001101000 red-suited 1 -101001101000 LSC-funded 1 -101001101000 efficiency-an 1 -101001101000 air-driven 1 -101001101000 silicone-coated 1 -101001101000 all-expense 1 -101001101000 pharmaceutical-chemicals 1 -101001101000 housing-credit 1 -101001101000 congressional-campaign 1 -101001101000 wide-gauge 1 -101001101000 date-keeping 1 -101001101000 worry-bead 1 -101001101000 114,200 1 -101001101000 Socialist-oriented 1 -101001101000 charcoal-and-white 1 -101001101000 work-impairing 1 -101001101000 consumer-payment 1 -101001101000 Bass-backed 1 -101001101000 work-a-day 1 -101001101000 vapor-catching 1 -101001101000 DM7,000 1 -101001101000 autograph-seeking 1 -101001101000 hokey-pokeying 1 -101001101000 EuroTV 1 -101001101000 .280 1 -101001101000 often-watched 1 -101001101000 107-day 1 -101001101000 sizable-portfolio 1 -101001101000 error-laden 1 -101001101000 intelligence-gatherers 1 -101001101000 bond-related 2 -101001101000 bejabbers 2 -101001101000 early-1950s 2 -101001101000 jarringly 2 -101001101000 N.A.=Not 2 -101001101000 USSCA 2 -101001101000 popsicles 2 -101001101000 hundred-thousands 2 -101001101000 discourtesies 2 -101001101000 overhiring 2 -101001101000 .294 2 -101001101000 railbiking 2 -101001101000 thank-yous 2 -101001101000 split-levels 2 -101001101000 customer- 2 -101001101000 hillock 2 -101001101000 near-surface 2 -101001101000 minority-investment 2 -101001101000 crash-worthiness 2 -101001101000 hardheadedness 2 -101001101000 truck-bomb 2 -101001101000 Habituals 2 -101001101000 duffers 2 -101001101000 Toshibas 2 -101001101000 suggestively 3 -101001101000 prurience 3 -101001101000 scrabbling 3 -101001101000 Bloomies 3 -101001101000 closed-minded 3 -101001101000 armadillos 3 -101001101000 aerialists 3 -101001101000 discoloration 3 -101001101000 tire-kicking 3 -101001101000 mallards 3 -101001101000 jailings 3 -101001101000 moonflower 3 -101001101000 must-see 3 -101001101000 Frisbee 4 -101001101000 sulfates 4 -101001101000 boomerangs 4 -101001101000 outriggers 4 -101001101000 raccoons 4 -101001101000 drug-money 5 -101001101000 outtakes 5 -101001101000 spunk 5 -101001101000 more-prominent 5 -101001101000 55-mile-per-hour 5 -101001101000 amateurism 6 -101001101000 fanny 6 -101001101000 blockages 6 -101001101000 cashews 6 -101001101000 feebly 8 -101001101000 levity 9 -101001101000 thiodiglycol 9 -101001101000 empties 10 -101001101000 shantytowns 10 -101001101000 fizz 11 -101001101000 omega-3 14 -101001101000 oomph 14 -101001101000 money 20848 -101001101000 leftovers 16 -1010011010010 Buy-Outs 1 -1010011010010 prioritizes 1 -1010011010010 countermen 1 -1010011010010 cocaine-industry 1 -1010011010010 trade-boosting 1 -1010011010010 pulp-price 1 -1010011010010 rays/stared 1 -1010011010010 universal-health-care 1 -1010011010010 DEFERRALS 1 -1010011010010 underpasses 1 -1010011010010 fee-waivers 1 -1010011010010 power-substantial 1 -1010011010010 WZ-63 1 -1010011010010 hotel-to-hotel 1 -1010011010010 plastic-composite 1 -1010011010010 continuo 1 -1010011010010 obstinately 1 -1010011010010 cornmeal-price 1 -1010011010010 4,803,454x 1 -1010011010010 child-protective 1 -1010011010010 opening-bell 1 -1010011010010 already-huge 1 -1010011010010 trawl 1 -1010011010010 already-budgeted 1 -1010011010010 computer-processing 1 -1010011010010 rice-program 1 -1010011010010 environmentalist-developer 1 -1010011010010 gains. 2 -1010011010010 bisulfite 2 -1010011010010 metabisulfite 2 -1010011010010 sleazes 2 -1010011010010 megafund 2 -1010011010010 megafunds 2 -1010011010010 non-payroll 2 -1010011010010 jackstrawed 2 -1010011010010 conferee 2 -1010011010010 1120-S 2 -1010011010010 bond-issuance 2 -1010011010010 car-output 3 -1010011010010 jellyfish 3 -1010011010010 naysaying 3 -1010011010010 julep 3 -1010011010010 salinity 3 -1010011010010 shareprice 3 -1010011010010 city. 3 -1010011010010 deficit-spending 4 -1010011010010 spending. 4 -1010011010010 cosseting 4 -1010011010010 breasting 4 -1010011010010 peeve 4 -1010011010010 orimulsion 4 -1010011010010 nursing-care 5 -1010011010010 Libertad 6 -1010011010010 saboteur 7 -1010011010010 forebearance 8 -1010011010010 photosynthesis 8 -1010011010010 interchanges 14 -1010011010010 overreaching 15 -1010011010010 clays 16 -1010011010010 overspending 22 -1010011010010 expenditure 216 -1010011010010 punishment 316 -1010011010010 contracting 487 -1010011010010 outlays 860 -1010011010010 expenditures 986 -1010011010010 spending 9171 -1010011010010 borrowing 1958 -1010011010011 Lee-Enfields 1 -1010011010011 1,103,000 1 -1010011010011 consultancies 1 -1010011010011 KSTS-TV 1 -1010011010011 295.98 1 -1010011010011 Stakeholders 1 -1010011010011 subbing 1 -1010011010011 capacity-cutting 1 -1010011010011 Hoovernomics 1 -1010011010011 Cakaudrove 1 -1010011010011 7-26 1 -1010011010011 sorbate 1 -1010011010011 superspecialization 1 -1010011010011 1515.0 1 -1010011010011 Kwangwondo 1 -1010011010011 near-stagnation 1 -1010011010011 529,952 1 -1010011010011 william 1 -1010011010011 ascots 1 -1010011010011 1,886 1 -1010011010011 1,621 1 -1010011010011 Goldsworthy 1 -1010011010011 half-slumber 1 -1010011010011 tile-maker 1 -1010011010011 98.81 1 -1010011010011 Preetorius 1 -1010011010011 Aeronomy 1 -1010011010011 2,694 1 -1010011010011 profitablility 1 -1010011010011 Somersets 1 -1010011010011 verbalizing 1 -1010011010011 prostatectomies 1 -1010011010011 shogun 1 -1010011010011 propsectuses 1 -1010011010011 vaccine-believed 1 -1010011010011 Actium 1 -1010011010011 ulceration 1 -1010011010011 .196 1 -1010011010011 1,464,000 1 -1010011010011 chompers 1 -1010011010011 67,071 1 -1010011010011 28402 1 -1010011010011 Ethnology 1 -1010011010011 Holies 1 -1010011010011 WTTG 1 -1010011010011 goods-dollar 1 -1010011010011 4-foot-11 1 -1010011010011 .352 1 -1010011010011 154.95 1 -1010011010011 1.8640 1 -1010011010011 607.24 1 -1010011010011 penholder 1 -1010011010011 involuntary-manslaughter 1 -1010011010011 musuems 1 -1010011010011 KABC-TV 1 -1010011010011 pifflings 1 -1010011010011 provision-making 1 -1010011010011 sewn-on 1 -1010011010011 anti-wimpisms 1 -1010011010011 29,432 1 -1010011010011 Denishawn 1 -1010011010011 A.-excitability 1 -1010011010011 6,523,237 1 -1010011010011 Cannongate 1 -1010011010011 superstrength 1 -1010011010011 earths 1 -1010011010011 line-printers 1 -1010011010011 776.42 1 -1010011010011 volatiles 1 -1010011010011 flukes 1 -1010011010011 Milanje 1 -1010011010011 crypto-Nazis 1 -1010011010011 1,463,000 1 -1010011010011 historicism 1 -1010011010011 Sojitra 1 -1010011010011 earniings 1 -1010011010011 near-holiness 1 -1010011010011 WERG-FM 1 -1010011010011 1,592,000 1 -1010011010011 noneconomics 1 -1010011010011 Terray 1 -1010011010011 Besancon 1 -1010011010011 1.9490 1 -1010011010011 Castile 1 -1010011010011 fast-learning 1 -1010011010011 drapings 1 -1010011010011 18,720 1 -1010011010011 Lo-tung 1 -1010011010011 approval-specifically 1 -1010011010011 pectin 1 -1010011010011 columbine 1 -1010011010011 Hellenism 1 -1010011010011 mudder 1 -1010011010011 2,562,500 1 -1010011010011 cavatinas 1 -1010011010011 tilth 1 -1010011010011 Newcastle-Upon-Tyne 1 -1010011010011 small-holding 1 -1010011010011 unveilings 1 -1010011010011 pseudo-journalists 1 -1010011010011 2387.2 1 -1010011010011 .306 1 -1010011010011 cormorants 1 -1010011010011 jane 1 -1010011010011 KTMD-TV 1 -1010011010011 Tembu 1 -1010011010011 1,452,000 1 -1010011010011 instabiity 1 -1010011010011 Chapultepec 1 -1010011010011 jokesters 1 -1010011010011 bags/individually 1 -1010011010011 Santarem 1 -1010011010011 ticket-balancing 1 -1010011010011 Uniformity 1 -1010011010011 31,548 1 -1010011010011 export-applications 1 -1010011010011 Canting 1 -1010011010011 three-to-five-year-olds 1 -1010011010011 over-investment 1 -1010011010011 678,399 1 -1010011010011 Ica 1 -1010011010011 earth-tone 1 -1010011010011 286,282 1 -1010011010011 williams 1 -1010011010011 2:12.90 1 -1010011010011 Blanchards 1 -1010011010011 comedy-adventure 1 -1010011010011 Sarp 1 -1010011010011 24,209 1 -1010011010011 Rummidge 1 -1010011010011 Deshima 1 -1010011010011 KWQC-TV 1 -1010011010011 consignees 1 -1010011010011 68,700 1 -1010011010011 65,309 1 -1010011010011 Musetta 2 -1010011010011 guys. 2 -1010011010011 Peleliu 2 -1010011010011 entrapments 2 -1010011010011 Tom-Pato 2 -1010011010011 dividers 2 -1010011010011 tumbler 2 -1010011010011 miseducation 2 -1010011010011 businessses 2 -1010011010011 glistened 2 -1010011010011 esters 2 -1010011010011 merrymakers 2 -1010011010011 plexus 2 -1010011010011 car-maker 2 -1010011010011 goods. 2 -1010011010011 liberators 2 -1010011010011 condensers 2 -1010011010011 information- 2 -1010011010011 toupees 2 -1010011010011 asterisks 2 -1010011010011 DC-10-30s 2 -1010011010011 porosity 2 -1010011010011 balancers 2 -1010011010011 litterers 2 -1010011010011 alders 2 -1010011010011 flackery 2 -1010011010011 mulches 2 -1010011010011 Taejon 2 -1010011010011 Blindness 2 -1010011010011 10-pence 2 -1010011010011 llama 2 -1010011010011 Hematology 2 -1010011010011 carbs 2 -1010011010011 tractor-trailers 2 -1010011010011 heatstroke 2 -1010011010011 Chris-Crafts 2 -1010011010011 pain-relievers 2 -1010011010011 doo-dads 2 -1010011010011 aquamarine 3 -1010011010011 natured 3 -1010011010011 statelessness 3 -1010011010011 family- 3 -1010011010011 gimcrackery 3 -1010011010011 siderography 3 -1010011010011 WNAC-TV 3 -1010011010011 privateers 3 -1010011010011 tooths 3 -1010011010011 WNEW-AM 3 -1010011010011 1968-69 3 -1010011010011 hothouses 4 -1010011010011 vermouth 4 -1010011010011 teacher-graduates 4 -1010011010011 aerosols 4 -1010011010011 gendarmes 4 -1010011010011 storks 4 -1010011010011 KGMC-TV 5 -1010011010011 mini-mills 5 -1010011010011 rennin 5 -1010011010011 Earls 5 -1010011010011 komboloi 5 -1010011010011 pachyderms 5 -1010011010011 holes-in-one 5 -1010011010011 pollack 5 -1010011010011 distilleries 5 -1010011010011 mega-carriers 6 -1010011010011 jackhammers 6 -1010011010011 basil 6 -1010011010011 microspheres 6 -1010011010011 dawdling 6 -1010011010011 crusts 6 -1010011010011 karma 6 -1010011010011 mutagens 7 -1010011010011 nationhood 7 -1010011010011 non-durables 7 -1010011010011 Picassos 7 -1010011010011 superlatives 7 -1010011010011 typefaces 8 -1010011010011 lighthouses 8 -1010011010011 surfactant 8 -1010011010011 turnips 8 -1010011010011 vote-buying 9 -1010011010011 footholds 10 -1010011010011 disinterest 11 -1010011010011 yearlings 11 -1010011010011 punctuation 12 -1010011010011 troughs 16 -1010011010011 campgrounds 16 -1010011010011 almonds 17 -1010011010011 lipoprotein 18 -1010011010011 nondurables 21 -1010011010011 timberlands 34 -1010011010011 dough 52 -1010011010011 workdays 56 -1010011010011 durables 63 -1010011010011 luck 475 -1010011010011 faith 840 -1010011010011 hostages 901 -1010011010011 seats 2397 -1010011010011 goods 5391 -1010011010011 confidence 2493 -1010011010100 punchless 1 -1010011010100 retailiation 1 -1010011010100 Atlas-Centaurs 1 -1010011010100 birthweights 1 -1010011010100 14,825 1 -1010011010100 73,338 1 -1010011010100 more-equal 1 -1010011010100 quality-awareness 1 -1010011010100 unappealingly 1 -1010011010100 cost-competition 1 -1010011010100 glasses-wearers 1 -1010011010100 undertow 1 -1010011010100 counterpressure 1 -1010011010100 hang-outs 1 -1010011010100 nonconfrontation 1 -1010011010100 proccedings 1 -1010011010100 incivility 1 -1010011010100 frittatas 1 -1010011010100 213,453 1 -1010011010100 Efrat 1 -1010011010100 price-competitiveness 1 -1010011010100 adjacencies 1 -1010011010100 Chux 1 -1010011010100 microcapitalists 1 -1010011010100 nitty-gritties 1 -1010011010100 discrimating 1 -1010011010100 tissue-change 1 -1010011010100 lethality 1 -1010011010100 clot-dissolvers 2 -1010011010100 bibliographies 2 -1010011010100 ll 2 -1010011010100 Rodents 2 -1010011010100 overborrowing 2 -1010011010100 abbreviations 2 -1010011010100 promotion. 2 -1010011010100 fingerpointing 2 -1010011010100 self-flagellation 2 -1010011010100 repaving 2 -1010011010100 wiseacres 2 -1010011010100 uncollectibles 2 -1010011010100 I-75 2 -1010011010100 yam 2 -1010011010100 Silverhawks 2 -1010011010100 retrials 3 -1010011010100 386/20 3 -1010011010100 commendation 3 -1010011010100 burr 3 -1010011010100 BioAdvance 3 -1010011010100 moderns 4 -1010011010100 riverbanks 4 -1010011010100 competiton 4 -1010011010100 salivation 4 -1010011010100 trysts 4 -1010011010100 dodger 4 -1010011010100 floodlights 5 -1010011010100 fixings 5 -1010011010100 eggnog 5 -1010011010100 retaliations 5 -1010011010100 737-500s 6 -1010011010100 pumpkins 6 -1010011010100 fare-cutting 6 -1010011010100 rumination 6 -1010011010100 tussles 7 -1010011010100 lint 7 -1010011010100 manna 7 -1010011010100 sediment 7 -1010011010100 matchups 8 -1010011010100 megabucks 8 -1010011010100 desertions 8 -1010011010100 counterattacks 11 -1010011010100 misbehavior 12 -1010011010100 chronologically 13 -1010011010100 subgroups 21 -1010011010100 cross-trading 25 -1010011010100 specialization 27 -1010011010100 unionism 33 -1010011010100 abstinence 36 -1010011010100 retribution 40 -1010011010100 leniency 42 -1010011010100 vigilance 48 -1010011010100 noncompliance 56 -1010011010100 reprisals 59 -1010011010100 residuals 62 -1010011010100 experimentation 78 -1010011010100 collusion 93 -1010011010100 injunctions 95 -1010011010100 meddling 98 -1010011010100 havoc 115 -1010011010100 revenge 161 -1010011010100 fallout 230 -1010011010100 anonymity 244 -1010011010100 interference 331 -1010011010100 coordination 402 -1010011010100 restraint 493 -1010011010100 retaliation 508 -1010011010100 discrimination 921 -1010011010100 cooperation 1483 -1010011010100 sanctions 1516 -1010011010100 proceedings 1883 -1010011010100 damages 2621 -1010011010100 protection 3874 -1010011010100 competition 5358 -1010011010101 one-refund-a-household 1 -1010011010101 Minimums 1 -1010011010101 Debbee 1 -1010011010101 144,734 1 -1010011010101 652,094 1 -1010011010101 clot. 1 -1010011010101 corncobs 1 -1010011010101 soberness 1 -1010011010101 premium-to-book-value 1 -1010011010101 1505 1 -1010011010101 non-cancerous 1 -1010011010101 Hasa 1 -1010011010101 letted 1 -1010011010101 syrinage 1 -1010011010101 HOL.A 1 -1010011010101 doctrine-provision 1 -1010011010101 tremens 1 -1010011010101 splatter-marks 1 -1010011010101 Newspeak 1 -1010011010101 seatmate 1 -1010011010101 backroads 1 -1010011010101 Raped 1 -1010011010101 questions-but 1 -1010011010101 2158.60 1 -1010011010101 383.81 1 -1010011010101 25. 1 -1010011010101 2,158.61 1 -1010011010101 corpuscles 1 -1010011010101 lightener 1 -1010011010101 -200 1 -1010011010101 damage-reactions 1 -1010011010101 emhasis 1 -1010011010101 Miscues 1 -1010011010101 carcinoid 1 -1010011010101 nodules 1 -1010011010101 jiujitsu 1 -1010011010101 return-based 1 -1010011010101 boatyards 1 -1010011010101 160.85 1 -1010011010101 T-lymphotropic 1 -1010011010101 glug 1 -1010011010101 availabe 1 -1010011010101 pedantocracy 1 -1010011010101 363,300 1 -1010011010101 syringae 1 -1010011010101 photo-essay 1 -1010011010101 40-54 1 -1010011010101 cryobanking 1 -1010011010101 Hutchi 1 -1010011010101 Portent 1 -1010011010101 brevities 1 -1010011010101 atack 1 -1010011010101 Lags 1 -1010011010101 62-64 1 -1010011010101 post-Sandinista 1 -1010011010101 foodstores 1 -1010011010101 alga 1 -1010011010101 counteroffensives 1 -1010011010101 rule-makings 1 -1010011010101 height-weight 1 -1010011010101 Antalya 1 -1010011010101 transaxles 1 -1010011010101 fatback 1 -1010011010101 status-quoism 1 -1010011010101 mucciloid 1 -1010011010101 cheerlessness 1 -1010011010101 miniplazas 1 -1010011010101 dmage 1 -1010011010101 Menshikov 1 -1010011010101 disk-brake 1 -1010011010101 tomatomongers 1 -1010011010101 Paranagua 1 -1010011010101 Sevastopol 1 -1010011010101 presure 1 -1010011010101 falsies 1 -1010011010101 25746.56 1 -1010011010101 71,800 1 -1010011010101 2248.73 1 -1010011010101 686.65 1 -1010011010101 asphyxia 1 -1010011010101 maintenance-agreement 1 -1010011010101 I-35 1 -1010011010101 B2200 1 -1010011010101 15-21 1 -1010011010101 protectants 1 -1010011010101 fundability 1 -1010011010101 9-16 1 -1010011010101 BLIP 1 -1010011010101 9.975 1 -1010011010101 forms-processing 1 -1010011010101 Phase-2 1 -1010011010101 adverts 1 -1010011010101 disputations 1 -1010011010101 65-75 1 -1010011010101 50,759 1 -1010011010101 .337 1 -1010011010101 Ilyushins 1 -1010011010101 VisiTel 2 -1010011010101 actor-centered 2 -1010011010101 waypoint 2 -1010011010101 pushcarts 2 -1010011010101 equivocating 2 -1010011010101 stoops 2 -1010011010101 vamp 2 -1010011010101 potheads 2 -1010011010101 25-34 2 -1010011010101 tranfusions 2 -1010011010101 sundaes 2 -1010011010101 down-payments 2 -1010011010101 cross-default 2 -1010011010101 pusillanimity 2 -1010011010101 over-reliance 2 -1010011010101 peekers 2 -1010011010101 ally-bashing 2 -1010011010101 millennialists 2 -1010011010101 scepticism 2 -1010011010101 stalemates 3 -1010011010101 rehabs 3 -1010011010101 croaking 3 -1010011010101 interrelationships 3 -1010011010101 sedimentation 3 -1010011010101 2,690 3 -1010011010101 yakking 3 -1010011010101 mopeds 3 -1010011010101 Ashram 3 -1010011010101 occlusion 3 -1010011010101 ultrasonography 3 -1010011010101 18-34 3 -1010011010101 Parliamentarians 3 -1010011010101 grafitti 4 -1010011010101 diffraction 4 -1010011010101 Symposium 4 -1010011010101 cadenza 4 -1010011010101 attack. 4 -1010011010101 overemphasis 4 -1010011010101 hesitance 5 -1010011010101 subconference 5 -1010011010101 weevil 6 -1010011010101 pangs 6 -1010011010101 stopwatches 6 -1010011010101 referenda 7 -1010011010101 overdependence 7 -1010011010101 tarps 7 -1010011010101 motility 7 -1010011010101 platelets 8 -1010011010101 mark-up 8 -1010011010101 overreliance 8 -1010011010101 encroachments 10 -1010011010101 traction 11 -1010011010101 flip-flops 11 -1010011010101 blinders 11 -1010011010101 fighter-bombers 12 -1010011010101 axle 15 -1010011010101 grafts 17 -1010011010101 endings 20 -1010011010101 advisement 21 -1010011010101 icing 23 -1010011010101 duress 30 -1010011010101 deviation 35 -1010011010101 coaster 56 -1010011010101 marrow 66 -1010011010101 tabs 70 -1010011010101 constraint 72 -1010011010101 transfusions 91 -1010011010101 assaults 126 -1010011010101 clots 126 -1010011010101 reliance 298 -1010011010101 dependence 378 -1010011010101 assault 522 -1010011010101 emphasis 1028 -1010011010101 attacks 1501 -1010011010101 damage 2285 -1010011010101 pressure 6549 -1010011010101 attack 2736 -10100110101100 crackpots 1 -10100110101100 household-forming 1 -10100110101100 ratifications 1 -10100110101100 under-consumption 1 -10100110101100 earthquake-recovery 1 -10100110101100 myosin 1 -10100110101100 inhabitation 1 -10100110101100 budget-constraint 1 -10100110101100 rule-maker 1 -10100110101100 whale-watching 1 -10100110101100 Namah 1 -10100110101100 deficit-cut 1 -10100110101100 electrocutions 1 -10100110101100 econo-box 1 -10100110101100 have-beens 1 -10100110101100 mapwork 1 -10100110101100 logician 1 -10100110101100 thrombosis 1 -10100110101100 self-collection 1 -10100110101100 RICO-related 1 -10100110101100 immuno-deficiency 1 -10100110101100 stockownership 1 -10100110101100 colitis 1 -10100110101100 chorionic 1 -10100110101100 power-tools 1 -10100110101100 bleatings 1 -10100110101100 scofflaw 1 -10100110101100 districting 1 -10100110101100 conjugator 1 -10100110101100 CD4-pseudomonas 1 -10100110101100 bents 1 -10100110101100 threateners 1 -10100110101100 July/August 1 -10100110101100 place-names 1 -10100110101100 cuckolding 1 -10100110101100 deviancy 1 -10100110101100 apercu 1 -10100110101100 specialist-printer 1 -10100110101100 chemical-proof 1 -10100110101100 firm-of-the-year 1 -10100110101100 commonplaces 1 -10100110101100 benefaction 1 -10100110101100 profit-spreads 1 -10100110101100 dough-maker 1 -10100110101100 namer 1 -10100110101100 ex-officers 1 -10100110101100 declines. 1 -10100110101100 vita 1 -10100110101100 performance-anxiety 1 -10100110101100 bux 1 -10100110101100 covering-your-rear-end 1 -10100110101100 formas 1 -10100110101100 aggregate-demand 1 -10100110101100 theodicy 1 -10100110101100 biologism 1 -10100110101100 yen-linked 1 -10100110101100 illness-care 1 -10100110101100 capital-building 1 -10100110101100 bill-of-rights 1 -10100110101100 order-filling 1 -10100110101100 racketface 1 -10100110101100 ablution 1 -10100110101100 tastemakers 1 -10100110101100 candlesticks 1 -10100110101100 interlopes 1 -10100110101100 decompensation 1 -10100110101100 Safirite 1 -10100110101100 baseness 1 -10100110101100 quick-switch 1 -10100110101100 probations 1 -10100110101100 waverings 1 -10100110101100 Marathi-speakers 1 -10100110101100 couture. 1 -10100110101100 rheostat 1 -10100110101100 sharpshooting 1 -10100110101100 boarding-houses 1 -10100110101100 line-drawing 1 -10100110101100 bond-and-stock 1 -10100110101100 100-dollar 1 -10100110101100 10-series 1 -10100110101100 dreck 1 -10100110101100 debilities 1 -10100110101100 market-crisis 1 -10100110101100 constitutents 1 -10100110101100 regionality 1 -10100110101100 11-class 1 -10100110101100 foreign-financing 1 -10100110101100 writer/producers 1 -10100110101100 training. 1 -10100110101100 scramblings 1 -10100110101100 adenoviruses 1 -10100110101100 far-rightists 1 -10100110101100 literalism 1 -10100110101100 spectrums 1 -10100110101100 freeshare 1 -10100110101100 workups 1 -10100110101100 support. 1 -10100110101100 ten-strike 1 -10100110101100 TEMPERS 1 -10100110101100 endarterectomy 1 -10100110101100 nicety 1 -10100110101100 stylebooks 1 -10100110101100 freelancing 1 -10100110101100 incinerator-ash 1 -10100110101100 dominations 1 -10100110101100 immunolodeficiency 1 -10100110101100 Naga 1 -10100110101100 maneuverer 1 -10100110101100 CL215s 1 -10100110101100 facilitation 1 -10100110101100 crew-pairing 1 -10100110101100 non-matured 1 -10100110101100 dedications 1 -10100110101100 Xanadu 1 -10100110101100 jag 1 -10100110101100 quo-warrants 1 -10100110101100 361-45 1 -10100110101100 drug-business 1 -10100110101100 recollectivization 1 -10100110101100 often-maligned 1 -10100110101100 Zeki 1 -10100110101100 hero-celebrity 1 -10100110101100 ivory-trade 1 -10100110101100 Trofimov 2 -10100110101100 BELEAGUERED 2 -10100110101100 Yadin 2 -10100110101100 stock-issuing 2 -10100110101100 free-scrip 2 -10100110101100 icecaps 2 -10100110101100 windbag 2 -10100110101100 obbligato 2 -10100110101100 fee. 2 -10100110101100 sovereignties 2 -10100110101100 falconer 2 -10100110101100 quos 3 -10100110101100 roll-back 3 -10100110101100 Nover 3 -10100110101100 darters 3 -10100110101100 base. 3 -10100110101100 HH 4 -10100110101100 chits 4 -10100110101100 rampages 4 -10100110101100 syncytial 5 -10100110101100 Pamyat 6 -10100110101100 Epidemic 6 -10100110101100 objector 6 -10100110101100 tic 6 -10100110101100 mains 7 -10100110101100 embolism 7 -10100110101100 slur 13 -10100110101100 bono 14 -10100110101100 suasion 14 -10100110101100 deferment 17 -10100110101100 acceptability 19 -10100110101100 couture 23 -10100110101100 immunodeficiency 25 -10100110101100 disobedience 38 -10100110101100 rata 73 -10100110101100 beings 128 -10100110101100 forma 136 -10100110101100 liberties 182 -10100110101100 corrections 243 -10100110101100 rights 7407 -10100110101100 obligation 835 -10100110101101 Gedda 1 -10100110101101 Edwardian-type 1 -10100110101101 spaced-based 1 -10100110101101 sables 1 -10100110101101 season-ending 1 -10100110101101 mile-plus-high 1 -10100110101101 quadrenniel 1 -10100110101101 PHILSECO 1 -10100110101101 stroker 1 -10100110101101 anemometers 1 -10100110101101 steam-supply 1 -10100110101101 beefing-up 1 -10100110101101 caesium 1 -10100110101101 byphenyls 1 -10100110101101 loan-assets 1 -10100110101101 taximeter 1 -10100110101101 Nilopolis 1 -10100110101101 inhalers 1 -10100110101101 established-brand 1 -10100110101101 clock-based 1 -10100110101101 flight. 1 -10100110101101 winterizers 1 -10100110101101 missiles. 1 -10100110101101 decongestants 1 -10100110101101 high-overhead 1 -10100110101101 Miho 1 -10100110101101 fruit-tree 1 -10100110101101 windshield-repair 1 -10100110101101 chemotherapies 1 -10100110101101 infinities 1 -10100110101101 100-room 1 -10100110101101 arms-underlines 1 -10100110101101 liberal-internationalist 1 -10100110101101 Rockwell-built 1 -10100110101101 freezeniks 1 -10100110101101 mud-embedded 1 -10100110101101 sign-now-pay-later 1 -10100110101101 racecourse 1 -10100110101101 Ilyushin-96 1 -10100110101101 Tupolev-204 1 -10100110101101 nematicide 1 -10100110101101 infarcts 1 -10100110101101 food-drying 1 -10100110101101 velocities 1 -10100110101101 Salang 1 -10100110101101 office-phone 1 -10100110101101 infarct 1 -10100110101101 weapons-destruction 1 -10100110101101 T-form 1 -10100110101101 Tatliyev 1 -10100110101101 Standyne 1 -10100110101101 neurochemicals 1 -10100110101101 juice-storage 1 -10100110101101 maidenhood 1 -10100110101101 vagabondage 1 -10100110101101 2,000-people 1 -10100110101101 plastics-compounding 1 -10100110101101 vitrification 1 -10100110101101 film. 1 -10100110101101 beanbags 1 -10100110101101 point-of-view 2 -10100110101101 Chryslers 2 -10100110101101 ophthalmoscopes 2 -10100110101101 Y-12 2 -10100110101101 windsurfing 2 -10100110101101 courant 2 -10100110101101 pentoxide 2 -10100110101101 suppository 2 -10100110101101 ELISA 2 -10100110101101 11-to-1 2 -10100110101101 strongbox 2 -10100110101101 reverse-osmosis 2 -10100110101101 KOVR-TV 2 -10100110101101 americium-241 2 -10100110101101 Tsugaru 2 -10100110101101 reagent 2 -10100110101101 barbiturates 2 -10100110101101 Suwon 2 -10100110101101 chin-up 2 -10100110101101 inhalants 2 -10100110101101 399-17 2 -10100110101101 Franjieh 2 -10100110101101 ALCMs 2 -10100110101101 cryptography 3 -10100110101101 thermal-processing 3 -10100110101101 panoramas 3 -10100110101101 Pancake 3 -10100110101101 airpower 3 -10100110101101 self-hatred 3 -10100110101101 marshland 3 -10100110101101 missile-launch 3 -10100110101101 Kunduz 3 -10100110101101 Kingdome 3 -10100110101101 tracers 3 -10100110101101 radiometer 3 -10100110101101 cigarette-making 3 -10100110101101 fission 4 -10100110101101 excavations 4 -10100110101101 singularity 4 -10100110101101 waste-storage 4 -10100110101101 iodine-131 4 -10100110101101 gasification 5 -10100110101101 nuclei 5 -10100110101101 Morenci 5 -10100110101101 porthole 5 -10100110101101 prosthetics 5 -10100110101101 surfactants 6 -10100110101101 timepiece 6 -10100110101101 religiosity 6 -10100110101101 aperture 7 -10100110101101 vera 8 -10100110101101 infarction 9 -10100110101101 teleconference 9 -10100110101101 latticework 9 -10100110101101 nukes 9 -10100110101101 isotopes 10 -10100110101101 iodine 10 -10100110101101 armament 13 -10100110101101 dominion 14 -10100110101101 sprees 17 -10100110101101 electrode 17 -10100110101101 talc 18 -10100110101101 triad 20 -10100110101101 holocaust 23 -10100110101101 annihilation 23 -10100110101101 biphenyls 27 -10100110101101 warhead 44 -10100110101101 armaments 44 -10100110101101 smears 45 -10100110101101 countermeasures 49 -10100110101101 weaponry 96 -10100110101101 arsenals 112 -10100110101101 deterrence 134 -10100110101101 disarmament 161 -10100110101101 arsenal 178 -10100110101101 superiority 181 -10100110101101 fabric 226 -10100110101101 deterrent 235 -10100110101101 custody 275 -10100110101101 warheads 279 -10100110101101 spree 299 -10100110101101 warfare 363 -10100110101101 wisdom 590 -10100110101101 power 10241 -10100110101101 weapons 3146 -10100110101110 responsiblities 1 -10100110101110 churners 1 -10100110101110 responsibilty 1 -10100110101110 chromatography 1 -10100110101110 hunting-ground 1 -10100110101110 quasi-monopoly 2 -10100110101110 lie. 2 -10100110101110 permutation 2 -10100110101110 expandability 3 -10100110101110 funding. 3 -10100110101110 quirkiness 3 -10100110101110 thereto 3 -10100110101110 lithotripsy 3 -10100110101110 scheduler 3 -10100110101110 wattage 3 -10100110101110 Alpha/three 3 -10100110101110 kazoos 4 -10100110101110 humaneness 4 -10100110101110 recapping 4 -10100110101110 innovativeness 4 -10100110101110 chromatographs 4 -10100110101110 encumbrances 4 -10100110101110 inbreeding 4 -10100110101110 embellishments 4 -10100110101110 derricks 5 -10100110101110 falsifications 5 -10100110101110 easements 6 -10100110101110 decomposition 6 -10100110101110 kickers 6 -10100110101110 polloi 7 -10100110101110 wholesomeness 7 -10100110101110 beneficence 7 -10100110101110 bombardments 7 -10100110101110 hajj 7 -10100110101110 carry-overs 7 -10100110101110 arcana 8 -10100110101110 viscosity 8 -10100110101110 toleration 9 -10100110101110 profitablity 9 -10100110101110 condensates 11 -10100110101110 unreality 12 -10100110101110 exertion 12 -10100110101110 comity 13 -10100110101110 servitude 14 -10100110101110 transferability 15 -10100110101110 demagogy 17 -10100110101110 inhibitions 17 -10100110101110 reproach 18 -10100110101110 seasoning 19 -10100110101110 procrastination 20 -10100110101110 mouthpiece 26 -10100110101110 dispensers 27 -10100110101110 coherence 31 -10100110101110 alignment 33 -10100110101110 irresponsibility 40 -10100110101110 cohesion 47 -10100110101110 self-sufficiency 48 -10100110101110 wetlands 54 -10100110101110 progression 63 -10100110101110 firepower 67 -10100110101110 embryos 73 -10100110101110 riches 87 -10100110101110 dependency 131 -10100110101110 know-how 131 -10100110101110 shocks 135 -10100110101110 manpower 137 -10100110101110 censorship 144 -10100110101110 tolerance 160 -10100110101110 congestion 172 -10100110101110 accountability 199 -10100110101110 pills 250 -10100110101110 belt 258 -10100110101110 openness 262 -10100110101110 autonomy 300 -10100110101110 muscle 363 -10100110101110 clout 469 -10100110101110 discipline 549 -10100110101110 capability 592 -10100110101110 expertise 738 -10100110101110 leverage 756 -10100110101110 efficiency 901 -10100110101110 duty 953 -10100110101110 flexibility 1015 -10100110101110 liquidity 1257 -10100110101110 schedule 1379 -10100110101110 powers 1527 -10100110101110 freedom 1587 -10100110101110 coverage 1983 -10100110101110 resources 2740 -10100110101110 reserves 4695 -10100110101110 capacity 3873 -10100110101111 nine- 1 -10100110101111 asup 1 -10100110101111 Dukakis-backing 1 -10100110101111 Parker-with-strings 1 -10100110101111 Germans-Werner 1 -10100110101111 nelson 1 -10100110101111 taxi-group 1 -10100110101111 hand-wired 1 -10100110101111 not-at-all-disinterested 1 -10100110101111 multi-county 1 -10100110101111 brick-and-wood 1 -10100110101111 memebership 1 -10100110101111 nomad 2 -10100110101111 Khalq 2 -10100110101111 chargeability 2 -10100110101111 impertinence 2 -10100110101111 housing-subcommittee 2 -10100110101111 switchbacks 2 -10100110101111 Gurkhas 2 -10100110101111 fretwork 2 -10100110101111 composers-in-residence 2 -10100110101111 gerbil 2 -10100110101111 seventeenfold 2 -10100110101111 expediencies 2 -10100110101111 terrors 2 -10100110101111 entreaty 2 -10100110101111 power. 2 -10100110101111 hard-disks 2 -10100110101111 cookout 3 -10100110101111 savanna 3 -10100110101111 refiling 3 -10100110101111 vote-rigging 3 -10100110101111 Strikeback 3 -10100110101111 scribblings 3 -10100110101111 inhumanity 3 -10100110101111 impetuosity 3 -10100110101111 serpents 4 -10100110101111 angriest 4 -10100110101111 globes 4 -10100110101111 fratricide 4 -10100110101111 faithfulness 5 -10100110101111 farmhands 5 -10100110101111 virulence 5 -10100110101111 2722 5 -10100110101111 obeisances 5 -10100110101111 inheritances 5 -10100110101111 bogies 5 -10100110101111 undergrowth 5 -10100110101111 intervenor 5 -10100110101111 forbearances 5 -10100110101111 microeconomics 6 -10100110101111 Oppressed 7 -10100110101111 brickbats 7 -10100110101111 digressions 8 -10100110101111 inhibition 8 -10100110101111 acetylcholine 8 -10100110101111 stoicism 8 -10100110101111 scrimping 8 -10100110101111 resistence 9 -10100110101111 admittance 10 -10100110101111 gumption 12 -10100110101111 sustenance 13 -10100110101111 greetings 15 -10100110101111 coals 17 -10100110101111 pizazz 22 -10100110101111 airtime 25 -10100110101111 antipathy 37 -10100110101111 flak 50 -10100110101111 homage 60 -10100110101111 solace 62 -10100110101111 luster 88 -10100110101111 credence 91 -10100110101111 submission 104 -10100110101111 latitude 109 -10100110101111 guts 110 -10100110101111 fanfare 111 -10100110101111 prey 121 -10100110101111 allegiance 129 -10100110101111 asylum 131 -10100110101111 leeway 143 -10100110101111 applause 148 -10100110101111 inspiration 158 -10100110101111 hostility 219 -10100110101111 urgency 267 -10100110101111 courage 328 -10100110101111 comfort 370 -10100110101111 discretion 424 -10100110101111 immunity 564 -10100110101111 loyalty 572 -10100110101111 representation 582 -10100110101111 resistance 1430 -10100110101111 intent 1666 -10100110101111 membership 1855 -10100110101111 authority 2863 -10100110101111 opposition 4458 -10100110101111 attention 3693 -1010011011000 Contempt 1 -1010011011000 S-281 1 -1010011011000 Lectionary 1 -1010011011000 outook 1 -1010011011000 nonsmelly 1 -1010011011000 slow-going 1 -1010011011000 900-level 1 -1010011011000 death-knell 1 -1010011011000 oppurtunities 1 -1010011011000 .98 1 -1010011011000 commisssion 1 -1010011011000 wormers 1 -1010011011000 security-checking 1 -1010011011000 two-putted 1 -1010011011000 PEST 1 -1010011011000 730s 1 -1010011011000 ball-carrier 1 -1010011011000 sorrowed 1 -1010011011000 requestion 1 -1010011011000 outdoorsy 1 -1010011011000 PDL 1 -1010011011000 terrority 1 -1010011011000 responsibity 1 -1010011011000 Needlecraft 1 -1010011011000 member-companies 1 -1010011011000 Max-Planck-Institute 1 -1010011011000 crack-ups 1 -1010011011000 103.24 1 -1010011011000 100.58 1 -1010011011000 ROIs 1 -1010011011000 waivered 1 -1010011011000 Sendingkerk 1 -1010011011000 heart-effective 1 -1010011011000 Inpulse 1 -1010011011000 eyeteeth 1 -1010011011000 misgovernment 1 -1010011011000 112.08 1 -1010011011000 untried-market 1 -1010011011000 1620s 1 -1010011011000 propsects 1 -1010011011000 field-calling 1 -1010011011000 LPPs 1 -1010011011000 109.95 1 -1010011011000 civvies 1 -1010011011000 hygrometers 1 -1010011011000 silkier 1 -1010011011000 318,461 1 -1010011011000 foible 1 -1010011011000 switchgear 1 -1010011011000 chemistries 1 -1010011011000 emmissary 1 -1010011011000 redefinitions 1 -1010011011000 kibbles-and-bits 1 -1010011011000 armature 1 -1010011011000 severally 1 -1010011011000 backseam 1 -1010011011000 russet 1 -1010011011000 tramways 1 -1010011011000 forcecast 1 -1010011011000 savings. 1 -1010011011000 564,219 1 -1010011011000 3,774 1 -1010011011000 hots 1 -1010011011000 spinnakers 1 -1010011011000 .322 1 -1010011011000 ad-campaigns 1 -1010011011000 faa 1 -1010011011000 FDR-Americans 1 -1010011011000 LAPD 1 -1010011011000 undistinguishable 1 -1010011011000 roominess 1 -1010011011000 tablogs 1 -1010011011000 sharpeis 1 -1010011011000 ostinatos 1 -1010011011000 purgation 1 -1010011011000 165,970 1 -1010011011000 snugness 1 -1010011011000 Kreuznach 1 -1010011011000 3,063 1 -1010011011000 undersecretary-general 1 -1010011011000 up-starts 1 -1010011011000 xylophones 1 -1010011011000 self-criticisms 1 -1010011011000 doctrinemaker 1 -1010011011000 obstreperousness 1 -1010011011000 co-responsibility 1 -1010011011000 overcaps 1 -1010011011000 shifters 1 -1010011011000 72,200 1 -1010011011000 TRIAP 1 -1010011011000 guesthouses 2 -1010011011000 codeword 2 -1010011011000 apologetics 2 -1010011011000 wellheads 2 -1010011011000 sinecures 2 -1010011011000 Foxborough 2 -1010011011000 Kecks 2 -1010011011000 vouching 2 -1010011011000 S-curve 2 -1010011011000 aerobatics 2 -1010011011000 27000-level 2 -1010011011000 Advantage/2 2 -1010011011000 drumbeating 2 -1010011011000 Injustice 2 -1010011011000 hop-scotch 2 -1010011011000 tee-shot 2 -1010011011000 swearwords 3 -1010011011000 frisking 3 -1010011011000 bisexuality 3 -1010011011000 Hellas 3 -1010011011000 bonanzas 3 -1010011011000 750iL 3 -1010011011000 hay-mowing 3 -1010011011000 Xeroxes 3 -1010011011000 hankie 3 -1010011011000 pipettes 3 -1010011011000 quests 3 -1010011011000 pricetags 3 -1010011011000 oppositions 3 -1010011011000 FIGHT 3 -1010011011000 WORM 4 -1010011011000 lovage 4 -1010011011000 cure-alls 4 -1010011011000 amplitude 4 -1010011011000 prognosticators 4 -1010011011000 receiver-manager 5 -1010011011000 magnesia 5 -1010011011000 reponsibility 5 -1010011011000 sunroofs 5 -1010011011000 ostentation 6 -1010011011000 nourishment 6 -1010011011000 rationales 6 -1010011011000 spot-checking 6 -1010011011000 bunting 6 -1010011011000 responsiblity 7 -1010011011000 omens 7 -1010011011000 backdrops 8 -1010011011000 sanctuaries 8 -1010011011000 solicitude 9 -1010011011000 template 9 -1010011011000 methazine 9 -1010011011000 provisioning 9 -1010011011000 predilection 11 -1010011011000 foils 11 -1010011011000 tryouts 12 -1010011011000 stand-in 18 -1010011011000 timetables 27 -1010011011000 empathy 27 -1010011011000 disrespect 27 -1010011011000 perchlorate 28 -1010011011000 reverence 28 -1010011011000 lookout 32 -1010011011000 dealer-manager 35 -1010011011000 craving 37 -1010011011000 tonic 37 -1010011011000 zest 38 -1010011011000 fondness 39 -1010011011000 ardor 40 -1010011011000 thirst 40 -1010011011000 longing 51 -1010011011000 appetites 56 -1010011011000 distaste 62 -1010011011000 lust 62 -1010011011000 clamor 78 -1010011011000 flair 84 -1010011011000 admiration 117 -1010011011000 affection 121 -1010011011000 groundwork 139 -1010011011000 penchant 142 -1010011011000 rationale 169 -1010011011000 motivation 213 -1010011011000 justification 221 -1010011011000 passion 312 -1010011011000 appetite 381 -1010011011000 enthusiasm 708 -1010011011000 prospects 2173 -1010011011000 outlook 2185 -1010011011000 responsibility 2203 -1010011011000 demand 9037 -1010011011001 Trempolino 1 -1010011011001 6-footer 1 -1010011011001 ubermensch 1 -1010011011001 acitivity 1 -1010011011001 oil-tax 1 -1010011011001 17-to-1 1 -1010011011001 zonked 1 -1010011011001 Deon 1 -1010011011001 drink-franchises 1 -1010011011001 widenings 1 -1010011011001 disproportions 1 -1010011011001 battle-to-prattle 1 -1010011011001 mezzoforte 1 -1010011011001 information-carrying 1 -1010011011001 trade-restriction 1 -1010011011001 course. 1 -1010011011001 families. 1 -1010011011001 399,116 1 -1010011011001 re-showing 1 -1010011011001 SHOWING 1 -1010011011001 flexibility- 1 -1010011011001 undercoat 1 -1010011011001 virological 1 -1010011011001 lapis 1 -1010011011001 dollar-sterling 1 -1010011011001 marinates 1 -1010011011001 energy-savings 1 -1010011011001 pratings 1 -1010011011001 bourree 1 -1010011011001 glissandos 1 -1010011011001 work-weeks 1 -1010011011001 idea-generators 1 -1010011011001 stiffener 1 -1010011011001 lickings 1 -1010011011001 theorization 1 -1010011011001 product-order 1 -1010011011001 mid-Florida 1 -1010011011001 3,979 1 -1010011011001 office-workstation 1 -1010011011001 landing-type 1 -1010011011001 1,733 1 -1010011011001 ham-eggs 1 -1010011011001 power-to-weight 1 -1010011011001 5,837 1 -1010011011001 pay-hike 1 -1010011011001 8,622 1 -1010011011001 18,160 1 -1010011011001 1,111,051 1 -1010011011001 negatives. 1 -1010011011001 rolling-back 1 -1010011011001 sesssion 1 -1010011011001 committee-man 1 -1010011011001 stainers 1 -1010011011001 repents 2 -1010011011001 self-immolation 2 -1010011011001 uptilt 2 -1010011011001 wellbeing 2 -1010011011001 marginalization 2 -1010011011001 fluctations 2 -1010011011001 petroleum-producing 2 -1010011011001 redial 2 -1010011011001 Boliviano 2 -1010011011001 moustache 2 -1010011011001 nitrite 3 -1010011011001 imprisonments 3 -1010011011001 pinnacles 3 -1010011011001 landscapers 3 -1010011011001 sizzles 3 -1010011011001 vibrance 3 -1010011011001 asset-trading 3 -1010011011001 enhancers 4 -1010011011001 concessionality 4 -1010011011001 spigots 5 -1010011011001 reactivity 5 -1010011011001 growth. 5 -1010011011001 meanderings 6 -1010011011001 brushwork 7 -1010011011001 changers 7 -1010011011001 fisticuffs 8 -1010011011001 overstatements 9 -1010011011001 precipitation 41 -1010011011001 depletion 109 -1010011011001 rainfall 156 -1010011011001 tightness 158 -1010011011001 growth 14763 -1010011011001 clip 185 -1010011011010 roughing-the-passer 1 -1010011011010 coupon-cutting 1 -1010011011010 391-1 2 -1010011011010 WNJU 2 -1010011011010 Gaullism 2 -1010011011010 downdrafts 2 -1010011011010 sensuousness 2 -1010011011010 blam-blam 2 -1010011011010 manager-dealer 2 -1010011011010 re-estimates 2 -1010011011010 share-building 2 -1010011011010 nickles 2 -1010011011010 employment. 2 -1010011011010 unattractiveness 2 -1010011011010 intrusiveness 3 -1010011011010 self-discovery 3 -1010011011010 positivism 3 -1010011011010 probings 3 -1010011011010 subspecialty 3 -1010011011010 gracelessness 3 -1010011011010 inebriation 3 -1010011011010 gradations 3 -1010011011010 prodigality 3 -1010011011010 disunion 3 -1010011011010 misquotation 3 -1010011011010 world-view 3 -1010011011010 WCIX-TV 3 -1010011011010 naturalness 4 -1010011011010 overscheduling 4 -1010011011010 skulduggery 4 -1010011011010 Fugue 4 -1010011011010 tomfoolery 4 -1010011011010 war-weariness 4 -1010011011010 pseudoscience 4 -1010011011010 schemers 4 -1010011011010 progess 4 -1010011011010 stodginess 4 -1010011011010 high-mindedness 4 -1010011011010 dangerousness 4 -1010011011010 fuzziness 5 -1010011011010 tackiness 5 -1010011011010 summations 5 -1010011011010 invulnerability 5 -1010011011010 weaklings 5 -1010011011010 cannibalization 5 -1010011011010 hoofs 5 -1010011011010 relativity 5 -1010011011010 mumbo-jumbo 5 -1010011011010 bicep 5 -1010011011010 inventory-building 5 -1010011011010 calmness 5 -1010011011010 vulgarities 5 -1010011011010 sophistry 5 -1010011011010 brotherhoods 5 -1010011011010 timpani 5 -1010011011010 repressions 6 -1010011011010 Proclamation 6 -1010011011010 game-playing 6 -1010011011010 claustrophobia 6 -1010011011010 archetypes 6 -1010011011010 vividness 6 -1010011011010 fallibility 6 -1010011011010 perplexity 6 -1010011011010 hollows 6 -1010011011010 brutalities 6 -1010011011010 whiteness 6 -1010011011010 deindustrialization 6 -1010011011010 jubilee 6 -1010011011010 immobility 7 -1010011011010 vibrato 7 -1010011011010 deportment 7 -1010011011010 niceness 7 -1010011011010 backbiting 7 -1010011011010 pettiness 7 -1010011011010 persuasiveness 7 -1010011011010 heavy-handedness 7 -1010011011010 accretion 7 -1010011011010 cheapness 7 -1010011011010 slackness 7 -1010011011010 devolution 7 -1010011011010 monsoons 7 -1010011011010 megalomania 7 -1010011011010 self-governance 7 -1010011011010 shakiness 7 -1010011011010 disingenuousness 7 -1010011011010 steadfastness 7 -1010011011010 exigencies 7 -1010011011010 bedlam 8 -1010011011010 homogeneity 8 -1010011011010 emulation 8 -1010011011010 roughnecks 8 -1010011011010 blacklisting 8 -1010011011010 forcefulness 8 -1010011011010 unprofitability 8 -1010011011010 sameness 8 -1010011011010 self-righteousness 8 -1010011011010 incapacitation 8 -1010011011010 stillness 9 -1010011011010 hyperactivity 9 -1010011011010 nonchalance 9 -1010011011010 transcriptions 9 -1010011011010 peformance 9 -1010011011010 maw 9 -1010011011010 unreliability 9 -1010011011010 punctuality 9 -1010011011010 Russification 9 -1010011011010 secretiveness 9 -1010011011010 callousness 9 -1010011011010 fluidity 9 -1010011011010 incapacity 9 -1010011011010 quicksand 9 -1010011011010 probity 10 -1010011011010 preeminence 10 -1010011011010 contentiousness 10 -1010011011010 Islamization 10 -1010011011010 cornerstones 10 -1010011011010 denunciations 10 -1010011011010 spasms 10 -1010011011010 eroticism 10 -1010011011010 inquest 10 -1010011011010 acuity 11 -1010011011010 stinginess 11 -1010011011010 suburbanization 11 -1010011011010 smoothness 11 -1010011011010 disorientation 11 -1010011011010 zigzags 11 -1010011011010 desolation 11 -1010011011010 segmentation 11 -1010011011010 rejuvenation 11 -1010011011010 truthfulness 12 -1010011011010 unpleasantness 12 -1010011011010 dullness 12 -1010011011010 cruelties 12 -1010011011010 apocalypse 12 -1010011011010 regimentation 12 -1010011011010 restlessness 12 -1010011011010 savagery 12 -1010011011010 exhilaration 13 -1010011011010 flamboyance 13 -1010011011010 benevolence 13 -1010011011010 adaptability 13 -1010011011010 quickness 13 -1010011011010 monotony 13 -1010011011010 oddities 13 -1010011011010 unilateralism 13 -1010011011010 myopia 14 -1010011011010 ordination 14 -1010011011010 thievery 14 -1010011011010 inflexibility 14 -1010011011010 trajectory 14 -1010011011010 decisiveness 14 -1010011011010 agility 14 -1010011011010 shoals 14 -1010011011010 misadventures 14 -1010011011010 emotionalism 15 -1010011011010 sloppiness 15 -1010011011010 aggravation 15 -1010011011010 heroics 15 -1010011011010 nastiness 15 -1010011011010 immediacy 15 -1010011011010 illumination 15 -1010011011010 prescience 15 -1010011011010 saber-rattling 16 -1010011011010 variability 16 -1010011011010 flanks 16 -1010011011010 ebullience 16 -1010011011010 progressivity 16 -1010011011010 foibles 17 -1010011011010 renown 17 -1010011011010 willpower 17 -1010011011010 timidity 17 -1010011011010 assertiveness 17 -1010011011010 laxity 17 -1010011011010 predominance 17 -1010011011010 stubbornness 17 -1010011011010 fortitude 18 -1010011011010 banality 18 -1010011011010 intoxication 18 -1010011011010 handiwork 18 -1010011011010 aspiration 19 -1010011011010 estrangement 19 -1010011011010 differentiation 19 -1010011011010 indecisiveness 19 -1010011011010 pre-eminence 19 -1010011011010 showmanship 19 -1010011011010 rebellions 19 -1010011011010 unfairness 19 -1010011011010 martyrdom 19 -1010011011010 serenity 19 -1010011011010 exuberance 20 -1010011011010 baptism 20 -1010011011010 eruption 20 -1010011011010 lyricism 20 -1010011011010 inaccuracy 20 -1010011011010 coolness 20 -1010011011010 redirection 20 -1010011011010 indoctrination 21 -1010011011010 tranquility 21 -1010011011010 canon 21 -1010011011010 mutation 22 -1010011011010 selectivity 22 -1010011011010 underperformance 22 -1010011011010 revulsion 22 -1010011011010 profligacy 22 -1010011011010 wasteland 22 -1010011011010 permanence 23 -1010011011010 illiquidity 23 -1010011011010 practicality 23 -1010011011010 hopelessness 24 -1010011011010 emptiness 24 -1010011011010 dismemberment 24 -1010011011010 ineptitude 25 -1010011011010 uniqueness 25 -1010011011010 reregulation 25 -1010011011010 carelessness 25 -1010011011010 detachment 25 -1010011011010 detentions 25 -1010011011010 versatility 26 -1010011011010 brevity 26 -1010011011010 thoroughness 26 -1010011011010 centralization 26 -1010011011010 steadiness 27 -1010011011010 appeasement 27 -1010011011010 militancy 27 -1010011011010 micromanagement 28 -1010011011010 have-nots 28 -1010011011010 impartiality 29 -1010011011010 resiliency 29 -1010011011010 refinement 29 -1010011011010 perseverance 29 -1010011011010 initiation 30 -1010011011010 passivity 30 -1010011011010 inactivity 30 -1010011011010 bloodletting 31 -1010011011010 soul-searching 31 -1010011011010 unpopularity 31 -1010011011010 abduction 31 -1010011011010 rationality 31 -1010011011010 interdependence 32 -1010011011010 dynamism 32 -1010011011010 commotion 33 -1010011011010 disaffection 33 -1010011011010 potency 33 -1010011011010 degradation 33 -1010011011010 subtlety 34 -1010011011010 computerization 34 -1010011011010 dislocation 34 -1010011011010 rigidity 34 -1010011011010 securitization 35 -1010011011010 boldness 35 -1010011011010 purges 36 -1010011011010 buoyancy 37 -1010011011010 predictability 37 -1010011011010 radicalism 39 -1010011011010 Adventures 41 -1010011011010 industrialization 41 -1010011011010 kidnappings 42 -1010011011010 mayhem 42 -1010011011010 polarization 43 -1010011011010 consternation 43 -1010011011010 affluence 44 -1010011011010 incarceration 44 -1010011011010 carnage 45 -1010011011010 lethargy 46 -1010011011010 credit-worthiness 47 -1010011011010 camaraderie 48 -1010011011010 enjoyment 48 -1010011011010 tumult 48 -1010011011010 overhang 49 -1010011011010 recollections 49 -1010011011010 hegemony 49 -1010011011010 anti-Americanism 49 -1010011011010 populism 50 -1010011011010 apathy 50 -1010011011010 tenacity 51 -1010011011010 intimacy 51 -1010011011010 fulfillment 51 -1010011011010 sadness 51 -1010011011010 odor 52 -1010011011010 brilliance 52 -1010011011010 naivete 53 -1010011011010 exhaustion 53 -1010011011010 inexperience 53 -1010011011010 enmity 54 -1010011011010 stewardship 54 -1010011011010 inconsistency 55 -1010011011010 fury 55 -1010011011010 authenticity 56 -1010011011010 slowness 56 -1010011011010 bloodshed 57 -1010011011010 politicking 58 -1010011011010 symbolism 59 -1010011011010 devastation 59 -1010011011010 madness 62 -1010011011010 misfortune 63 -1010011011010 longevity 63 -1010011011010 tyranny 63 -1010011011010 intolerance 64 -1010011011010 ambiguity 65 -1010011011010 cachet 65 -1010011011010 favoritism 66 -1010011011010 caseload 66 -1010011011010 notoriety 66 -1010011011010 insecurity 67 -1010011011010 fluctuation 67 -1010011011010 persecution 68 -1010011011010 supremacy 68 -1010011011010 decontrol 68 -1010011011010 inequality 71 -1010011011010 brutality 71 -1010011011010 decentralization 71 -1010011011010 readership 72 -1010011011010 ascent 75 -1010011011010 hatred 75 -1010011011010 agony 75 -1010011011010 overbuilding 78 -1010011011010 resilience 78 -1010011011010 disapproval 78 -1010011011010 workload 81 -1010011011010 distortion 81 -1010011011010 deflation 82 -1010011011010 decay 85 -1010011011010 slippage 86 -1010011011010 oppression 86 -1010011011010 reinstatement 87 -1010011011010 aggressiveness 88 -1010011011010 malaise 88 -1010011011010 folly 88 -1010011011010 anguish 89 -1010011011010 usefulness 92 -1010011011010 generosity 92 -1010011011010 purity 93 -1010011011010 paralysis 94 -1010011011010 discomfort 95 -1010011011010 segregation 99 -1010011011010 neutrality 99 -1010011011010 rioting 99 -1010011011010 persistence 103 -1010011011010 firmness 104 -1010011011010 gravity 109 -1010011011010 consistency 115 -1010011011010 vitality 116 -1010011011010 democratization 116 -1010011011010 exploitation 117 -1010011011010 equilibrium 118 -1010011011010 shrinkage 121 -1010011011010 excellence 122 -1010011011010 gloom 122 -1010011011010 sluggishness 123 -1010011011010 bitterness 126 -1010011011010 mobility 128 -1010011011010 well-being 130 -1010011011010 sophistication 134 -1010011011010 continuity 136 -1010011011010 equality 137 -1010011011010 advancement 139 -1010011011010 hardship 139 -1010011011010 euphoria 140 -1010011011010 insolvency 145 -1010011011010 rebellion 148 -1010011011010 discontent 150 -1010011011010 turbulence 151 -1010011011010 moderation 152 -1010011011010 viability 154 -1010011011010 visibility 158 -1010011011010 vigor 159 -1010011011010 orientation 160 -1010011011010 ignorance 160 -1010011011010 joy 163 -1010011011010 stagnation 165 -1010011011010 prominence 167 -1010011011010 dismay 167 -1010011011010 turnout 169 -1010011011010 overcapacity 173 -1010011011010 legitimacy 175 -1010011011010 strife 176 -1010011011010 reliability 196 -1010011011010 harassment 208 -1010011011010 stature 217 -1010011011010 disruption 221 -1010011011010 diversity 221 -1010011011010 distress 229 -1010011011010 transformation 231 -1010011011010 resentment 235 -1010011011010 dilution 246 -1010011011010 instability 254 -1010011011010 contamination 256 -1010011011010 evolution 256 -1010011011010 spectrum 258 -1010011011010 riots 275 -1010011011010 necessity 276 -1010011011010 dominance 305 -1010011011010 skill 307 -1010011011010 achievement 326 -1010011011010 satisfaction 344 -1010011011010 excitement 351 -1010011011010 erosion 362 -1010011011010 chaos 386 -1010011011010 logic 390 -1010011011010 debut 398 -1010011011010 arrival 399 -1010011011010 prosperity 422 -1010011011010 bias 428 -1010011011010 fortunes 463 -1010011011010 deterioration 463 -1010011011010 illness 468 -1010011011010 liberalization 477 -1010011011010 effectiveness 494 -1010011011010 frustration 501 -1010011011010 integrity 516 -1010011011010 survival 528 -1010011011010 unrest 635 -1010011011010 conviction 651 -1010011011010 competitiveness 675 -1010011011010 pain 724 -1010011011010 popularity 739 -1010011011010 turmoil 793 -1010011011010 tradition 794 -1010011011010 consolidation 826 -1010011011010 credibility 867 -1010011011010 momentum 931 -1010011011010 independence 936 -1010011011010 violence 1107 -1010011011010 volatility 1150 -1010011011010 deregulation 1192 -1010011011010 behavior 1220 -1010011011010 profitability 1361 -1010011011010 stability 1545 -1010011011010 recovery 1775 -1010011011010 weakness 1792 -1010011011010 collapse 1888 -1010011011010 movement 2137 -1010011011010 status 2484 -1010011011010 death 2989 -1010011011010 experience 3302 -1010011011010 strength 3439 -1010011011010 success 3802 -1010011011010 performance 5751 -1010011011010 history 4173 -1010011011011 cushy-looking 1 -1010011011011 blue-painted 1 -1010011011011 priceearnings 1 -1010011011011 R&D/asset 1 -1010011011011 bilevel 1 -1010011011011 3,174 1 -1010011011011 demotic 1 -1010011011011 stuffier 1 -1010011011011 information-reporting 2 -1010011011011 pullulating 2 -1010011011011 lyre 2 -1010011011011 restagings 2 -1010011011011 document-alteration 2 -1010011011011 precipitousness 2 -1010011011011 thighbone 2 -1010011011011 1:32 2 -1010011011011 4450 2 -1010011011011 panjandrums 3 -1010011011011 life- 3 -1010011011011 slap-happy 3 -1010011011011 motorway 3 -1010011011011 infectiousness 3 -1010011011011 sagacity 3 -1010011011011 short-termism 3 -1010011011011 pile-up 3 -1010011011011 penalities 4 -1010011011011 shoot-down 4 -1010011011011 exoticism 4 -1010011011011 resolicitation 4 -1010011011011 Siege 5 -1010011011011 bioavailability 5 -1010011011011 randomness 5 -1010011011011 detonation 5 -1010011011011 misalignment 5 -1010011011011 disparagement 5 -1010011011011 discomfiture 5 -1010011011011 assortments 5 -1010011011011 spec 5 -1010011011011 ADV 5 -1010011011011 freeze-out 6 -1010011011011 vulgarization 6 -1010011011011 glamor 6 -1010011011011 Europeanization 6 -1010011011011 ingestion 7 -1010011011011 dispersion 7 -1010011011011 flatlands 7 -1010011011011 visualization 7 -1010011011011 metabolism 7 -1010011011011 backlist 8 -1010011011011 clanging 8 -1010011011011 connectivity 9 -1010011011011 retroactivity 9 -1010011011011 pre-notification 9 -1010011011011 monopolization 9 -1010011011011 implosion 9 -1010011011011 institutionalization 10 -1010011011011 argot 10 -1010011011011 side-effect 10 -1010011011011 undervaluation 11 -1010011011011 legalities 11 -1010011011011 Daughters 11 -1010011011011 attentiveness 11 -1010011011011 subsidization 13 -1010011011011 mingling 13 -1010011011011 finality 13 -1010011011011 roadway 15 -1010011011011 survivability 15 -1010011011011 bowel 15 -1010011011011 adulation 16 -1010011011011 divisiveness 16 -1010011011011 P-Es 16 -1010011011011 denuclearization 16 -1010011011011 timeliness 18 -1010011011011 attainment 18 -1010011011011 forfeitures 18 -1010011011011 absorbency 18 -1010011011011 evaporation 20 -1010011011011 probabilities 20 -1010011011011 cost-effectiveness 22 -1010011011011 booty 23 -1010011011011 reasonableness 24 -1010011011011 suitability 25 -1010011011011 injustices 25 -1010011011011 tides 26 -1010011011011 rigor 27 -1010011011011 unionization 27 -1010011011011 reauthorization 28 -1010011011011 grounding 29 -1010011011011 displacement 29 -1010011011011 harmonization 29 -1010011011011 overuse 29 -1010011011011 delicacy 30 -1010011011011 expropriation 32 -1010011011011 alteration 34 -1010011011011 computation 40 -1010011011011 spoils 41 -1010011011011 dissemination 42 -1010011011011 courtship 43 -1010011011011 velocity 45 -1010011011011 locker 47 -1010011011011 esteem 48 -1010011011011 absorption 50 -1010011011011 configuration 51 -1010011011011 boundary 61 -1010011011011 Phantom 62 -1010011011011 rubble 63 -1010011011011 pulse 65 -1010011011011 inconvenience 69 -1010011011011 redistribution 79 -1010011011011 clutter 85 -1010011011011 globalization 85 -1010011011011 classification 86 -1010011011011 conception 91 -1010011011011 substitution 97 -1010011011011 concentrations 98 -1010011011011 boiler 101 -1010011011011 preservation 107 -1010011011011 reins 110 -1010011011011 migration 113 -1010011011011 glamour 119 -1010011011011 solvency 119 -1010011011011 trauma 127 -1010011011011 depths 137 -1010011011011 misappropriation 138 -1010011011011 efficacy 139 -1010011011011 exclusion 177 -1010011011011 diagnosis 180 -1010011011011 translation 188 -1010011011011 frequency 206 -1010011011011 makeup 219 -1010011011011 probability 227 -1010011011011 accuracy 298 -1010011011011 temperature 321 -1010011011011 valuation 341 -1010011011011 execution 346 -1010011011011 allocation 359 -1010011011011 separation 386 -1010011011011 concentration 392 -1010011011011 length 544 -1010011011011 murder 598 -1010011011011 substance 633 -1010011011011 passage 659 -1010011011011 discovery 764 -1010011011011 weight 892 -1010011011011 publication 1084 -1010011011011 scale 1153 -1010011011011 degree 1294 -1010011011011 expense 1712 -1010011011011 disclosure 1825 -1010011011011 quality 3457 -1010011011011 balance 3641 -1010011011011 risk 5179 -101001101110 tulipomania 1 -101001101110 list. 1 -101001101110 33-fold 1 -101001101110 clematisizing 1 -101001101110 Johnny-O 1 -101001101110 neighbour 1 -101001101110 two-pieces 1 -101001101110 numerators 1 -101001101110 duxedo 1 -101001101110 navy-trashing 1 -101001101110 own. 1 -101001101110 340-fold 1 -101001101110 semi-rut 1 -101001101110 relationship-building 1 -101001101110 authority. 1 -101001101110 informers. 1 -101001101110 garbage-overflow-with-no-place-to-go 1 -101001101110 vermicelli 1 -101001101110 revolvaphobia 1 -101001101110 Communism. 1 -101001101110 get-ups 1 -101001101110 hands. 1 -101001101110 Atty 1 -101001101110 misunderstandings. 1 -101001101110 McHead 1 -101001101110 corner. 1 -101001101110 English-Spanish 1 -101001101110 armpits. 1 -101001101110 chadors 1 -101001101110 headship 2 -101001101110 inadvertence 2 -101001101110 buffoonery 2 -101001101110 kibitzer 2 -101001101110 lunchbox 2 -101001101110 TIGRs 2 -101001101110 mankind. 2 -101001101110 sang-froid 2 -101001101110 can-you-top-this 2 -101001101110 neo-Darwinists 2 -101001101110 deshabille 2 -101001101110 joy. 2 -101001101110 product. 2 -101001101110 recyclables 2 -101001101110 newsworthiness 2 -101001101110 strugglers 2 -101001101110 humanness 2 -101001101110 troubadour 2 -101001101110 spottily 2 -101001101110 intemperance 2 -101001101110 15-fold 2 -101001101110 betrothal 2 -101001101110 genitalia 2 -101001101110 redeploys 2 -101001101110 marsupial 2 -101001101110 over-ambition 2 -101001101110 oversimplifications 2 -101001101110 paseo 2 -101001101110 taste. 2 -101001101110 men. 2 -101001101110 commandante 2 -101001101110 wannabes 2 -101001101110 multinationalism 2 -101001101110 downloading 2 -101001101110 history. 2 -101001101110 rodrigazo 2 -101001101110 headlamp 2 -101001101110 Darwinist 2 -101001101110 catacomb 2 -101001101110 largeness 2 -101001101110 punditry 2 -101001101110 regionalization 2 -101001101110 defense. 2 -101001101110 coleslaw 2 -101001101110 Methodism 2 -101001101110 drugs. 2 -101001101110 continence 2 -101001101110 contemporaneity 2 -101001101110 say-so 2 -101001101110 fraud. 2 -101001101110 Pr 2 -101001101110 forestland 2 -101001101110 Tacambaro 2 -101001101110 1040s 2 -101001101110 self-delusions 2 -101001101110 mouthfeel 2 -101001101110 Moscow. 2 -101001101110 overpromising 2 -101001101110 Sincerity 2 -101001101110 mish-mash 2 -101001101110 semaphore 2 -101001101110 location. 2 -101001101110 resetting 2 -101001101110 zinnias 2 -101001101110 gallette 2 -101001101110 setpoint 2 -101001101110 heartstrings 2 -101001101110 stiffness 2 -101001101110 boners 2 -101001101110 plodder 2 -101001101110 pelmeny 2 -101001101110 conformism 2 -101001101110 jib 2 -101001101110 1944-45 2 -101001101110 impositions 2 -101001101110 pro-Americanism 2 -101001101110 disassembly 2 -101001101110 attics 2 -101001101110 untruth 3 -101001101110 diffidence 3 -101001101110 agers 3 -101001101110 crispness 3 -101001101110 archeology 3 -101001101110 argumentation 3 -101001101110 mountebank 3 -101001101110 birthdate 3 -101001101110 casbah 3 -101001101110 perplexities 3 -101001101110 sectarianism 3 -101001101110 dotage 3 -101001101110 tics 3 -101001101110 insomniacs 3 -101001101110 adulteries 3 -101001101110 steeples 3 -101001101110 six-shooters 3 -101001101110 foreignness 3 -101001101110 squeraroli 3 -101001101110 synecdoche 3 -101001101110 patriarchs 3 -101001101110 pugilist 3 -101001101110 bibles 3 -101001101110 xerophytes 3 -101001101110 Spiderman 3 -101001101110 secularization 3 -101001101110 self-mutilation 3 -101001101110 bugler 3 -101001101110 dungeon 3 -101001101110 profits. 3 -101001101110 trouble. 3 -101001101110 tradecraft 3 -101001101110 currant 3 -101001101110 woodcock 3 -101001101110 precocity 3 -101001101110 punters 3 -101001101110 endangerment 3 -101001101110 inferiors 3 -101001101110 biogrammar 3 -101001101110 fecundity 3 -101001101110 forgetfulness 3 -101001101110 Hottentots 3 -101001101110 might-have-beens 3 -101001101110 athleticism 3 -101001101110 simile 3 -101001101110 savoir-faire 3 -101001101110 anticommunism 3 -101001101110 Miyake 3 -101001101110 itinerants 3 -101001101110 democracy. 3 -101001101110 sheepskins 3 -101001101110 snores 3 -101001101110 babe 3 -101001101110 gentiles 3 -101001101110 boyishness 3 -101001101110 privation 3 -101001101110 rutabagas 3 -101001101110 kinsman 3 -101001101110 hipness 3 -101001101110 headscarves 3 -101001101110 musculature 3 -101001101110 25-to-44-year-olds 3 -101001101110 logorrhea 3 -101001101110 fibrillation 3 -101001101110 noisemakers 3 -101001101110 mead 3 -101001101110 manes 3 -101001101110 watchfulness 3 -101001101110 death. 3 -101001101110 folkways 3 -101001101110 malevolence 3 -101001101110 encirclement 3 -101001101110 now-now-ism 3 -101001101110 vin 3 -101001101110 plena 3 -101001101110 change. 3 -101001101110 stepgrandmother 3 -101001101110 self-doubts 3 -101001101110 shinsplints 3 -101001101110 primitives 3 -101001101110 anti-smoker 3 -101001101110 holiness 3 -101001101110 in-fighting 3 -101001101110 Waiter 3 -101001101110 chemises 3 -101001101110 1180 3 -101001101110 multipliers 3 -101001101110 Proverbs 4 -101001101110 cartooning 4 -101001101110 stasis 4 -101001101110 collarbone 4 -101001101110 gastroenteritis 4 -101001101110 troglodytes 4 -101001101110 employability 4 -101001101110 snowbirds 4 -101001101110 state. 4 -101001101110 cloisters 4 -101001101110 youthfulness 4 -101001101110 masochism 4 -101001101110 expressionists 4 -101001101110 non-alignment 4 -101001101110 slanders 4 -101001101110 sloganeering 4 -101001101110 barracudas 4 -101001101110 thriftiness 4 -101001101110 illuminations 4 -101001101110 commodore 4 -101001101110 notaries 4 -101001101110 deformity 4 -101001101110 stone-throwers 4 -101001101110 hankies 4 -101001101110 masterstroke 4 -101001101110 escarpment 4 -101001101110 self-definition 4 -101001101110 Torqueing 4 -101001101110 Taxachusetts 4 -101001101110 beavers 4 -101001101110 eclecticism 4 -101001101110 inexpressive 4 -101001101110 indolence 4 -101001101110 discourtesy 4 -101001101110 boars 4 -101001101110 cinematography 4 -101001101110 role. 4 -101001101110 sonorities 4 -101001101110 chameleons 4 -101001101110 self-consciousness 4 -101001101110 bib 4 -101001101110 guff 4 -101001101110 derelicts 4 -101001101110 hucksterism 4 -101001101110 chauvinists 4 -101001101110 mascots 4 -101001101110 progressivism 4 -101001101110 Itch 4 -101001101110 languor 4 -101001101110 mind. 4 -101001101110 gulags 4 -101001101110 plumage 4 -101001101110 Russianness 4 -101001101110 Brie 4 -101001101110 affectation 4 -101001101110 curiouser 4 -101001101110 bafflement 4 -101001101110 patriarchy 4 -101001101110 ken 4 -101001101110 I-9s 4 -101001101110 peacefulness 4 -101001101110 oceanography 4 -101001101110 mirth 4 -101001101110 tough-mindedness 4 -101001101110 equalizer 4 -101001101110 clods 4 -101001101110 kneecaps 4 -101001101110 activities. 4 -101001101110 reus 5 -101001101110 grids 5 -101001101110 crossovers 5 -101001101110 womanhood 5 -101001101110 sakes 5 -101001101110 plasmid 5 -101001101110 biceps 5 -101001101110 homophobia 5 -101001101110 ingratitude 5 -101001101110 providence 5 -101001101110 expedience 5 -101001101110 self-correction 5 -101001101110 poodles 5 -101001101110 empiricism 5 -101001101110 warmongers 5 -101001101110 utopias 5 -101001101110 bathos 5 -101001101110 scripture 5 -101001101110 Leviathan 5 -101001101110 sainthood 5 -101001101110 globalism 5 -101001101110 fridge 5 -101001101110 oaks 5 -101001101110 Goliaths 5 -101001101110 muscle-flexing 5 -101001101110 workaholism 5 -101001101110 stupor 5 -101001101110 humbug 5 -101001101110 malapropisms 5 -101001101110 lawyering 5 -101001101110 consonants 5 -101001101110 longhouses 5 -101001101110 self-absorption 5 -101001101110 felicity 5 -101001101110 self-knowledge 5 -101001101110 longings 5 -101001101110 high-handedness 5 -101001101110 fuchsia 5 -101001101110 drumsticks 5 -101001101110 wanderers 5 -101001101110 personae 5 -101001101110 chartists 5 -101001101110 unclean 5 -101001101110 eardrum 5 -101001101110 infighter 5 -101001101110 forearms 5 -101001101110 clover 5 -101001101110 self-parody 5 -101001101110 gentleness 5 -101001101110 desertification 5 -101001101110 de-Stalinization 5 -101001101110 muscularity 5 -101001101110 tonality 5 -101001101110 negativity 5 -101001101110 transvestites 5 -101001101110 generality 5 -101001101110 blisters 5 -101001101110 sentimentalism 5 -101001101110 absolutes 5 -101001101110 Medea 5 -101001101110 tidiness 5 -101001101110 apricots 5 -101001101110 hirelings 5 -101001101110 glibness 5 -101001101110 fifties 6 -101001101110 nonconformity 6 -101001101110 dynasties 6 -101001101110 defeatism 6 -101001101110 petulance 6 -101001101110 scabs 6 -101001101110 scarfs 6 -101001101110 self-assertion 6 -101001101110 hyper-inflation 6 -101001101110 free-trader 6 -101001101110 cadences 6 -101001101110 ovaries 6 -101001101110 viciousness 6 -101001101110 glazing 6 -101001101110 glop 6 -101001101110 wryness 6 -101001101110 clear-cutting 6 -101001101110 martinis 6 -101001101110 milo 6 -101001101110 vindictiveness 6 -101001101110 cubs 6 -101001101110 quackery 6 -101001101110 escapism 6 -101001101110 electability 6 -101001101110 talkers 6 -101001101110 spires 6 -101001101110 debauchery 6 -101001101110 aloofness 6 -101001101110 metaphysics 6 -101001101110 broth 6 -101001101110 reveries 6 -101001101110 virility 6 -101001101110 impersonality 6 -101001101110 consciousness-raising 6 -101001101110 nostrils 6 -101001101110 inflections 6 -101001101110 sightseers 6 -101001101110 despotism 6 -101001101110 ranchland 6 -101001101110 overfishing 6 -101001101110 butchery 6 -101001101110 graciousness 6 -101001101110 airspeed 6 -101001101110 lichen 6 -101001101110 ostracism 6 -101001101110 shoelaces 6 -101001101110 basketry 6 -101001101110 vermilion 6 -101001101110 dissonance 6 -101001101110 waistline 6 -101001101110 comportment 6 -101001101110 mitt 7 -101001101110 gymnasiums 7 -101001101110 untouchables 7 -101001101110 reflexes 7 -101001101110 approbation 7 -101001101110 backfield 7 -101001101110 doublespeak 7 -101001101110 graveyards 7 -101001101110 monarchs 7 -101001101110 gullibility 7 -101001101110 boorishness 7 -101001101110 weirdos 7 -101001101110 orderliness 7 -101001101110 titleholder 7 -101001101110 Metrodome 7 -101001101110 rhinestones 7 -101001101110 self-satisfaction 7 -101001101110 nothingness 7 -101001101110 life. 7 -101001101110 roping 7 -101001101110 atheism 7 -101001101110 scapegoating 7 -101001101110 perfectionism 7 -101001101110 country. 7 -101001101110 geraniums 7 -101001101110 rednecks 7 -101001101110 tutorials 7 -101001101110 Arithmetic 7 -101001101110 brainpower 7 -101001101110 parentage 7 -101001101110 downtowns 7 -101001101110 raspberries 7 -101001101110 image-making 7 -101001101110 modernists 7 -101001101110 anthems 7 -101001101110 narratives 7 -101001101110 femininity 7 -101001101110 slingshot 7 -101001101110 musicality 7 -101001101110 convalescence 7 -101001101110 beak 8 -101001101110 incantation 8 -101001101110 nickels 8 -101001101110 adjectives 8 -101001101110 chit-chat 8 -101001101110 caprice 8 -101001101110 deadwood 8 -101001101110 single-mindedness 8 -101001101110 chitchat 8 -101001101110 Creoles 8 -101001101110 people. 8 -101001101110 neurosis 8 -101001101110 headbands 8 -101001101110 booties 8 -101001101110 reflation 8 -101001101110 freeloaders 8 -101001101110 flutes 8 -101001101110 separateness 8 -101001101110 valor 8 -101001101110 depravity 8 -101001101110 secularism 8 -101001101110 shading 8 -101001101110 wildness 8 -101001101110 sweatshops 8 -101001101110 braggadocio 8 -101001101110 blasphemy 8 -101001101110 believability 8 -101001101110 outspokenness 8 -101001101110 tunic 8 -101001101110 daisies 8 -101001101110 entrapment 8 -101001101110 infallibility 8 -101001101110 hedgehog 8 -101001101110 gobbledygook 8 -101001101110 pathos 8 -101001101110 brawls 8 -101001101110 expressivity 8 -101001101110 neuroses 8 -101001101110 earmuffs 8 -101001101110 self-importance 8 -101001101110 overoptimism 8 -101001101110 misfits 9 -101001101110 laity 9 -101001101110 hovels 9 -101001101110 nonintervention 9 -101001101110 handshakes 9 -101001101110 playfulness 9 -101001101110 bologna 9 -101001101110 hilarity 9 -101001101110 reverie 9 -101001101110 pedantry 9 -101001101110 clumsiness 9 -101001101110 brashness 9 -101001101110 reeds 9 -101001101110 cartilage 9 -101001101110 gutters 9 -101001101110 pastimes 9 -101001101110 virgins 9 -101001101110 irreverence 9 -101001101110 moth 9 -101001101110 buggy 9 -101001101110 girth 9 -101001101110 lagoon 9 -101001101110 homesickness 9 -101001101110 introspection 9 -101001101110 D-Day 9 -101001101110 gypsies 9 -101001101110 no-shows 9 -101001101110 poise 9 -101001101110 recuperation 9 -101001101110 encephalitis 9 -101001101110 nomenclature 9 -101001101110 fables 9 -101001101110 circumspection 9 -101001101110 redundancy 9 -101001101110 asides 9 -101001101110 quiver 9 -101001101110 Mexicali 9 -101001101110 separations 9 -101001101110 byways 9 -101001101110 antiquity 9 -101001101110 one-upmanship 10 -101001101110 rebelliousness 10 -101001101110 communion 10 -101001101110 hedonism 10 -101001101110 gibberish 10 -101001101110 statecraft 10 -101001101110 gunslinger 10 -101001101110 statehouses 10 -101001101110 overexpansion 10 -101001101110 titillation 10 -101001101110 flora 10 -101001101110 restrictiveness 10 -101001101110 zealotry 10 -101001101110 grays 10 -101001101110 camper 10 -101001101110 imprudence 10 -101001101110 nylons 10 -101001101110 expressionism 10 -101001101110 thorns 10 -101001101110 mannerisms 10 -101001101110 zaitech 10 -101001101110 abode 10 -101001101110 nirvana 10 -101001101110 cockiness 10 -101001101110 ineffectiveness 10 -101001101110 swans 10 -101001101110 greenbacks 10 -101001101110 grits 10 -101001101110 blustering 10 -101001101110 penance 10 -101001101110 mysticism 10 -101001101110 peacocks 10 -101001101110 socialization 10 -101001101110 railroading 10 -101001101110 suffrage 10 -101001101110 braids 10 -101001101110 chirp 10 -101001101110 knobs 10 -101001101110 beret 10 -101001101110 self-congratulation 10 -101001101110 dukes 11 -101001101110 dentures 11 -101001101110 contrition 11 -101001101110 urbanization 11 -101001101110 nearsightedness 11 -101001101110 classicism 11 -101001101110 boosterism 11 -101001101110 pieties 11 -101001101110 numbness 11 -101001101110 jubilation 11 -101001101110 innuendoes 11 -101001101110 hallucinations 11 -101001101110 shrewdness 11 -101001101110 clans 11 -101001101110 gentility 11 -101001101110 grasslands 11 -101001101110 irrelevance 11 -101001101110 tundra 11 -101001101110 pomposity 11 -101001101110 excrement 11 -101001101110 togetherness 11 -101001101110 self-aggrandizement 11 -101001101110 triage 11 -101001101110 wardrobes 11 -101001101110 hooliganism 11 -101001101110 combativeness 11 -101001101110 cuteness 11 -101001101110 razzle-dazzle 11 -101001101110 incoherence 11 -101001101110 volcanoes 11 -101001101110 demography 11 -101001101110 neutralism 11 -101001101110 geometry 12 -101001101110 immortality 12 -101001101110 generalities 12 -101001101110 self-pity 12 -101001101110 solemnity 12 -101001101110 sores 12 -101001101110 buttocks 12 -101001101110 cant 12 -101001101110 gait 12 -101001101110 electioneering 12 -101001101110 Republicanism 12 -101001101110 acrobatics 12 -101001101110 clowning 12 -101001101110 diction 12 -101001101110 moralism 12 -101001101110 lizards 12 -101001101110 decorum 12 -101001101110 self-assurance 12 -101001101110 cleverness 12 -101001101110 laxatives 12 -101001101110 factionalism 12 -101001101110 whiskers 12 -101001101110 cheesecake 12 -101001101110 retroviruses 12 -101001101110 sobriety 12 -101001101110 contentment 12 -101001101110 infidelities 12 -101001101110 cinemas 12 -101001101110 smugness 13 -101001101110 summitry 13 -101001101110 alacrity 13 -101001101110 righteousness 13 -101001101110 makegoods 13 -101001101110 disengagement 13 -101001101110 bloodlines 13 -101001101110 machismo 13 -101001101110 vulgarity 13 -101001101110 duplicity 13 -101001101110 self-preservation 13 -101001101110 twigs 13 -101001101110 overconfidence 13 -101001101110 insularity 13 -101001101110 mien 13 -101001101110 animosities 13 -101001101110 dogmatism 13 -101001101110 babble 13 -101001101110 chutzpah 13 -101001101110 wheezing 13 -101001101110 separatism 14 -101001101110 avarice 14 -101001101110 virginity 14 -101001101110 disloyalty 14 -101001101110 lunacy 14 -101001101110 resourcefulness 14 -101001101110 ecstasy 14 -101001101110 Westernization 14 -101001101110 physique 14 -101001101110 hairs 14 -101001101110 deniability 14 -101001101110 barbarism 14 -101001101110 bondage 14 -101001101110 derring-do 14 -101001101110 veils 14 -101001101110 invincibility 14 -101001101110 ennui 14 -101001101110 self-delusion 14 -101001101110 infidelity 14 -101001101110 puns 14 -101001101110 commercialism 14 -101001101110 headdress 14 -101001101110 barbarians 15 -101001101110 colonization 15 -101001101110 hokum 15 -101001101110 invective 15 -101001101110 minutiae 15 -101001101110 self-doubt 15 -101001101110 craftsmanship 15 -101001101110 backsliding 15 -101001101110 replication 15 -101001101110 equanimity 15 -101001101110 McCarthyism 15 -101001101110 spirituality 15 -101001101110 beards 15 -101001101110 vices 15 -101001101110 sloth 15 -101001101110 physiology 15 -101001101110 opulence 15 -101001101110 maneuverability 15 -101001101110 pretzels 15 -101001101110 communicator 15 -101001101110 improvisation 15 -101001101110 blandness 15 -101001101110 inclinations 15 -101001101110 quilts 15 -101001101110 solitude 15 -101001101110 sensuality 15 -101001101110 materialism 15 -101001101110 backwardness 16 -101001101110 mudslinging 16 -101001101110 abdomen 16 -101001101110 archaeology 16 -101001101110 decadence 16 -101001101110 knuckles 16 -101001101110 self-image 16 -101001101110 hogwash 16 -101001101110 surrealism 16 -101001101110 treachery 16 -101001101110 auditions 16 -101001101110 boyfriends 16 -101001101110 anatomy 16 -101001101110 procreation 16 -101001101110 snobbery 16 -101001101110 nihilism 16 -101001101110 drudgery 16 -101001101110 filth 16 -101001101110 spears 16 -101001101110 demons 17 -101001101110 pajamas 17 -101001101110 nudity 17 -101001101110 revisionism 17 -101001101110 banter 17 -101001101110 verve 17 -101001101110 triangles 17 -101001101110 sensationalism 17 -101001101110 parochialism 17 -101001101110 desertion 17 -101001101110 palate 17 -101001101110 frankness 17 -101001101110 romanticism 17 -101001101110 amnesia 17 -101001101110 swagger 17 -101001101110 overalls 17 -101001101110 composure 17 -101001101110 vultures 17 -101001101110 idleness 17 -101001101110 authorship 17 -101001101110 pretension 17 -101001101110 ruthlessness 17 -101001101110 regeneration 17 -101001101110 tact 18 -101001101110 dragons 18 -101001101110 compass 18 -101001101110 elitism 18 -101001101110 mercantilism 18 -101001101110 beggars 18 -101001101110 moonlight 18 -101001101110 palates 18 -101001101110 boardrooms 18 -101001101110 self-destruction 18 -101001101110 utopia 18 -101001101110 fiefdom 18 -101001101110 allegory 18 -101001101110 evangelism 19 -101001101110 polity 19 -101001101110 guesswork 19 -101001101110 skulls 19 -101001101110 disunity 19 -101001101110 pate 19 -101001101110 patter 19 -101001101110 laurels 19 -101001101110 companionship 19 -101001101110 tenderness 19 -101001101110 textures 19 -101001101110 sarcasm 19 -101001101110 name-calling 20 -101001101110 competency 20 -101001101110 rudeness 20 -101001101110 flattery 20 -101001101110 erudition 20 -101001101110 pearls 20 -101001101110 mush 20 -101001101110 symmetry 20 -101001101110 friendliness 20 -101001101110 brotherhood 20 -101001101110 seduction 20 -101001101110 egotism 20 -101001101110 suburbia 20 -101001101110 grit 20 -101001101110 chicanery 20 -101001101110 wrists 20 -101001101110 bliss 20 -101001101110 hypermarkets 20 -101001101110 haircuts 20 -101001101110 purses 21 -101001101110 gusto 21 -101001101110 axis 21 -101001101110 ethnicity 21 -101001101110 individuality 21 -101001101110 nuance 21 -101001101110 scarring 21 -101001101110 bandages 21 -101001101110 internationalism 21 -101001101110 dryer 21 -101001101110 flats 21 -101001101110 storytelling 21 -101001101110 expediency 21 -101001101110 inattention 21 -101001101110 self-respect 21 -101001101110 elation 21 -101001101110 stead 21 -101001101110 artistry 21 -101001101110 oratory 22 -101001101110 sausages 22 -101001101110 remorse 22 -101001101110 self-control 22 -101001101110 egalitarianism 22 -101001101110 opportunism 22 -101001101110 panties 22 -101001101110 environmentalism 22 -101001101110 puppets 22 -101001101110 stereotyping 23 -101001101110 grandstanding 23 -101001101110 whimsy 23 -101001101110 culpability 23 -101001101110 progeny 23 -101001101110 manhood 23 -101001101110 roadways 23 -101001101110 eminence 23 -101001101110 spontaneity 23 -101001101110 statism 23 -101001101110 one-liners 24 -101001101110 aesthetics 24 -101001101110 travail 24 -101001101110 whining 24 -101001101110 woe 24 -101001101110 kitsch 24 -101001101110 lawlessness 24 -101001101110 paternalism 24 -101001101110 anti-communism 24 -101001101110 stagflation 24 -101001101110 bipartisanship 24 -101001101110 chauvinism 24 -101001101110 kin 24 -101001101110 offstage 25 -101001101110 virtuosity 25 -101001101110 enlightenment 25 -101001101110 elbows 25 -101001101110 bluster 25 -101001101110 promiscuity 25 -101001101110 colonialism 25 -101001101110 fanaticism 25 -101001101110 genocide 25 -101001101110 frugality 26 -101001101110 empowerment 26 -101001101110 demagoguery 26 -101001101110 monetarism 26 -101001101110 sweetness 26 -101001101110 birthright 26 -101001101110 foolishness 26 -101001101110 venom 26 -101001101110 marbles 26 -101001101110 comprehension 26 -101001101110 heartburn 26 -101001101110 schizophrenia 26 -101001101110 bigotry 27 -101001101110 piety 27 -101001101110 salesmanship 27 -101001101110 temples 27 -101001101110 closets 27 -101001101110 psychoanalysis 27 -101001101110 accompli 27 -101001101110 hillsides 28 -101001101110 inventiveness 28 -101001101110 isolationism 28 -101001101110 courtrooms 28 -101001101110 derision 28 -101001101110 baloney 29 -101001101110 xenophobia 29 -101001101110 panache 29 -101001101110 partisanship 29 -101001101110 tranquillity 29 -101001101110 sentimentality 29 -101001101110 sorrow 29 -101001101110 restrooms 30 -101001101110 workmanship 30 -101001101110 bravery 30 -101001101110 heroism 30 -101001101110 extravagance 30 -101001101110 bravado 30 -101001101110 surname 30 -101001101110 nobility 30 -101001101110 hobbies 30 -101001101110 warts 30 -101001101110 extremism 31 -101001101110 kindness 31 -101001101110 palms 31 -101001101110 cheeks 31 -101001101110 hubris 31 -101001101110 stew 31 -101001101110 perch 31 -101001101110 ancestry 32 -101001101110 astonishment 32 -101001101110 salons 32 -101001101110 sensibilities 32 -101001101110 binoculars 32 -101001101110 stamina 32 -101001101110 swamps 32 -101001101110 grammar 32 -101001101110 infertility 32 -101001101110 slander 33 -101001101110 cleanliness 33 -101001101110 self-promotion 33 -101001101110 assimilation 33 -101001101110 calculus 34 -101001101110 gums 34 -101001101110 rubbish 34 -101001101110 stupidity 34 -101001101110 feminism 34 -101001101110 flux 34 -101001101110 self-reliance 34 -101001101110 ecology 34 -101001101110 gerrymandering 34 -101001101110 individualism 34 -101001101110 vegetation 34 -101001101110 phrasing 34 -101001101110 normalcy 35 -101001101110 adolescence 35 -101001101110 foot-dragging 35 -101001101110 sanity 35 -101001101110 intercourse 35 -101001101110 mediocrity 35 -101001101110 vanity 35 -101001101110 modesty 36 -101001101110 melodies 36 -101001101110 robes 36 -101001101110 mythology 36 -101001101110 tails 36 -101001101110 blindness 36 -101001101110 freshness 37 -101001101110 upbringing 37 -101001101110 humility 37 -101001101110 dishonesty 37 -101001101110 confinement 37 -101001101110 parenting 37 -101001101110 fingernails 38 -101001101110 creed 38 -101001101110 moods 38 -101001101110 ghosts 38 -101001101110 endurance 38 -101001101110 dummies 38 -101001101110 folklore 39 -101001101110 jurisprudence 39 -101001101110 indigestion 39 -101001101110 rhythms 39 -101001101110 breasts 39 -101001101110 foresight 39 -101001101110 greatness 39 -101001101110 amazement 39 -101001101110 jealousy 40 -101001101110 grandeur 40 -101001101110 attire 40 -101001101110 adversity 41 -101001101110 gratification 41 -101001101110 accents 41 -101001101110 sexuality 41 -101001101110 loneliness 41 -101001101110 mores 42 -101001101110 cruelty 42 -101001101110 thunder 42 -101001101110 jawboning 42 -101001101110 oblivion 42 -101001101110 self-determination 43 -101001101110 totalitarianism 43 -101001101110 teachings 43 -101001101110 dogma 43 -101001101110 intuition 43 -101001101110 angst 43 -101001101110 elegance 44 -101001101110 chatter 44 -101001101110 hyperbole 44 -101001101110 fingerprints 45 -101001101110 idealism 45 -101001101110 possessions 45 -101001101110 indignation 45 -101001101110 originality 45 -101001101110 morals 45 -101001101110 professionalism 46 -101001101110 veins 46 -101001101110 prejudices 46 -101001101110 impotence 46 -101001101110 glee 48 -101001101110 prayers 48 -101001101110 awe 48 -101001101110 trousers 49 -101001101110 heresy 49 -101001101110 goodness 51 -101001101110 psyche 51 -101001101110 alienation 51 -101001101110 doorstep 52 -101001101110 hips 52 -101001101110 indecision 52 -101001101110 demeanor 53 -101001101110 heel 53 -101001101110 sleeves 54 -101001101110 hyperinflation 54 -101001101110 anarchy 55 -101001101110 self-esteem 55 -101001101110 sensibility 55 -101001101110 scenery 55 -101001101110 persona 56 -101001101110 loyalties 57 -101001101110 prophecy 57 -101001101110 sewers 57 -101001101110 paranoia 58 -101001101110 prerogatives 58 -101001101110 nationality 58 -101001101110 kings 58 -101001101110 theology 58 -101001101110 frontiers 59 -101001101110 philanthropy 60 -101001101110 greens 60 -101001101110 perfection 61 -101001101110 intellect 62 -101001101110 armor 62 -101001101110 objectivity 63 -101001101110 fog 64 -101001101110 reckoning 64 -101001101110 melodrama 64 -101001101110 pragmatism 64 -101001101110 grief 65 -101001101110 salvation 65 -101001101110 toughness 65 -101001101110 inertia 65 -101001101110 imperialism 65 -101001101110 disbelief 66 -101001101110 ingenuity 66 -101001101110 vest 66 -101001101110 liking 67 -101001101110 respectability 68 -101001101110 self-confidence 68 -101001101110 choreography 69 -101001101110 subversion 69 -101001101110 disgrace 69 -101001101110 persuasion 69 -101001101110 betrayal 69 -101001101110 fantasies 69 -101001101110 sincerity 70 -101001101110 intrigue 70 -101001101110 cuisine 70 -101001101110 archives 70 -101001101110 nails 71 -101001101110 interferon 71 -101001101110 poems 72 -101001101110 vocabulary 72 -101001101110 incompetence 73 -101001101110 surroundings 74 -101001101110 livelihood 74 -101001101110 irritation 74 -101001101110 peanuts 76 -101001101110 teamwork 76 -101001101110 simplicity 76 -101001101110 toes 77 -101001101110 temperament 77 -101001101110 charisma 78 -101001101110 blackmail 79 -101001101110 warmth 80 -101001101110 satire 81 -101001101110 humiliation 81 -101001101110 geography 81 -101001101110 schooling 81 -101001101110 discourse 81 -101001101110 pluralism 82 -101001101110 flame 83 -101001101110 sphere 83 -101001101110 peril 84 -101001101110 deeds 87 -101001101110 inefficiency 88 -101001101110 deception 88 -101001101110 memoirs 88 -101001101110 clientele 90 -101001101110 happiness 90 -101001101110 paradise 93 -101001101110 nerves 93 -101001101110 manners 93 -101001101110 prudence 93 -101001101110 complacency 96 -101001101110 terrain 98 -101001101110 viewpoint 98 -101001101110 laughter 99 -101001101110 posturing 99 -101001101110 boredom 99 -101001101110 emergencies 101 -101001101110 hypocrisy 104 -101001101110 demographics 105 -101001101110 misery 106 -101001101110 candor 107 -101001101110 patronage 108 -101001101110 darkness 108 -101001101110 entrepreneurship 110 -101001101110 muscles 110 -101001101110 thumb 111 -101001101110 ideals 112 -101001101110 realism 112 -101001101110 fervor 116 -101001101110 homework 116 -101001101110 imagery 119 -101001101110 lungs 119 -101001101110 destiny 123 -101001101110 solidarity 125 -101001101110 accent 125 -101001101110 prose 127 -101001101110 classics 128 -101001101110 conscience 129 -101001101110 offspring 130 -101001101110 throat 131 -101001101110 self-interest 131 -101001101110 socks 131 -101001101110 honesty 133 -101001101110 desperation 133 -101001101110 tongue 134 -101001101110 patriotism 135 -101001101110 brains 137 -101001101110 clarity 138 -101001101110 civilization 138 -101001101110 compassion 139 -101001101110 curiosity 141 -101001101110 knees 142 -101001101110 arrogance 143 -101001101110 lips 145 -101001101110 innocence 149 -101001101110 consciousness 150 -101001101110 reunification 152 -101001101110 despair 153 -101001101110 dignity 157 -101001101110 repression 159 -101001101110 emotion 160 -101001101110 wit 162 -101001101110 talents 164 -101001101110 conservatism 165 -101001101110 poetry 167 -101001101110 pants 168 -101001101110 ego 168 -101001101110 nationalism 174 -101001101110 shoulders 180 -101001101110 citizenship 180 -101001101110 disarray 191 -101001101110 creativity 193 -101001101110 morality 196 -101001101110 heritage 199 -101001101110 flags 201 -101001101110 jacket 202 -101001101110 ambition 202 -101001101110 fame 205 -101001101110 nonsense 209 -101001101110 ears 209 -101001101110 tears 209 -101001101110 competence 211 -101001101110 liberalism 212 -101001101110 beliefs 216 -101001101110 racism 218 -101001101110 charm 220 -101001101110 origin 221 -101001101110 isolation 224 -101001101110 liberty 236 -101001101110 greed 237 -101001101110 sovereignty 238 -101001101110 imagination 242 -101001101110 residence 245 -101001101110 diplomacy 246 -101001101110 soul 246 -101001101110 stomach 249 -101001101110 tastes 256 -101001101110 legs 261 -101001101110 credentials 263 -101001101110 dissent 264 -101001101110 socialism 282 -101001101110 shirt 295 -101001101110 turf 300 -101001101110 styles 306 -101001101110 prestige 320 -101001101110 unity 330 -101001101110 ideology 334 -101001101110 teeth 337 -101001101110 silence 345 -101001101110 pocket 345 -101001101110 capitalism 372 -101001101110 mouth 385 -101001101110 soil 421 -101001101110 humor 425 -101001101110 literature 429 -101001101110 borders 433 -101001101110 religion 454 -101001101110 pride 473 -101001101110 bed 496 -101001101110 waters 520 -101001101110 perspective 557 -101001101110 finances 576 -101001101110 rhetoric 633 -101001101110 philosophy 779 -101001101110 medicine 809 -101001101110 hair 845 -101001101110 territory 852 -101001101110 wealth 879 -101001101110 eyes 1027 -101001101110 reality 1078 -101001101110 culture 1163 -101001101110 democracy 1437 -101001101110 style 1746 -101001101110 mind 2210 -101001101110 politics 2513 -101001101110 life 7375 -101001101110 hands 3060 -1010011011110 XETA 1 -1010011011110 SMNA 1 -1010011011110 QLTYP 1 -1010011011110 MLMC 1 -1010011011110 UFF 1 -1010011011110 JASN 1 -1010011011110 ISPC 1 -1010011011110 INBK 1 -1010011011110 GRTR 1 -1010011011110 FHLPZ 1 -1010011011110 DDDI 1 -1010011011110 CWDI 1 -1010011011110 CRBI 1 -1010011011110 BNDY 1 -1010011011110 BARL 1 -1010011011110 ALDC 1 -1010011011110 TNC 1 -1010011011110 TMD 1 -1010011011110 SHD 1 -1010011011110 ECN 1 -1010011011110 AJG 1 -1010011011110 AXX 1 -1010011011110 couple-hundred 1 -1010011011110 CUS 1 -1010011011110 LCNB 1 -1010011011110 LDIC 1 -1010011011110 JOTPV 1 -1010011011110 INEL 1 -1010011011110 DLPH 1 -1010011011110 COILP 1 -1010011011110 COGNF 1 -1010011011110 BRRYA 1 -1010011011110 ADMS 1 -1010011011110 ELUXY 1 -1010011011110 TBL 1 -1010011011110 WGP 1 -1010011011110 ABY 1 -1010011011110 GAL 1 -1010011011110 KNITU 1 -1010011011110 SFGI 1 -1010011011110 RRMN 1 -1010011011110 METB 1 -1010011011110 NYCOP 1 -1010011011110 MYCO 1 -1010011011110 MCOM 1 -1010011011110 ITGN 1 -1010011011110 HRMR 1 -1010011011110 HWCD 1 -1010011011110 FFES 1 -1010011011110 ENEUV 1 -1010011011110 CHCO 1 -1010011011110 BOFR 1 -1010011011110 ADDR 1 -1010011011110 PFPPR 1 -1010011011110 NHI 1 -1010011011110 CFG 1 -1010011011110 WTOY 1 -1010011011110 TCGN 1 -1010011011110 SPMD 1 -1010011011110 RFBK 1 -1010011011110 PGEN 1 -1010011011110 CEQWI 1 -1010011011110 AMW 1 -1010011011110 FGL 1 -1010011011110 CLM 1 -1010011011110 OFC 1 -1010011011110 CRVSC 1 -1010011011110 scalper 1 -1010011011110 THD 1 -1010011011110 MIF 1 -1010011011110 MFO 1 -1010011011110 YLD 1 -1010011011110 UMBIL 1 -1010011011110 TTOI 1 -1010011011110 NMRKV 1 -1010011011110 KPTL 1 -1010011011110 JWAIA 1 -1010011011110 ISOE 1 -1010011011110 FYBR 1 -1010011011110 CTIA 1 -1010011011110 CODL 1 -1010011011110 XTX 1 -1010011011110 LLP 1 -1010011011110 KIX 1 -1010011011110 IVX 1 -1010011011110 FGI 1 -1010011011110 Default. 1 -1010011011110 INSY 1 -1010011011110 BKC 1 -1010011011110 PSB.E 1 -1010011011110 SIVB 1 -1010011011110 PSB 1 -1010011011110 DXN 1 -1010011011110 HAR 1 -1010011011110 XSCR 1 -1010011011110 LZB 1 -1010011011110 RCT 1 -1010011011110 TFTY 1 -1010011011110 TDAT 1 -1010011011110 SNLFA 1 -1010011011110 RAFI 1 -1010011011110 XRAY 1 -1010011011110 ENTC 1 -1010011011110 EESI 1 -1010011011110 ETEX 1 -1010011011110 CRLDO 1 -1010011011110 ACOL 1 -1010011011110 TRS 1 -1010011011110 LVC 1 -1010011011110 EGX 1 -1010011011110 PDG 1 -1010011011110 NMG 1 -1010011011110 XCOL 1 -1010011011110 APWRA 1 -1010011011110 LII 1 -1010011011110 BEP 1 -1010011011110 UKM 1 -1010011011110 ZNT 1 -1010011011110 Medallions 1 -1010011011110 UBSC 1 -1010011011110 RBNH 1 -1010011011110 NJSB 1 -1010011011110 MNBC 1 -1010011011110 MTWO 1 -1010011011110 HBNC 1 -1010011011110 FESX 1 -1010011011110 petioles 1 -1010011011110 ATNN 1 -1010011011110 RBNC 1 -1010011011110 MBLA 1 -1010011011110 HNGI 1 -1010011011110 MESL 1 -1010011011110 NBBS 1 -1010011011110 PLAB 1 -1010011011110 CECI 1 -1010011011110 GBLD 1 -1010011011110 LABL 1 -1010011011110 MCAWA 1 -1010011011110 IFED 1 -1010011011110 INCL 1 -1010011011110 FSNIU 1 -1010011011110 CPBI 1 -1010011011110 ATKM 1 -1010011011110 APOS 1 -1010011011110 PLI 1 -1010011011110 AGH 1 -1010011011110 GTV 1 -1010011011110 AXXN 1 -1010011011110 marketing-order-type 1 -1010011011110 PVNA 1 -1010011011110 CBRYA 1 -1010011011110 MFGR 1 -1010011011110 JEPS 1 -1010011011110 HRDG 1 -1010011011110 DOMN 1 -1010011011110 BTHL 1 -1010011011110 AIMG 1 -1010011011110 CCU 1 -1010011011110 ASR 1 -1010011011110 SWZ 1 -1010011011110 ACG 1 -1010011011110 ETT 1 -1010011011110 TLMD 1 -1010011011110 15-feet 1 -1010011011110 FSHG 1 -1010011011110 PSHPZ 1 -1010011011110 VKSI 1 -1010011011110 VAFB 1 -1010011011110 ROYG 1 -1010011011110 PVSA 1 -1010011011110 LSNB 1 -1010011011110 2.3-16 1 -1010011011110 HRHC 1 -1010011011110 DNNY 1 -1010011011110 FFKY 1 -1010011011110 CPSX 1 -1010011011110 NSB 1 -1010011011110 BBY 1 -1010011011110 tub. 1 -1010011011110 UCOA 1 -1010011011110 TUHC 1 -1010011011110 PFDC 1 -1010011011110 PDLPY 1 -1010011011110 MICA 1 -1010011011110 HIGB 1 -1010011011110 EFSB 1 -1010011011110 CKSB 1 -1010011011110 HDS 1 -1010011011110 MNT 1 -1010011011110 DDRG 1 -1010011011110 MGP 1 -1010011011110 PNET 1 -1010011011110 PRCO 1 -1010011011110 PFPF 1 -1010011011110 ONBK 1 -1010011011110 MIDD 1 -1010011011110 FSCB 1 -1010011011110 EVRX 1 -1010011011110 ECLAY 1 -1010011011110 CGRP 1 -1010011011110 CELG 1 -1010011011110 CIG 1 -1010011011110 threefifths 1 -1010011011110 DYAN 1 -1010011011110 80-311 1 -1010011011110 NAIG 1 -1010011011110 OPTX 1 -1010011011110 IBGI 1 -1010011011110 HORL 1 -1010011011110 FICI 1 -1010011011110 EBKC 1 -1010011011110 CSOF 1 -1010011011110 CNMD 1 -1010011011110 CCL 1 -1010011011110 AHT 1 -1010011011110 SAH 1 -1010011011110 GOB 1 -1010011011110 AMM 1 -1010011011110 WWGPY 1 -1010011011110 SWIS 1 -1010011011110 VMORZ 1 -1010011011110 LMRK 1 -1010011011110 DFSE 1 -1010011011110 NGAS 1 -1010011011110 ADTLY 1 -1010011011110 SYI 1 -1010011011110 KX 1 -1010011011110 MVF 1 -1010011011110 MMA.WI 1 -1010011011110 HTG 1 -1010011011110 DSR 1 -1010011011110 TBY 1 -1010011011110 AAF 1 -1010011011110 AMO 1 -1010011011110 combustor 1 -1010011011110 line-ups 1 -1010011011110 SIER 1 -1010011011110 SLFX 1 -1010011011110 MRAC 1 -1010011011110 CNPGF 1 -1010011011110 ACN 1 -1010011011110 YLT 1 -1010011011110 multi-wall 1 -1010011011110 MMSTE 1 -1010011011110 TUXX. 1 -1010011011110 QS/16 1 -1010011011110 SAYPV 1 -1010011011110 BAIB 1 -1010011011110 FBD 1 -1010011011110 SOV 1 -1010011011110 WLM 1 -1010011011110 XIM 1 -1010011011110 PRDEV 1 -1010011011110 SEEBV 1 -1010011011110 calamine 1 -1010011011110 WWTK 1 -1010011011110 TGDFV 1 -1010011011110 TWRXV 1 -1010011011110 MDEV 1 -1010011011110 CLDRP 1 -1010011011110 CMLE 1 -1010011011110 WOI 1 -1010011011110 WLRF 1 -1010011011110 RM 1 -1010011011110 CYM 1 -1010011011110 BKF 1 -1010011011110 ALM 1 -1010011011110 SCH 1 -1010011011110 SOED 1 -1010011011110 PTAC 1 -1010011011110 NRTN 1 -1010011011110 IMKTA 1 -1010011011110 HIVT 1 -1010011011110 ETRC 1 -1010011011110 DPHZ 1 -1010011011110 CSBC 1 -1010011011110 CNTX 1 -1010011011110 CAMB 1 -1010011011110 ARBC 1 -1010011011110 ELB 1 -1010011011110 luxury-import 1 -1010011011110 premed 1 -1010011011110 VGINY 1 -1010011011110 IIVI 1 -1010011011110 SWVA 1 -1010011011110 INVN 1 -1010011011110 HHBX 1 -1010011011110 FASN 1 -1010011011110 DSMI 1 -1010011011110 CAMBY 1 -1010011011110 ADTX 1 -1010011011110 NLP 1 -1010011011110 LIG 1 -1010011011110 WOV 1 -1010011011110 SUGR 1 -1010011011110 PSPA 1 -1010011011110 GPRO 1 -1010011011110 GARN 1 -1010011011110 FSCC 1 -1010011011110 FLEX 1 -1010011011110 CNCAA 1 -1010011011110 ANSL 1 -1010011011110 AAICA 1 -1010011011110 TEV 1 -1010011011110 AHH 1 -1010011011110 glass-and-leather-furnished 1 -1010011011110 QLTIF 1 -1010011011110 OFII 1 -1010011011110 SZD 1 -1010011011110 VKC 1 -1010011011110 GIT 1 -1010011011110 CM 1 -1010011011110 RTG 1 -1010011011110 RODS 1 -1010011011110 DNM 1 -1010011011110 DCM 1 -1010011011110 BZR 1 -1010011011110 KTF 1 -1010011011110 TLT 1 -1010011011110 SOFS 1 -1010011011110 TOMKY 1 -1010011011110 MTBS 1 -1010011011110 LERYU 1 -1010011011110 LERYW 1 -1010011011110 LERY 1 -1010011011110 GGNS 1 -1010011011110 VSLF 1 -1010011011110 LOGC 1 -1010011011110 advices 1 -1010011011110 WNDTW 1 -1010011011110 WNDT 1 -1010011011110 UNMAA 1 -1010011011110 SOBK 1 -1010011011110 BRG 1 -1010011011110 SKCH 1 -1010011011110 PHBK 1 -1010011011110 LPLI 1 -1010011011110 ITIC 1 -1010011011110 HESI 1 -1010011011110 FFKT 1 -1010011011110 CRPG 1 -1010011011110 AFCX 1 -1010011011110 INP 1 -1010011011110 FTK 1 -1010011011110 METR 1 -1010011011110 EDGC 1 -1010011011110 DXYN 1 -1010011011110 AVFCP 1 -1010011011110 RBK 1 -1010011011110 WSFS 1 -1010011011110 SEASU 1 -1010011011110 SEASW 1 -1010011011110 SEAS 1 -1010011011110 PCSI 1 -1010011011110 RARB 1 -1010011011110 SAFM 1 -1010011011110 SPBC 1 -1010011011110 TOPP 1 -1010011011110 WBNC 1 -1010011011110 RIE 1 -1010011011110 ATTWY 1 -1010011011110 CNBKA 1 -1010011011110 CHTB 1 -1010011011110 DTCI 1 -1010011011110 CVGT 1 -1010011011110 WHI 1 -1010011011110 RTP 1 -1010011011110 IOT 1 -1010011011110 IOTWS 1 -1010011011110 KEC 1 -1010011011110 PXR 1 -1010011011110 MNPI 1 -1010011011110 NELL 1 -1010011011110 NJST 1 -1010011011110 ONPR 1 -1010011011110 DMIC 1 -1010011011110 FWNY 1 -1010011011110 JAYJ 1 -1010011011110 LTIZ 1 -1010011011110 ZBSTU 1 -1010011011110 ZBST 1 -1010011011110 WBST 1 -1010011011110 TRUS 1 -1010011011110 SGOPP 1 -1010011011110 PLTZC 1 -1010011011110 PAHC 1 -1010011011110 MAYF 1 -1010011011110 MAKL 1 -1010011011110 LEXB 1 -1010011011110 LNBK 1 -1010011011110 IDEL 1 -1010011011110 BTCI 1 -1010011011110 ALWS 1 -1010011011110 AARN 1 -1010011011110 PMR 1 -1010011011110 MKE 1 -1010011011110 MNH 1 -1010011011110 FKL 1 -1010011011110 HNT 1 -1010011011110 IMD 1 -1010011011110 AQM 1 -1010011011110 DN3000 1 -1010011011110 skittered 1 -1010011011110 4-256 1 -1010011011110 VFSL 1 -1010011011110 RFBI 1 -1010011011110 MBSX 1 -1010011011110 IFSL 1 -1010011011110 TFSB 1 -1010011011110 EAGL 1 -1010011011110 DLWD 1 -1010011011110 CCTVY 1 -1010011011110 BOFI 1 -1010011011110 BAPO 1 -1010011011110 CHP 1 -1010011011110 BSL 1 -1010011011110 HFOX 1 -1010011011110 FEDF 1 -1010011011110 POWR 1 -1010011011110 PAWN 1 -1010011011110 AMJX 1 -1010011011110 BLV 1 -1010011011110 SIZ 1 -1010011011110 RFED 1 -1010011011110 PRTK 1 -1010011011110 RFSB 1 -1010011011110 PNRE 1 -1010011011110 CONH 1 -1010011011110 CFNH 1 -1010011011110 CTSTO 1 -1010011011110 AMBJP 1 -1010011011110 ATAXZ 1 -1010011011110 FIASCO 1 -1010011011110 ELEX 1 -1010011011110 EXLN 1 -1010011011110 RNRC 1 -1010011011110 EMF 1 -1010011011110 ASBI 1 -1010011011110 CANX 1 -1010011011110 CAII 1 -1010011011110 SSAX 1 -1010011011110 IGC 1 -1010011011110 KFVPR 1 -1010011011110 KFV 1 -1010011011110 AHE 1 -1010011011110 HMT 1 -1010011011110 ABX 1 -1010011011110 TSK 1 -1010011011110 JIB 1 -1010011011110 CVT 1 -1010011011110 FNF 1 -1010011011110 MRGO 1 -1010011011110 ALFB 1 -1010011011110 FGSV 1 -1010011011110 BSBX 1 -1010011011110 FFOD 1 -1010011011110 biologists. 1 -1010011011110 androgen 1 -1010011011110 YCSL 1 -1010011011110 WCBK 1 -1010011011110 MOKN 1 -1010011011110 FRML 1 -1010011011110 FTSI 1 -1010011011110 FFWV 1 -1010011011110 FFMA 1 -1010011011110 CAFS 1 -1010011011110 BLU 1 -1010011011110 DWW 1 -1010011011110 PRX 1 -1010011011110 GSBK 1 -1010011011110 FFNS 1 -1010011011110 FBNC 1 -1010011011110 DVRS 1 -1010011011110 DAVX 1 -1010011011110 LABB 1 -1010011011110 RVR 1 -1010011011110 HKF 1 -1010011011110 DRM 1 -1010011011110 SY 1 -1010011011110 WFOR 1 -1010011011110 SDSB 1 -1010011011110 SHRP 1 -1010011011110 SQNT 1 -1010011011110 PPSA 1 -1010011011110 MIKL 1 -1010011011110 HQH 1 -1010011011110 APB 1 -1010011011110 VALC 1 -1010011011110 SBFS 1 -1010011011110 REXW 1 -1010011011110 FSPG 1 -1010011011110 CACOA 1 -1010011011110 HRK 1 -1010011011110 regular-curriculum 1 -1010011011110 JOL 1 -1010011011110 DEVC 1 -1010011011110 EMPR 1 -1010011011110 ENVI 1 -1010011011110 MTCL 1 -1010011011110 HHC 1 -1010011011110 SZF 1 -1010011011110 SZFPR 1 -1010011011110 WSBC 1 -1010011011110 Mediterraneans 1 -1010011011110 OEN 1 -1010011011110 RK 1 -1010011011110 TDM 1 -1010011011110 TSY 1 -1010011011110 VLANS 1 -1010011011110 SSBA 1 -1010011011110 GRFS 1 -1010011011110 FSHGV 1 -1010011011110 FCTN 1 -1010011011110 FFSW 1 -1010011011110 DEER 1 -1010011011110 FURSA 1 -1010011011110 AMEA 1 -1010011011110 AIRSY 1 -1010011011110 PTG 1 -1010011011110 EGH 1 -1010011011110 COQ 1 -1010011011110 Navarone 1 -1010011011110 MGQ 1 -1010011011110 CWTS 1 -1010011011110 BFSB 1 -1010011011110 APBI 1 -1010011011110 ESN 1 -1010011011110 ATW 1 -1010011011110 CRR 1 -1010011011110 XLGX 1 -1010011011110 UNSA 1 -1010011011110 QFCI 1 -1010011011110 PRXS 1 -1010011011110 PXRE 1 -1010011011110 OFSB 1 -1010011011110 NHER 1 -1010011011110 MSAM 1 -1010011011110 FIRF 1 -1010011011110 AMQ 1 -1010011011110 4D 1 -1010011011110 GPAK 1 -1010011011110 OSBN 1 -1010011011110 PSBX 1 -1010011011110 WFSB 1 -1010011011110 CPX 1 -1010011011110 KJI 1 -1010011011110 CLR 1 -1010011011110 BMCC 1 -1010011011110 CMBK 1 -1010011011110 WCAR 1 -1010011011110 HFSB 1 -1010011011110 ACTA 1 -1010011011110 ABKR 1 -1010011011110 AMPI 1 -1010011011110 GES 1 -1010011011110 FBF 1 -1010011011110 PHG 1 -1010011011110 WLMN 1 -1010011011110 UBSI 1 -1010011011110 SWTX 1 -1010011011110 LJSI 1 -1010011011110 SSLN 1 -1010011011110 PRFT 1 -1010011011110 OSIC 1 -1010011011110 NSRU 1 -1010011011110 MFSL 1 -1010011011110 IMMCO 1 -1010011011110 HCCC 1 -1010011011110 confiscations 1 -1010011011110 GATW 1 -1010011011110 FCTR 1 -1010011011110 DESI 1 -1010011011110 CRBN 1 -1010011011110 BEZRY 1 -1010011011110 AREL 1 -1010011011110 RSE 1 -1010011011110 BPP 1 -1010011011110 GLX 1 -1010011011110 EVSB 1 -1010011011110 ETCO 1 -1010011011110 PHC 1 -1010011011110 WALS 1 -1010011011110 VLCM 1 -1010011011110 UNEWY. 1 -1010011011110 UNTEU 1 -1010011011110 SGHB 1 -1010011011110 PICBF 1 -1010011011110 MNRTS 1 -1010011011110 HRLD 1 -1010011011110 HARL 1 -1010011011110 FFWP 1 -1010011011110 ESSF 1 -1010011011110 VIA 1 -1010011011110 INT 1 -1010011011110 TEF 1 -1010011011110 RKY 1 -1010011011110 IMPX 1 -1010011011110 MPAC 1 -1010011011110 FY.WS 1 -1010011011110 CBWA 1 -1010011011110 1654 1 -1010011011110 MFLR 1 -1010011011110 HNCO 1 -1010011011110 GBBS 1 -1010011011110 FSFI 1 -1010011011110 THI 1 -1010011011110 TOC 1 -1010011011110 GWA 1 -1010011011110 abnormalites 1 -1010011011110 CGAS 1 -1010011011110 CXIM 1 -1010011011110 BDGT 1 -1010011011110 BHIAP 1 -1010011011110 ALCI 1 -1010011011110 LMGWI 1 -1010011011110 VOX 1 -1010011011110 PYE 1 -1010011011110 PGR 1 -1010011011110 WHOO 1 -1010011011110 KMAG 1 -1010011011110 FGBC 1 -1010011011110 PR.P. 1 -1010011011110 PR.B. 1 -1010011011110 SLCPV 1 -1010011011110 12-hour-a-day 1 -1010011011110 WMRKV 1 -1010011011110 ITANV 1 -1010011011110 FLIC 1 -1010011011110 DCPI 1 -1010011011110 CRES 1 -1010011011110 DOZEZ 1 -1010011011110 BAPYZ 1 -1010011011110 WAB 1 -1010011011110 card-backed 1 -1010011011110 electrocoating 1 -1010011011110 SRSL 1 -1010011011110 FFSD 1 -1010011011110 TWT 1 -1010011011110 ULT 1 -1010011011110 COCA 1 -1010011011110 six-story-high 1 -1010011011110 SUA 1 -1010011011110 DNP 1 -1010011011110 WASC 1 -1010011011110 PRIVU 1 -1010011011110 OCOMA 1 -1010011011110 NETX 1 -1010011011110 MDTC 1 -1010011011110 INSMA 1 -1010011011110 HMSD 1 -1010011011110 GSOF 1 -1010011011110 WWBC 1 -1010011011110 NRES 1 -1010011011110 FFSL 1 -1010011011110 FFPR 1 -1010011011110 COTG 1 -1010011011110 CISA 1 -1010011011110 SYS 1 -1010011011110 BLD 1 -1010011011110 WHTI 1 -1010011011110 QZMGF 1 -1010011011110 MCON 1 -1010011011110 BULKF 1 -1010011011110 WRS 1 -1010011011110 SNO 1 -1010011011110 WINNU 1 -1010011011110 RBPAA 1 -1010011011110 PIFI 1 -1010011011110 GLTX 1 -1010011011110 FFS 1 -1010011011110 intended. 1 -1010011011110 FTL 1 -1010011011110 MPP 1 -1010011011110 RIV 1 -1010011011110 MMT 1 -1010011011110 DFP.E. 1 -1010011011110 TMAX 1 -1010011011110 FFHP 1 -1010011011110 MSBI 1 -1010011011110 TIRI 1 -1010011011110 MMSB 1 -1010011011110 LEIX 1 -1010011011110 LLSL 1 -1010011011110 HSPA 1 -1010011011110 CPST 1 -1010011011110 AZB 1 -1010011011110 PRZ 1 -1010011011110 UHT 1 -1010011011110 EQM 1 -1010011011110 SVM 1 -1010011011110 VWBC 1 -1010011011110 TLMN 1 -1010011011110 SGSI 1 -1010011011110 QUIK 1 -1010011011110 MTCH 1 -1010011011110 LOYC 1 -1010011011110 INVS 1 -1010011011110 IGSI 1 -1010011011110 GGLF 1 -1010011011110 WDH 1 -1010011011110 PMP 1 -1010011011110 HRP 1 -1010011011110 FCHT 1 -1010011011110 FFAL 1 -1010011011110 DUSA 1 -1010011011110 CSGI 1 -1010011011110 CSBF 1 -1010011011110 CEDR 1 -1010011011110 CBTF 1 -1010011011110 BOSA 1 -1010011011110 BENJ 1 -1010011011110 ALNT 1 -1010011011110 TWN 1 -1010011011110 IGN 1 -1010011011110 HBE 1 -1010011011110 FRL 1 -1010011011110 STNIB 1 -1010011011110 CDMA 1 -1010011011110 BKMD 1 -1010011011110 MCH 1 -1010011011110 NNM 1 -1010011011110 FCX 1 -1010011011110 fax-mailing 1 -1010011011110 IHK 1 -1010011011110 NIIS 1 -1010011011110 RPAPF 1 -1010011011110 APGI 1 -1010011011110 MNI 1 -1010011011110 BIR 1 -1010011011110 LTG 1 -1010011011110 TSQ 1 -1010011011110 TNN 1 -1010011011110 BFSI 1 -1010011011110 CBKI 1 -1010011011110 SGHI 1 -1010011011110 RESP 1 -1010011011110 BFX 1 -1010011011110 RMR 1 -1010011011110 POBS 1 -1010011011110 BID. 1 -1010011011110 Goskomizdat 1 -1010011011110 AZTR 1 -1010011011110 BFEN 1 -1010011011110 BAW 1 -1010011011110 MDW 1 -1010011011110 MGCPV 1 -1010011011110 MMRH 1 -1010011011110 FGBPZ 1 -1010011011110 TRR 1 -1010011011110 RSR.WI 1 -1010011011110 STLTF 1 -1010011011110 KNCI 1 -1010011011110 KCSG 1 -1010011011110 six-hole 1 -1010011011110 GZEA 1 -1010011011110 FFUT 1 -1010011011110 PMBS 1 -1010011011110 VREOS 1 -1010011011110 HTR 1 -1010011011110 RCHFA 1 -1010011011110 RELY 1 -1010011011110 FRMG 1 -1010011011110 BMRG 1 -1010011011110 CPF 1 -1010011011110 PIF 1 -1010011011110 HTK 1 -1010011011110 APPB 1 -1010011011110 VCOR 1 -1010011011110 OST 1 -1010011011110 MIGI 1 -1010011011110 SCHCP 1 -1010011011110 TND.B 1 -1010011011110 ADVN 1 -1010011011110 TT 1 -1010011011110 CYS 1 -1010011011110 TLP 1 -1010011011110 NYBC 1 -1010011011110 FSVB 1 -1010011011110 FFHS 1 -1010011011110 COFI 1 -1010011011110 CISB 1 -1010011011110 FSAK 1 -1010011011110 ICAR 1 -1010011011110 TJCK 1 -1010011011110 RHPOY 1 -1010011011110 MHCIV 1 -1010011011110 GRV 1 -1010011011110 Namibian-independence 1 -1010011011110 HRC 1 -1010011011110 BVSI 1 -1010011011110 SNV 1 -1010011011110 MBK 1 -1010011011110 AIB.PR 1 -1010011011110 OMS 1 -1010011011110 SEH 1 -1010011011110 SEHA 1 -1010011011110 MALC 1 -1010011011110 VITA 1 -1010011011110 STRU 1 -1010011011110 BRL 1 -1010011011110 MIN 1 -1010011011110 mediumship 1 -1010011011110 fast-curing 1 -1010011011110 HFSA 1 -1010011011110 FES 1 -1010011011110 GIM 1 -1010011011110 DXT 1 -1010011011110 IVT 1 -1010011011110 selfdestructs 1 -1010011011110 MGN 1 -1010011011110 GVT 1 -1010011011110 MXIM 1 -1010011011110 NSS 1 -1010011011110 AKRN 1 -1010011011110 ARB 1 -1010011011110 NHR 1 -1010011011110 CLFI 1 -1010011011110 CNNR 1 -1010011011110 BONEP 1 -1010011011110 CTH 1 -1010011011110 GFCT 1 -1010011011110 CCXLA 1 -1010011011110 SKN.E. 1 -1010011011110 PGU 1 -1010011011110 EAG 1 -1010011011110 BBK 1 -1010011011110 KHI 1 -1010011011110 GLK 1 -1010011011110 enumerator 1 -1010011011110 21,577 1 -1010011011110 MOLE 1 -1010011011110 AVDL 1 -1010011011110 ALTR 1 -1010011011110 CGO 1 -1010011011110 SUS 1 -1010011011110 BZF 1 -1010011011110 PFLY 1 -1010011011110 NEB 1 -1010011011110 USWNA 1 -1010011011110 Pergament 1 -1010011011110 FTSB 1 -1010011011110 WPPGY 1 -1010011011110 PKVL 1 -1010011011110 radio-cassette-tape 1 -1010011011110 FTU 1 -1010011011110 RXN 1 -1010011011110 UFN 1 -1010011011110 BYX 1 -1010011011110 APCC 1 -1010011011110 RFPCK 1 -1010011011110 546-mile 1 -1010011011110 MBY 1 -1010011011110 MRM 1 -1010011011110 COR 1 -1010011011110 BOF 1 -1010011011110 WCP 1 -1010011011110 ZDC 1 -1010011011110 EAFC 1 -1010011011110 OSBW 1 -1010011011110 RATNY 1 -1010011011110 LBC 1 -1010011011110 PFSIP 1 -1010011011110 STEC 1 -1010011011110 TIBI 1 -1010011011110 ASFN 1 -1010011011110 CTY 1 -1010011011110 WYS 1 -1010011011110 KGT 1 -1010011011110 MFT 1 -1010011011110 CIF 1 -1010011011110 AEZNS 1 -1010011011110 BBGS 1 -1010011011110 EBCI 1 -1010011011110 GLMA 1 -1010011011110 HOMG 1 -1010011011110 BKT 1 -1010011011110 NBKC 1 -1010011011110 TUSC 1 -1010011011110 HCF 1 -1010011011110 ALU 1 -1010011011110 PDN 1 -1010011011110 CWP 1 -1010011011110 OIF 1 -1010011011110 10-hole 1 -1010011011110 AOF 1 -1010011011110 IGF 1 -1010011011110 SFY 1 -1010011011110 UTRX 1 -1010011011110 STOT 1 -1010011011110 NVLS 1 -1010011011110 BMCS 1 -1010011011110 KE 1 -1010011011110 BHO 1 -1010011011110 quaility 1 -1010011011110 328s 1 -1010011011110 MO 1 -1010011011110 line-centered 1 -1010011011110 WSBXV 1 -1010011011110 ECGI 1 -1010011011110 CHFC 1 -1010011011110 CFED 1 -1010011011110 SZG 1 -1010011011110 SZG.PR 1 -1010011011110 URT 1 -1010011011110 LICF 1 -1010011011110 NERX 1 -1010011011110 SLTI 1 -1010011011110 FAXM 1 -1010011011110 EOG 1 -1010011011110 MDCO 1 -1010011011110 GENIP 1 -1010011011110 EGLE 1 -1010011011110 tire-development 1 -1010011011110 OPI 1 -1010011011110 SNF 1 -1010011011110 PY 1 -1010011011110 RRR 1 -1010011011110 AKLM 1 -1010011011110 DELL 1 -1010011011110 HVDK 1 -1010011011110 INDX 1 -1010011011110 CNVPr 1 -1010011011110 pure. 1 -1010011011110 BRIK 1 -1010011011110 KPE 1 -1010011011110 CCP.WI 1 -1010011011110 KEI 1 -1010011011110 DEMP 1 -1010011011110 FBDX 1 -1010011011110 EWSCA 1 -1010011011110 HOMF 1 -1010011011110 9015PF 1 -1010011011110 ZSEV 1 -1010011011110 ISR 1 -1010011011110 GSF 1 -1010011011110 SBL 1 -1010011011110 APK 1 -1010011011110 PBK 1 -1010011011110 STT 1 -1010011011110 HRN 1 -1010011011110 HEBC 1 -1010011011110 BZMT 1 -1010011011110 PBK.A. 1 -1010011011110 PGT 1 -1010011011110 CLDRV 1 -1010011011110 LFSA 1 -1010011011110 PTEC 1 -1010011011110 CMU 1 -1010011011110 ABGA 1 -1010011011110 BMEEF 1 -1010011011110 FITZ 1 -1010011011110 LCO 1 -1010011011110 CYT 1 -1010011011110 CSM 1 -1010011011110 PBCT 1 -1010011011110 NHLI 1 -1010011011110 ENZ 1 -1010011011110 PRW 1 -1010011011110 VLP 1 -1010011011110 bamboo-slatted 1 -1010011011110 NHDI 1 -1010011011110 liveliness 2 -1010011011110 DLX 2 -1010011011110 16s 2 -1010011011110 manse 2 -1010011011110 change-over 2 -1010011011110 NBB 2 -1010011011110 ECP 2 -1010011011110 1,335 2 -1010011011110 EHP 2 -1010011011110 power-users 2 -1010011011110 SFSL 2 -1010011011110 ELE 2 -1010011011110 SUR 2 -1010011011110 AFPFZ 2 -1010011011110 BNBC 2 -1010011011110 MSHK 2 -1010011011110 ODEP 2 -1010011011110 UTH 2 -1010011011110 HFS 2 -1010011011110 PWN 2 -1010011011110 quartermaster 2 -1010011011110 ACP 2 -1010011011110 VSBC 2 -1010011011110 40000 2 -1010011011110 card-sized 2 -1010011011110 CNBL 2 -1010011011110 TIF 2 -1010011011110 FIF 2 -1010011011110 XTON 2 -1010011011110 memorializes 2 -1010011011110 troposphere 2 -1010011011110 ENRGB 2 -1010011011110 FST 2 -1010011011110 CYC 2 -1010011011110 megatonnage 2 -1010011011110 12-packs 2 -1010011011110 SAF 2 -1010011011110 NUV 2 -1010011011110 popemobile 2 -1010011011110 Regans 2 -1010011011110 FLAG 2 -1010011011110 slow-mo 2 -1010011011110 rollouts 2 -1010011011110 CAF 3 -1010011011110 improvidently 3 -1010011011110 PTC 3 -1010011011110 synchronization 3 -1010011011110 850S 3 -1010011011110 CMP 3 -1010011011110 d-STROY 3 -1010011011110 ALT 3 -1010011011110 Urge 3 -1010011011110 enumerators 3 -1010011011110 epithelioma 3 -1010011011110 PCF 3 -1010011011110 TGL 3 -1010011011110 Appalachians 3 -1010011011110 treaty-making 3 -1010011011110 easings 4 -1010011011110 USF 4 -1010011011110 fishers 4 -1010011011110 parchment 4 -1010011011110 card-activated 4 -1010011011110 left-field 4 -1010011011110 Qingdao 5 -1010011011110 14se 5 -1010011011110 parentheses 5 -1010011011110 redecorating 5 -1010011011110 porches 5 -1010011011110 zapper 5 -1010011011110 chiten 5 -1010011011110 SODA 6 -1010011011110 line-up 7 -1010011011110 3100 9 -1010011011110 lockstep 13 -1010011011110 bunches 14 -1010011011110 APV 16 -1010011011110 remission 20 -1010011011110 Pursuit 25 -1010011011110 4000 26 -1010011011110 tow 36 -1010011011110 tie-in 42 -1010011011110 changeover 79 -1010011011110 concert 545 -1010011011110 comparison 853 -1010011011110 card 1688 -1010011011110 front 2310 -1010011011110 line 8710 -10100110111110 directon 1 -10100110111110 Rajaie-Khorassani 1 -10100110111110 247,269 1 -10100110111110 MAIM 1 -10100110111110 Reaganbasher 1 -10100110111110 notwithstanding. 1 -10100110111110 quencher 1 -10100110111110 beaten-dog 1 -10100110111110 pass-law 1 -10100110111110 100-million-strong 1 -10100110111110 Brooklynites 1 -10100110111110 scabbard 1 -10100110111110 lipid-based 1 -10100110111110 size-18 1 -10100110111110 wingers 1 -10100110111110 opthalmology 1 -10100110111110 sedum-wise 1 -10100110111110 business-consulting 1 -10100110111110 fielders 1 -10100110111110 comedy-melodramas 1 -10100110111110 circumvolving 1 -10100110111110 pre-LBO 1 -10100110111110 synaptic 1 -10100110111110 7110 1 -10100110111110 junk-heap 1 -10100110111110 sesion 1 -10100110111110 DNA-containing 1 -10100110111110 sepia-toned 1 -10100110111110 anti-nicotine 1 -10100110111110 back-through-the-looking-glass 1 -10100110111110 muscle-destroying 1 -10100110111110 Ascap-style 1 -10100110111110 Nicolette 1 -10100110111110 Gestapo-style 1 -10100110111110 8400 1 -10100110111110 Nabulsi 1 -10100110111110 Finnish-Americans 1 -10100110111110 lactation-prevention 1 -10100110111110 coffee- 1 -10100110111110 conundrums 1 -10100110111110 one-item 1 -10100110111110 ageements 1 -10100110111110 Etch-a-Sketch 1 -10100110111110 intramonth 1 -10100110111110 super-status 1 -10100110111110 limbo-mired 1 -10100110111110 67,783 1 -10100110111110 survivals 1 -10100110111110 ely 1 -10100110111110 Khoury 1 -10100110111110 mega-contests 1 -10100110111110 cavern 2 -10100110111110 reenactments 2 -10100110111110 payments. 2 -10100110111110 two-seaters 2 -10100110111110 ovary 2 -10100110111110 tricolor 2 -10100110111110 showmen 2 -10100110111110 Cooney-Spinks 2 -10100110111110 tiddlywinks 2 -10100110111110 movies. 2 -10100110111110 stone. 2 -10100110111110 hemispheres 2 -10100110111110 Milds 2 -10100110111110 tentacle 2 -10100110111110 hospital-supervised 2 -10100110111110 Berengaria 2 -10100110111110 worldclass 2 -10100110111110 plainness 2 -10100110111110 Sacahuista 2 -10100110111110 minefields 2 -10100110111110 hobbyhorses 2 -10100110111110 tarmacs 2 -10100110111110 nonregulation 2 -10100110111110 anticholinesterase 2 -10100110111110 eyelid 2 -10100110111110 dogmatists 2 -10100110111110 pamphleteers 2 -10100110111110 new-job 2 -10100110111110 I-95 2 -10100110111110 seriatim 2 -10100110111110 burn-through 2 -10100110111110 chinooks 2 -10100110111110 hypoxia 2 -10100110111110 ameliorating 3 -10100110111110 another. 3 -10100110111110 Louisianians 3 -10100110111110 watermark 3 -10100110111110 uppercut 3 -10100110111110 quilters 3 -10100110111110 sexagenarian 3 -10100110111110 fifths 3 -10100110111110 Damiel 3 -10100110111110 Ashdown 3 -10100110111110 stashes 3 -10100110111110 suppressant 4 -10100110111110 isles 4 -10100110111110 cartographers 4 -10100110111110 pachyderm 4 -10100110111110 garde 4 -10100110111110 stiletto 4 -10100110111110 amusements 4 -10100110111110 demigods 5 -10100110111110 witticisms 5 -10100110111110 stridency 6 -10100110111110 disenfranchisement 7 -10100110111110 hems 7 -10100110111110 mid-week 7 -10100110111110 idiocy 7 -10100110111110 proprietorships 7 -10100110111110 forearm 8 -10100110111110 Euromissiles 8 -10100110111110 Wapping 8 -10100110111110 staircases 9 -10100110111110 accouterments 9 -10100110111110 conqueror 10 -10100110111110 crutches 12 -10100110111110 epithet 12 -10100110111110 precept 13 -10100110111110 climes 15 -10100110111110 amplification 25 -10100110111110 flank 49 -10100110111110 cheek 67 -10100110111110 pole 88 -10100110111110 ear 216 -10100110111110 wing 529 -10100110111110 location 728 -10100110111110 overnight 1145 -10100110111110 words 2071 -10100110111110 direction 2163 -10100110111110 hand 3870 -10100110111110 side 4137 -10100110111111 crocks 1 -10100110111111 contract. 1 -10100110111111 durations 1 -10100110111111 disclipline 1 -10100110111111 REWARDS 1 -10100110111111 leit-motifs 1 -10100110111111 mercy. 1 -10100110111111 arbritrage 1 -10100110111111 CLIMATE 1 -10100110111111 SHOULDERS 1 -10100110111111 UNACCEPTABLE 1 -10100110111111 linen-decked 1 -10100110111111 pre-testing 1 -10100110111111 debauch 1 -10100110111111 schlocky 1 -10100110111111 HECKLED 1 -10100110111111 cockling 1 -10100110111111 view-as 1 -10100110111111 BUNCH 1 -10100110111111 pockets. 1 -10100110111111 Juyne 1 -10100110111111 HOSPITALIZED 1 -10100110111111 craftsmanship. 1 -10100110111111 hoojee 1 -10100110111111 cartouches 1 -10100110111111 copulation 1 -10100110111111 permisson 1 -10100110111111 SETBACKS 1 -10100110111111 Ribat 1 -10100110111111 Labangan 1 -10100110111111 collpase 1 -10100110111111 JEERED 1 -10100110111111 most-widely 1 -10100110111111 deaf. 1 -10100110111111 marinus 1 -10100110111111 slump. 1 -10100110111111 bemuses 1 -10100110111111 REPLACED 1 -10100110111111 EVE 1 -10100110111111 CAPTIONING 1 -10100110111111 haul. 1 -10100110111111 hairspray 1 -10100110111111 braggin 1 -10100110111111 par-fours 1 -10100110111111 INTRODUCED 1 -10100110111111 over-qualification 1 -10100110111111 broad-base 1 -10100110111111 DOUGH 1 -10100110111111 gines 1 -10100110111111 symtoms 1 -10100110111111 carrybacks 1 -10100110111111 FILES 1 -10100110111111 super-highways 1 -10100110111111 interests-sometimes 1 -10100110111111 Nakhodka 1 -10100110111111 Burma-Shave. 1 -10100110111111 Tuckers 1 -10100110111111 BREWERS 1 -10100110111111 Al-Osboa 1 -10100110111111 Croute 1 -10100110111111 tipper 1 -10100110111111 CONVERTS 2 -10100110111111 game-of-the-week 2 -10100110111111 room. 2 -10100110111111 anesthetics 2 -10100110111111 virus-free 2 -10100110111111 schoolmasters 2 -10100110111111 Sothebys 2 -10100110111111 MINE 2 -10100110111111 off-period 2 -10100110111111 docents 2 -10100110111111 NOTIFIED 2 -10100110111111 mini-constitution 2 -10100110111111 one-worlder 2 -10100110111111 Hibor 2 -10100110111111 Equitrack 2 -10100110111111 compensation. 2 -10100110111111 sheet. 2 -10100110111111 CHOSEN 2 -10100110111111 kopeck 2 -10100110111111 quintuples 2 -10100110111111 Legliz 2 -10100110111111 guns. 2 -10100110111111 roughhousing 2 -10100110111111 flinching 2 -10100110111111 date. 2 -10100110111111 money-launderers 2 -10100110111111 BARRED 2 -10100110111111 earn-out 2 -10100110111111 APPLICANTS 2 -10100110111111 jambalaya 3 -10100110111111 droop 3 -10100110111111 fugu 3 -10100110111111 workturn 3 -10100110111111 inversions 3 -10100110111111 sideburns 3 -10100110111111 melancholic 3 -10100110111111 view. 3 -10100110111111 vanities 3 -10100110111111 Morbidity 4 -10100110111111 Eisteddfod 4 -10100110111111 right. 4 -10100110111111 forethought 5 -10100110111111 johns 5 -10100110111111 passageways 5 -10100110111111 spittoon 5 -10100110111111 enchilada 6 -10100110111111 lead-time 6 -10100110111111 cabooses 7 -10100110111111 place. 7 -10100110111111 apoplexy 7 -10100110111111 lifters 8 -10100110111111 buffets 8 -10100110111111 mortis 8 -10100110111111 cocoons 8 -10100110111111 holster 11 -10100110111111 call-up 11 -10100110111111 shtick 11 -10100110111111 preconditions 22 -10100110111111 attribution 29 -10100110111111 masse 46 -10100110111111 shrift 46 -10100110111111 taker 52 -10100110111111 intervals 59 -10100110111111 distances 78 -10100110111111 skirts 96 -10100110111111 workweek 108 -10100110111111 overdue 294 -10100110111111 maturities 412 -10100110111111 sheets 437 -10100110111111 tenure 474 -10100110111111 merit 626 -10100110111111 fun 752 -10100110111111 rooms 872 -10100110111111 sheet 1010 -10100110111111 term 3838 -10100110111111 room 3027 -101001110000 112,883 1 -101001110000 end-point 1 -101001110000 carton-sealing 1 -101001110000 networks-three 1 -101001110000 conventional-home 1 -101001110000 rail-road 1 -101001110000 polling-place 1 -101001110000 over-stepping 1 -101001110000 10-mos. 1 -101001110000 immediate-delivery 1 -101001110000 ground-crew 1 -101001110000 creamlike 1 -101001110000 Ste.-Therese 1 -101001110000 grumpily 1 -101001110000 Lin-Art 1 -101001110000 Ripault 1 -101001110000 Byla 1 -101001110000 Romanization 1 -101001110000 baby-care 1 -101001110000 calcined 1 -101001110000 probationer 1 -101001110000 rail-making 1 -101001110000 Halocarbon 1 -101001110000 electrical-test 1 -101001110000 Glasswerke 1 -101001110000 motor-mouths 1 -101001110000 office-related 1 -101001110000 420-man 1 -101001110000 recess-fluorescent 1 -101001110000 38-plane 1 -101001110000 Slaskie 1 -101001110000 BARBECUERS 1 -101001110000 ex-psychiatric 1 -101001110000 SmithKline-Beckman 1 -101001110000 Spielberg-sized 1 -101001110000 MSG 1 -101001110000 declamations 1 -101001110000 Layered 1 -101001110000 commission-related 1 -101001110000 career-conscious 1 -101001110000 non-Given 1 -101001110000 redemeption 1 -101001110000 pedicab 1 -101001110000 glycerine 1 -101001110000 governmentheld 1 -101001110000 reposes 1 -101001110000 booze-running 1 -101001110000 PAC-donation 1 -101001110000 post-1983 1 -101001110000 9,648 1 -101001110000 tax-budget 1 -101001110000 bonnet-style 1 -101001110000 non-clerical 1 -101001110000 127,440 1 -101001110000 Technalysis 1 -101001110000 CEMENT 1 -101001110000 Neurobiology 1 -101001110000 Turell 1 -101001110000 167-day-old 1 -101001110000 devaluer 1 -101001110000 ultra-conformist 1 -101001110000 time-beating 1 -101001110000 Superiore 1 -101001110000 voting-power 1 -101001110000 Chinese-immigrant 1 -101001110000 6,689 1 -101001110000 vrycmmnty 1 -101001110000 Liberal-red 1 -101001110000 sky-divers 1 -101001110000 Japanese-grown 1 -101001110000 auto-emissions 1 -101001110000 trumpetings 1 -101001110000 amaretto 1 -101001110000 education-assistance 1 -101001110000 brain-injured 1 -101001110000 1986-four 1 -101001110000 self-scrutiny 1 -101001110000 190,000-barrel-a-day 1 -101001110000 job-holders 1 -101001110000 pre-meeting 1 -101001110000 textile-trade 1 -101001110000 GUCCI 1 -101001110000 miniwindows 1 -101001110000 intrepidly 1 -101001110000 packages-and 1 -101001110000 book-closing 1 -101001110000 network-processing 1 -101001110000 Ohbayshi 1 -101001110000 terrestrially 1 -101001110000 Helene-Curtiss 1 -101001110000 jury-consulting 1 -101001110000 powertrain-related 1 -101001110000 yeastiness 1 -101001110000 all-method 1 -101001110000 30-ship 1 -101001110000 IBM-Canada 1 -101001110000 meat-grading 1 -101001110000 639,872 1 -101001110000 Christmas-hiring 1 -101001110000 7,234 1 -101001110000 non-honeymooning 1 -101001110000 housing/federal 1 -101001110000 Syrdarya 1 -101001110000 subindex 1 -101001110000 budget-review 1 -101001110000 birth-rates 1 -101001110000 RIFTS 1 -101001110000 graduations 1 -101001110000 highly-skilled 1 -101001110000 no-nuker 1 -101001110000 3:41 1 -101001110000 unleadership-like 1 -101001110000 Okakyu 1 -101001110000 26-state 1 -101001110000 Shiite-Sunni 1 -101001110000 Lesch-Nyhan 1 -101001110000 sun-blocking 1 -101001110000 68,324 1 -101001110000 fragmentations 1 -101001110000 profit-per-ton 1 -101001110000 pesticide-residue 1 -101001110000 20,300-person 1 -101001110000 earthworks 1 -101001110000 legislative-branch 1 -101001110000 datadex 1 -101001110000 theft-deterrent 1 -101001110000 beer-can 1 -101001110000 Bovis 2 -101001110000 Navalle 2 -101001110000 virus-infected 2 -101001110000 Trippe 2 -101001110000 Especializados 2 -101001110000 floes 2 -101001110000 pregnancy-related 2 -101001110000 Unternehmen 2 -101001110000 52-47 2 -101001110000 16-to-24-year-olds 2 -101001110000 screenprint 2 -101001110000 UFA 2 -101001110000 compartmentalization 2 -101001110000 8300 3 -101001110000 cross-subsidization 3 -101001110000 HPV 3 -101001110000 income-eligibility 3 -101001110000 asceticism 3 -101001110000 veh 4 -101001110000 copper-futures 4 -101001110000 gas-tank 4 -101001110000 4868 5 -101001110000 interlock 5 -101001110000 Micaela 6 -101001110000 deliverer 6 -101001110000 completions 17 -101001110000 'n' 143 -101001110000 Werke 278 -101001110000 overtime 586 -101001110000 pollution 731 -101001110000 delivery 3629 -101001110000 traffic 2735 -1010011100010 unrestated 1 -1010011100010 bolls 1 -1010011100010 bankrupcties 1 -1010011100010 biz. 1 -1010011100010 daiquiris 1 -1010011100010 Zavodi 1 -1010011100010 insect-eating 1 -1010011100010 teat 1 -1010011100010 soup. 1 -1010011100010 re-exports-shipments 1 -1010011100010 Dip 1 -1010011100010 enemas 1 -1010011100010 bourguignon 1 -1010011100010 sizzler 1 -1010011100010 slaughterer 1 -1010011100010 pressings 1 -1010011100010 kabobs 1 -1010011100010 crucibles 1 -1010011100010 Debris 1 -1010011100010 Rischart 1 -1010011100010 air-tickets 1 -1010011100010 barrelers 1 -1010011100010 bene-bugs 1 -1010011100010 Daikyo 1 -1010011100010 extractors 1 -1010011100010 tartare 2 -1010011100010 unmined 2 -1010011100010 venomously 2 -1010011100010 copolymers 2 -1010011100010 underliner 2 -1010011100010 flexibilities 2 -1010011100010 hexaflouride 2 -1010011100010 Penta-Ocean 2 -1010011100010 filigree 2 -1010011100010 tandems 2 -1010011100010 saffron 2 -1010011100010 Thyssen-Henschel 2 -1010011100010 lifelines 2 -1010011100010 earn-outs 2 -1010011100010 methanes 2 -1010011100010 tallow 3 -1010011100010 wranglers 3 -1010011100010 tamales 3 -1010011100010 disapprobation 3 -1010011100010 cheapie 3 -1010011100010 overshipments 3 -1010011100010 thimbles 3 -1010011100010 grindings 3 -1010011100010 citizenships 3 -1010011100010 slicers 3 -1010011100010 doggedness 4 -1010011100010 turtlenecks 4 -1010011100010 carloads 4 -1010011100010 IDs 5 -1010011100010 ineffectually 5 -1010011100010 presumptions 5 -1010011100010 injectors 5 -1010011100010 bourbons 6 -1010011100010 rinds 6 -1010011100010 cookers 6 -1010011100010 alertness 6 -1010011100010 colas 6 -1010011100010 slaughterings 7 -1010011100010 camshafts 7 -1010011100010 contingents 7 -1010011100010 desktops 8 -1010011100010 ingots 9 -1010011100010 reexports 9 -1010011100010 fajitas 10 -1010011100010 launchings 11 -1010011100010 insulators 13 -1010011100010 jugs 13 -1010011100010 marketings 13 -1010011100010 seepage 18 -1010011100010 T-bills 19 -1010011100010 gluts 21 -1010011100010 outages 21 -1010011100010 mugs 26 -1010011100010 disposals 31 -1010011100010 reinforcements 31 -1010011100010 flakes 32 -1010011100010 premieres 38 -1010011100010 Treasuries 51 -1010011100010 plantings 52 -1010011100010 enrollments 62 -1010011100010 backlogs 78 -1010011100010 harvests 99 -1010011100010 spills 100 -1010011100010 bankruptcies 181 -1010011100010 pumps 232 -1010011100010 warehouses 260 -1010011100010 stockpiles 294 -1010011100010 payrolls 309 -1010011100010 Treasurys 536 -1010011100010 deliveries 578 -1010011100010 shortages 672 -1010011100010 shipments 1865 -1010011100010 inventories 1956 -1010011100010 supplies 2634 -1010011100010 imports 4568 -1010011100010 exports 4934 -1010011100011 copublished 1 -1010011100011 dippers 1 -1010011100011 profit-cap 1 -1010011100011 sell-throughs 1 -1010011100011 curtain-like 1 -1010011100011 constructive-ownership 1 -1010011100011 smokestack-emission 1 -1010011100011 vestment 1 -1010011100011 army-reserve 1 -1010011100011 product-registration 1 -1010011100011 security-deposit 1 -1010011100011 radiation-test 1 -1010011100011 performance-per-dollar 1 -1010011100011 declassification 1 -1010011100011 particulate-matter 1 -1010011100011 overinvestment 2 -1010011100011 placidity 2 -1010011100011 944S 2 -1010011100011 amercements 2 -1010011100011 excellences 2 -1010011100011 whirr 2 -1010011100011 regurgitation 3 -1010011100011 reparation 3 -1010011100011 inventories-to-sales 3 -1010011100011 cookie-making 3 -1010011100011 cattle-feed 3 -1010011100011 downtrends 3 -1010011100011 popularization 3 -1010011100011 ivermectin 4 -1010011100011 klatch 4 -1010011100011 mononucleosis 4 -1010011100011 tailpipe-emission 5 -1010011100011 cellars 5 -1010011100011 sapling 5 -1010011100011 sprayer 6 -1010011100011 entendre 6 -1010011100011 medallions 6 -1010011100011 muds 7 -1010011100011 readability 7 -1010011100011 pressurization 8 -1010011100011 steel-production 9 -1010011100011 steelworks 10 -1010011100011 mineralization 11 -1010011100011 conductivity 12 -1010011100011 Feldene 12 -1010011100011 tailings 15 -1010011100011 airfare 20 -1010011100011 whammy 30 -1010011100011 irradiation 32 -1010011100011 viewership 44 -1010011100011 tonnage 51 -1010011100011 intake 51 -1010011100011 emission 73 -1010011100011 overproduction 128 -1010011100011 stockpile 157 -1010011100011 enrollment 159 -1010011100011 usage 208 -1010011100011 attendance 222 -1010011100011 mileage 255 -1010011100011 acreage 314 -1010011100011 emissions 373 -1010011100011 morale 402 -1010011100011 depreciation 495 -1010011100011 circulation 885 -1010011100011 productivity 1396 -1010011100011 consumption 1531 -1010011100011 production 13530 -1010011100011 output 3477 -101001110010 facilities-management 1 -101001110010 launderettes 1 -101001110010 money-income 1 -101001110010 escapeways 1 -101001110010 producton 1 -101001110010 listfruits 1 -101001110010 straw-poll 1 -101001110010 Euro-malaise 1 -101001110010 soft-pedals 1 -101001110010 catalog-sale 1 -101001110010 mid-winter 2 -101001110010 birth-rate 2 -101001110010 Vons-Safeway 2 -101001110010 end-1987 2 -101001110010 Pathfinders 2 -101001110010 asssets 3 -101001110010 phonographs 3 -101001110010 subsector 3 -101001110010 follow-ups 3 -101001110010 re-evaluations 4 -101001110010 Hatchback 4 -101001110010 wintertime 5 -101001110010 caches 6 -101001110010 transporter 9 -101001110010 revaluations 12 -101001110010 procurements 15 -101001110010 dispositions 38 -101001110010 registrations 67 -101001110010 winnings 98 -101001110010 sales 35126 -101001110010 billings 408 -1010011100110 10-million-unit 1 -1010011100110 radiation-hardened 1 -1010011100110 277,891 1 -1010011100110 noggin 1 -1010011100110 Knight-Pulliam 1 -1010011100110 peak-pullout 1 -1010011100110 gopak 1 -1010011100110 Three-sevenths 1 -1010011100110 religious-secular 1 -1010011100110 Islam. 1 -1010011100110 Seculo 1 -1010011100110 dollar-watchers 1 -1010011100110 Handlesblat 1 -1010011100110 DODG 1 -1010011100110 player-salary 1 -1010011100110 competititon 1 -1010011100110 TCDD 1 -1010011100110 Vlasova 1 -1010011100110 WQUE. 1 -1010011100110 82-9 1 -1010011100110 dedicatee 1 -1010011100110 current-cost-basis 1 -1010011100110 initally 1 -1010011100110 8-12 1 -1010011100110 Luro 1 -1010011100110 3198 1 -1010011100110 Desto 1 -1010011100110 7701 1 -1010011100110 theft-loss 1 -1010011100110 CASELOAD 1 -1010011100110 RATON 1 -1010011100110 weepy-eyed 1 -1010011100110 ARABIA 1 -1010011100110 Dulcinea 1 -1010011100110 19-volume 1 -1010011100110 Bolz 1 -1010011100110 Shiite-Palestinian 1 -1010011100110 kilbasa 1 -1010011100110 WNET/13 1 -1010011100110 TINKERING 1 -1010011100110 Wagniskapital 1 -1010011100110 rans 1 -1010011100110 oil-crudes 1 -1010011100110 theater-wide 1 -1010011100110 schoolchairs 1 -1010011100110 Putters 1 -1010011100110 RELEASE 1 -1010011100110 Lampl 1 -1010011100110 less-than-cordial 1 -1010011100110 Buehl 1 -1010011100110 partnerin 1 -1010011100110 half-sincerely 1 -1010011100110 Keita 1 -1010011100110 lint-picking 1 -1010011100110 BRISTLE 1 -1010011100110 263,032 1 -1010011100110 far-costlier 1 -1010011100110 2,123,482 1 -1010011100110 taipan 1 -1010011100110 versifier 1 -1010011100110 Narodov 1 -1010011100110 Staatssicherheit 1 -1010011100110 Dockets 1 -1010011100110 crack-user 1 -1010011100110 Nobility 1 -1010011100110 0.250 1 -1010011100110 revenue. 1 -1010011100110 2,071,756 1 -1010011100110 Runnings 1 -1010011100110 fly-bys 1 -1010011100110 Kraszewski 1 -1010011100110 Marshack 1 -1010011100110 2,416,000 1 -1010011100110 dyskinesia 1 -1010011100110 guitar-based 2 -1010011100110 Zeppelin 2 -1010011100110 enigmas 2 -1010011100110 Ordynka 2 -1010011100110 MINISTER 2 -1010011100110 E.T.C. 2 -1010011100110 protein-supplemented 2 -1010011100110 604,330,000 2 -1010011100110 Loge 2 -1010011100110 trading-loss 2 -1010011100110 emitter 2 -1010011100110 grouper 2 -1010011100110 Rubble 2 -1010011100110 patentability 2 -1010011100110 REMAIN 2 -1010011100110 plutocrat 2 -1010011100110 4106 2 -1010011100110 HATS 2 -1010011100110 System-2 2 -1010011100110 delicto 2 -1010011100110 312-105 2 -1010011100110 Mangal 2 -1010011100110 JNR 3 -1010011100110 CONTRIBUTIONS 3 -1010011100110 SHELTERS 3 -1010011100110 CASES 3 -1010011100110 motorboats 3 -1010011100110 bogeymen 3 -1010011100110 Jocasta 3 -1010011100110 subsection 3 -1010011100110 debilitation 3 -1010011100110 Jyoti 3 -1010011100110 priestesses 3 -1010011100110 SCID 3 -1010011100110 ACTIVITY 4 -1010011100110 mountaintops 4 -1010011100110 Professionalism 4 -1010011100110 arguta 4 -1010011100110 Habit 5 -1010011100110 Schizophrenia 5 -1010011100110 plateaus 5 -1010011100110 0.325 5 -1010011100110 Obers 5 -1010011100110 Endurance 6 -1010011100110 EDWARDS 7 -1010011100110 NOX 7 -1010011100110 incision 10 -1010011100110 Wiederaufbau 10 -1010011100110 Accreditation 11 -1010011100110 upticks 11 -1010011100110 horseback 32 -1010011100110 WNET/Thirteen 38 -1010011100110 A&E 57 -1010011100110 Certificates-a 82 -1010011100110 halts 113 -1010011100110 ex-dividend 153 -1010011100110 doses 171 -1010011100110 PBS 394 -1010011100110 volumes 462 -1010011100110 turnover 652 -1010011100110 volume 7676 -1010011100111 Meowmoiselle 1 -1010011100111 Tulipa 1 -1010011100111 2,440,000 1 -1010011100111 dollars-per-barrel 1 -1010011100111 multiple-function 1 -1010011100111 1,428,000 1 -1010011100111 loathsomeness 1 -1010011100111 fibrinogen 1 -1010011100111 fourth-down-and-one 1 -1010011100111 target. 1 -1010011100111 WDZZ-FM 1 -1010011100111 Ahvaz 1 -1010011100111 family-reunification 1 -1010011100111 Adman 1 -1010011100111 flip-ins 1 -1010011100111 pauperism 1 -1010011100111 drive-throughs 1 -1010011100111 compatibilty 1 -1010011100111 no-man-is-an-island 1 -1010011100111 293,490 1 -1010011100111 Whoville 1 -1010011100111 averagewell 1 -1010011100111 leopard-spotted 1 -1010011100111 Outreach 1 -1010011100111 300-mile-an-hour 1 -1010011100111 bleepers 1 -1010011100111 7,261,000 1 -1010011100111 kudzu 1 -1010011100111 1,506,000 1 -1010011100111 1.2-million 1 -1010011100111 Zocalo 1 -1010011100111 272,367 1 -1010011100111 Misfortune 1 -1010011100111 excursion-fare 1 -1010011100111 288,690 1 -1010011100111 sexual-assault 1 -1010011100111 Mianeh 1 -1010011100111 3,978,238 1 -1010011100111 Sydney-Singapore-London 1 -1010011100111 newstands 1 -1010011100111 egg-buying 1 -1010011100111 I-26 1 -1010011100111 pocketfuls 1 -1010011100111 1,525,000 1 -1010011100111 disembowelment 1 -1010011100111 drawn-body 1 -1010011100111 meals. 1 -1010011100111 85,250 1 -1010011100111 EC-produced 1 -1010011100111 ikrities 1 -1010011100111 1,483,000 1 -1010011100111 Roman-style 1 -1010011100111 third-and-six 1 -1010011100111 highway-accident 1 -1010011100111 calulators 1 -1010011100111 151,500 1 -1010011100111 coming. 1 -1010011100111 1,394,000 1 -1010011100111 incentives. 1 -1010011100111 parapsychology 1 -1010011100111 1,072,000 1 -1010011100111 crime-solving 1 -1010011100111 1,204,000 1 -1010011100111 advertising-linage 1 -1010011100111 8,772,000 1 -1010011100111 mindlessness 1 -1010011100111 70,000-100,000 1 -1010011100111 reveunue 1 -1010011100111 Unicorn-Kanchana 1 -1010011100111 92,254 1 -1010011100111 package-volume 1 -1010011100111 wildife 1 -1010011100111 wites 1 -1010011100111 frankincense 1 -1010011100111 16,550 1 -1010011100111 top-loaders 1 -1010011100111 manhunts 1 -1010011100111 strategic-force 1 -1010011100111 3,215,000 1 -1010011100111 1,031,263 1 -1010011100111 relandscaping 1 -1010011100111 cocaine-peddling 1 -1010011100111 1,193,000 1 -1010011100111 905,647 1 -1010011100111 4,257,000 1 -1010011100111 1986revenue 1 -1010011100111 fast-walking 1 -1010011100111 double-A-plus-rated 1 -1010011100111 3,578,000 1 -1010011100111 BudgeTelevision 1 -1010011100111 35,029 1 -1010011100111 bicyles 1 -1010011100111 1,037,369 1 -1010011100111 Lire 1 -1010011100111 Campeau-unit 1 -1010011100111 907,767 1 -1010011100111 shuteye 1 -1010011100111 non-Asian 1 -1010011100111 public-mindedness 1 -1010011100111 aggegates 1 -1010011100111 4,914,000 1 -1010011100111 misestimates 1 -1010011100111 83,400 1 -1010011100111 foot-pedaled 1 -1010011100111 6,536,000 1 -1010011100111 Vini 1 -1010011100111 half-pay 1 -1010011100111 4,031,000 1 -1010011100111 Bord 1 -1010011100111 2,974,000 1 -1010011100111 1,010,186 1 -1010011100111 Amager 1 -1010011100111 Aug.11 1 -1010011100111 1,562,000 1 -1010011100111 204,440 1 -1010011100111 hairnets 1 -1010011100111 I-55 2 -1010011100111 sleights 2 -1010011100111 third-and-10 2 -1010011100111 cross-trades 2 -1010011100111 2,278,000 2 -1010011100111 Manila-bound 2 -1010011100111 275,960 2 -1010011100111 11,936,693 2 -1010011100111 Sohio-BP 2 -1010011100111 camelback 2 -1010011100111 Porkopolis 2 -1010011100111 fiberfill 2 -1010011100111 Lillick 2 -1010011100111 obviousness 2 -1010011100111 clotheslines 2 -1010011100111 8,180,000 2 -1010011100111 minter 2 -1010011100111 Take-Overs 2 -1010011100111 DEN 2 -1010011100111 face-amount 2 -1010011100111 827,000 3 -1010011100111 pinheads 3 -1010011100111 misinterpretations 4 -1010011100111 non-trade-related 6 -1010011100111 stilts 10 -1010011100111 underpayments 10 -1010011100111 Alcoholism 14 -1010011100111 linage 76 -1010011100111 feedlots 109 -1010011100111 Tariffs 191 -1010011100111 behalf 1480 -1010011100111 revenue 14706 -10100111010 200-200 1 -10100111010 Proves 1 -10100111010 hussy 1 -10100111010 whuppings 1 -10100111010 yesterday.Mr 1 -10100111010 megacorporations 1 -10100111010 waterproofer 1 -10100111010 twinsheet 1 -10100111010 organizaion 1 -10100111010 force-out 1 -10100111010 homburg 1 -10100111010 anarchism 1 -10100111010 exploration. 1 -10100111010 severances 1 -10100111010 stone-wash 1 -10100111010 coqual 1 -10100111010 Cloak 1 -10100111010 FAIL 1 -10100111010 pact. 1 -10100111010 Inc.as 1 -10100111010 check-point 1 -10100111010 29/32nds 1 -10100111010 messy-evacuation 1 -10100111010 Chiantis 1 -10100111010 waterspout 1 -10100111010 who-is-brutally-raped-by-a-white-man 1 -10100111010 suplies 1 -10100111010 party. 1 -10100111010 pit. 1 -10100111010 change-up 1 -10100111010 stirke 1 -10100111010 post-doctorate 1 -10100111010 Reacts 1 -10100111010 downrating 1 -10100111010 paranoids 1 -10100111010 birdhouses 1 -10100111010 insistance 1 -10100111010 Gabbrielli 1 -10100111010 tenderloin 2 -10100111010 problem-solvers 2 -10100111010 Act. 2 -10100111010 Burnout 2 -10100111010 HOUSEHOLDS 2 -10100111010 Shortcut 2 -10100111010 Nenryo 2 -10100111010 staves 3 -10100111010 tarpaulins 3 -10100111010 Rolexes 4 -10100111010 prices 33780 -10100111010 repurchases 109 -10100111011 eight-room 1 -10100111011 stock-linked 1 -10100111011 brainchildren 1 -10100111011 pseudoharengus 1 -10100111011 flat-land 1 -10100111011 Furor 1 -10100111011 FARMHANDS 1 -10100111011 Levchuk 1 -10100111011 ind 1 -10100111011 STRIKES 1 -10100111011 Pecchioli 1 -10100111011 thrice-yearly 1 -10100111011 KIERULFF 1 -10100111011 handfasters 1 -10100111011 animal-funeral 1 -10100111011 truck-hauled 1 -10100111011 computer-packing 1 -10100111011 tradingfor 1 -10100111011 Empresarial 1 -10100111011 POPULARITY 1 -10100111011 solid-mahogany 1 -10100111011 Emotion 1 -10100111011 appparently 1 -10100111011 BUTTE 1 -10100111011 gimcrack 1 -10100111011 31-plane 1 -10100111011 INDICATORS 1 -10100111011 orders> 1 -10100111011 train-ride 1 -10100111011 genera 1 -10100111011 actions. 1 -10100111011 al-Nahayan 1 -10100111011 Brumaire 1 -10100111011 toonage 1 -10100111011 LQ 1 -10100111011 data.The 1 -10100111011 Marg 1 -10100111011 Euroil-stock 1 -10100111011 moveable 1 -10100111011 haugh 1 -10100111011 postition 1 -10100111011 knife-fighter 1 -10100111011 EMPHASIS 1 -10100111011 rule-gold 1 -10100111011 hand-wringer 1 -10100111011 chukka 1 -10100111011 OCC-member 1 -10100111011 rambler 1 -10100111011 386SX-based 1 -10100111011 Schwarz-A-Tron 1 -10100111011 great-great-granddaughter 1 -10100111011 electoral-vote-rich 1 -10100111011 Caballeros 1 -10100111011 Coups 2 -10100111011 ethers 2 -10100111011 Rajneesh 2 -10100111011 Characteristics 2 -10100111011 investiture 2 -10100111011 Giraffe 2 -10100111011 besmirchment 2 -10100111011 SSTs 2 -10100111011 RABINOWITZ 2 -10100111011 escapee 3 -10100111011 showiest 3 -10100111011 FILING 3 -10100111011 Pascual 3 -10100111011 Farisani 4 -10100111011 500-index 4 -10100111011 Unbearable 6 -10100111011 deflator 94 -10100111011 index 12328 -10100111011 Index 1204 -101001111000 penurious 1 -101001111000 seed-field 1 -101001111000 store-redeemable 1 -101001111000 system-2 1 -101001111000 tear-away 1 -101001111000 social-message 1 -101001111000 telephone-number 1 -101001111000 46-degree 1 -101001111000 finance-rate 1 -101001111000 nonfinancials 1 -101001111000 urban-worker 1 -101001111000 bonified 1 -101001111000 sky-rocketing 1 -101001111000 savings-CD 1 -101001111000 drug-unit 1 -101001111000 body-rust 1 -101001111000 Messerschmitt-BoelkowBlohm 1 -101001111000 fuel-purchase 1 -101001111000 airport-gate 1 -101001111000 de-thorned 1 -101001111000 already-slimming 1 -101001111000 HARASSMENT 1 -101001111000 incentive-buoyed 1 -101001111000 PROSPECTORS 1 -101001111000 1.175-pence 1 -101001111000 263-156 2 -101001111000 much-lower 2 -101001111000 profits-based 2 -101001111000 longer-length 2 -101001111000 Binge 2 -101001111000 pension-settlement 2 -101001111000 typhus 6 -101001111000 profit 15813 -101001111000 net-interest 7 -101001111001 roseate 1 -101001111001 2037.32-point 1 -101001111001 AMX 1 -101001111001 citizen-soldiers 1 -101001111001 already-waning 1 -101001111001 already-lowered 1 -101001111001 Istitute 1 -101001111001 long-recurring 1 -101001111001 too-optimistic 1 -101001111001 SURCHARGE 1 -101001111001 barefaced 1 -101001111001 grain-harvest 1 -101001111001 gross-proceeds 1 -101001111001 gate-hyping 1 -101001111001 COLLIER 1 -101001111001 yen-triggered 1 -101001111001 energy-shortage-era 1 -101001111001 private-economic 1 -101001111001 Confounding 1 -101001111001 survey-based 1 -101001111001 prelimiminary 1 -101001111001 merchandise-trade-deficit 1 -101001111001 2.3-million-barrel 1 -101001111001 sharenet 1 -101001111001 budget-but 1 -101001111001 takeover-value 1 -101001111001 3,768 1 -101001111001 2,172 1 -101001111001 4,926 1 -101001111001 population-growth 1 -101001111001 8,026 1 -101001111001 13,598 1 -101001111001 294,879 1 -101001111001 283,000-job 1 -101001111001 1,053,459 1 -101001111001 2,589 1 -101001111001 stomach-shooting 1 -101001111001 JACKPOTS 1 -101001111001 pavement-performance 1 -101001111001 ROE 1 -101001111001 oil-demand 1 -101001111001 farrowing 2 -101001111001 job-performance 2 -101001111001 passbooks 2 -101001111001 planting-intentions 2 -101001111001 75.23-point 2 -101001111001 1,038 2 -101001111001 Maseratis 3 -101001111001 colognes 3 -101001111001 1101.16 3 -101001111001 operating-income 3 -101001111001 lease-hold 3 -101001111001 Politika 3 -101001111001 Caravans 4 -101001111001 seagulls 4 -101001111001 pretax-profit 8 -101001111001 food-inflation 11 -101001111001 earnings 19044 -101001111001 Istituto 65 -101001111010 HISTORIES 1 -101001111010 expert/D.C. 1 -101001111010 Karstad 1 -101001111010 gasoline-excise 1 -101001111010 computer-hastened 1 -101001111010 worth-assets 1 -101001111010 oil-profit 1 -101001111010 sempervivum 1 -101001111010 800-424-FORM 1 -101001111010 works-wife 1 -101001111010 ANXIETY 1 -101001111010 re-make 1 -101001111010 highway-related 1 -101001111010 226.58 1 -101001111010 REJOICE 1 -101001111010 seven-footer 1 -101001111010 exactitude 2 -101001111010 jay 2 -101001111010 ROYCE 2 -101001111010 8840 2 -101001111010 rate-news 2 -101001111010 BRACE 3 -101001111010 out-migration 6 -101001111010 worths 6 -101001111010 income 16199 -101001111010 in-migration 16 -1010011110110 detergent/fabric 1 -1010011110110 profit-earnings 1 -1010011110110 DISCLOSURE 2 -1010011110110 signpost 2 -1010011110110 pussycat 2 -1010011110110 vote-loser 2 -1010011110110 joules 2 -1010011110110 skein 3 -1010011110110 windowsill 3 -1010011110110 paydown 5 -1010011110110 motherlode 5 -1010011110110 comedown 14 -1010011110110 writedown 34 -1010011110110 outflow 143 -1010011110110 write-off 491 -1010011110110 loss 14709 -1010011110110 write-down 549 -1010011110111 mini-story 1 -1010011110111 thrust-vector 1 -1010011110111 bathetically 1 -1010011110111 overbudget 1 -1010011110111 neon-bright 1 -1010011110111 thermostat-like 1 -1010011110111 new-arms 1 -1010011110111 deputations 1 -1010011110111 mamma 1 -1010011110111 no-amendment 1 -1010011110111 outercontinental 1 -1010011110111 loss-maker 1 -1010011110111 6,483 1 -1010011110111 Scotchman 1 -1010011110111 spillovers 1 -1010011110111 1.3-mile 1 -1010011110111 multistation 1 -1010011110111 rapporteur 1 -1010011110111 reprieves 1 -1010011110111 -holder 1 -1010011110111 disk-jockey 1 -1010011110111 -control 1 -1010011110111 switch-over 1 -1010011110111 income-income 2 -1010011110111 corker 2 -1010011110111 annually. 2 -1010011110111 re-winging 2 -1010011110111 -ownership 2 -1010011110111 high-single-A 3 -1010011110111 huggable 3 -1010011110111 draw-down 5 -1010011110111 RISE 6 -1010011110111 write-up 8 -1010011110111 gain 8595 -1010011110111 variation 288 -101001111100 two-cents-a-pound 1 -101001111100 dry-season 1 -101001111100 price-fluctuation 1 -101001111100 rates.The 1 -101001111100 contrtactors 1 -101001111100 blood-bath 1 -101001111100 Weltwoche 1 -101001111100 sail-raisings 1 -101001111100 tunover 1 -101001111100 resurges 1 -101001111100 cover-to-cover 1 -101001111100 moneychanger 1 -101001111100 subscription-price 1 -101001111100 auto-news 1 -101001111100 telluride 1 -101001111100 virus. 1 -101001111100 7.5/64-inch 1 -101001111100 growth-share 1 -101001111100 Veja 1 -101001111100 rate-economic 1 -101001111100 borohydride 1 -101001111100 interest-rate-risk 1 -101001111100 minidevaluations 1 -101001111100 rate/currency 1 -101001111100 dunker 1 -101001111100 pressures. 1 -101001111100 radiation-risk 1 -101001111100 ratiocination 1 -101001111100 clum 1 -101001111100 sauvigon 1 -101001111100 limit-flagged 1 -101001111100 larger-car 1 -101001111100 owned. 1 -101001111100 25-cents-an-hour 1 -101001111100 benzoate 1 -101001111100 childishness 1 -101001111100 M2-currency 1 -101001111100 can-price 1 -101001111100 telephone-trading 1 -101001111100 mammographs 1 -101001111100 all-company 1 -101001111100 training-budget 1 -101001111100 Bilan 1 -101001111100 polymerization 1 -101001111100 Nepszabdsag 1 -101001111100 cash-dividend 1 -101001111100 hydroxide 1 -101001111100 desalinized 1 -101001111100 fuel-neutral 1 -101001111100 car-price 1 -101001111100 roundtrips 1 -101001111100 print-run 1 -101001111100 America-Economia 1 -101001111100 pentobarbital 1 -101001111100 cherry-blossom 1 -101001111100 drug-seeking 1 -101001111100 -per-year 1 -101001111100 Journal-News 2 -101001111100 R&D/assets 2 -101001111100 Haiti-Observateur 2 -101001111100 streltsy 2 -101001111100 RATIO 2 -101001111100 equipment-purchase 2 -101001111100 Tages-Anzeiger 2 -101001111100 Nepszabadsag 2 -101001111100 Metalliques 3 -101001111100 dichromate 3 -101001111100 starting-salary 3 -101001111100 chlorate 8 -101001111100 sauvignon 20 -101001111100 al. 27 -101001111100 rate 24486 -101001111100 ratio 1537 -1010011111010 strike-price 1 -1010011111010 48-state 1 -1010011111010 tax/telephones 1 -1010011111010 editon 1 -1010011111010 stockmargin 1 -1010011111010 stategrant 1 -1010011111010 national-rate 1 -1010011111010 IRS-conference 1 -1010011111010 proper. 1 -1010011111010 minijet 1 -1010011111010 fiftyfold 1 -1010011111010 reliver 1 -1010011111010 wood-beamed 1 -1010011111010 end-of-winter 1 -1010011111010 time-line 1 -1010011111010 slap-on-the-wrist 1 -1010011111010 flow-based 1 -1010011111010 flow-after-tax 1 -1010011111010 quotients 1 -1010011111010 ego-shattering 1 -1010011111010 plant-rebuilding 1 -1010011111010 smolders 2 -1010011111010 high-test 2 -1010011111010 squeeze-out 2 -1010011111010 half-penny 3 -1010011111010 fade-out 3 -1010011111010 fixed/adjustable 3 -1010011111010 p/e 4 -1010011111010 lead-in 6 -1010011111010 downpayment 7 -1010011111010 charge-off 8 -1010011111010 estimated-tax 9 -1010011111010 pay-out 10 -1010011111010 buy-in 12 -1010011111010 stipend 19 -1010011111010 teaser 26 -1010011111010 miscarriage 30 -1010011111010 knell 32 -1010011111010 reliever 37 -1010011111010 markup 45 -1010011111010 VAT 47 -1010011111010 retainer 62 -1010011111010 limitation 102 -1010011111010 surtax 104 -1010011111010 surcharge 173 -1010011111010 quo 265 -1010011111010 threshold 289 -1010011111010 royalty 302 -1010011111010 rebate 329 -1010011111010 windfall 344 -1010011111010 toll 419 -1010011111010 vacancy 546 -1010011111010 payout 627 -1010011111010 bonus 749 -1010011111010 quota 824 -1010011111010 coupon 890 -1010011111010 penalty 1138 -1010011111010 margin 2181 -1010011111010 fee 2247 -1010011111010 dividend 5871 -1010011111010 premium 2382 -10100111110110 retail-photography 1 -10100111110110 hit-the-beaches 1 -10100111110110 22nd-ranked 1 -10100111110110 24-county 1 -10100111110110 1929-ologists 1 -10100111110110 Shrivers 1 -10100111110110 coal-operators 1 -10100111110110 cable-broadcasting 1 -10100111110110 confidence-boosting 1 -10100111110110 toy-products 1 -10100111110110 dependance 1 -10100111110110 turtle-soup 1 -10100111110110 5.2-million-barrel 1 -10100111110110 air-resistance 1 -10100111110110 specialty-building-products 1 -10100111110110 approvals/signatures 1 -10100111110110 two-century 1 -10100111110110 off-stage 1 -10100111110110 Italian-Swiss 1 -10100111110110 Insulators 1 -10100111110110 securties 1 -10100111110110 pipeline-rehabilitation 1 -10100111110110 Belgian-controlled 1 -10100111110110 Mendozas 1 -10100111110110 Striar-Jacobson 1 -10100111110110 Hunkhood 1 -10100111110110 Standpoint 1 -10100111110110 biotechnoloy 1 -10100111110110 Hitler-bunker 1 -10100111110110 niceguy 1 -10100111110110 Blotch 1 -10100111110110 graphics-equipment 1 -10100111110110 thingamajig 1 -10100111110110 here-we-go-again 1 -10100111110110 pipeline-reconstruction 1 -10100111110110 victory-margin 1 -10100111110110 employment-advertising 1 -10100111110110 wholesale-grocery 1 -10100111110110 oarlock 1 -10100111110110 gondola-builders 1 -10100111110110 residential-building 1 -10100111110110 blue-and-gold-bedecked 1 -10100111110110 physiologic 1 -10100111110110 sugar-daddy 1 -10100111110110 dirty-cop 1 -10100111110110 leastexpensive 1 -10100111110110 tissue-banks 1 -10100111110110 meat-toppings 1 -10100111110110 whiffs 1 -10100111110110 Thoroughbred-breeding 1 -10100111110110 Polish-joke 1 -10100111110110 scientific-journal 1 -10100111110110 Eastern-corridor 1 -10100111110110 industrial-dominated 1 -10100111110110 remixes 1 -10100111110110 card-industries 1 -10100111110110 Hohns 1 -10100111110110 pre-1941 1 -10100111110110 camaigns 1 -10100111110110 10,000-troop 1 -10100111110110 specialty-contracting 1 -10100111110110 concern-for-the-hostages 1 -10100111110110 Drop-everything 1 -10100111110110 special-teams 1 -10100111110110 safety-research 1 -10100111110110 JONAS 1 -10100111110110 Torontobased 1 -10100111110110 long-distance-telecommunications 1 -10100111110110 debt-ratings 1 -10100111110110 Rockford-based 1 -10100111110110 healthcare-services 1 -10100111110110 swing-producer 1 -10100111110110 Mexican-restaurant 1 -10100111110110 king-pawn 1 -10100111110110 10-employee 1 -10100111110110 passengers-only 1 -10100111110110 income-tax-service 1 -10100111110110 stickum 1 -10100111110110 minus/A-3 1 -10100111110110 pop-tops 1 -10100111110110 automotive-technology 1 -10100111110110 GE-type 1 -10100111110110 dire-danger 1 -10100111110110 880,878 1 -10100111110110 Roths 1 -10100111110110 26,405 1 -10100111110110 test-score 1 -10100111110110 tumor-necrosis 1 -10100111110110 colony-stimulating 2 -10100111110110 party-state 2 -10100111110110 post-sale 2 -10100111110110 postmortems 2 -10100111110110 check-verification 2 -10100111110110 transportation-leasing 2 -10100111110110 postmarks 2 -10100111110110 roadbed 3 -10100111110110 Sunraycer 3 -10100111110110 MD-92 3 -10100111110110 wind-chill 4 -10100111110110 bus-leasing 4 -10100111110110 coupon-processing 5 -10100111110110 vise 13 -10100111110110 necrosis 14 -10100111110110 proration 34 -10100111110110 credit-rating 46 -10100111110110 sights 159 -10100111110110 grip 368 -10100111110110 load 1390 -10100111110110 ratings 2669 -10100111110110 rating 3870 -10100111110111 peerages 1 -10100111110111 K1s 1 -10100111110111 239-187 1 -10100111110111 comeons 1 -10100111110111 poolings 1 -10100111110111 level.They 1 -10100111110111 repudiations 1 -10100111110111 Orbitals 1 -10100111110111 service-reduction 1 -10100111110111 hellfire 1 -10100111110111 timepieces 2 -10100111110111 pay-down 2 -10100111110111 FMHA 2 -10100111110111 consessions 2 -10100111110111 discoverers 2 -10100111110111 impalement 2 -10100111110111 riboflavin 2 -10100111110111 opportunties 3 -10100111110111 paleness 3 -10100111110111 nonstops 4 -10100111110111 samogon 4 -10100111110111 comforter 4 -10100111110111 trusteeships 4 -10100111110111 cheater 4 -10100111110111 mikes 4 -10100111110111 remembrances 5 -10100111110111 deductability 5 -10100111110111 silting 5 -10100111110111 paybacks 5 -10100111110111 arrearage 7 -10100111110111 100s 8 -10100111110111 writeoff 12 -10100111110111 reschedulings 20 -10100111110111 semi-annually 21 -10100111110111 arrearages 21 -10100111110111 indexation 39 -10100111110111 forgiveness 84 -10100111110111 repayments 146 -10100111110111 arrears 182 -10100111110111 payouts 203 -10100111110111 distributions 238 -10100111110111 burdens 248 -10100111110111 repayment 503 -10100111110111 deduction 572 -10100111110111 ceiling 927 -10100111110111 burden 1368 -10100111110111 payment 3558 -10100111110111 payments 6566 -10100111111000 small-businesses 1 -10100111111000 3836 1 -10100111111000 throw-weight 1 -10100111111000 project-cancellation 1 -10100111111000 19,990 1 -10100111111000 misalliance 1 -10100111111000 suspiciousness 1 -10100111111000 HongkongBank-Wardley 1 -10100111111000 T-37s 1 -10100111111000 barbecuers 1 -10100111111000 superciliousness 1 -10100111111000 P205s 1 -10100111111000 6'-4 1 -10100111111000 168.89 1 -10100111111000 242.48 1 -10100111111000 737500 1 -10100111111000 173.46 1 -10100111111000 118.62 1 -10100111111000 Bruegelian 1 -10100111111000 kulak 1 -10100111111000 Schelomo 1 -10100111111000 327.54 1 -10100111111000 divertimenti 1 -10100111111000 2,939 1 -10100111111000 automony 1 -10100111111000 underclasses 1 -10100111111000 contendere 1 -10100111111000 Suzel 1 -10100111111000 DC9 1 -10100111111000 240.22 1 -10100111111000 59.62 1 -10100111111000 213.06 1 -10100111111000 1/35th 1 -10100111111000 R-10 1 -10100111111000 most-frequently 1 -10100111111000 191,613,132 1 -10100111111000 Monkee 1 -10100111111000 shrivels 1 -10100111111000 effects/horror 1 -10100111111000 governments-in-exile 1 -10100111111000 CD4-IgG 1 -10100111111000 security. 1 -10100111111000 476.37 1 -10100111111000 half-French 1 -10100111111000 97.76 1 -10100111111000 pleader 1 -10100111111000 no-lead 1 -10100111111000 SP-1-Plus 1 -10100111111000 minus-320 1 -10100111111000 hairstylist 1 -10100111111000 near-debacle 1 -10100111111000 overdepreciation 1 -10100111111000 ss 1 -10100111111000 interest-lawyers 1 -10100111111000 taking. 1 -10100111111000 Nintendos 1 -10100111111000 Whitmanesque 1 -10100111111000 31.72 1 -10100111111000 tradedeficit 1 -10100111111000 concern. 2 -10100111111000 alkylates 2 -10100111111000 crit 2 -10100111111000 whipsaws 3 -10100111111000 shipmate 3 -10100111111000 disbursal 3 -10100111111000 foodies 3 -10100111111000 fixations 4 -10100111111000 range-trading 4 -10100111111000 brownie 4 -10100111111000 Belasco 4 -10100111111000 Portofino 5 -10100111111000 exclamation 10 -10100111111000 editions 219 -10100111111000 edition 1193 -10100111111000 basis 5714 -10100111111000 pace 2537 -10100111111001 Jaminah 1 -10100111111001 entertainer-candidate 1 -10100111111001 Roared 1 -10100111111001 clefts 1 -10100111111001 Affair. 1 -10100111111001 Scuppernong 1 -10100111111001 article. 1 -10100111111001 bureaucracy. 1 -10100111111001 Uniprocessor 1 -10100111111001 dressing-down 1 -10100111111001 itelf 1 -10100111111001 EECIF 1 -10100111111001 2,079,000 1 -10100111111001 snowdrift 1 -10100111111001 34,893,108 1 -10100111111001 2,022,579 1 -10100111111001 Scoundrel 1 -10100111111001 Pu-Yi 1 -10100111111001 Choir. 1 -10100111111001 Ryder/P.I.E. 1 -10100111111001 10,000-yuan 1 -10100111111001 jumpier 1 -10100111111001 high-80s 1 -10100111111001 Sweethearts 1 -10100111111001 925.25 1 -10100111111001 2,279,000 1 -10100111111001 0-for-4 1 -10100111111001 horsefeed 1 -10100111111001 great. 1 -10100111111001 batman 1 -10100111111001 Kundry 1 -10100111111001 Came-Slot 1 -10100111111001 incandescents 1 -10100111111001 game-bird 1 -10100111111001 Karpinsk 1 -10100111111001 orchidarium 1 -10100111111001 crabgrass 1 -10100111111001 2,110,000 1 -10100111111001 SPGLA 1 -10100111111001 2,421 1 -10100111111001 640,388 1 -10100111111001 sweetmeats 1 -10100111111001 Walkerton 1 -10100111111001 246,708 1 -10100111111001 29,708 1 -10100111111001 stonewash 1 -10100111111001 B2000 1 -10100111111001 sherpas 1 -10100111111001 Baghlan 1 -10100111111001 BRDN 1 -10100111111001 figres 1 -10100111111001 9,371 1 -10100111111001 chuckleheadisms 1 -10100111111001 perorations 1 -10100111111001 inquests 1 -10100111111001 entendres 1 -10100111111001 beep. 1 -10100111111001 SPD. 1 -10100111111001 preces 1 -10100111111001 667,077 1 -10100111111001 pseudoepiphytes 1 -10100111111001 deckers 1 -10100111111001 2,376,000 1 -10100111111001 Kremlinology 1 -10100111111001 post. 1 -10100111111001 the. 1 -10100111111001 Leicas 1 -10100111111001 9,491 1 -10100111111001 skinflints 1 -10100111111001 hair-touslings 1 -10100111111001 2,359,000 1 -10100111111001 36,696 1 -10100111111001 -of-something-or-other 1 -10100111111001 opera-goer 1 -10100111111001 2,085,000 1 -10100111111001 782,030 1 -10100111111001 Inkhata 1 -10100111111001 R2t6z 1 -10100111111001 mini-gods 1 -10100111111001 Mandrake 1 -10100111111001 Chevettes 1 -10100111111001 2,066,000 1 -10100111111001 vahgawn 1 -10100111111001 marionettes 1 -10100111111001 9,008 1 -10100111111001 ladder. 1 -10100111111001 Plasticene 1 -10100111111001 entertainment. 1 -10100111111001 toggery 1 -10100111111001 assimilationist 1 -10100111111001 2,476,000 1 -10100111111001 sesin 1 -10100111111001 panda/beaver 1 -10100111111001 2,306,000 1 -10100111111001 poser 1 -10100111111001 zonation 1 -10100111111001 derringer-carrier 1 -10100111111001 chaos. 1 -10100111111001 Cossacks 1 -10100111111001 heroin. 1 -10100111111001 ideograph 1 -10100111111001 orange-strawberry-banana 1 -10100111111001 13,858 1 -10100111111001 2,205,000 1 -10100111111001 2,738 1 -10100111111001 28,768,228 1 -10100111111001 run-around 1 -10100111111001 haranguer 1 -10100111111001 51,844,137 1 -10100111111001 Water-gnome 1 -10100111111001 analysis. 1 -10100111111001 12,561,000 1 -10100111111001 27,969,976 1 -10100111111001 McWar 1 -10100111111001 number. 1 -10100111111001 2,191,000 1 -10100111111001 throughways 1 -10100111111001 ex-shortstop 1 -10100111111001 30,165,656 1 -10100111111001 33,109,811 1 -10100111111001 money-obtained 1 -10100111111001 13,418 1 -10100111111001 nation. 1 -10100111111001 plants. 1 -10100111111001 supension 1 -10100111111001 Purdey 1 -10100111111001 digits. 1 -10100111111001 quinine 1 -10100111111001 2,156,000 1 -10100111111001 goshawks 1 -10100111111001 Fungi 1 -10100111111001 fortunetelling 1 -10100111111001 squaws 1 -10100111111001 vultures. 1 -10100111111001 stuff. 1 -10100111111001 2,182,000 1 -10100111111001 92,362 1 -10100111111001 individual. 1 -10100111111001 2,531,600 1 -10100111111001 1,994,000 1 -10100111111001 techno-toys 1 -10100111111001 LYONs 2 -10100111111001 stalagmites 2 -10100111111001 saturnine 2 -10100111111001 breadstick 2 -10100111111001 bellicosity 2 -10100111111001 Babbitts 2 -10100111111001 gift. 2 -10100111111001 orgies 2 -10100111111001 T-note 2 -10100111111001 gluttons 2 -10100111111001 blast-off 2 -10100111111001 penises 3 -10100111111001 Topsy 3 -10100111111001 yelp 3 -10100111111001 goodbyes 3 -10100111111001 mountaineers 4 -10100111111001 A-minus 5 -10100111111001 helix 6 -10100111111001 hotcakes 6 -10100111111001 lifespan 6 -10100111111001 intermissions 7 -10100111111001 qua 8 -10100111111001 clockwork 11 -10100111111001 digit 12 -10100111111001 wildfire 19 -10100111111001 wavelength 24 -10100111111001 leash 35 -10100111111001 hiatus 64 -10100111111001 vein 69 -10100111111001 digits 105 -10100111111001 span 162 -10100111111001 period 10646 -10100111111001 periods 1029 -10100111111010 428-yarder 1 -10100111111010 335.24 1 -10100111111010 35,168,600 1 -10100111111010 4829.61 1 -10100111111010 3229.15 1 -10100111111010 per-person 1 -10100111111010 361.38 1 -10100111111010 26048.17 1 -10100111111010 wind-shifts 1 -10100111111010 3305.82 1 -10100111111010 1908.6 1 -10100111111010 1877.8 1 -10100111111010 1892.6 1 -10100111111010 3253.42 1 -10100111111010 1868.8 1 -10100111111010 2382 1 -10100111111010 cajolery 1 -10100111111010 357.07 1 -10100111111010 317.25 1 -10100111111010 voltages 1 -10100111111010 dollar-volume 1 -10100111111010 undraped 1 -10100111111010 self-deluded 1 -10100111111010 snowmelt 1 -10100111111010 decile 1 -10100111111010 421.01 1 -10100111111010 1866.1 1 -10100111111010 1486.2 1 -10100111111010 159.31 1 -10100111111010 322.34 1 -10100111111010 1846.7 1 -10100111111010 1472.8 1 -10100111111010 tapados 1 -10100111111010 19921.05 1 -10100111111010 19789.93 1 -10100111111010 299.49 1 -10100111111010 305.56 1 -10100111111010 1832.8 1 -10100111111010 1463.9 1 -10100111111010 20,228.09 1 -10100111111010 162.56 1 -10100111111010 20,766.66 1 -10100111111010 1942.0 1 -10100111111010 1552.3 1 -10100111111010 1925.8 1 -10100111111010 1542.1 1 -10100111111010 24097.79 1 -10100111111010 2163.4 1 -10100111111010 1:43:25 1 -10100111111010 2068.5 1 -10100111111010 1066.90 1 -10100111111010 montaineer 1 -10100111111010 23524.08 1 -10100111111010 occupancies 1 -10100111111010 22,738.67 1 -10100111111010 24729.03 1 -10100111111010 25738.96 1 -10100111111010 poundings 1 -10100111111010 2228.2 1 -10100111111010 exclamations 1 -10100111111010 2179.6 1 -10100111111010 2203.7 1 -10100111111010 2307.6 1 -10100111111010 weepers 1 -10100111111010 120s 1 -10100111111010 1752.3 1 -10100111111010 289.68 1 -10100111111010 19539.48 1 -10100111111010 426.74 1 -10100111111010 19554.72 1 -10100111111010 cantabile 1 -10100111111010 19686.83 1 -10100111111010 1814.4 1 -10100111111010 1441.6 1 -10100111111010 19216.12 1 -10100111111010 294.48 1 -10100111111010 grumpers 1 -10100111111010 6,681 1 -10100111111010 fulfillments 1 -10100111111010 PLEASURE 1 -10100111111010 P-values 1 -10100111111010 2,881 1 -10100111111010 returns-on-assets 1 -10100111111010 3,933 1 -10100111111010 64-59 1 -10100111111010 Nutkin 1 -10100111111010 half-scrap 1 -10100111111010 boomthough 1 -10100111111010 envirnonment 1 -10100111111010 Khans 1 -10100111111010 4,781 1 -10100111111010 4,458 1 -10100111111010 26930.84 1 -10100111111010 unit-president 1 -10100111111010 evel 1 -10100111111010 ever-more-complex 1 -10100111111010 ex-Cubs 1 -10100111111010 525.11 1 -10100111111010 17s 1 -10100111111010 digestibility 1 -10100111111010 preliminay 1 -10100111111010 mile-or-thereabouts 1 -10100111111010 737.83 1 -10100111111010 89,375 1 -10100111111010 429.12 1 -10100111111010 people-management 1 -10100111111010 2939.05 1 -10100111111010 intergrity 1 -10100111111010 461.73 1 -10100111111010 fractionater 1 -10100111111010 80,000s 1 -10100111111010 202,591 1 -10100111111010 505.9 1 -10100111111010 bed-maker 1 -10100111111010 tech-transplants 1 -10100111111010 28147.32 1 -10100111111010 bucketeers 1 -10100111111010 clocking 1 -10100111111010 muckety-muck 1 -10100111111010 2000s 2 -10100111111010 exhanges 2 -10100111111010 evisceration 2 -10100111111010 squerarolo 2 -10100111111010 chatters 2 -10100111111010 12,208 2 -10100111111010 headwear 2 -10100111111010 well-engineered 2 -10100111111010 elevations 2 -10100111111010 ranges. 2 -10100111111010 birthweight 2 -10100111111010 detestation 2 -10100111111010 shortgages 2 -10100111111010 2363.78 3 -10100111111010 libertarianism 3 -10100111111010 2179.42 3 -10100111111010 range. 3 -10100111111010 learners 3 -10100111111010 Shagan 3 -10100111111010 wisdoms 3 -10100111111010 dudgeon 3 -10100111111010 2519.77 3 -10100111111010 approximations 3 -10100111111010 freedom-fighters 3 -10100111111010 up-cycle 3 -10100111111010 responsibility. 3 -10100111111010 attainments 3 -10100111111010 2481.35 4 -10100111111010 Ludu 4 -10100111111010 jinks 4 -10100111111010 densities 4 -10100111111010 2150.45 4 -10100111111010 quintiles 5 -10100111111010 delegator 5 -10100111111010 2567.44 5 -10100111111010 franca 5 -10100111111010 2706.79 5 -10100111111010 conservatories 6 -10100111111010 1971.32 7 -10100111111010 schoolers 8 -10100111111010 predictors 10 -10100111111010 priestess 12 -10100111111010 violator 20 -10100111111010 echelons 26 -10100111111010 altitudes 26 -10100111111010 dosages 28 -10100111111010 quintile 35 -10100111111010 thresholds 35 -10100111111010 rollers 48 -10100111111010 density 86 -10100111111010 layer 252 -10100111111010 profile 480 -10100111111010 levels 6463 -10100111111010 level 8778 -10100111111011 topic. 1 -10100111111011 Euclidean 1 -10100111111011 tulipae 1 -10100111111011 self-mutilator 1 -10100111111011 sublety 1 -10100111111011 states-of-being 1 -10100111111011 moll 1 -10100111111011 manueuvers 1 -10100111111011 miter 1 -10100111111011 noisemaker 1 -10100111111011 picture. 1 -10100111111011 egalitarians 1 -10100111111011 five-thousandths 1 -10100111111011 inflamation 1 -10100111111011 perfusion 1 -10100111111011 make-over 1 -10100111111011 self-confrontation 1 -10100111111011 self-evisceration 1 -10100111111011 Tanjung 1 -10100111111011 lepanthes 1 -10100111111011 klinkers 1 -10100111111011 Shyaam-a-Mbul-a-Ngwoong 1 -10100111111011 applicator. 1 -10100111111011 door-opener 1 -10100111111011 spear-carrier 1 -10100111111011 homonym 1 -10100111111011 Kulturplatz 1 -10100111111011 laterals 1 -10100111111011 mustangs 1 -10100111111011 enlister 1 -10100111111011 adult-child 1 -10100111111011 calamari 1 -10100111111011 neoconservativism 1 -10100111111011 miniseason 1 -10100111111011 fretfulness 1 -10100111111011 discarders 1 -10100111111011 might-have-been 1 -10100111111011 boudoirs 1 -10100111111011 magneticfields 1 -10100111111011 camera-work 1 -10100111111011 needed. 1 -10100111111011 flow-net 1 -10100111111011 horse-faced 1 -10100111111011 potential. 1 -10100111111011 cantor 1 -10100111111011 all-rounders 1 -10100111111011 long-shots 1 -10100111111011 playboat 1 -10100111111011 burkas 1 -10100111111011 granduncle 1 -10100111111011 diarrhea. 1 -10100111111011 satan 1 -10100111111011 sub-category 1 -10100111111011 speculation. 1 -10100111111011 Rabelaisianism 1 -10100111111011 cowboy-hero 1 -10100111111011 moraine 1 -10100111111011 intensiveness 1 -10100111111011 car-pooling 1 -10100111111011 resilience. 1 -10100111111011 cat-eyes 1 -10100111111011 Nelwyns 1 -10100111111011 Atomium 1 -10100111111011 stableman 1 -10100111111011 shimedaiko 1 -10100111111011 half-sit-up 1 -10100111111011 limit-implemented 1 -10100111111011 23-fold 1 -10100111111011 Toshiba-bashers 1 -10100111111011 seductresses 1 -10100111111011 pipe-smoker 1 -10100111111011 Mythili 1 -10100111111011 overwarnings 1 -10100111111011 brain-picker 1 -10100111111011 LZ 1 -10100111111011 encomiums 1 -10100111111011 domaines 1 -10100111111011 graybeards 1 -10100111111011 other-worldliness 1 -10100111111011 bottledeposit 1 -10100111111011 homogenizer 1 -10100111111011 byway 1 -10100111111011 rodders 1 -10100111111011 flow-profit 1 -10100111111011 inquisitiveness 1 -10100111111011 methodsm 1 -10100111111011 Blackwater 1 -10100111111011 boreholes 1 -10100111111011 insectologist 1 -10100111111011 speed- 1 -10100111111011 priss 1 -10100111111011 market-though 1 -10100111111011 thunderheads 1 -10100111111011 referents 2 -10100111111011 draw-downs 2 -10100111111011 lampoons 2 -10100111111011 embarassment 2 -10100111111011 potentiality 2 -10100111111011 GUILTY 2 -10100111111011 crackup 2 -10100111111011 megalopolis 2 -10100111111011 Cartrivision 2 -10100111111011 transits 2 -10100111111011 self-liquidation 2 -10100111111011 blobs 2 -10100111111011 molar 2 -10100111111011 mantel 2 -10100111111011 ravines 2 -10100111111011 buzzes 2 -10100111111011 curvature 3 -10100111111011 spools 3 -10100111111011 co-existence 3 -10100111111011 parentis 4 -10100111111011 cleft 4 -10100111111011 constructionist 5 -10100111111011 billows 6 -10100111111011 rafts 6 -10100111111011 retracement 8 -10100111111011 expanses 9 -10100111111011 hoards 19 -10100111111011 replenishment 20 -10100111111011 excerpt 26 -10100111111011 snarl 30 -10100111111011 gamut 40 -10100111111011 swath 45 -10100111111011 registers 59 -10100111111011 infusions 75 -10100111111011 hoard 88 -10100111111011 respite 89 -10100111111011 parachutes 97 -10100111111011 outlay 116 -10100111111011 inflows 123 -10100111111011 adequacy 159 -10100111111011 inflow 172 -10100111111011 equivalents 183 -10100111111011 injection 197 -10100111111011 stream 437 -10100111111011 infusion 475 -10100111111011 ranges 479 -10100111111011 flows 559 -10100111111011 sentence 802 -10100111111011 range 5189 -10100111111011 flow 3014 -1010011111110 entitlement-program 1 -1010011111110 150-book 1 -1010011111110 Democrat/Republican 1 -1010011111110 stick-ums 1 -1010011111110 extra-base 1 -1010011111110 capitalization-weighted 1 -1010011111110 18-liter 1 -1010011111110 typhoon-season 1 -1010011111110 interest-margin 1 -1010011111110 business-formation 1 -1010011111110 small-format 1 -1010011111110 veil-like 1 -1010011111110 overhead-cost 1 -1010011111110 claims-cost 1 -1010011111110 1,604,375 1 -1010011111110 Twinnies 1 -1010011111110 two-to-five-year 1 -1010011111110 counterexamples 1 -1010011111110 15-to-20-foot 1 -1010011111110 price-standard 1 -1010011111110 defense-investment 1 -1010011111110 Japanese-Taiwan 1 -1010011111110 internationaly 1 -1010011111110 12-step 1 -1010011111110 base-lending-rate 1 -1010011111110 10-to-20-year-old 1 -1010011111110 subgurus 1 -1010011111110 billing-rate 1 -1010011111110 174,000-job 1 -1010011111110 fleet-price 1 -1010011111110 list-price 1 -1010011111110 caviar-bearing 1 -1010011111110 cereal-price 1 -1010011111110 window-service 1 -1010011111110 earnings-estimate 1 -1010011111110 T-Bond 1 -1010011111110 tooth-fairy 2 -1010011111110 grape-size 2 -1010011111110 9,309,394 2 -1010011111110 fund-balance 2 -1010011111110 stock-building 2 -1010011111110 hundred-point 2 -1010011111110 wariest 2 -1010011111110 filleted 2 -1010011111110 less-noticed 2 -1010011111110 spot-price 2 -1010011111110 gewgaw 2 -1010011111110 nightcap 2 -1010011111110 portolio 2 -1010011111110 return-price 2 -1010011111110 bioequivalency 2 -1010011111110 quick-wittedness 2 -1010011111110 golden-brown 2 -1010011111110 pyschology 3 -1010011111110 yellow-green 3 -1010011111110 broad-market 4 -1010011111110 home-price 4 -1010011111110 radiance 5 -1010011111110 Allegro 5 -1010011111110 insurance-rate 5 -1010011111110 magnification 5 -1010011111110 pay-for-performance 6 -1010011111110 wholesale-price 7 -1010011111110 price 29877 -1010011111110 farm-price 16 -10100111111110 crumples 1 -10100111111110 1,260,000 1 -10100111111110 re-broadcast 1 -10100111111110 6,102,000 1 -10100111111110 soundnesss 1 -10100111111110 COBOL 1 -10100111111110 scammel 1 -10100111111110 across. 1 -10100111111110 no-ransom 1 -10100111111110 Oddjob 1 -10100111111110 capitalweighted 1 -10100111111110 half-tubes 1 -10100111111110 Tuturo 1 -10100111111110 regressiveness 1 -10100111111110 circumcisions 1 -10100111111110 11,593 1 -10100111111110 busine 1 -10100111111110 201-27 1 -10100111111110 identical. 1 -10100111111110 stop-and-start 1 -10100111111110 telematique 2 -10100111111110 abstractness 2 -10100111111110 twirler 2 -10100111111110 personalization 2 -10100111111110 raisonne 2 -10100111111110 dilation 2 -10100111111110 tem 2 -10100111111110 appreciations 2 -10100111111110 ouput 3 -10100111111110 jokiness 3 -10100111111110 dumbness 3 -10100111111110 capriciousness 3 -10100111111110 value. 4 -10100111111110 poundage 6 -10100111111110 sell-through 6 -10100111111110 capitalizations 28 -10100111111110 jewel 117 -10100111111110 penetration 124 -10100111111110 value 14082 -10100111111110 capitalization 452 -10100111111111 foreign-currencies 1 -10100111111111 near-abstractions 1 -10100111111111 greasy-chopstick 1 -10100111111111 EPA-imposed 1 -10100111111111 DPU 1 -10100111111111 Westand 1 -10100111111111 Supplementaire 1 -10100111111111 Kudu 1 -10100111111111 fluoroscope 1 -10100111111111 huntsman 1 -10100111111111 recarved 1 -10100111111111 fillers-out 1 -10100111111111 250.28 1 -10100111111111 conventionality 1 -10100111111111 insolubility 1 -10100111111111 armoire 1 -10100111111111 1986s 1 -10100111111111 luminescence 1 -10100111111111 headwaiter 1 -10100111111111 spatter 1 -10100111111111 bonum 1 -10100111111111 Ochopee 1 -10100111111111 overshootings 1 -10100111111111 leucovorin 1 -10100111111111 excercises 1 -10100111111111 value.The 1 -10100111111111 maws 1 -10100111111111 inconclusiveness 1 -10100111111111 hindgut 1 -10100111111111 encapsulations 1 -10100111111111 shrimp-like 1 -10100111111111 poohbahs 1 -10100111111111 draughts 1 -10100111111111 rapacity 1 -10100111111111 effusion 1 -10100111111111 Zieg 1 -10100111111111 jimmying 1 -10100111111111 imaginativeness 1 -10100111111111 incandescence 1 -10100111111111 NAVAL 1 -10100111111111 bikkies 1 -10100111111111 Levelers 1 -10100111111111 deformation 1 -10100111111111 espousal 1 -10100111111111 mongeese 1 -10100111111111 countermining 1 -10100111111111 Elverson 1 -10100111111111 dorries 1 -10100111111111 evalution 1 -10100111111111 devourer 1 -10100111111111 asserter 1 -10100111111111 tranfers 1 -10100111111111 reshipment 1 -10100111111111 4,180-yard-minimum 1 -10100111111111 down-phase 1 -10100111111111 nonmeetings 1 -10100111111111 schoolchair 1 -10100111111111 nickel-plated 1 -10100111111111 84,000-square-foot 1 -10100111111111 agglomerations 1 -10100111111111 snobishness 1 -10100111111111 debt-level 1 -10100111111111 Euro-kitchen 1 -10100111111111 blow-ups 1 -10100111111111 calvary 1 -10100111111111 pontificals 1 -10100111111111 pseudo-news 1 -10100111111111 satans 1 -10100111111111 barrenness 1 -10100111111111 popularizer 1 -10100111111111 hardheartedness 1 -10100111111111 minglings 1 -10100111111111 330.38 1 -10100111111111 triptychs 1 -10100111111111 6,061 1 -10100111111111 amendents 1 -10100111111111 deflowering 1 -10100111111111 cross-sections 1 -10100111111111 kill-off 1 -10100111111111 secretion 1 -10100111111111 swards 1 -10100111111111 decoratively 1 -10100111111111 firms. 1 -10100111111111 capacity-manufacturers 1 -10100111111111 sand-sea 1 -10100111111111 frontality 1 -10100111111111 critcism 1 -10100111111111 kwatcha 1 -10100111111111 240-SX 1 -10100111111111 cross-dresser 1 -10100111111111 dybbuk 1 -10100111111111 ventings 1 -10100111111111 saltboxes 1 -10100111111111 serious-mindedness 1 -10100111111111 refigerator 1 -10100111111111 scaling-down 2 -10100111111111 chapatis 2 -10100111111111 harassers 2 -10100111111111 misallocations 2 -10100111111111 dollar-earners 2 -10100111111111 overgrazing 2 -10100111111111 clearings 2 -10100111111111 bouillabaisse 2 -10100111111111 reoiling 2 -10100111111111 indicia 2 -10100111111111 spermicides 2 -10100111111111 friskiness 2 -10100111111111 gracefulness 2 -10100111111111 accretions 2 -10100111111111 nursemaids 2 -10100111111111 cost. 2 -10100111111111 blowups 2 -10100111111111 gradient 2 -10100111111111 undercollection 2 -10100111111111 archeologists 3 -10100111111111 rawness 3 -10100111111111 impiety 3 -10100111111111 rivulets 3 -10100111111111 leavings 4 -10100111111111 gumshoes 4 -10100111111111 demobilization 4 -10100111111111 intakes 4 -10100111111111 amelioration 4 -10100111111111 landers 4 -10100111111111 courts-martial 4 -10100111111111 breaths 5 -10100111111111 swaths 5 -10100111111111 orchestrations 6 -10100111111111 gangplank 7 -10100111111111 inversion 7 -10100111111111 quicksands 7 -10100111111111 extremity 8 -10100111111111 intensification 8 -10100111111111 infliction 9 -10100111111111 amputation 14 -10100111111111 expanse 30 -10100111111111 assortment 90 -10100111111111 quantity 298 -10100111111111 quantities 361 -10100111111111 sums 425 -10100111111111 array 446 -10100111111111 proportion 633 -10100111111111 extent 1488 -10100111111111 amount 8585 -10100111111111 amounts 2272 -1010100000 perfectibility 1 -1010100000 primmest 1 -1010100000 Donners 1 -1010100000 all-incost 1 -1010100000 allurements 1 -1010100000 assasination 1 -1010100000 simultaneity 1 -1010100000 asumption 1 -1010100000 halfshare 1 -1010100000 exarchs 1 -1010100000 timpanist 1 -1010100000 hyperconcerns 1 -1010100000 gulagization 1 -1010100000 relinkage 1 -1010100000 ruralizing 1 -1010100000 shockers 1 -1010100000 kick-off 1 -1010100000 subtotal 1 -1010100000 intolerableness 1 -1010100000 admissability 1 -1010100000 drumbeats 1 -1010100000 counter-signature 1 -1010100000 hairshirt 1 -1010100000 intractibility 1 -1010100000 nonconsolidating 1 -1010100000 proposers 1 -1010100000 supposed-floor 1 -1010100000 fleshpots 1 -1010100000 overthrowal 1 -1010100000 ungovernability 1 -1010100000 flare-off 1 -1010100000 archipelagoes 1 -1010100000 Woottens 1 -1010100000 brutalization 1 -1010100000 corporation-baiters 1 -1010100000 erasure 1 -1010100000 awesomeness 1 -1010100000 possiblility 1 -1010100000 Exploit 1 -1010100000 downslope 1 -1010100000 cost-competitiveness 1 -1010100000 brazenest 1 -1010100000 unwinnability 1 -1010100000 storyline 1 -1010100000 Miao 1 -1010100000 caldron 1 -1010100000 eschewal 1 -1010100000 re-drafting 1 -1010100000 liquidation-net 1 -1010100000 masts 1 -1010100000 faultlines 1 -1010100000 addressees 1 -1010100000 best-tempered 1 -1010100000 second-to-lowest 1 -1010100000 beastliness 1 -1010100000 witlessness 1 -1010100000 silverwork 1 -1010100000 output-per-man-hour 1 -1010100000 detectability 1 -1010100000 Soles 1 -1010100000 remoulade 1 -1010100000 internals 1 -1010100000 Philips-GE 1 -1010100000 tricentennial 1 -1010100000 culimination 1 -1010100000 Manvilles 1 -1010100000 midpart 1 -1010100000 semi-myth 1 -1010100000 timidities 1 -1010100000 queenpin 1 -1010100000 most-damaging 1 -1010100000 jumpshot 1 -1010100000 breezeway 1 -1010100000 convolution 1 -1010100000 slumbers 1 -1010100000 upstroke 1 -1010100000 lawyer-director 1 -1010100000 unpersuasiveness 1 -1010100000 belfry 1 -1010100000 gurgle 1 -1010100000 Fratry 1 -1010100000 newphew 1 -1010100000 27,000-per-game 1 -1010100000 lawyer-chairman 1 -1010100000 raggedness 1 -1010100000 pensiveness 1 -1010100000 unworkability 1 -1010100000 regularities 1 -1010100000 fire-bombings 1 -1010100000 interrelations 1 -1010100000 zaniest 1 -1010100000 deservedness 1 -1010100000 outfields 1 -1010100000 Latinization 1 -1010100000 Teachings 1 -1010100000 loftiness 1 -1010100000 Synode 1 -1010100000 hokiness 1 -1010100000 streetcorners 1 -1010100000 justiciability 1 -1010100000 near-impossibility 1 -1010100000 re-cartelization 1 -1010100000 autoreferentiality 1 -1010100000 re-Balkanization 1 -1010100000 quackeries 1 -1010100000 Editorship 1 -1010100000 tohubohu 1 -1010100000 Guere 1 -1010100000 slipstream 1 -1010100000 thralldom 1 -1010100000 ineffectuality 1 -1010100000 uncompetitiveness 1 -1010100000 inapplicability 1 -1010100000 clacking 1 -1010100000 coauthor 1 -1010100000 67,688 1 -1010100000 quietness 1 -1010100000 hollowing-out 1 -1010100000 reinstitution 1 -1010100000 backflow 1 -1010100000 equivalant 1 -1010100000 serviceability 1 -1010100000 Comtroller 1 -1010100000 hero-city 1 -1010100000 goldmine 1 -1010100000 chaperonage 1 -1010100000 linchpins 1 -1010100000 tercentenary 1 -1010100000 great-great-great-great-grandson 1 -1010100000 conceitedness 1 -1010100000 luridness 1 -1010100000 engineers-entrepreneurs 1 -1010100000 grandaddy 1 -1010100000 assymetry 1 -1010100000 policy-programming 1 -1010100000 pashas 1 -1010100000 savageness 1 -1010100000 near-success 1 -1010100000 misconstruing 1 -1010100000 decimator 1 -1010100000 Peopling 1 -1010100000 self-concept 1 -1010100000 sparsity 1 -1010100000 owner-lessor 1 -1010100000 shoddiness 1 -1010100000 taproot 1 -1010100000 Rubbias 1 -1010100000 repairer 1 -1010100000 carving-up 1 -1010100000 prince-bishoprics 1 -1010100000 unseemliness 1 -1010100000 goliaths 1 -1010100000 inevitablity 1 -1010100000 secretaries-general 1 -1010100000 developer-king 1 -1010100000 rampagings 1 -1010100000 discursions 1 -1010100000 director-generalship 1 -1010100000 paramountcy 1 -1010100000 transposition 1 -1010100000 Kinsleys 1 -1010100000 V-tails 1 -1010100000 tutelege 1 -1010100000 spottiness 1 -1010100000 re-infection 1 -1010100000 logarithms 1 -1010100000 logarithm 1 -1010100000 pseudo-priest 1 -1010100000 Fugazys 1 -1010100000 leader-elect 1 -1010100000 2,157,513 1 -1010100000 absent-mindedness 1 -1010100000 paganism 1 -1010100000 Forefront 1 -1010100000 brasswork 1 -1010100000 glamorization 1 -1010100000 explusion 1 -1010100000 tragus 1 -1010100000 Carriages 1 -1010100000 two-dimensionality 1 -1010100000 irresistability 1 -1010100000 ghastliness 1 -1010100000 defusion 1 -1010100000 possibity 1 -1010100000 Companions 1 -1010100000 Vicar 1 -1010100000 topping-out 1 -1010100000 moulting 1 -1010100000 depradations 1 -1010100000 vacuities 1 -1010100000 balkiness 1 -1010100000 dean-designate 1 -1010100000 Gaffes 1 -1010100000 voraciousness 1 -1010100000 circulator 1 -1010100000 peripheries 1 -1010100000 governership 1 -1010100000 hugeness 1 -1010100000 re-bedding 1 -1010100000 townhomes 1 -1010100000 YWCA 1 -1010100000 almost-Republic 1 -1010100000 impressiveness 1 -1010100000 near-destruction 1 -1010100000 cryptologists 1 -1010100000 currency-exacerbating 1 -1010100000 fussiest 1 -1010100000 quesiton 1 -1010100000 patho-physiology 1 -1010100000 momentousness 1 -1010100000 simplicities 1 -1010100000 gospels 1 -1010100000 fulminations 1 -1010100000 plaister 1 -1010100000 protectionism-by-quota 1 -1010100000 simplemindedness 1 -1010100000 unchaining 1 -1010100000 Furmint 1 -1010100000 Afrikanerization 1 -1010100000 de-socialization 1 -1010100000 feasability 1 -1010100000 molestation 1 -1010100000 non-dischargeability 1 -1010100000 monetization 1 -1010100000 ripple-effects 1 -1010100000 superdollar 1 -1010100000 real-politik 1 -1010100000 porousness 1 -1010100000 lead-management 1 -1010100000 tastefulness 1 -1010100000 506,103 1 -1010100000 best/Word 1 -1010100000 price/Sell 1 -1010100000 cobbles 1 -1010100000 non-guilt 1 -1010100000 give-ups 1 -1010100000 inadvisability 1 -1010100000 recartelization 1 -1010100000 sordidness 1 -1010100000 ouflow 1 -1010100000 middle-class-ification 1 -1010100000 massiveness 1 -1010100000 insufficiencies 1 -1010100000 senselessness 1 -1010100000 insidiousness 1 -1010100000 irreducibility 1 -1010100000 underrepresentation 1 -1010100000 last-written 1 -1010100000 wispiest 1 -1010100000 relection 1 -1010100000 mantles 1 -1010100000 82,229 1 -1010100000 nascency 1 -1010100000 wolfishness 1 -1010100000 deploymnent 1 -1010100000 apprach 1 -1010100000 conjuncture 1 -1010100000 ridgetops 1 -1010100000 thump-thump 1 -1010100000 Goverment 1 -1010100000 museumization 1 -1010100000 overharvesting 1 -1010100000 pseudoreforms 1 -1010100000 romanization 1 -1010100000 gentlepersons 1 -1010100000 tumbrils 1 -1010100000 metabolites 1 -1010100000 undermanning 1 -1010100000 perpetration 1 -1010100000 managership 1 -1010100000 microdynamics 1 -1010100000 delinking 1 -1010100000 counter-arguments 1 -1010100000 upper-third 1 -1010100000 resurgency 1 -1010100000 near-extinction 1 -1010100000 fifteenth 1 -1010100000 mutability 1 -1010100000 fantail 1 -1010100000 congeries 1 -1010100000 rewinging 1 -1010100000 liberalness 1 -1010100000 biggest-sellers 1 -1010100000 centerpoint 1 -1010100000 pragmatics 1 -1010100000 working-out 1 -1010100000 obtainment 1 -1010100000 sound-score 1 -1010100000 experimentalism 1 -1010100000 proscriptions 1 -1010100000 near-evaporation 1 -1010100000 mujahedeenand 1 -1010100000 co-obligation 1 -1010100000 Mushroompeople 1 -1010100000 send-ups 1 -1010100000 potentialities 1 -1010100000 irresponsibilities 1 -1010100000 time-styles 1 -1010100000 director-manager 1 -1010100000 Bourough 1 -1010100000 sandhills 1 -1010100000 freeze-drying 1 -1010100000 maya-veil 1 -1010100000 wastage 1 -1010100000 showcase-nation 1 -1010100000 cutdown 1 -1010100000 Tropic 1 -1010100000 falsest 1 -1010100000 blondest 1 -1010100000 Hunchback 1 -1010100000 outsides 1 -1010100000 elephant-in-the-room 1 -1010100000 Jacksonization 1 -1010100000 defender/purveyors 1 -1010100000 predations 1 -1010100000 duty-value 1 -1010100000 PC-ization 1 -1010100000 clack-clack 1 -1010100000 archvillains 1 -1010100000 Ides 1 -1010100000 combustibility 1 -1010100000 psychiatrist-author 1 -1010100000 excitment 1 -1010100000 pauperization 1 -1010100000 self-administration 1 -1010100000 conductorship 1 -1010100000 Satan-worshippers 1 -1010100000 mini-saga 1 -1010100000 knowledgeability 1 -1010100000 grandniece 1 -1010100000 unwisdom 1 -1010100000 pussillanimity 1 -1010100000 tersest 1 -1010100000 winnner 1 -1010100000 carpet-bombing 1 -1010100000 peeling-back 1 -1010100000 witness/To 1 -1010100000 stratification 1 -1010100000 archangels 1 -1010100000 unpredictablity 1 -1010100000 apse 1 -1010100000 interworkings 1 -1010100000 liklihood 1 -1010100000 slipperiness 1 -1010100000 formulaton 1 -1010100000 right-to-freedom 1 -1010100000 world-68 1 -1010100000 Staatskappelle 1 -1010100000 laughing-stock 1 -1010100000 Dreamboy 1 -1010100000 distruction 1 -1010100000 Collinses 1 -1010100000 ruralist 1 -1010100000 udder 1 -1010100000 relegation 1 -1010100000 archidrama 1 -1010100000 wasteful-racist-savagery 1 -1010100000 cane-cutters 1 -1010100000 inter-operability 1 -1010100000 enervation 1 -1010100000 re-engining 1 -1010100000 vestibules 1 -1010100000 takedown 1 -1010100000 destigmatization 1 -1010100000 rampancy 1 -1010100000 dethroning 1 -1010100000 melting-down 1 -1010100000 gounds 1 -1010100000 twits 1 -1010100000 near-completion 1 -1010100000 punctilio 1 -1010100000 paylist 1 -1010100000 enmeshment 1 -1010100000 sparseness 1 -1010100000 intenseness 1 -1010100000 more-than-doubling 1 -1010100000 Heyday 1 -1010100000 sob-wallow 1 -1010100000 sickliest 1 -1010100000 ebb-and-flow 1 -1010100000 then-Minister 1 -1010100000 excitements 1 -1010100000 Rajah 1 -1010100000 headwall 1 -1010100000 belatedness 1 -1010100000 diarist 1 -1010100000 Prayerbook 1 -1010100000 strivings 1 -1010100000 millenarians 1 -1010100000 invigilators 1 -1010100000 interpenetration 1 -1010100000 availablity 1 -1010100000 Count-Duke 1 -1010100000 illusiveness 1 -1010100000 debility 1 -1010100000 luster-loss 1 -1010100000 Dhofaris 1 -1010100000 autoclave 1 -1010100000 incurrence 1 -1010100000 boxful 1 -1010100000 tintinnabulation 1 -1010100000 pseudo-religiosity 1 -1010100000 keystones 1 -1010100000 Glorification 1 -1010100000 sucession 1 -1010100000 billfolds 1 -1010100000 weaker-performing 1 -1010100000 skillfulness 1 -1010100000 appearence 1 -1010100000 handmaidens 1 -1010100000 co-signer 1 -1010100000 low-point 1 -1010100000 meaningfulness 1 -1010100000 then-head 1 -1010100000 re-arrests 1 -1010100000 over-production 1 -1010100000 rightest 1 -1010100000 firms-makers 1 -1010100000 price/performance 1 -1010100000 seaworthiness 1 -1010100000 micro-world 1 -1010100000 Korea-basher 1 -1010100000 nerve-center 1 -1010100000 Chimera 1 -1010100000 hocuspocus 1 -1010100000 Unversity 1 -1010100000 essentiality 2 -1010100000 morrow 2 -1010100000 arch-nemesis 2 -1010100000 granddaddies 2 -1010100000 RICOing 2 -1010100000 absense 2 -1010100000 near-quadrupling 2 -1010100000 riservas 2 -1010100000 bicentenary 2 -1010100000 tenuousness 2 -1010100000 exportability 2 -1010100000 Univeristy 2 -1010100000 brashest 2 -1010100000 undercarriage 2 -1010100000 treasurer-elect 2 -1010100000 unsual 2 -1010100000 showiness 2 -1010100000 healthfulness 2 -1010100000 yen-value 2 -1010100000 Burdens 2 -1010100000 Irving-Bank 2 -1010100000 parsons 2 -1010100000 proletarianization 2 -1010100000 governability 2 -1010100000 aft-section 2 -1010100000 Sovietization 2 -1010100000 frivolousness 2 -1010100000 unfitness 2 -1010100000 acme 2 -1010100000 quantification 2 -1010100000 presense 2 -1010100000 discoverer 2 -1010100000 cloakrooms 2 -1010100000 hurly-burly 2 -1010100000 arch-enemy 2 -1010100000 immensity 2 -1010100000 Bursons 2 -1010100000 6550 2 -1010100000 chairperson 2 -1010100000 asserters 2 -1010100000 battle-cry 2 -1010100000 Realm 2 -1010100000 co-beneficiary 2 -1010100000 implausibilities 2 -1010100000 viewfinder 2 -1010100000 firstlings 2 -1010100000 Concurrence 2 -1010100000 federalization 2 -1010100000 head. 2 -1010100000 mid-section 2 -1010100000 job-hop 2 -1010100000 steppes 3 -1010100000 Verge 3 -1010100000 workability 3 -1010100000 prongs 3 -1010100000 roughness 3 -1010100000 dustbin 3 -1010100000 dregs 3 -1010100000 JPO 3 -1010100000 scruff 3 -1010100000 Grandmothers 3 -1010100000 promptings 3 -1010100000 shallows 3 -1010100000 antechamber 3 -1010100000 ides 3 -1010100000 wastefulness 3 -1010100000 quintessence 3 -1010100000 performace 3 -1010100000 Nahnken 3 -1010100000 business-minded 3 -1010100000 Aged 4 -1010100000 inviolability 4 -1010100000 feminization 4 -1010100000 tail-end 4 -1010100000 reestablishment 5 -1010100000 heterogeneity 5 -1010100000 flimsiest 5 -1010100000 imminence 5 -1010100000 afterglow 6 -1010100000 expiry 7 -1010100000 Proceedings 7 -1010100000 rudiments 8 -1010100000 advisability 9 -1010100000 perimeter 14 -1010100000 foothills 19 -1010100000 makings 25 -1010100000 epitome 27 -1010100000 ravages 30 -1010100000 mastermind 33 -1010100000 Advancement 55 -1010100000 outskirts 67 -1010100000 auspices 87 -1010100000 ante 97 -1010100000 behest 117 -1010100000 helm 157 -1010100000 brink 187 -1010100000 eve 208 -1010100000 verge 212 -1010100000 end 15208 -1010100000 wake 1646 -1010100001 sympathic 1 -1010100001 seven-race 1 -1010100001 criminal. 1 -1010100001 questioning. 1 -1010100001 Graveyard 1 -1010100001 bulllet 1 -1010100001 Reveller 1 -1010100001 antipodes 1 -1010100001 Mid-80s 1 -1010100001 drainers 1 -1010100001 Tates 1 -1010100001 -----. 1 -1010100001 boards. 1 -1010100001 Constitution. 1 -1010100001 l-word 1 -1010100001 mass. 1 -1010100001 EuroWeenies 1 -1010100001 eight-ball 1 -1010100001 steaminess 1 -1010100001 R-word 1 -1010100001 Script 1 -1010100001 erosion. 1 -1010100001 embodiers 1 -1010100001 Spiderwoman 1 -1010100001 Brute 1 -1010100001 Fifth. 1 -1010100001 Showgirl 1 -1010100001 Moto-Monsters 1 -1010100001 opposite. 1 -1010100001 makeovers 1 -1010100001 referrants 1 -1010100001 Wetbacks 1 -1010100001 afternoon. 1 -1010100001 ghettoization 1 -1010100001 refreshest 1 -1010100001 Homefront 1 -1010100001 Powerless 1 -1010100001 28000-mark 1 -1010100001 cracks. 1 -1010100001 pokies 1 -1010100001 Populace 1 -1010100001 dentist. 1 -1010100001 riotors 1 -1010100001 Gunboat 1 -1010100001 midsix-figure 1 -1010100001 Bonnanno 1 -1010100001 direcor 1 -1010100001 Streaker 1 -1010100001 paciencia 1 -1010100001 presuppositions 1 -1010100001 lacunae 1 -1010100001 Keans 1 -1010100001 Mexicanization 1 -1010100001 inegration 1 -1010100001 clone-killers 1 -1010100001 Occident 1 -1010100001 Paycock 1 -1010100001 bier 2 -1010100001 salutation 2 -1010100001 relentlessness 2 -1010100001 avatar 2 -1010100001 altos 2 -1010100001 commonalities 2 -1010100001 sexiness 2 -1010100001 crudities 2 -1010100001 ballabile 2 -1010100001 etiology 2 -1010100001 trier 2 -1010100001 foolhardiness 2 -1010100001 ephemera 2 -1010100001 sketchiness 2 -1010100001 privations 2 -1010100001 uselessness 2 -1010100001 nonconsummation 2 -1010100001 Fetzers 2 -1010100001 Grinch 2 -1010100001 repetitiveness 2 -1010100001 exorcising 2 -1010100001 log-jam 2 -1010100001 concatenation 2 -1010100001 tax-cutters 2 -1010100001 Traps 2 -1010100001 overestimation 2 -1010100001 worldliness 2 -1010100001 gestalt 2 -1010100001 admissibility 2 -1010100001 dubiousness 2 -1010100001 productiveness 2 -1010100001 subpopulation 2 -1010100001 Zelig 2 -1010100001 backbones 2 -1010100001 kindnesses 2 -1010100001 infrequency 2 -1010100001 exultation 2 -1010100001 evasiveness 2 -1010100001 whump 2 -1010100001 unevenness 2 -1010100001 bedsides 2 -1010100001 novelization 2 -1010100001 transom 2 -1010100001 sanctification 2 -1010100001 reliabilty 2 -1010100001 allures 2 -1010100001 credit-ratings 2 -1010100001 debilitations 2 -1010100001 maldistribution 2 -1010100001 rearrests 2 -1010100001 unawareness 2 -1010100001 Parlement 2 -1010100001 quais 2 -1010100001 co-mingling 2 -1010100001 legitimation 2 -1010100001 balkanization 2 -1010100001 ubiquitousness 3 -1010100001 bestowal 3 -1010100001 ramblings 3 -1010100001 exportation 3 -1010100001 standard-bearers 3 -1010100001 compactness 3 -1010100001 formalization 3 -1010100001 breakoff 3 -1010100001 invalidity 3 -1010100001 elusiveness 3 -1010100001 pertinence 3 -1010100001 recolonization 3 -1010100001 formalism 3 -1010100001 underconsumption 3 -1010100001 centrality 3 -1010100001 ruck 3 -1010100001 headiness 3 -1010100001 pendency 3 -1010100001 repertoires 3 -1010100001 Shuberts 3 -1010100001 Hound 3 -1010100001 peregrinations 3 -1010100001 centerpieces 3 -1010100001 rareness 3 -1010100001 fetishists 3 -1010100001 Getbacks 3 -1010100001 reformulation 3 -1010100001 granddad 3 -1010100001 commonest 3 -1010100001 after-effect 3 -1010100001 cupola 3 -1010100001 broadness 3 -1010100001 insolence 3 -1010100001 reappraisals 3 -1010100001 capstone 4 -1010100001 genuineness 4 -1010100001 disbandment 4 -1010100001 impenetrability 4 -1010100001 eaves 4 -1010100001 hinterland 4 -1010100001 Shrine 4 -1010100001 sensualist 4 -1010100001 recoverability 4 -1010100001 explosiveness 4 -1010100001 obverse 4 -1010100001 Marquess 4 -1010100001 bureaucratization 4 -1010100001 intermingling 4 -1010100001 ubiquity 4 -1010100001 enfranchisement 4 -1010100001 reinterpretations 4 -1010100001 perversions 4 -1010100001 regressivity 4 -1010100001 waistband 4 -1010100001 dreariness 4 -1010100001 handmaiden 4 -1010100001 unlikeliest 4 -1010100001 nullification 4 -1010100001 meaninglessness 4 -1010100001 intractability 4 -1010100001 ambit 4 -1010100001 watchwords 4 -1010100001 edification 4 -1010100001 steepness 5 -1010100001 showplace 5 -1010100001 depopulation 5 -1010100001 labyrinths 5 -1010100001 subjugation 5 -1010100001 fullness 5 -1010100001 weightlessness 5 -1010100001 prairies 5 -1010100001 ascendency 5 -1010100001 superficiality 5 -1010100001 intricacy 5 -1010100001 consolations 5 -1010100001 Deed 5 -1010100001 battlements 5 -1010100001 ascendance 5 -1010100001 Extraterrestrial 5 -1010100001 practicalities 5 -1010100001 rapidity 6 -1010100001 workhorses 6 -1010100001 wilds 6 -1010100001 entrails 6 -1010100001 locus 6 -1010100001 crucible 6 -1010100001 atmospherics 6 -1010100001 bard 6 -1010100001 proscription 6 -1010100001 astuteness 6 -1010100001 Isthmus 6 -1010100001 Christianization 6 -1010100001 vehemence 6 -1010100001 ignominy 6 -1010100001 lightness 6 -1010100001 prolongation 6 -1010100001 beheading 6 -1010100001 acuteness 6 -1010100001 idiosyncracies 6 -1010100001 commemoration 7 -1010100001 barrios 7 -1010100001 editorship 7 -1010100001 Gospels 7 -1010100001 smallness 7 -1010100001 insides 7 -1010100001 tiller 7 -1010100001 apotheosis 7 -1010100001 enforceability 7 -1010100001 perversity 7 -1010100001 flotsam 7 -1010100001 satisfactions 7 -1010100001 greening 7 -1010100001 completeness 7 -1010100001 taxability 7 -1010100001 cogency 7 -1010100001 solidity 8 -1010100001 doorsteps 8 -1010100001 illogic 8 -1010100001 Assemblies 8 -1010100001 determinants 8 -1010100001 depredations 8 -1010100001 canons 8 -1010100001 abhorrence 8 -1010100001 lateness 8 -1010100001 abruptness 8 -1010100001 victimization 8 -1010100001 seasonality 9 -1010100001 gist 9 -1010100001 crucifixion 10 -1010100001 debasement 10 -1010100001 radicalization 10 -1010100001 ramparts 10 -1010100001 ugliness 10 -1010100001 propagation 10 -1010100001 sufferings 10 -1010100001 bosom 10 -1010100001 rightness 11 -1010100001 agonies 11 -1010100001 Annals 11 -1010100001 feasts 11 -1010100001 robustness 11 -1010100001 brightness 11 -1010100001 narrowness 11 -1010100001 admonitions 11 -1010100001 collectibility 11 -1010100001 backwaters 11 -1010100001 sustainability 12 -1010100001 arbiters 12 -1010100001 swiftness 12 -1010100001 perpetuation 12 -1010100001 subtext 12 -1010100001 harshness 12 -1010100001 trustworthiness 12 -1010100001 usurpation 13 -1010100001 remoteness 13 -1010100001 bluest 13 -1010100001 spectre 13 -1010100001 vastness 13 -1010100001 aftereffects 13 -1010100001 cyclicality 14 -1010100001 realms 14 -1010100001 apex 14 -1010100001 nub 14 -1010100001 granddaddy 14 -1010100001 flatness 14 -1010100001 enumeration 14 -1010100001 unavailability 14 -1010100001 awkwardness 14 -1010100001 correctness 15 -1010100001 evocation 15 -1010100001 epicenter 15 -1010100001 indignity 15 -1010100001 vortex 15 -1010100001 stationing 15 -1010100001 yoke 15 -1010100001 tribulations 15 -1010100001 pantheon 15 -1010100001 destinies 15 -1010100001 suddenness 16 -1010100001 overvaluation 16 -1010100001 reincarnation 16 -1010100001 nick 16 -1010100001 fickleness 16 -1010100001 vicissitudes 16 -1010100001 underside 16 -1010100001 betterment 16 -1010100001 Decade 17 -1010100001 totality 17 -1010100001 hallmarks 17 -1010100001 midpoint 17 -1010100001 bowels 17 -1010100001 pervasiveness 18 -1010100001 peculiarities 18 -1010100001 silliness 18 -1010100001 ringleader 18 -1010100001 impoverishment 19 -1010100001 thinness 19 -1010100001 enormity 19 -1010100001 applicability 19 -1010100001 veracity 19 -1010100001 signers 20 -1010100001 bane 20 -1010100001 politicization 20 -1010100001 traumas 20 -1010100001 complexion 20 -1010100001 watchword 21 -1010100001 tedium 21 -1010100001 mosaics 22 -1010100001 aroma 22 -1010100001 rubric 22 -1010100001 ghettos 22 -1010100001 appropriateness 23 -1010100001 aegis 24 -1010100001 genesis 24 -1010100001 antithesis 24 -1010100001 resurrection 25 -1010100001 subtleties 26 -1010100001 imperatives 26 -1010100001 eloquence 27 -1010100001 ferocity 27 -1010100001 width 27 -1010100001 follies 27 -1010100001 purview 27 -1010100001 perpetrators 27 -1010100001 embodiment 28 -1010100001 annals 28 -1010100001 joys 28 -1010100001 juxtaposition 29 -1010100001 squalor 29 -1010100001 comforts 30 -1010100001 aftershocks 30 -1010100001 fragmentation 30 -1010100001 unpredictability 30 -1010100001 contours 30 -1010100001 thickness 31 -1010100001 jaws 31 -1010100001 din 31 -1010100001 whims 32 -1010100001 inadequacy 32 -1010100001 sanctity 33 -1010100001 accompaniment 33 -1010100001 ascendancy 33 -1010100001 lifeblood 33 -1010100001 blessings 34 -1010100001 crest 35 -1010100001 vagueness 35 -1010100001 crux 35 -1010100001 nuances 35 -1010100001 primacy 35 -1010100001 riskiness 35 -1010100001 intricacies 36 -1010100001 pinnacle 37 -1010100001 caliber 38 -1010100001 tempo 38 -1010100001 marketability 38 -1010100001 futility 39 -1010100001 periphery 39 -1010100001 prevalence 41 -1010100001 inevitability 41 -1010100001 throes 42 -1010100001 richness 42 -1010100001 chagrin 43 -1010100001 desirability 44 -1010100001 fringes 44 -1010100001 mantle 45 -1010100001 nucleus 45 -1010100001 vicinity 45 -1010100001 coattails 45 -1010100001 creditworthiness 46 -1010100001 durability 48 -1010100001 culmination 48 -1010100001 fragility 50 -1010100001 rigors 50 -1010100001 vanguard 51 -1010100001 footsteps 52 -1010100001 linchpin 56 -1010100001 confines 56 -1010100001 Statue 57 -1010100001 evils 57 -1010100001 brainchild 57 -1010100001 disintegration 57 -1010100001 ashes 58 -1010100001 glare 59 -1010100001 vagaries 62 -1010100001 importation 62 -1010100001 propriety 68 -1010100001 trappings 68 -1010100001 wreckage 69 -1010100001 horrors 69 -1010100001 internationalization 69 -1010100001 guise 70 -1010100001 ire 72 -1010100001 whereabouts 73 -1010100001 perils 77 -1010100001 beginnings 78 -1010100001 wrath 82 -1010100001 Pledge 83 -1010100001 disappearance 83 -1010100001 soundness 86 -1010100001 flaps 86 -1010100001 dynamics 87 -1010100001 mysteries 88 -1010100001 attractiveness 91 -1010100001 backbone 93 -1010100001 framers 94 -1010100001 detriment 97 -1010100001 complexities 100 -1010100001 deductibility 102 -1010100001 abandonment 105 -1010100001 allure 109 -1010100001 mercy 113 -1010100001 onset 117 -1010100001 brunt 117 -1010100001 wording 120 -1010100001 breadth 133 -1010100001 workings 134 -1010100001 advent 137 -1010100001 forefront 141 -1010100001 realm 143 -1010100001 spectacle 151 -1010100001 severity 152 -1010100001 legality 154 -1010100001 seriousness 160 -1010100001 duration 172 -1010100001 imposition 175 -1010100001 virtues 179 -1010100001 outset 194 -1010100001 centerpiece 198 -1010100001 demise 200 -1010100001 composition 207 -1010100001 validity 210 -1010100001 specter 216 -1010100001 intensity 217 -1010100001 contents 220 -1010100001 height 238 -1010100001 sake 243 -1010100001 constitutionality 250 -1010100001 aftermath 253 -1010100001 plight 260 -1010100001 complexity 275 -1010100001 tide 318 -1010100001 resignations 331 -1010100001 depth 340 -1010100001 magnitude 344 -1010100001 heels 370 -1010100001 dangers 386 -1010100001 merits 389 -1010100001 destruction 444 -1010100001 context 445 -1010100001 pursuit 449 -1010100001 availability 486 -1010100001 midst 493 -1010100001 formation 514 -1010100001 significance 536 -1010100001 likelihood 573 -1010100001 scope 593 -1010100001 existence 629 -1010100001 fate 652 -1010100001 remainder 798 -1010100001 spirit 804 -1010100001 consequences 829 -1010100001 creation 945 -1010100001 timing 960 -1010100001 bulk 979 -1010100001 absence 1063 -1010100001 importance 1167 -1010100001 chances 1269 -1010100001 outcome 1277 -1010100001 prospect 1382 -1010100001 bottom 1422 -1010100001 nature 1562 -1010100001 middle 1770 -1010100001 symbol 1788 -1010100001 effects 2339 -1010100001 possibility 2811 -1010100001 rest 4536 -1010100001 size 3792 -10101000100 Oehler 1 -10101000100 under-reserving 1 -10101000100 sainting 1 -10101000100 fee-for-research 1 -10101000100 justificatory 1 -10101000100 rocks-and-tear-gas 1 -10101000100 Armenia-Azerbaijan 1 -10101000100 IBM-Digital 1 -10101000100 Fortnighter 1 -10101000100 Vietnamese-Chinese 1 -10101000100 Dukakis-Biden 1 -10101000100 Stealers 1 -10101000100 hawks-vs.-doves 1 -10101000100 Contra-Sandinistas 1 -10101000100 CINCPAC 1 -10101000100 defective-pricing 1 -10101000100 offshore-lease 1 -10101000100 Magi 1 -10101000100 Haves 1 -10101000100 already-bitter 1 -10101000100 133-day-old 1 -10101000100 Under-25s 1 -10101000100 military-buildup 1 -10101000100 imported-oil 1 -10101000100 jump-shot 1 -10101000100 quarter- 1 -10101000100 Iraqi-Iranian 1 -10101000100 already-fierce 1 -10101000100 thrash/punk 1 -10101000100 NCAA-SMU 1 -10101000100 triple- 1 -10101000100 Fantasyland 1 -10101000100 Campeau-Macy 1 -10101000100 35-year-long 1 -10101000100 Paine-Burke 1 -10101000100 U.S.-Singapore 1 -10101000100 burdensharing 1 -10101000100 Democratic-nomination 1 -10101000100 Hoylake/B.A.T 1 -10101000100 pen-pal 1 -10101000100 Strivers 1 -10101000100 Insecures 1 -10101000100 450-year-old 1 -10101000100 Jackson-Dukakis 1 -10101000100 Superslim 1 -10101000100 underpersoned 1 -10101000100 90- 1 -10101000100 Conflagration 1 -10101000100 global-warming 1 -10101000100 cattle-lifter 1 -10101000100 forfeiture-law 1 -10101000100 Treasury-Fed 1 -10101000100 27-day-old 1 -10101000100 phoneswitch 1 -10101000100 ditch-digging 1 -10101000100 nuclear-insurance 1 -10101000100 guy-girlfriend 1 -10101000100 Armenian-Azerbaijan 1 -10101000100 production-ceiling 1 -10101000100 B.A.T-Farmers 1 -10101000100 torture-death 2 -10101000100 relisting 2 -10101000100 paroxysms 2 -10101000100 amiability 2 -10101000100 effervescence 2 -10101000100 PFL 2 -10101000100 corrosiveness 2 -10101000100 Cascades-Pinault 2 -10101000100 charioteer 2 -10101000100 avowals 2 -10101000100 crevasses 2 -10101000100 fishing-rights 2 -10101000100 pluckiness 2 -10101000100 retransmission 2 -10101000100 quarterlys 2 -10101000100 baluns 2 -10101000100 retractions 2 -10101000100 floatations 3 -10101000100 miscoding 3 -10101000100 gratifications 3 -10101000100 reconvening 3 -10101000100 brazenness 3 -10101000100 wallflowers 3 -10101000100 placenta 3 -10101000100 Caisses 3 -10101000100 exoneration 4 -10101000100 haughtiness 4 -10101000100 mildness 4 -10101000100 nonexistence 4 -10101000100 consecration 4 -10101000100 communization 4 -10101000100 beatification 4 -10101000100 non-use 4 -10101000100 murkiness 4 -10101000100 finalization 4 -10101000100 floodgate 4 -10101000100 skimpiest 5 -10101000100 quietude 5 -10101000100 Embarrassment 5 -10101000100 recertification 5 -10101000100 derivation 5 -10101000100 pull-out 5 -10101000100 stay-at-homes 5 -10101000100 wrongness 5 -10101000100 relinquishment 5 -10101000100 half-life 6 -10101000100 lift-off 6 -10101000100 shuttering 6 -10101000100 fresco 6 -10101000100 re-employment 6 -10101000100 blastoff 6 -10101000100 revocations 7 -10101000100 disinclination 7 -10101000100 heckling 7 -10101000100 TFR 7 -10101000100 reimposition 9 -10101000100 rediscovery 10 -10101000100 prism 10 -10101000100 dismantlement 11 -10101000100 retina 11 -10101000100 insertion 13 -10101000100 recision 14 -10101000100 implantation 14 -10101000100 abrogation 14 -10101000100 reintroduction 15 -10101000100 near-collapse 16 -10101000100 invalidation 16 -10101000100 renomination 17 -10101000100 test-firing 17 -10101000100 maximization 18 -10101000100 discontinuance 19 -10101000100 re-emergence 20 -10101000100 nonpayment 25 -10101000100 discontinuation 26 -10101000100 reversion 26 -10101000100 reclassification 28 -10101000100 disqualification 31 -10101000100 extinguishment 32 -10101000100 flotation 37 -10101000100 underpayment 39 -10101000100 annexation 40 -10101000100 forerunner 42 -10101000100 redeployment 43 -10101000100 spin-off 44 -10101000100 disbursement 45 -10101000100 reconsideration 52 -10101000100 revocation 52 -10101000100 repudiation 52 -10101000100 repatriation 53 -10101000100 elevation 54 -10101000100 renegotiation 56 -10101000100 inauguration 68 -10101000100 abolition 81 -10101000100 defection 82 -10101000100 nationalization 91 -10101000100 phase-out 94 -10101000100 restatement 94 -10101000100 dissolution 104 -10101000100 expulsion 120 -10101000100 cutoff 130 -10101000100 pullout 136 -10101000100 seizure 156 -10101000100 postponement 161 -10101000100 inclusion 170 -10101000100 enactment 175 -10101000100 disposition 178 -10101000100 resale 202 -10101000100 closure 205 -10101000100 ouster 230 -10101000100 emergence 232 -10101000100 restoration 272 -10101000100 shutdown 293 -10101000100 installation 305 -10101000100 implementation 314 -10101000100 cancellation 319 -10101000100 deployment 357 -10101000100 dismissal 392 -10101000100 termination 421 -10101000100 adoption 439 -10101000100 issuance 477 -10101000100 spinoff 512 -10101000100 elimination 520 -10101000100 shipment 529 -10101000100 removal 546 -10101000100 diversion 551 -10101000100 rejection 616 -10101000100 expiration 630 -10101000100 suspension 670 -10101000100 introduction 775 -10101000100 redemption 993 -10101000100 withdrawal 1011 -10101000100 sale 17225 -10101000100 conversion 1028 -10101000101 coordinations 1 -10101000101 oversuppply 1 -10101000101 overcounting 1 -10101000101 atmoshpere 1 -10101000101 sale/lease-back 1 -10101000101 eon 1 -10101000101 etimate 1 -10101000101 eaing 1 -10101000101 employer-licensing 1 -10101000101 800-home 1 -10101000101 agglomerate 1 -10101000101 oxbow 1 -10101000101 candidatetens 1 -10101000101 recession-unemployment 1 -10101000101 ex-worker 1 -10101000101 1945-1950 1 -10101000101 upvaluation 1 -10101000101 itemization 1 -10101000101 affilliate 1 -10101000101 apreciation 1 -10101000101 plat 1 -10101000101 exemplification 1 -10101000101 miniversion 1 -10101000101 mega-purchases 1 -10101000101 Eruption 1 -10101000101 245-unit 1 -10101000101 torture-murder 1 -10101000101 innnovative 1 -10101000101 torture-slaying 1 -10101000101 Iowa-Purdue 1 -10101000101 outcropping 1 -10101000101 all-timer 1 -10101000101 Offshoot 1 -10101000101 Sunsplash 1 -10101000101 waste-burial 1 -10101000101 annexations 2 -10101000101 BASHING 2 -10101000101 aquisition 2 -10101000101 loneliest 2 -10101000101 Suppression 2 -10101000101 HERO 2 -10101000101 quincentennial 2 -10101000101 augmentation 2 -10101000101 auto-transfuser 2 -10101000101 evidence-gathering 2 -10101000101 contract-award 2 -10101000101 reinvestigation 2 -10101000101 FOUNDER 2 -10101000101 ex-mistress 2 -10101000101 detainment 2 -10101000101 poison-gassing 2 -10101000101 counteractions 2 -10101000101 lowliest 2 -10101000101 centaur 3 -10101000101 bouncers 3 -10101000101 armload 3 -10101000101 splendors 3 -10101000101 RESIDENTS 3 -10101000101 encumbrance 3 -10101000101 impost 3 -10101000101 mega-merger 3 -10101000101 shootdown 3 -10101000101 wind-down 4 -10101000101 H-bomb 4 -10101000101 magnanimity 4 -10101000101 adopter 4 -10101000101 MH-6 4 -10101000101 overtaxation 4 -10101000101 armful 4 -10101000101 SIMs 5 -10101000101 altercation 5 -10101000101 acquisiton 5 -10101000101 alleviation 5 -10101000101 pricetag 5 -10101000101 archetype 6 -10101000101 imperfection 6 -10101000101 mayoralty 6 -10101000101 agglomeration 7 -10101000101 airdrop 7 -10101000101 impersonation 10 -10101000101 centenary 11 -10101000101 overabundance 12 -10101000101 falsity 12 -10101000101 over-allotment 13 -10101000101 overlay 13 -10101000101 acquistion 14 -10101000101 assemblage 15 -10101000101 slayings 16 -10101000101 archenemy 17 -10101000101 originator 19 -10101000101 invocation 21 -10101000101 amalgamation 22 -10101000101 erection 24 -10101000101 apostle 25 -10101000101 amalgam 26 -10101000101 Isle 34 -10101000101 emblem 36 -10101000101 orgy 38 -10101000101 internment 41 -10101000101 Wizard 43 -10101000101 conquest 44 -10101000101 offshoot 44 -10101000101 outpouring 48 -10101000101 slaying 48 -10101000101 unification 59 -10101000101 outgrowth 61 -10101000101 altar 74 -10101000101 avalanche 91 -10101000101 aura 99 -10101000101 onslaught 109 -10101000101 hijacking 143 -10101000101 endowment 156 -10101000101 accumulation 177 -10101000101 influx 180 -10101000101 outbreak 184 -10101000101 assassination 217 -10101000101 exodus 234 -10101000101 ESOP 328 -10101000101 acquirer 415 -10101000101 invasion 442 -10101000101 selection 810 -10101000101 acquisition 10372 -10101000101 extension 1130 -10101000110 doctrinalism 1 -10101000110 Tuesday.The 1 -10101000110 onrush 2 -10101000110 Saone 2 -10101000110 joint-float 2 -10101000110 hobgoblin 2 -10101000110 Mountie 2 -10101000110 Bengalis 2 -10101000110 office-machines 2 -10101000110 resource-poor 2 -10101000110 much-derided 2 -10101000110 Eurotrash 2 -10101000110 grayest 2 -10101000110 reoccupation 2 -10101000110 SEK 2 -10101000110 multilocal 2 -10101000110 citadels 3 -10101000110 honoree 3 -10101000110 looter 3 -10101000110 hauteur 3 -10101000110 nymph 3 -10101000110 dateline 3 -10101000110 speedometers 3 -10101000110 emotionality 3 -10101000110 balancer 3 -10101000110 usurper 3 -10101000110 noun 3 -10101000110 choristers 3 -10101000110 sacrament 3 -10101000110 chancellorship 4 -10101000110 violist 4 -10101000110 possum 4 -10101000110 Forthbank 4 -10101000110 nurturer 4 -10101000110 Apostle 4 -10101000110 stockroom 4 -10101000110 Reformation 5 -10101000110 Pharaoh 5 -10101000110 towelette 5 -10101000110 pressman 5 -10101000110 Altar 5 -10101000110 6-foot-2 5 -10101000110 gassy 5 -10101000110 soothsayer 5 -10101000110 progenitor 6 -10101000110 Evolution 6 -10101000110 Dinosaur 6 -10101000110 canton 6 -10101000110 Nemesis 6 -10101000110 bayous 7 -10101000110 adrenaline 7 -10101000110 booker 7 -10101000110 HARM 7 -10101000110 reactivation 7 -10101000110 stroller 7 -10101000110 6-foot-8 7 -10101000110 Maoists 7 -10101000110 composer-in-residence 8 -10101000110 instigator 8 -10101000110 clang 8 -10101000110 masthead 8 -10101000110 Gobblers 8 -10101000110 regent 10 -10101000110 licensor 10 -10101000110 headmaster 10 -10101000110 accompanist 10 -10101000110 breadbasket 10 -10101000110 morgue 10 -10101000110 etymology 11 -10101000110 PDR 11 -10101000110 blob 12 -10101000110 240SX 13 -10101000110 chaplain 13 -10101000110 Scrooge 13 -10101000110 Countess 14 -10101000110 gadfly 17 -10101000110 Imam 18 -10101000110 surveyor 20 -10101000110 moderator 21 -10101000110 overseer 25 -10101000110 custodians 27 -10101000110 prophet 27 -10101000110 assassin 28 -10101000110 executor 34 -10101000110 patriarch 34 -10101000110 rabbi 35 -10101000110 skipper 35 -10101000110 commander-in-chief 37 -10101000110 custodian 40 -10101000110 benefactor 44 -10101000110 keeper 46 -10101000110 saint 47 -10101000110 guarantor 49 -10101000110 guardian 60 -10101000110 proprietor 68 -10101000110 archbishop 70 -10101000110 co-pilot 80 -10101000110 pastor 82 -10101000110 president-elect 97 -10101000110 Crash 98 -10101000110 sheriff 100 -10101000110 inventor 101 -10101000110 creator 123 -10101000110 tenor 143 -10101000110 conductor 179 -10101000110 recipient 183 -10101000110 receiver 190 -10101000110 purchaser 231 -10101000110 CEO 254 -10101000110 captain 281 -10101000110 chancellor 298 -10101000110 shell 335 -10101000110 comptroller 345 -10101000110 king 414 -10101000110 architect 441 -10101000110 speaker 562 -10101000110 trustee 691 -10101000110 mayor 845 -10101000110 author 1144 -10101000110 governor 2021 -10101000110 owner 2401 -10101000110 parent 4082 -10101000110 target 3835 -10101000111 Calif.-mortgage 1 -10101000111 disbursals 1 -10101000111 1,551 1 -10101000111 director-choreographer 1 -10101000111 Calif.-maker 1 -10101000111 cosponsorship 1 -10101000111 incumbrances 1 -10101000111 Itani 1 -10101000111 archduke 1 -10101000111 maintainer 1 -10101000111 superfan-type 1 -10101000111 stager 1 -10101000111 Mueller-Weingarten 1 -10101000111 co-operators 1 -10101000111 third-oldest 1 -10101000111 spacings 1 -10101000111 sulphamethoxazole 1 -10101000111 protectress 1 -10101000111 1,333-1,326 1 -10101000111 Ebie 1 -10101000111 mini-secretaries 1 -10101000111 ahost 1 -10101000111 leasebacks 1 -10101000111 emiritus 1 -10101000111 Pacharapha 1 -10101000111 secretry 1 -10101000111 20,270 1 -10101000111 Apprentices 1 -10101000111 gullets 1 -10101000111 15-business-day 1 -10101000111 reinstitutionalization 1 -10101000111 zubon 1 -10101000111 poor-mouthings 1 -10101000111 87-3 1 -10101000111 PlainsBank 1 -10101000111 clinginess 1 -10101000111 121,359 1 -10101000111 Banshees 1 -10101000111 great-greatgrandson 1 -10101000111 reinstallation 1 -10101000111 simplication 1 -10101000111 Kohchi 1 -10101000111 ex-commander 1 -10101000111 whelps 1 -10101000111 remanufacturer 1 -10101000111 Leahys 1 -10101000111 one-one-thousandth 1 -10101000111 Braspetro 1 -10101000111 machine-gunning 1 -10101000111 ignitions 1 -10101000111 nephew/son 1 -10101000111 ex-leader 1 -10101000111 Pa.-record 1 -10101000111 Mass.-maker 1 -10101000111 presiden 1 -10101000111 evoker 1 -10101000111 expositor 1 -10101000111 Selenia 1 -10101000111 5,798,211 1 -10101000111 hogsheads 1 -10101000111 overglazing 1 -10101000111 Orange-Co 1 -10101000111 gentleladies 1 -10101000111 N.J.-maker 1 -10101000111 run-of-the-mine 1 -10101000111 England-produced 1 -10101000111 performance-monitoring 1 -10101000111 41,073 1 -10101000111 secretary/treasurer 1 -10101000111 indiscriminateness 1 -10101000111 154,716 1 -10101000111 Mouthpiece 1 -10101000111 evermindful 1 -10101000111 comanager 1 -10101000111 disinvention 1 -10101000111 Corazones 1 -10101000111 DEPRIVED 1 -10101000111 leasings 1 -10101000111 scatterings 1 -10101000111 chairman-emeritus 1 -10101000111 inspiriter 1 -10101000111 rare-stamp 1 -10101000111 asteroids 1 -10101000111 refinisher 1 -10101000111 endower 1 -10101000111 sheaves 1 -10101000111 milleniums 1 -10101000111 seasmanship 1 -10101000111 milkshake-machine 1 -10101000111 20,611 1 -10101000111 jetties 1 -10101000111 interplays 1 -10101000111 Avail-a-Temp 1 -10101000111 343,685 1 -10101000111 Burgermeister 1 -10101000111 yuppie-type 1 -10101000111 Cobos 1 -10101000111 Herreman 1 -10101000111 writing-off 1 -10101000111 pro-shops 1 -10101000111 1,337 1 -10101000111 continuations 1 -10101000111 ever-protective 1 -10101000111 repackager 1 -10101000111 psychiatrist-in-chief 1 -10101000111 S.F.P.O. 1 -10101000111 friends/supporters 1 -10101000111 hysterias 1 -10101000111 depressurizing 1 -10101000111 great-granddaughter 1 -10101000111 stultifications 1 -10101000111 overbreadth 1 -10101000111 weft 1 -10101000111 whimpers 1 -10101000111 brickyards 1 -10101000111 doyenne 1 -10101000111 Sanger-Harris 1 -10101000111 bicycle-parts 1 -10101000111 coowner 1 -10101000111 hundreds-of-thousands 1 -10101000111 spotlessness 1 -10101000111 Jean-Loup 1 -10101000111 then-secretary 1 -10101000111 then-administrator 1 -10101000111 Suncorp. 1 -10101000111 regardles 1 -10101000111 Director-General 1 -10101000111 Suzukis 1 -10101000111 yoni 1 -10101000111 self-disgust 1 -10101000111 RWS 1 -10101000111 Songstress 1 -10101000111 breakwater 1 -10101000111 sectioned 1 -10101000111 re-manufacturer 1 -10101000111 pubisher 1 -10101000111 35,258 1 -10101000111 restricter 1 -10101000111 seventeen 1 -10101000111 discontinuations 1 -10101000111 1/25 1 -10101000111 Maggies 1 -10101000111 1/24th 1 -10101000111 1/48th 1 -10101000111 clean-out 1 -10101000111 Commitees 1 -10101000111 less-common 1 -10101000111 Mediafina 1 -10101000111 admixtures 1 -10101000111 threequarters 1 -10101000111 3,901,756 1 -10101000111 Fla.-maker 1 -10101000111 2MB 1 -10101000111 unexpectedness 1 -10101000111 Heraclitus 1 -10101000111 pseudo-scandals 1 -10101000111 loather 1 -10101000111 encapsulants 1 -10101000111 Trappings 1 -10101000111 dogcatchers 1 -10101000111 FriedrichsInc. 1 -10101000111 already-bulging 1 -10101000111 deceitfulness 1 -10101000111 lopes 1 -10101000111 sprinklings 1 -10101000111 Powerlines 1 -10101000111 Surveyor 1 -10101000111 127,300 1 -10101000111 meteorologist-in-charge 1 -10101000111 quarteracre 1 -10101000111 M1-composed 1 -10101000111 vicar-general 1 -10101000111 co-holder 1 -10101000111 codirector 1 -10101000111 olive-branch 1 -10101000111 squanderers 1 -10101000111 treacheries 1 -10101000111 aides-turned-lobbyists 1 -10101000111 non-recurrence 1 -10101000111 semi-abandonment 1 -10101000111 1,821,324 1 -10101000111 owner-publisher 2 -10101000111 great-grandsons 2 -10101000111 remarketer 2 -10101000111 13,652 2 -10101000111 war-mongering 2 -10101000111 Kampgrounds 2 -10101000111 prefect 2 -10101000111 bluefish 2 -10101000111 Nanook 2 -10101000111 palettes 2 -10101000111 finite-life 2 -10101000111 under-utilization 2 -10101000111 unbanning 2 -10101000111 kerchiefs 2 -10101000111 impulsiveness 2 -10101000111 snips 2 -10101000111 quaintest 2 -10101000111 steel-tubing 2 -10101000111 speaker-designate 2 -10101000111 fetishes 2 -10101000111 tittle 2 -10101000111 relining 3 -10101000111 Chadwicks 3 -10101000111 glorification 3 -10101000111 furriers 3 -10101000111 cohead 3 -10101000111 misspelling 3 -10101000111 submerging 3 -10101000111 bro 3 -10101000111 1/12th 3 -10101000111 simpering 3 -10101000111 grandmaster 3 -10101000111 great-grandchildren 4 -10101000111 bestiality 4 -10101000111 franchisor 4 -10101000111 bantam 4 -10101000111 partner-in-charge 4 -10101000111 sloughing 4 -10101000111 undercapitalization 4 -10101000111 renovator 4 -10101000111 Lar 5 -10101000111 co-directors 6 -10101000111 great-grandson 6 -10101000111 forerunners 6 -10101000111 co-inventor 6 -10101000111 then-chief 7 -10101000111 co-creator 8 -10101000111 co-heads 8 -10101000111 co-anchor 10 -10101000111 clap 10 -10101000111 ex-president 14 -10101000111 huh 15 -10101000111 filet 16 -10101000111 Duchess 17 -10101000111 co-host 19 -10101000111 Triumph 23 -10101000111 scion 27 -10101000111 birthplace 48 -10101000111 65th 52 -10101000111 editor-in-chief 55 -10101000111 downing 61 -10101000111 co-director 67 -10101000111 director-general 68 -10101000111 grandson 90 -10101000111 co-head 94 -10101000111 co-author 112 -10101000111 emeritus 172 -10101000111 premiere 206 -10101000111 head 6897 -10101000111 publisher 2243 -10101001000 2,176 1 -10101001000 see-sawed 1 -10101001000 market-the 1 -10101001000 chemical-giant 1 -10101001000 plummmeted 1 -10101001000 tomfooleries 1 -10101001000 composers. 1 -10101001000 deliberate-style 1 -10101001000 Kyzyl 1 -10101001000 ad-supported 1 -10101001000 evil-doing 1 -10101001000 stock-warrant 1 -10101001000 3,689 1 -10101001000 occupiied 1 -10101001000 auto-maker 1 -10101001000 consumption/production 1 -10101001000 breakfront 2 -10101001000 lazier 2 -10101001000 parachutist 2 -10101001000 short-haired 2 -10101001000 regrow 2 -10101001000 hippopotamuses 2 -10101001000 PCAT 2 -10101001000 phonies 2 -10101001000 pacesetters 3 -10101001000 fraulein 3 -10101001000 Judds 4 -10101001000 cross-license 5 -10101001000 self-liquidating 5 -10101001000 TBA 5 -10101001000 max 7 -10101001000 irredentism 9 -10101001000 crackle 10 -10101001000 bop 10 -10101001000 stag 10 -10101001000 shepherds 17 -10101001000 shepherd 34 -10101001000 swirl 53 -10101001000 splits 140 -10101001000 patch 239 -10101001000 lag 283 -10101001000 spill 342 -10101001000 rank 467 -10101001000 occupied 814 -10101001000 swap 1510 -10101001000 spread 2376 -10101001000 split 3011 -10101001000 mark 2926 -10101001001 above-par 1 -10101001001 mark-a-year 1 -10101001001 last-quoted 1 -10101001001 110-pence-a-share 1 -10101001001 875-pence 1 -10101001001 Canadian-market 1 -10101001001 redmption 1 -10101001001 sheldrake 1 -10101001001 anti-Mitterrand 1 -10101001001 non-extremist 1 -10101001001 400-pence-a-share 1 -10101001001 pre-allocation 1 -10101001001 subsidy-inflated 1 -10101001001 mid-to-upper 1 -10101001001 two-stamp 1 -10101001001 milk-support 1 -10101001001 thenpresent 1 -10101001001 Maldivian 1 -10101001001 gold-panning 1 -10101001001 dividend-share 1 -10101001001 technology-licensing 1 -10101001001 depreciation-induced 1 -10101001001 secure-shareholder 1 -10101001001 takeover-offer 1 -10101001001 earlier-advertised 1 -10101001001 ever-endangered 1 -10101001001 unoption 1 -10101001001 surface-exploration 1 -10101001001 post-collapse 1 -10101001001 colonic 1 -10101001001 standard-configuration 1 -10101001001 equity-gold 1 -10101001001 356,000-kilowatt 1 -10101001001 OPEC-mandated 1 -10101001001 4,032-room 1 -10101001001 Ripperian 1 -10101001001 asset-disposal 1 -10101001001 MISSING 1 -10101001001 per-pound 1 -10101001001 quota-inflated 1 -10101001001 restructing 2 -10101001001 Minny 2 -10101001001 Davises 2 -10101001001 disability-compensation 2 -10101001001 5,547,270 2 -10101001001 higher-end 2 -10101001001 giveback 2 -10101001001 rights-distribution 2 -10101001001 MDA 3 -10101001001 six-year-long 3 -10101001001 share-option 3 -10101001001 pre-suspension 4 -10101001001 1/12 4 -10101001001 miswiring 4 -10101001001 decapitalization 4 -10101001001 3B4000 6 -10101001001 public-offering 7 -10101001001 purchase-rights 12 -10101001001 spending-based 15 -10101001001 retrofit 25 -10101001001 downgrading 213 -10101001001 downgrade 434 -10101001001 buyback 530 -10101001001 rescue 723 -10101001001 repurchase 847 -10101001001 purchase 9951 -10101001001 buy-back 1012 -10101001010 microchip-laden 1 -10101001010 U.S.-currently 1 -10101001010 physician-caused 1 -10101001010 EuroSwiss 1 -10101001010 store-where 1 -10101001010 laborcost 1 -10101001010 Deightonians 1 -10101001010 property-loss 1 -10101001010 100,000-baht 1 -10101001010 off-street 1 -10101001010 fractionate 1 -10101001010 Ercks 1 -10101001010 profit-about 1 -10101001010 hard-top 1 -10101001010 Eliahu 1 -10101001010 2,714,300 1 -10101001010 wage-rate 1 -10101001010 Fed-not 1 -10101001010 rundowns 2 -10101001010 reupholstering 2 -10101001010 life-blood 2 -10101001010 fast-stepping 2 -10101001010 undisbursed 2 -10101001010 inheritor 3 -10101001010 purr 3 -10101001010 pyramiding 3 -10101001010 re-release 4 -10101001010 earmarks 35 -10101001010 cradle 36 -10101001010 outlines 160 -10101001010 cost 12067 -10101001010 consist 392 -101010010110 pre-decline 1 -101010010110 75-pence 1 -101010010110 pesticide-pollution 1 -101010010110 wide-shouldered 1 -101010010110 break-apart 1 -101010010110 state-audit 1 -101010010110 three-figure 1 -101010010110 PPP-determined 1 -101010010110 abjuration 1 -101010010110 McPartland 1 -101010010110 leak-related 1 -101010010110 IRS-asserted 1 -101010010110 new-market 1 -101010010110 raw-land 1 -101010010110 dream-fulfilling 1 -101010010110 junk-salvage 1 -101010010110 federal-deposit-insurance 1 -101010010110 lovelies 1 -101010010110 maximimize 1 -101010010110 windall 1 -101010010110 forign-exchange 1 -101010010110 cold-climate 1 -101010010110 Washington-state 1 -101010010110 wool-and-rayon 1 -101010010110 still-formidable 1 -101010010110 construction-contract 1 -101010010110 princpal 1 -101010010110 auction-block 1 -101010010110 socioeconomically 1 -101010010110 4,216 1 -101010010110 then-doctor 1 -101010010110 nonradicals 1 -101010010110 degree-day 2 -101010010110 offloading 2 -101010010110 14,009 2 -101010010110 17-acre 3 -101010010110 strafing 3 -101010010110 perdition 3 -101010010110 ogling 4 -101010010110 face 7088 -101010010110 lease-purchase 4 -101010010111 587,300 1 -101010010111 inMay 1 -101010010111 AN/MLQ-34 1 -101010010111 in-residence 1 -101010010111 MV/1400 1 -101010010111 Elfcent 1 -101010010111 single-yearling 1 -101010010111 Africanization 1 -101010010111 de-listing 1 -101010010111 89,225 1 -101010010111 Talair 1 -101010010111 conglomerations 1 -101010010111 center-rightists 1 -101010010111 investigator-hero 1 -101010010111 1,163,400 1 -101010010111 snowcap 1 -101010010111 Lifers 1 -101010010111 Memtech 1 -101010010111 229,463 1 -101010010111 truth-in-satire 1 -101010010111 2,833,777 1 -101010010111 self-injection 1 -101010010111 short-circuits 1 -101010010111 663,125 1 -101010010111 443,097 1 -101010010111 younguns 1 -101010010111 emolument 1 -101010010111 savorings 1 -101010010111 sealskins 1 -101010010111 roote 1 -101010010111 341,210 1 -101010010111 gawkiness 1 -101010010111 arms-purchasing 1 -101010010111 1,917,800 1 -101010010111 home-owners 1 -101010010111 12yerol 1 -101010010111 386,000-square-foot 1 -101010010111 327,780 1 -101010010111 time-stamp 1 -101010010111 136,100 1 -101010010111 48/64 1 -101010010111 money-terms 1 -101010010111 rocket-chemical 1 -101010010111 sky-dwarf 1 -101010010111 475,027 1 -101010010111 arkylbenzene 1 -101010010111 cash-in-hand 1 -101010010111 half-run 1 -101010010111 bodacious 1 -101010010111 cross-elasticities 1 -101010010111 559,589 1 -101010010111 soft-top/hardtop 1 -101010010111 acquisitons 1 -101010010111 shellings 1 -101010010111 500-worker 1 -101010010111 1-11-1 1 -101010010111 1.166 1 -101010010111 accessions 1 -101010010111 Nakashes 1 -101010010111 30-passenger 1 -101010010111 law-not 1 -101010010111 386-generation 1 -101010010111 524,000 1 -101010010111 counterexplanation 1 -101010010111 170s 1 -101010010111 Chrysler-Mitsubishi 2 -101010010111 rewiring 2 -101010010111 brutalism 2 -101010010111 Commissariat 2 -101010010111 yokes 2 -101010010111 Unmaking 2 -101010010111 1,907,000 2 -101010010111 SEB 2 -101010010111 mother-board 2 -101010010111 governor-elect 2 -101010010111 Kittiwake 2 -101010010111 smidgens 2 -101010010111 campuslike 3 -101010010111 memoir-novel 3 -101010010111 mid-thirties 3 -101010010111 scrubs 3 -101010010111 heydays 3 -101010010111 menage 3 -101010010111 SIBV-MS 4 -101010010111 Marche 5 -101010010111 KO 7 -101010010111 renditions 10 -101010010111 chronicle 45 -101010010111 shred 60 -101010010111 breed 260 -101010010111 post 4947 -101010010111 form 4767 -1010100110 closely-watched 1 -1010100110 tulip-futures 1 -1010100110 vinyl-covered 1 -1010100110 adjustable-loan 1 -1010100110 import-parity 1 -1010100110 emperor-centered 1 -1010100110 art-loving 1 -1010100110 stick-it-out 1 -1010100110 seventh-consecutive 1 -1010100110 thrift-oriented 1 -1010100110 bus-fare 1 -1010100110 quaverings 1 -1010100110 inside-the-seminary 1 -1010100110 ex-social 1 -1010100110 all-enclosed 1 -1010100110 50-or-more 1 -1010100110 Affarer 1 -1010100110 doctor/patient 1 -1010100110 cotton-dust 1 -1010100110 brightline 1 -1010100110 2005-2009 1 -1010100110 product/energy 1 -1010100110 FY89 1 -1010100110 amnesty/offer-in-compromise 1 -1010100110 nine-hour-plus 1 -1010100110 still-vivid 1 -1010100110 ash-tinted 1 -1010100110 Weill-Gershwin 1 -1010100110 gain-and 1 -1010100110 indubitable 1 -1010100110 Anglo-Spanish 1 -1010100110 minimum-reserve 1 -1010100110 less-flexible 1 -1010100110 55-to-64 1 -1010100110 sorghum-grain 1 -1010100110 good-cause 1 -1010100110 seven-to-11 1 -1010100110 event-filled 1 -1010100110 less-is-more 1 -1010100110 opium-of-the-people 1 -1010100110 AppleLine 1 -1010100110 four-cent-a-pound 1 -1010100110 resuscitations 1 -1010100110 12-cent-a-share 1 -1010100110 ransom-note 1 -1010100110 inactivated-chromosome 1 -1010100110 Cours-la-Reine 1 -1010100110 otherwise-flattering 1 -1010100110 Portasol 1 -1010100110 abscessed 1 -1010100110 end-of-May 1 -1010100110 eight-months-pregnant 1 -1010100110 cave-man 1 -1010100110 27.5-mpg 1 -1010100110 entry-level-worker 1 -1010100110 20-to-24-year-old 1 -1010100110 literary-value 1 -1010100110 minimum-benefit 1 -1010100110 anti-tariff 1 -1010100110 MANEUVERS 1 -1010100110 tetracycline-loaded 1 -1010100110 undisclosred 1 -1010100110 always-stunning 1 -1010100110 less-important 1 -1010100110 350,000-car 1 -1010100110 echeloned 1 -1010100110 11.1-million-barrel 1 -1010100110 35-to-54 1 -1010100110 54.66-cent-a-gallon 1 -1010100110 PROBERS 1 -1010100110 150,000-unit 1 -1010100110 anomic 1 -1010100110 2,200-member 1 -1010100110 271-store 1 -1010100110 18-to-24-year 1 -1010100110 eleventh-grade 1 -1010100110 104,000-member 1 -1010100110 20-foot-by-38-foot 1 -1010100110 229,731 1 -1010100110 under-14 1 -1010100110 chalklike 1 -1010100110 Lockean 1 -1010100110 land-a 1 -1010100110 insurer-run 1 -1010100110 Thatcher-Walters 1 -1010100110 trade-hardened 1 -1010100110 8/64-inch 1 -1010100110 ex-coal 1 -1010100110 18-part 1 -1010100110 12-to-17 1 -1010100110 -a-week 1 -1010100110 twice-postponed 1 -1010100110 8,972 1 -1010100110 underactive 1 -1010100110 ex-priest 1 -1010100110 orange-purple 1 -1010100110 arm-around-the-shoulders 1 -1010100110 Oxford-trained 1 -1010100110 advanced-placement 1 -1010100110 215,000-barrel 1 -1010100110 mastoid 1 -1010100110 now-average 1 -1010100110 not-so-star 1 -1010100110 Oval-Office 1 -1010100110 sweet-and-pungent 1 -1010100110 per-contract 1 -1010100110 soybean-output 1 -1010100110 oneway 1 -1010100110 over-the-aisle 1 -1010100110 anaestheticized 1 -1010100110 187-year-old 1 -1010100110 ex-franchise 1 -1010100110 industry-shaking 1 -1010100110 unstaged 1 -1010100110 air-valve 1 -1010100110 uninspirational 1 -1010100110 Bjork-Shiley 1 -1010100110 outer-borough 1 -1010100110 three-day-long 1 -1010100110 Arab-populated 1 -1010100110 athlete-law 1 -1010100110 163-day 1 -1010100110 chance-risk 1 -1010100110 horizon-wide 1 -1010100110 India-born 1 -1010100110 product-sales 1 -1010100110 brushed-aside 1 -1010100110 18-to-22 1 -1010100110 ex-colleague 1 -1010100110 Greek-Canadian 1 -1010100110 taxable-fund 1 -1010100110 employment-to-population 1 -1010100110 fifth-straight 1 -1010100110 no-wrinkle 1 -1010100110 good-driver 1 -1010100110 ex-gospel 1 -1010100110 Microchannel 1 -1010100110 aircraft-engine-maintenance 1 -1010100110 ever-optimistic 1 -1010100110 5-to-14 1 -1010100110 35-to-44-year 1 -1010100110 800-man 1 -1010100110 Sun-4/150CXP 1 -1010100110 Sun-4/150TAAC 1 -1010100110 labor-force-participation 1 -1010100110 at-best 1 -1010100110 amyloid-rich 1 -1010100110 traffic-growth 1 -1010100110 off-air 1 -1010100110 oft-unsung 1 -1010100110 Edwards-Duromedics 1 -1010100110 ever-accelerating 1 -1010100110 Iranian-Israeli-American 1 -1010100110 FCC-imposed 2 -1010100110 independent-thinking 2 -1010100110 often-futile 2 -1010100110 ridiculousness 2 -1010100110 Athens-based 2 -1010100110 orders-to-sales 2 -1010100110 averge 2 -1010100110 upturned 2 -1010100110 gold-exchange 2 -1010100110 remorseless 2 -1010100110 Lenox-Conynghams 2 -1010100110 Marriotts 2 -1010100110 70-cents-to-75-cents 2 -1010100110 7.2-million 2 -1010100110 rosy-fingered 2 -1010100110 unsupportive 2 -1010100110 35-to-44 2 -1010100110 song-slide 2 -1010100110 NIV 2 -1010100110 ever-declining 2 -1010100110 second-greatest 2 -1010100110 alley-fighters 2 -1010100110 55-and-over 2 -1010100110 Arab-Latin 2 -1010100110 45-to-54 3 -1010100110 archconservative 3 -1010100110 nuclear-radiation 3 -1010100110 original-issue 3 -1010100110 brainstormers 3 -1010100110 25-to-44 3 -1010100110 alcove 3 -1010100110 unguaranteed 3 -1010100110 red-ink 3 -1010100110 auditory 3 -1010100110 still-image 3 -1010100110 Army-Navy 4 -1010100110 nonaffiliated 4 -1010100110 third-worst 5 -1010100110 Nineteenth 5 -1010100110 oversubscription 5 -1010100110 J-7 5 -1010100110 eyelash 7 -1010100110 80-cent 9 -1010100110 amicus 19 -1010100110 above-market 57 -1010100110 unadjusted 125 -1010100110 median 371 -1010100110 average 12620 -1010100110 inflation-adjusted 457 -10101001110 call-boxes 1 -10101001110 14,000-yen 1 -10101001110 ripsnorters 1 -10101001110 step-licensing 1 -10101001110 bear-baitings 1 -10101001110 sua 1 -10101001110 landownership 1 -10101001110 848-page 1 -10101001110 radio-relayed 1 -10101001110 response. 1 -10101001110 hysteria. 1 -10101001110 pipeline-network 1 -10101001110 orprivate 1 -10101001110 creches 1 -10101001110 random-weave 1 -10101001110 retailer-sales 1 -10101001110 ceremonies. 1 -10101001110 inspection. 1 -10101001110 standpipes 1 -10101001110 weal 2 -10101001110 PP&L 2 -10101001110 Avaris 2 -10101001110 unmiked 2 -10101001110 oil-policy 2 -10101001110 Sarkissian 2 -10101001110 gerontocracy 2 -10101001110 cartonnage 2 -10101001110 corporation-partnership 2 -10101001110 offering 11289 -10101001110 excercise 2 -10101001111 Glamorgan 1 -10101001111 unnerves 1 -10101001111 demanding-type 1 -10101001111 lower-growth 1 -10101001111 pre-close 1 -10101001111 SS-N-21 1 -10101001111 camber 1 -10101001111 wearability 1 -10101001111 7,000-franc-a-share 1 -10101001111 pre-rebate 1 -10101001111 Resale 1 -10101001111 Pacificare 1 -10101001111 napalming 1 -10101001111 pre-discount 1 -10101001111 down-a-bit 1 -10101001111 leatherbound 2 -10101001111 f.o.b. 2 -10101001111 and. 2 -10101001111 FAL 2 -10101001111 soirees 2 -10101001111 Kamiah 2 -10101001111 tenebrous 2 -10101001111 powdering 2 -10101001111 overweighting 2 -10101001111 apelike 2 -10101001111 segmenting 2 -10101001111 BellSouth/Lin 2 -10101001111 deflation/recession 2 -10101001111 misbilling 3 -10101001111 63rd 3 -10101001111 rephrasing 3 -10101001111 browning 3 -10101001111 sidelining 3 -10101001111 affordable-housing 3 -10101001111 227-197 3 -10101001111 cross-referencing 3 -10101001111 Gault-Millau 3 -10101001111 SENT 4 -10101001111 runnerup 4 -10101001111 steadying 4 -10101001111 off-loading 4 -10101001111 transference 4 -10101001111 cabling 4 -10101001111 witching-hour 4 -10101001111 unearthing 5 -10101001111 trebling 5 -10101001111 2900 5 -10101001111 force-feeding 5 -10101001111 re-marketing 5 -10101001111 overpricing 5 -10101001111 intertwining 5 -10101001111 1/8th 5 -10101001111 comparision 5 -10101001111 pacifying 5 -10101001111 botching 5 -10101001111 pre-placement 5 -10101001111 rupturing 5 -10101001111 unmasking 6 -10101001111 trouncing 6 -10101001111 smothering 6 -10101001111 molting 6 -10101001111 reprogramming 7 -10101001111 hour-and-a-half 7 -10101001111 adagio 7 -10101001111 wobbling 7 -10101001111 near-bankruptcy 7 -10101001111 wearying 7 -10101001111 amplifying 8 -10101001111 plateauing 8 -10101001111 repainting 9 -10101001111 whipsawing 9 -10101001111 breakeven 9 -10101001111 retracing 10 -10101001111 fraying 10 -10101001111 100-point 10 -10101001111 slanting 10 -10101001111 darkening 11 -10101001111 re-flagging 12 -10101001111 adjourning 12 -10101001111 stabbing 12 -10101001111 rehiring 13 -10101001111 criminalizing 14 -10101001111 voiding 14 -10101001111 sacking 16 -10101001111 reordering 17 -10101001111 dawning 21 -10101001111 disbanding 23 -10101001111 underreporting 24 -10101001111 clogging 24 -10101001111 pairing 26 -10101001111 delisting 27 -10101001111 inverse 28 -10101001111 adjournment 31 -10101001111 convening 32 -10101001111 leveraging 41 -10101001111 yawning 42 -10101001111 unwinding 47 -10101001111 battering 47 -10101001111 flattening 49 -10101001111 batting 62 -10101001111 unraveling 76 -10101001111 pooling 83 -10101001111 unveiling 97 -10101001111 loosening 101 -10101001111 lessening 101 -10101001111 unfolding 103 -10101001111 reopening 149 -10101001111 revamping 157 -10101001111 dismantling 204 -10101001111 softening 277 -10101001111 lifting 298 -10101001111 fixing 325 -10101001111 widening 479 -10101001111 narrowing 574 -10101001111 listing 623 -10101001111 signing 694 -10101001111 tightening 714 -10101001111 downward 819 -10101001111 easing 865 -10101001111 killing 935 -10101001111 upward 1164 -10101001111 opening 2689 -10101001111 closing 3731 -10101001111 auction 3059 -101010100 phenoms 1 -101010100 high-finance 1 -101010100 immediately. 1 -101010100 Episcopate 1 -101010100 farmtown 1 -101010100 presentness 1 -101010100 signifier 1 -101010100 lineages 1 -101010100 reminiscencs 1 -101010100 codifiers 1 -101010100 ruboffs 1 -101010100 wall-hanging 1 -101010100 Statute 1 -101010100 co-captain 1 -101010100 fireplug 1 -101010100 semi-callousness 1 -101010100 stepsister 1 -101010100 Appeal-Federation 1 -101010100 dipper 1 -101010100 snaphots 1 -101010100 Motoramas 1 -101010100 inextricability 1 -101010100 stubholders 1 -101010100 scherzos 1 -101010100 emulator 1 -101010100 resubmission 2 -101010100 sprites 2 -101010100 subclass 2 -101010100 houseful 2 -101010100 mischaracterizations 2 -101010100 patriarchate 2 -101010100 resi 2 -101010100 tankard 2 -101010100 near-sweep 2 -101010100 roll-over 2 -101010100 quintuplets 2 -101010100 god-king 3 -101010100 summing-up 3 -101010100 self-selection 3 -101010100 overhangs 3 -101010100 roughhouse 3 -101010100 Piece 3 -101010100 send-up 3 -101010100 boomtown 3 -101010100 castigation 3 -101010100 cut-outs 3 -101010100 splotch 3 -101010100 wick 4 -101010100 thuggery 4 -101010100 roadsters 4 -101010100 Cradle 4 -101010100 forebear 4 -101010100 miscellany 4 -101010100 showgirl 5 -101010100 knock-off 5 -101010100 re-emphasis 5 -101010100 supergiant 5 -101010100 talisman 6 -101010100 connivance 6 -101010100 Curse 6 -101010100 gust 6 -101010100 perusal 6 -101010100 wingspan 6 -101010100 chimera 6 -101010100 penumbra 6 -101010100 run-through 6 -101010100 reenactment 6 -101010100 reassertion 7 -101010100 Meaning 7 -101010100 posse 7 -101010100 hodge-podge 7 -101010100 oversupplies 7 -101010100 bale 7 -101010100 derailment 8 -101010100 monarchies 8 -101010100 Congregation 8 -101010100 christening 8 -101010100 reformation 8 -101010100 tableau 8 -101010100 memento 8 -101010100 helpings 8 -101010100 cesspool 8 -101010100 visage 9 -101010100 reinspection 9 -101010100 speck 9 -101010100 tattoo 9 -101010100 menagerie 10 -101010100 scrapbook 11 -101010100 reiteration 11 -101010100 montage 11 -101010100 vista 11 -101010100 cutout 11 -101010100 spasm 11 -101010100 glint 11 -101010100 patina 11 -101010100 cocoon 12 -101010100 synopsis 12 -101010100 closeup 12 -101010100 reconfiguration 12 -101010100 swatches 12 -101010100 bull's-eye 13 -101010100 clump 13 -101010100 panorama 13 -101010100 stench 13 -101010100 medley 13 -101010100 tapestry 13 -101010100 reappearance 13 -101010100 reevaluation 14 -101010100 touchstone 14 -101010100 misinterpretation 14 -101010100 storehouse 14 -101010100 font 14 -101010100 sampler 14 -101010100 folder 15 -101010100 six-pack 16 -101010100 regiment 17 -101010100 close-up 17 -101010100 coterie 17 -101010100 bouquet 18 -101010100 dramatization 18 -101010100 parable 18 -101010100 constellation 18 -101010100 thud 19 -101010100 cabal 19 -101010100 gusher 19 -101010100 scattering 19 -101010100 germ 19 -101010100 sprinkling 20 -101010100 predictor 21 -101010100 platter 21 -101010100 sieve 21 -101010100 reallocation 22 -101010100 diffusion 22 -101010100 tabulation 22 -101010100 flotilla 22 -101010100 simplification 23 -101010100 caravan 23 -101010100 blockage 24 -101010100 stepchild 24 -101010100 re-evaluation 25 -101010100 swarm 25 -101010100 roundup 25 -101010100 reinterpretation 25 -101010100 retraction 26 -101010100 thicket 26 -101010100 recitation 26 -101010100 ray 27 -101010100 denunciation 27 -101010100 paradigm 27 -101010100 spoof 28 -101010100 battalion 28 -101010100 reappraisal 28 -101010100 diminution 28 -101010100 darlings 28 -101010100 cloak 29 -101010100 labyrinth 30 -101010100 incarnation 30 -101010100 cascade 31 -101010100 crate 31 -101010100 clutch 32 -101010100 platoon 32 -101010100 ridge 33 -101010100 loaf 33 -101010100 mobilization 33 -101010100 cessation 33 -101010100 hunk 33 -101010100 horde 33 -101010100 squadron 33 -101010100 rite 34 -101010100 concoction 34 -101010100 mosaic 34 -101010100 quilt 34 -101010100 trove 35 -101010100 groundswell 35 -101010100 haze 37 -101010100 mound 37 -101010100 gem 39 -101010100 convergence 39 -101010100 writ 40 -101010100 relic 40 -101010100 rendition 40 -101010100 cache 41 -101010100 rebirth 42 -101010100 sellout 42 -101010100 clique 42 -101010100 scourge 42 -101010100 variant 43 -101010100 caricature 43 -101010100 throng 43 -101010100 galaxy 44 -101010100 snapshot 44 -101010100 replica 45 -101010100 carton 46 -101010100 protector 46 -101010100 repository 47 -101010100 plurality 49 -101010100 compilation 50 -101010100 reaffirmation 51 -101010100 crossroads 51 -101010100 procession 52 -101010100 radius 52 -101010100 reassessment 52 -101010100 pillar 52 -101010100 reunion 54 -101010100 manifestation 55 -101010100 butt 58 -101010100 slab 58 -101010100 patchwork 60 -101010100 portrayal 60 -101010100 badge 63 -101010100 repetition 64 -101010100 tangle 67 -101010100 heck 67 -101010100 facade 69 -101010100 masterpiece 73 -101010100 retrospective 73 -101010100 jar 74 -101010100 heap 75 -101010100 revaluation 75 -101010100 darling 76 -101010100 symptom 76 -101010100 critique 78 -101010100 transcript 79 -101010100 tug 81 -101010100 suppression 86 -101010100 glow 89 -101010100 reservoir 89 -101010100 climax 91 -101010100 formulation 91 -101010100 chronology 91 -101010100 patron 93 -101010100 preview 97 -101010100 cluster 97 -101010100 staple 102 -101010100 trio 105 -101010100 maze 105 -101010100 mainstay 107 -101010100 shade 107 -101010100 roster 108 -101010100 creature 110 -101010100 statue 134 -101010100 stack 136 -101010100 relaxation 140 -101010100 sequence 145 -101010100 scarcity 145 -101010100 batch 153 -101010100 web 154 -101010100 sampling 169 -101010100 chorus 173 -101010100 bout 185 -101010100 slice 189 -101010100 denial 191 -101010100 cup 195 -101010100 photograph 196 -101010100 beneficiary 212 -101010100 biography 214 -101010100 menu 217 -101010100 blend 228 -101010100 parade 232 -101010100 barometer 247 -101010100 half-hour 248 -101010100 resurgence 260 -101010100 habit 278 -101010100 celebration 288 -101010100 portrait 290 -101010100 certificate 290 -101010100 realignment 291 -101010100 description 301 -101010100 revival 301 -101010100 dose 308 -101010100 shadow 309 -101010100 circle 315 -101010100 consequence 322 -101010100 bombing 322 -101010100 devaluation 341 -101010100 breakdown 350 -101010100 glut 365 -101010100 mountain 367 -101010100 chapter 382 -101010100 leg 386 -101010100 basket 392 -101010100 bottle 397 -101010100 sample 450 -101010100 slate 458 -101010100 reversal 466 -101010100 anniversary 537 -101010100 flood 545 -101010100 backlog 572 -101010100 band 649 -101010100 definition 657 -101010100 victim 678 -101010100 mix 786 -101010100 copy 832 -101010100 fleet 880 -101010100 tour 919 -101010100 collection 986 -101010100 pool 1034 -101010100 shortage 1139 -101010100 coalition 1153 -101010100 wave 1240 -101010100 pattern 1293 -101010100 piece 1483 -101010100 generation 1491 -101010100 round 1684 -101010100 combination 1919 -101010100 class 2311 -101010100 version 2734 -101010100 list 3969 -101010100 majority 3988 -1010101010 cynosure 1 -1010101010 Kramers 1 -1010101010 hard-scrabbling 1 -1010101010 basketrs 1 -1010101010 influxes 1 -1010101010 over-presence 1 -1010101010 Sinocization 1 -1010101010 groundlessness 1 -1010101010 de-collectivization 1 -1010101010 Scourge 1 -1010101010 spector 1 -1010101010 anti-Bank 1 -1010101010 re-signing 1 -1010101010 Gnomes 1 -1010101010 Rebirth 1 -1010101010 Dawning 1 -1010101010 thtructure 1 -1010101010 Protocols 1 -1010101010 precariousness 1 -1010101010 Stupidity 1 -1010101010 wump-wump 1 -1010101010 government-contracted 1 -1010101010 theologists 1 -1010101010 Heresy 1 -1010101010 civilities 1 -1010101010 certifictes 1 -1010101010 Metamorphosis 1 -1010101010 patronization 1 -1010101010 demonization 1 -1010101010 prudency-phase 1 -1010101010 Scapegoats 1 -1010101010 Disciplines 1 -1010101010 Superieur 1 -1010101010 gravamen 1 -1010101010 professionalization 1 -1010101010 Bolshevization 1 -1010101010 Pluralization 1 -1010101010 re-adoption 1 -1010101010 swathes 1 -1010101010 PROFITT 1 -1010101010 junkloads 1 -1010101010 Olson-Elm 1 -1010101010 bluesmen 1 -1010101010 Marshes 1 -1010101010 dispensability 1 -1010101010 dam-burst 1 -1010101010 renascence 1 -1010101010 phraseology 1 -1010101010 Blackmailing 1 -1010101010 microsize 1 -1010101010 Possessed 1 -1010101010 physiques 1 -1010101010 resolvers 1 -1010101010 de-Sovietization 1 -1010101010 PRESERVATION 1 -1010101010 sleep-and-wakefulness 1 -1010101010 m.o. 1 -1010101010 cosiness 1 -1010101010 Autocrat 1 -1010101010 Yeomen 1 -1010101010 Demotion 1 -1010101010 Solace 1 -1010101010 Songbirds 1 -1010101010 saleability 1 -1010101010 Dialectics 1 -1010101010 Professorship 1 -1010101010 improbability 2 -1010101010 mudpie 2 -1010101010 scaling-back 2 -1010101010 spoor 2 -1010101010 mini-empire 2 -1010101010 BAROMETER 2 -1010101010 near-shutdown 2 -1010101010 frisson 2 -1010101010 adroitness 2 -1010101010 superfluity 2 -1010101010 phasing-out 2 -1010101010 romanticization 2 -1010101010 unmindful 2 -1010101010 corrida 2 -1010101010 Regard 2 -1010101010 demilitarization 2 -1010101010 Obsolescence 2 -1010101010 abridgement 2 -1010101010 forkful 2 -1010101010 stigmatization 2 -1010101010 shackling 2 -1010101010 reconstitution 2 -1010101010 tippers 2 -1010101010 subsdiary 2 -1010101010 Flogging 2 -1010101010 pleasantness 2 -1010101010 clove 2 -1010101010 fountainhead 3 -1010101010 b-As 3 -1010101010 stretch-out 3 -1010101010 trivialization 3 -1010101010 hollowness 3 -1010101010 Reign 4 -1010101010 lynchpin 4 -1010101010 bottoming-out 4 -1010101010 Ballad 4 -1010101010 incidences 4 -1010101010 husk 4 -1010101010 presidium 4 -1010101010 kaleidoscope 5 -1010101010 carve-up 5 -1010101010 warren 5 -1010101010 bucketful 5 -1010101010 re-enactment 6 -1010101010 shipload 6 -1010101010 subset 6 -1010101010 Pillars 6 -1010101010 Allegory 7 -1010101010 phaseout 7 -1010101010 miasma 8 -1010101010 wellspring 8 -1010101010 personification 8 -1010101010 conglomeration 9 -1010101010 dollop 10 -1010101010 continuance 10 -1010101010 rearrangement 12 -1010101010 Matter 13 -1010101010 cacophony 14 -1010101010 sufficiency 14 -1010101010 kernel 14 -1010101010 keystone 15 -1010101010 multiplicity 15 -1010101010 renunciation 18 -1010101010 re-creation 18 -1010101010 panoply 21 -1010101010 drumbeat 23 -1010101010 Tale 23 -1010101010 surfeit 24 -1010101010 sliver 25 -1010101010 confluence 27 -1010101010 welter 28 -1010101010 profusion 31 -1010101010 cross-section 31 -1010101010 jumble 35 -1010101010 depiction 39 -1010101010 paucity 41 -1010101010 preponderance 42 -1010101010 litany 50 -1010101010 multitude 61 -1010101010 deluge 66 -1010101010 cadre 69 -1010101010 hallmark 73 -1010101010 cornerstone 127 -1010101010 dearth 127 -1010101010 chunks 161 -1010101010 incidence 168 -1010101010 proliferation 199 -1010101010 resumption 199 -1010101010 feasibility 200 -1010101010 continuation 339 -1010101010 chunk 381 -1010101010 fraction 424 -1010101010 portion 2325 -1010101010 number 13904 -1010101011 tubeful 1 -1010101011 12-pack 1 -1010101011 relict 1 -1010101011 Christology 1 -1010101011 day-in-the-life-type 1 -1010101011 phantasm 1 -1010101011 stategy 1 -1010101011 fen 1 -1010101011 mini-institute 1 -1010101011 midden 1 -1010101011 ton-and-a-half 1 -1010101011 sirocco 1 -1010101011 Handful 1 -1010101011 certifier 1 -1010101011 stock-taking 1 -1010101011 tax-paradise 1 -1010101011 mini-fast 1 -1010101011 potful 1 -1010101011 creeping-up 1 -1010101011 glob 1 -1010101011 majoriy 1 -1010101011 2200/600 1 -1010101011 warrior-priest 1 -1010101011 duststorm 1 -1010101011 co-arranger 1 -1010101011 Propos 1 -1010101011 foretaste 1 -1010101011 paroxysm 1 -1010101011 coddler 1 -1010101011 expostulations 1 -1010101011 mini-Hitler 1 -1010101011 paymen 1 -1010101011 re-configuration 1 -1010101011 barrelful 1 -1010101011 preferment 1 -1010101011 tapering-off 1 -1010101011 monoploy 1 -1010101011 floozy 1 -1010101011 trayful 1 -1010101011 mini-epidemic 1 -1010101011 little-old-lady 1 -1010101011 minichain 1 -1010101011 covey 1 -1010101011 ragbag 1 -1010101011 disaggregation 1 -1010101011 co-designer 1 -1010101011 MICROCOSM 1 -1010101011 recollateralization 1 -1010101011 crosscurrent 1 -1010101011 diadem 1 -1010101011 first-use 1 -1010101011 backhaul 1 -1010101011 build-down 1 -1010101011 reaudit 1 -1010101011 cannonade 1 -1010101011 skirl 1 -1010101011 propos 1 -1010101011 dispeller 1 -1010101011 betrayer 1 -1010101011 botch-up 1 -1010101011 perk-up 1 -1010101011 ratcheting-up 1 -1010101011 countersource 1 -1010101011 partowner 1 -1010101011 barnful 1 -1010101011 trunkload 1 -1010101011 momento 1 -1010101011 conniver 1 -1010101011 thumbfuls 1 -1010101011 minipurge 1 -1010101011 trainload 1 -1010101011 de-linking 1 -1010101011 hairsbreadth 1 -1010101011 crazyquilt 1 -1010101011 station-unit 1 -1010101011 recomposition 1 -1010101011 remapping 1 -1010101011 stretching-out 1 -1010101011 hombre-to-hombre 1 -1010101011 near-marathon 1 -1010101011 near-wipeout 1 -1010101011 brushfire 1 -1010101011 reoccurrence 1 -1010101011 FedBank 1 -1010101011 governor-at-large 1 -1010101011 presentiment 1 -1010101011 36-roll 1 -1010101011 four-pack 1 -1010101011 trillionth 1 -1010101011 mischaracterization 1 -1010101011 nearstalemate 1 -1010101011 garageful 1 -1010101011 reducer 1 -1010101011 weeder-out 1 -1010101011 misassessment 1 -1010101011 profesor 1 -1010101011 half-ahead 1 -1010101011 bastardization 1 -1010101011 disapperance 1 -1010101011 re-acceleration 1 -1010101011 nonmillionaire 1 -1010101011 stipendiary 1 -1010101011 near-closing 1 -1010101011 buzzsaw 1 -1010101011 scenelets 1 -1010101011 percentge 1 -1010101011 near-hatred 1 -1010101011 maximimum 1 -1010101011 jigger 1 -1010101011 quaret 1 -1010101011 testfiring 1 -1010101011 world-beater 1 -1010101011 truckful 1 -1010101011 great-grandaughter 1 -1010101011 mini-history 1 -1010101011 re-gearing 1 -1010101011 drumroll 1 -1010101011 counterresurgence 1 -1010101011 value-story 1 -1010101011 sometime-viewer 1 -1010101011 fleck 1 -1010101011 Colloquium 1 -1010101011 wearing-off 1 -1010101011 fee-short 1 -1010101011 backbeat 1 -1010101011 five-times 1 -1010101011 patten 1 -1010101011 tractor-load 1 -1010101011 home-brew 1 -1010101011 near-quintupling 1 -1010101011 subservicer 1 -1010101011 great-great-grandson 2 -1010101011 nabob 2 -1010101011 near-riot 2 -1010101011 tankful 2 -1010101011 moonscape 2 -1010101011 shovelful 2 -1010101011 cupful 2 -1010101011 pentathlon 2 -1010101011 concord 2 -1010101011 super-commissioner 2 -1010101011 falling-off 2 -1010101011 wingding 2 -1010101011 futon 2 -1010101011 vanload 2 -1010101011 skeins 2 -1010101011 garland 2 -1010101011 toothache 2 -1010101011 naughtier 2 -1010101011 swathe 2 -1010101011 snootful 2 -1010101011 lot. 2 -1010101011 cloverleaf 2 -1010101011 ten-thousandth 2 -1010101011 deflection 2 -1010101011 basketful 2 -1010101011 grabbag 2 -1010101011 witch-hunt 2 -1010101011 half-gram 2 -1010101011 pin-ups 2 -1010101011 lifesaver 2 -1010101011 flake 2 -1010101011 diorama 3 -1010101011 closetful 3 -1010101011 precis 3 -1010101011 celebrant 3 -1010101011 billionth 3 -1010101011 ream 3 -1010101011 B+ 3 -1010101011 superabundance 3 -1010101011 fount 3 -1010101011 premonition 3 -1010101011 clothesline 3 -1010101011 vale 3 -1010101011 plenitude 3 -1010101011 watt 3 -1010101011 supression 3 -1010101011 descendent 3 -1010101011 grab-bag 4 -1010101011 diminishment 4 -1010101011 smidge 4 -1010101011 shard 4 -1010101011 pocketful 4 -1010101011 grubstake 4 -1010101011 hater 4 -1010101011 bookcase 5 -1010101011 spoonful 5 -1010101011 smidgen 5 -1010101011 figment 5 -1010101011 bagful 5 -1010101011 crumb 6 -1010101011 teaspoon 6 -1010101011 wisp 6 -1010101011 twinge 7 -1010101011 scintilla 7 -1010101011 fistful 7 -1010101011 licenser 7 -1010101011 mock-up 7 -1010101011 sinkhole 8 -1010101011 swig 8 -1010101011 fusillade 8 -1010101011 hailstorm 8 -1010101011 planeload 8 -1010101011 passel 8 -1010101011 signer 9 -1010101011 principality 9 -1010101011 redefinition 10 -1010101011 murmur 10 -1010101011 by-product 10 -1010101011 reprise 10 -1010101011 boatload 10 -1010101011 reexamination 11 -1010101011 quart 11 -1010101011 snippet 12 -1010101011 melange 13 -1010101011 fetish 13 -1010101011 Rumor 13 -1010101011 busload 13 -1010101011 compendium 13 -1010101011 sheaf 13 -1010101011 hundredth 14 -1010101011 peep 15 -1010101011 rehash 15 -1010101011 paragon 15 -1010101011 potpourri 17 -1010101011 remnant 17 -1010101011 vat 17 -1010101011 cornucopia 18 -1010101011 carat 20 -1010101011 re-examination 20 -1010101011 mishmash 20 -1010101011 pint 20 -1010101011 phalanx 20 -1010101011 crescendo 21 -1010101011 modicum 21 -1010101011 wad 21 -1010101011 roomful 23 -1010101011 trifle 23 -1010101011 half-mile 24 -1010101011 portent 24 -1010101011 smattering 26 -1010101011 vestige 26 -1010101011 tad 26 -1010101011 smorgasbord 27 -1010101011 hotbed 27 -1010101011 gaggle 28 -1010101011 microcosm 30 -1010101011 bevy 34 -1010101011 follower 37 -1010101011 glimmer 39 -1010101011 mockery 41 -1010101011 bastion 42 -1010101011 descendant 43 -1010101011 hodgepodge 53 -1010101011 plethora 55 -1010101011 whiff 57 -1010101011 tenth 67 -1010101011 blizzard 67 -1010101011 torrent 70 -1010101011 replay 75 -1010101011 byproduct 78 -1010101011 harbinger 80 -1010101011 recurrence 84 -1010101011 raft 98 -1010101011 sigh 102 -1010101011 slew 137 -1010101011 glimpse 143 -1010101011 barrage 161 -1010101011 rash 195 -1010101011 mixture 203 -1010101011 reflection 273 -1010101011 spate 310 -1010101011 flurry 370 -1010101011 bunch 383 -1010101011 pair 551 -1010101011 string 671 -1010101011 handful 890 -1010101011 variety 1653 -1010101011 couple 2391 -1010101011 bit 2805 -1010101011 series 4249 -1010101011 lot 8478 -1010101100 row-upon-row 1 -1010101100 Propagation 1 -1010101100 105.95 1 -1010101100 photoactivation 1 -1010101100 boxloads 1 -1010101100 musicalization 1 -1010101100 51,682 1 -1010101100 mega-critic 1 -1010101100 forward-shifting 1 -1010101100 patency 1 -1010101100 representives 1 -1010101100 Alusit 1 -1010101100 dealer-distribution 1 -1010101100 misapplications 1 -1010101100 socio-dramas 1 -1010101100 519,500 1 -1010101100 bargeloads 1 -1010101100 Itoki 1 -1010101100 784,100 1 -1010101100 tinges 1 -1010101100 exacerbation 1 -1010101100 UnionBank 1 -1010101100 Baggies 1 -1010101100 Allwash 1 -1010101100 trayloads 1 -1010101100 99.049 1 -1010101100 snifters 1 -1010101100 ex-makers 1 -1010101100 space-testing 1 -1010101100 Aleksandrov 1 -1010101100 2,584,539 1 -1010101100 1,258,930 1 -1010101100 overpressurization 1 -1010101100 micro-specialty 1 -1010101100 169,905 1 -1010101100 appurtenance 1 -1010101100 stencils 1 -1010101100 1/1000th 1 -1010101100 Prunes 1 -1010101100 391,925 1 -1010101100 liturgies 1 -1010101100 1,007,245 1 -1010101100 galvanization 1 -1010101100 chokepoint 1 -1010101100 Elastik 1 -1010101100 27,235 1 -1010101100 447,100 1 -1010101100 once-pipsqueak 1 -1010101100 476,069 1 -1010101100 neo-mercantilism 1 -1010101100 tail-twisting 1 -1010101100 non-solicitation 1 -1010101100 de-averaging 1 -1010101100 5103 1 -1010101100 sight-out 1 -1010101100 SuperRx 1 -1010101100 677,886 1 -1010101100 1,069,425 1 -1010101100 user-quantities 1 -1010101100 floodtide 1 -1010101100 1,188,690 1 -1010101100 11,889 1 -1010101100 4,059 1 -1010101100 Cargolux 1 -1010101100 630,900 1 -1010101100 tap-dancing 1 -1010101100 sendup 1 -1010101100 mummifying 1 -1010101100 remobilization 1 -1010101100 chimeras 1 -1010101100 thirteen-sixteenths 1 -1010101100 needleful 1 -1010101100 diameters 1 -1010101100 opinon 1 -1010101100 1/315th 1 -1010101100 aftermaths 1 -1010101100 1,936 1 -1010101100 Muelheim 1 -1010101100 3,483,085 1 -1010101100 party-switchers 1 -1010101100 Just-no 1 -1010101100 thouands 1 -1010101100 underrecording 1 -1010101100 497,800 1 -1010101100 tufts 1 -1010101100 500mg 1 -1010101100 docudramatization 1 -1010101100 23,320,900 1 -1010101100 278,337 1 -1010101100 remaker 1 -1010101100 comrade-in-arms 2 -1010101100 Abolition 2 -1010101100 entailment 2 -1010101100 Sanctity 2 -1010101100 subsets 2 -1010101100 peals 2 -1010101100 recoupment 2 -1010101100 achievability 2 -1010101100 cutaways 2 -1010101100 undersides 2 -1010101100 teaspoonful 2 -1010101100 32K 2 -1010101100 Dilemmas 2 -1010101100 fannies 2 -1010101100 pooh-bahs 2 -1010101100 Demise 2 -1010101100 fifteen-sixteenths 2 -1010101100 abnegation 2 -1010101100 1/1,000th 2 -1010101100 near-humiliation 2 -1010101100 magnificence 2 -1010101100 wrongfulness 2 -1010101100 Isimat 2 -1010101100 conclaves 2 -1010101100 Keeper 2 -1010101100 3,112 2 -1010101100 873,261 2 -1010101100 co-discoverer 2 -1010101100 daubs 2 -1010101100 Tyranny 2 -1010101100 outpourings 3 -1010101100 wellsprings 3 -1010101100 evocations 3 -1010101100 one-twelfth 3 -1010101100 naivety 3 -1010101100 dollops 3 -1010101100 gaggles 3 -1010101100 zillions 3 -1010101100 promulgation 3 -1010101100 Registrar 3 -1010101100 Rapture 3 -1010101100 arrogation 3 -1010101100 seven-tenths 3 -1010101100 redesignation 3 -1010101100 1/20th 3 -1010101100 1/142 3 -1010101100 cartelization 3 -1010101100 ripeness 3 -1010101100 politicalization 3 -1010101100 Adoration 3 -1010101100 intimations 4 -1010101100 abolishment 4 -1010101100 distributer 4 -1010101100 Ounce 4 -1010101100 garlands 4 -1010101100 veneration 4 -1010101100 dereliction 4 -1010101100 Misuse 4 -1010101100 then-director 4 -1010101100 phantoms 4 -1010101100 gassing 4 -1010101100 possessor 5 -1010101100 reinvigoration 5 -1010101100 then-Secretary 5 -1010101100 Chevrolet-Pontiac-GM 5 -1010101100 mega-mergers 5 -1010101100 Anatomy 6 -1010101100 Sentinels 6 -1010101100 recission 6 -1010101100 stratum 6 -1010101100 AIME 6 -1010101100 adoration 6 -1010101100 three-tenths 6 -1010101100 reorientation 6 -1010101100 neutralization 6 -1010101100 13/16ths 6 -1010101100 explication 6 -1010101100 scads 6 -1010101100 multimillions 6 -1010101100 wearied 6 -1010101100 misallocation 7 -1010101100 re-establishment 7 -1010101100 glimmers 7 -1010101100 commingling 7 -1010101100 platoons 8 -1010101100 deinstitutionalization 8 -1010101100 after-effects 8 -1010101100 descendents 9 -1010101100 mea 9 -1010101100 oodles 9 -1010101100 Mistress 9 -1010101100 circumvention 10 -1010101100 three-sevenths 10 -1010101100 codification 10 -1010101100 closeups 10 -1010101100 Heartbeat 10 -1010101100 chronicler 11 -1010101100 shortness 12 -1010101100 Ports 12 -1010101100 splashes 13 -1010101100 dint 13 -1010101100 remembrance 15 -1010101100 gobs 15 -1010101100 perversion 16 -1010101100 Kind 21 -1010101100 bunching 22 -1010101100 truckloads 23 -1010101100 disgorgement 27 -1010101100 mounds 27 -1010101100 Abreast 28 -1010101100 misapplication 28 -1010101100 normalization 29 -1010101100 confiscation 30 -1010101100 consummation 31 -1010101100 vestiges 33 -1010101100 facet 35 -1010101100 upwards 35 -1010101100 curtailment 38 -1010101100 legion 39 -1010101100 hardening 40 -1010101100 reams 41 -1010101100 semblance 44 -1010101100 glimpses 49 -1010101100 mastery 55 -1010101100 falsification 56 -1010101100 legions 61 -1010101100 hordes 64 -1010101100 remnants 66 -1010101100 stacks 72 -1010101100 piles 93 -1010101100 breaches 99 -1010101100 obstruction 109 -1010101100 misuse 128 -1010101100 disposing 152 -1010101100 expressions 152 -1010101100 Worlds 196 -1010101100 receipt 216 -1010101100 tens 392 -1010101100 aspect 476 -1010101100 breach 519 -1010101100 dozens 865 -1010101100 billions 931 -1010101100 plenty 962 -1010101100 lots 1036 -1010101100 completion 1149 -1010101100 type 1662 -1010101100 hundreds 1882 -1010101100 sort 2099 -1010101100 millions 2176 -1010101100 thousands 2349 -1010101100 lack 3115 -1010101100 kind 4842 -1010101101 gentlemen-owners 1 -1010101101 137,671 1 -1010101101 circus-like 1 -1010101101 838,414 1 -1010101101 seed-beds 1 -1010101101 near-saturation 1 -1010101101 chockfull 1 -1010101101 non-convertibility 1 -1010101101 one-trillionth 1 -1010101101 444,445 1 -1010101101 ten-tenths 1 -1010101101 12-ounces 1 -1010101101 .55 1 -1010101101 middle-classness 1 -1010101101 reaffirmations 1 -1010101101 impressment 1 -1010101101 self-reports 1 -1010101101 410,594 1 -1010101101 co-operator 1 -1010101101 166,660 1 -1010101101 co-victims 1 -1010101101 sequestrations 1 -1010101101 Gruit-Heberlein 1 -1010101101 .2494 1 -1010101101 retinopathy 1 -1010101101 deacons 1 -1010101101 vice-minister 1 -1010101101 licentious 1 -1010101101 1/10,000th 1 -1010101101 talkiness 1 -1010101101 785,732 1 -1010101101 road-kills 1 -1010101101 quality-independence 1 -1010101101 313,750 1 -1010101101 president-director 1 -1010101101 one-hundreth 1 -1010101101 editor/publisher 1 -1010101101 654,500 1 -1010101101 1,200/3,937ths 1 -1010101101 phenomenons 1 -1010101101 1,310,000 1 -1010101101 invigoration 1 -1010101101 jackwackers 2 -1010101101 scrod 2 -1010101101 MAILINGS 2 -1010101101 616,728 2 -1010101101 Librarian 2 -1010101101 liablities 2 -1010101101 beehives 2 -1010101101 kava 2 -1010101101 GENT-65 2 -1010101101 solidification 2 -1010101101 Montagnards 2 -1010101101 short-term-oriented 2 -1010101101 Tomorrowland 2 -1010101101 Hotspur 3 -1010101101 paragons 3 -1010101101 mutuality 4 -1010101101 one-thousandth 4 -1010101101 part-ownership 5 -1010101101 halons 5 -1010101101 Opren 5 -1010101101 co-underwriter 6 -1010101101 14,375,000 9 -1010101101 furtherance 11 -1010101101 depictions 15 -1010101101 chock-full 15 -1010101101 pawns 18 -1010101101 harbingers 21 -1010101101 one-hundredth 23 -1010101101 trillions 41 -1010101101 symptomatic 49 -1010101101 1/100th 63 -1010101101 1/100 75 -1010101101 milestones 80 -1010101101 lieu 149 -1010101101 part 19564 -1010101101 spite 255 -1010101110 recalibrating 1 -1010101110 rennovation 1 -1010101110 refinancing. 1 -1010101110 21,978 1 -1010101110 income-driven 1 -1010101110 onefifth 1 -1010101110 collectivizing 1 -1010101110 film-like 1 -1010101110 anti-Reaganism 1 -1010101110 Trevanian 1 -1010101110 Array 1 -1010101110 3.5-to-1 1 -1010101110 redemption-by-mail 1 -1010101110 1,103,720 1 -1010101110 desertlike 1 -1010101110 osing 1 -1010101110 bearableness 1 -1010101110 tax-eaters 1 -1010101110 half-a-percentage 1 -1010101110 sesquipedalian 1 -1010101110 1,672,283 1 -1010101110 635,264 1 -1010101110 onetenth 1 -1010101110 14,275 1 -1010101110 entombing 1 -1010101110 re-airing 1 -1010101110 others. 1 -1010101110 13,215,000 1 -1010101110 321,681 1 -1010101110 741,025 1 -1010101110 obssessive 1 -1010101110 5,624,191 1 -1010101110 P-p-p-erfect 1 -1010101110 spacemen 1 -1010101110 capacity-driven 1 -1010101110 705,181 1 -1010101110 despotisms 1 -1010101110 fortyfold 1 -1010101110 sun-worshippers 1 -1010101110 MMST 1 -1010101110 Boeskyism 1 -1010101110 under-advertise 1 -1010101110 rheumatology 1 -1010101110 naturism 1 -1010101110 78,486 1 -1010101110 1,467,000 1 -1010101110 972,720 1 -1010101110 40,113,000 1 -1010101110 Gety 1 -1010101110 301,300 1 -1010101110 521,600 1 -1010101110 750,125 1 -1010101110 27914 1 -1010101110 462,100 1 -1010101110 buck-passers 1 -1010101110 two-years 1 -1010101110 CitiSavings 1 -1010101110 galvanic 1 -1010101110 0.6125 1 -1010101110 jerry-rigging 1 -1010101110 1/25th 1 -1010101110 border-crossing 1 -1010101110 20,947.00 1 -1010101110 272.00 1 -1010101110 17,950,000 1 -1010101110 Koni 1 -1010101110 redeposits 1 -1010101110 threatand 1 -1010101110 736,600 1 -1010101110 335,800 1 -1010101110 633,500 1 -1010101110 three-fourth 1 -1010101110 394,500 1 -1010101110 ladder-climb 1 -1010101110 IBM-proprietary 1 -1010101110 overcomplacency 1 -1010101110 1,654,589 1 -1010101110 0.053 1 -1010101110 573,300 1 -1010101110 342,990 1 -1010101110 Cheneys 1 -1010101110 pole-to-pole 1 -1010101110 19,578,000 1 -1010101110 23,000,000 1 -1010101110 345,500 1 -1010101110 1/15th 1 -1010101110 15,696,000 1 -1010101110 overtired 1 -1010101110 471,300 1 -1010101110 non-changers 1 -1010101110 275,669 1 -1010101110 fashionableness 1 -1010101110 men-and-women-in-particular 1 -1010101110 Z-outs 1 -1010101110 14,530,000 1 -1010101110 one-30th 1 -1010101110 fiveeighths 1 -1010101110 49,955 1 -1010101110 insensible 1 -1010101110 overcompensate 1 -1010101110 969,174 1 -1010101110 332,836 1 -1010101110 1,493,900 1 -1010101110 quinidine 1 -1010101110 evolution. 1 -1010101110 .235 1 -1010101110 fugit 1 -1010101110 Disposed 1 -1010101110 0.706 1 -1010101110 jackknifes 1 -1010101110 evangelicalism 1 -1010101110 non-owners 1 -1010101110 constipating 1 -1010101110 Pinkertons 1 -1010101110 13,896,699 1 -1010101110 well-drawn 1 -1010101110 27260 1 -1010101110 Maxxam-increased 1 -1010101110 1-in-1,428 1 -1010101110 32-thousandths 1 -1010101110 single-jobbers 1 -1010101110 declaratively 1 -1010101110 DJs 1 -1010101110 milkmen 1 -1010101110 reinstatment 1 -1010101110 705,800 1 -1010101110 100-millionths 1 -1010101110 tradeless 1 -1010101110 coversions 1 -1010101110 drunkenn 1 -1010101110 547,012 1 -1010101110 lovi-lovi 1 -1010101110 1/80th 1 -1010101110 safety-testing 1 -1010101110 cost-per-thousand 1 -1010101110 685,200 1 -1010101110 similar-rated 1 -1010101110 6,850 1 -1010101110 180,300 1 -1010101110 gauranteed 1 -1010101110 313,200 1 -1010101110 one-yen 1 -1010101110 210,700 1 -1010101110 1:600 1 -1010101110 50-50. 1 -1010101110 299,696 1 -1010101110 fools-silver 1 -1010101110 2074 1 -1010101110 central-time-zone-based 1 -1010101110 2,000cc 1 -1010101110 981,900 1 -1010101110 post-farm-crisis 1 -1010101110 re-presenting 1 -1010101110 Malthus 1 -1010101110 retractables 1 -1010101110 1,988,000 1 -1010101110 disjuncture 1 -1010101110 limit-up 1 -1010101110 releveraging 1 -1010101110 masturbation 1 -1010101110 competence. 1 -1010101110 representativeness 1 -1010101110 oneeighth 1 -1010101110 DM2,300 1 -1010101110 0.406 1 -1010101110 hairlines 1 -1010101110 4,860,000 1 -1010101110 celebration. 1 -1010101110 600-miles-an-hour 1 -1010101110 tax-eating 1 -1010101110 redepositing 1 -1010101110 Metronic 1 -1010101110 finetuning 1 -1010101110 universalization 1 -1010101110 Effoa 1 -1010101110 4,677,726 1 -1010101110 26,481,960 1 -1010101110 764,485 1 -1010101110 910,710 1 -1010101110 half-speed 1 -1010101110 28,450 1 -1010101110 nightmares. 1 -1010101110 pre-Hugo 1 -1010101110 0.085 1 -1010101110 0.135 1 -1010101110 child-centered 1 -1010101110 sheens 1 -1010101110 63,011 1 -1010101110 re-definitions 1 -1010101110 .025 1 -1010101110 .4 1 -1010101110 tea-servers 1 -1010101110 anticpated 1 -1010101110 fist-pounding 1 -1010101110 0.9677 2 -1010101110 47,650 2 -1010101110 775,500 2 -1010101110 preservers 2 -1010101110 onehalf 2 -1010101110 12,632,000 2 -1010101110 page-and-a-half 2 -1010101110 705,200 2 -1010101110 nonfeasance 2 -1010101110 1/64th 2 -1010101110 time-out 2 -1010101110 four-to-one 2 -1010101110 monohulls 2 -1010101110 20/64 2 -1010101110 54-35 2 -1010101110 4,585,000 2 -1010101110 2/100ths 2 -1010101110 1/50th 2 -1010101110 anniverary 2 -1010101110 four-tenths 2 -1010101110 one-millionth 2 -1010101110 Filipina 2 -1010101110 Russified 2 -1010101110 aggressions 2 -1010101110 0.555 2 -1010101110 glimmerings 3 -1010101110 hosannas 3 -1010101110 93-0 3 -1010101110 1.1828 3 -1010101110 word-for-word 3 -1010101110 0.0687 3 -1010101110 tooting 3 -1010101110 quintupling 3 -1010101110 newsreels 3 -1010101110 sprig 3 -1010101110 406-8 3 -1010101110 1,435 3 -1010101110 .02 4 -1010101110 onequarter 4 -1010101110 5,550 4 -1010101110 96-0 4 -1010101110 ten-fold 4 -1010101110 refiguring 5 -1010101110 six-tenths 5 -1010101110 rehashing 5 -1010101110 one-twentieth 6 -1010101110 Vis 6 -1010101110 onethird 6 -1010101110 nine-tenths 7 -1010101110 eight-tenths 7 -1010101110 1/10 8 -1010101110 twothirds 10 -1010101110 b-Week 12 -1010101110 1/10th 12 -1010101110 two-fifths 16 -1010101110 four-fifths 19 -1010101110 two-tenths 19 -1010101110 one-seventh 19 -1010101110 three-fifths 20 -1010101110 seven-eighths 21 -1010101110 quadrupling 21 -1010101110 five-eighths 23 -1010101110 three-eighths 36 -1010101110 one-sixth 52 -1010101110 one-eighth 57 -1010101110 tripling 72 -1010101110 three-fourths 103 -1010101110 one-tenth 132 -1010101110 one-fourth 164 -1010101110 one-fifth 193 -1010101110 one-quarter 233 -1010101110 one-half 271 -1010101110 three-quarters 284 -1010101110 doubling 390 -1010101110 one-third 1280 -1010101110 half 11006 -1010101110 two-thirds 1384 -10101011110 glitchite 1 -10101011110 assignation 1 -10101011110 items-services 1 -10101011110 coproprietor 1 -10101011110 includable 1 -10101011110 supernumerary 1 -10101011110 Napalm 1 -10101011110 reporter/historians 1 -10101011110 enterprisers 1 -10101011110 tape-recorder 1 -10101011110 grayish-green 1 -10101011110 condors 1 -10101011110 motion. 1 -10101011110 debriefings 1 -10101011110 painterliness 1 -10101011110 job-ready 1 -10101011110 coheads 1 -10101011110 resource. 1 -10101011110 understocked 1 -10101011110 marking-down 1 -10101011110 wiled 1 -10101011110 offensiveness 1 -10101011110 48,787 1 -10101011110 6/1000 1 -10101011110 free-spenders 1 -10101011110 20-year-veterans 1 -10101011110 limericks 1 -10101011110 trustful 1 -10101011110 draught 1 -10101011110 Qualitarians 1 -10101011110 .456 1 -10101011110 suspicous 1 -10101011110 outgrowths 1 -10101011110 picking-off 1 -10101011110 Kalnins 1 -10101011110 independence-mindedness 1 -10101011110 1,564 1 -10101011110 consumptives 1 -10101011110 agrain 1 -10101011110 competition-at-any-cost 1 -10101011110 print. 1 -10101011110 dinkum 1 -10101011110 near-clones 1 -10101011110 Lempereur 1 -10101011110 myocarditis 1 -10101011110 switchmen 1 -10101011110 mini-banks 1 -10101011110 disproven 1 -10101011110 WFMY-TV 1 -10101011110 misrepresentative 1 -10101011110 performer-directors 1 -10101011110 hereditament 1 -10101011110 adventuress 1 -10101011110 mug-shot 1 -10101011110 coprophagous 1 -10101011110 fomenters 1 -10101011110 knowledge. 1 -10101011110 cohabitants 1 -10101011110 off-shoots 1 -10101011110 1,649,472 1 -10101011110 land-grab 1 -10101011110 intensions 1 -10101011110 mass-assets 1 -10101011110 controller/treasurer 1 -10101011110 bachelor's-degree 1 -10101011110 public-at-large 1 -10101011110 jumpiness 1 -10101011110 dispositive 1 -10101011110 feed. 1 -10101011110 idiotic. 1 -10101011110 arguments. 1 -10101011110 Newark-London 1 -10101011110 substrains 1 -10101011110 wrenchmanship 1 -10101011110 cross-merchandising 1 -10101011110 dismayingly 1 -10101011110 service-loss 1 -10101011110 ectothermic 1 -10101011110 fuzzies 1 -10101011110 behests 1 -10101011110 muddlehead 1 -10101011110 keratin 1 -10101011110 unthought 1 -10101011110 quota-based 1 -10101011110 derprived 1 -10101011110 practices-losses 1 -10101011110 revenue- 1 -10101011110 breakpoints 1 -10101011110 thekind 1 -10101011110 vivifier 1 -10101011110 stances. 1 -10101011110 existance 1 -10101011110 praise-song 1 -10101011110 troves 1 -10101011110 Avicenna 1 -10101011110 hoo-ha 1 -10101011110 dossers 1 -10101011110 pleasure-seekers 1 -10101011110 recopying 1 -10101011110 tints 1 -10101011110 Brugghen 1 -10101011110 up-for-grabs 1 -10101011110 due. 1 -10101011110 well-chronicled 1 -10101011110 psychos 1 -10101011110 co-leaders 1 -10101011110 aquitted 1 -10101011110 shelfloads 1 -10101011110 doggies. 1 -10101011110 belles 1 -10101011110 horses. 1 -10101011110 explainer 2 -10101011110 time-conscious 2 -10101011110 fistfuls 2 -10101011110 absolution 2 -10101011110 Rid 2 -10101011110 retinas 2 -10101011110 alfresco 2 -10101011110 amoung 2 -10101011110 469,138,133 2 -10101011110 panners 2 -10101011110 398,929 2 -10101011110 contraventions 2 -10101011110 imbecilic 2 -10101011110 partaking 2 -10101011110 Polaroids 3 -10101011110 1,070,000 3 -10101011110 exercized 3 -10101011110 supernumeraries 3 -10101011110 figments 3 -10101011110 leary 3 -10101011110 salting 4 -10101011110 underuse 4 -10101011110 witting 4 -10101011110 undeserving 4 -10101011110 rebating 4 -10101011110 brand-loyal 4 -10101011110 0.6272 5 -10101011110 desirous 5 -10101011110 disabused 5 -10101011110 chary 6 -10101011110 enslavement 7 -10101011110 scornful 9 -10101011110 cleansed 10 -10101011110 cognizant 10 -10101011110 murmurs 11 -10101011110 dismissive 12 -10101011110 shorn 12 -10101011110 emblematic 13 -10101011110 tiring 20 -10101011110 disdainful 21 -10101011110 envious 22 -10101011110 distrustful 22 -10101011110 clothed 24 -10101011110 apprised 27 -10101011110 appreciative 28 -10101011110 intolerant 30 -10101011110 contemptuous 31 -10101011110 shying 34 -10101011110 resentful 36 -10101011110 deserving 46 -10101011110 reflective 53 -10101011110 enamored 56 -10101011110 jealous 59 -10101011110 ashamed 60 -10101011110 ignorant 75 -10101011110 mindful 75 -10101011110 unheard 94 -10101011110 indicative 94 -10101011110 incapable 105 -10101011110 weary 110 -10101011110 leery 112 -10101011110 fond 137 -10101011110 deprived 150 -10101011110 disposed 188 -10101011110 acquitted 191 -10101011110 worthy 225 -10101011110 supportive 231 -10101011110 fearful 239 -10101011110 relieved 281 -10101011110 unaware 282 -10101011110 stripped 289 -10101011110 shy 316 -10101011110 tired 445 -10101011110 proud 446 -10101011110 wary 562 -10101011110 afraid 705 -10101011110 capable 756 -10101011110 diluted 800 -10101011110 convicted 1161 -10101011110 aware 1783 -10101011110 worth 3527 -10101011111 consits 1 -10101011111 1-E 1 -10101011111 KHFM 1 -10101011111 consiting 1 -10101011111 Erudina 1 -10101011111 overspecialization 1 -10101011111 Diversion 1 -10101011111 Near-completion 1 -10101011111 Proclaimer 1 -10101011111 Co-factors 1 -10101011111 Invasions 1 -10101011111 Accuses 1 -10101011111 Trui 1 -10101011111 Vicaplast 1 -10101011111 Designation 1 -10101011111 upmost 1 -10101011111 wine-bottles 1 -10101011111 7,813 1 -10101011111 Yakovlevich 1 -10101011111 74/100ths 1 -10101011111 within-the-film 1 -10101011111 demobilizations 1 -10101011111 accountings 1 -10101011111 grdersy 1 -10101011111 doorbells 2 -10101011111 brimful 2 -10101011111 sprigs 2 -10101011111 violaters 2 -10101011111 slicks 2 -10101011111 transliteration 2 -10101011111 Nanev 2 -10101011111 Yarin 2 -10101011111 sodbusters 2 -10101011111 half-owner 2 -10101011111 diplomates 2 -10101011111 whorls 3 -10101011111 sanctorum 3 -10101011111 insignias 3 -10101011111 LEAVES 4 -10101011111 stank 4 -10101011111 reeked 4 -10101011111 wisps 4 -10101011111 Dataway 6 -10101011111 redolent 6 -10101011111 undreamed 7 -10101011111 reek 7 -10101011111 garnishment 7 -10101011111 reeking 10 -10101011111 reeks 13 -10101011111 bereft 20 -10101011111 disposes 22 -10101011111 irrespective 26 -10101011111 wistfully 34 -10101011111 smacks 38 -10101011111 disapproved 39 -10101011111 beware 57 -10101011111 devoid 68 -10101011111 comprised 88 -10101011111 reminiscent 135 -10101011111 consisted 256 -10101011111 composed 312 -10101011111 consisting 513 -10101011111 regardless 569 -10101011111 consists 812 -10101011111 none 1543 -10101011111 ahead 4398 -10101011111 instead 4328 -1010110000 23119.08 1 -1010110000 1660.1 1 -1010110000 1310.6 1 -1010110000 22935.65 1 -1010110000 1285.7 1 -1010110000 1289.9 1 -1010110000 CATER 1 -1010110000 Visitations 1 -1010110000 1289.50 1 -1010110000 1658.4 1 -1010110000 566.26 1 -1010110000 730.91 1 -1010110000 20877.32 1 -1010110000 afternon 1 -1010110000 21266.28 1 -1010110000 22083.16 1 -1010110000 furor-finders 1 -1010110000 1702.5 1 -1010110000 22234.29 1 -1010110000 22576.38 1 -1010110000 0.0152 1 -1010110000 thinclads 1 -1010110000 Slurpees 1 -1010110000 confirmational 1 -1010110000 22685.73 1 -1010110000 playbills 1 -1010110000 Velodrome 1 -1010110000 re-bookings 1 -1010110000 BRIDLE 1 -1010110000 1062.28 1 -1010110000 27866.38 1 -1010110000 2085.35 1 -1010110000 pigpen 1 -1010110000 263,978 1 -1010110000 stregthen 1 -1010110000 Panova 1 -1010110000 NIBBLE 1 -1010110000 non-musicians 1 -1010110000 weigh-in 1 -1010110000 176,843 1 -1010110000 counterman 1 -1010110000 kowtowed 1 -1010110000 oil-in-the-ground 1 -1010110000 inadept 1 -1010110000 1,225-the 1 -1010110000 Westins 1 -1010110000 poet-wife 1 -1010110000 joyriders 1 -1010110000 1,457 1 -1010110000 23138.85 1 -1010110000 22876.15 1 -1010110000 22796.98 1 -1010110000 22701.39 1 -1010110000 22662.43 1 -1010110000 23041.63 1 -1010110000 self-liquidate 1 -1010110000 23066.18 1 -1010110000 22831.93 1 -1010110000 22624.62 1 -1010110000 22641.00 1 -1010110000 22815.79 1 -1010110000 18,701.30 1 -1010110000 71,170 1 -1010110000 bureaucrat-prosecutors 1 -1010110000 toyshop 1 -1010110000 1960.05 1 -1010110000 23668.10 1 -1010110000 23750.48 1 -1010110000 27792.55 1 -1010110000 728,200 1 -1010110000 10,634,500 1 -1010110000 23815.08 1 -1010110000 1795.8 1 -1010110000 27593.82 1 -1010110000 Pakistan-U.S. 1 -1010110000 24361.91 1 -1010110000 23819.76 1 -1010110000 23485.00 1 -1010110000 27841.30 1 -1010110000 23483.66 1 -1010110000 marrige 1 -1010110000 23438.26 1 -1010110000 23591.55 1 -1010110000 bottomish 1 -1010110000 23752.96 1 -1010110000 23691.42 1 -1010110000 25886.34 1 -1010110000 25755.95 1 -1010110000 25932.32 1 -1010110000 25143.01 1 -1010110000 26223.85 1 -1010110000 25557.88 1 -1010110000 25819.98 1 -1010110000 25540.67 1 -1010110000 25387.34 1 -1010110000 guavas 1 -1010110000 25911.10 1 -1010110000 25660.84 1 -1010110000 2603 1 -1010110000 25691.33 1 -1010110000 25607.40 1 -1010110000 25828.70 1 -1010110000 24937.31 1 -1010110000 24860.28 1 -1010110000 26612.41 1 -1010110000 25187.74 1 -1010110000 non-existant 1 -1010110000 24949.54 1 -1010110000 base-broadening 1 -1010110000 26938.07 1 -1010110000 21547.48 1 -1010110000 defloration 1 -1010110000 22899.12 1 -1010110000 27365.47 1 -1010110000 22429.79 1 -1010110000 dry-cleaner 1 -1010110000 22676.63 1 -1010110000 27418.87 1 -1010110000 dimwits 1 -1010110000 Stadtheater 1 -1010110000 venuture 1 -1010110000 22909.44 1 -1010110000 38.0 1 -1010110000 McDermid 1 -1010110000 22804.17 1 -1010110000 90.03 1 -1010110000 131,770.59 1 -1010110000 22757.02 1 -1010110000 think-tanks 1 -1010110000 23291.08 1 -1010110000 22783.34 1 -1010110000 22459.02 1 -1010110000 stirringly 1 -1010110000 Void 2 -1010110000 Nickelodeon/Nick 2 -1010110000 one-fifteenth 2 -1010110000 1739.2 2 -1010110000 1307.1 2 -1010110000 28034.61 2 -1010110000 1328.8 2 -1010110000 98.675 2 -1010110000 389,300 2 -1010110000 gallantly 2 -1010110000 100.65 2 -1010110000 suckling 2 -1010110000 coquettish 3 -1010110000 Wong-Staal 3 -1010110000 gape 4 -1010110000 contriving 4 -1010110000 98.15 7 -1010110000 close 14560 -1010110000 swat 10 -10101100010 fourth-level 1 -10101100010 reconsiketing 1 -10101100010 petrify 1 -10101100010 none-too-clean 1 -10101100010 cumulated 2 -10101100010 boob 2 -10101100010 135-yen 2 -10101100010 saddening 2 -10101100010 ahistorical 2 -10101100010 half-strength 2 -10101100010 battle-tested 3 -10101100010 1,045 3 -10101100010 zig-zag 3 -10101100010 sob 3 -10101100010 sublicense 4 -10101100010 underweighting 4 -10101100010 romanticize 5 -10101100010 fifth-place 6 -10101100010 buffers 6 -10101100010 wow 14 -10101100010 chuck 22 -10101100010 bake 27 -10101100010 quickening 30 -10101100010 stoop 33 -10101100010 tame 77 -10101100010 swell 137 -10101100010 gut 138 -10101100010 lean 344 -10101100010 smooth 399 -10101100010 calm 585 -10101100010 cool 620 -10101100010 narrow 1676 -10101100010 lead 5983 -10101100010 slow 2924 -10101100011 fetitval 1 -10101100011 becathe 1 -10101100011 out-think 1 -10101100011 dollar-bullish 1 -10101100011 formula-based 1 -10101100011 anti-Vietnamese 2 -10101100011 fortissimo 2 -10101100011 attune 2 -10101100011 anti-free 2 -10101100011 inked 2 -10101100011 extra-curricular 2 -10101100011 103.88 2 -10101100011 slo-mo 2 -10101100011 Angkor 2 -10101100011 291.88 2 -10101100011 85-cent 2 -10101100011 three-putt 2 -10101100011 half-free 2 -10101100011 RTL-Plus 2 -10101100011 terry 2 -10101100011 authenticate 2 -10101100011 fuzzy-cheeked 2 -10101100011 incisor 2 -10101100011 WTOP-AM 2 -10101100011 purposeless 2 -10101100011 frontier-free 3 -10101100011 blacksmiths 3 -10101100011 1,230 3 -10101100011 godlike 3 -10101100011 gluttonous 3 -10101100011 NYC 3 -10101100011 sloped 4 -10101100011 self-regulated 4 -10101100011 cross-check 4 -10101100011 overburden 4 -10101100011 10-times 4 -10101100011 pong 4 -10101100011 dampens 4 -10101100011 2,460 5 -10101100011 internalize 5 -10101100011 Finale 5 -10101100011 trivializing 5 -10101100011 twirling 5 -10101100011 orient 6 -10101100011 stun 6 -10101100011 1,570 6 -10101100011 limber 6 -10101100011 ex-aide 6 -10101100011 stonewall 8 -10101100011 1,390 11 -10101100011 ape 13 -10101100011 overshoot 13 -10101100011 tote 14 -10101100011 snug 14 -10101100011 eyeball 14 -10101100011 unattended 19 -10101100011 nip 21 -10101100011 imputed 21 -10101100011 rubber-stamp 22 -10101100011 scatter 29 -10101100011 crow 31 -10101100011 straddle 40 -10101100011 spice 43 -10101100011 diffuse 43 -10101100011 mute 52 -10101100011 pat 59 -10101100011 manifest 63 -10101100011 divine 72 -10101100011 consummate 75 -10101100011 utter 86 -10101100011 articulate 115 -10101100011 bare 159 -10101100011 blunt 279 -10101100011 alert 286 -10101100011 idle 350 -10101100011 secure 801 -10101100011 welcome 807 -10101100011 clean 1077 -10101100011 counter 1255 -10101100011 correct 1295 -10101100011 bear 1408 -10101100011 open 6612 -10101100011 present 3273 -1010110010 now-chilling 1 -1010110010 Canadien 1 -1010110010 teakwood 1 -1010110010 musems 1 -1010110010 gratify 1 -1010110010 film-thickness 1 -1010110010 Prufrockian 1 -1010110010 respiring 1 -1010110010 power-pole 1 -1010110010 ld 1 -1010110010 othewise 1 -1010110010 Merc-to 1 -1010110010 Repay 1 -1010110010 substantionally 1 -1010110010 2,923 1 -1010110010 1,504-to-575 1 -1010110010 285.48 1 -1010110010 daub 1 -1010110010 pesticide-laced 1 -1010110010 26029.22 1 -1010110010 MARRIAGES 1 -1010110010 boff 1 -1010110010 CDA. 1 -1010110010 fain 1 -1010110010 2261.2 1 -1010110010 piricuacos 1 -1010110010 out-liberal 1 -1010110010 Crosslands 1 -1010110010 wordlessly 1 -1010110010 archaeologist-historian 1 -1010110010 I've-seen-it-all-and-then-some 1 -1010110010 383.32 1 -1010110010 insurance-plan 1 -1010110010 ASSIGNMENTS 1 -1010110010 cross-bracings 1 -1010110010 perplex 1 -1010110010 sweet-pickle 1 -1010110010 BDM. 1 -1010110010 re-question 2 -1010110010 out-Volcker 2 -1010110010 abler 2 -1010110010 togas 2 -1010110010 cancer-stricken 2 -1010110010 Om 2 -1010110010 outpoll 2 -1010110010 10,530 2 -1010110010 ensnarl 2 -1010110010 uncreditworthy 2 -1010110010 less-drastic 2 -1010110010 non-needy 2 -1010110010 outthink 3 -1010110010 complacently 3 -1010110010 tediously 3 -1010110010 new-age 4 -1010110010 satirize 5 -1010110010 renominate 7 -1010110010 serenade 9 -1010110010 rankle 12 -1010110010 dazzle 19 -1010110010 reappoint 19 -1010110010 65-day 57 -1010110010 please 338 -1010110010 help 12679 -1010110010 succeed 2199 -10101100110 recession-era 1 -10101100110 midsingle 1 -10101100110 waif-under-the-hard-boiled-skin 1 -10101100110 1-plus 1 -10101100110 crystalize 1 -10101100110 officially-priced 1 -10101100110 breast-milk 1 -10101100110 417,644 2 -10101100110 739,000 2 -10101100110 college-sports 2 -10101100110 unsweetened 2 -10101100110 nine-cent 2 -10101100110 Modify 2 -10101100110 counter-balance 2 -10101100110 extoll 3 -10101100110 handpicks 3 -10101100110 bumble 3 -10101100110 re-ignite 3 -10101100110 41,322 4 -10101100110 crease 4 -10101100110 desecrate 4 -10101100110 dupe 5 -10101100110 reload 6 -10101100110 bloat 7 -10101100110 quintuple 7 -10101100110 triples 9 -10101100110 refit 11 -10101100110 cannibalize 14 -10101100110 hamstring 19 -10101100110 counterbalance 24 -10101100110 sap 42 -10101100110 vent 53 -10101100110 quadruple 65 -10101100110 crimp 70 -10101100110 refocus 75 -10101100110 rewrite 96 -10101100110 complement 232 -10101100110 bypass 243 -10101100110 supplement 254 -10101100110 scrap 403 -10101100110 upgrade 527 -10101100110 triple 591 -10101100110 stem 778 -10101100110 lift 784 -10101100110 halt 1180 -10101100110 double 2199 -10101100110 limit 3513 -10101100110 boost 4907 -10101100111 1,233,000 1 -10101100111 43,952 1 -10101100111 267.50 1 -10101100111 244.10 1 -10101100111 246.39 1 -10101100111 5,411 1 -10101100111 26,484 1 -10101100111 121.87 1 -10101100111 54,442 1 -10101100111 42,564 1 -10101100111 clodhoppers 1 -10101100111 420.00 1 -10101100111 268.00 1 -10101100111 22682.96 1 -10101100111 Ghor 1 -10101100111 priciness 1 -10101100111 Imperatriz 1 -10101100111 243.04 1 -10101100111 245.55 1 -10101100111 Anti-Socials 1 -10101100111 233,260 1 -10101100111 GB-INNO-BM 1 -10101100111 overfinance 1 -10101100111 Boesky-town 1 -10101100111 242.99 1 -10101100111 273.3 1 -10101100111 119.94 1 -10101100111 302.94 1 -10101100111 305.63 1 -10101100111 292.47 1 -10101100111 Mbala 1 -10101100111 2284.1 1 -10101100111 304.00 1 -10101100111 62,719 1 -10101100111 425.10 1 -10101100111 304.92 1 -10101100111 1830.8 1 -10101100111 2351.9 1 -10101100111 307.40 1 -10101100111 ten-year-olds 1 -10101100111 1818.5 1 -10101100111 2265.5 1 -10101100111 172.40 1 -10101100111 grandparenting 1 -10101100111 312.75 1 -10101100111 309.65 1 -10101100111 2244.7 1 -10101100111 Telebet 1 -10101100111 308.43 1 -10101100111 404.10 1 -10101100111 307.90 1 -10101100111 2289.3 1 -10101100111 2284.0 1 -10101100111 2277.2 1 -10101100111 2846.49 1 -10101100111 1638.1 1 -10101100111 under-hedge 1 -10101100111 1795.2 1 -10101100111 2329.69 1 -10101100111 239.67 1 -10101100111 227.67 1 -10101100111 272. 1 -10101100111 259. 1 -10101100111 1735.0 1 -10101100111 1322.0 1 -10101100111 267,867 1 -10101100111 213,731 1 -10101100111 238.52 1 -10101100111 1223.28 1 -10101100111 967.95 1 -10101100111 Leh 1 -10101100111 92,814 1 -10101100111 Calgary/Edmonton 1 -10101100111 15,886 1 -10101100111 1833.1 1 -10101100111 4645.29 1 -10101100111 off-markets 1 -10101100111 1943.8 1 -10101100111 351.86 1 -10101100111 258.38 1 -10101100111 Mush 1 -10101100111 2553.125 1 -10101100111 315.19 1 -10101100111 239.00 1 -10101100111 aerate 1 -10101100111 collate 1 -10101100111 320.43 1 -10101100111 124.71 1 -10101100111 248.52 1 -10101100111 blacksmithing 1 -10101100111 140.11 1 -10101100111 23328.91 1 -10101100111 254.48 1 -10101100111 248.96 1 -10101100111 220,819 1 -10101100111 25575.74 1 -10101100111 164.34 1 -10101100111 hyperventilate 1 -10101100111 186.97 1 -10101100111 334.65 1 -10101100111 184.12 1 -10101100111 0.5432 1 -10101100111 Waunakee 1 -10101100111 2224.8 1 -10101100111 2259.6 1 -10101100111 334.11 1 -10101100111 28,168,937 1 -10101100111 2317.4 1 -10101100111 322.09 1 -10101100111 892.9 1 -10101100111 2275.4 1 -10101100111 332.39 1 -10101100111 183.45 1 -10101100111 Seateam 1 -10101100111 Zimyanen 1 -10101100111 629.5 1 -10101100111 116.88 1 -10101100111 4,870 1 -10101100111 2249.7 1 -10101100111 25764.99 1 -10101100111 455.20 1 -10101100111 329.83 1 -10101100111 144.77 1 -10101100111 25231.59 1 -10101100111 2249.6 1 -10101100111 4,140 1 -10101100111 2159.41 1 -10101100111 25875.74 1 -10101100111 1,133.00 1 -10101100111 2,638,100 1 -10101100111 100.37 1 -10101100111 1,148.50 1 -10101100111 25754.33 1 -10101100111 312.70 1 -10101100111 353.09 1 -10101100111 176.67 1 -10101100111 C.P.A.F.F. 1 -10101100111 3050 1 -10101100111 308.55 1 -10101100111 ewers 1 -10101100111 23328.64 1 -10101100111 311.39 1 -10101100111 307.52 1 -10101100111 2371 1 -10101100111 3930 1 -10101100111 2190 1 -10101100111 346.57 1 -10101100111 308.29 1 -10101100111 310.68 1 -10101100111 all-Schubert 1 -10101100111 307.63 1 -10101100111 2383.1 1 -10101100111 adult-contemporary 1 -10101100111 318.05 1 -10101100111 316.23 1 -10101100111 318.45 1 -10101100111 317.57 1 -10101100111 1,785 1 -10101100111 2334.3 1 -10101100111 2920 1 -10101100111 3890 1 -10101100111 2160 1 -10101100111 1,137 1 -10101100111 2340.2 1 -10101100111 23942.94 1 -10101100111 2344.5 1 -10101100111 22702.74 1 -10101100111 308.47 1 -10101100111 307.81 1 -10101100111 re-experience 1 -10101100111 dimethylformamide 1 -10101100111 312.33 1 -10101100111 177.01 1 -10101100111 310.65 1 -10101100111 5,487 1 -10101100111 2333.9 1 -10101100111 353.57 1 -10101100111 351.72 1 -10101100111 437,606 1 -10101100111 225,838 1 -10101100111 268.88 1 -10101100111 1,941 1 -10101100111 386.05 1 -10101100111 304.5 1 -10101100111 272.59 1 -10101100111 269.08 1 -10101100111 2085.53 1 -10101100111 41,010 1 -10101100111 Abyei 1 -10101100111 275.22 1 -10101100111 279.38 1 -10101100111 491.80 1 -10101100111 189.80 1 -10101100111 1862.5 1 -10101100111 27293.67 1 -10101100111 15,883 1 -10101100111 276.41 1 -10101100111 278.07 1 -10101100111 278.24 1 -10101100111 demutualize 1 -10101100111 281.3 1 -10101100111 272.39 1 -10101100111 42-inch-or-bigger 1 -10101100111 1,749.8 1 -10101100111 294.08 1 -10101100111 277.93 1 -10101100111 447.14 1 -10101100111 658.50 1 -10101100111 265.59 1 -10101100111 314,642 1 -10101100111 381.60 1 -10101100111 266.47 1 -10101100111 poliomyelitis 1 -10101100111 265.88 1 -10101100111 264.00 1 -10101100111 1739.8 1 -10101100111 Vallegrande 1 -10101100111 262.51 1 -10101100111 27610.75 1 -10101100111 262.33 1 -10101100111 647.5 1 -10101100111 261.52 1 -10101100111 258.35 1 -10101100111 Competitrack 1 -10101100111 269.73 1 -10101100111 Sandvik 1 -10101100111 514.5 1 -10101100111 353.61 1 -10101100111 383.91 1 -10101100111 268.82 1 -10101100111 269.18 1 -10101100111 401,365 1 -10101100111 195,297 1 -10101100111 269.31 1 -10101100111 267.43 1 -10101100111 295.00 1 -10101100111 269.70 1 -10101100111 679.50 1 -10101100111 27893.94 1 -10101100111 270.65 1 -10101100111 McLaw 1 -10101100111 268.13 1 -10101100111 2342.6 1 -10101100111 326,431 1 -10101100111 441.24 1 -10101100111 Palladio 1 -10101100111 3840.11 1 -10101100111 691.50 1 -10101100111 3180 1 -10101100111 1853.7 1 -10101100111 327.33 1 -10101100111 321.69 1 -10101100111 743.50 1 -10101100111 CardTel 1 -10101100111 3943.64 1 -10101100111 689.50 1 -10101100111 372.13 1 -10101100111 Capitolcare 1 -10101100111 248.19 1 -10101100111 263.82 1 -10101100111 252.41 1 -10101100111 353.31 1 -10101100111 3695.53 1 -10101100111 694.50 1 -10101100111 5,980 1 -10101100111 437.90 1 -10101100111 309.39 1 -10101100111 363.80 1 -10101100111 661.50 1 -10101100111 292.78 1 -10101100111 26286.75 1 -10101100111 non-Humana 1 -10101100111 174.64 1 -10101100111 654.50 1 -10101100111 314.52 1 -10101100111 Sardis 1 -10101100111 5,640 1 -10101100111 328.08 1 -10101100111 2218.5 1 -10101100111 314.16 1 -10101100111 practitioner-driven 1 -10101100111 340.20 1 -10101100111 319.22 1 -10101100111 362.50 1 -10101100111 coproduce 1 -10101100111 5,271 1 -10101100111 264.25 1 -10101100111 281.38 1 -10101100111 8,155 1 -10101100111 Presstime 1 -10101100111 262.10 1 -10101100111 540.50 1 -10101100111 261.99 1 -10101100111 278.97 1 -10101100111 6,881 1 -10101100111 276.97 1 -10101100111 27390.55 1 -10101100111 536.50 1 -10101100111 265.21 1 -10101100111 snowmobilers 1 -10101100111 free-moving 1 -10101100111 265.27 1 -10101100111 282.28 1 -10101100111 273.33 1 -10101100111 273.69 1 -10101100111 378.40 1 -10101100111 258.61 1 -10101100111 373.76 1 -10101100111 251.90 1 -10101100111 21,705.06 1 -10101100111 351,653 1 -10101100111 268,738 1 -10101100111 262.25 1 -10101100111 278.7 1 -10101100111 tenant-owners 1 -10101100111 262.12 1 -10101100111 257.64 1 -10101100111 1285.02 1 -10101100111 382.77 1 -10101100111 dog-sitters 1 -10101100111 381.02 1 -10101100111 18190.97 1 -10101100111 rotisseries 1 -10101100111 1514.76 1 -10101100111 18307.98 1 -10101100111 1272.5 1 -10101100111 145.09 1 -10101100111 1170.4 1 -10101100111 1756.7 1 -10101100111 264,647 1 -10101100111 3310 1 -10101100111 UIP/Warner 1 -10101100111 162.64 1 -10101100111 253.04 1 -10101100111 18455.06 1 -10101100111 2430.52 1 -10101100111 1269.1 1 -10101100111 curiosity-seekers 1 -10101100111 fanaticisms 1 -10101100111 290.76 1 -10101100111 284.00 1 -10101100111 1490.90 1 -10101100111 18083.02 1 -10101100111 282.96 1 -10101100111 320.35 1 -10101100111 282.16 1 -10101100111 141.87 1 -10101100111 GTH-100 1 -10101100111 1280.3 1 -10101100111 18788.94 1 -10101100111 Nordanken 1 -10101100111 18830.64 1 -10101100111 21,435.30 1 -10101100111 2056.2 1 -10101100111 438.13 1 -10101100111 301.64 1 -10101100111 250.04 1 -10101100111 Waterval 1 -10101100111 21,588.25 1 -10101100111 2033.0 1 -10101100111 438.04 1 -10101100111 249.28 1 -10101100111 18710.68 1 -10101100111 289.11 1 -10101100111 251.16 1 -10101100111 vine-covered 1 -10101100111 D.A.D. 1 -10101100111 248.17 1 -10101100111 18731.25 1 -10101100111 18602.72 1 -10101100111 314.98 1 -10101100111 19795.08 1 -10101100111 316.73 1 -10101100111 1722.19 1 -10101100111 19,668.83 1 -10101100111 284.12 1 -10101100111 1458.5 1 -10101100111 19,973.87 1 -10101100111 bedrolls 1 -10101100111 19,679.32 1 -10101100111 1516.6 1 -10101100111 1399.64 1 -10101100111 275.07 1 -10101100111 274.24 1 -10101100111 1613.5 1 -10101100111 274.08 1 -10101100111 1427.0 1 -10101100111 1440.4 1 -10101100111 275.40 1 -10101100111 jackknifing 1 -10101100111 275.99 1 -10101100111 1441.0 1 -10101100111 1750.65 1 -10101100111 546,151 1 -10101100111 1762.07 1 -10101100111 1542.5 1 -10101100111 285.57 1 -10101100111 viewability 1 -10101100111 electrogalvanize 1 -10101100111 285.42 1 -10101100111 epileptic-like 1 -10101100111 1555.0 1 -10101100111 submarginal 1 -10101100111 1566 1 -10101100111 207.75 1 -10101100111 275.62 1 -10101100111 283.00 1 -10101100111 940.04 1 -10101100111 19,874.89 1 -10101100111 1501.0 1 -10101100111 Levittowns 1 -10101100111 277.54 1 -10101100111 19,813.96 1 -10101100111 1493.0 1 -10101100111 285.49 1 -10101100111 19,637.93 1 -10101100111 279.70 1 -10101100111 19,628.87 1 -10101100111 19,531.52 1 -10101100111 1521.0 1 -10101100111 Dushanbe 1 -10101100111 reequip 1 -10101100111 2163.3 1 -10101100111 1686.9 1 -10101100111 5090 1 -10101100111 463.25 1 -10101100111 1531.9 1 -10101100111 291.57 1 -10101100111 delaminate 1 -10101100111 286.82 1 -10101100111 silicosis 1 -10101100111 R-O-S-T-Y 1 -10101100111 1540.3 1 -10101100111 mauves 1 -10101100111 1515.1 1 -10101100111 29,076 1 -10101100111 162.59 1 -10101100111 293.30 1 -10101100111 336.58 1 -10101100111 288.36 1 -10101100111 Rotaries 1 -10101100111 295.47 1 -10101100111 226.30 1 -10101100111 1612.0 1 -10101100111 295.34 1 -10101100111 328.29 1 -10101100111 1628.0 1 -10101100111 281.83 1 -10101100111 293.37 1 -10101100111 2189.89 1 -10101100111 546,659 1 -10101100111 281.52 1 -10101100111 1555.2 1 -10101100111 2126.5 1 -10101100111 1589.4 1 -10101100111 1640.5 1 -10101100111 284.57 1 -10101100111 scientific-engineering 1 -10101100111 219.04 1 -10101100111 294.71 1 -10101100111 159.80 1 -10101100111 292.39 1 -10101100111 2880 1 -10101100111 291.70 1 -10101100111 silver-gray 1 -10101100111 mineral-hunting 1 -10101100111 279.62 1 -10101100111 300.41 1 -10101100111 293.63 1 -10101100111 2214.3 1 -10101100111 280.17 1 -10101100111 21,558.79 1 -10101100111 300.93 1 -10101100111 300.38 1 -10101100111 KP 1 -10101100111 Bang-Gereng 1 -10101100111 1375.32 1 -10101100111 BRP-Tripak 1 -10101100111 289.20 1 -10101100111 296.13 1 -10101100111 4,320 1 -10101100111 1926.68 1 -10101100111 22,178.02 1 -10101100111 24,675 1 -10101100111 1779.4 1 -10101100111 285.62 1 -10101100111 1684.2 1 -10101100111 1204.94 1 -10101100111 1962.8 1 -10101100111 1546.2 1 -10101100111 churchyards 1 -10101100111 1936.7 1 -10101100111 23216.59 1 -10101100111 cereal-eaters 1 -10101100111 287.43 1 -10101100111 294.24 1 -10101100111 284.44 1 -10101100111 485.0 1 -10101100111 1506.7 1 -10101100111 1512.4 1 -10101100111 22919.54 1 -10101100111 Chimoio 1 -10101100111 217.60 1 -10101100111 1987.0 1 -10101100111 22,784.65 1 -10101100111 296.69 1 -10101100111 1965.1 1 -10101100111 304.05 1 -10101100111 22912.99 1 -10101100111 16,681 1 -10101100111 214.79 1 -10101100111 292.86 1 -10101100111 286.65 1 -10101100111 2192.1 1 -10101100111 1696.4 1 -10101100111 2813.68 1 -10101100111 297.26 1 -10101100111 scuba-dive 1 -10101100111 297.28 1 -10101100111 2265.2 1 -10101100111 squidaddle 1 -10101100111 25523.89 1 -10101100111 298.73 1 -10101100111 4,183 1 -10101100111 2256.1 1 -10101100111 2203.0 1 -10101100111 24901.59 1 -10101100111 289.83 1 -10101100111 24992.78 1 -10101100111 underserve 1 -10101100111 fumigations 1 -10101100111 295.09 1 -10101100111 25364.21 1 -10101100111 118,450 1 -10101100111 389.7 1 -10101100111 25049.40 1 -10101100111 321.68 1 -10101100111 339.10 1 -10101100111 2,470 1 -10101100111 99.734 1 -10101100111 695.50 1 -10101100111 333.30 1 -10101100111 potash.The 1 -10101100111 313.56 1 -10101100111 320.21 1 -10101100111 3990 1 -10101100111 335.80 1 -10101100111 1794.5 1 -10101100111 290.31 1 -10101100111 304.76 1 -10101100111 431.43 1 -10101100111 301.62 1 -10101100111 305.69 1 -10101100111 over-react 1 -10101100111 329.80 1 -10101100111 304.81 1 -10101100111 1,519 1 -10101100111 tetraploidy 1 -10101100111 zofenopril 1 -10101100111 116.80 1 -10101100111 1689.8 1 -10101100111 367.50 1 -10101100111 393.50 1 -10101100111 121.25 1 -10101100111 Loto-Quebec 1 -10101100111 Capisol 1 -10101100111 431.5 1 -10101100111 628.5 1 -10101100111 394.50 1 -10101100111 229.50 1 -10101100111 1989.7 1 -10101100111 249.30 1 -10101100111 292.92 1 -10101100111 218.50 1 -10101100111 289.89 1 -10101100111 325.60 1 -10101100111 154,975 1 -10101100111 340.82 1 -10101100111 Nordkap 1 -10101100111 1979.4 1 -10101100111 290.10 1 -10101100111 379.07 1 -10101100111 432.48 1 -10101100111 291.22 1 -10101100111 1733.1 1 -10101100111 258.73 1 -10101100111 18810.36 1 -10101100111 1386.4 1 -10101100111 1353.0 1 -10101100111 377.54 1 -10101100111 1,536,017 1 -10101100111 1393.9 1 -10101100111 262.64 1 -10101100111 Dimondale 1 -10101100111 cycads 1 -10101100111 18669.02 1 -10101100111 259.95 1 -10101100111 1960s- 1 -10101100111 242.17 1 -10101100111 252.78 1 -10101100111 Momotaro 1 -10101100111 673,078 1 -10101100111 2,218 1 -10101100111 18820.55 1 -10101100111 253.25 1 -10101100111 recontextualize 1 -10101100111 1404.1 1 -10101100111 19380.51 1 -10101100111 1795.3 1 -10101100111 19429.18 1 -10101100111 1,806,600 1 -10101100111 273.91 1 -10101100111 416.55 1 -10101100111 1411.2 1 -10101100111 288.62 1 -10101100111 297.83 1 -10101100111 273.75 1 -10101100111 387.98 1 -10101100111 269.61 1 -10101100111 Qurna 1 -10101100111 satyrs 1 -10101100111 1399.0 1 -10101100111 1650.86 1 -10101100111 269.04 1 -10101100111 concert-size 1 -10101100111 17,476 1 -10101100111 1778.4 1 -10101100111 314.86 1 -10101100111 1721 1 -10101100111 314.93 1 -10101100111 317.74 1 -10101100111 2328.3 1 -10101100111 357.30 1 -10101100111 ITCH 1 -10101100111 290.86 1 -10101100111 165.57 1 -10101100111 317.13 1 -10101100111 143,514 1 -10101100111 189.50 1 -10101100111 323.08 1 -10101100111 Greycom 1 -10101100111 foam-blowing 1 -10101100111 5,070 1 -10101100111 321.98 1 -10101100111 2253.2 1 -10101100111 396.50 1 -10101100111 18808.55 1 -10101100111 low-overhead 1 -10101100111 246.75 1 -10101100111 Salla 1 -10101100111 246.34 1 -10101100111 244.67 1 -10101100111 1414.51 1 -10101100111 243.37 1 -10101100111 1301.2 1 -10101100111 non-NYSE 1 -10101100111 288.30 1 -10101100111 247.56 1 -10101100111 2,146,460 1 -10101100111 18847.77 1 -10101100111 18930.03 1 -10101100111 246.78 1 -10101100111 18723.72 1 -10101100111 253.31 1 -10101100111 249.10 1 -10101100111 26985.74 1 -10101100111 348.64 1 -10101100111 27,451.65 1 -10101100111 8,430 1 -10101100111 251.72 1 -10101100111 463.13 1 -10101100111 countercheck 1 -10101100111 340.62 1 -10101100111 343.71 1 -10101100111 425.67 1 -10101100111 sugar-white 1 -10101100111 352.09 1 -10101100111 426.61 1 -10101100111 373.35 1 -10101100111 24,029 1 -10101100111 353.29 1 -10101100111 429.89 1 -10101100111 262.61 1 -10101100111 391.16 1 -10101100111 al-Hussein 1 -10101100111 242.60 1 -10101100111 2,112 1 -10101100111 263.93 1 -10101100111 263.81 1 -10101100111 351.45 1 -10101100111 987,823 1 -10101100111 389.36 1 -10101100111 353.49 1 -10101100111 420,626 1 -10101100111 357.36 1 -10101100111 381.62 1 -10101100111 124,849 1 -10101100111 260.32 1 -10101100111 349.84 1 -10101100111 5,730 1 -10101100111 349.32 1 -10101100111 635.00 1 -10101100111 324.48 1 -10101100111 258.79 1 -10101100111 379.51 1 -10101100111 256.66 1 -10101100111 468.27 1 -10101100111 261.56 1 -10101100111 353.47 1 -10101100111 5,670 1 -10101100111 12,098 1 -10101100111 2,319,505 1 -10101100111 358.37 1 -10101100111 263.00 1 -10101100111 BusinessWorld 1 -10101100111 444.53 1 -10101100111 155,841 1 -10101100111 374.51 1 -10101100111 342.15 1 -10101100111 359.49 1 -10101100111 344.70 1 -10101100111 397.77 1 -10101100111 266.69 1 -10101100111 black-and-orange 1 -10101100111 78,013 1 -10101100111 24,490 1 -10101100111 Eidenau 1 -10101100111 2382.4 1 -10101100111 341.69 1 -10101100111 314.11 1 -10101100111 institutional-sales 1 -10101100111 252.17 1 -10101100111 270.20 1 -10101100111 320.31 1 -10101100111 340.67 1 -10101100111 Anadyr 1 -10101100111 320.45 1 -10101100111 419.27 1 -10101100111 Lyuda 1 -10101100111 636.5 1 -10101100111 Charlotta 1 -10101100111 35054.63 1 -10101100111 mass-audience 1 -10101100111 3,940 1 -10101100111 255.57 1 -10101100111 hyenas 1 -10101100111 1,915.84 1 -10101100111 2,674.84 1 -10101100111 2,590 1 -10101100111 489.95 1 -10101100111 440.79 1 -10101100111 Euro-TV 1 -10101100111 365.16 1 -10101100111 Prescripton 1 -10101100111 409.97 1 -10101100111 381.18 1 -10101100111 5,330 1 -10101100111 329.05 1 -10101100111 Telemachus 1 -10101100111 34705.63 1 -10101100111 1770.2 1 -10101100111 346.69 1 -10101100111 262.16 1 -10101100111 home-brewing 1 -10101100111 255.04 1 -10101100111 365.73 1 -10101100111 468.07 1 -10101100111 self-administer 1 -10101100111 BML 1 -10101100111 310,440 1 -10101100111 47,324 1 -10101100111 416.03 1 -10101100111 Albinoni 1 -10101100111 power-share 1 -10101100111 374.61 1 -10101100111 333.88 1 -10101100111 30,822 1 -10101100111 326.48 1 -10101100111 347.66 1 -10101100111 1463.2 1 -10101100111 Bimeh 1 -10101100111 370.38 1 -10101100111 processing-assembling 1 -10101100111 469.68 1 -10101100111 cornkilling 1 -10101100111 1214 1 -10101100111 370.65 1 -10101100111 relicensing 1 -10101100111 467.01 1 -10101100111 100.525 1 -10101100111 380.20 1 -10101100111 Euros 1 -10101100111 324.73 1 -10101100111 345.46 1 -10101100111 389.21 1 -10101100111 524.58 1 -10101100111 267.38 1 -10101100111 Agness 1 -10101100111 385.43 1 -10101100111 Rushville 1 -10101100111 322.38 1 -10101100111 392.92 1 -10101100111 5021.73 1 -10101100111 Tillich 1 -10101100111 376.93 1 -10101100111 263.84 1 -10101100111 343.16 1 -10101100111 equities-underwriting 1 -10101100111 Toga 1 -10101100111 pseudo-actors 1 -10101100111 angel. 1 -10101100111 1,088,223 1 -10101100111 746.44 1 -10101100111 disunite 1 -10101100111 530.72 1 -10101100111 327.62 1 -10101100111 UTDMK 1 -10101100111 259.77 1 -10101100111 8,070 1 -10101100111 257.92 1 -10101100111 300.92 1 -10101100111 259.21 1 -10101100111 foreclosers 1 -10101100111 flash-cubes 1 -10101100111 28,458,894 1 -10101100111 395.28 1 -10101100111 471.42 1 -10101100111 1222 1 -10101100111 271.57 1 -10101100111 672.5 1 -10101100111 7,840 1 -10101100111 pebble-like 1 -10101100111 primary- 1 -10101100111 256.13 1 -10101100111 745.92 1 -10101100111 256.42 1 -10101100111 230.81 1 -10101100111 1206.71 1 -10101100111 handleware 1 -10101100111 Ahasuerus 1 -10101100111 353.73 1 -10101100111 258.51 1 -10101100111 338.82 1 -10101100111 UH 1 -10101100111 342.81 1 -10101100111 469.25 1 -10101100111 343.75 1 -10101100111 6,812 1 -10101100111 327.90 1 -10101100111 349.24 1 -10101100111 Gatlinburg 1 -10101100111 383.67 1 -10101100111 127,945 1 -10101100111 635.10 1 -10101100111 78,271 1 -10101100111 393.45 1 -10101100111 26924.87 1 -10101100111 424.5 1 -10101100111 271.37 1 -10101100111 32000 1 -10101100111 water-deficient 1 -10101100111 378.88 1 -10101100111 363.14 1 -10101100111 264.43 1 -10101100111 346.08 1 -10101100111 2,079 1 -10101100111 least-admired 1 -10101100111 2199 1 -10101100111 346.94 1 -10101100111 680.5 1 -10101100111 266.02 1 -10101100111 re-dress 1 -10101100111 4,000-share 1 -10101100111 387.12 1 -10101100111 264.68 1 -10101100111 265.19 1 -10101100111 146.14 1 -10101100111 28361.89 1 -10101100111 475.19 1 -10101100111 389.66 1 -10101100111 6,960 1 -10101100111 6,270 1 -10101100111 484.14 1 -10101100111 335.01 1 -10101100111 356.99 1 -10101100111 272.98 1 -10101100111 corniness 1 -10101100111 388.52 1 -10101100111 3,910 1 -10101100111 8,240 1 -10101100111 comparison-shop 1 -10101100111 272.21 1 -10101100111 122,188 1 -10101100111 462.48 1 -10101100111 462.46 1 -10101100111 270.51 1 -10101100111 458.86 1 -10101100111 3220 1 -10101100111 2980 1 -10101100111 1641.8 1 -10101100111 471.14 1 -10101100111 480.50 1 -10101100111 new-listings 1 -10101100111 316.39 1 -10101100111 5290 1 -10101100111 510.50 1 -10101100111 271.80 1 -10101100111 269.32 1 -10101100111 5400 1 -10101100111 1863.3 1 -10101100111 259.50 1 -10101100111 266.66 1 -10101100111 364.81 1 -10101100111 Maryam 1 -10101100111 2950 1 -10101100111 53.59 1 -10101100111 1,416,636 1 -10101100111 6,680 1 -10101100111 8,840 1 -10101100111 268.47 1 -10101100111 256.20 1 -10101100111 468.60 1 -10101100111 391.28 1 -10101100111 27553.98 1 -10101100111 5470 1 -10101100111 22790.50 1 -10101100111 255.30 1 -10101100111 270.00 1 -10101100111 sexology 1 -10101100111 261.03 1 -10101100111 44-year-olds 1 -10101100111 452.38 1 -10101100111 256.98 1 -10101100111 356.97 1 -10101100111 335.02 1 -10101100111 480.66 1 -10101100111 394.43 1 -10101100111 483.64 1 -10101100111 260.56 1 -10101100111 slangy-confidential 1 -10101100111 343.92 1 -10101100111 260.77 1 -10101100111 2017.5 1 -10101100111 CitiTouch 1 -10101100111 GoldCard 1 -10101100111 2,981,076 1 -10101100111 374.04 1 -10101100111 259.18 1 -10101100111 343.91 1 -10101100111 374.43 1 -10101100111 356.94 1 -10101100111 344.74 1 -10101100111 100-person 1 -10101100111 surveil 1 -10101100111 257.09 1 -10101100111 6,030 1 -10101100111 international-share 1 -10101100111 311,367 1 -10101100111 261.13 1 -10101100111 269.98 1 -10101100111 Executive-Branch 1 -10101100111 266.49 1 -10101100111 354.54 1 -10101100111 349.35 1 -10101100111 28360.53 1 -10101100111 50,515 1 -10101100111 271.93 1 -10101100111 2844.04 1 -10101100111 337.06 1 -10101100111 359.13 1 -10101100111 4,820 1 -10101100111 44,650 1 -10101100111 258.69 1 -10101100111 general-management 1 -10101100111 354.71 1 -10101100111 34942.63 1 -10101100111 772.54 1 -10101100111 28,300 1 -10101100111 2247.0 1 -10101100111 337.63 1 -10101100111 261.90 1 -10101100111 Infotab 1 -10101100111 409.19 1 -10101100111 Intair 1 -10101100111 ameloriate 1 -10101100111 law- 1 -10101100111 379.11 1 -10101100111 27946.44 1 -10101100111 262.75 1 -10101100111 340.53 1 -10101100111 402.43 1 -10101100111 459.55 1 -10101100111 250.20 1 -10101100111 428.55 1 -10101100111 sejour 1 -10101100111 1879.3 1 -10101100111 467.41 1 -10101100111 Literaturnaia 1 -10101100111 265.80 1 -10101100111 453.84 1 -10101100111 189.70 1 -10101100111 93.98 1 -10101100111 374.14 1 -10101100111 6,780 1 -10101100111 2,810 1 -10101100111 339.90 1 -10101100111 Iskenderun 1 -10101100111 189.30 1 -10101100111 345.66 1 -10101100111 1450 1 -10101100111 3040 1 -10101100111 641.50 1 -10101100111 443.71 1 -10101100111 Tatham 1 -10101100111 Beersheba 1 -10101100111 27360.39 1 -10101100111 254.20 1 -10101100111 television-camera 1 -10101100111 505.50 1 -10101100111 247.50 1 -10101100111 447.61 1 -10101100111 3130 1 -10101100111 363.50 1 -10101100111 snorkelers 1 -10101100111 274.30 1 -10101100111 269.77 1 -10101100111 86,606.75 1 -10101100111 42,660 1 -10101100111 Fortune-1000 1 -10101100111 271.43 1 -10101100111 bifurcate 1 -10101100111 458.33 1 -10101100111 WDEB-TV 1 -10101100111 268.94 1 -10101100111 strewing 1 -10101100111 271.67 1 -10101100111 27925.57 1 -10101100111 433.44 1 -10101100111 369.01 1 -10101100111 university-related 1 -10101100111 puke 1 -10101100111 redisseminate 1 -10101100111 8,740 1 -10101100111 449.75 1 -10101100111 385.75 1 -10101100111 932,445 1 -10101100111 102.41 1 -10101100111 20100 1 -10101100111 236.80 1 -10101100111 292.10 1 -10101100111 525.50 1 -10101100111 372.78 1 -10101100111 426.29 1 -10101100111 remediate 1 -10101100111 snoekfish 1 -10101100111 private-aircraft 1 -10101100111 395.43 1 -10101100111 60-year-olds 1 -10101100111 268.80 1 -10101100111 479.50 1 -10101100111 270.55 1 -10101100111 531.50 1 -10101100111 237.09 1 -10101100111 713.50 1 -10101100111 672.50 1 -10101100111 18,314 1 -10101100111 2560 1 -10101100111 332.68 1 -10101100111 322.33 1 -10101100111 1580 1 -10101100111 27577.17 1 -10101100111 275.81 1 -10101100111 309.59 1 -10101100111 29,800 1 -10101100111 60,367 1 -10101100111 431.74 1 -10101100111 procurement-reform 1 -10101100111 2,294,700 2 -10101100111 4,400,700 2 -10101100111 Avrett 2 -10101100111 35,100 2 -10101100111 17,700 2 -10101100111 Medialink 2 -10101100111 higher-capacity 2 -10101100111 Justinian 2 -10101100111 292.50 2 -10101100111 vehicle-related 2 -10101100111 consumer-marketing 2 -10101100111 3860 2 -10101100111 exercycle 2 -10101100111 4,030 2 -10101100111 236.83 2 -10101100111 6,810 2 -10101100111 1,188 2 -10101100111 308.62 2 -10101100111 379.18 2 -10101100111 prorating 2 -10101100111 1253 2 -10101100111 5,120 2 -10101100111 Manzanillo 2 -10101100111 3,860 2 -10101100111 270.16 2 -10101100111 1719 2 -10101100111 270.62 2 -10101100111 2,032 2 -10101100111 B-5 2 -10101100111 neuter 2 -10101100111 thicken 2 -10101100111 rutabaga 2 -10101100111 B-flat 2 -10101100111 5,950 2 -10101100111 mainstreamers 2 -10101100111 53,600 2 -10101100111 245.52 2 -10101100111 industrial-based 2 -10101100111 3,870 2 -10101100111 253.4 2 -10101100111 lubricate 2 -10101100111 267.72 2 -10101100111 265.50 2 -10101100111 391.67 2 -10101100111 appliance-maker 2 -10101100111 24,628 2 -10101100111 54-year-olds 2 -10101100111 334.84 2 -10101100111 333.33 2 -10101100111 2,830 2 -10101100111 Herminio 2 -10101100111 363.5 2 -10101100111 under-report 2 -10101100111 Nana 2 -10101100111 xylene 2 -10101100111 235.18 2 -10101100111 262.50 2 -10101100111 262.46 2 -10101100111 wheedle 3 -10101100111 282.88 3 -10101100111 rehabbed 3 -10101100111 pottage 3 -10101100111 locksmiths 3 -10101100111 subdistrict 3 -10101100111 5,960 3 -10101100111 Montauk 3 -10101100111 2,313,000 3 -10101100111 Withdraw 3 -10101100111 hyperventilating 3 -10101100111 dryland 4 -10101100111 2,420 4 -10101100111 unsnarl 4 -10101100111 3,180 4 -10101100111 procreate 4 -10101100111 seminarians 4 -10101100111 tetanus 5 -10101100111 1,290 5 -10101100111 2,930 5 -10101100111 untie 5 -10101100111 3,690 5 -10101100111 repaint 5 -10101100111 demoralize 6 -10101100111 2,820 6 -10101100111 backdated 9 -10101100111 curry 34 -10101100111 depository 294 -10101100111 finance 6846 -10101100111 spare 539 -10101101000 wheel-and-deal 1 -10101101000 mono 1 -10101101000 megabillion 1 -10101101000 ticket-printing 1 -10101101000 sod-busting 1 -10101101000 feed-handling 1 -10101101000 Lanno 1 -10101101000 16,820 1 -10101101000 prekindergarten 1 -10101101000 blubbering 2 -10101101000 P215 2 -10101101000 chatterbox 2 -10101101000 carpet-refurbishing 2 -10101101000 road-map 3 -10101101000 truss 3 -10101101000 caning 3 -10101101000 clipper 3 -10101101000 ZR-1 4 -10101101000 tie-dye 4 -10101101000 bed-and-breakfast 4 -10101101000 lithograph 4 -10101101000 raceway 4 -10101101000 graveside 5 -10101101000 1,176 5 -10101101000 cock 5 -10101101000 retread 5 -10101101000 homeporting 5 -10101101000 kayak 6 -10101101000 stockyard 6 -10101101000 bayonet 6 -10101101000 squirts 7 -10101101000 filament 8 -10101101000 assay 8 -10101101000 burp 9 -10101101000 whoop 9 -10101101000 misfire 10 -10101101000 SystemOne 10 -10101101000 take-off 11 -10101101000 interconnect 11 -10101101000 honeycomb 11 -10101101000 spanking 11 -10101101000 raffle 12 -10101101000 Utopia 12 -10101101000 grate 13 -10101101000 steamroller 14 -10101101000 helper 15 -10101101000 transcription 15 -10101101000 squawk 15 -10101101000 photocopy 16 -10101101000 hiss 16 -10101101000 duke 17 -10101101000 post-mortem 17 -10101101000 canister 17 -10101101000 salve 17 -10101101000 mime 17 -10101101000 rinse 19 -10101101000 shutter 19 -10101101000 sighting 20 -10101101000 massage 20 -10101101000 stain 20 -10101101000 dart 23 -10101101000 strap 24 -10101101000 reflex 26 -10101101000 summons 27 -10101101000 warp 27 -10101101000 feather 27 -10101101000 console 28 -10101101000 court-martial 28 -10101101000 scar 29 -10101101000 mug 29 -10101101000 implant 35 -10101101000 sack 37 -10101101000 knitting 37 -10101101000 fragment 38 -10101101000 pepper 38 -10101101000 piggyback 38 -10101101000 shovel 38 -10101101000 freak 39 -10101101000 grill 39 -10101101000 decoy 39 -10101101000 ruptured 40 -10101101000 lace 40 -10101101000 buffet 41 -10101101000 reprimand 41 -10101101000 ditch 44 -10101101000 quiz 45 -10101101000 zip 45 -10101101000 fracture 45 -10101101000 quarantine 46 -10101101000 gag 47 -10101101000 grease 47 -10101101000 relay 50 -10101101000 squash 53 -10101101000 camouflage 53 -10101101000 buzz 56 -10101101000 toast 56 -10101101000 coloring 57 -10101101000 subcontract 57 -10101101000 cannon 57 -10101101000 marshal 58 -10101101000 dye 59 -10101101000 needle 59 -10101101000 scotch 60 -10101101000 distraction 61 -10101101000 scout 63 -10101101000 bolt 63 -10101101000 wraps 64 -10101101000 hawk 65 -10101101000 mushroom 66 -10101101000 litter 67 -10101101000 pardon 72 -10101101000 pity 74 -10101101000 smear 76 -10101101000 swamp 79 -10101101000 dispatch 93 -10101101000 showcase 94 -10101101000 ferry 102 -10101101000 log 105 -10101101000 capsule 107 -10101101000 handicap 108 -10101101000 siege 127 -10101101000 filter 131 -10101101000 shower 132 -10101101000 beam 133 -10101101000 bath 137 -10101101000 bat 138 -10101101000 redesign 140 -10101101000 spray 147 -10101101000 flash 167 -10101101000 discharge 167 -10101101000 seal 169 -10101101000 mold 169 -10101101000 slot 185 -10101101000 punch 189 -10101101000 sabotage 192 -10101101000 patrol 210 -10101101000 blast 220 -10101101000 prototype 221 -10101101000 trap 221 -10101101000 duck 222 -10101101000 harbor 234 -10101101000 volunteer 241 -10101101000 videotape 243 -10101101000 desert 244 -10101101000 mirror 244 -10101101000 subpoena 245 -10101101000 brake 247 -10101101000 bust 249 -10101101000 frame 259 -10101101000 spy 272 -10101101000 stamp 275 -10101101000 delegate 276 -10101101000 remedy 280 -10101101000 craft 321 -10101101000 cloud 333 -10101101000 photo 333 -10101101000 boycott 369 -10101101000 negotiation 381 -10101101000 dress 408 -10101101000 paint 514 -10101101000 painting 522 -10101101000 substitute 522 -10101101000 sponsor 533 -10101101000 bomb 583 -10101101000 score 671 -10101101000 shock 686 -10101101000 rent 696 -10101101000 repair 733 -10101101000 train 975 -10101101000 draft 1101 -10101101000 lease 1126 -10101101000 consideration 1172 -10101101000 license 1339 -10101101000 ship 1391 -10101101000 waste 1446 -10101101000 veto 1737 -10101101000 fire 2236 -10101101000 design 2529 -10101101000 test 4763 -10101101000 review 4766 -10101101001 advance-sale 1 -10101101001 wing-left 1 -10101101001 printing-cost 1 -10101101001 282.50-all 1 -10101101001 grubbing 1 -10101101001 ground-ball 1 -10101101001 2-14 1 -10101101001 400,000-ton 1 -10101101001 steel-quota 1 -10101101001 income-redistribution 1 -10101101001 mangers 1 -10101101001 oregrade 1 -10101101001 ore-grade 1 -10101101001 imbibing 2 -10101101001 humanrights 2 -10101101001 5,006 2 -10101101001 Eridania 2 -10101101001 backrooms 2 -10101101001 industrial-plant 2 -10101101001 import-dependent 2 -10101101001 2380 2 -10101101001 price-per-share 2 -10101101001 Norcal 2 -10101101001 operaters 2 -10101101001 pro-Libyan 3 -10101101001 bioequivalence 5 -10101101001 sorrowful 6 -10101101001 paw 7 -10101101001 rebroadcast 8 -10101101001 wail 11 -10101101001 minting 12 -10101101001 spout 12 -10101101001 gore 17 -10101101001 hush 21 -10101101001 ration 42 -10101101001 throttle 55 -10101101001 resupply 58 -10101101001 worship 93 -10101101001 sting 103 -10101101001 laundering 129 -10101101001 exhaust 133 -10101101001 escort 143 -10101101001 slaughter 260 -10101101001 trail 330 -10101101001 gauge 358 -10101101001 tip 370 -10101101001 pump 376 -10101101001 drink 624 -10101101001 command 677 -10101101001 display 785 -10101101001 speed 1405 -10101101001 transfer 1589 -10101101001 track 1834 -10101101001 supply 5162 -10101101001 release 3238 -101011010100 3-by-7-foot 1 -101011010100 counterpressures 1 -101011010100 blow-dries 1 -101011010100 counterprotest 1 -101011010100 jerryrigged 1 -101011010100 soliticitations 1 -101011010100 pre-deposit 1 -101011010100 computer-program 2 -101011010100 7320 2 -101011010100 61,209 2 -101011010100 2,227,500 2 -101011010100 2,069,200 2 -101011010100 1,367 3 -101011010100 black-and-gold 3 -101011010100 yak 3 -101011010100 garnish 4 -101011010100 cramp 5 -101011010100 snort 8 -101011010100 canvass 8 -101011010100 gall 14 -101011010100 sow 26 -101011010100 taint 45 -101011010100 remake 55 -101011010100 dwarf 64 -101011010100 wreck 75 -101011010100 stray 75 -101011010100 jolt 112 -101011010100 bribe 138 -101011010100 ruin 164 -101011010100 mask 165 -101011010100 highlight 173 -101011010100 trace 213 -101011010100 smell 223 -101011010100 quote 288 -101011010100 cry 365 -101011010100 reward 377 -101011010100 repeat 433 -101011010100 refund 497 -101011010100 harm 596 -101011010100 trigger 727 -101011010100 mention 1007 -101011010100 grant 1078 -101011010100 recall 1107 -101011010100 signal 1272 -101011010100 guarantee 1441 -101011010100 cause 3821 -101011010100 benefit 3939 -101011010101 bond-sale 1 -101011010101 secretory 1 -101011010101 isat 1 -101011010101 EMPHASIZED 1 -101011010101 Russian-Czech 1 -101011010101 share-issue 1 -101011010101 neuro-physiological 1 -101011010101 ship-sale 1 -101011010101 prettiness 2 -101011010101 reenacts 2 -101011010101 busyness 2 -101011010101 6,327 2 -101011010101 8-by-10 2 -101011010101 disaggregate 2 -101011010101 double-park 2 -101011010101 2,653 2 -101011010101 sloppier 2 -101011010101 redrawing 3 -101011010101 overloads 3 -101011010101 cohost 3 -101011010101 soiling 3 -101011010101 radiation-damaged 3 -101011010101 snip 4 -101011010101 whir 4 -101011010101 sweet-talk 4 -101011010101 unpacking 4 -101011010101 sensationalizing 4 -101011010101 steepening 4 -101011010101 2,130,000 5 -101011010101 memorializing 5 -101011010101 stoning 5 -101011010101 caressing 5 -101011010101 fleecing 5 -101011010101 whoosh 6 -101011010101 smearing 8 -101011010101 rue 11 -101011010101 reuse 13 -101011010101 plunder 16 -101011010101 reissue 21 -101011010101 overestimate 24 -101011010101 overload 32 -101011010101 disapprove 49 -101011010101 annex 52 -101011010101 eclipse 53 -101011010101 conceive 54 -101011010101 echo 94 -101011010101 update 164 -101011010101 overthrow 170 -101011010101 outline 199 -101011010101 surrender 294 -101011010101 dispose 361 -101011010101 repeal 559 -101011010101 manufacture 577 -101011010101 honor 605 -101011010101 use 15279 -101011010101 exercise 1575 -101011010110 173.77 1 -101011010110 783.25 1 -101011010110 178.32 1 -101011010110 271.86 1 -101011010110 382.07 1 -101011010110 jet-injection 1 -101011010110 London-Atlanta 1 -101011010110 1,421 1 -101011010110 1625.2 1 -101011010110 170.83 1 -101011010110 government-industrial 1 -101011010110 156.72 1 -101011010110 martyring 1 -101011010110 exaco 1 -101011010110 sub-lease 1 -101011010110 171.44 1 -101011010110 rock-raw 1 -101011010110 155.97 1 -101011010110 152.09 1 -101011010110 19188.68 1 -101011010110 343.41 1 -101011010110 250.48 1 -101011010110 price-based 1 -101011010110 labor-negotiation 1 -101011010110 local-federal 1 -101011010110 Trake 1 -101011010110 764.21 1 -101011010110 Nevena 1 -101011010110 373.53 1 -101011010110 477.28 1 -101011010110 340.17 1 -101011010110 373.96 1 -101011010110 Dingos 1 -101011010110 bocce 1 -101011010110 rain-soaked 2 -101011010110 Govern 2 -101011010110 military/civilian 2 -101011010110 40-year-olds 2 -101011010110 witch-hunting 3 -101011010110 prick 4 -101011010110 indoctrinate 4 -101011010110 uncork 4 -101011010110 Repetition 4 -101011010110 joust 5 -101011010110 checkmate 5 -101011010110 globalize 5 -101011010110 psych 5 -101011010110 moor 5 -101011010110 Frau 5 -101011010110 swab 6 -101011010110 caress 6 -101011010110 nuke 6 -101011010110 senders 6 -101011010110 curate 7 -101011010110 test-drive 7 -101011010110 propagandize 7 -101011010110 barricade 7 -101011010110 dishonor 8 -101011010110 undress 9 -101011010110 spar 13 -101011010110 strut 15 -101011010110 refill 15 -101011010110 wallop 16 -101011010110 waffle 16 -101011010110 bludgeon 17 -101011010110 relaunch 17 -101011010110 hijack 17 -101011010110 recharge 17 -101011010110 weld 18 -101011010110 paddle 18 -101011010110 whipsaw 19 -101011010110 wag 19 -101011010110 muzzle 19 -101011010110 overcharge 24 -101011010110 fleece 25 -101011010110 pluck 27 -101011010110 lick 29 -101011010110 stalk 29 -101011010110 groom 32 -101011010110 fruition 33 -101011010110 fry 37 -101011010110 fuse 38 -101011010110 Kill 39 -101011010110 kidnap 39 -101011010110 cram 39 -101011010110 hack 41 -101011010110 scrub 41 -101011010110 batter 41 -101011010110 hustle 44 -101011010110 shove 49 -101011010110 recount 49 -101011010110 censor 51 -101011010110 harness 53 -101011010110 smash 55 -101011010110 lodge 55 -101011010110 slam 58 -101011010110 polish 66 -101011010110 bully 70 -101011010110 convict 72 -101011010110 scan 72 -101011010110 insert 76 -101011010110 saddle 77 -101011010110 torpedo 77 -101011010110 rub 78 -101011010110 vault 80 -101011010110 trumpet 81 -101011010110 stub 83 -101011010110 toe 83 -101011010110 bash 92 -101011010110 purge 99 -101011010110 chill 112 -101011010110 skirt 117 -101011010110 foil 120 -101011010110 crush 124 -101011010110 pin 129 -101011010110 temper 133 -101011010110 cheer 134 -101011010110 boot 137 -101011010110 plague 137 -101011010110 restart 152 -101011010110 fold 165 -101011010110 buck 178 -101011010110 fool 182 -101011010110 chase 187 -101011010110 stall 191 -101011010110 void 232 -101011010110 drill 235 -101011010110 float 236 -101011010110 cushion 242 -101011010110 sacrifice 260 -101011010110 shield 262 -101011010110 encounter 338 -101011010110 dump 356 -101011010110 strip 403 -101011010110 cure 408 -101011010110 select 477 -101011010110 cross 501 -101011010110 lure 524 -101011010110 hedge 578 -101011010110 crack 632 -101011010110 lobby 653 -101011010110 guard 707 -101011010110 combat 762 -101011010110 defeat 993 -101011010110 reverse 1052 -101011010110 protest 1161 -101011010110 contest 1321 -101011010110 bar 1428 -101011010110 conduct 1535 -101011010110 launch 2233 -101011010110 block 3326 -101011010110 fight 4287 -101011010110 play 4145 -1010110101110 catapault 1 -1010110101110 2-by-2s 2 -1010110101110 dun 2 -1010110101110 Postpone 2 -1010110101110 go-get- 2 -1010110101110 psychoanalyze 2 -1010110101110 de-average 2 -1010110101110 barnstorm 3 -1010110101110 invoiced 3 -1010110101110 17,405 3 -1010110101110 cherry-pick 3 -1010110101110 poppers 3 -1010110101110 croon 4 -1010110101110 lunge 6 -1010110101110 agitate 6 -1010110101110 crystallize 7 -1010110101110 jostle 8 -1010110101110 grope 11 -1010110101110 gird 11 -1010110101110 vouch 16 -1010110101110 overpay 18 -1010110101110 tease 19 -1010110101110 taunt 21 -1010110101110 brace 33 -1010110101110 slug 34 -1010110101110 comb 43 -1010110101110 salute 48 -1010110101110 peg 51 -1010110101110 beg 53 -1010110101110 commute 58 -1010110101110 hail 60 -1010110101110 jockey 75 -1010110101110 vie 75 -1010110101110 pray 76 -1010110101110 shout 90 -1010110101110 nudge 90 -1010110101110 dial 98 -1010110101110 apologize 110 -1010110101110 opt 175 -1010110101110 scramble 224 -1010110101110 hunt 246 -1010110101110 fix 636 -1010110101110 blame 1172 -1010110101110 watch 1344 -1010110101110 wait 1601 -1010110101110 drive 2680 -1010110101110 call 5766 -1010110101110 push 2744 -1010110101111 undreamed-of 1 -1010110101111 2,100-2,200 1 -1010110101111 protectedness 1 -1010110101111 mid-to-lower 1 -1010110101111 swaddling 1 -1010110101111 pre-aerosol-ban 1 -1010110101111 counter-demands 1 -1010110101111 pre-agreement 1 -1010110101111 pre-bust 1 -1010110101111 Euro-optimism 1 -1010110101111 multi-dealer 1 -1010110101111 pre-reserve 1 -1010110101111 codes-of-conduct 1 -1010110101111 less-than-comfortable 1 -1010110101111 chemotherapeutic-dose 1 -1010110101111 pre-drought 1 -1010110101111 stready 1 -1010110101111 less-than-record 1 -1010110101111 2,516,000 2 -1010110101111 hate-mongering 2 -1010110101111 spokespeople 2 -1010110101111 Rakosi 2 -1010110101111 lusts 2 -1010110101111 bird-dogging 2 -1010110101111 buy/hold 2 -1010110101111 scrabble 2 -1010110101111 Pruitt-Igoe 3 -1010110101111 batterings 3 -1010110101111 choline 3 -1010110101111 Hamet 3 -1010110101111 overburdening 4 -1010110101111 guage 4 -1010110101111 1,134 4 -1010110101111 self-justification 4 -1010110101111 eulogies 4 -1010110101111 backdating 4 -1010110101111 acknowledgments 4 -1010110101111 send-off 5 -1010110101111 double-billing 5 -1010110101111 bungle 5 -1010110101111 fronting 6 -1010110101111 refills 6 -1010110101111 pillage 7 -1010110101111 replanting 7 -1010110101111 slop 7 -1010110101111 disillusion 7 -1010110101111 overestimates 9 -1010110101111 tint 15 -1010110101111 uplift 15 -1010110101111 overbilling 16 -1010110101111 heft 16 -1010110101111 kudos 21 -1010110101111 torment 24 -1010110101111 pique 32 -1010110101111 hatch 34 -1010110101111 finesse 37 -1010110101111 underpinning 42 -1010110101111 ridicule 52 -1010110101111 scorn 57 -1010110101111 gratitude 66 -1010110101111 redress 95 -1010110101111 disdain 110 -1010110101111 doom 126 -1010110101111 prejudice 133 -1010110101111 dislike 137 -1010110101111 sway 142 -1010110101111 distrust 145 -1010110101111 disregard 178 -1010110101111 grasp 194 -1010110101111 praise 439 -1010110101111 respect 1181 -1010110101111 support 11070 -1010110101111 influence 2571 -101011011000 12000 1 -101011011000 386.12 1 -101011011000 rigmarole 1 -101011011000 shot-speaking 1 -101011011000 canter 2 -101011011000 tartness 2 -101011011000 secretes 2 -101011011000 ad-lib 2 -101011011000 barf 3 -101011011000 padlock 3 -101011011000 slurps 3 -101011011000 harpooned 3 -101011011000 bellow 3 -101011011000 de-leverage 3 -101011011000 highball 3 -101011011000 thumps 4 -101011011000 burrow 4 -101011011000 amble 4 -101011011000 reoccur 5 -101011011000 2,780 5 -101011011000 editorialize 5 -101011011000 rebalance 5 -101011011000 co-exist 5 -101011011000 correlates 5 -101011011000 Succeed 6 -101011011000 tarry 6 -101011011000 belch 6 -101011011000 sally 6 -101011011000 requalify 6 -101011011000 scrounge 7 -101011011000 snooze 7 -101011011000 tickle 7 -101011011000 piggybacked 8 -101011011000 chomp 8 -101011011000 slog 8 -101011011000 mumble 9 -101011011000 gulp 9 -101011011000 economize 10 -101011011000 bob 10 -101011011000 growl 10 -101011011000 sling 10 -101011011000 flutter 11 -101011011000 frolic 11 -101011011000 sublet 12 -101011011000 eye-to-eye 13 -101011011000 kneel 13 -101011011000 putter 15 -101011011000 dribble 15 -101011011000 stomp 15 -101011011000 fumble 15 -101011011000 shiver 17 -101011011000 rejoice 19 -101011011000 latch 19 -101011011000 howl 20 -101011011000 groan 21 -101011011000 perish 21 -101011011000 skate 21 -101011011000 leapfrog 22 -101011011000 nibble 24 -101011011000 reciprocate 25 -101011011000 buckle 27 -101011011000 glide 28 -101011011000 click 30 -101011011000 sniff 35 -101011011000 scrape 41 -101011011000 yell 44 -101011011000 wrench 46 -101011011000 chew 48 -101011011000 melt 54 -101011011000 hop 57 -101011011000 poke 59 -101011011000 dodge 61 -101011011000 stroll 63 -101011011000 bump 70 -101011011000 scream 71 -101011011000 shine 85 -101011011000 mesh 86 -101011011000 swim 98 -101011011000 slap 101 -101011011000 cheat 109 -101011011000 dig 123 -101011011000 haul 226 -101011011000 laugh 238 -101011011000 plug 239 -101011011000 stir 284 -101011011000 bite 328 -101011011000 hang 400 -101011011000 ride 682 -101011011000 bet 744 -101011011000 catch 864 -101011011000 speak 1180 -101011011000 fit 1369 -101011011000 stand 2488 -101011011000 run 7486 -101011011000 break 2639 -101011011001 tyrannosaurus 1 -101011011001 dice-throwers 1 -101011011001 dilly-dally 1 -101011011001 low-accident 1 -101011011001 mini-stations 1 -101011011001 repopulate 1 -101011011001 mix-ups 1 -101011011001 Sniffing 1 -101011011001 fast-crashing 1 -101011011001 sycophants 1 -101011011001 glomming 1 -101011011001 hindquarters 1 -101011011001 sinuously 1 -101011011001 metamorphose 1 -101011011001 1988-generally 1 -101011011001 puttered 1 -101011011001 stomps 1 -101011011001 striders 1 -101011011001 raincoming 1 -101011011001 pullng 1 -101011011001 accustoming 1 -101011011001 palling 2 -101011011001 carom 2 -101011011001 end-runs 2 -101011011001 stablize 2 -101011011001 physiognomy 2 -101011011001 hydrofoil 2 -101011011001 malachite 2 -101011011001 reheat 2 -101011011001 fawn 2 -101011011001 deadlocking 2 -101011011001 flouncing 2 -101011011001 1,416,403 2 -101011011001 Sarrat 2 -101011011001 overconcentration 3 -101011011001 psyching 3 -101011011001 wile 3 -101011011001 downwards 3 -101011011001 freaking 3 -101011011001 horsing 3 -101011011001 spool 3 -101011011001 35-year-olds 4 -101011011001 snoop 4 -101011011001 whiten 4 -101011011001 re-edit 4 -101011011001 harpoon 4 -101011011001 goop 4 -101011011001 daintily 4 -101011011001 less-obvious 4 -101011011001 preen 4 -101011011001 rustle 4 -101011011001 doze 4 -101011011001 pirouette 4 -101011011001 reseed 5 -101011011001 vanquish 5 -101011011001 cole 5 -101011011001 millstone 5 -101011011001 jell 5 -101011011001 twit 5 -101011011001 repent 6 -101011011001 hopscotch 7 -101011011001 weasel 7 -101011011001 squeak 8 -101011011001 nag 9 -101011011001 chow 9 -101011011001 drips 9 -101011011001 ooze 9 -101011011001 blare 10 -101011011001 scold 10 -101011011001 hollowing 10 -101011011001 bugle 11 -101011011001 corrode 11 -101011011001 ratchet 13 -101011011001 curl 14 -101011011001 claw 14 -101011011001 gallop 14 -101011011001 lash 15 -101011011001 shreds 16 -101011011001 trot 17 -101011011001 parrot 18 -101011011001 brood 19 -101011011001 wiggle 20 -101011011001 bitch 22 -101011011001 stash 23 -101011011001 dredge 23 -101011011001 prune 23 -101011011001 peel 24 -101011011001 graze 24 -101011011001 sock 26 -101011011001 bog 29 -101011011001 hum 29 -101011011001 jog 29 -101011011001 sip 32 -101011011001 skim 35 -101011011001 fork 35 -101011011001 flare 36 -101011011001 fudge 37 -101011011001 snuff 41 -101011011001 crank 41 -101011011001 reel 42 -101011011001 puff 44 -101011011001 chalk 46 -101011011001 jerk 51 -101011011001 tick 52 -101011011001 scoop 53 -101011011001 skid 56 -101011011001 hug 63 -101011011001 spit 63 -101011011001 rack 66 -101011011001 toss 68 -101011011001 boil 68 -101011011001 weed 81 -101011011001 pan 83 -101011011001 screw 83 -101011011001 dash 87 -101011011001 stumble 88 -101011011001 grind 96 -101011011001 sneak 96 -101011011001 cough 96 -101011011001 kiss 97 -101011011001 jam 104 -101011011001 disguise 113 -101011011001 whip 115 -101011011001 nail 116 -101011011001 flip 124 -101011011001 bend 131 -101011011001 wrap 131 -101011011001 cook 136 -101011011001 choke 137 -101011011001 hammer 153 -101011011001 wash 160 -101011011001 snap 184 -101011011001 bow 193 -101011011001 sweep 263 -101011011001 scare 276 -101011011001 kick 319 -101011011001 spell 379 -101011011001 bail 418 -101011011001 stretch 422 -101011011001 drag 426 -101011011001 lock 444 -101011011001 tie 628 -101011011001 feed 744 -101011011001 roll 757 -101011011001 wind 758 -101011011001 print 805 -101011011001 touch 811 -101011011001 turn 5389 -101011011001 check 1386 -101011011010 reenlistment-bonus 1 -101011011010 year-nearly 1 -101011011010 243-square-mile 1 -101011011010 Tranxene 1 -101011011010 inflation-racked 1 -101011011010 year-up 1 -101011011010 post-Victorian 1 -101011011010 541,252 1 -101011011010 DELIVERED 1 -101011011010 gay-pride 1 -101011011010 2,463 1 -101011011010 steel-driven 1 -101011011010 Zvesda 1 -101011011010 strike-truncated 1 -101011011010 120-block 1 -101011011010 calcium-added 1 -101011011010 up-down 1 -101011011010 yearand 1 -101011011010 300-foot-wide 1 -101011011010 book-hungry 1 -101011011010 lawyer-happy 1 -101011011010 peso-devalued 1 -101011011010 nowdays 1 -101011011010 Zarya 1 -101011011010 RECANT 1 -101011011010 now-ebbing 1 -101011011010 0.50-point 1 -101011011010 DEAD 1 -101011011010 drought-scorched 1 -101011011010 half-trashed 1 -101011011010 monthby 1 -101011011010 out-of-whack 1 -101011011010 tourist-rich 1 -101011011010 described. 1 -101011011010 STINGY 1 -101011011010 litter-free 1 -101011011010 unconquered 1 -101011011010 1,093 2 -101011011010 4,667 2 -101011011010 belt-tighten 2 -101011011010 malnourishment 2 -101011011010 matters. 2 -101011011010 decamp 2 -101011011010 impends 2 -101011011010 Mephistopheles 2 -101011011010 KH 2 -101011011010 zag 2 -101011011010 militates 3 -101011011010 257.28 3 -101011011010 twining 3 -101011011010 idiosyncrasy 4 -101011011010 2771.09 4 -101011011010 ALONE 4 -101011011010 glacier 7 -101011011010 shimmer 7 -101011011010 swerve 9 -101011011010 beckon 10 -101011011010 carp 11 -101011011010 fizzle 20 -101011011010 zoom 23 -101011011010 fester 24 -101011011010 gasp 29 -101011011010 sag 33 -101011011010 recede 38 -101011011010 wane 70 -101011011010 lapse 90 -101011011010 flourish 107 -101011011010 plummet 121 -101011011010 deteriorate 128 -101011011010 soar 276 -101011011010 resort 707 -101011011010 vary 797 -101011011010 fall 8417 -101011011010 climb 873 -101011011011 effectually 1 -101011011011 full-pension 1 -101011011011 three-dimensionally 1 -101011011011 horseflies 1 -101011011011 unoffensive 1 -101011011011 fang 1 -101011011011 tankersthat 1 -101011011011 ethic. 1 -101011011011 unbossed 1 -101011011011 pan-Germanism 1 -101011011011 close-outs 1 -101011011011 paddleball 1 -101011011011 Bismarck-for-a-day 1 -101011011011 Eponine 1 -101011011011 dogmas 1 -101011011011 shallots 1 -101011011011 anti-militarist 1 -101011011011 concentraion 1 -101011011011 January-to-January 1 -101011011011 waypoints 1 -101011011011 combinatorics 1 -101011011011 Caressed 1 -101011011011 fink 1 -101011011011 upstage/downstage 1 -101011011011 inoffensively 1 -101011011011 Bangkok-Rangoon 1 -101011011011 projector-slides 1 -101011011011 nationalisation 1 -101011011011 work-down 1 -101011011011 gay- 1 -101011011011 west-northwest 1 -101011011011 drug-information 1 -101011011011 situtation 1 -101011011011 high-market-share 2 -101011011011 1.5-volt 2 -101011011011 L-shape 2 -101011011011 174.67 2 -101011011011 marsupials 2 -101011011011 entwine 3 -101011011011 175.79 3 -101011011011 jelled 3 -101011011011 menaces 3 -101011011011 tieless 4 -101011011011 emptor 9 -101011011011 apnea 13 -101011011011 Sauvignon 17 -101011011011 buildups 20 -101011011011 inhalation 31 -101011011011 stoppages 52 -101011011011 stoppage 113 -101011011011 ethic 117 -101011011011 force 7981 -101011011011 mate 287 -101011011100 island-nations 1 -101011011100 smash-down 1 -101011011100 half-smoked 1 -101011011100 access-watch 1 -101011011100 land-trade 1 -101011011100 loan-creating 1 -101011011100 mega-biotech 1 -101011011100 fantasy-science 1 -101011011100 catchphrase 1 -101011011100 TV-screen 1 -101011011100 in-first 1 -101011011100 quarter-especially 1 -101011011100 divergency 1 -101011011100 biographythan 1 -101011011100 Malaysian-assembled 1 -101011011100 adjoin 1 -101011011100 meeting-date 1 -101011011100 ex-jock 1 -101011011100 semi-deliveries 1 -101011011100 Jell-o 1 -101011011100 test-dose 1 -101011011100 action-thriller 1 -101011011100 TENDS 1 -101011011100 day-an 1 -101011011100 appoached 1 -101011011100 controvery 1 -101011011100 foreign-security 1 -101011011100 year-half 1 -101011011100 export-order 1 -101011011100 single-beam 1 -101011011100 above-water 1 -101011011100 bowl-off 1 -101011011100 bear-turned-bull 1 -101011011100 Clamping 1 -101011011100 Sputniks 1 -101011011100 motorcycled 1 -101011011100 radio-listening 1 -101011011100 CTA 2 -101011011100 1043.73 2 -101011011100 header 3 -101011011100 three-pointer 3 -101011011100 issue. 3 -101011011100 250-stock 3 -101011011100 half-step 4 -101011011100 hurtle 4 -101011011100 wisecrack 4 -101011011100 stanza 5 -101011011100 delineation 6 -101011011100 clatter 6 -101011011100 cascades 8 -101011011100 flicker 16 -101011011100 rumble 23 -101011011100 gleam 24 -101011011100 entrant 35 -101011011100 volley 38 -101011011100 blush 40 -101011011100 rung 41 -101011011100 sketch 45 -101011011100 wrinkle 53 -101011011100 perk 64 -101011011100 salvo 72 -101011011100 tier 98 -101011011100 trickle 120 -101011011100 bang 129 -101011011100 glance 131 -101011011100 parcel 134 -101011011100 pile 223 -101011011100 twist 260 -101011011100 burst 316 -101011011100 feature 887 -101011011100 phase 955 -101011011100 section 1624 -101011011100 step 3936 -101011011100 sign 3348 -1010110111010 Zanthe 1 -1010110111010 Apteryx 1 -1010110111010 shutins 1 -1010110111010 turneth 1 -1010110111010 Formacel 1 -1010110111010 57mm 1 -1010110111010 Leponex 1 -1010110111010 proposal.While 1 -1010110111010 neck-deep 2 -1010110111010 Wiwili 2 -1010110111010 near-recession 2 -1010110111010 pseudoregulation 2 -1010110111010 punier 2 -1010110111010 twiddle 2 -1010110111010 truckstop 2 -1010110111010 infuence 2 -1010110111010 wignapping 3 -1010110111010 postulate 3 -1010110111010 yowl 3 -1010110111010 nonspecialists 3 -1010110111010 cold-shoulder 3 -1010110111010 hippopotamus 3 -1010110111010 furrow 3 -1010110111010 cuss 4 -1010110111010 CHART 4 -1010110111010 unbalance 5 -1010110111010 manuever 5 -1010110111010 turndown 8 -1010110111010 dab 10 -1010110111010 converse 11 -1010110111010 letup 12 -1010110111010 ballyhoo 13 -1010110111010 squirrel 14 -1010110111010 cinch 24 -1010110111010 rake 34 -1010110111010 reshuffle 49 -1010110111010 thaw 53 -1010110111010 blur 55 -1010110111010 reshuffling 61 -1010110111010 shuffle 91 -1010110111010 cave 99 -1010110111010 dent 132 -1010110111010 shift 1915 -1010110111010 change 11107 -1010110111010 delay 2200 -1010110111011 near-crisis 1 -1010110111011 drably 1 -1010110111011 largly 1 -1010110111011 screwdriver-turn 1 -1010110111011 marathon-length 1 -1010110111011 cartwheel 1 -1010110111011 foals 1 -1010110111011 ping-thunk 1 -1010110111011 stone's-throw 1 -1010110111011 mini-catalog 1 -1010110111011 earcup 1 -1010110111011 limo-length 1 -1010110111011 teleprompter 1 -1010110111011 non-PLAM 1 -1010110111011 microsociety 1 -1010110111011 exuberance.You 1 -1010110111011 impala 1 -1010110111011 neo-Malthusianism 1 -1010110111011 ryegrass 1 -1010110111011 6-day 1 -1010110111011 Zanzibar 2 -1010110111011 1,158 2 -1010110111011 pointillism 2 -1010110111011 Grind 2 -1010110111011 mickey 2 -1010110111011 short-cut 2 -1010110111011 Stealthie 2 -1010110111011 AJC 3 -1010110111011 spanner 3 -1010110111011 Know-It-All 3 -1010110111011 waddle 4 -1010110111011 grunting 5 -1010110111011 segue 6 -1010110111011 saunter 6 -1010110111011 portals 9 -1010110111011 wobble 11 -1010110111011 relapse 15 -1010110111011 detour 19 -1010110111011 sprint 21 -1010110111011 genie 23 -1010110111011 ram 32 -1010110111011 sop 33 -1010110111011 snowball 34 -1010110111011 dove 35 -1010110111011 trek 44 -1010110111011 query 45 -1010110111011 muddle 46 -1010110111011 lurch 48 -1010110111011 rebuff 53 -1010110111011 voyage 63 -1010110111011 crawl 81 -1010110111011 stampede 95 -1010110111011 nod 98 -1010110111011 tilt 149 -1010110111011 hurry 176 -1010110111011 hook 217 -1010110111011 drift 255 -1010110111011 march 326 -1010110111011 maneuver 326 -1010110111011 swing 555 -1010110111011 rush 777 -1010110111011 guide 850 -1010110111011 blow 920 -1010110111011 move 12908 -1010110111011 switch 1110 -101011011110 Meguro 1 -101011011110 ticket-use 1 -101011011110 remorselessly 1 -101011011110 rapid-deployment 1 -101011011110 6,000-strong 1 -101011011110 price/earning 1 -101011011110 federal-needs 1 -101011011110 105,000-strong 1 -101011011110 playwright-actor 1 -101011011110 sleazing 1 -101011011110 industry-stated 1 -101011011110 then-boss 1 -101011011110 all-number 1 -101011011110 rent-stabilization 1 -101011011110 basting 1 -101011011110 import-control 1 -101011011110 overdosing 2 -101011011110 kidders 2 -101011011110 190.02 2 -101011011110 dillydallied 2 -101011011110 1,102 2 -101011011110 DECWorld 2 -101011011110 936.41 2 -101011011110 druggy 2 -101011011110 1480.97 2 -101011011110 Kingaroy 2 -101011011110 biaotai 2 -101011011110 trade-bashing 2 -101011011110 twelfth 2 -101011011110 1526.32 2 -101011011110 1492.89 3 -101011011110 1443.28 3 -101011011110 1419.63 3 -101011011110 1428.17 3 -101011011110 21910.08 3 -101011011110 disinfection 3 -101011011110 3,460 3 -101011011110 764.71 3 -101011011110 853.79 3 -101011011110 2104.37 3 -101011011110 773.43 3 -101011011110 1498.76 3 -101011011110 sallying 3 -101011011110 non-book 4 -101011011110 3,070 4 -101011011110 1738.41 4 -101011011110 television-watching 4 -101011011110 grub 4 -101011011110 2,710 4 -101011011110 2,960 4 -101011011110 vipers 4 -101011011110 fettucine 5 -101011011110 consort 6 -101011011110 urinate 6 -101011011110 fouls 6 -101011011110 1,410 6 -101011011110 3,130 6 -101011011110 1,470 7 -101011011110 repose 7 -101011011110 1,990 7 -101011011110 work. 8 -101011011110 masquerade 11 -101011011110 Tahiti 12 -101011011110 sleuthing 12 -101011011110 featherbedding 13 -101011011110 knuckle 13 -101011011110 hoe 15 -101011011110 sparkle 27 -101011011110 toil 34 -101011011110 dole 35 -101011011110 rot 36 -101011011110 gaze 47 -101011011110 bark 49 -101011011110 bloom 65 -101011011110 flesh 125 -101011011110 sleep 393 -101011011110 work 18144 -101011011110 smoke 686 -1010110111110 434-XL 1 -1010110111110 Nibs 1 -1010110111110 Yell 2 -1010110111110 Mandarins 2 -1010110111110 Bortnik 2 -1010110111110 resume. 2 -1010110111110 prudishness 2 -1010110111110 king-making 2 -1010110111110 buttonhole 2 -1010110111110 AIF 3 -1010110111110 landmass 3 -1010110111110 ruggedness 3 -1010110111110 chump 3 -1010110111110 kneecap 3 -1010110111110 warble 3 -1010110111110 rhapsody 3 -1010110111110 openhanded 3 -1010110111110 alternator 4 -1010110111110 casebook 4 -1010110111110 intro 4 -1010110111110 sire 5 -1010110111110 chattel 6 -1010110111110 domicile 6 -1010110111110 pork-barreling 10 -1010110111110 rejoinder 15 -1010110111110 endorser 17 -1010110111110 snub 18 -1010110111110 shroud 19 -1010110111110 preface 24 -1010110111110 gerrymander 24 -1010110111110 flip-flop 29 -1010110111110 slant 34 -1010110111110 audition 41 -1010110111110 chant 53 -1010110111110 elbow 66 -1010110111110 brew 74 -1010110111110 endeavor 92 -1010110111110 flock 128 -1010110111110 instinct 147 -1010110111110 tack 152 -1010110111110 anchor 160 -1010110111110 reply 316 -1010110111110 shoulder 345 -1010110111110 pitch 500 -1010110111110 mandate 546 -1010110111110 label 587 -1010110111110 object 592 -1010110111110 arrest 637 -1010110111110 pledge 643 -1010110111110 visit 1984 -1010110111110 answer 2128 -1010110111110 challenge 2310 -1010110111110 appeal 3451 -1010110111110 approach 3553 -1010110111110 name 6750 -1010110111111 mini-playlet 1 -1010110111111 gooselike 1 -1010110111111 rank-and-filer 1 -1010110111111 juleping 1 -1010110111111 runtime 1 -1010110111111 chokehold 1 -1010110111111 cantina 1 -1010110111111 Snuffleupagus 1 -1010110111111 crypto-custodian 1 -1010110111111 whistle-like 1 -1010110111111 veejays 1 -1010110111111 dollar-limit 1 -1010110111111 sublimit 1 -1010110111111 seiche 1 -1010110111111 pixies 1 -1010110111111 57.8-cent 1 -1010110111111 kingpin/rapist 1 -1010110111111 tootles 1 -1010110111111 attitudinizing 1 -1010110111111 hyperfocus 1 -1010110111111 wobbler 1 -1010110111111 vote-count 1 -1010110111111 half-Boesky 1 -1010110111111 headlock 1 -1010110111111 airplane-boat 1 -1010110111111 postmortem 1 -1010110111111 Plod 1 -1010110111111 slat 1 -1010110111111 winger 1 -1010110111111 battle-cries 1 -1010110111111 cairn 1 -1010110111111 softy 1 -1010110111111 killer-rapist 1 -1010110111111 multiplications 1 -1010110111111 suns 1 -1010110111111 band-aid 1 -1010110111111 six-pounder 1 -1010110111111 moralizers 2 -1010110111111 Sextus 2 -1010110111111 emphases 2 -1010110111111 buss 2 -1010110111111 near-low 2 -1010110111111 fadeout 2 -1010110111111 run-and-gun 2 -1010110111111 tom 3 -1010110111111 pittances 3 -1010110111111 Gentiles 3 -1010110111111 deejay 3 -1010110111111 misidentification 3 -1010110111111 disquisition 4 -1010110111111 snitch 4 -1010110111111 blotters 4 -1010110111111 toot 5 -1010110111111 whitetail 6 -1010110111111 smudge 6 -1010110111111 knob 7 -1010110111111 learner 8 -1010110111111 primer 11 -1010110111111 peck 11 -1010110111111 bogey 12 -1010110111111 gorge 13 -1010110111111 splurge 14 -1010110111111 backstop 15 -1010110111111 demagogue 16 -1010110111111 hammerlock 16 -1010110111111 dissertation 19 -1010110111111 frown 21 -1010110111111 boomerang 22 -1010110111111 boomlet 23 -1010110111111 fixation 23 -1010110111111 near-monopoly 24 -1010110111111 blot 27 -1010110111111 putt 28 -1010110111111 clampdown 29 -1010110111111 blight 34 -1010110111111 treatise 34 -1010110111111 harp 41 -1010110111111 blink 42 -1010110111111 stranglehold 47 -1010110111111 damper 56 -1010110111111 roar 57 -1010110111111 counterattack 59 -1010110111111 filibuster 97 -1010110111111 sanction 120 -1010110111111 pinch 122 -1010110111111 lecture 142 -1010110111111 dive 159 -1010110111111 balloon 166 -1010110111111 bind 177 -1010110111111 lid 181 -1010110111111 stint 207 -1010110111111 pause 212 -1010110111111 prohibition 235 -1010110111111 revolt 239 -1010110111111 levy 284 -1010110111111 crackdown 355 -1010110111111 drain 367 -1010110111111 strain 371 -1010110111111 raid 372 -1010110111111 moratorium 490 -1010110111111 witness 536 -1010110111111 squeeze 610 -1010110111111 cap 686 -1010110111111 function 722 -1010110111111 freeze 889 -1010110111111 warrant 912 -1010110111111 count 1388 -1010110111111 seat 1681 -1010110111111 ban 1898 -1010110111111 vote 7406 -1010110111111 act 3601 -10101110 stickwork 1 -10101110 pre-natally 1 -10101110 business-holding 1 -10101110 masonry-and-glass 1 -10101110 market-players 1 -10101110 rip-out 1 -10101110 downticking 1 -10101110 horn-tooting 1 -10101110 contraire 1 -10101110 reportoire 1 -10101110 1.8978 1 -10101110 meliorism 1 -10101110 profit-spinner 1 -10101110 vocalizations 1 -10101110 slack. 1 -10101110 Oct.5 1 -10101110 head-lice 1 -10101110 caterwauls 1 -10101110 Menckenisms 1 -10101110 Pumpkinland 1 -10101110 Fisk-fan 1 -10101110 econo-boxes 1 -10101110 apercus 1 -10101110 sprirt 1 -10101110 +0.47 1 -10101110 Srejber 1 -10101110 schnozz 1 -10101110 Celebritys 1 -10101110 225.21 1 -10101110 falterings 1 -10101110 deism 1 -10101110 toe-firster 1 -10101110 taxi-seekers 1 -10101110 psycho-thriller 1 -10101110 statements. 1 -10101110 Tateho-type 1 -10101110 exgeneral 1 -10101110 naturel 1 -10101110 cross-references 1 -10101110 fertilizations 1 -10101110 dopeyness 1 -10101110 drainpipe 1 -10101110 issueswas 1 -10101110 despot. 1 -10101110 siestas 1 -10101110 3,362 1 -10101110 I.Q. 1 -10101110 frabjous 1 -10101110 nebulae 1 -10101110 tarding 1 -10101110 contritely 1 -10101110 focusings 1 -10101110 steel-and-wood 1 -10101110 breathers 1 -10101110 Marvellee 1 -10101110 trding 1 -10101110 riots. 1 -10101110 avenger 1 -10101110 retreat. 1 -10101110 couple. 1 -10101110 chattily 1 -10101110 REDUCTIONS 1 -10101110 bacchanalia 1 -10101110 strip-joint 1 -10101110 cash-posting 1 -10101110 508.3 1 -10101110 664.22 1 -10101110 4019.62 1 -10101110 inititated 1 -10101110 Quayle-backer 1 -10101110 6,024 1 -10101110 half-tablet 1 -10101110 sub-indexes 1 -10101110 profitmaker 1 -10101110 ejections 1 -10101110 sill 1 -10101110 tardive 1 -10101110 8,526,000 1 -10101110 pre-kindergartens 1 -10101110 3,864 2 -10101110 position-taking 2 -10101110 precipitator 2 -10101110 13-story 2 -10101110 program-selling 2 -10101110 mafioso 2 -10101110 coffeehouses 4 -10101110 trading 40735 -10101110 trading-related 11 -1010111100 yack 1 -1010111100 point-drops 1 -1010111100 Dictaphones 1 -1010111100 festoonery 1 -1010111100 volte-face 1 -1010111100 hard-blowing 1 -1010111100 spinster-hood 1 -1010111100 money-changer 1 -1010111100 385.01 1 -1010111100 writeback 1 -1010111100 least-traded 1 -1010111100 Cedarville 1 -1010111100 Pharoahs 1 -1010111100 Sub-Committee 1 -1010111100 noodled 1 -1010111100 71-cent 1 -1010111100 mostactive 1 -1010111100 531,417 1 -1010111100 85-pence 1 -1010111100 casino-resort 1 -1010111100 UPSWI 1 -1010111100 double-dealing 1 -1010111100 tattled 1 -1010111100 OGSWI 1 -1010111100 kabosh 1 -1010111100 Tandems 1 -1010111100 FOCUSING 1 -1010111100 not-so-fortunate 1 -1010111100 beer-sales 1 -1010111100 still-disputed 1 -1010111100 gladiolas 1 -1010111100 importuners 1 -1010111100 womp 1 -1010111100 aerators 1 -1010111100 3-to-3 1 -1010111100 still-stubborn 1 -1010111100 choke-hold 1 -1010111100 overstimulation 1 -1010111100 Observations 1 -1010111100 clamp-down 1 -1010111100 28000-barrier 1 -1010111100 beading 1 -1010111100 deal-of-a-lifetime 1 -1010111100 cottontails 1 -1010111100 feet-to-feet 1 -1010111100 retractor 1 -1010111100 DIVIDED 1 -1010111100 loop-the-loops 1 -1010111100 Wreckage 1 -1010111100 3783 1 -1010111100 l0-day 1 -1010111100 rail-straight 1 -1010111100 sturdiest 1 -1010111100 2100-level 1 -1010111100 2,227 1 -1010111100 teethmarks 1 -1010111100 fixate 2 -1010111100 welch 2 -1010111100 34-year-olds 2 -1010111100 non-interference 2 -1010111100 97.65 2 -1010111100 warlock 2 -1010111100 dote 2 -1010111100 kibosh 2 -1010111100 nosh 2 -1010111100 mid-1900s 3 -1010111100 Vaxes 4 -1010111100 backpedal 4 -1010111100 backtrack 6 -1010111100 Survive 6 -1010111100 Documenta 7 -1010111100 scrimp 7 -1010111100 encroach 10 -1010111100 eavesdrop 10 -1010111100 subsist 11 -1010111100 impinge 15 -1010111100 intercede 18 -1010111100 renege 42 -1010111100 embark 57 -1010111100 dwell 63 -1010111100 Heard 76 -1010111100 infringe 76 -1010111100 foreclose 80 -1010111100 hinge 80 -1010111100 capitalize 295 -1010111100 rely 802 -1010111100 depend 940 -1010111100 concentrate 1048 -1010111100 focus 3152 -1010111100 yield 7326 -1010111101 1,902.47 1 -1010111101 122.52 1 -1010111101 106.30 1 -1010111101 philosophize 1 -1010111101 136.90 1 -1010111101 233.92 1 -1010111101 137.93 1 -1010111101 25,528 1 -1010111101 261.00 1 -1010111101 1783.1 1 -1010111101 25288.12 1 -1010111101 316.75 1 -1010111101 136.21 1 -1010111101 442.42 1 -1010111101 1833.96 1 -1010111101 137.58 1 -1010111101 1309.3 1 -1010111101 22813.73 1 -1010111101 1867.56 1 -1010111101 22734.49 1 -1010111101 SBLI 1 -1010111101 1854.07 1 -1010111101 1,875.75 1 -1010111101 246.76 1 -1010111101 329.55 1 -1010111101 119.38 1 -1010111101 136.13 1 -1010111101 1855.73 1 -1010111101 cents-on-the-dollar 1 -1010111101 255.2 1 -1010111101 22531.60 1 -1010111101 59-year-olds 1 -1010111101 326,852 1 -1010111101 171.83 1 -1010111101 166.41 1 -1010111101 24176.40 1 -1010111101 barers 1 -1010111101 327,453 1 -1010111101 171.55 1 -1010111101 23870.86 1 -1010111101 172.89 1 -1010111101 1794.6 1 -1010111101 2297.4 1 -1010111101 2050.52 1 -1010111101 24465.48 1 -1010111101 self-finance 1 -1010111101 1751.6 1 -1010111101 306.86 1 -1010111101 twinning 1 -1010111101 24794.91 1 -1010111101 173.22 1 -1010111101 8,642 1 -1010111101 Case. 1 -1010111101 home-in 1 -1010111101 426.48 1 -1010111101 172.99 1 -1010111101 24509.41 1 -1010111101 24892.75 1 -1010111101 lawn-cutting 1 -1010111101 1772.5 1 -1010111101 25031.35 1 -1010111101 1684.1 1 -1010111101 1258.70 1 -1010111101 224.33 1 -1010111101 22202.56 1 -1010111101 2395.72 1 -1010111101 2558 1 -1010111101 319,670 1 -1010111101 2241.69 1 -1010111101 1802.77 1 -1010111101 1.7265 1 -1010111101 1241.10 1 -1010111101 22696.49 1 -1010111101 welsh 1 -1010111101 parkgoers 1 -1010111101 overorder 1 -1010111101 1841.38 1 -1010111101 130.31 1 -1010111101 1288.5 1 -1010111101 229.43 1 -1010111101 895.03 1 -1010111101 472.86 1 -1010111101 516.54 1 -1010111101 4303.42 1 -1010111101 2977.31 1 -1010111101 1550.4 1 -1010111101 1801.6 1 -1010111101 1439.2 1 -1010111101 258.16 1 -1010111101 Tiruchirapalli 1 -1010111101 282.25 1 -1010111101 120,686 1 -1010111101 2152.98 1 -1010111101 26366.74 1 -1010111101 227.12 1 -1010111101 24404.45 1 -1010111101 399.0 1 -1010111101 577.44 1 -1010111101 1527.3 1 -1010111101 294.50 1 -1010111101 327.50 1 -1010111101 281.97 1 -1010111101 1962.41 1 -1010111101 134.06 1 -1010111101 317.79 1 -1010111101 1290.0 1 -1010111101 Castro. 1 -1010111101 243.17 1 -1010111101 22418.37 1 -1010111101 1317.1 1 -1010111101 22600.31 1 -1010111101 1842.73 1 -1010111101 sacrifice. 1 -1010111101 2295 1 -1010111101 250.82 1 -1010111101 22765.04 1 -1010111101 1244.04 1 -1010111101 251.79 1 -1010111101 1723.7 1 -1010111101 141.81 1 -1010111101 1857.07 1 -1010111101 22793.58 1 -1010111101 synthesize. 1 -1010111101 326.18 1 -1010111101 22593.37 1 -1010111101 22795.02 1 -1010111101 320.13 1 -1010111101 1885.71 1 -1010111101 288.23 1 -1010111101 2116 1 -1010111101 25560.23 1 -1010111101 329.25 1 -1010111101 25344.34 1 -1010111101 668.02 1 -1010111101 1732.2 1 -1010111101 meetcha 1 -1010111101 19,532,497 1 -1010111101 1,203 1 -1010111101 669.50 1 -1010111101 25378.88 1 -1010111101 1764.0 1 -1010111101 362.87 1 -1010111101 186.76 1 -1010111101 2105.96 1 -1010111101 25494.01 1 -1010111101 clergywomen 1 -1010111101 24800.95 1 -1010111101 retrogress 1 -1010111101 1796.6 1 -1010111101 5,830 1 -1010111101 24658.23 1 -1010111101 1754.1 1 -1010111101 180.37 1 -1010111101 323.25 1 -1010111101 186.13 1 -1010111101 1772.6 1 -1010111101 185.70 1 -1010111101 southwesterly 1 -1010111101 329.45 1 -1010111101 328.00 1 -1010111101 1742.6 1 -1010111101 25119.70 1 -1010111101 sex-offenders 1 -1010111101 1583.9 1 -1010111101 1133 1 -1010111101 21,885 1 -1010111101 3583.33 1 -1010111101 435.6 1 -1010111101 1755.1 1 -1010111101 2163.50 1 -1010111101 361.02 1 -1010111101 454.79 1 -1010111101 1249.8 1 -1010111101 116.85 1 -1010111101 305.24 1 -1010111101 232.98 1 -1010111101 1857.59 1 -1010111101 22915.49 1 -1010111101 305.22 1 -1010111101 1847.04 1 -1010111101 22686.78 1 -1010111101 1250.9 1 -1010111101 2157.48 1 -1010111101 2158.21 1 -1010111101 CBS/Epic 1 -1010111101 116.96 1 -1010111101 25396.57 1 -1010111101 660.19 1 -1010111101 2129.31 1 -1010111101 25559.18 1 -1010111101 2164.97 1 -1010111101 335.90 1 -1010111101 447.95 1 -1010111101 184.38 1 -1010111101 187.04 1 -1010111101 1712.4 1 -1010111101 656.97 1 -1010111101 create. 1 -1010111101 1,127.5 1 -1010111101 6,130 1 -1010111101 2148.39 1 -1010111101 25643.39 1 -1010111101 1768.5 1 -1010111101 2161.24 1 -1010111101 1752.1 1 -1010111101 2225.1 1 -1010111101 186.27 1 -1010111101 re-formulate 1 -1010111101 2004.23 1 -1010111101 24003.61 1 -1010111101 175.70 1 -1010111101 1996.69 1 -1010111101 23983.45 1 -1010111101 314.59 1 -1010111101 4060 1 -1010111101 1995.54 1 -1010111101 23969.76 1 -1010111101 643.69 1 -1010111101 173.59 1 -1010111101 1290.06 1 -1010111101 1840.46 1 -1010111101 21,415.37 1 -1010111101 1991.8 1 -1010111101 1,576.6 1 -1010111101 2390.5 1 -1010111101 2346 1 -1010111101 437.1 1 -1010111101 23078.36 1 -1010111101 2400.7 1 -1010111101 1939.21 1 -1010111101 amalgamate 1 -1010111101 Kununurra 1 -1010111101 346.79 1 -1010111101 23755.90 1 -1010111101 1827.2 1 -1010111101 laneside 1 -1010111101 173.42 1 -1010111101 5690 1 -1010111101 2020.50 1 -1010111101 5580 1 -1010111101 1998.76 1 -1010111101 23931.53 1 -1010111101 697.2 1 -1010111101 24102.99 1 -1010111101 178.63 1 -1010111101 maneuvers. 1 -1010111101 24427.12 1 -1010111101 1874.4 1 -1010111101 24510.37 1 -1010111101 1788.6 1 -1010111101 178.54 1 -1010111101 360.31 1 -1010111101 178.07 1 -1010111101 24755.95 1 -1010111101 489.6 1 -1010111101 1815.1 1 -1010111101 hoofing 1 -1010111101 1918.19 1 -1010111101 23036.52 1 -1010111101 3677 1 -1010111101 2346.9 1 -1010111101 1832.4 1 -1010111101 3030 1 -1010111101 173.45 1 -1010111101 173.04 1 -1010111101 24385.82 1 -1010111101 175.24 1 -1010111101 277.95 1 -1010111101 174.47 1 -1010111101 24104.98 1 -1010111101 1834.2 1 -1010111101 300.00 1 -1010111101 153.23 1 -1010111101 384.48 1 -1010111101 7990.75 1 -1010111101 27727.96 1 -1010111101 G-rated 1 -1010111101 1455.8 1 -1010111101 27444.28 1 -1010111101 299.97 1 -1010111101 299.62 1 -1010111101 352.58 1 -1010111101 384.20 1 -1010111101 aflatoxin-contamination 1 -1010111101 27573.27 1 -1010111101 trill 1 -1010111101 382.75 1 -1010111101 107.59 1 -1010111101 298.40 1 -1010111101 151.64 1 -1010111101 382.22 1 -1010111101 27766.66 1 -1010111101 354.95 1 -1010111101 902,408 1 -1010111101 coment 1 -1010111101 298.74 1 -1010111101 27435.59 1 -1010111101 8613.82 1 -1010111101 357.65 1 -1010111101 1248.71 1 -1010111101 27843.95 1 -1010111101 2131.96 1 -1010111101 153.78 1 -1010111101 1231.51 1 -1010111101 298.87 1 -1010111101 152.03 1 -1010111101 354.11 1 -1010111101 289,570 1 -1010111101 19,297 1 -1010111101 27323.93 1 -1010111101 2,209 1 -1010111101 27341.38 1 -1010111101 302.04 1 -1010111101 155.34 1 -1010111101 157.32 1 -1010111101 34,771 1 -1010111101 2115 1 -1010111101 27241.30 1 -1010111101 2108.66 1 -1010111101 27324.90 1 -1010111101 glazings 1 -1010111101 303.27 1 -1010111101 155.87 1 -1010111101 2119.79 1 -1010111101 27240.52 1 -1010111101 2128.05 1 -1010111101 1510.9 1 -1010111101 UniMarts 1 -1010111101 351.57 1 -1010111101 156.81 1 -1010111101 non-judges 1 -1010111101 304.09 1 -1010111101 156.96 1 -1010111101 1261.63 1 -1010111101 301.14 1 -1010111101 385.15 1 -1010111101 351.25 1 -1010111101 385.28 1 -1010111101 reseal 1 -1010111101 301.91 1 -1010111101 154.77 1 -1010111101 167.28 1 -1010111101 1471.9 1 -1010111101 1814.3 1 -1010111101 2116.61 1 -1010111101 1257.94 1 -1010111101 303.77 1 -1010111101 156.77 1 -1010111101 6899.91 1 -1010111101 1487.2 1 -1010111101 2113.97 1 -1010111101 27632.60 1 -1010111101 2125.14 1 -1010111101 296.36 1 -1010111101 150.38 1 -1010111101 6,180 1 -1010111101 27407.81 1 -1010111101 2110.40 1 -1010111101 1426.0 1 -1010111101 1243.68 1 -1010111101 283.20 1 -1010111101 475.50 1 -1010111101 296.59 1 -1010111101 150.20 1 -1010111101 2129.64 1 -1010111101 296.67 1 -1010111101 5,710 1 -1010111101 297.00 1 -1010111101 non-racers 1 -1010111101 251.40 1 -1010111101 98.62 1 -1010111101 499.50 1 -1010111101 228.80 1 -1010111101 2134.81 1 -1010111101 27740.11 1 -1010111101 1398.5 1 -1010111101 nonteachers 1 -1010111101 wiremaking 1 -1010111101 294.91 1 -1010111101 148.66 1 -1010111101 2141.49 1 -1010111101 344.73 1 -1010111101 1581.6 1 -1010111101 295.05 1 -1010111101 148.55 1 -1010111101 1858.31 1 -1010111101 2137.08 1 -1010111101 376.55 1 -1010111101 294.80 1 -1010111101 148.29 1 -1010111101 2031.65 1 -1010111101 Gatlings 1 -1010111101 293.18 1 -1010111101 146.68 1 -1010111101 grubs 1 -1010111101 2093.20 1 -1010111101 27004.64 1 -1010111101 27472.59 1 -1010111101 2123.64 1 -1010111101 298.63 1 -1010111101 27799.09 1 -1010111101 384.10 1 -1010111101 27731.80 1 -1010111101 double-bill 1 -1010111101 352.22 1 -1010111101 297.67 1 -1010111101 151.92 1 -1010111101 384.86 1 -1010111101 384.91 1 -1010111101 298.97 1 -1010111101 152.64 1 -1010111101 295.7 1 -1010111101 1253.70 1 -1010111101 2108.55 1 -1010111101 298.35 1 -1010111101 152.13 1 -1010111101 296.79 1 -1010111101 151.15 1 -1010111101 35,583 1 -1010111101 7783.43 1 -1010111101 205.50 1 -1010111101 136.10 1 -1010111101 1409.8 1 -1010111101 1756.3 1 -1010111101 2147.38 1 -1010111101 350.83 1 -1010111101 151.60 1 -1010111101 383.85 1 -1010111101 non-paramedics 1 -1010111101 1831.6 1 -1010111101 self-betterment 1 -1010111101 2368.1 1 -1010111101 1851.3 1 -1010111101 2140.14 1 -1010111101 2048.45 1 -1010111101 24944.88 1 -1010111101 1811.9 1 -1010111101 2313.4 1 -1010111101 tomorrrow 1 -1010111101 333.20 1 -1010111101 2366 1 -1010111101 2136.61 1 -1010111101 26010.88 1 -1010111101 182.97 1 -1010111101 331.70 1 -1010111101 226.92 1 -1010111101 518.20 1 -1010111101 456.9 1 -1010111101 2368.3 1 -1010111101 2139.15 1 -1010111101 2247.6 1 -1010111101 338.80 1 -1010111101 191.80 1 -1010111101 28982.25 1 -1010111101 2234.15 1 -1010111101 148.96 1 -1010111101 337.91 1 -1010111101 289.59 1 -1010111101 nonemployees 1 -1010111101 1831.8 1 -1010111101 24866.06 1 -1010111101 31,290 1 -1010111101 33,931 1 -1010111101 3763.11 1 -1010111101 361.50 1 -1010111101 451.7 1 -1010111101 2352.4 1 -1010111101 2234.98 1 -1010111101 178.48 1 -1010111101 173.52 1 -1010111101 332.40 1 -1010111101 322.90 1 -1010111101 5,360 1 -1010111101 2156.17 1 -1010111101 26284.65 1 -1010111101 2338.5 1 -1010111101 overwrite 1 -1010111101 1858.2 1 -1010111101 2158.25 1 -1010111101 26338.77 1 -1010111101 337.04 1 -1010111101 166.64 1 -1010111101 2375.5 1 -1010111101 1866.9 1 -1010111101 2154.37 1 -1010111101 631.10 1 -1010111101 311.07 1 -1010111101 347.20 1 -1010111101 1834.7 1 -1010111101 2181.47 1 -1010111101 281.50 1 -1010111101 1812.9 1 -1010111101 26428.22 1 -1010111101 2167.3 1 -1010111101 670.50 1 -1010111101 1847.4 1 -1010111101 2161.69 1 -1010111101 seaward 1 -1010111101 176.02 1 -1010111101 171.26 1 -1010111101 2382.2 1 -1010111101 1872.3 1 -1010111101 2114.19 1 -1010111101 204.20 1 -1010111101 1873.7 1 -1010111101 2119.87 1 -1010111101 26018.33 1 -1010111101 Watergate. 1 -1010111101 333.80 1 -1010111101 344.90 1 -1010111101 180,080 1 -1010111101 253,098 1 -1010111101 1860.9 1 -1010111101 2108.33 1 -1010111101 25721.74 1 -1010111101 444.64 1 -1010111101 176.32 1 -1010111101 3936.13 1 -1010111101 1853.5 1 -1010111101 2121.29 1 -1010111101 25952.27 1 -1010111101 319.85 1 -1010111101 447.51 1 -1010111101 178.98 1 -1010111101 1858.3 1 -1010111101 2131.61 1 -1010111101 26088.97 1 -1010111101 3906.44 1 -1010111101 303.50 1 -1010111101 375.50 1 -1010111101 2367.9 1 -1010111101 senator. 1 -1010111101 2137.25 1 -1010111101 27733.10 1 -1010111101 shout. 1 -1010111101 382.79 1 -1010111101 1314.98 1 -1010111101 1858.4 1 -1010111101 352.70 1 -1010111101 385.19 1 -1010111101 303.44 1 -1010111101 158.37 1 -1010111101 542.5 1 -1010111101 300.64 1 -1010111101 2156.44 1 -1010111101 27982.54 1 -1010111101 299.56 1 -1010111101 156.98 1 -1010111101 2155.62 1 -1010111101 28013.67 1 -1010111101 546.50 1 -1010111101 758.50 1 -1010111101 1852.4 1 -1010111101 1501.7 1 -1010111101 300.95 1 -1010111101 156.94 1 -1010111101 1289.72 1 -1010111101 191,816 1 -1010111101 noncitizen 1 -1010111101 whites. 1 -1010111101 304.48 1 -1010111101 156.18 1 -1010111101 385.76 1 -1010111101 1512.5 1 -1010111101 2123.90 1 -1010111101 306.37 1 -1010111101 484.04 1 -1010111101 1293.72 1 -1010111101 2120.78 1 -1010111101 27421.49 1 -1010111101 304.38 1 -1010111101 158.87 1 -1010111101 122,468 1 -1010111101 27302.59 1 -1010111101 2111.24 1 -1010111101 304.95 1 -1010111101 158.85 1 -1010111101 387.23 1 -1010111101 1,486 1 -1010111101 294.04 1 -1010111101 294.63 1 -1010111101 154.09 1 -1010111101 1,683 1 -1010111101 347.50 1 -1010111101 1287.88 1 -1010111101 294.76 1 -1010111101 154.84 1 -1010111101 1277.30 1 -1010111101 less-than-masterpieces 1 -1010111101 289.40 1 -1010111101 28507.90 1 -1010111101 1874.80 1 -1010111101 381.78 1 -1010111101 take. 1 -1010111101 1589.5 1 -1010111101 157.08 1 -1010111101 349.19 1 -1010111101 1288.55 1 -1010111101 2150.29 1 -1010111101 27985.26 1 -1010111101 299.83 1 -1010111101 744.5 1 -1010111101 1271.13 1 -1010111101 27784.70 1 -1010111101 278.50 1 -1010111101 Hieselaar 1 -1010111101 1506.49 1 -1010111101 1278.4 1 -1010111101 267.89 1 -1010111101 24539.75 1 -1010111101 2134.26 1 -1010111101 1420 1 -1010111101 1265.9 1 -1010111101 1551.56 1 -1010111101 18623.95 1 -1010111101 1268.5 1 -1010111101 1546.91 1 -1010111101 24580.87 1 -1010111101 2146.4 1 -1010111101 616.24 1 -1010111101 2153.4 1 -1010111101 288.73 1 -1010111101 144.68 1 -1010111101 1532.26 1 -1010111101 163.61 1 -1010111101 2157.4 1 -1010111101 318.53 1 -1010111101 161.97 1 -1010111101 24433.65 1 -1010111101 1,766.65 1 -1010111101 142.39 1 -1010111101 1292.2 1 -1010111101 1507.51 1 -1010111101 1777.63 1 -1010111101 1980.2 1 -1010111101 161.41 1 -1010111101 248.21 1 -1010111101 159.05 1 -1010111101 1637.0 1 -1010111101 1566.03 1 -1010111101 1280.4 1 -1010111101 1568.51 1 -1010111101 restabilize 1 -1010111101 1860.72 1 -1010111101 142.87 1 -1010111101 1859.33 1 -1010111101 1611.5 1 -1010111101 265.36 1 -1010111101 142.57 1 -1010111101 1554.19 1 -1010111101 1275.5 1 -1010111101 225.17 1 -1010111101 162.72 1 -1010111101 266.78 1 -1010111101 143.59 1 -1010111101 monogamy. 1 -1010111101 blindfolds 1 -1010111101 1285.5 1 -1010111101 1553.54 1 -1010111101 18776.18 1 -1010111101 316.9 1 -1010111101 1284.7 1 -1010111101 1555.78 1 -1010111101 250.96 1 -1010111101 691,000 1 -1010111101 1547.13 1 -1010111101 320.0 1 -1010111101 1284.4 1 -1010111101 2149.96 1 -1010111101 1708.08 1 -1010111101 1731.60 1 -1010111101 19,550.21 1 -1010111101 1898.4 1 -1010111101 423.56 1 -1010111101 1828.6 1 -1010111101 1740.77 1 -1010111101 19,956.33 1 -1010111101 162.16 1 -1010111101 1742.12 1 -1010111101 1,805.61 1 -1010111101 1722.99 1 -1010111101 403.50 1 -1010111101 157.18 1 -1010111101 Russky-bashing 1 -1010111101 316.65 1 -1010111101 390.98 1 -1010111101 156.19 1 -1010111101 156.11 1 -1010111101 1417.51 1 -1010111101 26,209,590 1 -1010111101 4,045 1 -1010111101 1798.1 1 -1010111101 1731.73 1 -1010111101 understanding. 1 -1010111101 1812.1 1 -1010111101 1723.24 1 -1010111101 157.28 1 -1010111101 16,373 1 -1010111101 disenroll 1 -1010111101 1808.3 1 -1010111101 1758.34 1 -1010111101 20,048.35 1 -1010111101 20,072.09 1 -1010111101 397.18 1 -1010111101 1930.1 1 -1010111101 1762.87 1 -1010111101 317.66 1 -1010111101 417.03 1 -1010111101 162.76 1 -1010111101 1752.27 1 -1010111101 1961.5 1 -1010111101 violence. 1 -1010111101 1952.0 1 -1010111101 1736.72 1 -1010111101 Episcopalianism 1 -1010111101 161.38 1 -1010111101 161.12 1 -1010111101 157.58 1 -1010111101 1793.17 1 -1010111101 161.58 1 -1010111101 423.91 1 -1010111101 321.75 1 -1010111101 1895.8 1 -1010111101 1743.44 1 -1010111101 319.0 1 -1010111101 1878.6 1 -1010111101 3703.93 1 -1010111101 158.47 1 -1010111101 1733.75 1 -1010111101 1874.9 1 -1010111101 162.48 1 -1010111101 1710.57 1 -1010111101 159.56 1 -1010111101 1698.72 1 -1010111101 1898.1 1 -1010111101 1712.52 1 -1010111101 418.16 1 -1010111101 287.19 1 -1010111101 4890 1 -1010111101 2193.75 1 -1010111101 293.07 1 -1010111101 1940.2 1 -1010111101 23886.10 1 -1010111101 spectate 1 -1010111101 grandmothers-to-be 1 -1010111101 164.70 1 -1010111101 334.72 1 -1010111101 1955.7 1 -1010111101 417.43 1 -1010111101 162.23 1 -1010111101 24363.19 1 -1010111101 overtrade 1 -1010111101 2155.17 1 -1010111101 3410 1 -1010111101 2790 1 -1010111101 1680.5 1 -1010111101 20,563 1 -1010111101 46,195 1 -1010111101 1949.4 1 -1010111101 2141.19 1 -1010111101 234.79 1 -1010111101 1922.2 1 -1010111101 447.89 1 -1010111101 286.91 1 -1010111101 1670.4 1 -1010111101 24535.85 1 -1010111101 2179.78 1 -1010111101 219.24 1 -1010111101 2174.88 1 -1010111101 23,895.22 1 -1010111101 non-exercisers 1 -1010111101 GermaniaBank 1 -1010111101 421.91 1 -1010111101 2171.97 1 -1010111101 417.73 1 -1010111101 dollar-debt 1 -1010111101 162.86 1 -1010111101 221.74 1 -1010111101 166.47 1 -1010111101 163.22 1 -1010111101 23274.83 1 -1010111101 166.34 1 -1010111101 296.30 1 -1010111101 2065.1 1 -1010111101 453.0 1 -1010111101 1580.9 1 -1010111101 1,004.5 1 -1010111101 2077.9 1 -1010111101 3,672 1 -1010111101 24207.55 1 -1010111101 159.27 1 -1010111101 1986.6 1 -1010111101 23072.41 1 -1010111101 1304.21 1 -1010111101 2235.37 1 -1010111101 1968.6 1 -1010111101 24024.61 1 -1010111101 1658.7 1 -1010111101 24589.23 1 -1010111101 2022.1 1 -1010111101 2086.5 1 -1010111101 1005.5 1 -1010111101 2038.6 1 -1010111101 160.94 1 -1010111101 640,396 1 -1010111101 166.13 1 -1010111101 282.51 1 -1010111101 428.34 1 -1010111101 166.04 1 -1010111101 criticsm 1 -1010111101 1558.0 1 -1010111101 165.89 1 -1010111101 157.02 1 -1010111101 406.57 1 -1010111101 1577.1 1 -1010111101 8,520 1 -1010111101 157.93 1 -1010111101 170.20 1 -1010111101 166.76 1 -1010111101 24077.88 1 -1010111101 2122.1 1 -1010111101 1567.6 1 -1010111101 28,100 1 -1010111101 158.07 1 -1010111101 1623.0 1 -1010111101 1860.16 1 -1010111101 24,430 1 -1010111101 1869.51 1 -1010111101 170.77 1 -1010111101 170.50 1 -1010111101 1.5905 1 -1010111101 3110 1 -1010111101 23754.01 1 -1010111101 2073.34 1 -1010111101 wages. 1 -1010111101 290.40 1 -1010111101 164.56 1 -1010111101 168.37 1 -1010111101 2054.91 1 -1010111101 24651.44 1 -1010111101 2169.45 1 -1010111101 215.33 1 -1010111101 162.14 1 -1010111101 4040 1 -1010111101 4,010 1 -1010111101 1981.44 1 -1010111101 2032.54 1 -1010111101 165.76 1 -1010111101 161.03 1 -1010111101 1917.1 1 -1010111101 483.8 1 -1010111101 2017.24 1 -1010111101 7,674 1 -1010111101 Odetta 1 -1010111101 7,708 1 -1010111101 Transylvanians 1 -1010111101 1564.5 1 -1010111101 1942.07 1 -1010111101 168.35 1 -1010111101 Westerners. 1 -1010111101 785.50 1 -1010111101 281.80 1 -1010111101 287.20 1 -1010111101 1933.31 1 -1010111101 170.96 1 -1010111101 1558.6 1 -1010111101 1961.92 1 -1010111101 nontransferability 1 -1010111101 2178.79 1 -1010111101 2460 1 -1010111101 2189.7 1 -1010111101 1691.6 1 -1010111101 166.09 1 -1010111101 230.88 1 -1010111101 161.45 1 -1010111101 24298.98 1 -1010111101 3450 1 -1010111101 4030 1 -1010111101 2729.55 1 -1010111101 25379.88 1 -1010111101 421.67 1 -1010111101 167.38 1 -1010111101 167.13 1 -1010111101 168.24 1 -1010111101 229.79 1 -1010111101 armaments. 1 -1010111101 1752.2 1 -1010111101 1,656,671 1 -1010111101 225.81 1 -1010111101 1803.08 1 -1010111101 24,902.63 1 -1010111101 162.77 1 -1010111101 1730.7 1 -1010111101 1712.1 1 -1010111101 166.15 1 -1010111101 293.45 1 -1010111101 31,552 1 -1010111101 15,129 1 -1010111101 171,831 1 -1010111101 165.27 1 -1010111101 Rice-A-Roni 1 -1010111101 518.25 1 -1010111101 180.12 1 -1010111101 26655.07 1 -1010111101 1763.2 1 -1010111101 4,790 1 -1010111101 2139.47 1 -1010111101 181.21 1 -1010111101 341.50 1 -1010111101 2154.26 1 -1010111101 3797 1 -1010111101 368.00 1 -1010111101 2153.20 1 -1010111101 175.59 1 -1010111101 179.34 1 -1010111101 1586.4 1 -1010111101 2110.38 1 -1010111101 101.04 1 -1010111101 102.49 1 -1010111101 452.8 1 -1010111101 1774.5 1 -1010111101 25738.86 1 -1010111101 25756.44 1 -1010111101 1786.6 1 -1010111101 survive. 1 -1010111101 169.85 1 -1010111101 2255.67 1 -1010111101 25894.27 1 -1010111101 170.60 1 -1010111101 302.69 1 -1010111101 171.84 1 -1010111101 184.45 1 -1010111101 Guildford 1 -1010111101 1857.23 1 -1010111101 23035.81 1 -1010111101 MiG-21s 1 -1010111101 non-delegates 1 -1010111101 233.57 1 -1010111101 1,855.44 1 -1010111101 235.05 1 -1010111101 5,130 1 -1010111101 1879.21 1 -1010111101 23280.84 1 -1010111101 379.80 1 -1010111101 109.50 1 -1010111101 376.50 1 -1010111101 1844.55 1 -1010111101 22846.73 1 -1010111101 nonmembers. 1 -1010111101 318.72 1 -1010111101 312.68 1 -1010111101 628.50 1 -1010111101 1837.03 1 -1010111101 22819.42 1 -1010111101 1312.4 1 -1010111101 215.50 1 -1010111101 250.40 1 -1010111101 252.60 1 -1010111101 1845.39 1 -1010111101 314.22 1 -1010111101 309.36 1 -1010111101 1848.02 1 -1010111101 298.75 1 -1010111101 stall. 1 -1010111101 1857.54 1 -1010111101 22948.34 1 -1010111101 220.50 1 -1010111101 223.80 1 -1010111101 5,190 1 -1010111101 1578 1 -1010111101 1226.75 1 -1010111101 Rob. 1 -1010111101 1856.40 1 -1010111101 22885.70 1 -1010111101 1,842.24 1 -1010111101 116.57 1 -1010111101 375.10 1 -1010111101 1598.4 1 -1010111101 1279.3 1 -1010111101 1833.13 1 -1010111101 22586.52 1 -1010111101 165.31 1 -1010111101 110,330 1 -1010111101 59,650,000 1 -1010111101 Bermudan-flag 1 -1010111101 recommend. 1 -1010111101 20936.95 1 -1010111101 1571.4 1 -1010111101 263.80 1 -1010111101 1829.68 1 -1010111101 354.49 1 -1010111101 325.53 1 -1010111101 Photocarcinogenesis 1 -1010111101 1377.8 1 -1010111101 22977.75 1 -1010111101 1833.48 1 -1010111101 22826.97 1 -1010111101 326.85 1 -1010111101 Balcic 1 -1010111101 1844.26 1 -1010111101 22899.83 1 -1010111101 327.30 1 -1010111101 1825.46 1 -1010111101 1819.23 1 -1010111101 22693.85 1 -1010111101 165.96 1 -1010111101 meatcutters 1 -1010111101 1840.44 1 -1010111101 22956.84 1 -1010111101 1976-1986 1 -1010111101 1582.48 1 -1010111101 1372.5 1 -1010111101 148.39 1 -1010111101 folde-rol 1 -1010111101 149.31 1 -1010111101 1582.44 1 -1010111101 ex-Dodgers 1 -1010111101 1587.74 1 -1010111101 18842.37 1 -1010111101 110,661 1 -1010111101 1557.46 1 -1010111101 18544.05 1 -1010111101 1591.57 1 -1010111101 18784.27 1 -1010111101 1389.0 1 -1010111101 389.95 1 -1010111101 150.58 1 -1010111101 coleus 1 -1010111101 1568.90 1 -1010111101 287.73 1 -1010111101 386.40 1 -1010111101 149.14 1 -1010111101 1320.2 1 -1010111101 138.58 1 -1010111101 1308.6 1 -1010111101 278.86 1 -1010111101 372.49 1 -1010111101 21,734 1 -1010111101 1334.3 1 -1010111101 1593.62 1 -1010111101 1322.8 1 -1010111101 1575.31 1 -1010111101 1,746 1 -1010111101 L'Oiseau-Lyre 1 -1010111101 1775.9 1 -1010111101 1673.82 1 -1010111101 double-parking 1 -1010111101 pontification 1 -1010111101 30,634 1 -1010111101 endusers 1 -1010111101 153,064 1 -1010111101 1677.12 1 -1010111101 328.0 1 -1010111101 1761.6 1 -1010111101 1673.63 1 -1010111101 393.17 1 -1010111101 1697.69 1 -1010111101 155.85 1 -1010111101 1702.96 1 -1010111101 279,200 1 -1010111101 153.63 1 -1010111101 165.41 1 -1010111101 429.00 1 -1010111101 329.47 1 -1010111101 87,460 1 -1010111101 1406.9 1 -1010111101 1602 1 -1010111101 U.S.-newspaper 1 -1010111101 392.57 1 -1010111101 392.06 1 -1010111101 152.90 1 -1010111101 392.59 1 -1010111101 alliteration 1 -1010111101 333.0 1 -1010111101 1403.0 1 -1010111101 1639.53 1 -1010111101 19149.63 1 -1010111101 1397.0 1 -1010111101 1654.37 1 -1010111101 Apshai 1 -1010111101 2061.71 1 -1010111101 24967.73 1 -1010111101 1,727 1 -1010111101 2279.8 1 -1010111101 176.48 1 -1010111101 317.80 1 -1010111101 336.90 1 -1010111101 177.98 1 -1010111101 22,351 1 -1010111101 10,220 1 -1010111101 697.80 1 -1010111101 305.50 1 -1010111101 tie-breakers 1 -1010111101 2044.67 1 -1010111101 24844.84 1 -1010111101 1833.2 1 -1010111101 1821.45 1 -1010111101 2038.79 1 -1010111101 24912.42 1 -1010111101 1837.3 1 -1010111101 1973.7 1 -1010111101 1576.3 1 -1010111101 436.01 1 -1010111101 693.99 1 -1010111101 2051.22 1 -1010111101 24855.31 1 -1010111101 2304.5 1 -1010111101 2249.1 1 -1010111101 443.48 1 -1010111101 177.46 1 -1010111101 bargain-hunt 1 -1010111101 humpburger 1 -1010111101 2082.10 1 -1010111101 25204.09 1 -1010111101 313.92 1 -1010111101 1788.5 1 -1010111101 25,004.09 1 -1010111101 2052.49 1 -1010111101 24828.27 1 -1010111101 non-ambulatory 1 -1010111101 2065.57 1 -1010111101 24954.02 1 -1010111101 180.02 1 -1010111101 2048.96 1 -1010111101 24795.24 1 -1010111101 448.9 1 -1010111101 1196 1 -1010111101 1559.73 1 -1010111101 247.40 1 -1010111101 1566.66 1 -1010111101 140.72 1 -1010111101 1294.7 1 -1010111101 139.12 1 -1010111101 10,369 1 -1010111101 1557.41 1 -1010111101 18774.26 1 -1010111101 1556.37 1 -1010111101 18701.30 1 -1010111101 21,123.10 1 -1010111101 1817.26 1 -1010111101 21,105.85 1 -1010111101 1816.69 1 -1010111101 164.25 1 -1010111101 141.56 1 -1010111101 1279.6 1 -1010111101 1574.49 1 -1010111101 1276.1 1 -1010111101 1563.23 1 -1010111101 313.25 1 -1010111101 1272.1 1 -1010111101 1569.07 1 -1010111101 defect. 1 -1010111101 1270.6 1 -1010111101 1552.27 1 -1010111101 bodybuilders 1 -1010111101 2170.33 1 -1010111101 140.34 1 -1010111101 368.51 1 -1010111101 341.25 1 -1010111101 McSpaghetti 1 -1010111101 2164.43 1 -1010111101 296.96 1 -1010111101 467.19 1 -1010111101 442.92 1 -1010111101 34678.17 1 -1010111101 34607.41 1 -1010111101 10011.2 1 -1010111101 1926.94 1 -1010111101 299.99 1 -1010111101 317.96 1 -1010111101 344.97 1 -1010111101 2180.47 1 -1010111101 2185.77 1 -1010111101 27489.31 1 -1010111101 27412.25 1 -1010111101 1924.87 1 -1010111101 34699.28 1 -1010111101 141.63 1 -1010111101 34745.02 1 -1010111101 255.10 1 -1010111101 34857.60 1 -1010111101 1435.5 1 -1010111101 2202.83 1 -1010111101 466.75 1 -1010111101 441.64 1 -1010111101 292.79 1 -1010111101 251.35 1 -1010111101 462.85 1 -1010111101 2200.06 1 -1010111101 678,109 1 -1010111101 2182.22 1 -1010111101 27468.31 1 -1010111101 107,266 1 -1010111101 381.67 1 -1010111101 330.17 1 -1010111101 11-to-one 1 -1010111101 1387.1 1 -1010111101 23791.19 1 -1010111101 3,783 1 -1010111101 19,882 1 -1010111101 148.33 1 -1010111101 2,808 1 -1010111101 nonrenewal 1 -1010111101 466.92 1 -1010111101 444.01 1 -1010111101 399.26 1 -1010111101 469.33 1 -1010111101 24344.51 1 -1010111101 351.84 1 -1010111101 survivability. 1 -1010111101 237.50 1 -1010111101 2189.42 1 -1010111101 1,500-meters 1 -1010111101 301.45 1 -1010111101 148.93 1 -1010111101 34482.70 1 -1010111101 2,631,800 1 -1010111101 gweilos 1 -1010111101 364.76 1 -1010111101 386.15 1 -1010111101 348.80 1 -1010111101 18,388 1 -1010111101 1806.7 1 -1010111101 24,207.47 1 -1010111101 148.94 1 -1010111101 195.27 1 -1010111101 2176.38 1 -1010111101 1386.9 1 -1010111101 1981.70 1 -1010111101 462.97 1 -1010111101 534.74 1 -1010111101 553.72 1 -1010111101 weather-forecasting 1 -1010111101 681,862 1 -1010111101 132,754 1 -1010111101 54,248 1 -1010111101 302.54 1 -1010111101 34690.29 1 -1010111101 34470.58 1 -1010111101 194.47 1 -1010111101 2,577.92 1 -1010111101 8,530 1 -1010111101 1368.4 1 -1010111101 1718.5 1 -1010111101 1933.88 1 -1010111101 1443.2 1 -1010111101 210.40 1 -1010111101 238.70 1 -1010111101 509.50 1 -1010111101 242.40 1 -1010111101 1438.1 1 -1010111101 302.39 1 -1010111101 146.51 1 -1010111101 8527 1 -1010111101 144.24 1 -1010111101 488.56 1 -1010111101 464.33 1 -1010111101 302.46 1 -1010111101 147.83 1 -1010111101 379.14 1 -1010111101 372.80 1 -1010111101 34499.90 1 -1010111101 346.47 1 -1010111101 439.20 1 -1010111101 382.23 1 -1010111101 2213.08 1 -1010111101 237.90 1 -1010111101 explore. 1 -1010111101 350.50 1 -1010111101 325.91 1 -1010111101 1381.0 1 -1010111101 148.57 1 -1010111101 303.22 1 -1010111101 458.36 1 -1010111101 1882.75 1 -1010111101 259.52 1 -1010111101 321.06 1 -1010111101 430.77 1 -1010111101 456.97 1 -1010111101 301.94 1 -1010111101 339.95 1 -1010111101 190.38 1 -1010111101 377.70 1 -1010111101 191.84 1 -1010111101 1912.28 1 -1010111101 253.08 1 -1010111101 1232.44 1 -1010111101 299.08 1 -1010111101 434.98 1 -1010111101 532.83 1 -1010111101 459.37 1 -1010111101 298.29 1 -1010111101 150.34 1 -1010111101 2151.17 1 -1010111101 315.31 1 -1010111101 relieve. 1 -1010111101 pain/discomfort 1 -1010111101 run. 1 -1010111101 mid1984 1 -1010111101 1975.9 1 -1010111101 2644.02 1 -1010111101 34893.28 1 -1010111101 369.75 1 -1010111101 141.51 1 -1010111101 country-gone-to-meeting 1 -1010111101 365.55 1 -1010111101 397.92 1 -1010111101 1243.04 1 -1010111101 152.36 1 -1010111101 189.97 1 -1010111101 376.58 1 -1010111101 1881.71 1 -1010111101 27920.36 1 -1010111101 2199.92 1 -1010111101 49,047 1 -1010111101 375.86 1 -1010111101 190.11 1 -1010111101 1418.0 1 -1010111101 1767.3 1 -1010111101 1896.95 1 -1010111101 2182.53 1 -1010111101 Baby-Boomers 1 -1010111101 344.23 1 -1010111101 381.40 1 -1010111101 2185.18 1 -1010111101 363.8 1 -1010111101 2183.79 1 -1010111101 35079.63 1 -1010111101 2643.20 1 -1010111101 187.30 1 -1010111101 2,767,700 1 -1010111101 35114.35 1 -1010111101 2153.12 1 -1010111101 290.68 1 -1010111101 143.61 1 -1010111101 0.008080 1 -1010111101 elabore 1 -1010111101 2158.22 1 -1010111101 2152.39 1 -1010111101 533.62 1 -1010111101 eternity. 1 -1010111101 552.08 1 -1010111101 17,193 1 -1010111101 194.79 1 -1010111101 503.5 1 -1010111101 27508.77 1 -1010111101 2170.31 1 -1010111101 Cuba. 1 -1010111101 605,332 1 -1010111101 6,090,893 1 -1010111101 30,260,545 1 -1010111101 291.79 1 -1010111101 1910.81 1 -1010111101 1981.0 1 -1010111101 34710.81 1 -1010111101 169.37 1 -1010111101 2165.87 1 -1010111101 1977.9 1 -1010111101 zookeepers 1 -1010111101 449.12 1 -1010111101 non-partners 1 -1010111101 2128.58 1 -1010111101 294.19 1 -1010111101 overflights. 1 -1010111101 148.04 1 -1010111101 self-achievement 1 -1010111101 346.20 1 -1010111101 402.46 1 -1010111101 143.33 1 -1010111101 1925.83 1 -1010111101 292.06 1 -1010111101 2151.38 1 -1010111101 27428.24 1 -1010111101 moteliers-turned-developers 1 -1010111101 107.03 1 -1010111101 290.58 1 -1010111101 143.77 1 -1010111101 1489.3 1 -1010111101 34808.05 1 -1010111101 463.01 1 -1010111101 34951.62 1 -1010111101 367.29 1 -1010111101 458.31 1 -1010111101 380.09 1 -1010111101 358.49 1 -1010111101 391.92 1 -1010111101 widen. 1 -1010111101 446.47 1 -1010111101 111,380 1 -1010111101 105,307 1 -1010111101 67,374 1 -1010111101 439.44 1 -1010111101 39,346 1 -1010111101 349.53 1 -1010111101 lobby. 1 -1010111101 30,377 1 -1010111101 24,419 1 -1010111101 2121.64 1 -1010111101 144.94 1 -1010111101 186.10 1 -1010111101 1462.7 1 -1010111101 370.12 1 -1010111101 390.96 1 -1010111101 Bogie 1 -1010111101 382.43 1 -1010111101 193.30 1 -1010111101 34113.66 1 -1010111101 695.5 1 -1010111101 34217.55 1 -1010111101 2127.40 1 -1010111101 360.03 1 -1010111101 gobblers 1 -1010111101 3033.33 1 -1010111101 34732.21 1 -1010111101 378.48 1 -1010111101 34828.19 1 -1010111101 graffiti-writing 1 -1010111101 2077.84 1 -1010111101 1423.7 1 -1010111101 Europeanism 1 -1010111101 1405.6 1 -1010111101 383.19 1 -1010111101 34877.74 1 -1010111101 governer 1 -1010111101 2147.90 1 -1010111101 739.54 1 -1010111101 442.40 1 -1010111101 468.73 1 -1010111101 463.54 1 -1010111101 443.92 1 -1010111101 455.04 1 -1010111101 471.31 1 -1010111101 468.66 1 -1010111101 25320.72 1 -1010111101 1408.3 1 -1010111101 2078.07 1 -1010111101 ex-congressmen 1 -1010111101 discretion. 1 -1010111101 2097.29 1 -1010111101 ex-strongmen 1 -1010111101 388.77 1 -1010111101 1449.9 1 -1010111101 192.29 1 -1010111101 358.42 1 -1010111101 439.27 1 -1010111101 719.39 1 -1010111101 452.48 1 -1010111101 150.53 1 -1010111101 92.55 1 -1010111101 2074.52 1 -1010111101 philosopher-king 1 -1010111101 190.95 1 -1010111101 2104.33 1 -1010111101 stay. 1 -1010111101 34309.32 1 -1010111101 464.77 1 -1010111101 444.82 1 -1010111101 468.78 1 -1010111101 near-madness 1 -1010111101 1296.03 1 -1010111101 393.72 1 -1010111101 457.94 1 -1010111101 narcotraffic 1 -1010111101 372.01 1 -1010111101 363.65 1 -1010111101 394.38 1 -1010111101 allow. 1 -1010111101 470.42 1 -1010111101 1463.6 1 -1010111101 2106.20 1 -1010111101 2,781,000 1 -1010111101 855,171 1 -1010111101 468.57 1 -1010111101 445.92 1 -1010111101 127,549 1 -1010111101 nonconformists 1 -1010111101 3.0838 1 -1010111101 473.14 1 -1010111101 444.04 1 -1010111101 388.71 1 -1010111101 356.63 1 -1010111101 425.51 1 -1010111101 452.04 1 -1010111101 knowledge-intensity 1 -1010111101 34332.88 1 -1010111101 34314.50 1 -1010111101 193.88 1 -1010111101 382.82 1 -1010111101 471.86 1 -1010111101 448.65 1 -1010111101 468.68 1 -1010111101 388,312 1 -1010111101 2031.90 1 -1010111101 1382.6 1 -1010111101 26663.55 1 -1010111101 2155.29 1 -1010111101 34483.78 1 -1010111101 378.83 1 -1010111101 146.17 1 -1010111101 375.11 1 -1010111101 360.77 1 -1010111101 464.11 1 -1010111101 mega-cases 1 -1010111101 470.48 1 -1010111101 447.16 1 -1010111101 468.26 1 -1010111101 743.10 1 -1010111101 esq 1 -1010111101 34416.44 1 -1010111101 34441.95 1 -1010111101 2187.78 1 -1010111101 26993.64 1 -1010111101 2038.56 1 -1010111101 346.67 1 -1010111101 2173.80 1 -1010111101 2193.95 1 -1010111101 340.40 1 -1010111101 1996.24 1 -1010111101 27231.84 1 -1010111101 34548.96 1 -1010111101 357.45 1 -1010111101 320.60 1 -1010111101 190.22 1 -1010111101 unlearn 1 -1010111101 375.35 1 -1010111101 443.87 1 -1010111101 463.86 1 -1010111101 447.03 1 -1010111101 468.28 1 -1010111101 1786.8 1 -1010111101 471.34 1 -1010111101 383.99 1 -1010111101 2162.46 1 -1010111101 26859.00 1 -1010111101 2152.93 1 -1010111101 26828.16 1 -1010111101 29,290,579 1 -1010111101 sigificance 1 -1010111101 145.24 1 -1010111101 296.71 1 -1010111101 non-problems 1 -1010111101 358.41 1 -1010111101 355.63 1 -1010111101 383.96 1 -1010111101 2014.82 1 -1010111101 196.37 1 -1010111101 381.63 1 -1010111101 345.79 1 -1010111101 146.29 1 -1010111101 2136.02 1 -1010111101 1633.55 1 -1010111101 451.12 1 -1010111101 145.17 1 -1010111101 455.36 1 -1010111101 371.89 1 -1010111101 739.05 1 -1010111101 443.34 1 -1010111101 149.76 1 -1010111101 297.58 1 -1010111101 2150.1 1 -1010111101 191.38 1 -1010111101 387.17 1 -1010111101 2071.93 1 -1010111101 382.87 1 -1010111101 1782.4 1 -1010111101 credits. 1 -1010111101 375.81 1 -1010111101 448.77 1 -1010111101 bountyhunters 1 -1010111101 34898.46 1 -1010111101 17,288 1 -1010111101 34243.06 1 -1010111101 2142.93 1 -1010111101 worsen. 1 -1010111101 382.52 1 -1010111101 359.88 1 -1010111101 luxury. 1 -1010111101 303.69 1 -1010111101 235.96 1 -1010111101 152.47 1 -1010111101 366.07 1 -1010111101 23,555 1 -1010111101 2183.58 1 -1010111101 2045.92 1 -1010111101 26950.11 1 -1010111101 2182.02 1 -1010111101 12,629,143 1 -1010111101 153.19 1 -1010111101 394.56 1 -1010111101 272.55 1 -1010111101 265.02 1 -1010111101 299.38 1 -1010111101 32,673 1 -1010111101 150.28 1 -1010111101 60,545 1 -1010111101 minihockey 1 -1010111101 287,887 1 -1010111101 438.57 1 -1010111101 30,968 1 -1010111101 142.63 1 -1010111101 25050.47 1 -1010111101 2050.29 1 -1010111101 Comm 1 -1010111101 113,811 1 -1010111101 6,220 1 -1010111101 354.66 1 -1010111101 1779.7 1 -1010111101 2173.46 1 -1010111101 34198.10 1 -1010111101 148.54 1 -1010111101 26748.89 1 -1010111101 34472.54 1 -1010111101 2188.56 1 -1010111101 27856.42 1 -1010111101 457.14 1 -1010111101 354.74 1 -1010111101 192.41 1 -1010111101 crash-land 1 -1010111101 politics-as-usual 1 -1010111101 302.85 1 -1010111101 2195.84 1 -1010111101 28002.42 1 -1010111101 193.20 1 -1010111101 303.63 1 -1010111101 381.15 1 -1010111101 2228 1 -1010111101 376.56 1 -1010111101 eight. 1 -1010111101 1373.9 1 -1010111101 85,418 1 -1010111101 45,426 1 -1010111101 349.15 1 -1010111101 348.25 1 -1010111101 253.63 1 -1010111101 2364.7 1 -1010111101 2640.13 1 -1010111101 2147.26 1 -1010111101 27323.19 1 -1010111101 149.74 1 -1010111101 304.68 1 -1010111101 34830.53 1 -1010111101 304.64 1 -1010111101 27525.28 1 -1010111101 2155.08 1 -1010111101 385.79 1 -1010111101 323.81 1 -1010111101 1690.44 1 -1010111101 387.80 1 -1010111101 361.07 1 -1010111101 2253.10 1 -1010111101 306.50 1 -1010111101 153.54 1 -1010111101 2245.47 1 -1010111101 34822.71 1 -1010111101 2624.70 1 -1010111101 475.08 1 -1010111101 395.68 1 -1010111101 482.16 1 -1010111101 470.17 1 -1010111101 473.07 1 -1010111101 197.81 1 -1010111101 306.34 1 -1010111101 35589.32 1 -1010111101 362.14 1 -1010111101 35130.99 1 -1010111101 35622.97 1 -1010111101 2703.58 1 -1010111101 462.41 1 -1010111101 34835.42 1 -1010111101 217.80 1 -1010111101 27911.63 1 -1010111101 28,398.14 1 -1010111101 388.00 1 -1010111101 439.46 1 -1010111101 544.60 1 -1010111101 478.88 1 -1010111101 28274.39 1 -1010111101 2249.10 1 -1010111101 28326.31 1 -1010111101 153.52 1 -1010111101 1820.17 1 -1010111101 1434.5 1 -1010111101 432.61 1 -1010111101 34712.96 1 -1010111101 394.77 1 -1010111101 27662.12 1 -1010111101 2166.56 1 -1010111101 2140 1 -1010111101 1849.3 1 -1010111101 1483.3 1 -1010111101 transactions. 1 -1010111101 380.64 1 -1010111101 746.55 1 -1010111101 1,845 1 -1010111101 23,956 1 -1010111101 346.13 1 -1010111101 22628.20 1 -1010111101 1500.8 1 -1010111101 1818.43 1 -1010111101 291.50 1 -1010111101 258.30 1 -1010111101 229.20 1 -1010111101 255.20 1 -1010111101 1215.82 1 -1010111101 307.66 1 -1010111101 152.27 1 -1010111101 glitziness 1 -1010111101 152.76 1 -1010111101 269,958 1 -1010111101 150.90 1 -1010111101 308.20 1 -1010111101 wearwithwhat 1 -1010111101 1632.2 1 -1010111101 2837.79 1 -1010111101 2176.08 1 -1010111101 27676.14 1 -1010111101 1864.4 1 -1010111101 1496.0 1 -1010111101 256.50 1 -1010111101 354.94 1 -1010111101 1479.4 1 -1010111101 1707.89 1 -1010111101 6,657 1 -1010111101 27149.03 1 -1010111101 308.39 1 -1010111101 34633.99 1 -1010111101 2130.57 1 -1010111101 1480.8 1 -1010111101 1623.6 1 -1010111101 358.12 1 -1010111101 35747.11 1 -1010111101 1621.1 1 -1010111101 483.32 1 -1010111101 461.71 1 -1010111101 1820.03 1 -1010111101 2163.14 1 -1010111101 1497.9 1 -1010111101 87.90 1 -1010111101 fondled 1 -1010111101 28200.72 1 -1010111101 2203.87 1 -1010111101 147.81 1 -1010111101 294.96 1 -1010111101 27952.53 1 -1010111101 2197.37 1 -1010111101 293.01 1 -1010111101 2205.80 1 -1010111101 198.05 1 -1010111101 34700.55 1 -1010111101 34741.99 1 -1010111101 6,210 1 -1010111101 Fairview-Quiapo 1 -1010111101 2659.38 1 -1010111101 1598.9 1 -1010111101 35279.30 1 -1010111101 1860.70 1 -1010111101 147.49 1 -1010111101 1473.3 1 -1010111101 5,030 1 -1010111101 191.64 1 -1010111101 147.64 1 -1010111101 376.10 1 -1010111101 28291.11 1 -1010111101 2,944,449 1 -1010111101 293.21 1 -1010111101 376.82 1 -1010111101 Chrysler. 1 -1010111101 197.98 1 -1010111101 394.36 1 -1010111101 34779.81 1 -1010111101 34706.70 1 -1010111101 192.09 1 -1010111101 35441.50 1 -1010111101 35382.80 1 -1010111101 1890.2 1 -1010111101 1,989.33 1 -1010111101 292.00 1 -1010111101 35522.99 1 -1010111101 40,714 1 -1010111101 42,492 1 -1010111101 1633.1 1 -1010111101 1467.5 1 -1010111101 2171.31 1 -1010111101 27924.39 1 -1010111101 1110 1 -1010111101 1560 1 -1010111101 non-junkies 1 -1010111101 147.93 1 -1010111101 294.06 1 -1010111101 27975.35 1 -1010111101 MITI-watching 1 -1010111101 32,840,000 1 -1010111101 starboard 1 -1010111101 2107.40 1 -1010111101 152.52 1 -1010111101 304.23 1 -1010111101 speak. 1 -1010111101 1226.92 1 -1010111101 384.23 1 -1010111101 150.66 1 -1010111101 301.12 1 -1010111101 437.52 1 -1010111101 2220.29 1 -1010111101 27758.87 1 -1010111101 2222.96 1 -1010111101 28287.83 1 -1010111101 194.13 1 -1010111101 380.96 1 -1010111101 305.33 1 -1010111101 100.38 1 -1010111101 35356.78 1 -1010111101 1696.23 1 -1010111101 397.03 1 -1010111101 199.00 1 -1010111101 royalities 1 -1010111101 293.83 1 -1010111101 35352.96 1 -1010111101 463.5 1 -1010111101 24,167 1 -1010111101 52,239 1 -1010111101 146.58 1 -1010111101 Nirvana 1 -1010111101 393.02 1 -1010111101 457.42 1 -1010111101 196.84 1 -1010111101 378.95 1 -1010111101 478.19 1 -1010111101 2189.85 1 -1010111101 127,900 1 -1010111101 8,130 1 -1010111101 6,170 1 -1010111101 9,550 1 -1010111101 1822.9 1 -1010111101 2230.79 1 -1010111101 199.34 1 -1010111101 396.52 1 -1010111101 34656.18 1 -1010111101 emulate. 1 -1010111101 194.19 1 -1010111101 148.23 1 -1010111101 bring. 1 -1010111101 27682.39 1 -1010111101 Acronymophobia 1 -1010111101 378.51 1 -1010111101 345.36 1 -1010111101 1484.8 1 -1010111101 1843.4 1 -1010111101 STP 1 -1010111101 7,020 1 -1010111101 2189.43 1 -1010111101 296.74 1 -1010111101 475.82 1 -1010111101 473.57 1 -1010111101 485.73 1 -1010111101 claustrophobics 1 -1010111101 revile 1 -1010111101 375.48 1 -1010111101 191.78 1 -1010111101 1828.09 1 -1010111101 318.50 1 -1010111101 129.70 1 -1010111101 1494.9 1 -1010111101 370.23 1 -1010111101 1,141 1 -1010111101 306.62 1 -1010111101 packinghouses 1 -1010111101 460.83 1 -1010111101 1468.1 1 -1010111101 643.50 1 -1010111101 446.39 1 -1010111101 Czechoslavakia 1 -1010111101 self-determination. 1 -1010111101 fertilization. 1 -1010111101 308.59 1 -1010111101 14,129 1 -1010111101 268.50 1 -1010111101 1820.46 1 -1010111101 467.84 1 -1010111101 461.66 1 -1010111101 447.74 1 -1010111101 27860.78 1 -1010111101 27695.04 1 -1010111101 7,460 1 -1010111101 35061.38 1 -1010111101 308.82 1 -1010111101 27732.93 1 -1010111101 27865.79 1 -1010111101 35190.38 1 -1010111101 1800.36 1 -1010111101 460.38 1 -1010111101 429.74 1 -1010111101 460.79 1 -1010111101 309.25 1 -1010111101 35370.57 1 -1010111101 35498.83 1 -1010111101 2681.66 1 -1010111101 379.60 1 -1010111101 192.64 1 -1010111101 1483.2 1 -1010111101 394.66 1 -1010111101 SKr405 1 -1010111101 34974.69 1 -1010111101 1947.8 1 -1010111101 34905.49 1 -1010111101 amipriloe 1 -1010111101 27,494.83 1 -1010111101 308.42 1 -1010111101 .5153 1 -1010111101 graper 1 -1010111101 1856.9 1 -1010111101 1477.4 1 -1010111101 262.20 1 -1010111101 401.50 1 -1010111101 200.40 1 -1010111101 683.50 1 -1010111101 467.77 1 -1010111101 1591.65 1 -1010111101 5,890 1 -1010111101 345.10 1 -1010111101 383.04 1 -1010111101 307.15 1 -1010111101 154.67 1 -1010111101 308.78 1 -1010111101 154.52 1 -1010111101 4,180 1 -1010111101 1807.13 1 -1010111101 307.07 1 -1010111101 28213.17 1 -1010111101 2217.18 1 -1010111101 2219.98 1 -1010111101 28179.91 1 -1010111101 28036.54 1 -1010111101 2209.03 1 -1010111101 324,444 1 -1010111101 11,686 1 -1010111101 27,779 1 -1010111101 466.71 1 -1010111101 6483.89 1 -1010111101 38,644 1 -1010111101 460.43 1 -1010111101 371.55 1 -1010111101 3,946 1 -1010111101 1969.0 1 -1010111101 2675.22 1 -1010111101 35651.54 1 -1010111101 305.12 1 -1010111101 385.99 1 -1010111101 395.38 1 -1010111101 1609.03 1 -1010111101 153.29 1 -1010111101 306.88 1 -1010111101 28188.68 1 -1010111101 340.36 1 -1010111101 316.18 1 -1010111101 387.75 1 -1010111101 1860.1 1 -1010111101 208.30 1 -1010111101 460.94 1 -1010111101 461.97 1 -1010111101 35136.14 1 -1010111101 1979.0 1 -1010111101 1409.2 1 -1010111101 1815.23 1 -1010111101 1468.7 1 -1010111101 334.85 1 -1010111101 304.93 1 -1010111101 now-Sen 1 -1010111101 34674.65 1 -1010111101 425.68 1 -1010111101 1510.5 1 -1010111101 1876.8 1 -1010111101 526.50 1 -1010111101 452.82 1 -1010111101 3,140 1 -1010111101 1795.15 1 -1010111101 254.35 1 -1010111101 1140 1 -1010111101 1870.0 1 -1010111101 19,063 1 -1010111101 316.97 1 -1010111101 73.74 1 -1010111101 1775.80 1 -1010111101 reimplantation 1 -1010111101 34642.10 1 -1010111101 250.60 1 -1010111101 309.21 1 -1010111101 368.96 1 -1010111101 favor-seeking 1 -1010111101 339.41 1 -1010111101 311.45 1 -1010111101 1506.8 1 -1010111101 1877.2 1 -1010111101 308.95 1 -1010111101 482.50 1 -1010111101 308.58 1 -1010111101 raquetball 1 -1010111101 259.20 1 -1010111101 423.60 1 -1010111101 2410 1 -1010111101 459.72 1 -1010111101 488.66 1 -1010111101 459.99 1 -1010111101 429.62 1 -1010111101 1799.42 1 -1010111101 379.82 1 -1010111101 520.50 1 -1010111101 523.50 1 -1010111101 232.20 1 -1010111101 1858.5 1 -1010111101 3556.05 1 -1010111101 1954-1982 1 -1010111101 short-sell 1 -1010111101 338.52 1 -1010111101 151.62 1 -1010111101 307.31 1 -1010111101 452.05 1 -1010111101 1485.3 1 -1010111101 191.37 1 -1010111101 1854.8 1 -1010111101 27724.17 1 -1010111101 Zwingle 1 -1010111101 155.57 1 -1010111101 460.91 1 -1010111101 35774.31 1 -1010111101 379.00 1 -1010111101 459.04 1 -1010111101 simulcasting 1 -1010111101 buy. 1 -1010111101 326.30 2 -1010111101 445.8 2 -1010111101 165.39 2 -1010111101 380.94 2 -1010111101 2168.45 2 -1010111101 Iran. 2 -1010111101 698.50 2 -1010111101 35366.37 2 -1010111101 320.50 2 -1010111101 commment 2 -1010111101 1999.67 2 -1010111101 351.04 2 -1010111101 236.73 2 -1010111101 299.50 2 -1010111101 1924.73 2 -1010111101 2223.28 2 -1010111101 255.33 2 -1010111101 2326.15 2 -1010111101 445.31 2 -1010111101 147.55 2 -1010111101 359.98 2 -1010111101 21217.04 2 -1010111101 1912.82 2 -1010111101 467.05 2 -1010111101 periodontists 2 -1010111101 21,214.46 2 -1010111101 255.50 2 -1010111101 382.19 2 -1010111101 15,225 2 -1010111101 2291.57 2 -1010111101 290.52 2 -1010111101 6,160 2 -1010111101 304.15 2 -1010111101 6,610 2 -1010111101 25946.60 2 -1010111101 355.28 2 -1010111101 293.47 2 -1010111101 6,540 2 -1010111101 die. 2 -1010111101 2674.58 2 -1010111101 statute. 2 -1010111101 1629.2 2 -1010111101 2099.40 2 -1010111101 327.79 2 -1010111101 298.25 2 -1010111101 151.96 2 -1010111101 2085.17 2 -1010111101 386.81 2 -1010111101 388.53 2 -1010111101 152.87 2 -1010111101 296.34 2 -1010111101 296.57 2 -1010111101 453.5 2 -1010111101 248.25 2 -1010111101 2322.30 2 -1010111101 254.80 2 -1010111101 2109.17 2 -1010111101 439.6 2 -1010111101 379.50 2 -1010111101 390.53 2 -1010111101 321.50 2 -1010111101 2083.93 2 -1010111101 2687.97 2 -1010111101 5,170 2 -1010111101 255.5 2 -1010111101 Firsts 2 -1010111101 461.68 2 -1010111101 49-year-olds 2 -1010111101 1966.75 2 -1010111101 152.44 2 -1010111101 363.26 2 -1010111101 2037.52 2 -1010111101 27393.85 2 -1010111101 inventory-taking 2 -1010111101 328.33 2 -1010111101 307.05 2 -1010111101 22033.89 2 -1010111101 302.61 2 -1010111101 2080.01 2 -1010111101 2090.50 2 -1010111101 1956.44 2 -1010111101 1915.64 2 -1010111101 2086.59 2 -1010111101 2110.60 2 -1010111101 1867.2 2 -1010111101 159.01 2 -1010111101 2134.07 2 -1010111101 2683.99 2 -1010111101 re-arm 2 -1010111101 231.50 2 -1010111101 2133.18 2 -1010111101 151.33 2 -1010111101 388.86 2 -1010111101 264.10 2 -1010111101 286.30 2 -1010111101 367.79 2 -1010111101 151.04 2 -1010111101 2119.13 2 -1010111101 2570.17 2 -1010111101 389.00 2 -1010111101 380.70 2 -1010111101 6,530 2 -1010111101 337.50 2 -1010111101 153.02 2 -1010111101 21,514.73 2 -1010111101 3,510 2 -1010111101 Dukakis. 2 -1010111101 1494.3 2 -1010111101 280.00 2 -1010111101 265.79 2 -1010111101 346.55 2 -1010111101 377.74 2 -1010111101 2170.51 2 -1010111101 2112.91 2 -1010111101 480.10 2 -1010111101 2630 2 -1010111101 256.30 2 -1010111101 2425 2 -1010111101 2065.26 2 -1010111101 258.89 2 -1010111101 261.50 2 -1010111101 1980.60 2 -1010111101 186.50 2 -1010111101 370.42 2 -1010111101 breast-feed 2 -1010111101 2063.12 2 -1010111101 1932.93 2 -1010111101 1997.51 2 -1010111101 1508.71 2 -1010111101 2062.17 2 -1010111101 142.02 2 -1010111101 3650 2 -1010111101 2047.41 2 -1010111101 222.20 2 -1010111101 617.50 2 -1010111101 226.80 2 -1010111101 2,920 2 -1010111101 239.50 2 -1010111101 376.76 2 -1010111101 250.30 2 -1010111101 2066.15 2 -1010111101 1925.06 2 -1010111101 2067.64 2 -1010111101 305.16 2 -1010111101 381.58 2 -1010111101 297.96 2 -1010111101 356.93 2 -1010111101 2020.23 2 -1010111101 360.84 2 -1010111101 2409.76 2 -1010111101 297.70 2 -1010111101 306.95 2 -1010111101 2043.27 2 -1010111101 379.74 2 -1010111101 centuries. 2 -1010111101 2058.36 2 -1010111101 crapshooters 2 -1010111101 appendicitis 2 -1010111101 2439.73 2 -1010111101 24640.35 2 -1010111101 262.80 2 -1010111101 1582.2 2 -1010111101 419.63 2 -1010111101 v.p. 2 -1010111101 2280.97 2 -1010111101 345.87 2 -1010111101 2243.20 2 -1010111101 4,630 2 -1010111101 315.65 2 -1010111101 2485.33 2 -1010111101 2072.37 2 -1010111101 war. 2 -1010111101 2546.72 2 -1010111101 2013.93 2 -1010111101 318.66 2 -1010111101 377.84 2 -1010111101 148.21 2 -1010111101 gyotaku 2 -1010111101 2290 2 -1010111101 sadomasochism 2 -1010111101 378.67 2 -1010111101 2047.91 2 -1010111101 301.16 2 -1010111101 2175.77 2 -1010111101 375.27 2 -1010111101 232.88 3 -1010111101 282.38 3 -1010111101 2335.80 3 -1010111101 women. 3 -1010111101 2583.08 3 -1010111101 3,790 3 -1010111101 3,390 3 -1010111101 2272.52 3 -1010111101 2325.49 3 -1010111101 2,760 3 -1010111101 2690 3 -1010111101 1508.9 3 -1010111101 9,060 3 -1010111101 2360.94 3 -1010111101 croplands 3 -1010111101 2390.34 3 -1010111101 1871.3 3 -1010111101 2320.69 3 -1010111101 temporize 3 -1010111101 233.19 3 -1010111101 298.90 3 -1010111101 227.18 3 -1010111101 2040.29 3 -1010111101 1895.39 3 -1010111101 1899.20 3 -1010111101 2320 3 -1010111101 353.20 3 -1010111101 2065.79 3 -1010111101 leave. 3 -1010111101 2590.57 3 -1010111101 6,620 3 -1010111101 2108.46 3 -1010111101 non-scientists 3 -1010111101 2662.95 3 -1010111101 nought 3 -1010111101 2697.07 3 -1010111101 2107.10 3 -1010111101 2,310 3 -1010111101 2418.53 3 -1010111101 2420.85 3 -1010111101 263.50 3 -1010111101 252.50 3 -1010111101 223.06 3 -1010111101 374.64 3 -1010111101 250.50 3 -1010111101 4,510 3 -1010111101 3,880 3 -1010111101 Laughs 3 -1010111101 IDD/PSA 3 -1010111101 2071.83 3 -1010111101 2785.52 3 -1010111101 200.50 3 -1010111101 2041.43 3 -1010111101 2021.51 3 -1010111101 147.30 3 -1010111101 2173.36 3 -1010111101 quadriplegics 3 -1010111101 byte 3 -1010111101 264.50 3 -1010111101 2004.27 4 -1010111101 2694.99 4 -1010111101 2,610 4 -1010111101 2661.61 4 -1010111101 2679.63 4 -1010111101 2557.08 4 -1010111101 smithereens 4 -1010111101 2686.08 4 -1010111101 248.39 4 -1010111101 2117.89 4 -1010111101 2124.47 4 -1010111101 3,090 4 -1010111101 2743.36 4 -1010111101 24-year-olds 4 -1010111101 5,020 4 -1010111101 4,610 4 -1010111101 3,320 4 -1010111101 generis 4 -1010111101 3,160 4 -1010111101 258.40 4 -1010111101 2664.89 4 -1010111101 2679.52 4 -1010111101 3,360 4 -1010111101 1926.89 4 -1010111101 224.50 4 -1010111101 5,140 4 -1010111101 2785.33 4 -1010111101 Tots 4 -1010111101 2,290 4 -1010111101 2566.58 5 -1010111101 3,550 5 -1010111101 2,870 5 -1010111101 2,730 5 -1010111101 matrimony 5 -1010111101 2082.33 5 -1010111101 pollinate 5 -1010111101 3,480 5 -1010111101 1942.97 5 -1010111101 1,810 5 -1010111101 1951.09 5 -1010111101 comment. 5 -1010111101 1,090 5 -1010111101 1,910 5 -1010111101 260.50 5 -1010111101 3,440 5 -1010111101 4,420 5 -1010111101 2221.28 5 -1010111101 sonobuoys 6 -1010111101 3,190 6 -1010111101 2246.74 6 -1010111101 Sitnasuak 6 -1010111101 1793.93 6 -1010111101 1,890 6 -1010111101 2081.07 6 -1010111101 3,890 6 -1010111101 1,210 7 -1010111101 1,790 7 -1010111101 1985.41 7 -1010111101 2548.63 7 -1010111101 2,130 10 -1010111101 Enterprising 12 -1010111101 taxes. 14 -1010111101 naught 15 -1010111101 skimp 16 -1010111101 roost 23 -1010111101 posterity 26 -1010111101 elaboration 74 -1010111101 comment 14571 -1010111101 elaborate 2230 -1010111110 313.13 1 -1010111110 196,159 1 -1010111110 1915-16 1 -1010111110 re-mortgaging 1 -1010111110 312.49 1 -1010111110 318.22 1 -1010111110 suppliers. 1 -1010111110 double-A-minus/single-A-plus 1 -1010111110 A-1-plus/double-A-minus 1 -1010111110 28,736,600 1 -1010111110 reoccurring 1 -1010111110 239.58 1 -1010111110 parade-goers 1 -1010111110 within. 1 -1010111110 133,838 1 -1010111110 unsurvivable 1 -1010111110 6.8975 1 -1010111110 expatriated 1 -1010111110 804,875 1 -1010111110 1.67059 1 -1010111110 2.9959 1 -1010111110 contract-maintenance 1 -1010111110 pollutions 1 -1010111110 1,022,900 1 -1010111110 360.21 1 -1010111110 COLLECTIONS 1 -1010111110 A-plus-rated 1 -1010111110 single-A3 1 -1010111110 530,409 1 -1010111110 301,021 1 -1010111110 2,872,093 1 -1010111110 2.9188 1 -1010111110 26,718,000 1 -1010111110 13,451,000 1 -1010111110 non-initiates 1 -1010111110 triple-B-minus/single-A-3 1 -1010111110 owningggks 1 -1010111110 1411 1 -1010111110 single-A-3/triple-B-minus 1 -1010111110 65,196 1 -1010111110 decors 1 -1010111110 2.9719 1 -1010111110 7,893 1 -1010111110 VRT 1 -1010111110 5,161 1 -1010111110 deliquencies 1 -1010111110 single-A/single-A-1 1 -1010111110 3,311,000 1 -1010111110 who-knows-where 1 -1010111110 133.71 1 -1010111110 89days 1 -1010111110 Kampuchea 1 -1010111110 257,905 1 -1010111110 sasparilla 1 -1010111110 49,976 1 -1010111110 1983-88 1 -1010111110 119days 1 -1010111110 19,584 1 -1010111110 155,536 1 -1010111110 finetune 1 -1010111110 Nuits-St 1 -1010111110 double-A-three 1 -1010111110 179-days 1 -1010111110 penetrated. 1 -1010111110 8,093,847 1 -1010111110 310,261 1 -1010111110 Nae 1 -1010111110 jadeite 1 -1010111110 3,069 1 -1010111110 matins 1 -1010111110 2,866 1 -1010111110 NASAA 1 -1010111110 Trans-Am 1 -1010111110 boatpeople 1 -1010111110 triple-B-minus-A3 1 -1010111110 triple-B-A3 1 -1010111110 43,938 1 -1010111110 provisional-double-A-2 1 -1010111110 789,985 1 -1010111110 tear-gas-filled 1 -1010111110 152.79 1 -1010111110 46,298,980 1 -1010111110 mediocrities 1 -1010111110 card-switching 1 -1010111110 2,435 1 -1010111110 78,006 1 -1010111110 overspends 1 -1010111110 2,571,072 1 -1010111110 306,592 1 -1010111110 3,355 1 -1010111110 overeagerness 1 -1010111110 invention. 1 -1010111110 beflagged 1 -1010111110 loss-cutting 1 -1010111110 527,584 1 -1010111110 1,701,197 1 -1010111110 2,269,053 1 -1010111110 123.95 1 -1010111110 257.13 1 -1010111110 hunch-proof 1 -1010111110 128,983 1 -1010111110 0.07563 1 -1010111110 price-bargain 1 -1010111110 anti-conspiracy 1 -1010111110 163.00 1 -1010111110 19,656 1 -1010111110 95,073 1 -1010111110 he-knows-not-where 1 -1010111110 162.65 1 -1010111110 stenography 1 -1010111110 159,437 1 -1010111110 162.67 1 -1010111110 home-comers 1 -1010111110 281.16 1 -1010111110 160.36 1 -1010111110 Condorcet 1 -1010111110 liablity 1 -1010111110 inestimably 1 -1010111110 2,685 1 -1010111110 nonevents 1 -1010111110 64,274 1 -1010111110 tourists-turned-believers 1 -1010111110 2.8263 1 -1010111110 non-suspects 1 -1010111110 bat-lovers 1 -1010111110 1.5355 1 -1010111110 153.60 1 -1010111110 lout 1 -1010111110 Fibich 1 -1010111110 17,597,630 1 -1010111110 20-1 1 -1010111110 25,864 1 -1010111110 1.4713 1 -1010111110 21,515 1 -1010111110 1947-70 1 -1010111110 government-aid 1 -1010111110 1963-83 1 -1010111110 Momentus 1 -1010111110 18,971 1 -1010111110 under-invoice 1 -1010111110 Aa-3 1 -1010111110 triple-Bplus 1 -1010111110 4320 1 -1010111110 1.4508 1 -1010111110 inexhaustable 1 -1010111110 2.9016 1 -1010111110 3,319 1 -1010111110 273,192 1 -1010111110 356-62 1 -1010111110 541,039 1 -1010111110 42,433 1 -1010111110 35-15 1 -1010111110 34-2 1 -1010111110 1.5130 1 -1010111110 1.8163 1 -1010111110 22,817 1 -1010111110 acupuncture-wares 1 -1010111110 overexploitation 1 -1010111110 17,709 1 -1010111110 11,210 1 -1010111110 81.727 1 -1010111110 2.9416 1 -1010111110 1888-1892 1 -1010111110 15,236 1 -1010111110 Masonville 1 -1010111110 sactions 1 -1010111110 clock-watching 1 -1010111110 Psychotic 1 -1010111110 parleys. 1 -1010111110 once-iron 1 -1010111110 1,786,300 1 -1010111110 35,887 1 -1010111110 25,732 1 -1010111110 50,677 1 -1010111110 266,312 1 -1010111110 A-plus-plus 1 -1010111110 278,016 1 -1010111110 eminase 1 -1010111110 equal-work 1 -1010111110 gate-crashers 1 -1010111110 1.4998 1 -1010111110 2.9976 1 -1010111110 1,100,757 1 -1010111110 250,279 1 -1010111110 5.6005 1 -1010111110 FuelCo 1 -1010111110 rinkside 1 -1010111110 123.38 1 -1010111110 video-retailers 1 -1010111110 91,600 1 -1010111110 337.87 1 -1010111110 977,000 1 -1010111110 2.9635 1 -1010111110 reviw 1 -1010111110 328.67 1 -1010111110 kolkhozes 1 -1010111110 785.69 1 -1010111110 1.6208 1 -1010111110 329,930 1 -1010111110 606,388 1 -1010111110 279,775 1 -1010111110 91,113 1 -1010111110 43,654 1 -1010111110 741,013 1 -1010111110 visitations 1 -1010111110 158.55 1 -1010111110 95,588 1 -1010111110 51,411 1 -1010111110 1.5333 1 -1010111110 revilement 1 -1010111110 2,002,800 1 -1010111110 TRIL 1 -1010111110 2,217,700 1 -1010111110 877,500 1 -1010111110 1.5148 1 -1010111110 71,887 1 -1010111110 Prime2 1 -1010111110 padres 1 -1010111110 24-4 1 -1010111110 1.6593 1 -1010111110 uncuttable 1 -1010111110 867,059 1 -1010111110 molt 1 -1010111110 enthusiatically 1 -1010111110 1615-1868 1 -1010111110 viselike 1 -1010111110 unadoptable 1 -1010111110 Danette 1 -1010111110 brownbagging 1 -1010111110 KIXI-AM 1 -1010111110 Bahamasair 1 -1010111110 3.1902 1 -1010111110 hump-top 1 -1010111110 3,239,025 1 -1010111110 3.1681 1 -1010111110 195.45 1 -1010111110 unpleasant-nausea 1 -1010111110 anti-liberty 1 -1010111110 psycho-sclerosis 1 -1010111110 72,883 1 -1010111110 107,099 1 -1010111110 24,075 1 -1010111110 489.85 1 -1010111110 A-1-plus/double-A 1 -1010111110 128:1 1 -1010111110 2,545,117 1 -1010111110 GMIC 1 -1010111110 1,257,799 1 -1010111110 241,095 1 -1010111110 445.99 1 -1010111110 226.67 1 -1010111110 6,882 1 -1010111110 455,700 1 -1010111110 316,082 1 -1010111110 28,595 1 -1010111110 MIG-2 1 -1010111110 Sunnism 1 -1010111110 68,885 1 -1010111110 33,838 1 -1010111110 341.19 1 -1010111110 33,402 1 -1010111110 33,212 1 -1010111110 6,816 1 -1010111110 1.9125 1 -1010111110 1,376 1 -1010111110 56,917 1 -1010111110 76.23 1 -1010111110 29,452,000 1 -1010111110 facts. 1 -1010111110 less-than-prime 1 -1010111110 AA-plus 1 -1010111110 6,308 1 -1010111110 3,515 1 -1010111110 102.476 1 -1010111110 sportcoats 1 -1010111110 Natiguas 1 -1010111110 defacers 1 -1010111110 U.S.investors 1 -1010111110 61,616 1 -1010111110 40,083 1 -1010111110 retructure 1 -1010111110 alpaca 1 -1010111110 769,100 1 -1010111110 single-A-plus/A-1-plus 1 -1010111110 3.856 1 -1010111110 revenue-estimating 1 -1010111110 34049.65 1 -1010111110 Ovid 1 -1010111110 362.47 1 -1010111110 ponderousness 1 -1010111110 1945-1971 1 -1010111110 3.0982 1 -1010111110 18,108 1 -1010111110 34,685 1 -1010111110 Double-B/B 1 -1010111110 Single-B-plus 1 -1010111110 Single-B-minus 1 -1010111110 Triple-C-plus 1 -1010111110 Single-B 1 -1010111110 Pliocene 1 -1010111110 234.26 1 -1010111110 97,687 1 -1010111110 MIG-2/SP1 1 -1010111110 19731982 1 -1010111110 657.50 1 -1010111110 309,426 1 -1010111110 321,800 1 -1010111110 3.1202 1 -1010111110 10-inches 1 -1010111110 Fukien 1 -1010111110 5.4-to-1 1 -1010111110 recidivists 1 -1010111110 4.5-to-1 1 -1010111110 2:34 1 -1010111110 1.3643 1 -1010111110 4095.61 1 -1010111110 Sggmd 1 -1010111110 council-members 1 -1010111110 Protege 1 -1010111110 324.50 1 -1010111110 double-A1/double-A 1 -1010111110 nature. 1 -1010111110 34,305 1 -1010111110 1.2885 1 -1010111110 FRUSTRATIONS 1 -1010111110 493,201 1 -1010111110 Salonica 1 -1010111110 315,332 1 -1010111110 776,498 1 -1010111110 single-A/single-A-minus 1 -1010111110 clearnace 1 -1010111110 238-189 1 -1010111110 21,439 1 -1010111110 46,184 1 -1010111110 40,434 1 -1010111110 6,434 1 -1010111110 re-infestation 1 -1010111110 nutrition- 1 -1010111110 MIG-1/SP-1-plus 1 -1010111110 clampdowns 1 -1010111110 1.6065 1 -1010111110 19,171,000 1 -1010111110 4,957,897 1 -1010111110 single-A-2/single-A 1 -1010111110 signage 1 -1010111110 9,992 1 -1010111110 solid-brass 1 -1010111110 auto-transfusions 1 -1010111110 Portables 1 -1010111110 Aug.1 1 -1010111110 single-A-1/single-A-plus 1 -1010111110 Single-A-Plus 1 -1010111110 insomnia-inducing 1 -1010111110 233.74 1 -1010111110 Aghanistan 1 -1010111110 13,400,000 1 -1010111110 699,947 2 -1010111110 654,787 2 -1010111110 2,086,600 2 -1010111110 1,992,800 2 -1010111110 Baa1 2 -1010111110 single-A-1/double-A-minus 2 -1010111110 sexcapade 2 -1010111110 3,289,800 2 -1010111110 707,619 2 -1010111110 671,894 2 -1010111110 3,566,300 2 -1010111110 1,817 2 -1010111110 2,922,400 2 -1010111110 single-A/single-A-plus 2 -1010111110 1,997 2 -1010111110 1,655 2 -1010111110 1.4930 2 -1010111110 ELXSF 2 -1010111110 single-A-minus/single-A-2 2 -1010111110 single-A-plus/single-A-1 2 -1010111110 single-A-1/single-A 2 -1010111110 802,598 2 -1010111110 842,238 2 -1010111110 shrillness 2 -1010111110 Eskom 2 -1010111110 Single-B-3 2 -1010111110 raunch 2 -1010111110 2,627 2 -1010111110 815,028 2 -1010111110 864,182 2 -1010111110 A3 2 -1010111110 tripleC-plus 2 -1010111110 spotchecks 2 -1010111110 Andechs 2 -1010111110 Libourne 2 -1010111110 dervish 2 -1010111110 1,685,100 2 -1010111110 37,524 2 -1010111110 single-A-one 2 -1010111110 2,918 2 -1010111110 kumquats 2 -1010111110 appetizers 2 -1010111110 cross-buying 2 -1010111110 98.35 2 -1010111110 2,832,400 2 -1010111110 estimate-slashing 2 -1010111110 killjoys 2 -1010111110 double-A/double-A 2 -1010111110 2,049,700 2 -1010111110 88,394 2 -1010111110 Chaps 2 -1010111110 shipwrecks 2 -1010111110 ScotTowels 2 -1010111110 double-B-plus/single-B 2 -1010111110 triple-B-minus/A-3 2 -1010111110 triple-B/A-2 2 -1010111110 Eldrich-Flavel 2 -1010111110 2,338,600 2 -1010111110 double-A/double-A-minus 2 -1010111110 2.9106 2 -1010111110 1509 2 -1010111110 single-A2 2 -1010111110 Triple-B 2 -1010111110 give-aways 2 -1010111110 2,111,700 2 -1010111110 1174 2 -1010111110 2,369,600 2 -1010111110 double-B/single-B 2 -1010111110 P-1 3 -1010111110 double-A/A-1-plus 3 -1010111110 single-A-minus/A-2 3 -1010111110 coldheartedness 3 -1010111110 tripleA 3 -1010111110 single-Aminus 3 -1010111110 suds 3 -1010111110 A2 3 -1010111110 Single-A-plus 3 -1010111110 single-A1 3 -1010111110 B3 3 -1010111110 2450 3 -1010111110 Ba2 3 -1010111110 cleanings 3 -1010111110 moralize 3 -1010111110 SP1-Plus 3 -1010111110 Guinea-Bissau 3 -1010111110 NGK 3 -1010111110 strangulation 3 -1010111110 fro 3 -1010111110 Single-A 3 -1010111110 Single-A-3 3 -1010111110 payments-in-kind 3 -1010111110 Edon 3 -1010111110 triple-Bminus 3 -1010111110 Single-A-2 4 -1010111110 SP-1-plus 4 -1010111110 OCS 4 -1010111110 non-payment 4 -1010111110 PG-13 4 -1010111110 vinegars 4 -1010111110 cameos 4 -1010111110 inoculations 4 -1010111110 not-prime 4 -1010111110 Baa3 4 -1010111110 double-A/single-A-plus 4 -1010111110 Buchenwald 5 -1010111110 double-A-minus/A-1-plus 5 -1010111110 Baa2 5 -1010111110 ukase 5 -1010111110 B2 6 -1010111110 single-A-plus/A-1 7 -1010111110 apportionment 7 -1010111110 deliverance 7 -1010111110 Triple-A 8 -1010111110 B-minus 8 -1010111110 thence 9 -1010111110 B-plus 9 -1010111110 single-A/A-1 9 -1010111110 prime-3 10 -1010111110 MIG-1 13 -1010111110 B-3 14 -1010111110 Baa 15 -1010111110 afar 19 -1010111110 single-D 20 -1010111110 prime-2 20 -1010111110 single-A-1-plus 22 -1010111110 double-C 22 -1010111110 prime-1 28 -1010111110 desist 30 -1010111110 A-3 34 -1010111110 triple-C-minus 37 -1010111110 Prime-3 39 -1010111110 Ca 42 -1010111110 A-1-plus 52 -1010111110 single-C 53 -1010111110 triple-C-plus 67 -1010111110 double-A-plus 68 -1010111110 Prime-1 77 -1010111110 double-B 79 -1010111110 triple-C 88 -1010111110 double-A-1 98 -1010111110 A-1 100 -1010111110 A-2 108 -1010111110 Prime-2 112 -1010111110 Caa 115 -1010111110 double-B-minus 119 -1010111110 double-A-2 120 -1010111110 double-B-plus 138 -1010111110 Ba-2 140 -1010111110 Ba-1 141 -1010111110 Ba-3 147 -1010111110 single-B-plus 147 -1010111110 single-B-2 149 -1010111110 single-B-minus 157 -1010111110 single-B-1 157 -1010111110 single-B-3 159 -1010111110 single-B 162 -1010111110 double-A-3 172 -1010111110 reelection 178 -1010111110 triple-B-minus 181 -1010111110 triple-B-plus 191 -1010111110 double-A-minus 227 -1010111110 single-A-minus 228 -1010111110 single-A-plus 229 -1010111110 single-A-3 231 -1010111110 triple-B 232 -1010111110 Baa-3 246 -1010111110 Baa-1 262 -1010111110 Baa-2 271 -1010111110 ratification 285 -1010111110 single-A-2 303 -1010111110 double-A 318 -1010111110 single-A-1 335 -1010111110 single-A 344 -1010111110 re-election 398 -1010111110 triple-A 466 -1010111110 authorization 476 -1010111110 approvals 552 -1010111110 clearance 879 -1010111110 approval 7207 -1010111110 permission 962 -1010111111 10,382 1 -1010111111 1314.4 1 -1010111111 23,282.18 1 -1010111111 1689.1 1 -1010111111 1335.2 1 -1010111111 1866.11 1 -1010111111 23077.91 1 -1010111111 22,856.02 1 -1010111111 99.818 1 -1010111111 2293.2 1 -1010111111 25750.55 1 -1010111111 1758.3 1 -1010111111 2266.1 1 -1010111111 615.73 1 -1010111111 132.78 1 -1010111111 1308.2 1 -1010111111 23052.23 1 -1010111111 2194.18 1 -1010111111 121.59 1 -1010111111 22410.54 1 -1010111111 22344.28 1 -1010111111 1663.7 1 -1010111111 322.37 1 -1010111111 1684.7 1 -1010111111 1325.6 1 -1010111111 22468.68 1 -1010111111 22615.43 1 -1010111111 35-1 1 -1010111111 1657.7 1 -1010111111 1309.4 1 -1010111111 22705.56 1 -1010111111 1639.1 1 -1010111111 1859.90 1 -1010111111 22668.80 1 -1010111111 12:51 1 -1010111111 11:43 1 -1010111111 3482 1 -1010111111 135.51 1 -1010111111 135.65 1 -1010111111 11:28 1 -1010111111 11:12 1 -1010111111 146.92 1 -1010111111 147.52 1 -1010111111 4,590 1 -1010111111 24252.38 1 -1010111111 99.822 1 -1010111111 Karonie 1 -1010111111 829,749 1 -1010111111 241.78 1 -1010111111 Grafenwoehr 1 -1010111111 99.9925 1 -1010111111 1800.0 1 -1010111111 Tarbela 1 -1010111111 2020.4 1 -1010111111 5:35 1 -1010111111 98.622 1 -1010111111 145.97 1 -1010111111 pre-amble 1 -1010111111 144.88 1 -1010111111 146.32 1 -1010111111 1737.0 1 -1010111111 4,770 1 -1010111111 99.841 1 -1010111111 98.9666 1 -1010111111 cheercropper 1 -1010111111 147.13 1 -1010111111 154.15 1 -1010111111 99.94 1 -1010111111 1790.7 1 -1010111111 2291.3 1 -1010111111 24902.72 1 -1010111111 1784.6 1 -1010111111 4,490 1 -1010111111 1427.32 1 -1010111111 Halethorpe 1 -1010111111 146.22 1 -1010111111 342.93 1 -1010111111 99.588 1 -1010111111 324.93 1 -1010111111 22278.16 1 -1010111111 140.95 1 -1010111111 1396.8 1 -1010111111 2462.14 1 -1010111111 Schweizerhalle 1 -1010111111 23201.22 1 -1010111111 2122.98 1 -1010111111 142.27 1 -1010111111 1.4693 1 -1010111111 141.32 1 -1010111111 1682.0 1 -1010111111 1303.4 1 -1010111111 2204.52 1 -1010111111 22,696.49 1 -1010111111 99.859 1 -1010111111 138.57 1 -1010111111 99.842 1 -1010111111 138.10 1 -1010111111 2362.16 1 -1010111111 2370.16 1 -1010111111 Alanno 1 -1010111111 22280.22 1 -1010111111 22577.53 1 -1010111111 1703.3 1 -1010111111 22932.40 1 -1010111111 358.53 1 -1010111111 1,100,628 1 -1010111111 140.45 1 -1010111111 Cerepfi 1 -1010111111 2053.3 1 -1010111111 25586.67 1 -1010111111 1645.8 1 -1010111111 23872.80 1 -1010111111 540.90 1 -1010111111 26,651.58 1 -1010111111 mega-profits 1 -1010111111 yaktivist 1 -1010111111 5,240 1 -1010111111 99.717 1 -1010111111 99.922 1 -1010111111 94.60 1 -1010111111 Volgodonsk 1 -1010111111 1435.3 1 -1010111111 24810.18 1 -1010111111 244.50 1 -1010111111 258.25 1 -1010111111 144.22 1 -1010111111 4,059.75 1 -1010111111 23,286.94 1 -1010111111 24678.31 1 -1010111111 1246.9 1 -1010111111 21686.46 1 -1010111111 Giverny 1 -1010111111 pondificator 1 -1010111111 99.562 1 -1010111111 134.10 1 -1010111111 1586.9 1 -1010111111 22448.25 1 -1010111111 telegrim 1 -1010111111 136.45 1 -1010111111 135.87 1 -1010111111 136.55 1 -1010111111 Mitigate 1 -1010111111 99.847 1 -1010111111 23106.07 1 -1010111111 137.07 1 -1010111111 137.50 1 -1010111111 1358.3 1 -1010111111 23122.11 1 -1010111111 137.05 1 -1010111111 1342.7 1 -1010111111 1914.87 1 -1010111111 23358.60 1 -1010111111 22629.65 1 -1010111111 1638.8 1 -1010111111 1287.9 1 -1010111111 1274.0 1 -1010111111 22637.01 1 -1010111111 2113.67 1 -1010111111 1620.8 1 -1010111111 Mervyns 1 -1010111111 134.45 1 -1010111111 134.77 1 -1010111111 326.39 1 -1010111111 1255.6 1 -1010111111 23060.53 1 -1010111111 2104.6 1 -1010111111 2290.1 1 -1010111111 graduation. 1 -1010111111 79.77 1 -1010111111 2286.1 1 -1010111111 4190 1 -1010111111 1270 1 -1010111111 5180 1 -1010111111 5460 1 -1010111111 145.65 1 -1010111111 0.6855 1 -1010111111 330.3 1 -1010111111 99.612 1 -1010111111 2295.4 1 -1010111111 148.70 1 -1010111111 streetside 1 -1010111111 788.05 1 -1010111111 286.95 1 -1010111111 2041.49 1 -1010111111 1726.9 1 -1010111111 2226.2 1 -1010111111 Rezaie 1 -1010111111 2261.4 1 -1010111111 Heverlee 1 -1010111111 Abiquiu 1 -1010111111 .5489 1 -1010111111 25282.97 1 -1010111111 56,971,000 1 -1010111111 99.731 1 -1010111111 clem'-atis 1 -1010111111 mom-and-pops 1 -1010111111 150.95 1 -1010111111 crewsade 1 -1010111111 151.83 1 -1010111111 Al-Fujairah 1 -1010111111 2242.2 1 -1010111111 4,960 1 -1010111111 866-POPE 1 -1010111111 1844.91 1 -1010111111 2245.8 1 -1010111111 25968.78 1 -1010111111 1851.86 1 -1010111111 22993.70 1 -1010111111 22832.89 1 -1010111111 1.6386 1 -1010111111 375.85 1 -1010111111 231.85 1 -1010111111 1,842.34 1 -1010111111 1590.3 1 -1010111111 1266.9 1 -1010111111 Plan-Econ 1 -1010111111 225.68 1 -1010111111 22447.67 1 -1010111111 Charlecote 1 -1010111111 Knowsley 1 -1010111111 1579.9 1 -1010111111 138-to-140 1 -1010111111 1700.2 1 -1010111111 2185.3 1 -1010111111 chickmate 1 -1010111111 2205.8 1 -1010111111 9-midnight 1 -1010111111 99.472 1 -1010111111 2197.6 1 -1010111111 47.815 1 -1010111111 54.741 1 -1010111111 CCF 1 -1010111111 100.12 1 -1010111111 4,970 1 -1010111111 6,140 1 -1010111111 2248.1 1 -1010111111 Azle 1 -1010111111 571,944 1 -1010111111 4520 1 -1010111111 4200 1 -1010111111 245.58 1 -1010111111 151.27 1 -1010111111 1916.9 1 -1010111111 2428.7 1 -1010111111 Gullane 1 -1010111111 68.701 1 -1010111111 99.5625 1 -1010111111 148.95 1 -1010111111 148.35 1 -1010111111 174.58 1 -1010111111 doormutt 1 -1010111111 3940 1 -1010111111 5700 1 -1010111111 109.786 1 -1010111111 4010 1 -1010111111 2490 1 -1010111111 beefcase 1 -1010111111 22.63 1 -1010111111 245.18 1 -1010111111 middecade 1 -1010111111 1889.6 1 -1010111111 4220 1 -1010111111 1390 1 -1010111111 99.934 1 -1010111111 173.15 1 -1010111111 150.60 1 -1010111111 149.16 1 -1010111111 1846.1 1 -1010111111 23816.09 1 -1010111111 99.813 1 -1010111111 2385.0 1 -1010111111 2356.9 1 -1010111111 doubleheaders 1 -1010111111 Crystal-Barkley 1 -1010111111 633.99 1 -1010111111 2212 1 -1010111111 1146.5 1 -1010111111 Wanping 1 -1010111111 2,056 1 -1010111111 17,550 1 -1010111111 6,510 1 -1010111111 Tacktician 1 -1010111111 2017.74 1 -1010111111 5,185 1 -1010111111 13,950 1 -1010111111 6,480 1 -1010111111 WMFE-FM 1 -1010111111 149.60 1 -1010111111 1862.3 1 -1010111111 2370.5 1 -1010111111 319.7 1 -1010111111 498.9 1 -1010111111 1852.5 1 -1010111111 2360.9 1 -1010111111 151.30 1 -1010111111 149.89 1 -1010111111 1590 1 -1010111111 4280 1 -1010111111 2369 1 -1010111111 1836.1 1 -1010111111 3390 1 -1010111111 1540 1 -1010111111 1845.0 1 -1010111111 aristocat 1 -1010111111 1480 1 -1010111111 5600 1 -1010111111 152.10 1 -1010111111 51.718 1 -1010111111 99.23 1 -1010111111 2359.9 1 -1010111111 150.05 1 -1010111111 150.67 1 -1010111111 317.05 1 -1010111111 150.50 1 -1010111111 0.6675 1 -1010111111 oiligarchy 1 -1010111111 387.71 1 -1010111111 1476.5 1 -1010111111 1826.5 1 -1010111111 134.30 1 -1010111111 134.37 1 -1010111111 Hainburg 1 -1010111111 2,105.26 1 -1010111111 1242.44 1 -1010111111 1802.6 1 -1010111111 2125.78 1 -1010111111 27545.53 1 -1010111111 family-car 1 -1010111111 133.48 1 -1010111111 133.43 1 -1010111111 384.52 1 -1010111111 99.574 1 -1010111111 1252.31 1 -1010111111 1471.7 1 -1010111111 1826.3 1 -1010111111 2116.76 1 -1010111111 27405.49 1 -1010111111 852.14 1 -1010111111 trialblazer 1 -1010111111 1245.58 1 -1010111111 1457.6 1 -1010111111 2129.78 1 -1010111111 27501.02 1 -1010111111 2116.81 1 -1010111111 27499.56 1 -1010111111 1808.0 1 -1010111111 1248.36 1 -1010111111 1,292 1 -1010111111 1792.7 1 -1010111111 1446.5 1 -1010111111 2095.84 1 -1010111111 27333.75 1 -1010111111 1829.0 1 -1010111111 bluffet 1 -1010111111 1466.4 1 -1010111111 1812.5 1 -1010111111 27638.83 1 -1010111111 2133.46 1 -1010111111 27752.01 1 -1010111111 Impermanence 1 -1010111111 134.20 1 -1010111111 1242.67 1 -1010111111 Hinomaruya 1 -1010111111 jishuku 1 -1010111111 383.46 1 -1010111111 1494.0 1 -1010111111 27306.57 1 -1010111111 1269.80 1 -1010111111 2109.30 1 -1010111111 27273.30 1 -1010111111 1487.9 1 -1010111111 1830.7 1 -1010111111 127.66 1 -1010111111 50-bid 1 -1010111111 1295.79 1 -1010111111 1509.5 1 -1010111111 1857.0 1 -1010111111 27141.98 1 -1010111111 1513.2 1 -1010111111 2118.17 1 -1010111111 386.25 1 -1010111111 1282.99 1 -1010111111 27268.74 1 -1010111111 1860.0 1 -1010111111 4,627 1 -1010111111 1286.93 1 -1010111111 1490.3 1 -1010111111 1844.1 1 -1010111111 132.20 1 -1010111111 1481.5 1 -1010111111 1838.9 1 -1010111111 2096.31 1 -1010111111 27172.34 1 -1010111111 .261 1 -1010111111 91.31 1 -1010111111 91.21 1 -1010111111 1269.36 1 -1010111111 27258.27 1 -1010111111 2,443.4 1 -1010111111 382.55 1 -1010111111 6,050 1 -1010111111 27337.41 1 -1010111111 27409.37 1 -1010111111 385.49 1 -1010111111 1427.64 1 -1010111111 1838.3 1 -1010111111 27442.44 1 -1010111111 27469.60 1 -1010111111 99.24 1 -1010111111 1419.5 1 -1010111111 27504.01 1 -1010111111 133.67 1 -1010111111 MacLeans 1 -1010111111 96.27 1 -1010111111 103.19 1 -1010111111 27320.51 1 -1010111111 1567.2 1 -1010111111 27640 1 -1010111111 2112.82 1 -1010111111 2124 1 -1010111111 27647.10 1 -1010111111 7629.27 1 -1010111111 1554.8 1 -1010111111 503.50 1 -1010111111 1402.4 1 -1010111111 27708.21 1 -1010111111 1738.4 1 -1010111111 27645.27 1 -1010111111 379.73 1 -1010111111 71.80 1 -1010111111 72.00 1 -1010111111 1754.8 1 -1010111111 1409.9 1 -1010111111 27511.65 1 -1010111111 1763.15 1 -1010111111 134.97 1 -1010111111 136.75 1 -1010111111 72.70 1 -1010111111 137.13 1 -1010111111 99.953 1 -1010111111 1409.4 1 -1010111111 2128.02 1 -1010111111 27365.95 1 -1010111111 2670 1 -1010111111 1770.7 1 -1010111111 27664.51 1 -1010111111 27678.91 1 -1010111111 27506.04 1 -1010111111 27379.10 1 -1010111111 3,188 1 -1010111111 98.16 1 -1010111111 27394.18 1 -1010111111 1764.5 1 -1010111111 1420.5 1 -1010111111 1-800-HOT-HOGS 1 -1010111111 258.80 1 -1010111111 1754.81 1 -1010111111 1730.5 1 -1010111111 1391.6 1 -1010111111 26934.26 1 -1010111111 71.40 1 -1010111111 1429.9 1 -1010111111 27548.58 1 -1010111111 1260.99 1 -1010111111 2122.03 1 -1010111111 27712.66 1 -1010111111 1796.8 1 -1010111111 1759.9 1 -1010111111 1418.6 1 -1010111111 2151.86 1 -1010111111 27901.00 1 -1010111111 383.44 1 -1010111111 1792.4 1 -1010111111 1446.8 1 -1010111111 27429.57 1 -1010111111 27390.12 1 -1010111111 1443.8 1 -1010111111 1788.7 1 -1010111111 1440.7 1 -1010111111 27428.31 1 -1010111111 hair-dye 1 -1010111111 99.58 1 -1010111111 16:00-19:00 1 -1010111111 1744.6 1 -1010111111 1401.7 1 -1010111111 2139.20 1 -1010111111 27756.74 1 -1010111111 133.415 1 -1010111111 499.59 1 -1010111111 27794.16 1 -1010111111 1769.3 1 -1010111111 1422.0 1 -1010111111 Time. 1 -1010111111 382.70 1 -1010111111 27,985.40 1 -1010111111 130-138 1 -1010111111 133.53 1 -1010111111 2146.73 1 -1010111111 27805.67 1 -1010111111 1416.5 1 -1010111111 3884.65 1 -1010111111 2,810,000 1 -1010111111 25837.34 1 -1010111111 326.40 1 -1010111111 517.60 1 -1010111111 442.29 1 -1010111111 3768.42 1 -1010111111 146.12 1 -1010111111 25998 1 -1010111111 snitchboard 1 -1010111111 1460.9 1 -1010111111 1802.3 1 -1010111111 28829.41 1 -1010111111 123.54 1 -1010111111 122.40 1 -1010111111 265.05 1 -1010111111 122.45 1 -1010111111 1477.1 1 -1010111111 123.58 1 -1010111111 39.711 1 -1010111111 324.90 1 -1010111111 2336.2 1 -1010111111 2,820,000 1 -1010111111 2039.80 1 -1010111111 1,616 1 -1010111111 28996.12 1 -1010111111 1,810.20 1 -1010111111 3,667.95 1 -1010111111 363154 1 -1010111111 Jamesville 1 -1010111111 2,290,000 1 -1010111111 1428.15 1 -1010111111 7,122,300 1 -1010111111 farmacology 1 -1010111111 2322.9 1 -1010111111 99.954 1 -1010111111 2301.9 1 -1010111111 2350.2 1 -1010111111 144.27 1 -1010111111 142.42 1 -1010111111 flee-for-all 1 -1010111111 119.0 1 -1010111111 2123.53 1 -1010111111 26006.59 1 -1010111111 151.88 1 -1010111111 2385.8 1 -1010111111 2,880,000 1 -1010111111 99.824 1 -1010111111 6,860 1 -1010111111 30.02 1 -1010111111 79.64 1 -1010111111 99.8579 1 -1010111111 Bringing-in-the-Houseplants 1 -1010111111 99.405 1 -1010111111 99.106 1 -1010111111 2359.8 1 -1010111111 Minneapolis-Northwest 1 -1010111111 1.5950 1 -1010111111 Toscana 1 -1010111111 381.77 1 -1010111111 1313.35 1 -1010111111 1502.6 1 -1010111111 1852.1 1 -1010111111 2140.96 1 -1010111111 27722.92 1 -1010111111 125.72 1 -1010111111 27998.93 1 -1010111111 27,961.01 1 -1010111111 6,226.01 1 -1010111111 6018.07 1 -1010111111 2130.80 1 -1010111111 27620.60 1 -1010111111 crashendo 1 -1010111111 1310.63 1 -1010111111 1503.2 1 -1010111111 1850.7 1 -1010111111 27688 1 -1010111111 125.90 1 -1010111111 126.10 1 -1010111111 382.46 1 -1010111111 99.364 1 -1010111111 125.20 1 -1010111111 125.30 1 -1010111111 124.82 1 -1010111111 1310.79 1 -1010111111 1507.7 1 -1010111111 1300.79 1 -1010111111 125.88 1 -1010111111 126.17 1 -1010111111 1509.3 1 -1010111111 1859.3 1 -1010111111 27338.57 1 -1010111111 353.98 1 -1010111111 1.8135 1 -1010111111 1864.3 1 -1010111111 388.62 1 -1010111111 27,293.67 1 -1010111111 1295.21 1 -1010111111 400.50 1 -1010111111 106.80 1 -1010111111 1847.8 1 -1010111111 1500.9 1 -1010111111 1499.4 1 -1010111111 1848.4 1 -1010111111 127.08 1 -1010111111 27281.54 1 -1010111111 halfprice 1 -1010111111 123.80 1 -1010111111 1263.34 1 -1010111111 1826.2 1 -1010111111 2176.57 1 -1010111111 28166.42 1 -1010111111 378.84 1 -1010111111 1491.0 1 -1010111111 2145.73 1 -1010111111 28007.27 1 -1010111111 125.52 1 -1010111111 1479.8 1 -1010111111 28218.02 1 -1010111111 28212.78 1 -1010111111 Info-this 1 -1010111111 122.35 1 -1010111111 1261.84 1 -1010111111 1452.5 1 -1010111111 1794.3 1 -1010111111 28520.90 1 -1010111111 1461.2 1 -1010111111 1802.7 1 -1010111111 28489.57 1 -1010111111 123.70 1 -1010111111 Annaba 1 -1010111111 279.20 1 -1010111111 1280.58 1 -1010111111 1489.5 1 -1010111111 1837.6 1 -1010111111 382.35 1 -1010111111 103.30 1 -1010111111 1495.6 1 -1010111111 1474.3 1 -1010111111 1819.7 1 -1010111111 2129.44 1 -1010111111 27866.36 1 -1010111111 400-a-year 1 -1010111111 Kalimati 1 -1010111111 27953.25 1 -1010111111 1834.3 1 -1010111111 2144.08 1 -1010111111 2:28 1 -1010111111 Congressman-for-Life 1 -1010111111 Jussieu 1 -1010111111 161.83 1 -1010111111 251.05 1 -1010111111 Etretat 1 -1010111111 2440 1 -1010111111 2145.7 1 -1010111111 1674.1 1 -1010111111 99.548 1 -1010111111 18604.91 1 -1010111111 Grauholz 1 -1010111111 4750 1 -1010111111 1677.8 1 -1010111111 Frauenfeld 1 -1010111111 99.638 1 -1010111111 99.427 1 -1010111111 Pastel 1 -1010111111 neofight 1 -1010111111 153.05 1 -1010111111 1946.8 1 -1010111111 1559.2 1 -1010111111 Moruroa 1 -1010111111 1765.55 1 -1010111111 20,076.48 1 -1010111111 3350 1 -1010111111 1678.2 1 -1010111111 20,186.33 1 -1010111111 1584.9 1 -1010111111 2117.54 1 -1010111111 283.90 1 -1010111111 nichemanship 1 -1010111111 18325.50 1 -1010111111 321.0 1 -1010111111 1601.7 1 -1010111111 143.05 1 -1010111111 1423.50 1 -1010111111 99.805 1 -1010111111 100.625 1 -1010111111 800-847-5785 1 -1010111111 1419.92 1 -1010111111 0.6736 1 -1010111111 148.45 1 -1010111111 96.125 1 -1010111111 98.375 1 -1010111111 113.175 1 -1010111111 99.447 1 -1010111111 1421.46 1 -1010111111 1420.73 1 -1010111111 98.932 1 -1010111111 1423.09 1 -1010111111 99.664 1 -1010111111 Stephenville 1 -1010111111 144.10 1 -1010111111 117.11 1 -1010111111 24582.77 1 -1010111111 1424.94 1 -1010111111 Streamwood 1 -1010111111 311.40 1 -1010111111 403.12 1 -1010111111 88,500 1 -1010111111 20,933.82 1 -1010111111 1983.1 1 -1010111111 1604.5 1 -1010111111 Bicycle-frame 1 -1010111111 1910.7 1 -1010111111 112.27 1 -1010111111 98.953 1 -1010111111 99.96 1 -1010111111 1402.84 1 -1010111111 Lusthaus 1 -1010111111 0.6592 1 -1010111111 0.5544 1 -1010111111 1414.59 1 -1010111111 3511.9 1 -1010111111 Rorschach 1 -1010111111 1998.3 1 -1010111111 20,971.39 1 -1010111111 1821.37 1 -1010111111 medium-maturity 1 -1010111111 1426.08 1 -1010111111 20,023.55 1 -1010111111 153.48 1 -1010111111 99.175 1 -1010111111 1418.28 1 -1010111111 1428.45 1 -1010111111 Desota 1 -1010111111 1413.27 1 -1010111111 154.00 1 -1010111111 20,080.39 1 -1010111111 1567.0 1 -1010111111 3,211 1 -1010111111 100.70 1 -1010111111 19,881.76 1 -1010111111 293.0 1 -1010111111 1939.7 1 -1010111111 1556.9 1 -1010111111 1729.46 1 -1010111111 19,940.50 1 -1010111111 1423.98 1 -1010111111 14,460 1 -1010111111 98.67 1 -1010111111 lawngevity 1 -1010111111 282.85 1 -1010111111 1418.14 1 -1010111111 153.85 1 -1010111111 1599.8 1 -1010111111 1979.2 1 -1010111111 2220.47 1 -1010111111 202.02 1 -1010111111 1406.53 1 -1010111111 287.05 1 -1010111111 97.05 1 -1010111111 Ixiz 1 -1010111111 KWU-designed 1 -1010111111 106.54 1 -1010111111 R.I.T. 1 -1010111111 98.659 1 -1010111111 24,608.22 1 -1010111111 1297.21 1 -1010111111 Aguacote 1 -1010111111 1773.81 1 -1010111111 97.708 1 -1010111111 422.16 1 -1010111111 1546.8 1 -1010111111 139.37 1 -1010111111 140.78 1 -1010111111 104.39 1 -1010111111 23510.69 1 -1010111111 140.13 1 -1010111111 143.22 1 -1010111111 18,688 1 -1010111111 postphonement 1 -1010111111 99.923 1 -1010111111 2,900,000 1 -1010111111 brakedancing 1 -1010111111 Cilegon 1 -1010111111 162.19 1 -1010111111 99.809 1 -1010111111 chaseworkers 1 -1010111111 289.36 1 -1010111111 102,492 1 -1010111111 23903.73 1 -1010111111 137.40 1 -1010111111 22889.86 1 -1010111111 2.9882 1 -1010111111 1608.6 1 -1010111111 97.977 1 -1010111111 98.448 1 -1010111111 331.65 1 -1010111111 22,040.18 1 -1010111111 110.52 1 -1010111111 146.42 1 -1010111111 99.83 1 -1010111111 1997.6 1 -1010111111 21,566.66 1 -1010111111 12:35 1 -1010111111 22,367.72 1 -1010111111 145.82 1 -1010111111 2042.9 1 -1010111111 21,472.97 1 -1010111111 1614.9 1 -1010111111 2037.8 1 -1010111111 1422.19 1 -1010111111 1418.78 1 -1010111111 Heibert 1 -1010111111 2153.7 1 -1010111111 1677.7 1 -1010111111 5020 1 -1010111111 108.47 1 -1010111111 4600 1 -1010111111 1620.6 1 -1010111111 2048.6 1 -1010111111 97.562 1 -1010111111 1409.58 1 -1010111111 1782.5 1 -1010111111 99.281 1 -1010111111 1290 1 -1010111111 Legnice 1 -1010111111 22922.20 1 -1010111111 1523.8 1 -1010111111 140.68 1 -1010111111 105.175 1 -1010111111 1908.9 1 -1010111111 2,680,000 1 -1010111111 145.33 1 -1010111111 unautomated 1 -1010111111 1546.4 1 -1010111111 1566.0 1 -1010111111 1989.6 1 -1010111111 22586.11 1 -1010111111 nestalgia 1 -1010111111 helicoppers 1 -1010111111 1976.7 1 -1010111111 216.10 1 -1010111111 Arenales 1 -1010111111 5360 1 -1010111111 99.582 1 -1010111111 sliminar 1 -1010111111 Shindand 1 -1010111111 2228.4 1 -1010111111 99.827 1 -1010111111 1740.8 1 -1010111111 2249.3 1 -1010111111 167.53 1 -1010111111 297.47 1 -1010111111 99.577 1 -1010111111 106.525 1 -1010111111 143.18 1 -1010111111 260.28 1 -1010111111 1724.3 1 -1010111111 2219.6 1 -1010111111 99.851 1 -1010111111 prizeflight 1 -1010111111 144.92 1 -1010111111 144.62 1 -1010111111 5-14 1 -1010111111 1729.9 1 -1010111111 2228.8 1 -1010111111 31.30 1 -1010111111 1724.6 1 -1010111111 sexual-disease 1 -1010111111 1739.6 1 -1010111111 2235.4 1 -1010111111 2,790 1 -1010111111 25,673.20 1 -1010111111 2249.5 1 -1010111111 Three-inch 1 -1010111111 barbecrew 1 -1010111111 3075.23 1 -1010111111 3644.28 1 -1010111111 2272.8 1 -1010111111 323.35 1 -1010111111 1824.30 1 -1010111111 141.66 1 -1010111111 Supergiant 1 -1010111111 2268.1 1 -1010111111 2309.0 1 -1010111111 2231.13 1 -1010111111 425.39 1 -1010111111 99.668 1 -1010111111 193.28 1 -1010111111 99.396 1 -1010111111 1755.2 1 -1010111111 98.419 1 -1010111111 1310.7 1 -1010111111 Olin-Mathieson 1 -1010111111 1285.0 1 -1010111111 252.20 1 -1010111111 1619.6 1 -1010111111 1670.0 1 -1010111111 1332.0 1 -1010111111 1348.9 1 -1010111111 611,476 1 -1010111111 22926.28 1 -1010111111 1652.6 1 -1010111111 1262.7 1 -1010111111 22673.41 1 -1010111111 Northstar-At-Tahoe 1 -1010111111 22808.16 1 -1010111111 113.86 1 -1010111111 1588.4 1 -1010111111 1263.6 1 -1010111111 KCCI-TV 1 -1010111111 1624.4 1 -1010111111 1294.9 1 -1010111111 1,902.52 1 -1010111111 99.453 1 -1010111111 Pootung 1 -1010111111 1297.6 1 -1010111111 112.69 1 -1010111111 294.77 1 -1010111111 22748.85 1 -1010111111 1427.77 1 -1010111111 Springhill 1 -1010111111 99.261 1 -1010111111 102.33 1 -1010111111 Kgodora 1 -1010111111 1432.3 1 -1010111111 21533.44 1 -1010111111 1408.0 1 -1010111111 McGladry 1 -1010111111 1730.3 1 -1010111111 1382.3 1 -1010111111 missiletoe 1 -1010111111 1717.0 1 -1010111111 326.91 1 -1010111111 248.65 1 -1010111111 243.15 1 -1010111111 1706.2 1 -1010111111 1366.6 1 -1010111111 1408.9 1 -1010111111 22741.02 1 -1010111111 1750.2 1 -1010111111 1405.1 1 -1010111111 dairylict 1 -1010111111 Winterburg 1 -1010111111 18778.74 1 -1010111111 260.30 1 -1010111111 99.829 1 -1010111111 155.60 1 -1010111111 Kissembo 1 -1010111111 Newchwang 1 -1010111111 0.6531 1 -1010111111 0.5467 1 -1010111111 157.30 1 -1010111111 0.5288 1 -1010111111 1533.45 1 -1010111111 3066.18 1 -1010111111 1426.90 1 -1010111111 Norborne 1 -1010111111 Dnepropetrovsk 1 -1010111111 158.44 1 -1010111111 158.27 1 -1010111111 99.255 1 -1010111111 157.75 1 -1010111111 256.25 1 -1010111111 squeamishly 1 -1010111111 158.20 1 -1010111111 medical-ethics 1 -1010111111 361.19 1 -1010111111 158.98 1 -1010111111 236.40 1 -1010111111 379.25 1 -1010111111 Cutufi 1 -1010111111 Noumea 1 -1010111111 1422.63 1 -1010111111 164.41 1 -1010111111 152.15 1 -1010111111 97.60 1 -1010111111 99.534 1 -1010111111 1434.65 1 -1010111111 7:50 1 -1010111111 14:43:01 1 -1010111111 289.00 1 -1010111111 271.35 1 -1010111111 97.83 1 -1010111111 242.84 1 -1010111111 1434.85 1 -1010111111 U.S.-border 1 -1010111111 1829.61 1 -1010111111 99.59 1 -1010111111 97.667 1 -1010111111 98.956 1 -1010111111 1435.97 1 -1010111111 1102.92 1 -1010111111 151.90 1 -1010111111 1437.37 1 -1010111111 151.95 1 -1010111111 152.55 1 -1010111111 21,031.66 1 -1010111111 1827.24 1 -1010111111 2002.7 1 -1010111111 1612.4 1 -1010111111 heartifacts 1 -1010111111 153.30 1 -1010111111 Bercy 1 -1010111111 10,000-15,000 1 -1010111111 99.91 1 -1010111111 1790.2 1 -1010111111 143.57 1 -1010111111 scareribs 1 -1010111111 99.844 1 -1010111111 99.525 1 -1010111111 Coors-sponsored 1 -1010111111 21,166.40 1 -1010111111 3667.95 1 -1010111111 2305.9 1 -1010111111 1,794 1 -1010111111 2334.8 1 -1010111111 349.75 1 -1010111111 49.262 1 -1010111111 143.20 1 -1010111111 6,006 1 -1010111111 7:02 1 -1010111111 Haakonsvern 1 -1010111111 Mid-Century 1 -1010111111 4,890 1 -1010111111 24937.93 1 -1010111111 1423.14 1 -1010111111 141.65 1 -1010111111 314.10 1 -1010111111 2275 1 -1010111111 2283.6 1 -1010111111 2,067.61 1 -1010111111 1763.8 1 -1010111111 Straengnaes 1 -1010111111 ice-sledding 1 -1010111111 3649.84 1 -1010111111 2271.8 1 -1010111111 7,131,300 1 -1010111111 Squamish 1 -1010111111 Yreka 1 -1010111111 161.40 1 -1010111111 1188.04 1 -1010111111 1428.38 1 -1010111111 1421.68 1 -1010111111 18825.40 1 -1010111111 tranceplant 1 -1010111111 159.45 1 -1010111111 1407.78 1 -1010111111 barktender 1 -1010111111 1428.67 1 -1010111111 1998.2 1 -1010111111 1601.4 1 -1010111111 99.16 1 -1010111111 18933.07 1 -1010111111 1424.97 1 -1010111111 Nerb 1 -1010111111 163.45 1 -1010111111 288.40 1 -1010111111 164.15 1 -1010111111 250.15 1 -1010111111 249.73 1 -1010111111 98.634 1 -1010111111 Schnieder 1 -1010111111 162.96 1 -1010111111 2676 1 -1010111111 Tekoa 1 -1010111111 27161.05 1 -1010111111 1756.8 1 -1010111111 1406.4 1 -1010111111 1424.73 1 -1010111111 TONG 1 -1010111111 99.737 1 -1010111111 99.487 1 -1010111111 1772.3 1 -1010111111 1417.6 1 -1010111111 27212.58 1 -1010111111 15,627 1 -1010111111 2610.29 1 -1010111111 3288.42 1 -1010111111 99.28 1 -1010111111 1349.0 1 -1010111111 1694.5 1 -1010111111 21560.00 1 -1010111111 23771.60 1 -1010111111 103.55 1 -1010111111 99.303 1 -1010111111 315.85 1 -1010111111 27264.30 1 -1010111111 1794.9 1 -1010111111 1801.1 1 -1010111111 27548.74 1 -1010111111 27487.77 1 -1010111111 466.72 1 -1010111111 444.61 1 -1010111111 0.33499 1 -1010111111 1792.6 1 -1010111111 1435.8 1 -1010111111 124.23 1 -1010111111 73.86 1 -1010111111 73.59 1 -1010111111 142.86 1 -1010111111 1707.2 1 -1010111111 23662.27 1 -1010111111 1355.9 1 -1010111111 2615.63 1 -1010111111 3312.40 1 -1010111111 2380.8 1 -1010111111 34687.65 1 -1010111111 1972.7 1 -1010111111 314.76 1 -1010111111 4,570 1 -1010111111 252.21 1 -1010111111 8,980 1 -1010111111 3449.89 1 -1010111111 2655.52 1 -1010111111 372.27 1 -1010111111 -3/32 1 -1010111111 Spangdahlem 1 -1010111111 1789.2 1 -1010111111 2380.9 1 -1010111111 1962.9 1 -1010111111 Geilenkirchen 1 -1010111111 251.10 1 -1010111111 85-18 1 -1010111111 1043.82 1 -1010111111 3,270 1 -1010111111 142.51 1 -1010111111 27767.58 1 -1010111111 27601.81 1 -1010111111 1428.6 1 -1010111111 27,608.92 1 -1010111111 196.00 1 -1010111111 202.00 1 -1010111111 Fogal 1 -1010111111 3.1865 1 -1010111111 453.29 1 -1010111111 1410.9 1 -1010111111 1766.9 1 -1010111111 23709.10 1 -1010111111 349.97 1 -1010111111 23650.80 1 -1010111111 372.48 1 -1010111111 99.794 1 -1010111111 301-443-3830 1 -1010111111 88.54 1 -1010111111 100.436 1 -1010111111 1385.0 1 -1010111111 1734.0 1 -1010111111 1389.1 1 -1010111111 1809.5 1 -1010111111 1804.4 1 -1010111111 1444.7 1 -1010111111 27434.12 1 -1010111111 1962.60 1 -1010111111 24207.47 1 -1010111111 27509.54 1 -1010111111 34431.20 1 -1010111111 2603.38 1 -1010111111 155,985 1 -1010111111 27191.97 1 -1010111111 1448.9 1 -1010111111 97.02 1 -1010111111 157.00 1 -1010111111 24345.66 1 -1010111111 2387.9 1 -1010111111 1977.6 1 -1010111111 1431.3 1 -1010111111 3365.30 1 -1010111111 27246.77 1 -1010111111 100.054 1 -1010111111 PharmaKinetics. 1 -1010111111 Kipplestein 1 -1010111111 466.57 1 -1010111111 Dunsinane 1 -1010111111 93.77 1 -1010111111 1954.6 1 -1010111111 76.24 1 -1010111111 99.491 1 -1010111111 3426.89 1 -1010111111 2615.58 1 -1010111111 2369.8 1 -1010111111 1789.5 1 -1010111111 23771.88 1 -1010111111 1.6805 1 -1010111111 1794.7 1 -1010111111 257.95 1 -1010111111 Louveciennes 1 -1010111111 99.155 1 -1010111111 99.065 1 -1010111111 95.336 1 -1010111111 99.592 1 -1010111111 96.965 1 -1010111111 1970.9 1 -1010111111 4,580 1 -1010111111 30.656 1 -1010111111 34471.66 1 -1010111111 90.727 1 -1010111111 102.05 1 -1010111111 13,625 1 -1010111111 3,373 1 -1010111111 143.08 1 -1010111111 1807.2 1 -1010111111 1449.7 1 -1010111111 96,433 1 -1010111111 61,580 1 -1010111111 27906.48 1 -1010111111 1415.6 1 -1010111111 99.92 1 -1010111111 23335.91 1 -1010111111 125.62 1 -1010111111 1444.4 1 -1010111111 265.17 1 -1010111111 149.68 1 -1010111111 260.31 1 -1010111111 379.35 1 -1010111111 99.714 1 -1010111111 99.526 1 -1010111111 127.03 1 -1010111111 23587.25 1 -1010111111 1430.0 1 -1010111111 1783.9 1 -1010111111 99.927 1 -1010111111 126.07 1 -1010111111 BARRA 1 -1010111111 27703.91 1 -1010111111 27842.65 1 -1010111111 1439.6 1 -1010111111 1805.7 1 -1010111111 254.30 1 -1010111111 99.57 1 -1010111111 1737.9 1 -1010111111 126.32 1 -1010111111 M87 1 -1010111111 374.65 1 -1010111111 Serpukhov 1 -1010111111 2661.23 1 -1010111111 3288.57 1 -1010111111 1443.4 1 -1010111111 2163.55 1 -1010111111 27,840.24 1 -1010111111 99.203 1 -1010111111 1762.2 1 -1010111111 23318.40 1 -1010111111 1414.0 1 -1010111111 226.37 1 -1010111111 27999.71 1 -1010111111 1468.2 1 -1010111111 Temecula 1 -1010111111 126.0 1 -1010111111 339.33 1 -1010111111 1828.2 1 -1010111111 27912.65 1 -1010111111 28131.07 1 -1010111111 1455.2 1 -1010111111 1820.2 1 -1010111111 1445.1 1 -1010111111 27967.32 1 -1010111111 142.78 1 -1010111111 379.32 1 -1010111111 1635.93 1 -1010111111 1638.81 1 -1010111111 blankruptcy 1 -1010111111 34960.71 1 -1010111111 1463.7 1 -1010111111 27996.24 1 -1010111111 28069.42 1 -1010111111 propulsively 1 -1010111111 1832.7 1 -1010111111 1452.8 1 -1010111111 4,520 1 -1010111111 2359.6 1 -1010111111 1937.3 1 -1010111111 3279.81 1 -1010111111 1966.3 1 -1010111111 2370.8 1 -1010111111 98.518 1 -1010111111 298.17 1 -1010111111 27197.65 1 -1010111111 27249.76 1 -1010111111 1407.6 1 -1010111111 Kilhamet 1 -1010111111 172,947 1 -1010111111 1924.8 1 -1010111111 23,672.21 1 -1010111111 1067 1 -1010111111 1774.40 1 -1010111111 1420.10 1 -1010111111 Shockbroker 1 -1010111111 0.008052 1 -1010111111 27636.20 1 -1010111111 27443.65 1 -1010111111 1787.9 1 -1010111111 27463.11 1 -1010111111 27312.66 1 -1010111111 1782.9 1 -1010111111 1428.3 1 -1010111111 124.20 1 -1010111111 465.88 1 -1010111111 138.90 1 -1010111111 37,546 1 -1010111111 105.86 1 -1010111111 WLRO 1 -1010111111 340.69 1 -1010111111 1760.6 1 -1010111111 1408.1 1 -1010111111 27373.24 1 -1010111111 180/110 1 -1010111111 253.10 1 -1010111111 350.52 1 -1010111111 1413.2 1 -1010111111 1766.3 1 -1010111111 23595.37 1 -1010111111 107.05 1 -1010111111 89.23 1 -1010111111 3289.41 1 -1010111111 2397.4 1 -1010111111 2622.70 1 -1010111111 34739.93 1 -1010111111 124.43 1 -1010111111 1776.2 1 -1010111111 1425.3 1 -1010111111 27948.37 1 -1010111111 27759.87 1 -1010111111 2606.61 1 -1010111111 1415.2 1 -1010111111 1,922.75 1 -1010111111 23804.09 1 -1010111111 1435.7 1 -1010111111 1790.8 1 -1010111111 128.60 1 -1010111111 2393.1 1 -1010111111 146.07 1 -1010111111 1784.4 1 -1010111111 1427.5 1 -1010111111 104.392 1 -1010111111 262.95 1 -1010111111 27416.70 1 -1010111111 27724.74 1 -1010111111 2,837 1 -1010111111 99.87125 1 -1010111111 1423.1 1 -1010111111 1776.9 1 -1010111111 23732.32 1 -1010111111 124.60 1 -1010111111 1430.4 1 -1010111111 bankypanky 1 -1010111111 27,386.71 1 -1010111111 105.46 1 -1010111111 57.412 1 -1010111111 253.76 1 -1010111111 75.00 1 -1010111111 128.74 1 -1010111111 338.02 1 -1010111111 1949.5 1 -1010111111 2630.97 1 -1010111111 3282.59 1 -1010111111 34786.55 1 -1010111111 27392.60 1 -1010111111 27223.10 1 -1010111111 2370.2 1 -1010111111 124.96 1 -1010111111 124.64 1 -1010111111 34771.79 1 -1010111111 2629.40 1 -1010111111 3484.95 1 -1010111111 419.50 1 -1010111111 Tamarindo 1 -1010111111 1832.2 1 -1010111111 1459.8 1 -1010111111 2133.05 1 -1010111111 25895.23 1 -1010111111 202-566-4904 1 -1010111111 96.625 1 -1010111111 99.839 1 -1010111111 Qtr 1 -1010111111 25781.28 1 -1010111111 1782.7 1 -1010111111 1421.6 1 -1010111111 25663.80 1 -1010111111 1841.1 1 -1010111111 2269.4 1 -1010111111 25966.26 1 -1010111111 1476.8 1 -1010111111 2134.89 1 -1010111111 126.96 1 -1010111111 25879.93 1 -1010111111 93.87 1 -1010111111 126.91 1 -1010111111 2112.39 1 -1010111111 2400.6 1 -1010111111 1981.6 1 -1010111111 1467.9 1 -1010111111 3381.61 1 -1010111111 1808.7 1 -1010111111 2578.76 1 -1010111111 25842.75 1 -1010111111 1835.4 1 -1010111111 147.77 1 -1010111111 1949.7 1 -1010111111 144.40 1 -1010111111 2605.48 1 -1010111111 1766.5 1 -1010111111 149.00 1 -1010111111 25284.87 1 -1010111111 Cana 1 -1010111111 2292.3 1 -1010111111 menagement 1 -1010111111 1909.8 1 -1010111111 2675.83 1 -1010111111 2121.41 1 -1010111111 25953.09 1 -1010111111 1742.5 1 -1010111111 26193.89 1 -1010111111 26260.26 1 -1010111111 2283.7 1 -1010111111 1398.1 1 -1010111111 1756.9 1 -1010111111 26357.64 1 -1010111111 2627.62 1 -1010111111 2274.2 1 -1010111111 1902.5 1 -1010111111 371.78 1 -1010111111 2621.78 1 -1010111111 101.70 1 -1010111111 25435.90 1 -1010111111 2089.11 1 -1010111111 1781.9 1 -1010111111 1439.1 1 -1010111111 25378.06 1 -1010111111 2501.93 1 -1010111111 2102.38 1 -1010111111 25626.71 1 -1010111111 345.68 1 -1010111111 396.42 1 -1010111111 1429.5 1 -1010111111 1768.8 1 -1010111111 25242.81 1 -1010111111 25345.47 1 -1010111111 366.94 1 -1010111111 147.45 1 -1010111111 146.40 1 -1010111111 146.62 1 -1010111111 106.39 1 -1010111111 123.88 1 -1010111111 1746.5 1 -1010111111 1394.4 1 -1010111111 2003.7 1 -1010111111 2423.9 1 -1010111111 Mahrt 1 -1010111111 25622.71 1 -1010111111 387.05 1 -1010111111 Treehabilitation 1 -1010111111 1811.6 1 -1010111111 25505.78 1 -1010111111 25,543.73 1 -1010111111 1818.2 1 -1010111111 25616.58 1 -1010111111 2107.98 1 -1010111111 1462.8 1 -1010111111 prayola 1 -1010111111 1819.5 1 -1010111111 1460.0 1 -1010111111 25433.51 1 -1010111111 471.83 1 -1010111111 97.06 1 -1010111111 108.46 1 -1010111111 93.71 1 -1010111111 2382.0 1 -1010111111 1965.8 1 -1010111111 2618.43 1 -1010111111 3393.81 1 -1010111111 34401.88 1 -1010111111 enchore 1 -1010111111 145.47 1 -1010111111 25605.39 1 -1010111111 1460.1 1 -1010111111 1815.3 1 -1010111111 74.22 1 -1010111111 2599.16 1 -1010111111 3384.54 1 -1010111111 2401.5 1 -1010111111 34286.94 1 -1010111111 1980.1 1 -1010111111 1,510,000 1 -1010111111 80-82 1 -1010111111 1028 1 -1010111111 25620.59 1 -1010111111 2102.55 1 -1010111111 25617.82 1 -1010111111 1834.6 1 -1010111111 1472.3 1 -1010111111 101.56 1 -1010111111 99.358 1 -1010111111 269.10 1 -1010111111 99.464 1 -1010111111 1815.0 1 -1010111111 99.86 1 -1010111111 1457.7 1 -1010111111 2094.00 1 -1010111111 25465.73 1 -1010111111 terrortory 1 -1010111111 2121.20 1 -1010111111 Malinmor 1 -1010111111 Arent 1 -1010111111 25872.29 1 -1010111111 127.40 1 -1010111111 380.87 1 -1010111111 125.27 1 -1010111111 102.30 1 -1010111111 snipshot 1 -1010111111 .311 1 -1010111111 1813.3 1 -1010111111 Fortnum 1 -1010111111 98.650 1 -1010111111 1470.4 1 -1010111111 2084.80 1 -1010111111 25475.67 1 -1010111111 1980.6 1 -1010111111 146.73 1 -1010111111 147.23 1 -1010111111 2595.85 1 -1010111111 2397.6 1 -1010111111 3379.53 1 -1010111111 25627.57 1 -1010111111 1478.7 1 -1010111111 1834.5 1 -1010111111 1455.9 1 -1010111111 2106.18 1 -1010111111 25704.43 1 -1010111111 385.40 1 -1010111111 thugboats 1 -1010111111 99.76 1 -1010111111 26671.45 1 -1010111111 129.98 1 -1010111111 5,060 1 -1010111111 130.02 1 -1010111111 241.50 1 -1010111111 240.20 1 -1010111111 1787.8 1 -1010111111 1419.6 1 -1010111111 844.0 1 -1010111111 131.20 1 -1010111111 1798.9 1 -1010111111 1429.7 1 -1010111111 2150.89 1 -1010111111 26657.00 1 -1010111111 149to-150 1 -1010111111 9,070 1 -1010111111 2613.34 1 -1010111111 3372.05 1 -1010111111 145.95 1 -1010111111 147.25 1 -1010111111 98.926 1 -1010111111 99.075 1 -1010111111 98.877 1 -1010111111 2008.6 1 -1010111111 1810.4 1 -1010111111 1435.0 1 -1010111111 26985.55 1 -1010111111 24846.71 1 -1010111111 1396.3 1 -1010111111 374.52 1 -1010111111 1415.7 1 -1010111111 26873.43 1 -1010111111 26893.57 1 -1010111111 74.145 1 -1010111111 74.98 1 -1010111111 Kyril 1 -1010111111 96.46 1 -1010111111 26967.83 1 -1010111111 1416.2 1 -1010111111 24527.71 1 -1010111111 1396.4 1 -1010111111 1748.1 1 -1010111111 24429.95 1 -1010111111 2878.29 1 -1010111111 3412.09 1 -1010111111 2619.07 1 -1010111111 216.50 1 -1010111111 1948.3 1 -1010111111 2361.5 1 -1010111111 1771.6 1 -1010111111 1411.6 1 -1010111111 27058.37 1 -1010111111 34471.07 1 -1010111111 146.23 1 -1010111111 center-ice 1 -1010111111 Oberammergau 1 -1010111111 four-o-two 1 -1010111111 120-125 1 -1010111111 1621 1 -1010111111 97.724 1 -1010111111 Gunder. 1 -1010111111 98.828 1 -1010111111 26864.09 1 -1010111111 98.775 1 -1010111111 99.72 1 -1010111111 Uninspiring 1 -1010111111 231.70 1 -1010111111 1791.9 1 -1010111111 1423.4 1 -1010111111 26892.41 1 -1010111111 344.24 1 -1010111111 Infotechnology. 1 -1010111111 78,030 1 -1010111111 Medicare-financed 1 -1010111111 331.50 1 -1010111111 257.90 1 -1010111111 24675.36 1 -1010111111 1736.1 1 -1010111111 1737.6 1 -1010111111 1382.9 1 -1010111111 26315.35 1 -1010111111 26426.51 1 -1010111111 99.944 1 -1010111111 341.82 1 -1010111111 261.58 1 -1010111111 3,270,000 1 -1010111111 orchestra-side 1 -1010111111 99.634 1 -1010111111 26511.17 1 -1010111111 1745.0 1 -1010111111 1386.8 1 -1010111111 99.417 1 -1010111111 99.918 1 -1010111111 262.85 1 -1010111111 1433.9 1 -1010111111 Maubeauge 1 -1010111111 147.35 1 -1010111111 26430.36 1 -1010111111 26,282.12 1 -1010111111 34152.56 1 -1010111111 2593.39 1 -1010111111 3420.16 1 -1010111111 2415.9 1 -1010111111 1999.1 1 -1010111111 2721.69 1 -1010111111 Compiegne 1 -1010111111 26335.29 1 -1010111111 26290.21 1 -1010111111 99.41 1 -1010111111 tritium-producing 1 -1010111111 99.697 1 -1010111111 342.57 1 -1010111111 5.p.m. 1 -1010111111 26973.99 1 -1010111111 1433.8 1 -1010111111 1810.5 1 -1010111111 24949.45 1 -1010111111 1805.3 1 -1010111111 1433.7 1 -1010111111 1757.9 1 -1010111111 1410.3 1 -1010111111 99.735 1 -1010111111 128.50-129.60 1 -1010111111 99.673 1 -1010111111 5,480 1 -1010111111 26769.22 1 -1010111111 1399.4 1 -1010111111 1761.0 1 -1010111111 CORINTO 1 -1010111111 98.39 1 -1010111111 99.6875 1 -1010111111 2602.70 1 -1010111111 73.46 1 -1010111111 3383.35 1 -1010111111 8,820 1 -1010111111 1417.0 1 -1010111111 1760.1 1 -1010111111 24968.65 1 -1010111111 1958.9 1 -1010111111 4,675 1 -1010111111 99.736 1 -1010111111 99.774 1 -1010111111 1413.4 1 -1010111111 2427.4 1 -1010111111 1978.7 1 -1010111111 34271.31 1 -1010111111 2090.18 1 -1010111111 3409.19 1 -1010111111 2622.23 1 -1010111111 1840.8 1 -1010111111 27738.57 1 -1010111111 472.92 1 -1010111111 3,665 1 -1010111111 27796.09 1 -1010111111 1480.7 1 -1010111111 1841.3 1 -1010111111 121.00 1 -1010111111 121.30 1 -1010111111 266.85 1 -1010111111 1712.7 1 -1010111111 38,267 1 -1010111111 13,962 1 -1010111111 2347.3 1 -1010111111 1961.4 1 -1010111111 6,940 1 -1010111111 will-o'-the-wasp 1 -1010111111 27183.53 1 -1010111111 1474.1 1 -1010111111 1473.0 1 -1010111111 27303.76 1 -1010111111 1837.7 1 -1010111111 fillybuster 1 -1010111111 JCI 1 -1010111111 1747.5 1 -1010111111 1402.0 1 -1010111111 139.72 1 -1010111111 1491.4 1 -1010111111 350.87 1 -1010111111 1865.1 1 -1010111111 1502.0 1 -1010111111 28440.78 1 -1010111111 28348.45 1 -1010111111 7,630 1 -1010111111 2348.1 1 -1010111111 1962.3 1 -1010111111 2289.2 1 -1010111111 1876.9 1 -1010111111 9911.15 1 -1010111111 97.99 1 -1010111111 1797.3 1 -1010111111 9,390 1 -1010111111 2660.49 1 -1010111111 35240.07 1 -1010111111 1972.0 1 -1010111111 2643.91 1 -1010111111 Bogutta 1 -1010111111 139.42 1 -1010111111 387.33 1 -1010111111 1488.7 1 -1010111111 28199.94 1 -1010111111 34859.27 1 -1010111111 99.211 1 -1010111111 133.25 1 -1010111111 1862.2 1 -1010111111 1497.5 1 -1010111111 1861.5 1 -1010111111 27882.38 1 -1010111111 2186.42 1 -1010111111 27913.79 1 -1010111111 396.39 1 -1010111111 135.35 1 -1010111111 22792.13 1 -1010111111 337.40 1 -1010111111 362.34 1 -1010111111 Alamosa 1 -1010111111 1969.6 1 -1010111111 2354.2 1 -1010111111 sun-up 1 -1010111111 134.28 1 -1010111111 377.02 1 -1010111111 394.59 1 -1010111111 27109.31 1 -1010111111 260.63 1 -1010111111 1424.5 1 -1010111111 696.11 1 -1010111111 28020.10 1 -1010111111 2197.97 1 -1010111111 27968.40 1 -1010111111 22872.56 1 -1010111111 132.83 1 -1010111111 chantytown 1 -1010111111 393.56 1 -1010111111 Kapikule 1 -1010111111 96.33 1 -1010111111 28151.83 1 -1010111111 2198.88 1 -1010111111 28084.08 1 -1010111111 13800 1 -1010111111 1216.61 1 -1010111111 270.26 1 -1010111111 2113.62 1 -1010111111 394.67 1 -1010111111 377.36 1 -1010111111 30-13-5 1 -1010111111 Koele 1 -1010111111 96.30 1 -1010111111 100.06 1 -1010111111 2390 1 -1010111111 131.85 1 -1010111111 Cloudlands 1 -1010111111 387.35 1 -1010111111 363.72 1 -1010111111 702.17 1 -1010111111 27301.34 1 -1010111111 27,265.78 1 -1010111111 6,460 1 -1010111111 2,031.50 1 -1010111111 2,031.5 1 -1010111111 1437.1 1 -1010111111 1789.6 1 -1010111111 136.05 1 -1010111111 21575.28 1 -1010111111 130.65 1 -1010111111 Tattletales 1 -1010111111 144.82 1 -1010111111 2638.20 1 -1010111111 27283.56 1 -1010111111 140.10 1 -1010111111 Bagneaux 1 -1010111111 1885.7 1 -1010111111 35636.76 1 -1010111111 1787.1 1 -1010111111 271.55 1 -1010111111 clause-trophobia 1 -1010111111 Chequers 1 -1010111111 377.22 1 -1010111111 Lyaki 1 -1010111111 1912.1 1 -1010111111 1833.9 1 -1010111111 1476.2 1 -1010111111 28129.36 1 -1010111111 Manitou 1 -1010111111 530.41 1 -1010111111 709.94 1 -1010111111 1832.3 1 -1010111111 1477.2 1 -1010111111 28079.18 1 -1010111111 28209.42 1 -1010111111 1484.5 1 -1010111111 1844.3 1 -1010111111 2613.27 1 -1010111111 1940.8 1 -1010111111 sinario 1 -1010111111 2315.9 1 -1010111111 2277.5 1 -1010111111 2628.90 1 -1010111111 1825.3 1 -1010111111 27896.55 1 -1010111111 2187.49 1 -1010111111 28035.39 1 -1010111111 7,160 1 -1010111111 Intar 1 -1010111111 8,040 1 -1010111111 7604.25 1 -1010111111 144.00 1 -1010111111 376.22 1 -1010111111 28178.86 1 -1010111111 1475.3 1 -1010111111 1830.9 1 -1010111111 27548.97 1 -1010111111 2175.49 1 -1010111111 1780.2 1 -1010111111 1432.6 1 -1010111111 1780.20 1 -1010111111 2306.3 1 -1010111111 99.335 1 -1010111111 98.329 1 -1010111111 99.026 1 -1010111111 99.955 1 -1010111111 136.40 1 -1010111111 137.08 1 -1010111111 multi-trillion 1 -1010111111 2679.40 1 -1010111111 2312.1 1 -1010111111 9669.94 1 -1010111111 2780.55 1 -1010111111 2281.6 1 -1010111111 101-103 1 -1010111111 2676.99 1 -1010111111 2990 1 -1010111111 1817.9 1 -1010111111 1466.1 1 -1010111111 2183.54 1 -1010111111 27919.95 1 -1010111111 Nalanda 1 -1010111111 Clackton 1 -1010111111 Simat 1 -1010111111 2875.09 1 -1010111111 coconut-lime 1 -1010111111 1876.0 1 -1010111111 1514.7 1 -1010111111 213-458-2003 1 -1010111111 1501.1 1 -1010111111 1862.6 1 -1010111111 28170.36 1 -1010111111 28253.12 1 -1010111111 Mougins 1 -1010111111 86-07 1 -1010111111 92.73 1 -1010111111 91.34 1 -1010111111 Fylingdales 1 -1010111111 2232.95 1 -1010111111 28292.66 1 -1010111111 1508.5 1 -1010111111 138.72 1 -1010111111 1869.7 1 -1010111111 97.936 1 -1010111111 McCann-Erikson 1 -1010111111 38,123 1 -1010111111 1796.7 1 -1010111111 1,327.75 1 -1010111111 138.40 1 -1010111111 133.80 1 -1010111111 2688.80 1 -1010111111 27831.67 1 -1010111111 2318.6 1 -1010111111 1899.3 1 -1010111111 74.32 1 -1010111111 74.82 1 -1010111111 Sandhurst 1 -1010111111 Hvittrask 1 -1010111111 98.801 1 -1010111111 1465.6 1 -1010111111 27901.29 1 -1010111111 9,380 1 -1010111111 2673.56 1 -1010111111 35376.35 1 -1010111111 1512.8 1 -1010111111 1875.9 1 -1010111111 28312.00 1 -1010111111 28362.18 1 -1010111111 Twickenham 1 -1010111111 7,970 1 -1010111111 2615.48 1 -1010111111 34630.38 1 -1010111111 2661.42 1 -1010111111 nestbuilding 1 -1010111111 349.41 1 -1010111111 2172.80 1 -1010111111 27886.49 1 -1010111111 2,187.04 1 -1010111111 27,833.51 1 -1010111111 95.99 1 -1010111111 1013.77 1 -1010111111 27784.98 1 -1010111111 .007573 1 -1010111111 .5328 1 -1010111111 1.7096 1 -1010111111 1790.0 1 -1010111111 22910.20 1 -1010111111 27556.21 1 -1010111111 27454.14 1 -1010111111 131.35 1 -1010111111 cremations 1 -1010111111 65.612 1 -1010111111 131.70 1 -1010111111 130.90 1 -1010111111 130.48 1 -1010111111 135-to-145 1 -1010111111 344.34 1 -1010111111 160-to-165 1 -1010111111 142.32 1 -1010111111 1436.7 1 -1010111111 27435.01 1 -1010111111 2155.70 1 -1010111111 27271.67 1 -1010111111 1423.0 1 -1010111111 22898.17 1 -1010111111 2185.54 1 -1010111111 77.16 1 -1010111111 76.58 1 -1010111111 35090.11 1 -1010111111 7,480 1 -1010111111 2652.96 1 -1010111111 2178.64 1 -1010111111 1510 1 -1010111111 5150 1 -1010111111 2330 1 -1010111111 1878.9 1 -1010111111 2650.61 1 -1010111111 9663.60 1 -1010111111 35084.15 1 -1010111111 1398.7 1 -1010111111 190.65 1 -1010111111 2329.6 1 -1010111111 115.643 1 -1010111111 2633.24 1 -1010111111 1961.8 1 -1010111111 100.40 1 -1010111111 133.57 1 -1010111111 8,590 1 -1010111111 27769.40 1 -1010111111 2183.10 1 -1010111111 27823.14 1 -1010111111 5280 1 -1010111111 34810.69 1 -1010111111 2326.2 1 -1010111111 2633.33 1 -1010111111 setside 1 -1010111111 92.763 1 -1010111111 Point-Comfort 1 -1010111111 141.40 1 -1010111111 1923.9 1 -1010111111 2148.25 1 -1010111111 1848.0 1 -1010111111 1478.3 1 -1010111111 108.69 1 -1010111111 Then-Rep 1 -1010111111 96.42 1 -1010111111 27398.09 1 -1010111111 27515.99 1 -1010111111 2158.48 1 -1010111111 880,674 1 -1010111111 2331.2 1 -1010111111 2329.8 1 -1010111111 1907.4 1 -1010111111 5230 1 -1010111111 1855.1 1 -1010111111 1479.7 1 -1010111111 27607.33 1 -1010111111 2,166.90 1 -1010111111 27730.36 1 -1010111111 22973.06 1 -1010111111 136.20 1 -1010111111 99.961 1 -1010111111 389.08 1 -1010111111 361.40 1 -1010111111 Rutgers-Camden 1 -1010111111 471,519 1 -1010111111 1404.0 1 -1010111111 22710.26 1 -1010111111 1861.9 1 -1010111111 99.975 1 -1010111111 335.67 1 -1010111111 28093.52 1 -1010111111 1869.3 1 -1010111111 126.22 1 -1010111111 125.19 1 -1010111111 28064.11 1 -1010111111 1461.1 1 -1010111111 1838.8 1 -1010111111 126.35 1 -1010111111 mind- 1 -1010111111 1482.7 1 -1010111111 28061.80 1 -1010111111 2213.63 1 -1010111111 23125.33 1 -1010111111 1421.0 1 -1010111111 2659.08 1 -1010111111 2374.7 1 -1010111111 88.2568 1 -1010111111 1770.9 1 -1010111111 35109.56 1 -1010111111 8,810 1 -1010111111 string-pulling 1 -1010111111 126.39 1 -1010111111 243.50 1 -1010111111 5,370 1 -1010111111 2336.1 1 -1010111111 1913.5 1 -1010111111 2189.87 1 -1010111111 2219.33 1 -1010111111 28,232.55 1 -1010111111 1472.6 1 -1010111111 1850.1 1 -1010111111 96.10 1 -1010111111 2375.1 1 -1010111111 10-to-2 1 -1010111111 Freehill 1 -1010111111 2652.50 1 -1010111111 quacksilver 1 -1010111111 1752.8 1 -1010111111 22843.14 1 -1010111111 28021.21 1 -1010111111 2204.19 1 -1010111111 49.836 1 -1010111111 128.78 1 -1010111111 28139.03 1 -1010111111 125.84 1 -1010111111 Artesia 1 -1010111111 2632.97 1 -1010111111 6,910 1 -1010111111 34671.62 1 -1010111111 1950.3 1 -1010111111 454.08 1 -1010111111 1760.2 1 -1010111111 12300 1 -1010111111 3210 1 -1010111111 7550 1 -1010111111 1417.4 1 -1010111111 28058.08 1 -1010111111 2200.56 1 -1010111111 27985.99 1 -1010111111 22578.43 1 -1010111111 2325.9 1 -1010111111 27766.60 1 -1010111111 2176.55 1 -1010111111 27671.02 1 -1010111111 5310 1 -1010111111 22324.99 1 -1010111111 246.25 1 -1010111111 22451.99 1 -1010111111 1733.4 1 -1010111111 1391.1 1 -1010111111 Infocorp. 1 -1010111111 272.02 1 -1010111111 97.723 1 -1010111111 395.45 1 -1010111111 2586.13 1 -1010111111 88.12 1 -1010111111 1-800-233-3271 1 -1010111111 344.72 1 -1010111111 Raydah 1 -1010111111 99.902 1 -1010111111 99.991 1 -1010111111 27965.88 1 -1010111111 2197.91 1 -1010111111 27917.08 1 -1010111111 271.78 1 -1010111111 long-existing 1 -1010111111 2180.86 1 -1010111111 27902.39 1 -1010111111 1484.2 1 -1010111111 232.28 1 -1010111111 1396.9 1 -1010111111 22625.05 1 -1010111111 246.35 1 -1010111111 112.0 1 -1010111111 651,200 1 -1010111111 1876.2 1 -1010111111 28099.84 1 -1010111111 2207.97 1 -1010111111 28089.40 1 -1010111111 96.92 1 -1010111111 267.85 1 -1010111111 Riviere-Beaudette 1 -1010111111 Halabjah 1 -1010111111 271.30 1 -1010111111 393.52 1 -1010111111 2164.11 1 -1010111111 125.24 1 -1010111111 1885.8 1 -1010111111 2696.18 1 -1010111111 nearlyweds 1 -1010111111 Myuongdong 2 -1010111111 2006.6 2 -1010111111 1775.4 2 -1010111111 2264.5 2 -1010111111 21564.00 2 -1010111111 1307.40 2 -1010111111 1313.03 2 -1010111111 1196.69 2 -1010111111 150.35 2 -1010111111 1222.54 2 -1010111111 99.558 2 -1010111111 3,780 2 -1010111111 159.85 2 -1010111111 1903.51 2 -1010111111 2268.98 2 -1010111111 1288.10 2 -1010111111 115.75 2 -1010111111 122.85 2 -1010111111 99.931 2 -1010111111 1322.04 2 -1010111111 2226.52 2 -1010111111 143.63 2 -1010111111 115.25 2 -1010111111 2231.96 2 -1010111111 152.83 2 -1010111111 343.09 2 -1010111111 1927.31 2 -1010111111 1778.9 2 -1010111111 1961.54 2 -1010111111 1189.70 2 -1010111111 1789.0 2 -1010111111 1249.61 2 -1010111111 2176.74 2 -1010111111 1.5168 2 -1010111111 274.45 2 -1010111111 1309.07 2 -1010111111 2216.68 2 -1010111111 10-midnight 2 -1010111111 1239.31 2 -1010111111 2101.52 2 -1010111111 1307.21 2 -1010111111 2408.13 2 -1010111111 152.98 2 -1010111111 135.80 2 -1010111111 3,640 2 -1010111111 10:50 2 -1010111111 44.314 2 -1010111111 1256.43 2 -1010111111 2071.29 2 -1010111111 99.575 2 -1010111111 146.90 2 -1010111111 133.19 2 -1010111111 34538.90 2 -1010111111 1274.57 2 -1010111111 1237.42 2 -1010111111 129.89 2 -1010111111 153.41 2 -1010111111 1324.90 2 -1010111111 monumentality 2 -1010111111 154.35 2 -1010111111 WCLY-FM 2 -1010111111 1282.57 2 -1010111111 1319.98 2 -1010111111 108,200 2 -1010111111 1282.20 2 -1010111111 1259.37 2 -1010111111 2527.90 2 -1010111111 143.48 2 -1010111111 2267.34 2 -1010111111 99.63 2 -1010111111 1232.59 2 -1010111111 1187.73 2 -1010111111 96.02 2 -1010111111 1,719 2 -1010111111 1312.42 2 -1010111111 100.04 2 -1010111111 2,039,300 2 -1010111111 125.34 2 -1010111111 130.98 2 -1010111111 447.78 2 -1010111111 1419.4 2 -1010111111 317.75 2 -1010111111 2,770,000 2 -1010111111 126.33 2 -1010111111 128.87 2 -1010111111 217.43 2 -1010111111 141.10 2 -1010111111 2210 2 -1010111111 1299.57 2 -1010111111 1329.29 2 -1010111111 1243.71 2 -1010111111 138.70 2 -1010111111 WEYI 2 -1010111111 2056.37 2 -1010111111 101.85 2 -1010111111 1386.7 2 -1010111111 1179.23 2 -1010111111 1282.16 2 -1010111111 130.52 2 -1010111111 99.798 2 -1010111111 1326.08 2 -1010111111 1299.08 2 -1010111111 2063.49 2 -1010111111 126.70 2 -1010111111 1303.99 2 -1010111111 23498.76 2 -1010111111 96.79 2 -1010111111 2254.26 2 -1010111111 1911.14 2 -1010111111 Malongo 2 -1010111111 127.79 2 -1010111111 1781.8 2 -1010111111 348.83 2 -1010111111 143.78 2 -1010111111 Edwardsville 2 -1010111111 116.43 2 -1010111111 2223.99 2 -1010111111 Herculaneum 2 -1010111111 25596.31 2 -1010111111 99.765 2 -1010111111 7,090 2 -1010111111 1291.26 2 -1010111111 1185.03 2 -1010111111 1176.66 2 -1010111111 1283.92 2 -1010111111 2057.86 2 -1010111111 101.45 2 -1010111111 1310.94 2 -1010111111 Gomel 2 -1010111111 1276.03 2 -1010111111 150.22 2 -1010111111 1318.45 2 -1010111111 22603.65 2 -1010111111 1327.33 2 -1010111111 99.871 2 -1010111111 1952.92 2 -1010111111 142.53 2 -1010111111 1956.07 2 -1010111111 2692.82 2 -1010111111 462.87 2 -1010111111 1926.18 2 -1010111111 1255.03 2 -1010111111 2,640,000 2 -1010111111 Bardai 2 -1010111111 1775.2 2 -1010111111 1244.30 2 -1010111111 158.33 2 -1010111111 1729.8 2 -1010111111 2009.42 2 -1010111111 2039.95 2 -1010111111 multitrillion 2 -1010111111 1286.58 2 -1010111111 Skrunda 2 -1010111111 1737.8 2 -1010111111 geep 2 -1010111111 KTIV-TV 2 -1010111111 114.12 2 -1010111111 2160.01 2 -1010111111 1285.96 2 -1010111111 2360.13 2 -1010111111 1926.88 2 -1010111111 2012.94 2 -1010111111 Photokina 2 -1010111111 102.35 2 -1010111111 152.70 2 -1010111111 25100.66 2 -1010111111 363.62 2 -1010111111 1307.25 2 -1010111111 99.846 2 -1010111111 2183.35 2 -1010111111 1389.4 2 -1010111111 1183.21 2 -1010111111 144.25 2 -1010111111 1202.56 2 -1010111111 2337.08 2 -1010111111 2599.49 2 -1010111111 129.88 2 -1010111111 140.98 2 -1010111111 2186.87 2 -1010111111 1279.89 2 -1010111111 8:10 2 -1010111111 1286.1 2 -1010111111 1916.11 2 -1010111111 2306 2 -1010111111 101.175 2 -1010111111 95.67 2 -1010111111 99.835 2 -1010111111 3,980 2 -1010111111 1245.91 2 -1010111111 Sohyo 2 -1010111111 2561.38 2 -1010111111 1201.09 2 -1010111111 162.55 2 -1010111111 344.66 2 -1010111111 HEC 2 -1010111111 1914.37 2 -1010111111 1747.2 2 -1010111111 141.78 2 -1010111111 141.80 2 -1010111111 1391 2 -1010111111 2352.70 2 -1010111111 1278.95 2 -1010111111 6-feet-2 2 -1010111111 1286.61 2 -1010111111 114.53 2 -1010111111 BAB 2 -1010111111 124.00 2 -1010111111 162.93 2 -1010111111 1182.77 2 -1010111111 2014.59 2 -1010111111 1317.50 2 -1010111111 153.55 2 -1010111111 25649.88 2 -1010111111 2353.61 2 -1010111111 1278.41 2 -1010111111 1727.2 2 -1010111111 2351.64 2 -1010111111 2299.4 2 -1010111111 1284.71 2 -1010111111 1320.44 2 -1010111111 2039.12 2 -1010111111 Murdochville 2 -1010111111 Ishpeming 2 -1010111111 1201.95 2 -1010111111 153.98 2 -1010111111 129.20 2 -1010111111 154.20 2 -1010111111 1270.12 2 -1010111111 Okotoks 2 -1010111111 1321.52 2 -1010111111 1930.40 2 -1010111111 0.889 2 -1010111111 Leetsdale 2 -1010111111 2608.74 2 -1010111111 130.00 2 -1010111111 1958.22 2 -1010111111 2235.24 2 -1010111111 152.77 2 -1010111111 2288.23 2 -1010111111 1295.66 2 -1010111111 128.81 2 -1010111111 Diversey 2 -1010111111 1759.8 2 -1010111111 145.53 2 -1010111111 190.20 2 -1010111111 6,330 2 -1010111111 1423.52 2 -1010111111 2076.63 2 -1010111111 1259.94 2 -1010111111 1791.1 2 -1010111111 1930.04 2 -1010111111 2613.04 2 -1010111111 2165.78 2 -1010111111 308.50 2 -1010111111 2681.61 2 -1010111111 1291.14 2 -1010111111 144.47 2 -1010111111 CIAPA 2 -1010111111 1313.45 2 -1010111111 252.19 2 -1010111111 2070.46 2 -1010111111 2391.54 2 -1010111111 1247.12 2 -1010111111 1320.75 2 -1010111111 2550 2 -1010111111 1963.86 2 -1010111111 1756.1 2 -1010111111 124.05 2 -1010111111 5,650 2 -1010111111 Greytown 2 -1010111111 4,070 2 -1010111111 2334.66 2 -1010111111 1316.09 2 -1010111111 half-mast 2 -1010111111 1189.05 2 -1010111111 2576.05 2 -1010111111 Tientsin 2 -1010111111 153.75 2 -1010111111 1262.76 2 -1010111111 1765.2 2 -1010111111 1273.74 2 -1010111111 101.20 2 -1010111111 1307.96 2 -1010111111 23918.56 2 -1010111111 4,330 2 -1010111111 153.92 2 -1010111111 2023.21 2 -1010111111 3070 2 -1010111111 1304.49 2 -1010111111 5,580 2 -1010111111 141.15 2 -1010111111 8,030 2 -1010111111 2278.22 2 -1010111111 1255.40 2 -1010111111 bed-and-breakfasts 2 -1010111111 1320.20 2 -1010111111 2226.24 2 -1010111111 Larnaca 2 -1010111111 1,607 2 -1010111111 133.04 2 -1010111111 1152.47 2 -1010111111 1238.40 2 -1010111111 1241.71 2 -1010111111 2101.71 2 -1010111111 1202.55 2 -1010111111 99.904 2 -1010111111 99.56 2 -1010111111 1198.91 2 -1010111111 2090.68 2 -1010111111 1122.98 2 -1010111111 1263.44 2 -1010111111 Charlottetown 2 -1010111111 1262.04 2 -1010111111 1235.13 2 -1010111111 1130.33 2 -1010111111 1217.46 2 -1010111111 1866.2 2 -1010111111 2647.00 2 -1010111111 1241.76 2 -1010111111 127.52 2 -1010111111 256.33 2 -1010111111 1232.90 2 -1010111111 1240.27 2 -1010111111 22834.96 2 -1010111111 1198.84 2 -1010111111 1235.11 2 -1010111111 1387.42 2 -1010111111 98.55 2 -1010111111 2647 2 -1010111111 99.963 2 -1010111111 1238.70 2 -1010111111 23298.78 2 -1010111111 2093.35 2 -1010111111 1481.6 2 -1010111111 101.76 2 -1010111111 1230.09 2 -1010111111 7,120 2 -1010111111 1169.42 2 -1010111111 2640.18 2 -1010111111 146.60 2 -1010111111 1377.00 2 -1010111111 2372.16 2 -1010111111 1171.01 2 -1010111111 2148.29 2 -1010111111 1169.38 2 -1010111111 1247.14 2 -1010111111 126.15 2 -1010111111 2,430 2 -1010111111 1239.16 2 -1010111111 147.00 2 -1010111111 1171.72 2 -1010111111 321.83 2 -1010111111 49.39 2 -1010111111 1179.21 2 -1010111111 1247.49 2 -1010111111 2640.99 2 -1010111111 unburied 2 -1010111111 1243.31 2 -1010111111 141.43 2 -1010111111 125.68 2 -1010111111 127.23 2 -1010111111 2471.44 2 -1010111111 2286.93 2 -1010111111 5,410 2 -1010111111 1835.2 2 -1010111111 305.23 2 -1010111111 260.64 2 -1010111111 WJBK 2 -1010111111 1131.16 2 -1010111111 1373.98 2 -1010111111 145.60 2 -1010111111 1156.39 2 -1010111111 unlaced 2 -1010111111 1160.32 2 -1010111111 1277.23 2 -1010111111 1228.37 2 -1010111111 1167.74 2 -1010111111 99.473 2 -1010111111 1230.07 2 -1010111111 1459.1 2 -1010111111 351.74 2 -1010111111 2482.21 2 -1010111111 1153.19 2 -1010111111 2366.5 2 -1010111111 129.95 2 -1010111111 2104.02 2 -1010111111 137.76 2 -1010111111 1229.93 2 -1010111111 1430.7 2 -1010111111 1949.10 2 -1010111111 1209.88 2 -1010111111 124.30 2 -1010111111 1961.37 2 -1010111111 100.90 2 -1010111111 124.38 2 -1010111111 131.10 2 -1010111111 1962.53 2 -1010111111 97.40 2 -1010111111 1206.42 2 -1010111111 1250.36 2 -1010111111 1259.10 2 -1010111111 1300.84 2 -1010111111 21546.50 2 -1010111111 1383.09 2 -1010111111 656.5 2 -1010111111 158.25 2 -1010111111 1247.77 2 -1010111111 130.35 2 -1010111111 136.27 2 -1010111111 1239.78 2 -1010111111 Dallas-Ft 2 -1010111111 456.93 2 -1010111111 188.14 2 -1010111111 1973.1 2 -1010111111 1206.95 2 -1010111111 2087.48 2 -1010111111 11,089 2 -1010111111 133.13 2 -1010111111 1236.63 2 -1010111111 1257.27 2 -1010111111 1210.07 2 -1010111111 97.30 2 -1010111111 5:10 2 -1010111111 1195.67 2 -1010111111 1243.75 2 -1010111111 1203.30 2 -1010111111 9:46 2 -1010111111 135.20 2 -1010111111 3,260 2 -1010111111 1,723 2 -1010111111 1177 2 -1010111111 1289.87 2 -1010111111 1240.86 2 -1010111111 1952.59 2 -1010111111 2081.08 2 -1010111111 1203.64 2 -1010111111 313.93 2 -1010111111 1298.85 2 -1010111111 1238.49 2 -1010111111 125.67 2 -1010111111 3900 2 -1010111111 4,270 2 -1010111111 1232.73 2 -1010111111 139.05 2 -1010111111 1810.3 2 -1010111111 2,187 2 -1010111111 1252.80 2 -1010111111 1226.40 2 -1010111111 1243.38 2 -1010111111 1653.9 2 -1010111111 1482.1 2 -1010111111 1382.74 2 -1010111111 3,830 2 -1010111111 1231.92 2 -1010111111 1240.63 2 -1010111111 1239.44 2 -1010111111 1237.64 2 -1010111111 133.50 2 -1010111111 323.30 2 -1010111111 1240.67 2 -1010111111 2075.21 2 -1010111111 132.81 2 -1010111111 1257.44 2 -1010111111 1215.33 2 -1010111111 1232.0 2 -1010111111 124.78 2 -1010111111 21036.76 2 -1010111111 1207.13 2 -1010111111 1198.24 2 -1010111111 18,200 2 -1010111111 134.60 2 -1010111111 1271.84 2 -1010111111 4860 2 -1010111111 1375.30 2 -1010111111 2320.45 2 -1010111111 99.475 2 -1010111111 74.93 2 -1010111111 1262.85 2 -1010111111 1242.77 2 -1010111111 117.25 2 -1010111111 1234.64 2 -1010111111 1262.06 2 -1010111111 2131.22 2 -1010111111 152.93 2 -1010111111 102.70 2 -1010111111 1251.52 2 -1010111111 1215.74 2 -1010111111 1210 2 -1010111111 1380 2 -1010111111 1259.01 2 -1010111111 1212.13 2 -1010111111 142.05 2 -1010111111 143.09 2 -1010111111 1336.84 2 -1010111111 1214.31 2 -1010111111 1254.20 2 -1010111111 1234.71 2 -1010111111 Arkhangelsk 2 -1010111111 139.78 2 -1010111111 1268.85 2 -1010111111 2149.89 2 -1010111111 2105.26 2 -1010111111 271.38 2 -1010111111 1496.7 2 -1010111111 1282.03 2 -1010111111 1328.96 2 -1010111111 1254.68 2 -1010111111 1211.53 2 -1010111111 4,080 2 -1010111111 138.77 2 -1010111111 102.90 2 -1010111111 1264.19 2 -1010111111 ShoWest 2 -1010111111 1496.5 2 -1010111111 2270.60 2 -1010111111 2130.51 2 -1010111111 1216.22 2 -1010111111 1224.65 2 -1010111111 101.90 2 -1010111111 1261.92 2 -1010111111 130.84 2 -1010111111 Fushun 2 -1010111111 2329.68 2 -1010111111 1285.25 2 -1010111111 131.37 2 -1010111111 2053.70 2 -1010111111 1286.96 2 -1010111111 2299.57 2 -1010111111 127.80 2 -1010111111 Rijeka 2 -1010111111 132.53 2 -1010111111 1266.68 2 -1010111111 123.10 2 -1010111111 1250.22 2 -1010111111 2286.22 2 -1010111111 182.85 2 -1010111111 1217.98 2 -1010111111 1213.28 2 -1010111111 385.67 2 -1010111111 34899.34 2 -1010111111 136.72 2 -1010111111 127.90 2 -1010111111 1180.52 2 -1010111111 1259.30 2 -1010111111 1255.37 2 -1010111111 102.60 2 -1010111111 1260.39 2 -1010111111 1218.94 2 -1010111111 2060.99 2 -1010111111 1844.8 2 -1010111111 2133.36 2 -1010111111 1254.01 2 -1010111111 2073.97 2 -1010111111 1314.00 2 -1010111111 1221.11 2 -1010111111 5,420 2 -1010111111 133.37 2 -1010111111 1249.33 2 -1010111111 162.25 2 -1010111111 2322.60 2 -1010111111 2131.58 2 -1010111111 1807.3 2 -1010111111 391.66 2 -1010111111 1260.26 2 -1010111111 1251.69 2 -1010111111 1238.29 2 -1010111111 1235.73 2 -1010111111 1248.42 2 -1010111111 133.85 2 -1010111111 1253.82 2 -1010111111 133.10 2 -1010111111 1339.86 2 -1010111111 2338.78 2 -1010111111 138.85 2 -1010111111 1247.13 2 -1010111111 1240.26 2 -1010111111 97.10 2 -1010111111 130.45 2 -1010111111 144.60 2 -1010111111 1178.64 2 -1010111111 1355.99 2 -1010111111 1177.69 2 -1010111111 1849.8 2 -1010111111 141.89 2 -1010111111 1225.52 2 -1010111111 1165.15 2 -1010111111 1244.24 2 -1010111111 1320.53 2 -1010111111 1192.30 2 -1010111111 260.71 2 -1010111111 1477.6 2 -1010111111 3,380 2 -1010111111 2121.98 2 -1010111111 1192.95 2 -1010111111 1177.06 2 -1010111111 143.25 2 -1010111111 130.99 2 -1010111111 1250.79 2 -1010111111 Orono 2 -1010111111 1843.2 2 -1010111111 Ringaskiddy 2 -1010111111 1227.37 2 -1010111111 9:10 2 -1010111111 1740 2 -1010111111 2006.3 2 -1010111111 394.15 2 -1010111111 1275.13 2 -1010111111 2327.5 2 -1010111111 1223.77 2 -1010111111 1857.6 2 -1010111111 1485.6 2 -1010111111 125.28 2 -1010111111 12:31 2 -1010111111 1256.51 2 -1010111111 2145.80 2 -1010111111 1857.8 2 -1010111111 1272.00 2 -1010111111 1231.06 2 -1010111111 387.72 2 -1010111111 102.20 2 -1010111111 38,600 2 -1010111111 1313.69 2 -1010111111 1219.90 2 -1010111111 279.06 2 -1010111111 1236.16 2 -1010111111 1248.58 2 -1010111111 1478.8 2 -1010111111 140.27 2 -1010111111 1825.7 2 -1010111111 1246.80 2 -1010111111 2126.60 2 -1010111111 122.50 2 -1010111111 122.55 2 -1010111111 1235.62 2 -1010111111 133.78 2 -1010111111 137.86 2 -1010111111 1247.52 2 -1010111111 2106.15 2 -1010111111 2122.69 2 -1010111111 2860 2 -1010111111 1233.73 2 -1010111111 2:50 2 -1010111111 1840.6 2 -1010111111 275.15 2 -1010111111 1253.14 2 -1010111111 27700.13 2 -1010111111 1239.60 2 -1010111111 1255.42 2 -1010111111 129.65 2 -1010111111 1257.92 2 -1010111111 144.85 2 -1010111111 392.47 2 -1010111111 Baie-Comeau 2 -1010111111 1272.52 2 -1010111111 1916.90 2 -1010111111 135.60 2 -1010111111 1768.0 2 -1010111111 1259.08 2 -1010111111 1249.77 2 -1010111111 1288.53 2 -1010111111 162.54 2 -1010111111 162.20 2 -1010111111 162.30 2 -1010111111 15,000-to-1 2 -1010111111 1237.20 2 -1010111111 140.70 2 -1010111111 2709.54 2 -1010111111 1282.73 2 -1010111111 1998.34 2 -1010111111 1273.85 2 -1010111111 BHF-Bank 2 -1010111111 335.30 2 -1010111111 27341.58 2 -1010111111 1254.03 2 -1010111111 1758.2 2 -1010111111 2,570 2 -1010111111 145.94 2 -1010111111 1258.85 2 -1010111111 1202.41 2 -1010111111 1259.12 2 -1010111111 4,620 2 -1010111111 5,080 2 -1010111111 294.57 2 -1010111111 2592.00 2 -1010111111 3700 2 -1010111111 2095.99 2 -1010111111 1261.01 2 -1010111111 unplanted 2 -1010111111 151.02 2 -1010111111 1282.47 2 -1010111111 1256.47 2 -1010111111 8,910 2 -1010111111 128.02 2 -1010111111 1271.19 2 -1010111111 100.45 2 -1010111111 99.97 2 -1010111111 2685.43 2 -1010111111 1269.37 2 -1010111111 74.00 2 -1010111111 1778.6 2 -1010111111 98.125 2 -1010111111 1261.05 2 -1010111111 152.41 2 -1010111111 1238.35 2 -1010111111 1262.52 2 -1010111111 130.95 2 -1010111111 1785.3 2 -1010111111 126.65 2 -1010111111 2650 2 -1010111111 Auvers 2 -1010111111 1258.69 2 -1010111111 151.20 2 -1010111111 1272.18 2 -1010111111 130.43 2 -1010111111 1070 2 -1010111111 2720 2 -1010111111 1258.04 2 -1010111111 138.95 2 -1010111111 1425.09 2 -1010111111 377.96 2 -1010111111 135.25 2 -1010111111 135.15 2 -1010111111 1651.6 2 -1010111111 1300.96 2 -1010111111 1867.04 2 -1010111111 1196.67 2 -1010111111 99.932 2 -1010111111 1203.77 2 -1010111111 1300.86 2 -1010111111 254.50 2 -1010111111 2050.07 2 -1010111111 1196.27 2 -1010111111 Semipalatinsk 2 -1010111111 132.86 2 -1010111111 1639.3 2 -1010111111 133.60 2 -1010111111 1947.27 2 -1010111111 2038.23 2 -1010111111 800,000-strong 2 -1010111111 131.07 2 -1010111111 1205.05 2 -1010111111 5-feet-5 2 -1010111111 slow-pitch 2 -1010111111 1210.04 2 -1010111111 25682.82 2 -1010111111 5,260 2 -1010111111 2064.32 2 -1010111111 1290.16 2 -1010111111 27870.44 2 -1010111111 1230.89 2 -1010111111 161.85 2 -1010111111 4,980 2 -1010111111 1425.4 2 -1010111111 2017.43 2 -1010111111 1300.16 2 -1010111111 3,770 2 -1010111111 2381.3 2 -1010111111 1256.11 2 -1010111111 1301.32 2 -1010111111 2034.98 2 -1010111111 hodori 2 -1010111111 1224.76 2 -1010111111 126.00 2 -1010111111 1207.73 2 -1010111111 1232.62 2 -1010111111 1819.2 2 -1010111111 341.99 2 -1010111111 237.08 2 -1010111111 1200.53 2 -1010111111 132.42 2 -1010111111 1233.38 2 -1010111111 1230.10 2 -1010111111 3.0987 2 -1010111111 1279.19 2 -1010111111 1231.85 2 -1010111111 26500 2 -1010111111 136.50 2 -1010111111 1275.29 2 -1010111111 74.20 2 -1010111111 1573.5 2 -1010111111 687.5 2 -1010111111 1275.69 2 -1010111111 1340 2 -1010111111 Bure 2 -1010111111 6,690 2 -1010111111 1223.09 2 -1010111111 72.33 2 -1010111111 26768.15 2 -1010111111 136.60 2 -1010111111 Nanterre 2 -1010111111 monkfish 2 -1010111111 1298.66 2 -1010111111 99.852 2 -1010111111 1828.1 2 -1010111111 1222.66 2 -1010111111 2295.81 2 -1010111111 3,960 2 -1010111111 1280.43 2 -1010111111 1939.68 2 -1010111111 1279.39 2 -1010111111 162.90 2 -1010111111 5,010 2 -1010111111 5,110 2 -1010111111 1233.20 2 -1010111111 27799.67 2 -1010111111 1307.27 2 -1010111111 128.80 2 -1010111111 2429.53 2 -1010111111 1626.9 2 -1010111111 1241.59 2 -1010111111 2225.77 2 -1010111111 16:00-18:00 2 -1010111111 3:21 2 -1010111111 1236.28 2 -1010111111 87-27 2 -1010111111 1197.72 2 -1010111111 11:57 2 -1010111111 1838.5 2 -1010111111 92.38 2 -1010111111 2036.31 2 -1010111111 Saint-Cloud 2 -1010111111 Kolkhoznaya 2 -1010111111 Kiyevskaya 2 -1010111111 1311.41 2 -1010111111 125.97 2 -1010111111 150.40 2 -1010111111 1438.0 2 -1010111111 1997.35 2 -1010111111 6:10 2 -1010111111 2269.8 2 -1010111111 127.04 2 -1010111111 1297.58 2 -1010111111 1440.1 2 -1010111111 2007.46 2 -1010111111 2328.1 2 -1010111111 149.35 2 -1010111111 1304.46 2 -1010111111 1765.1 2 -1010111111 2452.97 2 -1010111111 99.596 2 -1010111111 100.80 2 -1010111111 1293.09 2 -1010111111 1816.8 2 -1010111111 138.05 2 -1010111111 2032.33 2 -1010111111 1298.08 2 -1010111111 149.01 2 -1010111111 1237.97 2 -1010111111 23472.42 2 -1010111111 583.5 2 -1010111111 1304.39 2 -1010111111 1300.93 2 -1010111111 2455.99 2 -1010111111 2363.49 2 -1010111111 73.65 2 -1010111111 Commerce. 2 -1010111111 1234.83 2 -1010111111 1247.51 2 -1010111111 1295.46 2 -1010111111 2451.21 2 -1010111111 150.12 2 -1010111111 124.76 2 -1010111111 1228.66 2 -1010111111 2098.15 2 -1010111111 147.10 2 -1010111111 1307.81 2 -1010111111 123.73 2 -1010111111 23419.60 2 -1010111111 99.845 2 -1010111111 1314.80 2 -1010111111 1990.55 2 -1010111111 1315.94 2 -1010111111 338.48 2 -1010111111 133.20 2 -1010111111 139.57 2 -1010111111 233.50 2 -1010111111 3,060 2 -1010111111 1236.01 2 -1010111111 242.90 2 -1010111111 1946.95 2 -1010111111 100.20 2 -1010111111 21,627.57 2 -1010111111 134.43 2 -1010111111 136.88 2 -1010111111 1216.57 2 -1010111111 1226.56 2 -1010111111 Cotulla 2 -1010111111 1299.33 2 -1010111111 3,490 2 -1010111111 4,120 2 -1010111111 2446.91 2 -1010111111 HDI 2 -1010111111 1225.77 2 -1010111111 145.30 2 -1010111111 1298.82 2 -1010111111 1300.03 2 -1010111111 1227.47 2 -1010111111 2003.65 2 -1010111111 125.35 2 -1010111111 1308.39 2 -1010111111 Babayevskaya 2 -1010111111 1195.99 2 -1010111111 2428.41 2 -1010111111 202-376-0388 2 -1010111111 2436.86 2 -1010111111 4,560 2 -1010111111 1773.4 2 -1010111111 1968.00 2 -1010111111 124.54 2 -1010111111 half-staff 2 -1010111111 1245.94 2 -1010111111 139.95 2 -1010111111 1258.18 2 -1010111111 1263.70 2 -1010111111 1298.50 2 -1010111111 1999.50 2 -1010111111 1241.88 2 -1010111111 1246.48 2 -1010111111 1269.46 2 -1010111111 1244.84 2 -1010111111 1266.76 2 -1010111111 116.58 2 -1010111111 1241.26 2 -1010111111 2493.94 2 -1010111111 1285.93 2 -1010111111 Bonaire 2 -1010111111 Khesanh 2 -1010111111 1987.40 2 -1010111111 133.41 2 -1010111111 373.20 2 -1010111111 1268.57 2 -1010111111 1260.79 2 -1010111111 1245.36 2 -1010111111 1787.2 2 -1010111111 129.55 2 -1010111111 Wahnfried 2 -1010111111 1248.24 2 -1010111111 2307.8 2 -1010111111 24172.60 2 -1010111111 1276.67 2 -1010111111 1278.44 2 -1010111111 120-to-140 2 -1010111111 146.13 2 -1010111111 2566.65 2 -1010111111 Astara 2 -1010111111 2016.00 2 -1010111111 347.10 2 -1010111111 2008.12 2 -1010111111 7,880 2 -1010111111 4,830 2 -1010111111 1268.31 2 -1010111111 13-6 2 -1010111111 1252.79 2 -1010111111 1244.03 2 -1010111111 2068.81 2 -1010111111 1261.10 2 -1010111111 3,720 2 -1010111111 124.89 2 -1010111111 1247.85 2 -1010111111 2280.40 2 -1010111111 1800.8 2 -1010111111 1279.85 2 -1010111111 151.25 2 -1010111111 3530 2 -1010111111 1290.69 2 -1010111111 2419.2 2 -1010111111 Cukurca 2 -1010111111 2083.04 2 -1010111111 1290.21 2 -1010111111 1,136 2 -1010111111 127.83 2 -1010111111 2483.74 2 -1010111111 2041.28 2 -1010111111 1237.26 2 -1010111111 138.14 2 -1010111111 1296.96 2 -1010111111 1292.08 2 -1010111111 1246.17 2 -1010111111 2025.96 2 -1010111111 114.57 2 -1010111111 2471.94 2 -1010111111 1273.23 2 -1010111111 2470.18 2 -1010111111 1420.53 2 -1010111111 27213.45 2 -1010111111 12:20 2 -1010111111 27330.09 2 -1010111111 18-to-34-year-olds 2 -1010111111 DQ 2 -1010111111 99.604 2 -1010111111 148.60 2 -1010111111 1936.16 2 -1010111111 1248.12 2 -1010111111 1413.3 2 -1010111111 153.56 3 -1010111111 2713.72 3 -1010111111 2257.45 3 -1010111111 2244.09 3 -1010111111 73.61 3 -1010111111 132.11 3 -1010111111 142.14 3 -1010111111 99.775 3 -1010111111 2107.28 3 -1010111111 1284.70 3 -1010111111 139.40 3 -1010111111 142.43 3 -1010111111 2687.31 3 -1010111111 153.80 3 -1010111111 99.40 3 -1010111111 147.65 3 -1010111111 144.28 3 -1010111111 115.77 3 -1010111111 130.50 3 -1010111111 2728.15 3 -1010111111 153.93 3 -1010111111 150.03 3 -1010111111 145.98 3 -1010111111 2216.54 3 -1010111111 163.38 3 -1010111111 99.895 3 -1010111111 123.40 3 -1010111111 2278.41 3 -1010111111 2002.5 3 -1010111111 7:00 3 -1010111111 1565.2 3 -1010111111 126.41 3 -1010111111 2369.18 3 -1010111111 130.51 3 -1010111111 153.40 3 -1010111111 139.10 3 -1010111111 148.85 3 -1010111111 1251.43 3 -1010111111 2704.41 3 -1010111111 espresso 3 -1010111111 162.00 3 -1010111111 99.00 3 -1010111111 161.95 3 -1010111111 139.23 3 -1010111111 1912.54 3 -1010111111 1914.23 3 -1010111111 97.16 3 -1010111111 162.24 3 -1010111111 2707.26 3 -1010111111 135.98 3 -1010111111 2719.79 3 -1010111111 128.17 3 -1010111111 1923.65 3 -1010111111 2641.12 3 -1010111111 NCAR 3 -1010111111 1930.26 3 -1010111111 2310.68 3 -1010111111 Swansea 3 -1010111111 2910 3 -1010111111 162.88 3 -1010111111 2706.88 3 -1010111111 2201.49 3 -1010111111 2191.23 3 -1010111111 2339.20 3 -1010111111 2663.94 3 -1010111111 1530 3 -1010111111 2673.06 3 -1010111111 132.25 3 -1010111111 2275.99 3 -1010111111 2657.44 3 -1010111111 131.12 3 -1010111111 2360 3 -1010111111 129.57 3 -1010111111 444.5 3 -1010111111 99.925 3 -1010111111 Melmac 3 -1010111111 152.59 3 -1010111111 99.54 3 -1010111111 2282.95 3 -1010111111 4,370 3 -1010111111 140.90 3 -1010111111 139.35 3 -1010111111 161.25 3 -1010111111 153.94 3 -1010111111 4,680 3 -1010111111 140.28 3 -1010111111 139.45 3 -1010111111 147.17 3 -1010111111 seances 3 -1010111111 1237.68 3 -1010111111 2215.87 3 -1010111111 139.63 3 -1010111111 2732.36 3 -1010111111 143.30 3 -1010111111 2680.28 3 -1010111111 2316.05 3 -1010111111 338.05 3 -1010111111 129.11 3 -1010111111 145.93 3 -1010111111 1403.17 3 -1010111111 139.60 3 -1010111111 152.20 3 -1010111111 1262.09 3 -1010111111 115.10 3 -1010111111 171.08 3 -1010111111 145.90 3 -1010111111 146.10 3 -1010111111 2372.59 3 -1010111111 146.44 3 -1010111111 8,680 3 -1010111111 152.08 3 -1010111111 151.75 3 -1010111111 27819.98 3 -1010111111 P15 3 -1010111111 2052.45 3 -1010111111 125.43 3 -1010111111 135.70 3 -1010111111 136.06 3 -1010111111 126.67 3 -1010111111 2071.30 3 -1010111111 129.40 3 -1010111111 144.38 3 -1010111111 2014.09 3 -1010111111 Sebree 3 -1010111111 1308.29 3 -1010111111 1959.05 3 -1010111111 1900.20 3 -1010111111 2017.57 3 -1010111111 127.88 3 -1010111111 1257.03 3 -1010111111 1234.43 3 -1010111111 1950.76 3 -1010111111 1993.53 3 -1010111111 99.84 3 -1010111111 140.88 3 -1010111111 125.78 3 -1010111111 126.79 3 -1010111111 1240.43 3 -1010111111 copyrighting 3 -1010111111 123.55 3 -1010111111 Fingerbone 3 -1010111111 135.48 3 -1010111111 124.56 3 -1010111111 1249.59 3 -1010111111 137.18 3 -1010111111 135.30 3 -1010111111 1939.16 3 -1010111111 1958.72 3 -1010111111 124.91 3 -1010111111 135.53 3 -1010111111 134.65 3 -1010111111 1245.83 3 -1010111111 136.35 3 -1010111111 27669.72 3 -1010111111 1913.63 3 -1010111111 1923.08 3 -1010111111 135.40 3 -1010111111 129.27 3 -1010111111 2640 3 -1010111111 134.73 3 -1010111111 123.48 3 -1010111111 1252.03 3 -1010111111 123.30 3 -1010111111 1950.10 3 -1010111111 2596.28 3 -1010111111 140.00 3 -1010111111 128.55 3 -1010111111 1914.46 3 -1010111111 143.65 3 -1010111111 146.78 3 -1010111111 146.85 3 -1010111111 1895.72 3 -1010111111 1879.31 3 -1010111111 2602.04 3 -1010111111 2549.27 3 -1010111111 2585.67 3 -1010111111 1720 3 -1010111111 2130.87 3 -1010111111 2566.42 3 -1010111111 143.97 3 -1010111111 2280.09 3 -1010111111 Lafite-Rothschild 3 -1010111111 130.40 3 -1010111111 1923.57 3 -1010111111 2142.96 3 -1010111111 6,090 3 -1010111111 Lauzon 3 -1010111111 M-TEC 3 -1010111111 1841.5 3 -1010111111 144.95 3 -1010111111 101.75 3 -1010111111 cockfights 3 -1010111111 130.09 3 -1010111111 2005.97 3 -1010111111 2286.36 3 -1010111111 384.60 3 -1010111111 22349.37 3 -1010111111 101.80 3 -1010111111 99.68 3 -1010111111 Hunt-Wesson 3 -1010111111 Hogs 3 -1010111111 2000.99 3 -1010111111 2377.73 3 -1010111111 144.73 3 -1010111111 2094.24 3 -1010111111 126.36 3 -1010111111 1239.43 3 -1010111111 6,470 3 -1010111111 4,710 3 -1010111111 1962.04 3 -1010111111 128.57 3 -1010111111 dichlorvos 3 -1010111111 1983.26 3 -1010111111 2508.16 3 -1010111111 129.08 3 -1010111111 143.89 3 -1010111111 1274.29 3 -1010111111 1284.01 3 -1010111111 2675.06 3 -1010111111 149.55 3 -1010111111 2639.35 3 -1010111111 144.05 3 -1010111111 141.92 3 -1010111111 98.10 3 -1010111111 1979.77 3 -1010111111 132.45 3 -1010111111 half-power 3 -1010111111 152.73 3 -1010111111 2467.95 3 -1010111111 1248.06 3 -1010111111 2044.76 3 -1010111111 2487.72 3 -1010111111 Urbana 3 -1010111111 152.31 3 -1010111111 127.98 3 -1010111111 bell-bottoms 3 -1010111111 Kliptown 3 -1010111111 139.26 3 -1010111111 467.57 3 -1010111111 133.17 3 -1010111111 1271.31 3 -1010111111 128.63 3 -1010111111 6,380 3 -1010111111 124.15 3 -1010111111 5,520 3 -1010111111 1273.64 3 -1010111111 138.38 3 -1010111111 2,530 3 -1010111111 2654.66 3 -1010111111 123.85 3 -1010111111 78.35 3 -1010111111 151.14 3 -1010111111 99.675 3 -1010111111 1,539 3 -1010111111 1253.29 3 -1010111111 151.46 3 -1010111111 126.48 3 -1010111111 1978.12 3 -1010111111 RPI 3 -1010111111 149.51 3 -1010111111 150.13 3 -1010111111 99.81 3 -1010111111 1252.33 3 -1010111111 132.00 3 -1010111111 2248.44 3 -1010111111 2709.50 3 -1010111111 142.68 3 -1010111111 12-to-1 3 -1010111111 6,150 3 -1010111111 1255.71 3 -1010111111 2594.23 3 -1010111111 146.35 3 -1010111111 150.82 3 -1010111111 1988.06 3 -1010111111 151.68 3 -1010111111 128.15 3 -1010111111 146.37 3 -1010111111 1301.06 3 -1010111111 124.47 3 -1010111111 2074.27 3 -1010111111 146.38 3 -1010111111 2284.80 3 -1010111111 127.36 3 -1010111111 1772.1 3 -1010111111 1305.19 3 -1010111111 1990.38 3 -1010111111 74.60 3 -1010111111 1245.74 3 -1010111111 126.45 3 -1010111111 1777.6 3 -1010111111 127.27 3 -1010111111 153.45 3 -1010111111 1260.93 3 -1010111111 1978.45 3 -1010111111 1230.58 3 -1010111111 124.70 3 -1010111111 1311.47 3 -1010111111 146.01 3 -1010111111 2007.63 3 -1010111111 132.73 3 -1010111111 98.20 3 -1010111111 P&D 3 -1010111111 1975.30 3 -1010111111 124.52 3 -1010111111 127.12 3 -1010111111 150.18 3 -1010111111 1868.37 3 -1010111111 125.18 3 -1010111111 2840 3 -1010111111 153.65 3 -1010111111 148.83 3 -1010111111 223.60 3 -1010111111 145.73 3 -1010111111 2067.14 3 -1010111111 151.09 3 -1010111111 124.87 3 -1010111111 1670 3 -1010111111 131.98 3 -1010111111 113.56 3 -1010111111 128.20 3 -1010111111 148.76 3 -1010111111 1223.17 3 -1010111111 2449.78 3 -1010111111 148.90 3 -1010111111 129.05 3 -1010111111 Rakaposhi 3 -1010111111 1225.06 3 -1010111111 1902.52 3 -1010111111 133.00 3 -1010111111 4,390 3 -1010111111 129.00 3 -1010111111 1855.44 3 -1010111111 151.35 3 -1010111111 151.48 3 -1010111111 1225.35 3 -1010111111 153.33 3 -1010111111 2107.75 3 -1010111111 2037.80 3 -1010111111 151.86 3 -1010111111 1249.63 3 -1010111111 131.80 3 -1010111111 2280 3 -1010111111 2106.51 3 -1010111111 132.18 3 -1010111111 130.23 3 -1010111111 159.49 3 -1010111111 132.68 3 -1010111111 7:45 3 -1010111111 2128.73 3 -1010111111 131.00 3 -1010111111 159.98 3 -1010111111 134.03 3 -1010111111 134.57 3 -1010111111 121.10 3 -1010111111 2119.31 3 -1010111111 158.81 3 -1010111111 158.03 3 -1010111111 2102.06 3 -1010111111 129.42 3 -1010111111 121.65 3 -1010111111 159.25 3 -1010111111 1250.24 3 -1010111111 1231.84 3 -1010111111 132.10 3 -1010111111 133.90 3 -1010111111 1974.83 3 -1010111111 1220.14 3 -1010111111 127.70 3 -1010111111 162.75 3 -1010111111 140.12 3 -1010111111 134.35 3 -1010111111 1281.22 3 -1010111111 1912.12 3 -1010111111 1256.31 3 -1010111111 Danang 3 -1010111111 2156.47 3 -1010111111 1908.61 3 -1010111111 2140.47 3 -1010111111 141.00 3 -1010111111 1928.55 3 -1010111111 1240.97 3 -1010111111 2773.56 3 -1010111111 130.24 3 -1010111111 1199.05 3 -1010111111 139.30 3 -1010111111 115.73 3 -1010111111 1197.28 3 -1010111111 153.20 3 -1010111111 97.70 3 -1010111111 2027.03 3 -1010111111 97.22 3 -1010111111 151.93 3 -1010111111 4,040 3 -1010111111 1-800-638-2772 3 -1010111111 grantsmanship 3 -1010111111 135.93 3 -1010111111 2,660,000 3 -1010111111 1194.42 3 -1010111111 Portside 3 -1010111111 136.03 3 -1010111111 4,740 3 -1010111111 6,770 3 -1010111111 7,950 3 -1010111111 134.27 3 -1010111111 2773.36 3 -1010111111 133.87 3 -1010111111 132.70 3 -1010111111 157.42 3 -1010111111 98.70 3 -1010111111 101.10 3 -1010111111 157.62 3 -1010111111 Manzanar 3 -1010111111 133.31 3 -1010111111 265.49 3 -1010111111 sixes 3 -1010111111 2092.28 3 -1010111111 135.75 3 -1010111111 100.85 3 -1010111111 128.77 3 -1010111111 113.98 3 -1010111111 130.75 3 -1010111111 155.55 3 -1010111111 134.05 3 -1010111111 133.56 3 -1010111111 2035.01 3 -1010111111 Bluefields 3 -1010111111 2148.65 3 -1010111111 249.50 3 -1010111111 5,860 3 -1010111111 2635.24 3 -1010111111 131.31 3 -1010111111 128.53 3 -1010111111 1918.31 3 -1010111111 151.39 3 -1010111111 2111.31 3 -1010111111 2342.19 3 -1010111111 10:34 3 -1010111111 1269.02 3 -1010111111 2129.45 3 -1010111111 131.02 3 -1010111111 124.72 3 -1010111111 378.77 3 -1010111111 2065.08 3 -1010111111 2092.64 3 -1010111111 143.39 3 -1010111111 2,740,000 3 -1010111111 2156.83 3 -1010111111 3,330 3 -1010111111 1920.59 3 -1010111111 1251.81 3 -1010111111 2114.69 3 -1010111111 127.13 3 -1010111111 133.98 3 -1010111111 122.23 3 -1010111111 1944.63 3 -1010111111 1316.84 3 -1010111111 99.867 3 -1010111111 1275.17 3 -1010111111 2150.96 3 -1010111111 2270 3 -1010111111 Doudian 3 -1010111111 2097.26 3 -1010111111 2165.18 3 -1010111111 267.20 3 -1010111111 1946.45 3 -1010111111 164.03 3 -1010111111 143.04 3 -1010111111 131.90 3 -1010111111 128.90 3 -1010111111 142.56 3 -1010111111 3,580 3 -1010111111 1936.34 3 -1010111111 376.51 3 -1010111111 1761.3 3 -1010111111 2530.19 3 -1010111111 127.60 4 -1010111111 125.73 4 -1010111111 gnats 4 -1010111111 132.43 4 -1010111111 153.58 4 -1010111111 1244.35 4 -1010111111 2118.24 4 -1010111111 2100.64 4 -1010111111 134.24 4 -1010111111 2516.64 4 -1010111111 knock-down 4 -1010111111 2496.97 4 -1010111111 1250.27 4 -1010111111 1236.55 4 -1010111111 145.20 4 -1010111111 97.90 4 -1010111111 2230.54 4 -1010111111 152.95 4 -1010111111 2124.64 4 -1010111111 99.20 4 -1010111111 2737.27 4 -1010111111 146.45 4 -1010111111 mealtimes 4 -1010111111 2127.49 4 -1010111111 133.93 4 -1010111111 129.25 4 -1010111111 Soyuztorgreklama 4 -1010111111 2285.94 4 -1010111111 2551.08 4 -1010111111 2039.30 4 -1010111111 125.59 4 -1010111111 6-foot-1 4 -1010111111 126.38 4 -1010111111 1990.22 4 -1010111111 132.26 4 -1010111111 136.26 4 -1010111111 2002.31 4 -1010111111 128.26 4 -1010111111 136.53 4 -1010111111 2744.68 4 -1010111111 misdirection 4 -1010111111 143.45 4 -1010111111 3,680 4 -1010111111 2038.58 4 -1010111111 120.45 4 -1010111111 123.00 4 -1010111111 2693.29 4 -1010111111 1,860 4 -1010111111 1198.01 4 -1010111111 2669.32 4 -1010111111 2026.67 4 -1010111111 2077.17 4 -1010111111 128.23 4 -1010111111 2090.19 4 -1010111111 133.86 4 -1010111111 distress-sale 4 -1010111111 2539.54 4 -1010111111 2307.30 4 -1010111111 2613.05 4 -1010111111 150.45 4 -1010111111 133.99 4 -1010111111 150.63 4 -1010111111 2687.78 4 -1010111111 2639.20 4 -1010111111 2510.04 4 -1010111111 2601.50 4 -1010111111 146.05 4 -1010111111 140.83 4 -1010111111 Jamba 4 -1010111111 2067.03 4 -1010111111 100.75 4 -1010111111 2,210 4 -1010111111 135.58 4 -1010111111 Lindenmere 4 -1010111111 1922.25 4 -1010111111 11:25 4 -1010111111 133.66 4 -1010111111 124.35 4 -1010111111 125.48 4 -1010111111 135.84 4 -1010111111 3150 4 -1010111111 1846.49 4 -1010111111 136.25 4 -1010111111 2653.45 4 -1010111111 2140.83 4 -1010111111 135.81 4 -1010111111 136.80 4 -1010111111 134.78 4 -1010111111 1950.43 4 -1010111111 131.15 4 -1010111111 130.70 4 -1010111111 142.60 4 -1010111111 131.67 4 -1010111111 135.23 4 -1010111111 135.95 4 -1010111111 134.00 4 -1010111111 143.00 4 -1010111111 1256.54 4 -1010111111 135.55 4 -1010111111 139.55 4 -1010111111 2304.69 4 -1010111111 2,840 4 -1010111111 2064.01 4 -1010111111 1,270 4 -1010111111 1,740 4 -1010111111 127.58 4 -1010111111 134.80 4 -1010111111 2678.11 4 -1010111111 3,430 4 -1010111111 98.45 4 -1010111111 1250.97 4 -1010111111 127.46 4 -1010111111 139.38 4 -1010111111 1945.29 4 -1010111111 2650.99 4 -1010111111 137.51 4 -1010111111 142.90 4 -1010111111 145.83 4 -1010111111 135.10 4 -1010111111 1960.21 4 -1010111111 135.46 4 -1010111111 2,090 4 -1010111111 1846.82 4 -1010111111 2137.27 4 -1010111111 138.48 4 -1010111111 134.25 4 -1010111111 115.39 4 -1010111111 143.85 4 -1010111111 206-205 4 -1010111111 1878.15 4 -1010111111 134.15 4 -1010111111 142.75 4 -1010111111 2412.70 4 -1010111111 129.35 4 -1010111111 142.30 4 -1010111111 140.30 4 -1010111111 146.80 4 -1010111111 2436.70 4 -1010111111 99.89 4 -1010111111 3,280 4 -1010111111 139.70 4 -1010111111 2141.71 4 -1010111111 L-2 4 -1010111111 143.68 4 -1010111111 2726.63 4 -1010111111 125.98 4 -1010111111 dinnertime 4 -1010111111 126.13 4 -1010111111 958.21 4 -1010111111 150.25 4 -1010111111 134.58 4 -1010111111 144.83 4 -1010111111 141.33 4 -1010111111 3800 4 -1010111111 134.53 4 -1010111111 133.62 4 -1010111111 2150.25 4 -1010111111 151.55 4 -1010111111 130.86 4 -1010111111 2,620 4 -1010111111 145.75 4 -1010111111 2027.85 4 -1010111111 2699.17 4 -1010111111 2677.92 4 -1010111111 2,740 4 -1010111111 146.72 4 -1010111111 132.65 4 -1010111111 143.95 4 -1010111111 125.15 4 -1010111111 132.85 4 -1010111111 132.15 4 -1010111111 143.38 4 -1010111111 132.35 4 -1010111111 141.55 4 -1010111111 152.30 4 -1010111111 132.97 4 -1010111111 1945.13 4 -1010111111 127.38 4 -1010111111 16,800 4 -1010111111 4,940 4 -1010111111 100.15 4 -1010111111 3,230 4 -1010111111 all-cotton 4 -1010111111 152.80 4 -1010111111 2031.50 4 -1010111111 153.38 4 -1010111111 122.98 4 -1010111111 4,880 4 -1010111111 2163.39 4 -1010111111 146.00 4 -1010111111 131.95 4 -1010111111 144.58 4 -1010111111 Intertrust 4 -1010111111 146.65 4 -1010111111 1993.95 4 -1010111111 129.82 4 -1010111111 126.68 4 -1010111111 2,180 4 -1010111111 129.30 4 -1010111111 99.06 4 -1010111111 1812.17 4 -1010111111 3,210 4 -1010111111 3,630 4 -1010111111 144.03 4 -1010111111 1924.57 4 -1010111111 3,610 4 -1010111111 142.41 4 -1010111111 2,770 4 -1010111111 2,980 4 -1010111111 Troutdale 4 -1010111111 undershorts 4 -1010111111 1928.85 4 -1010111111 125.60 4 -1010111111 125.95 4 -1010111111 127.00 4 -1010111111 132.60 4 -1010111111 18,700 4 -1010111111 143.83 4 -1010111111 Appomattox 4 -1010111111 2260.12 4 -1010111111 1879.14 4 -1010111111 145.63 4 -1010111111 Sorel 4 -1010111111 3,470 4 -1010111111 126.40 4 -1010111111 126.30 4 -1010111111 4,530 4 -1010111111 141.05 4 -1010111111 Mashhad 4 -1010111111 1766.74 4 -1010111111 133.58 4 -1010111111 11:00 4 -1010111111 142.65 4 -1010111111 152.75 4 -1010111111 143.60 4 -1010111111 2,720 4 -1010111111 127.45 4 -1010111111 127.65 4 -1010111111 128.00 4 -1010111111 1974.47 4 -1010111111 2026.03 4 -1010111111 2171.96 4 -1010111111 2,380 4 -1010111111 2102.50 4 -1010111111 127.57 4 -1010111111 100.05 4 -1010111111 140.93 4 -1010111111 2665.82 4 -1010111111 123.25 4 -1010111111 138.50 4 -1010111111 99.82 4 -1010111111 Quotrons 4 -1010111111 153.76 4 -1010111111 26000 4 -1010111111 2791.41 4 -1010111111 Sigonella 4 -1010111111 2333.52 4 -1010111111 142.23 4 -1010111111 151.56 4 -1010111111 2,670 4 -1010111111 152.68 4 -1010111111 Aqueduct 4 -1010111111 153.73 4 -1010111111 2691.49 4 -1010111111 101.95 4 -1010111111 2061.67 4 -1010111111 144.63 4 -1010111111 2086.04 4 -1010111111 10:15 4 -1010111111 1272.53 4 -1010111111 129.38 4 -1010111111 2094.07 4 -1010111111 149.23 4 -1010111111 123.50 4 -1010111111 146.84 4 -1010111111 1550 4 -1010111111 149.94 4 -1010111111 120.20 4 -1010111111 125.82 4 -1010111111 153.43 4 -1010111111 1848.97 4 -1010111111 1760 4 -1010111111 132.24 4 -1010111111 2687.50 4 -1010111111 2635.43 4 -1010111111 2002.25 4 -1010111111 1842.34 4 -1010111111 2701.85 4 -1010111111 138.65 4 -1010111111 2683.89 4 -1010111111 1938.83 4 -1010111111 134.50 4 -1010111111 2070.73 4 -1010111111 23000 4 -1010111111 115.31 4 -1010111111 98.65 4 -1010111111 1978.95 4 -1010111111 142.00 4 -1010111111 132.63 5 -1010111111 142.85 5 -1010111111 124.73 5 -1010111111 2287.07 5 -1010111111 130.37 5 -1010111111 2610.97 5 -1010111111 140.85 5 -1010111111 129.80 5 -1010111111 144.57 5 -1010111111 133.40 5 -1010111111 128.83 5 -1010111111 99.78 5 -1010111111 99.825 5 -1010111111 134.13 5 -1010111111 123.23 5 -1010111111 132.40 5 -1010111111 Lutece 5 -1010111111 2,860 5 -1010111111 Mulhouse 5 -1010111111 2545.12 5 -1010111111 2,650,000 5 -1010111111 Harrow 5 -1010111111 141.50 5 -1010111111 2034.14 5 -1010111111 126.60 5 -1010111111 99.275 5 -1010111111 142.10 5 -1010111111 139.00 5 -1010111111 Bastogne 5 -1010111111 133.68 5 -1010111111 1855.5 5 -1010111111 2337.07 5 -1010111111 146.43 5 -1010111111 2015.25 5 -1010111111 134.88 5 -1010111111 124.26 5 -1010111111 6-foot-3 5 -1010111111 2079.13 5 -1010111111 133.73 5 -1010111111 133.47 5 -1010111111 2659.19 5 -1010111111 133.28 5 -1010111111 124.83 5 -1010111111 142.18 5 -1010111111 125.66 5 -1010111111 124.63 5 -1010111111 2130.16 5 -1010111111 140.80 5 -1010111111 Innsbruck 5 -1010111111 126.18 5 -1010111111 163.48 5 -1010111111 125.50 5 -1010111111 126.78 5 -1010111111 140.25 5 -1010111111 124.28 5 -1010111111 Insead 5 -1010111111 153.18 5 -1010111111 147.50 5 -1010111111 2158.04 5 -1010111111 125.00 5 -1010111111 141.85 5 -1010111111 2252.98 5 -1010111111 Peterbroeck 5 -1010111111 1911.31 5 -1010111111 2694.91 5 -1010111111 2126.24 5 -1010111111 134.66 5 -1010111111 1080 5 -1010111111 Champaign-Urbana 5 -1010111111 153.62 5 -1010111111 127.48 5 -1010111111 2,680 5 -1010111111 139.15 5 -1010111111 Ceyhan 5 -1010111111 99.10 5 -1010111111 3/4-mile 5 -1010111111 143.53 5 -1010111111 133.22 5 -1010111111 143.35 5 -1010111111 2,970 5 -1010111111 2023.87 5 -1010111111 146.93 5 -1010111111 129.15 5 -1010111111 99.93 5 -1010111111 1910.48 5 -1010111111 2,220 5 -1010111111 3400 5 -1010111111 146.33 5 -1010111111 2,440 5 -1010111111 Christmastime 5 -1010111111 126.37 5 -1010111111 1833.55 5 -1010111111 99.87 5 -1010111111 140.02 5 -1010111111 123.98 5 -1010111111 1965.85 5 -1010111111 153.69 5 -1010111111 144.15 5 -1010111111 100.30 5 -1010111111 162.92 5 -1010111111 150.75 5 -1010111111 126.50 5 -1010111111 50- 5 -1010111111 146.63 5 -1010111111 1229.38 5 -1010111111 1935.01 5 -1010111111 133.42 5 -1010111111 140.50 5 -1010111111 127.75 5 -1010111111 1932.86 5 -1010111111 Bauxite 5 -1010111111 140.64 5 -1010111111 134.31 5 -1010111111 146.15 5 -1010111111 2,330 5 -1010111111 127.55 5 -1010111111 143.55 5 -1010111111 2,320 5 -1010111111 98.95 5 -1010111111 134.40 5 -1010111111 2258.66 5 -1010111111 2035.97 5 -1010111111 127.07 5 -1010111111 151.80 5 -1010111111 5,150 5 -1010111111 126.28 5 -1010111111 127.67 5 -1010111111 2850 5 -1010111111 126.80 5 -1010111111 124.37 5 -1010111111 anti-Semites 5 -1010111111 OCU 5 -1010111111 146.75 5 -1010111111 1924.40 5 -1010111111 126.95 5 -1010111111 101.875 5 -1010111111 146.95 5 -1010111111 Lebel-sur-Quevillon 5 -1010111111 124.07 5 -1010111111 2338.07 5 -1010111111 125.55 5 -1010111111 127.06 5 -1010111111 146.86 5 -1010111111 1938.33 5 -1010111111 2297.94 5 -1010111111 99.725 5 -1010111111 128.62 5 -1010111111 2355.09 5 -1010111111 133.63 5 -1010111111 130.10 5 -1010111111 144.90 5 -1010111111 2,040 5 -1010111111 2635.84 5 -1010111111 128.30 5 -1010111111 2087.37 5 -1010111111 145.88 5 -1010111111 142.25 5 -1010111111 2,260 5 -1010111111 3,570 5 -1010111111 143.40 5 -1010111111 2031.12 5 -1010111111 145.50 5 -1010111111 141.23 5 -1010111111 30000 6 -1010111111 151.45 6 -1010111111 133.05 6 -1010111111 127.85 6 -1010111111 142.80 6 -1010111111 98.90 6 -1010111111 133.15 6 -1010111111 101.60 6 -1010111111 nightfall 6 -1010111111 MacWorld 6 -1010111111 101.30 6 -1010111111 3,810 6 -1010111111 133.83 6 -1010111111 1,610 6 -1010111111 143.50 6 -1010111111 153.70 6 -1010111111 campfires 6 -1010111111 142.35 6 -1010111111 136.65 6 -1010111111 Meltham 6 -1010111111 2145.67 6 -1010111111 133.55 6 -1010111111 144.30 6 -1010111111 132.30 6 -1010111111 135.00 6 -1010111111 133.23 6 -1010111111 150.80 6 -1010111111 2700.57 6 -1010111111 141.73 6 -1010111111 Reims 6 -1010111111 140.60 6 -1010111111 131.66 6 -1010111111 2183.50 6 -1010111111 racetracks 6 -1010111111 122.70 6 -1010111111 2,070 6 -1010111111 124.93 6 -1010111111 128.95 6 -1010111111 1,670 6 -1010111111 123.60 6 -1010111111 139.25 6 -1010111111 midmonth 6 -1010111111 Urbana-Champaign 6 -1010111111 129.60 6 -1010111111 101.05 6 -1010111111 1,880 6 -1010111111 133.45 6 -1010111111 1841.01 6 -1010111111 144.36 6 -1010111111 136.70 6 -1010111111 124.03 6 -1010111111 2712.63 6 -1010111111 133.88 6 -1010111111 132.98 6 -1010111111 129.06 6 -1010111111 2,160 6 -1010111111 143.98 6 -1010111111 124.88 6 -1010111111 142.45 6 -1010111111 126.98 6 -1010111111 141.90 6 -1010111111 99.125 6 -1010111111 129.43 6 -1010111111 151.78 6 -1010111111 2102.95 6 -1010111111 143.15 6 -1010111111 daybreak 6 -1010111111 101.35 6 -1010111111 Porgera 6 -1010111111 135.45 6 -1010111111 131.08 6 -1010111111 2568.05 6 -1010111111 125.65 6 -1010111111 127.43 6 -1010111111 128.05 6 -1010111111 2,190 6 -1010111111 142.33 6 -1010111111 2071.62 6 -1010111111 128.33 6 -1010111111 124.40 6 -1010111111 co-optation 6 -1010111111 134.70 6 -1010111111 2,520 6 -1010111111 124.58 6 -1010111111 126.64 6 -1010111111 99.73 6 -1010111111 135.90 6 -1010111111 Lambert-St 6 -1010111111 126.85 6 -1010111111 1986.41 6 -1010111111 138.88 7 -1010111111 point-blank 7 -1010111111 139.20 7 -1010111111 139.68 7 -1010111111 144.75 7 -1010111111 141.25 7 -1010111111 141.95 7 -1010111111 1630 7 -1010111111 128.40 7 -1010111111 127.93 7 -1010111111 145.85 7 -1010111111 128.50 7 -1010111111 135.50 7 -1010111111 2005.64 7 -1010111111 E.D.&F 7 -1010111111 126.55 7 -1010111111 123.65 7 -1010111111 128.75 7 -1010111111 150.70 7 -1010111111 151.85 7 -1010111111 151.18 7 -1010111111 2492.82 7 -1010111111 147.20 7 -1010111111 144.33 7 -1010111111 124.80 7 -1010111111 120-140 7 -1010111111 125.70 7 -1010111111 135.03 7 -1010111111 138.35 7 -1010111111 133.16 7 -1010111111 134.08 7 -1010111111 2054.59 7 -1010111111 131.50 7 -1010111111 128.45 7 -1010111111 1776.53 7 -1010111111 132.51 7 -1010111111 127.05 7 -1010111111 143.10 7 -1010111111 2,640 7 -1010111111 146.20 7 -1010111111 146.70 7 -1010111111 126.08 7 -1010111111 134.93 7 -1010111111 134.75 7 -1010111111 bonkers 7 -1010111111 128.65 7 -1010111111 Janow 7 -1010111111 2,580 7 -1010111111 97.80 7 -1010111111 argumentative 7 -1010111111 143.90 7 -1010111111 127.30 7 -1010111111 152.60 7 -1010111111 8:45 7 -1010111111 30-1 7 -1010111111 venereal-disease 7 -1010111111 1,980 7 -1010111111 145.00 7 -1010111111 3200 7 -1010111111 139.85 8 -1010111111 140.15 8 -1010111111 1010 8 -1010111111 Aguacate 8 -1010111111 128.93 8 -1010111111 139.75 8 -1010111111 135.18 8 -1010111111 129.50 8 -1010111111 133.30 8 -1010111111 2407.35 8 -1010111111 136.95 8 -1010111111 124.65 8 -1010111111 124.67 8 -1010111111 1895.95 8 -1010111111 138.75 8 -1010111111 141.45 8 -1010111111 3,370 8 -1010111111 151.23 8 -1010111111 125.25 8 -1010111111 2170.34 8 -1010111111 1,820 8 -1010111111 1,940 8 -1010111111 144.70 8 -1010111111 134.38 8 -1010111111 2,230 8 -1010111111 124.98 8 -1010111111 2,110 8 -1010111111 125.80 8 -1010111111 132.80 8 -1010111111 132.75 8 -1010111111 1941.48 8 -1010111111 1963.53 8 -1010111111 125.63 8 -1010111111 145.05 8 -1010111111 127.15 8 -1010111111 141.60 8 -1010111111 125.75 9 -1010111111 128.35 9 -1010111111 1,690 9 -1010111111 1,930 9 -1010111111 139.90 9 -1010111111 141.70 9 -1010111111 1,220 9 -1010111111 Allenwood 9 -1010111111 Sarajevo 9 -1010111111 127.25 9 -1010111111 1,730 9 -1010111111 142.13 9 -1010111111 127.20 9 -1010111111 146.55 9 -1010111111 Pradesh 9 -1010111111 126.90 9 -1010111111 134.55 9 -1010111111 99.30 9 -1010111111 124.25 9 -1010111111 124.50 9 -1010111111 126.75 9 -1010111111 130.25 9 -1010111111 146.25 9 -1010111111 140.05 9 -1010111111 125.08 9 -1010111111 UNAM 9 -1010111111 123.75 9 -1010111111 142.40 9 -1010111111 126.05 9 -1010111111 98.25 10 -1010111111 Petrus 10 -1010111111 puberty 10 -1010111111 all. 10 -1010111111 Nite 10 -1010111111 124.85 10 -1010111111 Stalingrad 10 -1010111111 137.25 10 -1010111111 144.20 10 -1010111111 99.85 10 -1010111111 125.10 10 -1010111111 125.05 10 -1010111111 133.75 10 -1010111111 cross-purposes 10 -1010111111 Vicksburg 10 -1010111111 140.65 10 -1010111111 145.13 10 -1010111111 1,110 10 -1010111111 126.56 10 -1010111111 2734.64 11 -1010111111 100.10 11 -1010111111 133.35 11 -1010111111 99.35 11 -1010111111 Laterriere 11 -1010111111 142.50 11 -1010111111 127.95 11 -1010111111 99.375 12 -1010111111 2051.89 12 -1010111111 1,490 12 -1010111111 sundown 12 -1010111111 133.38 13 -1010111111 132.50 13 -1010111111 99.875 13 -1010111111 133.65 13 -1010111111 CERN 13 -1010111111 1,720 13 -1010111111 2,950 13 -1010111111 1,020 13 -1010111111 3500 13 -1010111111 1,520 13 -1010111111 pheasant 14 -1010111111 rent-free 14 -1010111111 1,070 14 -1010111111 128.25 14 -1010111111 1600 15 -1010111111 Drepung 16 -1010111111 mid-month 16 -1010111111 sunrise 16 -1010111111 gunpoint 16 -1010111111 Dimona 16 -1010111111 poolside 17 -1010111111 Vladivostok 17 -1010111111 99.65 18 -1010111111 99.25 18 -1010111111 2050 18 -1010111111 straws 19 -1010111111 99.70 19 -1010111111 Fao 19 -1010111111 99.60 20 -1010111111 99.55 21 -1010111111 99.625 21 -1010111111 midsession 22 -1010111111 99.80 22 -1010111111 windmills 23 -1010111111 99.50 24 -1010111111 picnics 24 -1010111111 1700 25 -1010111111 2600 26 -1010111111 1500 29 -1010111111 99.90 30 -1010111111 99.75 30 -1010111111 mid-afternoon 34 -1010111111 lunchtime 35 -1010111111 Yalta 41 -1010111111 2300 42 -1010111111 half-price 42 -1010111111 dusk 44 -1010111111 2700 50 -1010111111 Wimbledon 56 -1010111111 downhill 75 -1010111111 skiing 83 -1010111111 midafternoon 103 -1010111111 bay 126 -1010111111 noon 256 -1010111111 bankrupt 299 -1010111111 midday 324 -1010111111 midnight 533 -1010111111 par 1600 -1010111111 home 9465 -1011000000 consultating 1 -1011000000 windsprints 1 -1011000000 hard-to-buy-for 1 -1011000000 half-cocked 1 -1011000000 discusions 1 -1011000000 1990-2015 1 -1011000000 mommy-tracker 1 -1011000000 historiography 1 -1011000000 79.47 1 -1011000000 shoot'em-ups 1 -1011000000 mesones 2 -1011000000 Totalbank 2 -1011000000 dropoffs 2 -1011000000 peacekeeper 2 -1011000000 superbanks 2 -1011000000 rapaciousness 2 -1011000000 Mandarich 2 -1011000000 truces 2 -1011000000 dicussions 2 -1011000000 inquirers 2 -1011000000 eye-level 2 -1011000000 clerkships 2 -1011000000 gropings 2 -1011000000 tions 2 -1011000000 quibbled 3 -1011000000 Tulipomania 3 -1011000000 co-financings 3 -1011000000 CL-215s 3 -1011000000 magnifiers 3 -1011000000 bull's-eyes 3 -1011000000 mechanicals 4 -1011000000 locators 4 -1011000000 scuffles 4 -1011000000 bywords 4 -1011000000 byplay 4 -1011000000 warm-ups 4 -1011000000 convenants 4 -1011000000 negotations 4 -1011000000 accordions 5 -1011000000 apprenticeships 5 -1011000000 figs 6 -1011000000 communes 6 -1011000000 fasts 6 -1011000000 wrangles 7 -1011000000 renegotiations 9 -1011000000 get-togethers 9 -1011000000 thoroughfares 11 -1011000000 interconnections 12 -1011000000 dogfights 13 -1011000000 non-compliance 15 -1011000000 dialogues 15 -1011000000 rifts 32 -1011000000 chats 33 -1011000000 skirmishes 57 -1011000000 confrontations 97 -1011000000 consultations 146 -1011000000 disagreements 211 -1011000000 pacts 218 -1011000000 clashes 224 -1011000000 deliberations 279 -1011000000 accords 312 -1011000000 fights 344 -1011000000 conversations 406 -1011000000 odds 712 -1011000000 interviews 784 -1011000000 disputes 1072 -1011000000 meetings 2174 -1011000000 discussions 2504 -1011000000 agreements 3081 -1011000000 talks 7282 -1011000000 negotiations 4584 -1011000001 relationhips 1 -1011000001 bootie 1 -1011000001 peak-performance-times 1 -1011000001 home-and-home 1 -1011000001 1983.34 1 -1011000001 sex-dog 1 -1011000001 non-familiarity 1 -1011000001 viols 1 -1011000001 cloak-and-daggering 1 -1011000001 negotitated 1 -1011000001 connnection 1 -1011000001 straw-top 1 -1011000001 publicity-hater 1 -1011000001 dissatisfactions 1 -1011000001 minivehicles 1 -1011000001 reasoner 1 -1011000001 digressing 1 -1011000001 Rhodopian 1 -1011000001 tricorn 1 -1011000001 gargled 1 -1011000001 paper-rattling 1 -1011000001 Chevelles 1 -1011000001 Balanchinism 1 -1011000001 trysting 1 -1011000001 interoperability 1 -1011000001 kickball 1 -1011000001 polyploidy 1 -1011000001 self-test 1 -1011000001 oligarch 1 -1011000001 conversance 1 -1011000001 rt-Pa 1 -1011000001 firetraps 1 -1011000001 ultra-liberals 1 -1011000001 private-contract 1 -1011000001 Babylonia 1 -1011000001 disussions 1 -1011000001 retardate 1 -1011000001 disappoinment 1 -1011000001 box-score 1 -1011000001 litigaton 1 -1011000001 smooches 1 -1011000001 chlorals 1 -1011000001 candleholder 1 -1011000001 minimarket 1 -1011000001 non-revenue 1 -1011000001 Ford/Mercury 1 -1011000001 0-to-6 1 -1011000001 booklovers 1 -1011000001 land-holdings 1 -1011000001 relatively-poor 1 -1011000001 chateau-complete 1 -1011000001 interfacing 1 -1011000001 cross-borrowings 1 -1011000001 micro-interviews 1 -1011000001 back-toback 1 -1011000001 interbreeding 1 -1011000001 co-operation 1 -1011000001 Daredevils 1 -1011000001 liquidity-short-selling 1 -1011000001 assocation 1 -1011000001 Apaches 2 -1011000001 rematches 2 -1011000001 151,228 2 -1011000001 141,483 2 -1011000001 Jeddah 2 -1011000001 merdog 2 -1011000001 skyhook 2 -1011000001 Dreyfusiana 2 -1011000001 calliopes 2 -1011000001 tootsie 2 -1011000001 face-offs 2 -1011000001 zagged 2 -1011000001 kerel 2 -1011000001 apparat 2 -1011000001 lullabies 2 -1011000001 consulation 2 -1011000001 altercations 2 -1011000001 eardrums 3 -1011000001 intercessions 3 -1011000001 hydroponics 3 -1011000001 antiheroes 3 -1011000001 provocateur 3 -1011000001 showdowns 3 -1011000001 joint-ventures 4 -1011000001 sophism 4 -1011000001 postmodernism 4 -1011000001 ponytails 4 -1011000001 off-white 4 -1011000001 parallelism 4 -1011000001 match-up 4 -1011000001 tussling 5 -1011000001 pleasantries 5 -1011000001 fraternization 5 -1011000001 alternation 5 -1011000001 wonderment 6 -1011000001 dudes 6 -1011000001 cahoots 6 -1011000001 conformance 7 -1011000001 seclusion 7 -1011000001 synch 8 -1011000001 flirtations 8 -1011000001 saber 8 -1011000001 vivendi 9 -1011000001 disrepute 10 -1011000001 brinkmanship 12 -1011000001 amity 12 -1011000001 unfamiliarity 15 -1011000001 entanglements 16 -1011000001 comparability 17 -1011000001 liaisons 18 -1011000001 run-ins 20 -1011000001 infatuation 23 -1011000001 exasperation 26 -1011000001 sync 29 -1011000001 quarrels 38 -1011000001 conformity 47 -1011000001 disenchantment 53 -1011000001 familiarity 68 -1011000001 disgust 73 -1011000001 disillusionment 73 -1011000001 compatibility 81 -1011000001 impatience 88 -1011000001 displeasure 88 -1011000001 unhappiness 88 -1011000001 fascination 100 -1011000001 limbo 111 -1011000001 tampering 112 -1011000001 tinkering 117 -1011000001 liaison 118 -1011000001 tandem 119 -1011000001 consultation 141 -1011000001 harmony 148 -1011000001 parity 171 -1011000001 footing 192 -1011000001 accordance 194 -1011000001 collaboration 194 -1011000001 dissatisfaction 196 -1011000001 friction 220 -1011000001 conjunction 252 -1011000001 connections 385 -1011000001 sympathy 399 -1011000001 links 605 -1011000001 relationships 669 -1011000001 contacts 682 -1011000001 compliance 893 -1011000001 contact 972 -1011000001 difficulty 1031 -1011000001 dealings 1101 -1011000001 ties 1778 -1011000001 connection 2170 -1011000001 relations 3263 -1011000001 trouble 2519 -1011000010 sub-zones 1 -1011000010 current-surplus 1 -1011000010 deficit/dollar/protectionism 1 -1011000010 surplus. 1 -1011000010 Kinekor 1 -1011000010 deficit. 1 -1011000010 premiums-associated 1 -1011000010 tax-filers 1 -1011000010 represenative 1 -1011000010 more-telling 1 -1011000010 non-Fidelity 1 -1011000010 Testudinata 1 -1011000010 piracies 1 -1011000010 asociation 1 -1011000010 imbalance. 1 -1011000010 deficitwhich 1 -1011000010 Birdpark 1 -1011000010 makeups 1 -1011000010 sportwear 2 -1011000010 receivable-backed 2 -1011000010 sub-zone 2 -1011000010 cuts. 2 -1011000010 infringment 2 -1011000010 front. 3 -1011000010 infringements 24 -1011000010 frictions 68 -1011000010 infringement 263 -1011000010 imbalance 328 -1011000010 imbalances 356 -1011000010 secrets 357 -1011000010 surpluses 621 -1011000010 barriers 1083 -1011000010 deficits 1362 -1011000010 gap 1541 -1011000010 surplus 3300 -1011000010 deficit 9187 -10110000110 Schnabels 1 -10110000110 severalfold 1 -10110000110 quarterfinalists 1 -10110000110 Cavins 1 -10110000110 One-Source 1 -10110000110 cliffhangers 1 -10110000110 earnings.This 1 -10110000110 competitivenes 1 -10110000110 extinguishant 1 -10110000110 circumlocutions 1 -10110000110 mispresentations 1 -10110000110 churchbells 1 -10110000110 rebounders 1 -10110000110 Benettons 1 -10110000110 super-plungers 1 -10110000110 CD-ROMS 1 -10110000110 Cliffords 1 -10110000110 Basieites 1 -10110000110 lunchmates 1 -10110000110 co-adjutors 1 -10110000110 Corwins 1 -10110000110 SHAKEUP 1 -10110000110 sport-utilities 1 -10110000110 candidate. 1 -10110000110 ailors 1 -10110000110 co-beneficiaries 1 -10110000110 selectiveness 1 -10110000110 firstnighters 1 -10110000110 McFerrins 1 -10110000110 Waldrons 1 -10110000110 Zanucks 1 -10110000110 institutionals 1 -10110000110 sot 1 -10110000110 departers 1 -10110000110 forty-fold 1 -10110000110 Richmonders 1 -10110000110 Yamaha/apparatus 1 -10110000110 panzers 1 -10110000110 Su-25s 1 -10110000110 AMs 1 -10110000110 non-respondents 1 -10110000110 Astaires 1 -10110000110 Stalin-style 1 -10110000110 PANistas 2 -10110000110 McCutcheons 2 -10110000110 jirgas 2 -10110000110 flowerpots 2 -10110000110 paradigms 2 -10110000110 werewolves 2 -10110000110 e.p.t. 2 -10110000110 LENS 2 -10110000110 keylists 3 -10110000110 Rosenbergs 3 -10110000110 Laxalts 3 -10110000110 Perches 3 -10110000110 nightspots 3 -10110000110 card-holders 5 -10110000110 propects 5 -10110000110 overlords 6 -10110000110 '85s 6 -10110000110 counterproposals 6 -10110000110 Cabernets 7 -10110000110 IUR 7 -10110000110 underbelly 12 -10110000110 pickings 29 -10110000110 standings 31 -10110000110 results 10209 -10110000110 expirations 35 -10110000111 year-to-date-figures 1 -10110000111 concrete-panel 1 -10110000111 Fours 1 -10110000111 McNeil/Lehrer 1 -10110000111 print-outs 1 -10110000111 Friday-afternoon 1 -10110000111 farmer-owners 1 -10110000111 deviationists 1 -10110000111 megatrades 1 -10110000111 PROGRAMMERS 1 -10110000111 redialers 1 -10110000111 boomtowns 1 -10110000111 INFINITIVES 1 -10110000111 extractants 1 -10110000111 Matchups 1 -10110000111 insurance-funds 1 -10110000111 Satanists 1 -10110000111 alerter 1 -10110000111 tabloid-format 1 -10110000111 Sordonis 1 -10110000111 Francks 1 -10110000111 AmeriSuites 1 -10110000111 pedicabs 1 -10110000111 Amblinites 1 -10110000111 forcolas 1 -10110000111 Phonebook 1 -10110000111 annoucements 1 -10110000111 McNernys 1 -10110000111 Lotion 1 -10110000111 statil 1 -10110000111 McKeans 1 -10110000111 martyrdoms 1 -10110000111 cosmetologists 1 -10110000111 modishness 1 -10110000111 insiders/arbitragers 1 -10110000111 Curtises 1 -10110000111 Busches 1 -10110000111 DEPARTMENTS 1 -10110000111 Myselves 1 -10110000111 Thyselves 1 -10110000111 all-Digital 1 -10110000111 anti-establishmentarians 1 -10110000111 stop-losses 1 -10110000111 private-eye 1 -10110000111 Dengist 1 -10110000111 endpapers 1 -10110000111 Illinoisans 1 -10110000111 Palestians 1 -10110000111 infected-well 1 -10110000111 Fischers 1 -10110000111 Gorens 1 -10110000111 yuppie-angst 1 -10110000111 battle-lines 1 -10110000111 Newhalls 1 -10110000111 AUDITING 1 -10110000111 undercover-cop 1 -10110000111 Garcias 1 -10110000111 low-concept 1 -10110000111 PC-clones 1 -10110000111 pianissimi 1 -10110000111 Picnics 1 -10110000111 border-fence 1 -10110000111 concession-holders 1 -10110000111 reappointments 1 -10110000111 shriekers 1 -10110000111 WAIVERS 1 -10110000111 Dawsons 1 -10110000111 Middleness 1 -10110000111 31-piece 1 -10110000111 240-screen 1 -10110000111 Teen-Age 1 -10110000111 OTCs 1 -10110000111 Hashemites 1 -10110000111 magazine-format 1 -10110000111 corn-fields 1 -10110000111 CTAs 1 -10110000111 song-and-talk 1 -10110000111 pothos 1 -10110000111 Denverites 1 -10110000111 Fouries 1 -10110000111 abdications 1 -10110000111 rodeo-horse 1 -10110000111 fugitive-manhunt 1 -10110000111 ivory-colored 1 -10110000111 talk-variety 1 -10110000111 Coolidges 2 -10110000111 implantations 2 -10110000111 externality 2 -10110000111 crochets 2 -10110000111 Tercels 2 -10110000111 idylls 2 -10110000111 ovine 2 -10110000111 invitees 2 -10110000111 deflators 2 -10110000111 Schreiers 2 -10110000111 V&A 2 -10110000111 state-of-the-union 2 -10110000111 Garouttes 2 -10110000111 Graces 2 -10110000111 Berts 2 -10110000111 Tarts 2 -10110000111 most-feared 2 -10110000111 fillers 2 -10110000111 scoldings 2 -10110000111 aptitudes 2 -10110000111 replenishments 3 -10110000111 receptacles 3 -10110000111 coolest 3 -10110000111 EIRs 3 -10110000111 honky-tonks 3 -10110000111 udders 3 -10110000111 escalations 3 -10110000111 Kunstlerhaus 3 -10110000111 Armory 3 -10110000111 Ilks 3 -10110000111 money-makers 4 -10110000111 recalculations 4 -10110000111 Williamses 4 -10110000111 Remondis 4 -10110000111 rhetoricians 4 -10110000111 techs 5 -10110000111 Ravens 6 -10110000111 worriers 10 -10110000111 freaks 11 -10110000111 Jornal 11 -10110000111 woodwinds 14 -10110000111 plums 14 -10110000111 stats 15 -10110000111 reps 18 -10110000111 Warriors 21 -10110000111 tallies 41 -10110000111 rep 43 -10110000111 squads 88 -10110000111 rankings 225 -10110000111 bulls 290 -10110000111 surveys 615 -10110000111 polls 1032 -10110000111 statistics 1622 -10110000111 figures 6929 -10110000111 numbers 3239 -101100010000 loudmouths 1 -101100010000 libidinoids 1 -101100010000 scholar-artist 1 -101100010000 calligrapher 1 -101100010000 orchestrator 1 -101100010000 malformations 1 -101100010000 70,000-point 1 -101100010000 tragedian 1 -101100010000 backslappers 1 -101100010000 marauder 1 -101100010000 man-child 1 -101100010000 deterent 1 -101100010000 clod 1 -101100010000 kozo 1 -101100010000 squealer 1 -101100010000 historicizing 1 -101100010000 condition. 1 -101100010000 maman 1 -101100010000 178-horsepower 1 -101100010000 cirucumstances 1 -101100010000 decison-making 1 -101100010000 high-schooler 1 -101100010000 philosopher-scientist 1 -101100010000 pantomimes 1 -101100010000 tallness 1 -101100010000 cicumstances 1 -101100010000 truisms 1 -101100010000 anti-militarism 1 -101100010000 tautness 1 -101100010000 immigrant-workers 1 -101100010000 industrializes 1 -101100010000 Squalls 1 -101100010000 shenanigan 1 -101100010000 thingamajigs 1 -101100010000 radarscopes 1 -101100010000 4.2-liter 1 -101100010000 quadrumvirate 1 -101100010000 tenderfoot 1 -101100010000 cup-shaped 1 -101100010000 blasphemers 1 -101100010000 prices-prepaid 1 -101100010000 holdings. 1 -101100010000 unorthodoxy 1 -101100010000 anti-opera 1 -101100010000 buying-down 1 -101100010000 excoriation 1 -101100010000 Kundenkreditbank 1 -101100010000 grandiosities 1 -101100010000 skills. 1 -101100010000 newsmaker 1 -101100010000 castle-themed 1 -101100010000 meanspiritedness 1 -101100010000 drollness 1 -101100010000 ingenuousness 1 -101100010000 basketcases 1 -101100010000 seven-million-barrel 1 -101100010000 MiG-29s 2 -101100010000 oppportunities 2 -101100010000 leukemias 2 -101100010000 buccaneers 2 -101100010000 products-related 2 -101100010000 channeler 2 -101100010000 conditions. 2 -101100010000 contributers 2 -101100010000 Taba 2 -101100010000 dieases 2 -101100010000 stuffiness 2 -101100010000 neoconservatism 2 -101100010000 government-recognized 3 -101100010000 self-evaluation 3 -101100010000 anti-Communism 3 -101100010000 mawkishness 3 -101100010000 principalities 3 -101100010000 acquisitors 3 -101100010000 activites 3 -101100010000 faddishness 3 -101100010000 preciousness 4 -101100010000 omnipotence 4 -101100010000 runups 4 -101100010000 skimmer 4 -101100010000 crests 4 -101100010000 stagnates 4 -101100010000 ova 5 -101100010000 put-downs 6 -101100010000 duckling 8 -101100010000 readjustments 9 -101100010000 seers 9 -101100010000 bulges 9 -101100010000 stiffs 9 -101100010000 binges 10 -101100010000 contractions 14 -101100010000 timer 16 -101100010000 manipulators 26 -101100010000 powerhouses 28 -101100010000 debacles 29 -101100010000 gimmickry 30 -101100010000 dislocations 30 -101100010000 climates 32 -101100010000 manipulations 35 -101100010000 indices 36 -101100010000 conspiracies 39 -101100010000 benchmarks 43 -101100010000 deprivation 51 -101100010000 engagements 61 -101100010000 barometers 108 -101100010000 downturns 113 -101100010000 conversions 142 -101100010000 niches 166 -101100010000 combinations 178 -101100010000 binge 207 -101100010000 cycles 217 -101100010000 fever 237 -101100010000 covenants 237 -101100010000 psychology 359 -101100010000 habits 360 -101100010000 scandals 363 -101100010000 associations 426 -101100010000 manipulation 449 -101100010000 swaps 456 -101100010000 averages 473 -101100010000 patterns 517 -101100010000 wars 530 -101100010000 fundamentals 625 -101100010000 abuses 629 -101100010000 cycle 710 -101100010000 indexes 744 -101100010000 indicators 945 -101100010000 sentiment 1118 -101100010000 circumstances 1331 -101100010000 practices 2172 -101100010000 conditions 4432 -101100010000 activity 4304 -101100010001 dissonance. 1 -101100010001 iniquity 1 -101100010001 Pentecost 1 -101100010001 rulings. 1 -101100010001 obsessives 1 -101100010001 confrontation. 1 -101100010001 hankerings 1 -101100010001 amendments. 1 -101100010001 guarantees. 1 -101100010001 number-shopping 1 -101100010001 pejoratives 1 -101100010001 ejaculations 1 -101100010001 stratas 1 -101100010001 yens 1 -101100010001 maldoers 1 -101100010001 anti-authoritarianism 1 -101100010001 software-programs 1 -101100010001 infelicities 1 -101100010001 fenestration 1 -101100010001 tablao 1 -101100010001 values. 1 -101100010001 tithing 1 -101100010001 contraints 1 -101100010001 worth. 1 -101100010001 Quebecer 1 -101100010001 warfare. 1 -101100010001 minisermons 1 -101100010001 allusiveness 1 -101100010001 theories. 1 -101100010001 relativist 1 -101100010001 indefinition 1 -101100010001 flow-charts 1 -101100010001 lynchings 1 -101100010001 fraility 1 -101100010001 buzzword. 1 -101100010001 repercussion 1 -101100010001 ity 1 -101100010001 allee 1 -101100010001 perogatives 1 -101100010001 quenching 1 -101100010001 poseur 1 -101100010001 erotica 1 -101100010001 sentence. 1 -101100010001 penalty. 1 -101100010001 shtik 1 -101100010001 fraudulence 1 -101100010001 higherups 1 -101100010001 harassments 1 -101100010001 standards. 1 -101100010001 catheterizations 1 -101100010001 cavaliers 1 -101100010001 reproduction. 1 -101100010001 transfiguration 1 -101100010001 being. 1 -101100010001 mapper 1 -101100010001 mudwrestling 1 -101100010001 parties. 1 -101100010001 makeup. 1 -101100010001 impaction 1 -101100010001 liberation. 1 -101100010001 energy. 1 -101100010001 patronage. 1 -101100010001 songfest 1 -101100010001 bacchanals 1 -101100010001 reconceptualization 1 -101100010001 toke 1 -101100010001 omnivorousness 1 -101100010001 probelems 1 -101100010001 demogoguery 1 -101100010001 conditons 1 -101100010001 issuesand 1 -101100010001 liberties. 1 -101100010001 Britishness 2 -101100010001 accomodation 2 -101100010001 brutishness 2 -101100010001 perturbations 2 -101100010001 shocktroopers 2 -101100010001 conservativism 2 -101100010001 pigeonholing 2 -101100010001 displacements 2 -101100010001 idiocies 2 -101100010001 discomforts 2 -101100010001 toadies 2 -101100010001 toxicant 2 -101100010001 scruple 2 -101100010001 perversities 2 -101100010001 capital. 2 -101100010001 adepts 2 -101100010001 psalm 2 -101100010001 differences. 2 -101100010001 discussions. 2 -101100010001 chasms 2 -101100010001 crosswinds 2 -101100010001 about-faces 2 -101100010001 overcentralization 2 -101100010001 padre 2 -101100010001 joaillerie 2 -101100010001 free-for-alls 2 -101100010001 trances 2 -101100010001 arrhythmias 3 -101100010001 risk. 3 -101100010001 elasticities 3 -101100010001 views. 3 -101100010001 polarities 3 -101100010001 regressions 3 -101100010001 forebodings 3 -101100010001 incisions 3 -101100010001 imbroglios 3 -101100010001 externalities 3 -101100010001 inflammations 3 -101100010001 slickness 3 -101100010001 Pablum 3 -101100010001 kind. 3 -101100010001 incongruities 3 -101100010001 modernizers 3 -101100010001 firmament 3 -101100010001 epigrams 3 -101100010001 questions. 3 -101100010001 failure. 3 -101100010001 impairments 3 -101100010001 sadism 4 -101100010001 bunglers 4 -101100010001 promptness 4 -101100010001 wingtips 4 -101100010001 compulsions 4 -101100010001 indiscretion 4 -101100010001 exorcism 4 -101100010001 aborigines 4 -101100010001 travesties 4 -101100010001 acacias 4 -101100010001 orthodoxies 4 -101100010001 cleavages 4 -101100010001 dugouts 5 -101100010001 clunkers 5 -101100010001 expositions 5 -101100010001 contraindications 5 -101100010001 stratagems 5 -101100010001 memorization 5 -101100010001 prognostications 5 -101100010001 adversities 5 -101100010001 vetos 5 -101100010001 finagling 5 -101100010001 contrivances 5 -101100010001 humors 5 -101100010001 sedation 5 -101100010001 nonpareil 6 -101100010001 yummies 6 -101100010001 flubs 6 -101100010001 countdowns 6 -101100010001 playthings 6 -101100010001 antecedents 6 -101100010001 arbitrariness 6 -101100010001 limos 6 -101100010001 runners-up 6 -101100010001 subservience 6 -101100010001 shadings 7 -101100010001 identifications 7 -101100010001 spats 7 -101100010001 wanderlust 7 -101100010001 undertones 7 -101100010001 biggies 7 -101100010001 netherworld 7 -101100010001 provincialism 7 -101100010001 frontrunners 7 -101100010001 certitude 8 -101100010001 pageantry 8 -101100010001 purgatory 8 -101100010001 magnitudes 8 -101100010001 discontents 8 -101100010001 rip-offs 8 -101100010001 edicts 8 -101100010001 predilections 8 -101100010001 Darwinism 8 -101100010001 wanderings 8 -101100010001 alignments 8 -101100010001 deformities 8 -101100010001 miseries 8 -101100010001 absolutism 8 -101100010001 Rembrandts 8 -101100010001 instabilities 9 -101100010001 palliatives 9 -101100010001 afflictions 9 -101100010001 maxims 9 -101100010001 quandaries 10 -101100010001 stimuli 10 -101100010001 bombast 10 -101100010001 ecosystems 10 -101100010001 galleys 10 -101100010001 permutations 10 -101100010001 selves 10 -101100010001 absurdities 10 -101100010001 aggressors 10 -101100010001 hang-ups 10 -101100010001 breadwinners 10 -101100010001 moneymakers 11 -101100010001 cohesiveness 11 -101100010001 hierarchies 11 -101100010001 rationalizations 11 -101100010001 evictions 12 -101100010001 aphorisms 12 -101100010001 slurs 12 -101100010001 recyclers 12 -101100010001 brinksmanship 12 -101100010001 remissions 12 -101100010001 tomes 13 -101100010001 recklessness 13 -101100010001 romances 13 -101100010001 prerequisites 13 -101100010001 sugars 13 -101100010001 coordinators 13 -101100010001 oracles 13 -101100010001 coloration 13 -101100010001 pyrotechnics 13 -101100010001 shackles 13 -101100010001 eruptions 14 -101100010001 fiefdoms 14 -101100010001 frailties 14 -101100010001 Englishmen 15 -101100010001 conquests 15 -101100010001 indiscretions 15 -101100010001 preoccupations 15 -101100010001 formalities 16 -101100010001 reverberations 16 -101100010001 humiliations 16 -101100010001 side-effects 16 -101100010001 obsessions 16 -101100010001 crosscurrents 17 -101100010001 gamesmanship 18 -101100010001 maladies 18 -101100010001 tangles 18 -101100010001 humanism 18 -101100010001 meanings 18 -101100010001 configurations 18 -101100010001 panics 18 -101100010001 paradoxes 19 -101100010001 escapades 19 -101100010001 opportunists 19 -101100010001 convulsions 19 -101100010001 connotations 19 -101100010001 justifications 19 -101100010001 sagas 19 -101100010001 behaviors 20 -101100010001 expulsions 20 -101100010001 relativism 20 -101100010001 analogies 20 -101100010001 allegiances 20 -101100010001 interactions 20 -101100010001 niceties 20 -101100010001 stirrings 20 -101100010001 catastrophes 21 -101100010001 indignities 21 -101100010001 rigidities 22 -101100010001 buzzwords 22 -101100010001 goings-on 22 -101100010001 confidences 22 -101100010001 snafu 23 -101100010001 nests 24 -101100010001 imperfections 24 -101100010001 vulnerabilities 24 -101100010001 offensives 24 -101100010001 crusades 24 -101100010001 maneuverings 24 -101100010001 retardation 24 -101100010001 resentments 24 -101100010001 misfortunes 25 -101100010001 pathologies 25 -101100010001 inadequacies 26 -101100010001 transitions 26 -101100010001 liberalizations 27 -101100010001 massacres 27 -101100010001 embarrassments 27 -101100010001 doings 27 -101100010001 gateways 28 -101100010001 levers 28 -101100010001 technicalities 28 -101100010001 pluses 29 -101100010001 exclusions 29 -101100010001 stances 29 -101100010001 hitches 29 -101100010001 linkages 29 -101100010001 missteps 30 -101100010001 essentials 31 -101100010001 ploys 31 -101100010001 feats 32 -101100010001 transgressions 33 -101100010001 summits 33 -101100010001 miscalculations 33 -101100010001 snafus 34 -101100010001 abstractions 34 -101100010001 sensitivities 35 -101100010001 murals 35 -101100010001 undertakings 36 -101100010001 unknowns 36 -101100010001 hassles 37 -101100010001 agitation 37 -101100010001 ambiguities 37 -101100010001 propositions 38 -101100010001 temptations 38 -101100010001 outbursts 38 -101100010001 faculties 38 -101100010001 shenanigans 39 -101100010001 gaffes 39 -101100010001 underpinnings 40 -101100010001 outposts 40 -101100010001 abnormalities 41 -101100010001 biases 43 -101100010001 limbs 43 -101100010001 doctrines 43 -101100010001 tragedies 43 -101100010001 masterpieces 43 -101100010001 understandings 44 -101100010001 overkill 45 -101100010001 ironies 45 -101100010001 pursuits 45 -101100010001 acclaim 46 -101100010001 upheavals 46 -101100010001 travails 47 -101100010001 affiliations 47 -101100010001 markers 47 -101100010001 homelands 48 -101100010001 motivations 48 -101100010001 impacts 48 -101100010001 movers 48 -101100010001 disadvantages 49 -101100010001 garb 49 -101100010001 dilemmas 52 -101100010001 antics 52 -101100010001 philosophies 53 -101100010001 capacities 53 -101100010001 agendas 53 -101100010001 overtones 54 -101100010001 reversals 55 -101100010001 breakdowns 55 -101100010001 coffees 55 -101100010001 blueprints 55 -101100010001 currents 55 -101100010001 heavyweights 57 -101100010001 interruptions 58 -101100010001 parameters 58 -101100010001 creations 60 -101100010001 contingencies 62 -101100010001 straits 65 -101100010001 blunders 65 -101100010001 disabilities 65 -101100010001 rivalries 66 -101100010001 necessities 68 -101100010001 treasures 68 -101100010001 enhancements 68 -101100010001 phenomena 69 -101100010001 roadblocks 69 -101100010001 failings 71 -101100010001 hardships 71 -101100010001 infractions 72 -101100010001 mishaps 72 -101100010001 glitches 74 -101100010001 miracles 74 -101100010001 tendencies 82 -101100010001 norms 82 -101100010001 inefficiencies 82 -101100010001 twists 83 -101100010001 sins 85 -101100010001 snags 86 -101100010001 improprieties 86 -101100010001 fences 87 -101100010001 ramifications 87 -101100010001 amenities 88 -101100010001 outcomes 89 -101100010001 adventures 91 -101100010001 traits 93 -101100010001 exposures 94 -101100010001 examinations 94 -101100010001 lapses 97 -101100010001 passions 98 -101100010001 backgrounds 99 -101100010001 gatherings 100 -101100010001 chores 102 -101100010001 negatives 103 -101100010001 tissues 104 -101100010001 controversies 108 -101100010001 repercussions 111 -101100010001 killings 114 -101100010001 ills 117 -101100010001 frustrations 118 -101100010001 prowess 120 -101100010001 jargon 120 -101100010001 contradictions 120 -101100010001 ailments 122 -101100010001 measurements 122 -101100010001 premises 124 -101100010001 aspirations 125 -101100010001 arteries 136 -101100010001 breakthroughs 138 -101100010001 tricks 138 -101100010001 pitfalls 142 -101100010001 precedents 145 -101100010001 proportions 148 -101100010001 instincts 151 -101100010001 disasters 153 -101100010001 freedoms 156 -101100010001 traditions 162 -101100010001 drawbacks 162 -101100010001 wounds 169 -101100010001 grievances 172 -101100010001 shortcomings 174 -101100010001 excesses 174 -101100010001 discoveries 175 -101100010001 complications 178 -101100010001 accomplishments 179 -101100010001 safeguards 179 -101100010001 explanations 185 -101100010001 abilities 187 -101100010001 boundaries 187 -101100010001 qualities 190 -101100010001 achievements 195 -101100010001 innovations 200 -101100010001 qualifications 200 -101100010001 preferences 201 -101100010001 crises 204 -101100010001 offenses 206 -101100010001 maneuvers 208 -101100010001 standpoint 218 -101100010001 concepts 228 -101100010001 remedies 234 -101100010001 illnesses 236 -101100010001 strengths 237 -101100010001 flaws 239 -101100010001 characteristics 245 -101100010001 weaknesses 251 -101100010001 motives 251 -101100010001 realities 261 -101100010001 setbacks 265 -101100010001 victories 268 -101100010001 ambitions 275 -101100010001 irregularities 275 -101100010001 hurdles 279 -101100010001 experiences 296 -101100010001 alliances 296 -101100010001 strains 308 -101100010001 hazards 309 -101100010001 symptoms 319 -101100010001 themes 338 -101100010001 successes 355 -101100010001 tasks 376 -101100010001 criteria 399 -101100010001 woes 401 -101100010001 objectives 426 -101100010001 circles 434 -101100010001 considerations 435 -101100010001 obstacles 475 -101100010001 priorities 491 -101100010001 possibilities 503 -101100010001 errors 583 -101100010001 crimes 603 -101100010001 conflicts 647 -101100010001 functions 653 -101100010001 defenses 664 -101100010001 battles 721 -101100010001 principles 745 -101100010001 responsibilities 840 -101100010001 troubles 914 -101100010001 methods 921 -101100010001 skills 923 -101100010001 grounds 926 -101100010001 implications 966 -101100010001 tactics 999 -101100010001 facts 1031 -101100010001 difficulties 1171 -101100010001 goals 1223 -101100010001 developments 1246 -101100010001 reforms 1329 -101100010001 targets 1734 -101100010001 risks 2107 -101100010001 problems 12294 -101100010001 events 2210 -101100010010 prejudgments 1 -101100010010 Sitnin 1 -101100010010 anti-Nakasone 1 -101100010010 overmuch 1 -101100010010 moodily 1 -101100010010 imperceptivity 1 -101100010010 volatiliy 1 -101100010010 delegitimization 1 -101100010010 semicolon 1 -101100010010 chocoholics 1 -101100010010 pseudo-profundities 1 -101100010010 nightingale 1 -101100010010 gabble 1 -101100010010 Toil 1 -101100010010 despatch 1 -101100010010 gastritis 1 -101100010010 persuaders 1 -101100010010 tickers 2 -101100010010 giddiness 2 -101100010010 Mores 2 -101100010010 premeditation 2 -101100010010 rhapsodizing 2 -101100010010 conjectured 2 -101100010010 fearlessly 2 -101100010010 smeller 2 -101100010010 nonstudents 2 -101100010010 budget-busters 2 -101100010010 tidings 3 -101100010010 Kynar 3 -101100010010 untidiness 3 -101100010010 self-appraisal 3 -101100010010 footpaths 3 -101100010010 celesta 3 -101100010010 dismemberments 3 -101100010010 goofiness 3 -101100010010 lamentations 3 -101100010010 coproduction 3 -101100010010 soliloquies 3 -101100010010 disquisitions 3 -101100010010 end-game 3 -101100010010 paperweights 4 -101100010010 gleanings 4 -101100010010 infatuations 4 -101100010010 hesitations 4 -101100010010 tendinitis 5 -101100010010 red-baiting 5 -101100010010 harangues 5 -101100010010 murmurings 5 -101100010010 wetness 5 -101100010010 perturbation 5 -101100010010 jokers 5 -101100010010 yaks 5 -101100010010 tramps 5 -101100010010 perceptiveness 5 -101100010010 bookends 5 -101100010010 corruptions 5 -101100010010 interlocutors 6 -101100010010 monikers 6 -101100010010 upgradings 6 -101100010010 meditations 7 -101100010010 tendons 7 -101100010010 knowledgeably 7 -101100010010 banknotes 7 -101100010010 taskmaster 7 -101100010010 mailer 7 -101100010010 inductees 7 -101100010010 histrionics 8 -101100010010 tableaux 8 -101100010010 diversifications 8 -101100010010 squawks 8 -101100010010 specs 8 -101100010010 outcries 9 -101100010010 recalcitrance 9 -101100010010 rebuttals 9 -101100010010 hoots 10 -101100010010 prophecies 10 -101100010010 predicaments 10 -101100010010 evasions 10 -101100010010 conveyance 11 -101100010010 luncheons 11 -101100010010 hypotheses 11 -101100010010 preconceptions 11 -101100010010 scruples 12 -101100010010 drivel 12 -101100010010 pretenses 12 -101100010010 taboos 12 -101100010010 sensations 12 -101100010010 misperceptions 12 -101100010010 ruminations 13 -101100010010 potions 13 -101100010010 morsels 13 -101100010010 pointers 13 -101100010010 moles 15 -101100010010 nicknames 15 -101100010010 grudges 15 -101100010010 hunches 15 -101100010010 pleadings 15 -101100010010 exhortations 16 -101100010010 inferences 16 -101100010010 musings 16 -101100010010 dissents 18 -101100010010 delusions 18 -101100010010 falsehoods 18 -101100010010 utterances 19 -101100010010 gambles 19 -101100010010 disclaimers 19 -101100010010 theatrics 19 -101100010010 commentaries 20 -101100010010 sermons 20 -101100010010 determinations 20 -101100010010 ballads 21 -101100010010 jabs 21 -101100010010 generalizations 21 -101100010010 arias 22 -101100010010 communiques 23 -101100010010 firsts 23 -101100010010 reminiscences 24 -101100010010 platitudes 25 -101100010010 footprints 25 -101100010010 harnesses 25 -101100010010 speculations 26 -101100010010 prophets 27 -101100010010 misconceptions 29 -101100010010 equations 31 -101100010010 caveats 31 -101100010010 reflections 32 -101100010010 contentions 33 -101100010010 incursions 33 -101100010010 tidbits 34 -101100010010 hackles 34 -101100010010 barbs 36 -101100010010 perspectives 37 -101100010010 documentaries 38 -101100010010 vignettes 39 -101100010010 monologues 39 -101100010010 apprehensions 40 -101100010010 confessions 43 -101100010010 manuscripts 46 -101100010010 fads 47 -101100010010 cues 48 -101100010010 representations 49 -101100010010 discharges 51 -101100010010 truths 51 -101100010010 ballets 54 -101100010010 cliches 59 -101100010010 odometers 60 -101100010010 gripes 63 -101100010010 noises 64 -101100010010 declarations 69 -101100010010 myths 69 -101100010010 stereotypes 71 -101100010010 illusions 71 -101100010010 qualms 71 -101100010010 anecdotes 73 -101100010010 nightmares 74 -101100010010 anxieties 75 -101100010010 triumphs 78 -101100010010 queries 79 -101100010010 pronouncements 83 -101100010010 directives 89 -101100010010 essays 98 -101100010010 appraisals 108 -101100010010 misgivings 108 -101100010010 endorsements 111 -101100010010 phrases 120 -101100010010 observations 122 -101100010010 eyebrows 122 -101100010010 editorials 127 -101100010010 insights 135 -101100010010 notions 148 -101100010010 presentations 153 -101100010010 sentiments 169 -101100010010 bones 175 -101100010010 revelations 190 -101100010010 suspicions 201 -101100010010 wires 202 -101100010010 criticisms 202 -101100010010 emotions 210 -101100010010 fliers 240 -101100010010 assumptions 275 -101100010010 bets 294 -101100010010 judgments 296 -101100010010 reactions 297 -101100010010 headlines 299 -101100010010 theories 319 -101100010010 debates 322 -101100010010 appearances 329 -101100010010 jokes 331 -101100010010 thoughts 370 -101100010010 uncertainties 394 -101100010010 announcements 448 -101100010010 speeches 470 -101100010010 conclusions 477 -101100010010 feelings 486 -101100010010 messages 512 -101100010010 warnings 519 -101100010010 disclosures 547 -101100010010 attitudes 547 -101100010010 opinions 587 -101100010010 inquiries 615 -101100010010 choices 621 -101100010010 mistakes 628 -101100010010 articles 691 -101100010010 challenges 774 -101100010010 stories 1408 -101100010010 complaints 1729 -101100010010 ideas 1938 -101100010010 statements 2333 -101100010010 decisions 2793 -101100010010 concerns 5981 -101100010010 questions 4112 -101100010011 ample-sized 1 -101100010011 defense-satellite 1 -101100010011 regulatory-reserve 1 -101100010011 floorlevel 1 -101100010011 electronic-images 1 -101100010011 down-and-back 1 -101100010011 heavy-electrical 1 -101100010011 insititutions 1 -101100010011 55-member 1 -101100010011 spent-fuel 1 -101100010011 nuclear-related 1 -101100010011 sulfureous 1 -101100010011 retractors 1 -101100010011 camera-plus-recorder 1 -101100010011 air-cooling 1 -101100010011 underseat 1 -101100010011 more-innovative 1 -101100010011 family-ness 1 -101100010011 Banknet 1 -101100010011 Boulanger 1 -101100010011 16450 1 -101100010011 glare-reducing 1 -101100010011 credit-report 1 -101100010011 methionine 1 -101100010011 Pandas 1 -101100010011 Kiribati-Soviet 1 -101100010011 duotones 1 -101100010011 studio-and-tour 1 -101100010011 policy-coordinating 1 -101100010011 air-surveillance 1 -101100010011 memory-intensive 1 -101100010011 1987-returns 1 -101100010011 loan-payment 1 -101100010011 Skeeter 1 -101100010011 pectorals 1 -101100010011 red-rock 1 -101100010011 colored-plastic 1 -101100010011 hatbox 1 -101100010011 profit-depressed 1 -101100010011 3,383 1 -101100010011 affirmative-action-rights 1 -101100010011 hard-to-cut 1 -101100010011 tarrifs 1 -101100010011 water-sprinkler 1 -101100010011 traffic-building 1 -101100010011 43-member 1 -101100010011 baby-carriage-falling-downstairs 1 -101100010011 Airbus-style 1 -101100010011 purrings 1 -101100010011 Sunsweet 1 -101100010011 navel-orange 1 -101100010011 megadeaths 1 -101100010011 synthetic-glass 1 -101100010011 forgetter 1 -101100010011 manufacturability 1 -101100010011 ultramarine 1 -101100010011 land-mobile 1 -101100010011 sheep-horn 1 -101100010011 Abbott-and-Costello 1 -101100010011 hardest-fought 1 -101100010011 teleprinter 1 -101100010011 mission-critical 1 -101100010011 Intel-Micron 1 -101100010011 cutterhead 1 -101100010011 delicatessen-meat 1 -101100010011 set-top 1 -101100010011 Medicare-claims 1 -101100010011 2,177 1 -101100010011 most-open 1 -101100010011 error-correcting 1 -101100010011 tongue-retaining 1 -101100010011 horti-hype 1 -101100010011 drug-supply 1 -101100010011 16,500-ton-a-day 1 -101100010011 preciosity 1 -101100010011 sugar-mill 1 -101100010011 halyards 1 -101100010011 Bochco-esque 1 -101100010011 trash-bag 1 -101100010011 8,262,241 1 -101100010011 gravitas 1 -101100010011 MIPS-based 1 -101100010011 conceptual-design 1 -101100010011 water-sensible 1 -101100010011 Annenberg-funded 1 -101100010011 Geoserve-type 1 -101100010011 system-engineering 1 -101100010011 648,000-square-foot 1 -101100010011 car-launch 1 -101100010011 mishmashes 1 -101100010011 laser-patent 1 -101100010011 defense-based 1 -101100010011 KL-43 1 -101100010011 document-production 2 -101100010011 info 2 -101100010011 intuitions 2 -101100010011 satellite-transmission 2 -101100010011 quaintness 2 -101100010011 backlighting 2 -101100010011 break-dancing 2 -101100010011 fast-multiplying 2 -101100010011 judiciousness 2 -101100010011 identification-card 2 -101100010011 databank 2 -101100010011 tradingroom 2 -101100010011 free-of-charge 2 -101100010011 haying 2 -101100010011 electronic-data 2 -101100010011 lipectomy 2 -101100010011 Santorini 2 -101100010011 discernment 3 -101100010011 news-retrieval 3 -101100010011 overbillings 3 -101100010011 brassiere 3 -101100010011 sublimits 3 -101100010011 counter-measures 3 -101100010011 humidifier 3 -101100010011 kvetching 3 -101100010011 data-capture 3 -101100010011 rights-of-way 3 -101100010011 balustrade 3 -101100010011 fish-shooting 4 -101100010011 country-direct 4 -101100010011 primers 4 -101100010011 matter-of-factness 4 -101100010011 dimples 4 -101100010011 sonnets 4 -101100010011 soot 5 -101100010011 retrievable 5 -101100010011 airflow 5 -101100010011 birdies 5 -101100010011 pagination 6 -101100010011 self-analysis 7 -101100010011 torque 7 -101100010011 rehabilitative 7 -101100010011 refreshment 9 -101100010011 ribbing 10 -101100010011 payables 11 -101100010011 wisecracks 15 -101100010011 headsets 16 -101100010011 moralizing 22 -101100010011 telegrams 23 -101100010011 eavesdropping 36 -101100010011 feedback 88 -101100010011 alarm 320 -101100010011 guidance 513 -101100010011 reservations 547 -101100010011 publicity 878 -101100010011 information 9705 -101100010011 data 6334 -1011000101000 contriteness 1 -1011000101000 supermarket-drugstores 1 -1011000101000 testimoney 1 -1011000101000 fragrancing 1 -1011000101000 trekker 1 -1011000101000 hygene 1 -1011000101000 27291.40 1 -1011000101000 Contrivances 1 -1011000101000 aggravations 1 -1011000101000 puss 1 -1011000101000 sticky-tape 1 -1011000101000 fiddlesticks 1 -1011000101000 egregiousness 1 -1011000101000 caprices 1 -1011000101000 pricing-review 1 -1011000101000 mortification 1 -1011000101000 fatherliness 1 -1011000101000 well-told 1 -1011000101000 expensives 1 -1011000101000 log-rolling 1 -1011000101000 highhandedness 1 -1011000101000 crowds. 1 -1011000101000 macro-reforms 1 -1011000101000 source-licensing 1 -1011000101000 grub-hoes 1 -1011000101000 FDA-bashers 1 -1011000101000 Metallica 1 -1011000101000 dealership-income 1 -1011000101000 investigators. 1 -1011000101000 incandescently 1 -1011000101000 lifework 2 -1011000101000 monkeyshines 2 -1011000101000 warranto 2 -1011000101000 scrappiness 2 -1011000101000 Okies 2 -1011000101000 voicings 2 -1011000101000 trendsetters 2 -1011000101000 merrymaking 2 -1011000101000 appoval 2 -1011000101000 Turiddu 2 -1011000101000 paramours 2 -1011000101000 Francophones 2 -1011000101000 genitals 3 -1011000101000 traditionalism 3 -1011000101000 diatribes 3 -1011000101000 inlaws 3 -1011000101000 deficit-reductions 3 -1011000101000 Periogene 3 -1011000101000 Apology 3 -1011000101000 stakebuilding 3 -1011000101000 simplifications 3 -1011000101000 help. 3 -1011000101000 office. 4 -1011000101000 admonishments 4 -1011000101000 conceits 4 -1011000101000 hideaways 4 -1011000101000 onslaughts 4 -1011000101000 philosophizing 4 -1011000101000 ineptness 4 -1011000101000 prestidigitation 4 -1011000101000 footdragging 4 -1011000101000 proddings 4 -1011000101000 impoundments 5 -1011000101000 Messerschmidt 5 -1011000101000 censures 5 -1011000101000 Germanicas 5 -1011000101000 temblors 5 -1011000101000 doggerel 5 -1011000101000 broadsides 5 -1011000101000 Cube 6 -1011000101000 bailiwick 6 -1011000101000 scorekeepers 6 -1011000101000 soundings 6 -1011000101000 ministrations 7 -1011000101000 enactments 8 -1011000101000 stake-building 9 -1011000101000 verbiage 9 -1011000101000 gradualism 9 -1011000101000 incarnations 9 -1011000101000 countermoves 9 -1011000101000 transgression 9 -1011000101000 receiverships 9 -1011000101000 belligerence 10 -1011000101000 eyesight 11 -1011000101000 disfavor 12 -1011000101000 escapade 12 -1011000101000 dockets 13 -1011000101000 reapportionment 13 -1011000101000 rebuffs 13 -1011000101000 polemics 13 -1011000101000 geysers 14 -1011000101000 backtracking 15 -1011000101000 enticements 16 -1011000101000 diatribe 22 -1011000101000 sympathies 32 -1011000101000 strictures 42 -1011000101000 reticence 46 -1011000101000 reappointment 46 -1011000101000 atrocities 52 -1011000101000 intransigence 59 -1011000101000 contraceptives 64 -1011000101000 inaction 91 -1011000101000 writings 127 -1011000101000 interventions 151 -1011000101000 activism 183 -1011000101000 rulings 482 -1011000101000 arguments 995 -1011000101000 recommendations 1025 -1011000101000 findings 1091 -1011000101000 remarks 1168 -1011000101000 duties 1249 -1011000101000 comments 1636 -1011000101000 intervention 1878 -1011000101000 testimony 2090 -1011000101000 action 8999 -1011000101000 actions 3243 -1011000101001 micromanagment 1 -1011000101001 Trotskyism 1 -1011000101001 causalities 1 -1011000101001 emsembles 1 -1011000101001 absorbencies 1 -1011000101001 60-33 1 -1011000101001 254-4 1 -1011000101001 36,093 1 -1011000101001 cross-examinations 1 -1011000101001 catch-alls 1 -1011000101001 bivalves 1 -1011000101001 tax-deferments 1 -1011000101001 support/opposition 1 -1011000101001 taxi-driver 1 -1011000101001 wire-man 1 -1011000101001 damage. 2 -1011000101001 bedbugs 2 -1011000101001 mums 2 -1011000101001 misdoings 2 -1011000101001 mucus 2 -1011000101001 anticipations 2 -1011000101001 presssure 2 -1011000101001 knuckleheads 2 -1011000101001 qualifiers 2 -1011000101001 48-30 2 -1011000101001 Persuaders 2 -1011000101001 sternness 3 -1011000101001 12-8 3 -1011000101001 pretexts 3 -1011000101001 sorting-out 3 -1011000101001 positions. 3 -1011000101001 rantings 3 -1011000101001 B-17s 3 -1011000101001 94-3 3 -1011000101001 sedatives 4 -1011000101001 Benzigers 4 -1011000101001 wastelands 4 -1011000101001 proposal. 4 -1011000101001 anemias 4 -1011000101001 elixirs 5 -1011000101001 antipathies 5 -1011000101001 fractiousness 5 -1011000101001 maybes 5 -1011000101001 oaths 7 -1011000101001 holdups 7 -1011000101001 minesweepers 8 -1011000101001 throttles 8 -1011000101001 ruses 9 -1011000101001 aliases 10 -1011000101001 exotics 14 -1011000101001 flashbacks 18 -1011000101001 submissions 19 -1011000101001 rapids 19 -1011000101001 tributes 20 -1011000101001 deterrents 21 -1011000101001 attachments 26 -1011000101001 add-ons 30 -1011000101001 feelers 33 -1011000101001 fixes 52 -1011000101001 decrees 67 -1011000101001 precautions 89 -1011000101001 invitations 108 -1011000101001 gestures 123 -1011000101001 resolutions 226 -1011000101001 treaties 262 -1011000101001 appointments 408 -1011000101001 approaches 552 -1011000101001 solutions 606 -1011000101001 amendments 638 -1011000101001 answers 639 -1011000101001 alternatives 1255 -1011000101001 steps 2457 -1011000101001 moves 3245 -1011000101001 proposals 3285 -1011000101001 measures 4029 -1011000101001 legislation 5257 -1011000101010 engineer/ski 1 -1011000101010 diol 1 -1011000101010 militating 1 -1011000101010 no-accounts 1 -1011000101010 vituperation 1 -1011000101010 base-efforts 1 -1011000101010 fingernail-size 1 -1011000101010 anti-Bush 1 -1011000101010 diplomat-chat 1 -1011000101010 escheat 1 -1011000101010 lesson-learning 1 -1011000101010 Interest-Rate 2 -1011000101010 plights 2 -1011000101010 preventives 2 -1011000101010 pogroms 2 -1011000101010 creases 2 -1011000101010 season-opener 2 -1011000101010 insurance. 2 -1011000101010 reevaluations 2 -1011000101010 phaseouts 2 -1011000101010 Euro-losses 2 -1011000101010 interferences 2 -1011000101010 grandees 2 -1011000101010 Playboys 3 -1011000101010 litigations 3 -1011000101010 rainstorms 3 -1011000101010 subunits 3 -1011000101010 co-processors 3 -1011000101010 discriminations 3 -1011000101010 indemnifications 3 -1011000101010 rumormongering 4 -1011000101010 laws. 4 -1011000101010 inclines 4 -1011000101010 wordplay 4 -1011000101010 spores 5 -1011000101010 bulkheads 5 -1011000101010 embers 5 -1011000101010 rightists 6 -1011000101010 exotica 6 -1011000101010 affronts 6 -1011000101010 spuds 7 -1011000101010 scalps 7 -1011000101010 heartbeats 8 -1011000101010 tirades 8 -1011000101010 alchemy 8 -1011000101010 wails 11 -1011000101010 notifications 13 -1011000101010 writs 16 -1011000101010 revolts 18 -1011000101010 pores 20 -1011000101010 railing 30 -1011000101010 rejections 30 -1011000101010 counterclaims 33 -1011000101010 libertarians 49 -1011000101010 prohibitions 94 -1011000101010 hedges 121 -1011000101010 petitions 132 -1011000101010 prosecutions 148 -1011000101010 motions 153 -1011000101010 servants 191 -1011000101010 probes 204 -1011000101010 assessments 213 -1011000101010 accusations 261 -1011000101010 convictions 304 -1011000101010 suspects 358 -1011000101010 indictments 490 -1011000101010 demonstrations 569 -1011000101010 protests 841 -1011000101010 fines 1005 -1011000101010 penalties 1237 -1011000101010 demands 1723 -1011000101010 allegations 1903 -1011000101010 lawsuits 1925 -1011000101010 suits 2238 -1011000101010 provisions 2750 -1011000101010 claims 5746 -1011000101010 charges 8890 -1011000101011 mealiemeal 1 -1011000101011 fluid-film 1 -1011000101011 leger-demain 1 -1011000101011 scrutinies 1 -1011000101011 blue-plate 1 -1011000101011 torpidly 1 -1011000101011 inssues 1 -1011000101011 emphass 1 -1011000101011 duty. 1 -1011000101011 coalition-builder 1 -1011000101011 clean-ups 1 -1011000101011 constrictions 1 -1011000101011 action/goals 1 -1011000101011 backlashes 1 -1011000101011 opposition. 1 -1011000101011 self-depilation 1 -1011000101011 264. 1 -1011000101011 chaperons 1 -1011000101011 lipid-modified 1 -1011000101011 recorder-televisions 1 -1011000101011 initiatve 1 -1011000101011 dilapidation 2 -1011000101011 gassings 2 -1011000101011 go-aheads 2 -1011000101011 150-seaters 2 -1011000101011 reallocations 2 -1011000101011 bounty-hunting 2 -1011000101011 requirments 2 -1011000101011 Dixiecrats 2 -1011000101011 Amigas 2 -1011000101011 staters 2 -1011000101011 TARIFFS 2 -1011000101011 all-nighter 2 -1011000101011 Sinatras 2 -1011000101011 sense. 2 -1011000101011 restitutions 2 -1011000101011 thrush 2 -1011000101011 wheel-spinning 3 -1011000101011 annuitants 3 -1011000101011 proceedings. 3 -1011000101011 furrows 4 -1011000101011 compromiser 4 -1011000101011 evaluator 4 -1011000101011 tangos 5 -1011000101011 billets 6 -1011000101011 idiosyncrasies 6 -1011000101011 amphitheaters 7 -1011000101011 aspersions 7 -1011000101011 permissiveness 11 -1011000101011 decals 12 -1011000101011 folders 13 -1011000101011 maniacs 13 -1011000101011 moratoriums 22 -1011000101011 stipulations 22 -1011000101011 treasuries 27 -1011000101011 crackdowns 32 -1011000101011 slowdowns 39 -1011000101011 minimums 48 -1011000101011 clearances 82 -1011000101011 liens 84 -1011000101011 gimmicks 99 -1011000101011 formulas 157 -1011000101011 ceilings 174 -1011000101011 protections 223 -1011000101011 codes 253 -1011000101011 mechanisms 259 -1011000101011 restraints 295 -1011000101011 curbs 332 -1011000101011 statutes 354 -1011000101011 constraints 361 -1011000101011 limitations 367 -1011000101011 ratios 436 -1011000101011 schedules 595 -1011000101011 guidelines 1172 -1011000101011 quotas 1307 -1011000101011 procedures 1575 -1011000101011 regulation 1900 -1011000101011 regulations 2455 -1011000101011 requirements 2455 -1011000101011 restrictions 2504 -1011000101011 standards 3183 -1011000101011 laws 4567 -1011000101011 rules 6255 -1011000101100 execrable 1 -1011000101100 page-flipping 1 -1011000101100 freshening 1 -1011000101100 1099s 2 -1011000101100 flywheels 2 -1011000101100 tampers 2 -1011000101100 musicale 2 -1011000101100 manuevers 2 -1011000101100 proceduralism 2 -1011000101100 misfires 3 -1011000101100 moccasins 3 -1011000101100 hypotheticals 3 -1011000101100 pallets 3 -1011000101100 immunizations 4 -1011000101100 colloquialism 4 -1011000101100 phenom 5 -1011000101100 blockades 5 -1011000101100 evacuations 5 -1011000101100 itineraries 6 -1011000101100 interludes 6 -1011000101100 Missourians 6 -1011000101100 shootouts 6 -1011000101100 signings 6 -1011000101100 raffles 6 -1011000101100 spadework 6 -1011000101100 sale-leasebacks 7 -1011000101100 capers 7 -1011000101100 regimens 8 -1011000101100 holograms 8 -1011000101100 jackpots 8 -1011000101100 sketchbooks 8 -1011000101100 revues 8 -1011000101100 poisonings 9 -1011000101100 interfaces 9 -1011000101100 obituaries 9 -1011000101100 barrages 9 -1011000101100 break-ins 9 -1011000101100 mischarges 9 -1011000101100 sonatas 9 -1011000101100 dorms 9 -1011000101100 scrapes 11 -1011000101100 loaders 11 -1011000101100 slugs 11 -1011000101100 salvos 11 -1011000101100 handbooks 11 -1011000101100 linkups 11 -1011000101100 powers-that-be 11 -1011000101100 previews 12 -1011000101100 voice-overs 12 -1011000101100 blemishes 12 -1011000101100 overpayments 12 -1011000101100 waffles 13 -1011000101100 bums 14 -1011000101100 certifications 14 -1011000101100 fellowships 14 -1011000101100 accruals 15 -1011000101100 chronologies 16 -1011000101100 numerals 16 -1011000101100 wardens 17 -1011000101100 sprints 17 -1011000101100 transparencies 18 -1011000101100 guidebooks 18 -1011000101100 aces 18 -1011000101100 memorandums 19 -1011000101100 journeys 19 -1011000101100 smarts 20 -1011000101100 rosters 20 -1011000101100 layouts 21 -1011000101100 overdrafts 21 -1011000101100 booklets 21 -1011000101100 referendums 21 -1011000101100 memoranda 21 -1011000101100 drawers 22 -1011000101100 spas 23 -1011000101100 crowns 23 -1011000101100 telexes 23 -1011000101100 ladders 24 -1011000101100 embargoes 26 -1011000101100 lingo 27 -1011000101100 expeditions 28 -1011000101100 stardom 29 -1011000101100 sponsorships 30 -1011000101100 positives 31 -1011000101100 curves 31 -1011000101100 receptions 32 -1011000101100 shafts 33 -1011000101100 dormitories 33 -1011000101100 parades 33 -1011000101100 barricades 34 -1011000101100 screenings 35 -1011000101100 chimes 38 -1011000101100 wigs 38 -1011000101100 odors 38 -1011000101100 bubbles 38 -1011000101100 badges 39 -1011000101100 drones 41 -1011000101100 wiretaps 42 -1011000101100 diagnoses 42 -1011000101100 computations 42 -1011000101100 postings 43 -1011000101100 bottoms 43 -1011000101100 formations 44 -1011000101100 logos 46 -1011000101100 questionnaires 51 -1011000101100 tellers 51 -1011000101100 drills 59 -1011000101100 gauges 59 -1011000101100 scams 60 -1011000101100 compositions 61 -1011000101100 flops 62 -1011000101100 affidavits 62 -1011000101100 pamphlets 63 -1011000101100 charters 65 -1011000101100 verdicts 66 -1011000101100 pads 66 -1011000101100 cleanups 67 -1011000101100 bailouts 67 -1011000101100 props 67 -1011000101100 endowments 67 -1011000101100 competitions 68 -1011000101100 rails 71 -1011000101100 workshops 71 -1011000101100 extras 72 -1011000101100 leaflets 72 -1011000101100 diaries 72 -1011000101100 booms 72 -1011000101100 exhibitions 73 -1011000101100 nets 74 -1011000101100 prospectuses 76 -1011000101100 pins 79 -1011000101100 traps 79 -1011000101100 evenings 79 -1011000101100 dramas 81 -1011000101100 cartels 82 -1011000101100 lunches 85 -1011000101100 upgrades 87 -1011000101100 logs 88 -1011000101100 recipes 92 -1011000101100 briefings 93 -1011000101100 accommodations 96 -1011000101100 selections 97 -1011000101100 briefs 98 -1011000101100 ceremonies 99 -1011000101100 histories 99 -1011000101100 capsules 106 -1011000101100 invoices 109 -1011000101100 lobbies 110 -1011000101100 exams 111 -1011000101100 rifles 113 -1011000101100 texts 115 -1011000101100 citations 116 -1011000101100 supplements 122 -1011000101100 readings 132 -1011000101100 memberships 138 -1011000101100 prescriptions 138 -1011000101100 depositions 140 -1011000101100 crashes 149 -1011000101100 analyses 164 -1011000101100 searches 173 -1011000101100 openings 176 -1011000101100 specifications 183 -1011000101100 recruits 185 -1011000101100 entries 191 -1011000101100 slides 193 -1011000101100 posters 197 -1011000101100 substitutes 200 -1011000101100 ballots 206 -1011000101100 assignments 208 -1011000101100 memos 209 -1011000101100 seminars 215 -1011000101100 fuels 216 -1011000101100 columns 239 -1011000101100 notices 248 -1011000101100 audits 262 -1011000101100 transmissions 262 -1011000101100 raids 269 -1011000101100 drawings 275 -1011000101100 treatments 275 -1011000101100 charts 296 -1011000101100 shelves 298 -1011000101100 advertisements 341 -1011000101100 inspections 362 -1011000101100 calculations 368 -1011000101100 tables 409 -1011000101100 experiments 423 -1011000101100 labels 432 -1011000101100 lights 492 -1011000101100 files 514 -1011000101100 designs 587 -1011000101100 leases 655 -1011000101100 transfers 655 -1011000101100 dates 664 -1011000101100 settlements 668 -1011000101100 stars 719 -1011000101100 licenses 722 -1011000101100 trials 725 -1011000101100 failures 760 -1011000101100 grants 772 -1011000101100 awards 847 -1011000101100 checks 898 -1011000101100 strikes 1045 -1011000101100 papers 1352 -1011000101100 deals 1927 -1011000101100 studies 1970 -1011000101100 trades 2107 -1011000101100 tests 2520 -1011000101100 books 2649 -1011000101100 documents 2671 -1011000101100 ads 2700 -1011000101100 records 2774 -1011000101100 transactions 4203 -1011000101100 accounts 4673 -1011000101101 Gazyeta 1 -1011000101101 organizaton 1 -1011000101101 comeliness 1 -1011000101101 care-issues 1 -1011000101101 throve 1 -1011000101101 insurance-benefits 1 -1011000101101 conjoin 1 -1011000101101 priapism 1 -1011000101101 less-brave 1 -1011000101101 life/death 1 -1011000101101 based-business 1 -1011000101101 sudsier 1 -1011000101101 iron-producers 1 -1011000101101 interests. 2 -1011000101101 derbies 2 -1011000101101 rinses 2 -1011000101101 hoosegow 2 -1011000101101 non-cooperation 2 -1011000101101 affliate 2 -1011000101101 subcultures 2 -1011000101101 therefrom 2 -1011000101101 frolics 2 -1011000101101 unpreparedness 2 -1011000101101 proposals. 2 -1011000101101 Know-It-Alls 2 -1011000101101 popularizers 2 -1011000101101 agenices 2 -1011000101101 combos 3 -1011000101101 possiblities 3 -1011000101101 judiciaries 3 -1011000101101 anouncement 3 -1011000101101 evaluators 3 -1011000101101 lockups 3 -1011000101101 meccas 3 -1011000101101 myth-making 4 -1011000101101 spiels 4 -1011000101101 tax. 4 -1011000101101 hardcovers 4 -1011000101101 glazes 4 -1011000101101 encampments 4 -1011000101101 washrooms 4 -1011000101101 pogrom 5 -1011000101101 councillors 5 -1011000101101 touchstones 5 -1011000101101 man. 5 -1011000101101 megaprojects 6 -1011000101101 proliferates 6 -1011000101101 stakeouts 6 -1011000101101 treatises 6 -1011000101101 pizzazz 6 -1011000101101 gambits 7 -1011000101101 deferments 7 -1011000101101 fiascoes 7 -1011000101101 cutoffs 7 -1011000101101 experimenters 7 -1011000101101 doodads 7 -1011000101101 progams 7 -1011000101101 postures 8 -1011000101101 maven 8 -1011000101101 chancellors 9 -1011000101101 COLAs 10 -1011000101101 councilor 10 -1011000101101 tonics 12 -1011000101101 setups 12 -1011000101101 sieves 14 -1011000101101 cottages 14 -1011000101101 swindles 14 -1011000101101 academies 15 -1011000101101 circulars 15 -1011000101101 incubators 19 -1011000101101 thrillers 20 -1011000101101 sponges 20 -1011000101101 checkpoints 22 -1011000101101 tie-ups 22 -1011000101101 celebre 23 -1011000101101 consortia 27 -1011000101101 stakeholders 28 -1011000101101 ordinances 32 -1011000101101 watchdogs 35 -1011000101101 fairs 38 -1011000101101 bulletins 40 -1011000101101 tie-ins 41 -1011000101101 protocols 41 -1011000101101 junkies 42 -1011000101101 carts 47 -1011000101101 memorabilia 48 -1011000101101 boutiques 60 -1011000101101 forums 63 -1011000101101 coups 65 -1011000101101 handouts 65 -1011000101101 beads 70 -1011000101101 endeavors 76 -1011000101101 coalitions 80 -1011000101101 manuals 80 -1011000101101 bureaus 86 -1011000101101 thinkers 86 -1011000101101 bureaucracies 93 -1011000101101 operas 99 -1011000101101 councils 107 -1011000101101 institutes 123 -1011000101101 slogans 128 -1011000101101 syndicates 129 -1011000101101 vouchers 140 -1011000101101 spaces 156 -1011000101101 clauses 156 -1011000101101 organs 172 -1011000101101 newsletters 183 -1011000101101 journals 192 -1011000101101 ministries 196 -1011000101101 missions 218 -1011000101101 slots 230 -1011000101101 prisons 236 -1011000101101 zones 275 -1011000101101 clinics 285 -1011000101101 providers 308 -1011000101101 schemes 315 -1011000101101 malls 333 -1011000101101 staffs 352 -1011000101101 laboratories 366 -1011000101101 capabilities 411 -1011000101101 structures 413 -1011000101101 lands 417 -1011000101101 entities 433 -1011000101101 courses 473 -1011000101101 bodies 520 -1011000101101 clubs 553 -1011000101101 initiatives 576 -1011000101101 budgets 674 -1011000101101 publications 716 -1011000101101 packages 724 -1011000101101 enterprises 779 -1011000101101 departments 863 -1011000101101 techniques 882 -1011000101101 campaigns 900 -1011000101101 arrangements 1033 -1011000101101 strategies 1091 -1011000101101 subsidies 1546 -1011000101101 organizations 1586 -1011000101101 centers 1882 -1011000101101 agencies 3195 -1011000101101 programs 8346 -1011000101101 policies 4641 -1011000101110 Houstons 1 -1011000101110 helpmate 1 -1011000101110 presidents. 1 -1011000101110 Alcoans 1 -1011000101110 mellitus 1 -1011000101110 companies-in-residence 1 -1011000101110 bill-up 1 -1011000101110 claimants. 1 -1011000101110 pabulum 2 -1011000101110 tax-credits 2 -1011000101110 releasees 2 -1011000101110 remunerations 2 -1011000101110 extrapolations 3 -1011000101110 detriments 3 -1011000101110 sludges 4 -1011000101110 carry-backs 5 -1011000101110 ELVs 5 -1011000101110 Strings 5 -1011000101110 jottings 5 -1011000101110 trifles 6 -1011000101110 opportunites 6 -1011000101110 gatherer 6 -1011000101110 torpedos 6 -1011000101110 mark-ups 6 -1011000101110 pablum 7 -1011000101110 hatchets 7 -1011000101110 restorations 8 -1011000101110 W-2s 9 -1011000101110 give-backs 9 -1011000101110 checkups 10 -1011000101110 acronyms 10 -1011000101110 clarifications 12 -1011000101110 reprimands 12 -1011000101110 stipends 12 -1011000101110 set-asides 12 -1011000101110 guideposts 13 -1011000101110 mammograms 14 -1011000101110 retainers 14 -1011000101110 succor 15 -1011000101110 condolences 16 -1011000101110 accolades 17 -1011000101110 holdovers 18 -1011000101110 givebacks 20 -1011000101110 cheaters 21 -1011000101110 renewals 23 -1011000101110 congratulations 24 -1011000101110 freebies 26 -1011000101110 planks 30 -1011000101110 deviations 32 -1011000101110 remittances 33 -1011000101110 absences 34 -1011000101110 scapegoats 34 -1011000101110 disincentives 35 -1011000101110 punishments 35 -1011000101110 giveaways 41 -1011000101110 padding 41 -1011000101110 cures 52 -1011000101110 windfalls 52 -1011000101110 gratuities 53 -1011000101110 furloughs 54 -1011000101110 misrepresentations 57 -1011000101110 footnotes 68 -1011000101110 entitlements 69 -1011000101110 reimbursements 73 -1011000101110 referrals 73 -1011000101110 avoidance 78 -1011000101110 X-rays 81 -1011000101110 inducements 82 -1011000101110 havens 88 -1011000101110 excuses 104 -1011000101110 perks 116 -1011000101110 brackets 117 -1011000101110 allocations 127 -1011000101110 sacrifices 128 -1011000101110 valuations 131 -1011000101110 scholarships 134 -1011000101110 visas 136 -1011000101110 pitches 140 -1011000101110 payoffs 145 -1011000101110 allowances 158 -1011000101110 prizes 158 -1011000101110 extensions 165 -1011000101110 dues 165 -1011000101110 deadlines 182 -1011000101110 tips 199 -1011000101110 waivers 200 -1011000101110 bribes 207 -1011000101110 headaches 217 -1011000101110 privileges 260 -1011000101110 collections 273 -1011000101110 balances 278 -1011000101110 exemptions 306 -1011000101110 sentences 324 -1011000101110 rewards 327 -1011000101110 shelters 336 -1011000101110 royalties 372 -1011000101110 refunds 407 -1011000101110 instructions 456 -1011000101110 donations 477 -1011000101110 gifts 539 -1011000101110 promotions 559 -1011000101110 receipts 674 -1011000101110 advantages 696 -1011000101110 bonuses 739 -1011000101110 deductions 808 -1011000101110 discounts 834 -1011000101110 contributions 1272 -1011000101110 credits 1432 -1011000101110 concessions 1444 -1011000101110 revenues 1511 -1011000101110 pressures 1600 -1011000101110 incentives 1672 -1011000101110 advice 1789 -1011000101110 opportunities 1823 -1011000101110 returns 2453 -1011000101110 reasons 3170 -1011000101110 benefits 5529 -1011000101110 fees 3865 -1011000101111 Basies 1 -1011000101111 bootprints 1 -1011000101111 dinkier 1 -1011000101111 fumigants 1 -1011000101111 LOBBYISTS 1 -1011000101111 1,574,507 1 -1011000101111 housedress 1 -1011000101111 8,626,672 1 -1011000101111 203,479 1 -1011000101111 music-videos 1 -1011000101111 LOBBIES 1 -1011000101111 technicals 1 -1011000101111 WEEK-TV 1 -1011000101111 descant 1 -1011000101111 Khanates 1 -1011000101111 9s 1 -1011000101111 Viper 1 -1011000101111 T-bones 1 -1011000101111 Denaka 1 -1011000101111 Hummers 2 -1011000101111 over-budgeted 2 -1011000101111 vertebra 2 -1011000101111 reknown 2 -1011000101111 thrombolytics 2 -1011000101111 quizzically 2 -1011000101111 tappers 2 -1011000101111 molars 2 -1011000101111 crappies 2 -1011000101111 WNYB 2 -1011000101111 hazelnuts 3 -1011000101111 1,488 3 -1011000101111 antonym 3 -1011000101111 risk-weighting 3 -1011000101111 sub-assemblies 3 -1011000101111 Reservists 4 -1011000101111 cargos 4 -1011000101111 WYNY-FM 5 -1011000101111 lead-times 5 -1011000101111 infamy 6 -1011000101111 pennants 6 -1011000101111 undershirts 7 -1011000101111 mailgrams 7 -1011000101111 heifers 8 -1011000101111 howitzers 9 -1011000101111 Moondreamers 9 -1011000101111 handbills 9 -1011000101111 ultimatums 10 -1011000101111 pass-throughs 10 -1011000101111 counteroffers 12 -1011000101111 summonses 13 -1011000101111 originators 21 -1011000101111 plaudits 28 -1011000101111 authorizations 32 -1011000101111 placebos 33 -1011000101111 pardons 38 -1011000101111 tenders 93 -1011000101111 consents 97 -1011000101111 acceptances 112 -1011000101111 subscriptions 121 -1011000101111 preparations 130 -1011000101111 bookings 217 -1011000101111 subpoenas 222 -1011000101111 proxies 310 -1011000101111 requests 981 -1011000101111 commitments 1474 -1011000101111 applications 1541 -1011000101111 bids 2461 -1011000101111 orders 5745 -1011000101111 contracts 7606 -101100011000 analysts-- 1 -101100011000 progidies 1 -101100011000 cessations 1 -101100011000 hypertensions 1 -101100011000 sunburns 1 -101100011000 118-0 1 -101100011000 no-man's-land 1 -101100011000 pension-indexing 1 -101100011000 unclarity 1 -101100011000 him-or-herself 1 -101100011000 let-up 1 -101100011000 trialsonce 1 -101100011000 utilitization 1 -101100011000 ground-testing 1 -101100011000 mulching 1 -101100011000 WMUR-TV 1 -101100011000 shelf-space 1 -101100011000 badinage 1 -101100011000 discussion-and-analysis 1 -101100011000 ground-coverer 1 -101100011000 Goan 1 -101100011000 housecleanings 1 -101100011000 speedups 1 -101100011000 linedrawing 1 -101100011000 platinum-palladium 1 -101100011000 reinvestigations 1 -101100011000 upbringings 1 -101100011000 signees 1 -101100011000 abalones 1 -101100011000 expectationists 1 -101100011000 astern 1 -101100011000 consensus-builders 1 -101100011000 prop-up 1 -101100011000 spearlike 1 -101100011000 homeruns 1 -101100011000 civic-mindedness 1 -101100011000 lathe-priced 1 -101100011000 aviaries 1 -101100011000 miswirings 1 -101100011000 dollar-dumping 1 -101100011000 paribus 1 -101100011000 inprovements 1 -101100011000 reissuance 1 -101100011000 workoff 1 -101100011000 WNEW-AM/FM 1 -101100011000 diminutions 1 -101100011000 skills.They 1 -101100011000 counter-apparatus 1 -101100011000 KMID-TV 1 -101100011000 fill-ups 1 -101100011000 tinniness 1 -101100011000 in-jokes 1 -101100011000 bridgeheads 1 -101100011000 misestimation 1 -101100011000 decions 1 -101100011000 top-heaviness 1 -101100011000 catnappings 1 -101100011000 hay-cutting 1 -101100011000 birthrights 1 -101100011000 accentuation 1 -101100011000 muffin-making 1 -101100011000 Radiophysics 1 -101100011000 inexorabilities 2 -101100011000 Fiestas 2 -101100011000 signficance 2 -101100011000 grillwork 2 -101100011000 kingmakers 2 -101100011000 rebounder 2 -101100011000 starlings 2 -101100011000 gradients 2 -101100011000 inter-ownership 2 -101100011000 leakages 2 -101100011000 2,367 2 -101100011000 noncitizens 2 -101100011000 godfathers 2 -101100011000 blue-suiters 2 -101100011000 meteors 3 -101100011000 Intruder 3 -101100011000 courtesies 3 -101100011000 sepsis 3 -101100011000 amorality 3 -101100011000 ruptures 3 -101100011000 WPIX 3 -101100011000 mot 3 -101100011000 skullduggery 3 -101100011000 Gorbymania 3 -101100011000 results. 3 -101100011000 tightenings 3 -101100011000 refurbishments 3 -101100011000 strudel 3 -101100011000 irrelevancies 4 -101100011000 slippages 4 -101100011000 whoppers 4 -101100011000 stopovers 4 -101100011000 near-paralysis 4 -101100011000 maladjustments 4 -101100011000 bellwethers 4 -101100011000 leaguers 4 -101100011000 overstaffing 4 -101100011000 hand-me-downs 4 -101100011000 headstones 4 -101100011000 modifiers 4 -101100011000 wavers 4 -101100011000 normality 5 -101100011000 snapback 5 -101100011000 yuks 5 -101100011000 cross-subsidies 5 -101100011000 ill-will 5 -101100011000 thaws 5 -101100011000 untruths 5 -101100011000 cross-pollination 5 -101100011000 clipboards 5 -101100011000 undesirables 6 -101100011000 astigmatism 6 -101100011000 comebacks 6 -101100011000 schisms 6 -101100011000 synopses 6 -101100011000 moonshine 6 -101100011000 micro-organisms 7 -101100011000 fudging 8 -101100011000 correlations 8 -101100011000 jingoism 8 -101100011000 flare-ups 8 -101100011000 restiveness 8 -101100011000 mutations 8 -101100011000 slip-ups 8 -101100011000 mismatches 8 -101100011000 disharmony 9 -101100011000 verbs 9 -101100011000 happenings 9 -101100011000 bombshells 9 -101100011000 repartee 9 -101100011000 shakeups 9 -101100011000 ambushes 9 -101100011000 stopper 9 -101100011000 kinks 10 -101100011000 dents 10 -101100011000 variances 10 -101100011000 bottom-fishing 11 -101100011000 divergences 11 -101100011000 chinks 11 -101100011000 advancements 11 -101100011000 hiccups 12 -101100011000 acidification 12 -101100011000 escalators 12 -101100011000 cross-holdings 14 -101100011000 redundancies 14 -101100011000 footwork 14 -101100011000 fissures 15 -101100011000 immersion 15 -101100011000 rejoicing 17 -101100011000 near-collisions 18 -101100011000 misjudgments 18 -101100011000 cross-shareholdings 19 -101100011000 deletions 21 -101100011000 substitutions 22 -101100011000 equivalence 22 -101100011000 refinements 23 -101100011000 inequalities 24 -101100011000 dryness 25 -101100011000 blips 26 -101100011000 owl 26 -101100011000 transformations 26 -101100011000 inequity 26 -101100011000 aberrations 27 -101100011000 anomalies 35 -101100011000 antagonism 37 -101100011000 trade-offs 45 -101100011000 inaccuracies 46 -101100011000 mischief 47 -101100011000 inequities 52 -101100011000 inconsistencies 55 -101100011000 gridlock 55 -101100011000 alterations 60 -101100011000 complicity 61 -101100011000 animosity 65 -101100011000 anemia 70 -101100011000 shakeup 70 -101100011000 dissension 78 -101100011000 discord 84 -101100011000 synergies 86 -101100011000 collisions 99 -101100011000 disturbances 101 -101100011000 infighting 104 -101100011000 distinctions 104 -101100011000 disappointments 108 -101100011000 accommodation 113 -101100011000 differentials 114 -101100011000 headway 117 -101100011000 strides 117 -101100011000 similarities 129 -101100011000 disparities 130 -101100011000 accomplishment 133 -101100011000 hostilities 136 -101100011000 discrepancies 147 -101100011000 disruptions 150 -101100011000 compromises 160 -101100011000 loopholes 166 -101100011000 distortions 172 -101100011000 deficiencies 186 -101100011000 softness 192 -101100011000 upheaval 195 -101100011000 differential 196 -101100011000 gaps 206 -101100011000 inroads 212 -101100011000 cracks 229 -101100011000 modifications 244 -101100011000 comparisons 262 -101100011000 revisions 352 -101100011000 upturn 362 -101100011000 spreads 375 -101100011000 surprises 384 -101100011000 tension 474 -101100011000 shifts 533 -101100011000 tensions 704 -101100011000 cutbacks 720 -101100011000 adjustments 854 -101100011000 improvements 1271 -101100011000 delays 1457 -101100011000 differences 1705 -101100011000 improvement 2303 -101100011000 changes 8427 -101100011000 progress 2387 -101100011001 120-5 1 -101100011001 tables. 1 -101100011001 megadollars 1 -101100011001 free-falls 1 -101100011001 overaccrual 1 -101100011001 hold-down 1 -101100011001 shelter-oriented 1 -101100011001 overuns 1 -101100011001 deficicency 1 -101100011001 fly-up 1 -101100011001 stablity 1 -101100011001 SIEVES 1 -101100011001 authorites 1 -101100011001 408-1 1 -101100011001 Overshadowed 1 -101100011001 return. 1 -101100011001 cuts-period 1 -101100011001 momentum-oriented 1 -101100011001 revolters 1 -101100011001 liabilites 1 -101100011001 restaints 1 -101100011001 instablity 1 -101100011001 reimbursible 1 -101100011001 them-that-has 1 -101100011001 fibrillations 1 -101100011001 cut. 1 -101100011001 increasers 2 -101100011001 fixers 2 -101100011001 act. 2 -101100011001 extraditions 2 -101100011001 disproportionally 2 -101100011001 increase. 2 -101100011001 choppiness 3 -101100011001 greenmailers 5 -101100011001 retrogression 5 -101100011001 estimators 8 -101100011001 busters 13 -101100011001 abatements 24 -101100011001 cutters 33 -101100011001 evaders 34 -101100011001 cheats 34 -101100011001 deferrals 35 -101100011001 dips 38 -101100011001 rollbacks 38 -101100011001 gouging 39 -101100011001 run-ups 40 -101100011001 earner 44 -101100011001 payers 53 -101100011001 plunges 63 -101100011001 hikes 100 -101100011001 tags 109 -101100011001 earners 133 -101100011001 hike 143 -101100011001 decreases 145 -101100011001 jumps 155 -101100011001 scales 170 -101100011001 bracket 199 -101100011001 overruns 262 -101100011001 evasion 268 -101100011001 boosts 337 -101100011001 tag 339 -101100011001 swings 554 -101100011001 drops 565 -101100011001 breaks 829 -101100011001 rises 839 -101100011001 trends 1530 -101100011001 reductions 1596 -101100011001 increases 6902 -101100011001 cuts 4447 -101100011010 cradle-rocker 1 -101100011010 flagpoles 1 -101100011010 occurence 1 -101100011010 job-hazards 1 -101100011010 sciatica 1 -101100011010 talkativeness 1 -101100011010 Preti 1 -101100011010 Datapipe 1 -101100011010 mobile-terminal 1 -101100011010 record-setter 1 -101100011010 offerors 1 -101100011010 tortfeasors 1 -101100011010 Infomart 1 -101100011010 franchise-registration 1 -101100011010 emigrators 1 -101100011010 Brandos 1 -101100011010 acquirors 1 -101100011010 back-formation 1 -101100011010 directors-general 1 -101100011010 Mumfords 1 -101100011010 debtload 1 -101100011010 rapproachment 1 -101100011010 bullheadedness 1 -101100011010 monooctanonin 1 -101100011010 wisdom-dispensers 1 -101100011010 WSAW-TV 1 -101100011010 tremolite 1 -101100011010 coconspirators 1 -101100011010 peepholes 1 -101100011010 non-recovery 1 -101100011010 overcooking 1 -101100011010 trends. 1 -101100011010 tapings 1 -101100011010 broadloom 1 -101100011010 parts-demand 1 -101100011010 myeloma 1 -101100011010 escapers 1 -101100011010 anti-Sovietism 1 -101100011010 icemaker 1 -101100011010 Rainier-U.S. 1 -101100011010 chat-mongers 1 -101100011010 micturition 1 -101100011010 defecation 1 -101100011010 trustbuster 1 -101100011010 messiness 1 -101100011010 poisoner 1 -101100011010 goofup 1 -101100011010 opto-electronics 1 -101100011010 Noahs 1 -101100011010 street-sweepers 1 -101100011010 exoduses 1 -101100011010 reinvolvement 1 -101100011010 test-thwarter 1 -101100011010 junketeers 1 -101100011010 LGPs 1 -101100011010 ex-internees 1 -101100011010 deer-handling 1 -101100011010 keynoters 1 -101100011010 metamidophos 1 -101100011010 gunloading 1 -101100011010 free-writing 1 -101100011010 Edict 1 -101100011010 misfeasance 1 -101100011010 detonographers 1 -101100011010 stanzas 2 -101100011010 washings 2 -101100011010 cogenerator 2 -101100011010 appeals. 2 -101100011010 stinkin 2 -101100011010 self-tenders 2 -101100011010 cover-ups 2 -101100011010 smorgasbords 2 -101100011010 fundings 2 -101100011010 tackler 2 -101100011010 saviors 2 -101100011010 mezuzas 2 -101100011010 S.O.D. 2 -101100011010 toileting 2 -101100011010 stepparents 2 -101100011010 Diablos 2 -101100011010 simpletons 2 -101100011010 misappropriations 2 -101100011010 restrucuturing 2 -101100011010 chiselers 2 -101100011010 terrains 2 -101100011010 kindergarteners 2 -101100011010 Scorpios 2 -101100011010 rule-breakers 2 -101100011010 no-nos 2 -101100011010 remodelers 2 -101100011010 v-sat 2 -101100011010 insureds 2 -101100011010 SALPs 2 -101100011010 iconography 2 -101100011010 means. 2 -101100011010 medic 3 -101100011010 Drams 3 -101100011010 selloffs 3 -101100011010 emigrations 3 -101100011010 tonnages 3 -101100011010 reindictment 3 -101100011010 deviousness 3 -101100011010 roundups 3 -101100011010 post-adolescents 3 -101100011010 misdiagnoses 3 -101100011010 bleeders 3 -101100011010 tambourines 3 -101100011010 defibrillators 4 -101100011010 feints 4 -101100011010 enchiladas 4 -101100011010 adopters 4 -101100011010 memoirists 4 -101100011010 endocrine 4 -101100011010 dumpers 4 -101100011010 assignations 4 -101100011010 tollgates 4 -101100011010 headrests 4 -101100011010 intermarriage 4 -101100011010 A320s 4 -101100011010 laxness 5 -101100011010 yeasts 5 -101100011010 flotations 5 -101100011010 sequencers 5 -101100011010 toothpicks 5 -101100011010 gels 5 -101100011010 welts 5 -101100011010 interceptions 6 -101100011010 fluorocarbons 6 -101100011010 reassignments 6 -101100011010 honorees 6 -101100011010 farrowings 6 -101100011010 violets 6 -101100011010 abductions 6 -101100011010 overflights 6 -101100011010 delamination 6 -101100011010 nannies 6 -101100011010 wrongdoings 7 -101100011010 interlopers 7 -101100011010 keepsakes 7 -101100011010 flab 7 -101100011010 burials 8 -101100011010 tradeoffs 8 -101100011010 flagships 8 -101100011010 collages 8 -101100011010 courtyards 8 -101100011010 hostels 8 -101100011010 copycats 8 -101100011010 hirings 8 -101100011010 laziness 8 -101100011010 bumpings 8 -101100011010 biosensors 8 -101100011010 ebbs 9 -101100011010 puddles 9 -101100011010 disbarment 9 -101100011010 breast-feeding 9 -101100011010 provocations 9 -101100011010 malignancies 9 -101100011010 acquistions 9 -101100011010 rehearings 9 -101100011010 abandonments 10 -101100011010 suffocation 10 -101100011010 commissaries 11 -101100011010 standouts 11 -101100011010 betrayals 11 -101100011010 nudes 11 -101100011010 retrenchments 11 -101100011010 removals 11 -101100011010 deadbeats 11 -101100011010 subversives 11 -101100011010 earphones 11 -101100011010 refundings 12 -101100011010 revenue-raisers 12 -101100011010 Congresses 12 -101100011010 inconveniences 12 -101100011010 faire 13 -101100011010 worksheets 13 -101100011010 rescissions 13 -101100011010 collegiality 13 -101100011010 depressions 13 -101100011010 exactions 13 -101100011010 epiphany 13 -101100011010 pullouts 14 -101100011010 walkers 14 -101100011010 clemency 14 -101100011010 nationalizations 15 -101100011010 Oscars 15 -101100011010 rescuers 15 -101100011010 resales 16 -101100011010 issuances 16 -101100011010 pariahs 16 -101100011010 backups 17 -101100011010 gunshots 17 -101100011010 minuses 17 -101100011010 highfliers 17 -101100011010 startups 18 -101100011010 postponements 19 -101100011010 altruism 20 -101100011010 suicides 20 -101100011010 divestments 20 -101100011010 denationalizations 21 -101100011010 loathing 21 -101100011010 bunkers 21 -101100011010 illegalities 22 -101100011010 accumulations 23 -101100011010 troublemakers 23 -101100011010 concealment 24 -101100011010 allergies 24 -101100011010 queens 25 -101100011010 sexism 25 -101100011010 sclerosis 26 -101100011010 robberies 26 -101100011010 mistreatment 26 -101100011010 directorships 26 -101100011010 intruders 27 -101100011010 deportations 28 -101100011010 rollovers 28 -101100011010 spender 28 -101100011010 maltreatment 28 -101100011010 relocations 29 -101100011010 caseloads 29 -101100011010 thefts 32 -101100011010 frills 32 -101100011010 megadeals 33 -101100011010 insolvencies 33 -101100011010 criminality 33 -101100011010 droughts 34 -101100011010 zeros 34 -101100011010 assassinations 34 -101100011010 wrongdoers 35 -101100011010 malice 36 -101100011010 distractions 36 -101100011010 recapitalizations 37 -101100011010 re-regulation 37 -101100011010 blockbusters 37 -101100011010 innovators 38 -101100011010 downgradings 38 -101100011010 hoops 39 -101100011010 hitters 40 -101100011010 illegality 40 -101100011010 misstatements 41 -101100011010 malfunctions 41 -101100011010 executions 42 -101100011010 beatings 43 -101100011010 carcinogens 43 -101100011010 reorganizations 45 -101100011010 shootings 45 -101100011010 earthquakes 45 -101100011010 privatizations 45 -101100011010 diversions 47 -101100011010 turnarounds 48 -101100011010 terminations 48 -101100011010 laggards 49 -101100011010 superstars 49 -101100011010 exits 50 -101100011010 refinancings 50 -101100011010 renovations 51 -101100011010 conspirators 52 -101100011010 occupants 56 -101100011010 walkouts 59 -101100011010 boycotts 62 -101100011010 suspensions 64 -101100011010 predators 65 -101100011010 omissions 67 -101100011010 frauds 68 -101100011010 buybacks 73 -101100011010 foreclosures 76 -101100011010 misdeeds 79 -101100011010 shutdowns 86 -101100011010 seizures 87 -101100011010 merchandisers 87 -101100011010 impropriety 88 -101100011010 floods 91 -101100011010 liquidations 95 -101100011010 overcharges 104 -101100011010 takers 105 -101100011010 explosions 109 -101100011010 consolidations 114 -101100011010 storms 114 -101100011010 downgrades 118 -101100011010 expansions 123 -101100011010 replacements 123 -101100011010 cancellations 131 -101100011010 firings 132 -101100011010 LBOs 134 -101100011010 dismissals 137 -101100011010 mailings 139 -101100011010 violators 149 -101100011010 divestitures 188 -101100011010 defections 200 -101100011010 recessions 213 -101100011010 casualties 226 -101100011010 attrition 230 -101100011010 buy-backs 230 -101100011010 departures 263 -101100011010 acquirers 275 -101100011010 restructurings 282 -101100011010 bargains 310 -101100011010 leaks 325 -101100011010 guilt 329 -101100011010 arrests 334 -101100011010 purchasers 399 -101100011010 winners 527 -101100011010 losers 569 -101100011010 accidents 586 -101100011010 suitors 614 -101100011010 injuries 761 -101100011010 bidders 989 -101100011010 wrongdoing 1058 -101100011010 sellers 1116 -101100011010 layoffs 1137 -101100011010 takeovers 1774 -101100011010 violations 2243 -101100011010 purchases 3531 -101100011010 acquisitions 3922 -101100011010 buyers 4341 -1011000110110 Elvises 1 -1011000110110 Inelectra 1 -1011000110110 bronchiolitis 1 -1011000110110 cofferdams 1 -1011000110110 tumulus 1 -1011000110110 chargeoffs 1 -1011000110110 .200 1 -1011000110110 hellos 1 -1011000110110 pig-out 1 -1011000110110 kickups 1 -1011000110110 guanxi 1 -1011000110110 Chatten 1 -1011000110110 oustandings 1 -1011000110110 Zygo 1 -1011000110110 associaitons 1 -1011000110110 siltation 1 -1011000110110 23,552 1 -1011000110110 2,009 1 -1011000110110 gallantry 2 -1011000110110 loutishness 2 -1011000110110 slab-makers 2 -1011000110110 smacker 2 -1011000110110 28072.02 2 -1011000110110 crossbows 2 -1011000110110 hayrides 2 -1011000110110 nicks 2 -1011000110110 GRRRRRs 2 -1011000110110 28366.33 2 -1011000110110 spankings 2 -1011000110110 catnaps 2 -1011000110110 cancer-risk 2 -1011000110110 grillings 2 -1011000110110 sidelights 3 -1011000110110 batallion 3 -1011000110110 oversubscriptions 3 -1011000110110 sharking 3 -1011000110110 overcoats 3 -1011000110110 pursuer 3 -1011000110110 break-out 3 -1011000110110 carloadings 4 -1011000110110 smooch 4 -1011000110110 accelerations 4 -1011000110110 overwithholding 4 -1011000110110 reponsibilities 5 -1011000110110 leftism 5 -1011000110110 childhoods 5 -1011000110110 dossiers 6 -1011000110110 logjams 7 -1011000110110 migrations 7 -1011000110110 dispersal 7 -1011000110110 guffaws 7 -1011000110110 pre-payments 7 -1011000110110 landholdings 8 -1011000110110 yardage 10 -1011000110110 turnouts 12 -1011000110110 taxer 12 -1011000110110 recriminations 15 -1011000110110 writeoffs 20 -1011000110110 workloads 22 -1011000110110 writedowns 25 -1011000110110 testimonials 25 -1011000110110 dollar-selling 27 -1011000110110 arches 34 -1011000110110 originations 35 -1011000110110 tremors 40 -1011000110110 disbursements 42 -1011000110110 markups 54 -1011000110110 prepayments 56 -1011000110110 recoveries 91 -1011000110110 charge-offs 101 -1011000110110 markdowns 119 -1011000110110 kickbacks 208 -1011000110110 defaults 238 -1011000110110 redemptions 315 -1011000110110 withdrawals 326 -1011000110110 write-downs 478 -1011000110110 write-offs 514 -1011000110110 profits 6237 -1011000110110 losses 9138 -1011000110111 fragranced 1 -1011000110111 Palpable 1 -1011000110111 chilis 1 -1011000110111 30-cent-a-gallon 1 -1011000110111 cutspossibly 1 -1011000110111 slickened 1 -1011000110111 culottes 1 -1011000110111 dousings 1 -1011000110111 WXFL-TV 1 -1011000110111 morphologic 1 -1011000110111 rise-perhaps 1 -1011000110111 markerts 1 -1011000110111 mudballs 1 -1011000110111 misalignments 2 -1011000110111 estimaters 2 -1011000110111 insensitivities 2 -1011000110111 rosettes 2 -1011000110111 tanking 2 -1011000110111 preliminaries 2 -1011000110111 fact-checking 2 -1011000110111 decollectivization 2 -1011000110111 dilutions 2 -1011000110111 gyration 3 -1011000110111 weasels 3 -1011000110111 KOs 3 -1011000110111 dynamos 3 -1011000110111 depressants 4 -1011000110111 downswings 4 -1011000110111 Simpson-Mazzoli-Rodino 4 -1011000110111 leaguer 6 -1011000110111 forehands 6 -1011000110111 curtailments 8 -1011000110111 realizations 10 -1011000110111 drawdowns 13 -1011000110111 upturns 13 -1011000110111 upswings 14 -1011000110111 snowstorms 18 -1011000110111 spurts 19 -1011000110111 uprisings 20 -1011000110111 realignments 21 -1011000110111 sell-offs 33 -1011000110111 shortfalls 49 -1011000110111 surges 69 -1011000110111 showings 73 -1011000110111 outflows 75 -1011000110111 slumps 84 -1011000110111 devaluations 93 -1011000110111 gyrations 119 -1011000110111 rains 291 -1011000110111 fluctuations 442 -1011000110111 rallies 453 -1011000110111 performances 470 -1011000110111 movements 726 -1011000110111 appreciation 751 -1011000110111 advances 815 -1011000110111 declines 2565 -1011000110111 gains 8070 -10110001110 senarios 1 -10110001110 No.4 1 -10110001110 rate-dependent 1 -10110001110 expense. 1 -10110001110 Goodens 1 -10110001110 depreciation. 1 -10110001110 diabolism 1 -10110001110 BORROWERS 1 -10110001110 comptitors 1 -10110001110 VIRGINIANS 1 -10110001110 frugally 1 -10110001110 money-brokers 1 -10110001110 BANQUETS 1 -10110001110 Bede 1 -10110001110 romped 1 -10110001110 586A 1 -10110001110 FORGO 1 -10110001110 reimbursments 2 -10110001110 Pounder 2 -10110001110 collecters 2 -10110001110 1265 3 -10110001110 TACTICS 3 -10110001110 rates. 4 -10110001110 coverages 14 -10110001110 rates 20824 -10110001110 rate. 22 -101100011110 waterlogging 1 -101100011110 over-promising 1 -101100011110 10-pounders 1 -101100011110 sequiturs 1 -101100011110 counter-ads 1 -101100011110 iginition 1 -101100011110 tarriffs 1 -101100011110 worker-pay 1 -101100011110 favor-seekers 1 -101100011110 squeeze-boxer 1 -101100011110 unemloyment 1 -101100011110 first-stringers 1 -101100011110 gooping 1 -101100011110 unfavorables 1 -101100011110 iron-bearing 1 -101100011110 Saturday- 1 -101100011110 Obesitas 1 -101100011110 buyer-incentives 1 -101100011110 glossaries 1 -101100011110 kidnap/hostage 1 -101100011110 thrvey 1 -101100011110 APO 1 -101100011110 vacations. 1 -101100011110 CAT-scan 1 -101100011110 photon 1 -101100011110 excursuses 1 -101100011110 pre-operating 1 -101100011110 dollar. 1 -101100011110 gradings 1 -101100011110 castes 1 -101100011110 wage. 1 -101100011110 more-dependable 1 -101100011110 crescents 1 -101100011110 witholdings 1 -101100011110 loopaholics 1 -101100011110 bushland 1 -101100011110 thumbprints 2 -101100011110 WNEV-TV 2 -101100011110 user-fees 2 -101100011110 octanes 2 -101100011110 1041 2 -101100011110 HealthSouth 2 -101100011110 ROAs 2 -101100011110 annulments 2 -101100011110 Seavers 2 -101100011110 backhoes 3 -101100011110 ransoms 3 -101100011110 sermonettes 3 -101100011110 mudslides 3 -101100011110 1738 3 -101100011110 livestock-grazing 3 -101100011110 insincerity 3 -101100011110 betas 3 -101100011110 Keatons 3 -101100011110 990s 3 -101100011110 looniness 3 -101100011110 Sasebo 4 -101100011110 Rema 4 -101100011110 halos 4 -101100011110 biopsies 4 -101100011110 IQs 4 -101100011110 verifiability 4 -101100011110 profitabilty 5 -101100011110 nitrates 5 -101100011110 sprockets 5 -101100011110 showtime 5 -101100011110 education. 5 -101100011110 sabbaticals 5 -101100011110 infestations 6 -101100011110 airfares 7 -101100011110 surtaxes 7 -101100011110 excises 8 -101100011110 PSRs 8 -101100011110 sequitur 9 -101100011110 co-payments 9 -101100011110 zippers 9 -101100011110 mufflers 10 -101100011110 grata 11 -101100011110 birthrates 11 -101100011110 horoscopes 12 -101100011110 overheads 12 -101100011110 hemlines 14 -101100011110 wagers 15 -101100011110 workweeks 18 -101100011110 brownouts 21 -101100011110 bruises 24 -101100011110 tuitions 37 -101100011110 honorariums 38 -101100011110 deductibles 43 -101100011110 surcharges 48 -101100011110 allotments 66 -101100011110 warranties 143 -101100011110 levies 145 -101100011110 rents 312 -101100011110 coupons 349 -101100011110 pensions 382 -101100011110 temperatures 458 -101100011110 rebates 551 -101100011110 incomes 621 -101100011110 tariffs 770 -101100011110 commissions 884 -101100011110 salaries 940 -101100011110 premiums 1016 -101100011110 fares 1370 -101100011110 wages 1595 -101100011110 dividends 1966 -101100011110 margins 2134 -101100011110 taxes 6549 -101100011110 yields 2795 -101100011111 superciliously 1 -101100011111 optometrically 1 -101100011111 post-session 1 -101100011111 114.18 1 -101100011111 movemente 1 -101100011111 skycam 1 -101100011111 Freegold 1 -101100011111 I.C.H 1 -101100011111 cross-cut 1 -101100011111 Sauvignons 1 -101100011111 splashdown 1 -101100011111 23:00 1 -101100011111 grammarians 1 -101100011111 expensess 1 -101100011111 taht 1 -101100011111 depletions 1 -101100011111 fettle 1 -101100011111 self-empowerment 1 -101100011111 8,314 1 -101100011111 3,209 1 -101100011111 4,284 1 -101100011111 onerousness 1 -101100011111 politeness. 1 -101100011111 stife 1 -101100011111 travellers 1 -101100011111 instrumentals 1 -101100011111 feeling. 1 -101100011111 10:05/ 1 -101100011111 hermaphrodites 1 -101100011111 bareback 1 -101100011111 dayrates 1 -101100011111 250- 1 -101100011111 teams. 1 -101100011111 Aphrodites 1 -101100011111 fact-sheets 1 -101100011111 stress. 1 -101100011111 speed-picking 1 -101100011111 enactment. 1 -101100011111 uncontrollability 1 -101100011111 closeouts 1 -101100011111 plunders 1 -101100011111 advice. 1 -101100011111 pianissimos 2 -101100011111 inconspicuously 2 -101100011111 implementation. 2 -101100011111 castration 2 -101100011111 patty 2 -101100011111 yield-to-maturity 2 -101100011111 unsightliness 2 -101100011111 Canio 2 -101100011111 pneumonias 2 -101100011111 throwaways 3 -101100011111 bindings 3 -101100011111 noncompetitively 3 -101100011111 non-religiously 3 -101100011111 culls 3 -101100011111 adjustors 3 -101100011111 expections 4 -101100011111 costs. 4 -101100011111 manifolds 4 -101100011111 squalls 4 -101100011111 catwalks 5 -101100011111 angiography 6 -101100011111 propensities 6 -101100011111 restatements 6 -101100011111 depleters 7 -101100011111 braid 7 -101100011111 efficiences 8 -101100011111 chutes 12 -101100011111 bins 46 -101100011111 bottlenecks 77 -101100011111 efficiencies 188 -101100011111 expenses 3569 -101100011111 costs 13283 -101100100 tricoastal 1 -101100100 grainfields 1 -101100100 catechistical 1 -101100100 restabilizing 1 -101100100 well-trod 1 -101100100 countersues 1 -101100100 outraise 1 -101100100 hand-modeled 1 -101100100 fortten 1 -101100100 laith 1 -101100100 muzzles 2 -101100100 bad-mouths 2 -101100100 sideswipes 2 -101100100 physicality 2 -101100100 squalling 2 -101100100 licences 2 -101100100 waggling 2 -101100100 whirs 2 -101100100 acounts 3 -101100100 putters 3 -101100100 purring 3 -101100100 slants 3 -101100100 pollinated 3 -101100100 1,831 3 -101100100 bungles 4 -101100100 pinches 4 -101100100 wheezes 4 -101100100 tars 4 -101100100 relents 4 -101100100 eulogizing 4 -101100100 cross-checking 4 -101100100 scowls 4 -101100100 shills 4 -101100100 wedges 4 -101100100 creaks 4 -101100100 squirted 4 -101100100 masterminds 4 -101100100 paddles 5 -101100100 swivels 5 -101100100 snares 5 -101100100 unlocks 5 -101100100 routs 5 -101100100 tucks 5 -101100100 fumbles 5 -101100100 slurp 5 -101100100 knits 5 -101100100 snubs 5 -101100100 molders 5 -101100100 wiggles 5 -101100100 snowballs 5 -101100100 mimes 5 -101100100 gorges 6 -101100100 gleams 6 -101100100 backfires 6 -101100100 legislates 6 -101100100 retreads 6 -101100100 forwards 6 -101100100 combats 6 -101100100 twitches 6 -101100100 padlocks 6 -101100100 thins 6 -101100100 punctures 6 -101100100 claps 7 -101100100 grimaces 7 -101100100 slaughters 7 -101100100 lulls 7 -101100100 twirls 7 -101100100 awakens 7 -101100100 peels 7 -101100100 perches 7 -101100100 dusts 7 -101100100 pastes 7 -101100100 abstracts 7 -101100100 bankrolls 7 -101100100 dredges 7 -101100100 stings 8 -101100100 flounders 8 -101100100 rams 8 -101100100 jacks 8 -101100100 sows 8 -101100100 snatches 8 -101100100 whines 8 -101100100 sprains 8 -101100100 squeaks 8 -101100100 drawls 8 -101100100 savages 8 -101100100 purrs 8 -101100100 pricks 8 -101100100 reappears 9 -101100100 chirps 9 -101100100 lunges 9 -101100100 slits 9 -101100100 clamps 9 -101100100 blundering 9 -101100100 latches 9 -101100100 flushes 10 -101100100 stumps 10 -101100100 licks 10 -101100100 fizzles 10 -101100100 pats 10 -101100100 catapults 10 -101100100 plummets 10 -101100100 combs 10 -101100100 bashes 10 -101100100 tilts 10 -101100100 bellows 11 -101100100 shatters 11 -101100100 treads 11 -101100100 voids 11 -101100100 shrieks 11 -101100100 dodges 11 -101100100 taunts 11 -101100100 exhausts 11 -101100100 chokes 12 -101100100 sputters 12 -101100100 struts 12 -101100100 jabbing 12 -101100100 hugs 12 -101100100 lofts 12 -101100100 snooping 12 -101100100 whoops 12 -101100100 blinks 13 -101100100 toasts 13 -101100100 ignites 13 -101100100 whizzes 13 -101100100 tugs 13 -101100100 smashes 13 -101100100 sneers 13 -101100100 prodigy 13 -101100100 fishes 13 -101100100 gulps 13 -101100100 vacuums 13 -101100100 languishes 14 -101100100 relays 14 -101100100 flicks 14 -101100100 tacks 14 -101100100 surrenders 14 -101100100 intercepts 14 -101100100 beckons 14 -101100100 bogs 15 -101100100 jolts 15 -101100100 stabs 15 -101100100 bores 15 -101100100 ushers 15 -101100100 glows 16 -101100100 buoys 16 -101100100 bangs 16 -101100100 showcases 16 -101100100 crunches 16 -101100100 sprouts 16 -101100100 barks 17 -101100100 grosses 17 -101100100 snickers 17 -101100100 gushed 17 -101100100 spoons 17 -101100100 constructs 18 -101100100 clicks 18 -101100100 rapes 18 -101100100 bends 18 -101100100 polices 18 -101100100 vents 19 -101100100 alternates 19 -101100100 giggles 19 -101100100 curses 19 -101100100 flares 19 -101100100 critiques 19 -101100100 rumbles 20 -101100100 climaxes 20 -101100100 blinds 20 -101100100 brews 20 -101100100 swirls 20 -101100100 yawns 21 -101100100 commutes 22 -101100100 duplicates 22 -101100100 drapes 22 -101100100 creeps 22 -101100100 dons 22 -101100100 crossings 23 -101100100 charms 23 -101100100 overlaps 23 -101100100 shudders 24 -101100100 blares 24 -101100100 folds 24 -101100100 delights 24 -101100100 steals 24 -101100100 grates 24 -101100100 referees 24 -101100100 reprints 24 -101100100 graces 25 -101100100 dives 25 -101100100 ferries 25 -101100100 scoops 25 -101100100 chills 25 -101100100 rattles 25 -101100100 alerts 25 -101100100 intrigues 26 -101100100 plows 26 -101100100 curls 26 -101100100 swallows 26 -101100100 outlaws 26 -101100100 snarls 26 -101100100 dials 27 -101100100 longs 27 -101100100 relaxes 28 -101100100 hops 28 -101100100 reels 28 -101100100 groans 28 -101100100 dispatches 28 -101100100 trumpets 28 -101100100 parodies 29 -101100100 washes 29 -101100100 scratches 29 -101100100 swells 29 -101100100 hauls 29 -101100100 chops 30 -101100100 poisons 30 -101100100 rages 30 -101100100 spikes 30 -101100100 rescues 30 -101100100 straddles 30 -101100100 whips 30 -101100100 digs 31 -101100100 pedals 31 -101100100 grins 31 -101100100 extracts 31 -101100100 kisses 32 -101100100 hawks 33 -101100100 chases 33 -101100100 paces 34 -101100100 mails 34 -101100100 haunts 34 -101100100 crows 34 -101100100 scouts 34 -101100100 tempers 34 -101100100 binds 34 -101100100 puzzles 35 -101100100 steers 36 -101100100 stalks 36 -101100100 hooks 36 -101100100 peppers 36 -101100100 reigns 36 -101100100 explodes 37 -101100100 hunts 38 -101100100 drains 39 -101100100 pans 40 -101100100 cushions 40 -101100100 thrusts 40 -101100100 flourishes 40 -101100100 plugs 40 -101100100 shuttles 42 -101100100 spares 42 -101100100 assists 42 -101100100 spurs 43 -101100100 scans 43 -101100100 squeezes 43 -101100100 spins 43 -101100100 stinks 44 -101100100 knocks 44 -101100100 cooks 46 -101100100 transports 47 -101100100 bows 47 -101100100 lures 47 -101100100 retreats 48 -101100100 dwarfs 48 -101100100 nods 49 -101100100 squares 49 -101100100 lumps 50 -101100100 shields 51 -101100100 brushes 51 -101100100 inserts 51 -101100100 stalls 52 -101100100 blends 52 -101100100 insults 52 -101100100 escapes 52 -101100100 collapses 53 -101100100 mounts 53 -101100100 smells 54 -101100100 sinks 55 -101100100 bumps 56 -101100100 floats 56 -101100100 sails 57 -101100100 hides 57 -101100100 vetoes 58 -101100100 screams 59 -101100100 blasts 59 -101100100 sparks 61 -101100100 anchors 61 -101100100 taps 62 -101100100 offsets 65 -101100100 shoots 65 -101100100 marches 67 -101100100 repeats 68 -101100100 punches 70 -101100100 breeds 71 -101100100 snaps 72 -101100100 bites 72 -101100100 exploits 75 -101100100 airs 76 -101100100 flashes 76 -101100100 shrinks 77 -101100100 crosses 78 -101100100 leaps 78 -101100100 preserves 80 -101100100 kicks 82 -101100100 nears 83 -101100100 dances 84 -101100100 updates 84 -101100100 beats 84 -101100100 faults 89 -101100100 spells 90 -101100100 defeats 90 -101100100 survives 93 -101100100 feeds 95 -101100100 champions 95 -101100100 dumps 96 -101100100 prevails 96 -101100100 senses 99 -101100100 honors 99 -101100100 encounters 101 -101100100 alarms 102 -101100100 mandates 103 -101100100 sweeps 103 -101100100 shouts 107 -101100100 springs 108 -101100100 mixes 109 -101100100 freezes 110 -101100100 locks 113 -101100100 masks 114 -101100100 packs 114 -101100100 catches 121 -101100100 rides 122 -101100100 beams 122 -101100100 exhibits 124 -101100100 strips 126 -101100100 shapes 128 -101100100 lags 129 -101100100 trails 130 -101100100 blows 131 -101100100 stretches 132 -101100100 lectures 132 -101100100 burns 136 -101100100 fumes 139 -101100100 laughs 143 -101100100 converts 143 -101100100 smiles 143 -101100100 cries 146 -101100100 settles 150 -101100100 slips 151 -101100100 hires 153 -101100100 hosts 154 -101100100 paints 157 -101100100 touches 157 -101100100 mirrors 158 -101100100 clouds 163 -101100100 speeds 165 -101100100 tours 168 -101100100 resumes 179 -101100100 guides 192 -101100100 sticks 196 -101100100 commands 203 -101100100 presses 204 -101100100 influences 208 -101100100 prints 210 -101100100 bans 221 -101100100 tops 230 -101100100 dies 238 -101100100 attributes 247 -101100100 caps 257 -101100100 flies 260 -101100100 rolls 268 -101100100 watches 272 -101100100 matches 274 -101100100 winds 278 -101100100 addresses 282 -101100100 chairs 305 -101100100 monitors 318 -101100100 backs 329 -101100100 displays 356 -101100100 passes 419 -101100100 quotes 439 -101100100 processes 440 -101100100 stops 460 -101100100 visits 474 -101100100 bears 497 -101100100 hits 572 -101100100 reviews 587 -101100100 exists 605 -101100100 bars 646 -101100100 tracks 649 -101100100 advocates 704 -101100100 permits 708 -101100100 drives 710 -101100100 lists 756 -101100100 guarantees 892 -101100100 signals 1019 -101100100 plays 1141 -101100100 features 1149 -101100100 sets 1470 -101100100 stands 1519 -101100100 views 1868 -101100100 heads 1947 -101100100 uses 1959 -101100100 limits 2222 -101100100 controls 3400 -101100100 offers 3739 -101100100 works 3410 -10110010100 Pashtuns 1 -10110010100 synods 1 -10110010100 abililty 1 -10110010100 grayness 1 -10110010100 intake-air 1 -10110010100 legwarmers 1 -10110010100 gambols 1 -10110010100 explications 2 -10110010100 whooshes 2 -10110010100 wildebeest 2 -10110010100 pecks 2 -10110010100 sourness 2 -10110010100 drug-users 2 -10110010100 barrows 2 -10110010100 bulldogs 2 -10110010100 Sonys 2 -10110010100 mementoes 2 -10110010100 subtypes 2 -10110010100 beaks 2 -10110010100 instrumentalities 2 -10110010100 igloos 2 -10110010100 Woodwards 2 -10110010100 frenzies 3 -10110010100 stockrooms 3 -10110010100 brasses 3 -10110010100 jurisconsults 3 -10110010100 shavings 3 -10110010100 gametes 3 -10110010100 proms 3 -10110010100 inanity 3 -10110010100 accompaniments 3 -10110010100 paddocks 3 -10110010100 chapels 3 -10110010100 essences 3 -10110010100 pontifications 3 -10110010100 caroms 3 -10110010100 swabs 3 -10110010100 votaries 3 -10110010100 conduction 3 -10110010100 canopies 4 -10110010100 reorders 4 -10110010100 doodles 4 -10110010100 spars 4 -10110010100 relevancy 4 -10110010100 ledges 4 -10110010100 abodes 4 -10110010100 mentalities 4 -10110010100 apprentices 4 -10110010100 pane 4 -10110010100 seductions 4 -10110010100 shibboleths 5 -10110010100 earls 5 -10110010100 effluents 5 -10110010100 commemorations 5 -10110010100 farces 5 -10110010100 hangings 5 -10110010100 droplets 5 -10110010100 gladiators 5 -10110010100 casks 5 -10110010100 understatements 5 -10110010100 accoutrements 5 -10110010100 re-enactments 5 -10110010100 globs 5 -10110010100 splotches 5 -10110010100 cements 5 -10110010100 syntax 5 -10110010100 anti-intellectualism 5 -10110010100 baits 5 -10110010100 bearers 5 -10110010100 pleats 5 -10110010100 moats 6 -10110010100 hives 6 -10110010100 heros 6 -10110010100 clucks 6 -10110010100 blots 6 -10110010100 appendages 6 -10110010100 ruts 6 -10110010100 boughs 6 -10110010100 boatloads 6 -10110010100 mane 6 -10110010100 post-mortems 6 -10110010100 tiara 6 -10110010100 specks 6 -10110010100 enlargements 6 -10110010100 drownings 6 -10110010100 resisters 6 -10110010100 detritus 6 -10110010100 flecks 6 -10110010100 streamers 6 -10110010100 constellations 6 -10110010100 lice 6 -10110010100 parables 7 -10110010100 kegs 7 -10110010100 caverns 7 -10110010100 ABCs 7 -10110010100 gnomes 7 -10110010100 tresses 7 -10110010100 bleakness 7 -10110010100 offshoots 7 -10110010100 tusks 7 -10110010100 carcinoma 7 -10110010100 affirmations 7 -10110010100 dhows 7 -10110010100 torrents 7 -10110010100 litters 7 -10110010100 potentials 8 -10110010100 fuselages 8 -10110010100 nostrums 8 -10110010100 likenesses 8 -10110010100 processions 8 -10110010100 pups 8 -10110010100 slings 8 -10110010100 hulks 8 -10110010100 couplings 8 -10110010100 categorization 8 -10110010100 samplings 8 -10110010100 chateaux 8 -10110010100 ducklings 8 -10110010100 junkyards 8 -10110010100 replays 8 -10110010100 cadence 8 -10110010100 spines 8 -10110010100 percentiles 8 -10110010100 husks 8 -10110010100 indulgences 8 -10110010100 ions 8 -10110010100 soothsayers 8 -10110010100 caravans 9 -10110010100 yearnings 9 -10110010100 flickers 9 -10110010100 flasks 9 -10110010100 nibbles 9 -10110010100 socket 9 -10110010100 platters 9 -10110010100 spokes 9 -10110010100 panes 9 -10110010100 repetitions 10 -10110010100 deceptions 10 -10110010100 duets 10 -10110010100 stubble 10 -10110010100 cravings 10 -10110010100 aromas 10 -10110010100 repositories 10 -10110010100 cuffs 10 -10110010100 cirrhosis 10 -10110010100 soles 11 -10110010100 hunks 11 -10110010100 emblems 11 -10110010100 curiosities 11 -10110010100 temperaments 11 -10110010100 riddles 11 -10110010100 six-packs 11 -10110010100 come-ons 11 -10110010100 webs 11 -10110010100 mutterings 11 -10110010100 arrays 11 -10110010100 craters 12 -10110010100 dens 12 -10110010100 adaptations 12 -10110010100 tolerances 12 -10110010100 duplications 12 -10110010100 necklaces 12 -10110010100 tentacles 12 -10110010100 tins 12 -10110010100 chimneys 12 -10110010100 silhouettes 12 -10110010100 hamlets 12 -10110010100 gusts 12 -10110010100 slivers 12 -10110010100 mixtures 12 -10110010100 portrayals 13 -10110010100 greats 13 -10110010100 vats 13 -10110010100 bouquets 13 -10110010100 fenders 14 -10110010100 volleys 14 -10110010100 cores 14 -10110010100 canyons 14 -10110010100 arcs 14 -10110010100 shards 14 -10110010100 beepers 14 -10110010100 harmonies 14 -10110010100 precursors 14 -10110010100 strata 14 -10110010100 lifestyles 14 -10110010100 tortoises 14 -10110010100 pouches 15 -10110010100 eccentricities 15 -10110010100 heroines 15 -10110010100 legacies 15 -10110010100 palaces 15 -10110010100 dialects 15 -10110010100 queues 15 -10110010100 mementos 16 -10110010100 knockoffs 16 -10110010100 acoustics 16 -10110010100 circulations 16 -10110010100 tenements 16 -10110010100 explorations 16 -10110010100 putts 16 -10110010100 dexterity 16 -10110010100 refuges 16 -10110010100 thickets 16 -10110010100 playgrounds 17 -10110010100 domes 17 -10110010100 gags 17 -10110010100 blazes 17 -10110010100 plumes 17 -10110010100 pseudonyms 17 -10110010100 stables 17 -10110010100 euphemisms 17 -10110010100 gigs 18 -10110010100 recesses 18 -10110010100 compartments 18 -10110010100 tokens 18 -10110010100 wrecks 18 -10110010100 gasps 18 -10110010100 cornfields 18 -10110010100 choruses 18 -10110010100 kernels 18 -10110010100 guarantors 18 -10110010100 protectors 18 -10110010100 confirmations 19 -10110010100 forgeries 19 -10110010100 throngs 19 -10110010100 rungs 19 -10110010100 wrongs 19 -10110010100 hulls 19 -10110010100 bastions 19 -10110010100 sightings 20 -10110010100 facades 20 -10110010100 mainstays 20 -10110010100 windshields 20 -10110010100 replicas 20 -10110010100 portents 20 -10110010100 anniversaries 20 -10110010100 clumps 21 -10110010100 photocopies 21 -10110010100 tiers 21 -10110010100 helpers 21 -10110010100 loaves 21 -10110010100 claws 21 -10110010100 mazes 21 -10110010100 cliffs 21 -10110010100 nuggets 21 -10110010100 wavelengths 22 -10110010100 flocks 22 -10110010100 linings 22 -10110010100 intestines 22 -10110010100 figurines 22 -10110010100 glories 23 -10110010100 fates 23 -10110010100 snows 23 -10110010100 vistas 23 -10110010100 snapshots 24 -10110010100 smokestacks 24 -10110010100 squadrons 24 -10110010100 halves 24 -10110010100 diagrams 25 -10110010100 tombs 25 -10110010100 slates 25 -10110010100 compliments 25 -10110010100 buds 25 -10110010100 canisters 26 -10110010100 mats 26 -10110010100 caricatures 26 -10110010100 reds 27 -10110010100 vials 27 -10110010100 arrows 27 -10110010100 laps 27 -10110010100 precepts 27 -10110010100 chords 28 -10110010100 byproducts 28 -10110010100 puffs 28 -10110010100 messengers 28 -10110010100 relics 28 -10110010100 skeletons 29 -10110010100 rations 29 -10110010100 spectacles 29 -10110010100 chants 29 -10110010100 invasions 29 -10110010100 formulations 30 -10110010100 groupings 30 -10110010100 rites 31 -10110010100 hues 31 -10110010100 outs 32 -10110010100 beasts 32 -10110010100 characterizations 32 -10110010100 clutches 32 -10110010100 perquisites 32 -10110010100 strands 33 -10110010100 entrances 33 -10110010100 reproductions 33 -10110010100 modes 33 -10110010100 snippets 34 -10110010100 innards 34 -10110010100 denizens 34 -10110010100 deserts 34 -10110010100 threads 35 -10110010100 pillars 35 -10110010100 imitations 35 -10110010100 cargoes 35 -10110010100 trunks 36 -10110010100 ornaments 37 -10110010100 batches 37 -10110010100 legends 38 -10110010100 jungles 38 -10110010100 sacks 38 -10110010100 dots 38 -10110010100 bundles 39 -10110010100 packets 39 -10110010100 sprays 40 -10110010100 bowls 40 -10110010100 scraps 40 -10110010100 buckets 41 -10110010100 thrills 42 -10110010100 ideologies 42 -10110010100 sequences 42 -10110010100 gems 42 -10110010100 ribs 43 -10110010100 curtains 43 -10110010100 suitcases 43 -10110010100 specimens 43 -10110010100 horsepower 43 -10110010100 outbreaks 43 -10110010100 benches 44 -10110010100 illustrations 45 -10110010100 metaphors 45 -10110010100 howls 46 -10110010100 wards 46 -10110010100 co-sponsors 46 -10110010100 captains 46 -10110010100 crates 47 -10110010100 pleasures 48 -10110010100 graves 48 -10110010100 purveyors 48 -10110010100 summaries 49 -10110010100 ripples 50 -10110010100 biographies 51 -10110010100 racks 51 -10110010100 killers 51 -10110010100 icons 51 -10110010100 slices 52 -10110010100 quirks 52 -10110010100 revolutions 53 -10110010100 clusters 53 -10110010100 rituals 54 -10110010100 scars 54 -10110010100 monuments 56 -10110010100 pests 57 -10110010100 weights 57 -10110010100 tenets 58 -10110010100 statues 59 -10110010100 jars 61 -10110010100 artifacts 61 -10110010100 interiors 62 -10110010100 transcripts 62 -10110010100 catalysts 63 -10110010100 patches 63 -10110010100 atoms 63 -10110010100 cartons 63 -10110010100 roofs 64 -10110010100 pots 65 -10110010100 texture 65 -10110010100 shades 65 -10110010100 villains 65 -10110010100 slabs 67 -10110010100 injections 68 -10110010100 spinoffs 68 -10110010100 impulses 69 -10110010100 corridors 72 -10110010100 sketches 72 -10110010100 cabinets 73 -10110010100 definitions 74 -10110010100 prototypes 75 -10110010100 classifications 75 -10110010100 bouts 75 -10110010100 avenues 76 -10110010100 bursts 77 -10110010100 profiles 77 -10110010100 surfaces 78 -10110010100 celebrations 79 -10110010100 evaluations 79 -10110010100 fragments 80 -10110010100 shadows 81 -10110010100 banners 82 -10110010100 tones 82 -10110010100 lyrics 88 -10110010100 edges 88 -10110010100 parcels 88 -10110010100 estates 90 -10110010100 cheers 90 -10110010100 passages 93 -10110010100 drafts 94 -10110010100 paths 96 -10110010100 bounds 96 -10110010100 rows 97 -10110010100 clips 101 -10110010100 streams 107 -10110010100 calories 110 -10110010100 chapters 112 -10110010100 videotapes 113 -10110010100 percentages 114 -10110010100 plots 114 -10110010100 descriptions 114 -10110010100 armies 117 -10110010100 tracts 119 -10110010100 marriages 119 -10110010100 varieties 123 -10110010100 portraits 125 -10110010100 dimensions 126 -10110010100 visions 126 -10110010100 signatures 126 -10110010100 murders 132 -10110010100 keys 133 -10110010100 identities 133 -10110010100 maps 134 -10110010100 phases 135 -10110010100 strokes 141 -10110010100 interpretations 154 -10110010100 corners 155 -10110010100 baskets 155 -10110010100 masters 156 -10110010100 reruns 157 -10110010100 footage 160 -10110010100 strings 161 -10110010100 bucks 166 -10110010100 recordings 170 -10110010100 cultures 178 -10110010100 personalities 179 -10110010100 gates 180 -10110010100 tales 182 -10110010100 seeds 196 -10110010100 beaches 198 -10110010100 fruits 203 -10110010100 layers 206 -10110010100 novels 212 -10110010100 episodes 213 -10110010100 symbols 219 -10110010100 grades 222 -10110010100 hearts 227 -10110010100 foundations 235 -10110010100 bits 236 -10110010100 ingredients 236 -10110010100 survivors 240 -10110010100 mountains 249 -10110010100 wings 255 -10110010100 wheels 258 -10110010100 clones 267 -10110010100 dreams 275 -10110010100 crowds 277 -10110010100 floors 277 -10110010100 voices 282 -10110010100 photos 287 -10110010100 rounds 300 -10110010100 species 302 -10110010100 bottles 308 -10110010100 photographs 311 -10110010100 colors 313 -10110010100 moments 329 -10110010100 samples 330 -10110010100 shots 361 -10110010100 pools 375 -10110010100 objects 381 -10110010100 waves 384 -10110010100 lessons 401 -10110010100 memories 402 -10110010100 sections 427 -10110010100 scenes 487 -10110010100 examples 493 -10110010100 images 522 -10110010100 walls 609 -10110010100 scores 688 -10110010100 deaths 727 -10110010100 elements 748 -10110010100 blocks 770 -10110010100 components 815 -10110010100 copies 941 -10110010100 pictures 947 -10110010100 classes 971 -10110010100 boards 1005 -10110010100 pieces 1007 -10110010100 ranks 1010 -10110010100 economies 1020 -10110010100 forms 1287 -10110010100 letters 1701 -10110010100 votes 1848 -10110010100 parts 6055 -10110010100 names 2119 -10110010101 Infinidad 1 -10110010101 Chull 1 -10110010101 brain-friendly 1 -10110010101 Compositae 1 -10110010101 ages. 1 -10110010101 planarity 1 -10110010101 hypodermics 1 -10110010101 Sapphira 1 -10110010101 dead-accurate 1 -10110010101 almost-three-year-old 1 -10110010101 Dullsville 1 -10110010101 co-editors 1 -10110010101 debarments 1 -10110010101 instutition 1 -10110010101 Sealestial 1 -10110010101 lairs 1 -10110010101 Maria-Guadalupe 1 -10110010101 reorients 1 -10110010101 pictorialism 1 -10110010101 friend. 1 -10110010101 connection. 1 -10110010101 predominate. 1 -10110010101 regimentation. 1 -10110010101 breathtaker 1 -10110010101 saracasm 1 -10110010101 6-foot-6-inches 1 -10110010101 counterpurchases 1 -10110010101 coverall 1 -10110010101 dukedoms 1 -10110010101 355,598 1 -10110010101 1987A 1 -10110010101 races. 1 -10110010101 Nilda 1 -10110010101 spotbill 1 -10110010101 geste 1 -10110010101 once-removed 1 -10110010101 summiteer 1 -10110010101 perambulists 1 -10110010101 Jeanne-Claude 1 -10110010101 Giulietta 1 -10110010101 NBAdom 1 -10110010101 CHARY 1 -10110010101 876,698 1 -10110010101 gabmongers 1 -10110010101 Operandi 1 -10110010101 mouthfuls 1 -10110010101 999,111 1 -10110010101 jargons 1 -10110010101 wallach 1 -10110010101 Ya-Ming 1 -10110010101 reactively 1 -10110010101 666,668 1 -10110010101 treatment. 1 -10110010101 dog-bites-man 1 -10110010101 harkened 1 -10110010101 contractor. 1 -10110010101 practioners 1 -10110010101 2,941 1 -10110010101 students. 1 -10110010101 appreciators 1 -10110010101 pandemics 1 -10110010101 no-stars 1 -10110010101 Marlena 1 -10110010101 sprightliness 1 -10110010101 ingestible 1 -10110010101 junk-security 1 -10110010101 gurgled 1 -10110010101 tablier 1 -10110010101 Tammam 1 -10110010101 upfield 1 -10110010101 populizers 1 -10110010101 Airfones 1 -10110010101 Gampy 1 -10110010101 rock-movers 1 -10110010101 Commonwealth-flag 1 -10110010101 government-born 1 -10110010101 non-pathogens 1 -10110010101 snackfood 1 -10110010101 perogi-shops 1 -10110010101 scepter 1 -10110010101 Fuad 1 -10110010101 Mab 1 -10110010101 pus 2 -10110010101 Bikhie 2 -10110010101 recorder/player 2 -10110010101 Scrooges 2 -10110010101 ex-aides 2 -10110010101 importunings 2 -10110010101 ORGANIZATIONS 2 -10110010101 A-list 2 -10110010101 misreadings 2 -10110010101 Guiliana 2 -10110010101 pilferers 2 -10110010101 confessor 2 -10110010101 maters 2 -10110010101 intensities 2 -10110010101 commandants 3 -10110010101 noire 3 -10110010101 Elsies 3 -10110010101 accumulators 3 -10110010101 natures 3 -10110010101 midshipmen 3 -10110010101 safaris 3 -10110010101 reshooting 3 -10110010101 invocations 3 -10110010101 rices 3 -10110010101 lodes 3 -10110010101 covens 3 -10110010101 harvesters 3 -10110010101 heirlooms 4 -10110010101 Tao 4 -10110010101 gondoliers 4 -10110010101 plenums 4 -10110010101 rhinoceroses 5 -10110010101 divas 5 -10110010101 instigators 5 -10110010101 checkerboards 6 -10110010101 recitations 6 -10110010101 apostles 6 -10110010101 shutout 6 -10110010101 undercurrents 7 -10110010101 shiploads 7 -10110010101 totems 7 -10110010101 planeloads 7 -10110010101 chairmanships 9 -10110010101 choirs 10 -10110010101 busloads 10 -10110010101 general-secretary 12 -10110010101 connoisseurs 12 -10110010101 reunions 13 -10110010101 lode 13 -10110010101 intents 15 -10110010101 marketmakers 15 -10110010101 deans 16 -10110010101 operandi 16 -10110010101 hacks 19 -10110010101 presidencies 20 -10110010101 comers 22 -10110010101 heaps 25 -10110010101 variants 25 -10110010101 devotees 30 -10110010101 keepers 36 -10110010101 facets 38 -10110010101 co-owners 39 -10110010101 guardians 42 -10110010101 co-chairmen 50 -10110010101 co-managers 52 -10110010101 mater 56 -10110010101 descendants 88 -10110010101 chairmen 336 -10110010101 proponents 340 -10110010101 sorts 374 -10110010101 beneficiaries 425 -10110010101 versions 760 -10110010101 aspects 783 -10110010101 kinds 930 -10110010101 counts 1188 -10110010101 types 1306 -10110010101 victims 1369 -10110010101 representatives 1647 -10110010101 members 11777 -10110010110 Jimmys 1 -10110010110 gazers 1 -10110010110 metals-silver 1 -10110010110 Clothestimes 1 -10110010110 Sublett 1 -10110010110 leit-motif 1 -10110010110 ebusiness 1 -10110010110 Sensibility 1 -10110010110 Community-style 1 -10110010110 sub-region 1 -10110010110 Timeses 1 -10110010110 newsdealer 1 -10110010110 penisula 1 -10110010110 hotdog 1 -10110010110 Zinfandels 1 -10110010110 Heav 1 -10110010110 truckmakers 1 -10110010110 lymphokines 1 -10110010110 geopoliticians 1 -10110010110 themseslves 1 -10110010110 Chihuaha 1 -10110010110 straphanger 1 -10110010110 newsmagazines 1 -10110010110 munitions-makers 1 -10110010110 crowd-drawer 1 -10110010110 Emerates 1 -10110010110 seabeds 1 -10110010110 201-pounder 1 -10110010110 C15 1 -10110010110 Slave-Trade 1 -10110010110 conjunctivitis 1 -10110010110 1963-70 1 -10110010110 competitors. 1 -10110010110 TopKick 1 -10110010110 plainclothesmen 1 -10110010110 batiks 1 -10110010110 leukoplakia 1 -10110010110 Beantowners 1 -10110010110 confrontationalists 1 -10110010110 Wallonia 1 -10110010110 Euro-cards 1 -10110010110 injuries. 1 -10110010110 pan-nationalism 1 -10110010110 cost-saver 1 -10110010110 sheeps 1 -10110010110 two-hours 1 -10110010110 priorities. 1 -10110010110 two. 1 -10110010110 luxurycar-makers 1 -10110010110 mini-markets 1 -10110010110 multiorgasmic 1 -10110010110 makore 1 -10110010110 reformulations 1 -10110010110 Goatsbeard 1 -10110010110 cost-watcher 1 -10110010110 business-getters 1 -10110010110 abominations 1 -10110010110 malaprops 1 -10110010110 extra-territoriality 1 -10110010110 normalizer 1 -10110010110 non-arm 1 -10110010110 calibre 1 -10110010110 Pollione 1 -10110010110 Shona 1 -10110010110 5,353,830 1 -10110010110 cuddler 1 -10110010110 int 1 -10110010110 Data-Designs 1 -10110010110 victory. 1 -10110010110 Seattlite 1 -10110010110 Yunosti 1 -10110010110 overcommitted 1 -10110010110 polities 1 -10110010110 cosmodrome 1 -10110010110 lilacs 1 -10110010110 105-93 1 -10110010110 tire-makers 1 -10110010110 bestiaries 1 -10110010110 armadas 2 -10110010110 loans. 2 -10110010110 art-collecting 2 -10110010110 beef-packers 2 -10110010110 Newarks 2 -10110010110 order. 2 -10110010110 engine-builders 2 -10110010110 choosiness 2 -10110010110 prickliness 2 -10110010110 spirituals 2 -10110010110 member-nations 2 -10110010110 chanceries 2 -10110010110 co-hosting 2 -10110010110 abridgments 2 -10110010110 federalists 2 -10110010110 plasterers 2 -10110010110 veld 2 -10110010110 biotechnologies 2 -10110010110 mini-computers 2 -10110010110 gables 2 -10110010110 nations. 2 -10110010110 Exocets 3 -10110010110 counterparties 3 -10110010110 city-states 3 -10110010110 computer-makers 3 -10110010110 boycotters 3 -10110010110 flashpoints 3 -10110010110 non-students 3 -10110010110 countries. 3 -10110010110 goverments 3 -10110010110 lightbulbs 4 -10110010110 off-seasons 4 -10110010110 Commando 4 -10110010110 biota 5 -10110010110 sanctums 5 -10110010110 celebrators 5 -10110010110 Thomases 5 -10110010110 Titans 5 -10110010110 Rodins 5 -10110010110 subconferences 5 -10110010110 jet-setters 6 -10110010110 mineowners 6 -10110010110 gasolines 6 -10110010110 supertankers 6 -10110010110 sheikdoms 7 -10110010110 Krugerrand 7 -10110010110 Republics 8 -10110010110 sanctum 10 -10110010110 A-300s 14 -10110010110 golds 15 -10110010110 emirates 21 -10110010110 religions 38 -10110010110 venues 42 -10110010110 capitals 110 -10110010110 republics 119 -10110010110 languages 188 -10110010110 democracies 230 -10110010110 provinces 316 -10110010110 currencies 2299 -10110010110 cities 2570 -10110010110 nations 4145 -10110010110 states 7423 -10110010110 countries 9268 -101100101110 all-Democratic 1 -101100101110 turns. 1 -101100101110 chairpersons 1 -101100101110 immoralists 1 -101100101110 drift-garden 1 -101100101110 volteface 1 -101100101110 reappearances 1 -101100101110 eurekas 1 -101100101110 scabiosas 1 -101100101110 chest-beating 1 -101100101110 think. 1 -101100101110 amazements 1 -101100101110 Al-Naqeeb 1 -101100101110 tear-downs 1 -101100101110 cemetary 1 -101100101110 street-fighter 1 -101100101110 noticeboard 1 -101100101110 shells. 1 -101100101110 unharmoniously 1 -101100101110 fastnesses 1 -101100101110 haberdasheries 1 -101100101110 4-J 1 -101100101110 Brandeises 1 -101100101110 TV-camera 1 -101100101110 47,150 1 -101100101110 tub-thumping 1 -101100101110 physiognomies 1 -101100101110 leftbrainers 1 -101100101110 Western-styles 1 -101100101110 supernovas 1 -101100101110 gamesters 1 -101100101110 Fairchild/Fujitsu 1 -101100101110 poulation 1 -101100101110 psychologizing 1 -101100101110 mafias 1 -101100101110 shay 1 -101100101110 earth-stuff 1 -101100101110 radionuclides 1 -101100101110 possums 1 -101100101110 antelopes 1 -101100101110 Herefords 1 -101100101110 team-in-season 1 -101100101110 acitivities 1 -101100101110 alienations 1 -101100101110 mall-goers 1 -101100101110 boxiness 1 -101100101110 packing-house 1 -101100101110 trake 1 -101100101110 unversities 1 -101100101110 prepress 1 -101100101110 Paleokrassas 1 -101100101110 knolls 1 -101100101110 trans-shipments 1 -101100101110 take-oh-LOW-tase 1 -101100101110 defilement 1 -101100101110 cardiograms 1 -101100101110 eeriness 1 -101100101110 showhorses 1 -101100101110 form. 1 -101100101110 blockbluster 1 -101100101110 cusser 1 -101100101110 crack. 1 -101100101110 saplings 1 -101100101110 camp-out 1 -101100101110 toing-and-froing 1 -101100101110 class-tensions 1 -101100101110 schiessbefehl 1 -101100101110 fugures 1 -101100101110 hipsters 1 -101100101110 contemplations 1 -101100101110 tailcoats 1 -101100101110 Bolanoses 1 -101100101110 gluttonies 1 -101100101110 myograph 1 -101100101110 PS/2-compatibles 1 -101100101110 policy-preventing 1 -101100101110 immigrant-subclass 1 -101100101110 co-presidents. 1 -101100101110 kolkhoz 1 -101100101110 shellfire 1 -101100101110 venoms 1 -101100101110 remasterings 1 -101100101110 sculpturality 1 -101100101110 chocolat 1 -101100101110 side-lighting 1 -101100101110 stepsisters 1 -101100101110 coxswain 1 -101100101110 s&ls 1 -101100101110 intelligenstia 1 -101100101110 frostbiter 1 -101100101110 C-sections 1 -101100101110 7777 1 -101100101110 temporary-living 1 -101100101110 eyedrops 1 -101100101110 heart-wringer 1 -101100101110 psychoses 1 -101100101110 tenaciousness 1 -101100101110 Midlanders 1 -101100101110 eventuated 1 -101100101110 manager-west 1 -101100101110 hope. 1 -101100101110 Chihuahuenses 1 -101100101110 toughie 1 -101100101110 Truth-sayers 1 -101100101110 anti-statist 1 -101100101110 Cutchogue 1 -101100101110 politico 1 -101100101110 X-rating 1 -101100101110 Russophiles 1 -101100101110 megadomes 1 -101100101110 Catholic-homeowner 1 -101100101110 retching 1 -101100101110 Melchior 1 -101100101110 fly-fishermen 1 -101100101110 channels. 1 -101100101110 VapoRub 1 -101100101110 Ottone 2 -101100101110 enterprise. 2 -101100101110 Transkeians 2 -101100101110 paterfamilias 2 -101100101110 libertines 2 -101100101110 headline-grabbers 2 -101100101110 musics 2 -101100101110 resurrections 2 -101100101110 abacuses 2 -101100101110 pow-wows 2 -101100101110 verity 2 -101100101110 disqualifications 2 -101100101110 rainforests 2 -101100101110 schoolhouses 2 -101100101110 cases. 2 -101100101110 wrapup 2 -101100101110 utilties 2 -101100101110 multiengine 2 -101100101110 hausfraus 2 -101100101110 avocations 2 -101100101110 subspecialties 2 -101100101110 round-trippers 2 -101100101110 rambunctiousness 2 -101100101110 collectivity 2 -101100101110 successions 2 -101100101110 heresies 2 -101100101110 Unies 2 -101100101110 puffiness 2 -101100101110 oddments 3 -101100101110 cityhood 3 -101100101110 yachtsmen 3 -101100101110 castanets 3 -101100101110 Satans 3 -101100101110 emporiums 3 -101100101110 kibitzers 3 -101100101110 monstrosities 3 -101100101110 warrens 3 -101100101110 spinners 3 -101100101110 toilers 3 -101100101110 milieus 3 -101100101110 spreaders 3 -101100101110 hoppers 3 -101100101110 S.O.B.s 3 -101100101110 neurotransmitters 4 -101100101110 collie 4 -101100101110 peeves 4 -101100101110 specializations 4 -101100101110 liberalizers 4 -101100101110 crazes 4 -101100101110 readouts 4 -101100101110 truants 4 -101100101110 oscillations 4 -101100101110 reckonings 4 -101100101110 couplets 4 -101100101110 dichotomies 5 -101100101110 miniaturization 5 -101100101110 spellings 5 -101100101110 ordeals 5 -101100101110 methodologies 5 -101100101110 finales 5 -101100101110 conveyances 5 -101100101110 demagogues 5 -101100101110 provisos 5 -101100101110 latitudes 6 -101100101110 seminaries 6 -101100101110 pathogens 6 -101100101110 civilizations 6 -101100101110 pairings 6 -101100101110 Vermonters 6 -101100101110 close-ups 6 -101100101110 self-medication 6 -101100101110 Caesareans 7 -101100101110 brothels 7 -101100101110 sayings 7 -101100101110 baubles 7 -101100101110 imponderables 7 -101100101110 eminences 7 -101100101110 hotbeds 7 -101100101110 subplots 8 -101100101110 overproducers 8 -101100101110 capillaries 8 -101100101110 coincidences 8 -101100101110 junctures 8 -101100101110 owner-operators 9 -101100101110 sleepers 9 -101100101110 scourges 9 -101100101110 headings 10 -101100101110 quacks 10 -101100101110 floaters 10 -101100101110 rarities 10 -101100101110 juxtapositions 11 -101100101110 inhibitors 11 -101100101110 annoyances 11 -101100101110 slights 12 -101100101110 concoctions 12 -101100101110 lipoproteins 13 -101100101110 interstates 13 -101100101110 outcasts 14 -101100101110 beauties 14 -101100101110 contexts 14 -101100101110 delicacies 17 -101100101110 nodes 17 -101100101110 extravaganzas 19 -101100101110 epidemics 19 -101100101110 occurrences 21 -101100101110 enclaves 21 -101100101110 yardsticks 26 -101100101110 holdouts 26 -101100101110 spheres 30 -101100101110 intangibles 31 -101100101110 eras 33 -101100101110 handicaps 36 -101100101110 knots 39 -101100101110 baths 41 -101100101110 locales 45 -101100101110 glands 46 -101100101110 luminaries 47 -101100101110 goodies 48 -101100101110 viewpoints 51 -101100101110 angles 62 -101100101110 staples 65 -101100101110 disciplines 76 -101100101110 jurisdictions 78 -101100101110 environments 81 -101100101110 occupations 83 -101100101110 professions 88 -101100101110 extremes 93 -101100101110 scenarios 97 -101100101110 settings 101 -101100101110 variables 106 -101100101110 sizes 199 -101100101110 disorders 201 -101100101110 fronts 201 -101100101110 respects 240 -101100101110 topics 267 -101100101110 directions 272 -101100101110 exceptions 352 -101100101110 incidents 455 -101100101110 instances 496 -101100101110 segments 513 -101100101110 subjects 518 -101100101110 diseases 580 -101100101110 categories 613 -101100101110 situations 616 -101100101110 regions 648 -101100101110 acts 844 -101100101110 sectors 1079 -101100101110 places 1467 -101100101110 matters 1902 -101100101110 items 2453 -101100101110 areas 4574 -101100101110 cases 6213 -101100101111 leviathans 1 -101100101111 minidebates 1 -101100101111 deficiences 1 -101100101111 gold-inlay 1 -101100101111 acccidents 1 -101100101111 bandwagons 1 -101100101111 asset-holders 1 -101100101111 chamberlains 1 -101100101111 reorganizatons 1 -101100101111 Pickfords 1 -101100101111 fine-sounding 1 -101100101111 Berkleys 1 -101100101111 celebrity-seekers 1 -101100101111 Chrismouse 1 -101100101111 doublethink 1 -101100101111 recalcitrants 1 -101100101111 you-bring-in-your-stuff 1 -101100101111 contributorily 1 -101100101111 cataclysms 1 -101100101111 rat-killing 1 -101100101111 quasi-Dalis 1 -101100101111 inedibles 1 -101100101111 mnemonics 1 -101100101111 Japanophiles 1 -101100101111 sibs 1 -101100101111 yuk-mongers 1 -101100101111 disequilibriums 1 -101100101111 high-specification 1 -101100101111 preschooler. 1 -101100101111 non-winners 1 -101100101111 fellow-students 1 -101100101111 dreamwalkers 1 -101100101111 biddies 1 -101100101111 plate-makers 1 -101100101111 religionists 1 -101100101111 vanillas 1 -101100101111 trade-relations 1 -101100101111 commission-cullers 1 -101100101111 Casbahites 1 -101100101111 mouse-friends 1 -101100101111 anymore. 1 -101100101111 rebroadcasts 1 -101100101111 easy-reading 1 -101100101111 brush-off 1 -101100101111 convocations 1 -101100101111 homilists 1 -101100101111 musician/programmers 1 -101100101111 purse-strings 1 -101100101111 kickshaws 1 -101100101111 fix-its 1 -101100101111 inmates-turned-wardens 1 -101100101111 squiddities 1 -101100101111 days-and 1 -101100101111 australis 1 -101100101111 sentimentalities 1 -101100101111 discussants 1 -101100101111 boatmakers 1 -101100101111 umbrella-waving 1 -101100101111 memo-writing 1 -101100101111 devastations 1 -101100101111 eventualities 1 -101100101111 grant-seekers 1 -101100101111 vasodilators 1 -101100101111 currrencies 1 -101100101111 lines-packaged 1 -101100101111 discombobulation 1 -101100101111 sorts. 1 -101100101111 shops-within-a-store 1 -101100101111 agribusinesses 1 -101100101111 compansation 1 -101100101111 program-bashers 1 -101100101111 president-bashers 1 -101100101111 busy-bodies 1 -101100101111 pseudo-reforms 1 -101100101111 batmusic 1 -101100101111 non-doves 1 -101100101111 elegible 1 -101100101111 neo-statists 1 -101100101111 impluses 1 -101100101111 plane-makers 1 -101100101111 expulsados 1 -101100101111 melo-molls 1 -101100101111 datakeepers 1 -101100101111 Goliathry 1 -101100101111 neatening 1 -101100101111 budgetbusters 1 -101100101111 worm-digging 1 -101100101111 pollai 1 -101100101111 sub-groups 1 -101100101111 editorialization 1 -101100101111 constroversies 1 -101100101111 1,093,648 1 -101100101111 catch-words 1 -101100101111 teleports 1 -101100101111 MTV-ers 1 -101100101111 imbecilities 1 -101100101111 derring 1 -101100101111 non-bankers 1 -101100101111 shutterings 1 -101100101111 trends-of-the-day 1 -101100101111 holloware 1 -101100101111 bellyachers 1 -101100101111 demonstators 1 -101100101111 physician-researchers 1 -101100101111 kindreds 1 -101100101111 Kennedy-haters 1 -101100101111 share-shifting 1 -101100101111 scrappers 1 -101100101111 awfulnesses 1 -101100101111 GSEs 1 -101100101111 songsters 1 -101100101111 subheadlines 1 -101100101111 snivelers 1 -101100101111 mini-rallies 1 -101100101111 crises-of-the-moment 1 -101100101111 instituions 1 -101100101111 slip-shod 1 -101100101111 Sola-Barnes-Hind 1 -101100101111 non-Estonians 1 -101100101111 cowhands 1 -101100101111 Samaritans 1 -101100101111 plainsmen 1 -101100101111 DC-9-14s 1 -101100101111 benzodiazepines 2 -101100101111 Pulitzer-predators 2 -101100101111 emoting 2 -101100101111 stolovias 2 -101100101111 unspectacularly 2 -101100101111 dafties 2 -101100101111 meddlers 2 -101100101111 tutti-frutti 2 -101100101111 obscurantism 2 -101100101111 ischemia 2 -101100101111 fogeyism 2 -101100101111 repatriations 2 -101100101111 non-Westerners 2 -101100101111 neutrals 2 -101100101111 anti-competitiveness 2 -101100101111 glasnostics 2 -101100101111 cubits 2 -101100101111 scrimmaging 2 -101100101111 atolls 2 -101100101111 melanomas 2 -101100101111 non-families 2 -101100101111 aways 2 -101100101111 HIVs 2 -101100101111 autistics 2 -101100101111 exegetical 2 -101100101111 thespians 2 -101100101111 acrophobia 2 -101100101111 establishmentarians 2 -101100101111 broker-finders 2 -101100101111 turnoffs 2 -101100101111 oxidants 2 -101100101111 Euro-analysts 2 -101100101111 aphrodisiacs 2 -101100101111 jitneys 2 -101100101111 dalliances 2 -101100101111 prefunding 2 -101100101111 chalets 2 -101100101111 mimi 2 -101100101111 establishmentarian 2 -101100101111 dose-rates 2 -101100101111 T.s 2 -101100101111 outdoorsmen 2 -101100101111 21-0 2 -101100101111 fuddy-duddies 2 -101100101111 uppercuts 2 -101100101111 eight-year-olds 2 -101100101111 kvetch 2 -101100101111 expansionists 2 -101100101111 fourth-graders 2 -101100101111 B&M 3 -101100101111 mafiosi 3 -101100101111 couturiers 3 -101100101111 tabletops 3 -101100101111 bozos 3 -101100101111 irritations 3 -101100101111 motorways 3 -101100101111 non-politicians 3 -101100101111 asses 3 -101100101111 screamers 3 -101100101111 containerization 3 -101100101111 Duza 3 -101100101111 wrens 3 -101100101111 blinchiki 3 -101100101111 Harleys 3 -101100101111 peccadilloes 3 -101100101111 potboilers 3 -101100101111 macroeconomists 3 -101100101111 Rhinemaidens 3 -101100101111 callees 3 -101100101111 improv 3 -101100101111 hicks 3 -101100101111 factors. 3 -101100101111 subterfuges 4 -101100101111 zappers 4 -101100101111 perishables 4 -101100101111 cocks 4 -101100101111 go-getters 4 -101100101111 commodes 4 -101100101111 louts 4 -101100101111 embolisms 4 -101100101111 manias 4 -101100101111 Gmuend 4 -101100101111 invertebrates 4 -101100101111 mini-dolls 4 -101100101111 all-nighters 4 -101100101111 hoaxes 4 -101100101111 apostrophes 4 -101100101111 esoterica 5 -101100101111 sherries 5 -101100101111 cross-fertilization 5 -101100101111 pancreatitis 5 -101100101111 moneys 5 -101100101111 quitters 5 -101100101111 ATs 5 -101100101111 cross-currents 6 -101100101111 re-creations 6 -101100101111 epithets 7 -101100101111 boondoggles 8 -101100101111 anachronisms 8 -101100101111 growths 11 -101100101111 banalities 11 -101100101111 neurons 13 -101100101111 calamities 15 -101100101111 impurities 21 -101100101111 luxuries 36 -101100101111 things 8186 -101100101111 factors 2832 -10110011000 nonentities 1 -10110011000 boons 1 -10110011000 services-banking 1 -10110011000 news-services 1 -10110011000 closer-trimmed 1 -10110011000 entertainment-production 1 -10110011000 businesses-newspaper 1 -10110011000 promotionals 1 -10110011000 one-upsmanship 1 -10110011000 Normozide 1 -10110011000 electronics-part 1 -10110011000 improvidence 1 -10110011000 electives 1 -10110011000 rare-documents 1 -10110011000 administration-services 1 -10110011000 industryis 1 -10110011000 expenses-incentives 1 -10110011000 sub-section 1 -10110011000 Men. 1 -10110011000 rubrics 1 -10110011000 services-related 1 -10110011000 cheroots 1 -10110011000 coin-marketing 1 -10110011000 8,128,351 1 -10110011000 procedures. 1 -10110011000 homogeny 1 -10110011000 TopiCare 1 -10110011000 implement-making 1 -10110011000 worLd 1 -10110011000 dollies 1 -10110011000 Ruffies 1 -10110011000 Hueys 2 -10110011000 Drano 2 -10110011000 countinghouse 2 -10110011000 fandango 2 -10110011000 blights 2 -10110011000 suppositions 2 -10110011000 barbells 2 -10110011000 grandmas 2 -10110011000 superheroes 2 -10110011000 single-A1-plus 2 -10110011000 facials 2 -10110011000 calibers 2 -10110011000 straitjackets 2 -10110011000 aid. 3 -10110011000 illusionism 3 -10110011000 dyspepsia 3 -10110011000 seafoods 3 -10110011000 chassis-leasing 3 -10110011000 thrones 3 -10110011000 tricycles 3 -10110011000 services. 3 -10110011000 Discharge 3 -10110011000 imaging-products 4 -10110011000 flatcars 4 -10110011000 sleight-of-hand 6 -10110011000 mutton 7 -10110011000 centrifuges 9 -10110011000 headgear 9 -10110011000 blitzes 10 -10110011000 therapeutics 15 -10110011000 wizardry 30 -10110011000 acumen 61 -10110011000 diagnostics 69 -10110011000 sciences 142 -10110011000 services 12465 -10110011000 aids 144 -10110011001 terriorism 1 -10110011001 hard-lining 1 -10110011001 Oxana 1 -10110011001 Andre-Michel 1 -10110011001 osteochondrosis 1 -10110011001 modalities 1 -10110011001 streamlinings 1 -10110011001 phobics 1 -10110011001 stock-- 1 -10110011001 dispensaries 1 -10110011001 Aebele 1 -10110011001 mega-bailout 1 -10110011001 trippers 1 -10110011001 lumpen-proletariat 1 -10110011001 computerbuyers 1 -10110011001 duty-time 1 -10110011001 Rahimullah 1 -10110011001 sudser 1 -10110011001 stategies 1 -10110011001 inoculants 1 -10110011001 Otomo 1 -10110011001 digitizers 1 -10110011001 flim-flammery 1 -10110011001 marathoners 1 -10110011001 toadstool 1 -10110011001 stock-held 1 -10110011001 angiographics 1 -10110011001 emergicenter 1 -10110011001 underwitings 1 -10110011001 self-diagnosis 1 -10110011001 sign-in 1 -10110011001 under-representation 1 -10110011001 custardy 1 -10110011001 daydreamed 1 -10110011001 pactice 1 -10110011001 lavishments 1 -10110011001 declaration. 1 -10110011001 dissections 1 -10110011001 incognita 1 -10110011001 fact. 1 -10110011001 house-cleanings 1 -10110011001 Oannes 1 -10110011001 Piper-Heidsieck. 1 -10110011001 Enfields 1 -10110011001 Out-2-Lunch 1 -10110011001 relleno 1 -10110011001 Sempe 1 -10110011001 ossification 1 -10110011001 Medgar 1 -10110011001 honeycombs 1 -10110011001 innovtion 1 -10110011001 sex-hormone 1 -10110011001 low-payers 1 -10110011001 illnesses. 1 -10110011001 do-goodism 1 -10110011001 Prolixin 1 -10110011001 slow-down 1 -10110011001 paper-pushers 1 -10110011001 musicide 1 -10110011001 deductions. 1 -10110011001 contends. 1 -10110011001 extortionists 1 -10110011001 gains/loss 1 -10110011001 coupler 1 -10110011001 harumphing 1 -10110011001 Chalais 1 -10110011001 Vangelis 1 -10110011001 sportspeak 1 -10110011001 pinchers 1 -10110011001 Teresia 1 -10110011001 beneficaries 1 -10110011001 Averroes 1 -10110011001 beasties 1 -10110011001 rationing. 1 -10110011001 research. 1 -10110011001 helms 1 -10110011001 narratologists 1 -10110011001 alchemists 1 -10110011001 super-interested 1 -10110011001 harasser 1 -10110011001 potables 1 -10110011001 androgyne 1 -10110011001 payoffif 1 -10110011001 partnerhsip 1 -10110011001 matricide 1 -10110011001 purpose. 1 -10110011001 underachievement 2 -10110011001 Duisberg 2 -10110011001 Frostproof 2 -10110011001 shadowboxes 2 -10110011001 Archilochus 2 -10110011001 dribbles 2 -10110011001 crumminess 2 -10110011001 geek 2 -10110011001 colors. 2 -10110011001 rouser 2 -10110011001 couth 2 -10110011001 businesswise 2 -10110011001 managementspeak 2 -10110011001 retrorunners 2 -10110011001 fight. 2 -10110011001 dispensary 2 -10110011001 Pansy 2 -10110011001 molesters 2 -10110011001 footgear 2 -10110011001 oppportunity 2 -10110011001 blow-dry 2 -10110011001 Mallarme 3 -10110011001 expressiveness 3 -10110011001 organization. 3 -10110011001 Amneris 3 -10110011001 repellents 3 -10110011001 swigging 3 -10110011001 care-related 3 -10110011001 scuttlebutt 3 -10110011001 reverberation 3 -10110011001 do-gooders 3 -10110011001 firma 4 -10110011001 x-ray 4 -10110011001 pincher 4 -10110011001 care. 5 -10110011001 care-givers 5 -10110011001 thermometers 6 -10110011001 extraordinaire 7 -10110011001 cotta 8 -10110011001 floss 19 -10110011001 lilies 20 -10110011001 governance 123 -10110011001 IOUs 142 -10110011001 care 4580 -10110011001 purposes 2435 -10110011010 leaflike 1 -10110011010 blow-dryers 1 -10110011010 fixative 1 -10110011010 security-products 1 -10110011010 production-management 1 -10110011010 Wavertree 1 -10110011010 appendix. 1 -10110011010 resourceswere 1 -10110011010 super-rabbits 1 -10110011010 CTPA 1 -10110011010 key-container 1 -10110011010 Viprostol 1 -10110011010 aerobically 1 -10110011010 Intersept 1 -10110011010 quasi-pornography 1 -10110011010 Stealths 1 -10110011010 jumbo-jets 1 -10110011010 1-900 1 -10110011010 newswletter 1 -10110011010 enginers 1 -10110011010 winch 1 -10110011010 bond-data 1 -10110011010 gantries 1 -10110011010 conduits-allegations 1 -10110011010 boas 1 -10110011010 eight-abreast 1 -10110011010 sales-but 1 -10110011010 lunchrooms 1 -10110011010 socket-wrench 1 -10110011010 alarms. 1 -10110011010 dimension. 1 -10110011010 lobbies. 1 -10110011010 salad-dressings 1 -10110011010 18-4 1 -10110011010 match. 1 -10110011010 Beatty-pal 1 -10110011010 teacher-interns 1 -10110011010 boom. 1 -10110011010 criteria. 1 -10110011010 hydroelectrically 1 -10110011010 34-66 1 -10110011010 tote-bags 1 -10110011010 skidders 1 -10110011010 linuron 1 -10110011010 Ganymede 1 -10110011010 changes. 1 -10110011010 blood-tests 1 -10110011010 crowd-pleasers 1 -10110011010 Kimigayo 1 -10110011010 Schliesse 1 -10110011010 relations-wise 1 -10110011010 cutting-and-pasting 1 -10110011010 rice-hulls 1 -10110011010 fibers-- 1 -10110011010 range-finders 1 -10110011010 45-56-88 1 -10110011010 compensators 1 -10110011010 aircaft 1 -10110011010 market-information 1 -10110011010 fricassee 1 -10110011010 cycle-mistakes 1 -10110011010 television-equipment 1 -10110011010 depth-finders 1 -10110011010 alcoves 1 -10110011010 turbopumps 1 -10110011010 popcorns 1 -10110011010 disk-read 1 -10110011010 M-14s 1 -10110011010 mallmaker 1 -10110011010 biologist-turned-entrepreneur 1 -10110011010 entrepreneurships 1 -10110011010 fuel-payment 1 -10110011010 peripherials 1 -10110011010 time-light 1 -10110011010 mini-incinerators 1 -10110011010 maching 1 -10110011010 fabric-cutters 1 -10110011010 COUTURE 1 -10110011010 childen 1 -10110011010 image-setters 1 -10110011010 annotator 1 -10110011010 wellhead-manufacturing 1 -10110011010 380776 1 -10110011010 22598 1 -10110011010 28283 1 -10110011010 contactor 1 -10110011010 sheepshearer 1 -10110011010 disks. 1 -10110011010 sooner. 1 -10110011010 M-60s 1 -10110011010 pilots. 1 -10110011010 undercapacity 1 -10110011010 976-HOME 1 -10110011010 meemies 1 -10110011010 storage-system 1 -10110011010 printing-plants 1 -10110011010 whiz-bangs 1 -10110011010 building-security 1 -10110011010 Essec 1 -10110011010 uiltity 1 -10110011010 domestically-grown 1 -10110011010 G&C 1 -10110011010 4,212,802 1 -10110011010 voltaics 1 -10110011010 cravats 1 -10110011010 Dustbusters 1 -10110011010 attendents 1 -10110011010 softwear 1 -10110011010 polisher 1 -10110011010 maser 1 -10110011010 time-bomb 1 -10110011010 plucker 1 -10110011010 Wyborowa 1 -10110011010 Teletimer 1 -10110011010 juvenilia 2 -10110011010 eyelets 2 -10110011010 thinners 2 -10110011010 mangos 2 -10110011010 turbine-generators 2 -10110011010 peelers 2 -10110011010 power-equipment 2 -10110011010 Figeac 2 -10110011010 6312 2 -10110011010 sundials 2 -10110011010 colonnade 2 -10110011010 chervil 2 -10110011010 relocatable 2 -10110011010 arbors 2 -10110011010 eqiupment 2 -10110011010 chalkboards 2 -10110011010 accomplis 2 -10110011010 devices. 2 -10110011010 irradiators 2 -10110011010 valve-lifters 2 -10110011010 6310 2 -10110011010 percolates 2 -10110011010 work-papers 2 -10110011010 frisks 2 -10110011010 plankton 2 -10110011010 kindergartners 2 -10110011010 Neeskay 2 -10110011010 life-cycle 2 -10110011010 stacker 2 -10110011010 nudism 2 -10110011010 footrest 2 -10110011010 removers 2 -10110011010 switch-gear 2 -10110011010 hardward 2 -10110011010 sytems 2 -10110011010 resistivity 3 -10110011010 suppressants 3 -10110011010 serums 3 -10110011010 couplers 3 -10110011010 ales 3 -10110011010 photomasks 3 -10110011010 granules 3 -10110011010 sidings 3 -10110011010 extinguisher 3 -10110011010 pick-ups 3 -10110011010 stuffers 3 -10110011010 mini-piano 3 -10110011010 fitters 3 -10110011010 prototyping 4 -10110011010 hydrants 4 -10110011010 gyro 4 -10110011010 Hornets 4 -10110011010 information-display 4 -10110011010 Twaron 4 -10110011010 actuators 4 -10110011010 polyesters 4 -10110011010 boarders 5 -10110011010 microdisks 5 -10110011010 mobiles 5 -10110011010 colorants 5 -10110011010 anhydride 6 -10110011010 plaything 6 -10110011010 fillets 6 -10110011010 operation. 6 -10110011010 shawls 6 -10110011010 dodgers 7 -10110011010 scopes 7 -10110011010 cords 7 -10110011010 lawnmower 7 -10110011010 pylons 7 -10110011010 plating 7 -10110011010 hook-ups 7 -10110011010 jammers 7 -10110011010 crankshafts 8 -10110011010 rectifiers 8 -10110011010 throwers 9 -10110011010 nerds 9 -10110011010 extenders 9 -10110011010 architectures 9 -10110011010 tribunals 10 -10110011010 gaskets 10 -10110011010 extinguishers 10 -10110011010 excavators 11 -10110011010 pulleys 11 -10110011010 ale 12 -10110011010 resistors 13 -10110011010 archive 13 -10110011010 mixer 13 -10110011010 subassemblies 15 -10110011010 amplifiers 15 -10110011010 ducts 15 -10110011010 gadgetry 16 -10110011010 consoles 16 -10110011010 absorbers 16 -10110011010 casings 17 -10110011010 hookups 17 -10110011010 discs 19 -10110011010 catheters 19 -10110011010 yearbooks 20 -10110011010 diskettes 20 -10110011010 laminates 23 -10110011010 hookup 26 -10110011010 pigments 27 -10110011010 dressings 29 -10110011010 inks 30 -10110011010 subsystems 33 -10110011010 printouts 35 -10110011010 pulses 36 -10110011010 sealants 37 -10110011010 simulations 38 -10110011010 transformers 38 -10110011010 transmitters 39 -10110011010 materiel 39 -10110011010 keyboards 42 -10110011010 cord 45 -10110011010 antennas 47 -10110011010 tiles 48 -10110011010 cranes 52 -10110011010 circuitry 53 -10110011010 castings 53 -10110011010 fittings 56 -10110011010 rays 61 -10110011010 connectors 62 -10110011010 heaters 63 -10110011010 lamps 64 -10110011010 fluids 75 -10110011010 rods 77 -10110011010 assemblies 80 -10110011010 peripherals 82 -10110011010 bells 89 -10110011010 scanners 90 -10110011010 furnaces 90 -10110011010 typewriters 91 -10110011010 simulators 91 -10110011010 fixtures 109 -10110011010 ovens 111 -10110011010 chassis 115 -10110011010 cables 151 -10110011010 cooperatives 164 -10110011010 recorder 172 -10110011010 oils 180 -10110011010 kits 191 -10110011010 coatings 206 -10110011010 motors 256 -10110011010 printers 349 -10110011010 recorders 350 -10110011010 accessories 355 -10110011010 workstations 483 -10110011010 terminals 487 -10110011010 disks 487 -10110011010 gear 596 -10110011010 tool 813 -10110011010 tools 902 -10110011010 machinery 1175 -10110011010 devices 1396 -10110011010 materials 2879 -10110011010 equipment 9207 -10110011010 systems 7736 -10110011011 deposit-and-loan 1 -10110011011 trackwork 1 -10110011011 Yablonskaya 1 -10110011011 association. 1 -10110011011 Cinta 1 -10110011011 night-spot 1 -10110011011 Schub 1 -10110011011 journal-ist 1 -10110011011 maketplace 1 -10110011011 atti-toode 1 -10110011011 homes-away-from-home 1 -10110011011 economy-segment 1 -10110011011 Citicorp-backed 1 -10110011011 condominiums. 1 -10110011011 supermodels 1 -10110011011 death-mask 1 -10110011011 oilchange 1 -10110011011 dirctors 1 -10110011011 100-model 1 -10110011011 phoebe 1 -10110011011 track-layers 1 -10110011011 Yusafzai 1 -10110011011 noninformation 1 -10110011011 angiocatheter 1 -10110011011 home-goods 1 -10110011011 stegosaurus 1 -10110011011 promoters. 1 -10110011011 advice-monger 1 -10110011011 superflare 1 -10110011011 strip-coating 1 -10110011011 solicitousness 1 -10110011011 pink-marble 1 -10110011011 resin-making 1 -10110011011 bag. 1 -10110011011 micronutrients 1 -10110011011 enegry 1 -10110011011 Cubas 1 -10110011011 mask-and-hose 1 -10110011011 Baedekers 1 -10110011011 asssignment 1 -10110011011 frito 1 -10110011011 crisis-planning 1 -10110011011 indexations 1 -10110011011 thong 1 -10110011011 pentagon 1 -10110011011 nose-tip 1 -10110011011 Americas/Pacific 1 -10110011011 influence-seekers 1 -10110011011 desk-legs 1 -10110011011 boat-towing 1 -10110011011 buinesses 1 -10110011011 categories. 1 -10110011011 Walesas 1 -10110011011 componentry 1 -10110011011 backsheet 1 -10110011011 energy-recovery 1 -10110011011 MD-99 1 -10110011011 lothario 1 -10110011011 turmeric 1 -10110011011 absorbables 1 -10110011011 autobiographer 1 -10110011011 toaster. 1 -10110011011 retrenchment. 1 -10110011011 Saabs 1 -10110011011 processses 1 -10110011011 aluminum-production 1 -10110011011 patinas 1 -10110011011 Eurocorporation 1 -10110011011 HoHos 1 -10110011011 clinker 1 -10110011011 Accutane-litigation 1 -10110011011 deicers 1 -10110011011 information-delivery 1 -10110011011 trichloride 1 -10110011011 nonbank-banks 1 -10110011011 Staggerwing 1 -10110011011 18-holer 1 -10110011011 businessmen-authors 1 -10110011011 3,448 1 -10110011011 phoebes 1 -10110011011 prdoducts 1 -10110011011 saw-timber 1 -10110011011 halfballs 1 -10110011011 publisher. 1 -10110011011 milkers 1 -10110011011 specialty-materials 1 -10110011011 home-repair 1 -10110011011 wannabe 1 -10110011011 30,860,000 1 -10110011011 16-room 1 -10110011011 galvinizing 1 -10110011011 micro-development 1 -10110011011 altimeters 2 -10110011011 pinwheels 2 -10110011011 immunotherapies 2 -10110011011 automatic-focus 2 -10110011011 arabesques 2 -10110011011 extruder 2 -10110011011 end-products 2 -10110011011 owner/managers 2 -10110011011 jewelery 2 -10110011011 heldentenors 2 -10110011011 tobaccos 2 -10110011011 radiopharmaceuticals 2 -10110011011 pantries 2 -10110011011 termiticides 2 -10110011011 antifreeze/coolant 2 -10110011011 sulphate 2 -10110011011 school-products 2 -10110011011 Tulips 2 -10110011011 syntheses 2 -10110011011 battletanks 2 -10110011011 sippers 3 -10110011011 parkas 3 -10110011011 trade-credit 3 -10110011011 chowder 3 -10110011011 emulsions 3 -10110011011 paysops 3 -10110011011 VAXstations 3 -10110011011 hillocks 3 -10110011011 catagory 3 -10110011011 ketone 3 -10110011011 enlarger 3 -10110011011 systems. 3 -10110011011 rubbers 3 -10110011011 bakeware 3 -10110011011 windbreaker 3 -10110011011 turnings 3 -10110011011 utensil 4 -10110011011 samovar 4 -10110011011 water-heater 4 -10110011011 biochemicals 4 -10110011011 headlamps 4 -10110011011 conveyors 5 -10110011011 trioxide 5 -10110011011 thongs 5 -10110011011 jobs. 5 -10110011011 concentrator 5 -10110011011 staplers 6 -10110011011 girders 7 -10110011011 miller 9 -10110011011 foams 10 -10110011011 pontoons 10 -10110011011 intermediates 11 -10110011011 advisories 11 -10110011011 cleansers 12 -10110011011 isocyanate 12 -10110011011 utensils 12 -10110011011 wrappers 12 -10110011011 tableware 13 -10110011011 reagents 14 -10110011011 novelties 15 -10110011011 sheeting 15 -10110011011 feedstocks 15 -10110011011 moldings 17 -10110011011 entertainments 18 -10110011011 distillates 19 -10110011011 forgings 20 -10110011011 mini-supercomputers 20 -10110011011 pentamidine 21 -10110011011 capacitors 24 -10110011011 derivatives 25 -10110011011 nameplates 34 -10110011011 liners 36 -10110011011 alloys 45 -10110011011 gadgets 50 -10110011011 entrees 50 -10110011011 fasteners 67 -10110011011 tubing 73 -10110011011 polymers 80 -10110011011 therapies 97 -10110011011 specialties 98 -10110011011 additives 104 -10110011011 resins 165 -10110011011 furnishings 169 -10110011011 fabrics 187 -10110011011 gases 199 -10110011011 stamps 221 -10110011011 fibers 250 -10110011011 containers 443 -10110011011 appliances 556 -10110011011 technologies 692 -10110011011 foods 775 -10110011011 products 18678 -10110011011 instruments 1419 -10110011100 chateaus 1 -10110011100 BETA 1 -10110011100 comuters 1 -10110011100 300-CE 1 -10110011100 Tweedledumb 1 -10110011100 pseudo-names 1 -10110011100 item. 1 -10110011100 Boozie 1 -10110011100 Sheltons 1 -10110011100 drugging 1 -10110011100 anemometer 1 -10110011100 8810 1 -10110011100 shrews 1 -10110011100 Superchief 1 -10110011100 toughener 1 -10110011100 embitterment 1 -10110011100 income-hold 1 -10110011100 drillling 1 -10110011100 work-shirt 1 -10110011100 elastics 1 -10110011100 type-rated 1 -10110011100 unkindness 1 -10110011100 RVs 1 -10110011100 antirheumatics 1 -10110011100 mis-estimate 1 -10110011100 SEs 1 -10110011100 clonidine-HCL 1 -10110011100 hyper-reactivity 1 -10110011100 smoke. 1 -10110011100 w-o-o-s-h 1 -10110011100 videocamera 1 -10110011100 Mamiya 1 -10110011100 oxygenators 1 -10110011100 industrial-goods 1 -10110011100 likings 1 -10110011100 Tyr 1 -10110011100 airbeds 1 -10110011100 mer-costume 1 -10110011100 arsenicals 1 -10110011100 chippish 1 -10110011100 weeper 1 -10110011100 Army- 1 -10110011100 8974 1 -10110011100 fillable 1 -10110011100 recombination 1 -10110011100 spruces 1 -10110011100 slurpee 1 -10110011100 TV-channel 1 -10110011100 terrazzo 1 -10110011100 liberty. 1 -10110011100 speed-bag 1 -10110011100 lockets 1 -10110011100 topsy 1 -10110011100 express-mail 1 -10110011100 personal-business 1 -10110011100 BM-21 1 -10110011100 check-cashers 1 -10110011100 Celicas 1 -10110011100 highlighter 1 -10110011100 6240 1 -10110011100 6230 1 -10110011100 6220 1 -10110011100 Dyazides 1 -10110011100 epithelium 1 -10110011100 5,042 1 -10110011100 ranchhouse 1 -10110011100 19,992 1 -10110011100 87,204 1 -10110011100 sachets 1 -10110011100 boogies 1 -10110011100 leg-up 1 -10110011100 ceams 1 -10110011100 Rieslings 2 -10110011100 8978 2 -10110011100 streetlights 2 -10110011100 windsock 2 -10110011100 Pluses 2 -10110011100 8530 2 -10110011100 8350 2 -10110011100 returns. 2 -10110011100 Wartburgs 2 -10110011100 heron 2 -10110011100 tunics 2 -10110011100 coagulation 2 -10110011100 nachos 2 -10110011100 Normans 2 -10110011100 Margaritas 2 -10110011100 DeVilles 2 -10110011100 Holsteins 2 -10110011100 windbells 2 -10110011100 authoritarians 2 -10110011100 wildernesses 2 -10110011100 water-craft 2 -10110011100 routings 2 -10110011100 sulfazin 2 -10110011100 Rainbows 2 -10110011100 computers. 2 -10110011100 tangerines 2 -10110011100 pollock 2 -10110011100 test-takers 2 -10110011100 riesling 2 -10110011100 collating 2 -10110011100 Gremlin 2 -10110011100 material. 2 -10110011100 6210 2 -10110011100 IL-4 2 -10110011100 banisters 2 -10110011100 spellers 2 -10110011100 legato 2 -10110011100 re-elections 2 -10110011100 pre-sweetened 2 -10110011100 afghan 2 -10110011100 Sevilles 2 -10110011100 watersheds 2 -10110011100 pates 2 -10110011100 mockup 2 -10110011100 piggybank 2 -10110011100 jetways 2 -10110011100 keratotomy 3 -10110011100 speakeasies 3 -10110011100 medics 3 -10110011100 trams 3 -10110011100 pugnacity 3 -10110011100 nipples 3 -10110011100 matting 3 -10110011100 message. 3 -10110011100 formulae 3 -10110011100 truck-trailers 3 -10110011100 Pontiacs 3 -10110011100 insulins 3 -10110011100 pygmies 3 -10110011100 breeches 3 -10110011100 mouthpieces 3 -10110011100 turboprops 3 -10110011100 fifth- 3 -10110011100 extrusions 3 -10110011100 irregulars 3 -10110011100 jays 3 -10110011100 yonder 3 -10110011100 searchlights 3 -10110011100 stateliness 3 -10110011100 Eldorados 3 -10110011100 vertebrae 3 -10110011100 chairlifts 3 -10110011100 scrapers 3 -10110011100 M-16s 3 -10110011100 H-cars 3 -10110011100 Monza 3 -10110011100 Tornados 3 -10110011100 bluebirds 3 -10110011100 ampules 3 -10110011100 overdevelopment 3 -10110011100 brownies 3 -10110011100 aperitifs 3 -10110011100 mycotoxins 3 -10110011100 cursors 3 -10110011100 A-310s 4 -10110011100 underachievers 4 -10110011100 orangutans 4 -10110011100 nursers 4 -10110011100 nacelles 4 -10110011100 silage 4 -10110011100 constipation 4 -10110011100 valets 4 -10110011100 tillers 4 -10110011100 tongs 4 -10110011100 thunderclaps 4 -10110011100 toners 4 -10110011100 eggshell 4 -10110011100 pronouns 4 -10110011100 pecans 4 -10110011100 tetrachloride 4 -10110011100 coiffures 4 -10110011100 MXs 4 -10110011100 dandelion 4 -10110011100 alternators 4 -10110011100 lassitude 4 -10110011100 tumbleweed 4 -10110011100 grapefruits 4 -10110011100 Muffins 4 -10110011100 corkscrews 4 -10110011100 burros 4 -10110011100 Savior 4 -10110011100 dowels 4 -10110011100 doilies 4 -10110011100 mantras 4 -10110011100 avalanches 4 -10110011100 azaleas 4 -10110011100 classifieds 4 -10110011100 mosses 4 -10110011100 snorers 4 -10110011100 WPGH-TV 4 -10110011100 romps 4 -10110011100 vendettas 4 -10110011100 jaunts 5 -10110011100 endorphins 5 -10110011100 antidotes 5 -10110011100 anticoagulants 5 -10110011100 snowplows 5 -10110011100 porridge 5 -10110011100 self-indulgence 5 -10110011100 refreshments 5 -10110011100 orbiters 5 -10110011100 land- 5 -10110011100 motorcycling 5 -10110011100 leotards 5 -10110011100 DISCs 5 -10110011100 blackboards 5 -10110011100 sanders 5 -10110011100 horseshoes 5 -10110011100 telecommuters 5 -10110011100 estrogens 5 -10110011100 fronds 5 -10110011100 scrims 5 -10110011100 hatchbacks 5 -10110011100 milkshakes 5 -10110011100 metalwork 5 -10110011100 pheromones 5 -10110011100 eggplants 5 -10110011100 kites 5 -10110011100 bullhorns 5 -10110011100 Sterlings 5 -10110011100 motorcyles 5 -10110011100 skywriting 5 -10110011100 Nikes 5 -10110011100 improvisations 5 -10110011100 wreaths 5 -10110011100 knickers 5 -10110011100 caulking 5 -10110011100 rinsing 5 -10110011100 spindles 5 -10110011100 typesetters 5 -10110011100 forgers 5 -10110011100 Preludes 5 -10110011100 amulets 6 -10110011100 feedings 6 -10110011100 sprayers 6 -10110011100 A300 6 -10110011100 browns 6 -10110011100 puddings 6 -10110011100 slingshots 6 -10110011100 weevils 6 -10110011100 Twinkies 6 -10110011100 Wranglers 6 -10110011100 turbochargers 6 -10110011100 frogmen 6 -10110011100 Comanches 6 -10110011100 strippers 6 -10110011100 okra 6 -10110011100 cribs 6 -10110011100 Nissans 6 -10110011100 serials 6 -10110011100 armrests 6 -10110011100 glues 6 -10110011100 errands 6 -10110011100 supermicrocomputer 6 -10110011100 collegians 6 -10110011100 polkas 6 -10110011100 two-by-fours 6 -10110011100 Tempos 6 -10110011100 toads 6 -10110011100 crucifixes 6 -10110011100 knickknacks 6 -10110011100 studs 6 -10110011100 kettles 6 -10110011100 inscriptions 6 -10110011100 confetti 7 -10110011100 coveralls 7 -10110011100 radishes 7 -10110011100 shredders 7 -10110011100 strollers 7 -10110011100 curriculums 7 -10110011100 surfboards 7 -10110011100 134a 7 -10110011100 pancakes 7 -10110011100 handkerchiefs 7 -10110011100 Firenzas 7 -10110011100 cramps 7 -10110011100 burritos 7 -10110011100 dumplings 7 -10110011100 guardrails 7 -10110011100 groomers 7 -10110011100 lanterns 7 -10110011100 earplugs 7 -10110011100 regiments 7 -10110011100 legalese 7 -10110011100 railcars 7 -10110011100 transcendence 7 -10110011100 voyages 7 -10110011100 hookers 7 -10110011100 oscilloscopes 7 -10110011100 exaggerations 7 -10110011100 nymphs 7 -10110011100 amputations 7 -10110011100 omelets 7 -10110011100 probenecid 7 -10110011100 bloods 7 -10110011100 megahouses 7 -10110011100 lacerations 7 -10110011100 bonfires 7 -10110011100 cowbells 7 -10110011100 Sentras 7 -10110011100 deafness 7 -10110011100 earthworms 7 -10110011100 DL 7 -10110011100 reloads 8 -10110011100 draperies 8 -10110011100 entrepreneurialism 8 -10110011100 lasagna 8 -10110011100 electrocardiograms 8 -10110011100 eyelashes 8 -10110011100 kindergartens 8 -10110011100 PC-XT 8 -10110011100 railings 8 -10110011100 palpitations 8 -10110011100 canoes 8 -10110011100 fanciers 8 -10110011100 Sables 8 -10110011100 footballs 8 -10110011100 tees 8 -10110011100 interferons 8 -10110011100 podiums 8 -10110011100 EXP 8 -10110011100 hubcaps 8 -10110011100 airships 8 -10110011100 innuendos 8 -10110011100 motorbikes 8 -10110011100 prostheses 8 -10110011100 oases 8 -10110011100 Samaras 8 -10110011100 hGH 8 -10110011100 handbag 8 -10110011100 perspiration 8 -10110011100 backpacks 8 -10110011100 rattlesnakes 8 -10110011100 Corvettes 8 -10110011100 pompons 8 -10110011100 harpists 8 -10110011100 Novas 8 -10110011100 radiators 8 -10110011100 coasters 8 -10110011100 pastas 8 -10110011100 Corsicas 8 -10110011100 carburetors 8 -10110011100 owls 8 -10110011100 pacifiers 8 -10110011100 gliders 9 -10110011100 Aerostars 9 -10110011100 creeks 9 -10110011100 bathrobes 9 -10110011100 typhoons 9 -10110011100 defaulters 9 -10110011100 eels 9 -10110011100 westerns 9 -10110011100 forts 9 -10110011100 minibuses 9 -10110011100 gargoyles 9 -10110011100 ware 9 -10110011100 Cherokees 9 -10110011100 hijackings 9 -10110011100 binders 9 -10110011100 pars 9 -10110011100 crayons 9 -10110011100 symposiums 9 -10110011100 emcee 9 -10110011100 cobwebs 9 -10110011100 cancer. 9 -10110011100 undergarments 9 -10110011100 diodes 9 -10110011100 circuses 9 -10110011100 auditoriums 9 -10110011100 blueberries 9 -10110011100 broilers 9 -10110011100 blenders 9 -10110011100 torsos 9 -10110011100 cots 9 -10110011100 cabinetry 9 -10110011100 super-minicomputers 9 -10110011100 three-wheelers 9 -10110011100 blazers 9 -10110011100 VANs 9 -10110011100 D-RAMs 9 -10110011100 croissants 9 -10110011100 screwdrivers 9 -10110011100 electromagnets 9 -10110011100 raincoats 9 -10110011100 fours 10 -10110011100 rainbows 10 -10110011100 fairways 10 -10110011100 papayas 10 -10110011100 steakhouses 10 -10110011100 politeness 10 -10110011100 cuttings 10 -10110011100 767-300s 10 -10110011100 fuzes 10 -10110011100 coolants 10 -10110011100 jumpsuit 10 -10110011100 DC-8s 10 -10110011100 contraptions 10 -10110011100 straps 10 -10110011100 sweats 10 -10110011100 deodorants 10 -10110011100 minilabs 10 -10110011100 walnuts 10 -10110011100 kayaks 10 -10110011100 baseballs 10 -10110011100 installers 10 -10110011100 mussels 10 -10110011100 coughs 10 -10110011100 truncheons 10 -10110011100 tastings 10 -10110011100 perforations 10 -10110011100 goo 11 -10110011100 sweets 11 -10110011100 terraces 11 -10110011100 avocados 11 -10110011100 Chevys 11 -10110011100 thymidine 11 -10110011100 thoroughbreds 11 -10110011100 duels 11 -10110011100 sardines 11 -10110011100 jumbos 11 -10110011100 thrips 11 -10110011100 calisthenics 11 -10110011100 truffles 11 -10110011100 parrots 11 -10110011100 propellants 11 -10110011100 bikinis 11 -10110011100 abortifacients 11 -10110011100 applicators 11 -10110011100 plazas 11 -10110011100 locusts 11 -10110011100 trimmings 11 -10110011100 petunias 11 -10110011100 prostaglandins 11 -10110011100 respirators 11 -10110011100 MIAs 11 -10110011100 hospices 11 -10110011100 remover 11 -10110011100 forks 11 -10110011100 liqueurs 11 -10110011100 castles 12 -10110011100 cactus 12 -10110011100 Jaguars 12 -10110011100 nonwhites 12 -10110011100 microscopes 12 -10110011100 walkways 12 -10110011100 mixers 12 -10110011100 sutures 12 -10110011100 Silkworms 12 -10110011100 harps 12 -10110011100 breads 12 -10110011100 housings 12 -10110011100 daggers 12 -10110011100 pelts 12 -10110011100 jeers 12 -10110011100 acrobats 12 -10110011100 ferns 12 -10110011100 lecturers 12 -10110011100 multiplexers 12 -10110011100 crumbs 12 -10110011100 ores 12 -10110011100 bugles 12 -10110011100 Buicks 12 -10110011100 wrenches 12 -10110011100 dispatchers 12 -10110011100 squirrels 12 -10110011100 liquors 12 -10110011100 LPs 13 -10110011100 twinjets 13 -10110011100 F-14s 13 -10110011100 winks 13 -10110011100 chopsticks 13 -10110011100 walkie-talkies 13 -10110011100 watercolors 13 -10110011100 beetles 13 -10110011100 dioxins 13 -10110011100 torches 13 -10110011100 airstrips 13 -10110011100 greenhouses 13 -10110011100 mangoes 13 -10110011100 fleas 13 -10110011100 lodgings 13 -10110011100 conveniences 13 -10110011100 meningitis 13 -10110011100 sodas 13 -10110011100 lids 13 -10110011100 crickets 14 -10110011100 minicars 14 -10110011100 burglaries 14 -10110011100 ashtrays 14 -10110011100 yellows 14 -10110011100 scallops 14 -10110011100 candies 14 -10110011100 urchins 14 -10110011100 lotions 14 -10110011100 fillings 14 -10110011100 boulders 14 -10110011100 bungalows 14 -10110011100 barbecues 14 -10110011100 pistons 14 -10110011100 gyms 14 -10110011100 rubies 14 -10110011100 salts 14 -10110011100 trinkets 14 -10110011100 twin-jets 14 -10110011100 marshmallows 14 -10110011100 FSCs 14 -10110011100 screenplays 14 -10110011100 flatware 14 -10110011100 insubordination 14 -10110011100 mulch 14 -10110011100 Civics 14 -10110011100 pheasants 14 -10110011100 maples 15 -10110011100 blooms 15 -10110011100 lithographs 15 -10110011100 widgets 15 -10110011100 varietals 15 -10110011100 oxen 15 -10110011100 Primes 15 -10110011100 yarns 15 -10110011100 sleds 15 -10110011100 hisses 15 -10110011100 rims 15 -10110011100 sedums 15 -10110011100 cookbooks 15 -10110011100 surgeries 15 -10110011100 gearboxes 15 -10110011100 olives 15 -10110011100 hangers 15 -10110011100 Mercedes-Benzes 15 -10110011100 compatibles 15 -10110011100 tempos 15 -10110011100 hangars 15 -10110011100 refrigerants 16 -10110011100 jocks 16 -10110011100 shovels 16 -10110011100 valuables 16 -10110011100 bagels 16 -10110011100 foundries 16 -10110011100 colds 16 -10110011100 powders 16 -10110011100 bathtubs 16 -10110011100 partitions 16 -10110011100 freighters 16 -10110011100 batons 16 -10110011100 toothbrushes 16 -10110011100 Thunderbirds 16 -10110011100 linens 16 -10110011100 VTRs 16 -10110011100 incense 16 -10110011100 tights 16 -10110011100 T-cells 16 -10110011100 jeeps 16 -10110011100 melons 16 -10110011100 racehorses 16 -10110011100 Chevrolets 17 -10110011100 sweatshirts 17 -10110011100 tapestries 17 -10110011100 nozzles 17 -10110011100 synthesizers 17 -10110011100 janitors 17 -10110011100 Rolls-Royces 17 -10110011100 marinas 17 -10110011100 hospitalizations 17 -10110011100 clams 17 -10110011100 lymphocytes 17 -10110011100 ditches 18 -10110011100 postcards 18 -10110011100 ramps 18 -10110011100 pranks 18 -10110011100 pineapples 18 -10110011100 preservatives 18 -10110011100 DC-9s 18 -10110011100 A-340s 18 -10110011100 sailboats 18 -10110011100 placards 18 -10110011100 torpedoes 18 -10110011100 Escorts 18 -10110011100 fungicides 18 -10110011100 mannequins 18 -10110011100 shavers 18 -10110011100 thunderstorms 19 -10110011100 magnetism 19 -10110011100 decoders 19 -10110011100 frogs 19 -10110011100 teas 19 -10110011100 telescopes 19 -10110011100 look-alikes 19 -10110011100 antlers 19 -10110011100 tubs 19 -10110011100 syringes 19 -10110011100 alewives 19 -10110011100 collectives 19 -10110011100 tranquilizers 19 -10110011100 VDTs 20 -10110011100 analyzers 20 -10110011100 coffins 20 -10110011100 shrubs 20 -10110011100 K-cars 20 -10110011100 Toyotas 20 -10110011100 aches 20 -10110011100 Hondas 20 -10110011100 advertorials 20 -10110011100 gemstones 20 -10110011100 self-discipline 20 -10110011100 Porsches 20 -10110011100 parasites 20 -10110011100 cataracts 20 -10110011100 cucumbers 20 -10110011100 toothpastes 20 -10110011100 blouses 20 -10110011100 workouts 21 -10110011100 tulips 21 -10110011100 subtitles 21 -10110011100 DC-10s 21 -10110011100 hams 21 -10110011100 pastries 21 -10110011100 cherries 21 -10110011100 transplantation 21 -10110011100 rehearsals 21 -10110011100 otters 21 -10110011100 superminicomputers 21 -10110011100 blossoms 22 -10110011100 electrodes 22 -10110011100 guitars 22 -10110011100 excursions 22 -10110011100 loafers 22 -10110011100 fatigues 22 -10110011100 orchids 22 -10110011100 fakes 22 -10110011100 couches 22 -10110011100 waterfalls 22 -10110011100 caskets 23 -10110011100 forklifts 23 -10110011100 portables 23 -10110011100 mortars 23 -10110011100 enclosures 23 -10110011100 headphones 23 -10110011100 pagers 23 -10110011100 miscarriages 23 -10110011100 servers 23 -10110011100 microphones 23 -10110011100 peaches 23 -10110011100 tolls 23 -10110011100 snails 24 -10110011100 toasters 24 -10110011100 fugitives 24 -10110011100 disposables 24 -10110011100 steaks 24 -10110011100 projectors 24 -10110011100 mattresses 24 -10110011100 rags 24 -10110011100 dishwashers 24 -10110011100 napkins 25 -10110011100 lodges 25 -10110011100 cabs 25 -10110011100 stains 25 -10110011100 bumpers 25 -10110011100 hammers 25 -10110011100 miniskirts 26 -10110011100 sequels 26 -10110011100 axes 26 -10110011100 biscuits 26 -10110011100 gunships 26 -10110011100 sirens 26 -10110011100 pillows 26 -10110011100 doughnuts 26 -10110011100 barns 26 -10110011100 stoves 26 -10110011100 sandals 26 -10110011100 rivets 27 -10110011100 lesions 27 -10110011100 paneling 27 -10110011100 PS/2s 27 -10110011100 busts 27 -10110011100 Bibles 27 -10110011100 solos 28 -10110011100 trophies 28 -10110011100 cabins 28 -10110011100 bras 28 -10110011100 camcorders 28 -10110011100 flashlights 28 -10110011100 shotguns 28 -10110011100 pigeons 28 -10110011100 decoys 28 -10110011100 F-15s 28 -10110011100 freezers 28 -10110011100 stockings 28 -10110011100 blowers 28 -10110011100 gondolas 28 -10110011100 marshes 28 -10110011100 violins 29 -10110011100 geese 29 -10110011100 lounges 29 -10110011100 D-rams 29 -10110011100 ionizers 29 -10110011100 trays 29 -10110011100 muffins 29 -10110011100 curfews 29 -10110011100 inputs 30 -10110011100 projectiles 30 -10110011100 hydrocarbons 30 -10110011100 minisupercomputers 30 -10110011100 artworks 30 -10110011100 transistors 30 -10110011100 fuses 31 -10110011100 loudspeakers 31 -10110011100 autographs 31 -10110011100 vests 31 -10110011100 transponders 31 -10110011100 peas 31 -10110011100 noodles 31 -10110011100 creams 31 -10110011100 indemnities 31 -10110011100 mosques 31 -10110011100 handbags 31 -10110011100 irons 31 -10110011100 earrings 32 -10110011100 paste 32 -10110011100 crackers 32 -10110011100 vines 32 -10110011100 burgers 32 -10110011100 plaques 32 -10110011100 briefcases 32 -10110011100 seedlings 32 -10110011100 modems 32 -10110011100 sunflowers 32 -10110011100 skis 33 -10110011100 leeches 33 -10110011100 umbrellas 33 -10110011100 737-300s 33 -10110011100 blimps 33 -10110011100 canals 33 -10110011100 axles 33 -10110011100 constructions 34 -10110011100 nutrients 34 -10110011100 cavities 34 -10110011100 pistols 34 -10110011100 sauces 34 -10110011100 headlights 34 -10110011100 turkeys 34 -10110011100 maids 34 -10110011100 decorations 35 -10110011100 shacks 35 -10110011100 destroyers 35 -10110011100 airbags 35 -10110011100 blanks 35 -10110011100 erythropoietin 35 -10110011100 ATMs 35 -10110011100 cheeses 35 -10110011100 tampons 36 -10110011100 yachts 36 -10110011100 photocopiers 36 -10110011100 dictionaries 36 -10110011100 mammals 36 -10110011100 whistles 36 -10110011100 molds 36 -10110011100 toxins 37 -10110011100 handguns 37 -10110011100 skates 37 -10110011100 insecticides 37 -10110011100 onions 38 -10110011100 pianos 38 -10110011100 modules 39 -10110011100 lawns 39 -10110011100 furs 39 -10110011100 747-400s 39 -10110011100 goggles 40 -10110011100 braces 40 -10110011100 ribbons 40 -10110011100 delinquents 40 -10110011100 lemons 40 -10110011100 bulldozers 41 -10110011100 fountains 41 -10110011100 planets 41 -10110011100 microorganisms 41 -10110011100 cruisers 41 -10110011100 IPOs 41 -10110011100 souvenirs 41 -10110011100 Camaro 41 -10110011100 wolves 42 -10110011100 collars 42 -10110011100 ponds 42 -10110011100 scooters 42 -10110011100 potholes 42 -10110011100 gowns 43 -10110011100 oysters 43 -10110011100 fractures 43 -10110011100 pies 43 -10110011100 kidneys 43 -10110011100 scents 44 -10110011100 huts 44 -10110011100 chromosomes 44 -10110011100 stereos 45 -10110011100 rabbits 45 -10110011100 lions 45 -10110011100 Accords 45 -10110011100 vineyards 45 -10110011100 alligators 46 -10110011100 weddings 46 -10110011100 laptops 47 -10110011100 musicals 47 -10110011100 herbicides 47 -10110011100 eyeglasses 47 -10110011100 interleukin-2 48 -10110011100 salads 48 -10110011100 acids 48 -10110011100 notebooks 48 -10110011100 F-16s 48 -10110011100 soups 48 -10110011100 slacks 48 -10110011100 pacemakers 48 -10110011100 blankets 48 -10110011100 calculators 48 -10110011100 sitcoms 48 -10110011100 takeoffs 48 -10110011100 divorces 49 -10110011100 calendars 49 -10110011100 dyes 49 -10110011100 turtles 49 -10110011100 microbes 50 -10110011100 pizzas 50 -10110011100 tunnels 50 -10110011100 graphs 50 -10110011100 bathrooms 50 -10110011100 propellers 50 -10110011100 carrots 50 -10110011100 BMWs 51 -10110011100 limousines 51 -10110011100 herbs 51 -10110011100 727s 52 -10110011100 razors 52 -10110011100 Jeeps 52 -10110011100 whales 53 -10110011100 sedans 53 -10110011100 condos 53 -10110011100 dinosaurs 53 -10110011100 lubricants 54 -10110011100 menus 54 -10110011100 wrinkles 54 -10110011100 wafers 55 -10110011100 perfumes 55 -10110011100 payloads 55 -10110011100 cages 55 -10110011100 chocolates 55 -10110011100 hoses 55 -10110011100 cartridges 56 -10110011100 taxis 56 -10110011100 camels 57 -10110011100 bikes 57 -10110011100 compressors 58 -10110011100 cakes 59 -10110011100 soaps 59 -10110011100 SE 59 -10110011100 lighters 60 -10110011100 lathes 60 -10110011100 databases 60 -10110011100 detergents 60 -10110011100 spices 60 -10110011100 kitchens 61 -10110011100 mushrooms 61 -10110011100 knives 61 -10110011100 sprinklers 61 -10110011100 barges 62 -10110011100 snacks 62 -10110011100 TVs 63 -10110011100 microcomputers 64 -10110011100 tents 64 -10110011100 runways 64 -10110011100 filers 64 -10110011100 enzymes 65 -10110011100 fries 65 -10110011100 feathers 66 -10110011100 snakes 66 -10110011100 towels 66 -10110011100 roses 66 -10110011100 solvents 66 -10110011100 Thunderbird 67 -10110011100 implants 67 -10110011100 landscapes 69 -10110011100 747s 69 -10110011100 cruises 69 -10110011100 screws 70 -10110011100 ulcers 70 -10110011100 newsstands 72 -10110011100 bricks 73 -10110011100 spreadsheets 73 -10110011100 cigars 74 -10110011100 tablets 74 -10110011100 raisins 75 -10110011100 balloons 75 -10110011100 sunglasses 76 -10110011100 bananas 76 -10110011100 motorcycles 77 -10110011100 vitamins 79 -10110011100 sandwiches 80 -10110011100 comedies 80 -10110011100 hormones 81 -10110011100 fatalities 82 -10110011100 chlorofluorocarbons 82 -10110011100 cups 83 -10110011100 tunes 84 -10110011100 sweaters 86 -10110011100 cereals 86 -10110011100 sneakers 86 -10110011100 envelopes 88 -10110011100 microchips 88 -10110011100 medications 88 -10110011100 pens 89 -10110011100 billboards 90 -10110011100 toilets 90 -10110011100 crystals 90 -10110011100 steroids 91 -10110011100 trademarks 92 -10110011100 groceries 92 -10110011100 meats 93 -10110011100 ambulances 93 -10110011100 launchers 93 -10110011100 fragrances 94 -10110011100 landings 94 -10110011100 pickups 95 -10110011100 bicycles 95 -10110011100 seals 96 -10110011100 needles 96 -10110011100 flavors 98 -10110011100 antibiotics 98 -10110011100 locomotives 99 -10110011100 worms 99 -10110011100 tractors 99 -10110011100 bolts 101 -10110011100 convertibles 102 -10110011100 creatures 102 -10110011100 VCRs 103 -10110011100 hamburgers 105 -10110011100 drums 106 -10110011100 cleaners 107 -10110011100 condominiums 107 -10110011100 lanes 107 -10110011100 airliners 109 -10110011100 sensors 110 -10110011100 beers 110 -10110011100 brochures 110 -10110011100 joints 110 -10110011100 gears 112 -10110011100 bulbs 112 -10110011100 jackets 113 -10110011100 sculptures 113 -10110011100 737s 114 -10110011100 radars 115 -10110011100 scripts 116 -10110011100 videocassettes 116 -10110011100 garments 116 -10110011100 pollutants 118 -10110011100 transplants 118 -10110011100 filters 120 -10110011100 tomatoes 121 -10110011100 oranges 123 -10110011100 cartoons 123 -10110011100 cassettes 123 -10110011100 pigs 124 -10110011100 lakes 125 -10110011100 refrigerators 126 -10110011100 uniforms 126 -10110011100 fashions 126 -10110011100 coats 128 -10110011100 fatigue 129 -10110011100 rats 130 -10110011100 pneumonia 131 -10110011100 molecules 131 -10110011100 costumes 133 -10110011100 dolls 133 -10110011100 hats 133 -10110011100 cancers 140 -10110011100 copyrights 141 -10110011100 tumors 143 -10110011100 dishes 144 -10110011100 shells 145 -10110011100 cookies 150 -10110011100 births 150 -10110011100 galleries 150 -10110011100 apples 152 -10110011100 boots 153 -10110011100 medicines 153 -10110011100 dresses 157 -10110011100 hogs 158 -10110011100 T-shirts 159 -10110011100 diapers 159 -10110011100 condoms 160 -10110011100 radios 160 -10110011100 minivans 161 -10110011100 plates 163 -10110011100 pipes 165 -10110011100 bombers 165 -10110011100 copiers 166 -10110011100 robots 168 -10110011100 diamonds 169 -10110011100 viruses 173 -10110011100 bridges 174 -10110011100 bearings 174 -10110011100 televisions 177 -10110011100 concerts 179 -10110011100 potatoes 180 -10110011100 microprocessors 183 -10110011100 buttons 183 -10110011100 vaccines 184 -10110011100 mice 186 -10110011100 annuities 191 -10110011100 gloves 191 -10110011100 proteins 194 -10110011100 stones 196 -10110011100 infections 198 -10110011100 rocks 201 -10110011100 beverages 202 -10110011100 minicomputers 203 -10110011100 supercomputers 204 -10110011100 lasers 204 -10110011100 tubes 204 -10110011100 PCs 209 -10110011100 cows 212 -10110011100 mainframes 213 -10110011100 jetliners 213 -10110011100 videos 215 -10110011100 valves 218 -10110011100 chickens 221 -10110011100 pesticides 226 -10110011100 weekends 227 -10110011100 glasses 227 -10110011100 vans 230 -10110011100 domestically 237 -10110011100 flowers 237 -10110011100 highways 240 -10110011100 catalogs 240 -10110011100 abortions 241 -10110011100 genes 242 -10110011100 batteries 259 -10110011100 launches 275 -10110011100 bacteria 275 -10110011100 antibodies 280 -10110011100 shirts 282 -10110011100 horses 310 -10110011100 meals 311 -10110011100 submarines 312 -10110011100 automobiles 314 -10110011100 jeans 315 -10110011100 superconductors 316 -10110011100 rockets 322 -10110011100 airplanes 331 -10110011100 variations 334 -10110011100 songs 341 -10110011100 buses 364 -10110011100 eggs 370 -10110011100 defects 375 -10110011100 wines 386 -10110011100 repairs 389 -10110011100 autos 394 -10110011100 boats 409 -10110011100 fighters 412 -10110011100 vessels 426 -10110011100 semiconductors 437 -10110011100 helicopters 445 -10110011100 trains 445 -10110011100 guns 460 -10110011100 roads 462 -10110011100 tapes 466 -10110011100 fires 481 -10110011100 satellites 506 -10110011100 tires 533 -10110011100 toys 540 -10110011100 trips 540 -10110011100 patents 576 -10110011100 paintings 586 -10110011100 cigarettes 595 -10110011100 trees 613 -10110011100 clothes 654 -10110011100 shoes 678 -10110011100 jets 707 -10110011100 surgery 741 -10110011100 cells 873 -10110011100 tickets 880 -10110011100 animals 902 -10110011100 films 1096 -10110011100 ships 1165 -10110011100 movies 1349 -10110011100 engines 1393 -10110011100 flights 1734 -10110011100 trucks 1807 -10110011100 chips 1876 -10110011100 planes 1907 -10110011100 vehicles 2505 -10110011100 machines 2791 -10110011100 drugs 3415 -10110011100 cars 7075 -10110011100 computers 5131 -101100111010 player-rock 1 -101100111010 footswear 1 -101100111010 melees 1 -101100111010 sidekicks 1 -101100111010 camera-recorders 1 -101100111010 circuit. 1 -101100111010 non-powerhouses 1 -101100111010 bow-ties 1 -101100111010 stations. 1 -101100111010 legend-makers 1 -101100111010 non-buff 1 -101100111010 1765-1820 1 -101100111010 Systems. 1 -101100111010 Sat2 1 -101100111010 Sat1 1 -101100111010 missiles-goes 1 -101100111010 aspidistra 1 -101100111010 integers 1 -101100111010 atelier-eyrie 1 -101100111010 crafters 1 -101100111010 programers 1 -101100111010 griper 1 -101100111010 muggees 1 -101100111010 progamming 1 -101100111010 time-slots 1 -101100111010 news-hounds 1 -101100111010 myrmidons 1 -101100111010 labor-image 1 -101100111010 settees 1 -101100111010 GTSs 1 -101100111010 zone-radius 1 -101100111010 gunnysacks 1 -101100111010 docu-drama 1 -101100111010 wallet-watch 1 -101100111010 goalies 1 -101100111010 hyperventilators 1 -101100111010 biogs 1 -101100111010 MetalWear 1 -101100111010 opearations 1 -101100111010 ad-buying 1 -101100111010 newsclips 1 -101100111010 PROGRAMMING 1 -101100111010 playlists 1 -101100111010 abattoir 2 -101100111010 rooters 2 -101100111010 pumper 2 -101100111010 programming. 2 -101100111010 shows. 2 -101100111010 incendiaries 2 -101100111010 sashes 2 -101100111010 windsurfer 2 -101100111010 diethylstilbestrol 2 -101100111010 newswriters 2 -101100111010 whitetails 2 -101100111010 channelers 2 -101100111010 sideboards 2 -101100111010 mid-crop 2 -101100111010 copters 2 -101100111010 druglords 2 -101100111010 1-As 2 -101100111010 tuners 2 -101100111010 big-timers 2 -101100111010 store. 2 -101100111010 non-candidates 2 -101100111010 brutes 2 -101100111010 Kresges 2 -101100111010 Pershing-1Bs 2 -101100111010 mashers 2 -101100111010 tut-tutting 2 -101100111010 sidearm 2 -101100111010 sailings 3 -101100111010 airplay 3 -101100111010 alkalinity 3 -101100111010 rowboats 3 -101100111010 fests 3 -101100111010 cognacs 3 -101100111010 honchos 3 -101100111010 shutouts 3 -101100111010 vanes 3 -101100111010 lunchers 3 -101100111010 holsters 3 -101100111010 substations 3 -101100111010 remodelings 3 -101100111010 semi 4 -101100111010 decanter 4 -101100111010 silencers 4 -101100111010 programing 4 -101100111010 montages 4 -101100111010 2s 4 -101100111010 decal 4 -101100111010 prodigies 4 -101100111010 cloths 4 -101100111010 missles 4 -101100111010 ping 4 -101100111010 carbines 5 -101100111010 concentrators 5 -101100111010 porcelains 5 -101100111010 ventilators 5 -101100111010 stills 5 -101100111010 marques 5 -101100111010 magnifier 5 -101100111010 Ferraris 5 -101100111010 newscasters 5 -101100111010 pronunciations 5 -101100111010 triathlons 5 -101100111010 imipramine 5 -101100111010 firehouses 5 -101100111010 jumper 5 -101100111010 cliques 5 -101100111010 farmhouses 5 -101100111010 757-200s 5 -101100111010 bunks 6 -101100111010 duplexes 6 -101100111010 7-Elevens 6 -101100111010 mitts 6 -101100111010 buggies 6 -101100111010 chauffeurs 6 -101100111010 transceivers 6 -101100111010 tuner 6 -101100111010 fiend 6 -101100111010 strikeouts 6 -101100111010 nightlife 6 -101100111010 scribes 7 -101100111010 fluorescents 7 -101100111010 gyroscopes 7 -101100111010 angler 7 -101100111010 pulpits 7 -101100111010 homilies 7 -101100111010 frocks 7 -101100111010 togs 8 -101100111010 outputs 8 -101100111010 townhouses 8 -101100111010 1As 8 -101100111010 clubhouses 8 -101100111010 bric-a-brac 8 -101100111010 endorsers 8 -101100111010 B-2s 8 -101100111010 lagoons 8 -101100111010 checkouts 8 -101100111010 delicatessens 9 -101100111010 newsrooms 9 -101100111010 finery 9 -101100111010 distributorships 9 -101100111010 A330 10 -101100111010 scrolls 10 -101100111010 anchormen 10 -101100111010 turnstiles 10 -101100111010 tourneys 11 -101100111010 videodisks 11 -101100111010 rinks 11 -101100111010 recitals 11 -101100111010 fonts 11 -101100111010 wearers 12 -101100111010 pawnshops 12 -101100111010 PBXs 12 -101100111010 arcades 12 -101100111010 WNYW-TV 12 -101100111010 secretions 12 -101100111010 stallions 12 -101100111010 Audis 13 -101100111010 mites 13 -101100111010 hotlines 13 -101100111010 piers 14 -101100111010 beacons 14 -101100111010 courthouses 15 -101100111010 villas 15 -101100111010 brigades 16 -101100111010 fireplaces 16 -101100111010 boulevards 16 -101100111010 petals 17 -101100111010 federations 17 -101100111010 carriages 17 -101100111010 tuxedos 18 -101100111010 blackouts 18 -101100111010 cameramen 19 -101100111010 ponies 19 -101100111010 champs 20 -101100111010 storefronts 20 -101100111010 marts 20 -101100111010 marathons 20 -101100111010 chandeliers 22 -101100111010 inns 22 -101100111010 scarves 22 -101100111010 hotel-casinos 23 -101100111010 IIs 24 -101100111010 MD-80s 24 -101100111010 feeders 25 -101100111010 ICBMs 25 -101100111010 casino-hotels 25 -101100111010 bays 26 -101100111010 sawmills 26 -101100111010 hoods 28 -101100111010 subdivisions 29 -101100111010 A-320s 30 -101100111010 weeklies 30 -101100111010 funerals 31 -101100111010 livers 31 -101100111010 saws 32 -101100111010 boroughs 32 -101100111010 airfields 33 -101100111010 depots 34 -101100111010 telecasts 34 -101100111010 subs 35 -101100111010 dairies 35 -101100111010 tabloids 36 -101100111010 pellets 36 -101100111010 evangelists 36 -101100111010 newscasts 37 -101100111010 bedrooms 37 -101100111010 cemeteries 38 -101100111010 waterways 38 -101100111010 routines 39 -101100111010 nightclubs 40 -101100111010 converters 40 -101100111010 rugs 41 -101100111010 garages 43 -101100111010 outings 43 -101100111010 MD-11s 43 -101100111010 subways 44 -101100111010 silos 44 -101100111010 arenas 45 -101100111010 skyscrapers 45 -101100111010 rackets 45 -101100111010 cafes 47 -101100111010 formats 48 -101100111010 tournaments 48 -101100111010 bakeries 50 -101100111010 helmets 56 -101100111010 preachers 57 -101100111010 breakfasts 58 -101100111010 jails 60 -101100111010 bats 61 -101100111010 parlors 61 -101100111010 clocks 62 -101100111010 adoptions 64 -101100111010 pharmacies 64 -101100111010 cafeterias 64 -101100111010 interceptors 64 -101100111010 frequencies 65 -101100111010 pubs 67 -101100111010 receivers 70 -101100111010 suites 74 -101100111010 incinerators 75 -101100111010 classrooms 77 -101100111010 stadiums 77 -101100111010 gardens 86 -101100111010 motels 87 -101100111010 frames 89 -101100111010 specials 98 -101100111010 albums 98 -101100111010 bombings 100 -101100111010 dams 105 -101100111010 bullets 121 -101100111010 dinners 126 -101100111010 showrooms 128 -101100111010 drugstores 129 -101100111010 rentals 136 -101100111010 generators 141 -101100111010 blades 145 -101100111010 libraries 146 -101100111010 lenses 151 -101100111010 balls 161 -101100111010 dealerships 165 -101100111010 resorts 220 -101100111010 ports 224 -101100111010 villages 227 -101100111010 reactors 246 -101100111010 casinos 257 -101100111010 circuits 267 -101100111010 broadcasts 276 -101100111010 bombs 301 -101100111010 counties 305 -101100111010 holes 325 -101100111010 apartments 410 -101100111010 crews 420 -101100111010 windows 432 -101100111010 theaters 449 -101100111010 supermarkets 492 -101100111010 cameras 494 -101100111010 screens 499 -101100111010 franchises 507 -101100111010 tanks 591 -101100111010 spots 632 -101100111010 shops 640 -101100111010 doors 691 -101100111010 outlets 759 -101100111010 commercials 989 -101100111010 factories 1117 -101100111010 magazines 1222 -101100111010 branches 1234 -101100111010 hotels 1259 -101100111010 games 1286 -101100111010 restaurants 1409 -101100111010 missiles 2613 -101100111010 stations 2820 -101100111010 offices 2987 -101100111010 stores 6132 -101100111010 plants 5190 -1011001110110 wargames 1 -1011001110110 superheros 1 -1011001110110 basket-making 1 -1011001110110 Aerotransport 1 -1011001110110 rs 1 -1011001110110 productivity. 1 -1011001110110 consultants-to-be 1 -1011001110110 deflectors 1 -1011001110110 competitiveness. 1 -1011001110110 benefit-payments 1 -1011001110110 mortaring 1 -1011001110110 clatters 1 -1011001110110 Nosadella 1 -1011001110110 ghazi 1 -1011001110110 tumescence 1 -1011001110110 gasifier 1 -1011001110110 guideway 1 -1011001110110 recombinations 1 -1011001110110 Contini-Bonacossi 1 -1011001110110 movie. 1 -1011001110110 fixator 1 -1011001110110 esotericism 1 -1011001110110 infomation 1 -1011001110110 underbody 1 -1011001110110 burn-off 1 -1011001110110 bookmarts 1 -1011001110110 agreements. 1 -1011001110110 muddleheadedness 1 -1011001110110 imperviousness 1 -1011001110110 Wright-wash 1 -1011001110110 plane-building 1 -1011001110110 curlicues 2 -1011001110110 convolutions 2 -1011001110110 reheaters 2 -1011001110110 expo 2 -1011001110110 disinfectants 2 -1011001110110 parsimony 2 -1011001110110 paranoias 2 -1011001110110 investigaton 2 -1011001110110 institution. 2 -1011001110110 churnings 2 -1011001110110 yes-man 2 -1011001110110 harmlessness 2 -1011001110110 Epilady 3 -1011001110110 nobodies 3 -1011001110110 cordials 3 -1011001110110 bunkum 3 -1011001110110 reclusion 3 -1011001110110 co-productions 3 -1011001110110 tight-fistedness 4 -1011001110110 information. 4 -1011001110110 work-week 4 -1011001110110 affability 4 -1011001110110 pasts 5 -1011001110110 joists 6 -1011001110110 industry. 6 -1011001110110 lineups 11 -1011001110110 incorporations 13 -1011001110110 indentures 15 -1011001110110 obscurity 66 -1011001110110 mills 756 -1011001110110 operations 17654 -1011001110110 activities 3753 -10110011101110 3/16ths 1 -10110011101110 1,481,782 1 -10110011101110 conversations. 1 -10110011101110 20-for-one 1 -10110011101110 hostaging 1 -10110011101110 wire-tapping 1 -10110011101110 mebranes 1 -10110011101110 transmitter-receivers 1 -10110011101110 call. 1 -10110011101110 addressability 1 -10110011101110 1-800-937-2000 1 -10110011101110 cards. 2 -10110011101110 handset 2 -10110011101110 Zarzis 2 -10110011101110 Festivas 2 -10110011101110 machine. 2 -10110011101110 decomposing 2 -10110011101110 Giacomettis 2 -10110011101110 tamperings 2 -10110011101110 splitters 2 -10110011101110 Encores 2 -10110011101110 observatories 2 -10110011101110 937.50 2 -10110011101110 3903 2 -10110011101110 marquees 3 -10110011101110 granters 3 -10110011101110 signs. 3 -10110011101110 Golfs 3 -10110011101110 waders 3 -10110011101110 Y-MPs 3 -10110011101110 oxbows 4 -10110011101110 Corollas 4 -10110011101110 monthlies 5 -10110011101110 Toronados 5 -10110011101110 LeBarons 5 -10110011101110 Allantes 5 -10110011101110 snouts 5 -10110011101110 reissues 5 -10110011101110 agonists 5 -10110011101110 manholes 5 -10110011101110 mavens 6 -10110011101110 roadster 6 -10110011101110 HF 6 -10110011101110 billet 6 -10110011101110 marque 6 -10110011101110 11-1 6 -10110011101110 fiends 6 -10110011101110 Dexatrim 6 -10110011101110 Excels 7 -10110011101110 handsets 7 -10110011101110 Sagas 8 -10110011101110 groupie 8 -10110011101110 accelerators 9 -10110011101110 gyros 9 -10110011101110 exteriors 9 -10110011101110 consolidators 10 -10110011101110 Hansa 10 -10110011101110 sockets 11 -10110011101110 lifeboats 13 -10110011101110 J-cars 13 -10110011101110 changeovers 14 -10110011101110 grantors 14 -10110011101110 worthiness 15 -10110011101110 Macintoshes 17 -10110011101110 heavies 17 -10110011101110 vintages 19 -10110011101110 idols 20 -10110011101110 coupes 21 -10110011101110 receptors 21 -10110011101110 kiosks 22 -10110011101110 antigens 22 -10110011101110 grills 23 -10110011101110 loops 23 -10110011101110 titans 25 -10110011101110 Fieros 29 -10110011101110 X-cars 29 -10110011101110 membranes 30 -10110011101110 paraphernalia 30 -10110011101110 vapors 34 -10110011101110 blocs 34 -10110011101110 pods 39 -10110011101110 frigates 46 -10110011101110 poles 60 -10110011101110 subcompacts 69 -10110011101110 757s 69 -10110011101110 booths 70 -10110011101110 solicitations 81 -10110011101110 introductions 95 -10110011101110 directories 109 -10110011101110 inhabitants 118 -10110011101110 bands 148 -10110011101110 productions 183 -10110011101110 rings 247 -10110011101110 cans 269 -10110011101110 islands 276 -10110011101110 telephones 311 -10110011101110 switches 342 -10110011101110 territories 393 -10110011101110 phones 427 -10110011101110 boxes 458 -10110011101110 bags 625 -10110011101110 subscribers 850 -10110011101110 teams 875 -10110011101110 divisions 1459 -10110011101110 subsidiaries 1565 -10110011101110 cards 1629 -10110011101110 networks 1959 -10110011101110 models 3037 -10110011101110 units 7724 -10110011101110 lines 3766 -10110011101111 fluttered 1 -10110011101111 tourists. 1 -10110011101111 holders-in-waiting 1 -10110011101111 pipe-fabricators 1 -10110011101111 A15s 1 -10110011101111 chlorides 1 -10110011101111 redevelopments 1 -10110011101111 silos. 1 -10110011101111 owner-developers 1 -10110011101111 smelting-works 1 -10110011101111 Euroratings 1 -10110011101111 nutcase 1 -10110011101111 miniplants 1 -10110011101111 refuelings 1 -10110011101111 admittances 1 -10110011101111 Sheratons 1 -10110011101111 landform 1 -10110011101111 ArgoSystems 1 -10110011101111 tumblers 2 -10110011101111 baronies 2 -10110011101111 R-21 2 -10110011101111 landholder 2 -10110011101111 facilties 2 -10110011101111 ones. 2 -10110011101111 hostelries 2 -10110011101111 foulups 2 -10110011101111 pituitaries 2 -10110011101111 scythes 2 -10110011101111 decisionmakers 2 -10110011101111 bloodhounds 2 -10110011101111 meddler 2 -10110011101111 biplanes 2 -10110011101111 Playbill 2 -10110011101111 vacuity 2 -10110011101111 buldings 3 -10110011101111 brushers 3 -10110011101111 reflectors 3 -10110011101111 scramblers 3 -10110011101111 pastorals 3 -10110011101111 permeation 3 -10110011101111 ovals 3 -10110011101111 gewgaws 3 -10110011101111 down-phases 3 -10110011101111 fetes 3 -10110011101111 virtuosos 3 -10110011101111 rainwear 3 -10110011101111 ex-guards 4 -10110011101111 situps 4 -10110011101111 arks 4 -10110011101111 counteradvertising 4 -10110011101111 expressways 4 -10110011101111 oversights 4 -10110011101111 inflations 4 -10110011101111 songbirds 4 -10110011101111 products. 4 -10110011101111 nationalisms 4 -10110011101111 punchers 4 -10110011101111 digester 4 -10110011101111 hemorrhages 5 -10110011101111 vocalists 5 -10110011101111 guises 5 -10110011101111 tarts 5 -10110011101111 champagnes 5 -10110011101111 guzzlers 5 -10110011101111 scoreboards 5 -10110011101111 specters 5 -10110011101111 facilites 5 -10110011101111 ballrooms 6 -10110011101111 transferees 6 -10110011101111 intellects 6 -10110011101111 wrapper 6 -10110011101111 isolationists 7 -10110011101111 tributaries 7 -10110011101111 galas 7 -10110011101111 healers 7 -10110011101111 roasts 7 -10110011101111 infrastructures 7 -10110011101111 inpatients 7 -10110011101111 confections 8 -10110011101111 assemblymen 8 -10110011101111 standbys 9 -10110011101111 MD-88s 9 -10110011101111 careerists 10 -10110011101111 impostors 10 -10110011101111 cubicles 10 -10110011101111 genres 10 -10110011101111 giver 11 -10110011101111 imprints 11 -10110011101111 epics 11 -10110011101111 battlegrounds 12 -10110011101111 kilns 12 -10110011101111 basins 13 -10110011101111 aquifers 13 -10110011101111 banquets 13 -10110011101111 reliefs 14 -10110011101111 quarries 14 -10110011101111 laundries 14 -10110011101111 gizmos 14 -10110011101111 chestnuts 14 -10110011101111 pavilions 14 -10110011101111 junkets 15 -10110011101111 pathways 15 -10110011101111 mints 17 -10110011101111 intestine 17 -10110011101111 blockers 18 -10110011101111 buns 18 -10110011101111 reefs 19 -10110011101111 eateries 20 -10110011101111 nurseries 23 -10110011101111 antagonists 26 -10110011101111 high-rises 27 -10110011101111 intersections 28 -10110011101111 freeways 31 -10110011101111 ensembles 31 -10110011101111 groves 32 -10110011101111 switchboards 32 -10110011101111 hybrids 35 -10110011101111 reservoirs 36 -10110011101111 plantations 38 -10110011101111 tycoons 39 -10110011101111 landmarks 40 -10110011101111 compacts 42 -10110011101111 contaminants 43 -10110011101111 convoys 43 -10110011101111 foul-ups 43 -10110011101111 alleys 44 -10110011101111 cylinders 45 -10110011101111 boilers 48 -10110011101111 workplaces 49 -10110011101111 givers 51 -10110011101111 empires 54 -10110011101111 periodicals 56 -10110011101111 conductors 59 -10110011101111 foodstuffs 66 -10110011101111 organisms 70 -10110011101111 turbines 83 -10110011101111 establishments 94 -10110011101111 complexes 104 -10110011101111 outfits 112 -10110011101111 particles 117 -10110011101111 fleets 118 -10110011101111 start-ups 126 -10110011101111 landfills 128 -10110011101111 destinations 139 -10110011101111 hubs 144 -10110011101111 platforms 151 -10110011101111 conglomerates 154 -10110011101111 constituencies 174 -10110011101111 towers 178 -10110011101111 installations 178 -10110011101111 attractions 209 -10110011101111 forests 216 -10110011101111 rigs 235 -10110011101111 beds 249 -10110011101111 refineries 249 -10110011101111 wastes 271 -10110011101111 substances 289 -10110011101111 compounds 368 -10110011101111 labs 372 -10110011101111 farms 412 -10110011101111 wells 448 -10110011101111 giants 493 -10110011101111 channels 500 -10110011101111 towns 535 -10110011101111 locations 579 -10110011101111 crops 753 -10110011101111 airports 805 -10110011101111 routes 854 -10110011101111 communities 865 -10110011101111 sites 925 -10110011101111 chains 1052 -10110011101111 fields 1166 -10110011101111 brands 1232 -10110011101111 buildings 1532 -10110011101111 ones 2577 -10110011101111 properties 2682 -10110011101111 industries 3015 -10110011101111 facilities 3120 -10110011101111 projects 4007 -10110011101111 businesses 7990 -101100111100 intemperances 1 -101100111100 cash-prices 1 -101100111100 denominated-debt 1 -101100111100 trading. 1 -101100111100 specialities 1 -101100111100 mucked 1 -101100111100 +56 1 -101100111100 originiated 1 -101100111100 .................................. 1 -101100111100 selectors 1 -101100111100 uncouple 1 -101100111100 undewritings 1 -101100111100 marekts 1 -101100111100 vernus 2 -101100111100 seats. 2 -101100111100 steppe 3 -101100111100 depreciations 3 -101100111100 inconvertibility 3 -101100111100 bathhouses 4 -101100111100 system. 7 -101100111100 picker 18 -101100111100 bourses 20 -101100111100 marketplaces 26 -101100111100 newswires 34 -101100111100 pickers 37 -101100111100 championships 45 -101100111100 translations 87 -101100111100 pits 342 -101100111100 markets 16963 -101100111100 exchanges 2136 -1011001111010 P-3-G 1 -1011001111010 ancecdote 1 -1011001111010 electees 1 -1011001111010 materials. 1 -1011001111010 Parkoscope 1 -1011001111010 soures 1 -1011001111010 Revoked 1 -1011001111010 shirtwaists 1 -1011001111010 Safavids 1 -1011001111010 languorously 1 -1011001111010 Wants-It-Gets-It 1 -1011001111010 mini-city 1 -1011001111010 INCUBATORS 1 -1011001111010 biotherapeutics 1 -1011001111010 non-books 1 -1011001111010 oblongs 1 -1011001111010 occassions 1 -1011001111010 provision. 1 -1011001111010 stores. 1 -1011001111010 shinbone 1 -1011001111010 high-technologies 1 -1011001111010 description. 1 -1011001111010 G-notes 1 -1011001111010 REMICs 2 -1011001111010 fakers 2 -1011001111010 plusses 2 -1011001111010 tracery 2 -1011001111010 appetit 2 -1011001111010 press-conference 2 -1011001111010 Mafiosi 2 -1011001111010 magnetometers 2 -1011001111010 logic. 2 -1011001111010 birches 2 -1011001111010 intruments 2 -1011001111010 usages 2 -1011001111010 hirees 3 -1011001111010 high-flyers 3 -1011001111010 Heaney 3 -1011001111010 wish-lists 3 -1011001111010 duos 3 -1011001111010 plebiscites 3 -1011001111010 anti-virals 4 -1011001111010 riffs 4 -1011001111010 subgroup 6 -1011001111010 subindexes 6 -1011001111010 gasses 7 -1011001111010 registries 7 -1011001111010 stock-pickers 8 -1011001111010 tranches 17 -1011001111010 behemoths 18 -1011001111010 underwritings 121 -1011001111010 advancers 145 -1011001111010 financings 214 -1011001111010 listings 298 -1011001111010 decliners 354 -1011001111010 auctions 400 -1011001111010 gainers 570 -1011001111010 offerings 1781 -1011001111010 issues 16468 -1011001111011 tetrafluoride 1 -1011001111011 tassels 1 -1011001111011 menders 1 -1011001111011 SCANTECH 1 -1011001111011 Euroissues 1 -1011001111011 hoers 1 -1011001111011 bohemias 1 -1011001111011 supermicro 1 -1011001111011 overdog 1 -1011001111011 Furakawa 1 -1011001111011 CRESTED 1 -1011001111011 entrepreneur-scientist 1 -1011001111011 potage 1 -1011001111011 babblings 1 -1011001111011 hymnals 1 -1011001111011 imagers 1 -1011001111011 oxidase 1 -1011001111011 rootworms 1 -1011001111011 debunkers 1 -1011001111011 exists. 1 -1011001111011 sugarers 1 -1011001111011 likker 1 -1011001111011 beeches 1 -1011001111011 marmots 1 -1011001111011 Citicard 1 -1011001111011 bollworm 1 -1011001111011 overmanaged 1 -1011001111011 rod-and-bar 1 -1011001111011 mega-lawyering 1 -1011001111011 scampi 1 -1011001111011 chronometer 1 -1011001111011 extra-pricey 1 -1011001111011 tikka 1 -1011001111011 quantization 1 -1011001111011 childnapping 1 -1011001111011 percolator 1 -1011001111011 state-house 1 -1011001111011 bug-free 2 -1011001111011 companys 2 -1011001111011 bluegills 2 -1011001111011 odalisque 2 -1011001111011 whiteners 2 -1011001111011 highflyers 2 -1011001111011 386/PC 2 -1011001111011 aureus 2 -1011001111011 pone 2 -1011001111011 non-financials 2 -1011001111011 horticulturists 2 -1011001111011 politics. 2 -1011001111011 ropers 2 -1011001111011 culm 2 -1011001111011 Fish-n-Fool 2 -1011001111011 Potpourri 2 -1011001111011 stimulator 2 -1011001111011 watchbands 3 -1011001111011 oars 3 -1011001111011 calumny 3 -1011001111011 500s 3 -1011001111011 jackasses 3 -1011001111011 popper 3 -1011001111011 citrate 3 -1011001111011 giblets 3 -1011001111011 vitrines 3 -1011001111011 stethoscopes 3 -1011001111011 borer 4 -1011001111011 dibromide 4 -1011001111011 narcissism 4 -1011001111011 bosons 4 -1011001111011 borers 4 -1011001111011 vertigo 4 -1011001111011 denims 4 -1011001111011 Unicer 4 -1011001111011 Dough 5 -1011001111011 dispersants 5 -1011001111011 discotheques 5 -1011001111011 stews 6 -1011001111011 bodegas 6 -1011001111011 cheeseburgers 6 -1011001111011 companies. 6 -1011001111011 Parkers 9 -1011001111011 cathodes 9 -1011001111011 syrups 9 -1011001111011 oncogenes 10 -1011001111011 Volkswagens 12 -1011001111011 rustlers 14 -1011001111011 swimsuits 15 -1011001111011 ledgers 18 -1011001111011 tortillas 19 -1011001111011 carcasses 20 -1011001111011 perpetuals 26 -1011001111011 Zeitung 27 -1011001111011 paddies 28 -1011001111011 raisers 34 -1011001111011 beets 35 -1011001111011 jockeys 38 -1011001111011 cyclicals 41 -1011001111011 oxides 41 -1011001111011 MLPs 51 -1011001111011 blue-chips 78 -1011001111011 crudes 94 -1011001111011 medals 102 -1011001111011 bellies 141 -1011001111011 steels 144 -1011001111011 electricals 149 -1011001111011 grains 219 -1011001111011 beans 256 -1011001111011 coins 436 -1011001111011 stocks 15761 -1011001111011 mines 1012 -1011001111100 milennium 1 -1011001111100 symbol-AMSR 1 -1011001111100 uncooperativeness 1 -1011001111100 blurriest 1 -1011001111100 fundholdings 1 -1011001111100 long-shunned 1 -1011001111100 near-neighbors 1 -1011001111100 youngers 1 -1011001111100 pine-cone 1 -1011001111100 backswings 1 -1011001111100 intermediate- 1 -1011001111100 non-Britishness 1 -1011001111100 assiduousness 1 -1011001111100 singsongy 1 -1011001111100 Skodas 1 -1011001111100 279.85 1 -1011001111100 M.R.S. 1 -1011001111100 half-socks 1 -1011001111100 brioche 1 -1011001111100 trouncings 1 -1011001111100 harems 1 -1011001111100 shoulder. 1 -1011001111100 orneriness 1 -1011001111100 cost-attractiveness 1 -1011001111100 tanktops 1 -1011001111100 sheep. 1 -1011001111100 limosines 1 -1011001111100 vexations 1 -1011001111100 shortwaves 1 -1011001111100 credibility. 1 -1011001111100 Webcors 1 -1011001111100 supply-runs 1 -1011001111100 USC-UCLA 1 -1011001111100 hyper-hyped 1 -1011001111100 90-win 1 -1011001111100 argument. 1 -1011001111100 innoculations 1 -1011001111100 palatability 1 -1011001111100 guaranteees 1 -1011001111100 sellers-who 1 -1011001111100 authoress 1 -1011001111100 promulgators 1 -1011001111100 commitment-taking 1 -1011001111100 lingual 1 -1011001111100 corporeality 1 -1011001111100 fruitiness 1 -1011001111100 impregnability 1 -1011001111100 spittle 1 -1011001111100 self-condemnation 1 -1011001111100 menfolk 1 -1011001111100 leashes 1 -1011001111100 britches 1 -1011001111100 clubmate 1 -1011001111100 Chineseness 1 -1011001111100 Rocksports 1 -1011001111100 Lordships 1 -1011001111100 Hamlet-in-residence 1 -1011001111100 non-racism 1 -1011001111100 25-footer 1 -1011001111100 infancies 1 -1011001111100 caldrons 1 -1011001111100 grindstones 1 -1011001111100 sackers 1 -1011001111100 platinum- 1 -1011001111100 standfastness 1 -1011001111100 incorporators 1 -1011001111100 huppa 1 -1011001111100 indulgences. 1 -1011001111100 fuel-guzzlers 1 -1011001111100 multimixers 1 -1011001111100 fellow-traders 1 -1011001111100 franschisees 1 -1011001111100 clickers 1 -1011001111100 interruptaholism 1 -1011001111100 hidey-holes 1 -1011001111100 uteruses 1 -1011001111100 down-hole 1 -1011001111100 co-nationalists 1 -1011001111100 apartments. 1 -1011001111100 incumbencies 1 -1011001111100 victimhood 1 -1011001111100 retinyl-palmitated 1 -1011001111100 bedpost 1 -1011001111100 benfits 1 -1011001111100 reincarnations 1 -1011001111100 working- 1 -1011001111100 traffic-systems 1 -1011001111100 leaving. 1 -1011001111100 indirectness 1 -1011001111100 skivvies 1 -1011001111100 crassest 1 -1011001111100 particpants 1 -1011001111100 jammies 1 -1011001111100 production. 1 -1011001111100 moustaches 1 -1011001111100 shirttails 1 -1011001111100 point-money 1 -1011001111100 ineligibility 1 -1011001111100 high-jumpers 1 -1011001111100 dissonances 2 -1011001111100 884.93 2 -1011001111100 wilts 2 -1011001111100 witchery 2 -1011001111100 cantors 2 -1011001111100 railheads 2 -1011001111100 repugnance 2 -1011001111100 SH-04 2 -1011001111100 forensics 2 -1011001111100 partners. 2 -1011001111100 coater 2 -1011001111100 948.40 2 -1011001111100 840.72 2 -1011001111100 low-fee 2 -1011001111100 monarchists 2 -1011001111100 railbikes 2 -1011001111100 seepages 2 -1011001111100 cultivar 2 -1011001111100 300s 2 -1011001111100 wineglasses 2 -1011001111100 valises 2 -1011001111100 sniggers 2 -1011001111100 VOLKSFUERSORGE 2 -1011001111100 mantels 2 -1011001111100 penthouses 2 -1011001111100 daddies 2 -1011001111100 bedtimes 2 -1011001111100 ponchos 2 -1011001111100 young-old 2 -1011001111100 Scotches 2 -1011001111100 chart-toppers 2 -1011001111100 853.13 2 -1011001111100 JT8Ds 2 -1011001111100 1056.38 2 -1011001111100 uncollectables 2 -1011001111100 1926.2 2 -1011001111100 prognoses 3 -1011001111100 lifespans 3 -1011001111100 passer 3 -1011001111100 district- 3 -1011001111100 967.49 3 -1011001111100 Tridents 3 -1011001111100 major- 3 -1011001111100 rotations 3 -1011001111100 co-religionists 3 -1011001111100 961.48 3 -1011001111100 Scud-Bs 3 -1011001111100 identifiers 3 -1011001111100 dissertations 3 -1011001111100 thermostats 3 -1011001111100 18936.76 3 -1011001111100 ids 3 -1011001111100 Seattlites 3 -1011001111100 lovemaking 3 -1011001111100 duffs 4 -1011001111100 navels 4 -1011001111100 964.64 4 -1011001111100 puritanism 4 -1011001111100 Boeings 4 -1011001111100 cutthroats 4 -1011001111100 2754.56 4 -1011001111100 reshufflings 4 -1011001111100 hearths 4 -1011001111100 orations 4 -1011001111100 1532.01 4 -1011001111100 mutinies 5 -1011001111100 1344.06 5 -1011001111100 hooves 5 -1011001111100 sluices 5 -1011001111100 phlegm 5 -1011001111100 T-tops 5 -1011001111100 2680.48 6 -1011001111100 tyrannies 6 -1011001111100 mariners 6 -1011001111100 toenails 6 -1011001111100 execs 6 -1011001111100 1040A 6 -1011001111100 cabernets 6 -1011001111100 substrates 6 -1011001111100 erections 6 -1011001111100 foreheads 7 -1011001111100 casters 7 -1011001111100 distinctiveness 7 -1011001111100 turbans 7 -1011001111100 tenures 7 -1011001111100 driveways 8 -1011001111100 moons 8 -1011001111100 exertions 8 -1011001111100 tantrums 8 -1011001111100 turnovers 9 -1011001111100 frosts 9 -1011001111100 backyards 9 -1011001111100 boardings 10 -1011001111100 treks 10 -1011001111100 scorers 11 -1011001111100 parities 11 -1011001111100 internships 11 -1011001111100 electorates 11 -1011001111100 antennae 11 -1011001111100 paws 12 -1011001111100 Volvos 12 -1011001111100 beachheads 12 -1011001111100 1955.57 13 -1011001111100 Premiers 13 -1011001111100 publics 13 -1011001111100 Cokes 13 -1011001111100 stools 13 -1011001111100 lockers 14 -1011001111100 eyeballs 14 -1011001111100 checkbooks 15 -1011001111100 W-4s 15 -1011001111100 shake-ups 15 -1011001111100 sorties 15 -1011001111100 mailboxes 15 -1011001111100 droppings 16 -1011001111100 consciences 16 -1011001111100 surnames 16 -1011001111100 homicides 16 -1011001111100 faiths 18 -1011001111100 debuts 18 -1011001111100 livelihoods 20 -1011001111100 bachelors 20 -1011001111100 birthdays 20 -1011001111100 candidacies 22 -1011001111100 weightings 22 -1011001111100 lifetimes 23 -1011001111100 stomachs 24 -1011001111100 canvases 39 -1011001111100 friendships 40 -1011001111100 70s 41 -1011001111100 80s 42 -1011001111100 wallets 43 -1011001111100 skins 44 -1011001111100 pencils 45 -1011001111100 60s 47 -1011001111100 pastures 51 -1011001111100 stints 55 -1011001111100 necks 56 -1011001111100 dwellings 61 -1011001111100 diets 67 -1011001111100 inventions 68 -1011001111100 passports 69 -1011001111100 50s 72 -1011001111100 mouths 74 -1011001111100 wares 78 -1011001111100 residences 89 -1011001111100 egos 91 -1011001111100 noses 95 -1011001111100 heights 100 -1011001111100 paychecks 106 -1011001111100 horns 110 -1011001111100 entrants 113 -1011001111100 arrivals 117 -1011001111100 reputations 119 -1011001111100 herds 124 -1011001111100 40s 129 -1011001111100 20s 149 -1011001111100 30s 157 -1011001111100 peaks 171 -1011001111100 desks 174 -1011001111100 vacancies 215 -1011001111100 vacations 256 -1011001111100 careers 353 -1011001111100 titles 427 -1011001111100 performers 434 -1011001111100 roles 499 -1011001111100 lows 712 -1011001111100 highs 908 -1011001111100 portfolios 958 -1011001111100 posts 1079 -1011001111100 homes 2050 -1011001111100 positions 3568 -1011001111100 jobs 5973 -1011001111100 investments 4449 -1011001111101 Anne-Caroline 1 -1011001111101 1,528,800 1 -1011001111101 verifications 1 -1011001111101 Supertitles 1 -1011001111101 properties.Revenue 1 -1011001111101 bladders 1 -1011001111101 ENIChem 1 -1011001111101 218,740 1 -1011001111101 spinnaker 1 -1011001111101 lilts 1 -1011001111101 stiff-jointed 1 -1011001111101 189,474 1 -1011001111101 25,953 1 -1011001111101 scorches 1 -1011001111101 Bi-Invest 1 -1011001111101 steak-and-fries 1 -1011001111101 571,612 1 -1011001111101 693,750 1 -1011001111101 under-investment 1 -1011001111101 lobbyists. 1 -1011001111101 chemophobics 1 -1011001111101 show-doctors 1 -1011001111101 22,185 1 -1011001111101 294,641 1 -1011001111101 dignity. 1 -1011001111101 3,831 1 -1011001111101 733,332 1 -1011001111101 knapsacks 1 -1011001111101 1.5048 1 -1011001111101 1,681,026 1 -1011001111101 whistles. 1 -1011001111101 lifejackets 1 -1011001111101 let's-have-your-idea-on-this-Jack 1 -1011001111101 WGBS-TV 1 -1011001111101 forcola-maker 1 -1011001111101 gondola-builder 1 -1011001111101 253,907 1 -1011001111101 fascism. 1 -1011001111101 77,422 1 -1011001111101 988,160 1 -1011001111101 25,174 1 -1011001111101 diversifiers 1 -1011001111101 160,998,000 1 -1011001111101 chicanos 1 -1011001111101 227,304 1 -1011001111101 Acailandia 1 -1011001111101 inflation. 1 -1011001111101 quasi-capital 1 -1011001111101 ROOTS 1 -1011001111101 Gorbachev. 1 -1011001111101 strychnine 1 -1011001111101 185,904 1 -1011001111101 512K 1 -1011001111101 Continuance 1 -1011001111101 dead-endsville 1 -1011001111101 Kaffirs 1 -1011001111101 1,259 1 -1011001111101 199,246 1 -1011001111101 WTVH-TV 1 -1011001111101 colliers 1 -1011001111101 368,680 1 -1011001111101 18,936 1 -1011001111101 Lee. 1 -1011001111101 3,336 1 -1011001111101 earflaps 1 -1011001111101 salemen 1 -1011001111101 Chiat/Day. 1 -1011001111101 VICTORIES 1 -1011001111101 stayaways 1 -1011001111101 client-getters 1 -1011001111101 25,538 1 -1011001111101 conjurers 1 -1011001111101 perfomers 1 -1011001111101 nationalism. 1 -1011001111101 pink-cheekers 1 -1011001111101 Gambit 1 -1011001111101 papin 1 -1011001111101 track-record 1 -1011001111101 L.F.Rothschild 1 -1011001111101 1970-1980 1 -1011001111101 zucchinis 1 -1011001111101 psycho-assassination 1 -1011001111101 187,410 1 -1011001111101 612,309 1 -1011001111101 183,448,883 1 -1011001111101 non-professionals 1 -1011001111101 7,829,493 1 -1011001111101 pantheons 1 -1011001111101 133,414 1 -1011001111101 LaserTripter 1 -1011001111101 WFAA-TV 1 -1011001111101 pharamaceuticals 1 -1011001111101 3,247 1 -1011001111101 headscarfs 1 -1011001111101 TSL 1 -1011001111101 Willys-Overland 1 -1011001111101 1,072,851 1 -1011001111101 127,859 1 -1011001111101 Road. 1 -1011001111101 inflation-maker 1 -1011001111101 spies. 1 -1011001111101 dreamboats 1 -1011001111101 Pyramus 1 -1011001111101 fretters 1 -1011001111101 12,103 1 -1011001111101 nonrelatives 1 -1011001111101 Boreland 1 -1011001111101 pompadours 1 -1011001111101 142.67 1 -1011001111101 WNEW-TV 2 -1011001111101 businesses. 2 -1011001111101 advisers. 2 -1011001111101 sk 2 -1011001111101 yup 2 -1011001111101 auxiliaries 2 -1011001111101 Twinsies 2 -1011001111101 McMuffins 2 -1011001111101 business-getter 2 -1011001111101 arch-rivals 2 -1011001111101 crumpets 2 -1011001111101 priority. 2 -1011001111101 streetfighters 2 -1011001111101 commmission 2 -1011001111101 acquisitiveness 2 -1011001111101 Remingtons 2 -1011001111101 WTLV-TV 2 -1011001111101 opportunies 2 -1011001111101 plutocracy 2 -1011001111101 economist-kings 2 -1011001111101 quislings 2 -1011001111101 honeymoons 2 -1011001111101 Dems 2 -1011001111101 65-year-olds 3 -1011001111101 Bums 3 -1011001111101 workbenches 3 -1011001111101 yucks 3 -1011001111101 XT-7 3 -1011001111101 paymasters 3 -1011001111101 kinfolk 3 -1011001111101 Slavs 3 -1011001111101 denominators 3 -1011001111101 lordships 3 -1011001111101 theatres 3 -1011001111101 compilers 4 -1011001111101 arraignments 4 -1011001111101 Assumptions 4 -1011001111101 milers 4 -1011001111101 legation 4 -1011001111101 kilts 4 -1011001111101 self-interests 4 -1011001111101 scorecards 4 -1011001111101 backsides 4 -1011001111101 bootstraps 5 -1011001111101 Mau 5 -1011001111101 bugaboos 5 -1011001111101 rearrangements 5 -1011001111101 legwork 6 -1011001111101 newsmagazine 7 -1011001111101 hairdos 7 -1011001111101 marksmanship 7 -1011001111101 gerrymanders 7 -1011001111101 huffed 7 -1011001111101 toils 8 -1011001111101 domains 11 -1011001111101 moorings 11 -1011001111101 fluency 13 -1011001111101 cockpits 13 -1011001111101 larvae 14 -1011001111101 fowl 14 -1011001111101 designees 16 -1011001111101 doctorates 19 -1011001111101 attentions 19 -1011001111101 consulates 20 -1011001111101 environs 21 -1011001111101 imaginations 35 -1011001111101 labors 37 -1011001111101 chests 37 -1011001111101 tongues 39 -1011001111101 pocketbooks 42 -1011001111101 impunity 52 -1011001111101 stockholdings 53 -1011001111101 throats 55 -1011001111101 shareholdings 73 -1011001111101 shores 106 -1011001111101 origins 147 -1011001111101 roots 380 -1011001111101 pockets 407 -1011001111101 minds 663 -1011001111101 stakes 1052 -1011001111101 participation 1127 -1011001111101 lives 2066 -1011001111101 holdings 3539 -1011001111101 interests 6125 -1011001111110 Panelists 1 -1011001111110 doomsdayer 1 -1011001111110 106.45 1 -1011001111110 Wescoast 1 -1011001111110 prisoners. 1 -1011001111110 109.01 1 -1011001111110 Kaujuitoq 1 -1011001111110 1,873 1 -1011001111110 grinches 1 -1011001111110 106.125 1 -1011001111110 window-dressed 1 -1011001111110 256,567 1 -1011001111110 you-know 1 -1011001111110 104.725 1 -1011001111110 1,767,585 1 -1011001111110 minelayers 1 -1011001111110 co-dependency 1 -1011001111110 recreations 2 -1011001111110 staginess 2 -1011001111110 re-imports 2 -1011001111110 salutations 2 -1011001111110 irremediably 2 -1011001111110 Dimetane 2 -1011001111110 product-mix 2 -1011001111110 inkblots 2 -1011001111110 presses. 2 -1011001111110 liniment 2 -1011001111110 subcomponents 2 -1011001111110 incisiveness 2 -1011001111110 teleconferences 2 -1011001111110 claret 2 -1011001111110 corns 3 -1011001111110 primitivism 3 -1011001111110 supplication 3 -1011001111110 dispassion 3 -1011001111110 debt. 3 -1011001111110 submersibles 3 -1011001111110 bosoms 3 -1011001111110 Gebr 3 -1011001111110 customization 4 -1011001111110 claptrap 4 -1011001111110 ACOG 4 -1011001111110 inaccessibility 4 -1011001111110 Amerco 4 -1011001111110 gruel 5 -1011001111110 scarcities 5 -1011001111110 artificiality 5 -1011001111110 felines 5 -1011001111110 mendacity 6 -1011001111110 informality 7 -1011001111110 elan 7 -1011001111110 9370s 7 -1011001111110 masterworks 8 -1011001111110 bemusement 9 -1011001111110 cornstarch 9 -1011001111110 overfunding 10 -1011001111110 tans 10 -1011001111110 WOR-TV 10 -1011001111110 castoffs 11 -1011001111110 boxcars 11 -1011001111110 plausibility 13 -1011001111110 poignancy 13 -1011001111110 radials 13 -1011001111110 condescension 14 -1011001111110 doorways 19 -1011001111110 horizons 57 -1011001111110 infancy 57 -1011001111110 coffers 122 -1011001111110 loads 189 -1011001111110 receivables 354 -1011001111110 certificates 1088 -1011001111110 debts 1118 -1011001111110 obligations 1229 -1011001111110 liabilities 1433 -1011001111110 assets 14404 -1011001111110 deposits 2569 -1011001111111 copy-protection 1 -1011001111111 acheat 1 -1011001111111 camp. 1 -1011001111111 interest-contracts 1 -1011001111111 Eurocredits 1 -1011001111111 mortgates 1 -1011001111111 loans-amounting 1 -1011001111111 bondsmanship 1 -1011001111111 festers 1 -1011001111111 T0023 1 -1011001111111 324,300 1 -1011001111111 megastructures 1 -1011001111111 6/30/89 1 -1011001111111 660,114 1 -1011001111111 Aboriginality 1 -1011001111111 1980-1986 2 -1011001111111 bloodstock 2 -1011001111111 econony 2 -1011001111111 countervail 2 -1011001111111 office-mates 2 -1011001111111 non-solutions 2 -1011001111111 acquisitor 2 -1011001111111 expedients 2 -1011001111111 manfacturing 2 -1011001111111 exactness 2 -1011001111111 coinsurers 2 -1011001111111 peonies 2 -1011001111111 altars 2 -1011001111111 recentralization 2 -1011001111111 deactivation 2 -1011001111111 crematoriums 2 -1011001111111 blackface 3 -1011001111111 ringers 3 -1011001111111 assays 3 -1011001111111 frontage 3 -1011001111111 twos 3 -1011001111111 stargazing 3 -1011001111111 mimickry 3 -1011001111111 PAC-giving 3 -1011001111111 attributions 3 -1011001111111 disinvestments 4 -1011001111111 copter 4 -1011001111111 galleons 4 -1011001111111 servicers 4 -1011001111111 ravioli 4 -1011001111111 homesteads 5 -1011001111111 blanc 5 -1011001111111 lobes 5 -1011001111111 weeknights 5 -1011001111111 roll-ups 5 -1011001111111 seawater 5 -1011001111111 music-making 6 -1011001111111 margaritas 6 -1011001111111 grapevines 6 -1011001111111 pedestals 7 -1011001111111 pullbacks 8 -1011001111111 lendings 9 -1011001111111 solver 9 -1011001111111 IDBs 10 -1011001111111 mortages 11 -1011001111111 petrodollars 20 -1011001111111 vaults 34 -1011001111111 ARMs 76 -1011001111111 grenades 76 -1011001111111 borrowings 663 -1011001111111 loans 11412 -1011001111111 mortgages 2203 -10110100 oficials 1 -10110100 motorcar 1 -10110100 SHAKESPEARE 1 -10110100 LITCHI 1 -10110100 PURPORTED 1 -10110100 REALISTIC 1 -10110100 rewired 1 -10110100 hairdryer 1 -10110100 siderographer 1 -10110100 TANKER 1 -10110100 junkheap 1 -10110100 gauss 1 -10110100 PRAYER 1 -10110100 girded 1 -10110100 HOME-COMPUTER 1 -10110100 430-seat 1 -10110100 Vocabulary 1 -10110100 Fant 1 -10110100 Batubara 1 -10110100 book-burner 1 -10110100 Hula-Hoop 1 -10110100 Namaliu 1 -10110100 Guihua 1 -10110100 Abdel-Karim 1 -10110100 727-200s 1 -10110100 HEARTY 1 -10110100 Cajunism 1 -10110100 price-setter 1 -10110100 unflattered 1 -10110100 Supersaga 1 -10110100 RentCorp. 1 -10110100 Nbagui 1 -10110100 FORESIGHT 1 -10110100 heydey 1 -10110100 Regencys 1 -10110100 fresh-skinned 1 -10110100 12-C 1 -10110100 quasi-marriage-broker 1 -10110100 Memorandum 1 -10110100 moneyloser 1 -10110100 FUND-RAISER 1 -10110100 SURROGATE 1 -10110100 MOVEABLE 1 -10110100 Land-USA 1 -10110100 by-word 1 -10110100 Zoffman 1 -10110100 Ta-Hai 1 -10110100 PEACEFUL 1 -10110100 B9275 1 -10110100 SITTER 1 -10110100 shopfront 1 -10110100 superyawn 1 -10110100 Battons 1 -10110100 Momentary 1 -10110100 net/Stretched 1 -10110100 Rischbieter 1 -10110100 NICHE 1 -10110100 Gosmans 1 -10110100 tight-voiced 1 -10110100 Stabilizer 1 -10110100 cashgenerator 1 -10110100 conglomorate 1 -10110100 Doloroso 1 -10110100 CRIPPLED 1 -10110100 Speedup 1 -10110100 Kassal 1 -10110100 Falsely 1 -10110100 novel-in-progress 1 -10110100 Weger 1 -10110100 turn-on 1 -10110100 Ballet-Allegory 1 -10110100 miniblimp 1 -10110100 breakthough 1 -10110100 down-converter 1 -10110100 Saeng 1 -10110100 once-faithful 1 -10110100 Windowsill 1 -10110100 mustache-hater 1 -10110100 Maistre 1 -10110100 supertoy 1 -10110100 Well-Regulated 1 -10110100 Tashima 1 -10110100 port-of-entry 1 -10110100 DRESSING-DOWN 1 -10110100 LIMB 1 -10110100 Bum-jun 1 -10110100 pinprick 1 -10110100 Peijian 1 -10110100 COPY. 1 -10110100 Antidote 1 -10110100 biofungicide 1 -10110100 Kouloumbis 1 -10110100 soo 1 -10110100 RETIRED 1 -10110100 DENTIST 1 -10110100 30-footer 1 -10110100 20-footer 1 -10110100 Lament 1 -10110100 78-pound 1 -10110100 weed-line 1 -10110100 Chakravarti 1 -10110100 Gatsby-in-reverse 1 -10110100 payments-suspension 1 -10110100 DEDUCTION 2 -10110100 stalking-horse 2 -10110100 pre-requisite 2 -10110100 ukulele 2 -10110100 Thirst 2 -10110100 Teenager 2 -10110100 Bankcorp. 2 -10110100 beeline 3 -10110100 shill 3 -10110100 Primer 3 -10110100 Streetcar 4 -10110100 spokeswomen 4 -10110100 BOMB 6 -10110100 spokewoman 7 -10110100 stickler 10 -10110100 spokeman 17 -10110100 spokesperson 39 -10110100 spokesman 20081 -10110100 spokeswoman 3941 -1011010100 convulsing 1 -1011010100 broken. 1 -1011010100 fired-sources 1 -1011010100 Asterix 1 -1011010100 Strepponi 1 -1011010100 amp 1 -1011010100 grayhairs 1 -1011010100 Elektras 1 -1011010100 cankers 1 -1011010100 Wanted. 1 -1011010100 rumor-supporters 1 -1011010100 Repairers 1 -1011010100 Criterions 1 -1011010100 diggin 1 -1011010100 MINORCO 1 -1011010100 panic-buying 1 -1011010100 low-down 2 -1011010100 double-stacks 2 -1011010100 tightrope-walking 2 -1011010100 Boogaard 2 -1011010100 belt-tighteners 2 -1011010100 shirkers 2 -1011010100 pitchouts 2 -1011010100 Elora 2 -1011010100 lichens 2 -1011010100 electroplaters 2 -1011010100 whippings 2 -1011010100 eighty-six 2 -1011010100 atheletes 2 -1011010100 exurbs 2 -1011010100 Buttermilk 2 -1011010100 mini-trials 2 -1011010100 bibs 2 -1011010100 volcanos 2 -1011010100 people-movers 2 -1011010100 fund-holders 3 -1011010100 doom-sayers 3 -1011010100 1,066 3 -1011010100 Diante 3 -1011010100 wrappings 3 -1011010100 suntans 3 -1011010100 androids 3 -1011010100 Dayaks 3 -1011010100 mezzos 3 -1011010100 convents 3 -1011010100 stockouts 3 -1011010100 carve-out 3 -1011010100 Hizzoner 3 -1011010100 confectioneries 3 -1011010100 co-presidents 3 -1011010100 53-47 3 -1011010100 maglevs 4 -1011010100 Wolseley 4 -1011010100 beauticians 4 -1011010100 walruses 4 -1011010100 slithers 4 -1011010100 enamels 4 -1011010100 diehards 5 -1011010100 railbikers 5 -1011010100 analgesics 5 -1011010100 streetwalkers 5 -1011010100 toxicologists 5 -1011010100 caterers 5 -1011010100 rank-and-filers 6 -1011010100 neurosurgeons 7 -1011010100 anesthesiologists 8 -1011010100 bookers 10 -1011010100 eliminations 10 -1011010100 ophthalmologists 10 -1011010100 snaggers 11 -1011010100 cavers 12 -1011010100 welders 13 -1011010100 lo 13 -1011010100 Angelenos 14 -1011010100 sitters 15 -1011010100 geneticists 15 -1011010100 crocodiles 25 -1011010100 Gun 79 -1011010100 boomers 164 -1011010100 stockbrokers 297 -1011010100 arbitragers 582 -1011010100 brokers 3507 -1011010100 dealers 4631 -1011010100 traders 9352 -1011010101 patronizingly 1 -1011010101 gentlemen-ranchers 1 -1011010101 Lima-based 1 -1011010101 graphomania 1 -1011010101 rail-roads 1 -1011010101 overdevelopers 1 -1011010101 dubious-sounding 1 -1011010101 Lasertechnics 1 -1011010101 hybridizer 1 -1011010101 biennials 1 -1011010101 Netherlanders 1 -1011010101 Thatcherites 1 -1011010101 two-weeks 1 -1011010101 Bressans 1 -1011010101 puddin 1 -1011010101 wailin 1 -1011010101 most-bullish 1 -1011010101 Siberians 1 -1011010101 revenue-growth 1 -1011010101 Stuffing 1 -1011010101 bul 1 -1011010101 Mosfil 1 -1011010101 Yur 1 -1011010101 right-to-lifers 1 -1011010101 cell-types 1 -1011010101 profit-seekers 1 -1011010101 metal- 1 -1011010101 economsts 1 -1011010101 Sisyphean 1 -1011010101 A-Sha 1 -1011010101 law-expanding 1 -1011010101 parapsychologists 1 -1011010101 comapnies 1 -1011010101 fund-watchers 1 -1011010101 money-lenders 1 -1011010101 party-poopers 1 -1011010101 vente 1 -1011010101 Pahsetopah 1 -1011010101 Axes 1 -1011010101 bringin 1 -1011010101 marshes-in-the-making 1 -1011010101 Philips-watchers 1 -1011010101 Beau-Fighters 1 -1011010101 motorcyclers 1 -1011010101 tho 1 -1011010101 Halburites 1 -1011010101 Mr.oO 1 -1011010101 nonutilities 1 -1011010101 shoutin 1 -1011010101 chito 1 -1011010101 beholders 1 -1011010101 advantage. 1 -1011010101 gymmates 1 -1011010101 whelk 1 -1011010101 creditor-representatives 1 -1011010101 non-collectors 1 -1011010101 repricings 1 -1011010101 Manwanis 1 -1011010101 Novgorod 1 -1011010101 moonlighters 1 -1011010101 Ford-watchers 1 -1011010101 Resa 1 -1011010101 Datatronics 1 -1011010101 Depths. 1 -1011010101 Tsai-watchers 1 -1011010101 shipbrokers 1 -1011010101 pre-billing 1 -1011010101 downhillers 1 -1011010101 mainliners 1 -1011010101 U.S.-Hispanics 1 -1011010101 freedmen 1 -1011010101 poll-takers 1 -1011010101 endocrinologists 1 -1011010101 lawmkers 1 -1011010101 touters 1 -1011010101 hashes 1 -1011010101 Bushmans 1 -1011010101 Vaporub 1 -1011010101 fixin 1 -1011010101 Saatchi-watchers 1 -1011010101 98-cent-a-share 1 -1011010101 amor 1 -1011010101 rate-watchers 1 -1011010101 Mr.O 1 -1011010101 Cinema.The 1 -1011010101 opinion-makers 1 -1011010101 non-Aborigines 1 -1011010101 cash-renters 1 -1011010101 dancin 2 -1011010101 anlaysts 2 -1011010101 ex-reporters 2 -1011010101 immunologists 2 -1011010101 Manilans 2 -1011010101 ex-staffers 2 -1011010101 pro-Northern 2 -1011010101 prettily 2 -1011010101 stategists 2 -1011010101 highness 2 -1011010101 meteorolgists 2 -1011010101 lampreys 2 -1011010101 Complainers 2 -1011010101 Marseillais 2 -1011010101 Isvestia 2 -1011010101 hyperurban 2 -1011010101 Nivard-Flornoy 3 -1011010101 philatelists 4 -1011010101 entomologists 4 -1011010101 oddsmakers 5 -1011010101 foresters 7 -1011010101 ma 10 -1011010101 market-watchers 13 -1011010101 Kremlinologists 13 -1011010101 Fed-watchers 15 -1011010101 numismatists 18 -1011010101 nutritionists 21 -1011010101 demographers 22 -1011010101 meteorologists 62 -1011010101 commentators 119 -1011010101 skeptics 203 -1011010101 forecasters 378 -1011010101 observers 1195 -1011010101 specialists 1774 -1011010101 experts 2516 -1011010101 analysts 18801 -1011010101 economists 3668 -1011010110 reasearch 1 -1011010110 Chevalier-Montrachet 1 -1011010110 EtherTalk 1 -1011010110 Giaquinto. 1 -1011010110 Sementziev 1 -1011010110 equal-area 1 -1011010110 ond 1 -1011010110 Arkansan 1 -1011010110 Demorats 1 -1011010110 SEATS 1 -1011010110 Al-Nahyan 1 -1011010110 crash-avoidance 1 -1011010110 Rak 1 -1011010110 Folclorico 1 -1011010110 Victoria-ISDN 1 -1011010110 BACKLOG 1 -1011010110 philhellene 1 -1011010110 RIFLES 1 -1011010110 address-change 1 -1011010110 CAUTIONED 1 -1011010110 Hameed 1 -1011010110 balsamita 1 -1011010110 PARDONED 1 -1011010110 Tokyoite 1 -1011010110 HD-TV 1 -1011010110 Investigates 1 -1011010110 Kabir 1 -1011010110 LAW-FIRM 1 -1011010110 LIVERPOOL 1 -1011010110 ERGON 1 -1011010110 older-camera 1 -1011010110 pharoah 1 -1011010110 wisenheimer 1 -1011010110 reseacher 1 -1011010110 mini-Merlin 1 -1011010110 CUSTOM 1 -1011010110 HIRES 1 -1011010110 walkout. 1 -1011010110 electro-galvanizing 1 -1011010110 law-enforcer 1 -1011010110 Plagens 1 -1011010110 octave-thundering 1 -1011010110 LIQUID-PROTEIN 1 -1011010110 Arboretum 1 -1011010110 SPERANDEO 1 -1011010110 ILIB-run 1 -1011010110 world-demand 1 -1011010110 midshipman 2 -1011010110 administration-proposed 2 -1011010110 Antiquities 2 -1011010110 oft-hostile 2 -1011010110 Renjun 2 -1011010110 centerfielders 2 -1011010110 ALLIES 2 -1011010110 anatomist 2 -1011010110 PURCHASES 2 -1011010110 Hirlap 2 -1011010110 Folles 2 -1011010110 eighth-graders 2 -1011010110 ADVISERS 2 -1011010110 Yol 2 -1011010110 adjudications 2 -1011010110 Metropole 2 -1011010110 EQUALITY 2 -1011010110 office-space 3 -1011010110 job-hopper 3 -1011010110 JUDGES 3 -1011010110 often-cited 3 -1011010110 ex-official 3 -1011010110 Nemzet 3 -1011010110 ACO 3 -1011010110 G-20 3 -1011010110 88-8 3 -1011010110 84-page 3 -1011010110 AE-1 5 -1011010110 ex-director 5 -1011010110 Russe 6 -1011010110 onlooker 6 -1011010110 inspector-general 8 -1011010110 old-timer 9 -1011010110 underling 9 -1011010110 informer 10 -1011010110 outfielder 19 -1011010110 offical 20 -1011010110 alumnus 54 -1011010110 observer 162 -1011010110 staffer 229 -1011010110 official 12828 -1011010110 aide 1740 -10110101110 reinvasion 1 -10110101110 overtightened 1 -10110101110 scholar-artists 1 -10110101110 Superstations 1 -10110101110 MARKET-WATCHERS 1 -10110101110 telegrapher 1 -10110101110 hydrologist 1 -10110101110 Brynner 1 -10110101110 chieftan 1 -10110101110 Pramaggiore 1 -10110101110 nge 1 -10110101110 revenuers 1 -10110101110 parliamentaries 1 -10110101110 Anikulapo-Kuti 1 -10110101110 Tassels 1 -10110101110 boardwhich 1 -10110101110 Shick 1 -10110101110 brawlers 1 -10110101110 ungraciously 1 -10110101110 wallpapers 1 -10110101110 cement-makers 1 -10110101110 exectives 1 -10110101110 hot-heads 1 -10110101110 OFFICER 1 -10110101110 subequently 1 -10110101110 refs 1 -10110101110 agent-turned-trader 1 -10110101110 profs 2 -10110101110 re-engaged 2 -10110101110 registrants 2 -10110101110 airbases 2 -10110101110 budgeters 2 -10110101110 Capsules 2 -10110101110 OMBUDSMEN 2 -10110101110 concessionaires 2 -10110101110 hositals 2 -10110101110 2244 3 -10110101110 troupers 4 -10110101110 official. 4 -10110101110 Zhen 5 -10110101110 spokespersons 5 -10110101110 member-states 5 -10110101110 weathermen 8 -10110101110 officals 27 -10110101110 watchers 254 -10110101110 officials 27519 -10110101110 spokesmen 366 -10110101111 A&TT 1 -10110101111 souces 1 -10110101111 Gotlibs 1 -10110101111 Korean-national 1 -10110101111 Snopishly 1 -10110101111 tattily 1 -10110101111 Calkinses 1 -10110101111 Wissing 1 -10110101111 Mr.Ruder 1 -10110101111 COMMEMORATIVES 1 -10110101111 obervers 1 -10110101111 108,000-kilowatt 1 -10110101111 coverlet 1 -10110101111 hipbone 1 -10110101111 odds-makers 1 -10110101111 yawners 1 -10110101111 Trengganu 1 -10110101111 25-billion-barrel 1 -10110101111 Penbina 1 -10110101111 Torneses 1 -10110101111 Lusa 1 -10110101111 candelabrum 1 -10110101111 Mr.Broad 1 -10110101111 Mr.Simon 1 -10110101111 Mitoji 1 -10110101111 Two-Thirds 1 -10110101111 stocks-traders 1 -10110101111 OTR-IS 1 -10110101111 disgorging 1 -10110101111 Panama-related 1 -10110101111 BRB 1 -10110101111 Gottliebs 1 -10110101111 Decison 1 -10110101111 NTB 1 -10110101111 Gund 1 -10110101111 Omdurman 1 -10110101111 Confinance 1 -10110101111 Venpres 1 -10110101111 Caplins 1 -10110101111 juleps 1 -10110101111 Mr.Nixon 1 -10110101111 ADN 2 -10110101111 Antara 2 -10110101111 Zeid 2 -10110101111 Handcuffs 2 -10110101111 mashed-potato 2 -10110101111 genies 2 -10110101111 audiologists 2 -10110101111 NPR 2 -10110101111 Beatons 2 -10110101111 cryptically 3 -10110101111 CTK 3 -10110101111 redtape 3 -10110101111 kissers 4 -10110101111 non-service 5 -10110101111 anaylsts 7 -10110101111 ANSA 7 -10110101111 gazette 8 -10110101111 trackers 8 -10110101111 Bernama 8 -10110101111 Tanjug 13 -10110101111 NMTBA 19 -10110101111 Yonhap 23 -10110101111 Eurostat 24 -10110101111 Istat 27 -10110101111 Xinhua 106 -10110101111 sources 6788 -10110101111 Tass 135 -101101100 negativists 1 -101101100 big-girls 1 -101101100 Tomahawks 1 -101101100 Kookin 1 -101101100 editor-agitator 1 -101101100 triumvirs 1 -101101100 Socialsts 1 -101101100 Mugabes 1 -101101100 state-siders 1 -101101100 pro-modernization 1 -101101100 Ovshinskys 1 -101101100 Pinsleys 1 -101101100 Rossettis 1 -101101100 sheriff. 1 -101101100 deputy. 1 -101101100 800s 1 -101101100 resettlers 1 -101101100 Naysayers 1 -101101100 Harrises 1 -101101100 Rollinsons 1 -101101100 grapepickers 1 -101101100 neo-impressionists 1 -101101100 amazin 1 -101101100 sinner-saint 1 -101101100 Kieschnicks 1 -101101100 keenin 1 -101101100 stormclouds 1 -101101100 plaintifffs 1 -101101100 Landaus 1 -101101100 MVIPs 1 -101101100 Sofies 1 -101101100 Eckankarists 1 -101101100 Blecks 1 -101101100 Knapps 1 -101101100 Bronxites 1 -101101100 Kobayashis 1 -101101100 rootin 1 -101101100 Kemplins 1 -101101100 Bednorz-Mueller 1 -101101100 meaures 1 -101101100 mummifiers 1 -101101100 Varians 1 -101101100 Blackmers 1 -101101100 Motsoaledis 1 -101101100 muezzins 1 -101101100 non-pros 1 -101101100 landords 1 -101101100 stone-washers 1 -101101100 Perots 1 -101101100 test-makers 1 -101101100 Vendas 1 -101101100 Sothos 1 -101101100 Deacons 1 -101101100 Kvistads 1 -101101100 future-claimants 1 -101101100 farmer-buyers 1 -101101100 Greenbergs 1 -101101100 limiteds 1 -101101100 Runnin 1 -101101100 F-5Es 1 -101101100 Galanises 1 -101101100 ratings-busters 1 -101101100 numerologically 1 -101101100 pan-Arab 1 -101101100 Platters 1 -101101100 Levys 1 -101101100 Mugger 1 -101101100 Rupps 1 -101101100 Tolstoys 1 -101101100 Strecks 1 -101101100 Herbfarmers 1 -101101100 Maciejowskis 1 -101101100 Maxsons 1 -101101100 Eklunds 1 -101101100 neo-Keynesian 1 -101101100 Windsors 1 -101101100 Krohs 1 -101101100 Tulalips 1 -101101100 '86s 1 -101101100 Texaconis 1 -101101100 Surgeses 1 -101101100 Me-Tooers 1 -101101100 Heywoods 1 -101101100 7-month-olds 1 -101101100 superowers 1 -101101100 Iosues 1 -101101100 neo-Keynesians 1 -101101100 drug-makers 1 -101101100 Emperors 1 -101101100 Salento 1 -101101100 Haritoses 1 -101101100 merrow 1 -101101100 Comeaways 1 -101101100 Reedys 1 -101101100 Witkowskis 1 -101101100 Kauravas 1 -101101100 Jansens 1 -101101100 Karnses 1 -101101100 somebodies 1 -101101100 Marsalises 1 -101101100 Buntrocks 1 -101101100 lunch-table 1 -101101100 cattleraisers 1 -101101100 ex-greats 1 -101101100 timber-toppers 1 -101101100 Euro-enthusiasts 1 -101101100 B1s 1 -101101100 mother. 1 -101101100 Debartolos 1 -101101100 bilingualists 1 -101101100 awe-inspired 1 -101101100 schmalz 1 -101101100 DePrees 1 -101101100 Sontheimers 1 -101101100 Front-Runners 1 -101101100 Blasphemers 1 -101101100 Tanzanians 1 -101101100 Rollers 1 -101101100 Ranevskys 1 -101101100 Shweihehs 1 -101101100 Sarney-backers 1 -101101100 Akhikaris 1 -101101100 Souzases 1 -101101100 anti-biligualists 1 -101101100 insuree 1 -101101100 mall-fighters 1 -101101100 publicity. 1 -101101100 MoynihanD 1 -101101100 Pasternaks 1 -101101100 tipoffs 1 -101101100 Russianists 1 -101101100 Thorntons 1 -101101100 rejoinders 1 -101101100 Ezells 1 -101101100 Halmoses 1 -101101100 big-leaguers 1 -101101100 hospital. 1 -101101100 Buckmans 1 -101101100 lost-profit 1 -101101100 materals 1 -101101100 Franco-Belgians 1 -101101100 cavilers 1 -101101100 MD-83s 1 -101101100 toms 1 -101101100 Obrigacao 1 -101101100 safer-cigarette 1 -101101100 flyin 1 -101101100 Non-Smokers 1 -101101100 instititutional 1 -101101100 McNultys 1 -101101100 college-aged 1 -101101100 Syreks 1 -101101100 mornin 1 -101101100 Chuongs 1 -101101100 Slifkas 1 -101101100 Guadalupes 1 -101101100 Graverobbers 1 -101101100 margin. 1 -101101100 Kersees 1 -101101100 Know-Nothings 1 -101101100 Garretts 1 -101101100 sort-of 1 -101101100 misleader 1 -101101100 Demcrats 1 -101101100 wigmakers 1 -101101100 Tommyknockers 1 -101101100 new-president 1 -101101100 Conns 1 -101101100 under-50s 1 -101101100 Quesadas 1 -101101100 perceivers 1 -101101100 pipelines. 1 -101101100 free-agents 1 -101101100 Democratics 1 -101101100 student-protester 1 -101101100 puchasers 1 -101101100 Fenians 1 -101101100 Atkissons 1 -101101100 Baeyenses 1 -101101100 accuseds 1 -101101100 manses 1 -101101100 town-financed 1 -101101100 inconvenience. 1 -101101100 Allicks 1 -101101100 Paisleys 1 -101101100 Standells 1 -101101100 rating-concerns 1 -101101100 McMahons 2 -101101100 A-cars 2 -101101100 Cervaneks 2 -101101100 Yugoslavians 2 -101101100 ravens 2 -101101100 intelligensia 2 -101101100 pouters 2 -101101100 Ewings 2 -101101100 Fins 2 -101101100 Ibos 2 -101101100 Afrikaaners 2 -101101100 Searchers 2 -101101100 Nomenklatura 2 -101101100 fun-seekers 2 -101101100 Madisons 2 -101101100 Blondskis 2 -101101100 zotls 2 -101101100 turbistas 2 -101101100 showgrounds 2 -101101100 Haases 2 -101101100 bazaaris 2 -101101100 Bidlos 2 -101101100 Alabamians 2 -101101100 Tibbettses 2 -101101100 raconteurs 2 -101101100 scarcest 2 -101101100 Bobettes 2 -101101100 Fisches 2 -101101100 Menace 2 -101101100 Balts 2 -101101100 Shaggers 2 -101101100 Sakharovs 2 -101101100 Rebs 2 -101101100 serialists 2 -101101100 threes 2 -101101100 ACE-inhibitors 2 -101101100 2,005,000 2 -101101100 Illegals 2 -101101100 Holograms 2 -101101100 Calgarians 2 -101101100 Scars 2 -101101100 Alphas 2 -101101100 Truebloods 2 -101101100 jesters 2 -101101100 bluechips 2 -101101100 Maciejkos 2 -101101100 vistors 2 -101101100 Walloons 2 -101101100 antis 2 -101101100 A-bodies 2 -101101100 clampers 2 -101101100 Nkrumahs 2 -101101100 Combses 2 -101101100 Bloodies 2 -101101100 post-minimalist 2 -101101100 superobservatory 2 -101101100 Grandeur 2 -101101100 Prairies 2 -101101100 Bahais 2 -101101100 Parallels 2 -101101100 Serbians 2 -101101100 Marcianos 2 -101101100 rhinos 2 -101101100 Keyneses 2 -101101100 Mulligans 2 -101101100 stowaways 2 -101101100 Potikers 2 -101101100 Swazis 2 -101101100 taxidermists 2 -101101100 Magyars 2 -101101100 Welchs 2 -101101100 Britishers 2 -101101100 soybeaners 2 -101101100 Cadets 2 -101101100 Aquarians 2 -101101100 compromisers 2 -101101100 penitents 2 -101101100 ex-managers 2 -101101100 Abes 2 -101101100 jalopies 2 -101101100 Maccaquanos 2 -101101100 pro-war 2 -101101100 Gators 2 -101101100 straphangers 2 -101101100 elopement 2 -101101100 Decters 2 -101101100 farmsteads 2 -101101100 Hulkster 2 -101101100 Balteses 2 -101101100 Handlins 2 -101101100 Kievan-Rus 2 -101101100 evacuees 2 -101101100 fightin 2 -101101100 Copei 2 -101101100 sensulator 2 -101101100 closed-ends 2 -101101100 Ballves 2 -101101100 office-seekers 2 -101101100 nineties 2 -101101100 kapchunka 2 -101101100 Microsofts 2 -101101100 size. 2 -101101100 Islamists 2 -101101100 about-to-retire 2 -101101100 Saitos 2 -101101100 hobos 2 -101101100 Johnny-come-latelies 2 -101101100 Mohawks 2 -101101100 porkies 2 -101101100 Hubers 2 -101101100 Guarneris 2 -101101100 Moskowitzes 2 -101101100 Colonists 2 -101101100 spin-masters 2 -101101100 Thrombolysis 2 -101101100 Soviet-watchers 2 -101101100 Eyals 2 -101101100 Shiptrac 2 -101101100 title. 2 -101101100 Johnstons 2 -101101100 Sadkers 2 -101101100 transportations 2 -101101100 Philharmonikers 2 -101101100 Siegels 2 -101101100 IPPs 2 -101101100 metamorphoses 2 -101101100 Slums 2 -101101100 party-goers 2 -101101100 worrywarts 2 -101101100 Yamadas 2 -101101100 door. 2 -101101100 Mayans 3 -101101100 Steinbrennerians 3 -101101100 sportscasters 3 -101101100 castaways 3 -101101100 Chicago-O 3 -101101100 NAD 3 -101101100 boobs 3 -101101100 malefactors 3 -101101100 cellists 3 -101101100 Mississippians 3 -101101100 Goodners 3 -101101100 Tracys 3 -101101100 Chadians 3 -101101100 Woodstockians 3 -101101100 adulterers 3 -101101100 freeholders 3 -101101100 fencers 3 -101101100 Larsons 3 -101101100 Moonies 3 -101101100 sempervivums 3 -101101100 superficialities 3 -101101100 Burgundians 3 -101101100 Argentinians 3 -101101100 metropolises 3 -101101100 FreeVees 3 -101101100 Yellobags 3 -101101100 anti-vivisectionists 3 -101101100 rumormongers 3 -101101100 ARPS 3 -101101100 Philistines 3 -101101100 Gatsbys 3 -101101100 Cancers 3 -101101100 non-economists 3 -101101100 Pandavas 3 -101101100 brigands 3 -101101100 no-names 3 -101101100 Shihs 3 -101101100 middle-road 3 -101101100 Caruccis 3 -101101100 birth-dearthers 3 -101101100 partygoers 3 -101101100 Qins 3 -101101100 Goelets 3 -101101100 Populists 3 -101101100 mujaheddin 3 -101101100 Haj 3 -101101100 Riegle-D 3 -101101100 corporatists 3 -101101100 margis 3 -101101100 missis 3 -101101100 Newfoundlanders 3 -101101100 Bourbons 3 -101101100 Darwins 3 -101101100 Neocons 3 -101101100 Al-Fayeds 3 -101101100 Cla 3 -101101100 middle-agers 3 -101101100 Inserras 3 -101101100 Daleys 3 -101101100 organics 3 -101101100 Sovs 3 -101101100 vaulters 3 -101101100 Gettys 3 -101101100 Wedviks 3 -101101100 druggies 3 -101101100 materialists 3 -101101100 Valentinos 3 -101101100 up-phases 3 -101101100 Laras 3 -101101100 Nevadans 3 -101101100 HCEs 3 -101101100 physiologists 3 -101101100 Joads 3 -101101100 IABP 3 -101101100 leathernecks 3 -101101100 Chagas 3 -101101100 Mensheviks 3 -101101100 Khasis 3 -101101100 superhawks 3 -101101100 Ojibwas 3 -101101100 Orkneys 3 -101101100 Watsons 3 -101101100 Bolivians 4 -101101100 Tavianis 4 -101101100 Shriners 4 -101101100 gauchos 4 -101101100 multilaterals 4 -101101100 checkerspots 4 -101101100 Hearins 4 -101101100 AGs 4 -101101100 repackagers 4 -101101100 Toons 4 -101101100 climatologists 4 -101101100 Antilleans 4 -101101100 strobes 4 -101101100 gapologists 4 -101101100 deconstructionists 4 -101101100 smallholders 4 -101101100 Crickets 4 -101101100 Jokers 4 -101101100 Schlachters 4 -101101100 Ravelos 4 -101101100 Wangs 4 -101101100 Grans 4 -101101100 Polynesians 4 -101101100 garimpeiros 4 -101101100 Osmenas 4 -101101100 Dorrances 4 -101101100 pagans 4 -101101100 Bradoskys 4 -101101100 Verves 4 -101101100 segregationists 4 -101101100 rhizobia 4 -101101100 bobsledders 4 -101101100 debaters 4 -101101100 Psalms 4 -101101100 Washingtons 4 -101101100 rock-throwers 4 -101101100 Jerseyites 4 -101101100 colts 4 -101101100 day-trippers 4 -101101100 Magallanes 4 -101101100 Jints 4 -101101100 Navajos 4 -101101100 Tisches 4 -101101100 Marreros 4 -101101100 Rollinses 4 -101101100 conflagrations 4 -101101100 Anglo-Saxons 4 -101101100 Broncs 4 -101101100 Dingells 4 -101101100 Stenhachs 4 -101101100 Mohajirs 4 -101101100 Einbenders 4 -101101100 for-profits 4 -101101100 drovers 4 -101101100 Aussies 4 -101101100 Hiltons 5 -101101100 Winnebagos 5 -101101100 Martians 5 -101101100 Quakers 5 -101101100 scammers 5 -101101100 publicans 5 -101101100 '21 5 -101101100 Alka-Seltzer 5 -101101100 scalpers 5 -101101100 papa-mamas 5 -101101100 gumbo 5 -101101100 Sumitros 5 -101101100 caciques 5 -101101100 Venetians 5 -101101100 Vuittons 5 -101101100 Rotarians 5 -101101100 Debentures 5 -101101100 estancieros 5 -101101100 Patels 5 -101101100 Hopis 5 -101101100 Shias 5 -101101100 Semlers 5 -101101100 Guanches 5 -101101100 absentees 5 -101101100 Bucs 5 -101101100 colorizers 5 -101101100 patrones 5 -101101100 wiccans 5 -101101100 capos 5 -101101100 Higas 5 -101101100 Saatchis 5 -101101100 stonecutters 5 -101101100 Jesudasons 5 -101101100 whys 5 -101101100 Vikes 5 -101101100 Sharks 5 -101101100 Hasidim 5 -101101100 Quayles 5 -101101100 charros 5 -101101100 j 5 -101101100 Valkyries 5 -101101100 Maiettis 5 -101101100 nay-sayers 5 -101101100 Bregmans 5 -101101100 ex-directors 5 -101101100 minimalists 5 -101101100 Yemenis 5 -101101100 Mounties 5 -101101100 Gardners 5 -101101100 Predators 5 -101101100 Crusaders 5 -101101100 Coens 5 -101101100 Carmelites 5 -101101100 Rhinos 5 -101101100 defendents 5 -101101100 Evoniuk 5 -101101100 Armstrongs 5 -101101100 Nuns 5 -101101100 Xiongs 5 -101101100 Jayhawks 5 -101101100 Rootsteins 5 -101101100 undecideds 5 -101101100 Tolchins 5 -101101100 free-thinkers 5 -101101100 McClatchys 5 -101101100 choppers 5 -101101100 semifinalists 6 -101101100 Chaumets 6 -101101100 DATs 6 -101101100 Agnellis 6 -101101100 Policemen 6 -101101100 Murphys 6 -101101100 Cranston-D 6 -101101100 al-Sabahs 6 -101101100 Nollans 6 -101101100 Arkansans 6 -101101100 Poonies 6 -101101100 Japs 6 -101101100 Meeses 6 -101101100 Morans 6 -101101100 gringos 6 -101101100 porkers 6 -101101100 precandidatos 6 -101101100 oldtimers 6 -101101100 bricklayers 6 -101101100 Zagats 6 -101101100 proprietaries 6 -101101100 alimenies 6 -101101100 '83s 6 -101101100 Visas 6 -101101100 Feshbachs 6 -101101100 Robinses 6 -101101100 Vietcong 6 -101101100 Gardeners 6 -101101100 Biminites 6 -101101100 Eucharist 6 -101101100 Poppers 6 -101101100 Sneads 6 -101101100 Blakes 6 -101101100 out-of-staters 6 -101101100 Tans 6 -101101100 Turkish-Americans 6 -101101100 Somalis 6 -101101100 pipers 6 -101101100 Thoroughbreds 6 -101101100 SBICs 6 -101101100 Affirmed 7 -101101100 interventionists 7 -101101100 complainants 7 -101101100 oligarchs 7 -101101100 Gorbachevs 7 -101101100 Compas 7 -101101100 Ashes 7 -101101100 G-men 7 -101101100 Basques 7 -101101100 SEM 7 -101101100 bromines 7 -101101100 Romers 7 -101101100 E2Cs 7 -101101100 Lubicons 7 -101101100 Maverix 7 -101101100 Ismailis 7 -101101100 scotches 7 -101101100 Ortegas 7 -101101100 stagehands 7 -101101100 Federalists 7 -101101100 twain 7 -101101100 Khoos 7 -101101100 trouble-shooters 7 -101101100 critters 7 -101101100 10s 7 -101101100 Bigs 8 -101101100 Atlantans 8 -101101100 Mellons 8 -101101100 hustlers 8 -101101100 nieces 8 -101101100 Blazers 8 -101101100 Dukakises 8 -101101100 Coasters 8 -101101100 Ivatans 8 -101101100 Jacksons 8 -101101100 Clevelanders 8 -101101100 Schecters 8 -101101100 Czechoslovaks 8 -101101100 Oehmens 8 -101101100 hostage-holders 8 -101101100 courtiers 8 -101101100 anti-smokers 8 -101101100 Rhodies 8 -101101100 Meehans 8 -101101100 glaciers 8 -101101100 bassists 8 -101101100 admen 9 -101101100 satirists 9 -101101100 Anti-Federalists 9 -101101100 nomads 9 -101101100 Bernsteins 9 -101101100 Parisians 9 -101101100 chaebol 9 -101101100 Shapiros 9 -101101100 returnees 9 -101101100 gunslingers 9 -101101100 Northerners 9 -101101100 comandante 9 -101101100 filmmakers 9 -101101100 Penans 9 -101101100 robins 9 -101101100 Lithuanians 9 -101101100 CIPs 9 -101101100 Slovenes 9 -101101100 Lapps 9 -101101100 Xus 9 -101101100 flavorists 9 -101101100 Evangelicals 9 -101101100 smokejumpers 9 -101101100 Niners 9 -101101100 Smurfs 9 -101101100 Band-Aids 10 -101101100 maharajahs 10 -101101100 Arizonans 10 -101101100 Bahrainis 10 -101101100 VIPs 10 -101101100 charlatans 10 -101101100 BOCs 10 -101101100 Estonians 10 -101101100 Dromgooles 10 -101101100 M.P.s 10 -101101100 techies 10 -101101100 linguists 10 -101101100 hares 10 -101101100 ayatollahs 10 -101101100 gorillas 10 -101101100 Persians 10 -101101100 informals 10 -101101100 highlanders 10 -101101100 Walkers 10 -101101100 algae 10 -101101100 mutineers 10 -101101100 suckers 11 -101101100 Detroiters 11 -101101100 televangelists 11 -101101100 Jaycees 11 -101101100 OSS 11 -101101100 plantiffs 11 -101101100 IBMers 11 -101101100 kibbutzim 11 -101101100 scavengers 11 -101101100 draftees 11 -101101100 Flames 11 -101101100 reactionaries 11 -101101100 Muppets 11 -101101100 SATs 11 -101101100 Gottis 11 -101101100 lads 11 -101101100 Feds 11 -101101100 MPs 11 -101101100 Riadys 11 -101101100 Miaras 11 -101101100 Whigs 11 -101101100 Caves 11 -101101100 townsfolk 11 -101101100 disappearances 11 -101101100 narcos 12 -101101100 consumerists 12 -101101100 Libertarians 12 -101101100 leakers 12 -101101100 Cajuns 12 -101101100 rodents 12 -101101100 Pathans 12 -101101100 Jamaicans 12 -101101100 Congresspersons 12 -101101100 Grays 12 -101101100 Palauans 12 -101101100 Webers 12 -101101100 Minnesotans 12 -101101100 literati 12 -101101100 malcontents 12 -101101100 idealists 12 -101101100 baby-busters 12 -101101100 QDEs 12 -101101100 resignees 12 -101101100 Ivorians 12 -101101100 cartoneros 12 -101101100 Boeskys 12 -101101100 non-Russians 13 -101101100 Carpenters 13 -101101100 Dominicans 13 -101101100 Sooners 13 -101101100 Baha 13 -101101100 Huxtables 13 -101101100 Carters 13 -101101100 Okinawans 13 -101101100 Ghanaians 13 -101101100 Bakkers 13 -101101100 kiddies 13 -101101100 Stalinists 14 -101101100 Eurocrats 14 -101101100 Victorians 14 -101101100 Korean-Americans 14 -101101100 revisionists 14 -101101100 Baptists 14 -101101100 Baileys 14 -101101100 Scots 14 -101101100 Keynesians 14 -101101100 Nordstroms 14 -101101100 conservators 15 -101101100 Latvians 15 -101101100 Georgians 15 -101101100 Masons 15 -101101100 Robinsons 15 -101101100 VRAs 15 -101101100 Latins 15 -101101100 nematodes 15 -101101100 emperors 15 -101101100 Celts 15 -101101100 Bushes 15 -101101100 politicos 16 -101101100 Kazakhs 16 -101101100 paramedics 16 -101101100 Singers 16 -101101100 Thais 16 -101101100 Disciples 16 -101101100 sinners 16 -101101100 Sunnis 16 -101101100 comandantes 16 -101101100 Vogels 16 -101101100 pickets 16 -101101100 epidemiologists 17 -101101100 Webbs 17 -101101100 Norwegians 17 -101101100 populists 17 -101101100 bullies 17 -101101100 pepenadores 17 -101101100 catalogers 17 -101101100 super-regionals 17 -101101100 pols 17 -101101100 appropriators 18 -101101100 Alaskans 18 -101101100 Nigerians 18 -101101100 neoconservatives 18 -101101100 adapters 18 -101101100 Jordanians 19 -101101100 contrarians 19 -101101100 Milkens 19 -101101100 Finns 19 -101101100 Angolans 19 -101101100 GM-10s 19 -101101100 Bostonians 19 -101101100 CSFs 19 -101101100 Basses 19 -101101100 victors 20 -101101100 doomsayers 20 -101101100 auctioneers 20 -101101100 mullahs 20 -101101100 Charities 20 -101101100 superdelegates 20 -101101100 campesinos 21 -101101100 right-wingers 21 -101101100 Algerians 21 -101101100 Mavericks 21 -101101100 Martinis 21 -101101100 GIs 21 -101101100 attackers 21 -101101100 Malaysians 21 -101101100 Kennedys 21 -101101100 Miskitos 22 -101101100 Naderites 22 -101101100 Chicagoans 22 -101101100 Brits 23 -101101100 Luddites 23 -101101100 lobstermen 23 -101101100 bandits 23 -101101100 dolphins 24 -101101100 Sterns 24 -101101100 parliamentarians 24 -101101100 jurists 24 -101101100 Radicals 24 -101101100 Clippers 25 -101101100 haves 25 -101101100 Hondurans 25 -101101100 Duvaliers 25 -101101100 Rams 25 -101101100 islanders 26 -101101100 zombies 26 -101101100 petitioners 26 -101101100 cadets 26 -101101100 hecklers 26 -101101100 Danes 26 -101101100 Bulgarians 27 -101101100 NICs 27 -101101100 Romanians 27 -101101100 baby-boomers 27 -101101100 Yugoslavs 28 -101101100 Indonesians 28 -101101100 Yeomans 28 -101101100 Austrians 28 -101101100 Czechs 28 -101101100 naysayers 29 -101101100 Yuppies 29 -101101100 cosmonauts 30 -101101100 hens 30 -101101100 Belgians 31 -101101100 surfers 31 -101101100 clergymen 31 -101101100 rioters 32 -101101100 Pistons 33 -101101100 Sikhs 33 -101101100 vigilantes 33 -101101100 termites 34 -101101100 Afrikaners 34 -101101100 Thompsons 34 -101101100 Bryans 34 -101101100 Singaporeans 34 -101101100 marines 34 -101101100 Eritreans 35 -101101100 Cohens 35 -101101100 Haitians 35 -101101100 DeBartolos 35 -101101100 marchers 36 -101101100 centrists 36 -101101100 Venezuelans 37 -101101100 Helmsleys 37 -101101100 clerics 37 -101101100 Yanks 37 -101101100 Mormons 37 -101101100 Bronfmans 39 -101101100 Spaniards 39 -101101100 Romans 39 -101101100 Allies 40 -101101100 Aborigines 40 -101101100 Iowans 40 -101101100 mules 40 -101101100 pessimists 41 -101101100 electricians 42 -101101100 Reichmanns 43 -101101100 Nationalists 43 -101101100 nonprofits 44 -101101100 Stones 44 -101101100 Jets 45 -101101100 monetarists 46 -101101100 Salvadorans 47 -101101100 superregionals 47 -101101100 Peronists 47 -101101100 townspeople 47 -101101100 Colombians 47 -101101100 pragmatists 47 -101101100 financials 48 -101101100 ideologues 48 -101101100 Cardinals 49 -101101100 vets 49 -101101100 thugs 50 -101101100 Syrians 50 -101101100 Libyans 51 -101101100 dissenters 53 -101101100 evangelicals 53 -101101100 panelists 54 -101101100 migrants 54 -101101100 Lakers 54 -101101100 Reaganites 57 -101101100 socialists 57 -101101100 combatants 58 -101101100 front-runners 58 -101101100 defectors 61 -101101100 leftists 63 -101101100 Chileans 65 -101101100 Swedes 66 -101101100 optimists 66 -101101100 Marxists 67 -101101100 Panamanians 67 -101101100 regionals 67 -101101100 Kuwaitis 68 -101101100 Egyptians 68 -101101100 Argentines 68 -101101100 kidnappers 70 -101101100 gunmen 71 -101101100 Founders 73 -101101100 supply-siders 73 -101101100 Tibetans 74 -101101100 Shiites 74 -101101100 Greeks 74 -101101100 clergy 76 -101101100 pollsters 77 -101101100 gods 78 -101101100 Australians 78 -101101100 litigants 79 -101101100 contestants 79 -101101100 twins 80 -101101100 Armenians 81 -101101100 monks 83 -101101100 A's 83 -101101100 Dunkin 84 -101101100 Fathers 86 -101101100 Pakistanis 88 -101101100 Californians 88 -101101100 Kurds 89 -101101100 natives 91 -101101100 Hungarians 92 -101101100 Congressmen 95 -101101100 villagers 100 -101101100 Nicaraguans 103 -101101100 astronauts 112 -101101100 Raiders 113 -101101100 arbs 114 -101101100 Tories 115 -101101100 hijackers 115 -101101100 Dodgers 115 -101101100 Italians 116 -101101100 fundamentalists 118 -101101100 Belzbergs 119 -101101100 Filipinos 120 -101101100 Brazilians 122 -101101100 Tigers 123 -101101100 arbitrators 123 -101101100 Texans 127 -101101100 Turks 131 -101101100 Iraqis 134 -101101100 Afghans 134 -101101100 hard-liners 135 -101101100 Greens 135 -101101100 bishops 135 -101101100 Senators 154 -101101100 radicals 160 -101101100 Christians 163 -101101100 strikers 167 -101101100 reformers 170 -101101100 Britons 170 -101101100 Giants 175 -101101100 Cubans 185 -101101100 Moslems 186 -101101100 CEOs 196 -101101100 pros 203 -101101100 newcomers 208 -101101100 communists 208 -101101100 Poles 221 -101101100 Hafts 221 -101101100 Liberals 226 -101101100 moderates 232 -101101100 incumbents 243 -101101100 peasants 246 -101101100 Socialists 249 -101101100 Mexicans 259 -101101100 respondents 287 -101101100 Marines 296 -101101100 jurors 299 -101101100 locals 300 -101101100 dissidents 311 -101101100 Bells 317 -101101100 Communists 321 -101101100 Israelis 349 -101101100 Indians 355 -101101100 Conservatives 359 -101101100 Canadians 361 -101101100 Hunts 364 -101101100 Arabs 384 -101101100 Jews 447 -101101100 Saudis 448 -101101100 Iranians 477 -101101100 Koreans 485 -101101100 terrorists 486 -101101100 Russians 513 -101101100 liberals 532 -101101100 Palestinians 541 -101101100 congressmen 541 -101101100 authors 599 -101101100 guerrillas 621 -101101100 Europeans 635 -101101100 justices 711 -101101100 legislators 776 -101101100 senators 996 -101101100 plaintiffs 1104 -101101100 conservatives 1113 -101101100 rebels 1384 -101101100 defendants 1697 -101101100 politicians 1802 -101101100 lawmakers 2231 -101101100 Republicans 2389 -101101100 voters 2762 -101101100 Soviets 3542 -101101100 Democrats 4874 -101101100 Americans 4147 -1011011010 yeomen 1 -1011011010 sickie 1 -1011011010 caribous 1 -1011011010 stumblebum 1 -1011011010 Marxist-leaning 1 -1011011010 companions-in-arms 1 -1011011010 Anglo-Americans 1 -1011011010 102,888 1 -1011011010 brothers-in-arms 1 -1011011010 businesspeople/churchmen 1 -1011011010 McHospital 1 -1011011010 legal-briefcases 1 -1011011010 cargo-area 1 -1011011010 co-eds 1 -1011011010 recanters 1 -1011011010 Adonises 1 -1011011010 out-migrants 1 -1011011010 expat 1 -1011011010 highwaymen 1 -1011011010 subluminaries 1 -1011011010 individals 1 -1011011010 degree-days 1 -1011011010 thought-oids 1 -1011011010 non-facts 1 -1011011010 14,870 1 -1011011010 brushstrokes 1 -1011011010 non-Italos 1 -1011011010 Oklahomans 1 -1011011010 chart-topper 1 -1011011010 Oostende 1 -1011011010 wisenheimers 1 -1011011010 iridians 1 -1011011010 MOMS 1 -1011011010 putti 1 -1011011010 spinnable 1 -1011011010 mega-parties 1 -1011011010 alphas 1 -1011011010 Aeghist 1 -1011011010 ship-owner 1 -1011011010 armstrokes 1 -1011011010 plurals 1 -1011011010 congress-persons 1 -1011011010 kaffiyeh 1 -1011011010 Barkers 1 -1011011010 plastic-treated 1 -1011011010 unities 1 -1011011010 holiday-goers 1 -1011011010 primatologist 1 -1011011010 pseudoscientists 1 -1011011010 golf-cleat 1 -1011011010 25345.28 1 -1011011010 manikins 1 -1011011010 snorees 1 -1011011010 athlete-clients 1 -1011011010 rooks 1 -1011011010 may-be 1 -1011011010 17,022 1 -1011011010 fifty-six 1 -1011011010 telecasters 1 -1011011010 blurbers 1 -1011011010 rainmakers 1 -1011011010 rockiness 1 -1011011010 Jacksonians 1 -1011011010 hipster 1 -1011011010 left-liberals 1 -1011011010 idealisms 1 -1011011010 sweatband 1 -1011011010 great-uncles 1 -1011011010 greatgrandsons 1 -1011011010 major-burden-to-the-planet 1 -1011011010 ownermanagers 1 -1011011010 Laredoans 2 -1011011010 drunkards 2 -1011011010 partiers 2 -1011011010 all-stars 2 -1011011010 self-starters 2 -1011011010 knitters 2 -1011011010 hillbillies 2 -1011011010 cad 2 -1011011010 misleaders 2 -1011011010 Louisianans 2 -1011011010 FANS 2 -1011011010 classifiers 2 -1011011010 late-comers 2 -1011011010 ex-leftists 2 -1011011010 bullrings 2 -1011011010 misimpressions 2 -1011011010 Opels 2 -1011011010 twerps 2 -1011011010 hezbollahis 2 -1011011010 blabbermouth 2 -1011011010 TL 2 -1011011010 Marfans 2 -1011011010 hypochondriacs 2 -1011011010 appliques 2 -1011011010 school-children 2 -1011011010 non-celebrities 2 -1011011010 85-year-olds 2 -1011011010 shmucks 2 -1011011010 '45 2 -1011011010 scrimmages 2 -1011011010 Mughals 2 -1011011010 portholes 2 -1011011010 Atlanticists 2 -1011011010 cornets 2 -1011011010 fogeys 2 -1011011010 apocalyptics 2 -1011011010 tykes 2 -1011011010 sadists 3 -1011011010 cubbyholes 3 -1011011010 BVIslanders 3 -1011011010 Acadians 3 -1011011010 mutts 3 -1011011010 personas 3 -1011011010 backpackers 3 -1011011010 assistors 3 -1011011010 urines 3 -1011011010 barracuda 3 -1011011010 Rhodesians 3 -1011011010 narcissists 3 -1011011010 stretchers 3 -1011011010 wordsmiths 3 -1011011010 Shanghainese 3 -1011011010 386s 3 -1011011010 Bavarians 3 -1011011010 carve-ups 3 -1011011010 GMers 4 -1011011010 Delawareans 4 -1011011010 photojournalists 4 -1011011010 rappers 4 -1011011010 panhandlers 4 -1011011010 sunbathers 4 -1011011010 Orientals 4 -1011011010 Kenyans 4 -1011011010 Toledoans 4 -1011011010 Oxonians 4 -1011011010 1,071 4 -1011011010 schizophrenics 4 -1011011010 geographers 4 -1011011010 Actinidias 4 -1011011010 impotency 4 -1011011010 kickoffs 4 -1011011010 biochemists 4 -1011011010 oldsters 5 -1011011010 hashers 5 -1011011010 45-year-olds 5 -1011011010 yo-yos 5 -1011011010 medalists 5 -1011011010 Oregonians 5 -1011011010 drive-ins 6 -1011011010 lollipops 6 -1011011010 Moroccans 6 -1011011010 motorcyclists 6 -1011011010 Westerns 7 -1011011010 rascals 7 -1011011010 raptors 7 -1011011010 sopranos 7 -1011011010 migraines 7 -1011011010 sleepwalkers 7 -1011011010 masons 7 -1011011010 athletically 7 -1011011010 jazzmen 7 -1011011010 unfortunates 7 -1011011010 chaps 8 -1011011010 sandbags 8 -1011011010 Philadelphians 8 -1011011010 spiders 8 -1011011010 worthies 8 -1011011010 Quebeckers 8 -1011011010 survivalists 8 -1011011010 congresspersons 9 -1011011010 straights 9 -1011011010 gentlemen-farmers 9 -1011011010 Kentuckians 10 -1011011010 mangosteens 10 -1011011010 Indianians 10 -1011011010 Samurais 10 -1011011010 out-of-towners 11 -1011011010 kibbutzniks 11 -1011011010 horsemen 11 -1011011010 communicators 11 -1011011010 Washingtonians 13 -1011011010 Mozambicans 13 -1011011010 farmer-borrowers 14 -1011011010 sportswriters 14 -1011011010 churchmen 15 -1011011010 verses 16 -1011011010 fellas 16 -1011011010 mongooses 16 -1011011010 refuseniks 16 -1011011010 Midwesterners 16 -1011011010 Floridians 17 -1011011010 workaholics 17 -1011011010 realists 18 -1011011010 Cambodians 19 -1011011010 sokaiya 22 -1011011010 exhibitors 39 -1011011010 Japanese-Americans 42 -1011011010 Frenchmen 49 -1011011010 folks 443 -1011011010 persons 660 -1011011010 people 29668 -1011011010 guys 898 -10110110110 conglomerateurs 1 -10110110110 baseblots 1 -10110110110 frontiers-woman 1 -10110110110 gashes 1 -10110110110 knighting 1 -10110110110 pronoun 1 -10110110110 soul-thrashing 1 -10110110110 Lakefront 1 -10110110110 slavers 1 -10110110110 hold-overs 1 -10110110110 reregulators 1 -10110110110 Bellamys 1 -10110110110 rescript 1 -10110110110 nasturtiums 1 -10110110110 oleanders 1 -10110110110 guided-tour 1 -10110110110 Pan-Africa 1 -10110110110 helmsmen 1 -10110110110 foothill 1 -10110110110 snake-handlers 1 -10110110110 dogfighter 1 -10110110110 kitschery 1 -10110110110 Korans 1 -10110110110 grower-seller 1 -10110110110 violists 1 -10110110110 non-cognoscenti 1 -10110110110 jackmanii 1 -10110110110 volleyballers 1 -10110110110 costumery 1 -10110110110 trull 1 -10110110110 galoshes 1 -10110110110 footman 1 -10110110110 equivocations 1 -10110110110 palisades 1 -10110110110 ruff 1 -10110110110 gins 1 -10110110110 exercism 1 -10110110110 Spanglish 1 -10110110110 Baraboo 1 -10110110110 youngsters. 1 -10110110110 Portia 1 -10110110110 parakeet 1 -10110110110 tanks. 1 -10110110110 plimsoled 1 -10110110110 butterflys 1 -10110110110 Vonnas 1 -10110110110 8,000-foot-high 1 -10110110110 megastadiums 1 -10110110110 flailers 1 -10110110110 platinum-haired 1 -10110110110 Billys 1 -10110110110 flannels 1 -10110110110 Boscobel 1 -10110110110 shakos 1 -10110110110 cross-straps 1 -10110110110 Oaklawn 1 -10110110110 supercops 1 -10110110110 boxwood 1 -10110110110 aspic 1 -10110110110 gazelles 1 -10110110110 canoist 1 -10110110110 ibises 1 -10110110110 arteritis 1 -10110110110 Norwegian-Americans 1 -10110110110 BAC-111s 1 -10110110110 whippersnappers 1 -10110110110 k.d. 1 -10110110110 oxfords 1 -10110110110 busstop 1 -10110110110 poplar- 1 -10110110110 spear-carriers 1 -10110110110 anti-clericalism 1 -10110110110 Uludere 1 -10110110110 double-talk 1 -10110110110 Cheektowaga 1 -10110110110 dropcloths 1 -10110110110 cats. 1 -10110110110 orchidomania 1 -10110110110 Luiza 1 -10110110110 Soldevilas 1 -10110110110 filmstrip 1 -10110110110 affectlessness 1 -10110110110 boatswain 1 -10110110110 fortune-seekers 1 -10110110110 lowlife 1 -10110110110 walk-ups 1 -10110110110 farmgirls 1 -10110110110 sutras 1 -10110110110 ideas. 1 -10110110110 equestrians 1 -10110110110 discoers 1 -10110110110 sods 1 -10110110110 mummiforms 1 -10110110110 paddlewheel 1 -10110110110 adulthoods 1 -10110110110 ball-heaver 1 -10110110110 mystics 1 -10110110110 fattie 1 -10110110110 artificer 1 -10110110110 Nadejda 1 -10110110110 lawyer-legislator 1 -10110110110 elite-types 1 -10110110110 Bronko 1 -10110110110 stonecutter 1 -10110110110 pipa 1 -10110110110 subregions 1 -10110110110 dancemaker 1 -10110110110 cherubim 1 -10110110110 Bosnians 1 -10110110110 boots. 1 -10110110110 adventure-seekers 1 -10110110110 watercolorists 1 -10110110110 warload 1 -10110110110 Marxes 1 -10110110110 jarheads 1 -10110110110 windcatcher 1 -10110110110 earthworm 1 -10110110110 street-front 1 -10110110110 Bidu 1 -10110110110 napery 1 -10110110110 hubbies 1 -10110110110 chihuahua 1 -10110110110 split-screen 1 -10110110110 protectiveness 1 -10110110110 rug-beater 1 -10110110110 statelet 1 -10110110110 dance-makers 1 -10110110110 Gauloises 1 -10110110110 double-bock 1 -10110110110 artisan-brother 1 -10110110110 shariat 1 -10110110110 Vizela 1 -10110110110 Dacians 1 -10110110110 Pampas 1 -10110110110 anti-Marxism 1 -10110110110 octopus-hurlers 1 -10110110110 Cratchits 1 -10110110110 bermudas 1 -10110110110 pre-debutante 1 -10110110110 acid-wash 1 -10110110110 watchtower 1 -10110110110 experiencia 1 -10110110110 Irishwoman 1 -10110110110 Jesuses 1 -10110110110 mir-doms 1 -10110110110 mirs 1 -10110110110 elephant. 1 -10110110110 Vacherie 1 -10110110110 McUpstart 1 -10110110110 supply-sidism 1 -10110110110 imperiousness 1 -10110110110 gizmo. 1 -10110110110 Turkophile 1 -10110110110 revivalists 1 -10110110110 nilgai 1 -10110110110 gravediggers 1 -10110110110 amylase 1 -10110110110 falloffs 1 -10110110110 Bottecchia 1 -10110110110 retrainee 1 -10110110110 full-timer 1 -10110110110 vaselike 1 -10110110110 tribeswomen 1 -10110110110 spokesman-designate 1 -10110110110 view-shed 1 -10110110110 Rolodexes 1 -10110110110 seed-persona 1 -10110110110 landladies 1 -10110110110 leopard. 1 -10110110110 maestros 1 -10110110110 breastbeating 1 -10110110110 gestator 1 -10110110110 pollo 1 -10110110110 turk 1 -10110110110 colonnades 1 -10110110110 sarabande 1 -10110110110 period-paper 1 -10110110110 end-pages 1 -10110110110 citizen-servants 1 -10110110110 Demre 1 -10110110110 MBoya 1 -10110110110 adrenals 1 -10110110110 labor. 1 -10110110110 Philanthropies 1 -10110110110 armband 1 -10110110110 balladeer 1 -10110110110 cupsman 1 -10110110110 cellophanelike 1 -10110110110 commiseration 1 -10110110110 housing. 1 -10110110110 legalizers 1 -10110110110 cragginess 1 -10110110110 leather-men 1 -10110110110 Euro-mausoleum 1 -10110110110 Zin 1 -10110110110 pontificators 1 -10110110110 S.S.R. 1 -10110110110 rosebud 1 -10110110110 sexagenarians 1 -10110110110 Nawal 1 -10110110110 relativists 1 -10110110110 ottomans 1 -10110110110 wood-grain 1 -10110110110 headpiece 1 -10110110110 hemorrhage. 1 -10110110110 cultivators 1 -10110110110 koan 1 -10110110110 Upanishad 1 -10110110110 artisan-bookbinder 1 -10110110110 vahines 1 -10110110110 darlingtonia 1 -10110110110 bunkmate 1 -10110110110 imbibers 1 -10110110110 free-enterprisers 1 -10110110110 Weavings 1 -10110110110 muscleman 1 -10110110110 Carterites 1 -10110110110 greenworks 1 -10110110110 MAC-10 1 -10110110110 6-feet-5 1 -10110110110 mestizos 1 -10110110110 Lances 1 -10110110110 seatmates 1 -10110110110 1100/60 1 -10110110110 Cairenes 1 -10110110110 ultra-rightists 1 -10110110110 chickhoods 1 -10110110110 mujahid 1 -10110110110 keto 1 -10110110110 Islamics 1 -10110110110 Nashvilleans 1 -10110110110 hell-raiser 1 -10110110110 Sumerians 1 -10110110110 mega-university 1 -10110110110 Adebiyeti 1 -10110110110 newscasting 1 -10110110110 Uniates 1 -10110110110 heads-of-household 1 -10110110110 mountains-chains 1 -10110110110 fitness. 1 -10110110110 non-combatants 1 -10110110110 underarms 1 -10110110110 Battersea 1 -10110110110 daywear 1 -10110110110 bods 1 -10110110110 estrus 1 -10110110110 whippersnapper 1 -10110110110 sportsbiz 1 -10110110110 stirrers 1 -10110110110 cripes 1 -10110110110 Convenant 1 -10110110110 taxpayers-- 1 -10110110110 Daikinis 1 -10110110110 Cessnas 1 -10110110110 superheroine 1 -10110110110 Joyners 1 -10110110110 nonadventures 1 -10110110110 governness 1 -10110110110 Galactica 1 -10110110110 cesspools 1 -10110110110 Firestorm 1 -10110110110 powerholders 1 -10110110110 collegian 1 -10110110110 pseudo-eclectic 1 -10110110110 Chalet-a-Gobet 1 -10110110110 stuntwoman 1 -10110110110 Churchilliana 1 -10110110110 comprehensibility 1 -10110110110 trespasser 1 -10110110110 sluggard 1 -10110110110 papyrus 1 -10110110110 spumes 1 -10110110110 Belcore 1 -10110110110 Slovenians 1 -10110110110 fortune-telling 1 -10110110110 pedagogues 1 -10110110110 kneebreeches 1 -10110110110 bedsteads 1 -10110110110 outdoorsman/writer 1 -10110110110 gatehouses 1 -10110110110 eye-shadow 1 -10110110110 chromatiographics 1 -10110110110 choler 1 -10110110110 warbler 1 -10110110110 Wellingtons 1 -10110110110 antichrist 1 -10110110110 Chelyabinsk 1 -10110110110 empty-nesters 1 -10110110110 cosmopolitanism 1 -10110110110 hole-dweller 1 -10110110110 bugbears 1 -10110110110 capitalists-in-training 1 -10110110110 briquets 1 -10110110110 intramuscularly 1 -10110110110 Irish-Bostonian 1 -10110110110 IBM-er 1 -10110110110 Frankensteins 1 -10110110110 striver 1 -10110110110 slinkiness 1 -10110110110 barrettes 1 -10110110110 lorries 1 -10110110110 octogenaraians 1 -10110110110 frame-ups 1 -10110110110 snootiness 1 -10110110110 cottonweed 1 -10110110110 Norsemen 1 -10110110110 ex-CPA 1 -10110110110 spydom 1 -10110110110 Snowmass 1 -10110110110 highrisk 2 -10110110110 common-equivalents 2 -10110110110 burghers 2 -10110110110 paraparesis 2 -10110110110 acacia 2 -10110110110 concert-goers 2 -10110110110 banquettes 2 -10110110110 saintliness 2 -10110110110 skullcaps 2 -10110110110 neocolonialism 2 -10110110110 Amazons 2 -10110110110 chickpeas 2 -10110110110 middle-managers 2 -10110110110 pre-adolescents 2 -10110110110 runabouts 2 -10110110110 apparitions 2 -10110110110 hickories 2 -10110110110 moly 2 -10110110110 notepad 2 -10110110110 watchtowers 2 -10110110110 yes-men 2 -10110110110 druids 2 -10110110110 coverlets 2 -10110110110 dorks 2 -10110110110 ocher 2 -10110110110 barangays 2 -10110110110 stenographers 2 -10110110110 artillerymen 2 -10110110110 quarterlies 2 -10110110110 oleander 2 -10110110110 tastebuds 2 -10110110110 libidos 2 -10110110110 Aage 2 -10110110110 nightgowns 2 -10110110110 philanthrophy 2 -10110110110 towboats 2 -10110110110 ibexes 2 -10110110110 amphibians 2 -10110110110 gams 2 -10110110110 fact-filled 2 -10110110110 dachshunds 2 -10110110110 jodhpurs 2 -10110110110 abaca 2 -10110110110 unrepentants 2 -10110110110 chiffon 2 -10110110110 dialer 2 -10110110110 moppets 2 -10110110110 dandies 2 -10110110110 ethnocentrism 2 -10110110110 spacesuits 2 -10110110110 stigmata 2 -10110110110 anti-infectives 2 -10110110110 Sovietology 2 -10110110110 shoes. 2 -10110110110 PAC-men 2 -10110110110 elegies 2 -10110110110 Arsenale 2 -10110110110 thistle 2 -10110110110 septuagenarians 2 -10110110110 ejaculation 2 -10110110110 mealie 2 -10110110110 16-year-olds 2 -10110110110 flyboy 2 -10110110110 Millikens 2 -10110110110 loosestrife 2 -10110110110 scallions 2 -10110110110 marathoner 2 -10110110110 Clemenson 2 -10110110110 hitchhikers 2 -10110110110 early-30s 2 -10110110110 ultranationalist 2 -10110110110 derrieres 2 -10110110110 househusband 2 -10110110110 VPs 2 -10110110110 ex-athletes 2 -10110110110 amore 2 -10110110110 off-islanders 2 -10110110110 Amishman 2 -10110110110 scarecrow 2 -10110110110 southpaws 2 -10110110110 backwoodsman 2 -10110110110 pool-hopping 2 -10110110110 panthers 2 -10110110110 peons 2 -10110110110 Lochinvar 2 -10110110110 Aerosmith 2 -10110110110 hamster 2 -10110110110 Herpolsheimer 2 -10110110110 teetotalers 2 -10110110110 mullet 2 -10110110110 30-to-40-year-olds 2 -10110110110 uvula 2 -10110110110 policewomen 2 -10110110110 loggia 2 -10110110110 dancer/choreographer 2 -10110110110 timeouts 3 -10110110110 nit-pickers 3 -10110110110 turks 3 -10110110110 misspellings 3 -10110110110 neo-conservatives 3 -10110110110 keels 3 -10110110110 sahibs 3 -10110110110 sharecroppers 3 -10110110110 tankards 3 -10110110110 businesspersons 3 -10110110110 melisma 3 -10110110110 Flowtons 3 -10110110110 marketeering 3 -10110110110 taffeta 3 -10110110110 carnivals 3 -10110110110 carbons 3 -10110110110 clarinets 3 -10110110110 Enniskillen 3 -10110110110 joviality 3 -10110110110 job-hoppers 3 -10110110110 croupiers 3 -10110110110 bagpiping 3 -10110110110 Learjets 3 -10110110110 evergreens 3 -10110110110 Dachau 3 -10110110110 hibiscus 3 -10110110110 Pats 3 -10110110110 pandas 3 -10110110110 stalactites 3 -10110110110 Einsteins 3 -10110110110 boatlift 3 -10110110110 ex-POWs 3 -10110110110 zinfandel 3 -10110110110 OD 3 -10110110110 climbery 3 -10110110110 Mesopotamia 3 -10110110110 borscht 3 -10110110110 canaries 3 -10110110110 poor. 3 -10110110110 gallbladders 3 -10110110110 eyeshades 3 -10110110110 Pee-Wee 3 -10110110110 constitutionalism 3 -10110110110 Terreri 3 -10110110110 constructivists 3 -10110110110 mutants 3 -10110110110 marrieds 3 -10110110110 sabers 3 -10110110110 narcs 3 -10110110110 tendrils 3 -10110110110 canoeists 3 -10110110110 Monets 3 -10110110110 rajahs 3 -10110110110 unicorns 3 -10110110110 SUITS 3 -10110110110 scriptures 3 -10110110110 poplars 3 -10110110110 smocks 4 -10110110110 Soso 4 -10110110110 Fadzaev 4 -10110110110 Selika 4 -10110110110 cloves 4 -10110110110 friends. 4 -10110110110 eyeshade 4 -10110110110 siderographers 4 -10110110110 jumpsuits 4 -10110110110 plungers 4 -10110110110 choirboys 4 -10110110110 Landesbanken 4 -10110110110 amputees 4 -10110110110 sanctimony 4 -10110110110 hierarchs 4 -10110110110 McMurphy 4 -10110110110 Zimbabweans 4 -10110110110 oddballs 4 -10110110110 birdshot 4 -10110110110 CitySpire 4 -10110110110 behinds 4 -10110110110 Rosacoke 4 -10110110110 selectmen 4 -10110110110 quaffers 4 -10110110110 urinals 4 -10110110110 concubines 4 -10110110110 noes 4 -10110110110 wasps 4 -10110110110 valedictorians 4 -10110110110 stringers 4 -10110110110 fowls 4 -10110110110 children. 4 -10110110110 typos 4 -10110110110 clive-ia 4 -10110110110 Padstow 4 -10110110110 ruffians 4 -10110110110 autobiographies 4 -10110110110 KTLA 4 -10110110110 cannonballs 4 -10110110110 EMCs 4 -10110110110 poinsettias 4 -10110110110 shut-ins 4 -10110110110 hairstyles 4 -10110110110 babyboomers 4 -10110110110 Puritans 4 -10110110110 walleye 4 -10110110110 speechmakers 4 -10110110110 shamans 4 -10110110110 scribblers 4 -10110110110 Steinways 5 -10110110110 goatee 5 -10110110110 you-know-what 5 -10110110110 snowflakes 5 -10110110110 overachievers 5 -10110110110 midgets 5 -10110110110 non-veterans 5 -10110110110 mermaids 5 -10110110110 voyeurs 5 -10110110110 swallowwort 5 -10110110110 Rambos 5 -10110110110 IBM-compatibles 5 -10110110110 inanities 5 -10110110110 Fergie 5 -10110110110 toymakers 5 -10110110110 Leporello 5 -10110110110 loners 5 -10110110110 Barbies 5 -10110110110 prescribers 5 -10110110110 intoxicants 5 -10110110110 dysplasia 5 -10110110110 noblemen 5 -10110110110 drifters 5 -10110110110 fireflies 5 -10110110110 mammoths 5 -10110110110 squires 5 -10110110110 Savigny 5 -10110110110 romantics 5 -10110110110 Davids 5 -10110110110 mine-sweepers 5 -10110110110 barkers 5 -10110110110 lapels 5 -10110110110 gawkers 5 -10110110110 dieters 5 -10110110110 swastikas 5 -10110110110 has-beens 5 -10110110110 psychoanalysts 5 -10110110110 glutamate 5 -10110110110 Andris 5 -10110110110 grail 5 -10110110110 lefties 5 -10110110110 Cherubino 5 -10110110110 schmaltz 5 -10110110110 perfectionists 5 -10110110110 householders 5 -10110110110 dockyards 5 -10110110110 masculinity 5 -10110110110 runaways 5 -10110110110 Cs 5 -10110110110 berets 6 -10110110110 sunsets 6 -10110110110 mustaches 6 -10110110110 maggots 6 -10110110110 hubby 6 -10110110110 pantaloons 6 -10110110110 flamingos 6 -10110110110 cherubs 6 -10110110110 complainers 6 -10110110110 vampires 6 -10110110110 Clemensen 6 -10110110110 Northeasterners 6 -10110110110 stragglers 6 -10110110110 also-rans 6 -10110110110 cowards 6 -10110110110 brows 6 -10110110110 proconsul 6 -10110110110 Segovia 6 -10110110110 suppositories 6 -10110110110 bloopers 6 -10110110110 charismatics 6 -10110110110 brothers-in-law 6 -10110110110 grooves 6 -10110110110 roosters 6 -10110110110 frescoes 6 -10110110110 Nourrit 6 -10110110110 multilateralism 6 -10110110110 red-handed 6 -10110110110 Bs 6 -10110110110 Duchenne 6 -10110110110 fillies 6 -10110110110 foxholes 6 -10110110110 barnacles 6 -10110110110 brooch 6 -10110110110 vowels 6 -10110110110 prelates 7 -10110110110 bookkeepers 7 -10110110110 triplets 7 -10110110110 lugers 7 -10110110110 crazies 7 -10110110110 dusters 7 -10110110110 churchgoers 7 -10110110110 edibles 7 -10110110110 jades 7 -10110110110 marketeer 7 -10110110110 vodkas 7 -10110110110 enlistees 7 -10110110110 moths 7 -10110110110 apes 7 -10110110110 confiterias 7 -10110110110 pacifists 7 -10110110110 outriders 7 -10110110110 aunts 7 -10110110110 armbands 7 -10110110110 jive 7 -10110110110 starlets 7 -10110110110 pansies 7 -10110110110 northerners 7 -10110110110 supers 7 -10110110110 deportees 7 -10110110110 adoptees 7 -10110110110 libido 7 -10110110110 wage-earners 7 -10110110110 kangaroos 7 -10110110110 tugboats 7 -10110110110 spotters 8 -10110110110 canines 8 -10110110110 southerners 8 -10110110110 spaceships 8 -10110110110 bluffs 8 -10110110110 womens 8 -10110110110 minstrels 8 -10110110110 mollusks 8 -10110110110 herrings 8 -10110110110 babysitters 8 -10110110110 doers 8 -10110110110 schoolboys 8 -10110110110 elitists 8 -10110110110 hippies 8 -10110110110 babes 8 -10110110110 Greek-Americans 9 -10110110110 vocals 9 -10110110110 Creator 9 -10110110110 non-Hispanics 9 -10110110110 blondes 9 -10110110110 chainsaws 9 -10110110110 Amundsen 9 -10110110110 fossils 9 -10110110110 maidens 9 -10110110110 high-schoolers 9 -10110110110 job-seekers 9 -10110110110 sweethearts 9 -10110110110 extraterrestrials 9 -10110110110 VADs 9 -10110110110 gynecologists 9 -10110110110 shanties 9 -10110110110 Dalis 9 -10110110110 supremacists 9 -10110110110 fascists 10 -10110110110 gators 10 -10110110110 serfs 10 -10110110110 weavers 10 -10110110110 farmlands 10 -10110110110 pre-schoolers 10 -10110110110 peregrines 10 -10110110110 tradesmen 10 -10110110110 fraternities 10 -10110110110 pinks 10 -10110110110 grunt 10 -10110110110 bellhops 10 -10110110110 incompetents 10 -10110110110 Burgundies 11 -10110110110 counterfeiters 11 -10110110110 schoolteachers 11 -10110110110 hoodlums 11 -10110110110 grandfathers 11 -10110110110 snatcher 11 -10110110110 goddesses 11 -10110110110 airmen 11 -10110110110 certainties 11 -10110110110 stepchildren 11 -10110110110 stylists 11 -10110110110 tyrants 11 -10110110110 eccentrics 11 -10110110110 tattoos 11 -10110110110 guardsmen 12 -10110110110 pitchmen 12 -10110110110 battleships 12 -10110110110 O-rings 12 -10110110110 dreamers 12 -10110110110 cardinals 12 -10110110110 donkeys 12 -10110110110 aristocrats 12 -10110110110 uncles 13 -10110110110 perennials 13 -10110110110 Buddhists 13 -10110110110 lambs 13 -10110110110 ballparks 13 -10110110110 zeroes 13 -10110110110 mini-malls 13 -10110110110 pebbles 13 -10110110110 homemakers 13 -10110110110 achievers 14 -10110110110 ethnics 14 -10110110110 individualists 14 -10110110110 magicians 14 -10110110110 punks 14 -10110110110 Olympias 14 -10110110110 Hyundais 15 -10110110110 visionaries 15 -10110110110 germs 15 -10110110110 jerks 15 -10110110110 chilies 15 -10110110110 martyrs 15 -10110110110 devils 15 -10110110110 dads 15 -10110110110 Anglos 15 -10110110110 suburbanites 15 -10110110110 trainmen 16 -10110110110 18-year-olds 16 -10110110110 preschoolers 16 -10110110110 Azerbaijanis 16 -10110110110 bootleggers 16 -10110110110 patrolmen 16 -10110110110 wimps 17 -10110110110 juveniles 17 -10110110110 protagonists 17 -10110110110 foremen 17 -10110110110 anti-communists 17 -10110110110 irises 17 -10110110110 brides 17 -10110110110 congregations 17 -10110110110 assailants 17 -10110110110 tombstones 18 -10110110110 shrines 18 -10110110110 palsy 18 -10110110110 berries 18 -10110110110 grandmothers 18 -10110110110 longshoremen 18 -10110110110 Buddhism 19 -10110110110 chicks 19 -10110110110 juniors 19 -10110110110 patriots 19 -10110110110 falcons 19 -10110110110 rookies 20 -10110110110 colonels 20 -10110110110 foxes 20 -10110110110 clowns 20 -10110110110 batters 20 -10110110110 monasteries 20 -10110110110 pianists 21 -10110110110 galaxies 22 -10110110110 moms 22 -10110110110 idiots 22 -10110110110 Bishops 22 -10110110110 objectors 22 -10110110110 neckties 22 -10110110110 traitors 23 -10110110110 baboons 23 -10110110110 racists 23 -10110110110 carnations 23 -10110110110 puppies 23 -10110110110 x 23 -10110110110 monsters 23 -10110110110 grown-ups 23 -10110110110 maquilas 23 -10110110110 Zionism 24 -10110110110 ants 24 -10110110110 parishes 24 -10110110110 robe 24 -10110110110 annuals 24 -10110110110 aprons 24 -10110110110 marketeers 25 -10110110110 playwrights 25 -10110110110 roaches 26 -10110110110 revivals 26 -10110110110 Peruvians 26 -10110110110 rockers 26 -10110110110 Ph.D.s 26 -10110110110 kittens 27 -10110110110 drunks 27 -10110110110 brakemen 27 -10110110110 child-bearing 28 -10110110110 Ethiopians 28 -10110110110 gardeners 28 -10110110110 adventurers 28 -10110110110 swords 28 -10110110110 soloists 28 -10110110110 daddy 28 -10110110110 doves 29 -10110110110 diplomas 29 -10110110110 pastors 29 -10110110110 microwaves 29 -10110110110 firemen 29 -10110110110 mansions 30 -10110110110 blurbs 30 -10110110110 eagles 31 -10110110110 witches 32 -10110110110 polyps 32 -10110110110 saints 32 -10110110110 suspenders 33 -10110110110 cleric 34 -10110110110 workmen 34 -10110110110 sportsmen 35 -10110110110 knights 36 -10110110110 winters 36 -10110110110 actresses 37 -10110110110 upstarts 37 -10110110110 tigers 37 -10110110110 orphans 38 -10110110110 cocktails 39 -10110110110 Cadillacs 41 -10110110110 candles 42 -10110110110 Catholicism 44 -10110110110 widows 44 -10110110110 childbearing 45 -10110110110 fetuses 45 -10110110110 adolescents 45 -10110110110 pregnancies 46 -10110110110 lobsters 46 -10110110110 boxers 46 -10110110110 teenagers 46 -10110110110 waiters 46 -10110110110 graffiti 48 -10110110110 Fords 51 -10110110110 co-defendants 51 -10110110110 caves 52 -10110110110 crooks 54 -10110110110 alcoholics 54 -10110110110 Tamils 54 -10110110110 M.B.A.s 55 -10110110110 nuns 57 -10110110110 poets 57 -10110110110 monkeys 58 -10110110110 sharks 58 -10110110110 motherhood 59 -10110110110 fellows 59 -10110110110 Protestants 61 -10110110110 cowboys 61 -10110110110 Southerners 67 -10110110110 herring 67 -10110110110 pupils 68 -10110110110 siblings 70 -10110110110 pitchers 71 -10110110110 angels 71 -10110110110 dystrophy 71 -10110110110 weeds 74 -10110110110 slaves 75 -10110110110 mayors 77 -10110110110 amateurs 81 -10110110110 schoolchildren 92 -10110110110 gentlemen 93 -10110110110 females 94 -10110110110 humanity 95 -10110110110 pets 97 -10110110110 prostitutes 99 -10110110110 elephants 103 -10110110110 townships 115 -10110110110 dependents 116 -10110110110 policemen 124 -10110110110 ducks 126 -10110110110 yuppies 142 -10110110110 sisters 148 -10110110110 husbands 156 -10110110110 grandchildren 158 -10110110110 teens 164 -10110110110 knight 164 -10110110110 priests 166 -10110110110 Catholics 168 -10110110110 cats 178 -10110110110 shorts 183 -10110110110 fathers 184 -10110110110 ladies 184 -10110110110 daughters 190 -10110110110 HMOs 190 -10110110110 spouses 199 -10110110110 youths 216 -10110110110 infants 217 -10110110110 males 218 -10110110110 wives 268 -10110110110 birds 275 -10110110110 teen-agers 279 -10110110110 ink 300 -10110110110 churches 303 -10110110110 neighborhoods 357 -10110110110 sons 361 -10110110110 babies 370 -10110110110 couples 428 -10110110110 girls 446 -10110110110 dogs 454 -10110110110 actors 482 -10110110110 mothers 509 -10110110110 boys 580 -10110110110 adults 613 -10110110110 Church 789 -10110110110 kids 1210 -10110110110 blacks 1590 -10110110110 families 2371 -10110110110 children 5202 -10110110110 men 5687 -10110110110 women 6264 -10110110111 sere 1 -10110110111 literalists 1 -10110110111 cost-inefficiency 1 -10110110111 woodcarvings 1 -10110110111 WEXCW 1 -10110110111 non-participative 1 -10110110111 stir-frys 1 -10110110111 tittles 1 -10110110111 1254.13 1 -10110110111 pina 1 -10110110111 CJs 1 -10110110111 self-confession 1 -10110110111 264-158 1 -10110110111 periodontics 1 -10110110111 decrepitude 1 -10110110111 1305.24 1 -10110110111 non-investors 1 -10110110111 Over-Population 1 -10110110111 KVIL-FM 1 -10110110111 Montagues 1 -10110110111 flashovers 1 -10110110111 salination 1 -10110110111 tribalism 1 -10110110111 wildlands 1 -10110110111 SwissAir 1 -10110110111 1,1-dichloroethylene 1 -10110110111 1,2-dichloroethane 1 -10110110111 1318.39 1 -10110110111 nearmisses 1 -10110110111 inflation/expansion 1 -10110110111 BDNIU 1 -10110110111 RSSWI 1 -10110110111 LDSWI 1 -10110110111 lechuza 1 -10110110111 12-pounders 1 -10110110111 57-0 1 -10110110111 Northeast. 1 -10110110111 ba-noo-noos 1 -10110110111 1243.32 1 -10110110111 1259.21 1 -10110110111 1241.75 1 -10110110111 617,300 1 -10110110111 selfhatred 1 -10110110111 pontificates 1 -10110110111 co-variance 1 -10110110111 SABRES 1 -10110110111 lectors 1 -10110110111 breastplates 1 -10110110111 3,183,200 1 -10110110111 bedstraw 1 -10110110111 1136.70 1 -10110110111 1235.50 1 -10110110111 diethycarbamazine 1 -10110110111 Matsu 1 -10110110111 1231.08 1 -10110110111 1208.77 1 -10110110111 1265.20 1 -10110110111 Bulawayo 1 -10110110111 disfavoring 1 -10110110111 1263.51 1 -10110110111 plantains 1 -10110110111 Pentecostals 1 -10110110111 NDPers 1 -10110110111 demagnitized 1 -10110110111 1246.79 1 -10110110111 underkarat 1 -10110110111 1240.15 1 -10110110111 divestures 1 -10110110111 depoliticized 1 -10110110111 servicess 1 -10110110111 1273.52 1 -10110110111 naphthalene 1 -10110110111 1260.56 1 -10110110111 near-stars 1 -10110110111 successes-yet-to-be 1 -10110110111 UGNEW 1 -10110110111 trotters 1 -10110110111 1271.35 1 -10110110111 practices. 1 -10110110111 1276.08 1 -10110110111 1428.01 1 -10110110111 hub-building 1 -10110110111 paperthrowing 1 -10110110111 self-managing 1 -10110110111 Monopoly. 1 -10110110111 ironwriters 1 -10110110111 Blauvelt 1 -10110110111 1261.37 1 -10110110111 Fasa-Renault 1 -10110110111 Asland 1 -10110110111 beggary 1 -10110110111 MCBKB 1 -10110110111 co-regent 1 -10110110111 ruthenium 1 -10110110111 retreaders 1 -10110110111 1258.05 1 -10110110111 1257.71 1 -10110110111 Tweedledumber 1 -10110110111 1257.04 1 -10110110111 1260.72 1 -10110110111 Termide 1 -10110110111 exercycling 1 -10110110111 1262.94 1 -10110110111 Anthems 1 -10110110111 1239.15 1 -10110110111 CELLU 1 -10110110111 leukemia/lymphoma 1 -10110110111 1249.00 1 -10110110111 1232.52 1 -10110110111 KwaNdeble 1 -10110110111 cretins 1 -10110110111 alyssum 1 -10110110111 transcoder 1 -10110110111 client-finder 1 -10110110111 1259.23 1 -10110110111 1257.05 1 -10110110111 construction. 1 -10110110111 1259.85 1 -10110110111 Pichon-Lalande 1 -10110110111 outlays. 1 -10110110111 1259.20 1 -10110110111 1255.47 1 -10110110111 1293.40 1 -10110110111 1298.96 1 -10110110111 1301.10 1 -10110110111 zineb 1 -10110110111 addons 1 -10110110111 Miri 1 -10110110111 Legitimacy 1 -10110110111 BNHNW 1 -10110110111 cassoulet 1 -10110110111 self-initiative 1 -10110110111 1299.91 1 -10110110111 juniper 1 -10110110111 asseverate 1 -10110110111 GCSWI 1 -10110110111 RFSWI 1 -10110110111 1303.27 1 -10110110111 federal-or 1 -10110110111 foot-draggers 1 -10110110111 1300.81 1 -10110110111 Irvings 1 -10110110111 guzzles 1 -10110110111 single-forward-gear 1 -10110110111 Agincourt 1 -10110110111 1264.17 1 -10110110111 HMSWI 1 -10110110111 HLSWI 1 -10110110111 XXSWI 1 -10110110111 2,241,000 1 -10110110111 2,097,000 1 -10110110111 1251.36 1 -10110110111 deep. 1 -10110110111 individualism. 1 -10110110111 tokkins 1 -10110110111 BZS 1 -10110110111 1268.86 1 -10110110111 2,074 1 -10110110111 1274.92 1 -10110110111 consume. 1 -10110110111 17. 1 -10110110111 daughters. 1 -10110110111 horsewoman 1 -10110110111 know-it-alls 1 -10110110111 1271.37 1 -10110110111 choucroute 1 -10110110111 KDVR 1 -10110110111 azimuths 1 -10110110111 position-reduction 1 -10110110111 parazylene 1 -10110110111 spleens 1 -10110110111 Kirby-Warrick 1 -10110110111 ill-fed 1 -10110110111 In-Fashion 1 -10110110111 Pre-Raphaelites 1 -10110110111 chamfers 1 -10110110111 1238.12 1 -10110110111 tediousness 1 -10110110111 video-recorders 1 -10110110111 magpies 1 -10110110111 spittin 1 -10110110111 commission-discounting 1 -10110110111 pro-something 1 -10110110111 Burst 1 -10110110111 Panics 1 -10110110111 1261.73 1 -10110110111 1264.24 1 -10110110111 asset-write-downs 1 -10110110111 WHJY-FM 1 -10110110111 near-sightedness 1 -10110110111 1250.56 1 -10110110111 paradigm-shifting 1 -10110110111 1257.30 1 -10110110111 weapons-carriers 1 -10110110111 1263.25 1 -10110110111 boozing 1 -10110110111 prioritizing 1 -10110110111 frostings 1 -10110110111 1248.83 1 -10110110111 Angola/Namibia 1 -10110110111 1236.24 1 -10110110111 non-retailers 1 -10110110111 1215.81 1 -10110110111 outer-courter 1 -10110110111 Bimbimba 1 -10110110111 1208.98 1 -10110110111 Fist-Fight 1 -10110110111 God-knows-what 1 -10110110111 assests 1 -10110110111 combustibles 1 -10110110111 Cardozos 1 -10110110111 1214.34 1 -10110110111 punctuations 1 -10110110111 self-medicating 1 -10110110111 Alabamans 1 -10110110111 nine-year-olds 1 -10110110111 1236.31 1 -10110110111 9.9s 1 -10110110111 pokerfaced 1 -10110110111 Bean. 1 -10110110111 Benneton 1 -10110110111 speediness 1 -10110110111 vasculitis 1 -10110110111 streamliner 1 -10110110111 free-booters 1 -10110110111 terrorist-watchers 1 -10110110111 Sckholm 1 -10110110111 Dacron 1 -10110110111 Birkenau 1 -10110110111 cabinetmaking 1 -10110110111 1164.05 1 -10110110111 cinematographers 1 -10110110111 actin 1 -10110110111 Curitiba 1 -10110110111 sub-subcontractors 1 -10110110111 1247.16 1 -10110110111 Precandidates 1 -10110110111 1196.79 1 -10110110111 Enmemus 1 -10110110111 1195.34 1 -10110110111 mastectomies 1 -10110110111 1432.17 1 -10110110111 non-achievements 1 -10110110111 WTOK-TV 1 -10110110111 1135.31 1 -10110110111 1148.43 1 -10110110111 syllogisms 1 -10110110111 1178.23 1 -10110110111 Screwy 1 -10110110111 1179.61 1 -10110110111 post-feminism 1 -10110110111 grass-cutters 1 -10110110111 teachers. 1 -10110110111 abettor 1 -10110110111 1270.56 1 -10110110111 Perly 1 -10110110111 fax-nots 1 -10110110111 1265.54 1 -10110110111 Steeringly 1 -10110110111 headchoppings 1 -10110110111 1278.28 1 -10110110111 best-equipped 1 -10110110111 Intertan 1 -10110110111 1278.85 1 -10110110111 amens 1 -10110110111 asp 1 -10110110111 waxwings 1 -10110110111 synagogues. 1 -10110110111 1261.27 1 -10110110111 1256.19 1 -10110110111 megabuyouts 1 -10110110111 Fagin 1 -10110110111 dividends. 1 -10110110111 1254.80 1 -10110110111 leads. 1 -10110110111 1255.49 1 -10110110111 lawsuit-threats 1 -10110110111 half-castes 1 -10110110111 8258C 1 -10110110111 undersave 1 -10110110111 non-conspiratorial 1 -10110110111 hardhats 1 -10110110111 Self-Fulfillment 1 -10110110111 non-patriots 1 -10110110111 1271.26 1 -10110110111 Al-Ahd 1 -10110110111 1x 1 -10110110111 Gondal 1 -10110110111 NSFnet 1 -10110110111 Etela 1 -10110110111 crime-fighting-programs 1 -10110110111 Chaget 1 -10110110111 Midorikawas 1 -10110110111 1288.45 1 -10110110111 harassment. 1 -10110110111 1934. 1 -10110110111 basketball-star 1 -10110110111 therapees 1 -10110110111 speaker-for-all-occasions 1 -10110110111 1428.33 1 -10110110111 Ranidine 1 -10110110111 urbanism 1 -10110110111 1426.76 1 -10110110111 1244.85 1 -10110110111 winglets 1 -10110110111 Thalheimers 1 -10110110111 weenies 1 -10110110111 Indian-past 1 -10110110111 disillusionments 1 -10110110111 Wilsonart 1 -10110110111 1425.21 1 -10110110111 1423.93 1 -10110110111 1289.88 1 -10110110111 Latesaver 1 -10110110111 squab 1 -10110110111 greys 1 -10110110111 1424.50 1 -10110110111 35.04 1 -10110110111 1426.35 1 -10110110111 G5 1 -10110110111 Pevesa 1 -10110110111 Creamsicle 1 -10110110111 Brightest 1 -10110110111 safety-study 1 -10110110111 1422.54 1 -10110110111 expedience. 1 -10110110111 Canookies 1 -10110110111 limetree 1 -10110110111 Perelmans 1 -10110110111 muskellunge 1 -10110110111 anti-Gospel 1 -10110110111 tortured. 1 -10110110111 1428.06 1 -10110110111 tash 1 -10110110111 humiliation. 1 -10110110111 ultra-coiffed 1 -10110110111 1421.17 1 -10110110111 rewrapped 1 -10110110111 Meshed 1 -10110110111 Wurtsmith 1 -10110110111 Salonika 1 -10110110111 subjourneymen 1 -10110110111 1407.67 1 -10110110111 SHCOW 1 -10110110111 BYSWI 1 -10110110111 1316.79 1 -10110110111 1323.94 1 -10110110111 Abyssinians 1 -10110110111 ex-jocks 1 -10110110111 least-tested 1 -10110110111 lackadaisy 1 -10110110111 1311.35 1 -10110110111 1306.29 1 -10110110111 1339.54 1 -10110110111 unconstructive 1 -10110110111 1288.85 1 -10110110111 weapons-dealers 1 -10110110111 5,000s 1 -10110110111 28,439 1 -10110110111 1338.82 1 -10110110111 1289.40 1 -10110110111 Afghanis 1 -10110110111 1287.29 1 -10110110111 reinsert 1 -10110110111 caneberries 1 -10110110111 conches 1 -10110110111 WFDX 1 -10110110111 KJAC 1 -10110110111 WWAY 1 -10110110111 1322.24 1 -10110110111 Jay-Jay 1 -10110110111 layabouts 1 -10110110111 redheads 1 -10110110111 Belaga 1 -10110110111 1294.54 1 -10110110111 writers-novelist 1 -10110110111 GNS 1 -10110110111 1309.29 1 -10110110111 7,412,697 1 -10110110111 1287.53 1 -10110110111 business-people 1 -10110110111 McD.L.T.s 1 -10110110111 hydroxyapatite 1 -10110110111 Squirtco 1 -10110110111 77,484 1 -10110110111 1296.20 1 -10110110111 experience. 1 -10110110111 chipmunks 1 -10110110111 Lues 1 -10110110111 SQA-B 1 -10110110111 1264.55 1 -10110110111 establish. 1 -10110110111 1387.21 1 -10110110111 1392.19 1 -10110110111 non-incendiary 1 -10110110111 monophonic 1 -10110110111 communications-driven 1 -10110110111 1240.58 1 -10110110111 Cassingham 1 -10110110111 Obies 1 -10110110111 1419.84 1 -10110110111 bed-hopping 1 -10110110111 maroons 1 -10110110111 funistrada 1 -10110110111 sickles 1 -10110110111 permethrin 1 -10110110111 methods. 1 -10110110111 educationists 1 -10110110111 1347.05 1 -10110110111 puzzlings 1 -10110110111 '42 1 -10110110111 1254.50 1 -10110110111 part-adventurer 1 -10110110111 tear-gassing 1 -10110110111 313-966-3300 1 -10110110111 phentolamine 1 -10110110111 Terumo 1 -10110110111 1326.91 1 -10110110111 Thyssens 1 -10110110111 amended. 1 -10110110111 Jubail 1 -10110110111 volitional 1 -10110110111 masturbating 1 -10110110111 1379.67 1 -10110110111 1265.28 1 -10110110111 prize-fest 1 -10110110111 catechists 1 -10110110111 poverty. 1 -10110110111 chuckholes 1 -10110110111 Vanille 1 -10110110111 Tradesmen 1 -10110110111 castanospermine 1 -10110110111 gamekeepers 1 -10110110111 tie. 1 -10110110111 nonconsent 1 -10110110111 homographs 1 -10110110111 Sinners 1 -10110110111 steelies 1 -10110110111 Anarchism 1 -10110110111 shriekings 1 -10110110111 food. 1 -10110110111 acquisitions. 1 -10110110111 Spotteswoode 1 -10110110111 1286.70 1 -10110110111 Radom 1 -10110110111 multi-violations 1 -10110110111 symbolic. 1 -10110110111 fornication 1 -10110110111 1217.02 1 -10110110111 non-taxpayers 1 -10110110111 1234.69 1 -10110110111 cheapskates 1 -10110110111 Liguria 1 -10110110111 1209.16 1 -10110110111 Kaboom 1 -10110110111 Comores 1 -10110110111 1196.29 1 -10110110111 Angaur 1 -10110110111 cowhand 1 -10110110111 insecurely 1 -10110110111 1424.56 1 -10110110111 Calistoga 1 -10110110111 MFG5987 1 -10110110111 chemophobia 1 -10110110111 footmen 1 -10110110111 1234.02 1 -10110110111 1204.02 1 -10110110111 Trollope 1 -10110110111 floor-by-floor 1 -10110110111 humidifiers 1 -10110110111 rubbings 1 -10110110111 Bizerte 1 -10110110111 periwinkles 1 -10110110111 Eurock 1 -10110110111 1243.29 1 -10110110111 booteries 1 -10110110111 overindulges 1 -10110110111 jurisidictions 1 -10110110111 fatness 1 -10110110111 self-realization 1 -10110110111 1231.80 1 -10110110111 over-crowding 1 -10110110111 1426.97 1 -10110110111 jivin 1 -10110110111 1252.04 1 -10110110111 4,024 1 -10110110111 gadgeteers 1 -10110110111 bumpily 1 -10110110111 pro-Australian 1 -10110110111 1258.52 1 -10110110111 Trigonometry 1 -10110110111 Spence-Chapin 1 -10110110111 732,699 1 -10110110111 nonselective 1 -10110110111 Celestina 1 -10110110111 re-admissions 1 -10110110111 rationality. 1 -10110110111 nationalist/religious 1 -10110110111 1244.80 1 -10110110111 ski-lifts 1 -10110110111 Fugua 1 -10110110111 non-abandonment 1 -10110110111 semiliteracy 1 -10110110111 Manigreida 1 -10110110111 petro-politics 1 -10110110111 bewigged 1 -10110110111 Ningpo 1 -10110110111 trouble/But 1 -10110110111 1411.06 1 -10110110111 jiggering 1 -10110110111 haws 1 -10110110111 Creamsicles 1 -10110110111 Victrolas 1 -10110110111 Punchinello 1 -10110110111 1435.20 1 -10110110111 DPSW 1 -10110110111 Sunar/Hauserman 1 -10110110111 Burritos 1 -10110110111 WRTV 1 -10110110111 1435.34 1 -10110110111 38-16 1 -10110110111 over-fishing 1 -10110110111 welfare-staters 1 -10110110111 1441.25 1 -10110110111 shovers 1 -10110110111 Cacherels 1 -10110110111 2,673 1 -10110110111 shuffle-ball-change 1 -10110110111 parchment-thin 1 -10110110111 Matrimony 1 -10110110111 1190.25 1 -10110110111 elswhere 1 -10110110111 1191.42 1 -10110110111 1198.70 1 -10110110111 Frescobaldi 1 -10110110111 imagination. 1 -10110110111 zabaglione 1 -10110110111 EPCOT 1 -10110110111 1191.10 1 -10110110111 wellgroomed 1 -10110110111 1180.36 1 -10110110111 1186.01 1 -10110110111 Modikwe 1 -10110110111 1426.05 1 -10110110111 1205.43 1 -10110110111 smarter. 1 -10110110111 1199.86 1 -10110110111 waxer 1 -10110110111 1429.80 1 -10110110111 1422.81 1 -10110110111 aboveboard. 1 -10110110111 power-stingy 1 -10110110111 1409.97 1 -10110110111 party-ware 1 -10110110111 1425.64 1 -10110110111 anti-Filipino 1 -10110110111 Alcmene 1 -10110110111 non-yuppies 1 -10110110111 HPS.WI 1 -10110110111 lasses 1 -10110110111 1232.26 1 -10110110111 Noodles 1 -10110110111 week-out 1 -10110110111 anti-historical 1 -10110110111 job-hunt 1 -10110110111 chromolithography 1 -10110110111 greenbelts 1 -10110110111 1429.50 1 -10110110111 peace-monitoring 1 -10110110111 1235.88 1 -10110110111 demokratizatsia 1 -10110110111 Velosef 1 -10110110111 undercautious 1 -10110110111 neutering 1 -10110110111 silenced. 1 -10110110111 Xomen-E5 1 -10110110111 contrived-confrontation 1 -10110110111 1231.18 1 -10110110111 Avebury 1 -10110110111 rearmings 1 -10110110111 Gestevision-Tele-cinco 1 -10110110111 cop-killers 1 -10110110111 psychokinesis 1 -10110110111 John-of-there 1 -10110110111 4,406,000 1 -10110110111 1235.18 1 -10110110111 mugwumps 1 -10110110111 capybaras 1 -10110110111 vacillations 1 -10110110111 cefatrizine 1 -10110110111 Tripura 1 -10110110111 1241.69 1 -10110110111 1327.39 1 -10110110111 WOE 1 -10110110111 Cifani 1 -10110110111 1252.94 1 -10110110111 kitchware 1 -10110110111 Fiberall 1 -10110110111 1248.51 1 -10110110111 mortgage-closings 1 -10110110111 duplication. 1 -10110110111 3,417 1 -10110110111 scholar-recluses 1 -10110110111 conformitarianism 1 -10110110111 suffixes 1 -10110110111 1240.02 1 -10110110111 trademarks. 1 -10110110111 bioengineers 1 -10110110111 1323.28 1 -10110110111 1234.28 1 -10110110111 1240.94 1 -10110110111 misshape 1 -10110110111 anti-Stalinists 1 -10110110111 meanly 1 -10110110111 1324.66 1 -10110110111 1233.91 1 -10110110111 1305.03 1 -10110110111 1240.18 1 -10110110111 N-platform 1 -10110110111 Vrischgewaagd 1 -10110110111 half-nelsons 1 -10110110111 playgirls 1 -10110110111 1234.99 1 -10110110111 1314.43 1 -10110110111 undermotivated 1 -10110110111 Aquariums 1 -10110110111 detentists 1 -10110110111 Bielefeld 1 -10110110111 jack-of-all 1 -10110110111 theatergoing 1 -10110110111 tranquilize 1 -10110110111 Meese. 1 -10110110111 ex-brother-in-law 1 -10110110111 honeymooned 1 -10110110111 Catholic-baiter 1 -10110110111 Mini-Mitelite 1 -10110110111 minus-four 1 -10110110111 Saltonstalls 1 -10110110111 dissembler 1 -10110110111 Nowheresville 1 -10110110111 1285.34 1 -10110110111 1243.74 1 -10110110111 half-measures 1 -10110110111 Travelodge 1 -10110110111 WTAT-TV 1 -10110110111 1331.31 1 -10110110111 penny-pincher 1 -10110110111 Leleiohaku 1 -10110110111 reasonable. 1 -10110110111 cooperations 1 -10110110111 30,846 1 -10110110111 1211.81 1 -10110110111 housecleaners 1 -10110110111 Stelazine 1 -10110110111 1212.52 1 -10110110111 1207.43 1 -10110110111 anti-state. 1 -10110110111 pressurizations 1 -10110110111 1318.22 1 -10110110111 blindered 1 -10110110111 unintrusive 1 -10110110111 Nasty 1 -10110110111 checkin 1 -10110110111 1205.56 1 -10110110111 1211.59 1 -10110110111 Vanja 1 -10110110111 euphorbias 1 -10110110111 counter-coups 1 -10110110111 emoted 1 -10110110111 usherettes 1 -10110110111 camping. 1 -10110110111 over-careful 1 -10110110111 11x14 1 -10110110111 3,522,000 1 -10110110111 137,312 1 -10110110111 mishandles 1 -10110110111 handrails 1 -10110110111 Sportvans 1 -10110110111 4,860 1 -10110110111 1275.87 1 -10110110111 regularly. 1 -10110110111 letterwriters 1 -10110110111 C-natural 1 -10110110111 white-supremacists 1 -10110110111 1325.81 1 -10110110111 baklava 1 -10110110111 Ing.C. 1 -10110110111 1326.66 1 -10110110111 soon-to-be-Rep 1 -10110110111 1306.69 1 -10110110111 novellas 1 -10110110111 Gamelords 1 -10110110111 1302.50 1 -10110110111 Scranton/Wilkes-Barre 1 -10110110111 1301.57 1 -10110110111 Taipei.Markets 1 -10110110111 WLFL 1 -10110110111 1297.76 1 -10110110111 1301.42 1 -10110110111 guanine 1 -10110110111 de-stress 1 -10110110111 Cantarell 1 -10110110111 costwise 1 -10110110111 neuraminidase 1 -10110110111 sustainment 1 -10110110111 1302.35 1 -10110110111 plumber-steamfitter 1 -10110110111 money-mad 1 -10110110111 groundwaters 1 -10110110111 KYUU 1 -10110110111 Sonalan 1 -10110110111 1311.64 1 -10110110111 diddle 1 -10110110111 SevenUp 1 -10110110111 Chemgrass 1 -10110110111 1277.63 1 -10110110111 M3. 1 -10110110111 film-watching 1 -10110110111 one-on-four 1 -10110110111 1309.24 1 -10110110111 pro-fascist 1 -10110110111 Legs/Ankles 1 -10110110111 KCOP-13 1 -10110110111 half-dollar 1 -10110110111 Brandenton 1 -10110110111 Fiume 1 -10110110111 unreadiness 1 -10110110111 marketing-intensive 1 -10110110111 FilmAccord 1 -10110110111 1504 1 -10110110111 overambition 1 -10110110111 1308.99 1 -10110110111 1246.92 1 -10110110111 psychothriller 1 -10110110111 1263.90 1 -10110110111 Raichle 1 -10110110111 corncribs 1 -10110110111 Mendelson-Zeller 1 -10110110111 acquisitions.s 1 -10110110111 Omri 1 -10110110111 kleptomania 1 -10110110111 UMass-Amherst 1 -10110110111 anxiety-provoking-phenomenon 1 -10110110111 L&Ms 1 -10110110111 pro-soldier 1 -10110110111 worldweary 1 -10110110111 1275.68 1 -10110110111 destructor 1 -10110110111 1981C 1 -10110110111 gloomers 1 -10110110111 1324.24 1 -10110110111 1222.89 1 -10110110111 underinflation 1 -10110110111 1224.86 1 -10110110111 blatherers 1 -10110110111 1270.41 1 -10110110111 MD83s 1 -10110110111 snuffle 1 -10110110111 emasculating 1 -10110110111 EMCo 1 -10110110111 hunger. 1 -10110110111 unmenacing 1 -10110110111 1235.65 1 -10110110111 212-207 1 -10110110111 cisplatin 1 -10110110111 1233.35 1 -10110110111 close-minded 1 -10110110111 abridgment 1 -10110110111 HCFC-142b 1 -10110110111 WCMH-TV 1 -10110110111 2,424 1 -10110110111 2,409 1 -10110110111 bullfighting 1 -10110110111 KCPM-TV 1 -10110110111 Cademesa 1 -10110110111 well-led 1 -10110110111 concepts. 1 -10110110111 Crescendo 1 -10110110111 1252.11 1 -10110110111 testing. 1 -10110110111 pentagrams 1 -10110110111 unsafely 1 -10110110111 freebase 1 -10110110111 access-seeking 1 -10110110111 1218.49 1 -10110110111 tollways 1 -10110110111 1239.96 1 -10110110111 Columbia/Tri-Star 1 -10110110111 WJLA-TV 1 -10110110111 WPIX-FM 1 -10110110111 Slazenger 1 -10110110111 blue-shuttered 1 -10110110111 Scripto 1 -10110110111 ducktails 1 -10110110111 haplessness 1 -10110110111 whipcracking 1 -10110110111 dismayed. 1 -10110110111 1262.56 1 -10110110111 clerestories 1 -10110110111 nail-biters 1 -10110110111 sitgo 1 -10110110111 simperers 1 -10110110111 puffins 1 -10110110111 1204.43 1 -10110110111 Ignis 1 -10110110111 1199.74 1 -10110110111 PPX-Projection 1 -10110110111 mohawks 1 -10110110111 ethnic-blind 1 -10110110111 rocosms 1 -10110110111 1203.40 1 -10110110111 commie-nukers 1 -10110110111 Roundheads 1 -10110110111 1197.31 1 -10110110111 Oxidol 1 -10110110111 Sleepinal 1 -10110110111 1199.72 1 -10110110111 NP-27 1 -10110110111 hitwoman 1 -10110110111 halters 1 -10110110111 cabalettas 1 -10110110111 Decorating/Remodeling 1 -10110110111 limit-drop 1 -10110110111 1203.74 1 -10110110111 justness 1 -10110110111 Alsace-Lorraine 1 -10110110111 1204.23 1 -10110110111 sinuousness 1 -10110110111 somatotype 1 -10110110111 vise- 1 -10110110111 Hyacinthe 1 -10110110111 1229.26 1 -10110110111 overmedicated 1 -10110110111 alyssums 1 -10110110111 1223.56 1 -10110110111 skittles 1 -10110110111 Procopius 1 -10110110111 spoonerisms 1 -10110110111 bird-lovers 1 -10110110111 Ganny 1 -10110110111 1196.62 1 -10110110111 peanuts. 1 -10110110111 oppressiveness 1 -10110110111 plume-grass 1 -10110110111 bindweed 1 -10110110111 shadowboxing 1 -10110110111 pension-minded 1 -10110110111 all-exclusive 1 -10110110111 .5335 1 -10110110111 1193.57 1 -10110110111 1256.59 1 -10110110111 counseling. 1 -10110110111 under-breastplates 1 -10110110111 nondeceptive 1 -10110110111 Tiger-Heli 1 -10110110111 '67 1 -10110110111 VOOMs 1 -10110110111 1247.24 1 -10110110111 Meisterbrau 1 -10110110111 JewishMen 1 -10110110111 Baudelaire 1 -10110110111 Emersons 1 -10110110111 enviro-cranks 1 -10110110111 goldfinches 1 -10110110111 Stolypin 1 -10110110111 2,191 1 -10110110111 provisioned 1 -10110110111 hummingbirds 1 -10110110111 Royales 1 -10110110111 yippiedom 1 -10110110111 timeconsuming 1 -10110110111 1279.49 1 -10110110111 1251.15 1 -10110110111 Shkoder 1 -10110110111 gaudier 1 -10110110111 beetgrown 1 -10110110111 fathers-to-be 1 -10110110111 1269.84 1 -10110110111 1288.32 1 -10110110111 patchouli 1 -10110110111 B-pluses 1 -10110110111 1290.80 1 -10110110111 Radek 1 -10110110111 wittiness 1 -10110110111 time-intensive 1 -10110110111 demonopolization 1 -10110110111 Gnawbone 1 -10110110111 38s 1 -10110110111 slipcovers 1 -10110110111 WZDX 1 -10110110111 Thessalonica 1 -10110110111 1235.80 1 -10110110111 secessions 1 -10110110111 2,951,000 1 -10110110111 skinnydipped 1 -10110110111 1277.31 1 -10110110111 Tabuk 1 -10110110111 1240.34 1 -10110110111 regulations. 1 -10110110111 hypocrisies 1 -10110110111 8825094 1 -10110110111 W-2P 1 -10110110111 intelligibility 1 -10110110111 1246.14 1 -10110110111 MacPaint 1 -10110110111 MacInnes 1 -10110110111 Oscar. 1 -10110110111 indirection 1 -10110110111 Nihoa 1 -10110110111 leatherwear 1 -10110110111 IRBFV 1 -10110110111 1235.36 1 -10110110111 1239.84 1 -10110110111 7,114,000 1 -10110110111 Turks. 1 -10110110111 ringlets 1 -10110110111 mousses 1 -10110110111 staff-dominated 1 -10110110111 inequitable. 1 -10110110111 Escada 1 -10110110111 1258.43 1 -10110110111 disk-readers 1 -10110110111 WedtechCorp. 1 -10110110111 1245.63 1 -10110110111 word-slips 1 -10110110111 Boulogne 1 -10110110111 Topsiders 2 -10110110111 Croats 2 -10110110111 Noni 2 -10110110111 ship-broking 2 -10110110111 chloroform 2 -10110110111 disinvest 2 -10110110111 squiggles 2 -10110110111 ceasefires 2 -10110110111 Rheims 2 -10110110111 separationist-inspired 2 -10110110111 cupidity 2 -10110110111 leptons 2 -10110110111 callouses 2 -10110110111 Contradiction 2 -10110110111 sugarplums 2 -10110110111 1,910,000 2 -10110110111 13-year-olds 2 -10110110111 deckhands 2 -10110110111 Voltron 2 -10110110111 Pardons 2 -10110110111 Helpmate 2 -10110110111 Cif 2 -10110110111 right-handers 2 -10110110111 woodworm 2 -10110110111 goof-offs 2 -10110110111 Nekrich 2 -10110110111 Alceste 2 -10110110111 pimples 2 -10110110111 bedcovers 2 -10110110111 Mukachevo 2 -10110110111 mass-marketers 2 -10110110111 Kiwis 2 -10110110111 WPDS-FM 2 -10110110111 progestogens 2 -10110110111 talcs 2 -10110110111 Trabants 2 -10110110111 Lao-tse 2 -10110110111 lawfulness 2 -10110110111 rhododendrons 2 -10110110111 Lorelco 2 -10110110111 wirecutters 2 -10110110111 cougars 2 -10110110111 joke-telling 2 -10110110111 gibbons 2 -10110110111 restructurers 2 -10110110111 BU 2 -10110110111 piccolos 2 -10110110111 Quizzard 2 -10110110111 Mattapan 2 -10110110111 Suzdal 2 -10110110111 minipiano 2 -10110110111 fieldworkers 2 -10110110111 KangaROOS 2 -10110110111 frisbees 2 -10110110111 whatnot 2 -10110110111 WEAG-FM 2 -10110110111 WZOU-FM 2 -10110110111 tobacco-growers 2 -10110110111 pound-foolish 2 -10110110111 Merlots 2 -10110110111 Graben 2 -10110110111 popes 2 -10110110111 corner-cutting 2 -10110110111 EESPs 2 -10110110111 nonstrikers 2 -10110110111 024s 2 -10110110111 upper- 2 -10110110111 Freemasons 2 -10110110111 coroners 2 -10110110111 charges. 2 -10110110111 rapeseeds 2 -10110110111 1208.75 2 -10110110111 846,625 2 -10110110111 cottonseeds 2 -10110110111 homesteaders 2 -10110110111 non-believers 2 -10110110111 joysticks 2 -10110110111 rocketry 2 -10110110111 1263.06 2 -10110110111 switchblades 2 -10110110111 brassware 2 -10110110111 bisexuals 2 -10110110111 Krasker 2 -10110110111 legumes 2 -10110110111 deutschemarks 2 -10110110111 Barbuda 2 -10110110111 Trotskyists 2 -10110110111 fellow-travelers 2 -10110110111 leukopenia 2 -10110110111 storeowners 2 -10110110111 nonfunctional 2 -10110110111 Alianca 2 -10110110111 broads 2 -10110110111 Myrthe 2 -10110110111 clinchers 2 -10110110111 ohs 2 -10110110111 goldsmiths 2 -10110110111 Pegu 2 -10110110111 maracas 2 -10110110111 DC-10-40s 2 -10110110111 regroupings 2 -10110110111 1304.37 2 -10110110111 Warda 2 -10110110111 not-Orthodox 2 -10110110111 dillettants 2 -10110110111 Hyderabad 2 -10110110111 handsaws 2 -10110110111 mini-vehicles 2 -10110110111 hermeneutics 2 -10110110111 phencyclidine 2 -10110110111 back-biting 2 -10110110111 land-rich 2 -10110110111 KTXH-TV 2 -10110110111 Zelome 2 -10110110111 almanacs 2 -10110110111 zebras 2 -10110110111 KOAQ-FM 2 -10110110111 ourselves. 2 -10110110111 PFB 2 -10110110111 1243.19 2 -10110110111 23s 2 -10110110111 mid-1998 2 -10110110111 Intergamma 2 -10110110111 servicewomen 2 -10110110111 obfuscations 2 -10110110111 1258.60 2 -10110110111 1273.24 2 -10110110111 Friscol 2 -10110110111 ligaments 2 -10110110111 non-Mormons 2 -10110110111 re-equipping 2 -10110110111 lesser-knowns 2 -10110110111 '58 2 -10110110111 mandolins 2 -10110110111 gigahertz 2 -10110110111 LAKs 2 -10110110111 Gilbraltar 2 -10110110111 Immunopathology 2 -10110110111 E-350s 2 -10110110111 broker/dealers 2 -10110110111 clamshells 2 -10110110111 shoot-outs 2 -10110110111 1250.12 2 -10110110111 WBFS-TV 2 -10110110111 wisteria 2 -10110110111 indeterminacy 2 -10110110111 Grabbits 2 -10110110111 Q-Tips 2 -10110110111 Musicmasters 2 -10110110111 Gouda 2 -10110110111 non-payers 2 -10110110111 nonbanks 2 -10110110111 ex-Rep 2 -10110110111 MBO 2 -10110110111 Tinian 2 -10110110111 gulls 2 -10110110111 scenically 2 -10110110111 Rumania 2 -10110110111 TelePrompTer 2 -10110110111 derris 2 -10110110111 vibraphone 2 -10110110111 thesauruses 2 -10110110111 upholsterers 2 -10110110111 mullets 2 -10110110111 cheetahs 2 -10110110111 Irbil 2 -10110110111 1232.64 2 -10110110111 Samothrace 2 -10110110111 counter-charges 2 -10110110111 tularemia 2 -10110110111 1485 2 -10110110111 uncongested 2 -10110110111 geeks 2 -10110110111 KCPM 2 -10110110111 KNBR-AM 2 -10110110111 landlubbers 2 -10110110111 metallurgists 2 -10110110111 Xydar 2 -10110110111 pre-teens 2 -10110110111 Maroun 2 -10110110111 freebooters 2 -10110110111 Cacho 2 -10110110111 Fascists 2 -10110110111 stretchouts 2 -10110110111 12s 2 -10110110111 perseverence 2 -10110110111 non-Britons 2 -10110110111 cavils 2 -10110110111 Prudential/Simon 2 -10110110111 IL-3 2 -10110110111 Anderson-Little 3 -10110110111 diaphragms 3 -10110110111 CFOs 3 -10110110111 employee-owners 3 -10110110111 myrrh 3 -10110110111 Keoghs 3 -10110110111 Rexfor 3 -10110110111 savings-and-loans 3 -10110110111 videophiles 3 -10110110111 cyanides 3 -10110110111 TC3s 3 -10110110111 Tonga 3 -10110110111 conjoined 3 -10110110111 nonfarmers 3 -10110110111 non-shareholders 3 -10110110111 Tabriz 3 -10110110111 F-5s 3 -10110110111 non-employees 3 -10110110111 ballot-stuffing 3 -10110110111 catalogues 3 -10110110111 lymphomas 3 -10110110111 WJBK-TV 3 -10110110111 salesclerks 3 -10110110111 polishers 3 -10110110111 supplicants 3 -10110110111 Windex 3 -10110110111 true-to-life 3 -10110110111 Pleiku 3 -10110110111 cultists 3 -10110110111 talismans 3 -10110110111 YKK 3 -10110110111 contortionists 3 -10110110111 warehousemen 3 -10110110111 Sunbury 3 -10110110111 Buckpasser 3 -10110110111 Mazdas 3 -10110110111 MacFarlanes 3 -10110110111 showgirls 3 -10110110111 humanitarianism 3 -10110110111 persecutions 3 -10110110111 vice-versa 3 -10110110111 piggies 3 -10110110111 Samarkand 3 -10110110111 sequentially 3 -10110110111 goblins 3 -10110110111 IndalGlass 3 -10110110111 jackrabbits 3 -10110110111 A-6s 3 -10110110111 thane 3 -10110110111 steamships 3 -10110110111 mirages 3 -10110110111 Mfusi 3 -10110110111 butlers 3 -10110110111 GPs 3 -10110110111 canapes 3 -10110110111 4,280 3 -10110110111 delis 3 -10110110111 microbiologists 3 -10110110111 Cacharel 3 -10110110111 non-voters 3 -10110110111 teahouses 3 -10110110111 Thomson-CGR 3 -10110110111 brimstone 3 -10110110111 songbooks 3 -10110110111 black-marketeering 3 -10110110111 mayo 3 -10110110111 drudges 3 -10110110111 WRKO 3 -10110110111 forceably 3 -10110110111 18-to-24-year-olds 3 -10110110111 Shiism 3 -10110110111 M-3 3 -10110110111 orthopedists 3 -10110110111 buckwheat 3 -10110110111 non-violence 3 -10110110111 entrepreneurism 3 -10110110111 Topazes 3 -10110110111 depressurization 3 -10110110111 MCPs 3 -10110110111 under-researched 3 -10110110111 unilateralists 3 -10110110111 Gynecology 3 -10110110111 WHBQ-AM 3 -10110110111 harpoons 3 -10110110111 grandiosity 3 -10110110111 edema 3 -10110110111 creeds 3 -10110110111 Galicians 3 -10110110111 taillights 3 -10110110111 devil-take-the-hindmost 3 -10110110111 pickerel 3 -10110110111 Cosima 3 -10110110111 jaguars 3 -10110110111 Regaine 3 -10110110111 ex-presidents 3 -10110110111 docility 3 -10110110111 seamanship 3 -10110110111 aminoglycosides 3 -10110110111 weed-killers 3 -10110110111 dogwood 3 -10110110111 nonmanufacturers 3 -10110110111 Azeris 3 -10110110111 arms-makers 3 -10110110111 Dominica 3 -10110110111 non-innovators 3 -10110110111 guppies 3 -10110110111 starfish 3 -10110110111 Monetarism 3 -10110110111 gluepots 3 -10110110111 demerits 3 -10110110111 gatherers 4 -10110110111 Mastercards 4 -10110110111 counterbids 4 -10110110111 bottom-fishers 4 -10110110111 non-users 4 -10110110111 asylum-seekers 4 -10110110111 2035 4 -10110110111 Byelorussians 4 -10110110111 flashbulbs 4 -10110110111 Jacuzzis 4 -10110110111 TV3 4 -10110110111 mortuaries 4 -10110110111 Plymouths 4 -10110110111 quarantines 4 -10110110111 Vanuatuans 4 -10110110111 non-blacks 4 -10110110111 subzones 4 -10110110111 derailments 4 -10110110111 sapphires 4 -10110110111 Arab-Americans 4 -10110110111 lyricists 4 -10110110111 Benghazi 4 -10110110111 pilings 4 -10110110111 mothers-to-be 4 -10110110111 Caucasians 4 -10110110111 Jove 4 -10110110111 ninety-two 4 -10110110111 zags 4 -10110110111 salespersons 4 -10110110111 seven-year-olds 4 -10110110111 Mazlat 4 -10110110111 brandies 4 -10110110111 bedsores 4 -10110110111 Lowe-Howard 4 -10110110111 Galina 4 -10110110111 Anglicans 4 -10110110111 MSX 4 -10110110111 five-year-olds 4 -10110110111 Flossie 4 -10110110111 oenophiles 4 -10110110111 appendices 4 -10110110111 bagpipes 4 -10110110111 Cro-Magnons 4 -10110110111 cimetidine 4 -10110110111 WGMS-FM 4 -10110110111 Joiners 4 -10110110111 trichothecenes 4 -10110110111 autopsies 4 -10110110111 unbelievers 4 -10110110111 DC-9-51s 4 -10110110111 TV6 4 -10110110111 evolutionists 4 -10110110111 creationists 4 -10110110111 Euripides 4 -10110110111 emirs 4 -10110110111 Methodists 4 -10110110111 jailers 4 -10110110111 non-Indians 4 -10110110111 IOPOs 4 -10110110111 himself. 4 -10110110111 ITP 4 -10110110111 lucidity 4 -10110110111 ahs 4 -10110110111 paparazzi 4 -10110110111 sociability 4 -10110110111 Yamahas 5 -10110110111 overbookings 5 -10110110111 charterers 5 -10110110111 hangovers 5 -10110110111 arnica 5 -10110110111 pulps 5 -10110110111 Tania 5 -10110110111 UFOs 5 -10110110111 sixth-graders 5 -10110110111 deregulators 5 -10110110111 rowdies 5 -10110110111 rubella 5 -10110110111 three-year-olds 5 -10110110111 Micronase 5 -10110110111 acorns 5 -10110110111 earthlings 5 -10110110111 nonbelievers 5 -10110110111 cellos 5 -10110110111 cachexia 5 -10110110111 predestination 5 -10110110111 mildew 5 -10110110111 Sesac 5 -10110110111 pitchforks 5 -10110110111 15-year-olds 5 -10110110111 noncooperation 5 -10110110111 hawing 5 -10110110111 Etorofu 5 -10110110111 Montenegrins 5 -10110110111 waterworks 5 -10110110111 Gretta 5 -10110110111 rangeland 5 -10110110111 WKYS-FM 5 -10110110111 bailiffs 5 -10110110111 saxophones 5 -10110110111 kayakers 5 -10110110111 winking 5 -10110110111 wheelbarrows 5 -10110110111 despondency 5 -10110110111 Lincolns 5 -10110110111 ex-convicts 5 -10110110111 tripe 5 -10110110111 Belize 6 -10110110111 self-denial 6 -10110110111 vitriol 6 -10110110111 copayments 6 -10110110111 cauliflower 6 -10110110111 whiskies 6 -10110110111 widowers 6 -10110110111 heptachlor 6 -10110110111 madmen 6 -10110110111 washouts 6 -10110110111 snipers 6 -10110110111 14-year-olds 6 -10110110111 chrysanthemums 6 -10110110111 go-betweens 6 -10110110111 winos 6 -10110110111 storytellers 6 -10110110111 dependability 6 -10110110111 blonds 6 -10110110111 musicologists 6 -10110110111 itemizers 6 -10110110111 drabs 6 -10110110111 infanticide 6 -10110110111 co-pilots 6 -10110110111 non-Europeans 6 -10110110111 minarets 6 -10110110111 Busier-Than-Thous 6 -10110110111 aphids 6 -10110110111 hashish 6 -10110110111 germination 6 -10110110111 tacos 7 -10110110111 then-Rep 7 -10110110111 Deliver 7 -10110110111 agronomists 7 -10110110111 particulates 7 -10110110111 Technics 7 -10110110111 12-year-olds 7 -10110110111 dikes 7 -10110110111 arbitrageurs 7 -10110110111 fireweed 7 -10110110111 anti-abortionists 7 -10110110111 DVFA 7 -10110110111 tuk-tuks 7 -10110110111 Interpol 7 -10110110111 taxables 7 -10110110111 asthmatics 7 -10110110111 Londoners 7 -10110110111 pestilence 7 -10110110111 rhodium 7 -10110110111 six-year-olds 7 -10110110111 heartache 7 -10110110111 bassoon 7 -10110110111 grievers 7 -10110110111 tablecloths 7 -10110110111 infantrymen 7 -10110110111 diuretics 7 -10110110111 shipbuildings 7 -10110110111 venison 8 -10110110111 non-Moslems 8 -10110110111 instrumentalists 8 -10110110111 cabbages 8 -10110110111 non-filers 8 -10110110111 starches 8 -10110110111 antacids 8 -10110110111 heparin 8 -10110110111 Rockefellers 8 -10110110111 non-Jews 8 -10110110111 vegetarians 8 -10110110111 incidentals 8 -10110110111 do-it-yourselfers 8 -10110110111 condiments 8 -10110110111 Preakness 8 -10110110111 dampers 8 -10110110111 no-loads 8 -10110110111 internationalists 8 -10110110111 sub-underwriters 8 -10110110111 landfilling 8 -10110110111 non-manufacturers 9 -10110110111 goings 9 -10110110111 passersby 9 -10110110111 Mercedeses 9 -10110110111 coconuts 9 -10110110111 beekeepers 9 -10110110111 bulimia 9 -10110110111 four-year-olds 9 -10110110111 catcalls 9 -10110110111 bronchitis 9 -10110110111 regretfully 9 -10110110111 receptionists 9 -10110110111 Goofy 9 -10110110111 businesswomen 9 -10110110111 jugglers 9 -10110110111 end-users 9 -10110110111 Mauritania 9 -10110110111 barbers 9 -10110110111 reg-negs 9 -10110110111 Gogo 9 -10110110111 Oldsmobiles 9 -10110110111 12b-1s 9 -10110110111 profiteers 9 -10110110111 Kuruman 9 -10110110111 cytotechs 10 -10110110111 butterflies 10 -10110110111 Accuracy 10 -10110110111 Essence 10 -10110110111 dimes 10 -10110110111 rodeos 10 -10110110111 pacifism 10 -10110110111 rapists 10 -10110110111 Uzbeks 10 -10110110111 splints 10 -10110110111 Hawaiians 10 -10110110111 newspapermen 10 -10110110111 Decca 10 -10110110111 sauerkraut 10 -10110110111 miscreants 10 -10110110111 mittens 10 -10110110111 redfish 10 -10110110111 cannibalism 11 -10110110111 exterminators 11 -10110110111 archaeologists 11 -10110110111 Guatemalans 11 -10110110111 joggers 11 -10110110111 hedgehogs 12 -10110110111 fungi 12 -10110110111 Mesbics 12 -10110110111 aplomb 12 -10110110111 non-whites 12 -10110110111 urologists 12 -10110110111 illiterates 13 -10110110111 Contempo 13 -10110110111 fauna 13 -10110110111 telemarketers 13 -10110110111 paralegals 13 -10110110111 WFXT-TV 13 -10110110111 synthetics 13 -10110110111 skylights 13 -10110110111 machetes 13 -10110110111 homebuilders 14 -10110110111 acetone 14 -10110110111 gonorrhea 14 -10110110111 coloreds 14 -10110110111 countercharges 14 -10110110111 latecomers 14 -10110110111 Ukrainians 15 -10110110111 internists 15 -10110110111 selfishness 15 -10110110111 hangers-on 15 -10110110111 underemployment 15 -10110110111 amphetamines 15 -10110110111 bison 15 -10110110111 clinicians 16 -10110110111 seasonings 16 -10110110111 robbers 16 -10110110111 synagogues 16 -10110110111 non-members 16 -10110110111 waitresses 16 -10110110111 conventioneers 16 -10110110111 cashiers 17 -10110110111 lesbians 17 -10110110111 IUDs 17 -10110110111 laymen 18 -10110110111 arsenic 18 -10110110111 grunts 18 -10110110111 tornadoes 19 -10110110111 misdemeanors 19 -10110110111 oilseeds 19 -10110110111 shakers 19 -10110110111 informers 19 -10110110111 pediatricians 19 -10110110111 astrologers 19 -10110110111 nonmembers 19 -10110110111 bartenders 19 -10110110111 gangsters 20 -10110110111 slats 20 -10110110111 morphine 21 -10110110111 nonresidents 21 -10110110111 snowmobiles 21 -10110110111 obstetricians 21 -10110110111 mosquitoes 22 -10110110111 Cuban-Americans 23 -10110110111 re-exports 23 -10110110111 Asian-Americans 23 -10110110111 dermatologists 24 -10110110111 15s 24 -10110110111 admirals 24 -10110110111 boos 24 -10110110111 Mexican-Americans 25 -10110110111 chimps 26 -10110110111 vomiting 26 -10110110111 cardiologists 27 -10110110111 traditionalists 27 -10110110111 non-smokers 28 -10110110111 conservationists 29 -10110110111 academicians 31 -10110110111 Hindus 32 -10110110111 veterinarians 32 -10110110111 bystanders 32 -10110110111 toddlers 32 -10110110111 strawberries 33 -10110110111 behold 33 -10110110111 old-timers 34 -10110110111 passers-by 34 -10110110111 sterility 35 -10110110111 chimpanzees 36 -10110110111 innuendo 38 -10110110111 calves 41 -10110110111 feminists 41 -10110110111 heterosexuals 41 -10110110111 goats 44 -10110110111 valleys 44 -10110110111 gays 49 -10110110111 minors 55 -10110110111 pricings 68 -10110110111 nonsmokers 74 -10110110111 Asians 92 -10110110111 pharmacists 92 -10110110111 localities 98 -10110110111 strangers 106 -10110110111 psychologists 112 -10110110111 Westerners 141 -10110110111 homosexuals 155 -10110110111 M3 182 -10110110111 academics 184 -10110110111 vegetables 230 -10110110111 environmentalists 258 -10110110111 Hispanics 309 -10110110111 minorities 449 -10110110111 outsiders 477 -10110110111 whites 623 -10110110111 individuals 2900 -10110110111 others 8601 -10110111000 sequelae 1 -10110111000 Legionnaries 1 -10110111000 oafs 1 -10110111000 Morrocans 1 -10110111000 epicures 1 -10110111000 equestrianism 1 -10110111000 cussin 1 -10110111000 limited-purposes 1 -10110111000 soli 1 -10110111000 imposts 1 -10110111000 Arab-in-the-street 1 -10110111000 Nashvillians 1 -10110111000 imperturbability 1 -10110111000 sophists 1 -10110111000 keglers 1 -10110111000 re-LBOs 1 -10110111000 solons 1 -10110111000 pythons 1 -10110111000 loadin 1 -10110111000 six-month-olds 1 -10110111000 import- 1 -10110111000 candlemaker 1 -10110111000 plagiarizers 1 -10110111000 tickin 1 -10110111000 IBM-watchers 1 -10110111000 IBM-based 1 -10110111000 museumgoers 1 -10110111000 seismologists 1 -10110111000 Andalusians 1 -10110111000 WestMarcs 1 -10110111000 monthsit 1 -10110111000 Bonzo. 1 -10110111000 wait. 2 -10110111000 Kibbles 2 -10110111000 saucepans 2 -10110111000 floppies 2 -10110111000 fast-trackers 2 -10110111000 Br 2 -10110111000 interruptions. 2 -10110111000 F-14As 2 -10110111000 nuptials 2 -10110111000 19-year-olds 2 -10110111000 alfatoxin 2 -10110111000 hermits 2 -10110111000 physiologically 2 -10110111000 licensers 2 -10110111000 nonusers 2 -10110111000 Wheeling-Pitt 2 -10110111000 westerners 2 -10110111000 snapshooters 2 -10110111000 backstrokers 2 -10110111000 forceps 2 -10110111000 motorcars 2 -10110111000 computer-users 2 -10110111000 employee-shareholders 3 -10110111000 matadors 3 -10110111000 honeymooners 3 -10110111000 home-buyers 3 -10110111000 Quebecers 3 -10110111000 Ggmd 3 -10110111000 PIGs 3 -10110111000 Zugers 3 -10110111000 longhorns 3 -10110111000 dramatists 3 -10110111000 supermen 3 -10110111000 mother-boards 3 -10110111000 acupuncturists 3 -10110111000 Walkin 3 -10110111000 docudramas 3 -10110111000 skunks 3 -10110111000 Belloc 3 -10110111000 lawyer-executives 3 -10110111000 Cinque 3 -10110111000 self-deception 3 -10110111000 femoxetine 3 -10110111000 industry-watchers 3 -10110111000 VNRs 4 -10110111000 landholders 4 -10110111000 prostatectomy 4 -10110111000 coops 4 -10110111000 Manhattanites 4 -10110111000 Irish-Americans 4 -10110111000 filibusters 4 -10110111000 Rosalinde 4 -10110111000 xenophobes 4 -10110111000 sound-alikes 4 -10110111000 museum-goers 4 -10110111000 sluggers 4 -10110111000 good-bye 4 -10110111000 non-Catholics 4 -10110111000 percussionists 4 -10110111000 Portlanders 5 -10110111000 two-year-olds 5 -10110111000 salvagers 5 -10110111000 junk-holders 5 -10110111000 canvassers 5 -10110111000 hairpieces 5 -10110111000 pro-lifers 5 -10110111000 13- 5 -10110111000 Gazans 6 -10110111000 hamsters 6 -10110111000 shortsellers 6 -10110111000 Farmboy 6 -10110111000 campsites 6 -10110111000 futurists 7 -10110111000 Sovietologists 7 -10110111000 clarinetists 7 -10110111000 Ohioans 7 -10110111000 innkeepers 7 -10110111000 multimillionaires 8 -10110111000 non-Canadians 8 -10110111000 snowboarders 8 -10110111000 turnpikes 9 -10110111000 non-itemizers 9 -10110111000 tangibles 9 -10110111000 partridges 10 -10110111000 arsonists 12 -10110111000 full-timers 13 -10110111000 anthropologists 13 -10110111000 profit-takers 15 -10110111000 monopoles 15 -10110111000 fiduciaries 15 -10110111000 newlyweds 15 -10110111000 farmworkers 16 -10110111000 non-profits 16 -10110111000 beginners 17 -10110111000 theatergoers 17 -10110111000 TPAs 18 -10110111000 boaters 18 -10110111000 vandals 19 -10110111000 non-lawyers 20 -10110111000 vintners 21 -10110111000 pedestrians 22 -10110111000 newsmen 22 -10110111000 hedgers 24 -10110111000 hygienists 24 -10110111000 photofinishers 25 -10110111000 bargain-hunters 25 -10110111000 diabetics 27 -10110111000 mortals 28 -10110111000 astronomers 29 -10110111000 moviegoers 32 -10110111000 restaurateurs 40 -10110111000 inventors 40 -10110111000 roasters 43 -10110111000 felons 44 -10110111000 grocers 50 -10110111000 cattlemen 54 -10110111000 meatpackers 56 -10110111000 broker-dealers 59 -10110111000 REITs 61 -10110111000 savers 72 -10110111000 short-sellers 103 -10110111000 motorists 105 -10110111000 franchisers 109 -10110111000 landowners 113 -10110111000 market-makers 142 -10110111000 landlords 155 -10110111000 callers 166 -10110111000 homeowners 279 -10110111000 broadcasters 406 -10110111000 shoppers 417 -10110111000 tourists 484 -10110111000 issuers 565 -10110111000 speculators 571 -10110111000 borrowers 981 -10110111000 advertisers 1030 -10110111000 foreigners 1135 -10110111000 taxpayers 1368 -10110111000 employers 2095 -10110111000 farmers 2585 -10110111000 investors 20262 -10110111000 consumers 4109 -101101110010 consignments 1 -101101110010 denizen 1 -101101110010 fenceposts 1 -101101110010 davits 1 -101101110010 poolroom 2 -101101110010 downpours 2 -101101110010 community. 2 -101101110010 name-dropper 2 -101101110010 videocameras 2 -101101110010 money-saver 2 -101101110010 extractions 2 -101101110010 counterstrikes 2 -101101110010 claimaints 2 -101101110010 sanitariums 3 -101101110010 Hessians 3 -101101110010 krewes 3 -101101110010 Mochtar 3 -101101110010 comradeship 3 -101101110010 moviemakers 3 -101101110010 mutilations 3 -101101110010 hardtop 3 -101101110010 bookshops 3 -101101110010 turntables 3 -101101110010 shoemakers 3 -101101110010 thanksgiving 3 -101101110010 sandboxes 3 -101101110010 skyways 4 -101101110010 tempura 4 -101101110010 inquisitions 4 -101101110010 uplands 4 -101101110010 essayists 5 -101101110010 florists 5 -101101110010 skinheads 5 -101101110010 terriers 5 -101101110010 warlord 5 -101101110010 marigolds 6 -101101110010 Crays 6 -101101110010 internees 6 -101101110010 redeployments 6 -101101110010 gullies 6 -101101110010 tenors 6 -101101110010 co-investors 6 -101101110010 stabbings 6 -101101110010 debutantes 6 -101101110010 boors 6 -101101110010 watermen 6 -101101110010 17-year-olds 7 -101101110010 jobbers 7 -101101110010 dioceses 7 -101101110010 highbrows 7 -101101110010 socialites 7 -101101110010 P/Es 7 -101101110010 trappers 7 -101101110010 illustrators 7 -101101110010 philanthropies 8 -101101110010 antihistamines 8 -101101110010 ecologists 8 -101101110010 saleswomen 8 -101101110010 pratfalls 8 -101101110010 wildfires 9 -101101110010 wheeler-dealers 9 -101101110010 stockbrokerages 9 -101101110010 carvings 9 -101101110010 prawns 10 -101101110010 atlases 10 -101101110010 carvers 10 -101101110010 carters 10 -101101110010 statuary 10 -101101110010 gongs 10 -101101110010 estuaries 11 -101101110010 clone-makers 11 -101101110010 vases 12 -101101110010 painkillers 12 -101101110010 primates 12 -101101110010 bigots 12 -101101110010 free-lancers 12 -101101110010 neophytes 13 -101101110010 sculptors 13 -101101110010 lampposts 13 -101101110010 diggers 14 -101101110010 honeybees 14 -101101110010 parliaments 14 -101101110010 fevers 14 -101101110010 bazaars 14 -101101110010 canneries 15 -101101110010 druggists 15 -101101110010 superstition 15 -101101110010 songwriters 15 -101101110010 planters 15 -101101110010 linemen 16 -101101110010 dealmakers 16 -101101110010 lessors 16 -101101110010 taverns 17 -101101110010 bracelets 17 -101101110010 swindlers 17 -101101110010 soils 20 -101101110010 reptiles 20 -101101110010 bronzes 21 -101101110010 booksellers 22 -101101110010 reformists 22 -101101110010 mummies 22 -101101110010 automakers 23 -101101110010 preservationists 24 -101101110010 shipowners 24 -101101110010 distillers 25 -101101110010 chipmakers 27 -101101110010 dignitaries 28 -101101110010 minimills 29 -101101110010 radiologists 29 -101101110010 jewelers 29 -101101110010 swimmers 33 -101101110010 librarians 37 -101101110010 Eskimos 37 -101101110010 pirates 38 -101101110010 geologists 40 -101101110010 spenders 41 -101101110010 golfers 44 -101101110010 philosophers 44 -101101110010 ranches 45 -101101110010 breweries 46 -101101110010 expatriates 48 -101101110010 smelters 50 -101101110010 orchestras 60 -101101110010 appraisers 62 -101101110010 shipbuilders 62 -101101110010 sweeteners 63 -101101110010 truckers 78 -101101110010 packers 85 -101101110010 dailies 85 -101101110010 insects 86 -101101110010 shipyards 89 -101101110010 discounters 90 -101101110010 intermediaries 97 -101101110010 dentists 98 -101101110010 photographers 99 -101101110010 syndicators 99 -101101110010 bookstores 105 -101101110010 brewers 105 -101101110010 bugs 113 -101101110010 embassies 116 -101101110010 thieves 119 -101101110010 ranchers 123 -101101110010 industrialists 123 -101101110010 fishermen 132 -101101110010 rivers 133 -101101110010 independents 134 -101101110010 leagues 138 -101101110010 elevators 144 -101101110010 financiers 150 -101101110010 wholesalers 158 -101101110010 shippers 167 -101101110010 warships 175 -101101110010 bottlers 178 -101101110010 municipalities 191 -101101110010 museums 198 -101101110010 refiners 253 -101101110010 importers 303 -101101110010 debtors 319 -101101110010 pipelines 351 -101101110010 processors 354 -101101110010 brokerages 372 -101101110010 steelmakers 380 -101101110010 marketers 390 -101101110010 merchants 402 -101101110010 studios 426 -101101110010 vendors 446 -101101110010 growers 447 -101101110010 S&Ls 484 -101101110010 distributors 532 -101101110010 journalists 590 -101101110010 entrepreneurs 594 -101101110010 universities 629 -101101110010 colleges 635 -101101110010 publishers 697 -101101110010 exporters 725 -101101110010 developers 831 -101101110010 businessmen 1058 -101101110010 suppliers 1416 -101101110010 insurers 1469 -101101110010 newspapers 1802 -101101110010 carriers 1812 -101101110010 hospitals 1827 -101101110010 retailers 2018 -101101110010 thrifts 2541 -101101110010 manufacturers 2863 -101101110010 corporations 3057 -101101110010 institutions 5172 -101101110010 producers 3448 -101101110011 trendies 1 -101101110011 Capulets 1 -101101110011 bowl-cleaner 1 -101101110011 provinciality 1 -101101110011 meekness 1 -101101110011 covoys 1 -101101110011 Millcreek 1 -101101110011 woif 1 -101101110011 groundstations 1 -101101110011 semipros 1 -101101110011 lunkers 1 -101101110011 tam-tams 1 -101101110011 butters 1 -101101110011 crosswalks 1 -101101110011 mohawk 1 -101101110011 crisping 1 -101101110011 narcissus 1 -101101110011 Auslesen 1 -101101110011 Aubervilliers 1 -101101110011 Robbinsdale 1 -101101110011 skin-covered 1 -101101110011 Auxerre 1 -101101110011 Khaiber 1 -101101110011 Brep 1 -101101110011 Sids 1 -101101110011 combustors 1 -101101110011 Free-Tails 1 -101101110011 preemptions 1 -101101110011 financial- 1 -101101110011 budget- 1 -101101110011 computer-buyer 1 -101101110011 pensiones 1 -101101110011 civilian-entertainer 1 -101101110011 growth-retarding 1 -101101110011 cuttable 1 -101101110011 secularized 1 -101101110011 deodorizers 1 -101101110011 purser 1 -101101110011 Hayeses 1 -101101110011 Aerospace-Thomson 1 -101101110011 ices 2 -101101110011 sevenday 2 -101101110011 Kalimantan 2 -101101110011 Shakin 2 -101101110011 defroster 2 -101101110011 institutions. 2 -101101110011 cigarette-makers 2 -101101110011 wharves 2 -101101110011 divergencies 2 -101101110011 bonds. 2 -101101110011 triplex 2 -101101110011 exploiter 2 -101101110011 concurrences 2 -101101110011 eggbeaters 2 -101101110011 justice. 2 -101101110011 A330s 2 -101101110011 tonalities 3 -101101110011 stock-indexes 3 -101101110011 stonework 3 -101101110011 transcribers 3 -101101110011 anti-Nazis 3 -101101110011 jackass 3 -101101110011 riggers 4 -101101110011 paratroops 4 -101101110011 off-track 4 -101101110011 spaceport 5 -101101110011 cantons 5 -101101110011 taxers 5 -101101110011 cactuses 5 -101101110011 gophers 5 -101101110011 aircrafts 6 -101101110011 icebreakers 6 -101101110011 toolmakers 7 -101101110011 intervenors 7 -101101110011 internationals 7 -101101110011 slaughterhouses 8 -101101110011 domestics 9 -101101110011 realtors 10 -101101110011 colonists 21 -101101110011 oceans 41 -101101110011 railways 57 -101101110011 seamen 66 -101101110011 railroads 503 -101101110011 governments 2557 -101101110011 banks 20615 -101101110011 airlines 2858 -101101110100 dirigibles 1 -101101110100 chattels 1 -101101110100 Wongs 1 -101101110100 spokes-model 1 -101101110100 recoverables 1 -101101110100 Oltcits 1 -101101110100 protuberances 1 -101101110100 miniprofiles 1 -101101110100 monotones 1 -101101110100 hiker 1 -101101110100 entrenchments 1 -101101110100 netsuke 1 -101101110100 tickseed 1 -101101110100 22,724 1 -101101110100 LeManses 1 -101101110100 fundholders 1 -101101110100 warblers 1 -101101110100 Merieux-Connaught 1 -101101110100 Irinas 1 -101101110100 Federated-Campeau 1 -101101110100 MiG-17s 1 -101101110100 store-turned-office 1 -101101110100 morticians 1 -101101110100 drummer-athletes 2 -101101110100 patent-holders 2 -101101110100 pluralities 2 -101101110100 hyperinflations 2 -101101110100 microchip-makers 2 -101101110100 autoworkers 2 -101101110100 interrogatories 2 -101101110100 Rockwells 2 -101101110100 outhouses 3 -101101110100 noncompet 3 -101101110100 hagiography 3 -101101110100 ruminants 3 -101101110100 Japanologists 3 -101101110100 spillers 3 -101101110100 EPZs 4 -101101110100 colorists 4 -101101110100 tax-shelters 4 -101101110100 lecterns 4 -101101110100 crustaceans 5 -101101110100 burnings 5 -101101110100 dinghies 5 -101101110100 M.D.s 5 -101101110100 erasers 6 -101101110100 adjusters 12 -101101110100 troupes 13 -101101110100 racers 21 -101101110100 drillers 29 -101101110100 companies 38134 -101101110100 multinationals 161 -101101110101 fencer 1 -101101110101 Boone-watchers 1 -101101110101 longue 1 -101101110101 middleranker 1 -101101110101 Ducatel-Duval 1 -101101110101 EMMS 1 -101101110101 CFPs 1 -101101110101 longues 1 -101101110101 oculoplastic 1 -101101110101 Cocles 1 -101101110101 Meidinger-Hansen 1 -101101110101 countries-had 1 -101101110101 rule-makers 1 -101101110101 tooled 1 -101101110101 Gorlaeus 1 -101101110101 Kassebaum.Burnley 1 -101101110101 Extremadura 1 -101101110101 Trump-watchers 1 -101101110101 SFB 2 -101101110101 hotshots 2 -101101110101 Mexico-watchers 2 -101101110101 archdioceses 2 -101101110101 Turban 2 -101101110101 standard-setters 2 -101101110101 high-fliers 4 -101101110101 high-flyer 4 -101101110101 ex-detainees 4 -101101110101 wretches 4 -101101110101 Iberagentes 6 -101101110101 consortiums 15 -101101110101 Practitioners 15 -101101110101 capitalists 281 -101101110101 houses 2201 -101101110101 firms 9303 -101101110110 agriculturists 1 -101101110110 southwestward 1 -101101110110 lexicographers 1 -101101110110 reapportionments 1 -101101110110 sportwriters 1 -101101110110 quints 1 -101101110110 public-utilities 1 -101101110110 aviation-research 1 -101101110110 scientsts 1 -101101110110 historical-archives 1 -101101110110 Aviaco 1 -101101110110 capitols 2 -101101110110 sparklers 2 -101101110110 cryptographers 2 -101101110110 playgoers 2 -101101110110 KSPR-TV 2 -101101110110 Popham 2 -101101110110 drug-smugglers 2 -101101110110 syllogism 3 -101101110110 ultraconservatives 3 -101101110110 Memphians 3 -101101110110 Chicanos 4 -101101110110 comptrollers 4 -101101110110 Phasar 4 -101101110110 English-speakers 4 -101101110110 schoolkids 4 -101101110110 SA-7s 4 -101101110110 buffaloes 4 -101101110110 statists 4 -101101110110 taxpayers. 5 -101101110110 WJW-TV 5 -101101110110 10-9 5 -101101110110 Gostelradio 5 -101101110110 marauders 5 -101101110110 arbitrations 5 -101101110110 grants-in-aid 5 -101101110110 funders 6 -101101110110 4500 6 -101101110110 steamboats 6 -101101110110 Nimitz 6 -101101110110 Keye/Donna/Pearlstein 7 -101101110110 parolees 7 -101101110110 registrars 7 -101101110110 chaplains 7 -101101110110 stairways 9 -101101110110 preemption 10 -101101110110 rogues 11 -101101110110 ZDF 11 -101101110110 sheriffs 11 -101101110110 technologists 12 -101101110110 lawmen 12 -101101110110 judgeships 13 -101101110110 picketers 13 -101101110110 surveyors 14 -101101110110 amnesties 18 -101101110110 policymakers 22 -101101110110 policy-makers 26 -101101110110 troopers 29 -101101110110 censors 31 -101101110110 magistrates 36 -101101110110 constitutions 37 -101101110110 mediators 40 -101101110110 enforcers 41 -101101110110 lotteries 59 -101101110110 marshals 62 -101101110110 examiners 113 -101101110110 monopolies 187 -101101110110 legislatures 208 -101101110110 juries 212 -101101110110 inspectors 421 -101101110110 prosecutors 1473 -101101110110 judges 1609 -101101110110 investigators 1819 -101101110110 courts 2343 -101101110110 authorities 2343 -101101110110 utilities 2365 -101101110110 regulators 4285 -101101110110 police 3313 -101101110111 colorer 1 -101101110111 queen-madonna 1 -101101110111 lady-in-waiting 1 -101101110111 doohickeys 1 -101101110111 forgettables 1 -101101110111 burrows 1 -101101110111 Bever 1 -101101110111 Hoften 1 -101101110111 Roijen 1 -101101110111 arthritically 1 -101101110111 asciutta 1 -101101110111 fresca 1 -101101110111 avaialble 1 -101101110111 Super-Jock 1 -101101110111 XT-1 1 -101101110111 rocket-redesigned 1 -101101110111 brans 1 -101101110111 waistbands 1 -101101110111 Beyeren 1 -101101110111 Niekirk 1 -101101110111 teardown 1 -101101110111 instrument. 1 -101101110111 Methyl 1 -101101110111 smokers. 1 -101101110111 repossessor 1 -101101110111 resourcefully 1 -101101110111 sidecars 1 -101101110111 Blackbird 1 -101101110111 loiters 1 -101101110111 nitride 1 -101101110111 CRAY-2 1 -101101110111 pointillist 1 -101101110111 abutters 1 -101101110111 mounters 1 -101101110111 form-melodrama 1 -101101110111 chuggers 1 -101101110111 typewriter-types 1 -101101110111 dibromochloropropane 1 -101101110111 Volkerkunde 1 -101101110111 makers-by 1 -101101110111 manager-ticket 1 -101101110111 universe. 1 -101101110111 car-rentals 1 -101101110111 Huyssteen 1 -101101110111 Vlissingen 1 -101101110111 skins-baked 1 -101101110111 minoxodil 1 -101101110111 ape-ography 1 -101101110111 Landeghem 1 -101101110111 shredder. 1 -101101110111 cookin 1 -101101110111 trafficking. 1 -101101110111 methamidophos 1 -101101110111 outbuilding 1 -101101110111 Chakraborty 1 -101101110111 flipflops 1 -101101110111 caste-worker 1 -101101110111 Lizards 1 -101101110111 buckler 1 -101101110111 whiskys 1 -101101110111 Cuylenberg 1 -101101110111 socials 1 -101101110111 Electrotechnische 1 -101101110111 G-STAR 1 -101101110111 crystallography 1 -101101110111 barony 1 -101101110111 Arthel 1 -101101110111 Riet 1 -101101110111 bar-and 1 -101101110111 coolers. 1 -101101110111 re-insurer 1 -101101110111 al-Yaum 1 -101101110111 Exovir-HZ 1 -101101110111 Blydskap 1 -101101110111 class-antibiotics 1 -101101110111 stereophiles 1 -101101110111 shennanigans 1 -101101110111 Amsat 1 -101101110111 Meteosat 1 -101101110111 Corsa 1 -101101110111 users. 1 -101101110111 8-MOP 1 -101101110111 liftback 1 -101101110111 amantadine 1 -101101110111 Zmaj 1 -101101110111 Erven 1 -101101110111 Tri-jet 1 -101101110111 drive-shafts 1 -101101110111 violence-only 1 -101101110111 neapolitan 1 -101101110111 microprocesser 1 -101101110111 Miltown 1 -101101110111 wonk 1 -101101110111 archways 1 -101101110111 dough. 1 -101101110111 through. 1 -101101110111 tetrazzini 1 -101101110111 takeouts 1 -101101110111 Bekkum 1 -101101110111 theopylline 1 -101101110111 Tegretol 1 -101101110111 amphibian 1 -101101110111 Breugel 1 -101101110111 Lawick 1 -101101110111 leak-valve 1 -101101110111 rhinovirus-receptors 1 -101101110111 Ciprofloxacin 1 -101101110111 1477 1 -101101110111 spectaculars 1 -101101110111 repackers 1 -101101110111 department. 1 -101101110111 Antivert 1 -101101110111 determinations. 1 -101101110111 Manen 1 -101101110111 master-in-chief 1 -101101110111 sharpeners 1 -101101110111 de-icers 1 -101101110111 czardom 1 -101101110111 lisinopril 2 -101101110111 battlers 2 -101101110111 R.M.S. 2 -101101110111 Bruggen 2 -101101110111 deliverymen 2 -101101110111 Thiel 2 -101101110111 manufactuers 2 -101101110111 probucol 2 -101101110111 rollin 2 -101101110111 windings 2 -101101110111 concert-making 2 -101101110111 capacity. 2 -101101110111 Chavalit 2 -101101110111 use. 2 -101101110111 ribaviran 2 -101101110111 freshener 2 -101101110111 ticlopidine 2 -101101110111 scenter 2 -101101110111 baster 2 -101101110111 danthron 2 -101101110111 rover 2 -101101110111 Agt 2 -101101110111 Zyl 2 -101101110111 Demerol 2 -101101110111 gobbler 2 -101101110111 separators 2 -101101110111 Es 2 -101101110111 Hove 2 -101101110111 crisps 2 -101101110111 315,106 2 -101101110111 tailpipes 2 -101101110111 Ruisdael 2 -101101110111 Ohlen 2 -101101110111 networks. 2 -101101110111 Antwerpen 2 -101101110111 detonators 3 -101101110111 Emmerik 3 -101101110111 smashers 3 -101101110111 Thorazine 3 -101101110111 soundtracks 3 -101101110111 Treflan 3 -101101110111 Drive-In 3 -101101110111 bar-codes 3 -101101110111 siders 3 -101101110111 Heerden 3 -101101110111 Goghs 4 -101101110111 sniffers 4 -101101110111 yippies 4 -101101110111 Houten 4 -101101110111 grout 4 -101101110111 sediments 4 -101101110111 trijets 5 -101101110111 stampings 5 -101101110111 machineries 5 -101101110111 Oppen 5 -101101110111 grilles 5 -101101110111 chargers 5 -101101110111 Ekris 5 -101101110111 cloners 6 -101101110111 Rijn 6 -101101110111 shufflers 6 -101101110111 Eldepryl 6 -101101110111 loadings 7 -101101110111 CJ-7 7 -101101110111 rebuilder 8 -101101110111 acyclovir 8 -101101110111 overdoses 9 -101101110111 dashboards 9 -101101110111 forwarders 9 -101101110111 steppers 9 -101101110111 Wyk 9 -101101110111 assemblers 9 -101101110111 millers 10 -101101110111 trimmer 10 -101101110111 Musschenbroek 12 -101101110111 sergeants 14 -101101110111 shooters 15 -101101110111 feces 16 -101101110111 fabricators 21 -101101110111 timers 21 -101101110111 butts 24 -101101110111 trafficker 26 -101101110111 eaters 26 -101101110111 moguls 26 -101101110111 kingpins 29 -101101110111 whisky 33 -101101110111 cones 35 -101101110111 toppings 44 -101101110111 pushers 46 -101101110111 residues 46 -101101110111 haulers 50 -101101110111 barons 56 -101101110111 optics 57 -101101110111 abusers 57 -101101110111 lords 67 -101101110111 buffs 75 -101101110111 Amerongen 80 -101101110111 der 83 -101101110111 smugglers 108 -101101110111 detectors 117 -101101110111 trailers 123 -101101110111 coolers 127 -101101110111 drinkers 135 -101101110111 boosters 159 -101101110111 trafficking 179 -101101110111 addicts 185 -101101110111 traffickers 189 -101101110111 hunters 220 -101101110111 builders 390 -101101110111 attendants 618 -101101110111 operators 1467 -101101110111 users 1503 -101101110111 participants 1869 -101101110111 makers 6332 -10110111100 bowl. 1 -10110111100 Sowetans 1 -10110111100 qu 1 -10110111100 swingin 1 -10110111100 star-topped 1 -10110111100 BAY-z 1 -10110111100 shuckin 1 -10110111100 1099-B 1 -10110111100 ham-TRAM 1 -10110111100 minin 1 -10110111100 person. 1 -10110111100 16,388 1 -10110111100 Dios. 1 -10110111100 poison-makers 1 -10110111100 manque 1 -10110111100 goof-off 1 -10110111100 92F 1 -10110111100 skinner 1 -10110111100 clappers 2 -10110111100 trespassers 2 -10110111100 dowagers 2 -10110111100 economy-watchers 2 -10110111100 fasters 2 -10110111100 muumuu 2 -10110111100 badgers 2 -10110111100 Mouseville 2 -10110111100 certainty. 2 -10110111100 1,483 2 -10110111100 gunk 2 -10110111100 loas 2 -10110111100 progressive/populist 2 -10110111100 baseballers 2 -10110111100 198-pounder 2 -10110111100 baccalaureates 2 -10110111100 4,118 2 -10110111100 agnostics 2 -10110111100 soundman 2 -10110111100 coffeepots 2 -10110111100 Anacostia 2 -10110111100 rowers 3 -10110111100 taffy 3 -10110111100 princesses 3 -10110111100 gentrifiers 3 -10110111100 exerciser 3 -10110111100 botanists 3 -10110111100 eavesdroppers 3 -10110111100 buglers 3 -10110111100 Clydesdales 3 -10110111100 doormen 3 -10110111100 Coloradans 3 -10110111100 mailbags 4 -10110111100 bellboys 4 -10110111100 singings 4 -10110111100 brownstones 4 -10110111100 anarchists 4 -10110111100 co-operatives 4 -10110111100 piglets 4 -10110111100 freestylers 4 -10110111100 RUBs 4 -10110111100 Laotians 4 -10110111100 millworkers 4 -10110111100 Econolines 4 -10110111100 centenarians 5 -10110111100 compasses 5 -10110111100 Kansans 5 -10110111100 Vinny 5 -10110111100 cricketers 5 -10110111100 Legionnaires 5 -10110111100 nonfilers 5 -10110111100 grantees 5 -10110111100 paratroopers 5 -10110111100 shoplifters 5 -10110111100 invalids 5 -10110111100 indigents 5 -10110111100 flavorist 5 -10110111100 repeaters 5 -10110111100 up-and-comers 5 -10110111100 paddlers 5 -10110111100 assisters 5 -10110111100 impersonators 5 -10110111100 paperworkers 6 -10110111100 cadavers 6 -10110111100 employees. 6 -10110111100 Camrys 6 -10110111100 haters 6 -10110111100 snobs 6 -10110111100 infiltrators 6 -10110111100 reservationists 6 -10110111100 stagecraft 6 -10110111100 sophomores 6 -10110111100 firebrands 6 -10110111100 Athenians 7 -10110111100 scofflaws 7 -10110111100 TOWs 7 -10110111100 miniatures 7 -10110111100 guitarists 7 -10110111100 urbanites 7 -10110111100 skippers 7 -10110111100 merchantmen 7 -10110111100 blokes 7 -10110111100 oncologists 8 -10110111100 moralists 8 -10110111100 probationers 8 -10110111100 transducers 8 -10110111100 caseworkers 8 -10110111100 minks 8 -10110111100 elms 8 -10110111100 opposites 8 -10110111100 Santas 8 -10110111100 homebuyers 9 -10110111100 ideologists 9 -10110111100 gymnasts 9 -10110111100 looters 9 -10110111100 catchers 10 -10110111100 goons 10 -10110111100 barristers 10 -10110111100 hostesses 10 -10110111100 whiskeys 10 -10110111100 drummers 10 -10110111100 exercisers 10 -10110111100 conscripts 10 -10110111100 tinkerers 11 -10110111100 Probes 11 -10110111100 manatees 11 -10110111100 bookies 11 -10110111100 deserters 11 -10110111100 businesspeople 11 -10110111100 groupies 12 -10110111100 temporaries 12 -10110111100 matrons 12 -10110111100 mavericks 12 -10110111100 concertos 12 -10110111100 tutors 12 -10110111100 mares 12 -10110111100 worshippers 13 -10110111100 bakers 13 -10110111100 mathematicians 13 -10110111100 mainlanders 14 -10110111100 Mustangs 14 -10110111100 Muslims 14 -10110111100 toughs 15 -10110111100 sophisticates 15 -10110111100 revelers 15 -10110111100 gadflies 15 -10110111100 visuals 15 -10110111100 reservists 16 -10110111100 ballplayers 16 -10110111100 employes 16 -10110111100 seamstresses 17 -10110111100 burglars 17 -10110111100 loggers 17 -10110111100 innocents 17 -10110111100 optometrists 17 -10110111100 Fijians 17 -10110111100 bikers 18 -10110111100 seafarers 18 -10110111100 dockworkers 18 -10110111100 Latinos 18 -10110111100 risk-takers 18 -10110111100 couriers 18 -10110111100 aviators 18 -10110111100 cabbies 19 -10110111100 escapees 19 -10110111100 crocuses 19 -10110111100 squatters 20 -10110111100 anglers 20 -10110111100 superintendents 20 -10110111100 eyewitnesses 20 -10110111100 miscues 21 -10110111100 bargainers 21 -10110111100 Serbs 21 -10110111100 markings 21 -10110111100 screeners 21 -10110111100 F-18s 21 -10110111100 bowlers 21 -10110111100 explorers 21 -10110111100 hounds 21 -10110111100 worshipers 22 -10110111100 grads 22 -10110111100 battalions 22 -10110111100 novices 23 -10110111100 whistle-blowers 23 -10110111100 interns 23 -10110111100 artisans 24 -10110111100 governorships 24 -10110111100 testers 24 -10110111100 campers 24 -10110111100 carpenters 24 -10110111100 mourners 25 -10110111100 man-hours 26 -10110111100 repairmen 26 -10110111100 enrollees 26 -10110111100 onlookers 26 -10110111100 hobbyists 26 -10110111100 Olympians 27 -10110111100 ethicists 27 -10110111100 peddlers 28 -10110111100 mobsters 28 -10110111100 choreographers 28 -10110111100 undergraduates 28 -10110111100 faxes 29 -10110111100 announcers 30 -10110111100 ol 30 -10110111100 informants 30 -10110111100 aficionados 31 -10110111100 poachers 33 -10110111100 hackers 33 -10110111100 protestors 33 -10110111100 chiropractors 33 -10110111100 preparers 35 -10110111100 breeders 36 -10110111100 stubs 36 -10110111100 entertainers 36 -10110111100 mercenaries 37 -10110111100 interpreters 37 -10110111100 attendees 37 -10110111100 temps 38 -10110111100 chefs 40 -10110111100 craftsmen 40 -10110111100 corpses 41 -10110111100 POWs 42 -10110111100 emigrants 42 -10110111100 skiers 42 -10110111100 missionaries 43 -10110111100 technocrats 45 -10110111100 skaters 46 -10110111100 convicts 46 -10110111100 novelists 46 -10110111100 shopkeepers 47 -10110111100 vacationers 47 -10110111100 newborns 47 -10110111100 dropouts 50 -10110111100 part-timers 50 -10110111100 psychiatrists 51 -10110111100 therapists 53 -10110111100 SS-20s 53 -10110111100 fanatics 53 -10110111100 freshmen 54 -10110111100 trainees 54 -10110111100 comics 55 -10110111100 detectives 56 -10110111100 wineries 58 -10110111100 painters 58 -10110111100 dwellers 58 -10110111100 renters 58 -10110111100 commuters 58 -10110111100 pensioners 59 -10110111100 gamblers 60 -10110111100 divers 61 -10110111100 ambassadors 63 -10110111100 MBAs 63 -10110111100 housewives 67 -10110111100 sufferers 67 -10110111100 firefighters 68 -10110111100 co-ops 70 -10110111100 murderers 70 -10110111100 exiles 70 -10110111100 servicemen 70 -10110111100 cardholders 71 -10110111100 instructors 72 -10110111100 trainers 72 -10110111100 detainees 75 -10110111100 diners 75 -10110111100 tribes 75 -10110111100 showers 80 -10110111100 illegals 80 -10110111100 pioneers 81 -10110111100 physicists 82 -10110111100 fats 84 -10110111100 fund-raisers 86 -10110111100 settlers 86 -10110111100 steelworkers 86 -10110111100 runners 89 -10110111100 licensees 91 -10110111100 spies 92 -10110111100 enthusiasts 98 -10110111100 crewmen 99 -10110111100 riders 100 -10110111100 seniors 102 -10110111100 bees 104 -10110111100 cops 106 -10110111100 laborers 112 -10110111100 alumni 113 -10110111100 spectators 113 -10110111100 sailors 114 -10110111100 peoples 122 -10110111100 composers 124 -10110111100 campuses 127 -10110111100 gangs 130 -10110111100 extremists 138 -10110111100 textbooks 140 -10110111100 singers 145 -10110111100 salespeople 148 -10110111100 middlemen 151 -10110111100 coaches 154 -10110111100 generals 157 -10110111100 programmers 160 -10110111100 practitioners 163 -10110111100 offenders 171 -10110111100 lovers 172 -10110111100 patrons 172 -10110111100 speakers 173 -10110111100 populations 192 -10110111100 dancers 205 -10110111100 youngsters 209 -10110111100 inmates 234 -10110111100 clerks 234 -10110111100 collectors 244 -10110111100 aliens 246 -10110111100 technicians 250 -10110111100 mechanics 252 -10110111100 nurses 264 -10110111100 civilians 275 -10110111100 intellectuals 284 -10110111100 demonstrators 285 -10110111100 musicians 293 -10110111100 protesters 307 -10110111100 volunteers 312 -10110111100 criminals 329 -10110111100 designers 354 -10110111100 athletes 355 -10110111100 professors 393 -10110111100 smokers 404 -10110111100 controllers 437 -10110111100 graduates 477 -10110111100 veterans 499 -10110111100 retirees 510 -10110111100 bureaucrats 515 -10110111100 visitors 520 -10110111100 recipients 529 -10110111100 miners 536 -10110111100 refugees 550 -10110111100 applicants 554 -10110111100 drivers 729 -10110111100 viewers 731 -10110111100 immigrants 734 -10110111100 artists 778 -10110111100 teachers 824 -10110111100 households 826 -10110111100 physicians 828 -10110111100 delegates 867 -10110111100 engineers 913 -10110111100 writers 937 -10110111100 soldiers 984 -10110111100 passengers 1138 -10110111100 residents 1593 -10110111100 citizens 1612 -10110111100 agents 2082 -10110111100 doctors 2185 -10110111100 patients 3564 -10110111100 students 3687 -10110111100 employees 11086 -10110111100 workers 11049 -101101111010 customs-users 1 -101101111010 mid-decade 1 -101101111010 then-Lt 1 -101101111010 over-supply 1 -101101111010 comraderie 1 -101101111010 IIGSs 1 -101101111010 Lousiana-Pacific 1 -101101111010 reclosure 1 -101101111010 train. 1 -101101111010 camera-lens 1 -101101111010 Sufferin 1 -101101111010 Bump. 1 -101101111010 thifts 1 -101101111010 Aug.7 1 -101101111010 nonlawyers 1 -101101111010 owner-managers 1 -101101111010 standees 1 -101101111010 949-493 1 -101101111010 orifice 1 -101101111010 Jan.31 1 -101101111010 Leiber 1 -101101111010 professionsals 1 -101101111010 nail-painting 1 -101101111010 knowledge-workers 1 -101101111010 worker-owners 1 -101101111010 quantifications 1 -101101111010 speaker-phone 1 -101101111010 Detroit- 1 -101101111010 reinfestation 1 -101101111010 theater-goers 1 -101101111010 dogsled 1 -101101111010 WCMU 1 -101101111010 detruction 1 -101101111010 socialism/communism 1 -101101111010 thro 1 -101101111010 935-658 1 -101101111010 947-707 1 -101101111010 mandolin 1 -101101111010 prefabrication 1 -101101111010 Weider-Flex 1 -101101111010 1936-37 1 -101101111010 crypto-socialists 1 -101101111010 Distraction 1 -101101111010 recruiting/relocation 1 -101101111010 non-Egyptians 1 -101101111010 Heed 1 -101101111010 anyone. 1 -101101111010 925-559 1 -101101111010 MGTB/Ayer 1 -101101111010 laboraties 1 -101101111010 Mr.Ozal 1 -101101111010 1918-1920 1 -101101111010 bargainhunting 1 -101101111010 Austro-Germans 1 -101101111010 787-592 1 -101101111010 WTTW/Chicago 1 -101101111010 estoppel 1 -101101111010 airboat 1 -101101111010 MMPI-2 1 -101101111010 Masushita 1 -101101111010 Verve/PolyGram 1 -101101111010 auto-pilot 1 -101101111010 ex-Yankee 1 -101101111010 aftershaves 1 -101101111010 948839 1 -101101111010 ministers-cum-presidents 1 -101101111010 office-holders 1 -101101111010 evangelization 1 -101101111010 lightning. 1 -101101111010 radiotelephone 1 -101101111010 Donemus 1 -101101111010 Goths 1 -101101111010 efficiency-driven 1 -101101111010 Swingin 1 -101101111010 destitutes 1 -101101111010 laggardness 1 -101101111010 earnestly. 1 -101101111010 protest-training 1 -101101111010 drum-beaters 1 -101101111010 sandbars 1 -101101111010 yes. 1 -101101111010 tramway 1 -101101111010 Teletype 1 -101101111010 Cristall 1 -101101111010 guaranties 2 -101101111010 re-investment 2 -101101111010 mid-1999 2 -101101111010 Cracklin 2 -101101111010 3,555 2 -101101111010 animations 2 -101101111010 shools 2 -101101111010 Louisvillians 2 -101101111010 affliates 2 -101101111010 7,170 2 -101101111010 Bevaeringen 2 -101101111010 both. 2 -101101111010 second-liners 2 -101101111010 tootin 2 -101101111010 ALITALIA 2 -101101111010 those. 2 -101101111010 stock. 2 -101101111010 65-days 2 -101101111010 Dordrecht 2 -101101111010 financers 3 -101101111010 transracially 3 -101101111010 Marxist-Leninists 3 -101101111010 instants 3 -101101111010 3,264,000 3 -101101111010 balletomanes 3 -101101111010 737-100s 3 -101101111010 banzai 3 -101101111010 wiseguy 3 -101101111010 jukeboxes 3 -101101111010 dislosures 3 -101101111010 Heidelberger 4 -101101111010 non-Communists 4 -101101111010 Vend 4 -101101111010 Magritte 4 -101101111010 ex-shareholders 4 -101101111010 Metrorail 4 -101101111010 Bass/Aoki 4 -101101111010 indiscipline 5 -101101111010 widths 5 -101101111010 825S 5 -101101111010 condensation 6 -101101111010 dross 7 -101101111010 physicals 7 -101101111010 Noriegas 7 -101101111010 swingers 7 -101101111010 jowl 7 -101101111010 non-residents 8 -101101111010 stewardesses 8 -101101111010 then-Sen 9 -101101111010 lawbreakers 10 -101101111010 737-200s 15 -101101111010 unitholders 23 -101101111010 WON 24 -101101111010 arbitraging 36 -101101111010 ratepayers 158 -101101111010 bondholders 466 -101101111010 depositors 522 -101101111010 stockholders 1327 -101101111010 holders 7212 -101101111010 shareholders 11634 -1011011110110 tidewaters 1 -1011011110110 breath. 1 -1011011110110 hebes 1 -1011011110110 adversarys 1 -1011011110110 polyclinics 1 -1011011110110 penetration. 1 -1011011110110 cathedrals. 1 -1011011110110 ex-superintendent 1 -1011011110110 totalities 1 -1011011110110 party-mates 1 -1011011110110 neighbor-nation 1 -1011011110110 stinkiness 1 -1011011110110 heirs-apparent 1 -1011011110110 craftworkers 1 -1011011110110 business-breakthroughs 1 -1011011110110 philosphy 1 -1011011110110 blurbists 1 -1011011110110 helipad 1 -1011011110110 salesmens 1 -1011011110110 citrus-packing 1 -1011011110110 nine-o 1 -1011011110110 backtests 1 -1011011110110 deposits. 1 -1011011110110 narcodollars 1 -1011011110110 off-time 1 -1011011110110 scientist/traders 1 -1011011110110 breathin 1 -1011011110110 work-to 1 -1011011110110 sleep. 1 -1011011110110 child. 1 -1011011110110 offsprings 1 -1011011110110 toddlin 1 -1011011110110 dual-damping 1 -1011011110110 sucessors 1 -1011011110110 revenue-enforcement 1 -1011011110110 credentials. 1 -1011011110110 workshirt 1 -1011011110110 books. 1 -1011011110110 non-clients 1 -1011011110110 saviour 1 -1011011110110 porcupines 1 -1011011110110 Bureau-gate 1 -1011011110110 delectation 1 -1011011110110 stickball-playing 1 -1011011110110 fishmonger 2 -1011011110110 pedagogy 2 -1011011110110 late-30s 2 -1011011110110 appurtenances 2 -1011011110110 relationship. 2 -1011011110110 rail-thin 2 -1011011110110 force. 2 -1011011110110 renewers 2 -1011011110110 Krushchev 2 -1011011110110 slaveholders 2 -1011011110110 MOS 2 -1011011110110 QBs 2 -1011011110110 optionees 2 -1011011110110 judgment. 2 -1011011110110 forelegs 2 -1011011110110 monolog 2 -1011011110110 globe-trotters 2 -1011011110110 far-sightedness 2 -1011011110110 unsympathetically 2 -1011011110110 supershares 2 -1011011110110 neo-isolationist 2 -1011011110110 sons-in-law 2 -1011011110110 hometowns 2 -1011011110110 backbenchers 3 -1011011110110 smoothies 3 -1011011110110 RoadRailers 3 -1011011110110 shirttail 3 -1011011110110 fanfares 3 -1011011110110 newspeople 3 -1011011110110 Fatherland 3 -1011011110110 Uprising 3 -1011011110110 parishoners 3 -1011011110110 Buddhas 3 -1011011110110 namesakes 3 -1011011110110 vassals 3 -1011011110110 persecutors 3 -1011011110110 tummies 3 -1011011110110 troth 3 -1011011110110 lookouts 4 -1011011110110 great-grandparents 4 -1011011110110 dupes 4 -1011011110110 coworkers 4 -1011011110110 confederates 4 -1011011110110 haunches 4 -1011011110110 hand. 4 -1011011110110 helpfulness 4 -1011011110110 squeri 4 -1011011110110 phoniness 4 -1011011110110 hairstyle 4 -1011011110110 boomlets 4 -1011011110110 samplers 4 -1011011110110 PAYSOPs 4 -1011011110110 salamis 4 -1011011110110 linebackers 4 -1011011110110 workroom 5 -1011011110110 alums 5 -1011011110110 sit-ups 5 -1011011110110 abrasiveness 5 -1011011110110 chins 5 -1011011110110 inspirations 5 -1011011110110 pooches 5 -1011011110110 sprinters 5 -1011011110110 bouncer 5 -1011011110110 troubleshooters 5 -1011011110110 gents 5 -1011011110110 high-rollers 5 -1011011110110 kingdoms 5 -1011011110110 fatties 6 -1011011110110 caretakers 6 -1011011110110 schoolwork 6 -1011011110110 by-laws 6 -1011011110110 missives 6 -1011011110110 residencies 6 -1011011110110 goofs 6 -1011011110110 mediums 6 -1011011110110 bridesmaids 6 -1011011110110 ripostes 7 -1011011110110 packagers 7 -1011011110110 anti-Communists 7 -1011011110110 copywriters 7 -1011011110110 generalists 8 -1011011110110 sovereigns 8 -1011011110110 cost-cutters 8 -1011011110110 oppressors 8 -1011011110110 midwives 8 -1011011110110 deal-makers 8 -1011011110110 fangs 8 -1011011110110 conquerors 9 -1011011110110 playmates 9 -1011011110110 well-wishers 9 -1011011110110 philanthropists 9 -1011011110110 followings 10 -1011011110110 revolvers 10 -1011011110110 henchmen 10 -1011011110110 bookshelves 10 -1011011110110 pursuers 10 -1011011110110 aciduria 10 -1011011110110 superstitions 10 -1011011110110 brooms 11 -1011011110110 typists 11 -1011011110110 hairdressers 11 -1011011110110 addictions 11 -1011011110110 betters 12 -1011011110110 expletives 12 -1011011110110 mistresses 12 -1011011110110 jerseys 12 -1011011110110 biographers 13 -1011011110110 wristwatches 14 -1011011110110 enthusiasms 14 -1011011110110 chums 14 -1011011110110 co-authors 14 -1011011110110 Chas 14 -1011011110110 homeworkers 14 -1011011110110 billionaires 14 -1011011110110 childrens 14 -1011011110110 basements 15 -1011011110110 emissaries 15 -1011011110110 bidcos 15 -1011011110110 quarterbacks 15 -1011011110110 questioners 15 -1011011110110 zoos 15 -1011011110110 archrivals 15 -1011011110110 shareowners 16 -1011011110110 scriptwriters 16 -1011011110110 accusers 16 -1011011110110 roommates 17 -1011011110110 acolytes 17 -1011011110110 SALs 17 -1011011110110 housekeepers 18 -1011011110110 flyers 18 -1011011110110 duds 19 -1011011110110 in-laws 19 -1011011110110 passwords 20 -1011011110110 bettors 20 -1011011110110 prospectors 22 -1011011110110 quartets 22 -1011011110110 proteges 22 -1011011110110 hurricanes 23 -1011011110110 cheerleaders 23 -1011011110110 forebears 23 -1011011110110 minions 23 -1011011110110 forefathers 24 -1011011110110 confidants 25 -1011011110110 compatriots 25 -1011011110110 disciples 26 -1011011110110 accomplices 28 -1011011110110 girlfriends 29 -1011011110110 fists 30 -1011011110110 headhunters 30 -1011011110110 collaborators 31 -1011011110110 superstores 33 -1011011110110 actuaries 34 -1011011110110 cohorts 34 -1011011110110 resellers 35 -1011011110110 proprietors 36 -1011011110110 belongings 36 -1011011110110 comedians 37 -1011011110110 parishioners 37 -1011011110110 statesmen 38 -1011011110110 flippers 38 -1011011110110 underlings 39 -1011011110110 interrogators 39 -1011011110110 benefactors 40 -1011011110110 interviewers 42 -1011011110110 mailers 42 -1011011110110 mentors 44 -1011011110110 doubters 45 -1011011110110 pals 48 -1011011110110 bodyguards 48 -1011011110110 wits 51 -1011011110110 imitators 52 -1011011110110 warriors 52 -1011011110110 adherents 58 -1011011110110 millionaires 59 -1011011110110 companions 59 -1011011110110 contemporaries 60 -1011011110110 co-conspirators 62 -1011011110110 buddies 65 -1011011110110 cronies 65 -1011011110110 comrades 68 -1011011110110 brethren 69 -1011011110110 lieutenants 71 -1011011110110 cousins 72 -1011011110110 ancestors 73 -1011011110110 mates 77 -1011011110110 acquaintances 82 -1011011110110 classmates 89 -1011011110110 believers 92 -1011011110110 souls 94 -1011011110110 elders 97 -1011011110110 admirers 98 -1011011110110 co-workers 100 -1011011110110 assistants 102 -1011011110110 correspondents 103 -1011011110110 subcontractors 110 -1011011110110 grandparents 122 -1011011110110 adversaries 143 -1011011110110 challengers 143 -1011011110110 heirs 144 -1011011110110 listeners 147 -1011011110110 successors 153 -1011011110110 favorites 154 -1011011110110 celebrities 177 -1011011110110 policyholders 185 -1011011110110 charities 200 -1011011110110 managements 202 -1011011110110 contributors 203 -1011011110110 heroes 204 -1011011110110 superiors 207 -1011011110110 peers 226 -1011011110110 fingers 229 -1011011110110 followers 248 -1011011110110 subordinates 261 -1011011110110 constituents 263 -1011011110110 predecessors 266 -1011011110110 bosses 303 -1011011110110 enemies 329 -1011011110110 donors 375 -1011011110110 salesmen 403 -1011011110110 guests 427 -1011011110110 franchisees 429 -1011011110110 tenants 437 -1011011110110 audiences 488 -1011011110110 relatives 507 -1011011110110 neighbors 586 -1011011110110 raiders 600 -1011011110110 witnesses 638 -1011011110110 fans 671 -1011011110110 travelers 687 -1011011110110 characters 882 -1011011110110 readers 937 -1011011110110 associates 996 -1011011110110 rivals 1144 -1011011110110 colleagues 1412 -1011011110110 allies 1570 -1011011110110 reporters 1805 -1011011110110 parents 2100 -1011011110110 friends 2134 -1011011110110 players 2169 -1011011110110 competitors 2903 -1011011110110 customers 8021 -1011011110110 clients 4611 -1011011110111 Delftshaven 1 -1011011110111 presence. 1 -1011011110111 Bundle 1 -1011011110111 Shell-Shocked 1 -1011011110111 diamond-earring 1 -1011011110111 Lebanization 1 -1011011110111 industry-encompassing 1 -1011011110111 trader-customers 1 -1011011110111 Glassworkers 1 -1011011110111 cheap. 1 -1011011110111 Lipsticks 1 -1011011110111 Intramarketing 1 -1011011110111 F.F. 1 -1011011110111 Octopussy 1 -1011011110111 Tradinca 1 -1011011110111 extra-option 1 -1011011110111 Frontline/Time 1 -1011011110111 team. 1 -1011011110111 x-months 1 -1011011110111 tok 1 -1011011110111 kaul 1 -1011011110111 Reinventing 1 -1011011110111 nin 1 -1011011110111 buy-dollar 1 -1011011110111 accordin 1 -1011011110111 Judge-of-the-Month 1 -1011011110111 See-no-evil 1 -1011011110111 affiliiates 1 -1011011110111 stock-raids 1 -1011011110111 Uh-Oh 1 -1011011110111 lyres 1 -1011011110111 landpartnerships 1 -1011011110111 ANTIDOTE 1 -1011011110111 1895-1913 1 -1011011110111 hypertrophy 1 -1011011110111 courseware 1 -1011011110111 Hemo 1 -1011011110111 Libertines 1 -1011011110111 u 1 -1011011110111 cold-ships 1 -1011011110111 white-hat 1 -1011011110111 oologies 1 -1011011110111 26,073 1 -1011011110111 sky-is-falling 1 -1011011110111 civilianized 1 -1011011110111 meister 1 -1011011110111 more-German-growth 1 -1011011110111 immobiles 1 -1011011110111 ilegales 1 -1011011110111 positive-energetic-relaxation 1 -1011011110111 hamsteak 1 -1011011110111 Whelchairs 1 -1011011110111 Koroga 1 -1011011110111 chinensis 1 -1011011110111 plantscapes 1 -1011011110111 Excrement 1 -1011011110111 colonias 1 -1011011110111 Eurosclerosis 1 -1011011110111 fanaticos 1 -1011011110111 1,340,200 1 -1011011110111 de-Echeverriaizing 1 -1011011110111 nope 1 -1011011110111 Habermaas 1 -1011011110111 LEFTIES 1 -1011011110111 -scam 1 -1011011110111 -gate 1 -1011011110111 junk-junk 1 -1011011110111 Boppin 1 -1011011110111 affilates 1 -1011011110111 headcounts 1 -1011011110111 quasi-political 1 -1011011110111 Occasionless 1 -1011011110111 when-it-happens 1 -1011011110111 money-centers 1 -1011011110111 She-Ras 1 -1011011110111 wings. 1 -1011011110111 one-outlook 1 -1011011110111 something-for-nothing 1 -1011011110111 Ramblin 1 -1011011110111 bee-yoo-tee-fool 1 -1011011110111 Bye-bye 1 -1011011110111 detour. 1 -1011011110111 Wagon-Lits 1 -1011011110111 Rhoda. 1 -1011011110111 poverticians. 1 -1011011110111 salade 1 -1011011110111 high-teching 1 -1011011110111 ive 1 -1011011110111 Norma. 1 -1011011110111 fibroids 1 -1011011110111 In-a-Gadda-Da-Vida 1 -1011011110111 line-cussin 1 -1011011110111 FQ 1 -1011011110111 please. 1 -1011011110111 sixmonths 1 -1011011110111 17,553 1 -1011011110111 Stasi 1 -1011011110111 ins. 1 -1011011110111 newsboys 1 -1011011110111 flight-to-safety 1 -1011011110111 lushy-gushy 1 -1011011110111 SPYCATCHER 1 -1011011110111 to-whom-er 1 -1011011110111 pre-martial-law 1 -1011011110111 semiconductor-makers 1 -1011011110111 special-counselors 1 -1011011110111 U.S.S.R 1 -1011011110111 comin 1 -1011011110111 after-care 2 -1011011110111 3,396 2 -1011011110111 disputants 2 -1011011110111 132,644 2 -1011011110111 inanition 2 -1011011110111 subdividers 2 -1011011110111 recommendation. 2 -1011011110111 aficianados 2 -1011011110111 Irece 2 -1011011110111 Hawkeyes 2 -1011011110111 P.M.D.B. 2 -1011011110111 wash-out 2 -1011011110111 Breach 2 -1011011110111 saying. 2 -1011011110111 Marne 2 -1011011110111 front-to-back 2 -1011011110111 anti-contra 2 -1011011110111 rulebooks 2 -1011011110111 plaids 2 -1011011110111 2,961 2 -1011011110111 Bul 2 -1011011110111 Clios 2 -1011011110111 clambering 2 -1011011110111 1029.50 2 -1011011110111 1067.31 2 -1011011110111 1047.42 2 -1011011110111 Capetown 2 -1011011110111 Odysseus 3 -1011011110111 Aerocancun 3 -1011011110111 damsels 3 -1011011110111 public-employees 3 -1011011110111 Hoovered 3 -1011011110111 superchargers 3 -1011011110111 Lothario 3 -1011011110111 umph 3 -1011011110111 lithotripters 3 -1011011110111 Bol 3 -1011011110111 Burnips 3 -1011011110111 Inquisitors 3 -1011011110111 aeration 3 -1011011110111 indexers 3 -1011011110111 extravagances 4 -1011011110111 somethin 4 -1011011110111 tipsters 4 -1011011110111 gettin 4 -1011011110111 SROs 4 -1011011110111 insitutions 4 -1011011110111 account. 4 -1011011110111 breastbone 4 -1011011110111 Cervantes 4 -1011011110111 1438.12 4 -1011011110111 Kunming 4 -1011011110111 roofers 4 -1011011110111 body-builders 5 -1011011110111 non-Americans 5 -1011011110111 MEDIOBANCA 5 -1011011110111 shrimpers 5 -1011011110111 oilworkers 5 -1011011110111 letterheads 5 -1011011110111 garrisons 5 -1011011110111 storekeepers 6 -1011011110111 Bricklayers 6 -1011011110111 arrangers 6 -1011011110111 kiwis 6 -1011011110111 Misanthrope 6 -1011011110111 Meda 6 -1011011110111 Astroturf 7 -1011011110111 flight-attendants 7 -1011011110111 minnows 7 -1011011110111 ne 7 -1011011110111 debt-holders 8 -1011011110111 nothin 8 -1011011110111 WASPs 8 -1011011110111 L-1011s 9 -1011011110111 feudalism 10 -1011011110111 rate-payers 10 -1011011110111 Galilee 10 -1011011110111 hostage-takers 11 -1011011110111 Bojangles 12 -1011011110111 decorators 13 -1011011110111 cogenerators 13 -1011011110111 climbers 14 -1011011110111 wrestlers 15 -1011011110111 mineworkers 16 -1011011110111 metalworkers 16 -1011011110111 rooftops 20 -1011011110111 preferreds 20 -1011011110111 paperbacks 21 -1011011110111 unionists 31 -1011011110111 signatories 33 -1011011110111 Achilles 40 -1011011110111 CMOs 43 -1011011110111 reinsurers 44 -1011011110111 noteholders 48 -1011011110111 debtholders 49 -1011011110111 darts 64 -1011011110111 initials 67 -1011011110111 captives 68 -1011011110111 ADRs 165 -1011011110111 scratch 206 -1011011110111 PACs 235 -1011011110111 supervisors 255 -1011011110111 machinists 467 -1011011110111 claimants 498 -1011011110111 affiliates 770 -1011011110111 contractors 1308 -1011011110111 lenders 2024 -1011011110111 pilots 2121 -1011011110111 unions 2586 -1011011110111 creditors 4159 -1011011110111 partners 3487 -101101111100 analyis 1 -101101111100 well-monitoring 1 -101101111100 J-Cars 1 -101101111100 political-education 1 -101101111100 theocrats 1 -101101111100 accommodationists 2 -101101111100 Augmentin 2 -101101111100 Heels 2 -101101111100 AIN 2 -101101111100 voodooists 2 -101101111100 recaps 2 -101101111100 probers 3 -101101111100 CAMPS 3 -101101111100 ladies-in-waiting 3 -101101111100 Ripperologists 3 -101101111100 flattops 3 -101101111100 Amboseli 3 -101101111100 paleontologists 3 -101101111100 image-makers 3 -101101111100 anti-militarists 3 -101101111100 Bisons 3 -101101111100 consuls 4 -101101111100 die-hards 4 -101101111100 budget-cutters 5 -101101111100 criminologists 5 -101101111100 laywers 5 -101101111100 free-marketeers 6 -101101111100 Cassandras 6 -101101111100 embezzlers 6 -101101111100 reseachers 7 -101101111100 free-traders 7 -101101111100 co-stars 7 -101101111100 aldermen 8 -101101111100 budgeteers 8 -101101111100 schedulers 9 -101101111100 geriatricians 10 -101101111100 left-wingers 11 -101101111100 audiophiles 12 -101101111100 speechwriters 12 -101101111100 presenters 14 -101101111100 animators 14 -101101111100 editorialists 14 -101101111100 psychotherapists 15 -101101111100 sleuths 15 -101101111100 decision-makers 16 -101101111100 intimates 19 -101101111100 geniuses 19 -101101111100 cynics 20 -101101111100 screenwriters 20 -101101111100 princes 22 -101101111100 wags 22 -101101111100 hoteliers 23 -101101111100 advisors 23 -101101111100 wizards 25 -101101111100 purists 25 -101101111100 apologists 26 -101101111100 cognoscenti 27 -101101111100 biologists 32 -101101111100 publicists 33 -101101111100 sociologists 40 -101101111100 statisticians 40 -101101111100 cartoonists 42 -101101111100 hardliners 47 -101101111100 reviewers 50 -101101111100 gurus 55 -101101111100 theorists 63 -101101111100 columnists 64 -101101111100 chemists 66 -101101111100 pundits 96 -101101111100 detractors 100 -101101111100 counselors 108 -101101111100 educators 141 -101101111100 promoters 153 -101101111100 historians 157 -101101111100 administrators 272 -101101111100 scholars 316 -101101111100 lobbyists 466 -101101111100 strategists 474 -101101111100 diplomats 604 -101101111100 staffers 629 -101101111100 planners 647 -101101111100 accountants 793 -101101111100 consultants 1365 -101101111100 professionals 1419 -101101111100 scientists 1783 -101101111100 aides 1810 -101101111100 advisers 1822 -101101111100 researchers 1858 -101101111100 attorneys 2091 -101101111100 critics 2198 -101101111100 managers 6742 -101101111100 bankers 3778 -101101111100 lawyers 5012 -1011011111010 Torquers 1 -1011011111010 Kinski 1 -1011011111010 wrangler 1 -1011011111010 fare-setter 1 -1011011111010 mangagement 1 -1011011111010 organziations 1 -1011011111010 PRI-haters 1 -1011011111010 yuppettes 1 -1011011111010 PPPA 1 -1011011111010 OFFSETS 1 -1011011111010 co-worker. 1 -1011011111010 ethnobotanist 1 -1011011111010 256.00 1 -1011011111010 POW. 1 -1011011111010 disconnects 1 -1011011111010 coders 1 -1011011111010 Bouis 1 -1011011111010 Malmsteen 1 -1011011111010 Telfer 1 -1011011111010 polarizes 1 -1011011111010 flameout 1 -1011011111010 Amini 1 -1011011111010 928-S4 1 -1011011111010 evolutions 1 -1011011111010 track-speed 1 -1011011111010 cocoas 1 -1011011111010 recruiter. 1 -1011011111010 sail-plane 1 -1011011111010 taxwriter 1 -1011011111010 poobah 1 -1011011111010 abbreviatus 1 -1011011111010 Cressidas 2 -1011011111010 GROWERS 2 -1011011111010 Craftsmen 2 -1011011111010 job-hunters 2 -1011011111010 ticketholders 2 -1011011111010 Sidor 2 -1011011111010 menthols 2 -1011011111010 ewes 2 -1011011111010 counterpunches 2 -1011011111010 reopenings 2 -1011011111010 Zachara 2 -1011011111010 Montrealer 2 -1011011111010 pedigrees 2 -1011011111010 ZEAL 2 -1011011111010 vote-getters 2 -1011011111010 NCOs 3 -1011011111010 woodcut 3 -1011011111010 A300s 3 -1011011111010 ex-officials 3 -1011011111010 protestants 3 -1011011111010 drillship 3 -1011011111010 docs 3 -1011011111010 exponents 4 -1011011111010 FXs 4 -1011011111010 182.55 5 -1011011111010 tax-writer 5 -1011011111010 handicappers 5 -1011011111010 provocateurs 5 -1011011111010 lifer 6 -1011011111010 number-crunchers 6 -1011011111010 lessees 8 -1011011111010 ex-employees 8 -1011011111010 savants 9 -1011011111010 GROUPS 9 -1011011111010 junkholders 9 -1011011111010 pageants 12 -1011011111010 finishers 12 -1011011111010 dealmaker 15 -1011011111010 bigwigs 19 -1011011111010 chieftains 27 -1011011111010 treasurers 50 -1011011111010 recruiters 99 -1011011111010 insiders 719 -1011011111010 officers 3114 -1011011111010 executives 9612 -1011011111011 formaldehyde-producing 1 -1011011111011 interest-rate-related 1 -1011011111011 KNSS-FM 1 -1011011111011 Khadija 1 -1011011111011 heav 1 -1011011111011 WRIF-FM 1 -1011011111011 KTEH 1 -1011011111011 Westdeutscher 1 -1011011111011 now-unnecessary 1 -1011011111011 CFTO-TV 1 -1011011111011 internalization 1 -1011011111011 WKBW 1 -1011011111011 WPIX-11 1 -1011011111011 WQBA-AM 1 -1011011111011 self-reformation 1 -1011011111011 WZFM-FM 1 -1011011111011 KKRD-FM 1 -1011011111011 Nanapush 1 -1011011111011 KIHS 1 -1011011111011 KCPQ 1 -1011011111011 Jalala 1 -1011011111011 WWWE 1 -1011011111011 leafleting 1 -1011011111011 KLRS 1 -1011011111011 WBGO-FM 1 -1011011111011 KXXV 1 -1011011111011 punchin 1 -1011011111011 reliquaries 1 -1011011111011 437-page 1 -1011011111011 WSJT 1 -1011011111011 Punjab. 1 -1011011111011 DZBB 1 -1011011111011 people-friends 1 -1011011111011 aircraft-manufacturers 1 -1011011111011 minibars 1 -1011011111011 Phlox 1 -1011011111011 blasters 1 -1011011111011 state-established 1 -1011011111011 Nuttin 1 -1011011111011 Ghazi 1 -1011011111011 673-acre 1 -1011011111011 technologies-they 1 -1011011111011 Ntomb 1 -1011011111011 KMST 1 -1011011111011 WMJI 1 -1011011111011 WCXR-FM 1 -1011011111011 births. 1 -1011011111011 Linens 1 -1011011111011 windbreaks 1 -1011011111011 WCPX 1 -1011011111011 Meltem 1 -1011011111011 KHIT-FM 1 -1011011111011 KSSN-FM 1 -1011011111011 KZOU-FM 1 -1011011111011 KTVX 1 -1011011111011 KDKA 1 -1011011111011 crosschecking 1 -1011011111011 field-officials 1 -1011011111011 WOKJ 1 -1011011111011 keyholes 1 -1011011111011 corn-buyer 1 -1011011111011 power-play 1 -1011011111011 does. 1 -1011011111011 KUED 1 -1011011111011 Stilfontein 1 -1011011111011 megabusts 1 -1011011111011 refurbishings 1 -1011011111011 Dreaded 1 -1011011111011 faculty-hiring 1 -1011011111011 KPWR 1 -1011011111011 directorates 1 -1011011111011 Sambre 1 -1011011111011 horsin 1 -1011011111011 billons 1 -1011011111011 WWSW-FM 1 -1011011111011 A-321s 2 -1011011111011 HSV7 2 -1011011111011 creaminess 2 -1011011111011 picnickers 2 -1011011111011 WKRC 2 -1011011111011 MobiTel 2 -1011011111011 alitame 2 -1011011111011 Comaneci 2 -1011011111011 Imperials 2 -1011011111011 longshots 2 -1011011111011 her. 2 -1011011111011 B-52s 2 -1011011111011 IDMS/SQL 2 -1011011111011 WBZ-TV 2 -1011011111011 HWGA 2 -1011011111011 Khomeinis 2 -1011011111011 eye-blinks 2 -1011011111011 WMHE-FM 2 -1011011111011 countesses 2 -1011011111011 Tafts 2 -1011011111011 containments 2 -1011011111011 Rabl 2 -1011011111011 rudders 2 -1011011111011 Nanotyrannus 2 -1011011111011 KIQQ 2 -1011011111011 world-weariness 2 -1011011111011 snakebites 2 -1011011111011 shovelers 3 -1011011111011 KETV 3 -1011011111011 WQYK-FM 3 -1011011111011 grotesques 3 -1011011111011 concierges 3 -1011011111011 Maroons 3 -1011011111011 MD-82s 3 -1011011111011 WQHT 3 -1011011111011 collieries 3 -1011011111011 scions 3 -1011011111011 CJOH-TV 3 -1011011111011 anvils 3 -1011011111011 Peconic 3 -1011011111011 idlings 3 -1011011111011 2200-600s 3 -1011011111011 cave-ins 3 -1011011111011 terrarium 3 -1011011111011 torturers 4 -1011011111011 trolleys 4 -1011011111011 unit-holders 4 -1011011111011 governors-at-large 4 -1011011111011 promos 4 -1011011111011 uprights 4 -1011011111011 half-brothers 4 -1011011111011 co-underwriters 4 -1011011111011 exaltation 4 -1011011111011 whiners 4 -1011011111011 willows 4 -1011011111011 infielders 5 -1011011111011 ratifiers 5 -1011011111011 KRON 5 -1011011111011 restarts 5 -1011011111011 modernizations 5 -1011011111011 violinists 5 -1011011111011 chasers 6 -1011011111011 Airbuses 6 -1011011111011 lunchroom 6 -1011011111011 renegades 6 -1011011111011 appendixes 6 -1011011111011 Ogonyok 6 -1011011111011 violas 6 -1011011111011 closedowns 6 -1011011111011 charmers 6 -1011011111011 Maoris 7 -1011011111011 knock-offs 7 -1011011111011 skimmers 8 -1011011111011 etchings 8 -1011011111011 Plunge 8 -1011011111011 fiascos 9 -1011011111011 breakups 9 -1011011111011 electors 10 -1011011111011 sharpness 10 -1011011111011 handymen 10 -1011011111011 diesels 11 -1011011111011 707s 11 -1011011111011 737-400s 12 -1011011111011 balconies 13 -1011011111011 sweeper 13 -1011011111011 butchers 13 -1011011111011 councilmen 15 -1011011111011 nephews 15 -1011011111011 jingles 15 -1011011111011 tasters 16 -1011011111011 pathologists 18 -1011011111011 umpires 18 -1011011111011 superfreighters 18 -1011011111011 meadows 18 -1011011111011 discos 18 -1011011111011 WFXT 18 -1011011111011 WOR 21 -1011011111011 assassins 21 -1011011111011 stewards 22 -1011011111011 executors 24 -1011011111011 drafters 24 -1011011111011 liquidators 32 -1011011111011 steward 34 -1011011111011 767s 36 -1011011111011 curators 36 -1011011111011 sweepers 49 -1011011111011 wagons 67 -1011011111011 creators 78 -1011011111011 closures 87 -1011011111011 chiefs 184 -1011011111011 architects 201 -1011011111011 secretaries 217 -1011011111011 founders 306 -1011011111011 principals 319 -1011011111011 commissioners 340 -1011011111011 sponsors 463 -1011011111011 trustees 480 -1011011111011 editors 528 -1011011111011 governors 624 -1011011111011 closings 694 -1011011111011 auditors 700 -1011011111011 brothers 961 -1011011111011 underwriters 1500 -1011011111011 directors 7097 -1011011111011 owners 2979 -101101111110 mega-projects 1 -101101111110 McCarthyites 1 -101101111110 hornets 1 -101101111110 icicles 1 -101101111110 restrainer 1 -101101111110 silo-protected 1 -101101111110 misnomers 1 -101101111110 newspapers. 1 -101101111110 cross-signals 1 -101101111110 secondary-bond 1 -101101111110 workbook 1 -101101111110 silvers 1 -101101111110 ground-school 1 -101101111110 go- 1 -101101111110 gladdens 1 -101101111110 Blancs 1 -101101111110 chain-smoke 1 -101101111110 singer/percussionist 1 -101101111110 isses 1 -101101111110 poufs 1 -101101111110 coddles 1 -101101111110 Airmach 1 -101101111110 Afrikaans- 1 -101101111110 smilin 1 -101101111110 rappelled 1 -101101111110 Haymans 1 -101101111110 Conventiongoers 1 -101101111110 ex-Marines 1 -101101111110 sachems 1 -101101111110 anti-Catholics 1 -101101111110 adjectivally 1 -101101111110 Democrates 1 -101101111110 German-government 1 -101101111110 Mohammedan 1 -101101111110 Ukrainsky 1 -101101111110 Eliminator 1 -101101111110 sides. 1 -101101111110 voyagers 1 -101101111110 citydwellers 1 -101101111110 procrastinators 1 -101101111110 degree-holder 1 -101101111110 cellularphone 1 -101101111110 Avises 1 -101101111110 unposted 1 -101101111110 pseudo-scientific 1 -101101111110 briskets 1 -101101111110 Sippin 1 -101101111110 language/culture 1 -101101111110 Haydnesque 1 -101101111110 self-memorialization 1 -101101111110 trackman 1 -101101111110 Beszelo 1 -101101111110 Chevreuse 1 -101101111110 Nuschelsberg 1 -101101111110 heavy-hitters 1 -101101111110 barbecue. 1 -101101111110 preteens 1 -101101111110 glitteringly 1 -101101111110 skiffs 1 -101101111110 Catalonians 1 -101101111110 Nexts 1 -101101111110 straight-shooters 1 -101101111110 Jewbaiters 1 -101101111110 semi-entities 1 -101101111110 contemporarily 1 -101101111110 moderacy 1 -101101111110 government- 1 -101101111110 getter 1 -101101111110 individual- 1 -101101111110 cartography 2 -101101111110 deejays 2 -101101111110 walk-ins 2 -101101111110 Berlins 2 -101101111110 cash-method 2 -101101111110 marms 2 -101101111110 Bavmorda 2 -101101111110 Landsats 2 -101101111110 CATALOGS 2 -101101111110 Germanies 2 -101101111110 councillor 2 -101101111110 flabbiness 2 -101101111110 grabbers 2 -101101111110 redistributionists 2 -101101111110 groups. 2 -101101111110 statehooders 2 -101101111110 leader. 2 -101101111110 Euroequities 2 -101101111110 speak-easies 2 -101101111110 pro- 2 -101101111110 public- 2 -101101111110 leavers 2 -101101111110 sots 2 -101101111110 vitae 3 -101101111110 canards 3 -101101111110 bluebloods 3 -101101111110 gotico 3 -101101111110 Metroplex 3 -101101111110 secessionists 3 -101101111110 Yakima 3 -101101111110 hatreds 3 -101101111110 countertenors 3 -101101111110 interjections 3 -101101111110 Edens 3 -101101111110 ESP 3 -101101111110 cars. 3 -101101111110 politicans 4 -101101111110 constants 4 -101101111110 fastidiousness 4 -101101111110 bulwarks 4 -101101111110 curmudgeons 5 -101101111110 Roosevelts 5 -101101111110 duchies 5 -101101111110 naturalism 5 -101101111110 Melanesians 5 -101101111110 Brennans 6 -101101111110 appellations 6 -101101111110 identically 6 -101101111110 armchairs 6 -101101111110 herdsmen 6 -101101111110 kennels 6 -101101111110 yahoos 6 -101101111110 cuisines 6 -101101111110 behaviorists 7 -101101111110 orators 7 -101101111110 schoolmates 7 -101101111110 hijinks 7 -101101111110 fundraisers 8 -101101111110 tax-writers 9 -101101111110 switchers 9 -101101111110 searchers 10 -101101111110 archivists 10 -101101111110 psychics 12 -101101111110 belligerents 12 -101101111110 warlords 13 -101101111110 persuasions 14 -101101111110 insurgencies 17 -101101111110 theses 18 -101101111110 rangers 18 -101101111110 agitators 22 -101101111110 officeholders 23 -101101111110 sages 24 -101101111110 theologians 24 -101101111110 litigators 24 -101101111110 notables 25 -101101111110 crusaders 26 -101101111110 landslides 29 -101101111110 aspirants 54 -101101111110 subcommittees 54 -101101111110 sexes 59 -101101111110 Kims 70 -101101111110 stripes 81 -101101111110 finalists 98 -101101111110 seekers 106 -101101111110 worlds 122 -101101111110 surgeons 126 -101101111110 regimes 145 -101101111110 nominations 165 -101101111110 administrations 195 -101101111110 conventions 213 -101101111110 superpowers 216 -101101111110 chambers 216 -101101111110 societies 220 -101101111110 contenders 237 -101101111110 factions 260 -101101111110 appointees 262 -101101111110 contests 292 -101101111110 nominees 429 -101101111110 races 462 -101101111110 panels 466 -101101111110 districts 477 -101101111110 camps 507 -101101111110 activists 767 -101101111110 committees 1393 -101101111110 sides 2139 -101101111110 candidates 3084 -101101111110 groups 6609 -101101111110 parties 3718 -101101111111 netters 1 -101101111111 poopers 1 -101101111111 king-maker 1 -101101111111 toeholds 1 -101101111111 sorcerer-priests 1 -101101111111 hyper-secrecy 1 -101101111111 level-late 1 -101101111111 Kurd 1 -101101111111 ho-hummer 1 -101101111111 Pipsi 1 -101101111111 SS-12/23s 1 -101101111111 Republicain 1 -101101111111 Bursa 1 -101101111111 corporatism 1 -101101111111 Jamaat-i-Islami 1 -101101111111 mini-festival 1 -101101111111 China-watchers 1 -101101111111 emigre's-eye 1 -101101111111 Glycol 1 -101101111111 Socialiste 1 -101101111111 radarplane 1 -101101111111 Fragos 1 -101101111111 all-ivy 1 -101101111111 Quebequois 1 -101101111111 Osumu 1 -101101111111 reaffiliated 1 -101101111111 POPULIST 1 -101101111111 locals. 1 -101101111111 Duru 1 -101101111111 heirarchy 1 -101101111111 loansharks 1 -101101111111 Yeni 1 -101101111111 demarche 2 -101101111111 honeysuckle 2 -101101111111 millstones 2 -101101111111 game. 2 -101101111111 vote-counters 2 -101101111111 familes 2 -101101111111 warhorses 2 -101101111111 manifestos 2 -101101111111 woodworkers 2 -101101111111 episcopate 2 -101101111111 weightlifters 2 -101101111111 Kimonos 2 -101101111111 flyboys 2 -101101111111 tunesmiths 2 -101101111111 fiddlers 3 -101101111111 tom-toms 3 -101101111111 Commies 3 -101101111111 neo-fascist 3 -101101111111 herders 3 -101101111111 militiaman 3 -101101111111 Brooklynese 3 -101101111111 songbird 3 -101101111111 highrises 3 -101101111111 sojourns 3 -101101111111 Laborites 4 -101101111111 hovercraft 4 -101101111111 houseman 4 -101101111111 reintegration 4 -101101111111 troublemaking 4 -101101111111 chocolatiers 4 -101101111111 empire-building 4 -101101111111 Rumpelstiltskin 4 -101101111111 layering 4 -101101111111 edifices 4 -101101111111 pressmen 4 -101101111111 determinism 5 -101101111111 intercession 5 -101101111111 strongmen 5 -101101111111 occupiers 5 -101101111111 militarists 5 -101101111111 humanists 5 -101101111111 capo 5 -101101111111 liturgy 6 -101101111111 humorists 6 -101101111111 steeple 6 -101101111111 tacticians 6 -101101111111 apparatchik 6 -101101111111 hangouts 7 -101101111111 kingmaker 7 -101101111111 peacekeepers 7 -101101111111 leaderships 8 -101101111111 perfidy 8 -101101111111 ideologist 8 -101101111111 protectorate 8 -101101111111 abductors 9 -101101111111 antagonisms 9 -101101111111 blacklist 9 -101101111111 theoreticians 10 -101101111111 proverb 10 -101101111111 soliders 10 -101101111111 thug 10 -101101111111 corneas 11 -101101111111 MiGs 11 -101101111111 sympathizer 11 -101101111111 Consulate 11 -101101111111 America-watchers 11 -101101111111 sects 11 -101101111111 government-in-exile 12 -101101111111 chieftain 12 -101101111111 Jewry 12 -101101111111 campaigners 12 -101101111111 functionary 12 -101101111111 trawlers 12 -101101111111 progressives 13 -101101111111 commissars 13 -101101111111 rabbis 13 -101101111111 propagandists 13 -101101111111 humorist 14 -101101111111 militarism 14 -101101111111 interrogator 14 -101101111111 congresses 14 -101101111111 apparatchiks 16 -101101111111 translators 17 -101101111111 colonialists 17 -101101111111 mole 18 -101101111111 plotters 19 -101101111111 higher-ups 20 -101101111111 serviceman 21 -101101111111 overseers 21 -101101111111 mercenary 23 -101101111111 expansionism 23 -101101111111 dictatorships 23 -101101111111 functionaries 26 -101101111111 gunners 26 -101101111111 mascot 27 -101101111111 navies 27 -101101111111 sect 27 -101101111111 speedboats 27 -101101111111 adventurism 28 -101101111111 zealots 28 -101101111111 tribesmen 29 -101101111111 surrogates 30 -101101111111 Quebecois 30 -101101111111 defector 30 -101101111111 leanings 30 -101101111111 militias 31 -101101111111 Cypriots 32 -101101111111 sheiks 33 -101101111111 envoys 35 -101101111111 sympathizers 36 -101101111111 stalwarts 36 -101101111111 mobs 36 -101101111111 pavilion 37 -101101111111 commandos 37 -101101111111 strongholds 40 -101101111111 emigres 41 -101101111111 democrats 45 -101101111111 invaders 46 -101101111111 warship 48 -101101111111 consulate 49 -101101111111 protectionists 53 -101101111111 dictators 53 -101101111111 militiamen 56 -101101111111 revolutionaries 56 -101101111111 cadres 56 -101101111111 separatists 59 -101101111111 partisans 60 -101101111111 majorities 61 -101101111111 militants 61 -101101111111 orthodoxy 65 -101101111111 fundamentalism 66 -101101111111 nationalists 67 -101101111111 pilgrims 68 -101101111111 elites 70 -101101111111 regulars 71 -101101111111 loyalists 79 -101101111111 delegations 82 -101101111111 strongman 82 -101101111111 nationals 87 -101101111111 champ 87 -101101111111 deputies 93 -101101111111 stronghold 96 -101101111111 operatives 101 -101101111111 descent 115 -101101111111 operative 116 -101101111111 commanders 118 -101101111111 ruler 121 -101101111111 warplanes 122 -101101111111 hierarchy 128 -101101111111 rulers 132 -101101111111 defenders 146 -101101111111 domination 149 -101101111111 aggression 171 -101101111111 dictatorship 177 -101101111111 dictator 193 -101101111111 organizers 208 -101101111111 congress 220 -101101111111 foes 225 -101101111111 counterpart 273 -101101111111 faction 290 -101101111111 occupation 296 -101101111111 backers 356 -101101111111 commander 363 -101101111111 delegation 467 -101101111111 prisoners 473 -101101111111 tankers 480 -101101111111 counterparts 526 -101101111111 Embassy 542 -101101111111 diplomat 580 -101101111111 negotiators 916 -101101111111 opponents 1149 -101101111111 supporters 1265 -101101111111 troops 1881 -101101111111 leadership 2647 -101101111111 leader 4567 -101101111111 leaders 5388 -10111000 386-20 1 -10111000 386-20E 1 -10111000 1267.25 1 -10111000 PCLAN/Server 1 -10111000 Sino-hype 1 -10111000 Homecourt 1 -10111000 Fabians 1 -10111000 5:00 1 -10111000 System/40 1 -10111000 slowings 1 -10111000 disrespectfully 1 -10111000 doctor-tested 1 -10111000 ex-prosecutor 1 -10111000 unbought 1 -10111000 megaproject 1 -10111000 fleet-replenishment 2 -10111000 taxidermist 2 -10111000 DECADE 2 -10111000 bedmate 2 -10111000 millworker 2 -10111000 ventriloquist 2 -10111000 doozie 2 -10111000 spymaster 2 -10111000 case. 3 -10111000 carpetbagger 3 -10111000 miser 3 -10111000 quadrennium 4 -10111000 half-decade 4 -10111000 week-and-a-half 4 -10111000 fortnight 15 -10111000 half-century 58 -10111000 quarter-century 64 -10111000 century 1731 -10111000 year 98313 -10111000 decade 2564 -10111001 yearemerged 1 -10111001 hereases 1 -10111001 description-the 1 -10111001 closing-price 1 -10111001 fazes 1 -10111001 upleg 1 -10111001 24600 1 -10111001 april 1 -10111001 reinsertion 1 -10111001 bower 1 -10111001 week-after 1 -10111001 treasure-stuffed 1 -10111001 pastlessness 1 -10111001 filigreed 1 -10111001 announcement-of-an-announcement 1 -10111001 anti-materialist 1 -10111001 Self-Portrait 1 -10111001 interglacial 1 -10111001 alarm-sounding 1 -10111001 book. 1 -10111001 sign-ups 1 -10111001 novelist-physician 1 -10111001 summmer 1 -10111001 Alamanc 1 -10111001 june 1 -10111001 H-34 1 -10111001 subgenre 1 -10111001 proj 1 -10111001 in-groups 1 -10111001 Century. 1 -10111001 WilkesBarre 1 -10111001 AA-minus 1 -10111001 overperformance 1 -10111001 ospreys 1 -10111001 Easternization 1 -10111001 packaging-containers 1 -10111001 part-concert-film-part-travelogue 1 -10111001 nutjob 1 -10111001 4- 1 -10111001 study-plan 1 -10111001 yearthat 1 -10111001 Romantics 1 -10111001 133-foot-high 1 -10111001 Zeebetite 1 -10111001 auto-blurb 1 -10111001 mega-investigation 1 -10111001 hangmen 1 -10111001 debate. 1 -10111001 Decemer 1 -10111001 straw. 1 -10111001 cattle-call 1 -10111001 half-chapter 1 -10111001 clatterings 1 -10111001 decoction 1 -10111001 collectible-conscious 1 -10111001 Yr 1 -10111001 DANGERS 1 -10111001 era. 1 -10111001 indebtedness. 1 -10111001 steel-maker 1 -10111001 cigarettes. 1 -10111001 B-17G 1 -10111001 scandal-in-the-making 1 -10111001 foxholing 1 -10111001 antler 1 -10111001 fiddle-faddle 1 -10111001 Eid 1 -10111001 well-roundedness 1 -10111001 carrier-virus 1 -10111001 quarter-hour 2 -10111001 spring. 2 -10111001 Cosmodrome 2 -10111001 professoriate 2 -10111001 farrago 2 -10111001 artcle 2 -10111001 earthmover 2 -10111001 morning. 2 -10111001 s--- 3 -10111001 century. 3 -10111001 month. 5 -10111001 week. 9 -10111001 year. 15 -10111001 Temptation 21 -10111001 month 22197 -10111001 week 28240 -101110100 693-27 1 -101110100 moonsick 1 -101110100 teratogenic 1 -101110100 9,000-square-foot 1 -101110100 830-seat 1 -101110100 soft-sloping 1 -101110100 Sulfate 1 -101110100 bad-deal 1 -101110100 petrochemical-refining 1 -101110100 toy-buying 1 -101110100 16:00-23:00 1 -101110100 bagel-delivery 1 -101110100 full-houses 1 -101110100 perpetual-problem 1 -101110100 cloudburst 1 -101110100 wards-of-the-state 1 -101110100 Mama-on-the-Couch 1 -101110100 well-installed 1 -101110100 imagistic 1 -101110100 minute. 1 -101110100 36-volt 1 -101110100 subdivisional 1 -101110100 instititute 1 -101110100 mind-storming 1 -101110100 McStory 1 -101110100 CD-length 1 -101110100 cancel-and-reissue 1 -101110100 ill-thought-out 1 -101110100 truth-is-stranger-than-fiction 1 -101110100 600-pound 1 -101110100 Photojournalist 1 -101110100 overlit 1 -101110100 redwood-studded 1 -101110100 earth-and-heaven-trembling 1 -101110100 arboreal 1 -101110100 ten-day 1 -101110100 American-painting 1 -101110100 British-originated 1 -101110100 343-126 1 -101110100 Military-Congressional 1 -101110100 cowboy-hatted 1 -101110100 quango 1 -101110100 pre-football-season 1 -101110100 prey-rich 1 -101110100 super-duper 1 -101110100 pseudo-amnesty 1 -101110100 typhoon-prone 1 -101110100 still-controversial 1 -101110100 65,000-acre 1 -101110100 molehill-into-a-mountain 1 -101110100 immigrant-turned-fame 1 -101110100 tube-weary 1 -101110100 triple-decked 1 -101110100 funnies 2 -101110100 Straubing 2 -101110100 two-month-long 2 -101110100 Seventies 2 -101110100 unedifying 2 -101110100 1929-32 2 -101110100 block. 2 -101110100 Bastion 2 -101110100 Theorem 2 -101110100 afteroon 2 -101110100 10-part 2 -101110100 solstice 2 -101110100 swan-drawn 2 -101110100 afternooon 2 -101110100 Sanday 2 -101110100 viva 2 -101110100 father. 3 -101110100 Friday. 3 -101110100 acetylcholinesterase 3 -101110100 Mohican 3 -101110100 minidrama 3 -101110100 mangy 3 -101110100 quarterfinals 3 -101110100 50K 4 -101110100 Hump 4 -101110100 seductress 4 -101110100 matinees 5 -101110100 hydrochloride 5 -101110100 fiesta 5 -101110100 hurrah 13 -101110100 off-season 26 -101110100 intermission 29 -101110100 afternoons 51 -101110100 mornings 62 -101110100 Night 284 -101110100 autumn 342 -101110100 winter 1134 -101110100 evening 1156 -101110100 afternoon 2207 -101110100 season 2534 -101110100 weekend 2657 -101110100 spring 2852 -101110100 morning 3193 -101110100 night 4256 -101110100 summer 4746 -101110101 1760s 1 -101110101 computer-inspired 1 -101110101 securitate 1 -101110101 Goosecreek 1 -101110101 unfairnesses 1 -101110101 boiler-rooms 1 -101110101 Platteville 1 -101110101 Celectol 1 -101110101 Kaliningrader 1 -101110101 sokiaya 1 -101110101 xylophone 1 -101110101 repenter 1 -101110101 Torqueline 1 -101110101 Dmark 1 -101110101 Carthaginians 1 -101110101 woodworks 1 -101110101 soul-less 1 -101110101 Bighorns 1 -101110101 wavy-haired 1 -101110101 ex-radicals 1 -101110101 Underclass 1 -101110101 gentlehanded 1 -101110101 quantifiers 1 -101110101 50,000-ton 1 -101110101 Monocle 1 -101110101 Nullifiers 1 -101110101 Staleys 1 -101110101 minitrial 1 -101110101 Be-1 1 -101110101 FDR/FMLN 1 -101110101 Frente 1 -101110101 Scriptwriter 1 -101110101 Kabikinase 1 -101110101 baconer 1 -101110101 Wauna 1 -101110101 BIMA 1 -101110101 SSM-1 1 -101110101 480-inmate 1 -101110101 BulletStop 1 -101110101 surtitlist 1 -101110101 Scheldt 1 -101110101 mink-draped 1 -101110101 80186 1 -101110101 fairground 1 -101110101 tricksters 1 -101110101 fairgounds 1 -101110101 root-weevil 1 -101110101 Pinochle 1 -101110101 procuracy 1 -101110101 GQE 1 -101110101 Karyatides 1 -101110101 corection 1 -101110101 Koches 1 -101110101 shivery 1 -101110101 8380P 1 -101110101 Mantra 1 -101110101 UNCHR 1 -101110101 12.3-mile 1 -101110101 R&A 1 -101110101 instrument-building 1 -101110101 1750s 1 -101110101 revison 1 -101110101 curlyhaired 1 -101110101 hereins 1 -101110101 l950s 1 -101110101 OMR 1 -101110101 C137 1 -101110101 megabrewery 1 -101110101 decathlon 1 -101110101 crossbars 1 -101110101 tweeb 1 -101110101 assimilationists 1 -101110101 silverhaired 1 -101110101 Tugboat 1 -101110101 Valenzuelas 1 -101110101 sale-topper 1 -101110101 Westar-6 1 -101110101 blue-denimed 1 -101110101 oft-described 1 -101110101 paper-airplane-throwing 1 -101110101 Bardeen-Cooper-Schrieffer 1 -101110101 slips-of-the-tongue 1 -101110101 furcula 1 -101110101 speculative-bubble 1 -101110101 Brain-Dead 1 -101110101 Soutpansbergs 1 -101110101 tip-offs 1 -101110101 Tempter 1 -101110101 386-SX 1 -101110101 Cathouse 1 -101110101 Saesedae 1 -101110101 bin-Nahayan 1 -101110101 4-foot-tall 1 -101110101 bumper-cars 1 -101110101 flat-faced 1 -101110101 Intels 1 -101110101 plebisicite 1 -101110101 Olmecs 1 -101110101 Totonacas 1 -101110101 apiary 1 -101110101 stem-winder 1 -101110101 privilege. 1 -101110101 Groeninge-museum 1 -101110101 Griffins 1 -101110101 slowpokes 1 -101110101 Borsenumsatzsteuer 1 -101110101 Lionheart 1 -101110101 Proletariat 1 -101110101 Turksib 1 -101110101 Louvins 1 -101110101 untamable 1 -101110101 catchline 1 -101110101 Optasia 1 -101110101 Drakes 1 -101110101 Tucumcari 1 -101110101 tooth-grinding 1 -101110101 drug-snorting 1 -101110101 1690s 1 -101110101 bakeoff 1 -101110101 up-today 1 -101110101 Dworkins 1 -101110101 DC-9-30s 1 -101110101 over-valuation 1 -101110101 long-starved 1 -101110101 lieutanants 1 -101110101 Sea-Doo 1 -101110101 Braintrain 1 -101110101 ready-mades 1 -101110101 Arensbergs 1 -101110101 Barkhor 1 -101110101 XMP-48 1 -101110101 aluminum-bodied 1 -101110101 X-MP/14se 1 -101110101 F-15J 1 -101110101 Zugersee 1 -101110101 Baarerstrasse 1 -101110101 Gaps 1 -101110101 Limiteds 1 -101110101 martyred-hero-pantheon 1 -101110101 fleur-de-lis 1 -101110101 garage-wasteland 1 -101110101 duodenum 1 -101110101 Rockford. 1 -101110101 Macandal 1 -101110101 Beanstalk 1 -101110101 Monaca 1 -101110101 single-sized 1 -101110101 more-convenient-to-make 1 -101110101 P-80 1 -101110101 Shamokin 1 -101110101 middle-1990s 1 -101110101 PJ&B 1 -101110101 litigation. 1 -101110101 penalizer 1 -101110101 17,000-resident 1 -101110101 Buckeyes 1 -101110101 S-election 1 -101110101 loratadine 1 -101110101 fingerboard 1 -101110101 overheats 1 -101110101 Luhring 1 -101110101 Tanga 1 -101110101 Hijacks 1 -101110101 best-bused 1 -101110101 bubble-popping 1 -101110101 anti-Machiavellian 1 -101110101 Newark/Elizabeth 1 -101110101 merger-conversion 1 -101110101 Red-Faced 1 -101110101 Stylite 1 -101110101 Mentors 1 -101110101 burn-throughs 1 -101110101 researcher. 1 -101110101 povo 1 -101110101 balance. 1 -101110101 medium-density 1 -101110101 Tupemaros 1 -101110101 semi-tragic 1 -101110101 salability 1 -101110101 388-room 1 -101110101 3/50 1 -101110101 1520s 1 -101110101 Bruegels 1 -101110101 growth-mongers 1 -101110101 X-MP/14 1 -101110101 Godists 1 -101110101 Lev-O-Cal 1 -101110101 age-guesser 1 -101110101 over-racing 1 -101110101 PICABIA 1 -101110101 prosecution. 1 -101110101 1630s 1 -101110101 Fling 1 -101110101 domestic-political 1 -101110101 Tarasoffs 1 -101110101 Midnighters 1 -101110101 Modernaires 1 -101110101 12-toners 1 -101110101 same-resonant 1 -101110101 penguin-shaped 1 -101110101 LaVergne 1 -101110101 Calabash 1 -101110101 nuthouse 1 -101110101 V22 1 -101110101 WHA 1 -101110101 SLV 1 -101110101 SS-300 1 -101110101 ideographic 1 -101110101 cedi 1 -101110101 Laser-LX 1 -101110101 perverseness 1 -101110101 cutstomer 1 -101110101 peanlties 1 -101110101 ever-ambitious 1 -101110101 SX-2-400 1 -101110101 electro-chemistry 1 -101110101 563-seat 1 -101110101 Mellows 1 -101110101 Amesbury 1 -101110101 CFM56-5-S3 1 -101110101 humeri 1 -101110101 condtions 1 -101110101 Ethernettes 1 -101110101 Lydian 1 -101110101 investigations. 1 -101110101 Diamondback 1 -101110101 Resurrecciones 1 -101110101 Warrren 1 -101110101 whore-with-the-heart-of 1 -101110101 churrasco 1 -101110101 enervating 1 -101110101 artist-citizens 1 -101110101 Blutwurst 1 -101110101 icy-eyed 1 -101110101 170-yard 1 -101110101 gurgler 1 -101110101 Rolligon 1 -101110101 DG/1 1 -101110101 six-woman 1 -101110101 FFG-7 1 -101110101 Ishmaels 1 -101110101 torero 1 -101110101 repopulation 1 -101110101 Hamlins 1 -101110101 greaser 1 -101110101 playbill 1 -101110101 Vermeers 1 -101110101 Dong-A-Ilbo 1 -101110101 Carribean 1 -101110101 Laender 1 -101110101 Garberville 1 -101110101 Bodnes 1 -101110101 Shengo 1 -101110101 Alley-Oop 1 -101110101 1990s. 1 -101110101 '84s 1 -101110101 still-predominant 1 -101110101 stagnancy 1 -101110101 Museuminsel 1 -101110101 Kouts 1 -101110101 re-questioning 1 -101110101 Moet-Chandon 1 -101110101 works-in-progress 1 -101110101 Ghibellines 1 -101110101 Astors 1 -101110101 737300s 1 -101110101 Diaspora 1 -101110101 Niemen 1 -101110101 Oder 1 -101110101 near-dark 1 -101110101 Himalaya 1 -101110101 mini-CD 1 -101110101 Reichsmark 1 -101110101 once-dingy 1 -101110101 GBU-15 1 -101110101 Gallicas 1 -101110101 femtosecond 1 -101110101 foehn 1 -101110101 vainest 1 -101110101 Carolines 1 -101110101 Jennette 1 -101110101 no-subsidy 1 -101110101 68040 1 -101110101 Leavers 1 -101110101 budget-bound 1 -101110101 tramontana 1 -101110101 Zhuan 1 -101110101 Rockaways 1 -101110101 HP-28C 1 -101110101 Steinbecks 1 -101110101 megaflop 1 -101110101 Embankment 1 -101110101 lordship 1 -101110101 688s 1 -101110101 Groach 1 -101110101 Slammer 1 -101110101 trash-hunting 1 -101110101 bootnecks 1 -101110101 Minseiiin 1 -101110101 carpet-cutter 1 -101110101 solution-as-idea 1 -101110101 Cheka 1 -101110101 urban-centered 1 -101110101 Merdeka 1 -101110101 slate-gray 1 -101110101 6380E 1 -101110101 toreador 1 -101110101 Realos 1 -101110101 400E 1 -101110101 150E 1 -101110101 carrousel 1 -101110101 Journl 1 -101110101 36-match 1 -101110101 host-organizer 1 -101110101 SPR 1 -101110101 post-impressionists 1 -101110101 jailbreak 1 -101110101 hype-hysteria 1 -101110101 improvers 1 -101110101 protrusions 1 -101110101 hulahoop 1 -101110101 Bridgton 1 -101110101 output- 1 -101110101 jitterbug 1 -101110101 Ibex 1 -101110101 low-to-mid-40s 1 -101110101 stuffees 1 -101110101 Iberians 1 -101110101 propopal 1 -101110101 Recordare 1 -101110101 Malvinas/Falklands 1 -101110101 condiitions 1 -101110101 cat-quick 1 -101110101 Alouettes 1 -101110101 Spitfires 1 -101110101 once-sneered-at 1 -101110101 accordion-folding 1 -101110101 promenades 1 -101110101 Shrew 1 -101110101 Condense 1 -101110101 Quads 1 -101110101 brass-knuckles 1 -101110101 Gagudju 1 -101110101 bare-knuckled 1 -101110101 Socalists 1 -101110101 Bagsvaerd 1 -101110101 Altstadt 1 -101110101 Ringstrasse 1 -101110101 Sjem 1 -101110101 push-buttons 1 -101110101 SA-14 1 -101110101 Exxon-Tenneco 1 -101110101 foot-soldiers 1 -101110101 Dairyman 1 -101110101 Shepody 1 -101110101 flipside 1 -101110101 500E 1 -101110101 280E 1 -101110101 Fiordiligi 1 -101110101 Suffragette 1 -101110101 Backstabber 1 -101110101 Hothead 1 -101110101 oinks 1 -101110101 hero-on-horseback 1 -101110101 C&J 1 -101110101 Herrin 1 -101110101 Chesses 1 -101110101 snitty 1 -101110101 HP-32S 1 -101110101 3,000-square-foot 1 -101110101 semiretirement 1 -101110101 Asuza 1 -101110101 cokies 1 -101110101 surrealists 1 -101110101 lense 1 -101110101 semi-nerd 1 -101110101 Iceberg 1 -101110101 dzhazes 1 -101110101 offer. 1 -101110101 eightball 1 -101110101 650-store 1 -101110101 ionizer 1 -101110101 Greensboro/Winston-Salem 1 -101110101 RER 1 -101110101 bombardier/navigator 1 -101110101 congresspeople 1 -101110101 beatee 1 -101110101 Long-tongued 1 -101110101 risk-aversives 1 -101110101 Rootstown 1 -101110101 FX/80 1 -101110101 FX/40 1 -101110101 leadsman 1 -101110101 Jamesons 1 -101110101 sing-songy 1 -101110101 bulrushes 1 -101110101 bare-bosomed 1 -101110101 Mattawan 1 -101110101 Redeyes 1 -101110101 palazzi 1 -101110101 Yungas 1 -101110101 Aloe 1 -101110101 obligators 1 -101110101 Manilovs 1 -101110101 Seattle/Tacoma 1 -101110101 black-clad 1 -101110101 childbearing. 1 -101110101 marriage. 1 -101110101 Do-Wops 1 -101110101 John-Johns 1 -101110101 pentimento 1 -101110101 disenrollments 1 -101110101 May-December 1 -101110101 Washingon 1 -101110101 SDYC 1 -101110101 R2000 1 -101110101 FOG-M 1 -101110101 half-milelong 1 -101110101 jingoist 1 -101110101 2200-400 1 -101110101 finite-resources 1 -101110101 gonads 1 -101110101 ball-game 1 -101110101 Aqualung 1 -101110101 physic 1 -101110101 QE-II 1 -101110101 long-headed 1 -101110101 microeconomy 1 -101110101 Waver 1 -101110101 Crimper 1 -101110101 Troggs 1 -101110101 tamest 1 -101110101 Millbrae 1 -101110101 here-and-now 1 -101110101 bandbox 1 -101110101 loiterers 1 -101110101 streaky 1 -101110101 greasies 1 -101110101 Labradors 1 -101110101 half-Spanish 1 -101110101 Sudetenland 1 -101110101 Gammas 1 -101110101 ministation 1 -101110101 YB-49 1 -101110101 DC10 1 -101110101 Borateem 1 -101110101 moralist/reformer 1 -101110101 Schauspielhaus 1 -101110101 128-passenger 1 -101110101 once-scandalous 1 -101110101 Sandbox 1 -101110101 swadeshi 1 -101110101 cheesecakes 1 -101110101 novelist-turned-screenwriter 1 -101110101 Barsuki 1 -101110101 surveillence 1 -101110101 chalky-gray 1 -101110101 defendant. 1 -101110101 Tuplimania 1 -101110101 TV-scape 1 -101110101 CEO-designate 1 -101110101 townies 1 -101110101 1.8-liter 1 -101110101 county-judge 1 -101110101 Tudeh 1 -101110101 no-waste 1 -101110101 Wauseca 1 -101110101 scholar-scientist 1 -101110101 APIs 1 -101110101 plain-labeled 1 -101110101 316-unit 1 -101110101 CA770 1 -101110101 Warts 1 -101110101 tulip-marts 1 -101110101 Leontief 1 -101110101 pro-sealed-records 1 -101110101 Sacramento-Stockton 1 -101110101 EMCF 1 -101110101 longhairs 1 -101110101 54-seat 1 -101110101 fur-covered 1 -101110101 dentist-landlord 1 -101110101 amir 1 -101110101 MRC139 1 -101110101 comittee 1 -101110101 mass-based 1 -101110101 possbility 1 -101110101 market-industrial 1 -101110101 Majlis 1 -101110101 auditioners 1 -101110101 hippocampas 1 -101110101 Tuba 1 -101110101 7-foot 1 -101110101 33-mile 1 -101110101 pseudo-objective 1 -101110101 Disklavier 1 -101110101 Stalins 1 -101110101 raw-boned 1 -101110101 man-in-the-European-street 1 -101110101 AFL/CIO 1 -101110101 Har-Tru 1 -101110101 Novel-O-Matic 1 -101110101 gravesites 1 -101110101 Thornburghs 1 -101110101 Hadassah 1 -101110101 Aiken-Augusta 1 -101110101 pickedover 1 -101110101 Hamadis 1 -101110101 ridge-tops 1 -101110101 uncertanties 1 -101110101 Melanosponges 1 -101110101 archness 1 -101110101 momentum. 1 -101110101 bedok 1 -101110101 Dorniers 1 -101110101 ECA 1 -101110101 motor-vehicles 1 -101110101 Louds 1 -101110101 Adens 1 -101110101 west-north-central 1 -101110101 steady-Eddies 1 -101110101 over-50s 1 -101110101 DPX/2 1 -101110101 trail-setters 1 -101110101 Vocalert 1 -101110101 36-mile 1 -101110101 Keyhole 1 -101110101 Winnsboro 1 -101110101 Eol 1 -101110101 Ketchens 1 -101110101 X-maquis 1 -101110101 anchors. 1 -101110101 seedpods 1 -101110101 Fribble 1 -101110101 Tupelev-144 1 -101110101 needle-nosed 1 -101110101 newssheet 1 -101110101 Wobblies 1 -101110101 SubGenius 1 -101110101 23000-level 1 -101110101 Sahel 1 -101110101 once-lush 1 -101110101 ever-dying 1 -101110101 depostion 1 -101110101 falters. 1 -101110101 Dentist 1 -101110101 glutes 1 -101110101 abs 1 -101110101 dirham 1 -101110101 Narrows 1 -101110101 Unelected 1 -101110101 guiltiest 1 -101110101 BBBs 1 -101110101 Ashkins 1 -101110101 Milkaukee 1 -101110101 uptrends 1 -101110101 ureter 1 -101110101 zotl 1 -101110101 Holleys 1 -101110101 pedicel 1 -101110101 Leontsakos 1 -101110101 Salk-vaccine 1 -101110101 grunginess 1 -101110101 EW115 1 -101110101 quayside 1 -101110101 Imbalance 1 -101110101 factory-bound 1 -101110101 inoffensive-looking 1 -101110101 superslicks 1 -101110101 Happauge 1 -101110101 triple-axel 1 -101110101 Shures 1 -101110101 riffraff 1 -101110101 Mailroom 1 -101110101 mid-120s 1 -101110101 grns 1 -101110101 shtetl 1 -101110101 indvidual 1 -101110101 Leeza 1 -101110101 lollapalooza 1 -101110101 move-in 1 -101110101 semi-sterile 1 -101110101 Tims 1 -101110101 muriqui 1 -101110101 pitchman-restaurateur-coach 1 -101110101 LTR 1 -101110101 Kuran 1 -101110101 minidorms 1 -101110101 Mandan 1 -101110101 rockchuck 1 -101110101 maquis 1 -101110101 bowsprit 1 -101110101 naprosyn 2 -101110101 lowerings 2 -101110101 1343 2 -101110101 mid-1920s 2 -101110101 Jitterbug 2 -101110101 Albatross 2 -101110101 Hedger 2 -101110101 back-stabbing 2 -101110101 dissolutions 2 -101110101 coalfields 2 -101110101 FPC 2 -101110101 325es 2 -101110101 Victrola 2 -101110101 S&Ps 2 -101110101 retirment 2 -101110101 early-1930s 2 -101110101 World-Journal-Tribune 2 -101110101 1782 2 -101110101 seven-woman 2 -101110101 near-rich 2 -101110101 Volante 2 -101110101 960-foot 2 -101110101 bloomers 2 -101110101 Bastard 2 -101110101 Nazarene 2 -101110101 Tetons 2 -101110101 Never-Sweats 2 -101110101 barrelhead 2 -101110101 endotoxins 2 -101110101 Haggins 2 -101110101 mews 2 -101110101 stablization 2 -101110101 Thesaurus 2 -101110101 Pluton 2 -101110101 pecs 2 -101110101 area. 2 -101110101 Sorbonne 2 -101110101 doomsaying 2 -101110101 value-based 2 -101110101 Houston-Galveston 2 -101110101 ASLK 2 -101110101 infiltrameter 2 -101110101 photo-ionizer 2 -101110101 150s 2 -101110101 garters 2 -101110101 2020s 2 -101110101 Shepherds 2 -101110101 Belmonts 2 -101110101 gazoo 2 -101110101 alcohols 2 -101110101 Distaff 2 -101110101 colonials 2 -101110101 IDB2000 2 -101110101 bakery-products 2 -101110101 Dynabook 2 -101110101 nonce 2 -101110101 BOHTmn 2 -101110101 cockles 2 -101110101 Boersenzeitung 2 -101110101 sharpies 2 -101110101 Zombie 2 -101110101 Stantons 2 -101110101 Hejaz 2 -101110101 Hunted 2 -101110101 phalaenopsis 2 -101110101 paperclips 2 -101110101 mediation-bashing 2 -101110101 KHAD 2 -101110101 Brandenburgs 2 -101110101 1770s 2 -101110101 Berkenbiles 2 -101110101 philistines 2 -101110101 Sideshow 2 -101110101 1980s. 2 -101110101 Apocrypha 2 -101110101 tape. 2 -101110101 blues. 2 -101110101 Phils 2 -101110101 wheelhouse 2 -101110101 oil-recycling 2 -101110101 SS25 2 -101110101 Yoge 2 -101110101 defibrillation 2 -101110101 forefinger 2 -101110101 Ritz-Carleton 2 -101110101 unmotivated 2 -101110101 Lippincotts 2 -101110101 Mophead 2 -101110101 Ottomans 2 -101110101 up-side 2 -101110101 Hokum 2 -101110101 late-1950s 3 -101110101 Galatians 3 -101110101 Ionia 3 -101110101 Apes 3 -101110101 Blanzy 3 -101110101 telly 3 -101110101 Billeses 3 -101110101 fallas 3 -101110101 d-mark 3 -101110101 muleta 3 -101110101 bathwater 3 -101110101 riyal 3 -101110101 Westclox 3 -101110101 oxygenator 3 -101110101 Sun-3/50 3 -101110101 Schiessbefehl 3 -101110101 Joshan 3 -101110101 CompuTones 3 -101110101 epidermis 3 -101110101 Cyclades 3 -101110101 Yeltsins 3 -101110101 Complainer 3 -101110101 Moets 3 -101110101 Barbalho 3 -101110101 yurts 3 -101110101 1989s 3 -101110101 5890-300 3 -101110101 Sailor 3 -101110101 footlights 3 -101110101 Hajj 3 -101110101 ZR1 4 -101110101 Chamberlains 4 -101110101 turnstile 4 -101110101 1910s 4 -101110101 Snowman 4 -101110101 urethra 4 -101110101 Bahnhofstrasse 4 -101110101 al-Banna 4 -101110101 rudest 4 -101110101 Bulge 4 -101110101 GRU 5 -101110101 Baltics 5 -101110101 Canaries 5 -101110101 Connallys 5 -101110101 seventies 5 -101110101 Bund 5 -101110101 1820s 5 -101110101 eighties 5 -101110101 reveille 5 -101110101 Crusades 6 -101110101 offence 6 -101110101 1830s 6 -101110101 1780s 6 -101110101 twenties 6 -101110101 Funks 6 -101110101 1600s 6 -101110101 comer 6 -101110101 Twenties 7 -101110101 fainthearted 7 -101110101 late-1960s 7 -101110101 mid-1940s 7 -101110101 Zionists 7 -101110101 IBMs 7 -101110101 Berkshires 7 -101110101 Temptations 8 -101110101 Caymans 8 -101110101 1840s 8 -101110101 thirties 8 -101110101 Pyramids 9 -101110101 1850s 9 -101110101 1860s 11 -101110101 Indaba 12 -101110101 1870s 12 -101110101 mid-1930s 13 -101110101 cervix 13 -101110101 beholder 15 -101110101 Hamptons 15 -101110101 1700s 15 -101110101 hilt 19 -101110101 1900s 20 -101110101 1890s 23 -101110101 1880s 24 -101110101 '90s 26 -101110101 1800s 33 -101110101 wayside 34 -101110101 '20s 35 -101110101 mid-1950s 36 -101110101 exchequer 48 -101110101 '40s 57 -101110101 '30s 83 -101110101 mid-1960s 84 -101110101 retirements 115 -101110101 mid-1990s 142 -101110101 '50s 156 -101110101 1940s 179 -101110101 mid-1980s 182 -101110101 '80s 224 -101110101 1920s 233 -101110101 '70s 244 -101110101 '60s 293 -101110101 mid-1970s 300 -101110101 Depression 331 -101110101 1930s 389 -101110101 meantime 605 -101110101 1950s 609 -101110101 1990s 734 -101110101 1960s 1068 -101110101 1980s 1760 -101110101 1970s 2155 -101110101 crash 6728 -101110110 nighters 1 -101110110 quarter-sales 1 -101110110 rock-producer-for-hire 1 -101110110 goround 1 -101110110 names. 1 -101110110 zig 1 -101110110 government-has 1 -101110110 beknighted 1 -101110110 pre-Halloween 1 -101110110 A-bomb 1 -101110110 Typhoon-class 1 -101110110 largest-airline 1 -101110110 most-read 1 -101110110 quarto 1 -101110110 non-Organization 1 -101110110 rejectees 1 -101110110 read-through 1 -101110110 megapool 1 -101110110 portrayer 1 -101110110 anti-model 1 -101110110 distinction. 1 -101110110 placings 1 -101110110 birth. 1 -101110110 computer-price 1 -101110110 neo-realist 1 -101110110 place-tied 1 -101110110 longest-flown 1 -101110110 calif 1 -101110110 operalet 1 -101110110 operina 1 -101110110 10-days 1 -101110110 X-video 1 -101110110 classoom 1 -101110110 utterings 1 -101110110 Christophers 1 -101110110 arrondissement 2 -101110110 folio 2 -101110110 OLs 2 -101110110 prong 2 -101110110 polyrhythms 2 -101110110 3200-speed 2 -101110110 viewings 3 -101110110 quarter. 6 -101110110 go-round 8 -101110110 grader 11 -101110110 trimester 13 -101110110 graders 22 -101110110 baseman 41 -101110110 quarter 25428 -101110110 inning 71 -1011101110 wave-length 1 -1011101110 splendour 1 -1011101110 God-forsaken 1 -1011101110 Egam 1 -1011101110 Catchers 1 -1011101110 technetium-99m 1 -1011101110 demises 1 -1011101110 pseudoethnology 1 -1011101110 long-trusted 1 -1011101110 buspirone 1 -1011101110 non-brother 1 -1011101110 caliphs 1 -1011101110 4,935,625 1 -1011101110 intellectualizing 1 -1011101110 thing-elated 1 -1011101110 loonies 1 -1011101110 cityis 1 -1011101110 querulousness 1 -1011101110 fatigue-producing 1 -1011101110 script-reader 1 -1011101110 Indianola 1 -1011101110 who-said-what-to-whom 1 -1011101110 PeaceNet 1 -1011101110 gamelike 1 -1011101110 reasonable-basis 1 -1011101110 quer 1 -1011101110 tion 1 -1011101110 mega-centers 1 -1011101110 Nordfinanz-Bank 1 -1011101110 moulding 1 -1011101110 Fluminense 1 -1011101110 mesa-musing 1 -1011101110 TDF2 1 -1011101110 Binational 1 -1011101110 Rhodopians 1 -1011101110 Flip-Flop 1 -1011101110 York-Eastern 1 -1011101110 Carsi 1 -1011101110 over-saturation 1 -1011101110 dis-saving 1 -1011101110 folk-rock 1 -1011101110 Mun-Yuen 1 -1011101110 pre-leasing 1 -1011101110 Talmudic 1 -1011101110 funniness 1 -1011101110 Culpa 1 -1011101110 lunettes 1 -1011101110 Vietsovpetro 1 -1011101110 Egyptology 1 -1011101110 upthen 1 -1011101110 Sonatrading 1 -1011101110 imprecisions 1 -1011101110 answer-supervision 1 -1011101110 Credicard 1 -1011101110 timespan 1 -1011101110 glasnostologists 1 -1011101110 Matinee 1 -1011101110 dimunitive 1 -1011101110 doubletalk 1 -1011101110 Kaikan 1 -1011101110 ideonomically 1 -1011101110 pterodactyls 1 -1011101110 arch-villain 1 -1011101110 chi 1 -1011101110 bounders 1 -1011101110 Eliya 1 -1011101110 debaucher 1 -1011101110 starwars 1 -1011101110 280SEL 1 -1011101110 Ez 1 -1011101110 police-room 1 -1011101110 package-labeling 1 -1011101110 John-of-here 1 -1011101110 low-dosage 1 -1011101110 half-exports 1 -1011101110 Simplesse-spiked 1 -1011101110 marbling 1 -1011101110 flounce 1 -1011101110 Babener 1 -1011101110 yellowy 1 -1011101110 bileaflet 1 -1011101110 Scrub 1 -1011101110 subhead 1 -1011101110 croaker 1 -1011101110 triple-jump 1 -1011101110 Colliery 1 -1011101110 Menahga 1 -1011101110 antiprogestin 1 -1011101110 Islamist 1 -1011101110 malediction 1 -1011101110 ball-park 1 -1011101110 unaddicted 1 -1011101110 Final-Four 1 -1011101110 arachnids 1 -1011101110 jeremiad 1 -1011101110 Numsa 1 -1011101110 gloppy 1 -1011101110 orchestrial 1 -1011101110 Handycam 1 -1011101110 3,417,661 1 -1011101110 port-of-call 1 -1011101110 tretinoin-retin-A 1 -1011101110 organisation 1 -1011101110 faculty-appointment 1 -1011101110 completo 1 -1011101110 RISComputer 1 -1011101110 lutefisk 2 -1011101110 sari 2 -1011101110 environ 2 -1011101110 fluting 2 -1011101110 know-nothings 2 -1011101110 hand-modeling 2 -1011101110 demonetization 2 -1011101110 meeeting 2 -1011101110 permissions 2 -1011101110 panhandler 2 -1011101110 Provisionals 2 -1011101110 Controledienst 2 -1011101110 party-building 2 -1011101110 paddlefish 2 -1011101110 funks 2 -1011101110 hymnal 2 -1011101110 swampland 3 -1011101110 Cheops 3 -1011101110 media-shy 3 -1011101110 price. 4 -1011101110 overbuying 4 -1011101110 nettle 4 -1011101110 13-session 5 -1011101110 Canadarm 5 -1011101110 vim 5 -1011101110 wistfulness 6 -1011101110 downtime 8 -1011101110 bandwidth 8 -1011101110 hoof 10 -1011101110 Lockerbie 11 -1011101110 beep 14 -1011101110 time 33719 -1011101110 time. 16 -10111011110 portfoilo 1 -10111011110 cheek-popper 1 -10111011110 gallonjust 1 -10111011110 agegroup 1 -10111011110 vulgarism 1 -10111011110 radiations 1 -10111011110 middlesex 1 -10111011110 Klingon 1 -10111011110 Pakistani. 1 -10111011110 trench-warfare 1 -10111011110 low-lifes 1 -10111011110 deal-stock 1 -10111011110 conglomerate-to-be 1 -10111011110 Friars 1 -10111011110 Shrove 1 -10111011110 spic 1 -10111011110 face-down 1 -10111011110 shrinker 1 -10111011110 Crabtown 1 -10111011110 trust-buster 1 -10111011110 patient/subject 1 -10111011110 antipasto 1 -10111011110 pigpath 1 -10111011110 urination 1 -10111011110 day-even 1 -10111011110 105,746 1 -10111011110 Britisher 2 -10111011110 half-cup 2 -10111011110 pylon 2 -10111011110 brushoff 2 -10111011110 levee 2 -10111011110 Vitalis/U.S. 2 -10111011110 mega-event 2 -10111011110 chit 2 -10111011110 Chamulan 2 -10111011110 washhouse 2 -10111011110 rootedness 2 -10111011110 monofill 2 -10111011110 hour. 2 -10111011110 settee 2 -10111011110 92-acre 2 -10111011110 Pashtun 2 -10111011110 balun 2 -10111011110 newsperson 2 -10111011110 storyboard 3 -10111011110 snowman 3 -10111011110 foghorn 3 -10111011110 hack-box 3 -10111011110 kiloton 3 -10111011110 backboard 3 -10111011110 ivories 3 -10111011110 gigawatt 3 -10111011110 printshop 3 -10111011110 prizefighter 3 -10111011110 near-standstill 3 -10111011110 chalice 3 -10111011110 Wayfarer 3 -10111011110 john 3 -10111011110 spareness 3 -10111011110 riptide 3 -10111011110 cowlick 3 -10111011110 Coronas 3 -10111011110 danish 3 -10111011110 dickens 4 -10111011110 righty 4 -10111011110 doorstop 4 -10111011110 near-certainty 4 -10111011110 breadbox 4 -10111011110 schoolchild 4 -10111011110 scowl 4 -10111011110 cobra 4 -10111011110 wordsmith 4 -10111011110 guardrail 4 -10111011110 manicurist 4 -10111011110 consolidator 5 -10111011110 downtick 5 -10111011110 flashpoint 5 -10111011110 crevice 5 -10111011110 vial 6 -10111011110 layup 6 -10111011110 u.s 6 -10111011110 weeknight 6 -10111011110 odaiko 6 -10111011110 drunkard 6 -10111011110 homestretch 7 -10111011110 shekel 7 -10111011110 once-over 7 -10111011110 lightbulb 7 -10111011110 day. 7 -10111011110 carload 7 -10111011110 put-on 7 -10111011110 haystack 7 -10111011110 mammogram 8 -10111011110 freebie 9 -10111011110 serpent 10 -10111011110 hectare 12 -10111011110 quarter-mile 13 -10111011110 nook 13 -10111011110 rapist 13 -10111011110 syllable 14 -10111011110 hump 16 -10111011110 treadmill 17 -10111011110 typhoon 21 -10111011110 whit 21 -10111011110 comma 22 -10111011110 lectern 22 -10111011110 gig 22 -10111011110 pfennig 26 -10111011110 gauntlet 28 -10111011110 fetus 37 -10111011110 millennium 39 -10111011110 breather 50 -10111011110 semester 52 -10111011110 precaution 57 -10111011110 cliff 83 -10111011110 paragraph 93 -10111011110 dime 102 -10111011110 penny 307 -10111011110 minute 697 -10111011110 day 16011 -10111011110 moment 1747 -10111011111 nonbusinessman 1 -10111011111 SELLOUT 1 -10111011111 sub-patterns 1 -10111011111 Undersold 1 -10111011111 anti-modernism 1 -10111011111 birddog 1 -10111011111 half-true 1 -10111011111 unruliness 1 -10111011111 half-leased 1 -10111011111 billion-Australian-dollar 1 -10111011111 unchaste 1 -10111011111 bough 1 -10111011111 book-it 1 -10111011111 pricecontrolled 1 -10111011111 ex-Jehovah 1 -10111011111 Alienate 1 -10111011111 12,856 1 -10111011111 ultra-furious 1 -10111011111 CHARISMA 1 -10111011111 grocery-shops 1 -10111011111 alia 1 -10111011111 Dagblad 1 -10111011111 shiekdom 1 -10111011111 baldies 1 -10111011111 absentions 1 -10111011111 album-followed 1 -10111011111 chartsy/graphsy 1 -10111011111 Vanished 1 -10111011111 pre-cooking 1 -10111011111 nonbelligerence 1 -10111011111 over-achiever 1 -10111011111 half-facetiously 1 -10111011111 shortseller 1 -10111011111 president-by-appointment 1 -10111011111 escarpments 1 -10111011111 Ieyasu 1 -10111011111 sterbe 1 -10111011111 non-clones 1 -10111011111 self-oriented 1 -10111011111 late-capitalist 1 -10111011111 justs 1 -10111011111 ox-cart 1 -10111011111 GRAAACK 1 -10111011111 UnAmerican 1 -10111011111 usufructuary 1 -10111011111 grumbler 1 -10111011111 Thiefs 1 -10111011111 Odabella 1 -10111011111 hellholes 1 -10111011111 unpresidential 1 -10111011111 Zeniths 1 -10111011111 Innovate 1 -10111011111 Fechit 1 -10111011111 wittier 1 -10111011111 sub-carbuncular 1 -10111011111 Niagara-sized 1 -10111011111 fakish 1 -10111011111 Expansionary 1 -10111011111 monomaniacally 1 -10111011111 half-jestingly 1 -10111011111 murderess 1 -10111011111 super-economy 1 -10111011111 Rockwell-AIM-65 1 -10111011111 polemicizing 1 -10111011111 10-foot-diameter 1 -10111011111 teepee 1 -10111011111 import-processing 1 -10111011111 corporeal. 1 -10111011111 dum-offerings-still 1 -10111011111 spectabiles 1 -10111011111 Aix 1 -10111011111 legal-like 1 -10111011111 Abby-san 1 -10111011111 Dries 1 -10111011111 Anomaly 1 -10111011111 grieves 1 -10111011111 possibility. 1 -10111011111 isolationist-minded 1 -10111011111 SCAMPER 1 -10111011111 billion-markka 1 -10111011111 Untouchable 1 -10111011111 half-aware 1 -10111011111 well-affected 1 -10111011111 Execrable 1 -10111011111 diploid 1 -10111011111 artmafioso 1 -10111011111 Tobruk 1 -10111011111 brains. 1 -10111011111 Letts 1 -10111011111 regionalisms 1 -10111011111 72,853 1 -10111011111 Perdicaris 1 -10111011111 Akdar 1 -10111011111 320,000-barrel 1 -10111011111 91-108 1 -10111011111 mutineer 1 -10111011111 Mnd 1 -10111011111 enunciates 1 -10111011111 republicans 1 -10111011111 half-shift 1 -10111011111 inveterateness 1 -10111011111 747-200B 1 -10111011111 Mousekewitz 1 -10111011111 shortcutting 1 -10111011111 sealife 1 -10111011111 joli 1 -10111011111 CAMERON 1 -10111011111 addresssed 1 -10111011111 Monkeys 1 -10111011111 yodel 1 -10111011111 readerships 1 -10111011111 newsier 1 -10111011111 LISTENING 1 -10111011111 metro-market 1 -10111011111 non-belligerence 1 -10111011111 can-cans 1 -10111011111 half-implemented 1 -10111011111 Ledenyi 1 -10111011111 ocelots 1 -10111011111 briber-turned-informer 1 -10111011111 Piart 1 -10111011111 tlc 1 -10111011111 hah 1 -10111011111 stockboy 1 -10111011111 2400-level 1 -10111011111 sad/But 1 -10111011111 Nice. 1 -10111011111 piaster 1 -10111011111 norming 1 -10111011111 klick 1 -10111011111 crashers 1 -10111011111 wunderbundle 1 -10111011111 Stoned 1 -10111011111 .250 1 -10111011111 Malagasy 1 -10111011111 impressionistically 1 -10111011111 cloacal 1 -10111011111 shrinky 1 -10111011111 hegemonically 1 -10111011111 sea- 1 -10111011111 Kazahks 1 -10111011111 non-meditators 1 -10111011111 part-day 1 -10111011111 baby-sits 1 -10111011111 shell-holes 1 -10111011111 DC9-14 1 -10111011111 unclogs 1 -10111011111 Lybyan 1 -10111011111 biographees 1 -10111011111 Dukakismobile 1 -10111011111 semi-fast 1 -10111011111 83. 1 -10111011111 indifferently 1 -10111011111 negativeis 1 -10111011111 nontheless 1 -10111011111 corpocrat 1 -10111011111 pool-hopped 1 -10111011111 Hindrance 1 -10111011111 GRASS 1 -10111011111 dummied 1 -10111011111 Datababy 1 -10111011111 if. 1 -10111011111 income-earner 1 -10111011111 extra-musical 1 -10111011111 PUBLICITY 1 -10111011111 Unelectable 1 -10111011111 plagiarizes 1 -10111011111 count-conspiracy 1 -10111011111 Sleazy 1 -10111011111 unplayed 1 -10111011111 spokemen 1 -10111011111 billion-French-franc 1 -10111011111 newes 1 -10111011111 tailcount 1 -10111011111 kinkiness 1 -10111011111 job-switching 1 -10111011111 service-disabled 1 -10111011111 UNIMPRESSED 1 -10111011111 slays 1 -10111011111 soulmate 2 -10111011111 transients 2 -10111011111 Beatie 2 -10111011111 defrosting 2 -10111011111 revellers 2 -10111011111 Muoi 2 -10111011111 qualm 2 -10111011111 McStop 2 -10111011111 137,700 2 -10111011111 Dies 2 -10111011111 berm 2 -10111011111 augury 2 -10111011111 reargument 2 -10111011111 streetlight 2 -10111011111 shebang 2 -10111011111 neurotransmitter 2 -10111011111 scuffler 2 -10111011111 misspoke 2 -10111011111 Chayefsky 2 -10111011111 prober 2 -10111011111 Listened 2 -10111011111 thing. 3 -10111011111 else. 3 -10111011111 Else 3 -10111011111 nanosecond 3 -10111011111 stampedes 3 -10111011111 Worldism 3 -10111011111 kooky 3 -10111011111 offeror 4 -10111011111 supposes 5 -10111011111 micron 5 -10111011111 yawner 5 -10111011111 stoplight 5 -10111011111 donna 7 -10111011111 centimeter 8 -10111011111 millimeter 10 -10111011111 donnas 13 -10111011111 ton 750 -10111011111 mile 1379 -10111011111 else 3017 -10111011111 thing 5081 -101111000 non-paid 1 -101111000 5/8.Among 1 -101111000 idealogue 1 -101111000 crosschecks 1 -101111000 2-and-0-ers 1 -101111000 semitones 1 -101111000 sub-waves 1 -101111000 sit-through 1 -101111000 asphaltic 1 -101111000 Iran-backed 1 -101111000 transcontinentals 1 -101111000 farmboys 1 -101111000 soloing 1 -101111000 Chonnam 1 -101111000 furnances 1 -101111000 critieria 1 -101111000 toques 1 -101111000 we-have-enough-weapons-to-blow-the-world-up-100-times 1 -101111000 Recouping 1 -101111000 Croatians 1 -101111000 all-Americans 1 -101111000 undertaking. 1 -101111000 subprocessors 1 -101111000 B-movies 1 -101111000 Diors 1 -101111000 demurrers 1 -101111000 step-ups 1 -101111000 top-five 1 -101111000 five-stand 1 -101111000 otherwise. 1 -101111000 Cornerstoners 1 -101111000 ascription 1 -101111000 ex-traders 1 -101111000 liquor-VO 1 -101111000 infighters 1 -101111000 schooners 1 -101111000 ex-students 1 -101111000 sentencer 1 -101111000 Vedas 1 -101111000 Eliases 1 -101111000 top-owner 1 -101111000 flying-saucer 1 -101111000 submovements 1 -101111000 granddaughters 1 -101111000 recipents 1 -101111000 DHC-6 1 -101111000 more-physically 1 -101111000 triple-bogeys 1 -101111000 1/2-foot-wide 1 -101111000 trading-day 1 -101111000 artlessness 1 -101111000 Euroconvertibles 1 -101111000 fast-reacting 1 -101111000 post-M.B.A. 1 -101111000 Juliets 1 -101111000 part. 1 -101111000 previously-rejected 1 -101111000 crewmembers 1 -101111000 yesteryears 1 -101111000 embossing 1 -101111000 falsities 1 -101111000 Trafalgars 1 -101111000 centimeters. 1 -101111000 Tyrones 1 -101111000 nonsequiturs 1 -101111000 December-January 1 -101111000 downmarket 2 -101111000 forty-two 2 -101111000 downers 2 -101111000 sous 2 -101111000 men-of-war 2 -101111000 Xs 2 -101111000 half-hours 2 -101111000 sixth-century 2 -101111000 corvettes 3 -101111000 Hironaka 3 -101111000 Grammys 3 -101111000 picocuries 4 -101111000 tunings 5 -101111000 nanoseconds 7 -101111000 millimeters 10 -101111000 sledding 20 -101111000 occasions 359 -101111000 times 7372 -101111000 inches 393 -101111001 supernovae 1 -101111001 exacta 1 -101111001 Avnet/International 1 -101111001 provisions. 1 -101111001 PHOG-tomorrow 1 -101111001 Significance 1 -101111001 531,396 1 -101111001 indigence 1 -101111001 girls. 1 -101111001 Kongsbergs 1 -101111001 will-o'-the-wisp 1 -101111001 batteries. 1 -101111001 tranactions 1 -101111001 milliliters 1 -101111001 flunkers 1 -101111001 overeater 1 -101111001 DC-3s 1 -101111001 libels 1 -101111001 hairpiece. 1 -101111001 monstrels 1 -101111001 hyphen 1 -101111001 mineshaft 1 -101111001 terms. 1 -101111001 ex-customers 1 -101111001 diptych 1 -101111001 Walt-worshippers 1 -101111001 squareness 1 -101111001 Launchers 1 -101111001 circumlocution 1 -101111001 mphs 1 -101111001 hard-to-recognize 1 -101111001 visages 1 -101111001 Kahlil 1 -101111001 1974-84 1 -101111001 Targa 1 -101111001 Catarrh 1 -101111001 283-point 1 -101111001 Imagineers 1 -101111001 counterdemonstrators 1 -101111001 longboard 1 -101111001 5,096,336 1 -101111001 754,636 1 -101111001 1,323,976 1 -101111001 6,409 1 -101111001 270,914 1 -101111001 crackpopulism 1 -101111001 DMB&B/International 1 -101111001 PhyCor 1 -101111001 obscenarios 1 -101111001 1,229,355 1 -101111001 2,207,241 1 -101111001 73,333 1 -101111001 249,328 1 -101111001 3,791 1 -101111001 neanderthals 1 -101111001 Jires 1 -101111001 Godzillas 1 -101111001 P.T.A. 1 -101111001 kopecks 1 -101111001 70,435 1 -101111001 2,139,333 1 -101111001 128,561 1 -101111001 1525.9 1 -101111001 4,129,949 1 -101111001 Heinekens 1 -101111001 Ruthenian 1 -101111001 waffler 1 -101111001 miliwatts 1 -101111001 prostitute-slayers 1 -101111001 galoots 1 -101111001 a-share 1 -101111001 WWL2Ms 1 -101111001 2,269,671 1 -101111001 75,635 1 -101111001 1,255,672 1 -101111001 6,421 1 -101111001 6,636 1 -101111001 9,543 1 -101111001 14,516 1 -101111001 -23.4 1 -101111001 445,432 1 -101111001 167,549 1 -101111001 chesnut 1 -101111001 Tele-Japan 1 -101111001 2,501,486 1 -101111001 777,119 1 -101111001 278,620 1 -101111001 115,601 1 -101111001 denouements 1 -101111001 2,110.0 1 -101111001 832.0 1 -101111001 775.0 1 -101111001 1,862.6 1 -101111001 811,192 1 -101111001 1,183,350 1 -101111001 372,158 1 -101111001 1560.2 1 -101111001 250.0 1 -101111001 697.9 1 -101111001 Brasiliaaircraft 1 -101111001 332.4 1 -101111001 1939.6 1 -101111001 397,955 1 -101111001 858,999 1 -101111001 69,760 1 -101111001 1,275,948 1 -101111001 5,651 1 -101111001 Management/Labor 1 -101111001 52,476 1 -101111001 12,650 1 -101111001 29,551 1 -101111001 17,194 1 -101111001 87,270 1 -101111001 163,802 1 -101111001 290,173 1 -101111001 2,580,093 1 -101111001 74,212 1 -101111001 955.0 1 -101111001 5,966.0 1 -101111001 12,001.6 1 -101111001 5,930 1 -101111001 10,010 1 -101111001 506.0 1 -101111001 11,196 1 -101111001 91,738 1 -101111001 180,289 1 -101111001 8,685 1 -101111001 28,971 1 -101111001 408,754 1 -101111001 horse-player 1 -101111001 99,239 1 -101111001 shovel-nose 1 -101111001 C-5Bs 1 -101111001 fellah 1 -101111001 photogs 1 -101111001 93-90 1 -101111001 1-800-922-2008 1 -101111001 229.0 1 -101111001 5,252,781 1 -101111001 2064.5 1 -101111001 kyat 2 -101111001 3,773 2 -101111001 72.0 2 -101111001 suavity 2 -101111001 Pretoria-backed 2 -101111001 260.0 2 -101111001 Biggsy 2 -101111001 2,990 2 -101111001 44,099 2 -101111001 547.4 2 -101111001 EH-101s 2 -101111001 rapscallions 2 -101111001 muskmelons 2 -101111001 rads 2 -101111001 435.4 3 -101111001 thousandths 3 -101111001 Carrera 3 -101111001 dependencies 3 -101111001 coot 3 -101111001 MHz 3 -101111001 frays 3 -101111001 A340s 4 -101111001 things. 4 -101111001 saloons 4 -101111001 rpm 5 -101111001 millionths 5 -101111001 Minutes 96 -101111001 days. 195 -101111001 seconds 435 -101111001 days 15548 -101111001 minutes 1945 -101111010 B-747s 1 -101111010 Equals 1 -101111010 fresh-scrubbed 1 -101111010 clearers 1 -101111010 skydivers 1 -101111010 SS24s 1 -101111010 Mao-ettes 1 -101111010 Hassles 1 -101111010 Ripkens 1 -101111010 Quartets 1 -101111010 drakes 1 -101111010 responders 1 -101111010 Sages 1 -101111010 Eurekas 1 -101111010 Hoovers 1 -101111010 Kenmores 1 -101111010 ball-shaped 1 -101111010 recluses 1 -101111010 Rive 1 -101111010 Productions/WCPX-TV 1 -101111010 F14s 1 -101111010 747-200s 1 -101111010 Claws 1 -101111010 Leonardos 1 -101111010 Dengs 1 -101111010 Hiroshimas 1 -101111010 half-minute-spots 1 -101111010 yesterdays 1 -101111010 briefers 1 -101111010 autumns 1 -101111010 Boroians 1 -101111010 pfennings 1 -101111010 GSers 1 -101111010 Eights 1 -101111010 sectors. 1 -101111010 Mhz 1 -101111010 Septembers 1 -101111010 cleanouts 1 -101111010 Liverpudlians 1 -101111010 LANES 1 -101111010 ex-linebackers 1 -101111010 PATs 1 -101111010 aircrewmen 1 -101111010 beautifuls 1 -101111010 SBs 1 -101111010 Thanksgivings 1 -101111010 Harmsel 1 -101111010 Frelinghuysens 1 -101111010 remained. 1 -101111010 Inning 1 -101111010 30-to-34-year-olds 1 -101111010 A321s 1 -101111010 Isms 1 -101111010 X-principles 1 -101111010 year-bonds 1 -101111010 Slain 1 -101111010 couples. 1 -101111010 runnersup 1 -101111010 shrimps 2 -101111010 in-patients 2 -101111010 Satins 2 -101111010 ex-wives 2 -101111010 Novembers 2 -101111010 150-megawatt 2 -101111010 crownes 3 -101111010 runnings 3 -101111010 Rs 3 -101111010 percents 3 -101111010 nines 4 -101111010 m.p.h. 4 -101111010 milliseconds 4 -101111010 gigaflops 6 -101111010 R's 7 -101111010 Stooges 7 -101111010 microns 9 -101111010 Iwo 10 -101111010 millennia 10 -101111010 A-330s 10 -101111010 quarts 11 -101111010 abstentions 15 -101111010 years 49868 -101111010 years. 26 -1011110110 Axe-men 1 -1011110110 de-stimulation 1 -1011110110 462,613 1 -1011110110 505,688 1 -1011110110 914,646 1 -1011110110 Carsons 1 -1011110110 loins 1 -1011110110 work-for-hire 1 -1011110110 sepals 1 -1011110110 ownerbanks 1 -1011110110 member-governments 1 -1011110110 decades. 1 -1011110110 summitted 1 -1011110110 bandoliers 1 -1011110110 powderpuff-fuls 1 -1011110110 confrontatons 1 -1011110110 selling-day 1 -1011110110 storys 1 -1011110110 minutes. 1 -1011110110 gigabytes 1 -1011110110 airlocks 1 -1011110110 ROV 1 -1011110110 billion-barrel 1 -1011110110 eyes. 1 -1011110110 triple-spins 1 -1011110110 organizations. 1 -1011110110 sugarbushes 1 -1011110110 decedents 1 -1011110110 toppings. 1 -1011110110 nominations. 1 -1011110110 playings 1 -1011110110 Muhlenbergs 1 -1011110110 -32.6 1 -1011110110 coowners 1 -1011110110 one-thousandths 1 -1011110110 non-season 1 -1011110110 utilites 1 -1011110110 liabilty 1 -1011110110 chukkas 1 -1011110110 million-gallon 1 -1011110110 comedy/variety 1 -1011110110 B.U. 2 -1011110110 71-23 2 -1011110110 Sterbas 2 -1011110110 wallabies 2 -1011110110 furlongs 2 -1011110110 nonbrokers 2 -1011110110 P-38s 2 -1011110110 magnums 2 -1011110110 Pankki 4 -1011110110 months. 5 -1011110110 one-hundredths 5 -1011110110 months 24300 -1011110110 megahertz 6 -1011110111 susidiaries 1 -1011110111 tiems 1 -1011110111 big-blossomed 1 -1011110111 catalpas 1 -1011110111 strenghthening 1 -1011110111 initatives 1 -1011110111 Irishmen 1 -1011110111 hydropools 1 -1011110111 Kyongsangs 1 -1011110111 near-tumbles 1 -1011110111 twosomes 1 -1011110111 novel-adaptations 1 -1011110111 suprises 1 -1011110111 unlikelihoods 1 -1011110111 100ths 1 -1011110111 co-signers 1 -1011110111 yearsmainly 1 -1011110111 30-foot-long 1 -1011110111 fourth- 1 -1011110111 pink-eyed 1 -1011110111 picoseconds 1 -1011110111 cirles 1 -1011110111 Arab-Israelis 1 -1011110111 240,000-pound 1 -1011110111 impotents 1 -1011110111 trans-axles 1 -1011110111 afternoons. 1 -1011110111 16-to-21-year-olds 1 -1011110111 Auroras 1 -1011110111 senior-college 1 -1011110111 yen. 1 -1011110111 Chernobyls 1 -1011110111 ELISAs 1 -1011110111 .45s 1 -1011110111 ex-editors 1 -1011110111 sphinxes 1 -1011110111 near-bankruptcies 1 -1011110111 Borlettis 1 -1011110111 Detroits 1 -1011110111 mini-resurgence 1 -1011110111 FUDGING 1 -1011110111 A-pluses 1 -1011110111 sinologists 1 -1011110111 adjournments 1 -1011110111 terminal-sale 1 -1011110111 ET-spending 1 -1011110111 you-know-whats 1 -1011110111 life-terms 1 -1011110111 proofreaders 1 -1011110111 3,157 1 -1011110111 annums 1 -1011110111 2,593 1 -1011110111 Macduffs 1 -1011110111 Jags 1 -1011110111 edged-sword 1 -1011110111 corgis 1 -1011110111 saxes-that 1 -1011110111 houttuynias 1 -1011110111 specfics 1 -1011110111 saltines 1 -1011110111 howlers 1 -1011110111 fathoms 1 -1011110111 bioinsecticides 1 -1011110111 Tylenols 1 -1011110111 over-achievement 1 -1011110111 whiskey-and-waters 1 -1011110111 2,967 1 -1011110111 self-indulgences 1 -1011110111 threesomes 1 -1011110111 Tenochtitlan 1 -1011110111 Chinas 1 -1011110111 candidates. 1 -1011110111 philadelphus 1 -1011110111 All-Americans 1 -1011110111 taxsellers 1 -1011110111 quick-fixes 1 -1011110111 hikers 1 -1011110111 centsthe 1 -1011110111 3,244 1 -1011110111 1,336 1 -1011110111 Druidettes 1 -1011110111 Yemens 1 -1011110111 647,202 1 -1011110111 220,010 1 -1011110111 Octobers 1 -1011110111 1,170,373 1 -1011110111 18-to-49 1 -1011110111 monofills 1 -1011110111 NDA 1 -1011110111 Hungaroton 1 -1011110111 yearinvestigation 1 -1011110111 87s 1 -1011110111 half-bottles 2 -1011110111 VLCCs 2 -1011110111 schematics 2 -1011110111 states. 2 -1011110111 iterations 2 -1011110111 Hall-of-Famer 2 -1011110111 scorpions 2 -1011110111 safeties 2 -1011110111 detonations 2 -1011110111 spacebridges 2 -1011110111 onstream 2 -1011110111 Utrillos 2 -1011110111 Horas 2 -1011110111 Impalas 2 -1011110111 descents 2 -1011110111 Jule 2 -1011110111 comedowns 2 -1011110111 Estudios 2 -1011110111 bandshell 2 -1011110111 Georgias 2 -1011110111 post-modernists 2 -1011110111 siesta 2 -1011110111 sequestrants 3 -1011110111 Biennials 3 -1011110111 freelancers 3 -1011110111 ingenues 3 -1011110111 tenths 3 -1011110111 eighths 3 -1011110111 Olympiads 3 -1011110111 ducats 4 -1011110111 frontons 4 -1011110111 Emmys 4 -1011110111 sexenios 4 -1011110111 airings 4 -1011110111 MD-87s 4 -1011110111 knockouts 4 -1011110111 Christmases 4 -1011110111 standpoints 4 -1011110111 ridings 4 -1011110111 Winns 5 -1011110111 mistrials 5 -1011110111 octaves 5 -1011110111 servings 6 -1011110111 semesters 7 -1011110111 trombones 7 -1011110111 encores 8 -1011110111 millenniums 8 -1011110111 syllables 9 -1011110111 homers 10 -1011110111 earshot 10 -1011110111 printings 10 -1011110111 Dwarfs 10 -1011110111 thirds 12 -1011110111 eons 15 -1011110111 Commandments 15 -1011110111 notches 18 -1011110111 touchdowns 20 -1011110111 stitches 21 -1011110111 Koreas 23 -1011110111 Germanys 37 -1011110111 continents 44 -1011110111 YEARS 46 -1011110111 paragraphs 51 -1011110111 innings 58 -1011110111 felonies 65 -1011110111 summers 74 -1011110111 installments 133 -1011110111 seasons 216 -1011110111 centuries 306 -1011110111 nights 336 -1011110111 generations 360 -1011110111 sessions 1104 -1011110111 quarters 1468 -1011110111 decades 1580 -1011110111 hours 4340 -1011110111 weeks 10004 -10111110 Osowski 1 -10111110 Epitome 1 -10111110 Tomsons 1 -10111110 Cirvilis 1 -10111110 VanderLind 1 -10111110 Hutchens 1 -10111110 Plechaty 1 -10111110 Meteors 1 -10111110 Forrow 1 -10111110 Filep 1 -10111110 Cowsar 1 -10111110 Vitrum 1 -10111110 Nooo 1 -10111110 Arba 1 -10111110 Peirson 1 -10111110 unservicable 1 -10111110 10163 1 -10111110 Fleischacker 1 -10111110 Ramke 1 -10111110 Torreblanca 1 -10111110 Abdulghani 1 -10111110 638,697 1 -10111110 639,340 1 -10111110 133,691 1 -10111110 133,671 1 -10111110 713,594 1 -10111110 -2,146,358 1 -10111110 312,815 1 -10111110 304,531 1 -10111110 4,409 1 -10111110 1,029,323 1 -10111110 66045 1 -10111110 20004 1 -10111110 kinnear 1 -10111110 susman 1 -10111110 GEOFFREY 1 -10111110 Ulama 1 -10111110 Ralson 1 -10111110 Schanzer 1 -10111110 Sekimoto 1 -10111110 94109 1 -10111110 Barpal 1 -10111110 20003 1 -10111110 Yahagi 1 -10111110 29695-0001 1 -10111110 21157 1 -10111110 14550 1 -10111110 Gannouchi 1 -10111110 14450 1 -10111110 Kowey 1 -10111110 Pedigo 1 -10111110 Donat 1 -10111110 Revolting 1 -10111110 Saltwater 1 -10111110 bactericidal 1 -10111110 Rossano 1 -10111110 Goldsberry 1 -10111110 Giacobbi 1 -10111110 Sprowl 1 -10111110 Pugliesi 1 -10111110 pitch-and-putt 1 -10111110 Whisenand 1 -10111110 Davidovich 1 -10111110 Raiz 1 -10111110 Lawalata 1 -10111110 Zhongyun 1 -10111110 Alberdingk 1 -10111110 Timms 1 -10111110 Dzhemilyov 1 -10111110 Jayawardena 1 -10111110 TONNAGE 1 -10111110 Hitzemann 1 -10111110 fleysh 1 -10111110 Hickingbotham 1 -10111110 junior-high-schoolers 1 -10111110 40202 1 -10111110 Petok 1 -10111110 Fenoglio 1 -10111110 Wendelgass 1 -10111110 Sents 1 -10111110 Brownjohn 1 -10111110 Hurburgh 1 -10111110 Associati 1 -10111110 Tinervin 1 -10111110 Planeti 1 -10111110 Morfey 1 -10111110 Produkte 1 -10111110 al-Hamar 1 -10111110 Ciulei 1 -10111110 Romundset 1 -10111110 Binninger 1 -10111110 Laminadas 1 -10111110 Uetani 1 -10111110 Giesbert 1 -10111110 weisswurst 1 -10111110 Teats 1 -10111110 10037 1 -10111110 94710 1 -10111110 Navab-Motlagh 1 -10111110 Palapinger 1 -10111110 Giarraputo 1 -10111110 Stys 1 -10111110 61354 1 -10111110 Vokzal 1 -10111110 Kappler 1 -10111110 Randaccio 1 -10111110 Hardis 1 -10111110 moloko 1 -10111110 Loppnow 1 -10111110 Lawlar 1 -10111110 Surnikov 1 -10111110 Cech 1 -10111110 McHam 1 -10111110 tunnelling 1 -10111110 Kawar 1 -10111110 Nijhoff 1 -10111110 Millhiser 1 -10111110 Kahlenberg 1 -10111110 Hoteles 1 -10111110 Bartholdson 1 -10111110 Pelivan 1 -10111110 Llamas 1 -10111110 Lagarde 1 -10111110 Dudine 1 -10111110 underwriter-gentlemen 1 -10111110 Anstalt 1 -10111110 Press/Morrow 1 -10111110 Acetate 1 -10111110 Saxenian 1 -10111110 Augsburg-Nurnberg 1 -10111110 20006 1 -10111110 Yisrael 1 -10111110 phuc 1 -10111110 Verzahntechnik 1 -10111110 Bandial 1 -10111110 Dammerman 1 -10111110 Borghesani 1 -10111110 92024 1 -10111110 Hafey 1 -10111110 Rinehard 1 -10111110 ragdoll 1 -10111110 LYTLE 1 -10111110 Mid-4 1 -10111110 WARTH 1 -10111110 Bunkering 1 -10111110 Katche 1 -10111110 Edds 1 -10111110 Weagraff 1 -10111110 Hammons 1 -10111110 Kazlow 1 -10111110 1/4-by-4-inch 1 -10111110 Gacho 1 -10111110 07023 1 -10111110 Asefi 1 -10111110 Lambka 1 -10111110 70801 1 -10111110 Hubb 1 -10111110 Naewboonnien 1 -10111110 Chhoy 1 -10111110 Ulrichshofer 1 -10111110 Gorecki 1 -10111110 Mangels 1 -10111110 Jacqmin 1 -10111110 Eisenhardt 1 -10111110 Halsor 1 -10111110 Giurgola 1 -10111110 Viger 1 -10111110 Afif 1 -10111110 deSouza 1 -10111110 WHAMPOA 1 -10111110 DeSimone 1 -10111110 Blacque 1 -10111110 Urist 1 -10111110 Axelson 1 -10111110 Ferroviaire 1 -10111110 Weersing 1 -10111110 Cahalan 1 -10111110 POULENC 1 -10111110 Belton-Willis 1 -10111110 Sandefur 1 -10111110 Goodridge 1 -10111110 Ciemny 1 -10111110 Friends/relatives 1 -10111110 55440 1 -10111110 Mowry 1 -10111110 Toleme 1 -10111110 INVOLVED 1 -10111110 IMarks 1 -10111110 Gaudenzi 1 -10111110 Estafen 1 -10111110 Tambaran 1 -10111110 Vasco-Leonesa 1 -10111110 98816 1 -10111110 01703 1 -10111110 98356 1 -10111110 p.m.-various 1 -10111110 Lindfors 1 -10111110 Disher 1 -10111110 Foundation. 1 -10111110 Manger 1 -10111110 Zhenhua 1 -10111110 Lavers 1 -10111110 20005 1 -10111110 writhing. 1 -10111110 coupon-clipper 1 -10111110 tosh 1 -10111110 06759 1 -10111110 07043 1 -10111110 87010 1 -10111110 65018 1 -10111110 Cart 1 -10111110 MACARTHUR 1 -10111110 Konychev 1 -10111110 02116 1 -10111110 Toller 1 -10111110 Insatiable 1 -10111110 Museum/Abrams 1 -10111110 Rushnell 1 -10111110 Milanov 1 -10111110 92658 1 -10111110 Vorkuta 1 -10111110 Naturgas 1 -10111110 Schanken 1 -10111110 DeMeayer 1 -10111110 COMPO 1 -10111110 elephantina 1 -10111110 Corradi 1 -10111110 Iperbole 1 -10111110 Technika 1 -10111110 Financas 1 -10111110 LaPlace 1 -10111110 Niimi 1 -10111110 Ferretti 1 -10111110 ubjctsyoted 1 -10111110 tteo 1 -10111110 Gunzenhauser 1 -10111110 Piol 1 -10111110 Newark-on-Trent 1 -10111110 DiGuilio 1 -10111110 10001 1 -10111110 Haug 1 -10111110 Lentzsch 1 -10111110 circumnavigation 1 -10111110 Pajon 1 -10111110 Yermolov 1 -10111110 LOONG 1 -10111110 Rensch 1 -10111110 Schwein 1 -10111110 self-indictment 1 -10111110 1970-1989 1 -10111110 Nork 1 -10111110 McMullin 1 -10111110 Grueser 1 -10111110 Grumhaus 1 -10111110 Marlett 1 -10111110 Risques 1 -10111110 Emshwiller 1 -10111110 Dresselhaus 1 -10111110 ompany 1 -10111110 Bunten 1 -10111110 Akaret 1 -10111110 Trabitz 1 -10111110 Masud 1 -10111110 20224 1 -10111110 Bozorgmanesh 1 -10111110 3/4-inch-tall 1 -10111110 Verein 1 -10111110 Lorbach 1 -10111110 Kargula 1 -10111110 McGlamery 1 -10111110 salary-wise 1 -10111110 1/2-inch-square 1 -10111110 POTTS 1 -10111110 Zaleski 1 -10111110 Macchetto 1 -10111110 Colberg 1 -10111110 papyrifera 1 -10111110 nitida 1 -10111110 sm 1 -10111110 Katerndahl 1 -10111110 Jonassaint 1 -10111110 Amani 1 -10111110 Ortino 1 -10111110 Cimoszewicz 1 -10111110 Boulderdash 1 -10111110 Gandolfi 1 -10111110 59401-1426 1 -10111110 El-Mahdi 1 -10111110 Spicola 1 -10111110 Schap 1 -10111110 Enlow 1 -10111110 Olvey 1 -10111110 Helin 1 -10111110 Moua 1 -10111110 Shashy 1 -10111110 Rocher 1 -10111110 95473 1 -10111110 Obelisk 1 -10111110 McBurney 1 -10111110 Hmmmmmm 1 -10111110 35,839 1 -10111110 polemically 1 -10111110 Suzar 1 -10111110 02134 1 -10111110 20024 1 -10111110 Staudohar 1 -10111110 Ruffer 1 -10111110 Solway 1 -10111110 Faggin 1 -10111110 17102 1 -10111110 Caulder 1 -10111110 Malasky 1 -10111110 Bidlack 1 -10111110 Pagen 1 -10111110 espanol 1 -10111110 taalta 1 -10111110 Naznacheniye 1 -10111110 Hickling 1 -10111110 Spirer 1 -10111110 Sherap 1 -10111110 Nadonley 1 -10111110 Strohmeier 1 -10111110 Balbach 1 -10111110 Schlaack 1 -10111110 Bollar 1 -10111110 Koerwer 1 -10111110 Colmant 1 -10111110 Drobis 1 -10111110 Woolford 1 -10111110 Aguais 1 -10111110 Cartooning 1 -10111110 Siswohardjono 1 -10111110 Heiser 1 -10111110 a.m.and 1 -10111110 tablog 1 -10111110 46172 1 -10111110 Furrer 1 -10111110 Strack 1 -10111110 Stampelfabrik 1 -10111110 Diekman 1 -10111110 Zirinsky 1 -10111110 Oooo 1 -10111110 05038 1 -10111110 Mannin 1 -10111110 Shellaque 1 -10111110 Ypiranga 1 -10111110 deer-killing 1 -10111110 Hirsig 1 -10111110 Goodrum 1 -10111110 Vig 1 -10111110 Trolinder 1 -10111110 Dehler 1 -10111110 Fett 1 -10111110 panky 1 -10111110 07960 1 -10111110 OPEL 1 -10111110 Ostermueller 1 -10111110 ALBUKERK 1 -10111110 Kilic 1 -10111110 Mazotti 1 -10111110 Ander 1 -10111110 Mazilo 1 -10111110 Sweere 1 -10111110 07078 1 -10111110 Roxe 1 -10111110 Baroffio 1 -10111110 28640 1 -10111110 YUCK 1 -10111110 Gotanda 1 -10111110 285,717 1 -10111110 Mroz 1 -10111110 Lyssarides 1 -10111110 5,404,713 1 -10111110 Vimukhit 1 -10111110 Grosse-Oetringhaus 1 -10111110 Svenden 1 -10111110 10012 1 -10111110 phenotyping 1 -10111110 Al-Rowas 1 -10111110 328.4 1 -10111110 Unilver 1 -10111110 McClintick 1 -10111110 Blatherwick 1 -10111110 Haselton 1 -10111110 Silone 1 -10111110 Abzug 1 -10111110 Hambelton 1 -10111110 Serwatka 1 -10111110 54494 1 -10111110 Debbink 1 -10111110 Buist 1 -10111110 Kountz 1 -10111110 Grigoriev 1 -10111110 nothwithstanding 1 -10111110 Haab 1 -10111110 Janulis 1 -10111110 Vijayaraghavan 1 -10111110 Blansett 1 -10111110 Gafford 1 -10111110 Tretter 1 -10111110 Etchelecu 1 -10111110 Mergenthaler 1 -10111110 Croisant 1 -10111110 Chats 1 -10111110 Transmoskva 1 -10111110 Whittenmore 1 -10111110 Thorneycroft 1 -10111110 Norrod 1 -10111110 Kephart 1 -10111110 Biele 1 -10111110 Chessum 1 -10111110 Schellhardt 2 -10111110 Transmissions 2 -10111110 Berthoud 2 -10111110 AU 2 -10111110 PPS 2 -10111110 GTO 2 -10111110 Rajavi 2 -10111110 Mesirov 2 -10111110 Suro 2 -10111110 JOVANOVICH 2 -10111110 Riserva 2 -10111110 Espanoles 2 -10111110 Hurwich 2 -10111110 Eee-von 2 -10111110 Hides 2 -10111110 CFR 2 -10111110 06902 2 -10111110 Revealed 2 -10111110 Riiiing 2 -10111110 LEO 2 -10111110 Dellis 2 -10111110 Grazing 2 -10111110 2,052 2 -10111110 Verbindungstechnik 2 -10111110 De-Nol 2 -10111110 Wanding 2 -10111110 Scientifiques 2 -10111110 Bagatelle 2 -10111110 WFBQ 2 -10111110 Wilks 2 -10111110 Cioci 2 -10111110 Confirms 2 -10111110 55,585 2 -10111110 395,690 2 -10111110 Michela 2 -10111110 Cunin 2 -10111110 Makkiyah 2 -10111110 DAI 2 -10111110 Beath 2 -10111110 Quadros 2 -10111110 07102 2 -10111110 WINE 2 -10111110 Spearing 2 -10111110 Naturelles 2 -10111110 Jaskol 2 -10111110 532.5 2 -10111110 ANYTHING 2 -10111110 Sainte-Victoire 2 -10111110 ICE 2 -10111110 Ikea 2 -10111110 AUDIOVOX 2 -10111110 Vilchez 2 -10111110 Ceremonies 2 -10111110 DISCOUNTED 2 -10111110 jestingly 2 -10111110 Heusi 2 -10111110 Bakke 2 -10111110 HERB 2 -10111110 Comey 2 -10111110 Picchu 2 -10111110 Trackers 2 -10111110 Widenor 2 -10111110 Nothhaft 2 -10111110 eng 2 -10111110 Cotugno 2 -10111110 Dishwasher 2 -10111110 zoologist 3 -10111110 Dangereuses 3 -10111110 HAKO 3 -10111110 Reward 3 -10111110 Biafora 3 -10111110 20036 3 -10111110 Telecommuting 3 -10111110 MoneyCenter 3 -10111110 Americanism 3 -10111110 Sweep 3 -10111110 titlists 3 -10111110 CONTROVERSY 3 -10111110 TIRES 3 -10111110 Knauer 3 -10111110 10022 3 -10111110 tock 4 -10111110 82190 4 -10111110 DEFECTOR 4 -10111110 Soghanalian 4 -10111110 MCEG 4 -10111110 Falliero 5 -10111110 Fed-bashing 5 -10111110 Chg 5 -10111110 Glavkosmos 6 -10111110 Pelerin 6 -10111110 Tracers 6 -10111110 Karolyi 7 -10111110 ---- 8 -10111110 BOS 9 -10111110 Silence 9 -10111110 TODAY 10 -10111110 Sets 12 -10111110 c-Yields 12 -10111110 OVER 14 -10111110 excepted 16 -10111110 onward 24 -10111110 Anonymous 35 -10111110 y 43 -10111110 -RRB- 49359 -10111110 B.C. 67 -101111110 Tibetans. 1 -101111110 smackers 1 -101111110 fuel-savers 1 -101111110 228,900 1 -101111110 +3641 1 -101111110 106,578 1 -101111110 CREDITBANK 1 -101111110 MicroFax 1 -101111110 Atilario 1 -101111110 footage. 1 -101111110 LT 1 -101111110 Alfas 1 -101111110 Sprints 1 -101111110 card-members 1 -101111110 francs. 1 -101111110 oulets 1 -101111110 T3100s 1 -101111110 AWARD 1 -101111110 amperes 1 -101111110 Xhosas 1 -101111110 larcenies 1 -101111110 merchantagents 1 -101111110 colones 1 -101111110 Carpathian 1 -101111110 19,087 1 -101111110 4,404 1 -101111110 cost-held 1 -101111110 Tipos 1 -101111110 amps 1 -101111110 fixer-upper 1 -101111110 Polos 1 -101111110 condo-dwellers 1 -101111110 75207 1 -101111110 1987- 1 -101111110 84,076 1 -101111110 PaintJet 1 -101111110 Miatas 1 -101111110 -22.2 1 -101111110 classroom-trailer 1 -101111110 worker-years 1 -101111110 20,826 1 -101111110 1,300,516 1 -101111110 24,405 1 -101111110 toursists 1 -101111110 115,882 1 -101111110 20,573 1 -101111110 91,259 1 -101111110 62,076 1 -101111110 dlrs 1 -101111110 6,523 1 -101111110 141,943 1 -101111110 2,809 1 -101111110 personrads 1 -101111110 -15.1 1 -101111110 -17.5 1 -101111110 -10.4 1 -101111110 grapplers 1 -101111110 feet. 1 -101111110 Mozambiquans 1 -101111110 FEET 2 -101111110 gangway 2 -101111110 bcf 2 -101111110 yen-a-share 2 -101111110 Legacys 2 -101111110 times. 2 -101111110 megatons 2 -101111110 nondailies 2 -101111110 leitmotives 2 -101111110 HX 3 -101111110 r.p.m. 4 -101111110 kiloliters 4 -101111110 sucres 4 -101111110 megabits 5 -101111110 volts 6 -101111110 light-years 6 -101111110 Angstroms 7 -101111110 man-years 8 -101111110 kwanza 9 -101111110 cordobas 10 -101111110 pints 10 -101111110 carats 11 -101111110 pixels 11 -101111110 kilos 15 -101111110 bytes 15 -101111110 kilowatt-hours 18 -101111110 centimeters 20 -101111110 hectares 22 -101111110 liters 24 -101111110 watts 26 -101111110 kilograms 31 -101111110 megabytes 37 -101111110 kilometers 49 -101111110 grams 53 -101111110 kilowatts 81 -101111110 milligrams 85 -101111110 megawatts 90 -101111110 pairs 123 -101111110 meters 214 -101111110 bales 227 -101111110 denominations 286 -101111110 gallons 307 -101111110 yards 335 -101111110 ounces 1038 -101111110 acres 1099 -101111110 pounds 1588 -101111110 barrels 2354 -101111110 feet 2481 -101111110 tons 4623 -101111110 miles 4127 -1011111110 Xometla 1 -1011111110 parasitism 1 -1011111110 500-plus 1 -1011111110 Bolingbroke 1 -1011111110 Magawish 1 -1011111110 1.76-to-1.78 1 -1011111110 Bight 1 -1011111110 ninths 1 -1011111110 technology-dependent 1 -1011111110 psychologies 1 -1011111110 WIOQ-FM 1 -1011111110 product-announcements 1 -1011111110 non-Toons 1 -1011111110 TRO 1 -1011111110 emalangeni 1 -1011111110 LPT 1 -1011111110 jaish 1 -1011111110 sheepherders 1 -1011111110 Apalachicola 1 -1011111110 Sanani 1 -1011111110 KIQQ-FM 1 -1011111110 particularities 1 -1011111110 tomographic 1 -1011111110 inititaive 1 -1011111110 underreacting 1 -1011111110 Azania 1 -1011111110 Studebakers 1 -1011111110 This-Can't-Be-Yogurt 1 -1011111110 1567 1 -1011111110 0.6777 1 -1011111110 Drogheda 1 -1011111110 Janae 1 -1011111110 Sayao 1 -1011111110 wood-and-sinew 1 -1011111110 one-test 1 -1011111110 catchphrases 1 -1011111110 leprosaria 1 -1011111110 power-unit 1 -1011111110 89.87 1 -1011111110 Shule 1 -1011111110 palmology 1 -1011111110 F-minor 1 -1011111110 guideways 1 -1011111110 Skutt 1 -1011111110 principalor 1 -1011111110 1.8733 1 -1011111110 B-25s 1 -1011111110 balsams 1 -1011111110 non-Puritans 1 -1011111110 co-hosted 1 -1011111110 mer-creatures 1 -1011111110 cannabinoids 1 -1011111110 hexachlorodibenzo-p-dioxin 1 -1011111110 exemplars 1 -1011111110 Bertill 1 -1011111110 plays-in-progress 1 -1011111110 widder-lady 1 -1011111110 personals 1 -1011111110 Boulevards 1 -1011111110 SANE/Freeze 1 -1011111110 single-A-1/Prime-1 1 -1011111110 Musavi-Ardabili 1 -1011111110 speedskaters 1 -1011111110 gastronomes 1 -1011111110 Glassworks 1 -1011111110 tvorog 1 -1011111110 smokebomb 1 -1011111110 Tigrinya 1 -1011111110 kibitzing 1 -1011111110 Dollars. 1 -1011111110 zakusky 1 -1011111110 Whitianga 1 -1011111110 churls 1 -1011111110 Pinedale 1 -1011111110 Ho-khau 1 -1011111110 Cambodiachea 1 -1011111110 Belem 1 -1011111110 computer-aided-software-engineering 1 -1011111110 C.R.A.S.H. 1 -1011111110 pre-strategic 1 -1011111110 farmboy 1 -1011111110 kpokodeilos 1 -1011111110 chargeoff 1 -1011111110 voodooism 1 -1011111110 Stopera 1 -1011111110 platforming 1 -1011111110 Polysteel 1 -1011111110 osteosarcoma 1 -1011111110 VHC-C 1 -1011111110 bestioles 1 -1011111110 helocopters 1 -1011111110 ZOG 1 -1011111110 buckpassing 1 -1011111110 Kunrad 1 -1011111110 AFDC-U 1 -1011111110 communitarians 1 -1011111110 314,850 1 -1011111110 performnginth 1 -1011111110 corruption-tainted 1 -1011111110 parkinsonism 1 -1011111110 oil-a-day 1 -1011111110 gigolo 1 -1011111110 ummah 1 -1011111110 blackmarketing 1 -1011111110 Whistlers 1 -1011111110 skylighting 2 -1011111110 lowing 2 -1011111110 soviets 2 -1011111110 condensate-a-day 2 -1011111110 Coffeyville 2 -1011111110 grapeshot 2 -1011111110 Parliment 2 -1011111110 Delights 2 -1011111110 discrimination. 2 -1011111110 Dodges 2 -1011111110 Missouri-Rolla 2 -1011111110 Mazeppa 2 -1011111110 Leimen 2 -1011111110 economic- 2 -1011111110 communalism 2 -1011111110 subsidaries 2 -1011111110 Trichosanthin 2 -1011111110 Ramazani 2 -1011111110 Eurydice 2 -1011111110 1529.52 3 -1011111110 hydrologists 3 -1011111110 F/A-18s 3 -1011111110 Rapunzel 3 -1011111110 piasters 3 -1011111110 Gonaives 3 -1011111110 monographs 3 -1011111110 blockheads 3 -1011111110 ITQs 3 -1011111110 Geos 3 -1011111110 cost-overruns 3 -1011111110 dollars. 4 -1011111110 peroration 4 -1011111110 Radio-television 4 -1011111110 Lisburn 4 -1011111110 BTUs 4 -1011111110 APMA 4 -1011111110 manhours 5 -1011111110 Copper-7s 5 -1011111110 three-pointers 5 -1011111110 POPs 6 -1011111110 cornmeal 7 -1011111110 Yugos 9 -1011111110 Radio-Television 10 -1011111110 KGMC 11 -1011111110 Mandate 15 -1011111110 Mounted 16 -1011111110 zlotys 45 -1011111110 ECUs 51 -1011111110 pennies 63 -1011111110 pesos 120 -1011111110 rubles 147 -1011111110 annually 2269 -1011111110 dollars 10132 -10111111110 Werks 1 -10111111110 auctioneer-expert 1 -10111111110 Francs 1 -10111111110 billion-Swedish-kronor 1 -10111111110 Austradollars 1 -10111111110 Landesmuseum 1 -10111111110 Thenardier 1 -10111111110 counsul 1 -10111111110 officiously 1 -10111111110 princeling 1 -10111111110 12:00-23:00 1 -10111111110 bund 1 -10111111110 92.589 1 -10111111110 92.599 1 -10111111110 WART 1 -10111111110 crystallographer 1 -10111111110 Tyson- 1 -10111111110 leaf-drop 1 -10111111110 million-Canadian-dollar 1 -10111111110 1973-1977 1 -10111111110 pentatonic 1 -10111111110 E-boat 1 -10111111110 Tympanuchus 1 -10111111110 carmaker 1 -10111111110 Prissy 1 -10111111110 humanaphobia 1 -10111111110 Nasionale 1 -10111111110 luau 1 -10111111110 SIGHTS 1 -10111111110 Billygate 1 -10111111110 9034.8 1 -10111111110 sculptress 1 -10111111110 Reichsmarks 1 -10111111110 cognate 1 -10111111110 Bankas 1 -10111111110 sericea 1 -10111111110 chole 1 -10111111110 billion-ringgit 1 -10111111110 Thursay 1 -10111111110 Thatcher- 1 -10111111110 distributers 1 -10111111110 CRTF 1 -10111111110 billion-ruble 1 -10111111110 motel-owners 1 -10111111110 bobbies 1 -10111111110 dachshounds 1 -10111111110 kwacha 1 -10111111110 Bennett/Baxter 1 -10111111110 Sportbund 1 -10111111110 Maidens 1 -10111111110 Presserat 1 -10111111110 Furness 1 -10111111110 Reichspost 1 -10111111110 Bldg 1 -10111111110 tetrachords 1 -10111111110 99.631 1 -10111111110 96.274 1 -10111111110 96.289 1 -10111111110 96.284 1 -10111111110 96.107 1 -10111111110 96.102 1 -10111111110 96.127 1 -10111111110 Concordes 1 -10111111110 64.29 1 -10111111110 orbited 1 -10111111110 ghetto-blasters 1 -10111111110 bio-statistician 1 -10111111110 SISISKY 1 -10111111110 96.031 1 -10111111110 96.026 1 -10111111110 96.042 1 -10111111110 47.62 1 -10111111110 CPQ 1 -10111111110 metacais 1 -10111111110 MENTS 1 -10111111110 million-ruble 1 -10111111110 99.579 2 -10111111110 Lombarde 2 -10111111110 billion-Malaysian-dollar 2 -10111111110 Rosanjin 2 -10111111110 colons 2 -10111111110 Swedish-kronor 2 -10111111110 bandolero 2 -10111111110 Ploshchad 2 -10111111110 co-bidders 2 -10111111110 at-bats 3 -10111111110 passenger-miles 3 -10111111110 Birlik 3 -10111111110 Kukhnya 3 -10111111110 escudos 4 -10111111110 billion-guilder 4 -10111111110 rials 4 -10111111110 rupiahs 5 -10111111110 liras 5 -10111111110 markkaa 5 -10111111110 drachmas 6 -10111111110 forints 7 -10111111110 2036 7 -10111111110 mips 7 -10111111110 shillings 7 -10111111110 australs 9 -10111111110 Irish-punt 10 -10111111110 dinars 11 -10111111110 double-spaced 12 -10111111110 bolivars 15 -10111111110 trillion-yen 19 -10111111110 kwh 21 -10111111110 cruzados 23 -10111111110 krona 24 -10111111110 baht 25 -10111111110 schillings 34 -10111111110 markkas 37 -10111111110 ringgit 40 -10111111110 rupees 42 -10111111110 punt 74 -10111111110 yuan 128 -10111111110 pesetas 144 -10111111110 kroner 208 -10111111110 rand 260 -10111111110 apiece 377 -10111111110 guilders 394 -10111111110 RATES 470 -10111111110 kronor 496 -10111111110 bushels 544 -10111111110 lire 802 -10111111110 francs 2545 -10111111110 marks 6776 -10111111110 pence 3157 -10111111111 Merita/Cotton 1 -10111111111 time-fix 1 -10111111111 USLTA 1 -10111111111 diquem 1 -10111111111 I.C.C.H. 1 -10111111111 1,900-lire 1 -10111111111 globefish 1 -10111111111 Fasolt 1 -10111111111 weapons-makers 1 -10111111111 entitites 1 -10111111111 ROL 1 -10111111111 overacted 1 -10111111111 cordons 1 -10111111111 reporter/preachers 1 -10111111111 asset-manager 1 -10111111111 Atlantist 1 -10111111111 Choferes 1 -10111111111 hags 1 -10111111111 Stepmother 1 -10111111111 Alchemedians 1 -10111111111 25,000-to-50,000 1 -10111111111 bushel-plus 1 -10111111111 higher-cap 1 -10111111111 EDT-EST 1 -10111111111 deckle 1 -10111111111 malehood 1 -10111111111 cookie-plant 1 -10111111111 phlebotomists 1 -10111111111 Savoys 1 -10111111111 illiteracies 1 -10111111111 neologisms 1 -10111111111 Epistle 1 -10111111111 3:7-12 1 -10111111111 Podlaski 1 -10111111111 Nutrimato 1 -10111111111 ex-Lafico 1 -10111111111 candy- 1 -10111111111 toll-numbers 1 -10111111111 722.7 1 -10111111111 Louey 1 -10111111111 Javan 1 -10111111111 Momoyama 1 -10111111111 380-franc 1 -10111111111 Martinu 1 -10111111111 406.06 1 -10111111111 economic-equity 1 -10111111111 2/7 1 -10111111111 quays 1 -10111111111 SAPCOs 1 -10111111111 Ricciarelli 1 -10111111111 yen-level 1 -10111111111 PAW 1 -10111111111 Victa 1 -10111111111 gooseberries 1 -10111111111 NLRA 1 -10111111111 Punxsutawney 1 -10111111111 Wapakoneta 1 -10111111111 multiparous 1 -10111111111 338.74 1 -10111111111 Nikolaikirche 1 -10111111111 94.81 1 -10111111111 afer 1 -10111111111 possbily 1 -10111111111 365-pence-a-share 1 -10111111111 HP-19-C 1 -10111111111 underwear. 1 -10111111111 leaking-underground-storage-tank 1 -10111111111 candidiasis 1 -10111111111 Hypotekforening 1 -10111111111 chipsmakers 1 -10111111111 719.2 1 -10111111111 Organisasi 1 -10111111111 shun. 1 -10111111111 homogenization 1 -10111111111 ex-governors 1 -10111111111 FTCA 1 -10111111111 martks 1 -10111111111 Boonie 1 -10111111111 Subaru/Isuzu 1 -10111111111 small-caps 1 -10111111111 title-searching 1 -10111111111 auto-appearance 1 -10111111111 plate/batter 1 -10111111111 Infertility 1 -10111111111 Dincs 1 -10111111111 stiching 1 -10111111111 T.P.O. 1 -10111111111 Renovadores 1 -10111111111 plovers 1 -10111111111 fgrancs 1 -10111111111 dolphinfish 1 -10111111111 TAMBO 1 -10111111111 bodhisattvas 1 -10111111111 megacarrier. 1 -10111111111 Xaytlon 1 -10111111111 6,526 1 -10111111111 Kandinskys 1 -10111111111 fops 1 -10111111111 Reprimand 1 -10111111111 WPI 1 -10111111111 Groggily 1 -10111111111 35-billion-mark 1 -10111111111 m&a 1 -10111111111 countercultures 1 -10111111111 pickleman 1 -10111111111 2,947,398 1 -10111111111 2,874,640 1 -10111111111 6,474 1 -10111111111 INSEAD 1 -10111111111 terrine 1 -10111111111 pool-lengths 1 -10111111111 Aero-Club 1 -10111111111 cruiserweight 1 -10111111111 Austins 1 -10111111111 Hall-Godwins 1 -10111111111 68-kilogram 1 -10111111111 694-pence-a-share 1 -10111111111 biltong 1 -10111111111 koeksisters 1 -10111111111 rusks 1 -10111111111 Nightwatchman 1 -10111111111 bodega 1 -10111111111 cash-swollen 1 -10111111111 SPH 2 -10111111111 Moreland-Portland 2 -10111111111 fortunetellers 2 -10111111111 ownership. 2 -10111111111 Malawians 2 -10111111111 solenoids 2 -10111111111 Vascar 2 -10111111111 ideographs 2 -10111111111 megaflops 2 -10111111111 1987-21 2 -10111111111 downpayments 2 -10111111111 lute 2 -10111111111 crematoria 2 -10111111111 darkrooms 2 -10111111111 AT-bus 2 -10111111111 JST 3 -10111111111 USN 3 -10111111111 rands 3 -10111111111 NLF 3 -10111111111 Dials 3 -10111111111 retinitis 4 -10111111111 markka 4 -10111111111 MST 4 -10111111111 kimonos 5 -10111111111 GMT 6 -10111111111 PST 8 -10111111111 Kommunalbank 8 -10111111111 dirhams 9 -10111111111 yen/dollar 12 -10111111111 rupiah 12 -10111111111 SX 13 -10111111111 SEL 14 -10111111111 Lp 18 -10111111111 PDT 21 -10111111111 dong 28 -10111111111 riyals 40 -10111111111 CDT 42 -10111111111 ET 46 -10111111111 CST 46 -10111111111 EST 917 -10111111111 yen 10508 -10111111111 EDT 1194 -11000 protocol-free 1 -11000 get-rich 1 -11000 aftertime 1 -11000 damnably 1 -11000 thought-through 1 -11000 privately-provided 1 -11000 0.185 1 -11000 polychromatic 1 -11000 254,200 1 -11000 company-sanctioned 1 -11000 4,293,375 1 -11000 8,475,000 1 -11000 escoria 1 -11000 6,525,000 1 -11000 22-degree 1 -11000 42,750 1 -11000 2,510,706 1 -11000 conventional-level 1 -11000 stock-depressing 1 -11000 38,520,000 1 -11000 computer-development 1 -11000 Dubonnet 1 -11000 big-buyer 1 -11000 Kahil 1 -11000 Benadryl 1 -11000 1.2168 1 -11000 that's-my-boy 1 -11000 123,386 1 -11000 fluorescent-tube 1 -11000 backstroking 1 -11000 casino-project 1 -11000 fleeced-knit 1 -11000 nicotine-related 1 -11000 crewless 1 -11000 convertible-debenture 1 -11000 pertinently 1 -11000 Welsh-born 1 -11000 16,292,073 1 -11000 Iraqi-style 1 -11000 4,014,114 1 -11000 quarterback-oriented 1 -11000 local-media 1 -11000 video-terminal 1 -11000 sicking 1 -11000 demoralizingly 1 -11000 morbidly 1 -11000 heather-touched 1 -11000 245.10 1 -11000 ghostlike 1 -11000 783,527 1 -11000 applications-specific 1 -11000 3,772,200 1 -11000 acquitting 1 -11000 Austin-Boston 1 -11000 lowest-rate 1 -11000 one-uppingly 1 -11000 earth-filled 1 -11000 43-hour 1 -11000 2235.24-makes 1 -11000 Treasury-backed 1 -11000 Tamil-controlled 1 -11000 0.000,004 1 -11000 1,187 1 -11000 home-user 1 -11000 2,607 1 -11000 217,186 1 -11000 Domenichino 1 -11000 Memphis-born 1 -11000 black-skinned 1 -11000 Goldwater-Nixon-Reagan-Kemp 1 -11000 aerostatic 1 -11000 fishlinelike 1 -11000 steerable 1 -11000 106,650 1 -11000 button-downed 1 -11000 post-offering 1 -11000 30,963,598 1 -11000 misguidedly 1 -11000 2,887,311 1 -11000 Abscam-style 1 -11000 tourist-season 1 -11000 Camaro-driving 1 -11000 0.5025 1 -11000 0.4975 1 -11000 7.8025 1 -11000 well-treated 1 -11000 Bach/Beethoven/Brahms 1 -11000 exhaustingly 1 -11000 re-engineering 1 -11000 D.C.-Virginia 1 -11000 cnventional 1 -11000 lace-making 1 -11000 20.47-year 1 -11000 3.7-year 1 -11000 Urals-to-the-Atlantic 1 -11000 0.6575 1 -11000 43,900 1 -11000 460,100 1 -11000 instant-action 1 -11000 cartridge-type 1 -11000 147-page 1 -11000 202,500 1 -11000 moderatively 1 -11000 3,656,797 1 -11000 Spanish-speakers 1 -11000 410,625 1 -11000 catheter-type 1 -11000 85,900 1 -11000 guitarlike 1 -11000 unfathomably 1 -11000 20,680 1 -11000 26-minute 1 -11000 0.6944 1 -11000 pre-Wagnerian 1 -11000 radio-transmitter 1 -11000 aircargo 1 -11000 English-Chinese 1 -11000 futures-indexed 1 -11000 exotic-looking 1 -11000 ice-capped 1 -11000 Vehbi 1 -11000 eight-year-long 1 -11000 Boer-bashing 1 -11000 gunbattles 1 -11000 sale-purchase 1 -11000 wear-resistant 1 -11000 wheat-seeded 1 -11000 investor-research 1 -11000 more-economically 1 -11000 airgun 1 -11000 silicone-film 1 -11000 more-integrated 1 -11000 money-dispensing 1 -11000 T700 1 -11000 4,369,000 1 -11000 national-television 1 -11000 retail-rate 1 -11000 inflaton 1 -11000 noncoercive 1 -11000 polylactic 1 -11000 pseudo-medical 1 -11000 user-configurable 1 -11000 cycle-free 1 -11000 market-consolidating 1 -11000 503,500 1 -11000 Second-highest 1 -11000 chip-controlled 1 -11000 chalkdust-laden 1 -11000 bank-employed 1 -11000 sales-linked 1 -11000 megamerged 1 -11000 self-mesmerization 1 -11000 steamer-trunk 1 -11000 AFL-CIO/Teamsters 1 -11000 308,500 1 -11000 consumer-stock 1 -11000 8,142,000 1 -11000 cross-cutting 1 -11000 media-conveyed 1 -11000 computer-trading 1 -11000 265-pound 1 -11000 lowpriced 1 -11000 Dali-esque 1 -11000 post-Warhol 1 -11000 unarguably 1 -11000 intelligence-briefing 1 -11000 too-too-perfect 1 -11000 coq 1 -11000 empire-style 1 -11000 22-year-veteran 1 -11000 Slowpokes 1 -11000 calcium-based 1 -11000 35015.93 1 -11000 642,240 1 -11000 .069 1 -11000 wangling 1 -11000 0.009 1 -11000 331,200 1 -11000 Mexican-manufactured 1 -11000 purse-mouthed 1 -11000 green-field 1 -11000 sucurities 1 -11000 gum-chomping 1 -11000 often-outdated 1 -11000 helpwanted 1 -11000 telecasting 2 -11000 sludgelike 2 -11000 -an 2 -11000 67,775 2 -11000 1-alpha-hydroxyvitamin 2 -11000 trichina 2 -11000 mulitiple 2 -11000 I-know-best 2 -11000 hydrodynamically 2 -11000 nondoctrinaire 2 -11000 30-degree 2 -11000 ex-Reagan 2 -11000 garishly 2 -11000 British-educated 2 -11000 Couvin 2 -11000 stodgier 3 -11000 Ouadi 3 -11000 factory-installed 4 -11000 an 147729 -11000 Workforce 8 -11001 employer-subsidized 1 -11001 0.5911 1 -11001 near-autonomous 1 -11001 stationhouse 1 -11001 1.4656 1 -11001 772,700 1 -11001 hour-shortening 1 -11001 1,315 1 -11001 customer-complaints 1 -11001 party-circuit 1 -11001 LBar-Rossborough 1 -11001 Pecans 1 -11001 multiproduct 1 -11001 3.6488 1 -11001 60-feet 1 -11001 timbral 1 -11001 sweetbread-based 1 -11001 poplar 1 -11001 inter-office 1 -11001 oil-impregnated 1 -11001 five-business 1 -11001 three-year/60,000-mile 1 -11001 3,132 1 -11001 hand-beaded 1 -11001 651,163 1 -11001 gold-spike 1 -11001 556,690 1 -11001 nonreturnable 1 -11001 rusty-haired 1 -11001 over-much 1 -11001 J-10 1 -11001 0.975 1 -11001 0.8232 1 -11001 two-spouted 1 -11001 one-reel 1 -11001 starch-full 1 -11001 dish-cloth 1 -11001 84,496 1 -11001 0.091 1 -11001 management-firm 1 -11001 L-Bar-Rossborough 1 -11001 0.8129 1 -11001 unrefueled 1 -11001 0.02917 1 -11001 heavy-lipped 1 -11001 434,500 1 -11001 grand-scaled 1 -11001 0.364 1 -11001 107-point 1 -11001 1/2-week-long 1 -11001 15,000-worker 1 -11001 sign-and-return 1 -11001 soon-to-be-licensed 1 -11001 guilt-inducing 1 -11001 4,123 1 -11001 six-note 1 -11001 Sun-4/200 1 -11001 382,632 1 -11001 1,209,792 1 -11001 0.2479 1 -11001 gooily 1 -11001 untilled 1 -11001 80-odd 1 -11001 moderate-minded 1 -11001 0.435 1 -11001 benign-appearing 1 -11001 1.5545 1 -11001 1.5640 1 -11001 mininum 1 -11001 935,628 1 -11001 guilt-mongering 1 -11001 chemical-release 1 -11001 broken-in 1 -11001 thermonuclear-policy 1 -11001 co-personal 1 -11001 3,015 1 -11001 13-and 1 -11001 0.765 1 -11001 premium-coupon 1 -11001 22-state 1 -11001 BMW-7 1 -11001 unswapped 1 -11001 2.7692 1 -11001 temper-testing 1 -11001 Owen-Illinois 2 -11001 seven-line 2 -11001 Velika 2 -11001 576,788 2 -11001 EPA-designated 2 -11001 0.667 2 -11001 half-joking 2 -11001 0.851 2 -11001 non-alternative 2 -11001 0.03575 2 -11001 co-extruded 2 -11001 venous 2 -11001 scumbled 3 -11001 actuarily 3 -11001 lily-white 3 -11001 diaphanous 3 -11001 flat-roofed 3 -11001 engendering 3 -11001 0.5263 3 -11001 product-driven 3 -11001 Buttonwood 4 -11001 a 874491 -11001 Outlaw 7 -11010 transistor-like 1 -11010 3.4090 1 -11010 bulk-licensed 1 -11010 Hezie 1 -11010 treasure-laden 1 -11010 thu 1 -11010 1.5685 1 -11010 clam-eating 1 -11010 Narrowed 1 -11010 world-shattering 1 -11010 two-to-seven-year 1 -11010 throught 1 -11010 80.94 1 -11010 unforseeable 1 -11010 Iran-like 1 -11010 82.90 1 -11010 taypayers 1 -11010 43-degree 1 -11010 net-business 1 -11010 more-dire 1 -11010 74.78 1 -11010 high-arching 1 -11010 74.71 1 -11010 football-field 1 -11010 75.46 1 -11010 Easter-less 1 -11010 government-dependent 1 -11010 hyper-accurate 1 -11010 ever-tightening 1 -11010 aluminum-rich 1 -11010 vibrational 1 -11010 1.2890 1 -11010 dollar-holding 1 -11010 2.0015 1 -11010 69.24 1 -11010 73.56 1 -11010 72.51 1 -11010 pre-concrete 1 -11010 77.09 1 -11010 stick-toting 1 -11010 78.85 1 -11010 79.17 1 -11010 toylands 1 -11010 longer-coupon 1 -11010 A&K 1 -11010 morgue-like 1 -11010 stillskittish 1 -11010 GUM 1 -11010 78.45 1 -11010 11th-ranked 1 -11010 made-in-Washington 1 -11010 art-theft 1 -11010 801,700 1 -11010 palm-fat 1 -11010 as-yet-undeclared 1 -11010 80.04 1 -11010 dimantled 1 -11010 tweaks 1 -11010 unparalled 1 -11010 80.83 1 -11010 Defy 1 -11010 76.57 1 -11010 2.9360 1 -11010 low-grossing 1 -11010 82.92 1 -11010 83.09 1 -11010 4,495 1 -11010 annulling 1 -11010 similarsized 1 -11010 out-performing 1 -11010 Lebanon-based 1 -11010 well-sounding 1 -11010 premixed 1 -11010 more-deserving 1 -11010 North-East 1 -11010 shock-resistant 1 -11010 112,800 1 -11010 drought-diminished 1 -11010 Stravinskian 2 -11010 74.11 2 -11010 Palawan 2 -11010 79.46 2 -11010 labor-tight 2 -11010 lower-coupon 2 -11010 longer-than-usual 2 -11010 small-to-medium 2 -11010 notifiying 2 -11010 May-the 2 -11010 labor-oriented 2 -11010 laxer 2 -11010 mutual-assured 2 -11010 mineral-rich 2 -11010 unexpended 2 -11010 U.S.-recognized 2 -11010 248,046 2 -11010 concrete-block 3 -11010 retaking 3 -11010 DBL 4 -11010 pre-Christian 4 -11010 non-traded 4 -11010 Ca' 5 -11010 the 1919420 -11010 BP. 10 -110110 349,900 1 -110110 37,740 1 -110110 smallbusiness 1 -110110 1,686,000 1 -110110 429,269 1 -110110 11,791,790 1 -110110 1,986,926 1 -110110 1,670,072 1 -110110 1,624,191 1 -110110 2,753,068 1 -110110 842,345 1 -110110 503,692 1 -110110 leach-solvent 1 -110110 450,544 1 -110110 sweet-tasting 1 -110110 916,746 1 -110110 4,117,676 1 -110110 2,067,380 1 -110110 211,694 1 -110110 190,118 1 -110110 827,550 1 -110110 560,245 1 -110110 1,457,691 1 -110110 1,089,281 1 -110110 1,951,450 1 -110110 3,175,000 1 -110110 Macoutes-led 1 -110110 875,750 1 -110110 15,476,000 1 -110110 10,359,000 1 -110110 13,055,334 1 -110110 indifference./A 1 -110110 shuttle-style 1 -110110 4,519,478 1 -110110 3,525,000 1 -110110 459,864 1 -110110 5,062,008 1 -110110 financial-system 1 -110110 381,977 1 -110110 1,941,361 1 -110110 reimported 1 -110110 2,129,300 1 -110110 1,094,263 1 -110110 4,448,000 1 -110110 4,820,000 1 -110110 2,323,810 1 -110110 123,600 1 -110110 2,306,474 1 -110110 563,380 1 -110110 union-built 1 -110110 1,428,793 1 -110110 129,850 1 -110110 reemphasizing 1 -110110 508,391 1 -110110 257,600 1 -110110 214,285 1 -110110 911,822 1 -110110 377,753 1 -110110 18,257,350 1 -110110 738,800 1 -110110 521,508 1 -110110 1,089,300 1 -110110 U.S.-brewed 1 -110110 A-3-rated 1 -110110 ex-Pentagon 1 -110110 broadcasting-property 1 -110110 French-designed 1 -110110 1,226,500 1 -110110 2,368,500 1 -110110 4,351,151 1 -110110 198,753 1 -110110 10,192,145 1 -110110 471,700 1 -110110 1,014,957 1 -110110 512,733 1 -110110 461,026 1 -110110 1,308,830 1 -110110 bacteria-infected 1 -110110 payments-deficit 1 -110110 3,210,150 1 -110110 2,239,790 1 -110110 4:14 1 -110110 10,992,880 1 -110110 2,186,498 1 -110110 1,667,796 1 -110110 favored-rate 1 -110110 425,700 1 -110110 time-shared 1 -110110 3,998,153 1 -110110 pencil-sized 1 -110110 307,181 1 -110110 1,419,673 1 -110110 8,257,073 1 -110110 555,448 1 -110110 2,030,000 1 -110110 4,666,667 1 -110110 44,123 1 -110110 369.24-the 1 -110110 253,604 1 -110110 15,299,165 1 -110110 transfusion-related 1 -110110 home-spun 1 -110110 9,839 1 -110110 2,300,000 1 -110110 210,200 1 -110110 1,975,197 1 -110110 residential-phone 1 -110110 31,269,996 1 -110110 3,337,924 1 -110110 companyowned 1 -110110 254,345 1 -110110 600-grit 1 -110110 18.44 1 -110110 5,075,000 1 -110110 carry-in 1 -110110 S-Food 1 -110110 2,857,143 1 -110110 6,720,000 1 -110110 system.The 1 -110110 pretentiously 1 -110110 698,480 1 -110110 17-stick 1 -110110 tax-against 1 -110110 8,450,000 1 -110110 1,494,528 1 -110110 othe 1 -110110 32,788,101 1 -110110 bossa 1 -110110 fictively 1 -110110 127,682 1 -110110 539,578 1 -110110 Namibia-based 1 -110110 21,481 1 -110110 14.485 1 -110110 276,099 1 -110110 technologic 1 -110110 snowboots 1 -110110 treaty-guaranteed 1 -110110 regasified 1 -110110 U.S.-issued 2 -110110 stock-cash 2 -110110 1,666,667 2 -110110 low-profit-margin 2 -110110 poorer-than-expected 2 -110110 37,950,000 2 -110110 965,200 2 -110110 41.77 2 -110110 78,500 2 -110110 442,600 2 -110110 1,484 2 -110110 2,525,000 2 -110110 406,012 2 -110110 610,500 2 -110110 701,754 2 -110110 125,200 2 -110110 paper-company 2 -110110 79,300 2 -110110 559,200 2 -110110 pesticide-contaminated 2 -110110 20.67 2 -110110 13,325,367 2 -110110 embassy-sponsored 2 -110110 1,093,750 2 -110110 5,021,414 2 -110110 10,724,364 2 -110110 3,675,000 2 -110110 animal-loving 2 -110110 Heike 2 -110110 3,025,097 2 -110110 216,500 2 -110110 larger-scale 3 -110110 2,875,000 3 -110110 13,540,000 3 -110110 1,062,500 3 -110110 instruction-set 3 -110110 1,053,800 3 -110110 inboard 3 -110110 1.1606 3 -110110 exportled 4 -110110 multilayer 5 -110110 backed-up 5 -110110 its 173077 -110110 3,350,000 7 -11011100 job-protected 1 -11011100 premium-paying 1 -11011100 Gaevle 1 -11011100 more-ardent 1 -11011100 out-of-sight 1 -11011100 now-distant 1 -11011100 Chicago-school 1 -11011100 securities-regulation 1 -11011100 28-foot-plus 1 -11011100 single-member 1 -11011100 direct-entry 1 -11011100 guild-like 1 -11011100 Hatfield-McCoy 1 -11011100 deifying 1 -11011100 stearates 1 -11011100 all-nurturing 1 -11011100 Cro-Magnon 1 -11011100 12,276 1 -11011100 unexpurgated 1 -11011100 fake-art 1 -11011100 basket-case 1 -11011100 still-tighter 1 -11011100 Christian-magazine 1 -11011100 Montenegrin 1 -11011100 crop-destruction 1 -11011100 white-felt 1 -11011100 biscuit-making 1 -11011100 ginseng-growing 1 -11011100 food-and-housewares 1 -11011100 home-for-the-summer 1 -11011100 flood-plagued 1 -11011100 stultify 1 -11011100 row-crop 1 -11011100 half-loaf 1 -11011100 front-braking 1 -11011100 frequent-user 1 -11011100 LEXIS 1 -11011100 similar-type 1 -11011100 nonpremium 1 -11011100 8,604 1 -11011100 post-automotive 1 -11011100 Disney-licensed 1 -11011100 electronic-gear 1 -11011100 public-investor 1 -11011100 hard-to-quantify 1 -11011100 safety-education 1 -11011100 double-crossing 1 -11011100 nonprofitable 1 -11011100 megatrendy 1 -11011100 219.42-its 1 -11011100 normal-size 1 -11011100 balloon-toting 1 -11011100 business-community 1 -11011100 Shikoku 1 -11011100 pre-auto 1 -11011100 granulocytemacrophage 1 -11011100 Sorensenian 1 -11011100 Riazan 1 -11011100 private-plot 1 -11011100 gold-hungry 1 -11011100 home-bound 1 -11011100 brain-cancer 1 -11011100 often-illogical 1 -11011100 chart-oriented 1 -11011100 well-stained 1 -11011100 fewer-but-bigger 1 -11011100 refinanancing 1 -11011100 above-median-income 1 -11011100 three-chord 1 -11011100 200,000-odd 1 -11011100 American-Jordanian 1 -11011100 near-terminal 1 -11011100 labor-management-community-shareholder 1 -11011100 rice-stuffed 1 -11011100 professional-level 1 -11011100 high-cash 1 -11011100 market-wounded 1 -11011100 380,400 1 -11011100 depreciable-asset 1 -11011100 suporting 1 -11011100 Gephardtian 1 -11011100 bellydancing 1 -11011100 software-induced 1 -11011100 joist-like 1 -11011100 Morgan-related 1 -11011100 medium-to-large 1 -11011100 automotive-industry 1 -11011100 vacation-bound 1 -11011100 irremediable 1 -11011100 sagebrush-covered 1 -11011100 Democratic-appointed 1 -11011100 lesser-heralded 1 -11011100 hard-riding 1 -11011100 limited-tax 1 -11011100 unlimited-tax 1 -11011100 capacity-strained 1 -11011100 tenting 1 -11011100 reformistminded 1 -11011100 major-firm 1 -11011100 miffing 1 -11011100 Canadian-manufactured 1 -11011100 sardined-in 1 -11011100 Gazan 1 -11011100 Pushtun 1 -11011100 stick-wielding 1 -11011100 909,091 1 -11011100 north-flowing 1 -11011100 bulk-materials 1 -11011100 K-8 1 -11011100 world-ranked 1 -11011100 near-manic 1 -11011100 supersmart 1 -11011100 less-compromised 1 -11011100 pepper-coated 1 -11011100 3,078 1 -11011100 convention-related 1 -11011100 multilocation 1 -11011100 hypersexed 1 -11011100 sreform 1 -11011100 Amcor-investor 1 -11011100 pizza-chain 1 -11011100 big-moneyed 1 -11011100 bikinied 1 -11011100 hare-brained 1 -11011100 petrochemical-producing 2 -11011100 unmarried-couple 2 -11011100 measured-service 2 -11011100 trade-negotiating 2 -11011100 non-Chrysler 2 -11011100 non-Mandarin-speaking 2 -11011100 industrial-country 2 -11011100 '80s-style 2 -11011100 post-high-school 2 -11011100 inter-racial 2 -11011100 ex-Distillers 2 -11011100 non-combatant 2 -11011100 mixed-up 2 -11011100 creditor-debtor 2 -11011100 gravity-defying 2 -11011100 well-matched 2 -11011100 low-balance 2 -11011100 negligence-prone 2 -11011100 physical-therapy 2 -11011100 host-country 2 -11011100 heathen 2 -11011100 noncombatant 2 -11011100 pre-1917 2 -11011100 big-stakes 2 -11011100 home-currency 2 -11011100 victim-based 2 -11011100 1,647 3 -11011100 least-favored 3 -11011100 self-induced 3 -11011100 pre-college 3 -11011100 press-release 3 -11011100 2,335 3 -11011100 beget 3 -11011100 AIDS-afflicted 3 -11011100 national-forest 4 -11011100 nonmarital 4 -11011100 large-caliber 4 -11011100 non-custodial 4 -11011100 poorer-quality 4 -11011100 pro-Bush 4 -11011100 Gorbachevian 4 -11011100 storm-sea 5 -11011100 high-caliber 6 -11011100 spousal 10 -11011100 glutaric 11 -11011100 our 18608 -11011100 chart-guided 23 -11011101 production-shift 1 -11011101 domestic-sugar 1 -11011101 single-stock 1 -11011101 commodity-contract 1 -11011101 cushier 1 -11011101 maintenance-safety 1 -11011101 18th-and 1 -11011101 small-country 1 -11011101 factory-constructed 1 -11011101 55-knot 1 -11011101 two-meter 1 -11011101 long-shelved 1 -11011101 Columbus-anniversary 1 -11011101 soybean-based 1 -11011101 welfare-recipient 1 -11011101 sun-bathing 1 -11011101 anti-Washington 1 -11011101 100-mile-an-hour 1 -11011101 social-visit 1 -11011101 adenomatous 1 -11011101 molotov 1 -11011101 outcome-oriented 1 -11011101 sidewalk-sized 1 -11011101 hamburger-look-alike 1 -11011101 double-wide 1 -11011101 chicken-processing 1 -11011101 drug-hungry 1 -11011101 commercial-garment 1 -11011101 gelatin-based 1 -11011101 projection-TV 1 -11011101 sharper-angled 1 -11011101 gas-affected 1 -11011101 X-raylike 1 -11011101 chip-assembly 1 -11011101 Taiwanese-made 1 -11011101 Mormon-oriented 1 -11011101 battery-making 1 -11011101 Algerian-built 1 -11011101 drug-marketing 1 -11011101 merger-defense 1 -11011101 metal-futures 1 -11011101 all-fat 1 -11011101 630,400 1 -11011101 low-rub 1 -11011101 longboats 1 -11011101 small-issue 1 -11011101 aircraft-delivery 1 -11011101 corn-storage 1 -11011101 encaustic 1 -11011101 Anheuser-related 1 -11011101 flower-carpeted 1 -11011101 fat-cell 1 -11011101 tough-to-fill 1 -11011101 Stalinist-era 1 -11011101 U.S.-denominated 1 -11011101 rat-gene 1 -11011101 occassional 1 -11011101 audience-delivery 1 -11011101 goods-production 1 -11011101 holiday-time 1 -11011101 paramedical 1 -11011101 pinstripe-narrow 1 -11011101 freeway-wide 1 -11011101 demandside 1 -11011101 company-built 1 -11011101 1,503 1 -11011101 3,002 1 -11011101 9,463 1 -11011101 into-the-wind 1 -11011101 unconforming 1 -11011101 valveless 1 -11011101 traffic-mitigation 1 -11011101 fire-scene 1 -11011101 1,346 1 -11011101 ever-hardening 1 -11011101 test-preparation 1 -11011101 unrequested 1 -11011101 state-certified 1 -11011101 university-trained 1 -11011101 catalog-consultation 1 -11011101 retributory 1 -11011101 birth-related 1 -11011101 commission-generating 1 -11011101 sometimes-reluctant 1 -11011101 well-creating 1 -11011101 Montecassino 1 -11011101 deputy-cabinet 1 -11011101 SACC-supervised 1 -11011101 wax-and-feather 1 -11011101 rudder-control 1 -11011101 state-industry 1 -11011101 office-ship 1 -11011101 road-gripping 1 -11011101 chocoholic 1 -11011101 dusky 1 -11011101 crapshoot-style 1 -11011101 dirty-dialing 1 -11011101 government-paid-for 1 -11011101 krone-denominated 1 -11011101 college-scholarship 1 -11011101 Medicaid-supported 1 -11011101 2,574 1 -11011101 Astafievian 1 -11011101 typographic 1 -11011101 non-tech 1 -11011101 anti-reformist 1 -11011101 875,077 1 -11011101 unintentional-intentional 1 -11011101 kraft-pulp 1 -11011101 bone-marrow-transplant 1 -11011101 wealth-holders 1 -11011101 three-to-nine-month 1 -11011101 ordersits 1 -11011101 49,170 1 -11011101 3,280,000 1 -11011101 water-heated 1 -11011101 Montagnard 1 -11011101 nonskilled 1 -11011101 lower-skill 1 -11011101 green-tinged 1 -11011101 9,731 1 -11011101 less-advantaged 1 -11011101 uterine-activity 1 -11011101 definitional 1 -11011101 cattle-drawn 1 -11011101 end-year 1 -11011101 12,130 1 -11011101 less-than-antiseptic 1 -11011101 literary-political 1 -11011101 245,854 1 -11011101 airport-noise 1 -11011101 legal-lending 1 -11011101 non-boxer 1 -11011101 7,321 1 -11011101 thinned-out 1 -11011101 exercise-notice 1 -11011101 body-numbing 1 -11011101 17-letter 1 -11011101 3,631 1 -11011101 none-too-discreet 1 -11011101 autopen 1 -11011101 oyster-rich 1 -11011101 non-liquor 1 -11011101 Aegis-related 1 -11011101 sterling-silver 1 -11011101 short-yen 2 -11011101 income-earning 2 -11011101 made-in-the-U.S.A. 2 -11011101 spray-paint 2 -11011101 erosion-prone 2 -11011101 111,300 2 -11011101 after-dark 2 -11011101 1.471 2 -11011101 singlefamily 2 -11011101 more-immediate 2 -11011101 tiger-paw 2 -11011101 55,200 2 -11011101 130,812 2 -11011101 less-direct 2 -11011101 foreigncurrency 2 -11011101 zero-yielding 2 -11011101 soda-fountain 2 -11011101 FERC-ordered 2 -11011101 unclosed 2 -11011101 nonfiling 2 -11011101 unstamped 2 -11011101 911,600 2 -11011101 larger-size 2 -11011101 subfreezing 2 -11011101 patent-infringing 2 -11011101 after-hour 2 -11011101 preschool-aged 2 -11011101 philosphical 2 -11011101 1,806 2 -11011101 already-tight 2 -11011101 repossesed 2 -11011101 108,800 2 -11011101 radiation-contaminated 2 -11011101 votive 2 -11011101 gas-transportation 2 -11011101 higher-skilled 2 -11011101 robust-looking 2 -11011101 unlistenable 2 -11011101 toxic-chemical 3 -11011101 product-placement 3 -11011101 train-crew 3 -11011101 combat-related 3 -11011101 large-firm 3 -11011101 nonoil 3 -11011101 boom-time 3 -11011101 workplace-safety 4 -11011101 sulfurous 4 -11011101 ever-smaller 4 -11011101 rental-rehabilitation 4 -11011101 742,000 4 -11011101 day-glo 5 -11011101 built-up 5 -11011101 crossborder 6 -11011101 capital-construction 7 -11011101 lower-paying 16 -11011101 their 79305 -11011101 sterling-denominated 17 -11011110 1,982 1 -11011110 25-to 1 -11011110 arms-deal 1 -11011110 gee-whiz-wow 1 -11011110 braises 1 -11011110 earlier-the-better 1 -11011110 bout-every-so-often 1 -11011110 nonaudit 1 -11011110 compliance-department 1 -11011110 undiscriminating 1 -11011110 out-migration-the 1 -11011110 price-restraint 1 -11011110 LISC-style 1 -11011110 Nkoane 1 -11011110 re-sift 1 -11011110 death-camp 1 -11011110 government-arranged 1 -11011110 sweet-sour 1 -11011110 simply-striped 1 -11011110 just-qualified 1 -11011110 deviant-type 1 -11011110 cost-oriented 1 -11011110 finetuned 1 -11011110 choleseterol 1 -11011110 wheyfaced 1 -11011110 Disneyesque 1 -11011110 ex-trucking 1 -11011110 sound-level 1 -11011110 bankerat 1 -11011110 often-cantankerous 1 -11011110 3,725 1 -11011110 auto-sector 1 -11011110 inerrantist 1 -11011110 pre-finals 1 -11011110 transfixing 1 -11011110 margin-oriented 1 -11011110 corporate-office 1 -11011110 12,350 1 -11011110 bump-and-grind 1 -11011110 13,979 1 -11011110 global-level 1 -11011110 19-monthlong 1 -11011110 too-slow 1 -11011110 Fatah-Uprising 1 -11011110 pinched-nosed 1 -11011110 state-enforced 2 -11011110 more-rapid 2 -11011110 rational-expectations 2 -11011110 house-hunting 2 -11011110 prayerful 2 -11011110 non-speaking 2 -11011110 corporate-turnaround 2 -11011110 non-Swiss 2 -11011110 more-than-expected 2 -11011110 lower-back 2 -11011110 impressive-looking 2 -11011110 70,200 2 -11011110 hard-plastic 2 -11011110 gruntled 2 -11011110 extrasensory 3 -11011110 2,994 3 -11011110 Krazy 4 -11011110 his 88216 -11011110 job-seeking 6 -110111110 pseudo-pueblo 1 -110111110 fear-driven 1 -110111110 hour-length 1 -110111110 naughty-boy 1 -110111110 unborrowed 1 -110111110 barnlike 1 -110111110 kill-joy 1 -110111110 Chirac-style 1 -110111110 Market-letter 1 -110111110 chin-length 1 -110111110 doll-buying 1 -110111110 graduually 1 -110111110 far-side 1 -110111110 Fun-loving 1 -110111110 straw-colored 1 -110111110 alligator-skin 1 -110111110 body-beautiful 1 -110111110 bat-winged 1 -110111110 Russian-occupied 1 -110111110 Russian-held 1 -110111110 transrectal 1 -110111110 Caligulan 1 -110111110 bequeathing 1 -110111110 polyantha 1 -110111110 OSHA-approved 1 -110111110 maroon-colored 1 -110111110 judicial-nomination 1 -110111110 side-splitting 1 -110111110 Saudi-bashing 1 -110111110 fungus-ridden 1 -110111110 f-o-w-l 1 -110111110 unsynchronized 1 -110111110 unworked-out 1 -110111110 Sandinista-forced 1 -110111110 unionrepresentation 1 -110111110 correcting-random-access 1 -110111110 seat-of-the 1 -110111110 strobe-like 1 -110111110 bended 1 -110111110 trade-sensitive 1 -110111110 loss-side 1 -110111110 profit-side 1 -110111110 red-blond 1 -110111110 autarkic 1 -110111110 Marxist-Leninst 1 -110111110 service-conscious 1 -110111110 shell-pocked 1 -110111110 Scaredy 1 -110111110 puppy-dog 1 -110111110 outer-court 1 -110111110 localelection 1 -110111110 unserviced 1 -110111110 Curity-brand 1 -110111110 anti-depression 1 -110111110 Cafe-1st 1 -110111110 dry-eyed 1 -110111110 military-retirement 1 -110111110 true-high 1 -110111110 psychosexual 1 -110111110 Recipe-brand 1 -110111110 sugar-bush 1 -110111110 anti-gringo 1 -110111110 once-secret 1 -110111110 juristic 1 -110111110 tricolored 1 -110111110 Spanish-Chinese 1 -110111110 bloodying 1 -110111110 race-course 1 -110111110 world-class-money 1 -110111110 disaster-movie 1 -110111110 private-guard 1 -110111110 supply-boat 1 -110111110 ever-stouter 1 -110111110 share-alike 1 -110111110 52,003 1 -110111110 people-are-sick-beneath-their-calm-small-town-veneer 1 -110111110 sultanic 1 -110111110 arrhythmia-producing 1 -110111110 too-little 1 -110111110 legal-trade 1 -110111110 God's-eye 1 -110111110 fraternity-style 1 -110111110 still-warm 1 -110111110 Pupperoni 1 -110111110 compartmentalizing 1 -110111110 anti-diarrhea 1 -110111110 heavy-lidded 1 -110111110 variable-policy 1 -110111110 Australia-born 1 -110111110 still-uncommon 1 -110111110 blondish-red 1 -110111110 British-sponsored 1 -110111110 native-tongue 1 -110111110 inclusionary 1 -110111110 often-neglected 1 -110111110 female-imposed 1 -110111110 clip-out 1 -110111110 Waning 1 -110111110 pre-cholesterol 1 -110111110 Ri 1 -110111110 pay-related 1 -110111110 cry-baby 1 -110111110 shamming 1 -110111110 enamelled 1 -110111110 UOA 1 -110111110 light-admitting 1 -110111110 ice-slick 1 -110111110 turkey-and-giblets 1 -110111110 near-sickening 1 -110111110 protoplast 1 -110111110 salt-encrusted 1 -110111110 mad-scientist 1 -110111110 quart-sized 1 -110111110 U.S.-contra 1 -110111110 cheese-filled 1 -110111110 ad-venture 1 -110111110 plangent 1 -110111110 service-worker 1 -110111110 jewelry-loving 1 -110111110 allocational 1 -110111110 radium-infected 1 -110111110 immigration-inspired 1 -110111110 thrift-related 1 -110111110 Confucianist 1 -110111110 otherwise-invisible 1 -110111110 M-G-M 1 -110111110 electro-shock 1 -110111110 filching 1 -110111110 slasher-type 1 -110111110 silent-movie 1 -110111110 black-hole 1 -110111110 employee-profit-sharing 1 -110111110 pin-prick 1 -110111110 non-small-cell 1 -110111110 212,753 1 -110111110 unMcGuanean 1 -110111110 nonpresidential 1 -110111110 radicalizing 1 -110111110 less-well-manicured 1 -110111110 blame-America-first 1 -110111110 splenetic 1 -110111110 seed-eating 1 -110111110 tuition-paying 1 -110111110 marriageable 1 -110111110 cutaneous 1 -110111110 bedroom-and-boardroom 1 -110111110 asphalt-contractor 1 -110111110 Shopworn 1 -110111110 private-law 1 -110111110 hooligan 1 -110111110 sarcasm-laden 1 -110111110 high-markup 1 -110111110 minimum-deposit 1 -110111110 high-waisted 1 -110111110 evangelic 1 -110111110 bowl-shaped 1 -110111110 Annoying 1 -110111110 nonoriginalist 1 -110111110 short-hemline 1 -110111110 supertight 1 -110111110 venerates 1 -110111110 news-grabbing 1 -110111110 never-play-cards-with-a-guy-named-Doc 1 -110111110 bicycle-rickshaws 1 -110111110 younger-looking 1 -110111110 unamusing 1 -110111110 non-navigable 1 -110111110 in/out 1 -110111110 nonquantifiable 1 -110111110 maroon-tinted 1 -110111110 excitatory 1 -110111110 rendre 1 -110111110 Accutane-linked 1 -110111110 high-art 1 -110111110 chenille 1 -110111110 corn-fed 1 -110111110 fashion-swept 1 -110111110 sinners/Who 1 -110111110 committee-room 1 -110111110 moisture-conserving 1 -110111110 self-deprecatory 1 -110111110 neurogenic 1 -110111110 peach-fuzz 1 -110111110 cardio-pulmonary 1 -110111110 guerrilla-held 1 -110111110 low-road 1 -110111110 0.3048 1 -110111110 upper-body 1 -110111110 morehostile 1 -110111110 Cebuano 1 -110111110 rend 1 -110111110 kneehigh 1 -110111110 medieval-style 1 -110111110 literary-world 1 -110111110 super-powered 1 -110111110 seasick-prone 1 -110111110 even-toed 1 -110111110 cinema-verite 1 -110111110 loan-department 1 -110111110 politically-sensitive 1 -110111110 goldplated 1 -110111110 Thatcherist 1 -110111110 quasi-socialized 1 -110111110 gnomic 1 -110111110 wooly-minded 1 -110111110 red-tinted 1 -110111110 intra-exchange 1 -110111110 investment-sensitive 1 -110111110 fog-shrouded 1 -110111110 hennaed 1 -110111110 tinseltown 1 -110111110 full-body 1 -110111110 broadbrush 2 -110111110 sun-damaged 2 -110111110 wired-up 2 -110111110 sun-induced 2 -110111110 bell-bottom 2 -110111110 connubial 2 -110111110 house-bound 2 -110111110 podiatric 2 -110111110 general-equivalency 2 -110111110 self-depreciating 2 -110111110 discolored 2 -110111110 profit-hungry 2 -110111110 thine 2 -110111110 Pneumocystis 2 -110111110 '60s-style 2 -110111110 pubic 2 -110111110 silent-film 2 -110111110 non-fatal 2 -110111110 out-of-line 2 -110111110 grief-stricken 2 -110111110 sugarfree 2 -110111110 typewriter-quality 2 -110111110 8-by-10-inch 2 -110111110 open-faced 2 -110111110 fortune-cookie 2 -110111110 unloving 2 -110111110 fast-break 2 -110111110 near-continuous 2 -110111110 AIDS-contaminated 2 -110111110 low-nicotine 2 -110111110 Anusol 2 -110111110 pre-bargaining 2 -110111110 nylon-rooted 2 -110111110 forest-floor 2 -110111110 huevos 3 -110111110 dynamic-random-access 3 -110111110 his/her 3 -110111110 bloodshot 3 -110111110 longer-distance 3 -110111110 Sucrets 3 -110111110 bullet-resistant 3 -110111110 recoilless 3 -110111110 post-traumatic 3 -110111110 Wilsonian 3 -110111110 Het 3 -110111110 anti-Asian 4 -110111110 studio-quality 4 -110111110 single-income 4 -110111110 non-religious 4 -110111110 slicked-back 4 -110111110 potting 4 -110111110 oxygen-rich 5 -110111110 banishing 5 -110111110 ratepayer 5 -110111110 filial 6 -110111110 small-cell 7 -110111110 rear-seat 10 -110111110 thy 11 -110111110 single-pay 11 -110111110 congestive 25 -110111110 uncharted 39 -110111110 my 9013 -110111110 your 6841 -110111111 size-16 1 -110111111 Buffalo-burger 1 -110111111 broken-home 1 -110111111 travel-along 1 -110111111 Speculum 1 -110111111 stretch-marked 1 -110111111 stochastic 1 -110111111 Hellenikon 1 -110111111 floral-patterned 1 -110111111 not-so-petty 1 -110111111 thrift-management 1 -110111111 Metallgesells 1 -110111111 Jacotte 1 -110111111 writing/production 1 -110111111 Inna 1 -110111111 fold-down 1 -110111111 pullie 1 -110111111 lubricating-oil 1 -110111111 Bible-belt 1 -110111111 low-growing 1 -110111111 mule-drawn 1 -110111111 IRS-related 1 -110111111 Stalin-Brezhnevite 1 -110111111 self-avowedly 1 -110111111 Titano 1 -110111111 lightning-sharp 1 -110111111 waterworked 1 -110111111 ugly-looking 1 -110111111 30,582 1 -110111111 too-forbearing 1 -110111111 mercury/butter 1 -110111111 19th-cenury 1 -110111111 ten-gallon 1 -110111111 outrage. 1 -110111111 federal-assisted 1 -110111111 virus-killing 1 -110111111 254-seat 1 -110111111 rediscovers 1 -110111111 Gullah 1 -110111111 frost-bitten 1 -110111111 6-month-old 1 -110111111 touseled 1 -110111111 Whoppers 1 -110111111 weak-throwing 1 -110111111 purse-winning 1 -110111111 gold-shovel 1 -110111111 idealizes 1 -110111111 white-lace 1 -110111111 homosexual/bisexual 1 -110111111 857th 1 -110111111 McGovernite 1 -110111111 religious-like 1 -110111111 81,500-member 1 -110111111 gnu-velle 1 -110111111 solid-sounding 1 -110111111 flat-toned 1 -110111111 Edvaldo 1 -110111111 e. 1 -110111111 Neoconservative 1 -110111111 shirtsleeve 1 -110111111 thrift-resolution 1 -110111111 99,337 1 -110111111 2,722 1 -110111111 half-Italian 1 -110111111 Faletan 1 -110111111 upper-medium 1 -110111111 corn-silk 1 -110111111 4,700-acre 1 -110111111 heavy-limbed 1 -110111111 Westing 1 -110111111 blood-lusting 1 -110111111 North-American 1 -110111111 point-and-click 1 -110111111 sapient 1 -110111111 118,539 1 -110111111 Medicare-supported 1 -110111111 skirt-clad 1 -110111111 stolid-looking 1 -110111111 5,465 1 -110111111 gene-carrying 1 -110111111 Hawkette 1 -110111111 neo-classic 1 -110111111 palest 1 -110111111 once-compulsory 1 -110111111 football-player 1 -110111111 barkeep 1 -110111111 make-shift 1 -110111111 deconstructivist 1 -110111111 Araoz 1 -110111111 259,181 1 -110111111 caul 1 -110111111 sod-buster 1 -110111111 traditonally 1 -110111111 more-technical 1 -110111111 active-trading 1 -110111111 Slim-Fast 1 -110111111 382,010 1 -110111111 Vandenberg-style 1 -110111111 bastardizes 1 -110111111 spandex-clad 1 -110111111 panne 1 -110111111 spy-case 1 -110111111 GE-financed 1 -110111111 1.75-times 1 -110111111 water-hungry 1 -110111111 schedule-related 1 -110111111 shift-related 1 -110111111 now-prohibited 1 -110111111 Suzushi 1 -110111111 nerve-fraying 1 -110111111 Iranian-controlled 2 -110111111 rust-colored 2 -110111111 civilrights 2 -110111111 Delta-Avia 2 -110111111 13,268 2 -110111111 south-of-the-border 2 -110111111 anoint 2 -110111111 French-backed 2 -110111111 deep-set 2 -110111111 40ish 2 -110111111 cassowary 2 -110111111 officious 2 -110111111 Redbird 2 -110111111 Afro-Caribbean 2 -110111111 chicken-fried 2 -110111111 house-plant 2 -110111111 washable 2 -110111111 Martian-like 2 -110111111 fluted 2 -110111111 3,838 2 -110111111 quavery 2 -110111111 non-dance 2 -110111111 coagulated 2 -110111111 safety-seat 2 -110111111 non-employed 2 -110111111 stampless 2 -110111111 orgiastic 2 -110111111 unprepossessing 2 -110111111 metastasizing 2 -110111111 mainlining 2 -110111111 tricalcium 2 -110111111 seabird 2 -110111111 proto-cubist 2 -110111111 Shavian 2 -110111111 lymphokine-activated 2 -110111111 triple-bypass 2 -110111111 seafoam 2 -110111111 saddlebag 3 -110111111 medicated 3 -110111111 posher 3 -110111111 ischemic 3 -110111111 exosurf 3 -110111111 uninvested 3 -110111111 lived-in 3 -110111111 rex 3 -110111111 Oakencroft 3 -110111111 characterless 3 -110111111 Audio-Animatronics 3 -110111111 Sarin 4 -110111111 ear-splitting 4 -110111111 enkephalin 4 -110111111 skintight 4 -110111111 bated 5 -110111111 ground-up 6 -110111111 Poznan 7 -110111111 ventricular 11 -110111111 pinot 17 -110111111 her 15296 -110111111 Chapelle 21 -11100000 consumer-use 1 -11100000 still-depressed 1 -11100000 men's-wear 1 -11100000 tough-but-virtuous 1 -11100000 then-exotic 1 -11100000 government-coerced 1 -11100000 thuggish-looking 1 -11100000 non-Nation 1 -11100000 reclosable 1 -11100000 CIA-owned 1 -11100000 food-connected 1 -11100000 high-placed 1 -11100000 Bakersfield-based 1 -11100000 since-deleted 1 -11100000 reg-negon 1 -11100000 23-branch 1 -11100000 27,000-square-foot 1 -11100000 302-acre 1 -11100000 interest-rate-margin 1 -11100000 white-mauve 1 -11100000 ecomomic 1 -11100000 Pontiac-Cadillac 1 -11100000 metal-fabrication 1 -11100000 member-owned 1 -11100000 three-pfennigs 1 -11100000 non-turbocharged 1 -11100000 60,000-acre 1 -11100000 37-minute 1 -11100000 government-educated 1 -11100000 Bendectin-related 1 -11100000 tab-collared 1 -11100000 Chilean-registered 1 -11100000 10,000-seat 1 -11100000 bloodly 1 -11100000 almost-universal 1 -11100000 high-potency 1 -11100000 scuba-gear 1 -11100000 Califiornia 1 -11100000 big-science 1 -11100000 thrift-based 1 -11100000 glacial-paced 1 -11100000 train-auto 1 -11100000 copy-prevention 1 -11100000 39-lawyer 1 -11100000 polymer-related 1 -11100000 double-cassette 1 -11100000 RTZ. 1 -11100000 widely-watched 1 -11100000 management-affiliated 1 -11100000 multi-holed 1 -11100000 27-acre 1 -11100000 hemorrhoid-preparation 1 -11100000 50th-anniversary 1 -11100000 1992-related 1 -11100000 four-inch-thick 1 -11100000 cell-growth 1 -11100000 44-person 1 -11100000 go-getting 1 -11100000 portable-generator 1 -11100000 lemony 1 -11100000 brake-related 1 -11100000 fiberglass-product 1 -11100000 630-megawatt 1 -11100000 thermal-vacuum 1 -11100000 county-court 1 -11100000 density-related 1 -11100000 38.2-acre 1 -11100000 banker-pleasing 1 -11100000 ex-Teradyne 1 -11100000 share-holding 1 -11100000 light-industrial 1 -11100000 price-firming 1 -11100000 At&T 1 -11100000 post-1960s 1 -11100000 14-city 1 -11100000 KKR-financed 1 -11100000 more-independent 1 -11100000 pizza-parlor 1 -11100000 private-business 1 -11100000 B-767-200 1 -11100000 550-volt 1 -11100000 10-mile-square 1 -11100000 gasoline-marketing 1 -11100000 18-pound 1 -11100000 non-semiconductor 1 -11100000 blocked-off 1 -11100000 700,000-ton 1 -11100000 Chrysler-style 1 -11100000 birdie-bogey 1 -11100000 Dallasbased 1 -11100000 36-square-block 1 -11100000 basketball-sized 1 -11100000 13,000-acre 1 -11100000 SHOOTER 1 -11100000 blade-flashing 1 -11100000 10-ship 1 -11100000 financialservice 1 -11100000 non-pharmacological 1 -11100000 shopping-bag 1 -11100000 later-maturing 1 -11100000 150-horsepower 1 -11100000 about-to-boom 1 -11100000 second-fiddle 1 -11100000 peace-of-mind 1 -11100000 free-energy 1 -11100000 anti-Rivera 1 -11100000 baby-soap 1 -11100000 trans-Africa 1 -11100000 galvanizing-line 1 -11100000 sneezy 1 -11100000 Youngstown-based 1 -11100000 once-financially 1 -11100000 no-dance 1 -11100000 swallow-savvy 1 -11100000 country-and-western-style 1 -11100000 sidelong 1 -11100000 political-image 1 -11100000 Victorian-era 1 -11100000 Soviet-British 1 -11100000 1,199,616 1 -11100000 technical-recovery 1 -11100000 Marcos-sized 1 -11100000 2,700-mile 1 -11100000 now-nationalized 1 -11100000 major-label 1 -11100000 seven-ship 1 -11100000 500-kilovolt 1 -11100000 U.S.-type 1 -11100000 toxintipped 1 -11100000 Carterera 1 -11100000 Houston-Chicago 1 -11100000 often-fractious 1 -11100000 famine-stricken 1 -11100000 traffic-system 1 -11100000 1,291 1 -11100000 jai-lai 1 -11100000 Senate-devised 1 -11100000 hick 1 -11100000 250-plus 1 -11100000 constant-level 1 -11100000 porn-house 1 -11100000 bigbuck 1 -11100000 raggle-taggle 1 -11100000 management-proposed 1 -11100000 DC-1030-ER 1 -11100000 little-recognized 1 -11100000 party-wrecking 1 -11100000 neutral-flag 1 -11100000 Sonex-modified 1 -11100000 much-beset 1 -11100000 regional-commuter 1 -11100000 public-owned 1 -11100000 non-Teamsters 1 -11100000 humanities-based 1 -11100000 cruise-missile-equipped 1 -11100000 upper-Midwest 1 -11100000 non-pharmaceuticals 1 -11100000 malpractice-suit 1 -11100000 Bethlehem-based 1 -11100000 semi-confrontational 1 -11100000 stocking-cap 1 -11100000 ceramics-related 1 -11100000 nitrogenfertilizer 1 -11100000 Posner-related 1 -11100000 wood-chip-fired 1 -11100000 TV-audience 1 -11100000 50-rupee 1 -11100000 book-craving 1 -11100000 narcotics-substitution 1 -11100000 Moscow-length 1 -11100000 premium-service 1 -11100000 noncorporate-account 1 -11100000 2,000-branch 1 -11100000 drilling-equipment 1 -11100000 auto-equipment 1 -11100000 questionable-to-weak 1 -11100000 35-seat 1 -11100000 trans-urethral 1 -11100000 Griswold-style 1 -11100000 jacked-up 1 -11100000 68-acre 1 -11100000 34-plane 1 -11100000 post-Police 1 -11100000 semisuccessful 1 -11100000 legal-profession 1 -11100000 unerasable 1 -11100000 medical-services 1 -11100000 2,513-acre 1 -11100000 55-or-15 1 -11100000 space-oriented 1 -11100000 U.S.flagged 1 -11100000 Mideast-prompted 1 -11100000 government-sized 1 -11100000 CIA-organized 1 -11100000 lodging-technology 1 -11100000 marine-engine 1 -11100000 capacity-starved 1 -11100000 quasi-constitutional 1 -11100000 140-horsepower 1 -11100000 heat-reflecting 1 -11100000 465-acre 1 -11100000 633-mile 1 -11100000 million-selling 1 -11100000 78-lawyer 1 -11100000 chickadee 1 -11100000 140-megawatt 1 -11100000 19-inch-wide 1 -11100000 boilerroom 1 -11100000 much-wealthier 1 -11100000 independence-minded 1 -11100000 hightechnology 1 -11100000 600,000-vehicle 1 -11100000 completed-but-still-unlicensed 1 -11100000 30-house 1 -11100000 deficit-boosting 1 -11100000 low-cash-flow 1 -11100000 116-page 1 -11100000 meet-the-candidate 1 -11100000 4-foot-10-inch 1 -11100000 face-toface 1 -11100000 highincome 1 -11100000 Medici-scale 1 -11100000 325-pound 1 -11100000 Treasury-controlled 1 -11100000 slow-down-Jackson 1 -11100000 retrogade 1 -11100000 U.S.-securities 1 -11100000 bull-bedecked 1 -11100000 MAIN 1 -11100000 lessthan-exciting 1 -11100000 time-and-temperature 1 -11100000 Enron-operated 1 -11100000 before-and-after-hours 1 -11100000 12-liter 1 -11100000 one-symbol 1 -11100000 glovemaking 1 -11100000 super-giant 1 -11100000 10.5-acre 1 -11100000 dishwasher-detergent 1 -11100000 Stanford-like 1 -11100000 Tennessee-chartered 1 -11100000 price-strengthing 1 -11100000 million-unit-a-year 1 -11100000 TV-sports 1 -11100000 Haas-sponsored 1 -11100000 sub-sea 1 -11100000 Soviet-Brazilian 1 -11100000 50,000-barrel 1 -11100000 5.8-million-barrel 1 -11100000 step-down 1 -11100000 1.5-million-barrel 1 -11100000 pilot-dominated 1 -11100000 Marcos-crony 1 -11100000 138-horsepower 1 -11100000 47-acre 1 -11100000 42,000-metric-ton-a-year 1 -11100000 1,296-acre 1 -11100000 10-million-ton 1 -11100000 Maltese-flagged 1 -11100000 perhaps-decisive 1 -11100000 230-horsepower 1 -11100000 repeat-call 1 -11100000 Five-Month 1 -11100000 window-film 1 -11100000 not-incidental 1 -11100000 66-story 1 -11100000 Chihuahua-born 1 -11100000 Grumman-built 1 -11100000 31-store 1 -11100000 KMT-owned 1 -11100000 Porsche-Audi 1 -11100000 block-desk 1 -11100000 260-acre 1 -11100000 infection-screening 1 -11100000 400-square-yard 1 -11100000 well-aimed 1 -11100000 national-treasure 1 -11100000 halfdozen 1 -11100000 gum-cracking 1 -11100000 moderate-sounding 1 -11100000 longlost 1 -11100000 most-sold 1 -11100000 transportation-grade 1 -11100000 college-enrolled 1 -11100000 tried-and-proven 1 -11100000 corporate-security 1 -11100000 115-acre 1 -11100000 in-field 1 -11100000 land-oriented 1 -11100000 63-cent-an-hour 1 -11100000 FASB-related 1 -11100000 always-surprising 1 -11100000 two-square-mile 1 -11100000 flood-damage 1 -11100000 provisionary 1 -11100000 discount-drugstore 1 -11100000 7,800-mile 1 -11100000 19.5-acre 1 -11100000 Swedish-Soviet 1 -11100000 Nome-Provideniya 1 -11100000 microwave-actuated 1 -11100000 well-steered 1 -11100000 Huichol 1 -11100000 liposome-based 2 -11100000 Toronto-area 2 -11100000 132-ship 2 -11100000 much-longer 2 -11100000 transfer-risk 2 -11100000 Bible-quoting 2 -11100000 computer-game 2 -11100000 bank-by-mail 2 -11100000 liveable 2 -11100000 smog-bound 2 -11100000 15-man 2 -11100000 50,000-barrel-a-day 2 -11100000 value-minded 2 -11100000 top-paying 2 -11100000 multilateralist 2 -11100000 not-so-secret 2 -11100000 117-acre 2 -11100000 middle-rank 2 -11100000 government-caused 2 -11100000 more-positive 2 -11100000 72-inch 2 -11100000 nonspeaking 2 -11100000 rocket-launch 2 -11100000 clay-like 2 -11100000 Greek-owned 2 -11100000 200-bed 2 -11100000 single-chip 2 -11100000 paper-littered 2 -11100000 special-edition 2 -11100000 quasi-regulatory 2 -11100000 1,400-mile 2 -11100000 390-acre 2 -11100000 small-to-midsize 2 -11100000 company-initiated 2 -11100000 dime-sized 2 -11100000 non-cable 2 -11100000 28-mile 2 -11100000 not-ready-for-prime-time 2 -11100000 on/off 2 -11100000 largest-asset 2 -11100000 110-volt 2 -11100000 long-declining 2 -11100000 shareholder-approved 2 -11100000 scale-model 2 -11100000 500,000-man 2 -11100000 non-export 2 -11100000 Guinness-related 2 -11100000 highest-priority 2 -11100000 72,000-kilowatt 2 -11100000 nonmonetary 2 -11100000 19-acre 2 -11100000 2,300-mile 2 -11100000 nonprogram 2 -11100000 communist-bloc 2 -11100000 dealer-led 2 -11100000 car-distribution 2 -11100000 Panamanian-flag 2 -11100000 equilibrating 2 -11100000 cross-functional 2 -11100000 zinc-nickel 2 -11100000 still-large 3 -11100000 big-cap 3 -11100000 note-issuing 3 -11100000 unmodified 3 -11100000 better-established 3 -11100000 board-authorized 3 -11100000 600-acre 3 -11100000 U.S.-inspired 3 -11100000 ship-building 3 -11100000 five-percentage-point 3 -11100000 rent-controlled 3 -11100000 metals-related 3 -11100000 line-rate 3 -11100000 cash-and-debt 3 -11100000 main-line 3 -11100000 Charlotte-based 3 -11100000 less-serious 3 -11100000 subsidy-hungry 3 -11100000 stereo-sound 3 -11100000 hand-tooled 3 -11100000 capital-hungry 3 -11100000 25-lawyer 3 -11100000 Caracas-based 3 -11100000 head-count 3 -11100000 casino-like 3 -11100000 non-Ford 3 -11100000 15-state 3 -11100000 Navy-escorted 3 -11100000 cash-conservation 3 -11100000 legal-tender 4 -11100000 price-weakening 4 -11100000 California-chartered 4 -11100000 price-strengthening 4 -11100000 hand-lettered 4 -11100000 million-bag 4 -11100000 600,000-man 4 -11100000 one-million-bag 4 -11100000 first-rank 4 -11100000 largescale 4 -11100000 Redskin 4 -11100000 Noes 5 -11100000 marketing-driven 5 -11100000 Canadian-led 5 -11100000 morale-boosting 5 -11100000 wide-reaching 5 -11100000 stock-based 5 -11100000 1929-style 5 -11100000 Japanese-managed 5 -11100000 less-active 6 -11100000 U.S.-escorted 6 -11100000 farflung 6 -11100000 two-bit 6 -11100000 budget-related 6 -11100000 car-selling 7 -11100000 19-plane 7 -11100000 non-German 7 -11100000 hand-written 7 -11100000 70-acre 8 -11100000 Seattle-area 8 -11100000 top-priority 8 -11100000 dollar-dependent 8 -11100000 poor-performing 8 -11100000 corporate-law 9 -11100000 woodwind 9 -11100000 once-proud 10 -11100000 modest-sized 11 -11100000 multi-state 11 -11100000 U.S.-led 13 -11100000 self-respecting 15 -11100000 government-ordered 16 -11100000 money-back 17 -11100000 three-time 17 -11100000 barrier-free 22 -11100000 major 24441 -11100000 world-class 111 -111000010 29-percentage-point 1 -111000010 too-simple 1 -111000010 sample-gathering 1 -111000010 Pentagon-sponsored 1 -111000010 three-weekend 1 -111000010 49,945,000 1 -111000010 bet-the-ranch 1 -111000010 chisled 1 -111000010 agent-oriented 1 -111000010 FASB-GASB 1 -111000010 not-so-doomsday 1 -111000010 westernized 1 -111000010 delusionary 1 -111000010 still-unbuilt 1 -111000010 Shell-Exxon 1 -111000010 once-tame 1 -111000010 looting-type 1 -111000010 Belgrade-Moscow 1 -111000010 10-time 1 -111000010 return-risk 1 -111000010 20-cent-an-hour 1 -111000010 risk-and 1 -111000010 Jerry-Lewis-worshipping 1 -111000010 long-insulated 1 -111000010 Treasury-Bundesbank 1 -111000010 close-call 1 -111000010 Korean-Korean 1 -111000010 negotitating 1 -111000010 advance-man 1 -111000010 non-baseball 1 -111000010 many-gadgeted 1 -111000010 sale-of-business 1 -111000010 eighth-century 1 -111000010 Miskito-Sumo-Rama 1 -111000010 late-autumn 1 -111000010 health-sector 1 -111000010 Swedish-owned 1 -111000010 Moskvitch 1 -111000010 case-load 1 -111000010 declaredly 1 -111000010 Zamboanga-del-Sur-style 1 -111000010 best-of-both-worlds 1 -111000010 mid-1990s.The 1 -111000010 Haitian-born 1 -111000010 giant-long 1 -111000010 melody-mad 1 -111000010 non-amused 1 -111000010 more-legit 1 -111000010 Toyota-Nissan 1 -111000010 minority-contractor 1 -111000010 back-home 1 -111000010 post-truce 1 -111000010 pan-Islamic 1 -111000010 gingerbreaded 1 -111000010 year-ending 1 -111000010 muddling-through 1 -111000010 rice-loving 1 -111000010 then-ruling 1 -111000010 sex-for-spying 1 -111000010 rags-to-Rodeo-Drive 1 -111000010 FDN-aligned 1 -111000010 lower-earnings 1 -111000010 already-murky 1 -111000010 beauty-contest 1 -111000010 inflation-wracked 1 -111000010 fuel-gauge 1 -111000010 trade-shrinking 1 -111000010 more-autonomous 1 -111000010 grevious 1 -111000010 Age-Old 1 -111000010 long-somnolent 1 -111000010 once-sacred 1 -111000010 Airbus/Eastern 1 -111000010 then-popular 1 -111000010 urban-mall 1 -111000010 better-safe-than-sorry 1 -111000010 more-helpful 1 -111000010 supply-threatening 1 -111000010 ground-collapse 1 -111000010 pay-scale 1 -111000010 Christmas-club 1 -111000010 fraction-of-a-point 1 -111000010 Akzo-Royal 1 -111000010 financially-struggling 1 -111000010 no-threat-for-10-years 1 -111000010 second-and-24 1 -111000010 parochial-minded 1 -111000010 120-store 1 -111000010 too-sweeping 1 -111000010 banner-headline 1 -111000010 west-coast 1 -111000010 CIA-KGB 1 -111000010 trans-border 1 -111000010 Carmens 1 -111000010 Kenya-born 1 -111000010 wpstart 1 -111000010 destroyers-for-bases 1 -111000010 more-formidable 1 -111000010 46.62-point 1 -111000010 0.49-point 1 -111000010 circle-prone 1 -111000010 time-warped 1 -111000010 Hoosierland 1 -111000010 new-jobs 1 -111000010 game-fixing 1 -111000010 door-die 1 -111000010 fire-touched 1 -111000010 sometimes-fatal 1 -111000010 year-the 1 -111000010 frozen-embryo 1 -111000010 sick-making 1 -111000010 multiagency 1 -111000010 27-time 1 -111000010 nine-bedroom 1 -111000010 15-foot-high 1 -111000010 221.07-point 1 -111000010 no-surprises 1 -111000010 small-budget 1 -111000010 often-sounded 1 -111000010 nonbargaining 1 -111000010 Lumbee 1 -111000010 Yahi 1 -111000010 thrice-postponed 1 -111000010 penalty-reform 1 -111000010 PREDICTABLY 1 -111000010 aluminum-hulled 1 -111000010 cleanshaven 1 -111000010 Karmann 1 -111000010 CorningSmithKline 1 -111000010 pilot-directed 1 -111000010 sex-for-secrets 1 -111000010 not-so-small 1 -111000010 paper-crunch 1 -111000010 Rubensesque 1 -111000010 much-scrutinized 1 -111000010 not-uncommon 1 -111000010 160-year-old 1 -111000010 noise-insulation 1 -111000010 ICN-Viratek 1 -111000010 cooling-fan 1 -111000010 delirium-inducing 1 -111000010 Stanton-Daley 1 -111000010 Russian-backed 1 -111000010 now-unforeseen 1 -111000010 Azteca 1 -111000010 Cezannes 1 -111000010 health-care-service 1 -111000010 accounting-type 1 -111000010 consultant-accountant 1 -111000010 14-acre 1 -111000010 not-so-trivial 1 -111000010 worse-case 1 -111000010 seven-medal 1 -111000010 convention-financing 1 -111000010 Brokaw-engineered 1 -111000010 prestige-sentitive 1 -111000010 stess-protein 1 -111000010 hit-or-miss 1 -111000010 daily-dividend 1 -111000010 Northrop-Korea 1 -111000010 bond-oriented 1 -111000010 Mitterrand-Kohl 1 -111000010 Alabama-Coushatta 1 -111000010 water-depletion 1 -111000010 single-celled 2 -111000010 dead-of-the-night 2 -111000010 50,000-pound 2 -111000010 pre-invasion 2 -111000010 mortgage-investment 2 -111000010 pro-West 2 -111000010 prissy 2 -111000010 Smurf 2 -111000010 catching-up 2 -111000010 Terribly 2 -111000010 poppy-seed 2 -111000010 special-interest-group 2 -111000010 tabloid-sized 2 -111000010 four-page-a-minute 2 -111000010 killer-bee 2 -111000010 less-leveraged 2 -111000010 32-yard 2 -111000010 Bangalore-based 2 -111000010 fist-sized 2 -111000010 Christmas-time 2 -111000010 Unisys-Convergent 2 -111000010 public-financing 2 -111000010 blood-curdling 2 -111000010 nondiversified 2 -111000010 trading-system 2 -111000010 no-strings-attached 2 -111000010 five-act 2 -111000010 frozen-pizza 2 -111000010 once-protected 2 -111000010 Sealink 2 -111000010 government-granted 2 -111000010 subcabinet 2 -111000010 95-cent 2 -111000010 22-point 2 -111000010 non-serious 2 -111000010 more-militant 2 -111000010 55-pound 2 -111000010 bald-faced 2 -111000010 four-eyed 2 -111000010 one-newspaper 2 -111000010 waterfront-project 2 -111000010 salaried-employee 2 -111000010 transaction-related 3 -111000010 135-year-old 3 -111000010 last-ranked 3 -111000010 two-year-long 3 -111000010 1,000-person 3 -111000010 tension-filled 3 -111000010 five-week-old 3 -111000010 gross-out 3 -111000010 government-orchestrated 3 -111000010 strikebound 3 -111000010 baldfaced 3 -111000010 brokerage-stock 3 -111000010 bases-loaded 3 -111000010 200-store 3 -111000010 low-beta 3 -111000010 Republican-sponsored 3 -111000010 million-vote 3 -111000010 candlelit 3 -111000010 microwaveable 3 -111000010 25,000-square-foot 3 -111000010 hard-to-spot 3 -111000010 lifesize 3 -111000010 400-year-old 3 -111000010 50-cent-an-hour 3 -111000010 seventh-game 3 -111000010 Utopian 3 -111000010 Moscow-Beijing 3 -111000010 beleagured 3 -111000010 37-megawatt 3 -111000010 fast-trading 3 -111000010 multifunction 3 -111000010 well-seasoned 3 -111000010 still-healthy 4 -111000010 financial-sector 4 -111000010 outsize 4 -111000010 regulatory-relief 4 -111000010 1,000-acre 4 -111000010 double-page 4 -111000010 cold-hearted 4 -111000010 white-controlled 4 -111000010 church-based 4 -111000010 May-September 4 -111000010 straight-up 4 -111000010 Akzo/Royal 4 -111000010 three-cent 5 -111000010 life-prolonging 5 -111000010 bona-fide 5 -111000010 consumer-law 5 -111000010 lose-lose 5 -111000010 cash-hungry 5 -111000010 mouth-watering 5 -111000010 similar-size 6 -111000010 viscous 6 -111000010 long-closed 6 -111000010 much-debated 6 -111000010 multihull 6 -111000010 standard-issue 6 -111000010 Gordian 6 -111000010 late-evening 7 -111000010 first-line 7 -111000010 end-of-the-quarter 7 -111000010 billion-dollar-plus 7 -111000010 cash-laden 7 -111000010 semi-governmental 8 -111000010 gravelly 8 -111000010 two-handed 8 -111000010 months-old 8 -111000010 fast-expanding 8 -111000010 160-acre 8 -111000010 300-point 8 -111000010 last-place 9 -111000010 DDG-51 9 -111000010 more-active 9 -111000010 high-yield-bond 9 -111000010 30-cent 9 -111000010 middle-size 9 -111000010 spur-of-the-moment 10 -111000010 mid-life 10 -111000010 tried-and-true 10 -111000010 13th-century 11 -111000010 no-lose 12 -111000010 wintry 13 -111000010 run-of-the-mill 20 -111000010 heavy-industry 21 -111000010 12-point 24 -111000010 top-tier 25 -111000010 knotty 26 -111000010 no-win 31 -111000010 50-point 32 -111000010 wider-than-expected 39 -111000010 back-to-back 41 -111000010 smaller-than-expected 50 -111000010 foregone 55 -111000010 splashy 67 -111000010 budding 76 -111000010 roller-coaster 79 -111000010 thorny 92 -111000010 money-losing 94 -111000010 big 17636 -111000010 billion-dollar 129 -111000011 conservative-advocacy 1 -111000011 medical-center 1 -111000011 26-bank 1 -111000011 hitherto-overlooked 1 -111000011 beaconing 1 -111000011 political-interest 1 -111000011 modest-size 1 -111000011 16-million 1 -111000011 non-minimalist 1 -111000011 variable-cost 1 -111000011 private-research 1 -111000011 mid-management 1 -111000011 35,000-extension 1 -111000011 big-commission 1 -111000011 five-window 1 -111000011 tax-identification 1 -111000011 Korean-owned 1 -111000011 426-foot 1 -111000011 telephone-book-thick 1 -111000011 Boeing-Hughes 1 -111000011 Sangster-led 1 -111000011 PaineWebber-led 1 -111000011 British-Chinese 1 -111000011 taxpayer-identification 1 -111000011 Sino-French 1 -111000011 customer-operated 1 -111000011 375-acre 1 -111000011 96-ounce 1 -111000011 165,000-acre 1 -111000011 savings-and-loan-industry 1 -111000011 company-named 1 -111000011 safety-advocacy 1 -111000011 well-refined 1 -111000011 states-government 1 -111000011 Broadway-like 1 -111000011 mischevious 1 -111000011 changin 1 -111000011 utility-financed 1 -111000011 public-assembly 1 -111000011 broaderscope 1 -111000011 consumer-activist 1 -111000011 color-LCD 1 -111000011 Dine-O-Mat 1 -111000011 refrigerated-products 1 -111000011 113-nation 1 -111000011 gospel-style 1 -111000011 burned-off 1 -111000011 dodgy 1 -111000011 speaker-manufacturing 1 -111000011 161-store 1 -111000011 textile-labeling 1 -111000011 pervertible 1 -111000011 multicomponent 1 -111000011 giddyap-and-go 1 -111000011 legend-encrusted 1 -111000011 solid-gray 1 -111000011 detainees-monitoring 1 -111000011 Spanish-Arab 1 -111000011 stamina-testing 1 -111000011 Merrill-led 1 -111000011 public-law 1 -111000011 blockheaded 1 -111000011 Frates-led 1 -111000011 to-be-determined 1 -111000011 now-unregulated 1 -111000011 long-favored 1 -111000011 pard 1 -111000011 corporate-watchdog 1 -111000011 Jacobs-led 1 -111000011 farmer-advocacy 1 -111000011 more-identifiable 1 -111000011 paltry-pursed 1 -111000011 Louisiana-based 1 -111000011 community-improvement 1 -111000011 direct-delivery 1 -111000011 Village-based 1 -111000011 food-vending 1 -111000011 protective-equipment 1 -111000011 Shula-coached 1 -111000011 94-bed 1 -111000011 more-than-average 1 -111000011 nonwoven-textile 1 -111000011 liberal-leaning 1 -111000011 620-acre 1 -111000011 VAT-like 1 -111000011 pig-farming 1 -111000011 fruit-exporting 1 -111000011 contract-sewing 1 -111000011 hypnotical 1 -111000011 Pickensled 1 -111000011 ore-like 1 -111000011 once-glutted 1 -111000011 metal-treatment 1 -111000011 dog-sized 1 -111000011 corporate-pension 1 -111000011 Starlan 1 -111000011 hot-pink 1 -111000011 Branson-controlled 1 -111000011 200-apartment 1 -111000011 early-seeded 1 -111000011 un-automated 1 -111000011 counter-pressure 1 -111000011 Fiat-led 1 -111000011 higher-than-reported 1 -111000011 Norine 1 -111000011 fast-diminishing 1 -111000011 black-oriented 1 -111000011 once-closed 1 -111000011 713-mile 1 -111000011 gay-advocacy 1 -111000011 gun-advocacy 1 -111000011 56-bed 1 -111000011 college-business 1 -111000011 small-employer 1 -111000011 97-room 1 -111000011 French-Italian 1 -111000011 doll-house-scale 1 -111000011 specialized-engineering 1 -111000011 similar-sounding 1 -111000011 sports-catalog 1 -111000011 military-tent 1 -111000011 30,000-man 1 -111000011 media-publishing 1 -111000011 nickel-size 1 -111000011 3,740-foot 1 -111000011 truck-maintenance 1 -111000011 rural-oriented 1 -111000011 jargony 1 -111000011 British-Arab 1 -111000011 248-room 1 -111000011 group-sponsored 1 -111000011 children's-advocacy 1 -111000011 postcoital 1 -111000011 5,400-mile 1 -111000011 playable 1 -111000011 160-bed 1 -111000011 fee-driven 1 -111000011 prisoner-advocacy 1 -111000011 as-yet-unspecified 1 -111000011 commoditylike 1 -111000011 BellSouth-led 1 -111000011 1.2650 1 -111000011 TravelHoliday 1 -111000011 60-patient 1 -111000011 money-lending 1 -111000011 under-valued 1 -111000011 gabby 1 -111000011 2,000-square-meter 1 -111000011 land-clearing 1 -111000011 perceived-value 1 -111000011 British-French-American 1 -111000011 lobster-supply 1 -111000011 Ferranti-led 1 -111000011 receivable-management 1 -111000011 precise-sounding 1 -111000011 New-York-based 1 -111000011 half-to-full 1 -111000011 chip-producing 1 -111000011 pet-rabbit-raising 1 -111000011 two-passenger 1 -111000011 utility-sponsored 1 -111000011 925-foot-high 1 -111000011 tree-service 1 -111000011 Czechoslovak-made 1 -111000011 securities-analysis 1 -111000011 sales-service 1 -111000011 metal-can 1 -111000011 twin-screen 1 -111000011 certain-sized 2 -111000011 grotty 2 -111000011 gun-happy 2 -111000011 sword-wielding 2 -111000011 high-achieving 2 -111000011 steering-linkage 2 -111000011 Troublesome 2 -111000011 rare-books 2 -111000011 spear-carrying 2 -111000011 50-store 2 -111000011 steering-system 2 -111000011 owlish 2 -111000011 gambling-related 2 -111000011 3,241 2 -111000011 housing-advocacy 2 -111000011 matchstick 2 -111000011 information-oriented 2 -111000011 hard-court 2 -111000011 full-out 2 -111000011 Gargantuan 2 -111000011 French-oriented 2 -111000011 Wisconsin-based 2 -111000011 hard-to-define 2 -111000011 more-combative 2 -111000011 protein-like 2 -111000011 two-team 2 -111000011 itsy-bitsy 2 -111000011 marine-transportation 2 -111000011 niche-oriented 2 -111000011 12E 2 -111000011 greater-than-normal 2 -111000011 klutzy 2 -111000011 larger-than-average 2 -111000011 tile-roofed 2 -111000011 cross-industry 2 -111000011 shoebox-sized 2 -111000011 native-language 2 -111000011 three-fund 2 -111000011 fatcat 2 -111000011 70-millimeter 2 -111000011 worry-free 2 -111000011 seven-city 2 -111000011 doubledecker 2 -111000011 well-produced 2 -111000011 bomb-damaged 2 -111000011 earthquake-damaged 2 -111000011 right-leaning 2 -111000011 college-publishing 2 -111000011 dollar-exposed 2 -111000011 well-justified 2 -111000011 PC-related 2 -111000011 pushcart 3 -111000011 fast-drying 3 -111000011 five-company 3 -111000011 3,000-foot 3 -111000011 sepulchral 3 -111000011 security-sensitive 3 -111000011 narrow-gauge 3 -111000011 heterogenous 3 -111000011 rag-tag 3 -111000011 76-acre 3 -111000011 gold-leaf 3 -111000011 land-office 3 -111000011 child-advocacy 3 -111000011 soon-to-be-published 3 -111000011 40-ton 3 -111000011 less-desirable 3 -111000011 voice-controlled 3 -111000011 wind-whipped 3 -111000011 75-pound 3 -111000011 one-for-five 3 -111000011 three-line 3 -111000011 largish 3 -111000011 silversmith 3 -111000011 family-sized 3 -111000011 claymation 3 -111000011 mediumsized 3 -111000011 500-bed 3 -111000011 5,000-share 3 -111000011 good-news 3 -111000011 10-bank 3 -111000011 low-dose 3 -111000011 diamond-shaped 4 -111000011 three-liter 4 -111000011 more-liquid 4 -111000011 hormone-like 4 -111000011 114-nation 4 -111000011 high-performing 4 -111000011 drug-crazed 4 -111000011 non-recessionary 4 -111000011 non-citizen 4 -111000011 two-foot-tall 4 -111000011 beveled 4 -111000011 export-based 4 -111000011 fenced-in 4 -111000011 half-ton 4 -111000011 used-book 4 -111000011 better-made 4 -111000011 beech 4 -111000011 two-newspaper 4 -111000011 peppy 5 -111000011 two-million 5 -111000011 treeless 5 -111000011 1,072 5 -111000011 calypso 5 -111000011 larger-than-usual 5 -111000011 teensy 5 -111000011 dirt-poor 5 -111000011 kaishime 5 -111000011 fair-sized 5 -111000011 dissonant 5 -111000011 steel-related 5 -111000011 risk-oriented 5 -111000011 bioengineered 6 -111000011 low-return 6 -111000011 1950s-vintage 6 -111000011 city-sponsored 6 -111000011 lusty 6 -111000011 plebeian 6 -111000011 curvy 6 -111000011 Brobdingnagian 6 -111000011 high-tension 6 -111000011 loose-fitting 6 -111000011 unpainted 7 -111000011 Hutu 7 -111000011 still-undetermined 7 -111000011 status-conscious 8 -111000011 king-sized 8 -111000011 better-performing 8 -111000011 technology-oriented 8 -111000011 gory 9 -111000011 one-pound 9 -111000011 fire-damaged 9 -111000011 neo-Nazi 10 -111000011 well-attended 11 -111000011 better-paying 11 -111000011 high-intensity 11 -111000011 self-governing 11 -111000011 half-finished 11 -111000011 non-Nasdaq 11 -111000011 dollar-sensitive 12 -111000011 high-dividend 13 -111000011 100-pound 13 -111000011 one-person 13 -111000011 debt-heavy 13 -111000011 tight-knit 14 -111000011 smallish 15 -111000011 detachable 15 -111000011 Beazer-led 15 -111000011 white-owned 16 -111000011 goodly 17 -111000011 low-profit 18 -111000011 recession-resistant 18 -111000011 nondescript 20 -111000011 malfunctioning 21 -111000011 discrete 22 -111000011 perishable 29 -111000011 below-average 30 -111000011 grimy 30 -111000011 deluxe 30 -111000011 finite 33 -111000011 coarse 34 -111000011 middle-sized 35 -111000011 well-capitalized 35 -111000011 well-run 47 -111000011 well-managed 54 -111000011 second-tier 56 -111000011 consumer-oriented 61 -111000011 medium-size 80 -111000011 dummy 81 -111000011 sleek 94 -111000011 sleepy 114 -111000011 disproportionate 147 -111000011 high-priced 251 -111000011 fancy 349 -111000011 lesser 385 -111000011 medium-sized 423 -111000011 cyclical 537 -111000011 sizable 792 -111000011 tiny 1190 -111000011 small 12017 -111000011 large 12508 -111000100 six-million-unit 1 -111000100 supercompetitive 1 -111000100 1,764,000 1 -111000100 steam-injection 1 -111000100 64-lane 1 -111000100 Wright-Ortega 1 -111000100 late-1962 1 -111000100 64-acre 1 -111000100 less-than-friendly 1 -111000100 1928-1929 1 -111000100 science-journalism 1 -111000100 less-activist 1 -111000100 six-percentage-point 1 -111000100 one-cell 1 -111000100 bomb-caused 1 -111000100 penlike 1 -111000100 19-week 1 -111000100 Mediterranean-sized 1 -111000100 diamond-market 1 -111000100 nine-mile-long 1 -111000100 long-abandoned 1 -111000100 dress-down 1 -111000100 Medicaid-funded 1 -111000100 two-to-three-month 1 -111000100 parachutelike 1 -111000100 pre-condemnation 1 -111000100 37-to-11 1 -111000100 defter 1 -111000100 40-person 1 -111000100 seven-block 1 -111000100 multitrack 1 -111000100 private-power 1 -111000100 high-anxiety 1 -111000100 356-56 1 -111000100 first-story 1 -111000100 fast-advancing 1 -111000100 13-7 1 -111000100 342-point 1 -111000100 208-189 1 -111000100 planetlike 1 -111000100 Martinized 1 -111000100 tower-of-power 1 -111000100 bay-side 1 -111000100 bowling-machine 1 -111000100 McKesson-provided 1 -111000100 post-rejection 1 -111000100 fast-revolving 1 -111000100 global-equities 1 -111000100 6,279,000-unit 1 -111000100 19-0 1 -111000100 caffeine-dependent 1 -111000100 natural-foods 1 -111000100 13-county 1 -111000100 1873-76 1 -111000100 1893-96 1 -111000100 talent-show 1 -111000100 anti-Ngo 1 -111000100 bomb-shelter 1 -111000100 walkout-triggered 1 -111000100 dancing-bear 1 -111000100 rock-and-gravel 1 -111000100 145-yard 1 -111000100 151-yard 1 -111000100 total-liability 1 -111000100 34-day 1 -111000100 production-based 1 -111000100 demand-based 1 -111000100 38-yard 1 -111000100 fullblown 1 -111000100 24.6-acre 1 -111000100 reactor-research 1 -111000100 cable-car 1 -111000100 27-foot 1 -111000100 calcium-dependent 1 -111000100 day-each 1 -111000100 hotel-shopping 1 -111000100 1,514,000-unit 1 -111000100 hardware-industry 1 -111000100 58-month 1 -111000100 landslide-prone 1 -111000100 three-inch-high 1 -111000100 domedshaped 1 -111000100 five-to-six-year 1 -111000100 2.3-year 1 -111000100 heretofore-undisclosed 1 -111000100 rental-building 1 -111000100 post-1956 1 -111000100 savings-club 1 -111000100 54-31 1 -111000100 71-21 1 -111000100 230-183 1 -111000100 7.5-square-mile 1 -111000100 cross-cultural-multimedia 1 -111000100 quasi-scientific 1 -111000100 propulsion-system 1 -111000100 242-190 1 -111000100 Reuter-Niefer 1 -111000100 mother-like 1 -111000100 doglike 1 -111000100 teen-crazed 1 -111000100 90,000-square-mile 1 -111000100 263-155 1 -111000100 high-radiation 1 -111000100 Hindu-run 1 -111000100 752-180 1 -111000100 Bahamian-government 1 -111000100 level-playing 1 -111000100 388-16 1 -111000100 quadratic 1 -111000100 real-grass 1 -111000100 high-walled 1 -111000100 210-foot 1 -111000100 369-48 1 -111000100 breast-pocket 1 -111000100 two-mile-wide 1 -111000100 blooped 1 -111000100 techncial 1 -111000100 3.3-year 1 -111000100 130-home 1 -111000100 municipal-garbage 1 -111000100 .366 1 -111000100 43-41 1 -111000100 50-25 1 -111000100 salmon-rich 1 -111000100 1197-to-1156 1 -111000100 spacesuit-like 1 -111000100 military-built 1 -111000100 250,000-square-foot 1 -111000100 226-168 1 -111000100 52.28-point 1 -111000100 U.N.-supervised 1 -111000100 oil-options 1 -111000100 cocaine-possession 1 -111000100 planetarium-like 1 -111000100 trading-symbol 1 -111000100 single-known 1 -111000100 tight-wire 1 -111000100 firefly-lit 1 -111000100 392-9 1 -111000100 Merrill-controlled 1 -111000100 tax-rate/terms-of-trade 1 -111000100 92-2 1 -111000100 dynamite-filled 1 -111000100 statehouse-steps 1 -111000100 panic-disorder 1 -111000100 450-mile-wide 1 -111000100 Polish-government 1 -111000100 public-services 1 -111000100 two-layer 1 -111000100 17-12 1 -111000100 112-acre 1 -111000100 gasoline-options 1 -111000100 30-0 1 -111000100 lunar-style 1 -111000100 police-state-type 1 -111000100 home-recording 1 -111000100 one-eighth-mile 1 -111000100 Fahmy-Tota 1 -111000100 homestead-equity 1 -111000100 trust-account 1 -111000100 low-gravity 1 -111000100 limestone-and-glass 1 -111000100 callin 1 -111000100 202-197 1 -111000100 Ford-type 1 -111000100 worker/computer 1 -111000100 246-171 1 -111000100 231-183 1 -111000100 black-ink 1 -111000100 12-pond 1 -111000100 365-49 1 -111000100 407-5 1 -111000100 1-to-8 1 -111000100 human-operated 1 -111000100 3,000-case 1 -111000100 public-approval 1 -111000100 16-5 1 -111000100 two-night 1 -111000100 equity-issue 1 -111000100 near-sidearm-throwing 1 -111000100 lofty-sounding 1 -111000100 child-sized 1 -111000100 12week 1 -111000100 twist-off 1 -111000100 parasite-borne 1 -111000100 nuclear-detonation-free 1 -111000100 twee 1 -111000100 30-city 1 -111000100 24.54-point 1 -111000100 bee-and-honeycomb 1 -111000100 125-day-old 1 -111000100 1/8-size 1 -111000100 2,000-year 1 -111000100 cancerlike 1 -111000100 nuclear-arms-free 1 -111000100 money-trading 1 -111000100 loan-booking 1 -111000100 145-acre 1 -111000100 fire-ant 1 -111000100 mountain-fringed 1 -111000100 chemical-weapons-free 1 -111000100 gentle-spirited 1 -111000100 6.6-million-unit 1 -111000100 subway-tunnel 1 -111000100 garbage-strewn 1 -111000100 less-than-orthodox 1 -111000100 pro-Nimrod 1 -111000100 48month 1 -111000100 rust-bowl 1 -111000100 post-nuclear-war 1 -111000100 junk-securities 1 -111000100 2,200-acre 1 -111000100 Crosby-Hope 1 -111000100 sleety 1 -111000100 six-to-nine-month 1 -111000100 four-country 1 -111000100 low-roofed 1 -111000100 high-school-equivalency 1 -111000100 double-fisted 1 -111000100 bleak-looking 1 -111000100 pearllike 1 -111000100 quarterly-tax 1 -111000100 575-room 1 -111000100 since-ended 1 -111000100 reductionist 1 -111000100 business-size 1 -111000100 seventh-inning 1 -111000100 103-unit 1 -111000100 28-by-11-mile 1 -111000100 Dunlap-Robison 1 -111000100 startling-orange 1 -111000100 housing-starved 1 -111000100 church-sanctioned 1 -111000100 1,255,000-unit 1 -111000100 asset-size 1 -111000100 40,000-pound 1 -111000100 Windhaven 1 -111000100 busines 1 -111000100 smelt-like 1 -111000100 184-day 1 -111000100 slowing-down 1 -111000100 butterfly-sighting 1 -111000100 yen-appreciation 1 -111000100 nonjury 1 -111000100 66-point 1 -111000100 postoperative 1 -111000100 1,245,000-unit 1 -111000100 1,833,000-unit 1 -111000100 industrial-comeback 1 -111000100 62-37 1 -111000100 bidder-owned 1 -111000100 automobile-hauler 1 -111000100 229-187 1 -111000100 950,000-metric 1 -111000100 27.5-miles-per-gallon 1 -111000100 Fed-induced 1 -111000100 government-enforced 1 -111000100 one-act-play 1 -111000100 230-190 1 -111000100 193-185 1 -111000100 26-acre 1 -111000100 royal-blue 1 -111000100 land-mine 1 -111000100 turntable-mounted 1 -111000100 tin-and-plywood 1 -111000100 Braves-Cardinals 1 -111000100 '30s-type 1 -111000100 258-153 1 -111000100 402-6 1 -111000100 388-5 1 -111000100 stamp-cancellation 1 -111000100 12-12 1 -111000100 none-too-steady 1 -111000100 Moonie-sponsored 1 -111000100 1,599,000-unit 1 -111000100 449,000-unit 1 -111000100 1,250,000-unit 1 -111000100 45-5 1 -111000100 25-24 1 -111000100 50,000-word 1 -111000100 CIA-led 1 -111000100 dying-second 1 -111000100 3.6-mile-long 1 -111000100 two-gallery 1 -111000100 state-prison 1 -111000100 U.N.-brokered 1 -111000100 silk-smooth-dealing 1 -111000100 multi-plant 1 -111000100 10-ring 1 -111000100 14,000-pipe 1 -111000100 fear-testing 1 -111000100 five-line 1 -111000100 21-7 1 -111000100 most-costly 1 -111000100 97-acre 1 -111000100 36-car 1 -111000100 52-to-47 1 -111000100 Ruinous 1 -111000100 40-card 1 -111000100 female-only 1 -111000100 squid-cleaning 1 -111000100 multiple-personality 1 -111000100 burgundy-striped 1 -111000100 dead-animal 1 -111000100 poor-country 1 -111000100 Wednesday-afternoon 1 -111000100 mud-slick 1 -111000100 neo-fundamentalist 1 -111000100 sage-covered 1 -111000100 nine-million-unit 1 -111000100 ship-turning 1 -111000100 small-arena 1 -111000100 12th-place 1 -111000100 squad-car 1 -111000100 weapons-possession 1 -111000100 1,129,000-unit 1 -111000100 1,477,000-unit 1 -111000100 1973-1975 1 -111000100 big-ship 1 -111000100 computer-tinkering 1 -111000100 soul-music 1 -111000100 2.25-percentage-point 1 -111000100 banking-service 1 -111000100 red-leather 1 -111000100 hiring-and-wage 1 -111000100 Chernobyl-size 1 -111000100 pressure-packed 1 -111000100 preleukemic 1 -111000100 Nativity 1 -111000100 tank-free 1 -111000100 tristate 1 -111000100 spur-like 1 -111000100 16-4 1 -111000100 log-sorting 1 -111000100 August-to-October 1 -111000100 tiger-striped 1 -111000100 blame-the-other-guy 1 -111000100 musette 1 -111000100 superconductor-exploitation 1 -111000100 six-square-mile 1 -111000100 16-inch-high 1 -111000100 caramel-pecan 1 -111000100 365-18 1 -111000100 schedule-making 1 -111000100 big-hype 1 -111000100 year.The 1 -111000100 millenary 1 -111000100 century-mark 1 -111000100 Simms-to-Manuel 1 -111000100 79,000-barrel 1 -111000100 foreign-tax-credit 1 -111000100 22-8 1 -111000100 laundrysoap 1 -111000100 not-too-calm 1 -111000100 gut-string 1 -111000100 dinosauric 1 -111000100 10-degree 1 -111000100 stock-form 1 -111000100 Kabul-backed 1 -111000100 script-to-screen 1 -111000100 73-second 1 -111000100 48/64-inch 1 -111000100 23-yard 1 -111000100 welfare-use 1 -111000100 softening-up 1 -111000100 1,893,000-unit 1 -111000100 less-detailed 1 -111000100 2.09-square-mile 1 -111000100 seven-seven 1 -111000100 Ford-style 1 -111000100 security-inducing 1 -111000100 now-past 1 -111000100 1,486,000 1 -111000100 20/64th-inch 1 -111000100 lengthly 1 -111000100 12-6 1 -111000100 45-acre 1 -111000100 no-parking 1 -111000100 111-acre 1 -111000100 multimilllion-dollar 1 -111000100 4,000-acre 1 -111000100 drug-discovery 1 -111000100 soil-rejuvenation 1 -111000100 triple-whammy 1 -111000100 better-directed 1 -111000100 Triangle-controlled 1 -111000100 chestnut-sized 1 -111000100 new-works 1 -111000100 once-swaggering 1 -111000100 justice-seeking 1 -111000100 crosswind 1 -111000100 incentive-induced 1 -111000100 moisture-absorbing 1 -111000100 Southern-timberland 1 -111000100 55/64-inch 1 -111000100 445,000-job 1 -111000100 Communist-backed 1 -111000100 2,000-square-mile 1 -111000100 U.S.engineered 1 -111000100 television-oriented 1 -111000100 Muppet-based 1 -111000100 product-packaging 1 -111000100 46-acre 1 -111000100 user-interactive 1 -111000100 free-fire 1 -111000100 shipping-industry 1 -111000100 100-foot-wide 1 -111000100 quasifinancial 1 -111000100 47-to-1 1 -111000100 near-biblical 1 -111000100 five-to-three 1 -111000100 382-26 1 -111000100 sewer-dwelling 1 -111000100 rejection-letter 1 -111000100 3-o'clock-in-the-morning 1 -111000100 grinding-it-out 1 -111000100 seven-square-mile 1 -111000100 knuckleball 1 -111000100 high-yen-induced 1 -111000100 yen-appreciation-induced 1 -111000100 mail-ballot 1 -111000100 knit-pink 1 -111000100 supermarket-warehouse 1 -111000100 1,326,000 1 -111000100 silver-backed 1 -111000100 point-of-order 1 -111000100 9/64-inch 1 -111000100 saddle-shaped 1 -111000100 200-square-mile 1 -111000100 halfsize 1 -111000100 land-reclamation 1 -111000100 crumpled-up 1 -111000100 album-liner 1 -111000100 company-and 1 -111000100 rumorfilled 1 -111000100 16.73-point 1 -111000100 company-guaranteed 1 -111000100 quite-literal 1 -111000100 233-171 1 -111000100 900-acre 1 -111000100 one-in-a-billion 1 -111000100 9-by-11-inch 1 -111000100 brass-bullet-and-hip-boots 1 -111000100 budget-cut 1 -111000100 1,360-foot-long 1 -111000100 donkey-pulled 1 -111000100 U.S.style 1 -111000100 slack-stringed 1 -111000100 50-yard-by-85-foot 1 -111000100 30/64inch 1 -111000100 47-day-old 1 -111000100 107-word 1 -111000100 10-4 1 -111000100 budget-hotel 1 -111000100 meet-the-people 1 -111000100 60-29 1 -111000100 Zhongguancun 1 -111000100 68-24 1 -111000100 summercamp 1 -111000100 securities-settlements 1 -111000100 700-bed 1 -111000100 strobe-lighted 1 -111000100 231-185 1 -111000100 hemoglobin-based 1 -111000100 brief-but-woeful 1 -111000100 brushy 1 -111000100 470-foot 1 -111000100 defense/international 1 -111000100 four-county 1 -111000100 rear-sliding 1 -111000100 men's-room 1 -111000100 quasi-corporate 1 -111000100 633-acre 1 -111000100 58-yard 1 -111000100 56-yard 1 -111000100 war-head 1 -111000100 sometimes-tense 1 -111000100 4.5-acre 1 -111000100 price-for-performance 1 -111000100 277-104 1 -111000100 schoolmarmish 1 -111000100 Southwestern-style 1 -111000100 20-3 1 -111000100 cost-reallocation 1 -111000100 carrot-without-the-stick 1 -111000100 96-hour 1 -111000100 midnight-Sunday 1 -111000100 capital-scarce 1 -111000100 crude-producing 1 -111000100 750-room 1 -111000100 328-90 1 -111000100 water-baseball 1 -111000100 cowelled 1 -111000100 grease-streaked 1 -111000100 policy-holder-owned 1 -111000100 bull's-eye-like 1 -111000100 March-inspired 1 -111000100 baby-voiced 1 -111000100 678-acre 1 -111000100 data-transfer 1 -111000100 bribery-extortion 1 -111000100 30-block 1 -111000100 French-franc 1 -111000100 278-143 1 -111000100 143-1 1 -111000100 agency-merger 1 -111000100 concert-quality 1 -111000100 379-word 1 -111000100 Lakers-Celtics 1 -111000100 tea-box 1 -111000100 234-180 1 -111000100 62-28 1 -111000100 government-only 1 -111000100 72-mile-an-hour 1 -111000100 Houstonlike 1 -111000100 58-40 1 -111000100 walnut-size 1 -111000100 seven-to-10-year 1 -111000100 22-5 1 -111000100 geodesic 1 -111000100 15/64-inch 1 -111000100 big-hit 1 -111000100 pea-sized 1 -111000100 30-foot-deep 1 -111000100 primary-campaign 1 -111000100 niche-marketing 1 -111000100 six-sevenths 1 -111000100 rifleshot 1 -111000100 double-A-minus-rated 1 -111000100 more-vibrant 1 -111000100 clean-room 1 -111000100 20-or-30-year 1 -111000100 gold-ore-program 1 -111000100 seven-floor 1 -111000100 greatest-hits 1 -111000100 284-272 1 -111000100 Russocentric 1 -111000100 405-11 1 -111000100 toothed 1 -111000100 hotel-cum-casino-cum-convention 1 -111000100 twin-hull 1 -111000100 black-browed 1 -111000100 dial-a-cargo 1 -111000100 4,500-employee 1 -111000100 foot-square 1 -111000100 Mamluk 1 -111000100 potholeless 1 -111000100 grocery-industry 1 -111000100 reggae-music 1 -111000100 bank-merger 1 -111000100 1,404,000 1 -111000100 10-to-6 1 -111000100 show-stopping 1 -111000100 farm-injury 1 -111000100 7,450,000-unit 1 -111000100 Teamsters-led 1 -111000100 12-year-long 1 -111000100 fast-receding 1 -111000100 30-acre 1 -111000100 35-city 1 -111000100 357,000-acre 1 -111000100 81-9 1 -111000100 mortgage-gain 1 -111000100 S-shaped 1 -111000100 high-seas 1 -111000100 36-exposure 1 -111000100 Chinese-sauce 1 -111000100 single-vineyard 1 -111000100 Paitilla 1 -111000100 Farmbelt 1 -111000100 2.7-million-square-foot 1 -111000100 used-plane 1 -111000100 38-12 1 -111000100 30-20 1 -111000100 27-23 1 -111000100 paper-bleaching 1 -111000100 five-mile-high 1 -111000100 15-cents-a-pound 1 -111000100 great-quality 1 -111000100 gas-meter 1 -111000100 vendor-independent 1 -111000100 23,000-acre 1 -111000100 77-pace 1 -111000100 thousand-point 1 -111000100 European-led 1 -111000100 pro-pension 1 -111000100 food-standards 1 -111000100 10-block 1 -111000100 1,041-to-967 1 -111000100 22-18 1 -111000100 five-pendant 1 -111000100 neutrino-sized 1 -111000100 forced-notification 1 -111000100 hazing-by-shouting-match 1 -111000100 higher-stakes 1 -111000100 184-foot 1 -111000100 21-week-old 1 -111000100 74-8 1 -111000100 Rich-affiliated 1 -111000100 brunet 1 -111000100 9-8 1 -111000100 most-sustained 1 -111000100 1,050-foot 1 -111000100 eightmonth 1 -111000100 14,000-acre 1 -111000100 consensus-run 1 -111000100 strawvote 1 -111000100 17-state 1 -111000100 237-183 1 -111000100 country-inn 1 -111000100 still-simmering 1 -111000100 133-foot 1 -111000100 27-picture 1 -111000100 toy-gun 1 -111000100 deeper-than-desired 1 -111000100 colored-group 1 -111000100 stable-currency 1 -111000100 drop-away 1 -111000100 locked-up 1 -111000100 head-counting 1 -111000100 family-conflict 1 -111000100 5000E 1 -111000100 368-58 1 -111000100 win-at-any-cost 1 -111000100 cowl-like 1 -111000100 loosey-goosey 1 -111000100 37-month 1 -111000100 cycle-ending 1 -111000100 theater-management 1 -111000100 look-to-the-future 1 -111000100 24-acre 1 -111000100 five-blade 1 -111000100 shaking-out 1 -111000100 taragon 1 -111000100 climatological 1 -111000100 278-142 1 -111000100 three-book 1 -111000100 630-acre 1 -111000100 1.09-inch 1 -111000100 20-to-30-year 1 -111000100 headup 1 -111000100 preconference 1 -111000100 109-inch 1 -111000100 900-square-foot 1 -111000100 kid-goes-back-in-time 1 -111000100 Nazi-sympathizing 1 -111000100 prohibition-style 1 -111000100 plant-wide 1 -111000100 six-inch-square 1 -111000100 semi-controlled 1 -111000100 32-9 1 -111000100 4922 1 -111000100 376-26 1 -111000100 212-point 1 -111000100 220-acre 1 -111000100 company-called 1 -111000100 10-blade 1 -111000100 Cheerios-brand 1 -111000100 307-98 1 -111000100 boat-rental 1 -111000100 budget-line 1 -111000100 1928-1937 1 -111000100 blue-carpeted 1 -111000100 mini-dust 1 -111000100 13-day-old 1 -111000100 business-segment 1 -111000100 20-inch-diameter 1 -111000100 capital-surplus 1 -111000100 well-watered 1 -111000100 60-foot-tall 1 -111000100 mood-type 1 -111000100 crude-product 1 -111000100 low-involvement 1 -111000100 circle-the-wagon 1 -111000100 post-liberal 1 -111000100 torpedo-shaped 1 -111000100 400-foot 1 -111000100 not-sufficient-funds 1 -111000100 sunless 1 -111000100 still-unannounced 1 -111000100 systems-management 1 -111000100 721-step 1 -111000100 thrift-like 1 -111000100 water-flood 1 -111000100 rectractable 1 -111000100 271-234 1 -111000100 57,000-acre 1 -111000100 third-straight 1 -111000100 back-burner 1 -111000100 nine-phone-number 1 -111000100 many-storied 1 -111000100 string-of-pearls 1 -111000100 six-foot-wide 1 -111000100 343-54 1 -111000100 93-2 1 -111000100 15-ounce 1 -111000100 timber-supply 1 -111000100 photoconductive 1 -111000100 301-96 1 -111000100 600-voice 1 -111000100 pot-holed 1 -111000100 subway-station 1 -111000100 15-by-20-foot 1 -111000100 rammed-shut 1 -111000100 non-accessible 1 -111000100 car-driving 1 -111000100 palm-thatched 1 -111000100 concrete-coated 1 -111000100 street-lamp-dotted 1 -111000100 podunk 1 -111000100 six-horse 1 -111000100 war-adventure 1 -111000100 big-mouthed 1 -111000100 56.53-point 1 -111000100 26-month 1 -111000100 Pirates-Mets 1 -111000100 once-idyllic 1 -111000100 herd-like 1 -111000100 consumer-fueled 1 -111000100 Formica-topped 1 -111000100 two-out 1 -111000100 9,500-worker 1 -111000100 summer-sports 1 -111000100 126-game 1 -111000100 6-all 1 -111000100 goose-feather 1 -111000100 9/32-inch 1 -111000100 75-15 1 -111000100 91-3 1 -111000100 7/32-inch 1 -111000100 52-unit 1 -111000100 bone-deteriorating 1 -111000100 Manteca 1 -111000100 thump-on-the-back 1 -111000100 hotel-conference 1 -111000100 6,000-square-foot 2 -111000100 breezeless 2 -111000100 400-year 2 -111000100 68-cent 2 -111000100 CFIUS 2 -111000100 4,600-foot 2 -111000100 nine-pound 2 -111000100 menu-like 2 -111000100 17/64-inch 2 -111000100 city-wide 2 -111000100 peace-seeking 2 -111000100 backbench 2 -111000100 secrecy-shrouded 2 -111000100 750-acre 2 -111000100 sad-eyed 2 -111000100 28-month-old 2 -111000100 parent-child 2 -111000100 single-scale 2 -111000100 government-issue 2 -111000100 stage-by-stage 2 -111000100 30-12 2 -111000100 world-competitive 2 -111000100 company-imposed 2 -111000100 post-baby 2 -111000100 business-cost 2 -111000100 25-month 2 -111000100 neverending 2 -111000100 cardinal-red 2 -111000100 Plexiglas 2 -111000100 35,000-square-foot 2 -111000100 80/64-inch 2 -111000100 416-2 2 -111000100 108-day 2 -111000100 public-audit 2 -111000100 creative-writing 2 -111000100 28/64-inch 2 -111000100 12-10 2 -111000100 three-quarter-inch 2 -111000100 '30s-style 2 -111000100 birch-paneled 2 -111000100 trident 2 -111000100 silver-plated 2 -111000100 1,500-acre 2 -111000100 five-piece 2 -111000100 long-enough 2 -111000100 12-volume 2 -111000100 25-mile 2 -111000100 200-foot 2 -111000100 15,000-foot 2 -111000100 17-story 2 -111000100 38-to-4 2 -111000100 104-year-old 2 -111000100 ridge-top 2 -111000100 Grieg 2 -111000100 125-mile-wide 2 -111000100 21-acre 2 -111000100 sight-and-sound 2 -111000100 Swiss-cheese 2 -111000100 ripsnorting 2 -111000100 tax-rule 2 -111000100 Bush-Salinas 2 -111000100 600,000-ton 2 -111000100 then-princely 2 -111000100 six-city 2 -111000100 fast-fading 2 -111000100 plantwide 2 -111000100 Hessian 2 -111000100 four-foot-tall 2 -111000100 20-city 2 -111000100 horror-movie 2 -111000100 union-free 2 -111000100 late-starting 2 -111000100 20-14 2 -111000100 gold-recovery 2 -111000100 two-block 2 -111000100 1,200-year-old 2 -111000100 42-acre 2 -111000100 nine-nation 2 -111000100 well-thumbed 2 -111000100 257-160 2 -111000100 12-5 2 -111000100 news-conference 2 -111000100 seven-foot-high 2 -111000100 30-mile-long 2 -111000100 377-40 2 -111000100 fivemonth 2 -111000100 morning-long 2 -111000100 1,000-seat 2 -111000100 quite-different 2 -111000100 voguish 2 -111000100 5-foot-4-inch 2 -111000100 union-hall 2 -111000100 27-unit 2 -111000100 four-week-old 2 -111000100 Chernobyl-like 2 -111000100 four-horse 2 -111000100 military-band 2 -111000100 1984-1987 2 -111000100 pyrrhic 2 -111000100 15-yard 2 -111000100 bench-clearing 2 -111000100 multiplayer 2 -111000100 safety-deposit 2 -111000100 marble-floored 2 -111000100 1977-80 2 -111000100 stress-relieving 2 -111000100 marijuana-smoking 2 -111000100 father-daughter 2 -111000100 roll-up-your-sleeves 2 -111000100 still-continuing 2 -111000100 banana-shaped 2 -111000100 wide-angle 2 -111000100 pen-like 2 -111000100 five-stage 2 -111000100 chromosomal 2 -111000100 policy-oriented 2 -111000100 Boeing-Aloha 2 -111000100 Pohnpeian 2 -111000100 direct-satellite 2 -111000100 48-year 2 -111000100 rifle-shot 2 -111000100 chichi 2 -111000100 cadaverous 2 -111000100 1,000-rupee 2 -111000100 screwed-up 2 -111000100 50-plus 2 -111000100 non-Christian 2 -111000100 three-night 2 -111000100 nine-week-old 2 -111000100 44-country 2 -111000100 nonsubstantive 2 -111000100 59-page 2 -111000100 Soviet-financed 2 -111000100 10-city 2 -111000100 gap-filling 2 -111000100 beauty-shop 2 -111000100 230-176 2 -111000100 yet-undetermined 2 -111000100 31-week 2 -111000100 long-studied 2 -111000100 best-of-five 2 -111000100 12year 2 -111000100 100-foot-long 2 -111000100 never-changing 2 -111000100 voter-approved 2 -111000100 fixed-fee 2 -111000100 dang 2 -111000100 17-2 2 -111000100 14-page 2 -111000100 reproportioned 2 -111000100 clubbish 2 -111000100 109-day 2 -111000100 70-square-mile 2 -111000100 40-month 2 -111000100 90-mile 2 -111000100 slaveholding 2 -111000100 jitterbugging 2 -111000100 13-concert 2 -111000100 cost-performance 2 -111000100 12-1 2 -111000100 seven-course 2 -111000100 32-week 2 -111000100 financial-advertising 2 -111000100 20-ounce 2 -111000100 staff-prepared 2 -111000100 book-lined 2 -111000100 tug-of-love 2 -111000100 two-decade-long 2 -111000100 1-to-5 2 -111000100 porch-bound 2 -111000100 76-8 2 -111000100 144-acre 2 -111000100 safety-oriented 2 -111000100 several-year 2 -111000100 200,000-ton 2 -111000100 thimble-sized 2 -111000100 catatonic 2 -111000100 coca-growing 2 -111000100 213-201 2 -111000100 bighorn-sheep 2 -111000100 two-wheeled 2 -111000100 three-decade-long 2 -111000100 32/64-inch 2 -111000100 disability-pay 2 -111000100 picture-book 2 -111000100 6-to-3 2 -111000100 pleasant-faced 2 -111000100 pre-1979 2 -111000100 college-hoops 2 -111000100 .30-.30 2 -111000100 pre-historic 2 -111000100 26-22 2 -111000100 under-40 2 -111000100 22-inch 2 -111000100 43-mile 2 -111000100 pint-size 2 -111000100 post-nuclear 2 -111000100 3-foot-high 2 -111000100 semiprivate 2 -111000100 Fiji-style 2 -111000100 15-square-foot 2 -111000100 whacked-out 2 -111000100 hiccuping 2 -111000100 one-megabyte 2 -111000100 4,500-acre 2 -111000100 3,000-seat 2 -111000100 seven-month-long 2 -111000100 120-acre 2 -111000100 management-friendly 2 -111000100 fighter-jet 2 -111000100 snap-brim 2 -111000100 out-of-school 2 -111000100 now-routine 2 -111000100 261-160 2 -111000100 wrong-way 2 -111000100 fuel-storage 2 -111000100 travel-agent 2 -111000100 114-day 2 -111000100 157-acre 2 -111000100 286-unit 2 -111000100 1,493,000-unit 2 -111000100 33-month 2 -111000100 7,000-foot 2 -111000100 rain-swollen 2 -111000100 single-topic 2 -111000100 312-107 2 -111000100 union-organized 2 -111000100 20-business-day 3 -111000100 lighter-than-expected 3 -111000100 250-acre 3 -111000100 26-volume 3 -111000100 13-mile 3 -111000100 highest-grade 3 -111000100 late-spring 3 -111000100 130-year-old 3 -111000100 stock-owned 3 -111000100 12-4 3 -111000100 six-session 3 -111000100 post-arms-control 3 -111000100 20-nation 3 -111000100 threeyear 3 -111000100 three-week-long 3 -111000100 tuition-free 3 -111000100 foamy 3 -111000100 yet-unnamed 3 -111000100 Euroconvertible 3 -111000100 steady-state 3 -111000100 remote-controlled 3 -111000100 10-10 3 -111000100 show-me 3 -111000100 lilting 3 -111000100 Sevres 3 -111000100 don't-tread-on-me 3 -111000100 15-mile 3 -111000100 26.2-mile 3 -111000100 low-commission 3 -111000100 nerve-wracking 3 -111000100 52-mile 3 -111000100 three-and-a-half-year 3 -111000100 17-1 3 -111000100 5,000-meter 3 -111000100 7,000-seat 3 -111000100 Romanian-built 3 -111000100 pro-disarmament 3 -111000100 jeweled 3 -111000100 20-13 3 -111000100 joint-manufacturing 3 -111000100 500,000-ton 3 -111000100 home-plate 3 -111000100 Sunday-afternoon 3 -111000100 33-acre 3 -111000100 fifth-inning 3 -111000100 pixieish 3 -111000100 vehicle-manufacturing 3 -111000100 Book-of-the-Month-Club 3 -111000100 30-foot-high 3 -111000100 too-small 3 -111000100 percussive 3 -111000100 postage-paid 3 -111000100 three-city 3 -111000100 17-foot 3 -111000100 pain-relieving 3 -111000100 1,000-foot 3 -111000100 one-shift 3 -111000100 225-mile 3 -111000100 Grawemeyer 3 -111000100 39-month 3 -111000100 10-megawatt 3 -111000100 light-colored 3 -111000100 stone-age 3 -111000100 fourmonth 3 -111000100 2.5-mile 3 -111000100 27-month 3 -111000100 limited-liability 3 -111000100 one-track 3 -111000100 seven-part 3 -111000100 four-team 3 -111000100 1,000-pound 3 -111000100 50-foot-high 3 -111000100 pauper 3 -111000100 rough-edged 3 -111000100 TV-like 3 -111000100 half-mile-long 3 -111000100 minoxidil-based 3 -111000100 44-year 3 -111000100 highest-stakes 3 -111000100 nonissue 3 -111000100 42-month 3 -111000100 British-French 3 -111000100 civilian-run 3 -111000100 23-day 3 -111000100 360-degree 3 -111000100 31-day 3 -111000100 long-hitting 3 -111000100 bad-cop 3 -111000100 63-36 3 -111000100 25-point 3 -111000100 Hiroshima-Nagasaki 3 -111000100 24-foot 3 -111000100 multi-agency 3 -111000100 36-day 3 -111000100 bad-tempered 3 -111000100 surefire 3 -111000100 hieroglyphic 3 -111000100 multicentered 3 -111000100 threeweek 3 -111000100 165-seat 3 -111000100 profit-boosting 3 -111000100 pre-Broadway 3 -111000100 scabrous 3 -111000100 once-in-a-generation 3 -111000100 Hobbesian 3 -111000100 many-splendored 3 -111000100 111-day 3 -111000100 summer-long 3 -111000100 onemonth 3 -111000100 10/64-inch 3 -111000100 Texaco-Icahn 3 -111000100 Philippines-style 3 -111000100 96-day 3 -111000100 41-store 3 -111000100 Monday-night 4 -111000100 fiveyear 4 -111000100 one-woman 4 -111000100 60-minute 4 -111000100 four-mile 4 -111000100 21-point 4 -111000100 53-mile 4 -111000100 heat-treatment 4 -111000100 longawaited 4 -111000100 XJ-6 4 -111000100 crochet 4 -111000100 multivolume 4 -111000100 multifranchise 4 -111000100 whispery 4 -111000100 multination 4 -111000100 56-42 4 -111000100 juried 4 -111000100 29-day 4 -111000100 31-month 4 -111000100 130-day 4 -111000100 control-share 4 -111000100 380-25 4 -111000100 three-game 4 -111000100 chemical-free 4 -111000100 trading-range 4 -111000100 launch-pad 4 -111000100 12-state 4 -111000100 248-day 4 -111000100 fouryear 4 -111000100 cross-state 4 -111000100 58-day 4 -111000100 40-cent-a-share 4 -111000100 studio-tour 4 -111000100 9-3 4 -111000100 17-minute 4 -111000100 55-day 4 -111000100 nudist 4 -111000100 twoyear 4 -111000100 sealed-bid 4 -111000100 late-year 4 -111000100 innoculation 4 -111000100 fullfledged 4 -111000100 3,303-room 4 -111000100 19-1 4 -111000100 phase-one 4 -111000100 32-hour 4 -111000100 48-month 4 -111000100 150-day 4 -111000100 TV-movie 4 -111000100 music-theater 4 -111000100 25,000-pound 4 -111000100 conference-room 4 -111000100 man-eating 4 -111000100 cost-price 4 -111000100 five-day-old 4 -111000100 five-county 4 -111000100 98-day 4 -111000100 longer-than-normal 4 -111000100 Republican-led 4 -111000100 75-minute 4 -111000100 three-day-old 4 -111000100 nonnegotiable 4 -111000100 33-story 4 -111000100 38-year 4 -111000100 Fireman's-Geico 4 -111000100 seven-week-old 4 -111000100 20-acre 4 -111000100 14/64-inch 4 -111000100 pro-Reagan 4 -111000100 quasi 4 -111000100 nonconfrontational 4 -111000100 70-minute 4 -111000100 weapons-acquisition 4 -111000100 peak-demand 5 -111000100 civilian-military 5 -111000100 Chernobyl-style 5 -111000100 150-foot 5 -111000100 pitch-black 5 -111000100 second-round 5 -111000100 hot-blooded 5 -111000100 three-block 5 -111000100 just-published 5 -111000100 quasi-religious 5 -111000100 45-second 5 -111000100 communist-led 5 -111000100 two-car 5 -111000100 contract-related 5 -111000100 46-day 5 -111000100 shapeless 5 -111000100 take-no-prisoners 5 -111000100 post-Deng 5 -111000100 shoelace 5 -111000100 stop-Jackson 5 -111000100 long-pending 5 -111000100 non-jury 5 -111000100 tariff-reduction 5 -111000100 clamorous 5 -111000100 60-year 5 -111000100 13-point 5 -111000100 three-phase 5 -111000100 mousy 5 -111000100 22/64-inch 5 -111000100 still-unfinished 5 -111000100 three-digit 5 -111000100 high-consumption 5 -111000100 3,000-acre 5 -111000100 16/64-inch 5 -111000100 two-game 5 -111000100 free-trading 5 -111000100 trash-can 5 -111000100 pre-programmed 5 -111000100 much-feared 5 -111000100 17-week 5 -111000100 28-month 5 -111000100 yuletide 5 -111000100 35-minute 5 -111000100 52-page 5 -111000100 single-aircraft 5 -111000100 600-page 5 -111000100 200-member 5 -111000100 31-mile 5 -111000100 four-minute 5 -111000100 French-American 5 -111000100 35-hour 5 -111000100 seven-game 5 -111000100 barebones 5 -111000100 two-foot 5 -111000100 three-nation 5 -111000100 half-billion-dollar 5 -111000100 10,000-acre 5 -111000100 gauzy 5 -111000100 seven-point 5 -111000100 24-day 5 -111000100 take-charge 5 -111000100 grittier 5 -111000100 2,000-acre 5 -111000100 50-acre 5 -111000100 death-defying 5 -111000100 26-mile 5 -111000100 22-acre 5 -111000100 200-year 6 -111000100 60-mile 6 -111000100 cleaned-up 6 -111000100 19-month-old 6 -111000100 six-state 6 -111000100 70-day 6 -111000100 49-day 6 -111000100 32-page 6 -111000100 70-year 6 -111000100 22-week 6 -111000100 300-mile 6 -111000100 three-session 6 -111000100 pro-Sandinista 6 -111000100 100-yard 6 -111000100 42-day 6 -111000100 60-page 6 -111000100 58-42 6 -111000100 five-part 6 -111000100 multipart 6 -111000100 water-filled 6 -111000100 grandiloquent 6 -111000100 three-ounce 6 -111000100 150-acre 6 -111000100 fire-breathing 6 -111000100 six-lane 6 -111000100 second-stage 6 -111000100 full-on 6 -111000100 39-day 6 -111000100 back-slapping 6 -111000100 five-acre 6 -111000100 600-mile 6 -111000100 lowest-rated 6 -111000100 366-day 6 -111000100 61-day 6 -111000100 19-month 6 -111000100 midwinter 6 -111000100 mid-19th-century 6 -111000100 100-acre 6 -111000100 2,000-year-old 6 -111000100 seven-man 6 -111000100 photorefractive 6 -111000100 10-day-old 7 -111000100 50-minute 7 -111000100 two-decade 7 -111000100 one-line 7 -111000100 block-long 7 -111000100 20-page 7 -111000100 300-patient 7 -111000100 13-day 7 -111000100 67-day 7 -111000100 rumor-driven 7 -111000100 45-year 7 -111000100 40-mile 7 -111000100 punk-rock 7 -111000100 six-mile 7 -111000100 true-life 7 -111000100 two-day-old 7 -111000100 99-0 7 -111000100 rollercoaster 7 -111000100 years-long 7 -111000100 bank-stock 7 -111000100 30-week 7 -111000100 60-bed 7 -111000100 1/8-point 8 -111000100 post-deregulation 8 -111000100 43-year 8 -111000100 75-day 8 -111000100 seven-foot 8 -111000100 multicenter 8 -111000100 night-time 8 -111000100 two-pound 8 -111000100 36-hour 8 -111000100 multi-party 8 -111000100 six-point 8 -111000100 22-minute 8 -111000100 little-noted 8 -111000100 first-floor 8 -111000100 quarter-inch 8 -111000100 fixed-mix 8 -111000100 six-part 8 -111000100 five-month-long 8 -111000100 five-mile 8 -111000100 five-session 8 -111000100 drought-inspired 8 -111000100 30-mile 8 -111000100 3-3 8 -111000100 29-month 8 -111000100 rollicking 8 -111000100 pay-back 8 -111000100 gestation 8 -111000100 Saturday-night 8 -111000100 wizened 8 -111000100 100-day 8 -111000100 92-5 8 -111000100 three-stage 8 -111000100 full-throated 8 -111000100 job-guarantee 9 -111000100 one-mile 9 -111000100 100-mile 9 -111000100 57-day 9 -111000100 four-day-old 9 -111000100 50-state 9 -111000100 two-lane 9 -111000100 high-protein 9 -111000100 nine-point 9 -111000100 24-year 9 -111000100 40-acre 9 -111000100 16-foot 9 -111000100 three-tiered 9 -111000100 three-level 9 -111000100 three-week-old 9 -111000100 starry 9 -111000100 four-point 9 -111000100 30-hour 9 -111000100 coffee-table 10 -111000100 jerry-built 10 -111000100 15th-century 10 -111000100 32-month 10 -111000100 three-volume 10 -111000100 3/4-inch 10 -111000100 three-ring 10 -111000100 maximum-security 10 -111000100 13-month 10 -111000100 30-foot 10 -111000100 34-year 10 -111000100 26-day 10 -111000100 17-month 10 -111000100 25-day 10 -111000100 self-congratulatory 10 -111000100 well-oiled 10 -111000100 50-day 10 -111000100 latency 10 -111000100 best-of-seven 10 -111000100 third-floor 10 -111000100 12-page 10 -111000100 ten-year 10 -111000100 mile-long 11 -111000100 150-year-old 11 -111000100 home-town 11 -111000100 21-day 11 -111000100 wage-and-price 11 -111000100 three-minute 11 -111000100 19-day 11 -111000100 moonlit 11 -111000100 two-mile 11 -111000100 dog-eat-dog 11 -111000100 six-week-old 11 -111000100 17-day 11 -111000100 6-5 11 -111000100 hush-hush 12 -111000100 roll-call 12 -111000100 make-or-break 12 -111000100 200-day 12 -111000100 windowless 12 -111000100 nine-hour 12 -111000100 5,000-ounce 12 -111000100 nine-week 12 -111000100 probationary 12 -111000100 congratulatory 12 -111000100 sacrificial 12 -111000100 triennial 12 -111000100 15-foot 12 -111000100 trillion-dollar 12 -111000100 20-month 13 -111000100 40-page 13 -111000100 16-week 13 -111000100 post-Watergate 13 -111000100 21-month 13 -111000100 three-mile 14 -111000100 schoolyard 14 -111000100 conversational 14 -111000100 hair-raising 14 -111000100 seven-month-old 14 -111000100 much-anticipated 14 -111000100 29-year 14 -111000100 12-week 14 -111000100 30-month 14 -111000100 two-week-old 14 -111000100 100-year 15 -111000100 21-year 15 -111000100 Dickensian 15 -111000100 year-and-a-half 15 -111000100 35-year 15 -111000100 200-mile 16 -111000100 lunar 16 -111000100 40-minute 17 -111000100 seven-page 17 -111000100 day-long 17 -111000100 much-heralded 17 -111000100 seven-hour 17 -111000100 six-foot 17 -111000100 half-inch 17 -111000100 one-inch 18 -111000100 40-hour 18 -111000100 27-year 18 -111000100 Martian 18 -111000100 consumer-led 18 -111000100 33-year 18 -111000100 final-hour 19 -111000100 16-day 19 -111000100 16-month 19 -111000100 39-year 19 -111000100 five-hour 19 -111000100 five-month-old 19 -111000100 three-month-old 19 -111000100 five-point 19 -111000100 nine-month-old 20 -111000100 week-long 20 -111000100 15-month 20 -111000100 long-stalled 20 -111000100 fallback 20 -111000100 two-month-old 21 -111000100 zero-sum 21 -111000100 40-day 21 -111000100 28-year 21 -111000100 12-day 21 -111000100 six-hour 22 -111000100 secluded 22 -111000100 14-month 22 -111000100 two-time 22 -111000100 party-line 23 -111000100 sold-out 23 -111000100 26-year 23 -111000100 two-minute 23 -111000100 four-month-old 24 -111000100 helluva 24 -111000100 10-minute 24 -111000100 step-by-step 24 -111000100 ground-breaking 24 -111000100 question-and-answer 25 -111000100 multi-year 25 -111000100 thank-you 25 -111000100 45-minute 26 -111000100 black-tie 26 -111000100 nine-day 26 -111000100 45-day 27 -111000100 six-month-old 27 -111000100 seven-week 27 -111000100 four-part 27 -111000100 veritable 28 -111000100 48-hour 28 -111000100 one-page 28 -111000100 10-week 29 -111000100 20-minute 30 -111000100 17-year 31 -111000100 50-year 31 -111000100 much-touted 32 -111000100 16-year 34 -111000100 daylong 34 -111000100 two-man 36 -111000100 13-year 37 -111000100 30-minute 37 -111000100 15-day 38 -111000100 cavernous 40 -111000100 decade-long 41 -111000100 post-war 41 -111000100 15-minute 42 -111000100 five-nation 44 -111000100 90-minute 44 -111000100 five-week 44 -111000100 month-long 45 -111000100 four-hour 46 -111000100 post-election 47 -111000100 20-day 48 -111000100 little-noticed 52 -111000100 seven-month 52 -111000100 maiden 55 -111000100 nine-year 58 -111000100 one-week 59 -111000100 6-3 62 -111000100 handwritten 64 -111000100 cautionary 65 -111000100 10-month 66 -111000100 four-week 66 -111000100 nuclear-free 66 -111000100 six-week 72 -111000100 three-part 73 -111000100 six-day 76 -111000100 three-hour 77 -111000100 monthlong 77 -111000100 40-year 78 -111000100 25-year 79 -111000100 14-year 82 -111000100 15-year-old 87 -111000100 one-man 88 -111000100 seven-year-old 93 -111000100 five-month 96 -111000100 weeklong 101 -111000100 two-part 105 -111000100 lone 109 -111000100 three-week 118 -111000100 late-night 120 -111000100 four-month 122 -111000100 five-day 122 -111000100 four-year-old 125 -111000100 90-day 126 -111000100 one-hour 130 -111000100 two-hour 134 -111000100 yearlong 137 -111000100 three-year-old 138 -111000100 perpetual 146 -111000100 one-month 156 -111000100 12-month 158 -111000100 four-day 171 -111000100 60-day 174 -111000100 two-year-old 175 -111000100 12-year 204 -111000100 10-day 218 -111000100 two-month 225 -111000100 15-year 245 -111000100 two-week 267 -111000100 six-year 282 -111000100 20-year 287 -111000100 three-day 296 -111000100 two-day 297 -111000100 postwar 372 -111000100 seven-year 529 -111000100 classic 638 -111000100 four-year 659 -111000100 one-year 1071 -111000100 two-year 1173 -111000100 brief 1378 -111000100 three-year 1459 -111000100 five-year 1882 -111000100 single 3512 -111000100 whole 3729 -111000101 Walker-family 1 -111000101 13-foot-high 1 -111000101 production-ready 1 -111000101 tulip-breaking 1 -111000101 anti-sales-tax 1 -111000101 not-that-complicated 1 -111000101 NBC-initiated 1 -111000101 prescription-drug-benefit 1 -111000101 currency-clearing 1 -111000101 fee-and-cost 1 -111000101 93-nation 1 -111000101 diamond-stud 1 -111000101 Volkswagen-commissioned 1 -111000101 precondemnation 1 -111000101 rights-plan 1 -111000101 stingerless 1 -111000101 now-annual 1 -111000101 easy-to-operate 1 -111000101 26/64 1 -111000101 42,092-ton 1 -111000101 NutraSweet-brand 1 -111000101 army-backed 1 -111000101 multiyear-labor 1 -111000101 steel-restraint 1 -111000101 standard-wage 1 -111000101 early-purchase 1 -111000101 Lisztian 1 -111000101 bond-purchase 1 -111000101 lease-management 1 -111000101 40,000-square-foot 1 -111000101 16/64 1 -111000101 corpselike 1 -111000101 process-driven 1 -111000101 MasterCard-Visa 1 -111000101 31-page 1 -111000101 Boeing-Ingersoll 1 -111000101 O'Neill-Reagan 1 -111000101 17/64 1 -111000101 spell-check 1 -111000101 driving-skills 1 -111000101 70-kilowatt 1 -111000101 feudalist 1 -111000101 ABA-ASL 1 -111000101 misstaken 1 -111000101 flip-top 1 -111000101 2,955 1 -111000101 job-fitness 1 -111000101 dual-market 1 -111000101 pop-opera 1 -111000101 labor-led 1 -111000101 arms-destruction 1 -111000101 main-table 1 -111000101 far-from-magnificent 1 -111000101 home-cleaning 1 -111000101 noise-control 1 -111000101 122-page 1 -111000101 pilots-machinists 1 -111000101 Intel-Mitsubishi 1 -111000101 blind-trust 1 -111000101 40-patient 1 -111000101 382-12 1 -111000101 zoo-type 1 -111000101 rate-case 1 -111000101 hepatitus-B 1 -111000101 selfimposed 1 -111000101 definitve 1 -111000101 Skandia-Vesta 1 -111000101 made-in-America 1 -111000101 182-seat 1 -111000101 G&S 1 -111000101 248-150 1 -111000101 Republican-sought 1 -111000101 operating-officer 1 -111000101 20-foot-vault 1 -111000101 Lorimar-Warner 1 -111000101 Illinois-Britain 1 -111000101 on-the-street 1 -111000101 soft-gelatin 1 -111000101 joint-agreement 1 -111000101 370-31 1 -111000101 committee-sponsored 1 -111000101 743-page 1 -111000101 Airbus-McDonnell 1 -111000101 57-32 1 -111000101 pre-competitive 1 -111000101 non-prosecution 1 -111000101 ever-so-urbane 1 -111000101 convention-speech 1 -111000101 union-member 1 -111000101 capital-forebearance 1 -111000101 15-0 1 -111000101 left-ear 1 -111000101 sector-rotation 1 -111000101 time-to-market 1 -111000101 training-wage 1 -111000101 shared-custody 1 -111000101 money-for-silence 1 -111000101 aluminum-bonded 1 -111000101 research-sharing 1 -111000101 70-27 1 -111000101 late-quarter 1 -111000101 Jardine's-affiliate 1 -111000101 Anglo-U.S 1 -111000101 Anglo-German 1 -111000101 goody-two-shoes 1 -111000101 track-sharing 1 -111000101 four-seat 1 -111000101 delayed-delivery 1 -111000101 head-over-heels 1 -111000101 Guyanese 1 -111000101 NATO/INF 1 -111000101 Nomura/Kidder 1 -111000101 cabinetlevel 1 -111000101 110-3 1 -111000101 long-negotiated 1 -111000101 few-months-earlier 1 -111000101 teacher-certification 1 -111000101 mixed-class 1 -111000101 almost-constant 1 -111000101 made-in-Geneva 1 -111000101 animal-laboratory 1 -111000101 late-term 1 -111000101 filmlike 1 -111000101 49-45 1 -111000101 AIDS-associated 1 -111000101 military-bases 1 -111000101 semi-patched-up 1 -111000101 hiring-freeze 1 -111000101 rosy-eyed 1 -111000101 U.S.-Honduras 1 -111000101 below-50 1 -111000101 get-out-your-handkerchiefs 1 -111000101 counterpurchase 1 -111000101 open-systems 1 -111000101 pink-rimmed 1 -111000101 burlap-sack-like 1 -111000101 Atari-Amiga 1 -111000101 technology-license 1 -111000101 Saudi-Algerian 1 -111000101 Ovu-Stick 1 -111000101 69-page 1 -111000101 near-general 1 -111000101 minicomputer-based 1 -111000101 beta-test 1 -111000101 GATT-sponsored 1 -111000101 Johnson-Shad 1 -111000101 difinitve 1 -111000101 money-sharing 1 -111000101 loan-limit 1 -111000101 Nefertiti 1 -111000101 heating-equipment 1 -111000101 bullet-holed 1 -111000101 kidney-function 1 -111000101 Steinberg-Disney 1 -111000101 satisfatory 1 -111000101 highmounted 1 -111000101 semi-negative 1 -111000101 242-page 1 -111000101 Enichem-Montedison 1 -111000101 cortisone-based 1 -111000101 GSA-ordered 1 -111000101 tall-antlered 1 -111000101 state-authorized 1 -111000101 pro-Ericsson 1 -111000101 14/64 1 -111000101 air-cushioned 1 -111000101 piano-vocal 1 -111000101 Krylon 1 -111000101 1,355-page 1 -111000101 Amtrak-Conrail 1 -111000101 buy-America 1 -111000101 Allegis-Boeing 1 -111000101 economic-benefits 1 -111000101 smallerscale 1 -111000101 rocket-joint 1 -111000101 Prosperolike 1 -111000101 teenage-boy 1 -111000101 less-than-productive 1 -111000101 apartheid-rules 1 -111000101 TRADE-RETALIATION 1 -111000101 IBM-Lotus 1 -111000101 Skousen-Moonie 1 -111000101 still-unreleased 1 -111000101 just-finished 1 -111000101 145-page 1 -111000101 anti-Cuomo 1 -111000101 licensing-manufacturing 1 -111000101 bi-monthly 1 -111000101 Saudi-engineered 1 -111000101 four-over-par 1 -111000101 Razaleigh-Musa 1 -111000101 secondsourcing 1 -111000101 tourist-home 1 -111000101 budget-and-taxes 1 -111000101 currency-stability 1 -111000101 fare-increase 1 -111000101 straddlers 1 -111000101 Lufthansa-Iberia 1 -111000101 gunny 1 -111000101 racing-room 1 -111000101 109-103 1 -111000101 285-120 1 -111000101 7.5-foot 1 -111000101 bronze-windowed 1 -111000101 34-passenger 1 -111000101 budget-bill 1 -111000101 best-staged 1 -111000101 payroll-trimming 1 -111000101 28-foot 1 -111000101 National-Fairchild 1 -111000101 dictation-taking 1 -111000101 paper-dictating 1 -111000101 Syria-linked 1 -111000101 AIDS-producing 1 -111000101 Arco-Britoil 1 -111000101 twelve-member 1 -111000101 Viralizer 1 -111000101 city-commissioned 1 -111000101 hand-dug 1 -111000101 intermediate-missiles 1 -111000101 Singapore-flagged 1 -111000101 85-passenger 1 -111000101 GE-IBM 1 -111000101 two-airline 1 -111000101 multiple-support 1 -111000101 Martell-Seagram 1 -111000101 Boeing/Allegis 1 -111000101 rocket-propellant 1 -111000101 deadline-breaking 1 -111000101 tax-court 1 -111000101 mid-to-low 1 -111000101 dominant-father 1 -111000101 detente-era 1 -111000101 German-U.S. 1 -111000101 denotative 1 -111000101 five-deck 1 -111000101 Matsushita-GE 1 -111000101 30,000-mile 1 -111000101 water-act 1 -111000101 U.S.-Swedish 1 -111000101 gas-search 1 -111000101 Stern-Whitehead 1 -111000101 supplications 1 -111000101 body-fat 1 -111000101 U.S.-German-Japanese 1 -111000101 simple-for-complex 1 -111000101 technology-swap 1 -111000101 7.5-mile 1 -111000101 IBM/Futjitsu 1 -111000101 not-opposed 1 -111000101 bulk-export 1 -111000101 one-goal 1 -111000101 scientific-cooperation 1 -111000101 loan-reserves 1 -111000101 first-right-of-refusal 1 -111000101 Simthsonian 1 -111000101 stone-dead 1 -111000101 months-an 1 -111000101 supply-accord 1 -111000101 cable-Hollywood 1 -111000101 team-candidate 1 -111000101 27-minute 1 -111000101 ultrasecret 1 -111000101 ENI-Montedison 1 -111000101 Ferruzzi-Me.T.A. 1 -111000101 plastic-gun 1 -111000101 state-sought 1 -111000101 werewolf-movie 1 -111000101 due-dilligence 1 -111000101 sulfa-on-site 1 -111000101 allover 1 -111000101 Hicklen 1 -111000101 mannequin-equipped 1 -111000101 semi-heterodox 1 -111000101 rig-to-reefs 1 -111000101 passenger-sharing 1 -111000101 engine-intake 1 -111000101 223-195 1 -111000101 letters-come-to-life 1 -111000101 strike-contingency 1 -111000101 HBO-Fox 1 -111000101 17-paragraph 1 -111000101 19-paragraph 1 -111000101 21-paragraph 1 -111000101 Trump-Continental 1 -111000101 326-2 1 -111000101 township-wide 1 -111000101 bird-carcass 1 -111000101 Dow-Marion 1 -111000101 farm-goods 1 -111000101 vanilla-white 1 -111000101 maroon-and-caramel 1 -111000101 keep-well 1 -111000101 in-use 1 -111000101 186-page 1 -111000101 bat-shaped 1 -111000101 U.S.-Dutch 1 -111000101 form-follows 1 -111000101 home-strep-throat 1 -111000101 interspousal 1 -111000101 AT&T-Olivetti 1 -111000101 35,982 1 -111000101 recently-announced 1 -111000101 small-missile 1 -111000101 384-1 1 -111000101 5,000-patient 1 -111000101 93-5 1 -111000101 58-second 1 -111000101 Philips-GEC 1 -111000101 self-denying 1 -111000101 110-page 1 -111000101 oceanographic-research 1 -111000101 Morrison-Olson 1 -111000101 securities-and-insurance 1 -111000101 business-cooperation 1 -111000101 Roper-Whirlpool 1 -111000101 700-question 1 -111000101 super-scalar 1 -111000101 248-175 1 -111000101 insurance-type 1 -111000101 gene-rearrangement 1 -111000101 pre-brushing 1 -111000101 Halmi-Roach 1 -111000101 Motorola/AT&T 1 -111000101 Tokyo-Yamanashi 1 -111000101 service-and-supply 1 -111000101 200-group 1 -111000101 sneak-attack 1 -111000101 Peronist/liberal 1 -111000101 structural-impediment 1 -111000101 264-page 1 -111000101 U.S.-ASEAN 1 -111000101 Bayfield 1 -111000101 technical-licensing 1 -111000101 nonVAX 1 -111000101 691-page 1 -111000101 redtailed 1 -111000101 one-centimeter-wide 1 -111000101 Ford-GM 1 -111000101 free-association 1 -111000101 gold-sale 1 -111000101 trade-jingoist 1 -111000101 liability-pool 1 -111000101 Whirlpool/Roper 1 -111000101 fair-practices 1 -111000101 77-page 1 -111000101 domestic-partners 1 -111000101 Trump-Griffin 1 -111000101 Pakistan-Kabul 1 -111000101 28-6 1 -111000101 Moscow-set 1 -111000101 fuel-supply 1 -111000101 shuttle-transfer 1 -111000101 medium-missile 1 -111000101 small/medium 1 -111000101 Chinese-Brazilian 1 -111000101 75-passenger 1 -111000101 baseball-book 1 -111000101 87.5-decibel 1 -111000101 graphite-composite 1 -111000101 moth-killing 1 -111000101 night-game 1 -111000101 cabinet-committee 1 -111000101 solvency-letter 1 -111000101 GOP-sponsored 1 -111000101 Corning-SmithKline 1 -111000101 dose-limited 1 -111000101 NutraSweet-Kraft 1 -111000101 insurance-unit 1 -111000101 gun-turret 1 -111000101 fructifying 1 -111000101 campaign-trail 1 -111000101 solid-rocket-booster 1 -111000101 31-20 1 -111000101 6,710 1 -111000101 six-to-three 1 -111000101 tent-like 1 -111000101 20-question 1 -111000101 35-to-0 1 -111000101 near-completed 1 -111000101 Yamanote 1 -111000101 jewel-trimmed 1 -111000101 leadership-sanctioned 1 -111000101 hearing-officer 1 -111000101 Who-like 1 -111000101 unduplicated 1 -111000101 Dingell-Waxman 1 -111000101 WCRS-Eurocom 1 -111000101 Itel-Henley 1 -111000101 merger-type 1 -111000101 FAA-initiated 1 -111000101 Jacques-Laurent 1 -111000101 53-page 1 -111000101 size-of-motorcade 1 -111000101 cash-infusion 1 -111000101 yet-to-be-ratified 1 -111000101 Northwest-Skinner 1 -111000101 eager-beaver 1 -111000101 finance-minister 1 -111000101 vaccine-efficacy 1 -111000101 rearview 1 -111000101 anti-Wines/Trupin 1 -111000101 Mugabe-Nkomo 1 -111000101 family-ownership 1 -111000101 Arnault-Guinness 1 -111000101 219-206 1 -111000101 short-flight 1 -111000101 extreme-to-severe 1 -111000101 10-patient 1 -111000101 DM850-a-month 1 -111000101 Jackson-Vanick 1 -111000101 Checchi-NWA 1 -111000101 25-company 1 -111000101 50-to-49 1 -111000101 service-contract 1 -111000101 government-union 1 -111000101 financialdisclosure 1 -111000101 propfan-equipped 1 -111000101 259-member 1 -111000101 healthy-diet 1 -111000101 ruble-convertibility 1 -111000101 plant-infecting 1 -111000101 Hungarian-run 1 -111000101 Wagner/Brown 1 -111000101 thrice-monthly 1 -111000101 shirtwaist 1 -111000101 22-second 1 -111000101 257-156 1 -111000101 socialist-centered 1 -111000101 51-minute 1 -111000101 credit-wrenching 1 -111000101 yacht-club 1 -111000101 word-association 1 -111000101 total-dollar 1 -111000101 59-37 1 -111000101 joint-management 1 -111000101 debt-settlement 1 -111000101 status-defining 1 -111000101 total-ban 1 -111000101 cargo-hold 1 -111000101 joint-account 1 -111000101 millionth-second 1 -111000101 flame-red 1 -111000101 veal-heaped 1 -111000101 15-plane 1 -111000101 Franco-Japanese 1 -111000101 quota-increase 1 -111000101 small-shareholder 1 -111000101 two-firm 1 -111000101 software-licensing 1 -111000101 Twenty-fourth 1 -111000101 10-8 1 -111000101 250-page 1 -111000101 bankdebt 1 -111000101 CBS-Turner 1 -111000101 CI-Bolivia 1 -111000101 wage-concessions 1 -111000101 33-page 1 -111000101 Checchi-Skinner 1 -111000101 fish-or-cut-bait 1 -111000101 Mars-1 1 -111000101 beef-citrus 1 -111000101 459-page 1 -111000101 wide-bottomed 1 -111000101 missile-reduction 1 -111000101 Kodak-like 1 -111000101 126,000-acre 1 -111000101 Varity-Fruehauf 1 -111000101 Cypriot-flagged 1 -111000101 Laffer-curve 1 -111000101 halo-like 1 -111000101 50-inch-diagonal 1 -111000101 corn-production 1 -111000101 gene-transplant 1 -111000101 birdie-making 1 -111000101 court-prescribed 2 -111000101 shareholder-sponsored 2 -111000101 yet-to-be-determined 2 -111000101 Soviet-Kiribati 2 -111000101 feeder-line 2 -111000101 mine-countermeasures 2 -111000101 261-162 2 -111000101 sky-writing 2 -111000101 good-neighbor 2 -111000101 intermediate-missile 2 -111000101 combat-support 2 -111000101 prelimary 2 -111000101 5-to-0 2 -111000101 first-of-a-kind 2 -111000101 Sanofi-Robins 2 -111000101 dioxin-contaminated 2 -111000101 haulage 2 -111000101 shared-power 2 -111000101 pro-environmental 2 -111000101 Kodak-Sterling 2 -111000101 garlic-based 2 -111000101 coerced-license 2 -111000101 beaux-arts 2 -111000101 job-loss 2 -111000101 96-2 2 -111000101 co-label 2 -111000101 trademark-infringement 2 -111000101 equal-price 2 -111000101 conspiracy-theory 2 -111000101 fuel-use 2 -111000101 price-output 2 -111000101 court-sanctioned 2 -111000101 pay-as-we-go 2 -111000101 three-in-one 2 -111000101 Hivagen 2 -111000101 noncompetition 2 -111000101 screw-on 2 -111000101 56-mile 2 -111000101 Cerise 2 -111000101 whole-bank 2 -111000101 long-disputed 2 -111000101 tougher-minded 2 -111000101 cross-investment 2 -111000101 commission-splitting 2 -111000101 coal-capability 2 -111000101 10-lane 2 -111000101 strategic-arms-reduction 2 -111000101 GM-Jaguar 2 -111000101 Model-T 2 -111000101 382-29 2 -111000101 nerdish 2 -111000101 burgundy-colored 2 -111000101 BellSouth/LIN 2 -111000101 power-selling 2 -111000101 129-page 2 -111000101 100,000-pound 2 -111000101 153-page 2 -111000101 Jaguar-GM 2 -111000101 74-page 2 -111000101 Sun-AT&T 2 -111000101 strategicarms 2 -111000101 Kongo 2 -111000101 red-herring 2 -111000101 fraud-riddled 2 -111000101 Skandia-Pohjola 2 -111000101 95-4 2 -111000101 126-page 2 -111000101 Korea-gate 2 -111000101 84-11 2 -111000101 Saudi-Texaco 2 -111000101 potato-shaped 2 -111000101 Indiana-Syracuse 2 -111000101 UAL-pilot 2 -111000101 Hutton-Shearson 2 -111000101 block-trade 2 -111000101 Ogaden 2 -111000101 Occidental-Montedison 2 -111000101 443-page 2 -111000101 172-page 2 -111000101 value-investing 2 -111000101 truth-in-negotiations 2 -111000101 lamb-import 2 -111000101 often-murky 2 -111000101 asset-purchase 2 -111000101 79-page 2 -111000101 fairplay 2 -111000101 government-opposition 2 -111000101 long-arranged 2 -111000101 previously-announced 2 -111000101 no-compete 2 -111000101 Chakrabarty 2 -111000101 yet-to-be-published 2 -111000101 target-letter 2 -111000101 private-letter 2 -111000101 tax-sharing 2 -111000101 lock-and-key 2 -111000101 Walsh-Tribe 2 -111000101 CIA-trained 2 -111000101 55-page 2 -111000101 aluminum-export 2 -111000101 freetrade 2 -111000101 cartoonlike 2 -111000101 seven-session 2 -111000101 19-page 2 -111000101 830-page 2 -111000101 blacklight 2 -111000101 Swiss-U.S. 2 -111000101 quarter-century-old 2 -111000101 cash-bonus 2 -111000101 rate-ceiling 2 -111000101 radio-TV 2 -111000101 prebrushing 2 -111000101 131-page 2 -111000101 probabilistic 2 -111000101 price-cost 2 -111000101 intermediate-forces 2 -111000101 U.S-Japan 2 -111000101 reasonable-sounding 2 -111000101 42-page 2 -111000101 61-page 2 -111000101 short-short 2 -111000101 Toshiba-Motorola 2 -111000101 production-cut 2 -111000101 gene-transfer 2 -111000101 Turner-NBC 2 -111000101 nuclear-missiles 2 -111000101 26-page 2 -111000101 intra-aortic 2 -111000101 non-sugar 2 -111000101 batched 2 -111000101 board-appointed 2 -111000101 shoreside 2 -111000101 heat-release 2 -111000101 debt-for-products 2 -111000101 too-perfect 2 -111000101 news-wire 2 -111000101 228-182 2 -111000101 now-exhausted 2 -111000101 libel-suit 2 -111000101 15,000-pound 2 -111000101 media-generated 2 -111000101 bio-equivalence 2 -111000101 1581 2 -111000101 120-minute 2 -111000101 365-page 2 -111000101 bilingual-education 2 -111000101 Belizean 2 -111000101 Sumy 2 -111000101 breathalyzer 2 -111000101 hot-issue 2 -111000101 three-number 2 -111000101 greenside 2 -111000101 302-127 2 -111000101 mutual-assistance 2 -111000101 racial-bias 2 -111000101 milk-quota 3 -111000101 fee-sharing 3 -111000101 stand-still 3 -111000101 short-form 3 -111000101 pre-sale 3 -111000101 LIN-BellSouth 3 -111000101 merit-shop 3 -111000101 defense-policy 3 -111000101 Furman/Shannon 3 -111000101 37-page 3 -111000101 one-house 3 -111000101 90-page 3 -111000101 BellSouth-LIN 3 -111000101 Saudi-backed 3 -111000101 16-inch 3 -111000101 48-45 3 -111000101 stop-work 3 -111000101 joint-operating 3 -111000101 99-page 3 -111000101 91-page 3 -111000101 Methuen 3 -111000101 once-and-for-all 3 -111000101 Boeing-United 3 -111000101 pre-nuptial 3 -111000101 microinjection 3 -111000101 double-witching 3 -111000101 Baker-Shevardnadze 3 -111000101 prudent-purchasing 3 -111000101 data-networking 3 -111000101 apostolic 3 -111000101 nuclear-arms-reduction 3 -111000101 anti-PAC 3 -111000101 road-test 3 -111000101 pre-admission 3 -111000101 41-page 3 -111000101 jailhouse 3 -111000101 plastic-waste 3 -111000101 large-trade 3 -111000101 U.S.-imposed 3 -111000101 bottom-of-the-line 3 -111000101 health-hazard 3 -111000101 57-page 3 -111000101 Rallye 3 -111000101 225-186 3 -111000101 off-off-Broadway 3 -111000101 Iranian-Syrian 3 -111000101 line-of-credit 3 -111000101 disapointing 3 -111000101 multipicture 3 -111000101 75-page 3 -111000101 letters-to-the-editor 3 -111000101 urine-based 3 -111000101 Hitler-Stalin 3 -111000101 Solomon-like 3 -111000101 post-race 3 -111000101 business-driven 3 -111000101 Carter-Mondale 3 -111000101 58-page 3 -111000101 water-conservation 3 -111000101 trading-halt 3 -111000101 non-aggression 3 -111000101 trackage-rights 3 -111000101 376-23 3 -111000101 aflatoxin-producing 3 -111000101 103-page 3 -111000101 narrow-bank 3 -111000101 93-6 3 -111000101 Clover-Mist 3 -111000101 information-exchange 3 -111000101 defense-bill 3 -111000101 tripartite 3 -111000101 methane-gas 3 -111000101 Texaco-Saudi 3 -111000101 no-sell 3 -111000101 first-edition 3 -111000101 35-page 3 -111000101 water-pump 3 -111000101 trade-opening 3 -111000101 market-sharing 4 -111000101 still-classified 4 -111000101 dog-eared 4 -111000101 dual-track 4 -111000101 frankest 4 -111000101 less-controversial 4 -111000101 160-page 4 -111000101 long-promised 4 -111000101 single-union 4 -111000101 often-repeated 4 -111000101 Solomonic 4 -111000101 volume-purchase 4 -111000101 291st 4 -111000101 notarized 4 -111000101 Molotov-Ribbentrop 4 -111000101 call-blocking 4 -111000101 handshaking 4 -111000101 400-page 4 -111000101 72-hole 4 -111000101 Nunn-Byrd 4 -111000101 much-praised 4 -111000101 65-page 4 -111000101 Nkomati 4 -111000101 mid-engine 4 -111000101 non-disclosure 4 -111000101 equal-rights 4 -111000101 U.S.-Israel 4 -111000101 66-34 4 -111000101 price-limit 4 -111000101 Ford-UAW 4 -111000101 best-effort 4 -111000101 150-page 4 -111000101 two-volume 4 -111000101 75-year 4 -111000101 300-page 4 -111000101 provisonal 4 -111000101 107-page 4 -111000101 cash-stock 4 -111000101 trade-retaliation 4 -111000101 45-page 4 -111000101 tenative 4 -111000101 dress-for-success 4 -111000101 astral 4 -111000101 two-word 4 -111000101 Seagram-Martell 4 -111000101 Tolstaya 4 -111000101 dead-of-night 4 -111000101 actual-malice 4 -111000101 leg-injury 5 -111000101 item-reduction 5 -111000101 waste-handling 5 -111000101 Dome-Amoco 5 -111000101 gold-platinum 5 -111000101 9-2 5 -111000101 time-worn 5 -111000101 fence-mending 5 -111000101 substance-by-substance 5 -111000101 government-inspired 5 -111000101 near-unanimous 5 -111000101 drug-test 5 -111000101 noncompete 5 -111000101 29-page 5 -111000101 17-month-old 5 -111000101 parenthetical 5 -111000101 joint-marketing 5 -111000101 multifiber 5 -111000101 70-page 5 -111000101 Okie 5 -111000101 75-14 5 -111000101 Pennzoil-Getty 5 -111000101 aircraft-financing 5 -111000101 little-publicized 5 -111000101 much-disputed 5 -111000101 nondisclosure 5 -111000101 conservative-liberal 5 -111000101 arms-limitation 5 -111000101 first-to-file 5 -111000101 power-purchase 5 -111000101 double-jeopardy 5 -111000101 350-73 5 -111000101 post-fight 5 -111000101 research-regulatory 6 -111000101 47-page 6 -111000101 50-member 6 -111000101 full-membership 6 -111000101 near-universal 6 -111000101 hazard-communication 6 -111000101 13-page 6 -111000101 7-7 6 -111000101 heart-to-heart 6 -111000101 post-debate 6 -111000101 computer-marketing 6 -111000101 U.S.-British 6 -111000101 36-page 6 -111000101 chest-injury 6 -111000101 short-supply 6 -111000101 prenuptial 6 -111000101 100-page 6 -111000101 Anglo-Irish 6 -111000101 semiconductor-trade 6 -111000101 Apple-Microsoft 6 -111000101 ANZUS 6 -111000101 cloture 6 -111000101 U.S.-Swiss 6 -111000101 Davis/Zweig 6 -111000101 black-money 6 -111000101 71-27 6 -111000101 production-price 6 -111000101 25-page 6 -111000101 Kodak-Fuqua 6 -111000101 AT&T/Sun 6 -111000101 unamended 7 -111000101 loss-sharing 7 -111000101 35-mph 7 -111000101 120-day 7 -111000101 21-page 7 -111000101 much-reduced 7 -111000101 zero-option 7 -111000101 baby-bust 7 -111000101 48-page 7 -111000101 school-prayer 7 -111000101 recusal 7 -111000101 three-step 7 -111000101 now-infamous 7 -111000101 22-page 7 -111000101 budget-trimming 7 -111000101 50-page 7 -111000101 history-making 7 -111000101 post-INF 7 -111000101 highway-bill 7 -111000101 12-round 7 -111000101 tax-boost 7 -111000101 item-veto 7 -111000101 pre-convention 7 -111000101 back-channel 8 -111000101 catbird 8 -111000101 buy-sell 8 -111000101 school-desegregation 8 -111000101 year-by-year 8 -111000101 Negev 8 -111000101 SPSF 8 -111000101 one-step 8 -111000101 do-or-die 8 -111000101 anti-LDP 8 -111000101 much-awaited 8 -111000101 state-Lilco 8 -111000101 IBM/Fujitsu 8 -111000101 Lilco-state 8 -111000101 put-and-call 8 -111000101 one-month-old 9 -111000101 high-court 9 -111000101 24-page 9 -111000101 15-page 9 -111000101 2,000-page 9 -111000101 wage-concession 9 -111000101 production-sharing 9 -111000101 OPEC/non-OPEC 9 -111000101 front-row 10 -111000101 17-page 10 -111000101 99-year 10 -111000101 5-2 10 -111000101 test-market 10 -111000101 16-page 10 -111000101 nonaggression 10 -111000101 focus-group 10 -111000101 Eternal 10 -111000101 cross-shareholding 10 -111000101 5-1 10 -111000101 30-page 10 -111000101 court-imposed 10 -111000101 Pavlovian 11 -111000101 grandstand 11 -111000101 pre-hire 11 -111000101 Baker-Miyazawa 11 -111000101 non-competition 11 -111000101 biennial 11 -111000101 martial-law 11 -111000101 eleventh 11 -111000101 technology-transfer 12 -111000101 Rorer-Robins 12 -111000101 10-page 12 -111000101 revenue-neutral 12 -111000101 dollar-stabilization 13 -111000101 7-1 13 -111000101 pattern-setting 13 -111000101 week-old 13 -111000101 pre-summit 13 -111000101 P.A. 13 -111000101 Jackson-Vanik 13 -111000101 plea-bargain 13 -111000101 nine-page 14 -111000101 flip-in 14 -111000101 rear-view 14 -111000101 4-4 14 -111000101 unholy 14 -111000101 due-diligence 15 -111000101 six-page 16 -111000101 voting-rights 16 -111000101 plea-bargaining 16 -111000101 no-confidence 16 -111000101 fair-price 16 -111000101 technology-sharing 16 -111000101 netback 16 -111000101 lock-up 17 -111000101 code-sharing 17 -111000101 take-it-or-leave-it 17 -111000101 debt-rescheduling 17 -111000101 base-cap 17 -111000101 circuit-breaker 18 -111000101 going-private 18 -111000101 two-track 19 -111000101 Sino-British 19 -111000101 long-expected 19 -111000101 cash-and-securities 19 -111000101 5-3 19 -111000101 Macy-Federated 20 -111000101 double-zero 21 -111000101 double-barreled 21 -111000101 month-old 22 -111000101 one-two 22 -111000101 court-approved 22 -111000101 USAir-Piedmont 22 -111000101 cross-licensing 23 -111000101 first-round 23 -111000101 Pac-Man 24 -111000101 6-2 24 -111000101 GNP-based 24 -111000101 supermajority 25 -111000101 production-cutting 25 -111000101 six-nation 25 -111000101 prudency 25 -111000101 Ku 25 -111000101 nonexclusive 26 -111000101 non-compete 26 -111000101 7-2 27 -111000101 federal-court 27 -111000101 triple-witching 28 -111000101 concessionary 29 -111000101 U.N.-sponsored 29 -111000101 trade-bill 30 -111000101 full-power 35 -111000101 9-0 36 -111000101 1,000-page 37 -111000101 precedent-setting 37 -111000101 papal 38 -111000101 currency-stabilization 43 -111000101 fateful 43 -111000101 Texaco-Pennzoil 44 -111000101 nonbinding 45 -111000101 3-2 45 -111000101 collective-bargaining 50 -111000101 strategic-arms 52 -111000101 lockup 56 -111000101 13D 57 -111000101 voluminous 59 -111000101 three-way 59 -111000101 lower-court 64 -111000101 balanced-budget 68 -111000101 5-4 75 -111000101 tacit 75 -111000101 START 78 -111000101 long-delayed 80 -111000101 2-1 86 -111000101 line-item 187 -111000101 poison-pill 194 -111000101 unanimous 252 -111000101 long-awaited 271 -111000101 landmark 280 -111000101 Louvre 281 -111000101 free-trade 295 -111000101 Boland 299 -111000101 ABM 354 -111000101 provisional 370 -111000101 standstill 418 -111000101 INF 429 -111000101 mere 610 -111000101 tentative 763 -111000101 formal 1588 -111000101 definitive 1609 -111000101 preliminary 2339 -111000101 final 4923 -111000101 original 2954 -111000110 rose-covered 1 -111000110 giant-size 1 -111000110 72-seat 1 -111000110 hand-tied 1 -111000110 jeep-like 1 -111000110 piano-like 1 -111000110 baritonal 1 -111000110 survival-products 1 -111000110 soft-core-porn 1 -111000110 bobbing-head 1 -111000110 pasta-machine 1 -111000110 self-park 1 -111000110 Ford-designed 1 -111000110 jangling 1 -111000110 AMA-sponsored 1 -111000110 thousand-pound 1 -111000110 950-foot-long 1 -111000110 theme-and-variations 1 -111000110 3-D-capable 1 -111000110 minivan-style 1 -111000110 ping-pong-playing 1 -111000110 Chevrolet-powered 1 -111000110 sodium-sulphur 1 -111000110 Flo-Jo 1 -111000110 small-scaled 1 -111000110 super-tough 1 -111000110 24-ounce 1 -111000110 kiddy 1 -111000110 Die-Hard 1 -111000110 172-bed 1 -111000110 sealed-in 1 -111000110 Nagoya-based 1 -111000110 Turkish-Lebanese 1 -111000110 supercomputer-based 1 -111000110 Lebanese-Turkish 1 -111000110 radiant-heat 1 -111000110 chlorine-carrying 1 -111000110 gravure 1 -111000110 svelter 1 -111000110 non-marketing 1 -111000110 16,000-square-foot 1 -111000110 9370/20 1 -111000110 parade-float 1 -111000110 drum-shaped 1 -111000110 thousand-mile 1 -111000110 multi-screen 1 -111000110 742-acre 1 -111000110 4,000-pound 1 -111000110 10-screen 1 -111000110 kindergarten-level 1 -111000110 cagelike 1 -111000110 108-volt 1 -111000110 dissolvable 1 -111000110 chocolate-pecan 1 -111000110 by-appointment-only 1 -111000110 wallet-thin 1 -111000110 country-English 1 -111000110 Revlon-distributed 1 -111000110 muscle-relaxing 1 -111000110 257-177 1 -111000110 between-events 1 -111000110 50-mm 1 -111000110 half-million-tree 1 -111000110 Sunfish 1 -111000110 hydrogen-powered 1 -111000110 stick-type 1 -111000110 distinctive-tasting 1 -111000110 charcoal-filter 1 -111000110 combine-producing 1 -111000110 112-mile 1 -111000110 4-millimeter 1 -111000110 Freon-cooled 1 -111000110 gas-soaked 1 -111000110 British-developed 1 -111000110 fetch-and-carry 1 -111000110 topical-application 1 -111000110 Broadway-style 1 -111000110 three-bay 1 -111000110 race-ready 1 -111000110 gallstone-dissolving 1 -111000110 driving-school 1 -111000110 Fiat-body 1 -111000110 teeth-jarring 1 -111000110 video-tube 1 -111000110 76,000-ton 1 -111000110 doggie-bag 1 -111000110 robot-mounted 1 -111000110 frontwheel-drive 1 -111000110 3/8-inch-thick 1 -111000110 sandhill 1 -111000110 teach-yourself 1 -111000110 full-fashioned 1 -111000110 radar-directed 1 -111000110 220-bed 1 -111000110 Soviet-Korean 1 -111000110 fur-production 1 -111000110 223-page 1 -111000110 laser-carrying 1 -111000110 Hemdale-backed 1 -111000110 gas-saving 1 -111000110 rum-flavored 1 -111000110 psyllium-fortified 1 -111000110 Druse-held 1 -111000110 Olympic-theme 1 -111000110 Hewlett-Apollo 1 -111000110 homemade-style 1 -111000110 non-ecumenical 1 -111000110 Houk-Creamer 1 -111000110 6.07-carat 1 -111000110 16-carat 1 -111000110 exotic-plants 1 -111000110 baby-shoe 1 -111000110 3,874,000 1 -111000110 dumpster-size 1 -111000110 home-movie 1 -111000110 once-rare 1 -111000110 still-taboo 1 -111000110 polymide 1 -111000110 blood-thinning 1 -111000110 semipermanent 1 -111000110 650-mile 1 -111000110 municipal-waste 1 -111000110 snow-crystal 1 -111000110 middle-of-the-street 1 -111000110 radiation-detecting 1 -111000110 550-cc 1 -111000110 patrol-type 1 -111000110 care-and-feeding-of-the-animals 1 -111000110 calcium-supplemented 1 -111000110 27-yearold 1 -111000110 one-car 1 -111000110 play-oriented 1 -111000110 robot-library 2 -111000110 gramophone 2 -111000110 dirt-covered 2 -111000110 debt-crisis 2 -111000110 quality-controlled 2 -111000110 1978-83 2 -111000110 now-expired 2 -111000110 market-risk 2 -111000110 PEG-modified 2 -111000110 now-beloved 2 -111000110 FiberWorld 2 -111000110 Kilngas 2 -111000110 Trovac 2 -111000110 wristwatch-sized 2 -111000110 Soviet-armed 2 -111000110 Dutch-owned 2 -111000110 plastic-based 2 -111000110 16-story 2 -111000110 500,000-gallon 2 -111000110 five-floor 2 -111000110 less-sympathetic 2 -111000110 soon-to-open 2 -111000110 travel-rebates 2 -111000110 misting 2 -111000110 26-carat 2 -111000110 computer-magazine 2 -111000110 glass-facade 2 -111000110 beginning-level 2 -111000110 sharp-toothed 2 -111000110 distinguished-professor 2 -111000110 university-sponsored 2 -111000110 portrait-photography 2 -111000110 sports-labor 2 -111000110 technetium-tagged 2 -111000110 zippier 2 -111000110 just-opened 2 -111000110 limited-production 2 -111000110 35-pound 2 -111000110 17-pound 2 -111000110 three-course 2 -111000110 1,200-ton-a-day 2 -111000110 cargo-ship 2 -111000110 ultra-high-end 2 -111000110 suboptimal 2 -111000110 less-prestigious 2 -111000110 stadium-sized 2 -111000110 Reconstruction-era 2 -111000110 large-format 2 -111000110 retail-sale 2 -111000110 23-unit 2 -111000110 No-Squint 2 -111000110 still-new 2 -111000110 hymn-like 2 -111000110 high-strain 2 -111000110 3,000-ton 2 -111000110 twomonth 2 -111000110 county-by-county 2 -111000110 younger-generation 2 -111000110 twangy 2 -111000110 StreamLine 2 -111000110 two-bill 2 -111000110 less-than-major 2 -111000110 non-chicken 2 -111000110 pollution-prevention 2 -111000110 96-acre 2 -111000110 desk-sized 2 -111000110 media-backed 2 -111000110 pan-national 2 -111000110 homeless-assistance 2 -111000110 soon-to-be-formed 2 -111000110 female-to-male 2 -111000110 spackling 2 -111000110 270-page 2 -111000110 Micronic 2 -111000110 closed-shop 2 -111000110 ozone-safe 2 -111000110 20-volume 2 -111000110 cash-budget 2 -111000110 Knoxville-based 2 -111000110 filled-in 2 -111000110 19th-floor 2 -111000110 British-listed 2 -111000110 time-wasting 2 -111000110 instant-movie 2 -111000110 item-by-item 2 -111000110 three-building 2 -111000110 TV-dinner 2 -111000110 186-mile-wide 2 -111000110 13F 2 -111000110 community-minded 2 -111000110 postage-meter 2 -111000110 twopronged 2 -111000110 50-stock 3 -111000110 guaranteed-loan 3 -111000110 higher-price 3 -111000110 campaign-contribution 3 -111000110 Byronic 3 -111000110 dispute-resolution 3 -111000110 48-inch 3 -111000110 book-filled 3 -111000110 once-lackluster 3 -111000110 MD-60 3 -111000110 special-occasion 3 -111000110 Washington-Boston 3 -111000110 950-foot 3 -111000110 late-blooming 3 -111000110 150,000-square-foot 3 -111000110 bicameral 3 -111000110 LaserJet 3 -111000110 Japanese-controlled 3 -111000110 six-car 3 -111000110 dark-colored 3 -111000110 thumbs-up 3 -111000110 more-rigid 3 -111000110 phosphorous 3 -111000110 weapons-development 3 -111000110 dual-processor 3 -111000110 yellow-and-black 3 -111000110 bomb-disposal 3 -111000110 Norwegian-owned 3 -111000110 100-mile-long 3 -111000110 200-employee 3 -111000110 misengraved 3 -111000110 picture-postcard 3 -111000110 less-favored 3 -111000110 Toyota-designed 3 -111000110 lotta 3 -111000110 once-dull 3 -111000110 bismuth-containing 3 -111000110 Republican-dominated 3 -111000110 one-volume 3 -111000110 longer-acting 3 -111000110 Fujitsu-affiliated 3 -111000110 wrap-fee 3 -111000110 ever-escalating 3 -111000110 mortgage-gathering 3 -111000110 spanking-new 3 -111000110 20-employee 3 -111000110 Georgian-style 3 -111000110 30-seat 3 -111000110 pharaonic 3 -111000110 better-qualified 3 -111000110 125-mile 3 -111000110 spring-loaded 3 -111000110 extended-service 3 -111000110 Waxman-Berman 3 -111000110 laboratory-made 3 -111000110 zero-growth 3 -111000110 top-20 3 -111000110 much-quoted 4 -111000110 160-foot 4 -111000110 five-door 4 -111000110 food-storage 4 -111000110 informed-consent 4 -111000110 normal-sized 4 -111000110 wallet-sized 4 -111000110 multistage 4 -111000110 top-dollar 4 -111000110 light-density 4 -111000110 government-authorized 4 -111000110 Dino-Riders 4 -111000110 rate-lock 4 -111000110 10-story 4 -111000110 reduced-price 4 -111000110 15,000-square-foot 4 -111000110 hot-rod 4 -111000110 heart-lung 4 -111000110 four-digit 4 -111000110 22-hour 4 -111000110 1980-1981 4 -111000110 world-scale 4 -111000110 fiesty 4 -111000110 highest-profile 4 -111000110 nuclear-submarine 4 -111000110 fast-developing 4 -111000110 carriage-trade 4 -111000110 six-foot-long 4 -111000110 truck-mounted 4 -111000110 long-vacant 4 -111000110 silk-stocking 4 -111000110 yellowed 4 -111000110 one-million-square-foot 4 -111000110 1976-82 4 -111000110 trade-oriented 4 -111000110 sealed-envelope 4 -111000110 once-hot 5 -111000110 transportation-related 5 -111000110 top-earning 5 -111000110 turbo-charged 5 -111000110 dental-care 5 -111000110 plaque-fighting 5 -111000110 non-paying 5 -111000110 300-year-old 5 -111000110 glassed-in 5 -111000110 pre-fabricated 5 -111000110 Teflon-coated 5 -111000110 seven-room 5 -111000110 500,000-square-foot 5 -111000110 campus-like 5 -111000110 super-luxury 5 -111000110 modernistic 5 -111000110 loophole-ridden 5 -111000110 trimmed-down 5 -111000110 500-page 5 -111000110 more-general 5 -111000110 three-room 6 -111000110 14-foot 6 -111000110 plug-in 6 -111000110 one-act 6 -111000110 big-dollar 6 -111000110 publicly-traded 6 -111000110 200-seat 6 -111000110 conical 6 -111000110 PS/2-compatible 6 -111000110 three-tier 6 -111000110 self-declared 6 -111000110 Liechtenstein-based 6 -111000110 higher-profile 6 -111000110 black-led 6 -111000110 new-plant 6 -111000110 Malaysian-built 6 -111000110 equity-sharing 6 -111000110 bank-financed 6 -111000110 45-story 6 -111000110 still-growing 6 -111000110 single-processor 7 -111000110 wedge-shaped 7 -111000110 well-appointed 7 -111000110 more-limited 7 -111000110 200-acre 7 -111000110 rear-drive 7 -111000110 high-commission 7 -111000110 hair-thin 7 -111000110 2,000-member 7 -111000110 blown-up 7 -111000110 punitive-damage 7 -111000110 12-acre 7 -111000110 Beechcraft 7 -111000110 government-chartered 8 -111000110 three-foot 8 -111000110 25-foot 8 -111000110 once-thriving 8 -111000110 400-member 8 -111000110 stock-transfer 8 -111000110 middle-range 8 -111000110 Liberian-registered 8 -111000110 well-diversified 8 -111000110 commercial-property 8 -111000110 top-grossing 8 -111000110 low-pay 8 -111000110 1,000-mile 8 -111000110 10-second 8 -111000110 multistory 8 -111000110 much-discussed 9 -111000110 House-approved 9 -111000110 50-story 9 -111000110 post-merger 9 -111000110 chief-executive 10 -111000110 Delaware-based 10 -111000110 five-story 10 -111000110 14-inch 10 -111000110 drilling-rig 10 -111000110 carrot-and-stick 10 -111000110 U.S.-financed 10 -111000110 European-made 10 -111000110 holographic 10 -111000110 more-restrictive 10 -111000110 stock-quote 10 -111000110 one-acre 10 -111000110 fat-cat 11 -111000110 fortress-like 11 -111000110 freestanding 11 -111000110 long-planned 12 -111000110 more-advanced 12 -111000110 less-costly 12 -111000110 100-seat 13 -111000110 money-saving 13 -111000110 supercharged 13 -111000110 less-restrictive 13 -111000110 wholly-owned 13 -111000110 two-class 13 -111000110 high-octane 14 -111000110 four-person 14 -111000110 new-generation 14 -111000110 gallstone 14 -111000110 super-secret 14 -111000110 3.5-inch 14 -111000110 less-powerful 14 -111000110 bestselling 15 -111000110 two-inch 15 -111000110 government-mandated 15 -111000110 lakeside 16 -111000110 non-competitive 16 -111000110 Japanese-built 16 -111000110 slimmed-down 16 -111000110 hottest-selling 16 -111000110 large-capital 16 -111000110 three-pronged 17 -111000110 ragtag 17 -111000110 revenue-producing 17 -111000110 gene-spliced 18 -111000110 newfangled 18 -111000110 special-purpose 18 -111000110 follow-on 18 -111000110 circuitous 19 -111000110 crystalline 19 -111000110 time-tested 20 -111000110 multimedia 21 -111000110 Soviet-built 21 -111000110 four-color 21 -111000110 kiddie 21 -111000110 three-party 21 -111000110 higher-paying 24 -111000110 more-powerful 24 -111000110 life-size 24 -111000110 price-cap 25 -111000110 two-seat 25 -111000110 souped-up 25 -111000110 big-budget 25 -111000110 10-mile 26 -111000110 book-entry 26 -111000110 back-up 26 -111000110 snazzy 27 -111000110 tax-deferral 28 -111000110 next-generation 31 -111000110 stripped-down 31 -111000110 no-frills 37 -111000110 top-secret 39 -111000110 turn-of-the-century 39 -111000110 full-length 41 -111000110 brand-new 42 -111000110 loss-making 46 -111000110 second-generation 46 -111000110 top-selling 51 -111000110 free-standing 51 -111000110 makeshift 53 -111000110 low-budget 56 -111000110 hot-selling 56 -111000110 scaled-down 59 -111000110 multiyear 61 -111000110 two-door 71 -111000110 stand-alone 82 -111000110 top-of-the-line 102 -111000110 four-door 104 -111000110 year-old 109 -111000110 five-year-old 119 -111000110 high-powered 134 -111000110 fixed-price 140 -111000110 state-of-the-art 195 -111000110 sprawling 215 -111000110 best-selling 238 -111000110 fledgling 267 -111000110 new 64683 -111000110 newer 280 -11100011100 legal-fee 1 -11100011100 552,716 1 -11100011100 real-orld 1 -11100011100 reform-proof 1 -11100011100 post-1940 1 -11100011100 sure-win 1 -11100011100 Huntsville-area 1 -11100011100 soon-to-be-dispatched 1 -11100011100 vocalist/guitarist/keyboard 1 -11100011100 foreign-credit 1 -11100011100 socialist-atheist 1 -11100011100 Wishy-Washy 1 -11100011100 swaps-desk 1 -11100011100 doctor-lawyer 1 -11100011100 Mars-happy 1 -11100011100 post-adolescent 1 -11100011100 top-salaried 1 -11100011100 tennis-camp 1 -11100011100 Tigua 1 -11100011100 6-inch 1 -11100011100 J-10/J-20 1 -11100011100 59,400 1 -11100011100 121,450 1 -11100011100 law-department 1 -11100011100 valuable-player 1 -11100011100 ex-guitar 1 -11100011100 extended-cab 1 -11100011100 now-or-never 1 -11100011100 nonimportant 1 -11100011100 C20 1 -11100011100 Abyssinian 1 -11100011100 individual-event 1 -11100011100 great-powers 1 -11100011100 Greens-Social 1 -11100011100 simlarly 1 -11100011100 once-forbidden 1 -11100011100 labor/management 1 -11100011100 cat-loving 1 -11100011100 1,000-ruble 1 -11100011100 100-ruble 1 -11100011100 32,460 1 -11100011100 Mom-and-apple-pie 1 -11100011100 estate-dotted 1 -11100011100 5,000-square-foot 1 -11100011100 big-shot 1 -11100011100 U.S.-Danish 1 -11100011100 more-critical 1 -11100011100 22-yearold 1 -11100011100 grain-wagon 1 -11100011100 bond-call 1 -11100011100 flag-carrying 1 -11100011100 five-speed-manual-transmission 1 -11100011100 heraldic 1 -11100011100 silver-spoon 1 -11100011100 red-neck 1 -11100011100 swap-driven 1 -11100011100 short-tie 1 -11100011100 intelligence-agency 1 -11100011100 food-anxiety 1 -11100011100 1742 1 -11100011100 1,445 1 -11100011100 ore-handling 1 -11100011100 high-knowledge 1 -11100011100 Weickerian 1 -11100011100 Europeanwide 2 -11100011100 CUNY 2 -11100011100 near-ideal 2 -11100011100 sports-minded 2 -11100011100 electro-weak 2 -11100011100 confederate 2 -11100011100 nondemocratic 2 -11100011100 more-reliable 2 -11100011100 leering 2 -11100011100 comeback-of-the-year 2 -11100011100 gussied-up 2 -11100011100 page-long 2 -11100011100 plant-filled 2 -11100011100 proxy-voting 2 -11100011100 Godlike 2 -11100011100 Los-Angeles-based 2 -11100011100 Jungian 2 -11100011100 long-protected 2 -11100011100 perfervid 2 -11100011100 well-played 2 -11100011100 most-popular 2 -11100011100 scandal-tarred 2 -11100011100 Lincolnesque 2 -11100011100 110-meter 2 -11100011100 Disciple 2 -11100011100 long-accepted 2 -11100011100 building-maintenance 2 -11100011100 paperlike 2 -11100011100 non-confrontational 2 -11100011100 rent-paying 2 -11100011100 lopsidedly 2 -11100011100 low-brow 2 -11100011100 backseat 2 -11100011100 major-college 2 -11100011100 anti-Socialist 2 -11100011100 2,500-man 2 -11100011100 often-used 2 -11100011100 much-lauded 3 -11100011100 2,622 3 -11100011100 sagacious 3 -11100011100 trendsetting 3 -11100011100 one-industry 3 -11100011100 semiofficial 3 -11100011100 closed-ended 3 -11100011100 risk-shy 3 -11100011100 animating 3 -11100011100 capital-weighted 3 -11100011100 less-well-known 3 -11100011100 gummed 3 -11100011100 hot-button 3 -11100011100 much-envied 3 -11100011100 post-doctoral 3 -11100011100 headline-making 3 -11100011100 PAC-financed 3 -11100011100 wave-of-the-future 3 -11100011100 pistol-packing 3 -11100011100 Paralyzed 3 -11100011100 seven-person 3 -11100011100 1972-74 3 -11100011100 triable 3 -11100011100 vertiginous 3 -11100011100 102-year-old 3 -11100011100 Hydra-matic 3 -11100011100 teleport 3 -11100011100 pace-setting 3 -11100011100 many-faceted 3 -11100011100 Tequita 3 -11100011100 meditative 4 -11100011100 300-member 4 -11100011100 group-home 4 -11100011100 often-overlooked 4 -11100011100 anti-European 4 -11100011100 1,307 4 -11100011100 fashion-show 4 -11100011100 U.S.-funded 4 -11100011100 unwrapping 4 -11100011100 most-admired 4 -11100011100 well-schooled 4 -11100011100 jury-rigged 4 -11100011100 GCP 4 -11100011100 Helsinki-based 4 -11100011100 better-managed 4 -11100011100 B-17 4 -11100011100 1,039 4 -11100011100 three-ship 4 -11100011100 Grammy-winning 4 -11100011100 9-inch 4 -11100011100 renascent 4 -11100011100 colonialist 4 -11100011100 350-member 5 -11100011100 ticket-splitting 5 -11100011100 quondam 5 -11100011100 strife-torn 5 -11100011100 recondite 5 -11100011100 God-fearing 5 -11100011100 cloistered 5 -11100011100 Shinjuku 5 -11100011100 sun-baked 5 -11100011100 semi-autonomous 5 -11100011100 giant-sized 5 -11100011100 profit-seeking 6 -11100011100 non-computer 6 -11100011100 anti-market 6 -11100011100 Western-oriented 6 -11100011100 5th 6 -11100011100 luckless 7 -11100011100 once-promising 7 -11100011100 once-powerful 7 -11100011100 gut-level 7 -11100011100 gentrifying 7 -11100011100 Soviet-controlled 7 -11100011100 once-dominant 8 -11100011100 creaking 8 -11100011100 U.S.-trained 8 -11100011100 no-new-taxes 8 -11100011100 frosted 8 -11100011100 32-year 8 -11100011100 fibrous 8 -11100011100 tangential 8 -11100011100 swanky 8 -11100011100 fast-growth 9 -11100011100 quarrelsome 9 -11100011100 Soviet-dominated 9 -11100011100 first-term 9 -11100011100 resource-rich 10 -11100011100 somnolent 10 -11100011100 globe-trotting 11 -11100011100 well-entrenched 11 -11100011100 boom-and-bust 13 -11100011100 pulsing 14 -11100011100 Polish-born 14 -11100011100 rock-solid 14 -11100011100 quintessentially 15 -11100011100 balky 15 -11100011100 similar-sized 16 -11100011100 pre-AIDS 17 -11100011100 deranged 18 -11100011100 obliging 19 -11100011100 mediating 20 -11100011100 non-family 20 -11100011100 galvanizing 20 -11100011100 ritzy 20 -11100011100 scandal-ridden 20 -11100011100 tradition-bound 22 -11100011100 flickering 23 -11100011100 naturalized 23 -11100011100 card-carrying 24 -11100011100 Depression-era 26 -11100011100 dismaying 26 -11100011100 long-established 29 -11100011100 well-placed 31 -11100011100 self-appointed 32 -11100011100 century-old 32 -11100011100 strapping 33 -11100011100 U.S.-flagged 34 -11100011100 preeminent 35 -11100011100 top-performing 36 -11100011100 standout 37 -11100011100 better-known 40 -11100011100 glittering 47 -11100011100 predominant 49 -11100011100 unifying 49 -11100011100 motivating 49 -11100011100 smashing 50 -11100011100 self-proclaimed 53 -11100011100 coincident 55 -11100011100 pre-eminent 58 -11100011100 shadowy 59 -11100011100 highflying 63 -11100011100 bustling 65 -11100011100 staid 85 -11100011100 high-flying 89 -11100011100 cash-rich 91 -11100011100 reputed 92 -11100011100 staunch 131 -11100011100 guiding 132 -11100011100 little-known 136 -11100011100 foremost 143 -11100011100 venerable 148 -11100011100 commanding 149 -11100011100 purported 158 -11100011100 hard-line 183 -11100011100 pivotal 202 -11100011100 seasoned 244 -11100011100 distinguished 247 -11100011100 prestigious 347 -11100011100 fast-growing 402 -11100011100 ranking 494 -11100011100 visiting 514 -11100011100 well-known 596 -11100011100 dominant 705 -11100011100 striking 820 -11100011100 diversified 861 -11100011100 prominent 1222 -11100011100 key 3536 -11100011100 leading 4999 -11100011101 raunchier 1 -11100011101 180-page 1 -11100011101 not-so-British 1 -11100011101 rational-expectation 1 -11100011101 project-connected 1 -11100011101 rock-blues 1 -11100011101 more-accountable 1 -11100011101 trader-and 1 -11100011101 frilled 1 -11100011101 most-conservative 1 -11100011101 laser-making 1 -11100011101 Italian-built 1 -11100011101 seven-seater 1 -11100011101 950-million-strong 1 -11100011101 often-praised 1 -11100011101 airport-group 1 -11100011101 engine-department 1 -11100011101 stock-index-options 1 -11100011101 Marietta-Oerlikon 1 -11100011101 stock-market-related 1 -11100011101 environment-enforcement 1 -11100011101 12-cents-a-share 1 -11100011101 pre-takeoff 1 -11100011101 blood-flow 1 -11100011101 baronial 1 -11100011101 bebopping 1 -11100011101 then-Wedtech 1 -11100011101 two-bar 1 -11100011101 MISSIONARY 1 -11100011101 upperlevel 1 -11100011101 20-odd-inch 1 -11100011101 now-obsolete 1 -11100011101 long-nosed 1 -11100011101 Chongqingian 1 -11100011101 ruling. 1 -11100011101 divi-divi 1 -11100011101 flashbulb-popping 1 -11100011101 Tranby 1 -11100011101 type-A 1 -11100011101 107th 1 -11100011101 59-pound 1 -11100011101 foreign-fund 1 -11100011101 Buffalino 1 -11100011101 Aerohead 1 -11100011101 beat-patrol 1 -11100011101 now-empty 1 -11100011101 high-note-studded 1 -11100011101 ex-GAP 1 -11100011101 Japanese-yen-futures 1 -11100011101 lightfilled 1 -11100011101 VCR-2 1 -11100011101 tortured-genius 1 -11100011101 RCA/Blue 1 -11100011101 boston-based 1 -11100011101 adult-white-male 1 -11100011101 racket-busting 1 -11100011101 3,205 1 -11100011101 Shampaine 1 -11100011101 easy-to-define 1 -11100011101 dump-truck 1 -11100011101 28-gauge 1 -11100011101 6,872 1 -11100011101 Reagan-type 1 -11100011101 music-world 1 -11100011101 Parker/Savoy 1 -11100011101 riderless 1 -11100011101 Milk-Bone 1 -11100011101 2.58-fold 1 -11100011101 51-million-and-growing 1 -11100011101 often-fatiguing 1 -11100011101 70,000-man 1 -11100011101 pollution/waste 1 -11100011101 retirement-oriented 1 -11100011101 three-province 1 -11100011101 Unter 1 -11100011101 now-ruined 1 -11100011101 seven-bedroom 1 -11100011101 no-nothing 1 -11100011101 fleet-fingered 1 -11100011101 6.4-ounce 1 -11100011101 5,000-foot-high 1 -11100011101 flaxen 1 -11100011101 tamped 1 -11100011101 pre-Graham 1 -11100011101 superhot 1 -11100011101 nonelected 1 -11100011101 pre-Heifetz 1 -11100011101 carb 1 -11100011101 brokerage-linked 1 -11100011101 coal-black 1 -11100011101 U.S.-Taiwan-China 1 -11100011101 innercircle 1 -11100011101 rubble-strewn 1 -11100011101 commercial-size 1 -11100011101 above-age-11 1 -11100011101 adminisitration 1 -11100011101 AnheuserBusch 1 -11100011101 unworked 1 -11100011101 nonmedical 1 -11100011101 alabasterlike 1 -11100011101 ex-Mellon 1 -11100011101 cagiest 1 -11100011101 bacteria-deposited 1 -11100011101 baize-covered 1 -11100011101 unremorseful 1 -11100011101 two-last-name 1 -11100011101 stuffed-up 1 -11100011101 trash-littered 1 -11100011101 departure-lounge 1 -11100011101 observation-deck 1 -11100011101 turf-grass 1 -11100011101 Wilton-Westport-Norwalk 1 -11100011101 navally 1 -11100011101 champagne-process 1 -11100011101 soft-on-national-security 1 -11100011101 top-echelon 1 -11100011101 wading-bird 1 -11100011101 caller-type 1 -11100011101 near-depleted 1 -11100011101 restaurant-size 1 -11100011101 411-page 1 -11100011101 trade-unionist 1 -11100011101 Bukitinggi 1 -11100011101 grouolding 1 -11100011101 bacon-scented 1 -11100011101 mahua 1 -11100011101 entranceway 1 -11100011101 best-remunerated 1 -11100011101 Rheatian 1 -11100011101 Heyman-led 1 -11100011101 ex-company 1 -11100011101 business-loving 1 -11100011101 contralto 1 -11100011101 laque 1 -11100011101 safflower-oil 1 -11100011101 Lucasian 1 -11100011101 video/image 1 -11100011101 76th-place 1 -11100011101 fuel-filler 1 -11100011101 jazz/pop 1 -11100011101 GE/Schwab 1 -11100011101 BVIslander 1 -11100011101 shop-room 1 -11100011101 still-scorched 1 -11100011101 sport-sedan 1 -11100011101 King-shirt 1 -11100011101 fourth-worst 1 -11100011101 Triestine 1 -11100011101 aircraft-division 1 -11100011101 ravening 1 -11100011101 prize-announcement 1 -11100011101 exculpate 1 -11100011101 300-contract 1 -11100011101 cyborg 1 -11100011101 programme 1 -11100011101 2.6-ton 1 -11100011101 nasties 1 -11100011101 under-age-18 1 -11100011101 droopy-lidded 1 -11100011101 long-deceased 1 -11100011101 10-rated 1 -11100011101 48,000-rand 1 -11100011101 restaurant-group 1 -11100011101 closing-night 1 -11100011101 Dongpu 1 -11100011101 historical-society 1 -11100011101 Olympics-fueled 1 -11100011101 81-mile 1 -11100011101 pink-pajama-clad 1 -11100011101 metals-futures 1 -11100011101 1522 1 -11100011101 talent-rich 1 -11100011101 Atlantic-coast 1 -11100011101 tip-tilted 1 -11100011101 vaccinia-AIDS 1 -11100011101 series-development 1 -11100011101 experimental-theater 1 -11100011101 four-hour-long 1 -11100011101 fifty-first 1 -11100011101 5,166 1 -11100011101 Padauk 1 -11100011101 900-pound 1 -11100011101 often-unsuspecting 1 -11100011101 highest-charting 1 -11100011101 sometimes-crippling 1 -11100011101 basketball-playing 1 -11100011101 well-stock-optioned 1 -11100011101 money-strapped 1 -11100011101 big-hearted 1 -11100011101 vendor/supplier 1 -11100011101 25,000-strong 1 -11100011101 once-profitable 1 -11100011101 juniormost 1 -11100011101 yen-trading 1 -11100011101 Mormon-based 1 -11100011101 Iraq-backed 1 -11100011101 Epogen 1 -11100011101 145-year 1 -11100011101 government-initiated 1 -11100011101 55-second 1 -11100011101 lace-and-net 1 -11100011101 advanced-tactical-aircraft 1 -11100011101 blood-splashed 1 -11100011101 barrelhouse 1 -11100011101 Kaiparowits 1 -11100011101 giant-company 1 -11100011101 Todesco 1 -11100011101 decentralist 1 -11100011101 unfenced 1 -11100011101 explosives-company 1 -11100011101 foulest 1 -11100011101 air-command 1 -11100011101 Loss-Ridden 1 -11100011101 ex-regulatory 1 -11100011101 vagrant 2 -11100011101 small-bank 2 -11100011101 debt-bloated 2 -11100011101 best-connected 2 -11100011101 toy-animal 2 -11100011101 Pedigree 2 -11100011101 Canadian-fisheries 2 -11100011101 six-to 2 -11100011101 square-toed 2 -11100011101 HUGE 2 -11100011101 gold-embossed 2 -11100011101 10,900 2 -11100011101 asset/liability 2 -11100011101 88th 2 -11100011101 sevenmember 2 -11100011101 hutch 2 -11100011101 three-billionth 2 -11100011101 4,000-seat 2 -11100011101 500-seat 2 -11100011101 horsedrawn 2 -11100011101 non-commissioned 2 -11100011101 hoodwinking 2 -11100011101 Propositions 2 -11100011101 above-named 2 -11100011101 Interleukin-1 2 -11100011101 moderate-growth 2 -11100011101 rolltop 2 -11100011101 skilled-craft 2 -11100011101 noninvestment 2 -11100011101 good-paying 2 -11100011101 African-based 2 -11100011101 roll-top 2 -11100011101 post-government 2 -11100011101 spy-satellite 2 -11100011101 nasty-looking 2 -11100011101 non-portable 2 -11100011101 Taliesin 2 -11100011101 long-speculated 2 -11100011101 flash-in-the-pan 2 -11100011101 tread-wear 2 -11100011101 leftist-oriented 2 -11100011101 64th 2 -11100011101 9-Lives 2 -11100011101 3T 2 -11100011101 elephant-like 2 -11100011101 mint-flavored 2 -11100011101 transgressors 2 -11100011101 piano-playing 2 -11100011101 84th 2 -11100011101 53-foot 2 -11100011101 12-gauge 2 -11100011101 Identikit 2 -11100011101 government-hired 2 -11100011101 game-high 2 -11100011101 most-desired 2 -11100011101 112-foot 2 -11100011101 sales-support 2 -11100011101 T-bone 3 -11100011101 yammering 3 -11100011101 year-around 3 -11100011101 36-year 3 -11100011101 500-ton 3 -11100011101 lowest-paying 3 -11100011101 overweening 3 -11100011101 non-physician 3 -11100011101 chrome-plated 3 -11100011101 cutting-room 3 -11100011101 noncommissioned 3 -11100011101 mile-a-minute 3 -11100011101 gate-side 3 -11100011101 eligible-age 3 -11100011101 49-state 3 -11100011101 top-caliber 3 -11100011101 fourth-place 3 -11100011101 post-withdrawal 3 -11100011101 13-month-old 3 -11100011101 since-departed 3 -11100011101 superpowerful 3 -11100011101 pre-flight 3 -11100011101 artist. 3 -11100011101 SU-25 3 -11100011101 beer-guzzling 3 -11100011101 bouffant 3 -11100011101 90-foot 4 -11100011101 second-level 4 -11100011101 on-the-air 4 -11100011101 AIDS-drug 4 -11100011101 top-paid 4 -11100011101 Japanese-yen 4 -11100011101 high-living 4 -11100011101 breeding-herd 4 -11100011101 once-successful 4 -11100011101 14-month-old 4 -11100011101 playroom 4 -11100011101 dippy 5 -11100011101 middle-ranking 5 -11100011101 Bonanno 5 -11100011101 highest-paying 5 -11100011101 45-foot 5 -11100011101 Reagan-administration 5 -11100011101 cable-industry 6 -11100011101 double-bogey 6 -11100011101 best-paid 6 -11100011101 61st 6 -11100011101 No.2 6 -11100011101 quasi-official 6 -11100011101 Willits 6 -11100011101 Rosetta 6 -11100011101 .38-caliber 6 -11100011101 ablest 6 -11100011101 health-cost 7 -11100011101 C-D 7 -11100011101 more-senior 7 -11100011101 trade-association 8 -11100011101 sixth-place 8 -11100011101 48th 9 -11100011101 par-three 9 -11100011101 NIMH 9 -11100011101 block-trading 11 -11100011101 1,000-member 11 -11100011101 higher-ranking 13 -11100011101 international-energy 13 -11100011101 non-investment 14 -11100011101 high-paid 14 -11100011101 participative 15 -11100011101 higher-level 16 -11100011101 lower-ranking 25 -11100011101 first-place 26 -11100011101 senior-level 27 -11100011101 lynch 29 -11100011101 middle-level 31 -11100011101 staunchest 31 -11100011101 second-ranking 34 -11100011101 third-place 38 -11100011101 highest-paid 50 -11100011101 second-place 50 -11100011101 highest-ranking 58 -11100011101 top 9826 -11100011101 top-level 94 -11100011110 nonconsumer 1 -11100011110 longer-oiled 1 -11100011110 commercial-telecommunication 1 -11100011110 film-services 1 -11100011110 specialtychemical 1 -11100011110 graphic-arts-materials 1 -11100011110 personal-computers 1 -11100011110 retail-building 1 -11100011110 cumbrous 1 -11100011110 best-intentioned 1 -11100011110 59-month 1 -11100011110 foil-container 1 -11100011110 power-packed 1 -11100011110 looking-for-parts 1 -11100011110 bait-wholesaling 1 -11100011110 still-thriving 1 -11100011110 food-advertising 1 -11100011110 vinyl-siding 1 -11100011110 fuller-priced 1 -11100011110 stamping-press 1 -11100011110 vaccine-testing 1 -11100011110 capital-goods-producing 1 -11100011110 post-launch 1 -11100011110 pig-racing 1 -11100011110 food-import 1 -11100011110 all-violet 1 -11100011110 board-test 1 -11100011110 ethical-drugs 1 -11100011110 milk-distribution 1 -11100011110 electronics-associated 1 -11100011110 asset-appraisal 1 -11100011110 heavy-cargo 1 -11100011110 unbelted 1 -11100011110 president-conventional 1 -11100011110 service-for-fee 1 -11100011110 nontravel-related 1 -11100011110 dope-supply 1 -11100011110 transportation-communications 1 -11100011110 hostage-holding 1 -11100011110 Australia-U.S.S.R. 1 -11100011110 automotive-controls 1 -11100011110 fluid-milk 1 -11100011110 meat-animal 1 -11100011110 IMF-supported 1 -11100011110 photomask 1 -11100011110 base-case 1 -11100011110 copier-maintenance 1 -11100011110 pro-death 1 -11100011110 plastic-fiber 1 -11100011110 drug-retailing 1 -11100011110 hydro-based 1 -11100011110 non-glitzy 1 -11100011110 band-booking 1 -11100011110 commercial-art 1 -11100011110 bromine-related 1 -11100011110 Epitope-Sakata 1 -11100011110 Northeast-to-Florida 1 -11100011110 data-solutions 1 -11100011110 fertilizer-plant 1 -11100011110 residential-services 1 -11100011110 exotic-chemicals 1 -11100011110 videotape-rental 1 -11100011110 trinket-selling 1 -11100011110 econoic 1 -11100011110 powerboat-engine 1 -11100011110 temporary-clerical 1 -11100011110 automotive-prototype 1 -11100011110 underseas-cable 1 -11100011110 water-management 1 -11100011110 Hilter 1 -11100011110 pumpkin-laden 1 -11100011110 laundry-equipment 1 -11100011110 woodtreating 1 -11100011110 jean-collection 1 -11100011110 packagedgoods 1 -11100011110 broadest-based 1 -11100011110 ceramic-powders 1 -11100011110 ambulance-chassis 1 -11100011110 food-for-work 1 -11100011110 railroad-equipment 1 -11100011110 Post-bank 1 -11100011110 investor-services 1 -11100011110 pork-processing 1 -11100011110 57,067 1 -11100011110 polyester-fibers 1 -11100011110 non-broadcast-related 1 -11100011110 community-care 1 -11100011110 drilling-fluids 1 -11100011110 controls-products 1 -11100011110 excess-SIPC 1 -11100011110 eating-and-drinking-place 1 -11100011110 financial-systems 1 -11100011110 salmon-pink 1 -11100011110 ecdysiast 1 -11100011110 independent-production 1 -11100011110 information-providing 1 -11100011110 ophthalmic-laser 1 -11100011110 hostile-deal 1 -11100011110 nonreimbursed 1 -11100011110 wrinkle-removal 1 -11100011110 negative-amortization 1 -11100011110 single-account 1 -11100011110 shelter-repackaging 1 -11100011110 Easter-Passover 1 -11100011110 warp-and-weft 1 -11100011110 nonlegendary 1 -11100011110 alternative-care 1 -11100011110 Winnepeg-based 1 -11100011110 dry-battery 1 -11100011110 pension-advisory 1 -11100011110 nonprofit-hospital 1 -11100011110 calcium-enriched 1 -11100011110 small-loan 1 -11100011110 chemical-distribution 1 -11100011110 electronic-games 1 -11100011110 polyphenyl 1 -11100011110 weightiest 1 -11100011110 wholesale-trade 1 -11100011110 big-label 1 -11100011110 modular-incineration 1 -11100011110 munitions-to-Tehran 1 -11100011110 munitions-to-Iran 1 -11100011110 coal-tar 1 -11100011110 non-superconducting 1 -11100011110 then-required 1 -11100011110 real-estate-laden 1 -11100011110 institutionally-traded 1 -11100011110 computer-database 1 -11100011110 Yongdong 1 -11100011110 tour-operator 1 -11100011110 French-defended 1 -11100011110 medium-tech 1 -11100011110 recreational-park 1 -11100011110 optical-scanner 1 -11100011110 all-Chopin 1 -11100011110 Daigo 1 -11100011110 orthopedic-implant 1 -11100011110 bubble-memory 1 -11100011110 D6H 1 -11100011110 autocarrier 1 -11100011110 industrial-yeast 1 -11100011110 covert-activity 1 -11100011110 illegal-liquor 1 -11100011110 3,996 1 -11100011110 custom-products 1 -11100011110 takeover-regulation 1 -11100011110 fast-oil 1 -11100011110 once-supportive 1 -11100011110 people-smuggling 1 -11100011110 Tarzanlike 1 -11100011110 specialty-gases 1 -11100011110 gumball-machine 1 -11100011110 shoe-materials 1 -11100011110 shoe-machinery 1 -11100011110 regulatory-biomedical 1 -11100011110 measurement-while-drilling 1 -11100011110 propane-distribution 1 -11100011110 radiopharmacy 1 -11100011110 hair-care-products 1 -11100011110 junk-LBO 1 -11100011110 most-automated 1 -11100011110 newspaper-related 1 -11100011110 reinforcing-fibers 1 -11100011110 party-run 1 -11100011110 specialized-directory 1 -11100011110 intermediate-goods 1 -11100011110 commercial-biochemical 1 -11100011110 dry-snuff 1 -11100011110 Rangoon-Bangkok 1 -11100011110 obligation-gift 1 -11100011110 INS-targeted 1 -11100011110 old-design 1 -11100011110 cable-brokerage 1 -11100011110 cable-ownership 1 -11100011110 wines-and-spirits 1 -11100011110 hand-tailored 1 -11100011110 cut-over 1 -11100011110 private-housing 1 -11100011110 grand-champion 1 -11100011110 lightdensity 1 -11100011110 downlink-uplink 1 -11100011110 premium-food 1 -11100011110 once-burgeoning 1 -11100011110 military-engine 1 -11100011110 beverage-bottling 1 -11100011110 Whitmonday 1 -11100011110 well-experienced 1 -11100011110 sales-finance 1 -11100011110 non-bike 1 -11100011110 380,250 1 -11100011110 braille-like 1 -11100011110 rascally 1 -11100011110 movie-rental 1 -11100011110 already-merged 1 -11100011110 4,100-unit 1 -11100011110 medical-laboratory 1 -11100011110 precision-technology 1 -11100011110 363-person 1 -11100011110 single-design 1 -11100011110 liquor-sales 1 -11100011110 major-appliances 1 -11100011110 glass-cutting 1 -11100011110 far-bigger 1 -11100011110 MU-300 1 -11100011110 global-securities 1 -11100011110 technical-systems 1 -11100011110 mall-development 1 -11100011110 then-prospective 1 -11100011110 legislative-leadership 1 -11100011110 inplace 1 -11100011110 fungus-prone 1 -11100011110 washroom-accessories 1 -11100011110 post-invasion 1 -11100011110 telecommunications-based 1 -11100011110 still-stricken 1 -11100011110 then-prime 1 -11100011110 input/output 1 -11100011110 agriproducts 1 -11100011110 utility-services 1 -11100011110 Walkman-style 1 -11100011110 specialty-steels 1 -11100011110 automotive-valve-lifter 1 -11100011110 thirst-quenching 1 -11100011110 ice-collecting 1 -11100011110 11-day-old 1 -11100011110 corn-export 1 -11100011110 oil-recovery 1 -11100011110 telecommunication-equipment 1 -11100011110 ritzier 1 -11100011110 frozen-fish 1 -11100011110 night-club 1 -11100011110 Asia-to-Europe 1 -11100011110 property-lending 1 -11100011110 telephone-transmission 1 -11100011110 trust-and-a-handshake 1 -11100011110 Paris-area 1 -11100011110 top-50 1 -11100011110 brush-clearing 1 -11100011110 ammonium-perchlorate 1 -11100011110 Ikebukuro 1 -11100011110 communication-services 1 -11100011110 once-freewheeling 1 -11100011110 prepared-foods 1 -11100011110 mass-merchandised 1 -11100011110 photo-offset 1 -11100011110 613,500 1 -11100011110 delicatessen-meats 1 -11100011110 sequence-tagged 1 -11100011110 consumer-paint 1 -11100011110 infusion-therapy 1 -11100011110 more-centralized 1 -11100011110 travel-leisure 1 -11100011110 short-exposure 1 -11100011110 fruit-import 1 -11100011110 fiberglass-coffin 1 -11100011110 380-acre 1 -11100011110 corporate-entertainment 1 -11100011110 oil-transport 1 -11100011110 flask-repairing 1 -11100011110 unglamourous 1 -11100011110 land-resale 1 -11100011110 machinery-maker 1 -11100011110 agroindustrial 1 -11100011110 coalfired 1 -11100011110 medical-diagnostic-equipment 1 -11100011110 brokerage-service 1 -11100011110 automated-business-centers 1 -11100011110 petroleum-sensitive 1 -11100011110 commercial-production 1 -11100011110 shooting-sports 1 -11100011110 life-bestowing 1 -11100011110 fee-only 1 -11100011110 4-by-4 1 -11100011110 solar-thermal 1 -11100011110 geothermal-equipment 1 -11100011110 hydraulic-drill 1 -11100011110 directsales 1 -11100011110 heart-drug 1 -11100011110 gas-hungry 1 -11100011110 foreign-publishing 1 -11100011110 president-picking 1 -11100011110 process-systems 1 -11100011110 fiber-material 1 -11100011110 cheer-grabbing 1 -11100011110 fast-setting 2 -11100011110 third-sector 2 -11100011110 yard-line 2 -11100011110 consumer-durables 2 -11100011110 long-hoped-for 2 -11100011110 on-field 2 -11100011110 Z-171 2 -11100011110 president/prime 2 -11100011110 water-polo 2 -11100011110 agrichemicals 2 -11100011110 hard-news 2 -11100011110 family-restaurant 2 -11100011110 109th 2 -11100011110 charango 2 -11100011110 prison-sentencing 2 -11100011110 lewdness 2 -11100011110 surplus-reduction 2 -11100011110 dissimilarities 2 -11100011110 securities-management 2 -11100011110 electrical-computer 2 -11100011110 dimwit 2 -11100011110 theatrical-distribution 2 -11100011110 W.Z.63 2 -11100011110 annuity-issuing 2 -11100011110 missile-related 2 -11100011110 Congregational 2 -11100011110 haole 2 -11100011110 150-person 2 -11100011110 swankier 2 -11100011110 shrewish 2 -11100011110 commodities-based 2 -11100011110 unclassifed 2 -11100011110 baptizing 2 -11100011110 Iraqi-backed 2 -11100011110 hardest-working 2 -11100011110 lost-luggage 2 -11100011110 three-lawyer 2 -11100011110 factory-goods 2 -11100011110 fixed-asset 2 -11100011110 single-B-plus/B 2 -11100011110 multigenerational 2 -11100011110 surgical-products 2 -11100011110 electrical-apparatus 2 -11100011110 hypercube 2 -11100011110 R-49 2 -11100011110 darvon 2 -11100011110 38-foot 2 -11100011110 electricity-selling 2 -11100011110 fastestgrowing 2 -11100011110 Itaewon 2 -11100011110 gabled 2 -11100011110 self-prescribed 2 -11100011110 falling-domino 2 -11100011110 artificial-reef 2 -11100011110 blackbird 2 -11100011110 alternate-channel 2 -11100011110 Thursday-night 2 -11100011110 now-idled 2 -11100011110 risk-sharing 2 -11100011110 sparc 2 -11100011110 100-plane 2 -11100011110 record-distribution 2 -11100011110 hotel-motel 2 -11100011110 residential-carpeting 2 -11100011110 tuxedo-clad 3 -11100011110 foreign-content 3 -11100011110 hedonist 3 -11100011110 de-nuclearization 3 -11100011110 front-door 3 -11100011110 non-beer 3 -11100011110 16-pound 3 -11100011110 anti-Iran 3 -11100011110 ShopKo 3 -11100011110 joint-custody 3 -11100011110 rotary-shaver 3 -11100011110 finished-apparel 3 -11100011110 rankest 3 -11100011110 supersized 3 -11100011110 non-publishing 3 -11100011110 fund-manager 3 -11100011110 Martex 3 -11100011110 tradeable-goods 3 -11100011110 hands-down 3 -11100011110 UAA 3 -11100011110 tiering 3 -11100011110 current-day 3 -11100011110 Mentadent 3 -11100011110 market-failure 3 -11100011110 Do-It-Yourself 3 -11100011110 bond-underwriting 3 -11100011110 stop-go 3 -11100011110 ninth-grade 3 -11100011110 spend-down 3 -11100011110 non-refining 3 -11100011110 lexical 3 -11100011110 development-cycle 3 -11100011110 H2-receptor 3 -11100011110 vibratory 3 -11100011110 check-printing 3 -11100011110 interpretivist 3 -11100011110 home-affairs 3 -11100011110 then-new 4 -11100011110 poshest 4 -11100011110 BAC-111 4 -11100011110 Kindred 4 -11100011110 equal-value 4 -11100011110 24-inch 4 -11100011110 pro-Communist 4 -11100011110 teen-oriented 4 -11100011110 frumpy 4 -11100011110 steady-as-you-go 4 -11100011110 first-in-the-nation 4 -11100011110 large-computer 4 -11100011110 redistributionist 4 -11100011110 pre-1967 4 -11100011110 Pantene 4 -11100011110 400-acre 4 -11100011110 populistic 4 -11100011110 unquantifiable 4 -11100011110 oldtime 4 -11100011110 highland 4 -11100011110 God-given 4 -11100011110 overnight-express 4 -11100011110 fair-share 5 -11100011110 mega 5 -11100011110 back-seat 5 -11100011110 state-approved 5 -11100011110 barbarous 5 -11100011110 calcium-channel 5 -11100011110 sermonizing 5 -11100011110 noncore 5 -11100011110 voyeuristic 5 -11100011110 nondegradable 5 -11100011110 trailblazing 5 -11100011110 Naderite 5 -11100011110 pagan 5 -11100011110 Feinbloom 5 -11100011110 Yuletide 5 -11100011110 Beerman 5 -11100011110 gunnery 6 -11100011110 master-planned 6 -11100011110 Pooh 6 -11100011110 slothful 6 -11100011110 Erbenheim 6 -11100011110 pre-crisis 6 -11100011110 29000 6 -11100011110 nativist 6 -11100011110 more-lucrative 6 -11100011110 386i 6 -11100011110 wellknown 6 -11100011110 single-cell 6 -11100011110 collectivized 6 -11100011110 Dumb 7 -11100011110 zippy 7 -11100011110 crabby 7 -11100011110 soft-landing 7 -11100011110 Sleeper 7 -11100011110 purchasing-power-parity 7 -11100011110 top-management 8 -11100011110 200-year-old 8 -11100011110 non-pharmaceutical 8 -11100011110 100-plus 8 -11100011110 high-society 8 -11100011110 fresh-fruit 8 -11100011110 performance-oriented 8 -11100011110 mid-priced 8 -11100011110 zero-tolerance 8 -11100011110 clannish 8 -11100011110 higher-return 8 -11100011110 worn-out 9 -11100011110 feel-good 9 -11100011110 5890 9 -11100011110 sinuous 9 -11100011110 once-mighty 9 -11100011110 new-style 9 -11100011110 27000 9 -11100011110 migratory 10 -11100011110 glittery 10 -11100011110 non-tobacco 11 -11100011110 non-hospital 11 -11100011110 Equalizer 11 -11100011110 return-on-equity 11 -11100011110 1100 11 -11100011110 super-majority 12 -11100011110 holistic 12 -11100011110 raspberry 12 -11100011110 single-party 12 -11100011110 14-state 13 -11100011110 creaky 14 -11100011110 McSleep 15 -11100011110 gridiron 15 -11100011110 1-to-1 16 -11100011110 mercantile 17 -11100011110 pre-game 17 -11100011110 non-regulated 17 -11100011110 putative 18 -11100011110 28000 18 -11100011110 Satanic 18 -11100011110 odds-on 19 -11100011110 prewar 20 -11100011110 much-criticized 20 -11100011110 subconscious 21 -11100011110 pre-war 22 -11100011110 garden-variety 23 -11100011110 non-core 25 -11100011110 1986-1987 26 -11100011110 high-margin 26 -11100011110 summertime 29 -11100011110 sublime 31 -11100011110 fee-for-service 32 -11100011110 free-spending 33 -11100011110 rough-and-tumble 33 -11100011110 bedrock 39 -11100011110 feudal 42 -11100011110 bread-and-butter 48 -11100011110 eldest 49 -11100011110 long-held 64 -11100011110 famed 66 -11100011110 freewheeling 69 -11100011110 new-found 85 -11100011110 far-flung 128 -11100011110 twin 179 -11100011110 customary 181 -11100011110 royal 183 -11100011110 founding 374 -11100011110 collective 435 -11100011110 premier 444 -11100011110 core 1562 -11100011110 usual 1676 -11100011110 normal 2016 -11100011110 traditional 2548 -11100011110 prime 2673 -11100011110 basic 2635 -11100011111 857-fund 1 -11100011111 ten-largest 1 -11100011111 nonperforming-asset 1 -11100011111 pollenation 1 -11100011111 quality-testing 1 -11100011111 13-center 1 -11100011111 5842 1 -11100011111 Wagneroid 1 -11100011111 flight-propulsion 1 -11100011111 marshmallow-coated 1 -11100011111 Labor-Tory 1 -11100011111 tariff-eliminating 1 -11100011111 11-dealer 1 -11100011111 call-ins 1 -11100011111 17-city 1 -11100011111 clematis-obliterated 1 -11100011111 bull-in-a-china-shop 1 -11100011111 compleat 1 -11100011111 Famicos 1 -11100011111 sunglasses-and-floppy-hat 1 -11100011111 on-side 1 -11100011111 real-estate-development 1 -11100011111 Dutch-flag 1 -11100011111 give-it-to-the-employees 1 -11100011111 double-key 1 -11100011111 animal-chiropractic 1 -11100011111 deep-pile 1 -11100011111 balarney 1 -11100011111 Denver-Chicago 1 -11100011111 rightfield 1 -11100011111 executive-development 1 -11100011111 nearmost 1 -11100011111 Heytesbury-Carisbrook 1 -11100011111 gas-compression 1 -11100011111 animal-import 1 -11100011111 inflation-slaying 1 -11100011111 end-of-the-cycle 1 -11100011111 solar-control 1 -11100011111 48-cents-to-the-dollar 1 -11100011111 fifth-greatest 1 -11100011111 snakeoil 1 -11100011111 catchment 1 -11100011111 recessedcross 1 -11100011111 no-big-deal 1 -11100011111 job-rich 1 -11100011111 unwired-network 1 -11100011111 Rivercenter 1 -11100011111 horse-training 1 -11100011111 dam-and-canal 1 -11100011111 cable-laying 1 -11100011111 new-house 1 -11100011111 16,000-window 1 -11100011111 pre-marked 1 -11100011111 LegiSlate 1 -11100011111 slate-covered 1 -11100011111 not-so-fine 1 -11100011111 post-oil 1 -11100011111 sun-warmed 1 -11100011111 771,900-share 1 -11100011111 left-turn 1 -11100011111 capital-budget 1 -11100011111 second-best-known 1 -11100011111 story-one 1 -11100011111 sand-filled 1 -11100011111 350,000-kilowatt 1 -11100011111 blastfurnace 1 -11100011111 ice-crusted 1 -11100011111 MoneyMaker 1 -11100011111 stage-dominating 1 -11100011111 video-disk 1 -11100011111 Ebisu 1 -11100011111 Benda 1 -11100011111 legal-watchdog 1 -11100011111 areca 1 -11100011111 rear-opening 1 -11100011111 mee 1 -11100011111 once-struggling 1 -11100011111 boot-camp-like 1 -11100011111 compactdisk 1 -11100011111 antiwave 1 -11100011111 presidential-library 1 -11100011111 membrane-based 1 -11100011111 multilateral-accord 1 -11100011111 125-day 1 -11100011111 twin-rail 1 -11100011111 shag-carpeted 1 -11100011111 835-member 1 -11100011111 daily-use 1 -11100011111 mahogany-lined 1 -11100011111 ultralow 1 -11100011111 tank-like 1 -11100011111 4,789 1 -11100011111 credit-bureau 1 -11100011111 perspectival 1 -11100011111 Burgan 1 -11100011111 office-commercial 1 -11100011111 opera-house 1 -11100011111 mass-interview 1 -11100011111 Giants-Broncos 1 -11100011111 less-dense 1 -11100011111 fourth-and-one 1 -11100011111 270-foot-long 1 -11100011111 Sagmore 1 -11100011111 chemical-aging 1 -11100011111 70-chip 1 -11100011111 wide-opened 1 -11100011111 far-less-inhibited 1 -11100011111 1,100-acre 1 -11100011111 LIPA-nominated 1 -11100011111 nattiest 1 -11100011111 clothes-make-the-woman 1 -11100011111 libel-proof 1 -11100011111 7.2-mile 1 -11100011111 below-investment 1 -11100011111 long-stated 1 -11100011111 268-seat 1 -11100011111 AmEx 1 -11100011111 tight-budget 1 -11100011111 66-acre 1 -11100011111 Pontiac-East 1 -11100011111 most-serious 1 -11100011111 import-devastated 1 -11100011111 37th-floor 1 -11100011111 direct-selling 1 -11100011111 cholesterol-stripping 1 -11100011111 industry-dominated 1 -11100011111 four-tower 1 -11100011111 neatest 1 -11100011111 Democrat-led 1 -11100011111 no-increase-in-premiums 1 -11100011111 COLLECTS 1 -11100011111 video-arcade 1 -11100011111 print-developing 1 -11100011111 glass-and-stone 1 -11100011111 Grecian-style 1 -11100011111 still-sluggish 1 -11100011111 character-baring 1 -11100011111 conterfeits 1 -11100011111 LEYLAND 1 -11100011111 early-shift 1 -11100011111 minority-counsel 1 -11100011111 power-behind-the-throne 1 -11100011111 high-school-pitching 1 -11100011111 BMD 1 -11100011111 soil-borne 1 -11100011111 advertising-review 1 -11100011111 gooky 1 -11100011111 course-development 1 -11100011111 no-longer-smiling 1 -11100011111 chopped-down 1 -11100011111 post-liberation 1 -11100011111 then-senior 1 -11100011111 10-seat 1 -11100011111 two-plant 1 -11100011111 personnel-selection 1 -11100011111 13-for-24 1 -11100011111 Interstate-4 1 -11100011111 pan-tribal 1 -11100011111 Amvets 1 -11100011111 Nelwyn 1 -11100011111 357-seat 1 -11100011111 guilty-conscience 1 -11100011111 sewer-repair 1 -11100011111 24th-floor 1 -11100011111 local-control 1 -11100011111 three-round 1 -11100011111 grant-making 1 -11100011111 GP-38 1 -11100011111 self-discribed 1 -11100011111 visitor-message 1 -11100011111 Bengals-Browns 1 -11100011111 then-thriving 1 -11100011111 ex-star 1 -11100011111 lower-energy-price 1 -11100011111 electrical-controls 1 -11100011111 draft-avoidance 1 -11100011111 condenser 1 -11100011111 150-ton 1 -11100011111 portrait-studded 1 -11100011111 third-slowest 1 -11100011111 penalty-lending 1 -11100011111 seven-night 1 -11100011111 high-dividend-yield 1 -11100011111 health-maintanence 1 -11100011111 Eisenberg-Superfon 1 -11100011111 highly-touted 1 -11100011111 dead-wrong 1 -11100011111 then-election 1 -11100011111 semidetached 1 -11100011111 nomination-and-confirmation 1 -11100011111 Esso-Shell 1 -11100011111 Taglu 1 -11100011111 five-alarm 1 -11100011111 methadrine 1 -11100011111 Mayer-Jenkins 1 -11100011111 broadcast-property 1 -11100011111 shop-within-a-shop 1 -11100011111 second-most-popular 1 -11100011111 rudderman/team 1 -11100011111 37-member 1 -11100011111 S.O.S 1 -11100011111 310th 1 -11100011111 glasnost-as-publicity 1 -11100011111 black-leather-jacket 1 -11100011111 end-stage 2 -11100011111 11-city 2 -11100011111 rattletrap 2 -11100011111 evangelistic 2 -11100011111 three-foot-thick 2 -11100011111 once-feared 2 -11100011111 intravenous-solutions 2 -11100011111 transportion 2 -11100011111 Peco 2 -11100011111 eight-acre 2 -11100011111 balance-the-budget 2 -11100011111 fantastical 2 -11100011111 second-fastest 2 -11100011111 halfday 2 -11100011111 nonconstructive 2 -11100011111 Dalts 2 -11100011111 AMC-Jeep-Renault 2 -11100011111 once-touted 2 -11100011111 200-room 2 -11100011111 100,000th 2 -11100011111 350-seat 2 -11100011111 Pacific-coast 2 -11100011111 bureaucracy-bound 2 -11100011111 12-country 2 -11100011111 best-played 2 -11100011111 executive-office 2 -11100011111 1.5-million-acre 2 -11100011111 economic-planning 2 -11100011111 bone-loss 2 -11100011111 homelier 2 -11100011111 textile-fibers 2 -11100011111 invariable 2 -11100011111 49-nation 2 -11100011111 internal-affairs 2 -11100011111 international-leasing 2 -11100011111 top-ten 2 -11100011111 vilest 2 -11100011111 SCA-Peaudouce 2 -11100011111 shiny-domed 2 -11100011111 no-inflation 2 -11100011111 drug-making 2 -11100011111 oilcloth-covered 2 -11100011111 750th 2 -11100011111 42-member 2 -11100011111 sex-changed 2 -11100011111 sudsy 2 -11100011111 577-seat 2 -11100011111 148th 2 -11100011111 acceptance-speech 2 -11100011111 two-store 2 -11100011111 23-acre 2 -11100011111 quacking 2 -11100011111 Italian-owned 2 -11100011111 Bullfrog 2 -11100011111 capital-based 2 -11100011111 long-moribund 2 -11100011111 pre-accident 2 -11100011111 since-discontinued 2 -11100011111 350-person 2 -11100011111 fuel-pump 2 -11100011111 900-employee 2 -11100011111 May/June 2 -11100011111 earlier-generation 2 -11100011111 top-priced 2 -11100011111 dirt-floor 2 -11100011111 post-1917 2 -11100011111 gray-flannel 2 -11100011111 westernmost 2 -11100011111 now-useless 2 -11100011111 1,000-ton 2 -11100011111 wifely 2 -11100011111 99-store 2 -11100011111 Conservative-dominated 2 -11100011111 accounting-principles 2 -11100011111 crude-purchasing 2 -11100011111 Beartooth-Absaroka 2 -11100011111 son-of-immigrants 2 -11100011111 last-round 2 -11100011111 rarified 2 -11100011111 84-acre 2 -11100011111 14-person 2 -11100011111 520-acre 2 -11100011111 two-committee 2 -11100011111 ferris 2 -11100011111 blood-soaked 2 -11100011111 unalluring 2 -11100011111 559-member 2 -11100011111 fifth-most-active 2 -11100011111 election-minded 2 -11100011111 four-year-long 2 -11100011111 Pulitzer-winning 2 -11100011111 blood-forming 2 -11100011111 six-room 2 -11100011111 925,340 2 -11100011111 then-unprofitable 2 -11100011111 Spontex 2 -11100011111 133rd 2 -11100011111 charcoal-broiled 2 -11100011111 import-plagued 2 -11100011111 CBOT. 2 -11100011111 Cowboys-Bears 2 -11100011111 talc-producing 2 -11100011111 oil-slicked 2 -11100011111 carnival-style 2 -11100011111 BBMC 2 -11100011111 post-summer 2 -11100011111 Danilov 2 -11100011111 60-acre 2 -11100011111 long-sheltered 2 -11100011111 Saranac 2 -11100011111 harder-line 2 -11100011111 unmapped 2 -11100011111 most-celebrated 2 -11100011111 once-common 2 -11100011111 over-arching 2 -11100011111 army-officer 2 -11100011111 coca-rich 2 -11100011111 unenhanced 2 -11100011111 sold-off 2 -11100011111 eight-day-old 2 -11100011111 often-expressed 2 -11100011111 overaggressive 2 -11100011111 6-foot-1-inch 2 -11100011111 post-1981 2 -11100011111 7,000-acre 2 -11100011111 tanker-loading 2 -11100011111 Saudi-led 2 -11100011111 pace-car 2 -11100011111 unappreciative 2 -11100011111 Obed 2 -11100011111 33,000-member 2 -11100011111 post-Olympics 2 -11100011111 Waihi 2 -11100011111 shrillest 2 -11100011111 shirt-sleeve 2 -11100011111 RVS 2 -11100011111 113,200 2 -11100011111 Yongzheng 2 -11100011111 cow-town 2 -11100011111 800-year-old 2 -11100011111 10th-floor 2 -11100011111 hermetic 3 -11100011111 most-wanted 3 -11100011111 fourth-most-active 3 -11100011111 bestknown 3 -11100011111 Jovian 3 -11100011111 equipment-finance 3 -11100011111 Nixon-era 3 -11100011111 urban-design 3 -11100011111 70,000-kilowatt 3 -11100011111 500-employee 3 -11100011111 132-year-old 3 -11100011111 CDC. 3 -11100011111 pension-tax 3 -11100011111 often-ignored 3 -11100011111 Stamford-based 3 -11100011111 government-systems 3 -11100011111 thrice-weekly 3 -11100011111 evening-length 3 -11100011111 Glenfiddich 3 -11100011111 gravel-voiced 3 -11100011111 250-seat 3 -11100011111 artery-clogging 3 -11100011111 7,800-member 3 -11100011111 dozen-member 3 -11100011111 twin-tower 3 -11100011111 18-mile 3 -11100011111 85-plus 3 -11100011111 35-member 3 -11100011111 funds-management 3 -11100011111 oak-paneled 3 -11100011111 orange-squash 3 -11100011111 close-cropped 3 -11100011111 much-talked-about 3 -11100011111 137-year-old 3 -11100011111 44th 3 -11100011111 unified-market 3 -11100011111 self-titled 3 -11100011111 shiniest 3 -11100011111 no-buy 3 -11100011111 drug-policy 3 -11100011111 98th 3 -11100011111 800-pound 3 -11100011111 soul-stirring 3 -11100011111 long-battered 3 -11100011111 national-car 3 -11100011111 Comm/Scope 3 -11100011111 presidential-campaign 3 -11100011111 pre-listing 3 -11100011111 aw-shucks 3 -11100011111 bushy-tailed 3 -11100011111 traffic-clogged 3 -11100011111 health-claims 4 -11100011111 commodity-basket 4 -11100011111 easternmost 4 -11100011111 government-operated 4 -11100011111 bullet-shaped 4 -11100011111 asset-liability 4 -11100011111 all-business 4 -11100011111 illfated 4 -11100011111 unctuous 4 -11100011111 nearterm 4 -11100011111 Carter-Reagan 4 -11100011111 much-photographed 4 -11100011111 Drexel-related 4 -11100011111 first-act 4 -11100011111 unblinking 4 -11100011111 anti-Mafia 4 -11100011111 hairless 4 -11100011111 paleolithic 4 -11100011111 hardiest 4 -11100011111 hard-set 4 -11100011111 hard-rock 4 -11100011111 80,000-square-foot 4 -11100011111 carnival-like 4 -11100011111 Democratic-dominated 4 -11100011111 untiring 4 -11100011111 April-May 4 -11100011111 9-foot 4 -11100011111 27-member 4 -11100011111 ex-officio 5 -11100011111 ever-vigilant 5 -11100011111 fledging 5 -11100011111 424,137 5 -11100011111 now-profitable 5 -11100011111 penultimate 5 -11100011111 free-flowing 5 -11100011111 Grasberg 5 -11100011111 Democratic-led 5 -11100011111 sixth-floor 5 -11100011111 hardscrabble 5 -11100011111 mud-walled 5 -11100011111 20-month-old 5 -11100011111 pseudonymous 5 -11100011111 20-story 5 -11100011111 Phillips-head 5 -11100011111 detentist 5 -11100011111 grain-merchandising 5 -11100011111 hind 5 -11100011111 record-long 5 -11100011111 Secord-Hakim 5 -11100011111 70-mile 5 -11100011111 mid-to-high 5 -11100011111 market-basket 5 -11100011111 115-year-old 5 -11100011111 just-signed 5 -11100011111 scandal-tainted 5 -11100011111 80-member 5 -11100011111 often-volatile 5 -11100011111 site-selection 5 -11100011111 snow-covered 5 -11100011111 second-leading 5 -11100011111 third-leading 5 -11100011111 Baltimore-Washington 5 -11100011111 44-story 5 -11100011111 110-year-old 5 -11100011111 250-member 5 -11100011111 best-quality 6 -11100011111 inglorious 6 -11100011111 softest 6 -11100011111 ever-popular 6 -11100011111 11-acre 6 -11100011111 A-330/A-340 6 -11100011111 ESOP. 6 -11100011111 Johnson-led 6 -11100011111 four-acre 6 -11100011111 eight-man 6 -11100011111 once-highflying 6 -11100011111 U.S.-dominated 6 -11100011111 debt-negotiating 6 -11100011111 450-seat 6 -11100011111 four-state 6 -11100011111 number-one 6 -11100011111 incantatory 6 -11100011111 IBM-Fujitsu 6 -11100011111 serpentine 7 -11100011111 eight-nation 7 -11100011111 already-high 7 -11100011111 fifth-grade 7 -11100011111 credit-sensitive 7 -11100011111 300-acre 7 -11100011111 autumnal 7 -11100011111 much-coveted 7 -11100011111 once-moribund 7 -11100011111 once-unthinkable 7 -11100011111 right-field 7 -11100011111 Wayzata 7 -11100011111 trouble-plagued 7 -11100011111 24-member 7 -11100011111 lowest-price 7 -11100011111 23,000-member 7 -11100011111 5,000-member 7 -11100011111 eight-person 7 -11100011111 prodigal 8 -11100011111 stickiest 8 -11100011111 oft-quoted 8 -11100011111 once-huge 8 -11100011111 151-country 8 -11100011111 hard-scrabble 8 -11100011111 MD-88 8 -11100011111 end-of-year 8 -11100011111 metro-area 8 -11100011111 500th 9 -11100011111 eight-currency 9 -11100011111 28-member 9 -11100011111 90th 9 -11100011111 dual-stock 9 -11100011111 Jarvik-7 9 -11100011111 service-tax 9 -11100011111 verdant 10 -11100011111 Ekofisk 10 -11100011111 Jokhang 10 -11100011111 400-meter 10 -11100011111 madcap 10 -11100011111 dumbest 10 -11100011111 1,000th 11 -11100011111 nine-state 11 -11100011111 25-member 11 -11100011111 Cyber 11 -11100011111 401st 11 -11100011111 Cabinda 11 -11100011111 five-state 11 -11100011111 once-troubled 12 -11100011111 Allenhurst 12 -11100011111 83-year-old 12 -11100011111 almighty 12 -11100011111 liquid-soap 13 -11100011111 13-nation 13 -11100011111 wood-paneled 13 -11100011111 RJR-Shearson 13 -11100011111 southernmost 13 -11100011111 Himalayan 14 -11100011111 nether 14 -11100011111 unenviable 15 -11100011111 long-troubled 15 -11100011111 two-unit 15 -11100011111 much-maligned 15 -11100011111 inimitable 16 -11100011111 immortal 16 -11100011111 left-hand 16 -11100011111 MIA 17 -11100011111 100-member 17 -11100011111 irrepressible 17 -11100011111 100-meter 18 -11100011111 least-expensive 18 -11100011111 85-year-old 19 -11100011111 eight-month-old 19 -11100011111 four-nation 19 -11100011111 now-famous 19 -11100011111 holiest 19 -11100011111 18-month-old 20 -11100011111 75th 20 -11100011111 ostensible 21 -11100011111 likeliest 22 -11100011111 87-year-old 23 -11100011111 august 23 -11100011111 buffer-stock 24 -11100011111 long-depressed 25 -11100011111 problem-plagued 26 -11100011111 unratified 26 -11100011111 much-ballyhooed 26 -11100011111 post-Reagan 28 -11100011111 obligatory 31 -11100011111 200th 31 -11100011111 ever-present 32 -11100011111 illustrious 33 -11100011111 18-member 35 -11100011111 rightful 36 -11100011111 VS 37 -11100011111 ornate 39 -11100011111 acquisitive 39 -11100011111 70th 40 -11100011111 proverbial 41 -11100011111 non-airline 44 -11100011111 fabled 44 -11100011111 all-important 44 -11100011111 age-old 45 -11100011111 top-ranked 45 -11100011111 requisite 48 -11100011111 reigning 49 -11100011111 eight-member 49 -11100011111 loss-ridden 53 -11100011111 go-go 56 -11100011111 vaunted 58 -11100011111 inaugural 59 -11100011111 quintessential 61 -11100011111 nascent 62 -11100011111 upcoming 91 -11100011111 100th 98 -11100011111 half-day 102 -11100011111 12-nation 102 -11100011111 ensuing 104 -11100011111 overriding 127 -11100011111 ill-fated 132 -11100011111 Exchequer 163 -11100011111 nearest 178 -11100011111 elder 184 -11100011111 beleaguered 233 -11100011111 hottest 280 -11100011111 newest 297 -11100011111 upper 677 -11100011111 ultimate 677 -11100011111 sole 784 -11100011111 entire 2955 -11100011111 main 4341 -11100011111 remaining 3832 -1110010000 slam-bang 1 -1110010000 less-accommodative 1 -1110010000 poison-penned 1 -1110010000 renovation-based 1 -1110010000 construction-based 1 -1110010000 hyper-inflated 1 -1110010000 high-up 1 -1110010000 capital-starved 1 -1110010000 underproducing 1 -1110010000 much-diminished 1 -1110010000 record-closing 1 -1110010000 Hollander-style 1 -1110010000 too-accommodative 1 -1110010000 no-recession 1 -1110010000 dogma-induced 1 -1110010000 slight-to-moderate 1 -1110010000 febrile 1 -1110010000 star-filled 1 -1110010000 moving. 1 -1110010000 untraveled 1 -1110010000 Y-pattern 1 -1110010000 less-promising 1 -1110010000 once-towering 1 -1110010000 subsidy-based 1 -1110010000 socialist-based 1 -1110010000 boggled 1 -1110010000 40-person-per-minute 1 -1110010000 more-robust 1 -1110010000 humanoid 1 -1110010000 10-to-one 1 -1110010000 wipe-on 1 -1110010000 too-robust 1 -1110010000 Guidici 1 -1110010000 domestic-demand-led 1 -1110010000 intra-community 1 -1110010000 market-organized 1 -1110010000 Creole-style 1 -1110010000 ex-first 1 -1110010000 temptationan 1 -1110010000 still-buoyant 1 -1110010000 securities-transactions 1 -1110010000 still-hot 1 -1110010000 single-industry-based 1 -1110010000 divine-right 1 -1110010000 chin-wagging 1 -1110010000 correlative 1 -1110010000 market-dominated 1 -1110010000 Applelike 1 -1110010000 pro-economic 1 -1110010000 freer-market 1 -1110010000 Vacationland 2 -1110010000 recession-prone 2 -1110010000 sorrier 2 -1110010000 .03 2 -1110010000 ad-revenue 2 -1110010000 self-generating 2 -1110010000 cost-heavy 2 -1110010000 two-digit 2 -1110010000 32nd-largest 2 -1110010000 four-months 2 -1110010000 greater-than-usual 2 -1110010000 socialist-oriented 2 -1110010000 factory-sector 2 -1110010000 illgotten 2 -1110010000 timed-release 2 -1110010000 healthier-than-expected 2 -1110010000 photo-finish 2 -1110010000 thin-margin 2 -1110010000 nine-iron 2 -1110010000 good-size 2 -1110010000 peppier 2 -1110010000 half-heart 2 -1110010000 stock-for-debt 2 -1110010000 inflation-stable 2 -1110010000 wiggy 2 -1110010000 well. 2 -1110010000 too-powerful 2 -1110010000 greenmailing 2 -1110010000 well-formulated 2 -1110010000 nonaddictive 3 -1110010000 incentive-driven 3 -1110010000 skull-and-crossbones 3 -1110010000 path-breaking 3 -1110010000 production-oriented 3 -1110010000 food-away-from-home 3 -1110010000 small-truck 3 -1110010000 more-relaxed 3 -1110010000 140-yen 3 -1110010000 topspin 3 -1110010000 hospital-cost 3 -1110010000 rapidfire 3 -1110010000 too-strong 3 -1110010000 lower-than-usual 3 -1110010000 tortoise-like 3 -1110010000 weaker-than-anticipated 3 -1110010000 Ronzoni 3 -1110010000 spritely 3 -1110010000 demand-driven 4 -1110010000 pro-dollar 4 -1110010000 four-foot-long 4 -1110010000 suprising 4 -1110010000 120-yen 4 -1110010000 genocidal 4 -1110010000 price-driven 4 -1110010000 legit 5 -1110010000 bone-dry 5 -1110010000 bouyant 5 -1110010000 better-balanced 5 -1110010000 dotty 5 -1110010000 pre-1984 5 -1110010000 reportable 5 -1110010000 well-researched 6 -1110010000 midgrade 6 -1110010000 more-modest 6 -1110010000 has-been 7 -1110010000 softer-than-expected 7 -1110010000 flattish 7 -1110010000 mini-refunding 7 -1110010000 multi-million 7 -1110010000 too-rapid 7 -1110010000 broadbased 7 -1110010000 full-grown 7 -1110010000 business-to-business 7 -1110010000 boffo 7 -1110010000 liquidity-driven 7 -1110010000 prostrate 8 -1110010000 service-based 8 -1110010000 better-than-anticipated 8 -1110010000 faster-than-expected 8 -1110010000 fourth-year 8 -1110010000 free-falling 8 -1110010000 trigger-happy 8 -1110010000 rip-roaring 9 -1110010000 constricting 9 -1110010000 holiday-season 9 -1110010000 fast-forward 9 -1110010000 much-improved 9 -1110010000 svelte 10 -1110010000 Germanic 10 -1110010000 low-inflation 10 -1110010000 state-dominated 10 -1110010000 less-than-expected 10 -1110010000 leaden 11 -1110010000 patchy 11 -1110010000 normalized 11 -1110010000 above-target 11 -1110010000 pro-U.S. 11 -1110010000 ravenous 11 -1110010000 record-low 12 -1110010000 fast-rising 13 -1110010000 consumer-driven 14 -1110010000 recession-free 15 -1110010000 greater-than-expected 16 -1110010000 stupendous 16 -1110010000 well-balanced 17 -1110010000 worse-than-expected 17 -1110010000 free-floating 18 -1110010000 weaker-than-expected 18 -1110010000 razor-thin 20 -1110010000 noninflationary 21 -1110010000 crummy 21 -1110010000 non-inflationary 22 -1110010000 ho-hum 23 -1110010000 checkered 24 -1110010000 lower-than-anticipated 25 -1110010000 untaxed 25 -1110010000 red-hot 26 -1110010000 grudging 27 -1110010000 subpar 27 -1110010000 slower-than-expected 30 -1110010000 puny 35 -1110010000 breakneck 36 -1110010000 hearty 37 -1110010000 sizzling 38 -1110010000 voracious 44 -1110010000 just-in-time 45 -1110010000 torrid 46 -1110010000 resurgent 51 -1110010000 single-digit 51 -1110010000 slackening 56 -1110010000 tepid 58 -1110010000 skimpy 70 -1110010000 stellar 78 -1110010000 stronger-than-expected 79 -1110010000 moribund 79 -1110010000 spotty 96 -1110010000 phenomenal 102 -1110010000 better-than-expected 134 -1110010000 flagging 135 -1110010000 waning 160 -1110010000 faltering 166 -1110010000 sustainable 166 -1110010000 stagnant 173 -1110010000 lower-than-expected 179 -1110010000 meager 180 -1110010000 dwindling 181 -1110010000 mediocre 182 -1110010000 respectable 197 -1110010000 swift 204 -1110010000 buoyant 234 -1110010000 sagging 249 -1110010000 dismal 262 -1110010000 shaky 293 -1110010000 deteriorating 296 -1110010000 double-digit 366 -1110010000 slim 372 -1110010000 vigorous 390 -1110010000 lackluster 565 -1110010000 booming 686 -1110010000 robust 694 -1110010000 disappointing 895 -1110010000 tight 1114 -1110010000 sluggish 1137 -1110010000 solid 1196 -1110010000 rapid 1251 -1110010000 soft 1266 -1110010000 stable 1442 -1110010000 steady 1488 -1110010000 healthy 1665 -1110010000 strong 12171 -1110010000 weak 2776 -1110010001 79-year 1 -1110010001 houndstooth 1 -1110010001 golfer's-eye 1 -1110010001 two-ass 1 -1110010001 twittering 1 -1110010001 Kodak-powered 1 -1110010001 radio-factory 1 -1110010001 bareknuckles 1 -1110010001 wedding-eve 1 -1110010001 36D 1 -1110010001 1,300-square-foot 1 -1110010001 ten-dollar 1 -1110010001 post-win 1 -1110010001 buttoned-jacket 1 -1110010001 ready-to-fire 1 -1110010001 less-than-welcome 1 -1110010001 user-fee 1 -1110010001 beeg 1 -1110010001 286-foot 1 -1110010001 .216 1 -1110010001 keep-the-faith 1 -1110010001 dad-gummed 1 -1110010001 922-page 1 -1110010001 spare-time 1 -1110010001 doctor-prescribed 1 -1110010001 sun-punished 1 -1110010001 faster-track 1 -1110010001 Mafia/soccer 1 -1110010001 good-luck 1 -1110010001 buddy-cop-adventure 1 -1110010001 rock-'n'-roll 1 -1110010001 neoclassic/Renaissance/romantic 1 -1110010001 political-consultative 1 -1110010001 child-like 1 -1110010001 27-day 1 -1110010001 300-square-yard 1 -1110010001 Jiji 1 -1110010001 125-foot 1 -1110010001 shot-clock 1 -1110010001 basalt 1 -1110010001 9,033 1 -1110010001 400-word 1 -1110010001 coping-with-stress 1 -1110010001 froggy 1 -1110010001 one-string 1 -1110010001 music-business 1 -1110010001 chauffered 1 -1110010001 turbocharged 1 -1110010001 Neuharth-authorized 1 -1110010001 mid-coital 1 -1110010001 40-hour-a-week 1 -1110010001 1,800-acre 1 -1110010001 film-noir 1 -1110010001 voice-steered 1 -1110010001 super-automated 1 -1110010001 phantasmagoric 1 -1110010001 old-hat 1 -1110010001 call-ahead 1 -1110010001 bottle-green 1 -1110010001 Greco-French 1 -1110010001 murmury 1 -1110010001 stevedore 1 -1110010001 19-foot-tall 1 -1110010001 dusty-looking 1 -1110010001 once-undoubted 1 -1110010001 .282 1 -1110010001 grease-caked 1 -1110010001 Christ-church 1 -1110010001 1,440-seat 1 -1110010001 pep-talk 1 -1110010001 Chinese-derived 1 -1110010001 draft-dodging 1 -1110010001 Nahuatl-Spanish 1 -1110010001 slenderer 1 -1110010001 72-pound 1 -1110010001 non-actionable 1 -1110010001 field-hospital 1 -1110010001 baby-blue 1 -1110010001 button-sewing 1 -1110010001 distinguished-sounding 1 -1110010001 285-seat 1 -1110010001 1,500-year-old 1 -1110010001 performance-life 1 -1110010001 messed-up 1 -1110010001 three-acre 1 -1110010001 nothing-to-worry-about 1 -1110010001 boarding-shed 1 -1110010001 366-page 1 -1110010001 33-foot 1 -1110010001 red-necked 1 -1110010001 Presleyan 1 -1110010001 stand-up-and-fight 1 -1110010001 nine-square-foot 1 -1110010001 Dadaist 1 -1110010001 wholesaler-storing 1 -1110010001 multiheaded 1 -1110010001 dish-warming 1 -1110010001 portfolio-manager 1 -1110010001 heart-melting 1 -1110010001 flag-clad 1 -1110010001 five-legged 1 -1110010001 Pittsburgh-bound 1 -1110010001 five-letter 1 -1110010001 film-rating 1 -1110010001 self-cleaning 1 -1110010001 Jewish-oriented 1 -1110010001 pro-Lautenberg 1 -1110010001 friendly-type 1 -1110010001 life-is-a-thwarted-dream-but-we-love-it-anyway 1 -1110010001 456-pound 1 -1110010001 long-barrel 1 -1110010001 536-page 1 -1110010001 five-room 1 -1110010001 religion-linked 1 -1110010001 50-tsubo 1 -1110010001 yogurt-like 1 -1110010001 shower-taking 1 -1110010001 lumpy-looking 1 -1110010001 dottering 1 -1110010001 none-too-private 1 -1110010001 414-acre 1 -1110010001 close-by 1 -1110010001 spirit-dampening 1 -1110010001 30-square-foot 1 -1110010001 three-sale 1 -1110010001 too-rigid 1 -1110010001 stone-solid 1 -1110010001 transitive 1 -1110010001 career-plus-home 1 -1110010001 six-column 1 -1110010001 semi-Disney 1 -1110010001 long-billed 1 -1110010001 toilet-tissue-like 1 -1110010001 ego-trip 1 -1110010001 free-spirit 1 -1110010001 late-in-life 1 -1110010001 cherry-red 1 -1110010001 barrel-like 1 -1110010001 Kelly-green 1 -1110010001 frost-promoting 1 -1110010001 250-foot 1 -1110010001 271-year-old 1 -1110010001 what's-so-funny 1 -1110010001 no-dancing 1 -1110010001 smashed-up 1 -1110010001 reverberant 1 -1110010001 Havana-Managua 1 -1110010001 tadpole 1 -1110010001 purple-striped 1 -1110010001 metal-eating 1 -1110010001 art-film 1 -1110010001 Portuguese-administered 1 -1110010001 lab-altered 1 -1110010001 prize-strewn 1 -1110010001 hand-stopped 1 -1110010001 pre-fab 1 -1110010001 hog-nosed 1 -1110010001 raw-fruit 1 -1110010001 Caponelike 1 -1110010001 high-brightness 1 -1110010001 pre-lapsarian 1 -1110010001 short-sleeve 1 -1110010001 continuous-casting 1 -1110010001 much-orphaned 1 -1110010001 culinary-minded 1 -1110010001 vote-trading 1 -1110010001 shtick-ridden 1 -1110010001 flat-top 1 -1110010001 honey-baritone 1 -1110010001 boardroom-and-bedroom 1 -1110010001 feminist-nationalist 1 -1110010001 textile-negotiator 1 -1110010001 13-foot-long 1 -1110010001 bell-roof 1 -1110010001 gin-sodden 1 -1110010001 non-espionage 1 -1110010001 deerstalker 1 -1110010001 marble-lined 1 -1110010001 page-description 1 -1110010001 trig 1 -1110010001 nontrendy 1 -1110010001 mud-caked 1 -1110010001 100-column 1 -1110010001 black-and-white-spotted 1 -1110010001 six-syllable 1 -1110010001 contrived-sounding 1 -1110010001 4,000-watt 1 -1110010001 color-sensitive 1 -1110010001 weird-tasting 1 -1110010001 parallel-bars 1 -1110010001 cartoon-strip 1 -1110010001 brown-shingle 1 -1110010001 hyperpituitary 1 -1110010001 mystical-action 1 -1110010001 mini-folk 1 -1110010001 pencil-shaped 1 -1110010001 brown-sugar 1 -1110010001 money-eating 1 -1110010001 cowled 1 -1110010001 close-clipped 1 -1110010001 roan-colored 1 -1110010001 patients-for 1 -1110010001 2,275,209 1 -1110010001 25-square-mile 1 -1110010001 five-carat 1 -1110010001 fifth-round 1 -1110010001 red-striped 1 -1110010001 gold-barrelled 1 -1110010001 much-wanted 1 -1110010001 168-page 1 -1110010001 less-cluttered 1 -1110010001 rifle-like 1 -1110010001 100,000-square 1 -1110010001 graffiti-inscribed 1 -1110010001 Columbo-like 1 -1110010001 lowgrade 1 -1110010001 inexplicit 1 -1110010001 non-difficult 1 -1110010001 war-free 1 -1110010001 more-absorbent 1 -1110010001 much-read 1 -1110010001 274-pound 1 -1110010001 no-hands 1 -1110010001 beauty-salon 1 -1110010001 50-fight 1 -1110010001 four-foot-thick 1 -1110010001 cartoon-cutout 1 -1110010001 lattice-like 1 -1110010001 pseudo-Hitchcockian 1 -1110010001 turned-up 1 -1110010001 champagne-toasting 1 -1110010001 just-printed 1 -1110010001 low-tax-rate 1 -1110010001 56-hour 1 -1110010001 trowel-rake 1 -1110010001 clear-plastic 1 -1110010001 freer-spending 1 -1110010001 spayed 1 -1110010001 pornographic-movie 1 -1110010001 socially-oriented 1 -1110010001 muchanticipated 1 -1110010001 mile-deep 1 -1110010001 Kramden-Norton 1 -1110010001 plant-dwelling 1 -1110010001 3,468-acre 1 -1110010001 Bona 1 -1110010001 16-story-high 1 -1110010001 no-cover-up 1 -1110010001 stunned-looking 1 -1110010001 small-fry 1 -1110010001 light-at-the-end-of-the-tunnel 1 -1110010001 double-padlocked 1 -1110010001 tarot-card 1 -1110010001 72-foot 1 -1110010001 post-diamond 1 -1110010001 .308 1 -1110010001 devil-red 1 -1110010001 blonde-bombshell 1 -1110010001 Broadway-type 1 -1110010001 threefoot 1 -1110010001 heart-treatment 1 -1110010001 nine-letter 1 -1110010001 close-fitting 1 -1110010001 tassled 1 -1110010001 self-reading 1 -1110010001 2,700-acre 1 -1110010001 staff-reported 1 -1110010001 paint-by-the-numbers 1 -1110010001 pug 1 -1110010001 diaper-like 1 -1110010001 284-year-old 1 -1110010001 protein-restricted 1 -1110010001 PQQ-deficient 1 -1110010001 metamorphic 1 -1110010001 medical-scientific 1 -1110010001 big-book 1 -1110010001 hot-cold 1 -1110010001 unlabored 1 -1110010001 214-page 1 -1110010001 news/bad 1 -1110010001 Daikini 1 -1110010001 safelooking 1 -1110010001 tossed-out 1 -1110010001 circulation-boosting 1 -1110010001 garden-sized 1 -1110010001 law-and-morality 1 -1110010001 historical-minded 1 -1110010001 print-and-electronic 1 -1110010001 low-strain 1 -1110010001 O2 1 -1110010001 seven-note 1 -1110010001 1,500-word 1 -1110010001 inlationary 1 -1110010001 drugsniffing 1 -1110010001 bamboo-framed 1 -1110010001 shoe-insert 1 -1110010001 liberal-capitalist 1 -1110010001 tie-less 1 -1110010001 dot-to-dot 1 -1110010001 Vader-like 1 -1110010001 five-garbage-can 1 -1110010001 western-cut 1 -1110010001 society-shaking 1 -1110010001 chrome-topped 1 -1110010001 close-run 1 -1110010001 crime-does-not-pay 1 -1110010001 mongered 1 -1110010001 wigmaker 1 -1110010001 two-million-dollar 1 -1110010001 riproaring 1 -1110010001 wheat-field-and-apple-pie 1 -1110010001 fat-restricted 1 -1110010001 drum-and-bell 1 -1110010001 telephone-aided 1 -1110010001 half-faced 1 -1110010001 diamond-and-emerald 1 -1110010001 no-writers-needed 1 -1110010001 54-year 1 -1110010001 dove-pork 1 -1110010001 success-through-voodoo 1 -1110010001 low-stress 1 -1110010001 165-foot-long 1 -1110010001 pleasant-sounding 1 -1110010001 market-inspiring 1 -1110010001 fair-to-good 1 -1110010001 minty 1 -1110010001 well-proportioned 1 -1110010001 blown-out 1 -1110010001 1468 1 -1110010001 multipage 1 -1110010001 ventilator-dependent 1 -1110010001 temple-centered 1 -1110010001 spinet 1 -1110010001 permanment 1 -1110010001 lay-of-the-land 1 -1110010001 pre-vacation 1 -1110010001 ROTC-like 1 -1110010001 488-acre 1 -1110010001 man-size 1 -1110010001 adventitious 1 -1110010001 sealed-off 1 -1110010001 pro-democratic 2 -1110010001 nondilutive 2 -1110010001 66-year 2 -1110010001 65-34 2 -1110010001 toy-like 2 -1110010001 euphonious 2 -1110010001 commercial-supported 2 -1110010001 wrong-minded 2 -1110010001 once-taboo 2 -1110010001 bigger-than-average 2 -1110010001 anti-black 2 -1110010001 Christian-Marxist 2 -1110010001 Cantaloupe 2 -1110010001 singleminded 2 -1110010001 parentless 2 -1110010001 black-eyed 2 -1110010001 harrow 2 -1110010001 gold-and-glass 2 -1110010001 half-bad 2 -1110010001 much-abused 2 -1110010001 55-foot 2 -1110010001 hosanna 2 -1110010001 hard-ball 2 -1110010001 rosin 2 -1110010001 feeble-minded 2 -1110010001 flat-chested 2 -1110010001 second-order 2 -1110010001 cold-shower 2 -1110010001 nonburning 2 -1110010001 low-sugar 2 -1110010001 not-very-subtle 2 -1110010001 halal 2 -1110010001 no-profit 2 -1110010001 economy-sensitive 2 -1110010001 Schubertian 2 -1110010001 non-direct 2 -1110010001 colorizes 2 -1110010001 23-pound 2 -1110010001 transiency 2 -1110010001 wild-haired 2 -1110010001 stress-free 2 -1110010001 infra 2 -1110010001 folky 2 -1110010001 loveable 2 -1110010001 news-bad 2 -1110010001 one-celled 2 -1110010001 two-CD 2 -1110010001 non-business-related 2 -1110010001 chesty 2 -1110010001 64-year 2 -1110010001 broad-brimmed 2 -1110010001 scatterbrained 2 -1110010001 Handelian 2 -1110010001 non-bona 2 -1110010001 low-earth 2 -1110010001 jesting 2 -1110010001 large-flowered 2 -1110010001 high-concept 2 -1110010001 metabolize 2 -1110010001 angelic 2 -1110010001 rebuttable 2 -1110010001 short-tempered 2 -1110010001 let-down 2 -1110010001 two-inch-thick 2 -1110010001 fabulous-looking 2 -1110010001 beta-blocker 2 -1110010001 fretless 2 -1110010001 manufacturing-oriented 2 -1110010001 42-year 2 -1110010001 black-and-red 2 -1110010001 Debussyan 2 -1110010001 sensation-seeking 2 -1110010001 many-headed 2 -1110010001 still-mysterious 2 -1110010001 13-part 2 -1110010001 30,000-member 2 -1110010001 lily-livered 2 -1110010001 push-up 3 -1110010001 good-hearted 3 -1110010001 biracial 3 -1110010001 cartoon-like 3 -1110010001 gamy 3 -1110010001 white-knuckle 3 -1110010001 cross-sectional 3 -1110010001 prideful 3 -1110010001 stonecrop 3 -1110010001 160-unit 3 -1110010001 heavyset 3 -1110010001 balletic 3 -1110010001 mortifying 3 -1110010001 peace-making 3 -1110010001 nonproduction 3 -1110010001 like. 3 -1110010001 bitty 3 -1110010001 hollowed-out 3 -1110010001 two-second 3 -1110010001 muddle-through 3 -1110010001 marvellous 3 -1110010001 quizzical 3 -1110010001 water-resistant 3 -1110010001 hydra-headed 3 -1110010001 man-bites-dog 3 -1110010001 tell-all 3 -1110010001 375-30 3 -1110010001 peachy 3 -1110010001 nine-to-five 3 -1110010001 stabler 3 -1110010001 late-breaking 4 -1110010001 waxy 4 -1110010001 wordy 4 -1110010001 sour-grapes 4 -1110010001 dopers 4 -1110010001 cut-and-paste 4 -1110010001 smart-aleck 4 -1110010001 project-related 4 -1110010001 cost-free 4 -1110010001 modish 4 -1110010001 kinda 4 -1110010001 high-style 4 -1110010001 V-shaped 4 -1110010001 public-good 4 -1110010001 judge-made 4 -1110010001 loveless 4 -1110010001 three-letter 4 -1110010001 doggie 4 -1110010001 carnal 4 -1110010001 ill-mannered 4 -1110010001 two-fisted 4 -1110010001 high-backed 4 -1110010001 woodsy 4 -1110010001 beaten-down 4 -1110010001 well-recognized 4 -1110010001 foxy 4 -1110010001 far-sighted 4 -1110010001 plumed 4 -1110010001 nonverbal 4 -1110010001 fluky 4 -1110010001 maladroit 4 -1110010001 multidimensional 4 -1110010001 fact-based 4 -1110010001 loping 4 -1110010001 Cucumber 4 -1110010001 tabloid-style 4 -1110010001 Berber 4 -1110010001 cornball 4 -1110010001 multilevel 4 -1110010001 high-falutin 4 -1110010001 straight-backed 4 -1110010001 pro-am 4 -1110010001 well-tried 4 -1110010001 well-reasoned 4 -1110010001 forgetful 5 -1110010001 cut-and-dried 5 -1110010001 not-so-good 5 -1110010001 well-chosen 5 -1110010001 yelping 5 -1110010001 dogeared 5 -1110010001 penitent 5 -1110010001 sappy 5 -1110010001 semicircular 5 -1110010001 unpolished 5 -1110010001 well-read 5 -1110010001 spiritless 5 -1110010001 screwball 5 -1110010001 hellish 5 -1110010001 1777 5 -1110010001 nutrient 5 -1110010001 meretricious 5 -1110010001 bandaged 5 -1110010001 crime-ridden 5 -1110010001 doggone 5 -1110010001 quasi-judicial 5 -1110010001 deathless 5 -1110010001 satiny 5 -1110010001 dumpy 5 -1110010001 maudlin 5 -1110010001 high-status 5 -1110010001 creased 5 -1110010001 doddering 5 -1110010001 wart 5 -1110010001 deniable 5 -1110010001 reductive 5 -1110010001 foul-mouthed 5 -1110010001 foppish 5 -1110010001 timorous 5 -1110010001 glimmering 5 -1110010001 pianissimo 5 -1110010001 turn-around 5 -1110010001 situational 5 -1110010001 slow-paced 5 -1110010001 preachy 5 -1110010001 screwy 5 -1110010001 cliched 5 -1110010001 people-oriented 5 -1110010001 flippant 6 -1110010001 voyeur 6 -1110010001 servile 6 -1110010001 contoured 6 -1110010001 table-pounding 6 -1110010001 ratty 6 -1110010001 sawed-off 6 -1110010001 rat-infested 6 -1110010001 none-too-subtle 6 -1110010001 bright-eyed 6 -1110010001 pre-ordained 6 -1110010001 convivial 6 -1110010001 clean-burning 6 -1110010001 querulous 6 -1110010001 talky 6 -1110010001 virginal 6 -1110010001 honeyed 6 -1110010001 freakish 6 -1110010001 Socratic 6 -1110010001 truculent 6 -1110010001 touchy-feely 6 -1110010001 cause-and-effect 6 -1110010001 goal-oriented 6 -1110010001 namby-pamby 7 -1110010001 horrid 7 -1110010001 forgivable 7 -1110010001 hale 7 -1110010001 bleakest 7 -1110010001 walk-through 7 -1110010001 raspy 7 -1110010001 buildable 7 -1110010001 pith 7 -1110010001 goddamn 7 -1110010001 guileless 7 -1110010001 spacey 7 -1110010001 catty 7 -1110010001 noontime 7 -1110010001 bang-up 7 -1110010001 salacious 7 -1110010001 spry 7 -1110010001 movie-star 7 -1110010001 fey 7 -1110010001 two-dimensional 8 -1110010001 nauseating 8 -1110010001 wearisome 8 -1110010001 tuneful 8 -1110010001 highfalutin 8 -1110010001 business-as-usual 8 -1110010001 backhanded 8 -1110010001 fill-in 8 -1110010001 trashy 8 -1110010001 plainer 8 -1110010001 lonesome 8 -1110010001 scowling 8 -1110010001 hoarse 8 -1110010001 scattershot 8 -1110010001 made-up 8 -1110010001 tatty 8 -1110010001 whodunit 9 -1110010001 BCS 9 -1110010001 tinny 9 -1110010001 song-and-dance 9 -1110010001 well-fed 9 -1110010001 slapdash 9 -1110010001 post-summit 9 -1110010001 cathartic 9 -1110010001 free-form 9 -1110010001 shopworn 9 -1110010001 hokey 9 -1110010001 puckish 9 -1110010001 surer 9 -1110010001 humongous 9 -1110010001 crackerjack 9 -1110010001 callow 9 -1110010001 junky 9 -1110010001 low-cut 9 -1110010001 serendipitous 10 -1110010001 Pollyanna 10 -1110010001 pie-in-the-sky 10 -1110010001 cockeyed 10 -1110010001 with-it 10 -1110010001 union-busting 10 -1110010001 wacko 10 -1110010001 girlish 10 -1110010001 seamy 10 -1110010001 roomy 10 -1110010001 suspenseful 11 -1110010001 cutesy 11 -1110010001 fingernail 11 -1110010001 dainty 11 -1110010001 not-so-subtle 11 -1110010001 leathery 11 -1110010001 boorish 11 -1110010001 felicitous 11 -1110010001 pro-growth 11 -1110010001 narrow-minded 11 -1110010001 rueful 11 -1110010001 frisky 11 -1110010001 virile 11 -1110010001 sophomoric 12 -1110010001 saner 12 -1110010001 beguiling 12 -1110010001 dejected 12 -1110010001 puffy 12 -1110010001 senile 12 -1110010001 cold-blooded 12 -1110010001 miserly 12 -1110010001 foggy 12 -1110010001 risque 12 -1110010001 frazzled 13 -1110010001 panoramic 13 -1110010001 Kafkaesque 13 -1110010001 dopey 13 -1110010001 vegetarian 13 -1110010001 manly 13 -1110010001 two-edged 13 -1110010001 riskless 14 -1110010001 fun-loving 14 -1110010001 make-believe 14 -1110010001 demure 14 -1110010001 woolly 14 -1110010001 thankless 14 -1110010001 nutty 14 -1110010001 sneaky 14 -1110010001 piddling 14 -1110010001 one-dimensional 14 -1110010001 scratchy 14 -1110010001 well-rounded 14 -1110010001 kinky 14 -1110010001 jaunty 15 -1110010001 moose 15 -1110010001 coming-of-age 15 -1110010001 gooey 15 -1110010001 rickety 15 -1110010001 cheeky 15 -1110010001 Herculean 15 -1110010001 disreputable 15 -1110010001 grumpy 15 -1110010001 well-qualified 15 -1110010001 wimpy 16 -1110010001 snob 16 -1110010001 humid 16 -1110010001 macabre 16 -1110010001 lighthearted 16 -1110010001 creditable 16 -1110010001 gleeful 16 -1110010001 moist 16 -1110010001 half-empty 17 -1110010001 quadriplegic 17 -1110010001 grainy 17 -1110010001 monogamous 17 -1110010001 balmy 17 -1110010001 pained 17 -1110010001 clunky 17 -1110010001 far-off 17 -1110010001 ticklish 18 -1110010001 perky 18 -1110010001 flabby 19 -1110010001 timeless 19 -1110010001 Band-Aid 19 -1110010001 sarcastic 19 -1110010001 cranky 20 -1110010001 clenched 20 -1110010001 heartbreaking 20 -1110010001 sweltering 20 -1110010001 spooky 20 -1110010001 sensual 20 -1110010001 crafty 20 -1110010001 blooming 20 -1110010001 pathological 20 -1110010001 rowdy 21 -1110010001 symbiotic 21 -1110010001 tulip 21 -1110010001 merry 21 -1110010001 gutsy 22 -1110010001 far-out 23 -1110010001 tongue-in-cheek 23 -1110010001 steely 23 -1110010001 snappy 23 -1110010001 homely 23 -1110010001 humbling 23 -1110010001 deafening 23 -1110010001 corny 24 -1110010001 jolly 24 -1110010001 wacky 24 -1110010001 joyful 24 -1110010001 materialistic 25 -1110010001 canny 25 -1110010001 well-documented 25 -1110010001 creepy 26 -1110010001 rusty 26 -1110010001 beige 26 -1110010001 figurehead 26 -1110010001 double-edged 27 -1110010001 plaintive 27 -1110010001 breezy 28 -1110010001 gaudy 28 -1110010001 pleasurable 28 -1110010001 stout 28 -1110010001 bittersweet 28 -1110010001 carefree 29 -1110010001 mischievous 29 -1110010001 wistful 31 -1110010001 justifiable 31 -1110010001 sane 31 -1110010001 soggy 32 -1110010001 cheery 32 -1110010001 loony 32 -1110010001 tasty 33 -1110010001 crass 33 -1110010001 half-hearted 33 -1110010001 wretched 33 -1110010001 harrowing 34 -1110010001 boyish 35 -1110010001 solitary 36 -1110010001 windy 36 -1110010001 dreamy 36 -1110010001 disgusting 36 -1110010001 finer 37 -1110010001 good-natured 37 -1110010001 pretentious 37 -1110010001 goofy 38 -1110010001 prima 38 -1110010001 hazy 38 -1110010001 tacky 38 -1110010001 doomsday 38 -1110010001 nifty 39 -1110010001 flimsy 39 -1110010001 market-moving 39 -1110010001 gratuitous 40 -1110010001 baffling 40 -1110010001 mind-boggling 40 -1110010001 thrilling 41 -1110010001 contrarian 41 -1110010001 plump 43 -1110010001 mortal 44 -1110010001 giddy 44 -1110010001 delicious 46 -1110010001 wicked 46 -1110010001 self-fulfilling 48 -1110010001 catchy 48 -1110010001 miraculous 50 -1110010001 likable 51 -1110010001 hysterical 52 -1110010001 cancerous 52 -1110010001 sleazy 53 -1110010001 flattering 53 -1110010001 vulgar 54 -1110010001 dreadful 54 -1110010001 sly 55 -1110010001 bum 55 -1110010001 crisp 56 -1110010001 shoddy 57 -1110010001 shabby 59 -1110010001 delightful 60 -1110010001 chilly 60 -1110010001 shining 63 -1110010001 first-rate 65 -1110010001 pathetic 65 -1110010001 rainy 66 -1110010001 nostalgic 68 -1110010001 quaint 69 -1110010001 cordial 70 -1110010001 bumpy 70 -1110010001 damned 70 -1110010001 refreshing 72 -1110010001 rotten 73 -1110010001 sturdy 74 -1110010001 splendid 75 -1110010001 fabulous 76 -1110010001 loving 80 -1110010001 horrendous 80 -1110010001 lazy 84 -1110010001 hollow 92 -1110010001 sunny 92 -1110010001 traumatic 94 -1110010001 bona 96 -1110010001 fairy 97 -1110010001 bland 97 -1110010001 sentimental 98 -1110010001 fantastic 101 -1110010001 lovely 102 -1110010001 marvelous 103 -1110010001 miserable 103 -1110010001 noisy 106 -1110010001 sexy 107 -1110010001 sore 114 -1110010001 shallow 116 -1110010001 shocking 117 -1110010001 gentle 120 -1110010001 cute 125 -1110010001 horrible 132 -1110010001 scary 132 -1110010001 polite 133 -1110010001 lonely 134 -1110010001 superb 135 -1110010001 neat 138 -1110010001 rocky 141 -1110010001 dim 145 -1110010001 weird 150 -1110010001 brave 151 -1110010001 rosy 153 -1110010001 cruel 155 -1110010001 damn 163 -1110010001 frightening 169 -1110010001 lousy 175 -1110010001 dumb 180 -1110010001 romantic 209 -1110010001 pleasant 213 -1110010001 tragic 217 -1110010001 terrific 219 -1110010001 grim 219 -1110010001 bleak 221 -1110010001 clever 232 -1110010001 silly 241 -1110010001 curious 244 -1110010001 nasty 247 -1110010001 loud 248 -1110010001 stupid 249 -1110010001 sweet 255 -1110010001 sensible 279 -1110010001 decent 286 -1110010001 sad 347 -1110010001 dirty 374 -1110010001 funny 376 -1110010001 plain 389 -1110010001 smart 447 -1110010001 rough 448 -1110010001 terrible 452 -1110010001 strange 471 -1110010001 wonderful 482 -1110010001 bright 723 -1110010001 perfect 742 -1110010001 nice 890 -1110010001 rare 1032 -1110010001 cheap 1093 -1110010001 simple 1670 -1110010001 good 14678 -1110010001 bad 4579 -11100100100 EPS-based 1 -11100100100 price-trend 1 -11100100100 romantic-type 1 -11100100100 impressive-sounding 1 -11100100100 3,293 1 -11100100100 Dino-Rider 1 -11100100100 Real-world 1 -11100100100 1,507 1 -11100100100 airport-construction 1 -11100100100 Mundane 1 -11100100100 family-awareness 1 -11100100100 hair-fine 1 -11100100100 Shambles 1 -11100100100 5,155 1 -11100100100 suction-assisted 1 -11100100100 negative-attack 1 -11100100100 1,700-person 1 -11100100100 often-draconian 1 -11100100100 fall-semester 1 -11100100100 stock-return 1 -11100100100 bank-rate 1 -11100100100 non-meritorious 1 -11100100100 patient-complaint 1 -11100100100 homeowner-corporation 1 -11100100100 self-fastening 1 -11100100100 Bernsteiniana 1 -11100100100 impotant 1 -11100100100 political-endorsement 1 -11100100100 34,478 1 -11100100100 non-optional 1 -11100100100 24.65 1 -11100100100 semi-important 1 -11100100100 boycott-backing 1 -11100100100 coconut-palm 1 -11100100100 often-complex 1 -11100100100 quoc 1 -11100100100 electronics-cleaning 1 -11100100100 massage-parlor 1 -11100100100 storm-water 1 -11100100100 almost-instant 1 -11100100100 investment-strategy 1 -11100100100 sleepy-driver 1 -11100100100 product-description 1 -11100100100 -drinking 1 -11100100100 CD-ROM-based 1 -11100100100 urine-temperature 1 -11100100100 Shearson-managed 1 -11100100100 body-cavity 1 -11100100100 sinuses 1 -11100100100 poster-like 1 -11100100100 back-pedaled 1 -11100100100 patience-building 1 -11100100100 40,331 1 -11100100100 post-Rambo 1 -11100100100 3,788 1 -11100100100 pension/retirement 1 -11100100100 secret-compartment 1 -11100100100 pro-nuclear-energy 1 -11100100100 pesticidecan 1 -11100100100 pesticide-can 1 -11100100100 tour-related 1 -11100100100 inastute 1 -11100100100 one-law-fits-all 1 -11100100100 wintry-looking 1 -11100100100 mud-bath 1 -11100100100 bungalow-like 1 -11100100100 gold-clothed 1 -11100100100 Tuesday-afternoon 1 -11100100100 expense-oriented 1 -11100100100 bouncier 1 -11100100100 firm-level 1 -11100100100 medical-training 1 -11100100100 fish-catch 1 -11100100100 anti-salmonella 1 -11100100100 chicken-driven 1 -11100100100 jobless-benefit 1 -11100100100 27,711 1 -11100100100 crime-prevention 1 -11100100100 pathbreaking 1 -11100100100 pre-symptomatic 1 -11100100100 unstifled 1 -11100100100 corporate-backed 1 -11100100100 wrinkle-fighting 1 -11100100100 TV-drama 1 -11100100100 de-dated 1 -11100100100 picture-sorting 1 -11100100100 anisotropic 1 -11100100100 non-statist 1 -11100100100 partioned 1 -11100100100 insertable 1 -11100100100 funeral-industry 1 -11100100100 large-character 1 -11100100100 near-typeset-quality 1 -11100100100 variable-transmission 1 -11100100100 dermatologic 1 -11100100100 righthanded 1 -11100100100 self-assembled 1 -11100100100 more-basic 1 -11100100100 prearrange 1 -11100100100 missing-persons 1 -11100100100 second-market 1 -11100100100 maintenance-management 1 -11100100100 joint-nuclear-testing 1 -11100100100 still-maturing 1 -11100100100 1,196 1 -11100100100 field-crop 1 -11100100100 soup-to-nuts 1 -11100100100 2,051 1 -11100100100 institutionalized-jobs 1 -11100100100 Euro-peseta 1 -11100100100 petroleum-conservation 1 -11100100100 put-together 1 -11100100100 big-character 1 -11100100100 odd-number 1 -11100100100 92,792 1 -11100100100 fit-tested 1 -11100100100 print-shop-quality 1 -11100100100 10-loss 1 -11100100100 number-based 1 -11100100100 410,447 1 -11100100100 taxpayer-related 1 -11100100100 shell-hole 1 -11100100100 laser-like 1 -11100100100 odd-seeming 1 -11100100100 proto-totalitarian 1 -11100100100 hawg 1 -11100100100 automatically-fastening 1 -11100100100 nonproprietary 1 -11100100100 AIDS-discrimination 1 -11100100100 multi-page 1 -11100100100 alternatve 1 -11100100100 piano-performance 1 -11100100100 media-spending 1 -11100100100 stomach-churning 1 -11100100100 timesheets 1 -11100100100 shareholder-suit 1 -11100100100 large-store 1 -11100100100 Zen-like 1 -11100100100 Save-the-Mangrove 1 -11100100100 prior-day 1 -11100100100 consumer-safety 1 -11100100100 tax-due 1 -11100100100 otherwise-harmlesss 1 -11100100100 negotiated-block 1 -11100100100 budget-planning 1 -11100100100 1,972,886 1 -11100100100 PPP-according 1 -11100100100 piggy-back 1 -11100100100 non-arms-length 1 -11100100100 water-pressure 1 -11100100100 somniferous 1 -11100100100 post-graduates 1 -11100100100 land-planning 1 -11100100100 fast-flashing 1 -11100100100 unlateral 1 -11100100100 chicken-hunting 1 -11100100100 casino-related 1 -11100100100 postive 1 -11100100100 highway-travel 1 -11100100100 lowbrows 1 -11100100100 brand-specific 2 -11100100100 lending-related 2 -11100100100 longer-established 2 -11100100100 scratch-and-sniff 2 -11100100100 358-67 2 -11100100100 misfiled 2 -11100100100 24-17 2 -11100100100 line-of-business 2 -11100100100 401-20 2 -11100100100 galvanometer 2 -11100100100 216-206 2 -11100100100 AR-15 2 -11100100100 toothsome 2 -11100100100 more-widespread 2 -11100100100 agriculture-livestock 2 -11100100100 phony-baloney 2 -11100100100 genetic-test 2 -11100100100 chi-square 2 -11100100100 15-2 2 -11100100100 302-105 2 -11100100100 Megabrain 2 -11100100100 juvenile-delinquency 2 -11100100100 liquid-crystal-display 2 -11100100100 illusionistic 2 -11100100100 360-53 2 -11100100100 piloted-vehicle 2 -11100100100 office-of-the-president 2 -11100100100 untruthfully 2 -11100100100 taxshelter 2 -11100100100 freedom-of-information 2 -11100100100 celebrity-oriented 2 -11100100100 21-14 2 -11100100100 Mussolini-like 2 -11100100100 58-29 2 -11100100100 94-1 2 -11100100100 electrical-current 2 -11100100100 safe-conduct 2 -11100100100 13Ds 2 -11100100100 376-45 2 -11100100100 65-29 2 -11100100100 nonscientific 2 -11100100100 asymmetric 2 -11100100100 sevenyear 2 -11100100100 wind-tunnel 2 -11100100100 mistake-free 2 -11100100100 12-0 2 -11100100100 non-urgent 2 -11100100100 345-70 2 -11100100100 highschool 2 -11100100100 11-8 2 -11100100100 nuisance-abatement 2 -11100100100 union-contract 2 -11100100100 non-Reagan 2 -11100100100 uncracked 2 -11100100100 non-Divad 2 -11100100100 multi-level 2 -11100100100 MileageSaver 2 -11100100100 college-admissions 2 -11100100100 property-value 2 -11100100100 2,038 2 -11100100100 nonlocal 2 -11100100100 capella 2 -11100100100 401-1 2 -11100100100 14-4 2 -11100100100 pre-assembled 2 -11100100100 recollected 2 -11100100100 value-enhancing 2 -11100100100 rent-seeking 2 -11100100100 smoking-ban 2 -11100100100 mastodon 2 -11100100100 Bahamians 2 -11100100100 TRUCKER 2 -11100100100 sleek-looking 2 -11100100100 non-transferrable 3 -11100100100 liquid-protein 3 -11100100100 fifty-fifty 3 -11100100100 fradulent 3 -11100100100 47-43 3 -11100100100 rail-labor 3 -11100100100 pre-hiring 3 -11100100100 67-33 3 -11100100100 jewel-like 3 -11100100100 380-38 3 -11100100100 96-1 3 -11100100100 while-you-wait 3 -11100100100 imprinting 3 -11100100100 97-1 3 -11100100100 more-selective 3 -11100100100 14-6 3 -11100100100 cross-breeding 3 -11100100100 nonstandard 3 -11100100100 joint-return 3 -11100100100 multi-billion-dollar 3 -11100100100 dollar-supporting 3 -11100100100 74-0 3 -11100100100 option-trading 3 -11100100100 198-193 3 -11100100100 third-round 3 -11100100100 stupefying 3 -11100100100 self-contradictory 3 -11100100100 documentary-style 3 -11100100100 heat-sensitive 3 -11100100100 leak-rate 3 -11100100100 244-132 3 -11100100100 nonjudicial 3 -11100100100 91-6 3 -11100100100 five-figure 4 -11100100100 passionless 4 -11100100100 well-tested 4 -11100100100 5-to-4 4 -11100100100 Odette 4 -11100100100 63-27 4 -11100100100 textile-import 4 -11100100100 strikeout 4 -11100100100 15-to-1 4 -11100100100 Japanese-designed 4 -11100100100 exculpatory 4 -11100100100 9-1 4 -11100100100 long-ignored 4 -11100100100 digitizing 4 -11100100100 230-194 4 -11100100100 time-and-motion 4 -11100100100 pre-performance 4 -11100100100 non-surgical 4 -11100100100 217-206 4 -11100100100 oceanic 4 -11100100100 not-qualified 5 -11100100100 transactional 5 -11100100100 line-by-line 5 -11100100100 SAW 5 -11100100100 72-27 5 -11100100100 governmentwide 5 -11100100100 point-by-point 5 -11100100100 malign 5 -11100100100 paper-and-pencil 5 -11100100100 quotable 6 -11100100100 19-17 6 -11100100100 customer-account 6 -11100100100 quarter-page 6 -11100100100 11-5 6 -11100100100 logarithmic 6 -11100100100 side-stepping 6 -11100100100 pre-retirement 6 -11100100100 slanderous 6 -11100100100 peremptory 6 -11100100100 last-sale 7 -11100100100 nonsurgical 7 -11100100100 hypertext 7 -11100100100 unverified 7 -11100100100 hardback 7 -11100100100 9-5 7 -11100100100 followup 7 -11100100100 blank-check 7 -11100100100 14-0 7 -11100100100 squishy 7 -11100100100 pre-approved 8 -11100100100 non-toxic 8 -11100100100 meaty 8 -11100100100 self-improvement 8 -11100100100 comparable-worth 8 -11100100100 fish-oil 8 -11100100100 20- 9 -11100100100 nonalcoholic 9 -11100100100 reverential 9 -11100100100 new-store 9 -11100100100 slice-of-life 9 -11100100100 lead-based 9 -11100100100 Kalashnikov 9 -11100100100 post-graduate 10 -11100100100 big-government 10 -11100100100 plain-vanilla 10 -11100100100 mechanistic 10 -11100100100 currency-transaction 10 -11100100100 less-favorable 10 -11100100100 typeset 10 -11100100100 warrantless 11 -11100100100 double-blind 11 -11100100100 hard-sell 11 -11100100100 yellowing 11 -11100100100 tax-oriented 11 -11100100100 contemporaneous 11 -11100100100 more-stringent 11 -11100100100 menstrual 11 -11100100100 house-to-house 12 -11100100100 placebo-controlled 12 -11100100100 non-negotiable 12 -11100100100 10-1 13 -11100100100 lateral 13 -11100100100 well-thought-out 13 -11100100100 more-detailed 13 -11100100100 well-designed 13 -11100100100 custom-tailored 14 -11100100100 five- 15 -11100100100 color-coded 15 -11100100100 non-exclusive 16 -11100100100 service-related 17 -11100100100 snide 17 -11100100100 surreptitious 17 -11100100100 similiar 19 -11100100100 little-used 19 -11100100100 derogatory 19 -11100100100 3-1 19 -11100100100 consensual 19 -11100100100 mismatched 21 -11100100100 well-funded 21 -11100100100 4-3 22 -11100100100 ready-made 24 -11100100100 two- 24 -11100100100 6-0 25 -11100100100 3-0 28 -11100100100 no-strike 33 -11100100100 how-to 34 -11100100100 4-0 34 -11100100100 market-sensitive 36 -11100100100 lie-detector 37 -11100100100 4-1 41 -11100100100 pre-arranged 41 -11100100100 copyrighted 46 -11100100100 needless 47 -11100100100 repetitive 53 -11100100100 speedier 54 -11100100100 seismic 59 -11100100100 proportional 62 -11100100100 non-public 64 -11100100100 proportionate 74 -11100100100 prearranged 80 -11100100100 reciprocal 85 -11100100100 life-threatening 102 -11100100100 sham 110 -11100100100 standardized 111 -11100100100 full-page 112 -11100100100 follow-up 187 -11100100100 bogus 193 -11100100100 phony 265 -11100100100 faulty 287 -11100100100 conflicting 347 -11100100100 random 347 -11100100100 unilateral 448 -11100100100 fraudulent 482 -11100100100 classified 629 -11100100100 confidential 825 -11100100100 quick 1441 -11100100100 false 1519 -11100100100 similar 6547 -11100100100 comparable 1807 -11100100101 nine-story 1 -11100100101 anti-Diem 1 -11100100101 oil-lubricated 1 -11100100101 Soviet-NATO 1 -11100100101 Greek-flag 1 -11100100101 years.The 1 -11100100101 industrial-computer-systems 1 -11100100101 protest-in-the-streets 1 -11100100101 dark-wool 1 -11100100101 knock-the-competition 1 -11100100101 city-manager 1 -11100100101 24-minute 1 -11100100101 keeping-computerized 1 -11100100101 new-phone 1 -11100100101 close-to-the-vest 1 -11100100101 not-so-boring 1 -11100100101 female-oppressing 1 -11100100101 built-for-power 1 -11100100101 gem-studded 1 -11100100101 train-wreck 1 -11100100101 university-industry 1 -11100100101 cross-pressured 1 -11100100101 historical-renovation 1 -11100100101 permament 1 -11100100101 manon-the-moon 1 -11100100101 simulcasted 1 -11100100101 criminal-trespass 1 -11100100101 Clarke-Hendon 1 -11100100101 parallel-processor 1 -11100100101 focussed 1 -11100100101 non-Boesky 1 -11100100101 veto-sustaining 1 -11100100101 mine-blast 1 -11100100101 40,000-share 1 -11100100101 financial-spreadsheet 1 -11100100101 canine-detective 1 -11100100101 naval-aircraft 1 -11100100101 denial-of-service 1 -11100100101 800-passenger 1 -11100100101 bow-shaped 1 -11100100101 health-damaging 1 -11100100101 tamed-down 1 -11100100101 non-leverageable 1 -11100100101 must-watch 1 -11100100101 half-expressed 1 -11100100101 bee-research 1 -11100100101 Palmer-Life 1 -11100100101 cottonseed-processing 1 -11100100101 darker-horse 1 -11100100101 zombie-like 1 -11100100101 fly-blown 1 -11100100101 monopole-hunting 1 -11100100101 urgent-care 1 -11100100101 300-meter 1 -11100100101 jokey 1 -11100100101 heat-recovery 1 -11100100101 pipeline-expansion 1 -11100100101 grand-larceny 1 -11100100101 million-size 1 -11100100101 bonus-program 1 -11100100101 state-legislative 1 -11100100101 nonexchange 1 -11100100101 modern-technology 1 -11100100101 low-octane 1 -11100100101 transcendant 1 -11100100101 snow-colored 1 -11100100101 disabled-persons 1 -11100100101 more-polished 1 -11100100101 machine-sealed 1 -11100100101 bamboo-munching 1 -11100100101 safe-driving 1 -11100100101 high-contrast 1 -11100100101 teacher-pedagogue 1 -11100100101 age-segregated 1 -11100100101 150,000-kilowatt 1 -11100100101 human-size 1 -11100100101 antifunding 1 -11100100101 limpwristed 1 -11100100101 Pechora-Krasnoyarsk-class 1 -11100100101 budget-reform 1 -11100100101 redacted 1 -11100100101 copier-market 1 -11100100101 1,780,800 1 -11100100101 counter-rotating 1 -11100100101 land-locked 1 -11100100101 775-foot 1 -11100100101 well-shielded 1 -11100100101 Park-Northrop 1 -11100100101 multi 1 -11100100101 unslated 1 -11100100101 shortie 1 -11100100101 below-the-knee 1 -11100100101 undubbed 1 -11100100101 pain-racked 1 -11100100101 killed-virus 1 -11100100101 all-Russian 1 -11100100101 dark-clad 1 -11100100101 UH60 1 -11100100101 selling-of-snake-oil 1 -11100100101 sporting-clay 1 -11100100101 self-consuming 1 -11100100101 aggregates-distribution 1 -11100100101 front-of-the-pack 1 -11100100101 non-hardware 1 -11100100101 soil-hauling 1 -11100100101 pro-Coniston 1 -11100100101 immigrant-support 1 -11100100101 wedged-shaped 1 -11100100101 maximize-the-bottom-line 1 -11100100101 industrial-waste-processing 1 -11100100101 chicken-vs.-egg 1 -11100100101 rail-crew 1 -11100100101 planet-like 1 -11100100101 semi-local 1 -11100100101 12.5-inch-diameter 1 -11100100101 video-disc 1 -11100100101 box-off 1 -11100100101 flanged 1 -11100100101 cash-and-warrants 1 -11100100101 copy-editing 1 -11100100101 then-known 1 -11100100101 dervishes 1 -11100100101 fulllength 1 -11100100101 Grisha-class 1 -11100100101 9.9-plus 1 -11100100101 trial-run 1 -11100100101 square-jawed 1 -11100100101 concert/interview 1 -11100100101 banana-peel 1 -11100100101 side-of-the-mouth 1 -11100100101 stablike 1 -11100100101 Ritalin-related 1 -11100100101 lower-ticket 1 -11100100101 pomegranate 1 -11100100101 co-existing 1 -11100100101 outpatient-care 1 -11100100101 save-the-whales 1 -11100100101 boob-tube 1 -11100100101 slap-on-the-hand 1 -11100100101 pin-up 2 -11100100101 retentive 2 -11100100101 saw-tooth 2 -11100100101 boldfaced 2 -11100100101 run-oriented 2 -11100100101 ATV-accident 2 -11100100101 Marcos-controlled 2 -11100100101 turbine-generator 2 -11100100101 price-manipulation 2 -11100100101 muscat 2 -11100100101 black-controlled 2 -11100100101 preconcert 2 -11100100101 spring-fed 2 -11100100101 unmemorable 2 -11100100101 celebrity-studded 2 -11100100101 foreign-sounding 2 -11100100101 hardbound 2 -11100100101 1940s-vintage 2 -11100100101 late-onset 2 -11100100101 nonlegal 2 -11100100101 post-WWII 2 -11100100101 seat-back 2 -11100100101 Dantesque 2 -11100100101 modifiable 2 -11100100101 noninfectious 2 -11100100101 untrodden 2 -11100100101 benzene-related 2 -11100100101 town-hall 2 -11100100101 illegal-lobbying 2 -11100100101 non-daily 2 -11100100101 concessions-for-stock 2 -11100100101 150-foot-high 2 -11100100101 11-inch 2 -11100100101 tabloid-size 2 -11100100101 engine-generator 2 -11100100101 immune-cell 2 -11100100101 sweet-smelling 2 -11100100101 gummed-up 2 -11100100101 image-driven 2 -11100100101 refrigerator-sized 2 -11100100101 silver-blue 2 -11100100101 550,000-kilowatt 2 -11100100101 50-foot 2 -11100100101 216-166 2 -11100100101 end-of-cycle 2 -11100100101 uncoupled 2 -11100100101 resistance-free 2 -11100100101 marriage-trap 2 -11100100101 support-group 2 -11100100101 gnarly 2 -11100100101 truck-driving 2 -11100100101 chaperoned 2 -11100100101 reading-matter 2 -11100100101 drug-therapy 2 -11100100101 different-looking 3 -11100100101 business-trivia 3 -11100100101 clotted 3 -11100100101 themed 3 -11100100101 sexual-harassment 3 -11100100101 cost-increasing 3 -11100100101 arm-wrestling 3 -11100100101 sub-cabinet 3 -11100100101 vocational-training 3 -11100100101 sculptured 3 -11100100101 health-research 3 -11100100101 well-insulated 3 -11100100101 low-probability 3 -11100100101 capital-short 3 -11100100101 classier 3 -11100100101 rubberstamp 3 -11100100101 4-to-2 3 -11100100101 credit-guarantee 3 -11100100101 copper-oxygen 3 -11100100101 long-hidden 3 -11100100101 trouble-prone 3 -11100100101 rapier-like 3 -11100100101 97,750 3 -11100100101 yes-or-no 3 -11100100101 pool-playing 3 -11100100101 filmy 3 -11100100101 5H-T 3 -11100100101 automated-teller-machine 3 -11100100101 laboratory-produced 3 -11100100101 foot-high 3 -11100100101 Spanish-owned 3 -11100100101 epicure 4 -11100100101 light-hearted 4 -11100100101 moistened 4 -11100100101 well-functioning 4 -11100100101 17-inch 4 -11100100101 daylit 4 -11100100101 disused 4 -11100100101 more-modern 4 -11100100101 boneheaded 4 -11100100101 standing-room 4 -11100100101 Samoyed 4 -11100100101 non-news 4 -11100100101 high-dose 4 -11100100101 more-ambitious 4 -11100100101 sodden 4 -11100100101 rhymed 5 -11100100101 soccer-golf 5 -11100100101 college-level 5 -11100100101 looping 5 -11100100101 surrogate-motherhood 5 -11100100101 lower-volume 5 -11100100101 bite-sized 6 -11100100101 torturous 6 -11100100101 moderate-sized 6 -11100100101 grim-faced 6 -11100100101 feathery 6 -11100100101 quilted 6 -11100100101 smoking-cessation 6 -11100100101 sterner 6 -11100100101 third-down 6 -11100100101 combat-ready 7 -11100100101 wage-earner 7 -11100100101 coequal 7 -11100100101 meatier 7 -11100100101 buckshot 7 -11100100101 diverging 8 -11100100101 high-visibility 8 -11100100101 longitudinal 8 -11100100101 discordant 8 -11100100101 boldface 8 -11100100101 seditious 9 -11100100101 tie-breaking 10 -11100100101 same-day 11 -11100100101 low-ball 12 -11100100101 smarmy 12 -11100100101 sub-par 12 -11100100101 nontaxable 14 -11100100101 blurry 14 -11100100101 protruding 14 -11100100101 finalist 15 -11100100101 psychedelic 15 -11100100101 gunshot 15 -11100100101 multiple-choice 15 -11100100101 uncounted 16 -11100100101 disembodied 17 -11100100101 so-so 19 -11100100101 pirated 19 -11100100101 smoke-free 25 -11100100101 holdover 26 -11100100101 well-defined 31 -11100100101 divergent 53 -11100100101 knit 54 -11100100101 concurrent 55 -11100100101 three-dimensional 64 -11100100101 microscopic 77 -11100100101 clogged 78 -11100100101 veiled 88 -11100100101 misdemeanor 91 -11100100101 glowing 94 -11100100101 dissenting 125 -11100100101 disparate 128 -11100100101 worded 147 -11100100101 differing 147 -11100100101 successive 152 -11100100101 distinct 255 -11100100101 felony 401 -11100100101 straight 904 -11100100101 fresh 1268 -11100100101 competing 1736 -11100100101 different 5643 -11100100101 separate 3607 -11100100110 bolero 1 -11100100110 juster 1 -11100100110 uncapitalistic 1 -11100100110 Methuselah 1 -11100100110 faggot 1 -11100100110 peg. 1 -11100100110 1-in-3 1 -11100100110 four-lot 1 -11100100110 generation. 1 -11100100110 tranquillity. 1 -11100100110 anti-palace 1 -11100100110 Groupie 1 -11100100110 deep-running 1 -11100100110 several-hundred-thousand-dollar 1 -11100100110 trade-bureaucracy 1 -11100100110 stirring-up 1 -11100100110 lawbook-sized 1 -11100100110 patient-education 1 -11100100110 game-kill 1 -11100100110 de-multiplier 1 -11100100110 show-me-mentality 1 -11100100110 terrorist-related 1 -11100100110 Form. 1 -11100100110 fat-burning 1 -11100100110 fragrance-industry 1 -11100100110 foot-stomping 1 -11100100110 hair-curling 1 -11100100110 taxiing-in 1 -11100100110 Insurmountable 1 -11100100110 -bred 1 -11100100110 chemical-pollution 1 -11100100110 youthful-sounding 1 -11100100110 not-so-pleasant 1 -11100100110 fundmental 1 -11100100110 quarter-year 1 -11100100110 unsocialist-sounding 1 -11100100110 tax-bred 1 -11100100110 hyperbolical 1 -11100100110 Ploy 1 -11100100110 nonliberal 1 -11100100110 self-corrective 1 -11100100110 Faking 1 -11100100110 bricklike 1 -11100100110 shape-up 1 -11100100110 Imperialist 1 -11100100110 SLEEPER 1 -11100100110 arbitary 1 -11100100110 fastbreaking 1 -11100100110 axle-breaking 1 -11100100110 Faun 1 -11100100110 option-adjusted 1 -11100100110 photoelectric 1 -11100100110 ulcer-related 1 -11100100110 photovoltiac 1 -11100100110 wash-and-wear 1 -11100100110 inebriating 1 -11100100110 run-of-the-litter 1 -11100100110 7-point 1 -11100100110 anti-Gillette 1 -11100100110 Gilderian 1 -11100100110 bad-luck 1 -11100100110 greater-than-planned 1 -11100100110 sleazebag 1 -11100100110 performance-sharing 1 -11100100110 work-space 1 -11100100110 toy-market 1 -11100100110 17-yen 1 -11100100110 small-space 1 -11100100110 Boesky-style 1 -11100100110 universe-shaking 1 -11100100110 coal-equivalent 1 -11100100110 fluctating 1 -11100100110 wandervogel 1 -11100100110 big-dividend 1 -11100100110 static-laden 1 -11100100110 single-file 1 -11100100110 tune-in 2 -11100100110 light-to-moderate 2 -11100100110 one-time-only 2 -11100100110 Bluebook 2 -11100100110 pro-taxpayer 2 -11100100110 black/white 2 -11100100110 dappled 2 -11100100110 non-sexist 2 -11100100110 milder-than-expected 2 -11100100110 micro-managing 2 -11100100110 2,083 2 -11100100110 conventionalarms 2 -11100100110 fixed-dollar 2 -11100100110 hygienic 2 -11100100110 multi-vendor 2 -11100100110 kid-glove 2 -11100100110 thousand-year-old 2 -11100100110 fly-away 2 -11100100110 reverse-repurchase 2 -11100100110 tulus 2 -11100100110 salutory 2 -11100100110 non-day 2 -11100100110 grace-period 2 -11100100110 chicken-or-egg 2 -11100100110 market-reserve 2 -11100100110 0.5-point 2 -11100100110 prima-donna 2 -11100100110 Dukakis/Bentsen 2 -11100100110 partywide 2 -11100100110 gray-markets 2 -11100100110 smoke-blackened 2 -11100100110 fresh-start 2 -11100100110 Shaman 2 -11100100110 project-management 2 -11100100110 formidible 2 -11100100110 EDfare 2 -11100100110 rule-book 2 -11100100110 staff-written 2 -11100100110 tax-protest 2 -11100100110 convergent 2 -11100100110 millennialist 2 -11100100110 more-satisfactory 2 -11100100110 worse-than-average 2 -11100100110 big-brother 2 -11100100110 releverage 2 -11100100110 just-the-facts 2 -11100100110 snap-back 2 -11100100110 four-in-hand 2 -11100100110 aggresive 2 -11100100110 Q&A 2 -11100100110 minimalls 2 -11100100110 class-wide 2 -11100100110 McDonnell-Airbus 2 -11100100110 multi-site 2 -11100100110 snail's-pace 2 -11100100110 disaster-prone 2 -11100100110 town-gown 2 -11100100110 heterogamous 2 -11100100110 natural-born 2 -11100100110 public-goods 2 -11100100110 public-purpose 2 -11100100110 satellite-related 2 -11100100110 salubrious 3 -11100100110 current-density 3 -11100100110 cancer-treatment 3 -11100100110 separate-but-equal 3 -11100100110 misimpression 3 -11100100110 vernal 3 -11100100110 lamppost 3 -11100100110 nonadversarial 3 -11100100110 government-directed 3 -11100100110 parasitical 3 -11100100110 lowest-common-denominator 3 -11100100110 store-by-store 3 -11100100110 non-interested 3 -11100100110 time-sensitive 3 -11100100110 movie-like 3 -11100100110 cooked-up 3 -11100100110 current-services 3 -11100100110 mid-course 3 -11100100110 kitchen-table 3 -11100100110 managed-trade 3 -11100100110 price-softening 3 -11100100110 covenantal 3 -11100100110 gated 3 -11100100110 longer-than-anticipated 3 -11100100110 unbusinesslike 3 -11100100110 dirt-pile 3 -11100100110 white-squire 3 -11100100110 god-awful 3 -11100100110 U.S.-government 3 -11100100110 Deja 3 -11100100110 no-go 3 -11100100110 6-to-1 4 -11100100110 neutral-principled 4 -11100100110 pro-industry 4 -11100100110 trilateral 4 -11100100110 meteor 4 -11100100110 middle-ground 4 -11100100110 discontinuous 4 -11100100110 truth-in-spending 4 -11100100110 cam-out 4 -11100100110 exploitable 4 -11100100110 first-to-invent 4 -11100100110 can't-miss 4 -11100100110 snugged 4 -11100100110 less-publicized 4 -11100100110 Kingfish 4 -11100100110 democratizing 4 -11100100110 legitimating 4 -11100100110 Carteresque 4 -11100100110 qat 4 -11100100110 chastening 5 -11100100110 discernable 5 -11100100110 best-case 5 -11100100110 pre-cancerous 5 -11100100110 criticality 5 -11100100110 nondiscretionary 5 -11100100110 park-to-reverse 5 -11100100110 Red-Green 5 -11100100110 no-risk 5 -11100100110 perceptual 5 -11100100110 free-rider 5 -11100100110 lock-in 5 -11100100110 weightier 5 -11100100110 less-than-perfect 6 -11100100110 pro-market 6 -11100100110 low-priority 6 -11100100110 unhealthful 6 -11100100110 meat-ax 6 -11100100110 walk-away 6 -11100100110 Medigap 6 -11100100110 second-source 6 -11100100110 white-knight 6 -11100100110 macro-economic 6 -11100100110 4-to-3 7 -11100100110 first-tier 7 -11100100110 locked-in 7 -11100100110 market-supporting 7 -11100100110 one-word 7 -11100100110 quick-fix 7 -11100100110 knock-out 7 -11100100110 sissy 7 -11100100110 Soviet-U.S. 7 -11100100110 good-government 7 -11100100110 harebrained 8 -11100100110 warmed-over 8 -11100100110 incontrovertible 8 -11100100110 gradualist 8 -11100100110 subliminal 8 -11100100110 service-connected 8 -11100100110 after-the-fact 8 -11100100110 guayabera 8 -11100100110 demonstrative 8 -11100100110 cross-marketing 8 -11100100110 hackneyed 8 -11100100110 soak-the-rich 8 -11100100110 cost-push 9 -11100100110 sex-based 9 -11100100110 commodity-like 9 -11100100110 trickle-down 9 -11100100110 macro 9 -11100100110 Pygmalion 9 -11100100110 broad-ranging 9 -11100100110 low-intensity 10 -11100100110 primal 10 -11100100110 corroborating 10 -11100100110 heterodox 10 -11100100110 bad-faith 10 -11100100110 corporate-wide 10 -11100100110 miniscule 10 -11100100110 long-cherished 11 -11100100110 statesmanlike 11 -11100100110 preconceived 11 -11100100110 fortuitous 12 -11100100110 bon 12 -11100100110 patentable 12 -11100100110 demonstrable 12 -11100100110 business-related 13 -11100100110 budget-busting 13 -11100100110 snowballing 13 -11100100110 homegrown 13 -11100100110 randomized 13 -11100100110 humanistic 13 -11100100110 portentous 13 -11100100110 top-to-bottom 13 -11100100110 back-to-basics 14 -11100100110 pesky 14 -11100100110 back-door 14 -11100100110 half-baked 15 -11100100110 sizeable 15 -11100100110 predicate 15 -11100100110 signficant 15 -11100100110 sequential 15 -11100100110 roundabout 16 -11100100110 life-and-death 16 -11100100110 for-sale 16 -11100100110 good-will 16 -11100100110 sickening 17 -11100100110 good-sized 17 -11100100110 invidious 17 -11100100110 counterrevolutionary 18 -11100100110 back-end 18 -11100100110 proximate 18 -11100100110 perceptible 19 -11100100110 synergistic 19 -11100100110 grievous 19 -11100100110 judicious 21 -11100100110 dispassionate 21 -11100100110 perfunctory 21 -11100100110 horrific 21 -11100100110 well-deserved 21 -11100100110 cutting-edge 22 -11100100110 win-win 22 -11100100110 meritorious 22 -11100100110 dampening 23 -11100100110 noncontroversial 23 -11100100110 once-in-a-lifetime 23 -11100100110 salient 23 -11100100110 telltale 24 -11100100110 qualitative 25 -11100100110 untoward 25 -11100100110 deleterious 25 -11100100110 concomitant 25 -11100100110 price-depressing 26 -11100100110 backdoor 26 -11100100110 wondrous 26 -11100100110 cataclysmic 26 -11100100110 face-saving 27 -11100100110 crossover 27 -11100100110 cursory 29 -11100100110 Draconian 29 -11100100110 common-sense 30 -11100100110 circumstantial 30 -11100100110 deja 30 -11100100110 self-inflicted 31 -11100100110 sure-fire 32 -11100100110 disquieting 32 -11100100110 precautionary 32 -11100100110 detectable 33 -11100100110 spurious 34 -11100100110 bloodless 34 -11100100110 rudimentary 35 -11100100110 salutary 35 -11100100110 jarring 36 -11100100110 draconian 36 -11100100110 first-hand 36 -11100100110 measurable 37 -11100100110 domino 37 -11100100110 preemptive 37 -11100100110 short-run 39 -11100100110 irreparable 40 -11100100110 price-supporting 41 -11100100110 principled 42 -11100100110 weighty 43 -11100100110 momentary 43 -11100100110 extraneous 43 -11100100110 systemic 44 -11100100110 flagrant 47 -11100100110 momentous 48 -11100100110 recessionary 48 -11100100110 generalized 53 -11100100110 discernible 55 -11100100110 grandiose 57 -11100100110 worst-case 58 -11100100110 glaring 61 -11100100110 sensational 62 -11100100110 deflationary 62 -11100100110 hasty 66 -11100100110 knee-jerk 70 -11100100110 soothing 70 -11100100110 breathtaking 71 -11100100110 sobering 72 -11100100110 graceful 72 -11100100110 bottom-line 75 -11100100110 sticky 76 -11100100110 lukewarm 83 -11100100110 conclusive 88 -11100100110 superficial 92 -11100100110 noticeable 96 -11100100110 wrenching 99 -11100100110 blatant 105 -11100100110 greenhouse 106 -11100100110 clear-cut 107 -11100100110 subjective 110 -11100100110 heroic 116 -11100100110 hypothetical 132 -11100100110 chilling 141 -11100100110 recurring 144 -11100100110 daunting 147 -11100100110 stimulative 149 -11100100110 systematic 151 -11100100110 dire 158 -11100100110 coherent 166 -11100100110 token 169 -11100100110 definite 202 -11100100110 thorough 211 -11100100110 concerted 217 -11100100110 far-reaching 225 -11100100110 startling 231 -11100100110 progressive 237 -11100100110 deliberate 237 -11100100110 tangible 245 -11100100110 profound 272 -11100100110 constructive 274 -11100100110 rational 279 -11100100110 decisive 286 -11100100110 credible 290 -11100100110 substantive 295 -11100100110 subtle 308 -11100100110 notable 315 -11100100110 probable 323 -11100100110 drastic 343 -11100100110 lasting 349 -11100100110 spectacular 358 -11100100110 timely 358 -11100100110 formidable 382 -11100100110 gradual 390 -11100100110 logical 390 -11100100110 harsh 394 -11100100110 satisfactory 395 -11100100110 precise 400 -11100100110 minimal 414 -11100100110 meaningful 429 -11100100110 mild 457 -11100100110 bold 459 -11100100110 passive 500 -11100100110 violent 530 -11100100110 comprehensive 569 -11100100110 concrete 635 -11100100110 remarkable 638 -11100100110 practical 673 -11100100110 legitimate 741 -11100100110 frequent 752 -11100100110 radical 892 -11100100110 minor 923 -11100100110 detailed 929 -11100100110 dramatic 951 -11100100110 slight 990 -11100100110 fundamental 1285 -11100100110 reasonable 1362 -11100100110 severe 1599 -11100100110 favorable 1657 -11100100110 modest 2277 -11100100110 negative 2488 -11100100110 positive 2551 -11100100110 specific 3353 -11100100110 substantial 3713 -11100100110 significant 5574 -11100100110 serious 4350 -11100100111 supervisor-subordinate 1 -11100100111 Belgian-Canadian 1 -11100100111 Time-NBC 1 -11100100111 price-raising 1 -11100100111 clear-headed 1 -11100100111 client-master 1 -11100100111 rap-song 1 -11100100111 acoustic-detection 1 -11100100111 five-word 1 -11100100111 trained-help 1 -11100100111 expense-to-revenue 1 -11100100111 217-203 1 -11100100111 harrowingly 1 -11100100111 duskier 1 -11100100111 not-unusual 1 -11100100111 red-letter 1 -11100100111 tax-and-pretend 1 -11100100111 one-guide 1 -11100100111 fast-improving 1 -11100100111 family-time 1 -11100100111 get-away-from-everyone 1 -11100100111 four-union 1 -11100100111 tyrant/fool 1 -11100100111 Casey-North 1 -11100100111 wild-mustang 1 -11100100111 concert-version 1 -11100100111 Mao-Nixon 1 -11100100111 Marcosian 1 -11100100111 nouveau-riche 1 -11100100111 Beijing-Seoul 1 -11100100111 North-Casey 1 -11100100111 roll-down 1 -11100100111 intra-german 1 -11100100111 well-weeded 1 -11100100111 rebel-officers 1 -11100100111 watery-limbed 1 -11100100111 Seoul-Washington 1 -11100100111 lower-dose 1 -11100100111 liquid-concentrate 1 -11100100111 Pearson-Elsevier 1 -11100100111 disputatious 1 -11100100111 23,000-page 1 -11100100111 bigfoot-like 1 -11100100111 unmeltably 1 -11100100111 seven-ball 1 -11100100111 Kroger-Dart 1 -11100100111 supermarket-industry 1 -11100100111 30-million-piece 1 -11100100111 U.S.S.R.-U.S. 1 -11100100111 Nome-Siberia 1 -11100100111 granola-flavored 1 -11100100111 Japan-Indonesia 1 -11100100111 Borgia-like 1 -11100100111 24th-century 1 -11100100111 garlic-guava 1 -11100100111 statistics-reporting 1 -11100100111 double-round-robin 1 -11100100111 let's-do-it 1 -11100100111 checklike 1 -11100100111 death-bed 1 -11100100111 child-rape 1 -11100100111 non-computerized 1 -11100100111 promising-sounding 1 -11100100111 one-wink 1 -11100100111 arms-for-no-hostages 1 -11100100111 bad-expectations 1 -11100100111 production-led 1 -11100100111 boss/subordinate 1 -11100100111 third-of-a-mile 1 -11100100111 most-raced 1 -11100100111 nine-part 1 -11100100111 KGB/WAD 1 -11100100111 leashless 1 -11100100111 Jekyll-Hyde 1 -11100100111 CFC-ozone 1 -11100100111 boiled-down 1 -11100100111 weapon-makers 1 -11100100111 mobile-artillery 1 -11100100111 where-am-I-headed 1 -11100100111 hard-bristle 1 -11100100111 rock-'em-and-sock-'em 1 -11100100111 creditor-regulator 1 -11100100111 four-decades-old 1 -11100100111 high-society-murder-and-scandal 1 -11100100111 always-gripping 1 -11100100111 spicier 1 -11100100111 five-bus 1 -11100100111 arms-hostages 1 -11100100111 Piedmont-TWA 1 -11100100111 manta 1 -11100100111 poster-size 1 -11100100111 1,000-watt 1 -11100100111 candy-bar-like 1 -11100100111 UAL-Hertz-Hilton 1 -11100100111 period-vaulting 1 -11100100111 600-milligram 1 -11100100111 stageworthy 1 -11100100111 Moldauesque 1 -11100100111 sawtooth 1 -11100100111 U.S.-Libyan 1 -11100100111 Scottsdale-based 1 -11100100111 lay-language 1 -11100100111 60-kilogram 1 -11100100111 pro-immigrant 1 -11100100111 Soviet-Mozambique 1 -11100100111 mind-out-of-body 1 -11100100111 soapstone 1 -11100100111 data-and-phone 1 -11100100111 1.2mile 1 -11100100111 long-postponed 1 -11100100111 Tiffany-quality 1 -11100100111 sometimes-strained 1 -11100100111 331-fund 1 -11100100111 300-mule 1 -11100100111 187-member 1 -11100100111 Franco-American 1 -11100100111 persecutable 1 -11100100111 less-imposing 1 -11100100111 plastic-pouch 1 -11100100111 cutest 1 -11100100111 higher-thrust 1 -11100100111 26-ounce 1 -11100100111 minority-firm 1 -11100100111 semi-pacifist 1 -11100100111 speed-control 1 -11100100111 desktop-sized 1 -11100100111 less-charged 1 -11100100111 windshield-robot 1 -11100100111 zero-solution 1 -11100100111 chiten-and-protein 1 -11100100111 salsa-style 1 -11100100111 contractor-subcontractor 1 -11100100111 lengthened-fuselage 1 -11100100111 Demirel-Ecevit 1 -11100100111 primary-needs 1 -11100100111 TWA-USAir-Piedmont 1 -11100100111 10-pack 1 -11100100111 Spinks-Tyson 1 -11100100111 bowdlerized 1 -11100100111 camel-to-Cadillac 1 -11100100111 pre-broadcast 1 -11100100111 7,242-foot 1 -11100100111 Bates-Backer 1 -11100100111 funkadelic 1 -11100100111 435-mile 1 -11100100111 best-to-worst 1 -11100100111 soft-rock 1 -11100100111 25-player 1 -11100100111 right-shoulder 1 -11100100111 1973-74-style 1 -11100100111 jellolike 1 -11100100111 opposition-government 1 -11100100111 strawberry-flavored 1 -11100100111 100-gram 1 -11100100111 pre-liturgy 1 -11100100111 300-kilometer 1 -11100100111 seven-piece 1 -11100100111 border-strip 1 -11100100111 half-witted 1 -11100100111 government-prepared 1 -11100100111 38-cent 1 -11100100111 rock-history 1 -11100100111 dirt-real 1 -11100100111 Virginia-chartered 1 -11100100111 microencapsulated 1 -11100100111 by-now-familiar 1 -11100100111 slow-releasing 1 -11100100111 300-piece 1 -11100100111 too-close 1 -11100100111 volume-to-outcome 1 -11100100111 120,000-word 1 -11100100111 low-odor 1 -11100100111 hand-size 1 -11100100111 multi-media 1 -11100100111 music-dance 1 -11100100111 squinty 1 -11100100111 broad-front 1 -11100100111 quasi-social 1 -11100100111 pro-employer 1 -11100100111 cloud-enshrouded 1 -11100100111 State-of-the-Heart 1 -11100100111 snideness 1 -11100100111 hog-farmer 1 -11100100111 645-member 1 -11100100111 Rubensian 1 -11100100111 prison-scene 1 -11100100111 166-year 1 -11100100111 rock-pop 1 -11100100111 government-leaked 1 -11100100111 palm-fringed 1 -11100100111 sound-muffling 1 -11100100111 seven-fight 1 -11100100111 much-later 1 -11100100111 quasi-colonial 1 -11100100111 learnable 1 -11100100111 Hitachi-Samsung 1 -11100100111 bonus-rate 1 -11100100111 marbleized 1 -11100100111 shoetop-scoop 1 -11100100111 page-two 1 -11100100111 10-minute-or-free 1 -11100100111 daughter-father 1 -11100100111 GATT-ordered 1 -11100100111 story-telling 1 -11100100111 Paris-to-Lyon 1 -11100100111 four-decade 1 -11100100111 21-vehicle 1 -11100100111 scaled-up 1 -11100100111 cawing 1 -11100100111 low-oil 1 -11100100111 420-passenger 1 -11100100111 212-year-old 1 -11100100111 room-by-room 1 -11100100111 quarter-mile-long 1 -11100100111 107-member 1 -11100100111 memorial-year 1 -11100100111 16-director 1 -11100100111 local-long 1 -11100100111 freeze-frame 1 -11100100111 pro-cut 1 -11100100111 splintery 1 -11100100111 post-Easter 1 -11100100111 ozone-cancer 1 -11100100111 Robertson-Dole 1 -11100100111 40-40-20 1 -11100100111 Watergate-related 1 -11100100111 72-year 1 -11100100111 solvent-detergent 1 -11100100111 jazz-music 1 -11100100111 debtor-creditor 1 -11100100111 Cairo-sponsored 1 -11100100111 sober-looking 1 -11100100111 heart-of-gold 1 -11100100111 U.S.Pacific 1 -11100100111 Sony-Columbia 1 -11100100111 manufacturing-capacity 1 -11100100111 Qintex-MGM/UA 1 -11100100111 cell-penetrating 1 -11100100111 too-diverse 1 -11100100111 109-passenger 1 -11100100111 mission-capable 1 -11100100111 kid-gloves 1 -11100100111 goatskin 1 -11100100111 pro-Cuba 1 -11100100111 pseudo-Marxian 1 -11100100111 65-mile-long 1 -11100100111 half-attractive 1 -11100100111 slow-developing 1 -11100100111 BellSouth-MCCA 1 -11100100111 iron-triangle 1 -11100100111 post-nuptial 1 -11100100111 anything-but-loving 1 -11100100111 75-site 1 -11100100111 lowprofile 1 -11100100111 side-door 1 -11100100111 20-week 1 -11100100111 medium-speed 1 -11100100111 company-drawn 1 -11100100111 squarest 1 -11100100111 13-piece 1 -11100100111 yearby-year 1 -11100100111 white/non-white 1 -11100100111 sleep-deprived 1 -11100100111 near-miraculous 1 -11100100111 business-university 1 -11100100111 1,000-lot 1 -11100100111 10-stock 1 -11100100111 Galvin-Paisley 1 -11100100111 Cuban-Soviet 1 -11100100111 300-foot-long 1 -11100100111 UNH 1 -11100100111 1/34-scale 1 -11100100111 market-segment 1 -11100100111 three-pack-a-day 1 -11100100111 stock-show 1 -11100100111 court-held 1 -11100100111 15-concert 1 -11100100111 much-shelled 1 -11100100111 long-exiled 1 -11100100111 Moscow-Madrid 1 -11100100111 KLM-NWA 1 -11100100111 310-vessel 1 -11100100111 400-piece 1 -11100100111 Coors-Stroh 1 -11100100111 let-kids-be-kids 1 -11100100111 yen-for-SDR 1 -11100100111 100-order 1 -11100100111 1.5-liter 1 -11100100111 cooked-onion 1 -11100100111 business/educational 1 -11100100111 750-milliliter 1 -11100100111 double-barrel 1 -11100100111 Houston-Dallas 1 -11100100111 22-story 2 -11100100111 superstring 2 -11100100111 clothlike 2 -11100100111 fresh-smelling 2 -11100100111 semi-staged 2 -11100100111 quick-turnaround 2 -11100100111 hangdog 2 -11100100111 115-point 2 -11100100111 95-foot-high 2 -11100100111 2.5-acre 2 -11100100111 five-country 2 -11100100111 50-million-share 2 -11100100111 16-point 2 -11100100111 Russian-German 2 -11100100111 Damascus-backed 2 -11100100111 MasterCard-Cirrus 2 -11100100111 four-piece 2 -11100100111 human-sized 2 -11100100111 BBC/A&E 2 -11100100111 non-conventional 2 -11100100111 Winterskol 2 -11100100111 direct-action 2 -11100100111 7/8-inch 2 -11100100111 black-robed 2 -11100100111 hundred-year 2 -11100100111 Kidder-Nomura 2 -11100100111 pyrotechnical 2 -11100100111 business-clergy 2 -11100100111 post-incentive 2 -11100100111 pre-induction 2 -11100100111 boxing-ring 2 -11100100111 puritan 2 -11100100111 decapitating 2 -11100100111 fourth-echelon 2 -11100100111 country-and-Western 2 -11100100111 near-complete 2 -11100100111 lip-service 2 -11100100111 godawful 2 -11100100111 more-unified 2 -11100100111 TWA-Eastern 2 -11100100111 17-party 2 -11100100111 faroff 2 -11100100111 three-picture 2 -11100100111 350-mile 2 -11100100111 U.S.-like 2 -11100100111 200,000-square-foot 2 -11100100111 Peaceline 2 -11100100111 Nasdaq-Singapore 2 -11100100111 Chekhovian 2 -11100100111 modern-dress 2 -11100100111 Comex-Sydney 2 -11100100111 dried-out 2 -11100100111 spasmodic 2 -11100100111 less-than-favorable 2 -11100100111 Soviet-inspired 2 -11100100111 too-familiar 2 -11100100111 two-network 2 -11100100111 AIDS-antibody 2 -11100100111 smaller-than-anticipated 2 -11100100111 collision-damage-waiver 2 -11100100111 foreshortened 2 -11100100111 festival-commissioned 2 -11100100111 stop-Dukakis 2 -11100100111 man-sized 2 -11100100111 business-broker 2 -11100100111 Meese-McKean 2 -11100100111 Marlens-Black 2 -11100100111 gaudiest 2 -11100100111 master-servant 2 -11100100111 three-inch-long 2 -11100100111 car-bomb 3 -11100100111 15-round 3 -11100100111 scalding 3 -11100100111 brackish 3 -11100100111 GM-EDS 3 -11100100111 heatless 3 -11100100111 platonic 3 -11100100111 March-May 3 -11100100111 Vesuvian 3 -11100100111 topographical 3 -11100100111 salt-water 3 -11100100111 stair-step 3 -11100100111 preponderant 3 -11100100111 six-ton 3 -11100100111 49-year 3 -11100100111 price-revenue 3 -11100100111 beatific 3 -11100100111 first-order 3 -11100100111 Oedipal 3 -11100100111 well-guarded 3 -11100100111 leftish 3 -11100100111 Romanesque 3 -11100100111 one-in-four 3 -11100100111 cheerless 3 -11100100111 crop-damaging 3 -11100100111 pinko 3 -11100100111 kaleidoscopic 3 -11100100111 risk/benefit 3 -11100100111 160-pound 3 -11100100111 53-year 3 -11100100111 full-spectrum 3 -11100100111 worse-than-anticipated 3 -11100100111 lunch-hour 3 -11100100111 chimerical 3 -11100100111 Rambo-like 3 -11100100111 Pechora 3 -11100100111 6,000-mile 3 -11100100111 Hitchcockian 3 -11100100111 junk-food 3 -11100100111 sensor-equipped 3 -11100100111 decadelong 3 -11100100111 long-smoldering 3 -11100100111 field-sanitation 3 -11100100111 long-neck 3 -11100100111 1,500-mile 3 -11100100111 choleric 3 -11100100111 germ-killing 4 -11100100111 less-than-enthusiastic 4 -11100100111 self-protective 4 -11100100111 Texas-size 4 -11100100111 free-thinking 4 -11100100111 36-hole 4 -11100100111 still-secret 4 -11100100111 priori 4 -11100100111 free-ranging 4 -11100100111 thoroughgoing 4 -11100100111 parking-related 4 -11100100111 satellite-transmitted 4 -11100100111 heart-stopping 4 -11100100111 silken 4 -11100100111 ninth-century 4 -11100100111 homoerotic 4 -11100100111 three-class 4 -11100100111 twice-a-day 4 -11100100111 expository 4 -11100100111 play-it-safe 4 -11100100111 Homeric 4 -11100100111 30-year-long 4 -11100100111 nursery-school 4 -11100100111 one-in-a-million 4 -11100100111 six-month-long 4 -11100100111 non-invasive 4 -11100100111 patch-up 4 -11100100111 multipronged 4 -11100100111 seventh-grade 4 -11100100111 continent-wide 4 -11100100111 lemming 4 -11100100111 computer-enhanced 4 -11100100111 third-term 4 -11100100111 well-made 4 -11100100111 multifarious 4 -11100100111 Foamy 4 -11100100111 52-year 4 -11100100111 gap-toothed 4 -11100100111 well-orchestrated 5 -11100100111 less-than-stellar 5 -11100100111 bohemian 5 -11100100111 stealthy 5 -11100100111 less-generous 5 -11100100111 Manichaean 5 -11100100111 domestic-market 5 -11100100111 century-long 5 -11100100111 large-enough 5 -11100100111 matchless 5 -11100100111 long-suspected 5 -11100100111 weeks-long 5 -11100100111 broad-scale 5 -11100100111 toned-down 5 -11100100111 studious 5 -11100100111 pro-merger 5 -11100100111 not-too-subtle 5 -11100100111 sylvan 5 -11100100111 syncopated 6 -11100100111 zero-based 6 -11100100111 kazoo 6 -11100100111 35-foot 6 -11100100111 62-year 6 -11100100111 50-mile 6 -11100100111 .500 6 -11100100111 full-dress 6 -11100100111 guttural 6 -11100100111 half-gallon 6 -11100100111 saucy 6 -11100100111 corporatewide 6 -11100100111 near-fatal 6 -11100100111 cold-water 6 -11100100111 father-son 6 -11100100111 income-based 6 -11100100111 stop-gap 6 -11100100111 convulsive 6 -11100100111 150-mile 6 -11100100111 baptismal 7 -11100100111 late-season 7 -11100100111 jingoistic 7 -11100100111 second-story 7 -11100100111 20-mile 7 -11100100111 primordial 7 -11100100111 boom-or-bust 7 -11100100111 speeded-up 7 -11100100111 15-inch 7 -11100100111 dialectical 7 -11100100111 vestigial 7 -11100100111 rutted 7 -11100100111 long-ago 7 -11100100111 12-mile 7 -11100100111 spongy 7 -11100100111 bifurcated 7 -11100100111 Novosibirsk 7 -11100100111 grungy 7 -11100100111 quickie 7 -11100100111 near-zero 7 -11100100111 yellowish 7 -11100100111 once-a-day 7 -11100100111 high-velocity 7 -11100100111 redemptive 8 -11100100111 rapturous 8 -11100100111 superheated 8 -11100100111 race-track 8 -11100100111 government-aided 8 -11100100111 misbegotten 8 -11100100111 forcible 8 -11100100111 safe-haven 8 -11100100111 nation-wide 8 -11100100111 triumphal 8 -11100100111 tragicomic 8 -11100100111 sooty 8 -11100100111 pared-down 8 -11100100111 Russian-made 8 -11100100111 six-inch 8 -11100100111 Florentine 8 -11100100111 doughty 9 -11100100111 month-end 9 -11100100111 12-foot 9 -11100100111 victimless 9 -11100100111 well-kept 9 -11100100111 Faustian 9 -11100100111 sardonic 9 -11100100111 squirt 9 -11100100111 frightful 9 -11100100111 long-dormant 9 -11100100111 longer-run 9 -11100100111 pitiless 9 -11100100111 late-1986 9 -11100100111 damage-control 9 -11100100111 toothy 9 -11100100111 caloric 9 -11100100111 fictionalized 10 -11100100111 next-day 10 -11100100111 vicarious 10 -11100100111 budget-process 10 -11100100111 woeful 10 -11100100111 line-item-veto 10 -11100100111 non-violent 10 -11100100111 cashless 10 -11100100111 neighborly 10 -11100100111 180-degree 10 -11100100111 five-pound 10 -11100100111 campfire 10 -11100100111 ritualistic 11 -11100100111 short-order 11 -11100100111 sliding-scale 11 -11100100111 U.N.-backed 11 -11100100111 farcical 11 -11100100111 wall-to-wall 11 -11100100111 Texas-sized 11 -11100100111 cradle-to-grave 11 -11100100111 everlasting 12 -11100100111 post-Boesky 12 -11100100111 gold-plated 12 -11100100111 life-long 12 -11100100111 tit-for-tat 12 -11100100111 non-business 12 -11100100111 thunderous 12 -11100100111 multilayered 12 -11100100111 stultifying 12 -11100100111 love-hate 12 -11100100111 desultory 13 -11100100111 blissful 13 -11100100111 furtive 13 -11100100111 devilish 13 -11100100111 24-hour-a-day 13 -11100100111 storybook 13 -11100100111 posthumous 13 -11100100111 pre-set 13 -11100100111 20-point 14 -11100100111 near-perfect 14 -11100100111 causal 14 -11100100111 world-renowned 14 -11100100111 scarlet 14 -11100100111 Japan-U.S. 14 -11100100111 do-nothing 14 -11100100111 hoary 14 -11100100111 better-than-average 14 -11100100111 copious 14 -11100100111 motley 14 -11100100111 masterly 14 -11100100111 business-oriented 15 -11100100111 slumbering 15 -11100100111 jazzy 15 -11100100111 no-holds-barred 15 -11100100111 heavenly 15 -11100100111 frothy 15 -11100100111 gut-wrenching 15 -11100100111 Thatcherite 16 -11100100111 shameless 16 -11100100111 gossipy 16 -11100100111 tearful 16 -11100100111 springtime 16 -11100100111 herculean 16 -11100100111 ceaseless 16 -11100100111 space-age 16 -11100100111 roving 16 -11100100111 high-class 16 -11100100111 spotless 16 -11100100111 cubist 17 -11100100111 squeaky 17 -11100100111 chronological 17 -11100100111 months-long 17 -11100100111 merciless 17 -11100100111 10-foot 17 -11100100111 board-room 17 -11100100111 labyrinthine 17 -11100100111 pay-as-you-go 18 -11100100111 preset 18 -11100100111 jigsaw 18 -11100100111 near-total 18 -11100100111 three-inch 18 -11100100111 semantic 18 -11100100111 slow-motion 18 -11100100111 watery 18 -11100100111 valiant 18 -11100100111 xenophobic 19 -11100100111 bucolic 19 -11100100111 radiant 19 -11100100111 titanic 19 -11100100111 boundless 19 -11100100111 blithe 19 -11100100111 first-day 20 -11100100111 jagged 20 -11100100111 well-developed 20 -11100100111 20-foot 20 -11100100111 laborious 20 -11100100111 hard-hitting 20 -11100100111 homey 20 -11100100111 two-stage 20 -11100100111 prototypical 20 -11100100111 spiffy 20 -11100100111 bottomless 21 -11100100111 zany 21 -11100100111 scorching 21 -11100100111 well-worn 21 -11100100111 middling 21 -11100100111 high-pitched 21 -11100100111 mind-numbing 21 -11100100111 catch-all 21 -11100100111 blinding 21 -11100100111 moody 21 -11100100111 cushy 22 -11100100111 winner-take-all 22 -11100100111 hallowed 22 -11100100111 celebratory 23 -11100100111 bountiful 23 -11100100111 dowdy 23 -11100100111 1973-74 23 -11100100111 decrepit 24 -11100100111 centuries-old 24 -11100100111 three-point 24 -11100100111 can-do 24 -11100100111 government-imposed 24 -11100100111 decades-old 24 -11100100111 sumptuous 24 -11100100111 degenerative 24 -11100100111 rancorous 25 -11100100111 hideous 25 -11100100111 decade-old 25 -11100100111 shoestring 25 -11100100111 state-by-state 26 -11100100111 seminal 26 -11100100111 shimmering 26 -11100100111 climactic 26 -11100100111 bare-bones 26 -11100100111 two-pronged 26 -11100100111 long-shot 26 -11100100111 hard-fought 27 -11100100111 long-sought 27 -11100100111 long-overdue 27 -11100100111 one-shot 27 -11100100111 glacial 27 -11100100111 nightmarish 28 -11100100111 seesaw 29 -11100100111 never-ending 29 -11100100111 ghastly 29 -11100100111 deep-seated 29 -11100100111 10-point 30 -11100100111 two-tiered 31 -11100100111 pious 31 -11100100111 gargantuan 31 -11100100111 melodic 31 -11100100111 incessant 33 -11100100111 satirical 33 -11100100111 wide-open 33 -11100100111 singular 34 -11100100111 searing 34 -11100100111 resultant 35 -11100100111 teddy 36 -11100100111 leisurely 37 -11100100111 beefed-up 38 -11100100111 watered-down 39 -11100100111 mindless 39 -11100100111 withering 39 -11100100111 slow-growth 39 -11100100111 blistering 40 -11100100111 painstaking 40 -11100100111 mythical 40 -11100100111 monstrous 40 -11100100111 hard-won 40 -11100100111 rambling 41 -11100100111 masterful 41 -11100100111 resounding 42 -11100100111 leaky 44 -11100100111 tortuous 44 -11100100111 rousing 44 -11100100111 time-honored 44 -11100100111 stinging 44 -11100100111 bruising 44 -11100100111 gaping 44 -11100100111 drawn-out 45 -11100100111 rapid-fire 46 -11100100111 latent 46 -11100100111 newfound 46 -11100100111 scathing 47 -11100100111 juicy 47 -11100100111 pre-election 47 -11100100111 bewildering 49 -11100100111 fast-paced 50 -11100100111 five-minute 50 -11100100111 prodigious 50 -11100100111 predetermined 51 -11100100111 much-publicized 51 -11100100111 recurrent 52 -11100100111 horizontal 52 -11100100111 laissez-faire 53 -11100100111 murderous 53 -11100100111 feverish 53 -11100100111 deft 53 -11100100111 court-ordered 53 -11100100111 round-the-clock 53 -11100100111 manic 53 -11100100111 savage 54 -11100100111 cutthroat 55 -11100100111 pelvic 56 -11100100111 colossal 56 -11100100111 tidal 57 -11100100111 dreary 58 -11100100111 belated 59 -11100100111 year-long 60 -11100100111 wry 61 -11100100111 one-on-one 62 -11100100111 midair 62 -11100100111 self-imposed 63 -11100100111 mystical 63 -11100100111 simulated 65 -11100100111 triumphant 66 -11100100111 continual 67 -11100100111 million-dollar 67 -11100100111 fast-track 68 -11100100111 towering 69 -11100100111 consequent 69 -11100100111 lopsided 69 -11100100111 long-standing 70 -11100100111 magnificent 71 -11100100111 strenuous 73 -11100100111 transitional 76 -11100100111 grueling 76 -11100100111 dazzling 77 -11100100111 wrongful 81 -11100100111 fiery 82 -11100100111 dizzying 87 -11100100111 tidy 88 -11100100111 full-blown 89 -11100100111 good-faith 89 -11100100111 companywide 89 -11100100111 monumental 90 -11100100111 pioneering 96 -11100100111 well-publicized 98 -11100100111 nagging 99 -11100100111 glossy 100 -11100100111 mock 100 -11100100111 two-way 102 -11100100111 compulsory 104 -11100100111 gigantic 107 -11100100111 high-stakes 109 -11100100111 spirited 113 -11100100111 stormy 113 -11100100111 fictitious 113 -11100100111 heady 114 -11100100111 noble 115 -11100100111 built-in 118 -11100100111 crushing 120 -11100100111 tumultuous 122 -11100100111 perennial 127 -11100100111 full-fledged 127 -11100100111 stern 128 -11100100111 much-needed 130 -11100100111 super 130 -11100100111 crippling 131 -11100100111 frantic 133 -11100100111 lofty 134 -11100100111 speedy 137 -11100100111 relentless 143 -11100100111 corresponding 146 -11100100111 vicious 147 -11100100111 stark 157 -11100100111 runaway 168 -11100100111 mammoth 178 -11100100111 wide-ranging 180 -11100100111 24-hour 180 -11100100111 theoretical 187 -11100100111 long-running 189 -11100100111 broad-based 203 -11100100111 simultaneous 205 -11100100111 multimillion-dollar 206 -11100100111 lavish 207 -11100100111 high-profile 210 -11100100111 virtual 211 -11100100111 full-scale 213 -11100100111 periodic 223 -11100100111 dual 235 -11100100111 continuous 239 -11100100111 bloody 252 -11100100111 burgeoning 261 -11100100111 handsome 262 -11100100111 multibillion-dollar 263 -11100100111 unified 263 -11100100111 grave 269 -11100100111 stunning 286 -11100100111 protracted 289 -11100100111 peaceful 315 -11100100111 large-scale 316 -11100100111 delicate 327 -11100100111 chronic 327 -11100100111 genuine 387 -11100100111 last-minute 406 -11100100111 fierce 435 -11100100111 prolonged 438 -11100100111 longstanding 477 -11100100111 golden 480 -11100100111 bipartisan 480 -11100100111 stiff 514 -11100100111 strict 539 -11100100111 historic 608 -11100100111 constant 619 -11100100111 wild 641 -11100100111 lengthy 651 -11100100111 mandatory 714 -11100100111 partial 761 -11100100111 voluntary 825 -11100100111 tremendous 868 -11100100111 sudden 885 -11100100111 sweeping 894 -11100100111 bitter 909 -11100100111 proper 971 -11100100111 vast 1115 -11100100111 permanent 1258 -11100100111 considerable 1315 -11100100111 deep 1537 -11100100111 massive 1653 -11100100111 wide 1749 -11100100111 hot 1764 -11100100111 temporary 1914 -11100100111 broad 2349 -11100100111 huge 4889 -11100100111 great 5233 -1110010100 water-entertainment 1 -1110010100 434.79 1 -1110010100 over-specified 1 -1110010100 JuneSeptember 1 -1110010100 rank-conscious 1 -1110010100 heisted 1 -1110010100 Westernness 1 -1110010100 Pap-testing 1 -1110010100 substitutable 1 -1110010100 451.65 1 -1110010100 caz 1 -1110010100 laser-catheter 1 -1110010100 est-like 1 -1110010100 permile 1 -1110010100 self-understanding 1 -1110010100 instant-results 1 -1110010100 non-corporate 1 -1110010100 unreassuring 1 -1110010100 higher-than-legal 1 -1110010100 low-relief 1 -1110010100 1/16-percentage 1 -1110010100 1.8797 1 -1110010100 detectible 1 -1110010100 half-developed 1 -1110010100 Pollyanna-ish 1 -1110010100 Gilbert-inspired 1 -1110010100 435.16 1 -1110010100 familiars 1 -1110010100 3.4200 1 -1110010100 necesary 1 -1110010100 124.15-yen 1 -1110010100 422.93 1 -1110010100 45-0 1 -1110010100 business-friendly 1 -1110010100 three-by-five-foot 1 -1110010100 single-reel 1 -1110010100 1,737 1 -1110010100 unsystematic 1 -1110010100 Letter-Writer 1 -1110010100 army-style 1 -1110010100 reserves-poor 1 -1110010100 469,167 1 -1110010100 ultra-detailed 1 -1110010100 husbanding 1 -1110010100 price-stable 1 -1110010100 25890.95 1 -1110010100 1.8538 1 -1110010100 4.2166 1 -1110010100 127-yen 1 -1110010100 show-bizzy 1 -1110010100 mild-to-warm 1 -1110010100 anti-elitist 1 -1110010100 1.6450 1 -1110010100 711.15 1 -1110010100 la-di-da 1 -1110010100 quiveringly 1 -1110010100 highlyin 1 -1110010100 copy-machine 1 -1110010100 hill-country 1 -1110010100 3.3300 1 -1110010100 guerrilla-war 1 -1110010100 200,000-units-a-month 1 -1110010100 fishing-pole 1 -1110010100 romancer 1 -1110010100 open-handedness 1 -1110010100 3.1030 1 -1110010100 60,286 1 -1110010100 36,066 1 -1110010100 885-student 1 -1110010100 tomcat 1 -1110010100 Westernlike 1 -1110010100 financable 1 -1110010100 smile-button 1 -1110010100 cut-pile 1 -1110010100 hematocrit 1 -1110010100 nonprogressive 1 -1110010100 2791.54 1 -1110010100 1.9938 1 -1110010100 1.9935 1 -1110010100 two-foot-high 1 -1110010100 hit-driven 1 -1110010100 5408.83 1 -1110010100 57,292 1 -1110010100 59,180 1 -1110010100 partner-to-be 1 -1110010100 largemouth 1 -1110010100 127,092,990 1 -1110010100 84,367,214 1 -1110010100 sub-institution 1 -1110010100 war-casualty 1 -1110010100 cost-inefficient 1 -1110010100 3.1400 1 -1110010100 overcautious 1 -1110010100 floor-exercise 1 -1110010100 better-sticking 1 -1110010100 poison-like 1 -1110010100 29,510 1 -1110010100 1.9719 1 -1110010100 beef-cow 1 -1110010100 big-top 1 -1110010100 peanut-growing 1 -1110010100 1.6780 1 -1110010100 still-strong 2 -1110010100 codicils 2 -1110010100 final-minute 2 -1110010100 Squirrel 2 -1110010100 3.3093 2 -1110010100 dramedies 2 -1110010100 ear-catching 2 -1110010100 variegated 2 -1110010100 primeval 2 -1110010100 13-cent 2 -1110010100 malunya 2 -1110010100 minimum-pay 2 -1110010100 once-bright 2 -1110010100 1.6980 2 -1110010100 52-pound 2 -1110010100 27869.36 2 -1110010100 loose-limbed 2 -1110010100 digital-audio 2 -1110010100 risk-analysis 2 -1110010100 LWRs 2 -1110010100 Bugattis 2 -1110010100 INJURY 2 -1110010100 12,575 2 -1110010100 thin-minded 2 -1110010100 endstage 2 -1110010100 Spheripol 2 -1110010100 trafficked 2 -1110010100 3.0850 2 -1110010100 87-00 2 -1110010100 co-trustees 2 -1110010100 war-relief 3 -1110010100 Franco-Francais 3 -1110010100 deracinated 3 -1110010100 next-highest 3 -1110010100 still-high 3 -1110010100 roman 3 -1110010100 3.3120 3 -1110010100 blood-lead 3 -1110010100 non-fuel 3 -1110010100 un-Islamic 4 -1110010100 dealer-managers 4 -1110010100 pseudo-science 4 -1110010100 per-barrel 4 -1110010100 uninventive 4 -1110010100 superannuated 4 -1110010100 Trybuna 5 -1110010100 sure-footed 5 -1110010100 34953.87 5 -1110010100 racketball 5 -1110010100 JATP 5 -1110010100 well-coached 5 -1110010100 checkless 5 -1110010100 luscious 6 -1110010100 25000 6 -1110010100 supercooled 7 -1110010100 near-capacity 10 -1110010100 higher-than-average 16 -1110010100 2250 16 -1110010100 higher-than-normal 21 -1110010100 stratospheric 27 -1110010100 2400 29 -1110010100 sky-high 36 -1110010100 rock-bottom 36 -1110010100 2100 77 -1110010100 low 7445 -1110010100 high 15240 -11100101010 bond-dominated 1 -11100101010 438-yard 1 -11100101010 343-yard 1 -11100101010 unscintillating 1 -11100101010 3,303 1 -11100101010 romper 1 -11100101010 regional-based 1 -11100101010 non-aggressive 1 -11100101010 equinox 1 -11100101010 chain-chugging 1 -11100101010 leaning-back 1 -11100101010 management-set 1 -11100101010 bob-and-weave 1 -11100101010 time-efficient 1 -11100101010 general-manager 1 -11100101010 Himachal 1 -11100101010 non-balance 1 -11100101010 six-game 1 -11100101010 brick-lined 1 -11100101010 forward-leaning 1 -11100101010 out-of-house 1 -11100101010 non-objective 1 -11100101010 club-floor 1 -11100101010 pink-wallpapered 1 -11100101010 lucite 1 -11100101010 cancer-linked 1 -11100101010 semi-auction 1 -11100101010 paisley-wallpapered 1 -11100101010 Summun 1 -11100101010 G-E-O 1 -11100101010 picture-pretty 1 -11100101010 equivalent-level 1 -11100101010 .00025 1 -11100101010 Nobel-decorated 1 -11100101010 strain-free 1 -11100101010 less-competitive 1 -11100101010 aerating 1 -11100101010 chiller 1 -11100101010 package-customer 1 -11100101010 engineering-faculty 1 -11100101010 county-commission 1 -11100101010 more-defensive 1 -11100101010 U.S.market 1 -11100101010 industrial-repair 1 -11100101010 stat 1 -11100101010 better-furnished 1 -11100101010 conflict-of 1 -11100101010 Unsuitable 1 -11100101010 policy-forming 1 -11100101010 more-pliant 1 -11100101010 Gandhi-like 1 -11100101010 lowlier 1 -11100101010 non-homicidal 1 -11100101010 take-along 1 -11100101010 Wolfean 1 -11100101010 training-related 1 -11100101010 foreign-investor 1 -11100101010 venture-capital-type 1 -11100101010 owner-manager-risk 1 -11100101010 20,000-square-foot 1 -11100101010 mix-and-match 1 -11100101010 swifter-selling 1 -11100101010 drug/alcoholic 1 -11100101010 no-compromise 1 -11100101010 strategical 1 -11100101010 120-mile 1 -11100101010 75-hour 1 -11100101010 news-management 1 -11100101010 Eastern-time 1 -11100101010 non-managerial 1 -11100101010 rigid-container 1 -11100101010 Cotswolds 1 -11100101010 papain 1 -11100101010 nuclear-defense 1 -11100101010 phosphate-mining 1 -11100101010 post-1930s 1 -11100101010 direct-ownership 1 -11100101010 loan/asset 1 -11100101010 polar-bear 1 -11100101010 near-impossible 1 -11100101010 multi-action 1 -11100101010 triple-weighted 1 -11100101010 stable-to-lower 1 -11100101010 sector-wide 1 -11100101010 export-generating 1 -11100101010 nine-room 1 -11100101010 tax-shelter-related 1 -11100101010 neck-under-stomach 1 -11100101010 camel-stopping 1 -11100101010 accured 1 -11100101010 white-tiled 1 -11100101010 hotel-hospitality 1 -11100101010 4,600-square-foot 1 -11100101010 15-M 1 -11100101010 pony-tailed 1 -11100101010 60-65-day 1 -11100101010 third-longest 1 -11100101010 lambent 1 -11100101010 378-yard 1 -11100101010 sea-front 1 -11100101010 intrafallopian 1 -11100101010 level-controlled 1 -11100101010 quarter-million-dollar 1 -11100101010 pro-China 1 -11100101010 detox 1 -11100101010 security-based 1 -11100101010 non-Koreans 1 -11100101010 Faisalabad 1 -11100101010 market-share-driven 1 -11100101010 non-hard-line 1 -11100101010 7800 1 -11100101010 professional/executive 1 -11100101010 Yoda-like 1 -11100101010 once-lively 1 -11100101010 member-relations 1 -11100101010 net-of-tax 1 -11100101010 Gorbachev-inspired 1 -11100101010 post-performance 1 -11100101010 sheafs 1 -11100101010 syphilitic 1 -11100101010 double-your-money 1 -11100101010 head-in-the-sand 1 -11100101010 double-or-nothing 1 -11100101010 less-panicky 1 -11100101010 benefical 1 -11100101010 punch-and-cookie 1 -11100101010 line-broadening 1 -11100101010 assignee 1 -11100101010 Alma-Alta 1 -11100101010 call-switching 1 -11100101010 TV-riveted 1 -11100101010 Kiplingesque 1 -11100101010 philosophical/legal 1 -11100101010 mock-nightmarish 1 -11100101010 born-in-the-U.S.A. 1 -11100101010 less-than-thrilled 1 -11100101010 drug-war 1 -11100101010 famine-bloated 1 -11100101010 30,000-volume 1 -11100101010 twiglets 1 -11100101010 crocus-slimming 1 -11100101010 knee-length 1 -11100101010 Tupperware-like 1 -11100101010 loan-contract 1 -11100101010 gathering-of-information 1 -11100101010 already-missed 1 -11100101010 nonsensitive 1 -11100101010 windowed 1 -11100101010 nonpatentable 1 -11100101010 ungratefully 1 -11100101010 sand-sprinkled 1 -11100101010 HUD-owned 1 -11100101010 ungraceful 1 -11100101010 tablet-shattering 1 -11100101010 negroes 1 -11100101010 tourist-delivery 1 -11100101010 mortgage-swap 1 -11100101010 flounced 1 -11100101010 non-partner 1 -11100101010 2,200-square-foot 1 -11100101010 arcadian 1 -11100101010 17-10 1 -11100101010 fabric-softener 1 -11100101010 slacker 1 -11100101010 engineering-related 1 -11100101010 hold-the-line 1 -11100101010 high-spread 1 -11100101010 liabilties 1 -11100101010 sororal 1 -11100101010 pro-Sinhalese 1 -11100101010 banshee 1 -11100101010 less-sullied 1 -11100101010 Low-paying 1 -11100101010 seven-minute 2 -11100101010 overaged 2 -11100101010 once-modest 2 -11100101010 rec 2 -11100101010 near-empty 2 -11100101010 Chandos 2 -11100101010 25,012 2 -11100101010 hunker-down 2 -11100101010 Buscayno 2 -11100101010 June-August 2 -11100101010 0.0114-inch 2 -11100101010 53-day 2 -11100101010 sayang 2 -11100101010 loss-absorbing 2 -11100101010 miles-per-hour 2 -11100101010 one-to-four-family 2 -11100101010 3,325 2 -11100101010 11,047 2 -11100101010 super-sinker 2 -11100101010 pledge-drive 2 -11100101010 grow-from-within 2 -11100101010 robing 2 -11100101010 sourdough 2 -11100101010 bios 2 -11100101010 WHAM 2 -11100101010 flexibile 2 -11100101010 infelicitous 2 -11100101010 Genie 2 -11100101010 low-salaried 2 -11100101010 median-priced 2 -11100101010 preplacement 2 -11100101010 textural 2 -11100101010 relatedly 2 -11100101010 plaiting 2 -11100101010 nonconforming 2 -11100101010 regulatory-review 2 -11100101010 subbasement 2 -11100101010 charmlessness 2 -11100101010 bridge-over 2 -11100101010 super-low 3 -11100101010 otherwise-exempt 3 -11100101010 Uttar 3 -11100101010 pre-judgment 3 -11100101010 60-to-65-day 3 -11100101010 1,344 3 -11100101010 Madhya 3 -11100101010 73-day 3 -11100101010 FreeVee 3 -11100101010 outbuildings 3 -11100101010 FIRST-TIME 3 -11100101010 union-covered 3 -11100101010 carbon-copy 3 -11100101010 deficit-bond 3 -11100101010 windward 3 -11100101010 long-yen 3 -11100101010 prosthetic 3 -11100101010 F-2-alpha 3 -11100101010 high-pay 4 -11100101010 quarantining 4 -11100101010 prosecutive 4 -11100101010 ninth-inning 4 -11100101010 mismatching 4 -11100101010 newly-created 4 -11100101010 uncontaminated 4 -11100101010 tenure-track 4 -11100101010 mimeographed 4 -11100101010 multicurrency 4 -11100101010 69-day 4 -11100101010 Tudor-style 4 -11100101010 1981-87 5 -11100101010 venality 5 -11100101010 board-and-care 5 -11100101010 grand-slam 5 -11100101010 retiming 5 -11100101010 Sins 5 -11100101010 prejudgment 6 -11100101010 walloping 6 -11100101010 biomass 6 -11100101010 1977-81 6 -11100101010 two-family 7 -11100101010 smoke-filled 11 -11100101010 short-dollar 12 -11100101010 off-balance 13 -11100101010 pejorative 19 -11100101010 Search 58 -11100101010 vested 129 -11100101010 dining 210 -11100101010 grace 320 -11100101010 nursing 548 -11100101010 accrued 587 -11100101010 short 6504 -11100101011 out-of-store 1 -11100101011 exclusionist 1 -11100101011 two-billion-share 1 -11100101011 municipal-note 1 -11100101011 pen-raised 1 -11100101011 Mussolini-style 1 -11100101011 unlunatic 1 -11100101011 Soviet-aided 1 -11100101011 Russian-accented 1 -11100101011 94-degree 1 -11100101011 detoxifying 1 -11100101011 Gestalt 1 -11100101011 lottery-sales 1 -11100101011 dealer-dominated 1 -11100101011 once-busy 1 -11100101011 risk-pool 1 -11100101011 finance-reliant 1 -11100101011 acidrain 1 -11100101011 Japanese-accented 1 -11100101011 sour-cream 1 -11100101011 earthquake-free 1 -11100101011 body-temperature 1 -11100101011 loosely-run 1 -11100101011 ozone-depleted 1 -11100101011 unsanctified 1 -11100101011 below-tariff 1 -11100101011 scripless 1 -11100101011 soybean-planted 1 -11100101011 395,294 1 -11100101011 Soviet-directed 1 -11100101011 coat-hanger 1 -11100101011 soft-on-Moscow 1 -11100101011 12,500-square-foot 1 -11100101011 computer-and-telecommunications 1 -11100101011 potatoes-futures 1 -11100101011 economic-limbo 1 -11100101011 well-focused 1 -11100101011 orange-tree 1 -11100101011 well-aged 1 -11100101011 bodyfat 1 -11100101011 rumor-rattled 1 -11100101011 plant-capacity 1 -11100101011 opera-housey 1 -11100101011 oleic 1 -11100101011 dividendcapture 1 -11100101011 chestdeep 1 -11100101011 high-premium 1 -11100101011 nineteenth-century 1 -11100101011 May-to-May 1 -11100101011 soil-saving 1 -11100101011 red-topped 1 -11100101011 helio-copters 1 -11100101011 rust-related 1 -11100101011 two-couple 1 -11100101011 question-mark 1 -11100101011 deeper-than-usual 1 -11100101011 NASD-imposed 1 -11100101011 semi-constant 1 -11100101011 essense 1 -11100101011 highstakes 1 -11100101011 emigration-related 1 -11100101011 technical-oriented 1 -11100101011 NCAA-administered 1 -11100101011 Haniya 1 -11100101011 NYSE-composite 1 -11100101011 highclass 1 -11100101011 school-textbook 1 -11100101011 95-degree 1 -11100101011 41-degree 1 -11100101011 bank-lending 1 -11100101011 sometimes-aggressive 1 -11100101011 illicit-trading 1 -11100101011 futures-led 1 -11100101011 loan-investment 1 -11100101011 noncommission-generating 1 -11100101011 Bermudan 2 -11100101011 152,135 2 -11100101011 plutocratic 2 -11100101011 ice-free 2 -11100101011 skin-tight 2 -11100101011 holiday-related 2 -11100101011 noncaloric 2 -11100101011 Guerlain 2 -11100101011 Bolshoia 2 -11100101011 uncharitable 2 -11100101011 blunderbuss 2 -11100101011 20th-anniversary 2 -11100101011 post-bourse 2 -11100101011 non-negligent 2 -11100101011 before-hours 2 -11100101011 service-center 2 -11100101011 corporate-insider 2 -11100101011 microform 2 -11100101011 globalist 2 -11100101011 broker-assisted 2 -11100101011 preholiday 2 -11100101011 Sweden. 2 -11100101011 post-surgery 2 -11100101011 post-budget 2 -11100101011 subtherapeutic 2 -11100101011 Paris. 2 -11100101011 Herodion 2 -11100101011 anterior 2 -11100101011 heavier-than-normal 2 -11100101011 machine-generated 2 -11100101011 Wittgenstein 2 -11100101011 conventional-looking 2 -11100101011 flagrante 2 -11100101011 Tera 2 -11100101011 long-duration 2 -11100101011 Shekou 2 -11100101011 margin-related 3 -11100101011 nonspeculative 3 -11100101011 1,515 3 -11100101011 dark-green 3 -11100101011 summer-vacation 3 -11100101011 heavier-than-usual 3 -11100101011 stock-and-bond 3 -11100101011 tasseled 3 -11100101011 sureness 3 -11100101011 three-ton 4 -11100101011 undersized 4 -11100101011 transverse 4 -11100101011 fourth-busiest 4 -11100101011 deer-hunting 4 -11100101011 Lefortovo 4 -11100101011 zero-risk 4 -11100101011 crocheted 4 -11100101011 hard-to-reach 5 -11100101011 pre-Gorbachev 5 -11100101011 program-related 5 -11100101011 re-flagged 5 -11100101011 mark-yen 5 -11100101011 flight-to-quality 5 -11100101011 knee-high 6 -11100101011 higher-than-usual 6 -11100101011 37-day 6 -11100101011 price-insensitive 6 -11100101011 computer-directed 6 -11100101011 want-ad 7 -11100101011 droning 7 -11100101011 pre-market 8 -11100101011 torpid 8 -11100101011 cesium 8 -11100101011 unreconciled 8 -11100101011 stop-and-go 9 -11100101011 drowsy 9 -11100101011 overcast 10 -11100101011 straight-line 10 -11100101011 unpayable 11 -11100101011 languid 11 -11100101011 scuffed 12 -11100101011 Actinidia 13 -11100101011 midseason 14 -11100101011 vitro 14 -11100101011 index-related 15 -11100101011 aimless 18 -11100101011 post-holiday 18 -11100101011 tax-motivated 19 -11100101011 rainwater 20 -11100101011 rotational 20 -11100101011 pre-Christmas 23 -11100101011 featureless 26 -11100101011 trendless 29 -11100101011 directionless 34 -11100101011 after-hours 40 -11100101011 pre-holiday 43 -11100101011 follow-through 52 -11100101011 listless 75 -11100101011 choppy 84 -11100101011 sparse 84 -11100101011 handy 98 -11100101011 lethargic 105 -11100101011 frenzied 121 -11100101011 hectic 149 -11100101011 when-issued 170 -11100101011 earnest 213 -11100101011 lively 213 -11100101011 slack 229 -11100101011 subdued 254 -11100101011 suspicious 346 -11100101011 brisk 456 -11100101011 thin 1069 -11100101011 quiet 1274 -11100101011 excess 1679 -11100101011 moderate 2232 -11100101011 light 4029 -11100101011 heavy 4839 -11100101100 immunologically 1 -11100101100 74-acre 1 -11100101100 half-mile-wide 1 -11100101100 floor-trader 1 -11100101100 no-plant-closing 1 -11100101100 unscientifically 1 -11100101100 80-point 1 -11100101100 tax-spend-elect 1 -11100101100 300-pound-plus 1 -11100101100 reinserting 1 -11100101100 straight-foward 1 -11100101100 bearably 1 -11100101100 life-jacket 1 -11100101100 19,571 1 -11100101100 Shermanesque 1 -11100101100 retaliatory-discrimination 1 -11100101100 red-orange 1 -11100101100 43,532 1 -11100101100 exercise-bike 1 -11100101100 population-old-fashioned 1 -11100101100 heavily-guarded 1 -11100101100 catatonically 1 -11100101100 hysteric 1 -11100101100 archaelogically 1 -11100101100 page-turners 1 -11100101100 whompers 1 -11100101100 closed-council 1 -11100101100 miniseries-to-be 1 -11100101100 government-office 1 -11100101100 limb-makers 1 -11100101100 anti-Protestant 1 -11100101100 liability-suit 1 -11100101100 Tchaikovskyan 1 -11100101100 blood-colored 1 -11100101100 self-revelatory 1 -11100101100 uproariously 1 -11100101100 lusciously 1 -11100101100 INS-issued 1 -11100101100 unclearly 1 -11100101100 tube's-eye 1 -11100101100 restaurant-bar 1 -11100101100 Toshiba-designed 1 -11100101100 Japanese-user 1 -11100101100 near-developed 1 -11100101100 teasingly 1 -11100101100 mock-learned 1 -11100101100 particulaly 1 -11100101100 twin-peaked 1 -11100101100 12-foot-long 1 -11100101100 Euro-centric 1 -11100101100 physician-care 1 -11100101100 vasoconstrictor 1 -11100101100 unsuitably 1 -11100101100 end-of-the-day 1 -11100101100 hotel-retail-office 1 -11100101100 sunnily 1 -11100101100 god's-eye 1 -11100101100 self-demeaning 1 -11100101100 356-unit 1 -11100101100 Cah 1 -11100101100 easy-to-caricature 1 -11100101100 TV-network 1 -11100101100 scrubbed-clean 1 -11100101100 dust-ball 1 -11100101100 new-engine 1 -11100101100 chemicals-producing 1 -11100101100 -ridden 1 -11100101100 aristocratically 1 -11100101100 lower-than-inflation 1 -11100101100 deplorably 1 -11100101100 7,000-unit 1 -11100101100 low-set 1 -11100101100 ceiling-top 1 -11100101100 slimly 1 -11100101100 pre-exam 1 -11100101100 military-congressional 1 -11100101100 histo-compatibility 1 -11100101100 hand-copying 1 -11100101100 sales-a-square 1 -11100101100 lynch-mob 1 -11100101100 180-acre 1 -11100101100 Vaya 1 -11100101100 magnificient 1 -11100101100 Broadgatelike 1 -11100101100 taste-conveying 1 -11100101100 white-and-gold 1 -11100101100 nearsightedly 1 -11100101100 PineSol 1 -11100101100 stock-more 1 -11100101100 adminstratively 1 -11100101100 doctor-originated 1 -11100101100 assaultive 1 -11100101100 congregrate-care 1 -11100101100 non-frivolous 1 -11100101100 30-bolivar 1 -11100101100 sublimely 1 -11100101100 abrasively 2 -11100101100 post-hurricane 2 -11100101100 public-debt 2 -11100101100 more-subtle 2 -11100101100 spectrally 2 -11100101100 stokes 2 -11100101100 jack-of-all-trades 2 -11100101100 nine-minute 2 -11100101100 stupendously 2 -11100101100 geostrategically 2 -11100101100 long-developed 2 -11100101100 supercritical 2 -11100101100 35,000-year-old 2 -11100101100 symmetric 2 -11100101100 sweepingly 2 -11100101100 phonetically 2 -11100101100 407.48-carat 2 -11100101100 Khasi 2 -11100101100 more-costly 2 -11100101100 ripest 2 -11100101100 employer-financed 2 -11100101100 enduringly 2 -11100101100 blood-spurting 2 -11100101100 146,500 2 -11100101100 scandalously 2 -11100101100 1960s-era 2 -11100101100 parol 2 -11100101100 Warholian 2 -11100101100 quantitatively 2 -11100101100 louse 2 -11100101100 Pine-Sol 2 -11100101100 prophetically 2 -11100101100 well-contested 2 -11100101100 50-unit 2 -11100101100 hiply 2 -11100101100 73-story 2 -11100101100 price-supportive 2 -11100101100 680-mile 2 -11100101100 barge-like 2 -11100101100 570-square-mile 2 -11100101100 amortizable 3 -11100101100 supercold 3 -11100101100 four-channel 3 -11100101100 field-dressed 3 -11100101100 needful 3 -11100101100 20-foot-high 3 -11100101100 metaphysically 3 -11100101100 stereophonic 3 -11100101100 once-again 3 -11100101100 mind-numbingly 3 -11100101100 four-building 3 -11100101100 prohibitionist 3 -11100101100 18-screen 3 -11100101100 post-coup 3 -11100101100 Whiggish 3 -11100101100 hypnotically 3 -11100101100 260-pound 3 -11100101100 Faerie 3 -11100101100 verapamil 3 -11100101100 2-2 4 -11100101100 snakeskin 4 -11100101100 slower-growth 4 -11100101100 defuses 4 -11100101100 cyclically 4 -11100101100 innately 4 -11100101100 downy 4 -11100101100 right-handed 5 -11100101100 awesomely 5 -11100101100 swiveling 5 -11100101100 disconcertingly 5 -11100101100 evanescent 5 -11100101100 non-dairy 5 -11100101100 white-hot 5 -11100101100 complexly 5 -11100101100 reheating 5 -11100101100 wondrously 5 -11100101100 seductively 6 -11100101100 militantly 6 -11100101100 astoundingly 6 -11100101100 full-blooded 6 -11100101100 sleekly 6 -11100101100 1-megabit 6 -11100101100 more-or-less 7 -11100101100 flamboyantly 7 -11100101100 pecan 7 -11100101100 cosmetically 7 -11100101100 downwardly 8 -11100101100 hair-trigger 8 -11100101100 12th-century 9 -11100101100 crabbed 9 -11100101100 feigning 10 -11100101100 logistically 10 -11100101100 educationally 10 -11100101100 mathematically 10 -11100101100 architecturally 11 -11100101100 refreshingly 12 -11100101100 raving 12 -11100101100 military-industrial 12 -11100101100 undying 13 -11100101100 manifestly 14 -11100101100 classically 15 -11100101100 wreaking 16 -11100101100 persisting 18 -11100101100 ecologically 21 -11100101100 faintly 23 -11100101100 smoldering 25 -11100101100 fiscally 29 -11100101100 upwardly 29 -11100101100 peculiarly 33 -11100101100 simmering 36 -11100101100 terminally 43 -11100101100 anecdotal 58 -11100101100 hugely 63 -11100101100 uniquely 73 -11100101100 environmentally 99 -11100101100 raging 109 -11100101100 deepening 110 -11100101100 technologically 111 -11100101100 unconfirmed 114 -11100101100 mighty 115 -11100101100 strategically 149 -11100101100 socially 151 -11100101100 sexually 157 -11100101100 lingering 201 -11100101100 predominantly 203 -11100101100 rampant 219 -11100101100 mentally 222 -11100101100 purely 306 -11100101100 heightened 371 -11100101100 heated 407 -11100101100 seemingly 454 -11100101100 persistent 460 -11100101100 mounting 730 -11100101100 financially 886 -11100101100 potentially 1080 -11100101100 politically 1133 -11100101100 widespread 1695 -11100101100 highly 3614 -11100101100 growing 6420 -11100101101 ocean-dumped 1 -11100101101 midcalf 1 -11100101101 retail-broking 1 -11100101101 network-radio 1 -11100101101 less-mechanized 1 -11100101101 1229.24 1 -11100101101 supply-vessel 1 -11100101101 overseas-factoring 1 -11100101101 clearing-account 1 -11100101101 fullcost 1 -11100101101 frozen-novelty 1 -11100101101 split-oak 1 -11100101101 552,150 1 -11100101101 1232.89 1 -11100101101 nonhomogeneous 1 -11100101101 1.7088 1 -11100101101 cogenerating 1 -11100101101 northeasterly 1 -11100101101 surplus-boosting 1 -11100101101 leftist-backed 1 -11100101101 in-route 1 -11100101101 duck-related 1 -11100101101 proContra 1 -11100101101 truck-production 1 -11100101101 business-solicitation 1 -11100101101 1277.80 1 -11100101101 better-run 1 -11100101101 tax-limit 1 -11100101101 door-kicking 1 -11100101101 insurance-restoration 1 -11100101101 Jugoslovenski 1 -11100101101 fustiness 1 -11100101101 Cocom-screening 1 -11100101101 281,514 1 -11100101101 moneylaundering 1 -11100101101 1368 1 -11100101101 bar-making 1 -11100101101 SCHLUMBERGER 1 -11100101101 later-than-expected 1 -11100101101 student-counseling 1 -11100101101 volunteer-intensive 1 -11100101101 X- 1 -11100101101 non-school 1 -11100101101 continuting 1 -11100101101 credito 1 -11100101101 pulp-products 1 -11100101101 converted-nitrogen 1 -11100101101 non-drugstore 1 -11100101101 airline-guides 1 -11100101101 bed-wetting 1 -11100101101 1236.91 1 -11100101101 lunchboxes 1 -11100101101 wheeled-vehicle 1 -11100101101 Chihuahuas 1 -11100101101 near-unknown 1 -11100101101 diamond-marketing 1 -11100101101 116,120 1 -11100101101 multiregional 1 -11100101101 non-electronics 1 -11100101101 Gomorrah 1 -11100101101 scutinizing 1 -11100101101 warfare-related 1 -11100101101 space-tracking 1 -11100101101 ethanol-processing 1 -11100101101 1799 1 -11100101101 inorganic-chemicals 1 -11100101101 securities-dealing 1 -11100101101 anti-quota 1 -11100101101 fiber-product 1 -11100101101 rotary-dial 1 -11100101101 newly-taxed 1 -11100101101 bill-reimbursement 1 -11100101101 service-parts 1 -11100101101 interior-systems 1 -11100101101 fast-deteriorating 1 -11100101101 energy-resource 1 -11100101101 dayearlier 1 -11100101101 328,267 1 -11100101101 import/export 1 -11100101101 antipoverty 1 -11100101101 residential-sales 1 -11100101101 Judice 1 -11100101101 electronic-materials 1 -11100101101 computer-simulated 1 -11100101101 Orcadian 1 -11100101101 pre-coup 1 -11100101101 information-production 1 -11100101101 shore-based 1 -11100101101 515,802 1 -11100101101 sawmilling 1 -11100101101 Ibero-American 1 -11100101101 lunch-counter 1 -11100101101 Stralsund 1 -11100101101 mechancial 1 -11100101101 combinemanufacturing 1 -11100101101 sunup 1 -11100101101 dry-plate 1 -11100101101 near-abstraction 1 -11100101101 ball-stealing 1 -11100101101 pro-contra 1 -11100101101 land-drilling 1 -11100101101 consumer-health-products 1 -11100101101 oveseas 1 -11100101101 flatroll 1 -11100101101 overpredicting 1 -11100101101 janizary 1 -11100101101 Castro-supported 1 -11100101101 Wescar/TDS 1 -11100101101 noninsurance 1 -11100101101 hot-strip 1 -11100101101 non-amphibious 1 -11100101101 Surabaya 1 -11100101101 Pantasma 1 -11100101101 bus-related 1 -11100101101 17,289 1 -11100101101 1294.66 1 -11100101101 used-truck 1 -11100101101 wholesale-trading 1 -11100101101 spy-related 1 -11100101101 lower-overhead 1 -11100101101 project-lending 1 -11100101101 dam-construction 1 -11100101101 capitalist-type 1 -11100101101 loan-control 1 -11100101101 arboretums 1 -11100101101 legal-publishing 1 -11100101101 crab-shell 1 -11100101101 placer-mine 1 -11100101101 late-1984 1 -11100101101 industrial-valve 1 -11100101101 5,882 1 -11100101101 gold-drilling 1 -11100101101 automotive-paint 1 -11100101101 community-related 1 -11100101101 mega-voltage 1 -11100101101 mostly-depressed 1 -11100101101 television-manufacturing 1 -11100101101 1220.86 1 -11100101101 coke-fired 1 -11100101101 customer-clearing 1 -11100101101 coated-paperboard 1 -11100101101 Bahamian-flag 1 -11100101101 1,807,100 1 -11100101101 low-production 1 -11100101101 steel-coating 1 -11100101101 non-dialysis 1 -11100101101 worm-farm 1 -11100101101 rail-related 1 -11100101101 general-engineering 1 -11100101101 chart-based 1 -11100101101 airdelivery 1 -11100101101 257.00 1 -11100101101 3,119 1 -11100101101 7,354 1 -11100101101 hippiedom 1 -11100101101 cargo-shipping 1 -11100101101 stockboys 1 -11100101101 near-parity 1 -11100101101 marketing-support 1 -11100101101 Vercingetorix 1 -11100101101 Bo-Peep 1 -11100101101 1,741,800 1 -11100101101 foreign-aided 1 -11100101101 9,240 1 -11100101101 oil-gathering 1 -11100101101 240.96 1 -11100101101 pool-party 1 -11100101101 agri-industrial 1 -11100101101 agro-chemicals 1 -11100101101 engine-overhaul 1 -11100101101 22,713 1 -11100101101 argriculture 1 -11100101101 handsized 1 -11100101101 1,424,000 1 -11100101101 tidewater 1 -11100101101 non-paper 1 -11100101101 6:20 1 -11100101101 Chiang-family 1 -11100101101 gas-liquids 1 -11100101101 BethForge 1 -11100101101 recreational-properties 1 -11100101101 foil-rolling 1 -11100101101 1236.34 1 -11100101101 patient-referral 1 -11100101101 GE/RCA/Thomson 1 -11100101101 44,967 1 -11100101101 23-inch 1 -11100101101 cross-promotional 1 -11100101101 mineral-related 1 -11100101101 brokerage-office 1 -11100101101 data-distribution 1 -11100101101 retail-support 1 -11100101101 seedstocks 1 -11100101101 equity-arbitrage 1 -11100101101 redi-mix 1 -11100101101 lumber-product 1 -11100101101 aluminum-extrusion 1 -11100101101 nucleargrade 1 -11100101101 gas-only 1 -11100101101 space-policy 1 -11100101101 flat-rolled-steel 1 -11100101101 Atoke 1 -11100101101 faster-spending 1 -11100101101 TKUNK 1 -11100101101 text-publishing 1 -11100101101 automobile-lending 1 -11100101101 concrete-product-making 1 -11100101101 234,141 1 -11100101101 innate-ability 1 -11100101101 developer/fast-buck 1 -11100101101 breast-imaging 1 -11100101101 paper-cup 1 -11100101101 non-Airbus 1 -11100101101 1.103 1 -11100101101 real-estate-asset 1 -11100101101 non-Ciba 1 -11100101101 227,786 1 -11100101101 floating-point 1 -11100101101 series-production 1 -11100101101 moldable 1 -11100101101 monthearlier 1 -11100101101 111,767 1 -11100101101 liquidation-sale 1 -11100101101 Mar-Salle 1 -11100101101 country-based 1 -11100101101 job-threatening 1 -11100101101 BiLo 1 -11100101101 agriculture-chemicals 1 -11100101101 milkmaids 1 -11100101101 50,715 1 -11100101101 contract-printing 1 -11100101101 business-computing 1 -11100101101 knishes 1 -11100101101 remote-site 1 -11100101101 Ocean-going 1 -11100101101 noncyclical 1 -11100101101 pencil-pushing 1 -11100101101 cattle-rustling 1 -11100101101 discount-house 1 -11100101101 street-cleaners 1 -11100101101 bulk-imported 1 -11100101101 transactionstructuring 1 -11100101101 driver-license 1 -11100101101 appointment-book 1 -11100101101 whistleblowing 1 -11100101101 Jonathan-the-child 1 -11100101101 nonmining 1 -11100101101 risk-capital 1 -11100101101 Rochester-area 1 -11100101101 trading-support 1 -11100101101 690,946 1 -11100101101 44,456 1 -11100101101 airliner-building 1 -11100101101 3,186 1 -11100101101 Swaledale 1 -11100101101 30,050 1 -11100101101 share-financing 1 -11100101101 process-machinery 1 -11100101101 nongrocery 2 -11100101101 vivisection 2 -11100101101 non-phone 2 -11100101101 bill-collecting 2 -11100101101 roofing-tile 2 -11100101101 sheet-rolling 2 -11100101101 Ugo 2 -11100101101 uranium-mining 2 -11100101101 resistor 2 -11100101101 81-year 2 -11100101101 tree-cutting 2 -11100101101 fee-producing 2 -11100101101 extraparliamentary 2 -11100101101 anti-male 2 -11100101101 liquor-related 2 -11100101101 PPO 2 -11100101101 247,623 2 -11100101101 1247.87 2 -11100101101 1984-tax-act 2 -11100101101 air-dryer 2 -11100101101 tough-sounding 2 -11100101101 162,200 2 -11100101101 non-copper 2 -11100101101 2,909,000 2 -11100101101 communist-pattern 2 -11100101101 1,264 2 -11100101101 home-fashion 2 -11100101101 counter-cyclical 2 -11100101101 unathorized 2 -11100101101 Libyan-sponsored 2 -11100101101 delusional 2 -11100101101 vote-delivering 2 -11100101101 strip-mining 2 -11100101101 stress-induced 2 -11100101101 food-wholesaling 2 -11100101101 restyling 2 -11100101101 Coldforge 2 -11100101101 clear-sighted 2 -11100101101 costcontainment 2 -11100101101 unscholarly 2 -11100101101 hazardous-chemical 2 -11100101101 securities-markets 2 -11100101101 auto-glass 2 -11100101101 Sverdlov 2 -11100101101 geophysical-exploration 2 -11100101101 monopanel 2 -11100101101 moneylosing 2 -11100101101 craft-store 2 -11100101101 exploration-and-production 2 -11100101101 microwave-communications 2 -11100101101 filmmaking 2 -11100101101 non-IFR 2 -11100101101 Helmsley-controlled 2 -11100101101 non-aluminum 3 -11100101101 trade-war 3 -11100101101 ferrosilicon 3 -11100101101 original-instrument 3 -11100101101 fine-wine 3 -11100101101 TMI 3 -11100101101 securities-dealer 3 -11100101101 pay-later 3 -11100101101 terroristic 3 -11100101101 news-division 3 -11100101101 one-part 3 -11100101101 Betze 3 -11100101101 shimmying 3 -11100101101 non-California 3 -11100101101 mixed-media 3 -11100101101 pillorying 3 -11100101101 landholding 3 -11100101101 secessionist 3 -11100101101 single-handed 3 -11100101101 taxpayer-subsidized 4 -11100101101 atavistic 4 -11100101101 Wedtech-related 4 -11100101101 excretory 4 -11100101101 population-control 4 -11100101101 well-head 4 -11100101101 more-established 4 -11100101101 die-casting 4 -11100101101 developed-country 4 -11100101101 profit-based 4 -11100101101 22-month 5 -11100101101 refitting 5 -11100101101 anti-state 5 -11100101101 end-of-the-month 6 -11100101101 half-way 6 -11100101101 feigned 6 -11100101101 non-grocery 11 -11100101101 reawakened 14 -11100101101 ceasing 19 -11100101101 professed 66 -11100101101 seeming 134 -11100101101 day-to-day 484 -11100101101 discontinued 1260 -11100101101 renewed 1309 -11100101101 continuing 5615 -11100101101 relative 1330 -11100101110 nonuniformly 1 -11100101110 buttercups 1 -11100101110 new-looking 1 -11100101110 hubristic 1 -11100101110 high-handedly 1 -11100101110 Thanksgiving-Christmas 1 -11100101110 skating-rink-sized 1 -11100101110 16-performance 1 -11100101110 re-hearing 1 -11100101110 37.5-hour 1 -11100101110 decade-and-a-half 1 -11100101110 nonassessable 1 -11100101110 foully 1 -11100101110 non-kosher 1 -11100101110 halfhour 1 -11100101110 already-hard 1 -11100101110 less-watched 1 -11100101110 bootblack 1 -11100101110 red-carpeted 1 -11100101110 existing-employees 1 -11100101110 four-foot-square 1 -11100101110 theater-like 1 -11100101110 metal-to-metal 1 -11100101110 mini-emergency 1 -11100101110 three-yard 1 -11100101110 73-mile 1 -11100101110 legal-limit 1 -11100101110 four-city 1 -11100101110 Atlanta-to-Houston 1 -11100101110 corn-beef 1 -11100101110 humidor 1 -11100101110 back-handed 1 -11100101110 sensible-sounding 1 -11100101110 1-day 1 -11100101110 sound-dampened 1 -11100101110 currency-resistant 1 -11100101110 anti-tax-increase 1 -11100101110 17-yard 1 -11100101110 non-splashy 1 -11100101110 four-yard 1 -11100101110 bed-wetter 1 -11100101110 target-splitting 1 -11100101110 video-projection 1 -11100101110 people-and 1 -11100101110 inheritance-tax 1 -11100101110 three-and-a-half-hour 1 -11100101110 tire-testing 1 -11100101110 tanagers 1 -11100101110 green-carpeted 1 -11100101110 waterpipe 1 -11100101110 stop-watched 1 -11100101110 desk-packed 1 -11100101110 third-set 1 -11100101110 inauspiciously 1 -11100101110 memorandum-of-understanding 1 -11100101110 aconites 1 -11100101110 badly-healed 1 -11100101110 direct-equity 1 -11100101110 small-appearing 1 -11100101110 sportscast 1 -11100101110 12-by-15-foot 1 -11100101110 surreptious 1 -11100101110 crack-induced 1 -11100101110 Superpretzel 1 -11100101110 medium-to-long 1 -11100101110 normal-sounding 1 -11100101110 yo-yoed 1 -11100101110 Surveyors 1 -11100101110 ice-stacked 1 -11100101110 pundit-confounding 1 -11100101110 living-dining 1 -11100101110 transAtlantic 1 -11100101110 low-keyed 1 -11100101110 anti-sanctions 2 -11100101110 65-year 2 -11100101110 oratorios 2 -11100101110 phallic-shaped 2 -11100101110 clearcut 2 -11100101110 non-fat 2 -11100101110 1,157 2 -11100101110 cai 2 -11100101110 untarnished 2 -11100101110 hypnotist 2 -11100101110 trend-happy 2 -11100101110 chinning 2 -11100101110 deconstructionist 2 -11100101110 GIC-backed 2 -11100101110 Wrightsman 2 -11100101110 featherbed 2 -11100101110 Ti 2 -11100101110 Alsatians 2 -11100101110 millisecond 2 -11100101110 Palestinian-Israeli 2 -11100101110 breath-taking 2 -11100101110 47-46 2 -11100101110 co-location 2 -11100101110 multi-disciplinary 2 -11100101110 spick 2 -11100101110 phoney 2 -11100101110 farreaching 2 -11100101110 Ypres 2 -11100101110 fondue 3 -11100101110 street-tough 3 -11100101110 non-trivial 3 -11100101110 linguistically 3 -11100101110 hysterectomies 3 -11100101110 gas-compressor 3 -11100101110 Bufo 3 -11100101110 tarantula 3 -11100101110 rapturously 3 -11100101110 25-yard 3 -11100101110 bastardized 3 -11100101110 bio 5 -11100101110 goal-line 5 -11100101110 Neanderthals 5 -11100101110 non-threatening 6 -11100101110 1-0 6 -11100101110 spool-up 7 -11100101110 comfy 8 -11100101110 2-0 10 -11100101110 billable 10 -11100101110 one-night 17 -11100101110 elapsed 21 -11100101110 long 12840 -11100101110 darkened 36 -11100101111 Housecleaner 1 -11100101111 1,298 1 -11100101111 one-in-three 1 -11100101111 italoid 1 -11100101111 single-earner 1 -11100101111 theoretic 1 -11100101111 U-shape 1 -11100101111 3,800-square-foot 1 -11100101111 71-91 1 -11100101111 affectedly 1 -11100101111 Hemingwayesque 1 -11100101111 long-wanted 1 -11100101111 half-serious 1 -11100101111 piddle 1 -11100101111 270-board 1 -11100101111 1976-style 1 -11100101111 somewhat-less-radical 1 -11100101111 Washington-Moscow 1 -11100101111 tidal-wave 1 -11100101111 KGB-inspired 1 -11100101111 basketwork 1 -11100101111 not-so-difficult 1 -11100101111 prescription-free 1 -11100101111 253-182 1 -11100101111 self-admiring 1 -11100101111 retirement-facility 1 -11100101111 cross-class 1 -11100101111 three-opera 1 -11100101111 purer-than-usual 1 -11100101111 three-games-to-one 1 -11100101111 jalopy 1 -11100101111 171-133 1 -11100101111 precendential 1 -11100101111 one-currency 1 -11100101111 sometimes-difficult 1 -11100101111 take-it-whole 1 -11100101111 fourth-gear 1 -11100101111 piling-on 1 -11100101111 Giulietti 1 -11100101111 finger-busting 1 -11100101111 12,000-pound 1 -11100101111 strangulated 1 -11100101111 250-to-1 1 -11100101111 debiting 1 -11100101111 30-to-1 1 -11100101111 zero/zero 1 -11100101111 payees 1 -11100101111 350-to-293 1 -11100101111 brick-strewn 1 -11100101111 raindrop 1 -11100101111 settling-in 1 -11100101111 59-23 1 -11100101111 28-4 1 -11100101111 1:50 1 -11100101111 jeepload 1 -11100101111 five-symphony 1 -11100101111 litle 1 -11100101111 six-mile-long 1 -11100101111 391-240 1 -11100101111 seven-to-one 1 -11100101111 existentialist 1 -11100101111 home-turf 1 -11100101111 13,013 1 -11100101111 dichotomous 1 -11100101111 goodsized 1 -11100101111 too-dim 1 -11100101111 swirly 1 -11100101111 trustee-like 1 -11100101111 litte 1 -11100101111 round-card 1 -11100101111 seven-to-four 1 -11100101111 non-chemical 1 -11100101111 31.26 1 -11100101111 safe-vault 1 -11100101111 price-suppressing 1 -11100101111 intiatives 1 -11100101111 populist-left 1 -11100101111 1-in-5 1 -11100101111 red-breasted 1 -11100101111 1:57 1 -11100101111 pressure-free 1 -11100101111 REFRIGERATOR 1 -11100101111 1-in-67 1 -11100101111 beer-and-wine 1 -11100101111 car-filled 1 -11100101111 coattail 1 -11100101111 Steagle 1 -11100101111 four-hole 1 -11100101111 legislatory 1 -11100101111 Annenberg/CPB-funded 1 -11100101111 wink-and-a-nod 1 -11100101111 strong-headed 1 -11100101111 gluesniffer 1 -11100101111 one-in-65 1 -11100101111 ever-burgeoning 1 -11100101111 10.5-point 1 -11100101111 best-in-the-Majors 1 -11100101111 Slavophone 1 -11100101111 not-bad 1 -11100101111 Rus'-Kievan 1 -11100101111 jurisprudential 1 -11100101111 tongue-and-cheek 1 -11100101111 75-onion 1 -11100101111 clip-studded 1 -11100101111 gang-dominated 1 -11100101111 coriander 1 -11100101111 Gabon-based 1 -11100101111 Carternomics 1 -11100101111 rackety 1 -11100101111 1-in-25,000 1 -11100101111 sad/Mad 1 -11100101111 freeform 1 -11100101111 lab-test 1 -11100101111 four-field 1 -11100101111 auspiciously 1 -11100101111 needle's-eye 1 -11100101111 Gloria-Cedric 1 -11100101111 seven-for-seven 1 -11100101111 nonpromotional 1 -11100101111 Neo-Liberal 1 -11100101111 collagelike 1 -11100101111 low-educated 1 -11100101111 less-than-zero 1 -11100101111 macadam 1 -11100101111 trade-blocking 1 -11100101111 poison-ivy 1 -11100101111 basketlike 1 -11100101111 once-in-a-decade 1 -11100101111 wordprocessor 1 -11100101111 coat-tailing 1 -11100101111 public-resource 1 -11100101111 God- 1 -11100101111 pompon 1 -11100101111 non-random 1 -11100101111 more-informed 1 -11100101111 prior-approval 1 -11100101111 skull-and-crossbone 1 -11100101111 coked-out 1 -11100101111 next-to-no 1 -11100101111 mud-like 1 -11100101111 better-than-random 1 -11100101111 300,309 1 -11100101111 air-water 1 -11100101111 geomagnetic 1 -11100101111 1:12 1 -11100101111 not-insignificant 1 -11100101111 marionette 1 -11100101111 unchurchly 1 -11100101111 21-party 1 -11100101111 multimillion- 1 -11100101111 revolutionist 1 -11100101111 250-car 1 -11100101111 French- 1 -11100101111 Cyprus-style 1 -11100101111 CEMETERY 1 -11100101111 grandscale 1 -11100101111 less-shocking 1 -11100101111 unfertilized 1 -11100101111 110-trombone 2 -11100101111 two-syllable 2 -11100101111 finnicky 2 -11100101111 bell-like 2 -11100101111 1-in-100 2 -11100101111 five-concert 2 -11100101111 non-disruptive 2 -11100101111 near-solid 2 -11100101111 full-frontal 2 -11100101111 blatent 2 -11100101111 wall-sized 2 -11100101111 110-megabyte 2 -11100101111 drug- 2 -11100101111 possessive 2 -11100101111 durn 2 -11100101111 half-foot 2 -11100101111 one-in-10,000 2 -11100101111 Christmas-tree 2 -11100101111 gradeschool 2 -11100101111 husky-voiced 2 -11100101111 queenly 2 -11100101111 snaky 2 -11100101111 not-so-obvious 2 -11100101111 14-point 2 -11100101111 construction-engineering 2 -11100101111 half-second 2 -11100101111 13-episode 2 -11100101111 pedigreed 2 -11100101111 finned 2 -11100101111 tired-looking 2 -11100101111 slighty 2 -11100101111 burbling 2 -11100101111 religious-based 2 -11100101111 Meissen 2 -11100101111 Sincere 2 -11100101111 pasty 2 -11100101111 half-height 3 -11100101111 pink-and-white 3 -11100101111 breakable 3 -11100101111 pilots-union 3 -11100101111 staph 3 -11100101111 one-in-five 3 -11100101111 two-state 3 -11100101111 definable 3 -11100101111 regretful 3 -11100101111 pre-sold 3 -11100101111 tar-like 3 -11100101111 spavined 3 -11100101111 usurious 3 -11100101111 presumptively 3 -11100101111 better-than-even 4 -11100101111 jet-set 4 -11100101111 clairvoyant 4 -11100101111 plain-looking 4 -11100101111 better-than-.500 4 -11100101111 competitive-shift 4 -11100101111 status-quo 5 -11100101111 more-effective 5 -11100101111 55-45 5 -11100101111 supercilious 6 -11100101111 organically 6 -11100101111 20-megabyte 8 -11100101111 heckuva 11 -11100101111 ripple 117 -11100101111 little 12600 -11100101111 scant 283 -1110011000 post-hospital 1 -1110011000 everdwindling 1 -1110011000 80-degree 1 -1110011000 anti-sex-harassment 1 -1110011000 825,151 1 -1110011000 1,520,000 1 -1110011000 foreign-market 1 -1110011000 Indian-looking 1 -1110011000 air-traveler 1 -1110011000 CHARGE 1 -1110011000 unbinding 1 -1110011000 anxiolytic 1 -1110011000 11.1-million 1 -1110011000 mortgage-deduction 1 -1110011000 222.50 1 -1110011000 Abscam-like 1 -1110011000 single-stranded 1 -1110011000 anti-anticommunist 1 -1110011000 5,255,822 1 -1110011000 Apple-coined 1 -1110011000 Iraqi-sought 1 -1110011000 multisyllable 1 -1110011000 isopropyl 1 -1110011000 142,500 1 -1110011000 9,972,868 1 -1110011000 grocery-checkout 1 -1110011000 Frankensteinan 1 -1110011000 high-topped 1 -1110011000 outreached 1 -1110011000 arctic-white 1 -1110011000 979,129 1 -1110011000 as-yet-unknown 1 -1110011000 even-stronger 1 -1110011000 uspecified 1 -1110011000 956,083 1 -1110011000 hardcurrency 1 -1110011000 THEFT 1 -1110011000 pre-made 1 -1110011000 DIZZYING 1 -1110011000 Ailes-inspired 1 -1110011000 U.S.-team 1 -1110011000 282,955 1 -1110011000 113,985 1 -1110011000 221,563 1 -1110011000 794,570 1 -1110011000 Alfried 1 -1110011000 airport-grant 1 -1110011000 258,424 1 -1110011000 6,695,102 1 -1110011000 3,426,120 1 -1110011000 American-run 1 -1110011000 out-of-area 1 -1110011000 aeronautical-engineering 1 -1110011000 10,245 1 -1110011000 air-fouling 1 -1110011000 oft-promised 1 -1110011000 857-page 1 -1110011000 anti-War-on-Poverty 1 -1110011000 Edvard 1 -1110011000 ex-Parker 1 -1110011000 681,600 1 -1110011000 uneviable 1 -1110011000 second-most-powerful 1 -1110011000 YEN 1 -1110011000 186,820 1 -1110011000 I-told-you-so 1 -1110011000 1.4302 1 -1110011000 30,400 1 -1110011000 362,700 1 -1110011000 keypunch 1 -1110011000 easier-credit 1 -1110011000 112,796 1 -1110011000 fuel-replacement 1 -1110011000 non-obscene 1 -1110011000 268,570 1 -1110011000 404,700 1 -1110011000 anti-Rehnquist 1 -1110011000 1.3483 1 -1110011000 73,100 1 -1110011000 Alice-Through-the-Looking-Glass 1 -1110011000 evil-looking 1 -1110011000 SAVORED 1 -1110011000 out-take 1 -1110011000 56,800 1 -1110011000 noninherited 1 -1110011000 Olympic-type 1 -1110011000 acid-like 1 -1110011000 ex-Microsoft 1 -1110011000 885,800 1 -1110011000 717,780 1 -1110011000 1,540,500 1 -1110011000 wireframe 1 -1110011000 addititonal 1 -1110011000 un-self-conscious 1 -1110011000 long-distant 1 -1110011000 small-export 1 -1110011000 UNKNOWN 1 -1110011000 98,781 1 -1110011000 1,394,556 1 -1110011000 350,110 1 -1110011000 employment-eligibilty 1 -1110011000 232,700 1 -1110011000 economics-oriented 1 -1110011000 dye-containing 1 -1110011000 warrant-debenture 1 -1110011000 1,424,313 1 -1110011000 226,316 1 -1110011000 1.770 1 -1110011000 296,875 1 -1110011000 432,605 1 -1110011000 328,275 1 -1110011000 eight-column 1 -1110011000 807-car 1 -1110011000 286,700 1 -1110011000 undeterminable 1 -1110011000 opposition-backed 1 -1110011000 550,647 1 -1110011000 umber 1 -1110011000 8-inch-by-11-inch 1 -1110011000 self-attestation 1 -1110011000 oil-seeds 1 -1110011000 data-mandatory 1 -1110011000 18,000-square-foot 1 -1110011000 85-foot-high 1 -1110011000 IDI 1 -1110011000 80-passenger 1 -1110011000 easy-to-remember 1 -1110011000 eight-bank 1 -1110011000 11,569,200 1 -1110011000 62,400 1 -1110011000 1,254,587 1 -1110011000 4,027,619 1 -1110011000 Eastern-grip 1 -1110011000 output-price 1 -1110011000 298,500 1 -1110011000 650,200 1 -1110011000 1.4557 1 -1110011000 anti-City 1 -1110011000 anarchist-dark 1 -1110011000 eye-glazing 1 -1110011000 antimodernist 1 -1110011000 293,300 1 -1110011000 even-narrower 1 -1110011000 associate-pastor 1 -1110011000 172,700 1 -1110011000 inflationadjusted 1 -1110011000 local-governmental 1 -1110011000 320,300 1 -1110011000 565,500 1 -1110011000 490,700 1 -1110011000 800-person 1 -1110011000 188,847 1 -1110011000 unemployment-rate 1 -1110011000 anti-racketering 1 -1110011000 unemployment-claims 1 -1110011000 unregisterd 1 -1110011000 almost-identical 1 -1110011000 Pawiak 1 -1110011000 THACHER 1 -1110011000 8-by-8 1 -1110011000 unbankerly 1 -1110011000 quasi-abstract 1 -1110011000 115,460 1 -1110011000 4,022,767 1 -1110011000 intra-governmental 1 -1110011000 uncustomary 1 -1110011000 year-more 1 -1110011000 ever-sprouting 1 -1110011000 tenorial 1 -1110011000 extra-capacity 1 -1110011000 430,107 1 -1110011000 957,800 1 -1110011000 hard-currency-paying 1 -1110011000 unecological 1 -1110011000 all-but-dead 1 -1110011000 ever-so-slight 1 -1110011000 NIH-invented 1 -1110011000 bonbon 1 -1110011000 more-vigorous 1 -1110011000 anti-gold 1 -1110011000 extraordinarly 1 -1110011000 capitalmarket 1 -1110011000 optional-equipment 1 -1110011000 POISONING 1 -1110011000 extra-shiny 1 -1110011000 uninfluential 1 -1110011000 car-ad 1 -1110011000 11-session 1 -1110011000 anti-humanitarian 1 -1110011000 either-or-you 1 -1110011000 870,550 1 -1110011000 EPA-funded 1 -1110011000 11,053 1 -1110011000 all-too-clear 1 -1110011000 often-extended 1 -1110011000 offcourse 1 -1110011000 Assignation 1 -1110011000 alcohol-and-substance-abuse 1 -1110011000 1986-act 1 -1110011000 PLACED 1 -1110011000 time-transcending 1 -1110011000 6,315 1 -1110011000 toy-box 1 -1110011000 0.707 1 -1110011000 overwelming 1 -1110011000 1,723,491 1 -1110011000 easy-to-follow 1 -1110011000 68,965 1 -1110011000 otherwise-innocuous 1 -1110011000 9,761 1 -1110011000 2,460,000 1 -1110011000 ever-dwindling 1 -1110011000 10-ruble-note 1 -1110011000 unindexed 1 -1110011000 ethanol-powered 1 -1110011000 20.9586 1 -1110011000 extrastrength 1 -1110011000 6,725,425 1 -1110011000 intervention-free 1 -1110011000 odd-numbered 2 -1110011000 unprovable 2 -1110011000 whitecollar 2 -1110011000 1.1333 2 -1110011000 2,614 2 -1110011000 administration-opposed 2 -1110011000 970,800 2 -1110011000 insured-deposit 2 -1110011000 less-onerous 2 -1110011000 immediate-payment 2 -1110011000 over-the-phone 2 -1110011000 techniques. 2 -1110011000 economy-of-scale 2 -1110011000 even-faster 2 -1110011000 apodictic 2 -1110011000 3,029,200 2 -1110011000 unvoted 2 -1110011000 eight-ounce 2 -1110011000 party-oriented 2 -1110011000 unassembled 2 -1110011000 opium-like 2 -1110011000 23,200 2 -1110011000 373,861 2 -1110011000 industry-leading 2 -1110011000 1,057,000 2 -1110011000 unsheltered 2 -1110011000 ADR. 2 -1110011000 unsolicted 2 -1110011000 heel-nipping 2 -1110011000 oft-told 2 -1110011000 regional-company 2 -1110011000 1,193,887 2 -1110011000 extra-extra 2 -1110011000 1.163 2 -1110011000 in-country 2 -1110011000 1,033,333 2 -1110011000 electrogalvanizing 2 -1110011000 Apple-compatible 2 -1110011000 all-too-rare 2 -1110011000 all-Boeing 2 -1110011000 movielike 2 -1110011000 similar-looking 2 -1110011000 summer-school 2 -1110011000 definitive-bearer 3 -1110011000 IMPORTANT 3 -1110011000 aggregrate 3 -1110011000 gold-rush 3 -1110011000 unpurchased 3 -1110011000 hard-and-fast 3 -1110011000 8,000-foot 3 -1110011000 underground-storage 3 -1110011000 hotel-venture 3 -1110011000 0.3322 3 -1110011000 out-of-tune 3 -1110011000 substanial 3 -1110011000 off-farm 3 -1110011000 unmixed 3 -1110011000 1,830,000 3 -1110011000 374,093 3 -1110011000 ever-greater 3 -1110011000 distributional 4 -1110011000 unsuspected 4 -1110011000 as-yet-undetermined 4 -1110011000 11-page 4 -1110011000 untitled 4 -1110011000 parking-meter 4 -1110011000 anti-dilution 4 -1110011000 800-milligram 4 -1110011000 corporate-sponsored 4 -1110011000 option-package 4 -1110011000 additonal 4 -1110011000 out-of-print 5 -1110011000 onsite 5 -1110011000 4,960,000 5 -1110011000 odd-looking 5 -1110011000 already-scheduled 5 -1110011000 less-severe 5 -1110011000 sincerest 5 -1110011000 gainful 5 -1110011000 664,400 6 -1110011000 income-related 6 -1110011000 government-led 6 -1110011000 high-dollar 8 -1110011000 uncensored 8 -1110011000 unsubscribed 9 -1110011000 non-essential 9 -1110011000 DM 13 -1110011000 unspent 14 -1110011000 ever-larger 17 -1110011000 18-hour 18 -1110011000 unreleased 26 -1110011000 NT 31 -1110011000 I-9 31 -1110011000 inflation-indexed 33 -1110011000 unclaimed 35 -1110011000 as-yet 44 -1110011000 eight-hour 45 -1110011000 nondefense 46 -1110011000 inordinate 58 -1110011000 up-front 99 -1110011000 undetermined 129 -1110011000 unwanted 412 -1110011000 undisclosed 502 -1110011000 unspecified 629 -1110011000 additional 8595 -1110011000 extra 1649 -11100110010 graffiti-scarred 1 -11100110010 already-uncomfortably 1 -11100110010 tribes. 1 -11100110010 8.6-mark 1 -11100110010 OPEC-meeting 1 -11100110010 84-10 1 -11100110010 equal-protection-clause 1 -11100110010 index-portfolio 1 -11100110010 85-10 1 -11100110010 89-5 1 -11100110010 asset-and-liability 1 -11100110010 cash-up-front 1 -11100110010 whiplashing 1 -11100110010 over-consumption 1 -11100110010 arena-quality 1 -11100110010 investment-adviser 1 -11100110010 eel-like 1 -11100110010 86.11-point 1 -11100110010 81-17 1 -11100110010 Islamic-Israeli 1 -11100110010 eight-lane 1 -11100110010 unshored 1 -11100110010 univited 1 -11100110010 SABATICALS 1 -11100110010 influence-buying 1 -11100110010 magazine-consuming 1 -11100110010 insurance-liability 1 -11100110010 eight-line 1 -11100110010 indoor-plant 1 -11100110010 oil-speculation 1 -11100110010 ice-encrusted 1 -11100110010 18year 1 -11100110010 scatter-site 1 -11100110010 export-spawned 1 -11100110010 83-9 1 -11100110010 1000th 1 -11100110010 earthshattering 1 -11100110010 trade-induced 1 -11100110010 recongnizable 1 -11100110010 age-neutral 1 -11100110010 anti-system 1 -11100110010 job-cut 1 -11100110010 AIDS-law 1 -11100110010 even-wider 1 -11100110010 economic-populism 1 -11100110010 tennis-hacking 1 -11100110010 27-to-23 1 -11100110010 less-than-shining 1 -11100110010 aide-item 1 -11100110010 Iranian-mediated 1 -11100110010 Iranian-brokered 1 -11100110010 vanity-press 1 -11100110010 foreign-unit 1 -11100110010 off-machine 1 -11100110010 thumb-indexed 1 -11100110010 earlier-than-contemplated 1 -11100110010 hot-blow 1 -11100110010 everybody-wins 1 -11100110010 continued-employment 1 -11100110010 pre-tariff 1 -11100110010 even-bigger 1 -11100110010 ultra-high-pressure 1 -11100110010 unconfessed 1 -11100110010 image-damaging 1 -11100110010 all-Airbus 1 -11100110010 four-magazine 1 -11100110010 polychlorinated-biphenyls 1 -11100110010 80-mph 1 -11100110010 Icahn-style 1 -11100110010 eleven-member 1 -11100110010 execution-style 1 -11100110010 89-day 1 -11100110010 imagineer 1 -11100110010 Italian-Mexican 1 -11100110010 Ethiopian-Soviet 1 -11100110010 extra-heavy 1 -11100110010 82-17 1 -11100110010 once-competitive 1 -11100110010 eocnomic 1 -11100110010 air-traveling 1 -11100110010 anti-poison-pill 1 -11100110010 inner-ear 1 -11100110010 already-negative 1 -11100110010 aberrationally 1 -11100110010 once-deserved 1 -11100110010 NWA-level 1 -11100110010 FTC-approved 1 -11100110010 ill-placed 1 -11100110010 ore-crusher 1 -11100110010 15th-19th 1 -11100110010 800-employee 1 -11100110010 oil-tainted 1 -11100110010 newly-formed 1 -11100110010 half-ironic 1 -11100110010 investment-protection 1 -11100110010 87-11 1 -11100110010 REBUFFED 1 -11100110010 per-month 1 -11100110010 unwelcomed 1 -11100110010 as-yet-unanswered 1 -11100110010 52week 1 -11100110010 April-like 1 -11100110010 89,094 1 -11100110010 extra-moist 1 -11100110010 offer-to-purchase 1 -11100110010 eight-ninths 1 -11100110010 unconcentrated 1 -11100110010 84-1 1 -11100110010 post-September 1 -11100110010 8.51-point 1 -11100110010 oil-dependency 1 -11100110010 almost-Shakespearean 1 -11100110010 all-but-unachievable 1 -11100110010 underhood 1 -11100110010 amphibious-assault 1 -11100110010 urban-rural 1 -11100110010 end-of-October 1 -11100110010 Indian-mediated 1 -11100110010 elementary-grade 1 -11100110010 free-share 1 -11100110010 threetranche 1 -11100110010 amendatory 1 -11100110010 acetylene-fueled 1 -11100110010 most-severe 1 -11100110010 total-tons 1 -11100110010 Adenoclone 1 -11100110010 floutingly 1 -11100110010 vampire-movie 1 -11100110010 book-buying 1 -11100110010 89-6 1 -11100110010 also-not-unusual 1 -11100110010 model-home 1 -11100110010 already-strong 1 -11100110010 81-4 1 -11100110010 84-8 1 -11100110010 800,000-acre 1 -11100110010 71-page 1 -11100110010 long-perceived 1 -11100110010 IBM-developed 1 -11100110010 food-buying 1 -11100110010 intragovernmental 1 -11100110010 67-year 2 -11100110010 full-hearted 2 -11100110010 earlier-than-expected 2 -11100110010 account-executive 2 -11100110010 18-11 2 -11100110010 revenue-bond 2 -11100110010 Two-part 2 -11100110010 eight-session 2 -11100110010 once-grand 2 -11100110010 bank-by-bank 2 -11100110010 peek-a-boo 2 -11100110010 absentee-ballot 2 -11100110010 ski-watching 2 -11100110010 private-partnership 2 -11100110010 O-shaped 2 -11100110010 USBL 2 -11100110010 in-progress 2 -11100110010 anti-obesity 2 -11100110010 ever-broadening 2 -11100110010 84-day 2 -11100110010 often-quoted 2 -11100110010 arms-shipping 2 -11100110010 oft-noted 2 -11100110010 post-Plaza 2 -11100110010 immunologic 2 -11100110010 intrayear 2 -11100110010 EC-Comecon 2 -11100110010 86-11 2 -11100110010 8,000-person 2 -11100110010 financial-report 2 -11100110010 uncomplaining 2 -11100110010 rapid-growth 2 -11100110010 safety-evacuation 2 -11100110010 paper-money 2 -11100110010 Boiron 2 -11100110010 eight-mile-long 2 -11100110010 anti-Turk 2 -11100110010 still-tentative 2 -11100110010 direct-line 2 -11100110010 amnesty-application 2 -11100110010 CANCELED 2 -11100110010 80-yard 2 -11100110010 early-1985 2 -11100110010 once-generous 2 -11100110010 40,000-mile 2 -11100110010 Maxfin 2 -11100110010 industry-mix 2 -11100110010 Amoco-Dome 2 -11100110010 anti-yuppie 2 -11100110010 unexcelled 2 -11100110010 often-rumored 2 -11100110010 silver-foot-in-the-mouth 2 -11100110010 conscience-stricken 2 -11100110010 Angolan-Cuban 2 -11100110010 all-wise 2 -11100110010 undemanding 3 -11100110010 88-day 3 -11100110010 eagle-eyed 3 -11100110010 all-economy 3 -11100110010 early-January 3 -11100110010 seven-year-long 3 -11100110010 26-24 3 -11100110010 all-share 3 -11100110010 executive-privilege 3 -11100110010 85-page 3 -11100110010 official-looking 3 -11100110010 anti-regulatory 3 -11100110010 on-again-off-again 3 -11100110010 apartment-complex 3 -11100110010 dislocating 3 -11100110010 early-August 3 -11100110010 issue-by-issue 3 -11100110010 83-day 3 -11100110010 less-demanding 3 -11100110010 unhurried 3 -11100110010 intrasession 3 -11100110010 400th 3 -11100110010 insurance-buying 3 -11100110010 unscripted 3 -11100110010 six-week-long 3 -11100110010 four-month-long 3 -11100110010 eight-mile 3 -11100110010 unrequired 3 -11100110010 extemporaneous 3 -11100110010 Indian-backed 3 -11100110010 intitial 3 -11100110010 Indian-sponsored 3 -11100110010 87-day 3 -11100110010 home-court 4 -11100110010 lengthiest 4 -11100110010 fiscal-1989 4 -11100110010 Oxford-educated 4 -11100110010 inflation-hedge 4 -11100110010 11-week 4 -11100110010 equal-sized 4 -11100110010 enterprise-zone 4 -11100110010 twice-yearly 4 -11100110010 intial 4 -11100110010 arms-length 4 -11100110010 auto-buying 4 -11100110010 often-stated 4 -11100110010 earnings-growth 4 -11100110010 ultra-liberal 4 -11100110010 18-month-long 4 -11100110010 home-field 4 -11100110010 early-1988 4 -11100110010 8,000-mile 4 -11100110010 85-day 4 -11100110010 moviegoing 4 -11100110010 80-page 4 -11100110010 convention-center 4 -11100110010 11,000-member 4 -11100110010 oft-rumored 4 -11100110010 all-expenses-paid 5 -11100110010 either/or 5 -11100110010 anything-goes 5 -11100110010 88-page 5 -11100110010 all-expense-paid 5 -11100110010 early-April 5 -11100110010 field-artillery 5 -11100110010 inital 6 -11100110010 inauspicious 6 -11100110010 unceremonious 6 -11100110010 earlier-reported 6 -11100110010 unsuccesful 6 -11100110010 game-winning 6 -11100110010 four-volume 7 -11100110010 all-or-nothing 7 -11100110010 18-week 7 -11100110010 18-page 7 -11100110010 82-day 7 -11100110010 FDIC-assisted 8 -11100110010 alltime 9 -11100110010 industry-financed 10 -11100110010 late-August 10 -11100110010 11-day 11 -11100110010 80-day 11 -11100110010 18-day 11 -11100110010 first-served 12 -11100110010 post-October 13 -11100110010 intra-day 13 -11100110010 oft-repeated 14 -11100110010 undiluted 14 -11100110010 eleventh-hour 15 -11100110010 all-stock 16 -11100110010 offhand 18 -11100110010 eight-point 19 -11100110010 unexpired 20 -11100110010 11th-hour 20 -11100110010 11-month 22 -11100110010 eight-day 25 -11100110010 11-year 37 -11100110010 18-year 37 -11100110010 appreciable 38 -11100110010 eight-week 40 -11100110010 eight-month 58 -11100110010 abortive 62 -11100110010 introductory 86 -11100110010 eight-year-old 86 -11100110010 18-month 115 -11100110010 all-cash 117 -11100110010 indefinite 151 -11100110010 eight-year 179 -11100110010 all-time 188 -11100110010 unfriendly 258 -11100110010 intraday 414 -11100110010 eventual 443 -11100110010 unsolicited 759 -11100110010 interim 871 -11100110010 shelf 1020 -11100110010 initial 4825 -11100110010 immediate 2164 -11100110011 ever-broader 1 -11100110011 land-price 1 -11100110011 own-brand 1 -11100110011 payment-free 1 -11100110011 black-consciousness 1 -11100110011 job-interview 1 -11100110011 best-recalled 1 -11100110011 exercise-related 1 -11100110011 tour-de-force 1 -11100110011 1,587 1 -11100110011 Taiwan-Japan-Korea 1 -11100110011 reefer 1 -11100110011 preflight 1 -11100110011 heat-seeking-missile 1 -11100110011 time-distance 1 -11100110011 mass-volume 1 -11100110011 national-income 1 -11100110011 debt-oriented 1 -11100110011 Mattia 1 -11100110011 antislavery 1 -11100110011 Kwang-ju 1 -11100110011 luxury-jewelry 1 -11100110011 enhanced-oil 1 -11100110011 socialist-capitalist 1 -11100110011 lumpish 1 -11100110011 joint-and-several 1 -11100110011 reputational 1 -11100110011 12-to-18-month 1 -11100110011 Indian-health 1 -11100110011 sawdust-trail 1 -11100110011 fear-greed 1 -11100110011 toilet-humor 1 -11100110011 fuel-emission 1 -11100110011 guarantee-assisted 1 -11100110011 dollar-value 1 -11100110011 official-car 1 -11100110011 how-to-compute 1 -11100110011 chest-crushing 1 -11100110011 prospectus-like 1 -11100110011 no-less-difficult 1 -11100110011 then-emerging 1 -11100110011 oil-partnership 1 -11100110011 takeover-inspired 1 -11100110011 grad-school 1 -11100110011 drugs-and-dependency 1 -11100110011 walking-through-mine-fields 1 -11100110011 minimart 1 -11100110011 287th 1 -11100110011 choice-in-education 1 -11100110011 long-in-the-tooth 1 -11100110011 broker-arranged 1 -11100110011 liberal-radical 1 -11100110011 no-medal 1 -11100110011 state-action 1 -11100110011 then-preeminent 1 -11100110011 early-phase 1 -11100110011 Pigouvian 1 -11100110011 Secord-related 1 -11100110011 pre-filing 1 -11100110011 bulletlike 1 -11100110011 commuter-train 1 -11100110011 non-repayable 1 -11100110011 grandtheft 1 -11100110011 50-odd-year 1 -11100110011 highest-salaried 1 -11100110011 hearts-and-minds 1 -11100110011 south-wing 1 -11100110011 summerlong 1 -11100110011 Pillow-commissioned 1 -11100110011 politically-motivated 1 -11100110011 non-reusable 1 -11100110011 85-member 1 -11100110011 unforced 1 -11100110011 unrueful 1 -11100110011 lemming-like 1 -11100110011 least-requested 1 -11100110011 Germanlike 1 -11100110011 Lebanon-like 1 -11100110011 anti-MPLA 1 -11100110011 pre-recessionary 1 -11100110011 fraud-linked 1 -11100110011 molasses-tank 1 -11100110011 near-cult 1 -11100110011 individual-sized 1 -11100110011 per-plane 1 -11100110011 eyehole 1 -11100110011 terrorist-inflicted 1 -11100110011 bigger-is-better 1 -11100110011 marine-toxicology 1 -11100110011 employee-shareholder 1 -11100110011 personal-spending 1 -11100110011 pre-uprising 1 -11100110011 whinnying 1 -11100110011 blood-in-the-stool 1 -11100110011 phalluscentric 1 -11100110011 otherwise-high 1 -11100110011 Antar-era 1 -11100110011 pre-Wimbledon 1 -11100110011 pennant-stretch 1 -11100110011 McCall-related 1 -11100110011 middle-period 1 -11100110011 residential-building-contract 1 -11100110011 7,866 1 -11100110011 human-potential 1 -11100110011 religious-cultural-political 1 -11100110011 flittering 1 -11100110011 conservative-Christianity 1 -11100110011 coal-field 1 -11100110011 land-breaking 1 -11100110011 second-most-common 1 -11100110011 pincer 1 -11100110011 Vietnamese-installed 1 -11100110011 company-kept 1 -11100110011 deep-pocket-picking 1 -11100110011 jungle-flavored 1 -11100110011 skin-tingling 1 -11100110011 egg-associated 1 -11100110011 50mg 1 -11100110011 non-gasoline 1 -11100110011 event-sponsorship 1 -11100110011 anything-but-peaceful 1 -11100110011 tax-scam 1 -11100110011 eight-month-long 1 -11100110011 deposit-transfer 1 -11100110011 Miller-Studds 1 -11100110011 teen-labor 1 -11100110011 ten-speediest 1 -11100110011 Medicare-induced 1 -11100110011 after-the-crash 1 -11100110011 early-June 1 -11100110011 post-Indian 1 -11100110011 enjoyably 2 -11100110011 tree-trunk 2 -11100110011 anti-Shoreham 2 -11100110011 Chlor-Trimeton 2 -11100110011 on-location 2 -11100110011 information-swapping 2 -11100110011 earnest-money 2 -11100110011 unofficial-official 2 -11100110011 unlamented 2 -11100110011 30,310 2 -11100110011 handsdown 2 -11100110011 chuckwagon 2 -11100110011 midsized-car 2 -11100110011 six-team 2 -11100110011 school-reform 2 -11100110011 office-computer 2 -11100110011 estate-building 2 -11100110011 yowling 2 -11100110011 TBS-MGM/UA 2 -11100110011 WFF 2 -11100110011 personal-liability 2 -11100110011 community-scale 2 -11100110011 education-reform 2 -11100110011 German-Italian 2 -11100110011 director-and-officer 2 -11100110011 iliac 2 -11100110011 internal-customer 2 -11100110011 work-shift 2 -11100110011 bozhe 2 -11100110011 electricity-rate 2 -11100110011 Alice-in-Wonderland 3 -11100110011 trading-volume 3 -11100110011 mainframe-computer 3 -11100110011 three-dozen 3 -11100110011 non-dancing 3 -11100110011 miscalculates 3 -11100110011 numbers-crunching 3 -11100110011 shorter-lived 3 -11100110011 bankruptcy-related 3 -11100110011 larger-than-normal 3 -11100110011 F18 3 -11100110011 USBC 3 -11100110011 1,164 3 -11100110011 college-entrance 3 -11100110011 TWA-Ozark 3 -11100110011 polio-vaccine 3 -11100110011 Indiana-style 3 -11100110011 unpredicted 3 -11100110011 golden-share 3 -11100110011 age-21 3 -11100110011 meat-team 3 -11100110011 early-week 3 -11100110011 Op-Ed 3 -11100110011 big-car 3 -11100110011 FCC-ordered 3 -11100110011 life-expectancy 3 -11100110011 voiceless 3 -11100110011 opposition-sponsored 3 -11100110011 amendment-free 4 -11100110011 oft-heard 4 -11100110011 per-hour 4 -11100110011 cristobalite 4 -11100110011 eddy 4 -11100110011 in-hospital 4 -11100110011 Ramp-C 4 -11100110011 11th-century 4 -11100110011 unexcused 4 -11100110011 off-field 4 -11100110011 noblest 4 -11100110011 even-larger 4 -11100110011 anti-choice 4 -11100110011 dividend-record 4 -11100110011 easier-to-read 4 -11100110011 ineluctable 4 -11100110011 late-February 5 -11100110011 wise-cracking 5 -11100110011 less-attractive 5 -11100110011 extra-large 5 -11100110011 inflation-induced 5 -11100110011 qui 5 -11100110011 unforseen 5 -11100110011 more-severe 6 -11100110011 artificial-heart 6 -11100110011 unvarnished 6 -11100110011 often-violent 6 -11100110011 inflation-related 6 -11100110011 America-bashing 6 -11100110011 unamortized 6 -11100110011 unflagging 6 -11100110011 infernal 6 -11100110011 reperfusion 6 -11100110011 inflation-driven 6 -11100110011 on-campus 7 -11100110011 onrushing 7 -11100110011 iron-clad 8 -11100110011 honorific 8 -11100110011 unsanctioned 8 -11100110011 executive-suite 9 -11100110011 general-fund 9 -11100110011 marketwide 10 -11100110011 elemental 10 -11100110011 asymmetrical 11 -11100110011 agreed-to 11 -11100110011 pre-publication 11 -11100110011 orphan-drug 12 -11100110011 ossified 12 -11100110011 end-of-the-year 12 -11100110011 ever-widening 13 -11100110011 almost-certain 13 -11100110011 subsoil 14 -11100110011 Iran/Contra 14 -11100110011 interest-payment 16 -11100110011 COLA 17 -11100110011 spare-parts 18 -11100110011 ever-growing 20 -11100110011 ever-changing 27 -11100110011 industry-wide 28 -11100110011 untold 33 -11100110011 odometer 33 -11100110011 incipient 42 -11100110011 ever-increasing 44 -11100110011 optimum 46 -11100110011 intrinsic 53 -11100110011 unbridled 53 -11100110011 unanticipated 61 -11100110011 agreed-upon 65 -11100110011 long-run 65 -11100110011 upfront 75 -11100110011 intangible 91 -11100110011 overheated 94 -11100110011 incremental 119 -11100110011 omnibus 129 -11100110011 involuntary 143 -11100110011 implicit 147 -11100110011 industrywide 275 -11100110011 sheer 279 -11100110011 across-the-board 312 -11100110011 impending 318 -11100110011 inherent 319 -11100110011 aggregate 321 -11100110011 exact 539 -11100110011 automatic 840 -11100110011 underlying 1143 -11100110011 actual 1773 -11100110011 overall 3355 -11100110011 alleged 3733 -1110011010 MODIFIED-ATMOSPHERE 1 -1110011010 employer-maintained 1 -1110011010 record-your-own-voice 1 -1110011010 often-mentioned 1 -1110011010 entrepreneurial-oriented 1 -1110011010 intestinal-bypass 1 -1110011010 antip-apartheid 1 -1110011010 overinflated 1 -1110011010 all-Indian 1 -1110011010 aviation-marketing 1 -1110011010 anti-aircraft-gun 1 -1110011010 M.F.A. 1 -1110011010 Ypsilanti-based 1 -1110011010 American-chartered 1 -1110011010 eight-foot-diameter 1 -1110011010 Edper-controlled 1 -1110011010 aspartame-making 1 -1110011010 amnesty-processing 1 -1110011010 active-sportswear 1 -1110011010 eight-unit 1 -1110011010 outriding 1 -1110011010 avalanche-entombed 1 -1110011010 extra-thin 1 -1110011010 intermediate-care 1 -1110011010 867-room 1 -1110011010 antipodal 1 -1110011010 Brezhnev-period 1 -1110011010 11-screen 1 -1110011010 algae-green 1 -1110011010 equitable-distribution 1 -1110011010 equipment-repair 1 -1110011010 MCA-like 1 -1110011010 otherwise-blank 1 -1110011010 80,000-kernel 1 -1110011010 PREVENT 1 -1110011010 electrolytic-zinc 1 -1110011010 Afghan-affairs 1 -1110011010 all-Reagan-appointed 1 -1110011010 electronic-mall 1 -1110011010 18th-floor 1 -1110011010 immunomodulating 1 -1110011010 in-city 1 -1110011010 authorityon 1 -1110011010 all-women 1 -1110011010 87.5-mile 1 -1110011010 oxygen-containing 1 -1110011010 RJR-KKR 1 -1110011010 action/animation 1 -1110011010 ice-battered 1 -1110011010 adulthood-long 1 -1110011010 oil-drilling-rig 1 -1110011010 88-store 1 -1110011010 ex-vaudeville 1 -1110011010 anti-respiratory 1 -1110011010 all-scrub 1 -1110011010 extra-durable 1 -1110011010 11,200-barrel-a-day 1 -1110011010 Ohio-chartered 1 -1110011010 auto-salvage 1 -1110011010 adding-machine 1 -1110011010 extra-efficient 1 -1110011010 KENT 1 -1110011010 ex-management 1 -1110011010 India-rubber 1 -1110011010 ice-hockey 1 -1110011010 electronic-chip 1 -1110011010 inaugural-season 1 -1110011010 Amsler 1 -1110011010 87-store 1 -1110011010 open-body 1 -1110011010 T-shirt-clad 1 -1110011010 office/retail 1 -1110011010 ex-Nicaragua 1 -1110011010 easy-to-see 1 -1110011010 Orlando-area 1 -1110011010 odiferous 1 -1110011010 unpainted-furniture 1 -1110011010 old-movie 1 -1110011010 ultra-refined 1 -1110011010 Oldsmobile/AMC 1 -1110011010 end-of-innocence 1 -1110011010 over-cranked 1 -1110011010 ore-dressing 1 -1110011010 oak-shaded 1 -1110011010 8-foot-by-10-foot 1 -1110011010 all-boy 1 -1110011010 auction-like 1 -1110011010 oil-burner 1 -1110011010 oil-brokering 1 -1110011010 under-exploited 1 -1110011010 immigrant-swollen 1 -1110011010 payment-differential 1 -1110011010 8,000-barrel-a-day 1 -1110011010 eight-season 1 -1110011010 anti-passing 1 -1110011010 insurance-services 1 -1110011010 east-of-the-Hudson 1 -1110011010 intercustomer 1 -1110011010 under-the-leg 1 -1110011010 opportunity-seeking 1 -1110011010 oil-drilling-platform 1 -1110011010 automotive-marketing 1 -1110011010 employee-theft 1 -1110011010 trans-Alaskan 1 -1110011010 easy-looking 1 -1110011010 all-sangiovese 1 -1110011010 old-Chicago 1 -1110011010 11story 1 -1110011010 anti-moderate-growth 1 -1110011010 economic-information 1 -1110011010 anti-tension 1 -1110011010 anti-relativistic 1 -1110011010 already-uncertain 1 -1110011010 immuno-suppressive 1 -1110011010 81-mile-long 1 -1110011010 130-voice 1 -1110011010 Argentinian-style 1 -1110011010 insurance-case-management 1 -1110011010 eight-store 1 -1110011010 economy-lodging 1 -1110011010 BIG-LEAGUE 1 -1110011010 85-seat 1 -1110011010 action/Claymation 1 -1110011010 end-blown 1 -1110011010 ORANGE-PICKING 1 -1110011010 Ndebele-speaking 1 -1110011010 industrial-rubber-products 1 -1110011010 800-foot 1 -1110011010 occupation-related 1 -1110011010 800-square-mile 1 -1110011010 offshore-Angola 1 -1110011010 ice-filled 1 -1110011010 equipment-packed 1 -1110011010 anti-graffiti 1 -1110011010 already-complex 1 -1110011010 oat-growing 1 -1110011010 Arena-dominated 1 -1110011010 electric-power-generation 1 -1110011010 antiviolence 1 -1110011010 eight-foot-long 1 -1110011010 emotion-filled 1 -1110011010 82-acre 1 -1110011010 out-of-balance 1 -1110011010 acid-throwing 1 -1110011010 eighth-round 1 -1110011010 out-of-sync 1 -1110011010 850-foot 1 -1110011010 AT&T-style 1 -1110011010 insulated-glass 1 -1110011010 Armenian-dominated 1 -1110011010 NIT 1 -1110011010 8.7-grade 1 -1110011010 8.45-grade 1 -1110011010 airplane-leasing 1 -1110011010 anti-travel 1 -1110011010 GUIDEBOOKS 1 -1110011010 85-bed 1 -1110011010 ES-3A 1 -1110011010 inn-like 1 -1110011010 etiolated 1 -1110011010 ammunition-dump 1 -1110011010 11,000-square-foot 1 -1110011010 alcoholic-treatment 1 -1110011010 ocelot 1 -1110011010 850-job 1 -1110011010 umpiring 1 -1110011010 electrothermal 1 -1110011010 WOOD-BURNING 1 -1110011010 private-independent 1 -1110011010 anti-worm 1 -1110011010 international-business 1 -1110011010 42-minute 1 -1110011010 Uzi-toting 1 -1110011010 endowmentless 1 -1110011010 antique-clothes 1 -1110011010 insulation-board 1 -1110011010 1,100-ton-a-day 1 -1110011010 ammonia-urea 1 -1110011010 eversteadier 1 -1110011010 electronic-engineering 1 -1110011010 unembarrassing 1 -1110011010 enemy-held 1 -1110011010 AIDS-oriented 1 -1110011010 85-chain 1 -1110011010 850-branch 1 -1110011010 Olmsted-designed 1 -1110011010 OLDEST 1 -1110011010 8,000-acre 1 -1110011010 anti-convulsive 1 -1110011010 X-linked 1 -1110011010 ocean-pollution 1 -1110011010 operations-research 1 -1110011010 HRS-licensed 1 -1110011010 ex-furniture 1 -1110011010 8-to-faint 1 -1110011010 asbestos-landfill 1 -1110011010 electromagnetic-test 1 -1110011010 anti-infective 1 -1110011010 Occidental-sponsored 1 -1110011010 arms-for-drugs 1 -1110011010 ever-worsening 1 -1110011010 airplane-wing 1 -1110011010 afterhours 1 -1110011010 early-1989 1 -1110011010 over-30 1 -1110011010 Italian-inspired 1 -1110011010 automobile-manufacturing 1 -1110011010 Istel-type 1 -1110011010 Airbus-type 1 -1110011010 artillery-impact 1 -1110011010 oat-processing 1 -1110011010 Iraqu 1 -1110011010 80-screen 1 -1110011010 ironbound 1 -1110011010 815-foot 1 -1110011010 extra-innings 1 -1110011010 Australian-Chinese 1 -1110011010 wire-room 1 -1110011010 audiocomponent 1 -1110011010 Alzheimer's-like 2 -1110011010 uncomprehending 2 -1110011010 all-professional 2 -1110011010 awkward-looking 2 -1110011010 ever-faster 2 -1110011010 8,400-square-mile 2 -1110011010 XMP-24 2 -1110011010 pseudo-Gothic 2 -1110011010 ex-Journal 2 -1110011010 ABC-affiliated 2 -1110011010 over-the-wing 2 -1110011010 antismoking 2 -1110011010 Indian-style 2 -1110011010 RCMP 2 -1110011010 innocuous-looking 2 -1110011010 anticlerical 2 -1110011010 extra-tall 2 -1110011010 energy-short 2 -1110011010 older-model 2 -1110011010 eight-screen 2 -1110011010 all-conference 2 -1110011010 86-9 2 -1110011010 non-taxpaying 2 -1110011010 Arkansas-based 2 -1110011010 Dircote 2 -1110011010 Alcatraz 2 -1110011010 African-style 2 -1110011010 deep-pockets 2 -1110011010 I-beam 2 -1110011010 all-woman 2 -1110011010 office-bound 2 -1110011010 overseas-based 2 -1110011010 anti-convulsant 2 -1110011010 open-space 2 -1110011010 Armenian-American 2 -1110011010 Alfa-Lancia 2 -1110011010 11-for-10 2 -1110011010 expense-paid 2 -1110011010 trash-to-energy 2 -1110011010 82nd-floor 2 -1110011010 afternoon-long 2 -1110011010 old-car 2 -1110011010 FDIC-administered 2 -1110011010 east-bank 2 -1110011010 Anglophile 2 -1110011010 8-for-1 2 -1110011010 ankle-high 2 -1110011010 hubbing 2 -1110011010 AMC/Renault 2 -1110011010 80-mile 2 -1110011010 Alabama-based 2 -1110011010 urban-affairs 2 -1110011010 employment-law 2 -1110011010 advice-giving 2 -1110011010 agricultural-policy 2 -1110011010 Iraqi-born 2 -1110011010 plain-speaking 2 -1110011010 all-Schumann 2 -1110011010 uncleared 2 -1110011010 cross-media 2 -1110011010 Sino-Vietnamese 2 -1110011010 single-sheet 2 -1110011010 American-type 2 -1110011010 INSTITUTIONS 2 -1110011010 Israeli-Jordanian 2 -1110011010 odd-jobs 2 -1110011010 all-fiber 2 -1110011010 extracongressional 2 -1110011010 unwired 2 -1110011010 infrared-gun 2 -1110011010 18-story 3 -1110011010 end-to-end 3 -1110011010 electroluminescent 3 -1110011010 loutish 3 -1110011010 test-taking 3 -1110011010 breadwinning 3 -1110011010 Arab-owned 3 -1110011010 international-affairs 3 -1110011010 Andersen-Price 3 -1110011010 overhand 3 -1110011010 Poletown 3 -1110011010 anhydrous 3 -1110011010 out-of-home 3 -1110011010 Emmy-winning 3 -1110011010 insurance-linked 3 -1110011010 avocational 3 -1110011010 must-win 3 -1110011010 omnifont 3 -1110011010 agricultural-research 3 -1110011010 80,000-kilowatt 3 -1110011010 unseasonable 3 -1110011010 highquality 3 -1110011010 office-copier 3 -1110011010 ILS 3 -1110011010 interior-ministry 3 -1110011010 frequent-fliers 3 -1110011010 LBO-related 3 -1110011010 80-acre 3 -1110011010 Afrikaans-language 3 -1110011010 oxidizing 3 -1110011010 ultra-leftist 3 -1110011010 quirkiest 3 -1110011010 emerald-green 3 -1110011010 art-filled 3 -1110011010 occupational-health 3 -1110011010 inflation-prone 3 -1110011010 eye-tracking 3 -1110011010 after-shave 4 -1110011010 egghead 4 -1110011010 granulocyte 4 -1110011010 exotic-animal 4 -1110011010 ad-hoc 4 -1110011010 A-340-300 4 -1110011010 American-flagged 4 -1110011010 papa-mama 4 -1110011010 entertainment-oriented 4 -1110011010 Israeli-born 4 -1110011010 invitation-only 4 -1110011010 over-aggressive 4 -1110011010 antique-car 4 -1110011010 amusement-park 4 -1110011010 unpolluted 4 -1110011010 entertainment-law 4 -1110011010 ice-covered 4 -1110011010 emotion-charged 4 -1110011010 anti-microbial 4 -1110011010 CL-215 4 -1110011010 oil-shipping 4 -1110011010 assembly-plant 4 -1110011010 up-tick 4 -1110011010 under-used 5 -1110011010 franchisee-owned 5 -1110011010 Illinois-based 5 -1110011010 on-the-record 5 -1110011010 8-2 5 -1110011010 avocado 5 -1110011010 antiquarian 5 -1110011010 off-campus 5 -1110011010 investment-newsletter 5 -1110011010 industry-backed 5 -1110011010 ultrathin 5 -1110011010 Atlanta-area 5 -1110011010 H2 5 -1110011010 arch-conservative 5 -1110011010 8x10 5 -1110011010 all-pro 5 -1110011010 undefended 5 -1110011010 igloo 5 -1110011010 all-weather 5 -1110011010 auto-body 5 -1110011010 80-foot 5 -1110011010 action-adventure 5 -1110011010 easier-to-use 5 -1110011010 anti-tumor 5 -1110011010 Imax 5 -1110011010 unregenerate 5 -1110011010 on-court 5 -1110011010 amputee 5 -1110011010 irresolute 5 -1110011010 air-tight 5 -1110011010 hand-made 5 -1110011010 eye-opening 5 -1110011010 urban-renewal 5 -1110011010 11-story 5 -1110011010 artificial-turf 5 -1110011010 unlit 5 -1110011010 tension-leg 5 -1110011010 import-buying 5 -1110011010 18-2 5 -1110011010 after-Christmas 5 -1110011010 Unctad 6 -1110011010 A&S 6 -1110011010 air-force 6 -1110011010 Axis 6 -1110011010 unescorted 6 -1110011010 asthmatic 6 -1110011010 appointive 6 -1110011010 unalienable 6 -1110011010 extroverted 6 -1110011010 inside-the-Beltway 6 -1110011010 anti-anemia 6 -1110011010 ebony 6 -1110011010 Italian-style 6 -1110011010 infectious-disease 6 -1110011010 auction-house 7 -1110011010 anti-capitalist 7 -1110011010 upstanding 7 -1110011010 asteroid 7 -1110011010 oxygen-free 7 -1110011010 adulterous 7 -1110011010 explosives-laden 7 -1110011010 AppleShare 7 -1110011010 Aborigine 7 -1110011010 accusatory 8 -1110011010 all-black 8 -1110011010 embalmed 8 -1110011010 egocentric 8 -1110011010 Maori 8 -1110011010 invitational 8 -1110011010 obsolescent 8 -1110011010 untreatable 8 -1110011010 unattached 8 -1110011010 all-news 8 -1110011010 margined 8 -1110011010 open-necked 8 -1110011010 over-leveraged 8 -1110011010 SST 9 -1110011010 economic-forecasting 9 -1110011010 Irish-American 9 -1110011010 airless 9 -1110011010 unheralded 9 -1110011010 ultramodern 9 -1110011010 over-funded 10 -1110011010 anti-nausea 10 -1110011010 acquisition-hungry 10 -1110011010 in-patient 10 -1110011010 issue-oriented 10 -1110011010 LPGA 10 -1110011010 AM/FM 10 -1110011010 out-of-control 10 -1110011010 oriental 10 -1110011010 epileptic 10 -1110011010 unheated 11 -1110011010 internationalist 11 -1110011010 11-man 11 -1110011010 AWOL 11 -1110011010 interconnected 11 -1110011010 Edwardian 11 -1110011010 add-in 11 -1110011010 up-market 12 -1110011010 off-the-record 12 -1110011010 inhouse 12 -1110011010 inch-thick 12 -1110011010 uninfected 12 -1110011010 after-dinner 13 -1110011010 employer-sponsored 13 -1110011010 onboard 14 -1110011010 auto-repair 14 -1110011010 underused 14 -1110011010 Iranian-born 14 -1110011010 eight-foot 14 -1110011010 honorarium 14 -1110011010 acoustical 14 -1110011010 18-hole 15 -1110011010 unguarded 15 -1110011010 ad-agency 15 -1110011010 cookie-cutter 15 -1110011010 apprenticeship 15 -1110011010 orchid 15 -1110011010 American-owned 16 -1110011010 oversize 16 -1110011010 asset-rich 17 -1110011010 M-16 18 -1110011010 out-and-out 18 -1110011010 evergreen 18 -1110011010 uncompleted 18 -1110011010 AIDS-virus 18 -1110011010 inalienable 19 -1110011010 unincorporated 20 -1110011010 atheist 20 -1110011010 anti-sense 20 -1110011010 off-site 20 -1110011010 inveterate 21 -1110011010 easy-to-use 21 -1110011010 immaculate 22 -1110011010 inertial 22 -1110011010 anti-Castro 22 -1110011010 implantable 22 -1110011010 superconductive 22 -1110011010 all-star 22 -1110011010 FDIC-insured 23 -1110011010 unmarked 23 -1110011010 all-purpose 23 -1110011010 apprentice 23 -1110011010 all-male 24 -1110011010 open-access 24 -1110011010 eight-page 25 -1110011010 all-around 25 -1110011010 unindicted 25 -1110011010 unexplored 26 -1110011010 uninvited 26 -1110011010 errant 26 -1110011010 undiscovered 26 -1110011010 underutilized 27 -1110011010 ostrich 27 -1110011010 anti-depressant 27 -1110011010 on-screen 27 -1110011010 oval 28 -1110011010 engraved 28 -1110011010 anguished 29 -1110011010 itinerant 29 -1110011010 oddball 30 -1110011010 all-day 31 -1110011010 unaffiliated 31 -1110011010 unscheduled 33 -1110011010 off-duty 33 -1110011010 aerodynamic 34 -1110011010 hourlong 34 -1110011010 unlicensed 36 -1110011010 award-winning 37 -1110011010 unseen 37 -1110011010 all-white 38 -1110011010 off-budget 39 -1110011010 uncommitted 43 -1110011010 electron 44 -1110011010 open-air 47 -1110011010 unneeded 51 -1110011010 upright 51 -1110011010 all-night 51 -1110011010 off-price 51 -1110011010 hour-long 51 -1110011010 elective 53 -1110011010 accredited 53 -1110011010 olive 53 -1110011010 untapped 54 -1110011010 affable 56 -1110011010 environmentalist 57 -1110011010 oversized 58 -1110011010 orphan 59 -1110011010 insurgent 62 -1110011010 outmoded 64 -1110011010 inland 65 -1110011010 adjoining 66 -1110011010 18-year-old 73 -1110011010 eminent 77 -1110011010 onshore 77 -1110011010 airborne 83 -1110011010 indemnity 84 -1110011010 antiquated 89 -1110011010 18th-century 90 -1110011010 upstart 95 -1110011010 unfinished 99 -1110011010 Aramco 101 -1110011010 underwater 102 -1110011010 avid 102 -1110011010 ambulance 104 -1110011010 undergraduate 106 -1110011010 autonomous 111 -1110011010 old-line 111 -1110011010 downstream 122 -1110011010 interactive 124 -1110011010 antique 130 -1110011010 M.B.A. 132 -1110011010 unrestricted 151 -1110011010 animated 153 -1110011010 undercover 155 -1110011010 unnamed 160 -1110011010 alternate 163 -1110011010 amateur 169 -1110011010 exploratory 173 -1110011010 optional 181 -1110011010 unregulated 217 -1110011010 anonymous 241 -1110011010 LBO 255 -1110011010 in-house 304 -1110011010 inefficient 308 -1110011010 evil 324 -1110011010 unidentified 364 -1110011010 IRA 408 -1110011010 instant 423 -1110011010 outright 506 -1110011010 underground 526 -1110011010 integrated 539 -1110011010 empty 548 -1110011010 unprofitable 554 -1110011010 offshore 793 -1110011010 exclusive 823 -1110011010 insolvent 839 -1110011010 emergency 1514 -1110011010 independent 5014 -1110011010 employee 3380 -1110011011 old-rose-pink 1 -1110011011 anti-odor 1 -1110011011 ecological/cultural 1 -1110011011 80-ton 1 -1110011011 Iranian-U.S. 1 -1110011011 illicit-drug 1 -1110011011 all-bug 1 -1110011011 ethnic-minority 1 -1110011011 unrepeatable 1 -1110011011 unperformable 1 -1110011011 IMF-controlled 1 -1110011011 air-speed 1 -1110011011 isometric 1 -1110011011 inchthick 1 -1110011011 over-simplified 1 -1110011011 indoor/outdoor 1 -1110011011 oft-reported 1 -1110011011 empowerment-oriented 1 -1110011011 8,000-space 1 -1110011011 anticompact 1 -1110011011 alphatrack 1 -1110011011 ever-fattening 1 -1110011011 easy-on-crime 1 -1110011011 abolitionist-type 1 -1110011011 ECG 1 -1110011011 all-Czech 1 -1110011011 adult-adult 1 -1110011011 eight-million-member 1 -1110011011 equity-based 1 -1110011011 American-sounding 1 -1110011011 already-dead 1 -1110011011 ultralong 1 -1110011011 anti-adoption 1 -1110011011 Argyll-Safeway 1 -1110011011 anti-Swedish 1 -1110011011 uncompromisingly 1 -1110011011 acrimonius 1 -1110011011 unconsecrated 1 -1110011011 anti-U.N. 1 -1110011011 intracorporate 1 -1110011011 Indian-built 1 -1110011011 all-but-done 1 -1110011011 eight-to-five 1 -1110011011 ill-disguised 1 -1110011011 Orientalist 1 -1110011011 egg-lecithin 1 -1110011011 adrenaline-charged 1 -1110011011 equity-stake 1 -1110011011 oftcited 1 -1110011011 about-average 1 -1110011011 over-educated 1 -1110011011 upstairs/downstairs 1 -1110011011 against-the-odds 1 -1110011011 all-too-human 1 -1110011011 itchy-fingered 1 -1110011011 unprovocative 1 -1110011011 import-marketing 1 -1110011011 ultranationalistic 1 -1110011011 earlymorning 1 -1110011011 oil-recession 1 -1110011011 anti-Colombian 1 -1110011011 position-its 1 -1110011011 already-emotional 1 -1110011011 energy-eating 1 -1110011011 FAA-decreed 1 -1110011011 air-security 1 -1110011011 Australian-made 1 -1110011011 11-game 1 -1110011011 ill-crafted 1 -1110011011 investor-fraud 1 -1110011011 eight-foot-wide 1 -1110011011 all-pervasive 1 -1110011011 eddying 1 -1110011011 ever-receding 2 -1110011011 teleshopping 2 -1110011011 embassylike 2 -1110011011 anti-wrinkling 2 -1110011011 LDP-led 2 -1110011011 ever-shrinking 2 -1110011011 800-word 2 -1110011011 open-borders 2 -1110011011 high-tempo 2 -1110011011 BBS 2 -1110011011 inapparent 2 -1110011011 extra-caffeine 2 -1110011011 8,500-square-mile 2 -1110011011 either-or 2 -1110011011 easeful 2 -1110011011 all-year 2 -1110011011 Iranian-style 2 -1110011011 electro-static 2 -1110011011 electric-orange 2 -1110011011 nonjudgmental 2 -1110011011 enkephalinase 2 -1110011011 old-master 2 -1110011011 apples-to-apples 2 -1110011011 anti-safety 2 -1110011011 American-size 2 -1110011011 ashen 2 -1110011011 SEC-style 2 -1110011011 unretouched 2 -1110011011 kink 2 -1110011011 evaluative 2 -1110011011 bogie 2 -1110011011 anticlimatic 2 -1110011011 waveless 2 -1110011011 self-acknowledged 2 -1110011011 recent-quarter 2 -1110011011 outrigger 2 -1110011011 anti-Florida 2 -1110011011 OEZ 2 -1110011011 emotive 2 -1110011011 agencywide 2 -1110011011 epidemiologic 2 -1110011011 uncontainable 2 -1110011011 AGF-GAN 2 -1110011011 practical-capacity 2 -1110011011 CHAINS 2 -1110011011 especial 2 -1110011011 anti-Alliance 2 -1110011011 imperturbable 2 -1110011011 easy-listening 2 -1110011011 emotional-distress 2 -1110011011 COURTS 2 -1110011011 soporific 2 -1110011011 anti-bourgeois 2 -1110011011 animal. 2 -1110011011 interexchange 2 -1110011011 arbitral 2 -1110011011 epoch-making 3 -1110011011 inductive 3 -1110011011 insipid 3 -1110011011 unknowing 3 -1110011011 often-hostile 3 -1110011011 18-acre 3 -1110011011 open-mike 3 -1110011011 overage 3 -1110011011 bewitching 3 -1110011011 speciously 3 -1110011011 aberrational 3 -1110011011 Eastward 3 -1110011011 honest-to-God 3 -1110011011 out-of-body 3 -1110011011 unerring 3 -1110011011 indoor-outdoor 3 -1110011011 countercyclical 3 -1110011011 octagonal 3 -1110011011 albino 3 -1110011011 83-0 3 -1110011011 affectingly 3 -1110011011 18-inch-high 3 -1110011011 jargon-laden 3 -1110011011 non-adversarial 3 -1110011011 auction-style 3 -1110011011 everchanging 3 -1110011011 acid-tongued 3 -1110011011 out-of-character 3 -1110011011 upraised 3 -1110011011 unsponsored 3 -1110011011 anti-coagulant 3 -1110011011 overbred 3 -1110011011 insuperable 3 -1110011011 anti-imperialism 4 -1110011011 underwhelming 4 -1110011011 oligarchic 4 -1110011011 eight-minute 4 -1110011011 action-oriented 4 -1110011011 dollar-bashing 4 -1110011011 eight-week-old 4 -1110011011 unspecific 4 -1110011011 anti-child 4 -1110011011 absolutist 4 -1110011011 ill-planned 4 -1110011011 80-minute 4 -1110011011 pre-race 4 -1110011011 elegiac 4 -1110011011 uppity 4 -1110011011 profuse 4 -1110011011 unquenchable 4 -1110011011 equity-warrants 4 -1110011011 panic-driven 4 -1110011011 all-volunteer 4 -1110011011 atonal 4 -1110011011 Autobahn 4 -1110011011 originalist 4 -1110011011 unfunny 4 -1110011011 unpronounceable 4 -1110011011 often-bitter 4 -1110011011 uncommercial 4 -1110011011 acrid 5 -1110011011 unwashed 5 -1110011011 obsessional 5 -1110011011 untutored 5 -1110011011 anti-Russian 5 -1110011011 early-year 5 -1110011011 ultraliberal 5 -1110011011 yield-maintenance 5 -1110011011 insouciant 5 -1110011011 unexceptional 5 -1110011011 eight-part 5 -1110011011 anti-Indian 5 -1110011011 all-you-can-eat 5 -1110011011 interfaith 5 -1110011011 underarm 5 -1110011011 unrewarding 5 -1110011011 unearthly 5 -1110011011 all-plastic 5 -1110011011 proactive 5 -1110011011 inborn 5 -1110011011 apple-pie 5 -1110011011 unmeasurable 5 -1110011011 18-foot 5 -1110011011 oft-cited 5 -1110011011 artless 5 -1110011011 incorruptible 5 -1110011011 indiscreet 5 -1110011011 unwholesome 5 -1110011011 ungodly 5 -1110011011 ill-chosen 5 -1110011011 illiberal 5 -1110011011 over-valued 5 -1110011011 mordant 5 -1110011011 anti 5 -1110011011 unsolvable 5 -1110011011 see-saw 6 -1110011011 ineffable 6 -1110011011 building-related 6 -1110011011 ice-cold 6 -1110011011 off-center 6 -1110011011 unceasing 6 -1110011011 expurgated 6 -1110011011 off-hours 6 -1110011011 anti-Arab 6 -1110011011 atrophied 6 -1110011011 off-and-on 6 -1110011011 ever-ready 6 -1110011011 unobstructed 6 -1110011011 unrecovered 6 -1110011011 all-too-familiar 6 -1110011011 unshakeable 6 -1110011011 illusionary 6 -1110011011 MMC 6 -1110011011 exultant 6 -1110011011 improvident 6 -1110011011 above-board 6 -1110011011 imbalanced 6 -1110011011 on-going 6 -1110011011 immovable 6 -1110011011 inebriated 6 -1110011011 exogenous 6 -1110011011 jumbled 6 -1110011011 self-managed 6 -1110011011 on-camera 7 -1110011011 unedited 7 -1110011011 uncivilized 7 -1110011011 ethnographic 7 -1110011011 iron-willed 7 -1110011011 electroshock 7 -1110011011 underhanded 7 -1110011011 unappetizing 7 -1110011011 unknowable 7 -1110011011 extraterrestrial 7 -1110011011 earnings-driven 7 -1110011011 earthshaking 7 -1110011011 adaptive 7 -1110011011 succulent 7 -1110011011 uncluttered 7 -1110011011 unsubtle 7 -1110011011 undetectable 7 -1110011011 unbounded 7 -1110011011 untraditional 8 -1110011011 ultra-conservative 8 -1110011011 outstretched 8 -1110011011 unforeseeable 8 -1110011011 antic 8 -1110011011 undifferentiated 8 -1110011011 nuanced 8 -1110011011 unsparing 8 -1110011011 all-consuming 8 -1110011011 indelible 8 -1110011011 all-embracing 8 -1110011011 uncritical 8 -1110011011 aqua 8 -1110011011 all-natural 8 -1110011011 infantile 8 -1110011011 unthinking 8 -1110011011 rate-cutting 8 -1110011011 undisguised 8 -1110011011 unmanaged 8 -1110011011 anti-Israel 8 -1110011011 undignified 9 -1110011011 overeager 9 -1110011011 ultraconservative 9 -1110011011 ungainly 9 -1110011011 uglier 9 -1110011011 agressive 9 -1110011011 overambitious 9 -1110011011 under-the-table 9 -1110011011 inward-looking 9 -1110011011 odorless 9 -1110011011 slavish 9 -1110011011 anti-socialist 9 -1110011011 boastful 9 -1110011011 unprovoked 9 -1110011011 emerald 9 -1110011011 ascetic 9 -1110011011 interracial 9 -1110011011 aberrant 9 -1110011011 chaste 9 -1110011011 unrelieved 9 -1110011011 on-the-spot 9 -1110011011 career-oriented 9 -1110011011 ornery 10 -1110011011 avowedly 10 -1110011011 obstructive 10 -1110011011 contemplative 10 -1110011011 unrequited 10 -1110011011 indestructible 10 -1110011011 11-month-old 10 -1110011011 indomitable 10 -1110011011 ivory-tower 10 -1110011011 ingratiating 10 -1110011011 observable 10 -1110011011 undoubted 11 -1110011011 off-the-wall 11 -1110011011 imperialistic 11 -1110011011 unshakable 11 -1110011011 incestuous 11 -1110011011 unfailing 11 -1110011011 unflinching 11 -1110011011 extortionate 11 -1110011011 ecumenical 11 -1110011011 impish 11 -1110011011 archetypal 11 -1110011011 unbending 11 -1110011011 emergent 11 -1110011011 anorexic 11 -1110011011 mawkish 11 -1110011011 in-person 11 -1110011011 unalloyed 11 -1110011011 abstruse 11 -1110011011 agreed-on 11 -1110011011 incendiary 11 -1110011011 abridged 11 -1110011011 unjustifiable 11 -1110011011 intoxicating 11 -1110011011 uptight 11 -1110011011 intergenerational 11 -1110011011 attention-getting 11 -1110011011 easy-going 12 -1110011011 even-handed 12 -1110011011 unquestioning 12 -1110011011 effortless 12 -1110011011 abominable 12 -1110011011 ignominious 12 -1110011011 obedient 12 -1110011011 assiduous 12 -1110011011 introverted 12 -1110011011 adoring 12 -1110011011 absurdist 12 -1110011011 irrefutable 12 -1110011011 eighth-grade 13 -1110011011 indeterminate 13 -1110011011 electrostatic 13 -1110011011 obstructionist 13 -1110011011 uninhibited 13 -1110011011 otherworldly 13 -1110011011 iconoclastic 13 -1110011011 insufferable 14 -1110011011 unprincipled 14 -1110011011 interdisciplinary 14 -1110011011 oblique 14 -1110011011 elliptical 14 -1110011011 villainous 14 -1110011011 unflappable 14 -1110011011 off-the-books 14 -1110011011 infinitesimal 14 -1110011011 estimable 14 -1110011011 individualized 14 -1110011011 unblemished 14 -1110011011 anti-Reagan 14 -1110011011 aching 14 -1110011011 ill-considered 14 -1110011011 existential 15 -1110011011 unsentimental 15 -1110011011 ill-starred 15 -1110011011 indulgent 15 -1110011011 undeserved 15 -1110011011 familial 15 -1110011011 intemperate 15 -1110011011 ever-expanding 15 -1110011011 amateurish 15 -1110011011 moralistic 16 -1110011011 unspeakable 16 -1110011011 exploitative 16 -1110011011 implacable 16 -1110011011 uncoordinated 16 -1110011011 around-the-clock 16 -1110011011 unscientific 16 -1110011011 in-kind 16 -1110011011 erudite 17 -1110011011 impulsive 17 -1110011011 unspectacular 17 -1110011011 antiseptic 17 -1110011011 airtight 17 -1110011011 undisciplined 17 -1110011011 unforgettable 17 -1110011011 introspective 17 -1110011011 up-and-down 17 -1110011011 impressionistic 17 -1110011011 unadorned 17 -1110011011 anticipatory 17 -1110011011 encyclopedic 17 -1110011011 anti-establishment 18 -1110011011 incalculable 18 -1110011011 overwrought 18 -1110011011 undulating 18 -1110011011 calamitous 18 -1110011011 all-new 18 -1110011011 au 19 -1110011011 unsteady 19 -1110011011 all-encompassing 19 -1110011011 acerbic 19 -1110011011 abject 19 -1110011011 obstinate 20 -1110011011 uncontested 20 -1110011011 unimaginable 20 -1110011011 esteemed 20 -1110011011 investigational 20 -1110011011 unpublicized 20 -1110011011 unpromising 20 -1110011011 overbearing 21 -1110011011 ersatz 21 -1110011011 unstated 21 -1110011011 unmitigated 21 -1110011011 unheard-of 21 -1110011011 untried 21 -1110011011 idiotic 21 -1110011011 ironclad 21 -1110011011 ethereal 21 -1110011011 earthy 22 -1110011011 unwavering 22 -1110011011 uncaring 22 -1110011011 expansionist 22 -1110011011 undeclared 23 -1110011011 unsolved 23 -1110011011 nonpolitical 23 -1110011011 unrestrained 23 -1110011011 oily 23 -1110011011 collusive 23 -1110011011 anti-democratic 24 -1110011011 interminable 24 -1110011011 instinctive 24 -1110011011 irreverent 24 -1110011011 artful 24 -1110011011 unrecognized 24 -1110011011 altruistic 24 -1110011011 airy 24 -1110011011 unending 25 -1110011011 outsized 25 -1110011011 unplanned 25 -1110011011 uplifting 25 -1110011011 uninspired 26 -1110011011 Orwellian 26 -1110011011 optimal 26 -1110011011 instantaneous 26 -1110011011 innate 26 -1110011011 ill-defined 26 -1110011011 cryptic 26 -1110011011 eye-popping 27 -1110011011 inexorable 27 -1110011011 eye-catching 27 -1110011011 opulent 27 -1110011011 ill-gotten 27 -1110011011 imperious 27 -1110011011 amorphous 27 -1110011011 unwitting 27 -1110011011 unspoken 28 -1110011011 idyllic 28 -1110011011 unintentional 28 -1110011011 uncompromising 28 -1110011011 anti-business 28 -1110011011 unsigned 29 -1110011011 idealized 29 -1110011011 unambiguous 29 -1110011011 unbroken 29 -1110011011 embryonic 30 -1110011011 unpretentious 30 -1110011011 infinite 30 -1110011011 incisive 30 -1110011011 undemocratic 31 -1110011011 overarching 31 -1110011011 enigmatic 31 -1110011011 unlucky 31 -1110011011 apolitical 32 -1110011011 anti-union 32 -1110011011 interventionist 32 -1110011011 unbearable 32 -1110011011 incurable 32 -1110011011 outlandish 32 -1110011011 unquestioned 33 -1110011011 exquisite 33 -1110011011 excruciating 33 -1110011011 undeniable 34 -1110011011 uncontrollable 34 -1110011011 idealistic 34 -1110011011 untimely 34 -1110011011 affectionate 34 -1110011011 overzealous 34 -1110011011 incriminating 35 -1110011011 air-conditioned 35 -1110011011 antagonistic 35 -1110011011 ill-conceived 36 -1110011011 unbiased 36 -1110011011 elitist 36 -1110011011 inspirational 36 -1110011011 undefined 36 -1110011011 impenetrable 36 -1110011011 inert 36 -1110011011 unimpressive 37 -1110011011 unbalanced 37 -1110011011 apocalyptic 37 -1110011011 intuitive 38 -1110011011 uncontrolled 38 -1110011011 unflattering 38 -1110011011 isolationist 38 -1110011011 unsavory 38 -1110011011 unrelenting 38 -1110011011 overallotment 39 -1110011011 all-American 39 -1110011011 avowed 39 -1110011011 anti-Semitic 40 -1110011011 evasive 40 -1110011011 unpublished 41 -1110011011 agile 41 -1110011011 insightful 41 -1110011011 unnatural 42 -1110011011 abysmal 42 -1110011011 unsophisticated 42 -1110011011 ineffectual 42 -1110011011 unequivocal 42 -1110011011 elastic 42 -1110011011 uneventful 43 -1110011011 intermittent 44 -1110011011 indecisive 44 -1110011011 unexplained 45 -1110011011 unparalleled 45 -1110011011 amiable 45 -1110011011 unseemly 46 -1110011011 insatiable 46 -1110011011 anticompetitive 46 -1110011011 impeccable 47 -1110011011 enviable 47 -1110011011 expressive 48 -1110011011 impromptu 48 -1110011011 impassioned 49 -1110011011 unabashed 49 -1110011011 aristocratic 49 -1110011011 abrasive 49 -1110011011 inventive 49 -1110011011 imperfect 50 -1110011011 uncanny 51 -1110011011 inadvertent 51 -1110011011 abbreviated 51 -1110011011 uncharacteristic 51 -1110011011 exemplary 53 -1110011011 evolutionary 53 -1110011011 erotic 53 -1110011011 exorbitant 54 -1110011011 indiscriminate 54 -1110011011 insurmountable 54 -1110011011 ebullient 54 -1110011011 unproductive 55 -1110011011 audacious 55 -1110011011 arduous 56 -1110011011 uninterrupted 57 -1110011011 obsessive 57 -1110011011 archaic 57 -1110011011 eclectic 59 -1110011011 exuberant 59 -1110011011 astronomical 60 -1110011011 unjust 61 -1110011011 unfettered 61 -1110011011 unwieldy 62 -1110011011 adversarial 62 -1110011011 intentional 62 -1110011011 unsubstantiated 63 -1110011011 unsound 63 -1110011011 imaginary 64 -1110011011 inept 64 -1110011011 authoritative 65 -1110011011 inspiring 65 -1110011011 opportunistic 66 -1110011011 unannounced 67 -1110011011 impartial 68 -1110011011 unconditional 69 -1110011011 irregular 69 -1110011011 irrevocable 69 -1110011011 unsatisfactory 69 -1110011011 orthodox 70 -1110011011 early-morning 71 -1110011011 offbeat 72 -1110011011 irreversible 73 -1110011011 austere 74 -1110011011 open-ended 75 -1110011011 icy 75 -1110011011 astounding 77 -1110011011 overt 77 -1110011011 ingenious 78 -1110011011 unconventional 78 -1110011011 in-depth 78 -1110011011 eerie 79 -1110011011 undesirable 80 -1110011011 awesome 80 -1110011011 unorthodox 81 -1110011011 unhealthy 81 -1110011011 unequal 81 -1110011011 extravagant 81 -1110011011 enlightened 82 -1110011011 unforeseen 82 -1110011011 eternal 84 -1110011011 exhaustive 84 -1110011011 admirable 84 -1110011011 above-average 84 -1110011011 unqualified 88 -1110011011 sporadic 88 -1110011011 eloquent 89 -1110011011 infectious 94 -1110011011 abnormal 94 -1110011011 expansionary 95 -1110011011 infamous 96 -1110011011 election-year 98 -1110011011 acrimonious 99 -1110011011 anti-American 100 -1110011011 authentic 102 -1110011011 amicable 103 -1110011011 honorable 104 -1110011011 unrealized 105 -1110011011 astute 106 -1110011011 obscene 107 -1110011011 accidental 108 -1110011011 arcane 119 -1110011011 unethical 122 -1110011011 expansive 122 -1110011011 ardent 122 -1110011011 coercive 124 -1110011011 intricate 127 -1110011011 epic 130 -1110011011 anemic 132 -1110011011 undue 132 -1110011011 unintended 136 -1110011011 uneven 137 -1110011011 abundant 138 -1110011011 all-out 141 -1110011011 erroneous 146 -1110011011 enduring 146 -1110011011 unlawful 151 -1110011011 abusive 151 -1110011011 imaginative 157 -1110011011 unwelcome 163 -1110011011 unwarranted 167 -1110011011 intimate 168 -1110011011 astonishing 171 -1110011011 energetic 179 -1110011011 arbitrary 181 -1110011011 incomplete 184 -1110011011 exceptional 185 -1110011011 illicit 186 -1110011011 unofficial 186 -1110011011 abstract 188 -1110011011 entrenched 199 -1110011011 elegant 200 -1110011011 immense 205 -1110011011 ugly 217 -1110011011 unpredictable 218 -1110011011 erratic 223 -1110011011 endless 226 -1110011011 abrupt 230 -1110011011 unlimited 237 -1110011011 unreasonable 244 -1110011011 incredible 252 -1110011011 explicit 255 -1110011011 intensive 258 -1110011011 unfavorable 265 -1110011011 upbeat 266 -1110011011 acute 267 -1110011011 urgent 273 -1110011011 outspoken 275 -1110011011 exotic 291 -1110011011 awful 326 -1110011011 old-fashioned 329 -1110011011 explosive 351 -1110011011 indirect 358 -1110011011 orderly 363 -1110011011 entrepreneurial 372 -1110011011 odd 372 -1110011011 isolated 389 -1110011011 unauthorized 392 -1110011011 occasional 419 -1110011011 honest 419 -1110011011 ideal 433 -1110011011 absolute 456 -1110011011 questionable 462 -1110011011 overwhelming 504 -1110011011 innovative 510 -1110011011 unknown 536 -1110011011 adverse 569 -1110011011 imminent 585 -1110011011 informal 613 -1110011011 improper 628 -1110011011 influential 644 -1110011011 unsuccessful 681 -1110011011 emotional 686 -1110011011 extreme 722 -1110011011 ambitious 735 -1110011011 unprecedented 798 -1110011011 unexpected 815 -1110011011 excellent 878 -1110011011 excessive 892 -1110011011 intense 1009 -1110011011 unfair 1098 -1110011011 extensive 1152 -1110011011 enormous 1258 -1110011011 extraordinary 1582 -1110011011 apparent 1659 -1110011011 unusual 2206 -1110011011 aggressive 2259 -1110011011 illegal 2532 -1110011011 active 3491 -1110011100 11.7-cent-per-barrel 1 -1110011100 dollar-franc 1 -1110011100 381-page 1 -1110011100 auto-headlight 1 -1110011100 primary-capital 1 -1110011100 fiscal-1986 1 -1110011100 8-to-7 1 -1110011100 two-cents-a-share 1 -1110011100 80-odd-foot 1 -1110011100 as-needed 1 -1110011100 investment-credit 1 -1110011100 full-quarter 1 -1110011100 ECC-sponsored 1 -1110011100 75-person 1 -1110011100 80-to-1 1 -1110011100 put-to-call 1 -1110011100 election-winning 1 -1110011100 policy-related 1 -1110011100 third-mostimportant 1 -1110011100 benefit/risk 1 -1110011100 10Q 1 -1110011100 160-person 1 -1110011100 200-degree 1 -1110011100 NIA-organized 1 -1110011100 NIA-sponsored 1 -1110011100 open-agenda 1 -1110011100 import-to-export 1 -1110011100 flight-cancellation 1 -1110011100 debt-asset 1 -1110011100 2,100-member 1 -1110011100 text-to-photograph 1 -1110011100 office-form 1 -1110011100 togenerate 1 -1110011100 photographic-industry 1 -1110011100 -a-day 1 -1110011100 earlier-than-scheduled 1 -1110011100 open-bid 1 -1110011100 Aflatest 1 -1110011100 fertilizer-sales 1 -1110011100 Datawand 1 -1110011100 ABC-News 1 -1110011100 student-computer 1 -1110011100 earnings-per-ton 1 -1110011100 month-on-month 1 -1110011100 uncooked-weight 1 -1110011100 southpaw 1 -1110011100 dollar-austral 1 -1110011100 quarter-to-qarter 1 -1110011100 automotive-related 1 -1110011100 84-7 1 -1110011100 Vogtle-related 1 -1110011100 lube-center 1 -1110011100 eight-to-one 1 -1110011100 uptick-to-downtick 1 -1110011100 edible-weight 1 -1110011100 import-tax 1 -1110011100 technicalservices 1 -1110011100 800-shareholder 1 -1110011100 peccable 1 -1110011100 profit-to-revenue 1 -1110011100 Wright-Michel 1 -1110011100 annual-earnings 1 -1110011100 operating-earnings 1 -1110011100 prime-lending 1 -1110011100 fixed-exchange 1 -1110011100 19-cent 1 -1110011100 post-judgment 1 -1110011100 chain-store-sales 1 -1110011100 732,000-unit 1 -1110011100 early-November 1 -1110011100 FC143a 1 -1110011100 suburban-Tokyo 1 -1110011100 learning-improvement 1 -1110011100 Baker-Stoltenberg 1 -1110011100 investment-tax-credit 1 -1110011100 Tlatelolco 1 -1110011100 three-onth 1 -1110011100 225-page 1 -1110011100 long-term-gain 1 -1110011100 seven-year-low 1 -1110011100 424-page 1 -1110011100 profit-to-sales 1 -1110011100 income-filing 1 -1110011100 87-nation 1 -1110011100 pendinging 1 -1110011100 170-page 1 -1110011100 combat-to-support-staff 1 -1110011100 acreage-idling 1 -1110011100 long-maintained 1 -1110011100 uemployment 1 -1110011100 invisible-trade 1 -1110011100 next-smallest 1 -1110011100 EPA-sponsored 1 -1110011100 Ayacuchan 1 -1110011100 -unionized 1 -1110011100 new-infection 1 -1110011100 35,000-a-barrel 1 -1110011100 heating-division 1 -1110011100 general-partner 1 -1110011100 sales-to-purchases 1 -1110011100 offers-only 1 -1110011100 defectinvestigation 1 -1110011100 691,000-unit 1 -1110011100 Bundesbank-led 1 -1110011100 oil-cartel 1 -1110011100 loan-delinquency 1 -1110011100 America-wide 1 -1110011100 return-on-assets 1 -1110011100 total-factor 1 -1110011100 pre-devaluation 1 -1110011100 extractable 1 -1110011100 birth-defects 1 -1110011100 physician-to-patient 1 -1110011100 133-page 1 -1110011100 minimum-acceptance 1 -1110011100 rent-to-income 1 -1110011100 1,585,000 1 -1110011100 sweat/comfort 1 -1110011100 winner-loser 1 -1110011100 patient-occupancy 1 -1110011100 apparel-retail 1 -1110011100 1,606,000-unit 1 -1110011100 transit-impact 1 -1110011100 securities-guarantee 1 -1110011100 land-disturbance 1 -1110011100 equipment-use 1 -1110011100 coin-box 1 -1110011100 40,000-person 1 -1110011100 8.5-to-1 1 -1110011100 safer-housing 1 -1110011100 -rate 1 -1110011100 yendollar 1 -1110011100 still-unresolved 1 -1110011100 non-filer 1 -1110011100 eight-vote 1 -1110011100 19,500-gallon-a-minute 1 -1110011100 402-page 1 -1110011100 1,476,000-unit 1 -1110011100 quasi-mandatory 1 -1110011100 618-page 1 -1110011100 AIDS-policy 1 -1110011100 credit-commitment 1 -1110011100 NIH-Japanese 1 -1110011100 industry-by-industry 1 -1110011100 ads-to-editorial 1 -1110011100 11-cents-a-share 1 -1110011100 consumer-roducts 1 -1110011100 unassured 1 -1110011100 approrpiate 1 -1110011100 180,000-man 1 -1110011100 earnings-momentum 1 -1110011100 deliquency 1 -1110011100 policy-committee 1 -1110011100 pound/dollar 1 -1110011100 put-call 1 -1110011100 much-steeper-than-usual 1 -1110011100 cost-to-benefit 1 -1110011100 142-pence 1 -1110011100 280-page 1 -1110011100 oil-and 1 -1110011100 maxium 1 -1110011100 sales-to-cost 1 -1110011100 one-hour-and-45-minute 1 -1110011100 global-export 1 -1110011100 liquid-waste 1 -1110011100 energy-adjusted 1 -1110011100 sombrero-assisted 1 -1110011100 interest-requested 1 -1110011100 fatal-accident 1 -1110011100 energy-equivalent 1 -1110011100 comparable-restaurant 1 -1110011100 fiscal-1990 1 -1110011100 harness-emotions 1 -1110011100 gold-content 1 -1110011100 eight-volume 1 -1110011100 1.4-million-unit 1 -1110011100 planning-agency 1 -1110011100 per-salesman 1 -1110011100 two-and-a-half-hour 1 -1110011100 672-page 1 -1110011100 small-systems 1 -1110011100 cost-to-sales 1 -1110011100 deal-destroying 1 -1110011100 foodprice 1 -1110011100 threehour 1 -1110011100 far-lower 1 -1110011100 envelope-sized 1 -1110011100 non-accelerating-inflation 1 -1110011100 third-quarter-GNP 1 -1110011100 increases-to-decreases 1 -1110011100 inflation-offsetting 1 -1110011100 gimmick-ridden 1 -1110011100 futuristic-looking 1 -1110011100 Iranian-trained 1 -1110011100 stillunfinished 1 -1110011100 all-broker 1 -1110011100 6.25-cent-a-share 1 -1110011100 engineer-to-engineer 1 -1110011100 IRS-produced 1 -1110011100 11-mark 1 -1110011100 recovery-program 1 -1110011100 three-cents-a-pound 1 -1110011100 all-or-none 1 -1110011100 412,000-unit 1 -1110011100 securities-repurchase-agreement 1 -1110011100 network-usage 1 -1110011100 OSHA-employer 1 -1110011100 Britain-dominated 1 -1110011100 net-operating-loss 1 -1110011100 21-cent 1 -1110011100 consumption-to-income 1 -1110011100 money-market-intervention 1 -1110011100 report-request 1 -1110011100 Revlon-related 1 -1110011100 weather-service 1 -1110011100 benefit-to-cost 2 -1110011100 assets-to-capital 2 -1110011100 Shultz-Tambo 2 -1110011100 unusal 2 -1110011100 annual-rate 2 -1110011100 languorous 2 -1110011100 substantial-understatement 2 -1110011100 Catholic-school 2 -1110011100 signal-to-noise 2 -1110011100 husbandly 2 -1110011100 pound-dollar 2 -1110011100 annual-interest 2 -1110011100 AT&T-sponsored 2 -1110011100 premiums-to-surplus 2 -1110011100 premium-to-surplus 2 -1110011100 35-to-1 2 -1110011100 price-sales 2 -1110011100 lumpsum 2 -1110011100 814-page 2 -1110011100 SEC-mandated 2 -1110011100 telephone-tax 2 -1110011100 rediscount 2 -1110011100 subordinated-debenture 2 -1110011100 insured-unemployment 2 -1110011100 886-page 2 -1110011100 crop-subsidy 2 -1110011100 alkaline-battery 2 -1110011100 computer-supported 2 -1110011100 late-June 2 -1110011100 individual-case 2 -1110011100 corn-hog 2 -1110011100 federal-provincial 3 -1110011100 mark-dollar 3 -1110011100 18-cent 3 -1110011100 8-to-6 3 -1110011100 security-analyst 3 -1110011100 fed-funds 3 -1110011100 operating-profit 3 -1110011100 housing-starts 3 -1110011100 gold/oil 3 -1110011100 first-prize 3 -1110011100 institute-sponsored 4 -1110011100 800-page 4 -1110011100 January-February 4 -1110011100 above-trend 5 -1110011100 bid-to-cover 5 -1110011100 already-low 5 -1110011100 unattributed 6 -1110011100 early-withdrawal 6 -1110011100 inventory-to-sales 6 -1110011100 market-crash 6 -1110011100 bill-discount 10 -1110011100 operating-loss 10 -1110011100 equity-to-asset 10 -1110011100 Five-Year 12 -1110011100 -a-year 14 -1110011100 broker-loan 14 -1110011100 -plus 25 -1110011100 a-Average 61 -1110011100 oil-import 71 -1110011100 annualized 192 -1110011100 annual 11496 -1110011100 adjustable 538 -1110011101 used-goods 1 -1110011101 23/64-inch 1 -1110011101 5.9-million-unit 1 -1110011101 1,317,000-unit 1 -1110011101 557,000-unit 1 -1110011101 sombrero-shaped 1 -1110011101 10,000-circulation 1 -1110011101 three-toone 1 -1110011101 522-room 1 -1110011101 TWA-United 1 -1110011101 apple-juice 1 -1110011101 692,000-unit 1 -1110011101 5,971,000-unit 1 -1110011101 throughbred 1 -1110011101 501,000-unit 1 -1110011101 1,096,000-unit 1 -1110011101 1,475,000-unit 1 -1110011101 seven-eighths-inch 1 -1110011101 blast-furnance 1 -1110011101 22-frigate 1 -1110011101 gas-transport 1 -1110011101 54.8-hour 1 -1110011101 1.25-inch 1 -1110011101 mini-movie 1 -1110011101 7/32nds-inch 1 -1110011101 100-investor 1 -1110011101 1,119,000-unit 1 -1110011101 1,602,000-unit 1 -1110011101 robotics-show 1 -1110011101 Hungary-Suez 1 -1110011101 Sydneybased 1 -1110011101 faster-than-normal 1 -1110011101 15-or 1 -1110011101 union-affiliated 1 -1110011101 Board-certified 1 -1110011101 20/64ths-inch 1 -1110011101 .148 1 -1110011101 404-bed 1 -1110011101 65-unit 1 -1110011101 Lewisham 1 -1110011101 1,250-room 1 -1110011101 radiochemical 1 -1110011101 distemper 1 -1110011101 Tygerberg 1 -1110011101 coconut-log 1 -1110011101 standard-transaction 1 -1110011101 23/64ths-inch 1 -1110011101 convict-supervisor 1 -1110011101 269-room 1 -1110011101 670,000-unit 1 -1110011101 POP-industry 1 -1110011101 139-store 1 -1110011101 53-store 1 -1110011101 Libor-related 1 -1110011101 per-box 1 -1110011101 21/64inch 1 -1110011101 542-pence 1 -1110011101 card-and-gift 1 -1110011101 multiplex 1 -1110011101 100-missile 1 -1110011101 weapons-producing 1 -1110011101 551,000-unit 1 -1110011101 180,000-square-foot 1 -1110011101 Stettin 1 -1110011101 7/64th-inch 1 -1110011101 420-bed 1 -1110011101 germ-laden 1 -1110011101 25/64-inch 1 -1110011101 30-cents-a-share 1 -1110011101 debt-to-GNP 1 -1110011101 Grace-donated 1 -1110011101 federal-debt 1 -1110011101 1,749,000-unit 1 -1110011101 one-hour-average 1 -1110011101 406-room 1 -1110011101 insurance-covered 1 -1110011101 MITI-built 1 -1110011101 stereo-supply 1 -1110011101 10.3-million 1 -1110011101 incentive-helped 1 -1110011101 40/64-inch 1 -1110011101 44-bed 1 -1110011101 five-cent-a-pound 1 -1110011101 19-to-1 1 -1110011101 city-funded 1 -1110011101 44/64-inch 1 -1110011101 weapons-industry 1 -1110011101 strength-to-weight 1 -1110011101 travel-and-geography 1 -1110011101 heart-on-the-sleeve 1 -1110011101 462-room 1 -1110011101 50-warship 1 -1110011101 IRA-rollover 1 -1110011101 gas-sale 1 -1110011101 Indian-trained 1 -1110011101 time-warp 1 -1110011101 355-page 1 -1110011101 593,000-unit 1 -1110011101 1,209,000 1 -1110011101 lunchpail 1 -1110011101 1-to-30 1 -1110011101 gold-window 1 -1110011101 six-theater 1 -1110011101 seven-dollar 1 -1110011101 Wonsan 1 -1110011101 40/64ths-inch 1 -1110011101 annual-benefit 1 -1110011101 millionbushel 1 -1110011101 5.80-dollar 1 -1110011101 inventoryto-sales 1 -1110011101 6/64-inch 1 -1110011101 six-to-eight-year 1 -1110011101 robot-run 1 -1110011101 white-dining-cloth 1 -1110011101 36/34-inch 1 -1110011101 color-glutted 1 -1110011101 Barlays 1 -1110011101 296-room 1 -1110011101 Firehouse 1 -1110011101 5/16-inch 1 -1110011101 78-room 1 -1110011101 chicken-and-biscuits 1 -1110011101 OCAW-represented 1 -1110011101 status-dropout 1 -1110011101 237-room 1 -1110011101 Crick-Watson 1 -1110011101 telephone-book-sized 1 -1110011101 good-ole-boy 1 -1110011101 46,004 1 -1110011101 general-base 1 -1110011101 building-service 1 -1110011101 adult-illiteracy 1 -1110011101 BUMP 1 -1110011101 specialty-clothing 1 -1110011101 penalty-triggering 1 -1110011101 720-seat 1 -1110011101 134-all 1 -1110011101 width-to-height 1 -1110011101 22/64ths-inch 1 -1110011101 1,257,000-unit 1 -1110011101 370,000-unit 1 -1110011101 399,000-unit 1 -1110011101 13-screen 1 -1110011101 miniature-auto-racing 1 -1110011101 less-hectic 1 -1110011101 .370 1 -1110011101 cash-draw 1 -1110011101 nine-paragraph 1 -1110011101 Y---er 1 -1110011101 tradition-rich 1 -1110011101 663-room 1 -1110011101 geneamp 1 -1110011101 marks-per-share 1 -1110011101 Twinsburg-based 1 -1110011101 215-room 1 -1110011101 ministorage 1 -1110011101 sewing-supplies 1 -1110011101 medical-supplies 1 -1110011101 144-room 1 -1110011101 three-times-delayed 1 -1110011101 20-million-franc 1 -1110011101 material-management 1 -1110011101 six-cent-a-pound 1 -1110011101 daily-decline 1 -1110011101 platinum-futures 1 -1110011101 996,000-unit 1 -1110011101 356,000-unit 1 -1110011101 1,436,000-unit 1 -1110011101 4:1 1 -1110011101 two-bag 1 -1110011101 beer-tax 1 -1110011101 securities-repurchase-agreements 1 -1110011101 artificial-hormone 1 -1110011101 sixth-highest 1 -1110011101 second-shift 1 -1110011101 126-bed 1 -1110011101 21/64-inch 1 -1110011101 Medicare-payment 1 -1110011101 Semarang 1 -1110011101 96-suite 1 -1110011101 stock-bond 1 -1110011101 125-1000 1 -1110011101 12/64ths-inch 1 -1110011101 perfume-scented 1 -1110011101 twocent 1 -1110011101 35-bed 1 -1110011101 greater-than-predicted 1 -1110011101 ENDINGS 1 -1110011101 federal-insurance 1 -1110011101 kernel-making 1 -1110011101 relatively-high 1 -1110011101 weeky 1 -1110011101 false-alarm 2 -1110011101 risk-to-capital 2 -1110011101 far-greater 2 -1110011101 state-commissioned 2 -1110011101 snap-on 2 -1110011101 capital-to-liabilities 2 -1110011101 per-minute 2 -1110011101 50-hour 2 -1110011101 12-million-barrel 2 -1110011101 250,000-ton 2 -1110011101 hunt-club 2 -1110011101 60-room 2 -1110011101 subnormal 2 -1110011101 1,095,000-unit 2 -1110011101 mark-franc 2 -1110011101 start-to-finish 2 -1110011101 55-mph 2 -1110011101 buy/sell 2 -1110011101 URPE 2 -1110011101 seat-mile 2 -1110011101 7-to-10 2 -1110011101 risk-to-reward 2 -1110011101 152-story 2 -1110011101 529,000-unit 2 -1110011101 criminal-libel 2 -1110011101 business-publications 2 -1110011101 benefit-cost 2 -1110011101 1,300-office 2 -1110011101 first-marriage 2 -1110011101 per-trade 2 -1110011101 margin-loan 2 -1110011101 150-million-share 2 -1110011101 Woolco 2 -1110011101 futures-only 2 -1110011101 semi-holiday 2 -1110011101 stocks-to-consumption 2 -1110011101 secondary-issue 2 -1110011101 clay-animated 2 -1110011101 modified-atmosphere 2 -1110011101 7/64-inch 2 -1110011101 2,719 2 -1110011101 45-point 2 -1110011101 long-idled 2 -1110011101 debt-to-assets 2 -1110011101 700,000-barrel-a-day 2 -1110011101 10-7 3 -1110011101 auto-price 3 -1110011101 26/64-inch 3 -1110011101 12/64-inch 3 -1110011101 12.5-cent 3 -1110011101 full-menu 3 -1110011101 debt-to-income 3 -1110011101 price-rise 3 -1110011101 13/64-inch 3 -1110011101 22-cent 3 -1110011101 false-negative 3 -1110011101 curiae 3 -1110011101 fine-arts 3 -1110011101 Allied-Federated 3 -1110011101 white-family 3 -1110011101 single-season 3 -1110011101 per-student 3 -1110011101 greenhouse-gas 3 -1110011101 time-released 3 -1110011101 price-to-book-value 3 -1110011101 inventory-sales 4 -1110011101 quality-related 4 -1110011101 C-section 4 -1110011101 70-cent 4 -1110011101 job-growth 4 -1110011101 sell-buy 4 -1110011101 book-value 4 -1110011101 personal-savings 4 -1110011101 major-studio 4 -1110011101 month-by-month 4 -1110011101 three-to-two 4 -1110011101 Sunday-school 4 -1110011101 non-intervention 4 -1110011101 loan-to-value 4 -1110011101 war-risk 4 -1110011101 Famous-Barr 5 -1110011101 dollar/yen 5 -1110011101 pre-1981 5 -1110011101 Gimbels 5 -1110011101 black-family 5 -1110011101 full-day 5 -1110011101 full-season 5 -1110011101 4-to-5 5 -1110011101 debt-to-capitalization 6 -1110011101 false-positive 6 -1110011101 per-acre 6 -1110011101 government-administered 6 -1110011101 28-page 6 -1110011101 accrual-basis 6 -1110011101 pound-mark 6 -1110011101 unit-sales 6 -1110011101 post-convention 6 -1110011101 mutinous 6 -1110011101 mark-to-market 6 -1110011101 20-cent 6 -1110011101 20/64-inch 6 -1110011101 miles-per-gallon 7 -1110011101 24/64-inch 7 -1110011101 coupon-equivalent 7 -1110011101 diem 7 -1110011101 late-November 7 -1110011101 put/call 8 -1110011101 1,000-share 8 -1110011101 phased-in 8 -1110011101 1,139 9 -1110011101 price-to-book 9 -1110011101 grade-point 9 -1110011101 single-month 9 -1110011101 million-barrel 10 -1110011101 equity-to-assets 10 -1110011101 15-cent 10 -1110011101 infant-mortality 10 -1110011101 price-to-earnings 11 -1110011101 twice-weekly 11 -1110011101 capital-asset 11 -1110011101 fall-back 11 -1110011101 walk-up 11 -1110011101 taxable-equivalent 11 -1110011101 risk-reward 12 -1110011101 production-line 12 -1110011101 dutch 12 -1110011101 farm-export 12 -1110011101 15-point 13 -1110011101 Courtyard 13 -1110011101 piecework 15 -1110011101 calorie 15 -1110011101 capacity-utilization 15 -1110011101 country-by-country 15 -1110011101 two-cent 17 -1110011101 federal-funds 17 -1110011101 barrel-a-day 17 -1110011101 seven-state 19 -1110011101 kilowatt-hour 19 -1110011101 capital-to-assets 21 -1110011101 debt-to-capital 22 -1110011101 T-bill 23 -1110011101 year-on-year 23 -1110011101 bimonthly 24 -1110011101 trade-weighted 24 -1110011101 at-risk 26 -1110011101 dollar-mark 28 -1110011101 preparatory 28 -1110011101 repo 29 -1110011101 fatality 33 -1110011101 short-interest 35 -1110011101 off-peak 38 -1110011101 14-day 38 -1110011101 quarter-to-quarter 51 -1110011101 price/earnings 54 -1110011101 bond-equivalent 58 -1110011101 P/E 67 -1110011101 debt-to-equity 69 -1110011101 book-to-bill 70 -1110011101 black-market 76 -1110011101 nightly 92 -1110011101 Lombard 113 -1110011101 P-E 119 -1110011101 one-way 145 -1110011101 lump-sum 152 -1110011101 capita 154 -1110011101 subscription 196 -1110011101 price-earnings 261 -1110011101 year-to-year 276 -1110011101 seven-day 278 -1110011101 yearly 278 -1110011101 variable 305 -1110011101 jobless 421 -1110011101 30-day 430 -1110011101 hourly 641 -1110011101 weekly 1411 -1110011101 monthly 2278 -1110011101 discount 3917 -1110011101 daily 3273 -111001111000 Libyan-trained 1 -111001111000 jack-o'-lantern 1 -111001111000 trading-oversight 1 -111001111000 investment-software 1 -111001111000 post-plunge 1 -111001111000 small-unit 1 -111001111000 earliest-known 1 -111001111000 consumer-regulation 1 -111001111000 sewer-discharge 1 -111001111000 trench-safety 1 -111001111000 bicycle-pedestrian 1 -111001111000 vacation-related 1 -111001111000 financial-firm 1 -111001111000 recreation-related 1 -111001111000 drug-driven 1 -111001111000 capital-rules 1 -111001111000 factor-based 1 -111001111000 foreign-chip 1 -111001111000 bunkbed-related 1 -111001111000 now-weakened 1 -111001111000 plant-rule 1 -111001111000 child-caused 1 -111001111000 Japanese-initiated 1 -111001111000 dog-related 1 -111001111000 political-protest 1 -111001111000 radio-division 1 -111001111000 corporate-bureaucracy 1 -111001111000 limited-objective 1 -111001111000 alligator-hide 1 -111001111000 frisk-and-cuff 1 -111001111000 oil-bust 1 -111001111000 bulk-rate 1 -111001111000 oil-price-control 1 -111001111000 system-unit 1 -111001111000 truck-related 1 -111001111000 exportcontrol 1 -111001111000 nuclear-treaty 1 -111001111000 semiconductor-agreement 1 -111001111000 franchise-related 1 -111001111000 airplane-part 1 -111001111000 worksite 1 -111001111000 debt-funded 1 -111001111000 French-currency 1 -111001111000 TSCA 1 -111001111000 reclamation-law 1 -111001111000 contract-interference 1 -111001111000 psychological-distress 1 -111001111000 safety-code 1 -111001111000 variable-product 1 -111001111000 outdoor-boot 1 -111001111000 Value-conscious 1 -111001111000 economy-wide 1 -111001111000 security-law 1 -111001111000 U.S.-U.S.S.R.-China 1 -111001111000 radio-popularity 1 -111001111000 non-community 1 -111001111000 less-than-successful 1 -111001111000 money-center-bank 1 -111001111000 defrauds 1 -111001111000 foreign-parts 1 -111001111000 outstate 1 -111001111000 party-finance 1 -111001111000 dollar-profits 1 -111001111000 middleaged 1 -111001111000 small-crocus 1 -111001111000 non-alliance 1 -111001111000 physical-market 1 -111001111000 Chilean-sponsored 1 -111001111000 slength 1 -111001111000 securitieslaw 1 -111001111000 Marxist/right-wing 1 -111001111000 Kennedy-King 1 -111001111000 plastic-timber 1 -111001111000 company-policy 1 -111001111000 line-drive 1 -111001111000 firm-wide 1 -111001111000 meet-the-family 1 -111001111000 manaufacturing 1 -111001111000 credibility-damaging 1 -111001111000 small-craft 1 -111001111000 non-combat-related 1 -111001111000 red-shirted 2 -111001111000 point-spread 2 -111001111000 mayorality 2 -111001111000 aluminum-siding 2 -111001111000 broadcast-advertising 2 -111001111000 blood-brain 2 -111001111000 telecommunications-industry 2 -111001111000 winding-down 2 -111001111000 bridge-financing 2 -111001111000 line-cutting 2 -111001111000 undecipherable 2 -111001111000 care-taking 2 -111001111000 bankcard 2 -111001111000 metal-tipped 2 -111001111000 first-party 2 -111001111000 theatrical-film 2 -111001111000 long-lingering 2 -111001111000 heating-coil 2 -111001111000 skin-panel 2 -111001111000 cumulative-trauma 2 -111001111000 flint-hearted 2 -111001111000 super-power 2 -111001111000 less-dramatic 2 -111001111000 safety-rule 2 -111001111000 stray-bullet 2 -111001111000 extrajudicial 2 -111001111000 housing-code 2 -111001111000 foreign-led 2 -111001111000 takeover-law 2 -111001111000 border-patrol 2 -111001111000 ATM-related 2 -111001111000 junk-bonds 2 -111001111000 lost-time 2 -111001111000 campaign-disclosure 2 -111001111000 keelhaul 2 -111001111000 agency-client 2 -111001111000 back-court 2 -111001111000 single-vehicle 2 -111001111000 openmarket 2 -111001111000 nickelodeon 3 -111001111000 spinal-cord 3 -111001111000 cable-company 3 -111001111000 TMIC-related 3 -111001111000 waterborne-disease 3 -111001111000 less-aggressive 3 -111001111000 Twinkie 3 -111001111000 highly-leveraged 3 -111001111000 Jonestown 3 -111001111000 on-course 3 -111001111000 roll-bar 3 -111001111000 khaki-clad 3 -111001111000 gemstone 3 -111001111000 hand-gun 3 -111001111000 districtwide 3 -111001111000 post-card 3 -111001111000 rat-a-tat-tat 3 -111001111000 disfavored 4 -111001111000 repetitive-motion 4 -111001111000 less-frequent 4 -111001111000 gall-bladder 4 -111001111000 1,617 4 -111001111000 Duchenne-type 4 -111001111000 move-up 4 -111001111000 Philippine-style 4 -111001111000 pollution-law 4 -111001111000 comedic 4 -111001111000 grain-dust 4 -111001111000 currency-reporting 4 -111001111000 restorative 4 -111001111000 punctilious 5 -111001111000 bottomline 5 -111001111000 split-interest 5 -111001111000 work-site 5 -111001111000 rental-property 5 -111001111000 first-home 5 -111001111000 flange 5 -111001111000 once-loyal 6 -111001111000 banking-law 6 -111001111000 phonetic 6 -111001111000 defense-contractor 6 -111001111000 bond-buying 6 -111001111000 commodity-law 6 -111001111000 bathing-suit 6 -111001111000 ODP 6 -111001111000 coloristic 7 -111001111000 noncorporate 7 -111001111000 curbside 7 -111001111000 world-famous 7 -111001111000 second-time 7 -111001111000 roundtable 8 -111001111000 nonbusiness 8 -111001111000 whiplash 10 -111001111000 securities-laws 11 -111001111000 fuel-line 12 -111001111000 tailgate 12 -111001111000 laissez 13 -111001111000 more-moderate 13 -111001111000 paper-work 14 -111001111000 gold-medal 14 -111001111000 halo 15 -111001111000 numismatic 15 -111001111000 front-seat 16 -111001111000 pre-paid 17 -111001111000 Japanese-American 20 -111001111000 bust-up 22 -111001111000 hothouse 22 -111001111000 job-related 24 -111001111000 lung-cancer 25 -111001111000 multiplier 25 -111001111000 big-money 27 -111001111000 short-swing 31 -111001111000 me-too 35 -111001111000 work-related 47 -111001111000 debt-financed 50 -111001111000 caretaker 58 -111001111000 predatory 81 -111001111000 myriad 112 -111001111000 residual 128 -111001111000 willful 133 -111001111000 first-time 170 -111001111000 securities-law 199 -111001111000 superpower 329 -111001111000 would-be 411 -111001111000 multiple 670 -111001111000 replacement 782 -111001111000 prospective 916 -111001111000 mass 1038 -111001111000 potential 7107 -111001111000 secret 2027 -111001111001 quasi-ideological 1 -111001111001 post-coronary 1 -111001111001 spending-reduction 1 -111001111001 540,000-share 1 -111001111001 unreasoned 1 -111001111001 Iranian-Soviet 1 -111001111001 Shoreham-less 1 -111001111001 non-humilating 1 -111001111001 nuclear-energy-level 1 -111001111001 30-hours-in-seven-days 1 -111001111001 little-discussed 1 -111001111001 air-sea 1 -111001111001 not-so-rosy 1 -111001111001 liability-cost 1 -111001111001 non-hostile 1 -111001111001 preference-stock 1 -111001111001 management-contract 1 -111001111001 potassium-channel 1 -111001111001 bogus/sham 1 -111001111001 top-bet 1 -111001111001 2,470-pound 1 -111001111001 stock-lifting 1 -111001111001 coil-spring 1 -111001111001 test-rocket 1 -111001111001 three-business-day 1 -111001111001 electronics-company 1 -111001111001 RCA-size 1 -111001111001 market-efficient 1 -111001111001 client-contact 1 -111001111001 controllability 1 -111001111001 European-controlled 1 -111001111001 post-merger-battle 1 -111001111001 junior-grade 1 -111001111001 sniggering 1 -111001111001 non-sudden 1 -111001111001 Vidalian 1 -111001111001 GOP-backed 1 -111001111001 43-minute 1 -111001111001 work-hours 1 -111001111001 fugure 1 -111001111001 immed 1 -111001111001 Japanese-Brazilian 1 -111001111001 overrefined 1 -111001111001 Dalkson 1 -111001111001 100-warhead 1 -111001111001 cold-turkey 1 -111001111001 hog-wire 1 -111001111001 over-hasty 1 -111001111001 integrated-plant 1 -111001111001 Balanchinian 1 -111001111001 industrial-waste 1 -111001111001 1.5-million-share 1 -111001111001 later-dated 1 -111001111001 Aapri 1 -111001111001 whorl 1 -111001111001 Superior-size 1 -111001111001 475-million-dollar 1 -111001111001 gasolinetax 1 -111001111001 management-organized 1 -111001111001 freehold 1 -111001111001 safety-system 1 -111001111001 dollar-day 1 -111001111001 500-share 1 -111001111001 share-but 1 -111001111001 big-number 1 -111001111001 prognostic 1 -111001111001 matched-sales 1 -111001111001 peseta-linked 1 -111001111001 savings-stock 1 -111001111001 nonpeaceful 1 -111001111001 U.S.-Nicaraguan 1 -111001111001 lung-tissue 1 -111001111001 two-container 1 -111001111001 more-sedate 1 -111001111001 crash-fire 1 -111001111001 two-million-share 1 -111001111001 submachine-gun-toting 1 -111001111001 U.S.-opposed 1 -111001111001 refrigerator-manufacturing 1 -111001111001 over-engineering 1 -111001111001 Chinese-American-Canadian 1 -111001111001 single-plane 1 -111001111001 oligopsonistic 1 -111001111001 PCR-test 1 -111001111001 half-teaspoon 1 -111001111001 non-hegemonic 1 -111001111001 metholated 1 -111001111001 lake-water 1 -111001111001 2.4-point 1 -111001111001 2,500-contract 1 -111001111001 mootness 1 -111001111001 Waspish 1 -111001111001 double-wishbone 2 -111001111001 one-game 2 -111001111001 400-ton 2 -111001111001 still-tougher 2 -111001111001 now-dissolved 2 -111001111001 ripped-off 2 -111001111001 containerized-waste 2 -111001111001 three-cornered 2 -111001111001 foreign-equity 2 -111001111001 short-interval 2 -111001111001 iontophoresis 2 -111001111001 free-swinging 2 -111001111001 2,200-pound 2 -111001111001 sanctions-filled 2 -111001111001 volume-starved 2 -111001111001 pattern-matching 2 -111001111001 4,644 2 -111001111001 2.5-to-1 2 -111001111001 more-intense 2 -111001111001 co-signatory 2 -111001111001 TESS 2 -111001111001 per-patient 2 -111001111001 Chinese-foreign 2 -111001111001 jazz-rock 2 -111001111001 1979-83 2 -111001111001 gale-force 2 -111001111001 moonbeam 2 -111001111001 stretched-out 2 -111001111001 sooner-than-expected 2 -111001111001 pictorially 2 -111001111001 three-million-share 2 -111001111001 not-distant 2 -111001111001 anti-Christian 2 -111001111001 non-acoustic 2 -111001111001 showboating 2 -111001111001 pre-industrial 3 -111001111001 tax-change 3 -111001111001 possibile 3 -111001111001 still-undisclosed 3 -111001111001 lightning-like 3 -111001111001 pillowcase 3 -111001111001 temporomandibular 3 -111001111001 180-day 3 -111001111001 little-understood 3 -111001111001 trade-liberalizing 3 -111001111001 Drexel-financed 3 -111001111001 street-fighting 4 -111001111001 Texaco-Getty 4 -111001111001 single-owner 4 -111001111001 U.S.-foreign 5 -111001111001 sickle-cell 5 -111001111001 long-threatened 5 -111001111001 python 5 -111001111001 dilatory 5 -111001111001 zebra 6 -111001111001 longshot 6 -111001111001 third-degree 7 -111001111001 hold-in-custody 7 -111001111001 management-sponsored 7 -111001111001 communitywide 7 -111001111001 TV-station 7 -111001111001 management-backed 7 -111001111001 premeditated 7 -111001111001 75-point 8 -111001111001 underpaying 9 -111001111001 non-accruing 9 -111001111001 54-46 14 -111001111001 disqualifying 15 -111001111001 screeching 21 -111001111001 long-rumored 24 -111001111001 practicable 33 -111001111001 preferred-stock 88 -111001111001 permissible 150 -111001111001 50-50 244 -111001111001 possible 10537 -111001111001 beneficial 498 -111001111010 coated-steel 1 -111001111010 cvil 1 -111001111010 record-cold 1 -111001111010 '87-'88 1 -111001111010 1099B 1 -111001111010 miminum 1 -111001111010 anti-Establishment 1 -111001111010 ADEA 1 -111001111010 liquidity-crazed 1 -111001111010 wood-smoke 1 -111001111010 two-volumes-and-a-magnifying-glass 1 -111001111010 190-point 1 -111001111010 .Total 1 -111001111010 9000S 1 -111001111010 multiflavor 1 -111001111010 Irish-bred 1 -111001111010 summer-travel 1 -111001111010 Fourth-Amendment 1 -111001111010 ticket-purchase 1 -111001111010 proctoscoptic 1 -111001111010 shareholder-voting 1 -111001111010 1986/87 1 -111001111010 29,851 1 -111001111010 drainage-ditch 1 -111001111010 masonic 1 -111001111010 McKinley-Taft 1 -111001111010 big-action 1 -111001111010 blizzardy 1 -111001111010 doggy 1 -111001111010 wakeful 1 -111001111010 first-serial 1 -111001111010 regionalist 1 -111001111010 162-game 1 -111001111010 health-care-fraud 1 -111001111010 football-less 1 -111001111010 can-distribution 1 -111001111010 return-the 1 -111001111010 trans-membrane 1 -111001111010 Noid 1 -111001111010 rolling-stock 1 -111001111010 DuraFlo 1 -111001111010 family-viewing 1 -111001111010 50-win 1 -111001111010 Yigal 1 -111001111010 poison-pill-shareholder 1 -111001111010 Impossibility 1 -111001111010 12,000-person 1 -111001111010 7,500-foot 1 -111001111010 51-vote 1 -111001111010 viewer-proof 1 -111001111010 fall-travel 1 -111001111010 Post-WNYW-TV 1 -111001111010 silver-sequined 1 -111001111010 most-productive 1 -111001111010 non-gig 1 -111001111010 beef-oriented 1 -111001111010 passive-tense 1 -111001111010 aflatoxin-free 1 -111001111010 drier-than-usual 1 -111001111010 Contel-Comsat 2 -111001111010 cool-down 2 -111001111010 135-pound 2 -111001111010 early-19th-century 2 -111001111010 fog-free 2 -111001111010 September-December 2 -111001111010 pay-increase 2 -111001111010 pre-1968 2 -111001111010 end-of-the-week 2 -111001111010 primary-day 2 -111001111010 freon-distillation 2 -111001111010 firm-order 2 -111001111010 devil-may-care 2 -111001111010 radio-broadcast 2 -111001111010 inconvertible 2 -111001111010 gift-buying 2 -111001111010 Venezuelan-owned 2 -111001111010 388,426 2 -111001111010 161,800,000 2 -111001111010 nickel-and-dime 2 -111001111010 classical-liberal 2 -111001111010 Whirlpool-Roper 2 -111001111010 post-Olympic 2 -111001111010 topographic 2 -111001111010 case-law 2 -111001111010 play-for-pay 2 -111001111010 panty-hose 2 -111001111010 timber-cutting 2 -111001111010 sky-box 2 -111001111010 700,000-square-foot 2 -111001111010 yet-another 2 -111001111010 rainier 3 -111001111010 saw-toothed 3 -111001111010 near-majority 3 -111001111010 campuswide 3 -111001111010 regionwide 3 -111001111010 chainwide 3 -111001111010 non-major 3 -111001111010 card-holder 3 -111001111010 electricity-distribution 3 -111001111010 Downy 3 -111001111010 postmark 3 -111001111010 weight-control 3 -111001111010 poison-oak 3 -111001111010 spear-fishing 3 -111001111010 JEC 3 -111001111010 limited-voting 3 -111001111010 Bluestone-Harrison 4 -111001111010 lipid 4 -111001111010 marlin 4 -111001111010 1,620,500 4 -111001111010 Quebec-owned 4 -111001111010 return-filing 4 -111001111010 Amaretto 4 -111001111010 news-media 4 -111001111010 economizing 4 -111001111010 give-back 4 -111001111010 overflight 4 -111001111010 low-traffic 4 -111001111010 sesquicentennial 4 -111001111010 presidential-primary 4 -111001111010 STX 4 -111001111010 924S 4 -111001111010 countrywide 4 -111001111010 2,950,000 5 -111001111010 system-wide 5 -111001111010 building-block 5 -111001111010 preemptory 5 -111001111010 anti-protectionist 5 -111001111010 1986-1990 6 -111001111010 borderless 6 -111001111010 Polavision 6 -111001111010 subsurface 6 -111001111010 primrose 6 -111001111010 genuessscheine 6 -111001111010 frost-prone 7 -111001111010 1989-1990 7 -111001111010 cone-like 7 -111001111010 cymbal 7 -111001111010 ticker-tape 7 -111001111010 perfumed 8 -111001111010 late-cycle 8 -111001111010 movie-studio 8 -111001111010 fat-free 8 -111001111010 uncorrected 8 -111001111010 1929-30 8 -111001111010 mangosteen 9 -111001111010 500-mile 9 -111001111010 late-summer 10 -111001111010 whirring 10 -111001111010 British-owned 10 -111001111010 paid-up 11 -111001111010 1985-1986 11 -111001111010 midcourse 11 -111001111010 first-refusal 11 -111001111010 citywide 13 -111001111010 Jeep-Eagle 15 -111001111010 topsy-turvy 16 -111001111010 Europe-wide 19 -111001111010 leasehold 20 -111001111010 pollination 21 -111001111010 monsoon 22 -111001111010 trackage 23 -111001111010 1987-1988 25 -111001111010 1989-90 29 -111001111010 coast-to-coast 31 -111001111010 back-to-school 41 -111001111010 systemwide 46 -111001111010 worldwide 49 -111001111010 door-to-door 72 -111001111010 1988-89 96 -111001111010 paperback 103 -111001111010 1986-87 104 -111001111010 1987-88 126 -111001111010 CreditWatch 439 -111001111010 bargaining 871 -111001111010 holiday 1122 -111001111010 nationwide 1594 -111001111010 primary 2704 -111001111010 world-wide 2714 -111001111010 voting 2747 -111001111011 FORMATION 1 -111001111011 COACHES 1 -111001111011 Otselic 1 -111001111011 Non-airline 1 -111001111011 computer-synthesized 1 -111001111011 JONATHAN 1 -111001111011 WINDFALL 1 -111001111011 pommes 1 -111001111011 institutional-buying 1 -111001111011 SPEECH 1 -111001111011 NAVASOTA 1 -111001111011 Zaabal 1 -111001111011 Ericcson 1 -111001111011 plein 1 -111001111011 midair-collision 1 -111001111011 BRIEFED 1 -111001111011 Etchmiadzin 1 -111001111011 Nagorno 1 -111001111011 home-style 1 -111001111011 Flin 1 -111001111011 Garabak 1 -111001111011 Galleya 1 -111001111011 Araks 1 -111001111011 Aist 1 -111001111011 Blinnaya 1 -111001111011 Agdam 1 -111001111011 AUSTRALASIA 1 -111001111011 Paonia 1 -111001111011 familia 1 -111001111011 Cassiar 1 -111001111011 1980-they 1 -111001111011 Itemizers 1 -111001111011 ACQUITTED 1 -111001111011 Salamis 1 -111001111011 Saveh 1 -111001111011 Esztergom 1 -111001111011 FLURRY 1 -111001111011 TABS 1 -111001111011 DIARY 1 -111001111011 Tema 1 -111001111011 Bogor 1 -111001111011 TAILORED 1 -111001111011 SKIPPER 1 -111001111011 REIGN 1 -111001111011 desperately-ill 1 -111001111011 OPTIONAL 1 -111001111011 Velay 1 -111001111011 PLANNED 1 -111001111011 SOPHIA 1 -111001111011 Deadhorse 1 -111001111011 Brownwood 1 -111001111011 INSTINCTS 1 -111001111011 WEAK 1 -111001111011 KALGOORLIE 1 -111001111011 Plains. 1 -111001111011 Patrais 1 -111001111011 VALLARTA 1 -111001111011 Berchtesgaden 1 -111001111011 Chipinga 1 -111001111011 Rushinga 1 -111001111011 Groenlandia 1 -111001111011 bouteilles 1 -111001111011 RICAN 1 -111001111011 INSISTED 1 -111001111011 Lambertville 1 -111001111011 Bly 1 -111001111011 IMPLANTABLE 1 -111001111011 Lovelock 1 -111001111011 BARREL 1 -111001111011 Westmorland 1 -111001111011 Golecchha 1 -111001111011 full-diamond 1 -111001111011 ANYWHERE 1 -111001111011 AUTOMATE 1 -111001111011 Baxley 1 -111001111011 Jalamabad 1 -111001111011 Luddism 1 -111001111011 steeper-than-normal 1 -111001111011 Etoiles 1 -111001111011 explosion-wary 1 -111001111011 30900 1 -111001111011 Fredricton 1 -111001111011 Bacalod 1 -111001111011 Vryburg 1 -111001111011 Kuhestak 1 -111001111011 Estacada 1 -111001111011 multinational-linked 1 -111001111011 Freetown. 1 -111001111011 SENTENCING 1 -111001111011 Whitecourt 1 -111001111011 ELECTABILITY 1 -111001111011 CRAFTS 1 -111001111011 PARODY 1 -111001111011 anti-malarial 1 -111001111011 NEPTUNE 1 -111001111011 140-pence-a-share 1 -111001111011 REMOVED 1 -111001111011 Armistead 1 -111001111011 croute 1 -111001111011 MACHINISTS 1 -111001111011 &P 1 -111001111011 Geddobar 1 -111001111011 Recognitn 1 -111001111011 Bashed 1 -111001111011 Cmwlth 1 -111001111011 adrenocortical 1 -111001111011 high-leveraged 1 -111001111011 84,394 1 -111001111011 LIGHTER 1 -111001111011 JUNTA 1 -111001111011 MISHANDLING 1 -111001111011 SURPRISED 1 -111001111011 LOBBIED 1 -111001111011 DAWDLING 1 -111001111011 Insein 1 -111001111011 AFTERMATH 1 -111001111011 Genl 1 -111001111011 Trucks-buses 1 -111001111011 Trucks/busesxx 1 -111001111011 Pro-rated 1 -111001111011 Mareb 1 -111001111011 555,436 1 -111001111011 227,900 1 -111001111011 1/16. 1 -111001111011 LUXURY 1 -111001111011 27,229 1 -111001111011 782-acre 1 -111001111011 1,115,867 1 -111001111011 Mid-July 1 -111001111011 Enterprises/ 1 -111001111011 Laverton 1 -111001111011 inter-generational 1 -111001111011 Sasabe 1 -111001111011 Preungesheim 1 -111001111011 11.5-cent 1 -111001111011 OWN 1 -111001111011 home-and-hearth 1 -111001111011 Bolinao 1 -111001111011 seedcorn 2 -111001111011 Oconomowoc 2 -111001111011 BRUNEI 2 -111001111011 overtime-pay 2 -111001111011 cueros 2 -111001111011 cuero 2 -111001111011 Iragua 2 -111001111011 NASIONAL 2 -111001111011 baby-sitter 2 -111001111011 Catania 2 -111001111011 UNUSUAL 2 -111001111011 VETO 2 -111001111011 roach-infested 2 -111001111011 oilpatch 2 -111001111011 living. 2 -111001111011 NCCS 2 -111001111011 HARVY 2 -111001111011 DIP 2 -111001111011 ENDORSEMENT 2 -111001111011 Pohnpeians 2 -111001111011 Calueque 2 -111001111011 evangelizing 2 -111001111011 earnings-contingent 2 -111001111011 Zombies 2 -111001111011 Wilburton 2 -111001111011 1938-45 2 -111001111011 perishability 2 -111001111011 1,168 2 -111001111011 uncharged 2 -111001111011 Shimachu 2 -111001111011 Spandau 2 -111001111011 lawyers. 2 -111001111011 Kamloops 2 -111001111011 well-advertised 2 -111001111011 MEMORY 2 -111001111011 Ultrix 2 -111001111011 Pawling 2 -111001111011 Cayucos 2 -111001111011 Paveurs 2 -111001111011 Karolewo 2 -111001111011 LYING 2 -111001111011 land. 2 -111001111011 longrun 2 -111001111011 TESTIMONY 2 -111001111011 improvement. 2 -111001111011 1980-1982 3 -111001111011 Mercedes-b 3 -111001111011 BMW-b 3 -111001111011 Volvo-b 3 -111001111011 Jaguar-b 3 -111001111011 Volkswagen-d 3 -111001111011 Hyundai-b 3 -111001111011 Saab-b 3 -111001111011 Audi-b 3 -111001111011 flypaper 3 -111001111011 Siberie 3 -111001111011 Winnemucca 3 -111001111011 PAL 3 -111001111011 self-development 3 -111001111011 yet-to-be-announced 3 -111001111011 post-fair 3 -111001111011 price-value 3 -111001111011 Malaga 3 -111001111011 Kalispell 3 -111001111011 Lloydminster 3 -111001111011 TOTAL-x 3 -111001111011 Skylarks 3 -111001111011 pre-approval 4 -111001111011 SWITZERLAND 4 -111001111011 Orangeville 4 -111001111011 Pavlograd 4 -111001111011 Hetch 4 -111001111011 1926-87 4 -111001111011 inflation-free 4 -111001111011 1980-85 4 -111001111011 topside 4 -111001111011 sibilant 4 -111001111011 cost-efficiency 4 -111001111011 pointe 4 -111001111011 Imunox 4 -111001111011 1650 4 -111001111011 azure 4 -111001111011 suprise 4 -111001111011 SunAmerica 4 -111001111011 Orangi 5 -111001111011 CONVICTED 5 -111001111011 Minneapolis/St 6 -111001111011 super-rich 6 -111001111011 future. 7 -111001111011 mambo 7 -111001111011 Killeagh 7 -111001111011 mid-air 8 -111001111011 invisibility 8 -111001111011 Smolensk 8 -111001111011 early-1980s 9 -111001111011 Treblinka 9 -111001111011 ERICSSON 10 -111001111011 Shield-related 10 -111001111011 Diam.Star 10 -111001111011 aloe 11 -111001111011 jugular 12 -111001111011 Ilopango 12 -111001111011 crash-related 12 -111001111011 post-Christmas 12 -111001111011 pell-mell 12 -111001111011 Nowa 13 -111001111011 Minsk 15 -111001111011 U.S.-U.S.S.R. 16 -111001111011 pre-payment 18 -111001111011 yearend 20 -111001111011 banc 20 -111001111011 mid-year 57 -111001111011 extinction 59 -111001111011 year-to-date 69 -111001111011 prepayment 86 -111001111011 Copper-7 149 -111001111011 midyear 207 -111001111011 downside 229 -111001111011 workplace 353 -111001111011 near-term 418 -111001111011 Shield 649 -111001111011 future 9499 -111001111011 year-end 1387 -111001111100 Europeanlike 1 -111001111100 60-fold 1 -111001111100 C-movie 1 -111001111100 Mizells 1 -111001111100 753-page 1 -111001111100 three-dimensionality 1 -111001111100 trust-payment 1 -111001111100 BB-plus/B 1 -111001111100 2.7-times-book 1 -111001111100 mostrecent 1 -111001111100 fist-fight 1 -111001111100 long-term-debt 1 -111001111100 micro-flap 1 -111001111100 113.47 1 -111001111100 magazinecover 1 -111001111100 37-state 1 -111001111100 blanket/Than 1 -111001111100 49-member 1 -111001111100 low-fuel 1 -111001111100 11,000-person 1 -111001111100 400-inn 1 -111001111100 less-stable 1 -111001111100 then-indicated 1 -111001111100 well-beaten 1 -111001111100 waiver-insurance 1 -111001111100 refined-copper 1 -111001111100 112,000-square-foot 1 -111001111100 war-room 1 -111001111100 tulip-bulb 1 -111001111100 black-migrant 1 -111001111100 futures-market-style 1 -111001111100 non-supermarket 1 -111001111100 retail-auto-leasing 1 -111001111100 osseous 1 -111001111100 record-matching 1 -111001111100 1,780,000-car 1 -111001111100 fast-depreciating 1 -111001111100 phosphate-fertilizer 1 -111001111100 ever-shortening 1 -111001111100 once-heavy 1 -111001111100 tariff-soaked 1 -111001111100 domestic-stores 1 -111001111100 program-restructuring 1 -111001111100 slicense 1 -111001111100 less-than-popular 1 -111001111100 nonstatic 1 -111001111100 fixed-equity 1 -111001111100 sale-tax 1 -111001111100 already-staggering 1 -111001111100 per-vehicle 1 -111001111100 32-day 1 -111001111100 ozone-forming 1 -111001111100 flight-training-equipment 1 -111001111100 non-ore 1 -111001111100 once-expansive 1 -111001111100 220-person 1 -111001111100 farlarger 1 -111001111100 nine-line 1 -111001111100 Sportsline 1 -111001111100 587,248 1 -111001111100 often-heavy 1 -111001111100 250-broker 1 -111001111100 180,000-member 1 -111001111100 pen-on-the-dollar 1 -111001111100 museumlike 1 -111001111100 then-enormous 1 -111001111100 minority-enterprise 2 -111001111100 2,500-person 2 -111001111100 fiscal-1988 2 -111001111100 motorboat-fuel 2 -111001111100 noncurrent 2 -111001111100 whirligig 2 -111001111100 non-guaranteed 2 -111001111100 hand-knit 2 -111001111100 debt-to-total 2 -111001111100 Cleveland-to-Chicago 2 -111001111100 one-off 2 -111001111100 near-guarantee 2 -111001111100 443,100 2 -111001111100 two-dollar 2 -111001111100 late-January 2 -111001111100 cast-proof 2 -111001111100 one-under-par 2 -111001111100 earlier-announced 2 -111001111100 sonnet 3 -111001111100 18,000-member 3 -111001111100 47,600 3 -111001111100 post-restructuring 3 -111001111100 stronger-than-anticipated 3 -111001111100 Eulexin 3 -111001111100 non-filing 4 -111001111100 half-share 4 -111001111100 commodity-backed 4 -111001111100 half-liter 4 -111001111100 risk-weighted 5 -111001111100 unsealing 5 -111001111100 proofreading 5 -111001111100 pastiche 6 -111001111100 split-adjusted 9 -111001111100 rate-slashing 9 -111001111100 non-taxable 12 -111001111100 non-Seabrook 13 -111001111100 narrower-than-expected 14 -111001111100 bigger-than-expected 25 -111001111100 price-adjusted 31 -111001111100 larger-than-expected 89 -111001111100 total 13987 -111001111100 whopping 143 -111001111101 phantasmic 1 -111001111101 scraggy 1 -111001111101 limit-provision 1 -111001111101 disparately 1 -111001111101 eye-witness 1 -111001111101 33,000-to-1 1 -111001111101 33-1 1 -111001111101 animalistic 1 -111001111101 toe-to-thigh 1 -111001111101 still-costly 1 -111001111101 Camerawork 1 -111001111101 month- 1 -111001111101 decade-low 1 -111001111101 17,000-metric-ton 1 -111001111101 Auscom 1 -111001111101 baseyear 1 -111001111101 now-stalled 1 -111001111101 wind-tossed 1 -111001111101 psychophotosynthetic 1 -111001111101 not-to-exceed 1 -111001111101 1,489,108 1 -111001111101 sweat-stained 1 -111001111101 movie-about 1 -111001111101 much-wider 1 -111001111101 six-iron 1 -111001111101 1080.04 1 -111001111101 DISABLING 1 -111001111101 still-optimistic 1 -111001111101 now-generous 1 -111001111101 gain.On 1 -111001111101 February-contract 1 -111001111101 then-unthinkable 1 -111001111101 22-article 1 -111001111101 close-to- 1 -111001111101 five-chip 1 -111001111101 1489.53 1 -111001111101 bill-drafting 1 -111001111101 piggish 1 -111001111101 far-from-princely 1 -111001111101 four-by-seven-foot 1 -111001111101 superlow 1 -111001111101 2,946,000 1 -111001111101 symmetries 1 -111001111101 12-piece 1 -111001111101 supernova-exploding 1 -111001111101 31-inch 1 -111001111101 bid-to 1 -111001111101 small-but-growing 1 -111001111101 unrealisticly 1 -111001111101 two-hour-plus 1 -111001111101 86,404 1 -111001111101 Kelso-structured 1 -111001111101 pre-buy-out 1 -111001111101 not-to-be-sneezed-at 1 -111001111101 double-chocolate 1 -111001111101 already-minimal 1 -111001111101 flower-bed 1 -111001111101 suspender 1 -111001111101 say-great 1 -111001111101 clientslose 1 -111001111101 Goodyear-owned 1 -111001111101 1,165,000 1 -111001111101 9-year 1 -111001111101 long-considered 1 -111001111101 deputy-foreign-minister 1 -111001111101 lifeof-contract 1 -111001111101 storm-blocking 1 -111001111101 238,493 1 -111001111101 non-dumping 1 -111001111101 TC2000 1 -111001111101 JAILHOUSE 1 -111001111101 Jodhi 1 -111001111101 373,216.24 1 -111001111101 hostage-taker 1 -111001111101 uneconomically 2 -111001111101 rockabilly 2 -111001111101 three-chip 2 -111001111101 factoid 2 -111001111101 296.49 2 -111001111101 384.54 2 -111001111101 still-huge 2 -111001111101 2289.5 2 -111001111101 about-to-expire 2 -111001111101 post-1940s 2 -111001111101 all-Japan 2 -111001111101 382.24 2 -111001111101 18-point 2 -111001111101 collet 2 -111001111101 10-session 2 -111001111101 one-column 2 -111001111101 13-foot 2 -111001111101 Bremerhaven 2 -111001111101 two-record 2 -111001111101 penknife 2 -111001111101 desert-like 2 -111001111101 384.53 2 -111001111101 fauve 2 -111001111101 awfulness 2 -111001111101 well-muscled 2 -111001111101 post-acquisition 3 -111001111101 two-tablet 3 -111001111101 35140.83 3 -111001111101 socko 3 -111001111101 Megacom 3 -111001111101 pterodactyl 3 -111001111101 pimple 3 -111001111101 2002.8 3 -111001111101 truck-sales 3 -111001111101 worst-ever 3 -111001111101 73-89 3 -111001111101 sunbeam 3 -111001111101 treetop 3 -111001111101 Gabcikovo 3 -111001111101 tannery 3 -111001111101 8789.78 3 -111001111101 non-shelter 4 -111001111101 four-family 4 -111001111101 336.77 4 -111001111101 longhouse 5 -111001111101 post-1949 5 -111001111101 carousel 5 -111001111101 then-record 6 -111001111101 8-to-1 6 -111001111101 383.41 6 -111001111101 par-four 7 -111001111101 best-ever 7 -111001111101 near-panic 7 -111001111101 record-shattering 8 -111001111101 trifling 8 -111001111101 precrash 8 -111001111101 measly 9 -111001111101 late-October 9 -111001111101 396.11 12 -111001111101 halftime 14 -111001111101 postcrash 19 -111001111101 record-breaking 40 -111001111101 rerun 58 -111001111101 near-record 68 -111001111101 saturation 70 -111001111101 paltry 92 -111001111101 life-of-contract 190 -111001111101 52-week 250 -111001111101 post-crash 460 -111001111101 record 10901 -111001111101 peak 1362 -111001111110 1,535-foot 1 -111001111110 2.25-point 1 -111001111110 1,804,000-unit 1 -111001111110 1,247,000-unit 1 -111001111110 five-wave 1 -111001111110 Nakasone-style 1 -111001111110 6,000-job 1 -111001111110 14,000-job 1 -111001111110 20.25-point 1 -111001111110 platinum-card 1 -111001111110 27-cents-a-share 1 -111001111110 yet-to-be-completed 1 -111001111110 1766 1 -111001111110 per-dance 1 -111001111110 25.37-point 1 -111001111110 51-cent-a-share 1 -111001111110 tax-protected 1 -111001111110 35-fold 1 -111001111110 horsefly 1 -111001111110 tree-studded 1 -111001111110 45,000-job 1 -111001111110 big-sister 1 -111001111110 U.K.-listed 1 -111001111110 452,000-unit 1 -111001111110 1,159,000-unit 1 -111001111110 1,517,000-unit 1 -111001111110 1,597,000-unit 1 -111001111110 Polish-Lithuanian 1 -111001111110 percentage-change 1 -111001111110 superconductor-advisory 1 -111001111110 pre-tour 1 -111001111110 city-for-city 1 -111001111110 pre-medical 1 -111001111110 participative-type 1 -111001111110 proforma 1 -111001111110 once-insular 1 -111001111110 pink-granite 1 -111001111110 483,000-unit 1 -111001111110 1,092,000-unit 1 -111001111110 purchase-of-assets 1 -111001111110 pre-IND 1 -111001111110 Sbarbaro 1 -111001111110 half-billion-to-billion-dollar 1 -111001111110 752-108 1 -111001111110 disharmonious 1 -111001111110 one-chairman 1 -111001111110 380-pound 1 -111001111110 conspiracy-fraud 1 -111001111110 premoistened 1 -111001111110 30-cent-a-unit 1 -111001111110 712,000-unit 1 -111001111110 situation-by-situation 1 -111001111110 security-to-security 1 -111001111110 doctor-tight 1 -111001111110 313,400 1 -111001111110 380-million-mark 1 -111001111110 37.29-point 1 -111001111110 PLO-run 1 -111001111110 round-turn 1 -111001111110 legislature-appointed 1 -111001111110 cost-per-mile 1 -111001111110 education-conscious 1 -111001111110 JWT-owned 1 -111001111110 182.24-point 1 -111001111110 50,000-circulation 1 -111001111110 2.2-million-share 1 -111001111110 GNP-weighted 1 -111001111110 long-secret 1 -111001111110 government-operations 1 -111001111110 Hanover-area 1 -111001111110 late-return 1 -111001111110 68.86-point 1 -111001111110 performance-tied 1 -111001111110 86-12 1 -111001111110 sports-rights 1 -111001111110 roundlot 1 -111001111110 primary-share 1 -111001111110 749-to-702 1 -111001111110 go-go-go 1 -111001111110 currency-conversion 1 -111001111110 1,051-to-420 1 -111001111110 1,058-416 1 -111001111110 151.69-point 1 -111001111110 715,000-unit 1 -111001111110 Bihar 1 -111001111110 Revolutionary-era 1 -111001111110 medical-policy 1 -111001111110 dry-run 1 -111001111110 175,000-ton 1 -111001111110 per-transaction 1 -111001111110 lot-by-lot 1 -111001111110 limited-risk 1 -111001111110 mining-related 1 -111001111110 per-job 1 -111001111110 Rubbian 1 -111001111110 five-foot-high 1 -111001111110 93.75-cent 1 -111001111110 principal-to-principal 1 -111001111110 seven-goal 1 -111001111110 583,000-unit 1 -111001111110 1,225,000-unit 1 -111001111110 1,808,000-unit 1 -111001111110 per-prisoner 1 -111001111110 REFURBISHED 1 -111001111110 13.92-point 1 -111001111110 600-to-30 1 -111001111110 Kelantan 1 -111001111110 Edmonton-to-Washington 1 -111001111110 44.76-point 1 -111001111110 32.20-point 1 -111001111110 1,299,000-unit 1 -111001111110 lowest-ranking 1 -111001111110 14member 1 -111001111110 machine-by-machine 1 -111001111110 hazardous-duty 1 -111001111110 less-than-stately 1 -111001111110 cent-per-kilowatt-hour 1 -111001111110 Young-installed 1 -111001111110 plainclothed 1 -111001111110 Mobil-owned 1 -111001111110 Parade-type 1 -111001111110 523,000-unit 1 -111001111110 1,226,000-unit 1 -111001111110 3,700-square-foot 1 -111001111110 poke-along 1 -111001111110 price-per-performance 1 -111001111110 time-and-cost 1 -111001111110 Marxist-trained 1 -111001111110 dime-a-share 1 -111001111110 5-mark 1 -111001111110 union-organization 1 -111001111110 two-to-four-point 1 -111001111110 5-to-3 1 -111001111110 500-dollar 1 -111001111110 443,000-unit 1 -111001111110 1,222,000-unit 1 -111001111110 nation-by-nation 1 -111001111110 650,000-unit 1 -111001111110 vassal 1 -111001111110 26,000-line 1 -111001111110 Monday-evening 1 -111001111110 cost-comparison 1 -111001111110 drug-dependency 1 -111001111110 least-populous 1 -111001111110 propellant-mixing 1 -111001111110 25-win 1 -111001111110 10-unit 1 -111001111110 cost-plus-fee 1 -111001111110 50.90-point 1 -111001111110 termite-infested 1 -111001111110 membership-subscriber 1 -111001111110 FOURFOLD 1 -111001111110 128-point 1 -111001111110 P-63 1 -111001111110 Democractic-controlled 1 -111001111110 1,598,000-unit 1 -111001111110 profit-eroding 1 -111001111110 133-116 1 -111001111110 validation-and-registration 1 -111001111110 middle-line 1 -111001111110 soap-factory 1 -111001111110 1.50-point 1 -111001111110 divestiture-related 1 -111001111110 1,613,000-unit 1 -111001111110 1,087,000 1 -111001111110 religious-cum-political 1 -111001111110 two-vote 1 -111001111110 second-most-expensive 1 -111001111110 more-legalistic 1 -111001111110 freeway-laced 1 -111001111110 fiber-only 1 -111001111110 1,090,000-unit 1 -111001111110 uncoveted 1 -111001111110 stock-type 1 -111001111110 300-image 1 -111001111110 Coniston-nominated 1 -111001111110 nonadvertising 1 -111001111110 291-point 1 -111001111110 1,554,000-unit 1 -111001111110 1,176,000-unit 1 -111001111110 378,000-unit 1 -111001111110 prearranged-trading 1 -111001111110 black-card 1 -111001111110 show-by-show 1 -111001111110 Magnatek 1 -111001111110 22.94-point 1 -111001111110 dog-powered 1 -111001111110 12-mark 1 -111001111110 all-California 1 -111001111110 sports-and-entertainment 1 -111001111110 82-18 1 -111001111110 more-prevalent 1 -111001111110 cent-a-trade 1 -111001111110 just-expired 1 -111001111110 20,000-circulation 1 -111001111110 25,000-circulation 1 -111001111110 harlequin 1 -111001111110 home-district 1 -111001111110 two-million-plus 1 -111001111110 8.20-cents-a-pound 1 -111001111110 HIGH-TONED 1 -111001111110 cash-before-delivery 1 -111001111110 CIBB 1 -111001111110 25-second 1 -111001111110 10-to-9 1 -111001111110 per-passenger 1 -111001111110 Solidarity-like 1 -111001111110 10-issue 1 -111001111110 majority-ownership 1 -111001111110 PLO-dominated 1 -111001111110 sub-20 1 -111001111110 day-for-day 1 -111001111110 777-618 1 -111001111110 653,000-unit 1 -111001111110 half-column 1 -111001111110 shipment-by-shipment 1 -111001111110 fast-balling 1 -111001111110 non-negligence 1 -111001111110 47-45 1 -111001111110 four-judge 1 -111001111110 fishery-promotion 1 -111001111110 588,000-unit 1 -111001111110 7.5-cents-a-share 1 -111001111110 Spanish-and-English 1 -111001111110 1,002,000-unit 1 -111001111110 royalty-bearing 1 -111001111110 618,000-ounce 1 -111001111110 back-street 1 -111001111110 per-employee 1 -111001111110 military-police 1 -111001111110 29-story 1 -111001111110 extraordianry 1 -111001111110 trade-by-trade 1 -111001111110 three-arbitrator 1 -111001111110 patient-to-patient 1 -111001111110 sugar-pill 1 -111001111110 well-furnished 1 -111001111110 288-134 1 -111001111110 market-weighted 1 -111001111110 loan-loss-provision 1 -111001111110 804-766 1 -111001111110 3,000-vote 1 -111001111110 99.79-point 1 -111001111110 677,000-unit 1 -111001111110 726-to-711 1 -111001111110 lease-contract 1 -111001111110 63-cent-a-share 1 -111001111110 status-sensitive 1 -111001111110 crime-investigating 1 -111001111110 63.98-point 1 -111001111110 similar-style 1 -111001111110 tire-pressure 1 -111001111110 2.77-cent 1 -111001111110 advance-disposal 1 -111001111110 1,098,000-unit 1 -111001111110 1,384,000-unit 1 -111001111110 1,489,000-unit 1 -111001111110 246-167 1 -111001111110 470,400-share 1 -111001111110 50-student 1 -111001111110 dairyland 1 -111001111110 22-vote 1 -111001111110 less-embarrassing 1 -111001111110 non-diluted 1 -111001111110 40.84-point 1 -111001111110 293-114 1 -111001111110 drought-seared 1 -111001111110 management-dominated 1 -111001111110 shareholder-elected 1 -111001111110 hyperanimated 1 -111001111110 planning-board 1 -111001111110 Iacocca-size 1 -111001111110 hastily-arranged 1 -111001111110 direct-deposit 1 -111001111110 negotiated-fee 1 -111001111110 274-152 1 -111001111110 politicalaction 1 -111001111110 batch-by-batch 1 -111001111110 spending-money 1 -111001111110 65-win 1 -111001111110 price-per-kilowatt 1 -111001111110 10-director 1 -111001111110 county-council 1 -111001111110 14.5-cent 1 -111001111110 cost-plus-award-fee 1 -111001111110 film-by-film 1 -111001111110 1,469,000-unit 1 -111001111110 1,110,000-unit 1 -111001111110 1,639,000-unit 1 -111001111110 low-emission 1 -111001111110 109,000-job 1 -111001111110 263,000-job 1 -111001111110 testimony-review 1 -111001111110 litigation-contingency 1 -111001111110 rack-and-pinon 1 -111001111110 72-yard 1 -111001111110 274-137 1 -111001111110 9.2mark 1 -111001111110 5.33-cent-a-decatherm 1 -111001111110 113-point 1 -111001111110 1617 1 -111001111110 35-13 2 -111001111110 nonmathematical 2 -111001111110 491,000-unit 2 -111001111110 securities-analyst 2 -111001111110 5/8-point 2 -111001111110 virgin-soil 2 -111001111110 comparably-equipped 2 -111001111110 Alagoan 2 -111001111110 minute-to-minute 2 -111001111110 498,000-unit 2 -111001111110 59-yard 2 -111001111110 one-for-six 2 -111001111110 fundamentalist-controlled 2 -111001111110 still-undecided 2 -111001111110 pilot-plant 2 -111001111110 21.5-million-barrel 2 -111001111110 Hama-style 2 -111001111110 debt-repurchase 2 -111001111110 takings-clause 2 -111001111110 red-nosed 2 -111001111110 17-cent-a-share 2 -111001111110 guitar-shaped 2 -111001111110 jute-mill 2 -111001111110 product-licensing 2 -111001111110 ethnic-Chinese 2 -111001111110 10.05-point 2 -111001111110 patient-advocacy 2 -111001111110 collect-on-delivery 2 -111001111110 business-card 2 -111001111110 non-judgmental 2 -111001111110 casualty-loss 2 -111001111110 lefthanded 2 -111001111110 Dutch-language 2 -111001111110 200-strong 2 -111001111110 weak-minded 2 -111001111110 man-on-the-street 2 -111001111110 risk-return 2 -111001111110 full-month 2 -111001111110 straight-time 2 -111001111110 73-19 2 -111001111110 post-graduation 2 -111001111110 community-property 2 -111001111110 brand-by-brand 2 -111001111110 270-pound 2 -111001111110 seven-seat 2 -111001111110 22-cent-a-share 2 -111001111110 727-vote 2 -111001111110 nonmaterial 2 -111001111110 hiring-discrimination 2 -111001111110 20-hour-a-day 2 -111001111110 post-midnight 2 -111001111110 wheat-producing 2 -111001111110 12-yard 2 -111001111110 per-game 2 -111001111110 post-issue 2 -111001111110 historic-cost 2 -111001111110 once-depressed 2 -111001111110 stronger-than-usual 2 -111001111110 retail-office 2 -111001111110 35-cent 2 -111001111110 free-care 2 -111001111110 daily-selling-rate 2 -111001111110 daily-rate 2 -111001111110 264-153 2 -111001111110 chamber-of-commerce 2 -111001111110 comparative-store 2 -111001111110 customs-cleared 2 -111001111110 land-preservation 2 -111001111110 factory-financed 2 -111001111110 12-seat 2 -111001111110 no-limit 2 -111001111110 non-controlling 2 -111001111110 per-car 2 -111001111110 16-cent-a-share 2 -111001111110 public-fund 2 -111001111110 quarter-percentage-point 2 -111001111110 union-sponsored 2 -111001111110 60-member 2 -111001111110 534,000-unit 2 -111001111110 profit-splitting 2 -111001111110 Louvres 2 -111001111110 7-to-1 2 -111001111110 pre-colonial 2 -111001111110 23-nation 2 -111001111110 chinchilla 2 -111001111110 65-member 2 -111001111110 product-design 2 -111001111110 dress-code 2 -111001111110 flight-by-flight 3 -111001111110 price-committee 3 -111001111110 three-justice 3 -111001111110 ministerial-level 3 -111001111110 sixth-grade 3 -111001111110 phone-line 3 -111001111110 Watergate-style 3 -111001111110 nonactive 3 -111001111110 illegal-alien 3 -111001111110 rock-climbing 3 -111001111110 current-cost-of-supplies 3 -111001111110 two-floor 3 -111001111110 customs-clearance 3 -111001111110 million-dollar-a-year 3 -111001111110 long-scheduled 3 -111001111110 sheep-producing 3 -111001111110 piece-by-piece 3 -111001111110 7-to-5 3 -111001111110 fatality-review 3 -111001111110 need-to-know 3 -111001111110 Soviet-run 3 -111001111110 replacement-cost 3 -111001111110 construction-loan 3 -111001111110 business-administration 3 -111001111110 50/50 3 -111001111110 31-member 3 -111001111110 GE-Roper 3 -111001111110 150-point 3 -111001111110 government-contracts 3 -111001111110 Ouija 3 -111001111110 company-by-company 3 -111001111110 space-available 3 -111001111110 sidebar 3 -111001111110 Teutonic 3 -111001111110 post-marketing 3 -111001111110 six-unit 3 -111001111110 401k 3 -111001111110 product-related 3 -111001111110 mine-by-mine 3 -111001111110 law-based 3 -111001111110 10-mark 3 -111001111110 15-person 3 -111001111110 more-conventional 4 -111001111110 high-stress 4 -111001111110 per-episode 4 -111001111110 Drexel-sponsored 4 -111001111110 community-oriented 4 -111001111110 two-nation 4 -111001111110 EC-U.S. 4 -111001111110 gushy 4 -111001111110 straight-A 4 -111001111110 five-judge 4 -111001111110 30-member 4 -111001111110 telescopic 4 -111001111110 six-cent 4 -111001111110 nine-person 4 -111001111110 boom-town 4 -111001111110 vegetative 4 -111001111110 distributive 4 -111001111110 six-cent-a-share 4 -111001111110 too-high 4 -111001111110 schmaltzy 4 -111001111110 bi-weekly 4 -111001111110 current-value 4 -111001111110 per-subscriber 5 -111001111110 taxloss 5 -111001111110 pink-cheeked 5 -111001111110 blow-by-blow 5 -111001111110 32-point 5 -111001111110 sales-weighted 5 -111001111110 late-September 5 -111001111110 drunken-driving 5 -111001111110 nine-seat 5 -111001111110 plant-by-plant 5 -111001111110 500,000-share 5 -111001111110 prorata 5 -111001111110 stock-selection 5 -111001111110 smaller-than-usual 5 -111001111110 still-robust 5 -111001111110 40-member 5 -111001111110 pro-regulatory 5 -111001111110 corporate-level 5 -111001111110 two-member 5 -111001111110 human-relations 5 -111001111110 worthier 6 -111001111110 smooth-talking 6 -111001111110 total-return 6 -111001111110 25-cent-a-share 6 -111001111110 one-by-one 6 -111001111110 European-wide 6 -111001111110 Shultz-Shevardnadze 6 -111001111110 premerger 6 -111001111110 15-cent-a-share 7 -111001111110 400-pound 7 -111001111110 franked 7 -111001111110 high-crime 7 -111001111110 25-minute 7 -111001111110 per-issue 7 -111001111110 pre-med 7 -111001111110 unrecorded 7 -111001111110 10-man 7 -111001111110 world-record 7 -111001111110 company-run 7 -111001111110 still-pending 7 -111001111110 market-by-market 8 -111001111110 pooling-of-interest 8 -111001111110 per-diem 8 -111001111110 get-acquainted 9 -111001111110 16-member 9 -111001111110 40-cent 9 -111001111110 day-by-day 9 -111001111110 Russian-language 9 -111001111110 passive-activity 9 -111001111110 polka-dot 10 -111001111110 10-state 10 -111001111110 Europewide 10 -111001111110 more-generous 10 -111001111110 project-by-project 10 -111001111110 pro-rated 10 -111001111110 bad-loan 11 -111001111110 princely 11 -111001111110 going-away 12 -111001111110 first-name 12 -111001111110 employer-paid 12 -111001111110 quasi-public 13 -111001111110 calendar-year 13 -111001111110 70-30 13 -111001111110 dollar-for-dollar 14 -111001111110 five-person 14 -111001111110 merger-related 14 -111001111110 23-member 14 -111001111110 cast-iron 14 -111001111110 pooling-of-interests 15 -111001111110 performance-based 16 -111001111110 company-wide 16 -111001111110 noncash 16 -111001111110 six-person 16 -111001111110 nondiscriminatory 16 -111001111110 three-person 16 -111001111110 historical-cost 18 -111001111110 20-member 18 -111001111110 21-member 18 -111001111110 Pan-European 19 -111001111110 cross-town 19 -111001111110 one-to-one 19 -111001111110 22-member 20 -111001111110 cost-plus 20 -111001111110 state-appointed 20 -111001111110 semi-annual 22 -111001111110 consultative 22 -111001111110 graphical 24 -111001111110 17-member 25 -111001111110 pre-merger 26 -111001111110 1-for-1 26 -111001111110 pro-forma 27 -111001111110 10-cent 27 -111001111110 crosstown 28 -111001111110 second-year 28 -111001111110 share-for-share 29 -111001111110 G-5 29 -111001111110 25-cent 30 -111001111110 plenary 32 -111001111110 current-cost 32 -111001111110 fully-diluted 35 -111001111110 14-member 36 -111001111110 preferred-share 37 -111001111110 10-member 37 -111001111110 quid 38 -111001111110 blue-ribbon 38 -111001111110 four-member 41 -111001111110 government-appointed 45 -111001111110 non-recurring 45 -111001111110 non-operating 45 -111001111110 one-for-one 51 -111001111110 15-member 53 -111001111110 12-member 53 -111001111110 13-member 57 -111001111110 non-cash 59 -111001111110 weekly-average 69 -111001111110 pro-rata 70 -111001111110 nine-member 77 -111001111110 six-member 79 -111001111110 ministerial 90 -111001111110 face-to-face 91 -111001111110 three-member 102 -111001111110 onetime 109 -111001111110 closed-door 109 -111001111110 seven-member 113 -111001111110 common-stock 118 -111001111110 low-level 126 -111001111110 five-member 128 -111001111110 case-by-case 137 -111001111110 semiannual 159 -111001111110 three-judge 171 -111001111110 supplemental 182 -111001111110 nonrecurring 313 -111001111110 high-level 332 -111001111110 tax-loss 353 -111001111110 dissident 569 -111001111110 hefty 751 -111001111110 controlling 1167 -111001111110 one-time 1434 -111001111110 minority 2203 -111001111110 special 7535 -111001111110 regular 2219 -111001111111 federal-income 1 -111001111111 flat-to-lower 1 -111001111111 smaller-than-normal 1 -111001111111 television-making 1 -111001111111 economy-destroying 1 -111001111111 growth-damaging 1 -111001111111 anti-wealth 1 -111001111111 50-bed 1 -111001111111 federal-excise 1 -111001111111 airtransportation 1 -111001111111 floriferous 1 -111001111111 hydrocracker 1 -111001111111 refrigerator-making 1 -111001111111 steam-heating 1 -111001111111 muni-related 1 -111001111111 post-Smiley 1 -111001111111 fresh-stream 1 -111001111111 wine-import 1 -111001111111 Blagoveshchenka 1 -111001111111 not-so-successful 1 -111001111111 Ballooning 1 -111001111111 consumer-based 1 -111001111111 miscounting 1 -111001111111 communist-infiltrated 1 -111001111111 wide-base 1 -111001111111 non-equine 1 -111001111111 half-a-percent 1 -111001111111 sub-minimum 1 -111001111111 loss-riddled 1 -111001111111 larger-than-justified 1 -111001111111 349-seat 1 -111001111111 GMUAW 1 -111001111111 wage-withholding 1 -111001111111 partially-owned 1 -111001111111 Democratically-crafted 1 -111001111111 unearned-income 1 -111001111111 45-cents-a-pound 1 -111001111111 76-seat 1 -111001111111 incentive-killing 1 -111001111111 incurrred 1 -111001111111 textile-bill 1 -111001111111 five-rate 1 -111001111111 probate-related 1 -111001111111 flatlander 1 -111001111111 generation-skipping-transfer 1 -111001111111 18,187 1 -111001111111 five-cent-a-gallon 1 -111001111111 Eskimo-owned 1 -111001111111 property-oriented 1 -111001111111 unclimbed 1 -111001111111 nex 1 -111001111111 sexiest-sounding 1 -111001111111 hotel-bed 1 -111001111111 property-company 1 -111001111111 lowest-discount 1 -111001111111 business-profits 1 -111001111111 cartoon-making 1 -111001111111 folk-medicine 1 -111001111111 Packwood-Rostenkowski 1 -111001111111 Kemp-Kasten 1 -111001111111 pre-20th 1 -111001111111 over-the-cap 1 -111001111111 smaller-than-hoped-for 1 -111001111111 800-mg. 1 -111001111111 financial-publishing 1 -111001111111 three-and-one-half 1 -111001111111 Superfund-excise 1 -111001111111 1,487,000 1 -111001111111 1,098,000 1 -111001111111 feistiest 1 -111001111111 Whig-dominated 1 -111001111111 large-lipped 1 -111001111111 import-incentive 1 -111001111111 69,814 1 -111001111111 later-divested 1 -111001111111 once-respectable 1 -111001111111 Blackboard 1 -111001111111 worker-tight 1 -111001111111 word-weary 1 -111001111111 bonus-and 1 -111001111111 already-paper-thin 1 -111001111111 freedom-endorsing 1 -111001111111 deferred-item 1 -111001111111 pre-revision 1 -111001111111 strike-adjusted 1 -111001111111 pre-consumption 1 -111001111111 Reagan-Kemp-Roth 1 -111001111111 just-revised 1 -111001111111 leakiest 1 -111001111111 forced-saving 1 -111001111111 profit-linked 1 -111001111111 courtlier 1 -111001111111 10,000-employee 1 -111001111111 Social-Security 1 -111001111111 230-store 1 -111001111111 Kennedy-Simpson 1 -111001111111 firm-National 1 -111001111111 alternative-minimum 1 -111001111111 Uganda-born 1 -111001111111 HERS 1 -111001111111 half-a-loaf 1 -111001111111 market-hog 1 -111001111111 Treasury-wide 1 -111001111111 firstyear 1 -111001111111 first-bracket 1 -111001111111 Penn-Central 1 -111001111111 no-hit 1 -111001111111 Liberal-controlled 1 -111001111111 two-cents-a-pack 1 -111001111111 90-hour 1 -111001111111 crawl-through-the-bushes 1 -111001111111 branch-profits 1 -111001111111 Liberal-dominated 1 -111001111111 loophole-littered 1 -111001111111 bottomtier 1 -111001111111 Duluth-based 1 -111001111111 high-incentive 1 -111001111111 End-of-quarter 1 -111001111111 broadstroke 1 -111001111111 cost-of-goods 2 -111001111111 AEWR 2 -111001111111 less-than-dazzling 2 -111001111111 spunoff 2 -111001111111 10-week-old 2 -111001111111 brake-fluid 2 -111001111111 20-percentage-point 2 -111001111111 revenue-maximizing 2 -111001111111 floor-level 2 -111001111111 flat-fee 2 -111001111111 recuperative 2 -111001111111 penny-a-share 2 -111001111111 stock-earnings 2 -111001111111 witholding 2 -111001111111 trade-closing 2 -111001111111 full-range 2 -111001111111 securities-information 2 -111001111111 0.0625 2 -111001111111 nonimmigrant 2 -111001111111 mimimum 2 -111001111111 cavity-causing 2 -111001111111 Reagan-backed 2 -111001111111 zero-return 2 -111001111111 historic-rehabilitation 2 -111001111111 retirement-earnings 2 -111001111111 income-fund 2 -111001111111 suction-like 2 -111001111111 submergence 2 -111001111111 coals-to-Newcastle 2 -111001111111 fuel-management 2 -111001111111 once-commanding 2 -111001111111 Hammerhead 2 -111001111111 three-shot 2 -111001111111 thousandth 2 -111001111111 multiphase 3 -111001111111 high-enough 3 -111001111111 claylike 3 -111001111111 100-hour 3 -111001111111 valueadded 3 -111001111111 vapor-control 3 -111001111111 fringe-benefits 3 -111001111111 capitalgains 3 -111001111111 learning-curve 3 -111001111111 60-cent-a-gallon 3 -111001111111 multi-tiered 3 -111001111111 tax-break 3 -111001111111 state-and-local 3 -111001111111 too-low 3 -111001111111 gross-receipts 3 -111001111111 site-by-site 3 -111001111111 paid-diversion 3 -111001111111 123-year-old 3 -111001111111 emission-system 3 -111001111111 1,582,000 3 -111001111111 1,472,000 3 -111001111111 consumption-based 3 -111001111111 terms-of-trade 4 -111001111111 constant-dollar 4 -111001111111 MaxSaver-type 4 -111001111111 fainter 4 -111001111111 Technicare 4 -111001111111 Alaska-natives 4 -111001111111 stock-transaction 4 -111001111111 half-trillion-dollar 4 -111001111111 Simpson-Rodino 4 -111001111111 outside-director 4 -111001111111 9-to-1 4 -111001111111 trackless 4 -111001111111 900-number 5 -111001111111 five-digit 5 -111001111111 marketbasket 5 -111001111111 25-cent-an-hour 5 -111001111111 half-percent 5 -111001111111 Maxsaver 5 -111001111111 new-hire 5 -111001111111 tell-tale 5 -111001111111 9-to-6 5 -111001111111 1970-71 6 -111001111111 windfall-profit 6 -111001111111 nontransferable 6 -111001111111 mid-contract 6 -111001111111 Kemp-Roth 6 -111001111111 red-carpet 6 -111001111111 government-set 6 -111001111111 granular 7 -111001111111 blood-alcohol 7 -111001111111 gross-profit 7 -111001111111 gas-guzzler 7 -111001111111 more-favorable 7 -111001111111 mail-in 7 -111001111111 200-point 7 -111001111111 last-resort 8 -111001111111 sub-zero 8 -111001111111 life-sustaining 9 -111001111111 17-point 10 -111001111111 nine-digit 10 -111001111111 cut-off 10 -111001111111 generation-skipping 10 -111001111111 crazy-quilt 10 -111001111111 soon-to-expire 10 -111001111111 earned-income 10 -111001111111 capital-gain 11 -111001111111 9-to-5 11 -111001111111 full-coach 11 -111001111111 three-to-one 11 -111001111111 Tacit 11 -111001111111 two-to-one 11 -111001111111 millionth 13 -111001111111 undivided 13 -111001111111 checkerboard 13 -111001111111 net-worth 14 -111001111111 50-cent 14 -111001111111 non-deductible 14 -111001111111 output-based 15 -111001111111 record-high 15 -111001111111 cents-off 16 -111001111111 nitty-gritty 16 -111001111111 ejection 16 -111001111111 subminimum 16 -111001111111 3-to-2 16 -111001111111 scaled-back 17 -111001111111 4-to-1 17 -111001111111 power-train 17 -111001111111 supersaver 19 -111001111111 diesel-fuel 19 -111001111111 personal-income 19 -111001111111 seven-figure 20 -111001111111 flat-rate 20 -111001111111 strictest 21 -111001111111 Bicentennial 23 -111001111111 risk-based 23 -111001111111 windfall-profits 25 -111001111111 non 36 -111001111111 3-to-1 39 -111001111111 unitary 45 -111001111111 six-figure 61 -111001111111 Smoot-Hawley 65 -111001111111 allowable 99 -111001111111 2-to-1 105 -111001111111 lump 136 -111001111111 MaxSaver 137 -111001111111 360-day 139 -111001111111 365-day 139 -111001111111 preferential 160 -111001111111 first-year 161 -111001111111 two-tier 175 -111001111111 break-even 195 -111001111111 value-added 217 -111001111111 statutory 239 -111001111111 excise 273 -111001111111 nominal 386 -111001111111 withholding 501 -111001111111 marginal 617 -111001111111 capital-gains 701 -111001111111 typical 1261 -111001111111 maximum 1582 -111001111111 full 6817 -111001111111 minimum 2934 -11101000 Hawaii-Guam 1 -11101000 already-depleted 1 -11101000 DAP. 1 -11101000 CITES. 1 -11101000 pipleline 1 -11101000 Japanense 1 -11101000 anti-estrogen 1 -11101000 still-wide 1 -11101000 public-administration 1 -11101000 Value-Added 1 -11101000 1,128-page 1 -11101000 industry-oriented 1 -11101000 post-Solidarity 1 -11101000 H.M.A.S. 1 -11101000 ungolden 1 -11101000 pigment-churning 1 -11101000 ex-FBI 1 -11101000 anti-Managua 1 -11101000 N.K. 1 -11101000 much-misunderstood 1 -11101000 still-burgeoning 1 -11101000 then-limited 1 -11101000 Bork/Ginsburg 1 -11101000 Israeli-Iran 1 -11101000 AFLCIO. 1 -11101000 Meghauly 1 -11101000 Ondes 1 -11101000 OSHA-set 1 -11101000 CBO. 1 -11101000 berobed 1 -11101000 Kellogg-Briand 1 -11101000 recently-vetoed 1 -11101000 Labor-affiliated 1 -11101000 bank-insuring 1 -11101000 VDMA 1 -11101000 PTA. 1 -11101000 thrift-owned 1 -11101000 GM-Ford 1 -11101000 defense-fund 1 -11101000 export-is-everything 1 -11101000 U.S./Canada 1 -11101000 unpedigreed 1 -11101000 out-of-kilter 1 -11101000 adult-toy 1 -11101000 KMU. 1 -11101000 new-styled 1 -11101000 IPO. 1 -11101000 U-Save 1 -11101000 Vigo 1 -11101000 Ultracel 1 -11101000 ITC. 1 -11101000 P-47 1 -11101000 Japanese-Chinese 1 -11101000 Sidel-Braniff 1 -11101000 then-secret 2 -11101000 strong-selling 2 -11101000 NAFTA 2 -11101000 300,000-square-foot 2 -11101000 more-accessible 2 -11101000 summer-stock 2 -11101000 center-field 2 -11101000 exercise-equipment 2 -11101000 Nonlethal 2 -11101000 UAW. 2 -11101000 USIA. 2 -11101000 once-lucrative 2 -11101000 now-ailing 2 -11101000 u.s. 2 -11101000 Wayn-Tex 2 -11101000 CD. 2 -11101000 Soviet-Cuban 2 -11101000 7-Nation 2 -11101000 Scimitar 2 -11101000 Xicheng 2 -11101000 nonaccountable 2 -11101000 lithium-iron-sulphide 2 -11101000 Socialist-dominated 2 -11101000 Banif 2 -11101000 Allens 2 -11101000 38-nation 2 -11101000 Eurofranc 2 -11101000 Mogadishu 2 -11101000 Optic-Electronic 2 -11101000 Pontdrif 2 -11101000 Old-Time 2 -11101000 Dantos 2 -11101000 coat-and-tie 2 -11101000 Sumptuous 2 -11101000 EC-approved 2 -11101000 TF-1 2 -11101000 McEvoy-Willis 2 -11101000 now-abandoned 3 -11101000 ACLU. 3 -11101000 Undugu 3 -11101000 6350 3 -11101000 ADB. 3 -11101000 24th-largest 3 -11101000 U.S.-initiated 3 -11101000 Dawa 3 -11101000 Cherco 3 -11101000 Kiddicraft 3 -11101000 CCR 3 -11101000 CFTC. 3 -11101000 MEBA 3 -11101000 G-10 3 -11101000 FTC. 3 -11101000 Dip-Stick 3 -11101000 U.S.-Taiwan 3 -11101000 PC. 4 -11101000 Escondida 4 -11101000 Vneshekonobank 4 -11101000 1986-1988 4 -11101000 plumbing-products 4 -11101000 Texocom 4 -11101000 X.400 4 -11101000 104th 4 -11101000 Tenderloin 4 -11101000 NASD. 5 -11101000 Ikwezi 5 -11101000 Nazi-Soviet 5 -11101000 Rocketdyne 5 -11101000 Waterfront 5 -11101000 long-beleaguered 5 -11101000 Tutto 5 -11101000 FRELIMO 5 -11101000 Catawba 6 -11101000 15-carrier 6 -11101000 Tuna 6 -11101000 Multistate 6 -11101000 Puget-Columbia 6 -11101000 undelivered 7 -11101000 SPARC 7 -11101000 now-discontinued 7 -11101000 Northeast-Midwest 7 -11101000 Hitco 7 -11101000 EMT 8 -11101000 Maldives 8 -11101000 Intermediate-Range 8 -11101000 Surry 9 -11101000 Champs 9 -11101000 No.1 9 -11101000 Jerez 9 -11101000 Stanhope 9 -11101000 Lachmar 9 -11101000 1973-1974 10 -11101000 supersecret 10 -11101000 Detroit-Hamtramck 10 -11101000 9th 11 -11101000 PDF 12 -11101000 Meadowlands 12 -11101000 Aussie 14 -11101000 Lithuanian 14 -11101000 Ritz-Carlton 15 -11101000 IRS. 15 -11101000 LME 15 -11101000 FDA. 17 -11101000 FMLN 18 -11101000 CIA. 18 -11101000 SS 19 -11101000 FSLIC. 22 -11101000 Maoist 22 -11101000 unwary 23 -11101000 Bafokeng 24 -11101000 Talbots 25 -11101000 RT 48 -11101000 Yukon 50 -11101000 U.S 166 -11101000 U.S. 87492 -11101000 U.K. 1765 -1110100100 9,420,602 1 -1110100100 more-diversified 1 -1110100100 Fireflame 1 -1110100100 malachite-inlaid 1 -1110100100 tank-trailer-interior 1 -1110100100 A7-D 1 -1110100100 37,000-acre 1 -1110100100 Scandinavian-type 1 -1110100100 Cincinnati-bound 1 -1110100100 Shell-BP 1 -1110100100 well-disciplined 1 -1110100100 Euro-Swiss 1 -1110100100 Koury 1 -1110100100 Templeton/ 1 -1110100100 Templeton/Taft 1 -1110100100 388-store 1 -1110100100 T.T.Z. 1 -1110100100 679-bed 1 -1110100100 Kennelwood 1 -1110100100 once-passive 1 -1110100100 22-outlet 1 -1110100100 Mid-Bronx 1 -1110100100 110-passenger 1 -1110100100 fleetest 1 -1110100100 soft-headed 1 -1110100100 Hearst-funded 1 -1110100100 Kokusai-Hyatt 1 -1110100100 increasein 1 -1110100100 15,000-watt 1 -1110100100 NHK-Lear 1 -1110100100 Passionate 1 -1110100100 hydrant-shaped 1 -1110100100 188-room 1 -1110100100 ever-moving 1 -1110100100 27-paper 1 -1110100100 88-hotel 1 -1110100100 claustrophobia-causing 1 -1110100100 Fujitsu-controlled 1 -1110100100 Dugi 1 -1110100100 Newhouse-family 1 -1110100100 152nd 1 -1110100100 ex-Boston 1 -1110100100 Butterfinger 1 -1110100100 fifth-highest-paid 1 -1110100100 Chiriaco 1 -1110100100 Ryetown 1 -1110100100 27,000-acre 1 -1110100100 similarly-rated 1 -1110100100 bottom-dweller 1 -1110100100 20-restaurant 1 -1110100100 U.S.-Honda 1 -1110100100 Ferruzzi-Iniziativa 1 -1110100100 British-centered 1 -1110100100 4,786,500 1 -1110100100 Pajaro 1 -1110100100 Buy-Rite 1 -1110100100 29-branch 1 -1110100100 840-unit 1 -1110100100 Wuyou 1 -1110100100 sputtered-out 1 -1110100100 850,000-member 1 -1110100100 Tivoli-type 1 -1110100100 Saskatoon-based 2 -1110100100 Bangkok-based 2 -1110100100 quick-moving 2 -1110100100 once-threatened 2 -1110100100 loss-producing 2 -1110100100 151st 2 -1110100100 7,951-ton 2 -1110100100 89-unit 2 -1110100100 2-inch 2 -1110100100 short-hop 2 -1110100100 100-bed 2 -1110100100 lucractive 2 -1110100100 Finnish-Soviet 2 -1110100100 once-bitter 2 -1110100100 17,300 2 -1110100100 Darwin-based 2 -1110100100 thread-bare 2 -1110100100 Fairbanks-based 2 -1110100100 Binghamton-based 2 -1110100100 Clinchfield 2 -1110100100 Murdoch-controlled 2 -1110100100 Monaco-based 2 -1110100100 YF-23 2 -1110100100 closedend 2 -1110100100 IDC. 2 -1110100100 war-shattered 2 -1110100100 1,055 2 -1110100100 Pi 2 -1110100100 fast-devaluing 2 -1110100100 multitrillion-dollar 2 -1110100100 Autonetics 2 -1110100100 52-yard 2 -1110100100 Deserted 2 -1110100100 146-seat 2 -1110100100 photodegradable 2 -1110100100 bonus-eligible 2 -1110100100 then-troubled 2 -1110100100 now-bankrupt 2 -1110100100 drought-dried 2 -1110100100 YF-23A 2 -1110100100 supplemental-health 2 -1110100100 DFS/Dorland 2 -1110100100 star-quality 2 -1110100100 445-employee 2 -1110100100 black-run 2 -1110100100 UAP. 2 -1110100100 Perelman-controlled 2 -1110100100 2,100-store 2 -1110100100 Gannett-owned 2 -1110100100 counter-top 2 -1110100100 talcum 2 -1110100100 Kentucky-born 2 -1110100100 Belgian-based 2 -1110100100 CIA-chartered 2 -1110100100 U.S.-Spanish 2 -1110100100 Wallenberg-controlled 2 -1110100100 warm-blooded 2 -1110100100 Amarillo-based 2 -1110100100 Olympic-related 2 -1110100100 long-vanished 2 -1110100100 Groningen 2 -1110100100 development-bank 2 -1110100100 10,000-man 2 -1110100100 Irving-based 2 -1110100100 Florence-based 2 -1110100100 Tabloid 2 -1110100100 Buffalo-area 2 -1110100100 35-nation 2 -1110100100 Beijing-controlled 2 -1110100100 Berkeley-based 2 -1110100100 Santiago-based 2 -1110100100 scandal-scarred 2 -1110100100 anti-Vietnam 3 -1110100100 still-troubled 3 -1110100100 12,300 3 -1110100100 Swiss-owned 3 -1110100100 Bronfman-controlled 3 -1110100100 CIA-controlled 3 -1110100100 2,800-member 3 -1110100100 125-seat 3 -1110100100 Roltra 3 -1110100100 Pakistani-born 3 -1110100100 780-unit 3 -1110100100 Oregon-based 3 -1110100100 Rochester-based 3 -1110100100 cutting-tool 3 -1110100100 Norway-based 3 -1110100100 home-team 3 -1110100100 unquoted 3 -1110100100 Tobaccoville 3 -1110100100 cash-squeezed 3 -1110100100 145-year-old 3 -1110100100 Avenida 3 -1110100100 Goodday 3 -1110100100 2,000-store 3 -1110100100 government-linked 3 -1110100100 Lubbock-based 3 -1110100100 Auckland-based 3 -1110100100 least-cost 3 -1110100100 bottom-ranked 3 -1110100100 15-store 3 -1110100100 Colorado-based 3 -1110100100 Delware 3 -1110100100 Haft-controlled 3 -1110100100 then-small 3 -1110100100 6,500-member 3 -1110100100 Toledo-based 3 -1110100100 1,159 3 -1110100100 Greenwich-based 3 -1110100100 Axe 3 -1110100100 Burlington-based 3 -1110100100 European-American 3 -1110100100 Imperiled 3 -1110100100 Wienerschnitzel 3 -1110100100 then-ailing 3 -1110100100 700-room 3 -1110100100 Syracuse-based 3 -1110100100 Simon-led 3 -1110100100 British-Dutch 3 -1110100100 Khashoggi-controlled 3 -1110100100 Ravenna-based 4 -1110100100 Dusseldorf-based 4 -1110100100 130-seat 4 -1110100100 19-seat 4 -1110100100 Louisville-based 4 -1110100100 Omaha-based 4 -1110100100 Hawaii-based 4 -1110100100 LeBow-controlled 4 -1110100100 trade-book 4 -1110100100 Providence-based 4 -1110100100 Maxwell-controlled 4 -1110100100 Gourd 4 -1110100100 financially-troubled 4 -1110100100 42-store 4 -1110100100 Barcelona-based 4 -1110100100 Massachussets 4 -1110100100 Chicagobased 4 -1110100100 British-built 4 -1110100100 Cambridge-based 4 -1110100100 Anglo/Dutch 4 -1110100100 Buffalo-based 4 -1110100100 Tragic 4 -1110100100 then-Socialist 4 -1110100100 Delegate 4 -1110100100 Acadian 4 -1110100100 lead-manager 4 -1110100100 5-foot-7 4 -1110100100 now-canceled 4 -1110100100 French-controlled 4 -1110100100 once-ailing 4 -1110100100 Kentucky-based 4 -1110100100 Silesian 4 -1110100100 300-pound 4 -1110100100 600-member 4 -1110100100 Soviet-aligned 4 -1110100100 Kelly-Springfield 4 -1110100100 Edmonton-based 4 -1110100100 Monterrey-based 5 -1110100100 Swedish-Swiss 5 -1110100100 Socialist-led 5 -1110100100 Glasgow-based 5 -1110100100 CMA 5 -1110100100 Burbank-based 5 -1110100100 Hamburg-based 5 -1110100100 Korean-born 5 -1110100100 400-lawyer 5 -1110100100 Bosnian 5 -1110100100 Newark-based 5 -1110100100 Wilmington-based 5 -1110100100 Orlando-based 5 -1110100100 union-owned 5 -1110100100 family-held 5 -1110100100 GM-Toyota 5 -1110100100 once-bustling 5 -1110100100 Ecuadorian 5 -1110100100 Johannesburg-based 5 -1110100100 Curacao-based 5 -1110100100 province-owned 5 -1110100100 Felmont 5 -1110100100 island-hopping 6 -1110100100 Ghanaian 6 -1110100100 All-England 6 -1110100100 Dutch-Anglo 6 -1110100100 state-operated 6 -1110100100 Sacramento-based 6 -1110100100 Belzberg-controlled 6 -1110100100 debt-plagued 6 -1110100100 Nasdaq-listed 6 -1110100100 20,000-member 6 -1110100100 Southside 6 -1110100100 research-based 6 -1110100100 Shulton 6 -1110100100 Dayton-based 6 -1110100100 Cactus 6 -1110100100 Taiwan-based 6 -1110100100 family-dominated 6 -1110100100 Basel-based 6 -1110100100 London-listed 6 -1110100100 motor-freight 7 -1110100100 Fortunate 7 -1110100100 French-based 7 -1110100100 Bermuda-registered 7 -1110100100 Tulsa-based 7 -1110100100 Communist-dominated 7 -1110100100 Rome-based 7 -1110100100 Massachusetts-based 7 -1110100100 Portland-based 7 -1110100100 Oakland-based 7 -1110100100 Bronx-based 8 -1110100100 Hellenic 8 -1110100100 much-smaller 8 -1110100100 KIMS 8 -1110100100 121-year-old 8 -1110100100 Osaka-based 8 -1110100100 Bahrain-based 8 -1110100100 Minnesota-based 8 -1110100100 Anchorage-based 8 -1110100100 Tampa-based 8 -1110100100 Madrid-based 9 -1110100100 once-sleepy 9 -1110100100 Manhattan-based 9 -1110100100 55-gallon 9 -1110100100 Michigan-based 9 -1110100100 British-American 10 -1110100100 government-held 10 -1110100100 Hunt-held 10 -1110100100 Turin-based 10 -1110100100 Belgium-based 10 -1110100100 Japanese-based 10 -1110100100 Nashville-based 10 -1110100100 once-booming 10 -1110100100 Dublin-based 10 -1110100100 Oslo-based 10 -1110100100 101st 10 -1110100100 Washingtonian 11 -1110100100 Manchester-based 11 -1110100100 Dutch-based 11 -1110100100 Perth-based 11 -1110100100 Melbourne-based 12 -1110100100 Akron-based 12 -1110100100 quasi-private 12 -1110100100 Hartford-based 12 -1110100100 Darth 13 -1110100100 youth-oriented 13 -1110100100 Canadian-based 14 -1110100100 Richmond-based 14 -1110100100 Ireland-based 14 -1110100100 Amsterdam-based 14 -1110100100 Austin-based 14 -1110100100 Columbus-based 14 -1110100100 Tunisian 14 -1110100100 third-ranked 14 -1110100100 Memphis-based 15 -1110100100 Stockholm-based 15 -1110100100 Bituminous 16 -1110100100 closely-held 17 -1110100100 Frankfurt-based 17 -1110100100 Vienna-based 17 -1110100100 Connecticut-based 18 -1110100100 Utah-based 18 -1110100100 Virginia-based 18 -1110100100 Singapore-based 19 -1110100100 spun-off 19 -1110100100 Brussels-based 19 -1110100100 Liberian 19 -1110100100 Britain-based 19 -1110100100 Detroit-area 22 -1110100100 Ottawa-based 24 -1110100100 Netherlands-based 24 -1110100100 Sydney-based 25 -1110100100 Hugoton 25 -1110100100 U.K.-based 26 -1110100100 Flamingo 26 -1110100100 Munich-based 28 -1110100100 much-larger 28 -1110100100 Florida-based 30 -1110100100 Yugoslavian 30 -1110100100 acquisition-minded 30 -1110100100 family-controlled 33 -1110100100 Mid-Atlantic 33 -1110100100 Australian-based 35 -1110100100 Luxembourg-based 37 -1110100100 Milan-based 39 -1110100100 family-run 40 -1110100100 Zurich-based 43 -1110100100 Phoenix-based 44 -1110100100 Bahamian 45 -1110100100 Honolulu-based 46 -1110100100 Calgary-based 46 -1110100100 Japan-based 49 -1110100100 Swiss-based 51 -1110100100 debt-laden 58 -1110100100 Geneva-based 59 -1110100100 loss-plagued 60 -1110100100 Bavarian 63 -1110100100 Indianapolis-based 69 -1110100100 Bermuda-based 74 -1110100100 Australia-based 78 -1110100100 California-based 82 -1110100100 Vancouver-based 84 -1110100100 Anglo-Dutch 85 -1110100100 British-based 86 -1110100100 Nigerian 98 -1110100100 Baltimore-based 108 -1110100100 Milwaukee-based 110 -1110100100 Portuguese 111 -1110100100 Detroit-based 136 -1110100100 Finnish 153 -1110100100 Chilean 159 -1110100100 defunct 168 -1110100100 Indonesian 179 -1110100100 state-controlled 181 -1110100100 Tokyo-based 187 -1110100100 Danish 205 -1110100100 Malaysian 207 -1110100100 Venezuelan 216 -1110100100 U.S.-based 233 -1110100100 Thai 234 -1110100100 Hawaiian 241 -1110100100 Austrian 244 -1110100100 Hungarian 259 -1110100100 Cleveland-based 271 -1110100100 Philadelphia-based 282 -1110100100 Cincinnati-based 284 -1110100100 Paris-based 293 -1110100100 Miami-based 295 -1110100100 Seattle-based 297 -1110100100 Peruvian 303 -1110100100 government-owned 336 -1110100100 Denver-based 347 -1110100100 Montreal-based 369 -1110100100 Norwegian 385 -1110100100 Pittsburgh-based 396 -1110100100 Minneapolis-based 427 -1110100100 Argentine 439 -1110100100 Boston-based 442 -1110100100 Atlanta-based 454 -1110100100 Greek 499 -1110100100 Washington-based 694 -1110100100 Toronto-based 765 -1110100100 Belgian 786 -1110100100 Irish 794 -1110100100 Houston-based 857 -1110100100 Swedish 904 -1110100100 Dallas-based 904 -1110100100 Philippine 919 -1110100100 state-owned 924 -1110100100 Spanish 978 -1110100100 London-based 1077 -1110100100 Dutch 1183 -1110100100 Indian 1203 -1110100100 Brazilian 1293 -1110100100 Chicago-based 1365 -1110100100 Italian 1696 -1110100100 Mexican 1728 -1110100100 Swiss 2702 -1110100100 British 12994 -1110100100 French 5570 -11101001010 once-similar 1 -11101001010 mid-market 1 -11101001010 basic-product 1 -11101001010 91,696 1 -11101001010 computer-hacker 1 -11101001010 Japense 1 -11101001010 economy-wary 1 -11101001010 140-to-155 1 -11101001010 reinsurance-client 1 -11101001010 import-pressed 1 -11101001010 wattled 1 -11101001010 Kerensky 1 -11101001010 best-hedged 1 -11101001010 70.00 1 -11101001010 mark-short 1 -11101001010 racing-style 1 -11101001010 Arriva 1 -11101001010 backstreet 1 -11101001010 IBM-clone 1 -11101001010 FBI-organized 1 -11101001010 Yankee-fueled 1 -11101001010 tycoon-run 1 -11101001010 once-robust 1 -11101001010 Vaz 1 -11101001010 commercial-weary 1 -11101001010 125.80-to-126 1 -11101001010 maker-authorized 1 -11101001010 leerier 1 -11101001010 bankruptcy-bound 1 -11101001010 Bond-controlled 1 -11101001010 BOLD-BOLD 1 -11101001010 foreign-partner 1 -11101001010 Meese-Reynolds-Manion-Rehnquist 1 -11101001010 ceramic-fiber 1 -11101001010 139.50 1 -11101001010 government-computed 1 -11101001010 gasoline-fueled 1 -11101001010 chorus-line 1 -11101001010 hopsital 1 -11101001010 dairy-run 1 -11101001010 diving-equipment 1 -11101001010 progammable 1 -11101001010 140-145 1 -11101001010 yen-battered 1 -11101001010 extra-strength 1 -11101001010 158.00 1 -11101001010 end-of-November 1 -11101001010 bulk-commodity 1 -11101001010 Nabisco-type 1 -11101001010 state-influenced 1 -11101001010 car-cuffing 1 -11101001010 organized-labor 1 -11101001010 Safelite 1 -11101001010 tabloid-television 1 -11101001010 97,750-unit 1 -11101001010 1,317 1 -11101001010 marine-transport 1 -11101001010 associate-label 1 -11101001010 Caribbean-based 1 -11101001010 hold-out 1 -11101001010 mark-Japanese 1 -11101001010 harp-shaped 1 -11101001010 Philippine-based 1 -11101001010 one-in-six 1 -11101001010 auto-product 1 -11101001010 cookwear 1 -11101001010 54,270 1 -11101001010 outer-island 1 -11101001010 low-credibility 1 -11101001010 steel-radial 1 -11101001010 desert-bound 1 -11101001010 1,863 1 -11101001010 severable 1 -11101001010 delicious-looking 1 -11101001010 snoopy 1 -11101001010 domestic-retailing 1 -11101001010 non-Alaskan 1 -11101001010 fund-oriented 1 -11101001010 Gabelli-controlled 1 -11101001010 lesser-rank 1 -11101001010 first-sector 1 -11101001010 rock-strewn 1 -11101001010 applied-science 1 -11101001010 Palestinian-run 1 -11101001010 highest-capitalized 1 -11101001010 bean-counting 2 -11101001010 soverign 2 -11101001010 non-malpractice 2 -11101001010 Peridex 2 -11101001010 385-acre 2 -11101001010 status-symbol 2 -11101001010 mining-company 2 -11101001010 500-attorney 2 -11101001010 China-backed 2 -11101001010 China-owned 2 -11101001010 golden-yellow 2 -11101001010 inter-related 2 -11101001010 U.S.-induced 2 -11101001010 creditor-country 2 -11101001010 Labeling 2 -11101001010 Japanse 2 -11101001010 ORC 2 -11101001010 less-skilled 2 -11101001010 Wolfsburg-based 2 -11101001010 public-college 2 -11101001010 Boise-based 2 -11101001010 early-reporting 2 -11101001010 Malaysian-Chinese 2 -11101001010 137.00 2 -11101001010 nightime 2 -11101001010 liquor-industry 2 -11101001010 Zalga 2 -11101001010 Ghia 2 -11101001010 private-passenger 2 -11101001010 Brazilian-owned 2 -11101001010 RISC-chip 2 -11101001010 once-skeptical 2 -11101001010 stong 3 -11101001010 takeover-target 3 -11101001010 cone-shaped 3 -11101001010 soda-ash 3 -11101001010 conservative-minded 3 -11101001010 near-bankrupt 3 -11101001010 12-million 3 -11101001010 off-the-road 3 -11101001010 1,924 3 -11101001010 AAA-rated 3 -11101001010 Trans-Pacific 3 -11101001010 paste-up 3 -11101001010 commmercial 3 -11101001010 profit-driven 3 -11101001010 25-speed 3 -11101001010 CLS 3 -11101001010 male-bashing 3 -11101001010 student-run 3 -11101001010 Landless 3 -11101001010 four-legged 3 -11101001010 minority-run 4 -11101001010 Delaware-incorporated 4 -11101001010 mujahidin 4 -11101001010 stateowned 4 -11101001010 service/information 4 -11101001010 poky 4 -11101001010 Beijing-based 4 -11101001010 robotized 4 -11101001010 GE/RCA 5 -11101001010 electro-mechanical 5 -11101001010 Mexican-made 5 -11101001010 once-great 5 -11101001010 Type-A 5 -11101001010 journeymen 5 -11101001010 weight-conscious 5 -11101001010 Norges 6 -11101001010 liquefied-natural-gas 6 -11101001010 Japanese-car 6 -11101001010 yummy 7 -11101001010 nothing-down 7 -11101001010 U.S.-bound 7 -11101001010 Bahraini 8 -11101001010 Canadian-controlled 8 -11101001010 S&P-500 9 -11101001010 Bedouin 10 -11101001010 venture-backed 10 -11101001010 large-volume 10 -11101001010 144.55 10 -11101001010 Favored 11 -11101001010 142.95 11 -11101001010 Cuisinart 11 -11101001010 120.25 11 -11101001010 non-American 12 -11101001010 multiline 12 -11101001010 Communist-controlled 13 -11101001010 full-line 13 -11101001010 retail-oriented 13 -11101001010 Touareg 15 -11101001010 Kenyan 16 -11101001010 142.20 16 -11101001010 best-managed 17 -11101001010 Singaporean 18 -11101001010 small-cap 20 -11101001010 food-industry 23 -11101001010 Spetsnaz 31 -11101001010 deposit-taking 33 -11101001010 packaged-goods 45 -11101001010 U.S.-owned 49 -11101001010 foreign-owned 88 -11101001010 Burmese 96 -11101001010 Taiwanese 309 -11101001010 Vietnamese 349 -11101001010 multinational 394 -11101001010 Japanese 19179 -11101001010 Chinese 2271 -11101001011 composer/performance 1 -11101001011 five-ounce 1 -11101001011 1,715 1 -11101001011 fifth-century 1 -11101001011 barbituates 1 -11101001011 helicopter-manufacturing 1 -11101001011 1314 1 -11101001011 159,750,000 1 -11101001011 Low-fat 1 -11101001011 shoe-production 1 -11101001011 small-sum 1 -11101001011 Citifunds 1 -11101001011 then-strong 1 -11101001011 ill-boding 1 -11101001011 Booberry 1 -11101001011 mynah 1 -11101001011 handnote 1 -11101001011 refiner-use 1 -11101001011 air-treatment 1 -11101001011 Dap 1 -11101001011 securities-sales 1 -11101001011 reactor-safety 1 -11101001011 Glyn 1 -11101001011 pithiness 1 -11101001011 Chuchoholics 1 -11101001011 60-employee 1 -11101001011 Brieck 1 -11101001011 Barasch 1 -11101001011 Mistretta 1 -11101001011 telepathy 1 -11101001011 methacrylate 1 -11101001011 defaulter 1 -11101001011 aluminium-can 1 -11101001011 Hitlerdammerung 1 -11101001011 overstrong 1 -11101001011 short-fibered 1 -11101001011 SPEED-RATED 1 -11101001011 Genpak 1 -11101001011 healt-hcare 1 -11101001011 glass-fibers 1 -11101001011 fiber-kilometers 1 -11101001011 Struggler 1 -11101001011 major-crimes 1 -11101001011 Tisch-Buffett 1 -11101001011 auto-finance 1 -11101001011 portland 1 -11101001011 98-91 1 -11101001011 state-of-the-network-censor 1 -11101001011 automotive-carrier 1 -11101001011 then-23-year-old 1 -11101001011 nuclear-construction 1 -11101001011 Eleme 1 -11101001011 hydro-electricity 1 -11101001011 consumer/commercial-finance 1 -11101001011 break-car 1 -11101001011 Alaskan-North 1 -11101001011 Anglo-dominated 1 -11101001011 4525 1 -11101001011 Seas/Japan 1 -11101001011 IIHS 1 -11101001011 Chens 1 -11101001011 Dravidians 1 -11101001011 sodium-borohydride 1 -11101001011 kms 1 -11101001011 then-overvalued 1 -11101001011 antiterrorist 1 -11101001011 1971-through-1976 1 -11101001011 coca-eradication 1 -11101001011 Pause. 1 -11101001011 4524 1 -11101001011 Molycorp 1 -11101001011 Winnipeg-based 1 -11101001011 California-to-Texas 1 -11101001011 CIBI-school 1 -11101001011 environmental-systems 1 -11101001011 25.568 1 -11101001011 can-sized 1 -11101001011 Manufacturers/Chrysler 1 -11101001011 212-307-7171 1 -11101001011 bakery-cafe 1 -11101001011 controlled-rate 1 -11101001011 1647 1 -11101001011 army-led 1 -11101001011 December-settlement 1 -11101001011 Bulgarian-born 1 -11101001011 Lisbon-based 1 -11101001011 33.40 1 -11101001011 cafeteria/gymnasium 1 -11101001011 professional-car 1 -11101001011 commercial-bus 1 -11101001011 handsoff 1 -11101001011 tons-a-year 1 -11101001011 fast-skidding 1 -11101001011 Polish-dominated 1 -11101001011 565foot-long 1 -11101001011 14-story-tall 1 -11101001011 Radiators 1 -11101001011 over-promised 1 -11101001011 tax-adjusted 1 -11101001011 Antartic 1 -11101001011 3,000-film 1 -11101001011 Syrian-tolerated 1 -11101001011 fish-canning 1 -11101001011 frontispiece 1 -11101001011 Meridian-Marine 1 -11101001011 Friskies 1 -11101001011 methylglyoxal 1 -11101001011 Filipino-Spanish 1 -11101001011 metric-ton-per-year 1 -11101001011 table-wine 1 -11101001011 paling 1 -11101001011 Taheh 1 -11101001011 FilMag 1 -11101001011 Double-decked 1 -11101001011 telephones. 1 -11101001011 key-man 1 -11101001011 154-foot-long 1 -11101001011 game-control 1 -11101001011 580-store 1 -11101001011 91.99 1 -11101001011 Jewish-rights 1 -11101001011 keyman 1 -11101001011 20-249 1 -11101001011 barge-transportation 1 -11101001011 Occasion 1 -11101001011 Catel 1 -11101001011 meditational 1 -11101001011 1,250-kilowatt 1 -11101001011 45-person 1 -11101001011 Pre-faded 1 -11101001011 5514 1 -11101001011 explosive. 1 -11101001011 tax-aversive 1 -11101001011 Bollere 1 -11101001011 outlets. 1 -11101001011 1,500-square-foot 1 -11101001011 gajillion 1 -11101001011 once-splendid 1 -11101001011 surburban 1 -11101001011 5X 1 -11101001011 6X 1 -11101001011 financing/leasing. 1 -11101001011 Euro-Canadian 1 -11101001011 benefits-services 1 -11101001011 Wannabees 1 -11101001011 Jigaboos 1 -11101001011 Heartaches 1 -11101001011 compan 1 -11101001011 permit. 1 -11101001011 Overvalued 1 -11101001011 Special-election 1 -11101001011 15th-ranked 1 -11101001011 harder-working 1 -11101001011 Earthly 1 -11101001011 Sitz 1 -11101001011 Abend 1 -11101001011 KICKING 1 -11101001011 auto-manufacturing 1 -11101001011 emblem. 1 -11101001011 Goodyear-France 1 -11101001011 imported-food 1 -11101001011 Nestle-owned 1 -11101001011 not-so-mighty 1 -11101001011 234.48 1 -11101001011 243.97 1 -11101001011 Mergens 1 -11101001011 Pentagon-derived 1 -11101001011 U.S.56 1 -11101001011 1058-1111 1 -11101001011 African-Americans 1 -11101001011 Corometrics 1 -11101001011 curvature. 1 -11101001011 Prussin 1 -11101001011 trackable 1 -11101001011 Beringwerke 1 -11101001011 X-marked 1 -11101001011 clearing-firm 1 -11101001011 bond-market-related 1 -11101001011 anti-hero 1 -11101001011 redhooded 1 -11101001011 packer-bound 1 -11101001011 67,000-ton 1 -11101001011 Mylar-coated 1 -11101001011 1/2C 1 -11101001011 CHEERS 1 -11101001011 not-so-close 1 -11101001011 Nautilus. 1 -11101001011 489.06 1 -11101001011 5,914.92 1 -11101001011 ex-Padre 1 -11101001011 450,000-kilowatt 1 -11101001011 K-12 2 -11101001011 Sire 2 -11101001011 FOI 2 -11101001011 SLORC 2 -11101001011 Arabesque 2 -11101001011 polyester-film 2 -11101001011 3/3 2 -11101001011 420-acre 2 -11101001011 Emmber 2 -11101001011 anodized 2 -11101001011 Decaffeinated 2 -11101001011 ink-making 2 -11101001011 1945-48 2 -11101001011 SRINF 2 -11101001011 ILWAS 2 -11101001011 six-screen 2 -11101001011 late-maturing 2 -11101001011 ginkgo 2 -11101001011 Christian-dominated 2 -11101001011 disposal-firm 2 -11101001011 RRF 2 -11101001011 far-away 2 -11101001011 Sosad 2 -11101001011 Assurance-Compagniet 2 -11101001011 2,000-foot 2 -11101001011 CII 2 -11101001011 Charmglow 2 -11101001011 Rossing 2 -11101001011 liberal/Keynesian 2 -11101001011 uncashable 2 -11101001011 Mallinkrodt 2 -11101001011 lignite-fired 2 -11101001011 OMIA 2 -11101001011 CMPs 2 -11101001011 YPLL 2 -11101001011 unconvertible 2 -11101001011 DOE/EIA 2 -11101001011 Sumiton 2 -11101001011 Indian-majority 2 -11101001011 FMMIA 2 -11101001011 Miramichi 2 -11101001011 TEFAP 2 -11101001011 capacity-controlled 2 -11101001011 PIOB 2 -11101001011 gaming-enforcement 2 -11101001011 '54 2 -11101001011 LeeWards 2 -11101001011 190-pound 2 -11101001011 male-headed 2 -11101001011 Entrecanales 2 -11101001011 DEZ 2 -11101001011 Armindo 2 -11101001011 SEC-regulated 2 -11101001011 UNP 2 -11101001011 less-popular 2 -11101001011 Mainstay 2 -11101001011 medium-grade 2 -11101001011 non-ANC 2 -11101001011 1967-68 2 -11101001011 Consoldiated 2 -11101001011 Worsley 2 -11101001011 fifth-generation 2 -11101001011 11-state 2 -11101001011 Tonio 2 -11101001011 IRET 2 -11101001011 Mocha 2 -11101001011 MSW 2 -11101001011 COPPE 2 -11101001011 FLSA 2 -11101001011 soft-goods 2 -11101001011 Svcs. 2 -11101001011 single-property 2 -11101001011 SPF 2 -11101001011 1978-86 2 -11101001011 ECM 2 -11101001011 NMB 2 -11101001011 NLS 2 -11101001011 600,600 2 -11101001011 faux-Ivy-League-campus-style 2 -11101001011 .320 2 -11101001011 1970-1976 2 -11101001011 record-labels 2 -11101001011 video-publishing 2 -11101001011 nonelectric 2 -11101001011 Angel/EMI 3 -11101001011 Rustenberg 3 -11101001011 Butternut 3 -11101001011 seven-story 3 -11101001011 592-room 3 -11101001011 Oglala 3 -11101001011 NERC 3 -11101001011 NIFA 3 -11101001011 silicon-chip 3 -11101001011 dealer-owned 3 -11101001011 continuing-operations 3 -11101001011 P&A 3 -11101001011 RCRA 3 -11101001011 1976-79 3 -11101001011 eponymous 3 -11101001011 TMAs 3 -11101001011 16-unit 3 -11101001011 CEBA 3 -11101001011 spring-sown 3 -11101001011 Hanoi-backed 4 -11101001011 July-delivery 4 -11101001011 Mazda-made 4 -11101001011 Case-IH 4 -11101001011 nine-cent-a-gallon 4 -11101001011 V.J. 4 -11101001011 Omni-Horizon 4 -11101001011 March-settlement 4 -11101001011 CBW 4 -11101001011 1,875 4 -11101001011 upmarket 5 -11101001011 November-delivery 5 -11101001011 Aryan 5 -11101001011 USL 5 -11101001011 PCE 5 -11101001011 Khalda 5 -11101001011 June-delivery 6 -11101001011 Pointer 6 -11101001011 MILLION 6 -11101001011 Cleveland-area 6 -11101001011 Caffeine-Free 6 -11101001011 strike-bound 6 -11101001011 multi-billion 6 -11101001011 Australian-dollar 6 -11101001011 February-delivery 7 -11101001011 Bistro 7 -11101001011 Borse 7 -11101001011 S.O.S. 7 -11101001011 Gaspe 7 -11101001011 ROC 7 -11101001011 lower-valued 8 -11101001011 September-delivery 8 -11101001011 Folgers 8 -11101001011 May-delivery 9 -11101001011 Kodacolor 10 -11101001011 half-billion 11 -11101001011 October-delivery 13 -11101001011 market-value 20 -11101001011 January-delivery 28 -11101001011 March-delivery 39 -11101001011 multimillion 49 -11101001011 December-delivery 57 -11101001011 multibillion 67 -11101001011 Anglo-French 86 -11101001011 Canadian 8802 -11101001011 Australian 2565 -1110100110 107-slot 1 -1110100110 job-short 1 -1110100110 granulocyte-monocyte 1 -1110100110 non-complying 1 -1110100110 unengaged 1 -1110100110 nonallied 1 -1110100110 aluminum-oriented 1 -1110100110 OPEC-member 1 -1110100110 corporate-conscious 1 -1110100110 ceilingless 1 -1110100110 European-immigrant 1 -1110100110 unrhythmic 1 -1110100110 protitable 1 -1110100110 highest-taxed 1 -1110100110 least-taxed 1 -1110100110 Southern-tier 1 -1110100110 shareholder-related 1 -1110100110 non-Netherlands 1 -1110100110 Bin-Mahfouz 1 -1110100110 beef-exporting 1 -1110100110 apple-producing 1 -1110100110 high-techonology 1 -1110100110 pre-mass 1 -1110100110 soybean-importing 1 -1110100110 car-producing 1 -1110100110 Esterline-related 1 -1110100110 Africano 1 -1110100110 flag-of-convenience 1 -1110100110 debt-distressed 1 -1110100110 losses.Guardian 1 -1110100110 African-built 1 -1110100110 consuming-member 1 -1110100110 Fullerton-area 1 -1110100110 far-tinier 1 -1110100110 energy-based 1 -1110100110 Micronesian 1 -1110100110 non-EEC 1 -1110100110 Africa-restricted 1 -1110100110 middle-Atlantic 1 -1110100110 communist-ruled 1 -1110100110 nonregulating 1 -1110100110 malaria-infested 1 -1110100110 lower-tax 1 -1110100110 wheat-selling 1 -1110100110 land-poor 1 -1110100110 shareholders-a 1 -1110100110 dollar-surplus 1 -1110100110 mango-exporting 1 -1110100110 vegetated 1 -1110100110 Korea-owned 1 -1110100110 Bible-related 1 -1110100110 military-ruled 1 -1110100110 bad-actor 1 -1110100110 coffee-importing 1 -1110100110 summiteering 1 -1110100110 weakcurrency 1 -1110100110 lessdeveloped 1 -1110100110 non-gulf 1 -1110100110 sugar-exporting 1 -1110100110 late-primary 1 -1110100110 pre-nuclear 1 -1110100110 African-marked 1 -1110100110 beat. 1 -1110100110 most-destitute 1 -1110100110 arms-building 1 -1110100110 technical-skills 1 -1110100110 timber-producing 1 -1110100110 non-G-7 1 -1110100110 tradition-loving 1 -1110100110 spy-catching 1 -1110100110 fourth-rate 1 -1110100110 non-participatory 1 -1110100110 clothing-making 1 -1110100110 debtridden 1 -1110100110 unassimilable 1 -1110100110 consumer-type 1 -1110100110 burley-belt 1 -1110100110 arms-exporting 1 -1110100110 most-developed 1 -1110100110 war-fractured 1 -1110100110 disaster-struck 1 -1110100110 exhibition. 1 -1110100110 less-admired 1 -1110100110 data-proccessing 1 -1110100110 diked 1 -1110100110 drug-source 1 -1110100110 latex-producing 1 -1110100110 underpopulated 1 -1110100110 trucking-company 1 -1110100110 drug-supplier 1 -1110100110 Robusta-producing 1 -1110100110 over-supplied 1 -1110100110 Marquesan 1 -1110100110 delegate-rich 1 -1110100110 ex-Swapo 1 -1110100110 2,998,450 1 -1110100110 Arab-ruled 1 -1110100110 aid-providing 1 -1110100110 miniwelfare 1 -1110100110 Mafia-inspired 1 -1110100110 Pinakothek 1 -1110100110 Pot-like 1 -1110100110 IDA-beneficiary 1 -1110100110 drug-producing 1 -1110100110 coca-producing 1 -1110100110 cheap-wage 1 -1110100110 Rouge-style 1 -1110100110 drug-supplying 1 -1110100110 Warsaw-pact 1 -1110100110 non-quota 1 -1110100110 littoral 1 -1110100110 oil-sector 1 -1110100110 most-polluted 1 -1110100110 long-deprived 1 -1110100110 Kong-made 1 -1110100110 Pacific-based 1 -1110100110 Transcaucasian 1 -1110100110 harder-hit 1 -1110100110 high-cost-housing 1 -1110100110 brain-impaired 1 -1110100110 Win-style 1 -1110100110 84,312 1 -1110100110 seven-Emirate 1 -1110100110 Howeizah 1 -1110100110 Shore-sponsored 1 -1110100110 food-exporting 1 -1110100110 corn-belt 1 -1110100110 Wakayama 1 -1110100110 wimpier 1 -1110100110 chili-producing 1 -1110100110 Sahelian 1 -1110100110 seven-emirate 1 -1110100110 G-24 1 -1110100110 states-policies 1 -1110100110 wintery 1 -1110100110 more-rural 1 -1110100110 lumber-producing 2 -1110100110 tobacco-producing 2 -1110100110 smaller-than-requested 2 -1110100110 voter-controlled 2 -1110100110 SOMA 2 -1110100110 second-rank 2 -1110100110 high-AIDS-incidence 2 -1110100110 portmanteau 2 -1110100110 AZT-treated 2 -1110100110 textile-exporting 2 -1110100110 labor-short 2 -1110100110 technology-exporting 2 -1110100110 already-crowded 2 -1110100110 Paulo-based 2 -1110100110 Kong-registered 2 -1110100110 commodity-exporting 2 -1110100110 coffee-consuming 2 -1110100110 industrial-heartland 2 -1110100110 Cloisters 2 -1110100110 revenue-needy 2 -1110100110 Stuart-Menlo 2 -1110100110 strife-ridden 2 -1110100110 non-pound 2 -1110100110 pied 2 -1110100110 Korea-bashing 2 -1110100110 Korean-Japanese 2 -1110100110 farm-supply 2 -1110100110 voter-owned 2 -1110100110 lower-proof 2 -1110100110 lottery-free 2 -1110100110 Jilin 2 -1110100110 machinist-union 2 -1110100110 non-Philippine 2 -1110100110 water-rich 2 -1110100110 industralized 2 -1110100110 most-indebted 2 -1110100110 major-currency 2 -1110100110 African-supplied 2 -1110100110 price-indexed 2 -1110100110 drought-parched 2 -1110100110 Japan-Soviet 2 -1110100110 weaker-currency 2 -1110100110 English-reading 2 -1110100110 gas-buying 2 -1110100110 non-Gulf 2 -1110100110 driftnet-fishing 2 -1110100110 high-minimum-wage 2 -1110100110 nonmarket 2 -1110100110 Pacific-rim 2 -1110100110 polyunsaturated 2 -1110100110 petro 2 -1110100110 rebate-taxing 2 -1110100110 liberal-democratic 2 -1110100110 market-economy 3 -1110100110 first-ranked 3 -1110100110 cosseted 3 -1110100110 cocaine-producing 3 -1110100110 150-odd 3 -1110100110 non-NATO 3 -1110100110 cotton-producing 3 -1110100110 oil-region 3 -1110100110 least-developed 3 -1110100110 energy-rich 3 -1110100110 FSLIC-aided 3 -1110100110 speed-skating 3 -1110100110 overpopulated 3 -1110100110 timbered 3 -1110100110 Carleo 3 -1110100110 Swiss-American 3 -1110100110 tin-consuming 3 -1110100110 pork-producing 3 -1110100110 sugar-producing 3 -1110100110 British-ruled 3 -1110100110 recession-hit 3 -1110100110 non-Cocom 3 -1110100110 wheat-growing 3 -1110100110 '50s-style 3 -1110100110 hog-producing 4 -1110100110 soybean-producing 4 -1110100110 energy-belt 4 -1110100110 Asia-based 4 -1110100110 Francophone 4 -1110100110 middlebrow 4 -1110100110 stateless 4 -1110100110 state-insured 4 -1110100110 now-vanished 4 -1110100110 fastgrowing 4 -1110100110 oil-importing 4 -1110100110 Bengali 4 -1110100110 steel-exporting 4 -1110100110 trade-surplus 4 -1110100110 Manchurian 4 -1110100110 non-lending 4 -1110100110 heavily-indebted 5 -1110100110 weak-currency 5 -1110100110 interisland 5 -1110100110 first-asylum 5 -1110100110 revenue-hungry 5 -1110100110 grain-growing 5 -1110100110 corn-producing 5 -1110100110 Eastern-bloc 5 -1110100110 nonsocialist 5 -1110100110 lower-wage 6 -1110100110 Hubei 6 -1110100110 white-ruled 6 -1110100110 Korea-based 6 -1110100110 Argentinean 6 -1110100110 majority-held 6 -1110100110 wine-producing 6 -1110100110 woebegone 6 -1110100110 third-world 6 -1110100110 Republican-leaning 6 -1110100110 food-importing 6 -1110100110 textile-producing 6 -1110100110 cattle-producing 7 -1110100110 German-French 7 -1110100110 African-backed 7 -1110100110 corn-growing 7 -1110100110 steel-producing 7 -1110100110 granulocyte-macrophage 7 -1110100110 grain-producing 8 -1110100110 Maginot 8 -1110100110 food-producing 8 -1110100110 strong-currency 8 -1110100110 cash-short 8 -1110100110 Yemeni 9 -1110100110 cattle-feeding 9 -1110100110 Berlin-based 9 -1110100110 non-allied 9 -1110100110 frontline 9 -1110100110 Korean-built 10 -1110100110 oil-consuming 10 -1110100110 urbanized 12 -1110100110 Communist-bloc 13 -1110100110 coffee-producing 13 -1110100110 beef-producing 14 -1110100110 less-than-truckload 14 -1110100110 deficit-ridden 14 -1110100110 pre-revolutionary 15 -1110100110 cash-starved 15 -1110100110 Korean-made 15 -1110100110 non-socialist 15 -1110100110 North-South 16 -1110100110 high-wage 16 -1110100110 low-tax 16 -1110100110 lesser-developed 17 -1110100110 ASEAN 17 -1110100110 Mideastern 18 -1110100110 midwestern 18 -1110100110 Benelux 19 -1110100110 oil-exporting 21 -1110100110 debt-burdened 22 -1110100110 Transvaal 23 -1110100110 nonaligned 25 -1110100110 Contadora 26 -1110100110 debt-troubled 28 -1110100110 high-tax 28 -1110100110 Andean 29 -1110100110 non-Russian 30 -1110100110 noncommunist 30 -1110100110 East-bloc 34 -1110100110 Asia-Pacific 36 -1110100110 interdependent 39 -1110100110 front-line 39 -1110100110 oil-patch 39 -1110100110 FSLIC-insured 41 -1110100110 oil-rich 45 -1110100110 industrializing 50 -1110100110 mid-Atlantic 51 -1110100110 Nordic 52 -1110100110 debt-ridden 57 -1110100110 GMC 57 -1110100110 underdeveloped 59 -1110100110 cash-strapped 83 -1110100110 non-Communist 92 -1110100110 non-communist 93 -1110100110 Northeastern 107 -1110100110 Baltic 109 -1110100110 oil-producing 122 -1110100110 less-developed 164 -1110100110 sovereign 202 -1110100110 indebted 203 -1110100110 Midwestern 212 -1110100110 non-OPEC 239 -1110100110 inner 328 -1110100110 industrialized 567 -1110100110 ailing 614 -1110100110 debtor 764 -1110100110 Asian 1472 -1110100110 African 2017 -1110100110 Korean 2112 -1110100110 European 8548 -1110100110 troubled 2688 -11101001110 elderly-rights 1 -11101001110 50-employee 1 -11101001110 transport-credit 1 -11101001110 film-unit 1 -11101001110 Soviet-propped 1 -11101001110 decent-sized 1 -11101001110 25thlargest 1 -11101001110 smaller-capitalized 1 -11101001110 Paris-registered 1 -11101001110 made-in-Texas 1 -11101001110 Forty-Niners 1 -11101001110 Columbia-Idaho 1 -11101001110 300th-largest 1 -11101001110 508,200 1 -11101001110 260-person 1 -11101001110 five-lawyer 1 -11101001110 widely-traded 1 -11101001110 Ga.based 1 -11101001110 garageman 1 -11101001110 41st-largest 1 -11101001110 non-ACLU 1 -11101001110 Aeroperu 1 -11101001110 money-gushing 1 -11101001110 motleyest 1 -11101001110 60-degree 1 -11101001110 tropical-forest 1 -11101001110 132nd 1 -11101001110 median-sized 1 -11101001110 median-size 1 -11101001110 bugproof 1 -11101001110 Franco-Arab 1 -11101001110 still-wounded 1 -11101001110 commercial/investment 1 -11101001110 Concord-based 1 -11101001110 quasi-central 1 -11101001110 28th-largest 1 -11101001110 computer-phobic 1 -11101001110 cross-side 1 -11101001110 S/T-15 1 -11101001110 135-branch 1 -11101001110 businessman-oriented 1 -11101001110 ECU-denomimated 1 -11101001110 military-tied 1 -11101001110 value-heavy 1 -11101001110 pro-Pakistan 1 -11101001110 Wilimington 1 -11101001110 historical-performance 1 -11101001110 collective-farm 1 -11101001110 turnover-reporting 1 -11101001110 farm-area 1 -11101001110 industrial-financing 1 -11101001110 statesman/philosopher 1 -11101001110 somewhat-confused 1 -11101001110 cross-county-line 1 -11101001110 guerrilla-aid 1 -11101001110 Bologna-based 1 -11101001110 Norinchukin 1 -11101001110 retail-weighted 1 -11101001110 price-making 1 -11101001110 Dallas-controlled 1 -11101001110 Dallas-owned 1 -11101001110 27-point 1 -11101001110 weaker-capitalized 1 -11101001110 5,900-employee 1 -11101001110 non-Dutch 1 -11101001110 223-room 1 -11101001110 102nd-largest 1 -11101001110 stronger-rated 1 -11101001110 Sardinian 1 -11101001110 12,944 1 -11101001110 Airbus-sponsoring 1 -11101001110 Waterloo-based 1 -11101001110 loss-prone 1 -11101001110 semi-good 1 -11101001110 semi-bad 1 -11101001110 then-unstaged 1 -11101001110 community-run 1 -11101001110 then-depressed 1 -11101001110 bank/investment 1 -11101001110 green-winged 1 -11101001110 KLM-controlled 1 -11101001110 LDC-lending 1 -11101001110 13,613 1 -11101001110 cement-export 1 -11101001110 problem-debtor 1 -11101001110 minority-oriented 1 -11101001110 trigonometric 1 -11101001110 major-country 1 -11101001110 piranha-infested 1 -11101001110 brassiest 1 -11101001110 48-story 2 -11101001110 83rd 2 -11101001110 turncoat 2 -11101001110 cental 2 -11101001110 30th-largest 2 -11101001110 wellheeled 2 -11101001110 bailed-out 2 -11101001110 moneycenter 2 -11101001110 800,000-square-foot 2 -11101001110 good/bad 2 -11101001110 agricultural-credit 2 -11101001110 34-member 2 -11101001110 more-developed 2 -11101001110 clearing-house 2 -11101001110 top-seeded 2 -11101001110 computer-produced 2 -11101001110 Afrika 3 -11101001110 119-year-old 3 -11101001110 economic-affairs 3 -11101001110 lesser-reserved 3 -11101001110 bank/bad 5 -11101001110 limited-purpose 5 -11101001110 19-member 6 -11101001110 Soviet-owned 7 -11101001110 12-bank 8 -11101001110 six-to-10-day 9 -11101001110 misapplying 10 -11101001110 piggy 21 -11101001110 super-regional 32 -11101001110 money-center 226 -11101001110 central 6378 -11101001110 merchant 1184 -11101001111 CH-46 1 -11101001111 access-memory 1 -11101001111 533,395 1 -11101001111 fluoridated 1 -11101001111 1,500-ton-a-day 1 -11101001111 146-QT 1 -11101001111 RV-1 1 -11101001111 169-seat 1 -11101001111 terrain-following 1 -11101001111 lamppost-like 1 -11101001111 bewhiskered 1 -11101001111 unguided 1 -11101001111 ice-cone 1 -11101001111 A-6A 1 -11101001111 UH-60A 1 -11101001111 cold-form 1 -11101001111 intersperses 1 -11101001111 Resealable 1 -11101001111 95-plane 1 -11101001111 F-l5 1 -11101001111 KC-130t 1 -11101001111 big-deck 1 -11101001111 F-16N 1 -11101001111 C-22B 1 -11101001111 Estrogens 1 -11101001111 national-to-state 1 -11101001111 mental-hospital 1 -11101001111 psuedo 1 -11101001111 cholesterol-altering 1 -11101001111 eight-valve 1 -11101001111 EF-18 1 -11101001111 AF-18 1 -11101001111 desalinizing 1 -11101001111 isotope-tagged 1 -11101001111 subsonic 1 -11101001111 F-4EJ 1 -11101001111 496-seat 1 -11101001111 temporarily-lost 1 -11101001111 6,200-mile-range 1 -11101001111 semaless 1 -11101001111 solid-fueled 1 -11101001111 munitions-production 1 -11101001111 Reim 1 -11101001111 126-foot 1 -11101001111 racing-pig 1 -11101001111 126-foot-long 1 -11101001111 grittily 1 -11101001111 T-53 1 -11101001111 peak-time 1 -11101001111 ooow 1 -11101001111 46-seat 1 -11101001111 four-masted 1 -11101001111 museum-leased 1 -11101001111 600-foot 1 -11101001111 lowest-weight 1 -11101001111 anti-fascist 1 -11101001111 lower-deck 1 -11101001111 hand-worked 1 -11101001111 Ky.-bound 1 -11101001111 London-to-Cincinnati 1 -11101001111 12-by-120-foot 1 -11101001111 bus-sized 1 -11101001111 Earth-study 1 -11101001111 onionskin 1 -11101001111 81-foot 1 -11101001111 C-21A 1 -11101001111 SH-60 1 -11101001111 magic-marker-red 1 -11101001111 Peruvian-owned 1 -11101001111 fare-steel 1 -11101001111 immune-regulatory 1 -11101001111 football-field-length 1 -11101001111 102nd 1 -11101001111 valuabe 1 -11101001111 industrialized-country 1 -11101001111 220-horsepower 1 -11101001111 gefilte 1 -11101001111 steel-encased 1 -11101001111 Aero-Mexico 1 -11101001111 fuel-stingy 1 -11101001111 poorer-selling 1 -11101001111 142-passenger 1 -11101001111 7,464 1 -11101001111 sintered 1 -11101001111 escrowed-to-maturity 1 -11101001111 1,342,100 1 -11101001111 data-relay 1 -11101001111 spoonable 1 -11101001111 GE-38 1 -11101001111 thuggish 1 -11101001111 freezer-case 1 -11101001111 50-inch-square 1 -11101001111 Fiumicino 1 -11101001111 lung-like 1 -11101001111 straw-roofed 1 -11101001111 regular-size 1 -11101001111 two-cycle 1 -11101001111 jet-powered 1 -11101001111 turboprop-powered 1 -11101001111 non-premium 1 -11101001111 Tokyo-Alaska-Europe 1 -11101001111 Rolls-Turbomeca 1 -11101001111 technologically-advanced 1 -11101001111 Boeing-made 1 -11101001111 Krasnoyark 1 -11101001111 airline-coupon 1 -11101001111 hands-high 1 -11101001111 ALPS-directed 1 -11101001111 X-31A 1 -11101001111 B-1D 1 -11101001111 machine-made 1 -11101001111 cell-to-cell 1 -11101001111 5.3-liter 1 -11101001111 long-sour 1 -11101001111 aluminum-alloy 1 -11101001111 poison-carrying 1 -11101001111 37-foot 1 -11101001111 MH-47E 1 -11101001111 Selway-Bitterroot 1 -11101001111 V-1b 1 -11101001111 EC-135 1 -11101001111 Zaisei 1 -11101001111 narrow-bodied 1 -11101001111 Washington-bound 1 -11101001111 Shopska 1 -11101001111 Cubbie 1 -11101001111 Super-Stealth 1 -11101001111 large-diameter 1 -11101001111 megestrol 1 -11101001111 270-mile 1 -11101001111 black-and-silver 1 -11101001111 enameled 1 -11101001111 A-6f 1 -11101001111 F-21A 1 -11101001111 virus-research 1 -11101001111 life-defrauding 1 -11101001111 private-capital 1 -11101001111 Gensco 1 -11101001111 DC-914 1 -11101001111 Kharkongor 1 -11101001111 146-passenger 1 -11101001111 oil-bearing 1 -11101001111 agricultural-outlook 1 -11101001111 3.9-liter 1 -11101001111 longer-bodied 1 -11101001111 brisk-selling 1 -11101001111 2,096 1 -11101001111 Falcon-20 1 -11101001111 titanium-skinned 1 -11101001111 Lockheed-built 1 -11101001111 F-7M 1 -11101001111 wristband 1 -11101001111 Medivac 1 -11101001111 food-testing 1 -11101001111 COMBI 1 -11101001111 289-cubic-inch 1 -11101001111 very-short-range 1 -11101001111 local-authority 1 -11101001111 T-34C 1 -11101001111 UH-1H 1 -11101001111 combined-effects 1 -11101001111 exoatmospheric 1 -11101001111 agricultural-training 1 -11101001111 24-transponder 1 -11101001111 Schoenefeld 1 -11101001111 Caribbean-area 1 -11101001111 tank-production 1 -11101001111 slick-coated 1 -11101001111 4-68 1 -11101001111 156-seat 1 -11101001111 CFM56-5A1 1 -11101001111 Seck 1 -11101001111 44-seat 1 -11101001111 high-endurance 1 -11101001111 environmental-study 1 -11101001111 190-seat 1 -11101001111 non-Brunei 1 -11101001111 short-take-off 1 -11101001111 war-proven 1 -11101001111 nonirrigated 1 -11101001111 SF340 1 -11101001111 bean-sprout 1 -11101001111 three-word 1 -11101001111 321-seat 1 -11101001111 Firefly 1 -11101001111 Orbitron 1 -11101001111 S-21A 1 -11101001111 triple-warhead 1 -11101001111 1,650-acre 1 -11101001111 just-unloaded 1 -11101001111 company-car 1 -11101001111 much-hailed 1 -11101001111 C-130h 1 -11101001111 highest-circulation 1 -11101001111 chromed 1 -11101001111 high-bypass 1 -11101001111 1981-84-model 1 -11101001111 241-seat 1 -11101001111 stage-door 1 -11101001111 non-office 1 -11101001111 1,500-pound 1 -11101001111 170-seat 1 -11101001111 767300ER 1 -11101001111 C-135 1 -11101001111 61-foot 1 -11101001111 electric-vehicle 1 -11101001111 for-and 1 -11101001111 passenger-carrying 1 -11101001111 121-seat 1 -11101001111 rodlike 1 -11101001111 solid-booster 1 -11101001111 steeltesting 1 -11101001111 commecial 1 -11101001111 CFM-made 1 -11101001111 non-archival 1 -11101001111 TR1 1 -11101001111 Jetstream-31 1 -11101001111 E-4B 1 -11101001111 10-passenger 1 -11101001111 J-79 1 -11101001111 super-calendared 1 -11101001111 30-millimeter 1 -11101001111 Tennnessee 1 -11101001111 knapsack-sized 1 -11101001111 nylon-resin 1 -11101001111 post-bankruptcy 1 -11101001111 poplin 1 -11101001111 horse-country 1 -11101001111 A-6e 1 -11101001111 SF-340 1 -11101001111 MI-24 1 -11101001111 dome-mounted 1 -11101001111 magenta-colored 1 -11101001111 disfigures 1 -11101001111 white-gray 1 -11101001111 D-flawless 1 -11101001111 Avot-Vallee 1 -11101001111 disease-proof 1 -11101001111 fast-attack 1 -11101001111 heavy-gauge 1 -11101001111 longer-fuselage 1 -11101001111 most-ordered 1 -11101001111 hip-hop 1 -11101001111 32,500-square-foot 1 -11101001111 sensor-bearing 1 -11101001111 extracorporeal 1 -11101001111 news-release 1 -11101001111 50mm 1 -11101001111 mono-clonal 1 -11101001111 10,000-pound 1 -11101001111 Douglas-Home 1 -11101001111 energy-conserving 1 -11101001111 fuel-loaded 1 -11101001111 taxation-reform 1 -11101001111 Otopeni 1 -11101001111 EF18A 1 -11101001111 MiG-21B 1 -11101001111 C17 1 -11101001111 receptor-binding 1 -11101001111 meerschaum 1 -11101001111 ultra-posh 1 -11101001111 Delaware-chartered 1 -11101001111 Molesworth 1 -11101001111 Tomi 1 -11101001111 13-ton 1 -11101001111 concrete-brick 1 -11101001111 rocket-proposion 1 -11101001111 short-takeoff-and-landing 1 -11101001111 ECS 1 -11101001111 continentwide 1 -11101001111 water-bomber 1 -11101001111 arms-for-Iran-money-for-contras 1 -11101001111 raisin-type 1 -11101001111 Latin-owned 1 -11101001111 Earth-mapping 1 -11101001111 18-wheel-truck 1 -11101001111 F-101 1 -11101001111 dry-bulk 1 -11101001111 al-Rahim 1 -11101001111 TF-34 1 -11101001111 mall-security 1 -11101001111 35,673 1 -11101001111 Digital-developed 1 -11101001111 food-irradiation 1 -11101001111 transmigration-related 1 -11101001111 state-leased 1 -11101001111 H-3 1 -11101001111 Florida-bound 1 -11101001111 puppy-eyed 1 -11101001111 butterfly-shaped 1 -11101001111 C-123K 1 -11101001111 forecloseable 1 -11101001111 largest-capacity 1 -11101001111 mid-London 1 -11101001111 free-booting 1 -11101001111 feed-fiber 1 -11101001111 four-dimensional 1 -11101001111 irradiate 1 -11101001111 plutonium-recovery 1 -11101001111 Times-owned 1 -11101001111 swept-wing 1 -11101001111 bleached-hardwood 1 -11101001111 ice-melting 1 -11101001111 non-critical 1 -11101001111 medical-clinical 1 -11101001111 peephole-equipped 1 -11101001111 yellow-fleshed 1 -11101001111 V-12 1 -11101001111 orange-based 1 -11101001111 sentrylike 1 -11101001111 grayish-black 1 -11101001111 single-aisle 1 -11101001111 easy-to-shield-against 1 -11101001111 flimsy-looking 1 -11101001111 MC-130 1 -11101001111 globe-spanning 1 -11101001111 research-animal 1 -11101001111 SD3-60 1 -11101001111 294-seat 1 -11101001111 42-ton 1 -11101001111 black-clawed 1 -11101001111 near-infinite 1 -11101001111 lease-funded 1 -11101001111 345-inch 1 -11101001111 potato-research 1 -11101001111 heavy-sound 1 -11101001111 oil-filled 1 -11101001111 co-produces 1 -11101001111 Singer-made 1 -11101001111 KC135 1 -11101001111 Asian-bound 1 -11101001111 Huzzar 1 -11101001111 compulsive-gambling 1 -11101001111 woodclad 1 -11101001111 F-8B 1 -11101001111 eighth-busiest 1 -11101001111 acid-free 1 -11101001111 bronze-age 1 -11101001111 RB211535E4 1 -11101001111 tri-engine 1 -11101001111 Bac-III 1 -11101001111 AB-8B 1 -11101001111 50,000-horsepower 1 -11101001111 Fokker-50 1 -11101001111 cotton-fiber 1 -11101001111 B52 1 -11101001111 general-line 1 -11101001111 RF-4C 1 -11101001111 tooth-scarred 1 -11101001111 200-passenger 1 -11101001111 carrier-capable 1 -11101001111 nitrocellulose 1 -11101001111 tail-mounted 1 -11101001111 EF-18a 1 -11101001111 rail-car-based 1 -11101001111 tree-sized 1 -11101001111 MSD-200 1 -11101001111 Gordeeva 1 -11101001111 25-pound 1 -11101001111 fiber-optics-guided 1 -11101001111 nickel-base 1 -11101001111 Calculate 1 -11101001111 E7 1 -11101001111 Sun-developed 1 -11101001111 brakeless 1 -11101001111 no-annual-fee 1 -11101001111 B1-b 1 -11101001111 trust-owned 1 -11101001111 PW400 1 -11101001111 balance-shafted 1 -11101001111 37-passenger 1 -11101001111 88100 1 -11101001111 398-passenger 1 -11101001111 398-seat 1 -11101001111 Gini 1 -11101001111 YS-11 1 -11101001111 69-pound 1 -11101001111 dry-cargo 1 -11101001111 2,637 1 -11101001111 CF66 1 -11101001111 C-130E 1 -11101001111 H1 1 -11101001111 Chicago-Cleveland 1 -11101001111 portable-phone 1 -11101001111 B-52G 1 -11101001111 216,025 1 -11101001111 surface-treated 1 -11101001111 timehonored 1 -11101001111 12,500-member 1 -11101001111 missile-interceptor 1 -11101001111 AHIP 1 -11101001111 primitivistic 1 -11101001111 tail-less 1 -11101001111 B-1A 1 -11101001111 IFC-approved 1 -11101001111 Titan-4 1 -11101001111 already-known 1 -11101001111 Ka-32 1 -11101001111 light-sensitized 1 -11101001111 747-124SF 1 -11101001111 nonporous 1 -11101001111 115-country 1 -11101001111 no-taste 1 -11101001111 225-branch 1 -11101001111 330-pound 1 -11101001111 bulbous-nosed 1 -11101001111 E-4 1 -11101001111 hyaline 1 -11101001111 32-foot 1 -11101001111 street-stand 1 -11101001111 Sun-designed 1 -11101001111 often-delayed 1 -11101001111 267-passenger 1 -11101001111 Nimbus-7 1 -11101001111 C-2A 1 -11101001111 still-ravaged 1 -11101001111 nine-seater 1 -11101001111 MD-80-series 1 -11101001111 250-horsepower 1 -11101001111 ultra-pure 1 -11101001111 C-12F 1 -11101001111 Bible-type 1 -11101001111 Austrian-Argentine 1 -11101001111 pre-festival 1 -11101001111 Geometric 1 -11101001111 wider-body 1 -11101001111 CF18 1 -11101001111 128-outlet 1 -11101001111 garbage-out 1 -11101001111 battle-damaged 1 -11101001111 abraded 1 -11101001111 48-seat 1 -11101001111 signal-gathering 1 -11101001111 signal-intercept 1 -11101001111 narrowbody 1 -11101001111 pinkish-lavender 1 -11101001111 low-winged 1 -11101001111 radar-resistant 1 -11101001111 three-engined 1 -11101001111 twin-aisled 1 -11101001111 153-seat 1 -11101001111 J52 1 -11101001111 Mirabel 1 -11101001111 191-passenger 1 -11101001111 quicker-responding 1 -11101001111 300-ton-a-day 1 -11101001111 15-story 1 -11101001111 supercalender 1 -11101001111 government-idled 1 -11101001111 twin-line 1 -11101001111 Tele-X 1 -11101001111 rear-facing 1 -11101001111 bolognaise 1 -11101001111 B-47 1 -11101001111 K-135 1 -11101001111 black-framed 1 -11101001111 grapefruit-sized 1 -11101001111 yellow-tinted 1 -11101001111 Ariane-type 1 -11101001111 Primat 1 -11101001111 structure-adjusting 1 -11101001111 half-frozen 1 -11101001111 Benton-backed 1 -11101001111 Hi-Dry 1 -11101001111 post-desegregation 1 -11101001111 C-130A 1 -11101001111 medium-to-long-range 1 -11101001111 civilian-owned 1 -11101001111 1-liter 1 -11101001111 Chinet 1 -11101001111 F-18A 1 -11101001111 on-the-road 1 -11101001111 Antonov-24 1 -11101001111 six-days-a-week 1 -11101001111 retreaded 2 -11101001111 missile-firing 2 -11101001111 catalysis 2 -11101001111 Shrike 2 -11101001111 advance-fare 2 -11101001111 atomic-powered 2 -11101001111 multimarket 2 -11101001111 C130 2 -11101001111 air-system 2 -11101001111 higher-volume 2 -11101001111 photo-reconnaissance 2 -11101001111 747-200F 2 -11101001111 postage-stamp 2 -11101001111 A321 2 -11101001111 rear-mounted 2 -11101001111 European-built 2 -11101001111 U-21 2 -11101001111 communications-technology 2 -11101001111 DC-9-30 2 -11101001111 short-block 2 -11101001111 Do-328 2 -11101001111 polymeric 2 -11101001111 Mehrabad 2 -11101001111 flower-power 2 -11101001111 football-field-sized 2 -11101001111 twin-aisle 2 -11101001111 vanilla-flavoring 2 -11101001111 475,407 2 -11101001111 207,547 2 -11101001111 man-powered 2 -11101001111 98-seat 2 -11101001111 747-273 2 -11101001111 ultralight 2 -11101001111 almost-finished 2 -11101001111 rust-resistant 2 -11101001111 mass-screening 2 -11101001111 472,163 2 -11101001111 sports-fishing 2 -11101001111 minishuttle 2 -11101001111 B-1b 2 -11101001111 Headstart 2 -11101001111 273-passenger 2 -11101001111 non-scheduled 2 -11101001111 fuel-guzzling 2 -11101001111 once-lagging 2 -11101001111 F404 2 -11101001111 tunafish 2 -11101001111 136-seat 2 -11101001111 tank-training 2 -11101001111 super-sophisticated 2 -11101001111 Nike-Hercules 2 -11101001111 Prithvi 2 -11101001111 anabolic-steroid 2 -11101001111 F/A18 2 -11101001111 3-liter 2 -11101001111 ARSR-4 2 -11101001111 Milstar 2 -11101001111 wing-shaped 2 -11101001111 similar-acting 2 -11101001111 mined-out 2 -11101001111 Nimitz-class 2 -11101001111 chicken-noodle 2 -11101001111 F-108 2 -11101001111 Pringles 2 -11101001111 multi-ply 2 -11101001111 turbo-jet 2 -11101001111 current-generation 2 -11101001111 soda-pop 2 -11101001111 12-valve 2 -11101001111 remote-piloted 2 -11101001111 shared-appreciation 2 -11101001111 reconditioning 2 -11101001111 environment-related 2 -11101001111 KA-6D 2 -11101001111 japanese 2 -11101001111 ground-hugging 2 -11101001111 H-46 2 -11101001111 T46 2 -11101001111 AH-1T 2 -11101001111 commodity-grade 2 -11101001111 T-38 2 -11101001111 CH-47 2 -11101001111 BMX 2 -11101001111 55-minute 2 -11101001111 cardio-renal 2 -11101001111 McDLT 2 -11101001111 C-20 2 -11101001111 troop-transport 2 -11101001111 Dougway 2 -11101001111 FA18 2 -11101001111 FH-60B 2 -11101001111 155-mm 2 -11101001111 commericial 2 -11101001111 four-liter 2 -11101001111 25,270 2 -11101001111 30,000-pound 2 -11101001111 rail-launched 2 -11101001111 super-quiet 2 -11101001111 147,143 2 -11101001111 three-warhead 2 -11101001111 F-14A 2 -11101001111 82,853 2 -11101001111 mood-setting 2 -11101001111 26,317 2 -11101001111 sub-hunting 2 -11101001111 Japanese-speaking 2 -11101001111 eight-piece 2 -11101001111 silo-based 2 -11101001111 feedwater 2 -11101001111 CF6 2 -11101001111 145-seat 2 -11101001111 A-4 2 -11101001111 AH64 2 -11101001111 super-calendered 2 -11101001111 Mitsubishi-made 2 -11101001111 cellulose-based 3 -11101001111 CH-53E 3 -11101001111 radar-equipped 3 -11101001111 JT-8D 3 -11101001111 Evinrude 3 -11101001111 F-8 3 -11101001111 MiG-27 3 -11101001111 EF-18A 3 -11101001111 Mi-24 3 -11101001111 speech-making 3 -11101001111 Combi 3 -11101001111 AH-64A 3 -11101001111 non-radioactive 3 -11101001111 B1B 3 -11101001111 S-3B 3 -11101001111 DC-10-10 3 -11101001111 water-project 3 -11101001111 TF-30 3 -11101001111 high-thrust 3 -11101001111 130-passenger 3 -11101001111 F111 3 -11101001111 general-use 3 -11101001111 multiple-launch 3 -11101001111 S-3A 3 -11101001111 shocking-pink 3 -11101001111 105-mm 3 -11101001111 8087 3 -11101001111 slowest-selling 3 -11101001111 Energia 3 -11101001111 CH-53 3 -11101001111 noninterstate 3 -11101001111 F-28 3 -11101001111 single-ply 3 -11101001111 child-size 3 -11101001111 36-inch 3 -11101001111 50-seat 3 -11101001111 Southmark-sponsored 3 -11101001111 DC-9-10 3 -11101001111 equity-oriented 3 -11101001111 Stake-made 3 -11101001111 B-1-B 3 -11101001111 2.5-liter 3 -11101001111 CH-47D 3 -11101001111 human-powered 3 -11101001111 rail-based 3 -11101001111 fuel-saving 3 -11101001111 DNA-sequencing 3 -11101001111 niobium-titanium 3 -11101001111 immunoassay 3 -11101001111 interchanging 3 -11101001111 108-seat 3 -11101001111 pearl-gray 3 -11101001111 machine-like 3 -11101001111 multi-valve 3 -11101001111 SH-2F 3 -11101001111 tangy 3 -11101001111 260-seat 3 -11101001111 over-age 3 -11101001111 MC-130H 3 -11101001111 Avianca 3 -11101001111 magnetohydrodynamic 3 -11101001111 Boeing-747 3 -11101001111 unbleached 3 -11101001111 OV-10 3 -11101001111 AH-1W 3 -11101001111 groundwood 3 -11101001111 Western-built 3 -11101001111 fixed-wing 4 -11101001111 RB-211 4 -11101001111 precision-guided 4 -11101001111 Dynamo 4 -11101001111 P3 4 -11101001111 superfan 4 -11101001111 sperm-bank 4 -11101001111 F15 4 -11101001111 polyphenylene 4 -11101001111 landing-craft 4 -11101001111 real-estate-related 4 -11101001111 coal-hauling 4 -11101001111 ChemPlus 4 -11101001111 TR-1 4 -11101001111 F-5E 4 -11101001111 viewer-selected 4 -11101001111 pilotless 4 -11101001111 commodious 4 -11101001111 8088 4 -11101001111 propfan-powered 4 -11101001111 B-24 4 -11101001111 single-serving 4 -11101001111 balsam 4 -11101001111 1.4-liter 4 -11101001111 C-5A 4 -11101001111 purplish 4 -11101001111 polycrystalline 4 -11101001111 high-precision 4 -11101001111 federally-insured 4 -11101001111 CL-215T 4 -11101001111 alternate-site 4 -11101001111 photoreconnaissance 4 -11101001111 Am29000 4 -11101001111 state-supervised 4 -11101001111 French-built 4 -11101001111 three-cylinder 4 -11101001111 two-ton 4 -11101001111 CF-18 4 -11101001111 CF6-6 4 -11101001111 thatched-roof 5 -11101001111 AH-1 5 -11101001111 KC-10 5 -11101001111 IAE 5 -11101001111 150-passenger 5 -11101001111 T-56 5 -11101001111 Aegis-class 5 -11101001111 186-seat 5 -11101001111 missile-bearing 5 -11101001111 Euro-commercial 5 -11101001111 non-theatrical 5 -11101001111 A-10 5 -11101001111 tuna-fish 5 -11101001111 SH-60F 5 -11101001111 trust-held 5 -11101001111 sea-skimming 5 -11101001111 posterior 5 -11101001111 calorie-free 5 -11101001111 B-767 5 -11101001111 ultra-quiet 5 -11101001111 MH-53E 5 -11101001111 MiG-23 5 -11101001111 over-water 5 -11101001111 voice-grade 5 -11101001111 hollow-fiber 5 -11101001111 cargo-carrying 5 -11101001111 SH-60B 5 -11101001111 SH-08 5 -11101001111 DC-10-30 5 -11101001111 80486 6 -11101001111 self-propelled 6 -11101001111 new-technology 6 -11101001111 T-45 6 -11101001111 anti-tartar 6 -11101001111 T-700 6 -11101001111 F-402 6 -11101001111 MiG-21 6 -11101001111 all-cargo 6 -11101001111 ultraquiet 6 -11101001111 Cybex 6 -11101001111 Atlas/Centaur 6 -11101001111 vinifera 6 -11101001111 filmless 6 -11101001111 single-spaced 6 -11101001111 third-stage 6 -11101001111 live-action 6 -11101001111 B1-B 6 -11101001111 scout/attack 6 -11101001111 MiG-29 7 -11101001111 debtor-nation 7 -11101001111 C-141 7 -11101001111 S-3 7 -11101001111 J-52 7 -11101001111 C-130H 7 -11101001111 high-security 7 -11101001111 Risc 7 -11101001111 T-46A 7 -11101001111 over-the-horizon 7 -11101001111 Eurocommercial 7 -11101001111 roast-beef 7 -11101001111 unplaced 7 -11101001111 EH-101 7 -11101001111 SSN-21 8 -11101001111 A-7 8 -11101001111 Ku-band 8 -11101001111 remote-sensing 8 -11101001111 seria 8 -11101001111 Atra 8 -11101001111 16-valve 8 -11101001111 around-the-world 8 -11101001111 aero 8 -11101001111 card-issuing 8 -11101001111 two-stroke 8 -11101001111 lighter-weight 9 -11101001111 prop-fan 9 -11101001111 propeller-driven 9 -11101001111 Quik 9 -11101001111 CFM56-5 9 -11101001111 first-stage 9 -11101001111 jumbo-jet 9 -11101001111 Harrier 9 -11101001111 F-110 9 -11101001111 parking-lot 10 -11101001111 1.6-liter 10 -11101001111 containerized 10 -11101001111 turbine-engine 10 -11101001111 meteorological 10 -11101001111 U.S.-designed 10 -11101001111 three-engine 10 -11101001111 E-3A 10 -11101001111 narrow-body 10 -11101001111 submarine-hunting 10 -11101001111 hypersonic 10 -11101001111 radar-eluding 10 -11101001111 Tornado 11 -11101001111 tilt-rotor 11 -11101001111 uncoated 11 -11101001111 nuclear-capable 11 -11101001111 P-3C 11 -11101001111 phased-array 11 -11101001111 A-6F 12 -11101001111 widebody 12 -11101001111 MD-82 12 -11101001111 overbooked 12 -11101001111 F-15E 12 -11101001111 radar-evading 12 -11101001111 direct-broadcast 13 -11101001111 UH-60 13 -11101001111 ocean-going 13 -11101001111 Sidewinder 13 -11101001111 Nexis 13 -11101001111 C-123 13 -11101001111 post-Challenger 14 -11101001111 eight-inch 14 -11101001111 150-seat 14 -11101001111 automated-teller 14 -11101001111 methylene 16 -11101001111 Cobra 16 -11101001111 short-line 16 -11101001111 E-6A 17 -11101001111 anti-ballistic 17 -11101001111 Atlas-Centaur 17 -11101001111 piston 18 -11101001111 solid-rocket 18 -11101001111 six-cylinder 18 -11101001111 KC-135 19 -11101001111 F-4 19 -11101001111 F-14D 19 -11101001111 A-6E 19 -11101001111 carrier-based 19 -11101001111 F-5 20 -11101001111 superregional 20 -11101001111 noncommercial 20 -11101001111 solid-fuel 21 -11101001111 high-frequency 21 -11101001111 F-404 21 -11101001111 general-aviation 21 -11101001111 AH-64 21 -11101001111 single-engine 22 -11101001111 off-road 22 -11101001111 guided-missile 25 -11101001111 two-engine 26 -11101001111 AV-8B 26 -11101001111 E-2C 27 -11101001111 single-warhead 27 -11101001111 EA-6B 27 -11101001111 V-6 27 -11101001111 F-111 28 -11101001111 commerical 28 -11101001111 C-5 29 -11101001111 C-5B 29 -11101001111 V-8 30 -11101001111 extended-range 30 -11101001111 four-engine 30 -11101001111 four-cylinder 31 -11101001111 Sparrow 31 -11101001111 long-haul 31 -11101001111 non-stop 33 -11101001111 wide-bodied 33 -11101001111 nonbank 34 -11101001111 bleached 34 -11101001111 FA-18 35 -11101001111 rotary 36 -11101001111 air-launched 36 -11101001111 Tomahawk 37 -11101001111 Minuteman 38 -11101001111 F-100 39 -11101001111 transcontinental 40 -11101001111 supersonic 42 -11101001111 B-52 43 -11101001111 C-130 46 -11101001111 seamless 46 -11101001111 polyvinyl 50 -11101001111 Patriot 57 -11101001111 shipboard 73 -11101001111 twin-engine 76 -11101001111 peanut 76 -11101001111 80286 78 -11101001111 wide-body 82 -11101001111 vinyl 91 -11101001111 limited-service 93 -11101001111 monoclonal 95 -11101001111 B-1B 104 -11101001111 F-15 105 -11101001111 unmanned 115 -11101001111 Titan 118 -11101001111 F-14 120 -11101001111 undeveloped 135 -11101001111 coated 135 -11101001111 nonstop 145 -11101001111 Trident 163 -11101001111 toilet 169 -11101001111 80386 180 -11101001111 F-16 181 -11101001111 foreclosed 196 -11101001111 jumbo 259 -11101001111 Stealth 302 -11101001111 commuter 343 -11101001111 residential 877 -11101001111 commercial 8020 -11101001111 creditor 1065 -1110101000 foreign-stocks 1 -1110101000 ex-IRS 1 -1110101000 venture-fund 1 -1110101000 90-year-long 1 -1110101000 syndicalist 1 -1110101000 bigger-capitalized 1 -1110101000 Juneau-based 1 -1110101000 catalog-advertising 1 -1110101000 office-pool 1 -1110101000 Anamar 1 -1110101000 foreign-distribution 1 -1110101000 president-legal 1 -1110101000 nuclear-trading 1 -1110101000 slow-footed 1 -1110101000 too-tolerant 1 -1110101000 dollar-bond 1 -1110101000 byline-strike 1 -1110101000 credit-industry 1 -1110101000 frowned-on 1 -1110101000 educational-policy 1 -1110101000 sexy-looking 1 -1110101000 type-cast 1 -1110101000 pre-Thatcher 1 -1110101000 military-affairs 1 -1110101000 combat-readiness 1 -1110101000 comanaging 1 -1110101000 market-program 1 -1110101000 Monnell 1 -1110101000 cobwebbed 1 -1110101000 minority-issues 1 -1110101000 nucleic-acid 1 -1110101000 plant-utilization 1 -1110101000 brand-identity 1 -1110101000 medical-treatment 1 -1110101000 all-American-boy 1 -1110101000 tissue-like 1 -1110101000 Milwaukee-born 1 -1110101000 toxic-substances 1 -1110101000 330-member 1 -1110101000 Linne 1 -1110101000 I've-seen-it-all-don't-bother-me 1 -1110101000 lenghthy 1 -1110101000 best-graded 1 -1110101000 sixteenth-inch-thin 1 -1110101000 inflation-provoked 1 -1110101000 technical-development 1 -1110101000 78th-floor 1 -1110101000 trading-desk 1 -1110101000 sub-investment-grade 1 -1110101000 smoked-glass 1 -1110101000 ballot-access 1 -1110101000 licensing-industry 1 -1110101000 Hitchcock-style 1 -1110101000 woodcutting 1 -1110101000 musical-theater 1 -1110101000 weight-management 1 -1110101000 program-control 1 -1110101000 hard-maintained 1 -1110101000 legal-management 1 -1110101000 product-information 1 -1110101000 gangster-filled 1 -1110101000 wholesale-marketing 1 -1110101000 Counter-Reformation 1 -1110101000 equable 1 -1110101000 Clevelandbased 1 -1110101000 tuxedo-wearing 1 -1110101000 butterfly-and-leaf-covered 1 -1110101000 convertible-mutual-fund 1 -1110101000 snake-bitten 1 -1110101000 insurance-products 1 -1110101000 Southern-culture 1 -1110101000 pre-government 1 -1110101000 voting-behavior 1 -1110101000 bomb-proof 1 -1110101000 Boeskyesque 1 -1110101000 Eliseo 1 -1110101000 foreignexchange 1 -1110101000 convertible-fund 1 -1110101000 bullion-trading 1 -1110101000 energy-department 1 -1110101000 one-voiced 1 -1110101000 sharp-penciled 1 -1110101000 dumb-blond 1 -1110101000 Soviet-trade 1 -1110101000 television-remake 1 -1110101000 forensic-documents 1 -1110101000 residential-project 1 -1110101000 catalog-center 1 -1110101000 cancer-fearing 1 -1110101000 Seloken 1 -1110101000 Pulmicort 1 -1110101000 dance-company 1 -1110101000 military-market 1 -1110101000 litter-control 1 -1110101000 legislative-executive 1 -1110101000 mechanical-safety 1 -1110101000 Chinese-side 1 -1110101000 calculable 1 -1110101000 restaurant-development 1 -1110101000 142.85-yen 1 -1110101000 apple-Alar 1 -1110101000 country-development 1 -1110101000 cave-resources 1 -1110101000 once-fearsome 1 -1110101000 physicist-turned 1 -1110101000 fashion-business 1 -1110101000 financial-product 1 -1110101000 fire-walking 1 -1110101000 retail-marketing 1 -1110101000 nurse-education 1 -1110101000 marketing-strategies 1 -1110101000 urban-wildlife 1 -1110101000 twice-fired 1 -1110101000 Canadian-style 1 -1110101000 chemical-engineering 1 -1110101000 police-rodeo 1 -1110101000 Razumovsky 1 -1110101000 stress-claim 1 -1110101000 co-portfolio 1 -1110101000 company-qualifications 1 -1110101000 minority-equity 1 -1110101000 non-astronaut 1 -1110101000 physician/ 1 -1110101000 hostility-shy 1 -1110101000 spindly-looking 1 -1110101000 drug-trade 1 -1110101000 general-designate 1 -1110101000 space-electronics 1 -1110101000 district-judge 1 -1110101000 spotlight-stealing 1 -1110101000 Babylonesque 1 -1110101000 super-string 1 -1110101000 schoolbook 1 -1110101000 dirt-track 1 -1110101000 takeover-ravaged 1 -1110101000 Lexington-based 1 -1110101000 transportation-safety 1 -1110101000 JetScript 1 -1110101000 first-rerun 1 -1110101000 high-echelon 1 -1110101000 then-housing 1 -1110101000 160-member 1 -1110101000 exTreasury 1 -1110101000 149-yen 1 -1110101000 ex-Puma 1 -1110101000 consulting-firm 1 -1110101000 firing-room 1 -1110101000 civics-book 1 -1110101000 fill-in-your-favorite-epithet 1 -1110101000 ink-and-paint 1 -1110101000 merger-law 1 -1110101000 well-connnected 1 -1110101000 fixe-drate 1 -1110101000 publishing-management 1 -1110101000 covert-electronics 1 -1110101000 drug-ridden 1 -1110101000 Fiorani 1 -1110101000 space-lift 1 -1110101000 highpaid 1 -1110101000 free-television 1 -1110101000 GrantThornton 2 -1110101000 psychographic 2 -1110101000 hazardous-materials 2 -1110101000 two-legged 2 -1110101000 tart-tongued 2 -1110101000 Jackson-style 2 -1110101000 well-distributed 2 -1110101000 UCS 2 -1110101000 HiPro 2 -1110101000 legal-affairs 2 -1110101000 thirdlargest 2 -1110101000 generalship 2 -1110101000 market-timer 2 -1110101000 MoneyLetter 2 -1110101000 porcupine-haired 2 -1110101000 Criepi 2 -1110101000 farm-bank 2 -1110101000 rod-plant 2 -1110101000 most-sought-after 2 -1110101000 commission-regulated 2 -1110101000 Primatene 2 -1110101000 koza 2 -1110101000 business-PAC 2 -1110101000 health-and-beauty 2 -1110101000 bill-collection 2 -1110101000 air-combat 2 -1110101000 then-presidential 2 -1110101000 free-flying 2 -1110101000 off-year 2 -1110101000 tourist-information 2 -1110101000 bufferstock 2 -1110101000 left-led 2 -1110101000 clubland 2 -1110101000 six-legged 2 -1110101000 marine-habitat 2 -1110101000 co-general 2 -1110101000 health-worker 2 -1110101000 252,350 2 -1110101000 fair-site 2 -1110101000 Sipri 2 -1110101000 PMAI 2 -1110101000 body-sculpting 2 -1110101000 classified-advertising 2 -1110101000 flirty 3 -1110101000 MATIF 3 -1110101000 gas-company 3 -1110101000 Sotebeer 3 -1110101000 stock-lending 3 -1110101000 Dollywood 3 -1110101000 copper-industry 3 -1110101000 bird's-eye 3 -1110101000 400-person 4 -1110101000 president/general 4 -1110101000 military-academy 4 -1110101000 IBGE 5 -1110101000 Milanese 6 -1110101000 equity-investment 7 -1110101000 telephone-company 8 -1110101000 general 11639 -1110101000 taxpaying 12 -1110101001 interfered-with 1 -1110101001 mortgage-originating 1 -1110101001 over-cautious 1 -1110101001 airport-affairs 1 -1110101001 resarch 1 -1110101001 insurance-risk 1 -1110101001 SBKKV-centered 1 -1110101001 AlbertoCulver 1 -1110101001 disability-claims 1 -1110101001 legal-writing 1 -1110101001 Folgers-decaffeinated 1 -1110101001 apartment-leasing 1 -1110101001 ChemieHandelsgesellschaft 1 -1110101001 securities-division 1 -1110101001 advice-to-George 1 -1110101001 co-national 1 -1110101001 governmentrelations 1 -1110101001 then-Soviet 1 -1110101001 sports-sociology 1 -1110101001 tobacco-marketing 1 -1110101001 ssociate 1 -1110101001 unhysterical 1 -1110101001 insurance-defense 1 -1110101001 nerve-calming 1 -1110101001 FSLIC-appointed 1 -1110101001 OTC-journal 1 -1110101001 rescue-swimmer 1 -1110101001 automotive-plant 1 -1110101001 tile-floored 1 -1110101001 ex-ITT 1 -1110101001 arson-blackened 1 -1110101001 auto-group 1 -1110101001 platinum-tressed 1 -1110101001 molecular-biophysics 1 -1110101001 opportunity-scarce 1 -1110101001 molecular-biology 1 -1110101001 demand-analysis 1 -1110101001 corporate-research 1 -1110101001 sales-section 1 -1110101001 African-affairs 1 -1110101001 Sullivan/Dean 1 -1110101001 ex-deputy 1 -1110101001 Egypt-based 1 -1110101001 bluing 1 -1110101001 plant-safety 1 -1110101001 closet-puffing 1 -1110101001 gum-chewing 1 -1110101001 co-creative 1 -1110101001 airline-baggage 1 -1110101001 urban-planning 1 -1110101001 easy-info 1 -1110101001 Intermediate-the 1 -1110101001 company-benefits 1 -1110101001 ex-Volkswagen 1 -1110101001 40-store 1 -1110101001 annihilating 1 -1110101001 publicist/managerial 1 -1110101001 bloodclot-dissolving 1 -1110101001 polar-programs 1 -1110101001 AMERICAS 1 -1110101001 war-materials 1 -1110101001 state-revenue 1 -1110101001 nursing-magazine 1 -1110101001 cultural-affairs 1 -1110101001 consumer-division 1 -1110101001 mananging 1 -1110101001 34-hour 1 -1110101001 tobacco-ripening 1 -1110101001 supervisory-board 1 -1110101001 partnerof 1 -1110101001 market-planning 1 -1110101001 receptor-blocking 1 -1110101001 Gerate 1 -1110101001 gruff-spoken 1 -1110101001 joint-lead 1 -1110101001 nuclear-engineering 1 -1110101001 assitant 1 -1110101001 aviation-negotiations 1 -1110101001 gasoline-card 1 -1110101001 political-economy 1 -1110101001 office-park 1 -1110101001 ex-currency 1 -1110101001 emergency-operations 1 -1110101001 co-canvass 1 -1110101001 Tau 1 -1110101001 bridal-gifts 1 -1110101001 materials-management 1 -1110101001 jazz-dance 1 -1110101001 then-party 1 -1110101001 operations-oriented 1 -1110101001 co-acting 1 -1110101001 zap-happy 1 -1110101001 investment-research-firm 1 -1110101001 piano-tuning 1 -1110101001 employment-policy 1 -1110101001 bloody-handed 1 -1110101001 war-materiel 1 -1110101001 census-program 1 -1110101001 LCT 1 -1110101001 Venezuelan-born 1 -1110101001 then-attorney 1 -1110101001 imaging-industry 1 -1110101001 alligator-program 1 -1110101001 police-practices 1 -1110101001 fine-print-reading 1 -1110101001 ex-plant 1 -1110101001 Yulu 1 -1110101001 California-bred 1 -1110101001 crankier 1 -1110101001 food-division 1 -1110101001 bakery-department 1 -1110101001 super-ready 1 -1110101001 media-services 1 -1110101001 then-finance 1 -1110101001 already-higher 1 -1110101001 area-sales 1 -1110101001 space-sciences 1 -1110101001 financial-practices 1 -1110101001 loss-free 1 -1110101001 policy-affairs 1 -1110101001 country-specific 1 -1110101001 FDD/HDD 1 -1110101001 stick-to-it 1 -1110101001 NIE 1 -1110101001 in-charge 1 -1110101001 Informationsverarbeitung 1 -1110101001 marketing-data 1 -1110101001 actress/fitness 1 -1110101001 environmental-problems 1 -1110101001 benefits-planning 1 -1110101001 women's-clothing-store 1 -1110101001 here-are-the-facts 1 -1110101001 Mauthausen 1 -1110101001 Tokyo-branch 1 -1110101001 cocreative 1 -1110101001 tank-turret 1 -1110101001 reactor-licensing 1 -1110101001 radiation-research 1 -1110101001 chest-to-chest 1 -1110101001 beauty-school 1 -1110101001 Finnish-American 1 -1110101001 insurance-product 2 -1110101001 ad-industry 2 -1110101001 camera-store 2 -1110101001 materials-science 2 -1110101001 video-unit 2 -1110101001 HBS 2 -1110101001 co-artistic 2 -1110101001 women's-team 2 -1110101001 ex-managing 2 -1110101001 health-spa 2 -1110101001 Edinburgh-based 2 -1110101001 soft-commodity 2 -1110101001 co-executive 2 -1110101001 international-oil 2 -1110101001 broadcast-station 2 -1110101001 youngest-ever 2 -1110101001 aquatics 2 -1110101001 NWF 2 -1110101001 futures-research 3 -1110101001 anti-diabetes 3 -1110101001 Lebanese-American 3 -1110101001 engineering-school 3 -1110101001 material-division 3 -1110101001 art-gallery 4 -1110101001 bulking 4 -1110101001 Eberle 4 -1110101001 HEW 5 -1110101001 criminal-law 5 -1110101001 ex-CIA 6 -1110101001 loss-prevention 6 -1110101001 nonexecutive 13 -1110101001 editorial-features 15 -1110101001 brigadier 16 -1110101001 political-science 22 -1110101001 co-managing 34 -1110101001 non-executive 36 -1110101001 adjunct 49 -1110101001 honorary 67 -1110101001 associate 1467 -1110101001 deputy 1793 -1110101001 assistant 2327 -1110101001 managing 3722 -1110101010 214-acre 1 -1110101010 keen-eyed 1 -1110101010 Herrmann-Soiffer 1 -1110101010 Soiffer-Herrmann 1 -1110101010 DEBT-SADDLED 1 -1110101010 management-review 1 -1110101010 brown-haired 1 -1110101010 ever-congenial 1 -1110101010 still-to-be-met 1 -1110101010 get-away-car 1 -1110101010 once-impoverished 1 -1110101010 night-duty 1 -1110101010 Druish 1 -1110101010 gray-stubbled 1 -1110101010 Weehawken-based 1 -1110101010 great-great 1 -1110101010 Jamaican-born 1 -1110101010 self-hating 1 -1110101010 lordly 1 -1110101010 self-enriching 1 -1110101010 neo-liberal 1 -1110101010 quince 1 -1110101010 130-pound 1 -1110101010 126-pound 1 -1110101010 soberer 1 -1110101010 central-committee 1 -1110101010 frightened-looking 1 -1110101010 fly-ball-hitting 1 -1110101010 Balzacian 1 -1110101010 dipso 1 -1110101010 flood-lit 1 -1110101010 then-Fed 1 -1110101010 32-member 1 -1110101010 re-read 1 -1110101010 thrice-divorced 1 -1110101010 .208 1 -1110101010 God-appointed 1 -1110101010 brain-machine 1 -1110101010 labor-leaning 1 -1110101010 bullet-headed 1 -1110101010 12-term 1 -1110101010 business-owning 1 -1110101010 pre-import 1 -1110101010 once-muscular 1 -1110101010 co-principal 1 -1110101010 divine-looking 1 -1110101010 All-African 1 -1110101010 lion-faced 1 -1110101010 Buchlamer 1 -1110101010 once-sputtering 1 -1110101010 well-tanned 1 -1110101010 1970s-vintage 1 -1110101010 six-century 1 -1110101010 plainspoken 1 -1110101010 ageless 1 -1110101010 28-17 1 -1110101010 financial-newsletter 1 -1110101010 still-unchosen 1 -1110101010 1,453 1 -1110101010 Bass/Mechem 1 -1110101010 31st-floor 1 -1110101010 62,000-mile 1 -1110101010 500-rial 1 -1110101010 28-handicap 1 -1110101010 patronage-rich 1 -1110101010 shiftless 1 -1110101010 eunuch. 1 -1110101010 54-member 1 -1110101010 self-standing 1 -1110101010 abovementioned 1 -1110101010 small-stage 1 -1110101010 bug-eyed 1 -1110101010 fever-sick 1 -1110101010 coarse-tongued 1 -1110101010 mold-yard 1 -1110101010 mop-headed 1 -1110101010 PRSA 1 -1110101010 71-foot 1 -1110101010 1,700-ship 1 -1110101010 blood-and-guts 1 -1110101010 gay-family 1 -1110101010 Atlanta-born 1 -1110101010 taxi-company 1 -1110101010 bus-company 1 -1110101010 computer-generation 1 -1110101010 traitorous 1 -1110101010 steroid-pumped 1 -1110101010 then-editorial 1 -1110101010 47-inch 1 -1110101010 RB211-524 1 -1110101010 593-page 1 -1110101010 more-specialized 1 -1110101010 NACDL 1 -1110101010 Kiley-Gunn 1 -1110101010 feudalistic 1 -1110101010 Gilbert-and-Berreth 1 -1110101010 job-service 1 -1110101010 not-so-young 1 -1110101010 political-corporate 1 -1110101010 five-woman 1 -1110101010 since-traded 1 -1110101010 good-humor 1 -1110101010 policy-critiquing 1 -1110101010 Grumman-led 1 -1110101010 low-to-middle-income 1 -1110101010 Belfast-born 1 -1110101010 sixth-richest 1 -1110101010 shoulder-massaging 1 -1110101010 half-pack-a-day 1 -1110101010 thick-lipped 1 -1110101010 6-feet-4-inch 1 -1110101010 sales-hungry 1 -1110101010 60,000-man 1 -1110101010 Landegger 1 -1110101010 Bargersville 1 -1110101010 240-man 1 -1110101010 saddest-looking 1 -1110101010 al-Fayed 1 -1110101010 sheriff's-department 1 -1110101010 320-pound 1 -1110101010 libertarian-oriented 1 -1110101010 plump-faced 1 -1110101010 white-clad 1 -1110101010 cement-truck 1 -1110101010 still-favorite 1 -1110101010 non-Drexel 1 -1110101010 tie-back 1 -1110101010 whitehaired 1 -1110101010 tax-shy 1 -1110101010 Sicilian-born 1 -1110101010 green-eyed 1 -1110101010 IDCA 1 -1110101010 film-music 1 -1110101010 21,282,070 1 -1110101010 care-worn 1 -1110101010 unallied 1 -1110101010 non-Isham 1 -1110101010 inter-party 1 -1110101010 Kuwait-administered 1 -1110101010 snootiest 1 -1110101010 26inch 1 -1110101010 many-languaged 1 -1110101010 five-car 1 -1110101010 bit-part 1 -1110101010 kick-return 1 -1110101010 later-than-usual 1 -1110101010 pimple-faced 1 -1110101010 NPA. 1 -1110101010 grenade-toting 1 -1110101010 snowwhite 1 -1110101010 Kuba 1 -1110101010 maroon-robed 1 -1110101010 65-acre 1 -1110101010 clerk's-office 1 -1110101010 porn-movie 1 -1110101010 post-teen-age 1 -1110101010 testing-service 1 -1110101010 MPAA-appointed 1 -1110101010 110-floor 1 -1110101010 ex-Pemex 1 -1110101010 be-curlered 1 -1110101010 Labor-allied 1 -1110101010 262-foot-tall 1 -1110101010 shoe-shine 1 -1110101010 ju-ju 1 -1110101010 printing-plant 1 -1110101010 Pakistan-based 1 -1110101010 dry-bean 1 -1110101010 peglegged 1 -1110101010 hookah-smoking 1 -1110101010 U.S.-resident 1 -1110101010 rubber-faced 1 -1110101010 beatup 1 -1110101010 semi-abandoned 1 -1110101010 seriousminded 1 -1110101010 Iran-initiative 1 -1110101010 cardiac-arrest 1 -1110101010 more-cunning 1 -1110101010 Nascar 1 -1110101010 strongminded 1 -1110101010 guerrilla-alliance 1 -1110101010 multi-dimensional 1 -1110101010 middle-ranked 1 -1110101010 world-recognized 1 -1110101010 metal-oxide-silicon 1 -1110101010 once-unruly 1 -1110101010 once-abandoned 1 -1110101010 Iranian-influenced 1 -1110101010 ever-discreet 1 -1110101010 hardest-line 1 -1110101010 tax-book 1 -1110101010 Cubanized 1 -1110101010 steady-eyed 1 -1110101010 Life-alumnus 1 -1110101010 frizzle-tressed 1 -1110101010 surprised-looking 1 -1110101010 resservations 1 -1110101010 sea-slug 1 -1110101010 cereal-factory 1 -1110101010 blackknight 1 -1110101010 beer-newsletter 1 -1110101010 maternity-ward 1 -1110101010 25-hour 1 -1110101010 Iran-preoccupied 1 -1110101010 mailed-in 1 -1110101010 McCabe-Gordon 1 -1110101010 corporate/bankruptcy 1 -1110101010 Portuguese-built 1 -1110101010 PSUM-affiliated 1 -1110101010 physics-literate 1 -1110101010 far-more-efficient 1 -1110101010 mysterious-sounding 1 -1110101010 Bowen-Burke 1 -1110101010 hard-bargaining 1 -1110101010 madras-clad 1 -1110101010 youngest-looking 1 -1110101010 3-to-5 1 -1110101010 pudgy-faced 1 -1110101010 Western-supported 1 -1110101010 athletic-appearing 1 -1110101010 windburned 1 -1110101010 Johnson-family 1 -1110101010 near-blind 1 -1110101010 Paris-educated 1 -1110101010 non-wooden 1 -1110101010 high-count 1 -1110101010 Bechar 1 -1110101010 444-member 1 -1110101010 practical-joking 1 -1110101010 U.S.-Italian 1 -1110101010 spear-throwing 1 -1110101010 Dardi 1 -1110101010 ginger-haired 1 -1110101010 profilic 1 -1110101010 betel-leaf 1 -1110101010 Manhattan-raised 1 -1110101010 10-year-long 1 -1110101010 face-mask-wearing 1 -1110101010 halfway-decent 1 -1110101010 Mimran 1 -1110101010 23-team 1 -1110101010 review-committee 1 -1110101010 wiseacre 1 -1110101010 swimsuit-clad 1 -1110101010 295,950 1 -1110101010 pop-eyed 1 -1110101010 track-testing 1 -1110101010 Yukon-sired 1 -1110101010 3,500-volume 1 -1110101010 best-preserved 1 -1110101010 protectionist-sounding 1 -1110101010 shaer 1 -1110101010 France-sized 1 -1110101010 Church-going 1 -1110101010 Bronx-born 1 -1110101010 now-divorced 1 -1110101010 seven-term 1 -1110101010 sausage-fingered 1 -1110101010 BOTCHED 1 -1110101010 oversexed 1 -1110101010 butter-smooth 1 -1110101010 12-carrier 1 -1110101010 free-market-minded 1 -1110101010 twodoor 1 -1110101010 bread-truck 1 -1110101010 skinniest 1 -1110101010 34-acre 1 -1110101010 daddy's-girl 1 -1110101010 plain-clothed 1 -1110101010 ex-thug 1 -1110101010 Ty-D-bol 1 -1110101010 Rio-based 1 -1110101010 Getty-controlled 1 -1110101010 revival-style 1 -1110101010 draft-Reagan-for-president 1 -1110101010 mouse-type 1 -1110101010 most-qualified 1 -1110101010 accounting-practices 1 -1110101010 lumber-mill 1 -1110101010 ex-U.N. 1 -1110101010 12-yearold 1 -1110101010 new-account 1 -1110101010 bold-eyed 1 -1110101010 Yankees-Boston 1 -1110101010 crowd-pulling 1 -1110101010 755-acre 1 -1110101010 garden-lined 1 -1110101010 supplest 1 -1110101010 patrician-looking 1 -1110101010 news-crew 1 -1110101010 single-arched 1 -1110101010 broader-minded 1 -1110101010 Lorimar-Telepicture 1 -1110101010 pistol-wielding 1 -1110101010 I've-seen-it-all 1 -1110101010 populist-minded 1 -1110101010 milk-delivery 1 -1110101010 craggy-headed 1 -1110101010 public-relation 1 -1110101010 95-pound 1 -1110101010 round-cheeked 1 -1110101010 once-bedraggled 1 -1110101010 deconsolidated 1 -1110101010 Victorian-looking 1 -1110101010 single-unit 1 -1110101010 then-Miami 1 -1110101010 curly-blonde 1 -1110101010 hoo 1 -1110101010 garment-factory 1 -1110101010 prejudice-free 1 -1110101010 14-handicap 1 -1110101010 Brooklyn-accented 1 -1110101010 once-inflexible 1 -1110101010 more-streamlined 1 -1110101010 yet-to-be-born 1 -1110101010 250,000-man 1 -1110101010 over-wintering 1 -1110101010 high-cheekboned 1 -1110101010 not-so-photogenic 1 -1110101010 fashion-minded 1 -1110101010 bond-desk 1 -1110101010 morning-talk-show 1 -1110101010 new-ideas 1 -1110101010 acquisition-hunting 1 -1110101010 ruddy-cheeked 1 -1110101010 Duchaine 1 -1110101010 hundred-day 1 -1110101010 blue-bottled 1 -1110101010 father-and-son 1 -1110101010 fogbound 1 -1110101010 park-maintenance 1 -1110101010 pro-Batista 1 -1110101010 PICKY 1 -1110101010 puzzle-posing 1 -1110101010 tappable 1 -1110101010 self-resurrected 1 -1110101010 peace-through-strength 1 -1110101010 taffy-colored 1 -1110101010 roaringly 1 -1110101010 sports-facilities 1 -1110101010 bare-lipped 1 -1110101010 barramunda 1 -1110101010 stern-faced 1 -1110101010 three-pump 1 -1110101010 loop-tailed 1 -1110101010 23-or-so-year-old 1 -1110101010 fur-coated 1 -1110101010 goriest 1 -1110101010 335,000-square-foot 1 -1110101010 Leiters 1 -1110101010 Campodonico 1 -1110101010 body-stamping 1 -1110101010 Bogart-type 1 -1110101010 elfin-faced 1 -1110101010 Lithuanian-born 1 -1110101010 razor-tongued 1 -1110101010 forty-second 1 -1110101010 still-blond 1 -1110101010 chic-looking 1 -1110101010 regulatory-agency 1 -1110101010 still-bearish 1 -1110101010 petty-minded 1 -1110101010 non-company 1 -1110101010 playwright/lawyer 1 -1110101010 transcendental-meditation 1 -1110101010 guitar-playing 1 -1110101010 177-page 1 -1110101010 Brezhnevite 1 -1110101010 fiftyish 1 -1110101010 civilian-backed 1 -1110101010 305-page 1 -1110101010 miffs 1 -1110101010 seventh-generation 1 -1110101010 158-nation 1 -1110101010 deaf-mute 1 -1110101010 student-supported 1 -1110101010 longest-surviving 1 -1110101010 repressively 1 -1110101010 roboticized 1 -1110101010 stentorian-voiced 1 -1110101010 nowdefunct 1 -1110101010 debt-saddled 1 -1110101010 Lucas-Klein 1 -1110101010 100-employee 1 -1110101010 title-holding 1 -1110101010 sunburnt 1 -1110101010 most-talked-about 1 -1110101010 delicate-looking 1 -1110101010 cat-crazy 1 -1110101010 trade-section 1 -1110101010 market-manipulating 1 -1110101010 speech-impaired 1 -1110101010 tour-bus 1 -1110101010 publicity-mad 1 -1110101010 pink-skinned 1 -1110101010 much-less-fearsome 1 -1110101010 Yoda 1 -1110101010 second-echelon 1 -1110101010 Khomeini-inspired 1 -1110101010 two-child 1 -1110101010 harsh-looking 1 -1110101010 six-foot-four 1 -1110101010 64-player 1 -1110101010 ex-KGB 1 -1110101010 dark-bearded 1 -1110101010 sixman 1 -1110101010 crackhouse 1 -1110101010 925,746 1 -1110101010 unlikeable 1 -1110101010 beetled 1 -1110101010 publishing-company 1 -1110101010 Unpopular 1 -1110101010 pilot-appointed 1 -1110101010 heavy-sweating 1 -1110101010 Reagan/Deaver 1 -1110101010 Ukrainian-born 1 -1110101010 credit-recovery 1 -1110101010 900-ship 1 -1110101010 worn-looking 1 -1110101010 once-unprofitable 1 -1110101010 yet-to-be-named 1 -1110101010 information-counter 1 -1110101010 USOC. 1 -1110101010 placid-looking 1 -1110101010 Particle 1 -1110101010 ever-successful 1 -1110101010 PLA 1 -1110101010 thirdplace 1 -1110101010 love-starved 1 -1110101010 promotion-minded 1 -1110101010 Toronto-Michigan 1 -1110101010 2,100-square-foot 1 -1110101010 goo-goo-eyed 1 -1110101010 Danilovsky 1 -1110101010 DOE-site 1 -1110101010 prestidigitating 1 -1110101010 world-and 1 -1110101010 Sollogub 1 -1110101010 test-flight 1 -1110101010 U.N-funded 1 -1110101010 bright-blue 1 -1110101010 exposure-conscious 1 -1110101010 272-pound 1 -1110101010 12-year-veteran 1 -1110101010 non-negotiating 1 -1110101010 potato-like 1 -1110101010 Christrian 1 -1110101010 company-hired 1 -1110101010 gruff-looking 1 -1110101010 old-as-the-century 1 -1110101010 Hassidic 1 -1110101010 Meridian-First 1 -1110101010 lead-line-swinging 1 -1110101010 now-paunchy 1 -1110101010 two-cigar-a-day 1 -1110101010 Naples-born 1 -1110101010 Norwegian-American 1 -1110101010 Oklahoma-born 1 -1110101010 leather-lunged 1 -1110101010 steel-fingered 1 -1110101010 dumb-but-sweet 1 -1110101010 just-arrived 1 -1110101010 pigtailed 1 -1110101010 not-so-skeptical 1 -1110101010 seven-beer 1 -1110101010 six-beer 1 -1110101010 Kasler-Rados 1 -1110101010 bowie 1 -1110101010 black-uniformed 1 -1110101010 50-ish 1 -1110101010 275-plus 1 -1110101010 all-tourney 1 -1110101010 acid-penned 1 -1110101010 30-to 1 -1110101010 AEA/Zschau 1 -1110101010 PSC. 1 -1110101010 Havasupai 1 -1110101010 Treasury-led 1 -1110101010 non-charismatic 1 -1110101010 physical-training 1 -1110101010 track-suited 1 -1110101010 bubble-covered 1 -1110101010 broken-hearted 1 -1110101010 pestiest 1 -1110101010 wellborn 1 -1110101010 WGBH. 1 -1110101010 mussel 1 -1110101010 330,000-square-foot 1 -1110101010 bigshot 1 -1110101010 keno 1 -1110101010 un-Volkswagenlike 1 -1110101010 Palmer/Caygill 1 -1110101010 downtownish 1 -1110101010 stick-up 1 -1110101010 drugged-up 1 -1110101010 diamond-eared 1 -1110101010 154-foot 1 -1110101010 pro-student 1 -1110101010 jean-clad 1 -1110101010 Soviet-educated 1 -1110101010 white-robed 1 -1110101010 sometimes-divided 1 -1110101010 glass-eating 1 -1110101010 Collins-instigated 1 -1110101010 middle-distance 1 -1110101010 cardiac-rehabilitation 1 -1110101010 60ish 1 -1110101010 Montreal-born 1 -1110101010 then-obscure 1 -1110101010 sour-sounding 1 -1110101010 22-term 1 -1110101010 flattened-out 1 -1110101010 state-constructed 1 -1110101010 drug-case 1 -1110101010 home-service 1 -1110101010 carpet-wrapped 1 -1110101010 Larraneta 1 -1110101010 mud-splattered 1 -1110101010 now-fired 1 -1110101010 hitherto-unknown 1 -1110101010 brakeson 1 -1110101010 140,000-barrel-a-day 1 -1110101010 chicken-in-every-pot 1 -1110101010 120,000-employee 1 -1110101010 mud-spattered 1 -1110101010 10,000th 1 -1110101010 British-trained 1 -1110101010 chi-chi 1 -1110101010 30-meter 1 -1110101010 salty-tongued 1 -1110101010 toi 1 -1110101010 botanist-gardener-plant 1 -1110101010 Wilson-to-Jim 1 -1110101010 best-picture 1 -1110101010 stamping-plant 1 -1110101010 Pittsburgh-born 1 -1110101010 3,215 1 -1110101010 -46.7 1 -1110101010 flower-planting 1 -1110101010 small-boned 1 -1110101010 600-person 1 -1110101010 Dbase 1 -1110101010 senior-management-led 1 -1110101010 2,000-unit 1 -1110101010 family-practice 1 -1110101010 celebration-wet 1 -1110101010 leather-jacketed 1 -1110101010 TV-addicted 1 -1110101010 company-trained 1 -1110101010 fraud-busting 1 -1110101010 live-out 1 -1110101010 polyrhythmic 1 -1110101010 plausible-sounding 1 -1110101010 holed-up 1 -1110101010 woven-wire 1 -1110101010 California-educated 1 -1110101010 still-standing 1 -1110101010 Casper-based 1 -1110101010 prosecutorial-minded 1 -1110101010 Jupiter-bound 1 -1110101010 Coastal-owned 1 -1110101010 metal-clad 1 -1110101010 muzak 1 -1110101010 PTO 1 -1110101010 torch-hoisting 1 -1110101010 Lockheed-led 1 -1110101010 Sokehs 1 -1110101010 godfearing 1 -1110101010 long-insolvent 1 -1110101010 tomato-planting 1 -1110101010 studious-looking 1 -1110101010 as-yet-anonymous 1 -1110101010 five-billionth 1 -1110101010 once-spare 1 -1110101010 Nixon-appointed 1 -1110101010 several-inch-thick 1 -1110101010 NALU. 1 -1110101010 deadline-pressed 1 -1110101010 co-operating 1 -1110101010 not-quite-prime-time 1 -1110101010 second-century 1 -1110101010 titian-haired 1 -1110101010 pleasant-looking 1 -1110101010 tabloid-newspaper 1 -1110101010 non-Sperry 1 -1110101010 22-company 1 -1110101010 peace-negotiating 1 -1110101010 growth-limiting 1 -1110101010 computer-age 1 -1110101010 Eisner-Wells 1 -1110101010 cost-minimizing 1 -1110101010 ECPA. 1 -1110101010 five-handicap 1 -1110101010 all-time-best 1 -1110101010 Elardi 1 -1110101010 quarter-moon 1 -1110101010 then-22-year-old 1 -1110101010 software-company 1 -1110101010 religious-book 1 -1110101010 sit-com-sweetie 1 -1110101010 threater-owning 1 -1110101010 100-site 1 -1110101010 whiskey-baritoned 1 -1110101010 blowzy 1 -1110101010 yet-unannounced 1 -1110101010 jovial-looking 1 -1110101010 campaign-memorabilia 1 -1110101010 cautery 1 -1110101010 flour-division 1 -1110101010 drug-pushing 1 -1110101010 strong-faced 1 -1110101010 JOA. 1 -1110101010 fib 1 -1110101010 self-willed 1 -1110101010 12-week-old 1 -1110101010 post-Eisenhower 1 -1110101010 highly-opinionated 1 -1110101010 lizard-lounge 1 -1110101010 heavy-spending 1 -1110101010 beauteous 1 -1110101010 p-----off 1 -1110101010 transistor-radio-sized 1 -1110101010 Eliel 1 -1110101010 spaced-out 1 -1110101010 avant-guard 1 -1110101010 post-Freudian 1 -1110101010 crop-haired 1 -1110101010 Magdalenic 1 -1110101010 Bogota-based 1 -1110101010 skinny-legged 1 -1110101010 ore-truck 1 -1110101010 plain-thinking 1 -1110101010 Cheyenne-Arapaho 1 -1110101010 2,000-kilowatt 1 -1110101010 Four-Day 1 -1110101010 media-blitzed 1 -1110101010 capacity-swollen 1 -1110101010 675-store 1 -1110101010 cherubic-faced 1 -1110101010 Wisconsin-born 1 -1110101010 Baghdad-based 1 -1110101010 stage-struck 1 -1110101010 gruff-speaking 1 -1110101010 Stanford-Idec 1 -1110101010 Bard-Tauscher 1 -1110101010 LHX. 1 -1110101010 ever-imaginative 1 -1110101010 small-bore 1 -1110101010 gray-browed 1 -1110101010 Libyan-born 1 -1110101010 pearl-encrusted 1 -1110101010 Schawlow-Townes 1 -1110101010 firm-by-firm 1 -1110101010 starcrossed 1 -1110101010 32-foot-long 1 -1110101010 outprepared 1 -1110101010 12,000-barrel-a-day 1 -1110101010 non-CAA 1 -1110101010 Pollet 1 -1110101010 Kalashnikov-wielding 1 -1110101010 Zenchu-affiliated 1 -1110101010 managment-led 1 -1110101010 1,095-foot 1 -1110101010 now-flat 1 -1110101010 quota-happy 1 -1110101010 reddish-haired 1 -1110101010 40-yearold 1 -1110101010 35-ish 1 -1110101010 controversy-prone 1 -1110101010 Massachusetts-Texas 1 -1110101010 payroll-related 2 -1110101010 3,500-member 2 -1110101010 nervous-looking 2 -1110101010 Swiss-French 2 -1110101010 100,000-member 2 -1110101010 dollar-boosting 2 -1110101010 far-larger 2 -1110101010 multi-millionaire 2 -1110101010 armor-clad 2 -1110101010 Paris-born 2 -1110101010 cancer-ridden 2 -1110101010 bowling-center 2 -1110101010 elfin-looking 2 -1110101010 Aquino-appointed 2 -1110101010 debt-lightened 2 -1110101010 TRW. 2 -1110101010 near-successful 2 -1110101010 velvet-voiced 2 -1110101010 hollow-cheeked 2 -1110101010 American-trained 2 -1110101010 treasury-department 2 -1110101010 thieving 2 -1110101010 spike-haired 2 -1110101010 five-term 2 -1110101010 soft-porn 2 -1110101010 beardless 2 -1110101010 320-acre 2 -1110101010 cash-flush 2 -1110101010 metal-industry 2 -1110101010 uppermiddle-class 2 -1110101010 mercado 2 -1110101010 communist-backed 2 -1110101010 235-pound 2 -1110101010 Monday-morning 2 -1110101010 six-foot-tall 2 -1110101010 self-published 2 -1110101010 long-struggling 2 -1110101010 dyslexic 2 -1110101010 children's-book 2 -1110101010 now-ousted 2 -1110101010 PRI-affiliated 2 -1110101010 rock-band 2 -1110101010 pro-Socialist 2 -1110101010 lap-dog 2 -1110101010 Shanghai-born 2 -1110101010 highway-department 2 -1110101010 inner-directed 2 -1110101010 Soviet-born 2 -1110101010 restaurant-chain 2 -1110101010 Bombay-based 2 -1110101010 taxi-bureau 2 -1110101010 bosomy 2 -1110101010 Jerusalem-based 2 -1110101010 television-sports 2 -1110101010 six-time 2 -1110101010 lisping 2 -1110101010 14,000-member 2 -1110101010 homeowning 2 -1110101010 newly-elected 2 -1110101010 untenured 2 -1110101010 multi-windowed 2 -1110101010 slow-talking 2 -1110101010 blunt-talking 2 -1110101010 ever-engaging 2 -1110101010 since-deposed 2 -1110101010 psychopathic 2 -1110101010 31-man 2 -1110101010 160,000-member 2 -1110101010 Pinsley 2 -1110101010 weary-looking 2 -1110101010 low-rolling 2 -1110101010 then-acting 2 -1110101010 French-born 2 -1110101010 SAT. 2 -1110101010 Riverview 2 -1110101010 regional-bank 2 -1110101010 Colombia-based 2 -1110101010 all-Reagan 2 -1110101010 once-dormant 2 -1110101010 190-room 2 -1110101010 UMNO. 2 -1110101010 Springfield-based 2 -1110101010 pipsqueak 2 -1110101010 frolicsome 2 -1110101010 red-bearded 2 -1110101010 shoeless 2 -1110101010 bony-faced 2 -1110101010 two-lawyer 2 -1110101010 158-year-old 2 -1110101010 350-lawyer 2 -1110101010 trust-company 2 -1110101010 French-style 2 -1110101010 Najieh 2 -1110101010 blue-jeaned 2 -1110101010 ertswhile 2 -1110101010 6-foot-tall 2 -1110101010 strategy-setting 2 -1110101010 friendly-looking 2 -1110101010 briefcase-toting 2 -1110101010 mid-ranking 2 -1110101010 pre-mixed 2 -1110101010 screenwriting 2 -1110101010 protean 2 -1110101010 security-police 2 -1110101010 green-jacketed 2 -1110101010 UE 2 -1110101010 well-cared-for 2 -1110101010 once-giant 2 -1110101010 already-insolvent 2 -1110101010 105-lawyer 2 -1110101010 14-term 2 -1110101010 Mexican-born 2 -1110101010 five-to-seven-year 2 -1110101010 187-lawyer 2 -1110101010 Bass-controlled 2 -1110101010 economy-minded 2 -1110101010 flatland 2 -1110101010 non-gerrymandered 2 -1110101010 near-legendary 2 -1110101010 GS-5 2 -1110101010 1,000-room 2 -1110101010 racing-car 2 -1110101010 170-year-old 2 -1110101010 youngish 2 -1110101010 crack-dealing 2 -1110101010 Malaysian-based 2 -1110101010 self-admitted 2 -1110101010 115-pound 2 -1110101010 K&E 2 -1110101010 sixtyish 2 -1110101010 metal-headed 2 -1110101010 then-independent 2 -1110101010 vulgarian 2 -1110101010 three-pound 2 -1110101010 Danish-born 2 -1110101010 Royal/Dutch 2 -1110101010 nonpracticing 2 -1110101010 Inuk 2 -1110101010 Honzawa 2 -1110101010 French-trained 2 -1110101010 26-story 2 -1110101010 5-foot-3 2 -1110101010 Rice-a-Roni 2 -1110101010 stiff-backed 2 -1110101010 steepled 2 -1110101010 4-year-old 2 -1110101010 Spokane-based 2 -1110101010 Romanian-born 2 -1110101010 Mesmer 2 -1110101010 Otay 2 -1110101010 40,000-man 2 -1110101010 ham-fisted 2 -1110101010 opera-singer 2 -1110101010 courtappointed 2 -1110101010 16,000-man 2 -1110101010 many-time 2 -1110101010 more-difficult 2 -1110101010 top-most 2 -1110101010 most-revered 2 -1110101010 diabolic 2 -1110101010 just-resigned 2 -1110101010 460,000-acre 2 -1110101010 pig-headed 2 -1110101010 SBA. 2 -1110101010 heavy-hitting 2 -1110101010 Reaganized 2 -1110101010 ex-Guinness 2 -1110101010 re-employed 2 -1110101010 great-great-great 2 -1110101010 cupped 2 -1110101010 silvery-haired 2 -1110101010 fed-up 2 -1110101010 cosmetics-industry 2 -1110101010 crash-investigation 2 -1110101010 Texas-born 2 -1110101010 Dutch-born 2 -1110101010 nine-acre 2 -1110101010 5-inch 2 -1110101010 latterday 2 -1110101010 ex-Scallop 2 -1110101010 bellweather 2 -1110101010 150-member 3 -1110101010 Egyptian-born 3 -1110101010 blunt-speaking 3 -1110101010 pro-Moscow 3 -1110101010 Sunday-night 3 -1110101010 shipping-company 3 -1110101010 dark-eyed 3 -1110101010 hat-check 3 -1110101010 robed 3 -1110101010 three-company 3 -1110101010 French-Canadian 3 -1110101010 195-pound 3 -1110101010 diversification-minded 3 -1110101010 quiet-spoken 3 -1110101010 Czechoslovakian-born 3 -1110101010 red-and-blue 3 -1110101010 slack-jawed 3 -1110101010 drugged-out 3 -1110101010 plain-talking 3 -1110101010 then-NSC 3 -1110101010 defense-contracts 3 -1110101010 22-month-old 3 -1110101010 guilt-ridden 3 -1110101010 flashiest 3 -1110101010 Italian-born 3 -1110101010 straight-shooting 3 -1110101010 bemedaled 3 -1110101010 156-year-old 3 -1110101010 athletic-looking 3 -1110101010 ex-Navy 3 -1110101010 pear-shaped 3 -1110101010 4,000-member 3 -1110101010 36-story 3 -1110101010 250,000-member 3 -1110101010 Jewish-born 3 -1110101010 Chandris 3 -1110101010 crack-infested 3 -1110101010 last-day 3 -1110101010 waggish 3 -1110101010 45-man 3 -1110101010 Japanese-born 3 -1110101010 Goelet 3 -1110101010 poker-playing 3 -1110101010 heart-surgery 3 -1110101010 Texaco-owned 3 -1110101010 98-year-old 3 -1110101010 500-member 3 -1110101010 stuntman 3 -1110101010 Yale-educated 3 -1110101010 executive-committee 3 -1110101010 Tore 3 -1110101010 self-confessed 3 -1110101010 insomniac 3 -1110101010 KGB-trained 3 -1110101010 fifth-term 3 -1110101010 twinkly 3 -1110101010 conservative-dominated 3 -1110101010 much-admired 3 -1110101010 now-discredited 3 -1110101010 sweat-soaked 3 -1110101010 SSC. 3 -1110101010 chandeliered 3 -1110101010 ever-cautious 3 -1110101010 war-hardened 3 -1110101010 bankruptcy-case 3 -1110101010 no-fee 3 -1110101010 Chrysanthemum 3 -1110101010 180-pound 3 -1110101010 control-tower 3 -1110101010 4-inch 3 -1110101010 low-handicap 3 -1110101010 500-lawyer 3 -1110101010 computer-company 3 -1110101010 second-term 3 -1110101010 strongwilled 3 -1110101010 founding-family 3 -1110101010 ramrod-straight 4 -1110101010 tobacco-industry 4 -1110101010 5-foot-7-inch 4 -1110101010 Chadds 4 -1110101010 freckle-faced 4 -1110101010 6-foot-5-inch 4 -1110101010 5-year-old 4 -1110101010 faction-ridden 4 -1110101010 two-pack-a-day 4 -1110101010 6-foot-3-inch 4 -1110101010 Austrian-born 4 -1110101010 62-story 4 -1110101010 silver-tongued 4 -1110101010 101-year-old 4 -1110101010 93-year-old 4 -1110101010 physical-education 4 -1110101010 land-owning 4 -1110101010 Emir 4 -1110101010 fourth-ranking 4 -1110101010 unicameral 4 -1110101010 washed-out 4 -1110101010 light-hitting 4 -1110101010 Oaxacan 4 -1110101010 crew-cut 4 -1110101010 social-climbing 4 -1110101010 China-born 4 -1110101010 motherly 4 -1110101010 music-store 4 -1110101010 NSC. 4 -1110101010 nine-term 4 -1110101010 pipe-smoking 4 -1110101010 BYU 4 -1110101010 takeover-minded 4 -1110101010 6-foot-7-inch 4 -1110101010 well-born 4 -1110101010 Moronic 4 -1110101010 GAF. 4 -1110101010 stumpy 5 -1110101010 shirt-sleeved 5 -1110101010 smalltown 5 -1110101010 now-insolvent 5 -1110101010 grandmotherly 5 -1110101010 70-pound 5 -1110101010 15-lawyer 5 -1110101010 blunt-spoken 5 -1110101010 peach-colored 5 -1110101010 non-elected 5 -1110101010 four-time 5 -1110101010 125-year-old 5 -1110101010 Russian-born 5 -1110101010 110-story 5 -1110101010 once-obscure 5 -1110101010 statuesque 5 -1110101010 now-disbanded 5 -1110101010 bow-tied 5 -1110101010 abolitionist 5 -1110101010 250-pound 5 -1110101010 curly-haired 5 -1110101010 poker-faced 5 -1110101010 15-acre 5 -1110101010 92-year-old 5 -1110101010 rosy-cheeked 5 -1110101010 less-visible 5 -1110101010 quasi-independent 6 -1110101010 Pesh 6 -1110101010 ne'er-do-well 6 -1110101010 redheaded 6 -1110101010 raffish 6 -1110101010 Canton-based 6 -1110101010 Fuzzy 6 -1110101010 16-month-old 6 -1110101010 hot-shot 6 -1110101010 softspoken 6 -1110101010 straight-talking 6 -1110101010 Scottish-born 6 -1110101010 Vermont-based 6 -1110101010 Russian-speaking 6 -1110101010 long-serving 6 -1110101010 Pied 6 -1110101010 distinguished-looking 6 -1110101010 baby-faced 6 -1110101010 6-foot-4-inch 6 -1110101010 pro-Solidarity 7 -1110101010 leftwing 7 -1110101010 10-person 7 -1110101010 futures-industry 7 -1110101010 91-year-old 7 -1110101010 two-star 7 -1110101010 150-lawyer 7 -1110101010 Rip 7 -1110101010 U.S.-operated 7 -1110101010 jeering 7 -1110101010 Manila-based 7 -1110101010 21-month-old 7 -1110101010 500-room 7 -1110101010 Hungarian-born 7 -1110101010 shoe-store 7 -1110101010 6-foot-2-inch 7 -1110101010 sandy-haired 7 -1110101010 then-CIA 7 -1110101010 then-deputy 7 -1110101010 good-humored 7 -1110101010 budget-priced 7 -1110101010 bloodthirsty 8 -1110101010 gangly 8 -1110101010 vivacious 8 -1110101010 redoubtable 8 -1110101010 31-year 8 -1110101010 now-retired 8 -1110101010 Brooklyn-born 8 -1110101010 10-term 8 -1110101010 four-term 8 -1110101010 now-imprisoned 8 -1110101010 one-term 8 -1110101010 public-information 8 -1110101010 37-year 8 -1110101010 89-year-old 8 -1110101010 desk-bound 8 -1110101010 grandfatherly 9 -1110101010 Shanghai-based 9 -1110101010 five-time 9 -1110101010 now-deceased 9 -1110101010 youthful-looking 9 -1110101010 Nez 9 -1110101010 Brooklyn-based 9 -1110101010 10-month-old 10 -1110101010 plain-spoken 10 -1110101010 94-year-old 10 -1110101010 unsmiling 10 -1110101010 Canadian-born 10 -1110101010 broad-shouldered 10 -1110101010 cigar-chomping 10 -1110101010 barrel-chested 10 -1110101010 street-smart 11 -1110101010 live-in 12 -1110101010 88-year-old 13 -1110101010 trusty 13 -1110101010 grizzled 13 -1110101010 tough-talking 13 -1110101010 Harvard-trained 13 -1110101010 spunky 13 -1110101010 red-haired 14 -1110101010 Korean-American 14 -1110101010 doting 14 -1110101010 husband-and-wife 14 -1110101010 American-born 14 -1110101010 90-year-old 15 -1110101010 cigar-smoking 15 -1110101010 Australian-born 15 -1110101010 titular 15 -1110101010 top-ranking 16 -1110101010 German-born 16 -1110101010 third-year 16 -1110101010 mild-mannered 18 -1110101010 four-man 18 -1110101010 second-ranked 18 -1110101010 portly 18 -1110101010 23-year 18 -1110101010 S.S. 18 -1110101010 84-year-old 18 -1110101010 86-year-old 19 -1110101010 swank 19 -1110101010 22-year 19 -1110101010 19-year 19 -1110101010 three-term 19 -1110101010 fast-talking 19 -1110101010 husky 20 -1110101010 100-year-old 21 -1110101010 78-year-old 21 -1110101010 one-year-old 22 -1110101010 beefy 22 -1110101010 third-ranking 22 -1110101010 boyish-looking 22 -1110101010 16th-century 23 -1110101010 latter-day 23 -1110101010 hard-charging 24 -1110101010 British-born 24 -1110101010 Harvard-educated 24 -1110101010 79-year-old 24 -1110101010 five-man 24 -1110101010 Cuban-born 25 -1110101010 dapper 25 -1110101010 81-year-old 26 -1110101010 diminutive 26 -1110101010 73-year-old 28 -1110101010 third-generation 30 -1110101010 two-term 30 -1110101010 82-year-old 30 -1110101010 gray-haired 31 -1110101010 wily 32 -1110101010 scandal-plagued 34 -1110101010 tireless 35 -1110101010 69-year-old 36 -1110101010 77-year-old 37 -1110101010 silver-haired 38 -1110101010 76-year-old 38 -1110101010 74-year-old 38 -1110101010 lame-duck 41 -1110101010 75-year-old 41 -1110101010 mid-level 41 -1110101010 three-man 44 -1110101010 68-year-old 45 -1110101010 72-year-old 45 -1110101010 reclusive 45 -1110101010 80-year-old 46 -1110101010 lanky 46 -1110101010 white-haired 48 -1110101010 nine-year-old 56 -1110101010 bespectacled 57 -1110101010 strong-willed 59 -1110101010 66-year-old 60 -1110101010 67-year-old 62 -1110101010 71-year-old 62 -1110101010 22-year-old 62 -1110101010 14-year-old 67 -1110101010 burly 67 -1110101010 12-year-old 72 -1110101010 16-year-old 72 -1110101010 65-year-old 73 -1110101010 21-year-old 75 -1110101010 27-year-old 77 -1110101010 36-year-old 78 -1110101010 self-described 79 -1110101010 19-year-old 80 -1110101010 61-year-old 81 -1110101010 26-year-old 82 -1110101010 64-year-old 82 -1110101010 long-time 83 -1110101010 13-year-old 84 -1110101010 lifelong 85 -1110101010 31-year-old 86 -1110101010 62-year-old 87 -1110101010 17-year-old 88 -1110101010 23-year-old 89 -1110101010 28-year-old 91 -1110101010 six-year-old 94 -1110101010 70-year-old 94 -1110101010 63-year-old 95 -1110101010 47-year-old 96 -1110101010 34-year-old 97 -1110101010 33-year-old 97 -1110101010 10-year-old 98 -1110101010 49-year-old 98 -1110101010 25-year-old 98 -1110101010 32-year-old 100 -1110101010 24-year-old 101 -1110101010 29-year-old 101 -1110101010 54-year-old 102 -1110101010 59-year-old 102 -1110101010 37-year-old 102 -1110101010 35-year-old 103 -1110101010 55-year-old 106 -1110101010 57-year-old 107 -1110101010 52-year-old 108 -1110101010 56-year-old 108 -1110101010 58-year-old 110 -1110101010 48-year-old 114 -1110101010 46-year-old 117 -1110101010 53-year-old 119 -1110101010 42-year-old 122 -1110101010 outgoing 124 -1110101010 51-year-old 124 -1110101010 39-year-old 125 -1110101010 43-year-old 132 -1110101010 45-year-old 133 -1110101010 30-year-old 133 -1110101010 38-year-old 135 -1110101010 60-year-old 140 -1110101010 41-year-old 142 -1110101010 now-defunct 142 -1110101010 44-year-old 147 -1110101010 50-year-old 157 -1110101010 40-year-old 168 -1110101010 embattled 178 -1110101010 high-ranking 209 -1110101010 disgruntled 212 -1110101010 court-appointed 226 -1110101010 former 16616 -1110101010 longtime 995 -1110101011 mediumterm 1 -1110101011 cement-industry 1 -1110101011 commmittee 1 -1110101011 fascist-left 1 -1110101011 variablerate 1 -1110101011 more-agressive 1 -1110101011 large-fund 1 -1110101011 equity-risk 1 -1110101011 just-retired 1 -1110101011 acquisition-heightened 1 -1110101011 19,000-employee 1 -1110101011 taxpayer-supplied 1 -1110101011 asbestos-health 1 -1110101011 chairman-of-the-board 1 -1110101011 suntan-lotion 1 -1110101011 ill-deployed 1 -1110101011 floridly 1 -1110101011 already-established 1 -1110101011 least-experienced 1 -1110101011 personal-asset 1 -1110101011 strategy-forming 1 -1110101011 size-standards 1 -1110101011 pension-money 1 -1110101011 MSure 1 -1110101011 disaster-planning 1 -1110101011 semiconducter 1 -1110101011 technology-policy 1 -1110101011 transit-union 1 -1110101011 Swiss-securities 1 -1110101011 coarse-grains 1 -1110101011 wastedisposal 1 -1110101011 political-communications 1 -1110101011 pharmaceuticals-industry 1 -1110101011 not-so-hot 1 -1110101011 Nobel-prize-winning 1 -1110101011 Swiss-companies 1 -1110101011 60-person 1 -1110101011 four-lettered 1 -1110101011 pseudo-secular 1 -1110101011 AIDB 1 -1110101011 higher-echelon 1 -1110101011 UA1 1 -1110101011 research-firm 1 -1110101011 clubbable 1 -1110101011 review-course 1 -1110101011 relief-organization 1 -1110101011 nuclear-strategy 1 -1110101011 soon-to-retire 1 -1110101011 tax-committee 1 -1110101011 Argonne-Gould 1 -1110101011 15year 1 -1110101011 dollar-issue 1 -1110101011 company-based 1 -1110101011 strength-portfolio 1 -1110101011 team-based 1 -1110101011 business-economics 1 -1110101011 Papuan 1 -1110101011 casinoindustry 1 -1110101011 acrylic-topped 1 -1110101011 roasting-company 1 -1110101011 computer-governed 1 -1110101011 convertible-securities 1 -1110101011 green-eyeshades 1 -1110101011 drug-stock 1 -1110101011 recession-wary 1 -1110101011 thrill-a-pitch 1 -1110101011 17,631 1 -1110101011 street-repair 1 -1110101011 Arab-state 1 -1110101011 Western-states 1 -1110101011 weapons-software 1 -1110101011 golf-tournament 1 -1110101011 fish-department 1 -1110101011 UAW-Ford 1 -1110101011 brewing-operations 1 -1110101011 innocent-seeming 1 -1110101011 health-association 1 -1110101011 shareholder-oriented 1 -1110101011 most-quoted 1 -1110101011 Reagan-named 1 -1110101011 Peru-like 1 -1110101011 music-personality 1 -1110101011 nursing-related 1 -1110101011 window-washing 1 -1110101011 subordinatd 1 -1110101011 motor-industry 1 -1110101011 medication-use 1 -1110101011 Kadarist 1 -1110101011 PR-conscious 1 -1110101011 Organizacion 1 -1110101011 professional-liability-risk 1 -1110101011 gutter-talking 1 -1110101011 696-page 1 -1110101011 15-property 1 -1110101011 car-quality 1 -1110101011 Halmos-led 1 -1110101011 technical-planning 1 -1110101011 primitive-arts 1 -1110101011 laboratory-minded 1 -1110101011 G-7769 1 -1110101011 subordindated 1 -1110101011 investment-house 1 -1110101011 black-bourgeoisie 1 -1110101011 state-insurance 1 -1110101011 lesser-light 1 -1110101011 Bedouin-based 1 -1110101011 Chun-administration 1 -1110101011 Tettamanti-led 1 -1110101011 HFV 1 -1110101011 23-bank 1 -1110101011 medicial 1 -1110101011 ex-NBC 1 -1110101011 consumer-behavior 1 -1110101011 claims-service 1 -1110101011 law-practice 1 -1110101011 Hanmi 1 -1110101011 McGraw-Hill/DRI 1 -1110101011 7,500-worker 1 -1110101011 hotel/restaurant 1 -1110101011 first-name-basis 1 -1110101011 roadster-style 1 -1110101011 regulative 1 -1110101011 well-programmed 1 -1110101011 professorial-looking 1 -1110101011 two-pilot 1 -1110101011 three-faction 1 -1110101011 railroad-industry 1 -1110101011 BRA 1 -1110101011 financial-research 1 -1110101011 smoking-addiction 1 -1110101011 Rasmus 1 -1110101011 cost-benefits 1 -1110101011 utilities-industry 1 -1110101011 handson 2 -1110101011 casino-industry 2 -1110101011 earlier-maturing 2 -1110101011 EARNS 2 -1110101011 budget-and-tax 2 -1110101011 leather-clad 2 -1110101011 Joyous 2 -1110101011 four-bank 2 -1110101011 4,143 2 -1110101011 public-union 2 -1110101011 Carter-administration 2 -1110101011 2,059,456 2 -1110101011 mining-industry 2 -1110101011 Novacap 2 -1110101011 Western-trained 2 -1110101011 Sirenevyy 2 -1110101011 pharmaceutical-industry 2 -1110101011 Single-A-minus 2 -1110101011 private-company 3 -1110101011 construction-trades 3 -1110101011 Chinese-speaking 3 -1110101011 new-products 3 -1110101011 foreign-ministry 3 -1110101011 non-tenured 3 -1110101011 non-Texas 3 -1110101011 corporate-benefits 3 -1110101011 low-class 3 -1110101011 Yale-trained 3 -1110101011 turbaned 3 -1110101011 Nobel-laureate 3 -1110101011 product-marketing 3 -1110101011 Ektaprint 3 -1110101011 power-industry 4 -1110101011 growth-minded 4 -1110101011 gambling-industry 4 -1110101011 textile-industry 4 -1110101011 mortgage-company 4 -1110101011 sharp-eyed 5 -1110101011 nine-man 5 -1110101011 Taipei-based 5 -1110101011 publishing-industry 5 -1110101011 strategic-planning 6 -1110101011 26-member 8 -1110101011 chemical-industry 9 -1110101011 six-man 11 -1110101011 Soviet-trained 13 -1110101011 tenured 22 -1110101011 midlevel 28 -1110101011 utility-bond 32 -1110101011 human-resources 33 -1110101011 senior 12934 -1110101011 junior 605 -111010110 cystic-fibrosis 1 -111010110 Romantic-era 1 -111010110 Cro-Magnonesque 1 -111010110 non-supporting 1 -111010110 chipster 1 -111010110 cardboard-cutout 1 -111010110 Lohengrin-like 1 -111010110 bladder-cancer 1 -111010110 French-system 1 -111010110 look-but-don't-touch 1 -111010110 postmenopausal 1 -111010110 not-very-nice 1 -111010110 now-forgotten 1 -111010110 swing-era 1 -111010110 wageearning 1 -111010110 peacock-shaped 1 -111010110 never-crowned 1 -111010110 logging-company 1 -111010110 Sun-2 1 -111010110 leeching 1 -111010110 enhaloed 1 -111010110 comp. 1 -111010110 7,000,000 1 -111010110 four-ton 1 -111010110 glib-talking 1 -111010110 black-frocked 1 -111010110 brake-warning 1 -111010110 more-than-9,400 1 -111010110 orange-and-black 1 -111010110 just-out-of-college 1 -111010110 filmland 1 -111010110 76,579 1 -111010110 synchronized-swimming 1 -111010110 shiny-shoe 1 -111010110 trench-style 1 -111010110 faded-denim 1 -111010110 sharp-nailed 1 -111010110 already-vaccinated 1 -111010110 nonscreened 1 -111010110 4,159 1 -111010110 majority-ruled 1 -111010110 non-middle-class 1 -111010110 18,226 1 -111010110 bermuda 1 -111010110 second-income 1 -111010110 bellringing 1 -111010110 short-statured 1 -111010110 once-neglected 1 -111010110 coal-refining 1 -111010110 6,254 1 -111010110 multipocketed 1 -111010110 Kansas-educated 1 -111010110 6,520 1 -111010110 2,041 1 -111010110 tool-wielding 1 -111010110 green-eye-shade 1 -111010110 sight/The 1 -111010110 aluminum-plated 1 -111010110 non-Shiite 1 -111010110 most-illiterate 1 -111010110 tomato-flavor 1 -111010110 fad-prone 1 -111010110 2,200-student 1 -111010110 floppy-eared 1 -111010110 65-to-69-year-old 1 -111010110 heretic-hunting 1 -111010110 sad-looking 1 -111010110 232,600 1 -111010110 rock-liberated 1 -111010110 rostered 1 -111010110 non-Medicaid-eligible 1 -111010110 96,865 1 -111010110 conch-Cuban-Bahamian 1 -111010110 N.Y.P.D. 1 -111010110 estate-bottled 1 -111010110 hicktown 1 -111010110 angry-faced 1 -111010110 full-breasted 1 -111010110 Townarea 1 -111010110 big-muscled 1 -111010110 ground-nesting 1 -111010110 Greek-letter 1 -111010110 understimulated 1 -111010110 post-Exilic 1 -111010110 stiff-necked 1 -111010110 power-in-numbers 1 -111010110 7,188 1 -111010110 neon-ribbed 1 -111010110 power-addled 1 -111010110 chalk-ware 1 -111010110 samurai-style 1 -111010110 Venusian 1 -111010110 heavy-breathing 1 -111010110 slumped-shouldered 1 -111010110 sea-life 1 -111010110 twenty-two-year-old 1 -111010110 white-and-yellow 1 -111010110 Parsee 1 -111010110 Wallis-blue 1 -111010110 growth-deficient 1 -111010110 non-Southern 1 -111010110 swallowtail 1 -111010110 tile-and-marble 1 -111010110 goal-directed 1 -111010110 bayfront 1 -111010110 check/blind 1 -111010110 best-of-five-set 1 -111010110 seven-spotted 1 -111010110 multi-problem 1 -111010110 peewee 1 -111010110 proper-looking 1 -111010110 mandarinlike 1 -111010110 armless 1 -111010110 presidential-preference 1 -111010110 high-school-educated 1 -111010110 briard 1 -111010110 Allium 1 -111010110 slow-growth/no-growth 1 -111010110 bebaubled 1 -111010110 lower-wattage 1 -111010110 fan-wielding 1 -111010110 best-treated 1 -111010110 Pandava 1 -111010110 Ivatan 1 -111010110 textile-factory 1 -111010110 telephone-fraud 1 -111010110 well-followed 1 -111010110 calorie-conscious 1 -111010110 printing-factory 1 -111010110 S&M 1 -111010110 most-hacked-at 1 -111010110 homberg 1 -111010110 cutsey-poo 1 -111010110 poor-family 1 -111010110 credentialed 1 -111010110 street-gang 1 -111010110 voting-eligible 1 -111010110 bunko 1 -111010110 fur-trading 1 -111010110 softboiled 1 -111010110 long-striking 1 -111010110 denim-clad 1 -111010110 18-to-24-year-old 1 -111010110 toy-factory 1 -111010110 delible 1 -111010110 maatjes 1 -111010110 mid-budget 1 -111010110 single-headed 1 -111010110 multijob 1 -111010110 37,654 1 -111010110 boozed-out 1 -111010110 Finnish-speaking 1 -111010110 5,025 1 -111010110 406,887 1 -111010110 leopard-spot 1 -111010110 old-stock 1 -111010110 30,708 1 -111010110 lower-rung 1 -111010110 673,565 1 -111010110 prescreened 1 -111010110 semiskilled 1 -111010110 anthropoid 1 -111010110 latch-key 1 -111010110 Kilauea 1 -111010110 northern-bred 1 -111010110 cop/black 1 -111010110 cop/young 1 -111010110 man-hating 1 -111010110 55-foot-tall 1 -111010110 dope-peddling 1 -111010110 metalic-tipped 1 -111010110 pinheaded 1 -111010110 under-21 1 -111010110 late-century 1 -111010110 nonpublic-assistance 1 -111010110 growth-stunted 1 -111010110 evzone 1 -111010110 fanaticized 1 -111010110 water-logged 1 -111010110 wanderlustful 1 -111010110 12-inch-diameter 1 -111010110 herringbone 1 -111010110 wellpaying 1 -111010110 fundamendalist 1 -111010110 ill-conditioned 1 -111010110 detroit 1 -111010110 Russo-American 1 -111010110 nacho-crunching 1 -111010110 travel-weary 1 -111010110 nonadopted 1 -111010110 rock-hurling 1 -111010110 difficult-to-place 1 -111010110 2,238 1 -111010110 strawberry-blond 1 -111010110 two-wage 1 -111010110 ham-actress 1 -111010110 31,754,000 1 -111010110 moonshiner-turned-stock-car 1 -111010110 spun-sugar 1 -111010110 2,129 1 -111010110 stuck-up 1 -111010110 lowest-strata 1 -111010110 Halevy 1 -111010110 DENK 1 -111010110 three-or-more 1 -111010110 super-nervous 1 -111010110 3,845 1 -111010110 4,962 1 -111010110 one-million-dollar 1 -111010110 Hezbollah-affiliated 1 -111010110 pretty-faced 1 -111010110 Sabaneta 1 -111010110 femaleheaded 1 -111010110 whalesized 1 -111010110 one-income 1 -111010110 mob-linked 1 -111010110 bassist/ 1 -111010110 guitar-strumming 1 -111010110 single-wage-earner 1 -111010110 swamp-style 1 -111010110 crack-using 1 -111010110 knuckle-headed 1 -111010110 be-thonged 1 -111010110 17,187 1 -111010110 old-maid 1 -111010110 Williamsesque 1 -111010110 Scandinavian-American 1 -111010110 27,548 1 -111010110 recidivist 1 -111010110 anti-heroic 1 -111010110 unframed 1 -111010110 crack-addicted 1 -111010110 mallard-dotted 1 -111010110 mansy-pansy 1 -111010110 beauty-parlor 1 -111010110 top-scale 1 -111010110 58,682 1 -111010110 74-store 1 -111010110 dual-employed 1 -111010110 Greek-Cypriot 1 -111010110 Sparta-loving 1 -111010110 broad-beamed 1 -111010110 business-history 1 -111010110 bull-fight 1 -111010110 gonad 1 -111010110 Glaswegian 1 -111010110 immune-suppressed 1 -111010110 low-birth-weight 2 -111010110 graffiti-covered 2 -111010110 prepubescent 2 -111010110 Karimabad 2 -111010110 gray-suited 2 -111010110 last-second 2 -111010110 buffo 2 -111010110 2,029 2 -111010110 rock-concert 2 -111010110 half-breed 2 -111010110 reenforcing 2 -111010110 effectual 2 -111010110 singsong 2 -111010110 2,500-year-old 2 -111010110 style-conscious 2 -111010110 blue-jean 2 -111010110 family-type 2 -111010110 finny 2 -111010110 cauterizing 2 -111010110 rock-star 2 -111010110 psychotherapeutic 2 -111010110 pre-pubescent 2 -111010110 legless 2 -111010110 white-skinned 2 -111010110 100,000-acre 2 -111010110 large-mouth 2 -111010110 laidoff 2 -111010110 Ashkenazic 2 -111010110 Western-state 2 -111010110 lake-front 2 -111010110 Hickey-Freeman 2 -111010110 hooch 2 -111010110 Dostoevskian 2 -111010110 U.S.-reflagged 2 -111010110 flat-topped 2 -111010110 Vietnamese-American 2 -111010110 minority-language 2 -111010110 steak-and-potatoes 2 -111010110 Millsboro 2 -111010110 antibody-free 2 -111010110 bare-breasted 2 -111010110 satin-lined 2 -111010110 team-owned 2 -111010110 pensioned 2 -111010110 job-bank 2 -111010110 day-and-night 2 -111010110 best-fed 2 -111010110 non-priority 2 -111010110 fresh-tasting 2 -111010110 porky 2 -111010110 large-circulation 2 -111010110 small-city 2 -111010110 fecally 2 -111010110 white-gloved 2 -111010110 nicotine-stained 2 -111010110 unworldly 2 -111010110 plummy 2 -111010110 dour-looking 2 -111010110 sex-obsessed 2 -111010110 65-pound 2 -111010110 French-educated 2 -111010110 city-financed 2 -111010110 junior-level 2 -111010110 split-shift 2 -111010110 WASP-ish 2 -111010110 sharp-edged 2 -111010110 second-best-selling 2 -111010110 shrewder 2 -111010110 sniveling 2 -111010110 middle-brow 2 -111010110 Ersatz 2 -111010110 peacenik 2 -111010110 second-trust 2 -111010110 down-at-the-mouth 2 -111010110 two-worker 2 -111010110 dual-earner 2 -111010110 movie-mad 2 -111010110 spy-agency 2 -111010110 higher-earning 2 -111010110 1,645 2 -111010110 whitish 2 -111010110 single-person 2 -111010110 Balinese 2 -111010110 crossword-puzzle 2 -111010110 4,081 2 -111010110 12,666 2 -111010110 CFTO 2 -111010110 smeary 2 -111010110 humanitarian-assistance 2 -111010110 love-struck 2 -111010110 tough-looking 2 -111010110 pimply-faced 2 -111010110 well-credentialed 2 -111010110 2,394 2 -111010110 time-traveling 2 -111010110 non-combat 2 -111010110 Melanoma 2 -111010110 two-household 2 -111010110 1,200-pound 2 -111010110 central-Tokyo 2 -111010110 dwarfish 2 -111010110 weird-looking 2 -111010110 nice-looking 2 -111010110 odd-duck 2 -111010110 untalented 2 -111010110 church-affiliated 2 -111010110 Diaoyutai 2 -111010110 Soviet-type 2 -111010110 anti-authority 2 -111010110 raggedy 2 -111010110 ethnic-German 2 -111010110 less-ill 2 -111010110 14-karat 2 -111010110 nonphysician 2 -111010110 neo-Fascist 2 -111010110 reedy 2 -111010110 dinky 2 -111010110 whole-body 2 -111010110 mosquito-infested 2 -111010110 uncircumcised 2 -111010110 near-sighted 2 -111010110 government-party 2 -111010110 melting-pot 2 -111010110 one-plant 2 -111010110 Straussian 2 -111010110 car-racing 2 -111010110 propped-up 2 -111010110 scullery 2 -111010110 Hydra 2 -111010110 Hopkins-trained 2 -111010110 shedlike 2 -111010110 green-clad 2 -111010110 undercounts 2 -111010110 under-qualified 2 -111010110 gold-digging 2 -111010110 140-pound 2 -111010110 Clonard 2 -111010110 disenfranchising 2 -111010110 steel-mesh 2 -111010110 humane-society 2 -111010110 pre-menopausal 2 -111010110 bluecollar 2 -111010110 titanium-dioxide 2 -111010110 sleazy-looking 2 -111010110 shape-note 2 -111010110 kennel-club 2 -111010110 blasphemes 2 -111010110 un-Christian 2 -111010110 strip-tease 2 -111010110 MaGrath 2 -111010110 dry-ice 2 -111010110 junior-team 2 -111010110 Izala 2 -111010110 community-college 2 -111010110 full-featured 2 -111010110 18-carat 2 -111010110 menacing-looking 2 -111010110 pure-bred 2 -111010110 frail-looking 2 -111010110 well-coiffed 2 -111010110 palsied 2 -111010110 non-Vietnam 2 -111010110 wide-brimmed 2 -111010110 high-producing 2 -111010110 professional-looking 2 -111010110 drug-dependent 2 -111010110 new-breed 2 -111010110 righthand 2 -111010110 attack-dog 2 -111010110 wood-block 2 -111010110 postdated 2 -111010110 three-car 2 -111010110 unscented 2 -111010110 stout-hearted 2 -111010110 ponytailed 2 -111010110 pubescent 2 -111010110 drawling 2 -111010110 democratic-minded 2 -111010110 pasty-faced 2 -111010110 once-docile 2 -111010110 never-say-die 2 -111010110 late-1940s 2 -111010110 loud-mouthed 2 -111010110 '51 2 -111010110 mail-room 2 -111010110 splendiferous 2 -111010110 white-liberal 2 -111010110 hate-filled 2 -111010110 saber-toothed 2 -111010110 menopausal 2 -111010110 insulation-plant 2 -111010110 Ganden 2 -111010110 unstudied 2 -111010110 conjur 2 -111010110 once-rich 2 -111010110 scaredy 2 -111010110 maned 2 -111010110 pre-adolescent 2 -111010110 4,681,845 2 -111010110 race-walking 2 -111010110 vicuna 2 -111010110 non-liberal 2 -111010110 gray-and-white 2 -111010110 one-armed 3 -111010110 unclothed 3 -111010110 red-eyed 3 -111010110 under-50 3 -111010110 red-brown 3 -111010110 800-acre 3 -111010110 blond-haired 3 -111010110 Triple-X 3 -111010110 two-wage-earner 3 -111010110 tumbledown 3 -111010110 blue-haired 3 -111010110 Porcupine 3 -111010110 split-level 3 -111010110 cannibal 3 -111010110 polka-dotted 3 -111010110 terpsichorean 3 -111010110 dope-smoking 3 -111010110 well-grounded 3 -111010110 pussy 3 -111010110 grandes 3 -111010110 middle-manager 3 -111010110 Anatolian 3 -111010110 vote-seeking 3 -111010110 purebred 3 -111010110 Calvinist 3 -111010110 teal 3 -111010110 then-unknown 3 -111010110 madder 3 -111010110 dim-witted 3 -111010110 23-month-old 3 -111010110 country-rock 3 -111010110 group-practice 3 -111010110 cockney 3 -111010110 over-40 3 -111010110 flat-earth 3 -111010110 husband-wife 3 -111010110 springy 3 -111010110 tuxedoed 3 -111010110 Guazapa 3 -111010110 long-gone 3 -111010110 jet-black 3 -111010110 more-productive 3 -111010110 chivalric 3 -111010110 flamingo 3 -111010110 front-desk 3 -111010110 what-me-worry 3 -111010110 resident-alien 3 -111010110 lynx 3 -111010110 nonsupervisory 3 -111010110 incapacitating 3 -111010110 long-limbed 3 -111010110 yodeling 3 -111010110 Gobbler 3 -111010110 disunited 3 -111010110 gallant 3 -111010110 beetle-browed 3 -111010110 toe-tapping 3 -111010110 kilted 3 -111010110 organ-donor 3 -111010110 priggish 3 -111010110 pointy-headed 3 -111010110 hard-flying 3 -111010110 Tahitian 3 -111010110 cliff-top 3 -111010110 backbreaking 3 -111010110 hard-muscled 3 -111010110 ribald 3 -111010110 rising-sun 3 -111010110 primary-school 3 -111010110 second-grade 3 -111010110 bald-headed 3 -111010110 fierce-looking 3 -111010110 tentlike 3 -111010110 motherless 3 -111010110 cornrow 3 -111010110 teddy-bear 3 -111010110 novel-writing 3 -111010110 couch-bound 3 -111010110 hardnosed 3 -111010110 painkilling 3 -111010110 quarried 3 -111010110 once-formidable 3 -111010110 bombed-out 3 -111010110 Revisionist 3 -111010110 foot-tall 3 -111010110 first-growth 3 -111010110 60-pound 3 -111010110 weather-driven 3 -111010110 private-practice 3 -111010110 light-brown 3 -111010110 peep-show 3 -111010110 quality-conscious 3 -111010110 11,806 3 -111010110 non-Islamic 3 -111010110 spit-and-polish 3 -111010110 scaly 3 -111010110 foreign-trained 3 -111010110 rickshaw 3 -111010110 dual-income 3 -111010110 drop-dead 3 -111010110 Nahuatl 3 -111010110 negro 3 -111010110 finches 3 -111010110 pearl-handled 3 -111010110 operating-room 3 -111010110 internal-medicine 3 -111010110 moderate-liberal 3 -111010110 sleazeball 3 -111010110 parakeets 3 -111010110 Jacobean 3 -111010110 Western-looking 3 -111010110 mestizo 3 -111010110 refugee-camp 3 -111010110 snotty 3 -111010110 open-collar 3 -111010110 seeing-eye 3 -111010110 conscript 3 -111010110 Hangzhou 3 -111010110 six-pound 3 -111010110 unacknowledged 3 -111010110 seven-inch 3 -111010110 cavelike 3 -111010110 velour 3 -111010110 Huguenot 3 -111010110 dart-throwing 3 -111010110 theater-party 3 -111010110 unlettered 3 -111010110 eight-foot-tall 3 -111010110 throaty 3 -111010110 mean-looking 3 -111010110 fistic 3 -111010110 pot-bellied 3 -111010110 drug-impaired 3 -111010110 north-side 3 -111010110 snippy 3 -111010110 nippy 3 -111010110 Redeemer 3 -111010110 25-foot-high 3 -111010110 moussed 3 -111010110 Magnitka 3 -111010110 kicky 3 -111010110 multitalented 3 -111010110 featherweight 3 -111010110 mewling 3 -111010110 money-grubbing 3 -111010110 gold-trimmed 3 -111010110 152,400 3 -111010110 microsocial 3 -111010110 industrial-state 3 -111010110 girlhood 3 -111010110 Southern-born 3 -111010110 AWBA 3 -111010110 1,776 3 -111010110 Ismaili 3 -111010110 Belorussian 4 -111010110 up-river 4 -111010110 farm-belt 4 -111010110 bolo 4 -111010110 hotheaded 4 -111010110 middle-American 4 -111010110 sinewy 4 -111010110 Colima 4 -111010110 teary-eyed 4 -111010110 self-professed 4 -111010110 fatherless 4 -111010110 centralist 4 -111010110 self-dramatizing 4 -111010110 auburn 4 -111010110 oldline 4 -111010110 Autocephalous 4 -111010110 Uniate 4 -111010110 150-pound 4 -111010110 Brut 4 -111010110 over-65 4 -111010110 85th 4 -111010110 cigarette-smoking 4 -111010110 hot-headed 4 -111010110 effervescent 4 -111010110 homebound 4 -111010110 greenest 4 -111010110 smooth-faced 4 -111010110 1,223 4 -111010110 foreign-educated 4 -111010110 drug-addicted 4 -111010110 coloured 4 -111010110 TV-commercial 4 -111010110 semi-educated 4 -111010110 Iban 4 -111010110 wage-earning 4 -111010110 hard-driven 4 -111010110 misclassified 4 -111010110 Trotskyite 4 -111010110 Piltdown 4 -111010110 non-black 4 -111010110 5-foot-10-inch 4 -111010110 doe-eyed 4 -111010110 knife-wielding 4 -111010110 light-blue 4 -111010110 riotous 4 -111010110 tawny 4 -111010110 closet-sized 4 -111010110 sober-sided 4 -111010110 pluralist 4 -111010110 church-going 4 -111010110 well-turned-out 4 -111010110 non-career 4 -111010110 consumptive 4 -111010110 pro-regulation 4 -111010110 buttonholing 4 -111010110 lowbrow 4 -111010110 citified 4 -111010110 antibody-positive 4 -111010110 teacup 4 -111010110 willowy 4 -111010110 degreed 4 -111010110 cheesy 4 -111010110 stockade 4 -111010110 squirmy 4 -111010110 rifle-toting 4 -111010110 spiny 4 -111010110 spidery 4 -111010110 hardhearted 4 -111010110 elfin 4 -111010110 jet-lagged 4 -111010110 stentorian 4 -111010110 40-foot-long 4 -111010110 self-educated 4 -111010110 pearly 4 -111010110 1,752 4 -111010110 white-tailed 4 -111010110 Stalin-era 4 -111010110 sniffling 4 -111010110 Aymara 4 -111010110 overachieving 4 -111010110 folk-singing 4 -111010110 Amerasian 4 -111010110 pock-marked 4 -111010110 bobby 4 -111010110 windblown 4 -111010110 slinky 4 -111010110 flame-retardant 4 -111010110 bleeding-heart 4 -111010110 blue-suited 4 -111010110 far-seeing 4 -111010110 rolled-up 4 -111010110 brown-skinned 4 -111010110 fiery-eyed 4 -111010110 kitschy 4 -111010110 curvaceous 4 -111010110 wearable 4 -111010110 high-stepping 4 -111010110 hard-to-adopt 4 -111010110 ill-tempered 4 -111010110 shelf-stable 4 -111010110 6-foot-7 4 -111010110 chocolate-coated 4 -111010110 heifer 4 -111010110 speckled 4 -111010110 mud-hut 4 -111010110 corpulent 4 -111010110 constipated 4 -111010110 meatless 4 -111010110 monounsaturated 4 -111010110 oxymoronic 4 -111010110 Xhosa 4 -111010110 spastic 4 -111010110 furrowed 4 -111010110 anti-Long 4 -111010110 macrobiotic 4 -111010110 Pierrot 4 -111010110 LDS 4 -111010110 roller-skating 4 -111010110 Szechuan 4 -111010110 bitchy 4 -111010110 ABA-approved 4 -111010110 dime-store 4 -111010110 well-groomed 4 -111010110 muscle-bound 4 -111010110 much-loved 4 -111010110 faithless 4 -111010110 escapist 4 -111010110 fair-weather 4 -111010110 flirtatious 4 -111010110 buttoned-up 4 -111010110 higher-salaried 4 -111010110 monosodium 4 -111010110 draft-age 4 -111010110 neolithic 4 -111010110 geranium 4 -111010110 nonstriking 4 -111010110 workman-like 4 -111010110 never-married 4 -111010110 technology-stock 4 -111010110 headier 4 -111010110 full-term 4 -111010110 incontinent 4 -111010110 repentant 4 -111010110 non-verbal 4 -111010110 warmhearted 4 -111010110 Transylvanian 4 -111010110 self-aggrandizing 5 -111010110 stoical 5 -111010110 countercultural 5 -111010110 razor-sharp 5 -111010110 wind-up 5 -111010110 know-it-all 5 -111010110 piquant 5 -111010110 magenta 5 -111010110 self-involved 5 -111010110 SRO 5 -111010110 breathy 5 -111010110 liberal-left 5 -111010110 drug-sniffing 5 -111010110 uncirculated 5 -111010110 wind-blown 5 -111010110 limited-government 5 -111010110 downscale 5 -111010110 white-water 5 -111010110 uncultivated 5 -111010110 formless 5 -111010110 gossamer 5 -111010110 indolent 5 -111010110 ill-trained 5 -111010110 outmanned 5 -111010110 Sotho 5 -111010110 northbound 5 -111010110 scrimshaw 5 -111010110 oceanside 5 -111010110 board-certified 5 -111010110 peerless 5 -111010110 funny-looking 5 -111010110 profit-minded 5 -111010110 one-earner 5 -111010110 well-endowed 5 -111010110 stressed-out 5 -111010110 long-dead 5 -111010110 panic-stricken 5 -111010110 computer-literate 5 -111010110 new-wave 5 -111010110 Siamese 5 -111010110 liver-transplant 5 -111010110 Shropshire 5 -111010110 100-foot 5 -111010110 big-game 5 -111010110 nosy 5 -111010110 dyed-in-the-wool 5 -111010110 rhinestone 5 -111010110 220-pound 5 -111010110 ditzy 5 -111010110 celibate 5 -111010110 Mennonite 5 -111010110 fire-resistant 5 -111010110 freedom-loving 5 -111010110 sober-minded 5 -111010110 haired 5 -111010110 red-headed 5 -111010110 chapped 5 -111010110 nutrient-rich 5 -111010110 mulatto 5 -111010110 war-weary 5 -111010110 terraced 5 -111010110 unsalaried 5 -111010110 non-germane 5 -111010110 locked-out 5 -111010110 well-ordered 5 -111010110 adoptable 5 -111010110 self-mocking 5 -111010110 petting 5 -111010110 grammar-school 5 -111010110 surrealist 5 -111010110 his-and-her 5 -111010110 Latin-American 5 -111010110 spindly 5 -111010110 sky-blue 5 -111010110 washing-machine 5 -111010110 churchgoing 5 -111010110 early-evening 5 -111010110 nubile 5 -111010110 hard-drinking 5 -111010110 autistic 5 -111010110 weepy 5 -111010110 uncooked 5 -111010110 bikini-clad 5 -111010110 odder 5 -111010110 pre-selected 5 -111010110 slouching 5 -111010110 world-champion 5 -111010110 anti-science 5 -111010110 despotic 5 -111010110 10-gallon 5 -111010110 well-spoken 5 -111010110 lascivious 5 -111010110 glass-walled 5 -111010110 emancipated 5 -111010110 fast-buck 5 -111010110 half-eaten 5 -111010110 tubby 5 -111010110 form-fitting 5 -111010110 uncongenial 5 -111010110 martyred 5 -111010110 deep-fried 5 -111010110 federalized 5 -111010110 new-collar 5 -111010110 nonworking 5 -111010110 white-coated 5 -111010110 rosewood 5 -111010110 Battleship 5 -111010110 certifiable 5 -111010110 illegal-immigrant 5 -111010110 leadoff 5 -111010110 rightwing 5 -111010110 train-service 5 -111010110 four-inch 6 -111010110 backward-looking 6 -111010110 tubercular 6 -111010110 tin-roofed 6 -111010110 average-sized 6 -111010110 bigoted 6 -111010110 canary 6 -111010110 5-foot-10 6 -111010110 semi-literate 6 -111010110 flaccid 6 -111010110 down-and-dirty 6 -111010110 cross-eyed 6 -111010110 heavy-set 6 -111010110 well-scrubbed 6 -111010110 anti-NATO 6 -111010110 hardworking 6 -111010110 diamond-studded 6 -111010110 godless 6 -111010110 jeepney 6 -111010110 strait-laced 6 -111010110 hedonistic 6 -111010110 mariachi 6 -111010110 zen 6 -111010110 matronly 6 -111010110 60-foot 6 -111010110 better-financed 6 -111010110 racquet 6 -111010110 carnivorous 6 -111010110 post-menopausal 6 -111010110 priestly 6 -111010110 Indian-born 6 -111010110 unshaven 6 -111010110 UAW-represented 6 -111010110 long-sleeved 6 -111010110 anti-reform 6 -111010110 back-country 6 -111010110 nondenominational 6 -111010110 anencephalic 6 -111010110 blow-dried 6 -111010110 turf-conscious 6 -111010110 square-dance 6 -111010110 comely 6 -111010110 replaceable 6 -111010110 soupy 6 -111010110 capacious 6 -111010110 swarthy 6 -111010110 droopy 6 -111010110 paisley 6 -111010110 ruddy-faced 6 -111010110 insolent 6 -111010110 dimpled 6 -111010110 Italian-American 6 -111010110 lower-earning 6 -111010110 foreign-looking 6 -111010110 Roald 6 -111010110 junior-high-school 6 -111010110 magnetized 6 -111010110 epistolary 6 -111010110 bossy 6 -111010110 .22-caliber 6 -111010110 Trotskyist 6 -111010110 dewy 6 -111010110 rakish 6 -111010110 non-AIDS 6 -111010110 know-nothing 6 -111010110 shoulder-length 6 -111010110 Trappist 6 -111010110 oxygen-carrying 6 -111010110 anti-Nazi 6 -111010110 Sumo 6 -111010110 nerdy 6 -111010110 non-Jewish 6 -111010110 drug-using 6 -111010110 beer-drinking 6 -111010110 less-educated 6 -111010110 dowager 6 -111010110 one-legged 6 -111010110 tremulous 6 -111010110 Netherlandish 6 -111010110 Amazonian 6 -111010110 greenish 6 -111010110 chrysanthemum 6 -111010110 Episcopalian 6 -111010110 1,568 6 -111010110 quick-buck 6 -111010110 Neapolitan 6 -111010110 liberal-minded 6 -111010110 shimmery 6 -111010110 materialist 6 -111010110 lecherous 6 -111010110 fossilized 6 -111010110 Nehru 6 -111010110 starry-eyed 6 -111010110 straight-ahead 6 -111010110 sunburned 6 -111010110 non-official 6 -111010110 non-Moslem 6 -111010110 revivalist 6 -111010110 doughy 6 -111010110 bronzed 6 -111010110 lineal 6 -111010110 honky-tonk 6 -111010110 maniacal 6 -111010110 well-mannered 6 -111010110 old-money 6 -111010110 Hires 6 -111010110 decorous 6 -111010110 rampaging 6 -111010110 peregrine 7 -111010110 reconditioned 7 -111010110 well-tailored 7 -111010110 bilious 7 -111010110 college-bound 7 -111010110 headless 7 -111010110 Polynesian 7 -111010110 be-bop 7 -111010110 non-English 7 -111010110 scrubby 7 -111010110 KMA 7 -111010110 tradition-minded 7 -111010110 long-necked 7 -111010110 vacuum-packed 7 -111010110 violet 7 -111010110 wisecracking 7 -111010110 best-financed 7 -111010110 gloved 7 -111010110 propagandistic 7 -111010110 grande 7 -111010110 Fendi 7 -111010110 foot-long 7 -111010110 gnarled 7 -111010110 still-young 7 -111010110 taxicab 7 -111010110 white-bread 7 -111010110 heart-shaped 7 -111010110 straight-arrow 7 -111010110 saintly 7 -111010110 excitable 7 -111010110 one-parent 7 -111010110 late-19th-century 7 -111010110 whistle-blowing 7 -111010110 whiz-bang 7 -111010110 fretful 7 -111010110 pliable 7 -111010110 14th-century 7 -111010110 anti-defense 7 -111010110 pro-reform 7 -111010110 gang-related 7 -111010110 Nubian 7 -111010110 maltreated 7 -111010110 warm-hearted 7 -111010110 meat-and-potatoes 7 -111010110 Carmelite 7 -111010110 neoliberal 7 -111010110 chirpy 7 -111010110 anthropomorphic 7 -111010110 ankle-length 7 -111010110 rootless 7 -111010110 considerate 7 -111010110 stewed 7 -111010110 corduroy 7 -111010110 hand-operated 7 -111010110 commoner 7 -111010110 '76 7 -111010110 free-spirited 7 -111010110 trapeze 7 -111010110 turgid 7 -111010110 rhyming 7 -111010110 reloadable 7 -111010110 non-striking 7 -111010110 hard-headed 7 -111010110 cartoonish 7 -111010110 buxom 7 -111010110 tweedy 7 -111010110 semi-skilled 7 -111010110 wind-swept 7 -111010110 Provencal 7 -111010110 power-hungry 7 -111010110 shin 7 -111010110 Whig 7 -111010110 scraggly 7 -111010110 hyperkinetic 7 -111010110 beaded 7 -111010110 overstuffed 7 -111010110 giggly 7 -111010110 money-hungry 7 -111010110 inscrutable 7 -111010110 moderate-to-liberal 7 -111010110 crotchety 7 -111010110 mustachioed 7 -111010110 Sunday-morning 7 -111010110 care-giving 7 -111010110 spiky 7 -111010110 Adventist 7 -111010110 unashamed 7 -111010110 Javanese 7 -111010110 more-affluent 7 -111010110 fashion-conscious 8 -111010110 libertine 8 -111010110 gawky 8 -111010110 B-movie 8 -111010110 short-story 8 -111010110 leggy 8 -111010110 errand 8 -111010110 ruddy 8 -111010110 nonracial 8 -111010110 custom-built 8 -111010110 battle-hardened 8 -111010110 ruby 8 -111010110 herding 8 -111010110 fuddy-duddy 8 -111010110 country-and-western 8 -111010110 omnipotent 8 -111010110 bouncy 8 -111010110 underage 8 -111010110 low-skill 8 -111010110 unrepresented 8 -111010110 starched 8 -111010110 natty 8 -111010110 hyphenated 8 -111010110 Druze 8 -111010110 magisterial 8 -111010110 U.S.-educated 8 -111010110 benighted 8 -111010110 dark-skinned 8 -111010110 swaggering 8 -111010110 bare-chested 8 -111010110 pre-1980 8 -111010110 dual-career 8 -111010110 barbarian 8 -111010110 fleshy 8 -111010110 gastronomic 8 -111010110 kook 8 -111010110 pro-communist 8 -111010110 downcast 8 -111010110 self-pitying 8 -111010110 sugary 8 -111010110 dastardly 8 -111010110 Western-educated 8 -111010110 powder-blue 8 -111010110 stringy 8 -111010110 pointy 8 -111010110 homesick 8 -111010110 post-independence 8 -111010110 wheelchair-bound 8 -111010110 chauvinist 8 -111010110 LEP 8 -111010110 non-ideological 8 -111010110 throbbing 8 -111010110 skilled-trades 8 -111010110 41-year 8 -111010110 non-unionized 8 -111010110 drug-infested 8 -111010110 Myoscint 8 -111010110 baby-boomer 8 -111010110 rattan 8 -111010110 fourth-grade 8 -111010110 grownup 8 -111010110 fiendish 8 -111010110 peace-loving 8 -111010110 enfeebled 8 -111010110 blue-blooded 8 -111010110 clean-shaven 8 -111010110 rhesus 9 -111010110 malnourished 9 -111010110 half-naked 9 -111010110 low-rise 9 -111010110 windswept 9 -111010110 excludable 9 -111010110 Eurasian 9 -111010110 javelin 9 -111010110 blushing 9 -111010110 Medicaid-eligible 9 -111010110 jet-setting 9 -111010110 bookish 9 -111010110 Mongolian 9 -111010110 polyglot 9 -111010110 weather-beaten 9 -111010110 stone-throwing 9 -111010110 fulltime 9 -111010110 weedy 9 -111010110 warlike 9 -111010110 non-technical 9 -111010110 lower-class 9 -111010110 secondary-school 9 -111010110 humanist 9 -111010110 bulbous 9 -111010110 peaceable 9 -111010110 glad-handing 9 -111010110 narcissistic 9 -111010110 untidy 9 -111010110 Pathan 9 -111010110 low-slung 9 -111010110 scallop 9 -111010110 fetid 9 -111010110 down-and-out 9 -111010110 non-Western 9 -111010110 voice-activated 9 -111010110 pro-defense 9 -111010110 Irianese 9 -111010110 cocktail-party 9 -111010110 low-skilled 9 -111010110 standup 9 -111010110 warmup 9 -111010110 scrawny 9 -111010110 sonorous 9 -111010110 eel 9 -111010110 emaciated 9 -111010110 nonpaying 9 -111010110 Saturday-morning 9 -111010110 infection-fighting 9 -111010110 bedraggled 9 -111010110 jowly 9 -111010110 Polish-American 9 -111010110 cylindrical 9 -111010110 woozy 9 -111010110 transcendental 9 -111010110 malformed 9 -111010110 likeable 9 -111010110 Weatherbee 9 -111010110 artsy 9 -111010110 non-working 9 -111010110 tipsy 9 -111010110 civic-minded 9 -111010110 homicidal 9 -111010110 rah-rah 9 -111010110 self-satisfied 9 -111010110 sumo 9 -111010110 Turkic 9 -111010110 three-legged 9 -111010110 2,081 9 -111010110 battle-scarred 9 -111010110 non-poor 9 -111010110 dark-blue 9 -111010110 paper-thin 10 -111010110 self-taught 10 -111010110 tawdry 10 -111010110 one-ton 10 -111010110 upper-crust 10 -111010110 Slovene 10 -111010110 nonconformist 10 -111010110 nouvelle 10 -111010110 multi-ethnic 10 -111010110 fair-haired 10 -111010110 fruity 10 -111010110 non-Catholic 10 -111010110 Caucasian 10 -111010110 mustached 10 -111010110 high-price 10 -111010110 postdoctoral 10 -111010110 Mayan 10 -111010110 Wagnerian 10 -111010110 nearsighted 10 -111010110 waterproof 10 -111010110 budget-minded 10 -111010110 midpriced 10 -111010110 deep-pocket 10 -111010110 long-neglected 10 -111010110 Elizabethan 10 -111010110 pint-sized 10 -111010110 flesh-and-blood 10 -111010110 boozy 10 -111010110 cherubic 10 -111010110 Pittsburgh-area 10 -111010110 pixie 10 -111010110 whiny 10 -111010110 unreconstructed 10 -111010110 SIDS 10 -111010110 brain-damaged 10 -111010110 voting-age 10 -111010110 cohabiting 10 -111010110 flinty 10 -111010110 pert 10 -111010110 garrulous 10 -111010110 sorority 10 -111010110 temperance 10 -111010110 Ojibwa 10 -111010110 aromatic 10 -111010110 monochromatic 10 -111010110 suave 10 -111010110 forlorn 10 -111010110 Hopi 10 -111010110 florid 10 -111010110 anticommunist 10 -111010110 stay-at-home 10 -111010110 Iranian-American 10 -111010110 stony 11 -111010110 tingling 11 -111010110 post-modernist 11 -111010110 gun-toting 11 -111010110 long-lost 11 -111010110 lacy 11 -111010110 parquet 11 -111010110 married-couple 11 -111010110 strong-minded 11 -111010110 costumed 11 -111010110 soulful 11 -111010110 hard-bitten 11 -111010110 lower-middle-class 11 -111010110 IL-1 11 -111010110 well-armed 11 -111010110 Westernized 11 -111010110 hooded 11 -111010110 young-adult 11 -111010110 deadbeat 11 -111010110 fair-minded 11 -111010110 petulant 11 -111010110 bawdy 11 -111010110 winged 11 -111010110 at-large 11 -111010110 shoeshine 11 -111010110 high-strung 11 -111010110 allegorical 11 -111010110 decayed 11 -111010110 addled 11 -111010110 non-Hispanic 11 -111010110 Zinfandel 11 -111010110 Potemkin 11 -111010110 U.S.-born 11 -111010110 sassy 11 -111010110 Chinese-American 11 -111010110 pro-union 11 -111010110 satiric 11 -111010110 craggy 11 -111010110 longish 11 -111010110 world-weary 11 -111010110 shaggy 11 -111010110 supremacist 11 -111010110 divinity 11 -111010110 high-spirited 11 -111010110 Catalan 12 -111010110 winsome 12 -111010110 third-grade 12 -111010110 beat-up 12 -111010110 powdery 12 -111010110 voluble 12 -111010110 two-career 12 -111010110 race-car 12 -111010110 classless 12 -111010110 multilingual 12 -111010110 long-haired 12 -111010110 haggard 12 -111010110 poverty-stricken 12 -111010110 meddlesome 12 -111010110 Afro-American 12 -111010110 neophyte 12 -111010110 out-of-wedlock 12 -111010110 intrepid 12 -111010110 HIV-infected 12 -111010110 plucky 12 -111010110 gaunt 12 -111010110 teen-aged 12 -111010110 Uzbek 12 -111010110 wrinkled 12 -111010110 rough-hewn 12 -111010110 arty 12 -111010110 brawny 12 -111010110 puritanical 12 -111010110 spendthrift 12 -111010110 tweed 12 -111010110 flowery 12 -111010110 semi-retired 12 -111010110 Jeffersonian 12 -111010110 redneck 12 -111010110 porno 12 -111010110 left-handed 12 -111010110 plural 12 -111010110 bereaved 12 -111010110 serious-minded 12 -111010110 crimson 12 -111010110 image-conscious 12 -111010110 elongated 12 -111010110 translucent 12 -111010110 Czechoslovakian 12 -111010110 ringside 12 -111010110 indefatigable 12 -111010110 Arab-American 12 -111010110 debutante 12 -111010110 scab 12 -111010110 6-foot-5 12 -111010110 stateside 13 -111010110 wild-eyed 13 -111010110 brassy 13 -111010110 figurative 13 -111010110 non-aligned 13 -111010110 voluptuous 13 -111010110 unsung 13 -111010110 willow 13 -111010110 campy 13 -111010110 anti-nuke 13 -111010110 discontented 13 -111010110 Sephardic 13 -111010110 post-industrial 13 -111010110 stinking 13 -111010110 hard-boiled 13 -111010110 threadbare 13 -111010110 gringo 13 -111010110 wavy 13 -111010110 Indochinese 13 -111010110 blustery 13 -111010110 crazed 13 -111010110 dutiful 13 -111010110 muckraking 13 -111010110 philandering 13 -111010110 Slavic 13 -111010110 brainy 13 -111010110 Lilliputian 13 -111010110 amorous 13 -111010110 fluffy 13 -111010110 life-sized 14 -111010110 carpentry 14 -111010110 devious 14 -111010110 ping-pong 14 -111010110 infirm 14 -111010110 pro-government 14 -111010110 clapboard 14 -111010110 misty 14 -111010110 patriarchal 14 -111010110 nonfatal 14 -111010110 top-drawer 14 -111010110 curly 14 -111010110 sensationalist 14 -111010110 dank 14 -111010110 retro 14 -111010110 Chicano 14 -111010110 obese 14 -111010110 non-white 14 -111010110 hard-edged 14 -111010110 nameless 14 -111010110 storied 14 -111010110 bony 14 -111010110 red-and-white 14 -111010110 neoclassical 14 -111010110 heterogeneous 14 -111010110 lithe 14 -111010110 reclining 14 -111010110 Gaullist 14 -111010110 hilly 14 -111010110 Prussian 14 -111010110 chunky 14 -111010110 fresh-faced 14 -111010110 gullible 14 -111010110 more-conservative 14 -111010110 loquacious 14 -111010110 grey 14 -111010110 high-rolling 14 -111010110 all-female 15 -111010110 alto 15 -111010110 grubby 15 -111010110 stubby 15 -111010110 precocious 15 -111010110 temporal 15 -111010110 ambassadorial 15 -111010110 grade-school 15 -111010110 Afrikaans 15 -111010110 taciturn 15 -111010110 sagebrush 15 -111010110 dark-haired 15 -111010110 straight-laced 15 -111010110 talkative 15 -111010110 wide-eyed 15 -111010110 unassuming 15 -111010110 Pentecostal 15 -111010110 karate 15 -111010110 landless 15 -111010110 buttoned-down 15 -111010110 irascible 15 -111010110 pro-Bork 15 -111010110 moneyed 15 -111010110 third-rate 15 -111010110 Hmong 15 -111010110 poached 15 -111010110 riverboat 15 -111010110 wispy 15 -111010110 pre-school 15 -111010110 hearing-impaired 15 -111010110 pacifist 15 -111010110 satanic 15 -111010110 workaday 15 -111010110 paternal 15 -111010110 flannel 15 -111010110 Unification 16 -111010110 octogenarian 16 -111010110 marriage-license 16 -111010110 NFC 16 -111010110 Africanized 16 -111010110 chauffeured 16 -111010110 blue-eyed 16 -111010110 showy 16 -111010110 better-educated 16 -111010110 mixed-race 16 -111010110 able-bodied 16 -111010110 acrobatic 16 -111010110 school-age 16 -111010110 chatty 16 -111010110 sheet-metal 16 -111010110 prim 16 -111010110 Romantic 16 -111010110 grieving 16 -111010110 larger-than-life 16 -111010110 dueling 16 -111010110 pickled 16 -111010110 show-business 16 -111010110 observant 16 -111010110 old-guard 16 -111010110 petite 16 -111010110 gallows 16 -111010110 mechanized 16 -111010110 unkempt 16 -111010110 red-faced 16 -111010110 disgraced 16 -111010110 flag-waving 16 -111010110 middle-age 16 -111010110 back-yard 16 -111010110 sedum 16 -111010110 cholesterol-free 16 -111010110 second-hand 16 -111010110 college-age 16 -111010110 native-born 17 -111010110 maroon 17 -111010110 prehistoric 17 -111010110 technocratic 17 -111010110 self-assured 17 -111010110 bumbling 17 -111010110 psychotic 17 -111010110 furry 17 -111010110 two-earner 17 -111010110 anarchic 17 -111010110 vengeful 17 -111010110 Hasidic 17 -111010110 meek 17 -111010110 mutant 17 -111010110 prize-winning 17 -111010110 Zimbabwean 17 -111010110 stolid 17 -111010110 cowardly 17 -111010110 price-conscious 17 -111010110 manicured 17 -111010110 nontechnical 17 -111010110 orphaned 17 -111010110 supple 17 -111010110 backwoods 17 -111010110 mid-career 18 -111010110 curved 18 -111010110 pushy 18 -111010110 swashbuckling 18 -111010110 amoral 18 -111010110 post-modern 18 -111010110 post-apartheid 18 -111010110 bisexual 18 -111010110 expectant 18 -111010110 hairy 18 -111010110 rock-throwing 18 -111010110 rotund 18 -111010110 smoky 18 -111010110 mythological 18 -111010110 scruffy 18 -111010110 malevolent 18 -111010110 foreign-born 18 -111010110 skid-row 18 -111010110 health-conscious 18 -111010110 Greek-American 18 -111010110 demonic 18 -111010110 ghostly 18 -111010110 tightfisted 18 -111010110 tax-and-spend 18 -111010110 panting 18 -111010110 silky 19 -111010110 penny-pinching 19 -111010110 first-generation 19 -111010110 narcotic 19 -111010110 restyled 19 -111010110 soap-opera 19 -111010110 pulsating 19 -111010110 Malay 19 -111010110 big-business 19 -111010110 Molotov 19 -111010110 unsupervised 19 -111010110 topless 19 -111010110 down-home 19 -111010110 dispirited 19 -111010110 heavy-metal 19 -111010110 upside-down 19 -111010110 sickest 19 -111010110 non-partisan 19 -111010110 out-of-work 20 -111010110 rambunctious 20 -111010110 underprivileged 20 -111010110 button-down 20 -111010110 angular 20 -111010110 overgrown 20 -111010110 Inuit 20 -111010110 pudgy 20 -111010110 selfless 20 -111010110 self-confident 20 -111010110 elementary-school 20 -111010110 Creole 20 -111010110 ginseng 20 -111010110 deformed 20 -111010110 celluloid 20 -111010110 righteous 20 -111010110 Leninist 20 -111010110 lumpy 20 -111010110 stereotypical 20 -111010110 gypsy 20 -111010110 baggy 20 -111010110 Nickelodeon 21 -111010110 higher-paid 21 -111010110 grown-up 21 -111010110 traditionalist 21 -111010110 dead-end 21 -111010110 Albanian 21 -111010110 fourth-generation 21 -111010110 home-based 21 -111010110 family-oriented 21 -111010110 sandy 21 -111010110 breakaway 21 -111010110 industrious 21 -111010110 contented 21 -111010110 courtly 21 -111010110 burned-out 21 -111010110 hulking 21 -111010110 nonwhite 21 -111010110 highbrow 21 -111010110 dazed 21 -111010110 Asian-American 22 -111010110 peripatetic 22 -111010110 tanned 22 -111010110 turquoise 22 -111010110 diabetic 22 -111010110 diseased 22 -111010110 salty 22 -111010110 vacillating 22 -111010110 reflagged 22 -111010110 Zen 22 -111010110 brain-dead 22 -111010110 Biblical 22 -111010110 Navajo 22 -111010110 nesting 22 -111010110 sullen 22 -111010110 self-righteous 22 -111010110 Tanqueray 22 -111010110 all-powerful 23 -111010110 publicity-shy 23 -111010110 downtrodden 23 -111010110 mournful 23 -111010110 silvery 23 -111010110 domineering 23 -111010110 primary-care 23 -111010110 preppy 23 -111010110 well-dressed 23 -111010110 wiry 23 -111010110 surly 23 -111010110 widowed 23 -111010110 smelly 23 -111010110 Evangelical 23 -111010110 chain-smoking 24 -111010110 two-income 24 -111010110 stocky 24 -111010110 comatose 24 -111010110 flashier 24 -111010110 Viennese 24 -111010110 working-age 24 -111010110 Anglo-Saxon 24 -111010110 Blind 24 -111010110 rooftop 24 -111010110 Venetian 24 -111010110 Cuban-American 25 -111010110 leafy 25 -111010110 chubby 25 -111010110 long-suffering 25 -111010110 AIDS-infected 25 -111010110 satin 25 -111010110 wayward 25 -111010110 hatchet 25 -111010110 habitual 25 -111010110 musty 25 -111010110 law-abiding 25 -111010110 professorial 25 -111010110 Kazakh 25 -111010110 boisterous 25 -111010110 low-volume 25 -111010110 WASP 25 -111010110 amber 25 -111010110 racy 26 -111010110 gruff 26 -111010110 mahogany 26 -111010110 upper-class 26 -111010110 spicy 26 -111010110 Flemish 26 -111010110 modernist 26 -111010110 boxy 26 -111010110 infertile 26 -111010110 urbane 26 -111010110 sultry 26 -111010110 heartless 26 -111010110 pirate 27 -111010110 destitute 27 -111010110 lower-paid 27 -111010110 kangaroo 27 -111010110 Eskimo 27 -111010110 like-minded 27 -111010110 gregarious 27 -111010110 hyperactive 27 -111010110 caribou 27 -111010110 uneducated 27 -111010110 lyric 28 -111010110 toothless 28 -111010110 canine 28 -111010110 hard-driving 28 -111010110 teenage 28 -111010110 close-knit 28 -111010110 pearl 28 -111010110 clean-cut 28 -111010110 rabid 28 -111010110 ramshackle 28 -111010110 genial 29 -111010110 scrappy 29 -111010110 pompous 29 -111010110 dour 29 -111010110 big-spending 29 -111010110 Reaganite 29 -111010110 glistening 29 -111010110 transient 29 -111010110 rustic 29 -111010110 Reformed 29 -111010110 socialized 29 -111010110 virgin 29 -111010110 nonsmoking 30 -111010110 four-star 30 -111010110 Iranian-backed 30 -111010110 dingy 30 -111010110 unruly 30 -111010110 flaming 30 -111010110 stand-up 30 -111010110 Jesuit 31 -111010110 alpha 31 -111010110 disenfranchised 31 -111010110 untrained 31 -111010110 picturesque 31 -111010110 armchair 31 -111010110 middle-of-the-road 31 -111010110 childless 31 -111010110 unwed 31 -111010110 arid 32 -111010110 stuffy 32 -111010110 folksy 32 -111010110 spectator 32 -111010110 four-letter 32 -111010110 low-cholesterol 32 -111010110 higher-income 32 -111010110 college-educated 32 -111010110 dilapidated 33 -111010110 slow-growing 33 -111010110 well-trained 33 -111010110 majestic 33 -111010110 pampered 33 -111010110 anti-Western 33 -111010110 decadent 33 -111010110 faceless 33 -111010110 Zulu 33 -111010110 right-hand 33 -111010110 secondhand 34 -111010110 hardy 34 -111010110 cunning 34 -111010110 good-looking 34 -111010110 pastel 34 -111010110 low-paid 34 -111010110 adorable 34 -111010110 hereditary 34 -111010110 squat 34 -111010110 worldly 34 -111010110 distraught 34 -111010110 lesbian 35 -111010110 operatic 35 -111010110 pro-Soviet 35 -111010110 velvet 35 -111010110 well-to-do 35 -111010110 gilded 36 -111010110 personalized 36 -111010110 striped 36 -111010110 lumbering 36 -111010110 punk 36 -111010110 placid 36 -111010110 Spanish-speaking 36 -111010110 seedy 36 -111010110 patrician 37 -111010110 crusty 37 -111010110 minimalist 37 -111010110 two-parent 37 -111010110 second-rate 37 -111010110 well-paid 38 -111010110 fascist 38 -111010110 sweaty 38 -111010110 clematis 38 -111010110 harried 38 -111010110 reactionary 38 -111010110 frigid 38 -111010110 charcoal 38 -111010110 tough-minded 38 -111010110 small-time 38 -111010110 ragged 38 -111010110 rectangular 39 -111010110 mercurial 39 -111010110 female-headed 39 -111010110 old-style 39 -111010110 self-made 39 -111010110 untreated 39 -111010110 aggrieved 40 -111010110 upper-middle-class 40 -111010110 fast-moving 40 -111010110 Hoosier 40 -111010110 decaying 40 -111010110 Mexican-American 40 -111010110 parched 40 -111010110 top-notch 40 -111010110 middle-management 40 -111010110 independent-minded 40 -111010110 Mariel 41 -111010110 benevolent 41 -111010110 lesser-known 42 -111010110 mainline 42 -111010110 fanatical 42 -111010110 business-school 42 -111010110 lowly 42 -111010110 dislocated 42 -111010110 snowy 42 -111010110 graying 43 -111010110 single-parent 43 -111010110 monolithic 43 -111010110 erstwhile 43 -111010110 melancholy 43 -111010110 pro-Western 43 -111010110 drab 43 -111010110 minority-group 44 -111010110 novice 44 -111010110 renegade 44 -111010110 born-again 44 -111010110 unsuspecting 44 -111010110 barefoot 44 -111010110 filthy 44 -111010110 baroque 44 -111010110 Yiddish 45 -111010110 sickly 45 -111010110 weeping 45 -111010110 Episcopal 45 -111010110 no-nonsense 46 -111010110 reform-minded 46 -111010110 gritty 47 -111010110 pro-choice 47 -111010110 Trojan 47 -111010110 devout 47 -111010110 gleaming 47 -111010110 literate 48 -111010110 litigious 48 -111010110 low-wage 48 -111010110 neon 48 -111010110 orchestral 48 -111010110 enterprising 48 -111010110 stately 48 -111010110 old-time 49 -111010110 English-speaking 49 -111010110 anti-Communist 49 -111010110 slender 49 -111010110 balding 49 -111010110 home-grown 50 -111010110 die-hard 50 -111010110 well-meaning 51 -111010110 Sunni 51 -111010110 migrant 51 -111010110 Latino 51 -111010110 steamy 52 -111010110 rookie 52 -111010110 rebellious 52 -111010110 low-fat 52 -111010110 gorgeous 52 -111010110 French-speaking 52 -111010110 Stalinist 53 -111010110 spacious 53 -111010110 illiterate 54 -111010110 Lutheran 54 -111010110 moderate-income 54 -111010110 tattered 54 -111010110 overworked 54 -111010110 Afrikaner 56 -111010110 victorious 56 -111010110 barren 57 -111010110 autocratic 57 -111010110 two-story 57 -111010110 adoptive 57 -111010110 Hindu 58 -111010110 retarded 59 -111010110 left-leaning 59 -111010110 17th-century 59 -111010110 fractious 59 -111010110 adolescent 60 -111010110 homemade 60 -111010110 expatriate 60 -111010110 disaffected 60 -111010110 recalcitrant 61 -111010110 conscientious 61 -111010110 plush 61 -111010110 uniformed 62 -111010110 lower-income 63 -111010110 well-educated 63 -111010110 Georgian 63 -111010110 unborn 63 -111010110 overweight 64 -111010110 stodgy 64 -111010110 prolific 64 -111010110 modern-day 64 -111010110 libertarian 64 -111010110 scenic 64 -111010110 cerebral 64 -111010110 preschool 65 -111010110 undisputed 65 -111010110 hard-working 65 -111010110 prairie 65 -111010110 pedestrian 65 -111010110 well-connected 66 -111010110 skinny 67 -111010110 hapless 67 -111010110 indigent 67 -111010110 unarmed 67 -111010110 unskilled 68 -111010110 lush 68 -111010110 frail 68 -111010110 Buddhist 68 -111010110 self-styled 68 -111010110 public-school 69 -111010110 second-class 69 -111010110 Ukrainian 69 -111010110 Filipino 70 -111010110 glitzy 70 -111010110 Amish 70 -111010110 baby-boom 70 -111010110 estranged 71 -111010110 muddy 71 -111010110 indigenous 72 -111010110 self-employed 72 -111010110 newborn 72 -111010110 rugged 72 -111010110 drunken 72 -111010110 illegitimate 73 -111010110 Sinhalese 74 -111010110 purple 74 -111010110 stylish 74 -111010110 hard-core 75 -111010110 aspiring 75 -111010110 bald 75 -111010110 shiny 76 -111010110 heterosexual 76 -111010110 ceremonial 78 -111010110 wealthier 78 -111010110 sparkling 78 -111010110 gifted 79 -111010110 deceased 79 -111010110 sporty 79 -111010110 humble 81 -111010110 civilized 82 -111010110 laid-off 82 -111010110 imperial 82 -111010110 restless 84 -111010110 banana 84 -111010110 brash 85 -111010110 chic 85 -111010110 teen 86 -111010110 fictional 87 -111010110 avant-garde 87 -111010110 nonpartisan 87 -111010110 fugitive 87 -111010110 slave 87 -111010110 visionary 88 -111010110 con 88 -111010110 exiled 89 -111010110 medieval 89 -111010110 nude 90 -111010110 overcrowded 93 -111010110 unmarried 93 -111010110 Tibetan 94 -111010110 Armenian 94 -111010110 macho 94 -111010110 deaf 95 -111010110 Mormon 95 -111010110 Cajun 96 -111010110 20-year-old 97 -111010110 fertile 97 -111010110 bearded 98 -111010110 evangelical 98 -111010110 real-life 98 -111010110 well-heeled 100 -111010110 maverick 101 -111010110 bronze 104 -111010110 totalitarian 106 -111010110 soft-spoken 107 -111010110 dusty 108 -111010110 beloved 108 -111010110 feminist 108 -111010110 feisty 109 -111010110 anti-communist 109 -111010110 undocumented 110 -111010110 20th-century 111 -111010110 eccentric 113 -111010110 muscular 113 -111010110 Orthodox 119 -111010110 holy 120 -111010110 yuppie 120 -111010110 Victorian 121 -111010110 needy 122 -111010110 hip 122 -111010110 pale 123 -111010110 peasant 124 -111010110 Protestant 125 -111010110 hands-on 125 -111010110 surrogate 126 -111010110 rank-and-file 126 -111010110 blond 126 -111010110 cowboy 127 -111010110 vintage 128 -111010110 cocktail 129 -111010110 inexperienced 138 -111010110 charismatic 141 -111010110 disadvantaged 143 -111010110 working-class 143 -111010110 marble 144 -111010110 youthful 144 -111010110 impoverished 144 -111010110 blank 146 -111010110 middle-income 149 -111010110 trendy 153 -111010110 fundamentalist 155 -111010110 flamboyant 156 -111010110 taxi 166 -111010110 slick 167 -111010110 inner-city 172 -111010110 middle-aged 177 -111010110 graphic 179 -111010110 naked 179 -111010110 militant 185 -111010110 fake 186 -111010110 left-wing 189 -111010110 poorer 191 -111010110 first-class 200 -111010110 clerical 209 -111010110 folk 216 -111010110 corrupt 218 -111010110 pink 220 -111010110 wooden 223 -111010110 legendary 225 -111010110 competent 228 -111010110 homosexual 229 -111010110 populist 230 -111010110 savvy 231 -111010110 immigrant 232 -111010110 brown 233 -111010110 unionized 248 -111010110 teen-age 256 -111010110 talented 257 -111010110 casual 259 -111010110 handicapped 259 -111010110 classical 264 -111010110 gay 272 -111010110 salaried 278 -111010110 Shiite 286 -111010110 right-wing 297 -111010110 unemployed 300 -111010110 affluent 332 -111010110 skilled 333 -111010110 disabled 334 -111010110 blue-collar 335 -111010110 capitalist 341 -111010110 free-lance 347 -111010110 middle-class 355 -111010110 part-time 358 -111010110 pregnant 369 -111010110 tall 372 -111010110 white-collar 373 -111010110 ancient 375 -111010110 high-school 381 -111010110 upscale 386 -111010110 yellow 393 -111010110 revolutionary 415 -111010110 contemporary 434 -111010110 gray 434 -111010110 beautiful 452 -111010110 adult 477 -111010110 homeless 483 -111010110 mainstream 511 -111010110 low-income 517 -111010110 socialist 531 -111010110 Hispanic 536 -111010110 full-time 563 -111010110 Moslem 579 -111010110 aging 605 -111010110 sick 648 -111010110 female 685 -111010110 Palestinian 688 -111010110 green 693 -111010110 male 718 -111010110 dark 729 -111010110 fat 759 -111010110 wealthy 776 -111010110 Jewish 797 -111010110 Catholic 854 -111010110 Russian 926 -111010110 cold 969 -111010110 elderly 1016 -111010110 nearby 1099 -111010110 younger 1107 -111010110 modern 1393 -111010110 red 1451 -111010110 rich 1471 -111010110 liberal 1696 -111010110 older 1800 -111010110 white 3058 -111010110 conservative 3161 -111010110 poor 3383 -111010110 young 4197 -111010110 black 5369 -1110101110 Birthing 1 -1110101110 18-partner 1 -1110101110 BBC-produced 1 -1110101110 Mid-Life 1 -1110101110 Taiping 1 -1110101110 Non-poor 1 -1110101110 Ringing 1 -1110101110 UnitedBank-College 1 -1110101110 post-Independence 1 -1110101110 College-a-Year 1 -1110101110 Pantanal 1 -1110101110 Status-Quo 1 -1110101110 Watertower 1 -1110101110 spy-ring 1 -1110101110 Elsaker 1 -1110101110 ex-Laxalt 1 -1110101110 Russian-Jewish 1 -1110101110 Sandillal 1 -1110101110 non-Leninist 1 -1110101110 like-thinking 1 -1110101110 238-page 1 -1110101110 42-million-member 1 -1110101110 Babubhai 1 -1110101110 Mameluke 1 -1110101110 1,025,995 1 -1110101110 5,635,109 1 -1110101110 AppleFax 1 -1110101110 Sociosemiotic 1 -1110101110 Contextual 1 -1110101110 Sewanee 1 -1110101110 Accelerate 1 -1110101110 four-day-long 1 -1110101110 beady-browed 1 -1110101110 smear-sneer 1 -1110101110 fever-pitched 1 -1110101110 once-reviled 1 -1110101110 Morgan-Gallup 1 -1110101110 B------s 1 -1110101110 Humanist 1 -1110101110 super-heavyweight 1 -1110101110 2,700-seat 1 -1110101110 12-inning 1 -1110101110 Clergy-Laity 1 -1110101110 Rhinoceros 1 -1110101110 ethnic-based 1 -1110101110 Quemoy-based 1 -1110101110 federal-judge 1 -1110101110 Dinamo 1 -1110101110 Oktobersky 1 -1110101110 Royal-George 1 -1110101110 3.5-mile 1 -1110101110 Bible-thumping 1 -1110101110 Stonefence 1 -1110101110 346-seat 1 -1110101110 Mswati 1 -1110101110 SMU-Texas 1 -1110101110 Westbeth 1 -1110101110 Takarazuka 1 -1110101110 ever-richer 1 -1110101110 beauxarts 1 -1110101110 neon-striped 1 -1110101110 Ground-Based 1 -1110101110 Ebeneezer 1 -1110101110 ultra-religious 1 -1110101110 closer-than-expected 1 -1110101110 Luay 1 -1110101110 Fillies 1 -1110101110 Nuclear-Free 1 -1110101110 super-liberal 1 -1110101110 Post-Vietnam 1 -1110101110 Broadcasting-Cablecasting 1 -1110101110 night-life 1 -1110101110 Democatic 1 -1110101110 first-in-nation 1 -1110101110 Purloined 1 -1110101110 Movement-Liberal 1 -1110101110 intelligence-oversight 1 -1110101110 Gotha 1 -1110101110 antinuclear 1 -1110101110 Subodh 1 -1110101110 Sheldonian 1 -1110101110 Lwanga 1 -1110101110 Bolster 1 -1110101110 Inter-Church 1 -1110101110 Willliams 1 -1110101110 Feb.5 1 -1110101110 Apawamis 1 -1110101110 majority-led 1 -1110101110 Douglas-Mansfield 1 -1110101110 Pleistocene 1 -1110101110 louvered 1 -1110101110 congressional-relations 1 -1110101110 McCarren-Ferguson 1 -1110101110 11,506 1 -1110101110 5,008,120 1 -1110101110 Hageseth 1 -1110101110 Klan-like 1 -1110101110 Hexagon 1 -1110101110 Zanla 1 -1110101110 Kumgangsan 1 -1110101110 24,000-guerrilla 1 -1110101110 oft-damned 1 -1110101110 Full-force 1 -1110101110 XyWrite 1 -1110101110 post-Memorial 1 -1110101110 early-music 1 -1110101110 Caribou 1 -1110101110 Kremlin-backed 1 -1110101110 export-minded 1 -1110101110 killer-moonshine 1 -1110101110 dark-hued 1 -1110101110 Harmonie 1 -1110101110 VJ 1 -1110101110 Chilterns 1 -1110101110 Conversative 1 -1110101110 Takuji 1 -1110101110 big-tent 1 -1110101110 run-of-the-arena 1 -1110101110 Kreeger 1 -1110101110 defense-minded 1 -1110101110 Sine 1 -1110101110 Nomine 1 -1110101110 3,234 1 -1110101110 Chuangchant 1 -1110101110 Thorbjorn 1 -1110101110 162-member 1 -1110101110 Vaderlike 1 -1110101110 Janata 1 -1110101110 socialist-conservative 1 -1110101110 SAAvers 1 -1110101110 emotion-prone 1 -1110101110 more-populist 1 -1110101110 Tawheed 1 -1110101110 Social-Democratic 1 -1110101110 Barbican 1 -1110101110 Know-Nothing 1 -1110101110 Lifeboat 1 -1110101110 Thai-Euro 1 -1110101110 five-ringed 1 -1110101110 world-indoor 1 -1110101110 Jamiat-i-Islami 1 -1110101110 ProFarmer 1 -1110101110 Ironbound 1 -1110101110 chickie 1 -1110101110 Panjshir 1 -1110101110 wood-mounted 1 -1110101110 Noonday 1 -1110101110 ZOMO 1 -1110101110 glass-and-metal 1 -1110101110 more-centrist 1 -1110101110 Taiwan-elected 1 -1110101110 steel-bodied 1 -1110101110 much-courted 1 -1110101110 military-strategy 1 -1110101110 Comeauarea 1 -1110101110 Zambesi 1 -1110101110 version-dBASE 1 -1110101110 oilrefinery 1 -1110101110 Mikroszkop 1 -1110101110 Sunday-before-Memorial 1 -1110101110 Liberal-Social 1 -1110101110 Sucia 1 -1110101110 pro-parliamentary 1 -1110101110 US/USSR 1 -1110101110 Mid-Day 1 -1110101110 Gras-type 1 -1110101110 cartoon-camel 1 -1110101110 cool-eyed 1 -1110101110 Eastgate 1 -1110101110 Stiemke 1 -1110101110 Favorite-son 1 -1110101110 non-liberalizing 1 -1110101110 permanent-looking 1 -1110101110 102-nation 1 -1110101110 Theatersports 1 -1110101110 youth-group 1 -1110101110 Roundabout 1 -1110101110 2,928-stock 1 -1110101110 102-member 1 -1110101110 ex-Soviet 1 -1110101110 34-3 1 -1110101110 lame-hawk 1 -1110101110 last-season 1 -1110101110 News-Free 1 -1110101110 Zuni 1 -1110101110 Hill-Burton 1 -1110101110 Jabaliya 1 -1110101110 Olympics-like 1 -1110101110 1,530,000 1 -1110101110 neither-nor 1 -1110101110 caulk 1 -1110101110 Dewey-Brownell 1 -1110101110 club-pro 1 -1110101110 no-surprises-expected 1 -1110101110 Meltnomah 1 -1110101110 Jamat-e-Islami 1 -1110101110 once-fervent 1 -1110101110 Week-r 1 -1110101110 black-bearded 1 -1110101110 ex-bureaucrat 1 -1110101110 post-Baker 1 -1110101110 ex-Communist 1 -1110101110 long-odds 1 -1110101110 Bhabha 1 -1110101110 pre-Democratic 1 -1110101110 Kerr-Mills 1 -1110101110 No-Lose 1 -1110101110 Liberal-National 1 -1110101110 conocido 1 -1110101110 Maranatha 1 -1110101110 Client/Contract 1 -1110101110 post-Chiang 1 -1110101110 Tonto 1 -1110101110 now-purged 1 -1110101110 buttondown 1 -1110101110 baseball-fantasy 1 -1110101110 Korea-Euro 1 -1110101110 ENVOY 2 -1110101110 Kokoomus 2 -1110101110 WW 2 -1110101110 Wiltern 2 -1110101110 Magnuson-Moss 2 -1110101110 Liberal-Democratic 2 -1110101110 challenge-proof 2 -1110101110 scimitar-wielding 2 -1110101110 balkanized 2 -1110101110 five-way 2 -1110101110 Moratorium 2 -1110101110 Nacionalista 2 -1110101110 anti-Iraq 2 -1110101110 Me-Too 2 -1110101110 non-committee 2 -1110101110 Marionette 2 -1110101110 18-million-acre 2 -1110101110 WaterPark 2 -1110101110 DeLancey 2 -1110101110 Fawaz 2 -1110101110 Huk 2 -1110101110 Matsuzawa 2 -1110101110 millwright 2 -1110101110 Hortenstine 2 -1110101110 Iditarod 2 -1110101110 Immorality 2 -1110101110 AMCAP 2 -1110101110 Tunero 2 -1110101110 Chrysler-Maserati 2 -1110101110 bantamweight 2 -1110101110 Ton-Ton 2 -1110101110 que 2 -1110101110 anti-Hoover 2 -1110101110 desegregating 2 -1110101110 Reagan-Meese 2 -1110101110 lightning-bolt 2 -1110101110 Anzac 2 -1110101110 long-dominant 2 -1110101110 Perilous 2 -1110101110 now-certain 2 -1110101110 county-commissioner 2 -1110101110 houston 2 -1110101110 progressive-minded 2 -1110101110 Tarot 2 -1110101110 Bogeyman 2 -1110101110 Conservative-controlled 2 -1110101110 Armistice 2 -1110101110 cartoony 2 -1110101110 vote-getting 2 -1110101110 dissolute 2 -1110101110 Landrum-Griffin 2 -1110101110 Moneda 2 -1110101110 hard-rocking 2 -1110101110 60-odd 2 -1110101110 Dixiecrat 2 -1110101110 Petofi 2 -1110101110 Confiscation 2 -1110101110 2,250-member 2 -1110101110 NCNB/Texas 2 -1110101110 Saudi-Kuwait 2 -1110101110 Domed 2 -1110101110 Rhea-Graham 2 -1110101110 Fontenelle 2 -1110101110 4,436,851 2 -1110101110 Democrat-dominated 2 -1110101110 Abed 2 -1110101110 Papago 2 -1110101110 naturist 2 -1110101110 9,716,000 2 -1110101110 Australia-Israel 2 -1110101110 Roosevelt-Truman 2 -1110101110 Extinction 2 -1110101110 1,015,000 2 -1110101110 Tradeshow 2 -1110101110 hill-climbing 2 -1110101110 anti-Bresser 2 -1110101110 six-term 2 -1110101110 church-backed 2 -1110101110 Seven-Year 2 -1110101110 Zollinger-Ellison 2 -1110101110 Hoc 2 -1110101110 farm-owner 2 -1110101110 Hanns 2 -1110101110 Arnt 2 -1110101110 Harmonic 2 -1110101110 Orme 2 -1110101110 spell-binding 2 -1110101110 light-heavy 2 -1110101110 Nobelist 2 -1110101110 Jefferson-Jackson 2 -1110101110 Gunnery 2 -1110101110 Brown-appointed 2 -1110101110 none-of-the-above 2 -1110101110 Aprista 2 -1110101110 MuniInsured 2 -1110101110 Phantasy 2 -1110101110 Supply-Side 3 -1110101110 Humphrey-Hawkins 3 -1110101110 NLD 3 -1110101110 Ghetto 3 -1110101110 lovelorn 3 -1110101110 Ramses 3 -1110101110 non-incumbent 3 -1110101110 RFK 3 -1110101110 Creation/Evolution 3 -1110101110 quisling 3 -1110101110 Ebury 3 -1110101110 Grise 3 -1110101110 Indian-dominated 3 -1110101110 Pan-Hellenic 3 -1110101110 Shatila 3 -1110101110 Authentic 3 -1110101110 all-but-certain 3 -1110101110 UAW-Chrysler 3 -1110101110 more-pragmatic 3 -1110101110 pre-Labor 3 -1110101110 Norris-LaGuardia 3 -1110101110 Llano 3 -1110101110 Cort 3 -1110101110 577-member 3 -1110101110 Simpson-Rodino-Mazzoli 3 -1110101110 Kievsky 3 -1110101110 lead-off 3 -1110101110 Maryknoll 3 -1110101110 Hispania 3 -1110101110 Bialetti 3 -1110101110 Usonian 3 -1110101110 Democractic 3 -1110101110 Weintal 3 -1110101110 early-bird 3 -1110101110 Bypass 3 -1110101110 gun-owners 3 -1110101110 violence-ridden 3 -1110101110 HUAC 3 -1110101110 Statehood 3 -1110101110 Wafd 3 -1110101110 Deeper 3 -1110101110 Volstead 3 -1110101110 time-pressed 3 -1110101110 Primavera 3 -1110101110 Lyceum 3 -1110101110 B-4 3 -1110101110 upperhouse 3 -1110101110 Karabakh 3 -1110101110 much-decorated 3 -1110101110 Princeton-educated 3 -1110101110 Yueksekova 3 -1110101110 Racket 3 -1110101110 right-center 3 -1110101110 Robinson-Patman 3 -1110101110 Rajendra 3 -1110101110 venture-capitalist 3 -1110101110 Giro 4 -1110101110 Waitangi 4 -1110101110 best-liked 4 -1110101110 Eurocommunist 4 -1110101110 Demilitarized 4 -1110101110 Aquino-backed 4 -1110101110 pro-military 4 -1110101110 conservative-led 4 -1110101110 Gatlin 4 -1110101110 long-ruling 4 -1110101110 Gascard 4 -1110101110 Adak 4 -1110101110 Rightime 4 -1110101110 Cuban-backed 4 -1110101110 Smuts 4 -1110101110 prisoner-of-war 4 -1110101110 Duvalierist 4 -1110101110 Dynamit 4 -1110101110 Coccoloba 4 -1110101110 Latter 4 -1110101110 mud-slinging 4 -1110101110 bumpkin 4 -1110101110 Kennedy-Nixon 4 -1110101110 Mod 4 -1110101110 74th 4 -1110101110 Anti-Drug 4 -1110101110 75-acre 4 -1110101110 Shiloh 4 -1110101110 anti-immigrant 4 -1110101110 Maryinsky 4 -1110101110 750,000-member 4 -1110101110 Kookaburra 5 -1110101110 Rosendo 5 -1110101110 SDP-Liberal 5 -1110101110 Cheetah 5 -1110101110 Wrestlemania 5 -1110101110 Coinage 5 -1110101110 hard-right 5 -1110101110 Mysterious 5 -1110101110 opposition-controlled 5 -1110101110 Bangladeshi 5 -1110101110 pro-Castro 5 -1110101110 Baath 5 -1110101110 Goodwrench 5 -1110101110 Demon 5 -1110101110 diocesan 5 -1110101110 Ascot 5 -1110101110 Pinocchio 5 -1110101110 Freequent 5 -1110101110 TV-Cable 5 -1110101110 Kits 5 -1110101110 major-party 5 -1110101110 communist-dominated 5 -1110101110 101-seat 5 -1110101110 Non-Aligned 6 -1110101110 Taft-Hartley 6 -1110101110 450-member 6 -1110101110 Waxman-Hatch 6 -1110101110 Laotian 6 -1110101110 Guarneri 6 -1110101110 Cutty 6 -1110101110 Diversa 6 -1110101110 Thanatos 6 -1110101110 antigovernment 6 -1110101110 Marabar 6 -1110101110 pro-gun 6 -1110101110 right-of-center 6 -1110101110 Hezb-e-Islami 6 -1110101110 post-Thanksgiving 6 -1110101110 mini-Marshall 6 -1110101110 Summum 6 -1110101110 light-heavyweight 7 -1110101110 Vanuaaku 7 -1110101110 Hype 7 -1110101110 PLO. 7 -1110101110 Pirate 7 -1110101110 four-party 7 -1110101110 issueless 7 -1110101110 Polisario 7 -1110101110 post-Labor 7 -1110101110 military-led 7 -1110101110 pilot-union 7 -1110101110 whistle-stop 7 -1110101110 Tuscan 7 -1110101110 regimental 7 -1110101110 12-man 7 -1110101110 Gridiron 7 -1110101110 segregationist 7 -1110101110 Sealtest 7 -1110101110 Lend-Lease 7 -1110101110 white-minority 8 -1110101110 oil-state 8 -1110101110 Price-Anderson 8 -1110101110 Melanesian 8 -1110101110 Disabilities 8 -1110101110 Taganka 8 -1110101110 IP 8 -1110101110 4-H 8 -1110101110 Gallic 8 -1110101110 military-run 8 -1110101110 Philharmonia 8 -1110101110 Merwin 8 -1110101110 Promenade 8 -1110101110 Macoute 9 -1110101110 Bipartisan 9 -1110101110 Antique 9 -1110101110 Akali 9 -1110101110 law-making 9 -1110101110 publicity-seeking 9 -1110101110 out-of-power 9 -1110101110 Maronite 10 -1110101110 extreme-right 10 -1110101110 Vietnam-backed 10 -1110101110 Musee 10 -1110101110 Anti-Dumping 10 -1110101110 Neutrality 10 -1110101110 military-backed 10 -1110101110 P.C. 10 -1110101110 Machinist 10 -1110101110 Orderly 11 -1110101110 Labour 11 -1110101110 WPA 12 -1110101110 Tonton 12 -1110101110 Parnassus 12 -1110101110 Tunney 12 -1110101110 Ton 13 -1110101110 Carle 13 -1110101110 Tontons 13 -1110101110 Departure 13 -1110101110 Partisan 13 -1110101110 Napoleonic 14 -1110101110 criminal-defense 14 -1110101110 Soviet-supported 14 -1110101110 Staggers 14 -1110101110 Bohemian 14 -1110101110 Tex-Mex 14 -1110101110 Acorn 14 -1110101110 post-Khomeini 14 -1110101110 Muslim 15 -1110101110 far-left 15 -1110101110 Communist-led 15 -1110101110 Anti-Deficiency 15 -1110101110 Racquet 15 -1110101110 Kronos 16 -1110101110 Elderly 16 -1110101110 squatter 16 -1110101110 Bastille 16 -1110101110 Orpheum 16 -1110101110 Agri 18 -1110101110 Kiwanis 18 -1110101110 Davis-Bacon 19 -1110101110 Populist 19 -1110101110 Sicilian 20 -1110101110 Mardi 20 -1110101110 APRA 20 -1110101110 Cosa 20 -1110101110 far-right 20 -1110101110 pro-apartheid 21 -1110101110 Clipper 21 -1110101110 farm-state 21 -1110101110 Twilight 22 -1110101110 Ninety-Ten 22 -1110101110 Neutral 22 -1110101110 Libertarian 24 -1110101110 Austral 25 -1110101110 Prospector 26 -1110101110 Grammy 26 -1110101110 Reunification 26 -1110101110 Senatorial 26 -1110101110 Fijian 27 -1110101110 Partido 28 -1110101110 McCarran-Ferguson 31 -1110101110 Portable 32 -1110101110 center-left 34 -1110101110 Dodger 35 -1110101110 Book-of-the-Month 35 -1110101110 MacBride 35 -1110101110 Motherland 37 -1110101110 anti-Bork 38 -1110101110 rightist 38 -1110101110 Goodwill 39 -1110101110 Reagan-Bush 39 -1110101110 P.R. 39 -1110101110 ACT 46 -1110101110 emigre 46 -1110101110 ruling-party 46 -1110101110 Amal 48 -1110101110 Marxist-Leninist 50 -1110101110 Rotary 53 -1110101110 Radical 65 -1110101110 one-party 73 -1110101110 Peronist 73 -1110101110 Founding 75 -1110101110 pro-Iranian 77 -1110101110 Nationalist 81 -1110101110 warring 90 -1110101110 Cruzado 99 -1110101110 Constitutional 100 -1110101110 centrist 103 -1110101110 Tory 106 -1110101110 Gallup 123 -1110101110 Baptist 134 -1110101110 center-right 138 -1110101110 Likud 140 -1110101110 Pulitzer 142 -1110101110 Hart-Scott-Rodino 162 -1110101110 Glass-Steagall 200 -1110101110 Veterans 224 -1110101110 Summer 232 -1110101110 refugee 289 -1110101110 leftist 305 -1110101110 incumbent 335 -1110101110 Marxist 351 -1110101110 Nobel 352 -1110101110 Winter 364 -1110101110 Socialist 470 -1110101110 Associated 516 -1110101110 Liberal 552 -1110101110 Free 605 -1110101110 communist 738 -1110101110 Olympic 738 -1110101110 Conservative 772 -1110101110 Christian 1047 -1110101110 Communist 1653 -1110101110 GOP 1819 -1110101110 Democratic 5508 -1110101110 Republican 3847 -1110101111 animal-liberation 1 -1110101111 pro-arms-control 1 -1110101111 non-landowning 1 -1110101111 13,180 1 -1110101111 Spanish-mission 1 -1110101111 EVERYDAY 1 -1110101111 Nazi-inspired 1 -1110101111 fare-paying 1 -1110101111 Trecento 1 -1110101111 starched-white 1 -1110101111 Detroit-Windsor 1 -1110101111 Chinese-supported 1 -1110101111 160-piece 1 -1110101111 7,240 1 -1110101111 post-congress 1 -1110101111 communist-party 1 -1110101111 grenade-resistant 1 -1110101111 sandiest 1 -1110101111 1,632 1 -1110101111 still-vibrant 1 -1110101111 you-can-almost-feel-her-breathe 1 -1110101111 lesser-rated 1 -1110101111 nonartistic 1 -1110101111 regulation-happy 1 -1110101111 dewlapped 1 -1110101111 coastal-strip 1 -1110101111 public-employee-union 1 -1110101111 sun-struck 1 -1110101111 pro-Berne 1 -1110101111 pairs-against-the-clock 1 -1110101111 7,427 1 -1110101111 Engravers 1 -1110101111 50-Foot 1 -1110101111 explosive-laden 1 -1110101111 Undergound 1 -1110101111 topdown 1 -1110101111 clematis-indifferent 1 -1110101111 Soviet-chartered 1 -1110101111 wooden-hulled 1 -1110101111 Haitain 1 -1110101111 public-management 1 -1110101111 right-winged 1 -1110101111 Asociacion 1 -1110101111 India-China 1 -1110101111 tennisracket 1 -1110101111 paper-clogged 1 -1110101111 Putsch-style 1 -1110101111 non-Cuban 1 -1110101111 once-poor 1 -1110101111 Cinemascope-sized 1 -1110101111 expolitical 1 -1110101111 Telefunken-line 1 -1110101111 600,000-member 1 -1110101111 pre-Revolution 1 -1110101111 Bionic 1 -1110101111 personalistic 1 -1110101111 motorcyclelike 1 -1110101111 9,574 1 -1110101111 trainer-witch 1 -1110101111 non-objecting 1 -1110101111 pro-prosecution 1 -1110101111 3,007 1 -1110101111 inward-turning 1 -1110101111 Karens 1 -1110101111 6,135 1 -1110101111 export-capable 1 -1110101111 centrist-to-liberal 1 -1110101111 anti-Maputo 1 -1110101111 health-column 1 -1110101111 heparin-treated 1 -1110101111 stress-filled 1 -1110101111 Genoan 1 -1110101111 lottery-happy 1 -1110101111 less-competent 1 -1110101111 palm-out 1 -1110101111 gap-jawed 1 -1110101111 expansion-hungry 1 -1110101111 long-lagging 1 -1110101111 brownish-gray 1 -1110101111 bloodred 1 -1110101111 Anglo-Indian 1 -1110101111 most-militant 1 -1110101111 Dogon 1 -1110101111 CFA-Consumers 1 -1110101111 Dukakis-appointed 1 -1110101111 placard-waving 1 -1110101111 prismatic 1 -1110101111 fruit-eating 1 -1110101111 Hard-Worked 1 -1110101111 Jewish-American 1 -1110101111 Baker-Darman 1 -1110101111 TPA-treated 1 -1110101111 non-orthodox 1 -1110101111 tinpot 1 -1110101111 550,000-member 1 -1110101111 Bahurutshe 1 -1110101111 less-radical 1 -1110101111 non-chiropractic 1 -1110101111 Isreali 1 -1110101111 too-stubborn 1 -1110101111 too-compromising 1 -1110101111 credit-system 1 -1110101111 Inter-Parliamentary 1 -1110101111 Hollywood-Nashville 1 -1110101111 Poindexter/North 1 -1110101111 LTV-owned 1 -1110101111 non-sectarian 1 -1110101111 ruminative 1 -1110101111 drug-ring 1 -1110101111 constabulary 1 -1110101111 more-resistant 1 -1110101111 laser-sculpted 1 -1110101111 producing-nation 1 -1110101111 movie-mogul 1 -1110101111 Mongolian-looking 1 -1110101111 takeover-hungry 1 -1110101111 Nicarguan 1 -1110101111 once-bold 1 -1110101111 Managuan 1 -1110101111 PAP. 1 -1110101111 Posnan 1 -1110101111 1,528 1 -1110101111 gold-generated 1 -1110101111 cocaine-cartel 1 -1110101111 companionate 1 -1110101111 criminal-case 1 -1110101111 steel-state 1 -1110101111 158-acre 1 -1110101111 Sha 1 -1110101111 sports-loving 1 -1110101111 Secord-operated 1 -1110101111 cave-dwelling 1 -1110101111 Scots-Irish-German 1 -1110101111 medium-bracket 1 -1110101111 brainiest 1 -1110101111 student-government 1 -1110101111 silver-gold 1 -1110101111 farm-group 1 -1110101111 environmental-group 1 -1110101111 21-jewel 1 -1110101111 1,800-year-old 1 -1110101111 templelike 1 -1110101111 un-French 1 -1110101111 EC-Austrian 1 -1110101111 state-dependent 1 -1110101111 Yoruban 1 -1110101111 moral-political 1 -1110101111 doctoral-degree 1 -1110101111 liberal-oriented 1 -1110101111 revenge-seeking 1 -1110101111 Salo 1 -1110101111 darkbrowed 1 -1110101111 3.3245 1 -1110101111 1.4612 1 -1110101111 waist-deep 1 -1110101111 thick-necked 1 -1110101111 supergroup 1 -1110101111 semi-pronounceable 1 -1110101111 self-defining 1 -1110101111 anti-computer 1 -1110101111 wood-shingled 1 -1110101111 superabundant 1 -1110101111 tin-horn 1 -1110101111 nonmasked 1 -1110101111 Saudi-financed 1 -1110101111 1,094 1 -1110101111 bombs-away 1 -1110101111 non-tonal 1 -1110101111 anti-Fascist 1 -1110101111 maurauding 1 -1110101111 blank-faced 1 -1110101111 Ronnie-Mickey 1 -1110101111 bunker-bound 1 -1110101111 1991-95 1 -1110101111 musky 1 -1110101111 Soviet-dubbed 1 -1110101111 four-power 1 -1110101111 Carib-related 1 -1110101111 pop-management-book 1 -1110101111 Comedie 1 -1110101111 Consumer-group 1 -1110101111 anti-intellectualist 1 -1110101111 power-shortage 1 -1110101111 113,600 1 -1110101111 communications-industry 1 -1110101111 Dole-Domenici 1 -1110101111 freedom-fighter 1 -1110101111 enginemaker 1 -1110101111 220-foot-tall 1 -1110101111 paid-off 1 -1110101111 non-Roman 1 -1110101111 cotton-related 1 -1110101111 semitrailer 1 -1110101111 mule-team 1 -1110101111 6,685 1 -1110101111 national-cultural 1 -1110101111 spade-wielding 1 -1110101111 day-section 1 -1110101111 brie-eating 1 -1110101111 Illyrian 1 -1110101111 charro 1 -1110101111 Conch 1 -1110101111 now-governing 1 -1110101111 Republican-appointed 1 -1110101111 southern-front 1 -1110101111 surlier 1 -1110101111 rifle-bearing 1 -1110101111 McDonald's-style 1 -1110101111 Nandi 1 -1110101111 Battle-hardened 1 -1110101111 pro-cat 1 -1110101111 pro-Robertson 1 -1110101111 50-degree 1 -1110101111 then-and-now 1 -1110101111 2,182 1 -1110101111 often-flawed 1 -1110101111 draft-resistance 1 -1110101111 enrapt 1 -1110101111 Harvard-Washington 1 -1110101111 pre-GM 1 -1110101111 -assisted 1 -1110101111 foresighted 1 -1110101111 fourth-act 1 -1110101111 PROVIDED 1 -1110101111 meat-industry 1 -1110101111 fish-hunting 1 -1110101111 official-line 1 -1110101111 then-Brooklyn 1 -1110101111 M113 1 -1110101111 mid-pack 1 -1110101111 suburban-oriented 1 -1110101111 Thomson-GE 1 -1110101111 Bork-Reagan 1 -1110101111 blacksleeved 1 -1110101111 Kharaji 1 -1110101111 war-game 1 -1110101111 one-meter 1 -1110101111 Academie 1 -1110101111 broad-striped 1 -1110101111 green-uniformed 1 -1110101111 canine-costumed 1 -1110101111 secret-agent 1 -1110101111 resending 1 -1110101111 Will-style 1 -1110101111 35,478 1 -1110101111 reverse-destructive 1 -1110101111 greased-up 1 -1110101111 PLO-backed 1 -1110101111 Watchworkers 1 -1110101111 Teamsters-Machinists 1 -1110101111 special-action 1 -1110101111 Marmosets 1 -1110101111 PX. 1 -1110101111 insurrectionary 1 -1110101111 NABF 1 -1110101111 Iranian-owned 1 -1110101111 hoarier 1 -1110101111 Terpsichore-Apollo 1 -1110101111 headline-seeking 1 -1110101111 white-clothed 1 -1110101111 banned-in-Britain 1 -1110101111 Barbula 1 -1110101111 Dinka 1 -1110101111 Hanuman 1 -1110101111 gun-wielding 1 -1110101111 late-sixties 1 -1110101111 livelier-than-expected 1 -1110101111 unidimensional 1 -1110101111 sun-and-sport 1 -1110101111 Reaktorbrennenelemente 1 -1110101111 time-chartered 1 -1110101111 fruitwood-paneled 1 -1110101111 life-and-working 1 -1110101111 Vietnamese-imposed 1 -1110101111 Mantle-Maris 1 -1110101111 Non-aligned 1 -1110101111 then-Panamanian 1 -1110101111 uncreated 1 -1110101111 right/conservative 1 -1110101111 2.5652 1 -1110101111 Bardavon 1 -1110101111 Vatican-linked 1 -1110101111 46,394 1 -1110101111 score-proud 1 -1110101111 cocaine-dealing 1 -1110101111 predominating 1 -1110101111 anti-speculative 1 -1110101111 let's-party 1 -1110101111 102-inch-wide 1 -1110101111 grow-your-own 1 -1110101111 Allen-film 1 -1110101111 Jordian 1 -1110101111 anti-Galileo 1 -1110101111 12-branch 1 -1110101111 evil-minded 1 -1110101111 4,162 1 -1110101111 gerontocratic 1 -1110101111 sixth-seeded 1 -1110101111 still-sickly 1 -1110101111 38-story 1 -1110101111 Unsung 1 -1110101111 bureaucratic-minded 1 -1110101111 most-exposed 1 -1110101111 managerial-sounding 1 -1110101111 anti-JOA 1 -1110101111 same-colored 1 -1110101111 Pretoria-administered 1 -1110101111 non-discontented 1 -1110101111 benefits-for-all 1 -1110101111 50-square-block 1 -1110101111 38,000-acre 1 -1110101111 Pomo 1 -1110101111 growl-and-plunger 1 -1110101111 Hinduish 1 -1110101111 compromise-minded 1 -1110101111 headline-hawking 1 -1110101111 British-French-Israeli 1 -1110101111 no-trade 1 -1110101111 U.S-backed 1 -1110101111 20-student 1 -1110101111 lambskin 1 -1110101111 Mauritanian 1 -1110101111 chirpier 1 -1110101111 U.K.-owned 1 -1110101111 ex-heavyweight 1 -1110101111 10,835 1 -1110101111 6,771,060 1 -1110101111 voodoolike 1 -1110101111 17-week-old 1 -1110101111 heavy-hoofed 1 -1110101111 Guarani 1 -1110101111 pitchfork-wielding 1 -1110101111 Gore-Tex 1 -1110101111 Manhattan-establishment 1 -1110101111 Boucherie 1 -1110101111 non-college-bound 1 -1110101111 Second-Tier 1 -1110101111 Kremlin-inspired 1 -1110101111 crude-rich 1 -1110101111 non-Michigan 1 -1110101111 dramatis 1 -1110101111 fundamentalist-dominated 1 -1110101111 hyperzealous 1 -1110101111 Fisherian 1 -1110101111 pre-Mexican 1 -1110101111 non-Aborigine 1 -1110101111 Boston-Austin 1 -1110101111 Ulyanovsk 2 -1110101111 Pakistan-Afghan 2 -1110101111 600,000-strong 2 -1110101111 cube-shaped 2 -1110101111 Pakistan-backed 2 -1110101111 Hindu-dominated 2 -1110101111 Marxist-inspired 2 -1110101111 Soviet-client 2 -1110101111 rear-echelon 2 -1110101111 protectionist-minded 2 -1110101111 IBT 2 -1110101111 urban-based 2 -1110101111 street-wise 2 -1110101111 Gabonese 2 -1110101111 information/service 2 -1110101111 Texas-Oklahoma 2 -1110101111 Flaming 2 -1110101111 post-1988 2 -1110101111 microwave-based 2 -1110101111 twin-deficit 2 -1110101111 Sinhalese-dominated 2 -1110101111 Christian-led 2 -1110101111 Merrie 2 -1110101111 health-fascist 2 -1110101111 five-square-mile 2 -1110101111 Tracon 2 -1110101111 superdelegate 2 -1110101111 schoolbus 2 -1110101111 wised-up 2 -1110101111 non-Sandinista 2 -1110101111 Marxist/Leninist 2 -1110101111 thrip 2 -1110101111 midrange-computer 2 -1110101111 Presser-Mathis 2 -1110101111 Roofers 2 -1110101111 morning-after 2 -1110101111 antiSandinista 2 -1110101111 Turkish-Cypriot 2 -1110101111 21,200 2 -1110101111 Indo-Chinese 2 -1110101111 Iranian-held 2 -1110101111 Screeching 2 -1110101111 sprocket 2 -1110101111 short-play 2 -1110101111 Russian-dominated 2 -1110101111 Formosan 2 -1110101111 Eminase-treated 2 -1110101111 Guayaquil-based 2 -1110101111 eight-term 2 -1110101111 engorged 2 -1110101111 ex-Army 2 -1110101111 resistance-party 2 -1110101111 40,000-ton 2 -1110101111 pro-Vietnamese 2 -1110101111 Arizona-Nevada 2 -1110101111 drug-treated 2 -1110101111 LaRouche-ite 2 -1110101111 mad-dog 2 -1110101111 Tatar 2 -1110101111 Kwa-Zulu 2 -1110101111 Castroite 2 -1110101111 U.S.-armed 3 -1110101111 anti-army 3 -1110101111 piney 3 -1110101111 lovesick 3 -1110101111 McChicken 3 -1110101111 American-educated 3 -1110101111 Libyan-backed 3 -1110101111 Tulalip 3 -1110101111 medium-level 3 -1110101111 Soviet-based 3 -1110101111 Zairian 3 -1110101111 2.332 3 -1110101111 pro-Syrian 3 -1110101111 Vanuatuan 3 -1110101111 hard-left 3 -1110101111 tax-revolt 3 -1110101111 Panamian 3 -1110101111 anti-Khomeini 4 -1110101111 anti-Kabul 4 -1110101111 paternalist 4 -1110101111 Tadzhik 4 -1110101111 Shia 4 -1110101111 white-ethnic 4 -1110101111 Deliverers 4 -1110101111 decriminalizing 4 -1110101111 Satmar 4 -1110101111 seven-party 4 -1110101111 Chilewich 4 -1110101111 India-Pakistan 4 -1110101111 pro-Iran 4 -1110101111 PRI-controlled 4 -1110101111 Threepenny 4 -1110101111 Somali 4 -1110101111 atheistic 4 -1110101111 anti-Marcos 4 -1110101111 1976-83 5 -1110101111 pro-Marcos 5 -1110101111 CIA-backed 5 -1110101111 Ghana-Togo 5 -1110101111 placebo-treated 5 -1110101111 opposition-party 5 -1110101111 aviation-industry 5 -1110101111 American-backed 5 -1110101111 marauding 5 -1110101111 REGIE 6 -1110101111 Hashemite 6 -1110101111 3,000-mile 6 -1110101111 120-seat 6 -1110101111 anti-Mecham 6 -1110101111 oil-union 7 -1110101111 half-century-old 7 -1110101111 free-market-oriented 7 -1110101111 Sandinista-Contra 7 -1110101111 low-ranking 7 -1110101111 German-German 7 -1110101111 Cystic 8 -1110101111 Swazi 8 -1110101111 Inca 8 -1110101111 Kanak 8 -1110101111 Soviet-designed 8 -1110101111 bicoastal 8 -1110101111 Tasmanian 9 -1110101111 Swedish-made 9 -1110101111 nomadic 9 -1110101111 Uruguayan 9 -1110101111 Mentally 9 -1110101111 Babylonian 9 -1110101111 Azerbaijani 10 -1110101111 anti-Marxist 10 -1110101111 Brezhnev-era 10 -1110101111 orbital 10 -1110101111 Iranian-inspired 11 -1110101111 Austro-Hungarian 11 -1110101111 Icelandic 11 -1110101111 first-phase 12 -1110101111 Israeli-backed 12 -1110101111 Athenian 12 -1110101111 Ugandan 12 -1110101111 Marxist-led 12 -1110101111 U.S.-sponsored 13 -1110101111 U.S.-Mexico 13 -1110101111 Hapsburg 13 -1110101111 Estonian 13 -1110101111 Soviet-led 13 -1110101111 U.S.-supported 13 -1110101111 Vietnam-era 14 -1110101111 Tanzanian 15 -1110101111 Omani 15 -1110101111 Syrian-backed 15 -1110101111 Rhodesian 15 -1110101111 Moroccan 15 -1110101111 Zambian 16 -1110101111 active-duty 16 -1110101111 Latvian 16 -1110101111 blue-light 17 -1110101111 Aboriginal 17 -1110101111 Druse 18 -1110101111 Reagan-era 20 -1110101111 Chadian 21 -1110101111 Mozambican 23 -1110101111 Yom 26 -1110101111 hardline 27 -1110101111 unelected 28 -1110101111 Sudanese 29 -1110101111 Czechoslovak 31 -1110101111 Confederate 32 -1110101111 Ottoman 33 -1110101111 Guatemalan 33 -1110101111 Bolshevik 38 -1110101111 Serbian 39 -1110101111 Basque 41 -1110101111 Bolivian 42 -1110101111 Soviet-backed 56 -1110101111 Jamaican 62 -1110101111 Ethiopian 70 -1110101111 anti-Sandinista 71 -1110101111 Bulgarian 72 -1110101111 Teamster 75 -1110101111 Romanian 75 -1110101111 Cambodian 80 -1110101111 Anglican 80 -1110101111 Algerian 84 -1110101111 Kurdish 88 -1110101111 Jordanian 91 -1110101111 Angolan 94 -1110101111 Yugoslav 95 -1110101111 Haitian 98 -1110101111 Czech 102 -1110101111 Banana 105 -1110101111 Sikh 109 -1110101111 U.S.-backed 113 -1110101111 Salvadoran 128 -1110101111 Honduran 145 -1110101111 Syrian 175 -1110101111 Libyan 193 -1110101111 Dominican 198 -1110101111 Tamil 229 -1110101111 Egyptian 246 -1110101111 Colombian 265 -1110101111 Pakistani 266 -1110101111 Lebanese 334 -1110101111 Turkish 335 -1110101111 Kuwaiti 516 -1110101111 Panamanian 520 -1110101111 Islamic 527 -1110101111 Cuban 555 -1110101111 Polish 565 -1110101111 Sandinista 612 -1110101111 Iraqi 704 -1110101111 Afghan 725 -1110101111 Nicaraguan 1241 -1110101111 Israeli 1718 -1110101111 Soviet 12759 -1110101111 Iranian 2086 -1110110000 go-away 1 -1110110000 chemo-mechanical 1 -1110110000 tax-needs 1 -1110110000 waste-cutting 1 -1110110000 small-business-corporation 1 -1110110000 moving-expense 1 -1110110000 unhighlighted 1 -1110110000 Watergate-inspired 1 -1110110000 disasterous 1 -1110110000 now-attractive 1 -1110110000 4.2-million-barrel 1 -1110110000 bearer-depositary 1 -1110110000 estate-asset 1 -1110110000 in-rate 1 -1110110000 28-bed 1 -1110110000 once-local 1 -1110110000 97,000-job 1 -1110110000 drip-proof 1 -1110110000 70,000-won 1 -1110110000 peer-group 1 -1110110000 often-perverse 1 -1110110000 network-licensing 1 -1110110000 fund-diversion 1 -1110110000 note-by-note 1 -1110110000 posted-price 1 -1110110000 safety-control 1 -1110110000 nuisance-prevention 1 -1110110000 -cash 1 -1110110000 more-caustic 1 -1110110000 data-transmitting 1 -1110110000 60-cents-a-month 1 -1110110000 total-cleanup 1 -1110110000 health-and-safety 1 -1110110000 50-cent-a-barrel 1 -1110110000 70,832 1 -1110110000 starting-wage 1 -1110110000 ABUSE 1 -1110110000 1/16-point 1 -1110110000 specialinterest 1 -1110110000 equipment-adjusted 1 -1110110000 bar-bet 1 -1110110000 distortionary 1 -1110110000 permissable 1 -1110110000 further-reaching 1 -1110110000 pay-for-play 1 -1110110000 non-commital 1 -1110110000 businessman-is-the-villain 1 -1110110000 business-fare 1 -1110110000 early-model-year 1 -1110110000 partyline 1 -1110110000 nonresident-alien 1 -1110110000 stare-glare 1 -1110110000 forest-spirit 1 -1110110000 200,000-unit 1 -1110110000 22,000-job 1 -1110110000 more-than-sixfold 1 -1110110000 videotape-testimony 1 -1110110000 smaller-than-planned 1 -1110110000 royalty-tax 1 -1110110000 two-body 1 -1110110000 employee-pension 1 -1110110000 18-mile-a-day 1 -1110110000 equity-loan 1 -1110110000 Shariah-Islamic 1 -1110110000 25-cent-a-pack 1 -1110110000 worker-discharge 1 -1110110000 1.20-guilder 1 -1110110000 boss-worker 1 -1110110000 information-stealing 1 -1110110000 service-firm 1 -1110110000 coal-leasing 1 -1110110000 Setagaya 1 -1110110000 partnership-investing 1 -1110110000 consumer-financing 1 -1110110000 1.2-million-barrel-a-day 1 -1110110000 foreclosure-rate 1 -1110110000 1927-29 1 -1110110000 125-point 1 -1110110000 130-point 1 -1110110000 more-than-fivefold 1 -1110110000 collect-and-win 1 -1110110000 29,000-job 1 -1110110000 boating-accident 1 -1110110000 cash-assistance 1 -1110110000 productivity-related 1 -1110110000 2,310,000 1 -1110110000 loan-level 1 -1110110000 phony-shelter 1 -1110110000 stabilization-fund 1 -1110110000 one-mpg 1 -1110110000 60-cent-a-month 1 -1110110000 stay-loose 1 -1110110000 tire-price 1 -1110110000 power-rate 1 -1110110000 58,609-share 1 -1110110000 744,530 1 -1110110000 40-cent-an-hour 1 -1110110000 204,000-job 1 -1110110000 license-fee 1 -1110110000 price-index 1 -1110110000 143-mile-an-hour 1 -1110110000 product-inventory 1 -1110110000 91,000-job 1 -1110110000 smog-reduction 1 -1110110000 2.5-cent 1 -1110110000 domestic-sales 1 -1110110000 400,000-barrel-a-day 1 -1110110000 economist-information 1 -1110110000 investment-skewing 1 -1110110000 single-woman-headed 1 -1110110000 countercomplacency 1 -1110110000 appeal-deadline 1 -1110110000 software-import 1 -1110110000 federal-funding 1 -1110110000 newly-approved 1 -1110110000 incentive-rate 1 -1110110000 agilely 1 -1110110000 inexpensive-labor 1 -1110110000 market-widening 1 -1110110000 38-4 1 -1110110000 lower-than-requested 1 -1110110000 Allied-related 1 -1110110000 Galosh 1 -1110110000 exaction 1 -1110110000 stock-for-performance 1 -1110110000 1-point 1 -1110110000 65-cent 1 -1110110000 court-created 1 -1110110000 expatriate-employee 1 -1110110000 oligarcho-bureaucratic 1 -1110110000 table-service 1 -1110110000 department-by-department 1 -1110110000 entrepreneur-turned-daredevil 1 -1110110000 two-method 1 -1110110000 marginal-tax-rate 1 -1110110000 IMF-arranged 1 -1110110000 loanorigination 1 -1110110000 punctuation-like 1 -1110110000 one-million-ton 1 -1110110000 one-cent-a-liter 1 -1110110000 loan-orgination 1 -1110110000 13,000-ton 1 -1110110000 cake-baking 1 -1110110000 salary-protection 1 -1110110000 retail-ready 1 -1110110000 77,615 1 -1110110000 consumer-tax 1 -1110110000 muralist 1 -1110110000 teaching-load 1 -1110110000 highest/lowest 1 -1110110000 escalator-licensing 1 -1110110000 529,042-contract 1 -1110110000 2,102 1 -1110110000 1,611 1 -1110110000 casino-game 1 -1110110000 customs-user 1 -1110110000 MTV-style 1 -1110110000 more-than-twofold 1 -1110110000 theft-of-government-property 1 -1110110000 regional-banking 1 -1110110000 convention-alarms 1 -1110110000 multitudinous 1 -1110110000 15-cent-a-gallon 1 -1110110000 taxcut 1 -1110110000 standard-risk 1 -1110110000 barcodes 1 -1110110000 five-million-box 1 -1110110000 staff-to-child 1 -1110110000 51-cent-a-barrel 1 -1110110000 cushiest 1 -1110110000 open-container 1 -1110110000 385,000-job 1 -1110110000 problem-lawyer 1 -1110110000 cement-price 1 -1110110000 black-student 1 -1110110000 20-bed 1 -1110110000 nonprice 1 -1110110000 expert-witness 1 -1110110000 24,000-person 1 -1110110000 137,000-job 1 -1110110000 137,000job 1 -1110110000 280,000-job 1 -1110110000 perdiem 1 -1110110000 license-rate 1 -1110110000 35-cents-an-hour 1 -1110110000 California-crude 1 -1110110000 410,137-share 1 -1110110000 less-than-mystical 1 -1110110000 600-article 1 -1110110000 below-benchmark 1 -1110110000 already-legislated 1 -1110110000 54-page 1 -1110110000 convention-time 1 -1110110000 stroke-reducing 1 -1110110000 higher-than-standard 1 -1110110000 anti-Racal 1 -1110110000 record-sale 1 -1110110000 foreign-transaction 1 -1110110000 securities-investment 1 -1110110000 customer-inventory 1 -1110110000 perfect-attendance 1 -1110110000 life-without-parole 1 -1110110000 trade-license 1 -1110110000 one-cent-a-pound 1 -1110110000 Anti-Jitney 1 -1110110000 federal-securities 1 -1110110000 121,713 1 -1110110000 Larger-than-expected 1 -1110110000 less-than-feared 1 -1110110000 buy-in-advance 1 -1110110000 scholarship-aid 1 -1110110000 patent-harmonizing 1 -1110110000 300,000-account 1 -1110110000 truck-driver-licensing 1 -1110110000 building-permit 1 -1110110000 consumer-price-index 1 -1110110000 gross-income 1 -1110110000 venture-like 1 -1110110000 private-plan 1 -1110110000 town-provided 1 -1110110000 36-word 1 -1110110000 294,000-job 1 -1110110000 home-mortgage-interest 1 -1110110000 work-loss 1 -1110110000 sorely-needed 1 -1110110000 wildlife-conservation 1 -1110110000 bases-closing 1 -1110110000 comfort-ruling 1 -1110110000 wage-indexation 2 -1110110000 10,000-ton 2 -1110110000 loan-to-deposit 2 -1110110000 gas-rate 2 -1110110000 refinery-run 2 -1110110000 often-mediocre 2 -1110110000 Goru 2 -1110110000 taxlaw 2 -1110110000 guarantee-fund 2 -1110110000 home-interest 2 -1110110000 alternative-minimum-tax 2 -1110110000 crop-planting 2 -1110110000 moneyback 2 -1110110000 short-time-compensation 2 -1110110000 super-state 2 -1110110000 concealed-weapons 2 -1110110000 price-move 2 -1110110000 Reagan-proposed 2 -1110110000 nonsafety 2 -1110110000 trade-reform 2 -1110110000 6,000-hour 2 -1110110000 head-of-household 2 -1110110000 per-program 2 -1110110000 incometax 2 -1110110000 pre-death 2 -1110110000 drug-price 2 -1110110000 deficit-related 2 -1110110000 debt-interest 2 -1110110000 discountrate 2 -1110110000 workrule 2 -1110110000 tiered 2 -1110110000 wage-cost 2 -1110110000 living-cost 2 -1110110000 25-fold 2 -1110110000 financial-regulation 2 -1110110000 co-payment 2 -1110110000 stock-class 2 -1110110000 worker-protection 2 -1110110000 16-paragraph 2 -1110110000 crew-size 2 -1110110000 postage-rate 2 -1110110000 state-required 2 -1110110000 textile-protection 2 -1110110000 15-cent-an-hour 2 -1110110000 no-veto 2 -1110110000 contract-rights 2 -1110110000 certificate-of-need 2 -1110110000 cigarette-tax 3 -1110110000 FINA 3 -1110110000 newsprint-price 3 -1110110000 capital-cost 3 -1110110000 sign-on 3 -1110110000 government-spending 3 -1110110000 special-funds 3 -1110110000 pay-raise 3 -1110110000 pre-export 3 -1110110000 gas-tax 3 -1110110000 balance-due 3 -1110110000 thirtyfold 3 -1110110000 anti-cartel 3 -1110110000 nonwage 3 -1110110000 court-set 3 -1110110000 risk-asset 3 -1110110000 work-hour 3 -1110110000 immigration-law 3 -1110110000 ticket-price 3 -1110110000 fixed-pricing 3 -1110110000 phone-rate 3 -1110110000 290-137 3 -1110110000 dog-boarding 3 -1110110000 advance-notification 3 -1110110000 pro-competition 3 -1110110000 regular-tax 3 -1110110000 price-related 3 -1110110000 pollution-reduction 3 -1110110000 year-toyear 3 -1110110000 postal-rate 4 -1110110000 non-immigrant 4 -1110110000 press-control 4 -1110110000 computer-ready 4 -1110110000 veto-override 4 -1110110000 federal-tax 4 -1110110000 fixed-cost 4 -1110110000 business-tax 4 -1110110000 half-percentage-point 4 -1110110000 landing-fee 5 -1110110000 value-added-tax 5 -1110110000 passive-loss 5 -1110110000 unkindest 5 -1110110000 medical-insurance 5 -1110110000 investment-tax 5 -1110110000 insurance-premium 5 -1110110000 debt/equity 6 -1110110000 fuel-cost 6 -1110110000 gains-tax 6 -1110110000 post-closing 6 -1110110000 late-payment 6 -1110110000 foreign-tax 7 -1110110000 cost-accounting 7 -1110110000 state-mandated 7 -1110110000 state-income-tax 7 -1110110000 wage-and-benefit 8 -1110110000 state-tax 8 -1110110000 medicare 8 -1110110000 electric-rate 9 -1110110000 tied-aid 9 -1110110000 base-price 10 -1110110000 capital-gains-tax 10 -1110110000 tax-accounting 10 -1110110000 tax-return 10 -1110110000 consumer-interest 10 -1110110000 corporate-tax 11 -1110110000 withholding-tax 11 -1110110000 local-content 12 -1110110000 relative-value 13 -1110110000 preferred-dividend 14 -1110110000 gasoline-tax 14 -1110110000 slotting 15 -1110110000 food-price 15 -1110110000 defense-spending 17 -1110110000 base-wage 19 -1110110000 wage-price 19 -1110110000 passbook 20 -1110110000 payroll-tax 20 -1110110000 excise-tax 26 -1110110000 prime-rate 31 -1110110000 base-rate 32 -1110110000 minimum-tax 37 -1110110000 child-support 38 -1110110000 ZIP 38 -1110110000 property-tax 45 -1110110000 labor-cost 50 -1110110000 work-force 54 -1110110000 itemized 60 -1110110000 tax-rate 69 -1110110000 sales-tax 87 -1110110000 discount-rate 109 -1110110000 minimum-wage 133 -1110110000 fringe 185 -1110110000 cost-of-living 189 -1110110000 martial 203 -1110110000 tariff 390 -1110110000 income-tax 407 -1110110000 immigration 695 -1110110000 tax 21033 -1110110000 wage 2643 -11101100010 content-based 1 -11101100010 career-criminals 1 -11101100010 career-criminal 1 -11101100010 victim-compensation 1 -11101100010 thorn-in-the-side 1 -11101100010 pilottraining 1 -11101100010 expanded-coverage 1 -11101100010 self-submissions 1 -11101100010 financial-responsibility 1 -11101100010 13year 1 -11101100010 interdepartment 1 -11101100010 capital-and-surplus 1 -11101100010 computer-spawned 1 -11101100010 anti-insider-trading 1 -11101100010 anti-contraceptive 1 -11101100010 missile-dismantling 1 -11101100010 minimum-withdrawal 1 -11101100010 agency-dictated 1 -11101100010 real-estate-depreciation 1 -11101100010 cause-oriented 1 -11101100010 psychomotor 1 -11101100010 engine-shutdown 1 -11101100010 mass-markete 1 -11101100010 cash-saving 1 -11101100010 Trusted 1 -11101100010 anti-dogfighting 1 -11101100010 41-2 1 -11101100010 congressional-notification 1 -11101100010 subject-specific 1 -11101100010 multi-government 1 -11101100010 provision-by-provision 1 -11101100010 electrical-hazard 1 -11101100010 pro-Tibet 1 -11101100010 job-posting 1 -11101100010 supplemental-income 1 -11101100010 risk-reserve 1 -11101100010 10,392 1 -11101100010 Albatrosses 1 -11101100010 anti-subsidy 1 -11101100010 earnings-protection 1 -11101100010 belt-retracting 1 -11101100010 minimum-strength 1 -11101100010 pre-loan 1 -11101100010 space-occupancy 1 -11101100010 radio-emissions 1 -11101100010 environmental-enforcement 1 -11101100010 procurement-revision 1 -11101100010 ice-removal 1 -11101100010 misogynist 1 -11101100010 capital-repatriation 1 -11101100010 exposure-monitoring 1 -11101100010 worker-health 1 -11101100010 incentive-building 1 -11101100010 anti-Zia 1 -11101100010 therapeutic/support 1 -11101100010 calendar-defying 1 -11101100010 casino-style 1 -11101100010 non-sustainable 1 -11101100010 183,415 1 -11101100010 revenue-increasing 1 -11101100010 products-liability 1 -11101100010 growth-damping 1 -11101100010 groupy 1 -11101100010 check-list 1 -11101100010 anti-poaching 1 -11101100010 maintenance-period 1 -11101100010 usually-routine 1 -11101100010 radio-talk-show 1 -11101100010 offsides 1 -11101100010 selfrighteous 1 -11101100010 police-style 1 -11101100010 apartheid-based 1 -11101100010 three-by-six-foot 1 -11101100010 lab-safety 1 -11101100010 water-efficiency 1 -11101100010 professional-ethics 1 -11101100010 trademark-license 1 -11101100010 pre-RJR 1 -11101100010 wage-hour 1 -11101100010 sports-injury 1 -11101100010 security-building 1 -11101100010 celebrity-protection 1 -11101100010 once-a-decade 1 -11101100010 machine-precision 1 -11101100010 asset-depreciation 1 -11101100010 holding-period 1 -11101100010 single- 1 -11101100010 experimental-film 1 -11101100010 security-force 1 -11101100010 job-targeted 1 -11101100010 but-for 1 -11101100010 ever-proliferating 1 -11101100010 quarterly-estimated-tax 1 -11101100010 acquisition-review 1 -11101100010 demonstration-project 1 -11101100010 brain-cell 1 -11101100010 pre-manufacture-notice 1 -11101100010 minimum-bid 1 -11101100010 reduced-speed 1 -11101100010 sample-collection 1 -11101100010 anti-Federalist 1 -11101100010 taxable-bond 1 -11101100010 rail-riding 1 -11101100010 title-registration 1 -11101100010 Fed-Japanese 1 -11101100010 Revolution-style 1 -11101100010 adjacency 1 -11101100010 income-source 1 -11101100010 price-volatility 1 -11101100010 hard-hat 1 -11101100010 Pollack/Rogers 1 -11101100010 yet-unfinished 1 -11101100010 concerned-citizen 1 -11101100010 student-faculty 1 -11101100010 case-related 1 -11101100010 anti-porn 1 -11101100010 IOM 1 -11101100010 capital-control 1 -11101100010 state-of-siege 1 -11101100010 restraint-of-trade 1 -11101100010 pension-portability 1 -11101100010 nuclear-nonproliferation 1 -11101100010 sterlized 1 -11101100010 4,282 1 -11101100010 investment-exchange 1 -11101100010 debtor-credit 1 -11101100010 investment-review 1 -11101100010 minimum-funding 1 -11101100010 non-compensable 1 -11101100010 linguistic-political 1 -11101100010 spending-restraint 1 -11101100010 antitrust-related 1 -11101100010 2,816 1 -11101100010 virus-positive 1 -11101100010 risk-vs.-reward 1 -11101100010 no-spouse 1 -11101100010 county-option 1 -11101100010 foreign-trade-control 1 -11101100010 '60s-ish 1 -11101100010 bank-reserve 1 -11101100010 minority-ownership 1 -11101100010 ex-Batterymarch 1 -11101100010 cost-controlling 1 -11101100010 PIN-diode 1 -11101100010 child-staff 1 -11101100010 costsaving 1 -11101100010 moronic 1 -11101100010 U.S.-crew 1 -11101100010 access-code 1 -11101100010 production-curbing 1 -11101100010 just-disclosed 1 -11101100010 rating-concern 1 -11101100010 federal-bankruptcy 1 -11101100010 informationgathering 1 -11101100010 export-restriction 1 -11101100010 worker-rights 1 -11101100010 white-black 1 -11101100010 airsafety 1 -11101100010 -water 1 -11101100010 fastpaced 1 -11101100010 rate-of-return-based 1 -11101100010 internal-review 1 -11101100010 teacher-student 1 -11101100010 document-verification 1 -11101100010 press-hungry 1 -11101100010 racial-justice 1 -11101100010 shareholder-protection 1 -11101100010 coffee-export 1 -11101100010 early-Mormon 1 -11101100010 license-related 1 -11101100010 planning-department 1 -11101100010 trade-dispute 1 -11101100010 import-quota 1 -11101100010 one-month-liquidation 1 -11101100010 blues-oriented 1 -11101100010 social-conscience 1 -11101100010 deceptive-trade-practice 1 -11101100010 campaign-expenditure 1 -11101100010 metal-coining 1 -11101100010 resource-balancing 1 -11101100010 import-license 1 -11101100010 package-weight 1 -11101100010 work-by-the-book 1 -11101100010 veterinary-medicine 1 -11101100010 index-product 1 -11101100010 spousal-notification 1 -11101100010 aircraft-operations 1 -11101100010 more-generic 1 -11101100010 external-sector 1 -11101100010 full-market 1 -11101100010 bank-imposed 1 -11101100010 movie-based 1 -11101100010 ESOP-like 1 -11101100010 production-accounting 1 -11101100010 higher-court 1 -11101100010 smallholder 1 -11101100010 workers'-compensation 1 -11101100010 length-of-service 1 -11101100010 industrial-development-bond 1 -11101100010 hard-to-obtain 1 -11101100010 nit-picky 1 -11101100010 anti-bilingual 1 -11101100010 time-keeping 1 -11101100010 prepositional 1 -11101100010 pro-independent-counsel 1 -11101100010 old/new 1 -11101100010 noncooperative 1 -11101100010 FDA-prescribed 1 -11101100010 environmental-improvement 1 -11101100010 animal-testing 1 -11101100010 artificial-conception 1 -11101100010 outside-contracting 1 -11101100010 wine-purity 1 -11101100010 party-finance-reporting 1 -11101100010 incumbententrenchment 1 -11101100010 anti-jitney 1 -11101100010 foreign-steel 1 -11101100010 semifinished-steel 1 -11101100010 drug-racketeering 1 -11101100010 pre-noon 1 -11101100010 antibias 1 -11101100010 job-satisfaction 1 -11101100010 drug-funding 1 -11101100010 Baa-1/Preliminary 1 -11101100010 concerted-action 1 -11101100010 federal-procurement 1 -11101100010 non-comparable 1 -11101100010 well-understood 1 -11101100010 secret-session 1 -11101100010 industrial-emissions 1 -11101100010 kindred-interest 1 -11101100010 interest-cutting 1 -11101100010 pithiest 1 -11101100010 alley-cat 1 -11101100010 pro-tenant 1 -11101100010 banking-secrecy 1 -11101100010 sit-com 1 -11101100010 Venereal-disease 1 -11101100010 high-performance-lighting 1 -11101100010 cost-containing 1 -11101100010 tobacco-defense 1 -11101100010 import-inspection 1 -11101100010 headwater 1 -11101100010 lending-agreement 1 -11101100010 more-predictable 1 -11101100010 single-A-minus/ 1 -11101100010 crisis-control 1 -11101100010 UPC 1 -11101100010 speed-drill 1 -11101100010 financial-privacy 1 -11101100010 plant-access 1 -11101100010 less-than-exacting 1 -11101100010 check-lane 1 -11101100010 liquidity-policy 1 -11101100010 cost-of-service 1 -11101100010 birth-policy 1 -11101100010 conventional-arms-control 1 -11101100010 stack-height 1 -11101100010 union-grievance 1 -11101100010 tougher-than-expected 1 -11101100010 factory-determined 1 -11101100010 44,845 1 -11101100010 noninterest-income 1 -11101100010 working-hour 1 -11101100010 sea-turtle-saving 1 -11101100010 church-supported 1 -11101100010 customs-inspection 1 -11101100010 55-m.p.h. 1 -11101100010 eye-for-an-eye 1 -11101100010 waste-discharge 1 -11101100010 European-content 1 -11101100010 leash-law 1 -11101100010 six-million-share 1 -11101100010 inspector-training 1 -11101100010 landmark-protection 1 -11101100010 de-escalatory 1 -11101100010 cartoon-and-live 1 -11101100010 minimum-price-verification 1 -11101100010 mortgage-tax-relief 1 -11101100010 ticket-transfer 1 -11101100010 long-contested 1 -11101100010 discount-market 1 -11101100010 prosecutory 1 -11101100010 insider-filing 1 -11101100010 NIH-RAC 1 -11101100010 deceptive-advertising 1 -11101100010 anti-displacement 1 -11101100010 criminal-responsibility 1 -11101100010 product-control 1 -11101100010 less-than-compelling 1 -11101100010 factorydetermined 1 -11101100010 victim's-rights 1 -11101100010 FDA-NIH-industry 1 -11101100010 terminal-pay 1 -11101100010 particulate-emission 1 -11101100010 trade-restricting 2 -11101100010 electionlaw 2 -11101100010 marketing-order 2 -11101100010 appreciated-property 2 -11101100010 soft-loan 2 -11101100010 special-interests 2 -11101100010 currency-stabilizing 2 -11101100010 voter-sponsored 2 -11101100010 regulation-writing 2 -11101100010 lead-exposure 2 -11101100010 loan-application 2 -11101100010 bounty-hunter 2 -11101100010 proscriptive 2 -11101100010 military-aircraft 2 -11101100010 housing-aid 2 -11101100010 more-conciliatory 2 -11101100010 strange-looking 2 -11101100010 advance-booking 2 -11101100010 more-mundane 2 -11101100010 stability-and-growth 2 -11101100010 anti-price-fixing 2 -11101100010 unpatented 2 -11101100010 trade-control 2 -11101100010 college-aid 2 -11101100010 state-compelled 2 -11101100010 criminal-sentencing 2 -11101100010 time-off 2 -11101100010 employee-training 2 -11101100010 permanant 2 -11101100010 trade-practice 2 -11101100010 accounting-industry 2 -11101100010 patent-law 2 -11101100010 covert-operations 2 -11101100010 more-imaginative 2 -11101100010 tobacco-ad 2 -11101100010 electrohydraulic 2 -11101100010 ex-FDA 2 -11101100010 bar-association 2 -11101100010 original-issue-discount 2 -11101100010 data-sharing 2 -11101100010 ill-understood 2 -11101100010 plastic-surgery 2 -11101100010 influx-control 2 -11101100010 cash-raising 2 -11101100010 antismog 2 -11101100010 share-ownership 2 -11101100010 stock-crash 2 -11101100010 Super-301 2 -11101100010 internal-control 2 -11101100010 individual-country 2 -11101100010 pepper-and-salt 2 -11101100010 casino-licensing 2 -11101100010 anti-tax-shelter 2 -11101100010 meat-import 2 -11101100010 anti-lobbying 2 -11101100010 check-hold 2 -11101100010 lender-of-last-resort 2 -11101100010 anti-gun 2 -11101100010 experimental-drug 2 -11101100010 anti-patent 2 -11101100010 cargo-weight 2 -11101100010 automated-trading 2 -11101100010 drug-eradication 2 -11101100010 state-regulatory 2 -11101100010 minority-shareholder 2 -11101100010 incontestability 2 -11101100010 environmental-control 2 -11101100010 soy-based 2 -11101100010 pro-smoking 2 -11101100010 loan-rate 2 -11101100010 line-extension 2 -11101100010 long-term-strategy 2 -11101100010 4,893 2 -11101100010 anti-takover 2 -11101100010 safety-belt 2 -11101100010 diagnosis-related 2 -11101100010 SPCC 2 -11101100010 drug-research 2 -11101100010 consumer-fraud 2 -11101100010 quality-review 2 -11101100010 oneparty 2 -11101100010 musicological 2 -11101100010 state-wide 2 -11101100010 personal-ethics 2 -11101100010 atomic-energy 2 -11101100010 takeover-bid 2 -11101100010 anti-nepotism 2 -11101100010 drug-trial 2 -11101100010 LCN 2 -11101100010 time-of-day 2 -11101100010 ownership-disclosure 2 -11101100010 preventive-care 2 -11101100010 over-broad 2 -11101100010 health-protection 2 -11101100010 belt-use 2 -11101100010 visual-display 2 -11101100010 auto-damage 2 -11101100010 appliance-efficiency 2 -11101100010 customer-protection 2 -11101100010 public-employer 2 -11101100010 labor-protection 2 -11101100010 capital-flows 2 -11101100010 anti-strike 2 -11101100010 burner-can 2 -11101100010 merger-control 2 -11101100010 anti-appropriations 2 -11101100010 car-safety 2 -11101100010 12-part 2 -11101100010 advanced-development 2 -11101100010 view-protection 2 -11101100010 corporate-governance 3 -11101100010 tailpipe-emissions 3 -11101100010 trust-busting 3 -11101100010 fuel-control 3 -11101100010 equal-treatment 3 -11101100010 administration-backed 3 -11101100010 women's-rights 3 -11101100010 anti-homosexual 3 -11101100010 unsterilized 3 -11101100010 primary-election 3 -11101100010 foreign-relations 3 -11101100010 arms-buying 3 -11101100010 proportional-representation 3 -11101100010 community-services 3 -11101100010 stimulatory 3 -11101100010 neurologic 3 -11101100010 oil-refinery 3 -11101100010 gangland 3 -11101100010 trade-relief 3 -11101100010 tax-payment 3 -11101100010 long-proposed 3 -11101100010 installment-sale 3 -11101100010 Teamster-related 3 -11101100010 all-English 3 -11101100010 animal-welfare 3 -11101100010 equal-pay 3 -11101100010 mandatory-testing 3 -11101100010 contingent-fee 3 -11101100010 superconductor-research 3 -11101100010 anti-espionage 3 -11101100010 choose-a-school 3 -11101100010 anti-alcoholism 3 -11101100010 market-reform 3 -11101100010 defense-research 3 -11101100010 egg-marketing 3 -11101100010 fringe-benefit 3 -11101100010 capital-labor 3 -11101100010 land-conservation 3 -11101100010 non-animal 3 -11101100010 internal-market 3 -11101100010 election-eve 3 -11101100010 obligational 3 -11101100010 88-4 3 -11101100010 end-of-the-season 3 -11101100010 exclusionary-rule 3 -11101100010 sex-role 3 -11101100010 vendor-neutral 3 -11101100010 supply-control 3 -11101100010 drought-insurance 3 -11101100010 liquor-pricing 3 -11101100010 eight-count 3 -11101100010 arms-trading 3 -11101100010 anti-sodomy 3 -11101100010 fee-forfeiture 3 -11101100010 technology-export 3 -11101100010 sex-related 4 -11101100010 enzyme-based 4 -11101100010 corporate-disclosure 4 -11101100010 state-senate 4 -11101100010 campaign-financing 4 -11101100010 domestic-content 4 -11101100010 trial-lawyer 4 -11101100010 retirement-income 4 -11101100010 cantonal 4 -11101100010 parent-teacher 4 -11101100010 cash-reporting 4 -11101100010 cost-recovery 4 -11101100010 lens-care 4 -11101100010 expenditure-based 4 -11101100010 public-nuisance 4 -11101100010 anti-kickback 4 -11101100010 margin-setting 4 -11101100010 Shibuya 4 -11101100010 electric-supply 4 -11101100010 airline-deregulation 4 -11101100010 ethics-law 4 -11101100010 long-needed 4 -11101100010 open-housing 4 -11101100010 housing-policy 4 -11101100010 student-teacher 4 -11101100010 black-line 4 -11101100010 textile-quota 4 -11101100010 emergency-planning 4 -11101100010 gear-shift 4 -11101100010 consumer-advocacy 4 -11101100010 abandoned-property 4 -11101100010 rabbinical 4 -11101100010 equal-time 4 -11101100010 moderate-price 4 -11101100010 less-sweeping 4 -11101100010 unfair-trade-practice 4 -11101100010 sector-specific 4 -11101100010 multiple-ownership 4 -11101100010 deficit-trimming 4 -11101100010 interest-deduction 4 -11101100010 executive-level 4 -11101100010 sovereign-loan 4 -11101100010 unauthorized-practice-of-law 4 -11101100010 arms-trade 5 -11101100010 industrial-policy 5 -11101100010 consumer-group 5 -11101100010 rate-base 5 -11101100010 heart-muscle 5 -11101100010 moment-of-silence 5 -11101100010 anti-tobacco 5 -11101100010 return-free 5 -11101100010 antiwar 5 -11101100010 rear-brake 5 -11101100010 anti-shelter 5 -11101100010 injudicious 5 -11101100010 fetal-protection 5 -11101100010 age-based 5 -11101100010 maintenance-related 5 -11101100010 cost-reducing 5 -11101100010 public-disclosure 5 -11101100010 corporate-restructuring 5 -11101100010 trading-floor 5 -11101100010 dividend-payment 5 -11101100010 nuclear-safety 5 -11101100010 car-production 5 -11101100010 unfair-trading 5 -11101100010 aviation-safety 5 -11101100010 anti-pill 5 -11101100010 sex-bias 5 -11101100010 hurry-up 5 -11101100010 maternity-leave 5 -11101100010 fairness-doctrine 5 -11101100010 business-conduct 5 -11101100010 wage-and-hour 5 -11101100010 import-relief 5 -11101100010 loophole-closing 5 -11101100010 labor-related 5 -11101100010 energy-policy 5 -11101100010 noise-abatement 6 -11101100010 sick-building 6 -11101100010 takeover-defense 6 -11101100010 Indiana-type 6 -11101100010 branch-banking 6 -11101100010 worker-safety 6 -11101100010 anti-manipulation 6 -11101100010 prudential 6 -11101100010 bright-line 6 -11101100010 pajama 6 -11101100010 water-quality 6 -11101100010 antidumping 6 -11101100010 loan-repayment 6 -11101100010 cultural-exchange 6 -11101100010 market-access 6 -11101100010 import-licensing 6 -11101100010 religious-right 6 -11101100010 exchange-market 6 -11101100010 capital-punishment 6 -11101100010 fiscal-policy 6 -11101100010 special-operations 6 -11101100010 capital-structure 6 -11101100010 curatorial 6 -11101100010 ice-skating 6 -11101100010 social-issue 6 -11101100010 antifraud 6 -11101100010 social-spending 6 -11101100010 endangered-species 7 -11101100010 energy-security 7 -11101100010 net-capital 7 -11101100010 trade-law 7 -11101100010 industrial-relations 7 -11101100010 criminal-contempt 7 -11101100010 insurance-reform 7 -11101100010 nude-dancing 7 -11101100010 wash-sale 7 -11101100010 defense-contract 7 -11101100010 central-planning 7 -11101100010 incumbent-protection 7 -11101100010 in-plant 7 -11101100010 market-closing 7 -11101100010 pro-labor 7 -11101100010 countervailing-duty 7 -11101100010 employer-sanctions 7 -11101100010 smoke-density 7 -11101100010 financial-reporting 7 -11101100010 rail-safety 7 -11101100010 information-gathering 8 -11101100010 pay-equity 8 -11101100010 employee-relations 8 -11101100010 antitrust-law 8 -11101100010 debt-management 8 -11101100010 water-pollution 8 -11101100010 blue-sky 8 -11101100010 baleful 8 -11101100010 environmental-protection 8 -11101100010 credit-policy 8 -11101100010 tax-raising 8 -11101100010 catastrophic-health-care 9 -11101100010 worker-compensation 9 -11101100010 equal-employment 9 -11101100010 fuel-tank 9 -11101100010 child-labor 9 -11101100010 more-radical 9 -11101100010 stock-fraud 9 -11101100010 covert-action 9 -11101100010 inter-agency 9 -11101100010 bank-board 9 -11101100010 energy-conservation 10 -11101100010 growth-control 10 -11101100010 safety-board 10 -11101100010 election-law 10 -11101100010 consumer-service 10 -11101100010 job-protection 10 -11101100010 algebraic 10 -11101100010 tax-bill 10 -11101100010 export-promotion 10 -11101100010 fair-employment 11 -11101100010 buy-American 11 -11101100010 arms-export 11 -11101100010 product-safety 11 -11101100010 intramarginal 11 -11101100010 equal-opportunity 11 -11101100010 rear-guard 11 -11101100010 food-safety 11 -11101100010 EC-wide 11 -11101100010 taste-test 12 -11101100010 bank-borrowing 12 -11101100010 investor-protection 12 -11101100010 autoimmune 12 -11101100010 unemployment-insurance 12 -11101100010 debtholder 12 -11101100010 abortion-rights 12 -11101100010 anti-bias 12 -11101100010 right-to-work 12 -11101100010 S-corporation 12 -11101100010 dispute-settlement 13 -11101100010 anti-greenmail 13 -11101100010 binational 13 -11101100010 anti-trust 13 -11101100010 evidentiary 13 -11101100010 mine-safety 13 -11101100010 moral-rights 13 -11101100010 spending-cut 13 -11101100010 work-practice 14 -11101100010 more-flexible 14 -11101100010 bond-and-lien 14 -11101100010 tort-reform 14 -11101100010 anti-boycott 14 -11101100010 short-sale 14 -11101100010 anti-bribery 14 -11101100010 up-or-down 14 -11101100010 tied-house 15 -11101100010 fair-trade 15 -11101100010 gas-mileage 15 -11101100010 bank-secrecy 15 -11101100010 ecclesiastical 16 -11101100010 side-impact 16 -11101100010 export-licensing 16 -11101100010 tax-code 17 -11101100010 state-of-emergency 17 -11101100010 off-the-cuff 17 -11101100010 inside-trading 17 -11101100010 oil-spill 17 -11101100010 anti-pornography 17 -11101100010 anti-crime 18 -11101100010 event-risk 18 -11101100010 voter-registration 18 -11101100010 fuel-efficiency 18 -11101100010 debt-repayment 18 -11101100010 investigatory 19 -11101100010 financial-disclosure 19 -11101100010 foreign-affairs 20 -11101100010 gun-control 20 -11101100010 civil-liberties 20 -11101100010 job-safety 20 -11101100010 currency-market 21 -11101100010 insurance-industry 21 -11101100010 auto-safety 22 -11101100010 back-to-work 22 -11101100010 anti-pollution 22 -11101100010 fair-housing 23 -11101100010 air-quality 23 -11101100010 environmental-impact 24 -11101100010 rent-control 24 -11101100010 revenue-losing 24 -11101100010 tax-cutting 24 -11101100010 mail-fraud 25 -11101100010 market-opening 26 -11101100010 drug-fighting 26 -11101100010 intergovernmental 26 -11101100010 anti-terrorist 26 -11101100010 gay-rights 27 -11101100010 anti-taping 28 -11101100010 animal-rights 28 -11101100010 anti-racketeering 28 -11101100010 anti-poverty 28 -11101100010 must-carry 30 -11101100010 air-safety 30 -11101100010 peer-review 31 -11101100010 antitakeover 32 -11101100010 no-smoking 32 -11101100010 drug-approval 34 -11101100010 parental-leave 34 -11101100010 new-drug 35 -11101100010 unfair-trade 35 -11101100010 rate-of-return 35 -11101100010 civil-service 36 -11101100010 cost-control 38 -11101100010 anti-terrorism 38 -11101100010 employee-benefits 40 -11101100010 seat-belt 42 -11101100010 foreign-investment 42 -11101100010 penal 44 -11101100010 Contra-aid 44 -11101100010 death-penalty 46 -11101100010 thrift-industry 47 -11101100010 campaign-finance 47 -11101100010 unwritten 47 -11101100010 consumer-protection 49 -11101100010 air-pollution 50 -11101100010 deregulatory 55 -11101100010 capital-adequacy 55 -11101100010 fuel-economy 56 -11101100010 land-use 57 -11101100010 cost-saving 60 -11101100010 public-service 60 -11101100010 cost-containment 63 -11101100010 estate-tax 66 -11101100010 tender-offer 73 -11101100010 political-action 73 -11101100010 anti-fraud 73 -11101100010 job-security 75 -11101100010 rule-making 77 -11101100010 acid-rain 78 -11101100010 pre-trial 82 -11101100010 affirmative-action 82 -11101100010 anti-discrimination 84 -11101100010 revenue-raising 87 -11101100010 public-interest 96 -11101100010 interagency 97 -11101100010 pretrial 102 -11101100010 executive-branch 107 -11101100010 conflict-of-interest 110 -11101100010 export-control 113 -11101100010 remedial 114 -11101100010 anti-nuclear 118 -11101100010 corrective 125 -11101100010 anti-abortion 130 -11101100010 anti-smoking 133 -11101100010 retaliatory 144 -11101100010 self-regulatory 154 -11101100010 tort 193 -11101100010 anti-dumping 199 -11101100010 special-interest 200 -11101100010 central-bank 203 -11101100010 affirmative 225 -11101100010 anti-apartheid 232 -11101100010 tax-law 251 -11101100010 disciplinary 274 -11101100010 oral 282 -11101100010 investigative 297 -11101100010 anti-drug 303 -11101100010 governmental 330 -11101100010 human-rights 340 -11101100010 electoral 410 -11101100010 civil-rights 434 -11101100010 arms-control 569 -11101100010 judicial 761 -11101100010 anti-takeover 1026 -11101100010 legislative 1307 -11101100010 administrative 1535 -11101100010 environmental 1705 -11101100010 antitrust 2039 -11101100010 regulatory 3780 -11101100010 congressional 4251 -11101100011 no-regulation 1 -11101100011 cold-headed 1 -11101100011 4.5-million-barrel 1 -11101100011 tough-it-out 1 -11101100011 un-iced 1 -11101100011 4.30-cent 1 -11101100011 lead-poisoning 1 -11101100011 honest-government 1 -11101100011 odometer-fraud 1 -11101100011 220-foot 1 -11101100011 28.38-point 1 -11101100011 4,000-job 1 -11101100011 retail-securities 1 -11101100011 sixteenfold 1 -11101100011 big-is-beautiful 1 -11101100011 40.02-point 1 -11101100011 40.2-point 1 -11101100011 Torcaso 1 -11101100011 security-system 1 -11101100011 retardataire 1 -11101100011 metal-and-glass 1 -11101100011 Perot-related 1 -11101100011 156-point 1 -11101100011 palm-tree-shaded 1 -11101100011 3836.48-point 1 -11101100011 insurance-fraud 1 -11101100011 zero-probability 1 -11101100011 twonight 1 -11101100011 156.83-point 1 -11101100011 240-point 1 -11101100011 sharepurchase 1 -11101100011 Air-Safety 1 -11101100011 wound-down 1 -11101100011 jobless-insurance 1 -11101100011 scoff-law 1 -11101100011 108.36-point 1 -11101100011 235-point 1 -11101100011 186.84-point 1 -11101100011 35-mile-an-hour 1 -11101100011 SwingsCause 1 -11101100011 39-point 1 -11101100011 confidence-shaking 1 -11101100011 Solow-type 1 -11101100011 conscientious-objector 1 -11101100011 95-point 1 -11101100011 well-greased 1 -11101100011 all-hard 1 -11101100011 product-license 1 -11101100011 consumer-be-damned 1 -11101100011 unfair-labor-practices 1 -11101100011 windowpane-check 1 -11101100011 fourteenfold 1 -11101100011 2,954 1 -11101100011 sixth-longest 1 -11101100011 63-month 1 -11101100011 tainted-Tylenol 1 -11101100011 commiserative 1 -11101100011 car-defect 1 -11101100011 precipitious 1 -11101100011 specificed 1 -11101100011 100,000-person 1 -11101100011 co-ed 1 -11101100011 near-term-supply 1 -11101100011 disability-leave 1 -11101100011 plague-on-both-your-houses 1 -11101100011 onepoint 1 -11101100011 Messersmith-McNally 1 -11101100011 45.91-point 1 -11101100011 worker-liability 1 -11101100011 false-arrest 1 -11101100011 dollar-led 1 -11101100011 physician-assisted 1 -11101100011 trash-choked 1 -11101100011 25.35-point 1 -11101100011 anti-copycode 1 -11101100011 three-handkerchief 1 -11101100011 831.32-point 1 -11101100011 unliquidated 1 -11101100011 auto-pool 1 -11101100011 44-month 1 -11101100011 anti-treaty-shopping 1 -11101100011 failure-to-file 1 -11101100011 12,065 1 -11101100011 labor-arbitration 1 -11101100011 PennzoilTexaco 1 -11101100011 antiques-company 1 -11101100011 train-crash 1 -11101100011 35-mile-per-hour 1 -11101100011 30-mile-per-hour 1 -11101100011 904.42-point 1 -11101100011 160-foot-deep 1 -11101100011 breach-of-agreement 1 -11101100011 38,808 1 -11101100011 46.1-point 1 -11101100011 private-development 1 -11101100011 Sumner-area 1 -11101100011 much-tarnished 1 -11101100011 indirect-purchaser 1 -11101100011 fullscale 1 -11101100011 Rand-created 1 -11101100011 gray-silk 1 -11101100011 ghosted 1 -11101100011 government-media 1 -11101100011 insurance-contract 1 -11101100011 mega-sporting 1 -11101100011 gang-rape 1 -11101100011 priest-penitent 1 -11101100011 rumor-related 1 -11101100011 10,000-person 1 -11101100011 legal-type 1 -11101100011 half-pfennig 1 -11101100011 34-count 1 -11101100011 96-point 1 -11101100011 grandslam 1 -11101100011 42.50-point 1 -11101100011 lifesized 1 -11101100011 258-pound 1 -11101100011 ball-control 1 -11101100011 much-watched 1 -11101100011 jobless-rate 1 -11101100011 mandatory-purchase 1 -11101100011 huckstering 1 -11101100011 218-page 1 -11101100011 431.69-point 1 -11101100011 0.2-point 1 -11101100011 gator-related 1 -11101100011 graven 1 -11101100011 17.07-point 1 -11101100011 most-touted 1 -11101100011 shareholder-derivative 1 -11101100011 14-percentage-point 1 -11101100011 78,000-man 1 -11101100011 Soeharno 1 -11101100011 peck-and-hunt 1 -11101100011 38.59-point 1 -11101100011 twinhull 1 -11101100011 gas-chambers 1 -11101100011 one-for-three 1 -11101100011 10.77-point 1 -11101100011 Miles-Cutter 1 -11101100011 pro-sterilization 1 -11101100011 tanker-shipping 1 -11101100011 1-for-12 1 -11101100011 159-point 1 -11101100011 hot-springs 1 -11101100011 deep-blue 1 -11101100011 95.46-point 1 -11101100011 79-count 1 -11101100011 5,000-job 1 -11101100011 132,000-job 1 -11101100011 franked-mail 1 -11101100011 once-in-forever 1 -11101100011 windiest 1 -11101100011 1-for-9 1 -11101100011 keener-than-usual 1 -11101100011 Korematsu 1 -11101100011 one-out 1 -11101100011 interest-based 1 -11101100011 5.1-million-share 1 -11101100011 cell-restructuring 1 -11101100011 corporate-credit 1 -11101100011 red-ink-drenched 1 -11101100011 lowercourt 1 -11101100011 rate-rollback 1 -11101100011 unlawful-detainer 1 -11101100011 47-point 1 -11101100011 growth-driven 1 -11101100011 31-count 1 -11101100011 internal-controls 1 -11101100011 stripy 1 -11101100011 property-by-property 1 -11101100011 4.51-point 1 -11101100011 wrongful-dismissal 1 -11101100011 Superfund-related 1 -11101100011 13,000-vote 1 -11101100011 presciption-drug 1 -11101100011 first-step 1 -11101100011 Tiriac-negotiated 1 -11101100011 31.5-point 1 -11101100011 payroll-fraud 1 -11101100011 R-infringement 1 -11101100011 name-infringement 1 -11101100011 oftsounded 1 -11101100011 proto-fascist 1 -11101100011 much-too-small 1 -11101100011 industrial-espionage 1 -11101100011 470-count 1 -11101100011 paper-trail 1 -11101100011 137-count 1 -11101100011 anti-haute 1 -11101100011 police-torture 1 -11101100011 rosette-covered 1 -11101100011 buyer-be-damned 1 -11101100011 lime-like 1 -11101100011 finanial 1 -11101100011 fire-warning 1 -11101100011 bus-hijacking 1 -11101100011 scimitar-carrying 1 -11101100011 unfair-competition 1 -11101100011 wild-goose 1 -11101100011 pro-Merkle 1 -11101100011 unbreached 1 -11101100011 Reagan-Shultz 1 -11101100011 butcher-shop 1 -11101100011 corruption-related 1 -11101100011 pin-stripped 1 -11101100011 anti-civil 1 -11101100011 10.97-point 1 -11101100011 trouble-filled 1 -11101100011 dioxin-exposure 1 -11101100011 Philippine-government 1 -11101100011 2,000-job 1 -11101100011 story-theater 1 -11101100011 51-point 1 -11101100011 jobsafety 1 -11101100011 dermatic 1 -11101100011 secured-lease 1 -11101100011 78-count 1 -11101100011 2.86-point 1 -11101100011 45,400-kilowatt 1 -11101100011 ring-shaped 1 -11101100011 18.70-point 1 -11101100011 more-focused 1 -11101100011 nut-brown 1 -11101100011 derivative-action 1 -11101100011 triple-damage 1 -11101100011 purse-snatching 1 -11101100011 telephone-installation 1 -11101100011 deactivates 1 -11101100011 1,004-count 1 -11101100011 gray-area 1 -11101100011 baseball-bat 1 -11101100011 reserves-for 1 -11101100011 57-count 1 -11101100011 2.53-point 1 -11101100011 patent-extension 1 -11101100011 property-insurance 1 -11101100011 156-count 1 -11101100011 38-page 1 -11101100011 9,000-acre 1 -11101100011 CBS-Westmoreland 1 -11101100011 two-degree 1 -11101100011 109-page 1 -11101100011 book-income 1 -11101100011 34,000-job 1 -11101100011 189,000-job 1 -11101100011 Crocker-Midland 1 -11101100011 45.60-point 1 -11101100011 tariff-limitation 1 -11101100011 state-conducted 1 -11101100011 arbitrage-program 1 -11101100011 10-straight-points 1 -11101100011 1977-1980 1 -11101100011 1,000-job 1 -11101100011 15,000-job 1 -11101100011 32,000-job 1 -11101100011 57.39-point 1 -11101100011 past-performance 1 -11101100011 24-count 1 -11101100011 Citicorp-related 1 -11101100011 soft-on-the-Soviets 1 -11101100011 federal-law 1 -11101100011 pie-throwing 1 -11101100011 15-for-1 1 -11101100011 liverlike 1 -11101100011 always-escalating 1 -11101100011 21,073 1 -11101100011 reverse-bias 1 -11101100011 so-far-unpublicized 1 -11101100011 central-border 1 -11101100011 news-operations 1 -11101100011 treble-damage 1 -11101100011 2.61-point 1 -11101100011 38-count 1 -11101100011 environmentalist-pacifist 1 -11101100011 49-count 1 -11101100011 48.6-point 1 -11101100011 42.47-point 1 -11101100011 super-energetic 1 -11101100011 390-point 1 -11101100011 51.98-point 1 -11101100011 labor-practice 1 -11101100011 37-count 1 -11101100011 lesser-than-expected 1 -11101100011 alienable 1 -11101100011 merger-contract 1 -11101100011 four-in-the-morning 1 -11101100011 late-minute 1 -11101100011 attempted-murder 1 -11101100011 drug-conspiracy 1 -11101100011 deficit-widening 1 -11101100011 non-bankruptcy-court 1 -11101100011 Duster 1 -11101100011 post-ballot 1 -11101100011 33-month-old 1 -11101100011 33-seat 1 -11101100011 steam-valve 1 -11101100011 3.8-million-barrel 1 -11101100011 electrical-contract 1 -11101100011 sixteen-count 1 -11101100011 nonsparkling 1 -11101100011 2.8-million-barrel 1 -11101100011 toxic-injury 1 -11101100011 long-feared 1 -11101100011 211-point 1 -11101100011 71.7-point 1 -11101100011 religious-liberties 1 -11101100011 highcourt 1 -11101100011 gold-reserve 1 -11101100011 subtantial 1 -11101100011 pension-surplus 1 -11101100011 BP-Britoil 1 -11101100011 herpeslike 1 -11101100011 start-of-the-year 1 -11101100011 sashimithin 1 -11101100011 162-day 1 -11101100011 quota-premium 1 -11101100011 preferred-status 1 -11101100011 16.29-point 1 -11101100011 semi-isolated 1 -11101100011 236-page 1 -11101100011 light-textured 1 -11101100011 campaign-payments 1 -11101100011 yellow-checked 1 -11101100011 64.42-point 1 -11101100011 equity-skimming 1 -11101100011 non-piscatorial 1 -11101100011 worker-death 1 -11101100011 less-than-cooperative 1 -11101100011 unjust-enrichment 1 -11101100011 sailor-style 1 -11101100011 sharp-eared 1 -11101100011 36.39-point 1 -11101100011 mini-bidding 1 -11101100011 cyclotron 1 -11101100011 pinging 1 -11101100011 results-based 1 -11101100011 software-copying 1 -11101100011 airline-consumer 1 -11101100011 5-foot-1 1 -11101100011 price-induced 1 -11101100011 hang-tough 1 -11101100011 9,000-job 1 -11101100011 fur-trimmed 1 -11101100011 13.7-mark 1 -11101100011 too-frequent 1 -11101100011 190-billion-barrel 1 -11101100011 rate-request 1 -11101100011 6.50-dollar 1 -11101100011 false-claim 1 -11101100011 159,000-job 1 -11101100011 25,000-acre 1 -11101100011 black-lace 1 -11101100011 2.84-cents 1 -11101100011 veterinarian-backed 1 -11101100011 housing-oriented 1 -11101100011 peak-to-trough 1 -11101100011 seventh-straight 1 -11101100011 missile-definition 1 -11101100011 utility-cost 1 -11101100011 performance-standard 1 -11101100011 29-point 1 -11101100011 36-point 1 -11101100011 Batman-related 1 -11101100011 22-cent-a-pound 1 -11101100011 phys 1 -11101100011 too-steep 1 -11101100011 3,398,947 1 -11101100011 portage 1 -11101100011 vested-pension 1 -11101100011 maximium 1 -11101100011 NHSTA 1 -11101100011 anti-draft 1 -11101100011 0.5-percentage-point 1 -11101100011 Soering 1 -11101100011 17-count 1 -11101100011 bribery-scandal 1 -11101100011 more-violent 1 -11101100011 1.5-percentage-point 1 -11101100011 much-aggrieved 1 -11101100011 quasicollective 1 -11101100011 12-count 1 -11101100011 Rios-embryos 1 -11101100011 conversion-to-stock 1 -11101100011 5-point 1 -11101100011 more-thorough 1 -11101100011 rain-induced 1 -11101100011 capsule-tampering 1 -11101100011 13.9-point 1 -11101100011 corporate-antitrust 1 -11101100011 275-fold 1 -11101100011 56-point 1 -11101100011 trophy-size 1 -11101100011 borrower-rights 1 -11101100011 nose-thumbing 1 -11101100011 anti-austerity 1 -11101100011 Bakke-type 1 -11101100011 difficult-to-prove 1 -11101100011 pleay-hippie 1 -11101100011 magazine-group 1 -11101100011 NEJM 1 -11101100011 Isuzu-sized 1 -11101100011 20.23-point 1 -11101100011 511.46-yen 1 -11101100011 14-session 1 -11101100011 stress-inducing 1 -11101100011 Pan-Slavic 1 -11101100011 shop-till-you 1 -11101100011 56,000-vehicle 1 -11101100011 9-mark 1 -11101100011 Vietnam-type 1 -11101100011 audit-malpractice 1 -11101100011 70-cent-a-barrel 1 -11101100011 liquor-fee 1 -11101100011 24.70-point 1 -11101100011 wine-related 1 -11101100011 local-access 1 -11101100011 sideway 1 -11101100011 non-North-American 1 -11101100011 2.4-percentage-point 1 -11101100011 crosscultural 1 -11101100011 19-day-old 1 -11101100011 breach-of-fiduciary-duty 1 -11101100011 company-friendly 1 -11101100011 nine-count 1 -11101100011 Sverdlosk 1 -11101100011 mustard-based 1 -11101100011 account-related 1 -11101100011 39-page 1 -11101100011 55,000-job 1 -11101100011 enhanced-risk 1 -11101100011 crime-influence 1 -11101100011 stem-to-stern 1 -11101100011 Motorola-Intel 1 -11101100011 color-safe 1 -11101100011 791-point 1 -11101100011 off-the-rack 1 -11101100011 93-page 1 -11101100011 self-promoted 1 -11101100011 1992-driven 1 -11101100011 0.26-point 1 -11101100011 90-mile-an-hour 1 -11101100011 F-111C 1 -11101100011 Warholesque 1 -11101100011 recession-year 1 -11101100011 bank-fund 1 -11101100011 ground-war 1 -11101100011 73-count 1 -11101100011 product-liabilty 1 -11101100011 cancer-liability 1 -11101100011 6.28-pound 1 -11101100011 insurance-certificate 1 -11101100011 patent-suit 1 -11101100011 bean-producing 1 -11101100011 8.5-million-barrel 1 -11101100011 50-cent-a-bushel 1 -11101100011 oil-dispute 1 -11101100011 Taiwan-style 1 -11101100011 3-for-7 1 -11101100011 profit-eating 1 -11101100011 380,000-job 1 -11101100011 17,000-job 1 -11101100011 deaththreat 1 -11101100011 share-earnings 1 -11101100011 recorded-tapes 1 -11101100011 tax-cheating 1 -11101100011 bank-authority 1 -11101100011 1,440-acre 1 -11101100011 life-bettering 1 -11101100011 warranty-service 1 -11101100011 20.27-point 1 -11101100011 206-count 1 -11101100011 Chanel-style 1 -11101100011 Boston-made 1 -11101100011 inflation-flattening 1 -11101100011 ghost-like 1 -11101100011 Italian-cut 1 -11101100011 17.40-point 1 -11101100011 4.5-point 1 -11101100011 Christian-Moslem 1 -11101100011 pro-Bosch 1 -11101100011 26-cent 1 -11101100011 coffin-sized 1 -11101100011 five-grade 1 -11101100011 46.40-point 1 -11101100011 four-graduation 1 -11101100011 pro-Mandela 1 -11101100011 ABSCAM 1 -11101100011 state-conferred 1 -11101100011 11.56-point 1 -11101100011 nastier-than-necessary 1 -11101100011 quarter-earnings 1 -11101100011 copyrght 1 -11101100011 trade-allocating 1 -11101100011 up-the-ranks 1 -11101100011 long-forecast 1 -11101100011 contract-surrender 1 -11101100011 anti-Shah 1 -11101100011 secondhalf 1 -11101100011 seersucker 1 -11101100011 excess-baggage 1 -11101100011 fireable 1 -11101100011 script-writers 1 -11101100011 long-term-fund 1 -11101100011 37.5-cent 1 -11101100011 3.49-point 1 -11101100011 513.09-point 1 -11101100011 4.2-point 1 -11101100011 high-season 1 -11101100011 0.25-point 1 -11101100011 four-basis-point 1 -11101100011 gimlet 1 -11101100011 high-plains 1 -11101100011 well-telegraphed 1 -11101100011 369,209-share 1 -11101100011 614,000-square-foot 1 -11101100011 interest-capitalization 1 -11101100011 wrongful-firing 1 -11101100011 Dodd-type 1 -11101100011 stomach-wrenching 1 -11101100011 union-bribery 1 -11101100011 tax-understatement 1 -11101100011 junk-holder 1 -11101100011 439-count 1 -11101100011 federal-grand-jury 1 -11101100011 40-count 1 -11101100011 67-page 1 -11101100011 credit-discrimination 1 -11101100011 not-very-interesting 1 -11101100011 market-wide 1 -11101100011 stroboscopic 1 -11101100011 insider-trading-related 1 -11101100011 rumor-led 1 -11101100011 94.06-point 1 -11101100011 14,470 1 -11101100011 44.99-point 1 -11101100011 six-pfennig 1 -11101100011 tobaccoliability 1 -11101100011 54-count 1 -11101100011 perhaps-temporary 1 -11101100011 5.34-point 1 -11101100011 four-justice 1 -11101100011 navigators 1 -11101100011 jobs-discrimination 1 -11101100011 tax-refund 1 -11101100011 27-page 1 -11101100011 Pentagon-fraud 1 -11101100011 crash-like 1 -11101100011 civil-racketeering 1 -11101100011 29.8-point 1 -11101100011 third-sharpest 1 -11101100011 gimme-a-handout 1 -11101100011 130-foot-tall 1 -11101100011 grain-soybean 1 -11101100011 tobacco/cancer 1 -11101100011 once-in-a-century 1 -11101100011 RICO-expanding 1 -11101100011 Cipolone 1 -11101100011 jail-like 1 -11101100011 note-acquisition 1 -11101100011 cocaine-trafficking 1 -11101100011 Oswald-Ruby 1 -11101100011 philological 1 -11101100011 anti-touting 1 -11101100011 20.09-point 1 -11101100011 five-pfennig 1 -11101100011 negligent-homicide 1 -11101100011 hard-platic 1 -11101100011 2.8-percentage-point 1 -11101100011 newsrack 1 -11101100011 57.20-point 1 -11101100011 28.45-point 1 -11101100011 21.7-point 1 -11101100011 3.82-point 1 -11101100011 240,000-job 1 -11101100011 DWI 1 -11101100011 192,000-job 1 -11101100011 asbestos-products 1 -11101100011 insurance-tax 1 -11101100011 casino-sponsored 1 -11101100011 big-spender 1 -11101100011 4.5-mark 1 -11101100011 1.22-point 1 -11101100011 7-to-4 1 -11101100011 physician-malpractice 1 -11101100011 Wang-Lee 1 -11101100011 hospital-stay 1 -11101100011 43-count 1 -11101100011 intervention-aided 1 -11101100011 73-song 1 -11101100011 86.61-point 2 -11101100011 bad-check 2 -11101100011 162-page 2 -11101100011 paratroop 2 -11101100011 SEC-obstruction 2 -11101100011 145-count 2 -11101100011 61.87-point 2 -11101100011 Utrillo 2 -11101100011 360-point 2 -11101100011 recession-related 2 -11101100011 loan-fraud 2 -11101100011 deep-drilling 2 -11101100011 27-count 2 -11101100011 Rifkinesque 2 -11101100011 rear-end 2 -11101100011 354,000-job 2 -11101100011 24.34-point 2 -11101100011 zoot 2 -11101100011 32-cent 2 -11101100011 78-page 2 -11101100011 cigarette-liability 2 -11101100011 205-day 2 -11101100011 small-animal 2 -11101100011 0.90-point 2 -11101100011 glasnostian 2 -11101100011 global-market 2 -11101100011 fetal-alcohol 2 -11101100011 market-sector 2 -11101100011 campaign-contributions 2 -11101100011 90-cent-an-hour 2 -11101100011 invasion-of-privacy 2 -11101100011 floor-joint 2 -11101100011 junglelike 2 -11101100011 early-winter 2 -11101100011 rocket-powered 2 -11101100011 lost-bag 2 -11101100011 shoulder-high 2 -11101100011 military-contractor 2 -11101100011 room-and-board 2 -11101100011 charcoal-gray 2 -11101100011 WPPSS-related 2 -11101100011 flood-insurance 2 -11101100011 rental-rate 2 -11101100011 157-point 2 -11101100011 800-room 2 -11101100011 currency-fraud 2 -11101100011 AER 2 -11101100011 share-manipulation 2 -11101100011 employer-sanction 2 -11101100011 false-advertising 2 -11101100011 hyperbaric 2 -11101100011 government-induced 2 -11101100011 0.7-point 2 -11101100011 reverse-discrimination 2 -11101100011 windfall-tax 2 -11101100011 banking-fraud 2 -11101100011 death-threat 2 -11101100011 multi-colored 2 -11101100011 28.27-point 2 -11101100011 higher-pressure 2 -11101100011 second-sharpest 2 -11101100011 42-count 2 -11101100011 silver-conspiracy 2 -11101100011 one-basis-point 2 -11101100011 computer-crime 2 -11101100011 two-basis-point 2 -11101100011 35-count 2 -11101100011 70-count 2 -11101100011 hard-to-believe 2 -11101100011 car-pricing 2 -11101100011 13-instrument 2 -11101100011 41-point 2 -11101100011 non-returnable 2 -11101100011 19-count 2 -11101100011 47.66-point 2 -11101100011 first-priority 2 -11101100011 probate-court 2 -11101100011 late-hour 2 -11101100011 Syrian-led 2 -11101100011 Worcestershire 2 -11101100011 asbestos-exposure 2 -11101100011 late-campaign 2 -11101100011 anti-raider 2 -11101100011 tax-protester 2 -11101100011 color-field 2 -11101100011 0.1-point 2 -11101100011 farm-economy 2 -11101100011 60-point 2 -11101100011 least-profitable 2 -11101100011 Vetak 2 -11101100011 health-damage 2 -11101100011 case-study 2 -11101100011 hang-'em-high 2 -11101100011 70-point 2 -11101100011 spermicidal 2 -11101100011 palimony 2 -11101100011 450-point 2 -11101100011 656,000-barrel 2 -11101100011 72.44-point 2 -11101100011 farm-related 2 -11101100011 institutional-fund 2 -11101100011 24,000-job 2 -11101100011 divorce-fixing 2 -11101100011 doubling-every-day 2 -11101100011 mass-tort 2 -11101100011 101.46-point 2 -11101100011 24-can 2 -11101100011 mass-disaster 2 -11101100011 land-claims 2 -11101100011 Syrian-brokered 2 -11101100011 odometer-tampering 2 -11101100011 continued-coverage 2 -11101100011 three-second 2 -11101100011 recordbreaking 2 -11101100011 bribery-conspiracy 2 -11101100011 14-cent 2 -11101100011 unsucessful 2 -11101100011 mental-disability 2 -11101100011 market-induced 2 -11101100011 well-paced 3 -11101100011 consent-decree 3 -11101100011 wrongful-termination 3 -11101100011 69.89-point 3 -11101100011 35-point 3 -11101100011 justiciable 3 -11101100011 28-point 3 -11101100011 hurricane-related 3 -11101100011 two-count 3 -11101100011 junk-market 3 -11101100011 13-count 3 -11101100011 first-month 3 -11101100011 rubber-hose 3 -11101100011 1,000-point 3 -11101100011 last-hour 3 -11101100011 anti-election 3 -11101100011 lameduck 3 -11101100011 asbestos-injury 3 -11101100011 cocaine-distribution 3 -11101100011 First-Amendment 3 -11101100011 fuel-price 3 -11101100011 40.97-point 3 -11101100011 center-ring 3 -11101100011 post-1929 3 -11101100011 war-crime 3 -11101100011 Ferguson-Ladd 3 -11101100011 88-count 3 -11101100011 Democratic-sponsored 3 -11101100011 keyless 3 -11101100011 30-mph 3 -11101100011 91-point 3 -11101100011 91.55-point 3 -11101100011 failure-to-supervise 3 -11101100011 racial-discrimination 3 -11101100011 108.35-point 3 -11101100011 drought-caused 3 -11101100011 British-style 3 -11101100011 15-count 3 -11101100011 smoking-liability 3 -11101100011 66.47-point 3 -11101100011 one-pfennig 3 -11101100011 copper-price 3 -11101100011 recession-induced 3 -11101100011 sharkskin 3 -11101100011 civil-fraud 3 -11101100011 early-summer 3 -11101100011 irredentist 3 -11101100011 toxic-tort 3 -11101100011 14-count 3 -11101100011 vertical-restraints 3 -11101100011 Jaycee 3 -11101100011 4-point 3 -11101100011 grain-price 3 -11101100011 public-accommodations 3 -11101100011 million-mile 3 -11101100011 52-point 3 -11101100011 Boesky-related 3 -11101100011 11-count 3 -11101100011 pulpy 3 -11101100011 retail-level 3 -11101100011 22-count 3 -11101100011 58-count 3 -11101100011 four-session 4 -11101100011 Jebel 4 -11101100011 liveried 4 -11101100011 now-settled 4 -11101100011 two-run 4 -11101100011 skin-cancer 4 -11101100011 23-count 4 -11101100011 takeover-driven 4 -11101100011 trade-practices 4 -11101100011 unfair-labor-practice 4 -11101100011 Freeman-Wigton-Tabor 4 -11101100011 copyright-infringement 4 -11101100011 loss-reserve 4 -11101100011 18-count 4 -11101100011 pro-ration 4 -11101100011 civil-investigative 4 -11101100011 tax-base 4 -11101100011 mortgage-fraud 4 -11101100011 insidertrading 4 -11101100011 race-related 4 -11101100011 cocaine-smuggling 4 -11101100011 public-corruption 4 -11101100011 loan-sharking 4 -11101100011 labor-racketeering 4 -11101100011 43-point 4 -11101100011 25-count 4 -11101100011 101-page 4 -11101100011 bond-price 5 -11101100011 employment-discrimination 5 -11101100011 one-percentage-point 5 -11101100011 age-bias 5 -11101100011 bet-the-company 5 -11101100011 single-session 5 -11101100011 crop-threatening 5 -11101100011 post-feminist 5 -11101100011 wage-floor 5 -11101100011 three-count 5 -11101100011 trade-secret 5 -11101100011 market-manipulation 5 -11101100011 chem 5 -11101100011 140.58-point 5 -11101100011 108-point 5 -11101100011 drenching 5 -11101100011 child-molestation 5 -11101100011 legal-malpractice 5 -11101100011 1930s-style 5 -11101100011 post- 5 -11101100011 two-front 6 -11101100011 Scopes 6 -11101100011 big-stock 6 -11101100011 52-count 6 -11101100011 10-count 6 -11101100011 gold-price 7 -11101100011 40-point 7 -11101100011 prosecutable 7 -11101100011 fire-related 7 -11101100011 classaction 7 -11101100011 false-claims 7 -11101100011 gun-smuggling 7 -11101100011 energy-price 7 -11101100011 15-month-old 7 -11101100011 one-half-point 7 -11101100011 heavier-than-expected 7 -11101100011 plane-by-plane 7 -11101100011 seven-count 7 -11101100011 tax-revenue 7 -11101100011 pinstriped 7 -11101100011 dioxin-related 7 -11101100011 contempt-of-court 7 -11101100011 bribery-related 7 -11101100011 trade-secrets 7 -11101100011 23-month 7 -11101100011 crude-price 7 -11101100011 sharper-than-expected 7 -11101100011 book-club 8 -11101100011 five-count 8 -11101100011 four-count 8 -11101100011 drought-driven 8 -11101100011 bounced-check 8 -11101100011 lawyer-client 8 -11101100011 drought-induced 8 -11101100011 seat-price 8 -11101100011 back-pay 8 -11101100011 pinstripe 8 -11101100011 101-point 8 -11101100011 full-point 8 -11101100011 six-count 8 -11101100011 obstruction-of-justice 9 -11101100011 60-cent 9 -11101100011 single-year 9 -11101100011 Kongsberg-Toshiba 9 -11101100011 double-breasted 9 -11101100011 counterespionage 9 -11101100011 pin-stripe 9 -11101100011 tobacco-liability 9 -11101100011 98-count 9 -11101100011 184-page 9 -11101100011 anti-Chinese 9 -11101100011 two-percentage-point 9 -11101100011 stock-appreciation 10 -11101100011 drunk-driving 10 -11101100011 fraud-related 10 -11101100011 140-point 10 -11101100011 three-run 10 -11101100011 lender-liability 11 -11101100011 30-point 11 -11101100011 late-day 11 -11101100011 contract-steering 12 -11101100011 student-led 12 -11101100011 wrongful-death 12 -11101100011 silver-market 12 -11101100011 special-prosecutor 12 -11101100011 two-point 13 -11101100011 Koreagate 13 -11101100011 car-sales 13 -11101100011 trumped-up 14 -11101100011 stock-manipulation 14 -11101100011 Pennzoil-Texaco 14 -11101100011 declaratory 14 -11101100011 mortgage-rate 14 -11101100011 job-discrimination 14 -11101100011 pro-independence 15 -11101100011 bull-market 15 -11101100011 508.00-point 15 -11101100011 midlife 16 -11101100011 drug-smuggling 17 -11101100011 wrongful-discharge 17 -11101100011 defense-procurement 18 -11101100011 cancerphobia 18 -11101100011 commodity-price 18 -11101100011 sex-discrimination 19 -11101100011 post-trial 19 -11101100011 one-point 20 -11101100011 one-cent 20 -11101100011 500-point 21 -11101100011 three-piece 21 -11101100011 share-trading 22 -11101100011 torrential 22 -11101100011 age-discrimination 23 -11101100011 pin-striped 24 -11101100011 subscriber-line 25 -11101100011 child-abuse 25 -11101100011 concurring 27 -11101100011 wire-fraud 28 -11101100011 stockmarket 29 -11101100011 attorney-client 29 -11101100011 bank-fraud 29 -11101100011 drought-related 30 -11101100011 508-point 33 -11101100011 meteoric 34 -11101100011 tax-fraud 36 -11101100011 cost-benefit 38 -11101100011 day-earlier 39 -11101100011 poison-gas 40 -11101100011 tax-evasion 41 -11101100011 Reagan-Gorbachev 42 -11101100011 drug-trafficking 43 -11101100011 grand-jury 50 -11101100011 quantum 51 -11101100011 single-day 54 -11101100011 breach-of-contract 54 -11101100011 bathing 55 -11101100011 securities-fraud 73 -11101100011 pro-democracy 74 -11101100011 pre-emptive 79 -11101100011 month-to-month 84 -11101100011 wait-and-see 86 -11101100011 patent-infringement 88 -11101100011 half-point 92 -11101100011 money-laundering 98 -11101100011 asbestos-related 100 -11101100011 personal-injury 100 -11101100011 stock-price 100 -11101100011 precipitous 111 -11101100011 product-liability 132 -11101100011 oil-price 199 -11101100011 derivative 216 -11101100011 anti-government 243 -11101100011 libel 252 -11101100011 one-day 351 -11101100011 class-action 459 -11101100011 steep 807 -11101100011 insider-trading 1200 -11101100011 stock-market 1386 -11101100011 civil 2869 -11101100011 sharp 3319 -11101100011 criminal 3076 -111011001000 12,700-ton 1 -111011001000 D&F 1 -111011001000 snow-cone 1 -111011001000 copper-purchase 1 -111011001000 3,091 1 -111011001000 40,000-liter 1 -111011001000 TV-video 1 -111011001000 stop-sign 1 -111011001000 mud-inundated 1 -111011001000 entomb 1 -111011001000 dual-leadership 1 -111011001000 anti-AT&T 1 -111011001000 financial-products 1 -111011001000 antidiscrimination 1 -111011001000 producer-supply 1 -111011001000 bank-credit-card 1 -111011001000 buy-two-get-one-free 1 -111011001000 government-security 1 -111011001000 per-square-foot 1 -111011001000 3,436 1 -111011001000 go-forward 1 -111011001000 second-day 1 -111011001000 nuclearemergency 1 -111011001000 lens-shutter 1 -111011001000 interest-expense 1 -111011001000 retransmits 1 -111011001000 all-commodity 1 -111011001000 stop-test 1 -111011001000 name-bearing 1 -111011001000 export-controls 1 -111011001000 gas-project 1 -111011001000 auto-enthusiast 1 -111011001000 reactor-core 1 -111011001000 re-penetrate 1 -111011001000 garbage-incineration 1 -111011001000 safecracking 1 -111011001000 video-catalog 1 -111011001000 bus-length 1 -111011001000 40-plane 1 -111011001000 enviornmental 1 -111011001000 5,412 1 -111011001000 election-money 1 -111011001000 152,971 1 -111011001000 Herend 1 -111011001000 cosmetic-industry 1 -111011001000 more-accurate 1 -111011001000 smoky-blue 1 -111011001000 regulator-imposed 1 -111011001000 piezo 1 -111011001000 customhouse 1 -111011001000 life-is-miserable 1 -111011001000 FCC-mandated 1 -111011001000 doclose 1 -111011001000 fair-competition 1 -111011001000 61,236 1 -111011001000 temporary-resident 1 -111011001000 consumer-analgesic 1 -111011001000 spending-freeze 1 -111011001000 export-quota 1 -111011001000 engine-block 1 -111011001000 tube-feeding 1 -111011001000 prebuilt 1 -111011001000 prerevolutionary 1 -111011001000 gyroscopic 1 -111011001000 double-bolt 1 -111011001000 decist 1 -111011001000 allergy-like 1 -111011001000 plant-evacuation 1 -111011001000 firearms-control 1 -111011001000 stop-shipment 1 -111011001000 brass-mill 1 -111011001000 alarm-company 1 -111011001000 shop-type 1 -111011001000 supra-competitive 1 -111011001000 wholesale-electricity 1 -111011001000 120-page 1 -111011001000 2,746 1 -111011001000 cold-call 1 -111011001000 government-bond-futures 1 -111011001000 million-dollar-plus 1 -111011001000 reductio 1 -111011001000 Leuna 1 -111011001000 Moorish-style 1 -111011001000 department-approved 1 -111011001000 kneejerk 1 -111011001000 store-name 1 -111011001000 foliaged 1 -111011001000 once-segregated 1 -111011001000 OPEC-supply 1 -111011001000 79,411 1 -111011001000 gold-and-white 1 -111011001000 new-unit 1 -111011001000 domestic-crude 1 -111011001000 premium-product 1 -111011001000 near-hysterical 1 -111011001000 foreign-currency-futures 2 -111011001000 unwieldly 2 -111011001000 commercial-jetliner 2 -111011001000 steel-consuming 2 -111011001000 foreign-export 2 -111011001000 soybean-processing 2 -111011001000 minimum-purchase 2 -111011001000 multiple-unit 2 -111011001000 gold-tailings 2 -111011001000 EPA-approved 2 -111011001000 pharmaceutical-product 2 -111011001000 PC-clone 2 -111011001000 union-organizing 2 -111011001000 asset-backed-securities 2 -111011001000 rice-import 2 -111011001000 consumer-photography 2 -111011001000 launch-test 2 -111011001000 image-enhancing 2 -111011001000 occupational-safety 2 -111011001000 movie-ticket 2 -111011001000 advertiser-programming 2 -111011001000 term-life 2 -111011001000 pre-1983 2 -111011001000 200-share 2 -111011001000 picture-tube 2 -111011001000 S&P-related 2 -111011001000 often-arcane 2 -111011001000 oil-fueled 2 -111011001000 quick-draw 2 -111011001000 non-ICO 2 -111011001000 computer-product 2 -111011001000 college-football 2 -111011001000 C5-B 2 -111011001000 piece-rate 2 -111011001000 intraregional 2 -111011001000 179,572 2 -111011001000 not-so-new 2 -111011001000 cream-puff 2 -111011001000 mortgage-production 2 -111011001000 nearer-term 2 -111011001000 fresh-produce 2 -111011001000 non-tire 2 -111011001000 conveyor-belt 2 -111011001000 spic-and-span 2 -111011001000 reprographics 3 -111011001000 aerospace-related 3 -111011001000 sesame-seed 3 -111011001000 carpet-backing 3 -111011001000 education-related 3 -111011001000 back-shop 3 -111011001000 gasket 3 -111011001000 U.S.-related 3 -111011001000 major-city 3 -111011001000 slower-than-anticipated 3 -111011001000 large-print 3 -111011001000 classic-car 3 -111011001000 dealer-only 3 -111011001000 extended-hours 3 -111011001000 media-ownership 3 -111011001000 basketball-shoe 3 -111011001000 medical-diagnostics 3 -111011001000 sugar-import 3 -111011001000 Airtron 3 -111011001000 toilet-paper 3 -111011001000 commercial-launch 3 -111011001000 domestic-vehicle 3 -111011001000 pre-established 4 -111011001000 single-copy 4 -111011001000 country-style 4 -111011001000 less-than-robust 4 -111011001000 GM-related 4 -111011001000 gold-coin 4 -111011001000 auto-import 4 -111011001000 lawn-dart 4 -111011001000 near-month 4 -111011001000 incentive-spurred 4 -111011001000 Lufttransport 4 -111011001000 group-health 4 -111011001000 pedagogical 4 -111011001000 shoot-to-kill 4 -111011001000 storewide 4 -111011001000 non-movie 4 -111011001000 public-partnership 4 -111011001000 auto-emission 5 -111011001000 steel-import 5 -111011001000 replacement-tire 5 -111011001000 securities-lending 5 -111011001000 retransmit 5 -111011001000 car-insurance 6 -111011001000 steel-plate 6 -111011001000 grain-export 6 -111011001000 fuel-oil 6 -111011001000 computer-terminal 6 -111011001000 corporate-image 6 -111011001000 profitless 6 -111011001000 late-December 7 -111011001000 export-license 7 -111011001000 co-generation 7 -111011001000 mortgage-origination 8 -111011001000 bad-risk 8 -111011001000 capital-equipment 8 -111011001000 nonautomotive 8 -111011001000 retail-banking 8 -111011001000 state-local 8 -111011001000 oil-export 8 -111011001000 direct-response 9 -111011001000 major-appliance 9 -111011001000 domestic-car 10 -111011001000 packaged-food 10 -111011001000 loan-origination 10 -111011001000 auto-service 10 -111011001000 muskrat 10 -111011001000 beef-import 10 -111011001000 civil-aircraft 10 -111011001000 world-market 11 -111011001000 consumer-credit 11 -111011001000 tailpipe 12 -111011001000 chain-store 13 -111011001000 existing-home 13 -111011001000 per-store 14 -111011001000 food-store 14 -111011001000 alphabetical 14 -111011001000 oil-rig 14 -111011001000 non-auto 16 -111011001000 cash-market 19 -111011001000 general-merchandise 21 -111011001000 re-export 21 -111011001000 pecking 23 -111011001000 non-GM 26 -111011001000 video-rental 26 -111011001000 heavy-truck 29 -111011001000 variable-life 30 -111011001000 cease-and-desist 30 -111011001000 wellhead 33 -111011001000 home-market 33 -111011001000 spot-market 34 -111011001000 program-trading 36 -111011001000 new-home 38 -111011001000 newsstand 48 -111011001000 stop-loss 53 -111011001000 help-wanted 59 -111011001000 new-car 76 -111011001000 comparable-store 77 -111011001000 durable-goods 87 -111011001000 duty-free 95 -111011001000 same-store 171 -111011001000 restraining 365 -111011001000 rental 711 -111011001000 wholesale 1032 -111011001000 import 2078 -111011001000 retail 4709 -111011001000 export 3282 -111011001001 statistical-process 1 -111011001001 home-television 1 -111011001001 tissue-products 1 -111011001001 now-essential 1 -111011001001 now-predictable 1 -111011001001 morning-afternoon-evening 1 -111011001001 government-asset 1 -111011001001 theater-ticket 1 -111011001001 custom-ordered 1 -111011001001 president-quality 1 -111011001001 Nagoyathe 1 -111011001001 Griffin-Resorts 1 -111011001001 blood-sample 1 -111011001001 shadow-boxing 1 -111011001001 post-mix 1 -111011001001 smalldenomination 1 -111011001001 non-leather 1 -111011001001 mine-defusing 1 -111011001001 chemicalweapons 1 -111011001001 fuel-alcohol 1 -111011001001 Dole-for-President 1 -111011001001 almost-unchallenged 1 -111011001001 unsold-car 1 -111011001001 semicondutor 1 -111011001001 authority-conscious 1 -111011001001 gravel-contract 1 -111011001001 cancer-killing 1 -111011001001 once-standard 1 -111011001001 apeace 1 -111011001001 Feinblooms 1 -111011001001 asbestos-type 1 -111011001001 animal-damage 1 -111011001001 land-flip 1 -111011001001 stationary-cycle 1 -111011001001 pension-asset 1 -111011001001 illegal-weapons 1 -111011001001 employee-owned-enterprise 1 -111011001001 over-projected 1 -111011001001 traffic-signal 1 -111011001001 Italo-Americans 1 -111011001001 spy-sex 1 -111011001001 Japan-those 1 -111011001001 fairmarket 1 -111011001001 EC-bound 1 -111011001001 mangrove-forest 1 -111011001001 gasline 1 -111011001001 Airways-United 1 -111011001001 single-stop 1 -111011001001 table-fruit 1 -111011001001 disequilibrating 1 -111011001001 feed-wheat 1 -111011001001 armssale 1 -111011001001 strategic-products 1 -111011001001 wage-scale 1 -111011001001 launch-customer 1 -111011001001 weapons-for-hostages 1 -111011001001 standards-production 1 -111011001001 microwave-transmission 1 -111011001001 cocaine-exporting 1 -111011001001 paranoiac 1 -111011001001 not-for-attribution 1 -111011001001 muni-bond 1 -111011001001 Gooberesque 1 -111011001001 carbonfiber 1 -111011001001 military-gear 1 -111011001001 millinery 1 -111011001001 manufacturing-industry 1 -111011001001 personal-car 1 -111011001001 4,600-member 1 -111011001001 high-tech-equipment 1 -111011001001 quasimilitary 1 -111011001001 same-facility 1 -111011001001 road-work 1 -111011001001 Jonestown-style 1 -111011001001 arms-dump 1 -111011001001 late-1983 1 -111011001001 boutique-clearance 1 -111011001001 gold-development 1 -111011001001 rural-to-urban 1 -111011001001 main-plant 1 -111011001001 public-asset 1 -111011001001 fill-in-the-blank 1 -111011001001 Cato-Johnson/Y&R 1 -111011001001 Ceding 1 -111011001001 Fidelity-related 1 -111011001001 304,833 1 -111011001001 4,500-broker 1 -111011001001 650-horsepower 1 -111011001001 television-ad 1 -111011001001 kick-starting 1 -111011001001 talk-to-the-camera 1 -111011001001 computer-unit 1 -111011001001 first-customer 1 -111011001001 basswood 1 -111011001001 anti-Carlylean 1 -111011001001 government-labor-business 1 -111011001001 network-affiliation 1 -111011001001 domestic-flight 1 -111011001001 occupancy-related 1 -111011001001 groundwater-pollution 1 -111011001001 water-tank 1 -111011001001 oil-lease 1 -111011001001 girl-on-bulldozer 1 -111011001001 grocery-product 2 -111011001001 China-bound 2 -111011001001 above-plan 2 -111011001001 broker-client 2 -111011001001 overabundant 2 -111011001001 first-offense 2 -111011001001 legal-assistance 2 -111011001001 favored-nation 2 -111011001001 Hoyt-family 2 -111011001001 chemical-arms 2 -111011001001 going-out-of-business 2 -111011001001 Fest 2 -111011001001 rondo 2 -111011001001 commodity-options 2 -111011001001 interdepartmental 2 -111011001001 warning-light 2 -111011001001 re-run 2 -111011001001 gummy 2 -111011001001 odd-sized 2 -111011001001 sackings 2 -111011001001 local-rights 2 -111011001001 behavioral-science 2 -111011001001 domestic-make 2 -111011001001 arms-shipment 2 -111011001001 newcar 2 -111011001001 antidemocratic 2 -111011001001 international-currency 2 -111011001001 investment-portfolio 2 -111011001001 1,200-book 2 -111011001001 1175 2 -111011001001 lottery-ticket 2 -111011001001 incentive-program 2 -111011001001 off-system 3 -111011001001 80-person 3 -111011001001 non-block 3 -111011001001 bons 3 -111011001001 strategic-export 3 -111011001001 cotton-coat 3 -111011001001 equity-fund 3 -111011001001 owned-property 3 -111011001001 milling-machine 3 -111011001001 castoff 3 -111011001001 private-market 3 -111011001001 Mazowsze 4 -111011001001 export-restraint 4 -111011001001 water-damage 4 -111011001001 new-vehicle 4 -111011001001 sure-handed 4 -111011001001 end-of-season 4 -111011001001 airtraffic 4 -111011001001 net-asset 4 -111011001001 unvaccinated 5 -111011001001 Arab-Israel 5 -111011001001 TakeCare 6 -111011001001 nuclear-missile 9 -111011001001 realizable 10 -111011001001 non-proliferation 15 -111011001001 AK-47 15 -111011001001 transracial 16 -111011001001 arms-reduction 20 -111011001001 conventional-arms 25 -111011001001 fair-market 33 -111011001001 pest 35 -111011001001 nuclear-arms 39 -111011001001 arms-sale 53 -111011001001 arms-for-hostages 59 -111011001001 arms-sales 62 -111011001001 troop 176 -111011001001 air-traffic 290 -111011001001 arms 4719 -111011001001 asset 2706 -111011001010 spouse-employment 1 -111011001010 bookpublishing 1 -111011001010 Mauch 1 -111011001010 ren 1 -111011001010 disintegrative 1 -111011001010 Kornfleks 1 -111011001010 RESUME 1 -111011001010 raga 1 -111011001010 U.S.-Saigon 1 -111011001010 team-competition 1 -111011001010 horse-auction 1 -111011001010 naval-escort 1 -111011001010 biochemical-warfare 1 -111011001010 nuclear-security 1 -111011001010 anti-drilling 1 -111011001010 Bahamasbased 1 -111011001010 get-the-government-off-the-backs-of-the-people 1 -111011001010 bottled-up 1 -111011001010 pro-treaty 1 -111011001010 save-the-whale 1 -111011001010 ex-commercial 1 -111011001010 LSAT 1 -111011001010 industrial-style 1 -111011001010 ladstone 1 -111011001010 audience-participation 1 -111011001010 directed-radiation 1 -111011001010 strawberry-pattern 1 -111011001010 nuclear-equipped 1 -111011001010 gas-attack 1 -111011001010 special-delivery 1 -111011001010 anti-Renamo 1 -111011001010 Israeli-controlled 1 -111011001010 350-man 1 -111011001010 wood-grained 1 -111011001010 juris 1 -111011001010 germ-warfare 1 -111011001010 sheep-herding 1 -111011001010 U.S.-assigned 1 -111011001010 5-foot-3-inch 1 -111011001010 book-manufacturing 1 -111011001010 displaced-workers 1 -111011001010 nondetachable 1 -111011001010 contra-revolutionary 1 -111011001010 t-shirt 1 -111011001010 nuclear-deterrence 1 -111011001010 China-affairs 1 -111011001010 middle-finger 1 -111011001010 need-based 1 -111011001010 unleashable 1 -111011001010 anti-maquila 1 -111011001010 fire-truck 1 -111011001010 anti-conformist 1 -111011001010 strength-their 1 -111011001010 car-export 1 -111011001010 speech. 1 -111011001010 wind-energy 1 -111011001010 Pause 1 -111011001010 alphabet-agency 1 -111011001010 light-transmission 1 -111011001010 Plan-style 1 -111011001010 industrial-safety 1 -111011001010 sugar-subsidy 1 -111011001010 drug-curbing 1 -111011001010 Soviet-blasting 1 -111011001010 TV-viewing 1 -111011001010 anti-proliferation 1 -111011001010 cotton-mill 1 -111011001010 tropic 1 -111011001010 serotonin-affecting 1 -111011001010 anti-drink 1 -111011001010 public-transportation 1 -111011001010 anisoylated 1 -111011001010 anti-Swapo 1 -111011001010 pectoral 1 -111011001010 military-economic 1 -111011001010 anti-conservation 1 -111011001010 syllogistic 1 -111011001010 slab-constructed 1 -111011001010 spoon-bending 1 -111011001010 U.S.-Greece 1 -111011001010 merchant-class 1 -111011001010 anti-ecdysiast 1 -111011001010 arpeggio 1 -111011001010 confetti-firing 1 -111011001010 600-foot-high 1 -111011001010 export-aid 1 -111011001010 cozying-up 1 -111011001010 anti-Brennan 1 -111011001010 garbage-barge 1 -111011001010 then-domestic 1 -111011001010 vehicle-distribution 1 -111011001010 anti-busing 1 -111011001010 truce-keeping 1 -111011001010 economic-supporting 2 -111011001010 French-German 2 -111011001010 U.S.-Egyptian 2 -111011001010 pre-harvest 2 -111011001010 so-and-sos 2 -111011001010 1987. 2 -111011001010 shilling 2 -111011001010 suntan-oil 2 -111011001010 bulk-buying 2 -111011001010 jewel-encrusted 2 -111011001010 arbitrage-trading 2 -111011001010 ESCALATED 2 -111011001010 economic-support 2 -111011001010 French-British 2 -111011001010 beach-party 2 -111011001010 pro-Constitution 2 -111011001010 potable-water 2 -111011001010 anti-capitalistic 2 -111011001010 full-priced 2 -111011001010 anti-HMO 2 -111011001010 longest-reigning 2 -111011001010 concha 2 -111011001010 state-security 2 -111011001010 miltary 2 -111011001010 space-launching 2 -111011001010 drug-cartel 2 -111011001010 epidermal 2 -111011001010 consumer-markets 2 -111011001010 mass-games 2 -111011001010 anti-shutdown 2 -111011001010 310-mile 2 -111011001010 jointventure 2 -111011001010 deep-breathing 2 -111011001010 military-training 2 -111011001010 Mi-17 2 -111011001010 career-track 2 -111011001010 neon-lit 2 -111011001010 nuclear-deterrent 2 -111011001010 securities-processing 2 -111011001010 suit-and-tie 2 -111011001010 fee-cutting 2 -111011001010 special-forces 2 -111011001010 potato-futures 2 -111011001010 municipal-course 2 -111011001010 right-led 2 -111011001010 philharmonic 2 -111011001010 anti-shah 2 -111011001010 ABM-related 2 -111011001010 hostage-rescue 2 -111011001010 food-trade 2 -111011001010 earth-resources 2 -111011001010 on-duty 3 -111011001010 CIA-run 3 -111011001010 speech-writing 3 -111011001010 publicworks 3 -111011001010 nose-to-nose 3 -111011001010 work-ethic 3 -111011001010 labor-movement 3 -111011001010 alternating-current 3 -111011001010 government-dominated 3 -111011001010 new-born 3 -111011001010 post-census 3 -111011001010 anti-insurgency 3 -111011001010 strategic-weapons 3 -111011001010 displaced-worker 3 -111011001010 anti-Islamic 3 -111011001010 press-relations 3 -111011001010 dollar-support 3 -111011001010 anti-perestroika 3 -111011001010 weapons-systems 4 -111011001010 anti-Meese 4 -111011001010 portfolio-management 4 -111011001010 criminal-investigation 4 -111011001010 anti-mall 4 -111011001010 Palestinian-Jordanian 4 -111011001010 Jordanian-Palestinian 4 -111011001010 debtor-country 4 -111011001010 EF-111 4 -111011001010 chip-company 4 -111011001010 drug-sales 4 -111011001010 foreign-exchange-market 4 -111011001010 Heisman 4 -111011001010 tissue-type 4 -111011001010 surface-water 4 -111011001010 headquarter 4 -111011001010 OTEC 4 -111011001010 tire-worker 5 -111011001010 space-agency 5 -111011001010 expeditionary 5 -111011001010 military-intelligence 5 -111011001010 foreign-airline 5 -111011001010 branch-office 5 -111011001010 world-trade 5 -111011001010 Soviet-Afghan 5 -111011001010 denominational 5 -111011001010 alimentary 5 -111011001010 pro-Noriega 5 -111011001010 utility-industry 6 -111011001010 anti-narcotics 6 -111011001010 Brownie 6 -111011001010 famine-relief 6 -111011001010 direct-loan 6 -111011001010 stock-selling 6 -111011001010 auto-company 6 -111011001010 MI-5 6 -111011001010 food-aid 6 -111011001010 counterterrorist 7 -111011001010 non-humanitarian 7 -111011001010 nonemergency 7 -111011001010 art-world 7 -111011001010 full-employment 7 -111011001010 anti-guerrilla 8 -111011001010 secret-police 8 -111011001010 moneymaking 9 -111011001010 harmonica 9 -111011001010 equestrian 9 -111011001010 oil-tanker 9 -111011001010 pro-abortion 10 -111011001010 farm-credit 10 -111011001010 centrifugal 11 -111011001010 Ecuadorean 12 -111011001010 drug-control 12 -111011001010 fee-based 13 -111011001010 pro-Contra 14 -111011001010 mine-laying 14 -111011001010 non-lethal 15 -111011001010 drug-enforcement 16 -111011001010 trust-fund 17 -111011001010 CW 17 -111011001010 domestic-policy 18 -111011001010 trade-policy 18 -111011001010 UNITA 20 -111011001010 consular 20 -111011001010 foster-care 20 -111011001010 pro-nuclear 22 -111011001010 disaster-relief 24 -111011001010 Miskito 24 -111011001010 non-military 24 -111011001010 Gestapo 26 -111011001010 peace-keeping 29 -111011001010 Cypriot 29 -111011001010 conveyor 32 -111011001010 counterterrorism 35 -111011001010 space-shuttle 36 -111011001010 counterintelligence 45 -111011001010 contra 53 -111011001010 paramilitary 67 -111011001010 mine-sweeping 68 -111011001010 foreign-trade 71 -111011001010 peacekeeping 73 -111011001010 separatist 85 -111011001010 back-office 108 -111011001010 wartime 111 -111011001010 maritime 132 -111011001010 nonmilitary 138 -111011001010 colonial 157 -111011001010 law-enforcement 270 -111011001010 Nazi 278 -111011001010 guerrilla 383 -111011001010 customs 403 -111011001010 rebel 418 -111011001010 naval 453 -111011001010 postal 483 -111011001010 covert 526 -111011001010 armed 807 -111011001010 Contra 1336 -111011001010 intelligence 1684 -111011001010 military 8370 -111011001010 farm 2806 -111011001011 arboretum 1 -111011001011 Assert 1 -111011001011 on-demand 1 -111011001011 flower-cutting 1 -111011001011 bean-shaped 1 -111011001011 local-authority-managed 1 -111011001011 gun-making 1 -111011001011 alternative-education 1 -111011001011 market-incentive 1 -111011001011 antiinflationary 1 -111011001011 easy-to-film 1 -111011001011 pesticide-spraying 1 -111011001011 low-tariff 1 -111011001011 first-fired 1 -111011001011 family-protection 1 -111011001011 Soviet-grown 1 -111011001011 internal-printing 1 -111011001011 pseudo-Cyrillic 1 -111011001011 index-trading 1 -111011001011 market-building 1 -111011001011 corroborative 1 -111011001011 recession-relief 1 -111011001011 fraudulent-document 1 -111011001011 ticket-refund 1 -111011001011 2,334 1 -111011001011 7,295 1 -111011001011 technology-shopping 1 -111011001011 rock-type 1 -111011001011 bus-ride 1 -111011001011 income-forecasting 1 -111011001011 post-natal 1 -111011001011 growth-inducing 1 -111011001011 flexible-time 1 -111011001011 employee-parking 1 -111011001011 peacful 1 -111011001011 tough-on-taxes 1 -111011001011 parochial-aid 1 -111011001011 shire 1 -111011001011 soil-test 1 -111011001011 fluoroscopic 1 -111011001011 mosaic-covered 1 -111011001011 master-recording 1 -111011001011 aromatherapy 1 -111011001011 football-like 1 -111011001011 business-consumer 1 -111011001011 bargain-travel 1 -111011001011 worker-injuries 1 -111011001011 Medicare-supplement 1 -111011001011 lawyer-executive 1 -111011001011 feeder-flight 1 -111011001011 1989-92 1 -111011001011 extended-assignment 1 -111011001011 presentation-quality 1 -111011001011 resistent 1 -111011001011 merit-raise 1 -111011001011 non-complete 1 -111011001011 nonelectronic 1 -111011001011 tax-timing 1 -111011001011 fixed-sum 1 -111011001011 towel-making 1 -111011001011 collectively-owned 1 -111011001011 decallike 1 -111011001011 profit-improvement 1 -111011001011 hospital-franchise 1 -111011001011 4,000-tune 1 -111011001011 Turley-Mackey 1 -111011001011 473-home 1 -111011001011 oceanshipping 1 -111011001011 wind-surfing 1 -111011001011 management-education 1 -111011001011 termlife 1 -111011001011 farm-research 1 -111011001011 contractural 1 -111011001011 prawn-farm 1 -111011001011 Weekender 1 -111011001011 tissue-culture 1 -111011001011 reverse-image 1 -111011001011 anti-nuclear-energy 1 -111011001011 consumer-rights 1 -111011001011 pipe-like 1 -111011001011 cranial 1 -111011001011 gas-heating 1 -111011001011 teacher-related 1 -111011001011 school-budget 1 -111011001011 undergraduate-level 1 -111011001011 personal-line 1 -111011001011 1-2-3-related 1 -111011001011 dispute-solving 1 -111011001011 community-support 1 -111011001011 relief-stamp 1 -111011001011 46,850 1 -111011001011 anorectic 1 -111011001011 gold-dealing 1 -111011001011 victims-assistance 1 -111011001011 aluminum-wrapped 1 -111011001011 government-jobs 1 -111011001011 building-stamp 1 -111011001011 health-issue 1 -111011001011 newbusiness 1 -111011001011 weapons-plant-cleanup 1 -111011001011 loan-processing 1 -111011001011 lilly 1 -111011001011 residential-house 1 -111011001011 glass-coated 1 -111011001011 black-studies 1 -111011001011 government-insurance 1 -111011001011 non-classified 1 -111011001011 nuclear-weapon-free 1 -111011001011 state-linked 1 -111011001011 catastrophic-acute 1 -111011001011 Ottoman-style 1 -111011001011 verveless 1 -111011001011 race-matching 1 -111011001011 plant-location 1 -111011001011 preventive-maintenance 1 -111011001011 wind-plan 1 -111011001011 custom-imprinted 1 -111011001011 subsistence-farming 1 -111011001011 maternal-health 1 -111011001011 Kunstschau 1 -111011001011 forward-support 1 -111011001011 more-satisfying 1 -111011001011 HESTON 1 -111011001011 unglitzy 1 -111011001011 stock-buy 1 -111011001011 manufacturer-leasing 1 -111011001011 Macintosh-only 1 -111011001011 Cash-value 1 -111011001011 government-published 1 -111011001011 college-acceleration 1 -111011001011 talent-agency 1 -111011001011 self-inspection 1 -111011001011 more-demanding 1 -111011001011 end-of-life 1 -111011001011 family-development 1 -111011001011 sale-and-leaseback 1 -111011001011 chemical-physics 1 -111011001011 boat-and-motor 1 -111011001011 video-training 1 -111011001011 load-carrying 1 -111011001011 FCC-issued 1 -111011001011 business-application 1 -111011001011 post-filing 1 -111011001011 insecticidal 1 -111011001011 insurance-reimbursement 1 -111011001011 housing-cavalry 1 -111011001011 non-charitable 1 -111011001011 bed-and-bored 1 -111011001011 four-inch-long 1 -111011001011 apartheid-enforcing 1 -111011001011 Gramm-Rudman-era 1 -111011001011 anti-flaming 1 -111011001011 community-release 1 -111011001011 stress-maintenance 1 -111011001011 offshore-bank 1 -111011001011 open-trade 1 -111011001011 employee-promotion 1 -111011001011 indigent-health-care 1 -111011001011 non-pet-product 1 -111011001011 John-Witherspoon 1 -111011001011 tight-control 1 -111011001011 business-law 1 -111011001011 mass-communication 1 -111011001011 Joyce-stylish 1 -111011001011 two-by-two-inch 1 -111011001011 non-journalistic 1 -111011001011 research-for-recruiting 1 -111011001011 270-gross-ton 1 -111011001011 take-out-my-appendix 1 -111011001011 behind-the-back 1 -111011001011 hand-scrawled 1 -111011001011 heat-insulating 1 -111011001011 pretournament 1 -111011001011 state-maintained 1 -111011001011 two-language 1 -111011001011 Jupiter-like 1 -111011001011 tumor-cell 1 -111011001011 adjustment-assistance 1 -111011001011 muscular-dystrophy 1 -111011001011 admissions-office 1 -111011001011 military-promotion 1 -111011001011 loan-discount 1 -111011001011 equity-ownership 1 -111011001011 queer 1 -111011001011 counter-yuppie 1 -111011001011 preferential-pricing 1 -111011001011 company-held 1 -111011001011 not-so-public 1 -111011001011 hot-lunch 1 -111011001011 oceangraphic 1 -111011001011 nursing-home-type 1 -111011001011 elderly-long-term 1 -111011001011 urban-homesteading 1 -111011001011 anti-Inkatha 1 -111011001011 three-million-annual-home-attendance 1 -111011001011 cotton-subsidy 1 -111011001011 unemployment-assistance 1 -111011001011 employee-commuting 1 -111011001011 cantilivering 1 -111011001011 property-acquisition 1 -111011001011 hand-sized 1 -111011001011 risk-classification 1 -111011001011 factory-production 1 -111011001011 marketing-gift 1 -111011001011 enteral 1 -111011001011 microsystems 1 -111011001011 home-merchandising 1 -111011001011 customsfree 1 -111011001011 Marmara 1 -111011001011 joint-trading 1 -111011001011 antitrust-enforcement 1 -111011001011 highway-oriented 1 -111011001011 violence-tainted 1 -111011001011 linkage-fee 1 -111011001011 funkiest 1 -111011001011 164-member 1 -111011001011 40,000-volume 1 -111011001011 M16 1 -111011001011 meritocratic 1 -111011001011 farmer-aid 1 -111011001011 Pentagon-supported 1 -111011001011 tuition-assistance 1 -111011001011 sick-out 1 -111011001011 speak-Mandarin 1 -111011001011 wealth-creating 1 -111011001011 Bittania 1 -111011001011 utility-refund 1 -111011001011 Altiplano 1 -111011001011 U.S.-bankrolled 1 -111011001011 between-meals 1 -111011001011 fast-teaching 1 -111011001011 soft-cookie 1 -111011001011 CFC-related 1 -111011001011 DAYTIME 1 -111011001011 Bennett-endorsed 1 -111011001011 outpatient-surgical 1 -111011001011 product-service 1 -111011001011 pre-event 1 -111011001011 dayglow 1 -111011001011 regional-compounding 1 -111011001011 sales-moving 1 -111011001011 adventurist 1 -111011001011 manufacturer-written 1 -111011001011 option-selling 1 -111011001011 management-rights 1 -111011001011 southside 1 -111011001011 corporate-development 1 -111011001011 fertilizer-pricing 1 -111011001011 currency-management 1 -111011001011 elementary-particle 1 -111011001011 employee-incentive 1 -111011001011 peace-and-prosperity 1 -111011001011 publicly-held 1 -111011001011 quota-setting 1 -111011001011 cormorant 1 -111011001011 down-on-his-luck 1 -111011001011 cotter 1 -111011001011 personal-development 1 -111011001011 outlet-store 1 -111011001011 truck-rate 1 -111011001011 rat-eradication 1 -111011001011 tire-edge 1 -111011001011 sex-determination 1 -111011001011 Lanvin-owned 1 -111011001011 amber-colored 1 -111011001011 54,000-student 1 -111011001011 med 1 -111011001011 manufacturer-distributor 1 -111011001011 video-conference 1 -111011001011 market-responsive 1 -111011001011 frequent-renter 1 -111011001011 showgirl-filled 1 -111011001011 farmworker-legalization 1 -111011001011 race-separation 1 -111011001011 presort-service 1 -111011001011 tin-sided 1 -111011001011 gazetted 1 -111011001011 baby-changing 1 -111011001011 product-strategy 1 -111011001011 private-companies 1 -111011001011 revegetation 1 -111011001011 book-industry 1 -111011001011 dog-training 1 -111011001011 drug-money-laundering 1 -111011001011 print-on-tape 1 -111011001011 trade-restraining 1 -111011001011 hospice-style 1 -111011001011 pay-for-prototype 1 -111011001011 top-hatted 1 -111011001011 foreign-import 1 -111011001011 income-transfer 1 -111011001011 once-firm 1 -111011001011 tighting 1 -111011001011 field-survey 1 -111011001011 often-doubtful 1 -111011001011 radar-evasion 1 -111011001011 muscle-relaxation 1 -111011001011 partial-repayment 1 -111011001011 yield-accounting 1 -111011001011 HOPPING 1 -111011001011 often-crippling 1 -111011001011 Treasury-funded 1 -111011001011 radar-antenna 1 -111011001011 cytosurgical 1 -111011001011 Affton 1 -111011001011 hermodialysis 1 -111011001011 cocaine-detoxification 1 -111011001011 workmen's-compensation 1 -111011001011 urban-housing 1 -111011001011 sausage-shaped 1 -111011001011 nonpeak 1 -111011001011 manager-training 1 -111011001011 public-awareness 1 -111011001011 Germans/Who 1 -111011001011 Medisave 1 -111011001011 loft-type 1 -111011001011 Sematech-funded 1 -111011001011 Caress 1 -111011001011 pro-Mitterrand 1 -111011001011 unwaxed 1 -111011001011 custodial-care 1 -111011001011 death-oriented 1 -111011001011 28,000-student 1 -111011001011 best-endowed 1 -111011001011 general-hospital 1 -111011001011 intra-quarter 1 -111011001011 non-high 1 -111011001011 melanin-containing 1 -111011001011 animal-handling 1 -111011001011 Bajau 1 -111011001011 job-destroying 1 -111011001011 special-service 1 -111011001011 heath-care 1 -111011001011 market-allocation 1 -111011001011 pine-and-tarpaper 1 -111011001011 commercial-pilot 1 -111011001011 safari/tourism 1 -111011001011 amusement/theme 1 -111011001011 nofault 1 -111011001011 architecture-show 1 -111011001011 heavy-apparel 1 -111011001011 missile-impact 1 -111011001011 marzipan 1 -111011001011 air-controller 1 -111011001011 White-chapel 1 -111011001011 land-protection 1 -111011001011 market-zapping 1 -111011001011 flexible-leave 1 -111011001011 violin-making 1 -111011001011 colonoscopic 1 -111011001011 14,431 1 -111011001011 oil-containment 1 -111011001011 employee-protection 1 -111011001011 chicken-scratch 1 -111011001011 prodnoses 1 -111011001011 interest-subsidy 1 -111011001011 Louisville-area 1 -111011001011 supply-management 1 -111011001011 free-food 1 -111011001011 school-aid 1 -111011001011 Brazil-Venezuela 1 -111011001011 market-specific 1 -111011001011 Tuborg 1 -111011001011 memory-improvement 1 -111011001011 half-white 1 -111011001011 insurance-processing 1 -111011001011 signal-compliance 1 -111011001011 gifted-children 1 -111011001011 socialist-realist 1 -111011001011 rigor-minded 1 -111011001011 deposit-based 1 -111011001011 loading-ramp 1 -111011001011 fetal-vulnerability 1 -111011001011 deferred-income 1 -111011001011 corporate-records 2 -111011001011 broadcast-television 2 -111011001011 ill-focused 2 -111011001011 social-responsibility 2 -111011001011 foreign-exchange-rate 2 -111011001011 self-laudatory 2 -111011001011 gold-storage 2 -111011001011 consumer-information 2 -111011001011 print-ad 2 -111011001011 health-department 2 -111011001011 neurosurgical 2 -111011001011 contracting-out 2 -111011001011 asset-swap 2 -111011001011 inartistic 2 -111011001011 work-schedule 2 -111011001011 career-training 2 -111011001011 prison-release 2 -111011001011 drug-screening 2 -111011001011 conch 2 -111011001011 weapons-trade 2 -111011001011 communication-service 2 -111011001011 ukiyo-e 2 -111011001011 alternate-energy 2 -111011001011 foster-home 2 -111011001011 reverent 2 -111011001011 quota-compliance 2 -111011001011 quick-strike 2 -111011001011 air-raid 2 -111011001011 drug-withdrawal 2 -111011001011 Xili 2 -111011001011 trade-allocation 2 -111011001011 22,000-student 2 -111011001011 halogen 2 -111011001011 union-employer 2 -111011001011 oligarchical 2 -111011001011 pollution-liability 2 -111011001011 water-delivery 2 -111011001011 promote-from-within 2 -111011001011 ad-sales 2 -111011001011 blood-gas 2 -111011001011 sales-training 2 -111011001011 poured-concrete 2 -111011001011 medical/surgical 2 -111011001011 corporate-training 2 -111011001011 infant-care 2 -111011001011 music-composing 2 -111011001011 inhibitory 2 -111011001011 whacky 2 -111011001011 institutional-trading 2 -111011001011 medical-test 2 -111011001011 calla 2 -111011001011 cup-like 2 -111011001011 solidwaste 2 -111011001011 bulletin-board 2 -111011001011 UDAG-like 2 -111011001011 wheelers 2 -111011001011 non-marine 2 -111011001011 campus-based 2 -111011001011 aeromedical 2 -111011001011 driver-education 2 -111011001011 job-termination 2 -111011001011 joint-training 2 -111011001011 Ptolemaic 2 -111011001011 submarine-missile 2 -111011001011 reverse-mortgage 2 -111011001011 cliquish 2 -111011001011 Age-Less 2 -111011001011 trip-cancellation 2 -111011001011 anti-ballistic-missile 2 -111011001011 accounting-profession 2 -111011001011 debt-reducing 2 -111011001011 undirected 2 -111011001011 Polish-language 2 -111011001011 shell-company 2 -111011001011 American-Jewish 2 -111011001011 import-related 2 -111011001011 Toey 2 -111011001011 recreational-facility 2 -111011001011 open-office 2 -111011001011 cash-rebate 2 -111011001011 legal-service 2 -111011001011 pro-SDI 2 -111011001011 historic-preservation 2 -111011001011 sugar-price-support 2 -111011001011 far-term 2 -111011001011 private-agency 2 -111011001011 NCI-backed 2 -111011001011 combat-vehicle 2 -111011001011 computer-application 2 -111011001011 rent-a-judge 2 -111011001011 risk-bearing 2 -111011001011 credit-information 2 -111011001011 accident-reporting 2 -111011001011 postural 2 -111011001011 telephone-based 2 -111011001011 flexible-premium 2 -111011001011 frequentflier 2 -111011001011 welfare-entrepreneur 2 -111011001011 political-policy 2 -111011001011 option-buying 2 -111011001011 Sufi 2 -111011001011 force-reduction 2 -111011001011 sick-child 2 -111011001011 navigation-satellite 2 -111011001011 junior-development 2 -111011001011 plant-layoff 2 -111011001011 transplantable 2 -111011001011 mixed-income 2 -111011001011 telephone-connection 2 -111011001011 lodge-pole 2 -111011001011 national-convention 2 -111011001011 school-related 2 -111011001011 graduate-level 3 -111011001011 dietetic 3 -111011001011 off-brand 3 -111011001011 emergency-evacuation 3 -111011001011 counterprogramming 3 -111011001011 social-insurance 3 -111011001011 NCO 3 -111011001011 space-saving 3 -111011001011 stick-on 3 -111011001011 civil-defense 3 -111011001011 grant-in-aid 3 -111011001011 job-sharing 3 -111011001011 physician-service 3 -111011001011 cell-culture 3 -111011001011 incentive-pay 3 -111011001011 expert-system 3 -111011001011 public-security 3 -111011001011 health-improvement 3 -111011001011 race-conscious 3 -111011001011 chest-pain 3 -111011001011 submarine-construction 3 -111011001011 low-temperature 3 -111011001011 housing-finance 3 -111011001011 family-life 3 -111011001011 selfhelp 3 -111011001011 steel-service 3 -111011001011 black-lung 3 -111011001011 naproxen 3 -111011001011 Tzotzil 3 -111011001011 accidental-death 3 -111011001011 spread-sheet 3 -111011001011 employee-motivation 3 -111011001011 fly-drive 3 -111011001011 political-campaign 3 -111011001011 technical-assistance 3 -111011001011 Medicare-covered 3 -111011001011 mustard-colored 3 -111011001011 college-preparatory 3 -111011001011 document-destruction 3 -111011001011 mnemonic 3 -111011001011 NOAA 3 -111011001011 self-funded 3 -111011001011 data-management 3 -111011001011 customer-sponsored 3 -111011001011 life-type 3 -111011001011 pregnancy-test 3 -111011001011 dual-shop 3 -111011001011 bootlegged 3 -111011001011 jobless-pay 3 -111011001011 patient-funded 3 -111011001011 do-good 3 -111011001011 economic-austerity 3 -111011001011 tax-practice 3 -111011001011 branch-plant 3 -111011001011 decision-support 3 -111011001011 cost-analysis 3 -111011001011 food-assistance 3 -111011001011 spill-related 3 -111011001011 credit-life 3 -111011001011 forest-management 3 -111011001011 information-handling 3 -111011001011 political-risk 3 -111011001011 crude-supply 3 -111011001011 men-only 3 -111011001011 time-management 3 -111011001011 non-work 3 -111011001011 rule-enforcement 3 -111011001011 corrosion-protection 3 -111011001011 bolt-action 3 -111011001011 first-dollar 3 -111011001011 network-quality 3 -111011001011 teacher-education 3 -111011001011 car-loan 3 -111011001011 technical-training 3 -111011001011 mechanical-engineering 3 -111011001011 sleep-disorder 3 -111011001011 dam-safety 3 -111011001011 stress-reduction 4 -111011001011 medical-leave 4 -111011001011 environmental-cleanup 4 -111011001011 management-development 4 -111011001011 store-brand 4 -111011001011 career-planning 4 -111011001011 social-action 4 -111011001011 Hindu-Arabic 4 -111011001011 trade-group 4 -111011001011 foreign-invested 4 -111011001011 freemarket 4 -111011001011 call-forwarding 4 -111011001011 flight-simulation 4 -111011001011 applique 4 -111011001011 give-away 4 -111011001011 time-card 4 -111011001011 pan-Nordic 4 -111011001011 autographing 4 -111011001011 discount-for-data 4 -111011001011 life-science 4 -111011001011 bank-regulatory 4 -111011001011 public-choice 4 -111011001011 codeine 4 -111011001011 bank-deposit 4 -111011001011 customer-relations 4 -111011001011 ship-construction 4 -111011001011 state-federal 4 -111011001011 asbestos-liability 4 -111011001011 California-style 4 -111011001011 business-entertainment 4 -111011001011 single-sex 4 -111011001011 tenant-management 4 -111011001011 extended-warranty 4 -111011001011 genealogical 4 -111011001011 annual-premium 4 -111011001011 retirement-savings 4 -111011001011 INF-capable 4 -111011001011 continuing-education 4 -111011001011 commercial-type 4 -111011001011 sports-medicine 5 -111011001011 unkept 5 -111011001011 health-plan 5 -111011001011 escalatory 5 -111011001011 kidney-dialysis 5 -111011001011 patient-care 5 -111011001011 male-only 5 -111011001011 employee-severance 5 -111011001011 zoological 5 -111011001011 management-training 5 -111011001011 sick-leave 5 -111011001011 social-work 5 -111011001011 mass-marketing 5 -111011001011 bank-account 5 -111011001011 Pap-smear 5 -111011001011 pop-psychology 5 -111011001011 radiation-protection 5 -111011001011 public-safety 5 -111011001011 hospital-based 5 -111011001011 hemodialysis 5 -111011001011 pre-clinical 5 -111011001011 big-band 5 -111011001011 out-of-hospital 5 -111011001011 well-baby 5 -111011001011 flight-training 5 -111011001011 behavior-modification 5 -111011001011 means-tested 6 -111011001011 pet-care 6 -111011001011 acreage-reduction 6 -111011001011 fire-safety 6 -111011001011 paper-industry 6 -111011001011 occupational-disease 6 -111011001011 home-health 6 -111011001011 unabridged 6 -111011001011 tax-planning 6 -111011001011 credit-related 6 -111011001011 industry-specific 6 -111011001011 klieg 6 -111011001011 directional 6 -111011001011 anti-smog 6 -111011001011 highway-safety 6 -111011001011 group-rate 6 -111011001011 farmworker 6 -111011001011 heart-assist 6 -111011001011 free-travel 6 -111011001011 life-extending 6 -111011001011 clinical-testing 6 -111011001011 glow-in-the-dark 6 -111011001011 single-room 6 -111011001011 unemployment-compensation 7 -111011001011 government-relations 7 -111011001011 sex-education 7 -111011001011 executive-compensation 7 -111011001011 preclinical 7 -111011001011 low-vision 7 -111011001011 overnight-delivery 7 -111011001011 crash-test 7 -111011001011 stop-smoking 7 -111011001011 AIDS-testing 7 -111011001011 toxicological 7 -111011001011 billy 7 -111011001011 cosmetology 7 -111011001011 estate-planning 7 -111011001011 stress-management 7 -111011001011 non-personnel 8 -111011001011 investment-related 8 -111011001011 health-benefit 8 -111011001011 post-operative 8 -111011001011 tax-saving 8 -111011001011 revenue-generating 8 -111011001011 discount-coupon 8 -111011001011 special-education 8 -111011001011 post-employment 8 -111011001011 low-interest-rate 8 -111011001011 medical-research 8 -111011001011 baggage-handling 8 -111011001011 funerary 8 -111011001011 auto-sales 8 -111011001011 land-idling 8 -111011001011 social-services 8 -111011001011 food-stamp 9 -111011001011 public-transit 9 -111011001011 childcare 9 -111011001011 drug-rehabilitation 9 -111011001011 emergency-response 9 -111011001011 chemical-dependency 9 -111011001011 frequent-flyer 9 -111011001011 sewer-construction 9 -111011001011 phase-three 9 -111011001011 kisha 9 -111011001011 adult-education 9 -111011001011 anatomical 9 -111011001011 emissions-control 9 -111011001011 elder-care 9 -111011001011 market-timing 10 -111011001011 fire-prevention 10 -111011001011 urban-development 10 -111011001011 postnatal 10 -111011001011 pre-natal 10 -111011001011 buyer-incentive 10 -111011001011 work-study 10 -111011001011 daycare 10 -111011001011 logistic 10 -111011001011 coated-paper 10 -111011001011 dependent-care 10 -111011001011 bereavement 10 -111011001011 back-pain 10 -111011001011 bond-rating 10 -111011001011 general-liability 10 -111011001011 highway-construction 11 -111011001011 recordkeeping 11 -111011001011 industrial-development 11 -111011001011 biotechnological 11 -111011001011 public-assistance 11 -111011001011 whole-life 11 -111011001011 foreign-language 11 -111011001011 drug-development 11 -111011001011 construction-management 11 -111011001011 garbage-disposal 11 -111011001011 blood-screening 11 -111011001011 space-science 11 -111011001011 archival 12 -111011001011 pilot-training 12 -111011001011 wind-shear 12 -111011001011 curricular 12 -111011001011 catastrophic-health 12 -111011001011 first-aid 12 -111011001011 audiotex 13 -111011001011 skilled-nursing 13 -111011001011 gymnastic 13 -111011001011 SBIR 13 -111011001011 student-aid 14 -111011001011 gynecological 14 -111011001011 anti-copying 14 -111011001011 in-home 14 -111011001011 loan-guarantee 14 -111011001011 home-office 15 -111011001011 epidemiological 15 -111011001011 booby 15 -111011001011 substance-abuse 16 -111011001011 job-placement 16 -111011001011 cash-value 17 -111011001011 medigap 17 -111011001011 legal-services 17 -111011001011 water-supply 17 -111011001011 psychoanalytic 17 -111011001011 computer-science 18 -111011001011 community-development 19 -111011001011 sales-incentive 19 -111011001011 rural-development 19 -111011001011 free-choice 19 -111011001011 geophysical 19 -111011001011 securities-related 19 -111011001011 drug-treatment 19 -111011001011 ambulatory 20 -111011001011 sonic 20 -111011001011 neonatal 21 -111011001011 waste-water 21 -111011001011 higher-education 22 -111011001011 community-service 22 -111011001011 universal-life 23 -111011001011 pressure-sensitive 23 -111011001011 scuba 23 -111011001011 people-meter 23 -111011001011 investment-oriented 23 -111011001011 analytic 23 -111011001011 post-retirement 24 -111011001011 space-station 24 -111011001011 oceanographic 24 -111011001011 planetary 24 -111011001011 spinal 25 -111011001011 farm-subsidy 26 -111011001011 acoustic 26 -111011001011 social-security 26 -111011001011 paternity 26 -111011001011 correctional 27 -111011001011 aquatic 28 -111011001011 job-search 28 -111011001011 rate-making 29 -111011001011 triple-mileage 29 -111011001011 social-service 29 -111011001011 employer-provided 30 -111011001011 travel-related 31 -111011001011 medical-care 33 -111011001011 community-based 33 -111011001011 gelatin 34 -111011001011 nonfiction 36 -111011001011 custodial 36 -111011001011 drug-abuse 37 -111011001011 inpatient 37 -111011001011 GSP 37 -111011001011 student-loan 38 -111011001011 air-traffic-control 38 -111011001011 bodily 38 -111011001011 instructional 39 -111011001011 safe-harbor 39 -111011001011 home-care 39 -111011001011 test-tube 41 -111011001011 empirical 41 -111011001011 audio-visual 42 -111011001011 long-term-care 45 -111011001011 mergers-and-acquisitions 45 -111011001011 family-planning 45 -111011001011 orthopedic 45 -111011001011 secretarial 46 -111011001011 social-welfare 47 -111011001011 no-fault 48 -111011001011 economic-development 48 -111011001011 nuclear-plant 48 -111011001011 veterinary 48 -111011001011 financial-aid 49 -111011001011 birth-control 49 -111011001011 catastrophic-illness 55 -111011001011 healthcare 59 -111011001011 sanitation 60 -111011001011 mass-transit 61 -111011001011 job-training 65 -111011001011 prenatal 76 -111011001011 machining 76 -111011001011 prescription-drug 77 -111011001011 dial-a-porn 78 -111011001011 actuarial 78 -111011001011 mental-health 80 -111011001011 polygraph 82 -111011001011 maternity 84 -111011001011 public-health 88 -111011001011 vocational 94 -111011001011 nutritional 98 -111011001011 molecular 102 -111011001011 miscellaneous 109 -111011001011 amusement 123 -111011001011 therapeutic 136 -111011001011 analytical 145 -111011001011 outpatient 154 -111011001011 health-insurance 155 -111011001011 nursing-home 161 -111011001011 dental 189 -111011001011 elementary 192 -111011001011 disability 215 -111011001011 frequent-flier 218 -111011001011 surgical 224 -111011001011 day-care 267 -111011001011 protective 331 -111011001011 athletic 337 -111011001011 diagnostic 340 -111011001011 child-care 399 -111011001011 statistical 463 -111011001011 aviation 645 -111011001011 clinical 716 -111011001011 academic 768 -111011001011 educational 808 -111011001011 scientific 1416 -111011001011 health-care 1464 -111011001011 health 6033 -111011001011 medical 4166 -11101100110 religious/political 1 -11101100110 non-Euclidean 1 -11101100110 work-family 1 -11101100110 medicine-containing 1 -11101100110 pre-automotive 1 -11101100110 race-reform 1 -11101100110 queen-sized 1 -11101100110 down-in-the-mud 1 -11101100110 pro-civil 1 -11101100110 21000.00 1 -11101100110 hour-to-hour 1 -11101100110 closing-costs 1 -11101100110 banquette 1 -11101100110 live-for-today 1 -11101100110 pro-feminist 1 -11101100110 nuclear-free-world 1 -11101100110 pro-strike 1 -11101100110 animist 1 -11101100110 almost-successful 1 -11101100110 carved-wood 1 -11101100110 chicory-flavored 1 -11101100110 premeeting 1 -11101100110 body-construction 1 -11101100110 command-economy 1 -11101100110 boyar 1 -11101100110 Italian-Yiddish 1 -11101100110 harbor-dredging 1 -11101100110 inkind 1 -11101100110 all-arms 1 -11101100110 manufacturing-plant 1 -11101100110 feminized 1 -11101100110 off-the-field 1 -11101100110 radar-station 1 -11101100110 map-reading 1 -11101100110 show-of-strength 1 -11101100110 chip-production 1 -11101100110 technical/political/media 1 -11101100110 fuzzy-data 1 -11101100110 rocket-vehicle 1 -11101100110 dressup 1 -11101100110 office-management 1 -11101100110 waste-infested 1 -11101100110 animistic 1 -11101100110 Burnett-Vickers 1 -11101100110 countrystyle 1 -11101100110 weapons-exports 1 -11101100110 star-like 1 -11101100110 customer-gouging 1 -11101100110 haute-bimbo 1 -11101100110 publicity-raising 1 -11101100110 agent-related 1 -11101100110 tuxed 1 -11101100110 MX-missile 1 -11101100110 behaviorial 1 -11101100110 core-business 1 -11101100110 kamikaze-style 1 -11101100110 mind-game 1 -11101100110 bacchanalian 1 -11101100110 hydrological 1 -11101100110 after-glowing 1 -11101100110 supply/service 1 -11101100110 night-pay 1 -11101100110 acdemic 1 -11101100110 Cui 1 -11101100110 pre 1 -11101100110 separtion-of-powers 1 -11101100110 epicurean 1 -11101100110 early-campaign 1 -11101100110 long-deserved 1 -11101100110 limb-threatening 1 -11101100110 corporate-levity 1 -11101100110 re-sifting 1 -11101100110 anti-surrogacy 1 -11101100110 pressed-down 1 -11101100110 monument-eroding 1 -11101100110 white-on-white 1 -11101100110 non-exempt 1 -11101100110 camera-friendly 1 -11101100110 capital-recovery 1 -11101100110 antiU.S. 1 -11101100110 honey-colored 1 -11101100110 post-octogenarian 1 -11101100110 homographic 1 -11101100110 scholastics 1 -11101100110 British-governed 1 -11101100110 Cuban/Haitian 1 -11101100110 flulike 1 -11101100110 wrong-side-of-the-tracks 1 -11101100110 signal-emitting 1 -11101100110 mutton-chop 1 -11101100110 handcraft 1 -11101100110 Nobel-prize 1 -11101100110 post-work 1 -11101100110 not-terribly-convincing 1 -11101100110 wind-mussed 1 -11101100110 bioenvironmental 1 -11101100110 32-pound 1 -11101100110 violet-velvet 1 -11101100110 liquorous 1 -11101100110 pedestrian-oriented 1 -11101100110 plant-crossing 1 -11101100110 coat-hanging 1 -11101100110 zinging 1 -11101100110 powder-and-brush 1 -11101100110 moseying 1 -11101100110 job-program 1 -11101100110 scriptural 1 -11101100110 one-man-army 1 -11101100110 oft-voiced 1 -11101100110 enrapturing 1 -11101100110 government-protected 1 -11101100110 central-utility 1 -11101100110 boxing-hype 1 -11101100110 British-patrolled 1 -11101100110 international-bullion 1 -11101100110 interatomic 1 -11101100110 duck-liver 1 -11101100110 SDI-system 1 -11101100110 oasislike 1 -11101100110 mass-layoff 1 -11101100110 sometimes-blatant 1 -11101100110 hand-syringe 1 -11101100110 employee-employer 1 -11101100110 anti-rejection 1 -11101100110 electroweak 1 -11101100110 quark 1 -11101100110 lane-changing 1 -11101100110 political-ideological 1 -11101100110 45-inch 1 -11101100110 combat-flier 1 -11101100110 pure-meat 1 -11101100110 security-clearance 1 -11101100110 quasi-baroque 1 -11101100110 Loden 1 -11101100110 retro-date 1 -11101100110 more-willing 1 -11101100110 give-em-hell 1 -11101100110 55-year 1 -11101100110 liver-damage 1 -11101100110 publicpolicy 1 -11101100110 Hamletlike 1 -11101100110 rocket-system 1 -11101100110 pan-Turkic 1 -11101100110 political/economic 1 -11101100110 city-related 1 -11101100110 dog-earred 1 -11101100110 74-year 1 -11101100110 chemical-by-chemical 1 -11101100110 pseudoeconomic 1 -11101100110 inter-hour 1 -11101100110 white-figured 1 -11101100110 he's-guilty-until-proved-innocent 1 -11101100110 work-time 1 -11101100110 gas-mask 1 -11101100110 nonjailable 1 -11101100110 Nutrasome 1 -11101100110 half-conscious 1 -11101100110 peek-aboo 1 -11101100110 bus-truck 1 -11101100110 customer-relation 1 -11101100110 typological 1 -11101100110 market-damping 1 -11101100110 doom-filled 1 -11101100110 rhapsodical 1 -11101100110 crime-drama 1 -11101100110 Dentyne 1 -11101100110 telecaster 1 -11101100110 slice-of-America 1 -11101100110 hard-edge 1 -11101100110 electrowinning 1 -11101100110 unglittering 1 -11101100110 Laverne/Shirley 1 -11101100110 fished-out 1 -11101100110 Catholic-Protestant 1 -11101100110 plutonium-handling 1 -11101100110 disease-resistance 1 -11101100110 revenue-law 1 -11101100110 congressional-media 1 -11101100110 slouchy 1 -11101100110 broadcast-and-cable 1 -11101100110 bargaining-table 1 -11101100110 class-oriented 1 -11101100110 five-story-high 1 -11101100110 toweling 1 -11101100110 thigh-length 1 -11101100110 Democratic-style 1 -11101100110 seven-country 1 -11101100110 cough-and-cold 1 -11101100110 university-entrance 1 -11101100110 fatigue-related 1 -11101100110 benefit-to-risk 1 -11101100110 yellowwood 1 -11101100110 batting-helmet-throw 1 -11101100110 hoed 1 -11101100110 whitened 1 -11101100110 ever-more-ingenious 1 -11101100110 digital-recording 1 -11101100110 anti-Moscow 2 -11101100110 quotidian 2 -11101100110 Hindu-Moslem 2 -11101100110 nice-guy 2 -11101100110 unacademic 2 -11101100110 inquisitorial 2 -11101100110 uranium-contract 2 -11101100110 1,000-word 2 -11101100110 intra-agency 2 -11101100110 Verdian 2 -11101100110 quasi-legal 2 -11101100110 Spenglerian 2 -11101100110 foreign-study 2 -11101100110 burn-like 2 -11101100110 guerrilla-like 2 -11101100110 beach-front 2 -11101100110 57-year 2 -11101100110 neo-populist 2 -11101100110 contrapuntal 2 -11101100110 fizzy 2 -11101100110 ill-health 2 -11101100110 locational 2 -11101100110 sociocultural 2 -11101100110 fresh-water 2 -11101100110 regulatory-approval 2 -11101100110 slangy 2 -11101100110 pressure-group 2 -11101100110 inside-Washington 2 -11101100110 property-rights 2 -11101100110 warmongering 2 -11101100110 self-limited 2 -11101100110 base-line 2 -11101100110 food-scare 2 -11101100110 free-radical 2 -11101100110 Fifth-Amendment 2 -11101100110 spy-novel 2 -11101100110 re-regulatory 2 -11101100110 often-brutal 2 -11101100110 true-Texas 2 -11101100110 tough-cop 2 -11101100110 center-city 2 -11101100110 roguish 2 -11101100110 nuclear-forces 2 -11101100110 pro-trade 2 -11101100110 pro-European 2 -11101100110 twin-deficits 2 -11101100110 risk-aversive 2 -11101100110 how-to-channel 2 -11101100110 paper-towel 2 -11101100110 personal-destruction 2 -11101100110 odd-couple 2 -11101100110 heart-pounding 2 -11101100110 ever-shifting 2 -11101100110 anti-colonial 2 -11101100110 post-sales 2 -11101100110 arteriosclerotic 2 -11101100110 writerly 2 -11101100110 country-risk 2 -11101100110 Kennedyesque 2 -11101100110 ulcerative 2 -11101100110 side-to-side 2 -11101100110 public-diplomacy 2 -11101100110 north-country 2 -11101100110 Gorbachev-era 2 -11101100110 closed-camp 2 -11101100110 six-pointed 2 -11101100110 meterological 2 -11101100110 Maoist-style 2 -11101100110 forest-fire 2 -11101100110 slate-blue 2 -11101100110 multicompany 2 -11101100110 drug-consuming 2 -11101100110 dairy-goat 2 -11101100110 floating-dollar 2 -11101100110 health-risk 2 -11101100110 less-than-overwhelming 2 -11101100110 post-campaign 2 -11101100110 anti-Afghan 2 -11101100110 option-writing 2 -11101100110 Parkinson's-like 2 -11101100110 wasp 2 -11101100110 circadian 2 -11101100110 immodest 2 -11101100110 Reagan-like 2 -11101100110 job-induced 2 -11101100110 womanly 2 -11101100110 eugenic 2 -11101100110 four-ounce 2 -11101100110 we-they 2 -11101100110 parabolic 2 -11101100110 Goliathan 2 -11101100110 pantheistic 2 -11101100110 once-strong 2 -11101100110 patient-centered 2 -11101100110 ozone-layer 2 -11101100110 industrial-pollution 2 -11101100110 stem-winding 2 -11101100110 origami 2 -11101100110 fashion-industry 2 -11101100110 patient-rights 2 -11101100110 down-the-middle 2 -11101100110 coachly 2 -11101100110 etymological 2 -11101100110 emerging-growth-stock 2 -11101100110 petty-cash 2 -11101100110 anti-employee 2 -11101100110 Swabian 2 -11101100110 anti-vivisection 2 -11101100110 sanguinary 2 -11101100110 non-racial 2 -11101100110 work-and-family 2 -11101100110 cold-war 2 -11101100110 language-arts 2 -11101100110 scat-singing 2 -11101100110 time-limited 2 -11101100110 interregional 2 -11101100110 sightless 2 -11101100110 worker-management 2 -11101100110 shaggy-dog 2 -11101100110 corporate-raider 2 -11101100110 pro-America 2 -11101100110 well-displayed 2 -11101100110 decisional 2 -11101100110 multisport 2 -11101100110 money-growth 2 -11101100110 credit-damaging 3 -11101100110 beady 3 -11101100110 disease-fighting 3 -11101100110 anti-Thatcher 3 -11101100110 pyschological 3 -11101100110 family-farm 3 -11101100110 treatment-related 3 -11101100110 small-is-beautiful 3 -11101100110 legal-size 3 -11101100110 anti-Turkish 3 -11101100110 porcine 3 -11101100110 fratricidal 3 -11101100110 civil-libertarian 3 -11101100110 gluey 3 -11101100110 subregional 3 -11101100110 kung-fu 3 -11101100110 price-chart 3 -11101100110 more-cautious 3 -11101100110 much-different 3 -11101100110 wise-guy 3 -11101100110 muddle-headed 3 -11101100110 patrimonial 3 -11101100110 nuclear-testing 3 -11101100110 health-threatening 3 -11101100110 second-to-die 3 -11101100110 canopied 3 -11101100110 often-conflicting 3 -11101100110 CFTR 3 -11101100110 telephone-industry 3 -11101100110 target-zone 3 -11101100110 exploitive 3 -11101100110 pietistic 3 -11101100110 anal 3 -11101100110 semiotic 3 -11101100110 socio-political 3 -11101100110 affectless 3 -11101100110 oil-stock 3 -11101100110 tolling 3 -11101100110 time-zone 3 -11101100110 leavening 3 -11101100110 resource-allocation 3 -11101100110 global-debt 3 -11101100110 bumper-sticker 3 -11101100110 quality-of-life 3 -11101100110 big-power 3 -11101100110 Franco-U.S. 3 -11101100110 elasticized 3 -11101100110 pouty 3 -11101100110 sports-law 3 -11101100110 lower-key 3 -11101100110 tire-industry 3 -11101100110 art-nouveau 3 -11101100110 conjugal 3 -11101100110 guaranteed-acceptance 3 -11101100110 exchange-control 3 -11101100110 Spielbergian 3 -11101100110 psychosomatic 3 -11101100110 he-man 3 -11101100110 inter-Arab 3 -11101100110 anti-plastic 3 -11101100110 buddy-buddy 3 -11101100110 electoral-vote 3 -11101100110 straw-man 3 -11101100110 great-power 3 -11101100110 film-industry 3 -11101100110 Churchillian 3 -11101100110 gee-whiz 3 -11101100110 monthslong 3 -11101100110 limpid 3 -11101100110 intra-party 3 -11101100110 buy-side 3 -11101100110 accommodationist 3 -11101100110 labor-shortage 3 -11101100110 waspish 3 -11101100110 loan-portfolio 3 -11101100110 single-firm 3 -11101100110 public-speaking 3 -11101100110 avantgarde 3 -11101100110 public-image 3 -11101100110 corporate-culture 3 -11101100110 birth-defect 4 -11101100110 drug-addiction 4 -11101100110 more-serious 4 -11101100110 market-like 4 -11101100110 libel-law 4 -11101100110 pro-development 4 -11101100110 permanent-residence 4 -11101100110 mother-daughter 4 -11101100110 statute-of-limitations 4 -11101100110 crinkly 4 -11101100110 periodontal 4 -11101100110 martial-arts 4 -11101100110 Alsatian 4 -11101100110 trade-gap 4 -11101100110 social-science 4 -11101100110 retinal 4 -11101100110 immigration-rights 4 -11101100110 anti-Dukakis 4 -11101100110 high-decibel 4 -11101100110 garage-sale 4 -11101100110 computer-market 4 -11101100110 pre-fight 4 -11101100110 hot-dip 4 -11101100110 comic-strip 4 -11101100110 chamber-music 4 -11101100110 co-dependent 4 -11101100110 post-surgical 4 -11101100110 income-distribution 4 -11101100110 playing-field 4 -11101100110 growth-related 4 -11101100110 loan-quality 4 -11101100110 state-law 4 -11101100110 neo-conservative 4 -11101100110 microbiological 4 -11101100110 permafrost 4 -11101100110 libidinous 4 -11101100110 chemical-waste 4 -11101100110 neo-Marxist 4 -11101100110 discourteous 4 -11101100110 arms-treaty 4 -11101100110 free-agency 4 -11101100110 wave-making 4 -11101100110 exempt-entity 4 -11101100110 politicial 4 -11101100110 cacophonous 4 -11101100110 secret-society 4 -11101100110 property-owning 4 -11101100110 foreignpolicy 4 -11101100110 horned 4 -11101100110 militarist 4 -11101100110 subtropical 4 -11101100110 no-nukes 4 -11101100110 fustian 4 -11101100110 anti-management 4 -11101100110 state-sanctioned 4 -11101100110 microtonal 4 -11101100110 family-related 4 -11101100110 bluesy 4 -11101100110 foreign-ownership 4 -11101100110 hotel-like 4 -11101100110 unsworn 4 -11101100110 creole 4 -11101100110 fix-it 4 -11101100110 MX-related 4 -11101100110 Emancipation 4 -11101100110 fascistic 4 -11101100110 split-second 4 -11101100110 remastering 4 -11101100110 political-party 4 -11101100110 share-voting 4 -11101100110 1,000-year 4 -11101100110 atom-smasher 5 -11101100110 showbiz 5 -11101100110 art-historical 5 -11101100110 private-property 5 -11101100110 price-reform 5 -11101100110 lapidary 5 -11101100110 dinner-table 5 -11101100110 family-travel 5 -11101100110 multistep 5 -11101100110 law-and-economics 5 -11101100110 seasonal-adjustment 5 -11101100110 whimpering 5 -11101100110 metal-fatigue 5 -11101100110 bluish 5 -11101100110 pro-Palestinian 5 -11101100110 larcenous 5 -11101100110 semiconscious 5 -11101100110 calving 5 -11101100110 state-imposed 5 -11101100110 non-academic 5 -11101100110 civilizing 5 -11101100110 Malthusian 5 -11101100110 high-flown 5 -11101100110 off-beat 5 -11101100110 equal-information 5 -11101100110 authorial 5 -11101100110 classified-ad 5 -11101100110 constructivist 5 -11101100110 social-justice 5 -11101100110 post-traumatic-stress 5 -11101100110 legal-studies 5 -11101100110 fluidized 5 -11101100110 pain-and-suffering 5 -11101100110 cell-killing 5 -11101100110 Yanqui 5 -11101100110 anti-Yankee 5 -11101100110 vaporous 5 -11101100110 carotid 5 -11101100110 result-oriented 6 -11101100110 fulsome 6 -11101100110 McCarthyite 6 -11101100110 40-degree 6 -11101100110 high-sounding 6 -11101100110 nihilistic 6 -11101100110 hemorrhoid 6 -11101100110 family-centered 6 -11101100110 grammatical 6 -11101100110 undesired 6 -11101100110 iatrogenic 6 -11101100110 intercollegiate 6 -11101100110 free-press 6 -11101100110 pro-Arab 6 -11101100110 weak-dollar 6 -11101100110 millennial 6 -11101100110 boot-camp 6 -11101100110 anti-slavery 6 -11101100110 aboriginal 6 -11101100110 Soviet-sponsored 6 -11101100110 gothic 6 -11101100110 curative 6 -11101100110 life-or-death 6 -11101100110 senior-management 6 -11101100110 black-white 6 -11101100110 argyle 6 -11101100110 dynastic 6 -11101100110 concentric 6 -11101100110 egg-shaped 6 -11101100110 sunlit 6 -11101100110 more-liberal 6 -11101100110 foxhole 6 -11101100110 social-policy 6 -11101100110 site-specific 6 -11101100110 trade-zone 6 -11101100110 legal-ethics 6 -11101100110 smaller-scale 6 -11101100110 nuclear-freeze 6 -11101100110 flamenco 6 -11101100110 big-picture 6 -11101100110 constitutional-law 6 -11101100110 theocratic 6 -11101100110 depressive 6 -11101100110 cartel-like 6 -11101100110 flight-crew 6 -11101100110 fecal 6 -11101100110 old-world 6 -11101100110 drug-induced 6 -11101100110 cross-rate 7 -11101100110 product-by-product 7 -11101100110 venomous 7 -11101100110 class-warfare 7 -11101100110 projective 7 -11101100110 flight-test 7 -11101100110 rheumatic 7 -11101100110 wiccan 7 -11101100110 scholastic 7 -11101100110 tough-guy 7 -11101100110 shelf-life 7 -11101100110 crowd-pleasing 7 -11101100110 auto-immune 7 -11101100110 harmonic 7 -11101100110 banana-republic 7 -11101100110 pop-culture 7 -11101100110 post-colonial 7 -11101100110 ulterior 7 -11101100110 black-on-black 7 -11101100110 on-and-off 7 -11101100110 anti-merger 7 -11101100110 investment-banker 8 -11101100110 dollars-and-cents 8 -11101100110 locker-room 8 -11101100110 pre-opening 8 -11101100110 methodological 8 -11101100110 counter-revolutionary 8 -11101100110 government-sanctioned 8 -11101100110 anti-social 8 -11101100110 price-level 8 -11101100110 well-crafted 8 -11101100110 before-and-after 8 -11101100110 farm-policy 8 -11101100110 prefab 8 -11101100110 new-fangled 8 -11101100110 national-defense 8 -11101100110 nuclear-winter 8 -11101100110 neoconservative 8 -11101100110 fast-breaking 8 -11101100110 redistributive 8 -11101100110 strep 8 -11101100110 cross-cultural 9 -11101100110 bottom-up 9 -11101100110 go-it-alone 9 -11101100110 police-state 9 -11101100110 left-right 9 -11101100110 olfactory 9 -11101100110 anti-labor 9 -11101100110 horse-race 9 -11101100110 penile 9 -11101100110 balance-of-power 9 -11101100110 revolving-door 9 -11101100110 histrionic 9 -11101100110 brain-drain 9 -11101100110 social-democratic 10 -11101100110 incomparable 10 -11101100110 shifty 10 -11101100110 air-fare 10 -11101100110 opening-night 10 -11101100110 novelistic 10 -11101100110 tax-avoidance 10 -11101100110 scorched-earth 10 -11101100110 infrastructural 10 -11101100110 gravitational 10 -11101100110 sensory 10 -11101100110 rococo 10 -11101100110 lawyerly 10 -11101100110 business-climate 10 -11101100110 puerile 10 -11101100110 cost-based 10 -11101100110 bushy 10 -11101100110 lunch-time 10 -11101100110 contorted 10 -11101100110 sinus 10 -11101100110 minute-by-minute 10 -11101100110 flu-like 10 -11101100110 aural 10 -11101100110 race-based 10 -11101100110 anti-military 10 -11101100110 sartorial 11 -11101100110 pugnacious 11 -11101100110 antisocial 11 -11101100110 health-policy 11 -11101100110 philosophic 11 -11101100110 show-biz 11 -11101100110 long-suppressed 11 -11101100110 diabolical 11 -11101100110 drug-dealing 11 -11101100110 shop-floor 11 -11101100110 tonal 11 -11101100110 single-issue 11 -11101100110 product-line 11 -11101100110 unswerving 11 -11101100110 normative 11 -11101100110 financial-industry 11 -11101100110 intramural 11 -11101100110 directorial 11 -11101100110 interest-group 11 -11101100110 circulatory 12 -11101100110 equine 12 -11101100110 transcendent 12 -11101100110 national-interest 12 -11101100110 internecine 12 -11101100110 seat-of-the-pants 12 -11101100110 opening-day 12 -11101100110 celestial 12 -11101100110 microeconomic 12 -11101100110 geologic 12 -11101100110 hegemonic 12 -11101100110 Shakespearean 12 -11101100110 barbed-wire 12 -11101100110 fatherly 12 -11101100110 choreographic 12 -11101100110 doctor-patient 12 -11101100110 left-liberal 13 -11101100110 programmatic 13 -11101100110 compositional 13 -11101100110 skeletal 13 -11101100110 rags-to-riches 13 -11101100110 oratorical 13 -11101100110 post-Vietnam 13 -11101100110 unenumerated 13 -11101100110 get-rich-quick 13 -11101100110 attitudinal 13 -11101100110 trend-following 13 -11101100110 symphonic 13 -11101100110 anthropological 14 -11101100110 sculptural 14 -11101100110 textual 14 -11101100110 inbred 14 -11101100110 sci-fi 14 -11101100110 Luddite 14 -11101100110 Freudian 14 -11101100110 go-slow 14 -11101100110 brotherly 14 -11101100110 kamikaze 14 -11101100110 cut-throat 14 -11101100110 sloping 14 -11101100110 ergonomic 14 -11101100110 painterly 14 -11101100110 nuts-and-bolts 14 -11101100110 price-performance 14 -11101100110 derisive 15 -11101100110 Namibian 15 -11101100110 thoughtless 15 -11101100110 sanctimonious 15 -11101100110 neutralist 15 -11101100110 demand-side 15 -11101100110 proletarian 15 -11101100110 original-intent 15 -11101100110 anti-Israeli 15 -11101100110 pithy 15 -11101100110 intraparty 15 -11101100110 kindred 15 -11101100110 tax-act 15 -11101100110 socialistic 16 -11101100110 backroom 16 -11101100110 child-welfare 16 -11101100110 astrological 16 -11101100110 arctic 16 -11101100110 anti-Noriega 16 -11101100110 non-smoking 16 -11101100110 tax-policy 16 -11101100110 sectarian 17 -11101100110 labor-union 17 -11101100110 Darwinian 17 -11101100110 Judeo-Christian 17 -11101100110 triangular 17 -11101100110 headline-grabbing 17 -11101100110 cognitive 17 -11101100110 crisis-management 18 -11101100110 pungent 18 -11101100110 termite 18 -11101100110 hormonal 18 -11101100110 grassroots 18 -11101100110 bear-market 18 -11101100110 no-tax 18 -11101100110 immunological 18 -11101100110 two-party 18 -11101100110 re-education 18 -11101100110 vascular 18 -11101100110 welfare-state 18 -11101100110 nefarious 19 -11101100110 disinflationary 19 -11101100110 nocturnal 19 -11101100110 futures-market 19 -11101100110 digestive 19 -11101100110 on-air 19 -11101100110 unremitting 19 -11101100110 high-priority 19 -11101100110 anti-U.S. 19 -11101100110 choral 19 -11101100110 chemical-warfare 19 -11101100110 vaginal 19 -11101100110 fraternal 20 -11101100110 Confucian 20 -11101100110 inflation-fighting 20 -11101100110 drug-industry 20 -11101100110 profit-margin 20 -11101100110 diversionary 20 -11101100110 duplicative 21 -11101100110 mercantilist 21 -11101100110 monastic 21 -11101100110 pro-family 21 -11101100110 demagogic 21 -11101100110 collectivist 21 -11101100110 no-growth 21 -11101100110 kiss-and-tell 21 -11101100110 earthly 22 -11101100110 intestinal 22 -11101100110 no-layoff 22 -11101100110 back-room 22 -11101100110 expense-account 22 -11101100110 tree-lined 22 -11101100110 imperialist 23 -11101100110 living-room 23 -11101100110 market-based 23 -11101100110 interpersonal 23 -11101100110 right-to-life 23 -11101100110 anti-aging 23 -11101100110 biochemical 23 -11101100110 contingency-fee 23 -11101100110 capitalistic 24 -11101100110 physiological 24 -11101100110 explanatory 24 -11101100110 non-economic 24 -11101100110 hit-and-run 24 -11101100110 efficient-market 24 -11101100110 interlocking 24 -11101100110 motivational 24 -11101100110 plaid 25 -11101100110 interpretive 25 -11101100110 supernatural 25 -11101100110 cinematic 26 -11101100110 free-speech 26 -11101100110 subterranean 26 -11101100110 sudden-acceleration 26 -11101100110 noneconomic 27 -11101100110 maternal 27 -11101100110 separation-of-powers 27 -11101100110 thematic 27 -11101100110 fait 27 -11101100110 brokerage-house 28 -11101100110 gastrointestinal 28 -11101100110 pulmonary 28 -11101100110 country-club 28 -11101100110 fairy-tale 29 -11101100110 geriatric 29 -11101100110 theological 29 -11101100110 socioeconomic 30 -11101100110 metaphysical 30 -11101100110 get-tough 30 -11101100110 haute 30 -11101100110 typographical 30 -11101100110 pre-existing 31 -11101100110 cosmic 31 -11101100110 Zionist 31 -11101100110 monopolistic 31 -11101100110 archaeological 31 -11101100110 forensic 32 -11101100110 strong-arm 32 -11101100110 business-cycle 32 -11101100110 culinary 33 -11101100110 behavioral 33 -11101100110 linguistic 33 -11101100110 factional 34 -11101100110 life-style 34 -11101100110 balance-sheet 34 -11101100110 financial-market 34 -11101100110 customer-service 34 -11101100110 pictorial 34 -11101100110 vigilante 35 -11101100110 stylistic 36 -11101100110 common-law 36 -11101100110 sociological 36 -11101100110 philanthropic 36 -11101100110 revisionist 37 -11101100110 volcanic 38 -11101100110 geometric 38 -11101100110 egalitarian 38 -11101100110 biographical 39 -11101100110 gamma 39 -11101100110 monetarist 40 -11101100110 securities-industry 40 -11101100110 geological 40 -11101100110 anti-war 40 -11101100110 law-school 40 -11101100110 computer-industry 40 -11101100110 Gothic 41 -11101100110 law-and-order 41 -11101100110 rhythmic 41 -11101100110 neurological 41 -11101100110 free-enterprise 43 -11101100110 stock-picking 43 -11101100110 real-world 44 -11101100110 anti-tax 45 -11101100110 bond-market 46 -11101100110 migraine 46 -11101100110 herbal 46 -11101100110 pro-life 47 -11101100110 jurisdictional 48 -11101100110 nonviolent 48 -11101100110 trade-union 48 -11101100110 developmental 49 -11101100110 biblical 49 -11101100110 generational 53 -11101100110 statist 53 -11101100110 conceptual 56 -11101100110 anti-Soviet 58 -11101100110 fetal 58 -11101100110 facial 59 -11101100110 societal 59 -11101100110 safety-related 60 -11101100110 pork-barrel 60 -11101100110 reproductive 63 -11101100110 rhetorical 63 -11101100110 cardiac 66 -11101100110 communal 67 -11101100110 dietary 67 -11101100110 public-policy 68 -11101100110 reformist 69 -11101100110 Western-style 71 -11101100110 geopolitical 73 -11101100110 inflammatory 73 -11101100110 hands-off 76 -11101100110 nationalistic 78 -11101100110 work-rule 78 -11101100110 numerical 79 -11101100110 Keynesian 79 -11101100110 ecological 82 -11101100110 logistical 82 -11101100110 functional 83 -11101100110 vertical 86 -11101100110 quantitative 86 -11101100110 viral 87 -11101100110 bilingual 88 -11101100110 repressive 88 -11101100110 petty 91 -11101100110 factual 98 -11101100110 marital 99 -11101100110 aesthetic 101 -11101100110 behind-the-scenes 107 -11101100110 prosecutorial 109 -11101100110 drug-related 109 -11101100110 preventive 109 -11101100110 geographical 110 -11101100110 occupational 115 -11101100110 territorial 116 -11101100110 authoritarian 117 -11101100110 mathematical 118 -11101100110 journalistic 118 -11101100110 bourgeois 118 -11101100110 patriotic 119 -11101100110 respiratory 125 -11101100110 coronary 131 -11101100110 market-oriented 138 -11101100110 secular 138 -11101100110 grass-roots 141 -11101100110 tribal 143 -11101100110 scholarly 144 -11101100110 contractual 148 -11101100110 national-security 154 -11101100110 labor-management 154 -11101100110 nationalist 154 -11101100110 cash-flow 163 -11101100110 box-office 164 -11101100110 anti-competitive 164 -11101100110 comparative 179 -11101100110 verbal 184 -11101100110 everyday 190 -11101100110 geographic 195 -11101100110 theatrical 197 -11101100110 budgetary 211 -11101100110 supply-side 214 -11101100110 organizational 223 -11101100110 procedural 230 -11101100110 civic 230 -11101100110 spiritual 231 -11101100110 demographic 234 -11101100110 philosophical 244 -11101100110 visual 252 -11101100110 managerial 274 -11101100110 artistic 280 -11101100110 comic 295 -11101100110 partisan 298 -11101100110 mechanical 327 -11101100110 catastrophic 349 -11101100110 charitable 362 -11101100110 mental 401 -11101100110 bureaucratic 403 -11101100110 operational 405 -11101100110 literary 425 -11101100110 structural 426 -11101100110 foreign-policy 440 -11101100110 ethical 461 -11101100110 free-market 470 -11101100110 ideological 503 -11101100110 psychological 506 -11101100110 terrorist 543 -11101100110 racial 594 -11101100110 ethnic 610 -11101100110 sexual 614 -11101100110 intellectual 665 -11101100110 technological 708 -11101100110 historical 758 -11101100110 creative 795 -11101100110 physical 798 -11101100110 cultural 850 -11101100110 democratic 887 -11101100110 diplomatic 927 -11101100110 moral 976 -11101100110 religious 1202 -11101100110 constitutional 1422 -11101100110 human 2807 -11101100110 social 2972 -11101100110 technical 3262 -11101100110 political 13276 -11101100110 legal 6830 -111011001110 labor-generated 1 -111011001110 base-support 1 -111011001110 rural-traveling 1 -111011001110 anti-Congress 1 -111011001110 drug-preparation 1 -111011001110 once-stellar 1 -111011001110 aircraft-support 1 -111011001110 order-transmittal 1 -111011001110 fleet-planning 1 -111011001110 Corp.in 1 -111011001110 pension-management 1 -111011001110 counter-inflationary 1 -111011001110 one-at-a-time 1 -111011001110 balanced-investment 1 -111011001110 specialty-care 1 -111011001110 one-decision 1 -111011001110 switchings 1 -111011001110 go-stop-go 1 -111011001110 interindustry 1 -111011001110 peseta-bashing 1 -111011001110 bronze-decked 1 -111011001110 punk-pop 1 -111011001110 travel-assistance 1 -111011001110 5,759 1 -111011001110 already-precarious 1 -111011001110 capital-forming 1 -111011001110 facilities-design 1 -111011001110 discount-trading 1 -111011001110 metals-dealing 1 -111011001110 stock-chart 1 -111011001110 board-recruitment 1 -111011001110 non-permitted 1 -111011001110 trade-execution 1 -111011001110 family-stabilization 1 -111011001110 bolt-substitution 1 -111011001110 Fiesp 1 -111011001110 bond-law 1 -111011001110 teleprocessing 1 -111011001110 snow-trampling 1 -111011001110 go-for-broke 1 -111011001110 technical-product 1 -111011001110 pesticide-research 1 -111011001110 well-constructed 1 -111011001110 foreign-policy-setting 1 -111011001110 space-transportation-user 1 -111011001110 foreign-wig 1 -111011001110 less-than-wholesome 1 -111011001110 unresonant 1 -111011001110 475-year-old 1 -111011001110 consumer-financial 1 -111011001110 semi-comatose 1 -111011001110 trade-negotiation 1 -111011001110 spread-thin 1 -111011001110 global-growth 1 -111011001110 Country-direct 1 -111011001110 anti-court 1 -111011001110 customs-brokerages 1 -111011001110 tough-to-reach 1 -111011001110 covert-weapons 1 -111011001110 then-unfashionable 1 -111011001110 Asakusa 1 -111011001110 site-development 1 -111011001110 condemnatory 1 -111011001110 chemical-supply 1 -111011001110 tougher-on-defense 1 -111011001110 weapon-development 1 -111011001110 average-store 1 -111011001110 expansion-through-acquisition 1 -111011001110 125-year 1 -111011001110 computer-purchasing 1 -111011001110 subscriber-supported 1 -111011001110 hamhanded 1 -111011001110 smaller-pie 1 -111011001110 bunt-and-steal 1 -111011001110 pressure-pumping 1 -111011001110 niftiest 1 -111011001110 hardware-maintenance 1 -111011001110 workstation-management 1 -111011001110 nuclear-ship 1 -111011001110 fax-related 1 -111011001110 insider-dealing 1 -111011001110 day-health 1 -111011001110 quasi-banking 1 -111011001110 Goldengate 1 -111011001110 radioactive-waste 1 -111011001110 Del.-financial 1 -111011001110 financial-record 1 -111011001110 aviation-support 1 -111011001110 rope-walking 1 -111011001110 entertainment/communications/financial 1 -111011001110 teaching/research 1 -111011001110 graphic-reproduction 1 -111011001110 fresh-food 1 -111011001110 much-cited 1 -111011001110 eye-grabbing 1 -111011001110 industrial-dismantling 1 -111011001110 long-announced 1 -111011001110 never-spun 1 -111011001110 van-pool 1 -111011001110 expressionist-type 1 -111011001110 dark-alley 1 -111011001110 capital-driven 1 -111011001110 management-worker 1 -111011001110 passanger 1 -111011001110 volunteer-assisted 1 -111011001110 bottom-to-top 1 -111011001110 limit-skirting 1 -111011001110 bank-at-home 1 -111011001110 welfare-hotel 1 -111011001110 iron-pipe 1 -111011001110 post-Yalta 1 -111011001110 pay-perview 1 -111011001110 wealth-destroying 1 -111011001110 lithographing 1 -111011001110 arms-cutting 1 -111011001110 central-nervous-system 1 -111011001110 equipment-procurement 1 -111011001110 once-legendary 1 -111011001110 already-difficult 1 -111011001110 unhesitating 1 -111011001110 individual-account 1 -111011001110 staff-pay 1 -111011001110 question-answering 1 -111011001110 open-handed 1 -111011001110 base-operation 1 -111011001110 cost-controlled 1 -111011001110 batonless 1 -111011001110 tourist-related 1 -111011001110 testable 1 -111011001110 rubberchicken 1 -111011001110 logistics-planning 1 -111011001110 work-over 1 -111011001110 license-application-preparation 1 -111011001110 educative 1 -111011001110 rate-filing 1 -111011001110 pro-Shoreham 1 -111011001110 seismic-data 1 -111011001110 conslidated 1 -111011001110 hotel-reservation 1 -111011001110 then-unswerving 1 -111011001110 farm-crisis 1 -111011001110 electronic-research 1 -111011001110 dial-a-something 1 -111011001110 carrier-and-information 1 -111011001110 graphic-data 1 -111011001110 civic-lunch 1 -111011001110 producer-related 1 -111011001110 sick-care 1 -111011001110 brand-image 1 -111011001110 cloth-diaper 1 -111011001110 investment-law 1 -111011001110 big-rig 1 -111011001110 building-systems 1 -111011001110 drop-kicking 1 -111011001110 Sharpshooter 1 -111011001110 market-return 1 -111011001110 business-support 1 -111011001110 payroll-accounting 1 -111011001110 lewd-message 1 -111011001110 irradiation-sterilization 1 -111011001110 macho-attack 1 -111011001110 drug-monitoring 1 -111011001110 near-irrelevant 1 -111011001110 safety-regulation 1 -111011001110 share-dealing 1 -111011001110 pre-moratorium 1 -111011001110 Chinese-red 1 -111011001110 farm-politics 1 -111011001110 voice-and-data 1 -111011001110 nail-growing 1 -111011001110 oil-slick 1 -111011001110 retail-fixtures 1 -111011001110 swift-moving 1 -111011001110 Tianhe 1 -111011001110 no-frills-apparel 1 -111011001110 vagueness-as-virtue 1 -111011001110 business-policy 1 -111011001110 agriculture-extension 1 -111011001110 York-Simcoe 1 -111011001110 dial-aporn 1 -111011001110 non-loan 1 -111011001110 microwave-transmissions 1 -111011001110 enchanced 1 -111011001110 12-month-improvement 1 -111011001110 debt-redemption 1 -111011001110 system-financing 1 -111011001110 Mafia-busting 1 -111011001110 integrated-management 1 -111011001110 full-acquisition 1 -111011001110 plague-sized 1 -111011001110 tele-processing 1 -111011001110 electronic-listing 1 -111011001110 ocean-transport 1 -111011001110 truck-line 1 -111011001110 drilling-related 1 -111011001110 day-surgery 1 -111011001110 item-processing 1 -111011001110 immunology-based 1 -111011001110 stay-ahead 1 -111011001110 centrex 1 -111011001110 more-dynamic 1 -111011001110 better-devised 1 -111011001110 over-literary 1 -111011001110 structures-technology 1 -111011001110 real-estate-investor 1 -111011001110 livestock-feeding 1 -111011001110 information-provider 1 -111011001110 alternate-operator 1 -111011001110 software-and-services 1 -111011001110 much-postponed 1 -111011001110 Eurocity 1 -111011001110 pink-telephone 1 -111011001110 dashboard-styling 1 -111011001110 coastwise 1 -111011001110 fiscal-agent 1 -111011001110 shop-by-catalog 1 -111011001110 selfdamaging 1 -111011001110 deflector 1 -111011001110 noneducational 1 -111011001110 asset-financial 1 -111011001110 small-type 1 -111011001110 retrogressing 1 -111011001110 ground-transit 1 -111011001110 already-positive 1 -111011001110 theater-related 1 -111011001110 Triangle-related 1 -111011001110 aviation-training 1 -111011001110 foreign-news 1 -111011001110 errand-running 1 -111011001110 engineering-construction 1 -111011001110 tax-preferred 1 -111011001110 safety-glass 1 -111011001110 ad-spending 1 -111011001110 airline-crash 1 -111011001110 six-decade 1 -111011001110 socionomic 1 -111011001110 strategic-thinker 1 -111011001110 drilling-engineering 1 -111011001110 field-support 1 -111011001110 buildings-materials 1 -111011001110 spill-containment 1 -111011001110 326-day 2 -111011001110 multiple-listing 2 -111011001110 alternative-operator 2 -111011001110 construction-sector 2 -111011001110 tort-law 2 -111011001110 price-moving 2 -111011001110 pedagogic 2 -111011001110 three-president 2 -111011001110 open-interest 2 -111011001110 mimetic 2 -111011001110 cross-national 2 -111011001110 target-company 2 -111011001110 sun-bleached 2 -111011001110 submarine-design 2 -111011001110 PCB-disposal 2 -111011001110 portfolio-accounting 2 -111011001110 geotechnical 2 -111011001110 Covia/Apollo 2 -111011001110 global-financial 2 -111011001110 voting-booth 2 -111011001110 deferred-tax 2 -111011001110 dial-a-message 2 -111011001110 maintenence 2 -111011001110 computerized-trading 2 -111011001110 bid-related 2 -111011001110 telecom-equipment 2 -111011001110 trust-banking 2 -111011001110 merchandise-group 2 -111011001110 stockpicking 2 -111011001110 discount-pricing 2 -111011001110 calling-card 2 -111011001110 propulsions 2 -111011001110 near-photographic 2 -111011001110 radar-engineering 2 -111011001110 overseas-oriented 2 -111011001110 customer-support 2 -111011001110 ship-design 2 -111011001110 doom-laden 2 -111011001110 highway-patrol 2 -111011001110 car-industry 2 -111011001110 operator-assistance 2 -111011001110 car-auction 3 -111011001110 home-study 3 -111011001110 state-ordered 3 -111011001110 bumptious 3 -111011001110 risk-disclosure 3 -111011001110 out-of-stock 3 -111011001110 price-reporting 3 -111011001110 music-related 3 -111011001110 computer-programming 3 -111011001110 high-yen 3 -111011001110 central-banking 3 -111011001110 Lincoln-Douglas 3 -111011001110 technology-trade 3 -111011001110 Antillean 3 -111011001110 still-operating 3 -111011001110 small-print 3 -111011001110 restaurant-industry 3 -111011001110 school-sponsored 3 -111011001110 bill-paying 3 -111011001110 information-system 3 -111011001110 livestock-feed 3 -111011001110 knowledge-based 3 -111011001110 bank-like 4 -111011001110 Kvant 4 -111011001110 end-use 4 -111011001110 human-health 4 -111011001110 most-successful 4 -111011001110 title-related 4 -111011001110 mobile-communications 4 -111011001110 Wrongful 4 -111011001110 corporate-relations 4 -111011001110 teething 4 -111011001110 enviromental 4 -111011001110 technical-support 4 -111011001110 birth-dearth 4 -111011001110 weight-lifting 4 -111011001110 adminstrative 5 -111011001110 finanical 5 -111011001110 divide-and-conquer 5 -111011001110 retail-industry 5 -111011001110 Khoo-controlled 5 -111011001110 mellifluous 5 -111011001110 search-and-destroy 6 -111011001110 trade-matching 6 -111011001110 non-railroad 6 -111011001110 private-enterprise 6 -111011001110 voice-message 6 -111011001110 human-interest 6 -111011001110 nonacademic 7 -111011001110 gold-mine 7 -111011001110 savings-institution 7 -111011001110 radiological 7 -111011001110 janitorial 8 -111011001110 data-retrieval 8 -111011001110 open-bank 9 -111011001110 Pap-test 9 -111011001110 foreign-service 10 -111011001110 merchant-bank 10 -111011001110 air-transportation 10 -111011001110 aircraft-engineering 10 -111011001110 Arabica 13 -111011001110 quality-assurance 18 -111011001110 dial-it 18 -111011001110 dial-up 23 -111011001110 third-country 43 -111011001110 foreign-debt 81 -111011001110 financial 20755 -111011001110 oil-field 253 -111011001111 illegal-campaign-contribution 1 -111011001111 stratospheric-ozone 1 -111011001111 active-ownership 1 -111011001111 market-distorting 1 -111011001111 Road-Railer 1 -111011001111 cheapened-dollar 1 -111011001111 sales/marketing 1 -111011001111 too-hasty 1 -111011001111 down-labeling 1 -111011001111 Statesmanlike 1 -111011001111 nonstatutory 1 -111011001111 salad-fork 1 -111011001111 avionics-support-system 1 -111011001111 once-indisputable 1 -111011001111 forced-draft 1 -111011001111 debt-dependent 1 -111011001111 Olympic-look-alike 1 -111011001111 anti-Somoza 1 -111011001111 new-tort 1 -111011001111 margin-rate 1 -111011001111 canvas-and-steel 1 -111011001111 fanatstic 1 -111011001111 simon-pure 1 -111011001111 HUD-financed 1 -111011001111 world-premiere 1 -111011001111 143-year-old 1 -111011001111 computer-initiated 1 -111011001111 Noh-style 1 -111011001111 Democratic-written 1 -111011001111 post-peace-talk 1 -111011001111 unthoughtful 1 -111011001111 pro-Romanian 1 -111011001111 saucerlike 1 -111011001111 state-led 1 -111011001111 51-year 1 -111011001111 religious-related 1 -111011001111 language-acquisition 1 -111011001111 slowed-down 1 -111011001111 opening-era 1 -111011001111 still-underdeveloped 1 -111011001111 call-traffic 1 -111011001111 union-related 1 -111011001111 room-design 1 -111011001111 mobile-home-market 1 -111011001111 long-frustrated 1 -111011001111 radongas 1 -111011001111 narrow-ranged 1 -111011001111 sleep/dream 1 -111011001111 foreign-exchange-induced 1 -111011001111 Bergmanesque 1 -111011001111 Kach 1 -111011001111 teen-pregnancy 1 -111011001111 biochemical-weapons 1 -111011001111 hyperfast 1 -111011001111 sheep-in-deer's-clothing 1 -111011001111 too-programmed 1 -111011001111 wage-demand 1 -111011001111 missile-warhead 1 -111011001111 two-of-three-game 1 -111011001111 seven-plus 1 -111011001111 time-lag 1 -111011001111 backwood 1 -111011001111 art-market 1 -111011001111 no-imports 1 -111011001111 dollar-driven 1 -111011001111 pizza-making 1 -111011001111 dual-sourcing 1 -111011001111 industrial-world 1 -111011001111 keffiyah 1 -111011001111 insulin-like 1 -111011001111 minority-teacher 1 -111011001111 Bartokian 1 -111011001111 structural-deficit 1 -111011001111 loan-agreement 1 -111011001111 1,055-to-554 1 -111011001111 less-than-social 1 -111011001111 cult-hero 1 -111011001111 tanker-reflagging 1 -111011001111 no-lunch 1 -111011001111 anti-profit 1 -111011001111 149-year 1 -111011001111 steamboating 1 -111011001111 Reagan-caused 1 -111011001111 A-330/A340 1 -111011001111 product-to-product 1 -111011001111 no-conflict 1 -111011001111 submarine-propulsion 1 -111011001111 under-two-minute 1 -111011001111 156-year 1 -111011001111 ceramics-engine 1 -111011001111 low-pricing 1 -111011001111 melt-textured 1 -111011001111 youth-gang 1 -111011001111 biowarfare 1 -111011001111 school-linked 1 -111011001111 super-long 1 -111011001111 satellite-system 1 -111011001111 arthritis-like 1 -111011001111 non-dividend-paying 1 -111011001111 capital-requirement 1 -111011001111 trade-based 1 -111011001111 14-game 1 -111011001111 anti-Texaco 1 -111011001111 nuclear-effects 1 -111011001111 defense-sector 1 -111011001111 autarkical 1 -111011001111 1910-1920 1 -111011001111 water-consuming 1 -111011001111 not-so-discreet 1 -111011001111 patio-home 1 -111011001111 geo-military 1 -111011001111 -pricing 1 -111011001111 heroin-distribution 1 -111011001111 petroleumish 1 -111011001111 superpotent 1 -111011001111 cancer-cell 1 -111011001111 product-substitution 1 -111011001111 bidrigging 1 -111011001111 poll-related 1 -111011001111 whistle-wetting 1 -111011001111 temporary-refugee 1 -111011001111 black-black 1 -111011001111 white-white 1 -111011001111 actualizing 1 -111011001111 engine-valve 1 -111011001111 hare-like 1 -111011001111 lawn-maintenance 1 -111011001111 defense-acquisition 1 -111011001111 intergovernment 1 -111011001111 farmpolicy 1 -111011001111 asset-play 1 -111011001111 post-nationalization 1 -111011001111 film-cost 1 -111011001111 Japan-led 1 -111011001111 no-diversification 1 -111011001111 ill-begotten 1 -111011001111 timber-capitalization 1 -111011001111 against-the-grain 1 -111011001111 rail-to-rail 1 -111011001111 Daco-Roman 1 -111011001111 silver-buying 1 -111011001111 again-brisk 1 -111011001111 Allegis-style 1 -111011001111 budget-resolution 1 -111011001111 two-airlines 1 -111011001111 forwardlooking 1 -111011001111 brokerage-rate 1 -111011001111 conflictual 1 -111011001111 near-brisk 1 -111011001111 service-job 1 -111011001111 46.5-degree 1 -111011001111 overdetermined 1 -111011001111 already-large 1 -111011001111 ever-less-repressed 1 -111011001111 Oscar-aiming 1 -111011001111 laggardly 1 -111011001111 marketmoving 1 -111011001111 computer-publication 1 -111011001111 individual-bank 1 -111011001111 disease-transmitting 1 -111011001111 no-smokestack 1 -111011001111 counter-inflation 1 -111011001111 jobcreating 1 -111011001111 philosophic-botanic 1 -111011001111 Iyak-3 1 -111011001111 neo-apartheid 1 -111011001111 low-gear 1 -111011001111 no-build 1 -111011001111 inter-exchange 1 -111011001111 tin-market 1 -111011001111 steam/gas 1 -111011001111 condom-advertising 1 -111011001111 child-nutrition 1 -111011001111 nine-play 1 -111011001111 all-but-official 1 -111011001111 Mondale-Hart 1 -111011001111 classroom-based 1 -111011001111 new-concept 1 -111011001111 tomato-sauce 1 -111011001111 almost-inevitable 1 -111011001111 theatrical-production 1 -111011001111 ink-migration 1 -111011001111 Nepalese-speaking 1 -111011001111 army-linked 1 -111011001111 sizzly 1 -111011001111 emissionlevel 1 -111011001111 ego-inflating 1 -111011001111 land-sales 1 -111011001111 open-mouth 1 -111011001111 Oil-export 1 -111011001111 still-good 1 -111011001111 centerleft 1 -111011001111 fuel-pressure 1 -111011001111 anti-Eastern 1 -111011001111 already-shaky 1 -111011001111 loss-of-coolant 1 -111011001111 Mikanesque 1 -111011001111 position-adjusting 1 -111011001111 currentcarrying 1 -111011001111 temporary-residency 1 -111011001111 card-service 1 -111011001111 least-developed-nation 1 -111011001111 sociopathic 1 -111011001111 blacklist-era 1 -111011001111 defense/foreign 1 -111011001111 earnings-reinvestment 1 -111011001111 12-years 1 -111011001111 non-mathematical 1 -111011001111 ga-ga 1 -111011001111 Falwell-like 1 -111011001111 agency-acquisition 1 -111011001111 nuclear-weapons-sites 1 -111011001111 signal-radiation 1 -111011001111 fleetwide 1 -111011001111 lawsuit-induced 1 -111011001111 trade-and-investment 1 -111011001111 noncancellable 1 -111011001111 Spanish-stock 1 -111011001111 leisure-resort 1 -111011001111 discount-leasing 1 -111011001111 slower-than-desired 1 -111011001111 consumer-focused 1 -111011001111 drug-traffic 1 -111011001111 under-the-counter 1 -111011001111 local-interview 1 -111011001111 near-desert 1 -111011001111 Kohl-Genscher 1 -111011001111 price-stabilized 1 -111011001111 once-astounding 1 -111011001111 belly-shaking 1 -111011001111 bid/offer 1 -111011001111 pizza-industry 1 -111011001111 sleep-at-night 1 -111011001111 car-stealing 1 -111011001111 phone-market 1 -111011001111 resin-supply 1 -111011001111 shoe-line 1 -111011001111 wafer-scale 1 -111011001111 industrial-organizational 1 -111011001111 arms-peddling 1 -111011001111 top-star 1 -111011001111 alcohol-drinking 1 -111011001111 fifth-month 1 -111011001111 intraoffice 1 -111011001111 payroll-employment 1 -111011001111 Yankee-style 1 -111011001111 domestic-credit 1 -111011001111 low-seeded 1 -111011001111 angiogenic 1 -111011001111 twiglike 1 -111011001111 value-personal 1 -111011001111 loan-volume 1 -111011001111 enrichment-facility 1 -111011001111 prison-population 1 -111011001111 toughest-guy-in-the-old-days 1 -111011001111 protection-seeking 1 -111011001111 channel-changing 1 -111011001111 stock-investing 1 -111011001111 calling-volume 1 -111011001111 federal-corporate 1 -111011001111 anti-famine 1 -111011001111 championship-game 1 -111011001111 Byrd-Boren 1 -111011001111 school-entrance 1 -111011001111 aircraft-procurement 1 -111011001111 clothing-buying 1 -111011001111 calendar-week 1 -111011001111 non-entitlement 1 -111011001111 office-employment 1 -111011001111 anti-litter 1 -111011001111 down-the-drain 1 -111011001111 narcotics-crop 1 -111011001111 six-year/60,000-mile 1 -111011001111 cleaning-fluid 1 -111011001111 151-year 1 -111011001111 space-technology 1 -111011001111 bosky 1 -111011001111 occupation-by-occupation 1 -111011001111 technologies/life 1 -111011001111 100,672 1 -111011001111 duller-than-normal 1 -111011001111 incineration/energy 1 -111011001111 flat-to-negative 1 -111011001111 post-Holmesian 1 -111011001111 coin-price 1 -111011001111 Olympics-related 1 -111011001111 loan-officer 1 -111011001111 not-too-acceptable 1 -111011001111 unexepected 1 -111011001111 opendoor 1 -111011001111 operating-cost 1 -111011001111 property-market 1 -111011001111 mark-with 1 -111011001111 narcotics-trafficking 1 -111011001111 wrinkle-smoothing 1 -111011001111 stocktrading 1 -111011001111 new-series 1 -111011001111 Washington-style 1 -111011001111 coreholding 1 -111011001111 cross-share 1 -111011001111 competitive-carrier 1 -111011001111 once-vital 1 -111011001111 suburban-type 1 -111011001111 middle-of-the-night 1 -111011001111 push-off 1 -111011001111 back-cover 1 -111011001111 multivehicle 1 -111011001111 post-farm 1 -111011001111 jewelery-related 1 -111011001111 banking-sector 1 -111011001111 gross-domestic-product 1 -111011001111 once-aggressive 1 -111011001111 dwindling-sales 1 -111011001111 scalp-hair 1 -111011001111 drought-fueled 1 -111011001111 inter-government 1 -111011001111 favored-tax 1 -111011001111 soak-the-elderly-rich 1 -111011001111 new-employee 1 -111011001111 year-to-year-revenue 1 -111011001111 real-GNP 1 -111011001111 price-regulating 1 -111011001111 stock-dealing 1 -111011001111 come-from-nowhere 1 -111011001111 social-kissing 1 -111011001111 petrochemical-plant 1 -111011001111 unilateral-disarmament 2 -111011001111 document-control 2 -111011001111 taxpayer-service 2 -111011001111 dollar-sales 2 -111011001111 snail-like 2 -111011001111 Soviet-Chinese 2 -111011001111 educational-reform 2 -111011001111 super-strong 2 -111011001111 no-growth/slow-growth 2 -111011001111 monetary-fiscal 2 -111011001111 records-check 2 -111011001111 macular 2 -111011001111 currency-reserve 2 -111011001111 construction-cost 2 -111011001111 intercorporate 2 -111011001111 monetary-base 2 -111011001111 world-leading 2 -111011001111 hard-cash 2 -111011001111 84-year 2 -111011001111 98-year 2 -111011001111 low-productivity 2 -111011001111 trade-security 2 -111011001111 1747 2 -111011001111 margin-call 2 -111011001111 free-mileage 2 -111011001111 procreational 2 -111011001111 operating-margin 2 -111011001111 sales-force 2 -111011001111 waste-heat 2 -111011001111 auto-trade 2 -111011001111 anti-Pinochet 2 -111011001111 pre-closing 2 -111011001111 corporate-responsibility 2 -111011001111 multiple-plot 2 -111011001111 access-line 2 -111011001111 growth-through-acquisition 2 -111011001111 hydrologic 2 -111011001111 volume-related 2 -111011001111 balanced-loading 2 -111011001111 70-month 2 -111011001111 free-mailing 2 -111011001111 patent-enforcement 2 -111011001111 anti-Sikh 2 -111011001111 as-yet-unborn 2 -111011001111 national-advertising 2 -111011001111 storage-tank 2 -111011001111 OAU-brokered 2 -111011001111 CFC-elimination 2 -111011001111 sewer-system 2 -111011001111 Lassa 2 -111011001111 formula-driven 2 -111011001111 price-increase 2 -111011001111 141-year 2 -111011001111 black-power 2 -111011001111 tight-supply 2 -111011001111 115-year 2 -111011001111 annual-mammography 2 -111011001111 moneysupply 2 -111011001111 90-year 2 -111011001111 farm-spending 2 -111011001111 large-stock 2 -111011001111 assisted-housing 2 -111011001111 calculation-intensive 2 -111011001111 party-military 2 -111011001111 extra-marital 2 -111011001111 animal-research 2 -111011001111 employee-oriented 2 -111011001111 trade-barrier 2 -111011001111 anti-industry 2 -111011001111 legal-resident 2 -111011001111 fire-management 2 -111011001111 alcohol-abuse 2 -111011001111 fudiciary 2 -111011001111 transformational 2 -111011001111 freight-rate 3 -111011001111 116-year 3 -111011001111 politico-military 3 -111011001111 OPEC-like 3 -111011001111 revenue-recognition 3 -111011001111 gloom-and-doom 3 -111011001111 andante 3 -111011001111 anti-alliance 3 -111011001111 Tektronix/NEC 3 -111011001111 arithmetical 3 -111011001111 auto-export 3 -111011001111 pre-release 3 -111011001111 gas-industry 3 -111011001111 fee-income 3 -111011001111 more-balanced 3 -111011001111 anti-counterfeiting 3 -111011001111 bid-and-asked 3 -111011001111 corporate-earnings 3 -111011001111 anti-French 3 -111011001111 dengue 3 -111011001111 Edenic 3 -111011001111 102-year 3 -111011001111 anti-Jewish 3 -111011001111 lost-baggage 3 -111011001111 tensile 3 -111011001111 sink-or-swim 3 -111011001111 musculoskeletal 3 -111011001111 spaying 3 -111011001111 minority-hiring 3 -111011001111 profit-growth 3 -111011001111 nuclear-force 3 -111011001111 saline 3 -111011001111 59-year 3 -111011001111 Arab-run 3 -111011001111 pentup 3 -111011001111 pass-along 3 -111011001111 coldblooded 3 -111011001111 oilprice 3 -111011001111 counter-terrorist 3 -111011001111 class-war 3 -111011001111 labor-supply 3 -111011001111 demand-led 3 -111011001111 metropolitan-wide 3 -111011001111 telecommunications-procurement 3 -111011001111 government-business 3 -111011001111 small-investor 3 -111011001111 investment-led 4 -111011001111 AIDS-vaccine 4 -111011001111 anti-Tamil 4 -111011001111 family-income 4 -111011001111 equity-market 4 -111011001111 steel-company 4 -111011001111 400-point 4 -111011001111 tort-litigation 4 -111011001111 corn-crop 4 -111011001111 stockprice 4 -111011001111 flow-of-funds 4 -111011001111 tuition-setting 4 -111011001111 rental-housing 4 -111011001111 war-related 4 -111011001111 bid-asked 4 -111011001111 personal-tax 4 -111011001111 international-debt 4 -111011001111 psychosocial 4 -111011001111 oil-buying 4 -111011001111 westerly 4 -111011001111 aspirin-free 4 -111011001111 opinion-poll 5 -111011001111 tight-credit 5 -111011001111 energy-market 5 -111011001111 domestic-led 5 -111011001111 polyp 5 -111011001111 dry-eye 5 -111011001111 independent-contractor 5 -111011001111 political-military 5 -111011001111 industry-group 5 -111011001111 exchangerate 5 -111011001111 currency-swap 5 -111011001111 income-maintenance 5 -111011001111 geostrategic 6 -111011001111 brain-wave 6 -111011001111 stock-sale 6 -111011001111 price-boosting 6 -111011001111 Borehole 6 -111011001111 electoral-college 6 -111011001111 cardiopulmonary 6 -111011001111 defense-budget 6 -111011001111 death-squad 6 -111011001111 nuclear-disarmament 6 -111011001111 drug-use 6 -111011001111 anti-recession 6 -111011001111 car-buying 6 -111011001111 end-of-quarter 6 -111011001111 pre-weekend 6 -111011001111 tax-collection 6 -111011001111 one-child 6 -111011001111 bid-offer 7 -111011001111 red-tape 7 -111011001111 extenuating 7 -111011001111 asset-quality 7 -111011001111 election-related 7 -111011001111 oil-pricing 7 -111011001111 telephone-line 7 -111011001111 exponential 8 -111011001111 mortgage-Treasury 8 -111011001111 anti-foreign 8 -111011001111 economic-growth 9 -111011001111 currency-rate 9 -111011001111 new-order 9 -111011001111 unsanitary 9 -111011001111 cashflow 9 -111011001111 price-matching 10 -111011001111 D&O 10 -111011001111 supply/demand 11 -111011001111 118-year 11 -111011001111 easy-money 13 -111011001111 conventional-force 13 -111011001111 socio-economic 13 -111011001111 interestrate 13 -111011001111 supply-and-demand 14 -111011001111 tight-money 14 -111011001111 computational 14 -111011001111 earnings-per-share 16 -111011001111 no-refund 16 -111011001111 living-standard 17 -111011001111 climatic 17 -111011001111 market-affecting 18 -111011001111 monetary-policy 18 -111011001111 liability-insurance 18 -111011001111 anti-Japanese 19 -111011001111 consumer-spending 19 -111011001111 extramarital 20 -111011001111 debt-protection 21 -111011001111 inter-American 23 -111011001111 ground-water 23 -111011001111 blood-cell 24 -111011001111 bovine 24 -111011001111 oil-market 25 -111011001111 below-normal 25 -111011001111 primary-dealer 32 -111011001111 labor-market 32 -111011001111 labor-force 32 -111011001111 criminal-justice 32 -111011001111 supply-demand 34 -111011001111 economic-policy 39 -111011001111 anti-inflationary 41 -111011001111 agrarian 58 -111011001111 share-price 66 -111011001111 debt-for-equity 83 -111011001111 new-product 86 -111011001111 organized-crime 88 -111011001111 market-share 103 -111011001111 macroeconomic 106 -111011001111 money-supply 142 -111011001111 debt-equity 145 -111011001111 on-time 164 -111011001111 exchange-rate 521 -111011001111 interest-rate 896 -111011001111 economic 16666 -111011001111 monetary 2616 -11101101000 nutritive 1 -11101101000 lower-costing 1 -11101101000 unutilized 1 -11101101000 non-stock 1 -11101101000 tax-consuming 1 -11101101000 race-horse 1 -11101101000 dressed-to-kill 1 -11101101000 water-tight 1 -11101101000 lowtax 1 -11101101000 unboycotted 1 -11101101000 EEC-nation 1 -11101101000 balancea 1 -11101101000 in-court 1 -11101101000 government-securities-options 1 -11101101000 nuclear-policy 1 -11101101000 tighter-money 1 -11101101000 no-beards 1 -11101101000 nerved 1 -11101101000 cheap-jack 1 -11101101000 boiled-peanut 1 -11101101000 news-making 1 -11101101000 industrial-talc 1 -11101101000 yen-to-dollar 1 -11101101000 Butcher-controlled 1 -11101101000 high-ranked 1 -11101101000 wine-sipping 1 -11101101000 stock-majority 1 -11101101000 chairman-credit 1 -11101101000 droughtstricken 1 -11101101000 NATO-to-Warsaw 1 -11101101000 smog-prone 1 -11101101000 car-trunk 1 -11101101000 yen-stabilization 1 -11101101000 non-Warsaw 1 -11101101000 50-cents-on-the-dollar 1 -11101101000 serveral 1 -11101101000 live-and-let-live 1 -11101101000 ever-inventive 1 -11101101000 better-aligned 1 -11101101000 sweaters-and-jeans-clad 1 -11101101000 summer-type 1 -11101101000 guns-and-butter 1 -11101101000 no-negotiations 1 -11101101000 white-goods 1 -11101101000 deep-discounted 1 -11101101000 manufacturer-controlled 1 -11101101000 3,786 1 -11101101000 3,134 1 -11101101000 heir-conscious 1 -11101101000 debt-for-local 1 -11101101000 pro-land 1 -11101101000 Pepsi-owned 1 -11101101000 ask-questions-afterward 1 -11101101000 since-convicted 1 -11101101000 middle-tier 1 -11101101000 no-military-use 1 -11101101000 tailstring 1 -11101101000 corn-borer 1 -11101101000 semi-floating 1 -11101101000 energy-future 1 -11101101000 farm-sector 1 -11101101000 post-abstract 1 -11101101000 Rescind 1 -11101101000 pushed-to-the-wall 1 -11101101000 filbert 1 -11101101000 teletypewriter 1 -11101101000 loan-by-phone 1 -11101101000 standard-type 1 -11101101000 high-deductible 1 -11101101000 remarketizing 1 -11101101000 national-class 1 -11101101000 frozen-mice 1 -11101101000 approachif 1 -11101101000 hydro-powered 1 -11101101000 closed-management 1 -11101101000 dollar-peso 1 -11101101000 rageful 1 -11101101000 286,431 1 -11101101000 almost-unlimited 1 -11101101000 higher-saving 1 -11101101000 kronor-dollar 1 -11101101000 Western-type 1 -11101101000 up-scale 1 -11101101000 troubled-country 1 -11101101000 20,000-to-one 1 -11101101000 cordoba-dollar 1 -11101101000 commercial-saturated 1 -11101101000 bolivars-to-the-dollar 1 -11101101000 developing-world 1 -11101101000 theft-replacement 1 -11101101000 Soviet-Bloc 1 -11101101000 resident-only 1 -11101101000 malfeasant 1 -11101101000 often-localized 1 -11101101000 creditor-supported 1 -11101101000 British-pound 1 -11101101000 president/public 1 -11101101000 out-of-season 2 -11101101000 subway-riding 2 -11101101000 store-bound 2 -11101101000 equitylinked 2 -11101101000 strike-prone 2 -11101101000 non-local 2 -11101101000 theatrical-exhibition 2 -11101101000 non-Iranian 2 -11101101000 newsprint-mill 2 -11101101000 non-EMS 2 -11101101000 farm-chemical 2 -11101101000 14,020 2 -11101101000 over-eager 2 -11101101000 semisecret 2 -11101101000 U.S.-guaranteed 2 -11101101000 blackmarket 2 -11101101000 market-liberalization 2 -11101101000 non-industrial 2 -11101101000 electronic-related 2 -11101101000 gold-share 2 -11101101000 no-discount 2 -11101101000 non-textile 2 -11101101000 EC-member 2 -11101101000 profit-starved 2 -11101101000 mid-tier 2 -11101101000 non-domestic 2 -11101101000 interspersing 2 -11101101000 unseasonal 2 -11101101000 building-trade 2 -11101101000 noncompliant 2 -11101101000 related-party 3 -11101101000 phased-out 3 -11101101000 foriegn 3 -11101101000 credit-conscious 3 -11101101000 toy-industry 3 -11101101000 non-Swedish 3 -11101101000 coal-industry 3 -11101101000 non-Korean 3 -11101101000 large-city 3 -11101101000 bullion-coin 3 -11101101000 pro-tax 4 -11101101000 goldmining 4 -11101101000 non-institutional 4 -11101101000 Khoo-family 4 -11101101000 non-convertible 4 -11101101000 household-name 4 -11101101000 foreign-securities 4 -11101101000 more-stable 5 -11101101000 dealer-placed 5 -11101101000 mark/dollar 5 -11101101000 military-clothing 5 -11101101000 non-retail 5 -11101101000 developing-nation 6 -11101101000 junk-fund 6 -11101101000 non-U.K. 7 -11101101000 nondollar 8 -11101101000 Maryland-based 8 -11101101000 foreign-government 9 -11101101000 non-European 13 -11101101000 nongovernmental 14 -11101101000 free-world 15 -11101101000 non-Canadian 16 -11101101000 dividend-paying 16 -11101101000 income-oriented 17 -11101101000 foreign-bank 19 -11101101000 stock-fund 21 -11101101000 non-British 24 -11101101000 non-member 24 -11101101000 Third-World 25 -11101101000 non-EC 26 -11101101000 nonmember 28 -11101101000 Khoo-related 32 -11101101000 Soviet-bloc 51 -11101101000 LDC 58 -11101101000 non-Japanese 88 -11101101000 foreign 17849 -11101101000 non-U.S. 162 -11101101001 not-quite-so-new 1 -11101101001 ment 1 -11101101001 steel-restructuring 1 -11101101001 dealer-sold 1 -11101101001 news-starved 1 -11101101001 2,933 1 -11101101001 victims-compensation 1 -11101101001 potentially-reduced 1 -11101101001 full-load 1 -11101101001 6,730 1 -11101101001 share-offer 1 -11101101001 lowergrade 1 -11101101001 tobacco-chewing 1 -11101101001 deductibile 1 -11101101001 parking-space 1 -11101101001 fixed-benefit 1 -11101101001 index-oriented 1 -11101101001 tax-privileged 1 -11101101001 foodstock 1 -11101101001 top-listed 1 -11101101001 file-cabinet 1 -11101101001 bank-deposit-insurance 1 -11101101001 intra-corporate 1 -11101101001 tranfer 1 -11101101001 Munimax 1 -11101101001 drought-weary 1 -11101101001 administred 1 -11101101001 2,800,000 1 -11101101001 already-frustrated 1 -11101101001 snail-loving 1 -11101101001 Japan-oriented 1 -11101101001 tax-qualified 1 -11101101001 benefit/compensation 1 -11101101001 1,100-plus 1 -11101101001 still-feverish 1 -11101101001 agriculture-and-livestock 1 -11101101001 mailorder 1 -11101101001 Tokyo-managed 1 -11101101001 born-of-fear 1 -11101101001 individual-oriented 1 -11101101001 flexible-income 1 -11101101001 snow-blown 1 -11101101001 fleet-development 1 -11101101001 once-burned 1 -11101101001 under-financed 1 -11101101001 option-stock 1 -11101101001 target-firm 1 -11101101001 Indian-staffed 1 -11101101001 Kemper-run 1 -11101101001 anti-hush 1 -11101101001 nonhypertensive 1 -11101101001 ethical-investment 1 -11101101001 multipremium 1 -11101101001 401K 1 -11101101001 26,809 1 -11101101001 Low-load 1 -11101101001 -bracket 1 -11101101001 carry-through 1 -11101101001 non-appropriated 1 -11101101001 retail-related 1 -11101101001 welfare-benefit 1 -11101101001 service-company 1 -11101101001 defined-compensation 1 -11101101001 Capped 1 -11101101001 export-subsidizing 1 -11101101001 non-accredited 1 -11101101001 still-ample 1 -11101101001 option-related 1 -11101101001 depositable 1 -11101101001 cash-balance 1 -11101101001 health-incentive 1 -11101101001 non-manager 1 -11101101001 pre-venture-capital 1 -11101101001 Mi-26 1 -11101101001 long-laid 1 -11101101001 ship-escort 1 -11101101001 lowest-yielding 1 -11101101001 prepaid-tuition 1 -11101101001 debt-reserve 1 -11101101001 sweet-potato 1 -11101101001 best-peforming 1 -11101101001 international-bond 1 -11101101001 railcar-management 1 -11101101001 executive-option 1 -11101101001 Chinese-potential 1 -11101101001 lower-fee 1 -11101101001 most-affected 1 -11101101001 revolving-loan 1 -11101101001 unemploymentinsurance 1 -11101101001 small-saver 1 -11101101001 insurance-stock 1 -11101101001 severance-incentive 1 -11101101001 Korea-oriented 1 -11101101001 ml 1 -11101101001 non-agriculture 1 -11101101001 late-paying 1 -11101101001 surrendered-profits 1 -11101101001 postal-insurance 1 -11101101001 PERS 1 -11101101001 crossfeed 1 -11101101001 lower-than-projected 1 -11101101001 wiped-out 1 -11101101001 towing-insurance 1 -11101101001 semi-open-end 1 -11101101001 multiple-asset 1 -11101101001 brokerdealer 1 -11101101001 sun-dazed 1 -11101101001 private-pension-plan 1 -11101101001 metal-heavy 1 -11101101001 sunflower-oil 1 -11101101001 computer-led 1 -11101101001 toconsolidated 1 -11101101001 still-vacationing 1 -11101101001 disaster-contingency 1 -11101101001 top-yielding 1 -11101101001 million-rand 1 -11101101001 TLC/McCall 1 -11101101001 shares-unlike 1 -11101101001 gimlet-eyed 1 -11101101001 incentive-compensation 1 -11101101001 extra-cautious 1 -11101101001 partner-benefits 1 -11101101001 capital-stock 1 -11101101001 secondary-reserve 1 -11101101001 clothes-horses 1 -11101101001 long-weekend 1 -11101101001 thrift-institutions 1 -11101101001 173,000-member 1 -11101101001 globalbond 1 -11101101001 trading-account 1 -11101101001 Mafia-tainted 1 -11101101001 1,542 1 -11101101001 25-performing 1 -11101101001 1,741 1 -11101101001 high-revenue 1 -11101101001 IRS-qualified 1 -11101101001 fad-conscious 1 -11101101001 private-syndication 1 -11101101001 Eqty 1 -11101101001 Panama-incorporated 1 -11101101001 safety-hazard 1 -11101101001 waste-anagement 1 -11101101001 already-authorized 1 -11101101001 savings-for-retirement 1 -11101101001 plant-extension 1 -11101101001 price-discount 1 -11101101001 Board-traded 1 -11101101001 airline-stock 1 -11101101001 2,161 1 -11101101001 12B-1 1 -11101101001 roadconstruction 1 -11101101001 strgglwithout 1 -11101101001 license-application 1 -11101101001 general-equity 1 -11101101001 individual-type 1 -11101101001 equity-income 1 -11101101001 minority-internship 1 -11101101001 air-interdiction 2 -11101101001 security-assistance 2 -11101101001 country-related 2 -11101101001 health-and-welfare 2 -11101101001 cash-type 2 -11101101001 U.S.-assisted 2 -11101101001 Iran-related 2 -11101101001 beguile 2 -11101101001 gardening-tool 2 -11101101001 openended 2 -11101101001 soil-conservation 2 -11101101001 lendable 2 -11101101001 round-lot 2 -11101101001 short-intermediate 2 -11101101001 payroll-savings 2 -11101101001 yield-seeking 2 -11101101001 savings-investment 2 -11101101001 abusive-shelter 2 -11101101001 company-stock 2 -11101101001 level-4 2 -11101101001 consumer-advocate 2 -11101101001 first-wave 2 -11101101001 loanable 2 -11101101001 stock-oriented 2 -11101101001 bonus-pay 2 -11101101001 flexible-benefit 2 -11101101001 338,528 2 -11101101001 yield-conscious 2 -11101101001 anti-drug-abuse 2 -11101101001 state-registered 2 -11101101001 donor-advised 2 -11101101001 housing-bond 2 -11101101001 unequal-voting-rights 2 -11101101001 contigency 2 -11101101001 aggressive-growth 2 -11101101001 energy-product 2 -11101101001 Idex 3 -11101101001 silver-mining 3 -11101101001 merger-speculating 3 -11101101001 unobligated 3 -11101101001 civil-servant 3 -11101101001 non-depository 3 -11101101001 tax-financed 3 -11101101001 unemployment-benefit 3 -11101101001 single-employer 3 -11101101001 high-expense 3 -11101101001 single-currency 3 -11101101001 computer-oriented 3 -11101101001 trusteed 3 -11101101001 credit-quality 3 -11101101001 employee-savings 3 -11101101001 non-rail 3 -11101101001 institutional-type 3 -11101101001 wire-maintenance 3 -11101101001 green-card 3 -11101101001 college-tuition 3 -11101101001 gold-stock 4 -11101101001 thrift-insurance 4 -11101101001 moneymarket 4 -11101101001 institutional-investor 4 -11101101001 employee-retirement 4 -11101101001 bank-insurance 4 -11101101001 yield-oriented 4 -11101101001 rainy-day 4 -11101101001 tax-managed 4 -11101101001 payroll-deduction 4 -11101101001 Inv 4 -11101101001 Fd 4 -11101101001 one-country 4 -11101101001 coal-related 4 -11101101001 energy-sector 4 -11101101001 salary-deferral 4 -11101101001 nonfederal 4 -11101101001 financial-statement 4 -11101101001 chart-related 4 -11101101001 tax-supported 5 -11101101001 limited-partner 5 -11101101001 growth-and-income 6 -11101101001 non-broadcasting 6 -11101101001 employee-stock 6 -11101101001 individual-investor 6 -11101101001 low-load 6 -11101101001 non-diversified 7 -11101101001 Tokkin 7 -11101101001 direct-marketed 7 -11101101001 broker/dealer 7 -11101101001 maruyu 7 -11101101001 multiemployer 8 -11101101001 seed-capital 8 -11101101001 investable 8 -11101101001 checking-account 8 -11101101001 option-income 8 -11101101001 directors-and-officers 9 -11101101001 multi-employer 9 -11101101001 merit-pay 10 -11101101001 deferred-compensation 10 -11101101001 broker-sold 11 -11101101001 capital-appreciation 11 -11101101001 season-ticket 11 -11101101001 rent-subsidy 13 -11101101001 buy-and-hold 13 -11101101001 growth-stock 13 -11101101001 government-plus 14 -11101101001 under-funded 14 -11101101001 defined-contribution 15 -11101101001 Pierpont 17 -11101101001 gold-oriented 17 -11101101001 gold-related 17 -11101101001 holding-company 20 -11101101001 revenue-sharing 21 -11101101001 public-employee 21 -11101101001 insurance-related 21 -11101101001 Erisa 23 -11101101001 defined-benefit 23 -11101101001 tokkin 25 -11101101001 slush 25 -11101101001 vulture 26 -11101101001 single-country 27 -11101101001 computer-guided 28 -11101101001 guaranty 28 -11101101001 employee-benefit 35 -11101101001 Keogh 36 -11101101001 computer-assisted 41 -11101101001 front-end 43 -11101101001 takeover-stock 43 -11101101001 computer-driven 44 -11101101001 tax-related 49 -11101101001 asset-allocation 50 -11101101001 arbitrage-related 61 -11101101001 general-purpose 84 -11101101001 futures-related 86 -11101101001 unfunded 86 -11101101001 open-end 92 -11101101001 12b-1 104 -11101101001 no-load 117 -11101101001 contingency 241 -11101101001 broker-dealer 263 -11101101001 sinking 468 -11101101001 money-market 493 -11101101001 closed-end 528 -11101101001 mutual 2752 -11101101001 institutional 2958 -11101101001 pension 3126 -111011010100 computer-colored 1 -111011010100 EPS. 1 -111011010100 2,419 1 -111011010100 JRMX. 1 -111011010100 grain-backed 1 -111011010100 cash-based 1 -111011010100 nonspouse 1 -111011010100 viticultural 1 -111011010100 nonsurvivable 1 -111011010100 consumer-repayment 1 -111011010100 obscure-sounding 1 -111011010100 Tryggwe 1 -111011010100 cyhexatin-related 1 -111011010100 long-settled 1 -111011010100 fraudulent-banking 1 -111011010100 copper-market 1 -111011010100 DOT. 1 -111011010100 campaign-money 1 -111011010100 rose-filtered 1 -111011010100 First-Quarter 1 -111011010100 Ex-Left 1 -111011010100 S&P-indexed 1 -111011010100 semi-tropical 1 -111011010100 388,988 1 -111011010100 share-fraud 1 -111011010100 celestial-based 1 -111011010100 test-related 1 -111011010100 nonassenting 1 -111011010100 equipment-trust 1 -111011010100 dark-red 1 -111011010100 circus-style 1 -111011010100 abuse-of-power 1 -111011010100 amyotrophic 1 -111011010100 bin-bursting 1 -111011010100 LV 1 -111011010100 Chikako 1 -111011010100 Visionary 1 -111011010100 oil-sand 1 -111011010100 multi-solid 1 -111011010100 Karl-Egmont 1 -111011010100 MMWEC. 1 -111011010100 plastic-production 1 -111011010100 chemical-biological-warfare 1 -111011010100 must-meet 1 -111011010100 radio-syndication 1 -111011010100 LEPYV. 1 -111011010100 venturous 1 -111011010100 unmanagerlike 1 -111011010100 supplier-dealer 1 -111011010100 vehicle-control 1 -111011010100 anti-sexist 1 -111011010100 organization-chart 1 -111011010100 oxydemetonmethyl 1 -111011010100 HDL. 1 -111011010100 Uniglobe 1 -111011010100 container-fleet 1 -111011010100 wellrecognized 1 -111011010100 pro-waterbed 1 -111011010100 verruga 1 -111011010100 142.97 1 -111011010100 market-representative 1 -111011010100 automotive-trade 1 -111011010100 noncomplying 1 -111011010100 Medicare-related 1 -111011010100 capacity-increasing 1 -111011010100 Consoldated 1 -111011010100 brand-rich 1 -111011010100 less-than-spotless 1 -111011010100 CMOS. 1 -111011010100 food-encrusted 1 -111011010100 WPPSS. 1 -111011010100 sovereign-related 1 -111011010100 non-timely 1 -111011010100 LCP. 1 -111011010100 Iranian-arms-sales 1 -111011010100 lowfat 1 -111011010100 cabinet-ranked 1 -111011010100 Britain-first 1 -111011010100 connective-tissue 1 -111011010100 Arendal 1 -111011010100 Mazda-designed 1 -111011010100 gay-activist 1 -111011010100 nontrading 1 -111011010100 Vinzenz 1 -111011010100 publicity-rabid 1 -111011010100 Cecilio 1 -111011010100 gold-bar 1 -111011010100 less-organized 1 -111011010100 777,824 1 -111011010100 Maruey 1 -111011010100 near-anarchic 1 -111011010100 Tansukh 1 -111011010100 stock-for-pay 1 -111011010100 guerrilla-organized 1 -111011010100 IFI. 1 -111011010100 reserves-accounting 1 -111011010100 Dugald 1 -111011010100 non-regional 1 -111011010100 production-credit 1 -111011010100 mango-growing 1 -111011010100 NECO. 1 -111011010100 method-instrument 1 -111011010100 7-foot-by-8-foot 1 -111011010100 lousy-quality 1 -111011010100 pre-washed 1 -111011010100 Kenju 1 -111011010100 fare/rate 1 -111011010100 swamp-for-swamp 1 -111011010100 March-June-September-December 1 -111011010100 DEARDEN 1 -111011010100 first-amendment 1 -111011010100 path-side 1 -111011010100 SNPE. 1 -111011010100 out-of-province 1 -111011010100 CHF. 1 -111011010100 schematized 1 -111011010100 anti-IRS 1 -111011010100 window-space 1 -111011010100 anti-maquiladora 1 -111011010100 EMS-related 1 -111011010100 investment-board 1 -111011010100 MOMA. 1 -111011010100 0.22834718 1 -111011010100 ever-more-expensive 1 -111011010100 Self-Help 1 -111011010100 149.98 1 -111011010100 lesshurried 1 -111011010100 progovernment 1 -111011010100 cash-funding 1 -111011010100 U.S.-devised 1 -111011010100 homebuying 1 -111011010100 non-communications 1 -111011010100 high-capital/high-technology 1 -111011010100 allgedly 1 -111011010100 water-buying 1 -111011010100 perked-up 1 -111011010100 economnic 1 -111011010100 apartment-building 1 -111011010100 STV. 1 -111011010100 GAAP-basis 1 -111011010100 ultra-hazardous 1 -111011010100 unpopulated 1 -111011010100 Solel 1 -111011010100 near-famine 1 -111011010100 NHLBI. 1 -111011010100 meu 1 -111011010100 watermain 1 -111011010100 near-subliminal 1 -111011010100 director-supported 1 -111011010100 gasu 1 -111011010100 heavy-oil-treatment 1 -111011010100 steel-flanged 1 -111011010100 work-crazed 1 -111011010100 near-malpractice 1 -111011010100 100-story-plus 1 -111011010100 risk-group 1 -111011010100 Jens-Jacob 1 -111011010100 now-standard 1 -111011010100 Bunjevacko 1 -111011010100 Hava 1 -111011010100 154,710 1 -111011010100 protectionism-minded 1 -111011010100 lesserknown 1 -111011010100 Impropriety 1 -111011010100 Phuopsis 1 -111011010100 Cynoglossum 1 -111011010100 consumer-buying 1 -111011010100 Gaishi 1 -111011010100 cetain 1 -111011010100 non-cancelable 1 -111011010100 Musicien 1 -111011010100 never-before-harvested 1 -111011010100 Claude-Eric 1 -111011010100 timeshare 1 -111011010100 Excelon 1 -111011010100 Fouquieria 1 -111011010100 Jean-Charles 1 -111011010100 hydrocodone 1 -111011010100 oil-gas 1 -111011010100 infared 1 -111011010100 mini-economic 1 -111011010100 Tempa 1 -111011010100 action-series 1 -111011010100 cermamic 1 -111011010100 Zyklon 1 -111011010100 mutual-to-stock 1 -111011010100 ades 1 -111011010100 now-grown-up 1 -111011010100 Andranik 1 -111011010100 waiver-sales 1 -111011010100 pimply 1 -111011010100 water-use 1 -111011010100 quality-of-care 1 -111011010100 8,503,401 1 -111011010100 aflatoxin-related 1 -111011010100 anti-Yank 1 -111011010100 Flaviano 1 -111011010100 gasoline-price 1 -111011010100 SILENT 1 -111011010100 key-financial 1 -111011010100 overpack 1 -111011010100 off-books 1 -111011010100 airport-crime 1 -111011010100 pre-pasted 1 -111011010100 Ballantine/Del 1 -111011010100 start-stop 1 -111011010100 course-proud 1 -111011010100 low-value-added 1 -111011010100 103-degree 1 -111011010100 junkfood 1 -111011010100 10.49-second 1 -111011010100 anti-deer 1 -111011010100 150-second 1 -111011010100 fine-line 1 -111011010100 betamethasone 1 -111011010100 sales-to-installation 1 -111011010100 debt-for-local-currency 1 -111011010100 Hidemori 1 -111011010100 anti-immigration 1 -111011010100 paperback-book 1 -111011010100 molto 1 -111011010100 side-loading 1 -111011010100 Ula 1 -111011010100 Gehl 1 -111011010100 monetary-damage 1 -111011010100 high-interestrate 1 -111011010100 2,677 1 -111011010100 nine-to-11-year 1 -111011010100 foreign-ordering 1 -111011010100 Zweet 1 -111011010100 Iso 1 -111011010100 Khateeb 1 -111011010100 F.P. 1 -111011010100 minor-brand 1 -111011010100 Mariann 1 -111011010100 Bridas 1 -111011010100 non-subcommittee 1 -111011010100 crude-market 1 -111011010100 Toufic 1 -111011010100 fund-objective 1 -111011010100 anti-Asia 1 -111011010100 all-Taiwanese 1 -111011010100 firstrefusal 1 -111011010100 reverse-reverse 1 -111011010100 bland-looking 1 -111011010100 massincineration 1 -111011010100 heritable 1 -111011010100 non-deposit 1 -111011010100 Hayati 1 -111011010100 RKO. 1 -111011010100 failed-thrift 1 -111011010100 Speen 1 -111011010100 more-recognizable 1 -111011010100 Ulisse 1 -111011010100 investment-club 1 -111011010100 Lythia 1 -111011010100 think-small 1 -111011010100 retirement-fund 2 -111011010100 income-capital 2 -111011010100 Tory-spawned 2 -111011010100 non-aircraft 2 -111011010100 retirement-related 2 -111011010100 single-page 2 -111011010100 IMA. 2 -111011010100 less-productive 2 -111011010100 VMX. 2 -111011010100 4,986 2 -111011010100 155,136 2 -111011010100 FHA. 2 -111011010100 GMAC. 2 -111011010100 liposome-encapsulated 2 -111011010100 corraling 2 -111011010100 productivity-based 2 -111011010100 meteorite 2 -111011010100 PDP 2 -111011010100 highpriced 2 -111011010100 AIL. 2 -111011010100 floor-broker 2 -111011010100 under-earning 2 -111011010100 2,876 2 -111011010100 near-weightless 2 -111011010100 drought-like 2 -111011010100 42,400 2 -111011010100 soup-and-sandwich 2 -111011010100 train-station 2 -111011010100 debt-for-debt 2 -111011010100 yield-curve 2 -111011010100 lower-sulfur 2 -111011010100 auto-defect 2 -111011010100 once-scorned 2 -111011010100 drought-disaster 2 -111011010100 EPIC. 2 -111011010100 soft-shoe 2 -111011010100 present-value 2 -111011010100 housing-project 2 -111011010100 IRI. 2 -111011010100 stock-margin 2 -111011010100 industrial-remediation 2 -111011010100 noncapital 2 -111011010100 RTE. 2 -111011010100 profit-related 2 -111011010100 MTV. 2 -111011010100 9,490 2 -111011010100 SAD. 2 -111011010100 2.4-year 2 -111011010100 enforcement-related 2 -111011010100 nonOPEC 2 -111011010100 Clyfford 2 -111011010100 long-festering 2 -111011010100 annuity-related 3 -111011010100 PNC. 3 -111011010100 NTT. 3 -111011010100 savings-account 3 -111011010100 performance-linked 3 -111011010100 market-leader 3 -111011010100 less-crowded 3 -111011010100 CIC. 3 -111011010100 safe-sex 3 -111011010100 NWA. 3 -111011010100 armed-forces 3 -111011010100 lease-related 3 -111011010100 SAS. 3 -111011010100 Ozar 3 -111011010100 IL-2/LAK 3 -111011010100 WTC. 3 -111011010100 less-traveled 3 -111011010100 KN. 3 -111011010100 MK. 3 -111011010100 sub-underwriting 3 -111011010100 UCLA. 3 -111011010100 non-inherited 3 -111011010100 brain-like 3 -111011010100 FBB 3 -111011010100 digitalized 3 -111011010100 drug-law 3 -111011010100 DWG. 3 -111011010100 15,400 3 -111011010100 CIT. 3 -111011010100 RCA. 3 -111011010100 station-wagon 3 -111011010100 peppery 3 -111011010100 Kit-Kat 3 -111011010100 subhuman 4 -111011010100 THA. 4 -111011010100 underproductive 4 -111011010100 KDI. 4 -111011010100 pre-determined 4 -111011010100 HBO. 4 -111011010100 later-model 4 -111011010100 private-plane 4 -111011010100 CNN. 4 -111011010100 Pritikin 4 -111011010100 expiration-related 4 -111011010100 non-asbestos 4 -111011010100 ITT. 4 -111011010100 RICO. 5 -111011010100 more-specific 5 -111011010100 cubistic 5 -111011010100 AMR. 5 -111011010100 more-attractive 5 -111011010100 MCA. 5 -111011010100 NEC. 5 -111011010100 unpledged 5 -111011010100 cinder 5 -111011010100 MITI. 6 -111011010100 nonearning 6 -111011010100 overgenerous 6 -111011010100 WPP. 6 -111011010100 NASA. 6 -111011010100 low-frequency 7 -111011010100 Seoul-based 7 -111011010100 safety-sensitive 7 -111011010100 inventory-related 7 -111011010100 ABC. 8 -111011010100 USG. 8 -111011010100 UAL. 9 -111011010100 non-earning 9 -111011010100 GE. 9 -111011010100 less-stringent 9 -111011010100 AMC. 10 -111011010100 TWA. 10 -111011010100 non-trade 10 -111011010100 CBS. 11 -111011010100 non-monetary 11 -111011010100 NATO. 11 -111011010100 boom-bust 11 -111011010100 hemorrhagic 12 -111011010100 RJR. 12 -111011010100 NBC. 12 -111011010100 inflation-linked 12 -111011010100 non-steel 13 -111011010100 EDS. 13 -111011010100 cataract 14 -111011010100 intercepting 14 -111011010100 OPEC. 16 -111011010100 TPA. 18 -111011010100 non-strategic 25 -111011010100 GM. 35 -111011010100 IBM. 44 -111011010100 certain 11687 -111011010100 AIDS. 102 -111011010101 accrued-interest 1 -111011010101 10,144 1 -111011010101 2,953 1 -111011010101 3,089 1 -111011010101 red-tiled 1 -111011010101 pipe-fabrication 1 -111011010101 aerospace-engineering 1 -111011010101 wood-cribbed 1 -111011010101 odd-sounding 1 -111011010101 dining-hall 1 -111011010101 weird-shaped 1 -111011010101 U.S.-Asia 1 -111011010101 inappropriate-sized 1 -111011010101 mobile-home-related 1 -111011010101 shareholder-enhancement 1 -111011010101 1,099,798 1 -111011010101 1,100,710 1 -111011010101 medium-lifting 1 -111011010101 nondiplomatic 1 -111011010101 oatmeal-colored 1 -111011010101 hard-to-staff 1 -111011010101 mini-photoprocessing 1 -111011010101 work-limiting 1 -111011010101 Medusoid 1 -111011010101 traffic-jammed 1 -111011010101 MAINTENANCE 1 -111011010101 commercial-perfect 1 -111011010101 11th-graders 1 -111011010101 short-handled 1 -111011010101 well-charted 1 -111011010101 city-regulated 1 -111011010101 CIA-created 1 -111011010101 single-site 1 -111011010101 union-dominated 1 -111011010101 company-underwritten 1 -111011010101 employee-communications 1 -111011010101 double-thick 1 -111011010101 institute-supported 1 -111011010101 squamous-cell 1 -111011010101 NASA-controlled 1 -111011010101 metal-lined 1 -111011010101 one-paper 1 -111011010101 incomplet 1 -111011010101 high-threat 1 -111011010101 English-sounding 1 -111011010101 2,674 1 -111011010101 2,348 1 -111011010101 slowg-rowth 1 -111011010101 more-authoritarian 1 -111011010101 used-bicycle 1 -111011010101 IBM-oriented 1 -111011010101 2,359 1 -111011010101 3,178 1 -111011010101 coal-firing 1 -111011010101 181.28 1 -111011010101 low-to-the-ground 1 -111011010101 oxidizable 1 -111011010101 long-prohibited 1 -111011010101 Russian-sounding 1 -111011010101 non-commodity 1 -111011010101 post-position 1 -111011010101 export-producing 1 -111011010101 satellite-programming 1 -111011010101 basemetal 1 -111011010101 bladdercell 1 -111011010101 29,566 1 -111011010101 reality-altering 1 -111011010101 unprofitabile 1 -111011010101 tiki 1 -111011010101 electricity-related 1 -111011010101 flipper-like 1 -111011010101 154.57 1 -111011010101 108.42 1 -111011010101 across-the-border 1 -111011010101 fasttrack 1 -111011010101 52.39 1 -111011010101 anti-BGH 1 -111011010101 25.51 1 -111011010101 apres-bowling 1 -111011010101 drought-weakened 1 -111011010101 groovy 1 -111011010101 back-care 1 -111011010101 official-sounding 1 -111011010101 228,876,684 1 -111011010101 stronger-growth 1 -111011010101 non-automobile 1 -111011010101 popout 1 -111011010101 M-word 1 -111011010101 professional-interest 1 -111011010101 intermediate-octane 1 -111011010101 flour-sack 1 -111011010101 Gladiator 1 -111011010101 upfor 1 -111011010101 stillfond 1 -111011010101 horse-related 1 -111011010101 maufacturing 1 -111011010101 trade-destruction 1 -111011010101 meadowlarks 1 -111011010101 pattern-recognition 2 -111011010101 ultra-pasteurized 2 -111011010101 GM-owned 2 -111011010101 early-spring 2 -111011010101 supraventricular 2 -111011010101 587.50 2 -111011010101 plutonium-powered 2 -111011010101 takeover-oriented 2 -111011010101 less-famous 2 -111011010101 low-security 2 -111011010101 mass-mailing 2 -111011010101 EPA-licensed 2 -111011010101 low-loss 2 -111011010101 grain-handling 2 -111011010101 malcontented 2 -111011010101 non-timber 2 -111011010101 short-stay 2 -111011010101 publicsector 2 -111011010101 AIDS-patient 2 -111011010101 emery 2 -111011010101 13,666 2 -111011010101 899,000 2 -111011010101 cloud-shrouded 2 -111011010101 large-block 2 -111011010101 1,597 2 -111011010101 ethnocentric 2 -111011010101 bomb-sniffing 2 -111011010101 unsinged 2 -111011010101 11,815 2 -111011010101 149,750 2 -111011010101 over-enthusiastic 2 -111011010101 teachers-union 2 -111011010101 single-payment 2 -111011010101 modest-income 2 -111011010101 ERROR 3 -111011010101 spruced-up 3 -111011010101 higher-valued 3 -111011010101 overactive 3 -111011010101 tax-driven 3 -111011010101 bomb-plant 3 -111011010101 under-30 3 -111011010101 job-application 3 -111011010101 22,200 3 -111011010101 advanced-degree 3 -111011010101 in-air 3 -111011010101 computer-operated 3 -111011010101 1,379 3 -111011010101 data-storing 3 -111011010101 acquiescent 3 -111011010101 air-courier 3 -111011010101 banking-deregulation 3 -111011010101 commodity-related 3 -111011010101 two-headed 3 -111011010101 bottom-of-the-barrel 3 -111011010101 often-criticized 3 -111011010101 low-earning 3 -111011010101 undiscounted 3 -111011010101 incentive-based 3 -111011010101 music-loving 3 -111011010101 odd-shaped 3 -111011010101 materials-related 3 -111011010101 low-cal 3 -111011010101 2,562 3 -111011010101 non-professional 3 -111011010101 non-Renault 3 -111011010101 basic-industry 3 -111011010101 400-odd 3 -111011010101 lesser-quality 3 -111011010101 stick-figure 3 -111011010101 profit-squeezing 3 -111011010101 wind-borne 3 -111011010101 yield-hungry 3 -111011010101 farm-worker 4 -111011010101 knowledge-intensive 4 -111011010101 luxury-box 4 -111011010101 food-poisoning 4 -111011010101 airline-related 4 -111011010101 low-performing 4 -111011010101 bricks-and-mortar 4 -111011010101 campaign-related 4 -111011010101 high-hazard 4 -111011010101 tsetse 4 -111011010101 non-Medicare 4 -111011010101 government-provided 4 -111011010101 interpretative 4 -111011010101 management-level 4 -111011010101 non-native 4 -111011010101 Comoran 4 -111011010101 hypertensive 4 -111011010101 unhip 4 -111011010101 American-Israeli 4 -111011010101 less-busy 4 -111011010101 women-owned 4 -111011010101 1983-1986 4 -111011010101 property-related 4 -111011010101 ill-designed 4 -111011010101 coal-producing 4 -111011010101 photo-taking 4 -111011010101 red-blood-cell 4 -111011010101 buy-and-sell 4 -111011010101 airline-scheduling 4 -111011010101 bank-related 4 -111011010101 better-paid 4 -111011010101 unaccounted-for 4 -111011010101 green-eyeshade 4 -111011010101 non-resident 4 -111011010101 school-based 4 -111011010101 inside-information 5 -111011010101 palm-sized 5 -111011010101 big-bucks 5 -111011010101 Europe-based 5 -111011010101 recombinant-DNA 5 -111011010101 high-bracket 5 -111011010101 inflation-wary 5 -111011010101 entertainment-related 5 -111011010101 drought-affected 5 -111011010101 trouser 5 -111011010101 non-affiliated 5 -111011010101 trade-distorting 5 -111011010101 business-ethics 5 -111011010101 land-related 5 -111011010101 consumer-backed 5 -111011010101 copper-using 5 -111011010101 high-spending 5 -111011010101 soulless 5 -111011010101 Evanite 5 -111011010101 already-weak 5 -111011010101 Greco-Roman 5 -111011010101 antibacterial 5 -111011010101 local-market 5 -111011010101 dividend-oriented 6 -111011010101 paid-for 6 -111011010101 unmade 6 -111011010101 video-related 6 -111011010101 unimagined 6 -111011010101 exisiting 6 -111011010101 domestic-oriented 6 -111011010101 made-to-order 6 -111011010101 non-Marxist 7 -111011010101 intersecting 7 -111011010101 more-profitable 7 -111011010101 auto-related 7 -111011010101 late-arriving 7 -111011010101 lower-tier 7 -111011010101 retirement-plan 7 -111011010101 nonmanagement 7 -111011010101 noblesse 8 -111011010101 home-country 8 -111011010101 frequent-stay 8 -111011010101 nonutility 8 -111011010101 small-ticket 8 -111011010101 non-insurance 8 -111011010101 unallocated 9 -111011010101 ever-rising 9 -111011010101 interest-paying 9 -111011010101 state-level 9 -111011010101 food-related 9 -111011010101 nonbanking 9 -111011010101 oil-supply 10 -111011010101 inflation-sensitive 10 -111011010101 less-sophisticated 10 -111011010101 nonagricultural 10 -111011010101 foreign-held 10 -111011010101 non-tax 11 -111011010101 high-rate 12 -111011010101 small-lot 12 -111011010101 application-specific 12 -111011010101 HUD-related 12 -111011010101 tax-paying 13 -111011010101 unreimbursed 13 -111011010101 unrated 13 -111011010101 double-A-rated 13 -111011010101 less-profitable 13 -111011010101 Argentinian 14 -111011010101 nonprofessional 14 -111011010101 1984-1986 14 -111011010101 highest-quality 15 -111011010101 menial 16 -111011010101 deep-pocketed 16 -111011010101 job-hunting 16 -111011010101 import-battered 17 -111011010101 expansion-minded 17 -111011010101 unsubsidized 18 -111011010101 top-grade 19 -111011010101 old-age 21 -111011010101 intercompany 21 -111011010101 W-2 22 -111011010101 higher-cost 22 -111011010101 big-company 22 -111011010101 hard-to-get 23 -111011010101 czarist 24 -111011010101 emergency-room 24 -111011010101 sundry 24 -111011010101 out-of-the-way 25 -111011010101 dollar-based 25 -111011010101 oil-related 25 -111011010101 higher-margin 26 -111011010101 index-arbitrage 27 -111011010101 nonessential 29 -111011010101 dual-class 29 -111011010101 undated 30 -111011010101 non-traditional 30 -111011010101 export-related 30 -111011010101 up-and-coming 31 -111011010101 out-of-favor 32 -111011010101 consumer-related 33 -111011010101 drought-stricken 33 -111011010101 off-the-shelf 33 -111011010101 in-state 33 -111011010101 eyewitness 34 -111011010101 income-producing 35 -111011010101 ancillary 36 -111011010101 in-store 38 -111011010101 health-related 44 -111011010101 add-on 44 -111011010101 out-of-town 45 -111011010101 higher-yielding 49 -111011010101 absentee 49 -111011010101 triple-A-rated 50 -111011010101 odd-lot 53 -111011010101 upper-income 64 -111011010101 interest-bearing 65 -111011010101 PCW 66 -111011010101 unscrupulous 70 -111011010101 overlapping 82 -111011010101 unreported 84 -111011010101 small-company 92 -111011010101 takeover-related 97 -111011010101 high-income 99 -111011010101 assorted 105 -111011010101 unregistered 109 -111011010101 entry-level 114 -111011010101 offending 124 -111011010101 unused 136 -111011010101 high-cost 146 -111011010101 incoming 160 -111011010101 parental 182 -111011010101 uninsured 194 -111011010101 AIDS-related 205 -111011010101 respective 235 -111011010101 varying 263 -111011010101 unpaid 323 -111011010101 ordinary 976 -111011010101 existing 3620 -111011010101 various 4083 -111011010101 individual 4376 -1110110101100 waterplane 1 -1110110101100 44-page 1 -1110110101100 Espectacular 1 -1110110101100 burger-and-fries 1 -1110110101100 jewlery 1 -1110110101100 750,000-square-foot 1 -1110110101100 main-growing 1 -1110110101100 Claridge-related 1 -1110110101100 memento-crammed 1 -1110110101100 fraudulent-shelter 1 -1110110101100 trash-filled 1 -1110110101100 121-story 1 -1110110101100 RENAMO-held 1 -1110110101100 marriage-match 1 -1110110101100 energy-dependant 1 -1110110101100 welfare-supported 1 -1110110101100 17th-floor 1 -1110110101100 publisher-owned 1 -1110110101100 lumber-company 1 -1110110101100 Whitehall-chosen 1 -1110110101100 Disciple-controlled 1 -1110110101100 too-lavish 1 -1110110101100 34-foot 1 -1110110101100 structural-engineering 1 -1110110101100 black-targeted 1 -1110110101100 Democrat-appointed 1 -1110110101100 drug-chase 1 -1110110101100 copyright-protected 1 -1110110101100 Chun-related 1 -1110110101100 strifetorn 1 -1110110101100 flood-affected 1 -1110110101100 higher-growth 1 -1110110101100 volume-sensitive 1 -1110110101100 racketeering-related 1 -1110110101100 hot-spring 1 -1110110101100 slum-clearance 1 -1110110101100 250-unit 1 -1110110101100 import-sales 1 -1110110101100 player-movement 1 -1110110101100 Digital-compatible 1 -1110110101100 AdWeek 1 -1110110101100 once-disputed 1 -1110110101100 Brookhollow 1 -1110110101100 production-related 1 -1110110101100 36-floor 1 -1110110101100 A340-300 1 -1110110101100 highest-need 1 -1110110101100 muststock 1 -1110110101100 contract-fraud 1 -1110110101100 Benetton-approved 1 -1110110101100 Stikapig 1 -1110110101100 fastest-moving 1 -1110110101100 non-image 1 -1110110101100 body-image 1 -1110110101100 more-standard 1 -1110110101100 low-competition 1 -1110110101100 semiarid 1 -1110110101100 American-market 1 -1110110101100 20-unit 1 -1110110101100 movie-processing 1 -1110110101100 asbestosinjury 1 -1110110101100 71-story 1 -1110110101100 Propa 1 -1110110101100 disease-based 1 -1110110101100 consumer-aid 1 -1110110101100 higher-asset 1 -1110110101100 development-park 1 -1110110101100 data-voice 1 -1110110101100 rebel-occupied 1 -1110110101100 RENAMO-controlled 1 -1110110101100 1,819 1 -1110110101100 Overdrive 1 -1110110101100 Pentagon-related 1 -1110110101100 FBI-related 1 -1110110101100 pesticide-poisoning 1 -1110110101100 Visao 1 -1110110101100 cable-connected 1 -1110110101100 12th-floor 1 -1110110101100 custom-framing 1 -1110110101100 computerizes 1 -1110110101100 lesser-level-of-care 1 -1110110101100 policy-study 1 -1110110101100 cola-war 1 -1110110101100 fiberoptics 1 -1110110101100 square-meal 1 -1110110101100 Conservative-led 1 -1110110101100 resource-producing 1 -1110110101100 often-corrupt 1 -1110110101100 44,757 1 -1110110101100 abestos-related 1 -1110110101100 250-year-old 1 -1110110101100 more-populous 1 -1110110101100 non-beef 1 -1110110101100 Levine/Boesky 1 -1110110101100 four-square-mile 1 -1110110101100 basic-technology 1 -1110110101100 high-need 1 -1110110101100 Western-connected 1 -1110110101100 market-sweep 1 -1110110101100 Galanis-related 1 -1110110101100 mustier 1 -1110110101100 240,000-square-foot 1 -1110110101100 academic-scientific 1 -1110110101100 overearnest 1 -1110110101100 111,000-square-foot 1 -1110110101100 nonforested 1 -1110110101100 sugar-and-spice 1 -1110110101100 PayPhone 1 -1110110101100 murkiest 1 -1110110101100 basic-skills 1 -1110110101100 non-primary 1 -1110110101100 Norwegian-flag 1 -1110110101100 on-staff 1 -1110110101100 brown-and-green 1 -1110110101100 UMNO-controlled 1 -1110110101100 national-constituency 1 -1110110101100 old-law 1 -1110110101100 mishandle 1 -1110110101100 restaurant/brew 1 -1110110101100 nonequity 1 -1110110101100 Jordan-Israeli 1 -1110110101100 fish-producing 1 -1110110101100 gene-research 1 -1110110101100 pension-funded 1 -1110110101100 58-story 1 -1110110101100 225,000-square-foot 1 -1110110101100 drive-landing 1 -1110110101100 coat-check 1 -1110110101100 Italian-design 1 -1110110101100 900-room 1 -1110110101100 plant-care 1 -1110110101100 72-story 1 -1110110101100 riot-torn 1 -1110110101100 muscle-wasting 1 -1110110101100 hot-bonded 1 -1110110101100 trail-side 1 -1110110101100 Off-Road 1 -1110110101100 lantern-decked 1 -1110110101100 790-foot 1 -1110110101100 hard-goods 1 -1110110101100 rurul 1 -1110110101100 employee-injury 1 -1110110101100 64,000-square-foot 1 -1110110101100 non-Slavic 1 -1110110101100 244-unit 1 -1110110101100 unmowed 1 -1110110101100 race-bias 1 -1110110101100 domestic/economic 1 -1110110101100 less-complicated 1 -1110110101100 broad-line 1 -1110110101100 gray-glass 1 -1110110101100 72-unit 1 -1110110101100 mouth-filling 1 -1110110101100 2.2-million-square-foot 1 -1110110101100 chronic-call 1 -1110110101100 cafe-verite 1 -1110110101100 Kuwaiti-backed 1 -1110110101100 130-lawyer 1 -1110110101100 hospitality-industry 1 -1110110101100 six-bottle 1 -1110110101100 fourroom 1 -1110110101100 Harrowsmith 1 -1110110101100 shark-like 1 -1110110101100 inheritable 1 -1110110101100 flight-critical 1 -1110110101100 panic-stop 1 -1110110101100 711,000-square-foot 1 -1110110101100 eye-destroying 1 -1110110101100 steering-motor 1 -1110110101100 non-merchandise 1 -1110110101100 worm-producing 1 -1110110101100 medical-licensing 1 -1110110101100 non-gallery 1 -1110110101100 SportStyle 1 -1110110101100 Jordonelle 1 -1110110101100 blood-system 1 -1110110101100 corngrowing 1 -1110110101100 2,400-acre 2 -1110110101100 orange-producing 2 -1110110101100 Dignity-sponsored 2 -1110110101100 seventh-century 2 -1110110101100 jerry-rigged 2 -1110110101100 38,000-barrel-a-day 2 -1110110101100 30-man 2 -1110110101100 paperwhite 2 -1110110101100 more-distant 2 -1110110101100 insect-borne 2 -1110110101100 516-room 2 -1110110101100 272-unit 2 -1110110101100 non-vaccinated 2 -1110110101100 non-narrative 2 -1110110101100 plant-breeding 2 -1110110101100 jumped-up 2 -1110110101100 mountain-ringed 2 -1110110101100 scalloped 2 -1110110101100 must-read 2 -1110110101100 seafront 2 -1110110101100 plate-shaped 2 -1110110101100 fruiting 2 -1110110101100 white-collar-crime 2 -1110110101100 150-story 2 -1110110101100 Druze-controlled 2 -1110110101100 untargeted 2 -1110110101100 policyholder-owned 2 -1110110101100 higher-security 2 -1110110101100 long-barreled 2 -1110110101100 75-foot 2 -1110110101100 102-room 2 -1110110101100 5,000-room 2 -1110110101100 tourist-conscious 2 -1110110101100 special-effects-laden 2 -1110110101100 stock-quotation 2 -1110110101100 insurance-coverage 2 -1110110101100 special-event 2 -1110110101100 yellow-and-white 2 -1110110101100 parochial-school 2 -1110110101100 sex-addled 2 -1110110101100 fleet-sales 2 -1110110101100 white-elephant 2 -1110110101100 Disney-related 2 -1110110101100 helicopter-borne 2 -1110110101100 military-procurement 2 -1110110101100 sex-harassment 2 -1110110101100 TV-show 2 -1110110101100 600-square-foot 2 -1110110101100 Ethiopian-controlled 2 -1110110101100 medical-industry 2 -1110110101100 one-slide 2 -1110110101100 conference-call 2 -1110110101100 city-hall 2 -1110110101100 Oiga 2 -1110110101100 nonclassified 2 -1110110101100 city-run 2 -1110110101100 food-preparation 2 -1110110101100 4,500-square-foot 2 -1110110101100 metal-mesh 2 -1110110101100 blankety-blank 2 -1110110101100 FDIC-controlled 2 -1110110101100 already-developed 2 -1110110101100 warbird 2 -1110110101100 pesticide-use 2 -1110110101100 middleclass 2 -1110110101100 cholesterol-related 2 -1110110101100 multiple-use 2 -1110110101100 neuromuscular 2 -1110110101100 company-controlled 2 -1110110101100 high-exposure 2 -1110110101100 non-metropolitan 2 -1110110101100 multiethnic 2 -1110110101100 28-inch 2 -1110110101100 downtown-Tokyo 2 -1110110101100 mass-injury 2 -1110110101100 ultra-modern 2 -1110110101100 frontier-era 2 -1110110101100 glass-and-steel 2 -1110110101100 all-suites 2 -1110110101100 open-bar 2 -1110110101100 non-speech 2 -1110110101100 Sacramento-area 2 -1110110101100 noncompeting 2 -1110110101100 car-buff 2 -1110110101100 three-foot-high 2 -1110110101100 nerve-cell 2 -1110110101100 steel-and-glass 2 -1110110101100 inshore 2 -1110110101100 one-chair 2 -1110110101100 water-stained 2 -1110110101100 multivendor 2 -1110110101100 valorous 2 -1110110101100 mission-style 2 -1110110101100 soot-covered 2 -1110110101100 Asian-language 2 -1110110101100 central-city 2 -1110110101100 mixed-doubles 2 -1110110101100 toilet-seat 2 -1110110101100 4,355 2 -1110110101100 cocoa-producing 2 -1110110101100 slushy 2 -1110110101100 39-story 2 -1110110101100 non-acute 2 -1110110101100 new-high 2 -1110110101100 Chinese-owned 2 -1110110101100 phone-worker 2 -1110110101100 often-inefficient 2 -1110110101100 conservation-minded 2 -1110110101100 nitrogen-oxygen 2 -1110110101100 pro-capitalist 2 -1110110101100 enteric 3 -1110110101100 Reno-based 3 -1110110101100 horsebreeding 3 -1110110101100 cancer-research 3 -1110110101100 vacuum-tube 3 -1110110101100 disproportionate-share 3 -1110110101100 25-story 3 -1110110101100 Punjabi 3 -1110110101100 heart-failure 3 -1110110101100 advertiser-sponsored 3 -1110110101100 low-turnout 3 -1110110101100 salmon-colored 3 -1110110101100 pre-rock 3 -1110110101100 capital-rich 3 -1110110101100 financial-district 3 -1110110101100 Brazil-based 3 -1110110101100 20-lawyer 3 -1110110101100 noncriminal 3 -1110110101100 rice-producing 3 -1110110101100 109-year-old 3 -1110110101100 2,493 3 -1110110101100 grain-elevator 3 -1110110101100 46-story 3 -1110110101100 rear-window 3 -1110110101100 drug-abusing 3 -1110110101100 600-room 3 -1110110101100 600,000-square-foot 3 -1110110101100 brother-sister 3 -1110110101100 Lebanese-born 3 -1110110101100 daily-wear 3 -1110110101100 west-side 3 -1110110101100 non-safety 3 -1110110101100 beachside 3 -1110110101100 Fenway 3 -1110110101100 gas-rich 3 -1110110101100 35-story 3 -1110110101100 midtown-Manhattan 3 -1110110101100 stock-analysis 3 -1110110101100 Soviet-equipped 3 -1110110101100 tuxedo-rental 3 -1110110101100 chromatic 3 -1110110101100 heavy-manufacturing 3 -1110110101100 network-owned 3 -1110110101100 crustacean 3 -1110110101100 life-destroying 3 -1110110101100 brick-and-mortar 3 -1110110101100 dogmeat 3 -1110110101100 equal-access 3 -1110110101100 red-and-black 3 -1110110101100 fast-lane 3 -1110110101100 detente-type 3 -1110110101100 Korean-language 3 -1110110101100 less-regulated 3 -1110110101100 paper-mill 3 -1110110101100 wide-screen 3 -1110110101100 riparian 3 -1110110101100 70-person 3 -1110110101100 fishing-tackle 3 -1110110101100 current-affairs 3 -1110110101100 nuclear-weapons-free 3 -1110110101100 1,753 3 -1110110101100 3,562 3 -1110110101100 agave 3 -1110110101100 bond-bank 4 -1110110101100 Flemish-speaking 4 -1110110101100 innercity 4 -1110110101100 39th-floor 4 -1110110101100 Portuguese-language 4 -1110110101100 semi-arid 4 -1110110101100 well-lighted 4 -1110110101100 colonial-style 4 -1110110101100 twice-monthly 4 -1110110101100 fecund 4 -1110110101100 4,000-room 4 -1110110101100 en-route 4 -1110110101100 grand-scale 4 -1110110101100 high-turnover 4 -1110110101100 high-ticket 4 -1110110101100 compacted 4 -1110110101100 oil-soaked 4 -1110110101100 pro-free-trade 4 -1110110101100 light-infantry 4 -1110110101100 tree-shaded 4 -1110110101100 shallow-water 4 -1110110101100 prep-school 4 -1110110101100 innocent-looking 4 -1110110101100 Tremont 4 -1110110101100 felonious 4 -1110110101100 shoulder-held 4 -1110110101100 customer-owned 4 -1110110101100 sign-language 4 -1110110101100 non-dominant 4 -1110110101100 archetypical 4 -1110110101100 mammary 4 -1110110101100 pink-collar 4 -1110110101100 herbaceous 4 -1110110101100 well-practiced 4 -1110110101100 41-story 4 -1110110101100 legal-aid 4 -1110110101100 one-horse 4 -1110110101100 smaller-sized 4 -1110110101100 fire-department 4 -1110110101100 commercial-industrial 4 -1110110101100 job-hungry 4 -1110110101100 sex-oriented 4 -1110110101100 Labor-led 4 -1110110101100 bigticket 4 -1110110101100 timeworn 4 -1110110101100 90-seat 4 -1110110101100 smoggy 4 -1110110101100 43-story 4 -1110110101100 private-duty 4 -1110110101100 military-controlled 4 -1110110101100 anti-West 4 -1110110101100 12-story 4 -1110110101100 pyramid-shaped 5 -1110110101100 imitative 5 -1110110101100 single-room-occupancy 5 -1110110101100 24-story 5 -1110110101100 members-only 5 -1110110101100 information-based 5 -1110110101100 non-productive 5 -1110110101100 Denver-area 5 -1110110101100 commercial-airline 5 -1110110101100 non-sports 5 -1110110101100 middle-priced 5 -1110110101100 steel-using 5 -1110110101100 controlled-circulation 5 -1110110101100 blood-red 5 -1110110101100 long-ailing 5 -1110110101100 tri-state 5 -1110110101100 non-merger 5 -1110110101100 U.S.-registered 5 -1110110101100 70-story 5 -1110110101100 14-story 5 -1110110101100 soft-core 5 -1110110101100 64-page 5 -1110110101100 30,000-square-foot 5 -1110110101100 search-and-rescue 5 -1110110101100 small-screen 5 -1110110101100 blood-bank 5 -1110110101100 Gutenberg 5 -1110110101100 sugar-growing 5 -1110110101100 niche-market 5 -1110110101100 near-shore 5 -1110110101100 40-story 5 -1110110101100 greyhound 5 -1110110101100 member-firm 5 -1110110101100 seedless 5 -1110110101100 heavy-oil 5 -1110110101100 fifth-floor 6 -1110110101100 foodstuff 6 -1110110101100 down-at-the-heels 6 -1110110101100 personal-finance 6 -1110110101100 Marcos-era 6 -1110110101100 300-seat 6 -1110110101100 burnt-out 6 -1110110101100 nine-hole 6 -1110110101100 Andalusian 6 -1110110101100 nuclear-weapon 6 -1110110101100 quick-service 6 -1110110101100 basic-research 6 -1110110101100 gynecologic 6 -1110110101100 defense-oriented 6 -1110110101100 postgraduate 6 -1110110101100 U-shaped 6 -1110110101100 34-story 6 -1110110101100 school-board 6 -1110110101100 consumer-owned 6 -1110110101100 government-created 6 -1110110101100 early-childhood 6 -1110110101100 more-traditional 6 -1110110101100 hard-luck 6 -1110110101100 fortresslike 6 -1110110101100 junior-high 6 -1110110101100 lower-ranked 6 -1110110101100 half-built 6 -1110110101100 energy-dependent 6 -1110110101100 unbuilt 6 -1110110101100 day-old 7 -1110110101100 store-bought 7 -1110110101100 fourth-floor 7 -1110110101100 42-story 7 -1110110101100 medium-security 7 -1110110101100 lawless 7 -1110110101100 more-competitive 7 -1110110101100 remotest 7 -1110110101100 food-product 7 -1110110101100 family-style 7 -1110110101100 sloe-eyed 7 -1110110101100 400-room 7 -1110110101100 Hispanic-owned 7 -1110110101100 blood-borne 7 -1110110101100 art-deco 7 -1110110101100 giant-screen 7 -1110110101100 10-acre 7 -1110110101100 seventh-floor 7 -1110110101100 state-licensed 7 -1110110101100 flight-attendant 7 -1110110101100 resource-based 7 -1110110101100 Dallas-area 7 -1110110101100 state-based 7 -1110110101100 antebellum 7 -1110110101100 less-efficient 7 -1110110101100 300-room 7 -1110110101100 gull-wing 7 -1110110101100 large-size 7 -1110110101100 paneled 8 -1110110101100 Minneapolis-area 8 -1110110101100 spring-training 8 -1110110101100 ocean-front 8 -1110110101100 alpine 8 -1110110101100 prefectural 8 -1110110101100 baggage-claim 8 -1110110101100 galactic 8 -1110110101100 adrenal 8 -1110110101100 mass-media 8 -1110110101100 2,487 8 -1110110101100 high-traffic 8 -1110110101100 Houston-area 8 -1110110101100 12,000-acre 8 -1110110101100 orange-growing 8 -1110110101100 military-dominated 8 -1110110101100 nonreligious 9 -1110110101100 cocoa-growing 9 -1110110101100 mass-circulation 9 -1110110101100 church-sponsored 9 -1110110101100 wine-making 9 -1110110101100 white-dominated 9 -1110110101100 non-supervisory 9 -1110110101100 loan-production 9 -1110110101100 corporate-owned 9 -1110110101100 plain-paper 9 -1110110101100 cold-weather 9 -1110110101100 base-metal 9 -1110110101100 Montreal-area 9 -1110110101100 Dutch-speaking 9 -1110110101100 citrus-growing 9 -1110110101100 non-market 9 -1110110101100 dead-mail 9 -1110110101100 90-degree 9 -1110110101100 better-heeled 9 -1110110101100 car-haul 9 -1110110101100 riverside 10 -1110110101100 99-cent 10 -1110110101100 non-commercial 10 -1110110101100 pro-Israeli 10 -1110110101100 all-sports 10 -1110110101100 20-inch 10 -1110110101100 housing-related 11 -1110110101100 low-lying 11 -1110110101100 left-of-center 11 -1110110101100 drive-through 11 -1110110101100 French-language 11 -1110110101100 four-story 11 -1110110101100 four-bedroom 11 -1110110101100 60-story 11 -1110110101100 state-financed 11 -1110110101100 19-inch 11 -1110110101100 taxpayer-financed 11 -1110110101100 nonunionized 11 -1110110101100 botanical 11 -1110110101100 consumerist 12 -1110110101100 hot-pot 12 -1110110101100 non-department 12 -1110110101100 Miami-area 12 -1110110101100 unaccredited 12 -1110110101100 Japanese-language 12 -1110110101100 blood-clotting 12 -1110110101100 high-altitude 12 -1110110101100 ground-floor 13 -1110110101100 Mexican-style 13 -1110110101100 Mexican-food 13 -1110110101100 more-open 13 -1110110101100 European-based 13 -1110110101100 warm-water 13 -1110110101100 war-ravaged 13 -1110110101100 Philadelphia-area 14 -1110110101100 non-UAW 14 -1110110101100 improvisational 14 -1110110101100 marshy 14 -1110110101100 Chinese-language 14 -1110110101100 budget-conscious 14 -1110110101100 one-story 14 -1110110101100 four-room 14 -1110110101100 communicable 14 -1110110101100 land-grant 15 -1110110101100 republican 15 -1110110101100 death-row 15 -1110110101100 micro 16 -1110110101100 two-room 16 -1110110101100 red-brick 16 -1110110101100 earthen 16 -1110110101100 home-state 17 -1110110101100 sugar-cane 17 -1110110101100 post-secondary 17 -1110110101100 beachfront 18 -1110110101100 comic-book 18 -1110110101100 Masonic 18 -1110110101100 multicolored 19 -1110110101100 three-star 19 -1110110101100 sit-down 19 -1110110101100 12-inch 19 -1110110101100 low-fare 19 -1110110101100 second-floor 19 -1110110101100 obsessive-compulsive 19 -1110110101100 quasi-governmental 20 -1110110101100 minimum-security 20 -1110110101100 male-dominated 20 -1110110101100 senior-citizen 20 -1110110101100 Reagan-appointed 20 -1110110101100 ornamental 21 -1110110101100 five-star 23 -1110110101100 grassy 23 -1110110101100 Boston-area 23 -1110110101100 bridal 24 -1110110101100 city-owned 24 -1110110101100 lymph 25 -1110110101100 one-bedroom 25 -1110110101100 nonnuclear 25 -1110110101100 cotton-growing 26 -1110110101100 two-bedroom 27 -1110110101100 ancestral 27 -1110110101100 low-rent 27 -1110110101100 non-government 27 -1110110101100 three-bedroom 28 -1110110101100 drive-in 28 -1110110101100 regular-season 28 -1110110101100 full-court 28 -1110110101100 first-run 29 -1110110101100 plainclothes 29 -1110110101100 metro 31 -1110110101100 Japanese-style 32 -1110110101100 general-interest 32 -1110110101100 run-down 33 -1110110101100 government-run 33 -1110110101100 major-league 33 -1110110101100 collegiate 34 -1110110101100 liberal-arts 34 -1110110101100 faraway 35 -1110110101100 outlying 36 -1110110101100 Chicago-area 36 -1110110101100 faster-growing 36 -1110110101100 one-room 36 -1110110101100 minor-league 38 -1110110101100 coffee-growing 38 -1110110101100 wooded 39 -1110110101100 Japanese-owned 39 -1110110101100 present-day 39 -1110110101100 medical-malpractice 40 -1110110101100 pediatric 40 -1110110101100 mountainous 42 -1110110101100 big-league 43 -1110110101100 seaside 45 -1110110101100 Siberian 48 -1110110101100 stock-exchange 49 -1110110101100 multistate 50 -1110110101100 mom-and-pop 51 -1110110101100 catalytic 51 -1110110101100 acute-care 52 -1110110101100 tony 53 -1110110101100 rogue 54 -1110110101100 pro-Israel 56 -1110110101100 high-growth 56 -1110110101100 mass-market 63 -1110110101100 non-bank 65 -1110110101100 government-controlled 73 -1110110101100 big-city 74 -1110110101100 top-rated 76 -1110110101100 investor-owned 82 -1110110101100 high-rise 82 -1110110101100 posh 85 -1110110101100 lower-level 85 -1110110101100 big-name 87 -1110110101100 non-union 88 -1110110101100 public-housing 96 -1110110101100 small-town 98 -1110110101100 miniature 110 -1110110101100 Spanish-language 137 -1110110101100 big-ticket 137 -1110110101100 state-chartered 139 -1110110101100 English-language 142 -1110110101100 outer 166 -1110110101100 full-service 183 -1110110101100 19th-century 188 -1110110101100 tropical 195 -1110110101100 state-run 202 -1110110101100 coastal 219 -1110110101100 psychiatric 233 -1110110101100 nonunion 238 -1110110101100 metropolitan 396 -1110110101100 provincial 444 -1110110101100 mobile 472 -1110110101100 digital 502 -1110110101100 suburban 585 -1110110101100 downtown 788 -1110110101100 civilian 790 -1110110101100 urban 831 -1110110101100 rural 1084 -1110110101100 local 8430 -1110110101100 regional 3347 -1110110101101 this-side-of-the-rainbow 1 -1110110101101 salvific 1 -1110110101101 semi-liberated 1 -1110110101101 post-apocalyptic 1 -1110110101101 build-to-suit 1 -1110110101101 trans-Soviet 1 -1110110101101 desk-published 1 -1110110101101 floor-length 1 -1110110101101 Denver-bound 1 -1110110101101 modern-jazz 1 -1110110101101 196-page 1 -1110110101101 furniture-industry 1 -1110110101101 stall-prone 1 -1110110101101 Sandinista-built 1 -1110110101101 nonelastic 1 -1110110101101 trade-led 1 -1110110101101 single-event 1 -1110110101101 Cree 1 -1110110101101 100-volt 1 -1110110101101 basic-business-skills 1 -1110110101101 personal-property 1 -1110110101101 human-capital 1 -1110110101101 Bahamian-based 1 -1110110101101 6,000-home 1 -1110110101101 lantern-lit 1 -1110110101101 semi-barbaric 1 -1110110101101 Swiss-registered 1 -1110110101101 medical-product 1 -1110110101101 tract-mansion 1 -1110110101101 this-season 1 -1110110101101 receiving-room 1 -1110110101101 multitrillion-yen 1 -1110110101101 35-doctor 1 -1110110101101 insitutional 1 -1110110101101 toric 1 -1110110101101 weight-watchers 1 -1110110101101 Sumerian 1 -1110110101101 long-film 1 -1110110101101 one-company 1 -1110110101101 ninth-move 1 -1110110101101 MIGA-insured 1 -1110110101101 patroldog 1 -1110110101101 rocket-engine 1 -1110110101101 tree-dotted 1 -1110110101101 color-obsessed 1 -1110110101101 corn-and-beans 1 -1110110101101 office-worker 1 -1110110101101 night-darkened 1 -1110110101101 71-acre 1 -1110110101101 5.1-mile 1 -1110110101101 post-riot 1 -1110110101101 too-broad 1 -1110110101101 Fragonard-like 1 -1110110101101 Syrianheld 1 -1110110101101 triannual 1 -1110110101101 sewage-system 1 -1110110101101 13-star 1 -1110110101101 history-reenactment 1 -1110110101101 food-shop 1 -1110110101101 matriarchal 1 -1110110101101 forest-resource 1 -1110110101101 computer-tape 1 -1110110101101 Harcourt-built 1 -1110110101101 once-picturesque 1 -1110110101101 equity-incentive 1 -1110110101101 groundwater-contamination 1 -1110110101101 rain-forested 1 -1110110101101 photograph-like 1 -1110110101101 postimpressionist 1 -1110110101101 composite-wing 1 -1110110101101 farm-safety 1 -1110110101101 once-distinguished 1 -1110110101101 Russian-emigre 1 -1110110101101 1,600-home 1 -1110110101101 colonialistic 1 -1110110101101 smoke-choked 1 -1110110101101 blood-sucking 1 -1110110101101 minority-group-owned 1 -1110110101101 6,000-volume 1 -1110110101101 reel-to-reel 1 -1110110101101 54-partner 1 -1110110101101 30-foot-wide 1 -1110110101101 Corp.-backed 1 -1110110101101 defense-waste 1 -1110110101101 studio/theme 1 -1110110101101 British-government-bond 1 -1110110101101 20-block 1 -1110110101101 CREF-TIAA 1 -1110110101101 A-330s-a 1 -1110110101101 false-flag 1 -1110110101101 one-street 1 -1110110101101 unattributable 2 -1110110101101 radon-reduction 2 -1110110101101 beef-marketing 2 -1110110101101 32,600 2 -1110110101101 poster-sized 2 -1110110101101 Philistine 2 -1110110101101 sex-appeal 2 -1110110101101 non-membership 2 -1110110101101 rebel-controlled 2 -1110110101101 river-front 2 -1110110101101 worm-farming 2 -1110110101101 handwriting-analysis 2 -1110110101101 post-high 2 -1110110101101 cookery 2 -1110110101101 B-grade 2 -1110110101101 finance-related 2 -1110110101101 regulation-size 2 -1110110101101 tax-administration 2 -1110110101101 chainstore 2 -1110110101101 Miamibased 2 -1110110101101 50-inch 2 -1110110101101 taxexempt 2 -1110110101101 shipwrecked 2 -1110110101101 business-education 2 -1110110101101 less-celebrated 2 -1110110101101 radio-jamming 2 -1110110101101 Abdus 2 -1110110101101 crop-producing 2 -1110110101101 newspaper-funded 2 -1110110101101 car-hauling 2 -1110110101101 foundation-owned 2 -1110110101101 subsidy-free 2 -1110110101101 Rendezvous 2 -1110110101101 retailing-industry 2 -1110110101101 50-month 2 -1110110101101 free-roaming 2 -1110110101101 profitmaking 2 -1110110101101 multispecialty 2 -1110110101101 less-qualified 2 -1110110101101 fantasy-sports 2 -1110110101101 broad-spectrum 2 -1110110101101 once-famous 2 -1110110101101 single-volume 2 -1110110101101 business-government 2 -1110110101101 Swiss-German 2 -1110110101101 racketeering-influenced 2 -1110110101101 discrimination-free 2 -1110110101101 deepwater 2 -1110110101101 lawschool 2 -1110110101101 white-bearded 2 -1110110101101 still-unexplained 2 -1110110101101 degree-granting 3 -1110110101101 well-executed 3 -1110110101101 less-prominent 3 -1110110101101 duck-hunting 3 -1110110101101 bank-affiliated 3 -1110110101101 disobedient 3 -1110110101101 beer-industry 3 -1110110101101 mirror-image 3 -1110110101101 religious-affiliated 3 -1110110101101 commercial-real-estate 3 -1110110101101 colo-rectal 3 -1110110101101 metals-industry 3 -1110110101101 bonafide 3 -1110110101101 service-producing 3 -1110110101101 retirement-center 3 -1110110101101 modern-dance 3 -1110110101101 higher-caliber 3 -1110110101101 small-asset 3 -1110110101101 minimall 3 -1110110101101 gunslinging 3 -1110110101101 sybaritic 3 -1110110101101 serve-and-volley 3 -1110110101101 homestate 3 -1110110101101 value-adding 3 -1110110101101 female-dominated 3 -1110110101101 tow-truck 3 -1110110101101 photo-industry 3 -1110110101101 cheap-labor 3 -1110110101101 Boesky-controlled 3 -1110110101101 organ-transplant 3 -1110110101101 public-enterprise 3 -1110110101101 county-wide 3 -1110110101101 15-3 3 -1110110101101 hightech 4 -1110110101101 farm-machinery 4 -1110110101101 retirement-community 4 -1110110101101 Kaskel-led 4 -1110110101101 Barbados-based 4 -1110110101101 go-along 4 -1110110101101 Valencian 4 -1110110101101 land-sale 4 -1110110101101 Burgundian 4 -1110110101101 90-second 4 -1110110101101 hedged-index 4 -1110110101101 less-friendly 4 -1110110101101 insulin-dependent 4 -1110110101101 company-funded 4 -1110110101101 set-price 4 -1110110101101 new-music 4 -1110110101101 wine-tasting 4 -1110110101101 Freezer 4 -1110110101101 travel-industry 4 -1110110101101 Unitarian 4 -1110110101101 curb-side 4 -1110110101101 major-market 4 -1110110101101 car-service 4 -1110110101101 low-capital 4 -1110110101101 military-related 4 -1110110101101 female-owned 4 -1110110101101 goggle-eyed 4 -1110110101101 monied 4 -1110110101101 Minstar-led 5 -1110110101101 software-industry 5 -1110110101101 mouth-to-mouth 5 -1110110101101 new-venture 5 -1110110101101 debtor-in-possession 5 -1110110101101 child-custody 5 -1110110101101 nonconventional 5 -1110110101101 IRA-type 5 -1110110101101 non-Indian 5 -1110110101101 human-tissue 5 -1110110101101 European-Arab 5 -1110110101101 landowning 5 -1110110101101 high-return 5 -1110110101101 state-administered 5 -1110110101101 classical-music 6 -1110110101101 pakeha 6 -1110110101101 luxury-hotel 6 -1110110101101 car-marketing 6 -1110110101101 bribe-taking 6 -1110110101101 currency-options 6 -1110110101101 unreturned 6 -1110110101101 male-female 6 -1110110101101 business-backed 6 -1110110101101 artesian 6 -1110110101101 Bass-led 6 -1110110101101 make-work 7 -1110110101101 Brahmin 7 -1110110101101 nonmanufacturing 7 -1110110101101 prawn 7 -1110110101101 family-law 7 -1110110101101 accounting-firm 7 -1110110101101 hand-drawn 7 -1110110101101 mini-mall 7 -1110110101101 homosexual-rights 7 -1110110101101 yen-based 7 -1110110101101 dockside 8 -1110110101101 less-experienced 8 -1110110101101 steel-making 8 -1110110101101 Panamanian-registered 8 -1110110101101 less-risky 8 -1110110101101 low-altitude 8 -1110110101101 Moscow-based 8 -1110110101101 music-industry 8 -1110110101101 non-governmental 8 -1110110101101 Quebec-based 8 -1110110101101 record-industry 8 -1110110101101 shanty 9 -1110110101101 industry-sponsored 9 -1110110101101 French-owned 9 -1110110101101 co-operative 10 -1110110101101 role-playing 10 -1110110101101 higher-risk 10 -1110110101101 technical-service 10 -1110110101101 minority-controlled 10 -1110110101101 trade-finance 10 -1110110101101 graduate-school 10 -1110110101101 horse-breeding 11 -1110110101101 heart-transplant 11 -1110110101101 refresher 11 -1110110101101 nonresident 11 -1110110101101 recreational-vehicle 11 -1110110101101 retail-store 11 -1110110101101 USO 11 -1110110101101 sedentary 12 -1110110101101 matrimonial 12 -1110110101101 quasi-government 12 -1110110101101 non-lawyer 12 -1110110101101 government-financed 12 -1110110101101 shareholder-owned 12 -1110110101101 cruise-ship 12 -1110110101101 state-funded 12 -1110110101101 bank-owned 13 -1110110101101 street-corner 13 -1110110101101 state-supported 13 -1110110101101 second-mortgage 13 -1110110101101 realestate 14 -1110110101101 Washington-area 14 -1110110101101 mixed-use 14 -1110110101101 supranational 16 -1110110101101 better-capitalized 16 -1110110101101 congregate-care 17 -1110110101101 depreciable 17 -1110110101101 commodity-trading 17 -1110110101101 company-sponsored 18 -1110110101101 rare-coin 18 -1110110101101 two-person 19 -1110110101101 shopping-mall 19 -1110110101101 freelance 19 -1110110101101 value-oriented 19 -1110110101101 stockholder-owned 20 -1110110101101 public-private 20 -1110110101101 state-sponsored 21 -1110110101101 nongovernment 22 -1110110101101 bond-fund 23 -1110110101101 self-insured 24 -1110110101101 government-supported 24 -1110110101101 transnational 25 -1110110101101 company-paid 26 -1110110101101 hard-cover 26 -1110110101101 government-funded 27 -1110110101101 top-flight 27 -1110110101101 life-care 28 -1110110101101 middle-market 29 -1110110101101 walk-in 31 -1110110101101 shopping-center 31 -1110110101101 non-manufacturing 31 -1110110101101 prep 32 -1110110101101 limited-partnership 34 -1110110101101 small-stock 34 -1110110101101 multiracial 34 -1110110101101 leveraged-buy-out 34 -1110110101101 wildcat 36 -1110110101101 profit-making 42 -1110110101101 solid-waste 49 -1110110101101 non-banking 51 -1110110101101 low-risk 52 -1110110101101 pan-European 57 -1110110101101 reputable 57 -1110110101101 black-owned 58 -1110110101101 not-for-profit 64 -1110110101101 small-scale 68 -1110110101101 toxic-waste 68 -1110110101101 penny-stock 71 -1110110101101 parochial 86 -1110110101101 for-profit 88 -1110110101101 big-time 90 -1110110101101 non-profit 99 -1110110101101 family-owned 106 -1110110101101 peacetime 106 -1110110101101 government-sponsored 110 -1110110101101 minority-owned 112 -1110110101101 standby 118 -1110110101101 tax-shelter 121 -1110110101101 hazardous-waste 132 -1110110101101 statewide 151 -1110110101101 third-party 160 -1110110101101 venture-capital 238 -1110110101101 syndicated 312 -1110110101101 mutual-fund 321 -1110110101101 joint-venture 344 -1110110101101 private-sector 360 -1110110101101 nonprofit 660 -1110110101101 real-estate 1724 -1110110101101 private 10065 -1110110101101 professional 2029 -1110110101110 television-evangelist 1 -1110110101110 company-auditor 1 -1110110101110 semi-automated 1 -1110110101110 Indian-summer 1 -1110110101110 earthquake-preparation 1 -1110110101110 oil-for-equipment 1 -1110110101110 Iran-Soviet 1 -1110110101110 growth-stunting 1 -1110110101110 Seoul-Beijing 1 -1110110101110 electrical-parts 1 -1110110101110 Hyper-channel 1 -1110110101110 accident-related 1 -1110110101110 Indian-Soviet 1 -1110110101110 already-strained 1 -1110110101110 eight-liter 1 -1110110101110 more-practical 1 -1110110101110 engineering-consulting 1 -1110110101110 under-prepared 1 -1110110101110 animal-based 1 -1110110101110 offensive-oriented 1 -1110110101110 all-too-regular 1 -1110110101110 83-36 1 -1110110101110 American-funded 1 -1110110101110 protection-sodden 1 -1110110101110 IMF-backed 1 -1110110101110 per-home 1 -1110110101110 patient-financed 1 -1110110101110 teacher-licensing 1 -1110110101110 hotel-related 1 -1110110101110 powersales 1 -1110110101110 artificialintelligence 1 -1110110101110 actor-audience 1 -1110110101110 manufacturing-systems 1 -1110110101110 slow-but-steady 1 -1110110101110 M1-B 1 -1110110101110 excommunicable 1 -1110110101110 government-derived 1 -1110110101110 commodities-investment 1 -1110110101110 oil-driven 1 -1110110101110 distant-water 1 -1110110101110 Asadabad 1 -1110110101110 28-state 1 -1110110101110 Olympic-level 1 -1110110101110 airline-career 1 -1110110101110 aviation-consultancy 1 -1110110101110 election-oriented 1 -1110110101110 synthetic-blood 1 -1110110101110 orange-rind 1 -1110110101110 already-over-leveraged 1 -1110110101110 efficiency-oriented 1 -1110110101110 ship-to-shore 1 -1110110101110 over-heated 1 -1110110101110 umpteen 1 -1110110101110 goods-and-services 1 -1110110101110 oil-linked 1 -1110110101110 extra-far-seeing 1 -1110110101110 airplane-parts 1 -1110110101110 Unwritten 1 -1110110101110 hugh 1 -1110110101110 unlocal 1 -1110110101110 producer-owned 1 -1110110101110 MKV 1 -1110110101110 company-managed 1 -1110110101110 self-created 1 -1110110101110 Girmi 1 -1110110101110 traffic-sharing 1 -1110110101110 once-ballyhooed 1 -1110110101110 already-burdened 1 -1110110101110 2,100-mile 1 -1110110101110 anti-crisis 1 -1110110101110 silicon/gallium 1 -1110110101110 61-month-old 1 -1110110101110 deepsea 1 -1110110101110 Seoul-Moscow 1 -1110110101110 still-shaky 1 -1110110101110 card-member 1 -1110110101110 unrestrictive 1 -1110110101110 82-month 1 -1110110101110 SBA-backed 1 -1110110101110 already-deteriorating 1 -1110110101110 semicondctor 1 -1110110101110 is-it-an-import-or-is-it-a-Chevy 1 -1110110101110 arms-control-treaty 1 -1110110101110 anti-oil 1 -1110110101110 synthetic-diamond 1 -1110110101110 all-year-round 1 -1110110101110 customer-company 1 -1110110101110 U.S.-Turkish 1 -1110110101110 anti-hijacking 1 -1110110101110 coal-engine 1 -1110110101110 center-pivoted 1 -1110110101110 two-hectare 1 -1110110101110 ESOP-related 1 -1110110101110 factory-like 1 -1110110101110 over-land 1 -1110110101110 bileratal 1 -1110110101110 Annenberg-supported 1 -1110110101110 waterfrugal 1 -1110110101110 66-month-old 1 -1110110101110 engineering/construction 1 -1110110101110 broad-scaled 1 -1110110101110 industrial-era 2 -1110110101110 all-bond 2 -1110110101110 premium-price 2 -1110110101110 often-fatal 2 -1110110101110 alternative-card 2 -1110110101110 Sino-Indian 2 -1110110101110 iniquitous 2 -1110110101110 inter-industry 2 -1110110101110 part-object 2 -1110110101110 once-close 2 -1110110101110 Afghanistan-Pakistan 2 -1110110101110 IMF-approved 2 -1110110101110 Alzheimer's-disease 2 -1110110101110 league-wide 2 -1110110101110 impeachable 2 -1110110101110 screw-top 2 -1110110101110 celebrity-recipe 2 -1110110101110 already-battered 2 -1110110101110 electric-drive 2 -1110110101110 undersupplied 2 -1110110101110 NAHB 2 -1110110101110 back-to-the-land 2 -1110110101110 airliner-cabin 2 -1110110101110 interest-deductible 2 -1110110101110 seat-making 2 -1110110101110 term-loan 2 -1110110101110 Bible-based 2 -1110110101110 U.S.-Australian 2 -1110110101110 sometimes-frayed 2 -1110110101110 granite-and-glass 2 -1110110101110 end-of-the-world 2 -1110110101110 U.S.-Europe 2 -1110110101110 individual-practice 2 -1110110101110 recently-completed 2 -1110110101110 non-crisis 2 -1110110101110 Saudi-British 2 -1110110101110 taxpayer-paid 2 -1110110101110 seagoing 2 -1110110101110 84-bed 2 -1110110101110 non-taxed 2 -1110110101110 IMF-monitored 2 -1110110101110 nonsecurities 2 -1110110101110 Wright-Mallick 2 -1110110101110 arms-delivery 2 -1110110101110 anti-import 2 -1110110101110 11-nation 2 -1110110101110 racial-segregation 2 -1110110101110 last-mentioned 2 -1110110101110 three-continent 2 -1110110101110 economic-rights 2 -1110110101110 U.S.-Pakistani 2 -1110110101110 biotechnical 2 -1110110101110 mental-illness 2 -1110110101110 execution-only 2 -1110110101110 Sino-U.S. 2 -1110110101110 grandparent-grandchild 3 -1110110101110 residential-real-estate 3 -1110110101110 Soviet-Iranian 3 -1110110101110 more-careful 3 -1110110101110 high-production 3 -1110110101110 attack-submarine 3 -1110110101110 takeover-trading 3 -1110110101110 U.S.-French 3 -1110110101110 sheet-music 3 -1110110101110 extra-governmental 3 -1110110101110 cool-headed 3 -1110110101110 on-stage 3 -1110110101110 pollution-related 3 -1110110101110 individual-retirement-account 3 -1110110101110 non-broadcast 3 -1110110101110 more-expansive 3 -1110110101110 EC-Japanese 3 -1110110101110 American-Japanese 3 -1110110101110 agriculture-based 3 -1110110101110 atom-smashing 3 -1110110101110 accidental-launch 3 -1110110101110 interservice 3 -1110110101110 350,000-square-foot 3 -1110110101110 state-directed 3 -1110110101110 106-month 3 -1110110101110 IBM-Sears 3 -1110110101110 transborder 3 -1110110101110 interparty 3 -1110110101110 ever-tighter 3 -1110110101110 game-day 3 -1110110101110 Japanese-U.S. 3 -1110110101110 Soviet-Western 3 -1110110101110 U.S.-Cuba 3 -1110110101110 Kingly 3 -1110110101110 long-strained 3 -1110110101110 U.S.-held 3 -1110110101110 indepth 3 -1110110101110 attention-grabbing 3 -1110110101110 U.S.-Brazil 3 -1110110101110 multiservice 3 -1110110101110 buyer-seller 3 -1110110101110 migrant-worker 3 -1110110101110 unseasoned 3 -1110110101110 on-premises 3 -1110110101110 management-labor 4 -1110110101110 space-development 4 -1110110101110 upper-echelon 4 -1110110101110 epidural 4 -1110110101110 U.S.-Korean 4 -1110110101110 off-network 4 -1110110101110 U.S.Soviet 4 -1110110101110 pastel-colored 4 -1110110101110 white-shoe 4 -1110110101110 130-member 4 -1110110101110 agency-shop 4 -1110110101110 root-canal 4 -1110110101110 export-boosting 4 -1110110101110 interstate-banking 4 -1110110101110 non-producing 4 -1110110101110 intra-EC 4 -1110110101110 intra-company 4 -1110110101110 German-language 4 -1110110101110 U.S.-Cuban 4 -1110110101110 labor-contract 4 -1110110101110 high-multiple 4 -1110110101110 inter-governmental 4 -1110110101110 associational 4 -1110110101110 contributory 4 -1110110101110 gold-based 4 -1110110101110 intergalactic 4 -1110110101110 U.S.-Iraqi 4 -1110110101110 antarctic 4 -1110110101110 extraditable 4 -1110110101110 anti-corrosion 5 -1110110101110 inter-German 5 -1110110101110 performing-arts 5 -1110110101110 Greek-Turkish 5 -1110110101110 esophageal 5 -1110110101110 U.S.-Korea 5 -1110110101110 computer-screen 5 -1110110101110 lap-belt 5 -1110110101110 U.S.Canada 5 -1110110101110 cross-currency 5 -1110110101110 state-to-state 5 -1110110101110 central-government 5 -1110110101110 company-union 5 -1110110101110 computer-to-computer 5 -1110110101110 Japanese-Soviet 5 -1110110101110 NBC-Turner 5 -1110110101110 more-aggressive 5 -1110110101110 industry-government 5 -1110110101110 Soviet-Israeli 5 -1110110101110 U.S.-Indian 5 -1110110101110 anti-Iranian 5 -1110110101110 non-aspirin 5 -1110110101110 U.S.-Vietnamese 5 -1110110101110 Bhopal-related 5 -1110110101110 heart-bypass 6 -1110110101110 revocable 6 -1110110101110 American-Iranian 6 -1110110101110 extralegal 6 -1110110101110 in-and-out 6 -1110110101110 tobacco-company 6 -1110110101110 public-access 6 -1110110101110 gas-contract 6 -1110110101110 anticholesterol 6 -1110110101110 post-takeover 6 -1110110101110 inter-European 6 -1110110101110 seaborne 6 -1110110101110 securities-market 6 -1110110101110 Australasian 6 -1110110101110 pharmacological 6 -1110110101110 German-American 7 -1110110101110 cause-related 7 -1110110101110 working-level 7 -1110110101110 U.S.-EC 7 -1110110101110 employer-employee 7 -1110110101110 Soviet-German 7 -1110110101110 Turkish-American 7 -1110110101110 emotion-laden 7 -1110110101110 abortion-related 7 -1110110101110 AIDS-treatment 7 -1110110101110 advance-fee 7 -1110110101110 manufacturing-related 7 -1110110101110 AIDS-linked 8 -1110110101110 reduced-instruction-set 8 -1110110101110 arm's-length 8 -1110110101110 non-pipeline 8 -1110110101110 operating-unit 8 -1110110101110 government-industry 9 -1110110101110 iridescent 9 -1110110101110 intracompany 9 -1110110101110 capitalist-style 9 -1110110101110 arms-for-hostage 9 -1110110101110 German-Soviet 9 -1110110101110 informatics 10 -1110110101110 aircraft-carrier 10 -1110110101110 university-based 10 -1110110101110 elephantine 10 -1110110101110 person-to-person 10 -1110110101110 fast-changing 10 -1110110101110 deep-sea 10 -1110110101110 inflight 11 -1110110101110 Israeli-Arab 11 -1110110101110 parimutuel 11 -1110110101110 post-1992 11 -1110110101110 interoffice 11 -1110110101110 Israeli-Palestinian 11 -1110110101110 government-to-government 12 -1110110101110 Iranian-sponsored 12 -1110110101110 trend-setting 12 -1110110101110 oligopolistic 12 -1110110101110 real-time 12 -1110110101110 wiretapped 12 -1110110101110 local-currency 13 -1110110101110 hemispheric 13 -1110110101110 church-state 13 -1110110101110 east-west 13 -1110110101110 intra-European 14 -1110110101110 government-approved 14 -1110110101110 bridge-loan 14 -1110110101110 premarital 15 -1110110101110 short-time 15 -1110110101110 transpacific 15 -1110110101110 Sino-Japanese 15 -1110110101110 anti-Contra 15 -1110110101110 extracurricular 15 -1110110101110 U.S.-Mexican 17 -1110110101110 cash-generating 17 -1110110101110 north-south 18 -1110110101110 Sino-American 18 -1110110101110 immune-system 18 -1110110101110 after-school 18 -1110110101110 farmer-owned 18 -1110110101110 cash-basis 19 -1110110101110 normalizing 19 -1110110101110 sectoral 19 -1110110101110 U.S.-European 19 -1110110101110 ultrasonic 20 -1110110101110 counterinsurgency 20 -1110110101110 end-user 20 -1110110101110 one-minute 20 -1110110101110 up-to-the-minute 21 -1110110101110 new-business 23 -1110110101110 U.S.-Iran 23 -1110110101110 inflatable 24 -1110110101110 U.S.-Israeli 24 -1110110101110 on-board 24 -1110110101110 federal-state 24 -1110110101110 off-balance-sheet 24 -1110110101110 Canada-U.S. 24 -1110110101110 entertainment-industry 24 -1110110101110 U.S.-Iranian 27 -1110110101110 oil-production 27 -1110110101110 most-favored-nation 28 -1110110101110 risk-arbitrage 28 -1110110101110 abdominal 28 -1110110101110 unclassified 28 -1110110101110 money-making 29 -1110110101110 open-door 29 -1110110101110 U.S.-China 30 -1110110101110 capital-market 31 -1110110101110 departmental 31 -1110110101110 American-style 31 -1110110101110 Soviet-American 31 -1110110101110 trans-Pacific 31 -1110110101110 econometric 33 -1110110101110 secondary-market 37 -1110110101110 Sino-Soviet 40 -1110110101110 growth-oriented 40 -1110110101110 undersea 40 -1110110101110 Franco-German 42 -1110110101110 market-related 43 -1110110101110 stock-loan 46 -1110110101110 on-the-job 47 -1110110101110 in-flight 47 -1110110101110 export-driven 49 -1110110101110 U.S.-style 50 -1110110101110 nighttime 50 -1110110101110 high-energy 52 -1110110101110 one-stop 52 -1110110101110 fatty 56 -1110110101110 informational 59 -1110110101110 transatlantic 63 -1110110101110 high-pressure 64 -1110110101110 intrastate 64 -1110110101110 atmospheric 67 -1110110101110 dividend-capture 69 -1110110101110 on-line 70 -1110110101110 U.S.-Canadian 70 -1110110101110 trans-Atlantic 80 -1110110101110 U.S.-Japanese 82 -1110110101110 hard-currency 83 -1110110101110 Arab-Israeli 90 -1110110101110 intermarket 91 -1110110101110 expedited 104 -1110110101110 clandestine 108 -1110110101110 on-site 119 -1110110101110 cross-border 122 -1110110101110 indoor 132 -1110110101110 U.S.-Canada 144 -1110110101110 stepped-up 166 -1110110101110 U.S.-Japan 175 -1110110101110 East-West 187 -1110110101110 open-market 194 -1110110101110 multilateral 206 -1110110101110 out-of-state 252 -1110110101110 U.S.-Soviet 340 -1110110101110 bilateral 402 -1110110101110 ongoing 423 -1110110101110 genetic 468 -1110110101110 artificial 476 -1110110101110 automated 550 -1110110101110 experimental 561 -1110110101110 interstate 588 -1110110101110 external 592 -1110110101110 credit-card 660 -1110110101110 global 1951 -1110110101110 international 8925 -1110110101110 internal 2473 -1110110101111 PC-making 1 -1110110101111 non-ESOP 1 -1110110101111 overseas-currency-translation 1 -1110110101111 conspiracy-minded 1 -1110110101111 end-of-the-model-year 1 -1110110101111 much-fatter 1 -1110110101111 computer-fraud 1 -1110110101111 cable-dish 1 -1110110101111 7,037 1 -1110110101111 Seventieth 1 -1110110101111 deferred-salary 1 -1110110101111 detail-anxious 1 -1110110101111 prize-fight 1 -1110110101111 personnel-department 1 -1110110101111 tranquilized 1 -1110110101111 big-businesses 1 -1110110101111 international-service 1 -1110110101111 jungle-fowl 1 -1110110101111 price-percentage 1 -1110110101111 Arpeggione 1 -1110110101111 Salzburger 1 -1110110101111 celebrity-contacts 1 -1110110101111 tax-conscious 1 -1110110101111 super-quality 1 -1110110101111 non-handicapped 1 -1110110101111 mechandise 1 -1110110101111 protein-wrapped 1 -1110110101111 tennis-racquets 1 -1110110101111 yellow-painted 1 -1110110101111 less-expert 1 -1110110101111 fish-head 1 -1110110101111 diploma-mill 1 -1110110101111 Germinal 1 -1110110101111 pretesting 1 -1110110101111 lost-cost 1 -1110110101111 single-interests 1 -1110110101111 microcassette 1 -1110110101111 flattened-fauna 1 -1110110101111 acquired-loan 1 -1110110101111 fifth-grade-level 1 -1110110101111 KVEA-TV 1 -1110110101111 already-deferred 1 -1110110101111 installment-purchase 1 -1110110101111 farm-exporting 1 -1110110101111 too-pushy 1 -1110110101111 mazelike 1 -1110110101111 day-shift 1 -1110110101111 board-management 1 -1110110101111 high-usage 1 -1110110101111 grim-gray 1 -1110110101111 brokerreferred 1 -1110110101111 estate-return 1 -1110110101111 Catastrophic-health 1 -1110110101111 multibillion-yen 1 -1110110101111 apple-growth 1 -1110110101111 2,609 1 -1110110101111 antimarket 1 -1110110101111 stir-fry-the 1 -1110110101111 earthquake-threatened 1 -1110110101111 Fateful 1 -1110110101111 shoe-leather 1 -1110110101111 secured-card 1 -1110110101111 burglarize 1 -1110110101111 obligation/special 1 -1110110101111 back-to-better 1 -1110110101111 PCW-1 1 -1110110101111 gaming-related 1 -1110110101111 information-hungry 1 -1110110101111 airfreight 1 -1110110101111 post-Coltrane 1 -1110110101111 water-gun 1 -1110110101111 basset-hound 1 -1110110101111 hammer-tipped 1 -1110110101111 business-loan 1 -1110110101111 mom-and-apple-pie 1 -1110110101111 inflation-generated 1 -1110110101111 Japanese-company 1 -1110110101111 gambling-casino 1 -1110110101111 obigation 1 -1110110101111 drift-net 1 -1110110101111 luxurycar 1 -1110110101111 card-playing 1 -1110110101111 film-asset 1 -1110110101111 non-audit 1 -1110110101111 PLO-style 1 -1110110101111 radio-tape 1 -1110110101111 nonminority 1 -1110110101111 prenatal-health 1 -1110110101111 information-trading 1 -1110110101111 anti-Perot 1 -1110110101111 display-advertising 1 -1110110101111 readymade 1 -1110110101111 garment-district 2 -1110110101111 securities-house 2 -1110110101111 apartment-house 2 -1110110101111 farm-cooperative 2 -1110110101111 long-outstanding 2 -1110110101111 crack-cocaine 2 -1110110101111 air-space 2 -1110110101111 acronymic 2 -1110110101111 anarchistic 2 -1110110101111 farm-crop 2 -1110110101111 single-store 2 -1110110101111 direct-to-consumer 2 -1110110101111 steel-blue 2 -1110110101111 pick-and-shovel 2 -1110110101111 more-orthodox 2 -1110110101111 49-story 2 -1110110101111 big-block 2 -1110110101111 nonsteel 2 -1110110101111 lawn-tractor 2 -1110110101111 forward-contract 2 -1110110101111 media-company 2 -1110110101111 six-piece 2 -1110110101111 100-meter-dash 2 -1110110101111 on-airport 2 -1110110101111 regenerative 2 -1110110101111 executional 2 -1110110101111 dental-products 2 -1110110101111 software-product 2 -1110110101111 buy-out-related 2 -1110110101111 velvet-glove 2 -1110110101111 cartridge-firing 2 -1110110101111 Earth-bound 2 -1110110101111 Israel-Arab 2 -1110110101111 Eastern-establishment 2 -1110110101111 computer-fund 2 -1110110101111 captive-import 2 -1110110101111 borrower-owned 2 -1110110101111 slow-paying 2 -1110110101111 problem-resolution 2 -1110110101111 resort-property 2 -1110110101111 less-effective 2 -1110110101111 strategic-missile 3 -1110110101111 cigar-shaped 3 -1110110101111 lower-Manhattan 3 -1110110101111 high-earning 3 -1110110101111 petroleum-industry 3 -1110110101111 company-related 3 -1110110101111 commission-house 3 -1110110101111 beastly 3 -1110110101111 drive-thru 3 -1110110101111 church-related 3 -1110110101111 horse-meat 3 -1110110101111 inventory-adjustment 3 -1110110101111 lower-rate 3 -1110110101111 admiralty 3 -1110110101111 coporate 3 -1110110101111 private-court 3 -1110110101111 food-company 3 -1110110101111 strobe 3 -1110110101111 tax-form 3 -1110110101111 church-owned 3 -1110110101111 more-experienced 3 -1110110101111 reverse-repo 3 -1110110101111 extra-judicial 3 -1110110101111 glass-and-granite 3 -1110110101111 big-firm 3 -1110110101111 first-world 3 -1110110101111 error-resolution 3 -1110110101111 commercial-building 3 -1110110101111 five-years 3 -1110110101111 credit-risk 4 -1110110101111 national-brand 4 -1110110101111 business-visa 4 -1110110101111 wood-frame 4 -1110110101111 small-firm 4 -1110110101111 Treasury-based 4 -1110110101111 gab-line 4 -1110110101111 no-cost 4 -1110110101111 daily-newspaper 4 -1110110101111 financial-institution 4 -1110110101111 employment-tax 4 -1110110101111 future-oriented 4 -1110110101111 creditcard 5 -1110110101111 garment-industry 5 -1110110101111 cloak-and-dagger 5 -1110110101111 compact-disc 5 -1110110101111 front-office 5 -1110110101111 blood-thirsty 5 -1110110101111 second-home 5 -1110110101111 insurance-policy 5 -1110110101111 development-assistance 5 -1110110101111 campaign-law 5 -1110110101111 blast-furnace 5 -1110110101111 utility-company 5 -1110110101111 iron-fisted 6 -1110110101111 53-story 6 -1110110101111 taxpayer-funded 6 -1110110101111 stock-car 6 -1110110101111 record-company 6 -1110110101111 still-unknown 6 -1110110101111 tax-advantaged 6 -1110110101111 state-government 6 -1110110101111 employment-related 7 -1110110101111 snake-oil 7 -1110110101111 non-employee 7 -1110110101111 woodlot 7 -1110110101111 lower-grade 7 -1110110101111 head-office 8 -1110110101111 banking-industry 8 -1110110101111 construction-industry 9 -1110110101111 big-bank 10 -1110110101111 medical-school 12 -1110110101111 steel-industry 12 -1110110101111 uncompensated 12 -1110110101111 peak-hour 13 -1110110101111 deep-discount 13 -1110110101111 terra 13 -1110110101111 acquisition-related 16 -1110110101111 family-business 17 -1110110101111 upper-level 18 -1110110101111 charge-card 18 -1110110101111 airline-industry 18 -1110110101111 law-firm 19 -1110110101111 brokerage-firm 19 -1110110101111 human-resource 19 -1110110101111 local-government 19 -1110110101111 blood-clot 22 -1110110101111 Seabrook-related 22 -1110110101111 labor-backed 24 -1110110101111 labor-relations 24 -1110110101111 insurance-company 25 -1110110101111 defense-industry 26 -1110110101111 money-fund 28 -1110110101111 oil-company 33 -1110110101111 pension-plan 36 -1110110101111 non-management 39 -1110110101111 divisional 71 -1110110101111 pension-fund 125 -1110110101111 corporate 12124 -1110110101111 small-business 421 -11101101100 91,817 1 -11101101100 150,582 1 -11101101100 cattle-fattening 1 -11101101100 C-MH53 1 -11101101100 prison-issue 1 -11101101100 mammal-type 1 -11101101100 very-lily-white 1 -11101101100 unhybridized 1 -11101101100 zinc-based 1 -11101101100 castbronze 1 -11101101100 great-book 1 -11101101100 school-use 1 -11101101100 more-potent 1 -11101101100 lycra 1 -11101101100 non-marital 1 -11101101100 1974-1983 1 -11101101100 least-troublesome 1 -11101101100 117-seat 1 -11101101100 271,500 1 -11101101100 154,046 1 -11101101100 hospital-dispensed 1 -11101101100 super-contoured 1 -11101101100 space-adventure 1 -11101101100 658,389 1 -11101101100 S.F.A. 1 -11101101100 plastic-encased 1 -11101101100 corporate-hospitality 1 -11101101100 decay-preventing 1 -11101101100 Belzberg-owned 1 -11101101100 661,509 1 -11101101100 behind-the-wheel 1 -11101101100 milch 1 -11101101100 udo 1 -11101101100 horizonless 1 -11101101100 S800 1 -11101101100 Eisenhower-era 1 -11101101100 267,795 1 -11101101100 hospital-marketed 1 -11101101100 special-diet 1 -11101101100 Navy-leased 1 -11101101100 Model-80 1 -11101101100 M-54 1 -11101101100 M813 1 -11101101100 California-led 1 -11101101100 over-regulating 1 -11101101100 room-like 1 -11101101100 213-passenger 1 -11101101100 251-seat 1 -11101101100 midmarket 1 -11101101100 attracter 1 -11101101100 33,631 1 -11101101100 81,564 1 -11101101100 166,445 1 -11101101100 154,026 1 -11101101100 1,313 1 -11101101100 1,099,021 1 -11101101100 legionella 1 -11101101100 159,974 1 -11101101100 half-brogue 1 -11101101100 1980s-vintage 1 -11101101100 42,550 1 -11101101100 Cu-7 1 -11101101100 156,561 1 -11101101100 one-lane 1 -11101101100 Kongsberg-made 1 -11101101100 fly-borne 1 -11101101100 Caribbean-made 1 -11101101100 love/free 1 -11101101100 5,821,593 1 -11101101100 156,016 1 -11101101100 1,025,283 1 -11101101100 sporty-looking 1 -11101101100 micro-size 1 -11101101100 1,814,330 1 -11101101100 590,772 1 -11101101100 605,603 1 -11101101100 1,787,209 1 -11101101100 322,890 1 -11101101100 merit-oriented 1 -11101101100 97,224 1 -11101101100 13,612 1 -11101101100 McKesson-supplied 1 -11101101100 light-conducting 1 -11101101100 176,511 1 -11101101100 157,255 1 -11101101100 word-filled 1 -11101101100 cash-oriented 1 -11101101100 158,811 1 -11101101100 393,848 1 -11101101100 optically-pumped 1 -11101101100 50,924 1 -11101101100 most-requested 1 -11101101100 billowy 1 -11101101100 Sansui 1 -11101101100 9,983 1 -11101101100 218,649 1 -11101101100 nontheatrical 1 -11101101100 unboxed 1 -11101101100 unsquished 1 -11101101100 two-lane-wide 1 -11101101100 reptile-skin 1 -11101101100 remodelling 1 -11101101100 152,035 1 -11101101100 septicemia 1 -11101101100 uncaged 1 -11101101100 off-lease 1 -11101101100 JT8D-219 1 -11101101100 68,697 1 -11101101100 72,305 1 -11101101100 orange-colored 1 -11101101100 lavender-jade 1 -11101101100 flower-bud 1 -11101101100 271-seat 1 -11101101100 spring-flowering 1 -11101101100 blackeyed 1 -11101101100 darning 1 -11101101100 premium-class 1 -11101101100 Vietnam-generation 1 -11101101100 stapler-sized 1 -11101101100 microscope-mounted 1 -11101101100 4,735,638 1 -11101101100 140,482 1 -11101101100 128,113 1 -11101101100 Washington-driven 1 -11101101100 multi-wheeled 1 -11101101100 roadmobile 1 -11101101100 79,557 1 -11101101100 93,205 1 -11101101100 current-technology 1 -11101101100 intellectual-looking 1 -11101101100 caboose-less 1 -11101101100 square-shaped 1 -11101101100 rate-responsive 1 -11101101100 32,788 1 -11101101100 200,296 1 -11101101100 235,866 1 -11101101100 Brazilianaccented 1 -11101101100 sports-fantasy 1 -11101101100 foot-treadle 1 -11101101100 317,723 1 -11101101100 1950s-era 1 -11101101100 135,128 1 -11101101100 72,308 1 -11101101100 94,715 1 -11101101100 F5 1 -11101101100 same-sized 1 -11101101100 3/X 1 -11101101100 1,448,895 1 -11101101100 5,200-pound 1 -11101101100 558,122 1 -11101101100 263,682 1 -11101101100 Phiroshaw 1 -11101101100 tuberculosis-like 1 -11101101100 JT8D-9A 1 -11101101100 Ford-related 1 -11101101100 desk-side 1 -11101101100 rockwalled 1 -11101101100 factors-the 1 -11101101100 termite-dwelling 1 -11101101100 4,466,934 1 -11101101100 74,147 1 -11101101100 niobiumtin 1 -11101101100 non-ceramic 1 -11101101100 blaxploitation 1 -11101101100 palm-frond 1 -11101101100 165,910 1 -11101101100 dance-conscious 1 -11101101100 bellybutton-baring 1 -11101101100 29,686 1 -11101101100 49,848 1 -11101101100 2,676,334 1 -11101101100 out-at-the-elbow 1 -11101101100 quaffing 1 -11101101100 sound-recognition 1 -11101101100 deviled 1 -11101101100 71,568 1 -11101101100 size-12 1 -11101101100 1,400-odd 1 -11101101100 308,428 1 -11101101100 30,472 1 -11101101100 257,655 1 -11101101100 13mm 1 -11101101100 millimeter-wide 1 -11101101100 matchbox-size 1 -11101101100 F8 1 -11101101100 marine-based 1 -11101101100 smelterable 1 -11101101100 Thelper 1 -11101101100 religious-music 1 -11101101100 1,055,000 1 -11101101100 73,743 1 -11101101100 standardbred 1 -11101101100 bing 1 -11101101100 two-cylinder 1 -11101101100 one-cylinder 1 -11101101100 gadget-armed 1 -11101101100 live-weight 1 -11101101100 highly-concentrated 1 -11101101100 gasesmostly 1 -11101101100 Model-70 1 -11101101100 most-recognizable 1 -11101101100 regular-body 1 -11101101100 Hackneywrite 1 -11101101100 aluminum-based 1 -11101101100 Afghan-flagged 1 -11101101100 NX650 1 -11101101100 amorphous-looking 1 -11101101100 summit-produced 1 -11101101100 Schrader-directed 1 -11101101100 hard-surface 1 -11101101100 multi-layer 1 -11101101100 upper-stage 1 -11101101100 148,938 1 -11101101100 738,000 1 -11101101100 M939A2 1 -11101101100 patent-protected 1 -11101101100 cloud-dotted 1 -11101101100 PW2040 1 -11101101100 ultra-low 1 -11101101100 58,407 1 -11101101100 183,652 1 -11101101100 fascimile 1 -11101101100 151,978 1 -11101101100 market-mechanism 1 -11101101100 370-seat 1 -11101101100 wall-size 1 -11101101100 customed-designed 1 -11101101100 virus-fighting 1 -11101101100 U.S.-free 1 -11101101100 purposive 1 -11101101100 adjustable-flame 1 -11101101100 75-watt 1 -11101101100 60-watt 1 -11101101100 151,038 1 -11101101100 5,680-unit 1 -11101101100 tobacco-juice 1 -11101101100 largeengine 1 -11101101100 967,687 1 -11101101100 99,314 1 -11101101100 Intel-designed 1 -11101101100 microchip-based 1 -11101101100 electrodeless 1 -11101101100 mandarin-style 1 -11101101100 two-humped 1 -11101101100 24,000-watt 1 -11101101100 ironwood 1 -11101101100 COMDEX 1 -11101101100 33,050 1 -11101101100 33,486 1 -11101101100 Gaulloise 1 -11101101100 fuzzball 1 -11101101100 106,289 1 -11101101100 bone-shaking 1 -11101101100 812,274 1 -11101101100 leased-line 1 -11101101100 RS/16 1 -11101101100 118,235 1 -11101101100 40-watt 1 -11101101100 10,846,500 1 -11101101100 semi-trailer 1 -11101101100 industrial-investment 1 -11101101100 Alliance-provided 1 -11101101100 smoke-belching 1 -11101101100 200-model 1 -11101101100 luxury-size 1 -11101101100 59,734 1 -11101101100 125,852 1 -11101101100 134,387 1 -11101101100 front-drive 1 -11101101100 100,654 1 -11101101100 overwater 1 -11101101100 international-domestic 1 -11101101100 fully-powered 1 -11101101100 smallpox-carrying 1 -11101101100 match-related 1 -11101101100 Aerobix 1 -11101101100 craftsy 1 -11101101100 people-sized 1 -11101101100 169,403 1 -11101101100 167,443 1 -11101101100 5,259,632 1 -11101101100 146,940 1 -11101101100 aerodynamic-looking 1 -11101101100 286,100 1 -11101101100 lightning-caused 1 -11101101100 fire-killed 1 -11101101100 field-planted 1 -11101101100 seven-ton 1 -11101101100 rocket-firing 1 -11101101100 pre-filled 1 -11101101100 transoceanic 1 -11101101100 Japanese-pedigree 1 -11101101100 Huffy-brand 1 -11101101100 11,390 1 -11101101100 yk 1 -11101101100 5,121,975 1 -11101101100 146,911 1 -11101101100 ACR-type 1 -11101101100 88,680 1 -11101101100 1.2-megabyte 1 -11101101100 XT-class 1 -11101101100 random-access-memory 1 -11101101100 wind-making 1 -11101101100 mouse-activated 1 -11101101100 62,853 1 -11101101100 70,627 1 -11101101100 142,347 1 -11101101100 Ramen 1 -11101101100 Progesso 1 -11101101100 149,096 1 -11101101100 137,657 1 -11101101100 148,601 1 -11101101100 dash-mounted 1 -11101101100 Soviet-bound 1 -11101101100 hand-rolled 1 -11101101100 462,964 1 -11101101100 multiprocessor-based 1 -11101101100 Stradella 1 -11101101100 186,521 1 -11101101100 gas-turbine-driven 1 -11101101100 landing-ship 1 -11101101100 ultra-sophisticated 1 -11101101100 lie-witness 1 -11101101100 80286-based 1 -11101101100 wide-brim 1 -11101101100 MV/7800 1 -11101101100 161,633 1 -11101101100 minivending 1 -11101101100 silicone-joint 1 -11101101100 215-piece 1 -11101101100 pneumococcal 1 -11101101100 price-reading 1 -11101101100 35,319 1 -11101101100 Mig-21 1 -11101101100 12-megabyte 1 -11101101100 Moroci 1 -11101101100 3,236 1 -11101101100 733,956 1 -11101101100 6,284,519 1 -11101101100 5,669,578 1 -11101101100 39,916 1 -11101101100 155,979 1 -11101101100 company-purchased 1 -11101101100 DataLifePlus 1 -11101101100 national-team 1 -11101101100 under-animated 1 -11101101100 913,970 1 -11101101100 Ming-style 1 -11101101100 Twinings 1 -11101101100 dark-rimmed 1 -11101101100 live-floor 1 -11101101100 bile-sequestrant 1 -11101101100 142,080 1 -11101101100 148,806 1 -11101101100 anti-hemophilia 1 -11101101100 six-cents-a-gallon 1 -11101101100 all-season 1 -11101101100 easy-to-mix-and-wear 1 -11101101100 vibrant-colored 1 -11101101100 body-shaped 1 -11101101100 5,879,969 1 -11101101100 160,254 1 -11101101100 162,190 1 -11101101100 159,786 1 -11101101100 6-cylinder 1 -11101101100 eraseable-programmable 1 -11101101100 paper-eating 1 -11101101100 548,350 1 -11101101100 Reebok-brand 1 -11101101100 even-tougher 1 -11101101100 oil-additive 1 -11101101100 TPA-producing 1 -11101101100 pulldown 1 -11101101100 Brontosaurus 1 -11101101100 Minute-Maid 1 -11101101100 topselling 1 -11101101100 PW-200 1 -11101101100 5,718,867 1 -11101101100 156,596 1 -11101101100 160,874 1 -11101101100 non-benzanoid 1 -11101101100 transship 1 -11101101100 pigment-producing 1 -11101101100 endothelial 1 -11101101100 phospholipid 1 -11101101100 units-a-year 1 -11101101100 litho 1 -11101101100 Brownberry 1 -11101101100 methanogenic 1 -11101101100 under-the-cabinet 1 -11101101100 manufacturer-authorized 1 -11101101100 15,831 1 -11101101100 dual-engine 1 -11101101100 black-faced 1 -11101101100 unrecyclable 1 -11101101100 Pulsar-N1 1 -11101101100 attack-warning 1 -11101101100 pro-NRA 1 -11101101100 magnetic-levitating 1 -11101101100 6,626 1 -11101101100 157,358 1 -11101101100 155,223 1 -11101101100 165,790 1 -11101101100 unstored 1 -11101101100 GM-based 1 -11101101100 heavier-duty 1 -11101101100 510,725 1 -11101101100 159,072 1 -11101101100 150,551 1 -11101101100 sickly-sweet-smelling 1 -11101101100 7,490 1 -11101101100 38,945 1 -11101101100 165,505 1 -11101101100 1,000-to-1,200-pound 1 -11101101100 273-seat 1 -11101101100 3B2-600G 1 -11101101100 blousy 1 -11101101100 concrete-floored 1 -11101101100 sequin 1 -11101101100 half-sunk 1 -11101101100 H-53 1 -11101101100 often-abused 1 -11101101100 150-watt 1 -11101101100 32-watt 1 -11101101100 Saphir 1 -11101101100 antihypertension 1 -11101101100 abortion-inducing 1 -11101101100 pistol-shaped 1 -11101101100 catcher-processor 1 -11101101100 15,925 1 -11101101100 260,962 1 -11101101100 169,635 1 -11101101100 4.9-liter 1 -11101101100 horned-rim 1 -11101101100 pre-Nice 1 -11101101100 Isuzu-built 1 -11101101100 lion-emblazoned 1 -11101101100 7.8-liter 1 -11101101100 1,970,084 1 -11101101100 1,899,085 1 -11101101100 AS-30L 1 -11101101100 Korean-engineered 1 -11101101100 IIc-compatible 1 -11101101100 157,768 1 -11101101100 69,598 1 -11101101100 135,810 1 -11101101100 136,774 1 -11101101100 67,974 1 -11101101100 pseudotropical 1 -11101101100 plum-sized 1 -11101101100 foreign-earned 1 -11101101100 different-model 1 -11101101100 Honeywell-model 1 -11101101100 176,554 1 -11101101100 170,196 1 -11101101100 CF6-80C2B1F 1 -11101101100 40,046 1 -11101101100 161,279 1 -11101101100 broad-band 1 -11101101100 81-millimeter 1 -11101101100 red-plaid 1 -11101101100 glass-skinned 1 -11101101100 Ohio-class 1 -11101101100 screen-print 1 -11101101100 217,909 1 -11101101100 412,616 1 -11101101100 new-tech 1 -11101101100 sun-worshipping 1 -11101101100 Vare 1 -11101101100 hobnailed 1 -11101101100 gleaming-toothed 1 -11101101100 parrot-bright 1 -11101101100 1.2-micron 1 -11101101100 hash-brown 1 -11101101100 Dragonfly 1 -11101101100 XMP/28 1 -11101101100 3,825 1 -11101101100 enamel-eroding 1 -11101101100 179,785 1 -11101101100 model-boat 1 -11101101100 stereopticon 1 -11101101100 Compushop 1 -11101101100 174,952 1 -11101101100 173,911 1 -11101101100 175,421 1 -11101101100 Amiga-brand 1 -11101101100 kookiest 1 -11101101100 635,904 1 -11101101100 lowest-grossing 1 -11101101100 20,000-line 1 -11101101100 Z-248 1 -11101101100 Z-148 1 -11101101100 MK-45 1 -11101101100 6,900-ton 1 -11101101100 blackwall 1 -11101101100 699,810 1 -11101101100 half-bare 1 -11101101100 A320-200 1 -11101101100 A300-600 1 -11101101100 yen-priced 1 -11101101100 folk-based 1 -11101101100 173,195 1 -11101101100 gray-colored 1 -11101101100 70,024 1 -11101101100 well-padded 1 -11101101100 injectable-pharmaceutical 1 -11101101100 nickel-cadmium 1 -11101101100 7,281 1 -11101101100 235,247 1 -11101101100 glucose-monitoring 1 -11101101100 marsh-grass 1 -11101101100 brown-and-gray-barred 1 -11101101100 ship-borne 1 -11101101100 nicotine-soaked 1 -11101101100 168,912 1 -11101101100 mirror-lined 1 -11101101100 jazz-piano 1 -11101101100 RB211 1 -11101101100 market-tracking 1 -11101101100 high-electron-mobility 1 -11101101100 bridge-erection 1 -11101101100 emerald-cut 1 -11101101100 T200 1 -11101101100 chocolate-chunk 1 -11101101100 171,638 1 -11101101100 174,924 1 -11101101100 lead/acid 1 -11101101100 ever-improving 1 -11101101100 ruffle-front 1 -11101101100 valve-stem 1 -11101101100 credit-card-sized 1 -11101101100 combustion-engine 1 -11101101100 PW-4056 1 -11101101100 77,012 1 -11101101100 crop-dusting 1 -11101101100 specially-shortened 1 -11101101100 high-content 1 -11101101100 167,015 1 -11101101100 127,061 1 -11101101100 125-cubic-centimeter 1 -11101101100 quasi-art 1 -11101101100 H-60 1 -11101101100 special-effects-action 1 -11101101100 super-thin 1 -11101101100 65,391 1 -11101101100 129,144 1 -11101101100 1,941,000 1 -11101101100 corvette/frigate-size 1 -11101101100 embyronic 1 -11101101100 164,692 1 -11101101100 138,895 1 -11101101100 165,271 1 -11101101100 Four-cylinder 1 -11101101100 cheese-and-tomato 1 -11101101100 coca-paste 1 -11101101100 798,214 1 -11101101100 673,300 1 -11101101100 116,942 1 -11101101100 regular-production 1 -11101101100 army-surplus 1 -11101101100 298,487 1 -11101101100 719,563 1 -11101101100 Starfire 1 -11101101100 126,524 1 -11101101100 1,956,341 1 -11101101100 164,702 1 -11101101100 163,216 1 -11101101100 160,672 1 -11101101100 businesses.Net 1 -11101101100 Filet-O-Fish 1 -11101101100 21,320 1 -11101101100 puddinglike 1 -11101101100 58,491 1 -11101101100 oil-on-glass 1 -11101101100 small-portion 1 -11101101100 one-humped 1 -11101101100 189,610 1 -11101101100 136,082 1 -11101101100 Porche 1 -11101101100 labor-bloated 1 -11101101100 244,866 1 -11101101100 649,351 1 -11101101100 682,117 1 -11101101100 non-acting 1 -11101101100 laboratory-manufactured 1 -11101101100 136,265 1 -11101101100 167,209 1 -11101101100 20,528 1 -11101101100 furled 1 -11101101100 his-or-her 1 -11101101100 mud-stained 1 -11101101100 133,324 1 -11101101100 167,066 1 -11101101100 24,244 1 -11101101100 168,489 1 -11101101100 RISC-architecture 1 -11101101100 paprika 1 -11101101100 5,000-square-mile 1 -11101101100 20-mm 1 -11101101100 141-seat 1 -11101101100 armor-penetrating 1 -11101101100 F250 1 -11101101100 color-related 1 -11101101100 Chicago-Jackson 1 -11101101100 sex-shop 1 -11101101100 scallop-fishing 1 -11101101100 20-hour-a-week 1 -11101101100 sub-one-micron 1 -11101101100 azalea 1 -11101101100 postmatch 1 -11101101100 warfare-training 1 -11101101100 frozen-concentrated 1 -11101101100 reprogrammable 1 -11101101100 150,779 1 -11101101100 162,403 1 -11101101100 164,972 1 -11101101100 84,992 1 -11101101100 ketchup-splattered 1 -11101101100 J-57 1 -11101101100 E-class 1 -11101101100 108-passenger 1 -11101101100 easy-opening 1 -11101101100 neuron 1 -11101101100 56,164 1 -11101101100 80,432 1 -11101101100 tabulator 1 -11101101100 stall-kept 1 -11101101100 JT9D-7Q3 1 -11101101100 RB211-535C 1 -11101101100 kiawe 1 -11101101100 177,154 1 -11101101100 natural-membrane 1 -11101101100 incomefrom 1 -11101101100 Atlanta-Cincinnati 1 -11101101100 pollarded 1 -11101101100 plaque-depositing 1 -11101101100 739,876 1 -11101101100 674,287 1 -11101101100 1,423,895 1 -11101101100 WalkLite 1 -11101101100 Samurai-like 1 -11101101100 art-type 1 -11101101100 immune-sentry 1 -11101101100 break-bulk 1 -11101101100 orange-flowered 1 -11101101100 anti-rheumatic 1 -11101101100 Winchester-brand 1 -11101101100 System/3X 1 -11101101100 38,170 1 -11101101100 immune-modulating 1 -11101101100 167,316 1 -11101101100 154,207 1 -11101101100 masticated 1 -11101101100 651,650 1 -11101101100 TPA-type 1 -11101101100 anti-clog 1 -11101101100 hydrogen-fueled 1 -11101101100 636,087 1 -11101101100 77,020 1 -11101101100 156,645 1 -11101101100 purple-podded 1 -11101101100 unisexual 1 -11101101100 158-seat 1 -11101101100 twoinch 1 -11101101100 3083 1 -11101101100 A-series 1 -11101101100 slip-on 1 -11101101100 unironed 1 -11101101100 shell-growing 1 -11101101100 photo-developing 1 -11101101100 business-card-printing 1 -11101101100 shoe-repair 1 -11101101100 key-copying 1 -11101101100 geranium-lined 1 -11101101100 chianti 1 -11101101100 sei 1 -11101101100 Netview 1 -11101101100 747-341B 1 -11101101100 custom-build 1 -11101101100 small-area 1 -11101101100 home-electronic 1 -11101101100 274,783 1 -11101101100 248,873 1 -11101101100 131,594 1 -11101101100 football-playing 1 -11101101100 Inderide 1 -11101101100 worm-chewed 1 -11101101100 serio-sexual 1 -11101101100 under-the-dashboard 1 -11101101100 300SD 1 -11101101100 M-body 1 -11101101100 Tagamet-like 1 -11101101100 6,712 1 -11101101100 107,427 1 -11101101100 60,389 1 -11101101100 218,336 1 -11101101100 laboratory-bred 1 -11101101100 172,369 1 -11101101100 147,277 1 -11101101100 152,485 1 -11101101100 artillery-locating 1 -11101101100 photo-rearranging 1 -11101101100 presensitized 1 -11101101100 JT9D7R4GS 1 -11101101100 TXP 1 -11101101100 fuel-return 1 -11101101100 inflation-monitoring 1 -11101101100 domestic-built 1 -11101101100 cheese-serving 1 -11101101100 mong 1 -11101101100 149,727 1 -11101101100 currency-colored 1 -11101101100 bleached-paperboard 1 -11101101100 313,285 1 -11101101100 radio-operated 1 -11101101100 one-Kim-drop-out 1 -11101101100 L10 1 -11101101100 storm-trooper 1 -11101101100 male-action 1 -11101101100 buckeye 1 -11101101100 385,055 1 -11101101100 control-released 1 -11101101100 16-plus-ton 1 -11101101100 95,713 1 -11101101100 wine-based 1 -11101101100 830,959 1 -11101101100 92,130 1 -11101101100 151,511 1 -11101101100 cash-filled 1 -11101101100 nonoperable 1 -11101101100 Hatteras 1 -11101101100 playful-looking 1 -11101101100 panama 1 -11101101100 condom-vending 1 -11101101100 480-pound 1 -11101101100 saltpacked 1 -11101101100 153,557 1 -11101101100 11,558,000 1 -11101101100 blue-skinned 1 -11101101100 GE-RCA 1 -11101101100 profits-tax 1 -11101101100 1,019,837 1 -11101101100 PW-2037 1 -11101101100 accident-plagued 1 -11101101100 standard-sized 1 -11101101100 half-nightmare 1 -11101101100 safety-document 1 -11101101100 home-baked 1 -11101101100 ion-beam 1 -11101101100 photo-facsimile 1 -11101101100 nail-studded 1 -11101101100 breakfast-beverage 1 -11101101100 C25 1 -11101101100 hospital-acquired 1 -11101101100 132,594 1 -11101101100 Supralife 1 -11101101100 long-sleeve 1 -11101101100 75,065 1 -11101101100 mattress-ticking 1 -11101101100 172,969 1 -11101101100 167,895 1 -11101101100 Forms-Reader 1 -11101101100 68-hour 1 -11101101100 8,790 1 -11101101100 crocodile-hunting 1 -11101101100 product-steel 1 -11101101100 electronic-talking 1 -11101101100 4,661,581 1 -11101101100 175,069 1 -11101101100 142,305 1 -11101101100 174,802 1 -11101101100 animal-horned 1 -11101101100 697,246 1 -11101101100 Addressograph 1 -11101101100 arsenic-based 1 -11101101100 Botrytis-affected 1 -11101101100 off-dry 1 -11101101100 botrytised 1 -11101101100 cholesterol-starved 1 -11101101100 86,903 1 -11101101100 antifriction 1 -11101101100 20-day-old 1 -11101101100 arson-caused 1 -11101101100 DC-9-51 1 -11101101100 U.S-made 1 -11101101100 85,240 1 -11101101100 771,753 1 -11101101100 826,682 1 -11101101100 401,463 1 -11101101100 bad-weather 1 -11101101100 cost-watching 1 -11101101100 179,037 1 -11101101100 165,386 1 -11101101100 second-most-resourceful 1 -11101101100 18,656 1 -11101101100 219,915 1 -11101101100 pump-dispensed 1 -11101101100 somaclonal 1 -11101101100 starch-eating 1 -11101101100 Tampax-brand 1 -11101101100 longer-haul 1 -11101101100 castable 1 -11101101100 Epps-Cash 1 -11101101100 touchable 1 -11101101100 fecal-borne 1 -11101101100 hoofed 1 -11101101100 171,149 1 -11101101100 156,549 1 -11101101100 flyblown 1 -11101101100 igloo-shaped 1 -11101101100 R-2800 1 -11101101100 one-pot 1 -11101101100 AT-class 1 -11101101100 146-200 1 -11101101100 107,015 1 -11101101100 Lorimar-produced 1 -11101101100 snow-clogged 1 -11101101100 dried-grape 1 -11101101100 thick-framed 1 -11101101100 chlamydial 1 -11101101100 psuedo-Sondheim 1 -11101101100 dill-pickle 1 -11101101100 sum-and-french 1 -11101101100 non-mink 1 -11101101100 Goldbergish 1 -11101101100 launchingtwo 1 -11101101100 463,865 1 -11101101100 2,501 1 -11101101100 more-muscled 1 -11101101100 137,936 1 -11101101100 light-sensitive 1 -11101101100 69,239 1 -11101101100 elephant-sized 1 -11101101100 multi-layered 1 -11101101100 1,634,247 1 -11101101100 184,378 1 -11101101100 May-August 1 -11101101100 grass-chomping 1 -11101101100 cultured-pearl 1 -11101101100 7.5-liter 1 -11101101100 frozen-concentrate 1 -11101101100 lowest-fare 1 -11101101100 nontraumatic 1 -11101101100 kapok 1 -11101101100 different-pitched 1 -11101101100 2,000-cc. 1 -11101101100 Uncovering 1 -11101101100 1978-1984 1 -11101101100 gender-specific 1 -11101101100 92-nation 1 -11101101100 dirt-filled 1 -11101101100 yeast-based 1 -11101101100 1,000-year-old 1 -11101101100 acid-stained 1 -11101101100 gouda 1 -11101101100 silicon-polishing 1 -11101101100 44,662 1 -11101101100 62,451 1 -11101101100 146,508 1 -11101101100 Moondreamer 1 -11101101100 Tax-sheltered 1 -11101101100 XT-286 1 -11101101100 MV/20000 1 -11101101100 drugs-and-violence 1 -11101101100 cat-eye 1 -11101101100 778,642 1 -11101101100 lab-to-lab 1 -11101101100 166,813 1 -11101101100 179,226 1 -11101101100 Empire-style 1 -11101101100 infrared-light-emitting 1 -11101101100 Walkman-sized 1 -11101101100 325iX 1 -11101101100 165,715 1 -11101101100 3,079,447 1 -11101101100 five-element 1 -11101101100 720-kilobyte 1 -11101101100 dirtier-running 1 -11101101100 IBM-Kodak 1 -11101101100 26-inch 1 -11101101100 refastener 1 -11101101100 2,104 1 -11101101100 7,643 1 -11101101100 well-backed 1 -11101101100 35,832 1 -11101101100 3,395 1 -11101101100 deep-draft 1 -11101101100 voice-imprint 1 -11101101100 U.S.Japan 1 -11101101100 3B2/700 1 -11101101100 U.S.-donated 1 -11101101100 maguey 1 -11101101100 3090-200E 1 -11101101100 fallopian 1 -11101101100 polyamine 1 -11101101100 1,829 1 -11101101100 1,109,215 1 -11101101100 radiator-coolant 1 -11101101100 Symbolics-like 1 -11101101100 1,691,240 1 -11101101100 2,080,097 1 -11101101100 beach-blanket 1 -11101101100 black-rim 1 -11101101100 elephant-skin 1 -11101101100 impounding 1 -11101101100 more-fuel-efficient 1 -11101101100 cholesterol-laden 1 -11101101100 schlocky-but-profitable 1 -11101101100 570-series 1 -11101101100 high-horsepower 1 -11101101100 FDA-defined 1 -11101101100 level-triggered 1 -11101101100 2,046,917 1 -11101101100 1,032,533 1 -11101101100 2,018,179 1 -11101101100 1,905,206 1 -11101101100 Arrivederci 1 -11101101100 Japan-built 1 -11101101100 135,277 1 -11101101100 wing-tipped 1 -11101101100 barium-lead-bismuth-oxygen 1 -11101101100 Dagenham-manufactured 1 -11101101100 Chakra 1 -11101101100 197,300 1 -11101101100 10,738 1 -11101101100 112,344 1 -11101101100 24,789 1 -11101101100 Japanese-manufactured 1 -11101101100 130,980 1 -11101101100 CF6-80C2B4 1 -11101101100 222-seat 1 -11101101100 lunch-box 1 -11101101100 drug-designing 1 -11101101100 Trafalgar-class 1 -11101101100 pay-as-you-view 1 -11101101100 kidney-stone 1 -11101101100 final-step 1 -11101101100 2.9-liter 1 -11101101100 CFM56-3C1 1 -11101101100 steel-spiked 1 -11101101100 high-button 1 -11101101100 bloodsucking 1 -11101101100 mini-mainframe 1 -11101101100 22,000-kilowatt 1 -11101101100 2,767 1 -11101101100 159,294 1 -11101101100 lizardlike 1 -11101101100 127,471 1 -11101101100 liquid-propellant 1 -11101101100 133,517 1 -11101101100 gold-rimmed 1 -11101101100 Karimesque 1 -11101101100 931,644 1 -11101101100 259,447 1 -11101101100 14,315 1 -11101101100 space-test 1 -11101101100 Washington-to-Boston 1 -11101101100 N-body 1 -11101101100 liberal-colored 1 -11101101100 ultra-dark 1 -11101101100 910-watt 1 -11101101100 10-watt 1 -11101101100 acrylic-fiber 1 -11101101100 maiden-voyage 1 -11101101100 V2500-powered 1 -11101101100 lower-powered 1 -11101101100 cinnamon-raisin 1 -11101101100 274,320 1 -11101101100 303,292 1 -11101101100 85,350 1 -11101101100 6,840 1 -11101101100 126,388 1 -11101101100 127,773 1 -11101101100 algebraic-entry 1 -11101101100 2,462 1 -11101101100 garbage-choked 1 -11101101100 wide-sailed 1 -11101101100 X-MP/48 1 -11101101100 cytokine 1 -11101101100 light-gray 1 -11101101100 55,020 1 -11101101100 193,055 1 -11101101100 136,744 1 -11101101100 top-30 1 -11101101100 100-equation 1 -11101101100 342,492 1 -11101101100 government-franked 1 -11101101100 brilliant-cut 1 -11101101100 comparable-quality 1 -11101101100 172,498 1 -11101101100 3,363 1 -11101101100 custom-painted 1 -11101101100 mainframe-class 1 -11101101100 spark-control 1 -11101101100 motorcycle-gang 1 -11101101100 stomach-soothing 1 -11101101100 cattle-loading 1 -11101101100 Goldbergesque 1 -11101101100 Chuckwagon 1 -11101101100 rail-container 1 -11101101100 Micronite 1 -11101101100 domesticmade 1 -11101101100 IL-2/ 1 -11101101100 American-sized 1 -11101101100 time-deposit 1 -11101101100 extremey 1 -11101101100 no-alcohol 1 -11101101100 216,325 1 -11101101100 regular-sized 1 -11101101100 steel-toed 1 -11101101100 165,488 1 -11101101100 soon-to-premiere 1 -11101101100 stocking-making 1 -11101101100 584,674 1 -11101101100 non-contact 1 -11101101100 honey-graham 1 -11101101100 50-Series 1 -11101101100 super-mini 1 -11101101100 AH-1F 1 -11101101100 60,631 1 -11101101100 57,492 1 -11101101100 broader-coverage 1 -11101101100 commercial-satellite-launching 1 -11101101100 flat-head 1 -11101101100 Indy-style 1 -11101101100 INSTALL 1 -11101101100 modem-equipped 1 -11101101100 Kienzle 1 -11101101100 oil-eating 1 -11101101100 PW2000 1 -11101101100 toe-length 1 -11101101100 code-cracking 1 -11101101100 text-searching 1 -11101101100 92,173 1 -11101101100 laser-scanner 1 -11101101100 tennis-ball-size 1 -11101101100 plant-and-seed 1 -11101101100 CFM56-3B 1 -11101101100 140,663 1 -11101101100 Tom-and-Jerry 1 -11101101100 4-cylinder 1 -11101101100 razor-blade-thin 1 -11101101100 predesignated 1 -11101101100 392,360 1 -11101101100 239,405 1 -11101101100 563,864 1 -11101101100 barrel-shaped 1 -11101101100 French-cut 1 -11101101100 slide-maker 1 -11101101100 neon-green 1 -11101101100 spangly 1 -11101101100 communter 1 -11101101100 80386sx 1 -11101101100 332,604 1 -11101101100 CFM-56-3 1 -11101101100 CF6-59E2 1 -11101101100 soon-to-be-out 1 -11101101100 83,044 1 -11101101100 three-layer 1 -11101101100 venture-capital-backed 1 -11101101100 Off-the-road 1 -11101101100 foreign-flagged 1 -11101101100 dart-gun 1 -11101101100 488,803 1 -11101101100 1,022,889 1 -11101101100 287,903 1 -11101101100 snap-in 1 -11101101100 pesticidal 1 -11101101100 mamalian 1 -11101101100 39,728 1 -11101101100 near-abstract 1 -11101101100 lice-ridden 1 -11101101100 244,173 1 -11101101100 212,334 1 -11101101100 country-oriented 1 -11101101100 290-seat 1 -11101101100 CF680A 1 -11101101100 cartridge-loading 1 -11101101100 transplantrelated 1 -11101101100 computer-cleaning 1 -11101101100 limited-use 1 -11101101100 AH-1S 1 -11101101100 OH-58C 1 -11101101100 game-oriented 1 -11101101100 1-pound 1 -11101101100 iconlike 1 -11101101100 4980 1 -11101101100 silicone-filled 1 -11101101100 paint-coating 1 -11101101100 Rol 1 -11101101100 11/780 1 -11101101100 highest-performance 1 -11101101100 Canadian-assembled 1 -11101101100 drug-sensitive 1 -11101101100 129,578 1 -11101101100 anti-Biden 1 -11101101100 local-built 1 -11101101100 737-model 1 -11101101100 building-management 1 -11101101100 140,159 1 -11101101100 132,277 1 -11101101100 over-the-highway 1 -11101101100 disk-shaped 1 -11101101100 linden 1 -11101101100 122,828 1 -11101101100 safari-inspired 1 -11101101100 15,938 1 -11101101100 telephone-cordlike 1 -11101101100 dehorning 1 -11101101100 earlier-than-usual 1 -11101101100 oft-copied 1 -11101101100 211,772 1 -11101101100 1100/80 1 -11101101100 flu-linked 1 -11101101100 rib-wracking 1 -11101101100 flea-ridden 1 -11101101100 60-lane 1 -11101101100 crankshaft-pulley 1 -11101101100 cryptococcal 1 -11101101100 173,450 1 -11101101100 topless-dancer 1 -11101101100 self-performed 1 -11101101100 12-meter-class 1 -11101101100 exhaust-gas 1 -11101101100 air-cleaner-duct 1 -11101101100 Raleigh-brand 1 -11101101100 unrealeased 1 -11101101100 inefficacious 1 -11101101100 noninterest-bearing 1 -11101101100 Extaprint 1 -11101101100 lymphoid 1 -11101101100 240-series 1 -11101101100 2.8-liter 1 -11101101100 coated-magnetic 1 -11101101100 Ungranulated 1 -11101101100 rail-guided 1 -11101101100 electrical-railroad 1 -11101101100 27,616 1 -11101101100 57,503 1 -11101101100 98,792 1 -11101101100 4000-series 1 -11101101100 sculpted-glass 1 -11101101100 sand-blasted 1 -11101101100 single-masted 1 -11101101100 Sihanoukist 1 -11101101100 Baxters 1 -11101101100 investmentlike 1 -11101101100 Goodrich-brand 1 -11101101100 DDM-100 1 -11101101100 86,715 1 -11101101100 151,635 1 -11101101100 YMP 1 -11101101100 PARS-Datas 1 -11101101100 shinier 1 -11101101100 heavy-duty-vehicle 1 -11101101100 104,119 1 -11101101100 hospital-related 1 -11101101100 50-100-seat 1 -11101101100 fishnet 1 -11101101100 unmounted 1 -11101101100 CFM56-3C 1 -11101101100 seismic-air 1 -11101101100 128,704 1 -11101101100 3,096 1 -11101101100 off-the-farm 1 -11101101100 power-switching 1 -11101101100 152,246 1 -11101101100 X-MP432 1 -11101101100 2.4-ton 1 -11101101100 ozone-exposed 1 -11101101100 earth-sculpting 1 -11101101100 22,669 1 -11101101100 satellite-linked 1 -11101101100 fixed-base 1 -11101101100 332,721 1 -11101101100 183,875 1 -11101101100 twin-rotor 1 -11101101100 1,705,283 1 -11101101100 205,875 1 -11101101100 312,609 1 -11101101100 1,897,462 1 -11101101100 122,088 1 -11101101100 1,203,260 1 -11101101100 985,827 1 -11101101100 1,334,170 1 -11101101100 48,968 1 -11101101100 813,114 1 -11101101100 871,655 1 -11101101100 250-passenger 1 -11101101100 Penney-Missouri 1 -11101101100 anti-Campeau 1 -11101101100 custom-loaded 1 -11101101100 Petrovskite 1 -11101101100 89,385 1 -11101101100 111,660 1 -11101101100 Gortex 1 -11101101100 Hawaii-bound 1 -11101101100 91,800 1 -11101101100 Pennwalt-produced 1 -11101101100 365,322 1 -11101101100 2,744 1 -11101101100 Super-8 1 -11101101100 rhinestone-speckled 1 -11101101100 potato-sack 1 -11101101100 oven-prepared 1 -11101101100 wrap-around 1 -11101101100 918,348 1 -11101101100 285,308 1 -11101101100 Ohio-made 1 -11101101100 transferee 1 -11101101100 210,316 1 -11101101100 2,339,243 1 -11101101100 123,562 1 -11101101100 heat-and-eat 1 -11101101100 20,552 1 -11101101100 -18.2 1 -11101101100 interceptor-guidance 1 -11101101100 677,504 1 -11101101100 99,486 1 -11101101100 114,978 1 -11101101100 tamper-evident 1 -11101101100 supercolliding 1 -11101101100 6.1-liter 1 -11101101100 228-seat 1 -11101101100 163-mile 1 -11101101100 1,036,365 1 -11101101100 1,022,372 1 -11101101100 64,684 1 -11101101100 202,522 1 -11101101100 gluten-free 1 -11101101100 rodent-infested 1 -11101101100 medium-distance 1 -11101101100 buy-down 1 -11101101100 factory-made 1 -11101101100 less-defective 1 -11101101100 272,217 1 -11101101100 water-toting 1 -11101101100 radar-imaging 1 -11101101100 Europeanstyle 1 -11101101100 bootlegs 1 -11101101100 279,821 1 -11101101100 misprescribing 1 -11101101100 jounce 1 -11101101100 teardrop 1 -11101101100 speed-detection 1 -11101101100 gray-striped 1 -11101101100 fiberboard-and-bamboo-thatch 1 -11101101100 antispasm 1 -11101101100 22,936 1 -11101101100 smell-detecting 1 -11101101100 hand-carved 1 -11101101100 S-class 1 -11101101100 turret-style 1 -11101101100 CF680C2 1 -11101101100 alcohol-containing 1 -11101101100 imidazolinone 1 -11101101100 Southern-style 1 -11101101100 398,436 1 -11101101100 3,807 1 -11101101100 corrugated-iron 1 -11101101100 line-hand-wired 1 -11101101100 daisy-like 1 -11101101100 592,302 1 -11101101100 4,244 1 -11101101100 oriented-polypropylene 1 -11101101100 JT8D-217C 1 -11101101100 Western-made 1 -11101101100 lap-sized 1 -11101101100 product-monoclonal 1 -11101101100 single-domain 1 -11101101100 957,394 1 -11101101100 reduced-salt 1 -11101101100 body-armor 1 -11101101100 IBM-type 1 -11101101100 27,757 1 -11101101100 eat-in 1 -11101101100 pizza-eating 1 -11101101100 human-cartoon 1 -11101101100 Democratic-sounding 1 -11101101100 cold-bonded 1 -11101101100 113,778 1 -11101101100 100,923 1 -11101101100 weeder 1 -11101101100 hormone-secreting 1 -11101101100 59-game 1 -11101101100 7,097,262 1 -11101101100 animal-borne 1 -11101101100 more-entrenched 1 -11101101100 88,929 1 -11101101100 coal-bearing 1 -11101101100 unmortared 1 -11101101100 83,652 1 -11101101100 4,290,380 1 -11101101100 97,758 1 -11101101100 108,204 1 -11101101100 160,414 1 -11101101100 469,433 1 -11101101100 watersoluble 1 -11101101100 12,866,322 1 -11101101100 cassislike 1 -11101101100 custom-produced 1 -11101101100 higher-tar 1 -11101101100 ninth-floor 1 -11101101100 Pechora-class 1 -11101101100 contractor-caused 1 -11101101100 109,236 1 -11101101100 hackberry 1 -11101101100 Ivax-patented 1 -11101101100 rot-resistant 1 -11101101100 non-alcohol 1 -11101101100 frog-egg 1 -11101101100 Intosh 1 -11101101100 1911-12 1 -11101101100 liquid-filled 1 -11101101100 386-seat 1 -11101101100 bulb-making 1 -11101101100 post-chemotherapy 1 -11101101100 electrowon 1 -11101101100 soup-and-salad 1 -11101101100 F100-PW-200 1 -11101101100 immunosuppressive 1 -11101101100 non-brand 1 -11101101100 saggy 1 -11101101100 Medicaid-paid 1 -11101101100 motor-operated 1 -11101101100 car-sale 1 -11101101100 prepaid-card 1 -11101101100 defoliate 1 -11101101100 75-ton 1 -11101101100 4,485 1 -11101101100 190,445 1 -11101101100 234,719 1 -11101101100 25,985 1 -11101101100 1,603 1 -11101101100 226,698 1 -11101101100 89,600 1 -11101101100 CFM56-56s 1 -11101101100 thatch-roofed 1 -11101101100 superprecision 1 -11101101100 F-118 1 -11101101100 crocodile-skin 1 -11101101100 77,900 1 -11101101100 ultra-suede 1 -11101101100 shot-up 1 -11101101100 steno 1 -11101101100 24,600 1 -11101101100 airbag-equipped 1 -11101101100 67-mile 1 -11101101100 100,807 1 -11101101100 181,913 1 -11101101100 163,417 1 -11101101100 Top-20 1 -11101101100 turf-dominated 1 -11101101100 photo-reproduction 1 -11101101100 Banacol-label 1 -11101101100 3,829,000 1 -11101101100 seldom-stolen 1 -11101101100 592,412 1 -11101101100 491,210 1 -11101101100 oiled-cotton 1 -11101101100 Irish-made 1 -11101101100 good-for-you 1 -11101101100 notebook-sized 1 -11101101100 highperformance 1 -11101101100 battery-driven 1 -11101101100 British-assembled 1 -11101101100 nystatin 1 -11101101100 98,658 1 -11101101100 scanner-equipped 1 -11101101100 electronic-bomb 1 -11101101100 MIServer 1 -11101101100 infection-causing 1 -11101101100 heat-shock 1 -11101101100 immune-provoking 1 -11101101100 models-on-the-way-up 1 -11101101100 rainmaking 1 -11101101100 aliphatic 1 -11101101100 faster-working 1 -11101101100 107,067 1 -11101101100 floodlighted 1 -11101101100 hamburger-destined 1 -11101101100 124-seat 1 -11101101100 high-twist 1 -11101101100 Czech-made 1 -11101101100 Wordbench 1 -11101101100 cancercausing 1 -11101101100 161,630 1 -11101101100 teen-sex 1 -11101101100 tubeless 1 -11101101100 violence-laden 1 -11101101100 222,262 1 -11101101100 363,067 1 -11101101100 37-seat 1 -11101101100 hooved 1 -11101101100 basketball-style 1 -11101101100 congestion-predicting 1 -11101101100 limited-volume 1 -11101101100 161,502 1 -11101101100 departmental-sized 1 -11101101100 X-MP/24 1 -11101101100 super-moussed 1 -11101101100 low-vigor 1 -11101101100 BBB-sponsored 1 -11101101100 sustained-release 1 -11101101100 higher-caffeine 1 -11101101100 smoke-jumper 1 -11101101100 martin 1 -11101101100 rehydrated 1 -11101101100 623,500 1 -11101101100 360,189 1 -11101101100 362,669 1 -11101101100 729,729 1 -11101101100 280,380 1 -11101101100 1,491,224 1 -11101101100 1,430,242 1 -11101101100 54,083 1 -11101101100 45,886 1 -11101101100 186,193 1 -11101101100 get-away 1 -11101101100 feebased 1 -11101101100 highest-temperature 1 -11101101100 no-default 1 -11101101100 double-buffer 1 -11101101100 game-controlling 1 -11101101100 already-overcrowded 1 -11101101100 non-single 1 -11101101100 ultra-loud 1 -11101101100 bowhead 1 -11101101100 single-panel 1 -11101101100 velvet-covered 1 -11101101100 telephone-network 1 -11101101100 now-successful 1 -11101101100 RCA-made 1 -11101101100 126,735 1 -11101101100 ColorEdge 1 -11101101100 alkaline-manganese 1 -11101101100 33,868 1 -11101101100 198,647 1 -11101101100 cooling-water 1 -11101101100 diesel-engined 1 -11101101100 strew 1 -11101101100 fat-laden 1 -11101101100 pitson-powered 1 -11101101100 490-mph 1 -11101101100 75,715 1 -11101101100 1,875,711 1 -11101101100 freakiest 1 -11101101100 oats-based 1 -11101101100 market-disposable 1 -11101101100 500-year-old 1 -11101101100 prepreg 1 -11101101100 wind-detection 1 -11101101100 59,490 1 -11101101100 18,520 1 -11101101100 4,482 1 -11101101100 missile-grade 1 -11101101100 pari-mutuel 1 -11101101100 Chevrolet-brand 1 -11101101100 Geo-brand 1 -11101101100 167,724 1 -11101101100 amyloid-containing 1 -11101101100 2,000-cc 1 -11101101100 bias-constructed 1 -11101101100 V-2 1 -11101101100 chainmail 1 -11101101100 anise-flavored 1 -11101101100 short-to-medium-range 1 -11101101100 lunch-box-sized 1 -11101101100 African-inspired 1 -11101101100 Halston-label 1 -11101101100 traditional-- 1 -11101101100 boer 1 -11101101100 4,344,284 1 -11101101100 4,296,995 1 -11101101100 730,278 1 -11101101100 459,918 1 -11101101100 alcohol-powered 1 -11101101100 355,384 1 -11101101100 dependence-producing 1 -11101101100 AS400 1 -11101101100 strongest-selling 1 -11101101100 now-ubiquitous 1 -11101101100 vascular-lesion 1 -11101101100 BAC-1-11 1 -11101101100 83,443 1 -11101101100 72,272 1 -11101101100 60,550 1 -11101101100 explosive-packed 1 -11101101100 diposable 1 -11101101100 CCK-related 1 -11101101100 tree-trimming 1 -11101101100 grime-coated 1 -11101101100 door-sized 1 -11101101100 CFM56-3B2 1 -11101101100 wideshouldered 1 -11101101100 fiber-optic-based 1 -11101101100 110,353 1 -11101101100 brick-red 1 -11101101100 now-legal 1 -11101101100 20mm 1 -11101101100 Chrysler-brand 2 -11101101100 149,601 2 -11101101100 81-mm 2 -11101101100 177,512 2 -11101101100 non-volatile 2 -11101101100 125,774 2 -11101101100 Balloons 2 -11101101100 black-cased 2 -11101101100 slower-selling 2 -11101101100 deciduous 2 -11101101100 Huggies-brand 2 -11101101100 JT-9D 2 -11101101100 flue-gas 2 -11101101100 InCide 2 -11101101100 commission-driven 2 -11101101100 unripe 2 -11101101100 three-foot-tall 2 -11101101100 safety-critical 2 -11101101100 ink-and-brush 2 -11101101100 crunchier 2 -11101101100 Capraesque 2 -11101101100 helium-filled 2 -11101101100 T8 2 -11101101100 Howson-Algraphy 2 -11101101100 131,879 2 -11101101100 sometimes-violent 2 -11101101100 Beta-format 2 -11101101100 PC-Slave/286 2 -11101101100 frost-retarding 2 -11101101100 pale-green 2 -11101101100 4,686 2 -11101101100 24-exposure 2 -11101101100 Spectrum-based 2 -11101101100 163,295 2 -11101101100 trap-oxidizer 2 -11101101100 plug-compatible 2 -11101101100 140,528 2 -11101101100 patent-leather 2 -11101101100 108,575 2 -11101101100 145,386 2 -11101101100 cigarette-vending 2 -11101101100 foxglove 2 -11101101100 U.S.-protected 2 -11101101100 low-polluting 2 -11101101100 radar-carrying 2 -11101101100 154,387 2 -11101101100 fluid-filled 2 -11101101100 156,961 2 -11101101100 lymphocyte 2 -11101101100 5.8-liter 2 -11101101100 voice-stress 2 -11101101100 automatic-teller 2 -11101101100 French-English 2 -11101101100 waste-burning 2 -11101101100 cherry-tree 2 -11101101100 multifuel 2 -11101101100 693,515 2 -11101101100 semicustom 2 -11101101100 machine-gun-toting 2 -11101101100 rose-tinted 2 -11101101100 earth-mover 2 -11101101100 table-model 2 -11101101100 flint 2 -11101101100 177,563 2 -11101101100 140,567 2 -11101101100 anti-clot 2 -11101101100 Vuarnet 2 -11101101100 computer-output 2 -11101101100 notebook-size 2 -11101101100 23,189 2 -11101101100 steel-rimmed 2 -11101101100 148,911 2 -11101101100 higher-speed 2 -11101101100 10,214 2 -11101101100 structual 2 -11101101100 109,470 2 -11101101100 Sony-brand 2 -11101101100 blood-growth 2 -11101101100 fennel 2 -11101101100 E350 2 -11101101100 2-liter 2 -11101101100 8-millimeter 2 -11101101100 steel-hulled 2 -11101101100 1.7-liter 2 -11101101100 ultrafine 2 -11101101100 storm-tossed 2 -11101101100 desktop-presentation 2 -11101101100 YAG 2 -11101101100 3270 2 -11101101100 MacWrite 2 -11101101100 non-Apple 2 -11101101100 181,567 2 -11101101100 Olivetti-made 2 -11101101100 mild-to-moderate 2 -11101101100 ophthalmological 2 -11101101100 now-banned 2 -11101101100 Colorocs-designed 2 -11101101100 small-market 2 -11101101100 S27 2 -11101101100 Mateus 2 -11101101100 juke 2 -11101101100 different-colored 2 -11101101100 immuno-supportive 2 -11101101100 '57 2 -11101101100 mac+ 2 -11101101100 moated 2 -11101101100 knobby 2 -11101101100 shorter-skirt 2 -11101101100 tunnel-boring 2 -11101101100 runny 2 -11101101100 immune-boosting 2 -11101101100 Swat 2 -11101101100 ultra-high-speed 2 -11101101100 plum-colored 2 -11101101100 amyloid-producing 2 -11101101100 whole-virus 2 -11101101100 37,300 2 -11101101100 A15 2 -11101101100 third-power 2 -11101101100 low-saturated-fat 2 -11101101100 nonsteroidal 2 -11101101100 military-communications 2 -11101101100 4,546,245 2 -11101101100 126,654 2 -11101101100 130,348 2 -11101101100 139,575 2 -11101101100 highpowered 2 -11101101100 25mm 2 -11101101100 overmature 2 -11101101100 accident-warning 2 -11101101100 list-cleansing 2 -11101101100 white-blood 2 -11101101100 industrial-type 2 -11101101100 standalone 2 -11101101100 i.v. 2 -11101101100 teensy-weensy 2 -11101101100 low-performance 2 -11101101100 157,594 2 -11101101100 1,912,293 2 -11101101100 Tastykake 2 -11101101100 easy-to-read 2 -11101101100 crew-neck 2 -11101101100 less-polluting 2 -11101101100 youth-appeal 2 -11101101100 play-only 2 -11101101100 86,229 2 -11101101100 143-seat 2 -11101101100 ever-tinier 2 -11101101100 multi-processor 2 -11101101100 Mandarin-language 2 -11101101100 VDT-type 2 -11101101100 semi-precious 2 -11101101100 petits 2 -11101101100 dry-cell 2 -11101101100 open-neck 2 -11101101100 193,139 2 -11101101100 pre-1959 2 -11101101100 brazing 2 -11101101100 nonexempt 2 -11101101100 jellied 2 -11101101100 EDB-tainted 2 -11101101100 iron-based 2 -11101101100 heavyduty 2 -11101101100 classic-style 2 -11101101100 sporting-event 2 -11101101100 unwrinkled 2 -11101101100 Crayola 2 -11101101100 Apres 2 -11101101100 display-based 2 -11101101100 87,088 2 -11101101100 hemlock 2 -11101101100 RB211-524G 2 -11101101100 nail-polish 2 -11101101100 Cray-2S/4-128 2 -11101101100 engine-control 2 -11101101100 anaerobic 2 -11101101100 four-barrel 2 -11101101100 Lodgmate 2 -11101101100 made-for-cable 2 -11101101100 nonathletic 2 -11101101100 165,348 2 -11101101100 small-incision 2 -11101101100 air-bag-equipped 2 -11101101100 109,208 2 -11101101100 123,765 2 -11101101100 pre-islet 2 -11101101100 low-powered 2 -11101101100 insulin-producing 2 -11101101100 direct-random-access-memory 2 -11101101100 superconductor-based 2 -11101101100 chemotherapeutic 2 -11101101100 pre-sensitized 2 -11101101100 middle-ear 2 -11101101100 six-wheel 2 -11101101100 smog-forming 2 -11101101100 water-regulating 2 -11101101100 IBM-style 2 -11101101100 VaxSyn 2 -11101101100 3-series 2 -11101101100 fork-lift 2 -11101101100 weather-satellite 2 -11101101100 gum-inflaming 2 -11101101100 volt 2 -11101101100 troop-carrying 2 -11101101100 percapita 2 -11101101100 Egypt-bound 2 -11101101100 10-speed 2 -11101101100 crosscountry 2 -11101101100 itty-bitty 2 -11101101100 155,498 2 -11101101100 anti-migraine 2 -11101101100 wire-rim 2 -11101101100 1.9-liter 2 -11101101100 86,743 2 -11101101100 25,119 2 -11101101100 three-tone 2 -11101101100 1,799,595 2 -11101101100 birch-bark 2 -11101101100 more-promising 2 -11101101100 CFM56-3B1 2 -11101101100 snuffling 2 -11101101100 four-stage 2 -11101101100 Firestone-brand 2 -11101101100 Larousse 2 -11101101100 35,249 2 -11101101100 Benelli 2 -11101101100 anti-androgen 2 -11101101100 Asian-made 2 -11101101100 palm-leaf 2 -11101101100 sealskin 2 -11101101100 Continental/General 2 -11101101100 off-patent 2 -11101101100 high-field 2 -11101101100 second-run 2 -11101101100 medium-power 2 -11101101100 polycarboxylic 2 -11101101100 fish-net 2 -11101101100 airline-owned 2 -11101101100 16-minute 2 -11101101100 two-foot-wide 2 -11101101100 50,648 2 -11101101100 Mystic 2 -11101101100 forest-green 2 -11101101100 181,820 2 -11101101100 73,541 2 -11101101100 86,851 2 -11101101100 felt-tip 2 -11101101100 Dolby-encoded 2 -11101101100 revenue-driven 2 -11101101100 big-studio 2 -11101101100 hobnail 2 -11101101100 air-cushion 2 -11101101100 track-type 2 -11101101100 wire-rimmed 2 -11101101100 front-teeth 2 -11101101100 cell-replication 2 -11101101100 edge-triggered 2 -11101101100 HIND 2 -11101101100 ground-attack 2 -11101101100 JT9D-7R4 2 -11101101100 Am22V10 2 -11101101100 6,411 2 -11101101100 AT-compatible 2 -11101101100 opthalmic 2 -11101101100 Akihabara 2 -11101101100 PrintMaster 2 -11101101100 F-body 2 -11101101100 bridesmaid 2 -11101101100 223,376 2 -11101101100 extended-length 2 -11101101100 corn-colored 2 -11101101100 G-body 2 -11101101100 strip-mill 2 -11101101100 lizard-skin 2 -11101101100 muscle-toning 2 -11101101100 CFM56 2 -11101101100 bloodstain 2 -11101101100 MX6 2 -11101101100 postgame 2 -11101101100 IBM-made 2 -11101101100 472,600 2 -11101101100 youth-market 2 -11101101100 M-88 2 -11101101100 2.2-liter 2 -11101101100 4,668,203 2 -11101101100 136,771 2 -11101101100 121,326 2 -11101101100 psychotropic 2 -11101101100 JT9D-7R4G2 2 -11101101100 3B2/600 2 -11101101100 3B2 2 -11101101100 phone-system 2 -11101101100 dictionary-sized 2 -11101101100 mopey 3 -11101101100 M-113 3 -11101101100 V-tail 3 -11101101100 anti-epileptic 3 -11101101100 blue-gray 3 -11101101100 higher-density 3 -11101101100 132,440 3 -11101101100 hand-sewn 3 -11101101100 ski-lift 3 -11101101100 methanol-powered 3 -11101101100 non-pornographic 3 -11101101100 nine-millimeter 3 -11101101100 full-front 3 -11101101100 16-millimeter 3 -11101101100 hot-money 3 -11101101100 opalescent 3 -11101101100 foreign-patented 3 -11101101100 anti-hepatitis 3 -11101101100 2.0-liter 3 -11101101100 American-designed 3 -11101101100 mimeograph 3 -11101101100 XT-compatible 3 -11101101100 1980-model 3 -11101101100 eight-millimeter 3 -11101101100 Chicago-style 3 -11101101100 self-regarding 3 -11101101100 Ohio-built 3 -11101101100 641,087 3 -11101101100 in-office 3 -11101101100 home-satellite 3 -11101101100 pre-feminist 3 -11101101100 AIDs 3 -11101101100 cottonwood 3 -11101101100 electrophotographic 3 -11101101100 coronary-bypass 3 -11101101100 high-blood-pressure 3 -11101101100 CFM56-3 3 -11101101100 twice-a-year 3 -11101101100 eraseable 3 -11101101100 semi-frozen 3 -11101101100 questing 3 -11101101100 long-stemmed 3 -11101101100 adult-sized 3 -11101101100 Russian-built 3 -11101101100 high-proof 3 -11101101100 hallucinogenic 3 -11101101100 non-steroid 3 -11101101100 IBM-PC 3 -11101101100 System/36 3 -11101101100 egg-white 3 -11101101100 foreign-developed 3 -11101101100 telephone-equipped 3 -11101101100 1960s-vintage 3 -11101101100 handheld 3 -11101101100 Winnie-the-Pooh 3 -11101101100 upper-end 3 -11101101100 handcrafted 3 -11101101100 room-sized 3 -11101101100 ionization 3 -11101101100 OH-58D 3 -11101101100 S10 3 -11101101100 Unisteel 3 -11101101100 Mark-48 3 -11101101100 angora 3 -11101101100 spandex 3 -11101101100 oat-based 3 -11101101100 well-cut 3 -11101101100 coliform 3 -11101101100 tangerine 3 -11101101100 Bounceroo 3 -11101101100 bongo 3 -11101101100 hummable 3 -11101101100 cochlear 3 -11101101100 methanol-fueled 3 -11101101100 deep-diving 3 -11101101100 VR-G 3 -11101101100 finback 3 -11101101100 FSD-II 3 -11101101100 metal-alloy 3 -11101101100 10-foot-high 3 -11101101100 plano 3 -11101101100 nucleic 3 -11101101100 crossbred 3 -11101101100 internal-combustion 3 -11101101100 Yum 3 -11101101100 gold-tipped 3 -11101101100 short-oiled 3 -11101101100 MPS 3 -11101101100 36-foot 3 -11101101100 Hilux 3 -11101101100 thousand-dollar 3 -11101101100 pay-for-view 3 -11101101100 random-source 3 -11101101100 herbicide-tainted 3 -11101101100 DieHard 3 -11101101100 horsehair 3 -11101101100 medium-launch 3 -11101101100 ficus 3 -11101101100 fee-earning 3 -11101101100 humpback 3 -11101101100 2,013 3 -11101101100 dressier 3 -11101101100 clone-proof 3 -11101101100 risk-reducing 3 -11101101100 D-Flawless 3 -11101101100 700-series 3 -11101101100 Roledex 3 -11101101100 VHS-format 3 -11101101100 Mylar 3 -11101101100 soft-money 3 -11101101100 small-donor 3 -11101101100 tumor-infiltrating 3 -11101101100 red-eye 3 -11101101100 T-series 3 -11101101100 methane-making 3 -11101101100 antigen-binding 3 -11101101100 PW4060 3 -11101101100 roll-your-own 3 -11101101100 in-room 3 -11101101100 two-toned 3 -11101101100 higher-tech 3 -11101101100 suitcase-sized 3 -11101101100 immune-deficient 3 -11101101100 diluted-juice 3 -11101101100 black-painted 3 -11101101100 multipoint 3 -11101101100 CF6-80 3 -11101101100 yard-long 3 -11101101100 Spacemaker 3 -11101101100 30mm 3 -11101101100 telefax 3 -11101101100 140-seat 3 -11101101100 bag-handling 3 -11101101100 5-liter 3 -11101101100 interest-charge 3 -11101101100 Jeep-type 3 -11101101100 nasogastric 3 -11101101100 gas-guzzling 3 -11101101100 flat-bed 4 -11101101100 interstitial 4 -11101101100 Bear-H 4 -11101101100 briny 4 -11101101100 voice-processing 4 -11101101100 fat-soluble 4 -11101101100 queen-size 4 -11101101100 melanin-producing 4 -11101101100 two-section 4 -11101101100 Day-Glo 4 -11101101100 staphylococcal 4 -11101101100 F-Series 4 -11101101100 RISC/UNIX 4 -11101101100 black-rimmed 4 -11101101100 Hi-C 4 -11101101100 odorant 4 -11101101100 System/88 4 -11101101100 scalping 4 -11101101100 soft-leather 4 -11101101100 100-passenger 4 -11101101100 gear-cutting 4 -11101101100 5-series 4 -11101101100 felt-tipped 4 -11101101100 hot-weather 4 -11101101100 Axxess 4 -11101101100 late-harvest 4 -11101101100 Flxible 4 -11101101100 64-kilobit 4 -11101101100 die-cast 4 -11101101100 silicon-based 4 -11101101100 whitewall 4 -11101101100 Sparc-based 4 -11101101100 lower-calorie 4 -11101101100 king-size 4 -11101101100 blood-chemistry 4 -11101101100 high-demand 4 -11101101100 farm-to-market 4 -11101101100 Wisk 4 -11101101100 foam-rubber 4 -11101101100 pewter 4 -11101101100 satellite-based 4 -11101101100 chocolate-chip 4 -11101101100 higher-resolution 4 -11101101100 trichothecene 4 -11101101100 lower-middle 4 -11101101100 bulk-cargo 4 -11101101100 PEG 4 -11101101100 286-based 4 -11101101100 terrycloth 4 -11101101100 high-heeled 4 -11101101100 four-processor 4 -11101101100 high-top 4 -11101101100 Ford-built 4 -11101101100 economywide 4 -11101101100 pre-shrunk 4 -11101101100 transdermal 4 -11101101100 pullover 4 -11101101100 catgut 4 -11101101100 minke 4 -11101101100 pull-down 4 -11101101100 more-complex 4 -11101101100 short-year 4 -11101101100 non-aerosol 4 -11101101100 pre-1975 4 -11101101100 absorbable 5 -11101101100 C/K 5 -11101101100 premalignant 5 -11101101100 fresh-cut 5 -11101101100 ballpoint 5 -11101101100 pre-production 5 -11101101100 PW4000 5 -11101101100 tortoise-shell 5 -11101101100 RB211-535E4 5 -11101101100 controlled-release 5 -11101101100 HFC 5 -11101101100 rechargeable 5 -11101101100 feral 5 -11101101100 cash-dispensing 5 -11101101100 non-interstate 5 -11101101100 C-band 5 -11101101100 E-body 5 -11101101100 peptic 5 -11101101100 chlorinated 5 -11101101100 non-steroidal 5 -11101101100 clot-busting 5 -11101101100 Westlaw 5 -11101101100 health-oriented 5 -11101101100 cholesterol-reducing 5 -11101101100 double-decker 5 -11101101100 C-body 5 -11101101100 military-type 5 -11101101100 ibuprofen-based 5 -11101101100 cut-up 5 -11101101100 wing-tip 5 -11101101100 top-end 5 -11101101100 piped-in 5 -11101101100 1984-model 5 -11101101100 Pennsylvania-based 5 -11101101100 sleeveless 5 -11101101100 canvas-top 5 -11101101100 crime-fighting 5 -11101101100 minesweeping 5 -11101101100 pontoon 5 -11101101100 beribboned 5 -11101101100 blood-testing 5 -11101101100 metal-oxide 5 -11101101100 long-tailed 5 -11101101100 5.7-liter 5 -11101101100 U.S.made 6 -11101101100 foreign-built 6 -11101101100 idle-stabilization 6 -11101101100 S-15 6 -11101101100 tight-fitting 6 -11101101100 chocolate-covered 6 -11101101100 F-350 6 -11101101100 fighter-plane 6 -11101101100 bonsai 6 -11101101100 food-borne 6 -11101101100 high-mobility 6 -11101101100 reduced-calorie 6 -11101101100 mangrove 6 -11101101100 urology 6 -11101101100 jean 6 -11101101100 anti-friction 6 -11101101100 back-alley 6 -11101101100 68020 6 -11101101100 13-inch 6 -11101101100 sports-utility 6 -11101101100 home-cooked 6 -11101101100 MX-6 6 -11101101100 1982-model 6 -11101101100 Canadian-built 6 -11101101100 American-flag 6 -11101101100 heavy-lift 6 -11101101100 home-made 6 -11101101100 cell-replicating 6 -11101101100 early-model 6 -11101101100 Vax 6 -11101101100 sportier 6 -11101101100 acid-washed 6 -11101101100 self-locking 6 -11101101100 short-sleeved 6 -11101101100 tunable 6 -11101101100 MHC 6 -11101101100 Ultralife 6 -11101101100 nitrogen-fixing 7 -11101101100 Godiva 7 -11101101100 cypress 7 -11101101100 E-150 7 -11101101100 1983-model 7 -11101101100 loose-leaf 7 -11101101100 urinary-tract 7 -11101101100 pain-killing 7 -11101101100 multivalve 7 -11101101100 inorganic 7 -11101101100 relational 7 -11101101100 Proleukin 7 -11101101100 10-ton 7 -11101101100 phone-answering 7 -11101101100 reconstructive 7 -11101101100 T-suppressor 7 -11101101100 hickory 7 -11101101100 parallel-processing 7 -11101101100 Seahawk 7 -11101101100 monogrammed 7 -11101101100 .45-caliber 7 -11101101100 throw-away 7 -11101101100 bronchial 7 -11101101100 frictionless 7 -11101101100 Energizer 7 -11101101100 medium-weight 8 -11101101100 stand-by 8 -11101101100 Copperhead 8 -11101101100 higher-powered 8 -11101101100 fungal 8 -11101101100 reportorial 8 -11101101100 late-model 8 -11101101100 single-chain 8 -11101101100 K-body 8 -11101101100 manila 8 -11101101100 highspeed 8 -11101101100 LAK 8 -11101101100 fast-selling 8 -11101101100 ball-point 8 -11101101100 Oreo 8 -11101101100 pea 8 -11101101100 Barracuda 8 -11101101100 UART 8 -11101101100 Carter-era 8 -11101101100 sectional 8 -11101101100 two-wheel-drive 9 -11101101100 anti-plaque 9 -11101101100 NetView 9 -11101101100 Betamax 9 -11101101100 low-alcohol 9 -11101101100 multi-user 9 -11101101100 touch-screen 9 -11101101100 multiprocessor 9 -11101101100 fuel-injected 9 -11101101100 Mies 9 -11101101100 CF6-80C2 9 -11101101100 public-domain 9 -11101101100 pre-Olympic 9 -11101101100 1985-model 9 -11101101100 free-electron 9 -11101101100 reddish 9 -11101101100 star-studded 10 -11101101100 12-meter 10 -11101101100 nine-volt 10 -11101101100 extended-body 10 -11101101100 red-white-and-blue 10 -11101101100 rose-colored 10 -11101101100 MacIntosh 10 -11101101100 radio-controlled 10 -11101101100 musk 10 -11101101100 papilloma 10 -11101101100 gasoline-powered 10 -11101101100 flatbed 10 -11101101100 mine-sweeper 10 -11101101100 levitating 10 -11101101100 E-250 10 -11101101100 cathode-ray 10 -11101101100 RISC-based 10 -11101101100 fuel-system 10 -11101101100 mashed 10 -11101101100 H-body 11 -11101101100 AM-FM 11 -11101101100 made-for-television 11 -11101101100 higher-performance 11 -11101101100 corneal 11 -11101101100 congenital 11 -11101101100 T-helper 12 -11101101100 Tampax 12 -11101101100 transportable 12 -11101101100 2.3-liter 12 -11101101100 80386-based 12 -11101101100 anabolic 12 -11101101100 cashmere 12 -11101101100 J-body 12 -11101101100 386-based 12 -11101101100 high-power 13 -11101101100 Braille 13 -11101101100 cancer-fighting 13 -11101101100 JT8D 13 -11101101100 paperless 13 -11101101100 diesel-powered 13 -11101101100 sunken 13 -11101101100 laser-guided 13 -11101101100 tartar-control 13 -11101101100 sequined 13 -11101101100 low-back 13 -11101101100 hot-air 13 -11101101100 four-megabit 14 -11101101100 industry-standard 14 -11101101100 Rolodex 14 -11101101100 solar-powered 14 -11101101100 T-4 15 -11101101100 large-screen 15 -11101101100 arthritic 15 -11101101100 four-speed 15 -11101101100 fault-tolerant 15 -11101101100 lead-acid 15 -11101101100 upper-middle 15 -11101101100 bullet-proof 15 -11101101100 American-built 15 -11101101100 khaki 16 -11101101100 suede 16 -11101101100 S-10 16 -11101101100 incandescent 16 -11101101100 battery-operated 16 -11101101100 levitated 16 -11101101100 electrolytic 16 -11101101100 toy-based 17 -11101101100 multiuser 17 -11101101100 horn-rimmed 17 -11101101100 3B 17 -11101101100 solid-state 17 -11101101100 per-unit 17 -11101101100 R-rated 17 -11101101100 parasitic 17 -11101101100 four-wheeled 17 -11101101100 first-person 17 -11101101100 dual-deck 17 -11101101100 excimer 18 -11101101100 diskless 18 -11101101100 lap-top 18 -11101101100 hypodermic 18 -11101101100 superfast 18 -11101101100 chauffeur-driven 18 -11101101100 five-ton 19 -11101101100 F-series 19 -11101101100 transgenic 20 -11101101100 desk-top 20 -11101101100 nonoperating 20 -11101101100 E-350 20 -11101101100 Unix-based 20 -11101101100 made-for-TV 21 -11101101100 submachine 21 -11101101100 A-body 21 -11101101100 open-heart 21 -11101101100 CMOS 21 -11101101100 life-saving 22 -11101101100 256K 22 -11101101100 LifeStyles 22 -11101101100 pre-recorded 22 -11101101100 self-employment 23 -11101101100 16-bit 23 -11101101100 custom-designed 24 -11101101100 aerobic 24 -11101101100 multipurpose 24 -11101101100 rear-wheel-drive 25 -11101101100 battery-powered 25 -11101101100 copycat 26 -11101101100 Econoline 26 -11101101100 throwaway 26 -11101101100 bulletproof 27 -11101101100 domestic-made 27 -11101101100 medicinal 28 -11101101100 erasable 28 -11101101100 PC-AT 28 -11101101100 high-resolution 30 -11101101100 motorized 31 -11101101100 fluorescent 31 -11101101100 Florsheim 33 -11101101100 Aerostar 33 -11101101100 big-selling 35 -11101101100 alkaline 36 -11101101100 T4 38 -11101101100 light-duty 39 -11101101100 pornographic 39 -11101101100 sport-utility 40 -11101101100 blood-pressure 41 -11101101100 32-bit 41 -11101101100 prerecorded 42 -11101101100 unearned 42 -11101101100 1989-model 42 -11101101100 1990-model 42 -11101101100 medium-duty 42 -11101101100 all-terrain 43 -11101101100 front-wheel-drive 45 -11101101100 radial 46 -11101101100 programmable 47 -11101101100 high-temperature 52 -11101101100 french 52 -11101101100 1987-model 54 -11101101100 phantom 54 -11101101100 nuclear-powered 55 -11101101100 bacterial 56 -11101101100 four-wheel-drive 59 -11101101100 full-sized 60 -11101101100 U.S.-built 62 -11101101100 mid-range 64 -11101101100 one-megabit 64 -11101101100 tax-deferred 65 -11101101100 Japanese-made 85 -11101101100 armored 104 -11101101100 laptop 107 -11101101100 heavy-duty 109 -11101101100 customized 112 -11101101100 VAX 117 -11101101100 RISC 140 -11101101100 hand-held 145 -11101101100 American-made 156 -11101101100 IBM-compatible 165 -11101101100 teller 172 -11101101100 midrange 177 -11101101100 high-performance 198 -11101101100 discretionary 219 -11101101100 high-speed 236 -11101101100 per-capita 258 -11101101100 desktop 283 -11101101100 disposable 295 -11101101100 portable 331 -11101101100 mainframe 455 -11101101100 Macintosh 489 -11101101100 prescription 562 -11101101100 taxable 784 -11101101100 blue 974 -11101101100 seasonal 1205 -11101101100 personal 6784 -11101101100 gross 1841 -111011011010 fetal-monitoring 1 -111011011010 yield-enhancing 1 -111011011010 already-unhappy 1 -111011011010 fitness-center 1 -111011011010 lower-saturated-fat 1 -111011011010 pre-acquisition 1 -111011011010 liquids-filtering 1 -111011011010 attacksubmarine 1 -111011011010 position-locating 1 -111011011010 280ZX 1 -111011011010 collision-alert 1 -111011011010 anti-fire 1 -111011011010 patient-handling 1 -111011011010 dowsing 1 -111011011010 death-dealing 1 -111011011010 clear-amber 1 -111011011010 non-motor 1 -111011011010 metal-detecting 1 -111011011010 Eurocheque 1 -111011011010 food-grade 1 -111011011010 food-stand 1 -111011011010 mid-price 1 -111011011010 computer-image-generation 1 -111011011010 fixed-insurance 1 -111011011010 laser-optical 1 -111011011010 high-intelligence 1 -111011011010 data-measuring 1 -111011011010 microcomputer-developed 1 -111011011010 beast-shaped 1 -111011011010 petroleum-distribution 1 -111011011010 image-seeking 1 -111011011010 processcontrol 1 -111011011010 high-ridership 1 -111011011010 undissonant 1 -111011011010 ammunition-handling 1 -111011011010 air-pollution-control 1 -111011011010 shoplifting-detection 1 -111011011010 Indy-racer 1 -111011011010 MS-DOS-compatible 1 -111011011010 mud-shedding 1 -111011011010 meat-grinding 1 -111011011010 air-power 1 -111011011010 luminescent 1 -111011011010 propeller-making 1 -111011011010 fictive 1 -111011011010 submarine-periscope 1 -111011011010 lecture-oriented 1 -111011011010 18.8-year 1 -111011011010 pecan-processing 1 -111011011010 Marxist-inclined 1 -111011011010 stamped-metal 1 -111011011010 dolly 1 -111011011010 super-cooling 1 -111011011010 avalanche-prone 1 -111011011010 position-determining 1 -111011011010 heat-related 1 -111011011010 motel-room 1 -111011011010 interconnecting 1 -111011011010 misdiagnosing 1 -111011011010 underseas-surveillance 1 -111011011010 air-handling 1 -111011011010 target-designating 1 -111011011010 stuck-together 1 -111011011010 30-by-50-inch 1 -111011011010 electronic-document 1 -111011011010 submarine-control 1 -111011011010 sailcloth 1 -111011011010 quick-release 1 -111011011010 shock-absorbing 1 -111011011010 plastics-extrusion 1 -111011011010 military-satellite-launching 1 -111011011010 lawn-watering 1 -111011011010 kinkier 1 -111011011010 shoe-care 1 -111011011010 advanced-TV 1 -111011011010 actuation 1 -111011011010 tube-making 1 -111011011010 offset-printing 1 -111011011010 powerconversion 1 -111011011010 microcomputer-related 1 -111011011010 extra-vehicular 1 -111011011010 card-access 1 -111011011010 securities-offering 1 -111011011010 Nissan-built 1 -111011011010 water-recreation 1 -111011011010 credit-evaluation 1 -111011011010 PW2 1 -111011011010 water-testing 1 -111011011010 precision-machined 1 -111011011010 generation-and-transmission 1 -111011011010 color-transmission 1 -111011011010 maple-covered 1 -111011011010 water-control 1 -111011011010 helicopter-modification 1 -111011011010 fingerprinting-identification 1 -111011011010 Maloneys 1 -111011011010 tactical-communications 1 -111011011010 upper-atmospheric 1 -111011011010 electromedia 1 -111011011010 160,360 1 -111011011010 emergency-warning 1 -111011011010 Scottish-style 1 -111011011010 tape-backup 1 -111011011010 per-inmate 1 -111011011010 orthopedic-support 1 -111011011010 target-detection 1 -111011011010 missile-recovery 1 -111011011010 ECR-42 1 -111011011010 can-manufacturing 1 -111011011010 remoter 1 -111011011010 low-oxygen 1 -111011011010 threat-warning 1 -111011011010 fusillage 1 -111011011010 MTV-inspired 1 -111011011010 yak-butter 1 -111011011010 Protestant-Catholic 1 -111011011010 military-plane 1 -111011011010 superthin 1 -111011011010 aspartame-containing 1 -111011011010 electricity-consuming 1 -111011011010 oil-tube 1 -111011011010 radio-phonograph-tape 1 -111011011010 record-player 1 -111011011010 company-approved 1 -111011011010 circular-knitting 1 -111011011010 private-voice 1 -111011011010 fare-controls 1 -111011011010 dioxide-removal 1 -111011011010 nuclearpropulsion 1 -111011011010 aircraft-targeting 1 -111011011010 faculty-room 1 -111011011010 rubber-gloves 1 -111011011010 shipboard-communications 1 -111011011010 tracking-station 1 -111011011010 vascular-access 1 -111011011010 medical-grade 1 -111011011010 treatment-center 1 -111011011010 can-washing 1 -111011011010 miniature-stereo 1 -111011011010 Japanese-government-sponsored 1 -111011011010 narcotic-related 1 -111011011010 exhaust-system 1 -111011011010 horse-sized 1 -111011011010 non-Wang 1 -111011011010 seldom-ordered 1 -111011011010 video-editing 1 -111011011010 copper-clad 1 -111011011010 night-sight 1 -111011011010 trading-screen 1 -111011011010 magnetic-resonance-imaging 1 -111011011010 Houseworks 1 -111011011010 hand-cream 1 -111011011010 P&H 1 -111011011010 digital-parts 1 -111011011010 noise-reduction 1 -111011011010 heat-sealing 1 -111011011010 pictographic 1 -111011011010 ultra-sensitive 1 -111011011010 computer-softwear 1 -111011011010 seat-reclining 1 -111011011010 missile-test 1 -111011011010 65-60 1 -111011011010 1200-series 1 -111011011010 beverage-production 1 -111011011010 field-combat 1 -111011011010 laser-guidance 1 -111011011010 bridge-building 1 -111011011010 body-panel 1 -111011011010 telecommunications-switching 1 -111011011010 foxhole-digging 1 -111011011010 armored-car 1 -111011011010 wing-control 1 -111011011010 progessive-cavity 1 -111011011010 cholesterol-measuring 1 -111011011010 machinery-calibration 1 -111011011010 Unix-like 1 -111011011010 less-interesting 1 -111011011010 thermal-process 1 -111011011010 dark-chocolate 1 -111011011010 automated-process-control 1 -111011011010 welding-assembly 1 -111011011010 automobile-production 1 -111011011010 bourbon-pecan 1 -111011011010 French-sounding 1 -111011011010 53,290 1 -111011011010 55,115 1 -111011011010 four-alarm 1 -111011011010 aircraft-evacuation 1 -111011011010 field-goals-allowed 1 -111011011010 commercial-cooking 1 -111011011010 self-rescue 1 -111011011010 museum-bashing 1 -111011011010 multisexual 1 -111011011010 arrow-felled 1 -111011011010 tacky-looking 1 -111011011010 balloonlike 1 -111011011010 dehumidification 1 -111011011010 pulmonary-care 1 -111011011010 fluid-transfer 1 -111011011010 A-car 1 -111011011010 adapter-VCR 1 -111011011010 square-mile 1 -111011011010 garbage-dump 1 -111011011010 convection 1 -111011011010 automatic-brake 1 -111011011010 artillery-projectile 1 -111011011010 water-jet-assisted 1 -111011011010 diamond-dusted 1 -111011011010 semi-stiff 1 -111011011010 wild-game 1 -111011011010 dimension-scanning 1 -111011011010 laser-inspection 1 -111011011010 accelerator-control 1 -111011011010 government-donated 1 -111011011010 Axcess 1 -111011011010 Renault-made 1 -111011011010 openwork 1 -111011011010 security-themed 1 -111011011010 pro-Kemp 1 -111011011010 balance-weighted 1 -111011011010 physical-rehabilitation 1 -111011011010 non-beverage 1 -111011011010 river-crossing 1 -111011011010 non-bar 1 -111011011010 bobbin 1 -111011011010 aluminum-housing 1 -111011011010 paint-trim 1 -111011011010 stair-stepped 1 -111011011010 extra-high-voltage 1 -111011011010 boarding-pass 1 -111011011010 electrical-mechanical 1 -111011011010 blood-processing 1 -111011011010 breath-analyzing 1 -111011011010 rerevised 1 -111011011010 ready-to-plant 1 -111011011010 metal-detector 1 -111011011010 intrusion-detection 1 -111011011010 professional-designation 1 -111011011010 pine-filled 1 -111011011010 satellite-terminal 1 -111011011010 boars'-tusk 1 -111011011010 roof-control 1 -111011011010 even-stranger 1 -111011011010 bank-brokerage 1 -111011011010 self-play 1 -111011011010 bomb-case 1 -111011011010 vision-correction 1 -111011011010 electric-communications 1 -111011011010 hair-salon 1 -111011011010 oil-extraction 1 -111011011010 13,459 1 -111011011010 picture-enhancing 1 -111011011010 Anti-Federalist 1 -111011011010 DEC-compatible 1 -111011011010 LN-700 1 -111011011010 cell-controller 1 -111011011010 ticket-processing 1 -111011011010 engine-idle 1 -111011011010 auto-dialing 1 -111011011010 anti-CBW 1 -111011011010 properties-initially 1 -111011011010 bomb-targeting 1 -111011011010 tuning-fork 1 -111011011010 light-producing 1 -111011011010 electro-hydraulic 1 -111011011010 paper-plant 1 -111011011010 debt-covenant 1 -111011011010 industrial-electrical 1 -111011011010 lighttruck 1 -111011011010 vehicle-customization 1 -111011011010 first-trimester 1 -111011011010 executive-style 1 -111011011010 caraway 1 -111011011010 data-encryption 1 -111011011010 electronic-processing 1 -111011011010 super-smart 1 -111011011010 pastilles 1 -111011011010 beer-brewing 1 -111011011010 radio-tracking 1 -111011011010 clay-tile 1 -111011011010 storm-sewer 1 -111011011010 criterion-referenced 1 -111011011010 conusmer 1 -111011011010 Adelphia-owned 1 -111011011010 ivied 1 -111011011010 air-separation 1 -111011011010 10,000-share 1 -111011011010 leveraged-takeover 1 -111011011010 diagnotic 1 -111011011010 news-staff 1 -111011011010 blood-coagulation 1 -111011011010 motor-drive 1 -111011011010 ABM-capable 1 -111011011010 electro-rheological 1 -111011011010 valve-type 1 -111011011010 electric-arc 1 -111011011010 business-automation 1 -111011011010 missile-delivery 1 -111011011010 pneumatic-control 1 -111011011010 adult-training 1 -111011011010 paint-spraying 1 -111011011010 harpoonlike 1 -111011011010 doll-making 1 -111011011010 nonexplosive 1 -111011011010 product-sample 1 -111011011010 de-energize 1 -111011011010 ground-station 1 -111011011010 cold-formed 1 -111011011010 debt-like 1 -111011011010 all-funds 1 -111011011010 TouchTone 1 -111011011010 information-communication 1 -111011011010 computer-automated 1 -111011011010 rocket-launching 1 -111011011010 mail-transportation 1 -111011011010 steam-generating 1 -111011011010 catalpa 1 -111011011010 automobile-finishing 1 -111011011010 long-idle 1 -111011011010 biomagnetic 1 -111011011010 information-network 1 -111011011010 telecommuications 1 -111011011010 global-education 1 -111011011010 erosion-caused 1 -111011011010 transportation-engine 1 -111011011010 laser-surgery 1 -111011011010 rocket-launcher 1 -111011011010 MasterCare 1 -111011011010 mobile-missile-launching 1 -111011011010 cargo-compartment 1 -111011011010 4,792 1 -111011011010 non-porous 1 -111011011010 color-mapping 1 -111011011010 orthopaedic 1 -111011011010 asphalt-paving 1 -111011011010 optical-laser 1 -111011011010 image-management 1 -111011011010 battlefield-electronic 1 -111011011010 radar-simulation 1 -111011011010 drug-aid 1 -111011011010 tire-changing 1 -111011011010 saucer-shaped 1 -111011011010 attack-ad 1 -111011011010 passenger-related 1 -111011011010 on-the-water 1 -111011011010 explosives-related 1 -111011011010 income-reporting 1 -111011011010 tax-effort 1 -111011011010 Luron 1 -111011011010 2.5-ounce 1 -111011011010 noise-cancellation 1 -111011011010 tool-making 1 -111011011010 postcard-size 1 -111011011010 12-channel 1 -111011011010 radar-system 1 -111011011010 pre-Revolutionary 1 -111011011010 non-durable-goods 1 -111011011010 white-baby's-breath 1 -111011011010 computerized-networking 1 -111011011010 environmental/business-management 1 -111011011010 arts-related 1 -111011011010 opthalmological 1 -111011011010 electrical-power-generating 1 -111011011010 test-and-measurement 1 -111011011010 10-foot-long 1 -111011011010 U.K.-built 1 -111011011010 automated-people-mover 1 -111011011010 semiconductor-related 1 -111011011010 national-achievement 1 -111011011010 heat-shrink 1 -111011011010 natural-gas-transportation 1 -111011011010 worker-referral 1 -111011011010 sepia 1 -111011011010 marketing-motion 1 -111011011010 impact-printer 1 -111011011010 flexible-production 1 -111011011010 Scotchgard 1 -111011011010 200-milliliter 1 -111011011010 nuclear-weapons-carrying 1 -111011011010 computer-graphics-display 1 -111011011010 ultrasonic-scanning 1 -111011011010 outerwing 1 -111011011010 urban-transit 1 -111011011010 customer-mandated 1 -111011011010 status-determination 1 -111011011010 electrical/electronic 1 -111011011010 inking 1 -111011011010 work-group 1 -111011011010 weapons-tactics 1 -111011011010 heart-monitoring 1 -111011011010 seafood-poisoning 1 -111011011010 chip-mounted 1 -111011011010 pre-press 1 -111011011010 heart-support 1 -111011011010 photo-optical 1 -111011011010 cement-importing 1 -111011011010 lower-register 1 -111011011010 opto-electronic 1 -111011011010 day-in-the-life 1 -111011011010 electrical-cable 1 -111011011010 commercial-information 1 -111011011010 industrial-cleaning 1 -111011011010 accoustic 1 -111011011010 devil-worship 1 -111011011010 label-application 1 -111011011010 fire-direction 1 -111011011010 transaction-entry 1 -111011011010 Risc-based 1 -111011011010 datacommunications 1 -111011011010 call-screening 1 -111011011010 production-floor 1 -111011011010 weapon-guidance 1 -111011011010 optical-character-recognition 1 -111011011010 well-logging 1 -111011011010 intercommunications 1 -111011011010 mill-type 1 -111011011010 page-composition 1 -111011011010 fearsome-sounding 1 -111011011010 submarine-propeller 1 -111011011010 pilot-control 1 -111011011010 lawn-feeding 1 -111011011010 self-calibrating 1 -111011011010 image-intensification 1 -111011011010 oil-encrusted 1 -111011011010 blood-salvage 1 -111011011010 flatrolled 1 -111011011010 uncrate 1 -111011011010 building-control 1 -111011011010 comet-like 1 -111011011010 microwave-landing 1 -111011011010 precision-control 1 -111011011010 petroleum-monitoring 1 -111011011010 radar-related 1 -111011011010 Ku-Band 1 -111011011010 scavanged 1 -111011011010 flight-controller 1 -111011011010 blue-glazed 1 -111011011010 gunnery-training 1 -111011011010 slide-making 1 -111011011010 outdoor-maintenance 1 -111011011010 non-CASE 1 -111011011010 energy-monitoring 1 -111011011010 helicopter-missile 1 -111011011010 heavy-maintenance 1 -111011011010 business-switchboard 1 -111011011010 time-stamping 1 -111011011010 mailing-room 1 -111011011010 military-explosive 1 -111011011010 yellow-shafted 1 -111011011010 glass-sided 1 -111011011010 strike-forced 1 -111011011010 dta-processing 1 -111011011010 spray-paint-resistant 1 -111011011010 fuel-measurement 1 -111011011010 plastic-extrusion 1 -111011011010 32-ounce 1 -111011011010 pasted-in 1 -111011011010 fluid-purification 1 -111011011010 82-game 1 -111011011010 1,062,016 1 -111011011010 damage-repair 1 -111011011010 defense-electronic 1 -111011011010 town-hall-like 1 -111011011010 stroke-related 1 -111011011010 process-metering 1 -111011011010 fluid-cracking 1 -111011011010 radio-linked 1 -111011011010 passenger-loading 1 -111011011010 people-moving 1 -111011011010 floorcare 1 -111011011010 sawmill-equipment 1 -111011011010 submarine-silencing 1 -111011011010 lifetime-warranty 1 -111011011010 data-sifting 1 -111011011010 non-flight 1 -111011011010 verbalistic 1 -111011011010 type-to-voice 1 -111011011010 diffusion-oxidation 1 -111011011010 10W-40 1 -111011011010 heart-pacing 1 -111011011010 4-megabyte 1 -111011011010 6400 1 -111011011010 power-control 2 -111011011010 non-subsidized 2 -111011011010 deep-strike 2 -111011011010 scuba-diving 2 -111011011010 medium-scale 2 -111011011010 one-gallon 2 -111011011010 earthmoving 2 -111011011010 lightwave 2 -111011011010 pressure-measurement 2 -111011011010 ficticious 2 -111011011010 arts-and-crafts 2 -111011011010 pourable 2 -111011011010 character-building 2 -111011011010 double-stacked 2 -111011011010 odorous 2 -111011011010 rust-preventive 2 -111011011010 synchronous 2 -111011011010 vinylidene 2 -111011011010 communications-related 2 -111011011010 pussy-willow 2 -111011011010 office-telephone 2 -111011011010 capital-exporting 2 -111011011010 flight-tracking 2 -111011011010 first-shift 2 -111011011010 one-foot 2 -111011011010 proficiency-test 2 -111011011010 ambulatory-infusion 2 -111011011010 supermarket-refrigeration 2 -111011011010 Magnesia 2 -111011011010 arena-size 2 -111011011010 petrochemical-based 2 -111011011010 tobacco-product 2 -111011011010 adults-only 2 -111011011010 nacelle 2 -111011011010 Etruscan 2 -111011011010 Ratier 2 -111011011010 minicartridge 2 -111011011010 nonstructural 2 -111011011010 food-deficit 2 -111011011010 satellite-encryption 2 -111011011010 commodity-dependent 2 -111011011010 auto-transfusion 2 -111011011010 well-completion 2 -111011011010 vendor-supplied 2 -111011011010 Ultraphone 2 -111011011010 telemetric 2 -111011011010 electromedical 2 -111011011010 whole-milk 2 -111011011010 Instamatic 2 -111011011010 government-supplied 2 -111011011010 cable-control 2 -111011011010 sanitary-tissue 2 -111011011010 cogenerations 2 -111011011010 price-appreciation 2 -111011011010 microwave-system 2 -111011011010 earthenware 2 -111011011010 auto-painting 2 -111011011010 powder-metal 2 -111011011010 wildflower 2 -111011011010 missile-launcher 2 -111011011010 non-CFC 2 -111011011010 energy-conversion 2 -111011011010 airline-reservations 2 -111011011010 communications-information 2 -111011011010 highly-rated 2 -111011011010 swiss 2 -111011011010 enhanced-octane 2 -111011011010 gear-production 2 -111011011010 atom-bomb 2 -111011011010 high-leverage 2 -111011011010 dialysis-related 2 -111011011010 metal-treating 2 -111011011010 associative 2 -111011011010 cultural/patriotic 2 -111011011010 carpet-related 2 -111011011010 electronics-based 2 -111011011010 131,322 2 -111011011010 UNIX-based 2 -111011011010 non-instant 2 -111011011010 salmon-fishing 2 -111011011010 8-bit 2 -111011011010 equity-like 2 -111011011010 Almonds 2 -111011011010 phthalic 2 -111011011010 heat-processing 2 -111011011010 grounds-maintenance 2 -111011011010 signal-collection 2 -111011011010 automotive-replacement 2 -111011011010 hair-wave 2 -111011011010 portable-computer 2 -111011011010 wheel-alignment 2 -111011011010 blood-analysis 2 -111011011010 glass-related 2 -111011011010 shoe-making 2 -111011011010 export-crop 2 -111011011010 high-force 2 -111011011010 higher-octane 2 -111011011010 aircraft-radio 2 -111011011010 less-volatile 2 -111011011010 quartz-crystal 2 -111011011010 text-management 2 -111011011010 Delft 2 -111011011010 weapon-delivery 2 -111011011010 industrial-control 2 -111011011010 engine-technology 2 -111011011010 paradisiacal 2 -111011011010 weapon-launching 2 -111011011010 investment-insurance 2 -111011011010 1040-EZ 2 -111011011010 helicopter-engine 2 -111011011010 lowerpriced 2 -111011011010 resinous 2 -111011011010 vegetable-growing 2 -111011011010 auto-test 2 -111011011010 Dowlex 2 -111011011010 encrusting 2 -111011011010 arpeggiated 2 -111011011010 ceramic-like 2 -111011011010 noncrystalline 2 -111011011010 adult-literacy 2 -111011011010 television-related 2 -111011011010 anti-contamination 2 -111011011010 foul-weather 2 -111011011010 aircraft-test 2 -111011011010 direct-reduction 2 -111011011010 Ovenware 2 -111011011010 multispindle 2 -111011011010 digital-audiotape 2 -111011011010 vibration-control 2 -111011011010 satellite-communication 2 -111011011010 Indian-made 2 -111011011010 scrambling/descrambling 2 -111011011010 bulding 3 -111011011010 video-recording 3 -111011011010 burglar-alarm 3 -111011011010 personal-computing 3 -111011011010 agricultural-related 3 -111011011010 export-dominated 3 -111011011010 magnetic-tape 3 -111011011010 machine-vision 3 -111011011010 electro-optic 3 -111011011010 hard-shell 3 -111011011010 carrental 3 -111011011010 red-wine 3 -111011011010 air-filtration 3 -111011011010 pesticide-related 3 -111011011010 missile-testing 3 -111011011010 community-action 3 -111011011010 microdot 3 -111011011010 energy-consuming 3 -111011011010 anti-shoplifting 3 -111011011010 sugar-containing 3 -111011011010 proof-of-claim 3 -111011011010 electronic-based 3 -111011011010 untamed 3 -111011011010 stenographic 3 -111011011010 Italian-based 3 -111011011010 pre-engineered 3 -111011011010 out-of-context 3 -111011011010 olive-green 3 -111011011010 millimeter-wave 3 -111011011010 bottle-making 3 -111011011010 wood-based 3 -111011011010 postal-service 3 -111011011010 factory-floor 3 -111011011010 well-manicured 3 -111011011010 immunodiagnostic 3 -111011011010 inventory-management 3 -111011011010 board-game 3 -111011011010 business-communications 3 -111011011010 optoelectronic 3 -111011011010 unweighted 3 -111011011010 solar-energy 3 -111011011010 industial 3 -111011011010 software-writing 3 -111011011010 flight-management 3 -111011011010 extended-care 3 -111011011010 tooth-colored 3 -111011011010 light-emitting 3 -111011011010 medical-electronic 3 -111011011010 article-surveillance 3 -111011011010 heat-exchange 3 -111011011010 commodity-producing 3 -111011011010 mineral-processing 3 -111011011010 home-infusion 3 -111011011010 rubberized 3 -111011011010 motor-carrier 3 -111011011010 cholesterol-testing 3 -111011011010 solid-propellant 3 -111011011010 independent-power 3 -111011011010 energy-production 3 -111011011010 high-profit-margin 3 -111011011010 electronic-countermeasures 3 -111011011010 missile-control 3 -111011011010 energy-absorbing 3 -111011011010 instant-coffee 3 -111011011010 computer-accessory 3 -111011011010 protein-based 3 -111011011010 air-moving 3 -111011011010 electronic-measuring 3 -111011011010 computer-storage 3 -111011011010 unordered 3 -111011011010 automobile-engine 3 -111011011010 character-recognition 4 -111011011010 semiconductor-making 4 -111011011010 grounds-care 4 -111011011010 car-care 4 -111011011010 narcotics-related 4 -111011011010 sodium-vapor 4 -111011011010 fluorocarbon 4 -111011011010 half-reformed 4 -111011011010 steelmill 4 -111011011010 SureCell 4 -111011011010 weapon-targeting 4 -111011011010 phone-linked 4 -111011011010 medical-related 4 -111011011010 anti-fungal 4 -111011011010 snowcapped 4 -111011011010 patient-monitoring 4 -111011011010 Corelle 4 -111011011010 non-woven 4 -111011011010 aircraft-navigation 4 -111011011010 space-weapons 4 -111011011010 stress-measurement 4 -111011011010 metal-related 4 -111011011010 demobilizing 4 -111011011010 cryptographic 4 -111011011010 Pharaonic 4 -111011011010 log-cabin 4 -111011011010 conveyer 4 -111011011010 network-based 4 -111011011010 Glenlivet 4 -111011011010 color-graphics 4 -111011011010 self-adhesive 4 -111011011010 mail-handling 4 -111011011010 copper-based 4 -111011011010 food-packaging 4 -111011011010 inner-tube 4 -111011011010 low-voltage 4 -111011011010 preprinted 4 -111011011010 air-powered 4 -111011011010 undrilled 4 -111011011010 tricone 4 -111011011010 anti-skid 4 -111011011010 injection-molding 5 -111011011010 plastic-coated 5 -111011011010 guidance-system 5 -111011011010 semiconductor-production 5 -111011011010 laser-based 5 -111011011010 obstetrical 5 -111011011010 nonhazardous 5 -111011011010 Medicare-approved 5 -111011011010 hi-tech 5 -111011011010 video-cassette 5 -111011011010 art-related 5 -111011011010 archery 5 -111011011010 petroleum-related 5 -111011011010 apparel-related 5 -111011011010 interior-design 5 -111011011010 document-processing 5 -111011011010 low-light 5 -111011011010 OTC-traded 5 -111011011010 iron-oxide 5 -111011011010 conventional-weapons 5 -111011011010 Impressionist 5 -111011011010 medical-testing 5 -111011011010 clinical-diagnostic 5 -111011011010 drive-train 5 -111011011010 coal-fueled 5 -111011011010 over-voltage 5 -111011011010 antibody-based 5 -111011011010 jet-aircraft 5 -111011011010 pickup-truck 6 -111011011010 slower-moving 6 -111011011010 turf-care 6 -111011011010 terra-cotta 6 -111011011010 memory-storage 6 -111011011010 outer-space 6 -111011011010 heat-transfer 6 -111011011010 sterility-assurance 6 -111011011010 copper-producing 6 -111011011010 tissue-paper 6 -111011011010 sanitizing 6 -111011011010 energy-generating 6 -111011011010 engine-cooling 6 -111011011010 flue 6 -111011011010 air-control 6 -111011011010 computer-support 6 -111011011010 pre-1982 6 -111011011010 anti-riot 6 -111011011010 printed-circuit 6 -111011011010 lower-profile 6 -111011011010 800-mile 6 -111011011010 post-impressionist 6 -111011011010 sports-related 7 -111011011010 telecommunications-related 7 -111011011010 computer-room 7 -111011011010 electronics-industry 7 -111011011010 anti-theft 7 -111011011010 Canadian-made 7 -111011011010 missile-launching 7 -111011011010 nitrogen-oxide 7 -111011011010 spring-planted 7 -111011011010 sensor-instrumentation 7 -111011011010 Noxema 7 -111011011010 engine-repair 7 -111011011010 denture 7 -111011011010 weapon-control 7 -111011011010 F-250 8 -111011011010 micrographic 8 -111011011010 water-saving 8 -111011011010 radio-frequency 8 -111011011010 dot-matrix 8 -111011011010 paper-related 8 -111011011010 avionic 8 -111011011010 steel-mill 8 -111011011010 beauty-care 8 -111011011010 unlabeled 9 -111011011010 non-electrical 9 -111011011010 oil-like 9 -111011011010 space-related 9 -111011011010 electro-optical 9 -111011011010 high-fidelity 9 -111011011010 microelectronic 9 -111011011010 acetic 9 -111011011010 pre-Columbian 9 -111011011010 technology-related 10 -111011011010 motion-control 10 -111011011010 particulate 10 -111011011010 fluid-power 10 -111011011010 high-efficiency 11 -111011011010 gaseous 11 -111011011010 sewerage 11 -111011011010 umbilical 11 -111011011010 connective 11 -111011011010 construction-related 11 -111011011010 microbial 11 -111011011010 energy-industry 11 -111011011010 power-conversion 11 -111011011010 heat-resistant 12 -111011011010 non-consumer 12 -111011011010 newsreel 12 -111011011010 animal-health 12 -111011011010 asbestos-containing 12 -111011011010 night-viewing 13 -111011011010 heavy-industrial 13 -111011011010 road-building 13 -111011011010 energy-producing 14 -111011011010 wireline 14 -111011011010 electronic-warfare 14 -111011011010 custom-engineered 14 -111011011010 nonelectrical 14 -111011011010 machined 15 -111011011010 labor-saving 15 -111011011010 armored-vehicle 15 -111011011010 oilfield 15 -111011011010 process-control 16 -111011011010 semiconductor-manufacturing 16 -111011011010 unspoiled 16 -111011011010 rye 16 -111011011010 earth-moving 17 -111011011010 non-residential 18 -111011011010 refractory 20 -111011011010 fire-protection 21 -111011011010 portfolio-insurance 22 -111011011010 material-handling 22 -111011011010 uncured 22 -111011011010 nuclear-propulsion 23 -111011011010 office-building 23 -111011011010 electromechanical 24 -111011011010 oil-well 24 -111011011010 electroplating 26 -111011011010 outboard 28 -111011011010 deep-water 28 -111011011010 third-class 28 -111011011010 bar-code 29 -111011011010 photovoltaic 29 -111011011010 night-vision 30 -111011011010 domestic-demand 31 -111011011010 aeronautical 32 -111011011010 glass-fiber 34 -111011011010 filtration 36 -111011011010 water-treatment 36 -111011011010 telecommunication 37 -111011011010 office-automation 37 -111011011010 electric-power 45 -111011011010 sunflower 52 -111011011010 energy-related 52 -111011011010 data-storage 55 -111011011010 oil-drilling 56 -111011011010 navigational 61 -111011011010 aerosol 61 -111011011010 non-food 62 -111011011010 computer-based 66 -111011011010 computer-related 70 -111011011010 defense-related 73 -111011011010 infrared 74 -111011011010 electromagnetic 75 -111011011010 ultraviolet 75 -111011011010 oil-and-gas 76 -111011011010 sanitary 77 -111011011010 impressionist 80 -111011011010 non-financial 96 -111011011010 nonfinancial 105 -111011011010 decorative 111 -111011011010 organic 117 -111011011010 pollution-control 123 -111011011010 air-conditioning 129 -111011011010 hydraulic 137 -111011011010 export-led 153 -111011011010 architectural 180 -111011011010 computer-aided 202 -111011011010 outdoor 259 -111011011010 marine 287 -111011011010 optical 310 -111011011010 audio 327 -111011011010 high-technology 636 -111011011010 raw 927 -111011011010 automotive 1312 -111011011010 electric 1412 -111011011010 electrical 1435 -111011011010 agricultural 1521 -111011011010 electronic 3111 -111011011010 industrial 7752 -1110110110110 fiberbased 1 -1110110110110 non-biodegradable 1 -1110110110110 human-pharmaceuticals 1 -1110110110110 futureslike 1 -1110110110110 household-related 1 -1110110110110 high-alloy 1 -1110110110110 crash-shaken 1 -1110110110110 941,300 1 -1110110110110 personal-hygiene 1 -1110110110110 fluid-clarification 1 -1110110110110 extra-budgetary 1 -1110110110110 metric-sized 1 -1110110110110 raspberry-colored 1 -1110110110110 Danish-modern 1 -1110110110110 vinyl-top 1 -1110110110110 economy-priced 1 -1110110110110 endorsable 1 -1110110110110 Lee-Wards 1 -1110110110110 clotbusting 1 -1110110110110 employerprovided 1 -1110110110110 low-sulfer 1 -1110110110110 big-impact 1 -1110110110110 financial-type 1 -1110110110110 respirable 1 -1110110110110 textile-mill 1 -1110110110110 theater-type 1 -1110110110110 strategically-sensitive 1 -1110110110110 Whirlpool-brand 1 -1110110110110 600-ton-per-day 1 -1110110110110 interest-accumulating 1 -1110110110110 specialized-clay 1 -1110110110110 lunch-meat 1 -1110110110110 gruff-sounding 1 -1110110110110 cocoa-related 1 -1110110110110 utility-fired 1 -1110110110110 union-produced 1 -1110110110110 chicken-flavored 1 -1110110110110 German-system 1 -1110110110110 Buffet-Crampon 1 -1110110110110 choice-beef 1 -1110110110110 Bellevue-based 1 -1110110110110 nontradeable 1 -1110110110110 Guadalajara-based 1 -1110110110110 advanced-design 1 -1110110110110 more-sensitive 1 -1110110110110 straightbacked 1 -1110110110110 feminine-hygiene 1 -1110110110110 rogue-wave 1 -1110110110110 miraging 1 -1110110110110 Suprenum 1 -1110110110110 CheckUp 1 -1110110110110 armament-control 1 -1110110110110 American-origin 1 -1110110110110 semimanufactured 1 -1110110110110 Conestoga-like 1 -1110110110110 tornout 1 -1110110110110 executive-quality 1 -1110110110110 Lejon 1 -1110110110110 boat-shaped 1 -1110110110110 sheet-steel 1 -1110110110110 dual-ovenable 1 -1110110110110 medium-technology 1 -1110110110110 longest-tailed 1 -1110110110110 integrated-software 1 -1110110110110 corroding 1 -1110110110110 carbon-brush 1 -1110110110110 packagesmainly 1 -1110110110110 moisture-resistant 1 -1110110110110 1/8-inch 1 -1110110110110 Sunday-evening 1 -1110110110110 fluorinated 1 -1110110110110 zippered 1 -1110110110110 fluorochemical-based 1 -1110110110110 Lexan 1 -1110110110110 discount-price 1 -1110110110110 actuated 1 -1110110110110 bromine-containing 1 -1110110110110 post-consumer 1 -1110110110110 protective-coatings 1 -1110110110110 information-related 1 -1110110110110 household-service 1 -1110110110110 Earthbound 1 -1110110110110 cherry-topped 1 -1110110110110 bio-medical 1 -1110110110110 III-type 1 -1110110110110 Kevlar-like 1 -1110110110110 engineering-intensive 1 -1110110110110 NASA-dependent 1 -1110110110110 gold-and-silver 1 -1110110110110 polyvinylchloride 1 -1110110110110 thin-gauge 1 -1110110110110 lower-fat 1 -1110110110110 hotrolled 1 -1110110110110 Perdue-Tyson 1 -1110110110110 voice-related 1 -1110110110110 U.S.-originated 1 -1110110110110 meeting-room 1 -1110110110110 malted-milk 1 -1110110110110 AutoCAD-related 1 -1110110110110 power-source 1 -1110110110110 polyethylene-teraphthalate 1 -1110110110110 110-car 1 -1110110110110 bamboo-made 1 -1110110110110 Halloween-related 1 -1110110110110 Listerhill 1 -1110110110110 blood-image 1 -1110110110110 Extrion 1 -1110110110110 soil-conditioning 1 -1110110110110 asbestos-bearing 1 -1110110110110 Shurfine 1 -1110110110110 acetate-based 1 -1110110110110 silcone 1 -1110110110110 silicone-based 1 -1110110110110 arak 1 -1110110110110 Kenmore-brand 1 -1110110110110 Canadian-produced 1 -1110110110110 technical-information 1 -1110110110110 private-construction 1 -1110110110110 pocketsize 1 -1110110110110 C.O.M.B.-marketed 1 -1110110110110 post-attack 1 -1110110110110 still-undelivered 1 -1110110110110 Thom-McAn 1 -1110110110110 urine-specimen 1 -1110110110110 bleached-board 1 -1110110110110 red-ink-stained 1 -1110110110110 Midwest-based 1 -1110110110110 U.S.-patented 1 -1110110110110 larger-systems 1 -1110110110110 expensive-looking 1 -1110110110110 bead-and-reel 1 -1110110110110 non-memory 1 -1110110110110 Philippine-bound 1 -1110110110110 Soviet-manufactured 1 -1110110110110 electrical-resistance 1 -1110110110110 broad-weave 1 -1110110110110 white-painted 1 -1110110110110 semi-manufactured 1 -1110110110110 then-slumping 1 -1110110110110 100-proof 1 -1110110110110 2,711 1 -1110110110110 ignition-resistant 1 -1110110110110 high-sulphur 1 -1110110110110 air-purification 1 -1110110110110 soft-drinking 1 -1110110110110 measurment 1 -1110110110110 turf-maintenance 1 -1110110110110 Celentano 1 -1110110110110 very-low-density 1 -1110110110110 Neronian 1 -1110110110110 non-salable 1 -1110110110110 world-traded 1 -1110110110110 two-foot-long 1 -1110110110110 Faircrest 1 -1110110110110 polyethlyene 1 -1110110110110 lowdensity 1 -1110110110110 small-tag 1 -1110110110110 ceramic-based-fiber 1 -1110110110110 non-petroleum-based 1 -1110110110110 Lowney 1 -1110110110110 light-sensor 1 -1110110110110 bast-cellulosic 1 -1110110110110 indigo-dyed 1 -1110110110110 garment-center 1 -1110110110110 Army-supplied 1 -1110110110110 mass-consumption 1 -1110110110110 1-2-3/G 1 -1110110110110 cancer-drug 1 -1110110110110 photosensitized 1 -1110110110110 heat-and-serve 1 -1110110110110 2,343 1 -1110110110110 retro-fitting 1 -1110110110110 Detaclad 1 -1110110110110 explosive-bonded 1 -1110110110110 nickel-cobalt 1 -1110110110110 room-and-pillar 1 -1110110110110 silverplate 1 -1110110110110 850-cc. 1 -1110110110110 turkey-based 1 -1110110110110 50-person 1 -1110110110110 made-in-Taiwan 1 -1110110110110 materials-processing 1 -1110110110110 higher-fare 1 -1110110110110 broadwoven 1 -1110110110110 safety-seal 1 -1110110110110 400-man 1 -1110110110110 39-store 1 -1110110110110 electronic-image 1 -1110110110110 electrical-connector 1 -1110110110110 foreign-grown 1 -1110110110110 war-caused 1 -1110110110110 gasified 1 -1110110110110 Osaka-area 1 -1110110110110 Sienese 1 -1110110110110 thermo-formed 1 -1110110110110 tin-mill 1 -1110110110110 personal-grooming 1 -1110110110110 non-decaying 1 -1110110110110 MLC 1 -1110110110110 grain-based 1 -1110110110110 made-in-Massachusetts 1 -1110110110110 plastics/industrial 1 -1110110110110 forest- 1 -1110110110110 Playmobile 1 -1110110110110 aeromechanical 1 -1110110110110 European-cut 1 -1110110110110 mass-cultivated 1 -1110110110110 103-acre 1 -1110110110110 domestic-leg 1 -1110110110110 infectous 1 -1110110110110 mass-appeal 1 -1110110110110 beautycare 1 -1110110110110 new-type 1 -1110110110110 cotton-blend 1 -1110110110110 foreign-style 1 -1110110110110 treated-wood 1 -1110110110110 wafer-etching 1 -1110110110110 phosgene 1 -1110110110110 red-velvet 1 -1110110110110 borate 1 -1110110110110 cash-like 1 -1110110110110 taste-affecting 1 -1110110110110 rice-based 1 -1110110110110 chocolate-type 1 -1110110110110 ACMA 1 -1110110110110 petroleum-drilling 1 -1110110110110 salmonella-killing 1 -1110110110110 Coffee-mate 1 -1110110110110 Soviet-operated 1 -1110110110110 marble-topped 1 -1110110110110 constitututional 1 -1110110110110 reusuable 1 -1110110110110 girl-driven 1 -1110110110110 boy-driven 1 -1110110110110 thermoset 1 -1110110110110 high-grain 1 -1110110110110 over-world-price 1 -1110110110110 non-pressurized 1 -1110110110110 rate-protection 1 -1110110110110 microencapsulation 1 -1110110110110 plushly 1 -1110110110110 industrial-office 1 -1110110110110 ethylene-related 1 -1110110110110 immuno-diagnostic 1 -1110110110110 imprintable 1 -1110110110110 specialty-tool 1 -1110110110110 finished-steel 1 -1110110110110 nonstore 1 -1110110110110 AIDSrelated 1 -1110110110110 even-harsher 1 -1110110110110 urology-related 1 -1110110110110 fast- 1 -1110110110110 kiln-dry 1 -1110110110110 nvestor 1 -1110110110110 college-dorm 1 -1110110110110 Cor-ten 1 -1110110110110 bone-growth-stimulation 1 -1110110110110 player-activated-terminal 1 -1110110110110 refrigerated-dough 1 -1110110110110 Catalyst-owned 1 -1110110110110 butterfat-rich 1 -1110110110110 low-to-no-fat 1 -1110110110110 range-top 1 -1110110110110 frozen-at-sea 1 -1110110110110 Luxembourg-registered 1 -1110110110110 otherwise-empty 1 -1110110110110 rubber-based 1 -1110110110110 diagnostic-testing 1 -1110110110110 non-milk-based 1 -1110110110110 sound-stage 1 -1110110110110 much-favored 1 -1110110110110 uncommercialized 1 -1110110110110 already-completed 1 -1110110110110 bamboo-leaf 1 -1110110110110 Alloting 1 -1110110110110 Frango-mint 1 -1110110110110 strike-hurt 1 -1110110110110 plastic-industry 1 -1110110110110 Campbell-brand 1 -1110110110110 ultraviolet-cured 1 -1110110110110 cyanoacrylate 1 -1110110110110 cloth-cutting 1 -1110110110110 body-care 1 -1110110110110 yogurt-type 1 -1110110110110 closely-owned 1 -1110110110110 automobile-care 1 -1110110110110 lithographed 1 -1110110110110 fire-protective 1 -1110110110110 food-substitute 1 -1110110110110 educational-television 1 -1110110110110 Groko 1 -1110110110110 higher-profit-margin 1 -1110110110110 frequency-control 1 -1110110110110 Bolivian-born 1 -1110110110110 petrochemicals-based 1 -1110110110110 safari-style 1 -1110110110110 polyester-cotton 1 -1110110110110 electronbeam 1 -1110110110110 mammalian-cell-culture 1 -1110110110110 non-persistent 1 -1110110110110 club-like 1 -1110110110110 semipostal 1 -1110110110110 McKesson-distributed 1 -1110110110110 pick-up-and-take-out 1 -1110110110110 zircoa 1 -1110110110110 plastic-lined 1 -1110110110110 Duco 1 -1110110110110 electrical-wiring 1 -1110110110110 foam-plastic 1 -1110110110110 speciality-steel 1 -1110110110110 tool-storage 1 -1110110110110 1,363 1 -1110110110110 2,066 1 -1110110110110 don't-sit-down-with-the-family 1 -1110110110110 paddle-wheel 1 -1110110110110 auto-care 1 -1110110110110 ever-mounting 1 -1110110110110 crop-improving 1 -1110110110110 fluorine-based 1 -1110110110110 V-neck 1 -1110110110110 high-techology 1 -1110110110110 Sun-drop 1 -1110110110110 Caribbean-type 1 -1110110110110 triple-sealed 1 -1110110110110 allergy-causing 1 -1110110110110 condign 1 -1110110110110 turkey-hunting 1 -1110110110110 products-oriented 1 -1110110110110 perworker 1 -1110110110110 lower-value-added 1 -1110110110110 Maalox-can 1 -1110110110110 diagnostical 1 -1110110110110 ultrasonic-diagnostics 1 -1110110110110 anxiety-free 1 -1110110110110 polyester/cotton 1 -1110110110110 on-highway 1 -1110110110110 Israeli-manufactured 1 -1110110110110 low-fire 1 -1110110110110 automative 1 -1110110110110 Sonet-based 1 -1110110110110 non-degradable 1 -1110110110110 CIS-based 1 -1110110110110 pickup-bed 1 -1110110110110 vinyl-laminated 1 -1110110110110 lowmargin 1 -1110110110110 healthfood 1 -1110110110110 anti-rust 1 -1110110110110 laser-resistant 1 -1110110110110 sheet-and-tube 1 -1110110110110 high-calcium 1 -1110110110110 research-intensive 1 -1110110110110 Drambuie 1 -1110110110110 compressed-air-operated 1 -1110110110110 motoroil 1 -1110110110110 Halsa 1 -1110110110110 doubtable 1 -1110110110110 rigid-sheet 1 -1110110110110 sulfite-treated 1 -1110110110110 plant-science 1 -1110110110110 250,000-tons-per-year 1 -1110110110110 less-toxic 1 -1110110110110 Macintosh-related 1 -1110110110110 spe 1 -1110110110110 cialty 1 -1110110110110 terry-cloth 1 -1110110110110 eye-protection 1 -1110110110110 zinc-consuming 1 -1110110110110 33-foot-long 1 -1110110110110 uranium-waste 1 -1110110110110 namebrand 1 -1110110110110 market-consumer 1 -1110110110110 lower-density 1 -1110110110110 lowest-density 1 -1110110110110 mendicant 1 -1110110110110 cutover 1 -1110110110110 oceanthermal 1 -1110110110110 certian 1 -1110110110110 region-by-region 1 -1110110110110 October.The 1 -1110110110110 steel-laden 1 -1110110110110 fly-by-day 1 -1110110110110 blackwood 1 -1110110110110 plasticfoam 1 -1110110110110 Conn.-pharmaceutical 1 -1110110110110 soda-based 1 -1110110110110 semiconductive 1 -1110110110110 steellike 1 -1110110110110 sand-like 1 -1110110110110 sumptuous-looking 1 -1110110110110 state-private 1 -1110110110110 Emeraude 1 -1110110110110 commodities-related 1 -1110110110110 retirement-planning 1 -1110110110110 yet-to-be-imagined 1 -1110110110110 earlier-designed 1 -1110110110110 consumer-branded 1 -1110110110110 ABS-based 1 -1110110110110 plastic-incineration 1 -1110110110110 fluid-measurement 1 -1110110110110 hardware/home 1 -1110110110110 Keepsake 1 -1110110110110 thermoformed 1 -1110110110110 eyeware 1 -1110110110110 stainess 1 -1110110110110 world-lass 1 -1110110110110 plant-protection 1 -1110110110110 non-sterile 1 -1110110110110 consumer-solar 1 -1110110110110 20-company 1 -1110110110110 jointly-owned 1 -1110110110110 lowest-tech 1 -1110110110110 arthroscopy 1 -1110110110110 photographic-imaging 1 -1110110110110 rocker-recliner 1 -1110110110110 chewier 1 -1110110110110 moulded 1 -1110110110110 Retin-A-type 1 -1110110110110 hotter-selling 1 -1110110110110 anti-biotech 2 -1110110110110 computers/office 2 -1110110110110 corn-starch 2 -1110110110110 trashcan 2 -1110110110110 oral-hygiene 2 -1110110110110 snazziest 2 -1110110110110 low-acid 2 -1110110110110 Cajun-Creole 2 -1110110110110 highest-margin 2 -1110110110110 requisition 2 -1110110110110 television-rental 2 -1110110110110 Halawi 2 -1110110110110 Limoges 2 -1110110110110 20-pence 2 -1110110110110 brownish 2 -1110110110110 amyl 2 -1110110110110 anodyne 2 -1110110110110 specialty-card 2 -1110110110110 overstimulated 2 -1110110110110 smoking-deterrent 2 -1110110110110 paper-packaging 2 -1110110110110 1,500-meter 2 -1110110110110 steel-containing 2 -1110110110110 gaucho 2 -1110110110110 first-class-only 2 -1110110110110 21-foot 2 -1110110110110 small-volume 2 -1110110110110 Sonet 2 -1110110110110 sanitary-protection 2 -1110110110110 coal-gasification 2 -1110110110110 water-heating 2 -1110110110110 heat-shrinkable 2 -1110110110110 laser-related 2 -1110110110110 first-class-sized 2 -1110110110110 European-produced 2 -1110110110110 powdered-metal 2 -1110110110110 Leyse 2 -1110110110110 Milka 2 -1110110110110 milk-chocolate 2 -1110110110110 imported-goods 2 -1110110110110 Microtech 2 -1110110110110 112-foot-long 2 -1110110110110 Apple-related 2 -1110110110110 multicourse 2 -1110110110110 foreign-brand 2 -1110110110110 electrochromic 2 -1110110110110 hard-to-place 2 -1110110110110 Polish-made 2 -1110110110110 Creda 2 -1110110110110 ozone-damaging 2 -1110110110110 tea-bag 2 -1110110110110 Airflow 2 -1110110110110 porcelain-on-steel 2 -1110110110110 ophthalmic-pharmaceutical 2 -1110110110110 microprocessor-controlled 2 -1110110110110 easy-to-prepare 2 -1110110110110 car-wax 2 -1110110110110 low-sulphur 2 -1110110110110 non-staple 2 -1110110110110 skin-treatment 2 -1110110110110 ozone-eroding 2 -1110110110110 '40s-style 2 -1110110110110 store-based 2 -1110110110110 80-proof 2 -1110110110110 big-star 2 -1110110110110 top-class 2 -1110110110110 Hatch-Johnson 2 -1110110110110 tumor-killing 2 -1110110110110 neuropharmalogical 2 -1110110110110 29-store 2 -1110110110110 color-imaging 2 -1110110110110 coal-plant 2 -1110110110110 business-magazine 2 -1110110110110 90-proof 2 -1110110110110 board-level 2 -1110110110110 formaldehyde-based 2 -1110110110110 designer-label 2 -1110110110110 64-ounce 2 -1110110110110 end-zone 2 -1110110110110 company-specific 2 -1110110110110 electroplated 2 -1110110110110 seven-event 2 -1110110110110 half-million-dollar 2 -1110110110110 vinyl-coated 2 -1110110110110 main-meal 2 -1110110110110 health-testing 2 -1110110110110 adult-incontinence 2 -1110110110110 Chinese-produced 2 -1110110110110 unchallenging 2 -1110110110110 Burberrys 2 -1110110110110 DMSO 2 -1110110110110 single-serve 2 -1110110110110 brominated 2 -1110110110110 Almas 2 -1110110110110 discount-goods 2 -1110110110110 transit-authority 2 -1110110110110 household-cleaning 2 -1110110110110 SoftView 2 -1110110110110 electro-surgical 2 -1110110110110 whole-grain 2 -1110110110110 trademark-bearing 2 -1110110110110 mayonnaise-type 2 -1110110110110 engineered-components 2 -1110110110110 reservations-only 2 -1110110110110 two-prong 2 -1110110110110 structural-steel 2 -1110110110110 diecast 2 -1110110110110 electric-pasta-machine 2 -1110110110110 non-seasonal 2 -1110110110110 Bayway 2 -1110110110110 mobile-treatment 2 -1110110110110 fiberglass-reinforced 2 -1110110110110 cyclic 2 -1110110110110 chlor-alkali 2 -1110110110110 117-mile 2 -1110110110110 unsalted 2 -1110110110110 controlled-atmosphere 2 -1110110110110 safari-type 2 -1110110110110 green-glass 2 -1110110110110 foot-care 2 -1110110110110 terpene 2 -1110110110110 beauty-aid 2 -1110110110110 particle-board 2 -1110110110110 copper-alloy 2 -1110110110110 carbon-based 2 -1110110110110 Morgans 2 -1110110110110 K-resin 2 -1110110110110 anti-embolism 2 -1110110110110 personal-computer-based 2 -1110110110110 tamper-resistant 2 -1110110110110 double-knit 2 -1110110110110 Lanerossi 2 -1110110110110 RCA-brand 3 -1110110110110 non-emergency 3 -1110110110110 beginning-of-the-year 3 -1110110110110 Campari 3 -1110110110110 navy-blue 3 -1110110110110 180-seat 3 -1110110110110 bus-stop 3 -1110110110110 LensCrafter 3 -1110110110110 better-equipped 3 -1110110110110 non-cigarette 3 -1110110110110 export-quality 3 -1110110110110 pureed 3 -1110110110110 pressed-wood 3 -1110110110110 automotive-care 3 -1110110110110 angiographic 3 -1110110110110 Birthright 3 -1110110110110 skincare 3 -1110110110110 water-soluble 3 -1110110110110 outworn 3 -1110110110110 balsa 3 -1110110110110 truck-stop 3 -1110110110110 hypoallergenic 3 -1110110110110 body-side 3 -1110110110110 mountain-climbing 3 -1110110110110 baseload 3 -1110110110110 nonwoven 3 -1110110110110 billion-dollar-a-year 3 -1110110110110 cell-biology 3 -1110110110110 corporate-banking 3 -1110110110110 optical-waveguide 3 -1110110110110 smoked-ham 3 -1110110110110 goat's-milk 3 -1110110110110 custom-molded 3 -1110110110110 Japan-made 3 -1110110110110 rubber-coated 3 -1110110110110 65-foot 3 -1110110110110 non-targeted 3 -1110110110110 calf-roping 3 -1110110110110 photosensitive 3 -1110110110110 pleated 3 -1110110110110 nuclear-research 3 -1110110110110 Zircoa 3 -1110110110110 Burberry 3 -1110110110110 added-value 3 -1110110110110 advanced-materials 3 -1110110110110 mescaline 3 -1110110110110 indentification 3 -1110110110110 manufactured-home 3 -1110110110110 1,593 3 -1110110110110 higher-technology 3 -1110110110110 warehouse-store 3 -1110110110110 crop-protection 3 -1110110110110 gerbera 3 -1110110110110 oral-care 3 -1110110110110 Bazooka 3 -1110110110110 melanin-impregnated 3 -1110110110110 civil-engineering 3 -1110110110110 permanent-press 3 -1110110110110 munition 3 -1110110110110 home-improvements 3 -1110110110110 wound-closure 3 -1110110110110 Rayonnier 4 -1110110110110 diversifed 4 -1110110110110 six-ounce 4 -1110110110110 melanin-based 4 -1110110110110 Sunbeam/Oster 4 -1110110110110 laminating 4 -1110110110110 Hotpoint 4 -1110110110110 ceramic-based 4 -1110110110110 stringed 4 -1110110110110 manmade 4 -1110110110110 fresh-baked 4 -1110110110110 orthodontic 4 -1110110110110 sun-drenched 4 -1110110110110 ready-to-assemble 4 -1110110110110 buck-passing 4 -1110110110110 Courvoisier 4 -1110110110110 optometry 4 -1110110110110 non-wood 4 -1110110110110 cholesterol-fighting 4 -1110110110110 tobacco-related 4 -1110110110110 GE-brand 4 -1110110110110 high-budget 4 -1110110110110 material-analysis 4 -1110110110110 arthroscopic 4 -1110110110110 CFC-based 4 -1110110110110 injection-molded 4 -1110110110110 after-work 4 -1110110110110 non-aerospace 4 -1110110110110 wood-preserving 4 -1110110110110 36-store 4 -1110110110110 Lucite 4 -1110110110110 shape-memory 4 -1110110110110 sheathing 4 -1110110110110 ethylene-based 5 -1110110110110 polyvinyl-chloride 5 -1110110110110 consumer-electronic 5 -1110110110110 Georgia-based 5 -1110110110110 tufted 5 -1110110110110 copper-containing 5 -1110110110110 flue-cured 5 -1110110110110 plastic-related 5 -1110110110110 paper-based 5 -1110110110110 slickly 5 -1110110110110 home-decorating 5 -1110110110110 haircare 5 -1110110110110 tracer 5 -1110110110110 foreign-produced 5 -1110110110110 risk-retention 5 -1110110110110 art-auction 5 -1110110110110 high-cholesterol 5 -1110110110110 termite-control 5 -1110110110110 hardy-kiwi 5 -1110110110110 frozen-breakfast 5 -1110110110110 truck-bed 6 -1110110110110 U.S.-manufactured 6 -1110110110110 reddish-brown 6 -1110110110110 home-entertainment 6 -1110110110110 petroleum-based 6 -1110110110110 polycarbonate 6 -1110110110110 sugared 6 -1110110110110 home-delivered 6 -1110110110110 biotechnology-based 6 -1110110110110 slower-growing 6 -1110110110110 tabletop 6 -1110110110110 home-related 6 -1110110110110 third-tier 6 -1110110110110 sun-care 6 -1110110110110 old-growth 6 -1110110110110 salt-and-pepper 6 -1110110110110 wound-healing 7 -1110110110110 Sealy-brand 7 -1110110110110 slag 7 -1110110110110 dermatological 7 -1110110110110 compressed-air 7 -1110110110110 floor-care 7 -1110110110110 corrosion-resistant 7 -1110110110110 LensCrafters 7 -1110110110110 self-chilling 7 -1110110110110 higher-value 7 -1110110110110 melon 7 -1110110110110 consumer-health 7 -1110110110110 unsaturated 7 -1110110110110 fire-retardant 7 -1110110110110 five-foot 8 -1110110110110 Germaine 8 -1110110110110 moderate-priced 8 -1110110110110 Rickel 8 -1110110110110 adulterated 8 -1110110110110 unprocessed 8 -1110110110110 lower-end 8 -1110110110110 Close-Up 8 -1110110110110 commodity-based 8 -1110110110110 two-piece 8 -1110110110110 high-gloss 8 -1110110110110 worsted 8 -1110110110110 phenolic 8 -1110110110110 swimming-pool 8 -1110110110110 shearing 8 -1110110110110 fat-substitute 8 -1110110110110 low-alloy 8 -1110110110110 Peterbilt 8 -1110110110110 prostaglandin 9 -1110110110110 bituminous 9 -1110110110110 shut-down 9 -1110110110110 pop-music 9 -1110110110110 fiber-reinforced 9 -1110110110110 incontinence 9 -1110110110110 caramel 9 -1110110110110 aramid 9 -1110110110110 extended-wear 9 -1110110110110 Climax 9 -1110110110110 immigrant-rights 9 -1110110110110 ethyl 9 -1110110110110 marinated 10 -1110110110110 low-technology 10 -1110110110110 home-delivery 10 -1110110110110 cedar 10 -1110110110110 coin-operated 10 -1110110110110 leisure-time 10 -1110110110110 eyewear 10 -1110110110110 glass-enclosed 10 -1110110110110 wrought-iron 10 -1110110110110 non-energy 10 -1110110110110 resealable 10 -1110110110110 small-diameter 11 -1110110110110 binary 11 -1110110110110 home-furnishing 11 -1110110110110 gastric 11 -1110110110110 redwood 12 -1110110110110 ozone-destroying 12 -1110110110110 Lechmere 12 -1110110110110 nonfood 12 -1110110110110 fossil-fuel 12 -1110110110110 nitrate 13 -1110110110110 hot-rolled 13 -1110110110110 hair-growth 14 -1110110110110 super-premium 14 -1110110110110 horticultural 14 -1110110110110 ozone-depleting 14 -1110110110110 dehydrated 14 -1110110110110 high-sulfur 14 -1110110110110 extruded 14 -1110110110110 cold-rolled 15 -1110110110110 upholstered 15 -1110110110110 McKids 15 -1110110110110 glassy 16 -1110110110110 coking 16 -1110110110110 semi-finished 16 -1110110110110 low-sulfur 17 -1110110110110 ready-to-serve 18 -1110110110110 tertiary 18 -1110110110110 reindeer 18 -1110110110110 lignite 19 -1110110110110 tortilla 19 -1110110110110 polyurethane 19 -1110110110110 still-video 19 -1110110110110 laminated 19 -1110110110110 medium-priced 20 -1110110110110 tungsten 20 -1110110110110 time-share 20 -1110110110110 Glycel 20 -1110110110110 self-service 21 -1110110110110 health-food 21 -1110110110110 non-durable 21 -1110110110110 houseware 21 -1110110110110 silicone 21 -1110110110110 rusted 21 -1110110110110 high-profit 21 -1110110110110 methyl 22 -1110110110110 Kenmore 22 -1110110110110 knitted 23 -1110110110110 weight-loss 23 -1110110110110 acrylic 23 -1110110110110 take-out 23 -1110110110110 deli 24 -1110110110110 pear 24 -1110110110110 kosher 25 -1110110110110 hardwood 26 -1110110110110 potassium 28 -1110110110110 guinea 28 -1110110110110 malt 29 -1110110110110 takeout 29 -1110110110110 Converse 30 -1110110110110 poor-quality 30 -1110110110110 molten 30 -1110110110110 speciality 30 -1110110110110 thermoplastic 30 -1110110110110 phosphate 31 -1110110110110 ophthalmic 32 -1110110110110 reusable 32 -1110110110110 bank-card 33 -1110110110110 high-fashion 35 -1110110110110 nylon 35 -1110110110110 semifinished 41 -1110110110110 flat-rolled 42 -1110110110110 metallurgical 43 -1110110110110 thoroughbred 45 -1110110110110 tubular 47 -1110110110110 high-density 52 -1110110110110 modular 52 -1110110110110 biodegradable 57 -1110110110110 softwood 58 -1110110110110 hair-care 58 -1110110110110 latex 58 -1110110110110 molded 61 -1110110110110 corrugated 62 -1110110110110 polymer 65 -1110110110110 skin-care 72 -1110110110110 thermal 74 -1110110110110 smokeless 84 -1110110110110 stainless 89 -1110110110110 cardiovascular 89 -1110110110110 nondurable 92 -1110110110110 man-made 94 -1110110110110 juvenile 94 -1110110110110 do-it-yourself 96 -1110110110110 foam 100 -1110110110110 costume 101 -1110110110110 baked 102 -1110110110110 gourmet 105 -1110110110110 polyester 108 -1110110110110 refrigerated 109 -1110110110110 home-improvement 113 -1110110110110 tomato 113 -1110110110110 personal-care 119 -1110110110110 snack 122 -1110110110110 fabricated 129 -1110110110110 private-label 135 -1110110110110 canned 164 -1110110110110 ceramic 207 -1110110110110 solar 208 -1110110110110 packaged 223 -1110110110110 recreational 258 -1110110110110 leather 259 -1110110110110 sporting 294 -1110110110110 pet 350 -1110110110110 wood 438 -1110110110110 durable 481 -1110110110110 grocery 655 -1110110110110 forest 784 -1110110110110 household 929 -1110110110110 luxury 951 -1110110110110 plastic 1344 -1110110110110 consumer 7904 -1110110110110 specialty 2218 -1110110110111 nostalgia-laced 1 -1110110110111 moth-eaten 1 -1110110110111 artistic-technological 1 -1110110110111 computer-coloring 1 -1110110110111 Corners-Sweet 1 -1110110110111 dividend-growth 1 -1110110110111 ethanol-blended 1 -1110110110111 40,311 1 -1110110110111 two-axis 1 -1110110110111 polyester-filament 1 -1110110110111 temporao 1 -1110110110111 early-cash-flow 1 -1110110110111 doublestack 1 -1110110110111 non-Getty 1 -1110110110111 walnut-topped 1 -1110110110111 metal-markets 1 -1110110110111 FX/4 1 -1110110110111 28-by-36 1 -1110110110111 house-brand 1 -1110110110111 longer-tested 1 -1110110110111 NOx 1 -1110110110111 end-of-the-line 1 -1110110110111 failed-auction 1 -1110110110111 Texasrefined 1 -1110110110111 then-soaring 1 -1110110110111 blue-and-white-striped 1 -1110110110111 waste-derived 1 -1110110110111 105,801 1 -1110110110111 often-impulsive 1 -1110110110111 StainBlocker 1 -1110110110111 easy-to-clean 1 -1110110110111 silly-season 1 -1110110110111 off-grade 1 -1110110110111 single-reflex 1 -1110110110111 44-degree-gravity 1 -1110110110111 fabrication-related 1 -1110110110111 sludge-like 1 -1110110110111 four-millimeter 1 -1110110110111 4mm 1 -1110110110111 anti-BW 1 -1110110110111 No.8 1 -1110110110111 Sun3/60 1 -1110110110111 market-grade 1 -1110110110111 medium-octane 1 -1110110110111 milk-producing 1 -1110110110111 human-hair 1 -1110110110111 newly-harvested 1 -1110110110111 aflatoxin-adulterated 1 -1110110110111 lithium-sulfur 1 -1110110110111 rhizobia-infested 1 -1110110110111 Soho-brand 1 -1110110110111 filter-tip 1 -1110110110111 Zendium 1 -1110110110111 cotton-blended 1 -1110110110111 jug-like 1 -1110110110111 Dolomites 1 -1110110110111 B39 1 -1110110110111 discountpriced 1 -1110110110111 corn-based 1 -1110110110111 Austrian-border 1 -1110110110111 Lalique 1 -1110110110111 Cinola 1 -1110110110111 bidet-like 1 -1110110110111 Pretoria-supplied 1 -1110110110111 39-gallon 1 -1110110110111 buff-colored 1 -1110110110111 corn-distilled 1 -1110110110111 tin-can 1 -1110110110111 now-cooled 1 -1110110110111 tinfoil 1 -1110110110111 Roundup-resistent 1 -1110110110111 silicon-sealants 1 -1110110110111 newsgrade 1 -1110110110111 conventional-trash 1 -1110110110111 popular-brand 1 -1110110110111 Mouska 1 -1110110110111 preform 1 -1110110110111 parasol-like 1 -1110110110111 shop-streamlining 1 -1110110110111 humidity-controlled 1 -1110110110111 secret-formula 1 -1110110110111 All-Bran 1 -1110110110111 blue-and-green 1 -1110110110111 client-driven 1 -1110110110111 corn-derived 1 -1110110110111 utility-generated 1 -1110110110111 non-Saudi 1 -1110110110111 sacrifical 1 -1110110110111 1,142,700 1 -1110110110111 Pascalis 1 -1110110110111 unmovable 1 -1110110110111 staked-out 1 -1110110110111 Fiat-made 1 -1110110110111 pedal-operated 1 -1110110110111 thumbnail-sized 1 -1110110110111 school-enrollment 1 -1110110110111 Northwest-Alaskan 1 -1110110110111 unblended 1 -1110110110111 preemployment 1 -1110110110111 video-controller 1 -1110110110111 platinum-adorned 1 -1110110110111 aqua-eyed 1 -1110110110111 bragging-rights 1 -1110110110111 smaller-dosage 1 -1110110110111 Imovax 1 -1110110110111 methanol-based 1 -1110110110111 acanthus 1 -1110110110111 motor-driven 1 -1110110110111 less-rosy 1 -1110110110111 46-head 1 -1110110110111 46,000-gallon 1 -1110110110111 30,000-acre 1 -1110110110111 Rosita 1 -1110110110111 sterilant 1 -1110110110111 Goldwing 1 -1110110110111 Campos-family 1 -1110110110111 anti-herpes 1 -1110110110111 economy-sport 1 -1110110110111 below-weapons-grade 1 -1110110110111 3.3-ounce 1 -1110110110111 Savonnerie 1 -1110110110111 Colorado-brewed 1 -1110110110111 utility-provided 1 -1110110110111 4-supported 1 -1110110110111 Wiluna 1 -1110110110111 pillow-shaped 1 -1110110110111 almost-invisible 1 -1110110110111 anti-vomiting 1 -1110110110111 EDB-treated 1 -1110110110111 Supertrim 1 -1110110110111 balance-sheet-lending 1 -1110110110111 Cepacol 1 -1110110110111 sodium-sulfur 1 -1110110110111 extraheavy 1 -1110110110111 nickel-iron 1 -1110110110111 antiAIDS 1 -1110110110111 unwrought 1 -1110110110111 faster-speed 1 -1110110110111 three-tank 1 -1110110110111 delivered-in 1 -1110110110111 non-commemorative 1 -1110110110111 Villeperdue 1 -1110110110111 tomato-and-cheese 1 -1110110110111 Alimenies 1 -1110110110111 lithium-iron-sulfide 1 -1110110110111 weather-inspired 1 -1110110110111 pancreatic-cancer 1 -1110110110111 low-to-moderate-income 1 -1110110110111 Mavica 1 -1110110110111 10-digit 1 -1110110110111 1,000-ounce 1 -1110110110111 Opemiska 1 -1110110110111 jams-knee-length 1 -1110110110111 anti-venom 1 -1110110110111 Times-Post 1 -1110110110111 Fendant 1 -1110110110111 nutrition-minded 1 -1110110110111 21-ounce 1 -1110110110111 1,900-acre 1 -1110110110111 electro-melting 1 -1110110110111 Montrealbased 1 -1110110110111 pump-dispenser 1 -1110110110111 already-heavy 1 -1110110110111 182,000-metric-ton-a-year 1 -1110110110111 collarless 1 -1110110110111 sevenstate 1 -1110110110111 one-cup 1 -1110110110111 metallized 1 -1110110110111 Scottish-taught 1 -1110110110111 130-mile 1 -1110110110111 oil/gas 1 -1110110110111 powder-fine 1 -1110110110111 51-cent 1 -1110110110111 anti-arrhythmic 1 -1110110110111 cranberry-prune 1 -1110110110111 heat-strengthening 1 -1110110110111 heat-strengthened 1 -1110110110111 1,530,600 1 -1110110110111 three-taste 1 -1110110110111 illict 1 -1110110110111 Cajun-style 1 -1110110110111 deep-pan 1 -1110110110111 curdles 1 -1110110110111 100,000-head 1 -1110110110111 single-plant 1 -1110110110111 Pazyrik 1 -1110110110111 free-range 1 -1110110110111 shrink-wrapped 1 -1110110110111 once-inviolate 1 -1110110110111 U.S.-mined 1 -1110110110111 J.A.B. 1 -1110110110111 tigress 1 -1110110110111 electrofused 1 -1110110110111 soft-touch 1 -1110110110111 carbon-tipped 1 -1110110110111 short-version 1 -1110110110111 used-up 1 -1110110110111 guar 1 -1110110110111 phone-booth-sized 1 -1110110110111 good-tasting 1 -1110110110111 2,548 1 -1110110110111 7-year-old 1 -1110110110111 Totinos 1 -1110110110111 742-unit 1 -1110110110111 Spelling-produced 1 -1110110110111 extended-term 1 -1110110110111 hammer-and 1 -1110110110111 offduty 1 -1110110110111 Thalanga 1 -1110110110111 openpit 1 -1110110110111 sun-splashed 1 -1110110110111 Elrich-Flavel 1 -1110110110111 2,117 1 -1110110110111 Western-world 1 -1110110110111 Gevalia 1 -1110110110111 cholesterol-zapping 1 -1110110110111 multiunit 1 -1110110110111 Indian-red 1 -1110110110111 AIDS-fighting 1 -1110110110111 Forrestania 1 -1110110110111 AIDS-Salk 1 -1110110110111 movie-division 1 -1110110110111 vegetable-protein 1 -1110110110111 more-humble 1 -1110110110111 cashew-nut 1 -1110110110111 untracking 1 -1110110110111 diphtheria-tetanus-pertussis 1 -1110110110111 honey-based 1 -1110110110111 lipstick-stained 1 -1110110110111 240-unit 1 -1110110110111 Kunnming 1 -1110110110111 mid-length 1 -1110110110111 Cuban-assisted 1 -1110110110111 Soviet-finished 1 -1110110110111 BGH-tested 1 -1110110110111 Sparkle 1 -1110110110111 smaller-than-legal-size 1 -1110110110111 weatherproof 1 -1110110110111 coconut-covered 1 -1110110110111 neuropsychotropic 1 -1110110110111 unmilled 1 -1110110110111 460,000-ton-a-year 1 -1110110110111 all-glass 1 -1110110110111 anthrax-contaminated 1 -1110110110111 Amontillado 1 -1110110110111 made-for-Japan 1 -1110110110111 under-the-floor 1 -1110110110111 Moroccan-style 1 -1110110110111 disease-free 1 -1110110110111 multi-port 1 -1110110110111 then-experimental 1 -1110110110111 explosion-proof-equipment 1 -1110110110111 no-knock 1 -1110110110111 space-launched 1 -1110110110111 glove-compartment 1 -1110110110111 hyper-powered 1 -1110110110111 profit-center 1 -1110110110111 convict-produced 1 -1110110110111 sugar-based 1 -1110110110111 3/60 1 -1110110110111 Colombia-U.S. 1 -1110110110111 non-NASA 1 -1110110110111 48th-largest 1 -1110110110111 polyimide 1 -1110110110111 Yugoslavia-built 1 -1110110110111 winter-blah 1 -1110110110111 rolled-down 1 -1110110110111 bank-aided 1 -1110110110111 Astropizza 1 -1110110110111 fresh-perked 1 -1110110110111 price-supported 1 -1110110110111 ever-stricter 1 -1110110110111 anti-Jesse 1 -1110110110111 ROOKIE 1 -1110110110111 best-priced 1 -1110110110111 city-sized 1 -1110110110111 ordinary-grade 1 -1110110110111 fruit-in-the-middle 1 -1110110110111 hexavalent 1 -1110110110111 premium-category 1 -1110110110111 cholla 1 -1110110110111 barbequed 1 -1110110110111 1,197,411th 1 -1110110110111 deisel 1 -1110110110111 CH600 1 -1110110110111 embargo-free 1 -1110110110111 microsocietal 1 -1110110110111 Tartan-Highlander-Petronella 1 -1110110110111 lot-fed 1 -1110110110111 738,900 1 -1110110110111 Close-up 1 -1110110110111 steering-rocket 1 -1110110110111 brown-coal 1 -1110110110111 35,000-ton-a-day 1 -1110110110111 rent-subsidized 1 -1110110110111 pre-1960 1 -1110110110111 877,600 1 -1110110110111 gold-mining-company 1 -1110110110111 ethanol-based 1 -1110110110111 five-contract 1 -1110110110111 uncared-for 1 -1110110110111 technophiliac 1 -1110110110111 weather-stressed 1 -1110110110111 bacteria-laden 1 -1110110110111 low-pollution 1 -1110110110111 fresh-dough 1 -1110110110111 hawk-hatching 1 -1110110110111 antigeneric 1 -1110110110111 85-title 1 -1110110110111 melon-like 1 -1110110110111 Dniepr 1 -1110110110111 Reformulated 1 -1110110110111 Hebrew-labeled 1 -1110110110111 110-format 1 -1110110110111 hulled 1 -1110110110111 cornfed 1 -1110110110111 automobiletire 1 -1110110110111 lager-type 1 -1110110110111 actioner 1 -1110110110111 tomato-grape 1 -1110110110111 lite 1 -1110110110111 589,100 1 -1110110110111 diethyl 1 -1110110110111 22-karat 1 -1110110110111 rubbber 1 -1110110110111 6,074 1 -1110110110111 40-by-8-foot 1 -1110110110111 fired-up 1 -1110110110111 Sava-Semperit 1 -1110110110111 half-pint 2 -1110110110111 80,000-pound 2 -1110110110111 2,280,000 2 -1110110110111 Aqua-Fresh 2 -1110110110111 state-held 2 -1110110110111 rubberlike 2 -1110110110111 single-family-home 2 -1110110110111 higher-than-projected 2 -1110110110111 140-acre 2 -1110110110111 U.S.-subsidized 2 -1110110110111 intermediate-sized 2 -1110110110111 champagne-based 2 -1110110110111 died-in-the-wool 2 -1110110110111 ultra-low-tar 2 -1110110110111 MPact 2 -1110110110111 ready-to-buy 2 -1110110110111 SuperNaturals 2 -1110110110111 sea-borne 2 -1110110110111 lower-skilled 2 -1110110110111 hormone-treated 2 -1110110110111 commercial-airliner 2 -1110110110111 embargoing 2 -1110110110111 200-speed 2 -1110110110111 American-grown 2 -1110110110111 charbroiled 2 -1110110110111 granulated 2 -1110110110111 oil-dominated 2 -1110110110111 Grenadian 2 -1110110110111 high-alcohol 2 -1110110110111 better-selling 2 -1110110110111 PCB-tainted 2 -1110110110111 oil-covered 2 -1110110110111 reinsures 2 -1110110110111 electro-fused 2 -1110110110111 110-film 2 -1110110110111 anti-anxiety 2 -1110110110111 10-ounce 2 -1110110110111 multi-fiber 2 -1110110110111 malted 2 -1110110110111 galvanized-steel 2 -1110110110111 second-trimester 2 -1110110110111 apple-flavored 2 -1110110110111 un-Hollywoodlike 2 -1110110110111 Dentagard 2 -1110110110111 Butterball 2 -1110110110111 16mm 2 -1110110110111 Sun-3/60 2 -1110110110111 polystyrene-based 2 -1110110110111 long-life 2 -1110110110111 ultrafast 2 -1110110110111 carryout 2 -1110110110111 next-year 2 -1110110110111 rubber-like 2 -1110110110111 biosynthetic 2 -1110110110111 per-gallon 2 -1110110110111 solid-gold 2 -1110110110111 low-occupancy 2 -1110110110111 reduced-alcohol 2 -1110110110111 18-track 2 -1110110110111 peak-load 2 -1110110110111 accounting-standards 2 -1110110110111 passenger-vehicle 2 -1110110110111 in-process 2 -1110110110111 option-pricing 2 -1110110110111 soft-tissue 2 -1110110110111 Lazaroids 2 -1110110110111 picture-frame 2 -1110110110111 Tundra 2 -1110110110111 BGH-treated 2 -1110110110111 rail-freight 2 -1110110110111 digital-exchange 2 -1110110110111 price-regulated 2 -1110110110111 cheap-looking 2 -1110110110111 snow-white 2 -1110110110111 Cochin 2 -1110110110111 antibody-producing 2 -1110110110111 overpressurized 2 -1110110110111 23-karat 2 -1110110110111 steroid-related 2 -1110110110111 drought-tolerant 2 -1110110110111 carry-out 2 -1110110110111 electro-pneumatic 2 -1110110110111 contracted-for 2 -1110110110111 corned 2 -1110110110111 low-demand 2 -1110110110111 slaughter-ready 2 -1110110110111 full-serve 2 -1110110110111 50-cent-a-gallon 2 -1110110110111 cheaper-priced 2 -1110110110111 ACE-inhibitor 2 -1110110110111 silver-halide 2 -1110110110111 804,184 2 -1110110110111 permanent-wave 2 -1110110110111 high-carbon 2 -1110110110111 whole-kernel 2 -1110110110111 performance-enhancing 2 -1110110110111 work-wear 2 -1110110110111 Spanish-based 2 -1110110110111 monocyte/macrophage 2 -1110110110111 robusta 2 -1110110110111 state-managed 2 -1110110110111 1978-84 2 -1110110110111 less-than-average 2 -1110110110111 Superbowl 2 -1110110110111 eight-cylinder 2 -1110110110111 single-cylinder 2 -1110110110111 sonar-equipped 2 -1110110110111 brass-plated 2 -1110110110111 computer-run 2 -1110110110111 tomato-based 2 -1110110110111 anti-miscarriage 2 -1110110110111 event-driven 2 -1110110110111 ceramic-composite 2 -1110110110111 EGA 2 -1110110110111 34-title 2 -1110110110111 surgery-related 2 -1110110110111 accented-French 2 -1110110110111 2.5-ton 2 -1110110110111 down-filled 2 -1110110110111 diamondback 2 -1110110110111 played-out 2 -1110110110111 highercost 2 -1110110110111 red-blood 2 -1110110110111 money-grabbing 2 -1110110110111 blood-clot-dissolving 2 -1110110110111 vulcanized 2 -1110110110111 Bousquet-Cadillac 2 -1110110110111 hard-to-market 2 -1110110110111 yttrium-barium-copper 2 -1110110110111 vitamin-like 2 -1110110110111 anti-cavity 2 -1110110110111 909,971 2 -1110110110111 mottled 2 -1110110110111 lemon-scented 2 -1110110110111 soya 2 -1110110110111 lowincome 2 -1110110110111 Murano 2 -1110110110111 hand-dipped 2 -1110110110111 Gazet 2 -1110110110111 anti-seizure 3 -1110110110111 18-karat 3 -1110110110111 black-buck 3 -1110110110111 mineral-wool 3 -1110110110111 tear-stained 3 -1110110110111 self-serve 3 -1110110110111 utility-supplied 3 -1110110110111 non-electronic 3 -1110110110111 Prohibition-era 3 -1110110110111 antihypertensive 3 -1110110110111 LISC-funded 3 -1110110110111 government-required 3 -1110110110111 3.0-liter 3 -1110110110111 A300-600R 3 -1110110110111 non-Merrill 3 -1110110110111 1974-1979 3 -1110110110111 color-negative 3 -1110110110111 Andechser 3 -1110110110111 evaporative 3 -1110110110111 anti-inflammation 3 -1110110110111 squamous 3 -1110110110111 nearby-delivery 3 -1110110110111 8200 3 -1110110110111 broadcloth 3 -1110110110111 mud-colored 3 -1110110110111 300-movie 3 -1110110110111 1,393 3 -1110110110111 off-shore 3 -1110110110111 high-productivity 3 -1110110110111 milky 3 -1110110110111 August-delivery 3 -1110110110111 steel-like 3 -1110110110111 1,000-plus 3 -1110110110111 sphagnum 3 -1110110110111 spacelaunch 3 -1110110110111 anti-stroke 3 -1110110110111 weak-selling 3 -1110110110111 citrus-flavored 3 -1110110110111 long-handled 3 -1110110110111 semolina 3 -1110110110111 liquid-fuel 3 -1110110110111 five-liter 3 -1110110110111 lower-than-normal 3 -1110110110111 white-walled 3 -1110110110111 Dromedary 3 -1110110110111 graham 3 -1110110110111 clinking 3 -1110110110111 unpasteurized 3 -1110110110111 L6 3 -1110110110111 muscle-building 3 -1110110110111 bitter-tasting 3 -1110110110111 ammunition-hauling 3 -1110110110111 BTOS 3 -1110110110111 1985-1988 3 -1110110110111 steel-cord 3 -1110110110111 inter-city 3 -1110110110111 less-robust 3 -1110110110111 107,735 3 -1110110110111 consumable 3 -1110110110111 Progresso 3 -1110110110111 unroasted 3 -1110110110111 non-approved 3 -1110110110111 warehouse-type 3 -1110110110111 nacho 3 -1110110110111 tap-water 3 -1110110110111 12,000-mile 3 -1110110110111 from-concentrate 3 -1110110110111 five-foot-long 3 -1110110110111 735iL 3 -1110110110111 psychoactive 4 -1110110110111 highend 4 -1110110110111 Depend 4 -1110110110111 ride-on 4 -1110110110111 under-hood 4 -1110110110111 large-capacity 4 -1110110110111 Alaskan-oil 4 -1110110110111 unrationed 4 -1110110110111 better-tasting 4 -1110110110111 single-user 4 -1110110110111 scavenging 4 -1110110110111 Gleem 4 -1110110110111 FX-16 4 -1110110110111 Castrol 4 -1110110110111 misbranded 4 -1110110110111 hair-growing 4 -1110110110111 not-from-concentrate 4 -1110110110111 corrosion-related 4 -1110110110111 premium-quality 4 -1110110110111 400-speed 4 -1110110110111 alcohol-free 4 -1110110110111 unreinforced 4 -1110110110111 anti-epilepsy 4 -1110110110111 cryogenic 4 -1110110110111 waterlogged 4 -1110110110111 U.S.-grown 4 -1110110110111 aspen 4 -1110110110111 direct-current 4 -1110110110111 21st-century 4 -1110110110111 pesticide-tainted 4 -1110110110111 out-of-fashion 4 -1110110110111 deep-dish 4 -1110110110111 nitric 4 -1110110110111 ungraded 4 -1110110110111 noncarbonated 4 -1110110110111 feature-length 4 -1110110110111 permeable 4 -1110110110111 once-elegant 4 -1110110110111 image-oriented 4 -1110110110111 nonproducing 4 -1110110110111 i960CA 4 -1110110110111 low-salt 4 -1110110110111 ready-to-drink 4 -1110110110111 handpainted 4 -1110110110111 ultraluxury 4 -1110110110111 blue- 4 -1110110110111 Brazilian-made 4 -1110110110111 factory-built 4 -1110110110111 anti-arthritic 4 -1110110110111 Israeli-made 4 -1110110110111 near-luxury 4 -1110110110111 pesticide-free 4 -1110110110111 videotape-recorder 4 -1110110110111 CMOS-based 4 -1110110110111 two-sided 4 -1110110110111 non-shuttle 4 -1110110110111 economy-class 4 -1110110110111 salmonella-free 4 -1110110110111 cherry-flavored 4 -1110110110111 upland 4 -1110110110111 public-TV 4 -1110110110111 broiled 4 -1110110110111 multiscreen 4 -1110110110111 crystal-clear 4 -1110110110111 commodity-oriented 4 -1110110110111 made-in-Japan 5 -1110110110111 non-petroleum 5 -1110110110111 job-creating 5 -1110110110111 seafaring 5 -1110110110111 mood-altering 5 -1110110110111 commodity-type 5 -1110110110111 away-from-home 5 -1110110110111 terrestrial 5 -1110110110111 1983-1987 5 -1110110110111 low-smoke 5 -1110110110111 aflatoxin-tainted 5 -1110110110111 aflatoxin-contaminated 5 -1110110110111 convalescent 5 -1110110110111 peanut-butter 5 -1110110110111 short-distance 5 -1110110110111 plastic-bodied 5 -1110110110111 over-the-road 5 -1110110110111 color-converted 5 -1110110110111 non-ILA 5 -1110110110111 unrefined 5 -1110110110111 V8 5 -1110110110111 photosensitizing 5 -1110110110111 U.S.-developed 5 -1110110110111 electronic-security 5 -1110110110111 injectible 5 -1110110110111 non-rubber 5 -1110110110111 skinless 5 -1110110110111 consumption-oriented 5 -1110110110111 spot-month 5 -1110110110111 gas-well 5 -1110110110111 carbonless 5 -1110110110111 post-harvest 5 -1110110110111 high-impact 5 -1110110110111 fetal-tissue 5 -1110110110111 ultra-thin 5 -1110110110111 dried-up 5 -1110110110111 81-store 5 -1110110110111 bentonite 5 -1110110110111 anti-asthma 5 -1110110110111 5.0-liter 5 -1110110110111 Taiwan-made 5 -1110110110111 12-volt 5 -1110110110111 non-metallic 6 -1110110110111 Yugoslavian-made 6 -1110110110111 low-sodium 6 -1110110110111 anti-acne 6 -1110110110111 unburned 6 -1110110110111 higher-temperature 6 -1110110110111 agriculture-related 6 -1110110110111 commercial-loan 6 -1110110110111 Yugoslavian-built 6 -1110110110111 30-pound 6 -1110110110111 598,079 6 -1110110110111 anticancer 6 -1110110110111 Engerix-B 6 -1110110110111 street-level 6 -1110110110111 200-odd 6 -1110110110111 freeze-dried 6 -1110110110111 herbicide-resistant 6 -1110110110111 dressy 6 -1110110110111 inbound 6 -1110110110111 big-volume 6 -1110110110111 purifying 6 -1110110110111 blister 6 -1110110110111 lemon-lime 6 -1110110110111 manual-transmission 6 -1110110110111 Viadent 6 -1110110110111 rancid 6 -1110110110111 lithographic 6 -1110110110111 table-top 7 -1110110110111 brandname 7 -1110110110111 VegiSnax 7 -1110110110111 dollar-earning 7 -1110110110111 high-value-added 7 -1110110110111 mud-brick 7 -1110110110111 on-shore 7 -1110110110111 bleacher 7 -1110110110111 room-service 7 -1110110110111 import-substitution 7 -1110110110111 million-ounce 7 -1110110110111 movie-quality 7 -1110110110111 Viceroy 7 -1110110110111 Nasdaq-traded 7 -1110110110111 multi-purpose 7 -1110110110111 undercooked 7 -1110110110111 private-brand 7 -1110110110111 market-leading 7 -1110110110111 Christmas-season 8 -1110110110111 high-fat 8 -1110110110111 super-absorbent 8 -1110110110111 discount-priced 8 -1110110110111 U.S.-produced 8 -1110110110111 Ethernet 8 -1110110110111 no-name 8 -1110110110111 Unimate 8 -1110110110111 high-mileage 8 -1110110110111 gold-colored 8 -1110110110111 marked-down 8 -1110110110111 three-wheel 8 -1110110110111 Italian-made 8 -1110110110111 U.S.-approved 8 -1110110110111 plastic-body 8 -1110110110111 anti-psychotic 8 -1110110110111 color-print 8 -1110110110111 ground-level 8 -1110110110111 35-millimeter 9 -1110110110111 cathode 9 -1110110110111 sucrose 9 -1110110110111 microcomputer-based 9 -1110110110111 halogenated 9 -1110110110111 1983-87 9 -1110110110111 O.B. 9 -1110110110111 higher-profit 9 -1110110110111 unbranded 9 -1110110110111 popular-priced 9 -1110110110111 pre-measured 9 -1110110110111 infant-formula 9 -1110110110111 carbonized 9 -1110110110111 varietal 10 -1110110110111 energy-efficient 10 -1110110110111 large-sized 10 -1110110110111 pasteurized 10 -1110110110111 non-agricultural 10 -1110110110111 small-engine 10 -1110110110111 eastbound 11 -1110110110111 gold-bullion 11 -1110110110111 Sunoco 11 -1110110110111 Primrose 11 -1110110110111 FDA-approved 11 -1110110110111 caffeine-free 11 -1110110110111 limited-edition 11 -1110110110111 Chubby 11 -1110110110111 Mazola 11 -1110110110111 two-liter 12 -1110110110111 low-growth 12 -1110110110111 LiFeS 12 -1110110110111 barbecued 12 -1110110110111 soluble 12 -1110110110111 westbound 12 -1110110110111 state-subsidized 12 -1110110110111 malting 12 -1110110110111 well-paying 12 -1110110110111 boneless 12 -1110110110111 off-highway 13 -1110110110111 dishwashing 13 -1110110110111 outbound 13 -1110110110111 new-model 13 -1110110110111 disease-causing 13 -1110110110111 Jeep-like 13 -1110110110111 100-ounce 13 -1110110110111 service-industry 13 -1110110110111 one-family 13 -1110110110111 oil-based 13 -1110110110111 lower-margin 13 -1110110110111 mammalian 14 -1110110110111 Soviet-style 14 -1110110110111 hard-to-find 14 -1110110110111 blue-and-white 14 -1110110110111 small-sized 14 -1110110110111 oceangoing 14 -1110110110111 near-normal 15 -1110110110111 microwavable 15 -1110110110111 prefabricated 15 -1110110110111 Styrofoam 15 -1110110110111 foreign-flag 16 -1110110110111 Robusta 16 -1110110110111 Corinthian 16 -1110110110111 roaster 16 -1110110110111 anti-clotting 16 -1110110110111 five-speed 17 -1110110110111 decaffeinated 17 -1110110110111 bootleg 17 -1110110110111 double-stack 17 -1110110110111 British-made 17 -1110110110111 low-tar 18 -1110110110111 anti-cholesterol 18 -1110110110111 megabit 18 -1110110110111 non-alcoholic 19 -1110110110111 ready-to-eat 19 -1110110110111 high-fructose 19 -1110110110111 sulfa 19 -1110110110111 8-mm 19 -1110110110111 good-quality 19 -1110110110111 low-density 20 -1110110110111 anti-hypertension 20 -1110110110111 at-home 20 -1110110110111 anti-arthritis 20 -1110110110111 premium-priced 20 -1110110110111 high-fiber 21 -1110110110111 foreign-controlled 21 -1110110110111 short-haul 21 -1110110110111 sulfur-dioxide 21 -1110110110111 durum 21 -1110110110111 nuclear-armed 21 -1110110110111 owner-occupied 21 -1110110110111 above-quota 21 -1110110110111 1986-model 22 -1110110110111 tinted 22 -1110110110111 pressurized 22 -1110110110111 adobe 22 -1110110110111 high-value 22 -1110110110111 more-expensive 22 -1110110110111 magnifying 22 -1110110110111 handmade 22 -1110110110111 more-efficient 22 -1110110110111 more-sophisticated 22 -1110110110111 full-fare 22 -1110110110111 carbonated 23 -1110110110111 service-sector 23 -1110110110111 D-ram 23 -1110110110111 close-out 23 -1110110110111 bargain-priced 23 -1110110110111 three-wheeled 24 -1110110110111 menthol 24 -1110110110111 lower-quality 24 -1110110110111 non-prescription 24 -1110110110111 anti-inflammatory 25 -1110110110111 mass-produced 25 -1110110110111 multi-family 25 -1110110110111 uncut 25 -1110110110111 roasted 26 -1110110110111 one-ounce 26 -1110110110111 U.S.-flag 26 -1110110110111 cranberry 26 -1110110110111 better-quality 27 -1110110110111 nonprescription 28 -1110110110111 low-paying 29 -1110110110111 drinking-water 29 -1110110110111 unapproved 30 -1110110110111 anti-hypertensive 30 -1110110110111 low-price 32 -1110110110111 Euro 32 -1110110110111 government-subsidized 33 -1110110110111 tax-sheltered 34 -1110110110111 X-rated 35 -1110110110111 high-paying 35 -1110110110111 injectable 35 -1110110110111 antiviral 37 -1110110110111 commemorative 37 -1110110110111 original-equipment 37 -1110110110111 ammonium 37 -1110110110111 name-brand 38 -1110110110111 leaded 38 -1110110110111 low-margin 38 -1110110110111 stationary 39 -1110110110111 256-kilobit 40 -1110110110111 light-truck 40 -1110110110111 mid-size 40 -1110110110111 roast 42 -1110110110111 coconut 42 -1110110110111 anti-ulcer 42 -1110110110111 cholesterol-lowering 43 -1110110110111 anti-viral 43 -1110110110111 current-delivery 43 -1110110110111 top-quality 43 -1110110110111 foreign-based 44 -1110110110111 edible 44 -1110110110111 slow-selling 47 -1110110110111 intercity 47 -1110110110111 liquefied 49 -1110110110111 cross-country 50 -1110110110111 labor-intensive 50 -1110110110111 lithium 51 -1110110110111 anti-baldness 51 -1110110110111 nontraditional 53 -1110110110111 gray-market 54 -1110110110111 topical 54 -1110110110111 smokestack 54 -1110110110111 slow-moving 55 -1110110110111 higher-quality 56 -1110110110111 leftover 56 -1110110110111 less-expensive 57 -1110110110111 cherry 57 -1110110110111 foreign-made 57 -1110110110111 powdered 57 -1110110110111 metallic 58 -1110110110111 caustic 59 -1110110110111 counterfeit 61 -1110110110111 feeder 62 -1110110110111 non-defense 62 -1110110110111 export-dependent 64 -1110110110111 anti-AIDS 64 -1110110110111 fossil 67 -1110110110111 high-grade 68 -1110110110111 titanium 69 -1110110110111 1988-model 70 -1110110110111 DRAM 76 -1110110110111 pent-up 76 -1110110110111 beet 76 -1110110110111 full-size 76 -1110110110111 fried 77 -1110110110111 clot-dissolving 77 -1110110110111 single-premium 81 -1110110110111 cancer-causing 84 -1110110110111 midsize 86 -1110110110111 anti-cancer 86 -1110110110111 multifamily 92 -1110110110111 lower-cost 94 -1110110110111 CFC 98 -1110110110111 mid-sized 102 -1110110110111 high-volume 108 -1110110110111 higher-priced 111 -1110110110111 lower-priced 113 -1110110110111 nonfarm 114 -1110110110111 export-oriented 116 -1110110110111 cut-rate 119 -1110110110111 low-end 121 -1110110110111 unleaded 129 -1110110110111 intravenous 137 -1110110110111 palm 142 -1110110110111 high-end 157 -1110110110111 public-sector 158 -1110110110111 sulfur 160 -1110110110111 black-and-white 174 -1110110110111 alcoholic 186 -1110110110111 round-trip 198 -1110110110111 brand-name 208 -1110110110111 non-farm 211 -1110110110111 midsized 212 -1110110110111 U.S.-made 222 -1110110110111 synthetic 224 -1110110110111 low-priced 224 -1110110110111 diesel 273 -1110110110111 Alaskan 277 -1110110110111 seed 282 -1110110110111 carbon 290 -1110110110111 intermediate 296 -1110110110111 high-quality 306 -1110110110111 single-family 336 -1110110110111 refined 378 -1110110110111 unsold 398 -1110110110111 orange 436 -1110110110111 low-cost 465 -1110110110111 generic 666 -1110110110111 domestic 7144 -1110110110111 imported 1290 -111011011100 six-centimeter 1 -111011011100 five-centimeter 1 -111011011100 light-responsive 1 -111011011100 butter-yellow 1 -111011011100 gift-ordering 1 -111011011100 express-money 1 -111011011100 fluid-processing 1 -111011011100 Buick-Oldsmobile 1 -111011011100 flight-path 1 -111011011100 177,300 1 -111011011100 on-orbit 1 -111011011100 homecare-products 1 -111011011100 flip-flops-with 1 -111011011100 bargelike 1 -111011011100 refining-marketing 1 -111011011100 66-by-20-foot 1 -111011011100 Copenhagen-area 1 -111011011100 in-place 1 -111011011100 loan-shopping 1 -111011011100 supersharp 1 -111011011100 scheduled-airline 1 -111011011100 recreational-boat 1 -111011011100 prestidigitorial 1 -111011011100 carbonated-beverage 1 -111011011100 flow-controller 1 -111011011100 Lizwear 1 -111011011100 uremic 1 -111011011100 one-inch-square 1 -111011011100 Jayhawk 1 -111011011100 postmidnight 1 -111011011100 partnership-rating 1 -111011011100 Entel 1 -111011011100 constant-velocity 1 -111011011100 tennis-ball-style 1 -111011011100 7-by-10 1 -111011011100 institutional-commercial 1 -111011011100 all-frills 1 -111011011100 Nivea 1 -111011011100 VT220 1 -111011011100 14,545 1 -111011011100 7,266 1 -111011011100 processing-product 1 -111011011100 Galician-language 1 -111011011100 closed-network 1 -111011011100 in-terminal 1 -111011011100 rubber-surface 1 -111011011100 astroturf 1 -111011011100 made-for-pay 1 -111011011100 WMMJ-FM 1 -111011011100 KNX-AM 1 -111011011100 gasoline-pump 1 -111011011100 single-platoon 1 -111011011100 center-cum-bomb 1 -111011011100 600-man 1 -111011011100 battalion-sized 1 -111011011100 160,000-seat 1 -111011011100 thermometry 1 -111011011100 Lightdays 1 -111011011100 coffee-roasting 1 -111011011100 15-megawatt 1 -111011011100 business-phone 1 -111011011100 satellite-information 1 -111011011100 party-game 1 -111011011100 eightday 1 -111011011100 24-megawatt 1 -111011011100 LC500 1 -111011011100 1,708 1 -111011011100 gospel-backed 1 -111011011100 weekend-long 1 -111011011100 call-distributing 1 -111011011100 television-quality 1 -111011011100 sunglass 1 -111011011100 Indianapolis-area 1 -111011011100 bath-product 1 -111011011100 2,430-mile 1 -111011011100 strong-performing 1 -111011011100 military-owned 1 -111011011100 home-videotex 1 -111011011100 slackest 1 -111011011100 Spain-U.S. 1 -111011011100 168-acre 1 -111011011100 2.2-million 1 -111011011100 Mailfast 1 -111011011100 now-private 1 -111011011100 21-gun 1 -111011011100 Saturday-afternoon 1 -111011011100 tennis-ball 1 -111011011100 racy-telegram 1 -111011011100 championship-round 1 -111011011100 1,125,200 1 -111011011100 Carina 1 -111011011100 off-on 1 -111011011100 twohour 1 -111011011100 executive-employment 1 -111011011100 carpet-fiber 1 -111011011100 Corona-made 1 -111011011100 government-school 1 -111011011100 motorcycle-messenger 1 -111011011100 direct-dialing 1 -111011011100 flowers-by-wire 1 -111011011100 TeleTax 1 -111011011100 real-estate-brokerage 1 -111011011100 playoff-bound 1 -111011011100 Saturday-Sunday 1 -111011011100 76mm 1 -111011011100 14.5mm 1 -111011011100 sardine-can 1 -111011011100 mush-brained 1 -111011011100 equipment-filled 1 -111011011100 el-cheapo 1 -111011011100 98-megawatt 1 -111011011100 50,000-capacity 1 -111011011100 Teletax 1 -111011011100 wide-striped 1 -111011011100 3,300-volt 1 -111011011100 laceless 1 -111011011100 DMS-10 1 -111011011100 business-customer 1 -111011011100 broadcast-gear 1 -111011011100 multichannel 1 -111011011100 data-moving 1 -111011011100 Tastemaker 1 -111011011100 decorative-paints 1 -111011011100 Yale-Princeton 1 -111011011100 four-inch-tall 1 -111011011100 less-spacious 1 -111011011100 sports-mad 1 -111011011100 homer-hitting 1 -111011011100 lighter-taste 1 -111011011100 AC-Delco 1 -111011011100 160,000-subscriber 1 -111011011100 federal-revenue 1 -111011011100 ship-support 1 -111011011100 1991-1992 1 -111011011100 smoke-shrouded 1 -111011011100 Peking-based 1 -111011011100 route-oriented 1 -111011011100 autofocus 1 -111011011100 sex-message 1 -111011011100 S-2G 1 -111011011100 500SL/SEL 1 -111011011100 Camaro/Firebird 1 -111011011100 action-figure 1 -111011011100 pipe-fabricator 1 -111011011100 five-and-dime-type 1 -111011011100 77-yard 1 -111011011100 summer-season 1 -111011011100 smiling-cat 1 -111011011100 mortgage-processing 1 -111011011100 dock-to-boat 1 -111011011100 pumping-services 1 -111011011100 Tao-yuan 1 -111011011100 hard-maple 1 -111011011100 multiband 1 -111011011100 GTE-Thomson 1 -111011011100 FX16-GTS 1 -111011011100 corporation-wide 1 -111011011100 13-station 1 -111011011100 mountain-lion 1 -111011011100 battlefield-communications 1 -111011011100 185-unit 1 -111011011100 270,950 1 -111011011100 26,000-plus 1 -111011011100 major-network 1 -111011011100 securities-services 1 -111011011100 tenth-largest 1 -111011011100 overstylized 1 -111011011100 professional-management 1 -111011011100 Easter-egg 1 -111011011100 blonde-laden 1 -111011011100 life-enhancing 1 -111011011100 40,000-acre 1 -111011011100 safety-shutdown 1 -111011011100 300,000-kilowatt 1 -111011011100 anti-Westernization 1 -111011011100 vending-distribution 1 -111011011100 manager-employee 1 -111011011100 publicinterest 1 -111011011100 6,887 1 -111011011100 U.K.-to-U.K. 1 -111011011100 chocolate-chip-cookie 1 -111011011100 boutique-sized 1 -111011011100 conglomerate-scale 1 -111011011100 25-inch 1 -111011011100 crank-type 1 -111011011100 machinery-and-equipment 1 -111011011100 karate-like 1 -111011011100 PC6 1 -111011011100 Nontraditional-Dance 1 -111011011100 in-territory 1 -111011011100 out-of-territory 1 -111011011100 portfolio-monitoring 1 -111011011100 heating-air 1 -111011011100 broader-band 1 -111011011100 ring/no-answer 1 -111011011100 trade-and-services 1 -111011011100 water-development 1 -111011011100 multibutton 1 -111011011100 pre-played 1 -111011011100 broadcast-quality 1 -111011011100 WCZY-AM/FM 1 -111011011100 temporary-job 1 -111011011100 red-silk 1 -111011011100 16,128 1 -111011011100 SAM-13 1 -111011011100 Coustic-Glo 1 -111011011100 ceiling-cleaning 1 -111011011100 C-9 1 -111011011100 option-laden 1 -111011011100 dancing-raisins 1 -111011011100 four-panel 1 -111011011100 16-watt 1 -111011011100 super-cheap 1 -111011011100 briefcase-sized 1 -111011011100 software-defined 1 -111011011100 2,633 1 -111011011100 FM-band 1 -111011011100 nuclear-generating 1 -111011011100 2.7-inch 1 -111011011100 Chevrolet-Pontiac 1 -111011011100 housekeeper-referral 1 -111011011100 parts-buying 1 -111011011100 62,000-square-foot 1 -111011011100 118,000-square-foot 1 -111011011100 reference-book 1 -111011011100 country-jamboree 1 -111011011100 forest-warfare 1 -111011011100 fullservice 1 -111011011100 200-pound-plus 1 -111011011100 ground-launch 1 -111011011100 Bofors-made 1 -111011011100 6,953 1 -111011011100 60,000-subscriber 1 -111011011100 WGRZ 1 -111011011100 7,833 1 -111011011100 wideband 1 -111011011100 rent-a-chimp 1 -111011011100 1,574 1 -111011011100 child-study 1 -111011011100 Fleetwood-Clark 1 -111011011100 shoulder-mounted 1 -111011011100 hand-cut 1 -111011011100 general-strike 1 -111011011100 terminal-truck 1 -111011011100 Viracon/Dial 1 -111011011100 Redskins-Giants 1 -111011011100 garbage-fired 1 -111011011100 19-point 1 -111011011100 mail-presort 1 -111011011100 decorative-products 1 -111011011100 90-mph 1 -111011011100 96-unit 1 -111011011100 pay-per-use 1 -111011011100 2,904 1 -111011011100 freight-courier 1 -111011011100 knife-sharpening 1 -111011011100 91,920 1 -111011011100 international-direct-dial 1 -111011011100 then-nascent 1 -111011011100 copying-machine 1 -111011011100 pachydermic 1 -111011011100 Uva 1 -111011011100 Washington-Dallas 1 -111011011100 short-skirt 1 -111011011100 odd-hour 1 -111011011100 telephone-holding 1 -111011011100 fast-packet 1 -111011011100 ozonation 1 -111011011100 guns-and-drugs 1 -111011011100 upper-rent 1 -111011011100 non-playoff 1 -111011011100 beret-clad 1 -111011011100 R-16 1 -111011011100 846,669 1 -111011011100 Oremet 1 -111011011100 KAYI 1 -111011011100 special-technology 1 -111011011100 five-station 1 -111011011100 direct-calling 1 -111011011100 packagedelivery 1 -111011011100 artificial-coloring 1 -111011011100 cable-programming 1 -111011011100 doublespaced 1 -111011011100 38-inch 1 -111011011100 missile-transporter 1 -111011011100 data-marketing 1 -111011011100 dendritic 1 -111011011100 maintenance/margin 1 -111011011100 271-employee 1 -111011011100 15,000-customer 1 -111011011100 Cellnet 1 -111011011100 marine-life 1 -111011011100 19,000-seat 1 -111011011100 1.2-inch-diameter 1 -111011011100 4,079 1 -111011011100 rattiest 1 -111011011100 66-foot-long 1 -111011011100 Create-A-Print 1 -111011011100 car-distributorship 1 -111011011100 terra-cotta-colored 1 -111011011100 roundball 1 -111011011100 television-rating 1 -111011011100 seagull 1 -111011011100 Trump-related 1 -111011011100 tall-stemmed 1 -111011011100 semi-statist 1 -111011011100 sting-like 1 -111011011100 operator-dialed 1 -111011011100 less-fettered 1 -111011011100 cable-television-systems 1 -111011011100 7,635 1 -111011011100 l8-hole 1 -111011011100 439-yard 1 -111011011100 lot-in 1 -111011011100 third-string 1 -111011011100 U.S.-manned 1 -111011011100 45-mile 1 -111011011100 convention-doings 1 -111011011100 2,812 1 -111011011100 1,971 1 -111011011100 organ-donation 1 -111011011100 phone-operating 1 -111011011100 building-product-distribution 1 -111011011100 primo 1 -111011011100 43,000-seat 1 -111011011100 waterdistribution 1 -111011011100 40-channel 1 -111011011100 467,575 1 -111011011100 galleried 1 -111011011100 herdlike 1 -111011011100 informations-system 1 -111011011100 225-room 1 -111011011100 agro-chemical 1 -111011011100 citizens'-band 1 -111011011100 get-Noriega 1 -111011011100 macaws 1 -111011011100 U.S.-U.K. 1 -111011011100 four-game 1 -111011011100 advertiser-bankrolled 1 -111011011100 4,693 1 -111011011100 Shidongkou 1 -111011011100 Balinese-inspired 1 -111011011100 Barclay-share 1 -111011011100 Detroit-built 1 -111011011100 Latvian-language 1 -111011011100 matriculants 1 -111011011100 precision-instruments 1 -111011011100 utility-installed 1 -111011011100 75-store 1 -111011011100 rent-a-family 1 -111011011100 Binsteads 1 -111011011100 steam-flow 1 -111011011100 data-communication 1 -111011011100 60-ish 1 -111011011100 super-clear 1 -111011011100 jitney-cab 1 -111011011100 6803 1 -111011011100 Vilage 1 -111011011100 nine-foot-high 1 -111011011100 all-wheel 1 -111011011100 copy-restricting 1 -111011011100 gull-winged 1 -111011011100 bankrating 1 -111011011100 kitchen-cutlery 1 -111011011100 mail-deposit 1 -111011011100 Hamersley 1 -111011011100 SA-5 1 -111011011100 Baccarat 1 -111011011100 Grated 1 -111011011100 differentiating/changing 1 -111011011100 non-remote 1 -111011011100 68-channel 1 -111011011100 Movado-made 1 -111011011100 vehicle-marketing 1 -111011011100 255-megawatt 1 -111011011100 Simian 1 -111011011100 Hoerzu 1 -111011011100 Cut-Rite 1 -111011011100 Freeman-Regan 1 -111011011100 option-loaded 1 -111011011100 PAC-10 1 -111011011100 tour-packaging 1 -111011011100 super-cushiony 1 -111011011100 cooler-than-usual 1 -111011011100 long-faded 1 -111011011100 377-megawatt 1 -111011011100 door-panel 1 -111011011100 multi-flexible 1 -111011011100 electronic-cables 1 -111011011100 paperdisk 1 -111011011100 papertape 1 -111011011100 78,468 1 -111011011100 heroin-soaked 1 -111011011100 magnetic-tapes 1 -111011011100 20-yard 1 -111011011100 through-the-air 1 -111011011100 79-yard 1 -111011011100 ticketing-reservation 1 -111011011100 chart-inspired 1 -111011011100 stand-and-slurp 1 -111011011100 Diasonics-Sonotron 1 -111011011100 Super-America 1 -111011011100 shatterproof 1 -111011011100 opium-bearing 1 -111011011100 opium-yielding 1 -111011011100 Playboy-at-Night 1 -111011011100 horse-pulled 1 -111011011100 T-shaped 1 -111011011100 guided-missile-equipped 1 -111011011100 99,089 1 -111011011100 RF-082 1 -111011011100 cryptographics 1 -111011011100 cafe-cum-taxi 1 -111011011100 E-Class 1 -111011011100 non-animated 1 -111011011100 dedicated-WATS 1 -111011011100 Videopolis 1 -111011011100 7,046 1 -111011011100 monofilament 1 -111011011100 UNWELCOME 1 -111011011100 six-way 1 -111011011100 50,000-kilowatt 1 -111011011100 sports-scores 1 -111011011100 TelShop 1 -111011011100 once-carefree 1 -111011011100 junior-varsity 1 -111011011100 Stanley-Bostitch 1 -111011011100 network-type 1 -111011011100 big-network 1 -111011011100 7-series 1 -111011011100 visa-free 1 -111011011100 superconductor/supercollider 1 -111011011100 pay-subscription 1 -111011011100 dosage-measuring 1 -111011011100 800-NO-BLOOD 1 -111011011100 Gatorade-type 1 -111011011100 duck-shaped 1 -111011011100 specially-designed 1 -111011011100 cement-producing 1 -111011011100 drugtrafficking 1 -111011011100 then-worthless 1 -111011011100 specialist-credit 1 -111011011100 primary-color 1 -111011011100 expatriate-Chinese 1 -111011011100 ABG-Semca 1 -111011011100 barbed-wired 1 -111011011100 10-hour-a-day 1 -111011011100 Tampa-area 1 -111011011100 KRPM-AM/FM 1 -111011011100 33-day 1 -111011011100 big-audience 1 -111011011100 photocomposition 1 -111011011100 impossible-to-miss 1 -111011011100 9,300-line 1 -111011011100 visitor-aid 1 -111011011100 broad-appeal 1 -111011011100 legal-residency 1 -111011011100 midocean 1 -111011011100 interractive 1 -111011011100 book-flogging 1 -111011011100 WPTA 1 -111011011100 10,345 1 -111011011100 snailing 1 -111011011100 fourth-shortest 1 -111011011100 Sellafield 1 -111011011100 expert-training 1 -111011011100 MCI/Northwest 1 -111011011100 non-SLR 1 -111011011100 graffiti-stained 1 -111011011100 home-intercom 1 -111011011100 Yankees-Mets 1 -111011011100 Sunday-newspaper 1 -111011011100 full-round 1 -111011011100 sandtrapped 1 -111011011100 wholesale-sized 1 -111011011100 package-holiday 1 -111011011100 silvergilt 1 -111011011100 wine-buying 1 -111011011100 McCarthy-style 1 -111011011100 bait-casting 1 -111011011100 nuceoside 1 -111011011100 73,300 1 -111011011100 magnetic-wave 1 -111011011100 69-yard 1 -111011011100 document-transmission 2 -111011011100 computer-to-fax 2 -111011011100 document-delivery 2 -111011011100 arms-production 2 -111011011100 3,287 2 -111011011100 juice-concentrate 2 -111011011100 lastminute 2 -111011011100 manufacturing-automation 2 -111011011100 sled-dog 2 -111011011100 customer-dialed 2 -111011011100 Pensupreme 2 -111011011100 prescription-only 2 -111011011100 small-engines 2 -111011011100 E-Z-Go 2 -111011011100 outside-produced 2 -111011011100 Lestoil 2 -111011011100 gold-and-diamond 2 -111011011100 chemical-arms-control 2 -111011011100 Teleflora 2 -111011011100 UH-1 2 -111011011100 mobil 2 -111011011100 local-phone 2 -111011011100 Stop-N-Go 2 -111011011100 flashless 2 -111011011100 investment-services 2 -111011011100 semi-structured 2 -111011011100 Antwerp-based 2 -111011011100 cotton-diaper 2 -111011011100 flight-information 2 -111011011100 157-year-old 2 -111011011100 subcutaneous 2 -111011011100 wakeup 2 -111011011100 water-distribution 2 -111011011100 Bainbridge/Aquabatten 2 -111011011100 fine-tooth 2 -111011011100 high-jump 2 -111011011100 syndicated-loans 2 -111011011100 fine-toothed 2 -111011011100 splashier 2 -111011011100 Gauge 2 -111011011100 MS-2401 2 -111011011100 door-drive 2 -111011011100 Tele-Cip 2 -111011011100 in-bound 2 -111011011100 communciations 2 -111011011100 17,142 2 -111011011100 MRC-139 2 -111011011100 liquid-fuels 2 -111011011100 Readyline 2 -111011011100 drug-selling 2 -111011011100 optical-scanning 2 -111011011100 multiwall 2 -111011011100 Worldnet 2 -111011011100 Naguib 2 -111011011100 InfusionCare 2 -111011011100 hip-replacement 2 -111011011100 commuter-rail 2 -111011011100 business-and-sports 2 -111011011100 phone-order 2 -111011011100 32-inch 2 -111011011100 after-sales 2 -111011011100 Khashoggi-owned 2 -111011011100 maid-service 2 -111011011100 big-splash 2 -111011011100 car-of-the-year 2 -111011011100 long-distance-telephone 2 -111011011100 higher-than-necessary 2 -111011011100 Q30E 2 -111011011100 Talknet 2 -111011011100 post-paid 2 -111011011100 Fafnier 2 -111011011100 drilling-services 2 -111011011100 desk-drawer 2 -111011011100 container-recycling 2 -111011011100 aircraft-identification 2 -111011011100 touchtone 2 -111011011100 floodlit 2 -111011011100 ramen 2 -111011011100 946,945 2 -111011011100 rear-projection 2 -111011011100 Sovietski 2 -111011011100 energy-information 2 -111011011100 bank-teller 2 -111011011100 palmetto 2 -111011011100 nonairline 2 -111011011100 longdistance 2 -111011011100 560SL 2 -111011011100 commercial-television 2 -111011011100 health-information 2 -111011011100 daytime-only 2 -111011011100 Japanese-financed 2 -111011011100 dump-Meese 2 -111011011100 power-window 2 -111011011100 Dyno-Riders 2 -111011011100 dialup 2 -111011011100 multiple-system 3 -111011011100 non-disadvantaged 3 -111011011100 AS-15 3 -111011011100 out-of-bounds 3 -111011011100 government-services 3 -111011011100 23,000-mile 3 -111011011100 permanent-placement 3 -111011011100 six-minute 3 -111011011100 fast-lube 3 -111011011100 SA-7 3 -111011011100 multi-national 3 -111011011100 system-specific 3 -111011011100 cable-televison 3 -111011011100 industrial-systems 3 -111011011100 direct-dialed 3 -111011011100 livery 3 -111011011100 Nopri 3 -111011011100 product-oriented 3 -111011011100 oil-distribution 3 -111011011100 yellow-page 3 -111011011100 coronary-care 3 -111011011100 full-screen 3 -111011011100 mail-marketing 3 -111011011100 group-insurance 3 -111011011100 fiber-optical 3 -111011011100 non-mining 3 -111011011100 neurobiology 3 -111011011100 inter-league 3 -111011011100 key-punch 3 -111011011100 mine-hunting 3 -111011011100 news-clipping 3 -111011011100 short-wave 3 -111011011100 non-wireline 3 -111011011100 beeping 3 -111011011100 check-authorization 3 -111011011100 read-out 3 -111011011100 single-line 3 -111011011100 central-processing 3 -111011011100 zero-tax 3 -111011011100 Nelco 3 -111011011100 ScanTrack 3 -111011011100 telephone-services 3 -111011011100 copper-wire 3 -111011011100 toilet-bowl 3 -111011011100 chip-manufacturing 4 -111011011100 underseas 4 -111011011100 input-output 4 -111011011100 home-trading 4 -111011011100 video-screen 4 -111011011100 car-telephone 4 -111011011100 cable-television-system 4 -111011011100 carbon-steel 4 -111011011100 dance-hall 4 -111011011100 on-off 4 -111011011100 non-French 4 -111011011100 non-department-store 4 -111011011100 dog-racing 4 -111011011100 rail-passenger 4 -111011011100 twin-blade 4 -111011011100 Foot-Joy 4 -111011011100 Touch-Tone 4 -111011011100 charter-boat 4 -111011011100 food-manufacturing 4 -111011011100 airline-ticket 4 -111011011100 basic-cable 5 -111011011100 conelike 5 -111011011100 800-number 5 -111011011100 gold-exploration 5 -111011011100 financial-guarantee 5 -111011011100 fly-fishing 5 -111011011100 underhand 5 -111011011100 directory-assistance 5 -111011011100 Herblock 5 -111011011100 teletext 5 -111011011100 womenswear 5 -111011011100 Panama-based 5 -111011011100 non-hotel 5 -111011011100 local-service 5 -111011011100 phone-service 6 -111011011100 mobile-telephone 6 -111011011100 non-Bell 6 -111011011100 television-station 6 -111011011100 doo-wop 6 -111011011100 credit-repair 6 -111011011100 gas-fueled 6 -111011011100 SuperNode 6 -111011011100 air-express 6 -111011011100 mobile-radio 6 -111011011100 Immunodeficiency 6 -111011011100 mucous 6 -111011011100 garbage-hauling 7 -111011011100 local-area 7 -111011011100 credit-scoring 7 -111011011100 joint-stock 7 -111011011100 canned-foods 7 -111011011100 direct-dial 7 -111011011100 hot-line 8 -111011011100 clarion 8 -111011011100 DMS 8 -111011011100 financial-news 8 -111011011100 cost-management 8 -111011011100 horoscope 8 -111011011100 penny-ante 8 -111011011100 music-video 9 -111011011100 non-consolidated 9 -111011011100 rear-wheel 10 -111011011100 VOR 10 -111011011100 teller-machine 10 -111011011100 two-wheel 10 -111011011100 gas-distribution 10 -111011011100 non-drug 10 -111011011100 front-wheel 11 -111011011100 shoulder-fired 11 -111011011100 yellow-pages 11 -111011011100 computer-communications 12 -111011011100 push-button 12 -111011011100 operator-assisted 13 -111011011100 satellite-delivered 13 -111011011100 advertiser-supported 13 -111011011100 school-bus 14 -111011011100 optical-fiber 14 -111011011100 vision-care 14 -111011011100 mobile-phone 15 -111011011100 Centrex 15 -111011011100 private-line 15 -111011011100 pay-cable 15 -111011011100 central-office 15 -111011011100 wake-up 15 -111011011100 electrification 16 -111011011100 e-mail 17 -111011011100 coaxial 17 -111011011100 phone-company 17 -111011011100 car-phone 18 -111011011100 raunchy 18 -111011011100 Vodafone 18 -111011011100 network-affiliated 19 -111011011100 WATS 20 -111011011100 financial-information 20 -111011011100 cordless 21 -111011011100 floppy-disk 21 -111011011100 touch-tone 21 -111011011100 fiber-optics 27 -111011011100 pay-TV 28 -111011011100 sea-launched 29 -111011011100 switchboard 33 -111011011100 neural 33 -111011011100 phone-in 34 -111011011100 ground-launched 36 -111011011100 closed-circuit 44 -111011011100 videotex 54 -111011011100 four-wheel 55 -111011011100 cellular-telephone 65 -111011011100 home-shopping 66 -111011011100 witch 83 -111011011100 pay-per-view 91 -111011011100 high-definition 96 -111011011100 toll-free 148 -111011011100 fiber-optic 161 -111011011100 cellular 749 -111011011100 long-distance 1004 -111011011100 phone 3508 -111011011100 cable 3615 -111011011100 telephone 3838 -111011011101 engine-building 1 -111011011101 underwater-surveillance 1 -111011011101 co-extrusion 1 -111011011101 immunotoxin 1 -111011011101 phase-change 1 -111011011101 propeller-grinding 1 -111011011101 glass-forming 1 -111011011101 envelope-making 1 -111011011101 submarine-detection 1 -111011011101 office-communication 1 -111011011101 company-developed 1 -111011011101 PC/ 1 -111011011101 network-related 1 -111011011101 Cadra-11 1 -111011011101 Cadra-1 1 -111011011101 Japanese-introduced 1 -111011011101 1,000-ton-per-day 1 -111011011101 IRIS-4D 1 -111011011101 frozen-novelties 1 -111011011101 read-only-memory 1 -111011011101 popsicle-stick 1 -111011011101 Pap-screening 1 -111011011101 electrochemical-processing 1 -111011011101 Surface-mount 1 -111011011101 surface-mount 1 -111011011101 intravenous-equipment-and-solutions-pro 1 -111011011101 iron-spike 1 -111011011101 Dual-purpose 1 -111011011101 tomato-leaf 1 -111011011101 Apollo/Covia 1 -111011011101 submarine-quietening 1 -111011011101 aroma-therapy 1 -111011011101 aircraft-weapon 1 -111011011101 ever-grinding 1 -111011011101 Cocom-proscribed 1 -111011011101 aircraft-instrument 1 -111011011101 digital-tape 1 -111011011101 computer-console 1 -111011011101 snap-up 1 -111011011101 corporate-profits 1 -111011011101 laminated-panels 1 -111011011101 IntelliStar 1 -111011011101 database-management 1 -111011011101 pulp-making 1 -111011011101 Aardvark 1 -111011011101 book-fair 1 -111011011101 spelling-checker 1 -111011011101 unpopped 1 -111011011101 microwave-lamp 1 -111011011101 fermentation-process 1 -111011011101 more-versatile 1 -111011011101 3Display 1 -111011011101 configurable 1 -111011011101 long-fragmented 1 -111011011101 hand-out 1 -111011011101 engineering/safety 1 -111011011101 Goldstar-designed 1 -111011011101 mine-removal 1 -111011011101 pet-products 1 -111011011101 electronicorder 1 -111011011101 film-based 1 -111011011101 instant-photographic 1 -111011011101 VAXBI 1 -111011011101 360-kilobyte 1 -111011011101 next-best-selling 1 -111011011101 groundstation 1 -111011011101 larger-diameter 1 -111011011101 independent-owned 1 -111011011101 embarrassed-looking 1 -111011011101 Microsoft-IBM 1 -111011011101 3B1 1 -111011011101 laser-disk 1 -111011011101 country-two 1 -111011011101 submarine-quieting 1 -111011011101 microchip-manufacturing 1 -111011011101 spreadsheet-modeling 1 -111011011101 amorphous-metal 1 -111011011101 bank-provided 1 -111011011101 low-pesticide 1 -111011011101 T3 1 -111011011101 glass-based 1 -111011011101 4.7-inch 1 -111011011101 electricial 1 -111011011101 unmaintained 1 -111011011101 fluid-components 1 -111011011101 PFS 1 -111011011101 cylinder-head 1 -111011011101 million-character 1 -111011011101 street-light 1 -111011011101 takeover-financing 1 -111011011101 electronic-switching 1 -111011011101 football-stadium 1 -111011011101 nucleation 1 -111011011101 best-of-breed 1 -111011011101 semiconductor-process 1 -111011011101 Voyageur 1 -111011011101 CD-Rolm 1 -111011011101 near-supercomputer 1 -111011011101 language-analysis 1 -111011011101 non-Malaysian 1 -111011011101 new-product-driven 1 -111011011101 trade-model 1 -111011011101 videocassette-recorder 1 -111011011101 Microsoft-AT&T 1 -111011011101 high-volume-dependent 1 -111011011101 readonly 1 -111011011101 non-consumer-related 1 -111011011101 express-parcel 1 -111011011101 weapons-related 1 -111011011101 electrical-storage 1 -111011011101 bond-financing 1 -111011011101 graphics-arts 1 -111011011101 loan-and-aid 1 -111011011101 solids-processing 1 -111011011101 Wars-like 1 -111011011101 Selectric 1 -111011011101 then-chaotic 1 -111011011101 laser-enrichment 1 -111011011101 radar-homing 1 -111011011101 linear-programming 1 -111011011101 vapor-inhalation 1 -111011011101 22,000-acre 1 -111011011101 cut-and-grind 1 -111011011101 telephone-to-terminal 1 -111011011101 computer-design 1 -111011011101 steam-production 1 -111011011101 weigh-feeding 1 -111011011101 gas-pump 1 -111011011101 produce-marketing 1 -111011011101 debt-discounting 1 -111011011101 IBM-Microsoft 1 -111011011101 print-on 1 -111011011101 utility-pole 1 -111011011101 target-acquisition 1 -111011011101 cockpit-voice 1 -111011011101 quote-service 1 -111011011101 electrical-stimulus 1 -111011011101 automatic-switching 1 -111011011101 defense-manufacturing 1 -111011011101 government-contracting 1 -111011011101 outdoor-attraction 1 -111011011101 machine-control 1 -111011011101 MIT-Japan 1 -111011011101 Disney-designed 1 -111011011101 cell-making 1 -111011011101 cell-engineering 1 -111011011101 automobile-hauling 1 -111011011101 asplenia 1 -111011011101 vehicle-location 1 -111011011101 check-sorting 1 -111011011101 loud-speaker 1 -111011011101 cellular-enhancer 1 -111011011101 inkjet 1 -111011011101 electronic-dictionary 1 -111011011101 4-by-2 1 -111011011101 non-game 1 -111011011101 direct-view 1 -111011011101 computer-analysis 1 -111011011101 program-interface 1 -111011011101 spill-fighting 1 -111011011101 airdefense 1 -111011011101 low-observable 1 -111011011101 radar-absorptive 1 -111011011101 throttle-position 1 -111011011101 walkie-talkie-like 1 -111011011101 handwritten-diary 1 -111011011101 brake-rotor 1 -111011011101 longer-lived 1 -111011011101 transmission-manufacturing 1 -111011011101 toilet-sound 1 -111011011101 Mom-and-Pop 1 -111011011101 electronic-jamming 1 -111011011101 chip-packaging 1 -111011011101 Deskmate 1 -111011011101 four-millionth 1 -111011011101 Disneyland-like 1 -111011011101 receptor-site 1 -111011011101 fish/small 1 -111011011101 marketing-department 1 -111011011101 out-of-the-limelight 1 -111011011101 calcium-containing 1 -111011011101 white-on-black 1 -111011011101 directional-control 1 -111011011101 Euro-train 1 -111011011101 water-reactor 1 -111011011101 color-copying 1 -111011011101 Starport 1 -111011011101 data-acquisition 1 -111011011101 job-screening 1 -111011011101 composites-fabrication 1 -111011011101 telecommunications-testing 1 -111011011101 1980s-style 1 -111011011101 needle-exchange 1 -111011011101 MUSE 1 -111011011101 Freehand 1 -111011011101 radar-shielding 1 -111011011101 point-of-sales 1 -111011011101 FreeHand 1 -111011011101 portable-appliance 1 -111011011101 herniated 1 -111011011101 Telford-made 1 -111011011101 gasoline-storage 1 -111011011101 spelling-only 1 -111011011101 Geneamp 1 -111011011101 often-stunning 1 -111011011101 biscuit-baking 1 -111011011101 ground-strike 1 -111011011101 helicopter-improvement 1 -111011011101 identi 1 -111011011101 ever-thickening 1 -111011011101 radiowave 1 -111011011101 voicerecognition 1 -111011011101 DeskMate 1 -111011011101 5-1/4inch 1 -111011011101 0661 1 -111011011101 vendor-insulated 1 -111011011101 patty-cake 1 -111011011101 TV-network-advertising 1 -111011011101 Aegis-capable 1 -111011011101 network-operating 1 -111011011101 Arwood 1 -111011011101 micro-chip 1 -111011011101 computer-surveillance 1 -111011011101 gizmos-computer-generated 1 -111011011101 textile-making 1 -111011011101 courtoom 1 -111011011101 TCI-affiliated 1 -111011011101 voltage-regulated 1 -111011011101 voyage-date 1 -111011011101 morning.The 1 -111011011101 voice-response 1 -111011011101 account-information 1 -111011011101 Praxis-driven 1 -111011011101 fly-and-drive 1 -111011011101 telemedical 1 -111011011101 voice-altering 1 -111011011101 reduced-instruction-set-computer 1 -111011011101 marine-construction 1 -111011011101 eight-page-a-minute 1 -111011011101 document-imaging 1 -111011011101 affective 1 -111011011101 RISC/ 1 -111011011101 image-compression 1 -111011011101 bag-making 1 -111011011101 medication-dispensing 1 -111011011101 steel-servicing 1 -111011011101 gene-replication 1 -111011011101 rain-making 1 -111011011101 quarter-scale 1 -111011011101 3,147 1 -111011011101 stealth-aircraft 1 -111011011101 memory-upgrade 1 -111011011101 bacteria-based 1 -111011011101 6200 1 -111011011101 Swissmade 1 -111011011101 business-systems 2 -111011011101 office-information 2 -111011011101 domestic-appliance 2 -111011011101 printing-equipment 2 -111011011101 tire-valve 2 -111011011101 box-like 2 -111011011101 drip-watering 2 -111011011101 rocket-propulsion 2 -111011011101 leak-detection 2 -111011011101 computer-type 2 -111011011101 radio-cassette 2 -111011011101 plant-vaccine 2 -111011011101 merchant-marine 2 -111011011101 family-tent 2 -111011011101 car-wash 2 -111011011101 missile-development 2 -111011011101 gene-probe 2 -111011011101 oral-pharmaceutical 2 -111011011101 school-financing 2 -111011011101 ticket-sales 2 -111011011101 tele-shopping 2 -111011011101 medical-data 2 -111011011101 8250 2 -111011011101 110-model 2 -111011011101 ocean-surveillance 2 -111011011101 non-microwave 2 -111011011101 merger-advisory 2 -111011011101 Teletel 2 -111011011101 computer-control 2 -111011011101 applications-software 2 -111011011101 computer-information 2 -111011011101 jewellike 2 -111011011101 monoclonal-antibody 2 -111011011101 paste-resin 2 -111011011101 electronic-eavesdropping 2 -111011011101 software-engineering 2 -111011011101 xerographic 2 -111011011101 racial-preference 2 -111011011101 spell-checking 2 -111011011101 letter-sorting 2 -111011011101 autotransfusion 2 -111011011101 plastic-pipe 2 -111011011101 drilling-mud 2 -111011011101 electric-machinery 2 -111011011101 communications-products 2 -111011011101 small-size 2 -111011011101 communications-satellite 2 -111011011101 military-history 2 -111011011101 research-only 2 -111011011101 higher-value-added 2 -111011011101 network-management 2 -111011011101 computer-voice 2 -111011011101 cellular-ceramic 2 -111011011101 women's-clothing 2 -111011011101 drug-dispensing 2 -111011011101 180-mile 2 -111011011101 air-brake 2 -111011011101 4,545,074 2 -111011011101 phone-network 2 -111011011101 telecommunications-management 2 -111011011101 data-communications-equipment 2 -111011011101 VCR-adapter 2 -111011011101 home-taping 2 -111011011101 car-stereo 2 -111011011101 space-satellite 2 -111011011101 fixed-exchange-rate 2 -111011011101 video-duplication 2 -111011011101 Hardcard 2 -111011011101 risk-control 2 -111011011101 communications-network 2 -111011011101 2,500-mile 2 -111011011101 lens-molding 2 -111011011101 instant-photo 2 -111011011101 graphics-oriented 2 -111011011101 computer-display 2 -111011011101 vote-stealing 2 -111011011101 operating-environment 2 -111011011101 PVC-backed 2 -111011011101 fire-alarm 2 -111011011101 ventricular-assist 2 -111011011101 design-automation 2 -111011011101 endotoxin 2 -111011011101 line-testing 2 -111011011101 closed-caption 2 -111011011101 computer-memory 2 -111011011101 tax-processing 2 -111011011101 medical-monitoring 2 -111011011101 previous-generation 2 -111011011101 convenience-food 2 -111011011101 lead-strontium 2 -111011011101 affinity-card 2 -111011011101 radiation-detection 2 -111011011101 radio/cassette 2 -111011011101 paper-coating 2 -111011011101 intra-uterine 2 -111011011101 solid-ink 2 -111011011101 data-switching 2 -111011011101 ground-handling 2 -111011011101 pre-modern 2 -111011011101 letter-quality 2 -111011011101 shock-wave 2 -111011011101 strip-mine 2 -111011011101 silver-oxide 2 -111011011101 radio-detection 2 -111011011101 value-driven 2 -111011011101 chilled-juice 2 -111011011101 fire-extinguishing 2 -111011011101 electronic-communications 2 -111011011101 clinical-lab 2 -111011011101 leatherback 2 -111011011101 grape-based 2 -111011011101 radar-absorbing 2 -111011011101 electronic-surveillance 2 -111011011101 numeric 2 -111011011101 data-input 2 -111011011101 mail-service 2 -111011011101 emission-reduction 2 -111011011101 clot-resisting 2 -111011011101 Japanese-market 2 -111011011101 Toshiba-Kongsberg 2 -111011011101 aircraft-modification 2 -111011011101 HDTV-related 2 -111011011101 QSound 2 -111011011101 coal-transport 2 -111011011101 electrical-transmission 2 -111011011101 stain-blocking 2 -111011011101 DN590 2 -111011011101 IIx 2 -111011011101 jewelry-manufacturing 2 -111011011101 microcontroller 2 -111011011101 brick-making 2 -111011011101 directory-publishing 2 -111011011101 used-furniture 2 -111011011101 renal-care 2 -111011011101 product-identification 2 -111011011101 multicolor 2 -111011011101 business-presentation 2 -111011011101 business-brokerage 2 -111011011101 can-making 2 -111011011101 legal-information 2 -111011011101 gum-ball 2 -111011011101 color-film 2 -111011011101 management-bargaining 2 -111011011101 telephone-dialing 3 -111011011101 chemcial 3 -111011011101 airsickness 3 -111011011101 gelatinous 3 -111011011101 VAXmate 3 -111011011101 minerals-processing 3 -111011011101 solid-waste-disposal 3 -111011011101 Jafra 3 -111011011101 audio-cassette 3 -111011011101 french-fry 3 -111011011101 microprocessor-based 3 -111011011101 semiconductor-coating 3 -111011011101 surround-sound 3 -111011011101 super-minicomputer 3 -111011011101 light-beer 3 -111011011101 computer-data 3 -111011011101 PC-compatible 3 -111011011101 train-making 3 -111011011101 drug-product 3 -111011011101 food-service-equipment 3 -111011011101 broken-down 3 -111011011101 car-manufacturing 3 -111011011101 paper-handling 3 -111011011101 trade-name 3 -111011011101 efficiency-enhancing 3 -111011011101 trade-tracking 3 -111011011101 lodging-industry 3 -111011011101 spring-summer 3 -111011011101 encrypting 3 -111011011101 fastening 3 -111011011101 flow-measurement 3 -111011011101 3/50M 3 -111011011101 district-heating 3 -111011011101 Wy-Cal 3 -111011011101 aluminum-can 3 -111011011101 cursor-guiding 3 -111011011101 toll-road 3 -111011011101 drug-benefit 3 -111011011101 educational-publishing 3 -111011011101 datatransmission 3 -111011011101 PC-based 3 -111011011101 fare-collection 3 -111011011101 bomb-detecting 3 -111011011101 dynamical 3 -111011011101 unwatched 3 -111011011101 instant-film 3 -111011011101 printing-ink 3 -111011011101 faster-moving 3 -111011011101 telephone-message 3 -111011011101 seismographic 3 -111011011101 telecommunicatons 3 -111011011101 diamond-encrusted 3 -111011011101 LightStyle 3 -111011011101 once-genteel 3 -111011011101 calico 3 -111011011101 national-park 3 -111011011101 water-related 3 -111011011101 oil-technology 3 -111011011101 candy-colored 3 -111011011101 space-systems 3 -111011011101 intelligent-network 3 -111011011101 tinning 3 -111011011101 pulp-mill 3 -111011011101 card-counting 3 -111011011101 radio-wave 3 -111011011101 open-hearth 3 -111011011101 recirculation 3 -111011011101 descrambling 3 -111011011101 food-can 3 -111011011101 temperature-resistant 3 -111011011101 Palette 3 -111011011101 airline-reservation 3 -111011011101 computer-operating 3 -111011011101 digitizer 3 -111011011101 ticket-reservation 3 -111011011101 computerized-design 4 -111011011101 phone-mail 4 -111011011101 nerve-gas 4 -111011011101 solar-power 4 -111011011101 war-games 4 -111011011101 windshield-wiper 4 -111011011101 audio-tape 4 -111011011101 promo 4 -111011011101 water-bed 4 -111011011101 traffic-control 4 -111011011101 cash-cow 4 -111011011101 plastic-can 4 -111011011101 integrated-circuit 4 -111011011101 cutaway 4 -111011011101 laser-beam 4 -111011011101 propeller-milling 4 -111011011101 corporate-trust 4 -111011011101 disk-storage 4 -111011011101 graphic-design 4 -111011011101 advanced-ceramics 4 -111011011101 ship-propulsion 4 -111011011101 off-screen 4 -111011011101 merit-based 4 -111011011101 daisy-wheel 4 -111011011101 speech-recognition 4 -111011011101 phone-porn 4 -111011011101 time-lapse 4 -111011011101 light-rail 4 -111011011101 laboratory-testing 4 -111011011101 voice-messaging 4 -111011011101 crowd-control 4 -111011011101 biodegradation 4 -111011011101 wide-area 4 -111011011101 color-conversion 4 -111011011101 home-sewing 4 -111011011101 fast-burn 4 -111011011101 shag 4 -111011011101 business-graphics 4 -111011011101 heap-leach 4 -111011011101 energy-management 4 -111011011101 microcircuit 4 -111011011101 video-conferencing 4 -111011011101 watchmaking 4 -111011011101 chemical-analysis 4 -111011011101 solar-cell 4 -111011011101 military-electronics 4 -111011011101 container-shipping 4 -111011011101 audio/visual 4 -111011011101 videogame 4 -111011011101 cross-connect 4 -111011011101 2755 4 -111011011101 credit-services 4 -111011011101 radio-telephone 4 -111011011101 sport-fishing 4 -111011011101 fried-chicken 4 -111011011101 machine-translation 4 -111011011101 shoemaking 4 -111011011101 digital-switching 4 -111011011101 fire-detection 4 -111011011101 power-line 4 -111011011101 bindery 5 -111011011101 single-purpose 5 -111011011101 voyage-data 5 -111011011101 super-fast 5 -111011011101 scrubber 5 -111011011101 optical-storage 5 -111011011101 chip-design 5 -111011011101 TV-production 5 -111011011101 auto-auction 5 -111011011101 photo-products 5 -111011011101 information-management 5 -111011011101 metal-finishing 5 -111011011101 NTX 5 -111011011101 stern-drive 5 -111011011101 retreading 5 -111011011101 interstate-highway 5 -111011011101 computer-aided-design 5 -111011011101 hand-me-down 5 -111011011101 ring-laser 5 -111011011101 cruise-control 5 -111011011101 gas-gathering 5 -111011011101 climate-control 5 -111011011101 waste-hauling 5 -111011011101 doughnut-shaped 5 -111011011101 antipollution 5 -111011011101 carbon-fiber 5 -111011011101 frozen-potato 5 -111011011101 lower-profit 5 -111011011101 radio-network 5 -111011011101 physical-fitness 6 -111011011101 better-trained 6 -111011011101 bank-note 6 -111011011101 signal-processing 6 -111011011101 medical-cost 6 -111011011101 mortgage-trading 6 -111011011101 pipe-fabricating 6 -111011011101 rapid-transit 6 -111011011101 business-computer 6 -111011011101 medical-device 6 -111011011101 money-order 6 -111011011101 teletype 6 -111011011101 audio-video 6 -111011011101 rare-book 6 -111011011101 hospital-supply 6 -111011011101 passive-restraint 6 -111011011101 tape-drive 6 -111011011101 computer-security 6 -111011011101 mortuary 6 -111011011101 production-monitoring 6 -111011011101 travel-service 6 -111011011101 gold-dredging 6 -111011011101 gene-amplification 6 -111011011101 lawn-mower 6 -111011011101 trading-room 6 -111011011101 Camay 6 -111011011101 token-ring 7 -111011011101 cash-and-carry 7 -111011011101 heavy-machinery 7 -111011011101 8800 7 -111011011101 medical-imaging 7 -111011011101 VAN 7 -111011011101 Floptical 7 -111011011101 CD-I 7 -111011011101 temporary-employment 7 -111011011101 Ethospace 7 -111011011101 woodworking 7 -111011011101 Cycolor 7 -111011011101 metal-coating 7 -111011011101 GEnie 7 -111011011101 Kearfott 7 -111011011101 non-impact 8 -111011011101 after-market 8 -111011011101 blood-test 8 -111011011101 dog-food 8 -111011011101 steel-processing 8 -111011011101 mini-computer 8 -111011011101 technical-school 8 -111011011101 bomb-detection 8 -111011011101 garbage-to-energy 8 -111011011101 copper-oxide 8 -111011011101 video-display 8 -111011011101 MR 8 -111011011101 low-pressure 8 -111011011101 computer-network 8 -111011011101 document-management 8 -111011011101 seldom-used 8 -111011011101 computer-graphics 8 -111011011101 self-healing 8 -111011011101 telephone-exchange 8 -111011011101 videotext 8 -111011011101 ink-jet 8 -111011011101 unit-trust 8 -111011011101 laser-printer 8 -111011011101 property-management 8 -111011011101 power-transmission 9 -111011011101 video-retailing 9 -111011011101 telephone-answering 9 -111011011101 computer-system 9 -111011011101 gold-ore 9 -111011011101 liposome 9 -111011011101 fruit-flavored 9 -111011011101 water-jet 9 -111011011101 ground-support 9 -111011011101 work-station 9 -111011011101 word-processor 9 -111011011101 PBX 9 -111011011101 diagnostic-imaging 9 -111011011101 aircraft-manufacturing 9 -111011011101 multiplexer 9 -111011011101 systems-integration 9 -111011011101 fiberoptic 9 -111011011101 home-security 9 -111011011101 Sun-4 9 -111011011101 TCAS 9 -111011011101 Craftsman 9 -111011011101 radio-paging 10 -111011011101 satellite-communications 10 -111011011101 refuse-to-energy 10 -111011011101 mass-production 10 -111011011101 debit-card 10 -111011011101 pocket-sized 10 -111011011101 PATH 10 -111011011101 PostScript 10 -111011011101 boudoir 10 -111011011101 bottled-water 10 -111011011101 lumbar 10 -111011011101 driftnet 10 -111011011101 encoding 10 -111011011101 genetic-engineering 10 -111011011101 hearing-aid 11 -111011011101 computer-networking 11 -111011011101 junkbond 11 -111011011101 financial-printing 11 -111011011101 vacuum-cleaner 11 -111011011101 check-out 11 -111011011101 biosensor 11 -111011011101 optical-disk 11 -111011011101 nuclear-energy 11 -111011011101 transaction-processing 11 -111011011101 photo-finishing 11 -111011011101 wine-cooler 12 -111011011101 service-station 12 -111011011101 collision-avoidance 12 -111011011101 leather-goods 12 -111011011101 Doppler 12 -111011011101 data-transmission 12 -111011011101 data-entry 12 -111011011101 non-IBM 12 -111011011101 computer-imaging 12 -111011011101 specialty-chemical 12 -111011011101 home-computer 12 -111011011101 audiovisual 13 -111011011101 wireless 13 -111011011101 12-ounce 13 -111011011101 disaster-recovery 13 -111011011101 voice-mail 13 -111011011101 window-shade 13 -111011011101 stain-resistant 13 -111011011101 management-information 13 -111011011101 altitude-reporting 13 -111011011101 flight-control 13 -111011011101 graphic-arts 13 -111011011101 fish-processing 13 -111011011101 water-purification 14 -111011011101 small-package 14 -111011011101 booster-rocket 14 -111011011101 order-execution 14 -111011011101 five-inch 14 -111011011101 cucumber 14 -111011011101 3X 14 -111011011101 CD-V 14 -111011011101 telephone-equipment 15 -111011011101 voice-recognition 15 -111011011101 special-effects 15 -111011011101 ship-repair 15 -111011011101 flight-data 15 -111011011101 gas-turbine 15 -111011011101 power-steering 15 -111011011101 electronic-mail 15 -111011011101 drug-delivery 16 -111011011101 public-address 16 -111011011101 optometric 16 -111011011101 diesel-engine 16 -111011011101 maquila 16 -111011011101 ready-to-wear 16 -111011011101 greeting-card 17 -111011011101 electronic-publishing 17 -111011011101 VDT 17 -111011011101 small-order 17 -111011011101 technology-based 17 -111011011101 radar-jamming 17 -111011011101 factory-automation 17 -111011011101 neural-network 17 -111011011101 desktop-publishing 17 -111011011101 power-generation 17 -111011011101 fuel-injection 17 -111011011101 emission-control 18 -111011011101 materials-handling 18 -111011011101 feng 18 -111011011101 quick-lube 18 -111011011101 heavy-equipment 18 -111011011101 fire-control 18 -111011011101 telephone-switch 18 -111011011101 power-supply 18 -111011011101 uranium-enrichment 18 -111011011101 pest-control 18 -111011011101 mail-sorting 18 -111011011101 metalworking 19 -111011011101 computer-reservations 19 -111011011101 AI 19 -111011011101 life-support 19 -111011011101 clean-coal 20 -111011011101 instant-camera 20 -111011011101 non-automotive 20 -111011011101 pneumatic 20 -111011011101 single-source 20 -111011011101 ASIC 20 -111011011101 turnkey 21 -111011011101 power-tool 21 -111011011101 removable 21 -111011011101 hi-fi 21 -111011011101 receptor 21 -111011011101 computer-store 21 -111011011101 read-only 22 -111011011101 stainless-steel 22 -111011011101 food-distribution 22 -111011011101 power-generating 23 -111011011101 telephone-switching 23 -111011011101 photocopier 23 -111011011101 random-access 24 -111011011101 frozen-food 24 -111011011101 point-of-sale 25 -111011011101 high-capacity 25 -111011011101 metal-working 25 -111011011101 rail-car 25 -111011011101 thin-film 25 -111011011101 computer-chip 26 -111011011101 full-color 26 -111011011101 contact-lens 27 -111011011101 floral 27 -111011011101 instant-photography 27 -111011011101 PVC 27 -111011011101 Covia 28 -111011011101 direct-sales 28 -111011011101 600-ship 28 -111011011101 remote-control 29 -111011011101 computer-systems 30 -111011011101 loudspeaker 30 -111011011101 cellular-phone 31 -111011011101 3-D 31 -111011011101 computer-reservation 31 -111011011101 CD-ROM 31 -111011011101 medical-equipment 32 -111011011101 microfilm 32 -111011011101 CAD/CAM 32 -111011011101 CAT 33 -111011011101 encryption 33 -111011011101 passenger-car 34 -111011011101 boiler-room 34 -111011011101 artificial-intelligence 35 -111011011101 information-processing 35 -111011011101 leading-edge 37 -111011011101 specialty-store 38 -111011011101 forklift 39 -111011011101 jet-engine 40 -111011011101 money-transfer 41 -111011011101 air-travel 41 -111011011101 computer-software 42 -111011011101 gene-splicing 44 -111011011101 sprinkler 44 -111011011101 direct-marketing 44 -111011011101 video-game 47 -111011011101 temporary-help 47 -111011011101 computer-controlled 48 -111011011101 coal-mining 49 -111011011101 checkout 52 -111011011101 operating-system 52 -111011011101 pacemaker 57 -111011011101 computer-generated 58 -111011011101 data-communications 58 -111011011101 VHS 61 -111011011101 sonar 66 -111011011101 ultrasound 69 -111011011101 home-video 70 -111011011101 data-base 76 -111011011101 word-processing 88 -111011011101 Sabre 90 -111011011101 biotech 90 -111011011101 sewing 101 -111011011101 disk-drive 101 -111011011101 photofinishing 103 -111011011101 microcomputer 103 -111011011101 Acura 110 -111011011101 DAT 125 -111011011101 facsimile 125 -111011011101 copier 126 -111011011101 sewer 126 -111011011101 biomedical 132 -111011011101 floppy 133 -111011011101 consumer-electronics 141 -111011011101 database 145 -111011011101 peripheral 145 -111011011101 milling 159 -111011011101 telex 167 -111011011101 stereo 171 -111011011101 direct-mail 172 -111011011101 garment 177 -111011011101 superconducting 177 -111011011101 food-service 202 -111011011101 minicomputer 203 -111011011101 superconductor 213 -111011011101 cable-television 219 -111011011101 photographic 232 -111011011101 data-processing 237 -111011011101 cable-TV 267 -111011011101 mail-order 285 -111011011101 magnetic 296 -111011011101 videocassette 316 -111011011101 personal-computer 345 -111011011101 tourist 354 -111011011101 proprietary 363 -111011011101 microwave 370 -111011011101 shoe 409 -111011011101 PC 510 -111011011101 fast-food 575 -111011011101 laser 591 -111011011101 compact 597 -111011011101 high-tech 708 -111011011101 rail 895 -111011011101 toy 912 -111011011101 computerized 941 -111011011101 semiconductor 1536 -111011011101 computer 10321 -111011011101 telecommunications 2456 -111011011110 oak-shuttered 1 -111011011110 Marine-barracks 1 -111011011110 I-a 1 -111011011110 48,000-square-foot 1 -111011011110 Maltese-registered 1 -111011011110 main-battle 1 -111011011110 oil-pipe 1 -111011011110 swim-up 1 -111011011110 fresh-fish 1 -111011011110 we've-got-it-all 1 -111011011110 cruiser-training 1 -111011011110 33-foot-high 1 -111011011110 behind-the-counter 1 -111011011110 mini-hydroelectric 1 -111011011110 rent-stabilized 1 -111011011110 plenteous 1 -111011011110 powdered-milk 1 -111011011110 best-stocked 1 -111011011110 front-switchboard 1 -111011011110 Pajingo 1 -111011011110 wood-wheeled 1 -111011011110 356B 1 -111011011110 art-supplies 1 -111011011110 Arnprior 1 -111011011110 Frosted-glass 1 -111011011110 Russe-inspired 1 -111011011110 Winkle-type 1 -111011011110 soft-sponge 1 -111011011110 body-parts 1 -111011011110 Tacs 1 -111011011110 185-acre 1 -111011011110 Blinkpan 1 -111011011110 Liberian-flagged 1 -111011011110 500-car 1 -111011011110 liquids-extraction 1 -111011011110 Dipping 1 -111011011110 265,000-watt 1 -111011011110 5,000-watt 1 -111011011110 1,429 1 -111011011110 concrete-slab 1 -111011011110 strike-breaker 1 -111011011110 65,000-seat 1 -111011011110 thirty-second 1 -111011011110 drive-shaft 1 -111011011110 hairbreadth 1 -111011011110 frozen-dinners 1 -111011011110 Angra-1 1 -111011011110 950-megawatt 1 -111011011110 all-Berlin 1 -111011011110 market-and-gas 1 -111011011110 126,500-square-foot 1 -111011011110 MX-type 1 -111011011110 Sikh-owned 1 -111011011110 contemporary-music 1 -111011011110 trash-to-steam 1 -111011011110 hovercraft-style 1 -111011011110 records-storage 1 -111011011110 eight-ton 1 -111011011110 messenger-service 1 -111011011110 38,840 1 -111011011110 Pershing-1A 1 -111011011110 dual-lock 1 -111011011110 401,000-ton 1 -111011011110 three-quarters-full 1 -111011011110 brussels 1 -111011011110 step-gabled 1 -111011011110 less-fattening 1 -111011011110 49-megawatt 1 -111011011110 sensitivity-training 1 -111011011110 nonleguminous 1 -111011011110 60-foot-deep 1 -111011011110 sulfide-based 1 -111011011110 Fengjing 1 -111011011110 185,875-square-foot 1 -111011011110 degassing 1 -111011011110 now-damaged 1 -111011011110 Hospital-sponsored 1 -111011011110 waste-recycling 1 -111011011110 14-room 1 -111011011110 3,292 1 -111011011110 Jymees 1 -111011011110 diamond-and-onyx 1 -111011011110 Windscale 1 -111011011110 re-roll 1 -111011011110 115-mph 1 -111011011110 20-megawatt 1 -111011011110 neon-sign 1 -111011011110 100-scientist 1 -111011011110 labor-hungry 1 -111011011110 tree-clearing 1 -111011011110 Salads 1 -111011011110 U.S.-franchised 1 -111011011110 Chinese-cabbage 1 -111011011110 grocery-drug 1 -111011011110 vinyl-chloride-monomer 1 -111011011110 foreign-maintenance 1 -111011011110 horror-film 1 -111011011110 talk-radio 1 -111011011110 WQHT-FM 1 -111011011110 LNG-fired 1 -111011011110 paper-recycling 1 -111011011110 raisin-producing 1 -111011011110 shrimp-processing 1 -111011011110 30-story-high 1 -111011011110 semiconductor-division 1 -111011011110 road-mobile 1 -111011011110 still-inoperable 1 -111011011110 still-shuttered 1 -111011011110 11,200-square-foot 1 -111011011110 hard-to-use 1 -111011011110 WGHPTV 1 -111011011110 pistachio-processing 1 -111011011110 profit-reporting 1 -111011011110 float-glass 1 -111011011110 300-foot-high 1 -111011011110 paintmixing 1 -111011011110 pigmentation 1 -111011011110 50-some 1 -111011011110 superoside 1 -111011011110 750,000-ton-a-year 1 -111011011110 network-produced 1 -111011011110 touch-football 1 -111011011110 Kuwaiti-bound 1 -111011011110 interest-swap 1 -111011011110 hydroskimming 1 -111011011110 700-plus 1 -111011011110 chill-pack 1 -111011011110 pumpkin-patch 1 -111011011110 buffet-style 1 -111011011110 KKR-owned 1 -111011011110 TravelAge 1 -111011011110 mall-based 1 -111011011110 Sohio-brand 1 -111011011110 diesel-fuel-storage 1 -111011011110 Singapore-born 1 -111011011110 salmon-spinach 1 -111011011110 cellulose-rich 1 -111011011110 Subaru-Isuzu 1 -111011011110 noteprinting 1 -111011011110 money-changing 1 -111011011110 optical-retail 1 -111011011110 Mirafiori 1 -111011011110 Gulf-brand 1 -111011011110 filling-station 1 -111011011110 neodymium 1 -111011011110 telephone-order 1 -111011011110 Plaza-Suite 1 -111011011110 Sakchi 1 -111011011110 NUMMI 1 -111011011110 1,608 1 -111011011110 mine-hunter 1 -111011011110 T-90 1 -111011011110 road-maintenance 1 -111011011110 same-race 1 -111011011110 almost-complete 1 -111011011110 SSN-23 1 -111011011110 SSN-20 1 -111011011110 tobacco-stemming 1 -111011011110 well-stuffed 1 -111011011110 SAM-14 1 -111011011110 tripod-mounted 1 -111011011110 stratus 1 -111011011110 transaction-audit 1 -111011011110 TM-2 1 -111011011110 rocketborne 1 -111011011110 cheeks-and-sniffles 1 -111011011110 costume-rental 1 -111011011110 brick-covered 1 -111011011110 overamplified 1 -111011011110 fruit-based 1 -111011011110 fiberboard-products 1 -111011011110 non-bounce 1 -111011011110 foam-products 1 -111011011110 Longbridge 1 -111011011110 3,801 1 -111011011110 UHF-TV 1 -111011011110 bomber-based 1 -111011011110 No-Nonsense 1 -111011011110 Calny-franchised 1 -111011011110 42-room 1 -111011011110 Ruesselsheim 1 -111011011110 four-story-tall 1 -111011011110 exam-preparation 1 -111011011110 fuel-recycling 1 -111011011110 Hartebeestfontein 1 -111011011110 mahjongg 1 -111011011110 Soviet-engineered 1 -111011011110 12-line 1 -111011011110 government-electronics 1 -111011011110 non-shopping 1 -111011011110 taxidermy 1 -111011011110 driver's-license 1 -111011011110 body-and-fender 1 -111011011110 Citrucel 1 -111011011110 closed-down 1 -111011011110 nuclear-materials-production 1 -111011011110 68,000-kilowatt 1 -111011011110 crawl/walk/yowl 1 -111011011110 ToF 1 -111011011110 chocolate-walnut 1 -111011011110 twoday 1 -111011011110 44-liter 1 -111011011110 Unfamiliar 1 -111011011110 single-walled 1 -111011011110 10-barrel-a-day 1 -111011011110 650-foot-high 1 -111011011110 260,000-square-foot 1 -111011011110 natural-fiber 1 -111011011110 gelatin-silver 1 -111011011110 directional-listening 1 -111011011110 ranchera 1 -111011011110 combination-locked 1 -111011011110 panel-making 1 -111011011110 protest-filled 1 -111011011110 war-simulation 1 -111011011110 long-lens 1 -111011011110 engine-manufacturing 1 -111011011110 116-bed 1 -111011011110 T-62 1 -111011011110 Ho-Chi-Minhstrasse 1 -111011011110 Quarterstyle 1 -111011011110 700,000-kilowatt 1 -111011011110 wind-operated 1 -111011011110 geographic-based 1 -111011011110 orgotein/superoxide 1 -111011011110 Ghermezian 1 -111011011110 fish-and-chip 1 -111011011110 seamless-tubing 1 -111011011110 73,000-seat 1 -111011011110 wood-panel 1 -111011011110 butoh 1 -111011011110 alcohol-fuel 1 -111011011110 silicon-products 1 -111011011110 Goldrush 1 -111011011110 sparkling-clean 1 -111011011110 Gulang 1 -111011011110 phosphate-chemical 1 -111011011110 specialty-paper 1 -111011011110 mind-building 1 -111011011110 book-size 1 -111011011110 curious-looking 1 -111011011110 Kuwaiti-flagged 1 -111011011110 tailings-containment 1 -111011011110 one-kiln 1 -111011011110 Yuppie-based 1 -111011011110 scandal-mongering 1 -111011011110 Secretariate 1 -111011011110 Greek-flagged 1 -111011011110 54,000-square-foot 1 -111011011110 45,000-square-foot 1 -111011011110 60-ton 1 -111011011110 -cable 1 -111011011110 340,000-square-foot 1 -111011011110 remodels 1 -111011011110 multiple-fatality 1 -111011011110 gas-liquefaction 1 -111011011110 steel-refining 1 -111011011110 assembly-related 1 -111011011110 1,177,000-square-foot 1 -111011011110 3,138 1 -111011011110 corrugated-packaging 1 -111011011110 fashion-shoe 1 -111011011110 test-tube-and-eyedropper 1 -111011011110 glass-fabricating 1 -111011011110 X59 1 -111011011110 coal-washing 1 -111011011110 construction-equipment-tire 1 -111011011110 tire-incineration 1 -111011011110 pesiticide 1 -111011011110 bicycle-repair 1 -111011011110 49,000-kilowatt 1 -111011011110 languidly 1 -111011011110 7052 1 -111011011110 7050 1 -111011011110 liquid-metal 1 -111011011110 Operates 1 -111011011110 disk-making 1 -111011011110 A500 1 -111011011110 raisin-packing 1 -111011011110 FPO 1 -111011011110 fleet-post-office 1 -111011011110 Greenhills 1 -111011011110 5,000-person 1 -111011011110 SS-4 1 -111011011110 Judaica 1 -111011011110 150-store 1 -111011011110 34-megawatt 1 -111011011110 lignite-generated 1 -111011011110 thermoslike 1 -111011011110 condominium-style 1 -111011011110 tied-in 1 -111011011110 watch-dial 1 -111011011110 airplane-delivered 1 -111011011110 Wilton-Fijenoord 1 -111011011110 fruit-processing 1 -111011011110 tourist-trap 1 -111011011110 housing-reconstruction 1 -111011011110 Renault-Jeep 1 -111011011110 easy-to-load 1 -111011011110 Woolwich 1 -111011011110 9,605 1 -111011011110 lever-operated 1 -111011011110 3,196 1 -111011011110 6,000-pound 1 -111011011110 85.91 1 -111011011110 phone-PC 1 -111011011110 Eye+Tech 1 -111011011110 warm-air 1 -111011011110 hemp 1 -111011011110 nine-press 1 -111011011110 beauty-supply 1 -111011011110 coral-colored 1 -111011011110 hyperaccurate 1 -111011011110 late-news 1 -111011011110 Luray 1 -111011011110 Kitsault 1 -111011011110 Morosco 1 -111011011110 mid-size-car 1 -111011011110 913-megawatt 1 -111011011110 Tidd 1 -111011011110 in-body 1 -111011011110 Pakistani-Chinese-U.S. 1 -111011011110 limpet 1 -111011011110 26-building 1 -111011011110 jean-making 1 -111011011110 remote-call-collection 1 -111011011110 disease-of-the-week 1 -111011011110 Carneval 1 -111011011110 no-star 1 -111011011110 31,526 1 -111011011110 criminal-history 1 -111011011110 CJ-series 1 -111011011110 Duisburg-based 1 -111011011110 B-body 1 -111011011110 balletlike 1 -111011011110 780-megawatt 1 -111011011110 break-dance 1 -111011011110 sewer-hookup 1 -111011011110 video-laden 1 -111011011110 TV-repair 1 -111011011110 controlled-distribution 1 -111011011110 railroad-car 1 -111011011110 compact-car 1 -111011011110 coffee-and-bagel 1 -111011011110 hardwood-flooring 1 -111011011110 7600 1 -111011011110 satellite-earth 1 -111011011110 baked-products 1 -111011011110 seed-crushing 1 -111011011110 central-distribution 1 -111011011110 nondepartment 1 -111011011110 bunker-like 1 -111011011110 horsetails 1 -111011011110 enterpreneurial 1 -111011011110 Lehders 1 -111011011110 still-unlicensed 1 -111011011110 errorless 1 -111011011110 fruit-concentrate 1 -111011011110 free-tailed 1 -111011011110 less-valued 1 -111011011110 open-top 1 -111011011110 double-glazed 1 -111011011110 Aruban 1 -111011011110 black-media 1 -111011011110 wastewater-treatment 1 -111011011110 forms-printing 1 -111011011110 70,000-seat-plus 1 -111011011110 retractable-dome 1 -111011011110 small-explosive 1 -111011011110 thermal-power 1 -111011011110 military-magazine 1 -111011011110 Sasson-label 1 -111011011110 non-Whittle 1 -111011011110 Hooker-owned 1 -111011011110 body-surfing 1 -111011011110 Numazu 1 -111011011110 Norwegian-operated 1 -111011011110 1500-3500 1 -111011011110 broadcast-network 1 -111011011110 parts-supply 1 -111011011110 easy-load 1 -111011011110 restaurant-quality 1 -111011011110 pot-luck 1 -111011011110 silver-domed 1 -111011011110 data-reception 1 -111011011110 recording-tape 1 -111011011110 plastics-molding 1 -111011011110 LG-4 1 -111011011110 recycled-paper 1 -111011011110 Brand-Discount 1 -111011011110 44-acre 1 -111011011110 concave 1 -111011011110 tritium-production 1 -111011011110 pasta-and-sauce 1 -111011011110 exhibition-game 1 -111011011110 soap-box 1 -111011011110 30,000-barrel-a-day 1 -111011011110 then-underutilized 1 -111011011110 petrochemical-production 1 -111011011110 chain-operated 1 -111011011110 community-integrated 1 -111011011110 hidden-camera 1 -111011011110 NASA-owned 1 -111011011110 tape-product 1 -111011011110 magnetic-tape-coating 1 -111011011110 Bocho-conceived 1 -111011011110 70-bed 1 -111011011110 rail-repair 1 -111011011110 1,246 1 -111011011110 coal-preparation 1 -111011011110 food-packing 1 -111011011110 coke-byproduct 1 -111011011110 coke-producing 1 -111011011110 light-source 1 -111011011110 double-pump 1 -111011011110 Back-In-Your-Face 1 -111011011110 metals-processing 1 -111011011110 sheetmetal 1 -111011011110 Inland-Nippon 1 -111011011110 telphone 1 -111011011110 625,000-square-foot 1 -111011011110 2,000-worker 1 -111011011110 6,500-seat 1 -111011011110 sodium-chlorate 1 -111011011110 Chuquicamata 1 -111011011110 Richway 1 -111011011110 English-cucumber 1 -111011011110 crabmeat-picking 1 -111011011110 woodframe 1 -111011011110 Israeli-owned 1 -111011011110 750-square-foot 1 -111011011110 Dead-mail 1 -111011011110 garbage-shredding 1 -111011011110 non-gritty 1 -111011011110 Dingolfing 1 -111011011110 81-bed 1 -111011011110 35,000-kilowatt 1 -111011011110 78,925-square-foot 1 -111011011110 2,000-bed 1 -111011011110 multiple-city 1 -111011011110 mini-disc 1 -111011011110 Llanelli 1 -111011011110 Warski 1 -111011011110 1,700-inmate 1 -111011011110 Y12 1 -111011011110 coke-production 1 -111011011110 fractionation 1 -111011011110 metal-melting 1 -111011011110 dental-technology 1 -111011011110 wax-molding 1 -111011011110 computer-equipped 1 -111011011110 Leica 1 -111011011110 microimage 1 -111011011110 rubber-gasket 1 -111011011110 iron-casting 1 -111011011110 rice-paper 1 -111011011110 not-OK 1 -111011011110 cutglass 1 -111011011110 Tunnels 1 -111011011110 bent-wood 1 -111011011110 bakery-mix 1 -111011011110 rhubarb-like 1 -111011011110 steel-gray 1 -111011011110 various-sized 1 -111011011110 de-inking 1 -111011011110 cigar-making 1 -111011011110 bowling-supply 1 -111011011110 stone-crushing 1 -111011011110 engine-per-year 1 -111011011110 MCA-owned 1 -111011011110 55-acre 1 -111011011110 Pakistani-insect 1 -111011011110 non-chain 1 -111011011110 advertising-trade 1 -111011011110 Enchova 1 -111011011110 outboard-motor 1 -111011011110 metal-recycling 1 -111011011110 Niglintgak 1 -111011011110 foundation-supported 1 -111011011110 20,000-metric-ton-per-year 1 -111011011110 17,000-square-foot 1 -111011011110 ceiling-materials 1 -111011011110 153-bed 1 -111011011110 12-room 1 -111011011110 man-high 1 -111011011110 cyclone-wire 1 -111011011110 Boesky-owned 1 -111011011110 5,989 1 -111011011110 iron-making 1 -111011011110 fluoropolymer 1 -111011011110 reindeer-processing 1 -111011011110 vegetable-processing 1 -111011011110 syndicated-TV 1 -111011011110 film-TV 1 -111011011110 paycable 1 -111011011110 brights 1 -111011011110 Monitor-Radio 1 -111011011110 UHF-television 1 -111011011110 largest-viewership 1 -111011011110 rubber-manufacturing 1 -111011011110 call-waiting 1 -111011011110 once-empty 1 -111011011110 aircraft-assembly 1 -111011011110 rosewater 1 -111011011110 seafood-packing 1 -111011011110 A330-A340 1 -111011011110 hotdog-and-hamburger 1 -111011011110 29,000-square-foot 1 -111011011110 junior-apparel 1 -111011011110 flea-infested 1 -111011011110 high-detail 1 -111011011110 open-cut 1 -111011011110 786-megawatt 1 -111011011110 49,000-square-foot 1 -111011011110 430,000-square-foot 1 -111011011110 three-boiler 1 -111011011110 salt-mining 1 -111011011110 170,000-square-foot 1 -111011011110 fiber-producing 1 -111011011110 rail-transit 1 -111011011110 Camaro-Firebird 2 -111011011110 two-LP 2 -111011011110 25-bed 2 -111011011110 well-tended 2 -111011011110 MV/15000 2 -111011011110 arrowhead 2 -111011011110 sensitizing 2 -111011011110 performance-art 2 -111011011110 biological-weapons 2 -111011011110 gusting 2 -111011011110 jargon-filled 2 -111011011110 food-and-drug 2 -111011011110 coon 2 -111011011110 120-bed 2 -111011011110 ABC-owned 2 -111011011110 budget-writing 2 -111011011110 380,000-square-foot 2 -111011011110 fuel-air 2 -111011011110 methanol-gasoline 2 -111011011110 near-future 2 -111011011110 Pro-Box 2 -111011011110 tennis-playing 2 -111011011110 final-assembly 2 -111011011110 paint-and-hardware 2 -111011011110 flightless 2 -111011011110 16-acre 2 -111011011110 BHS 2 -111011011110 TV-news 2 -111011011110 water-ski 2 -111011011110 sintering 2 -111011011110 sinter 2 -111011011110 nouvelle-cuisine 2 -111011011110 15th-floor 2 -111011011110 televsion 2 -111011011110 BBC-TV 2 -111011011110 middle-school 2 -111011011110 rust-proofing 2 -111011011110 1,205,000-kilowatt 2 -111011011110 SS-23 2 -111011011110 SS-22 2 -111011011110 Lada-Canada 2 -111011011110 children's-rights 2 -111011011110 one-joke 2 -111011011110 I/A 2 -111011011110 peelu 2 -111011011110 basic-oxygen 2 -111011011110 medium-wave 2 -111011011110 fingernail-sized 2 -111011011110 NRC-licensed 2 -111011011110 choo-choo 2 -111011011110 skybox 2 -111011011110 Iran-scandal 2 -111011011110 brain-tuning 2 -111011011110 antlered 2 -111011011110 petroleum-exploration 2 -111011011110 50,000-seat 2 -111011011110 unassigned 2 -111011011110 Tyson-Biggs 2 -111011011110 dragline 2 -111011011110 NBC-affiliated 2 -111011011110 glassless 2 -111011011110 nonmetropolitan 2 -111011011110 silk-screen 2 -111011011110 strikebreaker 2 -111011011110 grouch 2 -111011011110 gas-burning 2 -111011011110 pipe-making 2 -111011011110 Dickensesque 2 -111011011110 computer-designed 2 -111011011110 best-rated 2 -111011011110 waste-energy 2 -111011011110 wood-framed 2 -111011011110 plant-growing 2 -111011011110 mess-hall 2 -111011011110 requalification 2 -111011011110 tire-production 2 -111011011110 retail-food 2 -111011011110 24-valve 2 -111011011110 residential-lending 2 -111011011110 paint-spattered 2 -111011011110 country-bumpkin 2 -111011011110 gas-turbine-powered 2 -111011011110 Loulou 2 -111011011110 used-clothing 2 -111011011110 mutuel 2 -111011011110 crosslinked 2 -111011011110 ceiling-tile 2 -111011011110 weapons-material 2 -111011011110 WBRC-TV 2 -111011011110 22,000-square-foot 2 -111011011110 spruce-covered 2 -111011011110 owner-operated 2 -111011011110 Schweinfurt 2 -111011011110 knick-knack 2 -111011011110 cream-and-egg 2 -111011011110 left-hand-drive 2 -111011011110 3,387 2 -111011011110 already-planned 2 -111011011110 wood-treating 2 -111011011110 custom-integrated 2 -111011011110 France-Soir 2 -111011011110 electrochemical 2 -111011011110 burdock 2 -111011011110 sound-effects 2 -111011011110 now-vacant 2 -111011011110 Magnox 2 -111011011110 heroin-like 2 -111011011110 hazardous-waste-handling 2 -111011011110 natural-gas-fired 2 -111011011110 Danubian 2 -111011011110 magnetic-disk 2 -111011011110 50-megawatt 2 -111011011110 television-network 2 -111011011110 gamma-ray 2 -111011011110 melanin-coated 2 -111011011110 gooseberry 2 -111011011110 server-training 2 -111011011110 pharmaceutical-manufacturing 2 -111011011110 plutonium-bearing 2 -111011011110 850,000-square-foot 2 -111011011110 radial-tire 2 -111011011110 air-polluting 2 -111011011110 SAM-7 2 -111011011110 television-tube 2 -111011011110 60,184 2 -111011011110 wood-product 2 -111011011110 land-launched 2 -111011011110 nuclear-warhead 2 -111011011110 CBS-affiliated 2 -111011011110 nonmetal 2 -111011011110 Pharmacity 2 -111011011110 waste-coal 2 -111011011110 ironore 2 -111011011110 Karmax 2 -111011011110 drycleaning 2 -111011011110 convention-type 2 -111011011110 price-movement 2 -111011011110 rural-based 2 -111011011110 road-crew 2 -111011011110 RDF 2 -111011011110 video-production 2 -111011011110 obfuscating 2 -111011011110 1,447 2 -111011011110 best-paying 2 -111011011110 beefpacking 2 -111011011110 Antaibao 2 -111011011110 double-wall 2 -111011011110 calisthenic 2 -111011011110 even-numbered 2 -111011011110 pink-and-green 3 -111011011110 counter-culture 3 -111011011110 65,000-square-foot 3 -111011011110 asembly 3 -111011011110 Hostess 3 -111011011110 China-based 3 -111011011110 parenteral 3 -111011011110 semiautomatic 3 -111011011110 nativity 3 -111011011110 yellow-brick 3 -111011011110 teleconferencing 3 -111011011110 Waferwood 3 -111011011110 anchovy 3 -111011011110 coal-miner 3 -111011011110 owned-and-operated 3 -111011011110 Sedum 3 -111011011110 smorgasboard 3 -111011011110 woodcuts 3 -111011011110 Raddison 3 -111011011110 50,000-square-foot 3 -111011011110 berthing 3 -111011011110 satellite-servicing 3 -111011011110 retail-entertainment 3 -111011011110 Dalt 3 -111011011110 bow-tie 3 -111011011110 half-court 3 -111011011110 television-news 3 -111011011110 engine-assembly 3 -111011011110 sedimentary 3 -111011011110 U.S.-to-Japan 3 -111011011110 Intellivision 3 -111011011110 vehicle-assembly 3 -111011011110 antilock 3 -111011011110 warehouse-sized 3 -111011011110 WATL-TV 3 -111011011110 hair-products 3 -111011011110 local-TV 3 -111011011110 rent-to-own 3 -111011011110 Schwann 3 -111011011110 machine-building 3 -111011011110 Cradock 3 -111011011110 Cresthil 3 -111011011110 SX-2 3 -111011011110 factory-outlet 3 -111011011110 minehunter 3 -111011011110 action/adventure 3 -111011011110 comedy-oriented 3 -111011011110 radio-navigation 3 -111011011110 non-glare 3 -111011011110 GapKids 3 -111011011110 refinery-expansion 3 -111011011110 heart-rate 3 -111011011110 pre-cut 3 -111011011110 lieder 3 -111011011110 airplane-shaped 3 -111011011110 semi-private 3 -111011011110 22-yard 3 -111011011110 long-jump 3 -111011011110 movie-house 3 -111011011110 21-inch 3 -111011011110 car-repair 3 -111011011110 pinot-noir 3 -111011011110 computer-making 3 -111011011110 Renaissance-style 3 -111011011110 100-minute 3 -111011011110 280,000-square-foot 3 -111011011110 mass-burn 3 -111011011110 botanic 3 -111011011110 wafer-fabrication 3 -111011011110 smog-check 3 -111011011110 Rudna 3 -111011011110 mini-post 3 -111011011110 quarter-sized 3 -111011011110 '30 3 -111011011110 Interalumina 3 -111011011110 El-Hadjar 3 -111011011110 Ottawa-area 3 -111011011110 subway-car 3 -111011011110 pork-packing 3 -111011011110 taxpayer-assistance 4 -111011011110 drug-manufacturing 4 -111011011110 lead-zinc 4 -111011011110 RapeMan 4 -111011011110 beef-processing 4 -111011011110 Zelaya 4 -111011011110 dunce 4 -111011011110 woodblock 4 -111011011110 Blackhawks 4 -111011011110 point-of-purchase 4 -111011011110 Iveco 4 -111011011110 comedy-club 4 -111011011110 plexiglass 4 -111011011110 truck-tire 4 -111011011110 fold-out 4 -111011011110 handball 4 -111011011110 answering-machine 4 -111011011110 Sunderland 4 -111011011110 mini-van 4 -111011011110 Novotel 4 -111011011110 top-40 4 -111011011110 Gaelic 4 -111011011110 Futura 4 -111011011110 long-playing 4 -111011011110 Neptunian 4 -111011011110 shale-oil 4 -111011011110 broadsheet 4 -111011011110 uranium-processing 4 -111011011110 adhesive-backed 4 -111011011110 Rack 4 -111011011110 sporting-clays 4 -111011011110 non-sedating 4 -111011011110 logrolling 4 -111011011110 donut 4 -111011011110 auto-racing 4 -111011011110 Pavilions 4 -111011011110 Shopko 4 -111011011110 satellite-TV 4 -111011011110 rock-video 4 -111011011110 single-story 4 -111011011110 mansard 4 -111011011110 petri 4 -111011011110 coffee-shop 4 -111011011110 poultry-processing 4 -111011011110 brontosaurus 4 -111011011110 half-minute 4 -111011011110 Bruins 4 -111011011110 bass-fishing 4 -111011011110 CBS-owned 4 -111011011110 4300 4 -111011011110 bibulous 4 -111011011110 petrol 4 -111011011110 corrugated-box 5 -111011011110 tire-manufacturing 5 -111011011110 lime-green 5 -111011011110 superhero 5 -111011011110 Redeye 5 -111011011110 Keds 5 -111011011110 news-magazine 5 -111011011110 cocker 5 -111011011110 mass-merchandise 5 -111011011110 point-and-shoot 5 -111011011110 croquet 5 -111011011110 light-filled 5 -111011011110 bromide 5 -111011011110 semipro 5 -111011011110 bipolar 5 -111011011110 M30 5 -111011011110 uninformative 5 -111011011110 free-throw 5 -111011011110 play-off 5 -111011011110 license-renewal 5 -111011011110 Vuillard 5 -111011011110 water-based 5 -111011011110 multi-use 5 -111011011110 gas-processing 5 -111011011110 brocade 5 -111011011110 licorice 5 -111011011110 WGHP-TV 5 -111011011110 passive-income 5 -111011011110 swidden 5 -111011011110 Maxxum 5 -111011011110 Ping-Pong 5 -111011011110 hydroelectric-power 5 -111011011110 trade-school 5 -111011011110 true-crime 5 -111011011110 horsey 5 -111011011110 union-represented 5 -111011011110 epigrammatic 5 -111011011110 four-pound 5 -111011011110 oil-loading 5 -111011011110 toxic-gas 5 -111011011110 A310 6 -111011011110 basset 6 -111011011110 audiotape 6 -111011011110 curio 6 -111011011110 120,000-square-foot 6 -111011011110 Playskool 6 -111011011110 100,000-square-foot 6 -111011011110 home-center 6 -111011011110 am/pm 6 -111011011110 telephoto 6 -111011011110 AIDS-education 6 -111011011110 dogleg 6 -111011011110 stock-tip 6 -111011011110 public-broadcasting 6 -111011011110 photo-processing 6 -111011011110 coed 6 -111011011110 Coppertone 6 -111011011110 snooker 6 -111011011110 primetime 6 -111011011110 rhythm-and-blues 6 -111011011110 order-taking 6 -111011011110 WCBS 6 -111011011110 cold-rolling 6 -111011011110 wiper 6 -111011011110 price-quote 7 -111011011110 custom-calling 7 -111011011110 intraocular 7 -111011011110 12-minute 7 -111011011110 Jif 7 -111011011110 firecracker 7 -111011011110 lotto 7 -111011011110 mud-wrestling 7 -111011011110 1-A 7 -111011011110 ivy-covered 7 -111011011110 jai-alai 7 -111011011110 public-power 7 -111011011110 taco 7 -111011011110 Stainmaster 7 -111011011110 dog-and-pony 7 -111011011110 Noh 7 -111011011110 co-equal 7 -111011011110 gas-powered 7 -111011011110 Shop-Rite 8 -111011011110 junior-college 8 -111011011110 fine-paper 8 -111011011110 20-second 8 -111011011110 flat-panel 8 -111011011110 fern 8 -111011011110 maquiladora 8 -111011011110 granola 8 -111011011110 Galleria 8 -111011011110 desalination 8 -111011011110 J-car 8 -111011011110 non-fiction 8 -111011011110 CVS 8 -111011011110 country-music 9 -111011011110 garbage-burning 9 -111011011110 Foodtown 9 -111011011110 Flotta 9 -111011011110 quarrying 9 -111011011110 all-suite 9 -111011011110 hairdressing 9 -111011011110 stained-glass 9 -111011011110 Sisley 9 -111011011110 chuck-wagon 9 -111011011110 warehouse-club 9 -111011011110 company-operated 9 -111011011110 fastfood 9 -111011011110 Ilo 10 -111011011110 68000 10 -111011011110 500-pound 10 -111011011110 yachting 10 -111011011110 cat-and-mouse 10 -111011011110 racquetball 10 -111011011110 Mothercare 10 -111011011110 NBC-owned 10 -111011011110 wicker 10 -111011011110 London/Decca 10 -111011011110 SuperAmerica 10 -111011011110 bobsled 10 -111011011110 Mahfouz 10 -111011011110 judo 10 -111011011110 color-TV 10 -111011011110 swivel 10 -111011011110 muffler 11 -111011011110 horse-drawn 11 -111011011110 frozen-yogurt 11 -111011011110 post-office 11 -111011011110 top-10 11 -111011011110 Watts-Willowbrook 11 -111011011110 girlie 11 -111011011110 LCD 11 -111011011110 stickball 11 -111011011110 HomeClub 11 -111011011110 meat-processing 11 -111011011110 craps 11 -111011011110 post-game 12 -111011011110 televison 12 -111011011110 rock-music 12 -111011011110 domed 12 -111011011110 Federated-Allied 12 -111011011110 pancake 12 -111011011110 big-screen 12 -111011011110 VHF 12 -111011011110 truck-assembly 12 -111011011110 CTV 12 -111011011110 Wasatch 13 -111011011110 panty 13 -111011011110 billiards 13 -111011011110 jute 13 -111011011110 crossword 13 -111011011110 Skippy 13 -111011011110 over-the-air 13 -111011011110 Soyuz 13 -111011011110 billiard 13 -111011011110 extended-stay 14 -111011011110 1A 14 -111011011110 trolley 14 -111011011110 Muzak 14 -111011011110 Sambo 14 -111011011110 pingpong 14 -111011011110 M-60 14 -111011011110 monochrome 14 -111011011110 resource-recovery 14 -111011011110 suntan 14 -111011011110 shortwave 15 -111011011110 diagonal 15 -111011011110 sniper 15 -111011011110 middleweight 15 -111011011110 oil-pipeline 15 -111011011110 vaudeville 15 -111011011110 safe-deposit 16 -111011011110 five-and-dime 16 -111011011110 eyeglass 16 -111011011110 public-television 17 -111011011110 woolen 17 -111011011110 post-season 17 -111011011110 poppy 17 -111011011110 campground 17 -111011011110 rectal 18 -111011011110 MD-90 18 -111011011110 stucco 18 -111011011110 cycling 18 -111011011110 rivet 18 -111011011110 horse-racing 19 -111011011110 60-second 19 -111011011110 film-making 19 -111011011110 pre-season 19 -111011011110 cavalry 19 -111011011110 fermentation 19 -111011011110 bestseller 20 -111011011110 liquid-crystal 20 -111011011110 35-mm 21 -111011011110 game-show 21 -111011011110 auto-assembly 21 -111011011110 science-fiction 21 -111011011110 color-television 22 -111011011110 peach 22 -111011011110 MedFirst 22 -111011011110 SupeRx 22 -111011011110 noodle 23 -111011011110 tanning 24 -111011011110 cabaret 25 -111011011110 varsity 25 -111011011110 15-second 25 -111011011110 typewritten 25 -111011011110 call-in 25 -111011011110 spider 26 -111011011110 blackjack 26 -111011011110 non-network 27 -111011011110 Page-Williams 27 -111011011110 Bonanza 28 -111011011110 bingo 28 -111011011110 Kresge 28 -111011011110 potted 30 -111011011110 sewage-treatment 31 -111011011110 civics 32 -111011011110 chemical-weapons 32 -111011011110 metal-forming 34 -111011011110 volleyball 36 -111011011110 CBS-TV 37 -111011011110 surface-to-air 38 -111011011110 ID 38 -111011011110 porn 38 -111011011110 golfing 38 -111011011110 patio 41 -111011011110 Bougainville 41 -111011011110 antiaircraft 42 -111011011110 UHF 43 -111011011110 analog 43 -111011011110 barber 44 -111011011110 gas-fired 47 -111011011110 car-assembly 51 -111011011110 rugby 52 -111011011110 coke 54 -111011011110 Lincoln-Mercury 55 -111011011110 best-seller 55 -111011011110 compact-disk 61 -111011011110 talk-show 61 -111011011110 softball 62 -111011011110 cricket 67 -111011011110 souvenir 68 -111011011110 35mm 73 -111011011110 Stinger 75 -111011011110 NBC-TV 76 -111011011110 polo 81 -111011011110 stamping 81 -111011011110 M-1 84 -111011011110 FM 85 -111011011110 LeBaron 85 -111011011110 30-second 87 -111011011110 playoff 90 -111011011110 anti-aircraft 100 -111011011110 chess 102 -111011011110 poker 102 -111011011110 heavyweight 115 -111011011110 Hawk 116 -111011011110 7-Eleven 117 -111011011110 franchised 119 -111011011110 company-owned 135 -111011011110 razor 141 -111011011110 flower 147 -111011011110 soccer 147 -111011011110 cassette 170 -111011011110 Pershing 182 -111011011110 ski 189 -111011011110 crystal 189 -111011011110 championship 190 -111011011110 hockey 194 -111011011110 railway 217 -111011011110 subway 257 -111011011110 prime-time 275 -111011011110 cartoon 289 -111011011110 cogeneration 298 -111011011110 convenience 456 -111011011110 basketball 468 -111011011110 cruise 491 -111011011110 tennis 571 -111011011110 golf 578 -111011011110 football 786 -111011011110 baseball 955 -111011011110 assembly 1365 -111011011110 sports 1514 -111011011110 video 1714 -111011011110 radio 2309 -111011011110 TV 4234 -111011011110 television 6158 -111011011111 23,500-barrel-a-day 1 -111011011111 mother-and-baby 1 -111011011111 tactical-aircraft 1 -111011011111 12,500-kilowatt 1 -111011011111 shipborne 1 -111011011111 advanced-semiconductor 1 -111011011111 transfrontier 1 -111011011111 W-series 1 -111011011111 multithousand-job 1 -111011011111 optical-mark 1 -111011011111 natural-alcohols 1 -111011011111 sub-machine-gun 1 -111011011111 pseudo-gladiatorial 1 -111011011111 1,442 1 -111011011111 crop-killing 1 -111011011111 Kalabagh 1 -111011011111 chemical-fertilizer 1 -111011011111 one-million-pixel 1 -111011011111 SH-2 1 -111011011111 offload 1 -111011011111 orange-color 1 -111011011111 rhodamine 1 -111011011111 cork-lined 1 -111011011111 1.5-million-square-foot 1 -111011011111 hurricane-disaster 1 -111011011111 life-anddeath 1 -111011011111 polticial 1 -111011011111 pull-tab 1 -111011011111 25.8-megawatt 1 -111011011111 ever-longer 1 -111011011111 tiremaking 1 -111011011111 SDI-type 1 -111011011111 Chinesemade 1 -111011011111 governmental-relations 1 -111011011111 hard-liquor 1 -111011011111 neo-expressionist 1 -111011011111 self-developed 1 -111011011111 defense-dominant 1 -111011011111 single-combat 1 -111011011111 days-nuclear 1 -111011011111 weapon-carrying 1 -111011011111 170-foot 1 -111011011111 Voronezh 1 -111011011111 babushka 1 -111011011111 deep-underground 1 -111011011111 condo-grade 1 -111011011111 twin-block 1 -111011011111 kaolin-processing 1 -111011011111 Firestone-owned 1 -111011011111 towel-finishing 1 -111011011111 1,080,000-kilowatt 1 -111011011111 brighter-colored 1 -111011011111 Soviet-launched 1 -111011011111 space-operations 1 -111011011111 resort-condo 1 -111011011111 ship-model 1 -111011011111 fingerless 1 -111011011111 unfinished-furniture 1 -111011011111 art-rock 1 -111011011111 yupped-up 1 -111011011111 eastwest 1 -111011011111 siezed 1 -111011011111 hegemonistic 1 -111011011111 pumped-storage 1 -111011011111 Paks 1 -111011011111 Czechoslovak-Hungarian 1 -111011011111 scruffy-looking 1 -111011011111 anti-HBc 1 -111011011111 Ambassador-at-large 1 -111011011111 fake-hair 1 -111011011111 cogeneraton 1 -111011011111 no-net 1 -111011011111 information-consulting 1 -111011011111 business-telephone 1 -111011011111 twin-unit 1 -111011011111 mint-green 1 -111011011111 MediMart 1 -111011011111 AN/ALQ-126B 1 -111011011111 anti-chemical 1 -111011011111 extendedstay 1 -111011011111 anti-bee 1 -111011011111 doublerunner 1 -111011011111 energy-beam 1 -111011011111 man-produced 1 -111011011111 assets-power 1 -111011011111 instant-winner 1 -111011011111 non-power 1 -111011011111 icon-covered 1 -111011011111 ground-penetrating 1 -111011011111 attack-inducing 1 -111011011111 petroleum-buying 1 -111011011111 transfiguring 1 -111011011111 corked 1 -111011011111 news-dealer 1 -111011011111 Mets-Cardinals 1 -111011011111 software-only 1 -111011011111 semifeudal 1 -111011011111 route-by-route 1 -111011011111 government-supervised 1 -111011011111 sheet-glass 1 -111011011111 waste-conversion 1 -111011011111 airline-ticketing 1 -111011011111 satellite-processing 1 -111011011111 unremembered 1 -111011011111 Bruce-Mansfield 1 -111011011111 waste-fired 1 -111011011111 twin-hulled 1 -111011011111 13-meter-long 1 -111011011111 high-school-as-metaphor-for-life 1 -111011011111 blue-glass 1 -111011011111 nearer-to-zero 1 -111011011111 body-repair 1 -111011011111 submarine-communications 1 -111011011111 full-sized-van 1 -111011011111 pre-sighted 1 -111011011111 Kingswinford 1 -111011011111 sea-green 1 -111011011111 761st 1 -111011011111 already-produced 1 -111011011111 aluminum-casting 1 -111011011111 utility-size 1 -111011011111 fluid-bed 1 -111011011111 Cawtawba 1 -111011011111 red-ocher 1 -111011011111 now-disappearing 1 -111011011111 lithium-powered 1 -111011011111 corn-buying 1 -111011011111 U-boat 1 -111011011111 purchashing 1 -111011011111 Renault-built 1 -111011011111 zonal 1 -111011011111 aircraft-delivered 1 -111011011111 open-casket 1 -111011011111 punched-out 1 -111011011111 as-yet-unbuilt 1 -111011011111 microprocessor-run 1 -111011011111 5,818 1 -111011011111 Franco-Iranian 1 -111011011111 TOW-missile 1 -111011011111 1,500-megawatt 1 -111011011111 Victorian/industrial 1 -111011011111 never-used 1 -111011011111 Israeli-Iranian 1 -111011011111 non-interruptible 1 -111011011111 bank-buying 1 -111011011111 pre-buttered 1 -111011011111 7,672 1 -111011011111 IV-class 1 -111011011111 1,633 1 -111011011111 Mi-8 1 -111011011111 weather-monitoring 1 -111011011111 zone-press 1 -111011011111 birch-wood 1 -111011011111 smoothbore 1 -111011011111 equity-buying 1 -111011011111 sometimes-liberal 1 -111011011111 semi-vacant 1 -111011011111 6,500-megaton 1 -111011011111 2,504 1 -111011011111 1,461 1 -111011011111 15.6-mile 1 -111011011111 wiper/washer 1 -111011011111 longpending 1 -111011011111 left-and-right-handed 1 -111011011111 hydroelectic 1 -111011011111 coalburning 1 -111011011111 52-megawatt 1 -111011011111 Skagit/Hanford 1 -111011011111 388-seat 1 -111011011111 Botlek 1 -111011011111 War-vintage 1 -111011011111 graphite-moderated 1 -111011011111 Western-designed 1 -111011011111 5,200-acre 1 -111011011111 4-Way 1 -111011011111 art-therapy 1 -111011011111 syntactically 1 -111011011111 rocket-borne 1 -111011011111 XJS 1 -111011011111 Soviet-model 1 -111011011111 safety-valve 1 -111011011111 rotary-wing 1 -111011011111 boost-phase 1 -111011011111 Gorbachev-managed 1 -111011011111 1/2-gallon 1 -111011011111 asset-shifting 1 -111011011111 never-completed 1 -111011011111 50,720 1 -111011011111 time-delayed 1 -111011011111 80-megawatt 1 -111011011111 double-walled 1 -111011011111 multiple-concept 1 -111011011111 urbanoid 1 -111011011111 peepshow 1 -111011011111 pancake-house 1 -111011011111 shot-blocking 1 -111011011111 AIDS-screening 1 -111011011111 station-buying 1 -111011011111 tax-boosting 1 -111011011111 16,000-kilowatt 1 -111011011111 URW-represented 1 -111011011111 7,337 1 -111011011111 large-leaf 1 -111011011111 5,755 1 -111011011111 theater-nuclear 1 -111011011111 gasified-coal 1 -111011011111 energy-redundant 1 -111011011111 handtool 1 -111011011111 bomber-carried 1 -111011011111 college-draft 1 -111011011111 earth-penetrating 1 -111011011111 airplane-launched 1 -111011011111 frozen-cheese 1 -111011011111 HY-2 1 -111011011111 HQ-2 1 -111011011111 agricultural-experiment 1 -111011011111 designer-green 1 -111011011111 nose-mounted 1 -111011011111 below-standard 1 -111011011111 non-concealed 1 -111011011111 smaller-circulation 1 -111011011111 least-reliable 1 -111011011111 hand-rubbed 1 -111011011111 sheet-finishing 1 -111011011111 five-megawatt 1 -111011011111 16-megawatt 1 -111011011111 like-sized 1 -111011011111 seaskimming 1 -111011011111 L.A.-area 1 -111011011111 intercontinenal 1 -111011011111 15,000-ton-per-day 1 -111011011111 ocean-spanning 1 -111011011111 unfired 1 -111011011111 diesel-products 1 -111011011111 off-the-odometer 1 -111011011111 air-suspension 1 -111011011111 B17 1 -111011011111 public-agency 1 -111011011111 distorted-spectrum 1 -111011011111 battery-recharging 1 -111011011111 Cajun/rhythm-and-blues 1 -111011011111 baby-furniture 1 -111011011111 fast-food-restaurant 1 -111011011111 turkey-and-cranberry 1 -111011011111 blended-ice-cream 1 -111011011111 competitiveintelligence 1 -111011011111 Turkish-Greek 1 -111011011111 ammonia-fertilizer 1 -111011011111 recherche 1 -111011011111 farthest-striking 1 -111011011111 space-strike 1 -111011011111 Spanishlanguage 1 -111011011111 federal-aid 1 -111011011111 Hamiltonian 1 -111011011111 Astrodome-type 1 -111011011111 six-key 1 -111011011111 self-effacing-to-the-point-of-complete- 1 -111011011111 seed-proceesing 1 -111011011111 one-to-four 1 -111011011111 gypsum-based 1 -111011011111 European-theater 1 -111011011111 HP-700/71 1 -111011011111 85-millimeter 1 -111011011111 Candu-type 1 -111011011111 tropical-hued 1 -111011011111 Zouar 1 -111011011111 bottom-of-the-heap 1 -111011011111 more-sweeping 1 -111011011111 Midtec 1 -111011011111 mock-comic 1 -111011011111 orthographic 1 -111011011111 upper-story 1 -111011011111 hotsheets 1 -111011011111 Millstone-3 1 -111011011111 loan-liquidation 1 -111011011111 business-specific 1 -111011011111 Juarez-area 1 -111011011111 weapons-production 1 -111011011111 yellow-gray 1 -111011011111 air-over-hydraulic 1 -111011011111 artificial-flower 1 -111011011111 loss-laden 1 -111011011111 antiWestern 1 -111011011111 Pancakes 1 -111011011111 styrofoam-making 1 -111011011111 bedroom-one 1 -111011011111 warehouse-style 1 -111011011111 Zarnow 1 -111011011111 super-hard 1 -111011011111 semi-bleached-kraft-pulp 1 -111011011111 more-capable 1 -111011011111 reef-building 1 -111011011111 speed-adjusting 1 -111011011111 hydrophilic 1 -111011011111 bloated-budget 1 -111011011111 crating 1 -111011011111 easy-care 1 -111011011111 atom-derived 1 -111011011111 drug-containing 1 -111011011111 2,250-megawatt 1 -111011011111 plutonium-based 1 -111011011111 flapjack 1 -111011011111 Japanese-majority-owned 1 -111011011111 Peachbottom 1 -111011011111 ethane-based 1 -111011011111 non-hemispheric 1 -111011011111 officesupply 1 -111011011111 car-enthusiast 1 -111011011111 manned-space 1 -111011011111 tipping-type 1 -111011011111 weapon-free 1 -111011011111 foil-laminating 1 -111011011111 HUD-subsidized 1 -111011011111 force-level 1 -111011011111 still-vacant 1 -111011011111 foreign-run 1 -111011011111 Trident-2 1 -111011011111 ear-lobe 1 -111011011111 multivariant 1 -111011011111 primate-research 1 -111011011111 Caribbean-style 1 -111011011111 supermarket-type 1 -111011011111 barge-mounted 1 -111011011111 Gabcikovo-Nagymaros 1 -111011011111 once-posh 1 -111011011111 East-Coast 1 -111011011111 still-incomplete 1 -111011011111 19,000-kilowatt 1 -111011011111 silicon-wafering 1 -111011011111 chemical-contaminated 1 -111011011111 packet-switching 1 -111011011111 9,835 1 -111011011111 between-pitches 1 -111011011111 Montreal-Washington 1 -111011011111 bagels-and-lox 1 -111011011111 5,643 1 -111011011111 quarterhorse 1 -111011011111 Frenchmade 1 -111011011111 two-reactor 1 -111011011111 flock-upholstery 1 -111011011111 hacksaw 1 -111011011111 predischarge 1 -111011011111 Brussels-style 1 -111011011111 Benetton-only 1 -111011011111 intragovernment 1 -111011011111 life-line 1 -111011011111 now-idle 1 -111011011111 700,000-ton-ayear 1 -111011011111 155-millimeter 1 -111011011111 three-kiloton 1 -111011011111 lignite-fuel 1 -111011011111 TV-executive 1 -111011011111 marginal-type 1 -111011011111 lens-processing 1 -111011011111 three-to-four-hour 1 -111011011111 space-vehicle 1 -111011011111 funny-money 1 -111011011111 ring-like 1 -111011011111 impoundment-veto 1 -111011011111 bio-equivalency 1 -111011011111 stoker 1 -111011011111 vinegar-and-shallot 1 -111011011111 semi-liquid 1 -111011011111 80-lane 1 -111011011111 chemical/biological 1 -111011011111 TU-95 1 -111011011111 sandwich-making 1 -111011011111 law-student 1 -111011011111 130,000-square-foot 1 -111011011111 pool-equipped 1 -111011011111 already-favored 1 -111011011111 TV-industry 1 -111011011111 auto-show 1 -111011011111 emergency-path 1 -111011011111 MacSteel 1 -111011011111 stretched-thin 1 -111011011111 M-1A1 1 -111011011111 body-altering 1 -111011011111 events-steer 1 -111011011111 ultra-accurate 1 -111011011111 optionpricing 1 -111011011111 474th 1 -111011011111 1,491 1 -111011011111 12-speed 1 -111011011111 rope-course 1 -111011011111 pollution-causing 1 -111011011111 stomach-acid 1 -111011011111 Heavenly 1 -111011011111 land-attack 1 -111011011111 1,297 1 -111011011111 brush-like 1 -111011011111 hand-off 1 -111011011111 most-efficient 1 -111011011111 full-throttled 1 -111011011111 Air-supported 1 -111011011111 engine-firing 1 -111011011111 run-of-the 1 -111011011111 capital-improvements 1 -111011011111 tuneup 1 -111011011111 Renabie 1 -111011011111 2.7-liter 1 -111011011111 yogurt-dill 1 -111011011111 drug-crop 1 -111011011111 submarine-sandwich 1 -111011011111 Maverick-G 1 -111011011111 1,300-megawatt 1 -111011011111 electron-beam 1 -111011011111 cable-supported 1 -111011011111 ultradense 1 -111011011111 entrenchment-driven 1 -111011011111 twinunit 1 -111011011111 fatigue-induced 1 -111011011111 hand-woven 1 -111011011111 three-yards-and-a-cloud-of-dust 1 -111011011111 libellous 1 -111011011111 fast-waning 1 -111011011111 once-absolute 1 -111011011111 wood-encased 1 -111011011111 Pentagram 1 -111011011111 better-prepared 1 -111011011111 80,000-acre 1 -111011011111 Zortman/Landusky 1 -111011011111 quasi-genocidal 1 -111011011111 already-formidable 1 -111011011111 minimum-budget 1 -111011011111 Tissue-type 1 -111011011111 wicker-furniture 1 -111011011111 ship-based 1 -111011011111 Anglo-style 1 -111011011111 low-stomata 1 -111011011111 now-declining 1 -111011011111 Essen-based 1 -111011011111 European-related 1 -111011011111 20-cigarette 1 -111011011111 KHON-TV 1 -111011011111 earth-orbiting 1 -111011011111 mini-nuclear 1 -111011011111 disaster-designated 1 -111011011111 defense-led 1 -111011011111 unrented 1 -111011011111 dollar-signs 1 -111011011111 automobile-interior 1 -111011011111 analog-digital 1 -111011011111 computerese-laced 1 -111011011111 impulse-capable 1 -111011011111 missile-manufacturing 1 -111011011111 integrated-pest-management 1 -111011011111 military-conservative 1 -111011011111 unautomatic 1 -111011011111 12,052 1 -111011011111 Datago 1 -111011011111 light-oil-products 1 -111011011111 60-yard-tall 1 -111011011111 400-warhead 1 -111011011111 antisatellite 1 -111011011111 15,000-kilowatt 1 -111011011111 biomass-fired 1 -111011011111 product-based 1 -111011011111 anti-rebel 1 -111011011111 solar-electric 1 -111011011111 automotive-lubrication 1 -111011011111 nonhierarchical 1 -111011011111 anti-germ 2 -111011011111 intermediaterange 2 -111011011111 120-mm 2 -111011011111 regional-mall 2 -111011011111 once-conventional 2 -111011011111 consumer-incentive 2 -111011011111 fossil-fired 2 -111011011111 160,000-square-foot 2 -111011011111 Yvan 2 -111011011111 AM-radio 2 -111011011111 central-station 2 -111011011111 orange-processing 2 -111011011111 lignite-fueled 2 -111011011111 American-operated 2 -111011011111 ferroalloy 2 -111011011111 more-numerous 2 -111011011111 wood-working 2 -111011011111 mossy 2 -111011011111 Manila-area 2 -111011011111 Seasparrow 2 -111011011111 bacteriological 2 -111011011111 Hiroshima-size 2 -111011011111 TOW-2 2 -111011011111 weapons-control 2 -111011011111 wire-guided 2 -111011011111 green-shuttered 2 -111011011111 stenciling 2 -111011011111 satellite-tracking 2 -111011011111 51-acre 2 -111011011111 spinning-wheel 2 -111011011111 health-education 2 -111011011111 Iranian-bound 2 -111011011111 liquid-hydrogen 2 -111011011111 mile-wide 2 -111011011111 shoulder-launched 2 -111011011111 dome-shaped 2 -111011011111 52-card 2 -111011011111 glider-like 2 -111011011111 jetfighter 2 -111011011111 unadvertised 2 -111011011111 Maverick-D 2 -111011011111 Swedish-built 2 -111011011111 2,250-ton-a-day 2 -111011011111 Hamilton-Fairfield 2 -111011011111 Chaplinesque 2 -111011011111 million-seller 2 -111011011111 Portugese 2 -111011011111 adjudicatory 2 -111011011111 Seabrook-generated 2 -111011011111 atomic-weapons 2 -111011011111 biomass-fueled 2 -111011011111 600,000-kilowatt 2 -111011011111 base-load 2 -111011011111 open-to-hire 2 -111011011111 non-standard 2 -111011011111 conventional-warfare 2 -111011011111 hypervelocity 2 -111011011111 waiting-room 2 -111011011111 25-megawatt 2 -111011011111 theater-range 2 -111011011111 Afrin 2 -111011011111 low-trajectory 2 -111011011111 two-to-three 2 -111011011111 hydrostatic 2 -111011011111 lifetime-care 2 -111011011111 Fina-brand 2 -111011011111 Alouette 2 -111011011111 condop 2 -111011011111 personnel-service 2 -111011011111 freehand 2 -111011011111 paper-producing 2 -111011011111 Texas-grown 2 -111011011111 300-megawatt 2 -111011011111 atomic-power 2 -111011011111 sand-and-gravel 2 -111011011111 gray-metal 2 -111011011111 shortest-range 2 -111011011111 touch-sensitive 2 -111011011111 palm-lined 2 -111011011111 U-235 2 -111011011111 cheap-but-decent 2 -111011011111 dual-capable 2 -111011011111 coal-powered 2 -111011011111 fixed-site 2 -111011011111 330,000-kilowatt 2 -111011011111 sales-operation 2 -111011011111 story. 2 -111011011111 program-length 2 -111011011111 party-government 2 -111011011111 T-55 2 -111011011111 Cheddar 2 -111011011111 medical-waste 2 -111011011111 war-making 2 -111011011111 oil-reserve 2 -111011011111 leaded-glass 2 -111011011111 ultrasophisticated 2 -111011011111 topsecret 2 -111011011111 SS-16 2 -111011011111 once-a-year 2 -111011011111 intercontinental-range 2 -111011011111 laser-bar 2 -111011011111 Trouble-Shooting 2 -111011011111 highrise 2 -111011011111 Euromissile 2 -111011011111 five-passenger 2 -111011011111 well-laid 2 -111011011111 cranberry-based 2 -111011011111 reel-type 2 -111011011111 boutique-lined 2 -111011011111 Columbus-area 2 -111011011111 walk-behind 2 -111011011111 Teflon-like 2 -111011011111 gold-buying 2 -111011011111 metal-parts 2 -111011011111 pre-marketing 2 -111011011111 irritancy 2 -111011011111 part-of-a-bill 2 -111011011111 1,472 2 -111011011111 unarticulated 2 -111011011111 methyl-isocyanate 2 -111011011111 tank-heavy 2 -111011011111 cabin-pressure 2 -111011011111 2.4-meter 2 -111011011111 oil-prospecting 2 -111011011111 70,000-barrel-a-day 2 -111011011111 rapid-response 2 -111011011111 weapons-manufacturing 2 -111011011111 45,000-kilowatt 2 -111011011111 acid-rich 2 -111011011111 wild-cow 2 -111011011111 Pershing-2 2 -111011011111 wheel-and-rail 2 -111011011111 main-frame 2 -111011011111 Israeli-arranged 2 -111011011111 spine-tingling 2 -111011011111 40-kilometer 2 -111011011111 blood-drenched 2 -111011011111 infrared-sensor 2 -111011011111 metal-processing 2 -111011011111 flushable 2 -111011011111 cocaine-processing 3 -111011011111 AXE 3 -111011011111 periwinkle 3 -111011011111 movie-distribution 3 -111011011111 30,000-kilowatt 3 -111011011111 D5 3 -111011011111 nuclear-bomb 3 -111011011111 nuclear-generated 3 -111011011111 multiwarhead 3 -111011011111 suborbital 3 -111011011111 older-generation 3 -111011011111 Candu 3 -111011011111 Vezina 3 -111011011111 weapons-free 3 -111011011111 general-population 3 -111011011111 zinc-lead 3 -111011011111 tax-producing 3 -111011011111 disinfecting 3 -111011011111 cartridge-based 3 -111011011111 high-desert 3 -111011011111 Blowpipe 3 -111011011111 plutonium-producing 3 -111011011111 foreign-designed 3 -111011011111 120mm 3 -111011011111 Bellefonte 3 -111011011111 Campeau-owned 3 -111011011111 anatomic 3 -111011011111 1.2-million-square-foot 3 -111011011111 freight-train 3 -111011011111 game-like 3 -111011011111 12-tone 3 -111011011111 government-contractor 3 -111011011111 plate-making 3 -111011011111 ore-processing 3 -111011011111 astrodome 3 -111011011111 10th-grade 3 -111011011111 Palladian 3 -111011011111 block-time 3 -111011011111 fee-generating 3 -111011011111 laser-type 3 -111011011111 sales-operations 3 -111011011111 Nicolai 3 -111011011111 Yvan-Vezina 3 -111011011111 Carl-Gustaf 3 -111011011111 Colomac 3 -111011011111 spacebased 3 -111011011111 chip-fabrication 3 -111011011111 Ginna 3 -111011011111 shortrange 3 -111011011111 non-irrigated 3 -111011011111 rule-change 3 -111011011111 CSS-2 3 -111011011111 contractor-run 3 -111011011111 plutonium-processing 3 -111011011111 asbestos-contaminated 3 -111011011111 mammographic 3 -111011011111 500-foot 3 -111011011111 quick-printing 3 -111011011111 U.S.-sanctioned 3 -111011011111 hair-styling 3 -111011011111 forswore 3 -111011011111 jalapeno 3 -111011011111 asbestos-laced 3 -111011011111 decontaminating 3 -111011011111 folkloric 3 -111011011111 300-foot 3 -111011011111 24-carat 3 -111011011111 thermonuclear 4 -111011011111 Lemington 4 -111011011111 fossil-fueled 4 -111011011111 alcohol-based 4 -111011011111 Kemano 4 -111011011111 PCB-contaminated 4 -111011011111 1,100-pound 4 -111011011111 anti-tactical 4 -111011011111 inter-union 4 -111011011111 particle-beam 4 -111011011111 lead-lined 4 -111011011111 Canadian-designed 4 -111011011111 oil-burning 4 -111011011111 heavy-water 4 -111011011111 hydro-electric 4 -111011011111 missile-carrying 4 -111011011111 light-water 4 -111011011111 phallic 4 -111011011111 400,000-square-foot 4 -111011011111 70,000-square-foot 4 -111011011111 mediumrange 4 -111011011111 wraparound 4 -111011011111 T-72 4 -111011011111 M-48 4 -111011011111 Iran-bound 4 -111011011111 mass-merchandising 4 -111011011111 600-megawatt 4 -111011011111 non-stick 4 -111011011111 network-affiliate 4 -111011011111 ground-to-ground 4 -111011011111 non-casino 5 -111011011111 church-run 5 -111011011111 all-leather 5 -111011011111 anti-armor 5 -111011011111 PacMan 5 -111011011111 over-budget 5 -111011011111 cytogenetics 5 -111011011111 multiple-warhead 5 -111011011111 pathogenic 5 -111011011111 electrical-power 5 -111011011111 fireproof 5 -111011011111 nuclear-test 5 -111011011111 air-to-surface 5 -111011011111 radar-guided 5 -111011011111 non-offensive 5 -111011011111 cafeteria-style 5 -111011011111 forward-based 5 -111011011111 cash-producing 5 -111011011111 small-arms 5 -111011011111 kinetic-energy 5 -111011011111 four-unit 5 -111011011111 oil-storage 5 -111011011111 LG-1 5 -111011011111 Scud-B 5 -111011011111 biological-warfare 6 -111011011111 longrange 6 -111011011111 helium-cooled 6 -111011011111 slash-and-burn 6 -111011011111 SS-18 6 -111011011111 Chernobyl-type 6 -111011011111 non-hazardous 6 -111011011111 disease-resistant 6 -111011011111 ballot-box 6 -111011011111 floor-to-ceiling 6 -111011011111 radar-warning 6 -111011011111 tempera 6 -111011011111 Hellfire 6 -111011011111 test-ban 6 -111011011111 fissionable 6 -111011011111 low-hanging 6 -111011011111 pre-1987 6 -111011011111 45-rpm 6 -111011011111 nine-inch 6 -111011011111 OH-58 6 -111011011111 electricity-generating 6 -111011011111 flood-control 6 -111011011111 worst-managed 7 -111011011111 erosive 7 -111011011111 single-state 7 -111011011111 color-coordinated 7 -111011011111 confirmatory 7 -111011011111 submarine-based 7 -111011011111 war-fighting 7 -111011011111 unexploded 7 -111011011111 wood-burning 7 -111011011111 uninterruptible 8 -111011011111 low-speed 8 -111011011111 cogenerated 8 -111011011111 space-defense 8 -111011011111 four-lane 8 -111011011111 anti-radiation 8 -111011011111 addressable 8 -111011011111 rocket-fuel 8 -111011011111 electric-generating 8 -111011011111 battle-management 8 -111011011111 directed-energy 8 -111011011111 oil-fired 8 -111011011111 desalinization 9 -111011011111 U.S.-supplied 9 -111011011111 sealift 9 -111011011111 pre-marital 9 -111011011111 Bailly 9 -111011011111 antisubmarine 9 -111011011111 sea-based 9 -111011011111 ultra-high 9 -111011011111 ERIS 10 -111011011111 combined-cycle 10 -111011011111 gas-cooled 10 -111011011111 ground-to-air 10 -111011011111 U.S.-controlled 10 -111011011111 armor-piercing 10 -111011011111 Loco 11 -111011011111 Soviet-supplied 11 -111011011111 DNA-probe 12 -111011011111 water-cooled 12 -111011011111 lifesaving 12 -111011011111 nonproliferation 12 -111011011111 heat-seeking 13 -111011011111 tear-gas 14 -111011011111 boarded-up 14 -111011011111 energy-saving 14 -111011011111 10-warhead 15 -111011011111 Walla 16 -111011011111 weapons-grade 16 -111011011111 ASAT 16 -111011011111 intracranial 17 -111011011111 open-pit 17 -111011011111 air-to-ground 17 -111011011111 French-made 18 -111011011111 subatomic 19 -111011011111 high-voltage 21 -111011011111 carry-on 22 -111011011111 septic 22 -111011011111 surface-to-surface 22 -111011011111 antitank 23 -111011011111 anti-lock 24 -111011011111 missile-defense 25 -111011011111 nuclear-tipped 25 -111011011111 submarine-launched 27 -111011011111 polychlorinated 28 -111011011111 low-flying 28 -111011011111 coal-burning 28 -111011011111 kinetic 29 -111011011111 Harpoon 29 -111011011111 Chinese-made 29 -111011011111 Exocet 31 -111011011111 auxiliary 33 -111011011111 amphibious 34 -111011011111 Soviet-made 37 -111011011111 anti-satellite 37 -111011011111 air-to-air 38 -111011011111 anti-ship 39 -111011011111 PCB 42 -111011011111 nasal 43 -111011011111 longer-range 44 -111011011111 Maverick 47 -111011011111 litmus 48 -111011011111 non-nuclear 56 -111011011111 low-power 61 -111011011111 Vogtle 63 -111011011111 ground-based 63 -111011011111 anti-tank 65 -111011011111 anti-submarine 69 -111011011111 TOW 70 -111011011111 Silkworm 72 -111011011111 antimissile 75 -111011011111 shorter-range 76 -111011011111 nuclear-weapons 83 -111011011111 geothermal 84 -111011011111 land-based 87 -111011011111 intercontinental 87 -111011011111 waste-to-energy 105 -111011011111 coal-fired 114 -111011011111 Pap 140 -111011011111 hydroelectric 144 -111011011111 anti-missile 145 -111011011111 nuclear-power 149 -111011011111 atomic 151 -111011011111 ballistic 200 -111011011111 radioactive 205 -111011011111 space-based 227 -111011011111 intermediate-range 235 -111011011111 medium-range 238 -111011011111 short-range 268 -111011011111 biological 291 -111011011111 tactical 327 -111011011111 long-range 443 -111011011111 toxic 545 -111011011111 conventional 2169 -111011011111 nuclear 5342 -111011011111 strategic 2227 -111011100 yet-raised 1 -111011100 bond-coupon 1 -111011100 professor/antitrust 1 -111011100 Lebanon-style 1 -111011100 steeper-than-expected 1 -111011100 LANDES 1 -111011100 asbestos-claims 1 -111011100 non-salary 1 -111011100 low-and-moderate 1 -111011100 depressed-worker 1 -111011100 high-net 1 -111011100 ninemonth 1 -111011100 1.69-point 1 -111011100 next-quarter 1 -111011100 quick-to-field 1 -111011100 NSC-directed 1 -111011100 higher-than-estimated 1 -111011100 financecharge 1 -111011100 service-charge 1 -111011100 nonpassive 1 -111011100 oper. 1 -111011100 4th-quarter 1 -111011100 after-college 1 -111011100 pre-expense 1 -111011100 dollar-for-ruble 1 -111011100 10.66-points 1 -111011100 Spendable 1 -111011100 living-personal 1 -111011100 U.S.-source 1 -111011100 photo-business 1 -111011100 coventional 1 -111011100 nonreported 1 -111011100 investment-firm 1 -111011100 79-78 1 -111011100 calendar-1987 1 -111011100 copyright-fee 1 -111011100 most-significant 1 -111011100 brokerage-commission 1 -111011100 72-cent-a-share 1 -111011100 98-89 1 -111011100 10-yen 1 -111011100 resultsthe 1 -111011100 30,000-words 1 -111011100 switcheroo 1 -111011100 chicken-company 1 -111011100 22-cent-share 1 -111011100 343.06-a 1 -111011100 double-overtime 2 -111011100 minimum-taxable 2 -111011100 distributable 2 -111011100 quality-adjusted 2 -111011100 lost-workday 2 -111011100 2,301 2 -111011100 low-to-moderate 2 -111011100 dead-weight 3 -111011100 debt-cancellation 3 -111011100 ROLLS 3 -111011100 Withhold 3 -111011100 adjusted-gross 3 -111011100 loan-fee 4 -111011100 non-wage 5 -111011100 foreign-source 6 -111011100 spendable 9 -111011100 noninterest 10 -111011100 net 17239 -111011100 non-interest 138 -1110111010 900,000-barrel-a-day 1 -1110111010 manufacturing-climate 1 -1110111010 chemical-product 1 -1110111010 trading-business 1 -1110111010 world-cotton 1 -1110111010 906.42-point 1 -1110111010 paperthin 1 -1110111010 specialty-chain 1 -1110111010 next-biggest 1 -1110111010 per-ADR 1 -1110111010 daily-production 1 -1110111010 companion-discount 1 -1110111010 pro-Gorbachev 1 -1110111010 halfyear 1 -1110111010 once-skimpy 1 -1110111010 industrial-scale 1 -1110111010 homesite 1 -1110111010 offshore-China 1 -1110111010 2.77-point 1 -1110111010 suit-settlement 1 -1110111010 12,431,866 1 -1110111010 past-12-month 1 -1110111010 Texas-area 1 -1110111010 college-support 1 -1110111010 still-to-be-reported 1 -1110111010 BTOS-II 1 -1110111010 most-notorious 1 -1110111010 24-cent 1 -1110111010 Monday-through-Friday 1 -1110111010 ooey-gooey 1 -1110111010 322-pence 1 -1110111010 slightly-better-than-expected 1 -1110111010 investment-monitoring 1 -1110111010 strike-blunted 1 -1110111010 rebatable 1 -1110111010 debt-retirement 1 -1110111010 0.3-percentage-point 1 -1110111010 304,000-job 1 -1110111010 residential-subscriber 1 -1110111010 equipment-trust-certificate 1 -1110111010 fuller-bodied 1 -1110111010 17.57-point 1 -1110111010 budget/tax 1 -1110111010 record-division 1 -1110111010 rail-unit 1 -1110111010 non-extraordinary 1 -1110111010 home-attendance 1 -1110111010 12-months 1 -1110111010 dog-track 1 -1110111010 76-cents-a-share 1 -1110111010 maxmium 1 -1110111010 loan-syndication 1 -1110111010 23.60-point 1 -1110111010 296,000-job 1 -1110111010 15.81-point 1 -1110111010 soybean-export 1 -1110111010 epidemically 1 -1110111010 parent-bank 1 -1110111010 development-contract 1 -1110111010 default-related 1 -1110111010 45.43-point 1 -1110111010 56.20-point 1 -1110111010 still-promising 1 -1110111010 48,000-member 1 -1110111010 132,100 1 -1110111010 consumer-business 1 -1110111010 51.6-point 1 -1110111010 120,000-member 1 -1110111010 modest-to-good 1 -1110111010 25.87-point 1 -1110111010 hotel-operating 1 -1110111010 pre-July 1 -1110111010 airplane-division 1 -1110111010 50-cent-a-share 1 -1110111010 steel-output 1 -1110111010 December-to-January 1 -1110111010 44,000-job 1 -1110111010 film-thin 1 -1110111010 consolidated-pretax 1 -1110111010 1.06-point 1 -1110111010 pre-code 1 -1110111010 10-mark-a-share 1 -1110111010 March-to-March 1 -1110111010 finance-unit 1 -1110111010 15.09-point 1 -1110111010 industry-trailing 1 -1110111010 114-point 1 -1110111010 more-than-double 1 -1110111010 2.55-cent 1 -1110111010 interest-related 1 -1110111010 sale-price 1 -1110111010 Wandsworth 1 -1110111010 63-cent 1 -1110111010 pretrade 1 -1110111010 wage-dividend 1 -1110111010 50-cents-a-share 1 -1110111010 total-year 1 -1110111010 1,680,000-car 1 -1110111010 7,000-employee 1 -1110111010 paper-route 1 -1110111010 investment-sale 1 -1110111010 16-win 1 -1110111010 nonrecognized 1 -1110111010 core-bank 1 -1110111010 Redcoats 1 -1110111010 unit-sale 1 -1110111010 4th-period 1 -1110111010 first-six-month 1 -1110111010 twelve-month 1 -1110111010 best-groomed 1 -1110111010 5.80-point 1 -1110111010 3.20-point 1 -1110111010 25.42-point 1 -1110111010 catastrophic-healthcare 1 -1110111010 6.5-cent-a-share 1 -1110111010 a-Excludes 1 -1110111010 61-cent-a-share 1 -1110111010 76-cent-a-share 1 -1110111010 5-cent-a-share 1 -1110111010 29,000-employee 1 -1110111010 Canopean 1 -1110111010 44.5-cent 1 -1110111010 fiscal-second-quarter 1 -1110111010 corn-stocks 1 -1110111010 per-viewer 1 -1110111010 1,589,278 1 -1110111010 17.24-point 1 -1110111010 10.3-million-car 1 -1110111010 1.8-mark 1 -1110111010 once-raciest 1 -1110111010 23.04-point 1 -1110111010 pre-charge 1 -1110111010 38.94-point 1 -1110111010 churro 1 -1110111010 point-and-a-quarter 1 -1110111010 111-seat 1 -1110111010 presale 1 -1110111010 bank-group 1 -1110111010 19-billion-mark 1 -1110111010 loss-deduction 1 -1110111010 reserve-related 1 -1110111010 Sava 1 -1110111010 supperregional 1 -1110111010 51.60-point 2 -1110111010 60-cent-a-share 2 -1110111010 oneday 2 -1110111010 asset-value 2 -1110111010 66-cent-a-share 2 -1110111010 AIDS-test 2 -1110111010 54.14-point 2 -1110111010 direct-investment 2 -1110111010 samestore 2 -1110111010 foreign-portfolio 2 -1110111010 cash-position 2 -1110111010 coal-company 2 -1110111010 consoldiated 2 -1110111010 70-cent-a-share 2 -1110111010 two-quarter 2 -1110111010 accounting-change 2 -1110111010 record-level 2 -1110111010 nonpetroleum 2 -1110111010 3,000-dollar 2 -1110111010 fiscal-third-quarter 2 -1110111010 41-cent 2 -1110111010 pre-depreciation 2 -1110111010 doubledigit 2 -1110111010 fiscal-first-quarter 2 -1110111010 Time/Yankelovich 2 -1110111010 four-cent-a-share 2 -1110111010 OPEC-assigned 2 -1110111010 23-cents-a-share 2 -1110111010 commercial-construction 2 -1110111010 most-positive 2 -1110111010 barrels-a-day 2 -1110111010 7.5-cent 2 -1110111010 15-mark 2 -1110111010 non-takeover 3 -1110111010 per-mile 3 -1110111010 four-cent 3 -1110111010 pre-interest 3 -1110111010 1,783,000 3 -1110111010 December-to-March 3 -1110111010 firsthalf 3 -1110111010 volumetric 3 -1110111010 102.27-point 3 -1110111010 102-point 3 -1110111010 one-cent-a-share 3 -1110111010 latest-period 3 -1110111010 single-quarter 3 -1110111010 less-optimistic 4 -1110111010 eight-cent 4 -1110111010 75-cent 4 -1110111010 firstquarter 4 -1110111010 unadited 4 -1110111010 64-point 4 -1110111010 fiscal-fourth-quarter 5 -1110111010 five-cent-a-share 5 -1110111010 post-tax 6 -1110111010 nine-months 6 -1110111010 home-sales 6 -1110111010 secondquarter 6 -1110111010 fullyear 6 -1110111010 fourthquarter 7 -1110111010 30-cent-a-share 7 -1110111010 unremitted 7 -1110111010 current-quarter 7 -1110111010 10-cent-a-share 7 -1110111010 net-income 8 -1110111010 thirdquarter 9 -1110111010 per-ton 9 -1110111010 store-for-store 10 -1110111010 undistributed 11 -1110111010 second-period 16 -1110111010 third-period 17 -1110111010 aftertax 17 -1110111010 first-period 18 -1110111010 pershare 19 -1110111010 current-year 22 -1110111010 year-over-year 22 -1110111010 fourth-period 23 -1110111010 half-year 51 -1110111010 fiscal-year 52 -1110111010 second-half 106 -1110111010 unconsolidated 118 -1110111010 unaudited 124 -1110111010 first-half 461 -1110111010 full-year 495 -1110111010 consolidated 897 -1110111010 after-tax 1091 -1110111010 pre-tax 1121 -1110111010 per-share 1385 -1110111010 third-quarter 2023 -1110111010 first-quarter 2057 -1110111010 second-quarter 2142 -1110111010 pretax 2304 -1110111010 quarterly 3134 -1110111010 fourth-quarter 2541 -1110111011 executive-hamburger 1 -1110111011 over-stressed 1 -1110111011 already-sagging 1 -1110111011 liberalizer 1 -1110111011 11-foot 1 -1110111011 Versicherungs-Gesellschaft 1 -1110111011 116-112 1 -1110111011 panpipe 1 -1110111011 old-school-tie 1 -1110111011 prescription-insurance 1 -1110111011 Lappalainen 1 -1110111011 ahuge 1 -1110111011 still-increasing 1 -1110111011 already-thin 1 -1110111011 HMO-type 1 -1110111011 anti-copy 1 -1110111011 guilder-denominated 1 -1110111011 pop-top 1 -1110111011 directmail 1 -1110111011 204,167 1 -1110111011 oncehealthy 1 -1110111011 incentive-management 1 -1110111011 p.m.-7 1 -1110111011 588,697 1 -1110111011 capital-related 1 -1110111011 45,317 1 -1110111011 Oksanna 1 -1110111011 picture-transmission 1 -1110111011 after-inflation 1 -1110111011 premium-payment 1 -1110111011 already-slim 1 -1110111011 auction-type 1 -1110111011 output-incentive 1 -1110111011 reinoculation 1 -1110111011 1,800,000 1 -1110111011 quasi-interest 1 -1110111011 all-national 1 -1110111011 BARRING 1 -1110111011 advanced-automation 1 -1110111011 206,007 1 -1110111011 semi-naked 1 -1110111011 unwriterly 1 -1110111011 all-competitive 1 -1110111011 483,467 1 -1110111011 preprivatization 1 -1110111011 2,042,108 1 -1110111011 louse-borne 1 -1110111011 bank-rescue 1 -1110111011 municipal-fund 1 -1110111011 free-enterpise 1 -1110111011 odd-even 1 -1110111011 Chibas 1 -1110111011 131,400 1 -1110111011 once-royal 1 -1110111011 mini-rebellion 1 -1110111011 short-lasting 1 -1110111011 223,168 1 -1110111011 Kantorei 1 -1110111011 104,340 1 -1110111011 1,976,541 1 -1110111011 pretax-operating 1 -1110111011 33,407 1 -1110111011 weapons-test 1 -1110111011 97,974 1 -1110111011 early-alert 1 -1110111011 hexagonal 2 -1110111011 power-buying 2 -1110111011 chemical-products 2 -1110111011 equity-account 2 -1110111011 group-health-insurance 2 -1110111011 legal-compliance 2 -1110111011 gas-exploration 4 -1110111011 operating 11911 -1110111011 toxic-shock 7 -11101111000 environmental-technology 1 -11101111000 1,047,936 1 -11101111000 home-selling 1 -11101111000 discount-broker 1 -11101111000 Iiapco 1 -11101111000 London-brokerage 1 -11101111000 Slumps 1 -11101111000 Sizewell 1 -11101111000 451,743 1 -11101111000 41,772 1 -11101111000 IMMOBILAIRE 1 -11101111000 mega-debt 1 -11101111000 CRACK 1 -11101111000 cargo-airline 1 -11101111000 alkylation 1 -11101111000 tax-reporting 1 -11101111000 interest-paid 1 -11101111000 pro-vitamin 1 -11101111000 Gasco 1 -11101111000 loan-selling 1 -11101111000 trucking-industry 1 -11101111000 prostaglandine 1 -11101111000 extended-burn 1 -11101111000 ConvaTec 1 -11101111000 840,513 1 -11101111000 clone-proofing 1 -11101111000 QHI 1 -11101111000 855,255 1 -11101111000 155,054 1 -11101111000 market-auction 1 -11101111000 Marpac 1 -11101111000 vitmain 1 -11101111000 previously-proposed 1 -11101111000 carpet-making 1 -11101111000 15,948 1 -11101111000 slower-earning 1 -11101111000 Kitchenaid 1 -11101111000 well-drafted 1 -11101111000 cogeneration-development 1 -11101111000 84,596 1 -11101111000 currency-hedge 1 -11101111000 equities-trading 1 -11101111000 double-A-3-rated 1 -11101111000 1,884,000 1 -11101111000 hog-buying 1 -11101111000 machine-tool-factory 1 -11101111000 XJ-SC 1 -11101111000 security-service 1 -11101111000 tea-making 1 -11101111000 building-contracting 1 -11101111000 3,267,019 1 -11101111000 HealthWin 1 -11101111000 vacation-travel 1 -11101111000 177,479 1 -11101111000 high-dividend-rate 1 -11101111000 Ceraver 1 -11101111000 co-writing 1 -11101111000 OshKosh 1 -11101111000 anti-fruitcake 1 -11101111000 2,335,987 1 -11101111000 2,500-gate 1 -11101111000 107,130 1 -11101111000 Vedril 1 -11101111000 12,481,680 1 -11101111000 26-branch 1 -11101111000 per-script 1 -11101111000 Atkinson/Commonwealth 1 -11101111000 geography-bond 1 -11101111000 Cono 1 -11101111000 HEARTechnology 1 -11101111000 seven-tiered 1 -11101111000 tour-operating 1 -11101111000 Home-Club 1 -11101111000 FinAmerica 1 -11101111000 American-influenced 1 -11101111000 39,647 1 -11101111000 milage 1 -11101111000 92nd-Street 1 -11101111000 Bank-funded 1 -11101111000 3-mark 1 -11101111000 engines-and-turbine 1 -11101111000 interest-arrears 1 -11101111000 12-million-ton 1 -11101111000 minumum 1 -11101111000 Teltronics 1 -11101111000 single-C-rated 1 -11101111000 4,225,694 1 -11101111000 736,900 1 -11101111000 gourd-shaped 1 -11101111000 607,400 1 -11101111000 33,485 1 -11101111000 formula-rate 1 -11101111000 black-trimmed 1 -11101111000 bank-linked 1 -11101111000 lead-refining 1 -11101111000 cl 1 -11101111000 dividened 1 -11101111000 35,577 1 -11101111000 Brdcst 1 -11101111000 Bdcstg 1 -11101111000 DALLY 1 -11101111000 compliance-reporting 1 -11101111000 Harper-Wyman 1 -11101111000 Photomat 1 -11101111000 domestic-tobacco 1 -11101111000 1,100,001 1 -11101111000 microwave-cooking-products 1 -11101111000 roastee 1 -11101111000 energy-releasing 1 -11101111000 capital-assets 1 -11101111000 Retin 1 -11101111000 interim-dividend 1 -11101111000 Ohemeda 1 -11101111000 10,459,000 1 -11101111000 Daisy-Cadnetix 1 -11101111000 10,000-kilowatt 1 -11101111000 Guber-Peters-Barris 1 -11101111000 Dagger 1 -11101111000 country-limits 1 -11101111000 NF-Kappa 1 -11101111000 insulters 1 -11101111000 SQUARE 1 -11101111000 301,594 1 -11101111000 commercial-airplane 2 -11101111000 dollar-cost 2 -11101111000 particpating 2 -11101111000 DEVELOPING 2 -11101111000 Lenscrafter 2 -11101111000 Amphotericin 2 -11101111000 Signa 2 -11101111000 mile-square 2 -11101111000 13,350 2 -11101111000 Dryer 2 -11101111000 dress-slacks 2 -11101111000 477,500 2 -11101111000 preferred-customer 2 -11101111000 Cosimo 2 -11101111000 Immense 2 -11101111000 Viggo 2 -11101111000 20,120 2 -11101111000 Top-10 2 -11101111000 Trilea 2 -11101111000 24,150,000 2 -11101111000 NordicTrack 2 -11101111000 time-measuring 2 -11101111000 Addison-Wesley-Longman 2 -11101111000 commercial-leasing 2 -11101111000 principal-and-interest 2 -11101111000 plush-toy 2 -11101111000 BLOCK 2 -11101111000 princial 2 -11101111000 amphotericin 3 -11101111000 90-pound 3 -11101111000 569,200 3 -11101111000 Getaway 3 -11101111000 small-airplane 3 -11101111000 Wireline 3 -11101111000 dividends-received 3 -11101111000 Euroc 3 -11101111000 already-diminished 3 -11101111000 Zytel 3 -11101111000 3,975,000 3 -11101111000 MVestment 3 -11101111000 interstate-pipeline 3 -11101111000 Corporacion 3 -11101111000 Symmetry 4 -11101111000 prinicipal 4 -11101111000 zero-bracket 4 -11101111000 T/A 4 -11101111000 Ponderay 4 -11101111000 Bauhaus 4 -11101111000 Lancia 5 -11101111000 PAYSOP 5 -11101111000 Sharples-Stokes 5 -11101111000 Polyco 5 -11101111000 Etch 6 -11101111000 Retinyl 6 -11101111000 Intron 6 -11101111000 Triumph-Adler 7 -11101111000 Topic 7 -11101111000 Auction-rate 7 -11101111000 Vitamin 10 -11101111000 nai 10 -11101111000 Housekeeper 11 -11101111000 Hubby 11 -11101111000 rentable 12 -11101111000 Exhibit 12 -11101111000 Scud 13 -11101111000 Salon 14 -11101111000 Lazy 15 -11101111000 Statement 16 -11101111000 Grade 23 -11101111000 Hepatitis 26 -11101111000 Schedule 35 -11101111000 auction-rate 49 -11101111000 Type 61 -11101111000 vitamin 108 -11101111000 hepatitis 161 -11101111000 Discover 165 -11101111000 revolving 440 -11101111000 Series 1457 -11101111000 Class 3280 -11101111000 principal 3138 -11101111001 billion-schilling 1 -11101111001 Homare 1 -11101111001 non-gilt 1 -11101111001 junior-subordinated 1 -11101111001 299,100 1 -11101111001 overhype 1 -11101111001 639,996 1 -11101111001 desingers 1 -11101111001 Detroit-to-Florida 1 -11101111001 monthly-coupon 1 -11101111001 related-company 1 -11101111001 silver-indexed 1 -11101111001 115,455 1 -11101111001 peseta-selling 1 -11101111001 Merrill-style 1 -11101111001 13,050,000 1 -11101111001 portuguese-language 1 -11101111001 non-cummulative 1 -11101111001 overcriminalizing 1 -11101111001 1,329,130 1 -11101111001 sisterly 1 -11101111001 Minstar-issued 1 -11101111001 toasty 1 -11101111001 reduced-interest 1 -11101111001 26-8 1 -11101111001 Inc.-backed 1 -11101111001 single-A-plus-rated 1 -11101111001 35-kyat 1 -11101111001 75-kyat 1 -11101111001 8830001 1 -11101111001 8833018 1 -11101111001 B-rated 1 -11101111001 influence-wielding 1 -11101111001 89,933 1 -11101111001 506,784 1 -11101111001 crop-duster 1 -11101111001 1/2-game 1 -11101111001 B-a-2-rated 1 -11101111001 post-it 1 -11101111001 airline-qualified 1 -11101111001 ex-sparring 1 -11101111001 B-plus-rated 1 -11101111001 Boesky-issued 1 -11101111001 commercial-investor 1 -11101111001 920,016 1 -11101111001 2,720,032 1 -11101111001 1,844,715 1 -11101111001 Co-general 1 -11101111001 concrete-workers 1 -11101111001 double-C-rated 1 -11101111001 128,950 1 -11101111001 double-B-plus-rated 1 -11101111001 2,575,000 1 -11101111001 convertbile 1 -11101111001 14,650,000 1 -11101111001 propagandization 1 -11101111001 revenue-anticipation 1 -11101111001 equity-commitment 1 -11101111001 single-A-minus-rated 1 -11101111001 CTM-affiliated 1 -11101111001 double-A/triple-A 1 -11101111001 player-agent 1 -11101111001 subdordinated 1 -11101111001 secured-equipment 1 -11101111001 Animator 1 -11101111001 396,454 1 -11101111001 accumlated 1 -11101111001 unbacked 1 -11101111001 919,905 1 -11101111001 near-legend 1 -11101111001 program-supplier 1 -11101111001 extinguishable 1 -11101111001 Japan-targeted 1 -11101111001 very-short-term 1 -11101111001 169-member 1 -11101111001 Non-recourse 1 -11101111001 gasoline-guzzling 1 -11101111001 5,118,800 1 -11101111001 23,167,000 1 -11101111001 236,018 1 -11101111001 capital-income 1 -11101111001 municipal-market 1 -11101111001 punitiveness 1 -11101111001 1989-Third 1 -11101111001 rate-type 1 -11101111001 wrong-doing 1 -11101111001 plastic-hologram 1 -11101111001 position-building 1 -11101111001 non-Eastern 1 -11101111001 1152.13 1 -11101111001 1349.9 1 -11101111001 B-1-rated 1 -11101111001 bearer-form 1 -11101111001 mini-films 1 -11101111001 payable-in-kind 1 -11101111001 fixed/adjustable-rate 1 -11101111001 subpart 1 -11101111001 shares.The 1 -11101111001 7-1/4 1 -11101111001 openess 1 -11101111001 who's-in-charge 1 -11101111001 Mitibank 1 -11101111001 non-asset-backed 1 -11101111001 heavy-voting 1 -11101111001 rating-sensitive 1 -11101111001 resort-building 1 -11101111001 RIA 1 -11101111001 eightyear 1 -11101111001 junk-bond-rate 1 -11101111001 40,902 1 -11101111001 1,505,028 1 -11101111001 intermediateterm 1 -11101111001 GM-made 1 -11101111001 interestrates 1 -11101111001 highgrade 1 -11101111001 11,226 1 -11101111001 377,591 1 -11101111001 4,157 1 -11101111001 41,134 1 -11101111001 less-fussy 1 -11101111001 singleA-3-rated 1 -11101111001 6,880,000 1 -11101111001 Fila 1 -11101111001 collateralised 1 -11101111001 double-B-rated 2 -11101111001 386,662 2 -11101111001 Rade 2 -11101111001 public-housing-project 2 -11101111001 triple-A-3 2 -11101111001 credit-card-backed 2 -11101111001 1.4625 2 -11101111001 0-2 2 -11101111001 nondischargable 2 -11101111001 two-rupee 2 -11101111001 pay-through 2 -11101111001 convertible-subordinated 2 -11101111001 130,423 2 -11101111001 triple-C-plus-rated 2 -11101111001 guranteed 2 -11101111001 10,339 2 -11101111001 bank-equity 2 -11101111001 3,695 2 -11101111001 Antilles-issued 2 -11101111001 5,999,800 2 -11101111001 par-value 2 -11101111001 Barbie-doll 2 -11101111001 nondischargeable 2 -11101111001 auction-market 3 -11101111001 lease-backed 3 -11101111001 4,650,000 3 -11101111001 oil-indexed 3 -11101111001 tax-anticipation 3 -11101111001 ordinary-share 3 -11101111001 Ba-3-rated 3 -11101111001 multiclass 3 -11101111001 nonredeemable 3 -11101111001 gold-indexed 3 -11101111001 triple-C-rated 3 -11101111001 receivables-backed 3 -11101111001 remarketable 3 -11101111001 senior-subordinated 3 -11101111001 newly-issued 3 -11101111001 IV-drug 3 -11101111001 non-call 3 -11101111001 untraded 3 -11101111001 covertible 4 -11101111001 single-B-plus-rated 4 -11101111001 10-dollar 4 -11101111001 single-B-minus-rated 5 -11101111001 non-recourse 6 -11101111001 single-B-rated 6 -11101111001 exchangable 6 -11101111001 resettable 6 -11101111001 dual-currency 7 -11101111001 untendered 7 -11101111001 one-dollar 9 -11101111001 triple-B-rated 9 -11101111001 90-cent 10 -11101111001 retractable 11 -11101111001 noncumulative 11 -11101111001 non-interest-bearing 12 -11101111001 non-cumulative 14 -11101111001 shelf-registered 15 -11101111001 extendable 16 -11101111001 nonconvertible 18 -11101111001 remarketed 25 -11101111001 pay-in-kind 28 -11101111001 increasing-rate 32 -11101111001 extendible 35 -11101111001 sinking-fund 90 -11101111001 reset 141 -11101111001 promissory 158 -11101111001 collateralized 160 -11101111001 redeemable 264 -11101111001 exchangeable 293 -11101111001 medium-term 388 -11101111001 floating-rate 508 -11101111001 cumulative 813 -11101111001 unsecured 922 -11101111001 secured 1061 -11101111001 convertible 3410 -11101111001 subordinated 2954 -11101111010 full-stay 1 -11101111010 higher-costing 1 -11101111010 right-to-die 1 -11101111010 late-round 1 -11101111010 spublic 1 -11101111010 1,606 1 -11101111010 similiar-maturing 1 -11101111010 oil-application 1 -11101111010 alcoholic-beverage-industry 1 -11101111010 planned-for 1 -11101111010 death-transcending 1 -11101111010 per-launch 1 -11101111010 retail-investor 1 -11101111010 laryngeal 1 -11101111010 FSLIC-issued 1 -11101111010 drug-export 1 -11101111010 aerospace-tooling 1 -11101111010 cutting-rights 1 -11101111010 sometimes-flimsy 1 -11101111010 Soviet-Turkish 1 -11101111010 20-million-share 1 -11101111010 installment-debt 1 -11101111010 heavier-than-anticipated 1 -11101111010 102-city 1 -11101111010 nonaccural 1 -11101111010 automatic-firing 1 -11101111010 pianistic 1 -11101111010 touristic 1 -11101111010 1,100-foot 1 -11101111010 Argentine-Brazilian 1 -11101111010 meat-price 1 -11101111010 20,421,865 1 -11101111010 Chrysler-backed 1 -11101111010 non-yen 1 -11101111010 Arasy 1 -11101111010 once-secondary 1 -11101111010 thirty-year 1 -11101111010 pretty-good-rated 1 -11101111010 1-capable 1 -11101111010 mortgage-industry 1 -11101111010 35,828 1 -11101111010 7,585 1 -11101111010 5,928 1 -11101111010 ammunitions 1 -11101111010 579,810 1 -11101111010 economic-populist 1 -11101111010 OTC-listed 1 -11101111010 settlement-related 1 -11101111010 114,330 1 -11101111010 spot-buying 1 -11101111010 milk-supply 1 -11101111010 distribution-system 1 -11101111010 large-deposit 1 -11101111010 eight-times 1 -11101111010 producing/directing 1 -11101111010 private-equity 1 -11101111010 38-day 1 -11101111010 apprentice-type 1 -11101111010 UYQ-21 1 -11101111010 nontrade 2 -11101111010 comparable-maturity 2 -11101111010 OPEC-related 2 -11101111010 shareholder/management 2 -11101111010 January-April 2 -11101111010 30year 2 -11101111010 arms-transfer 2 -11101111010 non-accural 2 -11101111010 lower-interest 2 -11101111010 water-and-sewer 2 -11101111010 higher-rated 2 -11101111010 Mexico-style 2 -11101111010 drought-aid 2 -11101111010 farm-relief 2 -11101111010 less-developed-countries 2 -11101111010 1,368 2 -11101111010 36,000-mile 2 -11101111010 non-dollar-denominated 2 -11101111010 already-serious 2 -11101111010 second-resolution 2 -11101111010 state-issued 2 -11101111010 per-farm 2 -11101111010 political-contributions 2 -11101111010 litmus-test 2 -11101111010 multiple-part 2 -11101111010 1692 2 -11101111010 dollar-plus 2 -11101111010 low-income-housing 2 -11101111010 unmatured 3 -11101111010 247-day 3 -11101111010 non-mortgage 3 -11101111010 market-led 3 -11101111010 non-marketable 3 -11101111010 rights-issue 3 -11101111010 training-camp 3 -11101111010 index-based 3 -11101111010 higher-coupon 3 -11101111010 petroleum-price 3 -11101111010 spring-planting 3 -11101111010 now-defaulted 3 -11101111010 Mexican-debt 3 -11101111010 500-mark 3 -11101111010 longerterm 4 -11101111010 coupon-bearing 4 -11101111010 going-concern 4 -11101111010 similar-maturity 4 -11101111010 taxfree 4 -11101111010 currency-induced 4 -11101111010 sixmonth 4 -11101111010 home-secured 4 -11101111010 Treasury-issued 4 -11101111010 biannual 5 -11101111010 foreign-stock 5 -11101111010 2-related 5 -11101111010 10year 5 -11101111010 oneyear 6 -11101111010 threemonth 6 -11101111010 credit-market 6 -11101111010 three-to-five-year 6 -11101111010 36-month 7 -11101111010 consumer-debt 7 -11101111010 six-months 7 -11101111010 longer-dated 8 -11101111010 doctrinal 8 -11101111010 higher-grade 8 -11101111010 problem-country 8 -11101111010 pension-related 9 -11101111010 shorter-dated 9 -11101111010 60-month 11 -11101111010 28-day 11 -11101111010 large-denomination 12 -11101111010 long-dated 14 -11101111010 risk-adjusted 15 -11101111010 prurient 15 -11101111010 high-interest-rate 15 -11101111010 shortterm 16 -11101111010 24-month 18 -11101111010 tax-favored 21 -11101111010 single-A-rated 22 -11101111010 nonaccrual 24 -11101111010 working-capital 29 -11101111010 past-due 30 -11101111010 similar-maturing 31 -11101111010 intermediate-term 47 -11101111010 longterm 58 -11101111010 developing-country 74 -11101111010 shorter-term 83 -11101111010 yen-denominated 92 -11101111010 non-accrual 182 -11101111010 26-week 306 -11101111010 13-week 315 -11101111010 longer-term 389 -11101111010 three-month 945 -11101111010 six-month 1116 -11101111010 10-year 1632 -11101111010 30-year 2003 -11101111010 long-term 6763 -11101111010 short-term 4162 -11101111011 marketable-equity 1 -11101111011 property-secured 1 -11101111011 low-drain 1 -11101111011 fluid-system 1 -11101111011 9,997 1 -11101111011 coal-haulage 1 -11101111011 forestry-project 1 -11101111011 second-lien 1 -11101111011 prime-based 1 -11101111011 nonperfomring 1 -11101111011 fourth-mortgage 1 -11101111011 better-grade 1 -11101111011 loan-fund 1 -11101111011 long-bearish 1 -11101111011 Drexelissued 1 -11101111011 wellregarded 1 -11101111011 non-accountable 1 -11101111011 escrow-type 1 -11101111011 Iranian-supplied 1 -11101111011 advanced-fee 1 -11101111011 hard-to-price 1 -11101111011 non-rated 1 -11101111011 1,242 1 -11101111011 6,659 1 -11101111011 wholesale-power 1 -11101111011 2,700-pound 1 -11101111011 Marcos-held 1 -11101111011 OAT 1 -11101111011 121,378 1 -11101111011 77,470 1 -11101111011 6-month 1 -11101111011 condominium-construction 1 -11101111011 three-currency 1 -11101111011 agency-approved 1 -11101111011 size-small 1 -11101111011 25,212 1 -11101111011 46,250,000 1 -11101111011 session-ending 1 -11101111011 milker 1 -11101111011 stadium-construction 1 -11101111011 court-stripping 1 -11101111011 more-pummeled 1 -11101111011 280-person 1 -11101111011 5,152 1 -11101111011 market-to-market 1 -11101111011 113-year 1 -11101111011 Bowmaker 1 -11101111011 non-delinquent 1 -11101111011 unirrigated 1 -11101111011 ratecase 1 -11101111011 construction-project 1 -11101111011 energy-state 1 -11101111011 heavy-weaponry 1 -11101111011 junior-senior 1 -11101111011 EDS-related 1 -11101111011 multiple-year 1 -11101111011 warrant-bearing 1 -11101111011 housing-rehabilitation 1 -11101111011 multiple-machine 1 -11101111011 2,951 1 -11101111011 ever-riskier 1 -11101111011 42,531 1 -11101111011 still-deductible 1 -11101111011 slowpaying 1 -11101111011 homeequity 1 -11101111011 overseas-futures 1 -11101111011 monthy 1 -11101111011 97,200 1 -11101111011 1,458 1 -11101111011 fixed-rated 1 -11101111011 difficult-to-collect 1 -11101111011 mortgage-collateralized 1 -11101111011 non-negative-amortization 1 -11101111011 time-controlled 1 -11101111011 continous 1 -11101111011 rate-linked 1 -11101111011 securities-based 1 -11101111011 ammunition-products 1 -11101111011 administration-supported 1 -11101111011 quarterly-expiration 1 -11101111011 130-mm 1 -11101111011 multilateral-agency 1 -11101111011 Kroh-related 1 -11101111011 income-property 1 -11101111011 260-odd 1 -11101111011 18,057 1 -11101111011 Debt-backed 1 -11101111011 mortage-backing 1 -11101111011 bank-guaranteed 1 -11101111011 492,844 1 -11101111011 37,864 1 -11101111011 568,120 1 -11101111011 14,370 1 -11101111011 more-timely 1 -11101111011 reserve-based 1 -11101111011 interlibrary 1 -11101111011 50,058 1 -11101111011 multistock 1 -11101111011 legal-residence 1 -11101111011 rural-electrification 1 -11101111011 127,386 1 -11101111011 152,846 1 -11101111011 deficit-covering 1 -11101111011 balloon-payment 1 -11101111011 MIRA 1 -11101111011 5,795,890 1 -11101111011 emergency-assistance 1 -11101111011 high-yeild 1 -11101111011 failed-bank 1 -11101111011 42,148 1 -11101111011 57,732 1 -11101111011 less-star-struck 1 -11101111011 pre-1949 1 -11101111011 latticeworks 1 -11101111011 chenin 1 -11101111011 monetary-stabilization 1 -11101111011 student-visa 1 -11101111011 already-transferred 1 -11101111011 Swiss-franc-denominated 1 -11101111011 mark-futures 1 -11101111011 AVC 1 -11101111011 Mortgage-related 1 -11101111011 101,552 1 -11101111011 5,000-dong 1 -11101111011 non-junk 1 -11101111011 zero-octane 1 -11101111011 assurety 1 -11101111011 low-down-payment 1 -11101111011 blue-chip-caliber 1 -11101111011 unmarketed 1 -11101111011 sequential-payment 1 -11101111011 base-lending 1 -11101111011 tank-related 1 -11101111011 take-or-buy 1 -11101111011 1989-71 1 -11101111011 job-destruction 1 -11101111011 781,746 1 -11101111011 cocoa-futures 1 -11101111011 vehicle-service 1 -11101111011 fewer-than-expected 1 -11101111011 888,256 1 -11101111011 709,273 1 -11101111011 1,244 1 -11101111011 death-backed 1 -11101111011 WLRO-FM 1 -11101111011 11,684 1 -11101111011 12,776 1 -11101111011 AA-rated 1 -11101111011 1-for-6 1 -11101111011 longer-termed 1 -11101111011 5-year 1 -11101111011 natural-gas-company 1 -11101111011 arbitrage-driven 1 -11101111011 unreceived 1 -11101111011 share-options 1 -11101111011 farm-operating 1 -11101111011 Euro-DM 1 -11101111011 cheif 1 -11101111011 asset-starved 1 -11101111011 50-million-peseta 1 -11101111011 thousand-share 1 -11101111011 inferior-quality 1 -11101111011 Unix-Sparc 1 -11101111011 medium-sized-business 1 -11101111011 Equity-warrant 1 -11101111011 tophatted 1 -11101111011 Ticor-insured 1 -11101111011 gas-measurement 1 -11101111011 lot-only 1 -11101111011 tax-savings 1 -11101111011 2,841 1 -11101111011 bad-bank 1 -11101111011 single-home 1 -11101111011 807,381 1 -11101111011 mortgagebacked 1 -11101111011 assets-government 1 -11101111011 dollar-buy 1 -11101111011 shelf-registration 1 -11101111011 shared-participation 1 -11101111011 1,263 1 -11101111011 3,000-pound 1 -11101111011 bond-insured 1 -11101111011 pregnancy-for-pay 1 -11101111011 deal-related 1 -11101111011 1,268 1 -11101111011 stop/loss 1 -11101111011 bubble-canopy 1 -11101111011 different-quality 1 -11101111011 civilian-aircraft 1 -11101111011 mortgage-revenue 1 -11101111011 cotton-goods 1 -11101111011 audio-video-based 1 -11101111011 non-earnings 1 -11101111011 non-federal 1 -11101111011 36,255 1 -11101111011 1,024,457 1 -11101111011 923,653 1 -11101111011 newdrug 1 -11101111011 capital-bank 1 -11101111011 pilot-labor 1 -11101111011 most-capitalized 1 -11101111011 Colts-type 1 -11101111011 energyrelated 1 -11101111011 mortage-backed 2 -11101111011 1,243 2 -11101111011 slablike 2 -11101111011 REA-guaranteed 2 -11101111011 Drexel-issued 2 -11101111011 six-digit 2 -11101111011 more-volatile 2 -11101111011 value-related 2 -11101111011 health-facility 2 -11101111011 group-travel 2 -11101111011 government-agency 2 -11101111011 vehicle-loan 2 -11101111011 multiple-family 2 -11101111011 exempt-organization 2 -11101111011 Treausry 2 -11101111011 junk-bond-backed 2 -11101111011 less-than-investment-grade 2 -11101111011 longest-term 2 -11101111011 installment-loan 2 -11101111011 foot-thick 2 -11101111011 second-section 2 -11101111011 single-sponsor 2 -11101111011 VA-backed 2 -11101111011 cruzado-denominated 2 -11101111011 post-strike 2 -11101111011 SuperCore 2 -11101111011 flexible-rate 2 -11101111011 revenue-refunding 2 -11101111011 Deeridge 2 -11101111011 bargain-rate 2 -11101111011 Treasury-linked 2 -11101111011 discount-window 2 -11101111011 noninvestment-grade 2 -11101111011 2,831 2 -11101111011 undrawn 2 -11101111011 bank-sponsored 2 -11101111011 project-based 2 -11101111011 peak-season 2 -11101111011 sub-market 2 -11101111011 VA-guaranteed 2 -11101111011 now-doubtful 2 -11101111011 lira-denominated 2 -11101111011 first-resolution 2 -11101111011 long-maturity 2 -11101111011 unrepaid 2 -11101111011 spectroscopic 2 -11101111011 overseas-dependent 2 -11101111011 interest-rate-futures 2 -11101111011 SBA-related 2 -11101111011 quick-disbursing 2 -11101111011 yuan-denominated 2 -11101111011 more-desirable 2 -11101111011 junk-backed 2 -11101111011 PROF 2 -11101111011 mortgage-based 2 -11101111011 home-purchase 3 -11101111011 international-agency 3 -11101111011 private-purpose 3 -11101111011 deferred-interest 3 -11101111011 foreign-currency-denominated 3 -11101111011 housing-backed 3 -11101111011 post-petition 3 -11101111011 no-money-down 3 -11101111011 zero-interest 3 -11101111011 seller-financed 3 -11101111011 building-refurbishing 3 -11101111011 adjustablerate 3 -11101111011 debt-based 3 -11101111011 ex-warrant 3 -11101111011 residential-mortgage 3 -11101111011 consumer-installment 3 -11101111011 higher-interest 3 -11101111011 interest-only/principal-only 3 -11101111011 below-market-rate 3 -11101111011 sous-vide 3 -11101111011 Drexel-managed 3 -11101111011 supply-driven 3 -11101111011 junkier 3 -11101111011 fixedrate 3 -11101111011 M-4 3 -11101111011 lease-obligation 3 -11101111011 Treasury-note 3 -11101111011 building-society 3 -11101111011 hundred-dollar 3 -11101111011 Chichi 3 -11101111011 corporate/government 3 -11101111011 non-yen-denominated 3 -11101111011 junkiest 4 -11101111011 municipal-revenue 4 -11101111011 Japanese-government 4 -11101111011 hard-to-sell 4 -11101111011 higher-rate 4 -11101111011 planned-amortization 4 -11101111011 Campeau-related 4 -11101111011 boat-loan 4 -11101111011 deficit-financing 4 -11101111011 second-line 4 -11101111011 nonaccruing 4 -11101111011 medium-dated 4 -11101111011 72-month 4 -11101111011 SBA-guaranteed 4 -11101111011 mortgaged-backed 4 -11101111011 collaterized 4 -11101111011 WHOOPS 4 -11101111011 short-maturity 4 -11101111011 Drexel-underwritten 4 -11101111011 nonmarketable 4 -11101111011 FSLIC-guaranteed 4 -11101111011 option-like 4 -11101111011 FHA-backed 4 -11101111011 charged-off 4 -11101111011 shorter-maturity 4 -11101111011 government-issued 4 -11101111011 non-project 4 -11101111011 personal-recognizance 5 -11101111011 REMIC 5 -11101111011 sovereign-risk 5 -11101111011 unbilled 5 -11101111011 low-yield 5 -11101111011 government-related 5 -11101111011 loan-backed 5 -11101111011 longer-maturity 5 -11101111011 policy-based 5 -11101111011 nonrecourse 5 -11101111011 current-coupon 5 -11101111011 uncollateralized 5 -11101111011 build-nothing 5 -11101111011 unshipped 5 -11101111011 fixed-term 5 -11101111011 muncipal 5 -11101111011 savings-type 5 -11101111011 non-investment-grade 5 -11101111011 gold-backed 6 -11101111011 gold-futures 6 -11101111011 TMIC-insured 6 -11101111011 rising-rate 6 -11101111011 reduced-rate 6 -11101111011 graduated-payment 6 -11101111011 FHA-insured 6 -11101111011 pre-refunded 6 -11101111011 passthrough 6 -11101111011 debt-backed 6 -11101111011 Shogun 6 -11101111011 industrial-revenue 6 -11101111011 multi-currency 6 -11101111011 private-activity 6 -11101111011 no-interest 6 -11101111011 auto-loan 6 -11101111011 less-liquid 6 -11101111011 reduction-option 6 -11101111011 income-contingent 7 -11101111011 non-gold 7 -11101111011 corporate-debt 7 -11101111011 Libor-linked 7 -11101111011 below-investment-grade 7 -11101111011 less-developed-country 7 -11101111011 various-purpose 7 -11101111011 gold-linked 8 -11101111011 high-rated 8 -11101111011 special-tax 8 -11101111011 cash-equivalent 9 -11101111011 gilt-edged 9 -11101111011 highest-yielding 9 -11101111011 foreign-denominated 9 -11101111011 GNMA 9 -11101111011 sole-source 9 -11101111011 highyield 9 -11101111011 Vendee 9 -11101111011 baccalaureate 9 -11101111011 pre-petition 10 -11101111011 steel-belted 10 -11101111011 fixed-interest 10 -11101111011 escrowed 10 -11101111011 golden-parachute 11 -11101111011 market-rate 11 -11101111011 shared-equity 11 -11101111011 renminbi 11 -11101111011 Treasury-bill 11 -11101111011 market-on-close 11 -11101111011 new-money 11 -11101111011 speculative-grade 11 -11101111011 MortgagePower 12 -11101111011 lower-yielding 12 -11101111011 Canadian-dollar 12 -11101111011 rocket-propelled 12 -11101111011 government-insured 13 -11101111011 lower-rated 13 -11101111011 mark-denominated 13 -11101111011 short-dated 13 -11101111011 ECU-denominated 14 -11101111011 blind-pool 14 -11101111011 FMS 14 -11101111011 general-obligation 17 -11101111011 uncollectable 18 -11101111011 pound-denominated 18 -11101111011 mortage 19 -11101111011 concessional 19 -11101111011 Ecuadoran 20 -11101111011 Swiss-franc 20 -11101111011 interest-only 20 -11101111011 payment-in-kind 20 -11101111011 PIK 20 -11101111011 tradeable 20 -11101111011 untied 21 -11101111011 gratis 21 -11101111011 index-linked 22 -11101111011 high-coupon 23 -11101111011 asset-based 23 -11101111011 mezzanine 24 -11101111011 structural-adjustment 24 -11101111011 low-yielding 25 -11101111011 surety 26 -11101111011 trade-related 26 -11101111011 principal-only 27 -11101111011 low-quality 28 -11101111011 AMT 28 -11101111011 low-rate 29 -11101111011 securitized 30 -11101111011 government-guaranteed 30 -11101111011 home-mortgage 30 -11101111011 mortgage-related 32 -11101111011 third-mortgage 34 -11101111011 bridging 34 -11101111011 REA 37 -11101111011 cash-management 38 -11101111011 low-grade 39 -11101111011 equity-related 43 -11101111011 non-performing 51 -11101111011 Euromark 53 -11101111011 pass-through 57 -11101111011 low-rated 57 -11101111011 equity-warrant 61 -11101111011 Eurosterling 67 -11101111011 first-mortgage 67 -11101111011 equity-linked 67 -11101111011 government-backed 73 -11101111011 high-interest 75 -11101111011 lien 75 -11101111011 noncompetitive 82 -11101111011 non-dollar 83 -11101111011 variable-rate 90 -11101111011 bearer 96 -11101111011 interest-free 98 -11101111011 high-yielding 103 -11101111011 asset-backed 109 -11101111011 fixed-coupon 110 -11101111011 unfilled 117 -11101111011 ECU 119 -11101111011 low-interest 122 -11101111011 investment-grade 128 -11101111011 serial 138 -11101111011 Euroyen 159 -11101111011 home-equity 187 -11101111011 marketable 211 -11101111011 Remic 233 -11101111011 installment 234 -11101111011 adjustable-rate 267 -11101111011 zero-coupon 312 -11101111011 dollar-denominated 349 -11101111011 nonperforming 368 -11101111011 high-risk 402 -11101111011 refunding 438 -11101111011 mortgage-backed 648 -11101111011 tax-exempt 664 -11101111011 high-yield 753 -11101111011 Eurodollar 839 -11101111011 bridge 845 -11101111011 fixed-rate 877 -11101111011 municipal 2077 -11101111011 mortgage 3940 -11101111011 junk 2100 -11101111100 peaked-and-gabled 1 -11101111100 gun-buying 1 -11101111100 fun-sated 1 -11101111100 sometimes-lucrative 1 -11101111100 institution-oriented 1 -11101111100 scientific-information 1 -11101111100 high-oil-price 1 -11101111100 still-tight 1 -11101111100 already-burdensome 1 -11101111100 UV200 1 -11101111100 hard-crabble 1 -11101111100 post-moral 1 -11101111100 bargain-minded 1 -11101111100 liability-happy 1 -11101111100 all-too-real 1 -11101111100 IBM-AT-compatible 1 -11101111100 advertising-saturated 1 -11101111100 dual-chambered 1 -11101111100 workanight 1 -11101111100 Syncopated 1 -11101111100 maple-tree 1 -11101111100 all-too-troubled 1 -11101111100 chemi-thermo 1 -11101111100 large-scaled 1 -11101111100 HFA 1 -11101111100 technology-dominated 1 -11101111100 sublunar 1 -11101111100 SH60-J 1 -11101111100 data-oriented 1 -11101111100 metallic-looking 1 -11101111100 post-death 1 -11101111100 money-driven 1 -11101111100 clement 1 -11101111100 pass-dominated 1 -11101111100 good-guy/bad-guy 1 -11101111100 windmill-based 1 -11101111100 mortgage/real 1 -11101111100 yell-and-holler 1 -11101111100 lectio 1 -11101111100 50-star 1 -11101111100 nonreal 1 -11101111100 not-yet-developed 1 -11101111100 out-of-time 1 -11101111100 once-shadowy 1 -11101111100 fast-vanishing 1 -11101111100 below-the-reach-of-the-media 1 -11101111100 Potage 1 -11101111100 trust-your-buddy 1 -11101111100 often-inept 1 -11101111100 megamoney 1 -11101111100 punk-music 1 -11101111100 easy-to-explain 1 -11101111100 then-oversupplied 1 -11101111100 once-staid 1 -11101111100 Shearerlike 1 -11101111100 killjoy 1 -11101111100 90-nation 1 -11101111100 two-power 1 -11101111100 overdeveloped 1 -11101111100 2,529 1 -11101111100 Papandreotic 1 -11101111100 oversubsidized 1 -11101111100 Islamic-dominated 1 -11101111100 1643 2 -11101111100 4,800-acre 2 -11101111100 Brat 2 -11101111100 seven-acre 2 -11101111100 Pomerol 2 -11101111100 Moslem-Christian 2 -11101111100 Ils 2 -11101111100 multisyllabic 2 -11101111100 bureacratic 3 -11101111100 Dragonbreath 3 -11101111100 iconographic 3 -11101111100 non-real 3 -11101111100 deterministic 3 -11101111100 boom-to-bust 3 -11101111100 truth-in-packaging 3 -11101111100 technicolor 3 -11101111100 farm-boy 4 -11101111100 13-acre 4 -11101111100 spatial 4 -11101111100 proxy-fight 4 -11101111100 real 12277 -11101111100 Netherland 9 -11101111101 Crass 1 -11101111101 non-securities-related 1 -11101111101 raw-steel 1 -11101111101 resalable 1 -11101111101 catastrophicillness 1 -11101111101 yarn-processing 1 -11101111101 1,552,600 1 -11101111101 don't-rock-the-boat 1 -11101111101 rib-cage 1 -11101111101 13-event 1 -11101111101 1,734,000 1 -11101111101 incentive-stock 1 -11101111101 478,300 1 -11101111101 CRYOGENIC 1 -11101111101 wide-mouth 1 -11101111101 13,325,365 1 -11101111101 3,029,235 1 -11101111101 four-quart 1 -11101111101 wealth-producing 1 -11101111101 three-dimensional-graphics 1 -11101111101 headache-inducing 1 -11101111101 procurement-oversight 1 -11101111101 air-terminal 1 -11101111101 gas-handling 1 -11101111101 Kotaneelee 1 -11101111101 Yinggehai 1 -11101111101 100-kilometer 1 -11101111101 capital-loss 1 -11101111101 blue-and-white-capped 1 -11101111101 sealed-environment 1 -11101111101 poision 1 -11101111101 gold-and 1 -11101111101 nonperishable 1 -11101111101 still-photograph 1 -11101111101 filmproduction 1 -11101111101 sacher-torte 1 -11101111101 water-absorbent 1 -11101111101 ship-handling 1 -11101111101 midload 1 -11101111101 tourist-traffic 1 -11101111101 750-orchid 1 -11101111101 10,025,316 1 -11101111101 Kyodo-branded 1 -11101111101 inflation-hedged 1 -11101111101 then-cheaper 1 -11101111101 size-42 1 -11101111101 algae-breeding 1 -11101111101 client-of-the-state 1 -11101111101 nuclear-strike 1 -11101111101 transformative 1 -11101111101 extra-terrestrial 1 -11101111101 alcohol/drug 1 -11101111101 chip-fabricating 1 -11101111101 landing-fees 1 -11101111101 nondeferred 1 -11101111101 misallocate 1 -11101111101 college-basketball 1 -11101111101 494,500 1 -11101111101 super-unleaded 1 -11101111101 oral-argument 1 -11101111101 light-bending 1 -11101111101 prohibitied 1 -11101111101 220,000-word 1 -11101111101 opertions 1 -11101111101 counter-mine 1 -11101111101 360,537 1 -11101111101 work-program 1 -11101111101 assault-weapon 1 -11101111101 returned-rock 1 -11101111101 equitypurchase 1 -11101111101 70-child 1 -11101111101 12-to-20-user 1 -11101111101 Bleacher 1 -11101111101 smart-mouthed 1 -11101111101 carpeting-related 1 -11101111101 fat-fighting 1 -11101111101 at-the-desk 1 -11101111101 30-mm 1 -11101111101 30-mm. 1 -11101111101 calendar-watching 1 -11101111101 hydroelectric-generating 1 -11101111101 Gavel-to-gavel 1 -11101111101 tumor-fighting 1 -11101111101 semi-proven 1 -11101111101 traffic-handling 1 -11101111101 good-for-a-lifetime 1 -11101111101 sports-news 1 -11101111101 flavoring-free 1 -11101111101 15,000-megawatt 1 -11101111101 well-tempered 1 -11101111101 918,411 1 -11101111101 Heimdal 1 -11101111101 Frigg 1 -11101111101 dealer-added 1 -11101111101 whiskey-making 1 -11101111101 Saltine 1 -11101111101 multi-situs 1 -11101111101 kiwi-fruit 1 -11101111101 swingy 1 -11101111101 career-jolting 1 -11101111101 tanklike 1 -11101111101 fidiciary 1 -11101111101 1,043,000 1 -11101111101 educational-facilities 1 -11101111101 tooth-for-a-tooth 1 -11101111101 Urongoi 1 -11101111101 199,363 1 -11101111101 oven-ready 1 -11101111101 price-bolstering 1 -11101111101 marriage-penalty 1 -11101111101 stay-cool 1 -11101111101 future-claims 1 -11101111101 oversea 1 -11101111101 war-widening 1 -11101111101 non-renewable 1 -11101111101 feeder-cattle 1 -11101111101 deficit-bred 1 -11101111101 womb-to-tomb 1 -11101111101 random-length 1 -11101111101 tortilla-wrapped 1 -11101111101 200,000-ton-a-year 1 -11101111101 Merc-listed 1 -11101111101 france 1 -11101111101 371,500 1 -11101111101 religious-school 1 -11101111101 tissue-paper-like 1 -11101111101 government-bonds 1 -11101111101 debt-maturity 1 -11101111101 partial-reserve 1 -11101111101 burking 1 -11101111101 combat-plane 1 -11101111101 5,098,420 1 -11101111101 scantiest 1 -11101111101 51,788 1 -11101111101 protoplanetary 1 -11101111101 agricultural-sector 1 -11101111101 115-person 1 -11101111101 moment-to-moment 1 -11101111101 printing-paper 1 -11101111101 Trans-Texas 1 -11101111101 debtor-possession 1 -11101111101 debt-induced 1 -11101111101 68,457 1 -11101111101 fixed-repayment 1 -11101111101 private-management 1 -11101111101 Jamburg 1 -11101111101 morefickle 1 -11101111101 latermaturing 1 -11101111101 continuous-release 1 -11101111101 5,200-foot 1 -11101111101 dollar-traded 1 -11101111101 turbine-building 1 -11101111101 travelogue-style 1 -11101111101 vaccine-related 1 -11101111101 35-million-pound 1 -11101111101 institutionwide 1 -11101111101 avaiation 1 -11101111101 European-initiated 1 -11101111101 multitier 1 -11101111101 congressional-presidential 1 -11101111101 basic-load 1 -11101111101 Court-controlled 1 -11101111101 falciparum 1 -11101111101 20,100 1 -11101111101 soul-healing 1 -11101111101 lower-48 1 -11101111101 1710 1 -11101111101 tax-hike 1 -11101111101 quilt-filled 1 -11101111101 cementlike 1 -11101111101 180-game 1 -11101111101 I-4 1 -11101111101 rhinestone-studded 1 -11101111101 common-bulb 1 -11101111101 1,200-bunk 1 -11101111101 profit-reducing 1 -11101111101 through-put 1 -11101111101 property/ 1 -11101111101 counter-spying 1 -11101111101 strike-force 1 -11101111101 hair-sized 1 -11101111101 worst-first 1 -11101111101 low-deductible 1 -11101111101 27,000-kilowatt 1 -11101111101 peak-volume 1 -11101111101 softwood-pulp 1 -11101111101 naked-put 1 -11101111101 absorptive 1 -11101111101 cranberry-flavored 1 -11101111101 activated-carbon 1 -11101111101 lease-like 1 -11101111101 stock-indexed 1 -11101111101 unforethought 1 -11101111101 inside-the-paper 1 -11101111101 mine-waste 1 -11101111101 blimp-making 1 -11101111101 62,749 1 -11101111101 scatter-shot 1 -11101111101 large-agency 1 -11101111101 550-million-pound 1 -11101111101 grain-related 1 -11101111101 physical-delivery 1 -11101111101 deferred-delivery 1 -11101111101 AFM 1 -11101111101 837-mile 1 -11101111101 local-finance 1 -11101111101 physical-damage 1 -11101111101 mineable 1 -11101111101 multiple-peril 1 -11101111101 unflagged 1 -11101111101 professional-liability 1 -11101111101 all-too-evident 1 -11101111101 penumbral 2 -11101111101 cuff-like 2 -11101111101 non-condensable 2 -11101111101 non-borrowed 2 -11101111101 less-hostile 2 -11101111101 hucksterish 2 -11101111101 scalar 2 -11101111101 common-situs 2 -11101111101 burnable 2 -11101111101 somatic 2 -11101111101 platinum-group 2 -11101111101 599,500 2 -11101111101 nonmetallic 2 -11101111101 ethanol-producing 2 -11101111101 tank-and-artillery 2 -11101111101 engine-production 2 -11101111101 as-yet-unnamed 2 -11101111101 warhead-carrying 2 -11101111101 life-giving 2 -11101111101 all-risk 2 -11101111101 nonprecious 2 -11101111101 pucker 2 -11101111101 yen-currency 2 -11101111101 pre-fire 2 -11101111101 minable 2 -11101111101 ion-exchange 2 -11101111101 near-full 2 -11101111101 Restored 2 -11101111101 S&P-index 2 -11101111101 XMI 2 -11101111101 non-equity 2 -11101111101 400-mile 2 -11101111101 voting-right 2 -11101111101 industrial-revenue-bond 2 -11101111101 winter-related 2 -11101111101 26,135,682 2 -11101111101 near-dictatorial 2 -11101111101 semi-proved 2 -11101111101 fire-blocking 2 -11101111101 air-worthiness 2 -11101111101 institution-wide 2 -11101111101 subsistence-pay 2 -11101111101 high-estrogen 2 -11101111101 trunkline 2 -11101111101 man-to-man 3 -11101111101 1970s-style 3 -11101111101 submicroscopic 3 -11101111101 unpriced 3 -11101111101 petrodollar 3 -11101111101 extra-cost 3 -11101111101 non-production 3 -11101111101 single-tax 3 -11101111101 foul-smelling 3 -11101111101 12,261,127 3 -11101111101 retin-A 3 -11101111101 stockindex 3 -11101111101 damage-waiver 3 -11101111101 second-strike 3 -11101111101 tetroxide 3 -11101111101 anti-competition 3 -11101111101 small-caliber 3 -11101111101 coal-seam 3 -11101111101 crash-induced 3 -11101111101 gonzo 3 -11101111101 full-funding 3 -11101111101 rail-mobile 4 -11101111101 performance-related 4 -11101111101 pinkish 4 -11101111101 gavel-to-gavel 4 -11101111101 already-depressed 4 -11101111101 light-vehicle 4 -11101111101 shockwave 4 -11101111101 rare-earth 4 -11101111101 treasury-bond 4 -11101111101 crime-control 4 -11101111101 call-processing 4 -11101111101 nouveaux 4 -11101111101 time-release 5 -11101111101 lower-risk 5 -11101111101 acetylene 5 -11101111101 unleaded-gasoline 5 -11101111101 dollar-priced 6 -11101111101 hoi 6 -11101111101 high-purity 6 -11101111101 non-precious 6 -11101111101 powertrain 7 -11101111101 black-majority 7 -11101111101 loanloss 7 -11101111101 100,000-mile 7 -11101111101 interruptible 8 -11101111101 collision-damage 8 -11101111101 out-of-the-money 8 -11101111101 pecuniary 8 -11101111101 market-index 8 -11101111101 current-carrying 9 -11101111101 low-energy 9 -11101111101 anti-poison 10 -11101111101 exchange-traded 10 -11101111101 pork-belly 10 -11101111101 Ragu 10 -11101111101 unexercised 12 -11101111101 non-ferrous 16 -11101111101 securities-underwriting 18 -11101111101 foreign-loan 24 -11101111101 nonqualified 25 -11101111101 injunctive 31 -11101111101 stock-related 34 -11101111101 European-style 34 -11101111101 nonferrous 35 -11101111101 mustard 36 -11101111101 bad-debt 39 -11101111101 Treasury-bond 55 -11101111101 countervailing 78 -11101111101 take-or-pay 108 -11101111101 equity-purchase 133 -11101111101 foreign-currency 212 -11101111101 tear 260 -11101111101 fiduciary 433 -11101111101 loan-loss 907 -11101111101 poison 955 -11101111101 precious 1022 -11101111101 stock-index 1469 -11101111101 natural 3717 -11101111101 direct 2912 -11101111110 anti-Garb 1 -11101111110 on-rushing 1 -11101111110 wheat-trade 1 -11101111110 15-6 1 -11101111110 image-switching 1 -11101111110 image-makeover 1 -11101111110 body-odor 1 -11101111110 hot-air-balloon 1 -11101111110 QDE. 1 -11101111110 445-member 1 -11101111110 44,017 1 -11101111110 Party-led 1 -11101111110 pseudo-event 1 -11101111110 black-bordered 1 -11101111110 jezebel 1 -11101111110 pre-sellout 1 -11101111110 41-game 1 -11101111110 pro-Texas 1 -11101111110 Texas-touting 1 -11101111110 38-store 1 -11101111110 no-offense 1 -11101111110 spurlike 1 -11101111110 to-be 1 -11101111110 292,200 1 -11101111110 one-in-500 1 -11101111110 Louvre-like 1 -11101111110 Moscow-led 1 -11101111110 clue. 1 -11101111110 vertebrate 1 -11101111110 full-rigged 1 -11101111110 13-room 1 -11101111110 precinct-delegate 1 -11101111110 right-of-left 1 -11101111110 public-art 1 -11101111110 fast-draw 1 -11101111110 free-information 1 -11101111110 meta-analysis 1 -11101111110 president/creative 1 -11101111110 president-customer 1 -11101111110 party-wide 1 -11101111110 now-disputed 1 -11101111110 record-time 1 -11101111110 anti-lewd-rock 1 -11101111110 Intercable-managed 1 -11101111110 34-7 1 -11101111110 swankest 1 -11101111110 presidential-race 1 -11101111110 Sun/AT&T 1 -11101111110 secondfront-page 1 -11101111110 letterwriting 1 -11101111110 coat-over-the-shoulder 1 -11101111110 CEGB 1 -11101111110 54.91 1 -11101111110 leftist-front 1 -11101111110 XXIV 1 -11101111110 gun-lobby 1 -11101111110 president-Army 1 -11101111110 then-approaching 1 -11101111110 Hoeschlers 1 -11101111110 torchlight 1 -11101111110 once-highly 1 -11101111110 Bork-hate 1 -11101111110 tile-and-brick-paved 1 -11101111110 diamond-film 1 -11101111110 recovered-alcoholic 1 -11101111110 androgynously 1 -11101111110 time-for-a-change 1 -11101111110 just-plain-Hoosier 1 -11101111110 Lautenberg-Dawkins 1 -11101111110 splendours 1 -11101111110 bed-sized 1 -11101111110 proagreement 1 -11101111110 three-CD 1 -11101111110 much-disparaged 1 -11101111110 Truth-in-Initiative 1 -11101111110 arduously 1 -11101111110 chiropractor-entrepreneur 1 -11101111110 F-8s 1 -11101111110 nuclear-free-Europe 1 -11101111110 often-bickering 1 -11101111110 international-section 1 -11101111110 non-presidential 1 -11101111110 rustic-looking 1 -11101111110 pro-Indaba 1 -11101111110 beer-and- 1 -11101111110 mine-planting 1 -11101111110 215-seat 1 -11101111110 party-centered 1 -11101111110 bobwhites 1 -11101111110 secularizing 1 -11101111110 early-to-mid-50s 1 -11101111110 once-slumping 1 -11101111110 teepee-like 1 -11101111110 pro-party 1 -11101111110 anti-bourgeois-liberalization 1 -11101111110 Layer 1 -11101111110 parlimentary 1 -11101111110 anti-phone 1 -11101111110 corporate-statism 1 -11101111110 64-megabyte 1 -11101111110 scanner-type 1 -11101111110 publicity-blitz 1 -11101111110 magnetic-train 1 -11101111110 114-page 1 -11101111110 religious-retreat 1 -11101111110 anti-dam 1 -11101111110 nerveless 1 -11101111110 TV-advertising 1 -11101111110 Ebano-style 1 -11101111110 sub-chapter 1 -11101111110 Filipino-style 1 -11101111110 television-industry 1 -11101111110 intellectualism 1 -11101111110 unromantically 1 -11101111110 pro-incinerator 1 -11101111110 Mi-25 1 -11101111110 7,280,000 1 -11101111110 Danish-made 1 -11101111110 climate-of-fear 1 -11101111110 to-each-according-to-his-work 1 -11101111110 Mafia-style 1 -11101111110 anti-vodka 1 -11101111110 strong-defense 1 -11101111110 multiballoted 1 -11101111110 Republican-turned-third-party 1 -11101111110 pre-presidential 1 -11101111110 market-rattling 1 -11101111110 magazine-subscription 1 -11101111110 post-bowl 1 -11101111110 anti-liberalization 1 -11101111110 wimpy-sounding 1 -11101111110 drawl-voiced 1 -11101111110 Administration-backed 1 -11101111110 so-far-unsuccessful 1 -11101111110 defacto 1 -11101111110 1,125-page 1 -11101111110 nondaily 1 -11101111110 2,492 1 -11101111110 labor-representation 1 -11101111110 3,011 1 -11101111110 stand-up-for-America 1 -11101111110 post-Iowa 1 -11101111110 pro-Murray 1 -11101111110 10.5-pence-a-share 1 -11101111110 Democratic-Socialist 1 -11101111110 Democratic-Socialist-Liberal 1 -11101111110 lemonade-stand 1 -11101111110 still-producing 1 -11101111110 subjectively 1 -11101111110 oped-page 1 -11101111110 loss-of-virginity 1 -11101111110 computer-programmed 1 -11101111110 water-boil 1 -11101111110 taxpayer-education 1 -11101111110 caveman 1 -11101111110 Prizewinning 1 -11101111110 Prize-nominated 1 -11101111110 editoral-page 1 -11101111110 over-lights 1 -11101111110 April-through-July 1 -11101111110 katzenjammer 1 -11101111110 political-advertising 1 -11101111110 county/city 1 -11101111110 gravel-bottomed 1 -11101111110 much-closer-than-expected 1 -11101111110 excoriative 1 -11101111110 then-suppressed 1 -11101111110 quadruple-decker 1 -11101111110 15,000-word 1 -11101111110 since-abandoned 1 -11101111110 dollar-a-plate 1 -11101111110 Bush-for-President 1 -11101111110 market-forces 1 -11101111110 purgative 1 -11101111110 Ph.D.s. 1 -11101111110 left-versus-right 1 -11101111110 business-getting 1 -11101111110 operation-a 1 -11101111110 Bommers 1 -11101111110 national-legislative 1 -11101111110 factory-approved 1 -11101111110 fortitudinous 1 -11101111110 local-autonomy 1 -11101111110 president-federal 1 -11101111110 anti-Lorenzo 1 -11101111110 multi-ballot 1 -11101111110 Indian-rights 1 -11101111110 pro-taxation 1 -11101111110 designator 1 -11101111110 made-in-the-North 1 -11101111110 president/marketing 1 -11101111110 vacanies 1 -11101111110 anti-stain 1 -11101111110 cutesy-pie 1 -11101111110 final-game 1 -11101111110 Pulitzers 1 -11101111110 256-bit 1 -11101111110 not-always-exciting 1 -11101111110 Gephardt-Dukakis 1 -11101111110 index-card 1 -11101111110 17-14 1 -11101111110 incumbent-entrenching 1 -11101111110 border-state 1 -11101111110 twice-bankrupt 1 -11101111110 cardboard-people 1 -11101111110 glueball 1 -11101111110 scientist-cum-magician 1 -11101111110 seven-way 1 -11101111110 court-appointment 1 -11101111110 one-judge 1 -11101111110 comminque 1 -11101111110 then-respected 1 -11101111110 12-chapter 1 -11101111110 patent-pending 1 -11101111110 50,000-vote 1 -11101111110 JSP-supported 1 -11101111110 eye-cancer 1 -11101111110 compact-camcorder 1 -11101111110 African-safari 1 -11101111110 Jackson-backed 1 -11101111110 bobtailed 1 -11101111110 one-million-letter 1 -11101111110 anti-leak 1 -11101111110 anti-Pakistan 1 -11101111110 Cabee 1 -11101111110 dozen-room 1 -11101111110 Cox-Roosevelt 1 -11101111110 president-Southwestern 1 -11101111110 Steiger-Jenkins 1 -11101111110 country-lawyer 1 -11101111110 Jenkins-Bush 1 -11101111110 IMC-related 1 -11101111110 lieutenant-governor 1 -11101111110 postelection 1 -11101111110 Mankhokwe 1 -11101111110 free-skating 1 -11101111110 14-mile 1 -11101111110 outside-the-Beltway 1 -11101111110 Thursday-through-Sunday 1 -11101111110 anti-apple 1 -11101111110 anti-generic-drug 1 -11101111110 Perception/Reality 1 -11101111110 five-vote 1 -11101111110 now-shrinking 1 -11101111110 165,688 1 -11101111110 almost-perfect 1 -11101111110 vague-sounding 1 -11101111110 most-likely 1 -11101111110 precinct-level 1 -11101111110 working-day 1 -11101111110 108-96 1 -11101111110 dirty-trick 1 -11101111110 poisonbait 1 -11101111110 law-journal 1 -11101111110 Franco-Gaelic 1 -11101111110 VCs 1 -11101111110 tactile 1 -11101111110 13-inch-diagonal 1 -11101111110 slap-dash 1 -11101111110 49-vote 1 -11101111110 six-album 1 -11101111110 anti-Tower 1 -11101111110 five-ring 2 -11101111110 signature-gathering 2 -11101111110 ferro-cement 2 -11101111110 prenomination 2 -11101111110 gay-student 2 -11101111110 proctors 2 -11101111110 more-familiar 2 -11101111110 semi-independent 2 -11101111110 form-letter 2 -11101111110 land-bound 2 -11101111110 10-kilometer 2 -11101111110 president-general 2 -11101111110 extreme-left 2 -11101111110 French-Flemish 2 -11101111110 1,479 2 -11101111110 pre-specified 2 -11101111110 two-horse 2 -11101111110 Reaganaut 2 -11101111110 Republican-Democratic 2 -11101111110 bigtime 2 -11101111110 Senate-confirmed 2 -11101111110 first-ballot 2 -11101111110 sweatpants 2 -11101111110 British-run 2 -11101111110 Mabsorba 2 -11101111110 corporate-advertising 2 -11101111110 IHT 2 -11101111110 pro-liberalization 2 -11101111110 must-do 2 -11101111110 city-by-city 2 -11101111110 groupwide 2 -11101111110 no-issues 2 -11101111110 186-member 2 -11101111110 anti-generic 2 -11101111110 twice-amended 2 -11101111110 liquified 2 -11101111110 content-less 2 -11101111110 party-based 2 -11101111110 editorialpage 2 -11101111110 bond-issue 2 -11101111110 blood-stained 2 -11101111110 PLM-sponsored 2 -11101111110 bylined 2 -11101111110 sucessful 2 -11101111110 national-assembly 2 -11101111110 college-player 2 -11101111110 one-issue 2 -11101111110 anti-drugs 2 -11101111110 villification 2 -11101111110 post-Duvalier 2 -11101111110 productivity-improvement 2 -11101111110 president/chief 2 -11101111110 Congress-only 2 -11101111110 Mondale-Ferraro 2 -11101111110 Southern-dominated 2 -11101111110 40,000-word 2 -11101111110 sub-compact 2 -11101111110 dirty-tricks 2 -11101111110 fraud-ridden 2 -11101111110 two-level 2 -11101111110 TV-ad 2 -11101111110 Trumanesque 2 -11101111110 tear-jerking 2 -11101111110 collective-liability 3 -11101111110 union-representation 3 -11101111110 French-government 3 -11101111110 oft-mentioned 3 -11101111110 end-of-ideology 3 -11101111110 anti-rightist 3 -11101111110 20,000-word 3 -11101111110 slickest 3 -11101111110 hydraulically 3 -11101111110 now-common 3 -11101111110 six-day-a-week 3 -11101111110 metaphoric 3 -11101111110 anti-palm 3 -11101111110 growth-fund 3 -11101111110 1,788-room 3 -11101111110 secret-ballot 3 -11101111110 four-candidate 3 -11101111110 president-human 3 -11101111110 company-subsidized 3 -11101111110 heart-tugging 3 -11101111110 op-ed-page 3 -11101111110 Procrustean 3 -11101111110 Arts-page 3 -11101111110 10-meter 3 -11101111110 30,000-word 3 -11101111110 international-page 3 -11101111110 clean-government 4 -11101111110 two-round 4 -11101111110 state-assembly 4 -11101111110 10-nation 4 -11101111110 one-candidate 4 -11101111110 candidate-centered 4 -11101111110 anti-leftist 4 -11101111110 anti-pesticide 4 -11101111110 million-ton-a-year 4 -11101111110 presidental 4 -11101111110 Millrose 4 -11101111110 antiapartheid 4 -11101111110 fire-engine 4 -11101111110 Sark 5 -11101111110 picaresque 5 -11101111110 anti-Stalin 5 -11101111110 .357 5 -11101111110 4-megabit 5 -11101111110 Senegalese 5 -11101111110 best-qualified 5 -11101111110 dog-sled 6 -11101111110 .357-caliber 6 -11101111110 1/2-mile 6 -11101111110 public-education 6 -11101111110 10-inch 6 -11101111110 three-state 6 -11101111110 presidential-election 6 -11101111110 yet-to-be 6 -11101111110 Sovietskaya 6 -11101111110 now-familiar 7 -11101111110 Dukakis-Bush 7 -11101111110 favorite-son 7 -11101111110 high-rent 8 -11101111110 four-way 8 -11101111110 Sovetskaya 8 -11101111110 quiet-crisis 8 -11101111110 dark-horse 9 -11101111110 Pyrrhic 9 -11101111110 write-in 9 -11101111110 presumptive 10 -11101111110 multicandidate 10 -11101111110 Prosorba 10 -11101111110 back-page 11 -11101111110 mid-term 12 -11101111110 fungus-produced 12 -11101111110 presidentially 12 -11101111110 Bush-Dukakis 13 -11101111110 lower-house 14 -11101111110 anti-alcohol 14 -11101111110 Oscar-winning 14 -11101111110 general-election 15 -11101111110 magnetically 16 -11101111110 socalled 16 -11101111110 upper-house 17 -11101111110 letter-writing 18 -11101111110 soon-to-be 21 -11101111110 law-review 21 -11101111110 whites-only 23 -11101111110 cross-market 25 -11101111110 midterm 26 -11101111110 second-front 28 -11101111110 quadrennial 34 -11101111110 second-front-page 35 -11101111110 Prize-winning 42 -11101111110 senatorial 43 -11101111110 congressionally 46 -11101111110 doctoral 47 -11101111110 multiparty 52 -11101111110 vice-presidential 58 -11101111110 mayoral 58 -11101111110 democratically 60 -11101111110 gubernatorial 111 -11101111110 nominating 115 -11101111110 page-one 162 -11101111110 front-page 251 -11101111110 editorial-page 279 -11101111110 genetically 282 -11101111110 parliamentary 615 -11101111110 federally 707 -11101111110 newly 2493 -11101111110 so-called 3288 -11101111110 presidential 4506 -11101111111 3,966 1 -11101111111 Hydrocare 1 -11101111111 copper-tipped 1 -11101111111 still-limited 1 -11101111111 lower-taxed 1 -11101111111 stakeless 1 -11101111111 2.1-billion-bushel 1 -11101111111 six-level 1 -11101111111 rabbinical-school 1 -11101111111 regional-edition 1 -11101111111 small-airline 1 -11101111111 CBS-designed 1 -11101111111 AT/339 1 -11101111111 high-poverty 1 -11101111111 downtown-oriented 1 -11101111111 3/260 1 -11101111111 re-engined 1 -11101111111 medium-small 1 -11101111111 OB 1 -11101111111 FAULTS 1 -11101111111 dough-based 1 -11101111111 veil-less 1 -11101111111 salami-shaped 1 -11101111111 Invicta 1 -11101111111 cross-claim 1 -11101111111 presweetened 1 -11101111111 reactor-operator 1 -11101111111 SoftSoap 1 -11101111111 purgatorial 1 -11101111111 Activitrax 1 -11101111111 six-foot-by-six-foot 1 -11101111111 MATERNAL 1 -11101111111 Four-month 1 -11101111111 NEEDN 1 -11101111111 speech-controlled 1 -11101111111 pre-moistened 1 -11101111111 ceramic-tiled 1 -11101111111 single-entry 1 -11101111111 Iran-sponsored 1 -11101111111 vehicle-weight 1 -11101111111 lithium-magnesium 1 -11101111111 Japanese-dominated 1 -11101111111 TOWNS 1 -11101111111 Solt-Wolper 1 -11101111111 lipid-regulation 1 -11101111111 bow-hunter 1 -11101111111 warranty-based 1 -11101111111 finger-scanning 1 -11101111111 PLUNDERED 1 -11101111111 departmentstore 1 -11101111111 disposable-diaper 1 -11101111111 jet-pilot 1 -11101111111 Hershey-name 1 -11101111111 Ford-Nissan 1 -11101111111 444-foot 1 -11101111111 low-medium/high-minimum 1 -11101111111 garnet-red 1 -11101111111 job-specific 1 -11101111111 further-processed 1 -11101111111 Hetchery 1 -11101111111 E-4b 1 -11101111111 federal-worker 1 -11101111111 wound-dressing 1 -11101111111 Nok 1 -11101111111 Boesky-era 1 -11101111111 10-inch-tall 1 -11101111111 PACEMAKERS 1 -11101111111 team-work 1 -11101111111 20-degree 1 -11101111111 4,582 1 -11101111111 T-6 1 -11101111111 Pengaton 1 -11101111111 4,576 1 -11101111111 record-related 1 -11101111111 death-protection 1 -11101111111 Soviet-fueled 1 -11101111111 simulator-based 1 -11101111111 R-25 1 -11101111111 too-generous 1 -11101111111 internatinal 1 -11101111111 usage-sensitive 1 -11101111111 seat-by-seat 1 -11101111111 oil-investment 1 -11101111111 Vitamaster 1 -11101111111 sonar-system 1 -11101111111 historic-building 1 -11101111111 better-conceived 1 -11101111111 Fidelity-Monarch 1 -11101111111 steel-and-concrete 1 -11101111111 ball-like 1 -11101111111 Wittgensteinian 1 -11101111111 charcoal-filtered 1 -11101111111 blown-insulation 1 -11101111111 insulation-fiber 1 -11101111111 wet-suit 1 -11101111111 Allez 1 -11101111111 SELTZERS 1 -11101111111 limitededition 1 -11101111111 valuated 1 -11101111111 pseudo-Italian 1 -11101111111 10-acres-per-lot 1 -11101111111 anti-snob 1 -11101111111 cigarette-substitute 1 -11101111111 Airship-Westinghouse 1 -11101111111 heat-transfer-fluid 1 -11101111111 Cramer-Krasselt 1 -11101111111 post-exposure 1 -11101111111 4Runner 1 -11101111111 revolution-mongering 1 -11101111111 double-entry 1 -11101111111 sunken-ship 1 -11101111111 jungle-warfare 1 -11101111111 vigororous 1 -11101111111 student-staffed 1 -11101111111 cotton-eating 1 -11101111111 offshore-based 1 -11101111111 cartoon-time 1 -11101111111 life-style-neutral 1 -11101111111 094-A 1 -11101111111 hidden-city 1 -11101111111 carefully-selected 1 -11101111111 lease-vs.-buy 1 -11101111111 patrol-dog 1 -11101111111 ET-type 1 -11101111111 sphincter-stimulus 1 -11101111111 Convention-era 1 -11101111111 refined-oil 1 -11101111111 capitation-fee 1 -11101111111 job-skills 1 -11101111111 mercury-vapor 1 -11101111111 Unicenter 1 -11101111111 East-bloc-style 1 -11101111111 550-car 1 -11101111111 multi-modal 1 -11101111111 anti-Kim 1 -11101111111 easiest-to-play 1 -11101111111 dual-skill 1 -11101111111 top-gun 1 -11101111111 mahogany-and-birch 1 -11101111111 anti-evolutionist 1 -11101111111 foreign-arms 1 -11101111111 once-tabled 1 -11101111111 blacks-only 1 -11101111111 soft-rubber 1 -11101111111 durational 1 -11101111111 iced-coffee 1 -11101111111 RESUMES 1 -11101111111 soon-to-be-succeeded 1 -11101111111 price-wage 1 -11101111111 42,810 1 -11101111111 Korean-U.S. 1 -11101111111 two-fish 1 -11101111111 video-game-like 1 -11101111111 powdered-tobacco 1 -11101111111 retail-newspaper 1 -11101111111 over-regulated 1 -11101111111 3090-F 1 -11101111111 expectational 1 -11101111111 computer-literacy 1 -11101111111 drug-education 1 -11101111111 newpaper 1 -11101111111 phosphate-fiber 1 -11101111111 lager-drinking 1 -11101111111 1966-1979 1 -11101111111 three-generation 1 -11101111111 funkier 1 -11101111111 CD4-based 1 -11101111111 muscle-meat 1 -11101111111 solid-muscle 1 -11101111111 race-driver 1 -11101111111 4,403 1 -11101111111 all-in-the-family 1 -11101111111 POSSIBILITIES 1 -11101111111 furniture-company 1 -11101111111 Deheisha 1 -11101111111 multivitamin 1 -11101111111 media-sensitive 1 -11101111111 samurai-tough 1 -11101111111 still-stronger 1 -11101111111 recession-oriented 1 -11101111111 Eggo 1 -11101111111 half-sunken 1 -11101111111 commuter-pilot 1 -11101111111 4,917,633 1 -11101111111 Brezhnev-style 1 -11101111111 image-obsessed 1 -11101111111 non-factory 1 -11101111111 four-step 1 -11101111111 trivia-game 1 -11101111111 now-convicted 1 -11101111111 RESTORER 1 -11101111111 driver-safety 1 -11101111111 mid-volume 1 -11101111111 Cholybar 1 -11101111111 macrophage 1 -11101111111 Novantrone 1 -11101111111 Asian-marketed 1 -11101111111 fixed-focus 1 -11101111111 convertible-only 1 -11101111111 housing-subsidy 1 -11101111111 Jackson/Robertson 1 -11101111111 Dukakis-Nunn 1 -11101111111 jeans-clad 1 -11101111111 90-foot-long 1 -11101111111 15,000-man 1 -11101111111 all-altitude 1 -11101111111 45-foot-high 1 -11101111111 tournament-program 1 -11101111111 mid-thirtyish 1 -11101111111 polyethyline 1 -11101111111 +32.6 1 -11101111111 longer-form 1 -11101111111 7.3-billion-bushel 1 -11101111111 1,875-square-foot 1 -11101111111 non-program 1 -11101111111 pale-blue 1 -11101111111 full-run 1 -11101111111 C202 1 -11101111111 biotechnology-derived 1 -11101111111 female-oriented 1 -11101111111 up-to-the-second 1 -11101111111 bombshell-and-Ferrari 1 -11101111111 slightly-modified 1 -11101111111 weapons-system 1 -11101111111 collar-white 1 -11101111111 quick-thinking 1 -11101111111 burning-hot 1 -11101111111 pride-of-ownership 1 -11101111111 vehicle-insurance 1 -11101111111 junkfund 1 -11101111111 white-powdered 1 -11101111111 pen-type 1 -11101111111 special-version 1 -11101111111 patient-interview 1 -11101111111 2,484 1 -11101111111 whole-egg 1 -11101111111 direct-sell 1 -11101111111 fill-in-the-blanks 1 -11101111111 U.N.-enforced 1 -11101111111 trading-based 1 -11101111111 MegaRay 1 -11101111111 agrotechnical 1 -11101111111 whodunnit-style 1 -11101111111 sweetest-tasting 1 -11101111111 Folonari 1 -11101111111 4,625 1 -11101111111 country-life 1 -11101111111 4,413,008 1 -11101111111 whey-based 1 -11101111111 ex-self-levitating 1 -11101111111 2,982 1 -11101111111 Truman-Barkley 1 -11101111111 reckless-driving 1 -11101111111 Microsoft/Ashton-Tate 1 -11101111111 GVX 1 -11101111111 most-exclusive 1 -11101111111 single-spokesman 1 -11101111111 expenive 1 -11101111111 drug-needle 1 -11101111111 1982-through-1985 1 -11101111111 4,641 1 -11101111111 balloonist 1 -11101111111 high-pocketed 1 -11101111111 six-hours-a-day 1 -11101111111 process-by-process 1 -11101111111 potty 1 -11101111111 biopesticide 1 -11101111111 4,633 1 -11101111111 trans-European 1 -11101111111 less-abrasive 1 -11101111111 ever-leaner 1 -11101111111 posturepedic 1 -11101111111 fairytale 2 -11101111111 airline-seat 2 -11101111111 preclusive 2 -11101111111 land-ownership 2 -11101111111 IIcx 2 -11101111111 gridlike 2 -11101111111 long-desired 2 -11101111111 five-level 2 -11101111111 child-oriented 2 -11101111111 high-fare 2 -11101111111 wholesale-market 2 -11101111111 Xomen 2 -11101111111 melanocyte-stimulating 2 -11101111111 casino-stock 2 -11101111111 passenger-train 2 -11101111111 486-based 2 -11101111111 property-poor 2 -11101111111 land-speculation 2 -11101111111 tri-level 2 -11101111111 seven-mile 2 -11101111111 4,655 2 -11101111111 hemp-like 2 -11101111111 4,640 2 -11101111111 4,594 2 -11101111111 spring-wheat 2 -11101111111 Zeitschrift 2 -11101111111 digestive-tract 2 -11101111111 better-for-you 2 -11101111111 once-laggard 2 -11101111111 Anzus 2 -11101111111 work-zone 2 -11101111111 consumer-sensitive 2 -11101111111 then-national 2 -11101111111 Zerex 2 -11101111111 blue-jeans 2 -11101111111 red-coated 2 -11101111111 well-proven 2 -11101111111 lower-than-planned 2 -11101111111 winter-spring 2 -11101111111 subsidiary-rights 2 -11101111111 plastic-cabinet 2 -11101111111 sudden-death 3 -11101111111 roller-derby 3 -11101111111 Norse 3 -11101111111 gonadotropin-releasing 3 -11101111111 42-foot 3 -11101111111 quit-smoking 3 -11101111111 anti-cigarette 3 -11101111111 military-supervised 3 -11101111111 preseason 3 -11101111111 crash-depressed 3 -11101111111 shark-infested 3 -11101111111 8700 3 -11101111111 coprocessing 3 -11101111111 steam-powered 3 -11101111111 five-minister 3 -11101111111 potholed 3 -11101111111 tag-team 4 -11101111111 seedling 4 -11101111111 market-linked 4 -11101111111 ex-national 4 -11101111111 bond-issuing 4 -11101111111 semiabstract 4 -11101111111 weight-reduction 4 -11101111111 stock-basket 4 -11101111111 trial-like 4 -11101111111 performance-measurement 5 -11101111111 six-course 5 -11101111111 fresh-air 5 -11101111111 quality-improvement 5 -11101111111 basal 6 -11101111111 pain-relief 6 -11101111111 wordless 6 -11101111111 decennial 7 -11101111111 Swiss-controlled 8 -11101111111 Dukakis-Bentsen 15 -11101111111 fig 21 -11101111111 national 11887 -11101111111 intrauterine 105 -11110000 non-Inkatha 1 -11110000 fuzzy-headed 1 -11110000 psychotically 1 -11110000 basic-training 1 -11110000 Ford-Carter 1 -11110000 residual-generating 1 -11110000 9:30-to-4 1 -11110000 oft-considered 1 -11110000 brain-enhancing 1 -11110000 U.J.A. 1 -11110000 433,503 1 -11110000 record-blasting 1 -11110000 fa-sol-la 1 -11110000 chintz-stuffed 1 -11110000 news-and-advertising 1 -11110000 18,170 1 -11110000 15th-18th 1 -11110000 5,867 1 -11110000 store-operated 1 -11110000 bare-bottomed 1 -11110000 mind-dulling 1 -11110000 beak-nosed 1 -11110000 higher-performing 1 -11110000 15-by-25-meter 1 -11110000 southward-moving 1 -11110000 18,270 1 -11110000 coupfollowing 1 -11110000 multiple-retirement 1 -11110000 space-stealing 1 -11110000 movie-buff 1 -11110000 jeans-wear 1 -11110000 time-emblematic 1 -11110000 55-hour 1 -11110000 out-of-religion 1 -11110000 bile-acid 1 -11110000 evening-news 1 -11110000 benzedrine 1 -11110000 aluminum-foil 1 -11110000 broker-linked 1 -11110000 half-moon 1 -11110000 26,610 1 -11110000 1,817,697 1 -11110000 disinfesting 1 -11110000 236,192 1 -11110000 2,564 1 -11110000 non-degree 1 -11110000 arm-weary 1 -11110000 sometimes-arcane 1 -11110000 post-baby-boom 1 -11110000 lofty-minded 1 -11110000 hen-pecked 1 -11110000 fastballing 1 -11110000 2,268,000 1 -11110000 10th-sized 1 -11110000 blow-'em-up-and-let-the-pieces-fall 1 -11110000 five-and-one-half 1 -11110000 hobby-oriented 1 -11110000 reupholstered 1 -11110000 self-proliferating 1 -11110000 paid-down 1 -11110000 puffyfaced 1 -11110000 high-rate-paying 1 -11110000 2,977 1 -11110000 17,419 1 -11110000 Bedside 1 -11110000 language-minority 1 -11110000 17th-20th 1 -11110000 insured-white 1 -11110000 last-hurrah 1 -11110000 modest-priced 1 -11110000 17,987 1 -11110000 three-candidate 1 -11110000 cash-squeezing 1 -11110000 bat-eared 1 -11110000 open-checkbook 1 -11110000 10,820 1 -11110000 ice-collection 1 -11110000 hard-faced 1 -11110000 multiple-paged 1 -11110000 paid-subscriber 1 -11110000 29,323,000 1 -11110000 two-bout 1 -11110000 once-doomed 1 -11110000 watch-your-car 1 -11110000 142-seat 1 -11110000 evil-but-cute 1 -11110000 self-glorified 1 -11110000 guillotine-like 1 -11110000 twilight-zone 1 -11110000 split-day 1 -11110000 1,797 1 -11110000 Ford-Kissinger 1 -11110000 3,772,000 1 -11110000 side-hill 1 -11110000 pro-vulgarity 1 -11110000 often-risky 1 -11110000 So-Ho 1 -11110000 blownup 1 -11110000 3,154 1 -11110000 special-category 1 -11110000 post-storm 1 -11110000 3,037 2 -11110000 not-so-tough 2 -11110000 ferocious-looking 2 -11110000 61,200 2 -11110000 lowest-risk 2 -11110000 firework 2 -11110000 respectable-looking 2 -11110000 radio-equipped 2 -11110000 pie-shaped 2 -11110000 empty-shelved 2 -11110000 two-and-one-half 2 -11110000 low-fertility 2 -11110000 made-to-measure 2 -11110000 20-or-so 2 -11110000 2,148 2 -11110000 white-jacketed 2 -11110000 6,298 2 -11110000 1,204 2 -11110000 group-therapy 2 -11110000 2,748 2 -11110000 emotion-packed 2 -11110000 less-known 2 -11110000 italicized 2 -11110000 budget-drafting 2 -11110000 higher-tax 2 -11110000 commercial-minded 2 -11110000 2,392 2 -11110000 post-War 2 -11110000 non-Aryan 2 -11110000 three-plus 2 -11110000 JAS-39 2 -11110000 7,920,000 2 -11110000 30-or-so 2 -11110000 more-mature 2 -11110000 100-odd 2 -11110000 South-Central 3 -11110000 uncountable 3 -11110000 thirty-seven 3 -11110000 non-industry 3 -11110000 family-founded 3 -11110000 magma 3 -11110000 highest-risk 3 -11110000 big-buck 3 -11110000 inflammable 3 -11110000 1,501 3 -11110000 Byelorussian 4 -11110000 scratch-off 4 -11110000 snow-capped 4 -11110000 zero-gravity 4 -11110000 non-English-speaking 4 -11110000 oil-boom 4 -11110000 2,064 5 -11110000 five-and-a-half 5 -11110000 sixty 5 -11110000 randy 5 -11110000 predawn 6 -11110000 2,002 6 -11110000 17,800 6 -11110000 80-hour 6 -11110000 Kennedy-Johnson 6 -11110000 20-odd 6 -11110000 1,156 7 -11110000 30-odd 7 -11110000 better-off 8 -11110000 200-plus 10 -11110000 high-inflation 10 -11110000 half-a-dozen 11 -11110000 two-dozen 13 -11110000 two 47531 -11110000 fifty 16 -111100010 gold-hoarders 1 -111100010 10-to-20 1 -111100010 13-to-25 1 -111100010 thirty-one 1 -111100010 Spanish-colonial 1 -111100010 10,260 1 -111100010 anti-sex 1 -111100010 high-mortgage-rate 1 -111100010 not-so-innocent 1 -111100010 5-feet-6 1 -111100010 70- 1 -111100010 25-plus 1 -111100010 tenderizing 1 -111100010 some-of-the 1 -111100010 2,316 1 -111100010 penetrable 1 -111100010 chew-the-fat 1 -111100010 better-ventilated 1 -111100010 citizens-band 1 -111100010 34,050 1 -111100010 three-and-half 1 -111100010 McFour 1 -111100010 kitchenless 1 -111100010 seventy-five 1 -111100010 61.76 1 -111100010 1940s-style 1 -111100010 drawstring 1 -111100010 19.43 1 -111100010 8,234 1 -111100010 256-Ks 1 -111100010 fridges 1 -111100010 27.43 1 -111100010 superblocs 1 -111100010 25.67 1 -111100010 steel-framed 1 -111100010 dirt-floored 2 -111100010 68,300 2 -111100010 five-plus 2 -111100010 nonelection 2 -111100010 1,631 2 -111100010 25-54 2 -111100010 1,835 2 -111100010 32,750 2 -111100010 2,185 2 -111100010 2,663 2 -111100010 smoggiest 2 -111100010 51.39 2 -111100010 low-flow 2 -111100010 eighteen 3 -111100010 2,500,000 3 -111100010 one-and-a-half 4 -111100010 1,532 4 -111100010 1,046 4 -111100010 1,388 4 -111100010 six-and-a-half 5 -111100010 301,000 5 -111100010 thirteen 5 -111100010 Sis 5 -111100010 1,364 5 -111100010 non-peak 6 -111100010 1,048 6 -111100010 50-odd 7 -111100010 30-plus 7 -111100010 1,185 7 -111100010 40-odd 8 -111100010 fifteen 9 -111100010 1,500,000 9 -111100010 three-and-a-half 12 -111100010 thirty 13 -111100010 twenty 15 -111100010 two-and-a-half 24 -111100010 ten 140 -111100010 three 24821 -111100010 five 13692 -111100010 four 13121 -111100010 eight 5123 -111100010 seven 5464 -111100011 SFr100 1 -111100011 six-to-12 1 -111100011 longer-life 1 -111100011 stock-values 1 -111100011 storm-skiing 1 -111100011 10,443 1 -111100011 hard-glazed 1 -111100011 all-home 1 -111100011 hard-currency-earning 1 -111100011 7,312 1 -111100011 seven-fifteenths 1 -111100011 president-ending 1 -111100011 12-24 1 -111100011 83.00 1 -111100011 ad-budget 1 -111100011 7.45-7.50 1 -111100011 multiple-event 1 -111100011 12-18 1 -111100011 2,374 1 -111100011 cartoon-character 1 -111100011 6,877.50 1 -111100011 estranging 1 -111100011 8,085 1 -111100011 human-heart 1 -111100011 downs-only 1 -111100011 80-U.S. 1 -111100011 6,877.5 1 -111100011 pressure-filled 1 -111100011 first-six 1 -111100011 human-leukocyte-derived 1 -111100011 221,231 2 -111100011 NABE 2 -111100011 Turkish-made 2 -111100011 1,605 2 -111100011 1,504 2 -111100011 Osake 4 -111100011 first-eight 4 -111100011 four-and-a-half 5 -111100011 eights 7 -111100011 eleven 23 -111100011 twelve 25 -111100011 nine 5464 -111100011 six 11359 -11110010 supersuccessful 1 -11110010 couple-three 1 -11110010 ferrofluid-film 1 -11110010 full-paying 1 -11110010 eighty-one 1 -11110010 firelit 1 -11110010 byline-less 1 -11110010 go-with-the-flow 1 -11110010 export-liberalizing 1 -11110010 image-wrenching 1 -11110010 designated-risk 1 -11110010 Contra-ry 1 -11110010 nine-season 1 -11110010 pretention 1 -11110010 still-unnamed 1 -11110010 mini-CABs 1 -11110010 jealous-sounding 1 -11110010 gr-reat 1 -11110010 half-concealed 1 -11110010 14-inch-long 1 -11110010 month-two 1 -11110010 white-smocked 1 -11110010 triagic 1 -11110010 generous-spirited 1 -11110010 technical-trade 1 -11110010 law-group 1 -11110010 fall-winter 1 -11110010 Lorimar-MGM 1 -11110010 1.4-carat 1 -11110010 value-enhancement 1 -11110010 DEAF 1 -11110010 skin-disease 1 -11110010 --to 1 -11110010 one-hit 1 -11110010 ambidextrous 1 -11110010 still-resistant 1 -11110010 carbohydrate-rich 1 -11110010 wide-release 1 -11110010 bow-hunting 1 -11110010 five-to-eight 1 -11110010 trespassing-on-government-property 1 -11110010 GE-sponsored 1 -11110010 flak-jacketed 1 -11110010 150-milliliter 1 -11110010 quarter-billion 1 -11110010 final-inning 1 -11110010 semi-punk 1 -11110010 pork-packer 1 -11110010 supermarketing 1 -11110010 DARK 1 -11110010 fire-eating 1 -11110010 MTV-ified 1 -11110010 jillion 1 -11110010 SLICK 1 -11110010 hard-learned 1 -11110010 century-style 1 -11110010 HCA-owned 1 -11110010 not-too-small 1 -11110010 collosal 1 -11110010 three-four 1 -11110010 Rachmaninoffian 1 -11110010 kingfisher 1 -11110010 Edelman-controlled 1 -11110010 crop-growing 1 -11110010 Shenzhen-based 1 -11110010 non-finance 1 -11110010 hawk-manque 1 -11110010 non-Fed 1 -11110010 non-generic 1 -11110010 PRIEST 1 -11110010 13-inch-wide 1 -11110010 semi-open 1 -11110010 phobic 1 -11110010 computer-connected 1 -11110010 Taj-related 1 -11110010 counter-offensive 1 -11110010 five-city 1 -11110010 union-inspired 1 -11110010 20-feet-high 1 -11110010 Democratic-oriented 1 -11110010 China-investment 1 -11110010 late-middle-age 1 -11110010 misadventuring 1 -11110010 hammerhead 1 -11110010 rocket-related 1 -11110010 310-300 1 -11110010 month.The 1 -11110010 computer-savvy 1 -11110010 election-free 1 -11110010 plant-derived 1 -11110010 brillant 1 -11110010 fund-related 1 -11110010 Barbados-born 1 -11110010 debt-riddled 1 -11110010 California-perfect 1 -11110010 not-so-loving 1 -11110010 trading-fraud 1 -11110010 non-adjacent 1 -11110010 letter-sized 1 -11110010 ten-foot 1 -11110010 crinoline 1 -11110010 43-YEAR-OLD 1 -11110010 as-yet-untold 1 -11110010 zingy 2 -11110010 dad-gum 2 -11110010 improved-definition 2 -11110010 loose-lipped 2 -11110010 half-trillion 2 -11110010 5,375,000 2 -11110010 Venir 2 -11110010 Dum 2 -11110010 dozen-odd 2 -11110010 20-plus 2 -11110010 plus-.500 3 -11110010 scrofulous 3 -11110010 5.25-inch 3 -11110010 5,000-pound 4 -11110010 50ish 4 -11110010 Bonn-based 4 -11110010 bioethical 5 -11110010 Amaru 5 -11110010 zillion 10 -11110010 quarter-million 11 -11110010 half-million 44 -11110010 half-dozen 256 -11110010 thousand 655 -11110010 hundred 864 -11110010 few 14641 -11110010 dozen 1791 -111100110 job-level 1 -111100110 candy-munching 1 -111100110 Dow-commissioned 1 -111100110 702-person 1 -111100110 pre-Fed 1 -111100110 over-air-conditioned 1 -111100110 1924-53 1 -111100110 plant-level 1 -111100110 political-related 1 -111100110 147-patient 1 -111100110 wood-and-steel 1 -111100110 pre-breakup 1 -111100110 post-enumeration 1 -111100110 on-the-move 1 -111100110 50-city 1 -111100110 heartstopping 1 -111100110 protective-order 1 -111100110 62,000-household 1 -111100110 bed-related 1 -111100110 voting-related 1 -111100110 long-departed 1 -111100110 sports-book 1 -111100110 terrorist-linked 1 -111100110 pre-FDA 1 -111100110 often-reported 1 -111100110 dead-ball 1 -111100110 29-patient 1 -111100110 nosmoking 1 -111100110 fun-money 1 -111100110 1,163 1 -111100110 9,132 1 -111100110 Reagan-ordered 1 -111100110 animated-adventure 1 -111100110 coercive-type 1 -111100110 race-discrimination 1 -111100110 won-loss 1 -111100110 board-commissioned 1 -111100110 pre-affluence 1 -111100110 ordinary-negligence 1 -111100110 four-month-per-exam 1 -111100110 retail-fund 1 -111100110 CIA-Pentagon 1 -111100110 business-travel 1 -111100110 regular-corporation 1 -111100110 less-noticeable 1 -111100110 unquiet 1 -111100110 black-Jewish 1 -111100110 PLAGUE 1 -111100110 Guthriesque 1 -111100110 pre-Marcos 1 -111100110 pro-utility 1 -111100110 Indian-claims 1 -111100110 brand-blind 1 -111100110 Calcutta-like 1 -111100110 deferred-policy 1 -111100110 1988-a 1 -111100110 record-volume 1 -111100110 mid-teen-age 1 -111100110 highinflation 1 -111100110 semi-carefree 1 -111100110 dark-windowed 1 -111100110 Disney-produced 1 -111100110 jouncy 1 -111100110 15-three 1 -111100110 CAREERS 1 -111100110 obsessive/compulsive 1 -111100110 palmier 1 -111100110 cerebrally 1 -111100110 financing-cost 1 -111100110 low-interest-paying 1 -111100110 topic-by-topic 1 -111100110 similiarly 1 -111100110 pre-maquila 1 -111100110 Shakespearian 1 -111100110 agriculture-policy 1 -111100110 limited-substitution 1 -111100110 griped-about 1 -111100110 176-point 1 -111100110 platform-drafting 1 -111100110 pre-Hart 1 -111100110 Venezuela-like 1 -111100110 near-archaic 1 -111100110 widely-seen 1 -111100110 pre-1956 1 -111100110 cycling-related 1 -111100110 one-book-a-week 1 -111100110 Easter-related 1 -111100110 premlinary 1 -111100110 non-class 1 -111100110 multimonth 1 -111100110 50-company 1 -111100110 political-office 1 -111100110 6,346 1 -111100110 already-arranged 1 -111100110 project-feasibility 1 -111100110 social-adjustment 1 -111100110 pro-Norman 1 -111100110 not-distant-enough 1 -111100110 corporate-settlement 1 -111100110 Soviet-Polish 1 -111100110 consumer-opinion 1 -111100110 hard-bound 1 -111100110 culture-bearing 1 -111100110 four-concert 1 -111100110 takeover-fueled 1 -111100110 doggiest 1 -111100110 158-patient 1 -111100110 non-drought 1 -111100110 25-patient 1 -111100110 common-law-marriage 1 -111100110 post-mortal 1 -111100110 615-point 1 -111100110 Marcos-related 1 -111100110 91,615 1 -111100110 Time-Yankelovich 1 -111100110 17-pence 1 -111100110 drought-damage 1 -111100110 seven-and-a-half 1 -111100110 light-therapy 1 -111100110 more-than-terrible 1 -111100110 port-merger 1 -111100110 news-spoof 1 -111100110 takeover-style 1 -111100110 barracks-style 1 -111100110 low-back-pain 1 -111100110 latecycle 1 -111100110 post-1960 1 -111100110 tes-score 1 -111100110 less-bullish 1 -111100110 BMW-3 1 -111100110 micro-economic 1 -111100110 eight-and-a-half 1 -111100110 Compaq2 1 -111100110 25-city 2 -111100110 USDA-sponsored 2 -111100110 U.S.-Syrian 2 -111100110 600-million-share 2 -111100110 20.62-point 2 -111100110 air-traffic-controller 2 -111100110 real-sector 2 -111100110 luxuriantly 2 -111100110 more-sober 2 -111100110 preconvention 2 -111100110 when-did-you-stop-beating-your-wife 2 -111100110 post-1975 2 -111100110 half-inch-high 2 -111100110 month-ago 2 -111100110 20-game 2 -111100110 long-married 2 -111100110 bi-annual 2 -111100110 council-sanctioned 2 -111100110 JT8D-200 2 -111100110 couch-potato 2 -111100110 silver-trading 2 -111100110 cash-conserving 2 -111100110 often-heard 2 -111100110 Hearstian 2 -111100110 product-quality 2 -111100110 category-three 2 -111100110 late-1985 2 -111100110 3,000-year 2 -111100110 26-game 2 -111100110 olden 3 -111100110 121-point 3 -111100110 pre-communist 3 -111100110 sun-filled 3 -111100110 high-riding 3 -111100110 euphemistic 3 -111100110 18-man 3 -111100110 early-October 3 -111100110 17-hour 3 -111100110 1,200-person 3 -111100110 local-level 3 -111100110 longneck 3 -111100110 book-length 3 -111100110 bite-size 3 -111100110 late-winter 4 -111100110 200-page 4 -111100110 trade-publication 4 -111100110 not-so-distant 4 -111100110 earnings-related 4 -111100110 AAAS 4 -111100110 pre-1966 5 -111100110 high-saving 5 -111100110 hotel-room 5 -111100110 long-predicted 5 -111100110 subzero 6 -111100110 government-commissioned 6 -111100110 Marplan 6 -111100110 strike-free 7 -111100110 late-morning 8 -111100110 60-65 8 -111100110 16-count 8 -111100110 bone-chilling 9 -111100110 13-hour 9 -111100110 15-hour 9 -111100110 16-hour 10 -111100110 halcyon 11 -111100110 14-hour 12 -111100110 U.N.-mediated 14 -111100110 70-hour 15 -111100110 election-day 15 -111100110 10-hour 15 -111100110 just-released 15 -111100110 soon-to-be-released 16 -111100110 pre-dawn 18 -111100110 sleepless 18 -111100110 formative 19 -111100110 bygone 22 -111100110 wee 40 -111100110 record-setting 44 -111100110 12-hour 45 -111100110 late-afternoon 46 -111100110 recent 19814 -111100110 subsequent 916 -111100111 321,067 1 -111100111 Spring-Summer 1 -111100111 october 1 -111100111 rockiest 1 -111100111 70-cents-a-unit 1 -111100111 bunkered 1 -111100111 Ethnography. 1 -111100111 20,000-copy 1 -111100111 146-page 1 -111100111 calender 1 -111100111 best-of-three 1 -111100111 giggle-a-minute 1 -111100111 24-cents-a-share 1 -111100111 fully-equipped 1 -111100111 power-hitting 1 -111100111 vines/lived 1 -111100111 technologies.In 1 -111100111 descriptor 1 -111100111 now-complete 1 -111100111 Marcos-rigged 1 -111100111 35-cents-a-share 1 -111100111 1986.That 1 -111100111 33-cent-a-share 1 -111100111 3,970,000 1 -111100111 74-cent-a-share 1 -111100111 42-cent 1 -111100111 fisal 1 -111100111 death-by-glancing-blows 1 -111100111 economic-deregulation 1 -111100111 late-20th 1 -111100111 22,560 1 -111100111 FY 1 -111100111 39-cents-a-share 1 -111100111 Auteroche. 1 -111100111 bordering-on-anarchy 1 -111100111 400,000-copy 1 -111100111 Mitsubishi-built 1 -111100111 about-to-be-published 1 -111100111 recession/deflation 1 -111100111 Midler-Disney 1 -111100111 9.5-cent-a-share 1 -111100111 three-millimeter 1 -111100111 200-year-long 1 -111100111 September-November 1 -111100111 autarchic 1 -111100111 much-rumored 1 -111100111 nickel-a-share 1 -111100111 rate-tightening 1 -111100111 dots. 1 -111100111 five-cents-a-share 1 -111100111 Pakistani-Afghan 1 -111100111 debt-solution 1 -111100111 monopsonistic 1 -111100111 scandal-marred 1 -111100111 multilateralism. 1 -111100111 Matisse. 1 -111100111 water-tax 1 -111100111 dark-gray 1 -111100111 Sommerfest 1 -111100111 two-to-five 1 -111100111 victimizes 1 -111100111 1,000-store 1 -111100111 Tradicional 1 -111100111 nonpornographic 1 -111100111 safety-first 1 -111100111 firm-dollar 1 -111100111 42-cents-a-share 1 -111100111 fiscasl 1 -111100111 uncaptured 1 -111100111 Janury 1 -111100111 Taiwan-funded 1 -111100111 seven-run 2 -111100111 211th 2 -111100111 turn-of-the 2 -111100111 late-19th 2 -111100111 10-cents-a-share 2 -111100111 Olympics/election 2 -111100111 9. 2 -111100111 Kamerlingh 2 -111100111 deficit-plagued 2 -111100111 overcollected 2 -111100111 75-cent-a-share 3 -111100111 nineteenth 3 -111100111 97.5-cent 3 -111100111 Olympics-election 3 -111100111 January-June 3 -111100111 non-election 3 -111100111 14-week 4 -111100111 October-December 16 -111100111 fiscal 11269 -111100111 centennial 105 -11110100 military-terrorist 1 -11110100 side-stepped 1 -11110100 agricultural-laborer 1 -11110100 scheduled-items 1 -11110100 semi-privatized 1 -11110100 firebomb-throwing 1 -11110100 post-press 1 -11110100 ill-adapted 1 -11110100 mispronounced 1 -11110100 takeover-protection 1 -11110100 Sesotho 1 -11110100 extra-effort 1 -11110100 plasticrelated 1 -11110100 health-giving 1 -11110100 mural-sized 1 -11110100 brushless 1 -11110100 baton-wielding 1 -11110100 pseudo-illnesses 1 -11110100 selection-type 1 -11110100 fashion-plate 1 -11110100 3,862 1 -11110100 boardmeeting 1 -11110100 ex-Howden 1 -11110100 button-sized 1 -11110100 noncancelable 1 -11110100 patronage-conscious 1 -11110100 jet-assisted 1 -11110100 Capulet 1 -11110100 1.5536 1 -11110100 Ranneau 1 -11110100 voter-fraud 1 -11110100 tax-effective 1 -11110100 VPPI 1 -11110100 undertaxing 1 -11110100 blue-suede-shoe 1 -11110100 out-of-office 1 -11110100 price-tempering 1 -11110100 executive-class 1 -11110100 JanSport 1 -11110100 soonest-maturing 1 -11110100 Camalox 1 -11110100 loans-in-progress 1 -11110100 bribe-seeking 1 -11110100 A-l 1 -11110100 becomingly 1 -11110100 heavy-walled 1 -11110100 abesnt-minded 1 -11110100 dacron 1 -11110100 commodity-using 1 -11110100 statusconscious 1 -11110100 loud-talking 1 -11110100 not-so-entertaining 1 -11110100 poster-receipt 1 -11110100 adulatory 1 -11110100 accordion-flavored 1 -11110100 once-orchidaceous 1 -11110100 work-assignment 1 -11110100 Eurokroner 1 -11110100 hand-surgery 1 -11110100 personal-exemption 1 -11110100 landbased 1 -11110100 no-fun 1 -11110100 fax-directory 1 -11110100 non-felony 1 -11110100 telephone-directory 1 -11110100 revenue-starved 1 -11110100 LXI-brand 1 -11110100 jerkiest 1 -11110100 mid-priced-clone 1 -11110100 graphics-related 1 -11110100 delaying-type 1 -11110100 company-designated 1 -11110100 precision/production 1 -11110100 legitimate-seeming 1 -11110100 complaint-free 1 -11110100 small-blood-vessel 1 -11110100 quick-freezes 1 -11110100 first-birthday 1 -11110100 work-rules 1 -11110100 less-industrialized 1 -11110100 Spirolox 1 -11110100 money-fixated 1 -11110100 heart-warming 1 -11110100 non-salty 1 -11110100 secondand 1 -11110100 Power-Circuit 1 -11110100 chigger 1 -11110100 not-so-common 1 -11110100 Moba 1 -11110100 low-resistance 1 -11110100 NIH-related 1 -11110100 stationwagon 1 -11110100 near-retirement 1 -11110100 super-efficient 1 -11110100 Eskimo-rights 1 -11110100 mirgration 1 -11110100 nononsense 1 -11110100 business-hungry 1 -11110100 religious-order 1 -11110100 less-considered 1 -11110100 Butter-Nut 1 -11110100 fish-market 1 -11110100 spacewalking 1 -11110100 Otoe-Missouria 1 -11110100 copper-related 1 -11110100 two-to-10-store 1 -11110100 creepy-crawly 1 -11110100 freshly-grilled 1 -11110100 right-side-up 1 -11110100 non-special-interest 1 -11110100 expenditure-oriented 1 -11110100 arrowleaf 1 -11110100 presentday 1 -11110100 thousand-and-one 1 -11110100 stability-minded 1 -11110100 gate-rental 1 -11110100 Marielito 1 -11110100 door-trim 1 -11110100 T-64 1 -11110100 store-display 1 -11110100 drinking-related 1 -11110100 -armed 1 -11110100 recombining 1 -11110100 not-so-major 1 -11110100 no-tech 1 -11110100 multimember 1 -11110100 capital-importing 1 -11110100 texturally 1 -11110100 Rynite 1 -11110100 Rust-Bowl 1 -11110100 GOP-leaning 1 -11110100 tennis-related 1 -11110100 Farsi-speaking 1 -11110100 fuzzy-looking 1 -11110100 lower-caste 1 -11110100 mid-southern 1 -11110100 high-incidence 1 -11110100 non-tourism 1 -11110100 minority-member 1 -11110100 computer-dealership 1 -11110100 frontseat 1 -11110100 unpowered 1 -11110100 auto-hauling 1 -11110100 super-tech 1 -11110100 slicked-over 1 -11110100 shortenings 1 -11110100 retirement-system 1 -11110100 stock-owning 1 -11110100 angry-eyed 1 -11110100 bottom-dwelling 1 -11110100 foresightful 1 -11110100 nontravel 1 -11110100 FAA-required 1 -11110100 beer-and-pretzel 1 -11110100 brigade-sized 1 -11110100 1,224 1 -11110100 afterschool 1 -11110100 2,956 1 -11110100 aspirin-containing 1 -11110100 volume-ballooning 1 -11110100 passenger-bus 1 -11110100 gift-with-purchase 1 -11110100 Solidarity-unionist 1 -11110100 original-cast 1 -11110100 southcentral 1 -11110100 Willistic 1 -11110100 achievement-level 1 -11110100 non-Comecon 1 -11110100 Ripon-type 1 -11110100 weapon-systems 1 -11110100 business-consultation 1 -11110100 Basilicata 1 -11110100 livestock-growing 1 -11110100 foreign-exchange-earning 1 -11110100 multilaterial 1 -11110100 power-plant-production 1 -11110100 heavily-leveraged 1 -11110100 hypochlorite 1 -11110100 3-ounce 1 -11110100 fiddle-driven 1 -11110100 Shantung 1 -11110100 bowling-alley 1 -11110100 government-restricted 1 -11110100 re-enacts 1 -11110100 weeks.The 1 -11110100 kids-league 1 -11110100 personal-phone-call 1 -11110100 non-frosty 1 -11110100 gunking 1 -11110100 non-routine 1 -11110100 pre-colored 1 -11110100 most-loss-ridden 1 -11110100 most-appealing 1 -11110100 treasurable 1 -11110100 skinnylegged 1 -11110100 folk-dancing 1 -11110100 100-millimeter 1 -11110100 oilstate 1 -11110100 meat-plant 1 -11110100 free-enterprising 1 -11110100 tricep 1 -11110100 debt-guarantee 1 -11110100 white-uniformed 1 -11110100 cotton-exporting 1 -11110100 South-central 1 -11110100 Canadian-mining 1 -11110100 fast-action 1 -11110100 non-rental 1 -11110100 brown-bag 1 -11110100 vehicle-use-tax 1 -11110100 folk-dance 1 -11110100 other-nation 1 -11110100 family-tied 1 -11110100 one-design 1 -11110100 central-casting 1 -11110100 nonearnings 1 -11110100 drab-colored 1 -11110100 non-Tibetan 1 -11110100 high-turnout 1 -11110100 well-set 1 -11110100 life-enhancement 1 -11110100 super-congested 1 -11110100 sharp-leafed 1 -11110100 load-bearing 1 -11110100 less-than-altruistic 1 -11110100 29-lawyer 1 -11110100 weapons-exporting 1 -11110100 refined-sugar 1 -11110100 earliest-contest 1 -11110100 English-trained 1 -11110100 less-than-diffident 1 -11110100 mass-psychology 1 -11110100 single-A-2-rated 1 -11110100 non-familial 1 -11110100 Christian-right 1 -11110100 adoption-assistance 1 -11110100 aluminum-worker 1 -11110100 airline-management 1 -11110100 Nixon-Humphrey 1 -11110100 8888 1 -11110100 fired-on 1 -11110100 horizontal-restraints 1 -11110100 crash-scarred 1 -11110100 over-rewarding 1 -11110100 small-to-medium-size 1 -11110100 cow-calf 1 -11110100 machine-sale 1 -11110100 Taitham-Laird 1 -11110100 murder-for-insurance 1 -11110100 mosquito-control 1 -11110100 un-toilet-trained 1 -11110100 expedites 1 -11110100 party-giving 1 -11110100 volume-inflating 1 -11110100 Kingsford 1 -11110100 Kootenai 1 -11110100 precipitation-free 1 -11110100 California-licensed 1 -11110100 Mexican-government 1 -11110100 special-relief 1 -11110100 anti-Khomenei 1 -11110100 plastics-processing 1 -11110100 re-oils 1 -11110100 Arickara 1 -11110100 five-foot-wide 1 -11110100 international-grocery 1 -11110100 college-station 1 -11110100 familiar-looking 2 -11110100 multi-line 2 -11110100 Visigoth 2 -11110100 gun-related 2 -11110100 graphics-processing 2 -11110100 bridge-construction 2 -11110100 Tarasoff-type 2 -11110100 exchange-house 2 -11110100 Mosel 2 -11110100 rec-room 2 -11110100 job-preservation 2 -11110100 blue-pen 2 -11110100 unequally 2 -11110100 one-tenth-ounce 2 -11110100 cost-sensitive 2 -11110100 debt-strapped 2 -11110100 non-capitalist 2 -11110100 movie-industry 2 -11110100 dingbat 2 -11110100 plant-growth 2 -11110100 congenitally 2 -11110100 1.593 2 -11110100 Minarco 2 -11110100 nonsectarian 2 -11110100 pension-benefit 2 -11110100 suspicious-looking 2 -11110100 prison-reform 2 -11110100 soft-shell 2 -11110100 Brahma 2 -11110100 inflation-fearing 2 -11110100 semp 2 -11110100 worst-run 2 -11110100 semi-rural 2 -11110100 nature-loving 2 -11110100 compact-disc-quality 2 -11110100 sweat-equity 2 -11110100 non-degreed 2 -11110100 U.S.-traded 2 -11110100 self-designated 2 -11110100 crude-short 2 -11110100 rock-ribbed 2 -11110100 taxiing-out 2 -11110100 ADM-related 2 -11110100 newish 2 -11110100 undertrained 2 -11110100 16,662 2 -11110100 silverplated 2 -11110100 unencoded 2 -11110100 2,118 2 -11110100 hai 2 -11110100 self-anointed 2 -11110100 strong-demand 2 -11110100 trend-seeking 2 -11110100 1,261 2 -11110100 price-swing 2 -11110100 as-yet-unexplained 2 -11110100 weight-gain 2 -11110100 nonstatistical 2 -11110100 13,820 2 -11110100 Mase 2 -11110100 DoD 2 -11110100 ophthalmalogic 2 -11110100 bloodstained 2 -11110100 product-origination 2 -11110100 nonofficial 2 -11110100 lethal-looking 2 -11110100 peristaltic 2 -11110100 low-VAT 2 -11110100 fuel-adjustment 2 -11110100 already-soft 3 -11110100 high-debt 3 -11110100 cement-distribution 3 -11110100 biomorphic 3 -11110100 less-glamorous 3 -11110100 chancier 3 -11110100 non-health 3 -11110100 Asian-based 3 -11110100 gold-producing 3 -11110100 frat 3 -11110100 drug-linked 3 -11110100 twiggy 3 -11110100 Dyson-Kissner 3 -11110100 Giuseppi 3 -11110100 freedom-of-religion 3 -11110100 brainless 3 -11110100 less-populated 3 -11110100 credit-union 3 -11110100 work-at-home 3 -11110100 Swiss-made 3 -11110100 non-price 3 -11110100 likeminded 3 -11110100 network-news 3 -11110100 fee-hungry 3 -11110100 lowcost 3 -11110100 symptomless 4 -11110100 wide-flange 4 -11110100 different-sized 4 -11110100 high-unemployment 4 -11110100 renewable-energy 4 -11110100 otheir 4 -11110100 under-served 4 -11110100 unlined 4 -11110100 college-student 4 -11110100 ex-military 4 -11110100 less-successful 4 -11110100 needier 4 -11110100 property-development 4 -11110100 state-backed 4 -11110100 Coptic 4 -11110100 sociopolitical 4 -11110100 small-to-medium-sized 4 -11110100 higher-wage 5 -11110100 child-development 5 -11110100 consumer-brand 5 -11110100 airport-terminal 5 -11110100 small-group 5 -11110100 Tigrean 6 -11110100 non-Arab 7 -11110100 import-sensitive 8 -11110100 open-shop 9 -11110100 upper-middle-income 9 -11110100 soybean-growing 10 -11110100 diehard 11 -11110100 trendier 11 -11110100 small-plane 15 -11110100 other 63911 -11110100 alcohol-related 22 -11110101 49,201 1 -11110101 super-cold 1 -11110101 Fleetwood/Clark 1 -11110101 sixth-most 1 -11110101 astringently 1 -11110101 adaptions 1 -11110101 now-hidden 1 -11110101 super-militarization 1 -11110101 most-criticized 1 -11110101 272,000-man 1 -11110101 non-planting 1 -11110101 noodlers 1 -11110101 bonily 1 -11110101 easy-grab 1 -11110101 135-unit 1 -11110101 non-filter 1 -11110101 syrup-additive 1 -11110101 390-bed 1 -11110101 water-up-the-nose 1 -11110101 black-stained 1 -11110101 400-unit 1 -11110101 Liberals. 1 -11110101 less-than-totally 1 -11110101 sejm 1 -11110101 non-hospital-insurance 1 -11110101 dreariest 1 -11110101 seven-cent-a-share 1 -11110101 46-building 1 -11110101 botanically 1 -11110101 four-largest 1 -11110101 23-foot-high 1 -11110101 mall-card 1 -11110101 coltishly 1 -11110101 6-foot-4-inches 1 -11110101 tapped-out 1 -11110101 nine-foot-deep 1 -11110101 swankdom 1 -11110101 satanically 1 -11110101 voyeuristically 1 -11110101 500-kilometer 1 -11110101 still-bound 1 -11110101 still-steamy 1 -11110101 dirt-entrapping 1 -11110101 AOPA 1 -11110101 dormitory-laboratory 1 -11110101 3,266 1 -11110101 jet-plane 1 -11110101 10th-most 1 -11110101 AmeriTrust/SRI 1 -11110101 could-be-anywhere 1 -11110101 315,000-share 1 -11110101 untraditionally 1 -11110101 sound-conducting 1 -11110101 debatably 1 -11110101 Slobovian 1 -11110101 cognitive-services 1 -11110101 dollar-vis-a-vis 1 -11110101 non-motorized 1 -11110101 office-apartment 1 -11110101 DTA 1 -11110101 next-to-lowest 1 -11110101 Northamptonshire 1 -11110101 perturbingly 1 -11110101 susurrate 1 -11110101 off-hand 1 -11110101 technology-base 1 -11110101 museology 1 -11110101 future-perfect 1 -11110101 left-out 1 -11110101 infamously 1 -11110101 now-forsaken 1 -11110101 nuclearweapons 1 -11110101 multifamilies 1 -11110101 early-on 1 -11110101 unmitigatingly 1 -11110101 until-recently 1 -11110101 wind. 1 -11110101 pointy-eared 1 -11110101 astrologically 1 -11110101 militaryindustrial 1 -11110101 diabolically 1 -11110101 dullish 1 -11110101 IA 1 -11110101 not-necessarily 1 -11110101 chattered 1 -11110101 unforgettably 1 -11110101 hotel/office/residential 1 -11110101 fuzz-covered 1 -11110101 average-size 1 -11110101 trach 1 -11110101 grim-and-gripping 1 -11110101 kharif 1 -11110101 Koethers 1 -11110101 to-be-expected 1 -11110101 10-building 1 -11110101 unfreezing 2 -11110101 149,103 2 -11110101 41,600 2 -11110101 quick-trading 2 -11110101 windshield-washer 2 -11110101 second-poorest 2 -11110101 open-armed 2 -11110101 seventh-most 2 -11110101 luminously 2 -11110101 urbanizing 2 -11110101 shiftings 2 -11110101 ill-judged 2 -11110101 neigboring 2 -11110101 seatbacks 2 -11110101 less-flattering 2 -11110101 oft-maligned 2 -11110101 heavy-footed 2 -11110101 warm-weather 2 -11110101 3/8-inch 2 -11110101 by-no-means 2 -11110101 folding-room 3 -11110101 precast 3 -11110101 best-informed 4 -11110101 mistrustful 4 -11110101 280-pound 4 -11110101 lyrically 4 -11110101 torments 5 -11110101 thermally 5 -11110101 Mutuelles 5 -11110101 quadraphonic 5 -11110101 fourth-most 6 -11110101 ready-mix 6 -11110101 pre-cast 8 -11110101 Frusen 8 -11110101 2,082 10 -11110101 so-far 11 -11110101 second-most 11 -11110101 third-most 14 -11110101 most 35061 -11110101 ready-mixed 17 -11110110 employer-leaning 1 -11110110 97,175 1 -11110110 snot 1 -11110110 contractor-switching 1 -11110110 935-818 1 -11110110 sheepishness 1 -11110110 1754 1 -11110110 we-sell-it 1 -11110110 REGB 1 -11110110 56,967,000 1 -11110110 high-luxe 1 -11110110 unblocked 1 -11110110 572,869 1 -11110110 tractability 1 -11110110 intranasally 1 -11110110 kenneling 1 -11110110 .209 1 -11110110 Strained 1 -11110110 16,000,000 1 -11110110 1.5395 1 -11110110 sweat-attire 1 -11110110 96,251 1 -11110110 still-golden 1 -11110110 name-your-own-favorite 1 -11110110 Fairbury 1 -11110110 881,873 1 -11110110 miscarrying 1 -11110110 self-justifying 1 -11110110 themelves 1 -11110110 Consolidated-Minorco 1 -11110110 quick-printers 1 -11110110 MISCLASSED 1 -11110110 rebel-government 1 -11110110 home/studio 1 -11110110 Strangelovian 1 -11110110 184,506 1 -11110110 better-staffed 1 -11110110 226,712 1 -11110110 I-90 1 -11110110 261,680 1 -11110110 Fizzles 1 -11110110 261,704 1 -11110110 mid-Texas 1 -11110110 sassing 1 -11110110 26,363 1 -11110110 Karanja 1 -11110110 Soyo 1 -11110110 nondogmatic 1 -11110110 246,473 1 -11110110 Import-export 1 -11110110 Grisly 1 -11110110 poi 1 -11110110 denied-boarding 1 -11110110 scotching 1 -11110110 320,980 1 -11110110 Anti-poverty 1 -11110110 less-scientific 1 -11110110 reanimated 1 -11110110 Reinosa 1 -11110110 Amok 1 -11110110 warfighting 1 -11110110 1,590,657 1 -11110110 1,003.80 1 -11110110 hard-to-service 1 -11110110 165,132 1 -11110110 326,411 1 -11110110 gimmick-laden 1 -11110110 cash-on-hand 1 -11110110 dispersements 1 -11110110 293.00 1 -11110110 174,954 1 -11110110 56,724 1 -11110110 hard-to-lease 1 -11110110 coarser 1 -11110110 state-refund 1 -11110110 nonrelated 1 -11110110 lower-production 1 -11110110 otherwise-private 1 -11110110 cathedral-building 1 -11110110 water-flow 1 -11110110 white-victim 1 -11110110 flogs 1 -11110110 pre-shadowed 1 -11110110 24133.10 1 -11110110 seldom-explored 1 -11110110 First-hand 1 -11110110 ground-air-ground 1 -11110110 less-fortunate 1 -11110110 child-dependency 1 -11110110 patient-specific 1 -11110110 mega-stardom 1 -11110110 self-laceration 1 -11110110 270,299 1 -11110110 Kiswahili 1 -11110110 346,249 1 -11110110 replanning 1 -11110110 industrial-manufacturing 1 -11110110 car-oriented 1 -11110110 -described 1 -11110110 32,575 1 -11110110 692,748 1 -11110110 Montedison-Ferruzzi 1 -11110110 pyromaniacs 1 -11110110 broadsided 1 -11110110 foreigner-hating 1 -11110110 Russian-populated 1 -11110110 brain-damaged-baby 1 -11110110 health-and-beauty-aid 1 -11110110 specially-designated 1 -11110110 small-company-stock 1 -11110110 big-cost 1 -11110110 Lysenkoism 1 -11110110 rally-round-the-case 1 -11110110 particularized 1 -11110110 C3-P0 1 -11110110 336,700 1 -11110110 sulfonamides 1 -11110110 mid1982 1 -11110110 Fedwatchers 1 -11110110 365,199 1 -11110110 contravening 1 -11110110 Sept.9 1 -11110110 Winstom-Salem 1 -11110110 five-pointed 1 -11110110 ear-shattering 1 -11110110 438,399 1 -11110110 three-film 1 -11110110 Newtonian 1 -11110110 will-related 1 -11110110 arrowheads 1 -11110110 pituitary-gland 1 -11110110 definance 1 -11110110 exluding 1 -11110110 singlehood 1 -11110110 Schroders-supplied 1 -11110110 Mitusbishi 1 -11110110 management-involved 1 -11110110 pro-pig 1 -11110110 1,761 1 -11110110 often-treatable 1 -11110110 1,340,344 1 -11110110 vicars 1 -11110110 359,784 1 -11110110 316,298 1 -11110110 nonresidential-contracting 1 -11110110 6,443 1 -11110110 53,064 1 -11110110 labor-protective 2 -11110110 8,926 2 -11110110 nomilin 2 -11110110 Wat 2 -11110110 wurst 2 -11110110 slick-looking 2 -11110110 2,113 2 -11110110 960,300 2 -11110110 jump-starting 2 -11110110 gladiatorial 2 -11110110 land-tenure 2 -11110110 more-informal 2 -11110110 centerstage 2 -11110110 170,382 2 -11110110 Ballast 2 -11110110 immigration-related 3 -11110110 nervous-system 3 -11110110 bigger-ticket 4 -11110110 easy-to-understand 5 -11110110 untrammeled 8 -11110110 inasmuch 9 -11110110 such 37737 -11110110 insofar 35 -1111011100 harder-to-catch 1 -1111011100 muncipals 1 -1111011100 overdocumenting 1 -1111011100 more-otherworldly 1 -1111011100 more-mainstream 1 -1111011100 subject-matter 1 -1111011100 capital-crime 1 -1111011100 pension-planning 1 -1111011100 245,110,000 1 -1111011100 semifree-market 1 -1111011100 fade-in 1 -1111011100 elderly-care 1 -1111011100 market-development 1 -1111011100 cerebrovascular 1 -1111011100 lower-dosage 1 -1111011100 yenbond 1 -1111011100 painwracked 1 -1111011100 asbestos-linked 1 -1111011100 besets 1 -1111011100 old-breed 1 -1111011100 daylight-savings 1 -1111011100 Tonnie 1 -1111011100 internal-communications 1 -1111011100 water-resource 1 -1111011100 job-development 1 -1111011100 travel-card 1 -1111011100 radar-defense 1 -1111011100 hailstones 1 -1111011100 non-sanctioned 1 -1111011100 solemly 1 -1111011100 full-commission 1 -1111011100 undeleted 1 -1111011100 569,600 1 -1111011100 tradition-conscious 1 -1111011100 glass-covered 1 -1111011100 electric-transport 1 -1111011100 pharaohs 1 -1111011100 construction-standards 1 -1111011100 8,563 1 -1111011100 34,800 1 -1111011100 17,006,802,720 1 -1111011100 cross-indexed 1 -1111011100 pool-sized 1 -1111011100 983,050 1 -1111011100 ferry-riding 1 -1111011100 Yamaha/Steinway 1 -1111011100 74,763 1 -1111011100 Jakartans 1 -1111011100 autoimmune-disease 1 -1111011100 1,460,900 1 -1111011100 city-club 1 -1111011100 Detsky 1 -1111011100 speculators/ 1 -1111011100 one-eighth-point 1 -1111011100 fumble-fingered 1 -1111011100 human-factors 1 -1111011100 9,123 2 -1111011100 English-only 2 -1111011100 4,491 2 -1111011100 non-growth 2 -1111011100 136,300 2 -1111011100 anencephalics 2 -1111011100 Tamiami 3 -1111011100 more-common 3 -1111011100 overfilling 3 -1111011100 shiitake 3 -1111011100 15,200 4 -1111011100 deficit-conscious 4 -1111011100 furloughing 5 -1111011100 some 58635 -1111011100 high-loss 5 -1111011101 UDF-sympathetic 1 -1111011101 shareholderas 1 -1111011101 de-escalation 1 -1111011101 sea-route 1 -1111011101 essay-length 1 -1111011101 male-to-male 1 -1111011101 salty-tasting 1 -1111011101 non-ethnic 1 -1111011101 industrial-health 1 -1111011101 less-capitalized 1 -1111011101 school-shackled 1 -1111011101 162-foot-tall 1 -1111011101 spear-toting 1 -1111011101 account-management 1 -1111011101 334,800 1 -1111011101 high-functioning 1 -1111011101 congressional-corruption 1 -1111011101 1,132,731 1 -1111011101 non-bulk 1 -1111011101 Porsche-driving 1 -1111011101 dislocuted 1 -1111011101 10,442 1 -1111011101 untractable 1 -1111011101 hip-fracture 1 -1111011101 non-college 1 -1111011101 14,943 1 -1111011101 Kaldoun 1 -1111011101 craftier 1 -1111011101 3,375 1 -1111011101 Hanns-Arnt 1 -1111011101 low-producing 1 -1111011101 textile-state 1 -1111011101 still-nervous 1 -1111011101 less-than-honest 1 -1111011101 fighting-age 1 -1111011101 lowest-level 1 -1111011101 rock-show 1 -1111011101 credit-card-industry 1 -1111011101 U.S.-industry 1 -1111011101 passing-shot 1 -1111011101 pro-TVA 1 -1111011101 Western-government 1 -1111011101 blowhard 1 -1111011101 institutitonal 1 -1111011101 non-Punjabi 1 -1111011101 time-crunched 1 -1111011101 wide-hatted 1 -1111011101 unlovable 1 -1111011101 musicians-turned-stock 1 -1111011101 3,389 1 -1111011101 Halloween-crazed 1 -1111011101 less-trained 1 -1111011101 pitch-out 1 -1111011101 safety-minded 1 -1111011101 fee-paying 1 -1111011101 prisonlike 1 -1111011101 ill-prepares 1 -1111011101 striped-pants 1 -1111011101 pork-seeking 1 -1111011101 three-card-monte 1 -1111011101 stubble-toothed 1 -1111011101 6.9-liter 1 -1111011101 30,316 1 -1111011101 part-skim 1 -1111011101 337,105 1 -1111011101 professsional 1 -1111011101 864,900 1 -1111011101 art-minded 1 -1111011101 3,077 1 -1111011101 gold-minded 1 -1111011101 unappreciated 1 -1111011101 heavily-capitalized 1 -1111011101 academic-research 1 -1111011101 169,198 1 -1111011101 ACCUSE 1 -1111011101 non-minority 1 -1111011101 business-unit 1 -1111011101 co-senior 1 -1111011101 out-of-stocks 1 -1111011101 20,557 1 -1111011101 salt-of-the-earth 1 -1111011101 technology-minded 1 -1111011101 transmission-service 1 -1111011101 Ionnis 1 -1111011101 post-residency 1 -1111011101 787,000 1 -1111011101 structural-package 1 -1111011101 more-extravagant 1 -1111011101 nutrition-conscious 1 -1111011101 7.7500 1 -1111011101 869,800 1 -1111011101 1,524 1 -1111011101 technically-motivated 1 -1111011101 begowned 1 -1111011101 caucus/primary 1 -1111011101 buy-now-pay-later 1 -1111011101 foam-insulator 1 -1111011101 lower-middle-income 1 -1111011101 bias-proof 1 -1111011101 crime-forecasting 1 -1111011101 hammed 1 -1111011101 gold-seeking 1 -1111011101 more-detached 1 -1111011101 anti-booze 1 -1111011101 less-potent 1 -1111011101 thing-oriented 1 -1111011101 TV-market 1 -1111011101 U.S.backed 1 -1111011101 cash-advance 1 -1111011101 2,054 1 -1111011101 prominant 1 -1111011101 K-1 1 -1111011101 pitch-true 1 -1111011101 air-crash 1 -1111011101 knickknack 1 -1111011101 ensnarls 1 -1111011101 fast-money 1 -1111011101 69,346 1 -1111011101 single-talent 1 -1111011101 zinc-sulphide 1 -1111011101 JVC/Victor-financed 1 -1111011101 military-jet 1 -1111011101 successor-designate 1 -1111011101 noncontributing 1 -1111011101 just-plain 1 -1111011101 uninsured-black 1 -1111011101 540,800 1 -1111011101 post-McGovern 1 -1111011101 defense-dependent 1 -1111011101 Nike-shod 1 -1111011101 auto-supply 1 -1111011101 non-resistant 1 -1111011101 bargaining-related 1 -1111011101 health-minded 1 -1111011101 Triassic 1 -1111011101 primitivizing 1 -1111011101 ex-IRA 1 -1111011101 acquisitive-minded 1 -1111011101 non-Italian 1 -1111011101 beef-loving 1 -1111011101 69,800 1 -1111011101 deregulation-oriented 1 -1111011101 Meskhetian 1 -1111011101 Moscow-controlled 1 -1111011101 OTC-market 1 -1111011101 pro-GM 1 -1111011101 8,606 1 -1111011101 double-crop 1 -1111011101 recession-ridden 1 -1111011101 1,611,593 1 -1111011101 court-made 1 -1111011101 once-admiring 1 -1111011101 long-lined 1 -1111011101 Fla.-Sixty-two 1 -1111011101 destructively 1 -1111011101 2,549 1 -1111011101 over-insured 1 -1111011101 1,592 1 -1111011101 NYSE-registered 1 -1111011101 hyperbole-prone 1 -1111011101 ever-individualistic 1 -1111011101 convention-going 1 -1111011101 577,702 1 -1111011101 renegotiable 1 -1111011101 guileful 1 -1111011101 travel-reservations 1 -1111011101 insurance-claims 1 -1111011101 22,462 1 -1111011101 stony-faced 1 -1111011101 inflation-minded 1 -1111011101 80-20 1 -1111011101 surpassingly 1 -1111011101 recession-weary 1 -1111011101 17,463 1 -1111011101 Lauritz 1 -1111011101 besandaled 1 -1111011101 1,283,000 1 -1111011101 re-reported 1 -1111011101 no-down-payment 1 -1111011101 7,157 1 -1111011101 supervisory-level 1 -1111011101 248,515 1 -1111011101 rate-watching 1 -1111011101 lawyer-loving 1 -1111011101 asset-overhaul 1 -1111011101 earthquake-prone 2 -1111011101 low-seniority 2 -1111011101 munificence 2 -1111011101 more-neutral 2 -1111011101 seldom-seen 2 -1111011101 already-jittery 2 -1111011101 single-malt 2 -1111011101 Mesopotamian 2 -1111011101 auto-worker 2 -1111011101 irrigating 2 -1111011101 retirement-age 2 -1111011101 shop-at-home 2 -1111011101 tobacco-state 2 -1111011101 overfed 2 -1111011101 not-so-friendly 2 -1111011101 bonus-paying 2 -1111011101 emptyhanded 2 -1111011101 stackware 2 -1111011101 resortlike 2 -1111011101 airborne-transmitted 2 -1111011101 labor-owned 2 -1111011101 1,987 2 -1111011101 fleet-footed 2 -1111011101 Conradian 2 -1111011101 1,194 2 -1111011101 Bakelite 2 -1111011101 starstruck 2 -1111011101 437,811 3 -1111011101 1,014 3 -1111011101 bouilleurs 3 -1111011101 1,231 3 -1111011101 up-tight 3 -1111011101 braised 4 -1111011101 low-unemployment 4 -1111011101 non-insured 4 -1111011101 less-affluent 5 -1111011101 larger-sized 6 -1111011101 light-skinned 6 -1111011101 Vicks 6 -1111011101 many 33157 -1111011101 pistachio 9 -11110111100 timeservers 1 -11110111100 reservedly 1 -11110111100 76,993 1 -11110111100 Maoettes 1 -11110111100 megaliterateur 1 -11110111100 110,400 1 -11110111100 Yokasuka 1 -11110111100 A-dollar 1 -11110111100 wildcats 1 -11110111100 seal-like 1 -11110111100 broadleaf 1 -11110111100 jobhoppers 1 -11110111100 Selfridges 1 -11110111100 3,951,600 1 -11110111100 soft-soap 1 -11110111100 Monday-afternoon 1 -11110111100 22,328 1 -11110111100 chopped-steak 1 -11110111100 Reforma 1 -11110111100 anti-age 1 -11110111100 1,646,700 1 -11110111100 875,767 1 -11110111100 Alisons 1 -11110111100 Florida-owned 1 -11110111100 Bork-the-moderate 1 -11110111100 less-refined 1 -11110111100 18,842,000 1 -11110111100 energy-producers 1 -11110111100 2,136,600 1 -11110111100 cricket-gamblers 1 -11110111100 anencephaly 1 -11110111100 synfuel 1 -11110111100 wine-makers 1 -11110111100 174,200 1 -11110111100 then-legal 1 -11110111100 importsa 1 -11110111100 uncomplainingly 1 -11110111100 currently-available 1 -11110111100 rear-guardists 1 -11110111100 more-material 1 -11110111100 128,800 1 -11110111100 5,354,800 1 -11110111100 too-loose 1 -11110111100 ever-sliding 1 -11110111100 single-track 1 -11110111100 Unimates 1 -11110111100 general-ledger 1 -11110111100 UFO-watchers 1 -11110111100 already-announced 1 -11110111100 2,155,400 1 -11110111100 coconut-rich 1 -11110111100 gushingly 1 -11110111100 Procter-speakers 1 -11110111100 Afro-Americans 1 -11110111100 colleages 1 -11110111100 Gujaratis 1 -11110111100 non-dancers 1 -11110111100 pristine-condition 1 -11110111100 24,019 1 -11110111100 puertorriquenos 1 -11110111100 cholesterol-raising 1 -11110111100 686,792 1 -11110111100 non-felons 1 -11110111100 psycho-sickos 1 -11110111100 Wispa 1 -11110111100 vaudevillians 1 -11110111100 self-guided 1 -11110111100 ready-to-use 1 -11110111100 Russells 1 -11110111100 declamatory 1 -11110111100 29,200 1 -11110111100 retaliators 1 -11110111100 Danae 1 -11110111100 trust-bank 1 -11110111100 Zorro 1 -11110111100 blade-length 1 -11110111100 17year-old 1 -11110111100 parts-makers 1 -11110111100 1,506 1 -11110111100 1,100,000 1 -11110111100 non-swimmers 1 -11110111100 hard-asset 1 -11110111100 auto-obscuria 1 -11110111100 La-la-landers 1 -11110111100 lawyer-authors 1 -11110111100 disabling-injury 1 -11110111100 ascetics 1 -11110111100 nutrition-oriented 1 -11110111100 408,700 1 -11110111100 fun-in-the-sun 1 -11110111100 Erfurt 1 -11110111100 self-denigration 1 -11110111100 18-to-22-year-olds 1 -11110111100 neo-populists 1 -11110111100 Reizl 1 -11110111100 burrowers 1 -11110111100 164,360,000 1 -11110111100 squibs 1 -11110111100 Emmies 1 -11110111100 color-separation 1 -11110111100 100Jacuzzis 1 -11110111100 chartwatchers 1 -11110111100 American-held 1 -11110111100 Giuliani-type 1 -11110111100 disease-producing 1 -11110111100 hourglasses 1 -11110111100 abbots 1 -11110111100 detenteniks 1 -11110111100 Hausfrauen 1 -11110111100 4,394 1 -11110111100 extroverts 1 -11110111100 2,735 2 -11110111100 unprecendented 2 -11110111100 noncharitable 2 -11110111100 117,600 2 -11110111100 more-hazardous 2 -11110111100 epicenters 2 -11110111100 print-media 2 -11110111100 shareholder-employees 2 -11110111100 housebound 2 -11110111100 210,654 2 -11110111100 1,624 2 -11110111100 56,200 2 -11110111100 daytrippers 2 -11110111100 19,400 2 -11110111100 dietary-induced 2 -11110111100 1,380,000 2 -11110111100 WXRK-FM 2 -11110111100 84,300 2 -11110111100 4,654 2 -11110111100 hydroelectricity 2 -11110111100 Bedouins 2 -11110111100 266,900 2 -11110111100 164,212 2 -11110111100 276,500 2 -11110111100 mishandled-baggage 2 -11110111100 19,700 2 -11110111100 summering 2 -11110111100 PROs 2 -11110111100 barbecuing 2 -11110111100 67,200 2 -11110111100 86,300 2 -11110111100 135,187 2 -11110111100 35,875 2 -11110111100 tricosanthin 2 -11110111100 one-ninth 2 -11110111100 1,276 2 -11110111100 pay-movie 2 -11110111100 balmier 2 -11110111100 1,744,000 2 -11110111100 Pollyannaish 2 -11110111100 stags 2 -11110111100 1,102,000 2 -11110111100 110,600 2 -11110111100 bioequivalance 2 -11110111100 1,705 2 -11110111100 apparel-oriented 2 -11110111100 5,125,000 2 -11110111100 19,401 2 -11110111100 65,013 2 -11110111100 subcategories 2 -11110111100 dioramas 2 -11110111100 932,400 2 -11110111100 36,600 2 -11110111100 141,500 3 -11110111100 non-S&P 3 -11110111100 1,575,000 3 -11110111100 Dutch-auction-rate 3 -11110111100 47,300 3 -11110111100 half-pints 3 -11110111100 Schiapparelli 3 -11110111100 1,452 3 -11110111100 487,500 3 -11110111100 more-exotic 4 -11110111100 eighty 4 -11110111100 60,900 4 -11110111100 penalty-free 6 -11110111100 sulfamethazine 6 -11110111100 74,241 7 -11110111100 all-taxable 10 -11110111100 those 22979 -11110111100 pneumocystis 17 -11110111101 employee-attitude 1 -11110111101 street-side 1 -11110111101 sucrose-dextrose 1 -11110111101 oft-used 1 -11110111101 MTV-related 1 -11110111101 Cluj 1 -11110111101 ABC-approved 1 -11110111101 gender-related 1 -11110111101 Gorbachev-style 1 -11110111101 nonpregnant 1 -11110111101 Vernon-financed 1 -11110111101 economic-stimulative 1 -11110111101 diesel-power 1 -11110111101 anti-Algerian 1 -11110111101 high-tag 1 -11110111101 racket-sports 1 -11110111101 Woody-worlds 1 -11110111101 chain-owned 1 -11110111101 anti-futures 1 -11110111101 asbestos-exposed 1 -11110111101 federal-spending 1 -11110111101 Darmstadt-style 1 -11110111101 non-ordained 1 -11110111101 low-heeled 1 -11110111101 17,510 1 -11110111101 more-ethereal 1 -11110111101 7J7-related 1 -11110111101 transaction-oriented 1 -11110111101 Austrian-based 1 -11110111101 miskept 1 -11110111101 hotel-construction 1 -11110111101 Putnam. 1 -11110111101 cervical-cancer 1 -11110111101 investment-letter 1 -11110111101 Euro-equity 1 -11110111101 multitask 1 -11110111101 1,833 1 -11110111101 drinking-and-driving 1 -11110111101 market-minded 1 -11110111101 non-decisionmaking 1 -11110111101 currency-design 1 -11110111101 wage-reduction 1 -11110111101 nonmetro 1 -11110111101 ameliorative 1 -11110111101 stress-ridden 1 -11110111101 Treausury 1 -11110111101 cartridge-tape 1 -11110111101 fraudulent-pricing 1 -11110111101 Parapsychology 1 -11110111101 short-fused 1 -11110111101 predigested 1 -11110111101 cheap-lipstick 1 -11110111101 59,800,000 1 -11110111101 yellow-and-lavender 1 -11110111101 time-clock 1 -11110111101 fire-insurance 1 -11110111101 employee-trust 1 -11110111101 ADULT-ENTERTAINMENT 1 -11110111101 commodity-trade 1 -11110111101 4,127 1 -11110111101 bull-and-bear 1 -11110111101 product-review 1 -11110111101 miles-long 1 -11110111101 swimsuited 1 -11110111101 consumer-relations 1 -11110111101 heat-damaged 1 -11110111101 auto-industry-related 1 -11110111101 Parisian-style 1 -11110111101 still-successful 1 -11110111101 intradealer 1 -11110111101 20-meter 1 -11110111101 batting-average 1 -11110111101 tarantella 1 -11110111101 78-rpm 1 -11110111101 2,252,000 1 -11110111101 dairy-related 1 -11110111101 government-assigned 1 -11110111101 individual-sport 1 -11110111101 leverage-defensive 1 -11110111101 package-good 1 -11110111101 tenderhearted 1 -11110111101 full-panel 1 -11110111101 world-historical 1 -11110111101 post-classical 1 -11110111101 alonggetting 1 -11110111101 OPIC-insured 1 -11110111101 immune-blocking 1 -11110111101 crash-specific 1 -11110111101 workforce-trimming 1 -11110111101 low-to-no-margin 1 -11110111101 voice-production 1 -11110111101 pure-cultured 1 -11110111101 despoiling 1 -11110111101 billing-system 1 -11110111101 visitors-bureau 1 -11110111101 too-large 1 -11110111101 2,494 1 -11110111101 9,597 1 -11110111101 1,497 1 -11110111101 five-to-seven 1 -11110111101 paper-saving 1 -11110111101 demand-control 1 -11110111101 arrear 1 -11110111101 54.95 1 -11110111101 detestable 1 -11110111101 satellite-building 1 -11110111101 hard-to-assail 1 -11110111101 0.225 1 -11110111101 critical/scholarly 1 -11110111101 punch-drunk 1 -11110111101 2,621 1 -11110111101 Radiology-reached 1 -11110111101 4,034 1 -11110111101 delivery-van 1 -11110111101 health-budget 1 -11110111101 Tibetan-independence 1 -11110111101 2492 1 -11110111101 rent-an-office 1 -11110111101 model-shop 1 -11110111101 good-practice 1 -11110111101 pseudo-courtroom 1 -11110111101 deep-fat-fried 1 -11110111101 china-shop 1 -11110111101 divorceable 1 -11110111101 hard-braking 1 -11110111101 FDA-supervised 1 -11110111101 pro-black 1 -11110111101 look-back 1 -11110111101 marketing-related 1 -11110111101 regular-force 1 -11110111101 auto-crash 1 -11110111101 acid-reflux 1 -11110111101 grain-supply 1 -11110111101 envenomed 1 -11110111101 like-aged 1 -11110111101 16,482 1 -11110111101 scandal-tinged 1 -11110111101 mega-billion-dollar 1 -11110111101 active-adult 1 -11110111101 bathhouse 1 -11110111101 capitalist-tinged 1 -11110111101 conference-committee 1 -11110111101 great-looking 1 -11110111101 cotton-program 1 -11110111101 slim-yielding 1 -11110111101 congressional-appropriations 1 -11110111101 less-than-joyous 1 -11110111101 cement-related 1 -11110111101 hammer-wielding 1 -11110111101 sell-and-buyback 1 -11110111101 independent-living 1 -11110111101 60,537 1 -11110111101 jaycee 1 -11110111101 less-extensive 1 -11110111101 25-milligram 1 -11110111101 10-milligram 1 -11110111101 urban-policy 1 -11110111101 trade-assisting 1 -11110111101 America-style 1 -11110111101 job-quality 1 -11110111101 1,872 1 -11110111101 sandlot 1 -11110111101 pilot-certification 1 -11110111101 investment-product 1 -11110111101 euchring 1 -11110111101 pre-boom 1 -11110111101 3,224 1 -11110111101 number-coded 1 -11110111101 coffee-buying 1 -11110111101 market-structure 1 -11110111101 turbanned 1 -11110111101 well-creeled 1 -11110111101 campaign-overhaul 1 -11110111101 dimensionless 1 -11110111101 quasi-protectionist 1 -11110111101 outerspace 1 -11110111101 39,387 1 -11110111101 once-incurable 1 -11110111101 Windracer 1 -11110111101 solid-modeling 1 -11110111101 department-sanctioned 1 -11110111101 diabetes-related 1 -11110111101 Thomson-owned 1 -11110111101 anti-Communist-party 1 -11110111101 newbound 1 -11110111101 age-driven 1 -11110111101 leaderlike 1 -11110111101 managment-recommended 1 -11110111101 pre-formed 1 -11110111101 Clinton-era 1 -11110111101 non-social 1 -11110111101 less-lucrative 1 -11110111101 blood-count 1 -11110111101 on-the-ropes 1 -11110111101 non-operational 1 -11110111101 artificial-insemination 1 -11110111101 1,706 1 -11110111101 school-bond 1 -11110111101 clay-dough 1 -11110111101 five-scene 1 -11110111101 income-helping 1 -11110111101 taxiing-related 1 -11110111101 93,173 1 -11110111101 taxpayer-relations 1 -11110111101 Inuit-speaking 1 -11110111101 savage-looking 1 -11110111101 post-bout 1 -11110111101 anti-arbitrage 1 -11110111101 hard-to-copy 1 -11110111101 FSLIC-backed 1 -11110111101 physician-dispensed 1 -11110111101 never-seamy 1 -11110111101 7,077,900 1 -11110111101 not-so-nice 1 -11110111101 petty-bourgeois 1 -11110111101 1100-series 1 -11110111101 HMO-style 1 -11110111101 vine-ripened 1 -11110111101 often-warring 1 -11110111101 foreign-paid 1 -11110111101 budget-revision 1 -11110111101 rainbow-shaped 1 -11110111101 strong-smelling 1 -11110111101 classical-concert 1 -11110111101 replowing 1 -11110111101 utility-accounting 1 -11110111101 coated-fabric 1 -11110111101 physician-office 1 -11110111101 19th-century-style 1 -11110111101 welfare-to-work 1 -11110111101 neoplastic 1 -11110111101 employee-identification 1 -11110111101 cocoa-agreement 1 -11110111101 risk-premium 1 -11110111101 Zimbabwean/Mozambican 1 -11110111101 G.A. 1 -11110111101 schnoz 1 -11110111101 cigarette-related 1 -11110111101 nonmainstream 1 -11110111101 monetaristic 1 -11110111101 173,500 1 -11110111101 818,700 1 -11110111101 earth-trembling 1 -11110111101 tax-replacement 1 -11110111101 foot-in-the-door 1 -11110111101 motorsport 1 -11110111101 made-in-Mexico 1 -11110111101 public-assistance-level 1 -11110111101 non-acquisition 1 -11110111101 public-exposure 1 -11110111101 nonscholastic 1 -11110111101 business-world 1 -11110111101 on-train 1 -11110111101 late-18th-century 1 -11110111101 31,834 1 -11110111101 telephone-related 1 -11110111101 cllege 1 -11110111101 pounds-per-capita 1 -11110111101 budget-law 1 -11110111101 foreign-exchange-oriented 1 -11110111101 non-SEC 1 -11110111101 repeat-offender 1 -11110111101 41,735 1 -11110111101 animal-management 1 -11110111101 fresh-off-the-boat 1 -11110111101 fewer-than-desired 1 -11110111101 MTV-created 1 -11110111101 airwave 1 -11110111101 health-environmental 1 -11110111101 922,666 1 -11110111101 microfilm-related 1 -11110111101 extramural 1 -11110111101 5,072,975 1 -11110111101 pre-Korean-war 1 -11110111101 1,263,815 1 -11110111101 parasoled 1 -11110111101 273,496 1 -11110111101 Afro-Oriental 1 -11110111101 cuddlesome 1 -11110111101 pro-ethanol 1 -11110111101 academic-sounding 1 -11110111101 electronic-funds 1 -11110111101 professional-quality 1 -11110111101 1,828 1 -11110111101 clover-shaped 1 -11110111101 raisin-decorated 1 -11110111101 coolant-line 1 -11110111101 yet-unknown 1 -11110111101 big-fee 1 -11110111101 child-related 1 -11110111101 variable-annuity 1 -11110111101 electronics-manufacturing 1 -11110111101 intra-branch 1 -11110111101 still-weak 1 -11110111101 heretofore-not-needy 1 -11110111101 blue-penciling 1 -11110111101 sticky-topped 1 -11110111101 luxury-model 1 -11110111101 non-teaching 1 -11110111101 regional-development 1 -11110111101 special-entry 1 -11110111101 Hollywood-exploring 1 -11110111101 prime-age 1 -11110111101 low-maintenance 1 -11110111101 more-substantial 1 -11110111101 low-order 1 -11110111101 weatherbeaten 1 -11110111101 sheep-related 1 -11110111101 parses 1 -11110111101 Brezhnevian 1 -11110111101 account-churning 1 -11110111101 backstairs 1 -11110111101 European-oriented 1 -11110111101 1,283 1 -11110111101 erosioncontrol 1 -11110111101 energy-generation 1 -11110111101 hospital-discharge 1 -11110111101 already-working 1 -11110111101 three-judge-panel 1 -11110111101 university-construction 1 -11110111101 airline-safety 1 -11110111101 marijuana-cultivation 1 -11110111101 post-announcement 1 -11110111101 data-bank 1 -11110111101 18-to-29-year-old 1 -11110111101 nonrationalized 1 -11110111101 Molotov-cocktail-throwing 1 -11110111101 teacher-management 1 -11110111101 interest-tracing 1 -11110111101 5,472 1 -11110111101 Russianist 1 -11110111101 provincial-level 1 -11110111101 INF. 1 -11110111101 price-growth 1 -11110111101 65-70 1 -11110111101 pre-LP 1 -11110111101 9,194,000 1 -11110111101 accounting-law 1 -11110111101 drinkingwater 1 -11110111101 revenue-increase 1 -11110111101 often-innocent 1 -11110111101 vertical-equity 1 -11110111101 federal-crop 1 -11110111101 alchemical 1 -11110111101 money-generating 1 -11110111101 quick-selling 1 -11110111101 numbercrunching 1 -11110111101 not-so-premium 1 -11110111101 2,867 1 -11110111101 inter-ethnic 1 -11110111101 favorite-sauce 1 -11110111101 officer-employment 1 -11110111101 pro-BGH 1 -11110111101 more-fundamentalist 1 -11110111101 democractic 1 -11110111101 conversa 1 -11110111101 prepurchase 1 -11110111101 high-priority/low-income 1 -11110111101 10-for-24 1 -11110111101 long-termers 1 -11110111101 black-comic 1 -11110111101 8,422 1 -11110111101 Tylenol-tampering 1 -11110111101 field-study 1 -11110111101 deficit-driven 1 -11110111101 multi-college 1 -11110111101 indpendent 1 -11110111101 half- 1 -11110111101 China-related 1 -11110111101 356,306 1 -11110111101 menopause-related 1 -11110111101 brain-related 1 -11110111101 3,577 1 -11110111101 non-lucky 1 -11110111101 high-pollution 1 -11110111101 90-odd 1 -11110111101 94,572 1 -11110111101 psycho-social 1 -11110111101 nuclear-investment 1 -11110111101 plant-investment 1 -11110111101 coke-supply 1 -11110111101 press-bashing 1 -11110111101 pajamaclad 1 -11110111101 non-relevant 1 -11110111101 asset-growth 1 -11110111101 textile-production 1 -11110111101 seafood-borne 1 -11110111101 less-privileged 1 -11110111101 computer-accessible 1 -11110111101 community-investment 1 -11110111101 snow-melting 1 -11110111101 6,028 1 -11110111101 nonstate 1 -11110111101 gene-hunting 1 -11110111101 more-punitive 1 -11110111101 Sonet-compatible 1 -11110111101 non-methanol 1 -11110111101 87,526 1 -11110111101 press-freedom 1 -11110111101 studied-casual 1 -11110111101 173.075 1 -11110111101 4,833 1 -11110111101 boat-people 1 -11110111101 dualuse 1 -11110111101 long-drawn-out 1 -11110111101 ready-cash 1 -11110111101 1,077,000 1 -11110111101 2,207 1 -11110111101 5,220,324 1 -11110111101 703,579 1 -11110111101 AIDS-bias 1 -11110111101 33,512 1 -11110111101 out-of-alignment 1 -11110111101 non-contested 1 -11110111101 currency-price 1 -11110111101 optimization-type 1 -11110111101 stutterer 1 -11110111101 quick-silver 1 -11110111101 confidence-shattering 1 -11110111101 city-charter 1 -11110111101 By-the-Book 1 -11110111101 non-elderly 1 -11110111101 Sync 1 -11110111101 rumor-wire 1 -11110111101 dental-plan 1 -11110111101 quasi-tax 1 -11110111101 2,277 1 -11110111101 research-heavy 1 -11110111101 hypocracy 1 -11110111101 oilshock 1 -11110111101 Tsarist 1 -11110111101 pro-ethics 1 -11110111101 over-mature 1 -11110111101 all-points 1 -11110111101 959,195 1 -11110111101 mind-altering 1 -11110111101 blood-in-the-streets 1 -11110111101 essayish 1 -11110111101 non-cost 1 -11110111101 IV-drug-free 1 -11110111101 counteractive 1 -11110111101 vacation-pay 1 -11110111101 22.36 1 -11110111101 technology-rights 1 -11110111101 immunosuppressed 1 -11110111101 firebomb-wielding 1 -11110111101 9-liter 1 -11110111101 hightoned 1 -11110111101 pet-protection 1 -11110111101 drug-resistant 1 -11110111101 adopt-a-school 1 -11110111101 10-trip 1 -11110111101 attorney-fee 1 -11110111101 rate-payer 1 -11110111101 EDfare-type 1 -11110111101 cost-overrun 1 -11110111101 neonatal-care 1 -11110111101 4,255 1 -11110111101 5,975,000 1 -11110111101 IDD. 1 -11110111101 margin-lending 1 -11110111101 nonHispanic 1 -11110111101 Indian-related 1 -11110111101 still-sealed 1 -11110111101 arbitration-panel 1 -11110111101 21,785 1 -11110111101 16,325 1 -11110111101 solid-waste-management 1 -11110111101 luxury-marketing 1 -11110111101 ambigous 1 -11110111101 brick-clad 1 -11110111101 perfume-bottle 1 -11110111101 nonphysical 1 -11110111101 bifurcating 1 -11110111101 91,351 1 -11110111101 market-style 1 -11110111101 3,000-plus 1 -11110111101 cast-off 1 -11110111101 lower-order 1 -11110111101 far-from-crack 1 -11110111101 governing-party 1 -11110111101 gas-regulatory 1 -11110111101 sugar-using 1 -11110111101 French-held 1 -11110111101 Algerian-sponsored 1 -11110111101 coca-bush 1 -11110111101 non-traffic 1 -11110111101 women's-league 1 -11110111101 582,131 1 -11110111101 5,808 1 -11110111101 1033 1 -11110111101 still-lively 1 -11110111101 pro-Pittsburgh 1 -11110111101 Asia-oriented 1 -11110111101 still-unspecified 2 -11110111101 VA-insured 2 -11110111101 ad-rate 2 -11110111101 upcountry 2 -11110111101 limited-growth 2 -11110111101 high-lead 2 -11110111101 building-code 2 -11110111101 housing-construction 2 -11110111101 right-thinking 2 -11110111101 329,431 2 -11110111101 factory-level 2 -11110111101 cheap-wine 2 -11110111101 12th-grade 2 -11110111101 more-extensive 2 -11110111101 multi-unit 2 -11110111101 11th-grade 2 -11110111101 near-midair 2 -11110111101 concealed-weapon 2 -11110111101 pre-trading 2 -11110111101 market-dominant 2 -11110111101 futures-like 2 -11110111101 demand-damping 2 -11110111101 colon-cancer 2 -11110111101 keyboarding 2 -11110111101 country-to-country 2 -11110111101 public-works-style 2 -11110111101 1,558 2 -11110111101 swap-linked 2 -11110111101 apricot 2 -11110111101 non-classroom 2 -11110111101 unassimilated 2 -11110111101 sugar-trade 2 -11110111101 traffic-management 2 -11110111101 credit-backed 2 -11110111101 chain-mail 2 -11110111101 service-type 2 -11110111101 exasperatingly 2 -11110111101 Teamsters-related 2 -11110111101 22,071 2 -11110111101 storm-damaged 2 -11110111101 land-holding 2 -11110111101 extra-literary 2 -11110111101 super-sharp 2 -11110111101 father's-rights 2 -11110111101 non-infectious 2 -11110111101 rebel-held 2 -11110111101 alligator-farm 2 -11110111101 T-37 2 -11110111101 trail-blazing 2 -11110111101 homeimprovement 2 -11110111101 40-60 2 -11110111101 still-useful 2 -11110111101 noncritical 2 -11110111101 KCRW 2 -11110111101 business-plan 2 -11110111101 1,494,000 2 -11110111101 Blini 2 -11110111101 2,362 2 -11110111101 Syrian-Iranian 2 -11110111101 half-timbered 2 -11110111101 anisotropy 2 -11110111101 4,660 2 -11110111101 gustatory 2 -11110111101 french-fried 2 -11110111101 multiple-candidate 2 -11110111101 143,500 2 -11110111101 40,200 2 -11110111101 Southland-sponsored 2 -11110111101 1,165 2 -11110111101 high-VAT 2 -11110111101 stock-investment 2 -11110111101 534,600 2 -11110111101 energy-control 2 -11110111101 superconductor-related 2 -11110111101 non-takeover-related 2 -11110111101 in-ground 2 -11110111101 Contra-related 3 -11110111101 sexual-abuse 3 -11110111101 domestic-demand-related 3 -11110111101 AZT-resistant 3 -11110111101 personal-interest 3 -11110111101 pre-planned 3 -11110111101 c.o.d. 3 -11110111101 inside-wire 3 -11110111101 Western-bloc 3 -11110111101 Zbrosza 3 -11110111101 laboratory-grown 3 -11110111101 TVSAT 3 -11110111101 native-owned 3 -11110111101 job-bias 3 -11110111101 on-ground 3 -11110111101 EPIC-related 3 -11110111101 4,638 3 -11110111101 high-potential 3 -11110111101 1,544 4 -11110111101 child-health 4 -11110111101 Schwaebisch 4 -11110111101 bar-coded 4 -11110111101 extra-long 4 -11110111101 1,576 4 -11110111101 precancerous 5 -11110111101 1,273 5 -11110111101 aircraft-related 5 -11110111101 landlord-tenant 6 -11110111101 stress-related 6 -11110111101 credit-supported 7 -11110111101 '60 7 -11110111101 later-stage 7 -11110111101 ill-fitting 7 -11110111101 Koranic 7 -11110111101 these 18904 -11110111101 interest-earning 14 -11110111110 back-of-the-pack 1 -11110111110 owner-managed 1 -11110111110 casino-owning 1 -11110111110 Vaslav 1 -11110111110 nuclear-watchdog 1 -11110111110 8,328 1 -11110111110 thoracic 1 -11110111110 diagnostic-related 1 -11110111110 quota-violations 1 -11110111110 textile-fiber 1 -11110111110 0.828456 1 -11110111110 life-and-health-insurance 1 -11110111110 do-it-yourself-oriented 1 -11110111110 antiporn 1 -11110111110 fiscal-watchdog 1 -11110111110 more-protectionist 1 -11110111110 horse-pulling 1 -11110111110 cemical 1 -11110111110 Tokyo-born 1 -11110111110 identical-twin 1 -11110111110 sun-starved 1 -11110111110 drug-enhanced 1 -11110111110 look-a-like 1 -11110111110 consumer-action 1 -11110111110 folklorically 1 -11110111110 small-pickup 1 -11110111110 big-truck 1 -11110111110 platform-construction 1 -11110111110 Sullivan-signee 1 -11110111110 family-issue 1 -11110111110 7,030 1 -11110111110 Velimir 1 -11110111110 forprofit 1 -11110111110 Novato-based 1 -11110111110 deviationist 1 -11110111110 ear-blasting 1 -11110111110 Aquino-supported 1 -11110111110 hs 1 -11110111110 haunted-house 1 -11110111110 LaRouche-related 1 -11110111110 3,873 1 -11110111110 sleep-away 1 -11110111110 N.Y.U. 1 -11110111110 whaleboat 1 -11110111110 tree-branch 1 -11110111110 anti-logging 1 -11110111110 defogging 1 -11110111110 water-skiing-tournament 1 -11110111110 C.P.E. 1 -11110111110 private-aid 1 -11110111110 camera-bulb 1 -11110111110 zebra-like 1 -11110111110 steel-fence 1 -11110111110 genetically-engineered 1 -11110111110 narrow-interest 1 -11110111110 goodwilled 1 -11110111110 footballese 1 -11110111110 scientific-publishing 1 -11110111110 Exterminator 1 -11110111110 nontypical 1 -11110111110 social-club 1 -11110111110 non-health-care 1 -11110111110 one-business 1 -11110111110 non-student 1 -11110111110 farm-fence 1 -11110111110 immigrant-assistance 1 -11110111110 un-Confucian 1 -11110111110 1,609 1 -11110111110 Green-labeled 1 -11110111110 Amex-listed 1 -11110111110 BVI-based 1 -11110111110 trucking-services 1 -11110111110 AIDS-issue 1 -11110111110 brkered 1 -11110111110 vanilla-flavored 1 -11110111110 sometimes-fragile 1 -11110111110 round-backed 1 -11110111110 state-contolled 1 -11110111110 212-unit 1 -11110111110 single-fund 1 -11110111110 general-construction 1 -11110111110 likesized 1 -11110111110 Japanesese 1 -11110111110 15,743 1 -11110111110 partridge-shooting 1 -11110111110 injury-prone 1 -11110111110 market-entry 1 -11110111110 24-or-so 1 -11110111110 Bank-holding 1 -11110111110 '20s-era 1 -11110111110 enhanced-service 1 -11110111110 more-repressive 1 -11110111110 Coniston-related 1 -11110111110 Afghan-resistance 1 -11110111110 45-mile-an-hour 1 -11110111110 sound-reflective 1 -11110111110 state-sector 1 -11110111110 wider-spaced 1 -11110111110 foodrelated 1 -11110111110 G.A.B. 1 -11110111110 refugee-relief 1 -11110111110 mother-only 1 -11110111110 antipornography 1 -11110111110 campaign-donation 1 -11110111110 consistent-earnings-growth 1 -11110111110 pro-disinvestment 1 -11110111110 mixed-capital 1 -11110111110 2,196 1 -11110111110 discount-movie 1 -11110111110 already-public 1 -11110111110 starlet-spangled 1 -11110111110 hawk-hunting 1 -11110111110 Luchino 1 -11110111110 KNBC-TV 1 -11110111110 PC-powerhouse 1 -11110111110 export-management 1 -11110111110 counterstereotypic 1 -11110111110 Leonide 1 -11110111110 operetta-style 1 -11110111110 Canadian-listed 1 -11110111110 exchange-listing 1 -11110111110 Solidarity-backed 1 -11110111110 anti-smut 2 -11110111110 forced-labor 2 -11110111110 inculcating 2 -11110111110 flaxen-haired 2 -11110111110 1,738 2 -11110111110 MCC. 2 -11110111110 left-oriented 2 -11110111110 repopulating 2 -11110111110 2,014 2 -11110111110 7,350,000 2 -11110111110 property-rich 2 -11110111110 60-mile-an-hour 2 -11110111110 1,695,430 2 -11110111110 consumer-staple 2 -11110111110 plurinational 2 -11110111110 unscrambling 2 -11110111110 61,232 2 -11110111110 builtin 2 -11110111110 2,326 2 -11110111110 ransoming 2 -11110111110 non-Mexican 2 -11110111110 currency-sensitive 2 -11110111110 uninsulated 2 -11110111110 Brierley-controlled 2 -11110111110 1,181 2 -11110111110 non-welfare 2 -11110111110 maddened 2 -11110111110 KLM. 2 -11110111110 Tupperware-style 2 -11110111110 biasing 2 -11110111110 low-scoring 2 -11110111110 Bedrich 2 -11110111110 JGI 2 -11110111110 4,006 2 -11110111110 conciliating 2 -11110111110 Movado 2 -11110111110 2,857 2 -11110111110 pop-art 2 -11110111110 1,221 3 -11110111110 tobacco-growing 3 -11110111110 1,143 3 -11110111110 BNL. 3 -11110111110 apprehending 3 -11110111110 despising 3 -11110111110 1,601 3 -11110111110 1,234 3 -11110111110 unsoiled 3 -11110111110 egg-throwing 3 -11110111110 1,419 3 -11110111110 1,119 3 -11110111110 whitewashing 3 -11110111110 1,043 3 -11110111110 anthologies 3 -11110111110 reconstituting 4 -11110111110 Czarist 4 -11110111110 equatorial 4 -11110111110 axing 4 -11110111110 combatting 4 -11110111110 nonparticipating 4 -11110111110 Denmark-based 5 -11110111110 welfare-rights 5 -11110111110 7,050 5 -11110111110 frequenting 5 -11110111110 Nueva 6 -11110111110 1,114 8 -11110111110 harmonizing 9 -11110111110 USX. 10 -11110111110 338,000 12 -11110111110 domesticated 13 -11110111110 both 17465 -11110111110 allaying 18 -11110111111 non-police 1 -11110111111 2,953,800 1 -11110111111 five-to-10 1 -11110111111 elocution 1 -11110111111 LDP-sponsored 1 -11110111111 teak-covered 1 -11110111111 ever-so-plucky 1 -11110111111 pre-arranging 1 -11110111111 weather-based 1 -11110111111 914.402 1 -11110111111 nonoperational 1 -11110111111 unreciprocated 1 -11110111111 deposit-insured 1 -11110111111 innocuous-sounding 1 -11110111111 flickery 1 -11110111111 convalescent-care 1 -11110111111 format-oriented 1 -11110111111 Britain-bound 1 -11110111111 corporate-produced 1 -11110111111 pre-shipment 1 -11110111111 superspecialized 1 -11110111111 70mm 1 -11110111111 bond-selling 1 -11110111111 tax-in-advance 1 -11110111111 5-feet-9 1 -11110111111 long-unemployed 1 -11110111111 seizure-prone 1 -11110111111 3217 1 -11110111111 deals-curbing 1 -11110111111 voice-storage 1 -11110111111 snow-tipped 1 -11110111111 pasted-on 1 -11110111111 sweeter-tasting 1 -11110111111 name-happy 1 -11110111111 labor-favored 1 -11110111111 narcoleptic 1 -11110111111 research-planning 1 -11110111111 subcontinental 1 -11110111111 unclassifiable 1 -11110111111 1,861 1 -11110111111 spitballing 1 -11110111111 once-despised 1 -11110111111 ear-training 1 -11110111111 bigger-than-normal 1 -11110111111 prearrangedtrading 1 -11110111111 1,536,000 1 -11110111111 60-to-70-hour 1 -11110111111 program-fearing 1 -11110111111 10,537,289 1 -11110111111 Gandhian 1 -11110111111 save-the-rigs 1 -11110111111 winter-killed 1 -11110111111 13.724 1 -11110111111 4,348 1 -11110111111 7,387 1 -11110111111 Texas-chartered 1 -11110111111 studentled 1 -11110111111 back-wrenching 1 -11110111111 high-net-worth 1 -11110111111 nongold 1 -11110111111 non-Russian-speaking 1 -11110111111 later-delivery 1 -11110111111 malaria-carrying 1 -11110111111 malarial 1 -11110111111 tariff-relief 1 -11110111111 more-drastic 1 -11110111111 anti-Bolshevik 1 -11110111111 haymaking 1 -11110111111 easy-credit 1 -11110111111 loan-monitoring 1 -11110111111 already-expensive 1 -11110111111 slam-blam 1 -11110111111 Brand-X 1 -11110111111 international-economic 1 -11110111111 immune-related 1 -11110111111 non-secured 1 -11110111111 parent-counseling 1 -11110111111 bat-wielding 1 -11110111111 less-beaten 1 -11110111111 5,031 1 -11110111111 6,776 1 -11110111111 managament 1 -11110111111 10,166 1 -11110111111 1,925,386 1 -11110111111 3,311,691 1 -11110111111 circuitboard 1 -11110111111 well-populated 1 -11110111111 capital-flush 1 -11110111111 59,647 1 -11110111111 gains-tax-cut 1 -11110111111 G-brand 1 -11110111111 vectors 1 -11110111111 fire-proof 1 -11110111111 twenty-five 2 -11110111111 cold-resistant 2 -11110111111 non-Olympic 2 -11110111111 more-convenient 2 -11110111111 action-packed 2 -11110111111 fourteen 2 -11110111111 21.39 2 -11110111111 spiriting 2 -11110111111 33.62 2 -11110111111 1,131 2 -11110111111 twenty-six 2 -11110111111 energy-intensive 2 -11110111111 shop-closing 2 -11110111111 political-study 2 -11110111111 hand-cranked 2 -11110111111 management-endorsed 2 -11110111111 pre-glasnost 2 -11110111111 unrepatriated 3 -11110111111 10-plus 3 -11110111111 benefit-plan 3 -11110111111 Wakako 3 -11110111111 assaying 3 -11110111111 Jewish-owned 3 -11110111111 87,400 4 -11110111111 smoking-related 4 -11110111111 yen-pit 5 -11110111111 innumerable 30 -11110111111 alternating 33 -11110111111 countless 139 -11110111111 several 17400 -11110111111 numerous 1165 -11111000 Girondist 1 -11111000 2301 1 -11111000 Yiddishe 1 -11111000 often-observed 1 -11111000 one-liter 1 -11111000 too-opulent 1 -11111000 polyped 1 -11111000 faith-healer 1 -11111000 LDP-controlled 1 -11111000 baked-good 1 -11111000 share-nearly 1 -11111000 multithrift 1 -11111000 445th 1 -11111000 acquisition-and-expansion 1 -11111000 69-member 1 -11111000 cabinet-like 1 -11111000 almost-no-show 1 -11111000 somber-toned 1 -11111000 Taebaek 1 -11111000 Maryland-sized 1 -11111000 1987-about 1 -11111000 1/4.The 1 -11111000 cancer-rate 1 -11111000 Chess/Checker/Cadet 1 -11111000 insurance-loss 1 -11111000 softball-sized 1 -11111000 127-member 1 -11111000 36-plane 1 -11111000 breading 1 -11111000 bronze-medal 1 -11111000 white-steepled 1 -11111000 Tyson-Givens 1 -11111000 hard-to-measure 1 -11111000 half-dressed 1 -11111000 gold-robed 1 -11111000 anti-liberal 1 -11111000 better-executed 1 -11111000 Industries-Under-Accumulation 1 -11111000 4x100-meter 1 -11111000 forbidden-customer 1 -11111000 full-scale-production 1 -11111000 self-exiled 1 -11111000 less-than-ebullient 1 -11111000 duck-billed 1 -11111000 come-as-you-were 1 -11111000 58-million-piece 1 -11111000 second-zero 1 -11111000 groundworkers 1 -11111000 194th 1 -11111000 one-milliliter 1 -11111000 AZT-acyclovir 1 -11111000 rock-performers 1 -11111000 Wright-Brooks-Dingell 1 -11111000 wolflike 1 -11111000 crunchy-granola 1 -11111000 F-Plan 1 -11111000 Setpoint 1 -11111000 120-Year 1 -11111000 121st 1 -11111000 6-4-or-under 1 -11111000 bus-station 1 -11111000 use-tax 1 -11111000 anti-Arafat 1 -11111000 PA-32 1 -11111000 good-buddy 1 -11111000 creative-financing 1 -11111000 tight-squeeze 1 -11111000 co-conspirators/agents 1 -11111000 two-house 1 -11111000 prosperpous 1 -11111000 130th 1 -11111000 Tefila 1 -11111000 13-9 1 -11111000 since-banned 1 -11111000 six-gram-daily 1 -11111000 valerian 1 -11111000 post-1971 1 -11111000 nine-piece 1 -11111000 buppie 1 -11111000 19-campus 1 -11111000 Rotation 1 -11111000 Last-Chance 1 -11111000 Washington-to-Miami 1 -11111000 Detroit-Washington 1 -11111000 Backer-Bates 1 -11111000 medal-collecting 1 -11111000 165th 1 -11111000 once-tightly 1 -11111000 strategic-bomber 1 -11111000 five-figure-a-year 1 -11111000 long-and-thin 1 -11111000 ILA. 1 -11111000 wadded-up 1 -11111000 Reagan-and-baby-boomer 1 -11111000 30,000-strong 1 -11111000 Virgo 1 -11111000 desk-size 1 -11111000 Italian-language 1 -11111000 conservative-communist 1 -11111000 power-elite 1 -11111000 nine-foot-tall 1 -11111000 AZT-probenecid 1 -11111000 half-normal 1 -11111000 258th 1 -11111000 4,500-man 1 -11111000 Bennett-Bloom 1 -11111000 179th 1 -11111000 4,500-year-old 1 -11111000 gospelly 1 -11111000 top-10-TV-issues 1 -11111000 12-handed 1 -11111000 immigrant-preference 1 -11111000 volume-decliner 1 -11111000 large-engine 1 -11111000 30ish 1 -11111000 Streltsy 1 -11111000 40th-birthday 1 -11111000 spookily 1 -11111000 105-member 1 -11111000 shortstop-second 1 -11111000 120-member 1 -11111000 Messa 1 -11111000 InterFirst-RepublicBank 1 -11111000 SouthernNet-Teleconnect 1 -11111000 2,400-home 1 -11111000 Daimler-MBB 1 -11111000 Takeshita-faction 1 -11111000 75,000-member 1 -11111000 medal-playoff 1 -11111000 Zimbabwe-Rhodesia 1 -11111000 Sunni-run 1 -11111000 5,200-member 1 -11111000 85,000-member 1 -11111000 appearent 1 -11111000 20th-year 1 -11111000 news-junkie 1 -11111000 Schroders-Wertheim 1 -11111000 34-item 1 -11111000 after-run 1 -11111000 dioxin-phobes 1 -11111000 50th-year 1 -11111000 Urraca 1 -11111000 high-reward/high-standard 1 -11111000 Game-Boy 1 -11111000 best-traveled 1 -11111000 400-trolley 1 -11111000 thousand-throat 1 -11111000 twenty-first 1 -11111000 day-laborer 1 -11111000 Tridentine 1 -11111000 burger-heavy 1 -11111000 sleepover 1 -11111000 Lee-Wang 1 -11111000 D'Amato-Lauder 1 -11111000 cro 1 -11111000 180-member 1 -11111000 Conservative-Communist 1 -11111000 offshore-workers 1 -11111000 PEMEX 1 -11111000 22,000-member 2 -11111000 fleshpot 2 -11111000 AFL 2 -11111000 134-seat 2 -11111000 1988-92 2 -11111000 platform-writing 2 -11111000 hatcheck 2 -11111000 1,037 2 -11111000 124th 2 -11111000 Rabelaisian 2 -11111000 tree-covered 2 -11111000 museum-quality 2 -11111000 skin-patch 2 -11111000 60-to-65 2 -11111000 17-man 2 -11111000 five-quarter 2 -11111000 36-truck 2 -11111000 minutest 2 -11111000 teeny-weeny 2 -11111000 topmost 2 -11111000 113th 3 -11111000 105th 3 -11111000 103rd 3 -11111000 ARENA 3 -11111000 114th 3 -11111000 non-interventionist 3 -11111000 toughly 3 -11111000 gangbuster 3 -11111000 155th 3 -11111000 three-headed 3 -11111000 fiscal-second 3 -11111000 1991-92 4 -11111000 September-October 4 -11111000 thirteenth 4 -11111000 fiscal-third 4 -11111000 77th 4 -11111000 200-pound 4 -11111000 54th 4 -11111000 39th 4 -11111000 250th 4 -11111000 Volvo-Renault 4 -11111000 45th 5 -11111000 95th 5 -11111000 fiscal-first 6 -11111000 Northwest-Republic 6 -11111000 150th 6 -11111000 next-to-last 6 -11111000 1986-90 7 -11111000 125th 7 -11111000 40-plus 7 -11111000 350th 7 -11111000 72nd 8 -11111000 deathwatch 8 -11111000 91st 9 -11111000 fiscal-fourth 9 -11111000 28th 10 -11111000 80th 10 -11111000 41st 10 -11111000 33rd 11 -11111000 43rd 12 -11111000 32nd 12 -11111000 29th 14 -11111000 51st 14 -11111000 36th 14 -11111000 37th 14 -11111000 38th 16 -11111000 31st 17 -11111000 49th 17 -11111000 46th 17 -11111000 34th 19 -11111000 35th 20 -11111000 five-party 20 -11111000 24th 23 -11111000 26th 25 -11111000 22nd 25 -11111000 27th 31 -11111000 23rd 31 -11111000 60th 35 -11111000 30th 39 -11111000 40th 52 -11111000 50th 63 -11111000 25th 68 -11111000 16th 101 -11111000 17th 109 -11111000 15th 116 -11111000 13th 126 -11111000 12th 133 -11111000 14th 159 -11111000 11th 186 -11111000 ninth 195 -11111000 10th 241 -11111000 eighth 263 -11111000 seventh 309 -11111000 sixth 447 -11111000 fifth 846 -11111000 second 12269 -11111000 third 8617 -11111000 fourth 5451 -11111001 U.S.-interests 1 -11111001 last-hole 1 -11111001 run-for-cover 1 -11111001 cash-control 1 -11111001 chicken-soup 1 -11111001 1,030,963 1 -11111001 179,286 1 -11111001 sometimes-closed 1 -11111001 1,260-foot 1 -11111001 invariant 1 -11111001 74,130 1 -11111001 franchise-winners 1 -11111001 pre-silver-haired 1 -11111001 modelchangeover 1 -11111001 career-worst 1 -11111001 compulsory-exercise 1 -11111001 cottonwoods 1 -11111001 drill-and-filling 1 -11111001 1988-act 1 -11111001 1946-49 1 -11111001 150,310 1 -11111001 special-activities 1 -11111001 327th 1 -11111001 pin-the-tail-on-the-donkey 1 -11111001 unscrupulously 1 -11111001 four-issue 1 -11111001 Vitas 1 -11111001 octogonally 1 -11111001 no-hassle 1 -11111001 document-discovery 1 -11111001 171,761 1 -11111001 business-opportunities 1 -11111001 game-leading 1 -11111001 nosmoking-at-home 1 -11111001 four-sided 1 -11111001 8-to-9-p.m.-EST 1 -11111001 162,550 1 -11111001 then-unheard-of 1 -11111001 336,885 1 -11111001 public-integrity 1 -11111001 new-comics 1 -11111001 tablelike 1 -11111001 200,000-square 1 -11111001 Haydn-Mozart-Schubert 1 -11111001 16-piece 1 -11111001 slow-ripening 1 -11111001 Mair-Langenscheidt 1 -11111001 Jcars 1 -11111001 Pedases 1 -11111001 33-employee 1 -11111001 weather-forecaster 1 -11111001 trim-a-tree 1 -11111001 mine-ventilation 1 -11111001 extra-chromosome 1 -11111001 541,030 1 -11111001 Kohl-Stoltenberg 1 -11111001 spongier 1 -11111001 650,000-square 1 -11111001 attorney-general 1 -11111001 owner-financed 1 -11111001 private-jet 1 -11111001 bead-and-incense 1 -11111001 Bedouin-like 1 -11111001 short-the-dollar 1 -11111001 square-block 1 -11111001 embroidered-pants 1 -11111001 Group-of-Seven 1 -11111001 spun-cast 1 -11111001 two-hundred 1 -11111001 four-LP 1 -11111001 121,908 1 -11111001 A-320200 1 -11111001 now-lower 1 -11111001 winglike 1 -11111001 synthetical 1 -11111001 150-household 1 -11111001 96,277 1 -11111001 second-richest 1 -11111001 hay-fever 1 -11111001 592-megawatt 1 -11111001 design-competition 1 -11111001 48.36-point 1 -11111001 compassion-crowd 1 -11111001 U.S.-about 1 -11111001 expoxy 1 -11111001 Pretzlcone 1 -11111001 four-coin 1 -11111001 nine-class 1 -11111001 Kefauver-mandated 1 -11111001 more-favored 1 -11111001 tassling 1 -11111001 653,225 1 -11111001 crystal-goblet 1 -11111001 referencing 1 -11111001 Trastevere 2 -11111001 restaurant-division 2 -11111001 ofttimes 2 -11111001 american 2 -11111001 goofiest 2 -11111001 snowiest 2 -11111001 Haralabos 2 -11111001 highest-earning 2 -11111001 Bridesburg 2 -11111001 unrenovated 2 -11111001 bloodcurdling 3 -11111001 Colonies 4 -11111001 blackest 4 -11111001 now-legendary 4 -11111001 propulsive 4 -11111001 first 37757 -11111001 undigested 4 -1111101000 staff-level 1 -1111101000 already-feeble 1 -1111101000 cigarette-consumption 1 -1111101000 mock-heroic 1 -1111101000 arbitrage-bond 1 -1111101000 anti-cyclical 1 -1111101000 auto-exhaust 1 -1111101000 fruit-and-vegetable 1 -1111101000 excess-capacity 1 -1111101000 property-owners 1 -1111101000 six-a-month 1 -1111101000 off-tariff 1 -1111101000 rate-controlled 1 -1111101000 external-debt 1 -1111101000 378-mile 1 -1111101000 non-Colab 1 -1111101000 pre-stock 1 -1111101000 crawling-peg 1 -1111101000 customs-duty 1 -1111101000 unessential 1 -1111101000 300-milligram 1 -1111101000 less-traditional 1 -1111101000 free-ticket 1 -1111101000 Europe-needing 1 -1111101000 ITKA 1 -1111101000 farm-caused 1 -1111101000 ambulatory-health-care 1 -1111101000 sempiternal 1 -1111101000 rural-care 1 -1111101000 buydown 1 -1111101000 super-strict 1 -1111101000 profit-limiting 1 -1111101000 Plentipaks 1 -1111101000 pizza-and-video 1 -1111101000 small-farm 1 -1111101000 store-to-door 1 -1111101000 November/December 1 -1111101000 tourist-advertising 1 -1111101000 disinformative 1 -1111101000 trial-tested 1 -1111101000 low-to-middle 2 -1111101000 weighing-scales 2 -1111101000 license-plate 2 -1111101000 income-paying 2 -1111101000 currrent 2 -1111101000 state-enterprise 2 -1111101000 early-primary 2 -1111101000 anti-allergy 2 -1111101000 three-division 2 -1111101000 two-decade-old 2 -1111101000 rice-subsidy 2 -1111101000 wire-rod 2 -1111101000 won-dollar 2 -1111101000 yet-to-be-filed 2 -1111101000 first-hour 2 -1111101000 just-approved 2 -1111101000 European-designed 2 -1111101000 pre-reform 2 -1111101000 spot-related 2 -1111101000 2,000-person 2 -1111101000 Wrather-owned 2 -1111101000 world-beating 2 -1111101000 post-1985 2 -1111101000 wainscot 2 -1111101000 Starmaster 2 -1111101000 1988/1989 2 -1111101000 countryclub 2 -1111101000 ontime 2 -1111101000 domestic-banking 2 -1111101000 Swintex 2 -1111101000 high-occupancy 2 -1111101000 1.8600-mark 2 -1111101000 disabled-rights 2 -1111101000 Arborite 2 -1111101000 once-vaunted 2 -1111101000 OPEC-imposed 2 -1111101000 purchase-price 2 -1111101000 week-ago 2 -1111101000 1979-1983 2 -1111101000 Hypo-Care 2 -1111101000 quirkier 2 -1111101000 trade-data 2 -1111101000 by-the-numbers 2 -1111101000 prestrike 2 -1111101000 option-exercise 2 -1111101000 anti-solicitation 2 -1111101000 megalomaniacal 2 -1111101000 semi-autobiographical 2 -1111101000 then-existing 2 -1111101000 faster-paced 3 -1111101000 One-for-All 3 -1111101000 Marxist-oriented 3 -1111101000 105-year-old 3 -1111101000 minimum-capital 3 -1111101000 Smith-Perot 3 -1111101000 42,000-mile 3 -1111101000 11-week-old 3 -1111101000 wire-transfer 3 -1111101000 technical-workstation 3 -1111101000 free-zone 3 -1111101000 dermal 3 -1111101000 gift-tax 3 -1111101000 Noriega-controlled 3 -1111101000 Moscow-backed 3 -1111101000 double-stranded 3 -1111101000 industry-run 3 -1111101000 custom-chip 3 -1111101000 radon-gas 3 -1111101000 much-noted 3 -1111101000 federalist 3 -1111101000 double-taxation 4 -1111101000 1981-84 4 -1111101000 130-yen 4 -1111101000 punitive-damages 4 -1111101000 minority-white 4 -1111101000 two-week-long 4 -1111101000 budget-office 4 -1111101000 1,500-member 4 -1111101000 more-realistic 4 -1111101000 Rather-Bush 4 -1111101000 best-laid 4 -1111101000 still-unfolding 4 -1111101000 extrabudgetary 4 -1111101000 SLR 4 -1111101000 100-milligram 5 -1111101000 government-managed 5 -1111101000 DeRance 5 -1111101000 STS 5 -1111101000 single-carrier 5 -1111101000 two-mark 6 -1111101000 12-person 6 -1111101000 Reagan-Nakasone 6 -1111101000 1.80-mark 6 -1111101000 vehicular 6 -1111101000 multitiered 6 -1111101000 more-important 6 -1111101000 risk-benefit 6 -1111101000 air-show 6 -1111101000 70/30 6 -1111101000 highest-level 7 -1111101000 pre-introduction 7 -1111101000 direst 7 -1111101000 then-prevailing 7 -1111101000 gold-card 7 -1111101000 late-April 7 -1111101000 no-layoffs 7 -1111101000 oil-depletion 8 -1111101000 sterling-mark 8 -1111101000 semi-official 8 -1111101000 1981-1982 8 -1111101000 carbon-monoxide 9 -1111101000 three-months 10 -1111101000 pre-strike 10 -1111101000 just-concluded 10 -1111101000 more-recent 10 -1111101000 blood-sugar 10 -1111101000 two-acre 11 -1111101000 Bush-Quayle 14 -1111101000 Flex 16 -1111101000 then-current 17 -1111101000 free-agent 32 -1111101000 hoped-for 39 -1111101000 dollar-yen 58 -1111101000 first-ever 60 -1111101000 seven-nation 65 -1111101000 yen-dollar 73 -1111101000 pre-crash 171 -1111101000 current 17082 -1111101000 prevailing 380 -1111101001 bonds-making 1 -1111101001 beggar-my-neighbor 1 -1111101001 85-77 1 -1111101001 shock-induced 1 -1111101001 15-to-20 1 -1111101001 NRC-ordered 1 -1111101001 127-volume 1 -1111101001 microwavable-product 1 -1111101001 DynaRide 1 -1111101001 large-type 1 -1111101001 Tbilisi-stay 1 -1111101001 record./A 1 -1111101001 20-to-25 1 -1111101001 near-400-pound 1 -1111101001 baked-bean 1 -1111101001 now-soaring 1 -1111101001 623,000-unit 1 -1111101001 125.25-yen 1 -1111101001 QUARTER 1 -1111101001 8-K 1 -1111101001 Christmas-holiday 1 -1111101001 15-4 1 -1111101001 career-home-run 1 -1111101001 big-college 1 -1111101001 buon 1 -1111101001 treaty-sanctioned 1 -1111101001 film-set 1 -1111101001 late-1981 1 -1111101001 sex-educational 1 -1111101001 45-hour 1 -1111101001 pre-Atari 1 -1111101001 million-baht 1 -1111101001 morning-session 1 -1111101001 four-hour-and-18-minute 1 -1111101001 10-grand-a-year 1 -1111101001 long-gilt 1 -1111101001 catalog-division 1 -1111101001 27-1 1 -1111101001 any-quarter 1 -1111101001 rolling-division 1 -1111101001 date-of-death 1 -1111101001 technopop 1 -1111101001 loathesome 1 -1111101001 once-leisurely 1 -1111101001 Hemingway-like 1 -1111101001 69-0 1 -1111101001 flower-art 1 -1111101001 T-28s 1 -1111101001 no-leak 1 -1111101001 envirnomental 1 -1111101001 corrosion-maintenance 1 -1111101001 won-lost-tied 1 -1111101001 personal-best 1 -1111101001 sixth-slowest 1 -1111101001 late-1988 1 -1111101001 just-abandoned 1 -1111101001 junk-financed 2 -1111101001 275,461 2 -1111101001 multi-event 2 -1111101001 six-to-10 2 -1111101001 June-to-September 2 -1111101001 Shearson-Salomon 2 -1111101001 thousand-year 2 -1111101001 once-heralded 2 -1111101001 500,000-acre 2 -1111101001 1,372,000-unit 2 -1111101001 inter-war 2 -1111101001 per-case 2 -1111101001 final-round 2 -1111101001 in-school 2 -1111101001 pre-Easter 3 -1111101001 Ebenezer 3 -1111101001 pre-independence 3 -1111101001 second-consecutive 3 -1111101001 warmer-than-usual 3 -1111101001 near-certain 3 -1111101001 Recruit-Cosmos 3 -1111101001 fourth-consecutive 3 -1111101001 electricity-industry 3 -1111101001 growth-rate 3 -1111101001 sales-growth 4 -1111101001 non-holiday 4 -1111101001 pre-Depression 4 -1111101001 four-to-five 4 -1111101001 pre-Reagan 5 -1111101001 60-hour 5 -1111101001 71st 5 -1111101001 6th 5 -1111101001 three-to-five 5 -1111101001 military-service 6 -1111101001 hair-pulling 6 -1111101001 post-Depression 6 -1111101001 model-changeover 7 -1111101001 billion-share 9 -1111101001 preceeding 10 -1111101001 holiday-shortened 14 -1111101001 foregoing 14 -1111101001 just-completed 21 -1111101001 won-lost 33 -1111101001 preceding 341 -1111101001 previous 7262 -1111101001 prior 2519 -1111101010 course-rating 1 -1111101010 inch-by-inch 1 -1111101010 Soviet-Libyan 1 -1111101010 share-denominated 1 -1111101010 six-furlong 1 -1111101010 purchasing-agents 1 -1111101010 active-rig 1 -1111101010 Dragnetian 1 -1111101010 1297 1 -1111101010 closely-related 1 -1111101010 second-from-top 1 -1111101010 Deng-Zhao 1 -1111101010 Al-Shall 1 -1111101010 Luening-Ussachevsky 1 -1111101010 airline-merger 1 -1111101010 buttonlike 1 -1111101010 future-price 1 -1111101010 turn-on-a-dime 1 -1111101010 tax-swap 1 -1111101010 plucky-ingenue 1 -1111101010 bulk-license 1 -1111101010 256-159 1 -1111101010 still-to-be-negotiated 1 -1111101010 equally-owned 1 -1111101010 Alosa 1 -1111101010 11-volume 1 -1111101010 16-to-20-page 1 -1111101010 travel-advice 1 -1111101010 fast-dealing 1 -1111101010 industrial-output 1 -1111101010 strike-affected 1 -1111101010 81-seat 1 -1111101010 post-verdict 1 -1111101010 gorilla-like 1 -1111101010 once-jubilant 1 -1111101010 Karpoff-Rankine 1 -1111101010 allocation-of-costs 1 -1111101010 Ltf. 1 -1111101010 kleig-light 1 -1111101010 double-roofed 1 -1111101010 Fee-for-Research 1 -1111101010 390-foot 1 -1111101010 vehicle-export 1 -1111101010 not-too-surprising 1 -1111101010 four-play 1 -1111101010 Veckans 1 -1111101010 Nixonian 1 -1111101010 EPO-AZT 1 -1111101010 3,300-employee 1 -1111101010 FT-100 1 -1111101010 overall-demand 1 -1111101010 246-page 1 -1111101010 character-education 1 -1111101010 favorability-unfavorability 1 -1111101010 forbidden-customers 1 -1111101010 CBIPA 1 -1111101010 60,000-household 1 -1111101010 Feltsmans 1 -1111101010 weight-room 1 -1111101010 Ornaments 1 -1111101010 anti-indexing 1 -1111101010 severy 1 -1111101010 instance-by-instance 1 -1111101010 recent-restructuring 1 -1111101010 Labor-Likud 1 -1111101010 hit-toy 1 -1111101010 54-to-46 1 -1111101010 Stones-like 1 -1111101010 UCLA-Rand 1 -1111101010 Mitchell-initiated 1 -1111101010 oft-elaborated 1 -1111101010 dollar-devaluation 1 -1111101010 black-pregnancy 1 -1111101010 77-76 1 -1111101010 10-hottest 1 -1111101010 Edificio 1 -1111101010 problem-bank 1 -1111101010 pro-coal 1 -1111101010 ADAPSO/Broadview 1 -1111101010 TWA-for-sale 1 -1111101010 248-page 1 -1111101010 gene-marker 1 -1111101010 Aerospatiale-Canadair 1 -1111101010 temperature-and-time 1 -1111101010 154-page 1 -1111101010 301-page 1 -1111101010 Commercial-Industrial 1 -1111101010 366-mile 1 -1111101010 Misunderstood 1 -1111101010 landfill-removal 1 -1111101010 famine-aid 1 -1111101010 district-wide 1 -1111101010 business-failures 1 -1111101010 Lieberthal-Oksenberg 1 -1111101010 paradigmatic 1 -1111101010 federal-deficit 1 -1111101010 gene-altered 1 -1111101010 then-covert 1 -1111101010 Rothman-Lichter 1 -1111101010 worth-getting 1 -1111101010 DCCT 1 -1111101010 industrialshare 1 -1111101010 Fairchild-Fujitsu 1 -1111101010 ASCT 1 -1111101010 showboat 1 -1111101010 consumer-sentiment 1 -1111101010 Wellcome-Genentech 1 -1111101010 patent-dispute 1 -1111101010 twice-sweetened 1 -1111101010 All-Share 1 -1111101010 19-city 1 -1111101010 hypothethical 1 -1111101010 defects-investigation 1 -1111101010 30stock 1 -1111101010 pro-testing 1 -1111101010 Summers-Poterba 1 -1111101010 short-falls 1 -1111101010 October-to-October 1 -1111101010 California-spurred 1 -1111101010 voice-recorder 1 -1111101010 corporate-espionage 1 -1111101010 Ansbacher-Guinness 1 -1111101010 no-downpayment 1 -1111101010 budget-overhaul 1 -1111101010 conducting. 1 -1111101010 10-chapter 1 -1111101010 Moynihan-Stafford 1 -1111101010 Bradley-Gephardt 1 -1111101010 bunkerlike 1 -1111101010 nine-city 1 -1111101010 hotel/casinos 1 -1111101010 abortion-funding 1 -1111101010 Curmudgeon 1 -1111101010 often-dour 1 -1111101010 D100 1 -1111101010 trick-play 1 -1111101010 leadingindicator 1 -1111101010 Nacoa 1 -1111101010 95-3 1 -1111101010 tax-harmonization 1 -1111101010 GE-Whirlpool 1 -1111101010 Treasury-bank 1 -1111101010 60th-birthday 1 -1111101010 passenger-traffic 1 -1111101010 16,265-person 1 -1111101010 1,388-student 1 -1111101010 10,000-piece 1 -1111101010 5008 1 -1111101010 30-company 1 -1111101010 49-firm 1 -1111101010 5,000-household 1 -1111101010 269-page 1 -1111101010 living-standards 1 -1111101010 226-page 1 -1111101010 Eighteenth 1 -1111101010 agricole 1 -1111101010 budget-oriented 1 -1111101010 physical-demand 1 -1111101010 288-page 1 -1111101010 29-26 1 -1111101010 11-cent-a-share 1 -1111101010 JCPS 1 -1111101010 AARP/Villers-sponsored 1 -1111101010 S&P500 1 -1111101010 46-page 1 -1111101010 Forstman-Little 1 -1111101010 187-page 1 -1111101010 Kiewitt-Kajima 1 -1111101010 yelped 1 -1111101010 33.3-acre 1 -1111101010 619-plane 1 -1111101010 dollar-tossing 1 -1111101010 quiet-time 1 -1111101010 admissions-overlap 1 -1111101010 narrow-market 1 -1111101010 ESS5 1 -1111101010 N-- 1 -1111101010 open-society 1 -1111101010 Freeman-Hall 1 -1111101010 pre-bull-market 1 -1111101010 Duke-EPA 1 -1111101010 Crest-Colgate 1 -1111101010 Multi-factorial 1 -1111101010 NCEI 1 -1111101010 106-page 1 -1111101010 26-point 1 -1111101010 500Stock 1 -1111101010 Wagner-Brown 1 -1111101010 FT-30 1 -1111101010 AllShares 1 -1111101010 equity-mutual-fund 1 -1111101010 main-course 1 -1111101010 educational-savings-bond 1 -1111101010 fat-is-OK 1 -1111101010 Cezanne-inspired 1 -1111101010 audience-rating 1 -1111101010 691-acre 1 -1111101010 NCNB-FirstRepublic 1 -1111101010 best-documented 1 -1111101010 student-exchange 1 -1111101010 200-mile-wide 1 -1111101010 ABC/Post 1 -1111101010 electronic-link 1 -1111101010 1929-1930 1 -1111101010 always-compact 1 -1111101010 wine-glass 1 -1111101010 now-renowned 1 -1111101010 232-page 1 -1111101010 profits-optimism 1 -1111101010 98-page 1 -1111101010 Chis 1 -1111101010 29-center 1 -1111101010 366-50 1 -1111101010 most-obvious 1 -1111101010 11,600-person 1 -1111101010 87-question 1 -1111101010 381-41 1 -1111101010 86-page 1 -1111101010 brown-colored 1 -1111101010 asset-mix 1 -1111101010 586,000-square-foot 1 -1111101010 heart-medicine 1 -1111101010 capital-flow 1 -1111101010 30-patient 1 -1111101010 259-169 1 -1111101010 already-released 1 -1111101010 civil-tax-penalty 1 -1111101010 389.5-pence 1 -1111101010 tightly-worded 1 -1111101010 29-bushel-per-acre 1 -1111101010 driving-distance 1 -1111101010 50-question 1 -1111101010 pro-Iraq 1 -1111101010 time-allocation 1 -1111101010 oft-delayed 2 -1111101010 longer-than-expected 2 -1111101010 just-announced 2 -1111101010 factory-orders 2 -1111101010 225-share 2 -1111101010 once-quarterly 2 -1111101010 8.9-acre 2 -1111101010 stormiest 2 -1111101010 stock-conversion 2 -1111101010 500stock 2 -1111101010 capital-increase 2 -1111101010 1967-86 2 -1111101010 140-page 2 -1111101010 Khoo-Shearson 2 -1111101010 jostlers 2 -1111101010 300-stock 2 -1111101010 330-pence-a-share 2 -1111101010 new-orders 2 -1111101010 depletion-allowance 2 -1111101010 56-page 2 -1111101010 lagging-indicator 2 -1111101010 Vestron-Hemdale 2 -1111101010 Quilted 2 -1111101010 petroleum-institute 2 -1111101010 690-page 2 -1111101010 100share 2 -1111101010 Polaroid-Shamrock 2 -1111101010 professional-football 2 -1111101010 per-screen 2 -1111101010 Phillips-curve 2 -1111101010 once-sluggish 2 -1111101010 Gillette-Coniston 2 -1111101010 RBRVS 2 -1111101010 330-patient 2 -1111101010 twice-extended 2 -1111101010 12-million-square-foot 2 -1111101010 270-138 2 -1111101010 100-Stock 2 -1111101010 finished-good 2 -1111101010 less-explosive 2 -1111101010 Affaersvaerlden 2 -1111101010 dry-as-dust 2 -1111101010 hospital-mortality 2 -1111101010 100th-anniversary 2 -1111101010 latest-issued 2 -1111101010 255-page 2 -1111101010 Chrysler-AMC 2 -1111101010 rate-cap 2 -1111101010 30share 2 -1111101010 carbon-dating 2 -1111101010 Macro-Economic 3 -1111101010 all-urban 3 -1111101010 most-actives 3 -1111101010 leading-indicators 3 -1111101010 gold-mines 3 -1111101010 72-page 3 -1111101010 consumer-confidence 3 -1111101010 Shree 3 -1111101010 all-ordinaries 3 -1111101010 Meyerson-Rainwater 4 -1111101010 Treasury-securities 4 -1111101010 400-stock 4 -1111101010 strike-marred 4 -1111101010 Longest 4 -1111101010 fastest-falling 4 -1111101010 Affarsvarlden 4 -1111101010 second-most-active 4 -1111101010 name-change 5 -1111101010 WSJ/NBC 5 -1111101010 PATC 5 -1111101010 calf-crop 5 -1111101010 Blanket 5 -1111101010 now-scuttled 5 -1111101010 Harvard-Yale 6 -1111101010 CAC 7 -1111101010 13-state 7 -1111101010 fixed-weight 8 -1111101010 cruelest 9 -1111101010 leading-indicator 12 -1111101010 lastest 12 -1111101010 NET 13 -1111101010 All-Ordinaries 14 -1111101010 Ordinaries 17 -1111101010 industrial-share 19 -1111101010 100-stock 19 -1111101010 30-stock 19 -1111101010 100-Share 21 -1111101010 225-stock 25 -1111101010 producer-price 27 -1111101010 FAZ 29 -1111101010 consumer-price 31 -1111101010 futures-price 34 -1111101010 DAX 43 -1111101010 500-Stock 47 -1111101010 most-recent 61 -1111101010 Seng 105 -1111101010 30-share 459 -1111101010 100-share 611 -1111101010 500-stock 695 -1111101010 latest 9467 -1111101010 Nikkei 1340 -1111101011 scientific-technical-industrial 1 -1111101011 generation-old 1 -1111101011 best-possible 1 -1111101011 shortstory 1 -1111101011 Chicago/Milwaukee 1 -1111101011 frostprone 1 -1111101011 417-yard 1 -1111101011 609-yard 1 -1111101011 288-yard 1 -1111101011 10th-busiest 1 -1111101011 post-thalidomide 1 -1111101011 Stealth-related 1 -1111101011 slow-play 1 -1111101011 three-act 1 -1111101011 wickedest 1 -1111101011 fourth-straight 1 -1111101011 mortgagor 1 -1111101011 old-buddy 1 -1111101011 college-like 1 -1111101011 petro-Islam 1 -1111101011 Barzan 1 -1111101011 Barzani 1 -1111101011 fraud-enforcement 1 -1111101011 187-yard 1 -1111101011 160-yard 1 -1111101011 pilot-error 1 -1111101011 Kemp-Bradley 1 -1111101011 dispute-plagued 1 -1111101011 airport-capacity 1 -1111101011 bad-advice 1 -1111101011 shadowiest 1 -1111101011 modular-assembly 1 -1111101011 Boston-to-Washington 1 -1111101011 lavish-pool 1 -1111101011 6-iron 1 -1111101011 Maryland-Virginia 1 -1111101011 official-unofficial 1 -1111101011 198287 1 -1111101011 Leninist-Stalinist 1 -1111101011 grass-is-greener 1 -1111101011 insolvent-thrift 1 -1111101011 Gorsuch/Watt 1 -1111101011 pesticide-plant 1 -1111101011 4,000-square-mile 1 -1111101011 five-run 1 -1111101011 98-93 1 -1111101011 159-member 1 -1111101011 1.8100-mark 1 -1111101011 May-through-June 1 -1111101011 non-chronological 1 -1111101011 Philippine-proposed 1 -1111101011 scrunched-up 1 -1111101011 one-company-for-life 1 -1111101011 Laziska 1 -1111101011 Thermo-Air 1 -1111101011 Lancaster-Palmdale 1 -1111101011 wheels-off 1 -1111101011 300-employee 1 -1111101011 potato-trading 1 -1111101011 easy-spirited 1 -1111101011 Bayombang 1 -1111101011 efficient-buy 1 -1111101011 civil-law 1 -1111101011 weekly-earnings 1 -1111101011 1985-2000 1 -1111101011 business-pleasure 1 -1111101011 133-nation 1 -1111101011 IBM/clone 1 -1111101011 post-Irangate 1 -1111101011 1,682,000 1 -1111101011 floating-franchise 1 -1111101011 third-act 1 -1111101011 most-studied 1 -1111101011 June-its 1 -1111101011 40,000-ounce 1 -1111101011 dirt-flecked 1 -1111101011 membership-contract 1 -1111101011 postbankruptcy 1 -1111101011 January-July 1 -1111101011 tax-controlling 1 -1111101011 property-tax-slashing 1 -1111101011 cash-for-information 1 -1111101011 still-contending 1 -1111101011 interparliamentary 1 -1111101011 June-September 1 -1111101011 1973-81 1 -1111101011 return-processing 1 -1111101011 1,966,008 1 -1111101011 waste-services 1 -1111101011 93-mile-wide 1 -1111101011 government-prescribed 1 -1111101011 early-May 1 -1111101011 162-seat 1 -1111101011 Lubbock-Midland 1 -1111101011 cost-amortization 1 -1111101011 34-week 1 -1111101011 military-political 1 -1111101011 Kanasai 1 -1111101011 22-lap 1 -1111101011 super-heterodyne 1 -1111101011 post-tax-overhaul 1 -1111101011 huntable 1 -1111101011 non-detectable 1 -1111101011 mid-six 1 -1111101011 high-glitz 1 -1111101011 holiday-affected 1 -1111101011 Technicare-related 1 -1111101011 death-rate 1 -1111101011 Pearson-Trudeau 1 -1111101011 pro-liver 1 -1111101011 128-by-45-foot 1 -1111101011 Danilov-Goldfarb-Zakharov 1 -1111101011 guerrilla-controlled 1 -1111101011 EAO 1 -1111101011 Texaco/Pennzoil 1 -1111101011 career-services 1 -1111101011 personal-type 1 -1111101011 April-through-June 1 -1111101011 Syrian-sponsored 1 -1111101011 small-press 1 -1111101011 street-drug 1 -1111101011 appoximately 1 -1111101011 1961-1980 1 -1111101011 sperm-storage 1 -1111101011 withdrawal-rights 1 -1111101011 Cooper-Eromanga 1 -1111101011 Reagan-Mulroney 1 -1111101011 pre-Rajiv 1 -1111101011 public-comment 1 -1111101011 Portland/Salem 1 -1111101011 52-game 1 -1111101011 throatal 1 -1111101011 Shaare 1 -1111101011 debt-blockage 1 -1111101011 utilty 1 -1111101011 evacuation-planning 1 -1111101011 central-front 1 -1111101011 52-vote 1 -1111101011 IQ-testing 1 -1111101011 pre-civil-rights 1 -1111101011 Bellovian 1 -1111101011 productivity-change 1 -1111101011 bare-bone 1 -1111101011 29,028-foot 1 -1111101011 Steger-Schurke 1 -1111101011 automotive-supplies 1 -1111101011 Adams-Morgan 1 -1111101011 still-traumatized 1 -1111101011 86-to-88 1 -1111101011 Carter-Gladman 1 -1111101011 computer-arts 1 -1111101011 ignition-control 1 -1111101011 low-to-mid- 1 -1111101011 Aspen/Snowmass 1 -1111101011 OPEC-intensive 1 -1111101011 early-March 1 -1111101011 Saturn-inflated 1 -1111101011 Durban-Pietermartizburg 1 -1111101011 high-use 1 -1111101011 Karpov-Kasparov 1 -1111101011 66,864 1 -1111101011 Eisenhower-Khrushchev 1 -1111101011 sixth-busiest 1 -1111101011 1957-77 1 -1111101011 fastest-gaining 1 -1111101011 peak-travel 1 -1111101011 petroleum-export 1 -1111101011 1986-96 1 -1111101011 1985-95 1 -1111101011 U.S.ISoviet 1 -1111101011 all-registered 1 -1111101011 Iran-arms/contra 1 -1111101011 4,500-strong 1 -1111101011 7,500-acre 1 -1111101011 long-accelerating 1 -1111101011 not-simple 1 -1111101011 horse-farm 1 -1111101011 Geysers 1 -1111101011 1950-65 1 -1111101011 Broesky 1 -1111101011 old-and-tried 1 -1111101011 rock-school 1 -1111101011 1986-91 1 -1111101011 mail-order-catalog 1 -1111101011 pre-implant 1 -1111101011 Tyson-Smith 1 -1111101011 share-net 1 -1111101011 concert-playing 1 -1111101011 February-through-April 1 -1111101011 fuel-overpressurization 1 -1111101011 AID-supported 1 -1111101011 Asia-Australasia 1 -1111101011 Meese-Eastland 1 -1111101011 May-through-August 1 -1111101011 pennywise 1 -1111101011 crystal-boundary 1 -1111101011 post-recession 1 -1111101011 January-to-August 1 -1111101011 700-franc 1 -1111101011 32-man 1 -1111101011 under-100,000 1 -1111101011 9.7-million-ton 1 -1111101011 six-firm 1 -1111101011 AIDS-inspired 1 -1111101011 shortest-priced 1 -1111101011 prioryear 1 -1111101011 flower-filled 1 -1111101011 grandprize 1 -1111101011 transfer-tax 1 -1111101011 computer-learning 1 -1111101011 Northrop-Park 1 -1111101011 multimillion-square-foot 1 -1111101011 retirement-funding 1 -1111101011 store-owner 1 -1111101011 Brunel 1 -1111101011 Us-against-Them 1 -1111101011 below-expectation 1 -1111101011 X-1 1 -1111101011 Dresden-like 1 -1111101011 outdoor-sportswear 1 -1111101011 clematis-rose-peony-iris 1 -1111101011 450-yard 1 -1111101011 product-piracy 1 -1111101011 453-yard 1 -1111101011 Sukhumi 1 -1111101011 Falwell-Robertson 1 -1111101011 long-proven 1 -1111101011 smaller-issue 1 -1111101011 Anglophone 1 -1111101011 1969-88 1 -1111101011 precomputer 1 -1111101011 early-1920s 1 -1111101011 Pravdaesque 1 -1111101011 no-documents 1 -1111101011 Dukakis-opposed 1 -1111101011 oxygen-sniffing 1 -1111101011 corporate-return 1 -1111101011 liver-enzyme 1 -1111101011 18-to-49-year-old 1 -1111101011 boobyhatch 1 -1111101011 1910-1932 1 -1111101011 baby-products 1 -1111101011 slimmer-than-expected 1 -1111101011 1946-52 1 -1111101011 post-competition 1 -1111101011 pre-CD 1 -1111101011 brush-fire-fighting 1 -1111101011 inter-year 1 -1111101011 April-to-June 1 -1111101011 wordiness/commercial 1 -1111101011 Nitze-Kvitsinsky 1 -1111101011 Vanderhoof 1 -1111101011 Soviet-suppressed 1 -1111101011 October-February 1 -1111101011 oil-from-coal 1 -1111101011 storage-life 1 -1111101011 cache-memory 1 -1111101011 seldom-acknowledged 1 -1111101011 Washington-Baltimore-Richmond 1 -1111101011 post-Chun 1 -1111101011 visual-arts 1 -1111101011 never-implemented 1 -1111101011 psyched-up 1 -1111101011 two-China 1 -1111101011 1978-1988 1 -1111101011 Youghal/Killeagh 1 -1111101011 thermostable 1 -1111101011 96-country 1 -1111101011 Sabra-Shatilla 1 -1111101011 Reagan-Congress 1 -1111101011 Swaggert 1 -1111101011 erasability 1 -1111101011 140-member 1 -1111101011 liberal-moderate 1 -1111101011 gravy-train 1 -1111101011 already-ample 1 -1111101011 just-passed 1 -1111101011 1988-91 1 -1111101011 technically-important 1 -1111101011 senile-president 1 -1111101011 frivolous-buying 1 -1111101011 1972-1988 1 -1111101011 North-Poindexter 1 -1111101011 deficit-debt 1 -1111101011 1991-93 1 -1111101011 abrasion 1 -1111101011 Brentsupply 1 -1111101011 433-day 1 -1111101011 Sajaiyeh 1 -1111101011 444-day 1 -1111101011 134-acre 1 -1111101011 Gravesend-Bensonhurst 1 -1111101011 pancake-flat 1 -1111101011 oil-bonds 1 -1111101011 1975-84 1 -1111101011 prelisting 1 -1111101011 already-long 1 -1111101011 Damman 1 -1111101011 bargain-book 1 -1111101011 post-Carthyism 1 -1111101011 inner-harbor 1 -1111101011 1,652,000 1 -1111101011 quill-pen 1 -1111101011 defense-business 1 -1111101011 Muncie-Peru 1 -1111101011 more-than- 1 -1111101011 already-troubling 1 -1111101011 1914-39 1 -1111101011 ex-Cub 1 -1111101011 locust-control 1 -1111101011 August-to-December 1 -1111101011 10-county 1 -1111101011 X-plant 1 -1111101011 then-speaker 1 -1111101011 strike-ravaged 1 -1111101011 now-meaningless 1 -1111101011 1973-86 1 -1111101011 post-conciliar 1 -1111101011 49-week 1 -1111101011 assertiveness-training 1 -1111101011 breast-enlargement 1 -1111101011 Baa-2-rated 1 -1111101011 client-conflict 1 -1111101011 suavest 1 -1111101011 fifth-busiest 1 -1111101011 d'Estaing-Barre 1 -1111101011 Hunt-bank 1 -1111101011 January-to-April 1 -1111101011 bank-settlement 1 -1111101011 pre-high-tech 1 -1111101011 not-so-super 1 -1111101011 capital-flight 1 -1111101011 four-block 1 -1111101011 1986-bill 1 -1111101011 flight-ramp 1 -1111101011 still-sizable 1 -1111101011 canape 1 -1111101011 1960-80 1 -1111101011 less-formal 1 -1111101011 12-year-useful-life 1 -1111101011 below- 2 -1111101011 sex-and-spy 2 -1111101011 January-August 2 -1111101011 bazaar-like 2 -1111101011 in-camera 2 -1111101011 third-busiest 2 -1111101011 160-decibel 2 -1111101011 below-target 2 -1111101011 January-to-March 2 -1111101011 February-March 2 -1111101011 1988-1990 2 -1111101011 February-April 2 -1111101011 core-calving 2 -1111101011 post-segregation 2 -1111101011 then-estimated 2 -1111101011 special-project 2 -1111101011 health-statistics 2 -1111101011 Seplan 2 -1111101011 26-piece 2 -1111101011 Kohl-Gorbachev 2 -1111101011 post-2010 2 -1111101011 California-only 2 -1111101011 1,614,000 2 -1111101011 first-night 2 -1111101011 January-to-June 2 -1111101011 550-yard 2 -1111101011 radical/moderate 2 -1111101011 112-year-old 2 -1111101011 mid-single 2 -1111101011 copywriting 2 -1111101011 youth-unemployment 2 -1111101011 Pentagon-procurement 2 -1111101011 1969-1971 2 -1111101011 230-day 2 -1111101011 Haddads 2 -1111101011 latest-year 2 -1111101011 1980-1985 2 -1111101011 '79-'80-'81 2 -1111101011 intertidal 2 -1111101011 July-to-September 2 -1111101011 1987-1990 2 -1111101011 six-quarter 2 -1111101011 par-five 2 -1111101011 Iranian-contra 3 -1111101011 1979-84 3 -1111101011 IranContra 3 -1111101011 1.70-mark 3 -1111101011 low-to-mid 3 -1111101011 21-week 3 -1111101011 23-state 3 -1111101011 senior-citizens 3 -1111101011 record-tying 3 -1111101011 March/April 3 -1111101011 Boston-Washington 3 -1111101011 -the 3 -1111101011 January-May 3 -1111101011 arms-for-Iran 3 -1111101011 ozone-depletion 3 -1111101011 week-earlier 4 -1111101011 April-September 4 -1111101011 March-April 4 -1111101011 atmospheric-research 4 -1111101011 Bush-Gorbachev 4 -1111101011 39-week 4 -1111101011 interwar 4 -1111101011 over- 4 -1111101011 June-July 5 -1111101011 May-June 5 -1111101011 40-week 5 -1111101011 Iran-Contras 5 -1111101011 under- 5 -1111101011 64-cent 6 -1111101011 Iran-arms 6 -1111101011 October-March 6 -1111101011 24-week 6 -1111101011 Dammam 6 -1111101011 month-earlier 7 -1111101011 sine 8 -1111101011 chicken-and-egg 8 -1111101011 low-water 9 -1111101011 incubation 10 -1111101011 popular-vote 10 -1111101011 yearago 10 -1111101011 sex-spy 10 -1111101011 previous-year 14 -1111101011 demilitarized 15 -1111101011 latest-quarter 17 -1111101011 Iran-Nicaragua 18 -1111101011 300-day 18 -1111101011 prior-year 21 -1111101011 July-September 21 -1111101011 January-March 24 -1111101011 April-June 27 -1111101011 yearearlier 38 -1111101011 Iran-contra 47 -1111101011 cooling-off 52 -1111101011 just-ended 56 -1111101011 year-before 66 -1111101011 mid- 72 -1111101011 nine-month 250 -1111101011 year-ago 1419 -1111101011 year-earlier 5327 -1111101011 Iran-Contra 1513 -111110110 CL-289 1 -111110110 already-distressed 1 -111110110 tubular-products 1 -111110110 engineering-development 1 -111110110 in-force 1 -111110110 business-gift 1 -111110110 seventh-best 1 -111110110 export-linked 1 -111110110 Technimont 1 -111110110 3,904 1 -111110110 air-monitoring 1 -111110110 fast-consolidating 1 -111110110 52-acre 1 -111110110 bureaucrat-mandated 1 -111110110 DONUTS 1 -111110110 Ontario-owned 1 -111110110 audio/video 1 -111110110 electronic-photography 1 -111110110 highly-competitive 1 -111110110 then-radical 1 -111110110 Afrikaner-dominated 1 -111110110 SEIBU 1 -111110110 business-books 1 -111110110 epicene 1 -111110110 medical-reviewing 1 -111110110 even-lower 1 -111110110 55-cents-a-gallon 1 -111110110 then-weakening 1 -111110110 bullion-purchasing 1 -111110110 margin-account 1 -111110110 often-salty 1 -111110110 philanthropic-services 1 -111110110 Gibco 1 -111110110 budget-destroying 1 -111110110 10,000-mile 1 -111110110 meat-snack 1 -111110110 VictorMarsh 1 -111110110 Eastern-U.S. 1 -111110110 20,000-man 1 -111110110 radical-left 1 -111110110 longrunning 1 -111110110 needle-and-thread 1 -111110110 non-prison 1 -111110110 auto-resale-services 1 -111110110 82586 1 -111110110 second-deadliest 1 -111110110 Optimum 1 -111110110 Wingaersheek 1 -111110110 55-company 1 -111110110 predominently 1 -111110110 Ultratech 1 -111110110 Comedia 1 -111110110 Galion 1 -111110110 much-expanded 1 -111110110 dissension-ridden 1 -111110110 flippered 1 -111110110 Atacama 1 -111110110 Shia-Moslem 1 -111110110 petroleum-dependent 1 -111110110 altitude-signaling 1 -111110110 8,500-man 1 -111110110 mineral-marketing 1 -111110110 electrical-conductor 1 -111110110 100-largest 1 -111110110 demimondaine 1 -111110110 Jaguar-like 1 -111110110 testi 1 -111110110 bulkiest 1 -111110110 stain-repelling 1 -111110110 social-worker 1 -111110110 service-led 1 -111110110 recession-struck 1 -111110110 ALI 1 -111110110 M-109 1 -111110110 far-smaller 1 -111110110 paperback-sized 1 -111110110 history-minded 1 -111110110 non-banking-related 1 -111110110 spiciest 1 -111110110 CGR 1 -111110110 228-member 1 -111110110 23rd-largest 1 -111110110 glut-plagued 1 -111110110 Hammond-based 1 -111110110 low-death-rate 1 -111110110 third-largest-selling 1 -111110110 525-pence 1 -111110110 soon-to-be-privatized 1 -111110110 Comau 1 -111110110 statechartered 1 -111110110 wood-pulp 1 -111110110 Boeing-dependent 1 -111110110 Athabaska 1 -111110110 eighth-best 1 -111110110 mush-mouth 1 -111110110 Dutral 1 -111110110 then-groundbreaking 1 -111110110 Warner-Chris-Craft 1 -111110110 most-comprehensive 1 -111110110 Oxychem 1 -111110110 wound-treatment 1 -111110110 Sealtron 1 -111110110 123rd 1 -111110110 plaque-killing 1 -111110110 ExciMed 1 -111110110 Vojvodie 1 -111110110 43,537 1 -111110110 outer-continental 1 -111110110 Intertrading 1 -111110110 holey 1 -111110110 drought-reduced 1 -111110110 1,210-member 1 -111110110 al-Bayan 1 -111110110 highly-regulated 1 -111110110 stiff-papered 1 -111110110 auto-testing 1 -111110110 roofing-products 1 -111110110 Trieste-based 1 -111110110 2,900-hectare 1 -111110110 more-classic 1 -111110110 unreacted 1 -111110110 Selbaie 1 -111110110 Phildelphia 1 -111110110 imported-vehicle 1 -111110110 second-top-grossing 1 -111110110 ash-covered 1 -111110110 In-Sink-Erator 1 -111110110 59-36 1 -111110110 Technium 1 -111110110 proud-to-be-perky 1 -111110110 once-controversial 1 -111110110 94,218 1 -111110110 3,000-stock 1 -111110110 412-seat 1 -111110110 five-biggest 1 -111110110 two-electrode 1 -111110110 then-forthcoming 1 -111110110 morale-sapping 1 -111110110 still-mountainous 1 -111110110 19-newspaper 1 -111110110 fountain-sales 1 -111110110 three-head 1 -111110110 37,000-mile 1 -111110110 Microtronics 1 -111110110 london 1 -111110110 MESSERSCHMITT-BOEL 1 -111110110 me-first 1 -111110110 Toronto-developed 1 -111110110 mushiest 1 -111110110 Trans-Con 1 -111110110 6,018,356 1 -111110110 crones 1 -111110110 Patrini 1 -111110110 catamite 1 -111110110 three-largest 1 -111110110 amibitious 1 -111110110 seat-cushion 1 -111110110 radar-plane 1 -111110110 14-plant 1 -111110110 funeral-supply 1 -111110110 misappropriation-of-information 1 -111110110 1,042-page 1 -111110110 knife-edged 1 -111110110 88,000-member 1 -111110110 Khlong 1 -111110110 Califo 1 -111110110 town-planning 1 -111110110 Tatas 1 -111110110 Gumps 1 -111110110 top-performance 1 -111110110 biggest-single 1 -111110110 foam-package 1 -111110110 capitalist-imperialist 1 -111110110 chrome-nickel 1 -111110110 anti-biographical 1 -111110110 crane-leasing 1 -111110110 government-products 1 -111110110 231,660 1 -111110110 administration-negotiated 1 -111110110 too-exquisite 1 -111110110 balaclava-masked 1 -111110110 commercial-mortgage 1 -111110110 2,000-mile-long 1 -111110110 non-tactical 1 -111110110 Fallon-based 1 -111110110 T-45TS 1 -111110110 now-crying 1 -111110110 state-paid 1 -111110110 GHHensley 1 -111110110 JVX 1 -111110110 accounting-programs 1 -111110110 grocery-business 1 -111110110 greencard 1 -111110110 Hunt-owned 1 -111110110 large-dollar 1 -111110110 fourteenth 1 -111110110 CCTV 1 -111110110 group-practice-model 1 -111110110 bias-ply 1 -111110110 Hydro-Matic 1 -111110110 chocolate-flavored 1 -111110110 safety-equipment 1 -111110110 near-worthless 1 -111110110 faster-running 1 -111110110 already-hefty 1 -111110110 then-usual 1 -111110110 36-office 1 -111110110 mortgage-information 1 -111110110 imperishable 1 -111110110 260,000-member 1 -111110110 material-service 1 -111110110 semantical 1 -111110110 Tchaikovsky/Petipa 1 -111110110 Arlington-based 1 -111110110 700-odd 1 -111110110 convertible-note 1 -111110110 hypercompetitive 1 -111110110 restricted-fare 1 -111110110 retail-furniture 1 -111110110 most-battered 1 -111110110 Keizaiki 1 -111110110 B.H.24 1 -111110110 military-semiconductor 1 -111110110 blueribbon 1 -111110110 325-acre 1 -111110110 more-forthcoming 1 -111110110 Wheaties-box 1 -111110110 Main-Street 1 -111110110 Nazi-tracking 1 -111110110 57-company 1 -111110110 rare-comics 1 -111110110 winged-horse 1 -111110110 fourthlargest 1 -111110110 hide-bound 1 -111110110 material-technical 1 -111110110 AIDS-wracked 1 -111110110 Affirmative-Action 1 -111110110 Tote-A-Poke 1 -111110110 A-2-rated 1 -111110110 171-year-old 1 -111110110 fast-gaining 1 -111110110 ankh 1 -111110110 flag-carrier 1 -111110110 nondirectory 1 -111110110 ever-more-established 1 -111110110 ERCO 1 -111110110 1,487 1 -111110110 Uhuru 1 -111110110 commodity-chemicals 1 -111110110 Greenland-bound 1 -111110110 off-priced 1 -111110110 general-affairs 1 -111110110 non-sell 1 -111110110 Panorex 1 -111110110 already-slumping 1 -111110110 fine-art 1 -111110110 once-radical 1 -111110110 concrete-and-tile 1 -111110110 UCAR 1 -111110110 Forsvarets 1 -111110110 Al-Ahmadi 1 -111110110 biomedical-products 1 -111110110 lobsterlike 1 -111110110 Taverns 1 -111110110 gyspum 1 -111110110 open-fronted 1 -111110110 1,100-member 1 -111110110 420-member 1 -111110110 bullfrog-faced 1 -111110110 Anglicized 1 -111110110 unbarked 1 -111110110 revisionary 1 -111110110 KL 1 -111110110 dog-meat 1 -111110110 seaplane 1 -111110110 least-efficient 1 -111110110 internal-investigations 1 -111110110 small-account 1 -111110110 110-person 1 -111110110 Versateller 1 -111110110 scanner-system 1 -111110110 Farmoplant 1 -111110110 87-75 1 -111110110 oil-and-energy 1 -111110110 McGhan 1 -111110110 internationalenergy 1 -111110110 108.26point 1 -111110110 pure-play 1 -111110110 Bulgari 1 -111110110 four-car 1 -111110110 DC-8-73CF 1 -111110110 Cyrillic-language 1 -111110110 still-falling 1 -111110110 holiday-curtailed 1 -111110110 photochemicals 1 -111110110 29-member 1 -111110110 comatose-brother 1 -111110110 anti-cocaine 1 -111110110 132-store 1 -111110110 EA-International 1 -111110110 office-dominated 1 -111110110 16th-biggest 1 -111110110 10th-biggest 1 -111110110 eponymously 1 -111110110 most-valuable-player 1 -111110110 flesh-and-bone 1 -111110110 154-city 1 -111110110 30-lawyer 1 -111110110 choky 1 -111110110 bigget 1 -111110110 Medicaid-style 1 -111110110 bulk-penicillin 1 -111110110 155-seat 1 -111110110 1,639 1 -111110110 merger-minded 1 -111110110 U.S-built 1 -111110110 sixthlargest 1 -111110110 Italsider 1 -111110110 1,300-dealer 1 -111110110 166th-ranked 1 -111110110 materials-storage 1 -111110110 aid-policy 1 -111110110 cholesterol-making 1 -111110110 air-cured 1 -111110110 2,000-share 1 -111110110 Chrysler/Plymouth 1 -111110110 4TEL 1 -111110110 biocommunications 1 -111110110 Argyle 1 -111110110 guerrilla-aligned 1 -111110110 397-page 1 -111110110 Snia-Bpd 1 -111110110 long-regulated 1 -111110110 58,000-square-foot 1 -111110110 70-branch 1 -111110110 director-liability 1 -111110110 Audiotone 1 -111110110 coupon-book 1 -111110110 still-simpler 1 -111110110 civil-airplane-engine 1 -111110110 55,300 1 -111110110 liquor-at-the-table 1 -111110110 ultra-successful 1 -111110110 biggest-known 1 -111110110 biggest-grossing 1 -111110110 law-enforcement-fleet 1 -111110110 Togliattigrad 1 -111110110 speed-dial 1 -111110110 Ivrea-based 1 -111110110 overseas-finance 1 -111110110 six-branch 1 -111110110 job-generating 1 -111110110 million-man 1 -111110110 already-struggling 1 -111110110 Cerrejon 1 -111110110 high-prestige 1 -111110110 232-cubic-inch 1 -111110110 3,798 1 -111110110 No.4-ranked 1 -111110110 precious-metals-marketing 1 -111110110 34,000-employee 1 -111110110 specialty-re-insuring 1 -111110110 200,000-strong 1 -111110110 Tamil-Sinhalese 1 -111110110 Jamaat 1 -111110110 80-pound 1 -111110110 Phoenix-area 1 -111110110 planetary-science 1 -111110110 sales-planning 1 -111110110 bankruptcy-filing 1 -111110110 Westport-based 1 -111110110 twelfth-largest 1 -111110110 community-newspaper 1 -111110110 most-compliant 1 -111110110 once-exploding 1 -111110110 20-seat 1 -111110110 coated-board 1 -111110110 heaviest-hitting 1 -111110110 83-foot 1 -111110110 Tiberios 1 -111110110 uncarbonated 1 -111110110 2401 1 -111110110 lese 1 -111110110 dancing-Barbie 1 -111110110 field-engineering 1 -111110110 35th-largest 1 -111110110 nomination-clinching 1 -111110110 TG&Y 1 -111110110 athletc 1 -111110110 bank-check 1 -111110110 dividend-trading 1 -111110110 166,692 1 -111110110 OSHA-designed 1 -111110110 precision-flying 1 -111110110 East-Central 1 -111110110 Salif 1 -111110110 10th-leading 1 -111110110 marijuana-smuggling 1 -111110110 most-cherished 1 -111110110 ever-crisper 1 -111110110 NetExpress 1 -111110110 convenience-products 1 -111110110 Cobriza 1 -111110110 aerospace-optical 1 -111110110 optical-sciences 1 -111110110 five-block 1 -111110110 anti-gout 1 -111110110 retail-finance 1 -111110110 420-seat 1 -111110110 not-prime-rated 1 -111110110 36-branch 1 -111110110 4,688 1 -111110110 766,450 1 -111110110 4,692 1 -111110110 laugh-a-minute 1 -111110110 rigid-packaging 1 -111110110 nonguaranteed 1 -111110110 individual-banking 1 -111110110 then-largest 1 -111110110 corporate-related 1 -111110110 4,691 1 -111110110 oft-losing 1 -111110110 rule-bound 1 -111110110 empty-chair 1 -111110110 Isotron 1 -111110110 laminar 1 -111110110 Abekas 1 -111110110 prehistoric-looking 1 -111110110 Klong 1 -111110110 now-sand-covered 1 -111110110 one-child-per-couple 1 -111110110 best-placed 1 -111110110 Gestnord 1 -111110110 Heptavax-B 1 -111110110 less-renowned 1 -111110110 wavelike 1 -111110110 now-stablized 1 -111110110 170th 1 -111110110 44,800 1 -111110110 3/80 1 -111110110 credit-driven 1 -111110110 still-provisional 1 -111110110 14-company 1 -111110110 long-inflexible 1 -111110110 Pumwani 1 -111110110 equipment-marketing 1 -111110110 DDM-1000 1 -111110110 now-bewildered 1 -111110110 general-insurance 1 -111110110 broadcast-services 1 -111110110 no-more-greenmail 1 -111110110 Stinking 1 -111110110 third-richest 1 -111110110 three-doctor 1 -111110110 earlier-scheduled 1 -111110110 least-restrictive 1 -111110110 Alte 1 -111110110 well-articulated 1 -111110110 2,106 1 -111110110 womens-wear 1 -111110110 publishing-systems-business 1 -111110110 Dumex 1 -111110110 Baltimorebased 1 -111110110 HomeLenders 1 -111110110 Phoenician 1 -111110110 593,691 1 -111110110 43rd-largest 1 -111110110 Easternmost 1 -111110110 Northbridge 1 -111110110 dark-wood 1 -111110110 palm-studded 1 -111110110 14-largest 1 -111110110 quarter-century-long 1 -111110110 32-city 1 -111110110 Jacquard 1 -111110110 3,126 1 -111110110 natural-gas-reserve 1 -111110110 Irgun 1 -111110110 more-dovish 1 -111110110 deepest-held 1 -111110110 double-ribbed 1 -111110110 GOP-designed 1 -111110110 TrendSights 1 -111110110 still-mourned 1 -111110110 cross-channel 1 -111110110 good-industrial-design 1 -111110110 dark-side 1 -111110110 psychological/supernatural 1 -111110110 100-selection 1 -111110110 Prescriptives 1 -111110110 Jenn-Air 1 -111110110 long-isolated 1 -111110110 corrosion-prevention 1 -111110110 now-challenged 1 -111110110 closed-market 1 -111110110 8,014 1 -111110110 shifter 1 -111110110 area-wide 1 -111110110 Stering 1 -111110110 1+ 1 -111110110 all-first-class 1 -111110110 least-leveraged 1 -111110110 career-switching 1 -111110110 content-oriented 1 -111110110 39th-largest 1 -111110110 Foster's-brand 1 -111110110 now-small 1 -111110110 SH-11 1 -111110110 17-person 1 -111110110 SA-12 1 -111110110 specialty-aviation 1 -111110110 DM2,800 1 -111110110 one-branch 1 -111110110 microwave-products 1 -111110110 once-bloated 1 -111110110 two-and-a-half-year 1 -111110110 46th-largest 1 -111110110 10,600-broker 1 -111110110 Vigor 1 -111110110 25,000-man 1 -111110110 get-in-before-they-soar 1 -111110110 550,000-ton-a-year 1 -111110110 3-meter 1 -111110110 2,207,380 1 -111110110 S&L-deposit 1 -111110110 Uusi 1 -111110110 16-state 1 -111110110 J-2 1 -111110110 European-branch 1 -111110110 Dialight 1 -111110110 oil-country 1 -111110110 best-watched 1 -111110110 automobile-finance 1 -111110110 import-damaged 1 -111110110 34,000-square-foot 1 -111110110 steel-faced 1 -111110110 block-wide 1 -111110110 instrument-products 1 -111110110 84-seat 1 -111110110 diagnostic-systems 1 -111110110 designated-hitter 1 -111110110 three-golds 1 -111110110 ex-record 1 -111110110 multi-spired 1 -111110110 precision-engineering 1 -111110110 Apennine 1 -111110110 Interamics 1 -111110110 insider-information 1 -111110110 price-oriented 1 -111110110 market-services 1 -111110110 Sacremento 1 -111110110 aircraft-engines 1 -111110110 Fourtrax 1 -111110110 I/S 1 -111110110 Goldwaters 1 -111110110 loose-cannon 1 -111110110 4-12 1 -111110110 Cinecitta 1 -111110110 phone-bank 1 -111110110 Xindu 1 -111110110 highest-grossing 1 -111110110 Prairie-region 1 -111110110 chocolate-syrup 1 -111110110 passenger-reservation 1 -111110110 Vietnam-vintage 1 -111110110 electric-shaver 1 -111110110 antibaldness 1 -111110110 retail-brokers 1 -111110110 47-store 1 -111110110 stale-smelling 1 -111110110 federal-systems 1 -111110110 barrier-reducing 1 -111110110 already-shrunken 1 -111110110 forest-industry 1 -111110110 ss-town 1 -111110110 1985-89 1 -111110110 BeairdPoulan/Weed 1 -111110110 83-store 1 -111110110 Prime-1-rated 1 -111110110 SNA 1 -111110110 Ghent-based 1 -111110110 CICS 1 -111110110 Potty-Time 1 -111110110 121-member 1 -111110110 740th-biggest 1 -111110110 wild-blueberry 1 -111110110 Emmental 1 -111110110 middle-of-the-lineup 1 -111110110 Robinair 1 -111110110 4,600-plane 1 -111110110 Obed-Marsh 1 -111110110 climate-change 1 -111110110 batten-down-the-hatches 1 -111110110 Walk-In 1 -111110110 Dependencia 1 -111110110 46-store 1 -111110110 most-valued 1 -111110110 2,500-acre 1 -111110110 homeclub 1 -111110110 2,233 1 -111110110 graphic-systems 2 -111110110 Beaumont-based 2 -111110110 feeblest 2 -111110110 1/2-foot-tall 2 -111110110 Taystee 2 -111110110 early-season 2 -111110110 biggest-producing 2 -111110110 dual-lens 2 -111110110 PayPoint 2 -111110110 heat-processing-systems 2 -111110110 second-largest-selling 2 -111110110 fifth-most-populous 2 -111110110 newswriting 2 -111110110 15,000-member 2 -111110110 most-prestigious 2 -111110110 growth-regulating 2 -111110110 Pensacola-based 2 -111110110 knottiest 2 -111110110 tightknit 2 -111110110 cocoa-products 2 -111110110 Worldperks 2 -111110110 highcost 2 -111110110 third-person 2 -111110110 printing-systems 2 -111110110 Atlac 2 -111110110 ticket-buying 2 -111110110 oil-field-equipment 2 -111110110 IBRD 2 -111110110 Bagnoli 2 -111110110 surface-combustion 2 -111110110 loveliest 2 -111110110 15th-biggest 2 -111110110 58-store 2 -111110110 third-fastest-growing 2 -111110110 number-two 2 -111110110 Al-Sagar 2 -111110110 then-struggling 2 -111110110 pyramidal 2 -111110110 PageWilliams 2 -111110110 Paramins 2 -111110110 below-ground 2 -111110110 SeeQuence 2 -111110110 Electro-Motive 2 -111110110 white-page 2 -111110110 chloracetanilide 2 -111110110 500-stock-index 2 -111110110 auto-lending 2 -111110110 snap-together 2 -111110110 wishywashy 2 -111110110 50-meter 2 -111110110 Rdb 2 -111110110 90-member 2 -111110110 single-largest 2 -111110110 most-favored 2 -111110110 Kendall/Amalie 2 -111110110 90-store 2 -111110110 1.5-gallon 2 -111110110 biggest-circulation 2 -111110110 once-sacrosanct 2 -111110110 900-member 2 -111110110 Kydex 2 -111110110 52-lawyer 2 -111110110 best-loved 2 -111110110 Lantirn 2 -111110110 800,000-man 2 -111110110 northern-most 2 -111110110 psychiatric-hospital 2 -111110110 26th-largest 2 -111110110 Elmgrove 2 -111110110 40-yard 2 -111110110 Palouse 2 -111110110 English-born 2 -111110110 237,000-person 2 -111110110 frailest 2 -111110110 Fanta 2 -111110110 most-advanced 2 -111110110 122-year-old 2 -111110110 once-beleaguered 2 -111110110 RCA/GE 2 -111110110 Magcobar 2 -111110110 Chicago-to-Cleveland 2 -111110110 ex-TRW 2 -111110110 drought-ravaged 2 -111110110 252-store 2 -111110110 lowest-ranked 2 -111110110 million-employee 2 -111110110 120th 2 -111110110 60-foot-long 2 -111110110 Tsukiji 2 -111110110 pooper 2 -111110110 mass-memory 2 -111110110 Asian/Pacific 2 -111110110 Am29116 2 -111110110 eight-station 2 -111110110 12th-biggest 2 -111110110 radical-chic 2 -111110110 corporate-planning 2 -111110110 1,328-member 2 -111110110 Duff-Norton 2 -111110110 lowest-wage 2 -111110110 extra-hole 2 -111110110 choicer 2 -111110110 long-recognized 2 -111110110 AppleTalk 3 -111110110 31st-largest 3 -111110110 touchiest 3 -111110110 export-insurance 3 -111110110 UNIX-PC 3 -111110110 131st 3 -111110110 third-most-active 3 -111110110 18-minute 3 -111110110 Indiana-based 3 -111110110 ninth-biggest 3 -111110110 WTVN-TV 3 -111110110 North-Central 3 -111110110 1,155 3 -111110110 shuttle-fuel 3 -111110110 white-paper 3 -111110110 22-store 3 -111110110 120-foot-long 3 -111110110 38th-largest 3 -111110110 35,000-ton 3 -111110110 MovieQuick 3 -111110110 most-troubled 3 -111110110 once-stodgy 3 -111110110 22-nation 3 -111110110 ritziest 3 -111110110 17th-largest 3 -111110110 Oronite 3 -111110110 25th-largest 3 -111110110 Monarch-Merrill 3 -111110110 project-financing 3 -111110110 14th-biggest 3 -111110110 59-story 3 -111110110 Hydra-Matic 3 -111110110 once-prosperous 3 -111110110 scrappiest 3 -111110110 then-pending 3 -111110110 once-high-flying 3 -111110110 third-most-populous 3 -111110110 second-favorite 3 -111110110 10-largest 3 -111110110 seven-time 3 -111110110 Superfest 3 -111110110 sports-science 3 -111110110 blue-blood 3 -111110110 16,000-member 3 -111110110 most-affluent 4 -111110110 omnivorous 4 -111110110 Chibougamau 4 -111110110 21st-largest 4 -111110110 most-influential 4 -111110110 top-producing 4 -111110110 Bio-Products 4 -111110110 eight-state 4 -111110110 Broadway-Southwest 4 -111110110 tastiest 4 -111110110 LXI 4 -111110110 Link-Miles 4 -111110110 fastest-selling 4 -111110110 flexible-packaging 4 -111110110 Cantata 4 -111110110 Albuquerque-based 4 -111110110 secondlargest 4 -111110110 5ESS 4 -111110110 184th 4 -111110110 75th-anniversary 4 -111110110 Rumasa 4 -111110110 second-busiest 5 -111110110 best-organized 5 -111110110 Jack-in-the-Box 5 -111110110 mightiest 5 -111110110 19th-largest 5 -111110110 best-looking 5 -111110110 18th-largest 5 -111110110 20th-largest 5 -111110110 second-heaviest 6 -111110110 winningest 6 -111110110 midcontinent 6 -111110110 second-longest 6 -111110110 drought-damaged 6 -111110110 juiciest 6 -111110110 Ruttan 6 -111110110 once-popular 6 -111110110 eighth-biggest 6 -111110110 Prinos 6 -111110110 Ticketron 6 -111110110 million-strong 6 -111110110 largest-circulation 6 -111110110 22nd-largest 6 -111110110 most-populous 7 -111110110 seventh-biggest 7 -111110110 best-capitalized 7 -111110110 neediest 7 -111110110 most-profitable 7 -111110110 Mercur 7 -111110110 sixth-biggest 7 -111110110 shakiest 8 -111110110 most-powerful 8 -111110110 thorniest 8 -111110110 16th-largest 8 -111110110 fastest-rising 8 -111110110 13th-largest 8 -111110110 best-kept 8 -111110110 transducer 9 -111110110 trendiest 9 -111110110 15th-largest 9 -111110110 toniest 9 -111110110 market-regulation 9 -111110110 grandest 9 -111110110 best-run 9 -111110110 14th-largest 10 -111110110 innermost 10 -111110110 highest-volume 10 -111110110 fanciest 10 -111110110 200-meter 10 -111110110 most-expensive 10 -111110110 highest-flying 11 -111110110 fifth-biggest 11 -111110110 shrewdest 12 -111110110 fourth-biggest 12 -111110110 drought-stunted 13 -111110110 longest-serving 13 -111110110 most-watched 13 -111110110 priciest 13 -111110110 much-vaunted 14 -111110110 largest-selling 15 -111110110 savviest 15 -111110110 highest-cost 15 -111110110 highest-rated 16 -111110110 biggest-ever 16 -111110110 close. 17 -111110110 northernmost 17 -111110110 tiniest 18 -111110110 10th-largest 18 -111110110 11th-largest 18 -111110110 choicest 18 -111110110 highest-priced 18 -111110110 ninth-largest 19 -111110110 biggest-selling 22 -111110110 12th-largest 23 -111110110 hardest-hit 25 -111110110 longest-running 26 -111110110 eighth-largest 27 -111110110 worst-performing 27 -111110110 largest-ever 31 -111110110 lowest-cost 37 -111110110 lowest-priced 37 -111110110 third-biggest 41 -111110110 costliest 45 -111110110 seventh-largest 55 -111110110 best-performing 68 -111110110 sixth-largest 85 -111110110 most-active 95 -111110110 wealthiest 100 -111110110 second-biggest 118 -111110110 fifth-largest 125 -111110110 finest 154 -111110110 busiest 195 -111110110 best-known 219 -111110110 fourth-largest 221 -111110110 richest 228 -111110110 poorest 260 -111110110 fastest-growing 278 -111110110 oldest 339 -111110110 flagship 372 -111110110 third-largest 387 -111110110 second-largest 817 -111110110 largest 10393 -111110110 biggest 6816 -1111101110 pre-panic 1 -1111101110 one-part-per-million 1 -1111101110 Robertses 1 -1111101110 same-size 1 -1111101110 latest-generation 1 -1111101110 305-franc 1 -1111101110 ownself 1 -1111101110 7.65-cent 1 -1111101110 Kargers 1 -1111101110 1600-point 1 -1111101110 Penneyites 1 -1111101110 currency-adjustment 1 -1111101110 1.8700-mark 1 -1111101110 multimillion-watt 1 -1111101110 conciliation-board 1 -1111101110 134-yen 1 -1111101110 2,400-year-old 1 -1111101110 fleetest-footed 1 -1111101110 1,200-rig 1 -1111101110 non-historical-minded 1 -1111101110 allowed-earnings 1 -1111101110 first-draft 1 -1111101110 Iranian-Saudi 1 -1111101110 state-party 1 -1111101110 290-to-300 1 -1111101110 3,771-member 1 -1111101110 480-strong 1 -1111101110 soul-saving 1 -1111101110 beekeeping 1 -1111101110 stock-sales 1 -1111101110 minmum 1 -1111101110 chicken-egg 1 -1111101110 136.75-yen 1 -1111101110 .270 1 -1111101110 1.4-point 1 -1111101110 2.8-point 1 -1111101110 85-cent-a-share 1 -1111101110 sailmaker 1 -1111101110 liability-limitation 1 -1111101110 123.35-yen 1 -1111101110 123.50-yen 1 -1111101110 2545 1 -1111101110 160-yen 1 -1111101110 278,000-ton 1 -1111101110 200-milligrams-per-deciliter 1 -1111101110 10,000-unit 1 -1111101110 scuzziest 1 -1111101110 least-palatable 1 -1111101110 123.85-yen 1 -1111101110 more-rational 1 -1111101110 123.45-yen 1 -1111101110 122.50-yen 1 -1111101110 summerintern 1 -1111101110 affluency 1 -1111101110 18000 1 -1111101110 greater-than-acceptable 1 -1111101110 2.03-mark 1 -1111101110 week-before 1 -1111101110 pre-accord 1 -1111101110 airborne-early 1 -1111101110 gym-class 1 -1111101110 AFRS 1 -1111101110 most-experienced 1 -1111101110 Photoplay 1 -1111101110 pre-Boesky 1 -1111101110 Miller-led 1 -1111101110 1000-point 1 -1111101110 600-pence 1 -1111101110 more-routine 1 -1111101110 privateer 1 -1111101110 open-eyed 1 -1111101110 -a-barrel 1 -1111101110 division-management 1 -1111101110 two-cent-a-pound 1 -1111101110 placental 1 -1111101110 ever-so-open 1 -1111101110 bacteria-formed 1 -1111101110 extra-dimensional 1 -1111101110 quite-ridiculous 1 -1111101110 cafeteria-plan 1 -1111101110 fastest- 1 -1111101110 23000.00 1 -1111101110 dual-chairmanship 1 -1111101110 surving 1 -1111101110 hardest-to-break 1 -1111101110 munitions-delivery 1 -1111101110 29,320-person 1 -1111101110 welfare-payment 1 -1111101110 seven-cent-apound 1 -1111101110 communications-image 1 -1111101110 152-yen 1 -1111101110 172-day-old 1 -1111101110 yet-to-be-perfected 1 -1111101110 10th-fastest 1 -1111101110 1.8320-mark 1 -1111101110 18936.98-point 1 -1111101110 violent-predator 1 -1111101110 300,000-unit 1 -1111101110 973-page 1 -1111101110 already-collapsed 1 -1111101110 3.2-mark 1 -1111101110 seven-day-old 1 -1111101110 local-pharmacy 1 -1111101110 low-20s 1 -1111101110 2390-point 1 -1111101110 10,000-gallon-a-minute 1 -1111101110 sub-strategic 1 -1111101110 roistering 1 -1111101110 rig-removing 1 -1111101110 125yen 1 -1111101110 1.6800-mark 1 -1111101110 two-lift 1 -1111101110 suspender-clad 1 -1111101110 countercoup 1 -1111101110 commodities-type 1 -1111101110 3.20-mark 1 -1111101110 110-yen 1 -1111101110 Roosevelt-Truman-Kennedy-Johnson 1 -1111101110 1.7207-marks 1 -1111101110 lovelier-than-life 1 -1111101110 3,050-yen 1 -1111101110 41.2-hour 1 -1111101110 10-cents-a-pound 1 -1111101110 100,000-odd 1 -1111101110 bio-safety 1 -1111101110 government-formation 1 -1111101110 geared-up 1 -1111101110 less-than-benevolent 1 -1111101110 Don't-Try-This 1 -1111101110 Torahs 1 -1111101110 214th 1 -1111101110 zip-code 1 -1111101110 150-mark 1 -1111101110 145.50-yen 1 -1111101110 1900-point 1 -1111101110 above-permitted 1 -1111101110 146-yen 1 -1111101110 profit-staggering 1 -1111101110 still-enigmatic 1 -1111101110 605-unit 1 -1111101110 one-man-gang 1 -1111101110 27000-point 1 -1111101110 nonregulated-energy 1 -1111101110 parent-guided 1 -1111101110 mid-1800 1 -1111101110 phonewatch 1 -1111101110 EPA-mandated 1 -1111101110 work-dominated 1 -1111101110 Chambonnais 1 -1111101110 taxhikers 1 -1111101110 13-cent-a-pound 1 -1111101110 Buick-Olds 1 -1111101110 already-booming 1 -1111101110 1.8625-mark 1 -1111101110 1.8665-mark 1 -1111101110 13.75-cents 1 -1111101110 9,700-foot 1 -1111101110 133-yen 1 -1111101110 book-breaking 1 -1111101110 1.900-mark 1 -1111101110 1.8900-mark 1 -1111101110 mid-2200 1 -1111101110 blurbee 1 -1111101110 fixed-production 1 -1111101110 poop-out 1 -1111101110 grassroot 1 -1111101110 1.8670-mark 1 -1111101110 10-cent-a-pound 1 -1111101110 military-could 1 -1111101110 lower-spending 1 -1111101110 1.75-1.85 1 -1111101110 educably 1 -1111101110 mid-chest 1 -1111101110 agriculturals 1 -1111101110 world-amid 1 -1111101110 20-cent-a-bushel 1 -1111101110 10000-point 1 -1111101110 1.5-cent-a-pound 1 -1111101110 just-discovered 1 -1111101110 131-yen 1 -1111101110 1.9680-mark 1 -1111101110 decades-low 1 -1111101110 1,000-cases 1 -1111101110 1.8200-mark 1 -1111101110 cash-contributing 1 -1111101110 88,000-person 1 -1111101110 still-smooth 1 -1111101110 pre-1973 1 -1111101110 damage-related 1 -1111101110 incentive-bloated 1 -1111101110 height-finding 1 -1111101110 13.75-cents-a-pound 1 -1111101110 19000-point 2 -1111101110 Bush-Baker 2 -1111101110 81-cent 2 -1111101110 ChristoSoth 2 -1111101110 Senate-authorized 2 -1111101110 capital-gains-cut 2 -1111101110 2,365 2 -1111101110 early-1987 2 -1111101110 freespending 2 -1111101110 23500 2 -1111101110 Graham-and-Dodd 2 -1111101110 wackier 2 -1111101110 charity-ball 2 -1111101110 diatonic 2 -1111101110 2000-point 2 -1111101110 158-yen 2 -1111101110 3.00-mark 2 -1111101110 Ionian 2 -1111101110 slighest 2 -1111101110 de-yuppification 2 -1111101110 45-cent 2 -1111101110 upper-tier 2 -1111101110 then-market 2 -1111101110 sparest 2 -1111101110 pre-buyout 2 -1111101110 bassoons 2 -1111101110 gastronomical 2 -1111101110 Wear-Dated 2 -1111101110 profoundest 2 -1111101110 1.8800-mark 2 -1111101110 seven-cent-a-pound 2 -1111101110 tree-top 2 -1111101110 unlived 2 -1111101110 2360.4 2 -1111101110 2350-point 2 -1111101110 sky's-the-limit 2 -1111101110 once-heretical 2 -1111101110 cuatro 2 -1111101110 contortionist 2 -1111101110 lightning-quick 2 -1111101110 unvarying 2 -1111101110 lake-side 2 -1111101110 34000 2 -1111101110 147-yen 2 -1111101110 saturated-fat 2 -1111101110 single-biggest 2 -1111101110 black-history 2 -1111101110 gender-gap 2 -1111101110 educable 2 -1111101110 curent 2 -1111101110 often-staggering 2 -1111101110 intelligence-sharing 3 -1111101110 seventh-highest 3 -1111101110 fifth-best 3 -1111101110 melodious 3 -1111101110 1969-1970 3 -1111101110 148-yen 3 -1111101110 highest-valued 3 -1111101110 bratty 3 -1111101110 speediest 3 -1111101110 Indo-Pakistan 3 -1111101110 gutsiest 3 -1111101110 Whiteheads 3 -1111101110 cleverest 3 -1111101110 highest-ever 3 -1111101110 pro-spending 3 -1111101110 ham-handed 3 -1111101110 Judaic-Christian 3 -1111101110 rosiest 3 -1111101110 Sary 3 -1111101110 free-and-easy 3 -1111101110 stop-Bork 3 -1111101110 238-mark 3 -1111101110 role-model 3 -1111101110 loftiest 3 -1111101110 Yoshiwara 3 -1111101110 banking-commerce 3 -1111101110 weather-induced 3 -1111101110 70-pence 3 -1111101110 damndest 3 -1111101110 filthiest 3 -1111101110 Ivorian 3 -1111101110 lowest-ever 3 -1111101110 Rubenesque 3 -1111101110 580-unit 3 -1111101110 1800-point 3 -1111101110 28000-level 3 -1111101110 125,306 3 -1111101110 more-optimistic 3 -1111101110 limit-order 3 -1111101110 single-wing 3 -1111101110 lowest-income 3 -1111101110 125.50-yen 3 -1111101110 antiseptically 3 -1111101110 second-smallest 4 -1111101110 barest 4 -1111101110 pocket-veto 4 -1111101110 briefest 4 -1111101110 gentlest 4 -1111101110 starkest 4 -1111101110 edible-oil 4 -1111101110 Mongol 4 -1111101110 126-yen 4 -1111101110 decades-long 4 -1111101110 splashiest 4 -1111101110 Lucchese 4 -1111101110 800-meter 4 -1111101110 noisiest 4 -1111101110 20000-point 4 -1111101110 progam 4 -1111101110 hippest 4 -1111101110 longest-lived 4 -1111101110 best-built 4 -1111101110 late-May 4 -1111101110 thickest 5 -1111101110 steadiest 5 -1111101110 fervid 5 -1111101110 Adagio 5 -1111101110 20,000-point 5 -1111101110 LCG 5 -1111101110 three-mark 5 -1111101110 budget-summit 5 -1111101110 lingua 5 -1111101110 fourth-highest 5 -1111101110 swiftest 6 -1111101110 best-educated 6 -1111101110 fifth-highest 6 -1111101110 friendliest 6 -1111101110 antediluvian 6 -1111101110 bravest 6 -1111101110 soundest 7 -1111101110 dearest 7 -1111101110 grimmest 7 -1111101110 1.90-mark 7 -1111101110 fattest 7 -1111101110 silliest 7 -1111101110 bluntest 7 -1111101110 freest 7 -1111101110 craziest 7 -1111101110 smoothest 7 -1111101110 lowest-paid 8 -1111101110 mildest 8 -1111101110 merest 8 -1111101110 ground-proximity 8 -1111101110 prettiest 8 -1111101110 trickiest 8 -1111101110 thinnest 8 -1111101110 truest 8 -1111101110 severest 9 -1111101110 coldest 9 -1111101110 warmest 9 -1111101110 150-yen 9 -1111101110 second-worst 9 -1111101110 firmest 9 -1111101110 fondest 9 -1111101110 sweetest 10 -1111101110 keenest 10 -1111101110 nastiest 10 -1111101110 heftiest 10 -1111101110 Nerd 10 -1111101110 rarest 10 -1111101110 freshest 11 -1111101110 slimmest 11 -1111101110 dirtiest 11 -1111101110 deadening 11 -1111101110 meanest 11 -1111101110 decibel 12 -1111101110 dullest 12 -1111101110 driest 12 -1111101110 third-best 12 -1111101110 leanest 12 -1111101110 oddest 12 -1111101110 money-raising 13 -1111101110 gravest 13 -1111101110 second-lowest 14 -1111101110 125-yen 14 -1111101110 bloodiest 14 -1111101110 stiffest 14 -1111101110 saddest 14 -1111101110 wisest 16 -1111101110 ugliest 17 -1111101110 fairest 17 -1111101110 bitterest 18 -1111101110 liveliest 18 -1111101110 crowning 19 -1111101110 happiest 20 -1111101110 cleanest 21 -1111101110 tightest 22 -1111101110 strangest 22 -1111101110 third-highest 24 -1111101110 purest 24 -1111101110 riskiest 24 -1111101110 proudest 24 -1111101110 second-best 25 -1111101110 Genovese 26 -1111101110 fewest 26 -1111101110 funniest 27 -1111101110 quietest 27 -1111101110 fullest 28 -1111101110 smartest 29 -1111101110 darkest 29 -1111101110 healthiest 29 -1111101110 surest 30 -1111101110 lightest 31 -1111101110 fiercest 34 -1111101110 wildest 36 -1111101110 boldest 39 -1111101110 utmost 43 -1111101110 narrowest 43 -1111101110 quickest 46 -1111101110 loudest 48 -1111101110 harshest 50 -1111101110 shortest 55 -1111101110 widest 62 -1111101110 steepest 72 -1111101110 simplest 75 -1111101110 second-highest 79 -1111101110 safest 80 -1111101110 clearest 87 -1111101110 deepest 87 -1111101110 easiest 113 -1111101110 brightest 133 -1111101110 broadest 140 -1111101110 heaviest 142 -1111101110 slowest 146 -1111101110 weakest 170 -1111101110 cheapest 184 -1111101110 youngest 190 -1111101110 sharpest 195 -1111101110 toughest 248 -1111101110 longest 258 -1111101110 earliest 259 -1111101110 fastest 360 -1111101110 closest 390 -1111101110 smallest 403 -1111101110 strongest 767 -1111101110 greatest 985 -1111101110 lowest 1706 -1111101110 worst 1822 -1111101110 highest 2834 -1111101110 best 8007 -1111101111 Natal/kwaZulu 1 -1111101111 corkscrew-shaped 1 -1111101111 weaker-dollar 1 -1111101111 adobe-making 1 -1111101111 blue-smoke-and-mirrors 1 -1111101111 hour/of 1 -1111101111 hour/Of 1 -1111101111 own-label 1 -1111101111 earnings-surprise 1 -1111101111 tucked-and-sculpted 1 -1111101111 bumper/ricochet 1 -1111101111 avoid-sequestration 1 -1111101111 hot-cutting 1 -1111101111 bareknuckle 1 -1111101111 mediocrity-is-sufficient 1 -1111101111 LSX3000 1 -1111101111 more-restrained 1 -1111101111 bug's-eye 1 -1111101111 run-of-the-barn 1 -1111101111 Wyeth-Helga 1 -1111101111 Soviet-Mozambican 1 -1111101111 90-acre 1 -1111101111 upsidedown 1 -1111101111 still-unsolved 1 -1111101111 admininstration 1 -1111101111 crocodile-infested 1 -1111101111 credit-granting 1 -1111101111 Ciociaro 1 -1111101111 5890-180E 1 -1111101111 scarcity-of-outlets 1 -1111101111 special-counsel 1 -1111101111 rent-vs.-aid 1 -1111101111 great-man 1 -1111101111 stereotype-ridden 1 -1111101111 muddling-along 1 -1111101111 swing-vote 1 -1111101111 80-a-week 1 -1111101111 159-acre 1 -1111101111 chthonic 1 -1111101111 Flak 1 -1111101111 radio-isotope 1 -1111101111 litmus-paper 1 -1111101111 Dibrell 1 -1111101111 Cards-Twins 1 -1111101111 four-abreast 1 -1111101111 exclsiuon 1 -1111101111 bizzare 1 -1111101111 Inventaire 1 -1111101111 Scandalous 1 -1111101111 Heidrun 1 -1111101111 magneto-caloric 1 -1111101111 political-influence 1 -1111101111 starting-date 1 -1111101111 sand-dune 1 -1111101111 1,400-acre 1 -1111101111 spot-the-OTC-bargain 1 -1111101111 Terans 1 -1111101111 no-free-lunch 1 -1111101111 often-explicit 1 -1111101111 OTR 1 -1111101111 Tabbynacle 1 -1111101111 at-present 1 -1111101111 retail-style 1 -1111101111 Sarkin 1 -1111101111 XT-4 1 -1111101111 8,500-foot 1 -1111101111 charcoal-like 1 -1111101111 thrift-targeted 1 -1111101111 un-canine 1 -1111101111 groundwater-protection 1 -1111101111 living-alone 1 -1111101111 siderographic 1 -1111101111 Fatimid 1 -1111101111 single-team 1 -1111101111 single-vendor 1 -1111101111 250-square-mile 1 -1111101111 blowsy 1 -1111101111 less-is-more-charming 1 -1111101111 150-milligram 1 -1111101111 weakness-into-strength 1 -1111101111 socio-theological 1 -1111101111 Keeni 1 -1111101111 champagne-sipping 1 -1111101111 fuzziest 1 -1111101111 unhealed 1 -1111101111 Rossetti-Miara 1 -1111101111 prickliest 1 -1111101111 155-yard 1 -1111101111 hollow-tie 1 -1111101111 financial-instruments 1 -1111101111 deflation-recession 1 -1111101111 often-uneconomical 1 -1111101111 mine-damaged 1 -1111101111 Vietnam-movie 1 -1111101111 Erechtheum 1 -1111101111 heap-leaching 1 -1111101111 once-glittering 1 -1111101111 now-crowded 1 -1111101111 potassium-based 1 -1111101111 dungeonlike 1 -1111101111 jacking-up 1 -1111101111 left-dominated 1 -1111101111 Hararghe 1 -1111101111 coloring-book 1 -1111101111 mid-to 1 -1111101111 no-sovereign-risk 1 -1111101111 takeover-restructuring 1 -1111101111 spark-plug-shaped 1 -1111101111 join-the-West 1 -1111101111 televised-hearing 1 -1111101111 heat-stricken 1 -1111101111 89-year 1 -1111101111 corporate-acquisitions 1 -1111101111 summit-planning 1 -1111101111 ankle-deep 1 -1111101111 deadest 1 -1111101111 Hogoton 1 -1111101111 dust-jacket 1 -1111101111 renovation-luxury 1 -1111101111 drawing-board 1 -1111101111 85-acre 1 -1111101111 high-amount 1 -1111101111 prior-law 1 -1111101111 tea-sipping 1 -1111101111 Algemeen 1 -1111101111 often-poisonous 1 -1111101111 non-credit-related 1 -1111101111 I/B/ 1 -1111101111 gray-painted 1 -1111101111 fervidly 1 -1111101111 wholesale-banking 1 -1111101111 multiple-stage 1 -1111101111 Tokyo-London 1 -1111101111 early-recession 1 -1111101111 Middle-Atlantic 1 -1111101111 market-growth 1 -1111101111 Robinson-type 1 -1111101111 judge-invented 1 -1111101111 gas-field 1 -1111101111 free-swap 1 -1111101111 light-vehicles 1 -1111101111 2,500-megawatt 1 -1111101111 Westmoreland/Sharon 1 -1111101111 still-real 1 -1111101111 information-seeking 1 -1111101111 revenue-realization 1 -1111101111 hot-lipped 1 -1111101111 170,000-member 1 -1111101111 winemaking 1 -1111101111 single-greatest 1 -1111101111 crispest 1 -1111101111 sale-by-mail 1 -1111101111 Chablis-and-Brie 1 -1111101111 gross-revenue 1 -1111101111 gelling 1 -1111101111 costume-diamond 1 -1111101111 economic-nationalism 1 -1111101111 bullying-and-lobbying 1 -1111101111 unengaging 1 -1111101111 gorgelike 1 -1111101111 formaldehyde-containing 1 -1111101111 resident-theater 1 -1111101111 we-did-wrong 1 -1111101111 death-rattle 1 -1111101111 art-school 1 -1111101111 now-pristine 1 -1111101111 very-correct 1 -1111101111 ball-yard 1 -1111101111 percentage-of-income 1 -1111101111 phosphate-rich 1 -1111101111 racqueteering 1 -1111101111 33,000-acre 1 -1111101111 summum 1 -1111101111 bric-and-wood 1 -1111101111 walnut-tree-lined 1 -1111101111 share-issuing 1 -1111101111 modern-sounding 1 -1111101111 140,000-circulation 1 -1111101111 deckled 1 -1111101111 then-British 1 -1111101111 export-slowing 1 -1111101111 ecclesiastical/theological 1 -1111101111 53,000-megawatt 1 -1111101111 current-law 1 -1111101111 Moche 1 -1111101111 PC-market 1 -1111101111 lowest-priority 1 -1111101111 admonitory 1 -1111101111 nonauctioned 1 -1111101111 extract-of-marvelous-mixtures 1 -1111101111 draft-choice 1 -1111101111 half-moon-shaped 1 -1111101111 vulture-fund 1 -1111101111 rotundal 1 -1111101111 naughtiest 1 -1111101111 tourism-inspired 1 -1111101111 lip-reading 1 -1111101111 Duchampian 1 -1111101111 pre-Stalinist 1 -1111101111 sybol 1 -1111101111 Exche 1 -1111101111 inspira 1 -1111101111 2,600-square-foot 1 -1111101111 steam-making 1 -1111101111 non-PC 1 -1111101111 two-stringed 1 -1111101111 vasty 1 -1111101111 publicity-driven 1 -1111101111 farmer-oriented 1 -1111101111 cash-accounting 1 -1111101111 Scandinavian-controlled 1 -1111101111 11,759 1 -1111101111 longheld 1 -1111101111 antibody-plus-TPA 1 -1111101111 porgram 1 -1111101111 Baixada 1 -1111101111 130,000-case 1 -1111101111 preelection 1 -1111101111 Enteractive 1 -1111101111 long-transplanted 1 -1111101111 Guajira 1 -1111101111 Waverley 1 -1111101111 464-unit 1 -1111101111 oxygenless 1 -1111101111 bonus-based 1 -1111101111 Yacyreta 1 -1111101111 yield-plus-growth 1 -1111101111 seldom-violated 1 -1111101111 precommercial 1 -1111101111 ventilation-system 1 -1111101111 multicourt 1 -1111101111 bridal-suite 1 -1111101111 Sofia-based 1 -1111101111 aluminum-investment 1 -1111101111 security-studies 1 -1111101111 maroon-kerchiefed 1 -1111101111 High-Top 1 -1111101111 time-scarred 1 -1111101111 Aeroform 1 -1111101111 Al-Badr 1 -1111101111 12-horse 1 -1111101111 dog-biscuit 1 -1111101111 car-chasing 1 -1111101111 death-of-the-dollar 1 -1111101111 specialty-retailers 1 -1111101111 Washington-beltway-New 1 -1111101111 Kapali 1 -1111101111 Soviet-planted 1 -1111101111 still-uncounted 1 -1111101111 Regan-Miller 1 -1111101111 biological/medical 1 -1111101111 swingingest 1 -1111101111 political-propaganda 1 -1111101111 rice-farming 1 -1111101111 70,000-bottle 1 -1111101111 25,000-kilowatt 1 -1111101111 Tribe-Lewis-Fascell 1 -1111101111 study-circle 1 -1111101111 Et 1 -1111101111 engineer-exchange 1 -1111101111 93-mile-area 1 -1111101111 Alabama-Auburn 1 -1111101111 Kwa-Zulu-Natal 1 -1111101111 export-and-pay 1 -1111101111 379-mile 1 -1111101111 successful-efforts 1 -1111101111 above-300 1 -1111101111 rubber-chicken 1 -1111101111 SEC-sanctioned 1 -1111101111 25,000-metric 1 -1111101111 soap-bubble 1 -1111101111 Lewis-Davis 1 -1111101111 peopling 1 -1111101111 day-late-and-a-dollar-short 1 -1111101111 ratepaying 1 -1111101111 business-center 1 -1111101111 physician-centered 1 -1111101111 many-sectioned 1 -1111101111 once-in-the-decade 1 -1111101111 most-cynical 1 -1111101111 non-burning 1 -1111101111 target-zones 1 -1111101111 run-for-dollars 1 -1111101111 Socialist-run 1 -1111101111 fan's-eye 1 -1111101111 subtlest 1 -1111101111 sandsage 1 -1111101111 Midway-Sunset 1 -1111101111 much-questioned 1 -1111101111 jazz-tinged 1 -1111101111 harbor-side 1 -1111101111 Tuen 1 -1111101111 stop-inflation 1 -1111101111 Jolliet 1 -1111101111 Itaipu 1 -1111101111 16-year-long 1 -1111101111 fishing-gear 1 -1111101111 next-lower 1 -1111101111 unluckiest 1 -1111101111 party-plan 1 -1111101111 Virazole-against-AIDS 1 -1111101111 market-signals 1 -1111101111 gangster-and-love 1 -1111101111 store-closing 1 -1111101111 early-loss 1 -1111101111 un-Reagan-like 1 -1111101111 entrenched-management 1 -1111101111 Diller-Eisner 1 -1111101111 Gainesburger 1 -1111101111 wackiest 1 -1111101111 stress-relief 1 -1111101111 Rousseauist 1 -1111101111 first-down 1 -1111101111 Mea 1 -1111101111 Carbohydrate 1 -1111101111 anti-liver 1 -1111101111 Saguneay 1 -1111101111 WBC 1 -1111101111 return-to-basics 1 -1111101111 once-gloomy 1 -1111101111 anti-deportation 1 -1111101111 Vung 1 -1111101111 Westish 1 -1111101111 Tswana-speaking 1 -1111101111 nine-time 1 -1111101111 218-volt 1 -1111101111 lease-sale 1 -1111101111 public-participation 1 -1111101111 382-acre 1 -1111101111 see-no-evil 1 -1111101111 underdog-gets-his 1 -1111101111 WILLIAMSTOWN 1 -1111101111 tofu-and-granola 1 -1111101111 electricity-transmission 1 -1111101111 fall-blooming 1 -1111101111 white-marble 1 -1111101111 foreign-lending 1 -1111101111 road-type 1 -1111101111 job-selection 1 -1111101111 advice-business 1 -1111101111 Pachamama 1 -1111101111 high-coordination 1 -1111101111 Reliant-designed 1 -1111101111 face-on 1 -1111101111 nutrition-advertising 1 -1111101111 Wagnerite 1 -1111101111 panther-shaped 1 -1111101111 73-square-mile 1 -1111101111 good-man-is-hard-to-find 1 -1111101111 one-for-all 1 -1111101111 Elliott-wave 1 -1111101111 Playing-Field 1 -1111101111 Haneda-Oki 1 -1111101111 TAT 1 -1111101111 big-boy 1 -1111101111 Agees 1 -1111101111 travel-empire 1 -1111101111 hydraulic-robot 1 -1111101111 knight-errant/Rambo 1 -1111101111 MTV-spawned 1 -1111101111 party-sponsored 1 -1111101111 large-cab 1 -1111101111 loft-theater 1 -1111101111 discouraged-employer 1 -1111101111 discouraged-worker 1 -1111101111 Zaireans 1 -1111101111 jury-selection 1 -1111101111 flight-problems 1 -1111101111 Brix 1 -1111101111 scraggliest 1 -1111101111 Ryukyu 1 -1111101111 corniest 1 -1111101111 Rio-Antirrio 1 -1111101111 ANTA 1 -1111101111 blanket-draped 1 -1111101111 near-simultaneous 1 -1111101111 179-member 1 -1111101111 free-election 1 -1111101111 frost-fighting 1 -1111101111 margarine-making 1 -1111101111 long-deferred 1 -1111101111 heavyweight-championship 1 -1111101111 fanfold 1 -1111101111 South-to-North 1 -1111101111 high-welfare 1 -1111101111 low-welfare 1 -1111101111 doctor-care 1 -1111101111 pine-bur 1 -1111101111 late-Monday 1 -1111101111 Powercize 1 -1111101111 pretty-boy 1 -1111101111 egg-laying 1 -1111101111 midwifing 1 -1111101111 3,400-square-mile 1 -1111101111 Kayu 1 -1111101111 white-tie 1 -1111101111 kibbitzing 1 -1111101111 Albright-Weaver 1 -1111101111 Raphaelesque 1 -1111101111 Ruffed 1 -1111101111 category-killer 1 -1111101111 10th-ranked 1 -1111101111 eureka 1 -1111101111 cable-operating 1 -1111101111 Yanomamo 1 -1111101111 Woodbine 1 -1111101111 funny-shy 1 -1111101111 Salentine 1 -1111101111 Pennsylvania/New 1 -1111101111 KwaZulu-Natal 1 -1111101111 once-reliable 1 -1111101111 polling-booth 1 -1111101111 one-fund 1 -1111101111 goyish 1 -1111101111 fish-tailed 1 -1111101111 groundhog 1 -1111101111 semi-rigid 1 -1111101111 needlepoint 1 -1111101111 gestural 1 -1111101111 care-delivery 1 -1111101111 combined-drug 1 -1111101111 non-subsidy 1 -1111101111 funds-diversion 1 -1111101111 self-editing 1 -1111101111 incentive-distorting 1 -1111101111 bao 1 -1111101111 now-natty 1 -1111101111 Nuwara 1 -1111101111 trendy-cause 1 -1111101111 Mantuan 1 -1111101111 smooth-moving 1 -1111101111 reproachful 1 -1111101111 Ryokujizo 1 -1111101111 6,000-acre 1 -1111101111 telephone-manufacturing 1 -1111101111 goddawg 1 -1111101111 public-trustee 1 -1111101111 emergency-relief 1 -1111101111 bond-heavy 1 -1111101111 anti-personality-cult 1 -1111101111 American-network 1 -1111101111 skylit 1 -1111101111 brand-loyalty 1 -1111101111 bee-feces 1 -1111101111 still-evolving 1 -1111101111 piece-meal 1 -1111101111 national-tax 1 -1111101111 consulting-services 1 -1111101111 Emblem 1 -1111101111 maturity-to-decline 1 -1111101111 indoor-football 1 -1111101111 pre-Mass 1 -1111101111 52-foot-long 1 -1111101111 once-raucous 1 -1111101111 pipe-bomb 1 -1111101111 pedestrian-controlled 1 -1111101111 big-stick 1 -1111101111 Dier 1 -1111101111 Penn-Amtrak 1 -1111101111 30-legged 1 -1111101111 end-of-the-summer 1 -1111101111 commercial-music 1 -1111101111 Turkic-speaking 1 -1111101111 56-year 1 -1111101111 oft-leveled 1 -1111101111 new-school 1 -1111101111 1,215-room 1 -1111101111 official-film 1 -1111101111 creation/evolution 1 -1111101111 cattle-car 1 -1111101111 defense-sensitive 1 -1111101111 347-apartment 1 -1111101111 down-the-chimney 1 -1111101111 policy-development 1 -1111101111 largest-producing 1 -1111101111 shun-the-leper 1 -1111101111 5,000-acre 1 -1111101111 I-want-what-I-want-when-I-want-it 1 -1111101111 fan-blade 1 -1111101111 60-cent-per-gallon 1 -1111101111 232-mile 1 -1111101111 17-horse 1 -1111101111 Melvillean 1 -1111101111 Orphic 1 -1111101111 hieratic 1 -1111101111 wringing-out 1 -1111101111 hair-bow 1 -1111101111 policy-level 1 -1111101111 cost-and-revenue 1 -1111101111 route-transfer 1 -1111101111 ice-geyser 1 -1111101111 archtype 1 -1111101111 anti-four-day-week 1 -1111101111 nondelivery 1 -1111101111 air-base 1 -1111101111 anti-traditional 1 -1111101111 Sirs 1 -1111101111 world-economic 1 -1111101111 therapeutic/confessional 1 -1111101111 often-mysterious 1 -1111101111 once-polluted 1 -1111101111 military-surplus 1 -1111101111 chicken-in-every-pot-and-condom- 1 -1111101111 42-inch 1 -1111101111 apiarian 1 -1111101111 boy-in-the-bubble 1 -1111101111 sports-licensing 1 -1111101111 Hazara 1 -1111101111 troubled-vet 1 -1111101111 straight-and-simple 1 -1111101111 green-walled 1 -1111101111 baser 1 -1111101111 expanded-voter-pool 1 -1111101111 Ndau-Shona 1 -1111101111 pro-moratorium 1 -1111101111 Emilia-Romagna 1 -1111101111 power-grid 1 -1111101111 COO 1 -1111101111 disembarking 1 -1111101111 plaid-shirt-and-gum-boots 1 -1111101111 highest-wattage 1 -1111101111 candy-store 1 -1111101111 continuing-prosperity 1 -1111101111 Ziggy 1 -1111101111 east-south-central 1 -1111101111 525,000-square-foot 1 -1111101111 no-exceptions 1 -1111101111 covered-writing 1 -1111101111 125-mile-long 1 -1111101111 get-out-of-Panama 1 -1111101111 cell-turnover 1 -1111101111 compact/subcompact 1 -1111101111 Turnpike-widening 1 -1111101111 television-marketing 1 -1111101111 flaunt-your-wealth 1 -1111101111 unilateralist 1 -1111101111 personal-relations 1 -1111101111 prehearing 1 -1111101111 kick-now-talk-later 1 -1111101111 capital-dry 1 -1111101111 trash-basket 1 -1111101111 public-performance 1 -1111101111 Zhdanovsky 1 -1111101111 marginal-rate 1 -1111101111 cylical 1 -1111101111 Tyumen 1 -1111101111 knockabout 1 -1111101111 too-ambitious 1 -1111101111 phoniest 1 -1111101111 hot-sauce 1 -1111101111 chain-link-and-wisteria 1 -1111101111 high-grass 1 -1111101111 IBM-Digital-Hewlett- 1 -1111101111 Prentif 1 -1111101111 price-jolting 1 -1111101111 common-position 1 -1111101111 27-square-mile 1 -1111101111 better-than-thou 1 -1111101111 floating-nuke 1 -1111101111 birch-fringed 1 -1111101111 national-origins 1 -1111101111 memory-loss 1 -1111101111 Edwards-Durmedics 1 -1111101111 harass-them-until-they-drop 1 -1111101111 local-money 1 -1111101111 socio-psycho 1 -1111101111 salary-pool 1 -1111101111 163,000-acre 1 -1111101111 variable-fee 1 -1111101111 run-before-you-can-walk 1 -1111101111 Wotan/Wandererlike 1 -1111101111 now-frozen 1 -1111101111 dividend-based 1 -1111101111 Fortrel 1 -1111101111 Minnelusa 1 -1111101111 no-bunkum 1 -1111101111 anti-Kemp 1 -1111101111 man-against-man 1 -1111101111 51-mile 1 -1111101111 sombrero-wearing 1 -1111101111 20th-season 1 -1111101111 use-restriction 1 -1111101111 greed-is-good 1 -1111101111 Stat 1 -1111101111 equal-weighting 1 -1111101111 product-realization 1 -1111101111 much-hated 1 -1111101111 childhood-to-late-middle-age 1 -1111101111 management-systems 1 -1111101111 personal-finances 1 -1111101111 range-payload 1 -1111101111 awkward-speaking 1 -1111101111 Dutch-English 1 -1111101111 Peretzfeld 1 -1111101111 nonstock 1 -1111101111 Gillette-Avon 1 -1111101111 profit-dampening 1 -1111101111 slats-retracted 1 -1111101111 Rhine-Main 1 -1111101111 bigger-sucker 1 -1111101111 wiggier 1 -1111101111 buy-low 1 -1111101111 Fradean 1 -1111101111 Rodessa 1 -1111101111 specifiable 1 -1111101111 fair-use 1 -1111101111 claim-settlement 1 -1111101111 Ariete 1 -1111101111 crap-shoot 1 -1111101111 wine-region 1 -1111101111 yellow-bellied 1 -1111101111 rich-consumption 1 -1111101111 hullish 1 -1111101111 220-seat 1 -1111101111 stadium-wide 1 -1111101111 hammer-on-the-thumb 1 -1111101111 Legend-800 1 -1111101111 Nagorno-Karabak 1 -1111101111 orange-yellow 1 -1111101111 steel-tube 1 -1111101111 fast-court 1 -1111101111 pearl-white 1 -1111101111 buy-market-share 1 -1111101111 program-making 1 -1111101111 post-primary 1 -1111101111 most-arresting 1 -1111101111 fuddled 1 -1111101111 manufacturing-wage 1 -1111101111 Saudi-Nigerian 1 -1111101111 French-produced 1 -1111101111 Fateh 1 -1111101111 dollar-throwing 1 -1111101111 Hollywood-liberal 1 -1111101111 Marxist-liberal 1 -1111101111 Calpine-Stikine 1 -1111101111 CRAF-Cassini 1 -1111101111 bonus/profit-sharing 1 -1111101111 draft-beer 1 -1111101111 fraternity-sorority 1 -1111101111 phone-inquiry 1 -1111101111 Walthari 1 -1111101111 less-than-disastrous 1 -1111101111 700,000-circulation 1 -1111101111 squirrelly 1 -1111101111 Rossinian 1 -1111101111 summary-format 1 -1111101111 Jabotabek 1 -1111101111 refractive 1 -1111101111 right-wing-zealots 1 -1111101111 poverty-creating 1 -1111101111 Cahuilla 1 -1111101111 Cieszyn 1 -1111101111 runty 1 -1111101111 no-heavy-lifting 1 -1111101111 animal-cruelty 1 -1111101111 minority-candidate 1 -1111101111 pre-diet 1 -1111101111 sweet-corn 1 -1111101111 2,000-contract 1 -1111101111 management-theory 1 -1111101111 hypermart 1 -1111101111 share-issuance 1 -1111101111 Saturday-Monday 1 -1111101111 non-vegetable 1 -1111101111 wood-fiber 1 -1111101111 once-prevailing 1 -1111101111 gross-national-product 1 -1111101111 overemphatic 1 -1111101111 donation-annuity 1 -1111101111 thermo-mechanical 1 -1111101111 714-page 1 -1111101111 415-page 1 -1111101111 inner-Detroit 1 -1111101111 infant-industries 1 -1111101111 555-tank 1 -1111101111 Abbott-3M 1 -1111101111 working-girl-gone-bad 1 -1111101111 15,000-strong 1 -1111101111 often-voiced 1 -1111101111 migraine-research 1 -1111101111 162-year 1 -1111101111 botulin 1 -1111101111 income-capitalization 1 -1111101111 pick-your-commission 1 -1111101111 job-killing 1 -1111101111 land-improvement 1 -1111101111 soak-the-utilities 1 -1111101111 I-dare-you-to-read-this 1 -1111101111 ungarnished 1 -1111101111 hostage-concession 1 -1111101111 hoariest 1 -1111101111 45-plus 1 -1111101111 resort-leisure 1 -1111101111 thorn-crusted 1 -1111101111 gasdiffusion 1 -1111101111 sportily 1 -1111101111 monographic 1 -1111101111 trade-stimulating 1 -1111101111 manful 1 -1111101111 frivolous-case 1 -1111101111 uppercrust 1 -1111101111 153-feet-long 1 -1111101111 cathoderay 1 -1111101111 Selmer 1 -1111101111 fee-for-service/insurance 1 -1111101111 heat-trap 1 -1111101111 country-house 1 -1111101111 podfilling 1 -1111101111 farwestern 1 -1111101111 backmost 1 -1111101111 three-meter-high 1 -1111101111 eight-candidate 1 -1111101111 tension-ridden 1 -1111101111 pre-priced 1 -1111101111 Weaver-Dillon 1 -1111101111 election-campaign-style 1 -1111101111 television-broadcasting-equipment 1 -1111101111 Bluto 1 -1111101111 Talleres 1 -1111101111 high-tech-sounding 1 -1111101111 second-hottest 1 -1111101111 12-team 1 -1111101111 extended-play 1 -1111101111 CCD-TR5 1 -1111101111 234-square-mile 1 -1111101111 cockamamie 1 -1111101111 3,000-meter 1 -1111101111 Kumon 1 -1111101111 12,752 1 -1111101111 disposal-fee 1 -1111101111 door/ 1 -1111101111 space-alien 1 -1111101111 now-brittle 1 -1111101111 computer-response 1 -1111101111 conservatizing 1 -1111101111 5,000-store 1 -1111101111 61-acre 1 -1111101111 tax-deduction 1 -1111101111 traffic-ridden 1 -1111101111 Care-Unit 1 -1111101111 snow-blitz 1 -1111101111 repressers 1 -1111101111 asphalt-hard 1 -1111101111 requited 1 -1111101111 mind's-eye 1 -1111101111 Reebok-Avia 1 -1111101111 sun-fearing 1 -1111101111 6,800acre 1 -1111101111 beer-and-brat 1 -1111101111 international-set 1 -1111101111 project-creation 1 -1111101111 hymnlike 1 -1111101111 smokestack-chasing 1 -1111101111 band-wagon 1 -1111101111 10,000-point 1 -1111101111 single-sentence 1 -1111101111 6,000-membership 1 -1111101111 bottom-left 1 -1111101111 top-right 1 -1111101111 drying-conversion 1 -1111101111 nicotine-removal 1 -1111101111 slow-sales 1 -1111101111 un-teamly 1 -1111101111 570,000-acre 1 -1111101111 drouth 1 -1111101111 fourth-fastest 1 -1111101111 lazy-making 1 -1111101111 work-to-play 1 -1111101111 preheating 1 -1111101111 love-and-sex 1 -1111101111 presidential-election-year 1 -1111101111 suds-of-the-future 1 -1111101111 going-home 1 -1111101111 biweekly-mortgage 1 -1111101111 culture-forming 1 -1111101111 health-and-hospitals 1 -1111101111 Mawat 1 -1111101111 chilled-foods 1 -1111101111 Broncos-Browns 1 -1111101111 868-acre 1 -1111101111 780-acre 1 -1111101111 six-buck 1 -1111101111 chicken-farm 1 -1111101111 weaponsbuying 1 -1111101111 stock-table 1 -1111101111 Bundesbank-meeting 1 -1111101111 520,000-square-foot 1 -1111101111 540-acre 1 -1111101111 Aquino-family 1 -1111101111 Kandahar-Kabul 1 -1111101111 lateboom 1 -1111101111 moral-equivalency 1 -1111101111 terror-filled 1 -1111101111 film-and-TV-studio 1 -1111101111 147-acre 1 -1111101111 traffic-free 1 -1111101111 icebreaking 1 -1111101111 forms-development 1 -1111101111 50,000-item 1 -1111101111 failure-to-warn 1 -1111101111 midsized-agency 1 -1111101111 cashless-exercise 1 -1111101111 flat-rate-tax 1 -1111101111 built-for-football 1 -1111101111 Riau 1 -1111101111 Duri 1 -1111101111 faux-Beckett 1 -1111101111 tenants-in-common 1 -1111101111 virus-boosting 1 -1111101111 hard-to-make 1 -1111101111 a-la-carte 1 -1111101111 brusquer 1 -1111101111 ever-cheering 1 -1111101111 ghetto-like 1 -1111101111 Regius 1 -1111101111 Cinderella-like 1 -1111101111 fire-retardent 1 -1111101111 three-inning 1 -1111101111 carro 1 -1111101111 less-lofty 1 -1111101111 non-tumorous 1 -1111101111 ratiocinative 1 -1111101111 C.E.O. 1 -1111101111 winnowing-out 1 -1111101111 disk-in-an-ad 1 -1111101111 Pintupi 1 -1111101111 M/2000 1 -1111101111 water-bearing 1 -1111101111 Southeasterners 1 -1111101111 Shearson-Lehman-Hutton 1 -1111101111 fleshly 1 -1111101111 gut-grinding 1 -1111101111 center-court 2 -1111101111 well-accepted 2 -1111101111 August/September 2 -1111101111 newlywed 2 -1111101111 post-Stalinist 2 -1111101111 license-free 2 -1111101111 greater-fool 2 -1111101111 sleep-out 2 -1111101111 smooth-transition 2 -1111101111 clangorous 2 -1111101111 mucky 2 -1111101111 650-acre 2 -1111101111 well-turned 2 -1111101111 Hasbro-Disney 2 -1111101111 service-intensive 2 -1111101111 public-accommodation 2 -1111101111 fix-it-up 2 -1111101111 25-to-54-year-old 2 -1111101111 Bidlo-Picassos 2 -1111101111 110-mile-long 2 -1111101111 presidential-selection 2 -1111101111 theater-going 2 -1111101111 256-megabit 2 -1111101111 phase-down 2 -1111101111 Western-Pacific 2 -1111101111 presidential-nomination 2 -1111101111 mislocated 2 -1111101111 thinking-machine 2 -1111101111 paper-pushing 2 -1111101111 shareholder-value 2 -1111101111 goddam 2 -1111101111 Ricardian 2 -1111101111 good-product 2 -1111101111 symbo 2 -1111101111 humanitarian-aid 2 -1111101111 madding 2 -1111101111 Saudi-Iran 2 -1111101111 Liuhua 2 -1111101111 corporate-merger 2 -1111101111 fastest-expanding 2 -1111101111 flower-shop 2 -1111101111 815-room 2 -1111101111 best-available 2 -1111101111 sunbaked 2 -1111101111 production-definition 2 -1111101111 criminal-conspiracy 2 -1111101111 unlovely 2 -1111101111 natural-burn 2 -1111101111 three-hour-plus 2 -1111101111 baneful 2 -1111101111 no-work 2 -1111101111 new-stock 2 -1111101111 brute-force 2 -1111101111 1965-1975 2 -1111101111 Sidak-Woodward 2 -1111101111 out-of-the-blue 2 -1111101111 two-vendor 2 -1111101111 threeday 2 -1111101111 synthetic-hair 2 -1111101111 F-Area 2 -1111101111 much-promoted 2 -1111101111 Kissinger-Nixon 2 -1111101111 Dominoes 2 -1111101111 missile-shield 2 -1111101111 nine-foot 2 -1111101111 50-and-over 2 -1111101111 buy-below-book 2 -1111101111 800-seat 2 -1111101111 97-nation 2 -1111101111 Economische 2 -1111101111 under-45 2 -1111101111 Mazda-built 2 -1111101111 moderate-to-conservative 2 -1111101111 one-vendor 2 -1111101111 pre-Lenten 2 -1111101111 egg-and-dart 2 -1111101111 15-to-24-year-old 2 -1111101111 last-act 2 -1111101111 contextual 2 -1111101111 Haltenbanken 2 -1111101111 currency-manipulation 2 -1111101111 fee-cap 2 -1111101111 Labin 2 -1111101111 25-to-34-year-old 2 -1111101111 second-youngest 2 -1111101111 morning-sickness 2 -1111101111 18-to-34 2 -1111101111 Minnesota-sized 2 -1111101111 oft-discussed 2 -1111101111 egomaniacal 2 -1111101111 Wright-Coelho 2 -1111101111 post-Napoleonic 2 -1111101111 Courtelle 2 -1111101111 10-pin 2 -1111101111 Hafenstrasse 2 -1111101111 subjunctive 2 -1111101111 1971-1973 2 -1111101111 extra-constitutional 2 -1111101111 guilt-by-association 2 -1111101111 laziest 2 -1111101111 second-strongest 2 -1111101111 45-to-54-year 2 -1111101111 Rockefeller-Kissinger 2 -1111101111 loan-approval 2 -1111101111 McFarlane-Poindexter 2 -1111101111 three-network 3 -1111101111 two-drug 3 -1111101111 PRK 3 -1111101111 Dhurnal 3 -1111101111 arms-to-Iran 3 -1111101111 best-regarded 3 -1111101111 budget-making 3 -1111101111 6,550-acre 3 -1111101111 loss-indemnity 3 -1111101111 grossest 3 -1111101111 mineralized 3 -1111101111 otic 3 -1111101111 tackiest 3 -1111101111 1980-86 3 -1111101111 all-too-common 3 -1111101111 efficient-markets 3 -1111101111 human-testing 3 -1111101111 48-foot-high 3 -1111101111 1979-1987 3 -1111101111 Tokugawa 3 -1111101111 trial-heat 3 -1111101111 commercial-speech 3 -1111101111 1979-1985 3 -1111101111 heartiest 3 -1111101111 next-best 4 -1111101111 scariest 4 -1111101111 odorant-binding 4 -1111101111 second-fastest-growing 4 -1111101111 nth 4 -1111101111 Demidoff 4 -1111101111 post-Stalin 4 -1111101111 inky 4 -1111101111 kindest 4 -1111101111 baddest 4 -1111101111 gear-box 4 -1111101111 price-war 5 -1111101111 A10 5 -1111101111 Blackfeet 5 -1111101111 trainer-jet 5 -1111101111 Dublin-London 5 -1111101111 foggiest 6 -1111101111 WBA 6 -1111101111 roughest 6 -1111101111 luckiest 7 -1111101111 stupidest 7 -1111101111 July-August 7 -1111101111 humblest 8 -1111101111 densest 8 -1111101111 faintest 9 -1111101111 littlest 9 -1111101111 vaguest 9 -1111101111 weirdest 10 -1111101111 Iran/contra 10 -1111101111 umpteenth 10 -1111101111 above-mentioned 11 -1111101111 sexiest 11 -1111101111 random-walk 11 -1111101111 nicest 18 -1111101111 aforementioned 21 -1111101111 installment-sales 21 -1111101111 completed-contract 26 -1111101111 same 14961 -1111101111 slightest 118 -1111110 slave-holding 1 -1111110 shell-fanciers 1 -1111110 16-to-24 1 -1111110 Wertheimer-Leeper 1 -1111110 Deterred 1 -1111110 little-implemented 1 -1111110 just-wave-at-the-camera 1 -1111110 strike-divided 1 -1111110 dark-browed 1 -1111110 guns-for-no-hostage 1 -1111110 bleary 1 -1111110 shap 1 -1111110 star-bright 1 -1111110 wrinkly 1 -1111110 sperm-banking 1 -1111110 end-of-the 1 -1111110 1,400-vertical-foot 1 -1111110 trust-or 1 -1111110 Bikinis 1 -1111110 glutaraldehyde 1 -1111110 Monday-through-Thursday 1 -1111110 holidaying 1 -1111110 Hawthornian 1 -1111110 Zor 1 -1111110 growth-stimulating 1 -1111110 war-on-drugs 1 -1111110 protectant 1 -1111110 5-to-12 1 -1111110 faux-Victorian 1 -1111110 improvisional 1 -1111110 trans-atlantic 1 -1111110 prosy 1 -1111110 promethazine 1 -1111110 post-greed 1 -1111110 45-to-64 1 -1111110 Ifira 2 -1111110 1981-model 2 -1111110 cash-stuffed 2 -1111110 such-and-such 2 -1111110 this 84158 -1111110 GLAD 4 -11111110 6,480,000 1 -11111110 10,018,000 1 -11111110 just-as-sudden 1 -11111110 castle-theme 1 -11111110 100.60 1 -11111110 97.86 1 -11111110 2.9961 1 -11111110 fair-to-middling 1 -11111110 7,100,000 1 -11111110 1,556.8 1 -11111110 2.0130 1 -11111110 3.2750 1 -11111110 2.0193 1 -11111110 42-23 1 -11111110 1.4953 1 -11111110 22-mark 1 -11111110 15th-16th 1 -11111110 707.80 1 -11111110 724.95 1 -11111110 2.9738 1 -11111110 1.4044 1 -11111110 9,152,150 1 -11111110 non-carbonated 1 -11111110 13,560,000 1 -11111110 76.01 1 -11111110 9,860,000 1 -11111110 11,852,190 1 -11111110 17,450,000 1 -11111110 227.59 1 -11111110 10,490,000 1 -11111110 101.837 1 -11111110 77.62 1 -11111110 7,997,930 1 -11111110 8,480,000 1 -11111110 12,710,000 1 -11111110 79.10 1 -11111110 1751.1 1 -11111110 2.9987 1 -11111110 3.0827 1 -11111110 crash-dazed 1 -11111110 12,590,000 1 -11111110 1.6589 1 -11111110 9,840,000 1 -11111110 14,240,000 1 -11111110 8,567,000 1 -11111110 11,598,000 1 -11111110 13,200,000 1 -11111110 1.5540 1 -11111110 October/early 1 -11111110 702.52 1 -11111110 453,067,175 1 -11111110 164,357,000 1 -11111110 98.49 1 -11111110 12,910,000 1 -11111110 11,990,000 1 -11111110 only-children 1 -11111110 8,501,000 1 -11111110 13,302,000 1 -11111110 8,640,000 1 -11111110 industrynext 1 -11111110 11,659,000 1 -11111110 8,820,860 1 -11111110 8,709,000 1 -11111110 risers 1 -11111110 winter-heating 1 -11111110 copper-delivery 1 -11111110 11,514,000 1 -11111110 12,433,000 1 -11111110 8,513,925 1 -11111110 hard-to-predict 1 -11111110 9,030,000 1 -11111110 176-acre 2 -11111110 fur-buying 2 -11111110 last 57219 -11111110 20-hour 3 -111111110 shareholder-meeting 1 -111111110 62-nd 1 -111111110 21,500-circulation 1 -111111110 revenue-rich 1 -111111110 steamiest 1 -111111110 51-year-history 1 -111111110 1978-87 1 -111111110 Stygian 1 -111111110 subarctic 1 -111111110 less-art-conscious 1 -111111110 muskrat-eating 1 -111111110 17-to-20 1 -111111110 summer-holiday 1 -111111110 tumultous 1 -111111110 re-enlisting 1 -111111110 1992-model 1 -111111110 Christmas-buying 1 -111111110 advertising-poor 1 -111111110 bargain-buying 1 -111111110 1989/90 1 -111111110 pre-Black 1 -111111110 third-strongest 1 -111111110 1990-1991 1 -111111110 mid-17th 1 -111111110 now-reviled 1 -111111110 gangrenous-yellow 1 -111111110 birdieing 1 -111111110 low-consumption 1 -111111110 third-consecutive 1 -111111110 late-18th 1 -111111110 53-week 1 -111111110 summerdriving 1 -111111110 198788 1 -111111110 1991-model 1 -111111110 mid-18th 2 -111111110 second-straight 2 -111111110 avian 2 -111111110 mid-16th 2 -111111110 mid-20th 3 -111111110 post-Black 4 -111111110 Baikonur 4 -111111110 twentieth 5 -111111110 mid-19th 12 -111111110 18th 128 -111111110 21st 152 -111111110 19th 271 -111111110 next 22455 -111111110 20th 288 -111111111 stiff-penalty 1 -111111111 what-did-he-know-and-when 1 -111111111 Hudson. 1 -111111111 113-mile 1 -111111111 PBS-commissioned 1 -111111111 Twins-Cards 1 -111111111 Ameritech-funded 1 -111111111 Goldman-Sachs 1 -111111111 British-links 1 -111111111 Ameritech-underwritten 1 -111111111 AS/EXTM 1 -111111111 24-part 1 -111111111 CFM563 1 -111111111 then-standard 1 -111111111 first-choice 1 -111111111 golden-green 1 -111111111 beatifying 1 -111111111 cane-fiber 1 -111111111 Mobil-funded 1 -111111111 fuel/air 1 -111111111 198182 1 -111111111 dullard 1 -111111111 Arriflex 1 -111111111 209th 1 -111111111 Dead/MATRIX 1 -111111111 now-dominant 1 -111111111 kick-after-touchdown 1 -111111111 bicyle-producing 1 -111111111 ISE-Nikkei 1 -111111111 one-chance-in-a-thousand 1 -111111111 lap-speeds 1 -111111111 five-event 1 -111111111 nine-concert 1 -111111111 Vietnam-nurses 1 -111111111 Herald-Leader 1 -111111111 time-makes 1 -111111111 two-job 1 -111111111 shares-approximately 1 -111111111 Arkansas-born 2 -111111111 sleaziest 2 -111111111 post-Proposition 2 -111111111 0-6 2 -111111111 -300 3 -111111111 mid-90s 3 -111111111 DeskPro 3 -111111111 25-44 4 -111111111 1990-91 4 -111111111 Tupac 5 -111111111 rainiest 5 -111111111 Wheelwriter 7 -111111111 past 16343 -111111111 1988-1989 8 diff --git a/corpora/en/wordnet/AUTHORS b/corpora/en/wordnet/AUTHORS deleted file mode 100644 index b95a7570d..000000000 --- a/corpora/en/wordnet/AUTHORS +++ /dev/null @@ -1,6 +0,0 @@ -Cognitive Science Laboratory -Princeton University - -http://wordnet.princeton.edu -wordnet@princeton.edu - diff --git a/corpora/en/wordnet/COPYING b/corpora/en/wordnet/COPYING deleted file mode 100644 index a77f7a8f6..000000000 --- a/corpora/en/wordnet/COPYING +++ /dev/null @@ -1,31 +0,0 @@ -WordNet Release 3.0 - -This software and database is being provided to you, the LICENSEE, by -Princeton University under the following license. By obtaining, using -and/or copying this software and database, you agree that you have -read, understood, and will comply with these terms and conditions.: - -Permission to use, copy, modify and distribute this software and -database and its documentation for any purpose and without fee or -royalty is hereby granted, provided that you agree to comply with -the following copyright notice and statements, including the disclaimer, -and that the same appear on ALL copies of the software, database and -documentation, including modifications that you make for internal -use or for distribution. - -WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - -THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- -ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE -OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT -INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR -OTHER RIGHTS. - -The name of Princeton University or Princeton may not be used in -advertising or publicity pertaining to distribution of the software -and/or database. Title to copyright in this software, database and -any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. diff --git a/corpora/en/wordnet/ChangeLog b/corpora/en/wordnet/ChangeLog deleted file mode 100644 index 0f6df276d..000000000 --- a/corpora/en/wordnet/ChangeLog +++ /dev/null @@ -1,9 +0,0 @@ -Changes between WordNet 2.1 and 3.0 - -Some changes were made to the graphical interface and WordNet library -with regard to adjective and adverb searches. The adjective search -"Synonyms/Related Nouns" was relabeled "Synonyms", and, similarly, the -adverb search "Synonyms/Stem Adjectives" was relabled "Synonyms". A -separate "Related Noun" search was inserted for adjectives, and a -separate "Base Adjective" search was added for adverbs. - diff --git a/corpora/en/wordnet/INSTALL b/corpora/en/wordnet/INSTALL deleted file mode 100644 index 902317e9f..000000000 --- a/corpora/en/wordnet/INSTALL +++ /dev/null @@ -1,312 +0,0 @@ - - WordNet 3.0 Installation Instructions - -Beginning with Version 2.1, we have changed the Unix package to a GNU -Autotools package. With Autotools, a system independent installation -process builds and installs WordNet on your specific platform. Read -both the `Basic Installation' and `WordNet Installation' sections -below before attempting to build and install WordNet. - -See the `Running WordNet' section for important information concerning -environment variables and the commands to run WordNet. - -The WordNet browser makes use of the open source Tcl and Tk -packages. Many systems come with either or both pre-installed. If -your system doesn't (some systems have Tcl installed, but not Tk) -Tcl/Tk can be downloaded from: - -Linux - http://www.tcl.tk/ - -OS X - http://tcltkaqua.sourceforge.net/ (note that 10.4 comes with -Tcl/Tk preinstalled, but earlier versions may not) - -Some Linux systems come with the Tcl/Tk libraries installed, but not -all the header files. If your build fails due to missing Tk headers, a -subset that may be sufficient on your system can be found in the -"include/tk" directory. Copy the header files to the "include" directory -and try the make again. If it fails, you should download and install -a full copy of Tcl and/or Tk from the site above. - -Tcl and Tk must be installed BEFORE you build and install WordNet. You -must also have a C compiler before installing Tcl/Tk or WordNet. -WordNet has been built and tested with the GNU gcc compiler. This is -pre-installed on most Unix systems, and can be downloaded from: - -http://gcc.gnu.org/ - -Basic Installation -================== - -******************************************************************** - These are generic installation instructions. Details specific to - WordNet follow in the `WordNet Installation' section below. -******************************************************************** - - The `configure' shell script attempts to guess correct values for -various system-dependent variables used during compilation. It uses -those values to create a `Makefile' in each directory of the package. -It may also create one or more `.h' files containing system-dependent -definitions. Finally, it creates a shell script `config.status' that -you can run in the future to recreate the current configuration, and a -file `config.log' containing compiler output (useful mainly for -debugging `configure'). - - It can also use an optional file (typically called `config.cache' -and enabled with `--cache-file=config.cache' or simply `-C') that saves -the results of its tests to speed up reconfiguring. (Caching is -disabled by default to prevent problems with accidental use of stale -cache files.) - -The simplest way to compile this package is: - - 1. `cd' to the directory containing the package's source code and type - `./configure' to configure the package for your system. If you're - using `csh' on an old version of System V, you might need to type - `sh ./configure' instead to prevent `csh' from trying to execute - `configure' itself. - - Running `configure' takes awhile. While running, it prints some - messages telling which features it is checking for. - - 2. Type `make' to compile the package. - - 3. Type `make install' to install the programs and any data files and - documentation. - - 4. You can remove the program binaries and object files from the - source code directory by typing `make clean'. To also remove the - files that `configure' created (so you can compile the package for - a different kind of computer), type `make distclean'. There is - also a `make maintainer-clean' target, but that is intended mainly - for the package's developers. If you use it, you may have to get - all sorts of other programs in order to regenerate files that came - with the distribution. - -Compilers and Options -===================== - - Some systems require unusual options for compilation or linking that -the `configure' script does not know about. Run `./configure --help' -for details on some of the pertinent environment variables. - - You can give `configure' initial values for configuration parameters -by setting variables in the command line or in the environment. Here -is an example: - - ./configure CC=c89 CFLAGS=-O2 LIBS=-lposix - - *Note Defining Variables::, for more details. - -Compiling For Multiple Architectures -==================================== - - You can compile the package for more than one kind of computer at the -same time, by placing the object files for each architecture in their -own directory. To do this, you must use a version of `make' that -supports the `VPATH' variable, such as GNU `make'. `cd' to the -directory where you want the object files and executables to go and run -the `configure' script. `configure' automatically checks for the -source code in the directory that `configure' is in and in `..'. - - If you have to use a `make' that does not support the `VPATH' -variable, you have to compile the package for one architecture at a -time in the source code directory. After you have installed the -package for one architecture, use `make distclean' before reconfiguring -for another architecture. - -Installation Names -================== - - By default, `make install' will install the package's files in -`/usr/local/bin', `/usr/local/man', etc. You can specify an -installation prefix other than `/usr/local' by giving `configure' the -option `--prefix=PATH'. - - You can specify separate installation prefixes for -architecture-specific files and architecture-independent files. If you -give `configure' the option `--exec-prefix=PATH', the package will use -PATH as the prefix for installing programs and libraries. -Documentation and other data files will still use the regular prefix. - - In addition, if you use an unusual directory layout you can give -options like `--bindir=PATH' to specify different values for particular -kinds of files. Run `configure --help' for a list of the directories -you can set and what kinds of files go in them. - - If the package supports it, you can cause programs to be installed -with an extra prefix or suffix on their names by giving `configure' the -option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. - -Optional Features -================= - - Some packages pay attention to `--enable-FEATURE' options to -`configure', where FEATURE indicates an optional part of the package. -They may also pay attention to `--with-PACKAGE' options, where PACKAGE -is something like `gnu-as' or `x' (for the X Window System). The -`README' should mention any `--enable-' and `--with-' options that the -package recognizes. - - For packages that use the X Window System, `configure' can usually -find the X include and library files automatically, but if it doesn't, -you can use the `configure' options `--x-includes=DIR' and -`--x-libraries=DIR' to specify their locations. - -Specifying the System Type -========================== - - There may be some features `configure' cannot figure out -automatically, but needs to determine by the type of machine the package -will run on. Usually, assuming the package is built to be run on the -_same_ architectures, `configure' can figure that out, but if it prints -a message saying it cannot guess the machine type, give it the -`--build=TYPE' option. TYPE can either be a short name for the system -type, such as `sun4', or a canonical name which has the form: - - CPU-COMPANY-SYSTEM - -where SYSTEM can have one of these forms: - - OS KERNEL-OS - - See the file `config.sub' for the possible values of each field. If -`config.sub' isn't included in this package, then this package doesn't -need to know the machine type. - - If you are _building_ compiler tools for cross-compiling, you should -use the `--target=TYPE' option to select the type of system they will -produce code for. - - If you want to _use_ a cross compiler, that generates code for a -platform different from the build platform, you should specify the -"host" platform (i.e., that on which the generated programs will -eventually be run) with `--host=TYPE'. - -Sharing Defaults -================ - - If you want to set default values for `configure' scripts to share, -you can create a site shell script called `config.site' that gives -default values for variables like `CC', `cache_file', and `prefix'. -`configure' looks for `PREFIX/share/config.site' if it exists, then -`PREFIX/etc/config.site' if it exists. Or, you can set the -`CONFIG_SITE' environment variable to the location of the site script. -A warning: not all `configure' scripts look for a site script. - -Defining Variables -================== - - Variables not defined in a site shell script can be set in the -environment passed to `configure'. However, some packages may run -configure again during the build, and the customized values of these -variables may be lost. In order to avoid this problem, you should set -them in the `configure' command line, using `VAR=value'. For example: - - ./configure CC=/usr/local2/bin/gcc - -will cause the specified gcc to be used as the C compiler (unless it is -overridden in the site shell script). - -`configure' Invocation -====================== - - `configure' recognizes the following options to control how it -operates. - -`--help' -`-h' - Print a summary of the options to `configure', and exit. - -`--version' -`-V' - Print the version of Autoconf used to generate the `configure' - script, and exit. - -`--cache-file=FILE' - Enable the cache: use and save the results of the tests in FILE, - traditionally `config.cache'. FILE defaults to `/dev/null' to - disable caching. - -`--config-cache' -`-C' - Alias for `--cache-file=config.cache'. - -`--quiet' -`--silent' -`-q' - Do not print messages saying which checks are being made. To - suppress all normal output, redirect it to `/dev/null' (any error - messages will still be shown). - -`--srcdir=DIR' - Look for the package's source code in directory DIR. Usually - `configure' can determine that directory automatically. - -`configure' also accepts some other, not widely useful, options. Run -`configure --help' for more details. - - -WordNet Installation -==================== - -By default, WordNet is installed in `/usr/local/WordNet-3.0'. You -must usually be the `root' user to install something here. If you -choose to install WordNet in a different location, you must use the -`--prefix=' option to `configure' and specify an installation -directory. - -WordNet relies on the Tcl/Tk package, which you must have installed on -your system prior to building the WordNet package. If you have -installed Tcl/Tk in a non-standard location, you must specify the -`--with-tcl=' and `--with-tk=' options to `configure' and specify the -directory that contains the `tclConfig.sh' and `tkConfig.sh' -configuration scripts, respectively. (Note that these are usually the -same directories.) - -If you're running OS X and installed the Aqua Tcl/Tk package from the -web site above, use the following settings: - - --with-tcl=/Library/Frameworks/Tcl.framework - --with-tk=/Library/Frameworks/Tk.framework - -If `configure' can't find either `tclConfig.sh' or `tkConfig.sh', it -will print an error and stop processing. - -After successfully running `configure', you must then build and -install WordNet using these commands: - -make -make install - -Running WordNet -=============== - -In order to run WordNet, you must set your PATH variable to include -the directory that contains the WordNet binraries. By default, WordNet -is installed in `/usr/local/WordNet-3.0'. - -Several other environment variables may need to be set in order to -run WordNet on your system: - -PATH - should include either `/usr/local/WordNet-3.0/bin' or the path -you specified with the `--prefix=' option to `configure', unless you -installed WordNet in a directory that is already in your path. - -WNHOME - if you did not install in the default location, you must set -this environment variable to the value you specified on the `prefix=' -option. This tells the WordNet browser where to find the database files. - -LD_LIBRARY_PATH - may need to be set to the location of the Tcl/Tk -libraries. - -TK_LIBRARY - on OS X, may need to be set to the directory that -contains the `tk.tcl' file (usually a subidrectory of where the Tk -library is installed). - -The command `wnb' starts the WordNet browser application. If any -of the above variables is not set, or not set properly, an error will -occur when you run `wnb'. - -The command line interface is run with the `wn' command. The `PATH' and -`WNHOME' environment variables must also be set. - diff --git a/corpora/en/wordnet/Makefile.am b/corpora/en/wordnet/Makefile.am deleted file mode 100644 index 6c1bd555d..000000000 --- a/corpora/en/wordnet/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -EXTRA_DIST = README ChangeLog COPYING INSTALL AUTHORS LICENSE doc dict include -SUBDIRS = doc dict include lib src diff --git a/corpora/en/wordnet/Makefile.in b/corpora/en/wordnet/Makefile.in deleted file mode 100644 index 8eca0b2d0..000000000 --- a/corpora/en/wordnet/Makefile.in +++ /dev/null @@ -1,569 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = . -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = . -DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ - compile depcomp install-sh missing -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno configure.status.lineno -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-exec-recursive install-info-recursive \ - install-recursive installcheck-recursive installdirs-recursive \ - pdf-recursive ps-recursive uninstall-info-recursive \ - uninstall-recursive -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } -DIST_ARCHIVES = $(distdir).tar.gz -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -EXTRA_DIST = README ChangeLog COPYING INSTALL AUTHORS LICENSE doc dict include -SUBDIRS = doc dict include lib src -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -am--refresh: - @: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ - cd $(srcdir) && $(AUTOMAKE) --gnu \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - $(SHELL) ./config.status --recheck - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) - -config.h: stamp-h1 - @if test ! -f $@; then \ - rm -f stamp-h1; \ - $(MAKE) stamp-h1; \ - else :; fi - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - cd $(top_builddir) && $(SHELL) ./config.status config.h -$(srcdir)/config.h.in: $(am__configure_deps) - cd $(top_srcdir) && $(AUTOHEADER) - rm -f stamp-h1 - touch $@ - -distclean-hdr: - -rm -f config.h stamp-h1 -uninstall-info-am: - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - $(am__remove_distdir) - mkdir $(distdir) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(mkdir_p) "$(distdir)/$$subdir" \ - || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ - distdir) \ - || exit 1; \ - fi; \ - done - -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ - ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ - ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ - || chmod -R a+r $(distdir) -dist-gzip: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) - -dist-bzip2: distdir - tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 - $(am__remove_distdir) - -dist-tarZ: distdir - tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z - $(am__remove_distdir) - -dist-shar: distdir - shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz - $(am__remove_distdir) - -dist-zip: distdir - -rm -f $(distdir).zip - zip -rq $(distdir).zip $(distdir) - $(am__remove_distdir) - -dist dist-all: distdir - tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - $(am__remove_distdir) - -# This target untars the dist file and tries a VPATH configuration. Then -# it guarantees that the distribution is self-contained by making another -# tarfile. -distcheck: dist - case '$(DIST_ARCHIVES)' in \ - *.tar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\ - *.tar.bz2*) \ - bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\ - *.tar.Z*) \ - uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ - *.shar.gz*) \ - GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ - *.zip*) \ - unzip $(distdir).zip ;;\ - esac - chmod -R a-w $(distdir); chmod a+w $(distdir) - mkdir $(distdir)/_build - mkdir $(distdir)/_inst - chmod a-w $(distdir) - dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ - && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ - && cd $(distdir)/_build \ - && ../configure --srcdir=.. --prefix="$$dc_install_base" \ - $(DISTCHECK_CONFIGURE_FLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) \ - && $(MAKE) $(AM_MAKEFLAGS) dvi \ - && $(MAKE) $(AM_MAKEFLAGS) check \ - && $(MAKE) $(AM_MAKEFLAGS) install \ - && $(MAKE) $(AM_MAKEFLAGS) installcheck \ - && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ - distuninstallcheck \ - && chmod -R a-w "$$dc_install_base" \ - && ({ \ - (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ - && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ - distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ - } || { rm -rf "$$dc_destdir"; exit 1; }) \ - && rm -rf "$$dc_destdir" \ - && $(MAKE) $(AM_MAKEFLAGS) dist \ - && rm -rf $(DIST_ARCHIVES) \ - && $(MAKE) $(AM_MAKEFLAGS) distcleancheck - $(am__remove_distdir) - @(echo "$(distdir) archives ready for distribution: "; \ - list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ - sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' -distuninstallcheck: - @cd $(distuninstallcheck_dir) \ - && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ - || { echo "ERROR: files left after uninstall:" ; \ - if test -n "$(DESTDIR)"; then \ - echo " (check DESTDIR support)"; \ - fi ; \ - $(distuninstallcheck_listfiles) ; \ - exit 1; } >&2 -distcleancheck: distclean - @if test '$(srcdir)' = . ; then \ - echo "ERROR: distcleancheck can only run from a VPATH build" ; \ - exit 1 ; \ - fi - @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ - || { echo "ERROR: files left in build directory after distclean:" ; \ - $(distcleancheck_listfiles) ; \ - exit 1; } >&2 -check-am: all-am -check: check-recursive -all-am: Makefile config.h -installdirs: installdirs-recursive -installdirs-am: -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-hdr distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -info: info-recursive - -info-am: - -install-data-am: - -install-exec-am: - -install-info: install-info-recursive - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f $(am__CONFIG_DISTCLEAN_FILES) - -rm -rf $(top_srcdir)/autom4te.cache - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-info-am - -uninstall-info: uninstall-info-recursive - -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ - check-am clean clean-generic clean-recursive ctags \ - ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \ - dist-tarZ dist-zip distcheck distclean distclean-generic \ - distclean-hdr distclean-recursive distclean-tags \ - distcleancheck distdir distuninstallcheck dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive \ - mostlyclean mostlyclean-generic mostlyclean-recursive pdf \ - pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ - uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/README b/corpora/en/wordnet/README deleted file mode 100644 index 2d6100c43..000000000 --- a/corpora/en/wordnet/README +++ /dev/null @@ -1,101 +0,0 @@ - - This is the README file for WordNet 3.0 - -1. About WordNet - -WordNet was developed at Princeton University's Cognitive Science -Laboratory under the direction of George Miller, James S. McDonnell -Distinguished University Professor of Psychology, Emeritus. Over the -years many linguists, lexicographers, students, and software engineers -have contributed to the project. - -WordNet is an online lexical reference system. Word forms in WordNet -are represented in their familiar orthography; word meanings are -represented by synonym sets (synsets) - lists of synonymous word forms -that are interchangeable in some context. Two kinds of relations are -recognized: lexical and semantic. Lexical relations hold between word -forms; semantic relations hold between word meanings. - -To learn more about WordNet, the book "WordNet: An Electronic Lexical -Database," containing an updated version of "Five Papers on WordNet" -and additional papers by WordNet users, is available from MIT Press: - - http://mitpress.mit.edu/book-home.tcl?isbn=026206197X - -2. The WordNet Web Site - -We maintain a Web site at: - -http://wordnet.princeton.edu - -Information about WordNet, access to our online interface, and the -various WordNet packages that you can download are available from our -web site. All of the software documentation is available online, as -well as a FAQ. On this site we also have information about other -applications that use WordNet. If you have an application that you -would like included, please send e-mail to the above address. - -3. Contacting Us - -Ongoing deveopment work and WordNet related projects are done by a -small group of researchers, lexicographers, and systems programmers. -Since our resources are VERY limited, we request that you please -confine correspondence to WordNet topics only. Please check the -documentation, FAQ, and other resources for the answer to your -question or problem before contacting us. - -If you have trouble installing or downloading WordNet, have a bug to -report, or any other problem, please refer to the online FAQ file -first. If you can heal thyself, please do so. The FAQ will be -updated over time. And if you do find a previously unreported -problem, please use our Bug Report Form: - -http://wordnet.princeton.edu/cgi-bin/bugsubmit.pl - -When reporting a problem, please be as specific as possible, stating -the computer platform you are using, which interface you are using, -and the exact error. The more details you can provide, the more -likely it is that you will get an answer. - -There is a WordNet user discussion group mailing list that we invite -our users to join. Users use this list to ask questions of one -another, announce extensions to WordNet that they've developed, and -other topics of general usefulness to the user community. - -Information on joining the user discussion list, reporting bugs and other -contact information is in found on our website at: - -http://wordnet.princeton.edu/contact - -4. Current Release - -WordNet Version 3.0 is the latest version available for download. Two -basic database packages are available - one for Windows and one for -Unix platforms (including Mac OS X). See the file ChangeLog (Unix) or -CHANGES.txt (Windows) for a list of changes from previous versions. - -WordNet packages can either be downloaded from our web site via: - -http://wordnet.princeton.edu/obtain - -The Windows package is a self-extracting archive that installs itself -when you double-click on it. - -Beginning with Version 2.1, we changed the Unix package to a GNU Autotools -package. The WordNet browser makes use of the open source Tcl and Tk -packages. Many systems come with either or both pre-installed. If -your system doesn't (some systems have Tcl installed, but not Tk) -Tcl/Tk can be downloaded from: - -http://www.tcl.tk/ - -Tcl and Tk must be installed BEFORE you compile WordNet. You must also -have a C compiler before installing Tcl/Tk or WordNet. WordNet has -been built and tested with the GNU gcc compiler. This is -pre-installed on most Unix systems, and can be downloaded from: - -http://gcc.gnu.org/ - -See the file INSTALL for detailed WordNet installation instructions. - - diff --git a/corpora/en/wordnet/acinclude.m4 b/corpora/en/wordnet/acinclude.m4 deleted file mode 100644 index d404f4b02..000000000 --- a/corpora/en/wordnet/acinclude.m4 +++ /dev/null @@ -1,333 +0,0 @@ -#------------------------------------------------------------------------ -# SC_PATH_TCLCONFIG -- -# -# Locate the tclConfig.sh file and perform a sanity check on -# the Tcl compile flags -# -# Arguments: -# none -# -# Results: -# -# Adds the following arguments to configure: -# --with-tcl=... -# -# Defines the following vars: -# TCL_BIN_DIR Full path to the directory containing -# the tclConfig.sh file -#------------------------------------------------------------------------ - -AC_DEFUN(SC_PATH_TCLCONFIG, [ - # - # Ok, lets find the tcl configuration - # First, look for one uninstalled. - # the alternative search directory is invoked by --with-tcl - # - - if test x"${no_tcl}" = x ; then - # we reset no_tcl in case something fails here - no_tcl=true - AC_ARG_WITH(tcl, [ --with-tcl directory containing tcl configuration (tclConfig.sh)], with_tclconfig=${withval}) - AC_MSG_CHECKING([for Tcl configuration]) - AC_CACHE_VAL(ac_cv_c_tclconfig,[ - - # First check to see if --with-tcl was specified. - if test x"${with_tclconfig}" != x ; then - if test -f "${with_tclconfig}/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)` - else - AC_MSG_ERROR([${with_tclconfig} directory doesn't contain tclConfig.sh]) - fi - fi - - # then check for a private Tcl installation - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in \ - ../tcl \ - `ls -dr ../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../tcl[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../tcl[[8-9]].[[0-9]]* 2>/dev/null` \ - ../../tcl \ - `ls -dr ../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../../tcl[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../../tcl[[8-9]].[[0-9]]* 2>/dev/null` \ - ../../../tcl \ - `ls -dr ../../../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../../../tcl[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../../../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - - # check in a few common install locations - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in `ls -d ${libdir} 2>/dev/null` \ - `ls -d /usr/local/lib 2>/dev/null` \ - `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ - `ls -d /usr/lib64 2>/dev/null` \ - ; do - if test -f "$i/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i; pwd)` - break - fi - done - fi - - # check in a few other private locations - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in \ - ${srcdir}/../tcl \ - `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ${srcdir}/../tcl[[8-9]].[[0-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - ]) - - if test x"${ac_cv_c_tclconfig}" = x ; then - TCL_BIN_DIR="# no Tcl configs found" - AC_MSG_WARN(Can't find Tcl configuration definitions) - exit 0 - else - no_tcl= - TCL_BIN_DIR=${ac_cv_c_tclconfig} - AC_MSG_RESULT(found $TCL_BIN_DIR/tclConfig.sh) - fi - fi -]) - -#------------------------------------------------------------------------ -# SC_PATH_TKCONFIG -- -# -# Locate the tkConfig.sh file -# -# Arguments: -# none -# -# Results: -# -# Adds the following arguments to configure: -# --with-tk=... -# -# Defines the following vars: -# TK_BIN_DIR Full path to the directory containing -# the tkConfig.sh file -#------------------------------------------------------------------------ - -AC_DEFUN(SC_PATH_TKCONFIG, [ - # - # Ok, lets find the tk configuration - # First, look for one uninstalled. - # the alternative search directory is invoked by --with-tk - # - - if test x"${no_tk}" = x ; then - # we reset no_tk in case something fails here - no_tk=true - AC_ARG_WITH(tk, [ --with-tk directory containing tk configuration (tkConfig.sh)], with_tkconfig=${withval}) - AC_MSG_CHECKING([for Tk configuration]) - AC_CACHE_VAL(ac_cv_c_tkconfig,[ - - # First check to see if --with-tkconfig was specified. - if test x"${with_tkconfig}" != x ; then - if test -f "${with_tkconfig}/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)` - else - AC_MSG_ERROR([${with_tkconfig} directory doesn't contain tkConfig.sh]) - fi - fi - - # then check for a private Tk library - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in \ - ../tk \ - `ls -dr ../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../tk[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../tk[[8-9]].[[0-9]]* 2>/dev/null` \ - ../../tk \ - `ls -dr ../../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../../tk[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../../tk[[8-9]].[[0-9]]* 2>/dev/null` \ - ../../../tk \ - `ls -dr ../../../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ../../../tk[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ../../../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - # check in a few common install locations - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in `ls -d ${libdir} 2>/dev/null` \ - `ls -d /usr/local/lib 2>/dev/null` \ - `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ - `ls -d /usr/lib64 2>/dev/null` \ - ; do - if test -f "$i/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i; pwd)` - break - fi - done - fi - # check in a few other private locations - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in \ - ${srcdir}/../tk \ - `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]].[[0-9]]* 2>/dev/null` \ - `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]] 2>/dev/null` \ - `ls -dr ${srcdir}/../tk[[8-9]].[[0-9]]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - ]) - if test x"${ac_cv_c_tkconfig}" = x ; then - TK_BIN_DIR="# no Tk configs found" - AC_MSG_WARN(Can't find Tk configuration definitions) - exit 0 - else - no_tk= - TK_BIN_DIR=${ac_cv_c_tkconfig} - AC_MSG_RESULT(found $TK_BIN_DIR/tkConfig.sh) - fi - fi - -]) - -#------------------------------------------------------------------------ -# SC_LOAD_TCLCONFIG -- -# -# Load the tclConfig.sh file -# -# Arguments: -# -# Requires the following vars to be set: -# TCL_BIN_DIR -# -# Results: -# -# Subst the following vars: -# TCL_BIN_DIR -# TCL_SRC_DIR -# TCL_LIB_FILE -# -#------------------------------------------------------------------------ - -AC_DEFUN(SC_LOAD_TCLCONFIG, [ - AC_MSG_CHECKING([for existence of $TCL_BIN_DIR/tclConfig.sh]) - - if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then - AC_MSG_RESULT([loading]) - . $TCL_BIN_DIR/tclConfig.sh - else - AC_MSG_RESULT([file not found]) - fi - - # - # If the TCL_BIN_DIR is the build directory (not the install directory), - # then set the common variable name to the value of the build variables. - # For example, the variable TCL_LIB_SPEC will be set to the value - # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC - # instead of TCL_BUILD_LIB_SPEC since it will work with both an - # installed and uninstalled version of Tcl. - # - - if test -f $TCL_BIN_DIR/Makefile ; then - TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC} - TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC} - TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH} - fi - - # - # eval is required to do the TCL_DBGX substitution - # - - eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\"" - eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\"" - eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\"" - eval "TCL_INCLUDE_SPEC=\"${TCL_INCLUDE_SPEC}\"" - - eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\"" - eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\"" - eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\"" - -# AC_SUBST(TCL_VERSION) -# AC_SUBST(TCL_BIN_DIR) -# AC_SUBST(TCL_SRC_DIR) - -# AC_SUBST(TCL_LIB_FILE) -# AC_SUBST(TCL_LIB_FLAG) - AC_SUBST(TCL_LIB_SPEC) - AC_SUBST(TCL_INCLUDE_SPEC) - -# AC_SUBST(TCL_STUB_LIB_FILE) -# AC_SUBST(TCL_STUB_LIB_FLAG) -# AC_SUBST(TCL_STUB_LIB_SPEC) -]) - -#------------------------------------------------------------------------ -# SC_LOAD_TKCONFIG -- -# -# Load the tkConfig.sh file -# -# Arguments: -# -# Requires the following vars to be set: -# TK_BIN_DIR -# -# Results: -# -# Sets the following vars that should be in tkConfig.sh: -# TK_BIN_DIR -#------------------------------------------------------------------------ - -AC_DEFUN(SC_LOAD_TKCONFIG, [ - AC_MSG_CHECKING([for existence of $TK_BIN_DIR/tkConfig.sh]) - - if test -f "$TK_BIN_DIR/tkConfig.sh" ; then - AC_MSG_RESULT([loading]) - . $TK_BIN_DIR/tkConfig.sh - else - AC_MSG_RESULT([could not find $TK_BIN_DIR/tkConfig.sh]) - fi - - AC_SUBST(TK_LIB_SPEC) - AC_SUBST(TK_LIBS) - AC_SUBST(TK_XINCLUDES) - AC_SUBST(TK_PREFIX) - -# AC_SUBST(TK_VERSION) -# AC_SUBST(TK_BIN_DIR) -# AC_SUBST(TK_SRC_DIR) -# AC_SUBST(TK_LIB_FILE) -]) - -dnl From Bruno Haible. - -AC_DEFUN([AC_LANGINFO_CODESET], -[ - AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset, - [AC_TRY_LINK([#include ], - [char* cs = nl_langinfo(CODESET);], - am_cv_langinfo_codeset=yes, - am_cv_langinfo_codeset=no) - ]) - if test $am_cv_langinfo_codeset = yes; then - AC_DEFINE(HAVE_LANGINFO_CODESET, 1, - [Define if you have and nl_langinfo(CODESET).]) - fi -]) - diff --git a/corpora/en/wordnet/aclocal.m4 b/corpora/en/wordnet/aclocal.m4 deleted file mode 100644 index 94aeed519..000000000 --- a/corpora/en/wordnet/aclocal.m4 +++ /dev/null @@ -1,1021 +0,0 @@ -# generated automatically by aclocal 1.9 -*- Autoconf -*- - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. -# This file is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -# -*- Autoconf -*- -# Copyright (C) 2002, 2003 Free Software Foundation, Inc. -# Generated from amversion.in; do not edit by hand. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - -# AM_AUTOMAKE_VERSION(VERSION) -# ---------------------------- -# Automake X.Y traces this macro to ensure aclocal.m4 has been -# generated from the m4 files accompanying Automake X.Y. -AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) - -# AM_SET_CURRENT_AUTOMAKE_VERSION -# ------------------------------- -# Call AM_AUTOMAKE_VERSION so it can be traced. -# This function is AC_REQUIREd by AC_INIT_AUTOMAKE. -AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], - [AM_AUTOMAKE_VERSION([1.9])]) - -# AM_AUX_DIR_EXPAND - -# Copyright (C) 2001, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets -# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to -# `$srcdir', `$srcdir/..', or `$srcdir/../..'. -# -# Of course, Automake must honor this variable whenever it calls a -# tool from the auxiliary directory. The problem is that $srcdir (and -# therefore $ac_aux_dir as well) can be either absolute or relative, -# depending on how configure is run. This is pretty annoying, since -# it makes $ac_aux_dir quite unusable in subdirectories: in the top -# source directory, any form will work fine, but in subdirectories a -# relative path needs to be adjusted first. -# -# $ac_aux_dir/missing -# fails when called from a subdirectory if $ac_aux_dir is relative -# $top_srcdir/$ac_aux_dir/missing -# fails if $ac_aux_dir is absolute, -# fails when called from a subdirectory in a VPATH build with -# a relative $ac_aux_dir -# -# The reason of the latter failure is that $top_srcdir and $ac_aux_dir -# are both prefixed by $srcdir. In an in-source build this is usually -# harmless because $srcdir is `.', but things will broke when you -# start a VPATH build or use an absolute $srcdir. -# -# So we could use something similar to $top_srcdir/$ac_aux_dir/missing, -# iff we strip the leading $srcdir from $ac_aux_dir. That would be: -# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` -# and then we would define $MISSING as -# MISSING="\${SHELL} $am_aux_dir/missing" -# This will work as long as MISSING is not called from configure, because -# unfortunately $(top_srcdir) has no meaning in configure. -# However there are other variables, like CC, which are often used in -# configure, and could therefore not use this "fixed" $ac_aux_dir. -# -# Another solution, used here, is to always expand $ac_aux_dir to an -# absolute PATH. The drawback is that using absolute paths prevent a -# configured tree to be moved without reconfiguration. - -AC_DEFUN([AM_AUX_DIR_EXPAND], -[dnl Rely on autoconf to set up CDPATH properly. -AC_PREREQ([2.50])dnl -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` -]) - -# AM_CONDITIONAL -*- Autoconf -*- - -# Copyright (C) 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 6 - -# AM_CONDITIONAL(NAME, SHELL-CONDITION) -# ------------------------------------- -# Define a conditional. -AC_DEFUN([AM_CONDITIONAL], -[AC_PREREQ(2.52)dnl - ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], - [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl -AC_SUBST([$1_TRUE]) -AC_SUBST([$1_FALSE]) -if $2; then - $1_TRUE= - $1_FALSE='#' -else - $1_TRUE='#' - $1_FALSE= -fi -AC_CONFIG_COMMANDS_PRE( -[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then - AC_MSG_ERROR([[conditional "$1" was never defined. -Usually this means the macro was only invoked conditionally.]]) -fi])]) - -# serial 7 -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - - -# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be -# written in clear, in which case automake, when reading aclocal.m4, -# will think it sees a *use*, and therefore will trigger all it's -# C support machinery. Also note that it means that autoscan, seeing -# CC etc. in the Makefile, will ask for an AC_PROG_CC use... - - - -# _AM_DEPENDENCIES(NAME) -# ---------------------- -# See how the compiler implements dependency checking. -# NAME is "CC", "CXX", "GCJ", or "OBJC". -# We try a few techniques and use that to set a single cache variable. -# -# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was -# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular -# dependency, and given that the user is not expected to run this macro, -# just rely on AC_PROG_CC. -AC_DEFUN([_AM_DEPENDENCIES], -[AC_REQUIRE([AM_SET_DEPDIR])dnl -AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl -AC_REQUIRE([AM_MAKE_INCLUDE])dnl -AC_REQUIRE([AM_DEP_TRACK])dnl - -ifelse([$1], CC, [depcc="$CC" am_compiler_list=], - [$1], CXX, [depcc="$CXX" am_compiler_list=], - [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], - [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], - [depcc="$$1" am_compiler_list=]) - -AC_CACHE_CHECK([dependency style of $depcc], - [am_cv_$1_dependencies_compiler_type], -[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_$1_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` - fi - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - case $depmode in - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - none) break ;; - esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. - if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_$1_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_$1_dependencies_compiler_type=none -fi -]) -AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) -AM_CONDITIONAL([am__fastdep$1], [ - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) -]) - - -# AM_SET_DEPDIR -# ------------- -# Choose a directory name for dependency files. -# This macro is AC_REQUIREd in _AM_DEPENDENCIES -AC_DEFUN([AM_SET_DEPDIR], -[AC_REQUIRE([AM_SET_LEADING_DOT])dnl -AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl -]) - - -# AM_DEP_TRACK -# ------------ -AC_DEFUN([AM_DEP_TRACK], -[AC_ARG_ENABLE(dependency-tracking, -[ --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors]) -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi -AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) -AC_SUBST([AMDEPBACKSLASH]) -]) - -# Generate code to set up dependency tracking. -*- Autoconf -*- - -# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -#serial 2 - -# _AM_OUTPUT_DEPENDENCY_COMMANDS -# ------------------------------ -AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], -[for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # So let's grep whole file. - if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then - dirpart=`AS_DIRNAME("$mf")` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`AS_DIRNAME(["$file"])` - AS_MKDIR_P([$dirpart/$fdir]) - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done -done -])# _AM_OUTPUT_DEPENDENCY_COMMANDS - - -# AM_OUTPUT_DEPENDENCY_COMMANDS -# ----------------------------- -# This macro should only be invoked once -- use via AC_REQUIRE. -# -# This code is only required when automatic dependency tracking -# is enabled. FIXME. This creates each `.P' file that we will -# need in order to bootstrap the dependency handling code. -AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], -[AC_CONFIG_COMMANDS([depfiles], - [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], - [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) -]) - -# Do all the work for Automake. -*- Autoconf -*- - -# This macro actually does too much some checks are only needed if -# your package does certain things. But this isn't really a big deal. - -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 -# Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 11 - -# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) -# AM_INIT_AUTOMAKE([OPTIONS]) -# ----------------------------------------------- -# The call with PACKAGE and VERSION arguments is the old style -# call (pre autoconf-2.50), which is being phased out. PACKAGE -# and VERSION should now be passed to AC_INIT and removed from -# the call to AM_INIT_AUTOMAKE. -# We support both call styles for the transition. After -# the next Automake release, Autoconf can make the AC_INIT -# arguments mandatory, and then we can depend on a new Autoconf -# release and drop the old call support. -AC_DEFUN([AM_INIT_AUTOMAKE], -[AC_PREREQ([2.58])dnl -dnl Autoconf wants to disallow AM_ names. We explicitly allow -dnl the ones we care about. -m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl -AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl -AC_REQUIRE([AC_PROG_INSTALL])dnl -# test to see if srcdir already configured -if test "`cd $srcdir && pwd`" != "`pwd`" && - test -f $srcdir/config.status; then - AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi -AC_SUBST([CYGPATH_W]) - -# Define the identity of the package. -dnl Distinguish between old-style and new-style calls. -m4_ifval([$2], -[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl - AC_SUBST([PACKAGE], [$1])dnl - AC_SUBST([VERSION], [$2])], -[_AM_SET_OPTIONS([$1])dnl - AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl - AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl - -_AM_IF_OPTION([no-define],, -[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) - AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl - -# Some tools Automake needs. -AC_REQUIRE([AM_SANITY_CHECK])dnl -AC_REQUIRE([AC_ARG_PROGRAM])dnl -AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) -AM_MISSING_PROG(AUTOCONF, autoconf) -AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) -AM_MISSING_PROG(AUTOHEADER, autoheader) -AM_MISSING_PROG(MAKEINFO, makeinfo) -AM_PROG_INSTALL_SH -AM_PROG_INSTALL_STRIP -AC_REQUIRE([AM_PROG_MKDIR_P])dnl -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -AC_REQUIRE([AC_PROG_AWK])dnl -AC_REQUIRE([AC_PROG_MAKE_SET])dnl -AC_REQUIRE([AM_SET_LEADING_DOT])dnl -_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], - [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], - [_AM_PROG_TAR([v7])])]) -_AM_IF_OPTION([no-dependencies],, -[AC_PROVIDE_IFELSE([AC_PROG_CC], - [_AM_DEPENDENCIES(CC)], - [define([AC_PROG_CC], - defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl -AC_PROVIDE_IFELSE([AC_PROG_CXX], - [_AM_DEPENDENCIES(CXX)], - [define([AC_PROG_CXX], - defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl -]) -]) - - -# When config.status generates a header, we must update the stamp-h file. -# This file resides in the same directory as the config header -# that is generated. The stamp files are numbered to have different names. - -# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the -# loop where config.status creates the headers, so we can generate -# our stamp files there. -AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], -[# Compute $1's index in $config_headers. -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $1 | $1:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) - -# AM_PROG_INSTALL_SH -# ------------------ -# Define $install_sh. - -# Copyright (C) 2001, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -AC_DEFUN([AM_PROG_INSTALL_SH], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -install_sh=${install_sh-"$am_aux_dir/install-sh"} -AC_SUBST(install_sh)]) - -# -*- Autoconf -*- -# Copyright (C) 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 1 - -# Check whether the underlying file-system supports filenames -# with a leading dot. For instance MS-DOS doesn't. -AC_DEFUN([AM_SET_LEADING_DOT], -[rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null -AC_SUBST([am__leading_dot])]) - -# Check to see how 'make' treats includes. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 2 - -# AM_MAKE_INCLUDE() -# ----------------- -# Check to see how make treats includes. -AC_DEFUN([AM_MAKE_INCLUDE], -[am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo done -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -AC_MSG_CHECKING([for style of include used by $am_make]) -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi -fi -AC_SUBST([am__include]) -AC_SUBST([am__quote]) -AC_MSG_RESULT([$_am_result]) -rm -f confinc confmf -]) - -# -*- Autoconf -*- - - -# Copyright (C) 1997, 1999, 2000, 2001, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 3 - -# AM_MISSING_PROG(NAME, PROGRAM) -# ------------------------------ -AC_DEFUN([AM_MISSING_PROG], -[AC_REQUIRE([AM_MISSING_HAS_RUN]) -$1=${$1-"${am_missing_run}$2"} -AC_SUBST($1)]) - - -# AM_MISSING_HAS_RUN -# ------------------ -# Define MISSING if not defined so far and test if it supports --run. -# If it does, set am_missing_run to use it, otherwise, to nothing. -AC_DEFUN([AM_MISSING_HAS_RUN], -[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - AC_MSG_WARN([`missing' script is too old or missing]) -fi -]) - -# AM_PROG_MKDIR_P -# --------------- -# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. - -# Copyright (C) 2003, 2004 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories -# created by `make install' are always world readable, even if the -# installer happens to have an overly restrictive umask (e.g. 077). -# This was a mistake. There are at least two reasons why we must not -# use `-m 0755': -# - it causes special bits like SGID to be ignored, -# - it may be too restrictive (some setups expect 775 directories). -# -# Do not use -m 0755 and let people choose whatever they expect by -# setting umask. -# -# We cannot accept any implementation of `mkdir' that recognizes `-p'. -# Some implementations (such as Solaris 8's) are not thread-safe: if a -# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' -# concurrently, both version can detect that a/ is missing, but only -# one can create it and the other will error out. Consequently we -# restrict ourselves to GNU make (using the --version option ensures -# this.) -AC_DEFUN([AM_PROG_MKDIR_P], -[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then - # We used to keeping the `.' as first argument, in order to - # allow $(mkdir_p) to be used without argument. As in - # $(mkdir_p) $(somedir) - # where $(somedir) is conditionally defined. However this is wrong - # for two reasons: - # 1. if the package is installed by a user who cannot write `.' - # make install will fail, - # 2. the above comment should most certainly read - # $(mkdir_p) $(DESTDIR)$(somedir) - # so it does not work when $(somedir) is undefined and - # $(DESTDIR) is not. - # To support the latter case, we have to write - # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), - # so the `.' trick is pointless. - mkdir_p='mkdir -p --' -else - # On NextStep and OpenStep, the `mkdir' command does not - # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already - # exists. - for d in ./-p ./--version; - do - test -d $d && rmdir $d - done - # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$ac_aux_dir/mkinstalldirs"; then - mkdir_p='$(mkinstalldirs)' - else - mkdir_p='$(install_sh) -d' - fi -fi -AC_SUBST([mkdir_p])]) - -# Helper functions for option handling. -*- Autoconf -*- - -# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 2 - -# _AM_MANGLE_OPTION(NAME) -# ----------------------- -AC_DEFUN([_AM_MANGLE_OPTION], -[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - -# _AM_SET_OPTION(NAME) -# ------------------------------ -# Set option NAME. Presently that only means defining a flag for this option. -AC_DEFUN([_AM_SET_OPTION], -[m4_define(_AM_MANGLE_OPTION([$1]), 1)]) - -# _AM_SET_OPTIONS(OPTIONS) -# ---------------------------------- -# OPTIONS is a space-separated list of Automake options. -AC_DEFUN([_AM_SET_OPTIONS], -[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - -# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) -# ------------------------------------------- -# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. -AC_DEFUN([_AM_IF_OPTION], -[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) - -# -# Check to make sure that the build environment is sane. -# - -# Copyright (C) 1996, 1997, 2000, 2001, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 3 - -# AM_SANITY_CHECK -# --------------- -AC_DEFUN([AM_SANITY_CHECK], -[AC_MSG_CHECKING([whether build environment is sane]) -# Just in case -sleep 1 -echo timestamp > conftest.file -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` - if test "$[*]" = "X"; then - # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` - fi - rm -f conftest.file - if test "$[*]" != "X $srcdir/configure conftest.file" \ - && test "$[*]" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken -alias in your environment]) - fi - - test "$[2]" = conftest.file - ) -then - # Ok. - : -else - AC_MSG_ERROR([newly created file is older than distributed files! -Check your system clock]) -fi -AC_MSG_RESULT(yes)]) - -# AM_PROG_INSTALL_STRIP - -# Copyright (C) 2001, 2003 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# One issue with vendor `install' (even GNU) is that you can't -# specify the program used to strip binaries. This is especially -# annoying in cross-compiling environments, where the build's strip -# is unlikely to handle the host's binaries. -# Fortunately install-sh will honor a STRIPPROG variable, so we -# always use install-sh in `make install-strip', and initialize -# STRIPPROG with the value of the STRIP variable (set by the user). -AC_DEFUN([AM_PROG_INSTALL_STRIP], -[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -dnl Don't test for $cross_compiling = yes, because it might be `maybe'. -if test "$cross_compiling" != no; then - AC_CHECK_TOOL([STRIP], [strip], :) -fi -INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" -AC_SUBST([INSTALL_STRIP_PROGRAM])]) - -# Check how to create a tarball. -*- Autoconf -*- - -# Copyright (C) 2004 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# serial 1 - - -# _AM_PROG_TAR(FORMAT) -# -------------------- -# Check how to create a tarball in format FORMAT. -# FORMAT should be one of `v7', `ustar', or `pax'. -# -# Substitute a variable $(am__tar) that is a command -# writing to stdout a FORMAT-tarball containing the directory -# $tardir. -# tardir=directory && $(am__tar) > result.tar -# -# Substitute a variable $(am__untar) that extract such -# a tarball read from stdin. -# $(am__untar) < result.tar -AC_DEFUN([_AM_PROG_TAR], -[# Always define AMTAR for backward compatibility. -AM_MISSING_PROG([AMTAR], [tar]) -m4_if([$1], [v7], - [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], - [m4_case([$1], [ustar],, [pax],, - [m4_fatal([Unknown tar format])]) -AC_MSG_CHECKING([how to create a $1 tar archive]) -# Loop over all known methods to create a tar archive until one works. -_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' -_am_tools=${am_cv_prog_tar_$1-$_am_tools} -# Do not fold the above two line into one, because Tru64 sh and -# Solaris sh will not grok spaces in the rhs of `-'. -for _am_tool in $_am_tools -do - case $_am_tool in - gnutar) - for _am_tar in tar gnutar gtar; - do - AM_RUN_LOG([$_am_tar --version]) && break - done - am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' - am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' - am__untar="$_am_tar -xf -" - ;; - plaintar) - # Must skip GNU tar: if it does not support --format= it doesn't create - # ustar tarball either. - (tar --version) >/dev/null 2>&1 && continue - am__tar='tar chf - "$$tardir"' - am__tar_='tar chf - "$tardir"' - am__untar='tar xf -' - ;; - pax) - am__tar='pax -L -x $1 -w "$$tardir"' - am__tar_='pax -L -x $1 -w "$tardir"' - am__untar='pax -r' - ;; - cpio) - am__tar='find "$$tardir" -print | cpio -o -H $1 -L' - am__tar_='find "$tardir" -print | cpio -o -H $1 -L' - am__untar='cpio -i -H $1 -d' - ;; - none) - am__tar=false - am__tar_=false - am__untar=false - ;; - esac - - # If the value was cached, stop now. We just wanted to have am__tar - # and am__untar set. - test -n "${am_cv_prog_tar_$1}" && break - - # tar/untar a dummy directory, and stop if the command works - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi -done -rm -rf conftest.dir - -AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) -AC_MSG_RESULT([$am_cv_prog_tar_$1])]) -AC_SUBST([am__tar]) -AC_SUBST([am__untar]) -]) # _AM_PROG_TAR - -m4_include([acinclude.m4]) diff --git a/corpora/en/wordnet/compile b/corpora/en/wordnet/compile deleted file mode 100755 index a81e000ae..000000000 --- a/corpora/en/wordnet/compile +++ /dev/null @@ -1,136 +0,0 @@ -#! /bin/sh -# Wrapper for compilers which do not understand `-c -o'. - -scriptversion=2003-11-09.00 - -# Copyright (C) 1999, 2000, 2003 Free Software Foundation, Inc. -# Written by Tom Tromey . -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# This file is maintained in Automake, please report -# bugs to or send patches to -# . - -case $1 in - '') - echo "$0: No command. Try \`$0 --help' for more information." 1>&2 - exit 1; - ;; - -h | --h*) - cat <<\EOF -Usage: compile [--help] [--version] PROGRAM [ARGS] - -Wrapper for compilers which do not understand `-c -o'. -Remove `-o dest.o' from ARGS, run PROGRAM with the remaining -arguments, and rename the output as expected. - -If you are trying to build a whole package this is not the -right script to run: please start by reading the file `INSTALL'. - -Report bugs to . -EOF - exit 0 - ;; - -v | --v*) - echo "compile $scriptversion" - exit 0 - ;; -esac - - -prog=$1 -shift - -ofile= -cfile= -args= -while test $# -gt 0; do - case "$1" in - -o) - # configure might choose to run compile as `compile cc -o foo foo.c'. - # So we do something ugly here. - ofile=$2 - shift - case "$ofile" in - *.o | *.obj) - ;; - *) - args="$args -o $ofile" - ofile= - ;; - esac - ;; - *.c) - cfile=$1 - args="$args $1" - ;; - *) - args="$args $1" - ;; - esac - shift -done - -if test -z "$ofile" || test -z "$cfile"; then - # If no `-o' option was seen then we might have been invoked from a - # pattern rule where we don't need one. That is ok -- this is a - # normal compilation that the losing compiler can handle. If no - # `.c' file was seen then we are probably linking. That is also - # ok. - exec "$prog" $args -fi - -# Name of file we expect compiler to create. -cofile=`echo $cfile | sed -e 's|^.*/||' -e 's/\.c$/.o/'` - -# Create the lock directory. -# Note: use `[/.-]' here to ensure that we don't use the same name -# that we are using for the .o file. Also, base the name on the expected -# object file name, since that is what matters with a parallel build. -lockdir=`echo $cofile | sed -e 's|[/.-]|_|g'`.d -while true; do - if mkdir $lockdir > /dev/null 2>&1; then - break - fi - sleep 1 -done -# FIXME: race condition here if user kills between mkdir and trap. -trap "rmdir $lockdir; exit 1" 1 2 15 - -# Run the compile. -"$prog" $args -status=$? - -if test -f "$cofile"; then - mv "$cofile" "$ofile" -fi - -rmdir $lockdir -exit $status - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/corpora/en/wordnet/config.h.in b/corpora/en/wordnet/config.h.in deleted file mode 100644 index 94a49b402..000000000 --- a/corpora/en/wordnet/config.h.in +++ /dev/null @@ -1,86 +0,0 @@ -/* config.h.in. Generated from configure.ac by autoheader. */ - -/* Default installation prefix. */ -#undef DEFAULTPATH - -/* Define to 1 if you have the header file. */ -#undef HAVE_INTTYPES_H - -/* Define if you have and nl_langinfo(CODESET). */ -#undef HAVE_LANGINFO_CODESET - -/* Define to 1 if you have the header file. */ -#undef HAVE_LOCALE_H - -/* Define to 1 if your system has a GNU libc compatible `malloc' function, and - to 0 otherwise. */ -#undef HAVE_MALLOC - -/* Define to 1 if you have the header file. */ -#undef HAVE_MALLOC_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_MEMORY_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDINT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STDLIB_H - -/* Define to 1 if you have the `strchr' function. */ -#undef HAVE_STRCHR - -/* Define to 1 if you have the `strdup' function. */ -#undef HAVE_STRDUP - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRINGS_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_STRING_H - -/* Define to 1 if you have the `strrchr' function. */ -#undef HAVE_STRRCHR - -/* Define to 1 if you have the `strstr' function. */ -#undef HAVE_STRSTR - -/* Define to 1 if you have the `strtol' function. */ -#undef HAVE_STRTOL - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_STAT_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_SYS_TYPES_H - -/* Define to 1 if you have the header file. */ -#undef HAVE_UNISTD_H - -/* Name of package */ -#undef PACKAGE - -/* Define to the address where bug reports for this package should be sent. */ -#undef PACKAGE_BUGREPORT - -/* Define to the full name of this package. */ -#undef PACKAGE_NAME - -/* Define to the full name and version of this package. */ -#undef PACKAGE_STRING - -/* Define to the one symbol short name of this package. */ -#undef PACKAGE_TARNAME - -/* Define to the version of this package. */ -#undef PACKAGE_VERSION - -/* Define to 1 if you have the ANSI C header files. */ -#undef STDC_HEADERS - -/* Version number of package */ -#undef VERSION - -/* Define to rpl_malloc if the replacement function should be used. */ -#undef malloc diff --git a/corpora/en/wordnet/configure b/corpora/en/wordnet/configure deleted file mode 100755 index dc237a4bd..000000000 --- a/corpora/en/wordnet/configure +++ /dev/null @@ -1,5755 +0,0 @@ -#! /bin/sh -# Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.59 for WordNet 3.0. -# -# Report bugs to . -# -# Copyright (C) 2003 Free Software Foundation, Inc. -# This configure script is free software; the Free Software Foundation -# gives unlimited permission to copy, distribute and modify it. -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - - -# Name of the host. -# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, -# so uname gets run too. -ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - -exec 6>&1 - -# -# Initializations. -# -ac_default_prefix=/usr/local -ac_config_libobj_dir=. -cross_compiling=no -subdirs= -MFLAGS= -MAKEFLAGS= -SHELL=${CONFIG_SHELL-/bin/sh} - -# Maximum number of lines to put in a shell here document. -# This variable seems obsolete. It should probably be removed, and -# only ac_max_sed_lines should be used. -: ${ac_max_here_lines=38} - -# Identity of this package. -PACKAGE_NAME='WordNet' -PACKAGE_TARNAME='wordnet' -PACKAGE_VERSION='3.0' -PACKAGE_STRING='WordNet 3.0' -PACKAGE_BUGREPORT='wordnet@princeton.edu' - -ac_unique_file="config.h.in" -# Factoring default headers for most tests. -ac_includes_default="\ -#include -#if HAVE_SYS_TYPES_H -# include -#endif -#if HAVE_SYS_STAT_H -# include -#endif -#if STDC_HEADERS -# include -# include -#else -# if HAVE_STDLIB_H -# include -# endif -#endif -#if HAVE_STRING_H -# if !STDC_HEADERS && HAVE_MEMORY_H -# include -# endif -# include -#endif -#if HAVE_STRINGS_H -# include -#endif -#if HAVE_INTTYPES_H -# include -#else -# if HAVE_STDINT_H -# include -# endif -#endif -#if HAVE_UNISTD_H -# include -#endif" - -ac_default_prefix=/usr/local/WordNet-3.0 -ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT RANLIB ac_ct_RANLIB INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CPP EGREP LIBOBJS CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE TCL_LIB_SPEC TCL_INCLUDE_SPEC TK_LIB_SPEC TK_LIBS TK_XINCLUDES TK_PREFIX ac_prefix LTLIBOBJS' -ac_subst_files='' - -# Initialize some variables set by options. -ac_init_help= -ac_init_version=false -# The variables have the same names as the options, with -# dashes changed to underlines. -cache_file=/dev/null -exec_prefix=NONE -no_create= -no_recursion= -prefix=NONE -program_prefix=NONE -program_suffix=NONE -program_transform_name=s,x,x, -silent= -site= -srcdir= -verbose= -x_includes=NONE -x_libraries=NONE - -# Installation directory options. -# These are left unexpanded so users can "make install exec_prefix=/foo" -# and all the variables that are supposed to be based on exec_prefix -# by default will actually change. -# Use braces instead of parens because sh, perl, etc. also accept them. -bindir='${exec_prefix}/bin' -sbindir='${exec_prefix}/sbin' -libexecdir='${exec_prefix}/libexec' -datadir='${prefix}/share' -sysconfdir='${prefix}/etc' -sharedstatedir='${prefix}/com' -localstatedir='${prefix}/var' -libdir='${exec_prefix}/lib' -includedir='${prefix}/include' -oldincludedir='/usr/include' -infodir='${prefix}/info' -mandir='${prefix}/man' - -ac_prev= -for ac_option -do - # If the previous option needs an argument, assign it. - if test -n "$ac_prev"; then - eval "$ac_prev=\$ac_option" - ac_prev= - continue - fi - - ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` - - # Accept the important Cygnus configure options, so we can diagnose typos. - - case $ac_option in - - -bindir | --bindir | --bindi | --bind | --bin | --bi) - ac_prev=bindir ;; - -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) - bindir=$ac_optarg ;; - - -build | --build | --buil | --bui | --bu) - ac_prev=build_alias ;; - -build=* | --build=* | --buil=* | --bui=* | --bu=*) - build_alias=$ac_optarg ;; - - -cache-file | --cache-file | --cache-fil | --cache-fi \ - | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) - ac_prev=cache_file ;; - -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ - | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) - cache_file=$ac_optarg ;; - - --config-cache | -C) - cache_file=config.cache ;; - - -datadir | --datadir | --datadi | --datad | --data | --dat | --da) - ac_prev=datadir ;; - -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ - | --da=*) - datadir=$ac_optarg ;; - - -disable-* | --disable-*) - ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - eval "enable_$ac_feature=no" ;; - - -enable-* | --enable-*) - ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid feature name: $ac_feature" >&2 - { (exit 1); exit 1; }; } - ac_feature=`echo $ac_feature | sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "enable_$ac_feature='$ac_optarg'" ;; - - -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ - | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ - | --exec | --exe | --ex) - ac_prev=exec_prefix ;; - -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ - | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ - | --exec=* | --exe=* | --ex=*) - exec_prefix=$ac_optarg ;; - - -gas | --gas | --ga | --g) - # Obsolete; use --with-gas. - with_gas=yes ;; - - -help | --help | --hel | --he | -h) - ac_init_help=long ;; - -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) - ac_init_help=recursive ;; - -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) - ac_init_help=short ;; - - -host | --host | --hos | --ho) - ac_prev=host_alias ;; - -host=* | --host=* | --hos=* | --ho=*) - host_alias=$ac_optarg ;; - - -includedir | --includedir | --includedi | --included | --include \ - | --includ | --inclu | --incl | --inc) - ac_prev=includedir ;; - -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ - | --includ=* | --inclu=* | --incl=* | --inc=*) - includedir=$ac_optarg ;; - - -infodir | --infodir | --infodi | --infod | --info | --inf) - ac_prev=infodir ;; - -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) - infodir=$ac_optarg ;; - - -libdir | --libdir | --libdi | --libd) - ac_prev=libdir ;; - -libdir=* | --libdir=* | --libdi=* | --libd=*) - libdir=$ac_optarg ;; - - -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ - | --libexe | --libex | --libe) - ac_prev=libexecdir ;; - -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ - | --libexe=* | --libex=* | --libe=*) - libexecdir=$ac_optarg ;; - - -localstatedir | --localstatedir | --localstatedi | --localstated \ - | --localstate | --localstat | --localsta | --localst \ - | --locals | --local | --loca | --loc | --lo) - ac_prev=localstatedir ;; - -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ - | --localstate=* | --localstat=* | --localsta=* | --localst=* \ - | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) - localstatedir=$ac_optarg ;; - - -mandir | --mandir | --mandi | --mand | --man | --ma | --m) - ac_prev=mandir ;; - -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) - mandir=$ac_optarg ;; - - -nfp | --nfp | --nf) - # Obsolete; use --without-fp. - with_fp=no ;; - - -no-create | --no-create | --no-creat | --no-crea | --no-cre \ - | --no-cr | --no-c | -n) - no_create=yes ;; - - -no-recursion | --no-recursion | --no-recursio | --no-recursi \ - | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) - no_recursion=yes ;; - - -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ - | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ - | --oldin | --oldi | --old | --ol | --o) - ac_prev=oldincludedir ;; - -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ - | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ - | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) - oldincludedir=$ac_optarg ;; - - -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) - ac_prev=prefix ;; - -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) - prefix=$ac_optarg ;; - - -program-prefix | --program-prefix | --program-prefi | --program-pref \ - | --program-pre | --program-pr | --program-p) - ac_prev=program_prefix ;; - -program-prefix=* | --program-prefix=* | --program-prefi=* \ - | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) - program_prefix=$ac_optarg ;; - - -program-suffix | --program-suffix | --program-suffi | --program-suff \ - | --program-suf | --program-su | --program-s) - ac_prev=program_suffix ;; - -program-suffix=* | --program-suffix=* | --program-suffi=* \ - | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) - program_suffix=$ac_optarg ;; - - -program-transform-name | --program-transform-name \ - | --program-transform-nam | --program-transform-na \ - | --program-transform-n | --program-transform- \ - | --program-transform | --program-transfor \ - | --program-transfo | --program-transf \ - | --program-trans | --program-tran \ - | --progr-tra | --program-tr | --program-t) - ac_prev=program_transform_name ;; - -program-transform-name=* | --program-transform-name=* \ - | --program-transform-nam=* | --program-transform-na=* \ - | --program-transform-n=* | --program-transform-=* \ - | --program-transform=* | --program-transfor=* \ - | --program-transfo=* | --program-transf=* \ - | --program-trans=* | --program-tran=* \ - | --progr-tra=* | --program-tr=* | --program-t=*) - program_transform_name=$ac_optarg ;; - - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - silent=yes ;; - - -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) - ac_prev=sbindir ;; - -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ - | --sbi=* | --sb=*) - sbindir=$ac_optarg ;; - - -sharedstatedir | --sharedstatedir | --sharedstatedi \ - | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ - | --sharedst | --shareds | --shared | --share | --shar \ - | --sha | --sh) - ac_prev=sharedstatedir ;; - -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ - | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ - | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ - | --sha=* | --sh=*) - sharedstatedir=$ac_optarg ;; - - -site | --site | --sit) - ac_prev=site ;; - -site=* | --site=* | --sit=*) - site=$ac_optarg ;; - - -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) - ac_prev=srcdir ;; - -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) - srcdir=$ac_optarg ;; - - -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ - | --syscon | --sysco | --sysc | --sys | --sy) - ac_prev=sysconfdir ;; - -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ - | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) - sysconfdir=$ac_optarg ;; - - -target | --target | --targe | --targ | --tar | --ta | --t) - ac_prev=target_alias ;; - -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) - target_alias=$ac_optarg ;; - - -v | -verbose | --verbose | --verbos | --verbo | --verb) - verbose=yes ;; - - -version | --version | --versio | --versi | --vers | -V) - ac_init_version=: ;; - - -with-* | --with-*) - ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package| sed 's/-/_/g'` - case $ac_option in - *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; - *) ac_optarg=yes ;; - esac - eval "with_$ac_package='$ac_optarg'" ;; - - -without-* | --without-*) - ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` - # Reject names that are not valid shell variable names. - expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid package name: $ac_package" >&2 - { (exit 1); exit 1; }; } - ac_package=`echo $ac_package | sed 's/-/_/g'` - eval "with_$ac_package=no" ;; - - --x) - # Obsolete; use --with-x. - with_x=yes ;; - - -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ - | --x-incl | --x-inc | --x-in | --x-i) - ac_prev=x_includes ;; - -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ - | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) - x_includes=$ac_optarg ;; - - -x-libraries | --x-libraries | --x-librarie | --x-librari \ - | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) - ac_prev=x_libraries ;; - -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ - | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) - x_libraries=$ac_optarg ;; - - -*) { echo "$as_me: error: unrecognized option: $ac_option -Try \`$0 --help' for more information." >&2 - { (exit 1); exit 1; }; } - ;; - - *=*) - ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` - # Reject names that are not valid shell variable names. - expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && - { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 - { (exit 1); exit 1; }; } - ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` - eval "$ac_envvar='$ac_optarg'" - export $ac_envvar ;; - - *) - # FIXME: should be removed in autoconf 3.0. - echo "$as_me: WARNING: you should use --build, --host, --target" >&2 - expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && - echo "$as_me: WARNING: invalid host type: $ac_option" >&2 - : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} - ;; - - esac -done - -if test -n "$ac_prev"; then - ac_option=--`echo $ac_prev | sed 's/_/-/g'` - { echo "$as_me: error: missing argument to $ac_option" >&2 - { (exit 1); exit 1; }; } -fi - -# Be sure to have absolute paths. -for ac_var in exec_prefix prefix -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* | NONE | '' ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# Be sure to have absolute paths. -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ - localstatedir libdir includedir oldincludedir infodir mandir -do - eval ac_val=$`echo $ac_var` - case $ac_val in - [\\/$]* | ?:[\\/]* ) ;; - *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 - { (exit 1); exit 1; }; };; - esac -done - -# There might be people who depend on the old broken behavior: `$host' -# used to hold the argument of --host etc. -# FIXME: To remove some day. -build=$build_alias -host=$host_alias -target=$target_alias - -# FIXME: To remove some day. -if test "x$host_alias" != x; then - if test "x$build_alias" = x; then - cross_compiling=maybe - echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. - If a cross compiler is detected then cross compile mode will be used." >&2 - elif test "x$build_alias" != "x$host_alias"; then - cross_compiling=yes - fi -fi - -ac_tool_prefix= -test -n "$host_alias" && ac_tool_prefix=$host_alias- - -test "$silent" = yes && exec 6>/dev/null - - -# Find the source files, if location was not specified. -if test -z "$srcdir"; then - ac_srcdir_defaulted=yes - # Try the directory containing this script, then its parent. - ac_confdir=`(dirname "$0") 2>/dev/null || -$as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$0" : 'X\(//\)[^/]' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$0" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - srcdir=$ac_confdir - if test ! -r $srcdir/$ac_unique_file; then - srcdir=.. - fi -else - ac_srcdir_defaulted=no -fi -if test ! -r $srcdir/$ac_unique_file; then - if test "$ac_srcdir_defaulted" = yes; then - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 - { (exit 1); exit 1; }; } - else - { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 - { (exit 1); exit 1; }; } - fi -fi -(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || - { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 - { (exit 1); exit 1; }; } -srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` -ac_env_build_alias_set=${build_alias+set} -ac_env_build_alias_value=$build_alias -ac_cv_env_build_alias_set=${build_alias+set} -ac_cv_env_build_alias_value=$build_alias -ac_env_host_alias_set=${host_alias+set} -ac_env_host_alias_value=$host_alias -ac_cv_env_host_alias_set=${host_alias+set} -ac_cv_env_host_alias_value=$host_alias -ac_env_target_alias_set=${target_alias+set} -ac_env_target_alias_value=$target_alias -ac_cv_env_target_alias_set=${target_alias+set} -ac_cv_env_target_alias_value=$target_alias -ac_env_CC_set=${CC+set} -ac_env_CC_value=$CC -ac_cv_env_CC_set=${CC+set} -ac_cv_env_CC_value=$CC -ac_env_CFLAGS_set=${CFLAGS+set} -ac_env_CFLAGS_value=$CFLAGS -ac_cv_env_CFLAGS_set=${CFLAGS+set} -ac_cv_env_CFLAGS_value=$CFLAGS -ac_env_LDFLAGS_set=${LDFLAGS+set} -ac_env_LDFLAGS_value=$LDFLAGS -ac_cv_env_LDFLAGS_set=${LDFLAGS+set} -ac_cv_env_LDFLAGS_value=$LDFLAGS -ac_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_env_CPPFLAGS_value=$CPPFLAGS -ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} -ac_cv_env_CPPFLAGS_value=$CPPFLAGS -ac_env_CPP_set=${CPP+set} -ac_env_CPP_value=$CPP -ac_cv_env_CPP_set=${CPP+set} -ac_cv_env_CPP_value=$CPP - -# -# Report the --help message. -# -if test "$ac_init_help" = "long"; then - # Omit some internal or obsolete options to make the list less imposing. - # This message is too long to be a string in the A/UX 3.1 sh. - cat <<_ACEOF -\`configure' configures WordNet 3.0 to adapt to many kinds of systems. - -Usage: $0 [OPTION]... [VAR=VALUE]... - -To assign environment variables (e.g., CC, CFLAGS...), specify them as -VAR=VALUE. See below for descriptions of some of the useful variables. - -Defaults for the options are specified in brackets. - -Configuration: - -h, --help display this help and exit - --help=short display options specific to this package - --help=recursive display the short help of all the included packages - -V, --version display version information and exit - -q, --quiet, --silent do not print \`checking...' messages - --cache-file=FILE cache test results in FILE [disabled] - -C, --config-cache alias for \`--cache-file=config.cache' - -n, --no-create do not create output files - --srcdir=DIR find the sources in DIR [configure dir or \`..'] - -_ACEOF - - cat <<_ACEOF -Installation directories: - --prefix=PREFIX install architecture-independent files in PREFIX - [$ac_default_prefix] - --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX - [PREFIX] - -By default, \`make install' will install all the files in -\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify -an installation prefix other than \`$ac_default_prefix' using \`--prefix', -for instance \`--prefix=\$HOME'. - -For better control, use the options below. - -Fine tuning of the installation directories: - --bindir=DIR user executables [EPREFIX/bin] - --sbindir=DIR system admin executables [EPREFIX/sbin] - --libexecdir=DIR program executables [EPREFIX/libexec] - --datadir=DIR read-only architecture-independent data [PREFIX/share] - --sysconfdir=DIR read-only single-machine data [PREFIX/etc] - --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] - --localstatedir=DIR modifiable single-machine data [PREFIX/var] - --libdir=DIR object code libraries [EPREFIX/lib] - --includedir=DIR C header files [PREFIX/include] - --oldincludedir=DIR C header files for non-gcc [/usr/include] - --infodir=DIR info documentation [PREFIX/info] - --mandir=DIR man documentation [PREFIX/man] -_ACEOF - - cat <<\_ACEOF - -Program names: - --program-prefix=PREFIX prepend PREFIX to installed program names - --program-suffix=SUFFIX append SUFFIX to installed program names - --program-transform-name=PROGRAM run sed PROGRAM on installed program names -_ACEOF -fi - -if test -n "$ac_init_help"; then - case $ac_init_help in - short | recursive ) echo "Configuration of WordNet 3.0:";; - esac - cat <<\_ACEOF - -Optional Features: - --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) - --enable-FEATURE[=ARG] include FEATURE [ARG=yes] - --disable-dependency-tracking speeds up one-time build - --enable-dependency-tracking do not reject slow dependency extractors - -Optional Packages: - --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] - --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) - --with-tcl directory containing tcl configuration (tclConfig.sh) - --with-tk directory containing tk configuration (tkConfig.sh) - -Some influential environment variables: - CC C compiler command - CFLAGS C compiler flags - LDFLAGS linker flags, e.g. -L if you have libraries in a - nonstandard directory - CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have - headers in a nonstandard directory - CPP C preprocessor - -Use these variables to override the choices made by `configure' or to help -it to find libraries and programs with nonstandard names/locations. - -Report bugs to . -_ACEOF -fi - -if test "$ac_init_help" = "recursive"; then - # If there are subdirs, report their specific --help. - ac_popdir=`pwd` - for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue - test -d $ac_dir || continue - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - cd $ac_dir - # Check for guested configure; otherwise get Cygnus style configure. - if test -f $ac_srcdir/configure.gnu; then - echo - $SHELL $ac_srcdir/configure.gnu --help=recursive - elif test -f $ac_srcdir/configure; then - echo - $SHELL $ac_srcdir/configure --help=recursive - elif test -f $ac_srcdir/configure.ac || - test -f $ac_srcdir/configure.in; then - echo - $ac_configure --help - else - echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 - fi - cd $ac_popdir - done -fi - -test -n "$ac_init_help" && exit 0 -if $ac_init_version; then - cat <<\_ACEOF -WordNet configure 3.0 -generated by GNU Autoconf 2.59 - -Copyright (C) 2003 Free Software Foundation, Inc. -This configure script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it. -_ACEOF - exit 0 -fi -exec 5>config.log -cat >&5 <<_ACEOF -This file contains any messages produced by compilers while -running configure, to aid debugging if configure makes a mistake. - -It was created by WordNet $as_me 3.0, which was -generated by GNU Autoconf 2.59. Invocation command line was - - $ $0 $@ - -_ACEOF -{ -cat <<_ASUNAME -## --------- ## -## Platform. ## -## --------- ## - -hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` -uname -m = `(uname -m) 2>/dev/null || echo unknown` -uname -r = `(uname -r) 2>/dev/null || echo unknown` -uname -s = `(uname -s) 2>/dev/null || echo unknown` -uname -v = `(uname -v) 2>/dev/null || echo unknown` - -/usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` -/bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` - -/bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` -/usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` -/usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` -hostinfo = `(hostinfo) 2>/dev/null || echo unknown` -/bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` -/usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` -/bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` - -_ASUNAME - -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - echo "PATH: $as_dir" -done - -} >&5 - -cat >&5 <<_ACEOF - - -## ----------- ## -## Core tests. ## -## ----------- ## - -_ACEOF - - -# Keep a trace of the command line. -# Strip out --no-create and --no-recursion so they do not pile up. -# Strip out --silent because we don't want to record it for future runs. -# Also quote any args containing shell meta-characters. -# Make two passes to allow for proper duplicate-argument suppression. -ac_configure_args= -ac_configure_args0= -ac_configure_args1= -ac_sep= -ac_must_keep_next=false -for ac_pass in 1 2 -do - for ac_arg - do - case $ac_arg in - -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil) - continue ;; - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; - esac - case $ac_pass in - 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;; - 2) - ac_configure_args1="$ac_configure_args1 '$ac_arg'" - if test $ac_must_keep_next = true; then - ac_must_keep_next=false # Got value, back to normal. - else - case $ac_arg in - *=* | --config-cache | -C | -disable-* | --disable-* \ - | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ - | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ - | -with-* | --with-* | -without-* | --without-* | --x) - case "$ac_configure_args0 " in - "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; - esac - ;; - -* ) ac_must_keep_next=true ;; - esac - fi - ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" - # Get rid of the leading space. - ac_sep=" " - ;; - esac - done -done -$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; } -$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; } - -# When interrupted or exit'd, cleanup temporary files, and complete -# config.log. We remove comments because anyway the quotes in there -# would cause problems or look ugly. -# WARNING: Be sure not to use single quotes in there, as some shells, -# such as our DU 5.0 friend, will then `close' the trap. -trap 'exit_status=$? - # Save into config.log some information that might help in debugging. - { - echo - - cat <<\_ASBOX -## ---------------- ## -## Cache variables. ## -## ---------------- ## -_ASBOX - echo - # The following way of writing the cache mishandles newlines in values, -{ - (set) 2>&1 | - case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in - *ac_space=\ *) - sed -n \ - "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" - ;; - *) - sed -n \ - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" - ;; - esac; -} - echo - - cat <<\_ASBOX -## ----------------- ## -## Output variables. ## -## ----------------- ## -_ASBOX - echo - for ac_var in $ac_subst_vars - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - - if test -n "$ac_subst_files"; then - cat <<\_ASBOX -## ------------- ## -## Output files. ## -## ------------- ## -_ASBOX - echo - for ac_var in $ac_subst_files - do - eval ac_val=$`echo $ac_var` - echo "$ac_var='"'"'$ac_val'"'"'" - done | sort - echo - fi - - if test -s confdefs.h; then - cat <<\_ASBOX -## ----------- ## -## confdefs.h. ## -## ----------- ## -_ASBOX - echo - sed "/^$/d" confdefs.h | sort - echo - fi - test "$ac_signal" != 0 && - echo "$as_me: caught signal $ac_signal" - echo "$as_me: exit $exit_status" - } >&5 - rm -f core *.core && - rm -rf conftest* confdefs* conf$$* $ac_clean_files && - exit $exit_status - ' 0 -for ac_signal in 1 2 13 15; do - trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal -done -ac_signal=0 - -# confdefs.h avoids OS command line length limits that DEFS can exceed. -rm -rf conftest* confdefs.h -# AIX cpp loses on an empty file, so make sure it contains at least a newline. -echo >confdefs.h - -# Predefined preprocessor variables. - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_NAME "$PACKAGE_NAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_TARNAME "$PACKAGE_TARNAME" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_VERSION "$PACKAGE_VERSION" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_STRING "$PACKAGE_STRING" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" -_ACEOF - - -# Let the site file select an alternate cache file if it wants to. -# Prefer explicitly selected file to automatically selected ones. -if test -z "$CONFIG_SITE"; then - if test "x$prefix" != xNONE; then - CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" - else - CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" - fi -fi -for ac_site_file in $CONFIG_SITE; do - if test -r "$ac_site_file"; then - { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 -echo "$as_me: loading site script $ac_site_file" >&6;} - sed 's/^/| /' "$ac_site_file" >&5 - . "$ac_site_file" - fi -done - -if test -r "$cache_file"; then - # Some versions of bash will fail to source /dev/null (special - # files actually), so we avoid doing that. - if test -f "$cache_file"; then - { echo "$as_me:$LINENO: loading cache $cache_file" >&5 -echo "$as_me: loading cache $cache_file" >&6;} - case $cache_file in - [\\/]* | ?:[\\/]* ) . $cache_file;; - *) . ./$cache_file;; - esac - fi -else - { echo "$as_me:$LINENO: creating cache $cache_file" >&5 -echo "$as_me: creating cache $cache_file" >&6;} - >$cache_file -fi - -# Check that the precious variables saved in the cache have kept the same -# value. -ac_cache_corrupted=false -for ac_var in `(set) 2>&1 | - sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do - eval ac_old_set=\$ac_cv_env_${ac_var}_set - eval ac_new_set=\$ac_env_${ac_var}_set - eval ac_old_val="\$ac_cv_env_${ac_var}_value" - eval ac_new_val="\$ac_env_${ac_var}_value" - case $ac_old_set,$ac_new_set in - set,) - { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,set) - { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 -echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} - ac_cache_corrupted=: ;; - ,);; - *) - if test "x$ac_old_val" != "x$ac_new_val"; then - { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 -echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} - { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 -echo "$as_me: former value: $ac_old_val" >&2;} - { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 -echo "$as_me: current value: $ac_new_val" >&2;} - ac_cache_corrupted=: - fi;; - esac - # Pass precious variables to config.status. - if test "$ac_new_set" = set; then - case $ac_new_val in - *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) - ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; - *) ac_arg=$ac_var=$ac_new_val ;; - esac - case " $ac_configure_args " in - *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. - *) ac_configure_args="$ac_configure_args '$ac_arg'" ;; - esac - fi -done -if $ac_cache_corrupted; then - { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 -echo "$as_me: error: changes in the environment can compromise the build" >&2;} - { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 -echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ac_config_headers="$ac_config_headers config.h" - - -# Checks for programs. -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. -set dummy ${ac_tool_prefix}gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "gcc", so it can be a program name with args. -set dummy gcc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="gcc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. -set dummy ${ac_tool_prefix}cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="${ac_tool_prefix}cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_CC"; then - ac_ct_CC=$CC - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - CC=$ac_ct_CC -else - CC="$ac_cv_prog_CC" -fi - -fi -if test -z "$CC"; then - # Extract the first word of "cc", so it can be a program name with args. -set dummy cc; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else - ac_prog_rejected=no -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then - ac_prog_rejected=yes - continue - fi - ac_cv_prog_CC="cc" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -if test $ac_prog_rejected = yes; then - # We found a bogon in the path, so make sure we never use it. - set dummy $ac_cv_prog_CC - shift - if test $# != 0; then - # We chose a different compiler from the bogus one. - # However, it has the same basename, so the bogon will be chosen - # first if we set CC to just the basename; use the full file name. - shift - ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" - fi -fi -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$CC"; then - if test -n "$ac_tool_prefix"; then - for ac_prog in cl - do - # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. -set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$CC"; then - ac_cv_prog_CC="$CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_CC="$ac_tool_prefix$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -CC=$ac_cv_prog_CC -if test -n "$CC"; then - echo "$as_me:$LINENO: result: $CC" >&5 -echo "${ECHO_T}$CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$CC" && break - done -fi -if test -z "$CC"; then - ac_ct_CC=$CC - for ac_prog in cl -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_CC"; then - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_CC="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -ac_ct_CC=$ac_cv_prog_ac_ct_CC -if test -n "$ac_ct_CC"; then - echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 -echo "${ECHO_T}$ac_ct_CC" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$ac_ct_CC" && break -done - - CC=$ac_ct_CC -fi - -fi - - -test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&5 -echo "$as_me: error: no acceptable C compiler found in \$PATH -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - -# Provide some information about the compiler. -echo "$as_me:$LINENO:" \ - "checking for C compiler version" >&5 -ac_compiler=`set X $ac_compile; echo $2` -{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 - (eval $ac_compiler --version &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 - (eval $ac_compiler -v &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } -{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 - (eval $ac_compiler -V &5) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } - -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files a.out a.exe b.out" -# Try to create an executable without -o first, disregard a.out. -# It will help us diagnose broken compilers, and finding out an intuition -# of exeext. -echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 -echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 -ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` -if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 - (eval $ac_link_default) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # Find the output, starting from the most likely. This scheme is -# not robust to junk in `.', hence go to wildcards (a.*) only as a last -# resort. - -# Be careful to initialize this variable, since it used to be cached. -# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. -ac_cv_exeext= -# b.out is created by i960 compilers. -for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out -do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) - ;; - conftest.$ac_ext ) - # This is the source file. - ;; - [ab].out ) - # We found the default executable, but exeext='' is most - # certainly right. - break;; - *.* ) - ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - # FIXME: I believe we export ac_cv_exeext for Libtool, - # but it would be cool to find out if it's true. Does anybody - # maintain Libtool? --akim. - export ac_cv_exeext - break;; - * ) - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: C compiler cannot create executables -See \`config.log' for more details." >&5 -echo "$as_me: error: C compiler cannot create executables -See \`config.log' for more details." >&2;} - { (exit 77); exit 77; }; } -fi - -ac_exeext=$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_file" >&5 -echo "${ECHO_T}$ac_file" >&6 - -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether the C compiler works" >&5 -echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 -# FIXME: These cross compiler hacks should be removed for Autoconf 3.0 -# If not cross compiling, check that we can run a simple program. -if test "$cross_compiling" != yes; then - if { ac_try='./$ac_file' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - cross_compiling=no - else - if test "$cross_compiling" = maybe; then - cross_compiling=yes - else - { { echo "$as_me:$LINENO: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot run C compiled programs. -If you meant to cross compile, use \`--host'. -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } - fi - fi -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - -rm -f a.out a.exe conftest$ac_cv_exeext b.out -ac_clean_files=$ac_clean_files_save -# Check the compiler produces executables we can run. If not, either -# the compiler is broken, or we cross compile. -echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 -echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 -echo "$as_me:$LINENO: result: $cross_compiling" >&5 -echo "${ECHO_T}$cross_compiling" >&6 - -echo "$as_me:$LINENO: checking for suffix of executables" >&5 -echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - # If both `conftest.exe' and `conftest' are `present' (well, observable) -# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will -# work properly (i.e., refer to `conftest.exe'), while it won't with -# `rm'. -for ac_file in conftest.exe conftest conftest.*; do - test -f "$ac_file" || continue - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; - *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext - break;; - * ) break;; - esac -done -else - { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of executables: cannot compile and link -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest$ac_cv_exeext -echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 -echo "${ECHO_T}$ac_cv_exeext" >&6 - -rm -f conftest.$ac_ext -EXEEXT=$ac_cv_exeext -ac_exeext=$EXEEXT -echo "$as_me:$LINENO: checking for suffix of object files" >&5 -echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 -if test "${ac_cv_objext+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.o conftest.obj -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; then - for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do - case $ac_file in - *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; - *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` - break;; - esac -done -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&5 -echo "$as_me: error: cannot compute suffix of object files: cannot compile -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -rm -f conftest.$ac_cv_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 -echo "${ECHO_T}$ac_cv_objext" >&6 -OBJEXT=$ac_cv_objext -ac_objext=$OBJEXT -echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 -echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 -if test "${ac_cv_c_compiler_gnu+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ -#ifndef __GNUC__ - choke me -#endif - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_compiler_gnu=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_compiler_gnu=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_cv_c_compiler_gnu=$ac_compiler_gnu - -fi -echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 -echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 -GCC=`test $ac_compiler_gnu = yes && echo yes` -ac_test_CFLAGS=${CFLAGS+set} -ac_save_CFLAGS=$CFLAGS -CFLAGS="-g" -echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 -echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_g+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_g=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_prog_cc_g=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 -if test "$ac_test_CFLAGS" = set; then - CFLAGS=$ac_save_CFLAGS -elif test $ac_cv_prog_cc_g = yes; then - if test "$GCC" = yes; then - CFLAGS="-g -O2" - else - CFLAGS="-g" - fi -else - if test "$GCC" = yes; then - CFLAGS="-O2" - else - CFLAGS= - fi -fi -echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 -echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 -if test "${ac_cv_prog_cc_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - ac_cv_prog_cc_stdc=no -ac_save_CC=$CC -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include -/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ -struct buf { int x; }; -FILE * (*rcsopen) (struct buf *, struct stat *, int); -static char *e (p, i) - char **p; - int i; -{ - return p[i]; -} -static char *f (char * (*g) (char **, int), char **p, ...) -{ - char *s; - va_list v; - va_start (v,p); - s = g (p, va_arg (v,int)); - va_end (v); - return s; -} - -/* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has - function prototypes and stuff, but not '\xHH' hex character constants. - These don't provoke an error unfortunately, instead are silently treated - as 'x'. The following induces an error, until -std1 is added to get - proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an - array size at least. It's necessary to write '\x00'==0 to get something - that's true only with -std1. */ -int osf4_cc_array ['\x00' == 0 ? 1 : -1]; - -int test (int i, double x); -struct s1 {int (*f) (int a);}; -struct s2 {int (*f) (double a);}; -int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); -int argc; -char **argv; -int -main () -{ -return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; - ; - return 0; -} -_ACEOF -# Don't try gcc -ansi; that turns off useful extensions and -# breaks some systems' header files. -# AIX -qlanglvl=ansi -# Ultrix and OSF/1 -std1 -# HP-UX 10.20 and later -Ae -# HP-UX older versions -Aa -D_HPUX_SOURCE -# SVR4 -Xc -D__EXTENSIONS__ -for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" -do - CC="$ac_save_CC $ac_arg" - rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_prog_cc_stdc=$ac_arg -break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext -done -rm -f conftest.$ac_ext conftest.$ac_objext -CC=$ac_save_CC - -fi - -case "x$ac_cv_prog_cc_stdc" in - x|xno) - echo "$as_me:$LINENO: result: none needed" >&5 -echo "${ECHO_T}none needed" >&6 ;; - *) - echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 -echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 - CC="$CC $ac_cv_prog_cc_stdc" ;; -esac - -# Some people use a C++ compiler to compile C. Since we use `exit', -# in C++ we need to declare it. In case someone uses the same compiler -# for both compiling C and C++ we need to have the C++ compiler decide -# the declaration of exit, since it's the most demanding environment. -cat >conftest.$ac_ext <<_ACEOF -#ifndef __cplusplus - choke me -#endif -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' -do - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -#include -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -continue -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_declaration -int -main () -{ -exit (42); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -done -rm -f conftest* -if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h -fi - -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - -if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. -set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_RANLIB+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$RANLIB"; then - ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -RANLIB=$ac_cv_prog_RANLIB -if test -n "$RANLIB"; then - echo "$as_me:$LINENO: result: $RANLIB" >&5 -echo "${ECHO_T}$RANLIB" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_RANLIB"; then - ac_ct_RANLIB=$RANLIB - # Extract the first word of "ranlib", so it can be a program name with args. -set dummy ranlib; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_RANLIB"; then - ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_RANLIB="ranlib" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" -fi -fi -ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB -if test -n "$ac_ct_RANLIB"; then - echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 -echo "${ECHO_T}$ac_ct_RANLIB" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - RANLIB=$ac_ct_RANLIB -else - RANLIB="$ac_cv_prog_RANLIB" -fi - -ac_aux_dir= -for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do - if test -f $ac_dir/install-sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install-sh -c" - break - elif test -f $ac_dir/install.sh; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/install.sh -c" - break - elif test -f $ac_dir/shtool; then - ac_aux_dir=$ac_dir - ac_install_sh="$ac_aux_dir/shtool install -c" - break - fi -done -if test -z "$ac_aux_dir"; then - { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 -echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} - { (exit 1); exit 1; }; } -fi -ac_config_guess="$SHELL $ac_aux_dir/config.guess" -ac_config_sub="$SHELL $ac_aux_dir/config.sub" -ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. - -# Find a good install program. We prefer a C program (faster), -# so one script is as good as another. But avoid the broken or -# incompatible versions: -# SysV /etc/install, /usr/sbin/install -# SunOS /usr/etc/install -# IRIX /sbin/install -# AIX /bin/install -# AmigaOS /C/install, which installs bootblocks on floppy discs -# AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag -# AFS /usr/afsws/bin/install, which mishandles nonexistent args -# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" -# OS/2's system install, which has a completely different semantic -# ./install, which can be erroneously created by make from ./install.sh. -echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 -echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 -if test -z "$INSTALL"; then -if test "${ac_cv_path_install+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - # Account for people who put trailing slashes in PATH elements. -case $as_dir/ in - ./ | .// | /cC/* | \ - /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ - ?:\\/os2\\/install\\/* | ?:\\/OS2\\/INSTALL\\/* | \ - /usr/ucb/* ) ;; - *) - # OSF1 and SCO ODT 3.0 have their own names for install. - # Don't use installbsd from OSF since it installs stuff as root - # by default. - for ac_prog in ginstall scoinst install; do - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then - if test $ac_prog = install && - grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # AIX install. It has an incompatible calling convention. - : - elif test $ac_prog = install && - grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then - # program-specific install script used by HP pwplus--don't use. - : - else - ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" - break 3 - fi - fi - done - done - ;; -esac -done - - -fi - if test "${ac_cv_path_install+set}" = set; then - INSTALL=$ac_cv_path_install - else - # As a last resort, use the slow shell script. We don't cache a - # path for INSTALL within a source directory, because that will - # break other packages using the cache if that directory is - # removed, or if the path is relative. - INSTALL=$ac_install_sh - fi -fi -echo "$as_me:$LINENO: result: $INSTALL" >&5 -echo "${ECHO_T}$INSTALL" >&6 - -# Use test -z because SunOS4 sh mishandles braces in ${var-val}. -# It thinks the first close brace ends the variable substitution. -test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' - -test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' - -test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' - - -# Checks for header files. - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 -echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 -# On Suns, sometimes $CPP names a directory. -if test -n "$CPP" && test -d "$CPP"; then - CPP= -fi -if test -z "$CPP"; then - if test "${ac_cv_prog_CPP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - # Double quotes because CPP needs to be expanded - for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" - do - ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether non-existent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - break -fi - - done - ac_cv_prog_CPP=$CPP - -fi - CPP=$ac_cv_prog_CPP -else - ac_cv_prog_CPP=$CPP -fi -echo "$as_me:$LINENO: result: $CPP" >&5 -echo "${ECHO_T}$CPP" >&6 -ac_preproc_ok=false -for ac_c_preproc_warn_flag in '' yes -do - # Use a header file that comes with gcc, so configuring glibc - # with a fresh cross-compiler works. - # Prefer to if __STDC__ is defined, since - # exists even on freestanding compilers. - # On the NeXT, cc -E runs the code through the compiler's parser, - # not just through cpp. "Syntax error" is here to catch this case. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#ifdef __STDC__ -# include -#else -# include -#endif - Syntax error -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - : -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Broken: fails on valid input. -continue -fi -rm -f conftest.err conftest.$ac_ext - - # OK, works on sane cases. Now check whether non-existent headers - # can be detected and how. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - # Broken: success on invalid input. -continue -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - # Passes both tests. -ac_preproc_ok=: -break -fi -rm -f conftest.err conftest.$ac_ext - -done -# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext -if $ac_preproc_ok; then - : -else - { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&5 -echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check -See \`config.log' for more details." >&2;} - { (exit 1); exit 1; }; } -fi - -ac_ext=c -ac_cpp='$CPP $CPPFLAGS' -ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' -ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' -ac_compiler_gnu=$ac_cv_c_compiler_gnu - - -echo "$as_me:$LINENO: checking for egrep" >&5 -echo $ECHO_N "checking for egrep... $ECHO_C" >&6 -if test "${ac_cv_prog_egrep+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if echo a | (grep -E '(a|b)') >/dev/null 2>&1 - then ac_cv_prog_egrep='grep -E' - else ac_cv_prog_egrep='egrep' - fi -fi -echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 -echo "${ECHO_T}$ac_cv_prog_egrep" >&6 - EGREP=$ac_cv_prog_egrep - - -echo "$as_me:$LINENO: checking for ANSI C header files" >&5 -echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 -if test "${ac_cv_header_stdc+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#include -#include -#include - -int -main () -{ - - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_header_stdc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_cv_header_stdc=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - -if test $ac_cv_header_stdc = yes; then - # SunOS 4.x string.h does not declare mem*, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "memchr" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include - -_ACEOF -if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "free" >/dev/null 2>&1; then - : -else - ac_cv_header_stdc=no -fi -rm -f conftest* - -fi - -if test $ac_cv_header_stdc = yes; then - # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. - if test "$cross_compiling" = yes; then - : -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -#if ((' ' & 0x0FF) == 0x020) -# define ISLOWER(c) ('a' <= (c) && (c) <= 'z') -# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) -#else -# define ISLOWER(c) \ - (('a' <= (c) && (c) <= 'i') \ - || ('j' <= (c) && (c) <= 'r') \ - || ('s' <= (c) && (c) <= 'z')) -# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) -#endif - -#define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) -int -main () -{ - int i; - for (i = 0; i < 256; i++) - if (XOR (islower (i), ISLOWER (i)) - || toupper (i) != TOUPPER (i)) - exit(2); - exit (0); -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_header_stdc=no -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 -echo "${ECHO_T}$ac_cv_header_stdc" >&6 -if test $ac_cv_header_stdc = yes; then - -cat >>confdefs.h <<\_ACEOF -#define STDC_HEADERS 1 -_ACEOF - -fi - -# On IRIX 5.3, sys/types and inttypes.h are conflicting. - - - - - - - - - -for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ - inttypes.h stdint.h unistd.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default - -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - eval "$as_ac_Header=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -eval "$as_ac_Header=no" -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - - - - - -for ac_header in locale.h malloc.h stdlib.h string.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -else - # Is the header compilable? -echo "$as_me:$LINENO: checking $ac_header usability" >&5 -echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_header_compiler=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6 - -# Is the header present? -echo "$as_me:$LINENO: checking $ac_header presence" >&5 -echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <$ac_header> -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi -rm -f conftest.err conftest.$ac_ext -echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6 - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} - ( - cat <<\_ASBOX -## ------------------------------------ ## -## Report this to wordnet@princeton.edu ## -## ------------------------------------ ## -_ASBOX - ) | - sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac -echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - eval "$as_ac_Header=\$ac_header_preproc" -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - -fi -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - - -# Checks for typedefs, structures, and compiler characteristics. - -# Checks for library functions. - -for ac_header in stdlib.h -do -as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 -else - # Is the header compilable? -echo "$as_me:$LINENO: checking $ac_header usability" >&5 -echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -$ac_includes_default -#include <$ac_header> -_ACEOF -rm -f conftest.$ac_objext -if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_header_compiler=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -ac_header_compiler=no -fi -rm -f conftest.err conftest.$ac_objext conftest.$ac_ext -echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 -echo "${ECHO_T}$ac_header_compiler" >&6 - -# Is the header present? -echo "$as_me:$LINENO: checking $ac_header presence" >&5 -echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 -cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include <$ac_header> -_ACEOF -if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 - (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } >/dev/null; then - if test -s conftest.err; then - ac_cpp_err=$ac_c_preproc_warn_flag - ac_cpp_err=$ac_cpp_err$ac_c_werror_flag - else - ac_cpp_err= - fi -else - ac_cpp_err=yes -fi -if test -z "$ac_cpp_err"; then - ac_header_preproc=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - - ac_header_preproc=no -fi -rm -f conftest.err conftest.$ac_ext -echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 -echo "${ECHO_T}$ac_header_preproc" >&6 - -# So? What about this header? -case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in - yes:no: ) - { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 -echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} - ac_header_preproc=yes - ;; - no:yes:* ) - { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 -echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 -echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 -echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 -echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 -echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} - { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 -echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} - ( - cat <<\_ASBOX -## ------------------------------------ ## -## Report this to wordnet@princeton.edu ## -## ------------------------------------ ## -_ASBOX - ) | - sed "s/^/$as_me: WARNING: /" >&2 - ;; -esac -echo "$as_me:$LINENO: checking for $ac_header" >&5 -echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 -if eval "test \"\${$as_ac_Header+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - eval "$as_ac_Header=\$ac_header_preproc" -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 - -fi -if test `eval echo '${'$as_ac_Header'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 -_ACEOF - -fi - -done - -echo "$as_me:$LINENO: checking for GNU libc compatible malloc" >&5 -echo $ECHO_N "checking for GNU libc compatible malloc... $ECHO_C" >&6 -if test "${ac_cv_func_malloc_0_nonnull+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test "$cross_compiling" = yes; then - ac_cv_func_malloc_0_nonnull=no -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#if STDC_HEADERS || HAVE_STDLIB_H -# include -#else -char *malloc (); -#endif - -int -main () -{ -exit (malloc (0) ? 0 : 1); - ; - return 0; -} -_ACEOF -rm -f conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - ac_cv_func_malloc_0_nonnull=yes -else - echo "$as_me: program exited with status $ac_status" >&5 -echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -( exit $ac_status ) -ac_cv_func_malloc_0_nonnull=no -fi -rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext -fi -fi -echo "$as_me:$LINENO: result: $ac_cv_func_malloc_0_nonnull" >&5 -echo "${ECHO_T}$ac_cv_func_malloc_0_nonnull" >&6 -if test $ac_cv_func_malloc_0_nonnull = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_MALLOC 1 -_ACEOF - -else - cat >>confdefs.h <<\_ACEOF -#define HAVE_MALLOC 0 -_ACEOF - - case $LIBOBJS in - "malloc.$ac_objext" | \ - *" malloc.$ac_objext" | \ - "malloc.$ac_objext "* | \ - *" malloc.$ac_objext "* ) ;; - *) LIBOBJS="$LIBOBJS malloc.$ac_objext" ;; -esac - - -cat >>confdefs.h <<\_ACEOF -#define malloc rpl_malloc -_ACEOF - -fi - - - - - - - - -for ac_func in strchr strdup strrchr strstr strtol -do -as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:$LINENO: checking for $ac_func" >&5 -echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 -if eval "test \"\${$as_ac_var+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -/* Define $ac_func to an innocuous variant, in case declares $ac_func. - For example, HP-UX 11i declares gettimeofday. */ -#define $ac_func innocuous_$ac_func - -/* System header to define __stub macros and hopefully few prototypes, - which can conflict with char $ac_func (); below. - Prefer to if __STDC__ is defined, since - exists even on freestanding compilers. */ - -#ifdef __STDC__ -# include -#else -# include -#endif - -#undef $ac_func - -/* Override any gcc2 internal prototype to avoid an error. */ -#ifdef __cplusplus -extern "C" -{ -#endif -/* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ -char $ac_func (); -/* The GNU C library defines this for functions which it implements - to always fail with ENOSYS. Some functions are actually named - something starting with __ and the normal name is an alias. */ -#if defined (__stub_$ac_func) || defined (__stub___$ac_func) -choke me -#else -char (*f) () = $ac_func; -#endif -#ifdef __cplusplus -} -#endif - -int -main () -{ -return f != $ac_func; - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - eval "$as_ac_var=yes" -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -eval "$as_ac_var=no" -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext -fi -echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 -echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 -if test `eval echo '${'$as_ac_var'}'` = yes; then - cat >>confdefs.h <<_ACEOF -#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 -_ACEOF - -fi -done - - -# Set HAVE_LANGINFO_CODESET if nl_langinfo is found - - - echo "$as_me:$LINENO: checking for nl_langinfo and CODESET" >&5 -echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 -if test "${am_cv_langinfo_codeset+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.$ac_ext <<_ACEOF -/* confdefs.h. */ -_ACEOF -cat confdefs.h >>conftest.$ac_ext -cat >>conftest.$ac_ext <<_ACEOF -/* end confdefs.h. */ -#include -int -main () -{ -char* cs = nl_langinfo(CODESET); - ; - return 0; -} -_ACEOF -rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 - (eval $ac_link) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - am_cv_langinfo_codeset=yes -else - echo "$as_me: failed program was:" >&5 -sed 's/^/| /' conftest.$ac_ext >&5 - -am_cv_langinfo_codeset=no -fi -rm -f conftest.err conftest.$ac_objext \ - conftest$ac_exeext conftest.$ac_ext - -fi -echo "$as_me:$LINENO: result: $am_cv_langinfo_codeset" >&5 -echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 - if test $am_cv_langinfo_codeset = yes; then - -cat >>confdefs.h <<\_ACEOF -#define HAVE_LANGINFO_CODESET 1 -_ACEOF - - fi - - -am__api_version="1.9" -echo "$as_me:$LINENO: checking whether build environment is sane" >&5 -echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 -# Just in case -sleep 1 -echo timestamp > conftest.file -# Do `set' in a subshell so we don't clobber the current shell's -# arguments. Must try -L first in case configure is actually a -# symlink; some systems play weird games with the mod time of symlinks -# (eg FreeBSD returns the mod time of the symlink's containing -# directory). -if ( - set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` - if test "$*" = "X"; then - # -L didn't work. - set X `ls -t $srcdir/configure conftest.file` - fi - rm -f conftest.file - if test "$*" != "X $srcdir/configure conftest.file" \ - && test "$*" != "X conftest.file $srcdir/configure"; then - - # If neither matched, then we have a broken ls. This can happen - # if, for instance, CONFIG_SHELL is bash and it inherits a - # broken ls alias from the environment. This has actually - # happened. Such a system could not be considered "sane". - { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken -alias in your environment" >&5 -echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken -alias in your environment" >&2;} - { (exit 1); exit 1; }; } - fi - - test "$2" = conftest.file - ) -then - # Ok. - : -else - { { echo "$as_me:$LINENO: error: newly created file is older than distributed files! -Check your system clock" >&5 -echo "$as_me: error: newly created file is older than distributed files! -Check your system clock" >&2;} - { (exit 1); exit 1; }; } -fi -echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 -test "$program_prefix" != NONE && - program_transform_name="s,^,$program_prefix,;$program_transform_name" -# Use a double $ so make ignores it. -test "$program_suffix" != NONE && - program_transform_name="s,\$,$program_suffix,;$program_transform_name" -# Double any \ or $. echo might interpret backslashes. -# By default was `s,x,x', remove it if useless. -cat <<\_ACEOF >conftest.sed -s/[\\$]/&&/g;s/;s,x,x,$// -_ACEOF -program_transform_name=`echo $program_transform_name | sed -f conftest.sed` -rm conftest.sed - -# expand $ac_aux_dir to an absolute path -am_aux_dir=`cd $ac_aux_dir && pwd` - -test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" -# Use eval to expand $SHELL -if eval "$MISSING --run true"; then - am_missing_run="$MISSING --run " -else - am_missing_run= - { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 -echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} -fi - -if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then - # We used to keeping the `.' as first argument, in order to - # allow $(mkdir_p) to be used without argument. As in - # $(mkdir_p) $(somedir) - # where $(somedir) is conditionally defined. However this is wrong - # for two reasons: - # 1. if the package is installed by a user who cannot write `.' - # make install will fail, - # 2. the above comment should most certainly read - # $(mkdir_p) $(DESTDIR)$(somedir) - # so it does not work when $(somedir) is undefined and - # $(DESTDIR) is not. - # To support the latter case, we have to write - # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), - # so the `.' trick is pointless. - mkdir_p='mkdir -p --' -else - # On NextStep and OpenStep, the `mkdir' command does not - # recognize any option. It will interpret all options as - # directories to create, and then abort because `.' already - # exists. - for d in ./-p ./--version; - do - test -d $d && rmdir $d - done - # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. - if test -f "$ac_aux_dir/mkinstalldirs"; then - mkdir_p='$(mkinstalldirs)' - else - mkdir_p='$(install_sh) -d' - fi -fi - -for ac_prog in gawk mawk nawk awk -do - # Extract the first word of "$ac_prog", so it can be a program name with args. -set dummy $ac_prog; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_AWK+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$AWK"; then - ac_cv_prog_AWK="$AWK" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_AWK="$ac_prog" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -AWK=$ac_cv_prog_AWK -if test -n "$AWK"; then - echo "$as_me:$LINENO: result: $AWK" >&5 -echo "${ECHO_T}$AWK" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - test -n "$AWK" && break -done - -echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 -echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 -set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` -if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - cat >conftest.make <<\_ACEOF -all: - @echo 'ac_maketemp="$(MAKE)"' -_ACEOF -# GNU make sometimes prints "make[1]: Entering...", which would confuse us. -eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` -if test -n "$ac_maketemp"; then - eval ac_cv_prog_make_${ac_make}_set=yes -else - eval ac_cv_prog_make_${ac_make}_set=no -fi -rm -f conftest.make -fi -if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then - echo "$as_me:$LINENO: result: yes" >&5 -echo "${ECHO_T}yes" >&6 - SET_MAKE= -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 - SET_MAKE="MAKE=${MAKE-make}" -fi - -rm -rf .tst 2>/dev/null -mkdir .tst 2>/dev/null -if test -d .tst; then - am__leading_dot=. -else - am__leading_dot=_ -fi -rmdir .tst 2>/dev/null - -DEPDIR="${am__leading_dot}deps" - - ac_config_commands="$ac_config_commands depfiles" - - -am_make=${MAKE-make} -cat > confinc << 'END' -am__doit: - @echo done -.PHONY: am__doit -END -# If we don't find an include directive, just comment out the code. -echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 -echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6 -am__include="#" -am__quote= -_am_result=none -# First try GNU make style include. -echo "include confinc" > confmf -# We grep out `Entering directory' and `Leaving directory' -# messages which can occur if `w' ends up in MAKEFLAGS. -# In particular we don't look at `^make:' because GNU make might -# be invoked under some other name (usually "gmake"), in which -# case it prints its new name instead of `make'. -if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then - am__include=include - am__quote= - _am_result=GNU -fi -# Now try BSD make style include. -if test "$am__include" = "#"; then - echo '.include "confinc"' > confmf - if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then - am__include=.include - am__quote="\"" - _am_result=BSD - fi -fi - - -echo "$as_me:$LINENO: result: $_am_result" >&5 -echo "${ECHO_T}$_am_result" >&6 -rm -f confinc confmf - -# Check whether --enable-dependency-tracking or --disable-dependency-tracking was given. -if test "${enable_dependency_tracking+set}" = set; then - enableval="$enable_dependency_tracking" - -fi; -if test "x$enable_dependency_tracking" != xno; then - am_depcomp="$ac_aux_dir/depcomp" - AMDEPBACKSLASH='\' -fi - - -if test "x$enable_dependency_tracking" != xno; then - AMDEP_TRUE= - AMDEP_FALSE='#' -else - AMDEP_TRUE='#' - AMDEP_FALSE= -fi - - - -# test to see if srcdir already configured -if test "`cd $srcdir && pwd`" != "`pwd`" && - test -f $srcdir/config.status; then - { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 -echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} - { (exit 1); exit 1; }; } -fi - -# test whether we have cygpath -if test -z "$CYGPATH_W"; then - if (cygpath --version) >/dev/null 2>/dev/null; then - CYGPATH_W='cygpath -w' - else - CYGPATH_W=echo - fi -fi - - -# Define the identity of the package. - PACKAGE=WordNet - VERSION=3.0 - - -cat >>confdefs.h <<_ACEOF -#define PACKAGE "$PACKAGE" -_ACEOF - - -cat >>confdefs.h <<_ACEOF -#define VERSION "$VERSION" -_ACEOF - -# Some tools Automake needs. - -ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} - - -AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} - - -AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} - - -AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} - - -MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} - -install_sh=${install_sh-"$am_aux_dir/install-sh"} - -# Installed binaries are usually stripped using `strip' when the user -# run `make install-strip'. However `strip' might not be the right -# tool to use in cross-compilation environments, therefore Automake -# will honor the `STRIP' environment variable to overrule this program. -if test "$cross_compiling" != no; then - if test -n "$ac_tool_prefix"; then - # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. -set dummy ${ac_tool_prefix}strip; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_STRIP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$STRIP"; then - ac_cv_prog_STRIP="$STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_STRIP="${ac_tool_prefix}strip" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - -fi -fi -STRIP=$ac_cv_prog_STRIP -if test -n "$STRIP"; then - echo "$as_me:$LINENO: result: $STRIP" >&5 -echo "${ECHO_T}$STRIP" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - -fi -if test -z "$ac_cv_prog_STRIP"; then - ac_ct_STRIP=$STRIP - # Extract the first word of "strip", so it can be a program name with args. -set dummy strip; ac_word=$2 -echo "$as_me:$LINENO: checking for $ac_word" >&5 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 -if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -n "$ac_ct_STRIP"; then - ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. -else -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for ac_exec_ext in '' $ac_executable_extensions; do - if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then - ac_cv_prog_ac_ct_STRIP="strip" - echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 - break 2 - fi -done -done - - test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" -fi -fi -ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP -if test -n "$ac_ct_STRIP"; then - echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 -echo "${ECHO_T}$ac_ct_STRIP" >&6 -else - echo "$as_me:$LINENO: result: no" >&5 -echo "${ECHO_T}no" >&6 -fi - - STRIP=$ac_ct_STRIP -else - STRIP="$ac_cv_prog_STRIP" -fi - -fi -INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" - -# We need awk for the "check" target. The system "awk" is bad on -# some platforms. -# Always define AMTAR for backward compatibility. - -AMTAR=${AMTAR-"${am_missing_run}tar"} - -am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' - - - - -depcc="$CC" am_compiler_list= - -echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 -echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6 -if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then - # We make a subdir and do the tests there. Otherwise we can end up - # making bogus files that we don't know about and never remove. For - # instance it was reported that on HP-UX the gcc test will end up - # making a dummy file named `D' -- because `-MD' means `put the output - # in D'. - mkdir conftest.dir - # Copy depcomp to subdir because otherwise we won't find it if we're - # using a relative directory. - cp "$am_depcomp" conftest.dir - cd conftest.dir - # We will build objects and dependencies in a subdirectory because - # it helps to detect inapplicable dependency modes. For instance - # both Tru64's cc and ICC support -MD to output dependencies as a - # side effect of compilation, but ICC will put the dependencies in - # the current directory while Tru64 will put them in the object - # directory. - mkdir sub - - am_cv_CC_dependencies_compiler_type=none - if test "$am_compiler_list" = ""; then - am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` - fi - for depmode in $am_compiler_list; do - # Setup a source with many dependencies, because some compilers - # like to wrap large dependency lists on column 80 (with \), and - # we should not choose a depcomp mode which is confused by this. - # - # We need to recreate these files for each test, as the compiler may - # overwrite some of them when testing with obscure command lines. - # This happens at least with the AIX C compiler. - : > sub/conftest.c - for i in 1 2 3 4 5 6; do - echo '#include "conftst'$i'.h"' >> sub/conftest.c - # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with - # Solaris 8's {/usr,}/bin/sh. - touch sub/conftst$i.h - done - echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf - - case $depmode in - nosideeffect) - # after this tag, mechanisms are not by side-effect, so they'll - # only be used when explicitly requested - if test "x$enable_dependency_tracking" = xyes; then - continue - else - break - fi - ;; - none) break ;; - esac - # We check with `-c' and `-o' for the sake of the "dashmstdout" - # mode. It turns out that the SunPro C++ compiler does not properly - # handle `-M -o', and we need to detect this. - if depmode=$depmode \ - source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ - depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ - $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ - >/dev/null 2>conftest.err && - grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && - grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && - ${MAKE-make} -s -f confmf > /dev/null 2>&1; then - # icc doesn't choke on unknown options, it will just issue warnings - # or remarks (even with -Werror). So we grep stderr for any message - # that says an option was ignored or not supported. - # When given -MP, icc 7.0 and 7.1 complain thusly: - # icc: Command line warning: ignoring option '-M'; no argument required - # The diagnosis changed in icc 8.0: - # icc: Command line remark: option '-MP' not supported - if (grep 'ignoring option' conftest.err || - grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else - am_cv_CC_dependencies_compiler_type=$depmode - break - fi - fi - done - - cd .. - rm -rf conftest.dir -else - am_cv_CC_dependencies_compiler_type=none -fi - -fi -echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 -echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6 -CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type - - - -if - test "x$enable_dependency_tracking" != xno \ - && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then - am__fastdepCC_TRUE= - am__fastdepCC_FALSE='#' -else - am__fastdepCC_TRUE='#' - am__fastdepCC_FALSE= -fi - - - - - - # - # Ok, lets find the tcl configuration - # First, look for one uninstalled. - # the alternative search directory is invoked by --with-tcl - # - - if test x"${no_tcl}" = x ; then - # we reset no_tcl in case something fails here - no_tcl=true - -# Check whether --with-tcl or --without-tcl was given. -if test "${with_tcl+set}" = set; then - withval="$with_tcl" - with_tclconfig=${withval} -fi; - echo "$as_me:$LINENO: checking for Tcl configuration" >&5 -echo $ECHO_N "checking for Tcl configuration... $ECHO_C" >&6 - if test "${ac_cv_c_tclconfig+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - - - # First check to see if --with-tcl was specified. - if test x"${with_tclconfig}" != x ; then - if test -f "${with_tclconfig}/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd ${with_tclconfig}; pwd)` - else - { { echo "$as_me:$LINENO: error: ${with_tclconfig} directory doesn't contain tclConfig.sh" >&5 -echo "$as_me: error: ${with_tclconfig} directory doesn't contain tclConfig.sh" >&2;} - { (exit 1); exit 1; }; } - fi - fi - - # then check for a private Tcl installation - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in \ - ../tcl \ - `ls -dr ../tcl[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../tcl[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../tcl[8-9].[0-9]* 2>/dev/null` \ - ../../tcl \ - `ls -dr ../../tcl[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../../tcl[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../../tcl[8-9].[0-9]* 2>/dev/null` \ - ../../../tcl \ - `ls -dr ../../../tcl[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../../../tcl[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../../../tcl[8-9].[0-9]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - - # check in a few common install locations - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in `ls -d ${libdir} 2>/dev/null` \ - `ls -d /usr/local/lib 2>/dev/null` \ - `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ - `ls -d /usr/lib64 2>/dev/null` \ - ; do - if test -f "$i/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i; pwd)` - break - fi - done - fi - - # check in a few other private locations - if test x"${ac_cv_c_tclconfig}" = x ; then - for i in \ - ${srcdir}/../tcl \ - `ls -dr ${srcdir}/../tcl[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ${srcdir}/../tcl[8-9].[0-9] 2>/dev/null` \ - `ls -dr ${srcdir}/../tcl[8-9].[0-9]* 2>/dev/null` ; do - if test -f "$i/unix/tclConfig.sh" ; then - ac_cv_c_tclconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - -fi - - - if test x"${ac_cv_c_tclconfig}" = x ; then - TCL_BIN_DIR="# no Tcl configs found" - { echo "$as_me:$LINENO: WARNING: Can't find Tcl configuration definitions" >&5 -echo "$as_me: WARNING: Can't find Tcl configuration definitions" >&2;} - exit 0 - else - no_tcl= - TCL_BIN_DIR=${ac_cv_c_tclconfig} - echo "$as_me:$LINENO: result: found $TCL_BIN_DIR/tclConfig.sh" >&5 -echo "${ECHO_T}found $TCL_BIN_DIR/tclConfig.sh" >&6 - fi - fi - - - # - # Ok, lets find the tk configuration - # First, look for one uninstalled. - # the alternative search directory is invoked by --with-tk - # - - if test x"${no_tk}" = x ; then - # we reset no_tk in case something fails here - no_tk=true - -# Check whether --with-tk or --without-tk was given. -if test "${with_tk+set}" = set; then - withval="$with_tk" - with_tkconfig=${withval} -fi; - echo "$as_me:$LINENO: checking for Tk configuration" >&5 -echo $ECHO_N "checking for Tk configuration... $ECHO_C" >&6 - if test "${ac_cv_c_tkconfig+set}" = set; then - echo $ECHO_N "(cached) $ECHO_C" >&6 -else - - - # First check to see if --with-tkconfig was specified. - if test x"${with_tkconfig}" != x ; then - if test -f "${with_tkconfig}/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd ${with_tkconfig}; pwd)` - else - { { echo "$as_me:$LINENO: error: ${with_tkconfig} directory doesn't contain tkConfig.sh" >&5 -echo "$as_me: error: ${with_tkconfig} directory doesn't contain tkConfig.sh" >&2;} - { (exit 1); exit 1; }; } - fi - fi - - # then check for a private Tk library - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in \ - ../tk \ - `ls -dr ../tk[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../tk[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../tk[8-9].[0-9]* 2>/dev/null` \ - ../../tk \ - `ls -dr ../../tk[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../../tk[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../../tk[8-9].[0-9]* 2>/dev/null` \ - ../../../tk \ - `ls -dr ../../../tk[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ../../../tk[8-9].[0-9] 2>/dev/null` \ - `ls -dr ../../../tk[8-9].[0-9]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - # check in a few common install locations - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in `ls -d ${libdir} 2>/dev/null` \ - `ls -d /usr/local/lib 2>/dev/null` \ - `ls -d /usr/contrib/lib 2>/dev/null` \ - `ls -d /usr/lib 2>/dev/null` \ - `ls -d /usr/lib64 2>/dev/null` \ - ; do - if test -f "$i/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i; pwd)` - break - fi - done - fi - # check in a few other private locations - if test x"${ac_cv_c_tkconfig}" = x ; then - for i in \ - ${srcdir}/../tk \ - `ls -dr ${srcdir}/../tk[8-9].[0-9].[0-9]* 2>/dev/null` \ - `ls -dr ${srcdir}/../tk[8-9].[0-9] 2>/dev/null` \ - `ls -dr ${srcdir}/../tk[8-9].[0-9]* 2>/dev/null` ; do - if test -f "$i/unix/tkConfig.sh" ; then - ac_cv_c_tkconfig=`(cd $i/unix; pwd)` - break - fi - done - fi - -fi - - if test x"${ac_cv_c_tkconfig}" = x ; then - TK_BIN_DIR="# no Tk configs found" - { echo "$as_me:$LINENO: WARNING: Can't find Tk configuration definitions" >&5 -echo "$as_me: WARNING: Can't find Tk configuration definitions" >&2;} - exit 0 - else - no_tk= - TK_BIN_DIR=${ac_cv_c_tkconfig} - echo "$as_me:$LINENO: result: found $TK_BIN_DIR/tkConfig.sh" >&5 -echo "${ECHO_T}found $TK_BIN_DIR/tkConfig.sh" >&6 - fi - fi - - - - echo "$as_me:$LINENO: checking for existence of $TCL_BIN_DIR/tclConfig.sh" >&5 -echo $ECHO_N "checking for existence of $TCL_BIN_DIR/tclConfig.sh... $ECHO_C" >&6 - - if test -f "$TCL_BIN_DIR/tclConfig.sh" ; then - echo "$as_me:$LINENO: result: loading" >&5 -echo "${ECHO_T}loading" >&6 - . $TCL_BIN_DIR/tclConfig.sh - else - echo "$as_me:$LINENO: result: file not found" >&5 -echo "${ECHO_T}file not found" >&6 - fi - - # - # If the TCL_BIN_DIR is the build directory (not the install directory), - # then set the common variable name to the value of the build variables. - # For example, the variable TCL_LIB_SPEC will be set to the value - # of TCL_BUILD_LIB_SPEC. An extension should make use of TCL_LIB_SPEC - # instead of TCL_BUILD_LIB_SPEC since it will work with both an - # installed and uninstalled version of Tcl. - # - - if test -f $TCL_BIN_DIR/Makefile ; then - TCL_LIB_SPEC=${TCL_BUILD_LIB_SPEC} - TCL_STUB_LIB_SPEC=${TCL_BUILD_STUB_LIB_SPEC} - TCL_STUB_LIB_PATH=${TCL_BUILD_STUB_LIB_PATH} - fi - - # - # eval is required to do the TCL_DBGX substitution - # - - eval "TCL_LIB_FILE=\"${TCL_LIB_FILE}\"" - eval "TCL_LIB_FLAG=\"${TCL_LIB_FLAG}\"" - eval "TCL_LIB_SPEC=\"${TCL_LIB_SPEC}\"" - eval "TCL_INCLUDE_SPEC=\"${TCL_INCLUDE_SPEC}\"" - - eval "TCL_STUB_LIB_FILE=\"${TCL_STUB_LIB_FILE}\"" - eval "TCL_STUB_LIB_FLAG=\"${TCL_STUB_LIB_FLAG}\"" - eval "TCL_STUB_LIB_SPEC=\"${TCL_STUB_LIB_SPEC}\"" - -# AC_SUBST(TCL_VERSION) -# AC_SUBST(TCL_BIN_DIR) -# AC_SUBST(TCL_SRC_DIR) - -# AC_SUBST(TCL_LIB_FILE) -# AC_SUBST(TCL_LIB_FLAG) - - - -# AC_SUBST(TCL_STUB_LIB_FILE) -# AC_SUBST(TCL_STUB_LIB_FLAG) -# AC_SUBST(TCL_STUB_LIB_SPEC) - - - echo "$as_me:$LINENO: checking for existence of $TK_BIN_DIR/tkConfig.sh" >&5 -echo $ECHO_N "checking for existence of $TK_BIN_DIR/tkConfig.sh... $ECHO_C" >&6 - - if test -f "$TK_BIN_DIR/tkConfig.sh" ; then - echo "$as_me:$LINENO: result: loading" >&5 -echo "${ECHO_T}loading" >&6 - . $TK_BIN_DIR/tkConfig.sh - else - echo "$as_me:$LINENO: result: could not find $TK_BIN_DIR/tkConfig.sh" >&5 -echo "${ECHO_T}could not find $TK_BIN_DIR/tkConfig.sh" >&6 - fi - - - - - - -# AC_SUBST(TK_VERSION) -# AC_SUBST(TK_BIN_DIR) -# AC_SUBST(TK_SRC_DIR) -# AC_SUBST(TK_LIB_FILE) - - -# Set default installation prefix. - -ac_prefix=$prefix -if test "x$ac_prefix" = "xNONE"; then - ac_prefix=$ac_default_prefix -fi - - - - -cat >>confdefs.h <<_ACEOF -#define DEFAULTPATH "$ac_prefix/dict" -_ACEOF - - -#AC_DEFINE_UNQUOTED(DEFAULTPATH,"${prefix}/dict") - -# This doesn't do anything - ac_config_commands="$ac_config_commands default" - - - ac_config_files="$ac_config_files Makefile dict/Makefile doc/Makefile doc/html/Makefile doc/man/Makefile doc/pdf/Makefile doc/ps/Makefile include/Makefile include/tk/Makefile src/Makefile lib/Makefile lib/wnres/Makefile" - - -cat >confcache <<\_ACEOF -# This file is a shell script that caches the results of configure -# tests run on this system so they can be shared between configure -# scripts and configure runs, see configure's option --config-cache. -# It is not useful on other systems. If it contains results you don't -# want to keep, you may remove or edit it. -# -# config.status only pays attention to the cache file if you give it -# the --recheck option to rerun configure. -# -# `ac_cv_env_foo' variables (set or unset) will be overridden when -# loading this file, other *unset* `ac_cv_foo' will be assigned the -# following values. - -_ACEOF - -# The following way of writing the cache mishandles newlines in values, -# but we know of no workaround that is simple, portable, and efficient. -# So, don't put newlines in cache variables' values. -# Ultrix sh set writes to stderr and can't be redirected directly, -# and sets the high bit in the cache file unless we assign to the vars. -{ - (set) 2>&1 | - case `(ac_space=' '; set | grep ac_space) 2>&1` in - *ac_space=\ *) - # `set' does not quote correctly, so add quotes (double-quote - # substitution turns \\\\ into \\, and sed turns \\ into \). - sed -n \ - "s/'/'\\\\''/g; - s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" - ;; - *) - # `set' quotes correctly as required by POSIX, so do not add quotes. - sed -n \ - "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" - ;; - esac; -} | - sed ' - t clear - : clear - s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ - t end - /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ - : end' >>confcache -if diff $cache_file confcache >/dev/null 2>&1; then :; else - if test -w $cache_file; then - test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" - cat confcache >$cache_file - else - echo "not updating unwritable cache $cache_file" - fi -fi -rm -f confcache - -test "x$prefix" = xNONE && prefix=$ac_default_prefix -# Let make expand exec_prefix. -test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - -# VPATH may cause trouble with some makes, so we remove $(srcdir), -# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and -# trailing colons and then remove the whole line if VPATH becomes empty -# (actually we leave an empty line to preserve line numbers). -if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ -s/:*\$(srcdir):*/:/; -s/:*\${srcdir}:*/:/; -s/:*@srcdir@:*/:/; -s/^\([^=]*=[ ]*\):*/\1/; -s/:*$//; -s/^[^=]*=[ ]*$//; -}' -fi - -DEFS=-DHAVE_CONFIG_H - -ac_libobjs= -ac_ltlibobjs= -for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue - # 1. Remove the extension, and $U if already installed. - ac_i=`echo "$ac_i" | - sed 's/\$U\././;s/\.o$//;s/\.obj$//'` - # 2. Add them. - ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" - ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' -done -LIBOBJS=$ac_libobjs - -LTLIBOBJS=$ac_ltlibobjs - - -if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then - { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -echo "$as_me: error: conditional \"AMDEP\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } -fi -if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then - { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&5 -echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. -Usually this means the macro was only invoked conditionally." >&2;} - { (exit 1); exit 1; }; } -fi - -: ${CONFIG_STATUS=./config.status} -ac_clean_files_save=$ac_clean_files -ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 -echo "$as_me: creating $CONFIG_STATUS" >&6;} -cat >$CONFIG_STATUS <<_ACEOF -#! $SHELL -# Generated by $as_me. -# Run this file to recreate the current configuration. -# Compiler output produced by configure, useful for debugging -# configure, is in config.log if it exists. - -debug=false -ac_cs_recheck=false -ac_cs_silent=false -SHELL=\${CONFIG_SHELL-$SHELL} -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -## --------------------- ## -## M4sh Initialization. ## -## --------------------- ## - -# Be Bourne compatible -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then - emulate sh - NULLCMD=: - # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which - # is contrary to our usage. Disable this feature. - alias -g '${1+"$@"}'='"$@"' -elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then - set -o posix -fi -DUALCASE=1; export DUALCASE # for MKS sh - -# Support unset when possible. -if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then - as_unset=unset -else - as_unset=false -fi - - -# Work around bugs in pre-3.0 UWIN ksh. -$as_unset ENV MAIL MAILPATH -PS1='$ ' -PS2='> ' -PS4='+ ' - -# NLS nuisances. -for as_var in \ - LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ - LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ - LC_TELEPHONE LC_TIME -do - if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then - eval $as_var=C; export $as_var - else - $as_unset $as_var - fi -done - -# Required to use basename. -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename -else - as_basename=false -fi - - -# Name of the executable. -as_me=`$as_basename "$0" || -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || -echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - - -# PATH needs CR, and LINENO needs CR and PATH. -# Avoid depending upon Character Ranges. -as_cr_letters='abcdefghijklmnopqrstuvwxyz' -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' -as_cr_Letters=$as_cr_letters$as_cr_LETTERS -as_cr_digits='0123456789' -as_cr_alnum=$as_cr_Letters$as_cr_digits - -# The user is always right. -if test "${PATH_SEPARATOR+set}" != set; then - echo "#! /bin/sh" >conf$$.sh - echo "exit 0" >>conf$$.sh - chmod +x conf$$.sh - if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then - PATH_SEPARATOR=';' - else - PATH_SEPARATOR=: - fi - rm -f conf$$.sh -fi - - - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" || { - # Find who we are. Look in the path if we contain no path at all - # relative or not. - case $0 in - *[\\/]* ) as_myself=$0 ;; - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in $PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break -done - - ;; - esac - # We did not find ourselves, most probably we were run as `sh COMMAND' - # in which case we are not to be found in the path. - if test "x$as_myself" = x; then - as_myself=$0 - fi - if test ! -f "$as_myself"; then - { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 -echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} - { (exit 1); exit 1; }; } - fi - case $CONFIG_SHELL in - '') - as_save_IFS=$IFS; IFS=$PATH_SEPARATOR -for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH -do - IFS=$as_save_IFS - test -z "$as_dir" && as_dir=. - for as_base in sh bash ksh sh5; do - case $as_dir in - /*) - if ("$as_dir/$as_base" -c ' - as_lineno_1=$LINENO - as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` - test "x$as_lineno_1" != "x$as_lineno_2" && - test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then - $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } - $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } - CONFIG_SHELL=$as_dir/$as_base - export CONFIG_SHELL - exec "$CONFIG_SHELL" "$0" ${1+"$@"} - fi;; - esac - done -done -;; - esac - - # Create $as_me.lineno as a copy of $as_myself, but with $LINENO - # uniformly replaced by the line number. The first 'sed' inserts a - # line-number line before each line; the second 'sed' does the real - # work. The second script uses 'N' to pair each line-number line - # with the numbered line, and appends trailing '-' during - # substitution so that $LINENO is not a special case at line end. - # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the - # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) - sed '=' <$as_myself | - sed ' - N - s,$,-, - : loop - s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, - t loop - s,-$,, - s,^['$as_cr_digits']*\n,, - ' >$as_me.lineno && - chmod +x $as_me.lineno || - { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 -echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} - { (exit 1); exit 1; }; } - - # Don't try to exec as it changes $[0], causing all sort of problems - # (the dirname of $[0] is not the place where we might find the - # original and so on. Autoconf is especially sensible to this). - . ./$as_me.lineno - # Exit status is that of the last command. - exit -} - - -case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in - *c*,-n*) ECHO_N= ECHO_C=' -' ECHO_T=' ' ;; - *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; - *) ECHO_N= ECHO_C='\c' ECHO_T= ;; -esac - -if expr a : '\(a\)' >/dev/null 2>&1; then - as_expr=expr -else - as_expr=false -fi - -rm -f conf$$ conf$$.exe conf$$.file -echo >conf$$.file -if ln -s conf$$.file conf$$ 2>/dev/null; then - # We could just check for DJGPP; but this test a) works b) is more generic - # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). - if test -f conf$$.exe; then - # Don't use ln at all; we don't have any links - as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi -elif ln conf$$.file conf$$ 2>/dev/null; then - as_ln_s=ln -else - as_ln_s='cp -p' -fi -rm -f conf$$ conf$$.exe conf$$.file - -if mkdir -p . 2>/dev/null; then - as_mkdir_p=: -else - test -d ./-p && rmdir ./-p - as_mkdir_p=false -fi - -as_executable_p="test -f" - -# Sed expression to map a string onto a valid CPP name. -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" - -# Sed expression to map a string onto a valid variable name. -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - - -# IFS -# We need space, tab and new line, in precisely that order. -as_nl=' -' -IFS=" $as_nl" - -# CDPATH. -$as_unset CDPATH - -exec 6>&1 - -# Open the log real soon, to keep \$[0] and so on meaningful, and to -# report actual input values of CONFIG_FILES etc. instead of their -# values after options handling. Logging --version etc. is OK. -exec 5>>config.log -{ - echo - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX -## Running $as_me. ## -_ASBOX -} >&5 -cat >&5 <<_CSEOF - -This file was extended by WordNet $as_me 3.0, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = $CONFIG_FILES - CONFIG_HEADERS = $CONFIG_HEADERS - CONFIG_LINKS = $CONFIG_LINKS - CONFIG_COMMANDS = $CONFIG_COMMANDS - $ $0 $@ - -_CSEOF -echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 -echo >&5 -_ACEOF - -# Files that config.status was made for. -if test -n "$ac_config_files"; then - echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_headers"; then - echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_links"; then - echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS -fi - -if test -n "$ac_config_commands"; then - echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS -fi - -cat >>$CONFIG_STATUS <<\_ACEOF - -ac_cs_usage="\ -\`$as_me' instantiates files from templates according to the -current configuration. - -Usage: $0 [OPTIONS] [FILE]... - - -h, --help print this help, then exit - -V, --version print version number, then exit - -q, --quiet do not print progress messages - -d, --debug don't remove temporary files - --recheck update $as_me by reconfiguring in the same conditions - --file=FILE[:TEMPLATE] - instantiate the configuration file FILE - --header=FILE[:TEMPLATE] - instantiate the configuration header FILE - -Configuration files: -$config_files - -Configuration headers: -$config_headers - -Configuration commands: -$config_commands - -Report bugs to ." -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -ac_cs_version="\\ -WordNet config.status 3.0 -configured by $0, generated by GNU Autoconf 2.59, - with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" - -Copyright (C) 2003 Free Software Foundation, Inc. -This config.status script is free software; the Free Software Foundation -gives unlimited permission to copy, distribute and modify it." -srcdir=$srcdir -INSTALL="$INSTALL" -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF -# If no file are specified by the user, then we need to provide default -# value. By we need to know if files were specified by the user. -ac_need_defaults=: -while test $# != 0 -do - case $1 in - --*=*) - ac_option=`expr "x$1" : 'x\([^=]*\)='` - ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` - ac_shift=: - ;; - -*) - ac_option=$1 - ac_optarg=$2 - ac_shift=shift - ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; - esac - - case $ac_option in - # Handling of the options. -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) - ac_cs_recheck=: ;; - --version | --vers* | -V ) - echo "$ac_cs_version"; exit 0 ;; - --he | --h) - # Conflict between --help and --header - { { echo "$as_me:$LINENO: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: ambiguous option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; };; - --help | --hel | -h ) - echo "$ac_cs_usage"; exit 0 ;; - --debug | --d* | -d ) - debug=: ;; - --file | --fil | --fi | --f ) - $ac_shift - CONFIG_FILES="$CONFIG_FILES $ac_optarg" - ac_need_defaults=false;; - --header | --heade | --head | --hea ) - $ac_shift - CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" - ac_need_defaults=false;; - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ - | -silent | --silent | --silen | --sile | --sil | --si | --s) - ac_cs_silent=: ;; - - # This is an error. - -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&5 -echo "$as_me: error: unrecognized option: $1 -Try \`$0 --help' for more information." >&2;} - { (exit 1); exit 1; }; } ;; - - *) ac_config_targets="$ac_config_targets $1" ;; - - esac - shift -done - -ac_configure_extra_args= - -if $ac_cs_silent; then - exec 6>/dev/null - ac_configure_extra_args="$ac_configure_extra_args --silent" -fi - -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF -if \$ac_cs_recheck; then - echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 - exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion -fi - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF -# -# INIT-COMMANDS section. -# - -AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" - -_ACEOF - - - -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_config_target in $ac_config_targets -do - case "$ac_config_target" in - # Handling of arguments. - "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; - "dict/Makefile" ) CONFIG_FILES="$CONFIG_FILES dict/Makefile" ;; - "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; - "doc/html/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/html/Makefile" ;; - "doc/man/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/man/Makefile" ;; - "doc/pdf/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/pdf/Makefile" ;; - "doc/ps/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/ps/Makefile" ;; - "include/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/Makefile" ;; - "include/tk/Makefile" ) CONFIG_FILES="$CONFIG_FILES include/tk/Makefile" ;; - "src/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; - "lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; - "lib/wnres/Makefile" ) CONFIG_FILES="$CONFIG_FILES lib/wnres/Makefile" ;; - "depfiles" ) CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; - "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; - "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 -echo "$as_me: error: invalid argument: $ac_config_target" >&2;} - { (exit 1); exit 1; }; };; - esac -done - -# If the user did not use the arguments to specify the items to instantiate, -# then the envvar interface is used. Set only those that are not. -# We use the long form for the default assignment because of an extremely -# bizarre bug on SunOS 4.1.3. -if $ac_need_defaults; then - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers - test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands -fi - -# Have a temporary directory for convenience. Make it in the build tree -# simply because there is no reason to put it here, and in addition, -# creating and moving files from /tmp can sometimes cause problems. -# Create a temporary directory, and hook for its removal unless debugging. -$debug || -{ - trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 - trap '{ (exit 1); exit 1; }' 1 2 13 15 -} - -# Create a (secure) tmp directory for tmp files. - -{ - tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && - test -n "$tmp" && test -d "$tmp" -} || -{ - tmp=./confstat$$-$RANDOM - (umask 077 && mkdir $tmp) -} || -{ - echo "$me: cannot create a temporary directory in ." >&2 - { (exit 1); exit 1; } -} - -_ACEOF - -cat >>$CONFIG_STATUS <<_ACEOF - -# -# CONFIG_FILES section. -# - -# No need to generate the scripts if there are no CONFIG_FILES. -# This happens for instance when ./config.status config.h -if test -n "\$CONFIG_FILES"; then - # Protect against being on the right side of a sed subst in config.status. - sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; - s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF -s,@SHELL@,$SHELL,;t t -s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t -s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t -s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t -s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t -s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t -s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t -s,@exec_prefix@,$exec_prefix,;t t -s,@prefix@,$prefix,;t t -s,@program_transform_name@,$program_transform_name,;t t -s,@bindir@,$bindir,;t t -s,@sbindir@,$sbindir,;t t -s,@libexecdir@,$libexecdir,;t t -s,@datadir@,$datadir,;t t -s,@sysconfdir@,$sysconfdir,;t t -s,@sharedstatedir@,$sharedstatedir,;t t -s,@localstatedir@,$localstatedir,;t t -s,@libdir@,$libdir,;t t -s,@includedir@,$includedir,;t t -s,@oldincludedir@,$oldincludedir,;t t -s,@infodir@,$infodir,;t t -s,@mandir@,$mandir,;t t -s,@build_alias@,$build_alias,;t t -s,@host_alias@,$host_alias,;t t -s,@target_alias@,$target_alias,;t t -s,@DEFS@,$DEFS,;t t -s,@ECHO_C@,$ECHO_C,;t t -s,@ECHO_N@,$ECHO_N,;t t -s,@ECHO_T@,$ECHO_T,;t t -s,@LIBS@,$LIBS,;t t -s,@CC@,$CC,;t t -s,@CFLAGS@,$CFLAGS,;t t -s,@LDFLAGS@,$LDFLAGS,;t t -s,@CPPFLAGS@,$CPPFLAGS,;t t -s,@ac_ct_CC@,$ac_ct_CC,;t t -s,@EXEEXT@,$EXEEXT,;t t -s,@OBJEXT@,$OBJEXT,;t t -s,@RANLIB@,$RANLIB,;t t -s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t -s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t -s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t -s,@INSTALL_DATA@,$INSTALL_DATA,;t t -s,@CPP@,$CPP,;t t -s,@EGREP@,$EGREP,;t t -s,@LIBOBJS@,$LIBOBJS,;t t -s,@CYGPATH_W@,$CYGPATH_W,;t t -s,@PACKAGE@,$PACKAGE,;t t -s,@VERSION@,$VERSION,;t t -s,@ACLOCAL@,$ACLOCAL,;t t -s,@AUTOCONF@,$AUTOCONF,;t t -s,@AUTOMAKE@,$AUTOMAKE,;t t -s,@AUTOHEADER@,$AUTOHEADER,;t t -s,@MAKEINFO@,$MAKEINFO,;t t -s,@install_sh@,$install_sh,;t t -s,@STRIP@,$STRIP,;t t -s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t -s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t -s,@mkdir_p@,$mkdir_p,;t t -s,@AWK@,$AWK,;t t -s,@SET_MAKE@,$SET_MAKE,;t t -s,@am__leading_dot@,$am__leading_dot,;t t -s,@AMTAR@,$AMTAR,;t t -s,@am__tar@,$am__tar,;t t -s,@am__untar@,$am__untar,;t t -s,@DEPDIR@,$DEPDIR,;t t -s,@am__include@,$am__include,;t t -s,@am__quote@,$am__quote,;t t -s,@AMDEP_TRUE@,$AMDEP_TRUE,;t t -s,@AMDEP_FALSE@,$AMDEP_FALSE,;t t -s,@AMDEPBACKSLASH@,$AMDEPBACKSLASH,;t t -s,@CCDEPMODE@,$CCDEPMODE,;t t -s,@am__fastdepCC_TRUE@,$am__fastdepCC_TRUE,;t t -s,@am__fastdepCC_FALSE@,$am__fastdepCC_FALSE,;t t -s,@TCL_LIB_SPEC@,$TCL_LIB_SPEC,;t t -s,@TCL_INCLUDE_SPEC@,$TCL_INCLUDE_SPEC,;t t -s,@TK_LIB_SPEC@,$TK_LIB_SPEC,;t t -s,@TK_LIBS@,$TK_LIBS,;t t -s,@TK_XINCLUDES@,$TK_XINCLUDES,;t t -s,@TK_PREFIX@,$TK_PREFIX,;t t -s,@ac_prefix@,$ac_prefix,;t t -s,@LTLIBOBJS@,$LTLIBOBJS,;t t -CEOF - -_ACEOF - - cat >>$CONFIG_STATUS <<\_ACEOF - # Split the substitutions into bite-sized pieces for seds with - # small command number limits, like on Digital OSF/1 and HP-UX. - ac_max_sed_lines=48 - ac_sed_frag=1 # Number of current file. - ac_beg=1 # First line for current file. - ac_end=$ac_max_sed_lines # Line after last line for current file. - ac_more_lines=: - ac_sed_cmds= - while $ac_more_lines; do - if test $ac_beg -gt 1; then - sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - else - sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag - fi - if test ! -s $tmp/subs.frag; then - ac_more_lines=false - else - # The purpose of the label and of the branching condition is to - # speed up the sed processing (if there are no `@' at all, there - # is no need to browse any of the substitutions). - # These are the two extra sed commands mentioned above. - (echo ':t - /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed - if test -z "$ac_sed_cmds"; then - ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" - else - ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" - fi - ac_sed_frag=`expr $ac_sed_frag + 1` - ac_beg=$ac_end - ac_end=`expr $ac_end + $ac_max_sed_lines` - fi - done - if test -z "$ac_sed_cmds"; then - ac_sed_cmds=cat - fi -fi # test -n "$CONFIG_FILES" - -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - - case $INSTALL in - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; - *) ac_INSTALL=$ac_top_builddir$INSTALL ;; - esac - - if test x"$ac_file" != x-; then - { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - rm -f "$ac_file" - fi - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - configure_input= - else - configure_input="$ac_file. " - fi - configure_input=$configure_input"Generated from `echo $ac_file_in | - sed 's,.*/,,'` by configure." - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } -_ACEOF -cat >>$CONFIG_STATUS <<_ACEOF - sed "$ac_vpsub -$extrasub -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF -:t -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b -s,@configure_input@,$configure_input,;t t -s,@srcdir@,$ac_srcdir,;t t -s,@abs_srcdir@,$ac_abs_srcdir,;t t -s,@top_srcdir@,$ac_top_srcdir,;t t -s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t -s,@builddir@,$ac_builddir,;t t -s,@abs_builddir@,$ac_abs_builddir,;t t -s,@top_builddir@,$ac_top_builddir,;t t -s,@abs_top_builddir@,$ac_abs_top_builddir,;t t -s,@INSTALL@,$ac_INSTALL,;t t -" $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out - rm -f $tmp/stdin - if test x"$ac_file" != x-; then - mv $tmp/out $ac_file - else - cat $tmp/out - rm -f $tmp/out - fi - -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_HEADER section. -# - -# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where -# NAME is the cpp macro being defined and VALUE is the value it is being given. -# -# ac_d sets the value in "#define NAME VALUE" lines. -ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' -ac_dB='[ ].*$,\1#\2' -ac_dC=' ' -ac_dD=',;t' -# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". -ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' -ac_uB='$,\1#\2define\3' -ac_uC=' ' -ac_uD=',;t' - -for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue - # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". - case $ac_file in - - | *:- | *:-:* ) # input from stdin - cat >$tmp/stdin - ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; - * ) ac_file_in=$ac_file.in ;; - esac - - test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 -echo "$as_me: creating $ac_file" >&6;} - - # First look for the input files in the build tree, otherwise in the - # src tree. - ac_file_inputs=`IFS=: - for f in $ac_file_in; do - case $f in - -) echo $tmp/stdin ;; - [\\/$]*) - # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - # Do quote $f, to prevent DOS paths from being IFS'd. - echo "$f";; - *) # Relative - if test -f "$f"; then - # Build tree - echo "$f" - elif test -f "$srcdir/$f"; then - # Source tree - echo "$srcdir/$f" - else - # /dev/null tree - { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 -echo "$as_me: error: cannot find input file: $f" >&2;} - { (exit 1); exit 1; }; } - fi;; - esac - done` || { (exit 1); exit 1; } - # Remove the trailing spaces. - sed 's/[ ]*$//' $ac_file_inputs >$tmp/in - -_ACEOF - -# Transform confdefs.h into two sed scripts, `conftest.defines' and -# `conftest.undefs', that substitutes the proper values into -# config.h.in to produce config.h. The first handles `#define' -# templates, and the second `#undef' templates. -# And first: Protect against being on the right side of a sed subst in -# config.status. Protect against being in an unquoted here document -# in config.status. -rm -f conftest.defines conftest.undefs -# Using a here document instead of a string reduces the quoting nightmare. -# Putting comments in sed scripts is not portable. -# -# `end' is used to avoid that the second main sed command (meant for -# 0-ary CPP macros) applies to n-ary macro definitions. -# See the Autoconf documentation for `clear'. -cat >confdef2sed.sed <<\_ACEOF -s/[\\&,]/\\&/g -s,[\\$`],\\&,g -t clear -: clear -s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp -t end -s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp -: end -_ACEOF -# If some macros were called several times there might be several times -# the same #defines, which is useless. Nevertheless, we may not want to -# sort them, since we want the *last* AC-DEFINE to be honored. -uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines -sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs -rm -f confdef2sed.sed - -# This sed command replaces #undef with comments. This is necessary, for -# example, in the case of _POSIX_SOURCE, which is predefined and required -# on some systems where configure will not decide to define it. -cat >>conftest.undefs <<\_ACEOF -s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, -_ACEOF - -# Break up conftest.defines because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS -echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS -echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS -echo ' :' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.defines >/dev/null -do - # Write a limited-size here document to $tmp/defines.sed. - echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#define' lines. - echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/defines.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail - rm -f conftest.defines - mv conftest.tail conftest.defines -done -rm -f conftest.defines -echo ' fi # grep' >>$CONFIG_STATUS -echo >>$CONFIG_STATUS - -# Break up conftest.undefs because some shells have a limit on the size -# of here documents, and old seds have small limits too (100 cmds). -echo ' # Handle all the #undef templates' >>$CONFIG_STATUS -rm -f conftest.tail -while grep . conftest.undefs >/dev/null -do - # Write a limited-size here document to $tmp/undefs.sed. - echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS - # Speed up: don't consider the non `#undef' - echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS - # Work around the forget-to-reset-the-flag bug. - echo 't clr' >>$CONFIG_STATUS - echo ': clr' >>$CONFIG_STATUS - sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS - echo 'CEOF - sed -f $tmp/undefs.sed $tmp/in >$tmp/out - rm -f $tmp/in - mv $tmp/out $tmp/in -' >>$CONFIG_STATUS - sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail - rm -f conftest.undefs - mv conftest.tail conftest.undefs -done -rm -f conftest.undefs - -cat >>$CONFIG_STATUS <<\_ACEOF - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in - if test x"$ac_file" != x-; then - if diff $ac_file $tmp/config.h >/dev/null 2>&1; then - { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 -echo "$as_me: $ac_file is unchanged" >&6;} - else - ac_dir=`(dirname "$ac_file") 2>/dev/null || -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - rm -f $ac_file - mv $tmp/config.h $ac_file - fi - else - cat $tmp/config.h - rm -f $tmp/config.h - fi -# Compute $ac_file's index in $config_headers. -_am_stamp_count=1 -for _am_header in $config_headers :; do - case $_am_header in - $ac_file | $ac_file:* ) - break ;; - * ) - _am_stamp_count=`expr $_am_stamp_count + 1` ;; - esac -done -echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null || -$as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X$ac_file : 'X\(//\)[^/]' \| \ - X$ac_file : 'X\(//\)$' \| \ - X$ac_file : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X$ac_file | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'`/stamp-h$_am_stamp_count -done -_ACEOF -cat >>$CONFIG_STATUS <<\_ACEOF - -# -# CONFIG_COMMANDS section. -# -for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue - ac_dest=`echo "$ac_file" | sed 's,:.*,,'` - ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'` - ac_dir=`(dirname "$ac_dest") 2>/dev/null || -$as_expr X"$ac_dest" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_dest" : 'X\(//\)[^/]' \| \ - X"$ac_dest" : 'X\(//\)$' \| \ - X"$ac_dest" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$ac_dest" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 -echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - - ac_builddir=. - -if test "$ac_dir" != .; then - ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` - # A "../" for each directory in $ac_dir_suffix. - ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` -else - ac_dir_suffix= ac_top_builddir= -fi - -case $srcdir in - .) # No --srcdir option. We are building in place. - ac_srcdir=. - if test -z "$ac_top_builddir"; then - ac_top_srcdir=. - else - ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` - fi ;; - [\\/]* | ?:[\\/]* ) # Absolute path. - ac_srcdir=$srcdir$ac_dir_suffix; - ac_top_srcdir=$srcdir ;; - *) # Relative path. - ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix - ac_top_srcdir=$ac_top_builddir$srcdir ;; -esac - -# Do not use `cd foo && pwd` to compute absolute paths, because -# the directories may not exist. -case `pwd` in -.) ac_abs_builddir="$ac_dir";; -*) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_builddir=${ac_top_builddir}.;; -*) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_srcdir=$ac_srcdir;; -*) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; -esac -case $ac_abs_builddir in -.) ac_abs_top_srcdir=$ac_top_srcdir;; -*) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; -esac - - - { echo "$as_me:$LINENO: executing $ac_dest commands" >&5 -echo "$as_me: executing $ac_dest commands" >&6;} - case $ac_dest in - depfiles ) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do - # Strip MF so we end up with the name of the file. - mf=`echo "$mf" | sed -e 's/:.*$//'` - # Check whether this is an Automake generated Makefile or not. - # We used to match only the files named `Makefile.in', but - # some people rename them; so instead we look at the file content. - # Grep'ing the first line is not enough: some people post-process - # each Makefile.in and add a new line on top of each file to say so. - # So let's grep whole file. - if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then - dirpart=`(dirname "$mf") 2>/dev/null || -$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$mf" : 'X\(//\)[^/]' \| \ - X"$mf" : 'X\(//\)$' \| \ - X"$mf" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$mf" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - else - continue - fi - # Extract the definition of DEPDIR, am__include, and am__quote - # from the Makefile without running `make'. - DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` - test -z "$DEPDIR" && continue - am__include=`sed -n 's/^am__include = //p' < "$mf"` - test -z "am__include" && continue - am__quote=`sed -n 's/^am__quote = //p' < "$mf"` - # When using ansi2knr, U may be empty or an underscore; expand it - U=`sed -n 's/^U = //p' < "$mf"` - # Find all dependency output files, they are included files with - # $(DEPDIR) in their names. We invoke sed twice because it is the - # simplest approach to changing $(DEPDIR) to its actual value in the - # expansion. - for file in `sed -n " - s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ - sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do - # Make sure the directory exists. - test -f "$dirpart/$file" && continue - fdir=`(dirname "$file") 2>/dev/null || -$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$file" : 'X\(//\)[^/]' \| \ - X"$file" : 'X\(//\)$' \| \ - X"$file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p $dirpart/$fdir - else - as_dir=$dirpart/$fdir - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || -echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory $dirpart/$fdir" >&5 -echo "$as_me: error: cannot create directory $dirpart/$fdir" >&2;} - { (exit 1); exit 1; }; }; } - - # echo "creating $dirpart/$file" - echo '# dummy' > "$dirpart/$file" - done -done - ;; - esac -done -_ACEOF - -cat >>$CONFIG_STATUS <<\_ACEOF - -{ (exit 0); exit 0; } -_ACEOF -chmod +x $CONFIG_STATUS -ac_clean_files=$ac_clean_files_save - - -# configure is writing to config.log, and then calls config.status. -# config.status does its own redirection, appending to config.log. -# Unfortunately, on DOS this fails, as config.log is still kept open -# by configure, so config.status won't be able to write to it; its -# output is simply discarded. So we exec the FD to /dev/null, -# effectively closing config.log, so it can be properly (re)opened and -# appended to by config.status. When coming back to configure, we -# need to make the FD available again. -if test "$no_create" != yes; then - ac_cs_success=: - ac_config_status_args= - test "$silent" = yes && - ac_config_status_args="$ac_config_status_args --quiet" - exec 5>/dev/null - $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false - exec 5>>config.log - # Use ||, not &&, to avoid exiting from the if with $? = 1, which - # would make configure fail if this is the last instruction. - $ac_cs_success || { (exit 1); exit 1; } -fi - - -echo "$as_me:$LINENO: result: -WordNet is now configured - - Installation directory: ${prefix} - - To build and install WordNet: - - make - make install - - To run, environment variables should be set as follows: - - PATH - include ${bindir} - WNHOME - if not using default installation location, set to ${prefix} - - See INSTALL file for details and additional environment variables - which may need to be set on your system. - -" >&5 -echo "${ECHO_T} -WordNet is now configured - - Installation directory: ${prefix} - - To build and install WordNet: - - make - make install - - To run, environment variables should be set as follows: - - PATH - include ${bindir} - WNHOME - if not using default installation location, set to ${prefix} - - See INSTALL file for details and additional environment variables - which may need to be set on your system. - -" >&6 diff --git a/corpora/en/wordnet/configure.ac b/corpora/en/wordnet/configure.ac deleted file mode 100644 index b6d1c1434..000000000 --- a/corpora/en/wordnet/configure.ac +++ /dev/null @@ -1,74 +0,0 @@ -# -*- Autoconf -*- -# Process this file with autoconf to produce a configure script. - -AC_PREREQ(2.59) -AC_INIT(WordNet, 3.0, [wordnet@princeton.edu], wordnet) -AC_CONFIG_SRCDIR([config.h.in]) -AC_CONFIG_HEADER([config.h]) - -# Checks for programs. -AC_PROG_CC -AC_PROG_RANLIB -AC_PROG_INSTALL - -# Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS([locale.h malloc.h stdlib.h string.h]) - -# Checks for typedefs, structures, and compiler characteristics. - -# Checks for library functions. -AC_FUNC_MALLOC -AC_CHECK_FUNCS([strchr strdup strrchr strstr strtol]) - -# Set HAVE_LANGINFO_CODESET if nl_langinfo is found - -AC_LANGINFO_CODESET - -AM_INIT_AUTOMAKE(WordNet, 3.0) - -SC_PATH_TCLCONFIG -SC_PATH_TKCONFIG -SC_LOAD_TCLCONFIG -SC_LOAD_TKCONFIG - -# Set default installation prefix. -AC_PREFIX_DEFAULT([/usr/local/WordNet-3.0]) -ac_prefix=$prefix -if test "x$ac_prefix" = "xNONE"; then - ac_prefix=$ac_default_prefix -fi -AC_SUBST(ac_prefix) -AH_TEMPLATE([DEFAULTPATH],[The default search path for WordNet data files]) -AC_DEFINE_UNQUOTED(DEFAULTPATH, ["$ac_prefix/dict"], [Default installation prefix.]) - -#AC_DEFINE_UNQUOTED(DEFAULTPATH,"${prefix}/dict") - -# This doesn't do anything -AC_CONFIG_COMMANDS([default]) - -AC_CONFIG_FILES(Makefile dict/Makefile doc/Makefile doc/html/Makefile doc/man/Makefile doc/pdf/Makefile doc/ps/Makefile include/Makefile include/tk/Makefile -src/Makefile lib/Makefile lib/wnres/Makefile) - -AC_OUTPUT - -AC_MSG_RESULT( -[ -WordNet is now configured - - Installation directory: ${prefix} - - To build and install WordNet: - - make - make install - - To run, environment variables should be set as follows: - - PATH - include ${bindir} - WNHOME - if not using default installation location, set to ${prefix} - - See INSTALL file for details and additional environment variables - which may need to be set on your system. - -]) diff --git a/corpora/en/wordnet/depcomp b/corpora/en/wordnet/depcomp deleted file mode 100755 index 11e2d3bfe..000000000 --- a/corpora/en/wordnet/depcomp +++ /dev/null @@ -1,522 +0,0 @@ -#! /bin/sh -# depcomp - compile a program generating dependencies as side-effects - -scriptversion=2004-05-31.23 - -# Copyright (C) 1999, 2000, 2003, 2004 Free Software Foundation, Inc. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -# Originally written by Alexandre Oliva . - -case $1 in - '') - echo "$0: No command. Try \`$0 --help' for more information." 1>&2 - exit 1; - ;; - -h | --h*) - cat <<\EOF -Usage: depcomp [--help] [--version] PROGRAM [ARGS] - -Run PROGRAMS ARGS to compile a file, generating dependencies -as side-effects. - -Environment variables: - depmode Dependency tracking mode. - source Source file read by `PROGRAMS ARGS'. - object Object file output by `PROGRAMS ARGS'. - DEPDIR directory where to store dependencies. - depfile Dependency file to output. - tmpdepfile Temporary file to use when outputing dependencies. - libtool Whether libtool is used (yes/no). - -Report bugs to . -EOF - exit 0 - ;; - -v | --v*) - echo "depcomp $scriptversion" - exit 0 - ;; -esac - -if test -z "$depmode" || test -z "$source" || test -z "$object"; then - echo "depcomp: Variables source, object and depmode must be set" 1>&2 - exit 1 -fi - -# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. -depfile=${depfile-`echo "$object" | - sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} -tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} - -rm -f "$tmpdepfile" - -# Some modes work just like other modes, but use different flags. We -# parameterize here, but still list the modes in the big case below, -# to make depend.m4 easier to write. Note that we *cannot* use a case -# here, because this file can only contain one case statement. -if test "$depmode" = hp; then - # HP compiler uses -M and no extra arg. - gccflag=-M - depmode=gcc -fi - -if test "$depmode" = dashXmstdout; then - # This is just like dashmstdout with a different argument. - dashmflag=-xM - depmode=dashmstdout -fi - -case "$depmode" in -gcc3) -## gcc 3 implements dependency tracking that does exactly what -## we want. Yay! Note: for some reason libtool 1.4 doesn't like -## it if -MD -MP comes after the -MF stuff. Hmm. - "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - mv "$tmpdepfile" "$depfile" - ;; - -gcc) -## There are various ways to get dependency output from gcc. Here's -## why we pick this rather obscure method: -## - Don't want to use -MD because we'd like the dependencies to end -## up in a subdir. Having to rename by hand is ugly. -## (We might end up doing this anyway to support other compilers.) -## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like -## -MM, not -M (despite what the docs say). -## - Using -M directly means running the compiler twice (even worse -## than renaming). - if test -z "$gccflag"; then - gccflag=-MD, - fi - "$@" -Wp,"$gccflag$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - echo "$object : \\" > "$depfile" - alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz -## The second -e expression handles DOS-style file names with drive letters. - sed -e 's/^[^:]*: / /' \ - -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" -## This next piece of magic avoids the `deleted header file' problem. -## The problem is that when a header file which appears in a .P file -## is deleted, the dependency causes make to die (because there is -## typically no way to rebuild the header). We avoid this by adding -## dummy dependencies for each header file. Too bad gcc doesn't do -## this for us directly. - tr ' ' ' -' < "$tmpdepfile" | -## Some versions of gcc put a space before the `:'. On the theory -## that the space means something, we add a space to the output as -## well. -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -hp) - # This case exists only to let depend.m4 do its work. It works by - # looking at the text of this script. This case will never be run, - # since it is checked for above. - exit 1 - ;; - -sgi) - if test "$libtool" = yes; then - "$@" "-Wp,-MDupdate,$tmpdepfile" - else - "$@" -MDupdate "$tmpdepfile" - fi - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - - if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files - echo "$object : \\" > "$depfile" - - # Clip off the initial element (the dependent). Don't try to be - # clever and replace this with sed code, as IRIX sed won't handle - # lines with more than a fixed number of characters (4096 in - # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; - # the IRIX cc adds comments like `#:fec' to the end of the - # dependency line. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ - tr ' -' ' ' >> $depfile - echo >> $depfile - - # The second pass generates a dummy entry for each header file. - tr ' ' ' -' < "$tmpdepfile" \ - | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ - >> $depfile - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -aix) - # The C for AIX Compiler uses -M and outputs the dependencies - # in a .u file. In older versions, this file always lives in the - # current directory. Also, the AIX compiler puts `$object:' at the - # start of each line; $object doesn't have directory information. - # Version 6 uses the directory in both cases. - stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` - tmpdepfile="$stripped.u" - if test "$libtool" = yes; then - "$@" -Wc,-M - else - "$@" -M - fi - stat=$? - - if test -f "$tmpdepfile"; then : - else - stripped=`echo "$stripped" | sed 's,^.*/,,'` - tmpdepfile="$stripped.u" - fi - - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - - if test -f "$tmpdepfile"; then - outname="$stripped.o" - # Each line is of the form `foo.o: dependent.h'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" - sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" - else - # The sourcefile does not contain any dependencies, so just - # store a dummy comment line, to avoid errors with the Makefile - # "include basename.Plo" scheme. - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -icc) - # Intel's C compiler understands `-MD -MF file'. However on - # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c - # ICC 7.0 will fill foo.d with something like - # foo.o: sub/foo.c - # foo.o: sub/foo.h - # which is wrong. We want: - # sub/foo.o: sub/foo.c - # sub/foo.o: sub/foo.h - # sub/foo.c: - # sub/foo.h: - # ICC 7.1 will output - # foo.o: sub/foo.c sub/foo.h - # and will wrap long lines using \ : - # foo.o: sub/foo.c ... \ - # sub/foo.h ... \ - # ... - - "$@" -MD -MF "$tmpdepfile" - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile" - exit $stat - fi - rm -f "$depfile" - # Each line is of the form `foo.o: dependent.h', - # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. - # Do two passes, one to just change these to - # `$object: dependent.h' and one to simply `dependent.h:'. - sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" - # Some versions of the HPUX 10.20 sed can't process this invocation - # correctly. Breaking it into two sed invocations is a workaround. - sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | - sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -tru64) - # The Tru64 compiler uses -MD to generate dependencies as a side - # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. - # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put - # dependencies in `foo.d' instead, so we check for that too. - # Subdirectories are respected. - dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` - test "x$dir" = "x$object" && dir= - base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` - - if test "$libtool" = yes; then - # Dependencies are output in .lo.d with libtool 1.4. - # With libtool 1.5 they are output both in $dir.libs/$base.o.d - # and in $dir.libs/$base.o.d and $dir$base.o.d. We process the - # latter, because the former will be cleaned when $dir.libs is - # erased. - tmpdepfile1="$dir.libs/$base.lo.d" - tmpdepfile2="$dir$base.o.d" - tmpdepfile3="$dir.libs/$base.d" - "$@" -Wc,-MD - else - tmpdepfile1="$dir$base.o.d" - tmpdepfile2="$dir$base.d" - tmpdepfile3="$dir$base.d" - "$@" -MD - fi - - stat=$? - if test $stat -eq 0; then : - else - rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" - exit $stat - fi - - if test -f "$tmpdepfile1"; then - tmpdepfile="$tmpdepfile1" - elif test -f "$tmpdepfile2"; then - tmpdepfile="$tmpdepfile2" - else - tmpdepfile="$tmpdepfile3" - fi - if test -f "$tmpdepfile"; then - sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" - # That's a tab and a space in the []. - sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" - else - echo "#dummy" > "$depfile" - fi - rm -f "$tmpdepfile" - ;; - -#nosideeffect) - # This comment above is used by automake to tell side-effect - # dependency tracking mechanisms from slower ones. - -dashmstdout) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - test -z "$dashmflag" && dashmflag=-M - # Require at least two characters before searching for `:' - # in the target name. This is to cope with DOS-style filenames: - # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. - "$@" $dashmflag | - sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - tr ' ' ' -' < "$tmpdepfile" | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -dashXmstdout) - # This case only exists to satisfy depend.m4. It is never actually - # run, as this mode is specially recognized in the preamble. - exit 1 - ;; - -makedepend) - "$@" || exit $? - # Remove any Libtool call - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - # X makedepend - shift - cleared=no - for arg in "$@"; do - case $cleared in - no) - set ""; shift - cleared=yes ;; - esac - case "$arg" in - -D*|-I*) - set fnord "$@" "$arg"; shift ;; - # Strip any option that makedepend may not understand. Remove - # the object too, otherwise makedepend will parse it as a source file. - -*|$object) - ;; - *) - set fnord "$@" "$arg"; shift ;; - esac - done - obj_suffix="`echo $object | sed 's/^.*\././'`" - touch "$tmpdepfile" - ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" - rm -f "$depfile" - cat < "$tmpdepfile" > "$depfile" - sed '1,2d' "$tmpdepfile" | tr ' ' ' -' | \ -## Some versions of the HPUX 10.20 sed can't process this invocation -## correctly. Breaking it into two sed invocations is a workaround. - sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" "$tmpdepfile".bak - ;; - -cpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout. - "$@" || exit $? - - # Remove the call to Libtool. - if test "$libtool" = yes; then - while test $1 != '--mode=compile'; do - shift - done - shift - fi - - # Remove `-o $object'. - IFS=" " - for arg - do - case $arg in - -o) - shift - ;; - $object) - shift - ;; - *) - set fnord "$@" "$arg" - shift # fnord - shift # $arg - ;; - esac - done - - "$@" -E | - sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | - sed '$ s: \\$::' > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - cat < "$tmpdepfile" >> "$depfile" - sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -msvisualcpp) - # Important note: in order to support this mode, a compiler *must* - # always write the preprocessed file to stdout, regardless of -o, - # because we must use -o when running libtool. - "$@" || exit $? - IFS=" " - for arg - do - case "$arg" in - "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") - set fnord "$@" - shift - shift - ;; - *) - set fnord "$@" "$arg" - shift - shift - ;; - esac - done - "$@" -E | - sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" - rm -f "$depfile" - echo "$object : \\" > "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" - echo " " >> "$depfile" - . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" - rm -f "$tmpdepfile" - ;; - -none) - exec "$@" - ;; - -*) - echo "Unknown depmode $depmode" 1>&2 - exit 1 - ;; -esac - -exit 0 - -# Local Variables: -# mode: shell-script -# sh-indentation: 2 -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/corpora/en/wordnet/dict/Makefile b/corpora/en/wordnet/dict/Makefile deleted file mode 100644 index 3c8897287..000000000 --- a/corpora/en/wordnet/dict/Makefile +++ /dev/null @@ -1,314 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# dict/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -srcdir = . -top_srcdir = .. - -pkgdatadir = $(datadir)/WordNet -pkglibdir = $(libdir)/WordNet -pkgincludedir = $(includedir)/WordNet -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = /usr/csl/bin/install -c -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = dict -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(dictdir)" -dictDATA_INSTALL = $(INSTALL_DATA) -DATA = $(dict_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run aclocal-1.9 -AMDEP_FALSE = # -AMDEP_TRUE = -AMTAR = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run tar -AUTOCONF = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoconf -AUTOHEADER = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoheader -AUTOMAKE = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run automake-1.9 -AWK = nawk -CC = gcc -CCDEPMODE = depmode=gcc3 -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = egrep -EXEEXT = -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s -LDFLAGS = -LIBOBJS = -LIBS = -LTLIBOBJS = -MAKEINFO = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run makeinfo -OBJEXT = o -PACKAGE = WordNet -PACKAGE_BUGREPORT = wordnet@princeton.edu -PACKAGE_NAME = WordNet -PACKAGE_STRING = WordNet 3.0 -PACKAGE_TARNAME = wordnet -PACKAGE_VERSION = 3.0 -PATH_SEPARATOR = : -RANLIB = ranlib -SET_MAKE = -SHELL = /bin/bash -STRIP = -TCL_INCLUDE_SPEC = -I/usr/csl/include -TCL_LIB_SPEC = -L/usr/csl/lib -ltcl8.4 -TK_LIBS = -L/usr/openwin/lib -lX11 -ldl -lpthread -lsocket -lnsl -lm -TK_LIB_SPEC = -L/usr/csl/lib -ltk8.4 -TK_PREFIX = /usr/csl -TK_XINCLUDES = -I/usr/openwin/include -VERSION = 3.0 -ac_ct_CC = gcc -ac_ct_RANLIB = ranlib -ac_ct_STRIP = -ac_prefix = /usr/local/WordNet-3.0 -am__fastdepCC_FALSE = # -am__fastdepCC_TRUE = -am__include = include -am__leading_dot = . -am__quote = -am__tar = ${AMTAR} chof - "$$tardir" -am__untar = ${AMTAR} xf - -bindir = ${exec_prefix}/bin -build_alias = -datadir = ${prefix}/share -exec_prefix = ${prefix} -host_alias = -includedir = ${prefix}/include -infodir = ${prefix}/info -install_sh = /people/wn/src/Release/3.0/Unix/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localstatedir = ${prefix}/var -mandir = ${prefix}/man -mkdir_p = $(install_sh) -d -oldincludedir = /usr/include -prefix = /usr/local/WordNet-3.0 -program_transform_name = s,x,x, -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -sysconfdir = ${prefix}/etc -target_alias = -dictdir = $(prefix)/dict -dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu dict/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu dict/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-dictDATA: $(dict_DATA) - @$(NORMAL_INSTALL) - test -z "$(dictdir)" || $(mkdir_p) "$(DESTDIR)$(dictdir)" - @list='$(dict_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(dictDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dictdir)/$$f'"; \ - $(dictDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dictdir)/$$f"; \ - done - -uninstall-dictDATA: - @$(NORMAL_UNINSTALL) - @list='$(dict_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(dictdir)/$$f'"; \ - rm -f "$(DESTDIR)$(dictdir)/$$f"; \ - done -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(dictdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-dictDATA - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-dictDATA uninstall-info-am - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am \ - install-dictDATA install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ - pdf-am ps ps-am uninstall uninstall-am uninstall-dictDATA \ - uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/dict/Makefile.am b/corpora/en/wordnet/dict/Makefile.am deleted file mode 100644 index d51bde229..000000000 --- a/corpora/en/wordnet/dict/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -dictdir = $(prefix)/dict -dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames diff --git a/corpora/en/wordnet/dict/Makefile.in b/corpora/en/wordnet/dict/Makefile.in deleted file mode 100644 index 823307412..000000000 --- a/corpora/en/wordnet/dict/Makefile.in +++ /dev/null @@ -1,314 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = dict -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(dictdir)" -dictDATA_INSTALL = $(INSTALL_DATA) -DATA = $(dict_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -dictdir = $(prefix)/dict -dict_DATA = adj.exc adv.exc cntlist cntlist.rev data.adj data.adv data.noun data.verb frames.vrb index.adj index.adv index.noun index.sense index.verb log.grind.3.0 noun.exc sentidx.vrb sents.vrb verb.Framestext verb.exc lexnames -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu dict/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu dict/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-dictDATA: $(dict_DATA) - @$(NORMAL_INSTALL) - test -z "$(dictdir)" || $(mkdir_p) "$(DESTDIR)$(dictdir)" - @list='$(dict_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(dictDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(dictdir)/$$f'"; \ - $(dictDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(dictdir)/$$f"; \ - done - -uninstall-dictDATA: - @$(NORMAL_UNINSTALL) - @list='$(dict_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(dictdir)/$$f'"; \ - rm -f "$(DESTDIR)$(dictdir)/$$f"; \ - done -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(dictdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-dictDATA - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-dictDATA uninstall-info-am - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am \ - install-dictDATA install-exec install-exec-am install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs maintainer-clean \ - maintainer-clean-generic mostlyclean mostlyclean-generic pdf \ - pdf-am ps ps-am uninstall uninstall-am uninstall-dictDATA \ - uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/dict/adj.exc b/corpora/en/wordnet/dict/adj.exc deleted file mode 100644 index e05328344..000000000 --- a/corpora/en/wordnet/dict/adj.exc +++ /dev/null @@ -1,1490 +0,0 @@ -acer acer -after after -airier airy -airiest airy -all-arounder all-arounder -angrier angry -angriest angry -archer archer -artier arty -artiest arty -ashier ashy -ashiest ashy -assaulter assaulter -attacker attacker -backer backer -baggier baggy -baggiest baggy -balkier balky -balkiest balky -balmier balmy -balmiest balmy -bandier bandy -bandiest bandy -bargainer bargainer -barmier barmy -barmiest barmy -battier batty -battiest batty -baulkier baulky -baulkiest baulky -bawdier bawdy -bawdiest bawdy -bayer bayer -beadier beady -beadiest beady -beastlier beastly -beastliest beastly -beater beater -beefier beefy -beefiest beefy -beerier beery -beeriest beery -bendier bendy -bendiest bendy -best good -better good well -bigger big -biggest big -bitchier bitchy -bitchiest bitchy -biter biter -bittier bitty -bittiest bitty -blearier bleary -bleariest bleary -bloodier bloody -bloodiest bloody -bloodthirstier bloodthirsty -bloodthirstiest bloodthirsty -blowier blowy -blowiest blowy -blowsier blowsy -blowsiest blowsy -blowzier blowzy -blowziest blowzy -bluer blue -bluest blue -boner boner -bonier bony -boniest bony -bonnier bonny -bonniest bonny -boozier boozy -booziest boozy -boskier bosky -boskiest bosky -bossier bossy -bossiest bossy -botchier botchy -botchiest botchy -bother bother -bouncier bouncy -bounciest bouncy -bounder bounder -bower bower -brainier brainy -brainiest brainy -brashier brashy -brashiest brashy -brassier brassy -brassiest brassy -brawnier brawny -brawniest brawny -breathier breathy -breathiest breathy -breezier breezy -breeziest breezy -brinier briny -briniest briny -britisher britisher -broadcaster broadcaster -brooder brooder -broodier broody -broodiest broody -bubblier bubbly -bubbliest bubbly -buggier buggy -buggiest buggy -bulkier bulky -bulkiest bulky -bumpier bumpy -bumpiest bumpy -bunchier bunchy -bunchiest bunchy -burlier burly -burliest burly -burrier burry -burriest burry -burster burster -bushier bushy -bushiest bushy -busier busy -busiest busy -buster buster -bustier busty -bustiest busty -cagier cagey -cagiest cagey -camper camper -cannier canny -canniest canny -canter canter -cantier canty -cantiest canty -caster caster -catchier catchy -catchiest catchy -cattier catty -cattiest catty -cer cer -chancier chancy -chanciest chancy -charier chary -chariest chary -chattier chatty -chattiest chatty -cheekier cheeky -cheekiest cheeky -cheerier cheery -cheeriest cheery -cheesier cheesy -cheesiest cheesy -chestier chesty -chestiest chesty -chewier chewy -chewiest chewy -chillier chilly -chilliest chilly -chintzier chintzy -chintziest chintzy -chippier chippy -chippiest chippy -choosier choosy -choosiest choosy -choppier choppy -choppiest choppy -chubbier chubby -chubbiest chubby -chuffier chuffy -chuffiest chuffy -chummier chummy -chummiest chummy -chunkier chunky -chunkiest chunky -churchier churchy -churchiest churchy -clammier clammy -clammiest clammy -classier classy -classiest classy -cleanlier cleanly -cleanliest cleanly -clerklier clerkly -clerkliest clerkly -cloudier cloudy -cloudiest cloudy -clubbier clubby -clubbiest clubby -clumsier clumsy -clumsiest clumsy -cockier cocky -cockiest cocky -coder coder -collier colly -colliest colly -comelier comely -comeliest comely -comfier comfy -comfiest comfy -cornier corny -corniest corny -cosier cosy -cosiest cosy -costlier costly -costliest costly -costumer costumer -counterfeiter counterfeiter -courtlier courtly -courtliest courtly -cozier cozy -coziest cozy -crabbier crabby -crabbiest crabby -cracker cracker -craftier crafty -craftiest crafty -craggier craggy -craggiest craggy -crankier cranky -crankiest cranky -crasher crasher -crawlier crawly -crawliest crawly -crazier crazy -craziest crazy -creamer creamer -creamier creamy -creamiest creamy -creepier creepy -creepiest creepy -crispier crispy -crispiest crispy -crumbier crumby -crumbiest crumby -crumblier crumbly -crumbliest crumbly -crummier crummy -crummiest crummy -crustier crusty -crustiest crusty -curlier curly -curliest curly -customer customer -cuter cute -daffier daffy -daffiest daffy -daintier dainty -daintiest dainty -dandier dandy -dandiest dandy -deadlier deadly -deadliest deadly -dealer dealer -deserter deserter -dewier dewy -dewiest dewy -dicier dicey -diciest dicey -dimer dimer -dimmer dim -dimmest dim -dingier dingy -dingiest dingy -dinkier dinky -dinkiest dinky -dippier dippy -dippiest dippy -dirtier dirty -dirtiest dirty -dishier dishy -dishiest dishy -dizzier dizzy -dizziest dizzy -dodgier dodgy -dodgiest dodgy -dopier dopey -dopiest dopey -dottier dotty -dottiest dotty -doughier doughy -doughiest doughy -doughtier doughty -doughtiest doughty -dowdier dowdy -dowdiest dowdy -dowier dowie dowy -dowiest dowie dowy -downer downer -downier downy -downiest downy -dozier dozy -doziest dozy -drabber drab -drabbest drab -draftier drafty -draftiest drafty -draggier draggy -draggiest draggy -draughtier draughty -draughtiest draughty -dreamier dreamy -dreamiest dreamy -drearier dreary -dreariest dreary -dreggier dreggy -dreggiest dreggy -dresser dresser -dressier dressy -dressiest dressy -drier dry -driest dry -drippier drippy -drippiest drippy -drowsier drowsy -drowsiest drowsy -dryer dry -dryest dry -dumpier dumpy -dumpiest dumpy -dunner dun -dunnest dun -duskier dusky -duskiest dusky -dustier dusty -dustiest dusty -earlier early -earliest early -earthier earthy -earthiest earthy -earthlier earthly -earthliest earthly -easier easy -easiest easy -easter easter -eastsider eastsider -edger edger -edgier edgy -edgiest edgy -eerier eerie -eeriest eerie -emptier empty -emptiest empty -faker faker -fancier fancy -fanciest fancy -fatter fat -fattest fat -fattier fatty -fattiest fatty -faultier faulty -faultiest faulty -feistier feisty -feistiest feisty -feller feller -fiddlier fiddly -fiddliest fiddly -filmier filmy -filmiest filmy -filthier filthy -filthiest filthy -finnier finny -finniest finny -first-rater first-rater -first-stringer first-stringer -fishier fishy -fishiest fishy -fitter fit -fittest fit -flabbier flabby -flabbiest flabby -flaggier flaggy -flaggiest flaggy -flakier flaky -flakiest flaky -flasher flasher -flashier flashy -flashiest flashy -flatter flat -flattest flat -flauntier flaunty -flauntiest flaunty -fledgier fledgy -fledgiest fledgy -fleecier fleecy -fleeciest fleecy -fleshier fleshy -fleshiest fleshy -fleshlier fleshly -fleshliest fleshly -flightier flighty -flightiest flighty -flimsier flimsy -flimsiest flimsy -flintier flinty -flintiest flinty -floatier floaty -floatiest floaty -floppier floppy -floppiest floppy -flossier flossy -flossiest flossy -fluffier fluffy -fluffiest fluffy -flukier fluky -flukiest fluky -foamier foamy -foamiest foamy -foggier foggy -foggiest foggy -folder folder -folksier folksy -folksiest folksy -foolhardier foolhardy -foolhardiest foolhardy -fore-and-after fore-and-after -foreigner foreigner -forest forest -founder founder -foxier foxy -foxiest foxy -fratchier fratchy -fratchiest fratchy -freakier freaky -freakiest freaky -freer free -freest free -frenchier frenchy -frenchiest frenchy -friendlier friendly -friendliest friendly -friskier frisky -friskiest frisky -frizzier frizzy -frizziest frizzy -frizzlier frizzly -frizzliest frizzly -frostier frosty -frostiest frosty -frouzier frouzy -frouziest frouzy -frowsier frowsy -frowsiest frowsy -frowzier frowzy -frowziest frowzy -fruitier fruity -fruitiest fruity -funkier funky -funkiest funky -funnier funny -funniest funny -furrier furry -furriest furry -fussier fussy -fussiest fussy -fustier fusty -fustiest fusty -fuzzier fuzzy -fuzziest fuzzy -gabbier gabby -gabbiest gabby -gamier gamy -gamiest gamy -gammier gammy -gammiest gammy -gassier gassy -gassiest gassy -gaudier gaudy -gaudiest gaudy -gauzier gauzy -gauziest gauzy -gawkier gawky -gawkiest gawky -ghastlier ghastly -ghastliest ghastly -ghostlier ghostly -ghostliest ghostly -giddier giddy -giddiest giddy -gladder glad -gladdest glad -glassier glassy -glassiest glassy -glibber glib -glibbest glib -gloomier gloomy -gloomiest gloomy -glossier glossy -glossiest glossy -glummer glum -glummest glum -godlier godly -godliest godly -goer goer -goner goner -goodlier goodly -goodliest goodly -goofier goofy -goofiest goofy -gooier gooey -gooiest gooey -goosier goosy -goosiest goosy -gorier gory -goriest gory -gradelier gradely -gradeliest gradely -grader grader -grainier grainy -grainiest grainy -grassier grassy -grassiest grassy -greasier greasy -greasiest greasy -greedier greedy -greediest greedy -grimmer grim -grimmest grim -grislier grisly -grisliest grisly -grittier gritty -grittiest gritty -grizzlier grizzly -grizzliest grizzly -groggier groggy -groggiest groggy -groovier groovy -grooviest groovy -grottier grotty -grottiest grotty -grounder grounder -grouper grouper -groutier grouty -groutiest grouty -grubbier grubby -grubbiest grubby -grumpier grumpy -grumpiest grumpy -guest guest -guiltier guilty -guiltiest guilty -gummier gummy -gummiest gummy -gushier gushy -gushiest gushy -gustier gusty -gustiest gusty -gutsier gutsy -gutsiest gutsy -hairier hairy -hairiest hairy -halfways halfway -halter halter -hammier hammy -hammiest hammy -handier handy -handiest handy -happier happy -happiest happy -hardier hardy -hardiest hardy -hastier hasty -hastiest hasty -haughtier haughty -haughtiest haughty -hazier hazy -haziest hazy -header header -headier heady -headiest heady -healthier healthy -healthiest healthy -heartier hearty -heartiest hearty -heavier heavy -heaviest heavy -heftier hefty -heftiest hefty -hepper hep -heppest hep -herbier herby -herbiest herby -hinder hind -hipper hip -hippest hip -hippier hippy -hippiest hippy -hoarier hoary -hoariest hoary -holier holy -holiest holy -homelier homely -homeliest homely -homer homer -homier homey -homiest homey -hornier horny -horniest horny -horsier horsy -horsiest horsy -hotter hot -hottest hot -humpier humpy -humpiest humpy -hunger hunger -hungrier hungry -hungriest hungry -huskier husky -huskiest husky -icier icy -iciest icy -inkier inky -inkiest inky -insider insider -interest interest -jaggier jaggy -jaggiest jaggy -jammier jammy -jammiest jammy -jauntier jaunty -jauntiest jaunty -jazzier jazzy -jazziest jazzy -jerkier jerky -jerkiest jerky -jointer jointer -jollier jolly -jolliest jolly -juicier juicy -juiciest juicy -jumpier jumpy -jumpiest jumpy -kindlier kindly -kindliest kindly -kinkier kinky -kinkiest kinky -knottier knotty -knottiest knotty -knurlier knurly -knurliest knurly -kookier kooky -kookiest kooky -lacier lacy -laciest lacy -lairier lairy -lairiest lairy -lakier laky -lakiest laky -lander lander -lankier lanky -lankiest lanky -lathier lathy -lathiest lathy -layer layer -lazier lazy -laziest lazy -leafier leafy -leafiest leafy -leakier leaky -leakiest leaky -learier leary -leariest leary -leer leer -leerier leery -leeriest leery -left-hander left-hander -left-winger left-winger -leggier leggy -leggiest leggy -lengthier lengthy -lengthiest lengthy -ler ler -leveler leveler -limier limy -limiest limy -lippier lippy -lippiest lippy -liter liter -livelier lively -liveliest lively -liver liver -loather loather -loftier lofty -loftiest lofty -logier logy -logiest logy -lonelier lonely -loneliest lonely -loner loner -loonier loony -looniest loony -loopier loopy -loopiest loopy -lordlier lordly -lordliest lordly -lousier lousy -lousiest lousy -lovelier lovely -loveliest lovely -lowlander lowlander -lowlier lowly -lowliest lowly -luckier lucky -luckiest lucky -lumpier lumpy -lumpiest lumpy -lunier luny -luniest luny -lustier lusty -lustiest lusty -madder mad -maddest mad -mainer mainer -maligner maligner -maltier malty -maltiest malty -mangier mangy -mangiest mangy -mankier manky -mankiest manky -manlier manly -manliest manly -mariner mariner -marshier marshy -marshiest marshy -massier massy -massiest massy -matter matter -maungier maungy -maungiest maungy -mazier mazy -maziest mazy -mealier mealy -mealiest mealy -measlier measly -measliest measly -meatier meaty -meatiest meaty -meeter meeter -merrier merry -merriest merry -messier messy -messiest messy -miffier miffy -miffiest miffy -mightier mighty -mightiest mighty -milcher milcher -milker milker -milkier milky -milkiest milky -mingier mingy -mingiest mingy -minter minter -mirkier mirky -mirkiest mirky -miser miser -mistier misty -mistiest misty -mocker mocker -modeler modeler -modest modest -moldier moldy -moldiest moldy -moodier moody -moodiest moody -moonier moony -mooniest moony -mothier mothy -mothiest mothy -mouldier mouldy -mouldiest mouldy -mousier mousy -mousiest mousy -mouthier mouthy -mouthiest mouthy -muckier mucky -muckiest mucky -muddier muddy -muddiest muddy -muggier muggy -muggiest muggy -multiplexer multiplexer -murkier murky -murkiest murky -mushier mushy -mushiest mushy -muskier musky -muskiest musky -muster muster -mustier musty -mustiest musty -muzzier muzzy -muzziest muzzy -nappier nappy -nappiest nappy -nastier nasty -nastiest nasty -nattier natty -nattiest natty -naughtier naughty -naughtiest naughty -needier needy -neediest needy -nervier nervy -nerviest nervy -newsier newsy -newsiest newsy -niftier nifty -niftiest nifty -nippier nippy -nippiest nippy -nittier nitty -nittiest nitty -noisier noisy -noisiest noisy -northeasterner northeasterner -norther norther -northerner northerner -nosier nosy -nosiest nosy -number number -nuttier nutty -nuttiest nutty -offer off -offer offer -oilier oily -oiliest oily -old-timer old-timer -oliver oliver -oozier oozy -ooziest oozy -opener opener -outsider outsider -overcomer overcomer -overnighter overnighter -owner owner -pallier pally -palliest pally -palmier palmy -palmiest palmy -paltrier paltry -paltriest paltry -pappier pappy -pappiest pappy -parkier parky -parkiest parky -part-timer part-timer -passer passer -paster paster -pastier pasty -pastiest pasty -patchier patchy -patchiest patchy -pater pater -pawkier pawky -pawkiest pawky -peachier peachy -peachiest peachy -pearler pearler -pearlier pearly -pearliest pearly -pedaler pedaler -peppier peppy -peppiest peppy -perkier perky -perkiest perky -peskier pesky -peskiest pesky -peter peter -pettier petty -pettiest petty -phonier phony -phoniest phony -pickier picky -pickiest picky -piggier piggy -piggiest piggy -pinier piny -piniest piny -pitchier pitchy -pitchiest pitchy -pithier pithy -pithiest pithy -planer planer -plashier plashy -plashiest plashy -platier platy -platiest platy -player player -pluckier plucky -pluckiest plucky -plumber plumber -plumier plumy -plumiest plumy -plummier plummy -plummiest plummy -podgier podgy -podgiest podgy -pokier poky -pokiest poky -polisher polisher -porkier porky -porkiest porky -porter porter -portlier portly -portliest portly -poster poster -pottier potty -pottiest potty -preachier preachy -preachiest preachy -presenter presenter -pretender pretender -prettier pretty -prettiest pretty -pricier pricy -priciest pricy -pricklier prickly -prickliest prickly -priestlier priestly -priestliest priestly -primer primer -primmer prim -primmest prim -princelier princely -princeliest princely -printer printer -prissier prissy -prissiest prissy -privateer privateer -privier privy -priviest privy -prompter prompter -prosier prosy -prosiest prosy -pudgier pudgy -pudgiest pudgy -puffer puffer -puffier puffy -puffiest puffy -pulpier pulpy -pulpiest pulpy -punchier punchy -punchiest punchy -punier puny -puniest puny -pushier pushy -pushiest pushy -pussier pussy -pussiest pussy -quaggier quaggy -quaggiest quaggy -quakier quaky -quakiest quaky -queasier queasy -queasiest queasy -queenlier queenly -queenliest queenly -racier racy -raciest racy -rainier rainy -rainiest rainy -randier randy -randiest randy -rangier rangy -rangiest rangy -ranker ranker -rattier ratty -rattiest ratty -rattlier rattly -rattliest rattly -raunchier raunchy -raunchiest raunchy -readier ready -readiest ready -recorder recorder -redder red -reddest red -reedier reedy -reediest reedy -renter renter -retailer retailer -right-hander right-hander -right-winger right-winger -rimier rimy -rimiest rimy -riskier risky -riskiest risky -ritzier ritzy -ritziest ritzy -roaster roaster -rockier rocky -rockiest rocky -roilier roily -roiliest roily -rookier rooky -rookiest rooky -roomier roomy -roomiest roomy -ropier ropy -ropiest ropy -rosier rosy -rosiest rosy -rowdier rowdy -rowdiest rowdy -ruddier ruddy -ruddiest ruddy -runnier runny -runniest runny -rusher rusher -rushier rushy -rushiest rushy -rustier rusty -rustiest rusty -ruttier rutty -ruttiest rutty -sadder sad -saddest sad -salter salter -saltier salty -saltiest salty -sampler sampler -sandier sandy -sandiest sandy -sappier sappy -sappiest sappy -sassier sassy -sassiest sassy -saucier saucy -sauciest saucy -savvier savvy -savviest savvy -scabbier scabby -scabbiest scabby -scalier scaly -scaliest scaly -scantier scanty -scantiest scanty -scarier scary -scariest scary -scraggier scraggy -scraggiest scraggy -scragglier scraggly -scraggliest scraggly -scraper scraper -scrappier scrappy -scrappiest scrappy -scrawnier scrawny -scrawniest scrawny -screwier screwy -screwiest screwy -scrubbier scrubby -scrubbiest scrubby -scruffier scruffy -scruffiest scruffy -scungier scungy -scungiest scungy -scurvier scurvy -scurviest scurvy -seamier seamy -seamiest seamy -second-rater second-rater -seconder seconder -seedier seedy -seediest seedy -seemlier seemly -seemliest seemly -serer serer -sexier sexy -sexiest sexy -shabbier shabby -shabbiest shabby -shadier shady -shadiest shady -shaggier shaggy -shaggiest shaggy -shakier shaky -shakiest shaky -shapelier shapely -shapeliest shapely -shier shy -shiest shy -shiftier shifty -shiftiest shifty -shinier shiny -shiniest shiny -shirtier shirty -shirtiest shirty -shoddier shoddy -shoddiest shoddy -showier showy -showiest showy -shrubbier shrubby -shrubbiest shrubby -shyer shy -shyest shy -sicklier sickly -sickliest sickly -sightlier sightly -sightliest sightly -signaler signaler -signer signer -silkier silky -silkiest silky -sillier silly -silliest silly -sketchier sketchy -sketchiest sketchy -skewer skewer -skimpier skimpy -skimpiest skimpy -skinnier skinny -skinniest skinny -slaphappier slaphappy -slaphappiest slaphappy -slatier slaty -slatiest slaty -slaver slaver -sleazier sleazy -sleaziest sleazy -sleepier sleepy -sleepiest sleepy -slier sly -sliest sly -slimier slimy -slimiest slimy -slimmer slim -slimmest slim -slimsier slimsy -slimsiest slimsy -slinkier slinky -slinkiest slinky -slippier slippy -slippiest slippy -sloppier sloppy -sloppiest sloppy -slyer sly -slyest sly -smarmier smarmy -smarmiest smarmy -smellier smelly -smelliest smelly -smokier smoky -smokiest smoky -smugger smug -smuggest smug -snakier snaky -snakiest snaky -snappier snappy -snappiest snappy -snatchier snatchy -snatchiest snatchy -snazzier snazzy -snazziest snazzy -sneaker sneaker -sniffier sniffy -sniffiest sniffy -snootier snooty -snootiest snooty -snottier snotty -snottiest snotty -snowier snowy -snowiest snowy -snuffer snuffer -snuffier snuffy -snuffiest snuffy -snugger snug -snuggest snug -soapier soapy -soapiest soapy -soggier soggy -soggiest soggy -solder solder -sonsier sonsy -sonsiest sonsy -sootier sooty -sootiest sooty -soppier soppy -soppiest soppy -sorrier sorry -sorriest sorry -soupier soupy -soupiest soupy -souther souther -southerner southerner -speedier speedy -speediest speedy -spicier spicy -spiciest spicy -spiffier spiffy -spiffiest spiffy -spikier spiky -spikiest spiky -spindlier spindly -spindliest spindly -spinier spiny -spiniest spiny -splashier splashy -splashiest splashy -spongier spongy -spongiest spongy -spookier spooky -spookiest spooky -spoonier spoony -spooniest spoony -sportier sporty -sportiest sporty -spottier spotty -spottiest spotty -spreader spreader -sprier spry -spriest spry -sprightlier sprightly -sprightliest sprightly -springer springer -springier springy -springiest springy -squashier squashy -squashiest squashy -squatter squat -squattest squat -squattier squatty -squattiest squatty -squiffier squiffy -squiffiest squiffy -stagier stagy -stagiest stagy -stalkier stalky -stalkiest stalky -stapler stapler -starchier starchy -starchiest starchy -starer starer -starest starest -starrier starry -starriest starry -statelier stately -stateliest stately -steadier steady -steadiest steady -stealthier stealthy -stealthiest stealthy -steamier steamy -steamiest steamy -stingier stingy -stingiest stingy -stiper striper -stocker stocker -stockier stocky -stockiest stocky -stodgier stodgy -stodgiest stodgy -stonier stony -stoniest stony -stormier stormy -stormiest stormy -streakier streaky -streakiest streaky -streamier streamy -streamiest streamy -stretcher stretcher -stretchier stretchy -stretchiest stretchy -stringier stringy -stringiest stringy -stripier stripy -stripiest stripy -stronger strong -strongest strong -stroppier stroppy -stroppiest stroppy -stuffier stuffy -stuffiest stuffy -stumpier stumpy -stumpiest stumpy -sturdier sturdy -sturdiest sturdy -submariner submariner -sulkier sulky -sulkiest sulky -sultrier sultry -sultriest sultry -sunnier sunny -sunniest sunny -surlier surly -surliest surly -swagger swagger -swankier swanky -swankiest swanky -swarthier swarthy -swarthiest swarthy -sweatier sweaty -sweatiest sweaty -tackier tacky -tackiest tacky -talkier talky -talkiest talky -tangier tangy -tangiest tangy -tanner tan -tannest tan -tardier tardy -tardiest tardy -tastier tasty -tastiest tasty -tattier tatty -tattiest tatty -tawdrier tawdry -tawdriest tawdry -techier techy -techiest techy -teenager teenager -teenier teeny -teeniest teeny -teetotaler teetotaler -tester tester -testier testy -testiest testy -tetchier tetchy -tetchiest tetchy -thinner thin -thinnest thin -third-rater third-rater -thirstier thirsty -thirstiest thirsty -thornier thorny -thorniest thorny -threadier thready -threadiest thready -thriftier thrifty -thriftiest thrifty -throatier throaty -throatiest throaty -tidier tidy -tidiest tidy -timelier timely -timeliest timely -tinier tiny -tiniest tiny -tinnier tinny -tinniest tinny -tipsier tipsy -tipsiest tipsy -tonier tony -toniest tony -toothier toothy -toothiest toothy -toper toper -touchier touchy -touchiest touchy -trader trader -trashier trashy -trashiest trashy -trendier trendy -trendiest trendy -trickier tricky -trickiest tricky -tricksier tricksy -tricksiest tricksy -trimer trimer -trimmer trim -trimmest trim -truer true -truest true -trustier trusty -trustiest trusty -tubbier tubby -tubbiest tubby -turfier turfy -turfiest turfy -tweedier tweedy -tweediest tweedy -twiggier twiggy -twiggiest twiggy -uglier ugly -ugliest ugly -unfriendlier unfriendly -unfriendliest unfriendly -ungainlier ungainly -ungainliest ungainly -ungodlier ungodly -ungodliest ungodly -unhappier unhappy -unhappiest unhappy -unhealthier unhealthy -unhealthiest unhealthy -unholier unholy -unholiest unholy -unrulier unruly -unruliest unruly -untidier untidy -untidiest untidy -vastier vasty -vastiest vasty -vest vest -viewier viewy -viewiest viewy -wackier wacky -wackiest wacky -wanner wan -wannest wan -warier wary -wariest wary -washier washy -washiest washy -waster waster -wavier wavy -waviest wavy -waxier waxy -waxiest waxy -weaklier weakly -weakliest weakly -wealthier wealthy -wealthiest wealthy -wearier weary -weariest weary -webbier webby -webbiest webby -weedier weedy -weediest weedy -weenier weeny -weeniest weeny -weensier weensy -weensiest weensy -weepier weepy -weepiest weepy -weightier weighty -weightiest weighty -welsher welsher -wetter wet -wettest wet -whackier whacky -whackiest whacky -whimsier whimsy -whimsiest whimsy -wholesaler wholesaler -wieldier wieldy -wieldiest wieldy -wilier wily -wiliest wily -windier windy -windiest windy -winier winy -winiest winy -winterier wintery -winteriest wintery -wintrier wintry -wintriest wintry -wirier wiry -wiriest wiry -wispier wispy -wispiest wispy -wittier witty -wittiest witty -wonkier wonky -wonkiest wonky -woodier woody -woodiest woody -woodsier woodsy -woodsiest woodsy -woollier woolly -woolliest woolly -woozier woozy -wooziest woozy -wordier wordy -wordiest wordy -worldlier worldly -worldliest worldly -wormier wormy -wormiest wormy -worse bad -worst bad -worthier worthy -worthiest worthy -wrier wry -wriest wry -wryer wry -wryest wry -yarer yare -yarest yare -yeastier yeasty -yeastiest yeasty -younger young -youngest young -yummier yummy -yummiest yummy -zanier zany -zaniest zany -zippier zippy -zippiest zippy diff --git a/corpora/en/wordnet/dict/adv.exc b/corpora/en/wordnet/dict/adv.exc deleted file mode 100644 index 5ddf0851d..000000000 --- a/corpora/en/wordnet/dict/adv.exc +++ /dev/null @@ -1,7 +0,0 @@ -best well -better well -deeper deeply -farther far -further far -harder hard -hardest hard diff --git a/corpora/en/wordnet/dict/cntlist b/corpora/en/wordnet/dict/cntlist deleted file mode 100644 index a8843cf2d..000000000 --- a/corpora/en/wordnet/dict/cntlist +++ /dev/null @@ -1,37387 +0,0 @@ -10742 be%2:42:03:: 1 -6833 person%1:03:00:: 1 -3019 be%2:42:06:: 2 -1861 say%2:32:00:: 1 -1837 not%4:02:00:: 1 -1345 group%1:03:00:: 1 -1202 have%2:40:00:: 1 -1007 n't%4:02:00:: 1 -992 location%1:03:00:: 1 -901 be%2:42:05:: 3 -749 man%1:18:00:: 1 -701 be%2:42:00:: 4 -698 be%2:42:04:: 5 -613 see%2:39:00:: 1 -607 seem%2:39:00:: 1 -603 use%2:34:01:: 1 -585 know%2:31:01:: 1 -526 do%2:41:01:: 1 -508 two%5:00:00:cardinal:00 1 -508 make%2:41:00:: 1 -483 other%3:00:00:: 1 -459 make%2:30:00:: 2 -426 year%1:28:01:: 1 -422 one%5:00:00:cardinal:00 1 -411 also%4:02:00:: 1 -401 such%5:00:01:specified:00 1 -394 even%4:02:00:: 1 -389 want%2:37:00:: 1 -377 have%2:42:00:: 2 -375 begin%2:30:00:: 1 -374 more%4:02:00:: 1 -347 many%3:00:00:: 1 -346 man%1:18:03:: 2 -343 go%2:38:00:: 1 -342 try%2:41:00:: 1 -333 then%4:02:00:: 1 -327 become%2:30:00:: 1 -323 youth%1:18:00:: 1 -322 so%4:02:02:: 1 -310 new%3:00:00:: 1 -283 now%4:02:05:: 1 -276 come%2:38:00:: 1 -275 hear%2:39:00:: 1 -274 think%2:31:01:: 1 -274 look%2:39:00:: 1 -270 provide%2:40:00:: 1 -270 be%2:42:07:: 6 -263 eye%1:08:00:: 1 -260 very%4:02:00:: 1 -259 own%5:00:00:personal:00 1 -258 only%4:02:02:: 1 -257 people%1:14:00:: 1 -255 never%4:02:00:: 1 -254 say%2:32:01:: 2 -249 again%4:02:00:: 1 -247 all%3:00:00:: 1 -244 ask%2:32:00:: 1 -243 make%2:36:00:: 3 -235 get%2:40:00:: 1 -235 come%2:38:04:: 2 -234 include%2:42:00:: 1 -233 still%4:02:01:: 1 -232 first%3:00:00:: 1 -226 only%4:02:01:: 2 -221 three%5:00:00:cardinal:00 1 -220 have%2:39:06:: 3 -220 become%2:42:01:: 2 -219 time%1:11:00:: 1 -219 let%2:41:00:: 1 -215 hand%1:08:00:: 1 -213 small%3:00:00:: 1 -208 head%1:08:00:: 1 -206 keep%2:42:00:: 1 -204 expect%2:31:00:: 1 -196 tell%2:32:04:: 1 -196 always%4:02:00:: 1 -193 face%1:08:00:: 1 -190 good%3:00:01:: 1 -189 tell%2:32:00:: 2 -189 be%2:42:02:: 7 -188 think%2:31:03:: 2 -187 turn%2:38:00:: 1 -187 here%4:02:00:: 1 -184 walk%2:38:00:: 1 -183 way%1:07:01:: 1 -183 help%2:41:00:: 1 -182 now%4:02:00:: 2 -181 there%4:02:00:: 1 -181 feel%2:37:00:: 1 -180 too%4:02:00:: 1 -180 most%4:02:00:: 1 -180 however%4:02:00:: 1 -179 give%2:40:03:: 1 -175 almost%4:02:00:: 1 -173 do%2:36:01:: 2 -169 stand%2:35:00:: 1 -169 friend%1:18:00:: 1 -169 day%1:28:00:: 1 -166 soldier%1:18:00:: 1 -165 ask%2:32:01:: 2 -163 night%1:28:00:: 1 -163 little%3:00:01:: 1 -162 just%4:02:00:: 1 -160 time%1:28:05:: 2 -160 give%2:40:05:: 2 -159 start%2:30:00:: 1 -159 see%2:31:01:: 2 -159 find%2:40:02:: 1 -157 house%1:06:00:: 1 -157 get%2:30:00:: 2 -153 often%4:02:00:: 1 -151 problem%1:26:00:: 1 -151 idea%1:09:00:: 1 -150 feel%2:31:00:: 2 -149 happen%2:30:00:: 1 -148 child%1:18:00:: 1 -147 come%2:30:01:: 3 -146 leave%2:38:01:: 1 -146 important%3:00:00:: 1 -146 continue%2:42:01:: 1 -146 area%1:15:01:: 1 -145 regiment%1:14:00:: 1 -144 require%2:42:00:: 1 -144 boy%1:18:00:: 1 -143 woman%1:18:00:: 1 -143 have%2:40:04:: 4 -142 know%2:31:03:: 2 -141 nothing%1:23:00:: 1 -141 find%2:39:02:: 2 -141 die%2:30:00:: 1 -140 see%2:39:02:: 3 -139 large%3:00:00:: 1 -138 put%2:35:00:: 1 -138 pay%2:40:00:: 1 -138 have%2:42:05:: 5 -138 a_few%5:00:00:few:00 1 -137 much%3:00:00:: 1 -136 water%1:27:00:: 1 -136 type%1:09:00:: 1 -136 show%2:39:02:: 1 -136 possible%3:00:00:: 1 -135 place%2:35:00:: 1 -135 no%3:00:00:: 1 -134 sit%2:35:00:: 1 -134 more%3:00:01:: 1 -134 high%3:00:02:: 1 -134 do%2:41:04:: 3 -131 number%1:07:00:: 1 -131 certain%5:00:00:definite:00 1 -130 some%3:00:00:: 1 -130 four%5:00:00:cardinal:00 1 -129 same%3:00:02:: 1 -129 one%5:00:00:unspecified:00 2 -129 live%2:42:08:: 1 -128 remain%2:30:00:: 1 -126 look%2:39:01:: 2 -126 kind%1:09:00:: 1 -125 school%1:14:00:: 1 -123 perhaps%4:02:00:: 1 -123 of_course%4:02:00:: 1 -123 lose%2:40:02:: 1 -123 know%2:31:02:: 3 -123 decide%2:31:00:: 1 -123 build%2:36:00:: 1 -122 receive%2:40:00:: 1 -122 bring%2:38:00:: 1 -121 appear%2:39:00:: 1 -120 wife%1:18:00:: 1 -120 mind%1:09:00:: 1 -118 only%5:00:00:single(a):00 1 -118 long%3:00:02:: 1 -118 believe%2:31:00:: 1 -117 word%1:10:00:: 1 -117 too%4:02:01:: 2 -117 then%4:02:02:: 2 -117 american%3:01:01:: 1 -116 room%1:06:00:: 1 -116 obtain%2:40:00:: 1 -116 add%2:30:00:: 1 -115 read%2:31:00:: 1 -114 time%1:28:00:: 3 -114 great%5:00:01:large:00 1 -113 part%1:24:00:: 1 -113 body%1:08:00:: 1 -112 write%2:36:00:: 1 -112 several%5:00:00:some(a):00 3 -112 probably%4:02:00:: 1 -112 fight%2:33:00:: 1 -111 think%2:31:00:: 3 -111 return%2:38:00:: 1 -111 contain%2:42:00:: 1 -110 understand%2:31:00:: 1 -110 need%2:42:00:: 1 -110 move%2:38:03:: 1 -110 cause%2:36:00:: 1 -109 whole%3:00:00:: 1 -109 last%5:00:00:past:00 1 -109 explain%2:32:00:: 1 -108 talk%2:32:01:: 1 -108 state%1:15:01:: 1 -108 second%5:00:00:ordinal:00 1 -108 old%3:00:02:: 1 -107 young%3:00:00:: 1 -107 tree%1:20:00:: 1 -107 later%4:02:01:: 1 -107 ever%4:02:04:: 1 -107 determine%2:32:00:: 1 -107 consider%2:31:00:: 1 -107 big%3:00:01:: 1 -107 already%4:02:00:: 1 -107 1%5:00:00:cardinal:00 1 -106 run%2:38:00:: 1 -106 remember%2:31:00:: 1 -106 program%1:09:00:: 1 -105 long%3:00:01:: 2 -104 arm%1:08:00:: 1 -103 week%1:28:00:: 1 -103 reach%2:38:01:: 1 -103 kill%2:35:00:: 1 -103 horse%1:05:00:: 1 -103 five%5:00:00:cardinal:00 1 -103 city%1:15:00:: 1 -103 century%1:28:00:: 1 -102 reduce%2:30:00:: 1 -102 information%1:10:00:: 1 -102 buy%2:40:00:: 1 -102 appear%2:30:00:: 2 -101 enough%4:02:00:: 1 -101 effect%1:19:00:: 1 -100 wait%2:42:00:: 1 -100 mother%1:18:00:: 1 -100 government%1:14:00:: 1 -100 exist%2:42:00:: 1 -100 achieve%2:41:00:: 1 -99 sometimes%4:02:01:: 1 -98 spend%2:42:00:: 1 -98 put%2:35:05:: 2 -98 once%4:02:00:: 1 -98 need%2:34:00:: 2 -98 down%4:02:00:: 1 -98 door%1:06:00:: 1 -96 usually%4:02:00:: 1 -96 give%2:40:00:: 3 -96 form%1:10:00:: 1 -96 2%5:00:00:cardinal:00 1 -95 old%3:00:01:: 2 -95 offer%2:40:02:: 1 -95 much%4:02:00:: 1 -95 method%1:09:00:: 1 -95 just%4:02:05:: 2 -95 go%2:41:00:: 2 -94 write%2:32:00:: 2 -94 road%1:06:00:: 1 -94 period%1:28:00:: 1 -94 name%1:10:00:: 1 -94 create%2:36:00:: 1 -94 best%3:00:00:: 1 -94 action%1:04:02:: 1 -93 mean%2:32:01:: 1 -92 take%2:41:04:: 1 -92 hour%1:28:00:: 1 -91 temperature%1:07:00:: 1 -91 side%1:15:02:: 1 -91 here%4:02:02:: 2 -91 call%2:32:02:: 1 -91 back%4:02:04:: 1 -91 available%3:00:00:: 1 -90 work%1:04:00:: 1 -90 use%1:04:00:: 1 -90 thus%4:02:00:: 1 -90 surface%1:06:00:: 1 -90 study%1:04:00:: 1 -90 next%5:00:00:succeeding(a):00 3 -90 learn%2:31:00:: 1 -90 god%1:18:00:: 1 -89 mean%2:42:00:: 2 -89 great%5:00:00:high:02 2 -89 foot%1:08:01:: 1 -88 therefore%4:02:00:: 1 -88 society%1:14:00:: 1 -88 lie%2:42:00:: 1 -88 different%3:00:00:: 1 -87 then%4:02:01:: 3 -87 man%1:18:04:: 3 -87 general%3:00:00:: 1 -86 teach%2:32:00:: 1 -86 street%1:06:00:: 1 -86 speak%2:32:00:: 1 -86 remove%2:30:00:: 1 -86 officer%1:18:03:: 1 -86 morning%1:28:00:: 1 -86 moment%1:28:00:: 1 -86 increase%2:30:00:: 1 -86 ground%1:17:00:: 1 -86 find%2:40:00:: 3 -86 be%2:41:00:: 8 -85 make%2:32:00:: 4 -85 fact%1:09:01:: 1 -85 enter%2:38:00:: 1 -84 seem%2:39:01:: 2 -84 effort%1:04:00:: 1 -84 attend%2:42:00:: 1 -83 wear%2:29:00:: 1 -83 true%3:00:00:: 1 -83 result%1:19:00:: 1 -83 minute%1:28:00:: 1 -82 wall%1:06:00:: 1 -82 stare%2:39:00:: 1 -82 get%2:30:02:: 3 -82 ago%4:02:00:: 1 -81 social%3:01:00:: 1 -81 question%1:10:00:: 1 -81 occur%2:30:00:: 1 -81 necessary%3:00:00:: 1 -81 foot%1:23:00:: 2 -81 at_all%4:02:00:: 1 -80 same%3:00:00:: 2 -80 girl%1:18:00:: 1 -80 few%3:00:00:: 1 -80 choose%2:31:00:: 1 -80 a_little%4:02:00:: 1 -79 up%4:02:00:: 1 -79 so%4:02:06:: 2 -79 smile%2:29:00:: 1 -79 send%2:38:01:: 1 -79 hold%2:42:00:: 1 -79 early%3:00:00:: 1 -78 war%1:04:00:: 1 -78 voice%1:07:00:: 1 -78 slowly%4:02:02:: 1 -78 make%2:36:08:: 5 -78 give%2:40:07:: 4 -77 watch%2:39:00:: 1 -77 six%5:00:00:cardinal:00 1 -77 place%1:15:00:: 1 -77 normal%3:00:01:: 1 -77 money%1:21:00:: 1 -77 describe%2:32:00:: 1 -77 3%5:00:00:cardinal:00 1 -76 work%1:06:00:: 2 -76 well%4:02:00:: 1 -76 reason%1:16:00:: 1 -76 most%3:00:02:: 1 -76 like%2:37:01:: 1 -76 know%2:31:00:: 4 -76 job%1:04:00:: 1 -76 data%1:14:00:: 1 -76 and_then%4:02:00:: 1 -75 tell%2:32:01:: 3 -75 rifle%1:06:00:: 1 -75 purpose%1:09:00:: 1 -75 man%1:14:00:: 4 -75 leg%1:08:01:: 1 -75 join%2:41:00:: 1 -75 cost%1:21:00:: 1 -75 base%2:31:00:: 1 -75 age%1:07:00:: 1 -74 work%2:41:02:: 1 -74 take%2:40:06:: 2 -74 single%3:00:00:: 1 -74 follow%2:38:00:: 1 -74 announce%2:32:00:: 1 -73 third%5:00:00:ordinal:00 1 -73 tall%3:00:00:: 1 -73 take%2:38:09:: 3 -73 study%2:31:02:: 1 -73 state%2:32:00:: 1 -73 so%4:02:05:: 3 -73 sell%2:40:00:: 1 -73 patient%1:18:00:: 1 -73 moment%1:28:01:: 2 -73 merely%4:02:00:: 1 -73 material%1:27:00:: 1 -73 like%2:37:05:: 2 -73 fear%1:12:00:: 1 -73 doctor%1:18:00:: 1 -73 difference%1:07:00:: 1 -73 battle%1:04:00:: 1 -72 window%1:06:00:: 1 -72 thing%1:26:00:: 1 -72 more_than%4:02:00:: 1 -72 gun%1:06:00:: 1 -72 father%1:18:00:: 1 -72 dead%3:00:01:: 1 -72 condition%1:26:00:: 1 -72 case%1:11:00:: 1 -72 carry%2:35:02:: 1 -72 believe%2:31:04:: 2 -71 win%2:33:00:: 1 -71 united_states%1:15:00:: 1 -71 training%1:04:00:: 1 -71 ten%5:00:00:cardinal:00 1 -71 not_only%4:02:00:: 1 -71 little%3:00:03:: 2 -71 cell%1:06:03:: 1 -71 car%1:06:00:: 1 -70 wage%1:21:00:: 1 -70 thought%1:09:01:: 1 -70 size%1:07:00:: 1 -70 play%2:33:00:: 1 -70 month%1:28:01:: 1 -70 grow%2:30:03:: 1 -70 day%1:28:03:: 2 -70 away%4:02:00:: 1 -70 able%3:00:00:: 1 -69 voice%1:10:00:: 2 -69 today%1:28:00:: 1 -69 produce%2:36:02:: 1 -69 level%1:07:00:: 1 -69 better%3:00:00:: 1 -69 10%5:00:00:cardinal:00 1 -68 rate%1:28:00:: 1 -68 less%4:02:00:: 1 -68 indicate%2:32:01:: 1 -68 husband%1:18:00:: 1 -68 country%1:14:00:: 1 -68 before%4:02:03:: 1 -68 assume%2:31:00:: 1 -68 add%2:32:01:: 2 -67 town%1:15:00:: 1 -67 student%1:18:00:: 1 -67 stress%1:10:01:: 1 -67 opportunity%1:26:00:: 1 -67 more%3:00:02:: 2 -67 member%1:18:00:: 1 -67 go_to%2:38:00:: 1 -67 election%1:04:01:: 1 -67 complete%3:00:00:: 1 -67 community%1:14:00:: 1 -67 animal%1:03:00:: 1 -66 some%5:00:00:unspecified:00 2 -66 situation%1:26:00:: 1 -66 open%2:35:00:: 1 -66 life%1:26:01:: 1 -66 indeed%4:02:03:: 1 -66 improve%2:30:01:: 1 -66 imagine%2:36:00:: 1 -66 feel%2:39:00:: 3 -66 family%1:14:02:: 1 -66 fail%2:41:02:: 1 -66 especially%4:02:00:: 1 -66 enemy%1:14:00:: 1 -66 anode%1:06:00:: 1 -65 value%1:09:00:: 1 -65 sort%1:09:00:: 1 -65 smoke%1:19:00:: 1 -65 shoulder%1:08:00:: 1 -65 religious%3:01:00:: 1 -65 region%1:15:00:: 1 -65 pressure%1:19:00:: 1 -65 letter%1:10:00:: 1 -65 indicate%2:32:03:: 2 -65 hold%2:35:00:: 2 -65 figure%1:10:00:: 1 -65 economic%3:01:01:: 1 -65 child%1:18:01:: 2 -65 attitude%1:09:00:: 1 -65 allow%2:41:00:: 1 -64 watch%2:41:00:: 2 -64 suddenly%4:02:02:: 1 -64 report%2:32:00:: 1 -64 percent%1:24:00:: 1 -64 list%1:10:00:: 1 -64 laugh%2:29:00:: 1 -64 have%2:30:00:: 6 -64 get%2:30:03:: 4 -64 each%5:00:00:all(a):00 1 -64 care%2:37:02:: 1 -64 admit%2:32:00:: 1 -63 show%2:31:00:: 2 -63 religion%1:09:00:: 1 -63 process%1:04:00:: 1 -63 plant%1:06:01:: 1 -63 plan%1:09:00:: 1 -63 number%1:23:00:: 2 -63 most%4:02:01:: 2 -63 leave%2:31:05:: 2 -63 for_example%4:02:00:: 1 -63 difficult%3:00:00:: 1 -63 answer%2:32:00:: 1 -62 work%2:41:00:: 2 -62 prevent%2:41:01:: 1 -62 power%1:07:00:: 1 -62 office%1:06:00:: 1 -62 mention%2:32:02:: 1 -62 interest%1:09:00:: 1 -62 hold%2:36:00:: 3 -62 grow%2:30:00:: 2 -62 form%1:09:01:: 2 -62 event%1:03:00:: 1 -62 easy%3:00:01:: 1 -62 agree%2:32:00:: 1 -61 white%3:00:01:: 1 -61 way%1:04:01:: 2 -61 similar%3:00:00:: 1 -61 really%4:02:03:: 1 -61 particularly%4:02:00:: 1 -61 increase%2:30:02:: 2 -61 forget%2:31:01:: 1 -61 first%5:00:00:ordinal:00 2 -61 fill%2:30:01:: 1 -61 far%4:02:02:: 1 -61 eat%2:34:00:: 1 -61 course%1:04:01:: 1 -61 blood%1:08:00:: 1 -61 army%1:14:00:: 1 -60 world%1:14:00:: 1 -60 tell%2:32:02:: 4 -60 soon%4:02:00:: 1 -60 present%3:00:01:: 1 -60 literature%1:10:00:: 1 -60 listen%2:39:00:: 1 -60 hope%2:37:01:: 1 -60 hear%2:31:00:: 2 -60 company%1:14:01:: 1 -60 church%1:14:00:: 1 -60 audience%1:14:00:: 1 -60 at_least%4:02:01:: 1 -59 tend%2:42:01:: 1 -59 rather%4:02:02:: 1 -59 look_like%2:42:00:: 1 -59 insist%2:32:00:: 1 -59 home%4:02:01:: 1 -59 hair%1:08:00:: 1 -59 express%2:32:01:: 1 -59 experiment%1:04:00:: 1 -59 consist_of%2:42:00:: 1 -59 church%1:06:00:: 2 -58 wonder%2:31:00:: 1 -58 technique%1:09:00:: 1 -58 summer%1:28:00:: 1 -58 strong%3:00:00:: 1 -58 statement%1:10:00:: 1 -58 sleep%2:29:00:: 1 -58 select%2:31:00:: 1 -58 see%2:36:00:: 4 -58 ready%3:00:00:: 1 -58 prove%2:42:00:: 1 -58 likely%3:00:00:: 1 -58 lie%2:35:00:: 2 -58 get%2:38:00:: 5 -58 first%4:02:00:: 1 -58 do%2:42:00:: 4 -58 cut%2:35:00:: 1 -58 be%2:42:08:: 9 -57 suggest%2:32:00:: 1 -57 stop%2:38:00:: 1 -57 show%2:32:00:: 3 -57 quite%4:02:02:: 1 -57 move%2:38:01:: 2 -57 modern%3:00:00:: 1 -57 maybe%4:02:00:: 1 -57 lip%1:08:00:: 1 -57 girl%1:18:02:: 2 -57 find%2:32:00:: 4 -57 find%2:31:10:: 5 -57 every%5:00:00:all(a):00 2 -57 employee%1:18:00:: 1 -57 compare%2:31:00:: 1 -57 change%2:30:01:: 1 -57 begin%2:42:00:: 2 -57 at_least%4:02:00:: 2 -56 stop%2:42:00:: 2 -56 simple%3:00:02:: 1 -56 shelter%1:06:00:: 1 -56 push%2:38:00:: 1 -56 price%1:07:00:: 1 -56 need%1:26:00:: 1 -56 leave%2:42:02:: 3 -56 involve%2:42:01:: 1 -56 industry%1:14:00:: 1 -56 face%2:32:00:: 1 -56 drive%2:38:01:: 1 -56 concern%2:42:00:: 1 -56 center%1:15:01:: 1 -56 attention%1:09:00:: 1 -55 words%1:10:03:: 1 -55 thus%4:02:01:: 2 -55 serve%2:42:03:: 1 -55 river%1:17:00:: 1 -55 permit%2:32:00:: 1 -55 low%3:00:02:: 1 -55 jew%1:18:00:: 1 -55 home%1:15:04:: 1 -55 comrade%1:18:00:: 1 -55 clear%3:00:00:: 1 -55 certainly%4:02:00:: 1 -55 bring%2:35:04:: 2 -55 about%4:02:00:: 1 -54 take_place%2:30:00:: 1 -54 real%3:00:00:: 1 -54 much%1:23:00:: 1 -54 life%1:09:00:: 2 -54 evidence%1:09:00:: 1 -54 distance%1:07:00:: 1 -54 discuss%2:32:01:: 1 -54 day%1:28:01:: 3 -54 change%2:30:00:: 2 -53 throw%2:35:00:: 1 -53 think_of%2:31:00:: 1 -53 text%1:10:00:: 1 -53 stand%2:42:04:: 2 -53 speak%2:32:01:: 2 -53 ride%2:38:01:: 1 -53 reply%2:32:00:: 1 -53 remember%2:31:01:: 2 -53 rather%4:02:04:: 2 -53 one%5:00:01:single(a):00 8 -53 nearly%4:02:00:: 1 -53 learn%2:31:01:: 2 -53 kid%1:18:00:: 1 -53 forward%4:02:00:: 1 -53 finger%1:08:00:: 1 -53 end%2:42:00:: 1 -53 encourage%2:41:00:: 1 -53 back%1:08:00:: 1 -52 value%1:07:00:: 2 -52 thing%1:04:00:: 2 -52 table%1:14:00:: 1 -52 report%2:32:04:: 2 -52 product%1:06:01:: 1 -52 move%2:38:00:: 3 -52 more%1:23:00:: 1 -52 make%2:36:01:: 6 -52 latter%3:00:00:: 1 -52 larger%5:00:00:large:00 1 -52 just%4:02:01:: 3 -52 jewish%3:01:01:: 1 -52 in_fact%4:02:00:: 1 -52 family%1:14:00:: 2 -52 experience%1:09:01:: 1 -52 enjoy%2:37:00:: 1 -52 dictionary%1:10:00:: 1 -52 development%1:04:01:: 1 -52 describe%2:32:01:: 2 -52 complete%2:30:02:: 1 -52 black%3:00:01:: 1 -52 be_born%2:30:00:: 1 -52 arrive%2:38:00:: 1 -52 apparently%4:02:00:: 1 -52 5%5:00:00:cardinal:00 1 -51 sure%3:00:00:: 1 -51 still%4:02:04:: 2 -51 site%1:15:00:: 1 -51 point%1:09:00:: 1 -51 object%1:03:00:: 1 -51 music%1:10:00:: 1 -51 live%2:42:06:: 2 -51 line%1:14:03:: 1 -51 knee%1:08:00:: 1 -51 individual%1:03:00:: 1 -51 high%3:00:01:: 2 -51 existence%1:26:00:: 1 -51 earth%1:17:00:: 1 -51 dominant%3:00:01:: 1 -51 consider%2:39:00:: 2 -51 call%2:32:00:: 2 -51 bed%1:06:00:: 1 -51 bad%3:00:00:: 1 -51 another%5:00:00:other:00 1 -51 afternoon%1:28:00:: 1 -51 4%5:00:00:cardinal:00 1 -50 take%2:35:00:: 4 -50 somewhat%4:02:01:: 1 -50 report%1:10:03:: 1 -50 recommend%2:32:01:: 1 -50 question%1:10:01:: 2 -50 public%3:00:00:: 1 -50 means%1:04:00:: 1 -50 loud%3:00:00:: 1 -50 look_for%2:35:00:: 1 -50 law%1:14:00:: 1 -50 in_addition%4:02:00:: 1 -50 importance%1:07:00:: 1 -50 hot%3:00:01:: 1 -50 hate%2:37:00:: 1 -50 follow%2:42:00:: 2 -50 file%2:32:02:: 1 -50 establish%2:41:00:: 1 -50 enough%5:00:00:sufficient:00 1 -50 emotion%1:12:00:: 1 -50 attempt%2:41:00:: 1 -49 world%1:17:01:: 2 -49 wait%2:42:01:: 2 -49 vocational%3:01:00:: 1 -49 trial%1:04:01:: 1 -49 theory%1:09:00:: 1 -49 sky%1:17:00:: 1 -49 ship%1:06:00:: 1 -49 mile%1:23:01:: 1 -49 meet%2:38:01:: 1 -49 manner%1:07:02:: 1 -49 increase%1:23:00:: 1 -49 inch%1:23:00:: 1 -49 history%1:28:00:: 1 -49 go%2:38:01:: 3 -49 field%1:15:00:: 1 -49 feeling%1:03:00:: 1 -49 farm%1:06:00:: 1 -49 dark%3:00:01:: 1 -49 attempt%1:04:00:: 1 -49 art%1:06:00:: 1 -49 allow%2:32:00:: 2 -49 all_of%3:00:00:: 1 -48 wish%2:37:00:: 1 -48 son%1:18:00:: 1 -48 sample%1:09:00:: 1 -48 realize%2:31:01:: 1 -48 out%4:02:00:: 1 -48 no_longer%4:02:00:: 1 -48 mouth%1:08:01:: 1 -48 meaning%1:10:00:: 1 -48 language%1:10:00:: 1 -48 home%1:06:00:: 2 -48 force%2:41:00:: 1 -48 figure%1:08:00:: 2 -48 fellow%1:18:00:: 1 -48 experience%1:09:00:: 2 -48 equipment%1:06:00:: 1 -48 color%1:07:00:: 1 -48 building%1:06:00:: 1 -48 blue%5:00:00:chromatic:00 1 -47 see%2:31:00:: 5 -47 refuse%2:32:00:: 1 -47 recall%2:31:00:: 1 -47 quite%4:02:01:: 2 -47 own%2:40:00:: 1 -47 local%3:00:01:: 1 -47 information%1:09:00:: 2 -47 feed%2:34:04:: 1 -47 demand%2:32:00:: 1 -47 cross%2:38:00:: 1 -47 any%5:00:00:some(a):00 2 -46 various%5:00:02:different:00 1 -46 song%1:10:00:: 1 -46 sing%2:36:01:: 1 -46 simply%4:02:00:: 1 -46 research%1:04:00:: 1 -46 new_york%1:15:01:: 1 -46 national%3:01:00:: 1 -46 light%1:19:00:: 1 -46 inform%2:32:00:: 1 -46 immediately%4:02:00:: 1 -46 human%3:01:00:: 1 -46 greater%3:00:00:: 1 -46 future%1:28:00:: 1 -46 development%1:22:02:: 2 -46 come_back%2:38:00:: 1 -46 coffee%1:13:00:: 1 -46 change%1:11:00:: 1 -46 book%1:10:00:: 1 -46 approach%2:38:00:: 1 -45 wide%3:00:00:: 1 -45 start%2:30:01:: 2 -45 spirit%1:18:01:: 1 -45 result%2:42:00:: 1 -45 range%1:07:00:: 1 -45 prove%2:31:00:: 2 -45 prepare%2:30:00:: 1 -45 political%3:00:00:: 1 -45 out%4:02:01:: 2 -45 open%2:41:00:: 2 -45 murder%1:04:00:: 1 -45 last%3:00:00:: 2 -45 knowledge%1:03:00:: 1 -45 income%1:21:00:: 1 -45 get%2:35:03:: 6 -45 find%2:39:01:: 6 -45 fig%1:10:00:: 1 -45 example%1:09:00:: 1 -45 else%4:02:01:: 1 -45 death%1:11:00:: 1 -45 college%1:14:00:: 1 -45 change%1:24:00:: 2 -45 cause%2:32:00:: 2 -45 better%4:02:00:: 1 -45 basic%3:00:00:: 1 -45 apply%2:34:00:: 1 -45 analysis%1:04:00:: 1 -45 additional%5:00:00:added:00 1 -44 trial%1:04:00:: 2 -44 tax%1:21:00:: 1 -44 supply%2:40:00:: 1 -44 such_as%5:00:00:specified:00 1 -44 seek%2:40:00:: 1 -44 rest%1:24:00:: 1 -44 pull%2:35:00:: 1 -44 private%3:00:00:: 1 -44 plan%2:31:01:: 1 -44 one%1:23:00:: 1 -44 obviously%4:02:00:: 1 -44 near%3:00:00:: 1 -44 marry%2:41:00:: 1 -44 go_on%2:42:00:: 1 -44 finish%2:30:02:: 1 -44 finally%4:02:02:: 1 -44 enable%2:30:00:: 1 -44 develop%2:36:01:: 1 -44 develop%2:36:00:: 2 -44 conduct%2:41:00:: 1 -44 come_in%2:38:02:: 1 -44 clothes%1:06:00:: 1 -44 cell%1:03:00:: 2 -44 at_last%4:02:00:: 1 -44 artist%1:18:00:: 1 -44 allotment%1:21:00:: 1 -43 woods%1:14:00:: 1 -43 time%1:28:06:: 4 -43 team%1:14:00:: 1 -43 system%1:06:00:: 1 -43 stay%2:30:00:: 1 -43 show%2:39:00:: 4 -43 short%3:00:02:: 1 -43 section%1:10:00:: 1 -43 red%5:00:01:chromatic:00 1 -43 protect%2:33:00:: 1 -43 noise%1:11:00:: 1 -43 muscle%1:08:00:: 1 -43 mean%2:32:03:: 3 -43 love%2:37:00:: 1 -43 kitchen%1:06:00:: 1 -43 highly%4:02:02:: 1 -43 function%1:24:00:: 1 -43 fire%1:11:00:: 1 -43 fall%2:38:03:: 1 -43 entirely%4:02:00:: 1 -43 affect%2:30:00:: 1 -43 activity%1:04:00:: 1 -43 6%5:00:00:cardinal:00 1 -42 win%2:40:00:: 2 -42 victory%1:11:00:: 1 -42 sun%1:17:00:: 1 -42 suddenly%4:02:00:: 2 -42 successful%3:00:00:: 1 -42 strength%1:07:00:: 1 -42 shake%2:38:00:: 1 -42 really%4:02:04:: 2 -42 quality%1:07:00:: 1 -42 pound%1:23:09:: 1 -42 point_out%2:32:01:: 1 -42 past%1:28:00:: 1 -42 onset%1:11:00:: 1 -42 love%1:12:00:: 1 -42 lack%1:26:00:: 1 -42 heart%1:09:00:: 1 -42 have%2:34:00:: 7 -42 half%1:23:00:: 1 -42 guess%2:31:00:: 1 -42 feature%1:09:00:: 1 -42 entire%5:00:01:whole:00 1 -42 employ%2:34:00:: 1 -42 dog%1:05:00:: 1 -42 destroy%2:36:00:: 1 -42 court%1:14:00:: 1 -42 boy%1:18:02:: 2 -42 air%1:27:00:: 1 -41 wonder%2:32:01:: 2 -41 water%1:17:00:: 2 -41 teacher%1:18:00:: 1 -41 strange%3:00:00:: 1 -41 seek%2:35:00:: 2 -41 save%2:41:01:: 1 -41 right%1:07:00:: 1 -41 remark%2:32:00:: 1 -41 reflect%2:39:01:: 1 -41 procedure%1:04:00:: 1 -41 note%2:32:00:: 1 -41 nature%1:07:02:: 1 -41 maintain%2:42:00:: 1 -41 life%1:26:02:: 3 -41 lieutenant%1:18:01:: 1 -41 handle%2:41:00:: 1 -41 grass%1:20:00:: 1 -41 full%3:00:00:: 1 -41 find%2:40:01:: 7 -41 different%5:00:00:other:00 2 -41 develop%2:30:06:: 3 -41 come%2:30:03:: 4 -40 way%1:15:00:: 3 -40 wave%1:11:01:: 1 -40 talk_about%2:32:00:: 1 -40 series%1:14:00:: 1 -40 see%2:31:02:: 6 -40 season%1:28:02:: 1 -40 rapidly%4:02:00:: 1 -40 prevent%2:41:00:: 2 -40 present%2:39:00:: 1 -40 on%4:02:00:: 1 -40 lead%2:38:01:: 1 -40 general%1:18:00:: 1 -40 further%5:00:00:added:00 1 -40 form%1:09:00:: 3 -40 first%4:02:02:: 2 -40 eliminate%2:30:01:: 1 -40 disappear%2:30:00:: 1 -40 corporation%1:14:00:: 1 -40 completion%1:04:01:: 1 -40 come%2:42:04:: 5 -40 chance%1:26:00:: 1 -40 aware%3:00:00:: 1 -40 amount%1:21:00:: 1 -39 state%1:03:00:: 2 -39 specific%3:00:00:: 1 -39 skill%1:09:01:: 1 -39 shout%2:32:00:: 1 -39 represent%2:42:02:: 1 -39 reach%2:38:00:: 2 -39 rate%1:21:00:: 2 -39 publish%2:36:01:: 1 -39 present%3:00:02:: 2 -39 permit%2:41:00:: 2 -39 oxygen%1:27:00:: 1 -39 observe%2:39:02:: 1 -39 notice%2:39:04:: 1 -39 more%5:00:00:added:00 3 -39 mg%1:23:00:: 1 -39 local%3:00:03:: 2 -39 less_than%4:02:00:: 1 -39 less%3:00:00:: 1 -39 keep%2:42:07:: 2 -39 hotel%1:06:00:: 1 -39 go_into%2:38:00:: 1 -39 frequently%4:02:00:: 1 -39 feel%2:29:00:: 4 -39 federal%5:00:00:national:01 1 -39 far%4:02:00:: 2 -39 england%1:15:00:: 1 -39 depend_on%2:42:00:: 1 -39 death%1:19:00:: 2 -39 continue%2:32:00:: 2 -39 circumstance%1:26:01:: 1 -39 case%1:26:00:: 2 -39 carefully%4:02:00:: 1 -39 amount%1:07:00:: 2 -39 america%1:15:00:: 1 -39 achievement%1:04:00:: 1 -38 understanding%1:09:01:: 1 -38 tooth%1:08:00:: 1 -38 take%2:30:01:: 5 -38 stand%2:42:03:: 3 -38 sound%2:39:06:: 1 -38 sit_down%2:38:00:: 1 -38 run%2:38:04:: 2 -38 result%2:42:02:: 2 -38 remain%2:42:03:: 2 -38 reaction%1:22:00:: 1 -38 produce%2:36:00:: 2 -38 problem%1:10:00:: 2 -38 presently%4:02:01:: 1 -38 place%1:15:04:: 2 -38 old_man%1:18:02:: 1 -38 objective%1:09:00:: 1 -38 no%4:02:02:: 1 -38 meet%2:41:01:: 2 -38 major%3:00:06:: 1 -38 maintain%2:40:00:: 2 -38 length%1:07:00:: 1 -38 individual%3:00:00:: 1 -38 great%5:00:01:important:00 3 -38 gray%5:00:00:achromatic:00 1 -38 game%1:04:00:: 1 -38 free%3:00:00:: 1 -38 floor%1:06:00:: 1 -38 film%1:10:01:: 1 -38 evening%1:28:00:: 1 -38 dust%1:27:00:: 1 -38 district%1:15:00:: 1 -38 day%1:28:02:: 4 -38 create%2:36:02:: 2 -38 close%3:00:01:: 1 -38 chapter%1:10:00:: 1 -38 call%2:32:01:: 3 -38 brown%5:00:00:chromatic:00 1 -38 basis%1:24:00:: 1 -38 author%1:18:00:: 1 -37 tissue%1:08:00:: 1 -37 term%1:10:00:: 1 -37 spirit%1:26:00:: 2 -37 south%1:15:01:: 1 -37 shape%1:07:00:: 1 -37 sense%1:09:05:: 1 -37 sea%1:17:00:: 1 -37 realize%2:31:00:: 2 -37 play%2:41:12:: 2 -37 plant%1:03:00:: 2 -37 moreover%4:02:00:: 1 -37 month%1:28:00:: 2 -37 military%3:01:00:: 1 -37 indicate%2:32:00:: 3 -37 hope%2:37:00:: 2 -37 high_school%1:14:00:: 1 -37 hardly%4:02:00:: 1 -37 hard%3:00:06:: 1 -37 happy%3:00:00:: 1 -37 growth%1:22:00:: 1 -37 go_back%2:38:00:: 1 -37 generally%4:02:02:: 1 -37 flee%2:38:00:: 1 -37 feel%2:31:01:: 5 -37 exactly%4:02:01:: 1 -37 eight%5:00:00:cardinal:00 1 -37 daily%4:02:00:: 1 -37 consider%2:31:01:: 3 -37 concept%1:09:00:: 1 -37 completely%4:02:04:: 1 -37 believe%2:31:03:: 3 -37 arc%1:19:00:: 1 -36 writer%1:18:00:: 1 -36 view%1:09:02:: 1 -36 various%5:00:00:individual:00 2 -36 urge%2:32:00:: 1 -36 time%1:03:00:: 5 -36 thing%1:09:00:: 3 -36 thing%1:06:00:: 4 -36 take%2:31:07:: 6 -36 surface%1:15:00:: 2 -36 success%1:11:00:: 1 -36 story%1:10:03:: 1 -36 step%1:04:02:: 1 -36 spend%2:40:00:: 2 -36 sound%1:07:00:: 1 -36 serve%2:33:00:: 2 -36 see%4:02:00:: 1 -36 relatively%4:02:00:: 1 -36 recent%5:00:00:new:00 1 -36 program%1:09:01:: 2 -36 production%1:04:00:: 1 -36 note%2:39:00:: 2 -36 new%5:00:00:original:00 2 -36 million%5:00:00:cardinal:00 1 -36 maximum%3:00:00:: 1 -36 long%4:02:00:: 1 -36 job%1:04:01:: 2 -36 instead%4:02:00:: 1 -36 get%2:39:00:: 7 -36 forest%1:14:00:: 1 -36 emerge%2:30:00:: 1 -36 ear%1:08:00:: 1 -36 drop%2:38:01:: 1 -36 door%1:06:01:: 2 -36 device%1:06:00:: 1 -36 climb%2:38:00:: 1 -36 christian%3:01:00:: 1 -36 carry%2:42:01:: 2 -36 brother%1:18:00:: 1 -36 back%4:02:00:: 2 -36 aid%2:41:00:: 1 -36 actually%4:02:01:: 1 -36 activity%1:26:00:: 2 -35 tattered%5:00:01:worn:00 1 -35 swing%2:38:02:: 1 -35 sing%2:36:00:: 2 -35 public%1:14:00:: 1 -35 pretty%4:02:00:: 1 -35 polynomial%1:09:00:: 1 -35 parent%1:18:00:: 1 -35 non%5:00:00:negative:02 1 -35 nod%2:32:01:: 1 -35 men%1:14:00:: 1 -35 measure%2:31:00:: 1 -35 matter%1:09:01:: 1 -35 mass%1:07:00:: 1 -35 left%3:00:00:: 1 -35 lead%2:42:04:: 2 -35 known%3:00:00:: 1 -35 hang%2:35:03:: 1 -35 facility%1:06:00:: 1 -35 end%1:15:00:: 1 -35 do%2:36:02:: 5 -35 display%2:39:00:: 1 -35 direction%1:15:00:: 1 -35 crowd%1:14:00:: 1 -35 cover%2:35:00:: 1 -35 cost%2:42:00:: 1 -35 compute%2:31:00:: 1 -35 communism%1:14:00:: 1 -35 cold%3:00:01:: 1 -35 chair%1:06:00:: 1 -35 business%1:14:00:: 1 -35 bullet%1:06:00:: 1 -35 ball%1:06:01:: 1 -35 act%2:41:00:: 1 -35 act%1:10:01:: 1 -35 8%5:00:00:cardinal:00 1 -34 yard%1:23:00:: 1 -34 world%1:14:01:: 3 -34 travel%2:38:00:: 1 -34 throat%1:08:00:: 1 -34 that_is%4:02:00:: 1 -34 suppose%2:32:00:: 1 -34 source%1:15:00:: 1 -34 serum%1:08:00:: 1 -34 roof%1:06:00:: 1 -34 role%1:04:00:: 1 -34 reveal%2:39:00:: 1 -34 remain%2:42:05:: 3 -34 record%2:32:00:: 1 -34 range%2:42:01:: 1 -34 purchase%2:40:00:: 1 -34 proper%3:00:00:: 1 -34 position%1:15:00:: 1 -34 police%1:14:00:: 1 -34 page%1:10:00:: 1 -34 operate%2:41:00:: 1 -34 open%3:00:01:: 1 -34 neck%1:08:00:: 1 -34 more%4:02:01:: 2 -34 material%1:10:00:: 2 -34 listen%2:39:01:: 2 -34 impossible%3:00:00:: 1 -34 goal%1:09:00:: 1 -34 glance%2:39:00:: 1 -34 fine%5:00:00:superior:02 1 -34 find%2:36:00:: 8 -34 fight%2:33:01:: 2 -34 feel%2:39:01:: 6 -34 fact%1:10:01:: 2 -34 estimate%2:31:00:: 1 -34 element%1:09:00:: 1 -34 education%1:04:00:: 1 -34 deal%2:32:08:: 1 -34 county%1:15:00:: 1 -34 contain%2:42:13:: 2 -34 claim%2:32:00:: 1 -34 chest%1:08:00:: 1 -34 belong_to%2:42:00:: 1 -34 average%5:00:02:normal:01 1 -34 as_well%4:02:01:: 1 -34 argue%2:32:02:: 1 -34 adopt%2:40:02:: 1 -34 acquire%2:40:00:: 1 -34 accept%2:31:00:: 1 -34 50%5:00:00:cardinal:00 1 -34 15%5:00:00:cardinal:00 1 -33 write%2:36:02:: 3 -33 wait%2:31:00:: 3 -33 two%1:23:00:: 1 -33 touch%2:35:00:: 1 -33 sunday%1:28:00:: 1 -33 sudden%3:00:00:: 1 -33 such%5:00:00:specified:00 2 -33 smaller%5:00:00:small:00 1 -33 sit%2:42:00:: 2 -33 show%2:39:03:: 5 -33 seven%5:00:00:cardinal:00 1 -33 respond%2:31:00:: 1 -33 repeat%2:32:00:: 1 -33 regard%2:31:00:: 1 -33 recognize%2:31:02:: 1 -33 raise%2:30:01:: 1 -33 policy%1:09:00:: 1 -33 particle%1:27:01:: 1 -33 other%5:00:00:added:00 2 -33 nation%1:14:00:: 1 -33 measurement%1:07:00:: 1 -33 make%2:31:00:: 7 -33 main%5:00:00:important:00 1 -33 machine%1:06:00:: 1 -33 late%3:00:00:: 1 -33 just%4:02:03:: 4 -33 illustrate%2:32:00:: 1 -33 hire%2:41:00:: 1 -33 hill%1:17:00:: 1 -33 guy%1:18:00:: 1 -33 further%4:02:02:: 1 -33 fourth%5:00:00:ordinal:00 1 -33 fly%2:38:00:: 1 -33 find_out%2:32:00:: 1 -33 fail%2:41:00:: 2 -33 face%2:33:00:: 2 -33 english%3:01:00:: 1 -33 distant%3:00:01:: 1 -33 declare%2:32:00:: 1 -33 conclude%2:31:00:: 1 -33 come_out%2:30:00:: 1 -33 colonel%1:18:00:: 1 -33 american%1:18:00:: 1 -33 accept%2:40:00:: 2 -33 100%5:00:00:cardinal:00 1 -32 worry%2:37:00:: 1 -32 work%2:41:03:: 3 -32 turn_out%2:42:00:: 1 -32 thing%1:11:00:: 5 -32 thing%1:09:02:: 6 -32 test%2:41:00:: 1 -32 take%2:38:10:: 7 -32 stay%2:38:00:: 2 -32 show%2:36:00:: 6 -32 seek%2:41:00:: 3 -32 return%1:10:01:: 1 -32 remark%1:10:00:: 1 -32 recognize%2:31:01:: 2 -32 press%2:35:00:: 1 -32 play%1:10:01:: 1 -32 payment%1:21:00:: 1 -32 pass%2:38:00:: 1 -32 pain%1:26:00:: 1 -32 meet%2:42:02:: 3 -32 matter%1:09:00:: 2 -32 keep%2:40:00:: 3 -32 interest%1:07:01:: 2 -32 intend%2:31:00:: 1 -32 include%2:31:00:: 2 -32 identify%2:31:00:: 1 -32 heavy%3:00:01:: 1 -32 grow%2:30:02:: 3 -32 give%2:32:01:: 5 -32 full%5:00:01:whole:00 2 -32 fence%1:06:00:: 1 -32 feed%1:13:00:: 1 -32 express%2:32:00:: 2 -32 desire%1:12:00:: 1 -32 depth%1:07:00:: 1 -32 crawl%2:38:00:: 1 -32 considerable%3:00:00:: 1 -32 congregation%1:14:00:: 1 -32 common%3:00:02:: 1 -32 close%2:35:00:: 1 -32 clearly%4:02:00:: 1 -32 chlorine%1:27:00:: 1 -32 called%5:00:00:titled:00 1 -32 authorize%2:32:00:: 1 -32 apartment%1:06:00:: 1 -32 alone%4:02:00:: 1 -32 above%4:02:00:: 1 -32 20%5:00:00:cardinal:00 1 -31 world%1:09:00:: 4 -31 wish%2:37:02:: 2 -31 trip%1:04:00:: 1 -31 total%5:00:00:whole:00 1 -31 suppose%2:31:00:: 2 -31 sentence%1:10:00:: 1 -31 section%1:17:00:: 2 -31 regard_as%2:31:00:: 1 -31 recently%4:02:00:: 1 -31 radiation%1:19:00:: 1 -31 promote%2:41:01:: 1 -31 possess%2:42:00:: 1 -31 portion%1:24:00:: 1 -31 personal%3:00:00:: 1 -31 pass%2:38:05:: 2 -31 offer%2:40:00:: 2 -31 newspaper%1:10:00:: 1 -31 name%2:32:03:: 1 -31 meaning%1:09:00:: 2 -31 marketing%1:04:00:: 1 -31 lift%2:38:00:: 1 -31 lack%2:42:00:: 1 -31 item%1:10:00:: 1 -31 image%1:09:00:: 1 -31 have%2:41:00:: 8 -31 go_to%2:42:00:: 2 -31 glance%1:04:00:: 1 -31 get_out%2:38:01:: 1 -31 flower%1:20:00:: 1 -31 flag%1:06:00:: 1 -31 final%5:00:00:closing:00 1 -31 factor%1:11:00:: 1 -31 equal%3:00:00:: 1 -31 engage%2:41:06:: 1 -31 energy%1:19:00:: 1 -31 end%1:28:00:: 2 -31 easily%4:02:01:: 1 -31 dream%1:09:01:: 1 -31 design%2:36:02:: 1 -31 contribute%2:40:01:: 1 -31 constitute%2:42:00:: 1 -31 cm%1:23:00:: 1 -31 bring%2:36:00:: 3 -31 begin%2:36:00:: 3 -31 25%5:00:00:cardinal:00 1 -30 well%4:02:05:: 2 -30 vote%2:41:13:: 1 -30 vast%5:00:00:large:00 1 -30 treat%2:41:00:: 1 -30 sufficient%3:00:00:: 1 -30 special%5:00:01:specific:00 1 -30 southern%3:00:02:: 1 -30 somewhere%4:02:00:: 1 -30 solve%2:31:00:: 1 -30 set%2:35:00:: 1 -30 ride%2:38:00:: 2 -30 quote%2:32:00:: 1 -30 property%1:21:00:: 1 -30 probability%1:07:01:: 1 -30 previously%4:02:00:: 1 -30 presence%1:26:00:: 1 -30 petitioner%1:18:00:: 1 -30 peer%2:39:00:: 1 -30 paper%1:27:00:: 1 -30 occasionally%4:02:00:: 1 -30 moon%1:17:01:: 1 -30 meeting%1:14:00:: 1 -30 lung%1:08:00:: 1 -30 like%3:00:00:: 1 -30 increased%3:00:00:: 1 -30 in_front%4:02:00:: 1 -30 hurry%2:38:00:: 1 -30 have%2:36:00:: 9 -30 hat%1:06:00:: 1 -30 following%5:00:01:succeeding(a):00 4 -30 fire%2:33:01:: 1 -30 expect%2:32:00:: 2 -30 empty%3:00:00:: 1 -30 drug%1:06:00:: 1 -30 drink%2:34:00:: 1 -30 discuss%2:32:00:: 2 -30 devote%2:32:00:: 1 -30 conduct%2:36:00:: 2 -30 busy%3:00:00:: 1 -30 behavior%1:04:00:: 1 -30 as%4:02:00:: 1 -29 worker%1:18:00:: 1 -29 with_respect_to%5:00:00:related:02 1 -29 wild%3:00:02:: 1 -29 weapon%1:06:00:: 1 -29 visit%2:41:02:: 1 -29 village%1:14:00:: 1 -29 usual%3:00:00:: 1 -29 united_states%1:14:00:: 2 -29 understand%2:31:01:: 2 -29 too_much%4:02:00:: 1 -29 thyroid%1:08:00:: 1 -29 stress%2:32:00:: 1 -29 start%2:38:02:: 3 -29 smile%1:10:00:: 1 -29 share%1:21:00:: 1 -29 set%2:31:04:: 2 -29 services%1:04:00:: 1 -29 serious%3:00:00:: 1 -29 see%2:39:03:: 7 -29 say%2:32:03:: 3 -29 sale%1:04:00:: 1 -29 reason%1:10:01:: 2 -29 reach%2:35:00:: 3 -29 pressure%1:07:00:: 2 -29 play%2:36:12:: 3 -29 physical%3:00:00:: 1 -29 past%3:00:00:: 1 -29 pass%2:41:02:: 3 -29 party%1:14:01:: 1 -29 organization%1:14:00:: 1 -29 operate%2:35:03:: 2 -29 occurrence%1:11:00:: 1 -29 now%4:02:02:: 3 -29 note%2:39:02:: 3 -29 need%1:17:00:: 2 -29 medical%3:01:00:: 1 -29 may%1:28:00:: 1 -29 manager%1:18:00:: 1 -29 man%1:05:01:: 5 -29 live%2:42:04:: 3 -29 life%1:26:00:: 4 -29 intensity%1:07:03:: 1 -29 head%2:38:00:: 1 -29 go%2:30:04:: 4 -29 give%2:36:02:: 6 -29 fund%1:21:00:: 1 -29 fully%4:02:02:: 1 -29 force%1:07:01:: 1 -29 food%1:03:00:: 1 -29 find%2:31:09:: 9 -29 farmer%1:18:00:: 1 -29 end%2:30:01:: 2 -29 effective%3:00:00:: 1 -29 deserve%2:42:00:: 1 -29 country%1:15:00:: 2 -29 contact%1:04:02:: 1 -29 conclusion%1:09:00:: 1 -29 complain%2:32:00:: 1 -29 coat%1:06:00:: 1 -29 citizen%1:18:00:: 1 -29 block%1:06:00:: 1 -29 bird%1:05:00:: 1 -29 arise%2:42:00:: 1 -29 appropriate%3:00:00:: 1 -29 approach%1:04:02:: 1 -29 apply%2:42:00:: 2 -29 answer%1:10:01:: 1 -29 air%1:15:00:: 2 -29 afraid%3:00:00:: 1 -29 accomplish%2:36:00:: 1 -28 work%2:41:06:: 4 -28 wind%1:19:00:: 1 -28 way%1:26:00:: 4 -28 treatment%1:04:00:: 1 -28 tradition%1:09:01:: 1 -28 take%2:40:00:: 8 -28 such%4:02:00:: 1 -28 succeed%2:41:00:: 1 -28 style%1:07:00:: 1 -28 stock%1:21:00:: 1 -28 shoot%2:33:01:: 1 -28 retain%2:40:01:: 1 -28 represent%2:32:02:: 2 -28 put%2:32:00:: 3 -28 primarily%4:02:01:: 1 -28 present%2:32:00:: 2 -28 predict%2:32:00:: 1 -28 people%1:14:01:: 2 -28 pattern%1:09:00:: 1 -28 participate%2:41:00:: 1 -28 ordinary%3:00:00:: 1 -28 order%2:32:01:: 1 -28 one%5:00:02:single(a):00 7 -28 once%4:02:02:: 2 -28 nose%1:08:00:: 1 -28 nevertheless%4:02:00:: 1 -28 neighborhood%1:15:00:: 1 -28 monday%1:28:00:: 1 -28 install%2:35:00:: 1 -28 honor%2:41:00:: 1 -28 hide%2:39:00:: 1 -28 have%2:40:01:: 10 -28 furnish%2:40:00:: 1 -28 form%2:41:00:: 1 -28 feeling%1:09:03:: 2 -28 explanation%1:10:00:: 1 -28 experience%1:11:00:: 3 -28 europe%1:17:00:: 1 -28 establish%2:36:00:: 2 -28 essentially%4:02:01:: 1 -28 edge%1:15:00:: 1 -28 destroy%2:35:00:: 2 -28 design%2:31:00:: 2 -28 department%1:14:00:: 1 -28 control%2:41:00:: 1 -28 construct%2:36:00:: 1 -28 complex%3:00:00:: 1 -28 company%1:14:03:: 2 -28 bottle%1:06:00:: 1 -28 board%1:14:00:: 1 -28 basis%1:09:00:: 2 -28 balance%1:26:00:: 1 -28 assistance%1:04:00:: 1 -28 alone%4:02:01:: 2 -27 work%1:04:01:: 3 -27 washington%1:15:01:: 1 -27 warm%3:00:01:: 1 -27 war%1:26:00:: 2 -27 visual%3:01:04:: 1 -27 valley%1:17:00:: 1 -27 union%1:14:01:: 1 -27 troops%1:14:00:: 1 -27 thermal%3:01:00:: 1 -27 tell%2:31:00:: 5 -27 suspect%2:31:02:: 1 -27 steps%1:06:00:: 1 -27 species%1:14:00:: 1 -27 shoot%2:41:00:: 2 -27 shoe%1:06:00:: 1 -27 see%2:38:00:: 8 -27 see%2:32:00:: 9 -27 saline%1:27:00:: 1 -27 right%1:15:00:: 2 -27 receive%2:30:01:: 2 -27 provision%1:10:00:: 1 -27 protestant%3:01:00:: 1 -27 practically%4:02:00:: 1 -27 population%1:14:00:: 1 -27 play%2:36:02:: 4 -27 plan%2:31:00:: 2 -27 personnel%1:14:00:: 1 -27 performance%1:10:00:: 1 -27 operator%1:24:00:: 1 -27 mean%2:31:00:: 4 -27 manage%2:41:09:: 1 -27 literary%3:01:00:: 1 -27 liberal%1:18:00:: 1 -27 leave%2:30:02:: 4 -27 lead%2:42:12:: 3 -27 lady%1:18:02:: 1 -27 interesting%3:00:00:: 1 -27 influence%1:07:00:: 1 -27 hypothalamic%3:01:00:: 1 -27 gram%1:23:00:: 1 -27 grab%2:35:00:: 1 -27 gain%2:40:03:: 1 -27 folklore%1:09:00:: 1 -27 discussion%1:10:02:: 1 -27 differ%2:42:00:: 1 -27 diameter%1:07:00:: 1 -27 detective%1:18:00:: 1 -27 description%1:10:01:: 1 -27 dark%3:00:02:: 2 -27 consider%2:32:00:: 4 -27 commission%1:14:00:: 1 -27 check%2:31:00:: 1 -27 begin%2:30:01:: 4 -27 area%1:09:00:: 2 -27 approve%2:32:00:: 1 -27 30%5:00:00:cardinal:00 1 -26 yellow%5:00:00:chromatic:00 1 -26 world%1:17:00:: 5 -26 weight%1:07:00:: 1 -26 vary%2:30:01:: 1 -26 undertake%2:36:00:: 1 -26 typical%3:00:00:: 1 -26 tube%1:06:00:: 1 -26 together%4:02:04:: 1 -26 title%1:10:05:: 1 -26 think_of%2:31:03:: 2 -26 think_of%2:31:01:: 3 -26 thing%1:10:00:: 7 -26 thing%1:06:01:: 8 -26 talk%2:32:00:: 2 -26 tale%1:10:00:: 1 -26 take%2:38:02:: 9 -26 take%2:31:01:: 10 -26 support%2:41:00:: 1 -26 still%4:02:00:: 3 -26 sponsor%2:40:00:: 1 -26 slightly%4:02:01:: 1 -26 shoot%2:33:00:: 3 -26 sense%2:39:00:: 1 -26 science%1:09:01:: 1 -26 saturday%1:28:00:: 1 -26 rise%2:38:00:: 1 -26 record%1:10:03:: 1 -26 raise%2:38:00:: 2 -26 purpose%1:07:00:: 2 -26 property%1:07:00:: 2 -26 promise%2:32:00:: 1 -26 produce%2:36:03:: 3 -26 possibly%4:02:00:: 1 -26 pond%1:17:00:: 1 -26 percentage%1:24:00:: 1 -26 perceive%2:39:00:: 1 -26 pay%2:32:00:: 2 -26 order%1:10:03:: 1 -26 one%1:09:00:: 2 -26 on_the_other_hand%4:02:00:: 1 -26 obvious%3:00:00:: 1 -26 observation%1:04:01:: 1 -26 movie%1:10:00:: 1 -26 most%3:00:01:: 2 -26 milligram%1:23:00:: 1 -26 marriage%1:26:00:: 1 -26 love%2:37:02:: 2 -26 last%5:00:00:closing:00 3 -26 june%1:28:00:: 1 -26 institution%1:14:00:: 1 -26 independent%3:00:00:: 1 -26 hundred%5:00:00:cardinal:00 1 -26 hr%1:28:00:: 1 -26 hold%2:40:00:: 4 -26 guest%1:18:00:: 1 -26 green%5:00:00:chromatic:00 1 -26 great%5:00:00:major:06 4 -26 god%1:18:01:: 2 -26 game%1:04:03:: 2 -26 freedom%1:26:00:: 1 -26 form%2:42:00:: 2 -26 follow%2:42:05:: 3 -26 firm%1:14:00:: 1 -26 filled%5:00:01:full:00 1 -26 exercise%1:04:00:: 1 -26 emphasize%2:32:00:: 1 -26 else%5:00:00:other:00 1 -26 doubt%1:09:00:: 1 -26 disease%1:26:00:: 1 -26 directly%4:02:00:: 1 -26 detailed%5:00:00:careful:00 1 -26 detail%1:09:00:: 1 -26 communication%1:10:01:: 1 -26 claim%1:10:00:: 1 -26 award%1:04:00:: 1 -26 around%4:02:01:: 1 -26 approximately%4:02:00:: 1 -26 another%5:00:00:added:00 2 -26 alter%2:30:01:: 1 -26 alone%5:00:00:unsocial:00 1 -26 all%4:02:00:: 1 -26 a_couple_of%5:00:00:few:00 1 -25 wish%2:31:00:: 3 -25 wavelength%1:07:00:: 1 -25 volume%1:23:00:: 1 -25 treatment%1:04:01:: 2 -25 thick%3:00:01:: 1 -25 take%2:40:05:: 11 -25 table%1:06:01:: 2 -25 store%1:06:00:: 1 -25 stop%2:41:00:: 3 -25 stage%1:28:00:: 1 -25 spring%1:28:00:: 1 -25 speed%1:28:00:: 1 -25 soviet%3:01:00:: 1 -25 side%1:14:00:: 2 -25 scream%2:32:01:: 1 -25 safe%3:00:01:: 1 -25 result%1:10:00:: 2 -25 relative%3:00:00:: 1 -25 relationship%1:24:00:: 1 -25 recommendation%1:10:00:: 1 -25 recognize%2:39:01:: 3 -25 receive%2:39:00:: 3 -25 rain%1:19:00:: 1 -25 provide%2:34:00:: 2 -25 product%1:06:00:: 2 -25 process%1:22:00:: 2 -25 policy%1:10:00:: 2 -25 point%2:32:00:: 1 -25 planning%1:04:00:: 1 -25 picture%1:06:00:: 1 -25 phenomenon%1:03:00:: 1 -25 perform%2:36:00:: 1 -25 no_doubt%4:02:00:: 1 -25 memory%1:09:02:: 1 -25 major%3:00:02:: 2 -25 look%2:29:00:: 3 -25 local%5:00:00:native:01 3 -25 limited%3:00:00:: 1 -25 interested%3:00:00:: 1 -25 hospital%1:06:00:: 1 -25 hit%2:35:03:: 1 -25 hence%4:02:00:: 1 -25 heart%1:08:00:: 2 -25 have%2:42:12:: 11 -25 have%2:30:01:: 12 -25 hand%2:40:00:: 1 -25 hall%1:06:03:: 1 -25 gun%1:06:01:: 2 -25 given%5:00:00:specified:00 1 -25 gaze%2:39:00:: 1 -25 friendly%3:00:01:: 1 -25 fool%1:18:00:: 1 -25 fluid%1:27:02:: 1 -25 fighting%1:04:00:: 1 -25 expense%1:21:00:: 1 -25 discussion%1:10:00:: 2 -25 dinner%1:13:00:: 1 -25 desire%2:37:00:: 1 -25 derive%2:31:00:: 1 -25 degree%1:07:00:: 1 -25 decision%1:04:00:: 1 -25 decade%1:28:00:: 1 -25 customer%1:18:00:: 1 -25 cool%3:00:01:: 1 -25 contribute%2:40:00:: 2 -25 construction%1:04:00:: 1 -25 concentration%1:07:02:: 1 -25 companion%1:18:00:: 1 -25 chicago%1:15:00:: 1 -25 cease%2:42:00:: 1 -25 cattle%1:05:00:: 1 -25 catholic%3:01:00:: 1 -25 catholic%1:18:00:: 1 -25 call%2:32:09:: 4 -25 call%2:32:05:: 5 -25 bronchial_artery%1:08:00:: 1 -25 box%1:06:00:: 1 -25 blow%1:04:01:: 1 -25 beautiful%3:00:00:: 1 -25 be_due%2:42:00:: 1 -25 bank%1:17:01:: 1 -25 await%2:31:00:: 1 -25 associate%2:31:00:: 1 -25 along%4:02:01:: 1 -25 agree%2:32:01:: 2 -25 absence%1:26:00:: 1 -25 12%5:00:00:cardinal:00 1 -24 winter%1:28:00:: 1 -24 weakness%1:26:00:: 1 -24 watch%2:39:05:: 3 -24 wagon%1:06:00:: 1 -24 visit%2:38:00:: 2 -24 variation%1:11:01:: 1 -24 unusual%3:00:00:: 1 -24 train%1:06:00:: 1 -24 tone%1:10:01:: 1 -24 thousand%1:23:00:: 1 -24 structure%1:06:00:: 1 -24 strengthen%2:30:01:: 1 -24 state%5:00:02:public:00 1 -24 state%1:14:01:: 3 -24 spread%2:35:00:: 1 -24 space%1:03:00:: 1 -24 soil%1:26:00:: 1 -24 sigh%2:29:00:: 1 -24 show%2:32:02:: 7 -24 show%2:32:01:: 8 -24 shot%1:04:00:: 1 -24 service%1:04:08:: 1 -24 serve%2:42:01:: 3 -24 second%1:28:00:: 1 -24 result%1:11:00:: 3 -24 resemble%2:42:00:: 1 -24 replace%2:30:00:: 1 -24 quickly%4:02:00:: 1 -24 progress%1:04:01:: 1 -24 previous%5:00:00:preceding(a):00 3 -24 picture%1:06:01:: 2 -24 phase%1:28:00:: 1 -24 particular%5:00:00:specific:00 1 -24 part%1:06:00:: 2 -24 otherwise%4:02:01:: 1 -24 other_than%5:00:00:other:00 1 -24 oppose%2:32:01:: 1 -24 office%1:14:01:: 2 -24 next%5:00:00:close:01 1 -24 movement%1:04:00:: 1 -24 minimal%3:00:00:: 1 -24 march%2:38:01:: 1 -24 look%1:07:01:: 1 -24 limit%1:07:00:: 1 -24 lean%2:38:00:: 1 -24 lay%2:35:01:: 1 -24 law%1:10:00:: 2 -24 largely%4:02:00:: 1 -24 go_on%2:30:00:: 2 -24 give%2:32:00:: 7 -24 function%1:07:00:: 2 -24 forgive%2:32:00:: 1 -24 fifty%5:00:00:cardinal:00 1 -24 evident%5:00:00:obvious:00 1 -24 entertain%2:41:00:: 1 -24 enter%2:33:00:: 2 -24 due_to%5:00:00:attributable:00 1 -24 drive%2:38:00:: 2 -24 desk%1:06:00:: 1 -24 deny%2:32:00:: 1 -24 demonstrate%2:39:01:: 1 -24 death%1:26:00:: 3 -24 congress%1:14:01:: 1 -24 confront%2:33:00:: 1 -24 composer%1:18:00:: 1 -24 compete%2:33:00:: 1 -24 comment%1:10:00:: 1 -24 cloud%1:19:01:: 1 -24 call_for%2:32:04:: 1 -24 binomial%3:01:00:: 1 -24 believe_in%2:31:01:: 1 -24 back%4:02:05:: 3 -24 avoid%2:32:00:: 1 -24 at_once%4:02:00:: 1 -24 aspect%1:09:00:: 1 -24 all_right%4:02:00:: 1 -24 afford%2:34:00:: 1 -24 act_as%2:42:00:: 1 -24 act%1:03:00:: 2 -24 account_for%2:42:00:: 1 -24 24%5:00:00:cardinal:00 1 -23 while%1:28:00:: 1 -23 wet%3:00:01:: 1 -23 virginia%1:15:00:: 1 -23 vacation%1:28:00:: 1 -23 treat%2:30:01:: 2 -23 traditional%3:00:00:: 1 -23 top%1:15:01:: 1 -23 threaten%2:42:00:: 1 -23 though%4:02:00:: 1 -23 system%1:14:00:: 2 -23 sure%5:00:00:careful:00 2 -23 sufficiently%4:02:00:: 1 -23 success%1:04:00:: 2 -23 stomach%1:08:00:: 1 -23 step%2:38:00:: 1 -23 stem%1:10:01:: 1 -23 steal%2:40:00:: 1 -23 station%1:06:00:: 1 -23 stand_up%2:38:00:: 1 -23 staining%1:04:00:: 1 -23 square%1:25:00:: 1 -23 spot%1:15:01:: 1 -23 speak%2:32:02:: 3 -23 slow%3:00:01:: 1 -23 sleep%1:26:00:: 1 -23 share%2:42:00:: 1 -23 set%1:14:00:: 1 -23 serve%2:41:00:: 4 -23 sense%1:10:00:: 2 -23 row%1:14:00:: 1 -23 rise%2:30:00:: 2 -23 remember%2:31:02:: 3 -23 relation%1:03:00:: 1 -23 recreation%1:04:00:: 1 -23 record%1:06:00:: 2 -23 protein%1:27:00:: 1 -23 propose%2:32:00:: 1 -23 project%1:04:00:: 1 -23 practice%1:04:00:: 1 -23 play%2:41:03:: 5 -23 piece%1:06:00:: 1 -23 payment%1:04:00:: 2 -23 pause%2:42:00:: 1 -23 particular%5:00:00:individual:00 2 -23 papa%1:18:00:: 1 -23 over%4:02:01:: 1 -23 official%1:18:01:: 1 -23 officer%1:18:02:: 2 -23 nice%3:00:00:: 1 -23 network%1:14:00:: 1 -23 neighbor%1:18:00:: 1 -23 mud%1:27:00:: 1 -23 minimum%3:00:00:: 1 -23 meet%2:34:00:: 4 -23 low%3:00:01:: 2 -23 list%2:32:00:: 1 -23 limit%2:30:01:: 1 -23 light%1:06:00:: 2 -23 leader%1:18:00:: 1 -23 issue%1:09:01:: 1 -23 involved%3:00:00:: 1 -23 involve%2:42:04:: 2 -23 instrument%1:06:00:: 1 -23 illusion%1:09:01:: 1 -23 huge%5:00:01:large:00 1 -23 hope%2:31:00:: 3 -23 holder%1:06:00:: 1 -23 history%1:10:00:: 2 -23 help%2:29:00:: 2 -23 heavily%4:02:00:: 1 -23 greatly%4:02:00:: 1 -23 gradually%4:02:00:: 1 -23 go_on%2:38:00:: 3 -23 gather%2:35:00:: 1 -23 form%1:07:01:: 4 -23 finance%2:40:00:: 1 -23 fear%2:37:03:: 1 -23 familiar%3:00:00:: 1 -23 face%1:07:03:: 2 -23 extent%1:26:00:: 1 -23 expression%1:07:00:: 1 -23 evidence%1:10:01:: 2 -23 establish%2:31:00:: 3 -23 end%1:11:00:: 3 -23 dollar%1:23:00:: 1 -23 distribution%1:09:00:: 1 -23 direct%3:00:00:: 1 -23 daughter%1:18:00:: 1 -23 date%1:28:00:: 1 -23 count%2:32:00:: 1 -23 contrast%1:24:00:: 1 -23 comment%2:32:00:: 1 -23 command%1:10:00:: 1 -23 close%3:00:02:: 2 -23 better%3:00:02:: 2 -23 bend%2:38:00:: 1 -23 bear%2:42:01:: 1 -23 attract%2:35:00:: 1 -23 at_the_same_time%4:02:03:: 1 -23 at_first%4:02:00:: 1 -23 age%1:28:02:: 2 -23 affair%1:09:00:: 1 -23 advantage%1:07:00:: 1 -23 7%5:00:00:cardinal:00 1 -22 yet%4:02:02:: 1 -22 wound%1:26:00:: 1 -22 willing%3:00:00:: 1 -22 whisper%2:32:00:: 1 -22 wear%2:29:04:: 2 -22 warn%2:32:00:: 1 -22 variety%1:14:01:: 1 -22 tsunami%1:11:00:: 1 -22 tonight%4:02:00:: 1 -22 tone%1:07:02:: 2 -22 together%4:02:02:: 2 -22 take%2:41:00:: 12 -22 take%2:31:03:: 13 -22 surprise%2:31:00:: 1 -22 such%5:00:00:much(a):00 3 -22 suburban%3:01:00:: 1 -22 substantial%5:00:00:considerable:00 1 -22 stay%2:42:01:: 3 -22 see%2:31:03:: 10 -22 russian%3:01:00:: 1 -22 roll%2:38:00:: 1 -22 remind%2:31:00:: 1 -22 receive%2:39:03:: 4 -22 reading%1:09:00:: 1 -22 react%2:31:00:: 1 -22 reach%2:32:00:: 4 -22 public%5:00:00:common:02 2 -22 prior%5:00:00:antecedent:00 1 -22 prefer%2:37:00:: 1 -22 place%1:09:00:: 3 -22 picture%1:09:00:: 3 -22 pick_up%2:38:01:: 1 -22 phase%1:26:00:: 2 -22 pattern%1:04:00:: 2 -22 pa%1:18:00:: 1 -22 old%5:00:00:past:00 3 -22 november%1:28:00:: 1 -22 not_yet%4:02:00:: 1 -22 negro%1:18:00:: 1 -22 naturally%4:02:00:: 1 -22 natural%3:00:01:: 1 -22 mere%5:00:00:specified:00 1 -22 major%3:00:01:: 3 -22 life%1:28:00:: 5 -22 lie_in%2:42:00:: 1 -22 level%1:26:01:: 2 -22 leap%2:38:00:: 1 -22 land%1:21:01:: 1 -22 keep%2:41:01:: 4 -22 instant%1:28:01:: 1 -22 independence%1:26:00:: 1 -22 incident%1:11:00:: 1 -22 ice%1:27:00:: 1 -22 hundred%1:23:00:: 1 -22 hour%1:28:01:: 2 -22 hen%1:05:01:: 1 -22 half%5:00:00:fractional:00 1 -22 good%5:00:00:ample:00 2 -22 glass%1:27:00:: 1 -22 fraction%1:27:00:: 1 -22 financial%3:01:00:: 1 -22 final%5:00:00:ultimate:00 2 -22 field%1:15:04:: 2 -22 fat%3:00:01:: 1 -22 far%4:02:04:: 3 -22 face%1:07:00:: 3 -22 escape%2:38:00:: 1 -22 end%1:09:02:: 4 -22 early%3:00:02:: 2 -22 down%4:02:02:: 2 -22 detergent%1:27:00:: 1 -22 demonstrate%2:31:00:: 2 -22 demand%2:42:00:: 2 -22 demand%1:10:00:: 1 -22 dangerous%3:00:00:: 1 -22 corpse%1:08:00:: 1 -22 continue%2:42:00:: 3 -22 conjugate%1:27:00:: 1 -22 concern%2:42:01:: 2 -22 commercial%3:00:00:: 1 -22 come%2:42:01:: 6 -22 cheek%1:08:00:: 1 -22 characteristic%3:00:00:: 1 -22 career%1:04:00:: 1 -22 breathe%2:29:00:: 1 -22 brain%1:08:00:: 1 -22 bill%1:10:04:: 1 -22 bedroom%1:06:00:: 1 -22 bastard%1:18:00:: 1 -22 barn%1:06:00:: 1 -22 avoid%2:41:01:: 2 -22 attack%2:33:00:: 1 -22 attach%2:35:01:: 1 -22 assert%2:32:01:: 1 -22 argument%1:10:02:: 1 -22 april%1:28:00:: 1 -22 appear%2:30:01:: 3 -22 apparatus%1:06:00:: 1 -22 anti-semitism%1:09:00:: 1 -22 anger%1:12:00:: 1 -22 actual%3:00:00:: 1 -22 act%2:29:00:: 2 -22 accuse%2:32:00:: 1 -21 work_on%2:41:00:: 1 -21 western%3:00:01:: 1 -21 wave%2:32:00:: 1 -21 velocity%1:28:00:: 1 -21 values%1:09:00:: 1 -21 universal%5:00:00:comprehensive:00 1 -21 twice%4:02:00:: 1 -21 turn%2:30:04:: 2 -21 trouble%1:09:00:: 1 -21 total%5:00:00:gross:00 2 -21 threaten%2:32:00:: 2 -21 thought%1:09:00:: 2 -21 think_about%2:31:05:: 1 -21 take%2:42:00:: 14 -21 take%2:39:00:: 15 -21 supply%1:23:00:: 1 -21 suggest%2:32:04:: 2 -21 state%1:14:00:: 4 -21 speak_to%2:32:00:: 1 -21 space%1:14:00:: 2 -21 similarly%4:02:00:: 1 -21 significance%1:07:00:: 1 -21 short%3:00:01:: 2 -21 shooting%1:04:00:: 1 -21 shear%1:19:00:: 1 -21 serve%2:34:01:: 5 -21 schedule%2:31:00:: 1 -21 run%2:42:00:: 3 -21 reply%1:10:01:: 1 -21 replace%2:41:00:: 2 -21 refer%2:32:01:: 1 -21 reality%1:09:00:: 1 -21 ratio%1:24:01:: 1 -21 rapid%5:00:00:fast:01 1 -21 raise%2:32:00:: 3 -21 rage%1:12:00:: 1 -21 pulmonary_artery%1:08:00:: 1 -21 propose%2:31:00:: 2 -21 properly%4:02:00:: 1 -21 preserve%2:42:00:: 1 -21 pray%2:32:00:: 1 -21 practical%3:00:00:: 1 -21 possibility%1:09:03:: 1 -21 porch%1:06:00:: 1 -21 politics%1:24:00:: 1 -21 point%1:15:00:: 2 -21 pocket%1:06:00:: 1 -21 pleasure%1:12:00:: 1 -21 planet%1:17:00:: 1 -21 plane%1:06:01:: 1 -21 part-time%3:00:00:: 1 -21 paper%1:10:01:: 2 -21 over%5:00:01:finished:01 1 -21 organic%3:00:01:: 1 -21 opinion%1:09:00:: 1 -21 once%4:02:01:: 3 -21 occur%2:31:00:: 2 -21 occasional%5:00:00:infrequent:00 1 -21 no%1:10:00:: 1 -21 nine%5:00:00:cardinal:00 1 -21 news%1:10:00:: 1 -21 needed%5:00:00:necessary:00 1 -21 musical%3:01:00:: 1 -21 moral%3:01:00:: 1 -21 metal%1:27:00:: 1 -21 matter%2:42:00:: 1 -21 manager%1:18:01:: 2 -21 lower%5:00:00:bottom(a):00 3 -21 jury%1:14:00:: 1 -21 issue%2:32:00:: 1 -21 introduce%2:32:00:: 1 -21 interest%1:07:02:: 3 -21 instead%4:02:01:: 2 -21 initial%5:00:00:first:00 1 -21 increase%1:11:00:: 2 -21 human_being%1:05:00:: 1 -21 hit%2:35:01:: 2 -21 health%1:26:00:: 1 -21 head%1:05:00:: 2 -21 growing%5:00:00:increasing:00 1 -21 go_out%2:38:00:: 1 -21 go_home%2:38:00:: 1 -21 former%3:00:00:: 1 -21 forget%2:31:00:: 2 -21 for_instance%4:02:00:: 1 -21 fight%1:04:01:: 1 -21 famous%5:00:00:known:00 1 -21 fall%2:38:00:: 2 -21 exceed%2:42:01:: 1 -21 environment%1:26:00:: 1 -21 elect%2:41:00:: 1 -21 drop%2:38:00:: 2 -21 drill%2:35:00:: 1 -21 discover%2:39:03:: 1 -21 discover%2:31:01:: 2 -21 difference%1:09:00:: 2 -21 determine%2:31:02:: 2 -21 detect%2:39:00:: 1 -21 deliver%2:32:00:: 1 -21 continually%4:02:01:: 1 -21 concern%1:09:00:: 1 -21 conceive%2:36:00:: 1 -21 compel%2:41:00:: 1 -21 christ%1:18:00:: 1 -21 carry_out%2:36:00:: 1 -21 call_for%2:42:00:: 2 -21 calculate%2:31:00:: 1 -21 c%1:23:02:: 1 -21 battery%1:14:02:: 1 -21 baseball%1:04:00:: 1 -21 away%4:02:01:: 2 -21 assist%2:41:02:: 1 -21 argument%1:10:03:: 2 -21 answer%1:10:02:: 2 -21 annual%3:01:00:: 1 -21 analyze%2:31:00:: 1 -21 ahead%4:02:00:: 1 -21 agent%1:17:00:: 1 -21 address%1:10:04:: 1 -21 a_bit%4:02:00:: 1 -21 1%1:23:00:: 1 -20 work%2:35:02:: 5 -20 weep%2:29:00:: 1 -20 weather%1:19:00:: 1 -20 vary%2:42:00:: 2 -20 university%1:14:00:: 1 -20 unable%3:00:00:: 1 -20 twelve%5:00:00:cardinal:00 1 -20 truly%4:02:00:: 1 -20 truck%1:06:00:: 1 -20 transfer%1:04:00:: 1 -20 think_of%2:31:02:: 4 -20 thing%1:07:00:: 9 -20 swear%2:32:01:: 1 -20 survive%2:42:01:: 1 -20 subject%1:10:00:: 1 -20 strong%5:00:00:stressed:00 2 -20 stream%1:17:00:: 1 -20 steel%1:27:00:: 1 -20 status%1:26:00:: 1 -20 special%5:00:00:extraordinary:00 2 -20 soul%1:18:00:: 1 -20 snake%1:05:00:: 1 -20 sister%1:18:00:: 1 -20 simultaneously%4:02:00:: 1 -20 shot%1:06:00:: 2 -20 serve%2:34:00:: 6 -20 separate%3:00:00:: 1 -20 send%2:35:00:: 2 -20 send%2:32:00:: 3 -20 secure%2:40:00:: 1 -20 same%3:00:04:: 3 -20 salesman%1:18:00:: 1 -20 rush%2:38:00:: 1 -20 run%2:41:02:: 4 -20 rise%2:38:05:: 3 -20 right%3:00:02:: 2 -20 right%3:00:00:: 1 -20 rest%2:35:00:: 1 -20 related%3:00:02:: 1 -20 rank%1:14:00:: 1 -20 quick%5:00:00:fast:01 1 -20 pretty%5:00:00:beautiful:00 1 -20 precisely%4:02:00:: 1 -20 possible%3:00:04:: 2 -20 positive%3:00:01:: 1 -20 point%1:10:01:: 3 -20 player%1:18:01:: 1 -20 paris%1:15:00:: 1 -20 oxidation%1:22:00:: 1 -20 north%1:15:02:: 1 -20 normally%4:02:00:: 1 -20 neither%4:02:00:: 1 -20 move%2:38:02:: 4 -20 milk%1:13:01:: 1 -20 message%1:10:01:: 1 -20 measure%2:30:00:: 2 -20 meal%1:13:00:: 1 -20 located%5:00:00:settled:01 1 -20 line%1:10:01:: 2 -20 leave%2:38:00:: 5 -20 leaf%1:20:00:: 1 -20 labor%1:14:00:: 1 -20 labor%1:04:00:: 2 -20 intense%3:00:00:: 1 -20 integration%1:04:00:: 1 -20 industrial%3:01:00:: 1 -20 in_terms_of%5:00:00:related:02 1 -20 in_general%4:02:00:: 1 -20 however%4:02:04:: 2 -20 hold%2:31:01:: 5 -20 historian%1:18:00:: 1 -20 help%1:04:00:: 1 -20 hard%3:00:02:: 2 -20 happen%2:30:02:: 2 -20 growth%1:22:01:: 2 -20 give%2:40:01:: 8 -20 gesture%1:04:00:: 1 -20 front%1:15:00:: 1 -20 former%5:00:01:past:00 2 -20 foreign%3:00:02:: 1 -20 force%1:19:00:: 2 -20 following%5:00:02:succeeding(a):00 3 -20 follow%2:38:01:: 4 -20 fist%1:08:00:: 1 -20 finally%4:02:00:: 2 -20 figure%2:31:01:: 1 -20 field%1:15:01:: 3 -20 fellow%1:18:02:: 2 -20 fear%2:37:00:: 2 -20 far%3:00:00:: 1 -20 fairly%4:02:02:: 1 -20 extend%2:30:01:: 1 -20 expert%1:18:00:: 1 -20 expenditure%1:21:00:: 1 -20 economy%1:14:00:: 1 -20 earth%1:27:00:: 2 -20 earth%1:17:01:: 3 -20 eager%3:00:00:: 1 -20 drink%1:13:04:: 1 -20 doctrine%1:09:00:: 1 -20 do%2:41:02:: 6 -20 divide%2:41:00:: 1 -20 deny%2:32:01:: 2 -20 define%2:42:00:: 1 -20 darkness%1:26:00:: 1 -20 curve%1:25:00:: 1 -20 cow%1:05:01:: 1 -20 corner%1:15:02:: 1 -20 cop%1:18:00:: 1 -20 cooperate%2:41:00:: 1 -20 conversation%1:10:00:: 1 -20 control%2:41:01:: 2 -20 consciousness%1:09:00:: 1 -20 component%1:09:00:: 1 -20 coast%1:17:00:: 1 -20 coach%1:18:01:: 1 -20 close%2:35:06:: 2 -20 capable%3:00:00:: 1 -20 candidate%1:18:01:: 1 -20 business%1:04:01:: 2 -20 bee%1:05:00:: 1 -20 bank%1:14:00:: 2 -20 assure%2:32:03:: 1 -20 arrive_at%2:38:00:: 1 -20 arrest%2:35:00:: 1 -20 area%1:08:00:: 3 -20 anxiety%1:26:00:: 1 -20 amount%1:03:00:: 3 -20 agency%1:14:00:: 1 -20 accord%2:42:00:: 1 -20 accompany%2:42:00:: 1 -20 60%5:00:00:cardinal:00 1 -20 0%1:23:00:: 1 -19 years%1:28:00:: 1 -19 wounded%5:00:01:injured:00 1 -19 whisky%1:13:00:: 1 -19 west%1:15:00:: 1 -19 way%1:04:00:: 5 -19 view%2:31:00:: 1 -19 very%5:00:00:precise:00 1 -19 unity%1:26:00:: 1 -19 twenty%5:00:00:cardinal:00 1 -19 tsh%1:27:00:: 1 -19 tremendous%5:00:00:large:00 1 -19 today%4:02:01:: 1 -19 tiny%5:00:00:small:00 1 -19 three%1:23:00:: 1 -19 test%1:09:02:: 1 -19 tear%2:35:00:: 1 -19 suggest%2:32:02:: 3 -19 stem%2:42:00:: 1 -19 stain%2:30:01:: 1 -19 specialist%1:18:00:: 1 -19 southerner%1:18:00:: 1 -19 sir%1:18:00:: 1 -19 share%2:40:02:: 2 -19 sewage%1:27:00:: 1 -19 serve%2:41:02:: 7 -19 seriously%4:02:00:: 1 -19 rub%2:35:00:: 1 -19 requirement%1:09:01:: 1 -19 reject%2:31:00:: 1 -19 regard%2:39:00:: 2 -19 readily%4:02:00:: 1 -19 reader%1:18:00:: 1 -19 pursuant%5:00:00:consistent:00 1 -19 professor%1:18:00:: 1 -19 proceed%2:32:00:: 1 -19 principal%5:00:00:important:00 1 -19 pick_up%2:35:01:: 2 -19 performance%1:04:01:: 2 -19 perform%2:41:02:: 2 -19 perform%2:36:01:: 3 -19 partly%4:02:00:: 1 -19 part%1:17:00:: 3 -19 part%1:09:02:: 4 -19 pansy%1:20:01:: 1 -19 object%2:32:00:: 1 -19 notice%2:39:00:: 2 -19 nonspecific%3:00:00:: 1 -19 near%4:02:01:: 1 -19 narrow%3:00:00:: 1 -19 mutter%2:32:01:: 1 -19 model%1:09:00:: 1 -19 measurement%1:04:00:: 2 -19 management%1:04:00:: 1 -19 make_up%2:42:00:: 1 -19 loan%1:21:00:: 1 -19 little%5:00:00:short:02 3 -19 list%2:41:00:: 2 -19 liquid%3:00:00:: 1 -19 like%2:37:04:: 3 -19 left%1:15:00:: 1 -19 leave%2:42:01:: 6 -19 last%2:42:00:: 1 -19 laboratory%1:06:00:: 1 -19 l%1:23:00:: 1 -19 king%1:18:00:: 1 -19 jump%2:38:00:: 1 -19 judgment%1:09:04:: 1 -19 joy%1:12:00:: 1 -19 international%3:00:00:: 1 -19 inside%4:02:00:: 1 -19 influence%2:41:00:: 1 -19 in%4:02:01:: 1 -19 i.e.%4:02:00:: 1 -19 human%3:01:01:: 2 -19 holmes%1:18:00:: 1 -19 hero%1:18:00:: 1 -19 help%2:42:00:: 3 -19 heat%1:19:00:: 1 -19 hearing_officer%1:18:00:: 1 -19 head%2:41:00:: 2 -19 go_up%2:38:00:: 1 -19 furthermore%4:02:00:: 1 -19 funds%1:21:00:: 1 -19 form%1:08:00:: 5 -19 force%1:07:00:: 3 -19 finally%4:02:03:: 3 -19 existing%5:00:00:present(a):01 3 -19 everywhere%4:02:00:: 1 -19 emotional%3:00:02:: 1 -19 egg%1:05:00:: 1 -19 effluent%1:27:00:: 1 -19 earn%2:40:01:: 1 -19 early%4:02:01:: 1 -19 domestic%3:00:00:: 1 -19 disclose%2:32:00:: 1 -19 develop%2:29:00:: 4 -19 design%2:36:01:: 3 -19 defend%2:32:00:: 1 -19 damn%5:00:00:cursed:00 1 -19 dallas%1:15:00:: 1 -19 curiosity%1:09:00:: 1 -19 cover%2:35:01:: 2 -19 conviction%1:09:00:: 1 -19 control%1:07:00:: 1 -19 contract%1:10:00:: 1 -19 considerably%4:02:01:: 1 -19 closely%4:02:00:: 1 -19 choose%2:31:02:: 2 -19 catch%2:31:01:: 1 -19 case%1:04:00:: 3 -19 careful%3:00:00:: 1 -19 carbon_tetrachloride%1:27:00:: 1 -19 camp%1:06:00:: 1 -19 bring%2:35:00:: 4 -19 brigade%1:14:00:: 1 -19 branch%1:14:00:: 1 -19 body%1:14:00:: 2 -19 blanket%1:06:00:: 1 -19 bet%2:32:00:: 1 -19 belief%1:09:00:: 1 -19 atom%1:27:00:: 1 -19 appearance%1:07:00:: 1 -19 apparent%5:00:00:obvious:00 1 -19 air%1:07:01:: 3 -19 adjust%2:30:00:: 1 -19 ability%1:07:00:: 1 -19 a_hundred%5:00:00:cardinal:00 1 -19 40%5:00:00:cardinal:00 1 -19 14%5:00:00:cardinal:00 1 -19 1000%5:00:00:cardinal:00 1 -18 yell%2:32:01:: 1 -18 year%1:28:02:: 2 -18 word%1:10:03:: 2 -18 wander%2:38:00:: 1 -18 vague%5:00:00:unclear:00 1 -18 use%1:07:00:: 2 -18 upper%5:00:00:top(a):00 2 -18 uniform%1:06:00:: 1 -18 ultimate%3:00:00:: 1 -18 u.s.%1:14:00:: 1 -18 tumor%1:26:00:: 1 -18 trend%1:15:02:: 1 -18 together%4:02:03:: 3 -18 theory%1:09:01:: 2 -18 telephone%1:06:00:: 1 -18 task%1:04:01:: 1 -18 tangent%1:25:00:: 1 -18 symbol%1:10:00:: 1 -18 swiftly%4:02:00:: 1 -18 sure%4:02:00:: 1 -18 strongly%4:02:00:: 1 -18 strike%2:35:00:: 1 -18 stockholder%1:18:00:: 1 -18 stand%2:42:00:: 4 -18 stage%1:26:00:: 2 -18 spot%2:39:00:: 1 -18 spectrum%1:19:00:: 1 -18 softly%4:02:00:: 1 -18 soft%3:00:01:: 1 -18 slide%2:38:01:: 1 -18 slave%1:18:00:: 1 -18 situation%1:26:01:: 2 -18 silent%5:00:00:quiet:01 1 -18 significant%3:00:00:: 1 -18 sign%1:10:05:: 1 -18 side%1:08:00:: 3 -18 show%1:04:00:: 1 -18 shout%2:32:01:: 2 -18 shore%1:17:00:: 1 -18 september%1:28:00:: 1 -18 separate%2:42:00:: 1 -18 secretary_of_the_interior%1:04:00:: 1 -18 score%2:33:00:: 1 -18 score%1:09:00:: 1 -18 scene%1:15:00:: 1 -18 sale%1:04:02:: 2 -18 rural%3:00:00:: 1 -18 run%1:04:01:: 1 -18 retire%2:41:01:: 1 -18 respectively%4:02:00:: 1 -18 requirement%1:17:00:: 2 -18 reflect%2:31:00:: 2 -18 refer%2:42:00:: 2 -18 reach%2:41:00:: 5 -18 put_on%2:29:00:: 1 -18 pure%3:00:02:: 1 -18 protection%1:04:00:: 1 -18 powerful%3:00:00:: 1 -18 possibility%1:26:00:: 2 -18 position%1:15:02:: 2 -18 position%1:09:00:: 3 -18 poor%5:00:00:unfortunate:00 2 -18 poor%5:00:00:inferior:02 1 -18 pass_through%2:38:00:: 1 -18 particle%1:17:00:: 2 -18 pair%1:14:01:: 1 -18 numerous%5:00:00:many:00 1 -18 mystery%1:09:00:: 1 -18 multiply%2:31:00:: 1 -18 motive%1:03:00:: 1 -18 mission%1:14:01:: 1 -18 meet%2:42:01:: 5 -18 life%1:28:01:: 6 -18 later%4:02:02:: 2 -18 large_number%1:23:00:: 1 -18 land%1:17:01:: 2 -18 kiss%2:35:00:: 1 -18 join%2:35:01:: 2 -18 instance%1:11:00:: 1 -18 include%2:30:00:: 3 -18 hypothalamus%1:08:00:: 1 -18 hope%1:12:01:: 1 -18 hit%2:35:00:: 3 -18 hatred%1:12:00:: 1 -18 half%4:02:00:: 1 -18 grin%2:29:00:: 1 -18 greek%3:01:01:: 1 -18 great%5:00:01:extraordinary:00 5 -18 give%2:36:03:: 9 -18 give%2:31:02:: 10 -18 get_back%2:38:00:: 1 -18 gate%1:06:00:: 1 -18 friday%1:28:00:: 1 -18 form%2:42:02:: 3 -18 follow%2:41:00:: 5 -18 flux%1:28:00:: 1 -18 flow%1:11:00:: 1 -18 fire%1:04:00:: 2 -18 figure%1:23:00:: 3 -18 fight%1:04:02:: 2 -18 field%1:09:00:: 4 -18 female%1:05:00:: 1 -18 fellow%1:18:03:: 3 -18 feature%1:08:00:: 2 -18 fast%3:00:01:: 1 -18 faith%1:09:00:: 1 -18 failure%1:04:00:: 1 -18 factory%1:06:00:: 1 -18 expression%1:10:02:: 2 -18 experience%2:39:01:: 1 -18 exception%1:09:00:: 1 -18 evaluate%2:31:00:: 1 -18 english%1:10:00:: 1 -18 emphasis%1:26:00:: 1 -18 earlier%5:00:00:past:00 1 -18 earlier%4:02:00:: 1 -18 dry%3:00:01:: 1 -18 distance%1:15:00:: 2 -18 discover%2:36:00:: 3 -18 director%1:18:00:: 1 -18 difficulty%1:04:00:: 1 -18 developed%3:00:00:: 1 -18 determine%2:31:01:: 3 -18 danger%1:26:00:: 1 -18 cut%2:30:06:: 2 -18 crime%1:04:00:: 1 -18 cover%2:42:01:: 3 -18 cope_with%2:41:00:: 1 -18 consequence%1:19:00:: 1 -18 confirm%2:31:00:: 1 -18 condemn%2:32:00:: 1 -18 communist%3:01:00:: 1 -18 comedy%1:10:00:: 1 -18 combination%1:14:00:: 1 -18 column%1:14:00:: 1 -18 close%2:41:00:: 3 -18 check%1:21:00:: 1 -18 characteristic%1:09:00:: 1 -18 cause%1:11:00:: 1 -18 cat%1:05:00:: 1 -18 camera%1:06:00:: 1 -18 bring_in%2:38:00:: 1 -18 bother%2:41:00:: 1 -18 board%1:27:00:: 2 -18 bit%1:23:01:: 1 -18 behave%2:29:00:: 1 -18 beginning%1:11:00:: 1 -18 beer%1:13:00:: 1 -18 beat%2:33:00:: 1 -18 basement%1:06:00:: 1 -18 avoid%2:41:03:: 3 -18 authority%1:07:00:: 1 -18 atmosphere%1:26:01:: 1 -18 aspect%1:07:02:: 2 -18 artistic%3:01:00:: 1 -18 apart%4:02:03:: 1 -18 anaconda%1:05:00:: 1 -18 advice%1:10:00:: 1 -18 action%1:26:00:: 2 -18 academic%3:01:00:: 1 -18 18%5:00:00:cardinal:00 1 -17 witness%2:39:00:: 1 -17 wipe%2:35:00:: 1 -17 widely%4:02:00:: 1 -17 weigh%2:42:01:: 1 -17 truth%1:09:00:: 1 -17 treat%2:29:00:: 3 -17 thirty%5:00:00:cardinal:00 1 -17 thank%2:32:00:: 1 -17 tent%1:06:00:: 1 -17 sweet_clover%1:20:00:: 1 -17 surely%4:02:00:: 1 -17 suppose%2:31:01:: 3 -17 suffer%2:39:01:: 1 -17 suffer%2:29:01:: 2 -17 such_that%5:00:00:specified:00 1 -17 substance%1:03:00:: 1 -17 study%2:31:03:: 2 -17 study%1:09:03:: 2 -17 stride%2:38:04:: 1 -17 stay%2:42:02:: 4 -17 start%2:42:00:: 4 -17 staff%1:14:01:: 1 -17 someone%1:03:00:: 1 -17 so%5:00:00:true:00 1 -17 sight%1:09:01:: 1 -17 shadow%1:26:01:: 1 -17 set_up%2:41:02:: 1 -17 security%1:26:00:: 1 -17 scene%1:11:00:: 2 -17 same%5:00:00:unchanged:00 4 -17 right%4:02:04:: 1 -17 rich%3:00:00:: 1 -17 reveal%2:32:00:: 2 -17 resume%2:30:00:: 1 -17 responsibility%1:04:00:: 1 -17 relax%2:29:00:: 1 -17 regular%3:00:00:: 1 -17 regard_to%1:24:00:: 1 -17 reflect%2:39:00:: 3 -17 read%2:42:00:: 2 -17 question%2:32:01:: 1 -17 puerto_rico%1:15:00:: 1 -17 provide_for%2:42:01:: 1 -17 proposal%1:10:00:: 1 -17 proceed%2:38:00:: 2 -17 problem%1:09:00:: 3 -17 previous%5:00:00:past:00 1 -17 prevention%1:04:00:: 1 -17 present%1:28:00:: 1 -17 point%1:09:01:: 4 -17 plan%2:36:00:: 3 -17 place%1:15:01:: 4 -17 pistol%1:06:00:: 1 -17 photograph%1:06:00:: 1 -17 persuade%2:41:00:: 1 -17 perfect%3:00:00:: 1 -17 pass%2:38:03:: 4 -17 paint%2:36:01:: 1 -17 original%5:00:01:first:00 1 -17 open%3:00:02:: 2 -17 open%2:35:06:: 3 -17 obtain%2:30:00:: 2 -17 observe%2:32:00:: 2 -17 novel%1:10:00:: 1 -17 news%1:10:01:: 2 -17 new_england%1:15:00:: 1 -17 negotiate%2:32:00:: 1 -17 national%3:00:00:: 2 -17 much%4:02:03:: 2 -17 mountain%1:17:00:: 1 -17 modify%2:30:00:: 1 -17 mexican%1:18:00:: 1 -17 married%3:00:00:: 1 -17 manner%1:07:01:: 2 -17 make%2:36:15:: 8 -17 majority%1:07:00:: 1 -17 lose%2:33:00:: 2 -17 look_at%2:31:00:: 1 -17 longer%4:02:00:: 1 -17 lead%2:38:00:: 4 -17 lead%2:32:00:: 5 -17 know%2:31:04:: 5 -17 justify%2:32:01:: 1 -17 journey%1:04:00:: 1 -17 iodine%1:27:00:: 1 -17 involve%2:42:00:: 3 -17 investigate%2:32:00:: 1 -17 interpret%2:31:00:: 1 -17 imply%2:32:00:: 1 -17 ignore%2:32:02:: 1 -17 hope%1:12:00:: 2 -17 hold%2:37:00:: 6 -17 hold%2:35:03:: 7 -17 here%4:02:01:: 3 -17 happen%2:41:00:: 3 -17 grow_up%2:41:00:: 1 -17 grade%1:14:00:: 1 -17 go_on%2:32:00:: 4 -17 georgia%1:15:00:: 1 -17 front%3:00:00:: 1 -17 force%2:36:00:: 2 -17 follow%2:42:01:: 6 -17 fiscal_year%1:28:00:: 1 -17 find_out%2:31:00:: 2 -17 file%1:10:00:: 1 -17 fifteen%5:00:00:cardinal:00 1 -17 favor%2:41:00:: 1 -17 fashion%1:07:00:: 1 -17 express%2:32:02:: 3 -17 experiment%2:41:01:: 1 -17 excellent%5:00:00:superior:02 1 -17 examine%2:31:00:: 1 -17 essential%5:00:00:necessary:00 1 -17 erect%2:36:00:: 1 -17 equivalent%1:09:00:: 1 -17 entitle%2:41:00:: 1 -17 enter%2:41:06:: 3 -17 enormous%5:00:00:large:00 1 -17 enforce%2:41:00:: 1 -17 encounter%2:38:00:: 1 -17 effect%2:36:00:: 1 -17 editor%1:18:00:: 1 -17 earthquake%1:11:00:: 1 -17 driver%1:18:00:: 1 -17 direction%1:24:00:: 2 -17 direct%2:32:00:: 1 -17 degree%1:26:01:: 2 -17 defense%1:04:00:: 1 -17 debate%1:10:01:: 1 -17 dance%2:38:01:: 1 -17 curse%2:32:00:: 1 -17 current%3:00:00:: 1 -17 culture%1:14:00:: 1 -17 cuba%1:15:00:: 1 -17 cry%2:32:01:: 1 -17 consideration%1:09:00:: 1 -17 competition%1:24:01:: 1 -17 comfortable%3:00:00:: 1 -17 collage%1:06:00:: 1 -17 close%4:02:01:: 1 -17 clean%3:00:01:: 1 -17 clarity%1:07:01:: 1 -17 civilization%1:14:00:: 1 -17 change%1:04:00:: 3 -17 category%1:14:00:: 1 -17 bear%2:29:01:: 2 -17 basic%5:00:00:standard:01 2 -17 automatically%4:02:00:: 1 -17 attack%1:04:00:: 1 -17 arrow%1:10:00:: 1 -17 argue%2:32:00:: 2 -17 application%1:04:02:: 1 -17 antibody%1:27:00:: 1 -17 angry%3:00:00:: 1 -17 allow%2:40:00:: 3 -17 after_all%4:02:00:: 1 -17 adequate%3:00:00:: 1 -17 accept%2:32:00:: 3 -17 a_lot%4:02:00:: 1 -17 16%5:00:00:cardinal:00 1 -16 yesterday%1:28:01:: 1 -16 world%1:14:02:: 6 -16 work_out%2:30:00:: 1 -16 wooden%5:00:00:woody:00 1 -16 well%4:02:03:: 3 -16 way%1:06:00:: 6 -16 valuable%3:00:00:: 1 -16 useful%3:00:00:: 1 -16 try%2:41:01:: 2 -16 trust%2:31:00:: 1 -16 trouble%1:26:01:: 2 -16 trouble%1:11:01:: 3 -16 tremble%2:29:00:: 1 -16 trade%1:04:05:: 1 -16 trade%1:04:00:: 2 -16 total%2:42:00:: 1 -16 thyroglobulin%1:27:00:: 1 -16 threat%1:26:00:: 1 -16 think_of%2:36:00:: 5 -16 thin%3:00:01:: 1 -16 technical%3:01:00:: 1 -16 tax%2:40:00:: 1 -16 take%2:32:02:: 16 -16 take%2:30:00:: 17 -16 symbolize%2:32:00:: 1 -16 surprise%1:12:00:: 1 -16 support%2:40:00:: 2 -16 superior%3:00:02:: 1 -16 suburb%1:15:00:: 1 -16 struggle%1:04:01:: 1 -16 strike%2:37:00:: 2 -16 stretch%2:42:00:: 1 -16 store%2:40:00:: 1 -16 stone%1:17:00:: 1 -16 still%5:00:01:nonmoving:00 1 -16 start%2:36:00:: 5 -16 speech%1:10:01:: 1 -16 space%1:25:00:: 3 -16 sound%1:09:00:: 2 -16 somehow%4:02:00:: 1 -16 signal%1:10:00:: 1 -16 sign%2:32:02:: 1 -16 sidewalk%1:06:00:: 1 -16 sexual%3:01:01:: 1 -16 several%5:00:00:individual:00 1 -16 settle%2:38:01:: 1 -16 sense%1:09:02:: 3 -16 self%1:09:00:: 1 -16 save%2:40:00:: 2 -16 roleplaying%1:04:00:: 1 -16 right%5:00:01:proper:00 3 -16 require%2:32:01:: 2 -16 require%2:32:00:: 3 -16 reduction%1:04:00:: 1 -16 receive%2:35:00:: 5 -16 reasonable%3:00:00:: 1 -16 rear%1:14:00:: 1 -16 rarely%4:02:00:: 1 -16 radio_emission%1:19:00:: 1 -16 quickly%4:02:02:: 2 -16 queen%1:05:01:: 1 -16 quality%1:07:02:: 2 -16 psychologist%1:18:00:: 1 -16 prime_minister%1:18:01:: 1 -16 prime_minister%1:18:00:: 2 -16 primary%3:00:00:: 1 -16 presumably%4:02:00:: 1 -16 prefer%2:31:00:: 2 -16 precise%3:00:00:: 1 -16 point%1:26:00:: 5 -16 plane%1:25:00:: 2 -16 outcome%1:11:00:: 1 -16 occur%2:42:00:: 3 -16 o'clock%4:02:00:: 1 -16 nod%2:32:00:: 2 -16 new_york%1:15:00:: 2 -16 need%2:42:01:: 3 -16 movement%1:04:04:: 2 -16 mm%1:23:00:: 1 -16 miss%2:39:00:: 1 -16 million%1:23:00:: 1 -16 mean%5:00:00:normal:01 1 -16 maturity%1:28:00:: 1 -16 match%2:42:00:: 1 -16 march%1:28:00:: 1 -16 manufacturer%1:14:00:: 1 -16 make%2:36:09:: 9 -16 ma%1:18:00:: 1 -16 loss%1:21:01:: 1 -16 look%1:04:00:: 2 -16 locate%2:40:00:: 1 -16 live%2:42:01:: 4 -16 little%4:02:00:: 1 -16 linguist%1:18:01:: 1 -16 leave%2:42:00:: 7 -16 laugh%1:10:00:: 1 -16 later%5:00:00:subsequent:00 1 -16 late%4:02:00:: 1 -16 largest%5:00:00:large:00 1 -16 land%2:38:00:: 1 -16 keep_on%2:42:00:: 1 -16 justice%1:07:00:: 1 -16 item%1:24:00:: 2 -16 item%1:06:00:: 3 -16 investigation%1:09:00:: 1 -16 interior%1:15:01:: 1 -16 inning%1:28:00:: 1 -16 inner%5:00:00:inward:00 1 -16 increasingly%4:02:00:: 1 -16 impressive%3:00:00:: 1 -16 imagination%1:09:01:: 1 -16 history%1:09:00:: 3 -16 hills%1:17:00:: 1 -16 hesitate%2:42:00:: 1 -16 have_got%2:40:00:: 1 -16 give%2:36:00:: 11 -16 fresh%3:00:01:: 1 -16 floor%1:06:01:: 2 -16 fire%2:33:00:: 2 -16 finding%1:04:00:: 1 -16 find%2:40:03:: 10 -16 find%2:32:01:: 11 -16 film%1:10:00:: 2 -16 feeling%1:26:00:: 3 -16 february%1:28:00:: 1 -16 feature%2:42:00:: 1 -16 fast%4:02:01:: 1 -16 fall%2:30:08:: 3 -16 extend%2:42:03:: 2 -16 electrical%3:01:00:: 1 -16 electric%3:01:00:: 1 -16 drag%2:35:00:: 1 -16 doubt%2:31:00:: 1 -16 discover%2:31:00:: 4 -16 direct%5:00:00:immediate:00 2 -16 direct%2:33:01:: 2 -16 difference%1:11:00:: 3 -16 desirable%3:00:00:: 1 -16 depend_upon%2:42:00:: 1 -16 deny%2:40:01:: 3 -16 deeply%4:02:00:: 1 -16 deep%3:00:02:: 1 -16 creature%1:03:00:: 1 -16 cover%2:42:00:: 4 -16 cost%2:42:01:: 2 -16 convenient%3:00:00:: 1 -16 control%1:24:00:: 2 -16 continuous%3:00:01:: 1 -16 concrete%1:27:00:: 1 -16 comparison%1:04:00:: 1 -16 committee%1:14:00:: 1 -16 collect%2:40:00:: 1 -16 clutch%2:35:00:: 1 -16 cloud%1:17:00:: 2 -16 cloth%1:06:00:: 1 -16 clear%2:30:02:: 1 -16 clean%2:35:00:: 1 -16 cigarette%1:06:00:: 1 -16 chief%5:00:02:important:00 1 -16 chicken%1:13:00:: 1 -16 charge%2:33:00:: 1 -16 charge%1:04:01:: 1 -16 character%1:18:02:: 1 -16 certain%3:00:02:: 2 -16 carry_out%2:30:00:: 2 -16 captain%1:18:05:: 1 -16 broken%3:00:01:: 1 -16 bright%3:00:00:: 1 -16 boy%1:18:03:: 3 -16 bother%2:37:00:: 2 -16 borrow%2:40:00:: 1 -16 benefit%1:21:00:: 1 -16 below%4:02:01:: 1 -16 beauty%1:07:00:: 1 -16 baby%1:18:00:: 1 -16 attribute%2:31:00:: 1 -16 attain%2:41:00:: 1 -16 ask%2:32:02:: 3 -16 anyway%4:02:00:: 1 -16 anti%5:00:00:counteractive:00 1 -16 alternative%1:09:00:: 1 -16 administrative%3:01:00:: 1 -16 address%2:32:00:: 1 -16 active%1:27:00:: 1 -16 action%1:04:03:: 3 -15 yet%4:02:04:: 2 -15 yes%1:10:00:: 1 -15 wrong%3:00:02:: 1 -15 write%2:32:08:: 4 -15 worse%3:00:00:: 1 -15 wire%1:06:00:: 1 -15 white%3:00:02:: 2 -15 welcome%2:40:00:: 1 -15 want%2:34:00:: 2 -15 wall%1:17:00:: 2 -15 visit%2:41:00:: 3 -15 utopia%1:10:00:: 1 -15 utilize%2:34:00:: 1 -15 uneasy%3:00:00:: 1 -15 turn_into%2:42:00:: 1 -15 tradition%1:09:02:: 2 -15 top%1:15:00:: 2 -15 tool%1:06:00:: 1 -15 tomorrow%1:28:01:: 1 -15 thin%3:00:03:: 2 -15 thereby%4:02:00:: 1 -15 theological%3:01:00:: 1 -15 term%2:32:00:: 1 -15 task%1:04:00:: 2 -15 take_off%2:38:00:: 1 -15 take%2:34:00:: 18 -15 take%2:31:09:: 19 -15 swing%2:38:00:: 2 -15 swift%5:00:00:fast:01 1 -15 surprised%3:00:00:: 1 -15 support%1:04:04:: 1 -15 supplies%1:21:00:: 1 -15 successfully%4:02:00:: 1 -15 study%2:39:00:: 3 -15 studio%1:06:00:: 1 -15 stranger%1:18:00:: 1 -15 strange%5:00:01:unfamiliar:00 2 -15 state%2:32:01:: 2 -15 stairs%1:06:00:: 1 -15 stage%1:06:00:: 3 -15 spring%2:38:01:: 1 -15 slap%2:35:00:: 1 -15 sketch%1:06:00:: 1 -15 show%2:39:04:: 9 -15 shirt%1:06:00:: 1 -15 share%2:40:01:: 3 -15 set_forth%2:32:00:: 1 -15 sense%1:09:03:: 4 -15 scope%1:07:00:: 1 -15 rule%1:09:01:: 2 -15 rule%1:09:00:: 1 -15 roar%2:32:01:: 1 -15 ring%2:39:00:: 1 -15 respect%1:09:00:: 1 -15 rely_on%2:31:01:: 1 -15 relate%2:31:00:: 1 -15 reject%2:40:00:: 2 -15 read%2:31:01:: 3 -15 radiation%1:04:00:: 2 -15 race%2:38:00:: 1 -15 quantity%1:03:00:: 1 -15 protestant%1:18:00:: 1 -15 procedure%1:04:02:: 2 -15 prepare%2:36:01:: 2 -15 powder%1:27:00:: 1 -15 plug%1:06:00:: 1 -15 please%2:37:00:: 1 -15 plato%1:18:00:: 1 -15 pitcher%1:18:00:: 1 -15 philosopher%1:18:00:: 1 -15 past%4:02:00:: 1 -15 part%1:15:00:: 5 -15 painter%1:18:00:: 1 -15 owner%1:18:00:: 1 -15 outside%4:02:00:: 1 -15 once_more%4:02:00:: 1 -15 occupy%2:42:02:: 1 -15 oath%1:10:01:: 1 -15 now%4:02:04:: 4 -15 northern%3:00:02:: 1 -15 no_more%4:02:01:: 1 -15 nigger%1:18:00:: 1 -15 need%2:37:00:: 4 -15 natural%3:00:02:: 2 -15 musician%1:18:01:: 1 -15 murmur%2:32:00:: 1 -15 move%2:41:01:: 5 -15 money%1:21:02:: 2 -15 mind%2:32:00:: 1 -15 middle-class%3:00:00:: 1 -15 metropolitan%3:01:00:: 1 -15 memory%1:09:01:: 2 -15 meet%2:41:02:: 6 -15 marked%5:00:00:noticeable:00 1 -15 magnitude%1:07:00:: 1 -15 machinery%1:06:00:: 1 -15 lower%2:38:00:: 1 -15 long_time%1:28:00:: 1 -15 line%1:14:01:: 3 -15 limit%2:41:00:: 2 -15 lie%2:42:01:: 3 -15 level%1:26:00:: 3 -15 let%2:32:00:: 2 -15 legend%1:10:01:: 1 -15 lawyer%1:18:00:: 1 -15 laughter%1:10:00:: 1 -15 jerk%2:35:01:: 1 -15 jazz%1:04:00:: 1 -15 iron%1:27:00:: 1 -15 interaction%1:04:00:: 1 -15 industry%1:04:00:: 2 -15 in_turn%4:02:00:: 1 -15 human%3:00:00:: 3 -15 hit%1:04:03:: 1 -15 helium%1:27:00:: 1 -15 healthy%3:00:00:: 1 -15 hard%3:00:01:: 3 -15 handle%2:41:03:: 2 -15 guard%1:18:03:: 1 -15 greatest%5:00:00:maximal:00 1 -15 grasp%2:35:00:: 1 -15 graph%1:10:00:: 1 -15 gradient%1:24:00:: 1 -15 glue%2:35:00:: 1 -15 get_up%2:38:01:: 1 -15 gas%1:26:00:: 1 -15 front%1:15:01:: 2 -15 four%1:23:00:: 1 -15 force%1:14:00:: 4 -15 forbid%2:32:00:: 1 -15 for_the_most_part%4:02:00:: 1 -15 fog%1:19:00:: 1 -15 flame%1:22:00:: 1 -15 feed%2:34:01:: 2 -15 extreme%5:00:00:intense:00 1 -15 extent%1:07:00:: 2 -15 expression%1:10:04:: 3 -15 exclude%2:31:01:: 1 -15 examination%1:04:00:: 1 -15 evidently%4:02:00:: 1 -15 ever%4:02:00:: 2 -15 establish%2:31:02:: 4 -15 essential%3:00:00:: 2 -15 error%1:04:02:: 1 -15 enjoy%2:34:01:: 2 -15 earn%2:40:03:: 2 -15 dust%1:27:01:: 2 -15 dress%2:29:00:: 1 -15 dress%1:06:00:: 1 -15 dream%2:36:00:: 1 -15 dozen%1:23:00:: 1 -15 distinguish%2:31:00:: 1 -15 develop%2:42:00:: 5 -15 deny%2:40:00:: 4 -15 density%1:07:00:: 1 -15 deliver%2:35:00:: 2 -15 deal%2:31:10:: 2 -15 dance%1:10:00:: 1 -15 crew%1:14:01:: 1 -15 courage%1:07:00:: 1 -15 corner%1:15:00:: 2 -15 cool%2:30:01:: 1 -15 convince%2:32:00:: 1 -15 consult%2:32:02:: 1 -15 consider%2:32:02:: 5 -15 concerned%3:00:00:: 1 -15 complement%1:10:00:: 1 -15 collect%2:40:01:: 2 -15 clock%1:06:00:: 1 -15 class%1:14:00:: 1 -15 circle%1:25:00:: 1 -15 cent%1:23:00:: 1 -15 catcher%1:18:00:: 1 -15 cast%2:36:02:: 1 -15 capital%1:21:01:: 1 -15 capacity%1:07:00:: 1 -15 cancer%1:26:00:: 1 -15 by_no_means%4:02:00:: 1 -15 breath%1:04:00:: 1 -15 break%2:30:03:: 1 -15 branch%1:20:00:: 2 -15 bond%1:19:00:: 1 -15 benefit%2:40:00:: 1 -15 benefit%1:07:00:: 2 -15 back%4:02:01:: 4 -15 back%3:00:00:: 1 -15 avocado%1:13:00:: 1 -15 average%2:42:00:: 1 -15 automobile%1:06:00:: 1 -15 august%1:28:00:: 1 -15 attempt%2:36:00:: 2 -15 at_times%4:02:00:: 1 -15 assumption%1:10:00:: 1 -15 assign%2:41:00:: 1 -15 assign%2:40:01:: 2 -15 assemble%2:36:00:: 1 -15 art%1:04:00:: 2 -15 alaska%1:15:00:: 1 -15 aircraft%1:06:00:: 1 -15 add%2:40:00:: 3 -15 acre%1:23:00:: 1 -15 30_minutes%1:28:00:: 1 -14 young_man%1:18:00:: 1 -14 wood%1:27:00:: 1 -14 wonderful%5:00:00:extraordinary:00 1 -14 washing%1:04:00:: 1 -14 visible%3:00:00:: 1 -14 virtually%4:02:00:: 1 -14 viewpoint%1:09:00:: 1 -14 very_much%4:02:01:: 1 -14 very%5:00:00:same:02 2 -14 vaguely%4:02:00:: 1 -14 upper%5:00:00:high:01 1 -14 university%1:06:00:: 2 -14 unit%1:23:00:: 1 -14 transform%2:30:02:: 1 -14 train%2:31:01:: 1 -14 thousand%5:00:00:cardinal:00 1 -14 theorem%1:10:00:: 1 -14 texas%1:15:00:: 1 -14 talent%1:09:00:: 1 -14 take%2:40:15:: 20 -14 system%1:27:00:: 3 -14 surround%2:42:00:: 1 -14 support%2:41:01:: 3 -14 support%2:35:00:: 4 -14 supper%1:13:00:: 1 -14 suggest%2:32:03:: 4 -14 subject%1:06:00:: 2 -14 student%1:18:01:: 2 -14 striking%5:00:00:impressive:00 1 -14 strike%2:35:01:: 3 -14 straight%4:02:05:: 1 -14 story%1:10:00:: 2 -14 sound%2:39:00:: 2 -14 solid%1:27:04:: 1 -14 smell%2:39:01:: 1 -14 slide%2:38:00:: 2 -14 sin%1:07:00:: 1 -14 shell%1:06:00:: 1 -14 sheep%1:05:00:: 1 -14 sharply%4:02:00:: 1 -14 shake%2:29:00:: 2 -14 sex%1:04:00:: 1 -14 set%1:14:02:: 2 -14 sensation%1:09:00:: 1 -14 send%2:38:00:: 4 -14 seek_out%2:35:00:: 1 -14 secretary%1:18:01:: 1 -14 secretary%1:18:00:: 2 -14 season%1:28:00:: 2 -14 search%1:04:00:: 1 -14 satisfactory%3:00:00:: 1 -14 saddle%1:06:00:: 1 -14 rumor%1:10:00:: 1 -14 rock%1:17:01:: 1 -14 right%4:02:08:: 2 -14 return%2:40:08:: 2 -14 resent%2:37:00:: 1 -14 represent%2:41:02:: 3 -14 relations%1:24:00:: 1 -14 regional%3:01:00:: 1 -14 recording%1:06:00:: 1 -14 reasonable%5:00:00:moderate:00 2 -14 reality%1:26:01:: 2 -14 real%3:00:02:: 2 -14 range%1:15:01:: 2 -14 raise%2:40:00:: 4 -14 question%2:32:03:: 2 -14 qualify%2:42:00:: 1 -14 quack%1:18:00:: 1 -14 publish%2:32:00:: 2 -14 provide%2:32:00:: 3 -14 proud%3:00:00:: 1 -14 president%1:18:01:: 1 -14 present%2:36:00:: 3 -14 prepared%3:00:00:: 1 -14 preparation%1:04:02:: 1 -14 praise%2:32:00:: 1 -14 position%1:07:01:: 4 -14 popular%3:00:00:: 1 -14 poet%1:18:00:: 1 -14 poem%1:10:00:: 1 -14 play%2:36:00:: 6 -14 physiological%3:01:00:: 1 -14 personality%1:07:00:: 1 -14 per_capita%5:00:00:proportionate:00 1 -14 pay%1:21:01:: 1 -14 pass_through%2:38:02:: 2 -14 party%1:14:00:: 2 -14 pain%1:12:00:: 2 -14 overcome%2:33:03:: 1 -14 order%2:32:00:: 2 -14 opium%1:06:00:: 1 -14 operate%2:35:00:: 3 -14 open%2:41:01:: 4 -14 occasion%1:11:00:: 1 -14 oblige%2:41:00:: 1 -14 obligation%1:04:00:: 1 -14 obey%2:41:00:: 1 -14 notion%1:09:02:: 1 -14 notion%1:09:00:: 2 -14 note%1:10:00:: 1 -14 nineteenth%5:00:00:ordinal:00 1 -14 nest%1:17:00:: 1 -14 neighborhood%1:14:00:: 2 -14 myth%1:10:00:: 1 -14 mysterious%5:00:00:inexplicable:00 1 -14 movement%1:11:00:: 3 -14 mouse%1:05:00:: 1 -14 mood%1:12:00:: 1 -14 mention%2:32:00:: 2 -14 meet%2:41:00:: 7 -14 measure%2:42:00:: 3 -14 mass%1:23:00:: 2 -14 mars%1:17:00:: 1 -14 march%1:04:00:: 2 -14 make%2:40:01:: 10 -14 make%2:36:05:: 11 -14 long_ago%4:02:00:: 1 -14 live%2:42:00:: 5 -14 link%2:31:00:: 1 -14 light%3:00:01:: 1 -14 lie%2:42:03:: 4 -14 left%5:00:00:unexhausted:00 2 -14 leave%2:41:00:: 8 -14 leave%2:30:01:: 9 -14 lawn%1:15:00:: 1 -14 key%1:06:00:: 1 -14 irish%3:01:00:: 1 -14 invent%2:36:00:: 1 -14 interrupt%2:32:00:: 1 -14 international_law%1:14:00:: 1 -14 interior_design%1:04:00:: 1 -14 interest%1:21:00:: 4 -14 inside%4:02:01:: 2 -14 inherit%2:40:00:: 1 -14 individual%1:18:00:: 2 -14 indicate%2:32:02:: 4 -14 increasing%3:00:00:: 1 -14 inadequate%3:00:00:: 1 -14 impression%1:09:00:: 1 -14 imply%2:32:01:: 2 -14 immortality%1:07:00:: 1 -14 hut%1:06:01:: 1 -14 hunting%1:04:01:: 1 -14 hope%1:09:00:: 3 -14 hold%2:40:02:: 8 -14 history%1:28:02:: 4 -14 grant%2:40:01:: 1 -14 go%2:42:06:: 5 -14 give%2:40:09:: 12 -14 give%2:36:01:: 13 -14 get%2:33:00:: 8 -14 generate%2:36:00:: 1 -14 game%1:04:01:: 3 -14 funny%5:00:00:humorous:00 1 -14 forty%5:00:00:cardinal:00 1 -14 forever%4:02:00:: 1 -14 foreign_policy%1:10:00:: 1 -14 folk%1:14:00:: 1 -14 float%2:38:00:: 1 -14 fit%2:42:05:: 1 -14 figure%1:06:00:: 4 -14 field%1:19:00:: 5 -14 fiction%1:10:00:: 1 -14 fiber%1:27:00:: 1 -14 feel%2:42:00:: 7 -14 fall_into%2:42:00:: 1 -14 fall%1:28:00:: 1 -14 face%2:42:00:: 3 -14 expose%2:39:02:: 1 -14 explore%2:31:00:: 1 -14 explode%2:30:01:: 1 -14 experimental%3:01:00:: 1 -14 exercise%2:34:00:: 1 -14 exchange%1:19:00:: 1 -14 exaggerate%2:32:00:: 1 -14 eventually%4:02:00:: 1 -14 european%3:01:00:: 1 -14 era%1:28:00:: 1 -14 equally%4:02:01:: 1 -14 enough%1:23:00:: 1 -14 employer%1:18:00:: 1 -14 employ%2:41:00:: 2 -14 elsewhere%4:02:00:: 1 -14 effective%5:00:00:competent:00 2 -14 distinct%5:00:00:different:00 1 -14 dismiss%2:32:00:: 1 -14 dirt%1:27:01:: 1 -14 directly%4:02:05:: 2 -14 direction%1:09:00:: 3 -14 dignity%1:07:00:: 1 -14 diagonalizable%3:01:00:: 1 -14 devise%2:36:00:: 1 -14 defend%2:33:00:: 2 -14 defeat%2:33:00:: 1 -14 december%1:28:00:: 1 -14 death%1:28:00:: 4 -14 deal%2:41:09:: 3 -14 dance%2:36:00:: 2 -14 curious%5:00:00:strange:00 1 -14 cup%1:06:00:: 1 -14 cover%2:32:01:: 5 -14 course%1:14:00:: 2 -14 context%1:10:00:: 1 -14 constant%5:00:00:invariable:00 1 -14 connection%1:24:00:: 1 -14 confusion%1:26:01:: 1 -14 compose%2:42:00:: 1 -14 common%3:00:01:: 2 -14 come_down%2:38:00:: 1 -14 combine%2:42:00:: 1 -14 combat%1:04:00:: 1 -14 club%1:14:01:: 1 -14 clinical%3:01:00:: 1 -14 classify%2:31:00:: 1 -14 claim%2:40:00:: 2 -14 chin%1:08:00:: 1 -14 cheer%1:10:00:: 1 -14 champion%1:18:01:: 1 -14 chain%1:14:00:: 1 -14 catch%2:39:01:: 2 -14 captain%1:18:02:: 2 -14 business_concern%1:14:00:: 1 -14 broad%3:00:04:: 1 -14 breath%1:27:00:: 2 -14 body%1:08:02:: 3 -14 boat%1:06:00:: 1 -14 best%4:02:01:: 1 -14 beach%1:17:00:: 1 -14 bacterial%3:01:00:: 1 -14 back%4:02:06:: 5 -14 attract%2:37:01:: 2 -14 athabascan%1:10:00:: 1 -14 assess%2:31:00:: 1 -14 as_follows%4:02:00:: 1 -14 article%1:10:00:: 1 -14 arouse%2:37:00:: 1 -14 aqueous%3:01:00:: 1 -14 apply%2:41:05:: 3 -14 appear%2:39:01:: 4 -14 anyhow%4:02:00:: 1 -14 antenna%1:06:00:: 1 -14 alive%3:00:01:: 1 -14 adam%1:18:00:: 1 -14 actor%1:18:00:: 1 -13 worthy%3:00:00:: 1 -13 worth%5:00:00:worthy:00 1 -13 wise%3:00:00:: 1 -13 weekend%1:28:00:: 1 -13 weak%3:00:00:: 1 -13 wash%2:35:02:: 1 -13 warning%1:10:00:: 1 -13 vote%1:04:00:: 1 -13 vision%1:09:03:: 1 -13 violence%1:04:01:: 1 -13 vigorous%5:00:00:energetic:00 1 -13 view_as%2:31:00:: 1 -13 vertex%1:09:00:: 1 -13 vector%1:09:00:: 1 -13 valued%5:00:00:quantitative:00 1 -13 value%1:21:00:: 3 -13 utopian%3:01:00:: 1 -13 used_to%5:00:00:accustomed:00 1 -13 upstairs%4:02:00:: 1 -13 unknown%3:00:00:: 1 -13 unit%1:24:00:: 2 -13 twist%2:38:01:: 1 -13 turn_away%2:38:02:: 1 -13 traffic%1:14:00:: 1 -13 total%1:06:00:: 1 -13 toss%2:35:04:: 1 -13 tongue%1:08:00:: 1 -13 toe%1:08:01:: 1 -13 today%1:28:01:: 2 -13 tie%2:35:00:: 1 -13 thursday%1:28:00:: 1 -13 texture%1:07:00:: 1 -13 testify%2:32:01:: 1 -13 take%2:40:01:: 21 -13 sympathetic%3:01:00:: 1 -13 sweep%2:38:01:: 1 -13 sun%1:19:00:: 2 -13 suitable%5:00:00:good:01 1 -13 suit%1:06:00:: 1 -13 suggestion%1:09:00:: 1 -13 substitute%2:40:00:: 1 -13 study%2:31:00:: 4 -13 struggle%2:41:00:: 1 -13 structure%1:07:00:: 2 -13 strive%2:41:00:: 1 -13 step%1:23:00:: 2 -13 spirit%1:07:00:: 3 -13 specifically%4:02:00:: 1 -13 south%3:00:00:: 1 -13 soft%3:00:02:: 2 -13 so-called%5:00:00:questionable:00 1 -13 snow%1:19:00:: 1 -13 snatch%2:35:00:: 1 -13 small%5:00:00:limited:00 2 -13 slight%5:00:00:little(a):03 2 -13 skeletal%3:01:00:: 1 -13 sign%2:41:00:: 2 -13 shift%2:30:00:: 1 -13 session%1:10:00:: 1 -13 sequence%1:14:00:: 1 -13 sensitive%3:00:01:: 1 -13 selection%1:04:00:: 1 -13 seize%2:35:00:: 1 -13 see%2:41:11:: 11 -13 secretary_of_the_treasury%1:18:00:: 1 -13 secede%2:41:00:: 1 -13 search%2:35:00:: 1 -13 scene%1:09:00:: 3 -13 satisfy%2:42:00:: 1 -13 sample%1:09:01:: 2 -13 sail%2:38:03:: 1 -13 safety%1:26:00:: 1 -13 rousseau%1:18:00:: 1 -13 rough%3:00:00:: 1 -13 roar%1:11:00:: 1 -13 review%2:31:00:: 1 -13 respiratory%3:01:00:: 1 -13 residential%3:00:00:: 1 -13 required%5:00:00:necessary:00 1 -13 reproduce%2:36:00:: 1 -13 remind%2:32:00:: 2 -13 remarkable%5:00:00:extraordinary:00 1 -13 refuse%2:40:00:: 2 -13 reach%2:42:00:: 6 -13 rain%2:43:00:: 1 -13 railroad%1:06:00:: 1 -13 quit%2:42:04:: 1 -13 quiet%3:00:02:: 1 -13 protest%2:32:00:: 1 -13 prominent%5:00:00:conspicuous:00 1 -13 productivity%1:07:00:: 1 -13 proclaim%2:32:02:: 1 -13 principle%1:09:03:: 1 -13 present%2:40:01:: 4 -13 power%1:19:00:: 2 -13 power%1:09:01:: 3 -13 pool%1:06:00:: 1 -13 point_of_view%1:09:00:: 1 -13 plenty%1:07:00:: 1 -13 place%2:41:01:: 2 -13 piece%1:06:05:: 2 -13 pick%2:31:00:: 1 -13 phone%1:06:00:: 1 -13 permanent%3:00:00:: 1 -13 performance%1:04:00:: 3 -13 perfectly%4:02:00:: 1 -13 peace%1:26:00:: 1 -13 pass%2:40:00:: 5 -13 particular%5:00:02:specific:00 3 -13 participation%1:04:00:: 1 -13 part%1:04:01:: 6 -13 park%1:15:00:: 1 -13 paramagnetic%3:01:00:: 1 -13 papers%1:10:00:: 1 -13 painting%1:06:00:: 1 -13 paint%2:35:00:: 2 -13 out%3:00:01:: 1 -13 openly%4:02:00:: 1 -13 open%5:00:00:unprotected:00 3 -13 only%4:02:00:: 3 -13 once_again%4:02:00:: 1 -13 off%4:02:03:: 1 -13 october%1:28:00:: 1 -13 note%1:10:03:: 2 -13 newspaper%1:14:00:: 2 -13 musketry%1:14:00:: 1 -13 mode%1:07:00:: 1 -13 ml%1:23:00:: 1 -13 mistake%1:04:00:: 1 -13 miss%2:37:00:: 2 -13 mind%1:09:01:: 2 -13 mark%2:35:09:: 1 -13 mark%2:32:02:: 2 -13 mark%2:31:09:: 3 -13 make_for%2:36:00:: 1 -13 maintain%2:34:00:: 3 -13 maid%1:18:01:: 1 -13 magazine%1:10:00:: 1 -13 love%2:37:01:: 3 -13 lot%1:23:00:: 1 -13 look_around%2:39:00:: 1 -13 london%1:15:00:: 1 -13 line%1:25:00:: 4 -13 light%1:09:01:: 3 -13 lie%1:10:00:: 1 -13 lead%2:42:00:: 6 -13 lead%2:41:00:: 7 -13 laos%1:15:00:: 1 -13 landscape%1:15:00:: 1 -13 just%4:02:04:: 5 -13 july%1:28:00:: 1 -13 island%1:17:00:: 1 -13 inspect%2:39:00:: 1 -13 inquire%2:32:01:: 1 -13 injury%1:26:00:: 1 -13 infantry%1:14:00:: 1 -13 indication%1:10:00:: 1 -13 ignore%2:32:00:: 2 -13 house%2:42:02:: 1 -13 home_run%1:04:00:: 1 -13 goods%1:06:00:: 1 -13 good_deal%1:23:00:: 1 -13 get_in%2:38:01:: 1 -13 gas%1:27:00:: 2 -13 gain%2:40:01:: 2 -13 foster%2:41:00:: 1 -13 formal%3:00:01:: 1 -13 force%2:38:00:: 3 -13 follow%2:30:00:: 7 -13 flow%2:38:01:: 1 -13 fling%2:35:00:: 1 -13 find%2:30:00:: 12 -13 figure%1:18:00:: 5 -13 fifth%5:00:00:ordinal:00 1 -13 fasten%2:35:01:: 1 -13 extensive%5:00:00:large:00 1 -13 extension%1:28:00:: 1 -13 expensive%3:00:00:: 1 -13 exhibit%2:42:00:: 1 -13 example%1:09:02:: 2 -13 even%4:02:03:: 2 -13 estimate%1:09:00:: 1 -13 essay%1:10:00:: 1 -13 equal%2:42:00:: 1 -13 engineer%1:18:00:: 1 -13 end%1:09:00:: 5 -13 enact%2:41:00:: 1 -13 eliminate%2:42:01:: 2 -13 eat%2:34:01:: 2 -13 duty%1:04:00:: 1 -13 drive%2:38:02:: 3 -13 drive%2:35:00:: 4 -13 draw%2:35:03:: 1 -13 dramatic%3:00:00:: 1 -13 drag%2:35:01:: 2 -13 downtown%3:00:00:: 1 -13 dot%1:25:00:: 1 -13 distribution%1:07:00:: 2 -13 dislike%2:37:00:: 1 -13 discharge%1:11:00:: 1 -13 direct%2:36:00:: 3 -13 difficulty%1:09:02:: 2 -13 design%1:04:00:: 1 -13 democratic%3:00:00:: 1 -13 degree%1:10:00:: 3 -13 definite%3:00:00:: 1 -13 define%2:32:00:: 2 -13 deem%2:31:00:: 1 -13 deduct%2:31:01:: 1 -13 decrease%2:30:00:: 1 -13 declare%2:32:05:: 2 -13 dark%5:00:00:brunet:00 3 -13 curious%3:00:00:: 2 -13 cry%1:10:00:: 1 -13 criticize%2:32:00:: 1 -13 creative%3:00:00:: 1 -13 couple%1:14:00:: 1 -13 correct%2:30:00:: 1 -13 convert%2:30:00:: 1 -13 contribute%2:41:12:: 3 -13 constantly%4:02:02:: 1 -13 confidence%1:09:00:: 1 -13 common%5:00:00:shared:00 3 -13 colored%3:00:00:: 1 -13 cold%3:00:02:: 2 -13 close%2:41:01:: 4 -13 clergyman%1:18:00:: 1 -13 cleaning%1:04:00:: 1 -13 class%1:14:03:: 2 -13 city%1:15:01:: 2 -13 cite%2:32:00:: 1 -13 cherish%2:37:00:: 1 -13 charge%1:10:00:: 2 -13 changing%5:00:00:dynamic:00 1 -13 change%2:30:02:: 3 -13 change%1:19:00:: 4 -13 central_city%1:15:00:: 1 -13 camping%1:04:00:: 1 -13 california%1:15:00:: 1 -13 calendar_year%1:28:00:: 1 -13 cafeteria%1:06:00:: 1 -13 business%1:04:00:: 3 -13 bumblebee%1:05:00:: 1 -13 bull's_eye%1:04:00:: 1 -13 bronchiole%1:08:00:: 1 -13 break%2:30:00:: 2 -13 bounce%2:38:00:: 1 -13 boston%1:15:00:: 1 -13 boot%1:06:00:: 1 -13 bond%1:21:02:: 2 -13 blue%5:00:00:northern:02 2 -13 bible%1:10:00:: 1 -13 below%4:02:00:: 2 -13 behind%4:02:00:: 1 -13 bear%2:31:00:: 3 -13 based%3:44:00:: 1 -13 away%4:02:03:: 3 -13 average%1:09:00:: 1 -13 autonomic%5:00:00:involuntary:02 1 -13 assumption%1:09:00:: 2 -13 assume%2:41:00:: 2 -13 assume%2:30:00:: 3 -13 assemble%2:41:00:: 2 -13 arrangement%1:09:01:: 1 -13 arrange%2:36:04:: 1 -13 arrange%2:35:00:: 2 -13 around%4:02:05:: 2 -13 appoint%2:41:01:: 1 -13 apply%2:32:00:: 4 -13 applicant%1:18:00:: 1 -13 announce%2:32:02:: 2 -13 amazement%1:12:00:: 1 -13 afterward%4:02:00:: 1 -13 afford%2:40:00:: 2 -13 admire%2:37:00:: 1 -13 actually%4:02:00:: 2 -13 activity%1:22:00:: 3 -13 accomplish%2:41:00:: 2 -13 absolutely%4:02:00:: 1 -13 above%5:00:00:preceding(a):00 1 -13 a_thousand%5:00:00:cardinal:00 1 -13 9%5:00:00:cardinal:00 1 -13 4%1:23:00:: 1 -13 22%5:00:00:cardinal:00 1 -12 yard%1:06:02:: 2 -12 wrong%3:00:01:: 2 -12 worship%1:04:00:: 1 -12 wish%2:32:02:: 4 -12 wide%5:00:00:comprehensive:00 2 -12 wheel%1:06:00:: 1 -12 wednesday%1:28:00:: 1 -12 way%1:04:02:: 7 -12 warrant%2:32:00:: 1 -12 virgin_islands%1:15:00:: 1 -12 view%2:39:00:: 2 -12 view%1:09:01:: 2 -12 vase%1:06:00:: 1 -12 vacuum%1:26:00:: 1 -12 use%2:34:02:: 2 -12 unstructured%3:00:00:: 1 -12 universe%1:17:00:: 1 -12 unfortunately%4:02:00:: 1 -12 undergo%2:39:00:: 1 -12 unadjusted%3:00:00:: 1 -12 turn_to%2:32:01:: 1 -12 turn_on%2:35:00:: 1 -12 turn%2:42:00:: 3 -12 tune%1:10:00:: 1 -12 tuesday%1:28:00:: 1 -12 tray%1:06:00:: 1 -12 together%4:02:10:: 4 -12 times%1:28:01:: 1 -12 the_matter%5:00:00:malfunctioning:00 1 -12 television%1:10:00:: 1 -12 telephone%2:32:00:: 1 -12 teenager%1:18:00:: 1 -12 technology%1:04:00:: 1 -12 talk%1:10:00:: 1 -12 take_part%2:41:00:: 1 -12 take_over%2:40:07:: 1 -12 take_into_account%2:31:00:: 1 -12 swim%2:38:00:: 1 -12 sweep%2:38:00:: 2 -12 swallow%2:34:00:: 1 -12 sum%1:21:00:: 1 -12 suggest%2:32:01:: 5 -12 suffer%2:37:00:: 3 -12 succeed%2:41:01:: 2 -12 subsection%1:06:00:: 1 -12 submit%2:32:01:: 1 -12 structured%3:00:00:: 1 -12 strategy%1:09:00:: 1 -12 steeple%1:06:00:: 1 -12 standard%3:00:02:: 1 -12 spectator%1:18:00:: 1 -12 space%1:15:00:: 4 -12 source%1:10:00:: 2 -12 source%1:09:00:: 3 -12 solution%1:27:00:: 1 -12 soil%1:27:01:: 2 -12 smoke%2:34:00:: 1 -12 smell%2:39:00:: 2 -12 sixth%5:00:00:ordinal:00 1 -12 silence%1:26:00:: 1 -12 sight%1:10:00:: 2 -12 side%1:15:00:: 4 -12 shift%2:38:00:: 2 -12 sheet%1:17:00:: 1 -12 shatter%2:30:00:: 1 -12 share%1:21:01:: 2 -12 set%2:32:00:: 3 -12 sell%2:42:00:: 2 -12 seed%1:20:00:: 1 -12 see%2:41:12:: 12 -12 score%2:35:00:: 2 -12 scientific%3:01:00:: 1 -12 scientific%3:00:00:: 2 -12 school%1:06:00:: 2 -12 run_away%2:38:00:: 1 -12 rule%2:41:00:: 1 -12 round%3:00:00:: 1 -12 return%2:30:00:: 3 -12 respect%2:31:00:: 1 -12 resource%1:21:00:: 1 -12 resolution%1:10:01:: 1 -12 resist%2:42:01:: 1 -12 report%2:32:03:: 3 -12 render%2:30:00:: 1 -12 relief%1:12:00:: 1 -12 release%2:35:00:: 1 -12 related_to%3:00:00:: 1 -12 regardless%4:02:00:: 1 -12 regard%2:42:00:: 3 -12 refer%2:31:00:: 3 -12 redcoat%1:18:00:: 1 -12 quality%1:09:00:: 3 -12 purely%4:02:00:: 1 -12 punishment%1:04:00:: 1 -12 publicly%4:02:00:: 1 -12 progress%2:30:00:: 1 -12 profound%3:00:00:: 1 -12 professional%3:00:01:: 1 -12 production%1:10:00:: 2 -12 produce%2:39:01:: 4 -12 private_eye%1:18:00:: 1 -12 private%1:18:00:: 1 -12 prisoner%1:18:00:: 1 -12 print%2:36:02:: 1 -12 principal%1:21:01:: 1 -12 pretend%2:32:00:: 1 -12 presume%2:31:00:: 1 -12 pour%2:38:03:: 1 -12 postpone%2:42:00:: 1 -12 possibility%1:09:00:: 3 -12 possess%2:40:00:: 2 -12 position%1:26:00:: 5 -12 position%1:04:01:: 6 -12 poor%3:00:00:: 3 -12 plainly%4:02:00:: 1 -12 pink%5:00:00:chromatic:00 1 -12 philosophy%1:09:01:: 1 -12 persuade%2:32:00:: 2 -12 personal%5:00:00:subjective:00 2 -12 pennsylvania%1:15:00:: 1 -12 pay%2:40:04:: 3 -12 pause%2:32:01:: 2 -12 pause%1:28:00:: 1 -12 party%1:14:02:: 3 -12 paper%1:10:03:: 3 -12 pale%5:00:00:light:05 1 -12 outline%2:32:00:: 1 -12 originate%2:42:00:: 1 -12 organization%1:09:00:: 2 -12 operation%1:26:00:: 1 -12 offer%2:41:00:: 3 -12 off%4:02:00:: 2 -12 observe%2:39:01:: 3 -12 nuclear%3:00:00:: 1 -12 no_more%4:02:05:: 2 -12 nilpotent%3:01:00:: 1 -12 negative%3:00:02:: 1 -12 need%1:03:00:: 3 -12 necessitate%2:42:00:: 1 -12 nature%1:18:00:: 2 -12 mythological%5:00:00:unreal:00 1 -12 music%1:09:00:: 2 -12 murderer%1:18:00:: 1 -12 move_into%2:38:00:: 1 -12 mouth%1:08:00:: 2 -12 most%1:23:00:: 1 -12 minimize%2:30:00:: 1 -12 mine%1:06:01:: 1 -12 military%3:00:02:: 2 -12 mess%1:26:00:: 1 -12 mental%3:00:00:: 1 -12 meet%2:41:03:: 8 -12 match%2:40:00:: 2 -12 mass%1:14:02:: 3 -12 market%1:04:00:: 1 -12 make_one's_way%2:38:00:: 1 -12 make%2:42:05:: 12 -12 make%2:38:02:: 13 -12 mail%2:35:00:: 1 -12 magnificent%5:00:00:impressive:00 1 -12 mad%5:00:00:angry:00 1 -12 lyric%1:10:01:: 1 -12 lunch%1:13:00:: 1 -12 loss%1:22:00:: 2 -12 locate%2:42:00:: 2 -12 living_room%1:06:00:: 1 -12 little%5:00:00:young:00 4 -12 little%5:00:00:minor:06 5 -12 little%1:23:00:: 1 -12 light%2:30:00:: 1 -12 lick%2:35:01:: 1 -12 less%4:02:01:: 2 -12 lamp%1:06:00:: 1 -12 lagoon%1:17:00:: 1 -12 january%1:28:00:: 1 -12 jacket%1:06:00:: 1 -12 issue%2:41:00:: 2 -12 issue%2:32:01:: 3 -12 isolate%2:30:00:: 1 -12 involve%2:42:07:: 4 -12 invariably%4:02:00:: 1 -12 intention%1:09:00:: 1 -12 intensity%1:07:00:: 2 -12 insure%2:31:00:: 1 -12 insert%2:35:00:: 1 -12 injure%2:29:00:: 1 -12 improve%2:30:00:: 2 -12 impossible%5:00:00:unthinkable:00 2 -12 impose%2:41:00:: 1 -12 identity%1:07:00:: 1 -12 identical%5:00:00:same:00 1 -12 homer%1:04:00:: 1 -12 hole%1:17:01:: 1 -12 highway%1:06:00:: 1 -12 hear%2:41:00:: 3 -12 haste%1:07:00:: 1 -12 hard%4:02:00:: 1 -12 hang%2:35:00:: 2 -12 guide%2:38:01:: 1 -12 grow%2:30:01:: 4 -12 greet%2:32:00:: 1 -12 good%3:00:02:: 3 -12 gone%5:00:00:absent:00 1 -12 go_wrong%2:41:00:: 1 -12 glass%1:06:00:: 2 -12 give%2:40:02:: 14 -12 garage%1:06:00:: 1 -12 future%3:00:00:: 1 -12 frown%2:29:00:: 1 -12 frequency%1:28:00:: 1 -12 form%2:30:01:: 4 -12 for_a_while%4:02:01:: 1 -12 follow%2:42:02:: 8 -12 foe%1:18:01:: 1 -12 flesh%1:08:02:: 1 -12 fixed%5:00:00:determinate:01 1 -12 fish%1:05:00:: 1 -12 firm%5:00:00:resolute:00 1 -12 finish%2:30:01:: 2 -12 fill%2:30:00:: 2 -12 feel_like%2:37:00:: 1 -12 favor%1:04:00:: 1 -12 farming%1:04:00:: 1 -12 extraordinary%3:00:00:: 1 -12 extra%5:00:00:added:00 1 -12 experiment%1:09:00:: 2 -12 expect%2:31:01:: 3 -12 exert%2:34:00:: 1 -12 exciting%3:00:00:: 1 -12 estimated%5:00:00:calculable:00 1 -12 encourage%2:37:00:: 2 -12 else%5:00:00:added:00 2 -12 eleven%5:00:00:cardinal:00 1 -12 electron%1:17:00:: 1 -12 eighth%5:00:00:ordinal:00 1 -12 effort%1:04:01:: 2 -12 efficiency%1:24:00:: 1 -12 effectively%4:02:01:: 1 -12 duty%1:04:02:: 2 -12 dump%2:40:00:: 1 -12 dry%2:30:01:: 1 -12 drop%2:30:00:: 3 -12 draw%2:37:03:: 2 -12 drama%1:10:01:: 1 -12 double%2:30:00:: 1 -12 double%1:04:00:: 1 -12 district_of_columbia%1:15:00:: 1 -12 disk%1:25:00:: 1 -12 discovery%1:04:00:: 1 -12 discourage%2:32:01:: 1 -12 dirty%3:00:01:: 1 -12 dialysis%1:04:00:: 1 -12 devil%1:18:02:: 1 -12 develop%2:30:04:: 6 -12 despair%1:26:00:: 1 -12 designate%2:32:00:: 1 -12 design%1:09:01:: 2 -12 descend%2:38:00:: 1 -12 deliberately%4:02:00:: 1 -12 defeat%1:11:00:: 1 -12 deep%5:00:00:profound:00 2 -12 deduction%1:21:01:: 1 -12 deae_cellulose%1:27:00:: 1 -12 damage%2:30:00:: 1 -12 cure%2:29:00:: 1 -12 culture%1:09:00:: 2 -12 cry%2:29:00:: 2 -12 crowded%3:00:00:: 1 -12 criminal%1:18:00:: 1 -12 covered%3:00:00:: 1 -12 country%1:14:01:: 3 -12 counterpart%1:09:00:: 1 -12 conventional%3:00:00:: 1 -12 contribution%1:04:02:: 1 -12 continuity%1:26:00:: 1 -12 continued%3:00:00:: 1 -12 content%1:14:00:: 1 -12 conscience%1:16:00:: 1 -12 conference%1:14:00:: 1 -12 condition%1:10:01:: 2 -12 concerned%5:00:00:involved:00 2 -12 concern%1:12:01:: 2 -12 competitive%3:00:00:: 1 -12 compare%2:42:00:: 2 -12 commute%2:30:04:: 1 -12 commit%2:41:00:: 1 -12 commit%2:32:01:: 2 -12 come_in%2:38:01:: 2 -12 combine%2:30:02:: 2 -12 colored%5:00:00:black:02 2 -12 collection%1:14:00:: 1 -12 collect%2:35:00:: 3 -12 character%1:09:00:: 2 -12 chaos%1:26:00:: 1 -12 challenge%2:32:01:: 1 -12 canteen%1:06:00:: 1 -12 call_out%2:32:01:: 1 -12 business%1:09:01:: 4 -12 broad%5:00:00:comprehensive:00 2 -12 brief%5:00:00:short:02 1 -12 breakfast%1:13:00:: 1 -12 blame%2:32:00:: 1 -12 bitter%5:00:00:resentful:00 1 -12 bite%2:35:00:: 1 -12 birth_control%1:04:00:: 1 -12 belief%1:10:01:: 2 -12 being%1:26:00:: 1 -12 band%1:14:01:: 1 -12 back%1:06:00:: 2 -12 attitude%1:07:01:: 2 -12 as_such%4:02:00:: 1 -12 around%4:02:04:: 3 -12 appreciate%2:37:00:: 1 -12 answer%1:10:00:: 3 -12 all_over%4:02:01:: 1 -12 aim%1:09:00:: 1 -12 adventure%1:04:00:: 1 -12 accurate%3:00:00:: 1 -12 account%1:10:00:: 1 -12 accept%2:31:01:: 4 -12 absent%3:00:00:: 1 -12 21%5:00:00:cardinal:00 1 -12 2%1:23:00:: 1 -11 work%1:09:00:: 4 -11 wind_up%2:30:01:: 1 -11 will%1:09:00:: 1 -11 wildly%4:02:00:: 1 -11 wholly%4:02:00:: 1 -11 weary%5:00:00:tired:00 1 -11 way_of_life%1:04:00:: 1 -11 voyage%1:04:01:: 1 -11 volume%1:07:03:: 2 -11 visit%1:04:02:: 1 -11 veteran%5:00:00:experienced:00 1 -11 very%4:02:01:: 2 -11 varied%3:00:00:: 1 -11 vanish%2:30:00:: 1 -11 urge%2:32:03:: 2 -11 twenty-five%5:00:00:cardinal:00 1 -11 twentieth%5:00:00:ordinal:00 1 -11 trouble%1:11:00:: 4 -11 transducer%1:06:00:: 1 -11 top%3:00:00:: 1 -11 tone%1:07:01:: 3 -11 today%4:02:00:: 2 -11 to_be_sure%4:02:00:: 1 -11 to_and_fro%4:02:00:: 1 -11 thrust%2:38:00:: 1 -11 thought%1:09:02:: 3 -11 though%4:02:01:: 2 -11 thinking%1:09:00:: 1 -11 thicket%1:14:00:: 1 -11 theology%1:09:01:: 1 -11 terror%1:12:00:: 1 -11 terrible%5:00:00:alarming:00 1 -11 tendency%1:09:00:: 1 -11 technical%3:00:00:: 2 -11 take_advantage%2:40:00:: 1 -11 syllable%1:10:00:: 1 -11 sweat%1:08:00:: 1 -11 suspicion%1:09:01:: 1 -11 surrounding%5:00:00:close:01 1 -11 surprising%3:00:00:: 1 -11 surface%1:17:00:: 3 -11 supervise%2:41:00:: 1 -11 suitcase%1:06:00:: 1 -11 suffering%1:26:00:: 1 -11 subject%1:09:00:: 3 -11 stumble%2:38:01:: 1 -11 struggle%1:04:02:: 2 -11 stretch%2:29:01:: 2 -11 store%2:40:02:: 2 -11 stiffen%2:30:00:: 1 -11 steady%3:00:00:: 1 -11 startling%5:00:00:surprising:00 1 -11 start%2:36:01:: 6 -11 start%1:11:00:: 1 -11 standard%1:10:00:: 1 -11 standard%1:09:00:: 2 -11 sport%1:04:00:: 1 -11 spit%2:29:00:: 1 -11 spin%2:38:01:: 1 -11 speak_of%2:32:00:: 1 -11 speak%2:32:03:: 4 -11 sound%1:19:00:: 3 -11 sound%1:11:00:: 4 -11 socialism%1:09:00:: 1 -11 snow%1:27:00:: 2 -11 smooth%3:00:00:: 1 -11 slope%1:17:00:: 1 -11 slip%2:38:01:: 1 -11 skin%1:08:00:: 1 -11 skilled%3:00:00:: 1 -11 side%1:06:00:: 5 -11 show%2:39:01:: 10 -11 sheet%1:10:00:: 2 -11 shape%2:31:00:: 1 -11 shakespeare%1:18:00:: 1 -11 section%1:15:01:: 3 -11 secondary%3:00:01:: 1 -11 search%2:39:00:: 2 -11 screw%2:35:00:: 1 -11 schedule%1:09:00:: 1 -11 satisfied%5:00:00:contented:00 1 -11 route%1:15:00:: 1 -11 root%1:20:00:: 1 -11 roadway%1:06:00:: 1 -11 right%4:02:09:: 3 -11 rider%1:18:00:: 1 -11 retired%5:00:00:inactive:08 1 -11 restrain%2:41:01:: 1 -11 response%1:19:00:: 1 -11 response%1:04:01:: 2 -11 resist%2:33:00:: 2 -11 residence%1:15:00:: 1 -11 rescue%2:41:00:: 1 -11 requirement%1:09:00:: 3 -11 request%2:32:01:: 1 -11 represent%2:41:00:: 4 -11 repeat%2:36:00:: 2 -11 repair%2:30:00:: 1 -11 relevant%3:00:00:: 1 -11 reinforce%2:30:00:: 1 -11 recognize%2:31:00:: 4 -11 reasonably%4:02:00:: 1 -11 ray%1:19:00:: 1 -11 random_variable%1:09:00:: 1 -11 radar%1:06:00:: 1 -11 quarrel%2:32:00:: 1 -11 pursue%2:41:00:: 1 -11 protest%1:10:00:: 1 -11 proprietor%1:18:00:: 1 -11 promise%2:32:01:: 2 -11 professional%3:01:01:: 2 -11 probable%3:00:00:: 1 -11 private_detective%1:18:00:: 1 -11 prestige%1:26:00:: 1 -11 preliminary%5:00:00:exploratory:00 1 -11 practice%2:41:00:: 1 -11 posse%1:14:00:: 1 -11 porous%5:00:00:permeable:00 1 -11 political%3:01:01:: 2 -11 policeman%1:18:00:: 1 -11 poetry%1:10:02:: 1 -11 playing%1:04:01:: 1 -11 persist%2:42:00:: 1 -11 pat%2:35:01:: 1 -11 part%4:02:00:: 1 -11 park%2:35:00:: 1 -11 paint%2:36:00:: 3 -11 pack%2:35:00:: 1 -11 owe%2:40:01:: 1 -11 outlook%1:09:01:: 1 -11 origin%1:15:00:: 1 -11 organize%2:41:01:: 1 -11 organization%1:14:01:: 3 -11 orbit%1:15:00:: 1 -11 operation%1:04:06:: 2 -11 older%5:00:00:old:02 1 -11 old_woman%1:18:00:: 1 -11 observer%1:18:00:: 1 -11 nowhere%4:02:00:: 1 -11 north%4:02:00:: 1 -11 ninth%5:00:00:ordinal:00 1 -11 next%4:02:00:: 1 -11 new%5:00:00:inexperienced:00 3 -11 necessity%1:26:00:: 1 -11 near%2:38:00:: 1 -11 named%5:00:00:titled:00 1 -11 municipal%3:01:00:: 1 -11 more_or_less%4:02:00:: 1 -11 model%1:09:03:: 2 -11 mob%1:14:00:: 1 -11 mixture%1:27:00:: 1 -11 mimesis%1:09:00:: 1 -11 millions%1:23:00:: 1 -11 micrometeorite%1:17:00:: 1 -11 micelle%1:17:00:: 1 -11 message%1:10:00:: 2 -11 meet%2:38:06:: 9 -11 medieval%3:01:00:: 1 -11 means%1:06:00:: 2 -11 maximum%1:23:00:: 1 -11 maturity%1:26:00:: 2 -11 manifold%1:06:00:: 1 -11 manchester%1:15:01:: 1 -11 mainly%4:02:00:: 1 -11 lucky%5:00:00:fortunate:00 1 -11 low%5:00:00:soft:04 3 -11 los_angeles%1:15:00:: 1 -11 look_back%2:39:00:: 1 -11 liver%1:08:00:: 1 -11 liquor%1:13:00:: 1 -11 line%1:10:02:: 5 -11 lie_down%2:38:00:: 1 -11 legal%3:00:00:: 1 -11 leather%1:27:00:: 1 -11 lay%2:35:00:: 2 -11 law%1:09:00:: 3 -11 lap%1:08:00:: 1 -11 land%1:15:01:: 3 -11 kick%2:35:01:: 1 -11 kansas_city%1:15:00:: 1 -11 judgment%1:04:02:: 2 -11 judge%2:31:02:: 1 -11 investigate%2:32:01:: 2 -11 interpretation%1:09:01:: 1 -11 intermediate%3:00:00:: 1 -11 interfere%2:41:01:: 1 -11 instruction%1:10:04:: 1 -11 insane%3:00:00:: 1 -11 innocent%3:00:00:: 1 -11 induce%2:36:00:: 1 -11 incur%2:42:00:: 1 -11 in_detail%4:02:00:: 1 -11 impact%1:11:00:: 1 -11 immediate%5:00:00:present(a):01 4 -11 imitation%1:09:00:: 1 -11 imagine%2:31:01:: 2 -11 however%4:02:02:: 3 -11 honor%1:10:00:: 1 -11 historical%3:01:00:: 1 -11 height%1:07:00:: 1 -11 heat%2:30:01:: 1 -11 hay%1:13:00:: 1 -11 have%2:29:02:: 13 -11 hang%2:41:00:: 3 -11 half%5:00:00:incomplete:00 2 -11 gymnastics%1:04:00:: 1 -11 guide%2:38:00:: 2 -11 grunt%2:32:00:: 1 -11 ground%1:16:00:: 2 -11 govern%2:41:02:: 1 -11 good%1:07:00:: 1 -11 go_down%2:38:02:: 1 -11 glad%3:00:00:: 1 -11 get_into%2:42:00:: 1 -11 germany%1:15:00:: 1 -11 german%3:01:00:: 1 -11 generally%4:02:01:: 2 -11 furniture%1:06:00:: 1 -11 full-time%3:00:00:: 1 -11 frequency%1:24:00:: 2 -11 formulation%1:27:00:: 1 -11 form%2:36:00:: 5 -11 fluorescence%1:19:00:: 1 -11 flourish%2:30:01:: 1 -11 flat%5:00:00:even:01 1 -11 fit%2:42:02:: 2 -11 firmly%4:02:02:: 1 -11 finite%3:00:00:: 1 -11 find%2:39:05:: 13 -11 fewer%3:00:00:: 1 -11 female%3:00:00:: 1 -11 fee%1:21:00:: 1 -11 federal_government%1:14:00:: 1 -11 fact%1:26:01:: 3 -11 fabric%1:06:00:: 1 -11 eye%2:39:00:: 1 -11 extremely%4:02:02:: 1 -11 extend%2:42:01:: 3 -11 exhibit%2:39:01:: 2 -11 exercise%2:41:00:: 2 -11 examine%2:39:00:: 2 -11 every_day%4:02:00:: 1 -11 every%5:00:02:all(a):00 1 -11 equip%2:40:00:: 1 -11 entity%1:03:00:: 1 -11 entitled%5:00:00:eligible:00 1 -11 enemy%1:18:00:: 2 -11 electoral%3:01:00:: 1 -11 effectiveness%1:07:00:: 1 -11 effect%1:07:00:: 2 -11 dwelling%1:06:00:: 1 -11 dry%2:30:00:: 2 -11 drip%2:38:00:: 1 -11 dream%2:39:00:: 2 -11 downtown%1:15:00:: 1 -11 doorway%1:06:00:: 1 -11 dollar%1:21:00:: 2 -11 do%2:42:01:: 7 -11 divide%2:31:00:: 2 -11 distinction%1:09:00:: 1 -11 dirt%1:26:00:: 2 -11 difficulty%1:26:00:: 3 -11 development%1:22:01:: 3 -11 determine%2:32:03:: 4 -11 derive%2:40:00:: 2 -11 depart%2:38:04:: 1 -11 denote%2:32:01:: 1 -11 delightful%5:00:00:pleasing:00 1 -11 definition%1:10:00:: 1 -11 deep%3:00:01:: 3 -11 declare%2:32:01:: 3 -11 day%1:28:04:: 5 -11 dawn%1:28:00:: 1 -11 dare%2:41:00:: 1 -11 damage%1:11:00:: 1 -11 current%1:19:01:: 1 -11 cry%2:32:07:: 3 -11 creep%2:38:00:: 1 -11 course%1:15:00:: 3 -11 country%1:15:01:: 4 -11 corner%1:06:02:: 3 -11 convict%2:32:00:: 1 -11 consideration%1:09:01:: 2 -11 conservative%3:00:00:: 1 -11 connection%1:26:00:: 2 -11 confront%2:32:00:: 2 -11 conception%1:09:00:: 1 -11 comprehend%2:31:00:: 1 -11 complicated%5:00:00:complex:00 1 -11 comparable%3:00:00:: 1 -11 commonly%4:02:00:: 1 -11 command%1:14:00:: 2 -11 come%2:30:02:: 7 -11 cluster%1:14:00:: 1 -11 clay%1:27:00:: 1 -11 claim%1:10:02:: 2 -11 civil_war%1:04:00:: 1 -11 choose%2:31:01:: 3 -11 choice%1:09:00:: 1 -11 chiefly%4:02:00:: 1 -11 chemical%3:01:00:: 1 -11 character%1:07:01:: 3 -11 central%5:00:00:important:00 1 -11 center%2:42:00:: 1 -11 celebrate%2:41:01:: 1 -11 case%1:09:00:: 4 -11 cannon%1:06:00:: 1 -11 calm%5:00:00:composed:00 1 -11 burst%2:30:00:: 1 -11 burn%2:30:02:: 1 -11 builder%1:27:00:: 1 -11 build%2:30:00:: 2 -11 brush%2:35:01:: 1 -11 brush%1:14:00:: 1 -11 british%3:01:00:: 1 -11 brilliant%5:00:00:superior:02 1 -11 brightness%1:07:00:: 1 -11 brass%1:27:00:: 1 -11 bow%2:32:00:: 1 -11 bloom%2:30:00:: 1 -11 blink%2:29:00:: 1 -11 blind%3:00:00:: 1 -11 biological%3:01:00:: 1 -11 bend%2:38:01:: 2 -11 beg%2:32:00:: 1 -11 bat%2:35:01:: 1 -11 barely%4:02:00:: 1 -11 assurance%1:09:00:: 1 -11 associated%5:00:00:related:02 1 -11 arms%1:06:00:: 1 -11 approval%1:04:02:: 1 -11 appropriate%2:31:00:: 1 -11 appreciate%2:31:00:: 2 -11 apply%2:35:00:: 5 -11 anymore%4:02:01:: 1 -11 anxious%5:00:00:uneasy:00 1 -11 antigen%1:27:00:: 1 -11 ammunition%1:06:00:: 1 -11 amateur%1:18:00:: 1 -11 altogether%4:02:04:: 1 -11 after_all%4:02:01:: 2 -11 affect%2:29:00:: 2 -11 aerosol%1:19:00:: 1 -11 aerator%1:06:00:: 1 -11 advise%2:32:00:: 1 -11 admit%2:41:01:: 2 -11 added%3:00:00:: 1 -11 acquisition%1:04:00:: 1 -11 acknowledge%2:31:00:: 1 -11 accelerate%2:30:00:: 1 -11 absolute%3:00:00:: 1 -11 13%5:00:00:cardinal:00 1 -10 youthful%5:00:00:young:00 1 -10 youth%1:14:00:: 2 -10 yesterday%4:02:00:: 1 -10 write%2:32:01:: 5 -10 wreck%2:35:00:: 1 -10 would%2:42:00:: 1 -10 wood%1:14:00:: 2 -10 wink%2:29:02:: 1 -10 white%1:18:00:: 1 -10 western%5:00:02:west:00 2 -10 west%1:24:00:: 2 -10 weekly%3:01:00:: 1 -10 way%1:23:00:: 8 -10 watch%2:39:02:: 4 -10 waste%2:40:00:: 1 -10 vote%2:41:10:: 2 -10 vivid%5:00:00:realistic:00 1 -10 vice_president%1:18:00:: 1 -10 vapor_pressure%1:19:00:: 1 -10 unique%5:00:00:single(a):00 3 -10 unique%5:00:00:incomparable:00 1 -10 two_weeks%1:28:00:: 1 -10 turn_to%2:32:00:: 2 -10 turn_out%2:42:01:: 2 -10 turn_out%2:36:01:: 3 -10 turn_around%2:38:00:: 1 -10 tumble%2:38:00:: 1 -10 trot%2:38:00:: 1 -10 troop%1:14:00:: 1 -10 tremendous%5:00:00:extraordinary:00 2 -10 treat%2:32:00:: 4 -10 translate%2:32:00:: 1 -10 transition%1:04:00:: 1 -10 transform%2:30:00:: 2 -10 training_program%1:09:00:: 1 -10 toss%2:38:00:: 2 -10 ton%1:23:02:: 1 -10 time%1:11:01:: 6 -10 tight%3:00:01:: 1 -10 threaten%2:32:01:: 3 -10 thief%1:18:00:: 1 -10 thermometer%1:06:00:: 1 -10 taxpayer%1:18:00:: 1 -10 taste%2:39:02:: 1 -10 tape%1:06:00:: 1 -10 talk_about%2:32:01:: 2 -10 take_on%2:30:00:: 1 -10 take%2:38:00:: 22 -10 system%1:09:00:: 4 -10 sympathy%1:09:00:: 1 -10 survival%1:26:00:: 1 -10 supplement%2:40:00:: 1 -10 success%1:26:00:: 3 -10 subjective%3:00:00:: 1 -10 subject%2:39:03:: 1 -10 stupid%3:00:00:: 1 -10 strength%1:07:05:: 2 -10 straw%1:27:00:: 1 -10 straight%5:00:00:continuous:01 1 -10 stimulus%1:09:00:: 1 -10 stem%1:20:00:: 2 -10 statement%1:10:02:: 2 -10 stall%1:06:03:: 1 -10 staining%1:04:01:: 2 -10 stagger%2:38:00:: 1 -10 sort_of%4:02:00:: 1 -10 someday%4:02:00:: 1 -10 soiled%3:00:04:: 1 -10 snow%2:43:00:: 1 -10 skill%1:09:00:: 2 -10 sit%2:38:00:: 3 -10 simple%5:00:00:easy:01 2 -10 silent%5:00:00:uncommunicative:00 2 -10 silence%1:07:00:: 2 -10 shut%2:35:00:: 1 -10 shrug%2:29:00:: 1 -10 several%5:00:00:different:00 2 -10 seventeen%5:00:00:cardinal:00 1 -10 settler%1:18:00:: 1 -10 settle%2:31:00:: 2 -10 set_up%2:36:00:: 2 -10 set%2:32:01:: 4 -10 serious%5:00:00:important:00 2 -10 sense_of_touch%1:09:00:: 1 -10 send_out%2:35:00:: 1 -10 seldom%4:02:00:: 1 -10 see%2:41:10:: 13 -10 section%1:06:00:: 4 -10 secret%5:00:00:concealed:00 1 -10 second%5:00:00:intermediate:00 2 -10 scheme%1:09:00:: 1 -10 scarcely%4:02:00:: 1 -10 scale%1:24:03:: 1 -10 scale%1:24:00:: 2 -10 satisfaction%1:12:00:: 1 -10 sand%1:27:00:: 1 -10 san_francisco%1:15:00:: 1 -10 salvation%1:04:00:: 1 -10 salary%1:21:00:: 1 -10 sake%1:07:00:: 1 -10 sacrifice%2:40:00:: 1 -10 run%2:42:04:: 5 -10 rule%1:10:00:: 3 -10 routine%1:04:00:: 1 -10 room%1:23:00:: 2 -10 roll%2:38:01:: 2 -10 role%1:09:00:: 2 -10 right_away%4:02:00:: 1 -10 right%3:00:01:: 4 -10 reveal%2:39:01:: 3 -10 retrieve%2:40:00:: 1 -10 retreat%2:38:00:: 1 -10 restore%2:41:01:: 1 -10 reside%2:42:00:: 1 -10 request%1:10:01:: 1 -10 representation%1:09:00:: 1 -10 representation%1:06:00:: 2 -10 reporter%1:18:00:: 1 -10 report%1:10:01:: 2 -10 report%1:10:00:: 3 -10 repeatedly%4:02:00:: 1 -10 render%2:40:02:: 2 -10 religious%5:00:00:sacred:00 2 -10 regulation%1:10:00:: 1 -10 red_river%1:17:00:: 1 -10 recount%2:32:00:: 1 -10 recognition%1:26:00:: 1 -10 rebel%1:18:02:: 1 -10 realistic%3:00:00:: 1 -10 reaction%1:09:00:: 2 -10 range%1:15:03:: 3 -10 raise%2:36:03:: 5 -10 quiet%3:00:01:: 2 -10 punish%2:41:00:: 1 -10 prospect%1:26:00:: 1 -10 proprietorship%1:21:00:: 1 -10 proof%1:09:00:: 1 -10 profile%1:10:01:: 1 -10 proclaim%2:32:00:: 2 -10 procession%1:14:00:: 1 -10 priest%1:18:00:: 1 -10 pretend%2:36:00:: 2 -10 press%1:14:00:: 1 -10 preaching%1:10:00:: 1 -10 pottery%1:06:00:: 1 -10 potential%1:26:00:: 1 -10 possession%1:04:00:: 1 -10 pollen%1:20:00:: 1 -10 please%2:37:01:: 2 -10 plead%2:32:00:: 1 -10 play%1:10:03:: 2 -10 plan%1:09:01:: 2 -10 picture%1:26:00:: 4 -10 piano%1:06:00:: 1 -10 physics%1:09:00:: 1 -10 phrase%1:10:00:: 1 -10 persistent%5:00:00:continual:00 1 -10 perpetuate%2:42:00:: 1 -10 pbs%1:27:00:: 1 -10 patrol%1:14:00:: 1 -10 path%1:04:00:: 1 -10 parallel%3:00:00:: 1 -10 pair%1:23:00:: 2 -10 painful%3:00:00:: 1 -10 pacific%1:17:00:: 1 -10 pace%2:38:00:: 1 -10 pace%1:28:00:: 1 -10 orchestra%1:14:00:: 1 -10 oppose%2:33:01:: 2 -10 opera%1:10:00:: 1 -10 one_hundred%5:00:00:cardinal:00 1 -10 on_the_way%4:02:00:: 1 -10 on_the_one_hand%4:02:00:: 1 -10 on_the_contrary%4:02:02:: 1 -10 omit%2:31:01:: 1 -10 ominous%5:00:00:alarming:00 1 -10 oil%1:27:00:: 1 -10 official%3:00:00:: 1 -10 observe%2:39:00:: 4 -10 objection%1:10:01:: 1 -10 nucleus%1:08:00:: 1 -10 now%1:28:00:: 1 -10 notify%2:32:00:: 1 -10 no_matter%4:02:00:: 1 -10 newly%4:02:00:: 1 -10 nature%1:26:00:: 3 -10 nation%1:14:01:: 2 -10 muse%2:31:00:: 1 -10 mule_driver%1:18:00:: 1 -10 much%4:02:04:: 3 -10 mount%2:35:00:: 1 -10 mostly%4:02:00:: 1 -10 morning%5:00:00:antemeridian:00 1 -10 moderate%3:00:00:: 1 -10 mist%1:19:00:: 1 -10 missile%1:06:01:: 1 -10 minister%1:18:00:: 1 -10 mind%1:09:04:: 3 -10 mighty%5:00:00:powerful:00 1 -10 middle%1:15:00:: 1 -10 merge%2:30:00:: 1 -10 membership%1:14:00:: 1 -10 mechanical%3:00:00:: 1 -10 measure%2:31:01:: 4 -10 measure%1:07:00:: 1 -10 meanwhile%4:02:01:: 1 -10 mean%1:09:00:: 1 -10 mass%1:04:00:: 4 -10 marriage%1:14:00:: 2 -10 make_up_one's_mind%2:31:00:: 1 -10 make%2:42:00:: 14 -10 mad%5:00:00:insane:00 2 -10 lovely%5:00:00:beautiful:00 1 -10 loudly%4:02:00:: 1 -10 lots%1:23:00:: 1 -10 lose%2:37:00:: 3 -10 lord%1:18:02:: 1 -10 look_upon%2:31:00:: 1 -10 long%1:28:00:: 1 -10 literal%5:00:00:true:00 1 -10 linear_operator%1:24:00:: 1 -10 line%1:19:00:: 6 -10 line%1:15:02:: 7 -10 line%1:09:01:: 8 -10 light%2:34:00:: 2 -10 light%1:07:01:: 4 -10 lift%2:35:00:: 2 -10 legislation%1:10:00:: 1 -10 leaders%1:14:00:: 1 -10 lead%2:42:01:: 8 -10 lb%1:23:00:: 1 -10 launch%2:41:01:: 1 -10 know%2:31:06:: 6 -10 keep%2:41:03:: 5 -10 joke%1:10:00:: 1 -10 japanese%3:01:00:: 1 -10 introduce%2:36:00:: 2 -10 interval%1:28:00:: 1 -10 intersection%1:09:00:: 1 -10 interpret%2:32:00:: 2 -10 internal%3:00:00:: 1 -10 interior_designer%1:18:00:: 1 -10 intellectual%3:01:00:: 1 -10 insure%2:32:04:: 2 -10 instantly%4:02:00:: 1 -10 inspection%1:04:01:: 1 -10 influence%1:04:00:: 2 -10 indian%1:18:00:: 1 -10 incredible%3:00:00:: 1 -10 in_the_midst%4:02:00:: 1 -10 in_relation_to%5:00:00:related:02 1 -10 impulse%1:16:00:: 1 -10 identification%1:04:00:: 1 -10 hydrogen_atom%1:27:00:: 1 -10 howl%1:10:00:: 1 -10 horror%1:12:01:: 1 -10 honest%3:00:00:: 1 -10 home%1:15:02:: 3 -10 higher%5:00:02:high:02 1 -10 high%5:00:00:superior:01 3 -10 hero%1:09:00:: 2 -10 heavy%3:00:03:: 2 -10 hearing%1:04:01:: 1 -10 hands%1:04:00:: 1 -10 hall%1:06:05:: 2 -10 guilty%3:00:00:: 1 -10 guess%2:32:00:: 2 -10 guam%1:15:00:: 1 -10 grip%2:35:00:: 1 -10 great_deal%1:23:00:: 1 -10 grateful%3:00:00:: 1 -10 good%5:00:00:reputable:00 4 -10 go_with%2:42:01:: 1 -10 go_out%2:38:02:: 2 -10 go_in%2:38:00:: 1 -10 go%2:42:02:: 6 -10 go%2:42:00:: 7 -10 go%2:30:01:: 8 -10 gm%1:23:00:: 1 -10 gloom%1:26:01:: 1 -10 give%2:41:00:: 15 -10 give%2:40:10:: 16 -10 give%2:40:06:: 17 -10 further%4:02:03:: 2 -10 fundamental%5:00:00:important:00 1 -10 fulfill%2:36:00:: 1 -10 fruit%1:20:00:: 1 -10 front_door%1:06:00:: 1 -10 frighten%2:37:00:: 1 -10 frantic%5:00:00:agitated:00 1 -10 france%1:15:00:: 1 -10 foreign%3:00:01:: 2 -10 force%1:14:01:: 5 -10 for_the_first_time%4:02:00:: 1 -10 fool%1:18:01:: 2 -10 flow%2:38:00:: 2 -10 fire%2:30:00:: 3 -10 filter%2:35:00:: 1 -10 file%2:35:00:: 2 -10 fallout%1:27:00:: 1 -10 fair%3:00:03:: 1 -10 failure%1:11:00:: 2 -10 extension%1:04:02:: 2 -10 experienced%3:00:00:: 1 -10 experience%2:31:00:: 2 -10 expansion%1:04:00:: 1 -10 excuse%1:10:00:: 1 -10 exchange%2:40:00:: 1 -10 evoke%2:37:00:: 1 -10 evidence%2:32:00:: 1 -10 establishment%1:04:00:: 1 -10 erect%3:00:00:: 1 -10 entry%1:10:01:: 1 -10 entrance%1:06:00:: 1 -10 enjoy%2:37:01:: 3 -10 end%2:42:01:: 3 -10 emergency%1:11:00:: 1 -10 element%1:06:00:: 2 -10 electronics%1:09:00:: 1 -10 either%4:02:00:: 1 -10 education%1:09:00:: 2 -10 early%5:00:00:past:00 3 -10 dusty%5:00:00:dirty:01 1 -10 duck%2:38:00:: 1 -10 drinking%1:04:00:: 1 -10 drink%2:34:01:: 2 -10 draw%2:40:00:: 3 -10 draw%2:35:01:: 4 -10 draw%2:31:00:: 5 -10 doubtful%5:00:00:questionable:00 1 -10 division%1:14:00:: 1 -10 distribute%2:40:00:: 1 -10 distinct%3:00:00:: 2 -10 dispel%2:38:00:: 1 -10 disc%1:06:01:: 1 -10 disagree%2:32:00:: 1 -10 dimly%4:02:00:: 1 -10 diminish%2:30:00:: 1 -10 determined%5:00:00:resolute:00 1 -10 depend%2:42:00:: 1 -10 denounce%2:32:00:: 1 -10 denomination%1:14:00:: 1 -10 definition%1:07:00:: 2 -10 decision%1:09:00:: 2 -10 dare%2:41:01:: 2 -10 curve%1:10:00:: 2 -10 curse%2:32:02:: 2 -10 cry_out%2:32:00:: 1 -10 cry%1:10:04:: 2 -10 crazy%5:00:00:insane:00 1 -10 cover%2:42:02:: 6 -10 convinced%5:00:00:certain(p):02 2 -10 contrast%1:04:00:: 2 -10 contend%2:32:02:: 1 -10 contemporary%5:00:00:modern:00 1 -10 contact%2:32:00:: 1 -10 consumer%1:18:00:: 1 -10 confuse%2:31:02:: 1 -10 confess%2:32:00:: 1 -10 conceive%2:31:00:: 2 -10 concede%2:32:00:: 1 -10 compulsivity%1:07:00:: 1 -10 component%1:24:00:: 2 -10 complexity%1:07:00:: 1 -10 completely%4:02:03:: 2 -10 commerce%1:04:00:: 1 -10 commend%2:32:00:: 1 -10 commander%1:18:00:: 1 -10 command%2:32:01:: 1 -10 come_upon%2:40:09:: 1 -10 come_to%2:39:00:: 1 -10 column%1:06:02:: 2 -10 cling_to%2:35:00:: 1 -10 clearly%4:02:01:: 2 -10 circle%1:14:00:: 2 -10 church%1:04:00:: 3 -10 christianity%1:09:00:: 1 -10 christian%1:18:00:: 1 -10 chicken%1:05:01:: 2 -10 chew%2:34:00:: 1 -10 chase%2:38:00:: 1 -10 charge%2:32:02:: 2 -10 center%1:06:02:: 2 -10 catch%2:35:13:: 3 -10 cast%1:14:00:: 1 -10 cap%1:06:00:: 1 -10 camper%1:18:00:: 1 -10 call_upon%2:32:00:: 1 -10 businessman%1:18:00:: 1 -10 burn%2:43:01:: 2 -10 brush%2:35:00:: 2 -10 brood%1:14:00:: 1 -10 briefly%4:02:00:: 1 -10 brave%3:00:00:: 1 -10 book%1:06:00:: 2 -10 bone%1:08:00:: 1 -10 blue%3:01:00:: 3 -10 bleed%2:29:00:: 1 -10 bitter%5:00:00:intolerable:00 2 -10 beyond%4:02:01:: 1 -10 besides%4:02:01:: 1 -10 belong%2:40:00:: 1 -10 bellow%2:32:00:: 1 -10 believe%2:31:01:: 4 -10 bearded%5:00:00:unshaven:00 1 -10 bear%2:35:00:: 4 -10 bar%1:06:04:: 1 -10 balanced%3:00:00:: 1 -10 awful%5:00:00:bad:00 1 -10 awareness%1:09:00:: 1 -10 authorities%1:14:00:: 1 -10 attention%1:04:01:: 2 -10 association%1:14:00:: 1 -10 armed%3:00:01:: 1 -10 apprentice%1:18:00:: 1 -10 apart%4:02:01:: 2 -10 antagonist%1:18:00:: 1 -10 angle%1:25:00:: 1 -10 analytic%3:01:00:: 1 -10 amount%2:42:03:: 1 -10 aloud%4:02:00:: 1 -10 all_right%5:00:00:satisfactory:00 1 -10 aid%1:07:00:: 1 -10 africa%1:17:00:: 1 -10 aesthetic%3:01:00:: 1 -10 advise%2:32:01:: 2 -10 ace%1:23:00:: 1 -10 accordingly%4:02:00:: 1 -10 about%4:02:06:: 2 -10 abandon%2:40:00:: 1 -10 26%5:00:00:cardinal:00 1 -10 11%5:00:00:cardinal:00 1 -9 wrong%5:00:00:inappropriate:00 3 -9 written%3:00:00:: 1 -9 write%2:36:04:: 6 -9 wrist%1:08:00:: 1 -9 worst%3:00:00:: 1 -9 worry%2:37:12:: 2 -9 worry%2:37:01:: 3 -9 work%2:36:00:: 6 -9 work%2:29:00:: 7 -9 withdraw%2:38:00:: 1 -9 wit%1:10:00:: 1 -9 wine%1:13:00:: 1 -9 will%1:09:01:: 2 -9 widespread%5:00:00:general:00 1 -9 wave%1:04:02:: 2 -9 watercolor%1:06:00:: 1 -9 watch%1:06:00:: 1 -9 wash%2:29:00:: 2 -9 warning%1:10:01:: 2 -9 warfare%1:04:00:: 1 -9 wage%2:41:00:: 1 -9 voting%1:04:00:: 1 -9 volley%1:04:00:: 1 -9 viscosity%1:07:00:: 1 -9 view%1:04:00:: 3 -9 vertical%3:00:00:: 1 -9 vehicle%1:06:00:: 1 -9 variation%1:04:00:: 2 -9 usage%1:04:00:: 1 -9 unit%1:14:00:: 3 -9 undoubtedly%4:02:00:: 1 -9 underway%5:00:00:current:00 1 -9 understand%2:31:03:: 3 -9 tv%1:10:00:: 1 -9 turn_to%2:31:00:: 3 -9 turn_to%2:30:00:: 4 -9 trooper%1:18:01:: 1 -9 travel%2:38:04:: 2 -9 train%2:31:00:: 2 -9 tracing%1:04:00:: 1 -9 trace%2:31:00:: 1 -9 tough%3:00:03:: 1 -9 tomorrow%1:28:00:: 2 -9 together%4:02:00:: 5 -9 tired%3:00:00:: 1 -9 tip%1:15:00:: 1 -9 tilt%2:38:00:: 1 -9 thyroxine%1:08:00:: 1 -9 throw%2:38:00:: 2 -9 thigh%1:08:00:: 1 -9 thereof%4:02:00:: 1 -9 therapist%1:18:00:: 1 -9 theologian%1:18:00:: 1 -9 theme%1:10:00:: 1 -9 theatre%1:06:00:: 1 -9 test%2:41:01:: 2 -9 tension%1:26:03:: 1 -9 teaching%1:04:00:: 1 -9 take_up%2:30:00:: 1 -9 take_care%2:41:00:: 1 -9 sword%1:06:00:: 1 -9 sweet%3:00:02:: 1 -9 sweden%1:15:00:: 1 -9 surgeon%1:18:00:: 1 -9 support%1:04:00:: 2 -9 superstition%1:09:00:: 1 -9 summarize%2:32:00:: 1 -9 sullen%5:00:00:ill-natured:00 1 -9 suggestion%1:10:00:: 2 -9 subtract%2:31:00:: 1 -9 subtle%5:00:00:impalpable:00 1 -9 substitute%1:09:00:: 1 -9 substantially%4:02:01:: 1 -9 subject_to%5:00:00:susceptible:00 1 -9 subject%1:09:01:: 4 -9 sturdy%5:00:00:robust:00 1 -9 stumble%2:38:00:: 2 -9 strong%5:00:00:intense:00 3 -9 stone%1:06:00:: 2 -9 still%5:00:00:quiet:01 2 -9 startle%2:37:00:: 1 -9 stare%1:04:00:: 1 -9 stand%2:31:00:: 5 -9 stained%3:00:00:: 1 -9 stage%2:36:00:: 1 -9 st._louis%1:15:00:: 1 -9 squeeze%2:35:05:: 1 -9 speed%1:07:00:: 2 -9 speaker%1:18:00:: 1 -9 sound%2:39:03:: 3 -9 sophisticated%3:00:00:: 1 -9 solely%4:02:00:: 1 -9 soap%1:06:00:: 1 -9 slow%2:30:00:: 1 -9 slavery%1:26:00:: 1 -9 sin%1:04:00:: 2 -9 simply%4:02:03:: 2 -9 similarity%1:07:00:: 1 -9 significant%5:00:00:considerable:00 2 -9 shrill%5:00:00:high:03 1 -9 show%1:10:03:: 2 -9 shop%1:06:00:: 1 -9 shine%2:43:01:: 1 -9 sharp%5:00:00:distinct:00 1 -9 shame%1:12:00:: 1 -9 shade%1:26:00:: 1 -9 set_out%2:30:00:: 1 -9 set%2:30:01:: 5 -9 servant%1:18:00:: 1 -9 selling%1:04:00:: 1 -9 seemingly%4:02:00:: 1 -9 secret%1:10:00:: 1 -9 second%4:02:00:: 1 -9 seat%2:35:00:: 1 -9 seat%1:15:01:: 1 -9 sculpture%1:06:00:: 1 -9 scratch%2:35:03:: 1 -9 scramble%2:38:00:: 1 -9 scared%5:00:00:afraid(p):00 1 -9 scan%2:39:01:: 1 -9 salt%1:27:00:: 1 -9 sad%3:00:00:: 1 -9 run%2:38:01:: 6 -9 rule%2:31:00:: 2 -9 rugged%3:00:00:: 1 -9 roughly%4:02:00:: 1 -9 room_temperature%1:07:00:: 1 -9 rhode_island%1:15:00:: 1 -9 review%2:32:00:: 2 -9 retirement%1:26:00:: 1 -9 restrict%2:30:02:: 1 -9 responsible_for%5:00:00:causative:00 1 -9 responsible%3:00:00:: 1 -9 resign%2:41:00:: 1 -9 removal%1:04:00:: 1 -9 remarkably%4:02:00:: 1 -9 remain%2:42:01:: 4 -9 relinquish%2:40:01:: 1 -9 religion%1:14:00:: 2 -9 relieve%2:29:00:: 1 -9 reliable%3:00:00:: 1 -9 relationship%1:26:00:: 2 -9 relate%2:42:00:: 2 -9 reference%1:10:02:: 1 -9 reduce%2:30:06:: 2 -9 red%1:07:00:: 1 -9 recover%2:40:00:: 1 -9 record%2:32:01:: 2 -9 recent%5:00:00:past:00 2 -9 reb%1:18:00:: 1 -9 reader%1:18:02:: 2 -9 reactivity%1:09:00:: 1 -9 reach%2:38:06:: 7 -9 rate%2:31:00:: 1 -9 rag%1:06:00:: 1 -9 radio%1:10:00:: 1 -9 rabbit%1:05:00:: 1 -9 question%1:10:03:: 3 -9 queer%5:00:00:strange:00 1 -9 pursue%2:38:00:: 2 -9 purple%5:00:00:chromatic:00 1 -9 pulmonary_vein%1:08:00:: 1 -9 pseudo%5:00:00:counterfeit:00 1 -9 protective%3:00:00:: 1 -9 proposed%5:00:00:planned:00 1 -9 proportion%1:24:00:: 1 -9 prompt%2:36:00:: 1 -9 promising%5:00:00:likely:00 1 -9 prominent%5:00:02:conspicuous:00 2 -9 projection%1:09:01:: 1 -9 producer%1:18:01:: 1 -9 prize%1:21:00:: 1 -9 principle%1:09:01:: 2 -9 price%1:21:00:: 2 -9 preserve%2:40:01:: 3 -9 preserve%2:40:00:: 2 -9 precision%1:07:00:: 1 -9 precede%2:42:00:: 1 -9 preach%2:32:02:: 1 -9 pre%5:00:00:preceding(a):00 1 -9 posture%1:07:00:: 1 -9 portray%2:32:00:: 1 -9 popular%5:00:00:democratic:00 2 -9 poorly%4:02:00:: 1 -9 ponder%2:31:00:: 1 -9 politician%1:18:01:: 1 -9 point%1:28:00:: 6 -9 plot%1:09:00:: 1 -9 pleased%3:00:00:: 1 -9 pleasant%3:00:00:: 1 -9 plank%1:27:00:: 1 -9 place%1:04:01:: 5 -9 pilot%5:00:00:empirical:00 1 -9 pile%1:14:00:: 1 -9 photograph%2:32:00:: 1 -9 phosphate%1:27:00:: 1 -9 phonologic%3:01:00:: 1 -9 philadelphia%1:15:00:: 1 -9 pertain%2:42:01:: 1 -9 performance%1:04:02:: 4 -9 perceive%2:31:00:: 2 -9 peculiar%5:00:00:strange:00 1 -9 pattern%1:06:00:: 3 -9 patience%1:07:00:: 1 -9 pastor%1:18:00:: 1 -9 part%1:09:01:: 7 -9 parasympathetic%3:01:00:: 1 -9 pant%2:29:00:: 1 -9 pale%5:00:00:weak:00 2 -9 painting%1:04:00:: 2 -9 pain%1:09:00:: 3 -9 owner%1:18:02:: 2 -9 overcome%2:33:01:: 2 -9 overall%5:00:00:general:00 1 -9 organism%1:03:00:: 1 -9 ordinarily%4:02:00:: 1 -9 opposite%5:00:01:other:00 1 -9 operator%1:18:00:: 2 -9 ohio%1:15:00:: 1 -9 observer%1:18:01:: 2 -9 objective%3:00:00:: 1 -9 null_space%1:14:00:: 1 -9 now%4:02:01:: 5 -9 nov%1:28:00:: 1 -9 norm%1:24:00:: 1 -9 nervous%5:00:00:tense:03 1 -9 negro%5:00:00:black:02 1 -9 neat%5:00:00:tidy:00 1 -9 navy%1:14:00:: 1 -9 nature%1:17:00:: 4 -9 namely%4:02:00:: 1 -9 mystery_story%1:10:00:: 1 -9 musket%1:06:00:: 1 -9 much%4:02:01:: 4 -9 moving%3:00:02:: 1 -9 motion_picture%1:10:00:: 1 -9 morphophonemics%1:09:00:: 1 -9 monitor%2:39:00:: 1 -9 molecule%1:27:00:: 1 -9 mixed%5:00:00:blended:00 1 -9 miss%2:42:01:: 3 -9 minimum%1:23:00:: 1 -9 mingle%2:35:00:: 1 -9 mineral%1:27:00:: 1 -9 middle_class%1:14:00:: 1 -9 memory%1:09:00:: 3 -9 membership%1:26:00:: 2 -9 measured%3:00:00:: 1 -9 mean%2:42:03:: 5 -9 mayor%1:18:00:: 1 -9 massive%5:00:00:large:00 1 -9 market%1:14:00:: 2 -9 mark%2:31:01:: 4 -9 manifest%2:32:00:: 1 -9 make_sense%2:42:00:: 1 -9 make%2:36:11:: 15 -9 mad%5:00:00:wild:02 3 -9 look%1:07:00:: 3 -9 load%1:06:00:: 1 -9 listener%1:18:00:: 1 -9 line%1:06:01:: 9 -9 likely%4:02:00:: 1 -9 light%3:00:05:: 2 -9 lie%2:32:00:: 5 -9 league%1:14:01:: 1 -9 leadership%1:04:00:: 1 -9 lead%2:41:12:: 9 -9 later_on%4:02:00:: 1 -9 land%1:17:00:: 4 -9 kneel%2:35:00:: 1 -9 kidney%1:08:00:: 1 -9 kick%2:38:00:: 2 -9 keep%2:31:00:: 6 -9 justify%2:32:00:: 2 -9 jaw%1:08:00:: 1 -9 introduce%2:30:03:: 3 -9 intonation%1:10:00:: 1 -9 instruct%2:32:01:: 2 -9 instruct%2:32:00:: 1 -9 institute%2:36:01:: 1 -9 instant%1:28:00:: 2 -9 inspire%2:37:00:: 1 -9 insoluble%3:00:01:: 1 -9 insight%1:09:02:: 1 -9 initiate%2:36:01:: 1 -9 initially%4:02:00:: 1 -9 influence%2:31:00:: 2 -9 influence%1:09:00:: 3 -9 inflict%2:32:00:: 1 -9 infection%1:26:00:: 1 -9 individualism%1:07:00:: 1 -9 indicator%1:10:00:: 1 -9 incomplete%3:00:00:: 1 -9 in_time%4:02:00:: 1 -9 in_the_end%4:02:02:: 1 -9 in_particular%4:02:00:: 1 -9 impress%2:37:01:: 1 -9 implication%1:09:01:: 1 -9 imagination%1:09:02:: 2 -9 image%1:07:00:: 2 -9 illuminate%2:30:03:: 1 -9 identical%5:00:00:same:02 2 -9 hurl%2:35:00:: 1 -9 hunger%1:26:00:: 1 -9 humorous%3:00:00:: 1 -9 how%4:02:00:: 1 -9 hours%1:28:00:: 1 -9 horizon%1:15:00:: 1 -9 honey%1:13:00:: 1 -9 holiday%1:28:00:: 1 -9 hole%1:06:00:: 2 -9 hold%2:40:04:: 9 -9 hold%2:35:01:: 10 -9 hit%2:38:00:: 4 -9 high%4:02:00:: 1 -9 hesitate%2:42:01:: 2 -9 helpful%3:00:00:: 1 -9 hell%1:15:00:: 1 -9 heart%1:07:01:: 3 -9 hawaii%1:15:00:: 1 -9 hate%1:12:00:: 1 -9 happen%2:30:01:: 4 -9 halfback%1:18:00:: 1 -9 grant%2:40:03:: 2 -9 governor%1:18:00:: 1 -9 governmental%3:01:00:: 1 -9 good%4:02:00:: 1 -9 good%1:07:01:: 2 -9 golf%1:04:00:: 1 -9 go%2:30:08:: 9 -9 glory%1:26:00:: 1 -9 glare%2:29:00:: 1 -9 give_up%2:40:02:: 1 -9 give_rise%2:36:01:: 1 -9 gigantic%5:00:01:large:00 1 -9 giant%5:00:00:large:00 1 -9 get_out%2:35:00:: 2 -9 get%2:40:01:: 9 -9 geometric%5:00:00:nonrepresentational:00 1 -9 gentleman%1:18:00:: 1 -9 gay%5:00:00:cheerful:00 1 -9 gaunt%5:00:00:thin:03 1 -9 gasp%2:29:00:: 1 -9 gadget%1:06:00:: 1 -9 funny%5:00:00:strange:00 2 -9 function%2:35:00:: 1 -9 fun%1:04:00:: 1 -9 frequent%3:00:00:: 1 -9 french%3:01:00:: 1 -9 found%2:41:00:: 1 -9 forget%2:31:03:: 3 -9 football%1:04:00:: 1 -9 follow%2:40:00:: 9 -9 fly%2:38:02:: 2 -9 flatness%1:07:00:: 1 -9 flash%2:39:00:: 1 -9 fix%2:30:01:: 1 -9 fit%2:42:01:: 3 -9 first%4:02:03:: 3 -9 first%1:24:00:: 1 -9 field%1:04:00:: 6 -9 feeding%1:04:00:: 1 -9 fate%1:11:00:: 1 -9 false%3:00:00:: 1 -9 faith%1:09:01:: 2 -9 external%3:00:00:: 1 -9 explain%2:32:01:: 2 -9 excitement%1:12:00:: 1 -9 evil%3:00:00:: 1 -9 eternal%5:00:00:permanent:00 1 -9 estimate%2:31:01:: 2 -9 estate%1:21:02:: 1 -9 envy%2:37:01:: 1 -9 envelope%1:06:01:: 1 -9 enthusiastic%3:00:00:: 1 -9 enjoy%2:39:00:: 4 -9 engine%1:06:00:: 1 -9 engage%2:31:00:: 2 -9 employment%1:26:00:: 1 -9 employment%1:04:00:: 2 -9 emphasize%2:30:00:: 2 -9 emerge%2:30:02:: 2 -9 elbow%1:08:00:: 1 -9 elaborate%5:00:00:fancy:00 1 -9 efficiency%1:09:00:: 2 -9 effect%1:09:00:: 3 -9 educator%1:18:00:: 1 -9 dwindle%2:30:00:: 1 -9 dumb%5:00:00:stupid:00 1 -9 drunk%3:00:00:: 1 -9 drop%1:25:00:: 1 -9 drop%1:23:00:: 2 -9 dressed%5:00:00:clothed:00 1 -9 draw%2:38:01:: 6 -9 down%3:00:00:: 1 -9 doom%2:32:01:: 1 -9 dominate%2:42:00:: 1 -9 do%2:36:00:: 8 -9 distal%3:00:01:: 1 -9 dish%1:06:00:: 1 -9 directly%4:02:07:: 3 -9 din%1:11:00:: 1 -9 dilute%2:30:00:: 1 -9 dig%2:35:00:: 1 -9 dice%1:06:00:: 1 -9 diarrhea%1:26:00:: 1 -9 development%1:11:01:: 4 -9 detroit%1:15:00:: 1 -9 determine%2:31:00:: 5 -9 detail%1:24:00:: 2 -9 detail%1:10:00:: 3 -9 desperately%4:02:00:: 1 -9 desire%1:07:00:: 2 -9 deputy%1:18:01:: 1 -9 depend_on%2:31:00:: 2 -9 demand%1:22:00:: 2 -9 delight%1:12:00:: 1 -9 defy%2:42:00:: 1 -9 define%2:42:01:: 3 -9 defensive%3:00:00:: 1 -9 defense%1:04:03:: 2 -9 deed%1:04:00:: 1 -9 declare%2:32:04:: 4 -9 dec%1:28:00:: 1 -9 deal%2:41:00:: 4 -9 dead%1:14:00:: 1 -9 dark%1:26:00:: 1 -9 daily%5:00:00:regular:00 1 -9 cultural%3:01:01:: 1 -9 crouch%2:38:00:: 1 -9 crisis%1:26:00:: 1 -9 creak%2:39:00:: 1 -9 crash%2:38:02:: 1 -9 crash%1:11:01:: 1 -9 cowboy%1:18:00:: 1 -9 cover%1:06:02:: 1 -9 course%1:04:00:: 4 -9 couple%1:14:01:: 2 -9 corridor%1:06:00:: 1 -9 corresponding%5:00:00:related:02 1 -9 correspond%2:42:00:: 1 -9 correlation%1:24:00:: 1 -9 corporal%1:18:00:: 1 -9 corner%1:06:00:: 4 -9 coordinate%2:30:00:: 1 -9 cook%2:36:01:: 1 -9 cook%2:36:00:: 2 -9 convey%2:32:00:: 1 -9 conversion%1:11:00:: 1 -9 concrete%3:00:00:: 1 -9 conclude%2:31:01:: 2 -9 composite%1:09:00:: 1 -9 comply%2:41:00:: 1 -9 compare%2:31:01:: 3 -9 companion%1:18:02:: 2 -9 communication%1:03:00:: 2 -9 communicate%2:32:01:: 1 -9 common%5:00:00:familiar:02 4 -9 come_up%2:36:03:: 1 -9 come_on%2:30:01:: 1 -9 come%2:42:13:: 8 -9 collector%1:18:01:: 1 -9 collaborate%2:41:00:: 1 -9 coincide%2:42:00:: 1 -9 code%1:10:01:: 1 -9 clump%1:14:00:: 1 -9 clue%1:10:00:: 1 -9 club%1:14:00:: 2 -9 clothing%1:06:00:: 1 -9 cling%2:35:00:: 1 -9 client%1:18:00:: 1 -9 claim%2:32:02:: 3 -9 chronic%3:00:00:: 1 -9 chimney%1:06:00:: 1 -9 childhood%1:28:00:: 1 -9 cheap%3:00:00:: 1 -9 characterize%2:32:00:: 1 -9 character%1:09:01:: 4 -9 ceremony%1:11:00:: 1 -9 cellar%1:06:00:: 1 -9 cause%1:10:00:: 2 -9 catch_up_with%2:33:00:: 1 -9 cash%1:21:00:: 1 -9 carve%2:35:01:: 1 -9 carry_on%2:41:00:: 1 -9 care%2:41:13:: 2 -9 care%1:04:01:: 1 -9 capitalism%1:14:00:: 1 -9 capacity%1:26:00:: 2 -9 cancel%2:41:03:: 1 -9 canada%1:15:00:: 1 -9 campaign%1:11:00:: 1 -9 calmly%4:02:00:: 1 -9 call%2:41:04:: 7 -9 call%2:41:00:: 6 -9 call%1:10:01:: 1 -9 business%1:09:00:: 5 -9 burn%2:30:00:: 3 -9 bunk%1:06:03:: 1 -9 brow%1:08:00:: 1 -9 broaden%2:30:01:: 1 -9 bring_out%2:39:00:: 1 -9 bring_about%2:36:00:: 1 -9 bring%2:30:00:: 5 -9 briefly%4:02:03:: 2 -9 break%2:30:06:: 3 -9 bottom%1:15:00:: 1 -9 bomber%1:06:00:: 1 -9 bold%3:00:00:: 1 -9 blush%2:29:00:: 1 -9 blue%1:07:00:: 1 -9 blue%1:06:01:: 2 -9 blame%2:32:01:: 2 -9 black_body%1:17:00:: 1 -9 bigger%5:00:00:large:00 1 -9 bench%1:06:00:: 1 -9 belong%2:42:00:: 2 -9 bell%1:06:00:: 1 -9 begin%2:32:03:: 5 -9 beckon%2:32:00:: 1 -9 beat%2:35:01:: 2 -9 beam%1:10:00:: 1 -9 beam%1:06:00:: 2 -9 battery%1:06:00:: 2 -9 bar%2:32:00:: 1 -9 banker%1:18:00:: 1 -9 away%5:00:00:distant:01 1 -9 awake%3:00:00:: 1 -9 audience%1:14:01:: 2 -9 attack%2:32:00:: 2 -9 at_once%4:02:03:: 2 -9 assure%2:32:01:: 3 -9 assure%2:32:00:: 2 -9 asleep%3:00:00:: 1 -9 as_yet%4:02:00:: 1 -9 arise%2:42:01:: 2 -9 area%1:26:00:: 4 -9 architect%1:18:00:: 1 -9 approach%2:42:00:: 2 -9 approach%1:04:00:: 2 -9 applause%1:10:00:: 1 -9 appeal_to%2:32:00:: 1 -9 appeal%1:10:00:: 1 -9 anywhere%4:02:00:: 1 -9 anxiety%1:12:00:: 2 -9 and_so_on%4:02:00:: 1 -9 analyst%1:18:00:: 1 -9 amend%2:32:00:: 1 -9 ambition%1:12:00:: 1 -9 ambiguous%3:00:04:: 1 -9 along%4:02:00:: 2 -9 all_the_way%4:02:09:: 1 -9 all_right%4:02:01:: 2 -9 all_but%4:02:00:: 1 -9 alert%2:32:00:: 1 -9 albumin%1:27:00:: 1 -9 air%1:07:00:: 4 -9 aid%1:04:00:: 2 -9 agreement%1:10:01:: 1 -9 affirm%2:31:00:: 1 -9 affection%1:12:00:: 1 -9 aerated%5:00:00:treated:00 1 -9 advocate%2:32:00:: 1 -9 administer%2:41:00:: 1 -9 active%3:00:02:: 1 -9 act%1:10:00:: 3 -9 abruptly%4:02:00:: 1 -9 above%4:02:01:: 2 -9 abolish%2:41:00:: 1 -9 ability%1:09:00:: 2 -9 a_trifle%4:02:00:: 1 -9 70%5:00:00:cardinal:00 1 -9 500%5:00:00:cardinal:00 1 -9 3%1:23:00:: 1 -8 yokuts%1:10:00:: 1 -8 yellow%1:07:00:: 1 -8 writing%1:04:02:: 1 -8 write%2:36:01:: 7 -8 wrath%1:12:00:: 1 -8 worth%5:00:00:valuable:00 2 -8 worry%1:09:00:: 1 -8 workbench%1:06:00:: 1 -8 work_out%2:42:00:: 2 -8 words%1:10:02:: 2 -8 withhold%2:40:00:: 1 -8 wing%1:05:00:: 1 -8 willow%1:20:00:: 1 -8 willingness%1:07:00:: 1 -8 whole%1:09:00:: 1 -8 whip%2:35:00:: 1 -8 west%3:00:00:: 1 -8 well%1:06:00:: 1 -8 weird%5:00:00:supernatural:00 1 -8 waste%2:34:05:: 2 -8 warsaw%1:15:00:: 1 -8 warm%3:00:02:: 2 -8 wake_up%2:29:01:: 1 -8 vulnerable%3:00:00:: 1 -8 volume%1:06:00:: 3 -8 voltaire%1:18:00:: 1 -8 voltage%1:19:02:: 1 -8 vitality%1:07:01:: 1 -8 visitor%1:18:00:: 1 -8 vision%1:09:01:: 2 -8 violent%3:00:00:: 1 -8 victim%1:18:00:: 1 -8 vein%1:08:00:: 1 -8 veer%2:38:00:: 1 -8 vague%3:00:04:: 2 -8 utterly%4:02:00:: 1 -8 use%2:34:00:: 3 -8 up%3:00:00:: 1 -8 unmolested%5:00:00:untroubled:00 1 -8 underlie%2:42:00:: 1 -8 undergo%2:39:02:: 2 -8 unaware%3:00:00:: 1 -8 ultrasonic%5:00:00:inaudible:00 1 -8 turn_up%2:30:00:: 1 -8 turn_off%2:35:00:: 1 -8 turn%2:38:02:: 4 -8 tuck%2:35:00:: 1 -8 try_out%2:41:00:: 1 -8 true%5:00:00:genuine:00 2 -8 trouble%1:04:02:: 5 -8 trim%2:35:03:: 1 -8 trained%3:00:00:: 1 -8 trail%2:38:02:: 1 -8 tragedy%1:11:00:: 1 -8 town%1:14:00:: 2 -8 touch%1:11:00:: 1 -8 totally%4:02:00:: 1 -8 top%1:15:02:: 3 -8 title%1:10:00:: 2 -8 titer%1:07:00:: 1 -8 tire%1:06:00:: 1 -8 tighten%2:30:01:: 1 -8 thunder%1:11:00:: 1 -8 through%4:02:00:: 1 -8 thoughtfully%4:02:01:: 1 -8 thoroughly%4:02:00:: 1 -8 think_about%2:31:03:: 2 -8 think%2:31:02:: 4 -8 thereafter%4:02:00:: 1 -8 theoretical%3:00:00:: 1 -8 terribly%4:02:00:: 1 -8 terminate%2:30:01:: 1 -8 term%1:28:00:: 2 -8 ten_thousand%1:23:00:: 1 -8 ten%1:23:00:: 1 -8 temptation%1:09:00:: 1 -8 technical%3:01:01:: 3 -8 team%1:14:01:: 2 -8 taste%1:09:02:: 1 -8 talk%2:32:03:: 3 -8 take_over%2:41:01:: 2 -8 take_care%2:41:12:: 2 -8 take%2:40:07:: 23 -8 system%1:09:02:: 5 -8 symptom%1:26:00:: 1 -8 sympathetic%3:00:00:: 2 -8 swoop%2:38:00:: 1 -8 swear%2:32:03:: 2 -8 sustain%2:42:01:: 1 -8 suspend%2:35:00:: 1 -8 survive%2:42:02:: 2 -8 surplus%1:07:00:: 1 -8 surge%2:38:01:: 1 -8 supply%2:41:00:: 2 -8 sunlight%1:19:00:: 1 -8 summon%2:32:00:: 1 -8 suffering%1:26:01:: 2 -8 suffer%2:31:00:: 4 -8 sue%2:41:00:: 1 -8 subspace%1:14:00:: 1 -8 submit%2:32:00:: 2 -8 strip%1:17:00:: 1 -8 storm%1:19:00:: 1 -8 stone%1:27:00:: 3 -8 stature%1:26:00:: 1 -8 star%1:17:00:: 1 -8 standard_deviation%1:09:00:: 1 -8 stand%2:31:01:: 6 -8 squat%2:35:00:: 1 -8 squad%1:14:01:: 1 -8 spring_up%2:42:00:: 1 -8 sprawl%2:35:00:: 1 -8 spontaneous%3:00:00:: 1 -8 spell_out%2:32:00:: 1 -8 spectacle%1:10:00:: 1 -8 spatial%3:01:00:: 1 -8 span%2:42:00:: 1 -8 south%4:02:00:: 1 -8 source%1:06:00:: 4 -8 sound%3:00:00:: 1 -8 sorry%5:00:00:unhappy:00 1 -8 sore%5:00:00:painful:00 1 -8 solution%1:10:00:: 2 -8 solution%1:09:00:: 3 -8 solid%5:00:00:good:01 1 -8 smell%1:09:02:: 1 -8 smart%3:00:00:: 1 -8 small%5:00:00:young:00 3 -8 slam%2:35:01:: 1 -8 slam%2:35:00:: 2 -8 sink%2:38:01:: 1 -8 silence%1:07:01:: 3 -8 sign%2:32:00:: 3 -8 sick%3:00:01:: 1 -8 show_up%2:30:00:: 1 -8 shopping_center%1:06:00:: 1 -8 shopping%1:04:00:: 1 -8 shelf%1:06:00:: 1 -8 shave%2:29:00:: 1 -8 share_in%2:41:00:: 1 -8 shake%2:38:01:: 3 -8 shadow%1:15:00:: 2 -8 severely%4:02:01:: 1 -8 severe%5:00:00:intense:00 1 -8 settle%2:32:00:: 3 -8 set_up%2:36:01:: 3 -8 service%1:04:00:: 2 -8 separate%2:35:01:: 2 -8 sensitivity%1:09:00:: 1 -8 sense%1:09:04:: 5 -8 scratch%2:35:00:: 2 -8 score%1:10:00:: 2 -8 scene%1:10:01:: 4 -8 say%2:42:00:: 4 -8 say%2:32:04:: 5 -8 satisfy%2:37:00:: 2 -8 satisfy%2:34:01:: 3 -8 russia%1:15:00:: 1 -8 rush%1:04:00:: 1 -8 run%2:35:00:: 7 -8 rotate%2:38:01:: 1 -8 rookie%1:18:00:: 1 -8 roman_catholic%1:18:00:: 1 -8 role%1:07:00:: 3 -8 risk%2:41:00:: 1 -8 rise%2:42:00:: 4 -8 rise%1:11:00:: 1 -8 rip%2:35:00:: 1 -8 reverse%2:30:00:: 1 -8 revenge%1:04:00:: 1 -8 retention%1:04:00:: 1 -8 rest_on%2:35:00:: 1 -8 rest%2:32:00:: 2 -8 resource%1:07:00:: 2 -8 resolve%2:31:01:: 1 -8 republican%1:18:01:: 1 -8 representative%1:18:00:: 1 -8 represent%2:32:00:: 5 -8 repeat%2:30:00:: 3 -8 remainder%1:24:00:: 1 -8 relief%1:26:00:: 2 -8 relative%1:18:00:: 1 -8 relationship%1:26:01:: 3 -8 regular%5:00:00:typical:00 2 -8 regret%2:37:00:: 1 -8 registrant%1:18:00:: 1 -8 reflection%1:09:00:: 1 -8 red%5:00:02:colored:00 2 -8 red%5:00:02:bloody:00 3 -8 recognition%1:09:00:: 2 -8 recently%4:02:01:: 2 -8 receive%2:31:00:: 6 -8 rebuild%2:36:00:: 1 -8 reappear%2:30:00:: 1 -8 realize%2:36:00:: 3 -8 realism%1:06:00:: 1 -8 real%4:02:01:: 1 -8 radish%1:13:00:: 1 -8 radio%1:06:01:: 2 -8 quiver%2:38:00:: 1 -8 quietly%4:02:00:: 1 -8 question%1:07:00:: 4 -8 qualification%1:07:00:: 1 -8 purchase%1:04:00:: 1 -8 pupil%1:18:00:: 1 -8 pull%2:35:02:: 2 -8 protest%2:41:00:: 2 -8 proof%1:10:00:: 2 -8 promise%1:10:00:: 1 -8 promise%1:09:00:: 2 -8 prohibit%2:32:00:: 1 -8 profound%5:00:00:intense:00 2 -8 productive%3:00:00:: 1 -8 product%1:09:00:: 3 -8 procurement%1:04:00:: 1 -8 proceed%2:41:00:: 3 -8 privilege%1:07:02:: 1 -8 primitive%5:00:02:early:02 1 -8 primary%5:00:00:underived:00 2 -8 presidential%3:01:00:: 1 -8 present-day%5:00:00:current:00 1 -8 prepare%2:36:02:: 3 -8 prepare%2:36:00:: 4 -8 preacher%1:18:00:: 1 -8 point%2:42:00:: 2 -8 point%2:33:00:: 3 -8 plight%1:26:00:: 1 -8 play%2:36:01:: 7 -8 play%1:04:05:: 3 -8 plant%2:35:00:: 1 -8 planetary%3:01:00:: 1 -8 plain%5:00:00:obvious:00 1 -8 pillow%1:06:00:: 1 -8 pile%2:35:00:: 1 -8 piece%1:17:00:: 3 -8 philosophy%1:09:00:: 2 -8 persist%2:30:01:: 2 -8 performer%1:18:00:: 1 -8 pen%1:06:00:: 1 -8 pegboard%1:06:00:: 1 -8 pattern%1:09:03:: 4 -8 path%1:06:00:: 2 -8 pass%2:42:08:: 6 -8 pass%2:38:01:: 7 -8 partner%1:18:01:: 1 -8 part%1:21:00:: 8 -8 parlor%1:06:00:: 1 -8 overwhelming%5:00:00:irresistible:00 1 -8 overhear%2:39:00:: 1 -8 overcome%2:37:00:: 3 -8 overall%5:00:00:gross:00 2 -8 other%5:00:00:past:00 3 -8 orthography%1:10:00:: 1 -8 original%5:00:00:primary:00 2 -8 organ%1:08:00:: 1 -8 order%1:07:01:: 2 -8 or_so%4:02:00:: 1 -8 operation%1:04:04:: 3 -8 operation%1:04:03:: 4 -8 opening%3:00:00:: 1 -8 officer%1:18:01:: 3 -8 ocean%1:17:00:: 1 -8 occupy%2:41:00:: 2 -8 notice%1:10:01:: 1 -8 noon%1:28:00:: 1 -8 non-catholic%1:18:00:: 1 -8 no.%1:23:00:: 1 -8 neurosis%1:26:00:: 1 -8 nephew%1:18:00:: 1 -8 nearby%5:00:00:near:00 1 -8 naval%3:01:00:: 1 -8 narrative%1:10:00:: 1 -8 nail%2:35:00:: 1 -8 move%1:04:00:: 1 -8 mount%2:30:00:: 2 -8 motionless%5:00:00:nonmoving:00 1 -8 motion%1:10:00:: 1 -8 more_and_more%4:02:00:: 1 -8 morality%1:07:00:: 1 -8 moral%3:00:00:: 2 -8 monkey%1:05:00:: 1 -8 modernization%1:04:00:: 1 -8 mission%1:04:01:: 2 -8 mission%1:04:00:: 3 -8 misery%1:26:00:: 1 -8 mirror%1:06:00:: 1 -8 minute%1:28:01:: 2 -8 mid%5:00:00:middle:00 1 -8 meteorite%1:17:00:: 1 -8 merchant%1:18:00:: 1 -8 mention%1:10:01:: 1 -8 menace%1:26:00:: 1 -8 melody%1:10:00:: 1 -8 meet%2:33:00:: 10 -8 mechanism%1:22:00:: 1 -8 meaningful%3:00:00:: 1 -8 mean%2:31:01:: 6 -8 master%1:18:00:: 1 -8 martyr%1:18:00:: 1 -8 marksman%1:18:00:: 1 -8 marble%1:27:00:: 1 -8 management%1:14:00:: 2 -8 male%3:00:00:: 1 -8 maker%1:18:00:: 1 -8 make_out%2:39:00:: 1 -8 make%2:36:12:: 16 -8 maintain%2:32:00:: 4 -8 machine_gun%1:06:00:: 1 -8 lurk%2:42:01:: 1 -8 lunar%3:01:00:: 1 -8 luck%1:26:00:: 1 -8 lookup%1:22:00:: 1 -8 look_up%2:32:00:: 1 -8 look_to%2:31:00:: 1 -8 look%2:39:02:: 4 -8 lock%2:35:00:: 1 -8 load%2:35:01:: 1 -8 livestock%1:05:00:: 1 -8 little%5:00:00:unimportant:00 6 -8 line%1:14:02:: 10 -8 likewise%4:02:00:: 1 -8 lightning%1:19:00:: 1 -8 legislator%1:18:00:: 1 -8 lecture%1:10:00:: 1 -8 leave%2:40:06:: 10 -8 leave%2:40:00:: 11 -8 lead%2:36:00:: 10 -8 layer%1:06:00:: 1 -8 lay_down%2:31:00:: 1 -8 laugh_at%2:32:00:: 1 -8 label%2:32:00:: 1 -8 known_as%5:00:00:titled:00 1 -8 killer%1:18:00:: 1 -8 key%5:00:00:important:00 1 -8 keep%2:40:01:: 7 -8 judge%2:31:00:: 2 -8 join%2:41:01:: 3 -8 italian%3:01:00:: 1 -8 isolated%5:00:00:sporadic:00 1 -8 ion%1:17:00:: 1 -8 investigator%1:18:01:: 1 -8 investigation%1:04:00:: 2 -8 interview%2:32:00:: 1 -8 interval%1:09:00:: 2 -8 international%5:00:00:foreign:02 2 -8 interlobular%3:01:00:: 1 -8 insect%1:05:00:: 1 -8 infinite%3:00:00:: 1 -8 individual%5:00:00:independent:00 2 -8 indirect%5:00:00:mediate:00 1 -8 indignation%1:12:00:: 1 -8 indefinite%3:00:00:: 1 -8 include%2:41:03:: 4 -8 incident%3:01:00:: 1 -8 in_short%4:02:01:: 1 -8 in_any_case%4:02:00:: 1 -8 in%4:02:00:: 2 -8 impurity%1:27:00:: 1 -8 impress%2:37:00:: 2 -8 image%1:06:00:: 3 -8 illinois%1:15:00:: 1 -8 ideal%5:00:00:perfect:00 1 -8 hurt%2:39:00:: 1 -8 hurt%2:29:01:: 2 -8 hurry%2:30:00:: 2 -8 humor%1:10:00:: 1 -8 humor%1:07:01:: 2 -8 humanity%1:14:00:: 1 -8 how%4:02:01:: 2 -8 household%1:14:00:: 1 -8 host%1:18:02:: 1 -8 hit%2:35:05:: 5 -8 hit%2:33:01:: 6 -8 highest%5:00:00:maximal:00 1 -8 here_and_there%4:02:00:: 1 -8 hear%2:39:01:: 4 -8 haze%1:19:00:: 1 -8 have_on%2:29:00:: 1 -8 have_in_mind%2:31:01:: 1 -8 have%2:32:00:: 14 -8 hastily%4:02:00:: 1 -8 harbor%1:15:00:: 1 -8 hang_up%2:35:00:: 1 -8 halt%2:38:05:: 1 -8 guilt%1:26:00:: 1 -8 guide%2:41:00:: 3 -8 guidance%1:10:00:: 1 -8 guarantee%2:32:00:: 1 -8 grow%2:30:04:: 5 -8 gross%3:00:00:: 1 -8 grim%5:00:00:implacable:00 1 -8 grasp%2:31:00:: 2 -8 grandmother%1:18:00:: 1 -8 govern%2:41:01:: 2 -8 gold%1:21:00:: 1 -8 gold%1:07:00:: 2 -8 go_through%2:39:00:: 1 -8 gnp%1:21:00:: 1 -8 give%2:32:03:: 18 -8 girl%1:18:04:: 3 -8 gift%1:21:00:: 1 -8 get_away%2:38:00:: 1 -8 generation%1:14:01:: 1 -8 gaze%1:04:00:: 1 -8 gallop%2:38:00:: 1 -8 fur%1:27:00:: 1 -8 funeral%1:11:00:: 1 -8 from_time_to_time%4:02:00:: 1 -8 fringe%1:25:00:: 1 -8 freely%4:02:00:: 1 -8 fourteen%5:00:00:cardinal:00 1 -8 forward%3:00:01:: 1 -8 formulate%2:32:03:: 1 -8 formula%1:10:00:: 1 -8 form%1:03:00:: 6 -8 forehead%1:08:00:: 1 -8 force%2:32:00:: 4 -8 foot%1:15:00:: 3 -8 follow%2:42:03:: 10 -8 follow%2:36:00:: 11 -8 flower%1:20:02:: 2 -8 flesh%1:08:01:: 2 -8 first_step%1:04:00:: 1 -8 firing%1:04:03:: 1 -8 finish%2:42:00:: 3 -8 fill%2:42:00:: 3 -8 figure%2:42:00:: 2 -8 figure%1:25:00:: 6 -8 figure%1:21:00:: 7 -8 figure%1:07:00:: 8 -8 fight%2:41:00:: 3 -8 fierce%5:00:00:violent:00 1 -8 field%1:26:00:: 7 -8 field%1:15:02:: 8 -8 fellow%5:00:00:related:02 1 -8 feeling%1:09:01:: 4 -8 fault%1:04:00:: 1 -8 fashion%2:36:00:: 1 -8 family%1:14:04:: 3 -8 fall_asleep%2:29:00:: 1 -8 factor%1:09:00:: 2 -8 f%1:23:02:: 1 -8 eye%1:09:00:: 2 -8 extract%2:35:04:: 1 -8 exploit%2:34:00:: 1 -8 explanation%1:09:00:: 2 -8 experience%2:39:00:: 3 -8 expanding%5:00:00:increasing:00 1 -8 exhibition%1:04:00:: 1 -8 exclaim%2:32:00:: 1 -8 excitedly%4:02:00:: 1 -8 excite%2:37:02:: 1 -8 exception%1:09:01:: 2 -8 exceed%2:42:00:: 2 -8 exact%3:00:00:: 1 -8 evaluation%1:04:00:: 1 -8 etcetera%1:06:00:: 1 -8 essential%5:00:00:important:00 3 -8 escape%2:32:00:: 2 -8 equation%1:10:00:: 1 -8 equate%2:31:00:: 1 -8 enterprise%1:04:00:: 1 -8 enter%2:42:00:: 4 -8 energy%1:07:00:: 2 -8 enemy%5:00:00:hostile:02 1 -8 encounter%2:40:00:: 2 -8 electricity%1:19:00:: 1 -8 eighteen%5:00:00:cardinal:00 1 -8 effective%5:00:00:efficacious:00 3 -8 eastern%5:00:00:east:00 1 -8 duly%4:02:00:: 1 -8 dress%2:29:01:: 2 -8 draw_back%2:38:00:: 1 -8 doubtless%4:02:00:: 1 -8 domestic%3:01:00:: 2 -8 divorce%1:04:00:: 1 -8 disturb%2:37:00:: 1 -8 dilemma%1:09:00:: 1 -8 differently%4:02:00:: 1 -8 diet%1:13:00:: 1 -8 dictate%2:32:00:: 1 -8 destruction%1:04:00:: 1 -8 despise%2:37:00:: 1 -8 despair%1:12:00:: 2 -8 design%2:36:00:: 4 -8 depth%1:07:01:: 2 -8 depending_on%5:00:00:conditional:00 1 -8 dependent%3:00:00:: 1 -8 departure%1:04:00:: 1 -8 department_store%1:06:00:: 1 -8 denver%1:15:00:: 1 -8 demonstration%1:04:00:: 1 -8 democratic%3:01:00:: 2 -8 delayed%3:00:00:: 1 -8 delay%2:30:00:: 1 -8 definitely%4:02:00:: 1 -8 decomposition%1:09:00:: 1 -8 decisive%3:00:00:: 1 -8 dear%5:00:00:loved:00 1 -8 dealer%1:18:02:: 1 -8 deal%1:04:02:: 1 -8 danger%1:04:00:: 2 -8 dancer%1:18:00:: 1 -8 damned%5:00:00:cursed:00 1 -8 cyclist%1:18:00:: 1 -8 cut_off%2:32:00:: 1 -8 cut_down%2:30:00:: 1 -8 cure%1:06:00:: 1 -8 cultural%5:00:00:social:00 2 -8 culminate%2:30:00:: 1 -8 crop%1:20:00:: 1 -8 crisis%1:11:00:: 2 -8 crest%1:15:00:: 1 -8 cover%1:06:01:: 2 -8 count_on%2:31:00:: 1 -8 council%1:14:01:: 1 -8 convey%2:32:01:: 2 -8 controversy%1:10:00:: 1 -8 contract%2:32:00:: 1 -8 contest%1:11:00:: 1 -8 content%1:10:00:: 2 -8 contemplate%2:39:00:: 1 -8 consistently%4:02:00:: 1 -8 consist_of%2:42:01:: 2 -8 connect%2:35:00:: 1 -8 concentrate%2:30:01:: 1 -8 conceal%2:39:01:: 1 -8 comprise%2:42:01:: 1 -8 comprehensive%3:00:00:: 1 -8 composed%5:00:00:combined:00 1 -8 comparison%1:24:00:: 2 -8 community%1:14:03:: 2 -8 communicate%2:32:00:: 2 -8 common_man%1:18:00:: 1 -8 commence%2:30:00:: 1 -8 command%2:32:00:: 2 -8 come_up%2:30:00:: 2 -8 column%1:14:01:: 3 -8 collect%2:35:01:: 4 -8 collapse%2:38:00:: 1 -8 co-optation%1:04:00:: 1 -8 closed%3:00:01:: 1 -8 close%1:28:00:: 1 -8 clear%5:00:00:clearheaded:00 2 -8 clean_up%2:30:03:: 1 -8 classification%1:04:00:: 1 -8 classical%3:00:00:: 1 -8 claimant%1:18:00:: 1 -8 civilian%3:00:00:: 1 -8 circumstance%1:26:02:: 2 -8 chuckle%2:29:00:: 1 -8 choke%2:29:00:: 1 -8 choice%1:04:00:: 2 -8 childish%5:00:00:immature:02 1 -8 charming%5:00:00:pleasing:00 1 -8 characterize%2:42:01:: 2 -8 chapel%1:06:00:: 1 -8 chance%1:19:00:: 2 -8 chairman%1:18:01:: 1 -8 certain%3:00:01:: 3 -8 centrifuge%2:38:00:: 1 -8 cause%1:04:01:: 3 -8 cathode%1:06:00:: 1 -8 catch%2:35:01:: 5 -8 catch%2:35:00:: 4 -8 carry%2:38:03:: 3 -8 carry%2:32:02:: 4 -8 carpenter%1:18:00:: 1 -8 career%1:04:01:: 2 -8 capability%1:07:00:: 1 -8 calm%5:00:00:peaceful:00 2 -8 call_on%2:32:00:: 1 -8 button%1:06:00:: 1 -8 buffer%1:27:00:: 1 -8 buckskin%1:05:00:: 1 -8 brush%1:06:00:: 2 -8 break%2:35:01:: 4 -8 break%2:30:10:: 5 -8 box%1:06:02:: 2 -8 bother%2:41:01:: 3 -8 bomb%1:06:00:: 1 -8 bodybuilder%1:18:00:: 1 -8 body_weight%1:07:00:: 1 -8 bloody%3:00:00:: 1 -8 blockade%1:04:00:: 1 -8 bloat%1:26:00:: 1 -8 birthday%1:28:00:: 1 -8 binomial_distribution%1:09:00:: 1 -8 bind%2:35:06:: 1 -8 big%5:00:00:significant:00 2 -8 biblical%3:01:00:: 1 -8 better%5:00:00:advisable:00 3 -8 betray%2:32:01:: 1 -8 belly%1:08:00:: 1 -8 behavior%1:26:00:: 2 -8 behavior%1:07:00:: 3 -8 beginning%1:28:00:: 2 -8 beat%2:35:00:: 3 -8 beard%1:08:00:: 1 -8 bawl%2:32:00:: 1 -8 battle_cry%1:10:00:: 1 -8 battle%1:04:01:: 2 -8 barrel%1:06:01:: 1 -8 baptize%2:32:00:: 1 -8 band%1:14:00:: 2 -8 baltimore%1:15:00:: 1 -8 ballplayer%1:18:00:: 1 -8 bag%1:06:00:: 1 -8 badness%1:07:00:: 1 -8 background%1:07:00:: 1 -8 back_and_forth%4:02:00:: 1 -8 b%1:14:00:: 1 -8 axe%1:06:00:: 1 -8 awaken%2:29:01:: 2 -8 awaken%2:29:00:: 1 -8 augment%2:30:01:: 1 -8 attorney%1:18:00:: 1 -8 attack%2:33:01:: 3 -8 at_the_same_time%5:00:00:synchronous:00 1 -8 at_the_same_time%4:02:05:: 2 -8 at_present%4:02:00:: 1 -8 at_a_time%4:02:00:: 1 -8 astonishment%1:12:00:: 1 -8 artillery%1:06:00:: 1 -8 arise%2:38:00:: 3 -8 area%1:06:00:: 5 -8 arbitrary%3:00:00:: 1 -8 appoint%2:41:00:: 2 -8 application%1:10:00:: 2 -8 appeal%1:07:00:: 2 -8 appeal%1:04:00:: 3 -8 apparent%5:00:00:superficial:00 2 -8 anticipate%2:31:00:: 1 -8 anglican%3:01:00:: 1 -8 angel%1:18:00:: 1 -8 anecdote%1:10:00:: 1 -8 andrena%1:05:00:: 1 -8 ample%3:00:00:: 1 -8 alveolar%3:01:00:: 1 -8 allow_for%2:42:00:: 1 -8 allow%2:31:01:: 4 -8 all_too%4:02:00:: 1 -8 all_the_time%4:02:01:: 1 -8 aim%2:33:00:: 1 -8 agreement%1:07:00:: 2 -8 agglutinin%1:27:00:: 1 -8 affairs%1:09:00:: 1 -8 admission%1:04:00:: 1 -8 admire%2:39:00:: 2 -8 admiration%1:12:01:: 1 -8 administration%1:04:00:: 1 -8 actual%5:00:00:real:00 2 -8 accordance%1:10:00:: 1 -8 accompany%2:38:00:: 2 -8 accept%2:40:03:: 5 -8 absorb%2:35:01:: 1 -8 absence%1:04:00:: 2 -8 abroad%4:02:00:: 1 -8 23%5:00:00:cardinal:00 1 -8 19%5:00:00:cardinal:00 1 -8 15th%5:00:00:ordinal:00 1 -8 15_minutes%1:28:00:: 1 -7 young%1:05:00:: 1 -7 yell%1:10:00:: 1 -7 yank%1:18:02:: 1 -7 writhe%2:38:00:: 1 -7 worried%5:00:00:troubled:00 1 -7 working%5:00:00:employed:00 1 -7 witness%2:39:01:: 2 -7 witness%1:18:00:: 1 -7 widen%2:30:00:: 1 -7 wheel%2:38:00:: 1 -7 way%4:02:00:: 1 -7 way%1:07:02:: 9 -7 wax%1:27:00:: 1 -7 wave%1:11:00:: 3 -7 wash%2:35:00:: 3 -7 wake_up%2:29:00:: 2 -7 wake%2:29:00:: 1 -7 wail%2:32:00:: 1 -7 voter%1:18:00:: 1 -7 visit%1:14:00:: 2 -7 vision%1:09:02:: 3 -7 violate%2:42:00:: 1 -7 vine%1:20:00:: 1 -7 view%1:15:00:: 4 -7 veteran%1:18:02:: 1 -7 version%1:10:01:: 1 -7 version%1:09:01:: 2 -7 verify%2:31:01:: 1 -7 vary%2:42:01:: 3 -7 variety%1:07:00:: 2 -7 valor%1:07:00:: 1 -7 useless%3:00:00:: 1 -7 use%1:07:02:: 3 -7 uphold%2:42:00:: 1 -7 unite%2:41:00:: 1 -7 unite%2:30:00:: 2 -7 unfortunate%3:00:00:: 1 -7 unexpected%3:00:00:: 1 -7 undermine%2:41:00:: 1 -7 underlying%5:00:00:implicit:00 1 -7 underground%5:00:00:subsurface:00 1 -7 typically%4:02:00:: 1 -7 type%1:18:00:: 2 -7 turn_back%2:38:00:: 1 -7 turn%2:30:00:: 5 -7 turn%1:25:00:: 1 -7 tug%2:35:00:: 1 -7 tube%1:06:02:: 2 -7 tub%1:06:01:: 1 -7 truth%1:26:00:: 2 -7 trembling%5:00:00:unsteady:00 1 -7 treasury%1:21:00:: 1 -7 travel%1:04:00:: 1 -7 transportation%1:06:00:: 1 -7 translate%2:30:01:: 2 -7 tramp%2:38:00:: 1 -7 tragic%5:00:00:sad:00 1 -7 top%5:00:00:important:00 2 -7 tolerate%2:31:00:: 1 -7 together%4:02:01:: 6 -7 tired_of%5:00:00:displeased:00 1 -7 time%1:28:03:: 7 -7 thrust%2:38:02:: 2 -7 throw%2:35:07:: 3 -7 throw%2:35:02:: 4 -7 threshold%1:28:00:: 1 -7 thoroughly%4:02:01:: 2 -7 things%1:21:00:: 1 -7 thin%5:00:00:narrow:00 3 -7 thick%5:00:00:concentrated:00 2 -7 therapy%1:04:00:: 1 -7 theater%1:06:00:: 1 -7 thanks%1:10:00:: 1 -7 textile%1:06:00:: 1 -7 test%1:04:02:: 2 -7 terminal%5:00:00:last:00 1 -7 tentative%5:00:00:conditional:00 1 -7 tears%1:04:00:: 1 -7 tear%2:35:01:: 2 -7 taste%1:12:02:: 2 -7 tank%1:06:01:: 1 -7 talk_into%2:32:00:: 1 -7 take_out%2:41:01:: 1 -7 take_a_look%2:39:00:: 1 -7 take%2:30:08:: 24 -7 tactual%3:01:00:: 1 -7 system%1:08:00:: 6 -7 synthetic%5:00:00:artificial:00 1 -7 sympathy%1:12:00:: 2 -7 symmetric%3:00:00:: 1 -7 suspended%5:00:01:supported:00 1 -7 surplus%5:00:00:unnecessary:00 1 -7 suit%2:42:05:: 1 -7 suffering%1:12:02:: 3 -7 suffer%2:30:00:: 5 -7 submarine%1:06:00:: 1 -7 subject%5:00:01:taxable:00 1 -7 style%1:10:00:: 2 -7 style%1:09:01:: 3 -7 struggle%2:35:00:: 2 -7 structure%1:09:00:: 3 -7 strip%2:40:03:: 1 -7 strike%2:33:00:: 4 -7 strike%1:04:00:: 1 -7 strictly%4:02:00:: 1 -7 straighten%2:38:00:: 1 -7 straight_line%1:25:00:: 1 -7 straight%4:02:04:: 2 -7 story%1:06:00:: 3 -7 storage%1:04:01:: 1 -7 stop%2:38:02:: 4 -7 stop%2:38:01:: 5 -7 stoop%2:38:00:: 1 -7 stolid%5:00:00:unemotional:00 1 -7 stir%2:38:01:: 1 -7 stick%1:06:00:: 1 -7 step%2:38:01:: 2 -7 step%1:04:00:: 3 -7 stay%2:38:01:: 5 -7 statistic%1:09:00:: 1 -7 start_out%2:30:00:: 1 -7 start%2:38:04:: 7 -7 start%2:38:01:: 8 -7 stand_still%2:38:00:: 1 -7 square%3:00:00:: 1 -7 sponsor%2:40:01:: 2 -7 splendid%5:00:00:beautiful:00 1 -7 spiritual%5:00:00:sacred:00 1 -7 spirit%1:18:00:: 4 -7 spiral%1:25:00:: 1 -7 speed%2:38:03:: 1 -7 speech%1:10:00:: 2 -7 specificity%1:07:01:: 1 -7 special%5:00:00:uncommon:00 3 -7 spare%2:41:00:: 1 -7 southern%5:00:02:south:00 2 -7 son_of_a_bitch%1:18:00:: 1 -7 somehow%4:02:01:: 2 -7 some%5:00:00:much(a):00 5 -7 some%5:00:00:many:00 3 -7 solder%2:35:00:: 1 -7 social%3:00:00:: 2 -7 so_far%4:02:00:: 1 -7 so%4:02:07:: 4 -7 snap%2:32:00:: 1 -7 smooth%2:35:00:: 1 -7 slug%2:35:00:: 1 -7 slip%2:30:04:: 2 -7 slight%5:00:00:weak:00 1 -7 slash%2:35:01:: 1 -7 skirmisher%1:18:00:: 1 -7 skip%2:31:01:: 1 -7 skiff%1:06:00:: 1 -7 sixty%5:00:00:cardinal:00 1 -7 sip%2:34:00:: 1 -7 single%1:04:00:: 1 -7 sin%2:41:00:: 1 -7 simply%4:02:02:: 3 -7 silly%5:00:00:foolish:00 1 -7 significance%1:09:01:: 2 -7 sick%5:00:02:ill:01 2 -7 shut%3:00:00:: 1 -7 show%2:32:04:: 11 -7 short%3:00:03:: 3 -7 shop%2:40:00:: 1 -7 shoot%2:32:01:: 4 -7 ship%2:38:00:: 1 -7 sheriff%1:18:00:: 1 -7 sex%1:14:00:: 2 -7 settlement%1:14:00:: 1 -7 settle%2:30:00:: 4 -7 setting%1:15:00:: 1 -7 serve%2:42:02:: 8 -7 series%1:10:01:: 2 -7 separate%2:31:01:: 3 -7 sentiment%1:12:00:: 1 -7 sensor%1:06:00:: 1 -7 sensitive%3:00:02:: 2 -7 self%1:18:00:: 2 -7 see%2:41:14:: 14 -7 seated%3:00:00:: 1 -7 scientist%1:18:00:: 1 -7 scholarship%1:21:00:: 1 -7 scholar%1:18:00:: 1 -7 scene%1:26:00:: 5 -7 scene%1:10:00:: 6 -7 scattered%5:00:00:distributed:00 1 -7 scar%1:26:00:: 1 -7 savagely%4:02:00:: 1 -7 satisfactory%5:00:00:good:01 2 -7 satisfactorily%4:02:00:: 1 -7 satire%1:10:00:: 1 -7 sample%2:34:00:: 1 -7 sadly%4:02:00:: 1 -7 sacrifice%1:04:01:: 1 -7 rustle%2:39:00:: 1 -7 rural%3:01:01:: 2 -7 run_a_risk%2:41:00:: 1 -7 run%2:42:07:: 8 -7 run%2:33:06:: 9 -7 rule%1:10:01:: 4 -7 roman_catholic_church%1:14:00:: 1 -7 roll%2:42:00:: 3 -7 roar%2:32:03:: 2 -7 roam%2:38:00:: 1 -7 ring%2:39:04:: 2 -7 rhythm%1:10:01:: 1 -7 revolutionary%5:00:00:new:00 1 -7 reverse%2:30:01:: 2 -7 retire%2:41:02:: 2 -7 resulting%5:00:00:subsequent:00 1 -7 restaurant%1:06:00:: 1 -7 respond%2:32:00:: 2 -7 resort%2:41:11:: 1 -7 resistor%1:06:00:: 1 -7 reserve%2:40:03:: 1 -7 resemblance%1:07:00:: 1 -7 request%2:32:02:: 2 -7 republic%1:14:00:: 1 -7 reproach%1:10:00:: 1 -7 represent%2:42:01:: 6 -7 replace%2:35:00:: 3 -7 repel%2:35:00:: 1 -7 repeat%2:32:01:: 4 -7 repay%2:40:00:: 1 -7 renew%2:36:00:: 1 -7 relevance%1:24:00:: 1 -7 relate%2:32:00:: 3 -7 rehabilitation%1:04:01:: 1 -7 registration%1:04:00:: 1 -7 register%2:41:00:: 1 -7 regimental%3:01:00:: 1 -7 refund%1:21:00:: 1 -7 red%5:00:00:colored:00 4 -7 red%1:17:00:: 2 -7 recruit%2:41:01:: 1 -7 record%1:23:00:: 3 -7 reconsider%2:31:00:: 1 -7 reciprocal%3:00:00:: 1 -7 rebut%2:32:00:: 1 -7 rear%2:38:00:: 1 -7 reaction%1:04:00:: 3 -7 raw%5:00:00:unprocessed:00 1 -7 ration%1:13:01:: 1 -7 rating%1:09:00:: 1 -7 range%1:15:02:: 4 -7 raise%2:41:00:: 6 -7 raise%2:36:01:: 7 -7 quirt%1:06:00:: 1 -7 quietly%4:02:01:: 2 -7 quick%4:02:00:: 1 -7 quarter%1:23:01:: 1 -7 quantity%1:07:00:: 2 -7 push%2:32:01:: 2 -7 public_law%1:10:00:: 1 -7 providence%1:15:00:: 1 -7 protrude%2:42:00:: 1 -7 proportion%1:07:00:: 2 -7 propagandist%1:18:00:: 1 -7 project%2:32:00:: 1 -7 profession%1:14:00:: 1 -7 probe%2:32:00:: 1 -7 privately%4:02:00:: 1 -7 priority%1:26:00:: 1 -7 principle%1:09:00:: 3 -7 primary%5:00:00:important:00 3 -7 press%2:32:00:: 2 -7 present%2:42:00:: 5 -7 prescribe%2:32:00:: 1 -7 prepare_for%2:30:00:: 1 -7 precious%5:00:00:loved:00 1 -7 preceding%3:00:00:: 1 -7 practice%2:31:00:: 2 -7 power%1:26:00:: 4 -7 power%1:18:00:: 5 -7 power%1:10:00:: 6 -7 poverty%1:26:00:: 1 -7 pour%2:38:00:: 2 -7 potter%1:18:00:: 1 -7 potential%3:00:00:: 1 -7 position%1:07:00:: 7 -7 pose%2:42:00:: 1 -7 populate%2:42:00:: 1 -7 polish%2:35:00:: 1 -7 poland%1:15:00:: 1 -7 poke%2:35:01:: 1 -7 point_out%2:32:03:: 2 -7 pleasing%3:00:00:: 1 -7 planter%1:18:00:: 1 -7 place%2:31:01:: 3 -7 place%1:26:01:: 6 -7 pitching%1:04:00:: 1 -7 pig%1:05:00:: 1 -7 piece%1:10:01:: 4 -7 physician%1:18:00:: 1 -7 physically%4:02:00:: 1 -7 photographic%3:01:00:: 1 -7 phone%2:32:00:: 1 -7 philosophical%3:01:00:: 1 -7 ph%1:07:00:: 1 -7 personally%4:02:01:: 1 -7 period_of_time%1:28:00:: 1 -7 perfection%1:26:00:: 1 -7 penetrate%2:35:00:: 1 -7 pencil%1:06:00:: 1 -7 pay_attention%2:39:00:: 1 -7 patch%1:07:00:: 1 -7 passionate%3:00:00:: 1 -7 passing%1:04:03:: 1 -7 pass%2:30:00:: 8 -7 partner%1:18:00:: 2 -7 particular%1:09:00:: 1 -7 partially%4:02:00:: 1 -7 part%1:09:00:: 9 -7 panic%1:12:00:: 1 -7 pair%1:14:00:: 3 -7 paint%1:06:00:: 1 -7 packet%1:14:00:: 1 -7 outside%1:15:01:: 1 -7 outfit%1:14:00:: 1 -7 otherwise%4:02:03:: 2 -7 originate_in%2:42:00:: 1 -7 order%1:26:00:: 3 -7 orange%5:00:00:chromatic:00 1 -7 or_else%4:02:01:: 1 -7 opposition%1:04:01:: 1 -7 operational%3:01:00:: 1 -7 open%5:00:00:public:00 4 -7 one-third%1:23:00:: 1 -7 one-half%1:23:00:: 1 -7 on_the_job%5:00:00:employed:00 1 -7 on_it%4:02:00:: 1 -7 old_boy%1:18:02:: 1 -7 of_a_sudden%4:02:00:: 1 -7 odor%1:07:00:: 1 -7 odd%3:00:00:: 1 -7 occupy%2:42:00:: 3 -7 occupation%1:04:00:: 1 -7 obvious%5:00:00:palpable:00 2 -7 observed%5:00:00:determined:00 1 -7 obliged%5:00:00:obligated(p):00 1 -7 north%3:00:00:: 1 -7 next%5:00:00:incoming:00 2 -7 negligible%5:00:00:minimal:00 1 -7 necessity%1:17:00:: 2 -7 nearby%4:02:00:: 1 -7 naturally%4:02:01:: 2 -7 nationalism%1:07:00:: 1 -7 multiply%2:30:00:: 2 -7 muffled%5:00:00:soft:04 1 -7 muddy%5:00:00:wet:01 1 -7 move_on%2:38:00:: 1 -7 move%2:29:06:: 6 -7 motion%1:11:00:: 2 -7 monument%1:06:00:: 1 -7 momentum%1:07:00:: 1 -7 moisture%1:26:00:: 1 -7 mix%2:30:00:: 1 -7 mistake%2:31:02:: 1 -7 missouri%1:15:00:: 1 -7 mission%1:04:02:: 4 -7 miracle%1:11:00:: 1 -7 mild%3:00:00:: 1 -7 midnight%1:28:00:: 1 -7 microscope%1:06:00:: 1 -7 metropolis%1:15:00:: 1 -7 messenger%1:18:00:: 1 -7 meet%2:42:00:: 11 -7 matter%1:03:00:: 3 -7 material%1:06:00:: 3 -7 mate%2:35:00:: 1 -7 map%1:06:00:: 1 -7 manner%1:09:01:: 3 -7 making%1:04:00:: 1 -7 make_it%2:42:00:: 1 -7 major_axis%1:09:00:: 1 -7 loyalty%1:07:00:: 1 -7 lover%1:18:00:: 1 -7 lose%2:35:00:: 4 -7 loom%2:42:02:: 1 -7 look_out%2:39:00:: 1 -7 look_forward%2:31:00:: 1 -7 log%1:27:01:: 1 -7 lock%2:35:01:: 2 -7 living%5:00:01:alive(p):01 9 -7 living%1:09:00:: 1 -7 lively%3:00:00:: 1 -7 liquor%1:27:00:: 2 -7 line%2:42:00:: 1 -7 light%1:15:00:: 5 -7 lieutenant%1:18:00:: 2 -7 lick%2:35:00:: 2 -7 liberty%1:26:01:: 1 -7 letter%1:10:01:: 2 -7 let_down%2:38:00:: 1 -7 less%1:23:00:: 1 -7 lend%2:40:01:: 1 -7 lend%2:40:00:: 2 -7 leg%1:08:02:: 2 -7 leave%2:40:01:: 12 -7 learned%5:00:00:scholarly:00 1 -7 lead%1:07:02:: 1 -7 lay_out%2:35:00:: 1 -7 lately%4:02:00:: 1 -7 last%2:42:01:: 2 -7 land%1:15:02:: 5 -7 lag%2:38:00:: 1 -7 knock%2:35:04:: 1 -7 kitten%1:05:00:: 1 -7 kiss%1:04:00:: 1 -7 kind_of%4:02:00:: 1 -7 kick%2:35:00:: 3 -7 jupiter%1:17:00:: 1 -7 join%2:35:00:: 4 -7 jesus%1:18:00:: 1 -7 iodide%1:27:00:: 1 -7 invite%2:37:01:: 1 -7 investment%1:04:00:: 1 -7 invest%2:40:00:: 1 -7 invade%2:33:00:: 1 -7 introduce%2:38:00:: 4 -7 intricate%5:00:00:complex:00 1 -7 interview%1:10:01:: 1 -7 intersect%2:38:00:: 1 -7 interest%1:21:03:: 5 -7 intelligence%1:09:00:: 1 -7 insurance%1:21:02:: 1 -7 injury%1:11:00:: 2 -7 injured%3:00:00:: 1 -7 inherent%5:00:00:intrinsic:00 1 -7 infectious%5:00:00:septic:00 1 -7 individually%4:02:00:: 1 -7 indirectly%4:02:00:: 1 -7 increase%1:22:00:: 3 -7 in_truth%4:02:01:: 1 -7 in_common%4:02:00:: 1 -7 in_a_way%4:02:02:: 1 -7 improvement%1:11:00:: 1 -7 improvement%1:04:00:: 2 -7 impose%2:32:00:: 2 -7 impart%2:40:00:: 1 -7 imaginary%5:00:00:unreal:00 1 -7 ignore%2:39:00:: 3 -7 identify%2:32:00:: 2 -7 identification%1:12:00:: 2 -7 ideal%1:09:00:: 1 -7 hymn%1:10:00:: 1 -7 hunter%1:18:00:: 1 -7 hungry%3:00:00:: 1 -7 humor%1:12:00:: 3 -7 human%1:03:00:: 1 -7 horn%1:06:06:: 1 -7 horizon%1:07:00:: 2 -7 hop%2:38:00:: 1 -7 hoof%1:05:00:: 1 -7 homogeneous%3:00:00:: 1 -7 home%3:00:00:: 1 -7 hold%2:42:13:: 11 -7 hoarse%5:00:00:cacophonous:00 1 -7 historical%3:01:01:: 2 -7 hint%2:32:00:: 1 -7 highest%5:00:00:ultimate:00 2 -7 high%3:00:03:: 4 -7 hidden%5:00:01:concealed:00 2 -7 hidden%5:00:00:invisible:00 1 -7 hereby%4:02:00:: 1 -7 heed%2:41:00:: 1 -7 hebephrenic%5:00:00:insane:00 1 -7 heavily%4:02:04:: 2 -7 heaven%1:15:00:: 1 -7 headquarters%1:06:01:: 1 -7 head%1:09:00:: 3 -7 have%2:40:05:: 15 -7 have%2:40:03:: 16 -7 haul%2:35:01:: 1 -7 hasten%2:30:00:: 1 -7 happy%5:00:00:glad:00 2 -7 hang_around%2:42:00:: 1 -7 handsome%5:00:00:beautiful:00 1 -7 halt%2:38:01:: 2 -7 habit%1:09:00:: 1 -7 grow%2:42:00:: 6 -7 ground%1:27:00:: 3 -7 groan%2:32:00:: 1 -7 grip%1:04:00:: 1 -7 grim%5:00:00:alarming:00 2 -7 greatest%5:00:00:large:00 2 -7 great%5:00:00:good:01 6 -7 greasy%5:00:00:fatty:00 1 -7 graduate%2:40:00:: 1 -7 gradual%3:00:01:: 1 -7 government%1:04:00:: 2 -7 gospel%1:10:00:: 1 -7 goodness%1:07:02:: 1 -7 go_up%2:30:00:: 2 -7 go_after%2:38:01:: 1 -7 go%2:42:07:: 10 -7 give_way%2:38:00:: 1 -7 get_rid_of%2:40:01:: 1 -7 get_into%2:38:00:: 2 -7 get%2:32:00:: 10 -7 german%1:18:00:: 1 -7 gently%4:02:00:: 1 -7 generation%1:14:00:: 2 -7 gather%2:41:00:: 2 -7 gas%1:27:02:: 3 -7 garden%1:06:00:: 1 -7 gang%1:14:01:: 1 -7 game%1:05:00:: 4 -7 gain%2:40:02:: 3 -7 further%2:41:01:: 1 -7 furiously%4:02:00:: 1 -7 furious%5:00:00:violent:00 1 -7 fundamental%5:00:00:basic:00 2 -7 function%1:04:00:: 3 -7 full%5:00:00:complete:00 3 -7 frontage%1:07:00:: 1 -7 frightened%5:00:00:afraid(p):00 2 -7 freeway%1:06:00:: 1 -7 free_burning%5:00:00:continuous:01 1 -7 frame%1:06:02:: 1 -7 fragment%1:17:01:: 1 -7 fortunate%3:00:00:: 1 -7 formerly%4:02:00:: 1 -7 formation%1:14:00:: 1 -7 foreigner%1:18:00:: 1 -7 follower%1:18:00:: 1 -7 flow%1:28:00:: 2 -7 flexibility%1:07:02:: 1 -7 flatter%2:32:00:: 1 -7 flash%1:11:00:: 1 -7 fix%2:35:00:: 2 -7 fit%2:30:01:: 4 -7 fire%2:41:00:: 4 -7 fire%1:22:00:: 3 -7 fine%5:00:00:skilled:00 2 -7 field%1:17:00:: 9 -7 field%1:14:00:: 10 -7 fictional%3:01:00:: 1 -7 fellowship%1:14:00:: 1 -7 fear%1:12:01:: 2 -7 favor%2:31:00:: 2 -7 fascinating%5:00:00:interesting:00 1 -7 fame%1:26:01:: 1 -7 fall_in_love%2:30:00:: 1 -7 fake%5:00:00:counterfeit:00 1 -7 faded%5:00:00:colorless:02 1 -7 expose%2:32:01:: 2 -7 explicit%3:00:00:: 1 -7 explain%2:32:02:: 3 -7 experiment%1:04:01:: 3 -7 expend%2:34:00:: 1 -7 expand%2:38:00:: 1 -7 exert%2:40:00:: 2 -7 execute%2:41:02:: 1 -7 exclusively%4:02:00:: 1 -7 exclude%2:41:00:: 2 -7 exclamation%1:10:00:: 1 -7 excessive%5:00:00:immoderate:00 1 -7 examine%2:32:01:: 3 -7 exact%5:00:00:correct:00 2 -7 evidence%1:10:00:: 3 -7 everyday%5:00:00:ordinary:00 1 -7 ever%4:02:05:: 3 -7 eve%1:18:00:: 1 -7 established%3:00:00:: 1 -7 escort%2:38:00:: 1 -7 escape%2:32:04:: 3 -7 equivalent_to%5:00:00:equal:00 1 -7 enzyme%1:27:00:: 1 -7 enter%2:32:04:: 5 -7 entail%2:42:01:: 1 -7 ensue%2:42:00:: 1 -7 enrich%2:30:00:: 1 -7 enlist%2:33:00:: 1 -7 enlarge%2:30:03:: 1 -7 engaged%5:00:02:busy:00 1 -7 enforce%2:41:01:: 2 -7 endorse%2:41:00:: 1 -7 encounter%1:04:00:: 1 -7 emphasis%1:07:00:: 2 -7 emotional%3:00:00:: 2 -7 elaborate%2:32:00:: 1 -7 eighteenth%5:00:00:ordinal:00 1 -7 efficient%3:00:00:: 1 -7 educate%2:41:00:: 1 -7 east%3:00:00:: 1 -7 earlier%4:02:02:: 2 -7 ear%1:09:00:: 2 -7 each%4:02:00:: 1 -7 e.g.%4:02:00:: 1 -7 dugout%1:06:01:: 1 -7 due_date%1:28:00:: 1 -7 drop%2:38:05:: 4 -7 dressing_room%1:06:00:: 1 -7 dream%1:09:02:: 2 -7 drawing%1:10:00:: 1 -7 draw%2:36:00:: 7 -7 drama%1:11:00:: 2 -7 donor%1:18:00:: 1 -7 done%5:00:00:finished:01 1 -7 donate%2:40:00:: 1 -7 distribution%1:04:00:: 3 -7 distinguished%5:00:00:important:00 1 -7 distinctly%4:02:00:: 1 -7 disobedience%1:04:00:: 1 -7 discern%2:39:00:: 1 -7 disaster%1:26:00:: 1 -7 disaster%1:11:00:: 2 -7 disappointment%1:12:00:: 1 -7 direct%2:41:00:: 4 -7 din%1:04:00:: 2 -7 dimension%1:07:00:: 1 -7 differential_equation%1:10:00:: 1 -7 development%1:04:02:: 5 -7 determine%2:31:03:: 6 -7 determination%1:04:00:: 1 -7 detectable%5:00:00:perceptible:00 1 -7 desperate%5:00:00:hopeless:00 1 -7 desert%2:31:00:: 1 -7 derive%2:30:01:: 3 -7 denote%2:32:00:: 2 -7 democracy%1:09:00:: 1 -7 demand%2:32:02:: 3 -7 deja_vu%1:09:00:: 1 -7 degree%1:23:00:: 4 -7 deep%5:00:00:distant:01 4 -7 deduce%2:31:00:: 1 -7 deaf%3:00:00:: 1 -7 dc%1:15:00:: 1 -7 day%1:28:05:: 6 -7 dash%2:38:00:: 1 -7 damn%2:32:00:: 1 -7 daily%3:01:00:: 2 -7 curriculum%1:10:00:: 1 -7 cup%1:23:01:: 2 -7 cuban%3:01:00:: 1 -7 cruel%5:00:00:heartless:00 1 -7 crown_gall%1:26:00:: 1 -7 crouch%2:35:00:: 2 -7 cross%2:38:03:: 2 -7 critical%3:00:01:: 1 -7 crimson%5:00:00:chromatic:00 1 -7 creek%1:17:00:: 1 -7 credit%1:10:00:: 1 -7 count%2:42:00:: 2 -7 costume%1:06:00:: 1 -7 cost%1:07:00:: 2 -7 cosmic%3:01:00:: 1 -7 corresponding%5:00:00:similar:00 2 -7 copy%1:10:00:: 1 -7 cooperative%5:00:00:joint:00 1 -7 cooperation%1:04:01:: 1 -7 cook%1:18:00:: 1 -7 control%2:35:00:: 3 -7 control%1:04:02:: 3 -7 contrast%2:31:00:: 1 -7 contradiction%1:24:00:: 1 -7 continuing%5:00:00:continued:00 1 -7 contempt%1:12:00:: 1 -7 contemplate%2:31:02:: 2 -7 constitutional%3:01:01:: 1 -7 constituent%1:06:00:: 1 -7 constant%5:00:00:continual:00 2 -7 consistent%3:00:00:: 1 -7 consequently%4:02:00:: 1 -7 consent%1:10:00:: 1 -7 conscious%5:00:00:intended:00 1 -7 congregational%3:01:00:: 1 -7 confusion%1:09:00:: 2 -7 confront%2:32:03:: 3 -7 confident%3:00:00:: 1 -7 conditioned_reaction%1:04:00:: 1 -7 concentration_camp%1:06:00:: 1 -7 compulsive%5:00:00:neurotic:00 1 -7 competitor%1:18:00:: 1 -7 competent%3:00:00:: 1 -7 competence%1:07:00:: 1 -7 comparatively%4:02:00:: 1 -7 communist%1:18:01:: 1 -7 come_up%2:38:02:: 3 -7 come_along%2:30:00:: 1 -7 come%2:42:09:: 9 -7 combat%2:33:00:: 1 -7 color%2:30:00:: 1 -7 colony%1:14:00:: 1 -7 collective%5:00:00:joint:00 1 -7 colleague%1:18:00:: 1 -7 cold_war%1:26:00:: 1 -7 coin%1:21:02:: 1 -7 close_in%2:38:00:: 1 -7 clerk%1:18:00:: 1 -7 classification%1:14:00:: 2 -7 clarify%2:31:00:: 1 -7 clamp%2:35:00:: 1 -7 clamber%2:38:00:: 1 -7 civil%5:00:00:civilian:00 1 -7 cigar%1:06:00:: 1 -7 chosen%5:00:00:selected:00 1 -7 chore%1:04:00:: 1 -7 check%2:41:04:: 2 -7 chart%1:10:00:: 1 -7 charged%3:00:00:: 1 -7 charge%2:40:03:: 3 -7 change%2:30:05:: 4 -7 challenge%2:32:00:: 2 -7 central%3:00:01:: 2 -7 center_on%2:42:00:: 1 -7 ceiling%1:06:00:: 1 -7 cavalry%1:14:01:: 1 -7 catkin%1:20:00:: 1 -7 catch%2:35:06:: 6 -7 case%1:06:00:: 5 -7 cartridge%1:06:00:: 1 -7 care%2:37:00:: 3 -7 captain%1:18:04:: 3 -7 canvas%1:06:00:: 1 -7 can%2:42:00:: 1 -7 campaign%2:33:01:: 1 -7 camp%2:42:00:: 1 -7 camp%1:14:00:: 2 -7 called%5:00:01:titled:00 2 -7 call_for%2:32:00:: 3 -7 calibration%1:04:00:: 1 -7 calculation%1:04:00:: 1 -7 business%1:04:02:: 6 -7 bury%2:39:00:: 1 -7 burst%2:37:00:: 2 -7 burst%2:30:09:: 3 -7 burden%1:09:01:: 1 -7 build_up%2:30:02:: 1 -7 buddy%1:18:00:: 1 -7 bronchus%1:08:00:: 1 -7 brilliant%5:00:00:intelligent:00 2 -7 brick%1:06:00:: 1 -7 brand%1:10:00:: 1 -7 bourbon%1:18:01:: 1 -7 boredom%1:12:00:: 1 -7 bore%2:37:00:: 1 -7 body%1:17:00:: 4 -7 body%1:08:01:: 5 -7 boast%2:32:00:: 1 -7 blow%1:11:00:: 2 -7 blot%1:07:00:: 1 -7 block%2:35:00:: 1 -7 blindness%1:26:00:: 1 -7 blend%2:35:00:: 1 -7 bitterness%1:12:00:: 1 -7 biggest%5:00:00:large:00 1 -7 big%5:00:00:important:00 3 -7 benefit%2:40:01:: 2 -7 beloved%5:00:00:loved:00 1 -7 behold%2:39:00:: 1 -7 beebread%1:27:00:: 1 -7 bc%1:28:00:: 1 -7 bay%1:17:00:: 1 -7 basically%4:02:00:: 1 -7 badly%4:02:02:: 1 -7 back%2:41:00:: 1 -7 away%5:00:00:out(p):01 4 -7 awake%2:29:00:: 1 -7 autumn%1:28:00:: 1 -7 automatic%3:00:00:: 1 -7 authenticity%1:07:00:: 1 -7 atmosphere%1:23:00:: 2 -7 atmosphere%1:15:00:: 3 -7 atlanta%1:15:00:: 1 -7 athlete%1:18:00:: 1 -7 associate%1:18:00:: 1 -7 assistant%1:18:00:: 1 -7 assignment%1:04:00:: 1 -7 assign%2:31:02:: 3 -7 assign%2:31:00:: 4 -7 assault%2:33:00:: 1 -7 aside%4:02:00:: 1 -7 art%1:09:00:: 3 -7 arrange%2:32:04:: 3 -7 arise%2:30:00:: 4 -7 argon%1:27:00:: 1 -7 approve%2:31:00:: 2 -7 appreciation%1:09:00:: 1 -7 appear%2:30:02:: 5 -7 appeal_board%1:14:00:: 1 -7 anxiously%4:02:00:: 1 -7 anti%3:00:00:: 2 -7 answer%2:31:02:: 2 -7 answer%2:31:00:: 3 -7 anonymous%3:00:00:: 1 -7 ankle%1:08:00:: 1 -7 anionic%1:27:00:: 1 -7 anatomical%3:01:00:: 1 -7 anastomosis%1:08:00:: 1 -7 amusing%5:00:00:entertaining:00 1 -7 amen_corner%1:06:00:: 1 -7 ambassador%1:18:00:: 1 -7 allusion%1:10:00:: 1 -7 alert%3:00:00:: 1 -7 aim%2:31:01:: 2 -7 ailment%1:26:00:: 1 -7 affix%2:35:00:: 1 -7 aegean%1:17:00:: 1 -7 advertising%1:10:00:: 1 -7 advertise%2:32:01:: 1 -7 advance%2:38:00:: 1 -7 advance%1:11:00:: 1 -7 adapt%2:30:01:: 1 -7 active%5:00:00:operational:00 2 -7 action%1:22:00:: 4 -7 act%2:36:00:: 3 -7 accustomed%3:00:00:: 1 -7 accurately%4:02:01:: 1 -7 accuracy%1:07:02:: 1 -7 accreditation%1:04:00:: 1 -7 account%1:10:03:: 2 -7 accomplishment%1:04:00:: 1 -7 accident%1:11:01:: 1 -7 accept%2:40:01:: 6 -7 absurd%5:00:00:illogical:00 1 -7 absorbed%5:00:00:attentive:00 1 -7 able%5:00:00:competent:00 2 -7 a%1:14:00:: 1 -7 80%5:00:00:cardinal:00 1 -7 27%5:00:00:cardinal:00 1 -7 19th%5:00:00:ordinal:00 1 -7 17%5:00:00:cardinal:00 1 -6 zinc%1:27:00:: 1 -6 zero%1:23:02:: 1 -6 yr%1:28:00:: 1 -6 yield%2:40:02:: 1 -6 yet%4:02:03:: 3 -6 yell%2:32:00:: 2 -6 years%1:28:01:: 2 -6 x_ray%1:19:00:: 1 -6 writing%1:10:00:: 2 -6 worry%1:12:00:: 2 -6 world%1:17:02:: 7 -6 workshop%1:06:00:: 1 -6 workout%1:04:00:: 1 -6 work_out%2:30:01:: 3 -6 work_at%2:41:01:: 1 -6 withstand%2:42:00:: 1 -6 within%4:02:00:: 1 -6 wish%1:12:00:: 1 -6 wing%1:06:00:: 2 -6 window%1:06:01:: 2 -6 will%1:10:00:: 3 -6 white%1:07:00:: 2 -6 whisper%1:10:00:: 1 -6 whiskey%1:13:00:: 1 -6 whirl%2:38:01:: 1 -6 west%1:15:01:: 3 -6 well-known%5:00:00:known:00 1 -6 well%4:02:15:: 4 -6 wear%2:42:01:: 3 -6 wealth%1:26:00:: 1 -6 weaken%2:30:01:: 1 -6 wash%1:06:02:: 1 -6 walk_around%2:38:00:: 1 -6 vocational_program%1:09:00:: 1 -6 vocabulary%1:10:00:: 1 -6 vital%5:00:00:indispensable:00 1 -6 visit%2:38:01:: 4 -6 virtue%1:07:01:: 1 -6 violation%1:04:00:: 1 -6 vindication%1:04:01:: 1 -6 village%1:15:00:: 2 -6 view%1:09:04:: 5 -6 vientiane%1:15:00:: 1 -6 vessel%1:08:00:: 1 -6 vessel%1:06:00:: 2 -6 verb%1:10:01:: 1 -6 vehicle%1:10:00:: 2 -6 vastly%4:02:00:: 1 -6 varying%5:00:00:varied:00 1 -6 variable%3:00:00:: 1 -6 vanish%2:39:00:: 2 -6 utter%2:32:01:: 1 -6 utility%1:14:00:: 1 -6 urgent%5:00:00:imperative:00 1 -6 upward%4:02:00:: 1 -6 up_the_stairs%4:02:00:: 1 -6 up_and_down%4:02:01:: 1 -6 unspeakable%5:00:00:inexpressible:00 1 -6 unsatisfactory%3:00:00:: 1 -6 unpleasant%3:00:00:: 1 -6 unlike%3:00:00:: 1 -6 unit%1:09:00:: 4 -6 unhappy%3:00:00:: 1 -6 understandable%5:00:00:comprehensible:00 1 -6 underline%2:32:00:: 1 -6 uncle%1:18:00:: 1 -6 uncertainty%1:07:00:: 1 -6 uncertain%3:00:02:: 1 -6 u.s.%1:15:00:: 2 -6 turn_out%2:42:02:: 4 -6 turn%1:04:01:: 2 -6 truth%1:10:00:: 3 -6 trustee%1:18:00:: 1 -6 trudge%2:38:01:: 1 -6 trouble%2:37:01:: 1 -6 triumph%1:11:00:: 1 -6 transfer%2:41:00:: 1 -6 transfer%2:40:01:: 2 -6 transfer%2:38:05:: 3 -6 trance%1:26:00:: 1 -6 trade%2:40:01:: 1 -6 trade%2:40:00:: 2 -6 trade%1:04:01:: 3 -6 track%1:17:00:: 1 -6 towel%1:06:00:: 1 -6 tournament%1:11:00:: 1 -6 total%1:09:00:: 2 -6 torso%1:08:00:: 1 -6 tonal%3:01:00:: 1 -6 tomb%1:06:00:: 1 -6 timing%1:07:00:: 1 -6 thyroid_gland%1:08:00:: 1 -6 throw%2:32:00:: 5 -6 thither%4:02:00:: 1 -6 third%1:23:00:: 1 -6 thick%3:00:02:: 3 -6 thermocouple%1:06:00:: 1 -6 thereto%4:02:00:: 1 -6 therein%4:02:00:: 1 -6 there%4:02:02:: 2 -6 theology%1:09:00:: 2 -6 then%1:28:00:: 1 -6 territory%1:15:00:: 1 -6 term%1:10:02:: 3 -6 tendency%1:12:00:: 2 -6 temporary%3:00:00:: 1 -6 temple%1:06:00:: 1 -6 tell%2:32:08:: 6 -6 teen%5:00:00:young:00 1 -6 technological%5:00:00:scientific:00 1 -6 tear%1:08:01:: 1 -6 target%1:10:00:: 1 -6 tap%2:35:02:: 1 -6 tale%1:10:01:: 2 -6 take_out%2:35:01:: 2 -6 take_on%2:41:01:: 2 -6 take_off%2:35:01:: 2 -6 take_off%2:30:00:: 3 -6 take_care%2:41:11:: 3 -6 take_a_chance%2:41:00:: 1 -6 take%2:31:02:: 25 -6 tail%1:05:00:: 1 -6 system%1:09:01:: 7 -6 synthesis%1:22:00:: 1 -6 symptom%1:10:00:: 2 -6 swollen%5:00:00:unhealthy:00 1 -6 swollen%5:00:00:expanded:01 2 -6 swing%2:38:03:: 3 -6 swedish%3:01:00:: 1 -6 suspension%1:27:00:: 1 -6 suspect%2:32:00:: 2 -6 survey%2:31:00:: 1 -6 surround%2:35:00:: 2 -6 surface-active_agent%1:27:00:: 1 -6 supreme%5:00:00:ultimate:00 1 -6 support%2:31:00:: 5 -6 supervision%1:04:00:: 1 -6 superb%5:00:00:superior:02 1 -6 subsidize%2:40:00:: 1 -6 submit%2:33:00:: 3 -6 subject%2:33:00:: 2 -6 study%1:10:00:: 3 -6 study%1:09:04:: 4 -6 study%1:06:00:: 5 -6 stubbornly%4:02:00:: 1 -6 structural%3:01:01:: 1 -6 strive%2:33:00:: 2 -6 strip%1:06:00:: 2 -6 stride%1:04:00:: 1 -6 stravinsky%1:18:00:: 1 -6 strangely%4:02:00:: 1 -6 strain%2:33:00:: 1 -6 straighten%2:35:00:: 2 -6 straight%3:00:01:: 2 -6 stimulate%2:30:00:: 1 -6 stillness%1:07:00:: 1 -6 stick%1:20:00:: 2 -6 stereotype%1:09:00:: 1 -6 step_out%2:38:00:: 1 -6 steadily%4:02:01:: 1 -6 startled%5:00:00:surprised:00 1 -6 starting_buffer%1:27:00:: 1 -6 standpoint%1:09:00:: 1 -6 stammer%2:32:00:: 1 -6 stagger%2:38:01:: 2 -6 stage%1:10:00:: 4 -6 stable%3:00:00:: 1 -6 stability%1:07:00:: 1 -6 squeeze%2:35:00:: 2 -6 spread_out%2:38:00:: 1 -6 spread%2:35:07:: 2 -6 sportsman%1:18:00:: 1 -6 sport%1:04:01:: 2 -6 spirit%1:26:01:: 5 -6 specify%2:32:03:: 1 -6 specified%3:00:00:: 1 -6 specialized%3:00:00:: 1 -6 special%5:00:00:specialized:00 4 -6 speak_for%2:41:00:: 1 -6 spanish%1:10:00:: 1 -6 span%1:28:00:: 1 -6 sound%1:10:00:: 5 -6 soul%1:03:00:: 2 -6 sorb%2:35:00:: 1 -6 sonar%1:06:00:: 1 -6 sometime%4:02:00:: 1 -6 solution%1:14:00:: 4 -6 solid%3:00:01:: 2 -6 sole%5:00:00:single(a):00 2 -6 solar_radiation%1:19:00:: 1 -6 society%1:14:01:: 2 -6 soaked%5:00:00:wet:01 1 -6 so%4:02:08:: 5 -6 snarl%2:32:00:: 1 -6 smash%2:35:00:: 1 -6 slip%2:38:00:: 3 -6 slender%5:00:00:thin:03 1 -6 sleepy%5:00:00:asleep(p):00 1 -6 sketch%1:10:03:: 2 -6 sixties%1:28:01:: 1 -6 six%1:23:00:: 1 -6 sit%2:38:01:: 4 -6 single%2:35:00:: 1 -6 singing%1:04:00:: 1 -6 sincere%3:00:00:: 1 -6 similitude%1:07:00:: 1 -6 similar%3:00:04:: 2 -6 silk%1:06:00:: 1 -6 significantly%4:02:04:: 1 -6 sight%1:09:00:: 3 -6 sigh%1:10:00:: 1 -6 side%3:00:00:: 1 -6 shut_up%2:32:00:: 1 -6 show%2:32:03:: 12 -6 shove%2:38:00:: 1 -6 shot%1:04:06:: 3 -6 shortly%4:02:01:: 1 -6 shorten%2:30:01:: 1 -6 shock%1:12:01:: 1 -6 shipping_fever%1:26:00:: 1 -6 shine%2:43:00:: 2 -6 sherlock_holmes%1:18:00:: 1 -6 sheer%5:00:00:complete:00 1 -6 sharp%5:00:00:smart:00 4 -6 sharp%5:00:00:pointed:00 2 -6 sharp%5:00:00:perceptive:00 3 -6 shape%2:36:00:: 2 -6 shape%1:03:00:: 2 -6 shallow%3:00:01:: 1 -6 shake%2:38:02:: 4 -6 shake%2:30:00:: 5 -6 sexual_relationship%1:26:00:: 1 -6 set_up%2:30:00:: 4 -6 set_aside%2:31:00:: 1 -6 set%2:35:02:: 6 -6 set%1:04:00:: 3 -6 session%1:28:00:: 2 -6 sergeant%1:18:01:: 1 -6 septum%1:08:00:: 1 -6 separate%2:41:01:: 4 -6 sentiment%1:09:00:: 2 -6 sentence%2:32:00:: 1 -6 senator%1:18:00:: 1 -6 senate%1:14:00:: 1 -6 seeming%5:00:00:superficial:00 1 -6 secular%5:00:00:profane:00 1 -6 secretary_of_state%1:18:01:: 1 -6 second%1:28:01:: 2 -6 scrutinize%2:39:00:: 1 -6 script%1:10:00:: 1 -6 scream%1:10:00:: 1 -6 scorn%1:12:00:: 1 -6 school%1:09:00:: 3 -6 schedule%2:32:00:: 2 -6 schedule%1:10:00:: 2 -6 scan%2:39:00:: 2 -6 scale%1:24:01:: 3 -6 saving%1:04:00:: 1 -6 savage%5:00:00:inhumane:00 1 -6 sandwich%1:13:00:: 1 -6 sanction%2:32:01:: 1 -6 safely%4:02:00:: 1 -6 safe%1:06:00:: 1 -6 russian%1:18:00:: 1 -6 rush%2:33:00:: 2 -6 run_into%2:42:01:: 1 -6 rule_out%2:42:00:: 1 -6 rpm%1:28:00:: 1 -6 round%1:06:01:: 1 -6 rotor%1:06:01:: 1 -6 romantic%3:01:00:: 1 -6 roll%2:35:05:: 4 -6 role%1:04:01:: 4 -6 rock%2:38:00:: 1 -6 rock%1:27:00:: 2 -6 roar%2:32:02:: 3 -6 ritual%1:04:00:: 1 -6 ripe%3:00:00:: 1 -6 ridge%1:17:00:: 1 -6 ride%1:04:00:: 1 -6 ribbon%1:17:00:: 1 -6 rhythm%1:07:01:: 2 -6 revolution%1:11:01:: 1 -6 revolution%1:04:00:: 2 -6 revise%2:32:00:: 1 -6 return%1:04:01:: 2 -6 retreating%3:00:00:: 1 -6 retrace%2:38:00:: 1 -6 rest_on%2:42:00:: 2 -6 rest%2:32:01:: 3 -6 rest%1:04:00:: 2 -6 response%1:10:01:: 3 -6 resolve%2:32:00:: 2 -6 resolve%2:31:02:: 3 -6 resistance%1:04:02:: 1 -6 resident%1:18:00:: 1 -6 reserve%2:31:00:: 2 -6 resentment%1:12:00:: 1 -6 research%1:09:00:: 2 -6 require%2:34:00:: 4 -6 republican%3:01:01:: 1 -6 replenish%2:30:00:: 1 -6 replace%2:40:00:: 4 -6 repetition%1:11:00:: 1 -6 repeated%5:00:00:continual:00 1 -6 rent%2:41:01:: 1 -6 rent%1:21:00:: 1 -6 religious_belief%1:09:00:: 1 -6 release%2:41:00:: 2 -6 release%1:06:00:: 1 -6 rehearsal%1:04:01:: 1 -6 regulate%2:30:00:: 1 -6 regularly%4:02:00:: 1 -6 register%2:32:03:: 2 -6 reflector%1:06:00:: 1 -6 reference%1:10:03:: 2 -6 refer%2:38:00:: 4 -6 reduced%3:00:04:: 1 -6 recruitment%1:04:00:: 1 -6 record%1:04:01:: 4 -6 recommend%2:32:00:: 2 -6 receptionist%1:18:00:: 1 -6 rear%1:15:00:: 2 -6 realm%1:26:01:: 1 -6 reaffirm%2:32:00:: 1 -6 rattlesnake%1:05:00:: 1 -6 rather%4:02:01:: 3 -6 rare%5:00:00:uncommon:00 1 -6 rank%1:26:00:: 2 -6 radio%1:06:00:: 3 -6 radically%4:02:00:: 1 -6 racial%3:01:00:: 1 -6 race%1:11:01:: 1 -6 race%1:11:00:: 2 -6 rabbi%1:18:00:: 1 -6 quite%4:02:03:: 3 -6 quick%5:00:00:hurried:00 2 -6 questioning%1:10:00:: 1 -6 quarters%1:06:00:: 1 -6 quarterback%1:18:00:: 1 -6 quality%1:07:01:: 4 -6 quackery%1:04:00:: 1 -6 puzzle%2:31:00:: 1 -6 put_in%2:30:00:: 1 -6 put_down%2:35:02:: 1 -6 put%2:34:00:: 4 -6 pushup%1:04:00:: 1 -6 push%2:32:00:: 3 -6 pursue%2:35:00:: 3 -6 pull_up%2:38:02:: 1 -6 pull%2:38:01:: 3 -6 publication%1:10:00:: 1 -6 psychological%5:00:00:mental:00 1 -6 pseudophloem%1:20:00:: 1 -6 prove%2:32:00:: 3 -6 protestantism%1:09:00:: 1 -6 prospective%3:00:00:: 1 -6 proposition%1:10:00:: 1 -6 propose%2:31:01:: 3 -6 proportional%5:00:00:proportionate:00 1 -6 prominently%4:02:00:: 1 -6 project%2:42:00:: 2 -6 progress%1:04:00:: 2 -6 profits%1:21:01:: 1 -6 profit%1:21:00:: 1 -6 professional%3:00:02:: 3 -6 production%1:06:00:: 3 -6 produce%2:36:05:: 5 -6 proclamation%1:10:00:: 1 -6 prime%5:00:02:first:00 1 -6 pride%1:12:00:: 1 -6 prevail%2:42:02:: 1 -6 presentation%1:04:01:: 1 -6 presence%1:15:00:: 2 -6 precede%2:42:01:: 2 -6 powdered%5:00:00:fine:00 1 -6 powder%1:27:01:: 2 -6 pour%2:38:04:: 3 -6 potential%5:00:00:prospective:00 2 -6 pot%1:06:00:: 1 -6 post%5:00:00:succeeding(a):00 1 -6 possibility%1:09:01:: 4 -6 possession%1:03:00:: 2 -6 positivist%1:18:00:: 1 -6 popularity%1:07:00:: 1 -6 pope%1:18:00:: 1 -6 polyphosphate%1:27:00:: 1 -6 political%3:01:02:: 3 -6 pole%1:06:00:: 1 -6 point_up%2:32:00:: 1 -6 point%1:09:02:: 7 -6 plunge%2:35:01:: 1 -6 plow%2:36:00:: 1 -6 plot%2:31:00:: 1 -6 plot%1:15:00:: 2 -6 plod%2:38:00:: 1 -6 pleural%3:01:00:: 1 -6 pleura%1:08:00:: 1 -6 plenty%4:02:00:: 1 -6 play%2:29:01:: 8 -6 play%1:04:04:: 4 -6 platoon%1:14:00:: 1 -6 plate%1:06:04:: 1 -6 plan%1:06:00:: 3 -6 plague%2:43:00:: 1 -6 placement%1:07:00:: 1 -6 place%1:15:06:: 7 -6 pity%1:12:00:: 1 -6 pitch%2:35:00:: 1 -6 pipe%1:06:01:: 1 -6 pilot%1:18:00:: 1 -6 pill%1:06:01:: 1 -6 pick_up%2:38:00:: 3 -6 phony%5:00:00:counterfeit:00 1 -6 petition%1:10:00:: 1 -6 perspective%1:09:00:: 1 -6 permit%1:10:02:: 1 -6 perch%2:35:00:: 1 -6 perception%1:09:01:: 1 -6 percentage%1:21:00:: 2 -6 penalty%1:04:00:: 1 -6 peculiar%5:00:00:specific:00 2 -6 peasant%1:18:00:: 1 -6 peace%1:26:01:: 2 -6 peace%1:12:00:: 3 -6 pay%2:40:02:: 5 -6 pay%2:40:01:: 4 -6 paste%1:27:01:: 1 -6 passage%1:04:04:: 1 -6 pass_by%2:38:00:: 1 -6 pass%1:04:04:: 1 -6 party%1:11:00:: 4 -6 particular%5:00:00:uncommon:00 4 -6 parking_lot%1:15:00:: 1 -6 pale%5:00:00:colorless:03 3 -6 painfully%4:02:00:: 1 -6 pace%2:38:01:: 2 -6 pace%1:23:01:: 2 -6 oxen%1:05:00:: 1 -6 overlook%2:39:01:: 1 -6 overcast%1:26:00:: 1 -6 outside%4:02:01:: 2 -6 outer%3:00:00:: 1 -6 outdoor%3:00:00:: 1 -6 ossification%1:22:00:: 1 -6 organize%2:41:00:: 2 -6 order%1:14:00:: 4 -6 oral%5:00:00:spoken:00 1 -6 optimum%5:00:00:best:00 1 -6 only%4:02:04:: 4 -6 one_by_one%4:02:02:: 1 -6 on%3:00:00:: 1 -6 office%1:04:01:: 3 -6 odd%5:00:00:unusual:00 2 -6 occupant%1:18:00:: 1 -6 occasion%1:11:01:: 2 -6 observation%1:04:00:: 2 -6 o%1:14:00:: 1 -6 number%2:42:00:: 1 -6 novelist%1:18:00:: 1 -6 novel%5:00:00:original:00 1 -6 northern%5:00:02:north:00 2 -6 nightclub%1:06:00:: 1 -6 new_york_city%1:15:00:: 1 -6 net%3:00:00:: 1 -6 nerve%1:08:00:: 1 -6 neighboring%5:00:00:near:00 1 -6 neglect%2:31:00:: 1 -6 negative%5:00:00:backward:01 2 -6 neatly%4:02:00:: 1 -6 nazi%1:18:00:: 1 -6 national%3:00:01:: 3 -6 nation%1:15:00:: 3 -6 name%2:32:02:: 2 -6 name%1:26:00:: 2 -6 naked%5:00:00:unclothed:00 1 -6 naive%3:00:00:: 1 -6 mutter%2:32:00:: 2 -6 mustache%1:08:00:: 1 -6 must_not%2:42:00:: 1 -6 muscular%3:01:00:: 1 -6 mumble%2:32:00:: 1 -6 multiplicity%1:07:02:: 1 -6 multiple%3:00:00:: 1 -6 much%4:02:06:: 5 -6 move%2:30:00:: 7 -6 mourn%2:37:00:: 1 -6 mount%2:30:01:: 3 -6 motor%1:06:00:: 1 -6 motivate%2:36:00:: 1 -6 motion%1:04:00:: 3 -6 mood%1:26:00:: 2 -6 monroe_doctrine%1:10:00:: 1 -6 molecular%3:01:00:: 1 -6 moist%5:00:00:wet:01 1 -6 modern%5:00:00:fashionable:00 2 -6 model%1:18:00:: 3 -6 mixed%5:00:00:heterogeneous:00 2 -6 mistaken%5:00:00:wrong:01 1 -6 mistake%1:09:00:: 2 -6 miss%2:31:00:: 4 -6 minor%3:00:06:: 1 -6 millidegree%1:23:00:: 1 -6 microscopically%4:02:00:: 1 -6 meter%1:23:00:: 1 -6 meteoritic%3:01:00:: 1 -6 meteor%1:17:00:: 1 -6 merit%2:42:04:: 1 -6 merger%1:04:00:: 1 -6 mercury%1:27:00:: 1 -6 mention%2:32:01:: 3 -6 mentally%4:02:00:: 1 -6 memorize%2:31:00:: 1 -6 memorable%5:00:02:unforgettable:00 1 -6 member%1:24:00:: 2 -6 meet%2:38:00:: 12 -6 meanwhile%4:02:00:: 2 -6 mean%5:00:00:nasty:00 2 -6 meadow%1:15:00:: 1 -6 may%2:42:01:: 1 -6 match%2:35:08:: 3 -6 mass%5:00:00:general:00 1 -6 mass%1:17:00:: 5 -6 margin%1:25:00:: 1 -6 mar%2:30:00:: 1 -6 many_a%5:00:00:many:00 1 -6 manometer%1:06:00:: 1 -6 manifestation%1:11:00:: 1 -6 manhattan%1:15:00:: 1 -6 mama%1:18:00:: 1 -6 male%1:05:00:: 1 -6 malaise%1:26:00:: 1 -6 maintenance%1:04:00:: 1 -6 magnetism%1:19:00:: 1 -6 madly%4:02:02:: 1 -6 lure%2:32:00:: 1 -6 lunge%2:38:00:: 1 -6 lumber%1:27:00:: 1 -6 luggage%1:06:00:: 1 -6 luck%1:19:00:: 2 -6 loyal%3:00:00:: 1 -6 lower%2:30:01:: 2 -6 low%5:00:00:unrefined:01 4 -6 losses%1:21:00:: 1 -6 loss%1:04:00:: 3 -6 lose%2:40:01:: 5 -6 loosely%4:02:00:: 1 -6 loose%5:00:02:free:00 1 -6 look_into%2:32:00:: 1 -6 look_at%2:39:01:: 2 -6 long-term%5:00:00:long:02 1 -6 long%2:37:02:: 1 -6 logical%3:00:00:: 1 -6 lock%1:06:00:: 1 -6 locality%1:15:00:: 1 -6 lobe%1:08:00:: 1 -6 lobby%1:06:00:: 1 -6 loaded%5:00:00:full:00 1 -6 live%3:00:02:: 1 -6 literature%1:09:00:: 2 -6 liquid%1:27:04:: 1 -6 line%1:15:00:: 11 -6 limit%2:30:00:: 3 -6 limb%1:08:00:: 1 -6 lighted%5:00:00:light:06 2 -6 lighted%3:00:00:: 1 -6 liberalism%1:09:00:: 1 -6 liberal%5:00:00:broad-minded:00 1 -6 let_go%2:35:00:: 1 -6 lesson%1:04:01:: 1 -6 lesser%3:00:00:: 1 -6 lengthy%5:00:00:long:02 1 -6 length%1:07:01:: 2 -6 left_hand%1:08:00:: 1 -6 learn%2:31:03:: 3 -6 lean_on%2:35:00:: 1 -6 lean%2:35:00:: 2 -6 leadership%1:14:00:: 2 -6 lead%2:42:08:: 11 -6 lead%1:27:00:: 2 -6 law_of_nations%1:14:00:: 1 -6 launch%2:35:00:: 2 -6 latest%5:00:00:modern:00 1 -6 latent%5:00:00:potential:00 1 -6 larva%1:05:00:: 1 -6 landing%1:06:01:: 1 -6 knock%2:35:01:: 2 -6 knife%1:06:00:: 1 -6 ketosis%1:26:00:: 1 -6 keep_up%2:33:00:: 1 -6 justice%1:04:00:: 2 -6 jump%2:38:04:: 2 -6 judge%2:31:01:: 3 -6 judge%1:18:00:: 1 -6 jesus_christ%1:18:00:: 1 -6 ivory%1:27:00:: 1 -6 italy%1:15:00:: 1 -6 issue%2:30:00:: 4 -6 irritation%1:26:00:: 1 -6 irrelevant%3:00:00:: 1 -6 involve%2:42:02:: 5 -6 invoke%2:36:00:: 1 -6 invite%2:41:00:: 2 -6 invite%2:37:00:: 3 -6 invite%2:32:00:: 4 -6 invention%1:09:00:: 1 -6 invention%1:06:00:: 2 -6 intend%2:31:01:: 2 -6 integrate%2:30:00:: 1 -6 instantly%4:02:02:: 2 -6 instal%2:35:00:: 1 -6 inorganic%3:00:01:: 1 -6 inhibit%2:30:00:: 1 -6 inference%1:09:00:: 1 -6 inevitably%4:02:00:: 1 -6 induce%2:32:00:: 2 -6 independently%4:02:00:: 1 -6 independent%5:00:00:absolute:00 2 -6 incorporate%2:30:00:: 1 -6 incline%2:42:01:: 1 -6 inch%1:23:02:: 2 -6 in_the_first_place%4:02:01:: 1 -6 in_reply%4:02:00:: 1 -6 in_place%4:02:00:: 1 -6 in_for%5:00:00:certain:03 1 -6 in_effect%4:02:00:: 1 -6 in_any_event%4:02:00:: 1 -6 in_a_sense%4:02:00:: 1 -6 impression%1:07:00:: 2 -6 implication%1:09:00:: 2 -6 impersonal%3:00:00:: 1 -6 impatiently%4:02:00:: 1 -6 impact%1:19:00:: 2 -6 immediate%5:00:00:close:01 1 -6 immediacy%1:07:02:: 1 -6 illusion%1:09:00:: 2 -6 illumine%2:30:00:: 1 -6 illness%1:26:00:: 1 -6 identity%1:09:00:: 2 -6 identify%2:31:04:: 3 -6 hydrogen%1:27:00:: 1 -6 hurt%1:26:00:: 1 -6 hurry%1:26:00:: 1 -6 hunch%1:09:00:: 1 -6 human_race%1:14:00:: 1 -6 hug%2:35:01:: 1 -6 hue%1:07:00:: 1 -6 huddle%2:38:01:: 1 -6 host%1:14:00:: 2 -6 horseman%1:18:00:: 1 -6 horror%1:06:00:: 2 -6 hormone%1:08:00:: 1 -6 honeybee%1:05:00:: 1 -6 honestly%4:02:00:: 1 -6 hollywood%1:14:00:: 1 -6 hold%2:40:03:: 12 -6 hither%4:02:00:: 1 -6 historically%4:02:01:: 1 -6 highroad%1:06:00:: 1 -6 hide%2:39:01:: 2 -6 heritage%1:09:00:: 1 -6 hell%1:15:01:: 2 -6 heel%1:06:00:: 1 -6 heat%1:07:01:: 2 -6 heap%1:14:00:: 1 -6 head%1:18:00:: 4 -6 head%1:14:00:: 5 -6 have_a_look%2:39:00:: 1 -6 hasten%2:38:00:: 2 -6 harmony%1:07:01:: 1 -6 hang%2:38:03:: 4 -6 handkerchief%1:06:00:: 1 -6 hall%1:06:02:: 3 -6 half-hour%1:28:00:: 1 -6 had_better%2:42:00:: 1 -6 habit%1:04:02:: 2 -6 guess%2:31:02:: 4 -6 guess%2:31:01:: 3 -6 guard%2:41:00:: 1 -6 guard%2:33:00:: 2 -6 grove%1:14:00:: 1 -6 grounds%1:09:00:: 1 -6 grope%2:35:01:: 1 -6 grin%1:10:00:: 1 -6 green%1:07:00:: 1 -6 greek%1:10:00:: 1 -6 gray%5:00:00:old:02 2 -6 gray%1:07:00:: 1 -6 grand%5:00:00:impressive:00 1 -6 graduation%1:04:01:: 1 -6 graduate%1:18:00:: 1 -6 good%1:07:02:: 3 -6 golden%5:00:00:chromatic:00 1 -6 goat%1:05:00:: 1 -6 go_forward%2:38:00:: 1 -6 go_by%2:38:01:: 2 -6 go_by%2:38:00:: 1 -6 go_ahead%2:32:00:: 1 -6 glove%1:06:01:: 1 -6 glory%1:07:00:: 2 -6 glittering%5:00:00:bright:00 1 -6 glimpse%1:04:00:: 1 -6 glaze%2:35:00:: 1 -6 gland%1:08:00:: 1 -6 give_vent%2:32:00:: 1 -6 girl%1:18:01:: 4 -6 giant%1:05:00:: 1 -6 get_up%2:29:00:: 2 -6 german%1:10:00:: 2 -6 genuine%3:00:00:: 1 -6 gentle%5:00:00:mild:00 1 -6 generation%1:28:00:: 3 -6 generalize%2:32:01:: 1 -6 gather%2:38:00:: 3 -6 garden%1:14:00:: 2 -6 garden%1:06:01:: 3 -6 gain%1:23:00:: 1 -6 gag%1:10:00:: 1 -6 fun%5:00:00:entertaining:00 1 -6 frightening%5:00:00:alarming:00 1 -6 frenzy%1:26:00:: 1 -6 french%1:10:00:: 1 -6 free%2:41:00:: 1 -6 foundation%1:24:00:: 1 -6 formula%1:10:02:: 2 -6 for_the_moment%4:02:00:: 1 -6 for_one_thing%4:02:00:: 1 -6 foolish%3:00:00:: 1 -6 fool%2:41:00:: 1 -6 foliage%1:20:00:: 1 -6 focus_on%2:42:00:: 1 -6 focus%2:31:00:: 1 -6 focus%1:09:00:: 1 -6 fly%1:05:00:: 1 -6 flow_rate%1:28:00:: 1 -6 flood%2:35:00:: 1 -6 flight%1:14:01:: 1 -6 flight%1:04:00:: 2 -6 flatten%2:30:01:: 1 -6 flash%2:30:03:: 2 -6 flash%1:07:00:: 2 -6 fixed%5:00:00:nonmoving:00 2 -6 fix%2:32:03:: 3 -6 fisherman%1:18:00:: 1 -6 firm%5:00:00:hard:01 2 -6 firm%5:00:00:forceful:00 3 -6 firing%1:04:02:: 2 -6 firearm%1:06:00:: 1 -6 fille_de_chambre%1:18:00:: 1 -6 figure_out%2:31:00:: 1 -6 fighter%1:18:00:: 1 -6 fifteenth%5:00:00:ordinal:00 1 -6 fibrosis%1:26:00:: 1 -6 feelings%1:12:00:: 1 -6 feeding%1:04:01:: 2 -6 feather%1:05:00:: 1 -6 feat%1:04:00:: 1 -6 fatal%3:00:00:: 1 -6 fashion%1:04:00:: 2 -6 family_planning%1:04:00:: 1 -6 familiar_with%5:00:00:familiar:00 1 -6 fall_down%2:38:00:: 1 -6 fall%2:42:03:: 4 -6 faith%1:14:00:: 3 -6 fair%3:00:04:: 2 -6 fade%2:30:02:: 1 -6 eye%1:09:01:: 3 -6 extremely%4:02:00:: 2 -6 extreme%1:07:00:: 1 -6 extend%2:40:05:: 4 -6 exposure%1:07:00:: 1 -6 explosion%1:11:00:: 1 -6 expected%3:00:00:: 1 -6 expand%2:30:07:: 2 -6 exhausted%5:00:00:tired:00 1 -6 exertion%1:04:00:: 1 -6 exclusive%5:00:00:unshared:00 1 -6 exasperation%1:12:00:: 1 -6 evil%1:04:00:: 1 -6 eventually%4:02:03:: 2 -6 event%1:26:00:: 2 -6 even%4:02:01:: 3 -6 etc.%4:02:00:: 1 -6 et_al.%4:02:00:: 1 -6 establish%2:36:01:: 5 -6 escape_from%2:38:00:: 1 -6 escape%1:04:00:: 1 -6 escalation%1:04:00:: 1 -6 erupt%2:30:01:: 1 -6 error%1:07:00:: 2 -6 entrepreneur%1:18:00:: 1 -6 entitle%2:32:00:: 2 -6 entertainment%1:04:00:: 1 -6 ensure%2:32:00:: 1 -6 enroll%2:41:00:: 1 -6 enlist%2:40:00:: 2 -6 enjoyment%1:12:00:: 1 -6 enjoy%2:34:00:: 5 -6 engineering%1:04:01:: 1 -6 engender%2:36:00:: 1 -6 engagement%1:04:01:: 1 -6 energy%1:07:02:: 3 -6 enduring%5:00:00:permanent:00 1 -6 endure%2:31:00:: 1 -6 endless%5:00:00:long:02 1 -6 end%1:26:00:: 6 -6 empty%5:00:00:meaningless:00 2 -6 employment%1:04:02:: 3 -6 emission%1:04:00:: 1 -6 elite%1:14:00:: 1 -6 elicit%2:37:00:: 1 -6 elderly%5:00:00:old:02 1 -6 eighty%5:00:00:cardinal:00 1 -6 ego%1:12:01:: 1 -6 eggs%1:13:00:: 1 -6 efficacy%1:07:00:: 1 -6 educational%3:01:00:: 1 -6 education%1:09:01:: 3 -6 economical%5:00:00:efficient:00 1 -6 east%1:24:00:: 1 -6 early%5:00:00:young:00 4 -6 early%4:02:00:: 2 -6 ear%1:08:01:: 3 -6 eagerly%4:02:00:: 1 -6 due%3:00:00:: 1 -6 drugstore%1:06:00:: 1 -6 drop%2:41:01:: 5 -6 drop%2:32:00:: 6 -6 drive%2:41:02:: 5 -6 drive%1:04:04:: 1 -6 drinking%1:04:01:: 2 -6 drift%2:38:02:: 1 -6 dreadful%5:00:00:alarming:00 1 -6 draw%2:38:00:: 8 -6 draw%2:32:00:: 9 -6 draw%2:31:13:: 10 -6 dragon%1:18:02:: 1 -6 downstairs%4:02:00:: 1 -6 dosage%1:23:00:: 1 -6 domination%1:04:00:: 1 -6 dominate%2:42:01:: 2 -6 dominate%2:41:00:: 3 -6 dodge%2:38:00:: 1 -6 do_well%2:42:00:: 1 -6 division%1:09:00:: 2 -6 distributor%1:18:00:: 1 -6 distinguish%2:39:00:: 2 -6 disseminate%2:32:00:: 1 -6 dismount%2:38:00:: 1 -6 discrimination%1:04:00:: 1 -6 discover%2:40:00:: 5 -6 disclose%2:39:00:: 2 -6 disastrous%5:00:00:unfortunate:00 1 -6 disapproval%1:12:00:: 1 -6 disabled%5:00:00:unfit:01 1 -6 director%1:18:03:: 3 -6 director%1:18:02:: 2 -6 dipole%1:17:00:: 1 -6 dining_room%1:06:00:: 1 -6 dine%2:34:01:: 1 -6 dilate%2:30:01:: 1 -6 diffusion%1:22:00:: 1 -6 difficulty%1:07:00:: 4 -6 die%1:06:00:: 1 -6 dialect%1:10:00:: 1 -6 diagram%1:06:00:: 1 -6 devoted%5:00:02:dedicated:00 1 -6 development%1:15:00:: 6 -6 develop%2:32:00:: 7 -6 destructive%3:00:00:: 1 -6 destruction%1:11:00:: 2 -6 destiny%1:11:00:: 1 -6 depict%2:36:00:: 1 -6 depict%2:32:01:: 2 -6 dependence%1:26:00:: 1 -6 department_of_defense%1:14:00:: 1 -6 demythologization%1:10:00:: 1 -6 demand%1:09:00:: 3 -6 deliver%2:40:01:: 3 -6 delicate%3:00:00:: 1 -6 delay%2:42:00:: 2 -6 degree%1:09:00:: 5 -6 deficiency%1:26:00:: 1 -6 deep%5:00:00:intense:00 5 -6 decorate%2:36:00:: 1 -6 declare%2:32:02:: 5 -6 deck%1:06:00:: 1 -6 decide%2:31:01:: 2 -6 deadly%5:00:01:fatal:00 1 -6 darned%5:00:02:cursed:00 1 -6 darkness%1:15:00:: 2 -6 danger%1:26:01:: 3 -6 dancing%1:04:00:: 1 -6 damp%5:00:00:wet:01 1 -6 damned%5:00:00:lost:02 2 -6 cut_off%2:30:00:: 2 -6 curtain%1:06:00:: 1 -6 current%1:11:00:: 2 -6 culture%1:09:01:: 3 -6 crude%5:00:01:unskilled:00 1 -6 crucial%3:00:00:: 1 -6 crowd%2:38:01:: 1 -6 criticism%1:10:00:: 1 -6 critic%1:18:00:: 1 -6 credo%1:09:00:: 1 -6 create%2:36:01:: 3 -6 crack%2:30:01:: 1 -6 couple%1:23:01:: 3 -6 countenance%1:07:00:: 1 -6 cough%2:29:00:: 1 -6 cotton%1:27:01:: 1 -6 cortical%3:01:00:: 1 -6 correspond%2:42:04:: 2 -6 correctly%4:02:01:: 1 -6 copy%1:06:00:: 2 -6 cooling%1:22:00:: 1 -6 cook%2:30:00:: 3 -6 controlled%3:00:00:: 1 -6 contour%1:10:00:: 1 -6 continuously%4:02:00:: 1 -6 conservatism%1:09:00:: 1 -6 consent%2:32:00:: 1 -6 conscious%5:00:00:aware(p):00 3 -6 conscious%3:00:00:: 2 -6 conscience%1:07:00:: 2 -6 conform_to%2:42:01:: 1 -6 conflict%1:04:00:: 1 -6 confidence%1:12:00:: 2 -6 confide%2:32:00:: 1 -6 conductor%1:18:00:: 1 -6 conceive_of%2:36:01:: 1 -6 concede%2:32:01:: 2 -6 computer%1:06:00:: 1 -6 comprise%2:42:00:: 2 -6 compress%2:35:01:: 1 -6 compound%2:30:01:: 1 -6 complex%1:09:00:: 1 -6 compensation%1:21:00:: 1 -6 compatible%3:00:01:: 1 -6 company%1:26:00:: 3 -6 commuter%1:06:00:: 1 -6 commotion%1:26:00:: 1 -6 commercially%4:02:00:: 1 -6 comment%1:10:01:: 2 -6 commence%2:30:01:: 2 -6 command%2:32:02:: 3 -6 come_with%2:42:00:: 1 -6 come_through%2:30:00:: 1 -6 come_out%2:30:01:: 2 -6 come%2:42:03:: 10 -6 come%2:30:04:: 11 -6 colorful%3:00:00:: 1 -6 collision%1:11:01:: 1 -6 collapse%2:29:00:: 2 -6 coincidence%1:11:00:: 1 -6 closed%3:00:04:: 3 -6 closed%3:00:02:: 2 -6 close%3:00:05:: 3 -6 clearly%4:02:02:: 3 -6 clear%5:00:00:unobstructed:00 3 -6 clatter%2:39:00:: 1 -6 classic%5:00:00:standard:01 1 -6 class%1:14:01:: 3 -6 claim%1:04:00:: 3 -6 circular%3:00:00:: 1 -6 circle%2:38:01:: 1 -6 chemical%1:27:00:: 1 -6 check_out%2:31:00:: 1 -6 check%2:31:02:: 3 -6 charm%1:07:00:: 1 -6 charge%2:38:00:: 4 -6 characteristic%1:07:00:: 2 -6 chant%2:32:00:: 1 -6 change%2:30:03:: 5 -6 champagne%1:13:00:: 1 -6 chamber%1:06:00:: 1 -6 center%1:06:00:: 3 -6 celebrate%2:41:00:: 2 -6 cease%2:42:13:: 2 -6 caution%2:32:00:: 1 -6 catch%2:35:07:: 7 -6 carry_out%2:41:15:: 3 -6 carry_away%2:35:00:: 1 -6 carry%2:35:09:: 5 -6 carefully%4:02:02:: 2 -6 carbon%1:27:00:: 1 -6 captain%1:18:03:: 4 -6 capacity%1:23:00:: 3 -6 camp%1:06:01:: 3 -6 call_out%2:32:00:: 2 -6 calf%1:05:00:: 1 -6 button%1:06:01:: 2 -6 bury%2:41:00:: 2 -6 bureaucracy%1:14:00:: 1 -6 bunch%1:14:00:: 1 -6 build_up%2:30:01:: 3 -6 build_up%2:30:00:: 2 -6 bubble%1:17:00:: 1 -6 brother%1:18:02:: 2 -6 brooklyn%1:15:00:: 1 -6 bring_together%2:35:01:: 1 -6 bring_on%2:36:00:: 1 -6 bring_back%2:38:00:: 1 -6 bright%5:00:00:colorful:00 2 -6 brief%5:00:00:concise:00 2 -6 breeze%1:19:00:: 1 -6 breast%1:08:01:: 1 -6 boyhood%1:28:00:: 1 -6 bough%1:20:00:: 1 -6 boss%1:18:01:: 1 -6 booking%1:04:01:: 1 -6 bond%1:24:00:: 3 -6 bob%2:38:00:: 1 -6 boast%2:42:00:: 2 -6 boa_constrictor%1:05:00:: 1 -6 blow%2:29:00:: 1 -6 blot_out%2:30:00:: 1 -6 blossom%1:20:00:: 1 -6 blood%1:04:00:: 2 -6 block%1:15:00:: 2 -6 bitter%5:00:00:unpleasant:00 3 -6 bishop%1:18:00:: 1 -6 birth%1:28:00:: 1 -6 bill%1:10:01:: 2 -6 bid%2:40:00:: 1 -6 bewildered%5:00:00:perplexed:00 1 -6 best%4:02:00:: 2 -6 best%1:04:00:: 1 -6 berlin%1:15:00:: 1 -6 beneficial%5:00:00:advantageous:00 1 -6 bench%1:06:02:: 2 -6 belief%1:09:01:: 3 -6 being%1:03:00:: 2 -6 beginning%1:09:00:: 3 -6 beef%1:05:00:: 1 -6 beautifully%4:02:00:: 1 -6 bear%2:36:00:: 5 -6 battle%2:33:00:: 1 -6 bathroom%1:06:00:: 1 -6 basket%1:06:00:: 1 -6 base%5:00:00:basic:00 1 -6 bandage%1:06:00:: 1 -6 balance%2:42:00:: 1 -6 bake%2:30:00:: 1 -6 back_off%2:38:00:: 1 -6 back%2:38:00:: 2 -6 babe%1:18:00:: 1 -6 axis%1:09:00:: 1 -6 awkward%5:00:00:inconvenient:00 1 -6 award%2:40:00:: 1 -6 award%1:10:00:: 2 -6 average%5:00:00:common:01 2 -6 author%1:18:01:: 2 -6 authentic%5:00:00:trustworthy:00 1 -6 authentic%5:00:00:genuine:00 2 -6 attain%2:38:00:: 2 -6 assure%2:31:00:: 4 -6 assume%2:40:01:: 4 -6 association%1:04:00:: 2 -6 assert%2:32:00:: 2 -6 assault%1:04:00:: 1 -6 assassin%1:18:00:: 1 -6 assail%2:33:00:: 1 -6 article%1:03:00:: 2 -6 arterial%3:01:00:: 1 -6 art_school%1:06:00:: 1 -6 around%4:02:06:: 4 -6 armed_forces%1:14:00:: 1 -6 arc%1:25:00:: 2 -6 apt%5:00:00:inclined(p):02 3 -6 approach%2:41:00:: 3 -6 approach%2:38:01:: 4 -6 approach%2:32:00:: 5 -6 appreciably%4:02:01:: 1 -6 appointment%1:04:00:: 1 -6 applicable%5:00:00:relevant:00 1 -6 appendix%1:10:00:: 1 -6 any%5:00:00:immoderate:00 1 -6 antithyroid%3:01:00:: 1 -6 antiserum%1:08:00:: 1 -6 antelope%1:05:00:: 1 -6 antagonism%1:07:00:: 1 -6 ant%1:05:00:: 1 -6 angrily%4:02:00:: 1 -6 analogous%5:00:00:similar:00 1 -6 amuse%2:41:00:: 1 -6 amplitude%1:11:00:: 1 -6 amount%1:09:00:: 4 -6 amendment%1:04:00:: 1 -6 ambiguity%1:10:00:: 1 -6 amazed%5:00:00:surprised:00 1 -6 allot%2:40:01:: 1 -6 allocate%2:40:00:: 1 -6 all_right%5:00:00:well:01 2 -6 all_over%4:02:00:: 2 -6 algae%1:05:00:: 1 -6 aid%1:21:00:: 3 -6 agricultural%3:01:00:: 1 -6 agreement%1:26:01:: 3 -6 aggressive%3:00:00:: 1 -6 agent%1:18:02:: 2 -6 agency%1:14:01:: 2 -6 age%1:28:00:: 3 -6 again_and_again%4:02:00:: 1 -6 afterwards%4:02:00:: 1 -6 affixed%3:00:00:: 1 -6 advertising%1:04:00:: 2 -6 advance%2:32:00:: 2 -6 advance%1:11:01:: 2 -6 adopt%2:40:00:: 2 -6 administer%2:40:01:: 2 -6 adjust%2:30:05:: 2 -6 adjust%2:30:02:: 3 -6 adjust%2:30:01:: 4 -6 ad%1:10:00:: 1 -6 activation_energy%1:19:00:: 1 -6 account_for%2:32:00:: 2 -6 absurdity%1:10:00:: 1 -6 absently%4:02:00:: 1 -6 abroad%5:00:00:foreign:02 1 -6 abandon%2:40:01:: 2 -6 abandon%2:38:00:: 3 -6 a%1:23:01:: 2 -6 90%5:00:00:cardinal:00 1 -6 9%1:23:00:: 1 -6 29%5:00:00:cardinal:00 1 -6 20th%5:00:00:ordinal:00 1 -6 12%1:23:00:: 1 -6 11%1:23:00:: 1 -5 zero%5:00:00:cardinal:00 1 -5 youth%1:28:00:: 3 -5 yield%2:30:00:: 2 -5 yearning%1:12:00:: 1 -5 year%1:28:00:: 3 -5 yankee%1:18:02:: 1 -5 yank%2:35:00:: 1 -5 wrong%5:00:00:malfunctioning:00 4 -5 writer%1:18:01:: 2 -5 wrench%2:35:00:: 1 -5 wrap%2:35:00:: 1 -5 wound%2:29:00:: 1 -5 worth%1:23:00:: 1 -5 worship%2:37:00:: 1 -5 world_series%1:11:00:: 1 -5 world%1:09:01:: 8 -5 works%1:06:02:: 1 -5 work_out%2:29:00:: 4 -5 work_on%2:36:00:: 2 -5 work%2:38:00:: 8 -5 work%1:19:00:: 5 -5 word%1:10:02:: 3 -5 wonder%1:12:00:: 1 -5 wobble%2:38:00:: 1 -5 witty%5:00:00:humorous:00 1 -5 wish%2:37:01:: 5 -5 wisdom%1:09:02:: 1 -5 wire%1:06:01:: 2 -5 wing%2:38:00:: 1 -5 wing%1:06:03:: 3 -5 wild%5:00:00:passionate:00 3 -5 wild%3:00:01:: 2 -5 wiggle%2:38:00:: 1 -5 wheel%1:06:05:: 2 -5 weight%1:06:01:: 2 -5 wealth%1:07:00:: 2 -5 wave%2:35:00:: 2 -5 watch_out%2:39:00:: 1 -5 waste%1:27:00:: 1 -5 warn%2:32:01:: 2 -5 warehouse%1:06:00:: 1 -5 wakeful%5:00:00:alert:00 1 -5 voice%1:11:00:: 3 -5 voice%1:10:01:: 4 -5 vitally%4:02:00:: 1 -5 virgin%1:18:00:: 1 -5 violently%4:02:00:: 1 -5 violate%2:41:00:: 2 -5 vigorously%4:02:00:: 1 -5 veteran%1:18:01:: 2 -5 veteran%1:18:00:: 3 -5 verbal%5:00:00:communicative:00 1 -5 verb%1:10:00:: 2 -5 venus%1:17:00:: 1 -5 venture%2:41:01:: 1 -5 vein%1:10:00:: 2 -5 veil%2:35:00:: 1 -5 vegetable%1:13:00:: 1 -5 vary%2:30:04:: 4 -5 variety%1:09:00:: 3 -5 vapor%1:27:01:: 1 -5 valuable%5:00:00:worthy:00 2 -5 valid%3:00:00:: 1 -5 usefulness%1:07:00:: 1 -5 useful%5:00:00:important:00 2 -5 urban%3:01:00:: 1 -5 uptake%1:04:00:: 1 -5 upstairs%3:00:00:: 1 -5 upright%5:00:00:vertical:00 1 -5 uphold%2:32:00:: 2 -5 up%5:00:00:awake(p):00 8 -5 unstable%3:00:00:: 1 -5 unreconstructed%3:00:00:: 1 -5 unprecedented%3:00:00:: 1 -5 unpaid%3:00:00:: 1 -5 unnecessary%3:00:00:: 1 -5 unlikely%3:00:04:: 1 -5 unlikely%3:00:00:: 2 -5 unknown%1:15:00:: 1 -5 universally%4:02:00:: 1 -5 unit%1:06:00:: 5 -5 unify%2:30:00:: 1 -5 unified%5:00:00:united:00 1 -5 unfold%2:30:00:: 1 -5 unexpectedly%4:02:01:: 1 -5 unconsciously%4:02:00:: 1 -5 unconscious%3:00:00:: 1 -5 unavoidable%5:00:00:inevitable:00 1 -5 unanimously%4:02:00:: 1 -5 unable%5:00:00:incapable:00 2 -5 ultimately%4:02:01:: 1 -5 ultimate%5:00:00:last:00 2 -5 twist%2:35:02:: 2 -5 twine%2:35:00:: 1 -5 turned%3:00:00:: 1 -5 turn_over%2:40:00:: 1 -5 turn_down%2:40:00:: 1 -5 turn%2:38:03:: 6 -5 turn%2:30:03:: 7 -5 turmoil%1:26:00:: 1 -5 try%1:04:00:: 1 -5 trust%2:41:00:: 2 -5 troop%1:14:03:: 2 -5 triumph%1:12:00:: 2 -5 trigger%1:06:00:: 1 -5 tribute%1:10:01:: 1 -5 tremendously%4:02:00:: 1 -5 treetop%1:20:00:: 1 -5 transportation%1:04:00:: 2 -5 transparent%5:00:00:clear:02 1 -5 transfer%2:38:00:: 4 -5 trample%2:38:00:: 1 -5 train%2:41:02:: 3 -5 train%2:41:00:: 4 -5 trail%1:17:01:: 1 -5 traditionalist%1:18:00:: 1 -5 trader%1:18:00:: 1 -5 trace%2:35:00:: 2 -5 trace%1:23:00:: 1 -5 tough%5:00:01:difficult:00 2 -5 touch%2:39:00:: 2 -5 toss%2:35:05:: 3 -5 torn%5:00:00:injured:00 1 -5 topic%1:10:00:: 1 -5 tool%1:04:00:: 2 -5 too_bad%5:00:00:unfortunate:00 1 -5 tone%1:26:01:: 4 -5 toast%2:30:00:: 1 -5 toast%1:13:00:: 1 -5 tip%2:38:02:: 1 -5 tin%1:27:00:: 1 -5 time%1:28:04:: 8 -5 tie%2:33:00:: 2 -5 tie%1:06:01:: 1 -5 tide%1:11:00:: 1 -5 thwart%2:41:00:: 1 -5 thunder%1:11:01:: 2 -5 thumb%1:08:00:: 1 -5 throw_away%2:40:00:: 1 -5 throw%2:35:01:: 6 -5 through%4:02:03:: 2 -5 thrill%1:12:00:: 1 -5 three-dimensional%5:00:00:multidimensional:00 1 -5 thirteen%5:00:00:cardinal:00 1 -5 third_base%1:06:00:: 1 -5 therapeutic%5:00:00:healthful:00 1 -5 theory%1:09:02:: 3 -5 theme%1:09:01:: 2 -5 thaw%2:30:00:: 1 -5 testing%1:04:00:: 1 -5 testimony%1:10:00:: 1 -5 tendency%1:07:00:: 3 -5 temporarily%4:02:00:: 1 -5 telegrapher%1:18:00:: 1 -5 technical%3:01:03:: 4 -5 tear_down%2:36:00:: 1 -5 teamster%1:18:02:: 1 -5 tea%1:13:00:: 1 -5 taxi%1:06:00:: 1 -5 taunt%2:32:00:: 1 -5 tangled%3:00:00:: 1 -5 take_up%2:31:00:: 2 -5 take_shape%2:42:00:: 1 -5 take_over%2:41:00:: 3 -5 take_over%2:40:06:: 4 -5 take_form%2:42:00:: 1 -5 take_back%2:38:03:: 1 -5 take_away%2:35:00:: 1 -5 take_away%2:30:01:: 2 -5 take%2:32:00:: 26 -5 tailor%2:30:00:: 1 -5 table%1:06:02:: 3 -5 symphonic%3:01:00:: 1 -5 symmetry%1:07:00:: 1 -5 switch_on%2:35:00:: 1 -5 switch%2:30:03:: 1 -5 swiss%1:18:00:: 1 -5 swell%2:30:02:: 1 -5 sweep%2:35:00:: 3 -5 sweat%2:29:00:: 1 -5 sway%2:38:00:: 1 -5 survive%2:42:00:: 3 -5 survey%2:39:00:: 2 -5 survey%1:04:02:: 1 -5 surroundings%1:26:00:: 1 -5 surrender%2:33:00:: 1 -5 surprisingly%4:02:00:: 1 -5 surprise%1:11:00:: 2 -5 supposed%5:00:00:expected:00 1 -5 supportive%3:00:00:: 1 -5 sundown%1:28:00:: 1 -5 summary%1:10:00:: 1 -5 sum_up%2:32:00:: 1 -5 suited%5:00:00:fit:02 1 -5 sugar%1:13:00:: 1 -5 successive%5:00:00:ordered:00 1 -5 substitute%2:40:01:: 2 -5 subsequent%3:00:00:: 1 -5 stupidity%1:09:00:: 1 -5 stump%1:20:00:: 1 -5 stuff%2:35:00:: 1 -5 stuff%1:27:00:: 1 -5 stuff%1:06:00:: 2 -5 study%2:31:01:: 5 -5 stubborn%3:00:00:: 1 -5 string%1:06:00:: 1 -5 strike%2:32:00:: 5 -5 stress%1:26:01:: 2 -5 strain%1:19:00:: 1 -5 straight%3:00:03:: 3 -5 stove%1:06:01:: 1 -5 store%1:21:00:: 2 -5 stomach%1:08:01:: 2 -5 stock_market%1:06:00:: 1 -5 stir%2:38:00:: 2 -5 stimulation%1:04:00:: 1 -5 stimulate%2:32:01:: 2 -5 stiffly%4:02:00:: 1 -5 stick_to%2:42:00:: 1 -5 stick%2:35:02:: 1 -5 stick%1:06:03:: 3 -5 stern%5:00:00:nonindulgent:00 1 -5 stereotyped%5:00:00:conventional:01 1 -5 stereo%1:06:00:: 1 -5 steep%3:00:00:: 1 -5 stay_on%2:42:00:: 1 -5 statute%1:10:00:: 1 -5 statue%1:06:00:: 1 -5 statistical%3:01:00:: 1 -5 static%5:00:00:undynamic:00 1 -5 state_government%1:14:00:: 1 -5 start%2:38:00:: 9 -5 start%1:28:00:: 2 -5 standard%5:00:00:common:01 2 -5 stand_up%2:33:00:: 2 -5 stand_for%2:32:01:: 1 -5 stand%2:42:06:: 7 -5 stain%1:07:00:: 1 -5 stage%2:36:01:: 2 -5 square_mile%1:23:00:: 1 -5 sprinkle%2:35:01:: 1 -5 spring%2:42:00:: 2 -5 spread%2:42:00:: 3 -5 spread%2:35:03:: 4 -5 spread%2:32:00:: 5 -5 sporting%5:00:00:fair:03 1 -5 split%1:04:02:: 1 -5 spin%2:38:00:: 2 -5 spherical%3:01:00:: 1 -5 sphere%1:26:00:: 1 -5 sphere%1:06:00:: 2 -5 speed%2:30:00:: 2 -5 speculate%2:31:01:: 1 -5 specter%1:09:00:: 1 -5 specimen%1:09:00:: 1 -5 specific%5:00:00:specified:00 2 -5 species%1:09:00:: 2 -5 spark%2:36:00:: 1 -5 spare%2:41:01:: 2 -5 spare%2:40:00:: 3 -5 sow%2:35:00:: 1 -5 soviet_union%1:15:00:: 1 -5 sovereign%1:18:00:: 1 -5 southpaw%1:18:01:: 1 -5 south%1:15:00:: 2 -5 somewhat%4:02:00:: 2 -5 solve%2:31:01:: 2 -5 soloist%1:18:00:: 1 -5 solidarity%1:07:00:: 1 -5 solid%3:00:02:: 3 -5 sofa%1:06:00:: 1 -5 social_class%1:14:00:: 1 -5 sober%5:00:00:serious:00 2 -5 sober%3:00:01:: 1 -5 sob%1:10:00:: 1 -5 sniff%2:39:00:: 1 -5 smell%1:07:00:: 2 -5 smash%2:30:00:: 2 -5 smallest%5:00:00:small:00 1 -5 slow_down%2:30:00:: 1 -5 slit%1:06:00:: 1 -5 slipper%1:06:00:: 1 -5 slightest%5:00:00:least(a):00 1 -5 sleeve%1:06:00:: 1 -5 slack%5:00:00:lax:01 1 -5 skull%1:08:00:: 1 -5 skilled_worker%1:18:00:: 1 -5 sixteen%5:00:00:cardinal:00 1 -5 sink%2:38:02:: 2 -5 sincerely%4:02:00:: 1 -5 simulated%5:00:00:artificial:00 1 -5 simulate%2:36:04:: 1 -5 simplify%2:30:01:: 1 -5 simmer%2:30:00:: 1 -5 silhouette%1:15:00:: 1 -5 sign%1:10:00:: 2 -5 side%1:09:00:: 6 -5 shutter%1:06:01:: 1 -5 shutter%1:06:00:: 2 -5 shutdown%1:04:00:: 1 -5 shunt%1:08:00:: 1 -5 shudder%2:29:00:: 1 -5 shower%1:06:00:: 1 -5 shove%2:35:00:: 2 -5 short_bone%1:08:00:: 1 -5 short-term%5:00:00:short:02 1 -5 shooting_preserve%1:15:00:: 1 -5 shiver%2:38:00:: 1 -5 shine%2:39:01:: 3 -5 shift%2:38:02:: 3 -5 shift%1:11:01:: 2 -5 shift%1:11:00:: 1 -5 shield%2:33:00:: 1 -5 shed%2:35:01:: 1 -5 shame%1:26:00:: 2 -5 shade%1:07:00:: 2 -5 sewage_system%1:06:00:: 1 -5 sew%2:35:00:: 1 -5 sever%2:35:01:: 1 -5 settle%2:32:02:: 5 -5 set_out%2:35:00:: 2 -5 set%2:30:09:: 7 -5 set%2:30:02:: 8 -5 service%1:04:01:: 3 -5 serpent%1:05:00:: 1 -5 serene%5:00:00:peaceful:00 1 -5 separated%5:00:00:separate:00 1 -5 sentence%1:04:00:: 2 -5 send%2:33:00:: 5 -5 send%2:32:02:: 6 -5 sell%2:32:00:: 3 -5 seize%2:35:01:: 2 -5 segregate%2:41:00:: 1 -5 seed%1:20:02:: 2 -5 security%1:21:01:: 2 -5 sector%1:25:00:: 1 -5 search%1:04:02:: 2 -5 scripture%1:10:00:: 1 -5 screech%2:39:00:: 1 -5 scours%1:26:00:: 1 -5 scot%1:18:00:: 1 -5 science%1:09:00:: 2 -5 scenic%5:00:00:beautiful:00 1 -5 scatter%2:38:01:: 1 -5 scamper%2:38:00:: 1 -5 salt%1:13:00:: 2 -5 saloon%1:06:00:: 1 -5 sag%2:38:00:: 1 -5 rushing%1:04:00:: 1 -5 run_out%2:30:12:: 1 -5 run%2:36:01:: 10 -5 run%1:04:06:: 2 -5 royalty%1:21:00:: 1 -5 rose%1:20:00:: 1 -5 rope%1:06:00:: 1 -5 rock%2:38:01:: 2 -5 robber%1:18:01:: 1 -5 rob%2:40:01:: 2 -5 rob%2:40:00:: 1 -5 rise%2:38:04:: 5 -5 ring%2:39:01:: 3 -5 rigid%5:00:00:inflexible:01 1 -5 right%1:06:00:: 3 -5 rid%2:40:00:: 1 -5 rich%3:00:02:: 2 -5 rice%1:13:00:: 1 -5 revive%2:29:01:: 1 -5 revive%2:29:00:: 2 -5 revenue%1:21:01:: 1 -5 return%2:32:00:: 4 -5 retailer%1:18:00:: 1 -5 resume%2:30:01:: 2 -5 resultant%5:00:00:subsequent:00 1 -5 restriction%1:09:00:: 1 -5 restrict%2:41:00:: 2 -5 restraint%1:04:00:: 1 -5 respectable%5:00:00:reputable:00 2 -5 respectable%3:00:00:: 1 -5 respect%1:26:00:: 2 -5 respect%1:09:01:: 3 -5 resonance%1:19:01:: 1 -5 residential%3:01:00:: 2 -5 reserves%1:14:00:: 1 -5 reserve%5:00:00:nonoperational:00 1 -5 reserve%2:40:00:: 3 -5 reservation%1:15:00:: 1 -5 reputation%1:26:00:: 1 -5 reproducible%3:00:00:: 1 -5 represent%2:42:00:: 7 -5 report%2:32:01:: 4 -5 repair%1:04:00:: 1 -5 renaissance%1:28:00:: 1 -5 remote%5:00:01:far:00 1 -5 remaining%5:00:00:other:00 1 -5 reluctantly%4:02:00:: 1 -5 relieved%5:00:00:mitigated:00 1 -5 relief%1:21:00:: 3 -5 relax%2:30:01:: 2 -5 rejection%1:04:00:: 1 -5 reiterate%2:32:00:: 1 -5 rein%1:06:00:: 1 -5 rehearse%2:36:00:: 1 -5 regular%5:00:00:standard:02 3 -5 regret%1:12:00:: 1 -5 region%1:08:00:: 2 -5 regain%2:40:00:: 1 -5 refuse%2:42:00:: 3 -5 refugee%1:18:00:: 1 -5 refrain_from%2:41:00:: 1 -5 reflex%1:04:00:: 1 -5 reflect%2:43:00:: 4 -5 reference%1:10:06:: 3 -5 reference%1:10:04:: 4 -5 reduce%2:41:00:: 3 -5 red_blood_cell%1:08:00:: 1 -5 recur%2:30:00:: 1 -5 recording%1:04:00:: 2 -5 record%5:00:00:best:00 1 -5 reckon%2:31:02:: 1 -5 rebellion%1:04:01:: 1 -5 rebellion%1:04:00:: 2 -5 rebel%2:41:00:: 1 -5 reassure%2:37:00:: 1 -5 reasoning%1:09:00:: 1 -5 realistically%4:02:01:: 1 -5 real_life%1:09:00:: 1 -5 real_estate%1:21:00:: 1 -5 real%5:00:00:genuine:00 3 -5 read%2:31:09:: 6 -5 read%2:31:06:: 4 -5 read%2:31:02:: 5 -5 reactionary%1:18:00:: 1 -5 razor%1:06:00:: 1 -5 ratify%2:41:00:: 1 -5 rat%1:05:00:: 1 -5 rap%2:35:00:: 1 -5 random%3:00:00:: 1 -5 rancher%1:18:00:: 1 -5 rain%1:27:00:: 2 -5 railroad_station%1:06:00:: 1 -5 rail%1:06:02:: 1 -5 ragged%5:00:01:worn:00 1 -5 radical%5:00:00:immoderate:00 1 -5 rack%1:06:01:: 1 -5 quivering%5:00:00:unsteady:00 1 -5 question%2:32:00:: 3 -5 quantitative%3:00:00:: 1 -5 qualitative%3:00:00:: 1 -5 pyrex%1:27:00:: 1 -5 purse%1:06:00:: 1 -5 purpose%1:07:01:: 3 -5 purified%5:00:00:pure:02 1 -5 pulmonary%3:01:00:: 1 -5 pull%1:04:00:: 1 -5 publication%1:04:01:: 2 -5 psychology%1:09:00:: 1 -5 protestant%1:14:00:: 2 -5 protection%1:06:00:: 2 -5 protease%1:27:00:: 1 -5 pronoun%1:10:00:: 1 -5 promote%2:41:00:: 2 -5 promise%2:32:02:: 3 -5 prolonged%5:00:00:long:02 1 -5 project%2:35:01:: 3 -5 progress%1:11:00:: 3 -5 program%1:10:01:: 3 -5 profoundly%4:02:00:: 1 -5 profession%1:04:00:: 2 -5 producer%1:18:02:: 2 -5 produce%2:39:00:: 6 -5 procreation%1:04:00:: 1 -5 proceedings%1:04:00:: 1 -5 pro%3:00:00:: 1 -5 priest%1:18:01:: 2 -5 pride%1:12:01:: 2 -5 prevision%1:09:01:: 1 -5 prevail%2:42:01:: 2 -5 prevail%2:42:00:: 3 -5 president%1:18:04:: 2 -5 president%1:18:00:: 3 -5 presently%4:02:00:: 2 -5 prepare%2:41:00:: 5 -5 preparation%1:27:00:: 2 -5 predictable%3:00:00:: 1 -5 precaution%1:04:00:: 1 -5 prayer%1:04:00:: 1 -5 praise%1:10:00:: 1 -5 practice%2:36:00:: 3 -5 practice%1:04:02:: 2 -5 power%1:07:02:: 7 -5 pound%2:35:00:: 1 -5 potential_energy%1:19:00:: 1 -5 potassium%1:27:00:: 1 -5 pot%1:06:01:: 2 -5 posterior%3:00:00:: 1 -5 positively%4:02:00:: 1 -5 portal%1:06:01:: 1 -5 port%1:15:00:: 1 -5 popular%5:00:01:common:01 3 -5 poke%2:39:00:: 2 -5 point%2:38:05:: 4 -5 plot%1:10:00:: 3 -5 play%2:38:00:: 9 -5 play%2:33:01:: 10 -5 platform%1:06:00:: 1 -5 plasma%1:27:00:: 1 -5 plasma%1:08:00:: 2 -5 planned%3:00:00:: 1 -5 pituitary%1:08:00:: 1 -5 pittsburgh%1:15:00:: 1 -5 pitch%2:38:03:: 2 -5 pitch%1:07:00:: 1 -5 pit%1:17:00:: 1 -5 picture_plane%1:25:00:: 1 -5 picture%2:36:01:: 1 -5 pick_up%2:40:01:: 4 -5 pianist%1:18:00:: 1 -5 physical%5:00:00:material:01 3 -5 physical%3:01:00:: 2 -5 phonology%1:09:00:: 1 -5 phenomenon%1:11:00:: 2 -5 pertinent%5:00:00:relevant:00 1 -5 perspiration%1:08:00:: 1 -5 persistence%1:07:02:: 1 -5 permission%1:10:00:: 1 -5 perish%2:30:00:: 1 -5 periodic%3:00:00:: 1 -5 per_year%4:02:00:: 1 -5 per_se%4:02:00:: 1 -5 pebble%1:17:00:: 1 -5 peaceful%3:00:00:: 1 -5 patrol%2:41:00:: 1 -5 pathological%3:01:00:: 1 -5 patent%1:10:01:: 1 -5 paste%2:35:01:: 1 -5 past%1:28:01:: 2 -5 passive%3:00:01:: 1 -5 passage%1:10:00:: 2 -5 partnership%1:14:00:: 1 -5 partial%5:00:00:incomplete:00 1 -5 parked%3:44:00:: 1 -5 park%1:15:01:: 2 -5 parameter%1:09:00:: 1 -5 parallel%2:42:00:: 1 -5 parallel%1:07:00:: 1 -5 paragraph%1:10:00:: 1 -5 paradoxically%4:02:00:: 1 -5 pan%1:06:01:: 1 -5 pail%1:06:00:: 1 -5 owe%2:42:00:: 2 -5 overlap%2:42:03:: 1 -5 over_and_over%4:02:00:: 1 -5 outstanding%5:00:00:superior:02 1 -5 outside%5:00:00:extrinsic:00 2 -5 outside%3:00:00:: 1 -5 outreach%1:04:00:: 1 -5 output%1:06:00:: 1 -5 outlook%1:09:00:: 2 -5 out%4:02:02:: 3 -5 ought%2:42:01:: 1 -5 original%3:00:00:: 3 -5 organized%3:00:02:: 1 -5 organize%2:31:00:: 3 -5 order_of_magnitude%1:07:00:: 1 -5 order%2:32:02:: 3 -5 opening%1:17:00:: 1 -5 old_testament%1:10:00:: 1 -5 old%5:00:00:familiar:00 4 -5 oil%1:06:01:: 2 -5 offset%2:42:01:: 1 -5 off%4:02:04:: 3 -5 obstacle%1:09:00:: 1 -5 number%1:10:04:: 3 -5 number%1:10:03:: 4 -5 nuclear%3:01:01:: 2 -5 notorious%5:00:00:disreputable:00 1 -5 notably%4:02:00:: 1 -5 notable%5:00:00:worthy:00 1 -5 nonsense%1:10:00:: 1 -5 noble%5:00:00:honorable:00 1 -5 nitrogen%1:27:00:: 1 -5 nine%1:23:00:: 1 -5 nicely%4:02:00:: 1 -5 nice%5:00:00:respectable:00 2 -5 new_mexico%1:15:00:: 1 -5 new_englander%1:18:00:: 1 -5 new%5:00:00:unprecedented:00 4 -5 neutrophil%1:08:00:: 1 -5 neutralist%1:18:00:: 1 -5 neutral%5:00:00:amoral:00 1 -5 nestle%2:35:00:: 1 -5 nerve%1:07:00:: 2 -5 neocortex%1:08:00:: 1 -5 necessarily%4:02:00:: 1 -5 nazi%3:01:02:: 1 -5 native%3:00:01:: 1 -5 nationalism%1:09:00:: 2 -5 national%5:00:00:public:00 4 -5 national%5:00:00:domestic:00 5 -5 name%2:41:01:: 3 -5 murder%2:41:00:: 1 -5 mulch%1:06:00:: 1 -5 mucosa%1:08:00:: 1 -5 mound%1:06:01:: 1 -5 motivation%1:03:00:: 1 -5 motif%1:06:00:: 1 -5 morality%1:16:00:: 2 -5 moonlight%1:19:00:: 1 -5 monthly%3:01:00:: 1 -5 monstrous%5:00:00:large:00 1 -5 monster%1:18:02:: 1 -5 monopoly%1:26:01:: 1 -5 monocle%1:06:00:: 1 -5 mono-iodotyrosine%1:27:00:: 1 -5 monk%1:18:00:: 1 -5 monastic%5:00:00:unworldly:00 1 -5 modifier%1:10:00:: 1 -5 modernity%1:07:00:: 1 -5 modern%5:00:00:nonclassical:00 3 -5 mobilize%2:30:02:: 1 -5 mississippi%1:17:00:: 1 -5 mississippi%1:15:00:: 2 -5 missing%5:00:00:lost:01 2 -5 missing%5:00:00:absent:00 1 -5 miss%2:38:00:: 5 -5 misplaced%5:00:00:disarranged:00 1 -5 miscellaneous%5:00:00:general:00 1 -5 minute%5:00:00:small:00 1 -5 minnesota%1:15:00:: 1 -5 mine%1:06:00:: 2 -5 mind%2:31:02:: 2 -5 min%1:28:00:: 1 -5 militia%1:14:00:: 1 -5 mile%1:23:04:: 2 -5 middle_ages%1:28:00:: 1 -5 middle%5:00:00:intermediate:00 1 -5 microorganism%1:05:00:: 1 -5 michigan%1:15:00:: 1 -5 methodically%4:02:00:: 1 -5 metal%3:00:00:: 1 -5 merit%1:07:01:: 1 -5 mend%2:30:00:: 1 -5 member%1:08:00:: 3 -5 megaton_bomb%1:06:00:: 1 -5 medium%5:00:00:moderate:00 1 -5 medium%1:10:01:: 1 -5 medicine%1:09:00:: 1 -5 measure%1:04:01:: 2 -5 measure%1:03:00:: 3 -5 mc%1:28:00:: 1 -5 may_not%2:42:00:: 1 -5 mature%2:30:00:: 1 -5 material%5:00:00:worldly:00 1 -5 material%1:06:01:: 4 -5 match%2:42:01:: 4 -5 master%1:18:04:: 2 -5 massachusetts%1:15:00:: 1 -5 martian%3:01:00:: 1 -5 marshal%1:18:00:: 1 -5 mark%2:30:00:: 5 -5 mark%1:09:01:: 1 -5 marine_corps%1:14:00:: 1 -5 march%2:38:04:: 2 -5 march%2:38:00:: 3 -5 manners%1:07:00:: 1 -5 mankind%1:14:00:: 1 -5 manipulate%2:41:00:: 1 -5 maneuver%2:38:00:: 1 -5 maneuver%1:04:02:: 1 -5 manage%2:41:00:: 2 -5 mamma%1:18:00:: 1 -5 make_sure%2:41:00:: 1 -5 make%2:36:13:: 17 -5 make%2:30:15:: 18 -5 make%2:29:08:: 19 -5 majority%1:23:00:: 2 -5 magnetic_force%1:19:00:: 1 -5 magician%1:18:01:: 1 -5 m%1:23:00:: 1 -5 m%1:07:00:: 2 -5 luxury%1:07:00:: 1 -5 lurch%2:38:03:: 1 -5 lug%2:35:00:: 1 -5 lower%5:00:00:inferior:01 1 -5 lot%1:15:00:: 2 -5 lost%5:00:00:unoriented:00 2 -5 lost%3:00:01:: 1 -5 loosen%2:30:01:: 1 -5 looking%5:00:00:superficial:00 1 -5 look_after%2:39:00:: 1 -5 long_since%4:02:01:: 1 -5 logical%5:00:00:valid:00 2 -5 live_up_to%2:42:00:: 1 -5 literature%1:10:01:: 3 -5 literally%4:02:01:: 2 -5 literally%4:02:00:: 1 -5 liter%1:23:00:: 1 -5 liquid%1:26:00:: 2 -5 link%1:24:00:: 1 -5 link%1:06:00:: 2 -5 line%2:35:00:: 2 -5 line%1:25:01:: 12 -5 life%1:28:02:: 7 -5 life%1:18:00:: 8 -5 life%1:07:01:: 9 -5 life%1:03:00:: 10 -5 level%1:07:01:: 4 -5 let_go_of%2:35:00:: 1 -5 lessening%1:11:00:: 1 -5 lessen%2:30:00:: 1 -5 lens%1:06:00:: 1 -5 legislature%1:14:00:: 1 -5 legislative%3:01:01:: 1 -5 legal%3:01:00:: 2 -5 ledger%1:21:00:: 1 -5 leave_behind%2:38:00:: 1 -5 leave%2:42:03:: 13 -5 leave%2:30:03:: 14 -5 least%4:02:00:: 1 -5 leap%1:04:00:: 1 -5 lean_against%2:35:00:: 1 -5 lean%3:00:04:: 1 -5 lead%2:42:03:: 12 -5 lay%2:36:00:: 3 -5 law%1:09:01:: 4 -5 language%1:10:01:: 2 -5 lamb%1:05:00:: 1 -5 ladder%1:06:00:: 1 -5 lacking%5:00:00:absent:00 1 -5 laborer%1:18:00:: 1 -5 labor%2:41:01:: 1 -5 knock_down%2:35:01:: 1 -5 knife%1:06:01:: 2 -5 killing%1:11:00:: 1 -5 killing%1:04:00:: 2 -5 kid%2:32:01:: 1 -5 keep_up%2:42:00:: 2 -5 keep_an_eye_on%2:39:00:: 1 -5 k%1:23:05:: 1 -5 joy%1:09:00:: 2 -5 jeep%1:06:00:: 1 -5 japan%1:15:01:: 1 -5 jap%1:18:00:: 1 -5 isolated%5:00:00:separate:00 2 -5 irony%1:10:01:: 1 -5 ironical%5:00:00:incongruous:00 1 -5 iodinated%3:01:00:: 1 -5 inward%3:00:00:: 1 -5 invitation%1:10:00:: 1 -5 invisible%3:00:00:: 1 -5 investment%1:21:00:: 2 -5 inventory%1:10:00:: 1 -5 invent%2:36:01:: 2 -5 introject%1:09:00:: 1 -5 intimate%5:00:00:close:02 1 -5 interview%2:32:01:: 2 -5 interruption%1:04:00:: 1 -5 interrupt%2:30:03:: 2 -5 interrelation%1:24:00:: 1 -5 interest%2:37:00:: 1 -5 interest%1:14:00:: 6 -5 interdependence%1:24:00:: 1 -5 interchange%1:06:00:: 1 -5 intercept%2:35:00:: 1 -5 intent%5:00:00:concentrated:00 1 -5 intelligible%5:00:00:comprehensible:00 1 -5 intellect%1:09:02:: 1 -5 integer%1:23:00:: 1 -5 intake%1:04:00:: 1 -5 intact%5:00:00:whole:00 1 -5 instructor%1:18:00:: 1 -5 instruction%1:04:01:: 2 -5 institute%2:36:00:: 2 -5 inspire%2:36:00:: 2 -5 inspire%2:32:00:: 3 -5 innocence%1:07:01:: 1 -5 inner%3:00:00:: 2 -5 initiative%1:07:00:: 1 -5 infiltration%1:04:00:: 1 -5 inevitable%3:00:00:: 1 -5 induce%2:36:01:: 3 -5 indian_python%1:05:00:: 1 -5 india%1:15:00:: 1 -5 incredibly%4:02:00:: 1 -5 incidence%1:24:00:: 1 -5 incentive%1:16:00:: 1 -5 inability%1:09:00:: 1 -5 in_the_first_place%4:02:00:: 2 -5 in_the_end%4:02:00:: 2 -5 in_some_way%4:02:00:: 1 -5 in_reality%4:02:00:: 1 -5 in_question%5:00:00:relevant:00 1 -5 in_other_words%4:02:00:: 1 -5 in_order%5:00:00:appropriate:00 1 -5 in_charge%5:00:00:dominant:01 1 -5 impress%2:31:00:: 3 -5 impatient%3:00:00:: 1 -5 immunity%1:26:00:: 1 -5 immortal%3:00:00:: 1 -5 immigrant%1:18:00:: 1 -5 immense%5:00:01:large:00 1 -5 immediately%4:02:03:: 2 -5 imagined%5:00:00:unreal:00 1 -5 illustrate%2:36:00:: 2 -5 illuminate%2:31:00:: 2 -5 iliad%1:10:00:: 1 -5 ignorance%1:09:00:: 1 -5 ideal_gas%1:27:00:: 1 -5 human%1:05:00:: 2 -5 hued%5:00:00:colored:00 1 -5 hudson%1:17:00:: 1 -5 houston%1:15:00:: 1 -5 housewife%1:18:00:: 1 -5 house_of_representatives%1:14:00:: 1 -5 hostile%3:00:01:: 1 -5 honest%5:00:00:sincere:00 2 -5 homozygous%3:00:00:: 1 -5 homely%5:00:00:unattractive:00 1 -5 holster%1:06:00:: 1 -5 hole%1:06:01:: 3 -5 hold_out%2:29:00:: 1 -5 hold_on%2:35:00:: 1 -5 hold%1:04:00:: 1 -5 history%1:09:01:: 5 -5 historical%5:00:00:real:00 3 -5 historical%5:00:00:past:00 4 -5 hip%1:08:00:: 1 -5 hilum%1:08:00:: 1 -5 high%1:07:00:: 1 -5 hiding_place%1:15:00:: 1 -5 heroic%5:00:00:large:00 1 -5 herd%1:14:00:: 1 -5 hemisphere%1:15:00:: 1 -5 helpful%5:00:00:useful:00 2 -5 help%2:42:08:: 4 -5 heavy%3:00:04:: 3 -5 heave%2:32:00:: 1 -5 heat%1:09:00:: 3 -5 heart%1:15:00:: 4 -5 headlight%1:06:00:: 1 -5 headed%5:00:00:oriented:00 1 -5 headache%1:09:00:: 1 -5 have%2:29:05:: 17 -5 haul%2:35:00:: 2 -5 harm%1:26:00:: 1 -5 hard%5:00:00:strong:00 4 -5 happily%4:02:01:: 1 -5 hang%2:35:02:: 5 -5 hand_over%2:40:00:: 1 -5 hand_out%2:40:00:: 1 -5 hand%1:18:00:: 2 -5 hallway%1:06:00:: 1 -5 halfway%4:02:00:: 1 -5 haired%5:00:00:hairy:00 1 -5 gymnast%1:18:00:: 1 -5 gunfire%1:04:00:: 1 -5 gulp%2:34:01:: 1 -5 grumble%2:32:01:: 1 -5 grouping%1:03:00:: 1 -5 grounds%1:06:00:: 2 -5 grocer%1:18:00:: 1 -5 grimly%4:02:00:: 1 -5 grief%1:12:00:: 1 -5 grenade%1:06:00:: 1 -5 greeting%1:10:00:: 1 -5 greece%1:15:00:: 1 -5 greatcoat%1:06:00:: 1 -5 grave%1:28:00:: 1 -5 grave%1:06:00:: 2 -5 graphite%1:27:00:: 1 -5 grant%2:32:00:: 3 -5 grant%1:21:00:: 1 -5 grant%1:04:00:: 2 -5 grammatic%3:01:00:: 1 -5 grade%1:26:00:: 2 -5 gown%1:06:00:: 1 -5 good_will%1:07:00:: 1 -5 good%5:00:00:advantageous:00 5 -5 gone%5:00:00:destroyed:00 2 -5 go_over%2:31:00:: 1 -5 go_down%2:38:00:: 2 -5 go_about%2:41:00:: 1 -5 glow%2:39:00:: 1 -5 glorious%3:00:00:: 1 -5 globe%1:17:00:: 1 -5 glimpse%2:39:00:: 1 -5 glare%1:07:00:: 1 -5 given%5:00:00:acknowledged:00 2 -5 give_up%2:40:00:: 2 -5 give_up%2:33:00:: 3 -5 give_in%2:32:02:: 1 -5 give%2:40:14:: 20 -5 give%2:40:13:: 19 -5 give%2:32:02:: 21 -5 girlish%5:00:00:young:00 1 -5 girl%1:18:03:: 5 -5 ghetto%1:15:00:: 1 -5 get_up%2:38:00:: 3 -5 get_started%2:30:00:: 1 -5 get_married%2:41:00:: 1 -5 get_in_touch%2:41:00:: 1 -5 gain%2:38:00:: 4 -5 g%1:23:00:: 1 -5 futility%1:07:00:: 1 -5 furnishings%1:06:00:: 1 -5 fundamentally%4:02:00:: 1 -5 fuel%1:27:00:: 1 -5 frustrate%2:41:00:: 1 -5 frontier%1:25:00:: 1 -5 fresh%5:00:00:new:00 2 -5 frenchman%1:18:00:: 1 -5 freeze%2:38:00:: 1 -5 freeze%2:30:00:: 2 -5 fraud%1:04:00:: 1 -5 frantically%4:02:00:: 1 -5 frankly%4:02:00:: 1 -5 frame%1:06:03:: 2 -5 fragmentary%5:00:00:fractional:00 1 -5 fraction%1:06:00:: 2 -5 forward%4:02:03:: 2 -5 formally%4:02:01:: 1 -5 forlorn%5:00:00:forsaken:00 1 -5 forgotten%5:00:00:unnoticed:00 1 -5 foresee%2:31:00:: 1 -5 forecast%2:32:00:: 1 -5 force%1:04:01:: 6 -5 for_that_matter%4:02:00:: 1 -5 fold%2:35:00:: 1 -5 foil%1:06:01:: 1 -5 fly%2:38:01:: 3 -5 flux%1:11:00:: 2 -5 flow%1:04:00:: 3 -5 flounder%2:38:00:: 1 -5 flood%1:19:00:: 1 -5 flight%1:06:00:: 3 -5 flight%1:04:01:: 4 -5 flat%5:00:00:planar:00 2 -5 flank%2:42:00:: 1 -5 fix_up%2:34:00:: 1 -5 fix%2:36:00:: 4 -5 five_hundred%5:00:00:cardinal:00 1 -5 fitting%5:00:00:proper:00 1 -5 fit%2:30:02:: 5 -5 fishing%1:04:00:: 1 -5 first_of_all%4:02:00:: 1 -5 first%1:23:00:: 2 -5 firmly%4:02:03:: 2 -5 fireplace%1:06:01:: 1 -5 fire%2:33:02:: 5 -5 finished%3:00:02:: 1 -5 fingerprint%1:10:01:: 1 -5 financing%1:04:00:: 1 -5 financially%4:02:00:: 1 -5 film%1:06:01:: 3 -5 film%1:06:00:: 4 -5 fill_out%2:32:00:: 1 -5 fill%2:41:00:: 4 -5 fill%2:34:02:: 5 -5 fighting%5:00:00:operational:00 1 -5 fight%2:41:10:: 4 -5 fierce%5:00:00:intense:00 2 -5 few%1:23:00:: 1 -5 feel%2:39:10:: 8 -5 feel%1:09:00:: 1 -5 feedlot%1:06:00:: 1 -5 feed%2:34:03:: 3 -5 federal%3:01:02:: 2 -5 feb%1:28:00:: 1 -5 favorite%1:09:00:: 1 -5 favor%1:07:00:: 2 -5 faraway%5:00:00:far:00 1 -5 far%5:00:00:long:01 2 -5 family%1:14:01:: 4 -5 faithful%3:00:00:: 1 -5 faint%5:00:00:perceptible:00 1 -5 faint%5:00:00:indistinct:00 2 -5 fail%2:37:00:: 3 -5 facilitate%2:30:00:: 1 -5 face%2:42:01:: 4 -5 face%1:04:00:: 4 -5 extreme%5:00:00:immoderate:00 2 -5 extend%2:29:01:: 5 -5 expression%1:10:00:: 4 -5 exposed%5:00:00:unprotected:00 1 -5 exploration%1:04:02:: 1 -5 explode%2:30:00:: 2 -5 experimentally%4:02:00:: 1 -5 experience%2:37:00:: 4 -5 expectation%1:09:00:: 1 -5 exist%2:42:01:: 2 -5 exclaim%2:32:01:: 2 -5 excitement%1:26:01:: 2 -5 example%1:09:01:: 3 -5 ex%5:00:00:past:00 1 -5 evolution%1:22:01:: 1 -5 estimate%1:04:01:: 2 -5 errand%1:04:00:: 1 -5 erase%2:30:00:: 1 -5 epoch%1:28:00:: 1 -5 epitomize%2:42:00:: 1 -5 epiphysis%1:08:00:: 1 -5 epidemic%3:00:00:: 1 -5 epidemic%1:11:00:: 1 -5 entry%1:04:01:: 2 -5 entrance%1:11:00:: 2 -5 entire%5:00:02:whole:00 2 -5 enthusiasm%1:12:00:: 1 -5 enthusiasm%1:07:00:: 2 -5 enterprise%1:14:00:: 2 -5 ensemble%1:14:02:: 1 -5 enhance%2:30:00:: 1 -5 englishman%1:18:00:: 1 -5 enemy%1:14:01:: 3 -5 endeavor%1:04:01:: 1 -5 end%1:15:02:: 7 -5 emotional_state%1:26:00:: 1 -5 emerge%2:30:01:: 3 -5 embrace%2:42:00:: 1 -5 embankment%1:06:00:: 1 -5 ellipsoid%1:25:00:: 1 -5 eligible%3:00:00:: 1 -5 elevator%1:06:00:: 1 -5 electricity%1:19:01:: 2 -5 elastic%3:00:00:: 1 -5 elapse%2:38:00:: 1 -5 education%1:04:01:: 4 -5 educated%3:00:00:: 1 -5 edged%5:00:00:bordered:00 1 -5 edge%1:25:00:: 2 -5 edge%1:06:00:: 3 -5 economic%3:01:00:: 2 -5 echo%2:32:00:: 1 -5 echo%1:07:00:: 1 -5 easy%4:02:01:: 1 -5 eagerness%1:12:00:: 1 -5 dutch%3:01:00:: 1 -5 dusk%1:28:00:: 1 -5 duration%1:28:02:: 1 -5 dull%3:00:03:: 1 -5 dull%3:00:02:: 2 -5 due_process%1:04:00:: 1 -5 drum%1:06:00:: 1 -5 drought%1:26:00:: 1 -5 drop%2:30:01:: 7 -5 drizzle%1:19:00:: 1 -5 driveway%1:06:00:: 1 -5 drive%2:35:11:: 6 -5 drive%1:06:02:: 2 -5 drill%2:31:03:: 2 -5 dress_up%2:29:00:: 1 -5 drawing%1:06:00:: 2 -5 drawer%1:06:00:: 1 -5 draw%2:37:01:: 11 -5 draw%2:34:01:: 12 -5 draw%1:17:00:: 1 -5 dramatic%5:00:00:impressive:00 2 -5 double%5:00:03:multiple:00 1 -5 double%5:00:02:multiple:00 2 -5 door%1:07:00:: 3 -5 documentary%1:10:00:: 1 -5 do_good%2:40:00:: 1 -5 dividend%1:21:00:: 1 -5 divan%1:06:00:: 1 -5 disturbing%5:00:00:heavy:02 1 -5 distribute%2:35:01:: 2 -5 distort%2:32:00:: 1 -5 distinctive%5:00:00:characteristic:00 1 -5 distinction%1:26:00:: 2 -5 distance%1:07:01:: 3 -5 dissolved%5:00:00:melted:00 1 -5 disrupt%2:32:00:: 1 -5 dispatch%2:38:00:: 1 -5 disorder%1:26:03:: 1 -5 discrimination%1:09:00:: 2 -5 discretion%1:26:00:: 1 -5 discrepancy%1:07:00:: 1 -5 discovery%1:10:00:: 2 -5 discovery%1:09:00:: 3 -5 disapprove%2:31:00:: 1 -5 disappoint%2:37:00:: 1 -5 directly%4:02:01:: 4 -5 direction%1:10:00:: 4 -5 direct%3:00:02:: 3 -5 direct%2:38:01:: 6 -5 direct%2:38:00:: 5 -5 direct%2:33:00:: 7 -5 dinner%1:14:00:: 2 -5 dimension%1:09:00:: 2 -5 dig%2:35:01:: 2 -5 differentiation%1:09:00:: 1 -5 diaphragm%1:06:00:: 1 -5 di-iodotyrosine%1:27:00:: 1 -5 devote%2:31:00:: 2 -5 devil%1:18:00:: 2 -5 develop%2:31:00:: 8 -5 desired%5:00:00:desirable:00 1 -5 deserted%5:00:00:forsaken:00 1 -5 derision%1:10:00:: 1 -5 department_of_state%1:14:00:: 1 -5 depart%2:42:00:: 2 -5 demonstration%1:04:02:: 2 -5 demonstrate%2:39:00:: 3 -5 delight%2:37:00:: 1 -5 delegate%2:41:01:: 1 -5 defeat%2:41:00:: 2 -5 deep%5:00:00:low:03 6 -5 dedication%1:07:00:: 1 -5 decrease%1:11:00:: 1 -5 decline%2:30:01:: 1 -5 declaration_of_independence%1:10:00:: 1 -5 deceive%2:41:00:: 1 -5 debut%1:04:00:: 1 -5 debris%1:27:00:: 1 -5 debate%1:10:00:: 2 -5 deal%2:40:01:: 5 -5 day_school%1:14:00:: 1 -5 datum%1:09:00:: 1 -5 date_back%2:42:00:: 1 -5 dark%5:00:00:evil:00 4 -5 dark%5:00:00:cheerless:00 5 -5 dark%1:26:01:: 2 -5 cylindrical%5:00:00:rounded:00 1 -5 curved%3:00:00:: 1 -5 curtail%2:30:00:: 1 -5 curse%1:10:00:: 1 -5 curb%1:06:00:: 1 -5 cumulative%5:00:00:additive:00 1 -5 cubist%3:01:00:: 1 -5 cubism%1:14:00:: 1 -5 critical%3:00:04:: 2 -5 critical%3:00:02:: 3 -5 crimson%5:00:00:bloody:00 2 -5 credit%1:21:02:: 2 -5 creation%1:04:00:: 1 -5 crave%2:34:00:: 1 -5 cows%1:05:00:: 1 -5 cousin%1:18:00:: 1 -5 court%2:41:00:: 1 -5 court%1:06:02:: 2 -5 course%1:17:00:: 5 -5 couple%2:35:02:: 1 -5 countless%5:00:00:incalculable:00 1 -5 counsel%1:18:00:: 1 -5 could%2:42:00:: 1 -5 couch%1:06:00:: 1 -5 correspondence%1:10:00:: 1 -5 correct%5:00:00:proper:00 2 -5 correct%3:00:00:: 1 -5 correct%2:41:01:: 2 -5 coroner%1:18:00:: 1 -5 corner%1:15:01:: 5 -5 core%1:14:00:: 1 -5 cord%1:06:00:: 1 -5 cope%2:41:00:: 1 -5 cooking%1:13:00:: 1 -5 convert%2:30:03:: 2 -5 conversely%4:02:00:: 1 -5 converse%2:32:00:: 1 -5 convenience%1:26:00:: 1 -5 control%1:09:02:: 4 -5 control%1:04:00:: 5 -5 contrary%5:00:00:different:00 1 -5 contradict%2:42:00:: 1 -5 contractor%1:18:00:: 1 -5 continue%2:38:00:: 4 -5 continent%1:17:00:: 1 -5 contention%1:10:02:: 1 -5 content%3:00:04:: 1 -5 contemporary%5:00:00:current:00 2 -5 contemplate%2:31:00:: 3 -5 container%1:06:00:: 1 -5 construe%2:31:00:: 1 -5 constructive%3:00:00:: 1 -5 construction%1:10:01:: 2 -5 construct%2:36:01:: 2 -5 consonantal_system%1:10:00:: 1 -5 conserve%2:40:01:: 1 -5 conquer%2:30:00:: 1 -5 connected%5:00:00:related:02 1 -5 conjure_up%2:36:00:: 1 -5 conjugated%5:00:02:bound:03 1 -5 congratulate%2:32:00:: 1 -5 confused%5:00:00:perplexed:00 1 -5 confuse%2:31:03:: 2 -5 confirm%2:32:00:: 2 -5 confine%2:30:00:: 1 -5 conduct%1:04:00:: 1 -5 concur%2:32:00:: 1 -5 conclusion%1:09:01:: 2 -5 concert%1:10:00:: 1 -5 concentration%1:07:03:: 2 -5 concentrated%5:00:00:undiluted:00 2 -5 concentrated%3:00:00:: 1 -5 concentrate_on%2:42:00:: 1 -5 conceivable%5:00:00:possible:00 1 -5 comprehension%1:09:00:: 1 -5 compose%2:36:03:: 2 -5 complicate%2:30:00:: 1 -5 complete%2:30:00:: 2 -5 compensate%2:42:00:: 1 -5 compel%2:32:00:: 2 -5 company%1:14:02:: 4 -5 commune%1:15:00:: 1 -5 commissioner%1:18:00:: 1 -5 command%1:07:00:: 3 -5 coming%5:00:01:future:00 1 -5 comfortably%4:02:00:: 1 -5 comfort%1:26:00:: 1 -5 comfort%1:12:00:: 2 -5 come_out%2:30:04:: 3 -5 come_on%2:38:00:: 2 -5 combined%5:00:00:joint:00 1 -5 combine%2:35:01:: 3 -5 column%1:25:02:: 4 -5 colors%1:06:00:: 1 -5 colonial%3:01:00:: 1 -5 collar%1:06:00:: 1 -5 coldly%4:02:00:: 1 -5 cold%1:26:00:: 1 -5 cold%1:07:00:: 2 -5 coincide%2:30:00:: 2 -5 cocktail_party%1:11:00:: 1 -5 coax%2:32:00:: 1 -5 coal%1:27:00:: 1 -5 cling%2:37:00:: 2 -5 climate%1:26:00:: 1 -5 click%2:38:00:: 1 -5 cliche%1:10:00:: 1 -5 cleveland%1:15:00:: 1 -5 clear%2:30:09:: 2 -5 clean_out%2:30:00:: 1 -5 classroom%1:06:00:: 1 -5 clarify%2:30:00:: 2 -5 clamor%2:32:03:: 1 -5 clamor%1:11:00:: 1 -5 churchyard%1:15:00:: 1 -5 chromatography%1:22:00:: 1 -5 choreograph%2:36:00:: 1 -5 chinese%3:01:00:: 1 -5 china%1:15:00:: 1 -5 chief%1:18:00:: 1 -5 chemistry%1:09:00:: 1 -5 cheery%5:00:00:cheerful:00 1 -5 checklist%1:10:00:: 1 -5 checkbook%1:21:00:: 1 -5 check%2:41:08:: 4 -5 chase%1:04:00:: 1 -5 chart%2:31:13:: 1 -5 change%2:30:04:: 6 -5 chance%5:00:00:unplanned:00 1 -5 challenge%1:26:00:: 1 -5 centrally%4:02:00:: 1 -5 central%3:00:02:: 3 -5 center%2:31:00:: 2 -5 center%1:15:00:: 4 -5 cellulose%1:27:00:: 1 -5 celebration%1:11:00:: 1 -5 causal%5:00:00:causative:00 1 -5 catholicism%1:09:00:: 1 -5 case%1:18:03:: 6 -5 cart%1:06:00:: 1 -5 carry%2:35:01:: 6 -5 caress%2:35:00:: 1 -5 card%1:06:00:: 1 -5 capture%2:36:00:: 1 -5 capable%5:00:00:susceptible:00 2 -5 canyon%1:17:00:: 1 -5 canon%1:10:00:: 1 -5 cane%1:06:01:: 1 -5 candidate%1:18:00:: 2 -5 campaign%1:04:02:: 2 -5 calm%2:37:00:: 1 -5 cafe%1:06:00:: 1 -5 cabin%1:06:01:: 1 -5 by_the_way%4:02:00:: 1 -5 bw%1:04:00:: 1 -5 business%1:14:02:: 7 -5 bush%1:20:00:: 1 -5 burst%1:04:00:: 1 -5 burial%1:11:00:: 1 -5 bulk%1:07:02:: 1 -5 buffer%2:30:00:: 1 -5 brush%2:35:02:: 3 -5 brood%2:31:00:: 1 -5 broad%5:00:00:general:00 3 -5 bristle%1:06:00:: 1 -5 bright%5:00:00:intelligent:00 3 -5 breed%1:14:01:: 1 -5 breathless%3:00:00:: 1 -5 breathing%1:04:00:: 1 -5 breakdown%1:04:02:: 1 -5 break_up%2:38:01:: 1 -5 break%2:41:00:: 6 -5 branch%1:25:00:: 3 -5 brain%1:09:01:: 3 -5 brain%1:09:00:: 2 -5 boxcar%1:06:00:: 1 -5 bowed%5:00:00:unerect:00 1 -5 bounce%2:35:03:: 2 -5 bottom%1:15:01:: 2 -5 borrow%2:40:01:: 2 -5 born%3:00:00:: 1 -5 border%1:15:00:: 1 -5 boom%2:39:00:: 1 -5 body%1:14:02:: 6 -5 board%2:38:00:: 1 -5 blurred%5:00:00:indistinct:00 1 -5 bluff%1:17:00:: 1 -5 blow%2:43:00:: 2 -5 blind%1:14:00:: 1 -5 blaze%2:43:01:: 1 -5 birdie%2:35:00:: 1 -5 bicycle%1:06:00:: 1 -5 beset%2:37:00:: 1 -5 bend%2:35:00:: 3 -5 beg%2:32:01:: 2 -5 become%2:42:00:: 3 -5 bear%2:40:02:: 6 -5 beam%2:29:00:: 1 -5 bayonet%1:06:00:: 1 -5 battlefield%1:15:00:: 1 -5 bathe%2:29:00:: 1 -5 bath%1:06:02:: 1 -5 bat%1:06:01:: 1 -5 basic%5:00:00:essential:00 3 -5 barrel%1:06:00:: 2 -5 barge%1:06:00:: 1 -5 barbell%1:06:00:: 1 -5 bar%2:35:00:: 2 -5 bandaged%5:00:00:treated:02 1 -5 ball%1:06:03:: 2 -5 background%1:09:01:: 3 -5 background%1:09:00:: 2 -5 awfully%4:02:00:: 1 -5 award%1:21:00:: 3 -5 avert%2:41:00:: 1 -5 automatic%5:00:00:mechanical:00 2 -5 authorization%1:10:00:: 1 -5 authority%1:18:01:: 2 -5 atmosphere%1:26:00:: 4 -5 at_hand%5:00:02:close:01 1 -5 assent%1:10:00:: 1 -5 aside%4:02:01:: 2 -5 asia%1:17:00:: 1 -5 ashamed%3:00:00:: 1 -5 as_many%5:00:00:equal:00 1 -5 arts%1:09:00:: 1 -5 artery%1:08:00:: 1 -5 arrest%1:04:00:: 1 -5 area%1:07:00:: 6 -5 archbishop%1:18:00:: 1 -5 approximate%2:42:00:: 1 -5 apprehension%1:12:00:: 1 -5 appreciate%2:40:00:: 3 -5 applaud%2:32:01:: 1 -5 appetite%1:12:00:: 1 -5 apparent%5:00:00:visible:00 3 -5 anticipated%5:00:00:expected:00 1 -5 anticipate%2:41:00:: 2 -5 anti-semite%1:18:00:: 1 -5 answer%2:31:03:: 4 -5 annoy%2:37:00:: 1 -5 anniversary%1:28:00:: 1 -5 anemia%1:26:00:: 1 -5 and_others%4:02:00:: 1 -5 ancient%5:00:01:old:01 3 -5 ancient%5:00:00:past:00 1 -5 ancient%5:00:00:old:02 2 -5 ancestral%5:00:00:inheritable:00 1 -5 analytical_cubism%1:14:00:: 1 -5 analysis%1:09:00:: 2 -5 analogy%1:07:00:: 1 -5 ambush%1:04:00:: 1 -5 ambitious%3:00:00:: 1 -5 amazing%5:00:00:surprising:00 1 -5 amazing%5:00:00:impressive:00 2 -5 alveolus%1:08:00:: 1 -5 aluminum%1:27:00:: 1 -5 altercation%1:10:00:: 1 -5 allege%2:32:00:: 1 -5 all_the_way%4:02:03:: 2 -5 all_along%4:02:00:: 1 -5 alarm%1:12:00:: 1 -5 airplane%1:06:00:: 1 -5 air%3:00:00:: 1 -5 aim%2:32:09:: 3 -5 ahead%4:02:06:: 2 -5 ahead%4:02:02:: 3 -5 agony%1:12:00:: 1 -5 agent%1:27:00:: 3 -5 after%4:02:01:: 1 -5 african%3:01:00:: 1 -5 affected%3:00:00:: 1 -5 affair%1:26:00:: 2 -5 aeration%1:22:00:: 1 -5 aegean%3:01:01:: 1 -5 advanced%5:00:00:precocious:00 1 -5 advance%2:30:08:: 3 -5 adult%1:18:00:: 1 -5 adult%1:05:00:: 2 -5 administrator%1:18:00:: 1 -5 adjustment%1:11:00:: 1 -5 adjunct%1:17:00:: 1 -5 adhere%2:42:00:: 1 -5 adequately%4:02:00:: 1 -5 address%2:32:02:: 2 -5 address%1:15:00:: 2 -5 additive%1:06:00:: 1 -5 addition%1:06:00:: 1 -5 addition%1:04:02:: 2 -5 active%3:00:03:: 3 -5 acting%1:04:00:: 1 -5 act_on%2:41:00:: 1 -5 acquire%2:30:00:: 2 -5 acknowledge%2:32:00:: 2 -5 account_for%2:42:01:: 3 -5 account%1:26:00:: 3 -5 accord%2:40:00:: 2 -5 accommodate%2:42:00:: 1 -5 accommodate%2:30:00:: 2 -5 accident%1:11:00:: 2 -5 accent%1:10:01:: 1 -5 academy%1:14:00:: 1 -5 abstraction%1:09:00:: 1 -5 abstract%3:00:00:: 1 -5 abstract%2:31:00:: 1 -5 absorb%2:31:00:: 2 -5 above_all%4:02:00:: 1 -5 about%4:02:01:: 3 -5 abandon%2:31:01:: 4 -5 a_million%5:00:00:cardinal:00 1 -5 50%1:23:00:: 1 -5 5%1:23:00:: 1 -5 100%1:23:00:: 1 -4 youngster%1:18:00:: 1 -4 young_woman%1:18:00:: 1 -4 young_girl%1:18:00:: 1 -4 yield%2:36:00:: 3 -4 yield%1:04:00:: 1 -4 yell%1:10:01:: 2 -4 yearn%2:37:00:: 1 -4 xylem%1:20:00:: 1 -4 written_language%1:10:00:: 1 -4 writing%1:10:02:: 3 -4 write_of%2:36:00:: 1 -4 write_down%2:32:01:: 1 -4 write_about%2:36:00:: 1 -4 write%2:32:03:: 8 -4 wrinkled%5:00:00:furrowed:00 1 -4 wrinkle%1:25:00:: 1 -4 wrap%2:35:02:: 2 -4 worth%1:07:00:: 2 -4 worse%4:02:00:: 1 -4 worker%1:18:01:: 2 -4 worker%1:05:01:: 3 -4 workable%5:00:00:possible:00 1 -4 work_up%2:30:00:: 1 -4 work%2:41:04:: 9 -4 work%2:30:00:: 10 -4 wondrously%4:02:00:: 1 -4 wonder%1:11:00:: 2 -4 wonder%1:09:00:: 3 -4 withdraw%2:41:01:: 2 -4 withdraw%2:35:00:: 3 -4 wiry%5:00:00:thin:03 1 -4 wind_up%2:30:02:: 2 -4 wildly%4:02:02:: 2 -4 width%1:07:00:: 1 -4 widow%1:18:00:: 1 -4 wide%5:00:00:open:08 3 -4 wide%4:02:01:: 1 -4 whole_thing%1:06:00:: 1 -4 whole%1:06:00:: 2 -4 white_man%1:18:00:: 1 -4 whip%2:33:00:: 2 -4 wet%2:30:00:: 1 -4 well_known%5:00:00:known:00 1 -4 well%4:02:08:: 5 -4 well%4:02:07:: 6 -4 well%3:00:01:: 1 -4 welcome%3:00:00:: 1 -4 welcome%2:32:00:: 2 -4 weight%1:07:01:: 3 -4 weigh%2:32:00:: 2 -4 wearily%4:02:00:: 1 -4 weapons_system%1:06:00:: 1 -4 weapon_system%1:06:00:: 1 -4 wave%2:38:00:: 3 -4 watercolorist%1:18:00:: 1 -4 waste%1:04:00:: 2 -4 warmth%1:09:00:: 1 -4 walk%1:04:01:: 2 -4 walk%1:04:00:: 1 -4 wakefulness%1:09:00:: 1 -4 wake%1:19:00:: 1 -4 waiter%1:18:00:: 1 -4 waist%1:08:00:: 1 -4 wade%2:38:00:: 1 -4 vulture%1:05:00:: 1 -4 vow%2:32:00:: 1 -4 volunteer%2:32:00:: 1 -4 volume%1:10:00:: 4 -4 voice%2:32:00:: 1 -4 voice%1:04:00:: 5 -4 vocational_school%1:14:00:: 1 -4 vividly%4:02:00:: 1 -4 vivid%5:00:00:clear:00 2 -4 visualize%2:36:00:: 1 -4 visit%1:04:01:: 3 -4 visible_light%1:19:00:: 1 -4 virus%1:05:00:: 1 -4 virtually%4:02:02:: 3 -4 virtually%4:02:01:: 2 -4 view%1:10:00:: 6 -4 view%1:09:00:: 7 -4 vie%2:33:00:: 1 -4 victim%1:18:01:: 2 -4 vicious%5:00:00:inhumane:00 1 -4 vicinity%1:15:00:: 1 -4 very%5:00:00:actual:00 3 -4 veranda%1:06:00:: 1 -4 venture%2:32:00:: 2 -4 vending_machine%1:06:00:: 1 -4 vaudeville%1:10:00:: 1 -4 variable%1:17:00:: 1 -4 vanity%1:12:00:: 1 -4 value-system%1:09:00:: 1 -4 validity%1:07:01:: 1 -4 utopian%1:18:00:: 1 -4 used%3:00:00:: 1 -4 upset%2:30:00:: 1 -4 uproar%1:26:00:: 1 -4 uphold%2:32:02:: 3 -4 up_here%4:02:00:: 1 -4 unstressed%3:00:00:: 1 -4 unpopular%3:00:00:: 1 -4 unpaired%5:00:00:mismatched:00 1 -4 unnatural%3:00:00:: 1 -4 unlock%2:35:00:: 1 -4 united_states_of_america%1:15:00:: 1 -4 united_nations%1:14:00:: 1 -4 uniquely%4:02:00:: 1 -4 union%5:00:00:northern:02 1 -4 uniform%3:00:00:: 1 -4 ungainly%5:00:00:awkward:00 1 -4 unfamiliar%3:00:00:: 1 -4 uneven%3:00:00:: 1 -4 understand%2:31:02:: 4 -4 under_fire%5:00:00:vulnerable:00 1 -4 undepicted%5:00:00:undelineated:00 1 -4 uncover%2:39:00:: 1 -4 uncommon%3:00:00:: 1 -4 uncharged%3:00:00:: 1 -4 uncertainty%1:09:00:: 2 -4 unavailable%3:00:00:: 1 -4 ultracentrifugation%1:22:00:: 1 -4 ulcer%1:26:00:: 1 -4 twitch%2:29:00:: 1 -4 twice%4:02:01:: 2 -4 turn_upon%2:30:00:: 1 -4 turn_back%2:30:00:: 2 -4 turn_away%2:38:00:: 2 -4 turn%1:04:06:: 3 -4 tubing%1:06:00:: 1 -4 tuberculosis%1:26:00:: 1 -4 try%2:41:06:: 3 -4 trust%2:31:02:: 3 -4 trust%1:21:03:: 1 -4 trousers%1:06:00:: 1 -4 trough%1:17:00:: 1 -4 trivial%5:00:00:unimportant:00 1 -4 triumphantly%4:02:00:: 1 -4 trigger%2:36:00:: 1 -4 triamcinolone%1:27:00:: 1 -4 tri-iodothyronine%1:27:00:: 1 -4 tremble%2:38:00:: 2 -4 treatment%1:07:00:: 3 -4 treason%1:04:00:: 1 -4 traverse%2:38:00:: 1 -4 trap%1:06:00:: 1 -4 transverse%5:00:00:crosswise:00 1 -4 transport%2:38:00:: 1 -4 transpiring%3:44:00:: 1 -4 transmit%2:40:10:: 1 -4 transmission%1:04:01:: 1 -4 translation%1:10:00:: 1 -4 translate%2:31:00:: 3 -4 traitor%1:18:00:: 1 -4 trail%1:06:00:: 2 -4 toy%1:06:00:: 1 -4 town_meeting%1:14:00:: 1 -4 town%1:15:01:: 3 -4 tower%1:06:00:: 1 -4 touchdown%1:04:00:: 1 -4 touch_on%2:32:01:: 1 -4 touch%2:37:00:: 3 -4 totter%2:38:02:: 1 -4 toss%2:38:01:: 4 -4 topple%2:38:00:: 1 -4 top%5:00:00:maximal:00 3 -4 tongue%1:10:00:: 2 -4 tone_system%1:10:00:: 1 -4 tobacco%1:06:00:: 1 -4 toad%1:05:00:: 1 -4 to_it%4:02:00:: 1 -4 tissue%1:27:02:: 2 -4 time_period%1:28:00:: 1 -4 time_off%1:28:00:: 1 -4 time%2:30:00:: 1 -4 tie%2:30:01:: 3 -4 tie%1:26:01:: 2 -4 thyroid_hormone%1:08:00:: 1 -4 thrust%2:38:01:: 3 -4 throw%2:36:02:: 7 -4 throw%1:04:00:: 1 -4 through%5:00:00:finished:01 1 -4 throttle%1:06:00:: 1 -4 threat%1:10:01:: 3 -4 threat%1:10:00:: 2 -4 thread%1:06:00:: 1 -4 thorough%5:00:00:careful:00 1 -4 third%1:04:00:: 2 -4 think%2:36:00:: 5 -4 thing%1:09:01:: 10 -4 thieving%5:00:00:dishonest:00 1 -4 thickness%1:07:01:: 1 -4 therapeutic%3:01:00:: 2 -4 then_again%4:02:00:: 1 -4 the_like%1:09:00:: 1 -4 the_french%1:18:00:: 1 -4 that_much%4:02:00:: 1 -4 that_is_to_say%4:02:00:: 1 -4 testing%1:04:03:: 2 -4 testimony%1:10:01:: 2 -4 test%5:00:00:empirical:00 1 -4 test%2:32:00:: 3 -4 test%1:09:01:: 3 -4 territory%1:21:01:: 2 -4 terrified%5:00:00:afraid(p):00 1 -4 tenth%5:00:00:ordinal:00 1 -4 tension%1:26:01:: 2 -4 tenement%1:06:00:: 1 -4 tend%2:42:00:: 2 -4 tenant%1:18:00:: 1 -4 tempt%2:32:04:: 2 -4 tempt%2:32:01:: 1 -4 tell%2:32:03:: 7 -4 teenage%5:00:00:young:00 1 -4 technique%1:09:01:: 2 -4 teaching_method%1:09:00:: 1 -4 taut%5:00:00:tense:01 1 -4 target%1:18:00:: 2 -4 target%1:15:00:: 3 -4 tally%1:04:01:: 1 -4 talk%2:32:02:: 4 -4 talent%1:18:00:: 2 -4 take_up%2:41:01:: 3 -4 take_to%2:37:00:: 1 -4 take_root%2:30:01:: 1 -4 take_out%2:30:00:: 3 -4 take_off%2:38:02:: 4 -4 take_charge%2:41:00:: 1 -4 take_away%2:30:00:: 3 -4 take%2:38:05:: 27 -4 take%2:33:09:: 28 -4 take%2:30:09:: 29 -4 tag%1:10:00:: 1 -4 tactic%1:09:00:: 1 -4 tabulate%2:36:00:: 1 -4 systematize%2:30:00:: 1 -4 symphony%1:10:00:: 1 -4 sympathy%1:24:00:: 3 -4 switch%1:06:01:: 1 -4 swirling%5:00:00:moving:02 1 -4 swing%2:41:01:: 4 -4 swing%2:35:00:: 5 -4 swerve%2:38:00:: 1 -4 swell%2:41:00:: 2 -4 swell%2:30:00:: 3 -4 sweet%5:00:00:lovable:00 2 -4 sweaty%5:00:00:wet:01 1 -4 sway%2:38:01:: 2 -4 swamp%1:17:00:: 1 -4 swallow%2:33:00:: 2 -4 suspend%2:30:01:: 2 -4 survey%1:10:00:: 2 -4 surge%1:11:00:: 1 -4 surface_tension%1:19:00:: 1 -4 surface%1:09:00:: 4 -4 sure%3:00:04:: 3 -4 supremacy%1:26:00:: 1 -4 suppress%2:30:00:: 1 -4 supposedly%4:02:00:: 1 -4 supposed%5:00:00:obligated(p):00 6 -4 support%1:09:00:: 3 -4 support%1:04:03:: 4 -4 supply%1:22:00:: 2 -4 supplement%1:10:00:: 1 -4 supplement%1:07:00:: 2 -4 supplement%1:06:00:: 3 -4 supersede%2:41:00:: 1 -4 superior%3:00:01:: 2 -4 superintendent%1:18:00:: 1 -4 superimpose%2:35:00:: 1 -4 superficial%3:00:00:: 1 -4 sundry%5:00:00:heterogeneous:00 1 -4 sum%1:09:01:: 2 -4 suggested%5:00:00:advisable:00 1 -4 suffer%2:29:00:: 6 -4 suck%2:34:04:: 1 -4 succumb%2:32:00:: 1 -4 successor%1:18:01:: 1 -4 subtle%5:00:00:delicate:00 2 -4 subsystem%1:14:00:: 1 -4 subside%2:30:00:: 1 -4 subsequently%4:02:00:: 1 -4 submit%2:40:00:: 4 -4 submissive%3:00:00:: 1 -4 sublime%5:00:00:glorious:00 1 -4 subject%1:10:01:: 5 -4 stuff%2:38:00:: 2 -4 strychnine%1:27:00:: 1 -4 stroll%2:38:01:: 1 -4 stroke%2:35:00:: 1 -4 strip%1:06:02:: 3 -4 strike_up%2:36:01:: 1 -4 strike%2:35:02:: 6 -4 strewn%5:00:00:covered:00 1 -4 strew%2:35:00:: 1 -4 stretch%2:38:00:: 3 -4 stretch%2:30:00:: 4 -4 stress%2:32:01:: 2 -4 strength%1:07:06:: 3 -4 stream%2:38:01:: 1 -4 stream%1:14:00:: 2 -4 strangle%2:35:00:: 1 -4 straighten_up%2:38:01:: 1 -4 straddle%2:42:01:: 1 -4 stoutly%4:02:00:: 1 -4 stop%2:30:05:: 6 -4 stolidly%4:02:00:: 1 -4 stocking%1:06:00:: 1 -4 stir%2:39:00:: 3 -4 stir%2:37:01:: 4 -4 stipulate%2:32:00:: 1 -4 stiffened%5:00:00:inflexible:01 1 -4 stiff%5:00:02:inflexible:01 1 -4 sticky%5:00:00:adhesive:00 1 -4 stick_to%2:35:03:: 2 -4 steroid%1:27:00:: 1 -4 stepmother%1:18:00:: 1 -4 steer%2:38:00:: 1 -4 steal%2:38:00:: 2 -4 statutory%3:01:00:: 1 -4 station%2:33:00:: 1 -4 statesman%1:18:00:: 1 -4 state_department%1:14:00:: 1 -4 starve%2:34:00:: 1 -4 stare%2:29:00:: 2 -4 stand_out%2:42:02:: 1 -4 stand_out%2:42:00:: 2 -4 stand_by%2:42:00:: 1 -4 stand%1:06:00:: 1 -4 stalk%2:38:00:: 1 -4 staff%2:33:00:: 1 -4 squeeze%2:35:03:: 3 -4 square%2:30:00:: 1 -4 squad%1:14:00:: 2 -4 sprout%2:30:00:: 1 -4 springtime%1:28:00:: 1 -4 spring%1:06:00:: 2 -4 spree%1:04:00:: 1 -4 spread%5:00:00:distributed:00 1 -4 spread%2:32:02:: 6 -4 sponsor%1:18:00:: 1 -4 split%2:41:03:: 1 -4 spire%1:06:00:: 1 -4 spell%1:26:00:: 1 -4 speed%1:04:00:: 3 -4 speech%1:10:06:: 3 -4 speculate%2:32:00:: 2 -4 spectral%3:01:00:: 1 -4 spectacular%5:00:00:impressive:00 1 -4 specify%2:32:02:: 2 -4 spark%1:11:01:: 1 -4 spark%1:07:00:: 2 -4 spare_time%1:28:00:: 1 -4 space%1:15:01:: 5 -4 sovereign%5:00:00:free:00 1 -4 sophomore%1:18:00:: 1 -4 somersault%1:04:00:: 1 -4 somatic%5:00:00:physical:00 1 -4 solid%5:00:00:unbroken:02 5 -4 solid%5:00:00:homogeneous:00 4 -4 solicit%2:32:00:: 1 -4 solemnly%4:02:00:: 1 -4 solar_system%1:17:00:: 1 -4 solar%3:01:00:: 1 -4 soften%2:39:00:: 1 -4 soft%3:00:04:: 3 -4 sod%1:17:00:: 1 -4 soar%2:38:01:: 1 -4 soak%2:35:01:: 1 -4 snore%2:29:00:: 1 -4 smoke%1:22:00:: 2 -4 small_town%1:14:00:: 1 -4 slump%2:38:01:: 1 -4 slug%1:06:00:: 1 -4 sludge%1:27:01:: 1 -4 slope%1:07:00:: 2 -4 slip%2:30:00:: 4 -4 slip%1:04:02:: 1 -4 slim%5:00:00:thin:03 1 -4 slacks%1:06:00:: 1 -4 slacken%2:30:02:: 1 -4 skirt%1:06:01:: 1 -4 sketch%2:36:00:: 1 -4 sinner%1:18:00:: 1 -4 sink%2:38:07:: 3 -4 sink%1:06:00:: 1 -4 simultaneous%5:00:00:synchronous:00 1 -4 simplicity%1:07:02:: 1 -4 simple%5:00:02:plain:01 3 -4 silver%5:00:00:metallic:00 1 -4 silver%5:00:00:bright:00 2 -4 silently%4:02:00:: 1 -4 silence%2:30:00:: 1 -4 signal%2:32:00:: 1 -4 sign%1:10:03:: 3 -4 sight%2:39:00:: 1 -4 sickness%1:26:00:: 1 -4 shy_away_from%2:32:00:: 1 -4 shun%2:32:00:: 1 -4 shuffle%2:38:00:: 1 -4 shriek%2:32:00:: 1 -4 shriek%1:10:00:: 1 -4 shower%1:04:00:: 2 -4 show_up%2:39:00:: 2 -4 show_off%2:39:00:: 1 -4 shortstop%1:18:00:: 1 -4 shortsighted%5:00:00:improvident:00 1 -4 shortage%1:07:00:: 1 -4 shooting%1:04:01:: 2 -4 shock%2:37:01:: 1 -4 shiver%2:29:00:: 2 -4 shipping%1:04:00:: 1 -4 share%2:40:00:: 4 -4 shaped%5:00:00:formed:00 1 -4 shaking%5:00:00:unsteady:00 1 -4 shaded%3:00:01:: 1 -4 shabby%5:00:00:worn:00 1 -4 sexually%4:02:01:: 1 -4 sewer%1:06:00:: 1 -4 seventh%5:00:00:ordinal:00 1 -4 settle_down%2:38:00:: 1 -4 settle_down%2:30:00:: 2 -4 settle%2:38:07:: 6 -4 set_up%5:00:00:established:00 1 -4 set_up%2:35:00:: 5 -4 set_off%2:36:00:: 1 -4 set_in_motion%2:35:05:: 1 -4 set%5:00:00:ready:00 1 -4 session%1:04:00:: 3 -4 service%1:14:05:: 4 -4 sermon%1:10:00:: 1 -4 serious%5:00:00:critical:03 3 -4 separately%4:02:02:: 1 -4 separate%5:00:01:individual:00 2 -4 sensory%5:00:00:afferent:00 1 -4 sensitivity%1:07:00:: 2 -4 sensibility%1:09:00:: 1 -4 sending%1:04:00:: 1 -4 send_for%2:32:00:: 1 -4 senate%1:14:01:: 2 -4 semi%5:00:00:fractional:00 1 -4 sell%2:40:01:: 4 -4 self-sustaining%5:00:00:independent:00 1 -4 self-satisfaction%1:12:00:: 1 -4 seize%2:40:01:: 3 -4 segment%1:06:00:: 1 -4 seep%2:38:00:: 1 -4 see_to_it%2:31:00:: 1 -4 see%2:35:09:: 15 -4 secure%2:35:01:: 2 -4 sector%1:14:00:: 2 -4 seat%1:08:00:: 2 -4 scrub%2:35:00:: 1 -4 screen%1:06:06:: 1 -4 scrape%2:35:00:: 1 -4 scramble%2:38:01:: 2 -4 score%1:23:00:: 3 -4 score%1:14:00:: 4 -4 scoff%2:32:00:: 1 -4 school_superintendent%1:18:00:: 1 -4 school%1:14:02:: 4 -4 scholarship%1:09:00:: 2 -4 schizophrenic%5:00:01:insane:00 1 -4 scatter%2:38:00:: 2 -4 scare%2:37:00:: 1 -4 scar%1:07:00:: 2 -4 say%2:32:02:: 6 -4 savor%2:37:00:: 1 -4 save%2:41:00:: 3 -4 save%2:40:02:: 4 -4 save%2:40:01:: 5 -4 save%2:30:00:: 6 -4 savannah%1:15:00:: 1 -4 satisfying%5:00:00:rewarding:00 1 -4 satisfaction%1:26:00:: 2 -4 satellite%1:06:00:: 1 -4 sarcastic%3:00:00:: 1 -4 sampling%1:04:00:: 1 -4 same%4:02:00:: 1 -4 saline%5:00:00:salt:00 1 -4 sales_force%1:14:00:: 1 -4 safety%1:15:00:: 2 -4 sacred%3:00:00:: 1 -4 rustling%1:04:00:: 1 -4 russian%1:10:00:: 2 -4 run_through%2:34:01:: 1 -4 run%2:38:11:: 11 -4 rumble%1:11:00:: 1 -4 ruling%1:04:00:: 1 -4 ruler%1:18:00:: 1 -4 ruin%2:35:00:: 1 -4 rug%1:06:00:: 1 -4 rubber%1:27:00:: 1 -4 royal%3:01:00:: 1 -4 row%2:38:00:: 1 -4 round_up%2:35:00:: 1 -4 rome%1:15:00:: 1 -4 romance%1:26:00:: 1 -4 roman_catholic%1:14:00:: 2 -4 rolling%5:00:00:reverberant:00 1 -4 roast%2:30:00:: 1 -4 rival%5:00:00:competitive:00 1 -4 rival%2:42:00:: 1 -4 ritual%1:04:01:: 2 -4 risk%1:26:00:: 1 -4 rise_up%2:38:00:: 1 -4 rise%2:42:01:: 6 -4 rise%2:38:06:: 7 -4 rise%2:30:03:: 8 -4 rise%2:30:02:: 9 -4 rise%2:29:08:: 10 -4 ripple%1:11:00:: 1 -4 ring_out%2:39:00:: 1 -4 ring%1:07:00:: 1 -4 rightly%4:02:00:: 1 -4 right%4:02:03:: 4 -4 right%1:14:00:: 4 -4 ridiculous%5:00:00:undignified:00 1 -4 richmond%1:15:00:: 1 -4 rice%1:20:00:: 2 -4 rib%1:06:00:: 1 -4 rhode_islander%1:18:00:: 1 -4 rh_antibody%1:27:00:: 1 -4 reward%1:11:00:: 1 -4 revolver%1:06:00:: 1 -4 revolt%1:04:00:: 1 -4 review%1:09:00:: 1 -4 revelation%1:10:02:: 1 -4 revelation%1:09:00:: 2 -4 retort%2:32:00:: 1 -4 retailing%1:04:00:: 1 -4 resume%2:41:00:: 3 -4 resume%1:10:00:: 1 -4 restrict%2:30:00:: 3 -4 restore%2:30:00:: 2 -4 restatement%1:10:00:: 1 -4 rest%2:42:00:: 4 -4 rest%2:29:00:: 5 -4 response%1:10:02:: 4 -4 respective%5:00:00:individual:00 1 -4 respect%2:41:00:: 2 -4 resistance%1:19:00:: 2 -4 resentful%3:00:00:: 1 -4 request%1:10:00:: 2 -4 reputation%1:26:01:: 2 -4 reputable%3:00:00:: 1 -4 representative%1:18:02:: 2 -4 representative%1:18:01:: 3 -4 replacement%1:04:00:: 1 -4 repetition%1:04:00:: 2 -4 render%2:36:03:: 3 -4 remove%2:41:00:: 2 -4 remove%2:40:00:: 3 -4 remote%5:00:00:unlikely:00 2 -4 relieve%2:41:01:: 2 -4 relegate%2:41:02:: 1 -4 release%2:35:01:: 3 -4 related%3:00:01:: 2 -4 relate%2:42:01:: 4 -4 rejoice%2:37:00:: 1 -4 reinforcement%1:04:01:: 1 -4 regulate%2:41:01:: 2 -4 register%2:41:01:: 3 -4 regional%5:00:00:territorial:00 2 -4 regard%1:09:00:: 1 -4 refusal%1:10:01:: 1 -4 reflection%1:19:00:: 2 -4 reflection%1:10:01:: 3 -4 reference%1:10:01:: 5 -4 refer%2:32:12:: 5 -4 recreate%2:29:02:: 1 -4 recover%2:29:00:: 2 -4 record%2:32:03:: 3 -4 recollection%1:09:00:: 1 -4 recollect%2:31:00:: 1 -4 reception%1:10:01:: 1 -4 recent%5:00:00:modern:00 3 -4 receiver%1:06:00:: 1 -4 recede%2:38:01:: 1 -4 recall%2:32:00:: 2 -4 reassurance%1:04:00:: 1 -4 rearward%4:02:00:: 1 -4 rearrange%2:30:00:: 1 -4 rear%1:15:01:: 3 -4 reality%1:26:02:: 3 -4 real%5:00:00:serious:00 4 -4 ready%5:00:01:available:00 2 -4 reading%1:10:01:: 2 -4 read%2:31:05:: 7 -4 reach_out%2:35:00:: 1 -4 rattle%2:39:00:: 1 -4 rational%3:00:00:: 1 -4 rape%2:41:00:: 1 -4 ranch%1:06:00:: 1 -4 ramrod%1:06:00:: 1 -4 raised%3:00:00:: 1 -4 raise%2:38:02:: 8 -4 rage%2:42:01:: 1 -4 rage%2:42:00:: 2 -4 rage%1:26:00:: 2 -4 radius%1:07:00:: 1 -4 radical%5:00:00:new:00 2 -4 radical%1:27:00:: 1 -4 race%1:14:00:: 3 -4 questionnaire%1:10:00:: 1 -4 queen%1:18:00:: 2 -4 quasi%5:00:00:similar:00 1 -4 quarter%1:15:00:: 2 -4 quantum%1:03:00:: 1 -4 quack%5:00:00:unqualified:01 1 -4 puzzled%5:00:00:perplexed:00 1 -4 put_up%2:35:00:: 1 -4 put_together%2:36:00:: 1 -4 pussy%1:08:00:: 1 -4 push%1:04:00:: 1 -4 pursuit%1:04:00:: 1 -4 pursue%2:41:01:: 4 -4 pump%2:35:00:: 1 -4 pump%1:06:00:: 1 -4 pull_out%2:38:03:: 2 -4 pull_out%2:38:00:: 1 -4 pull_in%2:35:00:: 1 -4 publisher%1:14:00:: 1 -4 publicity%1:10:00:: 1 -4 public_school%1:14:00:: 1 -4 public_relations%1:10:00:: 1 -4 public%1:14:01:: 2 -4 psychical%5:00:00:mental:00 1 -4 psychiatrist%1:18:00:: 1 -4 psithyrus%1:05:00:: 1 -4 provision%1:04:01:: 2 -4 province%1:15:00:: 1 -4 prove%2:31:02:: 4 -4 proudly%4:02:00:: 1 -4 protest%1:04:00:: 2 -4 prosecutor%1:18:00:: 1 -4 proportionately%4:02:00:: 1 -4 property%1:15:00:: 3 -4 proper%5:00:00:real(a):02 4 -4 propel%2:35:00:: 1 -4 propagandistic%3:01:00:: 1 -4 propaganda%1:10:00:: 1 -4 pronounced%5:00:00:noticeable:00 1 -4 prone%5:00:00:inclined(p):02 2 -4 promptly%4:02:02:: 1 -4 promotion%1:10:00:: 1 -4 program%2:32:00:: 1 -4 profitable%3:00:00:: 1 -4 professional%3:01:00:: 4 -4 profess%2:32:00:: 1 -4 prodigious%5:00:00:large:00 1 -4 procedural%3:01:00:: 1 -4 privileged%3:00:00:: 1 -4 printed%5:00:00:written:00 1 -4 price%2:40:00:: 1 -4 pressure%1:04:00:: 3 -4 preside%2:41:01:: 1 -4 presentation%1:04:00:: 2 -4 present%1:21:00:: 2 -4 preferably%4:02:00:: 1 -4 predecessor%1:18:00:: 1 -4 precisely%4:02:01:: 2 -4 precipitate%2:36:00:: 1 -4 precipitate%2:30:00:: 2 -4 precarious%5:00:00:uneasy:00 1 -4 preach%2:32:00:: 2 -4 prayer%1:10:02:: 2 -4 pour%2:38:02:: 4 -4 positivist%3:01:00:: 1 -4 pose%2:39:00:: 2 -4 portrait%1:06:01:: 1 -4 portion%1:06:00:: 2 -4 portion%1:04:00:: 3 -4 pork%1:13:00:: 1 -4 population_shift%1:11:00:: 1 -4 population%1:14:01:: 2 -4 pop_up%2:39:00:: 1 -4 pool%2:40:00:: 1 -4 poll%1:09:00:: 1 -4 politics%1:09:00:: 2 -4 politician%1:18:00:: 2 -4 politely%4:02:00:: 1 -4 police_chief%1:18:00:: 1 -4 police%2:41:00:: 1 -4 pole%1:18:00:: 2 -4 poison%1:27:00:: 1 -4 poised%5:00:00:balanced:00 1 -4 pm%1:28:00:: 1 -4 plunge%2:38:05:: 3 -4 plunge%2:38:01:: 2 -4 plunge%2:30:10:: 4 -4 plumpness%1:07:00:: 1 -4 pleasure%1:09:00:: 2 -4 plead%2:32:02:: 2 -4 plead%2:32:01:: 3 -4 playwright%1:18:00:: 1 -4 play%2:41:00:: 11 -4 play%2:36:06:: 12 -4 plate%1:06:02:: 2 -4 plantation%1:21:00:: 1 -4 planning%1:04:02:: 2 -4 planner%1:18:00:: 1 -4 place%2:40:00:: 4 -4 place%2:32:01:: 5 -4 place%1:04:00:: 8 -4 pity%2:37:00:: 1 -4 pipe%1:06:00:: 2 -4 pine%1:20:00:: 1 -4 pile_up%2:30:00:: 1 -4 piece%1:11:00:: 5 -4 picture%2:36:00:: 2 -4 pick_up%2:31:00:: 5 -4 pick_out%2:31:00:: 1 -4 pick%2:35:01:: 2 -4 phonemic_system%1:10:00:: 1 -4 phonemic%3:01:00:: 1 -4 personally%4:02:00:: 2 -4 permanently%4:02:00:: 1 -4 periphery%1:25:00:: 1 -4 periodical%1:10:00:: 1 -4 perilous%5:00:00:dangerous:00 1 -4 perfect%2:30:00:: 1 -4 perception%1:09:02:: 2 -4 perception%1:09:00:: 3 -4 pension%1:21:00:: 1 -4 pennant%1:10:01:: 1 -4 peer%1:18:00:: 1 -4 peculiarly%4:02:01:: 1 -4 pecs%1:08:00:: 1 -4 pay_off%2:40:02:: 1 -4 pay%2:31:00:: 6 -4 pattern%2:36:00:: 1 -4 patronne%1:18:00:: 1 -4 patron%1:18:00:: 1 -4 patriotic%3:00:00:: 1 -4 pasture%1:15:00:: 1 -4 pasted%5:00:00:affixed:00 1 -4 past%5:00:00:outgoing:00 2 -4 passion%1:12:00:: 1 -4 passenger%1:18:00:: 1 -4 passage%1:06:00:: 3 -4 pass_on%2:40:01:: 1 -4 pass%2:41:04:: 9 -4 part%2:38:02:: 1 -4 parenchyma%1:08:01:: 1 -4 parasite%1:05:00:: 1 -4 paradigm%1:24:00:: 1 -4 parade_ground%1:15:00:: 1 -4 paper%1:10:00:: 4 -4 pants%1:06:00:: 1 -4 palm%1:08:00:: 1 -4 palestine%1:15:01:: 1 -4 painting%1:04:02:: 3 -4 pains%1:04:00:: 1 -4 pace%1:07:01:: 3 -4 oyabun%1:18:00:: 1 -4 ownership%1:21:00:: 1 -4 overthrow%2:41:00:: 1 -4 overpayment%1:21:00:: 1 -4 overhead%3:00:00:: 1 -4 overall%1:06:00:: 1 -4 oval%5:00:00:rounded:00 1 -4 outside%5:00:00:external:00 3 -4 outset%1:28:00:: 1 -4 outfielder%1:18:00:: 1 -4 outdistance%2:38:00:: 1 -4 out_of_sight%5:00:00:invisible:00 1 -4 oust%2:41:00:: 1 -4 ounce%1:23:02:: 1 -4 ornery%5:00:00:ill-natured:00 1 -4 originate%2:36:00:: 2 -4 oriented%3:00:00:: 1 -4 oriental%5:00:00:eastern:01 1 -4 organize%2:30:00:: 4 -4 organification%1:22:00:: 1 -4 ordinary%5:00:02:common:01 2 -4 orderly%3:00:00:: 1 -4 ordering%1:14:00:: 1 -4 ordered%5:00:00:organized:01 2 -4 ordered%3:00:00:: 1 -4 order%1:26:02:: 5 -4 orange%1:13:00:: 1 -4 opposition%1:24:02:: 2 -4 opposite%5:00:02:other:00 3 -4 opposite%3:00:00:: 2 -4 opposing%5:00:00:hostile:01 1 -4 oppose%2:42:00:: 3 -4 opinion%1:10:01:: 2 -4 operetta%1:10:00:: 1 -4 operational%5:00:00:serviceable:00 2 -4 operation%1:22:00:: 5 -4 operation%1:04:02:: 6 -4 open%5:00:00:available:00 6 -4 open%3:00:08:: 5 -4 open%2:35:08:: 5 -4 open%2:30:00:: 6 -4 only%4:02:06:: 5 -4 one_and_the_same%5:00:00:same:02 1 -4 one%5:00:00:united:00 3 -4 on_the_whole%4:02:00:: 1 -4 on_request%4:02:00:: 1 -4 on_paper%4:02:01:: 1 -4 on_hand%5:00:00:available:00 1 -4 olympic%3:01:00:: 1 -4 old_maid%1:18:00:: 1 -4 old%5:00:00:unoriginal:00 5 -4 oily%5:00:00:fatty:00 1 -4 officiate%2:41:01:: 1 -4 offer%2:31:00:: 4 -4 of_age%5:00:00:old:02 1 -4 occupational%3:01:00:: 1 -4 obstruction%1:06:00:: 1 -4 obstacle%1:06:00:: 2 -4 observe%2:41:01:: 5 -4 obscure%5:00:00:unclear:00 1 -4 numerical%5:00:00:quantitative:00 1 -4 nourish%2:34:00:: 1 -4 note%1:10:04:: 3 -4 north_america%1:17:00:: 1 -4 nonmetallic%3:00:00:: 1 -4 nonfiction%1:10:00:: 1 -4 nonetheless%4:02:00:: 1 -4 nominate%2:32:00:: 1 -4 noisy%3:00:00:: 1 -4 no%4:02:01:: 2 -4 ninety%5:00:00:cardinal:00 1 -4 nineteen%5:00:00:cardinal:00 1 -4 nightfall%1:28:00:: 1 -4 nickel%1:27:00:: 1 -4 newport%1:15:00:: 1 -4 newborn%5:00:00:young:00 1 -4 neutralism%1:10:00:: 1 -4 neutral%5:00:00:objective:00 2 -4 network%1:06:01:: 2 -4 net%1:06:01:: 1 -4 nest%2:42:00:: 1 -4 neo%5:00:00:modern:00 1 -4 neglect%2:41:00:: 2 -4 neglect%2:31:05:: 3 -4 need%2:42:02:: 5 -4 necessitate%2:42:01:: 2 -4 necessarily%4:02:03:: 2 -4 nearer%5:00:00:near:00 1 -4 naval_blockade%1:04:00:: 1 -4 natural_law%1:09:00:: 1 -4 natural%3:00:03:: 3 -4 napoleon%1:18:00:: 1 -4 name%2:41:00:: 4 -4 name%2:32:07:: 5 -4 mysterious%5:00:00:esoteric:00 2 -4 muster%2:35:02:: 1 -4 must%2:42:00:: 1 -4 musical_comedy%1:10:00:: 1 -4 movement%1:14:00:: 4 -4 movement%1:10:00:: 5 -4 movement%1:04:03:: 6 -4 move_in%2:38:02:: 1 -4 move_back%2:38:00:: 1 -4 mount%2:36:00:: 4 -4 mount%1:05:00:: 1 -4 moscow%1:15:00:: 1 -4 mortgage%1:21:00:: 1 -4 mortality%1:07:00:: 1 -4 morphophonemic%3:01:00:: 1 -4 monotonous%5:00:00:unmelodious:00 1 -4 monitoring%1:04:00:: 1 -4 molecular_weight%1:07:00:: 1 -4 mold%2:36:02:: 1 -4 modern_world%1:28:00:: 1 -4 model%1:06:00:: 4 -4 mock%2:32:00:: 1 -4 mixing%1:04:00:: 1 -4 mistress%1:18:01:: 1 -4 mistake%2:31:00:: 2 -4 missile%1:06:00:: 2 -4 miss%2:42:00:: 6 -4 miss%2:35:00:: 7 -4 miss%2:33:00:: 8 -4 misleading%5:00:00:dishonest:00 1 -4 misfortune%1:11:00:: 1 -4 mirror%2:43:00:: 1 -4 millennium%1:28:00:: 1 -4 mill%1:06:01:: 1 -4 migrate%2:38:00:: 1 -4 mighty%4:02:00:: 1 -4 midwestern%5:00:00:western:02 1 -4 middle-aged%5:00:00:old:02 1 -4 middle%5:00:01:central:01 2 -4 microsecond%1:28:00:: 1 -4 microscopic%3:01:00:: 1 -4 microphone%1:06:00:: 1 -4 micron%1:23:00:: 1 -4 mexican%3:01:00:: 1 -4 meticulously%4:02:00:: 1 -4 method%1:07:00:: 2 -4 merry%5:00:02:joyous:00 1 -4 mere%5:00:00:plain:01 2 -4 mercy%1:04:00:: 1 -4 merchandise%1:06:00:: 1 -4 mental_image%1:09:00:: 1 -4 mental%3:01:00:: 2 -4 menarche%1:11:00:: 1 -4 memphis%1:15:00:: 1 -4 melody%1:09:00:: 2 -4 melancholy%1:12:00:: 1 -4 meeting%1:14:01:: 2 -4 meet%1:11:00:: 1 -4 meek%5:00:00:humble:00 1 -4 medium%1:15:01:: 2 -4 meditate%2:31:00:: 1 -4 medical%3:00:00:: 2 -4 medal%1:10:00:: 1 -4 meat%1:13:01:: 1 -4 measurable%3:00:00:: 1 -4 meaningless%3:00:00:: 1 -4 meager%3:00:00:: 1 -4 mature%5:00:00:developed:00 2 -4 mature%3:00:02:: 1 -4 matter_to%2:42:00:: 1 -4 mathematics%1:09:00:: 1 -4 mate%1:18:02:: 1 -4 match%1:06:00:: 1 -4 mat%1:06:00:: 1 -4 mastery%1:09:00:: 1 -4 masterpiece%1:06:00:: 1 -4 master%2:31:01:: 1 -4 mass%1:14:01:: 6 -4 marvel%2:32:12:: 1 -4 marketable%5:00:01:salable:00 1 -4 market_value%1:21:00:: 1 -4 market_price%1:21:00:: 1 -4 market%1:06:00:: 3 -4 mark%1:10:02:: 2 -4 marginal%5:00:00:peripheral:00 1 -4 march%1:04:01:: 3 -4 manure%1:27:00:: 1 -4 manufacturer%1:18:00:: 2 -4 manpower%1:14:00:: 1 -4 maniac%1:18:00:: 1 -4 man%1:18:08:: 6 -4 male%1:18:00:: 2 -4 make_up%2:36:03:: 2 -4 make%2:41:03:: 20 -4 make%2:40:02:: 21 -4 make%2:38:00:: 22 -4 make%2:31:13:: 23 -4 major_league%1:14:00:: 1 -4 maintain%2:40:01:: 5 -4 mailbox%1:06:00:: 1 -4 magnify%2:30:00:: 1 -4 magnetic%3:01:00:: 1 -4 magic%1:09:00:: 1 -4 lyricist%1:18:00:: 1 -4 lunkhead%1:18:00:: 1 -4 lull%1:28:00:: 1 -4 lower-middle-class%5:00:00:middle-class:00 1 -4 low_temperature%1:07:00:: 1 -4 low%3:00:03:: 5 -4 lot%1:14:00:: 3 -4 loss%1:07:00:: 4 -4 lose%2:39:00:: 6 -4 lore%1:09:00:: 1 -4 loom%2:42:00:: 2 -4 look_to%2:31:01:: 2 -4 look_back%2:31:00:: 2 -4 longing%1:12:00:: 1 -4 long_island%1:15:00:: 1 -4 long-range%5:00:00:long:02 1 -4 long%2:37:01:: 2 -4 lonely%5:00:00:unaccompanied:00 1 -4 lonely%5:00:00:dejected:00 2 -4 loneliness%1:26:00:: 1 -4 locker%1:06:00:: 1 -4 lock%2:30:00:: 3 -4 locate%2:40:01:: 3 -4 locate%2:30:00:: 4 -4 loading%1:06:01:: 1 -4 litter%1:14:00:: 1 -4 listen%2:41:11:: 3 -4 liquid%1:27:00:: 3 -4 linguistic%3:01:00:: 1 -4 linear%3:00:02:: 1 -4 line%1:06:06:: 13 -4 line%1:06:03:: 14 -4 liking%1:12:00:: 1 -4 likely%3:00:04:: 2 -4 like_the_devil%4:02:00:: 1 -4 lignite%1:27:00:: 1 -4 lightly%4:02:06:: 1 -4 light%3:00:04:: 3 -4 light%1:26:01:: 6 -4 light%1:07:00:: 7 -4 lifter%1:18:00:: 1 -4 lie%2:42:02:: 6 -4 lie%2:38:00:: 7 -4 lid%1:08:00:: 1 -4 license%1:10:00:: 1 -4 liberal%5:00:00:left:02 2 -4 liable%5:00:00:likely:00 1 -4 lexicostatistics%1:09:00:: 1 -4 levy%2:40:00:: 1 -4 level%2:33:02:: 1 -4 let_go%2:42:00:: 2 -4 lesson%1:10:01:: 3 -4 lesson%1:10:00:: 2 -4 lemon%1:13:00:: 1 -4 lemma%1:10:00:: 1 -4 leftfield%1:06:00:: 1 -4 left_ventricle%1:08:00:: 1 -4 lecture%2:32:01:: 1 -4 learning%1:09:00:: 1 -4 leak_out%2:32:00:: 1 -4 leading%5:00:02:major:06 1 -4 leadership%1:26:00:: 3 -4 lead_up%2:30:00:: 1 -4 lazy%5:00:00:slow:01 1 -4 lay%2:35:02:: 4 -4 law_enforcement%1:04:00:: 1 -4 launch%2:35:02:: 3 -4 latin%1:10:00:: 1 -4 late%5:00:00:unpunctual:00 2 -4 lat%1:08:00:: 1 -4 last%4:02:00:: 1 -4 lash%2:35:01:: 1 -4 lantern%1:06:00:: 1 -4 lane%1:06:00:: 1 -4 land_reform%1:04:00:: 1 -4 land%2:38:01:: 2 -4 lad%1:18:01:: 1 -4 lacking%5:00:00:inadequate:00 2 -4 korea%1:15:00:: 1 -4 knock_out%2:30:01:: 1 -4 knock%2:35:00:: 3 -4 knapsack%1:06:00:: 1 -4 kinetic_energy%1:19:00:: 1 -4 kinesthetic%3:01:00:: 1 -4 kind%3:00:00:: 1 -4 kidnapper%1:18:00:: 1 -4 key%1:09:00:: 2 -4 keep_up%2:40:00:: 3 -4 keep%2:32:00:: 8 -4 just_about%4:02:02:: 1 -4 just%3:00:00:: 1 -4 jurisdiction%1:07:02:: 1 -4 jump%2:33:00:: 3 -4 judgment%1:04:00:: 3 -4 joyous%3:00:00:: 1 -4 journalist%1:18:00:: 1 -4 journalism%1:10:00:: 1 -4 joint_resolution%1:10:00:: 1 -4 joint%3:00:00:: 1 -4 job%1:06:00:: 3 -4 jimdandy%1:18:00:: 1 -4 jerusalem%1:15:00:: 1 -4 jerky%5:00:00:irregular:00 1 -4 jerk%2:38:00:: 2 -4 itemize%2:32:00:: 1 -4 isolated%5:00:01:separate:00 3 -4 irregular%3:00:00:: 1 -4 involvement%1:04:00:: 1 -4 invoke%2:32:01:: 2 -4 inversely%4:02:00:: 1 -4 invade%2:38:00:: 2 -4 intuition%1:09:00:: 1 -4 intimate%2:32:00:: 1 -4 intervene%2:41:00:: 1 -4 interstellar%3:01:00:: 1 -4 interpreter%1:18:01:: 1 -4 interminable%5:00:00:long:02 1 -4 interlude%1:28:00:: 1 -4 interferometer%1:06:00:: 1 -4 intently%4:02:00:: 1 -4 intent%5:00:00:attentive:00 2 -4 intend%2:32:00:: 3 -4 intelligent%5:00:00:sophisticated:00 2 -4 intelligent%3:00:00:: 1 -4 insurance_company%1:14:00:: 1 -4 instrument%1:04:00:: 2 -4 instinct%1:09:00:: 1 -4 instance%1:09:00:: 2 -4 installation%1:04:00:: 1 -4 inspector%1:18:01:: 1 -4 insistence%1:10:00:: 1 -4 insist%2:32:03:: 2 -4 insinuation%1:10:00:: 1 -4 inside%1:15:01:: 1 -4 inside%1:15:00:: 2 -4 insert%2:30:00:: 2 -4 inscribed%5:00:00:written:00 1 -4 inquiry%1:09:01:: 1 -4 inquire%2:31:00:: 2 -4 injection%1:04:00:: 1 -4 inject%2:29:00:: 1 -4 initiative%1:04:00:: 2 -4 inhabitant%1:18:00:: 1 -4 ingenious%5:00:00:creative:00 1 -4 infrared_emission%1:19:00:: 1 -4 infield%1:06:00:: 1 -4 infectious%3:00:00:: 2 -4 inexpensive%3:00:00:: 1 -4 inescapable%5:00:00:inevitable:00 1 -4 indolent%5:00:00:idle:00 1 -4 individual%5:00:00:unshared:00 3 -4 indifferent%5:00:00:uninterested:00 1 -4 indifference%1:12:00:: 1 -4 indictment%1:10:00:: 1 -4 indicate%2:32:04:: 5 -4 index_finger%1:08:00:: 1 -4 income_tax_return%1:10:00:: 1 -4 income_tax%1:21:00:: 1 -4 inclined%3:00:02:: 1 -4 incapable%3:00:00:: 1 -4 in_trouble%5:00:00:troubled:00 1 -4 in_this%4:02:00:: 1 -4 in_the_middle%4:02:00:: 1 -4 in_the_meantime%4:02:00:: 1 -4 in_that%4:02:00:: 1 -4 in_sight%5:00:00:visible:00 1 -4 in_practice%4:02:00:: 1 -4 in_no_way%4:02:01:: 1 -4 in_harmony%5:00:00:harmonious:00 1 -4 in_evidence%5:00:00:conspicuous:00 1 -4 in_effect%5:00:00:operative:00 1 -4 in_check%4:02:00:: 1 -4 in_case%4:02:00:: 1 -4 improvement%1:26:00:: 3 -4 imprecation%1:10:00:: 1 -4 impotent%3:00:00:: 1 -4 impose%2:40:00:: 3 -4 important%3:00:04:: 2 -4 importance%1:26:00:: 2 -4 import%2:40:00:: 1 -4 implore%2:32:00:: 1 -4 impending%5:00:00:close:01 1 -4 impatience%1:26:00:: 1 -4 impassioned%5:00:00:passionate:00 1 -4 impair%2:30:00:: 1 -4 imitation%1:06:00:: 2 -4 imitation%1:04:00:: 3 -4 imitate%2:36:00:: 1 -4 imagination%1:09:03:: 3 -4 imagery%1:09:00:: 1 -4 illustration%1:10:00:: 1 -4 ill%3:00:01:: 1 -4 if_not%4:02:00:: 1 -4 idle%3:00:00:: 1 -4 idiot%1:18:00:: 1 -4 ideology%1:09:01:: 1 -4 identify%2:31:03:: 4 -4 ideally%4:02:00:: 1 -4 idealized%5:00:00:perfect:00 1 -4 idea%1:09:01:: 2 -4 i.q.%1:24:00:: 1 -4 hypothesis%1:10:00:: 1 -4 hydrogen_bond%1:19:00:: 1 -4 hydride%1:27:00:: 1 -4 hut%1:06:00:: 2 -4 hurt%2:37:01:: 3 -4 hurt%2:30:04:: 4 -4 hunt%2:33:00:: 1 -4 hum%2:32:00:: 1 -4 housing%1:06:00:: 1 -4 house%2:41:00:: 2 -4 hot%5:00:00:violent:00 2 -4 host%1:05:00:: 3 -4 horrible%5:00:00:alarming:00 1 -4 horizontal%3:00:00:: 1 -4 honored%5:00:00:reputable:00 1 -4 honey%1:18:00:: 2 -4 homogeneity%1:07:00:: 1 -4 holiday%1:28:01:: 2 -4 hold_up%2:35:00:: 1 -4 hold_on%2:30:05:: 2 -4 hold_back%2:33:00:: 1 -4 hilar%3:01:00:: 1 -4 high_fidelity%1:04:00:: 1 -4 high-pitched%3:00:00:: 1 -4 heterogeneous%3:00:00:: 1 -4 hesitation%1:09:00:: 1 -4 heretofore%4:02:00:: 1 -4 hemorrhage%1:26:00:: 1 -4 hemoglobin%1:27:00:: 1 -4 helpless%5:00:01:powerless:00 1 -4 helpfully%4:02:00:: 1 -4 height%1:26:00:: 2 -4 heel%1:08:00:: 2 -4 heedless%3:00:00:: 1 -4 heavy%5:00:00:thick:02 4 -4 heating%1:22:00:: 1 -4 heartily%4:02:03:: 1 -4 hearing%1:26:00:: 2 -4 headlong%4:02:00:: 1 -4 haversack%1:06:00:: 1 -4 harden%2:30:00:: 1 -4 harbor%2:37:00:: 1 -4 harangue%2:32:00:: 1 -4 happiness%1:26:00:: 1 -4 hang_on%2:35:00:: 1 -4 handle%2:32:00:: 3 -4 handle%1:06:00:: 1 -4 handful%1:23:01:: 1 -4 handful%1:23:00:: 2 -4 hand%1:10:00:: 3 -4 hamper%2:30:00:: 1 -4 hammer%2:35:00:: 1 -4 halt%2:41:00:: 3 -4 halt%2:38:00:: 4 -4 halo%1:07:00:: 1 -4 halfway%5:00:00:central:01 1 -4 half-breed%1:18:00:: 1 -4 hail%2:32:02:: 1 -4 gymnastic%5:00:00:active:01 1 -4 gym%1:06:00:: 1 -4 gunner%1:18:00:: 1 -4 guidance%1:04:01:: 2 -4 guardian%1:18:00:: 1 -4 grownup%1:18:01:: 1 -4 growl%2:32:00:: 1 -4 group%2:31:00:: 1 -4 ground_floor%1:06:00:: 1 -4 grotesque%5:00:00:ugly:00 1 -4 grind%2:35:02:: 1 -4 grimy%5:00:00:dirty:01 1 -4 greet%2:32:01:: 2 -4 greek%1:18:00:: 2 -4 greatness%1:07:00:: 1 -4 greatest%5:00:00:best:00 3 -4 grease%1:27:00:: 1 -4 gray%5:00:00:cloudy:00 3 -4 gravely%4:02:00:: 1 -4 grave%5:00:00:serious:00 1 -4 grasshopper%1:05:00:: 1 -4 granted%5:00:00:acknowledged:00 1 -4 grandfather%1:18:00:: 1 -4 grand_jury%1:14:00:: 1 -4 grammatical%3:01:00:: 1 -4 grace%1:26:00:: 1 -4 grace%1:07:01:: 2 -4 grab%2:40:00:: 2 -4 governed%1:14:00:: 1 -4 good-bye%1:10:00:: 1 -4 good%5:00:00:superior:02 6 -4 good%5:00:00:nice:00 7 -4 good%4:02:01:: 2 -4 goitrogen%1:27:00:: 1 -4 goddamn%5:00:00:cursed:00 1 -4 go_up%2:38:03:: 3 -4 go_to_bed%2:29:00:: 1 -4 go_off%2:38:00:: 1 -4 go_back%2:42:00:: 2 -4 go_back%2:32:00:: 3 -4 go_away%2:38:05:: 1 -4 go_along%2:41:00:: 1 -4 glycerine%1:27:00:: 1 -4 glowing%5:00:00:bright:00 1 -4 glower%2:29:01:: 1 -4 glow%2:39:01:: 2 -4 glorify%2:32:00:: 1 -4 glitter%2:39:00:: 1 -4 glinting%5:00:00:bright:00 1 -4 glint%2:39:00:: 1 -4 glasses%1:06:00:: 1 -4 glass%1:23:00:: 3 -4 give%2:40:11:: 22 -4 give%2:38:00:: 23 -4 give%2:34:00:: 24 -4 giggle%2:29:00:: 1 -4 gift%1:09:00:: 2 -4 ghost%1:09:00:: 1 -4 get_to%2:38:02:: 1 -4 get_through%2:30:00:: 1 -4 get_over%2:38:00:: 1 -4 get_it%2:31:00:: 1 -4 get_into%2:40:00:: 3 -4 get_back%2:33:01:: 2 -4 get_away%2:32:00:: 2 -4 get_around_to%2:41:00:: 1 -4 get_around%2:32:00:: 1 -4 get_along%2:42:00:: 1 -4 get_along%2:41:00:: 2 -4 get_ahead%2:33:00:: 1 -4 get%2:35:09:: 11 -4 get%2:29:01:: 12 -4 get%2:29:00:: 13 -4 gesture%1:10:00:: 2 -4 gesticulate%2:32:00:: 1 -4 genuine%5:00:00:sincere:00 2 -4 gentle%5:00:01:kind:00 2 -4 generator%1:06:01:: 1 -4 generalized%5:00:00:unspecialized:00 1 -4 gastrocnemius%1:08:00:: 1 -4 gasp%1:04:00:: 1 -4 garment%1:06:00:: 1 -4 gambling%1:04:00:: 1 -4 gaiety%1:12:00:: 1 -4 future%5:00:00:subsequent:00 3 -4 future%5:00:00:prospective:00 2 -4 fuss%2:37:00:: 1 -4 fusion%1:11:00:: 1 -4 fury%1:12:00:: 1 -4 furious%5:00:00:angry:00 2 -4 funny%5:00:00:questionable:00 3 -4 fumble%2:35:00:: 1 -4 frustration%1:12:00:: 1 -4 front_room%1:06:00:: 1 -4 frightful%5:00:00:alarming:00 1 -4 friendly%5:00:00:amicable:00 2 -4 fresh%5:00:00:invigorating:00 3 -4 french_revolution%1:04:00:: 1 -4 freight%1:06:00:: 1 -4 free_of%5:00:00:free:00 1 -4 free%3:00:02:: 2 -4 freak%1:18:00:: 1 -4 frame%2:35:00:: 1 -4 frail%3:00:00:: 1 -4 found%2:36:00:: 2 -4 fortune%1:19:00:: 1 -4 fortunately%4:02:00:: 1 -4 fortify%2:30:01:: 1 -4 fort_up%2:38:00:: 1 -4 forsake%2:31:00:: 1 -4 formulate%2:36:00:: 2 -4 formulate%2:32:00:: 3 -4 formidable%5:00:01:impressive:00 1 -4 formidable%5:00:00:alarming:00 2 -4 former%5:00:02:past:00 3 -4 formation%1:04:01:: 3 -4 formation%1:04:00:: 2 -4 fork%1:06:00:: 1 -4 forestall%2:41:01:: 1 -4 foreign%5:00:00:extrinsic:00 3 -4 foregoing%5:00:00:preceding(a):00 1 -4 forbidden%5:00:00:impermissible:00 1 -4 footstep%1:11:00:: 1 -4 footstep%1:04:00:: 2 -4 foot%1:05:01:: 4 -4 follow_through%2:41:00:: 1 -4 follow%2:31:00:: 12 -4 focus%2:39:00:: 2 -4 foam%1:17:00:: 1 -4 flurry%1:04:00:: 1 -4 florida%1:15:00:: 1 -4 flop%2:38:01:: 1 -4 float%2:38:01:: 2 -4 flatly%4:02:00:: 1 -4 flat-bottomed%5:00:00:bottomed:00 1 -4 flask%1:06:00:: 1 -4 flap%2:38:01:: 1 -4 five%1:23:00:: 1 -4 fit%5:00:00:ready:00 2 -4 fit%3:00:02:: 1 -4 fit%2:42:04:: 6 -4 first%5:00:02:opening:00 3 -4 first%5:00:01:opening:00 4 -4 first%4:02:01:: 4 -4 firm%5:00:00:settled:02 4 -4 fire%1:06:00:: 4 -4 finest%5:00:00:best:00 1 -4 fine%5:00:00:satisfactory:00 3 -4 fine%5:00:00:precise:00 4 -4 finance%1:04:00:: 1 -4 finale%1:11:00:: 1 -4 filter%1:06:00:: 1 -4 filling%1:27:00:: 1 -4 fill_in%2:32:00:: 1 -4 fill%1:23:00:: 1 -4 field%1:15:03:: 11 -4 feverish%5:00:00:agitated:00 1 -4 fever%1:26:00:: 1 -4 fever%1:12:00:: 2 -4 feminine%3:00:01:: 1 -4 female%1:18:00:: 2 -4 fell%2:35:00:: 1 -4 feel%2:35:00:: 9 -4 feed%2:30:01:: 4 -4 feeble%5:00:02:weak:00 1 -4 federal%5:00:00:northern:02 3 -4 feasible%5:00:00:possible:00 1 -4 favorable%5:00:00:auspicious:00 2 -4 favorable%3:00:02:: 1 -4 fault%1:26:00:: 2 -4 fatigue%1:26:00:: 1 -4 fathom%2:31:00:: 1 -4 fate%1:18:00:: 2 -4 fatal%5:00:00:decisive:00 2 -4 fasten%2:35:00:: 2 -4 farm%5:00:00:rural:00 1 -4 farm%2:41:00:: 1 -4 farewell%1:10:00:: 1 -4 fantastic%5:00:00:strange:00 1 -4 fan_out%2:38:00:: 1 -4 fan%1:06:00:: 1 -4 fall%2:43:00:: 5 -4 fall%2:41:02:: 6 -4 fall%1:04:01:: 2 -4 faint%5:00:00:weak:00 3 -4 fade%2:30:01:: 2 -4 fade%2:30:00:: 3 -4 faculty%1:09:00:: 1 -4 factory_worker%1:18:00:: 1 -4 factor%1:23:00:: 3 -4 facet_plane%1:25:00:: 1 -4 face%2:42:02:: 5 -4 face%2:38:00:: 6 -4 face%1:06:02:: 5 -4 eyes%1:09:00:: 1 -4 exuberant%5:00:00:spirited:00 1 -4 extra%5:00:00:unnecessary:00 2 -4 extended%5:00:00:long:02 1 -4 extend_to%2:42:00:: 1 -4 extend%2:42:02:: 6 -4 expression%1:10:03:: 6 -4 expression%1:10:01:: 5 -4 expressed%5:00:00:spoken:00 1 -4 expose%2:39:00:: 3 -4 export%2:40:00:: 1 -4 explore%2:31:01:: 2 -4 exploration%1:04:00:: 2 -4 explode%2:31:00:: 3 -4 experimentation%1:09:00:: 1 -4 expense%1:11:00:: 2 -4 expedition%1:04:01:: 1 -4 expectation%1:26:00:: 2 -4 expand%2:30:12:: 3 -4 expand%2:30:01:: 4 -4 exhibition%1:14:00:: 2 -4 exhibit%2:39:00:: 3 -4 exhaust%2:29:00:: 1 -4 exemption%1:26:00:: 1 -4 execution%1:04:00:: 1 -4 excitement%1:04:00:: 3 -4 excited%5:00:00:agitated:00 1 -4 excite%2:30:00:: 2 -4 excitatory%5:00:00:stimulative:00 1 -4 excitability%1:09:00:: 1 -4 excess%5:00:00:unnecessary:00 1 -4 excess%1:07:02:: 1 -4 exceed%2:33:00:: 3 -4 evil%1:07:02:: 2 -4 even_so%4:02:00:: 1 -4 even%3:00:02:: 1 -4 establishment%1:14:00:: 2 -4 error%1:09:00:: 3 -4 equitable%3:00:00:: 1 -4 equilibrium%1:26:00:: 1 -4 episode%1:11:00:: 1 -4 envision%2:36:00:: 1 -4 enlightened%5:00:00:educated:00 1 -4 enlarged%5:00:02:expanded:01 1 -4 enhance%2:30:01:: 2 -4 engrossed%5:00:00:attentive:00 1 -4 energetic%3:00:00:: 1 -4 endure%2:42:04:: 2 -4 endure%2:42:00:: 3 -4 endurance%1:07:00:: 1 -4 endeavor%2:41:00:: 1 -4 encounter%2:42:00:: 3 -4 encounter%1:11:00:: 2 -4 encompass%2:42:00:: 1 -4 enact%2:36:00:: 2 -4 empty%2:30:01:: 1 -4 empirically%4:02:00:: 1 -4 empirical%3:00:00:: 1 -4 elution%1:22:00:: 1 -4 eloquent%5:00:00:articulate:00 1 -4 electronic%3:01:00:: 1 -4 electric_current%1:19:00:: 1 -4 elaborate%5:00:00:careful:00 2 -4 ejaculate%2:32:00:: 1 -4 effective%5:00:00:operative:00 4 -4 educational%5:00:00:instructive:00 2 -4 editorial%1:10:00:: 1 -4 ecstasy%1:26:00:: 1 -4 economize%2:40:00:: 1 -4 economist%1:18:00:: 1 -4 eccentric%5:00:00:unconventional:01 1 -4 eat%2:34:02:: 3 -4 easy%5:00:00:unhurried:00 2 -4 east%1:15:00:: 2 -4 easel%1:06:00:: 1 -4 ease%2:38:00:: 1 -4 ease%2:29:00:: 2 -4 earnings%1:21:01:: 1 -4 each_week%4:02:00:: 1 -4 dwell%2:31:00:: 1 -4 dumbbell%1:06:00:: 1 -4 dulled%5:00:00:uninterested:00 1 -4 due%1:07:00:: 1 -4 duck%1:05:00:: 1 -4 drunkenly%4:02:00:: 1 -4 drunken%5:00:02:intoxicated:00 1 -4 drunk%1:18:00:: 1 -4 drive_in%2:33:00:: 1 -4 drive%2:36:00:: 7 -4 drive%1:04:02:: 3 -4 drink%1:04:00:: 2 -4 dress%1:06:01:: 2 -4 dregs%1:17:00:: 1 -4 dream%1:12:00:: 3 -4 dread%2:37:00:: 1 -4 draw%2:38:02:: 13 -4 drapery%1:06:00:: 1 -4 dramatically%4:02:02:: 1 -4 draft%2:36:00:: 1 -4 doze%2:29:00:: 1 -4 downgrade%2:31:00:: 1 -4 down_the_stairs%4:02:00:: 1 -4 doubt%1:07:00:: 2 -4 double%5:00:01:multiple:00 3 -4 dose%1:06:00:: 1 -4 don%2:29:00:: 1 -4 dominion%1:26:00:: 1 -4 dominated_by%5:00:00:controlled:00 1 -4 dominance%1:07:02:: 1 -4 domain%1:26:00:: 1 -4 doing%1:04:00:: 1 -4 doggedly%4:02:00:: 1 -4 divorce%2:41:01:: 1 -4 divisive%5:00:00:discordant:00 1 -4 division%1:04:00:: 3 -4 divisible_by%5:00:00:divisible:00 1 -4 divinity%1:18:00:: 1 -4 divine%5:00:00:heavenly:00 1 -4 divide%2:42:00:: 3 -4 divestiture%1:10:00:: 1 -4 diverse%5:00:02:different:00 1 -4 dive%2:38:00:: 1 -4 dive%1:06:01:: 1 -4 disturbance%1:11:00:: 1 -4 disturb%2:35:01:: 2 -4 distribution%1:04:01:: 4 -4 distribute%2:41:00:: 3 -4 distress%1:12:02:: 1 -4 distinguishable%3:00:00:: 1 -4 distinction%1:07:01:: 3 -4 distance%1:12:00:: 4 -4 dissolve%2:30:03:: 1 -4 dispute%2:32:00:: 1 -4 dispute%1:10:00:: 1 -4 disposal%1:07:00:: 1 -4 display%1:10:01:: 1 -4 disobey%2:41:00:: 1 -4 dismiss%2:32:02:: 2 -4 dismay%1:12:02:: 1 -4 dislike%1:09:00:: 1 -4 disk%1:06:00:: 2 -4 discover%2:32:04:: 6 -4 discontinuity%1:26:00:: 1 -4 discontinue%2:42:00:: 1 -4 disciplined%5:00:00:controlled:00 1 -4 discipline%2:41:01:: 1 -4 disappointed%5:00:00:unsuccessful:00 1 -4 disappearance%1:04:00:: 1 -4 direct%2:36:02:: 8 -4 dipper%1:06:00:: 1 -4 diplomat%1:18:00:: 1 -4 dingy%5:00:00:dirty:01 1 -4 dim%5:00:00:dark:01 1 -4 dilution%1:27:00:: 1 -4 dignity%1:07:01:: 2 -4 dig_into%2:35:00:: 1 -4 differentiate%2:31:01:: 1 -4 dietary%3:01:00:: 1 -4 dialyze%2:30:00:: 1 -4 dialectic%1:09:00:: 1 -4 diagonal%5:00:02:oblique:00 1 -4 diagnosis%1:04:00:: 1 -4 diagnose%2:31:00:: 1 -4 developmental%3:01:00:: 1 -4 development%1:26:00:: 7 -4 developer%1:18:00:: 1 -4 develop%2:30:05:: 9 -4 develop%2:30:00:: 10 -4 deteriorate%2:30:00:: 1 -4 detector%1:06:00:: 1 -4 detection%1:09:00:: 1 -4 detached%5:00:00:unconcerned:00 1 -4 destine%2:32:00:: 1 -4 desperation%1:26:01:: 1 -4 desolate%5:00:00:inhospitable:00 1 -4 desert%1:15:00:: 1 -4 depression%1:26:00:: 1 -4 dependable%3:00:00:: 1 -4 dense%5:00:00:thick:02 1 -4 denominational%3:01:00:: 1 -4 denmark%1:15:00:: 1 -4 denial%1:10:00:: 1 -4 demon%1:18:00:: 1 -4 democrat%1:18:01:: 1 -4 demanding%3:00:01:: 1 -4 defendant%1:18:00:: 1 -4 dedicate%2:32:00:: 1 -4 decry%2:32:00:: 1 -4 decree%1:10:00:: 1 -4 decoration%1:06:00:: 1 -4 decline%2:40:00:: 2 -4 decline%2:32:00:: 3 -4 decline%1:22:02:: 1 -4 declaration%1:10:00:: 1 -4 decide%2:31:02:: 3 -4 deceased%5:00:00:dead:01 1 -4 death%1:28:01:: 5 -4 dear%1:18:00:: 1 -4 deal%2:40:00:: 6 -4 dead%3:00:02:: 2 -4 deacon%1:18:01:: 1 -4 darken%2:30:00:: 1 -4 dark_ages%1:28:00:: 1 -4 dark%1:15:00:: 3 -4 dairy_cow%1:05:00:: 1 -4 dairy_cattle%1:05:00:: 1 -4 czechoslovakia%1:15:00:: 1 -4 cytoplasm%1:08:00:: 1 -4 cycle%1:28:00:: 1 -4 cut_across%2:38:00:: 1 -4 customary%5:00:00:usual:00 2 -4 customary%5:00:00:conventional:00 1 -4 custom%1:04:00:: 1 -4 curving%3:00:00:: 1 -4 currently%4:02:00:: 1 -4 crystal%1:27:00:: 1 -4 crushing%5:00:00:destructive:00 1 -4 crush%2:41:00:: 1 -4 cruelty%1:04:00:: 1 -4 crossroads%1:14:00:: 1 -4 cross%5:00:00:crosswise:00 1 -4 croon%2:32:00:: 1 -4 crew%1:14:00:: 2 -4 creep%2:38:04:: 2 -4 credit%2:31:01:: 1 -4 credit%1:21:01:: 3 -4 creation%1:06:00:: 2 -4 crash%1:11:00:: 2 -4 cracker_box%1:06:00:: 1 -4 crack%2:39:01:: 2 -4 coward%1:18:00:: 1 -4 cover%2:38:00:: 7 -4 cover%1:04:00:: 3 -4 countryman%1:18:00:: 1 -4 count%2:32:03:: 3 -4 count%1:23:00:: 1 -4 count%1:04:00:: 2 -4 counseling%1:10:00:: 1 -4 cottage%1:06:00:: 1 -4 cost%1:07:01:: 3 -4 cortex%1:08:01:: 1 -4 correlate%2:42:00:: 1 -4 corps%1:14:00:: 1 -4 corporate%3:01:00:: 1 -4 core%1:15:00:: 2 -4 copper%1:27:00:: 1 -4 copenhagen%1:15:00:: 1 -4 coordinate%2:41:00:: 2 -4 coolly%4:02:00:: 1 -4 cooking%1:04:00:: 2 -4 convincing%3:00:00:: 1 -4 convention%1:14:00:: 1 -4 convention%1:09:00:: 2 -4 conveniently%4:02:00:: 1 -4 control%1:26:00:: 6 -4 contribution%1:21:00:: 2 -4 contractual%3:01:00:: 1 -4 contraceptive%1:06:00:: 1 -4 contraception%1:04:00:: 1 -4 continuously%4:02:01:: 2 -4 continuous%3:00:02:: 2 -4 continual%3:00:00:: 1 -4 context%1:26:00:: 2 -4 contaminate%2:30:00:: 1 -4 contact%1:04:00:: 2 -4 consult%2:32:01:: 2 -4 constant%1:09:00:: 1 -4 consonantal%3:00:02:: 1 -4 consonant%1:10:00:: 1 -4 consist_in%2:42:00:: 1 -4 consist%2:42:00:: 1 -4 consequent%5:00:00:subsequent:00 1 -4 consequence%1:11:00:: 2 -4 connection%1:06:00:: 3 -4 connect%2:31:00:: 2 -4 congratulation%1:10:00:: 1 -4 confront%2:42:00:: 4 -4 conflict%1:12:00:: 2 -4 conflict%1:04:01:: 3 -4 confirmation%1:09:00:: 1 -4 confine%2:30:01:: 2 -4 confession%1:10:00:: 1 -4 cone%1:06:00:: 1 -4 conclusively%4:02:00:: 1 -4 concern%1:12:00:: 3 -4 concern%1:09:01:: 4 -4 conception%1:04:01:: 2 -4 concentrate%2:31:00:: 2 -4 concentrate%2:30:02:: 3 -4 conceivably%4:02:00:: 1 -4 concede%2:40:00:: 3 -4 compulsive%1:18:00:: 1 -4 compromise%1:04:00:: 1 -4 composition%1:07:02:: 1 -4 composition%1:07:01:: 2 -4 compose%2:36:01:: 3 -4 component%1:06:00:: 3 -4 compliment%1:10:00:: 1 -4 complicity%1:26:00:: 1 -4 completed%5:00:00:complete:00 1 -4 complete%5:00:00:perfect:00 2 -4 competitive%5:00:00:capitalistic:00 2 -4 competition%1:11:00:: 2 -4 competition%1:04:00:: 3 -4 compartment%1:06:01:: 1 -4 comparative%5:00:00:relative:00 2 -4 comparative%3:01:00:: 1 -4 comparable_to%5:00:00:comparable:00 1 -4 community%1:21:00:: 3 -4 communist%1:18:00:: 2 -4 communism%1:09:00:: 2 -4 communion%1:04:01:: 1 -4 commodity%1:06:00:: 1 -4 commercial%1:10:00:: 1 -4 commentary%1:10:00:: 1 -4 commanding_officer%1:18:00:: 1 -4 comforts%1:21:00:: 1 -4 comfort%2:37:01:: 1 -4 comfort%1:04:00:: 3 -4 comedian%1:18:00:: 1 -4 come_to_grips%2:41:00:: 1 -4 come_to%2:42:03:: 2 -4 come_to%2:41:00:: 3 -4 come_by%2:41:00:: 1 -4 come_about%2:30:00:: 1 -4 combine%2:40:00:: 4 -4 column%1:10:00:: 5 -4 columbus%1:15:00:: 1 -4 color_bearer%1:18:00:: 1 -4 color%3:00:00:: 1 -4 color%1:07:03:: 2 -4 collaboration%1:04:01:: 1 -4 cold_frame%1:06:00:: 1 -4 coincide%2:42:01:: 3 -4 cohesion%1:26:00:: 1 -4 coefficient%1:23:00:: 1 -4 cluster%2:38:00:: 1 -4 clumsy%5:00:00:awkward:00 1 -4 clothe%2:29:00:: 1 -4 closet%1:06:03:: 1 -4 close%5:00:00:careful:00 4 -4 close%4:02:02:: 2 -4 clog%2:35:00:: 1 -4 clear%3:00:02:: 4 -4 cleaner%1:06:00:: 1 -4 clatter%1:11:00:: 1 -4 classic%5:00:00:classical:00 2 -4 class%1:04:00:: 4 -4 clasp%2:35:00:: 1 -4 claim%2:32:03:: 4 -4 clad%3:00:00:: 1 -4 civic%3:01:00:: 1 -4 cite%2:32:01:: 2 -4 circulation%1:10:00:: 1 -4 circuit%1:06:00:: 1 -4 circle%2:38:00:: 2 -4 circle%1:25:01:: 3 -4 church_of_england%1:14:00:: 1 -4 chromium%1:27:00:: 1 -4 christmas_card%1:10:00:: 1 -4 chortle%2:29:00:: 1 -4 cholesterol%1:27:00:: 1 -4 chisel%1:06:00:: 1 -4 china%1:06:00:: 2 -4 chief%5:00:01:important:00 2 -4 chemist%1:18:00:: 1 -4 cheering%1:10:00:: 1 -4 cheerful%3:00:00:: 1 -4 check%1:09:00:: 2 -4 charge%2:41:00:: 5 -4 charge%1:21:02:: 3 -4 charcoal%1:27:00:: 1 -4 characterization%1:10:00:: 1 -4 character%1:18:00:: 5 -4 channel%1:10:00:: 1 -4 chance%1:04:00:: 3 -4 certify%2:32:00:: 1 -4 certain%3:00:03:: 4 -4 ceremony%1:04:01:: 2 -4 central%3:01:00:: 4 -4 cemetery%1:15:00:: 1 -4 cell-free%5:00:00:noncellular:00 1 -4 cave%1:17:00:: 1 -4 cautiously%4:02:00:: 1 -4 cause%1:03:00:: 4 -4 cathedral%1:06:00:: 1 -4 catharsis%1:04:00:: 1 -4 cater%2:34:00:: 1 -4 catch%2:35:03:: 8 -4 catalogue%1:10:01:: 1 -4 carry_through%2:36:00:: 1 -4 carry_over%2:30:00:: 1 -4 carry%2:42:03:: 7 -4 carry%2:41:00:: 8 -4 carefree%5:00:00:untroubled:00 1 -4 care_for%2:37:01:: 1 -4 care%2:41:11:: 4 -4 care%1:09:00:: 2 -4 capture%2:37:00:: 2 -4 capture%2:35:01:: 3 -4 capillary_bed%1:08:00:: 1 -4 candle%1:06:00:: 1 -4 campaign%1:04:00:: 3 -4 camp_ground%1:15:00:: 1 -4 camera%1:06:01:: 2 -4 calm_down%2:37:01:: 1 -4 call%1:09:00:: 2 -4 calibrate%2:30:00:: 1 -4 calculation%1:09:00:: 2 -4 cage%1:06:00:: 1 -4 cabinet%1:06:00:: 1 -4 cab%1:06:02:: 1 -4 bypass%2:32:00:: 1 -4 by-product%1:19:00:: 1 -4 buzz%2:39:00:: 1 -4 burst%2:38:00:: 4 -4 burrow%1:17:00:: 1 -4 burn%2:39:00:: 4 -4 bunk%1:06:00:: 2 -4 bundle%1:14:00:: 1 -4 bundle%1:06:00:: 2 -4 bulky%5:00:00:large:00 1 -4 built%5:00:00:improved:00 1 -4 build%2:36:09:: 3 -4 budget%1:21:02:: 1 -4 bronchial%3:01:00:: 1 -4 bronc%1:05:00:: 1 -4 broadway%1:15:00:: 1 -4 briskly%4:02:00:: 1 -4 bring_to_bear%2:41:00:: 1 -4 bring_in%2:40:01:: 2 -4 bring_about%2:42:00:: 2 -4 bring%2:35:02:: 6 -4 brigadier%1:18:00:: 1 -4 bridle%1:06:00:: 1 -4 bridge%1:06:00:: 1 -4 break_out%2:30:04:: 1 -4 break_into%2:32:00:: 1 -4 break%2:38:08:: 8 -4 break%2:38:02:: 7 -4 break%2:37:00:: 9 -4 break%2:30:02:: 10 -4 brakes%1:06:00:: 1 -4 bow%1:06:03:: 1 -4 boundary%1:15:00:: 1 -4 bound%3:00:01:: 1 -4 bound%2:38:01:: 1 -4 bounce%2:38:02:: 3 -4 both%5:00:00:some(a):00 1 -4 boss%1:18:00:: 2 -4 bore%2:35:00:: 2 -4 bombus%1:05:00:: 1 -4 boil%2:30:01:: 1 -4 boil%2:30:00:: 2 -4 board%1:06:00:: 3 -4 blur%1:09:00:: 1 -4 blow_up%2:30:03:: 1 -4 blood_vessel%1:08:00:: 1 -4 blindly%4:02:00:: 1 -4 blind_man%1:18:00:: 1 -4 blind%5:00:00:unperceptive:00 2 -4 bless%2:32:00:: 1 -4 blaze%1:22:00:: 1 -4 blanket%1:17:00:: 2 -4 blame%2:31:00:: 3 -4 blade%1:20:00:: 1 -4 blackness%1:07:00:: 1 -4 black%5:00:00:angry:00 3 -4 black%3:00:02:: 2 -4 black%1:07:00:: 1 -4 bit%1:17:00:: 2 -4 biscuit%1:13:00:: 1 -4 biology%1:09:00:: 1 -4 binding%1:07:00:: 1 -4 bind%2:41:01:: 2 -4 bind%2:35:00:: 3 -4 billion%5:00:00:cardinal:00 1 -4 bill%1:21:00:: 3 -4 bevel%2:35:00:: 1 -4 bet_on%2:33:00:: 1 -4 bestow%2:40:00:: 1 -4 bern%1:15:00:: 1 -4 bequest%1:21:00:: 1 -4 bent%5:00:00:crooked:01 1 -4 belt%1:06:01:: 1 -4 belt%1:06:00:: 2 -4 belong%2:42:02:: 3 -4 behalf%1:04:00:: 1 -4 beginning%5:00:00:early:02 1 -4 beat%2:38:00:: 4 -4 beast%1:03:00:: 1 -4 bear%2:42:14:: 7 -4 bear%2:40:01:: 8 -4 base%1:06:04:: 1 -4 barrier%1:06:00:: 1 -4 bark%1:20:00:: 1 -4 barbed_wire%1:06:00:: 1 -4 bar%1:06:05:: 2 -4 bar%1:06:00:: 3 -4 banner%1:06:00:: 1 -4 ballistic_missile%1:06:00:: 1 -4 ballet%1:04:00:: 1 -4 badly%4:02:00:: 2 -4 bacon%1:13:00:: 1 -4 backyard%1:06:00:: 1 -4 backward%4:02:03:: 1 -4 back%2:41:01:: 3 -4 back%2:38:01:: 4 -4 back%1:15:02:: 3 -4 b-52%1:06:00:: 1 -4 awful%5:00:00:alarming:00 2 -4 awful%4:02:00:: 1 -4 awe%1:12:02:: 1 -4 avoidance%1:04:00:: 1 -4 average_cost%1:07:00:: 1 -4 aureomycin%1:06:00:: 1 -4 aunt%1:18:00:: 1 -4 aug%1:28:00:: 1 -4 attributable%3:00:00:: 1 -4 attractive%3:00:01:: 1 -4 attraction%1:19:00:: 1 -4 attract%2:37:00:: 3 -4 attention%1:09:02:: 3 -4 attention%1:04:02:: 4 -4 attack%2:33:02:: 4 -4 attach%2:35:02:: 2 -4 atrophy%1:26:00:: 1 -4 atomic%3:01:00:: 1 -4 atmosphere%1:17:00:: 5 -4 at_length%4:02:01:: 1 -4 at_hand%5:00:01:close:01 2 -4 at_best%4:02:00:: 1 -4 at_bay%5:00:00:unfree:00 1 -4 at_any_rate%4:02:00:: 1 -4 astonishing%5:00:00:surprising:00 1 -4 astonished%5:00:00:surprised:00 1 -4 assistant%5:00:00:subordinate:01 1 -4 assist%2:41:00:: 2 -4 assessment%1:09:00:: 1 -4 assert_oneself%2:41:00:: 1 -4 ask_for%2:37:00:: 1 -4 aside%4:02:04:: 3 -4 ascertain%2:32:01:: 1 -4 as_usual%4:02:00:: 1 -4 as_it_were%4:02:00:: 1 -4 as_a_whole%5:00:00:general:00 1 -4 as_a_matter_of_fact%4:02:00:: 1 -4 artificial%3:00:00:: 1 -4 arteriolar%3:01:00:: 1 -4 arrival%1:04:00:: 1 -4 array%1:14:00:: 1 -4 arrangement%1:14:00:: 2 -4 arrangement%1:09:00:: 3 -4 arm%2:33:00:: 1 -4 arkansas%1:15:00:: 1 -4 arithmetic%1:09:00:: 1 -4 aristotle%1:18:00:: 1 -4 architectural%3:01:00:: 1 -4 approved%5:00:00:authorized:00 1 -4 appreciable%5:00:00:considerable:00 1 -4 apply%2:42:01:: 6 -4 application%1:04:03:: 3 -4 applaud%2:32:00:: 2 -4 appearance%1:11:00:: 2 -4 appeal%2:41:00:: 1 -4 appalling%5:00:00:alarming:00 1 -4 apostolic%3:01:00:: 1 -4 any%4:02:00:: 1 -4 anticipation%1:12:00:: 1 -4 anticipation%1:09:01:: 2 -4 anticipate%2:31:01:: 3 -4 anti-semitic%3:01:00:: 1 -4 answer%2:32:06:: 5 -4 annually%4:02:00:: 1 -4 announcement%1:10:01:: 1 -4 anguish%1:12:02:: 1 -4 and_so_forth%4:02:00:: 1 -4 anatomy%1:09:00:: 1 -4 amplify%2:30:00:: 1 -4 amp%1:23:00:: 1 -4 amount%2:42:01:: 2 -4 amount%2:42:00:: 3 -4 amorphous%5:00:00:unformed:00 1 -4 amethystine_python%1:05:00:: 1 -4 american%3:01:00:: 2 -4 ambitious%5:00:00:difficult:00 2 -4 ambiguous%3:00:00:: 2 -4 amaze%2:31:00:: 1 -4 although%4:02:00:: 1 -4 alternative%5:00:00:secondary:01 1 -4 alteration%1:11:00:: 1 -4 alone%5:00:00:unaccompanied:00 2 -4 allot%2:40:00:: 2 -4 all_right%4:02:02:: 3 -4 all_over%5:00:00:finished:01 1 -4 algebraically%4:02:00:: 1 -4 airy%5:00:00:ventilated:00 1 -4 airway%1:06:01:: 1 -4 airport%1:06:00:: 1 -4 aim%1:09:01:: 2 -4 aim%1:04:00:: 3 -4 agriculture%1:04:01:: 1 -4 agree%2:42:00:: 3 -4 agony%1:26:00:: 2 -4 affect%2:42:00:: 3 -4 affect%2:32:00:: 4 -4 affair%1:11:00:: 3 -4 afar%4:02:00:: 1 -4 aerial%5:00:02:air(a):00 2 -4 advise%2:32:02:: 3 -4 adverse%5:00:00:unfavorable:02 1 -4 advance%2:41:01:: 4 -4 advance%2:38:01:: 5 -4 admirable%5:00:00:estimable:00 1 -4 adjusted%3:00:00:: 1 -4 adjourn%2:30:00:: 1 -4 adjacent%5:00:00:close:01 1 -4 adequate_to%5:00:00:adequate:00 1 -4 adequate%5:00:00:sufficient:00 2 -4 address%2:32:03:: 3 -4 add_up%2:42:01:: 1 -4 acutely%4:02:01:: 1 -4 actuality%1:26:00:: 1 -4 active%5:00:00:involved:00 4 -4 acting%5:00:00:impermanent:00 1 -4 act%2:33:00:: 4 -4 across%4:02:01:: 1 -4 acres%1:21:00:: 1 -4 acreage%1:07:00:: 1 -4 acid%1:27:00:: 1 -4 acetone%1:27:00:: 1 -4 accumulate%2:40:00:: 1 -4 accumulate%2:30:00:: 2 -4 accost%2:32:01:: 1 -4 acceptance%1:09:00:: 1 -4 academically%4:02:00:: 1 -4 absorption%1:22:00:: 1 -4 absorb%2:40:00:: 3 -4 absorb%2:35:00:: 4 -4 absolute%5:00:01:complete:00 2 -4 aboard%4:02:01:: 1 -4 able%5:00:00:capable:00 3 -4 abandon%1:07:00:: 1 -4 6th%5:00:00:ordinal:00 1 -4 4th%5:00:00:ordinal:00 1 -4 30%1:23:00:: 1 -4 29%1:23:00:: 1 -4 28%5:00:00:cardinal:00 1 -4 22%1:23:00:: 1 -4 20%1:23:00:: 1 -4 17th%5:00:00:ordinal:00 1 -4 16%1:23:00:: 1 -4 15%1:23:00:: 1 -4 10%1:23:00:: 1 -3 zero%1:23:01:: 2 -3 younger%5:00:00:junior:00 2 -3 younger%3:00:00:: 1 -3 young_man%1:18:01:: 2 -3 you_bet%4:02:00:: 1 -3 yielding%5:00:00:docile:00 1 -3 yield%2:40:01:: 4 -3 yelp%2:32:00:: 1 -3 yawn%2:29:00:: 1 -3 yankee%5:00:00:northern:02 1 -3 x-ray_diffraction%1:19:00:: 1 -3 wyoming%1:15:00:: 1 -3 wrong%1:07:01:: 1 -3 write_on%2:36:00:: 1 -3 wreathed%5:00:00:adorned:00 1 -3 wrangle%2:32:00:: 1 -3 worthwhile%5:00:00:worthy:00 1 -3 worry%2:31:00:: 4 -3 worm%1:05:00:: 1 -3 workman%1:18:00:: 1 -3 work_of_art%1:06:00:: 1 -3 work%2:41:05:: 11 -3 work%2:38:02:: 12 -3 work%2:36:01:: 13 -3 work%1:06:01:: 6 -3 word_class%1:10:00:: 1 -3 word%1:10:06:: 4 -3 word%1:10:04:: 5 -3 wool%1:06:00:: 1 -3 woodwork%1:06:00:: 1 -3 wonderfully%4:02:00:: 1 -3 woe%1:26:00:: 1 -3 witness%1:18:01:: 2 -3 withholding%1:04:00:: 1 -3 witch%1:18:00:: 1 -3 wit%1:09:00:: 2 -3 wisdom%1:07:00:: 2 -3 wire%2:40:00:: 1 -3 wipe_off%2:35:00:: 1 -3 winning%5:00:02:successful:00 1 -3 wink%2:39:00:: 2 -3 windshield%1:06:00:: 1 -3 window%1:06:02:: 3 -3 wind%2:38:00:: 1 -3 will%2:42:00:: 1 -3 will%2:32:00:: 2 -3 wildlife%1:14:00:: 1 -3 wield%2:40:00:: 1 -3 widespread%5:00:00:distributed:00 2 -3 why%4:02:00:: 1 -3 whore%1:18:00:: 1 -3 whoop%2:32:00:: 1 -3 whistle%2:39:00:: 1 -3 whip%2:38:00:: 3 -3 whip%2:35:02:: 4 -3 whip%1:06:00:: 1 -3 whining%5:00:00:complaining(a):00 2 -3 whereabouts%1:15:00:: 1 -3 wheel%2:38:04:: 2 -3 wheel%2:38:02:: 3 -3 westward%4:02:00:: 1 -3 western_hemisphere%1:15:00:: 1 -3 western%3:00:02:: 3 -3 west%4:02:00:: 1 -3 well_up%2:42:00:: 1 -3 well-informed%5:00:00:sophisticated:00 1 -3 well-educated%5:00:00:educated:00 1 -3 well%5:00:00:fortunate:00 2 -3 well%5:00:00:advisable:00 3 -3 well%2:38:00:: 1 -3 welfare%1:04:00:: 1 -3 weir%1:06:00:: 1 -3 weight%1:06:00:: 4 -3 week%1:28:01:: 2 -3 weed%1:20:00:: 1 -3 wee%5:00:00:small:00 1 -3 wedding%1:11:00:: 1 -3 wed%2:41:00:: 1 -3 weave%2:35:00:: 1 -3 wealthy%5:00:00:rich:00 1 -3 weak%5:00:00:diluted:00 3 -3 weak%3:00:04:: 2 -3 way%1:09:00:: 10 -3 waving%5:00:00:moving:02 1 -3 waterfall%1:17:00:: 1 -3 watercolor%1:06:01:: 2 -3 water-cooled%5:00:00:cool:01 1 -3 water%2:30:00:: 1 -3 watch%1:28:00:: 2 -3 watch%1:04:00:: 3 -3 wastebasket%1:06:00:: 1 -3 washington%1:15:00:: 2 -3 wash%1:04:01:: 2 -3 warrior%1:18:00:: 1 -3 warm%3:00:03:: 3 -3 wardrobe%1:06:00:: 1 -3 ward%1:18:00:: 1 -3 want%2:35:00:: 3 -3 want%1:26:00:: 1 -3 wallpaper%1:27:00:: 1 -3 wallow%2:34:01:: 1 -3 wallop%2:35:00:: 1 -3 wallop%2:33:00:: 2 -3 walk_around%2:38:01:: 2 -3 walk%2:38:01:: 2 -3 walk%2:33:00:: 3 -3 walk%1:07:00:: 3 -3 wake%2:29:01:: 2 -3 wag%2:38:00:: 1 -3 vulnerability%1:26:00:: 1 -3 vowel_system%1:10:00:: 1 -3 vowel%1:10:00:: 1 -3 vote%1:04:01:: 2 -3 voluptuous%5:00:00:sexy:00 1 -3 volunteer%1:18:01:: 1 -3 voluminous%5:00:00:large:00 1 -3 voice%1:10:03:: 6 -3 vocational_rehabilitation%1:04:00:: 1 -3 vocabulary%1:09:00:: 2 -3 vitamin%1:27:00:: 1 -3 visually%4:02:00:: 1 -3 visit%2:32:01:: 5 -3 visibly%4:02:00:: 1 -3 visceral_brain%1:08:00:: 1 -3 virtue%1:07:03:: 2 -3 violin%1:06:00:: 1 -3 violence%1:07:00:: 2 -3 victorian%3:01:00:: 1 -3 vicious_circle%1:22:00:: 1 -3 vice%1:07:00:: 1 -3 vest%2:41:00:: 1 -3 very_well%4:02:00:: 1 -3 vermont%1:15:00:: 1 -3 verbena%1:20:00:: 1 -3 verbal%3:01:01:: 2 -3 venture%1:04:00:: 1 -3 ventilation%1:04:00:: 1 -3 vent%2:32:00:: 1 -3 vengeance%1:04:00:: 1 -3 velvety%5:00:00:smooth:00 1 -3 veiled%3:00:00:: 1 -3 vascular%3:01:00:: 1 -3 various%5:00:00:different:00 3 -3 valiant%5:00:00:brave:00 1 -3 vain%5:00:00:proud:00 1 -3 vacancy%1:26:00:: 1 -3 utter%5:00:00:unmitigated:00 1 -3 utter%2:32:02:: 2 -3 utmost%5:00:00:intense:00 1 -3 utilize%2:41:00:: 2 -3 utilization%1:04:00:: 1 -3 user%1:18:00:: 1 -3 use_up%2:34:00:: 1 -3 usable%5:00:00:useful:00 1 -3 urban_area%1:15:00:: 1 -3 upwards%4:02:00:: 1 -3 upside_down%4:02:00:: 1 -3 up_to%5:00:00:busy:00 1 -3 up_and_down%4:02:03:: 2 -3 up-to-date%5:00:00:current:00 1 -3 unwillingness%1:07:00:: 1 -3 unusually%4:02:00:: 1 -3 untie%2:35:00:: 1 -3 unsteadily%4:02:00:: 1 -3 unspeakable%5:00:00:bad:00 2 -3 unsolved%3:00:00:: 1 -3 unseen%5:00:00:invisible:00 1 -3 unquestionably%4:02:00:: 1 -3 unofficial%3:00:00:: 1 -3 unmistakable%5:00:00:clear:00 1 -3 unload%2:35:02:: 1 -3 unlimited%3:00:00:: 1 -3 universality%1:07:00:: 1 -3 unity%1:23:00:: 2 -3 united%3:00:00:: 1 -3 unit_cell%1:17:00:: 1 -3 unit%1:06:01:: 6 -3 uniqueness%1:07:00:: 1 -3 unimpressed%5:00:00:unaffected:00 1 -3 uniformly%4:02:00:: 1 -3 uniformed%5:00:00:clothed:00 1 -3 unfortunate%3:00:04:: 2 -3 unforgettable%3:00:00:: 1 -3 unfitting%5:00:00:incongruous:00 1 -3 unexplored%5:00:00:unknown:00 1 -3 unequivocally%4:02:01:: 1 -3 unemployment%1:26:00:: 1 -3 uneasily%4:02:00:: 1 -3 undo%2:35:00:: 1 -3 undiminished%5:00:00:unmitigated:00 1 -3 undershirt%1:06:00:: 1 -3 underscore%2:32:00:: 1 -3 undergo%2:31:00:: 3 -3 underfoot%4:02:00:: 1 -3 underachievement%1:04:00:: 1 -3 unconcerned%3:00:00:: 1 -3 uncle_sam%1:18:00:: 1 -3 uncertain%3:00:01:: 2 -3 unbroken%3:00:02:: 1 -3 unbearable%5:00:00:intolerable:00 1 -3 unanimous%5:00:00:accordant:00 1 -3 unaided%5:00:02:unassisted:00 1 -3 ultraviolet_light%1:19:00:: 1 -3 ultraviolet%1:19:00:: 1 -3 ultracentrifuge%1:06:00:: 1 -3 ultimately%4:02:02:: 2 -3 ugly%3:00:00:: 1 -3 tyrosine%1:27:00:: 1 -3 tyranny%1:14:00:: 1 -3 two-thirds%1:23:00:: 1 -3 twenty-three%5:00:00:cardinal:00 1 -3 twenty-one%5:00:00:cardinal:00 1 -3 twenty-four_hours%1:28:00:: 1 -3 twenty-first%5:00:00:ordinal:00 1 -3 twenty-fifth%5:00:00:ordinal:00 1 -3 twenties%1:28:00:: 1 -3 tweed%1:06:00:: 1 -3 turn_up%2:35:00:: 2 -3 turn_to%2:42:00:: 5 -3 turbine%1:06:00:: 1 -3 tuning%1:04:00:: 1 -3 tumult%1:26:00:: 1 -3 truth%1:07:01:: 4 -3 trust%1:09:00:: 2 -3 trust%1:07:00:: 3 -3 trunk%1:20:00:: 1 -3 trunk%1:06:00:: 2 -3 trundle%2:38:00:: 1 -3 true%5:00:00:accurate:00 3 -3 trouser%1:06:00:: 1 -3 troublesome%5:00:00:difficult:00 1 -3 trouble%2:41:00:: 2 -3 trouble%2:37:00:: 3 -3 tropical%5:00:00:equatorial:00 1 -3 trivial%5:00:00:ordinary:00 2 -3 triumphant%5:00:00:elated:00 1 -3 triple%2:30:00:: 1 -3 triple%1:04:00:: 1 -3 trill%1:10:00:: 1 -3 trial%1:09:00:: 3 -3 treaty%1:10:00:: 1 -3 treat%2:40:00:: 5 -3 treasurer%1:18:00:: 1 -3 tread_on%2:38:00:: 1 -3 tread%2:38:01:: 1 -3 tread%2:38:00:: 2 -3 traveler%1:18:00:: 1 -3 travel%2:38:01:: 3 -3 trapper%1:18:00:: 1 -3 transport%1:06:00:: 1 -3 transplant%2:38:00:: 1 -3 transpiration%1:22:01:: 1 -3 transitional%3:01:00:: 1 -3 transition%1:11:00:: 2 -3 transformation%1:11:00:: 1 -3 transform%2:30:03:: 3 -3 transcend%2:42:00:: 1 -3 tranquilly%4:02:01:: 1 -3 tranquilizer%1:06:00:: 1 -3 tranquil%5:00:00:peaceful:00 1 -3 trait%1:07:00:: 1 -3 trained%5:00:00:skilled:00 2 -3 trail%2:38:00:: 2 -3 tragic%3:01:00:: 2 -3 traditional%5:00:00:orthodox:00 2 -3 trademark%1:07:00:: 1 -3 trade_name%1:10:00:: 1 -3 trade%1:04:02:: 4 -3 tractor%1:06:00:: 1 -3 tract%1:15:00:: 1 -3 tract%1:08:01:: 2 -3 track_down%2:33:00:: 1 -3 toxic%3:00:00:: 1 -3 tousled%5:00:00:untidy:00 1 -3 tourist%1:18:00:: 1 -3 tour%2:38:00:: 1 -3 tour%1:04:00:: 1 -3 touching%5:00:00:moving:01 1 -3 touch_off%2:36:00:: 1 -3 touch%2:42:00:: 4 -3 touch%2:35:01:: 5 -3 touch%2:30:00:: 6 -3 touch%1:09:01:: 2 -3 tottering%5:00:00:unsteady:00 1 -3 toss%1:04:01:: 1 -3 torture%2:37:00:: 1 -3 topography%1:07:00:: 1 -3 top_dog%1:18:00:: 1 -3 top%1:28:00:: 4 -3 top%1:26:00:: 5 -3 too_much%5:00:00:immoderate:00 1 -3 tonight%1:28:00:: 1 -3 tone_language%1:10:00:: 1 -3 tomorrow%4:02:00:: 1 -3 tolerant%3:00:00:: 1 -3 tolerable%5:00:00:acceptable:00 1 -3 tokyo%1:15:00:: 1 -3 toilet%1:06:00:: 1 -3 to_the_north%4:02:00:: 1 -3 to_the_contrary%4:02:00:: 1 -3 to_begin_with%4:02:00:: 1 -3 titled%3:00:00:: 1 -3 title%2:32:00:: 1 -3 title%1:10:01:: 3 -3 tire%2:29:01:: 2 -3 tire%2:29:00:: 1 -3 tip%1:21:00:: 2 -3 tip%1:10:00:: 3 -3 tingle%2:39:00:: 1 -3 timid%3:00:00:: 1 -3 timely%5:00:01:punctual:00 1 -3 time%2:31:00:: 2 -3 timber%1:27:00:: 1 -3 tightly%4:02:02:: 1 -3 tight%4:02:00:: 1 -3 tie_up%2:35:00:: 1 -3 tie%1:26:00:: 3 -3 tidings%1:10:00:: 1 -3 ticket%1:10:01:: 1 -3 thus_far%4:02:00:: 1 -3 thunderous%5:00:00:loud:00 1 -3 thump%2:38:00:: 1 -3 thrust%2:32:00:: 4 -3 throw_out%2:41:01:: 1 -3 throw_out%2:40:00:: 2 -3 throw_out%2:35:00:: 3 -3 throughout%4:02:00:: 1 -3 throng%1:14:00:: 1 -3 thrive%2:30:00:: 1 -3 three_times%4:02:01:: 1 -3 thread%2:38:00:: 1 -3 thread%2:35:00:: 2 -3 thoughtfully%4:02:00:: 2 -3 thorough%5:00:00:complete:00 2 -3 third%4:02:00:: 1 -3 third%1:24:00:: 3 -3 thiouracil%1:27:00:: 1 -3 think_over%2:31:00:: 1 -3 think%2:31:09:: 6 -3 thesis%1:10:00:: 1 -3 therefrom%4:02:02:: 1 -3 theater%1:10:00:: 2 -3 thank_you%1:10:00:: 1 -3 texture%1:09:00:: 2 -3 testing_room%1:06:00:: 1 -3 terrifying%5:00:00:alarming:00 1 -3 terrific%5:00:00:intense:00 1 -3 termination%1:28:00:: 1 -3 terminate%2:42:03:: 2 -3 term%1:09:00:: 4 -3 tentatively%4:02:00:: 1 -3 tension%1:26:02:: 3 -3 tension%1:19:00:: 4 -3 tendon%1:08:00:: 1 -3 tenderness%1:07:00:: 1 -3 tend%2:41:00:: 3 -3 temporal%5:00:00:impermanent:00 1 -3 temperature_gradient%1:24:00:: 1 -3 temper%1:12:01:: 1 -3 tell%2:31:01:: 8 -3 televise%2:32:00:: 1 -3 telephone_line%1:06:01:: 1 -3 telegraph%1:06:00:: 1 -3 teens%1:28:00:: 1 -3 technological%3:01:00:: 2 -3 technician%1:18:00:: 1 -3 teaching%1:09:00:: 2 -3 taunt%1:04:00:: 1 -3 taste%2:39:00:: 2 -3 taste%2:34:00:: 3 -3 taste%1:09:01:: 3 -3 task_force%1:14:00:: 1 -3 target%1:06:00:: 4 -3 tap%2:40:00:: 2 -3 tap%2:35:00:: 3 -3 tap%2:34:00:: 4 -3 tap%1:11:00:: 1 -3 tank%1:06:00:: 2 -3 talk_of%2:32:00:: 1 -3 talented%5:00:00:precocious:00 1 -3 take_up%2:42:00:: 4 -3 take_pride%2:37:00:: 1 -3 take_pains%2:41:00:: 1 -3 take_over%2:40:03:: 5 -3 take_it_easy%2:29:00:: 1 -3 take_in%2:42:00:: 1 -3 take_hold%2:41:00:: 1 -3 take_for_granted%2:31:00:: 1 -3 take_down%2:38:00:: 1 -3 take_a_breath%2:29:00:: 1 -3 tailored%5:00:00:plain:01 1 -3 tag%2:35:00:: 1 -3 tackle%2:41:00:: 1 -3 tack_hammer%1:06:00:: 1 -3 tack%2:35:00:: 1 -3 synthesize%2:31:00:: 1 -3 symptomatic_of%5:00:00:characteristic:00 1 -3 sympathize_with%2:37:00:: 1 -3 switch%2:40:00:: 2 -3 swiss%3:01:00:: 1 -3 swirl%2:38:01:: 1 -3 swirl%2:38:00:: 2 -3 swimming_pool%1:06:00:: 1 -3 swell%1:11:00:: 1 -3 sweetheart%1:18:02:: 2 -3 sweetheart%1:18:00:: 1 -3 sweet%5:00:00:melodious:00 3 -3 sweep_over%2:37:00:: 1 -3 sweep%2:42:00:: 4 -3 sweep%1:07:00:: 1 -3 sway%2:41:00:: 3 -3 sway%2:38:02:: 4 -3 swarm%2:42:00:: 1 -3 swarm%2:38:00:: 2 -3 swallow%1:13:00:: 1 -3 sustain%2:29:00:: 2 -3 suspicious%5:00:00:distrustful:00 1 -3 survivor%1:18:03:: 1 -3 surrounded%5:00:00:enclosed:00 1 -3 surfactant%1:27:00:: 1 -3 sure_enough%4:02:02:: 2 -3 sure_enough%4:02:00:: 1 -3 supreme%5:00:00:dominant:01 2 -3 supra%4:02:00:: 1 -3 support%2:32:00:: 6 -3 support%1:04:02:: 5 -3 supply%2:34:00:: 3 -3 supplant%2:41:00:: 1 -3 supervisor%1:18:00:: 1 -3 supernatural%3:00:00:: 1 -3 superiority%1:07:00:: 1 -3 super%5:00:00:superior:02 1 -3 sunray%1:19:00:: 1 -3 suitable%5:00:00:fit:02 2 -3 suit%1:04:00:: 2 -3 suicide%1:04:00:: 1 -3 suggestive_of%5:00:00:connotative:00 1 -3 suffuse%2:30:01:: 1 -3 suffocate%2:35:00:: 1 -3 suffice%2:42:00:: 1 -3 suds%1:17:00:: 1 -3 suddenly%4:02:04:: 3 -3 succession%1:07:00:: 1 -3 success%1:18:00:: 4 -3 succeeding%3:00:00:: 1 -3 subway%1:06:00:: 1 -3 subspecies%1:14:00:: 1 -3 subsistence%1:21:00:: 1 -3 subordinate%1:18:00:: 1 -3 submission%1:10:00:: 1 -3 subjectivist%1:18:00:: 1 -3 subject_matter%1:10:00:: 1 -3 subdued%5:00:00:soft:04 1 -3 sub-interval%1:09:00:: 1 -3 stupidly%4:02:00:: 1 -3 study%1:09:02:: 6 -3 stud%2:42:00:: 1 -3 struggling%5:00:00:troubled:00 1 -3 struggle%2:38:00:: 3 -3 structure%1:08:00:: 4 -3 strong%5:00:00:powerful:00 4 -3 stroke%1:04:00:: 1 -3 striving%1:04:00:: 1 -3 string%1:06:05:: 2 -3 strikingly%4:02:00:: 1 -3 strike%2:41:00:: 7 -3 strict%5:00:00:exact:00 1 -3 stricken%5:00:01:ill:01 1 -3 stretched%5:00:00:flexible:01 1 -3 stretch%2:30:04:: 5 -3 stretch%1:17:00:: 1 -3 stretch%1:04:01:: 2 -3 stress%1:26:03:: 3 -3 streetcar%1:06:00:: 1 -3 street%1:06:01:: 2 -3 stream%2:29:00:: 2 -3 stream%1:04:00:: 3 -3 stratum%1:15:00:: 1 -3 strategic%3:01:00:: 1 -3 strange%5:00:00:uneasy:00 4 -3 strange%5:00:00:foreign:01 3 -3 strait%1:17:00:: 1 -3 strained%5:00:00:awkward:00 1 -3 strain%2:37:00:: 2 -3 strain%2:34:00:: 3 -3 strain%1:26:02:: 2 -3 strain%1:10:00:: 3 -3 straighten%2:38:01:: 3 -3 straggler%1:18:00:: 1 -3 stout%5:00:00:resolute:00 1 -3 storyline%1:10:00:: 1 -3 story%1:10:04:: 4 -3 storm%1:26:00:: 2 -3 storehouse%1:06:00:: 1 -3 stop%2:33:00:: 7 -3 stop%1:11:00:: 1 -3 stop%1:04:02:: 3 -3 stop%1:04:00:: 2 -3 stooped%5:00:00:unerect:00 1 -3 stool%1:06:00:: 1 -3 stoicism%1:07:00:: 1 -3 stoic%5:00:00:unemotional:00 1 -3 stock%1:06:00:: 2 -3 stirrup%1:06:00:: 1 -3 stimulation%1:09:00:: 2 -3 stimulate%2:37:00:: 3 -3 stimulate%2:29:00:: 4 -3 still%5:00:00:calm:00 3 -3 still%4:02:02:: 4 -3 stick_with%2:42:00:: 1 -3 stick_to%2:30:00:: 3 -3 step_up%2:30:00:: 1 -3 step_on%2:38:00:: 1 -3 step_by_step%4:02:00:: 1 -3 steer%2:38:01:: 2 -3 stealthily%4:02:00:: 1 -3 steal%2:33:00:: 3 -3 steady%5:00:00:invariable:00 2 -3 stay_at%2:42:01:: 1 -3 stay%2:30:01:: 6 -3 stave_off%2:41:00:: 1 -3 status_quo%1:26:00:: 1 -3 station_wagon%1:06:00:: 1 -3 station_keeper%1:18:00:: 1 -3 starve%2:34:02:: 2 -3 starting%1:04:00:: 1 -3 star%2:42:00:: 1 -3 star%1:18:01:: 2 -3 star%1:17:01:: 3 -3 standing%1:26:00:: 1 -3 stand%2:42:02:: 8 -3 stamp%2:38:00:: 1 -3 stamp%2:35:01:: 2 -3 stall%1:06:00:: 2 -3 stairway%1:06:00:: 1 -3 staircase%1:06:00:: 1 -3 stable%1:06:00:: 1 -3 st._paul%1:15:00:: 1 -3 squirrel%1:05:00:: 1 -3 squirm%2:38:00:: 1 -3 squint%2:29:00:: 1 -3 squeak%2:39:00:: 1 -3 squawk%2:32:01:: 1 -3 squat%5:00:00:short:03 1 -3 squarely%4:02:03:: 1 -3 squared%5:00:00:square:00 1 -3 spy%1:18:00:: 1 -3 spur%1:10:00:: 1 -3 spring_training%1:28:00:: 1 -3 spring%1:17:00:: 3 -3 spread_over%2:35:00:: 1 -3 spread%2:38:02:: 8 -3 spread%2:38:00:: 7 -3 spread%1:11:00:: 1 -3 spread%1:07:02:: 2 -3 spraying%1:04:03:: 1 -3 spray%2:35:01:: 1 -3 spray%1:27:01:: 1 -3 spouse%1:18:00:: 1 -3 spotless%5:00:00:clean:01 1 -3 sporting%3:01:00:: 2 -3 sporadic%3:00:00:: 1 -3 spontaneity%1:07:00:: 1 -3 sponsorship%1:04:01:: 1 -3 split%2:35:00:: 2 -3 splinter%1:17:00:: 1 -3 spleen%1:08:00:: 1 -3 spiritually%4:02:00:: 1 -3 spirited%3:00:00:: 1 -3 spirit%1:10:00:: 6 -3 spirit%1:07:02:: 7 -3 spine%1:08:00:: 1 -3 spin_around%2:38:00:: 1 -3 spill_out%2:38:00:: 1 -3 spend%2:40:01:: 3 -3 spellbound%5:00:00:enchanted:00 1 -3 speed_up%2:30:00:: 1 -3 speed%2:38:00:: 3 -3 spectroscopy%1:04:00:: 1 -3 specimen%1:08:00:: 2 -3 specify%2:42:00:: 3 -3 specially%4:02:01:: 1 -3 specialize%2:30:00:: 1 -3 special%5:00:00:specific:00 5 -3 spear%2:35:00:: 1 -3 speak%2:39:00:: 5 -3 sparse%5:00:00:distributed:00 1 -3 spare%5:00:00:thin:03 1 -3 spanish%3:01:00:: 1 -3 spaced%5:00:00:distributed:00 1 -3 space_probe%1:06:00:: 1 -3 space%2:38:00:: 1 -3 soviets%1:14:00:: 1 -3 southward%4:02:00:: 1 -3 southern%3:00:01:: 3 -3 south_america%1:17:00:: 1 -3 source%1:18:01:: 5 -3 sound_wave%1:11:00:: 1 -3 sound%5:00:00:reasonable:00 2 -3 soul%1:12:00:: 3 -3 sort_out%2:31:00:: 1 -3 sorry%5:00:00:compassionate:00 2 -3 sorrow%1:12:00:: 1 -3 sonny%1:18:00:: 1 -3 song%1:11:00:: 2 -3 song%1:04:00:: 3 -3 solitary%5:00:01:unsocial:00 1 -3 solemn%5:00:00:formal:01 1 -3 sole%1:06:00:: 1 -3 soil%1:17:00:: 3 -3 softly%4:02:04:: 2 -3 softly%4:02:02:: 3 -3 sodium_nitrate%1:27:00:: 1 -3 sock%1:06:00:: 1 -3 socially%4:02:00:: 1 -3 socialistic%3:00:00:: 1 -3 socialist%3:01:00:: 1 -3 social_science%1:09:00:: 1 -3 soberly%4:02:00:: 1 -3 sober_up%2:30:00:: 1 -3 so_much%5:00:00:much(a):00 1 -3 so-so%5:00:00:ordinary:00 1 -3 snuggle%2:35:00:: 1 -3 snub%2:32:01:: 1 -3 snort%2:32:00:: 1 -3 snort%2:29:00:: 2 -3 snap%2:35:01:: 2 -3 snap%2:30:00:: 3 -3 snake%2:38:01:: 1 -3 snail%1:05:00:: 1 -3 smuggle%2:40:00:: 1 -3 smug%5:00:00:contented:00 1 -3 smoothness%1:07:00:: 1 -3 smoothly%4:02:00:: 1 -3 smooth%5:00:00:diplomatic:00 2 -3 smolder%2:30:00:: 1 -3 smell%2:39:02:: 3 -3 smart%5:00:00:stylish:00 2 -3 smallest%5:00:00:minimal:00 2 -3 slum%1:15:00:: 1 -3 slugger%1:18:00:: 1 -3 slowing%1:07:00:: 1 -3 slow%3:00:02:: 2 -3 slovenly%5:00:00:untidy:00 1 -3 slot%1:10:00:: 1 -3 slippery%3:00:00:: 1 -3 slide%2:38:02:: 3 -3 slice%1:21:00:: 1 -3 slender%5:00:00:narrow:00 2 -3 sleeping%5:00:00:asleep(p):00 2 -3 slaughter%2:35:00:: 1 -3 slaughter%1:04:00:: 1 -3 slash%2:35:02:: 2 -3 slash%2:35:00:: 3 -3 slanting%5:00:00:inclined:01 1 -3 slab%1:06:00:: 1 -3 skylight%1:06:00:: 1 -3 skirmish%1:04:00:: 1 -3 skin%1:27:02:: 2 -3 skin%1:06:01:: 3 -3 skin%1:05:01:: 4 -3 skillfully%4:02:00:: 1 -3 skillful%5:00:00:skilled:00 1 -3 skid%2:38:03:: 1 -3 skeptical%5:00:00:incredulous:00 1 -3 skeptic%1:18:00:: 1 -3 skedaddle%2:38:00:: 1 -3 size%1:07:01:: 2 -3 situate%2:42:00:: 1 -3 sit_up%2:29:00:: 1 -3 sit_back%2:29:00:: 1 -3 sire%2:29:00:: 1 -3 sioux%1:18:00:: 1 -3 sink%2:38:06:: 5 -3 sink%2:38:00:: 4 -3 sinister%5:00:00:alarming:00 1 -3 singular%5:00:00:extraordinary:00 1 -3 singer%1:18:00:: 1 -3 sing%2:32:08:: 3 -3 sinfulness%1:07:00:: 1 -3 simply%4:02:01:: 4 -3 simplify%2:30:00:: 2 -3 signify%2:32:02:: 1 -3 significantly%4:02:03:: 2 -3 significant%3:00:01:: 3 -3 signed%3:00:00:: 1 -3 signal%2:32:01:: 2 -3 sign%1:06:01:: 4 -3 sight%1:06:00:: 4 -3 sidestep%2:32:00:: 1 -3 side%5:00:00:incidental:00 2 -3 side%1:15:01:: 7 -3 siberia%1:15:00:: 1 -3 shy%5:00:00:unconfident:00 1 -3 shy%5:00:00:timid:00 2 -3 shut_out%2:41:00:: 1 -3 shudder%2:38:00:: 2 -3 shrug%1:10:00:: 1 -3 shrub%1:20:00:: 1 -3 shrink%2:30:02:: 1 -3 shred%1:23:00:: 1 -3 shout%1:10:00:: 1 -3 shortly%4:02:00:: 2 -3 shorten%2:30:02:: 2 -3 short_story%1:10:00:: 1 -3 short%5:00:00:insufficient:00 4 -3 short%1:06:00:: 1 -3 shoot%2:38:03:: 5 -3 shoot%2:38:00:: 6 -3 shock%2:37:02:: 2 -3 shipment%1:06:00:: 1 -3 shipment%1:04:00:: 2 -3 shine%2:42:01:: 4 -3 shifting%5:00:00:moving:02 1 -3 shift%1:28:00:: 3 -3 shift%1:04:01:: 4 -3 shielding%1:04:00:: 1 -3 shield%1:06:02:: 1 -3 sherry%1:13:00:: 1 -3 shelter%1:06:01:: 2 -3 shell%1:27:00:: 2 -3 sheet_of_paper%1:10:00:: 1 -3 sheet%1:06:00:: 3 -3 shed%2:35:02:: 2 -3 shear%2:35:00:: 1 -3 shaving%1:04:00:: 1 -3 sharply%4:02:01:: 2 -3 sharp%5:00:00:unpleasant:00 5 -3 sharp%5:00:00:steep:00 7 -3 sharp%5:00:00:high:03 6 -3 share%1:04:01:: 4 -3 share%1:04:00:: 3 -3 shapeless%5:00:00:unformed:00 1 -3 shape%2:30:00:: 3 -3 shape%1:08:00:: 3 -3 shake_off%2:38:00:: 1 -3 shaft%1:10:01:: 2 -3 shaft%1:10:00:: 1 -3 shadow%2:38:00:: 1 -3 shadow%1:09:00:: 3 -3 shade%1:06:00:: 3 -3 sex_act%1:04:00:: 1 -3 severely%4:02:02:: 2 -3 severe%5:00:00:strong:00 2 -3 sever%2:35:00:: 2 -3 seventeenth%5:00:00:ordinal:00 1 -3 seven%1:23:00:: 1 -3 settle%2:30:02:: 7 -3 setback%1:11:01:: 1 -3 set_up%2:36:02:: 6 -3 set_out%2:38:00:: 3 -3 set_off%2:38:00:: 2 -3 set_about%2:41:00:: 1 -3 set%5:00:00:nonmoving:00 2 -3 set%2:36:01:: 9 -3 set%1:06:00:: 4 -3 service%2:41:00:: 1 -3 service%1:04:07:: 5 -3 serve%2:42:00:: 9 -3 serve%2:41:01:: 10 -3 serve%2:35:00:: 11 -3 serious%5:00:00:intellectual:00 4 -3 series%1:10:00:: 3 -3 sergeant%1:18:00:: 2 -3 sequence%1:07:00:: 2 -3 sequence%1:06:00:: 3 -3 sequence%1:04:00:: 4 -3 septic%3:00:00:: 1 -3 sept%1:28:00:: 1 -3 separation%1:26:00:: 1 -3 separation%1:11:00:: 2 -3 separate%2:35:02:: 5 -3 separate%2:31:00:: 6 -3 sentence%1:28:00:: 3 -3 sensory%3:00:00:: 2 -3 sensitivity%1:12:00:: 3 -3 sensing%1:09:00:: 1 -3 sensible%3:00:04:: 1 -3 sense_datum%1:09:00:: 1 -3 sense%1:10:01:: 6 -3 sensational%5:00:00:impressive:00 2 -3 sensational%3:00:00:: 1 -3 senior%3:00:00:: 1 -3 senior%1:18:00:: 1 -3 send%2:40:00:: 7 -3 semester_hour%1:04:00:: 1 -3 semantic%3:01:00:: 1 -3 selfish%3:00:00:: 1 -3 self-esteem%1:12:00:: 1 -3 self-determination%1:26:00:: 1 -3 self-confidence%1:09:00:: 1 -3 selective%5:00:00:discriminating:00 1 -3 seizure%1:26:00:: 1 -3 seize%2:40:02:: 4 -3 see%2:39:04:: 16 -3 sediment%1:17:00:: 1 -3 secure%3:00:01:: 1 -3 sector%1:09:00:: 3 -3 secretly%4:02:00:: 1 -3 secretion%1:22:00:: 1 -3 second_moment%1:09:00:: 1 -3 sec%1:28:00:: 1 -3 searchlight%1:06:00:: 1 -3 search%2:31:00:: 3 -3 seal_off%2:35:00:: 1 -3 seal%2:35:03:: 1 -3 seal%2:35:00:: 2 -3 seal%1:06:01:: 1 -3 sea%1:23:00:: 2 -3 scuttle%2:38:00:: 1 -3 sculpture%1:04:00:: 2 -3 sculptor%1:18:00:: 1 -3 scuffle%1:04:00:: 1 -3 scrutiny%1:04:00:: 1 -3 scribe%2:35:00:: 1 -3 screen%1:06:04:: 2 -3 screech%2:32:00:: 2 -3 scowl%2:29:00:: 1 -3 score%2:32:00:: 3 -3 scoot%2:38:00:: 1 -3 scoop_up%2:35:00:: 1 -3 scold%2:32:00:: 1 -3 scientifically%4:02:00:: 1 -3 schoolroom%1:06:00:: 1 -3 schoolmate%1:18:00:: 1 -3 schoolhouse%1:06:00:: 1 -3 school_system%1:06:00:: 1 -3 school_principal%1:18:00:: 1 -3 schematic%5:00:00:nonrepresentational:00 1 -3 scent%1:09:01:: 1 -3 scenery%1:06:00:: 1 -3 scandal%1:10:00:: 1 -3 scan%1:04:00:: 1 -3 savings%1:21:00:: 1 -3 saturn%1:17:00:: 1 -3 sandal%1:06:00:: 1 -3 sameness%1:07:00:: 1 -3 salvage%2:41:00:: 1 -3 salient%5:00:00:conspicuous:00 1 -3 salesmanship%1:09:00:: 1 -3 saleslady%1:18:00:: 1 -3 saint%1:18:03:: 1 -3 sailor%1:18:00:: 1 -3 sail%2:38:01:: 2 -3 saddlebag%1:06:00:: 1 -3 rusty%5:00:00:rusted:00 1 -3 rustler%1:18:00:: 1 -3 rustle%2:40:00:: 2 -3 rural_area%1:15:00:: 1 -3 running%5:00:00:moving:02 1 -3 runner%1:18:01:: 1 -3 runaway%5:00:00:uncontrolled:00 1 -3 run_over%2:29:00:: 1 -3 run_out%2:38:02:: 3 -3 run_out%2:38:01:: 2 -3 run_around%2:38:00:: 1 -3 run%2:42:01:: 12 -3 run%2:35:04:: 13 -3 run%2:30:07:: 15 -3 run%2:30:03:: 14 -3 rumble%2:39:00:: 1 -3 rule%1:09:03:: 5 -3 ruin%1:26:00:: 1 -3 row%1:10:00:: 2 -3 routine%5:00:00:regular:00 1 -3 rounded%3:00:00:: 1 -3 round_out%2:30:03:: 1 -3 round_out%2:30:00:: 2 -3 round%4:02:00:: 1 -3 round%2:38:00:: 1 -3 rotation%1:04:00:: 1 -3 rot%2:30:00:: 1 -3 rooster%1:05:00:: 1 -3 room%1:26:00:: 3 -3 romanticize%2:31:00:: 1 -3 roman%1:18:00:: 1 -3 roll_over%2:38:00:: 1 -3 rocky%5:00:00:rough:00 1 -3 robe%1:06:00:: 1 -3 robbery%1:04:00:: 1 -3 rising%3:00:00:: 1 -3 rise%2:30:09:: 11 -3 rise%1:04:00:: 2 -3 rigidly%4:02:00:: 1 -3 rightfield%1:06:00:: 1 -3 right_hand%1:08:00:: 1 -3 right%4:02:01:: 5 -3 right%4:02:00:: 6 -3 rifleman%1:18:01:: 1 -3 ridiculous%5:00:00:foolish:00 2 -3 ridicule%2:32:00:: 1 -3 richness%1:07:03:: 1 -3 rhythmic%3:00:00:: 1 -3 rewrite%2:32:00:: 1 -3 revulsion%1:12:00:: 1 -3 revision%1:04:00:: 1 -3 revised%5:00:00:altered:00 1 -3 revise%2:41:00:: 2 -3 review%2:31:02:: 3 -3 revert%2:30:00:: 1 -3 revel%2:34:00:: 1 -3 revamp%2:30:00:: 1 -3 return%2:38:12:: 5 -3 return%1:11:02:: 3 -3 return%1:04:02:: 4 -3 retreat%1:04:00:: 1 -3 retract%2:32:00:: 1 -3 retinal%3:01:00:: 1 -3 reticulate%3:00:00:: 1 -3 retaliation%1:04:00:: 1 -3 resuspend%2:30:00:: 1 -3 restrain%2:30:00:: 2 -3 rest%1:28:00:: 3 -3 respects%1:10:00:: 1 -3 respectful%3:00:00:: 1 -3 resonant%5:00:00:reverberant:00 1 -3 resonance%1:19:00:: 2 -3 resolve%2:31:04:: 4 -3 researcher%1:18:00:: 1 -3 rescue%1:04:00:: 1 -3 rescind%2:32:00:: 1 -3 reread%2:31:00:: 1 -3 repudiate%2:32:00:: 1 -3 representative%5:00:00:typical:00 1 -3 repose%1:04:00:: 1 -3 reportedly%4:02:00:: 1 -3 repetitious%5:00:00:unvaried:00 1 -3 repertory%1:06:00:: 1 -3 repeat%2:41:00:: 5 -3 repeal%2:32:00:: 1 -3 reorganize%2:41:00:: 1 -3 reopen%2:35:00:: 1 -3 renew%2:30:00:: 2 -3 rendezvous%1:04:00:: 1 -3 removed%5:00:00:separate:00 1 -3 remove%2:41:02:: 4 -3 remove%2:38:00:: 5 -3 remote%5:00:02:far:00 3 -3 remodel%2:30:00:: 1 -3 remnant%1:24:00:: 1 -3 reminisce%2:31:00:: 1 -3 reminder%1:10:00:: 1 -3 reminder%1:09:00:: 2 -3 remembrance%1:09:00:: 1 -3 remedy%2:30:00:: 1 -3 remand%2:32:00:: 1 -3 remaining%5:00:00:unexhausted:00 2 -3 rely_upon%2:31:01:: 1 -3 reluctant%5:00:00:unwilling:00 1 -3 reliving%1:09:00:: 1 -3 religiously%4:02:00:: 1 -3 religious%3:00:00:: 3 -3 relief%1:25:00:: 4 -3 relief%1:18:00:: 5 -3 relief%1:04:02:: 6 -3 relentlessly%4:02:00:: 1 -3 relent%2:42:00:: 1 -3 release%2:32:00:: 4 -3 release%2:29:01:: 5 -3 release%2:29:00:: 6 -3 release%1:04:01:: 2 -3 relax%2:30:02:: 3 -3 relation_to%1:24:00:: 1 -3 rejoin%2:41:00:: 1 -3 reign%2:41:00:: 1 -3 regular_army%1:14:00:: 1 -3 register%2:39:00:: 4 -3 refreshed%5:00:00:rested:00 1 -3 refrain%1:10:00:: 1 -3 reform%1:04:00:: 1 -3 reflective%5:00:00:thoughtful:00 1 -3 reference%1:09:00:: 6 -3 refer%2:32:00:: 6 -3 reexamine%2:31:00:: 1 -3 reelect%2:41:00:: 1 -3 reel%1:06:02:: 1 -3 reduction%1:22:00:: 2 -3 reduce%2:40:04:: 4 -3 reduce%2:37:00:: 5 -3 reduce%2:30:11:: 6 -3 redeem%2:41:04:: 1 -3 red%5:00:00:bloody:00 5 -3 recruit%2:40:00:: 2 -3 recovery%1:11:00:: 1 -3 recover%2:30:00:: 3 -3 record%1:10:02:: 5 -3 record%1:04:00:: 6 -3 reconstruct%2:31:00:: 1 -3 recommended%5:00:00:advisable:00 1 -3 recollection%1:09:01:: 2 -3 recognized%5:00:00:acknowledged:00 1 -3 reckon%2:31:03:: 2 -3 reception%1:14:00:: 2 -3 reception%1:10:00:: 3 -3 receiver%1:18:01:: 2 -3 receiver%1:06:01:: 3 -3 receipt%1:04:00:: 1 -3 recede%2:38:00:: 2 -3 recapture%2:37:00:: 1 -3 rebuke%2:32:00:: 1 -3 rebuff%2:32:00:: 1 -3 rebel%1:18:00:: 2 -3 reassemble%2:36:00:: 1 -3 reason%2:31:01:: 1 -3 reason%1:09:00:: 3 -3 rear_window%1:06:00:: 1 -3 rear%5:00:00:back(a):00 1 -3 reap%2:35:00:: 1 -3 realization%1:09:00:: 1 -3 realization%1:04:00:: 2 -3 realism%1:07:00:: 2 -3 real%5:00:00:concrete:00 5 -3 reagent%1:27:00:: 1 -3 reading%1:09:02:: 3 -3 readiness%1:26:00:: 1 -3 read%2:32:02:: 8 -3 reactivate%2:30:00:: 1 -3 reactionary%5:00:00:right:03 1 -3 reactant%1:27:00:: 1 -3 reach_out%2:42:00:: 2 -3 reach_into%2:42:00:: 1 -3 rattle%2:38:00:: 2 -3 rattle%1:11:00:: 1 -3 rationalize%2:32:00:: 1 -3 rationale%1:09:00:: 1 -3 rating%1:04:00:: 2 -3 rate_of_growth%1:28:00:: 1 -3 ransack%2:40:00:: 1 -3 ransack%2:35:02:: 2 -3 rank%1:14:01:: 3 -3 ranch_house%1:06:00:: 1 -3 ran_into%2:38:01:: 1 -3 rally%2:35:00:: 1 -3 raise%1:07:00:: 1 -3 railing%1:06:00:: 1 -3 rail%1:06:03:: 2 -3 raid%1:04:00:: 1 -3 radius_of_curvature%1:07:00:: 1 -3 radiochlorine%1:27:00:: 1 -3 radioactive%3:00:00:: 1 -3 radio_source%1:17:00:: 1 -3 radical%1:27:02:: 2 -3 racketeer%1:18:00:: 1 -3 racket%1:11:00:: 1 -3 race%2:33:00:: 2 -3 quietly%4:02:02:: 3 -3 quiet%5:00:00:unostentatious:00 3 -3 quicken%2:30:01:: 1 -3 question%2:32:09:: 4 -3 query%2:32:00:: 1 -3 quell%2:30:00:: 1 -3 quavering%5:00:00:unsteady:00 1 -3 quarter-century%1:28:00:: 1 -3 quart%1:23:01:: 1 -3 quantitatively%4:02:00:: 1 -3 qualify%2:32:02:: 2 -3 quake%1:11:00:: 1 -3 quaint%5:00:00:strange:00 2 -3 quaint%5:00:00:nonmodern:00 1 -3 python%1:05:00:: 1 -3 pyrometer%1:06:00:: 1 -3 puzzle_over%2:31:00:: 1 -3 putt%2:35:00:: 1 -3 put_up%2:41:01:: 2 -3 put_up%2:36:00:: 3 -3 put_on%2:30:00:: 2 -3 put%2:40:00:: 5 -3 push_back%2:35:00:: 1 -3 push_aside%2:38:00:: 1 -3 push%2:41:00:: 4 -3 push%2:38:02:: 5 -3 pursuer%1:18:00:: 1 -3 purport%2:32:00:: 1 -3 purity%1:26:00:: 1 -3 purchase%1:21:00:: 2 -3 puncher%1:18:00:: 1 -3 punch%2:35:00:: 1 -3 pumps%1:06:00:: 1 -3 pump%2:33:00:: 2 -3 pulley%1:06:00:: 1 -3 pull%2:35:04:: 4 -3 pucker%2:35:00:: 1 -3 publisher%1:18:00:: 2 -3 published%3:00:00:: 1 -3 publicize%2:32:00:: 1 -3 public_opinion%1:09:00:: 1 -3 pubescent%5:00:00:immature:01 1 -3 psychically%4:02:00:: 1 -3 pry%2:35:00:: 1 -3 prowess%1:09:00:: 1 -3 provoke%2:37:00:: 1 -3 provoke%2:36:00:: 2 -3 provoke%2:32:00:: 3 -3 provisional%5:00:00:conditional:00 1 -3 provincial%3:01:00:: 1 -3 proverb%1:10:00:: 1 -3 protozoa%1:05:00:: 1 -3 protogeometric%5:00:00:nonrepresentational:00 1 -3 protestant_denomination%1:14:00:: 1 -3 protection%1:21:00:: 3 -3 prosperity%1:26:02:: 1 -3 prosper%2:30:00:: 1 -3 prospect%1:09:01:: 2 -3 prosecution%1:04:00:: 1 -3 prosecute%2:41:01:: 1 -3 prosecute%2:41:00:: 2 -3 prose%1:10:00:: 1 -3 prophetic%3:00:00:: 1 -3 prophet%1:18:00:: 1 -3 pronouncement%1:10:00:: 1 -3 pronounce%2:32:01:: 1 -3 pronounce%2:32:00:: 2 -3 promptly%4:02:00:: 2 -3 promise%2:42:00:: 4 -3 prominence%1:26:00:: 1 -3 prolong%2:30:00:: 1 -3 proliferation%1:22:00:: 1 -3 projection%1:10:00:: 2 -3 prohibition%1:10:02:: 1 -3 progressively%4:02:01:: 1 -3 progressive%5:00:00:liberal:00 2 -3 progressive%3:00:01:: 1 -3 progress%2:38:00:: 2 -3 program%2:36:00:: 2 -3 program%1:10:04:: 4 -3 profitably%4:02:00:: 1 -3 profitable%5:00:00:advantageous:00 2 -3 profit_margin%1:21:00:: 1 -3 profile%1:15:01:: 2 -3 proficient%5:00:00:skilled:00 1 -3 professional%1:18:00:: 1 -3 profess%2:32:03:: 2 -3 procure%2:40:00:: 1 -3 proclaim%2:32:03:: 3 -3 process%1:09:00:: 3 -3 proceeds%1:21:00:: 1 -3 proceed%2:30:00:: 4 -3 privilege%1:07:00:: 2 -3 private_school%1:14:00:: 1 -3 prison%1:06:00:: 1 -3 principle%1:09:04:: 4 -3 primitive%5:00:00:natural:01 2 -3 primeval%5:00:00:early:00 1 -3 prime%5:00:01:first:00 2 -3 primary%1:04:00:: 1 -3 pride%1:07:00:: 3 -3 prick%2:35:00:: 1 -3 pricing%1:09:00:: 1 -3 priceless%5:00:00:valuable:00 1 -3 price_competition%1:24:00:: 1 -3 prey%1:18:00:: 1 -3 prewar%3:00:00:: 1 -3 pretty_much%4:02:00:: 1 -3 pretty%5:00:00:bad:00 2 -3 presumption%1:09:00:: 1 -3 pressure%1:26:00:: 4 -3 pressing%5:00:00:imperative:00 1 -3 president%1:18:03:: 4 -3 president%1:18:02:: 5 -3 preside%2:41:00:: 2 -3 presentation%1:10:00:: 3 -3 present%2:40:02:: 6 -3 present%2:40:00:: 7 -3 present%2:32:02:: 8 -3 prepositional%3:01:00:: 1 -3 premix%1:13:00:: 1 -3 prejudice%1:09:01:: 1 -3 pregnant%3:00:00:: 1 -3 prednisone%1:27:00:: 1 -3 precisely%4:02:02:: 3 -3 precious%5:00:00:valuable:00 2 -3 precedent%1:09:00:: 1 -3 precede%2:41:00:: 3 -3 practice%1:04:04:: 3 -3 power_tool%1:06:00:: 1 -3 power%2:34:00:: 1 -3 pound%2:35:01:: 2 -3 potentiality%1:26:00:: 1 -3 potato_yellow-dwarf_virus%1:05:00:: 1 -3 postulate%2:32:00:: 1 -3 post_office%1:14:01:: 1 -3 post%2:35:02:: 1 -3 post%2:32:03:: 2 -3 post%1:15:00:: 1 -3 post%1:06:01:: 2 -3 post%1:04:00:: 3 -3 positivism%1:09:00:: 1 -3 positive%5:00:00:certain(p):02 10 -3 position%1:15:03:: 8 -3 position%1:04:02:: 9 -3 portray%2:36:00:: 2 -3 portable%3:00:00:: 1 -3 populous%5:00:00:inhabited:00 1 -3 population%1:09:00:: 3 -3 popping%1:11:00:: 1 -3 pop_out%2:30:01:: 1 -3 pop%2:38:00:: 1 -3 pop%2:35:00:: 2 -3 poncho%1:06:00:: 1 -3 polymerization%1:22:00:: 1 -3 polls%1:15:00:: 1 -3 politics%1:04:00:: 3 -3 political_system%1:14:00:: 1 -3 political_campaign%1:11:00:: 1 -3 politeness%1:07:00:: 1 -3 polite%3:00:00:: 1 -3 polish%3:01:00:: 1 -3 polish%2:30:01:: 2 -3 police_department%1:14:00:: 1 -3 police_car%1:06:00:: 1 -3 polarization%1:19:00:: 1 -3 polarity%1:24:01:: 1 -3 polar%5:00:00:charged:00 1 -3 poison%2:41:00:: 1 -3 poise%2:38:00:: 1 -3 point_out%2:32:02:: 3 -3 point_of_intersection%1:09:00:: 1 -3 point%1:25:00:: 8 -3 poignant%5:00:00:moving:01 1 -3 pm%5:00:00:postmeridian:00 1 -3 plumber%1:18:00:: 1 -3 pluck%2:35:00:: 1 -3 pledge%2:32:00:: 1 -3 pleased%5:00:00:proud:00 2 -3 playmate%1:18:00:: 1 -3 player%1:18:02:: 2 -3 play%2:36:11:: 13 -3 platonism%1:09:00:: 1 -3 platinum%1:27:00:: 1 -3 plate%1:06:06:: 3 -3 plate%1:06:00:: 4 -3 plasticity%1:07:00:: 1 -3 plaster%1:27:00:: 1 -3 planting%1:04:00:: 1 -3 planning%1:09:00:: 3 -3 plane%1:26:00:: 3 -3 place_of_business%1:06:00:: 1 -3 place-kicking%1:04:00:: 1 -3 place%2:31:03:: 6 -3 place%1:15:05:: 9 -3 pity%1:11:00:: 2 -3 piteous%5:00:00:unfortunate:00 1 -3 pitch%1:04:03:: 2 -3 pit_run%1:27:00:: 1 -3 pioneer%2:36:00:: 1 -3 pinpoint%2:40:00:: 1 -3 pinch%2:35:00:: 1 -3 pimp%1:18:00:: 1 -3 pile%1:23:00:: 2 -3 pigeon%1:05:00:: 1 -3 piece_of_paper%1:10:00:: 1 -3 picture%1:10:02:: 6 -3 picture%1:10:01:: 7 -3 picture%1:10:00:: 5 -3 pictorial%3:01:00:: 1 -3 pick_up%2:40:02:: 6 -3 pick_up%2:35:00:: 7 -3 picasso%1:18:00:: 1 -3 piano_stool%1:06:00:: 1 -3 physicist%1:18:00:: 1 -3 physical_science%1:09:00:: 1 -3 physical%5:00:00:natural:03 4 -3 phrase%2:32:00:: 1 -3 phrase%1:10:01:: 2 -3 photochemical_exchange%1:19:00:: 1 -3 photo%1:06:00:: 1 -3 phenothiazine%1:27:00:: 1 -3 phalanx%1:08:00:: 1 -3 pervade%2:35:00:: 1 -3 persistency%1:07:00:: 1 -3 persist_in%2:42:00:: 1 -3 persecution%1:04:00:: 1 -3 periodically%4:02:00:: 1 -3 perceptual%3:01:00:: 1 -3 per_centum%1:24:00:: 1 -3 people%1:14:02:: 3 -3 penetrate%2:31:00:: 2 -3 pending%5:00:00:unfinished:01 1 -3 penalize%2:41:00:: 1 -3 pen%2:36:00:: 1 -3 peel%2:35:00:: 1 -3 peddler%1:18:00:: 1 -3 pectoral%1:08:00:: 1 -3 peck%2:35:01:: 1 -3 pear%1:13:00:: 1 -3 peak%1:23:00:: 1 -3 pea%1:13:00:: 1 -3 pay_out%2:40:00:: 1 -3 pay%2:42:00:: 7 -3 paved%3:00:00:: 1 -3 pause%1:04:00:: 2 -3 patronage%1:04:00:: 1 -3 patrolman%1:18:00:: 1 -3 patriotism%1:07:00:: 1 -3 patiently%4:02:00:: 1 -3 patient%3:00:00:: 1 -3 path%1:15:00:: 3 -3 patch%1:15:00:: 2 -3 passion%1:07:00:: 2 -3 passerby%1:18:00:: 1 -3 passage%1:04:01:: 4 -3 passage%1:04:00:: 5 -3 pass_on%2:40:03:: 2 -3 pass_away%2:30:00:: 1 -3 pass%2:42:00:: 10 -3 pass%2:35:00:: 11 -3 pass%2:32:01:: 12 -3 pass%2:30:01:: 13 -3 pass%1:28:00:: 2 -3 particulate%3:00:00:: 1 -3 part%1:08:01:: 10 -3 park%2:38:00:: 2 -3 parish%1:14:00:: 1 -3 paramount%5:00:00:dominant:01 1 -3 parallelism%1:07:00:: 1 -3 paradox%1:10:00:: 1 -3 parade%1:14:00:: 1 -3 paper%1:10:02:: 5 -3 panting%5:00:00:breathless:00 1 -3 paneling%1:06:00:: 1 -3 pane%1:06:00:: 1 -3 pale%5:00:00:colorless:02 4 -3 palace%1:06:01:: 1 -3 pair%2:41:00:: 1 -3 painted%5:00:00:delineated:00 1 -3 package%1:14:00:: 1 -3 package%1:06:00:: 2 -3 pacify%2:37:00:: 1 -3 ozone%1:27:00:: 1 -3 owl%1:05:00:: 1 -3 owe%2:40:00:: 3 -3 overtake%2:33:00:: 1 -3 oversimplified%5:00:00:simple:02 1 -3 overrun%2:38:01:: 1 -3 override%2:31:00:: 1 -3 overreach%2:41:00:: 1 -3 overnighter%1:18:00:: 1 -3 overlook%2:42:01:: 2 -3 overhead%1:21:00:: 1 -3 overcoat%1:06:00:: 1 -3 overboard%4:02:01:: 1 -3 overboard%4:02:00:: 2 -3 over_and_over_again%4:02:00:: 1 -3 oval%1:25:00:: 1 -3 outweigh%2:33:00:: 1 -3 outward%3:00:00:: 1 -3 outstanding%5:00:00:conspicuous:00 2 -3 outskirts%1:15:00:: 1 -3 outside%5:00:00:extramural:00 5 -3 outside%5:00:00:exterior:00 6 -3 outside%3:00:04:: 4 -3 outline%1:15:00:: 1 -3 outlet%1:06:01:: 1 -3 outburst%1:10:00:: 1 -3 out_of_hand%4:02:00:: 1 -3 out_of_doors%4:02:00:: 1 -3 out-of-town%5:00:00:distant:01 1 -3 out-of-bounds%5:00:00:foul:00 1 -3 out%3:00:02:: 2 -3 osmotic_pressure%1:19:00:: 1 -3 orthographic%3:01:00:: 1 -3 orthodox%3:01:00:: 1 -3 orthodox%3:00:00:: 2 -3 originally%4:02:00:: 1 -3 originality%1:09:00:: 1 -3 original%1:06:00:: 1 -3 origin%1:07:00:: 2 -3 organizational%3:01:00:: 1 -3 organization%1:04:00:: 4 -3 ore%1:27:00:: 1 -3 ordinary%1:18:01:: 1 -3 ordering%1:04:00:: 2 -3 order%2:41:01:: 4 -3 ordeal%1:11:00:: 1 -3 ordain%2:41:01:: 1 -3 orchestration%1:10:00:: 1 -3 orange%1:07:00:: 2 -3 optimal%5:00:00:best:00 1 -3 opposition%1:04:00:: 3 -3 opposite%5:00:02:different:00 5 -3 opposite%5:00:00:other:00 4 -3 opposed%5:00:00:anti:00 1 -3 oppose%2:33:00:: 4 -3 opinion%1:09:01:: 3 -3 operate%2:33:00:: 4 -3 opener%1:11:00:: 1 -3 open_to%5:00:00:receptive:00 1 -3 open%5:00:00:unrestricted:00 7 -3 opaque%3:00:00:: 1 -3 onward%5:00:00:advancing:00 1 -3 only_when%4:02:00:: 1 -3 onlooker%1:18:00:: 1 -3 one-man%5:00:00:single(a):00 1 -3 one-fifth%1:23:00:: 1 -3 one%5:00:00:same:00 4 -3 once%5:00:00:past:00 1 -3 onboard%4:02:00:: 1 -3 on_the_spot%4:02:00:: 1 -3 ominously%4:02:00:: 1 -3 omen%1:11:00:: 1 -3 oleophilic%3:00:00:: 1 -3 older%5:00:00:senior:00 3 -3 older%3:00:00:: 2 -3 old_south%1:15:00:: 1 -3 old_man%1:18:03:: 2 -3 offspring%1:18:00:: 1 -3 official%1:18:00:: 2 -3 offer%2:40:09:: 5 -3 offer%2:40:03:: 6 -3 off%3:00:00:: 1 -3 odd%5:00:00:inexact:00 3 -3 oct%1:28:00:: 1 -3 occurrence%1:26:00:: 2 -3 occupy%2:42:01:: 4 -3 occupied%3:00:00:: 1 -3 occasion%2:36:00:: 1 -3 occasion%1:16:00:: 3 -3 obtainable%5:00:00:available:00 1 -3 observe%2:41:02:: 6 -3 obscurity%1:07:02:: 1 -3 obscure%2:39:00:: 1 -3 objection%1:10:00:: 2 -3 object%1:09:00:: 2 -3 obedient%3:00:00:: 1 -3 obedience%1:04:00:: 1 -3 oak%1:20:02:: 1 -3 o%1:27:00:: 2 -3 nun%1:18:00:: 1 -3 numbing%5:00:00:desensitizing:00 1 -3 numb%5:00:00:insensible:00 1 -3 nuisance%1:09:00:: 1 -3 nudge%2:35:00:: 1 -3 nucleus%1:17:00:: 2 -3 nucleus%1:14:00:: 3 -3 nowise%4:02:00:: 1 -3 now_and_then%4:02:00:: 1 -3 novelty%1:07:00:: 1 -3 notice%1:09:00:: 2 -3 noteworthy%5:00:00:worthy:00 1 -3 noted%5:00:00:known:00 1 -3 note%2:32:01:: 4 -3 note%1:10:05:: 4 -3 notch%2:35:00:: 1 -3 nostrils%1:08:00:: 1 -3 nose%1:06:00:: 2 -3 northward%4:02:00:: 1 -3 northerner%1:18:00:: 1 -3 north_carolina%1:15:00:: 1 -3 north-american%3:01:00:: 1 -3 north%1:15:01:: 2 -3 norm%1:09:00:: 2 -3 nonverbal%5:00:01:communicative:00 1 -3 nonspecifically%4:02:00:: 1 -3 nonexistent%3:00:00:: 1 -3 nomination%1:04:00:: 1 -3 noble%5:00:00:impressive:00 2 -3 night_game%1:04:00:: 1 -3 next_door%4:02:00:: 1 -3 news%1:10:02:: 3 -3 new_year's_eve%1:28:00:: 1 -3 new%5:00:00:other:00 5 -3 neutralize%2:41:00:: 1 -3 neutral%5:00:00:unreactive:00 3 -3 neurotic%3:01:00:: 1 -3 nervously%4:02:00:: 1 -3 nervous_breakdown%1:26:00:: 1 -3 nervous%5:00:00:troubled:00 2 -3 nerves%1:26:00:: 1 -3 neocortical%3:01:00:: 1 -3 neglect%2:31:01:: 4 -3 nectar%1:27:00:: 1 -3 necrosis%1:19:00:: 1 -3 nature%1:07:01:: 5 -3 natural_resource%1:21:00:: 1 -3 native_land%1:15:00:: 1 -3 native%5:00:00:natural:01 2 -3 native%1:18:00:: 1 -3 nationalistic%5:00:00:patriotic:00 1 -3 narrowly%4:02:00:: 1 -3 naked%5:00:00:unprotected:00 2 -3 nail%1:08:00:: 1 -3 nail%1:06:00:: 2 -3 mythology%1:14:00:: 1 -3 myriad%5:00:00:incalculable:00 1 -3 mutually_exclusive%5:00:00:incompatible:01 1 -3 mutual%5:00:00:shared:00 1 -3 mutual%5:00:00:reciprocal:00 2 -3 mutely%4:02:00:: 1 -3 mute%5:00:00:inarticulate:00 1 -3 musician%1:18:00:: 2 -3 museum%1:06:00:: 1 -3 muscular%3:00:04:: 2 -3 multi%5:00:00:multiple:00 1 -3 mule%1:05:00:: 1 -3 mud_digger%1:18:00:: 1 -3 much_as%4:02:00:: 1 -3 mover%1:18:02:: 1 -3 movement%1:19:00:: 7 -3 move_up%2:38:01:: 1 -3 move_up%2:38:00:: 2 -3 move%2:41:00:: 8 -3 move%2:37:00:: 9 -3 move%2:36:00:: 10 -3 move%1:04:01:: 2 -3 mouth%2:32:00:: 1 -3 mount%2:38:01:: 5 -3 mount%2:38:00:: 6 -3 motivated%3:00:00:: 1 -3 moth%1:05:00:: 1 -3 mostly%4:02:03:: 2 -3 mortar%2:35:00:: 1 -3 mortar%1:06:00:: 1 -3 mortal%3:00:00:: 1 -3 morphophonemic_system%1:10:00:: 1 -3 morocco%1:15:00:: 1 -3 moroccan%3:01:00:: 1 -3 montreal%1:15:00:: 1 -3 monstrous%5:00:00:evil:00 2 -3 monotony%1:07:00:: 1 -3 monologue%1:10:00:: 1 -3 monic_polynomial%1:09:00:: 1 -3 momentary%5:00:00:short:02 1 -3 momentarily%4:02:02:: 1 -3 molten%5:00:00:melted:00 1 -3 moisten%2:30:00:: 1 -3 modulation%1:10:01:: 1 -3 modest%3:00:02:: 1 -3 modernize%2:30:00:: 1 -3 modern%5:00:00:progressive:01 4 -3 model%1:09:01:: 5 -3 moan%2:32:00:: 1 -3 mixture%1:13:00:: 2 -3 mitigate%2:32:00:: 1 -3 misunderstand%2:31:01:: 1 -3 missionary%1:18:00:: 1 -3 miss%1:18:00:: 1 -3 misgiving%1:12:00:: 1 -3 misfortune%1:26:00:: 2 -3 miserable%5:00:00:unhappy:00 1 -3 misconception%1:09:00:: 1 -3 mischief%1:04:00:: 1 -3 misbehavior%1:04:00:: 1 -3 minority%1:14:00:: 1 -3 minor_league%1:14:00:: 1 -3 minor%3:00:02:: 2 -3 minister%2:41:12:: 1 -3 mining%1:04:00:: 1 -3 mine%2:34:00:: 1 -3 mindful%3:00:00:: 1 -3 mind%1:18:00:: 4 -3 milk%2:30:00:: 1 -3 military_force%1:14:00:: 1 -3 military%3:00:01:: 3 -3 miles_per_hour%1:28:01:: 1 -3 mildly%4:02:00:: 1 -3 might%1:07:00:: 1 -3 midst%1:15:00:: 1 -3 mexico%1:15:00:: 1 -3 methodical%5:00:00:organized:01 1 -3 metaphor%1:10:00:: 1 -3 metallic%3:00:00:: 1 -3 merit%1:07:02:: 2 -3 merge%2:30:01:: 2 -3 merciless%3:00:00:: 1 -3 mercifully%4:02:00:: 1 -3 memory%1:06:00:: 4 -3 melt%2:30:01:: 1 -3 melancholy%5:00:00:sad:00 1 -3 meet%2:39:00:: 13 -3 medicine%1:06:00:: 2 -3 medicine%1:04:00:: 3 -3 medical_school%1:14:00:: 1 -3 mechanism%1:04:00:: 2 -3 mechanics%1:09:00:: 1 -3 mean%5:00:00:ignoble:01 3 -3 mathematically%4:02:00:: 1 -3 mathematical%3:01:00:: 1 -3 materialize%2:30:00:: 1 -3 material%3:00:01:: 2 -3 match%2:30:01:: 5 -3 mast%1:06:00:: 1 -3 masseur%1:18:00:: 1 -3 masses%1:14:00:: 1 -3 mass%2:38:00:: 1 -3 mass%1:07:01:: 7 -3 marvelous%5:00:00:incredible:00 2 -3 marvelous%5:00:00:extraordinary:00 1 -3 martian%1:18:00:: 1 -3 marriage_contract%1:10:00:: 1 -3 marksmanship%1:09:00:: 1 -3 marketplace%1:04:00:: 1 -3 market%2:40:00:: 1 -3 mark%1:10:04:: 3 -3 marginal_cost%1:07:00:: 1 -3 marginal%5:00:00:minimal:00 2 -3 marching%5:00:00:moving:02 1 -3 march_on%2:38:00:: 1 -3 march%1:04:02:: 4 -3 map%2:36:00:: 1 -3 many_more%5:00:00:more(a):02 1 -3 manufacture%2:36:00:: 1 -3 manned%3:00:00:: 1 -3 manipulate%2:35:00:: 2 -3 manifestation%1:10:00:: 2 -3 mandatory%5:00:00:obligatory:00 1 -3 manage%2:41:03:: 3 -3 manage%2:41:01:: 4 -3 man%1:18:06:: 7 -3 mammal%1:05:00:: 1 -3 make_way%2:38:00:: 1 -3 make_up%2:40:00:: 3 -3 make_possible%2:42:01:: 1 -3 make_it%2:41:00:: 2 -3 make_fun%2:32:00:: 1 -3 make%2:41:13:: 24 -3 major-general%1:18:00:: 1 -3 mainland%1:17:00:: 1 -3 maiden%1:18:00:: 1 -3 magnified%5:00:00:increased:00 1 -3 magnetic_field%1:19:00:: 1 -3 magic%5:00:00:supernatural:00 1 -3 madman%1:18:00:: 1 -3 made%5:00:00:ready-made:00 1 -3 machinery%1:14:00:: 2 -3 lyric%5:00:00:emotional:00 1 -3 luxurious%5:00:00:indulgent:00 1 -3 lurid%5:00:00:violent:00 1 -3 lurid%5:00:00:sensational:00 2 -3 lurch%2:38:00:: 2 -3 luminous%5:00:00:bright:00 1 -3 lucid%5:00:00:clear:00 1 -3 lower_limit%1:23:00:: 1 -3 low%5:00:00:contemptible:00 6 -3 low%4:02:00:: 1 -3 loving%3:00:00:: 1 -3 love%1:09:00:: 2 -3 lousy%5:00:00:bad:00 1 -3 louisiana%1:15:00:: 1 -3 lot%1:26:00:: 4 -3 lot%1:06:00:: 5 -3 lost%3:00:02:: 3 -3 loss%1:11:01:: 5 -3 lose%2:40:06:: 7 -3 lord%1:18:01:: 2 -3 loom%2:42:06:: 3 -3 looking_at%1:04:00:: 1 -3 look_on%2:39:00:: 1 -3 look_for%2:37:00:: 2 -3 long_bone%1:08:00:: 1 -3 long-run%5:00:00:long:02 1 -3 long-range%5:00:00:long:01 2 -3 lodge%2:42:02:: 1 -3 lock_up%2:35:01:: 1 -3 lock_up%2:35:00:: 2 -3 local%3:01:01:: 4 -3 lobule%1:08:00:: 1 -3 loathe%2:37:00:: 1 -3 loan%2:40:00:: 1 -3 loaf%1:13:00:: 1 -3 loaded%3:00:00:: 2 -3 load%2:35:02:: 2 -3 load%1:23:00:: 2 -3 live_on%2:34:00:: 1 -3 live%5:00:00:alive(p):01 10 -3 little%5:00:00:soft:04 7 -3 literalness%1:07:00:: 1 -3 liquid_air%1:27:00:: 1 -3 lint%1:27:02:: 1 -3 link%2:35:00:: 2 -3 linguistic%3:01:01:: 2 -3 linger%2:42:02:: 1 -3 lined%5:00:00:bordered:00 1 -3 linearly%4:02:00:: 1 -3 linear%3:00:01:: 2 -3 line_up%2:42:00:: 1 -3 line%1:06:07:: 15 -3 line%1:04:01:: 16 -3 limp%5:00:00:weak:00 1 -3 limp%5:00:00:stale:00 2 -3 limp%2:38:00:: 1 -3 limiting%5:00:01:restrictive:00 1 -3 limited%5:00:00:restricted:00 2 -3 limited%5:00:00:noncomprehensive:00 3 -3 limitation%1:09:00:: 1 -3 limitation%1:07:00:: 2 -3 limit%1:28:00:: 2 -3 lilac%1:20:00:: 1 -3 likewise%4:02:01:: 2 -3 lightning%1:11:00:: 2 -3 lighting%1:26:00:: 1 -3 light-green%5:00:00:chromatic:00 1 -3 light-footed%3:00:00:: 1 -3 light%3:00:06:: 6 -3 light%3:00:03:: 4 -3 light%3:00:02:: 5 -3 light%2:38:00:: 3 -3 light%1:18:00:: 8 -3 life_history%1:10:00:: 1 -3 life_class%1:04:00:: 1 -3 life%1:19:00:: 11 -3 lieutenant_governor%1:18:00:: 1 -3 license%1:26:01:: 2 -3 library%1:06:01:: 1 -3 liberal%5:00:00:generous:01 4 -3 liberal%3:00:00:: 3 -3 level_off%2:30:00:: 1 -3 level%5:00:01:even:01 1 -3 lettering%1:10:00:: 1 -3 let_alone%4:02:00:: 1 -3 lest%4:02:00:: 1 -3 lesson%1:04:00:: 4 -3 length%1:07:02:: 3 -3 leisure%1:28:00:: 1 -3 legislative%3:01:00:: 2 -3 legendary%5:00:00:known:00 1 -3 legal%5:00:00:valid:00 3 -3 left_over%5:00:00:unexhausted:00 1 -3 left%4:02:03:: 1 -3 leer%2:39:00:: 1 -3 leave_out%2:31:01:: 1 -3 leave%2:40:02:: 15 -3 leave%2:31:02:: 16 -3 learned%5:00:00:educated:00 2 -3 learn%2:31:02:: 4 -3 lean_back%2:38:00:: 1 -3 lean%2:42:01:: 3 -3 leading%5:00:00:superior:01 2 -3 leadership%1:09:00:: 4 -3 lead%1:09:00:: 3 -3 lead%1:04:01:: 4 -3 layer%2:35:00:: 1 -3 lay_off%2:42:00:: 1 -3 law_of_nature%1:09:00:: 1 -3 law%1:09:02:: 5 -3 lavender%5:00:00:chromatic:00 1 -3 laurels%1:10:00:: 1 -3 launch%2:36:00:: 4 -3 latter%5:00:00:late:00 2 -3 latin_america%1:15:00:: 1 -3 latin-american%3:01:00:: 1 -3 lather%1:17:00:: 1 -3 latest%5:00:00:current:00 2 -3 later%5:00:00:late:00 2 -3 late%5:00:00:past:00 3 -3 late%5:00:00:dead:01 4 -3 late%4:02:01:: 2 -3 last%1:28:00:: 1 -3 largest%5:00:00:maximal:00 2 -3 lapse%1:04:00:: 1 -3 lap%2:42:00:: 1 -3 lao%3:01:00:: 1 -3 languid%5:00:00:lethargic:00 1 -3 landlord%1:18:00:: 1 -3 land_area%1:07:00:: 1 -3 land%2:30:00:: 3 -3 lake%1:17:00:: 1 -3 laity%1:14:00:: 1 -3 lady%1:18:01:: 2 -3 laden%5:00:00:full:00 1 -3 lacy%5:00:00:fancy:00 1 -3 labor_union%1:14:00:: 1 -3 label%2:35:00:: 2 -3 label%2:32:01:: 3 -3 label%1:10:01:: 1 -3 korean_war%1:04:00:: 1 -3 knuckle%1:08:00:: 1 -3 knock_off%2:35:00:: 1 -3 knight%1:18:00:: 1 -3 knee%1:05:01:: 2 -3 kinetic%3:01:00:: 1 -3 kinda%4:02:00:: 1 -3 kill%1:04:00:: 1 -3 kidnap%2:35:00:: 1 -3 kick%1:04:00:: 1 -3 kerygma%1:10:00:: 1 -3 kentucky%1:15:00:: 1 -3 keep_out%2:41:00:: 1 -3 keep_company%2:42:00:: 1 -3 keep_an_eye_on%2:41:00:: 2 -3 keep%2:42:01:: 9 -3 keep%2:41:02:: 10 -3 keep%2:34:00:: 11 -3 keen%5:00:00:perceptive:00 1 -3 justification%1:09:00:: 1 -3 junior%3:00:00:: 1 -3 junior%1:18:02:: 1 -3 jungle%1:17:00:: 1 -3 jumble%1:26:00:: 1 -3 judgment%1:09:00:: 4 -3 judge%1:18:01:: 2 -3 jointly%4:02:02:: 1 -3 joint%1:08:00:: 1 -3 jimhickey%1:18:00:: 1 -3 jejunum%1:08:00:: 1 -3 jeer%2:32:00:: 1 -3 jealous%5:00:00:desirous:00 1 -3 japan%1:15:00:: 2 -3 janitor%1:18:00:: 1 -3 jam%1:13:00:: 1 -3 jail%1:06:00:: 1 -3 jagged%5:00:00:uneven:00 1 -3 jaded%5:00:00:tired:00 1 -3 jacket%1:06:01:: 2 -3 jackass%1:18:00:: 1 -3 itch%2:39:01:: 1 -3 issue%1:10:00:: 2 -3 isotropic%3:00:00:: 1 -3 isotonic%3:00:00:: 1 -3 isolation%1:26:00:: 1 -3 isolate%2:30:01:: 2 -3 irritate%2:37:00:: 1 -3 irritably%4:02:01:: 1 -3 irregularity%1:04:00:: 1 -3 irony%1:07:00:: 2 -3 irons%1:06:00:: 1 -3 ionic%3:01:00:: 1 -3 iodinating%3:00:00:: 1 -3 involved%5:00:00:encumbered:00 2 -3 invite%2:41:01:: 5 -3 investor%1:18:00:: 1 -3 invention%1:04:00:: 3 -3 invasion%1:04:00:: 1 -3 invariant%5:00:02:invariable:00 1 -3 inure%2:30:00:: 1 -3 introductory%5:00:00:opening:00 1 -3 introduction%1:04:01:: 1 -3 intrinsically%4:02:00:: 1 -3 intra%3:00:00:: 1 -3 intolerable%3:00:00:: 1 -3 interview%1:10:00:: 2 -3 intervention%1:04:00:: 1 -3 interrupt%2:30:04:: 3 -3 interpretation%1:04:02:: 2 -3 interplanetary_space%1:15:00:: 1 -3 interlocking%5:00:00:complex:00 1 -3 interlace%2:35:00:: 1 -3 interference%1:10:00:: 1 -3 interference%1:04:00:: 2 -3 interfere%2:41:00:: 2 -3 interfacial_tension%1:19:00:: 1 -3 interface%1:06:00:: 1 -3 interest%1:04:01:: 7 -3 interdependent%5:00:00:dependent:00 1 -3 intent%1:09:00:: 1 -3 intensify%2:30:02:: 1 -3 intensely%4:02:00:: 1 -3 intended%3:00:00:: 1 -3 intelligent%5:00:00:reasonable:00 3 -3 intelligence_test%1:04:00:: 1 -3 intellectual%5:00:00:mental:00 2 -3 intellectual%1:18:00:: 1 -3 integrity%1:26:00:: 1 -3 integral%5:00:00:intrinsic:00 1 -3 insult%2:32:00:: 1 -3 insulin%1:08:00:: 1 -3 insufficient%3:00:00:: 1 -3 instrumentation%1:06:00:: 1 -3 institutional%3:01:00:: 1 -3 installation%1:06:00:: 2 -3 insolently%4:02:00:: 1 -3 insolent%5:00:00:disrespectful:00 1 -3 insolence%1:07:00:: 1 -3 insofar%4:02:00:: 1 -3 insignificant%5:00:00:inconsiderable:00 1 -3 insight%1:12:00:: 2 -3 insight%1:09:01:: 3 -3 inside_out%4:02:00:: 1 -3 insert%2:35:01:: 3 -3 inscription%1:10:00:: 1 -3 inquiry%1:10:01:: 2 -3 input%1:10:00:: 1 -3 innovation%1:06:00:: 1 -3 inner%5:00:00:intrinsic:00 3 -3 inn%1:06:00:: 1 -3 inlet%1:17:00:: 1 -3 inject%2:30:00:: 2 -3 initiate%2:36:00:: 2 -3 inhibition%1:04:00:: 1 -3 inhabit%2:42:00:: 1 -3 ingredient%1:06:00:: 1 -3 infuriate%2:37:00:: 1 -3 informal%3:00:01:: 1 -3 influence%1:19:00:: 4 -3 infer%2:31:00:: 1 -3 infectious_disease%1:26:00:: 1 -3 infant%1:18:00:: 1 -3 infancy%1:28:00:: 1 -3 inexperienced%3:00:00:: 1 -3 inevitable%5:00:00:predictable:00 2 -3 industrial%3:00:00:: 2 -3 induct%2:41:00:: 1 -3 individualist%1:18:00:: 1 -3 indifferent%5:00:00:unconcerned:00 2 -3 indian%3:01:00:: 1 -3 indefinitely%4:02:00:: 1 -3 incubation_period%1:28:00:: 1 -3 increase%1:07:00:: 4 -3 increase%1:04:00:: 5 -3 inconsequential%5:00:00:unimportant:00 1 -3 incitement%1:04:02:: 1 -3 inaugurate%2:41:00:: 1 -3 inactive%5:00:00:unreactive:00 1 -3 in_vivo%4:02:00:: 1 -3 in_vitro%3:00:00:: 1 -3 in_use%5:00:00:occupied:00 1 -3 in_unison%4:02:02:: 1 -3 in_the_last_analysis%4:02:00:: 1 -3 in_the_air%4:02:00:: 1 -3 in_full%4:02:00:: 1 -3 in_advance%4:02:00:: 1 -3 in%1:23:00:: 1 -3 impute%2:31:00:: 1 -3 impurity%1:26:00:: 2 -3 impulse%1:12:01:: 2 -3 improvise%2:36:00:: 1 -3 improved%3:00:00:: 1 -3 imprisonment%1:04:01:: 1 -3 imprison%2:41:00:: 1 -3 implicit%3:00:00:: 1 -3 implement%2:41:01:: 1 -3 impinging%1:11:00:: 1 -3 impetus%1:19:00:: 1 -3 impair%2:30:01:: 2 -3 immensely%4:02:01:: 1 -3 immediate%3:00:00:: 2 -3 imbed%2:35:00:: 1 -3 imaginative%5:00:00:creative:00 1 -3 illustration%1:10:01:: 2 -3 illustrate%2:36:01:: 3 -3 illuminating%3:00:00:: 1 -3 illegal%3:00:00:: 1 -3 ill-starred%5:00:00:unfortunate:00 1 -3 ill%4:02:00:: 1 -3 ignore%2:31:03:: 4 -3 ignorant%5:00:02:uneducated:00 1 -3 idly%4:02:00:: 1 -3 idiotic%5:00:00:insane:00 1 -3 identification%1:10:01:: 3 -3 ideal%5:00:00:utopian:00 2 -3 icebox%1:06:00:: 1 -3 ice_water%1:13:00:: 1 -3 icbm%1:06:00:: 1 -3 hysterical%5:00:00:neurotic:00 1 -3 hypothetical%5:00:00:theoretical:00 1 -3 hypothesize%2:31:00:: 1 -3 hypocrite%1:18:00:: 1 -3 hydrocarbon%1:27:00:: 1 -3 husky%5:00:00:robust:00 1 -3 hurtle%2:38:01:: 1 -3 hurt%5:00:02:injured:00 2 -3 hurt%5:00:01:injured:00 1 -3 hurt%2:37:00:: 5 -3 hurrying%5:00:00:fast:01 1 -3 hurried%3:00:00:: 1 -3 hurl%2:38:00:: 2 -3 humbly%4:02:00:: 1 -3 humble%5:00:00:inferior:01 1 -3 huddle_together%2:38:00:: 1 -3 huddle%2:38:00:: 2 -3 hp%1:23:00:: 1 -3 howl%2:32:02:: 1 -3 hours%1:28:01:: 2 -3 hot%3:00:02:: 3 -3 hostility%1:07:00:: 1 -3 hostile%3:00:02:: 2 -3 host%1:18:01:: 4 -3 horror%1:12:00:: 3 -3 horribly%4:02:00:: 1 -3 horn%1:05:01:: 2 -3 horde%1:14:00:: 1 -3 hopelessly%4:02:01:: 1 -3 hopeless%3:00:00:: 1 -3 hopefully%4:02:00:: 1 -3 hoot%2:32:00:: 1 -3 honor%2:41:01:: 2 -3 honor%1:26:00:: 2 -3 honor%1:07:00:: 3 -3 honolulu%1:15:00:: 1 -3 honeymoon%2:42:00:: 1 -3 homesteader%1:18:00:: 1 -3 homesick%5:00:00:unhappy:00 1 -3 homely%5:00:00:comfortable:00 2 -3 home%3:01:00:: 2 -3 home%1:06:02:: 4 -3 hollering%1:10:00:: 1 -3 holler%2:32:06:: 1 -3 hold_up%2:39:00:: 2 -3 hold_up%2:30:00:: 3 -3 hold_out%2:33:00:: 2 -3 hold_off%2:33:00:: 1 -3 hold%2:42:05:: 13 -3 hold%2:42:01:: 14 -3 hold%2:35:02:: 15 -3 hitler%1:18:00:: 1 -3 hit%2:40:05:: 7 -3 hit%2:33:02:: 8 -3 hinge%1:06:00:: 1 -3 hinder%2:41:01:: 1 -3 hillside%1:17:00:: 1 -3 hideout%1:15:00:: 1 -3 hideous%5:00:00:offensive:01 1 -3 herpetologist%1:18:00:: 1 -3 hereinafter%4:02:00:: 1 -3 hereafter%4:02:00:: 1 -3 here_and_now%1:28:00:: 1 -3 hem%1:06:00:: 1 -3 helpless%5:00:00:hopeless:00 2 -3 help%1:18:00:: 2 -3 heir%1:18:00:: 1 -3 height%1:07:01:: 3 -3 hegelian%3:01:00:: 1 -3 heavy%5:00:00:wide:00 5 -3 heave%2:35:01:: 2 -3 heated%5:00:00:hot:01 1 -3 hearing%1:15:00:: 3 -3 healthy%5:00:00:sound:00 2 -3 headline%1:10:00:: 1 -3 headache%1:26:00:: 2 -3 head_off%2:41:00:: 1 -3 head%2:38:02:: 3 -3 head%1:19:00:: 6 -3 hazard%1:26:00:: 1 -3 hawaiian_islands%1:15:00:: 1 -3 hawaii%1:15:01:: 2 -3 havoc%1:04:00:: 1 -3 have%2:40:02:: 18 -3 have%2:29:00:: 19 -3 haunt%2:38:00:: 1 -3 haunt%2:37:00:: 2 -3 hatching%1:22:00:: 1 -3 harvest%2:35:00:: 1 -3 harshly%4:02:02:: 1 -3 harsh%5:00:01:unpleasant:00 1 -3 harmony%1:10:01:: 2 -3 harm%2:29:00:: 1 -3 hardware%1:06:02:: 1 -3 hardtack%1:13:00:: 1 -3 hardly_a%5:00:00:few:00 1 -3 hard%5:00:01:effortful:00 5 -3 hard%4:02:05:: 2 -3 hang_up%2:35:01:: 2 -3 hang_on%2:30:00:: 2 -3 handstand%1:04:00:: 1 -3 handspike%1:06:00:: 1 -3 handsome%5:00:00:generous:01 2 -3 handle%2:35:00:: 4 -3 handbag%1:06:00:: 1 -3 hand%1:09:00:: 4 -3 hall%1:06:04:: 4 -3 half_mile%1:23:00:: 1 -3 hail%1:19:00:: 1 -3 gust%1:19:00:: 1 -3 gush%2:38:00:: 1 -3 gunman%1:18:00:: 1 -3 guitar%1:06:00:: 1 -3 guided%5:00:00:led:00 1 -3 guerrilla%1:18:00:: 1 -3 grumble%2:32:00:: 2 -3 grudge%1:12:00:: 1 -3 growth%1:22:02:: 3 -3 growth%1:14:00:: 4 -3 growing%1:22:00:: 1 -3 grow%2:36:00:: 7 -3 grow%2:29:00:: 8 -3 grotesque%5:00:00:strange:00 2 -3 grip%2:35:03:: 2 -3 grind%2:35:00:: 2 -3 grim%5:00:00:sarcastic:00 3 -3 grim%5:00:00:cheerless:00 4 -3 greet%2:31:00:: 3 -3 greatest%5:00:00:superior:01 4 -3 graze%2:35:01:: 1 -3 gray%5:00:00:southern:02 4 -3 gray%1:06:00:: 2 -3 graveyard%1:15:00:: 1 -3 gravel%1:27:00:: 1 -3 grave%5:00:00:critical:03 2 -3 gratification%1:26:00:: 1 -3 grapple%2:41:00:: 1 -3 grapevine%1:10:00:: 1 -3 grape_arbor%1:06:00:: 1 -3 granular%5:00:00:coarse:00 1 -3 grant%2:40:00:: 4 -3 grant%1:21:02:: 3 -3 granny%1:18:00:: 1 -3 grandeur%1:07:01:: 1 -3 graduate%5:00:00:high:02 1 -3 graduate%2:40:01:: 2 -3 gracefully%4:02:00:: 1 -3 government_office%1:06:00:: 1 -3 govern%2:41:00:: 3 -3 gouge%2:35:00:: 1 -3 gossip%1:10:00:: 1 -3 goose%1:05:00:: 1 -3 good_night%1:10:00:: 1 -3 good_luck%1:26:00:: 1 -3 good_humor%1:12:00:: 1 -3 good_fortune%1:26:00:: 1 -3 good%5:00:00:righteous:00 8 -3 gone%5:00:00:dead:01 3 -3 goitre%1:26:00:: 1 -3 goddamned%5:00:02:cursed:00 1 -3 goddam%5:00:00:cursed:00 1 -3 go_to_sleep%2:29:01:: 1 -3 go_to%2:32:00:: 3 -3 go_out%2:38:01:: 3 -3 go_on%2:35:00:: 5 -3 go_off%2:30:00:: 2 -3 go_into%2:42:00:: 2 -3 go_down%2:30:00:: 3 -3 go_away%2:38:00:: 2 -3 go_along%2:42:00:: 2 -3 go%2:39:00:: 11 -3 go%2:35:00:: 12 -3 go%2:34:00:: 13 -3 go%2:30:02:: 14 -3 glow%1:26:00:: 1 -3 glow%1:07:00:: 2 -3 gloves%1:06:00:: 1 -3 glottochronological%3:01:00:: 1 -3 glossary%1:10:00:: 1 -3 globulin%1:27:00:: 1 -3 glisten%2:39:00:: 1 -3 glide%2:38:00:: 1 -3 gleeful%5:00:00:joyous:00 1 -3 glee%1:12:00:: 1 -3 gleaming%5:00:00:bright:00 1 -3 gleam%2:39:01:: 1 -3 gleam%2:39:00:: 2 -3 gleam%1:07:00:: 1 -3 glaring%5:00:00:bright:00 1 -3 give_up%2:42:00:: 4 -3 give_up%2:40:05:: 5 -3 give_up%2:40:03:: 6 -3 give_away%2:40:00:: 1 -3 give_away%2:32:00:: 2 -3 give%2:40:08:: 25 -3 gifted%5:00:00:precocious:00 1 -3 ghoul%1:18:01:: 1 -3 get_up%2:29:01:: 4 -3 get_to%2:30:00:: 2 -3 get_rid_of%2:30:00:: 2 -3 get_out%2:38:00:: 3 -3 get_off%2:38:02:: 1 -3 get_down%2:38:02:: 1 -3 get_by%2:41:00:: 1 -3 get_a_look%2:39:00:: 1 -3 get%2:32:03:: 14 -3 get%2:30:01:: 15 -3 gesture%2:32:00:: 1 -3 gesture%1:04:02:: 3 -3 germanium%1:27:00:: 1 -3 geometry%1:09:00:: 1 -3 gently%4:02:03:: 3 -3 gently%4:02:01:: 2 -3 gentile%3:01:00:: 1 -3 genial%5:00:00:friendly:01 1 -3 genesis%1:11:00:: 1 -3 generate%2:36:02:: 2 -3 generalist%1:18:00:: 1 -3 general_manager%1:18:00:: 1 -3 general%5:00:00:undiversified:00 2 -3 gender%1:10:00:: 1 -3 gear%2:30:00:: 1 -3 gay%5:00:02:joyous:00 2 -3 gay%5:00:00:indulgent:00 3 -3 gay%5:00:00:colorful:03 4 -3 gathering%1:14:00:: 1 -3 gathering%1:04:00:: 2 -3 gather%2:30:00:: 4 -3 gas_jet%1:06:00:: 1 -3 gardener%1:18:00:: 1 -3 garden%2:36:00:: 1 -3 gaping%5:00:00:open:08 1 -3 gap%1:07:00:: 1 -3 gangster%1:18:00:: 1 -3 gallop%2:38:01:: 2 -3 future%5:00:00:incoming:00 4 -3 fuse%2:30:00:: 1 -3 fury%1:26:00:: 2 -3 fury%1:07:00:: 3 -3 furnish%2:40:01:: 2 -3 fundamental_law%1:10:00:: 1 -3 fund%1:21:01:: 2 -3 functioning%1:04:00:: 1 -3 functional%3:00:00:: 1 -3 function%2:42:12:: 2 -3 fun%1:10:00:: 2 -3 full%4:02:01:: 1 -3 fulfillment%1:12:00:: 1 -3 fulfill%2:42:00:: 2 -3 fulfill%2:34:00:: 3 -3 fulfil%2:36:00:: 1 -3 fruit%1:06:00:: 2 -3 frivolous%3:00:00:: 1 -3 fringed%5:00:00:bordered:00 1 -3 frightened%5:00:02:afraid(p):00 1 -3 friendship%1:26:00:: 1 -3 fret%2:37:03:: 1 -3 fresh%5:00:00:original:00 4 -3 frequent%5:00:00:common:01 2 -3 french%1:18:00:: 2 -3 freeze%2:29:00:: 3 -3 freehand%5:00:00:original:00 1 -3 free-swimming%5:00:00:vagile:00 1 -3 free%5:00:02:unoccupied:00 4 -3 free%5:00:00:unpaid:00 3 -3 free%2:40:02:: 2 -3 free%2:35:02:: 3 -3 frank%5:00:00:direct:02 1 -3 framework%1:09:00:: 1 -3 frame%2:42:00:: 2 -3 frame%1:08:01:: 3 -3 fragile%5:00:00:breakable:00 1 -3 fractionate%2:35:01:: 1 -3 foyer%1:06:00:: 1 -3 fox%1:05:00:: 1 -3 foundation%1:14:00:: 2 -3 forward%5:00:00:fore(a):00 6 -3 forward%4:02:02:: 3 -3 forward%4:02:01:: 4 -3 forward%2:38:00:: 1 -3 fortune%1:21:00:: 2 -3 fortress%1:06:00:: 1 -3 fortitude%1:07:00:: 1 -3 forth%4:02:00:: 1 -3 formula%1:10:01:: 3 -3 formation%1:17:00:: 4 -3 formation%1:06:00:: 5 -3 formal%5:00:00:official:00 2 -3 form%2:41:02:: 6 -3 form%2:35:00:: 7 -3 form%1:07:00:: 7 -3 forgetfulness%1:09:00:: 1 -3 foresee%2:36:00:: 2 -3 forego%2:42:00:: 1 -3 forefinger%1:08:00:: 1 -3 force%2:35:00:: 5 -3 footstep%1:23:00:: 3 -3 football_team%1:14:00:: 1 -3 foot_rot%1:26:00:: 1 -3 fondness%1:12:01:: 1 -3 fondly%4:02:00:: 1 -3 fond%5:00:02:loving:00 1 -3 following%3:00:00:: 1 -3 follow%2:41:02:: 13 -3 folded%3:00:00:: 1 -3 fold%1:25:00:: 1 -3 fog%1:26:01:: 2 -3 focus%1:07:01:: 2 -3 focal%5:00:00:central:01 1 -3 foamy%5:00:00:gaseous:00 1 -3 fly%2:35:00:: 4 -3 flush%2:29:00:: 1 -3 flowing%5:00:00:graceful:00 1 -3 flower_garden%1:06:00:: 1 -3 flow%1:22:00:: 4 -3 flour%1:13:00:: 1 -3 flounder%2:41:00:: 2 -3 floor%1:10:00:: 3 -3 flood%2:30:00:: 2 -3 floc%1:27:00:: 1 -3 float%2:38:02:: 3 -3 flip%2:38:00:: 1 -3 flinch%2:38:00:: 1 -3 flight%1:14:00:: 5 -3 flicker%2:38:00:: 1 -3 flavor%1:26:00:: 1 -3 flavor%1:09:00:: 2 -3 flaunt%2:39:00:: 1 -3 flashlight%1:06:00:: 1 -3 flash%2:39:01:: 3 -3 flash%2:32:00:: 4 -3 flap%1:06:00:: 1 -3 flank%1:14:00:: 1 -3 flag%1:10:01:: 2 -3 fix%2:33:00:: 5 -3 fitness%1:07:00:: 1 -3 fit%3:00:01:: 3 -3 fit%1:26:01:: 1 -3 fishing_boat%1:06:00:: 1 -3 fish_hawk%1:05:00:: 1 -3 fish%1:13:00:: 2 -3 fiscal%3:01:00:: 1 -3 first_and_foremost%4:02:00:: 1 -3 first%5:00:00:best:00 5 -3 firecracker%1:06:00:: 1 -3 fire%1:27:01:: 5 -3 fire%1:12:00:: 6 -3 finish%2:35:00:: 4 -3 finish%1:07:00:: 1 -3 fine%5:00:02:bad:00 5 -3 fine%4:02:00:: 1 -3 fine%2:40:00:: 1 -3 finding%1:04:01:: 2 -3 final%5:00:00:unalterable:00 3 -3 filter%2:35:01:: 2 -3 filing%1:10:00:: 1 -3 file_out%2:38:00:: 1 -3 file%2:38:00:: 3 -3 figure%2:36:00:: 3 -3 figurative%3:00:00:: 1 -3 fighter%1:06:00:: 2 -3 fiercely%4:02:00:: 1 -3 fiend%1:18:00:: 1 -3 field_of_battle%1:15:00:: 1 -3 fictional%5:00:00:unreal:00 2 -3 fibrous_tissue%1:08:00:: 1 -3 fiat%1:10:00:: 1 -3 feverishly%4:02:00:: 1 -3 fete%2:41:00:: 1 -3 fetch%2:35:00:: 1 -3 festivity%1:04:00:: 1 -3 fervent%5:00:00:passionate:00 1 -3 fence_line%1:15:00:: 1 -3 female%5:00:02:feminine:01 2 -3 fella%1:18:00:: 1 -3 feel%2:35:01:: 10 -3 feed%2:41:00:: 5 -3 feed%2:34:00:: 6 -3 feature%2:42:01:: 2 -3 feasibility%1:07:00:: 1 -3 fearfully%4:02:00:: 1 -3 favorably%4:02:00:: 1 -3 faster%4:02:01:: 1 -3 fashionable%3:00:00:: 1 -3 fascinate%2:42:00:: 1 -3 fascinate%2:37:00:: 2 -3 farther%4:02:02:: 1 -3 farmhouse%1:06:00:: 1 -3 far%4:02:01:: 4 -3 fantasy%1:09:00:: 1 -3 fantastic%5:00:00:extraordinary:00 2 -3 fancy%3:00:00:: 1 -3 fancy%2:36:00:: 1 -3 fan%2:35:01:: 1 -3 fan%1:18:01:: 2 -3 fan%1:18:00:: 3 -3 family_business%1:14:00:: 1 -3 famed%5:00:00:known:00 1 -3 falter%2:42:00:: 1 -3 falsify%2:32:00:: 1 -3 fall_short_of%2:42:00:: 1 -3 fall_in%2:38:00:: 1 -3 fall%2:42:04:: 8 -3 fall%2:42:00:: 7 -3 fall%2:40:05:: 9 -3 fall%2:30:06:: 11 -3 fall%2:30:00:: 10 -3 fall%1:11:03:: 3 -3 fairytale%1:10:00:: 1 -3 fairly%4:02:00:: 2 -3 faintly%4:02:00:: 1 -3 failure%1:26:00:: 3 -3 failure%1:18:00:: 4 -3 fail%2:30:00:: 4 -3 faded%5:00:00:decreased:00 2 -3 faculty%1:14:00:: 2 -3 fact%1:09:02:: 4 -3 facet%1:09:00:: 1 -3 face_up%2:32:03:: 1 -3 face%2:32:03:: 7 -3 facade%1:06:00:: 1 -3 eyelid%1:08:00:: 1 -3 eyebrow%1:08:00:: 1 -3 exultant%5:00:00:elated:00 1 -3 extreme%1:15:00:: 2 -3 extravagant%5:00:00:unrestrained:00 1 -3 extrapolation%1:09:00:: 1 -3 extract%1:27:00:: 1 -3 extra_points%1:04:00:: 1 -3 exterminate%2:35:01:: 1 -3 extensively%4:02:00:: 1 -3 extensive%5:00:00:comprehensive:00 2 -3 extensive%5:00:00:abundant:00 3 -3 extend%2:40:04:: 7 -3 exquisite%5:00:00:intense:00 1 -3 expressive%5:00:00:communicative:00 1 -3 expound%2:32:00:: 1 -3 exposure%1:04:06:: 2 -3 expose%2:35:00:: 4 -3 explosive%5:00:00:unstable:00 2 -3 explosive%3:00:00:: 1 -3 explorer%1:18:00:: 1 -3 exploit%2:34:01:: 2 -3 explode%2:30:03:: 4 -3 expire%2:42:00:: 1 -3 experimenter%1:18:00:: 1 -3 experimentation%1:04:00:: 2 -3 experimental%5:00:01:empirical:00 2 -3 experiential%3:01:00:: 1 -3 expenditure%1:04:00:: 2 -3 expel%2:41:00:: 1 -3 expedition%1:14:00:: 2 -3 expedition%1:04:00:: 3 -3 expectantly%4:02:00:: 1 -3 expectant%5:00:00:hopeful:00 1 -3 expanded%3:00:01:: 1 -3 expand%2:30:02:: 5 -3 existing%3:00:00:: 1 -3 exhaust%2:34:00:: 2 -3 exercise%2:29:01:: 3 -3 exercise%2:29:00:: 4 -3 exercise%1:04:03:: 2 -3 executive%1:18:00:: 1 -3 exclude%2:42:00:: 3 -3 exciting%5:00:00:stimulating:00 2 -3 excited%3:00:00:: 2 -3 exchange%1:10:00:: 2 -3 exchange%1:04:03:: 4 -3 exchange%1:04:02:: 3 -3 exceptional%5:00:00:extraordinary:00 1 -3 exacerbation%1:04:01:: 1 -3 evolve%2:36:00:: 1 -3 evolve%2:30:00:: 2 -3 evoke%2:36:00:: 2 -3 evil%1:07:00:: 3 -3 evidence%2:32:01:: 2 -3 every_other%5:00:00:cyclic:01 1 -3 every_night%4:02:00:: 1 -3 eventual%5:00:00:ultimate:00 1 -3 even%5:00:01:equal:00 2 -3 evangelism%1:04:00:: 1 -3 evaluation%1:09:00:: 2 -3 evade%2:32:00:: 1 -3 ethyl_acetate%1:27:00:: 1 -3 ethnic%5:00:00:social:00 2 -3 ethnic%3:01:00:: 1 -3 ethical%3:01:00:: 1 -3 eternity%1:28:00:: 1 -3 etcetera%4:02:00:: 1 -3 estimate%1:10:00:: 3 -3 establishment%1:14:02:: 3 -3 establishment%1:06:00:: 4 -3 established%5:00:00:secure:02 2 -3 esprit_de_corps%1:07:00:: 1 -3 espouse%2:40:00:: 1 -3 erudite%5:00:00:scholarly:00 1 -3 error%1:04:03:: 4 -3 err%2:31:00:: 1 -3 erotic%5:00:00:sexy:00 1 -3 equal%3:00:02:: 2 -3 epithet%1:10:01:: 1 -3 episode%1:10:01:: 2 -3 epicenter%1:15:00:: 1 -3 epic%1:10:00:: 1 -3 envision%2:36:01:: 2 -3 envelop%2:35:00:: 1 -3 entrust%2:40:00:: 1 -3 entropy%1:19:00:: 1 -3 entrance%1:04:00:: 3 -3 enthusiasm%1:09:00:: 3 -3 enterprising%3:00:00:: 1 -3 entail%2:42:00:: 2 -3 ensuing%5:00:00:succeeding(a):00 1 -3 enrol%2:41:00:: 1 -3 enraged%5:00:00:angry:00 1 -3 enormously%4:02:00:: 1 -3 engulf%2:31:00:: 1 -3 english%1:18:00:: 2 -3 english%1:09:00:: 3 -3 enforcement%1:04:00:: 1 -3 endow%2:41:00:: 1 -3 endless%5:00:02:infinite:00 2 -3 ending%1:10:00:: 1 -3 endeavor%1:04:00:: 2 -3 endear%2:37:00:: 1 -3 endanger%2:42:00:: 1 -3 end_up%2:30:01:: 1 -3 end%1:18:00:: 8 -3 encroachment%1:11:00:: 1 -3 encouragement%1:10:01:: 1 -3 encounter%1:04:01:: 3 -3 enclose%2:35:01:: 1 -3 empty%2:30:00:: 2 -3 empire%1:15:00:: 1 -3 emphysema%1:26:00:: 1 -3 emerge%2:38:00:: 4 -3 embrace%2:35:00:: 2 -3 embody%2:42:01:: 1 -3 embody%2:42:00:: 2 -3 emblematic%5:00:00:representative:00 1 -3 emblem%1:06:00:: 1 -3 embarrassment%1:12:00:: 1 -3 embarrassing%5:00:00:difficult:00 1 -3 embark_on%2:36:00:: 1 -3 elimination%1:04:02:: 1 -3 elevate%2:41:00:: 1 -3 elephant%1:05:00:: 1 -3 elemental%5:00:00:natural:01 1 -3 element%1:27:00:: 3 -3 elegance%1:07:00:: 1 -3 electrode%1:06:00:: 1 -3 elected%3:00:02:: 1 -3 elect%2:31:00:: 2 -3 elder%1:18:00:: 1 -3 elasticity%1:07:00:: 1 -3 egotist%1:18:00:: 1 -3 efficient%5:00:00:competent:00 2 -3 effectiveness%1:07:01:: 2 -3 effect%2:41:15:: 2 -3 eeg%1:10:00:: 1 -3 education%1:07:01:: 5 -3 educate%2:31:00:: 2 -3 edition%1:10:02:: 1 -3 edge%2:38:00:: 1 -3 ecstasy%1:26:02:: 2 -3 economics%1:09:00:: 1 -3 economically%4:02:00:: 1 -3 ecliptic%1:15:00:: 1 -3 ecclesiastical%3:01:00:: 1 -3 eccentric%1:18:00:: 1 -3 eating%1:04:00:: 1 -3 easter%1:28:00:: 1 -3 easily%4:02:06:: 2 -3 ease%2:30:00:: 3 -3 earth%1:15:00:: 4 -3 each_year%4:02:00:: 1 -3 dynamic%3:00:00:: 1 -3 dweller%1:18:00:: 1 -3 dwell%2:42:01:: 2 -3 dwell%2:42:00:: 3 -3 dwarf%2:42:00:: 1 -3 dust%2:35:00:: 1 -3 dusk%1:26:00:: 2 -3 duplicate%2:36:00:: 1 -3 dungeon%1:06:00:: 1 -3 duffer%1:18:00:: 1 -3 duffel_bag%1:06:00:: 1 -3 duck%2:38:01:: 2 -3 dual%5:00:00:multiple:00 1 -3 drygoods%1:06:00:: 1 -3 drugged%5:00:00:intoxicated:00 1 -3 drown_out%2:39:00:: 1 -3 drown%2:35:00:: 1 -3 droplet%1:23:00:: 1 -3 drop_down%2:38:01:: 1 -3 drop%2:35:00:: 8 -3 drive%1:06:01:: 4 -3 dripping%5:00:00:wet:01 1 -3 drink%1:13:00:: 3 -3 drift%2:38:04:: 2 -3 drift%2:38:01:: 3 -3 drift%1:19:00:: 1 -3 dried%5:00:00:dry:01 1 -3 dressing_gown%1:06:00:: 1 -3 dream_up%2:36:00:: 1 -3 drawing_room%1:06:00:: 1 -3 draw_near%2:38:00:: 1 -3 draw%2:40:01:: 14 -3 draw%2:33:01:: 15 -3 drastically%4:02:02:: 1 -3 draped%5:00:00:covered:00 1 -3 drape%2:35:00:: 1 -3 drainage%1:04:00:: 1 -3 dozens%1:23:00:: 1 -3 dozen%5:00:00:cardinal:00 1 -3 downward%5:00:00:descending(a):00 2 -3 downright%4:02:00:: 1 -3 down%2:34:00:: 1 -3 dough%1:13:00:: 1 -3 double_bass%1:06:00:: 1 -3 dot%2:42:00:: 1 -3 doorman%1:18:00:: 1 -3 doom%1:11:00:: 1 -3 don_quixote%1:18:01:: 1 -3 dominance%1:26:00:: 2 -3 domestic%3:00:01:: 3 -3 dogma%1:10:00:: 1 -3 document%2:32:00:: 1 -3 document%1:10:00:: 1 -3 docile%3:00:00:: 1 -3 do_one's_best%2:41:00:: 1 -3 do%2:29:09:: 9 -3 division%1:14:03:: 4 -3 diversified%3:00:00:: 1 -3 diurnal_variation%1:11:00:: 1 -3 distrust%2:31:00:: 1 -3 district_manager%1:18:00:: 1 -3 distribution_cost%1:21:00:: 1 -3 distribute%2:40:01:: 4 -3 distressing%5:00:00:heavy:02 1 -3 distress%1:26:01:: 2 -3 distract%2:37:00:: 1 -3 distinguish%2:31:02:: 3 -3 distinctive%5:00:00:identifiable:00 2 -3 distinction%1:07:00:: 4 -3 distillation%1:22:00:: 1 -3 distill%2:30:03:: 1 -3 distill%2:30:01:: 2 -3 distaste%1:12:00:: 1 -3 dissuade%2:32:00:: 1 -3 dissolve%2:30:01:: 2 -3 dissociation%1:04:00:: 1 -3 disregard%2:32:02:: 1 -3 dispose%2:40:11:: 1 -3 dispose%2:40:00:: 2 -3 displeasure%1:12:00:: 1 -3 display%1:04:00:: 2 -3 displace%2:38:01:: 1 -3 dispersed%5:00:00:distributed:00 1 -3 dispense%2:40:00:: 1 -3 dispatch%1:10:00:: 1 -3 disordered%5:00:00:disorganized:00 1 -3 dish%1:13:00:: 2 -3 discrete%5:00:00:separate:00 1 -3 discrepancy%1:11:00:: 2 -3 discourage%2:37:00:: 2 -3 discount%2:32:00:: 1 -3 discomfort%1:26:00:: 1 -3 discharge%2:41:00:: 1 -3 discharge%2:35:00:: 2 -3 discharge%1:04:04:: 2 -3 discernible%3:00:00:: 1 -3 discard%2:40:00:: 1 -3 disbelief%1:09:00:: 1 -3 disagreement%1:26:00:: 1 -3 disadvantage%1:07:00:: 1 -3 disability%1:26:00:: 1 -3 direction%1:04:00:: 5 -3 diminished%5:00:00:impaired:00 1 -3 dimensioning%5:00:00:orienting:00 1 -3 dimensional%5:00:00:multidimensional:00 2 -3 dimensional%3:01:00:: 1 -3 dim%5:00:00:indistinct:00 2 -3 differentiated%3:00:00:: 1 -3 differentiable%3:01:00:: 1 -3 diethylstilbestrol%1:27:00:: 1 -3 dictionary_entry%1:10:00:: 1 -3 dictatorship%1:14:00:: 1 -3 diary%1:10:00:: 1 -3 diarrhoea%1:26:00:: 1 -3 diamond%1:21:00:: 1 -3 dialogue%1:10:01:: 1 -3 dial%2:32:00:: 1 -3 devoid_of%5:00:00:empty:00 1 -3 devil%1:10:00:: 3 -3 develop%2:39:04:: 11 -3 develop%2:30:09:: 12 -3 develop%2:30:01:: 13 -3 devastate%2:30:00:: 1 -3 detonate%2:30:00:: 1 -3 determination%1:07:00:: 2 -3 detergent%1:06:00:: 2 -3 detergency%1:07:00:: 1 -3 detect%2:31:00:: 2 -3 detach%2:35:01:: 1 -3 despondent%5:00:00:hopeless:00 1 -3 desperately%4:02:01:: 2 -3 desperate%5:00:00:resolute:00 2 -3 despairing%5:00:00:hopeless:00 1 -3 despair%2:37:00:: 1 -3 design%1:09:02:: 3 -3 descend%2:42:00:: 2 -3 derive%2:30:00:: 4 -3 deprive%2:40:01:: 1 -3 deprive%2:40:00:: 2 -3 depression%1:26:02:: 2 -3 depression%1:17:00:: 3 -3 depressing%5:00:00:cheerless:00 1 -3 depress%2:37:00:: 1 -3 depravity%1:07:00:: 1 -3 deposit%2:35:00:: 1 -3 dependent_on%5:00:00:conditional:00 1 -3 dependency%1:26:00:: 1 -3 department_of_agriculture%1:14:00:: 1 -3 depart%2:38:01:: 3 -3 denunciation%1:10:00:: 1 -3 dentist%1:18:00:: 1 -3 dent%2:35:00:: 1 -3 denial%1:10:01:: 2 -3 demythologize%2:30:00:: 1 -3 demonstration%1:04:01:: 3 -3 democracy%1:14:00:: 2 -3 demeanor%1:07:00:: 1 -3 demand%1:04:00:: 4 -3 deltoid%1:08:00:: 1 -3 delivery%1:04:04:: 1 -3 deliver%2:41:01:: 4 -3 delighted%5:00:00:pleased:00 1 -3 delight%2:34:00:: 2 -3 delicate%5:00:00:skilled:00 2 -3 delicate%5:00:00:breakable:00 3 -3 delay%2:30:01:: 3 -3 deformation%1:11:00:: 1 -3 defiance%1:07:00:: 1 -3 defender%1:18:00:: 1 -3 defend%2:33:02:: 3 -3 defeat%1:12:00:: 2 -3 deeply%4:02:03:: 2 -3 deep%5:00:00:colorful:00 7 -3 deep%4:02:00:: 1 -3 deductible%3:00:00:: 1 -3 deduct%2:40:00:: 2 -3 dedicated%3:00:00:: 1 -3 decrease%2:30:01:: 2 -3 decorator%1:18:01:: 1 -3 decomposition%1:26:00:: 2 -3 decompose%2:30:00:: 1 -3 decidedly%4:02:00:: 1 -3 decent%5:00:00:respectable:00 1 -3 decay%2:30:01:: 1 -3 debt%1:26:00:: 1 -3 debt%1:21:00:: 2 -3 death%1:18:00:: 6 -3 deal%2:41:13:: 7 -3 deal%2:41:04:: 8 -3 dead_body%1:08:00:: 1 -3 dazzle%2:39:00:: 1 -3 dazed%5:00:00:confused:00 1 -3 daylight%1:28:00:: 1 -3 day_watch%1:14:00:: 1 -3 day_by_day%4:02:00:: 1 -3 date_from%2:42:00:: 1 -3 date%1:18:00:: 2 -3 date%1:14:00:: 3 -3 dart%2:38:01:: 1 -3 darling%1:18:00:: 1 -3 dark%1:28:00:: 4 -3 dare%2:32:00:: 3 -3 danish%3:01:00:: 1 -3 dangle%2:42:00:: 1 -3 dance%1:14:00:: 2 -3 dampen%2:30:05:: 1 -3 dad%1:18:00:: 1 -3 cyst%1:26:00:: 1 -3 cut_short%2:30:02:: 1 -3 cut%3:00:01:: 1 -3 cut%2:38:08:: 3 -3 custom%1:09:00:: 2 -3 cursing%3:44:00:: 1 -3 curl%2:30:00:: 1 -3 curiously%4:02:01:: 1 -3 cure-all%1:06:00:: 1 -3 culturally%4:02:00:: 1 -3 cultural%3:01:00:: 3 -3 cultivate%2:36:00:: 1 -3 cult%1:14:00:: 1 -3 culmination%1:28:00:: 1 -3 crush%2:35:00:: 2 -3 crush%2:33:00:: 3 -3 cruise%2:38:03:: 1 -3 cruel%5:00:01:inhumane:00 2 -3 crowd%2:42:00:: 2 -3 cross_section%1:15:00:: 1 -3 criticism%1:09:00:: 2 -3 critical%5:00:00:indispensable:00 4 -3 criterion%1:10:00:: 1 -3 crisscrossed%5:00:00:reticulate:00 1 -3 crisp%5:00:00:distinct:00 1 -3 criminal%3:01:00:: 1 -3 crib%1:06:00:: 1 -3 crest%1:15:01:: 2 -3 credit%2:31:12:: 2 -3 credit%1:04:01:: 4 -3 creator%1:18:01:: 1 -3 creative%5:00:00:constructive:00 2 -3 crash%2:38:01:: 2 -3 craft%1:04:00:: 1 -3 cradle%2:35:00:: 1 -3 crack%1:17:00:: 1 -3 cr%1:27:00:: 1 -3 cps%1:28:00:: 1 -3 cover%2:32:02:: 8 -3 court%1:14:01:: 3 -3 country%1:15:02:: 5 -3 counter%1:06:00:: 1 -3 count%2:32:01:: 4 -3 counselor%1:18:01:: 1 -3 counsel%2:32:00:: 1 -3 cost_of_living%1:21:00:: 1 -3 corrupt%3:00:00:: 1 -3 corroborate%2:31:00:: 1 -3 correspondent%1:18:00:: 1 -3 correspond%2:32:00:: 3 -3 corner%1:25:00:: 6 -3 corn%1:20:00:: 1 -3 copy%2:36:05:: 1 -3 copy%2:36:00:: 2 -3 cooperative%3:00:00:: 2 -3 cooperative%1:04:00:: 1 -3 cool%5:00:00:unexcited:00 2 -3 convinced%3:00:00:: 1 -3 conviction%1:04:00:: 2 -3 convert%2:30:02:: 4 -3 convert%2:30:01:: 3 -3 convert%1:18:00:: 1 -3 conversion%1:09:00:: 2 -3 convenient%5:00:00:accessible:00 2 -3 control%1:07:01:: 7 -3 contributory%5:00:00:causative:00 1 -3 contribution%1:04:00:: 3 -3 contribute%2:40:02:: 4 -3 contrast%2:42:00:: 2 -3 contrast%1:09:01:: 3 -3 contrary%1:24:01:: 1 -3 contract%2:41:00:: 2 -3 contortion%1:04:00:: 1 -3 continental%3:01:01:: 1 -3 contest%2:32:00:: 1 -3 contented%3:00:00:: 1 -3 content%2:34:00:: 1 -3 content%1:24:00:: 3 -3 contend%2:32:01:: 2 -3 contemporary%1:18:00:: 1 -3 contemplation%1:04:01:: 1 -3 consumptive%3:00:00:: 1 -3 consume%2:34:03:: 1 -3 consume%2:34:00:: 2 -3 consultant%1:18:00:: 1 -3 conspire%2:31:00:: 1 -3 conspiracy%1:10:00:: 1 -3 conspiracy%1:09:00:: 2 -3 consolidate%2:30:00:: 1 -3 consolation%1:12:00:: 1 -3 consign%2:40:01:: 1 -3 conservative%1:18:00:: 1 -3 consequence%1:07:00:: 3 -3 consensus%1:26:00:: 1 -3 consecutive%5:00:00:succeeding(a):00 3 -3 consciously%4:02:00:: 1 -3 conscientious_objector%1:18:00:: 1 -3 connotation%1:10:00:: 1 -3 connecticut%1:15:00:: 1 -3 connected%5:00:02:related:02 3 -3 connected%3:00:00:: 2 -3 connect%2:42:02:: 3 -3 connect%2:32:12:: 4 -3 conjunction%1:07:00:: 1 -3 congressman%1:18:00:: 1 -3 congratulate%2:32:01:: 2 -3 confused%5:00:00:incoherent:00 2 -3 confine%2:35:03:: 3 -3 confidence%1:26:02:: 3 -3 confess%2:32:01:: 2 -3 confer_with%2:32:00:: 1 -3 conduct%1:07:00:: 2 -3 condescension%1:07:00:: 1 -3 condescending%5:00:00:superior:01 1 -3 condensation%1:09:00:: 1 -3 condemnation%1:10:00:: 1 -3 condemnation%1:04:00:: 2 -3 concurrent%5:00:00:synchronous:00 1 -3 conclusive%5:00:00:decisive:00 2 -3 conclusive%3:00:00:: 1 -3 concessionaire%1:18:00:: 1 -3 concerto%1:10:00:: 1 -3 concentration%1:04:01:: 3 -3 concentrate%1:27:00:: 1 -3 concave%3:00:00:: 1 -3 computation%1:04:00:: 1 -3 compulsion%1:16:01:: 1 -3 comptroller_general%1:18:00:: 1 -3 compromise%2:32:01:: 1 -3 comprehensively%4:02:00:: 1 -3 compound%2:30:00:: 2 -3 compound%1:09:00:: 1 -3 composure%1:07:00:: 1 -3 compost%1:27:00:: 1 -3 compose%2:36:09:: 4 -3 complication%1:04:00:: 1 -3 complex_number%1:23:00:: 1 -3 completion%1:04:02:: 2 -3 complete%2:41:00:: 3 -3 complement%2:30:02:: 1 -3 complaint%1:26:00:: 1 -3 compile%2:40:00:: 1 -3 compile%2:36:00:: 2 -3 competent%5:00:00:adequate:00 2 -3 compelled%5:00:00:obligated(p):00 1 -3 compass%1:06:00:: 1 -3 company%1:18:00:: 5 -3 company%1:14:00:: 6 -3 communion%1:10:00:: 2 -3 communicative%3:01:00:: 1 -3 communication_system%1:06:01:: 1 -3 commonsense%5:00:00:reasonable:00 1 -3 commonplace%5:00:00:ordinary:00 1 -3 committeeman%1:18:00:: 1 -3 committed%3:00:00:: 1 -3 commit%2:40:02:: 3 -3 commensurate%3:00:00:: 1 -3 commence%2:36:00:: 3 -3 commemorate%2:31:02:: 1 -3 commanding%5:00:00:superior:01 1 -3 commander%1:18:03:: 2 -3 comic%5:00:00:humorous:00 1 -3 come_up_to%2:32:00:: 1 -3 come_up%2:38:01:: 4 -3 come_to_mind%2:31:00:: 1 -3 come_out%2:42:00:: 4 -3 come_near%2:41:00:: 1 -3 come_into_being%2:30:01:: 1 -3 come_close%2:41:00:: 1 -3 come_by%2:40:00:: 2 -3 come_back%2:30:00:: 2 -3 come_across%2:40:02:: 1 -3 come%2:42:05:: 12 -3 come%2:38:03:: 13 -3 combination%1:11:00:: 2 -3 comb%1:06:00:: 1 -3 colossal%5:00:01:large:00 1 -3 colorful%3:00:03:: 2 -3 color_sergeant%1:18:00:: 1 -3 color%1:07:02:: 3 -3 collapse%1:26:01:: 1 -3 cold_weather%1:19:00:: 1 -3 coin%2:36:01:: 1 -3 cohesive%5:00:00:adhesive:00 1 -3 coherent%3:00:00:: 1 -3 coffin%1:06:00:: 1 -3 code_of_behavior%1:09:00:: 1 -3 coconut%1:13:02:: 1 -3 cocky%5:00:00:assertive:00 1 -3 coat%2:35:00:: 1 -3 coal-black%5:00:00:achromatic:00 1 -3 co-worker%1:18:00:: 1 -3 cluttered%5:00:00:untidy:00 1 -3 cluck%2:32:00:: 1 -3 club%1:06:00:: 3 -3 closing%3:00:00:: 1 -3 closeup%1:06:00:: 1 -3 closer%4:02:00:: 1 -3 closed_interval%1:09:00:: 1 -3 closed%3:00:03:: 4 -3 close_to%4:02:00:: 1 -3 close%5:00:00:accurate:00 5 -3 clinched%5:00:00:tight:01 1 -3 clinch%2:35:01:: 1 -3 climb_up%2:38:00:: 1 -3 climb_down%2:38:00:: 1 -3 climate%1:26:01:: 2 -3 cliff%1:17:00:: 1 -3 clever%5:00:00:artful:00 1 -3 clerical%3:01:01:: 1 -3 clearness%1:07:01:: 1 -3 clearing%1:15:00:: 1 -3 cleared%3:00:00:: 1 -3 clear_up%2:32:00:: 1 -3 clear%5:00:02:free:00 5 -3 clear%4:02:03:: 1 -3 clean%2:30:01:: 2 -3 clarify%2:32:00:: 3 -3 clang%2:39:00:: 1 -3 clamor%2:32:00:: 2 -3 claim%1:07:02:: 4 -3 civilized%3:00:00:: 1 -3 civil_law%1:14:00:: 1 -3 civil_defense%1:04:00:: 1 -3 cite%2:36:00:: 3 -3 circumstance%1:09:00:: 3 -3 circuit%1:04:00:: 2 -3 cinematic%3:01:00:: 1 -3 ciliated_protozoan%1:05:00:: 1 -3 church_father%1:18:00:: 1 -3 church_bell%1:06:00:: 1 -3 chunk%1:14:00:: 1 -3 chrome%1:27:00:: 1 -3 chromatographic%3:01:00:: 1 -3 christmas%1:28:01:: 1 -3 chosen%1:18:00:: 1 -3 chorus%1:11:00:: 1 -3 choice%5:00:00:superior:02 1 -3 choice%1:09:02:: 3 -3 chill%1:07:00:: 1 -3 chieftain%1:18:01:: 1 -3 chide%2:32:00:: 1 -3 chemical%3:01:01:: 2 -3 check_in%2:32:00:: 1 -3 charger%1:05:00:: 1 -3 charge%2:32:03:: 7 -3 charge%2:32:00:: 6 -3 charge%1:19:00:: 4 -3 characteristically%4:02:00:: 1 -3 change%2:40:00:: 7 -3 change%2:38:00:: 8 -3 chandelier%1:06:00:: 1 -3 chamber_music%1:10:00:: 1 -3 challenging%5:00:00:difficult:00 1 -3 challenge%1:10:00:: 2 -3 chain%1:17:00:: 2 -3 certify%2:40:02:: 2 -3 certified%3:00:00:: 1 -3 certificate%1:10:00:: 1 -3 certainty%1:09:00:: 1 -3 centimeter%1:23:00:: 1 -3 center%1:09:01:: 6 -3 center%1:09:00:: 5 -3 center%1:08:00:: 7 -3 celestial%3:01:01:: 1 -3 ceiling%1:07:00:: 2 -3 cavort%2:38:00:: 1 -3 caution%1:07:00:: 1 -3 caught_up%5:00:00:involved:00 1 -3 category%1:09:02:: 2 -3 catch_on%2:31:00:: 1 -3 catch%2:38:00:: 9 -3 catastrophe%1:11:00:: 1 -3 casual%5:00:00:unconcerned:00 1 -3 castle%1:06:02:: 1 -3 cast%2:40:13:: 2 -3 case%1:18:02:: 7 -3 case%1:10:02:: 8 -3 case%1:10:01:: 9 -3 carve%2:35:02:: 2 -3 cartoonist%1:18:00:: 1 -3 carry%2:30:05:: 9 -3 carrier%1:18:03:: 1 -3 carrier%1:06:03:: 2 -3 carrier%1:06:01:: 3 -3 carpet%1:06:00:: 1 -3 carpentry%1:04:00:: 1 -3 cargo%1:06:00:: 1 -3 careless%3:00:00:: 1 -3 career%2:38:00:: 1 -3 cardinal%5:00:00:important:00 1 -3 capitalize%2:40:00:: 1 -3 capitalist%3:01:00:: 1 -3 capital_gain%1:21:00:: 1 -3 capital%1:21:00:: 2 -3 capital%1:15:00:: 3 -3 capacity%1:04:00:: 4 -3 cap%2:42:00:: 1 -3 canvas%1:06:04:: 2 -3 cancel_out%2:30:00:: 1 -3 campfire%1:11:00:: 1 -3 calving%1:22:00:: 1 -3 calm%1:07:00:: 1 -3 callous%5:00:00:insensitive:02 1 -3 caller%1:18:00:: 1 -3 call%1:10:02:: 3 -3 calculate%2:31:03:: 2 -3 calcium%1:27:00:: 1 -3 calamity%1:11:00:: 1 -3 cabin%1:06:02:: 2 -3 cabana%1:06:00:: 1 -3 buzz%2:38:00:: 2 -3 buying%1:04:00:: 1 -3 butter%1:13:00:: 1 -3 butt%2:35:02:: 1 -3 business%5:00:00:commercial:00 1 -3 busily%4:02:00:: 1 -3 bushel%1:23:02:: 1 -3 busboy%1:18:00:: 1 -3 bury%2:35:00:: 3 -3 burst_out%2:32:00:: 1 -3 burrow%2:38:00:: 1 -3 burning%5:00:00:painful:00 1 -3 burn_down%2:30:00:: 1 -3 burma%1:15:00:: 1 -3 buried%5:00:00:concealed:00 1 -3 burgeon%2:30:01:: 1 -3 bureaucratic%3:01:00:: 1 -3 bureau%1:14:00:: 1 -3 bunk%1:06:01:: 3 -3 bunch%1:14:01:: 2 -3 bulge%2:30:00:: 1 -3 bulge%1:25:00:: 1 -3 buildup%1:04:00:: 1 -3 building%1:04:00:: 2 -3 bugle%1:06:00:: 1 -3 buffet%2:35:00:: 1 -3 buffalo%1:05:02:: 1 -3 budget%1:21:03:: 2 -3 budge%2:38:00:: 1 -3 buddha%1:18:00:: 1 -3 bud%1:20:02:: 1 -3 bubble%2:30:00:: 1 -3 brow%1:08:01:: 2 -3 broom%1:06:00:: 1 -3 brook%1:17:00:: 1 -3 brooding%5:00:00:thoughtful:00 1 -3 bronzed%5:00:00:brunet:00 1 -3 broadcast%1:10:00:: 1 -3 british%1:18:00:: 1 -3 bristle%2:42:00:: 1 -3 bring_up%2:36:00:: 1 -3 bring_together%2:35:02:: 2 -3 bring_oneself%2:41:00:: 1 -3 bring_home%2:30:00:: 1 -3 bring_down%2:38:01:: 1 -3 bring%2:36:01:: 7 -3 brindle%5:00:00:patterned:00 1 -3 brilliantly%4:02:01:: 1 -3 bright%5:00:00:light:06 4 -3 briefcase%1:06:00:: 1 -3 bridge%2:42:00:: 1 -3 bridge%1:06:05:: 2 -3 bride%1:18:00:: 1 -3 breakfast_table%1:06:00:: 1 -3 break_with%2:41:00:: 1 -3 break_up%2:41:00:: 2 -3 break_through%2:30:02:: 1 -3 break_seal%1:06:00:: 1 -3 break_out%2:30:03:: 2 -3 break_down%2:33:00:: 1 -3 break_down%2:31:00:: 2 -3 break%2:41:11:: 11 -3 break%2:30:11:: 12 -3 break%1:11:00:: 1 -3 bread%1:13:00:: 1 -3 brandy%1:13:00:: 1 -3 brand%1:09:00:: 2 -3 bramble%1:20:02:: 1 -3 brain%1:18:00:: 4 -3 brackish%5:00:00:salt:00 1 -3 box%1:23:00:: 3 -3 bow%2:32:01:: 2 -3 bouquet%1:06:00:: 1 -3 bounded%5:00:00:finite:00 1 -3 bound%3:00:03:: 2 -3 borough%1:15:00:: 1 -3 born%5:00:00:natural:01 2 -3 border_on%2:42:00:: 1 -3 border%2:35:01:: 1 -3 boost%2:38:00:: 1 -3 boost%1:04:00:: 1 -3 book%2:31:00:: 1 -3 bonnet%1:06:00:: 1 -3 bonfire%1:11:00:: 1 -3 bone%1:27:00:: 2 -3 bombproof%1:06:00:: 1 -3 bomb%2:33:00:: 1 -3 bolster%2:30:01:: 1 -3 bold%5:00:00:conspicuous:00 2 -3 boil%2:30:02:: 3 -3 bogus%5:00:00:counterfeit:00 1 -3 boatswain%1:18:00:: 1 -3 board_of_directors%1:14:00:: 1 -3 blue%1:14:00:: 3 -3 blowing%1:22:00:: 1 -3 blower%1:06:00:: 1 -3 blow%2:29:01:: 3 -3 blossom%2:30:01:: 1 -3 blooming%5:00:00:flowering:00 1 -3 blooming%1:22:00:: 1 -3 bloom%1:22:00:: 1 -3 bloodstream%1:08:00:: 1 -3 blood_group%1:14:00:: 1 -3 block%2:41:00:: 2 -3 blithe%5:00:00:unconcerned:00 1 -3 blind%5:00:00:irrational:00 3 -3 bleakly%4:02:00:: 1 -3 blazing%5:00:00:bright:00 1 -3 blaze%2:33:00:: 2 -3 blaze%1:11:00:: 2 -3 blast%2:39:00:: 1 -3 blame%1:10:01:: 1 -3 bitterly%4:02:00:: 1 -3 biting%5:00:00:sarcastic:00 1 -3 birefringence%1:19:00:: 1 -3 biopsy%1:09:00:: 1 -3 biography%1:10:00:: 1 -3 bind%2:35:08:: 4 -3 big_league%1:14:00:: 1 -3 bid%2:32:02:: 3 -3 bid%2:32:01:: 2 -3 better_off%5:00:00:fortunate:00 1 -3 betray%2:41:00:: 2 -3 bethink%2:39:00:: 1 -3 berry%1:13:00:: 1 -3 bereavement%1:26:00:: 1 -3 bended%5:00:00:unerect:00 1 -3 bend%2:38:03:: 4 -3 bench%2:41:00:: 1 -3 belong%2:42:03:: 4 -3 belligerent%5:00:00:hostile:01 1 -3 belie%2:42:00:: 1 -3 behind%4:02:01:: 2 -3 behave%2:41:01:: 2 -3 befall%2:30:01:: 1 -3 beef%1:13:00:: 2 -3 bedding%1:06:00:: 1 -3 bed%1:06:01:: 2 -3 beat%2:36:00:: 5 -3 bearer%1:18:03:: 1 -3 bear_out%2:42:00:: 1 -3 beam%1:19:01:: 3 -3 beam%1:19:00:: 4 -3 beachhead%1:15:00:: 1 -3 be_after%2:31:00:: 1 -3 batter's_box%1:06:00:: 1 -3 batter%2:35:01:: 1 -3 baton%1:06:00:: 1 -3 basketball%1:04:00:: 1 -3 bask%2:37:13:: 1 -3 based_on%5:00:00:supported:02 1 -3 based%5:00:00:supported:00 2 -3 base_on_balls%1:04:00:: 1 -3 base%1:06:02:: 3 -3 base%1:06:01:: 2 -3 barrier%1:09:00:: 2 -3 bargain%1:10:00:: 1 -3 barbaric%5:00:00:noncivilized:00 1 -3 banshee%1:18:00:: 1 -3 banish%2:41:01:: 1 -3 bang%2:35:00:: 1 -3 bandit%1:18:00:: 1 -3 balustrade%1:06:00:: 1 -3 ballroom%1:06:00:: 1 -3 ballot%1:10:00:: 1 -3 balloon%1:06:00:: 1 -3 ballad%1:10:01:: 1 -3 ball_club%1:14:00:: 1 -3 ball%1:25:00:: 3 -3 balk%2:41:00:: 1 -3 balance%2:40:00:: 2 -3 balance%1:21:00:: 2 -3 badge%1:10:00:: 1 -3 bad%5:00:00:uncomfortable:00 3 -3 bad%5:00:00:intense:00 2 -3 bacteria%1:05:00:: 1 -3 backwoods%1:15:00:: 1 -3 back_up%2:41:00:: 1 -3 back_up%2:38:00:: 2 -3 babble%2:32:02:: 1 -3 awkwardly%4:02:00:: 1 -3 awestruck%3:00:00:: 1 -3 away%4:02:04:: 4 -3 average%5:00:00:ordinary:00 3 -3 availability%1:07:00:: 1 -3 avail%2:34:00:: 1 -3 autofluorescence%1:19:00:: 1 -3 authority%1:18:00:: 3 -3 australia%1:15:00:: 1 -3 auditorium%1:06:00:: 1 -3 attractive%5:00:00:appealing:00 2 -3 attorney_general%1:18:00:: 1 -3 attendant%1:18:00:: 1 -3 attacker%1:18:00:: 1 -3 attack%1:04:04:: 2 -3 attach_to%2:42:01:: 1 -3 attach%2:35:00:: 3 -3 atrophic%3:01:00:: 1 -3 atlantic%1:17:00:: 1 -3 athletic%3:01:00:: 1 -3 at_work%5:00:00:busy:00 1 -3 at_the_start%4:02:00:: 1 -3 at_large%4:02:00:: 1 -3 at_first_glance%4:02:00:: 1 -3 at_birth%4:02:00:: 1 -3 astound%2:31:00:: 1 -3 assuredly%4:02:00:: 1 -3 assume%2:38:00:: 5 -3 association%1:26:02:: 3 -3 association%1:09:00:: 4 -3 associate%2:41:02:: 2 -3 assistance%1:07:00:: 2 -3 assignment%1:10:02:: 2 -3 assent%2:32:00:: 1 -3 assembly%1:06:00:: 1 -3 assembly%1:04:01:: 2 -3 ass%1:08:00:: 1 -3 ascribe%2:31:00:: 1 -3 ascend%2:38:02:: 1 -3 as_required%4:02:00:: 1 -3 as_much_as_possible%4:02:00:: 1 -3 as_good_as%5:00:00:equal:00 1 -3 artistic%5:00:00:aesthetic:00 2 -3 artillery%1:14:00:: 2 -3 art%1:10:00:: 4 -3 arroyo%1:17:00:: 1 -3 arrow%1:06:00:: 2 -3 arrival%1:04:01:: 2 -3 arrangement%1:04:02:: 4 -3 arrange%2:36:03:: 4 -3 arouse%2:29:05:: 2 -3 armchair%1:06:00:: 1 -3 arm%1:06:03:: 2 -3 ardor%1:12:01:: 1 -3 architecture%1:06:00:: 1 -3 arch%2:38:00:: 1 -3 arbitrarily%4:02:00:: 1 -3 aptitude%1:09:00:: 1 -3 apron%1:06:00:: 1 -3 approximation%1:09:00:: 1 -3 approximate%5:00:00:inexact:00 1 -3 approval%1:12:00:: 2 -3 appropriation%1:21:00:: 1 -3 appropriate%5:00:00:expedient:00 2 -3 apprehension%1:09:00:: 2 -3 apportion%2:40:01:: 1 -3 apple_tree%1:20:00:: 1 -3 appealing%3:00:00:: 1 -3 apothecary%1:18:00:: 1 -3 apologize%2:32:00:: 1 -3 apologetically%4:02:00:: 1 -3 apex%1:15:00:: 1 -3 apartment_building%1:06:00:: 1 -3 aorta%1:08:00:: 1 -3 anxious%5:00:00:eager:00 2 -3 anticipate%2:32:00:: 4 -3 anthropologist%1:18:00:: 1 -3 anterior%3:00:00:: 1 -3 another%5:00:01:other:00 3 -3 annoyed%5:00:00:displeased:00 1 -3 annoyance%1:26:00:: 1 -3 announcement%1:10:00:: 2 -3 animallike%5:00:00:animal:00 1 -3 anglo-american%1:18:00:: 1 -3 anew%4:02:00:: 1 -3 anchor%2:35:01:: 1 -3 anchor%2:35:00:: 2 -3 anchor%1:06:00:: 1 -3 ancestry%1:14:00:: 1 -3 analytic%3:00:03:: 2 -3 amusement%1:12:00:: 1 -3 ammo%1:06:00:: 1 -3 amicus_curiae%1:18:00:: 1 -3 americana%1:06:00:: 1 -3 ambulance%1:06:00:: 1 -3 ambivalent%5:00:00:equivocal:00 1 -3 amber%5:00:00:chromatic:00 1 -3 amateur%5:00:00:nonprofessional:00 1 -3 altitude%1:07:00:: 1 -3 alternately%4:02:00:: 1 -3 alternate%5:00:02:cyclic:01 1 -3 alternate%2:30:01:: 1 -3 ally%1:14:00:: 1 -3 allowable%5:00:00:deductible:00 1 -3 allow%2:42:00:: 5 -3 allow%2:31:00:: 6 -3 allocable%5:00:00:distributive:00 1 -3 alleged%5:00:00:declared:00 1 -3 all_in_all%4:02:00:: 1 -3 all%5:00:00:complete:00 2 -3 alkali_bee%1:05:00:: 1 -3 alkali%1:27:00:: 1 -3 alive%5:00:00:lively:00 2 -3 alienate%2:37:00:: 1 -3 alien%5:00:00:extrinsic:00 1 -3 alert%5:00:00:intelligent:00 2 -3 alcohol%1:13:00:: 1 -3 alarm%1:06:00:: 2 -3 alabama%1:15:00:: 1 -3 akin%5:00:00:similar:00 1 -3 airborne%5:00:00:mobile:00 1 -3 air%1:19:00:: 5 -3 aimless%5:00:00:purposeless:00 1 -3 aim%2:31:02:: 4 -3 aide%1:18:01:: 1 -3 agreed_upon%5:00:00:uncontroversial:00 1 -3 aggressiveness%1:07:00:: 1 -3 aggravate%2:30:00:: 1 -3 agglutination%1:22:01:: 1 -3 agenda%1:09:00:: 1 -3 afraid%5:00:00:concerned:00 2 -3 affluence%1:26:00:: 1 -3 affirm%2:32:00:: 2 -3 adverb%1:10:01:: 1 -3 advanced%5:00:00:late:02 2 -3 advance%2:33:00:: 6 -3 adsorbed%5:00:00:adsorbable:00 1 -3 adorn%2:36:00:: 1 -3 adolescence%1:28:00:: 1 -3 admonition%1:10:01:: 1 -3 administrator%1:18:01:: 2 -3 administration%1:14:00:: 2 -3 adjustment%1:04:00:: 2 -3 adjoining%5:00:00:connected:00 1 -3 adjoin%2:35:02:: 1 -3 adjective%1:10:00:: 1 -3 adhesive%1:27:00:: 1 -3 adherent%1:18:00:: 1 -3 adhere%2:30:00:: 2 -3 address%2:32:08:: 4 -3 address%1:10:00:: 3 -3 add%2:31:00:: 4 -3 adapt%2:36:01:: 2 -3 adapt%2:30:02:: 3 -3 actual%5:00:00:true:00 3 -3 actress%1:18:00:: 1 -3 actively%4:02:00:: 1 -3 active%3:00:01:: 5 -3 activated%5:00:00:treated:00 1 -3 activate%2:36:00:: 1 -3 act%1:10:02:: 4 -3 acquiescence%1:26:00:: 1 -3 acquiesce%2:32:00:: 1 -3 acknowledge%2:32:04:: 3 -3 ache%2:39:01:: 1 -3 ache%2:37:06:: 2 -3 acetonemia%1:26:00:: 1 -3 ace%1:06:00:: 2 -3 accusation%1:10:00:: 1 -3 accurately%4:02:02:: 2 -3 account%1:10:04:: 4 -3 accompany%2:36:00:: 3 -3 accommodate%2:34:00:: 3 -3 acclaim%2:32:00:: 1 -3 acceptance%1:04:00:: 2 -3 academic%5:00:00:theoretical:01 2 -3 abyss%1:17:00:: 1 -3 abuse%2:41:00:: 1 -3 abstraction%1:04:00:: 2 -3 absorption%1:22:02:: 2 -3 absentmindedly%4:02:00:: 1 -3 absentminded%5:00:00:inattentive:00 1 -3 abscess%1:26:00:: 1 -3 abrupt%5:00:00:staccato:00 1 -3 about%4:02:04:: 4 -3 about%4:02:02:: 5 -3 abortion%1:04:00:: 1 -3 abject%5:00:00:contemptible:00 1 -3 abet%2:41:00:: 1 -3 abdominal%3:01:00:: 1 -3 abandonment%1:04:03:: 1 -3 abandon%2:31:00:: 5 -3 8%1:23:00:: 1 -3 7%1:23:00:: 1 -3 40%1:23:00:: 1 -3 25%1:23:00:: 1 -3 24%1:23:00:: 1 -3 0%5:00:00:cardinal:00 1 -2 zoom%2:38:00:: 1 -2 zoo%1:06:00:: 1 -2 zodiacal_light%1:19:00:: 1 -2 zigzag%2:38:00:: 1 -2 zeal%1:12:02:: 2 -2 zeal%1:12:01:: 1 -2 youth%1:26:00:: 4 -2 yokel%1:18:00:: 1 -2 yield%2:42:00:: 5 -2 yellow-green%5:00:00:chromatic:00 1 -2 yellow%5:00:00:cowardly:00 2 -2 yellow%2:30:00:: 1 -2 yelling%5:00:00:noisy:00 1 -2 yearly%3:01:00:: 1 -2 yardage%1:07:00:: 1 -2 yale%1:06:00:: 1 -2 wryly%4:02:00:: 1 -2 wrong%5:00:00:false:00 5 -2 wrong%1:04:00:: 2 -2 writing%1:10:01:: 4 -2 writing%1:04:01:: 5 -2 writhing%5:00:00:moving:02 1 -2 write_out%2:36:00:: 1 -2 write_off%2:31:00:: 1 -2 writ%1:10:00:: 1 -2 wrinkle%2:35:01:: 1 -2 wriggle%2:38:00:: 1 -2 wretched%5:00:00:uncomfortable:00 2 -2 wretched%5:00:00:inferior:02 1 -2 wrestle%2:33:01:: 1 -2 wrench%2:38:00:: 2 -2 wreath%1:06:00:: 1 -2 wrathful%5:00:00:angry:00 1 -2 wrapped%5:00:00:covered:00 1 -2 wrangle%1:10:01:: 1 -2 wraithlike%5:00:00:insubstantial:00 1 -2 wound%1:11:00:: 2 -2 would-be%5:00:00:hopeful:00 1 -2 worst%1:11:00:: 1 -2 worshiping%3:44:00:: 1 -2 worship%2:37:01:: 2 -2 worn%5:00:00:tired:00 2 -2 worn%3:00:00:: 1 -2 worm%1:18:00:: 2 -2 world_war_ii%1:04:00:: 1 -2 world_war_i%1:04:00:: 1 -2 world_war%1:04:00:: 1 -2 world_record%1:04:00:: 1 -2 workshop%1:04:00:: 2 -2 working_capital%1:21:00:: 1 -2 working%5:00:00:practical:00 2 -2 worker_bee%1:05:00:: 1 -2 work_out%2:41:00:: 5 -2 work%2:41:01:: 14 -2 work%2:36:09:: 15 -2 wordsworth%1:18:00:: 1 -2 words%1:10:04:: 3 -2 word_of_god%1:11:00:: 1 -2 word%2:32:00:: 1 -2 woodpecker%1:05:00:: 1 -2 woodenly%4:02:00:: 1 -2 wooden_leg%1:06:00:: 1 -2 woo%2:41:01:: 1 -2 wondrous%5:00:00:extraordinary:00 1 -2 wonder%2:32:12:: 3 -2 woeful%5:00:00:sorrowful:00 1 -2 wizard%1:18:01:: 1 -2 witness%1:10:00:: 3 -2 withdraw%2:40:01:: 4 -2 with_confidence%4:02:00:: 1 -2 witch_doctor%1:18:00:: 1 -2 witch%1:18:01:: 2 -2 wishful_thinking%1:09:00:: 1 -2 wish%2:32:01:: 6 -2 wish%2:32:00:: 7 -2 wish%1:10:00:: 2 -2 wisely%4:02:00:: 1 -2 wisecrack%2:32:00:: 1 -2 wise%5:00:00:prudent:00 2 -2 wise%1:07:00:: 1 -2 wisdom%1:09:01:: 3 -2 wire%2:32:00:: 2 -2 wiped_out%5:00:00:destroyed:00 1 -2 winter%2:42:00:: 1 -2 winning%5:00:01:successful:00 2 -2 winner%1:18:00:: 1 -2 winless%5:00:00:unsuccessful:00 1 -2 wings%1:04:00:: 1 -2 wingman%1:18:00:: 1 -2 wing%1:14:00:: 4 -2 wine%1:07:00:: 2 -2 windy%5:00:00:stormy:00 1 -2 windowpane%1:06:00:: 1 -2 wind%2:42:00:: 2 -2 wind%2:35:06:: 3 -2 wince%2:38:00:: 1 -2 win_back%2:33:00:: 1 -2 win%2:33:01:: 3 -2 win%1:11:00:: 1 -2 willy-nilly%4:02:00:: 1 -2 will%2:31:01:: 4 -2 will%2:31:00:: 3 -2 wildcat%1:06:00:: 1 -2 wild_pitch%1:04:00:: 1 -2 wild-eyed%5:00:00:agitated:00 1 -2 wild%5:00:01:uncontrolled:00 4 -2 wigmaker%1:18:00:: 1 -2 wield%2:35:00:: 2 -2 widowed%5:00:00:unmarried:00 1 -2 widely%4:02:01:: 2 -2 wicker%1:27:00:: 1 -2 wicked%3:00:00:: 1 -2 wholesome%3:00:00:: 1 -2 whiz%2:39:00:: 1 -2 whiteface%1:05:00:: 1 -2 white-collar%3:00:00:: 1 -2 whistle%2:38:00:: 2 -2 whistle%2:32:00:: 3 -2 whirring%1:11:00:: 1 -2 whirl%2:38:02:: 2 -2 whinny%2:32:00:: 1 -2 wherefore%4:02:00:: 1 -2 wheeze%2:29:00:: 1 -2 whack%2:35:00:: 1 -2 wend%2:38:00:: 1 -2 welter%1:26:00:: 1 -2 well-kept%5:00:00:preserved:01 1 -2 well-fed%5:00:00:nourished:00 1 -2 well-being%1:26:00:: 1 -2 well%4:02:11:: 7 -2 welfare_state%1:14:00:: 1 -2 welcome%2:35:00:: 3 -2 weightlessness%1:07:00:: 1 -2 weight%1:12:00:: 5 -2 weigh%2:42:00:: 3 -2 weekly%1:10:00:: 1 -2 weed_out%2:40:00:: 1 -2 wedding_day%1:28:00:: 1 -2 weave%2:36:00:: 2 -2 weave%1:06:00:: 1 -2 weariness%1:26:00:: 1 -2 wear_out%2:29:00:: 1 -2 wear_on%2:30:00:: 1 -2 wear%2:30:00:: 4 -2 wear%2:29:02:: 5 -2 weapon%1:10:00:: 2 -2 weakness%1:07:01:: 2 -2 weakness%1:07:00:: 3 -2 weakly%4:02:01:: 1 -2 weaken%2:30:00:: 2 -2 wayward%5:00:00:disobedient:00 1 -2 ways%1:07:00:: 1 -2 way_out%1:06:00:: 1 -2 wax%2:35:00:: 1 -2 wavy%5:00:00:curly:00 1 -2 waver%2:42:00:: 1 -2 wave%1:11:02:: 4 -2 watt%1:23:00:: 1 -2 water%2:40:00:: 2 -2 water%2:29:00:: 3 -2 water%1:27:02:: 3 -2 water%1:06:00:: 4 -2 watching%1:04:00:: 1 -2 watch%1:28:01:: 4 -2 wastewater%1:27:00:: 1 -2 wasteland%1:15:00:: 1 -2 wasteful%5:00:00:inefficient:00 1 -2 washington%1:14:00:: 3 -2 washed%5:00:00:clean:01 1 -2 wash_down%2:34:00:: 1 -2 wash%2:38:01:: 4 -2 wash%1:17:00:: 3 -2 wary%3:00:00:: 1 -2 warrant%1:10:00:: 1 -2 warp%2:32:00:: 1 -2 warm_up%2:41:00:: 1 -2 warm_up%2:30:01:: 2 -2 warm_to%2:37:00:: 1 -2 warm%2:30:00:: 1 -2 warlike%5:00:00:unpeaceful:00 1 -2 warily%4:02:00:: 1 -2 ward-heeler%1:18:00:: 1 -2 ward%1:15:00:: 2 -2 want%2:31:01:: 4 -2 wane%2:30:02:: 1 -2 wandering%5:00:02:unsettled:01 1 -2 wandering%5:00:00:indirect:00 2 -2 wallow%2:38:00:: 2 -2 wallet%1:06:00:: 1 -2 walled%3:00:00:: 1 -2 wall_street%1:15:00:: 1 -2 walk_out_of%2:38:00:: 1 -2 walk_out%2:41:00:: 1 -2 walk%1:04:03:: 4 -2 waiting%5:00:00:ready:00 1 -2 waiting%1:04:00:: 1 -2 wait%2:41:00:: 4 -2 wait%1:28:00:: 1 -2 wait%1:04:00:: 2 -2 wail%2:29:00:: 2 -2 wail%1:10:00:: 1 -2 wages%1:11:00:: 1 -2 vulgar%5:00:00:unrefined:01 1 -2 voyage%1:04:00:: 2 -2 volunteer%2:41:01:: 2 -2 volunteer%2:41:00:: 3 -2 voluntarily%4:02:00:: 1 -2 volume%1:23:01:: 5 -2 voltaic_pile%1:06:00:: 1 -2 voltaic_battery%1:06:00:: 1 -2 voltaic%3:01:00:: 1 -2 voltage%1:19:01:: 2 -2 volatile%3:00:00:: 1 -2 voice%1:18:01:: 7 -2 voice%1:18:00:: 8 -2 voice%1:07:01:: 9 -2 vogue%1:09:00:: 1 -2 vociferous%5:00:00:noisy:00 1 -2 vocation%1:04:00:: 1 -2 vivify%2:29:00:: 1 -2 vivacious%5:00:00:spirited:00 1 -2 vitals%1:08:00:: 1 -2 vision%1:09:04:: 4 -2 visible%5:00:00:overt:00 2 -2 viscoelastic%5:00:00:elastic:00 1 -2 virulence%1:07:00:: 1 -2 virtuous%5:00:00:righteous:00 1 -2 virgin_mary%1:18:00:: 1 -2 virgin%5:00:00:new:00 1 -2 violinist%1:18:00:: 1 -2 violence%1:26:00:: 3 -2 violation%1:04:04:: 2 -2 violation%1:04:01:: 3 -2 vindictive%5:00:00:unforgiving:00 1 -2 villain%1:18:00:: 1 -2 villager%1:18:00:: 1 -2 vigilance%1:09:00:: 1 -2 view%2:39:02:: 3 -2 view%1:06:00:: 8 -2 victimize%2:41:01:: 1 -2 vicious%5:00:00:wicked:00 2 -2 vice_versa%4:02:00:: 1 -2 vibrant%5:00:00:spirited:00 1 -2 veto%1:04:00:: 1 -2 vestibule%1:06:00:: 1 -2 vest%1:06:01:: 1 -2 very_well%4:02:01:: 2 -2 verve%1:07:00:: 1 -2 vertebral%3:01:00:: 1 -2 verse%1:10:02:: 1 -2 verse%1:10:00:: 2 -2 verify%2:41:00:: 2 -2 venture%2:32:01:: 3 -2 venture%1:21:00:: 2 -2 vent%1:06:00:: 1 -2 venetian_blind%1:06:00:: 1 -2 vendor%1:18:00:: 1 -2 velvet%1:06:00:: 1 -2 veil%1:06:00:: 1 -2 vehement%5:00:00:intense:00 1 -2 vegetation%1:14:00:: 1 -2 vatican%1:06:00:: 1 -2 vasa_vasorum%1:08:00:: 1 -2 variously%4:02:00:: 1 -2 various%5:00:02:varied:00 4 -2 variation%1:10:00:: 3 -2 variable%5:00:00:varied:00 2 -2 variable%1:09:00:: 2 -2 variability%1:07:00:: 1 -2 vanished%5:00:00:nonexistent:00 1 -2 valve%1:08:00:: 1 -2 value%2:31:03:: 1 -2 value%1:07:01:: 4 -2 valuation%1:09:00:: 1 -2 valuable%5:00:00:important:00 3 -2 validate%2:41:00:: 1 -2 validate%2:31:00:: 2 -2 valet%1:18:00:: 1 -2 vain%5:00:00:unproductive:00 2 -2 vacuum%2:35:00:: 1 -2 vacuolization%1:26:00:: 1 -2 vacation%2:42:00:: 1 -2 vacate%2:41:00:: 1 -2 vacant%5:00:02:empty:00 1 -2 utopia%1:15:00:: 2 -2 uto-aztecan%1:10:00:: 1 -2 utensil%1:06:00:: 1 -2 utah%1:15:00:: 1 -2 usurp%2:40:00:: 1 -2 usual%5:00:00:familiar:02 2 -2 ussr%1:15:00:: 1 -2 usher%2:38:00:: 1 -2 useless%5:00:00:unhelpful:00 2 -2 useful%5:00:00:practical:00 3 -2 us_navy%1:14:00:: 1 -2 urgency%1:26:00:: 1 -2 urge%1:16:00:: 1 -2 urge%1:12:00:: 2 -2 urbanized%5:00:00:urban:00 1 -2 urban_center%1:15:00:: 1 -2 urban%3:00:00:: 2 -2 uranyl_oxalate%1:27:00:: 1 -2 upward%5:00:00:up:00 1 -2 uptown%1:15:00:: 1 -2 upstream%4:02:00:: 1 -2 upset%2:37:01:: 2 -2 upset%2:37:00:: 3 -2 upraised%5:00:00:raised:00 1 -2 upper_limit%1:23:00:: 1 -2 uplifting%1:11:00:: 1 -2 upkeep%1:04:00:: 1 -2 upheaval%1:26:00:: 1 -2 upgrade%2:31:00:: 1 -2 update%2:30:00:: 1 -2 up_to_now%4:02:00:: 1 -2 up_to%5:00:00:adequate:00 2 -2 up%2:30:00:: 1 -2 unwittingly%4:02:00:: 1 -2 unwise%5:00:00:foolish:00 1 -2 unwire%2:35:00:: 1 -2 unwelcome%3:00:00:: 1 -2 unwanted%3:00:00:: 1 -2 unsympathetic%3:00:00:: 1 -2 unsuccessful%5:00:00:unfruitful:00 2 -2 unsuccessful%3:00:00:: 1 -2 unstained%3:00:00:: 1 -2 unsmiling%5:00:00:joyless:00 1 -2 unseen%5:00:00:undetected:00 2 -2 unscrupulous%3:00:00:: 1 -2 unscrew%2:35:00:: 1 -2 unscientific%3:00:00:: 1 -2 unsaturated%3:00:01:: 1 -2 unreliable%5:00:00:fallible:00 1 -2 unrelated%3:00:02:: 1 -2 unrealistic%3:00:00:: 1 -2 unqualified%3:00:02:: 1 -2 unprepared%3:00:00:: 1 -2 unpredictable%3:00:00:: 1 -2 unorthodox%5:00:00:unconventional:00 1 -2 unoccupied%3:00:00:: 1 -2 unobtainable%5:00:00:unavailable:00 1 -2 unnecessarily%4:02:00:: 1 -2 unmoved%3:00:00:: 1 -2 unmistakably%4:02:00:: 1 -2 unmarried%3:00:00:: 1 -2 unlocked%5:00:00:unfastened:00 1 -2 unloading%1:04:00:: 1 -2 unlined%3:00:00:: 1 -2 unleavened_bread%1:13:00:: 1 -2 unleash%2:35:00:: 1 -2 unknown%5:00:00:anonymous:00 2 -2 universe%1:14:00:: 2 -2 unity%1:07:00:: 3 -2 united_kingdom%1:15:00:: 1 -2 unit_cost%1:21:00:: 1 -2 unit%1:17:00:: 7 -2 unique%5:00:00:specific:00 2 -2 union_of_soviet_socialist_republics%1:15:00:: 1 -2 union%1:15:00:: 2 -2 uninterrupted%5:00:00:unbroken:02 1 -2 unimportant%3:00:00:: 1 -2 unify%2:35:00:: 2 -2 uniformity%1:07:01:: 1 -2 uniform%5:00:00:homogeneous:00 2 -2 unhurriedly%4:02:00:: 1 -2 unhitch%2:35:00:: 1 -2 unhesitatingly%4:02:00:: 1 -2 unheeding%3:00:00:: 1 -2 ungodly%5:00:00:wicked:00 1 -2 unfrozen%3:00:00:: 1 -2 unfavorable%3:00:02:: 1 -2 unfair%3:00:04:: 1 -2 unexplained%5:00:00:undetermined:00 1 -2 unexpectedly%4:02:00:: 2 -2 unequally%4:02:02:: 1 -2 unendurable%5:00:00:intolerable:00 1 -2 unemployed%3:00:00:: 1 -2 uneconomical%5:00:00:inefficient:00 1 -2 uneasiness%1:12:02:: 1 -2 unearth%2:40:01:: 1 -2 undue%3:00:00:: 1 -2 undress%2:29:00:: 1 -2 undeveloped%3:00:00:: 1 -2 undesirable%3:00:00:: 1 -2 underwrite%2:32:01:: 1 -2 underwater%5:00:00:subsurface:00 1 -2 undertake%2:41:01:: 2 -2 undertake%2:32:01:: 4 -2 undertake%2:32:00:: 3 -2 understate%2:32:00:: 1 -2 understandingly%4:02:00:: 1 -2 understanding%1:10:00:: 2 -2 understandable%5:00:00:meaningful:00 2 -2 underprivileged%3:00:00:: 1 -2 underdeveloped%5:00:00:nonindustrial:00 1 -2 underbrush%1:14:00:: 1 -2 underachiever%1:18:00:: 1 -2 under_the_circumstances%4:02:00:: 1 -2 under%5:00:00:low:01 1 -2 under%4:02:05:: 1 -2 undeniable%3:00:00:: 1 -2 undaunted%5:00:00:resolute:00 1 -2 undaunted%5:00:00:brave:00 2 -2 uncooperative%3:00:00:: 1 -2 unconvincing%3:00:00:: 1 -2 unconcernedly%4:02:00:: 1 -2 uncomfortable%3:00:01:: 1 -2 uncomfortable%3:00:00:: 2 -2 unclean%3:00:04:: 1 -2 unchanged%3:00:00:: 1 -2 uncertainly%4:02:01:: 1 -2 uncertain%5:00:00:insecure:03 3 -2 unawareness%1:09:00:: 1 -2 unassisted%5:00:00:unsupported:02 1 -2 unasked%5:00:00:unrequested:00 1 -2 unambiguously%4:02:01:: 1 -2 unambiguous%3:00:00:: 1 -2 unaccompanied%3:00:00:: 1 -2 umbrella%1:06:00:: 1 -2 ultraviolet_spectrum%1:19:00:: 1 -2 ultraviolet_radiation%1:19:00:: 1 -2 ultraviolet%5:00:00:invisible:00 1 -2 typography%1:04:00:: 1 -2 typing%1:10:00:: 1 -2 typify%2:42:00:: 1 -2 typical%5:00:00:characteristic:00 2 -2 typhus%1:26:00:: 1 -2 typewriter%1:06:00:: 1 -2 type%2:32:00:: 1 -2 twotime%2:41:00:: 1 -2 twofold%5:00:02:multiple:00 1 -2 two-by-four%1:06:00:: 1 -2 twitch%2:38:01:: 2 -2 twisting%5:00:00:moving:02 1 -2 twist%2:35:00:: 3 -2 twist%1:11:00:: 1 -2 twist%1:10:00:: 2 -2 twist%1:04:01:: 3 -2 twirler%1:18:01:: 1 -2 twirl%2:38:00:: 1 -2 twinge%1:12:00:: 1 -2 twilight%1:26:00:: 1 -2 twenty-four%5:00:00:cardinal:00 1 -2 twenty-eighth%5:00:00:ordinal:00 1 -2 twenties%1:28:01:: 2 -2 twelfth%5:00:00:ordinal:00 1 -2 turnover%1:24:00:: 1 -2 turning%1:04:01:: 2 -2 turning%1:04:00:: 1 -2 turn_up%2:40:00:: 3 -2 turn_to%2:41:00:: 6 -2 turn_over%2:38:02:: 2 -2 turn_out%2:30:00:: 5 -2 turn_on%2:42:00:: 2 -2 turn_of_the_century%1:28:00:: 1 -2 turn_in%2:38:00:: 1 -2 turn_in%2:36:02:: 2 -2 turn%2:35:08:: 8 -2 turn%1:11:01:: 4 -2 turkey%1:05:00:: 1 -2 turban%1:06:00:: 1 -2 tungsten%1:27:00:: 1 -2 tumbling%5:00:00:moving:02 1 -2 tumble%2:38:06:: 2 -2 tumble%2:38:04:: 3 -2 tularemia%1:26:00:: 1 -2 tuition%1:21:00:: 1 -2 tug-of-war%1:04:00:: 1 -2 tudor%1:14:00:: 1 -2 trying%5:00:00:difficult:00 1 -2 try%2:34:00:: 4 -2 trust%2:37:00:: 4 -2 trumpet_vine%1:20:01:: 1 -2 true%5:00:02:faithful:00 4 -2 true%4:02:00:: 1 -2 trudge%2:38:00:: 2 -2 truck_bed%1:06:00:: 1 -2 troupe%1:14:00:: 1 -2 trot%2:38:01:: 2 -2 triple%5:00:00:multiple:00 1 -2 trip%2:38:00:: 1 -2 trigger-happy%5:00:00:irresponsible:00 1 -2 trick%1:04:05:: 1 -2 tribal%3:01:00:: 1 -2 triangle%1:25:00:: 1 -2 trial_and_error%1:04:00:: 1 -2 trial%1:04:03:: 4 -2 trespass%2:41:01:: 1 -2 trench%1:06:00:: 1 -2 tremor%1:04:00:: 1 -2 tree_trunk%1:20:00:: 1 -2 treatment%1:10:00:: 4 -2 treated%5:00:00:stained:00 2 -2 treated%3:00:00:: 1 -2 treasury%1:14:00:: 2 -2 treasure%1:21:00:: 1 -2 treasure%1:06:00:: 2 -2 tread%1:04:00:: 1 -2 travel_to%2:38:00:: 1 -2 travel%2:38:02:: 4 -2 trap%2:41:00:: 1 -2 trap%2:35:00:: 2 -2 trap%1:06:04:: 2 -2 transpose%2:30:00:: 1 -2 transport%2:35:00:: 2 -2 transparent%5:00:00:thin:01 2 -2 transmute%2:30:00:: 1 -2 transmutation%1:04:00:: 1 -2 transmit%2:38:00:: 2 -2 transmit%2:32:00:: 3 -2 transmission%1:10:00:: 2 -2 translucent%5:00:00:clear:02 1 -2 translation%1:11:00:: 2 -2 translation%1:04:02:: 3 -2 translate%2:35:00:: 4 -2 translate%2:30:00:: 5 -2 transit%1:06:00:: 1 -2 transcendental%5:00:00:supernatural:00 1 -2 transcendent%5:00:00:unknown:00 1 -2 transaction%1:04:00:: 1 -2 transact%2:40:14:: 1 -2 trampled%5:00:00:damaged:00 1 -2 tragicomic%3:01:00:: 1 -2 trading%1:04:00:: 1 -2 trade%5:00:00:commercial:00 1 -2 trade%2:42:00:: 3 -2 trade%2:40:02:: 4 -2 trade%1:14:00:: 5 -2 track%2:38:02:: 1 -2 trachea%1:08:01:: 1 -2 trace%2:38:01:: 3 -2 trace%2:38:00:: 4 -2 trace%1:10:00:: 2 -2 tower%2:42:00:: 1 -2 tough%5:00:00:rugged:00 4 -2 tough%3:00:02:: 3 -2 touch%2:41:00:: 7 -2 touch%2:35:04:: 8 -2 touch%1:10:01:: 3 -2 touch%1:07:01:: 4 -2 touch%1:04:00:: 5 -2 total%5:00:02:complete:00 4 -2 total%5:00:00:unconditional:00 3 -2 total%2:32:00:: 2 -2 toss_away%2:40:00:: 1 -2 toss%1:04:00:: 2 -2 tory%1:18:01:: 1 -2 tortuous%5:00:00:complex:00 1 -2 torn%5:00:00:divided:00 2 -2 torn%5:00:00:damaged:00 3 -2 tormentor%1:18:00:: 1 -2 torch%1:06:02:: 1 -2 topical%5:00:00:local:02 1 -2 topic%1:09:00:: 2 -2 topgallant_mast%1:06:00:: 1 -2 top%2:42:00:: 1 -2 tooth%1:06:01:: 2 -2 tool-and-die_work%1:04:00:: 1 -2 too_large%5:00:00:large:00 1 -2 tons%1:23:00:: 1 -2 tongue-in-cheek%5:00:00:humorous:00 1 -2 tongue%1:25:00:: 3 -2 tone%1:07:00:: 5 -2 tomato%1:13:00:: 1 -2 token%1:10:00:: 1 -2 toilet%1:06:01:: 2 -2 toil%2:41:00:: 1 -2 together%5:00:00:unneurotic:00 1 -2 toe_the_line%2:41:00:: 1 -2 toe%1:06:00:: 2 -2 to_what_extent%4:02:00:: 1 -2 titter%2:29:00:: 1 -2 title%1:26:00:: 4 -2 title%1:10:04:: 5 -2 tit%1:08:01:: 1 -2 tissue_paper%1:27:00:: 1 -2 tire_out%2:29:00:: 1 -2 tinted%5:00:00:colored:00 1 -2 tinkle%2:39:00:: 1 -2 tingling%5:00:00:exciting:00 1 -2 tine%1:06:00:: 1 -2 timidly%4:02:00:: 1 -2 time_of_life%1:28:00:: 1 -2 time_machine%1:06:00:: 1 -2 time_and_time_again%4:02:00:: 1 -2 time_and_again%4:02:00:: 1 -2 timbre%1:07:00:: 1 -2 timber%1:06:00:: 2 -2 tilted%5:00:00:inclined:01 1 -2 tight%5:00:00:tense:01 2 -2 tied%5:00:00:bound:01 1 -2 tie_in%2:42:00:: 1 -2 tie%2:35:01:: 4 -2 tick%2:39:00:: 1 -2 tick%1:11:00:: 1 -2 tibet%1:15:00:: 1 -2 thunder%2:38:00:: 1 -2 thumping%1:11:00:: 1 -2 thumb%2:38:00:: 1 -2 thrust%1:19:00:: 1 -2 throw_off%2:35:00:: 1 -2 throw_in%2:40:00:: 1 -2 throw%2:38:03:: 8 -2 throw%2:37:00:: 9 -2 throw%2:32:03:: 10 -2 through%4:02:01:: 3 -2 throttle%2:30:01:: 1 -2 throb%2:39:00:: 1 -2 throb%2:38:01:: 2 -2 throat%1:06:01:: 2 -2 throat%1:06:00:: 3 -2 thriving%5:00:00:successful:00 1 -2 thrilling%5:00:00:exciting:00 1 -2 thrill%2:39:00:: 1 -2 thrill%1:12:02:: 2 -2 thrifty%3:00:00:: 1 -2 three-dimensionality%1:07:00:: 1 -2 three-dimensional_figure%1:25:00:: 1 -2 threatening%5:00:00:alarming:00 1 -2 thrash%2:35:00:: 1 -2 thoughtless%3:00:00:: 1 -2 thoughtful%5:00:00:profound:00 1 -2 thoroughgoing%5:00:00:complete:00 1 -2 thoroughfare%1:06:00:: 1 -2 this_evening%4:02:00:: 1 -2 thirty%1:23:00:: 1 -2 thirst%1:26:00:: 1 -2 third-dimensional%5:00:00:multidimensional:00 1 -2 third%5:00:00:fractional:00 2 -2 think_up%2:36:00:: 1 -2 think_out%2:31:00:: 1 -2 think_back%2:31:00:: 1 -2 think%2:31:06:: 7 -2 thin%5:00:01:weak:00 4 -2 thin%5:00:00:distributed:00 5 -2 thin%2:30:00:: 1 -2 thieving%1:04:00:: 1 -2 thickspread%5:00:00:covered:00 1 -2 thicken%2:30:01:: 1 -2 thicken%2:30:00:: 2 -2 thick%5:00:00:unintelligible:00 4 -2 thermometry%1:04:00:: 1 -2 thermodynamically%4:02:00:: 1 -2 thermodynamic%3:01:00:: 1 -2 therewith%4:02:00:: 1 -2 thereupon%4:02:00:: 1 -2 theretofore%4:02:00:: 1 -2 there%4:02:01:: 3 -2 theorize%2:31:00:: 1 -2 theoretically%4:02:00:: 1 -2 thence%4:02:01:: 1 -2 theatrically%4:02:00:: 1 -2 theatre%1:10:00:: 2 -2 the_shits%1:26:00:: 1 -2 the_netherlands%1:15:00:: 1 -2 the_least_bit%4:02:00:: 1 -2 the_english%1:18:00:: 1 -2 the_bronx%1:15:00:: 1 -2 thanksgiving%1:28:00:: 1 -2 thanks%1:04:00:: 2 -2 texan%1:18:00:: 1 -2 testing%1:04:02:: 3 -2 testimony%1:10:02:: 3 -2 testimonial%1:10:02:: 1 -2 testicle%1:08:00:: 1 -2 tested%5:00:00:proved:00 1 -2 testament%1:09:00:: 1 -2 test%1:10:00:: 4 -2 test%1:04:03:: 5 -2 test%1:04:00:: 6 -2 territory%1:09:00:: 3 -2 territorial%3:01:00:: 1 -2 terrific%5:00:00:extraordinary:00 2 -2 terrier%1:05:00:: 1 -2 terrible%5:00:01:bad:00 2 -2 terrain%1:15:00:: 1 -2 terrace%1:06:00:: 1 -2 terms%1:26:00:: 1 -2 terminology%1:10:00:: 1 -2 terminate%2:42:00:: 3 -2 terminal%1:06:00:: 1 -2 tenure%1:28:00:: 1 -2 tenth%1:23:00:: 1 -2 tensely%4:02:00:: 1 -2 tense%1:10:00:: 1 -2 tenderly%4:02:00:: 1 -2 tender%5:00:00:young:00 3 -2 tender%5:00:00:painful:00 2 -2 tender%5:00:00:loving:00 4 -2 tender%3:00:03:: 1 -2 tenancy%1:04:00:: 1 -2 tempo%1:28:01:: 1 -2 temper%1:12:00:: 2 -2 temper%1:07:02:: 3 -2 temerity%1:07:00:: 1 -2 television_set%1:06:00:: 1 -2 television_program%1:10:00:: 1 -2 television%1:06:00:: 2 -2 telephone_pole%1:06:00:: 1 -2 telephone_operator%1:18:00:: 1 -2 telephone_call%1:10:00:: 1 -2 telephone_booth%1:06:00:: 1 -2 telegraphic%3:01:00:: 1 -2 telegraph%2:32:00:: 1 -2 telegram%1:10:00:: 1 -2 teeter%2:38:00:: 1 -2 tedious%5:00:00:uninteresting:00 1 -2 technology%1:09:00:: 2 -2 teat%1:08:00:: 1 -2 tease%2:37:00:: 1 -2 tear_away%2:30:00:: 1 -2 tear%2:38:00:: 3 -2 teammate%1:18:00:: 1 -2 team_up%2:33:00:: 1 -2 teach%2:30:00:: 2 -2 teacart%1:06:00:: 1 -2 taxi%2:38:01:: 1 -2 tax_return%1:10:00:: 1 -2 tavern%1:06:00:: 1 -2 tarpaulin%1:06:00:: 1 -2 tariff%1:21:00:: 1 -2 target_area%1:15:00:: 1 -2 target%1:09:00:: 5 -2 tapping%1:11:00:: 1 -2 tapered%5:00:00:pointed:00 1 -2 tape%1:06:01:: 2 -2 tango%1:04:00:: 1 -2 tangled%5:00:00:complex:00 2 -2 tangle_with%2:42:00:: 1 -2 tangle%1:17:00:: 1 -2 tall_tale%1:10:00:: 1 -2 talk%2:32:06:: 5 -2 take_up%2:41:00:: 5 -2 take_turns%2:30:00:: 1 -2 take_to_be%2:31:00:: 1 -2 take_the_floor%2:38:00:: 1 -2 take_out%2:40:02:: 4 -2 take_on%2:41:00:: 3 -2 take_on%2:33:00:: 4 -2 take_off%2:41:00:: 5 -2 take_notice%2:39:00:: 1 -2 take_note%2:39:00:: 1 -2 take_leave%2:38:00:: 1 -2 take_in%2:32:00:: 2 -2 take_hold%2:35:00:: 2 -2 take_for%2:31:00:: 1 -2 take_away%2:40:01:: 4 -2 take_account%2:31:12:: 1 -2 take%2:42:10:: 30 -2 take%2:40:03:: 31 -2 tail%1:28:00:: 2 -2 taffy%1:13:00:: 1 -2 tactile%3:01:00:: 1 -2 tactics%1:09:01:: 1 -2 tact%1:07:00:: 1 -2 tabula_rasa%1:09:00:: 1 -2 systematization%1:04:00:: 1 -2 systematically%4:02:00:: 1 -2 systematic%3:00:00:: 1 -2 synthetic_cubism%1:14:00:: 1 -2 synthesis%1:09:00:: 2 -2 syntax%1:09:01:: 1 -2 synonym%1:10:00:: 1 -2 synchrony%1:24:00:: 1 -2 synagogue%1:06:00:: 1 -2 symposium%1:14:00:: 1 -2 sympathize%2:37:01:: 1 -2 sympathetic%5:00:00:congenial:00 3 -2 symbolically%4:02:00:: 1 -2 symbolic%5:00:00:representative:00 2 -2 symbolic%3:01:00:: 1 -2 symbol%1:09:00:: 2 -2 swivel_chair%1:06:00:: 1 -2 swivel%2:38:00:: 1 -2 switch_off%2:35:00:: 1 -2 switch%2:30:02:: 3 -2 swirl%1:25:00:: 1 -2 swinging%5:00:00:moving:02 1 -2 swing_around%2:38:00:: 1 -2 swing%2:42:00:: 6 -2 swing%2:33:00:: 7 -2 swing%2:30:08:: 8 -2 swindle%2:41:00:: 1 -2 swelling%1:26:00:: 1 -2 swell%1:17:00:: 2 -2 sweet%5:00:02:pleasing:00 5 -2 sweet%5:00:01:pleasing:00 6 -2 sweet%5:00:00:tasteful:01 4 -2 sweet%5:00:00:fragrant:00 7 -2 sweeping%5:00:00:wide:00 1 -2 sweeping%5:00:00:moving:02 2 -2 sweep_away%2:36:00:: 1 -2 sweep%2:42:03:: 5 -2 sweatshirt%1:06:00:: 1 -2 sweating%5:00:00:wet:01 1 -2 swear_off%2:32:00:: 1 -2 swear%2:32:02:: 3 -2 swatch%1:06:00:: 1 -2 sward%1:17:00:: 1 -2 swallow_up%2:35:00:: 1 -2 swallow%2:35:00:: 3 -2 swaggering%5:00:00:proud:00 1 -2 swagger%2:38:00:: 1 -2 sustenance%1:13:00:: 1 -2 sustain%2:34:01:: 3 -2 sustain%2:34:00:: 4 -2 suspiciously%4:02:00:: 1 -2 suspicion%1:09:00:: 2 -2 suspense%1:12:02:: 1 -2 suspense%1:09:00:: 2 -2 suspended_animation%1:26:00:: 1 -2 suspend%2:41:00:: 3 -2 suspend%2:30:00:: 4 -2 suspect%5:00:00:questionable:00 1 -2 suspect%2:31:00:: 3 -2 susceptible%3:00:00:: 1 -2 susceptibility%1:26:00:: 1 -2 surviving%5:00:00:extant:00 1 -2 surveyor%1:18:00:: 1 -2 surveillance%1:04:01:: 1 -2 surround%2:35:01:: 3 -2 surrender%2:40:00:: 2 -2 surrender%2:33:01:: 3 -2 surprisingly%4:02:01:: 2 -2 surpass%2:42:00:: 1 -2 surpass%2:33:00:: 2 -2 surmount%2:33:00:: 1 -2 surmise%2:31:00:: 1 -2 surge%1:04:00:: 2 -2 surface_area%1:07:00:: 1 -2 surface%5:00:00:shallow:02 2 -2 surface%3:00:00:: 1 -2 supreme_court%1:14:00:: 1 -2 supposed%5:00:02:improbable:00 2 -2 supposed%5:00:00:acknowledged:00 3 -2 supporting%5:00:00:supportive:00 1 -2 support%2:42:00:: 7 -2 support%2:32:01:: 8 -2 support%1:21:00:: 6 -2 support%1:06:01:: 7 -2 support%1:04:01:: 8 -2 supply%1:04:00:: 3 -2 supplier%1:18:00:: 1 -2 supplicate%2:32:00:: 1 -2 supplementary%5:00:00:added:00 1 -2 supersonic%3:00:00:: 1 -2 supernaturalism%1:09:00:: 1 -2 supernatural%1:18:00:: 1 -2 superimposed%5:00:00:added:00 1 -2 superbly%4:02:00:: 1 -2 super%4:02:00:: 1 -2 sunshade%1:06:00:: 1 -2 sunny%5:00:00:clear:03 1 -2 sunny%5:00:00:cheerful:00 2 -2 sunken%5:00:00:hollow:00 1 -2 sumptuous%5:00:00:rich:03 1 -2 summon%2:32:05:: 2 -2 sullenly%4:02:00:: 1 -2 sulky%1:06:00:: 1 -2 sulkily%4:02:00:: 1 -2 suite%1:10:00:: 1 -2 suite%1:06:00:: 2 -2 suitably%4:02:00:: 1 -2 suffix%1:10:00:: 1 -2 suffering%1:12:01:: 4 -2 sufferer%1:18:00:: 1 -2 suck_in%2:34:00:: 1 -2 suck%2:38:00:: 2 -2 succor%1:04:00:: 1 -2 successor%1:09:00:: 2 -2 suburbanite%1:18:00:: 1 -2 subtend%2:42:00:: 1 -2 substrate%1:27:00:: 1 -2 substitute%5:00:01:secondary:01 1 -2 substantiate%2:31:00:: 1 -2 substance%1:09:01:: 2 -2 substance%1:09:00:: 3 -2 subscribe%2:40:01:: 1 -2 subordinator%5:00:00:subordinating(a):00 1 -2 subordinate%3:00:01:: 1 -2 submucosa%1:08:00:: 1 -2 submit%2:41:00:: 5 -2 submit%2:32:02:: 6 -2 submit%2:31:12:: 7 -2 submission%1:04:01:: 2 -2 submerge%2:38:00:: 1 -2 submachine_gun%1:06:00:: 1 -2 subject%2:32:07:: 3 -2 subject%2:31:00:: 4 -2 subject%1:18:01:: 6 -2 subject%1:18:00:: 7 -2 subgross%5:00:00:microscopic:00 1 -2 subdued%5:00:00:restrained:00 2 -2 subdue%2:41:00:: 1 -2 subdue%2:30:01:: 2 -2 subdivision%1:15:00:: 1 -2 subdivision%1:04:00:: 2 -2 sub-test%1:04:00:: 1 -2 stylization%1:04:00:: 1 -2 style%1:09:00:: 4 -2 stutter%2:32:00:: 1 -2 stupendous%5:00:00:large:00 1 -2 stunt%1:04:00:: 1 -2 stunned%5:00:00:surprised:00 1 -2 stun%2:30:00:: 1 -2 stumbling%5:00:00:unsteady:00 1 -2 stumble%2:40:10:: 3 -2 study%2:31:04:: 6 -2 study%1:06:01:: 7 -2 studiously%4:02:00:: 1 -2 stucco%1:27:00:: 1 -2 strut%2:38:00:: 1 -2 strut%1:04:00:: 1 -2 strum%2:39:00:: 1 -2 struggle%2:33:00:: 4 -2 structurally%4:02:00:: 1 -2 structural%3:01:00:: 2 -2 strop%2:35:00:: 1 -2 stroke%1:11:00:: 2 -2 strip%2:29:01:: 2 -2 string%2:35:02:: 1 -2 string%1:06:03:: 3 -2 strike_out%2:32:00:: 1 -2 strike%2:42:00:: 8 -2 strike%2:41:02:: 9 -2 strike%2:35:03:: 10 -2 strike%2:30:00:: 11 -2 strike%1:04:02:: 2 -2 strife%1:26:00:: 1 -2 strife%1:04:00:: 2 -2 stride%1:23:00:: 2 -2 strictly_speaking%4:02:00:: 1 -2 strictly%4:02:02:: 2 -2 strict%5:00:00:invariable:00 2 -2 striation%1:25:00:: 1 -2 stretched_out%5:00:00:extended:00 1 -2 stretched%5:00:00:extended:00 2 -2 stretch_out%2:38:00:: 1 -2 stretch_forth%2:29:00:: 1 -2 stretch%1:06:00:: 3 -2 stretch%1:04:00:: 4 -2 stress%2:30:00:: 3 -2 stress%1:26:02:: 4 -2 stress%1:19:00:: 5 -2 strength%1:07:01:: 4 -2 streetlight%1:06:00:: 1 -2 street_corner%1:06:00:: 1 -2 street%1:26:00:: 3 -2 streamlined%5:00:00:efficient:00 1 -2 streaming%3:44:00:: 1 -2 stream%2:38:03:: 3 -2 stream%1:26:00:: 4 -2 stream%1:11:00:: 5 -2 streaked%5:00:00:patterned:00 1 -2 streak%2:38:00:: 1 -2 stray%5:00:00:sporadic:00 1 -2 stray%2:38:01:: 1 -2 straw_hat%1:06:00:: 1 -2 straw%1:27:01:: 2 -2 strap%1:06:01:: 1 -2 strand%2:40:00:: 1 -2 strained%5:00:00:tense:03 2 -2 strain%1:26:01:: 4 -2 strain%1:14:00:: 5 -2 straightforward%5:00:00:unequivocal:00 1 -2 straightforward%5:00:00:direct:02 2 -2 straighten_out%2:30:01:: 1 -2 straight_face%1:10:00:: 1 -2 straight%5:00:00:erect:00 4 -2 straggle%2:38:00:: 1 -2 stout%5:00:00:fat:01 2 -2 storyteller%1:18:00:: 1 -2 story%1:10:01:: 5 -2 stormy%3:00:00:: 1 -2 storm%2:42:00:: 1 -2 storefront%1:06:00:: 1 -2 stop%2:35:00:: 8 -2 stone_wall%1:06:00:: 1 -2 stomp%2:38:00:: 1 -2 stoicism%1:09:00:: 2 -2 stoic%1:18:01:: 1 -2 stock%2:40:00:: 1 -2 stock%1:06:02:: 3 -2 stir%2:35:00:: 5 -2 stink%2:42:00:: 1 -2 sting%1:26:00:: 1 -2 stimulate%2:36:00:: 5 -2 still%3:00:03:: 4 -2 still%1:06:01:: 1 -2 stifle%2:35:00:: 1 -2 stiffly%4:02:01:: 2 -2 stiffen%2:30:01:: 2 -2 stiff%5:00:00:immobile:00 2 -2 stiff%1:18:00:: 1 -2 sticky%5:00:02:wet:01 2 -2 sticking%5:00:00:protrusive:00 1 -2 stick%2:38:00:: 2 -2 stick%2:35:05:: 3 -2 stick%2:35:00:: 4 -2 stethoscope%1:06:00:: 1 -2 stern%5:00:00:implacable:00 2 -2 stern%5:00:00:demanding:01 3 -2 stern%1:06:00:: 1 -2 sterilize%2:29:01:: 1 -2 stepwise%5:00:00:gradual:01 1 -2 steps%1:17:00:: 2 -2 step_up%2:30:01:: 2 -2 step_in%2:41:00:: 1 -2 step%1:06:00:: 4 -2 steep%2:31:00:: 1 -2 steam%2:38:02:: 1 -2 steak%1:13:00:: 1 -2 steady%2:30:00:: 1 -2 steadfastly%4:02:00:: 1 -2 stead%1:04:00:: 1 -2 stay_put%2:38:00:: 1 -2 stay%1:04:00:: 1 -2 staunch%5:00:00:constant:00 1 -2 statistically%4:02:00:: 1 -2 stationery%1:10:00:: 1 -2 state%2:32:02:: 3 -2 starvation%1:26:00:: 1 -2 starting_point%1:28:00:: 1 -2 start_up%2:38:00:: 1 -2 start_out%2:38:00:: 2 -2 start%2:41:00:: 10 -2 start%1:04:02:: 3 -2 star_of_david%1:10:00:: 1 -2 stands%1:06:00:: 1 -2 standing%5:00:00:erect:00 1 -2 standardized%5:00:00:standard:02 1 -2 standard_of_living%1:26:00:: 1 -2 standard%3:00:01:: 3 -2 stand_up%2:35:03:: 3 -2 stand_up%2:35:00:: 4 -2 stand_up%2:32:00:: 5 -2 stand_guard%2:41:00:: 1 -2 stand_for%2:32:00:: 2 -2 stand_by%2:42:02:: 2 -2 stand%2:42:01:: 9 -2 stand%1:15:00:: 2 -2 stand%1:14:00:: 3 -2 stand%1:06:04:: 4 -2 stand%1:06:03:: 5 -2 stampede%2:38:01:: 1 -2 stamp_out%2:30:00:: 1 -2 staminate%5:00:00:male:00 1 -2 stall%2:42:00:: 1 -2 stall%1:06:01:: 3 -2 stalking%5:00:00:following:00 1 -2 stake%2:41:00:: 1 -2 stake%2:33:00:: 2 -2 stake%1:21:02:: 1 -2 stain%2:35:00:: 2 -2 stain%2:30:00:: 3 -2 stain%1:27:00:: 2 -2 stagnant%5:00:00:standing(a):02 1 -2 staggeringly%4:02:00:: 1 -2 stagger%2:31:00:: 3 -2 stage_door%1:06:00:: 1 -2 stage%1:06:01:: 5 -2 stage%1:04:00:: 6 -2 staff%1:06:00:: 2 -2 stadium%1:06:00:: 1 -2 stack%2:35:01:: 1 -2 stack%1:14:00:: 1 -2 stable%5:00:00:sound:00 2 -2 stabilize%2:30:01:: 1 -2 stabilization%1:04:00:: 1 -2 squire%1:18:01:: 1 -2 squeal%2:32:01:: 1 -2 squat%5:00:00:low:01 2 -2 squat%2:42:01:: 2 -2 square_up%2:30:00:: 1 -2 square%4:02:00:: 1 -2 square%2:31:00:: 2 -2 square%1:23:00:: 2 -2 square%1:15:00:: 3 -2 spy%2:39:00:: 1 -2 spy%2:32:01:: 2 -2 sputnik%1:06:00:: 1 -2 spurn%2:32:00:: 1 -2 spur%2:41:00:: 1 -2 spur%2:37:00:: 2 -2 sprinter%1:18:00:: 1 -2 sprinkling%1:23:00:: 1 -2 springfield%1:15:00:: 1 -2 spring%2:38:00:: 3 -2 spread_out%2:35:00:: 2 -2 spread-out%5:00:00:distributed:00 1 -2 spread%1:06:01:: 3 -2 spray%2:35:00:: 2 -2 sprawled%5:00:00:extended:00 1 -2 sprawl%2:38:00:: 2 -2 spot%1:10:01:: 2 -2 spot%1:07:02:: 3 -2 spot%1:07:01:: 5 -2 spot%1:07:00:: 4 -2 sports_editor%1:18:00:: 1 -2 spore%1:20:00:: 1 -2 spontaneously%4:02:00:: 1 -2 spongy%5:00:00:soft:01 1 -2 sponge_off%2:35:00:: 1 -2 sponge%2:35:00:: 1 -2 spoken_language%1:10:00:: 1 -2 spoken%3:00:00:: 1 -2 spoke%1:06:00:: 1 -2 spoil%2:41:02:: 1 -2 spluttering%5:00:00:noisy:00 1 -2 split%2:41:00:: 3 -2 split%2:38:00:: 4 -2 split%2:30:01:: 5 -2 splintered%5:00:00:broken:01 1 -2 splendor%1:07:01:: 2 -2 splendor%1:07:00:: 1 -2 splattered%5:00:00:covered:00 1 -2 splash%2:35:01:: 1 -2 spit_out%2:29:00:: 1 -2 spiritual%1:10:00:: 1 -2 spirit_world%1:15:00:: 1 -2 spirit%1:07:03:: 8 -2 spiral%2:38:00:: 1 -2 spill%2:35:04:: 1 -2 spike%1:11:00:: 1 -2 sphere%1:15:00:: 3 -2 sphere%1:09:00:: 4 -2 spelling%1:10:00:: 1 -2 spell%2:32:01:: 2 -2 spell%2:32:00:: 1 -2 speedy%5:00:00:fast:01 1 -2 speedily%4:02:00:: 1 -2 speed%2:38:01:: 4 -2 speculation%1:10:03:: 1 -2 speculation%1:09:00:: 2 -2 spectrum%1:07:00:: 2 -2 spectrometer%1:06:00:: 1 -2 spectral%5:00:00:supernatural:00 2 -2 spectacularly%4:02:00:: 1 -2 spectacle%1:06:00:: 2 -2 speck%1:07:00:: 1 -2 specify%2:32:00:: 4 -2 specialty%1:07:02:: 1 -2 specially%4:02:00:: 2 -2 specialized%5:00:00:technical:00 2 -2 specialize%2:32:00:: 2 -2 specialize%2:30:01:: 3 -2 specialization%1:04:01:: 1 -2 specialization%1:04:00:: 2 -2 special%5:00:00:primary:00 6 -2 speaker%1:06:00:: 2 -2 spatially%4:02:00:: 1 -2 sparkling%5:00:00:starry:00 1 -2 sparkle%1:07:01:: 1 -2 spark%1:19:00:: 3 -2 spanish-american_war%1:04:00:: 1 -2 spain%1:15:00:: 1 -2 spade%1:06:01:: 1 -2 spaciousness%1:07:00:: 1 -2 spacious%5:00:00:large:00 1 -2 space%1:10:00:: 6 -2 sovereign%5:00:00:dominant:01 2 -2 southeast%4:02:00:: 1 -2 south_side%1:15:00:: 1 -2 south%1:24:00:: 3 -2 south%1:15:02:: 4 -2 sour%2:30:01:: 1 -2 soup%1:13:00:: 1 -2 soundtrack%1:06:00:: 1 -2 sounding%5:00:00:superficial:00 1 -2 sort_out%2:31:01:: 2 -2 sort%1:07:00:: 2 -2 sorrowful%3:00:00:: 1 -2 sorption%1:22:00:: 1 -2 sorority%1:14:00:: 1 -2 sorely%4:02:01:: 1 -2 sordid%5:00:00:disreputable:00 1 -2 sorbed%5:00:00:combined:00 1 -2 soprano%1:18:00:: 1 -2 sophistication%1:09:00:: 1 -2 soothingly%4:02:00:: 1 -2 sooner%4:02:00:: 1 -2 soon_enough%4:02:00:: 1 -2 songwriter%1:18:00:: 1 -2 son%1:18:01:: 2 -2 somnolent%5:00:00:asleep(p):00 1 -2 some_other%5:00:00:other:00 1 -2 some%4:02:00:: 1 -2 somber%5:00:00:cheerless:00 1 -2 solitary%5:00:00:single(a):00 5 -2 solidity%1:07:02:: 1 -2 solid_angle%1:25:00:: 1 -2 solid-state%5:00:02:solid:01 1 -2 solicitude%1:12:00:: 1 -2 solemn%5:00:00:serious:00 2 -2 sole%5:00:00:unshared:00 1 -2 soldiery%1:14:00:: 1 -2 solace%2:37:00:: 1 -2 solace%1:12:00:: 1 -2 softness%1:07:00:: 1 -2 soft_drink%1:13:00:: 1 -2 soft%5:00:00:tender:02 4 -2 sodium_tripolyphosphate%1:27:00:: 1 -2 sodium_iodide%1:27:00:: 1 -2 sodden%5:00:00:wet:01 1 -2 sock%2:35:00:: 1 -2 sociological%3:01:00:: 1 -2 socioeconomic%3:01:00:: 1 -2 social_welfare%1:04:00:: 1 -2 social_system%1:14:00:: 1 -2 social_structure%1:14:00:: 1 -2 social_security%1:04:00:: 1 -2 social_organization%1:14:00:: 1 -2 social_contract%1:26:00:: 1 -2 social%5:00:00:sociable:00 4 -2 social%3:01:02:: 3 -2 sob%2:29:00:: 1 -2 soaring%5:00:00:high:02 1 -2 soaking%5:00:00:wet:01 1 -2 so_to_speak%4:02:00:: 1 -2 so%4:02:04:: 6 -2 snugly%4:02:00:: 1 -2 snowball%1:20:00:: 1 -2 snoring%1:04:00:: 1 -2 sniper%1:18:00:: 1 -2 snicker%2:29:00:: 1 -2 sneer%2:29:01:: 1 -2 sneer%1:10:00:: 1 -2 sneaker%1:06:00:: 1 -2 sneak_off%2:38:00:: 1 -2 sneak%2:38:00:: 1 -2 snap%2:38:00:: 4 -2 snap%2:30:01:: 5 -2 snag%2:35:00:: 1 -2 smuggler%1:18:00:: 1 -2 smudged%5:00:00:dirty:01 1 -2 smother%2:35:02:: 1 -2 smooth_over%2:41:00:: 1 -2 smokehouse%1:06:00:: 1 -2 smitten%5:00:00:affected:00 1 -2 smite%2:35:00:: 1 -2 smiling%5:00:00:cheerful:00 1 -2 smash%1:11:01:: 1 -2 smart%5:00:00:intelligent:00 3 -2 smart%5:00:00:forward:02 4 -2 smallness%1:07:00:: 1 -2 small_intestine%1:08:00:: 1 -2 small-arm%1:06:00:: 1 -2 small%5:00:00:little(a):03 11 -2 smack%2:35:02:: 1 -2 slump%1:22:00:: 1 -2 slumber%2:29:00:: 1 -2 slum_area%1:15:00:: 1 -2 sluggish%5:00:01:slow:01 1 -2 slowness%1:09:02:: 1 -2 slow_down%2:30:01:: 2 -2 slow%4:02:00:: 1 -2 slow%2:30:01:: 2 -2 sloppy%5:00:00:untidy:00 1 -2 sloping%5:00:00:inclined:01 1 -2 slop%2:35:00:: 1 -2 sloe%1:20:02:: 1 -2 slob%1:18:00:: 1 -2 slip%2:38:05:: 5 -2 slink%2:38:00:: 1 -2 sling%2:35:00:: 1 -2 slight%1:04:00:: 1 -2 slide%1:06:02:: 1 -2 slicker%1:06:00:: 1 -2 slice%2:35:01:: 1 -2 slice%1:13:00:: 2 -2 slavic%1:10:00:: 1 -2 slaughter%2:30:00:: 2 -2 slate_roof%1:06:00:: 1 -2 slate%2:31:00:: 1 -2 slat%1:06:00:: 1 -2 slash%2:30:00:: 4 -2 skirt%2:32:00:: 1 -2 skirt%1:06:00:: 2 -2 skinny%5:00:00:thin:03 1 -2 skin%1:26:00:: 5 -2 skim_off%2:35:00:: 1 -2 sketch%1:10:00:: 3 -2 skeptical%5:00:00:distrustful:00 2 -2 sizzling%5:00:00:hot:01 1 -2 sized%3:00:00:: 1 -2 size_up%2:39:00:: 1 -2 size%5:00:00:sized:00 1 -2 sizable%5:00:00:large:00 1 -2 sixteenth%5:00:00:ordinal:00 1 -2 situated%5:00:00:settled:01 1 -2 sitting_room%1:06:00:: 1 -2 sip%1:04:01:: 1 -2 sinusoid%1:08:00:: 1 -2 sink_in%2:31:00:: 1 -2 sink%2:38:04:: 6 -2 sink%2:30:00:: 7 -2 single_out%2:31:00:: 1 -2 sinful%5:00:00:wicked:00 1 -2 sinewy%5:00:00:tough:01 1 -2 sincerity%1:12:00:: 1 -2 sincerity%1:07:00:: 2 -2 simplistic%5:00:00:simple:02 1 -2 simplified%5:00:00:easy:01 1 -2 simple%5:00:00:naive:00 4 -2 silver_chloride%1:27:00:: 1 -2 silver%1:27:00:: 1 -2 silver%1:21:00:: 2 -2 silver%1:07:00:: 3 -2 silo%1:06:00:: 1 -2 sill%1:06:00:: 1 -2 silent_movie%1:10:00:: 1 -2 significant%5:00:00:meaningful:00 4 -2 significance%1:10:00:: 3 -2 sign_up%2:41:00:: 1 -2 sign%2:41:01:: 4 -2 sign%1:15:00:: 5 -2 sightseeing%1:04:00:: 1 -2 sight%1:09:03:: 5 -2 sight%1:09:02:: 6 -2 sight%1:04:00:: 7 -2 sigh%2:32:01:: 2 -2 siege%1:04:00:: 1 -2 sidle%2:38:01:: 1 -2 sidle%2:38:00:: 2 -2 sidewise%4:02:03:: 1 -2 sidelong%5:00:00:indirect:00 1 -2 side_by_side%5:00:00:close:01 1 -2 sicken%2:37:00:: 1 -2 sick_pay%1:21:00:: 1 -2 sicilian%3:01:00:: 1 -2 sicilian%1:18:00:: 1 -2 sic%4:02:00:: 1 -2 siamese_cat%1:05:00:: 1 -2 shuttle%2:38:00:: 1 -2 shut_down%2:41:00:: 1 -2 shut%3:00:02:: 2 -2 shut%2:35:06:: 2 -2 shrink_from%2:41:00:: 1 -2 shrink_back%2:38:00:: 1 -2 shrink%2:38:00:: 2 -2 shrink%2:30:01:: 3 -2 shrilly%4:02:00:: 1 -2 shrill%2:32:00:: 1 -2 shrewd%5:00:00:smart:00 1 -2 shrapnel%1:06:00:: 1 -2 shower_room%1:06:00:: 1 -2 shower%2:40:00:: 1 -2 shower%2:35:00:: 2 -2 shower%2:29:00:: 3 -2 showdown%1:10:00:: 1 -2 showcase%1:26:00:: 1 -2 show%2:38:00:: 13 -2 shovel%1:06:00:: 1 -2 shouting%1:10:01:: 2 -2 shouting%1:10:00:: 1 -2 shout%2:32:08:: 3 -2 shoulder_blade%1:08:00:: 1 -2 shoulder%2:35:02:: 1 -2 shoulder%2:35:00:: 2 -2 shotgun%1:06:00:: 1 -2 shortly%4:02:02:: 3 -2 shortage%1:26:00:: 2 -2 short-run%5:00:00:short:02 1 -2 short-lived%5:00:00:impermanent:00 1 -2 shore_up%2:35:00:: 1 -2 shoot_up%2:30:00:: 1 -2 shoot-down%1:04:00:: 1 -2 shod%3:00:00:: 1 -2 shock%1:04:01:: 2 -2 shock%1:04:00:: 3 -2 shirk%2:41:01:: 1 -2 shiny%5:00:00:bright:00 1 -2 shining%5:00:00:superior:02 1 -2 shining%5:00:00:bright:00 2 -2 shin%1:08:01:: 1 -2 shifting%5:00:00:variable:00 2 -2 shift%2:38:01:: 4 -2 shift%2:30:03:: 5 -2 shift%1:04:00:: 5 -2 shielding%1:06:00:: 2 -2 shielded%5:00:00:protected:00 1 -2 shield%1:06:01:: 2 -2 shenanigan%1:04:00:: 1 -2 sheltered%5:00:00:protected:00 1 -2 shell%1:05:02:: 3 -2 sheet_metal%1:06:00:: 1 -2 sheer%5:00:00:pure:02 2 -2 sheeplike%5:00:00:docile:00 1 -2 shed_light_on%2:31:00:: 1 -2 sheath%1:06:00:: 1 -2 shawl%1:06:00:: 1 -2 shaved%3:00:00:: 1 -2 shattered%5:00:00:broken:01 1 -2 sharply%4:02:02:: 3 -2 sharp%5:00:00:intelligent:00 9 -2 sharp%3:00:04:: 8 -2 shared%3:00:00:: 1 -2 shape%1:09:01:: 4 -2 shape%1:07:01:: 5 -2 shameful%5:00:00:dishonorable:00 1 -2 shamble%2:38:00:: 1 -2 sham%1:06:00:: 1 -2 shaking%1:04:00:: 1 -2 shaken%5:00:00:agitated:00 1 -2 shake_off%2:35:00:: 2 -2 shake_hands%2:32:00:: 1 -2 shake%2:37:00:: 6 -2 shade%2:43:00:: 1 -2 shade%1:10:00:: 4 -2 shackled%5:00:00:bound:01 1 -2 shackle%1:06:00:: 1 -2 sewage_disposal%1:04:00:: 1 -2 severity%1:07:01:: 1 -2 severe%5:00:00:plain:01 3 -2 setup%1:06:00:: 1 -2 settlement%1:14:01:: 2 -2 settlement%1:10:00:: 3 -2 settlement%1:04:01:: 4 -2 settled%3:00:02:: 1 -2 settle%2:30:05:: 8 -2 settle%2:30:03:: 9 -2 setting%1:26:00:: 2 -2 set_up%2:41:00:: 7 -2 set_up%2:36:03:: 8 -2 set_up%2:35:02:: 9 -2 set_on_fire%2:43:01:: 1 -2 set_off%2:30:02:: 3 -2 set_off%2:30:00:: 4 -2 set_down%2:32:00:: 1 -2 set_aside%2:30:00:: 2 -2 set%5:00:00:settled:01 3 -2 set%2:38:00:: 10 -2 set%2:36:00:: 11 -2 set%2:35:09:: 12 -2 set%1:14:01:: 5 -2 serviceable%3:00:00:: 1 -2 service%1:14:00:: 6 -2 serratus%1:08:00:: 1 -2 seriousness%1:12:00:: 1 -2 seriously%4:02:01:: 2 -2 series%1:11:00:: 4 -2 serenity%1:07:00:: 1 -2 serenely%4:02:00:: 1 -2 separated%5:00:00:distributed:00 2 -2 separate_out%2:35:00:: 1 -2 separate%5:00:00:detached:00 3 -2 separate%2:38:01:: 7 -2 separable%5:00:01:divisible:00 1 -2 sensuality%1:12:00:: 1 -2 sensitize%2:30:00:: 1 -2 sensibility%1:12:00:: 2 -2 senseless%5:00:00:unreasonable:00 1 -2 sense_of_purpose%1:07:00:: 1 -2 sense_of_humor%1:07:00:: 1 -2 senior_high_school%1:14:00:: 1 -2 send_on%2:38:00:: 1 -2 send%2:32:03:: 8 -2 seminary%1:14:01:: 1 -2 semiliterate%5:00:00:educated:00 1 -2 semi%5:00:00:similar:00 2 -2 semantically%4:02:00:: 1 -2 sell_out%2:40:00:: 1 -2 sell%2:40:02:: 5 -2 selfishness%1:07:00:: 1 -2 self-sufficient%5:00:00:independent:00 1 -2 self-respect%1:07:00:: 1 -2 self-government%1:26:00:: 1 -2 self-evident%5:00:00:obvious:00 1 -2 self-deception%1:09:00:: 1 -2 self-contained%5:00:00:complete:00 1 -2 self-consciousness%1:12:00:: 1 -2 self-confident%5:00:00:confident:00 1 -2 self-assertive%5:00:00:aggressive:00 1 -2 self%5:00:00:same:02 1 -2 selection%1:14:00:: 2 -2 selected%3:00:00:: 1 -2 select%5:00:02:superior:02 1 -2 seismograph%1:06:00:: 1 -2 segregated%3:00:00:: 1 -2 seedbed%1:06:00:: 1 -2 seed_grain%1:21:00:: 1 -2 see_also%4:02:00:: 1 -2 sedimentation%1:19:00:: 1 -2 sedan%1:06:00:: 1 -2 secure%3:00:02:: 2 -2 secure%2:40:01:: 3 -2 secularized%5:00:00:profane:00 1 -2 secretary_of_state%1:18:00:: 2 -2 secret%5:00:01:covert:00 2 -2 secret%5:00:00:unacknowledged:00 3 -2 secrecy%1:07:02:: 1 -2 secondly%4:02:00:: 1 -2 secondary_school%1:14:00:: 1 -2 secondarily%4:02:00:: 1 -2 second_half%1:28:00:: 1 -2 second%1:04:00:: 3 -2 seattle%1:15:00:: 1 -2 seat%2:42:00:: 2 -2 seat%2:41:00:: 3 -2 seat%1:06:01:: 3 -2 seat%1:06:00:: 4 -2 seasonal%3:00:00:: 1 -2 searching%5:00:00:inquiring:00 1 -2 search%2:35:01:: 4 -2 sear%2:30:00:: 1 -2 seaman%1:18:00:: 1 -2 seam%1:06:00:: 1 -2 sealed_off%5:00:00:sealed:01 1 -2 seal%2:31:00:: 3 -2 scurrying%5:00:00:fast:01 1 -2 scurry%2:38:00:: 1 -2 sculpture%2:36:00:: 1 -2 sculptural%3:01:00:: 1 -2 scrutiny%1:04:01:: 2 -2 scriptural%3:01:00:: 1 -2 screen_door%1:06:00:: 1 -2 screen%2:41:01:: 1 -2 screen%2:31:00:: 2 -2 screen%1:06:05:: 3 -2 screen%1:06:01:: 4 -2 screaming%5:00:00:noisy:00 1 -2 scream%2:32:08:: 2 -2 scrawny%5:00:00:thin:03 1 -2 scrape%1:11:00:: 1 -2 scout%2:39:00:: 1 -2 scotland_yard%1:14:00:: 1 -2 scotland%1:15:00:: 1 -2 scornfully%4:02:00:: 1 -2 scornful%5:00:00:disrespectful:00 1 -2 scorn%2:37:00:: 1 -2 scores%1:23:00:: 1 -2 scoreless%5:00:00:unsuccessful:00 1 -2 scolding%3:44:00:: 1 -2 scoffing%1:10:00:: 1 -2 scimitar%1:06:00:: 1 -2 science_fiction%1:10:00:: 1 -2 sciatica%1:26:00:: 1 -2 schoolgirl%1:18:00:: 1 -2 schooldays%1:28:00:: 1 -2 schoolboy%1:18:00:: 1 -2 school_year%1:28:00:: 1 -2 school_board%1:14:00:: 1 -2 school%2:41:01:: 1 -2 scholastic%3:01:00:: 1 -2 scholarly%3:00:00:: 1 -2 scented%3:00:00:: 1 -2 scatter%2:35:00:: 3 -2 scarf%1:06:00:: 1 -2 scare_off%2:37:00:: 1 -2 scare%2:37:04:: 2 -2 scant%5:00:00:insufficient:00 1 -2 scan%2:31:01:: 3 -2 scale%1:20:00:: 4 -2 scalar_field%1:14:00:: 1 -2 scaffold%1:06:01:: 1 -2 say%2:32:07:: 7 -2 save%2:41:05:: 8 -2 save%2:41:02:: 7 -2 savage%1:18:00:: 1 -2 saturation%1:22:00:: 1 -2 sarcasm%1:10:00:: 1 -2 sane%3:00:00:: 1 -2 sand_dune%1:17:00:: 1 -2 sand%2:35:00:: 1 -2 sanctity%1:07:00:: 1 -2 sanction%1:10:00:: 1 -2 saloon%1:06:01:: 2 -2 salon%1:06:01:: 1 -2 saliva%1:08:00:: 1 -2 saint%1:18:00:: 2 -2 sailing%1:04:01:: 1 -2 said%5:00:00:same:02 1 -2 saga%1:10:00:: 1 -2 safeguard%2:33:00:: 1 -2 sadness%1:12:00:: 1 -2 sadly%4:02:03:: 2 -2 sadism%1:12:00:: 1 -2 sacrilege%1:04:00:: 1 -2 sabotage%1:04:00:: 1 -2 sable%1:06:01:: 1 -2 rust%2:30:00:: 1 -2 rush_out%2:38:00:: 1 -2 rush_off%2:38:00:: 1 -2 rush%2:30:01:: 3 -2 rush%1:11:00:: 2 -2 runoff%1:11:00:: 1 -2 running_time%1:28:00:: 1 -2 running%1:04:03:: 1 -2 running%1:04:01:: 2 -2 runner-up%1:18:00:: 1 -2 run_up%2:30:00:: 1 -2 run_off%2:38:02:: 1 -2 run_down%2:41:00:: 1 -2 run_down%2:38:02:: 2 -2 run_down%2:29:01:: 3 -2 run_down%2:29:00:: 4 -2 run_across%2:38:00:: 1 -2 run%2:42:06:: 18 -2 run%2:42:03:: 17 -2 run%2:42:02:: 16 -2 run%2:41:00:: 19 -2 run%2:36:02:: 20 -2 run%2:36:00:: 21 -2 run%2:35:01:: 22 -2 run%1:11:02:: 3 -2 rummage%2:35:00:: 1 -2 rule%2:42:00:: 3 -2 ruin%1:06:00:: 2 -2 ruefully%4:02:00:: 1 -2 rude%5:00:00:impolite:00 1 -2 rove%2:38:00:: 1 -2 routine%5:00:00:ordinary:00 2 -2 routine%1:10:01:: 2 -2 route%1:06:00:: 2 -2 rouse%2:38:01:: 1 -2 roundup%1:04:01:: 1 -2 round_bone%1:08:00:: 1 -2 round%1:28:01:: 2 -2 roughness%1:07:00:: 1 -2 rough%5:00:00:unrefined:01 2 -2 rough%5:00:00:inexact:00 3 -2 rotating%5:00:00:moving:02 1 -2 roster%1:10:01:: 1 -2 rooting%1:22:00:: 1 -2 root%2:30:00:: 1 -2 root%1:15:00:: 2 -2 root%1:10:00:: 3 -2 rooms%1:06:00:: 1 -2 rooftop%1:15:00:: 1 -2 romp%2:38:00:: 1 -2 rome%1:14:00:: 2 -2 romantic%5:00:01:loving:00 2 -2 romantic%1:18:00:: 1 -2 roman_church%1:14:00:: 1 -2 roman%3:01:02:: 1 -2 roman%3:01:01:: 2 -2 roll%2:39:00:: 5 -2 roll%2:35:00:: 6 -2 roll%1:11:02:: 1 -2 roll%1:10:00:: 2 -2 roiling%5:00:00:agitated:02 1 -2 rodeo%1:04:00:: 1 -2 rocklike%5:00:00:hard:01 1 -2 rocket%1:06:01:: 1 -2 rocket%1:06:00:: 2 -2 rock_python%1:05:00:: 1 -2 roaring%1:11:00:: 1 -2 roar%1:10:00:: 2 -2 roadside%1:06:00:: 1 -2 road%1:04:00:: 2 -2 rivet%2:31:00:: 1 -2 riverbank%1:17:00:: 1 -2 rite%1:04:01:: 1 -2 rite%1:04:00:: 2 -2 risk%2:41:01:: 2 -2 risk%1:04:00:: 2 -2 rising%3:00:01:: 2 -2 rise%2:37:00:: 12 -2 rise%2:33:00:: 13 -2 ripple%2:38:00:: 1 -2 rip%2:38:00:: 2 -2 rip%2:35:01:: 3 -2 riotous%5:00:00:abundant:00 1 -2 ring%1:25:00:: 2 -2 ring%1:06:02:: 3 -2 rim%1:25:00:: 1 -2 rigor%1:07:00:: 1 -2 rigid%5:00:00:unadaptable:00 3 -2 rigid%5:00:00:intolerant:00 2 -2 rightfully%4:02:00:: 1 -2 right_to_vote%1:07:00:: 1 -2 right_of_entry%1:07:00:: 1 -2 right-hander%1:18:01:: 1 -2 right%4:02:07:: 7 -2 right%4:02:06:: 8 -2 right%3:00:04:: 5 -2 right%1:08:00:: 5 -2 right%1:04:00:: 6 -2 rig%1:06:00:: 1 -2 riding_boot%1:06:00:: 1 -2 ridicule%1:10:00:: 1 -2 rider%1:10:00:: 2 -2 ride_away%2:38:00:: 1 -2 ride%2:42:00:: 3 -2 ride%2:38:02:: 4 -2 riddle%2:35:00:: 1 -2 ridden%5:00:00:controlled:00 1 -2 rich_man%1:18:00:: 1 -2 rich_in%5:00:00:full:00 1 -2 rich%5:00:00:valuable:00 3 -2 rich%5:00:00:fruitful:00 4 -2 rich%5:00:00:colorful:00 5 -2 ribbon_snake%1:05:00:: 1 -2 rib_cage%1:08:00:: 1 -2 rib%1:08:01:: 2 -2 rhubarb%1:13:00:: 1 -2 rhinotracheitis%1:26:00:: 1 -2 rhino%1:05:00:: 1 -2 rheumatism%1:26:00:: 1 -2 rh%1:27:01:: 1 -2 rewarding%3:00:00:: 1 -2 reward%1:21:00:: 2 -2 reward%1:04:01:: 3 -2 revolve_around%2:42:00:: 1 -2 revolve_about%2:42:00:: 1 -2 revive%2:30:00:: 3 -2 review%1:10:01:: 2 -2 reversible%3:00:00:: 1 -2 reverse%2:31:00:: 3 -2 revere%2:37:01:: 1 -2 reverberation%1:07:00:: 1 -2 reunite%2:41:01:: 2 -2 reunite%2:41:00:: 1 -2 return%2:40:03:: 6 -2 return%2:35:01:: 7 -2 return%2:32:01:: 8 -2 return%2:30:01:: 9 -2 return%1:04:00:: 5 -2 retire%2:38:03:: 4 -2 retire%2:38:00:: 3 -2 rethink%2:31:00:: 1 -2 retain%2:42:00:: 2 -2 retain%2:41:01:: 3 -2 restriction%1:07:00:: 2 -2 restricted%3:00:00:: 1 -2 restrict%2:30:01:: 4 -2 restraint%1:07:00:: 2 -2 restrained%5:00:00:undemonstrative:00 1 -2 restore%2:40:00:: 3 -2 restlessly%4:02:00:: 1 -2 restless%5:00:00:unquiet:00 1 -2 restless%5:00:00:discontented:00 2 -2 restive%5:00:00:tense:03 1 -2 restate%2:32:00:: 1 -2 rest%2:30:00:: 6 -2 responsiveness%1:09:00:: 1 -2 responsibility%1:26:00:: 2 -2 responsibility%1:07:00:: 3 -2 respite%1:26:00:: 1 -2 respite%1:04:00:: 2 -2 respiratory_tract%1:08:00:: 1 -2 respected%5:00:00:reputable:00 1 -2 respectable%5:00:00:considerable:00 3 -2 respect_to%1:24:00:: 1 -2 resource%1:09:00:: 3 -2 resorcinol%1:27:00:: 1 -2 resolved%5:00:00:resolute:00 1 -2 resolution%1:19:00:: 2 -2 resolution%1:07:00:: 3 -2 resolution%1:04:01:: 4 -2 resolutely%4:02:00:: 1 -2 resistance%1:19:01:: 3 -2 resist%2:41:02:: 3 -2 residue%1:27:00:: 1 -2 resident%3:00:00:: 1 -2 residence%1:06:00:: 2 -2 residence%1:04:00:: 3 -2 reservoir%1:23:00:: 1 -2 reserve%1:07:01:: 1 -2 requisition%2:32:00:: 1 -2 repute%2:31:00:: 1 -2 repulsive_force%1:19:00:: 1 -2 repulsion%1:19:00:: 1 -2 repulse%2:33:00:: 1 -2 reproducibility%1:07:00:: 1 -2 reproach%2:32:00:: 1 -2 reprisal%1:04:00:: 1 -2 reprimand%2:32:00:: 1 -2 repress%2:41:00:: 1 -2 representational%3:00:00:: 1 -2 represent%2:41:06:: 8 -2 represent%2:36:01:: 9 -2 repository%1:06:00:: 1 -2 reported%3:00:00:: 1 -2 report_out%2:32:00:: 1 -2 report%1:11:00:: 4 -2 reply%1:10:00:: 2 -2 replacement%1:18:02:: 2 -2 replacement%1:11:00:: 3 -2 repent%2:37:01:: 1 -2 repel%2:37:00:: 2 -2 repel%2:33:00:: 3 -2 repeat%1:11:00:: 1 -2 rent_out%2:40:00:: 1 -2 rent%2:40:01:: 2 -2 rent%1:17:00:: 2 -2 renewal%1:04:00:: 1 -2 rendition%1:10:00:: 1 -2 rending%5:00:00:cacophonous:00 1 -2 render%2:36:00:: 4 -2 rend%2:35:00:: 1 -2 rename%2:32:00:: 1 -2 removed%5:00:01:far:00 2 -2 remove%2:30:01:: 6 -2 remonstrate%2:32:00:: 1 -2 remonstrance%1:10:00:: 1 -2 remembered%3:44:00:: 1 -2 remember%2:40:00:: 4 -2 remedy%1:04:00:: 1 -2 remarkable%5:00:00:significant:00 2 -2 remake%2:36:00:: 1 -2 remain_firm%2:42:00:: 1 -2 reluctant%5:00:00:disinclined:00 2 -2 reload%2:35:01:: 1 -2 relish%2:37:00:: 1 -2 relish%1:12:02:: 1 -2 relieve%2:41:02:: 3 -2 relieve%2:37:00:: 4 -2 relic%1:06:00:: 1 -2 reliance%1:09:00:: 1 -2 reliability%1:07:00:: 1 -2 relevancy%1:24:00:: 1 -2 relentlessness%1:07:00:: 1 -2 relentless%5:00:00:implacable:00 1 -2 relegate%2:41:00:: 2 -2 released%5:00:00:free:00 1 -2 release%1:22:00:: 3 -2 release%1:10:00:: 4 -2 release%1:04:02:: 5 -2 relay%2:32:00:: 1 -2 relaxed%3:00:00:: 1 -2 relaxation_time%1:28:00:: 1 -2 relative_frequency%1:24:00:: 1 -2 relative%1:05:00:: 2 -2 relation%1:04:01:: 2 -2 relate%2:41:00:: 5 -2 rejoicing%1:12:00:: 1 -2 rejoice%2:32:00:: 2 -2 rejected%5:00:00:forsaken:00 1 -2 reject%2:32:00:: 3 -2 reinterpret%2:32:00:: 1 -2 reinforced_concrete%1:27:00:: 1 -2 rein_in%2:38:00:: 1 -2 rehabilitation_program%1:09:00:: 1 -2 rehabilitation%1:04:00:: 2 -2 regulation%1:09:00:: 2 -2 regular%5:00:00:usual:00 5 -2 regular%5:00:00:scheduled:00 4 -2 regret%2:37:01:: 2 -2 regression_line%1:09:00:: 1 -2 register%2:32:00:: 5 -2 register%1:10:00:: 1 -2 region%1:15:01:: 3 -2 regime%1:14:00:: 1 -2 regarding%5:00:00:related:02 1 -2 regard%1:09:01:: 2 -2 refute%2:32:00:: 1 -2 refuse%2:40:01:: 4 -2 refuel%2:40:01:: 1 -2 refrigerator%1:06:00:: 1 -2 refrigeration%1:22:00:: 1 -2 refreshing%5:00:00:invigorating:00 1 -2 reflexly%4:02:00:: 1 -2 reflection%1:07:02:: 4 -2 reflection%1:06:00:: 5 -2 refined%3:00:01:: 1 -2 refine%2:30:01:: 1 -2 reference_to%1:24:00:: 1 -2 reference%1:04:00:: 7 -2 reenact%2:36:01:: 1 -2 reel%2:38:00:: 1 -2 redundant%5:00:00:unnecessary:00 1 -2 reduce%2:30:05:: 7 -2 redoubtable%5:00:00:alarming:00 1 -2 redouble%2:30:00:: 1 -2 redistribute%2:35:00:: 1 -2 rediscover%2:39:00:: 1 -2 redeposition%1:22:00:: 1 -2 redefinition%1:10:00:: 1 -2 reddish%5:00:00:colored:00 1 -2 red-faced%5:00:00:colored:00 1 -2 recurrent%5:00:00:continual:00 1 -2 rectifier%1:06:00:: 1 -2 recruit%2:33:00:: 3 -2 recruit%1:18:01:: 1 -2 recruit%1:18:00:: 2 -2 recrimination%1:10:00:: 1 -2 recovery%1:22:00:: 2 -2 recovery%1:04:00:: 3 -2 recourse%1:04:00:: 1 -2 recorder%1:06:01:: 1 -2 recorded%3:00:00:: 1 -2 reconvene%2:38:00:: 1 -2 reconstruction%1:28:00:: 1 -2 reconcile%2:30:01:: 1 -2 reconcile%2:30:00:: 2 -2 recoil%2:38:00:: 1 -2 recognize%2:41:00:: 5 -2 recognize%2:32:01:: 6 -2 recognize%2:32:00:: 7 -2 recognizable%5:00:00:perceptible:00 1 -2 recognizable%5:00:00:identifiable:00 2 -2 reclassify%2:31:00:: 1 -2 reclaimed%5:00:00:saved:00 1 -2 reclaim%2:40:00:: 1 -2 recklessness%1:07:00:: 1 -2 reckless%5:00:00:bold:00 1 -2 recite%2:32:02:: 1 -2 recite%2:32:00:: 2 -2 recipient%1:18:00:: 1 -2 recess%2:35:01:: 1 -2 receive%2:32:00:: 7 -2 receive%2:30:00:: 8 -2 receipts%1:21:00:: 1 -2 receipt%1:10:00:: 2 -2 rebuilding%1:04:00:: 1 -2 rebel%5:00:00:southern:02 1 -2 rebel%2:41:01:: 2 -2 reassuring%3:00:00:: 1 -2 reassert%2:32:00:: 1 -2 reason%2:32:00:: 2 -2 rear%2:41:00:: 2 -2 realize%2:40:01:: 4 -2 realism%1:26:00:: 3 -2 real_thing%1:07:00:: 1 -2 real_property%1:21:00:: 1 -2 ready%5:00:00:willing:00 3 -2 ready%1:26:00:: 1 -2 readjust%2:30:00:: 1 -2 reading%1:10:00:: 4 -2 readiness%1:07:01:: 2 -2 reader%1:18:03:: 3 -2 react%2:41:00:: 2 -2 react%2:30:00:: 3 -2 reach%1:15:00:: 1 -2 reach%1:07:00:: 2 -2 reach%1:04:00:: 3 -2 re-enter%2:38:00:: 1 -2 re-emerge%2:30:00:: 1 -2 raw_material%1:27:00:: 1 -2 raw%5:00:00:injured:00 2 -2 raucous%5:00:00:cacophonous:00 1 -2 rattling%1:11:00:: 1 -2 rattler%1:05:00:: 1 -2 rationing%1:04:00:: 1 -2 rationally%4:02:00:: 1 -2 rationalize%2:30:00:: 2 -2 rationalism%1:09:02:: 1 -2 rate_of_pay%1:21:00:: 1 -2 rate%2:42:01:: 2 -2 rare%5:00:00:scarce:00 3 -2 rare%5:00:00:infrequent:00 2 -2 rapture%1:26:00:: 1 -2 rank_and_file%1:14:00:: 1 -2 rank%2:31:13:: 1 -2 rank%1:26:01:: 4 -2 ranging%3:44:00:: 1 -2 range%2:38:00:: 2 -2 randomly%4:02:00:: 1 -2 random%5:00:00:unselected:00 2 -2 rampart%1:06:00:: 1 -2 ramp%1:06:00:: 1 -2 ramble%2:42:00:: 1 -2 ram%2:35:02:: 1 -2 ram%2:35:00:: 2 -2 rally%2:33:00:: 2 -2 rally%1:14:00:: 1 -2 raising%5:00:00:increasing:00 1 -2 raise_up%2:35:00:: 1 -2 raise%2:36:02:: 9 -2 rainbow%1:17:00:: 1 -2 railroad_siding%1:06:00:: 1 -2 rail%2:32:00:: 1 -2 raid%2:41:00:: 1 -2 raid%2:38:00:: 2 -2 ragged%5:00:00:uneven:00 3 -2 ragged%5:00:00:tired:00 2 -2 raft%1:06:00:: 1 -2 radio_wave%1:19:00:: 1 -2 radio_radiation%1:19:00:: 1 -2 radio_observation%1:04:00:: 1 -2 radio_noise%1:11:00:: 1 -2 radio_brightness%1:07:00:: 1 -2 radio%2:32:00:: 1 -2 radicalism%1:09:00:: 1 -2 radiate%2:43:00:: 1 -2 radiant%5:00:00:bright:00 1 -2 radiance%1:19:00:: 1 -2 rack%2:38:00:: 1 -2 race%1:14:01:: 4 -2 quiz%1:10:00:: 1 -2 quixotic%5:00:00:impractical:00 1 -2 quietness%1:07:00:: 1 -2 quick%5:00:00:active:01 3 -2 questionable%3:00:00:: 1 -2 question%2:32:02:: 5 -2 querulous%5:00:00:complaining(a):00 1 -2 quarter_mile%1:23:00:: 1 -2 quarrel%1:10:00:: 1 -2 qualify%2:30:02:: 3 -2 qualified%3:00:01:: 1 -2 qualification%1:04:00:: 2 -2 quake%2:38:01:: 1 -2 pyknotic%3:01:00:: 1 -2 puzzling%5:00:00:unclear:00 2 -2 puzzling%5:00:00:incomprehensible:00 1 -2 puzzle_out%2:31:00:: 1 -2 putter_around%2:35:00:: 1 -2 put_up%2:31:00:: 4 -2 put_to_death%2:41:00:: 1 -2 put_through%2:30:00:: 1 -2 put_out%2:41:00:: 1 -2 put_on%2:36:02:: 3 -2 put_in%2:42:00:: 2 -2 put_in%2:40:00:: 3 -2 put_in%2:32:00:: 4 -2 put_down%2:35:00:: 2 -2 put_back%2:35:00:: 1 -2 put_away%2:35:01:: 1 -2 put%2:31:13:: 6 -2 push_up%2:38:00:: 1 -2 pursuit%1:09:00:: 2 -2 pursuing%5:00:00:following:00 1 -2 purse%2:30:00:: 1 -2 purposely%4:02:00:: 1 -2 purposeful%3:00:00:: 1 -2 purple%1:07:00:: 1 -2 purl%2:38:00:: 1 -2 purl%2:32:00:: 2 -2 purify%2:30:00:: 1 -2 purification%1:04:00:: 1 -2 pure%5:00:00:unmitigated:00 2 -2 purchasing_department%1:14:00:: 1 -2 puppy%1:05:00:: 1 -2 pupate%2:29:00:: 1 -2 punctured%5:00:00:cut:01 1 -2 pumped-up%5:00:00:tense:03 1 -2 pulsating%5:00:00:rhythmical:00 1 -2 pulpit%1:06:00:: 1 -2 pulp%1:17:00:: 1 -2 pull_the_leg_of%2:32:00:: 1 -2 pull_off%2:35:00:: 1 -2 pull_down%2:36:00:: 1 -2 pull%2:41:00:: 5 -2 pull%2:38:03:: 6 -2 pull%1:19:00:: 2 -2 puff%2:34:01:: 1 -2 publicize%2:32:01:: 2 -2 public_square%1:15:00:: 1 -2 psychotherapy%1:09:00:: 1 -2 psychological%3:01:00:: 2 -2 psychoactive_drug%1:06:00:: 1 -2 psyche%1:09:00:: 1 -2 pry%2:32:00:: 2 -2 proximate%3:00:00:: 1 -2 proximal%3:00:00:: 1 -2 prowl%2:38:00:: 1 -2 provincial%3:00:00:: 2 -2 providence%1:04:00:: 2 -2 provide%2:41:00:: 4 -2 proud%5:00:00:impressive:00 2 -2 prototype%1:09:00:: 1 -2 proto%5:00:00:early:00 1 -2 proteolysis%1:22:00:: 1 -2 prostrate%5:00:01:unerect:00 1 -2 prostitution%1:04:00:: 1 -2 prosperous%5:00:00:rich:00 1 -2 prospective%5:00:00:future:00 2 -2 prosecuting_attorney%1:18:00:: 1 -2 proscribe%2:32:00:: 1 -2 proposition%1:10:01:: 2 -2 proportionate%3:00:00:: 1 -2 prophetically%4:02:00:: 1 -2 prophecy%1:09:00:: 1 -2 proper%5:00:00:specific:00 2 -2 proper%5:00:00:appropriate:00 3 -2 prop_up%2:35:00:: 1 -2 prone%5:00:00:unerect:00 1 -2 promptly%4:02:01:: 3 -2 prompt%2:32:00:: 2 -2 promotional%3:01:00:: 1 -2 promoter%1:18:00:: 1 -2 promote%2:32:00:: 3 -2 promising%5:00:00:auspicious:00 2 -2 prominence%1:07:00:: 2 -2 projectile%1:06:00:: 1 -2 projected%5:00:00:planned:00 1 -2 project%2:39:01:: 4 -2 prohibition%1:10:00:: 2 -2 progressivism%1:09:00:: 1 -2 progression%1:14:00:: 1 -2 programming%1:04:01:: 1 -2 profit-maximizing%5:00:00:increasing:00 1 -2 profit%2:40:02:: 1 -2 profit%2:40:00:: 2 -2 proffer%2:40:00:: 1 -2 professionally%4:02:00:: 1 -2 professedly%4:02:00:: 1 -2 production%1:04:01:: 4 -2 product%1:27:00:: 4 -2 producer%1:11:00:: 3 -2 produce%1:13:00:: 1 -2 prod%2:35:02:: 1 -2 prod%2:35:00:: 2 -2 proclaimed%5:00:01:declared:00 1 -2 processing%1:22:00:: 1 -2 process%2:30:00:: 1 -2 probe%2:35:00:: 2 -2 probable%5:00:00:likely:00 2 -2 probability%1:07:00:: 2 -2 pro_rata%4:02:00:: 1 -2 privacy%1:07:00:: 1 -2 prisoner_of_war%1:18:00:: 1 -2 printing%1:10:01:: 1 -2 print_shop%1:06:00:: 1 -2 print%1:10:00:: 1 -2 print%1:06:00:: 2 -2 principle%1:10:00:: 5 -2 principle%1:09:02:: 6 -2 principally%4:02:00:: 1 -2 principal%1:18:00:: 2 -2 primitive%5:00:01:early:02 3 -2 primitive%5:00:00:underived:00 4 -2 primed%5:00:00:ready:00 1 -2 prime%5:00:00:superior:02 3 -2 prime%1:23:00:: 1 -2 pride%2:37:00:: 1 -2 prick%1:18:00:: 1 -2 price%1:07:02:: 3 -2 price%1:07:01:: 4 -2 prey%1:05:00:: 2 -2 prevalent%5:00:00:current:00 1 -2 prevail%2:33:00:: 4 -2 pretended%5:00:00:counterfeit:00 1 -2 presupposition%1:09:00:: 1 -2 presuppose%2:31:01:: 1 -2 presuppose%2:31:00:: 2 -2 pressure%1:09:00:: 5 -2 press%2:42:01:: 3 -2 press%2:35:02:: 5 -2 press%2:35:01:: 4 -2 presentable%5:00:00:respectable:00 1 -2 present_time%1:28:00:: 1 -2 present%2:32:01:: 9 -2 presence%1:18:00:: 3 -2 presence%1:09:00:: 4 -2 prescription%1:10:00:: 1 -2 prescribed%5:00:00:nonarbitrary:00 1 -2 preposterous%5:00:00:foolish:00 1 -2 preposition%1:10:00:: 1 -2 prepare%2:31:01:: 6 -2 preparatory_school%1:14:00:: 1 -2 preparation%1:09:00:: 3 -2 prep_school%1:14:00:: 1 -2 premonition%1:12:00:: 1 -2 preferentially%4:02:00:: 1 -2 preference%1:12:00:: 1 -2 preference%1:09:01:: 2 -2 predominate%2:42:00:: 1 -2 predominantly%4:02:00:: 1 -2 predictive%5:00:00:prophetic:00 1 -2 prediction%1:09:00:: 1 -2 predict%2:32:01:: 2 -2 predicator%1:10:00:: 1 -2 precondition%2:30:00:: 1 -2 preclude%2:41:00:: 1 -2 preceding%3:00:04:: 2 -2 precedence%1:26:00:: 1 -2 precaution%1:07:00:: 2 -2 prayer%1:10:00:: 3 -2 pray%2:32:01:: 2 -2 prance%2:38:00:: 1 -2 prairie%1:15:00:: 1 -2 pragmatic%5:00:00:practical:00 1 -2 practice%2:41:01:: 4 -2 practice%1:04:03:: 4 -2 practical%5:00:01:realistic:00 2 -2 practicable%5:00:00:practical:00 1 -2 practicable%5:00:00:possible:00 2 -2 powerfully%4:02:01:: 1 -2 powerful%5:00:02:strong:00 2 -2 powerful%5:00:00:influential:00 3 -2 powered%5:00:00:powerful:00 1 -2 pour_out%2:32:00:: 1 -2 pound%1:23:01:: 2 -2 pounce%2:38:00:: 1 -2 poultry%1:05:00:: 1 -2 pothole%1:17:00:: 1 -2 potentially%4:02:00:: 1 -2 potentiality%1:09:00:: 2 -2 potent%5:00:00:powerful:00 2 -2 potent%5:00:00:influential:00 1 -2 potency%1:07:01:: 1 -2 potato%1:13:00:: 1 -2 postwar%3:00:00:: 1 -2 postmaster_general%1:18:00:: 1 -2 post%1:06:00:: 4 -2 possum%1:05:01:: 1 -2 possessed%5:00:00:controlled:00 1 -2 possess%2:42:02:: 3 -2 posseman%1:18:00:: 1 -2 positive%5:00:00:advantageous:00 2 -2 position%2:38:00:: 1 -2 position%1:04:00:: 10 -2 portwatcher%1:18:00:: 1 -2 portray%2:36:01:: 3 -2 portrait%1:10:00:: 2 -2 portrait%1:06:00:: 3 -2 portion%1:21:00:: 4 -2 portfolio%1:06:00:: 1 -2 portentous%5:00:00:significant:00 1 -2 pore%1:25:00:: 1 -2 populated%5:00:00:inhabited:00 1 -2 popularly%4:02:00:: 1 -2 popular_music%1:10:00:: 1 -2 populace%1:14:00:: 1 -2 poppy%1:20:00:: 1 -2 pop_in%2:38:00:: 1 -2 poor_devil%1:18:00:: 1 -2 poor%5:00:00:low:02 5 -2 poor%3:00:03:: 4 -2 pool%2:40:01:: 2 -2 pool%1:17:00:: 2 -2 pool%1:14:01:: 3 -2 pool%1:14:00:: 4 -2 pony%1:05:02:: 1 -2 ponderous%5:00:00:heavy-footed:00 1 -2 pompously%4:02:00:: 1 -2 pompous%5:00:00:pretentious:00 1 -2 polyethylene%1:27:00:: 1 -2 polycrystalline%5:00:00:crystalline:00 1 -2 polybutene%1:27:00:: 1 -2 political_arena%1:26:00:: 1 -2 polished%3:00:00:: 1 -2 polish%1:07:00:: 1 -2 policy%1:10:02:: 3 -2 police_headquarters%1:06:00:: 1 -2 pole%2:35:00:: 1 -2 pole%1:09:00:: 3 -2 polarize%2:30:02:: 1 -2 poise%1:23:00:: 1 -2 pointed%3:00:00:: 1 -2 point_the_way%2:32:00:: 1 -2 point%1:25:02:: 9 -2 point%1:23:01:: 10 -2 point%1:17:02:: 11 -2 point%1:10:03:: 12 -2 poignant%5:00:00:painful:00 2 -2 pocket%1:25:00:: 2 -2 pocket%1:21:00:: 3 -2 plump%5:00:00:fat:01 1 -2 plumbing%1:06:00:: 1 -2 plumb%4:02:04:: 1 -2 plum%4:02:02:: 1 -2 plug_in%2:35:00:: 1 -2 plug-ugly%1:18:00:: 1 -2 plug%2:35:01:: 1 -2 plowshare%1:06:00:: 1 -2 plowing%1:04:00:: 1 -2 plow%2:32:00:: 2 -2 plow%1:06:00:: 1 -2 plot%2:36:00:: 2 -2 plenty%1:23:00:: 2 -2 plentiful%5:00:02:abundant:00 1 -2 plentiful%5:00:01:abundant:00 2 -2 pleasantly%4:02:01:: 1 -2 pleasantly%4:02:00:: 2 -2 playoff_game%1:04:00:: 1 -2 play%2:36:03:: 14 -2 play%2:33:03:: 15 -2 play%2:29:00:: 16 -2 play%1:26:00:: 5 -2 plausible%3:00:00:: 1 -2 platoon%1:14:01:: 2 -2 platonist%1:18:00:: 1 -2 platonic%3:01:00:: 1 -2 platform%1:10:00:: 2 -2 plastic%1:27:00:: 1 -2 plaster_cast%1:06:00:: 1 -2 plaque%1:08:00:: 1 -2 plant%2:35:01:: 2 -2 plank%2:35:00:: 1 -2 plane%5:00:00:even:01 1 -2 plane%2:35:00:: 1 -2 planar%3:00:00:: 1 -2 plan%2:36:01:: 4 -2 plainclothesman%1:18:00:: 1 -2 plain%5:00:00:unpretentious:00 2 -2 plague%2:37:00:: 2 -2 placid%5:00:00:calm:00 1 -2 placement%1:04:01:: 2 -2 place%2:33:03:: 7 -2 place%2:31:00:: 8 -2 place%1:26:00:: 10 -2 place%1:15:03:: 11 -2 place%1:10:00:: 12 -2 pituitary_gland%1:08:00:: 1 -2 pitiless%5:00:00:merciless:00 1 -2 pitchfork%1:06:00:: 1 -2 pitcher%1:06:00:: 2 -2 pitched%3:44:00:: 1 -2 pitch%2:38:00:: 3 -2 pirate%1:18:01:: 1 -2 pipeline_company%1:14:00:: 1 -2 pinpoint%5:00:00:precise:00 1 -2 pink%1:07:00:: 1 -2 pine%1:20:02:: 2 -2 pinch%2:35:01:: 2 -2 pin%2:35:03:: 2 -2 pin%2:35:00:: 1 -2 pilgrimage%1:04:00:: 1 -2 pilfer%2:40:00:: 1 -2 pile_up%2:35:00:: 2 -2 pile%2:38:00:: 2 -2 pile%1:21:00:: 3 -2 pigment%1:27:00:: 1 -2 piezoelectric%3:01:00:: 1 -2 pierce%2:35:02:: 1 -2 piece%1:10:02:: 6 -2 piece%1:06:03:: 7 -2 pie%1:13:00:: 1 -2 picturesque%5:00:00:beautiful:00 1 -2 picture%1:10:03:: 8 -2 picnic%1:28:00:: 1 -2 pickup%1:06:00:: 1 -2 picket%1:18:01:: 1 -2 picket%1:14:00:: 2 -2 pick_up%2:40:00:: 8 -2 pick_up%2:39:01:: 9 -2 pick_up%2:30:01:: 10 -2 pick_out%2:39:00:: 2 -2 pick%2:32:09:: 3 -2 physique%1:07:00:: 1 -2 physiologic%3:01:00:: 1 -2 physiognomy%1:08:00:: 1 -2 physical_property%1:07:00:: 1 -2 physical_phenomenon%1:19:00:: 1 -2 physical_education%1:09:00:: 1 -2 physical%5:00:00:energetic:00 5 -2 photochemical_reaction%1:22:00:: 1 -2 phonetic%3:01:01:: 1 -2 phonemics%1:09:00:: 1 -2 phoneme%1:10:00:: 1 -2 philosophical%5:00:00:unemotional:00 2 -2 philosophic%3:01:00:: 1 -2 philippines%1:15:00:: 1 -2 pheasant%1:05:00:: 1 -2 phantom%1:18:00:: 1 -2 petition%2:32:00:: 1 -2 petal%1:20:00:: 1 -2 pet%1:05:00:: 1 -2 pestered%5:00:00:troubled:00 1 -2 pester%2:37:00:: 1 -2 perversely%4:02:00:: 1 -2 perverse%5:00:00:negative:02 1 -2 pervasive%5:00:00:general:00 1 -2 pervading%5:00:00:general:00 1 -2 perturbation%1:26:00:: 1 -2 pertinent%5:00:00:apropos:00 2 -2 personify%2:42:01:: 1 -2 personify%2:42:00:: 2 -2 personally%4:02:04:: 4 -2 personally%4:02:03:: 3 -2 personality%1:18:00:: 2 -2 personal_property%1:21:00:: 1 -2 personal_pronoun%1:10:00:: 1 -2 personal%3:01:01:: 3 -2 persistence%1:07:00:: 2 -2 persecute%2:41:00:: 1 -2 perplexing%5:00:00:unclear:00 1 -2 perplexed%3:00:00:: 1 -2 perpetuation%1:04:00:: 1 -2 perpetrate%2:41:00:: 1 -2 permeated%3:44:00:: 1 -2 permeate%2:35:01:: 1 -2 perky%5:00:00:cheerful:00 1 -2 peripherally%4:02:00:: 1 -2 peripheral%3:01:00:: 1 -2 peripheral%3:00:00:: 2 -2 periodic%5:00:00:rhythmical:00 2 -2 period%1:28:02:: 2 -2 perfunctorily%4:02:00:: 1 -2 perfume%1:09:00:: 1 -2 perfume%1:06:00:: 2 -2 performance%1:04:03:: 5 -2 perform%2:41:00:: 4 -2 perfectly%4:02:01:: 2 -2 perennial%3:00:00:: 1 -2 peremptory%5:00:00:domineering:00 1 -2 percussive%3:01:00:: 1 -2 per_annum%4:02:00:: 1 -2 peony%1:20:00:: 1 -2 pentagon%1:06:00:: 1 -2 penny%1:23:00:: 1 -2 penetration%1:04:00:: 1 -2 penetrating%5:00:00:perceptive:00 1 -2 pelvic%3:01:00:: 1 -2 peg%1:06:00:: 1 -2 peek%2:39:00:: 1 -2 pedigree%1:14:00:: 1 -2 peddle%2:40:00:: 1 -2 peculiarly%4:02:00:: 2 -2 peanut_butter%1:13:00:: 1 -2 peaked%5:00:00:ill:01 1 -2 peak%1:28:00:: 2 -2 peak%1:26:00:: 3 -2 peak%1:25:00:: 4 -2 peak%1:15:00:: 5 -2 peacock%1:05:02:: 1 -2 peacock%1:05:01:: 2 -2 peacefully%4:02:00:: 1 -2 peaceable%5:00:02:peaceful:00 1 -2 pea_soup%1:13:00:: 1 -2 payday%1:28:00:: 1 -2 payable%5:00:00:due:00 1 -2 pay_off%2:40:03:: 3 -2 pay_off%2:40:00:: 2 -2 paw%1:05:00:: 1 -2 pavement%1:06:00:: 1 -2 patter%1:10:00:: 1 -2 patronizing%5:00:00:superior:01 1 -2 patronize%2:40:00:: 1 -2 patron_saint%1:18:00:: 1 -2 patristic%3:01:00:: 1 -2 patriot%1:18:00:: 1 -2 pathway%1:08:00:: 1 -2 pathology%1:09:00:: 1 -2 pathologist%1:18:00:: 1 -2 pathogenic%5:00:00:unhealthful:00 1 -2 patch%2:35:00:: 1 -2 patch%1:06:00:: 3 -2 pat%2:35:00:: 2 -2 passively%4:02:00:: 1 -2 passionately%4:02:00:: 1 -2 passing%5:00:00:moving:02 2 -2 passing%5:00:00:impermanent:00 1 -2 passageway%1:06:00:: 1 -2 passage%1:10:01:: 6 -2 pass_over%2:31:00:: 1 -2 pass_on%2:38:01:: 3 -2 pass%2:41:08:: 14 -2 pass%1:04:02:: 3 -2 parts%1:15:00:: 1 -2 partition%1:06:00:: 1 -2 parting%1:04:00:: 1 -2 participation_loan%1:21:00:: 1 -2 part%1:10:00:: 11 -2 part%1:04:03:: 12 -2 parson%1:18:00:: 1 -2 parody%1:10:00:: 1 -2 parochial%3:01:00:: 1 -2 parliamentary%3:01:00:: 1 -2 parliament%1:14:00:: 1 -2 parking_area%1:15:00:: 1 -2 parking%1:23:00:: 1 -2 parking%1:04:00:: 2 -2 park%1:06:00:: 3 -2 parisian%3:01:00:: 1 -2 parimutuel%1:04:00:: 1 -2 parenthood%1:26:00:: 1 -2 pardon%2:32:01:: 1 -2 pardon%2:32:00:: 2 -2 pardner%1:18:00:: 1 -2 paraphrase%1:10:00:: 1 -2 paranoid%5:00:00:insane:00 1 -2 parametric%3:01:00:: 1 -2 parameter%1:11:00:: 2 -2 paradoxical%5:00:00:inexplicable:00 1 -2 paradise%1:15:01:: 1 -2 parade%2:38:01:: 1 -2 parachute%1:06:00:: 1 -2 parable%1:10:00:: 1 -2 par%1:23:00:: 1 -2 paper_electrophoresis%1:22:00:: 1 -2 paper%1:14:00:: 6 -2 panther%1:05:03:: 1 -2 pant_leg%1:06:00:: 1 -2 panic%1:26:01:: 2 -2 pallor%1:07:00:: 1 -2 pallid%5:00:00:colorless:02 1 -2 palace%1:14:00:: 2 -2 pair%2:35:01:: 2 -2 painted%3:00:00:: 2 -2 painfully%4:02:01:: 2 -2 pain%2:29:00:: 1 -2 paid%3:00:00:: 1 -2 paean%1:10:00:: 1 -2 packing%1:27:00:: 1 -2 package%2:35:00:: 1 -2 pack_on%2:29:00:: 1 -2 pack%2:38:02:: 2 -2 pack%2:35:08:: 4 -2 pack%2:35:02:: 3 -2 pace%2:30:00:: 3 -2 pa_system%1:06:00:: 1 -2 p.m.%1:28:00:: 1 -2 oxytetracycline%1:06:00:: 1 -2 ownership%1:04:00:: 2 -2 overwhelmingly%4:02:00:: 1 -2 overturn%2:38:00:: 1 -2 overture%1:10:01:: 1 -2 overtake%2:38:00:: 2 -2 oversized%5:00:00:large:00 1 -2 overpower%2:33:00:: 1 -2 overnight%5:00:00:long:02 1 -2 overnight%4:02:00:: 1 -2 overhead%4:02:01:: 1 -2 overhead%4:02:00:: 2 -2 overhanging%5:00:00:wide:00 1 -2 overflow%2:38:00:: 1 -2 overemphasize%2:32:00:: 1 -2 overdone%5:00:00:immoderate:00 1 -2 overbearing%5:00:00:domineering:00 1 -2 overachiever%1:18:00:: 1 -2 overachievement%1:04:00:: 1 -2 over%5:00:00:immoderate:00 2 -2 over%4:02:02:: 2 -2 outweigh%2:42:00:: 2 -2 outstandingly%4:02:00:: 1 -2 outsmart%2:33:00:: 1 -2 outsider%1:18:00:: 1 -2 outside_door%1:06:00:: 1 -2 outside%5:00:00:foreign:02 7 -2 outrun%2:38:00:: 1 -2 outright%4:02:01:: 1 -2 outrage%2:37:01:: 1 -2 output%1:04:00:: 2 -2 outnumber%2:42:00:: 1 -2 outlive%2:42:00:: 1 -2 outline%1:10:00:: 2 -2 outlaw%2:41:00:: 1 -2 outgoing%3:00:00:: 1 -2 outfield%1:06:00:: 1 -2 outface%2:39:00:: 1 -2 outdoors%4:02:00:: 1 -2 outdoor%3:01:00:: 2 -2 outdo%2:33:00:: 1 -2 outcry%1:10:00:: 1 -2 outcome%1:19:00:: 2 -2 outcast%1:18:00:: 1 -2 outburst%1:11:00:: 2 -2 out_of_action%5:00:00:injured:00 1 -2 out_loud%4:02:00:: 1 -2 out-of-bounds%5:00:00:restricted:00 2 -2 out%5:00:00:dead:02 3 -2 osseous%3:01:00:: 1 -2 original%1:09:00:: 2 -2 orifice%1:08:00:: 1 -2 orientation%1:04:00:: 1 -2 orient%2:42:00:: 1 -2 orient%2:39:00:: 2 -2 organized%3:00:01:: 2 -2 organize%2:36:00:: 5 -2 oregon%1:15:00:: 1 -2 orderly%1:18:01:: 1 -2 order%1:10:01:: 7 -2 order%1:10:00:: 6 -2 orchard%1:06:00:: 1 -2 orbital%3:01:00:: 1 -2 orbit%2:38:00:: 1 -2 orb%1:08:00:: 1 -2 oratorical%5:00:00:rhetorical:00 1 -2 oration%1:10:00:: 1 -2 opus%1:10:00:: 1 -2 optimistic%3:00:00:: 1 -2 optimism%1:12:00:: 1 -2 optical%3:01:01:: 1 -2 opt_for%2:31:00:: 1 -2 oppressed%5:00:00:wronged:00 1 -2 opposite%1:10:00:: 1 -2 opponent%1:18:02:: 1 -2 opponent%1:18:01:: 2 -2 opponent%1:18:00:: 3 -2 opinion%1:10:00:: 4 -2 opinion%1:04:01:: 5 -2 operational%3:00:00:: 3 -2 operation%1:04:05:: 8 -2 operation%1:04:00:: 7 -2 operating_cost%1:21:00:: 1 -2 operating%3:44:00:: 1 -2 operatic%3:01:00:: 1 -2 operate%2:30:00:: 5 -2 openmouthed%5:00:00:surprised:00 1 -2 opening%1:11:01:: 2 -2 opening%1:04:02:: 3 -2 opened%3:00:02:: 1 -2 open_up%2:35:00:: 1 -2 open_up%2:30:01:: 2 -2 open_up%2:30:00:: 3 -2 open%5:00:00:vulnerable:00 8 -2 open%5:00:00:unfolded:00 11 -2 open%5:00:00:unenclosed:00 10 -2 open%5:00:00:coarse:00 9 -2 open%2:30:01:: 7 -2 onslaught%1:11:00:: 1 -2 onslaught%1:04:00:: 2 -2 onrush%1:04:00:: 1 -2 only_too%4:02:00:: 1 -2 only%4:02:03:: 6 -2 onetime%5:00:00:past:00 1 -2 oneness%1:07:00:: 1 -2 one_thousand%5:00:00:cardinal:00 1 -2 one_percent%1:23:00:: 1 -2 one_at_a_time%4:02:00:: 1 -2 one_after_another%4:02:01:: 1 -2 one-eighth%1:23:00:: 1 -2 once_and_for_all%4:02:00:: 1 -2 on_occasion%4:02:00:: 1 -2 on_his_own%5:00:00:independent:00 1 -2 on%4:02:01:: 2 -2 omission%1:04:01:: 1 -2 olympics%1:11:00:: 1 -2 olive%5:00:00:chromatic:00 1 -2 oldster%1:18:00:: 1 -2 old_country%1:15:00:: 1 -2 old-fashioned%5:00:00:nonmodern:00 1 -2 oklahoma%1:15:00:: 1 -2 okay%5:00:00:satisfactory:00 1 -2 oilfield%1:15:00:: 1 -2 oil_well%1:06:00:: 1 -2 oil_painting%1:06:00:: 1 -2 oil-water_interface%1:17:00:: 1 -2 ogle%2:39:00:: 1 -2 often%4:02:01:: 2 -2 offset%2:42:00:: 2 -2 officially%4:02:00:: 1 -2 office%1:26:00:: 4 -2 offer%1:10:01:: 1 -2 offer%1:10:00:: 2 -2 offense%1:04:02:: 1 -2 offend%2:37:01:: 1 -2 off_guard%5:00:00:unready:00 1 -2 of_our_own%5:00:00:personal:00 1 -2 of_late%4:02:00:: 1 -2 of_all_time%4:02:00:: 1 -2 odor%1:09:00:: 2 -2 odds_and_ends%1:14:00:: 1 -2 oddly_enough%4:02:00:: 1 -2 oddly%4:02:00:: 1 -2 occupy%2:42:04:: 5 -2 occupy%2:33:00:: 6 -2 occluded%5:00:00:obstructed:00 1 -2 occasional%5:00:00:unpredictable:00 2 -2 obstruct%2:41:00:: 1 -2 obstruct%2:35:00:: 2 -2 obstinately%4:02:00:: 1 -2 obsess%2:37:00:: 1 -2 observe%2:41:00:: 7 -2 observation_dome%1:06:00:: 1 -2 observant%5:00:00:attentive:00 1 -2 obsequious%5:00:00:insincere:00 1 -2 obscurity%1:26:01:: 3 -2 obscurity%1:26:00:: 2 -2 obscure%5:00:00:incomprehensible:00 2 -2 obscure%2:31:00:: 2 -2 obscure%2:30:00:: 3 -2 obscene%5:00:00:indecent:00 1 -2 obnoxious%5:00:00:offensive:01 1 -2 oblivious%5:00:00:unaware:00 1 -2 obliteration%1:04:00:: 1 -2 oblique%3:00:00:: 1 -2 obligated%3:00:00:: 1 -2 objectivity%1:07:00:: 1 -2 objection%1:04:01:: 3 -2 objectification%1:04:00:: 1 -2 object%1:10:00:: 3 -2 oath%1:10:00:: 2 -2 o.k.%5:00:00:satisfactory:00 1 -2 nymphomaniac%1:18:00:: 1 -2 nut%1:20:00:: 1 -2 nursery%1:06:01:: 1 -2 nurse%2:29:00:: 1 -2 nurse%1:18:00:: 1 -2 numbering%1:10:00:: 1 -2 number%2:32:03:: 2 -2 number%1:10:01:: 5 -2 number%1:10:00:: 6 -2 nude%5:00:00:unclothed:00 1 -2 nude%1:06:00:: 1 -2 nucleolus%1:08:00:: 1 -2 nuance%1:10:00:: 1 -2 nozzle%1:06:00:: 1 -2 notion%1:09:01:: 3 -2 noticeable%3:00:00:: 1 -2 notice%1:10:02:: 3 -2 notebook%1:10:00:: 1 -2 note%1:07:00:: 5 -2 notation%1:10:00:: 1 -2 not_to_mention%4:02:00:: 1 -2 not_long%4:02:00:: 1 -2 nostalgia%1:12:00:: 1 -2 north_pole%1:15:00:: 1 -2 north_korean%3:01:00:: 1 -2 north_korean%1:18:00:: 1 -2 north%1:24:00:: 3 -2 north%1:15:00:: 4 -2 nonresident%3:00:00:: 1 -2 nonparty%5:00:00:nonpartisan:00 1 -2 nonlinguistic%3:01:00:: 1 -2 nominally%4:02:00:: 1 -2 nomia%1:05:00:: 1 -2 noisemaker%1:06:00:: 1 -2 nociceptive%5:00:00:sensitive:01 1 -2 noble%3:00:02:: 3 -2 nineteen%1:23:00:: 1 -2 nightmare%1:26:00:: 1 -2 nightmare%1:09:00:: 2 -2 nightingale%1:05:00:: 1 -2 next-to-last%5:00:01:last:00 1 -2 newtonian%3:01:00:: 1 -2 newspaper%1:06:00:: 3 -2 newsman%1:18:00:: 1 -2 newsletter%1:10:00:: 1 -2 newsboy%1:18:00:: 1 -2 news_conference%1:10:00:: 1 -2 newcomer%1:18:00:: 1 -2 newborn%5:00:00:new:00 2 -2 new_year's_day%1:28:00:: 1 -2 new_testament%1:10:00:: 1 -2 new_orleans%1:15:00:: 1 -2 new_jersey%1:15:00:: 1 -2 new_deal%1:10:00:: 1 -2 neutralization%1:04:01:: 1 -2 neutral%5:00:00:nonaligned:00 4 -2 neuropsychiatric%3:01:00:: 1 -2 net%1:06:02:: 2 -2 nest%2:35:00:: 2 -2 nervously%4:02:01:: 2 -2 nervous_system%1:08:00:: 1 -2 nemesis%1:18:00:: 1 -2 negotiation%1:10:00:: 1 -2 negligence%1:04:00:: 1 -2 neglect%1:09:00:: 1 -2 negative_charge%1:19:00:: 1 -2 negative%3:00:01:: 3 -2 needless%5:00:00:unnecessary:00 1 -2 needle%1:20:00:: 1 -2 needle%1:06:01:: 2 -2 necktie%1:06:00:: 1 -2 nearest%5:00:00:near:00 1 -2 navigate%2:38:02:: 1 -2 navel%1:08:00:: 1 -2 nausea%1:26:00:: 1 -2 naturally%4:02:03:: 3 -2 natural%5:00:00:normal:01 4 -2 native%3:00:03:: 3 -2 nationwide%5:00:00:wide:00 1 -2 nationally%4:02:02:: 1 -2 nationalize%2:30:00:: 1 -2 national_guard%1:14:00:: 1 -2 national%1:18:00:: 1 -2 nasty%3:00:00:: 1 -2 narrowed%5:00:00:narrow:00 1 -2 narrow%5:00:00:limited:00 2 -2 narrow%2:30:00:: 1 -2 name%2:40:00:: 6 -2 name%2:32:04:: 7 -2 name%1:14:00:: 3 -2 nail%2:35:01:: 2 -2 nag%2:32:00:: 1 -2 nadir%1:26:00:: 1 -2 mystique%1:07:00:: 1 -2 mystic%5:00:00:esoteric:00 1 -2 myrrh%1:27:00:: 1 -2 myofibrilla%1:08:00:: 1 -2 myocardial%3:01:00:: 1 -2 muzzle%1:06:01:: 1 -2 muzzle%1:05:00:: 2 -2 mutton%1:13:00:: 1 -2 mutiny%1:04:00:: 1 -2 muster%2:32:00:: 2 -2 musket_ball%1:06:00:: 1 -2 musicianship%1:09:00:: 1 -2 musical_theater%1:10:00:: 1 -2 musical%3:00:02:: 2 -2 musical%1:10:00:: 1 -2 music%1:04:00:: 3 -2 muscular_dystrophy%1:26:00:: 1 -2 muscle_fiber%1:08:00:: 1 -2 muscle%1:08:01:: 2 -2 murmur%1:11:00:: 1 -2 murky%5:00:00:opaque:00 1 -2 mundane%5:00:00:ordinary:00 1 -2 munch%2:34:01:: 1 -2 multiple_sclerosis%1:26:00:: 1 -2 muffler%1:06:01:: 1 -2 muffle%2:35:00:: 1 -2 mucus%1:08:00:: 1 -2 mph%1:28:01:: 1 -2 moving%3:00:01:: 2 -2 movie_star%1:18:00:: 1 -2 move_over%2:38:00:: 1 -2 move%2:37:01:: 11 -2 mouth%1:17:01:: 4 -2 mouth%1:17:00:: 3 -2 mournfully%4:02:00:: 1 -2 mournful%5:00:01:sorrowful:00 1 -2 mourner%1:18:00:: 1 -2 mounted%5:00:00:affixed:00 2 -2 mounted%3:00:00:: 1 -2 mountainside%1:17:00:: 1 -2 mountainous%5:00:00:rough:00 1 -2 mountainous%5:00:00:large:00 2 -2 mount_up%2:38:00:: 1 -2 motto%1:10:00:: 1 -2 mottle%2:36:00:: 1 -2 motivating%5:00:00:causative:00 1 -2 motion%1:26:00:: 4 -2 mother%2:41:00:: 1 -2 most_valuable_player%1:18:00:: 1 -2 most_recently%4:02:00:: 1 -2 mosquito%1:05:00:: 1 -2 mosaic%1:06:00:: 1 -2 mortar%1:27:00:: 2 -2 mortal%1:03:00:: 1 -2 morrow%1:28:00:: 1 -2 morose%5:00:00:ill-natured:00 1 -2 morning%1:10:00:: 2 -2 more_often_than_not%4:02:00:: 1 -2 morals%1:16:00:: 1 -2 morally%4:02:01:: 1 -2 morale%1:26:00:: 1 -2 morale%1:07:00:: 2 -2 moral%1:10:00:: 1 -2 mop_up%2:35:00:: 1 -2 mop%2:35:01:: 1 -2 mop%2:35:00:: 2 -2 monsoon%1:19:00:: 1 -2 monotonous%5:00:00:dull:03 2 -2 monotone%3:00:04:: 1 -2 monosyllable%1:10:00:: 1 -2 monopoly%1:26:02:: 2 -2 monopolize%2:41:00:: 1 -2 monopolize%2:40:00:: 2 -2 monarch%1:18:00:: 1 -2 mon-khmer%1:10:00:: 1 -2 mommy%1:18:00:: 1 -2 momentum%1:07:01:: 2 -2 molest%2:41:00:: 1 -2 molal%3:01:00:: 1 -2 modulation%1:10:00:: 2 -2 modification%1:04:00:: 1 -2 modestly%4:02:00:: 1 -2 modest%5:00:00:moderate:00 2 -2 modernism%1:06:00:: 1 -2 modern_times%1:28:00:: 1 -2 modern%1:18:00:: 1 -2 moderately%4:02:00:: 1 -2 moderate%5:00:00:mild:00 2 -2 modal%5:00:00:normal:01 1 -2 mock%5:00:00:counterfeit:00 1 -2 moblike%5:00:00:disorderly:00 1 -2 mobilize%2:33:01:: 2 -2 mobility%1:07:00:: 1 -2 mobile%5:00:00:unsettled:01 1 -2 mixture%1:14:00:: 3 -2 mix_in%2:30:00:: 1 -2 mittens%1:06:00:: 1 -2 mite%1:23:00:: 1 -2 misuse%2:34:00:: 1 -2 mistrust%2:31:00:: 1 -2 mister%1:18:00:: 1 -2 mistakenly%4:02:00:: 1 -2 mistaken%5:00:00:incorrect:00 2 -2 mistake%1:10:00:: 3 -2 mississippi_river%1:17:00:: 1 -2 misrepresent%2:32:00:: 1 -2 mislead%2:38:00:: 1 -2 mislead%2:32:00:: 2 -2 misjudge%2:31:00:: 1 -2 misdeed%1:04:00:: 1 -2 misconstrue%2:31:01:: 1 -2 miscellaneous%5:00:00:heterogeneous:00 2 -2 miscalculation%1:04:00:: 1 -2 miraculously%4:02:00:: 1 -2 minority%1:07:00:: 2 -2 minor%3:00:01:: 3 -2 minor%1:18:00:: 1 -2 minneapolis%1:15:00:: 1 -2 minimize%2:32:01:: 2 -2 mingle%2:41:00:: 2 -2 miner%1:18:00:: 1 -2 minded%5:00:00:oriented:00 1 -2 mind%2:41:01:: 3 -2 mince%2:32:00:: 1 -2 min%1:10:00:: 2 -2 mimetic%5:00:00:representational:00 1 -2 milquetoast%1:18:00:: 1 -2 milliliter%1:23:00:: 1 -2 milliampere%1:23:00:: 1 -2 military_personnel%1:14:00:: 1 -2 milestone%1:10:01:: 1 -2 migration%1:04:00:: 1 -2 might%2:42:01:: 1 -2 midway%5:00:00:central:01 1 -2 midshipman%1:18:00:: 1 -2 middle%1:09:00:: 2 -2 middle%1:08:00:: 3 -2 mid-june%1:28:00:: 1 -2 mid-fifties%1:28:00:: 1 -2 microwave%1:19:00:: 1 -2 micrometeoritic%3:01:00:: 1 -2 meteorological_conditions%1:26:00:: 1 -2 metaphysical%3:01:00:: 1 -2 mess_around%2:35:00:: 1 -2 merriment%1:12:00:: 1 -2 merrily%4:02:00:: 1 -2 mercy%1:07:00:: 2 -2 merchandising%1:04:00:: 1 -2 mercenary%1:18:00:: 1 -2 meq%1:07:00:: 1 -2 memory_picture%1:09:00:: 1 -2 memory_image%1:09:00:: 1 -2 memorandum%1:10:00:: 1 -2 melting_pot%1:15:00:: 1 -2 melt%2:30:04:: 3 -2 melt%2:30:00:: 2 -2 melon%1:13:00:: 1 -2 melee%1:04:00:: 1 -2 meeting%1:11:00:: 3 -2 meeting%1:04:00:: 4 -2 meet_up_with%2:38:00:: 1 -2 medium%1:10:00:: 3 -2 medication%1:06:00:: 1 -2 meddling%5:00:00:intrusive:01 1 -2 mechanism%1:17:00:: 3 -2 mechanics%1:04:00:: 2 -2 mechanical%3:01:01:: 2 -2 measuring%1:04:00:: 1 -2 measure%1:10:02:: 4 -2 measure%1:04:00:: 5 -2 meandering%5:00:00:indirect:00 1 -2 maze%1:06:00:: 1 -2 maximize%2:30:00:: 1 -2 maximal%3:00:00:: 1 -2 mauve%5:00:00:chromatic:00 1 -2 maturing%1:22:01:: 1 -2 maturation%1:22:01:: 1 -2 matriculate%2:41:00:: 1 -2 mating%1:04:00:: 1 -2 materialism%1:26:00:: 1 -2 mate%1:18:04:: 2 -2 mate%1:18:01:: 3 -2 matching_funds%1:21:00:: 1 -2 matching%5:00:02:matched:00 1 -2 masterpiece%1:04:00:: 2 -2 master_bedroom%1:06:00:: 1 -2 master%2:33:00:: 2 -2 massachuset%1:10:00:: 1 -2 mass_media%1:10:00:: 1 -2 masquerade%2:39:00:: 1 -2 masonry%1:06:00:: 1 -2 masculine%3:00:02:: 1 -2 mary%1:18:00:: 1 -2 marxist%3:01:00:: 1 -2 martini%1:13:00:: 1 -2 marry%2:41:01:: 2 -2 marrow%1:08:00:: 1 -2 married_couple%1:14:00:: 1 -2 marriage%1:04:00:: 3 -2 marketplace%1:06:00:: 2 -2 market%1:14:01:: 4 -2 markedly%4:02:00:: 1 -2 marked%5:00:00:conspicuous:00 2 -2 mark%2:41:00:: 6 -2 mark%2:39:00:: 7 -2 mark%1:10:03:: 4 -2 mark%1:07:02:: 5 -2 marital%3:01:00:: 1 -2 marine%3:01:00:: 1 -2 marinate%2:30:00:: 1 -2 marginality%1:07:00:: 1 -2 margin%1:07:00:: 2 -2 mare%1:05:00:: 1 -2 march%1:14:00:: 5 -2 marbles%1:04:00:: 1 -2 marble%1:06:00:: 2 -2 maple%1:20:02:: 1 -2 many_another%5:00:00:many:00 1 -2 manuscript%1:10:00:: 1 -2 manufacturing%1:04:00:: 1 -2 manufactured%5:00:00:factory-made:00 1 -2 manufacture%1:04:00:: 1 -2 manual%1:10:00:: 1 -2 mantel%1:06:00:: 1 -2 manor_house%1:06:00:: 1 -2 manic%5:00:00:wild:02 1 -2 maniacal%5:00:00:insane:00 1 -2 mania%1:16:00:: 1 -2 manhood%1:26:00:: 1 -2 management_personnel%1:14:00:: 1 -2 manage%2:41:08:: 5 -2 man%2:41:00:: 1 -2 mammalian%3:01:00:: 1 -2 malaria%1:26:00:: 1 -2 make_out%2:32:00:: 2 -2 make_out%2:31:00:: 3 -2 make_noise%2:39:00:: 1 -2 make%2:41:01:: 25 -2 make%2:36:04:: 26 -2 make%2:30:02:: 27 -2 majors%1:14:00:: 1 -2 major%2:31:09:: 1 -2 major%1:18:00:: 1 -2 maine%1:15:00:: 1 -2 main_street%1:06:00:: 1 -2 mail%1:10:01:: 1 -2 mail%1:10:00:: 2 -2 mahogany%1:20:02:: 1 -2 magnificently%4:02:00:: 1 -2 magnetize%2:30:00:: 1 -2 magnetic_resonance%1:19:00:: 1 -2 magnet%1:06:00:: 1 -2 magical%5:00:00:supernatural:00 1 -2 maggot%1:05:00:: 1 -2 magazine%1:06:02:: 2 -2 madness%1:26:00:: 1 -2 maddening%5:00:00:displeasing:00 1 -2 maddened%5:00:00:angry:00 1 -2 machinist%1:18:00:: 1 -2 machine%1:18:00:: 2 -2 machine%1:14:01:: 3 -2 lymph_node%1:08:00:: 1 -2 luxury%5:00:00:elegant:00 1 -2 lurid%5:00:00:bright:00 3 -2 lurch%2:38:01:: 3 -2 lunation%1:28:00:: 1 -2 lump%2:35:00:: 1 -2 lump%1:14:00:: 1 -2 lull%2:37:01:: 1 -2 luck%1:19:01:: 3 -2 lucifer%1:18:00:: 1 -2 loyalty%1:12:00:: 2 -2 lowered%3:00:00:: 1 -2 lower_rank%1:26:00:: 1 -2 lower-class%3:00:00:: 1 -2 lower%5:00:00:junior:00 2 -2 low_frequency%1:07:01:: 1 -2 low-toned%5:00:00:soft:04 1 -2 low-down%1:10:00:: 1 -2 low-cost%5:00:00:cheap:00 1 -2 low-class%3:00:04:: 1 -2 lover%1:18:01:: 2 -2 loveliness%1:07:00:: 1 -2 love%1:18:00:: 3 -2 lousy%5:00:00:dirty:01 2 -2 louse_up%2:41:00:: 1 -2 louse%1:05:01:: 1 -2 lounge%2:35:00:: 1 -2 lost%5:00:00:unrecoverable:00 5 -2 lost%3:00:03:: 4 -2 loss%1:21:00:: 6 -2 loss%1:11:00:: 7 -2 loser%1:18:01:: 1 -2 lose%2:40:00:: 8 -2 lose%2:33:01:: 9 -2 lordship%1:10:00:: 1 -2 loot%1:21:00:: 1 -2 loose%5:00:00:uncontrolled:00 3 -2 loose%4:02:00:: 1 -2 loose%3:00:02:: 2 -2 loophole%1:10:00:: 1 -2 look_to%2:37:00:: 3 -2 look_out_on%2:42:00:: 1 -2 look_into%2:31:00:: 2 -2 look_away%2:39:00:: 1 -2 look_across%2:42:00:: 1 -2 long%5:00:00:tall:00 3 -2 logically%4:02:01:: 1 -2 logical%5:00:00:coherent:00 3 -2 logic%1:09:02:: 2 -2 logic%1:09:00:: 1 -2 log%2:32:00:: 1 -2 log%1:27:00:: 2 -2 lodgings%1:06:00:: 1 -2 lodging%1:06:00:: 1 -2 locust%1:05:00:: 1 -2 lockup%1:06:00:: 1 -2 locker_room%1:06:00:: 1 -2 locked%5:00:00:fastened:00 1 -2 lock%2:35:04:: 4 -2 lock%2:35:03:: 5 -2 lock%1:08:00:: 2 -2 location%1:04:02:: 2 -2 location%1:04:01:: 3 -2 locally%4:02:00:: 1 -2 localization%1:04:00:: 1 -2 locale%1:15:00:: 1 -2 local_call%1:10:00:: 1 -2 local%1:06:00:: 1 -2 lobscuse%1:13:00:: 1 -2 loading%1:23:00:: 2 -2 load%2:35:03:: 3 -2 load%1:06:02:: 3 -2 living_space%1:23:00:: 1 -2 living%5:00:00:realistic:00 2 -2 living%3:01:00:: 1 -2 living%1:14:00:: 2 -2 livery_stable%1:06:00:: 1 -2 litter%1:27:00:: 2 -2 literature%1:04:00:: 4 -2 literary_work%1:10:00:: 1 -2 liquidation%1:04:00:: 1 -2 liquidate%2:35:00:: 1 -2 liquid_nitrogen%1:27:00:: 1 -2 lipstick%1:06:00:: 1 -2 lionize%2:41:00:: 1 -2 lion%1:05:00:: 1 -2 linguistics%1:09:00:: 1 -2 lingering%5:00:00:unforgettable:00 1 -2 linger%2:42:00:: 2 -2 linger%2:38:01:: 3 -2 linen%1:06:01:: 1 -2 linear_algebra%1:09:00:: 1 -2 lineage%1:14:00:: 1 -2 line%1:14:00:: 17 -2 line%1:06:00:: 18 -2 line%1:04:00:: 19 -2 likelihood%1:07:00:: 1 -2 like_thunder%4:02:00:: 1 -2 like_hell%4:02:00:: 1 -2 like-minded%5:00:00:like:00 1 -2 like%2:31:00:: 4 -2 lightly%4:02:04:: 5 -2 lightly%4:02:02:: 2 -2 lightly%4:02:01:: 4 -2 lightly%4:02:00:: 3 -2 lighting%1:06:00:: 2 -2 light_bulb%1:06:00:: 1 -2 light_beam%1:19:00:: 1 -2 light%5:00:00:unstressed:00 7 -2 light%5:00:00:loose:02 9 -2 light%5:00:00:digestible:00 8 -2 light%2:43:00:: 4 -2 light%1:26:00:: 9 -2 light%1:09:00:: 10 -2 light%1:07:02:: 11 -2 lift%2:38:03:: 4 -2 lift%2:38:01:: 3 -2 lift%2:32:02:: 5 -2 lift%2:32:00:: 6 -2 lifetime%1:28:00:: 1 -2 lifelike%5:00:00:realistic:00 1 -2 lifeless%5:00:01:dead:01 1 -2 life_style%1:07:00:: 1 -2 life_eternal%1:26:00:: 1 -2 life-size%5:00:00:large:00 1 -2 life%1:10:00:: 12 -2 lie_dormant%2:41:00:: 1 -2 lie_awake%2:35:00:: 1 -2 licking%1:11:01:: 1 -2 licensed%5:00:00:authorized:00 1 -2 license_number%1:10:00:: 1 -2 license%2:41:00:: 1 -2 library%1:14:00:: 2 -2 library%1:06:00:: 3 -2 liberty%1:26:02:: 2 -2 liberate%2:41:01:: 1 -2 liar%1:18:00:: 1 -2 leyte%1:04:00:: 1 -2 lexicon%1:09:00:: 1 -2 lexical%3:01:00:: 1 -2 letterman%1:18:00:: 1 -2 letter_writer%1:18:00:: 1 -2 lethargy%1:26:00:: 1 -2 lethal%5:00:00:fatal:00 1 -2 let_out%2:32:02:: 1 -2 let_out%2:32:00:: 2 -2 let%2:32:02:: 3 -2 let%2:30:01:: 4 -2 lessened%5:00:00:impaired:00 1 -2 lessen%2:30:02:: 2 -2 lesion%1:26:01:: 1 -2 lengthening%5:00:00:increasing:00 1 -2 lend%2:42:00:: 3 -2 lemon%1:07:00:: 2 -2 leisurely%4:02:00:: 1 -2 leisure%1:04:00:: 2 -2 legislation%1:04:00:: 2 -2 legation%1:04:00:: 1 -2 legally%4:02:01:: 1 -2 legal_holiday%1:28:00:: 1 -2 legal%3:01:01:: 4 -2 leg%1:06:01:: 3 -2 lefty%1:18:00:: 1 -2 left_fielder%1:18:00:: 1 -2 left-hander%1:18:01:: 1 -2 left-hand%5:00:00:left-handed:00 1 -2 left%1:14:00:: 2 -2 left%1:08:00:: 3 -2 left%1:06:00:: 4 -2 leering%5:00:00:malicious:00 1 -2 led%3:00:00:: 1 -2 lecturer%1:18:01:: 1 -2 leave_off%2:42:00:: 1 -2 leave_off%2:31:00:: 2 -2 leave_off%2:30:12:: 3 -2 leave_behind%2:40:01:: 2 -2 leave%1:28:00:: 1 -2 least%3:00:00:: 1 -2 leash%1:06:00:: 1 -2 lease%2:41:00:: 1 -2 learn%2:32:00:: 5 -2 leapfrog%1:04:01:: 1 -2 leap%1:11:00:: 2 -2 league%1:14:00:: 2 -2 leading%3:00:00:: 3 -2 leaden%5:00:00:cloudy:00 1 -2 lead%2:38:02:: 13 -2 lazy%5:00:00:idle:00 2 -2 lazily%4:02:00:: 1 -2 layoff%1:04:00:: 1 -2 layman%1:18:00:: 1 -2 laying%1:22:00:: 1 -2 lay_to_rest%2:41:00:: 1 -2 lawman%1:18:00:: 1 -2 law_merchant%1:14:00:: 1 -2 law%1:04:00:: 6 -2 lavishly%4:02:00:: 1 -2 lavish%5:00:00:generous:01 1 -2 lavish%2:40:00:: 1 -2 lavatory%1:06:00:: 1 -2 launch%2:30:10:: 5 -2 launch%2:30:00:: 6 -2 latitude%1:15:00:: 1 -2 latin_american%1:18:00:: 1 -2 lather%2:35:00:: 1 -2 late%3:00:01:: 5 -2 latch%2:35:00:: 1 -2 lasting%3:00:04:: 1 -2 last%5:00:00:unlikely:00 4 -2 last%5:00:00:dying(a):00 11 -2 large-scale%5:00:00:large:00 1 -2 large%5:00:00:significant:00 2 -2 language%1:10:02:: 3 -2 landscape%1:06:01:: 2 -2 landscape%1:06:00:: 3 -2 landmass%1:17:00:: 1 -2 landmark%1:15:00:: 1 -2 land%2:38:03:: 4 -2 land%1:26:00:: 6 -2 land%1:21:00:: 7 -2 land%1:14:01:: 8 -2 lance%1:06:00:: 1 -2 lamplight%1:19:00:: 1 -2 lamp%1:06:01:: 2 -2 lamentation%1:10:00:: 1 -2 lam%2:38:00:: 1 -2 laissez_faire%1:09:00:: 1 -2 laissez-faire%5:00:00:capitalistic:00 1 -2 lactating%3:00:00:: 1 -2 lacerate%2:35:00:: 1 -2 labeled%3:00:00:: 1 -2 label%1:10:02:: 2 -2 lab%1:06:00:: 1 -2 knuckle_under%2:32:00:: 1 -2 knowing%5:00:00:informed:00 1 -2 knot%1:14:00:: 1 -2 knot%1:06:00:: 2 -2 knock_over%2:38:00:: 1 -2 knock_out%2:35:00:: 2 -2 knock%1:11:01:: 1 -2 knob%1:06:01:: 1 -2 knit%2:36:00:: 1 -2 knight-errant%1:18:00:: 1 -2 knee_joint%1:08:00:: 1 -2 knack%1:09:00:: 1 -2 kitchenette%1:06:00:: 1 -2 kitchen_sink%1:06:00:: 1 -2 kit%1:06:01:: 1 -2 kissing%1:04:00:: 1 -2 kinship%1:24:02:: 1 -2 kingdom%1:26:00:: 1 -2 kindred%5:00:00:similar:00 1 -2 kid%2:32:00:: 2 -2 kickoff%1:04:00:: 1 -2 keynote%2:30:00:: 1 -2 keyhole%1:06:00:: 1 -2 keyboard%1:06:01:: 1 -2 key%1:07:00:: 3 -2 ken%1:09:00:: 1 -2 keep_up%2:30:00:: 4 -2 keep_in%2:41:00:: 1 -2 keep_from%2:41:00:: 1 -2 keep_away%2:41:00:: 1 -2 keep%2:42:03:: 12 -2 keep%2:41:05:: 13 -2 keep%2:41:00:: 14 -2 keenly%4:02:00:: 1 -2 juxtapose%2:35:00:: 1 -2 jutting%5:00:02:protrusive:00 1 -2 justify%2:32:02:: 3 -2 justification%1:10:00:: 2 -2 justifiably%4:02:00:: 1 -2 just_right%4:02:00:: 1 -2 just_about%4:02:00:: 2 -2 jury%1:14:01:: 2 -2 juror%1:18:00:: 1 -2 jurisprudence%1:09:00:: 1 -2 junior_high%1:14:00:: 1 -2 junior%5:00:00:intermediate:00 2 -2 junior%1:18:01:: 2 -2 jump%2:30:00:: 4 -2 jumbled%5:00:00:untidy:00 1 -2 juice%1:13:00:: 1 -2 judaism%1:14:00:: 1 -2 jubilant%5:00:00:elated:00 1 -2 jowl%1:08:00:: 1 -2 jovial%5:00:00:joyous:00 1 -2 journalese%1:10:00:: 1 -2 journal%1:10:01:: 1 -2 jolly%5:00:00:joyous:00 1 -2 joke%2:32:00:: 1 -2 join_forces%2:41:00:: 1 -2 johnny%1:18:00:: 1 -2 john%1:06:00:: 1 -2 jocular%5:00:00:humorous:00 1 -2 job%1:06:01:: 4 -2 job%1:04:05:: 6 -2 job%1:04:04:: 5 -2 jilt%2:31:00:: 1 -2 jeweler%1:18:01:: 1 -2 jeweled%5:00:00:adorned:00 1 -2 jewel%1:06:00:: 1 -2 jew-baiter%1:18:00:: 1 -2 jet%1:06:00:: 1 -2 jesuit%1:18:00:: 1 -2 jerk%2:29:00:: 3 -2 jerk%1:18:00:: 1 -2 jeopardy%1:26:00:: 1 -2 jeopardize%2:42:00:: 1 -2 jeopardize%2:41:00:: 2 -2 jealousy%1:12:00:: 1 -2 jealous%5:00:00:distrustful:00 2 -2 jazz_musician%1:18:00:: 1 -2 jazz_festival%1:04:00:: 1 -2 java%1:15:00:: 1 -2 jar%1:06:00:: 1 -2 jangling%5:00:00:cacophonous:00 1 -2 jan%1:28:00:: 1 -2 jaded%5:00:00:satiate:00 2 -2 jade%1:27:00:: 1 -2 jabber%2:32:00:: 1 -2 jab%2:35:00:: 1 -2 ivory%1:07:00:: 2 -2 item%1:09:00:: 4 -2 issue%1:09:00:: 3 -2 isopleth%1:15:00:: 1 -2 isolate%2:30:02:: 3 -2 ism%1:09:00:: 1 -2 island%1:06:00:: 2 -2 irrigation%1:04:00:: 1 -2 irrigate%2:30:00:: 1 -2 irresponsible%3:00:00:: 1 -2 irreproducibility%1:07:00:: 1 -2 irreparable%3:00:00:: 1 -2 irregularly%4:02:01:: 1 -2 irregularity%1:07:00:: 2 -2 irrational%3:00:00:: 1 -2 iron_cage%1:26:00:: 1 -2 iron%5:00:00:robust:00 1 -2 iron%2:35:00:: 1 -2 iron%1:06:01:: 2 -2 irishman%1:18:00:: 1 -2 irish%1:18:00:: 1 -2 ireland%1:15:01:: 1 -2 iraq%1:15:00:: 1 -2 ionized%3:00:00:: 1 -2 iodination%1:22:00:: 1 -2 iodinate%2:30:00:: 1 -2 inwardly%4:02:00:: 1 -2 inviting%3:00:00:: 1 -2 invite%2:35:00:: 6 -2 invite%2:32:01:: 7 -2 inveterate%5:00:00:addicted:00 1 -2 invest%2:41:03:: 2 -2 inverse%1:24:01:: 1 -2 inventory%1:06:00:: 2 -2 invader%1:18:00:: 1 -2 intuitive%5:00:00:natural:01 1 -2 intrusion%1:11:00:: 1 -2 intrude%2:38:01:: 1 -2 introduction%1:10:00:: 2 -2 intrinsic%3:00:00:: 1 -2 intrenchment%1:06:00:: 1 -2 intractable%3:00:00:: 1 -2 intone%2:32:04:: 1 -2 intimidation%1:04:01:: 1 -2 intimidate%2:37:00:: 1 -2 intimately%4:02:00:: 1 -2 intimate%2:32:01:: 2 -2 intima%1:08:00:: 1 -2 interwoven%5:00:00:complex:00 1 -2 interweave%2:35:00:: 1 -2 interviewer%1:18:00:: 1 -2 intertwine%2:35:00:: 1 -2 interstitial%3:01:00:: 1 -2 interspecies%3:00:00:: 1 -2 intersection%1:06:00:: 2 -2 interrelated%5:00:00:reticulate:00 1 -2 interpret%2:36:01:: 4 -2 interpret%2:36:00:: 3 -2 interpose%2:38:01:: 1 -2 interplay%1:04:00:: 1 -2 internationally%4:02:00:: 1 -2 internally%4:02:00:: 1 -2 internalize%2:31:00:: 1 -2 internal_revenue%1:21:00:: 1 -2 intermittent%5:00:00:sporadic:00 1 -2 intermediate%1:27:00:: 1 -2 interlayer%1:06:00:: 1 -2 interject%2:32:00:: 1 -2 interim%5:00:00:impermanent:00 1 -2 interest%2:42:01:: 2 -2 intercontinental%3:00:00:: 1 -2 interact%2:41:00:: 1 -2 inter%3:00:00:: 1 -2 intentional%5:00:00:intended:00 1 -2 intent_on%5:00:00:resolute:00 1 -2 intent%1:10:00:: 2 -2 intensify%2:30:01:: 2 -2 intensify%2:30:00:: 3 -2 intensification%1:04:00:: 1 -2 intellectually%4:02:00:: 1 -2 integration%1:04:03:: 3 -2 integration%1:04:02:: 2 -2 integrated%5:00:00:united:00 1 -2 integrate%2:41:00:: 2 -2 intact%5:00:00:unimpaired:00 2 -2 insurrection%1:04:00:: 1 -2 insure%2:32:00:: 3 -2 insurance%1:10:00:: 2 -2 insult%1:10:00:: 1 -2 insulate%2:30:01:: 1 -2 insulate%2:30:00:: 2 -2 instrumental%3:01:00:: 1 -2 instruction%1:04:00:: 3 -2 institution%1:06:00:: 2 -2 instigate%2:32:00:: 1 -2 instant%5:00:00:fast:01 1 -2 installment%1:21:00:: 1 -2 insistent%5:00:00:continual:00 1 -2 insignificant%5:00:00:unnoticeable:00 2 -2 insidiously%4:02:00:: 1 -2 inside%3:00:00:: 1 -2 inscribe%2:35:00:: 1 -2 insanely%4:02:01:: 1 -2 inquiry%1:04:00:: 3 -2 inquiring%3:00:00:: 1 -2 inoculation%1:04:00:: 1 -2 innocent%5:00:00:harmless:00 2 -2 inner_city%1:15:00:: 1 -2 inner%5:00:02:exclusive:00 4 -2 inmate%1:18:00:: 1 -2 ink%1:27:01:: 1 -2 injustice%1:04:00:: 1 -2 initiation%1:11:00:: 1 -2 initiate%2:41:01:: 3 -2 inhumane%3:00:00:: 1 -2 inhibitory%5:00:00:restrictive:00 1 -2 inhibition%1:07:00:: 2 -2 inheritance%1:04:00:: 1 -2 ingest%2:34:00:: 1 -2 infuriating%5:00:00:displeasing:00 1 -2 infrequent%3:00:00:: 1 -2 infrared%5:00:00:invisible:00 1 -2 informed%3:00:00:: 1 -2 informally%4:02:00:: 1 -2 inform%2:30:00:: 2 -2 influential%3:00:00:: 1 -2 influent%5:00:00:incoming:00 1 -2 inflected%5:00:00:derivative:00 1 -2 inflame%2:29:01:: 1 -2 infiltrate%2:38:01:: 1 -2 infidelity%1:07:00:: 1 -2 infested%5:00:00:troubled:00 1 -2 infest%2:38:00:: 1 -2 inferior%3:00:01:: 1 -2 infective%5:00:00:unhealthful:00 1 -2 infectious_hepatitis%1:26:00:: 1 -2 infect%2:31:00:: 1 -2 infect%2:29:01:: 2 -2 infatuation%1:12:00:: 1 -2 infantryman%1:18:00:: 1 -2 infantile%5:00:00:immature:02 1 -2 infamous%5:00:00:disreputable:00 1 -2 inexplicable%3:00:00:: 1 -2 inexperience%1:09:00:: 1 -2 inevitably%4:02:02:: 2 -2 inert%5:00:00:nonmoving:00 1 -2 industrialization%1:04:00:: 1 -2 industrial_revolution%1:28:00:: 1 -2 industrial%5:00:00:blue-collar:00 4 -2 industrial%3:01:01:: 3 -2 indulge%2:41:01:: 1 -2 indulge%2:34:00:: 2 -2 induction%1:11:00:: 1 -2 induce%2:31:00:: 4 -2 indoor%3:00:00:: 1 -2 individualized%5:00:00:personal:00 1 -2 individual%5:00:00:personal:00 4 -2 indispensable%3:00:00:: 1 -2 indirect%3:00:00:: 2 -2 indignant%5:00:00:angry:00 1 -2 indifferent%5:00:00:heedless:00 3 -2 indict%2:41:00:: 1 -2 indicator%1:10:01:: 2 -2 indicator%1:06:00:: 3 -2 indicative_of%5:00:00:communicative:00 1 -2 indianapolis%1:15:00:: 1 -2 indiana%1:15:00:: 1 -2 independent%5:00:00:free:00 3 -2 indecision%1:09:00:: 1 -2 indecent%5:00:00:improper:00 1 -2 indebted%5:00:01:obligated(p):00 2 -2 incompletely%4:02:00:: 1 -2 incompetent%1:18:00:: 1 -2 incompatible%3:00:01:: 1 -2 inclusive%3:00:00:: 1 -2 incline_bench_press%1:04:00:: 1 -2 inclination%1:09:00:: 1 -2 incite%2:36:00:: 1 -2 incite%2:32:00:: 2 -2 incisive%5:00:00:perceptive:00 1 -2 incipiency%1:28:00:: 1 -2 incidentally%4:02:00:: 1 -2 inception%1:11:00:: 1 -2 inaudible%3:00:00:: 1 -2 inappropriate%3:00:00:: 1 -2 inaccurate%3:00:00:: 1 -2 in_view%5:00:00:visible:00 1 -2 in_use%5:00:00:used:00 2 -2 in_trouble%5:00:00:pregnant:00 2 -2 in_time%4:02:01:: 2 -2 in_theory%4:02:00:: 1 -2 in_the_long_run%4:02:00:: 1 -2 in_stride%4:02:00:: 1 -2 in_so_far%4:02:00:: 1 -2 in_secret%4:02:00:: 1 -2 in_public%4:02:00:: 1 -2 in_principle%4:02:00:: 1 -2 in_person%4:02:01:: 1 -2 in_operation%5:00:01:operative:00 1 -2 in_length%5:00:00:long:01 1 -2 in_hand%5:00:00:accessible:00 1 -2 in_essence%4:02:00:: 1 -2 in_concert%4:02:00:: 1 -2 in_arrears%5:00:00:late:00 1 -2 in_agreement%4:02:00:: 1 -2 in_advance%5:00:00:front(a):00 1 -2 in_a_way%4:02:00:: 2 -2 in_a_moment%4:02:00:: 1 -2 in%3:00:00:: 1 -2 impulse%1:11:00:: 3 -2 impudent%5:00:00:disrespectful:00 1 -2 improved%5:00:00:better:00 2 -2 imprint%2:41:00:: 1 -2 impractical%3:00:00:: 1 -2 imposition%1:04:02:: 1 -2 important%3:00:02:: 3 -2 import%1:06:00:: 1 -2 implike%5:00:00:playful:00 1 -2 implementation%1:04:01:: 1 -2 implement%2:41:00:: 2 -2 implement%2:30:00:: 3 -2 implement%1:06:00:: 1 -2 implacable%3:00:00:: 1 -2 impious%3:00:00:: 1 -2 impinge_on%2:35:00:: 1 -2 impetuous%5:00:00:incautious:00 1 -2 impersonate%2:36:00:: 1 -2 imperialism%1:10:00:: 1 -2 imperfectly%4:02:00:: 1 -2 imperfect%3:00:00:: 1 -2 imperative%3:00:00:: 1 -2 impede%2:41:00:: 1 -2 impeccably%4:02:00:: 1 -2 impeccable%5:00:00:perfect:00 1 -2 impatient%5:00:00:eager:00 2 -2 impasse%1:26:00:: 1 -2 impale%2:35:00:: 1 -2 immoral%5:00:00:wrong:01 2 -2 immoral%3:00:00:: 1 -2 immediate%5:00:00:proximate:00 3 -2 immature%3:00:02:: 1 -2 imitative%3:00:00:: 1 -2 imitation%5:00:02:artificial:00 1 -2 imitate%2:42:00:: 2 -2 imbecile%1:18:00:: 1 -2 image%1:09:02:: 4 -2 illustrator%1:18:00:: 1 -2 illustrative%5:00:00:informative:00 1 -2 illustrated%3:00:00:: 1 -2 illumination%1:26:01:: 1 -2 illiterate%5:00:00:uneducated:00 2 -2 illiterate%3:00:00:: 1 -2 ill_will%1:12:00:: 1 -2 ill%1:26:01:: 1 -2 ignorant%5:00:01:uneducated:00 2 -2 ignite%2:43:00:: 1 -2 idyllic%5:00:00:perfect:00 1 -2 idol%1:06:00:: 1 -2 idler%1:18:00:: 1 -2 idleness%1:04:00:: 1 -2 idle%2:35:00:: 1 -2 idiotically%4:02:00:: 1 -2 idiosyncrasy%1:07:00:: 1 -2 idiom%1:10:02:: 1 -2 identity%1:24:01:: 3 -2 identity%1:07:02:: 4 -2 identify%2:31:02:: 6 -2 identify%2:31:01:: 5 -2 idealist%1:18:00:: 1 -2 ideal%5:00:00:abstract:00 3 -2 ideal%1:18:00:: 2 -2 icy%5:00:00:cold:02 1 -2 iceland%1:15:01:: 2 -2 iceland%1:15:00:: 1 -2 hysterically%4:02:00:: 1 -2 hypothesis%1:09:00:: 2 -2 hypertrophy%1:26:00:: 1 -2 hyperemic%3:01:00:: 1 -2 hyperemia%1:26:00:: 1 -2 hyperbolic%5:00:00:increased:00 1 -2 hydrophobic%3:00:00:: 1 -2 hydrophilic%3:00:00:: 1 -2 hutment%1:06:00:: 1 -2 hustle%2:38:01:: 1 -2 hush%2:30:00:: 1 -2 hurtle%2:38:00:: 2 -2 hurry%1:07:00:: 2 -2 hurricane_deck%1:06:00:: 1 -2 hurricane%1:19:00:: 1 -2 hurler%1:18:00:: 1 -2 hurdle%2:38:00:: 1 -2 hunting_expedition%1:04:00:: 1 -2 hunt_down%2:33:00:: 1 -2 hunt%2:38:00:: 2 -2 hungary%1:15:00:: 1 -2 hundred_dollar_bill%1:21:00:: 1 -2 hunch%2:38:00:: 1 -2 humorist%1:18:00:: 1 -2 humor%2:32:00:: 1 -2 humility%1:07:00:: 1 -2 humiliation%1:26:00:: 1 -2 humiliation%1:12:00:: 2 -2 humiliating%5:00:00:undignified:00 1 -2 humiliate%2:37:00:: 1 -2 human_body%1:08:00:: 1 -2 hug%2:35:00:: 2 -2 hudson_river%1:17:00:: 1 -2 hudson_bay%1:17:00:: 1 -2 huddle%1:10:00:: 1 -2 huckster%1:18:00:: 1 -2 hub%1:06:00:: 1 -2 however%4:02:01:: 4 -2 how_come%4:02:00:: 1 -2 hover%2:42:01:: 2 -2 hover%2:42:00:: 1 -2 hover%2:38:00:: 3 -2 housekeeping%1:04:00:: 1 -2 householder%1:18:00:: 1 -2 house_of_prostitution%1:06:00:: 1 -2 house%1:14:01:: 2 -2 hound%1:05:00:: 1 -2 hostess%1:18:02:: 1 -2 hostess%1:18:00:: 2 -2 host%1:14:02:: 5 -2 horseback%1:05:00:: 1 -2 horse_race%1:11:00:: 1 -2 horror-stricken%5:00:00:afraid(p):00 1 -2 horrified%5:00:00:afraid(p):00 1 -2 hopeful%3:00:00:: 1 -2 hope%1:18:00:: 4 -2 hoop_snake%1:05:00:: 1 -2 hook%2:35:00:: 1 -2 honorably%4:02:02:: 1 -2 honeymoon%1:28:00:: 1 -2 honey%5:00:00:chromatic:00 1 -2 honesty%1:07:00:: 1 -2 honest%5:00:00:trustworthy:00 3 -2 homogenate%1:27:00:: 1 -2 homeric%3:01:00:: 1 -2 homeland%1:15:00:: 1 -2 home_plate%1:06:00:: 1 -2 home_folks%1:14:00:: 1 -2 home_economics%1:09:00:: 1 -2 home%4:02:04:: 2 -2 home%1:15:05:: 5 -2 holy_spirit%1:18:00:: 1 -2 holocaust%1:04:00:: 1 -2 hollow%1:25:02:: 1 -2 holler%2:32:05:: 2 -2 hole%1:25:00:: 4 -2 hole%1:17:02:: 5 -2 hold_up%2:40:00:: 4 -2 hold_over%2:37:00:: 1 -2 hold_out%2:42:01:: 3 -2 hold_on%2:30:00:: 3 -2 hold%2:42:02:: 16 -2 hold%2:31:08:: 17 -2 hold%1:09:00:: 2 -2 hold%1:07:00:: 3 -2 hobby%1:04:00:: 1 -2 hobble%2:38:00:: 1 -2 hoarsely%4:02:00:: 1 -2 hitter%1:18:00:: 1 -2 hitherto%4:02:00:: 1 -2 hitch%2:35:00:: 1 -2 hit%2:39:00:: 9 -2 hit%2:33:00:: 10 -2 hit%1:04:00:: 2 -2 historic%3:01:00:: 1 -2 hissing%1:11:00:: 1 -2 hired_man%1:18:00:: 1 -2 hired%5:00:00:employed:00 1 -2 hind_leg%1:05:00:: 1 -2 hillock%1:17:00:: 1 -2 hike%1:04:00:: 1 -2 hijack%2:35:00:: 1 -2 highwayman%1:18:00:: 1 -2 highlight%2:30:00:: 1 -2 high_temperature%1:07:00:: 1 -2 high_society%1:14:00:: 1 -2 high_explosive%1:27:00:: 1 -2 high-spirited%5:00:00:spirited:00 1 -2 high-speed%5:00:01:fast:01 1 -2 high-priced%5:00:00:expensive:00 1 -2 high%5:00:00:elated:00 5 -2 high%4:02:02:: 2 -2 hierarchy%1:14:01:: 2 -2 hierarchy%1:14:00:: 1 -2 hiding%1:04:00:: 1 -2 hideous%5:00:00:ugly:00 2 -2 hide%1:27:00:: 1 -2 hide%1:05:00:: 2 -2 hibernate%2:29:00:: 1 -2 heyday%1:28:00:: 1 -2 heterozygous%3:00:00:: 1 -2 hesitation%1:07:01:: 2 -2 hesitantly%4:02:00:: 1 -2 heroism%1:07:00:: 1 -2 heroine%1:18:01:: 1 -2 heroic%5:00:00:bold:00 3 -2 heroic%3:01:00:: 2 -2 heritage%1:07:00:: 2 -2 here%5:00:00:present:02 1 -2 herd%1:14:01:: 2 -2 henceforth%4:02:00:: 1 -2 hemosiderin%1:27:00:: 1 -2 helplessly%4:02:00:: 1 -2 help%2:34:00:: 5 -2 hellenic%5:00:00:classical:00 1 -2 hell_to_pay%1:07:00:: 1 -2 heights%1:15:00:: 1 -2 hegel%1:18:00:: 1 -2 hedge%1:06:00:: 1 -2 heavy%3:00:02:: 6 -2 heaving%5:00:00:moving:02 1 -2 heaviness%1:07:00:: 1 -2 heavily%4:02:05:: 3 -2 heaver%1:06:00:: 1 -2 heavens%1:15:00:: 1 -2 heave%2:38:00:: 3 -2 heave%2:35:00:: 4 -2 heated%5:00:00:hot:02 2 -2 heat_of_formation%1:19:00:: 1 -2 heat_energy%1:19:00:: 1 -2 heat%1:07:02:: 4 -2 hearth%1:06:01:: 1 -2 heartening%5:00:00:encouraging:00 1 -2 heartbeat%1:11:00:: 1 -2 heart%1:09:01:: 5 -2 hearing%1:04:00:: 4 -2 heap%1:23:00:: 2 -2 healthful%3:00:00:: 1 -2 heal%2:30:00:: 1 -2 headwaters%1:15:00:: 1 -2 headstand%1:04:00:: 1 -2 headquarters%1:06:00:: 2 -2 headmaster%1:18:00:: 1 -2 headless%3:00:00:: 1 -2 headland%1:17:00:: 1 -2 head_up%2:42:00:: 1 -2 head%5:00:00:important:00 1 -2 head%2:42:01:: 4 -2 head%2:38:01:: 5 -2 hawk%2:40:00:: 1 -2 hawk%1:05:00:: 1 -2 hawaiian%1:10:00:: 1 -2 have%2:35:00:: 20 -2 haunting%5:00:00:unforgettable:00 1 -2 haunt%1:15:00:: 1 -2 haunch%1:08:01:: 1 -2 haunch%1:05:00:: 2 -2 hatless%3:00:00:: 1 -2 hateful%5:00:00:nasty:00 2 -2 hateful%3:00:00:: 1 -2 hatchway%1:06:00:: 1 -2 hatch%2:29:01:: 1 -2 hasten%2:41:00:: 3 -2 haste%1:04:00:: 2 -2 harvest%1:20:00:: 1 -2 harvard%1:06:00:: 1 -2 harshly%4:02:00:: 2 -2 harsh%5:00:03:unpleasant:00 2 -2 harrow%2:36:00:: 1 -2 harness%2:35:00:: 1 -2 harness%1:06:01:: 1 -2 harm%1:11:01:: 2 -2 harlem%1:15:00:: 1 -2 hardware_store%1:06:00:: 1 -2 hardly%4:02:02:: 2 -2 hard-boiled%5:00:00:tough:03 1 -2 harassed%5:00:00:troubled:00 1 -2 harass%2:41:00:: 1 -2 happy%5:00:00:fortunate:00 3 -2 happiness%1:12:00:: 2 -2 happening%1:11:00:: 1 -2 hanker%2:37:00:: 1 -2 hang%2:42:00:: 6 -2 handy%5:00:00:accessible:00 1 -2 handwriting%1:10:00:: 1 -2 handmade%3:00:00:: 1 -2 handling%1:04:01:: 2 -2 handling%1:04:00:: 1 -2 handicapped%5:00:00:unfit:01 1 -2 hand_tool%1:06:00:: 1 -2 hand_grenade%1:06:00:: 1 -2 hand-to-hand%5:00:00:close:01 1 -2 hand%1:15:00:: 5 -2 hamper%1:06:01:: 1 -2 hammer%1:06:04:: 1 -2 hammer%1:06:00:: 2 -2 halted%5:00:00:nonmoving:00 1 -2 halogen%1:27:00:: 1 -2 hallmark%1:07:00:: 1 -2 hall%1:06:06:: 5 -2 half_dozen%5:00:00:cardinal:00 1 -2 half_a_dozen%5:00:00:cardinal:00 1 -2 half-intensity%1:07:00:: 1 -2 hairy%3:00:00:: 1 -2 haircut%1:08:00:: 1 -2 haggle%2:40:00:: 1 -2 haggard%5:00:00:tired:00 1 -2 habitually%4:02:00:: 1 -2 habitat%1:15:00:: 1 -2 gutter%1:06:00:: 1 -2 guts%1:07:00:: 1 -2 gut%1:08:00:: 1 -2 gush%2:32:00:: 2 -2 gunpowder%1:27:00:: 1 -2 gulping%1:04:01:: 1 -2 gulp%1:04:00:: 1 -2 guilty%5:00:00:ashamed(p):00 2 -2 guilt%1:12:00:: 2 -2 guide_on%2:39:00:: 1 -2 guess%1:10:00:: 1 -2 guerrilla%5:00:00:partisan:00 1 -2 guard%2:33:03:: 3 -2 guard%1:18:01:: 2 -2 guard%1:06:00:: 3 -2 guarantee%2:32:03:: 2 -2 guarantee%2:32:01:: 3 -2 guarantee%1:10:00:: 1 -2 grunt%1:11:00:: 1 -2 gruesome%5:00:00:alarming:00 1 -2 grown%5:00:00:mature:01 1 -2 growing%5:00:00:healthy:00 2 -2 grow%2:30:10:: 9 -2 grovel%2:38:00:: 1 -2 grove%1:06:00:: 2 -2 grounds%1:15:00:: 3 -2 ground_level%1:07:00:: 1 -2 ground%2:35:08:: 1 -2 gross%5:00:00:macroscopic:00 2 -2 grocery_store%1:06:00:: 1 -2 groan%1:10:00:: 1 -2 grip%2:37:00:: 3 -2 grinning%1:10:00:: 1 -2 grimace%2:29:00:: 1 -2 grill%1:06:01:: 1 -2 greenwich_time%1:28:00:: 1 -2 greenland%1:15:00:: 1 -2 green%5:00:00:unseasoned:00 2 -2 green%5:00:00:inexperienced:00 3 -2 greedily%4:02:00:: 1 -2 great_power%1:14:00:: 1 -2 graze%2:35:02:: 2 -2 gray-haired%5:00:00:old:02 1 -2 gravity%1:19:00:: 1 -2 gravid%5:00:00:pregnant:00 1 -2 gratitude%1:12:00:: 1 -2 grating%1:06:00:: 1 -2 gratify%2:37:00:: 1 -2 grappling%1:04:00:: 1 -2 grapple%2:35:01:: 2 -2 graphic%5:00:00:written:00 1 -2 grape%1:13:00:: 1 -2 grant%2:40:05:: 5 -2 grandma%1:18:00:: 1 -2 grandfather_clause%1:26:00:: 1 -2 grain%1:17:00:: 1 -2 graduating_class%1:14:00:: 1 -2 graceful%3:00:00:: 1 -2 grace%1:07:00:: 3 -2 grab_sample%1:09:00:: 1 -2 governing%5:00:00:dominant:01 1 -2 gourmet%1:18:00:: 1 -2 gouge%2:40:00:: 2 -2 gouge%2:35:01:: 3 -2 gossip%1:10:01:: 2 -2 gospels%1:10:00:: 1 -2 good_looks%1:07:00:: 1 -2 good_health%1:26:00:: 1 -2 good_friday%1:28:00:: 1 -2 good_enough%5:00:00:good:01 1 -2 good%5:00:00:skilled:00 9 -2 good%5:00:00:complete:00 10 -2 good%5:00:00:close:02 11 -2 goner%1:18:00:: 1 -2 gone%5:00:00:exhausted:00 4 -2 golfer%1:18:00:: 1 -2 golden%5:00:00:happy:00 2 -2 gold%5:00:00:metallic:00 1 -2 gold%5:00:00:chromatic:00 2 -2 gold%1:27:00:: 3 -2 goddess%1:18:00:: 1 -2 gobble%2:34:00:: 1 -2 go_up%2:38:02:: 4 -2 go_up%2:38:01:: 5 -2 go_through%2:34:01:: 2 -2 go_past%2:38:00:: 1 -2 go_over%2:30:00:: 2 -2 go_out%2:30:00:: 4 -2 go_in%2:42:00:: 2 -2 go_far%2:41:00:: 1 -2 go_down%2:42:00:: 4 -2 go_against%2:42:00:: 1 -2 go%2:42:14:: 15 -2 go%2:42:03:: 16 -2 go%2:30:00:: 17 -2 gnaw%2:35:00:: 1 -2 gnash%2:29:00:: 1 -2 glycerol%1:27:00:: 1 -2 glued%5:00:00:affixed:00 1 -2 glue%2:30:00:: 2 -2 glow%2:43:00:: 3 -2 gloomily%4:02:00:: 1 -2 glomerular%3:01:00:: 1 -2 glitter%1:07:00:: 1 -2 glistening%5:00:00:bright:00 1 -2 glibly%4:02:00:: 1 -2 glean%2:35:00:: 1 -2 gleam%1:11:00:: 2 -2 given%5:00:00:inclined(p):02 4 -2 give_up%2:41:05:: 7 -2 give_up%2:40:01:: 8 -2 give_up%2:33:01:: 9 -2 give_up%2:31:00:: 10 -2 give_off%2:42:00:: 1 -2 give_birth%2:29:00:: 1 -2 girlishly%4:02:00:: 1 -2 ginmill%1:06:00:: 1 -2 gingham%1:06:00:: 1 -2 gilt%5:00:00:chromatic:00 1 -2 gilded%5:00:00:chromatic:00 1 -2 gift%1:04:00:: 3 -2 gibson_girl%1:18:00:: 1 -2 giant%1:18:01:: 2 -2 giant%1:14:00:: 3 -2 ghastly%5:00:00:alarming:00 1 -2 get_out%2:32:01:: 4 -2 get_on%2:41:00:: 1 -2 get_off_the_ground%2:38:00:: 1 -2 get_in%2:41:00:: 2 -2 get_going%2:38:00:: 1 -2 get_around%2:32:01:: 2 -2 get%2:32:08:: 16 -2 get%2:31:09:: 17 -2 gerundial%3:01:00:: 1 -2 germinate%2:30:00:: 1 -2 german%3:01:01:: 2 -2 geometric%3:01:00:: 2 -2 geologist%1:18:00:: 1 -2 geological%3:01:00:: 1 -2 geographically%4:02:00:: 1 -2 geographical%3:01:00:: 1 -2 genus%1:09:00:: 1 -2 genuine%5:00:00:true:00 3 -2 gentle%5:00:00:soft:04 3 -2 genius%1:18:00:: 1 -2 genius%1:09:02:: 2 -2 genetic%5:00:00:inheritable:00 1 -2 generous%3:00:01:: 1 -2 generally%4:02:00:: 3 -2 generalization%1:09:01:: 1 -2 gelding%1:05:00:: 1 -2 gee%1:23:00:: 1 -2 gauss%1:23:00:: 1 -2 gauge%2:31:00:: 1 -2 gather_up%2:38:00:: 1 -2 gather%2:32:00:: 5 -2 gatepost%1:06:00:: 1 -2 gastrointestinal%3:01:00:: 1 -2 gas_chamber%1:06:00:: 1 -2 garter_snake%1:05:00:: 1 -2 garrison%1:06:00:: 1 -2 garbage%1:27:00:: 1 -2 garage%2:40:00:: 1 -2 gap%1:17:00:: 2 -2 gap%1:06:00:: 3 -2 gang_up%2:33:00:: 1 -2 gang%1:14:02:: 2 -2 gamut%1:07:00:: 1 -2 gaming_card%1:06:00:: 1 -2 gambling_house%1:06:00:: 1 -2 gamble%2:41:00:: 1 -2 gallop%1:04:00:: 1 -2 gallon%1:23:01:: 1 -2 galaxy%1:14:01:: 1 -2 gain%2:33:00:: 5 -2 gain%2:30:01:: 7 -2 gain%2:30:00:: 6 -2 gain%1:07:02:: 2 -2 gain%1:07:01:: 3 -2 gaily%4:02:00:: 1 -2 gadfly%1:18:00:: 1 -2 fuzzy%5:00:00:hairy:00 1 -2 future%1:10:00:: 2 -2 futile%5:00:00:useless:00 1 -2 futile%5:00:00:unproductive:00 2 -2 further%5:00:00:far:00 2 -2 further%2:41:00:: 2 -2 furor%1:09:00:: 1 -2 furiously%4:02:02:: 2 -2 furious%5:00:00:stormy:00 3 -2 funeral_parlor%1:06:00:: 1 -2 fundamentals%1:09:00:: 1 -2 fumes%1:27:00:: 1 -2 fumed_oak%1:20:00:: 1 -2 fume%2:37:00:: 1 -2 fully%4:02:04:: 2 -2 fullback%1:18:00:: 1 -2 full_moon%1:28:00:: 1 -2 full-time%4:02:00:: 1 -2 full-grown%5:00:00:mature:01 1 -2 full%5:00:00:nourished:00 4 -2 fulfillment%1:04:00:: 2 -2 fuel%2:40:00:: 1 -2 fuck_up%2:41:00:: 1 -2 frustrating%5:00:00:discouraging:00 1 -2 frustrated%5:00:00:unsuccessful:00 1 -2 fruitless%5:00:00:unproductive:00 1 -2 frozen%5:00:00:nonmoving:00 2 -2 frozen%3:00:00:: 1 -2 frostbitten%5:00:00:frozen:00 1 -2 frontier%5:00:00:rural:00 1 -2 front_porch%1:06:00:: 1 -2 front%2:42:00:: 1 -2 front%2:33:00:: 2 -2 front%1:09:00:: 3 -2 front%1:06:00:: 4 -2 frog%1:05:00:: 1 -2 fringe_benefit%1:21:00:: 1 -2 frigid%5:00:00:unloving:00 1 -2 fright%1:12:00:: 1 -2 frieze%1:06:01:: 1 -2 fried%5:00:00:cooked:00 1 -2 friction%1:26:00:: 1 -2 friable%5:00:00:breakable:00 1 -2 fret%2:37:00:: 2 -2 freshman%1:18:00:: 1 -2 fresh_fish%1:18:00:: 1 -2 fresh%3:00:02:: 5 -2 frequency%1:23:00:: 3 -2 frenziedly%4:02:01:: 1 -2 freight_car%1:06:00:: 1 -2 freeze_out%2:30:00:: 1 -2 freeze_down%2:30:00:: 1 -2 freeman%1:18:00:: 1 -2 freed%5:00:00:free:01 1 -2 free_world%1:14:00:: 1 -2 free_will%1:26:00:: 1 -2 free_radical%1:27:00:: 1 -2 free%5:00:00:unobstructed:00 6 -2 free%5:00:00:original:00 5 -2 fraud%1:18:00:: 2 -2 fraud%1:04:01:: 3 -2 fraternize%2:41:00:: 1 -2 franchise%1:10:00:: 1 -2 frame_in%2:35:00:: 1 -2 frame%1:28:00:: 4 -2 fragrant%3:00:00:: 1 -2 fragile%5:00:00:delicate:00 2 -2 fractionation%1:22:00:: 1 -2 fractionation%1:04:00:: 2 -2 fraction%1:23:00:: 3 -2 fracas%1:10:00:: 1 -2 fox_terrier%1:05:00:: 1 -2 fourth_dimension%1:28:00:: 1 -2 fourth%4:02:00:: 1 -2 four_times%4:02:00:: 1 -2 fountain%1:06:02:: 1 -2 founding%1:04:00:: 1 -2 foul-smelling%5:00:00:malodorous:00 1 -2 fortune%1:19:01:: 3 -2 forthright%5:00:01:direct:02 1 -2 fort_worth%1:15:00:: 1 -2 fort%1:06:01:: 1 -2 formulation%1:04:00:: 2 -2 formed%5:00:00:definite:00 1 -2 formalism%1:09:01:: 1 -2 formal%3:00:02:: 3 -2 form%1:10:01:: 8 -2 fork%1:04:00:: 2 -2 forfeit%2:40:00:: 1 -2 forever%4:02:03:: 3 -2 forever%4:02:02:: 2 -2 forest%1:17:00:: 2 -2 foresee%2:41:00:: 3 -2 foremost%5:00:00:best:00 1 -2 foreman%1:18:00:: 1 -2 foreground%1:09:00:: 1 -2 forecast%2:31:00:: 2 -2 forceful%3:00:00:: 1 -2 force%2:35:02:: 6 -2 for_the_time_being%4:02:02:: 1 -2 for_sure%4:02:00:: 1 -2 for_sale%5:00:00:available:00 1 -2 football_player%1:18:00:: 1 -2 football%1:06:00:: 2 -2 foot%1:06:00:: 5 -2 foot%1:05:00:: 6 -2 foolishness%1:07:00:: 1 -2 fool_around%2:32:00:: 1 -2 food_for_thought%1:09:00:: 1 -2 folly%1:07:00:: 1 -2 follow%2:41:01:: 14 -2 folksy%5:00:00:rural:00 1 -2 fold%2:35:03:: 2 -2 fog%1:09:00:: 3 -2 foe%1:18:00:: 2 -2 focus%1:07:03:: 3 -2 focal_point%1:19:00:: 1 -2 fly_on%2:38:00:: 1 -2 fly_by%2:38:00:: 1 -2 fly%2:38:08:: 6 -2 fly%2:38:07:: 5 -2 fly%2:30:01:: 7 -2 flushed%5:00:00:healthy:00 1 -2 flushed%5:00:00:colored:00 2 -2 flush%4:02:00:: 1 -2 flush%2:30:00:: 2 -2 flurry%2:38:00:: 1 -2 fluoride%1:27:00:: 1 -2 fluorescein%1:27:00:: 1 -2 flu%1:26:00:: 1 -2 flowering%1:22:00:: 1 -2 flout%2:32:01:: 1 -2 flop%2:38:00:: 2 -2 floor%1:17:01:: 4 -2 flood%1:23:00:: 2 -2 flood%1:06:00:: 3 -2 flood%1:04:01:: 4 -2 flock%2:38:01:: 1 -2 flock%1:14:02:: 1 -2 flock%1:14:00:: 2 -2 floating%5:00:00:moving:02 1 -2 floating%5:00:00:afloat(p):00 6 -2 flimsy%5:00:01:weak:00 1 -2 flick%1:11:00:: 1 -2 flexible%3:00:02:: 1 -2 flexible%3:00:01:: 2 -2 flexibility%1:07:01:: 2 -2 fleet%5:00:00:fast:01 1 -2 flawless%5:00:00:perfect:00 1 -2 flaw%1:26:00:: 1 -2 flautist%1:18:00:: 1 -2 flatus%1:04:00:: 1 -2 flattery%1:10:00:: 1 -2 flat%5:00:00:unqualified:02 3 -2 flat%5:00:00:unerect:00 4 -2 flat%1:17:00:: 1 -2 flash%2:38:00:: 5 -2 flap%2:38:00:: 2 -2 flannel%1:06:00:: 1 -2 flaming%5:00:00:colorful:00 1 -2 flame_up%2:43:00:: 1 -2 flair%1:09:00:: 1 -2 fixed%5:00:00:unchangeable:00 5 -2 fixed%5:00:00:steady:00 4 -2 fixed%3:00:00:: 3 -2 fix_up%2:32:00:: 2 -2 fix%2:36:01:: 6 -2 fix%2:30:02:: 7 -2 fix%1:26:00:: 1 -2 fitting%5:00:00:just:00 2 -2 fit_in%2:42:00:: 1 -2 fit%1:26:00:: 2 -2 fit%1:07:00:: 3 -2 fish%2:35:00:: 1 -2 firsthand%5:00:00:primary:00 1 -2 first_half%1:28:00:: 1 -2 firmly%4:02:01:: 3 -2 firm%5:00:02:stable:00 6 -2 firm%5:00:00:steady:00 5 -2 firm%5:00:00:secure:02 7 -2 firework%1:06:00:: 1 -2 firelight%1:19:00:: 1 -2 finished%3:00:01:: 2 -2 finish%2:34:00:: 5 -2 fingertip%1:08:00:: 1 -2 finely%4:02:02:: 1 -2 finely%4:02:01:: 2 -2 fine_arts%1:09:00:: 1 -2 fine%5:00:00:well:01 6 -2 fine%5:00:00:thin:01 7 -2 fine%5:00:00:elegant:00 8 -2 finale%1:10:00:: 2 -2 filthy%5:00:00:dirty:01 1 -2 filmed%5:00:00:recorded:00 1 -2 film%2:32:00:: 1 -2 filling_station%1:06:00:: 1 -2 filling%1:22:00:: 2 -2 fill_up%2:30:00:: 1 -2 fill-in%1:18:00:: 1 -2 file%2:32:01:: 4 -2 figure%2:31:00:: 4 -2 fight_back%2:33:01:: 1 -2 fight%1:07:00:: 3 -2 fifties%1:28:01:: 1 -2 fiery%5:00:00:passionate:00 1 -2 fiery%5:00:00:hot:01 2 -2 field_trial%1:09:00:: 1 -2 field_goal%1:04:00:: 1 -2 fidget%2:38:00:: 1 -2 fibrin%1:27:00:: 1 -2 festive%5:00:00:joyous:00 1 -2 festival%1:28:00:: 1 -2 fertilized%5:00:00:fertile:00 1 -2 ferromagnetic%3:01:00:: 1 -2 fencing%1:06:00:: 1 -2 fence_rail%1:06:00:: 1 -2 feline%3:01:00:: 1 -2 feed_on%2:34:00:: 1 -2 feed_bunk%1:06:00:: 1 -2 featured%5:00:00:conspicuous:00 1 -2 feature%1:10:00:: 3 -2 fearful%5:00:00:afraid(p):00 5 -2 favored%5:00:00:loved:00 1 -2 fatty_acid%1:27:00:: 1 -2 fatigued%5:00:00:tired:00 1 -2 father%2:29:00:: 1 -2 father%1:18:04:: 4 -2 father%1:18:03:: 2 -2 father%1:18:01:: 3 -2 fateful%5:00:00:decisive:00 1 -2 fate%1:26:00:: 3 -2 fat%5:00:00:thick:01 2 -2 fat%1:27:00:: 1 -2 fastidious%3:00:00:: 1 -2 fasten%2:35:03:: 3 -2 fastball%1:04:00:: 1 -2 fashion%1:09:00:: 3 -2 fascism%1:09:00:: 1 -2 fascination%1:26:00:: 1 -2 farther%5:00:01:far:00 1 -2 farther%4:02:00:: 2 -2 fare%1:09:00:: 1 -2 farce%1:10:00:: 1 -2 far_east%1:15:00:: 1 -2 far-off%5:00:01:far:00 1 -2 fantastic%5:00:00:unrealistic:00 3 -2 fanaticism%1:09:00:: 1 -2 fan%2:30:00:: 2 -2 family%1:18:00:: 5 -2 family%1:14:03:: 6 -2 familiarity%1:09:00:: 1 -2 falter%2:38:01:: 2 -2 fallout_shelter%1:06:00:: 1 -2 falloff%1:22:00:: 1 -2 fall_behind%2:33:00:: 1 -2 fall_back%2:38:03:: 3 -2 fall_back%2:38:01:: 1 -2 fall_back%2:38:00:: 2 -2 fall_away%2:30:01:: 2 -2 fall_away%2:30:00:: 1 -2 fall%2:41:01:: 12 -2 fall%2:41:00:: 13 -2 fall%2:40:03:: 14 -2 fall%1:17:00:: 4 -2 fall%1:04:03:: 5 -2 falcon%1:05:00:: 1 -2 faithfully%4:02:00:: 1 -2 fairway%1:15:00:: 1 -2 fair%5:00:00:respectable:00 3 -2 fair%5:00:00:moderate:00 4 -2 factor%2:31:00:: 1 -2 faction%1:14:01:: 1 -2 facing%1:06:01:: 1 -2 facility%1:09:01:: 2 -2 faced%3:00:00:: 1 -2 face-to-face%4:02:02:: 1 -2 face%1:18:00:: 6 -2 fabled%5:00:00:unreal:00 1 -2 eyesight%1:09:00:: 1 -2 eyed%3:00:00:: 1 -2 exultation%1:12:00:: 1 -2 extricate%2:35:00:: 1 -2 extreme%5:00:01:immoderate:00 3 -2 extraterrestrial%3:01:00:: 1 -2 extraordinary%5:00:00:immoderate:00 2 -2 extirpate%2:36:00:: 1 -2 external%5:00:00:foreign:02 3 -2 external%5:00:00:extrinsic:00 2 -2 exterior%3:00:00:: 1 -2 extenuate%2:32:00:: 1 -2 extensive%5:00:00:considerable:00 4 -2 extension%1:10:01:: 3 -2 extend%2:29:00:: 8 -2 expressiveness%1:07:00:: 1 -2 expressive%5:00:01:communicative:00 2 -2 expressionless%5:00:00:uncommunicative:00 1 -2 express%2:32:03:: 4 -2 exposure%1:10:00:: 3 -2 exposure%1:09:00:: 4 -2 exposition%1:10:00:: 1 -2 expose%2:39:03:: 5 -2 explosion%1:04:00:: 2 -2 explore%2:31:02:: 3 -2 exploration%1:09:00:: 3 -2 exploitation%1:04:01:: 2 -2 exploitation%1:04:00:: 1 -2 exploit%1:04:00:: 1 -2 explode%2:33:00:: 5 -2 expire%2:30:00:: 2 -2 expiration%1:28:00:: 1 -2 expertise%1:09:00:: 1 -2 expert%5:00:00:skilled:00 1 -2 experimental%5:00:02:empirical:00 3 -2 expend%2:40:00:: 2 -2 expedite%2:41:00:: 1 -2 expanse%1:07:01:: 1 -2 exotic%5:00:00:foreign:01 1 -2 existing%5:00:00:present:02 2 -2 existential%5:00:00:empirical:00 1 -2 exhortation%1:10:01:: 1 -2 exhaustion%1:26:00:: 1 -2 exhale%2:29:00:: 1 -2 exercise%1:04:02:: 3 -2 exercise%1:04:01:: 4 -2 exempt%3:00:00:: 1 -2 exemplify%2:42:00:: 1 -2 exemplify%2:32:00:: 2 -2 executor%1:18:00:: 1 -2 executive%3:01:00:: 1 -2 executioner%1:18:00:: 1 -2 execution%1:04:02:: 2 -2 execute%2:41:00:: 2 -2 excuse%2:32:04:: 2 -2 excuse%2:32:03:: 3 -2 excuse%2:32:00:: 1 -2 excommunicate%2:32:00:: 1 -2 exclusiveness%1:07:00:: 1 -2 exclude%2:32:01:: 4 -2 excitement%1:04:02:: 4 -2 excited%5:00:00:wild:02 3 -2 exchange%2:30:00:: 2 -2 excess%1:07:00:: 2 -2 exceptionally%4:02:00:: 1 -2 exceptional%5:00:00:uncommon:00 2 -2 excellence%1:07:00:: 1 -2 excel%2:42:00:: 1 -2 exceedingly%4:02:00:: 1 -2 excavation%1:04:01:: 1 -2 exasperated%5:00:00:displeased:00 1 -2 example%1:10:00:: 4 -2 examine%2:32:00:: 4 -2 exalted%5:00:00:noble:01 1 -2 exalt%2:32:00:: 1 -2 exaggerated%5:00:00:immoderate:00 1 -2 exaggerate%2:41:00:: 2 -2 exactly%4:02:04:: 2 -2 exacerbate%2:30:00:: 1 -2 evolve%2:30:02:: 3 -2 every_month%4:02:00:: 1 -2 everlastingly%4:02:00:: 1 -2 ever-present%5:00:00:present:02 1 -2 ever-changing%5:00:00:dynamic:00 1 -2 even%3:00:01:: 3 -2 eve%1:28:01:: 2 -2 evasive%5:00:00:equivocal:00 1 -2 evaporation%1:22:00:: 1 -2 evaporate%2:30:00:: 1 -2 evangelical%3:01:01:: 1 -2 evacuation%1:04:00:: 1 -2 european_nation%1:15:00:: 1 -2 european%1:18:00:: 1 -2 eulogize%2:32:00:: 1 -2 ethos%1:07:00:: 1 -2 ethical%3:00:00:: 2 -2 ethic%1:09:00:: 1 -2 ethereal%5:00:00:insubstantial:00 1 -2 eternity%1:26:00:: 2 -2 estimate%1:10:01:: 4 -2 esthetic%3:00:00:: 1 -2 esteem%1:26:00:: 1 -2 estate%1:21:01:: 2 -2 establish%2:35:00:: 6 -2 essence%1:09:00:: 1 -2 essay%1:04:00:: 2 -2 escritoire%1:06:00:: 1 -2 escort%1:18:01:: 1 -2 eschew%2:32:00:: 1 -2 escheat%1:21:00:: 1 -2 escape%2:42:00:: 4 -2 escape%1:04:02:: 2 -2 erupt%2:30:02:: 2 -2 error%1:07:01:: 5 -2 eradicate%2:30:00:: 1 -2 equilibrium%1:22:00:: 2 -2 equilibrate%2:30:00:: 1 -2 equally%4:02:02:: 2 -2 equality%1:07:00:: 1 -2 epiphyseal%3:01:00:: 1 -2 epiphany%1:11:00:: 1 -2 epic%5:00:00:large:00 1 -2 envy%1:12:00:: 1 -2 envisage%2:36:00:: 1 -2 envelope%1:06:00:: 2 -2 entry%1:21:00:: 3 -2 entirety%1:26:00:: 1 -2 entirely%4:02:02:: 2 -2 enthusiastically%4:02:00:: 1 -2 enthalpy%1:07:00:: 1 -2 entertaining%3:00:00:: 1 -2 enter%2:36:00:: 6 -2 entanglement%1:06:00:: 1 -2 ensure%2:31:00:: 2 -2 enmesh%2:35:00:: 1 -2 enlightened%3:00:00:: 2 -2 enlargement%1:04:00:: 1 -2 enlarge%2:30:01:: 2 -2 enlarge%2:30:00:: 3 -2 enjoyment%1:04:00:: 2 -2 enjoin%2:32:01:: 1 -2 enigmatic%5:00:00:incomprehensible:00 1 -2 engulf%2:35:00:: 2 -2 engrossing%5:00:00:interesting:00 1 -2 english_professor%1:18:00:: 1 -2 english_language%1:10:00:: 1 -2 engineering%1:09:00:: 2 -2 engine%1:19:00:: 2 -2 engagement%1:14:00:: 2 -2 engagement%1:10:00:: 3 -2 engage%2:41:01:: 3 -2 energy%1:07:01:: 4 -2 energetically%4:02:01:: 1 -2 endure%2:39:00:: 4 -2 endothermic_reaction%1:22:00:: 1 -2 endlessly%4:02:00:: 1 -2 endanger%2:32:00:: 2 -2 end_up%2:30:00:: 2 -2 end_point%1:15:00:: 1 -2 end%1:15:01:: 9 -2 encouragement%1:04:00:: 2 -2 enclosure%1:06:00:: 1 -2 enclose%2:42:00:: 2 -2 enchant%2:37:00:: 1 -2 encamp%2:42:00:: 1 -2 enactment%1:04:01:: 1 -2 emulate%2:42:00:: 1 -2 empty%2:38:00:: 3 -2 emotionally%4:02:01:: 1 -2 emotionally%4:02:00:: 2 -2 emotionalism%1:07:00:: 1 -2 emotional_disturbance%1:26:00:: 1 -2 emotional%3:01:00:: 3 -2 emit%2:29:00:: 1 -2 eminent%5:00:00:important:00 1 -2 emigrate%2:30:00:: 1 -2 embroider%2:36:00:: 1 -2 embrace%1:04:00:: 1 -2 emblem%1:10:00:: 2 -2 embezzle%2:40:00:: 1 -2 embed%2:35:00:: 1 -2 embarrassing%5:00:00:unpleasant:00 2 -2 emaciated%5:00:00:thin:03 1 -2 elude%2:38:00:: 1 -2 eluate%1:27:00:: 1 -2 else%4:02:00:: 2 -2 eliminate%2:30:00:: 3 -2 elicit%2:36:00:: 2 -2 eleventh%5:00:00:ordinal:00 1 -2 elevation%1:11:00:: 1 -2 elevate%2:38:00:: 2 -2 elevate%2:30:00:: 3 -2 elementary%5:00:00:easy:01 1 -2 elemental%5:00:00:simple:02 2 -2 elegant%3:00:00:: 1 -2 electrostatic%3:01:00:: 1 -2 electroshock%1:04:00:: 1 -2 electronic_device%1:06:00:: 1 -2 electron_microscopic%3:01:00:: 1 -2 electrocardiograph%1:06:00:: 1 -2 electric_toothbrush%1:06:00:: 1 -2 electric_razor%1:06:00:: 1 -2 electric_light%1:06:00:: 1 -2 eldest%5:00:00:first:00 1 -2 elder%5:00:00:senior:00 1 -2 elaboration%1:04:01:: 1 -2 eke_out%2:40:02:: 1 -2 ejection%1:04:01:: 1 -2 eject%2:35:01:: 1 -2 egypt%1:15:00:: 1 -2 egotism%1:07:00:: 1 -2 egalitarianism%1:09:00:: 1 -2 effort%1:04:02:: 3 -2 efficiently%4:02:00:: 1 -2 efficiency_engineer%1:18:00:: 1 -2 effectuate%2:36:00:: 1 -2 effect%1:10:00:: 4 -2 efface%2:30:00:: 1 -2 educational_institution%1:14:00:: 1 -2 edition%1:14:00:: 2 -2 edit_out%2:30:00:: 1 -2 edifice%1:06:00:: 1 -2 edgy%5:00:00:tense:03 1 -2 edge%1:07:01:: 4 -2 edge%1:07:00:: 5 -2 edema%1:26:00:: 1 -2 ecstatic%5:00:00:joyous:00 1 -2 economical%3:01:00:: 2 -2 eclipse%1:11:00:: 1 -2 eclectic%5:00:00:discriminating:00 1 -2 echo%2:39:00:: 2 -2 eccentricity%1:07:00:: 1 -2 eat_up%2:34:00:: 1 -2 easy_money%1:21:00:: 1 -2 easy_chair%1:06:00:: 1 -2 east_side%1:15:00:: 1 -2 east%1:15:01:: 3 -2 earthy%5:00:00:indecent:00 1 -2 earthman%1:18:00:: 1 -2 earnings%1:21:00:: 2 -2 earnestly%4:02:02:: 1 -2 earnest%5:00:00:serious:00 1 -2 earned%3:00:00:: 1 -2 early_days%1:28:00:: 1 -2 early%3:00:01:: 5 -2 earliest%5:00:00:early:00 1 -2 eager%5:00:00:enthusiastic:00 2 -2 each_month%4:02:00:: 1 -2 each_day%4:02:00:: 1 -2 dying%3:00:00:: 1 -2 dwindling%5:00:00:decreasing:00 1 -2 duty%1:21:00:: 3 -2 dust_cloud%1:19:00:: 1 -2 dung%1:27:00:: 1 -2 dully%4:02:00:: 1 -2 dull%5:00:01:uninteresting:00 4 -2 dull%5:00:00:unsaturated:03 5 -2 dull%5:00:00:soft:04 3 -2 due%5:00:00:merited:00 2 -2 duct%1:08:00:: 1 -2 dubious%5:00:00:uncertain:02 1 -2 dub%2:32:00:: 1 -2 dry_up%2:30:00:: 1 -2 dry_out%2:30:00:: 1 -2 drunkard%1:18:00:: 1 -2 drunk%5:00:00:excited:00 2 -2 drown%2:30:02:: 2 -2 drown%2:30:00:: 3 -2 drop_out%2:33:00:: 1 -2 drop_dead%2:30:00:: 1 -2 drop%2:35:03:: 9 -2 drop%2:33:00:: 10 -2 drone%1:05:00:: 1 -2 drizzling%5:00:00:descending(a):00 1 -2 driving%5:00:00:dynamic:00 1 -2 driven%5:00:00:involuntary:01 1 -2 drive_off%2:38:06:: 1 -2 drive%2:35:07:: 8 -2 drive%2:35:01:: 9 -2 drifting%5:00:00:afloat(p):00 2 -2 drift%2:38:00:: 4 -2 dribble%2:38:00:: 1 -2 dressy%5:00:00:fancy:00 1 -2 dress_shop%1:06:00:: 1 -2 dress%2:35:02:: 3 -2 dress%2:29:07:: 4 -2 dress%2:29:05:: 5 -2 dreary%5:00:00:cheerless:00 1 -2 drearily%4:02:00:: 1 -2 dreamy%5:00:00:inattentive:00 1 -2 dream%1:09:03:: 4 -2 drawn%5:00:00:tired:00 1 -2 drawing%1:04:01:: 3 -2 draw_up%2:41:00:: 1 -2 draw_up%2:38:02:: 2 -2 draw_together%2:35:00:: 1 -2 draw%2:36:01:: 16 -2 draw%2:30:14:: 17 -2 draught%1:13:00:: 1 -2 dramatist%1:18:00:: 1 -2 dramatically%4:02:00:: 2 -2 drama%1:10:00:: 3 -2 drainage_ditch%1:06:00:: 1 -2 drain%2:38:00:: 1 -2 drag_one's_feet%2:42:00:: 1 -2 draft%2:33:00:: 2 -2 drab%5:00:00:dull:03 1 -2 dowry%1:21:00:: 1 -2 downwind%4:02:00:: 1 -2 downward%4:02:00:: 1 -2 downtrodden%5:00:00:wronged:00 1 -2 downpour%1:19:00:: 1 -2 downfall%1:11:01:: 1 -2 down%5:00:00:descending(a):00 4 -2 down%4:02:03:: 3 -2 dove%1:05:00:: 1 -2 doubtful%5:00:00:uncertain:02 2 -2 doubt%2:32:00:: 2 -2 double_entendre%1:10:00:: 1 -2 double%2:35:00:: 2 -2 dotted%5:00:00:patterned:00 1 -2 dose%1:23:00:: 2 -2 dormitory%1:06:00:: 1 -2 dormant%5:00:00:asleep(p):00 3 -2 dooryard%1:06:00:: 1 -2 doomed%5:00:00:dead:01 1 -2 donation%1:21:00:: 1 -2 dominated%5:00:00:controlled:00 1 -2 domain%1:15:00:: 2 -2 dollar_volume%1:07:00:: 1 -2 doleful%5:00:00:sad:00 1 -2 dogmatically%4:02:00:: 1 -2 dogged%5:00:00:stubborn:00 1 -2 dog%2:38:00:: 1 -2 doctrinaire%5:00:00:instructive:00 1 -2 dock%2:38:00:: 1 -2 dock%1:06:02:: 1 -2 do-it-yourself%5:00:00:homemade:00 1 -2 do%2:42:02:: 10 -2 do%2:41:03:: 11 -2 do%2:29:04:: 12 -2 divorce%2:41:00:: 2 -2 divinely%4:02:00:: 1 -2 divided%3:00:00:: 1 -2 divide%2:35:00:: 4 -2 divert%2:38:01:: 2 -2 divert%2:38:00:: 1 -2 diversity%1:07:02:: 1 -2 diversion%1:04:01:: 2 -2 diversion%1:04:00:: 1 -2 divergent%5:00:00:different:00 1 -2 ditch%1:06:00:: 1 -2 disturbed%5:00:00:disarranged:00 1 -2 disturbance%1:26:02:: 2 -2 disturb%2:35:00:: 3 -2 disturb%2:30:00:: 4 -2 district_attorney%1:18:00:: 1 -2 distress%1:12:00:: 3 -2 distraction%1:09:00:: 1 -2 distortion%1:11:00:: 1 -2 distorted%5:00:00:crooked:01 1 -2 distinguished%5:00:00:dignified:00 2 -2 distinctively%4:02:00:: 1 -2 distant%3:00:02:: 2 -2 dissolve%2:30:02:: 3 -2 dissection%1:04:01:: 1 -2 dissatisfied%5:00:00:discontented:00 1 -2 dissatisfaction%1:12:00:: 1 -2 disruptive%5:00:00:unquiet:00 1 -2 disrupt%2:30:01:: 2 -2 disrepair%1:26:00:: 1 -2 disregard%2:32:00:: 2 -2 dispute%2:32:01:: 2 -2 disposition%1:07:00:: 1 -2 dispose_of%2:41:00:: 1 -2 dispose%2:31:00:: 3 -2 disposal_plant%1:06:00:: 1 -2 display%2:39:01:: 2 -2 displacement%1:04:00:: 1 -2 disperse%2:35:00:: 1 -2 dispassionately%4:02:00:: 1 -2 disparate%5:00:00:different:00 1 -2 disorganized%3:00:00:: 1 -2 disobedient%3:00:00:: 1 -2 dismayed%5:00:00:afraid(p):00 1 -2 dismay%1:12:00:: 2 -2 dismally%4:02:01:: 1 -2 disloyalty%1:07:00:: 1 -2 dislodge%2:35:00:: 1 -2 dislike%1:12:00:: 2 -2 disintegration%1:26:00:: 1 -2 disintegrate%2:30:00:: 1 -2 dishonor%2:41:00:: 1 -2 dishearten%2:37:00:: 1 -2 disgusted%5:00:00:displeased:00 1 -2 disguised%5:00:00:covert:00 1 -2 disguise%1:07:00:: 1 -2 disgrace%2:41:00:: 1 -2 disgrace%1:26:00:: 1 -2 disenfranchisement%1:04:00:: 1 -2 disdain%2:37:00:: 1 -2 disdain%1:12:00:: 1 -2 discriminate%2:31:00:: 1 -2 discretion%1:09:00:: 2 -2 discovered%5:00:00:unconcealed:00 1 -2 discovered%5:00:00:determined:00 2 -2 discourse%1:10:01:: 1 -2 discouraged%5:00:00:pessimistic:00 1 -2 discourage%2:32:02:: 3 -2 discontinue%2:42:01:: 2 -2 discontent%1:12:00:: 1 -2 disconcerting%5:00:00:displeasing:00 1 -2 discipline%1:09:01:: 2 -2 discipline%1:09:00:: 1 -2 discipline%1:07:00:: 3 -2 disarming%5:00:00:pleasing:00 1 -2 disarm%2:33:00:: 1 -2 disapprove%2:32:00:: 2 -2 disagreement%1:07:00:: 2 -2 disabuse%2:32:00:: 1 -2 disabling%5:00:00:unhealthful:00 1 -2 disabled%1:14:00:: 1 -2 dirty%3:00:02:: 2 -2 dirge%1:10:00:: 1 -2 direction%1:10:02:: 6 -2 directed%5:00:00:oriented:00 1 -2 direct_loan%1:21:00:: 1 -2 diplomatic%3:01:00:: 1 -2 dip%2:35:00:: 1 -2 dinnertime%1:28:00:: 1 -2 diminutive%5:00:00:small:00 1 -2 diminish%2:30:04:: 2 -2 dimethylglyoxime%1:27:00:: 1 -2 dime%1:21:00:: 1 -2 dilution%1:04:00:: 2 -2 dilapidated%5:00:00:damaged:00 1 -2 dignified%3:00:00:: 1 -2 dig_up%2:35:00:: 1 -2 dig_in%2:35:00:: 1 -2 diffusing%5:00:00:distributive:00 1 -2 different%5:00:00:unusual:00 3 -2 difference_of_opinion%1:10:00:: 1 -2 difference%1:10:00:: 4 -2 diethylaminoethyl_cellulose%1:27:00:: 1 -2 die_out%2:30:00:: 1 -2 die_away%2:30:00:: 1 -2 dictum%1:10:00:: 1 -2 dickens%1:10:00:: 1 -2 diatomic%3:01:00:: 1 -2 diaphyseal%3:01:00:: 1 -2 diaphragm%1:08:00:: 2 -2 diam%1:07:00:: 1 -2 dialogue%1:10:02:: 3 -2 dialogue%1:10:00:: 2 -2 diabetic%1:18:00:: 1 -2 dextrous%5:00:00:adroit:00 1 -2 dexamethasone%1:27:00:: 1 -2 dew%1:27:00:: 1 -2 devotion%1:12:00:: 1 -2 devotee%1:18:00:: 1 -2 device%1:10:00:: 2 -2 device%1:04:00:: 3 -2 deviation%1:11:00:: 1 -2 deviate%2:38:00:: 1 -2 developing%5:00:00:nonindustrial:00 1 -2 develop_into%2:30:00:: 1 -2 detest%2:37:00:: 1 -2 determinant%1:09:00:: 1 -2 deteriorate%2:29:00:: 2 -2 detective_story%1:10:00:: 1 -2 detection%1:04:00:: 2 -2 detected%3:00:00:: 1 -2 details%1:10:00:: 1 -2 detail%1:14:01:: 4 -2 detached%5:00:00:separate:00 2 -2 destroy%2:33:00:: 3 -2 destine%2:31:00:: 2 -2 destination%1:15:00:: 1 -2 dessert%1:13:00:: 1 -2 despotism%1:26:00:: 1 -2 despatch%2:38:00:: 1 -2 desire%2:37:02:: 2 -2 desire%2:37:01:: 3 -2 desire%1:26:00:: 3 -2 designer%1:18:02:: 1 -2 designed%5:00:00:planned:00 1 -2 designation%1:10:00:: 1 -2 design%1:06:00:: 4 -2 deserving%5:00:00:worthy:00 1 -2 deserved%5:00:00:merited:00 1 -2 desertion%1:04:00:: 1 -2 desert%2:41:00:: 2 -2 descriptive%3:00:02:: 1 -2 descent%1:11:00:: 1 -2 descent%1:07:00:: 2 -2 deride%2:32:00:: 1 -2 deranged%5:00:00:insane:00 1 -2 depredation%1:04:00:: 1 -2 depreciation%1:04:00:: 1 -2 deprecatory%5:00:00:uncomplimentary:00 1 -2 deposit%2:40:00:: 2 -2 deposit%2:35:01:: 3 -2 depose%2:41:00:: 1 -2 deportee%1:18:00:: 1 -2 deploy%2:33:00:: 1 -2 deplore%2:32:00:: 1 -2 deplorable%5:00:00:bad:00 1 -2 depletion%1:04:00:: 1 -2 depleted%5:00:00:exhausted:00 1 -2 depict%2:36:01:: 3 -2 dependent%5:00:00:conditional:00 2 -2 dependent%1:18:00:: 1 -2 departure%1:11:01:: 2 -2 department_of_labor%1:14:00:: 1 -2 department_of_commerce%1:14:00:: 1 -2 departing%5:00:00:outgoing:00 1 -2 dental%3:01:00:: 1 -2 density%1:07:01:: 2 -2 dense%5:00:00:concentrated:00 2 -2 denounce%2:41:00:: 2 -2 demythologized%5:00:00:rational:00 1 -2 demure%5:00:00:modest:01 1 -2 demonstration%1:10:03:: 4 -2 demonstrate%2:32:00:: 4 -2 demolish%2:36:00:: 1 -2 demarcation%1:15:00:: 1 -2 deliver%2:41:00:: 5 -2 delirium%1:26:01:: 1 -2 delightfully%4:02:00:: 1 -2 delicious%5:00:00:pleasing:00 1 -2 delicacy%1:07:00:: 1 -2 deliberately%4:02:01:: 2 -2 deliberate%5:00:00:unhurried:00 2 -2 deliberate%5:00:00:intended:00 1 -2 delay%1:28:00:: 1 -2 delay%1:04:00:: 2 -2 dejection%1:26:00:: 1 -2 deity%1:18:00:: 1 -2 defy%2:42:01:: 2 -2 defray%2:40:00:: 1 -2 defraud%2:41:00:: 1 -2 definitive%5:00:00:explicit:00 1 -2 defined%3:00:00:: 1 -2 define%2:42:03:: 4 -2 deficiency%1:07:00:: 2 -2 defiant%3:00:00:: 1 -2 defiance%1:10:00:: 2 -2 defer%2:42:00:: 1 -2 defense_program%1:09:00:: 1 -2 defense%1:14:01:: 3 -2 defense%1:10:00:: 4 -2 defend%2:33:05:: 4 -2 defective%5:00:00:imperfect:00 1 -2 defect%1:26:01:: 1 -2 defect%1:07:01:: 2 -2 deer%1:05:00:: 1 -2 deep_south%1:15:00:: 1 -2 deep-set%5:00:00:hollow:00 1 -2 deep%5:00:00:thick:01 8 -2 deduce%2:32:00:: 2 -2 decrement%1:07:00:: 1 -2 decree%2:32:00:: 1 -2 declining%5:00:00:falling:00 1 -2 decline%2:30:00:: 4 -2 decline%1:26:00:: 2 -2 declaim%2:32:00:: 1 -2 deck%1:06:01:: 2 -2 decisively%4:02:01:: 1 -2 decision_making%1:09:00:: 1 -2 decision%1:11:02:: 3 -2 deceptive%5:00:00:unreal:02 1 -2 decency%1:07:01:: 2 -2 decency%1:07:00:: 1 -2 deceleration%1:07:00:: 1 -2 deceive%2:32:00:: 2 -2 decedent%1:18:00:: 1 -2 decay%2:30:00:: 2 -2 decay%1:22:02:: 1 -2 decay%1:22:01:: 2 -2 debut%2:36:02:: 1 -2 debility%1:26:00:: 1 -2 debilitating%3:00:00:: 1 -2 debate%2:31:00:: 1 -2 deathlike%5:00:00:dead:01 1 -2 deathbed%1:28:00:: 1 -2 dearly%4:02:02:: 1 -2 dealer%1:14:00:: 2 -2 deal%2:40:02:: 9 -2 deal%1:10:00:: 2 -2 deaf%1:14:00:: 1 -2 deadlock%1:26:00:: 1 -2 deadline%1:28:00:: 1 -2 dead%5:00:00:tired:00 3 -2 de-iodinating%3:00:00:: 1 -2 de-iodinate%2:30:00:: 1 -2 dazzling%5:00:01:impressive:00 1 -2 dazed%5:00:00:lethargic:00 2 -2 daylight%1:19:00:: 2 -2 day_off%1:28:00:: 1 -2 dash%2:30:00:: 2 -2 darkness%1:26:01:: 3 -2 dark-blue%5:00:00:chromatic:00 1 -2 dark%1:09:00:: 5 -2 dapper%5:00:00:fashionable:00 1 -2 danish%1:10:00:: 1 -2 dangle%2:35:00:: 2 -2 dangerously%4:02:00:: 1 -2 dance%2:38:02:: 3 -2 dampen%2:30:01:: 2 -2 damned%1:14:00:: 1 -2 damnation%1:10:00:: 1 -2 damn%5:00:02:cursed:00 2 -2 damn%4:02:00:: 1 -2 dam%1:06:00:: 1 -2 daddy%1:18:00:: 1 -2 dab%2:35:01:: 1 -2 cynical%5:00:00:distrustful:00 1 -2 cycle%1:14:00:: 2 -2 cycle%1:11:02:: 3 -2 cutting%1:04:03:: 1 -2 cut_up%2:35:00:: 1 -2 cut_out%2:30:00:: 1 -2 cut_off%2:35:00:: 3 -2 cut_across%2:42:00:: 2 -2 cut%2:35:10:: 4 -2 customarily%4:02:00:: 1 -2 cushion%2:35:00:: 1 -2 curve%2:38:00:: 1 -2 curtain_call%1:10:00:: 1 -2 curtain%1:17:00:: 2 -2 cursed%3:00:00:: 1 -2 curse%2:32:01:: 3 -2 curly%3:00:00:: 1 -2 curled_up%5:00:00:coiled:00 1 -2 curl%2:38:00:: 2 -2 curl%2:35:01:: 3 -2 curiously%4:02:00:: 2 -2 curio%1:06:00:: 1 -2 curbside%1:06:00:: 1 -2 curb%2:41:00:: 1 -2 curb%2:30:01:: 2 -2 cupboard%1:06:00:: 1 -2 cup%2:30:00:: 1 -2 cup%1:25:00:: 3 -2 cunning%1:09:00:: 1 -2 cumbersome%5:00:00:unwieldy:00 1 -2 cultured%5:00:00:refined:01 1 -2 cultist%1:18:00:: 1 -2 cuddle%2:35:00:: 1 -2 cube%1:25:00:: 1 -2 crystallize%2:30:02:: 1 -2 crystal%1:06:02:: 2 -2 cryptic%5:00:00:inexplicable:00 1 -2 cry%2:32:02:: 4 -2 crutch%1:06:00:: 1 -2 crusted%5:00:00:covered:00 1 -2 crusher%1:06:00:: 1 -2 crushed%5:00:00:rough:00 1 -2 crush%2:30:00:: 4 -2 crusade%1:04:00:: 1 -2 crummy%5:00:00:inferior:02 1 -2 crumble%2:38:00:: 1 -2 cruise%2:38:02:: 2 -2 crude%5:00:00:indecent:00 2 -2 crucify%2:41:00:: 1 -2 crown%2:41:00:: 1 -2 crown%2:30:01:: 2 -2 crowd%2:38:00:: 3 -2 crow%2:32:01:: 2 -2 crow%2:32:00:: 1 -2 crow%1:05:00:: 1 -2 crouch%1:04:00:: 1 -2 cross-sectional%3:01:00:: 1 -2 cross%1:06:01:: 1 -2 crop_up%2:39:00:: 1 -2 crooked%3:00:01:: 1 -2 crook%1:18:00:: 1 -2 criticism%1:10:01:: 3 -2 criticise%2:32:00:: 1 -2 critically%4:02:00:: 1 -2 critical%5:00:00:crucial:00 5 -2 critic%1:18:01:: 2 -2 criterion%1:09:00:: 2 -2 crispness%1:07:02:: 1 -2 cripple%2:30:00:: 1 -2 cringe%2:38:01:: 1 -2 criminality%1:26:00:: 1 -2 crime%1:04:01:: 2 -2 crew_member%1:18:00:: 1 -2 creep%2:38:06:: 3 -2 creed%1:09:00:: 1 -2 credit%2:40:00:: 3 -2 credit%1:21:00:: 5 -2 creature%1:18:01:: 2 -2 creativity%1:09:00:: 1 -2 creation%1:11:00:: 3 -2 creation%1:04:01:: 4 -2 cream%1:14:00:: 1 -2 creaking%5:00:00:noisy:00 1 -2 crazy%5:00:00:loving:00 3 -2 crazy%5:00:00:impractical:00 2 -2 crazily%4:02:00:: 1 -2 crash%2:35:00:: 3 -2 crane%2:29:00:: 1 -2 cradle%1:06:00:: 1 -2 crackle%2:39:00:: 1 -2 crackle%1:11:00:: 1 -2 crack%5:00:00:superior:02 1 -2 crack%2:39:00:: 3 -2 crack%2:35:00:: 4 -2 crack%2:30:09:: 5 -2 crack%1:06:00:: 2 -2 cozy%5:00:00:comfortable:00 1 -2 coyness%1:07:00:: 1 -2 cowardly%3:00:00:: 1 -2 cowardice%1:07:00:: 1 -2 covertly%4:02:00:: 1 -2 cover_up%2:39:12:: 1 -2 cover_up%2:32:00:: 2 -2 cover%2:33:01:: 9 -2 cover%1:06:04:: 4 -2 courtyard%1:06:00:: 1 -2 courtier%1:18:00:: 1 -2 courtesy%1:04:00:: 1 -2 court_order%1:10:00:: 1 -2 court%1:06:01:: 4 -2 coupling%1:06:01:: 1 -2 couple%2:35:01:: 2 -2 couple%1:23:00:: 4 -2 countryside%1:15:00:: 1 -2 country%5:00:01:rural:00 1 -2 counting%1:04:00:: 1 -2 counterpoint%1:10:00:: 1 -2 counteract%2:41:00:: 1 -2 counter%5:00:00:negative:02 1 -2 counter%2:32:00:: 1 -2 count%2:42:01:: 5 -2 count%2:31:00:: 6 -2 cotton%1:06:00:: 2 -2 costly%5:00:02:expensive:00 1 -2 costly%5:00:01:expensive:00 2 -2 cosponsor%2:40:00:: 1 -2 cosmetics%1:06:00:: 1 -2 corticofugal%5:00:00:efferent:00 1 -2 cortico-hypothalamic%3:01:00:: 1 -2 correspondent%1:18:01:: 2 -2 correspondence%1:07:02:: 2 -2 correlation%1:09:00:: 2 -2 correlated%5:00:00:related:02 1 -2 correctness%1:07:01:: 1 -2 correction%1:04:00:: 1 -2 correct%5:00:02:proper:00 3 -2 corral%1:06:00:: 1 -2 corpuscular_radiation%1:19:00:: 1 -2 corps%1:14:01:: 2 -2 corporate%5:00:00:corporeal:00 2 -2 coronary_artery%1:08:00:: 1 -2 corn%1:20:02:: 2 -2 core%1:17:00:: 3 -2 core%1:09:00:: 4 -2 coquette%1:18:00:: 1 -2 copy%1:10:01:: 3 -2 coordinate%1:09:00:: 1 -2 coop%1:06:01:: 1 -2 coolant%1:27:00:: 1 -2 cool%5:00:00:composed:00 3 -2 convulsively%4:02:00:: 1 -2 convulsive%5:00:00:unsteady:00 1 -2 convincingly%4:02:00:: 1 -2 convertible%1:06:00:: 1 -2 conversion%1:04:02:: 3 -2 conventional%5:00:00:orthodox:00 2 -2 convene%2:38:00:: 1 -2 convection%1:22:01:: 1 -2 controlling%1:04:00:: 1 -2 controller%1:18:00:: 1 -2 control%1:09:01:: 8 -2 contrivance%1:06:00:: 1 -2 contribution%1:21:01:: 4 -2 contrast%1:09:00:: 4 -2 contract%2:35:04:: 3 -2 contract%2:29:00:: 4 -2 contract%1:10:01:: 2 -2 contour%1:07:00:: 2 -2 contortion%1:25:00:: 2 -2 continuum%1:28:00:: 1 -2 continue%2:41:00:: 5 -2 continuation%1:04:00:: 1 -2 continuance%1:04:00:: 1 -2 continent%1:15:00:: 2 -2 content%2:37:00:: 2 -2 content%1:23:00:: 4 -2 content%1:09:00:: 5 -2 contend%2:32:00:: 3 -2 contemptuous%5:00:00:disrespectful:00 1 -2 contempt%1:07:00:: 2 -2 contemplation%1:09:00:: 2 -2 contamination%1:26:00:: 1 -2 contain%2:41:00:: 3 -2 contact%1:26:00:: 3 -2 contact%1:11:00:: 4 -2 consumption%1:04:01:: 1 -2 consummate%2:36:01:: 1 -2 consume%2:34:02:: 3 -2 consultation%1:10:01:: 2 -2 consultation%1:10:00:: 1 -2 consult%2:32:05:: 4 -2 consult%2:32:03:: 3 -2 constructively%4:02:00:: 1 -2 construction%1:09:00:: 3 -2 construct%2:35:00:: 3 -2 constitution%1:10:00:: 1 -2 constituent%1:18:00:: 2 -2 consternation%1:12:00:: 1 -2 constantly%4:02:03:: 2 -2 constant%3:00:00:: 3 -2 conspire%2:31:01:: 2 -2 conspiracy%1:14:00:: 3 -2 conspicuously%4:02:01:: 2 -2 conspicuously%4:02:00:: 1 -2 conspicuous%3:00:00:: 1 -2 consort%2:41:12:: 1 -2 consonant_system%1:10:00:: 1 -2 consonant%1:10:01:: 2 -2 consistent%5:00:00:coherent:00 2 -2 consistency%1:07:02:: 2 -2 consistency%1:07:00:: 1 -2 considerately%4:02:00:: 1 -2 considerate%3:00:00:: 1 -2 consider%2:31:08:: 6 -2 conserving%5:00:00:protective:00 1 -2 conservation%1:11:00:: 1 -2 conscientious%5:00:00:careful:00 1 -2 conquest%1:04:01:: 1 -2 connote%2:32:01:: 1 -2 connotation%1:09:00:: 2 -2 connoisseur%1:18:00:: 1 -2 connective%5:00:00:conjunctive:00 1 -2 connection%1:18:01:: 4 -2 conjugal%3:01:00:: 1 -2 congressional%3:01:00:: 1 -2 congregation%1:14:01:: 2 -2 congregate%2:38:00:: 1 -2 congeal%2:30:00:: 1 -2 confused%5:00:00:unoriented:00 3 -2 confused%5:00:00:disorganized:00 4 -2 confound%2:31:02:: 1 -2 conformity%1:07:02:: 1 -2 conformity%1:04:00:: 2 -2 conformational_entropy%1:19:00:: 1 -2 conform_to%2:42:00:: 2 -2 conflicting%5:00:00:inconsistent:00 1 -2 conflict%2:42:00:: 1 -2 conflict%1:26:00:: 4 -2 conflict%1:07:00:: 5 -2 confiscate%2:40:01:: 1 -2 confirmed%5:00:00:unchangeable:00 1 -2 confirm%2:30:00:: 3 -2 confidently%4:02:00:: 1 -2 confidentially%4:02:01:: 1 -2 confidential%5:00:00:private:00 1 -2 confidant%1:18:00:: 1 -2 conference_house%1:06:00:: 1 -2 conference%1:14:01:: 2 -2 conference%1:10:00:: 3 -2 confederate%5:00:00:southern:02 1 -2 conductivity%1:19:00:: 1 -2 conduction%1:19:00:: 1 -2 conducting_wire%1:06:00:: 1 -2 conduct%2:41:01:: 3 -2 conduct%2:38:01:: 4 -2 conditioning%1:09:00:: 1 -2 conditioned_stimulus%1:09:00:: 1 -2 conditioned_reflex%1:04:00:: 1 -2 condition%2:41:01:: 1 -2 condition%1:26:01:: 3 -2 condensed%5:00:00:combined:00 1 -2 condensed%5:00:00:abridged:00 2 -2 condense%2:30:01:: 1 -2 condemn%2:32:02:: 2 -2 concretistic%3:01:00:: 1 -2 concordant%5:00:00:consistent:00 1 -2 concluding%5:00:00:closing:00 1 -2 concierge%1:18:00:: 1 -2 concession%1:10:00:: 1 -2 concerned%5:00:00:related:02 3 -2 concern%1:14:00:: 5 -2 conceptuality%1:09:00:: 1 -2 conception%1:11:00:: 3 -2 concentration%1:11:00:: 4 -2 concentration%1:09:00:: 5 -2 concentrated%5:00:00:intense:00 3 -2 concentrate%2:30:07:: 4 -2 conceive%2:29:00:: 3 -2 conceivable%5:00:00:thinkable:00 2 -2 concealed%5:00:00:invisible:00 1 -2 compromise%2:32:00:: 2 -2 compress%2:35:00:: 2 -2 compress%1:06:00:: 1 -2 composition%1:27:00:: 3 -2 composite%5:00:00:complex:00 1 -2 composed%3:00:00:: 2 -2 compliment%2:32:00:: 1 -2 complication%1:26:00:: 2 -2 complicate%2:30:01:: 2 -2 completion%1:04:00:: 3 -2 completeness%1:26:00:: 1 -2 competing%5:00:00:competitive:00 1 -2 compassion%1:12:00:: 1 -2 compass%1:07:00:: 2 -2 comparative_literature%1:09:00:: 1 -2 comparable_with%5:00:00:comparable:00 1 -2 compact%3:00:00:: 1 -2 commuting%1:04:00:: 1 -2 commuter_traffic%1:14:00:: 1 -2 commuter%1:18:00:: 2 -2 commute%2:38:00:: 2 -2 commute%2:30:00:: 3 -2 community%5:00:02:common:02 1 -2 community%1:14:04:: 4 -2 communicational%5:00:00:communicative:00 1 -2 commune%2:32:02:: 1 -2 communal%5:00:00:common:02 1 -2 commotion%1:04:00:: 2 -2 commonwealth%1:15:00:: 1 -2 commonwealth%1:14:00:: 2 -2 common_sense%1:09:00:: 1 -2 common%5:00:00:informal:02 5 -2 commitment%1:07:01:: 1 -2 commitment%1:04:00:: 2 -2 commission%2:41:01:: 1 -2 commercial%3:01:00:: 2 -2 commentator%1:18:01:: 1 -2 commendable%5:00:00:worthy:00 1 -2 commemorate%2:31:00:: 2 -2 commando%1:18:00:: 1 -2 commandment%1:10:00:: 1 -2 command%1:07:02:: 4 -2 coming%1:04:02:: 1 -2 coming%1:04:01:: 2 -2 comic%3:01:00:: 2 -2 comfortably%4:02:02:: 2 -2 comfortable%3:00:01:: 2 -2 comedy%1:10:01:: 2 -2 comeback%1:10:00:: 1 -2 come_up%2:42:00:: 5 -2 come_up%2:38:03:: 6 -2 come_to_life%2:30:00:: 1 -2 come_to%2:29:00:: 4 -2 come_out%2:38:06:: 5 -2 come_out%2:31:00:: 6 -2 come_on%2:30:02:: 3 -2 come_off%2:35:00:: 1 -2 come_near%2:38:00:: 2 -2 come_into%2:40:00:: 1 -2 come_in_for%2:42:00:: 1 -2 come_forth%2:30:00:: 1 -2 come_down%2:30:00:: 2 -2 come_close%2:42:00:: 2 -2 come_back%2:32:00:: 3 -2 come_away%2:35:00:: 1 -2 come_along%2:30:01:: 2 -2 come_after%2:42:00:: 1 -2 come%2:42:00:: 14 -2 come%2:30:13:: 15 -2 combustion%1:22:00:: 1 -2 combine%2:41:00:: 5 -2 colt%1:05:02:: 1 -2 colorado%1:15:00:: 1 -2 color%2:32:00:: 2 -2 color%1:14:00:: 4 -2 colony%1:14:01:: 2 -2 colon%1:08:00:: 1 -2 collusion%1:09:00:: 1 -2 colloidal%3:01:00:: 1 -2 college_student%1:18:00:: 1 -2 collect%2:40:03:: 5 -2 collapse%1:11:00:: 2 -2 coil%2:38:00:: 1 -2 coherent%5:00:00:rational:00 2 -2 coffee_shop%1:06:00:: 1 -2 coffee_cup%1:06:00:: 1 -2 coexistence%1:26:00:: 1 -2 coerce%2:41:00:: 1 -2 codification%1:04:00:: 1 -2 coddle%2:41:00:: 1 -2 cockpit%1:06:00:: 1 -2 cock%2:38:01:: 1 -2 cock%2:35:00:: 2 -2 coaxing%5:00:00:persuasive:00 1 -2 coalesce%2:30:00:: 1 -2 coach%2:32:00:: 1 -2 clutch%1:04:00:: 1 -2 cluster%2:35:00:: 2 -2 clue%1:10:01:: 2 -2 cluck%1:11:00:: 1 -2 clubhouse%1:06:00:: 1 -2 club%1:06:02:: 4 -2 clouded%5:00:00:troubled:00 1 -2 clotheshorse%1:06:00:: 1 -2 clothe%2:41:00:: 2 -2 closing%1:04:01:: 1 -2 closely%4:02:02:: 2 -2 closely%4:02:01:: 3 -2 close_up%4:02:00:: 1 -2 close%5:00:00:equal:00 6 -2 close%2:42:00:: 5 -2 clod%1:14:00:: 1 -2 clobber%2:35:01:: 1 -2 clip%2:35:03:: 1 -2 clip%1:06:00:: 1 -2 cling%2:35:02:: 3 -2 climb%2:38:01:: 2 -2 climb%2:30:00:: 3 -2 climax%2:30:00:: 1 -2 climax%1:11:00:: 1 -2 climax%1:10:00:: 2 -2 click%1:11:00:: 1 -2 clever%5:00:00:smart:00 2 -2 clerk%1:18:01:: 2 -2 clergy%1:14:00:: 1 -2 cleft%1:25:00:: 1 -2 clear_out%2:38:00:: 1 -2 clear-cut%5:00:00:clear:00 1 -2 clear%2:43:00:: 3 -2 clear%2:32:01:: 4 -2 clear%2:30:01:: 5 -2 cleanly%4:02:00:: 1 -2 clean%5:00:00:unqualified:02 2 -2 clean%2:35:01:: 3 -2 claw%1:05:00:: 1 -2 clause%1:10:00:: 1 -2 classified%3:00:01:: 1 -2 classical%5:00:00:standard:01 2 -2 classic%1:06:00:: 1 -2 class%2:31:00:: 1 -2 class%1:14:05:: 5 -2 clash%1:11:00:: 1 -2 clapping%1:10:00:: 1 -2 clap%2:35:03:: 1 -2 clap%1:11:00:: 1 -2 clanking%5:00:00:noisy:00 1 -2 clangor%1:11:00:: 1 -2 clamshell%1:05:00:: 1 -2 clammy%5:00:00:wet:01 1 -2 clam%1:05:00:: 1 -2 claim%1:07:01:: 5 -2 civilian%1:18:00:: 1 -2 civil_service%1:14:00:: 1 -2 city_of_god%1:15:00:: 1 -2 citizens_committee%1:14:00:: 1 -2 cite%2:32:02:: 4 -2 citation%1:10:00:: 1 -2 circus%1:14:00:: 1 -2 circus%1:04:00:: 2 -2 circumstances%1:26:02:: 1 -2 circulating%5:00:00:moving:02 1 -2 circulate%2:32:01:: 1 -2 circulate%2:32:00:: 2 -2 circle%1:04:00:: 4 -2 cincinnati%1:15:00:: 1 -2 cinch%1:04:01:: 1 -2 churchgoing%5:00:00:religious:00 1 -2 chuck%2:35:00:: 1 -2 christmas%1:28:00:: 2 -2 christian_church%1:14:00:: 1 -2 chorine%1:18:00:: 1 -2 choreography%1:04:00:: 1 -2 chord%1:25:00:: 1 -2 chord%1:10:00:: 2 -2 chop%2:35:01:: 1 -2 choked%5:00:00:obstructed:00 1 -2 choke_off%2:30:00:: 1 -2 choke%2:35:00:: 2 -2 choir%1:14:00:: 1 -2 chlorothiazide%1:06:00:: 1 -2 chloride%1:27:00:: 1 -2 chiseled%5:00:00:distinct:00 1 -2 chiropractor%1:18:00:: 1 -2 chinless%5:00:00:opisthognathous:00 1 -2 chin-up%1:04:00:: 1 -2 chin%2:38:00:: 1 -2 chilling%5:00:00:alarming:00 1 -2 chill%2:37:00:: 1 -2 chill%1:12:02:: 2 -2 childlike%5:00:00:young:00 1 -2 childishly%4:02:00:: 1 -2 childhood%1:26:00:: 2 -2 chick%1:05:00:: 1 -2 cheyenne%1:15:00:: 1 -2 cherished%5:00:00:loved:00 1 -2 chemically%4:02:01:: 1 -2 cheese%1:13:00:: 1 -2 cheerfully%4:02:00:: 1 -2 check%1:10:00:: 3 -2 cheat%2:41:00:: 1 -2 cheat%2:33:00:: 2 -2 chattering%3:44:00:: 1 -2 chatter%1:10:00:: 1 -2 chat%2:32:00:: 1 -2 charter%1:10:00:: 1 -2 chart%1:06:00:: 2 -2 charm%2:37:00:: 1 -2 charity%1:14:00:: 1 -2 charitable%3:01:00:: 1 -2 charge%2:35:00:: 8 -2 charge%1:04:03:: 6 -2 charge%1:04:00:: 5 -2 charcoal%1:06:00:: 2 -2 chapter%1:28:00:: 2 -2 chapter%1:14:00:: 3 -2 chaotic%5:00:00:disorganized:00 1 -2 chant%2:32:01:: 2 -2 changed%5:00:00:altered:00 2 -2 changed%3:00:00:: 1 -2 change%1:21:02:: 5 -2 chance%2:41:01:: 1 -2 chance%1:07:00:: 4 -2 championship%1:26:00:: 1 -2 chambermaid%1:18:00:: 1 -2 chamber_of_commerce%1:14:00:: 1 -2 chair%1:04:00:: 2 -2 chain_reaction%1:22:01:: 1 -2 chain%1:06:00:: 3 -2 chagrin%1:12:00:: 1 -2 chafe%2:39:00:: 1 -2 ceylon%1:15:00:: 1 -2 certify%2:41:02:: 3 -2 certification%1:04:00:: 1 -2 ceremony%1:04:00:: 3 -2 cerebral_cortex%1:08:00:: 1 -2 cerebral%3:00:00:: 1 -2 centrifuge%1:06:00:: 1 -2 centrifugation%1:22:00:: 1 -2 centralized%3:00:00:: 1 -2 centralize%2:30:00:: 1 -2 central%5:00:00:inner(a):00 5 -2 centerfield%1:06:00:: 1 -2 centered%5:00:00:central:01 1 -2 center_punch%2:35:00:: 1 -2 center%5:00:00:central:01 1 -2 center%1:14:01:: 8 -2 cent%1:21:00:: 2 -2 cement%2:35:01:: 1 -2 cement%1:27:03:: 1 -2 cement%1:27:00:: 2 -2 celebrate%2:41:02:: 3 -2 celebrant%1:18:01:: 1 -2 ceiling%1:10:00:: 3 -2 ceaseless%5:00:00:continuous:01 1 -2 cc%1:23:00:: 1 -2 cave_in%2:38:00:: 1 -2 cautious%3:00:00:: 1 -2 caution%1:10:00:: 2 -2 caution%1:09:00:: 3 -2 cause%1:04:00:: 5 -2 cattleman%1:18:01:: 1 -2 catholic_church%1:14:00:: 1 -2 catheter%1:06:00:: 1 -2 catch_up_with%2:41:00:: 2 -2 catch_up%2:38:00:: 1 -2 catch_a_glimpse%2:39:00:: 1 -2 catch%2:40:00:: 10 -2 catch%2:33:10:: 11 -2 catch%2:30:00:: 12 -2 catcall%1:10:00:: 1 -2 catastrophically%4:02:00:: 1 -2 catapult%2:35:00:: 1 -2 catalogue%2:31:00:: 1 -2 catalog%1:10:00:: 1 -2 casual%5:00:02:unplanned:00 2 -2 casual%5:00:01:informal:01 3 -2 castroism%1:14:00:: 1 -2 cast_aside%2:40:00:: 1 -2 cast%2:36:01:: 3 -2 cash%2:40:00:: 1 -2 case_in_point%1:09:00:: 1 -2 case%1:23:00:: 10 -2 carving%1:06:00:: 1 -2 carven%3:00:00:: 1 -2 carved%3:00:00:: 1 -2 cartoon%1:10:00:: 1 -2 carry_over%2:38:01:: 2 -2 carry%2:42:02:: 10 -2 carry%2:33:01:: 11 -2 carry%2:31:12:: 12 -2 carriage%1:06:01:: 1 -2 carriage%1:06:00:: 2 -2 carpeted%3:00:00:: 1 -2 carnal%5:00:00:physical:00 1 -2 caress%1:04:00:: 1 -2 careful%5:00:00:mindful:00 2 -2 cardinal%1:18:00:: 1 -2 card%1:10:01:: 2 -2 carcass%1:05:00:: 1 -2 carbine%1:06:00:: 1 -2 car%1:06:01:: 2 -2 capture%1:04:00:: 1 -2 captivity%1:26:02:: 1 -2 captivate%2:37:00:: 1 -2 captain%1:18:06:: 5 -2 capsule%1:06:02:: 1 -2 capsule%1:06:00:: 2 -2 capital_stock%1:21:00:: 1 -2 capillary%1:06:00:: 1 -2 cape%1:17:00:: 1 -2 capacitor%1:06:00:: 1 -2 capable%5:00:00:adequate:00 4 -2 capable%3:00:02:: 3 -2 cap%1:06:02:: 2 -2 canvass%2:41:01:: 1 -2 canonist%3:01:00:: 1 -2 cancellation%1:04:00:: 1 -2 can%2:30:00:: 2 -2 can%1:06:00:: 1 -2 campus%1:15:00:: 1 -2 campaign%2:41:10:: 2 -2 camp%1:14:01:: 4 -2 camp%1:06:02:: 5 -2 calmness%1:07:00:: 1 -2 calmly%4:02:01:: 2 -2 calloused%5:00:00:tough:02 1 -2 call_up%2:32:03:: 1 -2 call_in%2:35:00:: 1 -2 call_in%2:32:02:: 2 -2 call%1:10:05:: 4 -2 caliber%1:07:00:: 1 -2 calculated%5:00:00:premeditated:00 1 -2 cake%1:06:00:: 1 -2 cage%1:26:00:: 2 -2 cadenza%1:10:00:: 1 -2 cackle%2:32:01:: 1 -2 cable%1:10:00:: 1 -2 by_far%4:02:00:: 1 -2 by_and_large%4:02:00:: 1 -2 by-product%1:06:00:: 2 -2 by%4:02:00:: 1 -2 buzzing%5:00:00:noisy:00 1 -2 buzz%2:42:00:: 3 -2 buy_up%2:40:00:: 1 -2 buy_out%2:40:00:: 1 -2 buy%2:40:02:: 2 -2 butt_against%2:35:00:: 1 -2 butt%2:35:00:: 2 -2 butt%1:06:00:: 1 -2 but%4:02:01:: 1 -2 bustling%5:00:00:active:06 1 -2 bustle%2:38:00:: 1 -2 business_district%1:15:00:: 1 -2 bush%1:15:00:: 2 -2 bush%1:14:00:: 3 -2 bus%1:06:00:: 1 -2 burst%2:42:00:: 5 -2 burst%2:30:02:: 6 -2 burst%1:04:01:: 2 -2 burr%1:20:00:: 1 -2 burning%5:00:01:hot:01 2 -2 burn_down%2:30:02:: 2 -2 burn%2:43:02:: 5 -2 burn%2:37:00:: 6 -2 burn%2:30:01:: 7 -2 burly%5:00:00:robust:00 1 -2 burglary%1:04:00:: 1 -2 burden%1:06:01:: 2 -2 bunkmate%1:18:00:: 1 -2 bundle%2:35:00:: 1 -2 bunch%2:38:00:: 1 -2 bump_off%2:41:00:: 1 -2 bump%2:35:00:: 1 -2 bum%1:18:02:: 1 -2 bulletin%2:32:00:: 1 -2 bulletin%1:10:00:: 1 -2 bull's_eye%1:15:00:: 2 -2 bull%1:05:01:: 1 -2 bulk%2:30:01:: 1 -2 bulb%1:20:00:: 1 -2 bulb%1:06:00:: 2 -2 built-in%5:00:00:intrinsic:00 1 -2 built%5:00:00:collective:00 2 -2 building%5:00:00:increasing:00 1 -2 build_up%2:33:00:: 4 -2 build_on%2:42:00:: 1 -2 build%1:07:00:: 1 -2 buggy%1:06:00:: 1 -2 buff%1:18:00:: 1 -2 budget%2:31:00:: 1 -2 bud%2:30:00:: 1 -2 bud%1:20:00:: 2 -2 buckle%1:06:00:: 1 -2 bucket%1:06:00:: 1 -2 buckboard%1:06:00:: 1 -2 buck%2:41:01:: 1 -2 brute%1:18:00:: 1 -2 brutality%1:07:00:: 1 -2 brutality%1:04:00:: 2 -2 brushy%5:00:00:wooded:00 1 -2 brushing%1:04:03:: 1 -2 brush_aside%2:32:00:: 1 -2 brush%2:38:00:: 4 -2 bruised%5:00:01:injured:00 1 -2 bruise%2:35:00:: 1 -2 brown%1:07:00:: 1 -2 brow%1:15:00:: 3 -2 brothel%1:06:00:: 1 -2 bronze%1:27:00:: 1 -2 broke%5:00:00:poor:00 1 -2 broil%2:30:00:: 1 -2 broadening%1:04:01:: 1 -2 broadcasting%1:10:01:: 1 -2 broadcast%2:32:01:: 1 -2 broad%5:00:00:clear:00 4 -2 brittle%5:00:00:breakable:00 1 -2 britain%1:15:00:: 1 -2 bristle%2:38:00:: 2 -2 brisk%5:00:00:energetic:00 1 -2 bring_up%2:41:00:: 2 -2 bring_out%2:35:00:: 2 -2 bring_forth%2:36:01:: 1 -2 bring%2:40:02:: 8 -2 brilliant%5:00:00:impressive:00 3 -2 brilliant%5:00:00:colorful:00 4 -2 brilliant%5:00:00:bright:00 5 -2 brier%1:20:04:: 1 -2 brief%1:10:01:: 1 -2 bridge%1:24:00:: 3 -2 bricklaying%1:04:00:: 1 -2 breathlessly%4:02:00:: 1 -2 breast%1:08:00:: 2 -2 breakwater%1:06:00:: 1 -2 breakup%1:04:00:: 1 -2 breaking_away%1:04:01:: 1 -2 breaking%3:44:00:: 1 -2 breakfast%2:34:00:: 1 -2 break_up%2:38:00:: 3 -2 break_out%2:38:00:: 3 -2 break_open%2:35:01:: 1 -2 break_off%2:30:03:: 1 -2 break_off%2:30:00:: 2 -2 break_loose%2:30:00:: 1 -2 break_into%2:30:00:: 2 -2 break_in%2:41:00:: 1 -2 break_in%2:32:00:: 2 -2 break_in%2:30:03:: 3 -2 break_down%2:37:00:: 3 -2 break_down%2:30:00:: 4 -2 break_camp%2:38:00:: 1 -2 break_away%2:38:01:: 1 -2 break%2:42:00:: 13 -2 break%2:33:00:: 14 -2 break%2:32:00:: 15 -2 break%2:30:05:: 17 -2 break%2:30:04:: 16 -2 break%1:11:01:: 2 -2 breadth%1:09:00:: 1 -2 breadth%1:07:00:: 2 -2 brazilian%3:01:00:: 1 -2 brazil%1:15:00:: 1 -2 brazen%5:00:00:unashamed:00 1 -2 bravely%4:02:00:: 1 -2 bravado%1:10:00:: 1 -2 brass%1:06:00:: 2 -2 brandish%2:35:00:: 1 -2 brand%1:10:02:: 3 -2 brake%1:06:00:: 1 -2 brag%2:32:00:: 1 -2 bracing%1:06:00:: 1 -2 brace%2:37:00:: 1 -2 brace%2:35:01:: 2 -2 boyish%5:00:00:young:00 1 -2 boycott%2:41:00:: 1 -2 bowl%1:06:01:: 1 -2 bow%1:06:00:: 2 -2 bovine%3:01:00:: 1 -2 boundary%1:25:00:: 2 -2 bound%5:00:01:certain:03 4 -2 bound%5:00:00:obligated(p):00 8 -2 bound%3:00:02:: 3 -2 bound%2:42:00:: 2 -2 bound%2:30:00:: 3 -2 bouncing%1:11:00:: 1 -2 bounce_back%2:30:00:: 1 -2 bounce%1:07:00:: 1 -2 bottom%1:08:00:: 3 -2 bottle%1:23:00:: 2 -2 boss%5:00:00:important:00 1 -2 boring%5:00:00:uninteresting:00 1 -2 bootlegger%1:18:00:: 1 -2 boost%2:30:02:: 2 -2 boom%1:11:01:: 1 -2 bookshelf%1:06:00:: 1 -2 booker%1:18:00:: 1 -2 bookcase%1:06:00:: 1 -2 book%1:10:02:: 3 -2 booby_trap%1:06:00:: 1 -2 bony%5:00:00:thin:03 1 -2 bone_marrow%1:08:00:: 1 -2 bombing%1:04:00:: 1 -2 bolt%2:38:00:: 1 -2 bolt%2:35:00:: 2 -2 bolt%1:19:00:: 1 -2 boldly%4:02:00:: 1 -2 bogey%2:35:00:: 1 -2 body_part%1:08:00:: 1 -2 body%1:07:00:: 7 -2 bodily%4:02:00:: 1 -2 boating%1:04:00:: 1 -2 boarding%1:04:00:: 1 -2 board%2:42:00:: 2 -2 bluster%1:26:00:: 1 -2 blur%2:39:01:: 1 -2 blunder%1:04:00:: 1 -2 bluff%1:10:00:: 2 -2 blues%1:10:00:: 1 -2 bludgeon%1:06:00:: 1 -2 blow_out%2:30:00:: 1 -2 blow%2:38:00:: 4 -2 blow%1:11:02:: 3 -2 blossom%2:30:00:: 2 -2 bloom%1:20:00:: 2 -2 bloodshed%1:04:01:: 1 -2 bloodhound%1:05:00:: 1 -2 blood_pressure%1:19:00:: 1 -2 blood%1:07:00:: 3 -2 blonde%1:18:00:: 1 -2 blond%3:00:00:: 1 -2 blockading%5:00:00:preventive:00 1 -2 block_capital%1:10:00:: 1 -2 blob%1:25:00:: 1 -2 blithely%4:02:00:: 1 -2 blistered%5:00:00:injured:00 1 -2 blister%2:30:00:: 1 -2 blissfully%4:02:00:: 1 -2 blink%2:29:01:: 2 -2 blind%5:00:00:imprudent:00 4 -2 blind%2:39:01:: 1 -2 blind%2:39:00:: 2 -2 blend%1:11:00:: 1 -2 bleed%2:29:01:: 2 -2 bleak%5:00:00:hopeless:00 1 -2 blazing%5:00:00:lighted:00 2 -2 blatant%5:00:00:unconcealed:00 1 -2 blatant%5:00:00:noisy:00 2 -2 blast%2:35:00:: 2 -2 blast%1:04:00:: 1 -2 blandly%4:02:00:: 1 -2 blame%1:10:00:: 2 -2 blackness%1:26:00:: 2 -2 blackmailer%1:18:00:: 1 -2 blackened%5:00:00:smoky:00 1 -2 blacken%2:30:00:: 1 -2 blackboard%1:06:00:: 1 -2 blackberry%1:13:00:: 1 -2 black%5:00:00:unfortunate:00 6 -2 black%5:00:00:hopeless:00 4 -2 black%5:00:00:evil:00 5 -2 bizarre%5:00:00:unconventional:01 1 -2 bitter_end%1:26:00:: 1 -2 bitter%5:00:00:tasteful:01 4 -2 bitter%5:00:00:sorrowful:00 5 -2 bite_out%2:32:00:: 1 -2 bite_off%2:35:00:: 1 -2 bite%2:39:00:: 2 -2 birth%1:11:00:: 2 -2 biomedicine%1:09:01:: 1 -2 biological_warfare%1:04:00:: 1 -2 bioassay%1:09:00:: 1 -2 bin%1:06:00:: 1 -2 bill%2:40:00:: 1 -2 big%5:00:00:loud:00 5 -2 big%5:00:00:intense:00 4 -2 big%5:00:00:conspicuous:00 6 -2 biceps%1:08:00:: 1 -2 bibliography%1:10:00:: 1 -2 bewilder%2:31:00:: 1 -2 bewhiskered%5:00:00:unshaven:00 1 -2 beware%2:31:00:: 1 -2 bevy%1:14:01:: 1 -2 beverage%1:13:00:: 1 -2 better%4:02:01:: 2 -2 betrayal%1:04:00:: 1 -2 betray%2:37:00:: 3 -2 best_seller%1:10:00:: 1 -2 bespectacled%5:00:00:adorned:00 1 -2 besmirch%2:32:00:: 1 -2 besieger%1:18:00:: 1 -2 besiege%2:33:00:: 1 -2 beset%2:33:00:: 2 -2 beseech%2:32:00:: 1 -2 berth%1:04:00:: 1 -2 berate%2:32:00:: 1 -2 bent%1:09:01:: 1 -2 beneficiary%1:18:00:: 1 -2 bench_press%1:04:00:: 1 -2 bemoan%2:32:00:: 1 -2 belt%1:15:00:: 3 -2 belowground%5:00:00:subsurface:00 1 -2 below%4:02:06:: 4 -2 below%4:02:02:: 3 -2 belong%2:42:01:: 5 -2 belly%1:08:02:: 2 -2 bellow%1:10:00:: 1 -2 bell%1:06:02:: 2 -2 believe%2:31:02:: 5 -2 belgian%3:01:00:: 1 -2 belch%2:29:00:: 1 -2 belch%1:04:00:: 1 -2 behalf%1:07:00:: 2 -2 beginning%5:00:00:elementary(a):00 2 -2 beginning%1:15:00:: 4 -2 beginning%1:04:00:: 5 -2 beget%2:29:00:: 1 -2 beg%2:40:00:: 3 -2 befit%2:42:00:: 1 -2 beer_bottle%1:06:00:: 1 -2 beef_cattle%1:05:00:: 1 -2 beech%1:20:00:: 1 -2 bedraggled%5:00:00:dirty:01 1 -2 bed%1:17:00:: 3 -2 beautiful%5:00:00:aesthetic:00 2 -2 beat_out%2:33:00:: 1 -2 beat%2:39:00:: 6 -2 bear_on%2:42:00:: 1 -2 bear_on%2:30:00:: 2 -2 bear_in_mind%2:31:00:: 1 -2 bear_down_on%2:38:00:: 1 -2 bean%1:13:00:: 1 -2 be_intimate%2:35:00:: 1 -2 be%2:40:00:: 10 -2 bavaria%1:15:00:: 1 -2 battleful%5:00:00:aggressive:00 1 -2 battle_line%1:15:00:: 1 -2 battle_flag%1:06:00:: 1 -2 batting_average%1:24:00:: 1 -2 batting%1:04:00:: 1 -2 battery%1:14:01:: 3 -2 battered%5:00:00:damaged:00 1 -2 batter%1:18:00:: 1 -2 battalion%1:14:00:: 1 -2 bathtub%1:06:00:: 1 -2 bathrobe%1:06:00:: 1 -2 bathing_suit%1:06:00:: 1 -2 bathe%2:35:00:: 2 -2 bath%1:04:00:: 2 -2 bat%2:29:00:: 2 -2 bat%1:05:00:: 2 -2 baste%2:30:00:: 1 -2 bass%1:07:01:: 1 -2 basophilic%3:01:00:: 1 -2 basket%1:23:00:: 2 -2 bask%2:35:00:: 2 -2 basin%1:06:00:: 1 -2 basic%5:00:00:elementary(a):00 4 -2 baseball_game%1:04:00:: 1 -2 baseball%1:06:00:: 2 -2 base%1:17:00:: 4 -2 base%1:15:00:: 5 -2 base%1:10:01:: 6 -2 base%1:09:00:: 7 -2 base%1:06:00:: 8 -2 bas_relief%1:25:00:: 1 -2 bartender%1:18:00:: 1 -2 barrier%1:17:00:: 3 -2 barricade%1:06:00:: 1 -2 barrel_roll%1:04:00:: 1 -2 barrel%1:25:00:: 3 -2 barrage%1:10:00:: 1 -2 barnyard%1:06:00:: 1 -2 barley%1:13:00:: 1 -2 barge%2:38:00:: 1 -2 barely%4:02:01:: 2 -2 barefoot%5:00:00:unshod:00 1 -2 bare%5:00:00:unclothed:00 2 -2 bare%5:00:00:meager:00 3 -2 bare%5:00:00:leafless:00 1 -2 barbecue%2:30:00:: 1 -2 baptist%1:18:00:: 1 -2 banter%1:10:00:: 1 -2 banquet%1:14:00:: 1 -2 bank%2:38:00:: 1 -2 bank%1:17:00:: 3 -2 banister%1:06:00:: 1 -2 bang%2:39:00:: 2 -2 bang%2:35:01:: 3 -2 bang%1:11:01:: 1 -2 bang%1:11:00:: 2 -2 band%1:07:00:: 3 -2 band%1:06:01:: 4 -2 ban%2:41:00:: 1 -2 ban%2:32:00:: 2 -2 ballad%1:10:00:: 2 -2 ball%1:14:00:: 4 -2 balkanize%2:41:00:: 1 -2 balance_of_power%1:26:00:: 1 -2 balance%2:35:00:: 3 -2 bag%1:23:01:: 2 -2 bag%1:06:03:: 3 -2 bag%1:06:02:: 4 -2 badger%2:37:00:: 1 -2 badge%1:09:00:: 2 -2 bad_weather%1:26:00:: 1 -2 bad_luck%1:26:00:: 1 -2 bad%1:07:00:: 1 -2 backward%4:02:01:: 2 -2 backward%3:00:01:: 1 -2 backstitch%2:35:00:: 1 -2 backstage%1:06:00:: 1 -2 backing%1:04:00:: 1 -2 background%1:11:01:: 5 -2 background%1:11:00:: 4 -2 backer%1:18:00:: 1 -2 backbend%1:04:00:: 1 -2 back_porch%1:06:00:: 1 -2 back_out%2:38:00:: 1 -2 back_down%2:38:00:: 1 -2 back%2:40:00:: 5 -2 bachelor%1:18:00:: 1 -2 babble%2:32:00:: 2 -2 ax%1:06:00:: 1 -2 awkward%3:00:00:: 2 -2 awed%5:00:00:reverent:00 1 -2 away%4:02:08:: 5 -2 away%4:02:05:: 6 -2 awareness%1:09:01:: 2 -2 award%2:40:01:: 2 -2 awakened%3:00:00:: 1 -2 awake%5:00:00:conscious:00 2 -2 average%5:00:00:moderate:00 4 -2 average%2:41:00:: 2 -2 avail%2:41:00:: 2 -2 avail%1:07:00:: 1 -2 auxiliary%1:18:00:: 1 -2 automotive%3:01:00:: 1 -2 automation%1:04:00:: 1 -2 auto_mechanics%1:04:00:: 1 -2 auto%1:06:00:: 1 -2 authority%1:09:00:: 4 -2 authoritarian%5:00:00:undemocratic:00 1 -2 austin%1:15:00:: 1 -2 aurally%4:02:00:: 1 -2 audition%2:36:00:: 1 -2 audit%1:21:00:: 1 -2 audible%3:00:00:: 1 -2 attribute%1:09:00:: 1 -2 attraction%1:10:00:: 2 -2 attraction%1:07:00:: 3 -2 attire%1:06:00:: 1 -2 attic%1:06:00:: 1 -2 attest%2:32:01:: 1 -2 attentive%3:00:00:: 1 -2 attention%1:09:01:: 5 -2 attendant%5:00:00:related:02 1 -2 attendance%1:04:00:: 1 -2 attend%2:41:12:: 2 -2 attempted%5:00:00:unsuccessful:00 1 -2 attempt%1:04:02:: 2 -2 attack%1:10:00:: 3 -2 attached%5:00:00:connected:00 1 -2 atomic_bomb%1:06:00:: 1 -2 at_the_least%4:02:00:: 1 -2 at_sea%5:00:00:afloat(p):00 2 -2 at_rest%4:02:00:: 1 -2 at_one_time%4:02:00:: 1 -2 at_most%4:02:00:: 1 -2 at_large%5:00:01:general:00 1 -2 at_issue%5:00:00:relevant:00 1 -2 at_home%5:00:00:settled:01 1 -2 at_heart%4:02:00:: 1 -2 at_first_sight%4:02:00:: 1 -2 asynchrony%1:24:00:: 1 -2 asymmetrically%4:02:00:: 1 -2 asymmetric%3:00:00:: 1 -2 astride%4:02:00:: 1 -2 astonishingly%4:02:00:: 1 -2 asterisk%1:10:00:: 1 -2 assured%5:00:00:confident:00 1 -2 assure%2:37:00:: 5 -2 assimilate%2:31:00:: 1 -2 assimilate%2:30:00:: 2 -2 assignment%1:04:02:: 3 -2 assignee%1:18:00:: 1 -2 asset%1:21:00:: 1 -2 assessor%1:18:00:: 1 -2 assertion%1:10:00:: 1 -2 assert%2:41:00:: 3 -2 assemblage%1:14:00:: 1 -2 aspire%2:31:00:: 1 -2 aspiration%1:07:00:: 1 -2 aspect%1:09:01:: 3 -2 ask%2:32:05:: 4 -2 asia_minor%1:15:00:: 1 -2 ashore%4:02:00:: 1 -2 ashen%5:00:00:colorless:02 1 -2 ash%1:27:01:: 1 -2 ascending%3:00:00:: 1 -2 as_it_is%4:02:00:: 1 -2 artificially%4:02:00:: 1 -2 artificial%5:00:00:affected:01 2 -2 arthritis%1:26:00:: 1 -2 arteriolosclerosis%1:26:00:: 1 -2 arteriole%1:08:00:: 1 -2 arrest%2:33:00:: 2 -2 arrangement%1:07:00:: 5 -2 arranged%3:00:00:: 1 -2 arrange%2:36:02:: 5 -2 arrange%2:29:00:: 6 -2 arouse%2:36:00:: 3 -2 arouse%2:29:01:: 5 -2 arouse%2:29:00:: 4 -2 around%4:02:03:: 5 -2 army%1:14:01:: 2 -2 armpit%1:08:00:: 1 -2 armored%3:00:01:: 1 -2 armor%1:06:00:: 1 -2 armadillo%1:05:00:: 1 -2 aristocracy%1:14:01:: 1 -2 arianist%1:18:00:: 1 -2 argument%1:10:00:: 3 -2 arctic%1:15:00:: 1 -2 approximate%2:31:00:: 2 -2 approvingly%4:02:00:: 1 -2 appropriately%4:02:00:: 1 -2 approach%1:06:00:: 3 -2 apprehend%2:31:00:: 1 -2 appreciation%1:09:01:: 2 -2 appraise%2:31:01:: 1 -2 appointee%1:18:01:: 2 -2 appointee%1:18:00:: 1 -2 appointed%5:00:00:assigned:00 2 -2 appointed%3:00:02:: 1 -2 apply%2:40:00:: 7 -2 applicability%1:24:00:: 1 -2 appease%2:37:00:: 1 -2 appearance%1:04:01:: 3 -2 appear%2:36:00:: 6 -2 appeal%2:32:00:: 2 -2 apology%1:10:00:: 1 -2 apiece%4:02:00:: 1 -2 apache%1:18:00:: 1 -2 antique%5:00:00:unfashionable:00 2 -2 antique%5:00:00:old:01 1 -2 antipathy%1:12:00:: 1 -2 anticipation%1:09:00:: 3 -2 anticipate%2:37:00:: 5 -2 anthropology%1:09:00:: 1 -2 antenna%1:07:00:: 2 -2 antagonize%2:37:00:: 1 -2 announce%2:32:07:: 3 -2 announce%2:32:01:: 4 -2 annihilation%1:04:00:: 1 -2 anionic%3:01:00:: 1 -2 anion%1:17:00:: 1 -2 animated%3:00:00:: 1 -2 anguish%1:26:00:: 2 -2 angst%1:12:00:: 1 -2 anglo-saxon%1:18:00:: 1 -2 anglican_church%1:14:00:: 1 -2 anglican%1:18:00:: 1 -2 angle%2:38:01:: 1 -2 angle%1:09:00:: 2 -2 angelic%5:00:00:good:02 1 -2 ancestor%1:18:00:: 1 -2 anatomy%1:08:00:: 2 -2 anatomically%4:02:00:: 1 -2 anatomical%1:10:00:: 1 -2 anarchy%1:26:00:: 1 -2 analyze%2:31:01:: 2 -2 analysis%1:10:00:: 3 -2 analyse%2:31:00:: 1 -2 analogy%1:09:00:: 2 -2 analogy%1:04:00:: 3 -2 analeptic%5:00:00:stimulative:00 1 -2 anabaptist%1:18:00:: 1 -2 amsterdam%1:15:00:: 1 -2 amputate%2:35:00:: 1 -2 amply%4:02:00:: 1 -2 ample%5:00:00:abundant:00 2 -2 amoral%3:00:00:: 1 -2 american%1:10:00:: 2 -2 amended_return%1:10:00:: 1 -2 amended%3:00:00:: 1 -2 amend%2:30:00:: 2 -2 ambush%2:33:00:: 1 -2 amble%2:38:00:: 1 -2 ambition%1:07:00:: 2 -2 aluminum_foil%1:06:00:: 1 -2 alternate%5:00:00:secondary:01 2 -2 alteration%1:04:01:: 2 -2 alter%2:30:00:: 2 -2 along%4:02:03:: 3 -2 along%4:02:02:: 4 -2 aloes%1:06:00:: 1 -2 allowance%1:21:00:: 1 -2 allow_in%2:41:00:: 1 -2 allot%2:40:02:: 3 -2 alleviate%2:29:00:: 1 -2 allegory%1:10:00:: 1 -2 all_told%4:02:00:: 1 -2 all-out%5:00:00:complete:00 1 -2 all-important%5:00:00:important:00 1 -2 alkaline%3:00:00:: 1 -2 alike%4:02:00:: 1 -2 alike%3:00:00:: 1 -2 alignment%1:14:00:: 1 -2 alignment%1:07:00:: 2 -2 align%2:30:00:: 1 -2 alienation%1:12:00:: 1 -2 alien%5:00:00:foreign:01 2 -2 alien%1:18:00:: 1 -2 alibi%1:10:00:: 1 -2 algerian%3:01:00:: 1 -2 alertness%1:09:00:: 1 -2 album%1:10:00:: 1 -2 albany%1:15:00:: 1 -2 alarm%2:37:00:: 1 -2 alabaster%1:27:00:: 1 -2 aisle%1:06:03:: 1 -2 aisle%1:06:00:: 2 -2 airspeed%1:28:00:: 1 -2 airs%1:07:00:: 1 -2 air_force%1:14:00:: 1 -2 air-conditioning%1:06:00:: 1 -2 aim%2:33:10:: 5 -2 aim%2:32:00:: 6 -2 aim%2:31:00:: 7 -2 ailing%5:00:00:ill:01 1 -2 agreement%1:09:00:: 4 -2 agitated%3:00:00:: 1 -2 agitate%2:41:00:: 1 -2 aghast%5:00:00:afraid(p):00 1 -2 aggression%1:07:00:: 1 -2 aggregate%5:00:01:collective:00 1 -2 aggravate%2:37:00:: 2 -2 agglomeration%1:14:00:: 1 -2 agglomerate%2:35:00:: 1 -2 aged%5:00:01:old:02 1 -2 aforesaid%5:00:00:same:02 1 -2 aflame%5:00:00:passionate:00 1 -2 affix%2:35:01:: 2 -2 affirm%2:32:01:: 3 -2 affiliation%1:26:00:: 1 -2 affiliation%1:04:00:: 2 -2 affectionately%4:02:00:: 1 -2 affectionate%5:00:00:loving:00 1 -2 aesthetic%3:00:00:: 2 -2 aerosolize%2:35:00:: 1 -2 advocate%1:18:00:: 1 -2 advertising_agency%1:14:00:: 1 -2 advertisement%1:10:00:: 1 -2 advancing%3:00:00:: 1 -2 advanced%5:00:02:high:02 4 -2 advanced%5:00:00:progressive:01 3 -2 advance%2:30:00:: 7 -2 adulterer%1:18:00:: 1 -2 adoption%1:04:00:: 1 -2 adopted%3:00:00:: 1 -2 adopt%2:41:01:: 3 -2 adopt%2:30:01:: 4 -2 adopt%2:30:00:: 5 -2 adobe_house%1:06:00:: 1 -2 admirably%4:02:00:: 1 -2 admirable%5:00:00:pleasing:00 2 -2 administration%1:04:01:: 3 -2 administer%2:40:00:: 3 -2 adjust%2:30:03:: 5 -2 adjournment%1:04:00:: 1 -2 adjective%1:10:01:: 2 -2 adjectival%3:01:00:: 1 -2 adjacent%5:00:00:connected:00 2 -2 adherence%1:04:00:: 1 -2 adequately%4:02:01:: 2 -2 adequacy%1:07:00:: 1 -2 address%2:33:00:: 5 -2 additionally%4:02:00:: 1 -2 addition%1:04:00:: 3 -2 add_up%2:32:00:: 2 -2 adamant%5:00:00:inflexible:02 1 -2 ad_infinitum%4:02:01:: 1 -2 acute%5:00:00:sharp:04 2 -2 acute%3:00:00:: 1 -2 actuate%2:36:00:: 1 -2 actual%5:00:02:real:00 4 -2 activism%1:09:00:: 1 -2 active%3:00:07:: 6 -2 active%3:00:06:: 7 -2 activate%2:30:00:: 2 -2 act_on%2:41:01:: 2 -2 across_the_nation%4:02:00:: 1 -2 acquainted_with%5:00:00:familiar:00 1 -2 acquaintance%1:09:00:: 1 -2 acknowledge%2:32:07:: 4 -2 acknowledge%2:32:02:: 5 -2 ache%2:39:00:: 3 -2 ache%1:26:00:: 1 -2 ace%1:18:00:: 3 -2 accustom%2:30:00:: 1 -2 accusing%5:00:00:inculpatory:00 1 -2 accuracy%1:07:03:: 2 -2 accumulation%1:22:00:: 1 -2 accumulated%5:00:00:concentrated:00 1 -2 accrue%2:30:00:: 1 -2 accretion%1:22:00:: 1 -2 accredit%2:41:00:: 1 -2 accompanying%5:00:00:related:02 1 -2 accommodate%2:42:03:: 4 -2 access%1:07:01:: 2 -2 access%1:07:00:: 1 -2 access%1:06:00:: 3 -2 accepting%5:00:00:acceptive:00 1 -2 accepted%5:00:00:acknowledged:00 1 -2 acceptable%3:00:00:: 1 -2 accept%2:31:03:: 7 -2 accentuate%2:32:00:: 1 -2 accentuate%2:30:00:: 2 -2 accent%2:30:00:: 1 -2 accelerator%1:06:02:: 1 -2 acceleration%1:07:00:: 1 -2 acceleration%1:04:00:: 2 -2 accelerating%5:00:00:fast:01 1 -2 accelerated%5:00:00:expedited:00 1 -2 academic%5:00:00:scholarly:00 3 -2 academic%1:18:00:: 1 -2 abuse%2:30:00:: 2 -2 abundance%1:07:00:: 1 -2 abstraction%1:09:02:: 3 -2 abstraction%1:06:00:: 4 -2 abstracted%5:00:00:separate:00 1 -2 abstract_expressionism%1:06:00:: 1 -2 abstract%1:09:00:: 1 -2 absorb%2:30:00:: 5 -2 absent%2:30:00:: 1 -2 abrupt%5:00:00:sudden:00 2 -2 abroad%4:02:02:: 2 -2 abraham_lincoln%1:18:00:: 1 -2 about-face%2:38:00:: 1 -2 about%4:02:03:: 6 -2 abound%2:42:00:: 1 -2 abolitionist%1:18:00:: 1 -2 abo%1:18:00:: 1 -2 ablation%1:04:00:: 1 -2 abiding%5:00:00:permanent:00 1 -2 abide_by%2:41:00:: 1 -2 abide%2:42:01:: 1 -2 abdomen%1:08:00:: 1 -2 abbot%1:18:00:: 1 -2 a_people%1:14:00:: 1 -2 6%1:23:00:: 1 -2 30th%5:00:00:ordinal:00 1 -2 21%1:23:00:: 1 -2 1st%5:00:00:ordinal:00 1 -2 19%1:23:00:: 1 -2 18th%5:00:00:ordinal:00 1 -2 13th%5:00:00:ordinal:00 1 -2 11th%5:00:00:ordinal:00 1 -1 zoning%1:04:00:: 1 -1 zone%1:15:00:: 1 -1 zombie%1:18:00:: 1 -1 zodiacal%3:01:00:: 1 -1 zloty%1:23:00:: 1 -1 zip%2:35:00:: 1 -1 zionist%1:18:00:: 1 -1 zionism%1:10:00:: 1 -1 zinc_cadmium_sulfide%1:27:00:: 1 -1 zest%1:12:00:: 1 -1 zero_in%2:33:12:: 1 -1 zero%5:00:02:ordinal:00 2 -1 zero%5:00:00:no(a):00 3 -1 zenith%1:15:01:: 1 -1 yugoslavia%1:15:00:: 1 -1 yucca%1:20:00:: 1 -1 youth%1:28:01:: 5 -1 youth%1:07:00:: 6 -1 youngish%5:00:00:young:00 1 -1 young_lady%1:18:00:: 1 -1 young%5:00:00:early:02 2 -1 yonder%5:00:00:distant:01 1 -1 yokel-like%5:00:00:stupid:00 1 -1 yoke%1:06:01:: 1 -1 yoga%1:09:00:: 1 -1 yield_up%2:40:00:: 1 -1 yield%2:38:00:: 6 -1 yield%2:36:01:: 7 -1 yield%2:32:01:: 8 -1 yield%1:21:00:: 2 -1 yield%1:06:00:: 3 -1 yesteryear%1:28:00:: 1 -1 yen%1:12:00:: 1 -1 yelping%1:11:00:: 1 -1 yelp%1:11:00:: 1 -1 yellowish_brown%1:07:00:: 1 -1 yellow_pine%1:20:00:: 1 -1 yellow_ochre%1:27:00:: 1 -1 yellow-brown%5:00:00:chromatic:00 1 -1 yellow%5:00:00:old:01 3 -1 yelling%1:10:00:: 1 -1 yelled%5:00:00:loud:00 1 -1 yearningly%4:02:00:: 1 -1 year-round%3:00:00:: 1 -1 year-end%1:28:00:: 1 -1 year%1:14:00:: 4 -1 yaws%1:26:00:: 1 -1 yawning%5:00:00:open:02 1 -1 yawn%1:04:00:: 1 -1 yardstick%1:10:00:: 1 -1 yarder%1:07:00:: 1 -1 yard%1:15:00:: 3 -1 yap%2:32:00:: 1 -1 yacht%1:06:00:: 1 -1 xylophone%1:06:00:: 1 -1 xenon%1:27:00:: 1 -1 x-ray_machine%1:06:00:: 1 -1 x-ray_film%1:06:00:: 1 -1 wry%5:00:00:humorous:00 1 -1 wrought_iron%1:27:00:: 1 -1 wrongly%4:02:03:: 1 -1 wrongly%4:02:00:: 2 -1 wrongdoing%1:07:00:: 1 -1 wrong%4:02:00:: 1 -1 wrong%2:41:00:: 1 -1 writings%1:10:01:: 1 -1 writing_paper%1:27:00:: 1 -1 writing_desk%1:06:01:: 1 -1 writhed%5:00:00:crooked:01 1 -1 write_up%2:32:02:: 1 -1 write_off%2:36:00:: 2 -1 write%2:36:03:: 9 -1 writ_large%5:00:00:obvious:00 1 -1 wrist_watch%1:06:00:: 1 -1 wrinkle%2:35:00:: 2 -1 wring%2:35:01:: 1 -1 wring%2:35:00:: 2 -1 wretchedness%1:26:00:: 1 -1 wretch%1:18:01:: 1 -1 wretch%1:18:00:: 2 -1 wrestling%1:04:01:: 1 -1 wrestling%1:04:00:: 2 -1 wrestler%1:18:00:: 1 -1 wrestle%2:32:00:: 2 -1 wrenching%5:00:00:painful:00 1 -1 wreckage%1:06:00:: 1 -1 wreck%1:26:00:: 1 -1 wreathe%2:38:00:: 1 -1 wreak%2:36:00:: 1 -1 wrathfully%4:02:00:: 1 -1 wrapper%1:06:01:: 1 -1 wrapped_up%5:00:00:committed:00 1 -1 wrapped%5:00:00:attentive:00 2 -1 wrap_up%2:35:00:: 1 -1 wrap%2:35:01:: 3 -1 wrap%1:06:00:: 1 -1 wrack%2:35:00:: 1 -1 wrack%1:05:01:: 1 -1 woven%3:00:00:: 1 -1 wounded%5:00:02:injured:00 2 -1 wounded%1:14:00:: 1 -1 wound_up%5:00:00:tense:03 1 -1 wound_tumor_virus%1:05:00:: 1 -1 worthy%5:00:00:eligible:00 2 -1 worthlessness%1:07:00:: 1 -1 worthless%3:00:00:: 1 -1 worsted%1:06:00:: 1 -1 worshipper%1:18:00:: 1 -1 worship%2:42:00:: 3 -1 worsen%2:30:00:: 1 -1 worse%1:07:00:: 1 -1 worriment%1:07:00:: 1 -1 worriedly%4:02:00:: 1 -1 worldwide%5:00:00:intercontinental:00 1 -1 worldly_belongings%1:21:00:: 1 -1 worldly%3:00:00:: 1 -1 world_premiere%1:10:00:: 1 -1 world_organization%1:14:00:: 1 -1 world_court%1:14:00:: 1 -1 world_council%1:14:00:: 1 -1 world_affairs%1:04:00:: 1 -1 world-shattering%5:00:00:significant:00 1 -1 world-shaking%5:00:00:significant:00 1 -1 world%5:00:00:international:00 1 -1 workweek%1:28:00:: 1 -1 worktable%1:06:00:: 1 -1 worksheet%1:10:00:: 1 -1 works_program%1:09:00:: 1 -1 works%1:26:00:: 2 -1 works%1:04:00:: 3 -1 workmanlike%5:00:00:competent:00 1 -1 workings%1:06:01:: 1 -1 working_girl%1:18:00:: 1 -1 working-class%5:00:00:lower-class:00 1 -1 working%5:00:02:operative:00 5 -1 working%5:00:00:impermanent:00 3 -1 working%5:00:00:functioning:00 4 -1 workboard%1:06:00:: 1 -1 work_up%2:29:00:: 2 -1 work_through%2:34:00:: 1 -1 work_table%1:06:00:: 1 -1 work_papers%1:10:00:: 1 -1 work_in_progress%1:06:00:: 1 -1 work_force%1:14:00:: 1 -1 work_camp%1:06:00:: 1 -1 work-study_program%1:04:00:: 1 -1 work%2:32:00:: 16 -1 wordy%5:00:02:prolix:00 1 -1 wordlessly%4:02:00:: 1 -1 wording%1:10:00:: 1 -1 word_of_god%1:10:00:: 2 -1 word_of_farewell%1:10:00:: 1 -1 word_of_advice%1:10:00:: 1 -1 word%1:10:01:: 6 -1 woolly%5:00:00:soft:01 1 -1 woolly%5:00:00:confused:00 2 -1 woolgather%2:36:00:: 1 -1 woolen%3:01:00:: 1 -1 woolen%1:06:00:: 1 -1 woodshed%1:06:00:: 1 -1 woodgraining%1:07:00:: 1 -1 woodgrain%1:07:00:: 1 -1 wooded%3:00:00:: 1 -1 woodcarver%1:18:00:: 1 -1 woo%2:41:00:: 2 -1 wonderworking%5:00:00:extraordinary:00 1 -1 wonderfulness%1:07:00:: 1 -1 wonder_drug%1:06:00:: 1 -1 won-lost_record%1:10:00:: 1 -1 womb-to-tomb%5:00:00:long:02 1 -1 womb%1:08:00:: 1 -1 woman%1:18:01:: 2 -1 wolflike%3:01:00:: 1 -1 wolf%1:05:00:: 1 -1 woefully%4:02:00:: 1 -1 wobbly%5:00:00:unstable:00 1 -1 wobbling%5:00:00:unsteady:00 1 -1 wittingly%4:02:00:: 1 -1 witness%1:18:02:: 4 -1 without_fear%4:02:01:: 1 -1 without_doubt%4:02:01:: 1 -1 without_delay%4:02:00:: 1 -1 within_reason%4:02:00:: 1 -1 withholding%1:21:00:: 2 -1 withholding%1:04:01:: 3 -1 withhold%2:40:01:: 2 -1 withering%5:00:00:destructive:00 1 -1 withered%5:00:00:thin:03 1 -1 wither%2:30:00:: 1 -1 withe%1:06:00:: 1 -1 withdrawal%1:10:00:: 1 -1 withdrawal%1:04:03:: 2 -1 withdrawal%1:04:00:: 3 -1 withdraw%2:32:01:: 5 -1 withdraw%2:30:00:: 6 -1 withal%4:02:01:: 1 -1 with_wisdom%4:02:00:: 1 -1 with_that%4:02:03:: 1 -1 with_sympathy%4:02:00:: 1 -1 with_pride%4:02:00:: 1 -1 with_patience%4:02:00:: 1 -1 with_nostalgia%4:02:00:: 1 -1 with_impatience%4:02:00:: 1 -1 with_great_care%4:02:00:: 1 -1 with_boldness%4:02:00:: 1 -1 with_authority%4:02:00:: 1 -1 with_attention%4:02:00:: 1 -1 wisp%1:14:01:: 1 -1 wishing%1:12:00:: 1 -1 wisenheimer%1:18:00:: 1 -1 wise_up%2:31:00:: 1 -1 wise_man%1:18:00:: 1 -1 wise_guy%1:18:00:: 1 -1 wisdom%1:07:01:: 4 -1 wired%3:00:00:: 1 -1 wire%2:35:00:: 3 -1 wire%1:15:00:: 3 -1 wire%1:10:00:: 4 -1 wipe_up%2:35:00:: 1 -1 wipe_out%2:34:00:: 1 -1 wipe_out%2:30:00:: 2 -1 wipe%2:30:00:: 2 -1 wintry%3:00:00:: 1 -1 wintertime%1:28:00:: 1 -1 winter_solstice%1:28:00:: 1 -1 winnow%2:35:05:: 1 -1 winnipeg%1:15:00:: 1 -1 winning%1:04:00:: 1 -1 wink%2:29:00:: 3 -1 wink%1:28:00:: 1 -1 wingback%1:18:00:: 1 -1 wing%1:14:01:: 5 -1 wineglass%1:06:00:: 1 -1 windsor_green%1:27:00:: 1 -1 windowsill%1:06:00:: 1 -1 window_shade%1:06:00:: 1 -1 window_box%1:06:00:: 1 -1 window-washing%1:04:00:: 1 -1 window%1:17:00:: 4 -1 windmill%1:06:01:: 1 -1 winding-clothes%1:06:00:: 1 -1 winding%5:00:00:indirect:00 2 -1 winding%5:00:00:crooked:01 1 -1 windfall%1:21:00:: 1 -1 windbreak%1:06:00:: 1 -1 windblown%5:00:00:crooked:01 1 -1 windbag%1:18:00:: 1 -1 wind_up%2:38:00:: 3 -1 wind_up%2:37:00:: 4 -1 wind%1:19:01:: 2 -1 wind%1:04:01:: 3 -1 wince%2:29:00:: 2 -1 wily%5:00:00:artful:00 1 -1 wilt%2:30:01:: 1 -1 wilsonian%3:01:00:: 1 -1 willy-nilly%4:02:01:: 2 -1 willpower%1:07:00:: 1 -1 willing%1:04:00:: 1 -1 william_james%1:18:00:: 1 -1 willful%5:00:00:voluntary:01 1 -1 wilfully%4:02:00:: 1 -1 wile%1:04:00:: 1 -1 wildness%1:12:00:: 1 -1 wildness%1:07:02:: 2 -1 wildcatter%1:18:00:: 1 -1 wildcat%1:18:00:: 2 -1 wildcat%1:05:00:: 3 -1 wild_man%1:18:00:: 1 -1 wild_horse%1:05:00:: 1 -1 wild_dog%1:05:00:: 1 -1 wild%5:00:00:uncontrolled:00 6 -1 wild%5:00:00:intense:00 5 -1 wild%4:02:02:: 1 -1 wig%1:06:00:: 1 -1 wifely%3:00:00:: 1 -1 widowhood%1:28:00:: 1 -1 widower%1:18:00:: 1 -1 widen%2:30:05:: 2 -1 widen%2:30:03:: 3 -1 widely%4:02:02:: 3 -1 wide_screen%1:06:00:: 1 -1 wide-screen%5:00:00:wide:00 1 -1 wide-ranging%5:00:00:large:00 1 -1 wide-open%5:00:00:open:01 1 -1 wide-cut%5:00:00:ample:00 1 -1 wide%5:00:00:large:00 4 -1 wide%4:02:03:: 2 -1 wickedness%1:04:00:: 1 -1 wickedly%4:02:00:: 1 -1 wicked%5:00:00:unrighteous:00 2 -1 wicked%5:00:00:intense:00 3 -1 whorl%1:25:00:: 1 -1 whoop_it_up%2:41:00:: 1 -1 wholesaler%1:18:00:: 1 -1 whole_number%1:23:00:: 1 -1 whole_lot%1:23:00:: 1 -1 whole-word_method%1:04:00:: 1 -1 whole-souled%5:00:00:sincere:00 1 -1 whole%4:02:00:: 1 -1 whodunit%1:10:00:: 1 -1 whiz%1:18:00:: 1 -1 whitewashed%5:00:00:painted:00 1 -1 whiteness%1:07:00:: 1 -1 whiten%2:30:00:: 1 -1 white_violet%1:20:00:: 1 -1 white_house%1:14:00:: 1 -1 white_heat%1:07:00:: 1 -1 white_flag%1:06:00:: 1 -1 whit%1:23:00:: 1 -1 whistling%1:11:00:: 1 -1 whistling%1:04:00:: 2 -1 whistle%2:38:01:: 4 -1 whistle%2:32:01:: 5 -1 whisky_on_the_rocks%1:13:00:: 1 -1 whiskers%1:08:00:: 1 -1 whiskered%5:00:00:unshaven:00 1 -1 whisk_by%2:38:00:: 1 -1 whisk_away%2:35:00:: 1 -1 whisk%2:38:00:: 1 -1 whirling%5:00:00:moving:02 1 -1 whirl%2:38:04:: 4 -1 whirl%2:38:00:: 3 -1 whirl%1:11:00:: 1 -1 whir%2:39:00:: 1 -1 whir%1:11:00:: 1 -1 whipping%5:00:00:spirited:00 1 -1 whipping%1:04:00:: 1 -1 whip_through%2:41:00:: 1 -1 whip_hand%1:07:00:: 1 -1 whining%5:00:00:noisy:00 1 -1 whine%2:38:00:: 1 -1 whine%2:32:01:: 2 -1 whimper%2:29:00:: 1 -1 whim%1:12:00:: 1 -1 while_away%2:42:00:: 1 -1 whig%1:18:00:: 1 -1 whiff%1:19:00:: 1 -1 whet%2:39:00:: 1 -1 whence%4:02:00:: 1 -1 when%4:02:00:: 1 -1 wheezing%5:00:00:unhealthy:00 1 -1 wheeze%1:04:00:: 1 -1 wheels%1:07:00:: 1 -1 wheelchair%1:06:00:: 1 -1 wheedle%2:32:00:: 1 -1 wheat%1:20:00:: 1 -1 what_is_more%4:02:00:: 1 -1 wharf%1:06:00:: 1 -1 whale%1:18:00:: 1 -1 wetting%1:04:00:: 1 -1 wetness%1:26:00:: 1 -1 wet%1:26:00:: 1 -1 westwards%4:02:00:: 1 -1 westerner%1:18:00:: 1 -1 western%5:00:00:west:00 4 -1 western%1:10:00:: 1 -1 westerly%5:00:02:west:00 1 -1 westerly%4:02:00:: 1 -1 west_side%1:15:00:: 1 -1 west_indies%1:15:00:: 1 -1 west_berliner%1:18:00:: 1 -1 weltanschauung%1:09:00:: 1 -1 well-wishing%1:10:00:: 1 -1 well-rounded%5:00:00:comprehensive:00 1 -1 well-read%5:00:00:informed:00 1 -1 well-nigh%4:02:00:: 1 -1 well-meaning%5:00:00:amicable:00 1 -1 well-made%5:00:00:superior:02 1 -1 well-known%5:00:00:familiar:00 2 -1 well-kept%5:00:00:tidy:00 2 -1 well-defined%5:00:00:distinct:00 1 -1 well-chosen%5:00:00:felicitous:00 1 -1 well-bound%5:00:00:bound:02 1 -1 well-balanced%5:00:00:balanced:00 1 -1 well%4:02:14:: 8 -1 well%1:06:03:: 2 -1 welfare_case%1:18:00:: 1 -1 welfare%1:07:00:: 2 -1 weld%2:35:00:: 1 -1 weld%2:30:00:: 2 -1 welcoming%5:00:01:hospitable:02 1 -1 welcome%1:26:00:: 1 -1 weirdly%4:02:00:: 1 -1 weighting%1:23:00:: 1 -1 weighted%5:00:00:heavy:02 1 -1 weight_gaining%1:04:00:: 1 -1 weight_down%2:35:00:: 1 -1 weight%2:35:00:: 1 -1 weight%2:31:00:: 2 -1 weigh_anchor%2:35:00:: 1 -1 weigh%2:42:03:: 4 -1 weeping%5:00:00:sorrowful:00 1 -1 weeping%1:04:00:: 1 -1 weekday%1:28:00:: 1 -1 week_from_monday%1:28:00:: 1 -1 week_by_week%4:02:00:: 1 -1 week_after_week%4:02:00:: 1 -1 week%1:28:02:: 3 -1 weeds%1:06:00:: 1 -1 wedge_heel%1:06:00:: 1 -1 wedge-shaped%5:00:00:simple:01 1 -1 wedge%2:35:01:: 1 -1 wedge%1:25:00:: 1 -1 wedding_night%1:28:00:: 1 -1 wedding_ceremony%1:11:00:: 1 -1 wedding%1:04:00:: 2 -1 web%1:17:00:: 1 -1 web%1:06:00:: 2 -1 web%1:05:01:: 3 -1 weave%2:38:01:: 3 -1 weatherstrip%2:30:00:: 1 -1 weather_conditions%1:26:00:: 1 -1 weather-beaten%5:00:00:tough:02 1 -1 weather%5:00:00:windward:00 1 -1 wearying%5:00:00:effortful:00 1 -1 weary%2:29:00:: 1 -1 wearisome%5:00:00:uninteresting:00 1 -1 wearied%5:00:00:tired:00 1 -1 wearer%1:18:00:: 1 -1 wear_thin%2:30:00:: 1 -1 wear_out%2:35:00:: 2 -1 wear_out%2:30:00:: 3 -1 wear_off%2:30:00:: 1 -1 wear_down%2:29:00:: 1 -1 wear%2:42:00:: 6 -1 weapons_carrier%1:06:00:: 1 -1 weaning%1:04:00:: 1 -1 wean%2:34:00:: 1 -1 wealth%1:21:02:: 3 -1 wealth%1:21:00:: 4 -1 weakening%1:11:00:: 1 -1 weakened%5:00:00:impaired:00 1 -1 weaken%2:41:00:: 3 -1 weaken%2:30:03:: 4 -1 weak_point%1:07:00:: 1 -1 weak_part%1:07:00:: 1 -1 weak%5:00:00:unstressed:00 4 -1 weak%5:00:00:human:00 5 -1 wayside%1:06:00:: 1 -1 ways%4:02:00:: 1 -1 ways%1:06:00:: 2 -1 waylay%2:33:00:: 1 -1 way%1:09:01:: 11 -1 waxlike%5:00:00:colorless:02 1 -1 waxing%1:04:00:: 1 -1 waxen%3:01:00:: 1 -1 waxed%3:00:00:: 1 -1 wax%2:30:00:: 2 -1 wavy%5:00:00:uneven:00 2 -1 waver%2:42:02:: 2 -1 waver%2:38:03:: 3 -1 waver%2:38:01:: 4 -1 wavelength%1:09:00:: 2 -1 wave_off%2:30:00:: 1 -1 wave%1:10:01:: 5 -1 wave%1:08:00:: 6 -1 wattle%1:08:00:: 1 -1 wattle%1:06:00:: 2 -1 watery%5:00:02:wet:01 1 -1 watery%5:00:01:wet:01 2 -1 watery%5:00:00:tearful:00 3 -1 waterway%1:17:00:: 1 -1 watershed%1:15:00:: 1 -1 waterproofing%1:04:00:: 1 -1 waterproof%5:00:00:tight:02 1 -1 watermark%1:15:00:: 1 -1 watering_place%1:15:00:: 1 -1 waterfront%1:15:00:: 1 -1 water_vapor%1:27:00:: 1 -1 water_tower%1:06:00:: 1 -1 water_sport%1:04:00:: 1 -1 water_ski%2:38:00:: 1 -1 water_right%1:07:00:: 1 -1 water_project%1:04:00:: 1 -1 water_program%1:04:00:: 1 -1 water_main%1:06:00:: 1 -1 water_line%1:15:00:: 1 -1 water_level%1:07:00:: 1 -1 water_fountain%1:06:00:: 1 -1 water_down%2:30:00:: 1 -1 water_development%1:04:00:: 1 -1 water_buffalo%1:05:00:: 1 -1 water-wash%2:35:00:: 1 -1 water-skiing%1:04:00:: 1 -1 water%1:08:03:: 5 -1 watchman%1:18:00:: 1 -1 watchmaker%1:18:00:: 1 -1 watchfully%4:02:00:: 1 -1 watchful%5:00:00:alert:00 1 -1 watcher%1:18:02:: 1 -1 watch_over%2:41:00:: 1 -1 watch%2:39:01:: 5 -1 wasting_time%1:04:00:: 1 -1 wasted%5:00:00:worthless:00 1 -1 wasted%5:00:00:lost:01 2 -1 waste_of_time%1:04:00:: 1 -1 waste_material%1:27:00:: 1 -1 waste%1:07:00:: 3 -1 washup%1:04:00:: 1 -1 washington%1:18:00:: 4 -1 washbowl%1:06:02:: 1 -1 washbasin%1:06:02:: 1 -1 wash_up%2:29:00:: 1 -1 wash_out%2:41:00:: 1 -1 wash_out%2:35:01:: 2 -1 wash_down%2:30:00:: 2 -1 wart%1:25:00:: 1 -1 warped%5:00:00:crooked:01 1 -1 warp%2:30:00:: 2 -1 warmth%1:12:00:: 2 -1 warmth%1:07:01:: 3 -1 warmongering%1:09:00:: 1 -1 warmly%4:02:00:: 1 -1 warming%5:00:00:warm:01 1 -1 warmed%5:00:00:warm:01 1 -1 warm_up%2:30:00:: 3 -1 warm_up%2:29:01:: 4 -1 warm_up%2:29:00:: 5 -1 warm-up%1:04:00:: 1 -1 warm-toned%5:00:00:emotional:00 1 -1 warm%5:00:00:loving:00 4 -1 warm%2:30:01:: 2 -1 warhorse%1:06:00:: 1 -1 warfare%1:04:02:: 2 -1 wares%1:06:00:: 1 -1 warehousing%1:04:00:: 1 -1 wardroom%1:06:00:: 1 -1 wardrobe%1:06:01:: 2 -1 ward%1:06:00:: 3 -1 warble%2:32:00:: 1 -1 war_god%1:18:00:: 1 -1 war_department%1:14:00:: 1 -1 war_crime%1:04:00:: 1 -1 war-ridden%5:00:00:unpeaceful:00 1 -1 war%1:04:02:: 3 -1 want%1:26:01:: 2 -1 want%1:17:00:: 3 -1 want%1:12:00:: 4 -1 waning%1:11:00:: 1 -1 wangle%2:41:00:: 1 -1 wane%2:30:00:: 2 -1 wanderer%1:18:00:: 1 -1 wander%2:41:00:: 2 -1 wand%1:06:00:: 1 -1 wan%5:00:00:weak:00 1 -1 walrus%1:05:00:: 1 -1 walnut_tree%1:20:00:: 1 -1 walnut%1:13:00:: 1 -1 wallow%2:38:02:: 3 -1 walloping%5:00:00:large:00 1 -1 wallflower%1:20:02:: 1 -1 wall_up%2:35:00:: 1 -1 wall_tent%1:06:00:: 1 -1 wall_plug%1:06:00:: 1 -1 wall%1:08:00:: 3 -1 walkover%1:04:01:: 1 -1 walkout%1:04:00:: 1 -1 walking_stick%1:06:00:: 1 -1 walking%5:00:00:close:01 1 -1 walk_out%2:38:00:: 2 -1 walk_on_air%2:37:00:: 1 -1 walk_off%2:40:00:: 1 -1 walk_of_life%1:04:00:: 1 -1 walk_about%2:38:00:: 1 -1 walk-up%1:06:01:: 1 -1 walk-up%1:06:00:: 2 -1 walk-to%5:00:00:close:01 1 -1 walk%2:38:03:: 4 -1 walk%2:33:01:: 5 -1 walk%1:06:00:: 5 -1 walk%1:04:02:: 6 -1 waking_up%1:04:00:: 1 -1 waive%2:41:00:: 1 -1 waitress%1:18:00:: 1 -1 waiting_list%1:10:00:: 1 -1 wait_on%2:41:00:: 1 -1 wainscoted%5:00:00:adorned:00 1 -1 wailing%1:04:01:: 1 -1 wailful%5:00:00:sorrowful:00 1 -1 wagon_wheel%1:06:00:: 1 -1 wagon%1:06:02:: 2 -1 waggle%2:38:00:: 1 -1 wager%1:04:00:: 1 -1 wage_setter%1:26:00:: 1 -1 wag%1:18:00:: 1 -1 waft%2:38:00:: 1 -1 waffle%1:13:00:: 1 -1 wafer%1:27:00:: 1 -1 wads%1:23:00:: 1 -1 wad%2:35:01:: 1 -1 wacky%5:00:00:foolish:00 1 -1 vulpine%3:01:00:: 1 -1 voyager%1:18:00:: 1 -1 vowel_sound%1:10:00:: 1 -1 vouchsafe%2:40:00:: 1 -1 vouch%2:32:01:: 1 -1 votive%5:00:00:consecrated:00 1 -1 voting_trust%1:21:00:: 1 -1 voting_system%1:09:00:: 1 -1 voting_right%1:07:00:: 1 -1 voting_precinct%1:15:00:: 1 -1 vote_of_confidence%1:10:00:: 1 -1 vote_in%2:41:00:: 1 -1 vote_down%2:41:00:: 1 -1 vote%2:41:11:: 3 -1 vote%1:07:00:: 3 -1 voodoo%1:06:00:: 1 -1 vomiting%1:04:00:: 1 -1 vomit%2:29:00:: 1 -1 volunteer%1:18:00:: 2 -1 voluntary%3:00:01:: 1 -1 volumetrically%4:02:00:: 1 -1 volumetric%3:01:00:: 1 -1 volume%1:07:02:: 6 -1 voltmeter%1:06:00:: 1 -1 voltaic_cell%1:06:00:: 1 -1 volleyball%1:04:00:: 1 -1 volley%1:04:01:: 2 -1 volition%1:09:00:: 1 -1 volcano%1:17:01:: 1 -1 volcanic_eruption%1:11:00:: 1 -1 void%5:00:00:invalid:00 1 -1 voiced%3:00:00:: 1 -1 vociferously%4:02:00:: 1 -1 vocationally%4:02:00:: 1 -1 vocational_training%1:09:00:: 1 -1 vocational_rehabilitation_program%1:09:00:: 1 -1 vocalize%2:32:02:: 1 -1 vocalist%1:18:00:: 1 -1 vocalic%3:00:02:: 1 -1 vocal_cord%1:08:00:: 1 -1 vocal%5:00:02:voiced:00 3 -1 vocal%5:00:00:communicative:00 4 -1 vocal%3:01:02:: 1 -1 vocal%3:01:00:: 2 -1 vocabulary%1:09:01:: 3 -1 viyella%1:06:00:: 1 -1 vividness%1:07:01:: 1 -1 vitamin_e%1:27:00:: 1 -1 vitamin_c%1:27:00:: 1 -1 vitality%1:26:00:: 2 -1 visualization%1:09:00:: 1 -1 visual_space%1:09:00:: 1 -1 vista%1:09:00:: 1 -1 visored%5:00:00:equipped:00 1 -1 visiting%5:00:00:impermanent:00 1 -1 visit%2:32:00:: 6 -1 vision%1:11:00:: 5 -1 visibly%4:02:01:: 2 -1 visibility%1:07:00:: 1 -1 viselike%5:00:00:tight:01 1 -1 viscometer%1:06:00:: 1 -1 visceral%3:01:00:: 1 -1 visage%1:08:00:: 1 -1 visage%1:07:00:: 2 -1 vis-a-vis%4:02:00:: 1 -1 virulent%5:00:00:toxic:00 1 -1 virtuoso%5:00:00:skilled:00 1 -1 virtuoso%1:18:00:: 1 -1 virtual%5:00:00:realistic:00 1 -1 virile%5:00:00:strong:00 1 -1 virile%5:00:00:masculine:01 2 -1 virginity%1:26:00:: 1 -1 virginian%1:18:00:: 1 -1 virginia_creeper%1:20:00:: 1 -1 violet%1:20:00:: 1 -1 violet%1:07:00:: 2 -1 violent%5:00:03:intense:00 3 -1 violent%5:00:00:unnatural:00 2 -1 violation%1:04:03:: 4 -1 violate%2:35:00:: 3 -1 vinyl%1:27:00:: 1 -1 vintage%1:13:00:: 1 -1 vineyard%1:06:00:: 1 -1 vinegar%1:13:00:: 1 -1 vindictive%5:00:00:malicious:00 2 -1 vindicate%2:32:00:: 1 -1 villainous%5:00:00:wicked:00 1 -1 villain%1:18:01:: 2 -1 village%1:15:01:: 3 -1 vile%5:00:00:inclement:02 2 -1 vile%5:00:00:evil:00 1 -1 vigorous%5:00:00:robust:00 2 -1 vigor%1:07:02:: 1 -1 vignette%1:10:00:: 1 -1 vigilantism%1:04:00:: 1 -1 viewers%1:14:00:: 1 -1 viewer%1:18:01:: 1 -1 viet_nam%1:15:00:: 1 -1 viennese%3:01:00:: 1 -1 vienna%1:15:00:: 1 -1 video%1:10:00:: 1 -1 video%1:06:00:: 2 -1 victrola%1:06:00:: 1 -1 victoriously%4:02:00:: 1 -1 victor%1:18:01:: 1 -1 victimize%2:41:00:: 2 -1 vicious_cycle%1:22:00:: 1 -1 vicious%5:00:00:malevolent:00 3 -1 vicarious%5:00:00:secondary:01 1 -1 vicar%1:18:00:: 1 -1 vibrionic%3:01:00:: 1 -1 vibration%1:04:00:: 1 -1 vibrate%2:38:01:: 2 -1 vibrate%2:38:00:: 1 -1 vibrancy%1:07:00:: 1 -1 viand%1:13:02:: 1 -1 viable%5:00:00:possible:00 1 -1 viability%1:07:00:: 1 -1 vexation%1:12:00:: 1 -1 vex%2:37:00:: 1 -1 veto%2:41:00:: 1 -1 veto%2:32:00:: 2 -1 veterinary%3:01:00:: 1 -1 vet%1:18:00:: 1 -1 vestige%1:10:00:: 1 -1 vest_pocket%1:06:00:: 1 -1 vesicular%3:01:00:: 1 -1 very_much_like%4:02:00:: 1 -1 very_loudly%4:02:00:: 1 -1 vertigo%1:26:00:: 1 -1 vertebrate%1:05:00:: 1 -1 vertebral_column%1:08:00:: 1 -1 version%1:10:02:: 3 -1 verse%1:10:01:: 3 -1 versatility%1:09:00:: 1 -1 versatile%5:00:00:flexible:02 1 -1 vernal%5:00:00:young:00 1 -1 vermouth%1:13:00:: 1 -1 vermilion%5:00:00:chromatic:00 1 -1 veritable%5:00:00:typical:00 1 -1 veritable%5:00:00:genuine:00 2 -1 verisimilitude%1:07:00:: 1 -1 verification%1:09:00:: 1 -1 veridical%5:00:00:realistic:00 1 -1 verge%1:25:00:: 1 -1 verge%1:07:00:: 2 -1 verdict%1:04:00:: 1 -1 verandah%1:06:00:: 1 -1 veracity%1:07:00:: 1 -1 venus%1:18:00:: 2 -1 venture%1:04:01:: 3 -1 ventilation%1:06:00:: 2 -1 ventilating_system%1:06:00:: 1 -1 ventilate%2:30:00:: 1 -1 vent%1:05:00:: 2 -1 venice%1:15:00:: 1 -1 venezuela%1:15:00:: 1 -1 venerate%2:37:00:: 1 -1 venerable%5:00:00:old:02 1 -1 venerable%5:00:00:honorable:00 2 -1 vending%1:04:00:: 1 -1 velours%1:06:00:: 1 -1 velour%1:06:00:: 1 -1 vellum%1:27:01:: 1 -1 veined%5:00:00:patterned:00 1 -1 vein%2:36:00:: 1 -1 vehemence%1:07:01:: 1 -1 vegetable_patch%1:06:00:: 1 -1 vault%1:06:01:: 1 -1 variety%1:14:00:: 4 -1 variegated%5:00:00:varied:00 1 -1 variation%1:09:01:: 4 -1 variation%1:06:00:: 5 -1 variant%5:00:00:different:00 1 -1 variant%1:11:00:: 1 -1 variable_resistor%1:06:00:: 1 -1 variable%5:00:00:adaptable:00 3 -1 var.%1:14:00:: 1 -1 vaquero%1:18:00:: 1 -1 vaporization%1:04:00:: 1 -1 vapor%1:22:00:: 2 -1 vantage_point%1:15:00:: 1 -1 vanquish%2:33:00:: 1 -1 vanishing_point%1:15:00:: 1 -1 vanishing%3:44:00:: 1 -1 vanguard%1:14:00:: 1 -1 vandalism%1:04:00:: 1 -1 vandal%1:18:00:: 1 -1 van_der_waal's_forces%1:19:00:: 1 -1 valve%1:06:01:: 2 -1 valueless%5:00:00:worthless:00 1 -1 valued%5:00:00:valuable:00 2 -1 value_statement%1:10:00:: 1 -1 value_orientation%1:09:00:: 1 -1 value%2:40:00:: 2 -1 value%2:31:01:: 3 -1 validity%1:07:00:: 2 -1 validation%1:04:00:: 1 -1 vagueness%1:07:00:: 1 -1 vague%5:00:00:indistinct:00 3 -1 vagabond%1:17:00:: 1 -1 vacuum_cleaner%1:06:00:: 1 -1 vacuolated%3:01:00:: 1 -1 vaccine%1:06:00:: 1 -1 vaccination%1:04:00:: 1 -1 vaccinating%1:04:00:: 1 -1 vacationing%1:04:00:: 1 -1 vacate%2:38:00:: 2 -1 vacantly%4:02:00:: 1 -1 vacant%5:00:01:empty:00 2 -1 vacancy%1:25:00:: 2 -1 v%1:23:00:: 1 -1 utterly%4:02:01:: 2 -1 utterance%1:10:00:: 1 -1 utter%5:00:00:absolute:00 2 -1 utter%2:32:00:: 3 -1 utopianism%1:09:00:: 1 -1 utmost%5:00:00:high:02 2 -1 utmost%1:07:00:: 1 -1 utility%1:07:00:: 2 -1 utility%1:04:00:: 3 -1 utilitarian%5:00:00:functional:00 1 -1 usher_in%2:30:00:: 1 -1 user%1:18:01:: 2 -1 uselessness%1:07:00:: 1 -1 uselessly%4:02:00:: 1 -1 used%5:00:02:misused:00 2 -1 used%5:00:00:old:01 3 -1 useable%5:00:00:serviceable:00 1 -1 use%2:41:00:: 4 -1 use%1:22:00:: 4 -1 use%1:04:02:: 6 -1 use%1:04:01:: 5 -1 usage%1:04:01:: 2 -1 us%1:15:00:: 1 -1 urn%1:06:00:: 1 -1 urine%1:27:00:: 1 -1 urinary%3:01:00:: 1 -1 urging%1:10:00:: 1 -1 urging%1:04:00:: 2 -1 urgently%4:02:00:: 1 -1 urgency%1:07:00:: 2 -1 urge%2:32:01:: 3 -1 urchin%1:18:00:: 1 -1 urbanize%2:30:00:: 1 -1 upward%5:00:00:ascending(a):00 2 -1 upstream%3:00:00:: 1 -1 upstate%4:02:00:: 1 -1 upside-down%5:00:00:turned:00 1 -1 upshot%1:19:00:: 1 -1 upset%5:00:00:unexpected:00 3 -1 upset%5:00:00:troubled:00 1 -1 upset%5:00:00:disorganized:00 2 -1 upset%1:26:00:: 1 -1 upset%1:04:01:: 2 -1 uproot%2:41:00:: 1 -1 uproar%1:11:00:: 2 -1 uprising%1:04:00:: 1 -1 upright%5:00:00:righteous:00 2 -1 upright%5:00:00:erect:00 3 -1 upraise%2:29:00:: 1 -1 uppermost%5:00:00:top(a):00 1 -1 uppercut%1:04:00:: 1 -1 upper_limit%1:15:00:: 2 -1 upper_hand%1:07:00:: 1 -1 upper-middle-class%5:00:00:middle-class:00 1 -1 upper-lower-class%5:00:00:lower-class:00 1 -1 upper-level%5:00:00:superior:01 1 -1 upon_one's_guard%5:00:00:wary:00 1 -1 uplifted%5:00:00:elated:00 1 -1 uplift%2:37:00:: 1 -1 upland%3:00:00:: 1 -1 upholster%2:40:00:: 1 -1 upgrade%2:30:00:: 2 -1 update%2:32:00:: 2 -1 upcoming%5:00:00:future:00 1 -1 upbeat%5:00:00:optimistic:00 1 -1 up_in_the_air%5:00:00:uncertain:01 1 -1 up%5:00:00:rising:00 2 -1 up%5:00:00:ascending(a):00 3 -1 unwritten%3:00:00:: 1 -1 unwrinkled%3:00:00:: 1 -1 unworthy%3:00:00:: 1 -1 unworn%3:00:00:: 1 -1 unwomanly%3:00:00:: 1 -1 unwitting%5:00:00:unintended:00 1 -1 unwisely%4:02:00:: 1 -1 unwind%2:35:06:: 1 -1 unwilling%3:00:00:: 1 -1 unwed%5:00:00:unmarried:00 1 -1 unwavering%5:00:00:resolute:00 1 -1 unwarranted%5:00:00:inexcusable:00 1 -1 unwanted%5:00:00:unwelcome:00 2 -1 unventilated%3:00:00:: 1 -1 unveil%2:35:00:: 1 -1 unvarying%5:00:00:invariable:00 1 -1 unutterably%4:02:00:: 1 -1 unusual%5:00:00:uncommon:00 3 -1 unusual%3:00:02:: 2 -1 unused%5:00:00:clean:01 1 -1 untruth%1:10:00:: 1 -1 untrue%5:00:00:false:00 1 -1 untried%5:00:00:inexperienced:00 1 -1 untrammeled%5:00:00:unlimited:00 1 -1 untraditional%3:00:00:: 1 -1 untoward%5:00:00:improper:00 1 -1 untouched%5:00:00:unmoved(p):00 4 -1 untouched%5:00:00:unaffected:00 2 -1 untouched%5:00:00:full:00 1 -1 untold%5:00:00:much(a):00 1 -1 unthinking%5:00:00:thoughtless:00 1 -1 unthematic%3:01:00:: 1 -1 unthaw%2:30:00:: 1 -1 untested%5:00:00:inexperienced:00 1 -1 untenable%5:00:00:unreasonable:00 1 -1 untellable%5:00:00:inexpressible:00 1 -1 unteach%2:32:00:: 1 -1 unsung%5:00:00:unvoiced:00 1 -1 unsung%5:00:00:inglorious:00 2 -1 unsuited%5:00:00:mismatched:00 1 -1 unsuitably%4:02:00:: 1 -1 unsuitable%5:00:00:unfit:02 1 -1 unstrung%5:00:00:discomposed:00 1 -1 unstilted%5:00:00:unaffected:01 1 -1 unstained%5:00:00:unpainted:00 2 -1 unstable%5:00:00:uneasy:00 3 -1 unstable%5:00:00:reactive:00 2 -1 unspoken%5:00:00:inarticulate:00 1 -1 unsolder%2:35:00:: 1 -1 unsold%3:00:00:: 1 -1 unsmilingly%4:02:00:: 1 -1 unsloped%5:00:00:vertical:00 1 -1 unsigned%3:00:00:: 1 -1 unshielded%5:00:00:unprotected:00 1 -1 unsheathe%2:35:00:: 1 -1 unshaven%3:00:00:: 1 -1 unshaved%3:00:00:: 1 -1 unsharpened%5:00:00:dull:01 1 -1 unshakable%5:00:00:resolute:00 1 -1 unsettled%3:00:02:: 1 -1 unservile%3:00:00:: 1 -1 unselfishness%1:07:00:: 1 -1 unselfish%3:00:00:: 1 -1 unselfconsciousness%1:09:00:: 1 -1 unselfconscious%5:00:00:unaffected:01 1 -1 unseeing%5:00:00:unperceptive:00 1 -1 unscrew%2:35:01:: 2 -1 unscramble%2:30:00:: 1 -1 unscathed%5:00:00:uninjured:00 1 -1 unsaid%5:00:00:implicit:00 1 -1 unruly%5:00:00:disorderly:00 1 -1 unrevealing%5:00:00:uncommunicative:00 1 -1 unrestricted%5:00:00:free:00 2 -1 unrestricted%3:00:00:: 1 -1 unrest%1:26:00:: 1 -1 unresponsive%3:00:00:: 1 -1 unreservedly%4:02:00:: 1 -1 unrequited%5:00:00:nonreciprocal:00 1 -1 unremarkable%5:00:00:ordinary:00 1 -1 unreliable%5:00:00:untrustworthy:00 2 -1 unreleased%5:00:00:suppressed:00 1 -1 unregretting%3:00:00:: 1 -1 unreflective%5:00:00:thoughtless:00 1 -1 unreeling%5:00:00:moving:02 1 -1 unredeemed%5:00:00:lost:02 1 -1 unrecognized%5:00:00:unacknowledged:00 1 -1 unrecognizable%5:00:00:unidentifiable:00 1 -1 unreasoning%5:00:00:irrational:00 1 -1 unreason%1:26:00:: 1 -1 unreality%1:07:00:: 1 -1 unrealistically%4:02:00:: 1 -1 unrealism%1:09:00:: 1 -1 unreal%3:00:00:: 1 -1 unready%3:00:00:: 1 -1 unravel%2:35:00:: 1 -1 unquestioningly%4:02:00:: 1 -1 unqualifiedly%4:02:00:: 1 -1 unpunished%3:00:00:: 1 -1 unpublished%3:00:00:: 1 -1 unprotesting%5:00:00:uncomplaining:00 1 -1 unprotected%3:00:00:: 1 -1 unpromising%5:00:00:inauspicious:00 1 -1 unprocurable%5:00:00:unavailable:00 1 -1 unproblematic%5:00:00:easy:01 1 -1 unpretentious%3:00:00:: 1 -1 unprepared%5:00:00:unequipped:00 2 -1 unpremeditated%5:00:00:unplanned:00 1 -1 unpredictably%4:02:00:: 1 -1 unpredictability%1:07:02:: 1 -1 unplumbed%5:00:00:deep:01 1 -1 unplowed%3:00:00:: 1 -1 unpleasantly%4:02:00:: 1 -1 unpicturesque%5:00:00:ugly:00 1 -1 unperformed%5:00:00:unstaged:00 1 -1 unpaved%3:00:00:: 1 -1 unpatriotic%3:00:00:: 1 -1 unparalleled%5:00:00:incomparable:00 1 -1 unpaintable%3:00:00:: 1 -1 unpack%2:35:00:: 1 -1 unorthodox%3:00:00:: 2 -1 unopposed%3:00:00:: 1 -1 unobtrusively%4:02:00:: 1 -1 unnumbered%5:00:00:incalculable:00 1 -1 unnourished%5:00:00:unsupported:02 1 -1 unnoticed%5:00:00:undetected:00 2 -1 unnoticed%3:00:00:: 1 -1 unneeded%3:00:00:: 1 -1 unmixed%5:00:00:absolute:00 1 -1 unmeritorious%5:00:00:unworthy:00 1 -1 unmated%3:00:00:: 1 -1 unmask%2:32:00:: 1 -1 unmanageably%4:02:00:: 1 -1 unmalicious%3:00:00:: 1 -1 unlucky%3:00:00:: 1 -1 unluckily%4:02:00:: 1 -1 unlovely%5:00:00:ugly:00 1 -1 unlock%2:35:01:: 2 -1 unlock%2:30:00:: 3 -1 unloaded%3:00:00:: 1 -1 unliterary%5:00:00:informal:02 1 -1 unlined%5:00:00:smooth:00 2 -1 unleash%2:35:02:: 3 -1 unleash%2:35:01:: 2 -1 unlawful%5:00:00:irregular:00 1 -1 unlash%2:35:00:: 1 -1 unlace%2:35:00:: 1 -1 unknown_quantity%1:11:00:: 1 -1 unknown%5:00:00:unsuspected:00 3 -1 unknown%5:00:00:inglorious:00 4 -1 unkind%3:00:00:: 1 -1 unjust%3:00:04:: 1 -1 university_student%1:18:00:: 1 -1 universalize%2:32:00:: 1 -1 universalistic%3:01:00:: 1 -1 univalent%3:00:02:: 1 -1 united_states_dollar%1:23:00:: 1 -1 unitarian%1:18:00:: 1 -1 union%1:04:02:: 3 -1 uninvolved%3:00:00:: 1 -1 uninvited%5:00:00:unwelcome:00 1 -1 uninterruptedly%4:02:00:: 1 -1 unintentionally%4:02:00:: 1 -1 unintended%3:00:00:: 1 -1 unintelligent%3:00:00:: 1 -1 uninjectable%3:00:00:: 1 -1 uninitiated%5:00:00:inexperienced:00 1 -1 uninitiate%1:14:00:: 1 -1 unimproved%3:00:00:: 1 -1 unimpressive%3:00:00:: 1 -1 unimposing%5:00:00:unimpressive:00 1 -1 unimpeachably%4:02:00:: 1 -1 unimpeachable%5:00:00:unquestionable:00 1 -1 unimpassioned%5:00:00:passionless:00 1 -1 unimpaired%3:00:00:: 1 -1 unimaginative%5:00:00:uncreative:00 1 -1 unimaginable%5:00:00:unthinkable:00 1 -1 unilateral%3:00:00:: 1 -1 unification%1:11:00:: 1 -1 unhurt%5:00:00:uninjured:00 1 -1 unhurried%3:00:00:: 1 -1 unholy%5:00:00:evil:00 2 -1 unholy%3:00:00:: 1 -1 unheeding%5:00:00:deaf:00 2 -1 unheeded%5:00:00:unnoticed:00 1 -1 unheated%5:00:00:cold:01 1 -1 unhealthy%3:00:00:: 1 -1 unhappy%3:00:04:: 2 -1 unhappiness%1:12:00:: 1 -1 unguided%5:00:00:unled:00 1 -1 ungrateful%3:00:00:: 1 -1 unfrosted%5:00:00:clear:02 1 -1 unfortunate%1:18:00:: 1 -1 unforeseen%5:00:00:unexpected:00 1 -1 unfolding%1:22:00:: 1 -1 unfold%2:39:00:: 2 -1 unfold%2:38:00:: 3 -1 unfixed%3:00:00:: 1 -1 unfit%3:00:02:: 1 -1 unfettered%5:00:00:unbound:01 1 -1 unfertilized%5:00:00:infertile:00 1 -1 unfertile%3:00:00:: 1 -1 unfastened%3:00:00:: 1 -1 unfasten%2:35:01:: 1 -1 unfalteringly%4:02:00:: 1 -1 unfaltering%5:00:00:resolute:00 1 -1 unfaithful%3:00:00:: 1 -1 unfair%3:00:00:: 2 -1 unexplained%5:00:00:inexplicable:00 2 -1 unexplainable%5:00:00:inexplicable:00 1 -1 unexpected%5:00:00:unsuspected:00 2 -1 unevenly%4:02:00:: 1 -1 uneven%5:00:00:unequal:00 2 -1 unerringly%4:02:00:: 1 -1 unerring%5:00:00:infallible:00 1 -1 unenthusiastic%3:00:00:: 1 -1 unending%5:00:00:permanent:00 1 -1 unemployment_compensation%1:04:00:: 1 -1 unearned_run%1:04:00:: 1 -1 unduly%4:02:00:: 1 -1 undulate%2:38:01:: 1 -1 undue%3:00:02:: 2 -1 undrinkable%3:00:00:: 1 -1 undone%5:00:00:unfinished:01 1 -1 undoing%1:04:00:: 1 -1 undo%2:36:00:: 2 -1 undisturbed%3:00:02:: 1 -1 undisputed%5:00:00:uncontroversial:00 1 -1 undisguised%5:00:00:overt:00 1 -1 undiluted%3:00:00:: 1 -1 undigested%5:00:00:ununderstood:00 1 -1 undifferentiated%3:00:00:: 1 -1 underwrite%2:32:00:: 2 -1 underworld%1:15:00:: 1 -1 underworld%1:14:00:: 2 -1 underwear%1:06:00:: 1 -1 undertaking%1:04:00:: 1 -1 undertaker%1:18:00:: 1 -1 understood%5:00:00:implicit:00 2 -1 understood%3:00:00:: 1 -1 understatement%1:10:00:: 1 -1 understanding%5:00:00:perceptive:00 1 -1 understanding%1:09:03:: 3 -1 understanding%1:09:00:: 4 -1 understand%2:31:04:: 5 -1 underside%1:15:00:: 1 -1 undersecretary%1:18:00:: 1 -1 undersea%5:00:00:subsurface:00 1 -1 underrate%2:31:00:: 1 -1 underpin%2:35:00:: 1 -1 underling%1:18:00:: 1 -1 underhanded%5:00:00:crooked:02 1 -1 undergraduate%1:18:00:: 1 -1 underestimate%2:31:02:: 1 -1 underestimate%2:31:01:: 3 -1 underestimate%2:31:00:: 2 -1 undereducated%5:00:00:uneducated:00 1 -1 undercurrent%1:09:00:: 1 -1 undercover%5:00:00:covert:00 1 -1 under_that%4:02:00:: 1 -1 under_one's_nose%5:00:00:obvious:00 1 -1 under_control%5:00:01:controlled:00 1 -1 under_arms%4:02:00:: 1 -1 under%5:00:00:subordinate:01 2 -1 undeclared%3:00:00:: 1 -1 undamaged%3:00:00:: 1 -1 uncurl%2:38:00:: 1 -1 uncritical%3:00:02:: 1 -1 uncover%2:35:00:: 2 -1 uncousinly%3:00:00:: 1 -1 uncork%2:35:01:: 1 -1 unconventional%3:00:00:: 1 -1 uncontrollably%4:02:00:: 1 -1 uncontrollable%5:00:00:intractable:00 1 -1 unconstitutional%3:00:00:: 1 -1 unconscious%5:00:01:unaware:00 3 -1 unconscious%5:00:00:involuntary:01 2 -1 unconscious%1:09:00:: 1 -1 unconquered%5:00:00:undefeated:00 1 -1 unconquerable%3:00:00:: 1 -1 unconnected%5:00:00:unrelated:02 1 -1 unconfessed%1:14:00:: 1 -1 unconditioned%5:00:00:unconditional:00 1 -1 unconditionally%4:02:02:: 1 -1 unconditional%3:00:00:: 1 -1 unconcerned%5:00:00:untroubled:00 2 -1 unconcern%1:07:01:: 1 -1 uncompromising%3:00:00:: 1 -1 uncomfortably%4:02:00:: 1 -1 uncombable%5:00:00:uncombed:00 1 -1 unclouded%5:00:00:pure:02 1 -1 uncle%1:18:01:: 2 -1 unclasp%2:35:00:: 1 -1 unclaimed%5:00:00:unwanted:00 1 -1 uncheckable%5:00:00:unmanageable:00 1 -1 unchanged%3:00:04:: 2 -1 unchangeable%3:00:00:: 1 -1 uncertified%3:00:00:: 1 -1 unceasingly%4:02:00:: 1 -1 uncaused%5:00:00:unintended:00 1 -1 uncanny%5:00:00:unnatural:00 2 -1 uncanny%5:00:00:supernatural:00 1 -1 unbuttoned%3:00:00:: 1 -1 unbroken%5:00:00:wild:01 2 -1 unbreakable%3:00:00:: 1 -1 unbounded%5:00:00:infinite:00 1 -1 unborn%3:00:00:: 1 -1 unblinkingly%4:02:00:: 1 -1 unbidden%5:00:00:uninvited:00 1 -1 unbelievable%3:00:04:: 1 -1 unbalance%1:26:00:: 1 -1 unawares%4:02:01:: 1 -1 unavoidably%4:02:00:: 1 -1 unavailing%5:00:00:useless:00 1 -1 unauthorized%3:00:00:: 1 -1 unauthentic%5:00:00:counterfeit:00 1 -1 unattractive%5:00:00:unappealing:00 2 -1 unattractive%3:00:00:: 1 -1 unattached%5:00:00:unconnected:00 1 -1 unasterisked%5:00:00:unmarked:00 1 -1 unashamedly%4:02:00:: 1 -1 unarmed%3:00:01:: 1 -1 unanswered%5:00:00:nonreciprocal:00 1 -1 unambiguous%3:00:04:: 2 -1 unambiguity%1:07:00:: 1 -1 unalterable%3:00:00:: 1 -1 unafraid%3:00:00:: 1 -1 unaffected%5:00:01:insensitive:02 2 -1 unaffected%3:00:00:: 1 -1 unacquainted_with%5:00:00:uninformed:00 1 -1 unachievable%5:00:00:impossible:00 1 -1 unaccountable%5:00:00:inexplicable:00 1 -1 unacceptable%5:00:00:unsatisfactory:00 1 -1 unabated%5:00:00:intense:00 1 -1 un%1:14:00:: 1 -1 umbrella_tent%1:06:00:: 1 -1 ultraviolet_illumination%1:19:00:: 1 -1 ultrasonically%4:02:00:: 1 -1 ultramodern%5:00:00:modern:00 1 -1 ultra%5:00:00:immoderate:00 1 -1 ultimatum%1:10:00:: 1 -1 ulceration%1:26:00:: 1 -1 ulcerated%5:00:00:unhealthy:00 1 -1 ukrainian%1:10:00:: 1 -1 ugly%5:00:00:inaesthetic:00 2 -1 ugliness%1:07:00:: 1 -1 ubiquitous%5:00:00:present:02 1 -1 ubermensch%1:18:00:: 1 -1 u.s._government%1:14:00:: 1 -1 tyrant%1:18:00:: 1 -1 typography%1:10:00:: 2 -1 typographic%3:01:00:: 1 -1 typhus_fever%1:26:00:: 1 -1 typhoid%1:26:00:: 1 -1 typewriting%1:10:00:: 1 -1 type%2:31:00:: 2 -1 twoscore%5:00:00:cardinal:00 1 -1 twofold%5:00:01:multiple:00 2 -1 two-way%5:00:00:nonpartisan:00 1 -1 two-baser%1:04:00:: 1 -1 twisting%1:04:00:: 1 -1 twisted%5:00:00:disingenuous:00 3 -1 twisted%5:00:00:crooked:01 2 -1 twisted%5:00:00:coiled:00 1 -1 twist%2:35:01:: 4 -1 twist%2:30:00:: 5 -1 twist%1:04:02:: 4 -1 twirlingly%4:02:00:: 1 -1 twirl%2:38:01:: 2 -1 twinkling%5:00:00:bright:00 1 -1 twinkling%1:28:00:: 1 -1 twinkle%2:39:00:: 1 -1 twin%5:00:00:matched:00 1 -1 twin%1:18:00:: 1 -1 twilight%1:28:00:: 2 -1 twilight%1:19:00:: 3 -1 twig%2:30:00:: 1 -1 twig%1:20:00:: 1 -1 twiddle%2:38:00:: 1 -1 twenty-two_rifle%1:06:00:: 1 -1 twenty-two%1:23:00:: 1 -1 twenty-three%1:23:00:: 1 -1 twenty-six%5:00:00:cardinal:00 1 -1 twenty-one%1:23:00:: 1 -1 twenty-eight%1:23:00:: 1 -1 twenty%1:23:00:: 1 -1 twentieth%1:24:00:: 1 -1 twelve%1:23:00:: 1 -1 tweeze%2:35:00:: 1 -1 tweedy%5:00:00:rough:00 1 -1 tv_room%1:06:00:: 1 -1 tv_audience%1:14:00:: 1 -1 tv%1:06:00:: 2 -1 tuxedoed%5:00:00:clothed:00 1 -1 tutorial%1:10:00:: 1 -1 tutor%2:32:00:: 1 -1 tutor%1:18:00:: 1 -1 turntable%1:06:00:: 1 -1 turnpike%1:06:01:: 1 -1 turning_point%1:11:00:: 1 -1 turn_the_tables%2:30:00:: 1 -1 turn_over%2:38:03:: 3 -1 turn_over%2:35:00:: 4 -1 turn_out%2:36:00:: 6 -1 turn_out%2:35:00:: 7 -1 turn_on%2:39:00:: 3 -1 turn_on%2:30:00:: 4 -1 turn_off%2:38:00:: 2 -1 turn_off%2:37:00:: 3 -1 turn_in%2:40:00:: 3 -1 turn_in%2:36:00:: 4 -1 turn_back%2:38:02:: 3 -1 turn_back%2:33:00:: 4 -1 turn_away%2:41:00:: 3 -1 turn_away%2:38:01:: 4 -1 turn_around%2:30:01:: 2 -1 turn%2:38:06:: 11 -1 turn%2:38:04:: 9 -1 turn%2:38:01:: 10 -1 turn%2:36:00:: 12 -1 turn%2:35:06:: 13 -1 turn%2:30:09:: 14 -1 turn%2:29:00:: 15 -1 turn%1:11:00:: 5 -1 turn%1:04:07:: 7 -1 turn%1:04:02:: 6 -1 turmoil%1:12:00:: 2 -1 turkish%3:01:00:: 1 -1 turkey_cock%1:05:00:: 1 -1 turkey%1:15:00:: 2 -1 turf%1:17:00:: 1 -1 turbulent%5:00:00:unquiet:00 1 -1 turbulent%5:00:00:agitated:02 2 -1 turbulence%1:19:00:: 1 -1 turbofan_engine%1:06:00:: 1 -1 turbinate%1:08:00:: 1 -1 tunnel%2:38:00:: 1 -1 tunnel%2:35:00:: 2 -1 tunnel%1:06:00:: 1 -1 tunisia%1:15:00:: 1 -1 tunelessly%4:02:00:: 1 -1 tuneful%3:00:00:: 1 -1 tuned%5:00:02:adjusted:00 1 -1 tuned%5:00:01:adjusted:00 2 -1 tune_in%2:39:00:: 1 -1 tune%2:30:01:: 1 -1 tumultuous%5:00:00:unquiet:00 1 -1 tumour%1:26:00:: 1 -1 tumbling%5:00:00:falling:03 2 -1 tumbling%1:04:00:: 1 -1 tumbler%1:18:00:: 1 -1 tumbler%1:06:00:: 2 -1 tumble%2:38:07:: 4 -1 tumble%2:38:03:: 5 -1 tumble%1:04:00:: 1 -1 tulip_tree%1:20:00:: 1 -1 tulip%1:20:00:: 1 -1 tug%1:04:00:: 1 -1 tuft%1:14:00:: 1 -1 tudor%3:01:00:: 1 -1 tubule%1:08:00:: 1 -1 tubular%5:00:00:hollow:00 1 -1 tube-nosed_fruit_bat%1:05:00:: 1 -1 tube%1:25:00:: 3 -1 tub%1:06:00:: 2 -1 try_on%2:29:00:: 1 -1 try_for%2:33:00:: 1 -1 truthfulness%1:07:00:: 1 -1 truthful%5:00:00:true:00 2 -1 truthful%3:00:00:: 1 -1 trustworthy%5:00:00:responsible:00 2 -1 trustworthy%3:00:00:: 1 -1 trustfully%4:02:00:: 1 -1 trustee%1:18:01:: 2 -1 trusted%5:00:00:trustworthy:00 1 -1 trust%2:40:00:: 5 -1 trust%1:14:00:: 4 -1 trust%1:09:01:: 5 -1 trumpeter%1:18:00:: 1 -1 trumpet%2:32:00:: 1 -1 trumpet%1:06:00:: 1 -1 trump_up%2:36:00:: 1 -1 truly%4:02:01:: 2 -1 true%5:00:00:constant:00 5 -1 truculent%5:00:00:aggressive:00 1 -1 truculence%1:07:00:: 1 -1 trucking%1:04:00:: 1 -1 truck%2:38:00:: 1 -1 trouser_cuff%1:06:00:: 1 -1 trough%1:06:00:: 2 -1 troubleshooter%1:18:00:: 1 -1 troubled%5:00:00:unquiet:00 2 -1 troubled%3:00:00:: 1 -1 trouble_oneself%2:41:00:: 1 -1 trouble%2:41:01:: 4 -1 trouble%2:29:00:: 5 -1 trouble%1:12:03:: 6 -1 trot_out%2:39:00:: 1 -1 trot%1:04:00:: 1 -1 tropidoclonion%1:05:00:: 1 -1 tropical%3:01:00:: 2 -1 trophotropic%3:01:00:: 1 -1 trooper%1:18:00:: 2 -1 trompe_l'oeil%1:06:00:: 1 -1 trolley_line%1:06:00:: 1 -1 trolley_car%1:06:00:: 1 -1 troll%1:18:00:: 1 -1 troika%1:06:00:: 1 -1 triviality%1:07:00:: 1 -1 triumphant%5:00:00:undefeated:00 2 -1 triumph%2:33:00:: 1 -1 trite%5:00:00:unoriginal:00 1 -1 trisodium_orthophosphate%1:27:00:: 1 -1 tripod%1:06:00:: 1 -1 triple-crown_season%1:28:00:: 1 -1 triple%2:35:00:: 2 -1 triphosphopyridine_nucleotide%1:27:00:: 1 -1 triphammer%1:06:00:: 1 -1 trip_up%2:31:00:: 1 -1 trio%1:23:00:: 1 -1 trio%1:10:00:: 2 -1 trinket%1:06:00:: 1 -1 trimming%1:04:00:: 1 -1 trim_down%2:30:00:: 1 -1 trim%5:00:00:thin:03 1 -1 trim%2:36:01:: 2 -1 trim%2:30:00:: 3 -1 trim%1:26:00:: 1 -1 trim%1:06:00:: 2 -1 trigonal%5:00:00:symmetrical:00 1 -1 trigger%2:33:00:: 2 -1 tricolor%5:00:00:colored:00 1 -1 trickle%2:38:00:: 1 -1 trick_out%2:29:00:: 1 -1 trick%2:41:00:: 1 -1 trick%1:28:00:: 2 -1 trick%1:04:04:: 3 -1 trick%1:04:02:: 5 -1 trick%1:04:00:: 4 -1 trichrome%5:00:00:colored:00 1 -1 trichloroacetic_acid%1:27:00:: 1 -1 tribunal%1:14:00:: 1 -1 triangular%5:00:00:angular:00 1 -1 trial_judge%1:18:00:: 1 -1 trial_court%1:14:00:: 1 -1 trial_balloon%1:09:00:: 1 -1 trial%1:04:02:: 5 -1 trestle%1:06:01:: 1 -1 trepidation%1:12:00:: 1 -1 trend%1:15:01:: 2 -1 trend%1:09:00:: 3 -1 tremor%1:11:00:: 2 -1 trembling%1:26:00:: 1 -1 tree_branch%1:20:00:: 1 -1 treble%5:00:00:high:03 1 -1 treasured%5:00:00:loved:00 1 -1 treasure%2:40:00:: 1 -1 treasure%1:21:01:: 3 -1 treasure%1:14:00:: 4 -1 treadmill%1:06:01:: 1 -1 tread%2:35:01:: 4 -1 tread%2:35:00:: 3 -1 treachery%1:07:00:: 1 -1 treacherous%5:00:00:dangerous:00 1 -1 traverse%2:42:00:: 2 -1 traverse%2:32:00:: 3 -1 travelogue%1:10:00:: 1 -1 traveller%1:18:00:: 1 -1 traveling%5:00:00:moving:02 1 -1 traveled%5:00:00:cosmopolitan:02 2 -1 traveled%3:00:00:: 1 -1 travel_along%2:38:00:: 1 -1 travel%2:38:03:: 5 -1 travel%1:11:00:: 2 -1 trash_dump%1:15:00:: 1 -1 trapping%1:06:01:: 1 -1 trapped%5:00:00:unfree:00 1 -1 trap%2:35:01:: 3 -1 trap%1:09:00:: 3 -1 trap%1:06:03:: 4 -1 trap%1:04:00:: 5 -1 transvestitism%1:04:00:: 1 -1 transversus_abdominis%1:08:00:: 1 -1 transversus%1:08:00:: 1 -1 transversely%4:02:00:: 1 -1 transversally%4:02:00:: 1 -1 transpose%2:30:05:: 2 -1 transpose%2:30:02:: 3 -1 transport%2:37:00:: 3 -1 transport%1:22:00:: 2 -1 transport%1:04:00:: 3 -1 transplantable%5:00:00:mobile:00 1 -1 transpirate%2:38:00:: 1 -1 transmute%2:30:02:: 2 -1 transmutation%1:11:00:: 2 -1 transmitting%1:04:00:: 1 -1 transmitted%5:00:00:sent:00 1 -1 transmit%2:35:00:: 4 -1 transmissible%5:00:00:infectious:00 1 -1 translucence%1:07:00:: 1 -1 transition%1:11:01:: 3 -1 transit_line%1:06:00:: 1 -1 transistor%1:06:00:: 1 -1 transience%1:07:00:: 1 -1 transgression%1:04:00:: 1 -1 transgress%2:41:00:: 1 -1 transfusion%1:04:00:: 1 -1 transformer%1:06:00:: 1 -1 transformed%5:00:00:changed:00 1 -1 transfix%2:37:00:: 1 -1 transfer%2:40:00:: 5 -1 transfer%2:38:02:: 6 -1 transfer%2:35:00:: 7 -1 transfer%1:18:00:: 2 -1 transfer%1:04:03:: 3 -1 transcultural%3:01:00:: 1 -1 transcription%1:10:00:: 1 -1 transcribe%2:32:01:: 1 -1 transcribe%2:32:00:: 2 -1 transcendental%3:01:00:: 2 -1 transcend%2:42:01:: 2 -1 trans%5:00:00:crosswise:00 1 -1 tranquility%1:07:00:: 1 -1 tranquil%5:00:00:calm:00 2 -1 trance%1:09:00:: 2 -1 trampling%5:00:00:moving:02 1 -1 trampling%1:11:00:: 1 -1 trample%2:29:00:: 2 -1 tramping%5:00:00:moving:02 1 -1 tramp%1:18:00:: 1 -1 traitorous%5:00:00:disloyal:00 1 -1 trainman%1:18:00:: 1 -1 training_ship%1:06:00:: 1 -1 training_school%1:14:01:: 1 -1 traineeship%1:21:00:: 1 -1 trained_worker%1:18:00:: 1 -1 train%2:41:01:: 5 -1 train%2:33:00:: 6 -1 train%2:32:00:: 7 -1 train%2:29:00:: 8 -1 train%1:14:02:: 2 -1 trail%2:35:00:: 3 -1 trail%1:09:00:: 3 -1 tragically%4:02:00:: 1 -1 tragedy%1:10:00:: 2 -1 tragedian%1:18:02:: 1 -1 traffic_light%1:10:00:: 1 -1 traffic%1:04:01:: 2 -1 traditionally%4:02:00:: 1 -1 traditionalism%1:07:00:: 1 -1 traditionalism%1:04:00:: 2 -1 trading_post%1:06:00:: 1 -1 tradesman%1:18:00:: 1 -1 trademark%1:10:00:: 2 -1 trade_school%1:14:00:: 1 -1 trade_route%1:06:00:: 1 -1 trade_policy%1:10:00:: 1 -1 trade_in%2:40:00:: 1 -1 tractarian%1:18:00:: 1 -1 tract%1:10:00:: 3 -1 track_meet%1:11:00:: 1 -1 track%2:39:00:: 2 -1 track%2:38:00:: 3 -1 track%1:09:00:: 2 -1 track%1:06:05:: 4 -1 track%1:06:02:: 3 -1 traceable%5:00:00:attributable:00 1 -1 trace%1:10:01:: 3 -1 trace%1:06:01:: 5 -1 trace%1:06:00:: 4 -1 toy_with%2:31:00:: 1 -1 toxin%1:27:00:: 1 -1 townsman%1:18:00:: 1 -1 town_meeting%1:14:01:: 2 -1 town_house%1:06:01:: 1 -1 town_clerk%1:18:00:: 1 -1 tower%1:25:00:: 2 -1 toweling%1:06:00:: 1 -1 towel_rack%1:06:00:: 1 -1 towboat%1:06:00:: 1 -1 toward_the_sea%4:02:00:: 1 -1 tow%1:04:00:: 1 -1 tourist_court%1:06:00:: 1 -1 touring%5:00:00:moving:02 1 -1 tour_de_force%1:04:00:: 1 -1 tour%1:28:00:: 2 -1 toughness%1:07:01:: 1 -1 tough%5:00:00:violent:00 5 -1 tough%5:00:00:uncomfortable:00 6 -1 touchstone%1:10:00:: 1 -1 touched%5:00:00:moved(p):00 4 -1 touched%5:00:00:colored:00 1 -1 touch_up%2:30:00:: 1 -1 touch_on%2:42:00:: 2 -1 touch_down%2:38:00:: 1 -1 touch%2:42:02:: 10 -1 touch%2:42:01:: 9 -1 touch%2:35:03:: 11 -1 touch%2:32:09:: 12 -1 touch%2:31:00:: 13 -1 touch%1:23:00:: 6 -1 touch%1:10:02:: 7 -1 toter%1:18:00:: 1 -1 totemic%3:01:00:: 1 -1 totality%1:26:00:: 1 -1 totalitarian%5:00:00:undemocratic:00 1 -1 totalistic%3:01:00:: 1 -1 total_darkness%1:26:00:: 1 -1 tot_up%2:32:00:: 1 -1 toss_back%2:35:00:: 1 -1 toss%2:40:00:: 5 -1 toss%2:35:00:: 6 -1 torturing%5:00:00:painful:00 1 -1 tortured%5:00:00:sorrowful:00 2 -1 tortured%5:00:00:punished:00 1 -1 torture%2:29:00:: 2 -1 torture%1:12:02:: 1 -1 torrent%1:19:01:: 1 -1 torrent%1:11:00:: 2 -1 torpor%1:26:00:: 1 -1 torpid%5:00:00:inactive:01 1 -1 toronto%1:15:00:: 1 -1 tornado%1:19:00:: 1 -1 tormented%5:00:00:sorrowful:00 1 -1 torment%2:37:00:: 1 -1 torment%1:26:00:: 1 -1 torment%1:12:02:: 2 -1 torment%1:12:01:: 3 -1 topsy-turvy%5:00:00:untidy:00 1 -1 topsoil%1:27:00:: 1 -1 toppling%5:00:00:falling:03 1 -1 topped%3:00:00:: 1 -1 topographical%3:01:00:: 1 -1 topnotch%5:00:00:superior:02 1 -1 top_executive%1:18:00:: 1 -1 top-quality%5:00:00:best:00 1 -1 top-grade%5:00:00:best:00 1 -1 top%5:00:00:best:00 4 -1 top%2:38:00:: 2 -1 top%1:07:02:: 6 -1 toothpaste%1:06:00:: 1 -1 toothbrush%1:06:00:: 1 -1 tooth%1:05:02:: 3 -1 tooth%1:04:00:: 4 -1 tool_around%2:38:00:: 1 -1 tool%2:38:01:: 1 -1 tool%2:38:00:: 2 -1 too_soon%4:02:00:: 1 -1 too_much%4:02:01:: 2 -1 too_little%5:00:00:insufficient:00 1 -1 too-careful%5:00:00:careful:00 1 -1 tongued%3:00:00:: 1 -1 tongue_twister%1:10:00:: 1 -1 tongue_depressor%1:06:00:: 1 -1 tongue%1:10:01:: 4 -1 toned%5:00:00:tonal:00 1 -1 tone%1:10:02:: 6 -1 tone%1:09:00:: 7 -1 tonal%3:00:00:: 2 -1 tomato_paste%1:13:00:: 1 -1 tollhouse%1:06:00:: 1 -1 tollgate%1:06:00:: 1 -1 toll_call%1:10:00:: 1 -1 toll%2:39:00:: 1 -1 toll%1:21:00:: 1 -1 toll%1:07:01:: 2 -1 tolerant%5:00:00:forgiving:00 2 -1 tolerant%5:00:00:broad-minded:00 3 -1 tolerance%1:07:04:: 2 -1 tolerance%1:07:03:: 1 -1 tolerance%1:04:00:: 3 -1 tokenish%5:00:00:minimal:00 1 -1 toiling%5:00:00:busy:00 1 -1 together%4:02:05:: 7 -1 toffee%1:13:00:: 1 -1 toe%3:00:00:: 1 -1 toddy%1:13:00:: 1 -1 tobacco_mosaic_virus%1:05:00:: 1 -1 toast%2:34:00:: 2 -1 to_what_degree%4:02:00:: 1 -1 to_the_hilt%4:02:00:: 1 -1 to_that_extent%4:02:00:: 1 -1 to_boot%4:02:00:: 1 -1 to_a_greater_extent%4:02:01:: 1 -1 tittering%3:44:00:: 1 -1 titration%1:04:00:: 1 -1 titled%5:00:00:noble:02 2 -1 title_page%1:10:00:: 1 -1 title-holder%1:18:00:: 1 -1 title%1:10:02:: 6 -1 title%1:07:00:: 7 -1 titillating%5:00:01:exciting:00 1 -1 titanic%5:00:00:large:00 1 -1 tiring%5:00:00:effortful:00 1 -1 tiresome%5:00:00:uninteresting:00 1 -1 tireless%5:00:00:energetic:00 1 -1 tiredly%4:02:00:: 1 -1 tire_tool%1:06:00:: 1 -1 tiptoe%4:02:00:: 1 -1 tiptoe%2:38:00:: 1 -1 tipsy%5:00:00:intoxicated:00 1 -1 tipped%3:00:00:: 1 -1 tip%2:30:00:: 2 -1 tint%2:30:00:: 1 -1 tint%1:07:00:: 1 -1 tinsel%5:00:00:worthless:00 1 -1 tinkle%1:11:00:: 1 -1 tinker%2:35:00:: 1 -1 tinge%2:30:01:: 1 -1 timidity%1:12:00:: 1 -1 timeworn%5:00:00:unoriginal:00 1 -1 timetable%1:10:01:: 1 -1 times%1:04:00:: 2 -1 timer%1:06:00:: 1 -1 timepiece%1:06:00:: 1 -1 timely%5:00:00:opportune:00 2 -1 timely%4:02:00:: 1 -1 timeliness%1:07:01:: 1 -1 timed%5:00:00:regular:00 1 -1 time_plan%1:21:00:: 1 -1 time_of_year%1:28:00:: 1 -1 time_of_arrival%1:28:00:: 1 -1 time_clock%1:06:00:: 1 -1 time-delay_measuring_system%1:06:00:: 1 -1 time%2:31:01:: 3 -1 time%1:07:01:: 9 -1 timbered%5:00:00:wooded:00 2 -1 timbered%3:00:00:: 1 -1 timber%1:06:01:: 3 -1 tilth%1:26:00:: 1 -1 tilt-top_table%1:06:00:: 1 -1 tilt%2:38:01:: 2 -1 tilled%5:00:00:plowed:00 1 -1 tiled%5:00:00:covered:00 1 -1 tile%1:06:00:: 1 -1 tightly_knit%5:00:00:integrated:02 1 -1 tightly_fitting%5:00:00:tight:01 1 -1 tightly%4:02:01:: 2 -1 tightening%1:04:00:: 1 -1 tightened%5:00:00:secure:03 1 -1 tighten_up%2:30:00:: 1 -1 tighten%2:30:02:: 3 -1 tighten%2:30:00:: 2 -1 tight%5:00:00:stingy:00 5 -1 tight%5:00:00:scarce:00 6 -1 tight%5:00:00:invulnerable:00 3 -1 tight%5:00:00:closed:03 4 -1 tight%4:02:02:: 2 -1 tiger%1:18:00:: 1 -1 tiger%1:05:00:: 2 -1 tied_up%5:00:00:busy:00 1 -1 tied%5:00:00:united:00 2 -1 tie-in%1:06:00:: 1 -1 tie%2:30:00:: 5 -1 tie%1:06:04:: 5 -1 tie%1:06:02:: 4 -1 tidy_up%2:30:00:: 1 -1 tidewater%1:17:00:: 1 -1 tidewater%1:15:00:: 2 -1 tide%1:11:01:: 2 -1 tidbit%1:13:00:: 1 -1 tick%2:39:01:: 2 -1 tick%1:05:00:: 2 -1 tibialis_anticus%1:08:00:: 1 -1 tibetan%3:01:00:: 1 -1 tibetan%1:10:00:: 1 -1 thyrotrophin%1:27:00:: 1 -1 thyrotrophic_hormone%1:27:00:: 1 -1 thyrotoxic%3:01:00:: 1 -1 thyronine%1:27:00:: 1 -1 thyroidal%3:01:00:: 1 -1 thyroid-stimulating_hormone%1:27:00:: 1 -1 thwart%2:37:00:: 2 -1 thwart%1:06:00:: 1 -1 thwack%1:04:00:: 1 -1 thundering%5:00:00:noisy:00 1 -1 thundering%5:00:00:impressive:00 2 -1 thunder%2:32:00:: 2 -1 thumping%5:00:00:unreverberant:00 1 -1 thump%2:39:00:: 2 -1 thump%2:35:00:: 3 -1 thumbnail%1:08:00:: 1 -1 thuggee%1:04:00:: 1 -1 thudding%5:00:00:unreverberant:00 1 -1 thud%2:39:00:: 1 -1 thud%2:35:00:: 2 -1 thud%1:11:00:: 1 -1 thruway%1:06:00:: 1 -1 thrust_out%2:38:00:: 1 -1 thrust%2:35:01:: 5 -1 thrust%1:04:01:: 2 -1 thrust%1:04:00:: 3 -1 thrown_and_twisted%5:00:00:tangled:00 1 -1 throw_up%2:29:00:: 1 -1 throw_out%2:41:00:: 4 -1 throw_out%2:32:01:: 6 -1 throw_out%2:32:00:: 5 -1 throw_in_the_towel%2:33:00:: 1 -1 throw_in%2:33:00:: 2 -1 throw_in%2:32:00:: 3 -1 throw_back%2:35:00:: 1 -1 throw%2:36:08:: 11 -1 throw%1:26:00:: 2 -1 through_with%5:00:02:finished:01 1 -1 through%4:02:04:: 4 -1 throttle%2:35:00:: 2 -1 thronged%5:00:00:crowded:00 1 -1 throng%2:38:00:: 1 -1 throne%1:06:00:: 1 -1 thrombus%1:26:00:: 1 -1 thrombosis%1:26:00:: 1 -1 thrombosed%5:00:00:obstructed:00 1 -1 throe%1:26:01:: 1 -1 throbbing%5:00:00:rhythmical:00 1 -1 throbbing%1:11:00:: 1 -1 thrive%2:40:00:: 2 -1 thrillful%5:00:00:excited:00 1 -1 thriller%1:10:00:: 1 -1 thrill%2:37:02:: 2 -1 thrill%1:04:00:: 3 -1 thrice%4:02:00:: 1 -1 threshold%1:09:00:: 2 -1 threshold%1:06:02:: 3 -1 threshold%1:06:01:: 4 -1 threshing%1:04:00:: 1 -1 thresh%2:38:00:: 1 -1 three-way%5:00:00:multilateral:00 1 -1 threatened%5:00:00:vulnerable:00 1 -1 threadbare%5:00:00:unoriginal:00 1 -1 thrash_out%2:32:00:: 1 -1 thrash_about%2:38:00:: 1 -1 thrash%2:38:01:: 2 -1 thousand-fold%4:02:00:: 1 -1 thoughtless%5:00:00:inconsiderate:00 3 -1 thoughtless%3:00:04:: 2 -1 thoughtful%5:00:00:serious:00 3 -1 thoughtful%3:00:00:: 2 -1 thought-image%1:09:00:: 1 -1 thoroughness%1:07:00:: 1 -1 thorn%1:09:00:: 1 -1 thoriated%3:44:00:: 1 -1 thoreau%1:18:00:: 1 -1 thong%1:06:00:: 1 -1 thirtieth%5:00:00:ordinal:00 1 -1 thirties%1:28:00:: 1 -1 thirteenth%5:00:00:ordinal:00 1 -1 thirteen%1:23:00:: 1 -1 thirsty%5:00:00:dry:01 1 -1 thirst%1:07:00:: 2 -1 third_sacker%1:18:00:: 1 -1 third_reich%1:14:00:: 1 -1 third_person%1:10:00:: 1 -1 third-dimensionality%1:07:00:: 1 -1 thiocyanate%1:27:00:: 1 -1 thinness%1:07:01:: 1 -1 thinness%1:07:00:: 2 -1 thinly%4:02:03:: 1 -1 thinker%1:18:00:: 1 -1 think_twice%2:32:00:: 1 -1 think_the_world_of%2:31:00:: 1 -1 think_factory%1:14:00:: 1 -1 thin_out%2:30:00:: 1 -1 thin%3:00:02:: 6 -1 thill%1:06:00:: 1 -1 thighbone%1:08:00:: 1 -1 thickly_settled%5:00:00:inhabited:00 1 -1 thickly%4:02:02:: 1 -1 thickly%4:02:01:: 2 -1 thickening%5:00:00:intensifying:00 1 -1 thickened%5:00:00:thick:01 1 -1 thick_with%5:00:00:full:00 1 -1 thick-skulled%5:00:00:stupid:00 1 -1 thick%1:15:00:: 1 -1 thiamin%1:27:00:: 1 -1 thermostatics%1:09:00:: 1 -1 thermostated%5:00:00:regulated:00 1 -1 thermostat%1:06:00:: 1 -1 thermopile%1:06:00:: 1 -1 thermometric%3:01:00:: 1 -1 thermogravimetric%3:01:00:: 1 -1 thermodynamics_of_equilibrium%1:09:00:: 1 -1 thermodynamics%1:09:00:: 1 -1 thermistor%1:06:00:: 1 -1 thermally%4:02:00:: 1 -1 thermal_emission%1:22:00:: 1 -1 thereunder%4:02:00:: 1 -1 thereon%4:02:00:: 1 -1 therefrom%4:02:01:: 2 -1 therefor%4:02:00:: 1 -1 theorist%1:18:00:: 1 -1 theoretically%4:02:01:: 2 -1 theology%1:04:00:: 3 -1 thenceforth%4:02:01:: 1 -1 then%5:00:00:past:00 1 -1 thematic%3:01:00:: 1 -1 theistic%3:01:00:: 1 -1 theatrical%3:01:00:: 1 -1 theatrical%3:00:00:: 2 -1 theatregoer%1:18:00:: 1 -1 the_virgin%1:18:00:: 1 -1 the_swiss%1:18:00:: 1 -1 the_irish%1:18:00:: 1 -1 the_indies%1:15:00:: 1 -1 the_good_old_days%1:28:00:: 1 -1 the_devil%1:18:00:: 1 -1 the_buddha%1:18:00:: 1 -1 the_british%1:18:00:: 1 -1 the_americas%1:17:00:: 1 -1 thawing%1:22:00:: 1 -1 thaw%1:22:00:: 1 -1 thaw%1:19:00:: 2 -1 thatch%1:08:00:: 1 -1 thankfulness%1:12:00:: 1 -1 thamnophis%1:05:00:: 1 -1 thailand%1:15:00:: 1 -1 textured%5:00:00:rough:00 1 -1 texture%1:07:02:: 3 -1 teutonic%3:01:00:: 1 -1 tetrasodium_pyrophosphate%1:27:00:: 1 -1 tether%2:35:00:: 1 -1 testimonial%1:10:01:: 2 -1 testily%4:02:00:: 1 -1 testify%2:32:02:: 2 -1 tested%5:00:00:reliable:00 2 -1 testament%1:10:00:: 2 -1 test_tube%1:06:00:: 1 -1 test_suit%1:04:00:: 1 -1 tersely%4:02:00:: 1 -1 terse%5:00:00:concise:00 1 -1 terrycloth%1:06:00:: 1 -1 terrorize%2:41:00:: 1 -1 terrorist%1:18:00:: 1 -1 terror-struck%5:00:00:afraid(p):00 1 -1 terror-stricken%5:00:00:afraid(p):00 1 -1 terror%1:18:01:: 2 -1 terrify%2:37:00:: 1 -1 terrible%5:00:00:intense:00 3 -1 terrible%5:00:00:bad:00 4 -1 terrestrial%3:01:02:: 2 -1 terrestrial%3:01:00:: 1 -1 terra_firma%1:17:00:: 1 -1 terms%1:21:00:: 2 -1 terminal_velocity%1:28:00:: 1 -1 terminal%1:06:01:: 2 -1 term_of_office%1:28:00:: 1 -1 term%1:10:01:: 5 -1 tepid%5:00:00:warm:01 1 -1 tenuously%4:02:00:: 1 -1 tenuous%5:00:00:weak:00 1 -1 tenting%1:04:00:: 1 -1 tentacle%1:07:00:: 1 -1 tensionless%5:00:00:lax:01 1 -1 tensional%3:01:00:: 1 -1 tense_system%1:10:00:: 1 -1 tenor%1:10:00:: 1 -1 tenor%1:07:00:: 2 -1 tennis_racket%1:06:00:: 1 -1 tennis_court%1:06:00:: 1 -1 tennis%1:04:00:: 1 -1 tennessee%1:15:00:: 1 -1 tenfold%4:02:00:: 1 -1 tenet%1:10:00:: 1 -1 tenement_house%1:06:00:: 1 -1 tenebrous%5:00:00:dark:01 1 -1 tending%1:04:00:: 1 -1 tender%3:00:01:: 5 -1 tender%2:40:01:: 1 -1 tend%2:41:01:: 4 -1 tenacity%1:07:00:: 1 -1 tenaciously%4:02:00:: 1 -1 tenable%5:00:00:reasonable:00 1 -1 ten-gallon_hat%1:06:00:: 1 -1 tempt%2:37:00:: 3 -1 tempt%2:32:00:: 4 -1 tempo%1:28:00:: 2 -1 temple%1:08:00:: 2 -1 temple%1:06:01:: 3 -1 tempest%1:26:00:: 1 -1 temperature_change%1:22:00:: 1 -1 temperature%1:09:00:: 2 -1 temperament%1:07:00:: 1 -1 telltale%5:00:00:informative:00 1 -1 telling%5:00:00:informative:00 1 -1 tell_on%2:32:00:: 1 -1 tell_on%2:30:00:: 2 -1 tell_apart%2:39:00:: 1 -1 television_system%1:06:00:: 1 -1 television_camera%1:06:00:: 1 -1 television%1:06:01:: 3 -1 telescopic_sight%1:06:00:: 1 -1 telescope%2:35:00:: 1 -1 telephone_wire%1:06:00:: 1 -1 telephone_order%1:04:00:: 1 -1 telephone_number%1:10:00:: 1 -1 telephone_directory%1:10:00:: 1 -1 telephone_company%1:14:00:: 1 -1 telephone%1:10:00:: 2 -1 telepathy%1:10:00:: 1 -1 telegraphy%1:10:00:: 1 -1 telegraph_operator%1:18:00:: 1 -1 telegraph_form%1:10:00:: 1 -1 tel_aviv%1:15:00:: 1 -1 teetotaler%1:18:00:: 1 -1 teensy%5:00:00:small:00 1 -1 teem%2:42:00:: 1 -1 tee%1:15:00:: 1 -1 technologically%4:02:00:: 1 -1 technological_revolution%1:28:00:: 1 -1 technically%4:02:01:: 1 -1 technically%4:02:00:: 2 -1 technical_school%1:14:00:: 1 -1 teaspoonful%1:23:01:: 1 -1 teasing%1:04:00:: 1 -1 tease%2:32:00:: 2 -1 tease%1:18:00:: 1 -1 tearfully%4:02:00:: 1 -1 tear_apart%2:32:00:: 1 -1 tear%2:35:06:: 4 -1 tear%1:17:00:: 2 -1 team_spirit%1:07:00:: 1 -1 teakwood%1:20:00:: 1 -1 teakettle%1:06:00:: 1 -1 teaching_certificate%1:10:00:: 1 -1 teaching%1:04:01:: 3 -1 teacher%1:09:00:: 2 -1 tea_service%1:06:00:: 1 -1 tea_party%1:11:00:: 1 -1 tea%1:13:01:: 2 -1 taxpaying%5:00:00:nonexempt:00 1 -1 taxing%5:00:00:heavy:02 1 -1 taxidriver%1:18:00:: 1 -1 taxi_strip%1:06:00:: 1 -1 taxable%3:00:00:: 1 -1 tax_advantage%1:21:00:: 1 -1 tax-exempt%5:00:00:nontaxable:00 1 -1 tawny%5:00:00:chromatic:00 1 -1 tawdry%5:00:00:tasteless:02 1 -1 taut%5:00:00:tense:03 2 -1 taunting%5:00:00:disrespectful:00 1 -1 tattletale_grey%1:07:00:: 1 -1 tat%2:36:00:: 1 -1 tasteful%3:00:02:: 1 -1 taste%1:11:00:: 4 -1 tartly%4:02:00:: 1 -1 tart%5:00:00:sour:00 1 -1 tarry%2:42:00:: 1 -1 tarred-and-feathered%5:00:00:punished:00 1 -1 tarnish%2:35:00:: 1 -1 target_practice%1:04:00:: 1 -1 target_language%1:10:01:: 1 -1 target-hunting%5:00:00:guided:00 1 -1 tar%1:27:00:: 1 -1 tapestry%1:07:00:: 1 -1 tapering%5:00:00:pointed:00 1 -1 taper_off%2:42:00:: 1 -1 taper%2:30:02:: 1 -1 taped%5:00:00:fixed:00 1 -1 tape_recorder%1:06:00:: 1 -1 tap%2:39:00:: 5 -1 tantrum%1:26:00:: 1 -1 tantalizingly%4:02:00:: 1 -1 tantalizing%5:00:02:inviting:00 1 -1 tantalizing%5:00:01:inviting:00 2 -1 tantalize%2:37:00:: 1 -1 tantalize%2:32:00:: 2 -1 tanned%5:00:00:brunet:00 1 -1 tanker%1:06:00:: 1 -1 tangle%1:09:00:: 2 -1 tangibly%4:02:00:: 1 -1 tangible%5:00:00:concrete:00 2 -1 tangible%3:00:00:: 1 -1 tangential%5:00:00:irrelevant:00 1 -1 tang%1:07:00:: 1 -1 tan%1:26:00:: 1 -1 tan%1:07:00:: 2 -1 tampering%1:04:00:: 1 -1 tamper%2:35:12:: 1 -1 tame%5:00:00:unexciting:00 1 -1 tame%2:30:00:: 1 -1 tallow%1:27:00:: 1 -1 tall-growing%5:00:00:tall:00 1 -1 talky%5:00:00:voluble:00 1 -1 talks%1:10:00:: 1 -1 talking%1:10:00:: 1 -1 talkative%5:00:00:voluble:00 1 -1 talk_terms%2:32:00:: 1 -1 talk_shop%2:32:00:: 1 -1 talk_over%2:32:00:: 1 -1 talk_down%2:32:00:: 1 -1 talk%1:10:03:: 2 -1 talk%1:04:02:: 3 -1 talismanic%5:00:00:supernatural:00 1 -1 takings%1:21:00:: 1 -1 takeover%1:04:02:: 1 -1 takeoff%1:04:00:: 1 -1 taken_up%5:00:00:concerned:00 1 -1 taken_over%5:00:00:taken:00 1 -1 taken_for_granted%5:00:00:obvious:00 1 -1 taken%5:00:00:understood:00 1 -1 take_up_arms%2:33:00:: 1 -1 take_up%2:40:00:: 6 -1 take_up%2:38:03:: 7 -1 take_up%2:35:04:: 8 -1 take_up%2:35:00:: 9 -1 take_to_heart%2:31:00:: 1 -1 take_to%2:41:01:: 2 -1 take_time_off%2:41:00:: 1 -1 take_the_stand%2:32:00:: 1 -1 take_the_field%2:33:01:: 1 -1 take_stock%2:39:00:: 1 -1 take_over%2:41:02:: 6 -1 take_over%2:40:05:: 7 -1 take_over%2:40:02:: 8 -1 take_out%2:41:00:: 5 -1 take_out%2:35:00:: 6 -1 take_on%2:40:00:: 5 -1 take_on%2:33:01:: 6 -1 take_off%2:36:00:: 6 -1 take_off%2:29:03:: 7 -1 take_kindly_to%2:42:00:: 1 -1 take_issue%2:32:00:: 1 -1 take_in%2:43:00:: 3 -1 take_in%2:41:00:: 4 -1 take_in%2:40:09:: 5 -1 take_in%2:39:06:: 6 -1 take_in%2:35:01:: 7 -1 take_in%2:35:00:: 8 -1 take_in%2:31:00:: 9 -1 take_hold_of%2:35:01:: 1 -1 take_heart%2:37:00:: 1 -1 take_exception%2:32:03:: 1 -1 take_counsel%2:31:00:: 1 -1 take_chances%2:41:00:: 1 -1 take_back%2:40:00:: 2 -1 take_apart%2:36:00:: 1 -1 take_apart%2:35:00:: 2 -1 take_aim%2:33:00:: 1 -1 take_advantage%2:41:12:: 2 -1 take_aback%2:37:00:: 1 -1 take_a_breather%2:32:00:: 1 -1 take%2:40:08:: 34 -1 take%2:40:04:: 32 -1 take%2:40:02:: 33 -1 take%2:35:14:: 35 -1 take%2:32:09:: 36 -1 taiwan%1:15:00:: 1 -1 taint%1:26:00:: 1 -1 tailor-make%2:36:00:: 1 -1 tailor%2:36:01:: 2 -1 tailgate%1:06:00:: 1 -1 tailback%1:18:00:: 1 -1 tail%1:25:00:: 3 -1 tail%1:08:01:: 4 -1 tahiti%1:15:00:: 1 -1 tagged%3:00:00:: 1 -1 tag%2:35:01:: 2 -1 tag%2:32:00:: 3 -1 tadpole%1:05:00:: 1 -1 tactually%4:02:00:: 1 -1 tactual_sensation%1:09:00:: 1 -1 tactically%4:02:00:: 1 -1 tackle%2:33:00:: 2 -1 tackle%1:18:00:: 1 -1 tack_on%2:35:00:: 1 -1 tack%2:38:00:: 2 -1 tabulation%1:10:00:: 1 -1 taboo%5:00:00:impermissible:00 1 -1 tabletop%1:06:00:: 1 -1 tablet%1:06:02:: 1 -1 tableau%1:14:00:: 1 -1 tableau%1:09:00:: 2 -1 table_tennis%1:04:00:: 1 -1 t.b.%1:26:00:: 1 -1 t-square%1:06:00:: 1 -1 system%1:08:01:: 8 -1 syrupy%5:00:00:sweet:02 1 -1 syringa%1:20:02:: 1 -1 syrian%3:01:00:: 1 -1 syria%1:15:00:: 1 -1 synthesise%2:31:00:: 1 -1 syntax%1:14:00:: 2 -1 syntactically%4:02:00:: 1 -1 syntactic%3:01:00:: 1 -1 synonymous%3:00:00:: 1 -1 synergistic%3:00:00:: 1 -1 synergism%1:22:00:: 1 -1 syndrome%1:09:00:: 1 -1 syndicate%1:14:01:: 1 -1 syndicate%1:14:00:: 2 -1 synchronous_motor%1:06:00:: 1 -1 synchronous%3:00:00:: 1 -1 synchronize%2:30:00:: 1 -1 synchronism%1:24:00:: 1 -1 symptomatic%5:00:00:characteristic:00 1 -1 symphony_orchestra%1:14:00:: 1 -1 symphony%1:14:00:: 2 -1 sympathize%2:31:00:: 2 -1 sympathetically%4:02:00:: 1 -1 sympathetic%5:00:00:kind:00 4 -1 symmetry%1:25:00:: 2 -1 symmetrically%4:02:00:: 1 -1 symmetrical%5:00:00:balanced:00 2 -1 symmetrical%3:00:00:: 1 -1 symbolist%1:18:00:: 1 -1 symbolism%1:10:00:: 1 -1 symbolism%1:04:00:: 2 -1 symbolic%3:01:01:: 3 -1 syllabicity%1:10:00:: 1 -1 sworn%5:00:00:committed:00 1 -1 swoop_up%2:35:00:: 1 -1 swoop%1:10:00:: 1 -1 swoon%2:29:00:: 1 -1 switzerland%1:15:00:: 1 -1 switching%1:04:00:: 1 -1 switchboard%1:06:00:: 1 -1 switch-hitter%1:18:00:: 1 -1 switch%2:30:01:: 4 -1 switch%1:11:00:: 2 -1 swishing%5:00:00:noisy:00 1 -1 swish%2:39:00:: 1 -1 swish%2:38:00:: 2 -1 swipe%2:35:00:: 1 -1 swingy%5:00:00:rhythmical:00 1 -1 swinging_door%1:06:00:: 1 -1 swing%2:42:01:: 9 -1 swing%1:26:01:: 1 -1 swing%1:06:00:: 2 -1 swing%1:04:06:: 3 -1 swing%1:04:00:: 4 -1 swimsuit%1:06:00:: 1 -1 swimming_trunks%1:06:00:: 1 -1 swimming_hole%1:17:00:: 1 -1 swimming%1:04:00:: 1 -1 swim%2:38:01:: 2 -1 swig%1:04:00:: 1 -1 swerve%1:04:00:: 1 -1 sweltering%5:00:00:hot:01 1 -1 swelling%5:00:00:injured:00 1 -1 swelled%5:00:00:proud:00 1 -1 swell%5:00:00:good:01 1 -1 swell%2:42:03:: 4 -1 swell%2:38:07:: 5 -1 swell%1:07:00:: 3 -1 sweetness%1:09:00:: 1 -1 sweetly%4:02:00:: 1 -1 sweet_shrub%1:20:00:: 1 -1 sweet_roll%1:13:00:: 1 -1 sweet_orange%1:13:00:: 1 -1 sweet_nothings%1:10:00:: 1 -1 sweet-smelling%5:00:00:fragrant:00 1 -1 sweet-faced%5:00:00:faced:00 1 -1 sweet%4:02:00:: 1 -1 sweet%3:00:01:: 8 -1 sweeping%1:04:00:: 1 -1 sweep_up%2:42:00:: 1 -1 sweep_up%2:31:00:: 2 -1 sweep_under_the_rug%2:41:00:: 1 -1 sweep_through%2:41:00:: 1 -1 sweep_away%2:37:00:: 2 -1 sweep%2:35:01:: 6 -1 sweep%2:33:00:: 7 -1 swede%1:18:00:: 1 -1 sweater%1:06:00:: 1 -1 sweatband%1:06:01:: 1 -1 sweat_suit%1:06:00:: 1 -1 sweat_gland%1:08:00:: 1 -1 sweat_bag%1:06:00:: 1 -1 swearing%1:10:02:: 1 -1 swear_out%2:35:00:: 1 -1 swear_in%2:32:00:: 1 -1 swear%2:32:00:: 4 -1 swaying%5:00:00:moving:02 1 -1 swaybacked%5:00:00:unfit:01 1 -1 sway%1:07:00:: 1 -1 swathing%1:06:00:: 1 -1 swathe%2:35:00:: 1 -1 swashbuckler%1:18:00:: 1 -1 swash%1:11:00:: 1 -1 swarthy%5:00:00:brunet:00 1 -1 swart%5:00:00:brunet:00 1 -1 swarming_with%5:00:00:full:00 1 -1 swarming%5:00:00:abundant:00 1 -1 swarm%1:14:01:: 1 -1 swarm%1:14:00:: 2 -1 swap%2:40:00:: 1 -1 swan%2:32:00:: 1 -1 swan%1:05:00:: 1 -1 swamped%5:00:00:sunken:00 1 -1 swamp%2:43:00:: 1 -1 swamp%2:35:00:: 2 -1 swami%1:18:00:: 1 -1 swallowed%5:00:00:enclosed:00 1 -1 swallow%1:04:00:: 2 -1 swahili%1:10:00:: 1 -1 swad%1:14:00:: 1 -1 swab%2:35:00:: 1 -1 sustain%2:35:00:: 5 -1 sustain%2:32:00:: 6 -1 suspicious%5:00:00:questionable:00 2 -1 suspension_bridge%1:06:00:: 1 -1 suspended%5:00:00:delayed:00 2 -1 suspend%2:30:02:: 5 -1 suspect%2:32:02:: 4 -1 suspect%2:32:01:: 5 -1 suspect%1:18:00:: 1 -1 sushi%1:13:00:: 1 -1 survivor%1:18:02:: 2 -1 survivor%1:05:00:: 3 -1 surveying%1:04:00:: 1 -1 survey%1:04:01:: 3 -1 surroundings%1:15:00:: 2 -1 surround%2:33:00:: 4 -1 surreptitiously%4:02:00:: 1 -1 surrender%1:12:00:: 1 -1 surrender%1:10:00:: 2 -1 surprising%1:04:00:: 1 -1 surprise%2:41:00:: 2 -1 surpass%2:38:00:: 3 -1 surmounted%3:44:00:: 1 -1 surmount%2:42:00:: 2 -1 surmise%2:32:00:: 2 -1 surmise%1:10:00:: 1 -1 surly%5:00:00:ill-natured:00 1 -1 surging%5:00:00:stormy:00 1 -1 surge%2:38:04:: 4 -1 surge%2:38:03:: 3 -1 surge%2:38:00:: 2 -1 surfeited%5:00:00:satiate:00 1 -1 surfeit%2:40:00:: 1 -1 surface_noise%1:11:00:: 1 -1 surface-active%5:00:00:active:05 1 -1 surface%2:38:00:: 1 -1 surface%1:09:01:: 5 -1 surf%1:11:00:: 1 -1 surety%1:07:00:: 1 -1 sure_as_shooting%4:02:00:: 1 -1 sure-enough%5:00:00:genuine:00 1 -1 sure%5:00:00:secure:02 4 -1 sure%5:00:00:reliable:00 5 -1 supremely%4:02:00:: 1 -1 supreme%5:00:00:superior:02 3 -1 supreme%5:00:00:maximal:00 4 -1 supra_expressionism%1:14:00:: 1 -1 suppress%2:41:01:: 2 -1 suppress%2:41:00:: 3 -1 supposed%5:00:00:intended:00 4 -1 supporting%1:04:00:: 1 -1 supporter%1:18:00:: 1 -1 support%2:30:00:: 9 -1 support%1:10:01:: 9 -1 support%1:06:00:: 10 -1 supply_closet%1:06:00:: 1 -1 supply%2:32:00:: 4 -1 supplied_with%5:00:00:furnished:00 1 -1 suppleness%1:07:00:: 1 -1 supplementary%5:00:00:secondary:01 2 -1 supplemental%5:00:00:secondary:01 1 -1 supine%5:00:00:unerect:00 1 -1 superstitious%5:00:00:irrational:00 1 -1 supernatant%5:00:00:supported:00 1 -1 supermarket%1:06:00:: 1 -1 superlative%5:00:00:superior:02 1 -1 superlative%1:10:00:: 1 -1 superiority%1:07:02:: 3 -1 superiority%1:07:01:: 2 -1 superior%5:00:00:dominant:01 3 -1 superior%1:18:02:: 2 -1 superior%1:18:01:: 1 -1 superintend%2:41:00:: 1 -1 superhighway%1:06:00:: 1 -1 superficially%4:02:00:: 1 -1 superficiality%1:07:01:: 1 -1 supercilious%5:00:00:proud:00 1 -1 super%5:00:00:comprehensive:00 2 -1 sup%2:34:00:: 1 -1 suntanned%5:00:00:brunet:00 1 -1 sunstruck%5:00:00:light:06 1 -1 sunshiny%5:00:00:clear:03 1 -1 sunshine%1:19:00:: 1 -1 sung%5:00:00:voiced:00 1 -1 sundial%1:06:00:: 1 -1 sunder%2:30:00:: 1 -1 sunday_school%1:14:00:: 1 -1 sunburnt%5:00:00:unhealthy:00 1 -1 sunbaked%5:00:00:dry:01 1 -1 sun-dried%5:00:00:preserved:02 1 -1 sun%2:29:00:: 1 -1 sun%1:18:00:: 3 -1 sun%1:17:01:: 4 -1 summation%1:10:00:: 1 -1 summate%2:32:00:: 1 -1 summarization%1:10:00:: 1 -1 sumatra%1:15:00:: 1 -1 sum_of_money%1:21:00:: 1 -1 sum%1:14:00:: 3 -1 sum%1:09:00:: 4 -1 sum%1:06:00:: 5 -1 sultry%5:00:00:hot:02 1 -1 sultry%5:00:00:hot:01 2 -1 sultan%1:18:00:: 1 -1 sulphur%2:30:00:: 1 -1 sullen%5:00:00:cloudy:00 2 -1 sulky%5:00:00:ill-natured:00 1 -1 sulk%2:37:00:: 1 -1 sulfur%1:27:00:: 1 -1 suitor%1:18:00:: 1 -1 suited%5:00:00:clothed:00 2 -1 suite%1:14:00:: 3 -1 suitable%5:00:00:appropriate:00 3 -1 suitability%1:07:00:: 1 -1 suit%2:42:02:: 2 -1 suit%2:42:00:: 3 -1 suggestive%5:00:00:meaningful:00 1 -1 suggestive%5:00:00:connotative:00 2 -1 suggestion%1:23:00:: 3 -1 suggestion%1:10:01:: 4 -1 sugar_maple%1:20:00:: 1 -1 sugar_bowl%1:06:00:: 1 -1 sugar%2:39:00:: 1 -1 suffused%5:00:00:distributed:00 1 -1 suffrage%1:07:00:: 1 -1 suffocation%1:04:00:: 1 -1 suffocating%5:00:00:breathless:00 1 -1 suffocate%2:29:00:: 2 -1 suffering%5:00:00:unhappy:00 2 -1 suffering%5:00:00:troubled:00 1 -1 suffer%2:39:00:: 7 -1 suffer%2:29:03:: 8 -1 suddenness%1:07:00:: 1 -1 sudanese%1:18:00:: 1 -1 suction%1:19:00:: 1 -1 sucker%1:18:01:: 1 -1 suck_up%2:35:00:: 1 -1 suck_in%2:43:00:: 2 -1 suck_in%2:35:01:: 3 -1 suck%1:04:00:: 1 -1 such-and-such%5:00:00:unspecified:00 1 -1 succinctly%4:02:01:: 1 -1 successively%4:02:00:: 1 -1 succession%1:14:00:: 2 -1 succession%1:04:00:: 3 -1 subvert%2:41:00:: 1 -1 suburbanized%5:00:00:decentralized:00 1 -1 subtly%4:02:00:: 1 -1 subtlety%1:10:00:: 1 -1 subtlety%1:07:00:: 2 -1 subtitle%2:40:00:: 1 -1 subterfuge%1:10:00:: 1 -1 subsurface%3:00:00:: 1 -1 substitution%1:11:00:: 1 -1 substation%1:06:00:: 1 -1 substantive%5:00:00:essential:00 1 -1 substantially%4:02:02:: 2 -1 substantial%5:00:00:essential:00 2 -1 substance%1:24:00:: 4 -1 subsoil%1:27:00:: 1 -1 subsistence%1:26:01:: 2 -1 subsist%2:42:00:: 1 -1 subsidy%1:21:00:: 1 -1 subsidized%5:00:00:supported:02 1 -1 subservient%5:00:00:subordinate:02 1 -1 subscription_right%1:21:00:: 1 -1 subscription%1:21:00:: 1 -1 subscription%1:10:00:: 2 -1 subscribe_to%2:40:00:: 1 -1 subscribe%2:32:03:: 3 -1 subscribe%2:32:02:: 2 -1 subpoena_duces_tecum%1:10:00:: 1 -1 subpoena%2:32:00:: 1 -1 subpart%1:24:00:: 1 -1 subordinate%2:31:00:: 1 -1 submit%2:33:02:: 8 -1 submerged%3:00:04:: 1 -1 submerge%2:35:00:: 2 -1 submarine_ball%1:04:00:: 1 -1 subliterary%5:00:00:informal:02 1 -1 sublime%5:00:00:sacred:00 2 -1 sublime%5:00:00:elated:00 3 -1 sublime%2:30:00:: 1 -1 subjugation%1:26:00:: 1 -1 subjugate%2:41:01:: 1 -1 subject_to%5:00:00:amenable:00 2 -1 subject%2:41:00:: 5 -1 subhuman%3:00:00:: 1 -1 subgroup%1:14:00:: 1 -1 subfigure%1:25:00:: 1 -1 subdivision%1:14:01:: 3 -1 subcontract%2:41:01:: 1 -1 subcontinent%1:17:00:: 1 -1 subconsciously%4:02:00:: 1 -1 subconscious_mind%1:09:00:: 1 -1 subconscious%5:00:00:unconscious:00 1 -1 subcommittee%1:14:00:: 1 -1 sub%2:40:00:: 1 -1 suave%5:00:00:refined:01 1 -1 suave%5:00:00:diplomatic:00 2 -1 stylized%5:00:00:artificial:00 1 -1 stylistic%5:00:00:rhetorical:00 1 -1 stylist%1:18:00:: 1 -1 stylemark%1:07:00:: 1 -1 style%2:32:00:: 1 -1 stupor%1:12:00:: 1 -1 stupor%1:09:00:: 2 -1 stupidity%1:04:00:: 2 -1 stupid%5:00:00:confused:00 2 -1 stupid%1:18:00:: 1 -1 stupefying%5:00:01:impressive:00 1 -1 stunt%2:41:00:: 1 -1 stunning%5:00:00:impressive:00 1 -1 stung%5:00:02:injured:00 2 -1 stung%5:00:00:displeased:00 1 -1 stun%2:37:00:: 2 -1 stun%2:35:00:: 3 -1 stumping%1:04:00:: 1 -1 stump%2:31:00:: 1 -1 stump%1:08:00:: 2 -1 stumbling_block%1:06:00:: 1 -1 stuffy%5:00:00:unventilated:00 1 -1 stuffy%5:00:00:conventional:00 2 -1 stuffed%5:00:01:full:00 1 -1 stuff%2:34:01:: 3 -1 stuff%1:21:00:: 3 -1 stuff%1:10:00:: 4 -1 stuff%1:07:00:: 5 -1 study%1:09:01:: 8 -1 studious%5:00:00:careful:00 1 -1 studded%5:00:00:adorned:00 1 -1 stuck_with%5:00:00:cursed:00 1 -1 stuck-up%5:00:00:proud:00 1 -1 stubbornness%1:07:01:: 2 -1 stubbornness%1:07:00:: 1 -1 stub_out%2:30:00:: 1 -1 stub%1:17:00:: 1 -1 strung%3:44:00:: 1 -1 struggle%1:04:00:: 3 -1 structure%2:30:00:: 1 -1 structural%5:00:00:functional:00 3 -1 structural%5:00:00:constructive:00 4 -1 strong_point%1:07:00:: 1 -1 stroll%2:38:00:: 2 -1 stroll%1:04:00:: 1 -1 stroke%2:33:00:: 2 -1 stroke%1:26:00:: 3 -1 stroke%1:11:01:: 4 -1 stroke%1:04:01:: 5 -1 striped%5:00:00:patterned:00 1 -1 stripe%1:06:00:: 1 -1 strip%2:35:00:: 3 -1 strip%2:30:06:: 4 -1 strip%2:30:05:: 5 -1 strip%1:10:00:: 4 -1 stringy%5:00:00:thin:03 1 -1 string_out%2:35:00:: 1 -1 string%2:30:00:: 2 -1 string%1:14:00:: 4 -1 string%1:10:00:: 5 -1 string%1:06:01:: 6 -1 strike_out%2:35:00:: 2 -1 strike_home%2:37:00:: 1 -1 strike_a_chord%2:31:00:: 1 -1 strike%2:40:00:: 12 -1 strike%2:36:00:: 13 -1 strike%2:35:08:: 14 -1 strike%2:35:04:: 15 -1 stride%1:04:01:: 3 -1 stricken%5:00:00:affected:00 2 -1 strewn%5:00:00:distributed:00 2 -1 strew%2:35:04:: 2 -1 stretching%5:00:00:wide:00 1 -1 stretching%1:04:02:: 1 -1 stretched%5:00:02:extended:00 3 -1 stretch_pants%1:06:00:: 1 -1 stretch_out%2:38:02:: 2 -1 stretch_out%2:29:01:: 3 -1 stretch%2:38:02:: 6 -1 stretch%2:35:00:: 7 -1 stretch%2:30:05:: 8 -1 stretch%1:04:02:: 5 -1 stressed%5:00:00:troubled:00 1 -1 stress%1:04:00:: 6 -1 streptococcus_anhemolyticus%1:05:00:: 1 -1 strenuously%4:02:01:: 1 -1 strenuous%5:00:00:energetic:00 1 -1 strengthen%2:30:00:: 2 -1 strength%1:07:09:: 5 -1 strength%1:07:08:: 7 -1 strength%1:07:04:: 6 -1 street_clothes%1:06:00:: 1 -1 street_cleaner%1:18:00:: 1 -1 streamliner%1:06:00:: 1 -1 streaming%5:00:01:moving:02 2 -1 streaming%5:00:00:running(a):02 3 -1 stream_of_consciousness%1:10:00:: 1 -1 streak%1:14:00:: 1 -1 streak%1:07:01:: 2 -1 streak%1:07:00:: 3 -1 stray%2:38:02:: 2 -1 stray%2:38:00:: 3 -1 stray%1:05:00:: 1 -1 strawberry%1:13:00:: 1 -1 straw%5:00:00:chromatic:00 1 -1 stratify%2:41:00:: 1 -1 stratify%2:30:00:: 2 -1 stratified%5:00:02:hierarchical:00 1 -1 stratification%1:04:00:: 1 -1 strategist%1:18:00:: 1 -1 strategic%5:00:00:important:00 2 -1 stratagem%1:04:00:: 1 -1 strap%2:35:00:: 1 -1 strangulation%1:04:01:: 1 -1 strangled%5:00:00:inhibited:00 1 -1 strangeness%1:07:00:: 1 -1 strangely_enough%4:02:00:: 1 -1 stranded%5:00:00:unaccompanied:00 1 -1 strand%1:09:00:: 1 -1 strand%1:06:02:: 2 -1 strand%1:06:01:: 3 -1 straitlaced%5:00:00:proper:00 1 -1 straining%5:00:00:effortful:00 1 -1 straining%1:04:01:: 1 -1 strain%2:35:01:: 4 -1 strain%2:29:00:: 5 -1 strain%1:14:01:: 6 -1 strain%1:07:00:: 7 -1 straighten_out%2:35:01:: 2 -1 straighten_out%2:30:02:: 3 -1 straighten%2:30:00:: 4 -1 straightaway%4:02:00:: 1 -1 straightaway%1:06:00:: 1 -1 straight-out%5:00:00:unqualified:02 1 -1 straight-backed%5:00:00:erect:00 1 -1 straight%5:00:00:accurate:00 5 -1 straight%4:02:00:: 3 -1 straggling%5:00:00:untidy:00 1 -1 straggle%2:38:01:: 2 -1 strafe%2:33:00:: 1 -1 straddle%2:42:02:: 2 -1 stow%2:35:01:: 1 -1 stow%2:35:00:: 2 -1 stove%1:06:00:: 2 -1 stout%5:00:00:robust:00 3 -1 story%1:10:02:: 6 -1 stormy%5:00:00:unpeaceful:00 2 -1 storm_cloud%1:17:00:: 1 -1 storm%2:35:00:: 2 -1 storied%5:00:00:glorious:00 1 -1 storeroom%1:06:00:: 1 -1 storeria%1:05:00:: 1 -1 storekeeper%1:18:00:: 1 -1 stored_up%5:00:00:concentrated:00 1 -1 store%2:35:00:: 3 -1 store%1:06:03:: 3 -1 storage%1:06:00:: 2 -1 storage%1:04:00:: 3 -1 stopping_point%1:28:00:: 1 -1 stop_dead%2:38:00:: 1 -1 stop%2:42:13:: 9 -1 stop%1:26:00:: 4 -1 stop%1:15:00:: 5 -1 stoop_to%2:32:00:: 1 -1 stoop%1:04:00:: 1 -1 stonily%4:02:00:: 1 -1 stone-gray%5:00:00:achromatic:00 1 -1 stone-dead%5:00:00:dead:01 1 -1 stone%2:35:00:: 1 -1 stoke%2:41:00:: 1 -1 stoical%5:00:00:unemotional:00 1 -1 stoic%1:18:00:: 2 -1 stocky%5:00:00:fat:01 1 -1 stocking%1:04:00:: 2 -1 stockbroker%1:18:00:: 1 -1 stockade%1:06:01:: 1 -1 stock%5:00:00:unoriginal:00 1 -1 stock%1:21:02:: 4 -1 stock%1:21:01:: 5 -1 stock%1:14:01:: 6 -1 stock%1:14:00:: 7 -1 stock%1:13:01:: 8 -1 stitch%2:35:00:: 1 -1 stitch%1:06:00:: 1 -1 stirring%1:04:00:: 1 -1 stir_up%2:41:00:: 1 -1 stir_up%2:37:00:: 2 -1 stir_up%2:35:00:: 3 -1 stir%2:37:00:: 6 -1 stir%2:36:00:: 7 -1 stinking%5:00:00:bad:00 1 -1 stinging%5:00:00:painful:00 1 -1 sting%2:39:02:: 1 -1 sting%2:35:01:: 2 -1 sting%2:32:00:: 3 -1 stimulating%3:00:00:: 1 -1 stimulate%2:39:00:: 6 -1 stimulant%1:09:00:: 1 -1 stimulant%1:06:00:: 2 -1 stilted%5:00:00:affected:01 1 -1 stilt%1:06:01:: 1 -1 stillness%1:26:00:: 2 -1 still%2:37:00:: 1 -1 still%2:30:00:: 2 -1 stifle%2:30:00:: 2 -1 stiffness%1:07:01:: 2 -1 stiffness%1:07:00:: 1 -1 stiffening%1:04:00:: 1 -1 stiff-backed%5:00:00:backed:00 1 -1 stiff%5:00:00:strong:00 3 -1 stiff%5:00:00:formal:01 4 -1 stickpin%1:06:00:: 1 -1 stick_together%2:41:00:: 1 -1 stick_out%2:42:01:: 1 -1 stick_out%2:42:00:: 2 -1 stick_in%2:32:00:: 1 -1 stick_in%2:30:00:: 2 -1 stewing%1:12:00:: 1 -1 steward%1:18:00:: 1 -1 stetson%1:06:00:: 1 -1 sternum%1:08:00:: 1 -1 sternocleido_mastoideus%1:08:00:: 1 -1 sternly%4:02:00:: 1 -1 sternal%3:01:00:: 1 -1 sterling%5:00:00:superior:02 1 -1 sterile%5:00:00:infertile:00 1 -1 stereophonic%5:00:00:binaural:00 1 -1 stereo%5:00:00:binaural:00 1 -1 steprelationship%1:24:00:: 1 -1 stepping_stone%1:17:00:: 1 -1 steppe%1:17:00:: 1 -1 stepchild%1:18:00:: 1 -1 step_to_the_fore%2:38:00:: 1 -1 step_forward%2:38:00:: 1 -1 step_down%2:41:00:: 1 -1 step-by-step%5:00:00:gradual:01 1 -1 step%1:26:00:: 5 -1 stentorian%5:00:00:full:01 1 -1 stenography%1:10:00:: 1 -1 stemmed%3:00:00:: 1 -1 stem%1:06:02:: 3 -1 stellar%5:00:00:major:06 1 -1 stein%1:06:00:: 1 -1 steering_wheel%1:06:00:: 1 -1 steer%2:41:00:: 3 -1 steeply%4:02:00:: 1 -1 steel_trap%1:09:00:: 1 -1 steel_blue%1:07:00:: 1 -1 steel%2:37:00:: 1 -1 steel%1:06:01:: 2 -1 steed%1:05:00:: 1 -1 steamship%1:06:00:: 1 -1 steaming%5:00:00:wet:01 1 -1 steamed%5:00:00:cooked:00 1 -1 steamboat%1:06:00:: 1 -1 steam_turbine%1:06:00:: 1 -1 steam_shovel%1:06:00:: 1 -1 steam_bath%1:06:00:: 1 -1 steam%2:43:00:: 2 -1 stealthy%5:00:00:concealed:00 1 -1 stealth%1:04:00:: 1 -1 stealing%1:04:00:: 1 -1 steal_away%2:38:00:: 1 -1 steakhouse%1:06:00:: 1 -1 steady%2:35:00:: 2 -1 steadied%5:00:00:steady:00 1 -1 stay_together%2:41:00:: 1 -1 stay_in_place%2:38:00:: 1 -1 stay_away_from%2:42:00:: 1 -1 status%1:26:01:: 2 -1 statuette%1:06:00:: 1 -1 statuary%1:14:00:: 1 -1 statistician%1:18:01:: 1 -1 station_house%1:06:00:: 1 -1 static%5:00:00:nonmoving:00 2 -1 statesmanship%1:07:00:: 1 -1 statesmanlike%3:00:00:: 1 -1 staten_island%1:15:00:: 1 -1 statement%1:10:05:: 4 -1 statement%1:10:04:: 3 -1 stately%5:00:00:impressive:00 1 -1 state_treasurer%1:18:00:: 1 -1 state_prison%1:06:00:: 1 -1 state_of_matter%1:26:00:: 1 -1 state_of_affairs%1:26:00:: 1 -1 state_department%1:14:01:: 2 -1 state-supported%5:00:00:public:00 1 -1 state%5:00:01:public:00 2 -1 starving%5:00:00:malnourished:00 1 -1 starved%5:00:00:malnourished:00 1 -1 starve%2:34:03:: 3 -1 starvation%1:04:00:: 2 -1 startup%1:04:01:: 1 -1 starting_pitcher%1:18:00:: 1 -1 starting%5:00:00:protrusive:00 1 -1 starting%5:00:00:opening:00 2 -1 starter%1:06:02:: 1 -1 start%2:33:00:: 11 -1 start%1:04:01:: 4 -1 start%1:04:00:: 5 -1 starlight%1:19:00:: 1 -1 starlet%1:18:00:: 1 -1 stark%5:00:00:unconditional:00 1 -1 stardom%1:26:00:: 1 -1 starboard%1:06:00:: 1 -1 star-spangled_banner%1:10:01:: 1 -1 star%5:00:00:major:06 1 -1 star%1:18:00:: 4 -1 staple%1:06:00:: 1 -1 standstill%1:26:00:: 1 -1 standing_ovation%1:10:00:: 1 -1 standing%5:00:00:permanent:00 2 -1 standby%1:06:00:: 1 -1 standardize%2:30:00:: 1 -1 standard_of_measurement%1:24:00:: 1 -1 stand_watch%2:41:00:: 1 -1 stand_sentinel%2:41:00:: 1 -1 stand_out%2:38:00:: 3 -1 stand_in%2:40:00:: 1 -1 stand_for%2:42:00:: 3 -1 stand_for%2:31:00:: 4 -1 stand_back%2:42:00:: 1 -1 stand_back%2:35:00:: 2 -1 stand%2:35:01:: 10 -1 stand%2:33:00:: 11 -1 stand%2:32:02:: 12 -1 stand%1:11:00:: 6 -1 stand%1:09:00:: 7 -1 stand%1:06:05:: 8 -1 stand%1:04:01:: 9 -1 stance%1:07:00:: 1 -1 stampede%1:04:00:: 1 -1 stamp_down%2:30:00:: 1 -1 stamp%2:39:00:: 3 -1 stamp%2:35:02:: 4 -1 stamp%2:31:00:: 5 -1 stamp%2:30:00:: 6 -1 stamp%1:25:00:: 1 -1 stamp%1:14:00:: 2 -1 stamp%1:10:01:: 4 -1 stamp%1:10:00:: 3 -1 stammering%5:00:00:inarticulate:00 1 -1 stamen%1:20:00:: 1 -1 stall%2:38:00:: 2 -1 stall%2:30:00:: 3 -1 stalked%3:00:00:: 1 -1 stalk%2:38:01:: 2 -1 stalin%1:18:00:: 1 -1 stale%3:00:00:: 1 -1 stake%2:35:00:: 3 -1 stake%1:10:00:: 2 -1 stake%1:06:01:: 3 -1 stairwell%1:06:00:: 1 -1 stair%1:06:00:: 1 -1 stainless_steel%1:27:00:: 1 -1 stained-glass_window%1:06:00:: 1 -1 stained%5:00:00:painted:00 2 -1 stain%1:26:00:: 3 -1 stagnation%1:26:00:: 1 -1 staginess%1:07:00:: 1 -1 staggering%5:00:00:unsteady:00 1 -1 staggering%5:00:00:impressive:00 2 -1 stagger%2:35:00:: 4 -1 stager%1:18:00:: 1 -1 stage_right%1:15:00:: 1 -1 stage_left%1:15:00:: 1 -1 stage_direction%1:10:00:: 1 -1 stage%1:15:00:: 7 -1 staff%1:14:00:: 3 -1 stacked_heel%1:06:00:: 1 -1 stacked%3:44:00:: 1 -1 stack%2:35:02:: 2 -1 staccato%3:00:00:: 1 -1 stable%2:41:00:: 1 -1 stabilizing%5:00:00:helpful:00 1 -1 stabilized%5:00:00:stable:00 1 -1 stabbed%5:00:00:injured:00 1 -1 stab%2:35:02:: 1 -1 st._petersburg%1:15:01:: 1 -1 squirt%2:35:00:: 1 -1 squire%1:18:00:: 2 -1 squelch%2:30:00:: 1 -1 squeeze_out%2:41:00:: 1 -1 squeeze_out%2:40:01:: 2 -1 squeeze_out%2:35:00:: 3 -1 squeeze%1:04:00:: 1 -1 squeal%1:11:00:: 1 -1 squeaky%5:00:00:high:03 1 -1 squeak%1:11:00:: 1 -1 squatting%1:04:01:: 1 -1 squatting%1:04:00:: 2 -1 squat%1:04:01:: 1 -1 squashed%3:44:00:: 1 -1 squash%2:35:00:: 1 -1 squarely%4:02:05:: 2 -1 squarely%4:02:01:: 3 -1 square_root%1:23:00:: 1 -1 square_block%1:06:00:: 1 -1 square_away%2:30:00:: 1 -1 square%2:42:01:: 3 -1 square%2:38:00:: 4 -1 squalling%5:00:00:unquiet:00 1 -1 squall%2:32:01:: 1 -1 squall%2:32:00:: 2 -1 squadroom%1:06:02:: 1 -1 squadron%1:14:01:: 1 -1 squadron%1:14:00:: 2 -1 squad_car%1:06:00:: 1 -1 squabble%1:10:00:: 1 -1 sputtering%1:11:00:: 1 -1 sputter%2:39:00:: 1 -1 sputter%2:30:00:: 2 -1 spur%2:35:02:: 3 -1 spur%2:35:00:: 4 -1 spur%1:25:00:: 2 -1 spur%1:20:00:: 3 -1 spur%1:06:01:: 5 -1 spur%1:06:00:: 4 -1 spume%1:17:00:: 1 -1 sprue%1:26:00:: 1 -1 sprint%2:38:00:: 1 -1 sprinkle%2:35:00:: 2 -1 springboard%1:06:00:: 1 -1 spring%2:39:00:: 4 -1 spring%2:29:00:: 5 -1 spring%1:15:00:: 4 -1 spring%1:07:00:: 5 -1 spring%1:04:00:: 6 -1 sprightly%5:00:00:spirited:00 1 -1 spreading%5:00:00:wide:00 1 -1 spread-eagle%2:29:00:: 1 -1 spread%5:00:00:prepared:00 2 -1 spread%5:00:00:extended:00 3 -1 spread%1:07:00:: 4 -1 spray-dried%3:44:00:: 1 -1 spray%1:23:00:: 2 -1 spray%1:06:01:: 3 -1 spray%1:06:00:: 4 -1 sprawling%5:00:00:extended:00 1 -1 sprawling%1:07:00:: 1 -1 sprain%2:29:00:: 1 -1 spout%2:38:00:: 1 -1 spout%2:32:00:: 2 -1 spotlight%2:30:01:: 1 -1 spotlight%1:26:00:: 1 -1 spot_promote%2:41:00:: 1 -1 spot%1:10:00:: 6 -1 spot%1:06:00:: 7 -1 spot%1:04:01:: 8 -1 sportswoman%1:18:00:: 1 -1 sports_writer%1:18:00:: 1 -1 sports_jacket%1:06:00:: 1 -1 sports_car%1:06:00:: 1 -1 sports_arena%1:06:00:: 1 -1 sporting%5:00:00:adventurous:00 3 -1 sport_shirt%1:06:00:: 1 -1 sport%2:42:00:: 1 -1 spoonful%1:23:00:: 1 -1 spoon%1:06:00:: 1 -1 sponge%1:27:00:: 1 -1 spokesman%1:18:00:: 1 -1 spoken_word%1:10:00:: 1 -1 spoken%5:00:00:voiced:00 2 -1 spoiled%5:00:00:soft:02 1 -1 spoiled%5:00:00:ill-natured:00 2 -1 spoilables%1:13:00:: 1 -1 spoil%2:30:01:: 3 -1 spoil%2:30:00:: 2 -1 splutter%1:11:00:: 1 -1 splitting%5:00:00:cacophonous:00 1 -1 split_second%1:28:00:: 1 -1 split_end%1:18:00:: 1 -1 split%5:00:02:divided:00 1 -1 split%5:00:00:divided:00 2 -1 split%5:00:00:broken:01 3 -1 splintery%5:00:00:breakable:00 1 -1 splinters%1:27:00:: 1 -1 splinter%2:41:01:: 2 -1 splinter%2:41:00:: 1 -1 splinter%2:30:00:: 3 -1 splicing%1:06:00:: 1 -1 splice%2:35:01:: 1 -1 splenomegaly%1:26:00:: 1 -1 splendidly%4:02:00:: 1 -1 splatter%1:11:00:: 1 -1 splashed%5:00:00:distributed:00 1 -1 splash%2:38:00:: 2 -1 splash%2:35:06:: 4 -1 splash%2:35:00:: 3 -1 splash%1:11:00:: 1 -1 spiteful%5:00:00:malicious:00 1 -1 spite%1:12:00:: 1 -1 spit_out%2:32:00:: 2 -1 spit%2:32:00:: 2 -1 spiritual_being%1:18:00:: 1 -1 spiritual%5:00:00:unworldly:00 2 -1 spiritual%5:00:00:incorporeal:00 3 -1 spirits%1:13:00:: 1 -1 spinnability%1:07:00:: 1 -1 spineless%5:00:00:weak:00 1 -1 spill_over%2:37:00:: 1 -1 spill%2:38:00:: 2 -1 spill%2:35:00:: 3 -1 spiked%5:00:02:pointed:00 1 -1 spike_out%2:30:00:: 1 -1 spike%1:06:00:: 2 -1 spidery%3:01:00:: 1 -1 spider%1:05:00:: 1 -1 spice_up%2:39:00:: 1 -1 spice%2:30:00:: 1 -1 spice%1:27:00:: 1 -1 spic%5:00:00:clean:01 1 -1 spherule%1:25:00:: 1 -1 spherical%5:00:00:round:00 2 -1 spending%1:04:00:: 1 -1 spellbinding%5:00:00:attractive:01 1 -1 spell%2:36:00:: 3 -1 spell%1:28:01:: 3 -1 spell%1:28:00:: 2 -1 speedy%5:00:03:fast:01 2 -1 speed_of_light%1:28:00:: 1 -1 speed_limit%1:10:00:: 1 -1 speed%2:30:02:: 5 -1 speechlessness%1:07:00:: 1 -1 speech%1:10:05:: 5 -1 speech%1:10:04:: 4 -1 speech%1:10:03:: 6 -1 speculatively%4:02:00:: 1 -1 speculative%5:00:00:unsound:00 1 -1 speculative%5:00:00:theoretical:00 2 -1 speculation%1:21:00:: 3 -1 speculate%2:31:00:: 3 -1 specular%5:00:00:reflective:00 1 -1 spectrophotometer%1:06:00:: 1 -1 specter%1:18:00:: 2 -1 spectator_pump%1:06:00:: 1 -1 spectator%1:06:00:: 2 -1 spectacular%5:00:00:dramatic:00 2 -1 spectacles%1:06:00:: 1 -1 speckled%5:00:00:patterned:00 1 -1 speck%1:27:00:: 2 -1 speck%1:23:00:: 3 -1 specify%2:31:02:: 5 -1 specificity%1:07:02:: 2 -1 specification%1:10:00:: 1 -1 specific_heat%1:19:00:: 1 -1 specialist%1:18:01:: 2 -1 special%1:10:00:: 1 -1 spearhead%2:41:00:: 1 -1 spear%1:06:00:: 1 -1 speaking%1:10:01:: 1 -1 speaker%1:18:01:: 3 -1 speakeasy%1:06:00:: 1 -1 speak_up%2:32:00:: 1 -1 spatter%2:35:00:: 1 -1 spatter%1:11:00:: 1 -1 spatter%1:04:00:: 2 -1 spatiality%1:07:00:: 1 -1 spasmodic%5:00:00:unsteady:00 1 -1 spasm%1:26:00:: 1 -1 sparsely%4:02:00:: 1 -1 sparrow%1:05:00:: 1 -1 sparkling%5:00:00:lively:00 2 -1 sparkle%2:43:00:: 1 -1 sparkle%2:30:01:: 2 -1 spark%2:43:00:: 2 -1 spare%5:00:01:unnecessary:00 2 -1 spanish%1:18:00:: 2 -1 spaniel%1:05:00:: 1 -1 spang%2:35:00:: 1 -1 span%1:07:00:: 2 -1 spade%2:35:00:: 1 -1 spade%1:06:00:: 2 -1 spacing%1:28:00:: 1 -1 spacing%1:07:00:: 2 -1 space%1:28:00:: 7 -1 space%1:10:01:: 8 -1 sowbelly%1:13:00:: 1 -1 sow_one's_oats%2:34:00:: 1 -1 sow%2:32:00:: 2 -1 sovereignty%1:26:00:: 1 -1 souvenir%1:06:00:: 1 -1 southwest%1:24:00:: 1 -1 southwest%1:15:00:: 2 -1 southernism%1:10:00:: 1 -1 southern_hemisphere%1:15:00:: 1 -1 southern%5:00:01:south:00 4 -1 southeastern%5:00:00:south:00 1 -1 southeast%1:24:00:: 1 -1 southeast%1:15:00:: 2 -1 southbound%5:00:00:south:00 1 -1 south_sea%1:17:00:: 1 -1 south_dakota%1:15:00:: 1 -1 south_carolinian%1:18:00:: 1 -1 south_carolina%1:15:01:: 1 -1 south_carolina%1:15:00:: 2 -1 south_africa%1:15:00:: 1 -1 south-central%5:00:00:south:00 1 -1 soutane%1:06:00:: 1 -1 souse%2:30:01:: 1 -1 sourly%4:02:00:: 1 -1 sourdough%5:00:00:leavened:00 1 -1 sourdough%1:27:00:: 1 -1 source%1:18:00:: 6 -1 sour%5:00:00:malodorous:00 1 -1 sour%2:39:00:: 2 -1 soup_bowl%1:06:00:: 1 -1 soundproof%5:00:00:impervious:00 1 -1 sound_off%2:32:01:: 1 -1 sound_effect%1:09:00:: 1 -1 sound%5:00:00:healthy:00 5 -1 sound%4:02:01:: 1 -1 sound%3:00:04:: 4 -1 sound%3:00:01:: 3 -1 sound%2:39:02:: 4 -1 sound%2:32:00:: 5 -1 sound%1:10:01:: 6 -1 soulfully%4:02:00:: 1 -1 soul%1:04:00:: 4 -1 sought%3:44:00:: 1 -1 soughingly%4:02:00:: 1 -1 sort%1:18:00:: 3 -1 sorry_for%5:00:00:compassionate:00 1 -1 sorry%5:00:00:penitent:00 4 -1 sorry%5:00:00:cheerless:00 6 -1 sorry%5:00:00:bad:00 5 -1 sorry%3:00:02:: 3 -1 sorrow%1:12:01:: 2 -1 sorrow%1:09:00:: 3 -1 sorrel%5:00:00:chromatic:00 1 -1 sore-eyed%5:00:00:unhealthy:00 1 -1 sore%5:00:00:unpleasant:00 2 -1 sore%5:00:00:angry:00 3 -1 sore%1:26:00:: 1 -1 sopping%5:00:00:wet:01 1 -1 sophisticated%5:00:00:high-tech:00 2 -1 sophisticated%5:00:00:cosmopolitan:02 3 -1 sophisticate%1:18:00:: 1 -1 sooty%5:00:00:achromatic:00 1 -1 soothsayer%1:18:00:: 1 -1 soothe%2:37:00:: 1 -1 soothe%2:29:00:: 2 -1 sonorous%5:00:00:full:01 1 -1 sonority%1:07:00:: 1 -1 sonogram%1:06:00:: 1 -1 sonny_boy%1:18:00:: 1 -1 sonnet%1:10:00:: 1 -1 song%1:10:02:: 4 -1 somersaulting%1:04:00:: 1 -1 someplace%4:02:00:: 1 -1 sombre%5:00:00:cheerless:00 1 -1 somber%5:00:00:colorless:02 2 -1 solvent%1:27:00:: 1 -1 solved%3:00:00:: 1 -1 solvating_agent%1:27:00:: 1 -1 soluble%3:00:01:: 1 -1 solo_blast%1:04:00:: 1 -1 solo%1:04:01:: 1 -1 solitude%1:26:00:: 1 -1 solitary%5:00:00:ungregarious:00 2 -1 solipsism%1:09:00:: 1 -1 solidly%4:02:02:: 1 -1 solidly%4:02:00:: 2 -1 solid%5:00:00:wholesome:00 6 -1 solid%5:00:00:sound:01 7 -1 solid%5:00:00:opaque:00 11 -1 solid%5:00:00:honorable:00 8 -1 solid%5:00:00:hard:01 9 -1 solid%5:00:00:cubic:00 10 -1 solid%1:26:00:: 2 -1 solemnity%1:07:00:: 1 -1 solemn%5:00:00:humorless:00 3 -1 soled%3:00:00:: 1 -1 soldiering%1:09:00:: 1 -1 sold-out%5:00:00:corrupt:00 1 -1 solar_wind%1:19:00:: 1 -1 sojourn%1:04:00:: 1 -1 soiree_musicale%1:14:00:: 1 -1 soil%2:35:00:: 1 -1 softening%5:00:00:soft:01 1 -1 softening%1:22:00:: 1 -1 softened%5:00:00:modulated:00 1 -1 soften%2:30:02:: 2 -1 soft_spot%1:07:00:: 1 -1 soft_glass%1:27:00:: 1 -1 soft-spoken%5:00:00:soft:04 1 -1 soft-shoe%1:04:00:: 1 -1 soft%4:02:00:: 1 -1 sodium%1:27:00:: 1 -1 soddy%1:06:00:: 1 -1 sociologist%1:18:00:: 1 -1 societal%3:01:00:: 1 -1 socialized%5:00:00:liberal:00 1 -1 socialize%2:41:01:: 1 -1 socialize%2:32:00:: 2 -1 sociality%1:07:00:: 1 -1 socialist%1:18:00:: 1 -1 social_status%1:26:00:: 1 -1 social_relation%1:03:00:: 1 -1 social_event%1:11:00:: 1 -1 social_control%1:04:00:: 1 -1 social%1:14:00:: 1 -1 sociably%4:02:01:: 1 -1 sociability%1:07:00:: 1 -1 sobriety%1:26:00:: 1 -1 sobering%5:00:00:serious:00 1 -1 sober%5:00:00:colorless:02 3 -1 soar%2:38:03:: 2 -1 soar%2:38:00:: 3 -1 soar%2:30:00:: 4 -1 soapsuds%1:17:00:: 1 -1 soap_powder%1:06:00:: 1 -1 soap_flakes%1:06:00:: 1 -1 soaking%1:22:00:: 1 -1 soak%2:40:00:: 2 -1 soak%2:30:01:: 3 -1 so_to_speak%4:02:01:: 2 -1 so%4:02:09:: 8 -1 so%4:02:03:: 7 -1 snugly%4:02:01:: 2 -1 snuggled%5:00:00:close:01 1 -1 snug%5:00:00:protected:00 1 -1 snuffer%1:06:01:: 1 -1 snuffbox%1:06:00:: 1 -1 snuff_out%2:30:00:: 1 -1 snub%2:32:00:: 2 -1 snowfall%1:19:00:: 1 -1 snowball%2:30:00:: 1 -1 snout%1:05:00:: 1 -1 snort%2:34:02:: 3 -1 snoring%5:00:00:breathing:00 1 -1 snoop%2:32:00:: 1 -1 snobbish%5:00:00:private:00 1 -1 sniveling%1:04:00:: 1 -1 snip%1:06:00:: 1 -1 snigger%2:29:00:: 1 -1 sniff%2:29:00:: 2 -1 sneering%1:10:01:: 1 -1 sneering%1:10:00:: 2 -1 sneer%2:29:00:: 2 -1 sneak_up%2:38:00:: 1 -1 sneak_out%2:38:00:: 1 -1 sneak%2:41:00:: 2 -1 snatch_up%2:35:00:: 1 -1 snatch%2:35:02:: 2 -1 snarl%2:32:01:: 2 -1 snarl%1:10:01:: 2 -1 snarl%1:10:00:: 1 -1 snare%2:35:00:: 1 -1 snare%1:09:00:: 1 -1 snapshot%1:06:00:: 1 -1 snappy%5:00:00:ill-natured:00 1 -1 snapdragon%1:20:00:: 1 -1 snap_up%2:40:00:: 1 -1 snap_at%2:35:00:: 1 -1 snap%2:39:00:: 6 -1 snap%2:38:01:: 7 -1 snap%2:35:03:: 9 -1 snap%2:35:02:: 10 -1 snap%2:35:00:: 8 -1 snap%1:04:00:: 1 -1 snake_oil%1:27:00:: 1 -1 snake-rail_fence%1:06:00:: 1 -1 snack%1:13:00:: 1 -1 smothering%5:00:00:breathless:00 1 -1 smothered%5:00:00:inhibited:00 1 -1 smother%2:35:01:: 3 -1 smother%2:35:00:: 2 -1 smoothly%4:02:02:: 2 -1 smooth_out%2:40:00:: 1 -1 smooth%5:00:00:unfurrowed:00 4 -1 smooth%5:00:00:graceful:00 5 -1 smooth%3:00:02:: 3 -1 smooth%2:35:01:: 2 -1 smolderingly%4:02:00:: 1 -1 smoldering%5:00:00:live:00 1 -1 smoking_jacket%1:06:00:: 1 -1 smoking%1:04:00:: 1 -1 smirk%2:29:00:: 1 -1 smilingly%4:02:00:: 1 -1 smiling%1:10:00:: 1 -1 smell%1:26:00:: 3 -1 smeared%5:00:00:dirty:01 1 -1 smear%2:35:00:: 1 -1 smashed%5:00:00:broken:01 1 -1 smart_as_a_whip%5:00:00:intelligent:00 1 -1 smart%5:00:00:fashionable:00 5 -1 smart%2:39:00:: 1 -1 smallpox%1:26:00:: 1 -1 smallish%5:00:00:small:00 1 -1 small_voice%1:16:00:: 1 -1 small_fortune%1:23:00:: 1 -1 small_businessman%1:18:00:: 1 -1 small-time%5:00:00:unimportant:00 1 -1 small-scale%5:00:00:small:00 1 -1 small%5:00:00:soft:04 8 -1 small%5:00:00:narrow-minded:00 9 -1 small%5:00:00:minor:06 6 -1 small%5:00:00:lowercase:00 7 -1 small%5:00:00:inferior:01 5 -1 small%3:00:04:: 4 -1 small%1:08:00:: 1 -1 smack%2:39:13:: 2 -1 sly%5:00:00:artful:00 1 -1 slurred%5:00:00:unintelligible:00 1 -1 slurp%2:34:00:: 1 -1 slump%2:38:00:: 2 -1 slump%2:30:00:: 3 -1 slumber%1:26:01:: 1 -1 slum%5:00:00:poor:03 1 -1 sluicing%3:44:00:: 1 -1 sluice%2:43:00:: 1 -1 sluice%2:30:01:: 2 -1 sluice%1:06:00:: 1 -1 sluggishly%4:02:00:: 1 -1 slowness%1:07:00:: 2 -1 slow_up%2:30:03:: 1 -1 slow_down%2:30:04:: 3 -1 slow-moving%5:00:00:slow:01 1 -1 slow%5:00:00:stupid:00 3 -1 slow%2:30:05:: 3 -1 slovenliness%1:26:00:: 1 -1 slot%2:31:00:: 1 -1 slot%1:06:00:: 2 -1 sloping%5:00:00:gradual:02 2 -1 slop%2:38:00:: 2 -1 slop%1:13:00:: 1 -1 sloop%1:06:00:: 1 -1 sloganeering%1:10:00:: 1 -1 slogan%1:10:00:: 1 -1 slivery%3:01:00:: 1 -1 slit%2:35:01:: 1 -1 slit%2:35:00:: 2 -1 slit%1:08:00:: 2 -1 slipping%5:00:00:slippery:00 1 -1 slippered%5:00:00:shod:00 1 -1 slippage%1:22:00:: 1 -1 slip_on%2:29:00:: 1 -1 slip_of_paper%1:06:00:: 1 -1 slip_in%2:32:00:: 1 -1 slip_away%2:38:01:: 1 -1 slip_away%2:38:00:: 2 -1 slip%2:31:00:: 6 -1 slip%1:04:05:: 2 -1 slingshot%1:06:00:: 1 -1 slinging%1:04:00:: 1 -1 slime%2:35:00:: 1 -1 slim-waisted%5:00:00:thin:03 1 -1 sliding%5:00:00:slippery:00 1 -1 slide_action%1:06:00:: 1 -1 slide%1:11:00:: 2 -1 slide%1:10:00:: 3 -1 slide%1:06:03:: 4 -1 slide%1:04:00:: 5 -1 slick%5:00:00:smooth:00 1 -1 slick%1:07:00:: 1 -1 slice_up%2:35:00:: 1 -1 slice%2:35:02:: 2 -1 slice%2:35:00:: 3 -1 slice%2:33:00:: 4 -1 slice%1:26:00:: 3 -1 slice%1:04:00:: 4 -1 slender-waisted%5:00:00:thin:03 1 -1 slender%5:00:00:thin:01 3 -1 slender%5:00:00:small:00 4 -1 slender%5:00:00:graceful:00 5 -1 sleepy-eyed%5:00:00:asleep(p):00 1 -1 sleepwalker%1:18:00:: 1 -1 sleeping_pill%1:06:00:: 1 -1 sleeping_capsule%1:06:00:: 1 -1 sleeping_beauty%1:18:00:: 1 -1 sleeping_bag%1:06:00:: 1 -1 sleeping%1:09:00:: 1 -1 sleepily%4:02:00:: 1 -1 sleeper%1:18:00:: 1 -1 sleep_with%2:35:00:: 1 -1 sleep_off%2:40:00:: 1 -1 sleep_in%2:29:00:: 1 -1 sleep%1:26:02:: 2 -1 sleek%5:00:00:smooth:00 1 -1 slavery%1:04:01:: 2 -1 slaver%2:29:00:: 1 -1 slave_trade%1:04:00:: 1 -1 slave_dealer%1:18:00:: 1 -1 slave%1:18:01:: 2 -1 slaughter%1:11:00:: 2 -1 slate%1:06:00:: 1 -1 slashing%5:00:00:dynamic:00 1 -1 slashed%5:00:00:patterned:00 1 -1 slashed%5:00:00:cut:03 2 -1 slapstick%1:10:00:: 1 -1 slantwise%4:02:00:: 1 -1 slantingly%4:02:00:: 1 -1 slanted%5:00:00:inclined:01 1 -1 slant%2:42:00:: 1 -1 slant%2:31:00:: 2 -1 slant%1:09:00:: 1 -1 slant%1:07:00:: 2 -1 slam_on%2:35:00:: 1 -1 slain%1:14:00:: 1 -1 slacken%2:30:03:: 2 -1 slack_off%2:30:00:: 1 -1 skyscraper%1:06:00:: 1 -1 skylark%2:38:00:: 1 -1 skunk%1:18:00:: 1 -1 skullcap%1:06:00:: 1 -1 skulking%1:04:00:: 1 -1 skulk%2:42:00:: 1 -1 skit%1:04:00:: 1 -1 skirt%2:38:00:: 2 -1 skirmish%2:33:00:: 1 -1 skip%2:42:00:: 2 -1 skip%2:38:00:: 3 -1 skin_perceptiveness%1:09:00:: 1 -1 skimming%1:04:00:: 1 -1 skim_over%2:31:00:: 1 -1 skim%2:38:00:: 1 -1 skim%2:35:00:: 2 -1 sketch_pad%1:06:00:: 1 -1 sketch_map%1:06:00:: 1 -1 sketch%2:32:00:: 2 -1 skepticism%1:09:00:: 1 -1 skeet%1:04:00:: 1 -1 skate_over%2:41:00:: 1 -1 sizzle%2:32:00:: 1 -1 size_of_it%1:26:00:: 1 -1 sixties%1:28:00:: 2 -1 situate%2:35:00:: 2 -1 sitting%3:00:02:: 1 -1 sitting%1:04:01:: 1 -1 sitting%1:04:00:: 2 -1 site%1:15:02:: 2 -1 sit_up%2:38:01:: 2 -1 sit_out%2:42:00:: 1 -1 sit_down%2:35:03:: 3 -1 sit_down%2:35:00:: 2 -1 sit_by%2:41:00:: 1 -1 sit_back%2:41:00:: 2 -1 sit-down%1:04:00:: 1 -1 sit%2:39:00:: 5 -1 sit%2:38:03:: 6 -1 sister-in-law%1:18:00:: 1 -1 sis%1:18:00:: 1 -1 sirloin%1:13:00:: 1 -1 sipper%1:18:00:: 1 -1 sinusoidal%5:00:00:curved:00 1 -1 sinuous%5:00:00:curved:00 1 -1 sintered%3:44:00:: 1 -1 sinning%1:04:00:: 1 -1 sinking%1:11:01:: 2 -1 sinking%1:11:00:: 1 -1 sink%2:38:03:: 8 -1 sink%2:35:00:: 9 -1 sinister%5:00:00:evil:00 2 -1 singularly%4:02:00:: 1 -1 singularity%1:07:01:: 1 -1 singular%5:00:00:strange:00 2 -1 singular%5:00:00:individual:00 3 -1 singsong%2:32:00:: 1 -1 singsong%1:10:00:: 1 -1 singly%4:02:00:: 1 -1 single_out%2:41:00:: 2 -1 single-spaced%5:00:00:spaced:00 1 -1 single-foot%2:38:00:: 1 -1 singe%2:30:00:: 1 -1 sing%2:32:01:: 5 -1 sing%2:32:00:: 4 -1 sine_qua_non%1:09:00:: 1 -1 sine_die%4:02:00:: 1 -1 sincerity%1:07:02:: 3 -1 simulation%1:04:01:: 1 -1 simplified%5:00:00:simple:02 2 -1 simplicity%1:07:04:: 2 -1 simplex%5:00:00:unidirectional:00 1 -1 simple-minded%5:00:00:naive:00 1 -1 simple%5:00:00:unpretentious:00 5 -1 simple%5:00:00:retarded:00 6 -1 simple%5:00:00:ordinary:00 7 -1 simile%1:10:00:: 1 -1 silvery%5:00:00:euphonious:00 1 -1 silvery%5:00:00:bright:00 2 -1 silver_gray%1:07:00:: 1 -1 silver_dollar%1:21:00:: 1 -1 silver%5:00:00:achromatic:00 3 -1 silver%1:06:00:: 4 -1 silly%5:00:00:frivolous:00 2 -1 silky%5:00:00:smooth:00 1 -1 silkworm%1:05:01:: 1 -1 silk%1:27:00:: 2 -1 silicone%1:27:00:: 1 -1 silicate%1:27:00:: 1 -1 silhouette%2:39:00:: 1 -1 silhouette%2:36:00:: 2 -1 silenced%3:00:00:: 1 -1 silence%1:07:02:: 4 -1 signpost%1:10:00:: 1 -1 signore%1:18:00:: 1 -1 signify%2:32:00:: 2 -1 significantly%4:02:01:: 3 -1 signature%1:10:00:: 1 -1 signature%1:07:00:: 2 -1 signaling%1:10:00:: 1 -1 signal-to-noise%1:24:00:: 1 -1 signal%1:16:00:: 2 -1 sign_up%2:33:00:: 2 -1 sign_of_the_cross%1:10:00:: 1 -1 sign%2:32:01:: 5 -1 sign%1:26:00:: 6 -1 sign%1:24:00:: 7 -1 sign%1:11:00:: 8 -1 sign%1:10:01:: 9 -1 sight%1:23:00:: 8 -1 sift%2:38:00:: 1 -1 sift%2:35:00:: 2 -1 sieve%1:06:00:: 1 -1 siding%1:06:01:: 1 -1 sidewinder%1:05:00:: 1 -1 sideboard%1:06:02:: 1 -1 side_yard%1:06:00:: 1 -1 side_entrance%1:06:00:: 1 -1 side%2:33:13:: 1 -1 side%1:14:01:: 8 -1 side%1:13:00:: 9 -1 side%1:10:00:: 10 -1 sickroom%1:06:00:: 1 -1 sickly%5:00:00:unhealthy:00 1 -1 sickish%5:00:00:ill:01 1 -1 sicken%2:29:00:: 2 -1 sick%5:00:00:insane:00 3 -1 sick%5:00:00:displeased:00 4 -1 sick%1:14:00:: 1 -1 sicily%1:15:00:: 1 -1 siamese%1:10:00:: 1 -1 shyly%4:02:00:: 1 -1 shy%2:38:00:: 1 -1 shut_up%5:00:00:confined:00 1 -1 shut_up%2:35:00:: 2 -1 shut_up%2:30:00:: 3 -1 shut_off%2:42:00:: 1 -1 shut%2:41:00:: 3 -1 shunt%2:38:00:: 1 -1 shunt%1:06:01:: 2 -1 shuffling%1:04:01:: 1 -1 shuffle%2:38:01:: 2 -1 shuddering%5:00:00:unsteady:00 1 -1 shucks%1:07:00:: 1 -1 shrug_off%2:32:00:: 1 -1 shrubbery%1:15:00:: 1 -1 shrubbery%1:14:00:: 2 -1 shroud%2:35:01:: 1 -1 shriveled%5:00:00:dry:01 1 -1 shrink%2:30:00:: 4 -1 shrine%1:06:00:: 1 -1 shrilling%5:00:00:high:03 1 -1 shrieking%1:10:00:: 1 -1 shrieked%3:44:00:: 1 -1 shriek%1:11:00:: 2 -1 shrewish%5:00:00:ill-natured:00 1 -1 shrewdly%4:02:00:: 1 -1 shred%2:35:00:: 1 -1 showy%5:00:00:ostentatious:00 1 -1 showy%5:00:00:fancy:00 2 -1 showroom%1:06:00:: 1 -1 showpiece%1:06:00:: 1 -1 showing%1:10:01:: 1 -1 showing%1:04:00:: 2 -1 showerhead%1:06:00:: 1 -1 shower%1:19:00:: 3 -1 shower%1:11:00:: 4 -1 shovel%2:35:00:: 1 -1 shove_along%2:38:00:: 1 -1 shout_out%2:32:00:: 1 -1 shouldered%3:01:00:: 1 -1 shoulder_in%2:38:00:: 1 -1 shoulder_bag%1:06:00:: 1 -1 should%2:42:02:: 1 -1 should%2:42:01:: 2 -1 shot%1:26:00:: 4 -1 shot%1:18:00:: 5 -1 shot%1:10:01:: 6 -1 shot%1:04:03:: 7 -1 shorts%1:06:02:: 1 -1 shortness%1:07:03:: 1 -1 shortened%5:00:01:short:01 1 -1 shortcut%1:06:00:: 1 -1 short_and_sweet%5:00:00:short:02 1 -1 short-range%5:00:00:short:02 1 -1 short-change%2:41:00:: 1 -1 short%4:02:04:: 1 -1 shopper%1:18:00:: 1 -1 shopkeeper%1:18:00:: 1 -1 shop_at%2:41:00:: 1 -1 shop%2:41:00:: 2 -1 shop%1:06:01:: 2 -1 shooter%1:06:00:: 1 -1 shoot_down%2:38:01:: 1 -1 shoot_down%2:38:00:: 2 -1 shoot%2:38:01:: 7 -1 shoot%2:35:01:: 8 -1 shoot%2:32:00:: 9 -1 shoo_away%2:38:00:: 1 -1 shoestring%1:06:00:: 1 -1 shoes%1:26:00:: 1 -1 shoelace%1:06:00:: 1 -1 shoeful%1:23:00:: 1 -1 shoe_store%1:06:00:: 1 -1 shoe_repairing%1:04:00:: 1 -1 shoe_leather%1:27:00:: 1 -1 shockingly%4:02:00:: 1 -1 shocking%5:00:00:sensational:00 1 -1 shocked%5:00:00:afraid(p):00 1 -1 shock_therapy%1:04:00:: 1 -1 shock_absorber%1:06:00:: 1 -1 shock%1:26:00:: 4 -1 shock%1:11:01:: 6 -1 shock%1:11:00:: 5 -1 shivery%5:00:00:cold:01 1 -1 shivering%5:00:00:unsteady:00 1 -1 shivering%1:26:00:: 1 -1 shiver%1:04:00:: 1 -1 shit%1:27:00:: 1 -1 shit%1:10:00:: 2 -1 shirtsleeves%1:26:00:: 1 -1 shirtsleeve%1:06:00:: 1 -1 shirtfront%1:06:01:: 1 -1 shirt%2:29:00:: 1 -1 shirking%1:04:00:: 1 -1 shipyard%1:06:00:: 1 -1 shipwreck%1:06:00:: 1 -1 shipshape%5:00:00:tidy:00 1 -1 shipbuilding%1:04:00:: 1 -1 shining%1:04:00:: 1 -1 shine%2:42:04:: 5 -1 shine%2:39:06:: 6 -1 shinbone%1:08:00:: 1 -1 shimmy%2:38:00:: 1 -1 shimmy%2:36:00:: 2 -1 shimmering%5:00:00:bright:00 1 -1 shim%1:06:00:: 1 -1 shift%2:30:04:: 6 -1 shift%2:30:01:: 7 -1 shibboleth%1:10:01:: 1 -1 shibboleth%1:10:00:: 2 -1 shepherd%2:41:01:: 1 -1 shepherd%1:18:01:: 1 -1 shepherd%1:18:00:: 2 -1 shenanigan%1:04:01:: 2 -1 shelve%2:42:00:: 1 -1 sheltered_workshop%1:06:00:: 1 -1 shelter%2:42:00:: 1 -1 shell%2:33:00:: 1 -1 sheet_music%1:10:00:: 1 -1 sheer%5:00:00:steep:00 3 -1 sheer%2:38:00:: 1 -1 sheepskin%1:27:00:: 1 -1 sheepman%1:18:00:: 1 -1 sheep_rot%1:26:00:: 1 -1 sheep%1:18:01:: 2 -1 shed%1:06:00:: 1 -1 sheath%1:08:00:: 2 -1 sheath%1:06:01:: 3 -1 sheaf%1:06:00:: 1 -1 shaving%1:17:00:: 2 -1 shaven%3:00:00:: 1 -1 shave%2:35:01:: 2 -1 shattering%5:00:00:loud:00 1 -1 sharpness%1:09:01:: 1 -1 sharpen%2:35:00:: 1 -1 sharpen%2:30:03:: 4 -1 sharpen%2:30:01:: 2 -1 sharpen%2:30:00:: 3 -1 sharp_tongue%1:10:00:: 1 -1 sharp-worded%5:00:00:unpleasant:00 1 -1 sharp-limbed%5:00:00:limbed:00 1 -1 sharp%5:00:00:sour:00 11 -1 sharp%4:02:00:: 1 -1 sharp%3:00:00:: 10 -1 shark%1:05:00:: 1 -1 sharer%1:18:00:: 1 -1 sharecrop_farmer%1:18:00:: 1 -1 share%2:32:00:: 5 -1 shard%1:06:00:: 1 -1 shaping%1:22:00:: 1 -1 shapely%3:00:00:: 1 -1 shape%1:26:00:: 6 -1 shanty%1:06:00:: 1 -1 shantung%1:06:00:: 1 -1 shamrock%1:20:02:: 1 -1 shamefacedly%4:02:00:: 1 -1 shame%2:41:00:: 1 -1 shame%1:11:00:: 3 -1 shallowness%1:07:01:: 1 -1 shaky%5:00:00:unstable:00 1 -1 shake_up%2:38:00:: 1 -1 shake%2:38:04:: 7 -1 shake%2:30:01:: 8 -1 shaggy%5:00:00:ungroomed:00 1 -1 shaft_of_light%1:19:00:: 1 -1 shaft%1:06:00:: 3 -1 shadowy%5:00:02:shaded:01 1 -1 shadowed%5:00:00:shaded:01 1 -1 shadow%1:12:00:: 4 -1 shadow%1:10:00:: 5 -1 shadow%1:07:00:: 6 -1 shading%1:07:00:: 1 -1 shading%1:04:00:: 2 -1 shade%2:36:00:: 2 -1 shade%2:35:00:: 3 -1 shack_up%2:42:00:: 1 -1 shack%1:06:00:: 1 -1 sforzando%1:10:01:: 1 -1 sexy%3:00:00:: 1 -1 sexually%4:02:00:: 2 -1 sexual_union%1:04:00:: 1 -1 sexual_relation%1:04:00:: 1 -1 sexual_arousal%1:26:00:: 1 -1 sexual_activity%1:04:00:: 1 -1 sexual%3:00:00:: 2 -1 sextet%1:10:00:: 1 -1 sex_activity%1:04:00:: 1 -1 sewing%1:04:00:: 1 -1 sewer_line%1:06:00:: 1 -1 sewer%1:18:00:: 2 -1 severing%1:04:00:: 1 -1 severely%4:02:03:: 3 -1 severe%5:00:02:nonindulgent:00 4 -1 severe%5:00:00:critical:03 5 -1 severalty%1:26:00:: 1 -1 seventy%5:00:00:cardinal:00 1 -1 setup%1:07:00:: 2 -1 settlement%1:09:00:: 5 -1 settled%5:00:00:inhabited:00 3 -1 settled%3:00:01:: 2 -1 settle_on%2:30:00:: 1 -1 settle_down%2:37:00:: 3 -1 settle%2:38:00:: 10 -1 settle%2:35:01:: 11 -1 settle%2:32:04:: 12 -1 settle%2:32:01:: 13 -1 setting%1:06:01:: 3 -1 set_up%2:35:04:: 10 -1 set_off%2:42:00:: 5 -1 set_off%2:30:01:: 6 -1 set_in%2:42:00:: 1 -1 set_down%2:38:01:: 2 -1 set_down%2:35:02:: 4 -1 set_down%2:35:01:: 3 -1 set_decoration%1:06:00:: 1 -1 set_back%2:42:01:: 1 -1 set_back%2:41:00:: 2 -1 set_apart%2:31:00:: 1 -1 set_apart%2:30:01:: 2 -1 set_about%2:36:00:: 2 -1 set_ablaze%2:43:00:: 1 -1 set-apart%5:00:00:separate:00 1 -1 set%5:00:00:arranged:00 4 -1 set%2:36:12:: 13 -1 set%2:30:07:: 14 -1 set%1:09:01:: 6 -1 set%1:04:01:: 7 -1 servile%5:00:00:slave(a):00 3 -1 serviette%1:06:00:: 1 -1 service_entrance%1:06:00:: 1 -1 service%2:30:00:: 2 -1 serve_up%2:34:00:: 1 -1 serological%3:01:00:: 1 -1 seriousness%1:07:01:: 2 -1 serious_music%1:10:00:: 1 -1 serialism%1:10:00:: 1 -1 serial%5:00:00:ordered:00 1 -1 serge%1:06:00:: 1 -1 serenity%1:12:00:: 2 -1 serenade%2:36:00:: 1 -1 serenade%1:10:01:: 1 -1 sequestration%1:04:00:: 1 -1 sequential%5:00:00:ordered:00 1 -1 sequence%2:31:00:: 1 -1 septation%1:04:00:: 1 -1 sept%1:14:00:: 2 -1 sepia%1:07:00:: 1 -1 separation%1:07:00:: 3 -1 separation%1:04:03:: 4 -1 separation%1:04:00:: 5 -1 separated%5:00:02:divided:00 3 -1 separate%2:41:02:: 8 -1 separate%2:38:00:: 9 -1 separate%2:30:03:: 10 -1 sentry%1:18:00:: 1 -1 sentinel%1:18:00:: 1 -1 sentimentalize%2:30:00:: 1 -1 sentimentality%1:07:00:: 1 -1 sentimentalist%1:18:00:: 1 -1 sentimental%5:00:00:tender:03 1 -1 sentimental%5:00:00:emotional:00 2 -1 sentient%3:00:00:: 1 -1 sentence_structure%1:09:00:: 1 -1 sensuous%5:00:00:aesthetic:00 1 -1 sensual%5:00:00:physical:00 1 -1 sensibly%4:02:00:: 1 -1 senseless%5:00:00:unconscious:00 2 -1 sense_organ%1:08:00:: 1 -1 sense_of_responsibility%1:09:00:: 1 -1 sense_of_direction%1:09:00:: 1 -1 sense%1:09:06:: 7 -1 sensation%1:18:00:: 2 -1 sensation%1:12:00:: 3 -1 senora%1:18:00:: 1 -1 senor%1:18:00:: 1 -1 seniority%1:26:00:: 1 -1 senior_high%1:14:00:: 1 -1 senior_class%1:14:00:: 1 -1 senior%5:00:00:last:00 2 -1 senile%5:00:00:old:02 1 -1 send_word%2:32:00:: 1 -1 send_in%2:35:00:: 1 -1 send_away%2:41:01:: 1 -1 send-off%1:10:00:: 1 -1 senatorial%3:01:00:: 1 -1 semitrance%1:09:00:: 1 -1 semiskilled%5:00:00:unskilled:00 1 -1 semipublic%5:00:00:public:00 1 -1 semiprecious%5:00:00:valuable:00 1 -1 seminarian%1:18:00:: 1 -1 semiminor_axis%1:09:00:: 1 -1 semiliterate%5:00:01:illiterate:00 2 -1 semiempirical%5:00:00:empirical:00 1 -1 semi-processed%5:00:00:processed:00 1 -1 semblance%1:07:00:: 1 -1 sell_out%2:32:10:: 2 -1 self_acceptance%1:07:00:: 1 -1 self-will%1:07:01:: 2 -1 self-will%1:07:00:: 1 -1 self-whispered%5:00:00:inward:00 1 -1 self-sacrifice%1:04:00:: 1 -1 self-reliant%5:00:00:independent:00 1 -1 self-reliance%1:26:00:: 1 -1 self-pride%1:12:00:: 1 -1 self-preservation%1:04:00:: 1 -1 self-locking%5:00:00:automatic:00 1 -1 self-interest%1:07:01:: 1 -1 self-indulgence%1:07:00:: 1 -1 self-imposed%5:00:00:voluntary:01 1 -1 self-help%1:04:00:: 1 -1 self-flagellation%1:04:00:: 1 -1 self-enclosed%5:00:00:enclosed:00 1 -1 self-employed%5:00:00:employed:00 1 -1 self-effacing%5:00:00:unassertive:00 1 -1 self-effacement%1:04:00:: 1 -1 self-discipline%1:07:00:: 1 -1 self-destructive%5:00:00:dangerous:00 1 -1 self-destruction%1:04:00:: 1 -1 self-defense%1:04:00:: 1 -1 self-defeating%5:00:00:unsuccessful:00 1 -1 self-control%1:04:00:: 1 -1 self-consistent%5:00:00:consistent:00 1 -1 self-consciously%4:02:02:: 2 -1 self-consciously%4:02:00:: 1 -1 self-conscious%5:00:00:conscious:00 1 -1 self-conceited%5:00:00:proud:00 1 -1 self-awareness%1:09:00:: 1 -1 self-aggrandisement%1:04:00:: 1 -1 self%3:01:00:: 2 -1 selectman%1:18:00:: 1 -1 selective_service_system%1:14:00:: 1 -1 selective_service%1:14:00:: 1 -1 selection%1:09:00:: 3 -1 seizure%1:04:01:: 2 -1 seismic%5:00:00:unstable:00 1 -1 segregationist%1:18:00:: 1 -1 segmental%5:00:02:divided:00 1 -1 segmental%5:00:00:divided:00 2 -1 seething%5:00:00:agitated:02 1 -1 seer%1:18:00:: 1 -1 seeping%5:00:00:leaky:00 1 -1 seepage%1:11:00:: 1 -1 seen%5:00:00:witnessed:00 1 -1 seeking%3:44:00:: 1 -1 seeker%1:18:00:: 1 -1 seedpod%1:20:00:: 1 -1 seedling%1:20:00:: 1 -1 seed%2:35:00:: 1 -1 see_eye_to_eye%2:32:00:: 1 -1 see%2:41:00:: 17 -1 see%2:39:05:: 18 -1 see%2:31:08:: 19 -1 sedulously%4:02:00:: 1 -1 seductive%3:00:00:: 1 -1 seduction%1:04:00:: 1 -1 sedentary%5:00:00:inactive:01 1 -1 sedate%5:00:00:decorous:00 1 -1 security%1:12:00:: 3 -1 securely%4:02:00:: 1 -1 secured%5:00:00:fastened:00 1 -1 secure%5:00:01:safe:01 4 -1 secure%3:00:04:: 3 -1 secure%2:32:00:: 4 -1 secularize%2:30:00:: 1 -1 secularist%1:18:00:: 1 -1 secularism%1:09:00:: 1 -1 sectioned%5:00:00:divided:00 1 -1 section%1:14:02:: 5 -1 section%1:09:00:: 6 -1 sect%1:14:01:: 1 -1 secretly%4:02:02:: 2 -1 secretion%1:08:00:: 2 -1 secrete%2:29:00:: 1 -1 secretary_general%1:18:00:: 1 -1 secretarial_school%1:14:00:: 1 -1 secret%5:00:03:covert:00 4 -1 secret%5:00:00:inward:00 5 -1 secrecy%1:26:00:: 2 -1 secondhand%5:00:00:secondary:01 1 -1 secondhand%5:00:00:old:01 2 -1 secondhand%4:02:00:: 1 -1 second_thought%1:09:00:: 1 -1 second_hand%1:18:00:: 1 -1 second_cousin%1:18:00:: 1 -1 second_coming%1:11:00:: 1 -1 second_baseman%1:18:00:: 1 -1 second_base%1:06:00:: 1 -1 second-rate%5:00:00:inferior:02 1 -1 secluded%5:00:00:private:00 1 -1 seclude%2:30:00:: 1 -1 secessionist%1:18:00:: 1 -1 seaweed%1:05:00:: 1 -1 seawater%1:27:00:: 1 -1 seat%1:15:00:: 5 -1 search_warrant%1:10:00:: 1 -1 seaquake%1:11:00:: 1 -1 sealing%1:04:00:: 1 -1 seal_off%2:33:00:: 2 -1 seal_of_approval%1:10:00:: 1 -1 seal%1:06:00:: 2 -1 seahorse%1:05:01:: 1 -1 seagull%1:05:00:: 1 -1 seafaring%5:00:00:sea(a):00 1 -1 seafarer%1:18:00:: 1 -1 seacoast%1:17:00:: 1 -1 sea_spray%1:27:00:: 1 -1 sea_power%1:07:00:: 1 -1 sea_bottom%1:17:00:: 1 -1 sea_bird%1:05:00:: 1 -1 sea%3:00:00:: 1 -1 sculptured%5:00:00:carved:00 1 -1 scuff%2:38:00:: 1 -1 scud%2:38:00:: 1 -1 scrutin_uninominal_voting_system%1:09:00:: 1 -1 scrutin_de_liste_system%1:09:00:: 1 -1 scrupulously%4:02:00:: 1 -1 scrubbing%1:04:00:: 1 -1 scrub_oak%1:20:00:: 1 -1 scrub%2:29:00:: 2 -1 scrounge%2:40:00:: 1 -1 scrimmage%2:36:00:: 1 -1 scrimmage%1:04:01:: 1 -1 scrimmage%1:04:00:: 2 -1 scribble%2:32:00:: 1 -1 screwdriver%1:06:00:: 1 -1 screw_up%2:30:00:: 1 -1 screw-loose%5:00:00:insane:00 1 -1 screenplay%1:10:00:: 1 -1 screen_pass%1:04:00:: 1 -1 screen%1:06:00:: 5 -1 screechy%5:00:00:high:03 1 -1 screeching%5:00:00:noisy:00 1 -1 screeching%1:11:00:: 1 -1 screech%1:11:00:: 1 -1 screech%1:10:00:: 2 -1 screaming%5:00:00:intense:00 2 -1 screaming%1:10:00:: 1 -1 scream%2:39:00:: 3 -1 scream%1:11:00:: 2 -1 scrawled%5:00:00:written:00 1 -1 scrawl%2:36:00:: 1 -1 scratchy%5:00:00:rough:00 1 -1 scratching%5:00:00:sharp:04 1 -1 scratchiness%1:07:00:: 1 -1 scratched%5:00:00:damaged:00 1 -1 scratch%2:39:00:: 3 -1 scratch%1:26:00:: 1 -1 scraping%1:17:00:: 1 -1 scraping%1:11:00:: 2 -1 scrapheap%1:15:00:: 1 -1 scrape_up%2:35:00:: 1 -1 scrape%2:36:00:: 2 -1 scrape%2:35:02:: 3 -1 scrap%5:00:00:useless:00 1 -1 scrap%2:40:00:: 1 -1 scrap%1:17:00:: 1 -1 scrambled%5:00:00:disorganized:00 1 -1 scramble%1:04:01:: 1 -1 scraggly%5:00:00:untidy:00 1 -1 scowl%1:10:00:: 1 -1 scouting%1:04:00:: 1 -1 scout%1:18:01:: 1 -1 scouring%1:04:01:: 1 -1 scouring%1:04:00:: 2 -1 scourge%1:06:00:: 1 -1 scoured%5:00:00:worn:00 1 -1 scour%2:35:03:: 1 -1 scour%2:35:01:: 2 -1 scoundrel%1:18:00:: 1 -1 scotchman%1:18:00:: 1 -1 scotch_and_soda%1:13:00:: 1 -1 scot_free%4:02:00:: 1 -1 scorn%2:32:00:: 2 -1 scorn%1:10:00:: 2 -1 scoreboard%1:06:00:: 1 -1 score%1:16:00:: 5 -1 score%1:09:01:: 6 -1 scorching%5:00:01:hot:01 1 -1 scorched%5:00:00:dry:01 1 -1 scorch%2:30:03:: 1 -1 scoop_out%2:35:00:: 1 -1 scoop%1:23:00:: 1 -1 scold%2:32:01:: 2 -1 sclerotic%3:01:01:: 1 -1 science%1:09:02:: 3 -1 schoolmistress%1:18:00:: 1 -1 schoolmaster%1:18:00:: 1 -1 schoolmarm%1:18:00:: 1 -1 schooling%1:04:00:: 1 -1 schoolgirlish%5:00:00:young:00 1 -1 school_text%1:10:00:: 1 -1 school_term%1:28:00:: 1 -1 school_teacher%1:18:00:: 1 -1 school%1:28:00:: 5 -1 scholastically%4:02:00:: 1 -1 scholastic%3:01:01:: 2 -1 scholastic%1:18:00:: 1 -1 scholar%1:18:01:: 2 -1 schizophrenic%3:01:00:: 2 -1 schizophrenic%1:18:00:: 1 -1 schism%1:04:00:: 1 -1 scherzo%1:10:00:: 1 -1 scheme%2:31:00:: 1 -1 scheme%1:10:00:: 2 -1 scheduled%3:00:00:: 1 -1 scepticism%1:09:00:: 1 -1 scented%5:00:02:fragrant:00 2 -1 scented%5:00:01:fragrant:00 3 -1 scent%1:09:00:: 2 -1 scent%1:07:00:: 3 -1 scenery%1:15:00:: 2 -1 scene%1:26:01:: 7 -1 scene%1:06:01:: 8 -1 scenario%1:10:00:: 1 -1 scavenging%5:00:00:thrifty:00 1 -1 scavenger%1:27:00:: 1 -1 scattered%5:00:00:sporadic:00 2 -1 scatter%2:35:01:: 4 -1 scatter%2:30:00:: 5 -1 scathingly%4:02:00:: 1 -1 scathing%5:00:00:critical:01 1 -1 scarred%5:00:00:marked:00 1 -1 scarred%5:00:00:blemished:00 2 -1 scarify%2:35:00:: 1 -1 scarecrowish%5:00:00:thin:03 1 -1 scarcity%1:07:00:: 1 -1 scarce%5:00:00:insufficient:00 1 -1 scarce%4:02:00:: 1 -1 scapular%1:05:00:: 1 -1 scanty%5:00:00:meager:00 1 -1 scandinavian%3:01:02:: 1 -1 scandalize%2:37:00:: 1 -1 scandal%1:11:00:: 2 -1 scan%2:35:00:: 4 -1 scampering%5:00:00:moving:02 1 -1 scamper%1:04:00:: 1 -1 scalp%1:08:00:: 1 -1 scalloped%5:00:00:rough:02 1 -1 scaled%5:00:02:armored:02 1 -1 scale%2:42:00:: 1 -1 scale%2:36:00:: 2 -1 scab%2:29:00:: 1 -1 say%2:32:15:: 8 -1 sawhorse%1:06:00:: 1 -1 sawdust_saloon%1:06:00:: 1 -1 sawdust%1:27:00:: 1 -1 saw%2:35:00:: 1 -1 savvy%2:31:00:: 1 -1 savory%3:00:00:: 1 -1 savor%2:39:02:: 2 -1 savor%2:39:00:: 3 -1 savior%1:18:01:: 1 -1 saving%5:00:00:good:02 1 -1 saving%1:04:02:: 2 -1 saver%1:18:01:: 1 -1 saved%3:00:00:: 1 -1 save%2:40:04:: 9 -1 save%2:40:03:: 10 -1 savageness%1:07:00:: 1 -1 savagely%4:02:02:: 2 -1 savage%5:00:00:wild:01 2 -1 savage%5:00:00:noncivilized:00 3 -1 saute%2:30:00:: 1 -1 sausage%1:13:00:: 1 -1 sauce%1:13:00:: 1 -1 saturation%1:04:00:: 2 -1 saturated%5:00:00:wet:01 2 -1 saturated%3:00:01:: 1 -1 saturate%2:30:01:: 1 -1 satisfaction%1:21:00:: 3 -1 satirist%1:18:00:: 1 -1 satirically%4:02:00:: 1 -1 satirical%5:00:00:sarcastic:00 1 -1 satiric%5:00:00:sarcastic:00 1 -1 satin%1:06:00:: 1 -1 satiety%1:26:00:: 1 -1 satiate%2:34:00:: 1 -1 satanic%5:00:00:evil:00 1 -1 sassing%1:10:00:: 1 -1 sashay%2:38:01:: 1 -1 sash%1:06:01:: 2 -1 sash%1:06:00:: 1 -1 sari%1:06:00:: 1 -1 sardonic%5:00:00:sarcastic:00 1 -1 sardine%1:13:00:: 1 -1 sardine%1:05:01:: 2 -1 sarcolemmal%3:01:00:: 1 -1 saracen%1:18:01:: 1 -1 sapphire%5:00:00:chromatic:00 1 -1 sapling%1:20:00:: 1 -1 sap%2:40:00:: 1 -1 sap%2:34:00:: 2 -1 sanity%1:26:00:: 1 -1 sanitation%1:26:00:: 1 -1 sanitation%1:04:00:: 2 -1 sanguineous%5:00:00:bloody:00 1 -1 sandy%5:00:00:loose:02 1 -1 sandy%5:00:00:blond:00 2 -1 sandpaper%1:27:00:: 1 -1 sandalwood%1:20:00:: 1 -1 sanction%2:41:01:: 2 -1 sanction%1:04:02:: 2 -1 sanctified%5:00:00:holy:00 1 -1 sampling_station%1:06:00:: 1 -1 sampler%1:06:01:: 1 -1 salvo%1:11:00:: 1 -1 salvo%1:04:00:: 2 -1 salve%1:06:00:: 1 -1 salve%1:04:00:: 2 -1 salvation%1:04:01:: 2 -1 salute%2:34:00:: 1 -1 salute%2:32:03:: 3 -1 salute%2:32:00:: 2 -1 salutary%5:00:00:healthful:00 1 -1 salubrious%5:00:00:wholesome:00 1 -1 salty%5:00:00:stimulating:00 1 -1 salty%5:00:00:salt:00 2 -1 saltwater%1:27:00:: 1 -1 salt_away%2:40:00:: 1 -1 salt%5:00:00:sharp:04 2 -1 salt%3:00:00:: 1 -1 salt%2:39:00:: 1 -1 salmon%1:05:00:: 1 -1 sallying_forth%1:04:00:: 1 -1 sally%1:10:00:: 1 -1 sallow%5:00:00:unhealthy:00 1 -1 salivate%2:29:00:: 1 -1 salivary%3:01:00:: 1 -1 salish%1:10:00:: 1 -1 salesgirl%1:18:00:: 1 -1 sales_tax%1:21:00:: 1 -1 sale%1:04:01:: 3 -1 salamander%1:05:00:: 1 -1 salad%1:13:00:: 1 -1 salacious%5:00:00:sexy:00 1 -1 salacious%5:00:00:dirty:02 2 -1 salable%3:00:00:: 1 -1 saint%1:18:01:: 3 -1 sailor%1:18:01:: 2 -1 sailing%5:00:00:afloat(p):00 1 -1 sailing%1:04:02:: 3 -1 sailing%1:04:00:: 2 -1 sail%2:38:00:: 3 -1 sail%1:06:00:: 1 -1 sail%1:04:00:: 2 -1 sagging%5:00:00:lax:01 1 -1 sagebrush%1:20:00:: 1 -1 sage%1:18:00:: 1 -1 sage%1:13:00:: 2 -1 sagacious%5:00:00:wise:00 1 -1 sag_down%2:38:00:: 1 -1 sag%2:38:01:: 2 -1 safety%1:06:00:: 3 -1 safety%1:04:00:: 4 -1 safeguard%1:04:00:: 1 -1 safebreaker%1:18:00:: 1 -1 safe-conduct%1:10:00:: 1 -1 safe%5:00:00:unadventurous:00 2 -1 sadistic%3:00:00:: 1 -1 saddle_hackle%1:05:00:: 1 -1 saddle%2:35:10:: 2 -1 saddle%2:35:01:: 1 -1 saddle%2:32:00:: 3 -1 sadden%2:37:01:: 1 -1 sacrifice_fly%1:04:00:: 1 -1 sacrifice%2:35:00:: 2 -1 sacrifice%1:11:00:: 2 -1 sacred_writing%1:10:00:: 1 -1 sacred%5:00:00:worthy:00 2 -1 sacred%5:00:00:holy:00 3 -1 sacramento%1:15:00:: 1 -1 sacrament%1:04:00:: 1 -1 sack%2:40:00:: 1 -1 sack%1:06:00:: 1 -1 sabine%1:17:00:: 1 -1 sabbath%1:28:00:: 1 -1 rutted%5:00:00:furrowed:00 1 -1 ruthlessness%1:07:00:: 1 -1 ruthless%5:00:00:merciless:00 1 -1 rutabaga%1:13:00:: 1 -1 rut%1:25:00:: 1 -1 rut%1:04:00:: 2 -1 rusty%5:00:00:chromatic:00 2 -1 rustling%1:11:00:: 2 -1 rustle%1:11:00:: 1 -1 rustic%5:00:02:rural:00 1 -1 rustic%5:00:00:provincial:00 2 -1 rusted%3:00:00:: 1 -1 russia%1:15:02:: 3 -1 russia%1:15:01:: 2 -1 russet%1:06:00:: 1 -1 rushing%5:00:00:moving:02 1 -1 rushing%1:04:01:: 2 -1 rush_hour%1:28:00:: 1 -1 rush%2:30:00:: 4 -1 rupture%2:35:00:: 1 -1 running_board%1:06:00:: 1 -1 running%5:00:00:continual:00 3 -1 running%3:00:02:: 2 -1 runner%1:18:04:: 3 -1 runner%1:18:03:: 2 -1 runner%1:18:02:: 4 -1 rundown%1:10:00:: 1 -1 runaway%1:11:00:: 1 -1 run_up%2:35:01:: 3 -1 run_up%2:35:00:: 2 -1 run_through%2:34:00:: 2 -1 run_roughshod%2:41:00:: 1 -1 run_over%2:38:00:: 2 -1 run_out%2:42:00:: 4 -1 run_on%2:32:00:: 1 -1 run_off%2:38:01:: 2 -1 run_off%2:38:00:: 3 -1 run_into%2:35:01:: 3 -1 run_into%2:35:00:: 2 -1 run_down%2:39:00:: 5 -1 run_by%2:38:00:: 1 -1 run_batted_in%1:04:00:: 1 -1 run_bases%2:38:00:: 1 -1 run_away%2:38:04:: 2 -1 run_along%2:42:00:: 1 -1 run-down%5:00:00:worn:00 1 -1 run-down%5:00:00:malfunctioning:00 2 -1 run%2:42:08:: 23 -1 run%2:41:01:: 24 -1 run%2:40:06:: 25 -1 run%2:38:10:: 26 -1 run%2:38:08:: 27 -1 run%2:38:05:: 29 -1 run%2:38:03:: 28 -1 run%1:14:00:: 4 -1 run%1:04:04:: 6 -1 run%1:04:02:: 5 -1 run%1:04:00:: 7 -1 rumpus%1:04:00:: 1 -1 rump%1:05:00:: 1 -1 rumor%2:32:00:: 1 -1 rumen%1:05:00:: 1 -1 rumble%2:32:00:: 2 -1 rumanian%3:01:00:: 1 -1 rumanian%1:10:00:: 1 -1 ruling_class%1:14:00:: 1 -1 ruling%5:00:00:powerful:00 1 -1 ruler%1:06:00:: 2 -1 ruled%5:00:00:subordinate:02 1 -1 rule_out%2:33:00:: 2 -1 rule_out%2:31:00:: 3 -1 rule_in%2:33:00:: 1 -1 rule%2:32:00:: 4 -1 ruinous%5:00:00:harmful:00 1 -1 ruined%5:00:00:lost:02 1 -1 rugged_individualist%1:18:00:: 1 -1 ruffled%5:00:00:agitated:02 1 -1 ruffled%5:00:00:adorned:00 2 -1 ruffle%2:38:00:: 1 -1 ruffle%2:37:00:: 2 -1 ruffian%1:18:00:: 1 -1 rudimentary%5:00:00:incomplete:00 2 -1 rudimentary%5:00:00:basic:00 1 -1 rudeness%1:07:00:: 1 -1 rudely%4:02:00:: 1 -1 rude%5:00:00:unrefined:01 2 -1 ruddy%5:00:00:healthy:00 1 -1 rudderless%5:00:00:purposeless:00 1 -1 rudder%1:06:01:: 1 -1 ruck%1:14:00:: 1 -1 ruby%1:21:00:: 1 -1 rubric%1:10:02:: 1 -1 rubble%1:27:00:: 1 -1 rubbish%1:27:00:: 1 -1 rubbery%5:00:00:elastic:00 1 -1 rubberlike%5:00:00:elastic:00 1 -1 rubberized%5:00:00:processed:00 1 -1 rubber%5:00:00:impermeable:00 1 -1 rub%2:35:01:: 2 -1 royalty%1:14:00:: 2 -1 royal_house%1:14:00:: 1 -1 royal_family%1:14:00:: 1 -1 royal_brace%1:06:00:: 1 -1 royal%3:01:01:: 2 -1 rowdy%5:00:00:disorderly:00 1 -1 rowdy%1:18:00:: 1 -1 row_house%1:06:00:: 1 -1 row%1:17:00:: 3 -1 row%1:06:00:: 4 -1 routinely%4:02:00:: 1 -1 routine%1:10:00:: 3 -1 rout_out%2:40:00:: 1 -1 rout_out%2:38:00:: 2 -1 rout%2:33:00:: 1 -1 rousseauan%3:01:00:: 1 -1 rousing%5:00:00:stimulating:00 1 -1 roundly%4:02:00:: 1 -1 roundhouse%1:06:00:: 1 -1 roundhouse%1:04:00:: 2 -1 rounded%5:00:00:endomorphic:00 2 -1 roundabout%5:00:00:indirect:02 1 -1 roundabout%5:00:00:indirect:00 2 -1 round_table%1:10:00:: 1 -1 round_off%2:30:01:: 1 -1 round-faced%5:00:00:faced:00 1 -1 round-bottom%5:00:00:bottomed:00 1 -1 round%5:00:00:inexact:00 3 -1 round%5:00:00:full:01 2 -1 round%2:30:00:: 2 -1 round%1:15:00:: 3 -1 round%1:04:03:: 5 -1 round%1:04:01:: 6 -1 round%1:04:00:: 4 -1 roulette_ball%1:06:00:: 1 -1 roughness%1:07:02:: 3 -1 roughness%1:07:01:: 2 -1 roughneck%1:18:00:: 1 -1 roughly%4:02:03:: 2 -1 roughly%4:02:02:: 3 -1 roughhewn%5:00:00:unfinished:02 1 -1 roughen%2:35:00:: 1 -1 rough_out%2:36:00:: 1 -1 rough%5:00:00:stormy:00 5 -1 rough%5:00:00:difficult:00 4 -1 rough%5:00:00:cacophonous:00 6 -1 rough%5:00:00:aggressive:00 7 -1 rough%4:02:03:: 1 -1 rough%2:36:01:: 1 -1 rotundity%1:07:00:: 1 -1 rotting%5:00:00:rotten:00 1 -1 rotten%5:00:03:bad:00 1 -1 rotc%1:14:00:: 1 -1 rotated%5:00:00:turned:00 1 -1 rotate%2:41:00:: 2 -1 rotate%2:33:00:: 3 -1 rotary_club%1:14:00:: 1 -1 rotary%3:01:00:: 1 -1 rot%1:26:00:: 1 -1 rot%1:22:00:: 2 -1 rosy%5:00:00:optimistic:00 1 -1 rosy%5:00:00:healthy:00 2 -1 rosy%5:00:00:chromatic:00 3 -1 rostrum%1:06:00:: 1 -1 rosette%1:06:00:: 1 -1 rosebud%1:20:00:: 1 -1 rose_of_sharon%1:20:00:: 1 -1 rose%5:00:00:chromatic:00 1 -1 rosary%1:06:00:: 1 -1 root_out%2:35:00:: 1 -1 root_cellar%1:06:00:: 1 -1 root%1:23:00:: 4 -1 root%1:14:00:: 5 -1 roost%2:35:00:: 1 -1 roosevelt%1:18:02:: 1 -1 roomful%1:23:00:: 1 -1 room_clerk%1:18:00:: 1 -1 room%2:42:00:: 1 -1 rooftree%1:06:00:: 1 -1 roofer%1:18:00:: 1 -1 roof_of_the_mouth%1:08:00:: 1 -1 roof%2:35:00:: 1 -1 roof%1:06:01:: 2 -1 romp%1:11:00:: 1 -1 romanticism%1:07:00:: 1 -1 romantic%1:18:01:: 2 -1 romance%1:07:00:: 2 -1 roman_nose%1:08:00:: 1 -1 roman_collar%1:06:00:: 1 -1 roman_catholicism%1:09:00:: 1 -1 roman_candle%1:06:00:: 1 -1 rolling_stock%1:06:00:: 1 -1 rolling%5:00:00:pronounceable:00 2 -1 rolling%5:00:00:moving:02 3 -1 rollickingly%4:02:00:: 1 -1 roller_skate%1:06:00:: 1 -1 roller%1:04:00:: 1 -1 rolled_out%5:00:00:extended:00 1 -1 rolled_into_one%5:00:00:combined:00 1 -1 roll_up%2:30:01:: 1 -1 roll_out%2:35:01:: 1 -1 roll%2:35:01:: 7 -1 roll%2:30:10:: 8 -1 roll%2:29:06:: 9 -1 roll%1:11:01:: 3 -1 roll%1:06:01:: 4 -1 roleplay%2:36:00:: 1 -1 rogue%1:18:00:: 1 -1 rod%1:06:00:: 1 -1 rod%1:05:00:: 2 -1 rock_outcrop%1:17:00:: 1 -1 rock-steady%5:00:00:steady:00 1 -1 robustness%1:07:00:: 1 -1 robust%3:00:00:: 1 -1 robert_e_lee%1:18:00:: 1 -1 robe%2:29:00:: 1 -1 robe%1:06:01:: 2 -1 roasted%5:00:00:cooked:00 1 -1 roarer%1:18:00:: 1 -1 roar_off%2:38:00:: 1 -1 roar%2:38:00:: 4 -1 roar%2:32:05:: 5 -1 roadblock%1:09:00:: 1 -1 road_show%1:04:00:: 1 -1 road_game%1:04:00:: 1 -1 rivulet%1:17:00:: 1 -1 rive%2:35:00:: 1 -1 rival%1:18:00:: 1 -1 ritualize%2:30:00:: 1 -1 risky%5:00:00:dangerous:00 1 -1 rising%5:00:00:increasing:00 3 -1 rise%2:41:00:: 14 -1 rise%2:38:08:: 18 -1 rise%2:38:03:: 15 -1 rise%2:38:02:: 16 -1 rise%2:38:01:: 17 -1 rise%1:17:00:: 3 -1 rise%1:11:02:: 4 -1 rise%1:07:02:: 5 -1 rise%1:07:01:: 6 -1 ripple%2:39:00:: 2 -1 ripple%1:11:01:: 2 -1 ripping%5:00:00:cacophonous:00 1 -1 ripening%1:22:00:: 1 -1 ripen%2:30:01:: 1 -1 ripen%2:30:00:: 2 -1 ripe%5:00:00:ready:00 2 -1 riotous%5:00:00:unquiet:00 2 -1 riot%1:04:00:: 1 -1 rinse%2:35:02:: 2 -1 rinse%2:35:00:: 1 -1 ringing%1:11:00:: 1 -1 ringing%1:10:00:: 2 -1 ring_up%2:32:00:: 1 -1 ring-around-a-rosy%1:04:00:: 1 -1 ring%2:42:00:: 4 -1 ring%2:32:00:: 5 -1 ring%1:06:04:: 4 -1 rimless%3:00:00:: 1 -1 rim%2:42:00:: 1 -1 rigorously%4:02:00:: 1 -1 rigorous%5:00:00:exact:00 1 -1 rigorous%5:00:00:demanding:01 2 -1 rightness%1:07:00:: 1 -1 rightful%5:00:00:just:00 1 -1 righteousness%1:07:00:: 1 -1 righteous%3:00:00:: 1 -1 right_ventricle%1:08:00:: 1 -1 right_coronary_artery%1:08:00:: 1 -1 right_angle%1:25:00:: 1 -1 right-hand%5:00:00:right:00 1 -1 right-hand%5:00:00:right-handed:00 2 -1 right%5:00:00:appropriate:00 6 -1 right%4:02:05:: 9 -1 right%1:07:01:: 7 -1 rigger%1:18:00:: 1 -1 rigger%1:06:00:: 2 -1 rig_up%2:36:00:: 1 -1 rig-veda%1:10:00:: 1 -1 rig%2:41:00:: 1 -1 rig%2:40:00:: 2 -1 rig%2:35:00:: 3 -1 rift%1:17:01:: 1 -1 rifleman%1:18:00:: 2 -1 rifle_ball%1:06:00:: 1 -1 rifle%2:40:00:: 1 -1 riffle%2:35:01:: 1 -1 ridiculously%4:02:00:: 1 -1 ride_the_bench%2:41:00:: 1 -1 ride_off%2:38:00:: 1 -1 ride_herd_on%2:39:00:: 1 -1 ride_herd%2:38:00:: 1 -1 ride%2:32:00:: 5 -1 riddled%5:00:00:damaged:00 1 -1 riddle%2:31:01:: 2 -1 riddle%1:10:00:: 1 -1 ricochet%2:38:00:: 1 -1 rickety%5:00:00:unstable:00 1 -1 richness%1:26:00:: 2 -1 richness%1:07:01:: 3 -1 richly%4:02:02:: 1 -1 rich%5:00:02:productive:00 6 -1 rice_paddy%1:15:00:: 1 -1 riboflavin%1:27:00:: 1 -1 ribes_sanguineum%1:20:00:: 1 -1 ribes%1:20:00:: 1 -1 rhythmically%4:02:00:: 1 -1 rhythmical%3:00:00:: 1 -1 rhythm_method%1:04:00:: 1 -1 rhythm%1:28:00:: 3 -1 rhythm%1:10:00:: 4 -1 rhythm%1:04:00:: 5 -1 rhyme%2:36:00:: 1 -1 rhyme%1:10:01:: 2 -1 rhyme%1:10:00:: 1 -1 rhinoceros%1:05:00:: 1 -1 rheumatic_fever%1:26:00:: 1 -1 rhetorician%1:18:00:: 1 -1 reward%2:41:01:: 1 -1 reward%2:32:00:: 2 -1 reward%1:10:00:: 4 -1 revolving_fund%1:21:00:: 1 -1 revolve%2:38:01:: 2 -1 revolve%2:38:00:: 1 -1 revolutionize%2:30:00:: 1 -1 revive%2:30:01:: 4 -1 revival%1:04:01:: 1 -1 revitalize%2:29:00:: 1 -1 revision%1:10:01:: 2 -1 revision%1:10:00:: 3 -1 revile%2:32:00:: 1 -1 reviewing_stand%1:06:00:: 1 -1 reviewer%1:18:01:: 1 -1 review%1:04:00:: 3 -1 revetment%1:06:01:: 1 -1 revery%1:09:00:: 1 -1 reversibility%1:07:00:: 1 -1 reverse%5:00:00:backward:01 1 -1 reverse%1:24:00:: 1 -1 reverse%1:06:00:: 2 -1 reversal%1:04:00:: 1 -1 reverie%1:09:01:: 1 -1 reverie%1:09:00:: 2 -1 reverend%1:18:00:: 1 -1 reverence%2:37:00:: 1 -1 revered%5:00:00:honorable:00 1 -1 revere%2:37:00:: 2 -1 reverberate%2:39:00:: 1 -1 revenge%2:33:00:: 1 -1 revelry%1:04:00:: 1 -1 reveller%1:18:00:: 1 -1 revel%1:04:00:: 1 -1 revealing%5:00:00:informative:00 1 -1 rev%2:30:00:: 1 -1 reuse%2:34:00:: 1 -1 reunion%1:14:00:: 1 -1 reunion%1:04:00:: 2 -1 return_address%1:10:00:: 1 -1 return%2:40:00:: 10 -1 return%2:32:03:: 11 -1 return%1:21:00:: 6 -1 retrovision%1:09:00:: 1 -1 retrospective%1:14:00:: 1 -1 retrospect%1:09:00:: 1 -1 retrogressive%5:00:00:regressive:01 1 -1 retribution%1:21:00:: 1 -1 retribution%1:04:00:: 2 -1 retreated%1:14:00:: 1 -1 retranslate%2:32:00:: 1 -1 retraining%1:04:00:: 1 -1 retort%1:10:00:: 1 -1 retiring%5:00:00:unobtrusive:00 1 -1 retiring%5:00:00:retreating:00 2 -1 retirement%1:04:00:: 2 -1 retired_person%1:18:00:: 1 -1 retired%5:00:01:old:02 2 -1 retire%2:41:04:: 5 -1 retire%2:41:03:: 7 -1 retire%2:41:00:: 6 -1 retire%2:40:00:: 8 -1 retina%1:08:00:: 1 -1 retie%2:35:00:: 1 -1 retentiveness%1:09:00:: 1 -1 retentive%3:00:00:: 1 -1 retention%1:09:00:: 2 -1 retch%2:29:00:: 1 -1 retarded%3:00:00:: 1 -1 retardation%1:07:00:: 1 -1 retard%2:30:01:: 1 -1 retaliatory%5:00:00:reciprocal:00 1 -1 retaliate%2:33:01:: 1 -1 retaliate%2:33:00:: 2 -1 retained%5:00:00:preserved:01 1 -1 retain%2:41:00:: 4 -1 retain%2:40:00:: 5 -1 retail%3:00:00:: 1 -1 retail%2:42:00:: 1 -1 retail%1:04:00:: 1 -1 resuspension%1:27:00:: 1 -1 resurrect%2:29:00:: 1 -1 resumption%1:04:00:: 1 -1 resublimed%3:44:00:: 1 -1 restrictive%5:00:00:protective:00 2 -1 restrictive%3:00:00:: 1 -1 restriction%1:04:00:: 3 -1 restricting%5:00:00:restrictive:00 1 -1 restricted%5:00:00:modified:00 2 -1 restrained%3:00:00:: 2 -1 restrain%2:35:01:: 4 -1 restrain%2:35:00:: 3 -1 restore%2:30:01:: 4 -1 restoration%1:28:00:: 1 -1 restoration%1:04:01:: 3 -1 restoration%1:04:00:: 2 -1 restock%2:40:00:: 1 -1 restlessness%1:07:01:: 1 -1 restless%5:00:00:moving:02 3 -1 restively%4:02:00:: 1 -1 rest_room%1:06:00:: 1 -1 rest%2:42:12:: 7 -1 rest%2:35:04:: 8 -1 rest%2:35:02:: 10 -1 rest%2:35:01:: 9 -1 rest%1:26:01:: 5 -1 rest%1:26:00:: 4 -1 rest%1:06:00:: 6 -1 responsibly%4:02:00:: 1 -1 responsible%5:00:00:causative:00 2 -1 response%1:10:03:: 5 -1 respond%2:31:01:: 3 -1 resplendent%5:00:00:beautiful:00 1 -1 respite%1:11:00:: 3 -1 respiration%1:04:00:: 1 -1 respect%1:04:03:: 4 -1 respect%1:04:02:: 5 -1 resourcefulness%1:07:00:: 1 -1 resounding%5:00:00:reverberant:00 1 -1 resound%2:39:01:: 1 -1 resort%1:15:00:: 1 -1 resonance%1:07:00:: 3 -1 resolve%2:39:00:: 5 -1 resolve%2:31:03:: 6 -1 resolve%1:07:00:: 1 -1 resolution%1:09:01:: 5 -1 resolution%1:09:00:: 6 -1 resolute%3:00:00:: 1 -1 resmudge%2:35:00:: 1 -1 resistive%3:01:00:: 1 -1 resistant%5:00:00:unsusceptible:00 1 -1 resistance_thermometer%1:06:00:: 1 -1 resistance%1:04:01:: 4 -1 resist%2:33:01:: 4 -1 resiny%5:00:00:adhesive:00 1 -1 resilience%1:07:00:: 1 -1 resignedly%4:02:00:: 1 -1 resignation%1:12:00:: 1 -1 resignation%1:10:01:: 3 -1 resignation%1:10:00:: 2 -1 resift%2:35:00:: 1 -1 residue%1:24:00:: 2 -1 residual%3:01:00:: 1 -1 resident%3:00:04:: 2 -1 residence%1:06:01:: 4 -1 reside%2:42:01:: 2 -1 reshape%2:31:00:: 1 -1 resettle%2:30:00:: 1 -1 reset%2:32:00:: 1 -1 reservoir%1:06:01:: 2 -1 reservoir%1:06:00:: 3 -1 reserve%2:32:00:: 4 -1 reserve%1:21:00:: 2 -1 reserve%1:18:00:: 3 -1 reservation%1:10:00:: 2 -1 reservation%1:09:00:: 3 -1 reservation%1:04:01:: 4 -1 reserpine%1:06:00:: 1 -1 resentfully%4:02:00:: 1 -1 researchable%5:00:00:possible:00 1 -1 research%2:32:00:: 1 -1 reseal%2:35:00:: 1 -1 reschedule%2:32:00:: 1 -1 rerun%2:32:00:: 1 -1 requisition%1:10:00:: 1 -1 required%5:00:00:obligatory:00 2 -1 required%5:00:00:obligated(p):00 3 -1 reputed%5:00:00:acknowledged:00 1 -1 repute%1:26:00:: 1 -1 repulsive%5:00:00:offensive:01 1 -1 repulsion%1:12:00:: 2 -1 repugnance%1:12:00:: 1 -1 repudiate%2:31:00:: 2 -1 republican_party%1:14:00:: 1 -1 republican%1:18:00:: 2 -1 reptile%1:05:00:: 1 -1 reprovingly%4:02:00:: 1 -1 reproof%1:10:00:: 1 -1 reproduction%1:22:00:: 1 -1 reproducibly%4:02:00:: 1 -1 reproduce%2:29:00:: 2 -1 reprobate%2:31:00:: 1 -1 reprobate%1:18:00:: 1 -1 reproach%1:26:00:: 2 -1 reprint%2:36:00:: 1 -1 reprint%1:10:01:: 1 -1 reprieve%1:26:00:: 1 -1 repressive%5:00:00:restrictive:00 1 -1 repression%1:26:00:: 1 -1 repressed%5:00:00:inhibited:00 1 -1 representative%3:00:00:: 2 -1 representation%1:04:01:: 3 -1 represent%2:36:02:: 10 -1 reprehensible%5:00:00:wrong:01 1 -1 repository%1:18:00:: 2 -1 reposeful%5:00:00:quiet:02 1 -1 repose%2:34:00:: 1 -1 reporting_weight%1:07:00:: 1 -1 reporting%1:10:00:: 1 -1 report%2:32:13:: 5 -1 report%2:32:02:: 6 -1 replication%1:04:00:: 1 -1 replenishment%1:22:00:: 1 -1 replant%2:35:00:: 1 -1 replacing%1:04:00:: 1 -1 replacement%1:09:00:: 4 -1 rephrase%2:32:00:: 1 -1 repetitive%5:00:00:continual:00 1 -1 repetition%1:10:00:: 3 -1 repentant%3:00:00:: 1 -1 repentance%1:12:00:: 1 -1 repel%2:32:00:: 4 -1 repeal%1:04:00:: 1 -1 repayment%1:04:00:: 1 -1 repayable%5:00:00:due:00 1 -1 repay%2:40:01:: 2 -1 repairman%1:18:00:: 1 -1 repaired%5:00:00:restored:00 1 -1 repair_to%2:38:00:: 1 -1 repair%1:26:00:: 2 -1 reorientation%1:09:00:: 1 -1 reorganize%2:41:01:: 2 -1 reorder%2:31:00:: 1 -1 renunciation%1:10:01:: 1 -1 rent%2:40:00:: 3 -1 renovation%1:04:00:: 1 -1 renewing%5:00:00:invigorating:00 1 -1 renewed%5:00:00:revived:00 1 -1 renewal%1:04:01:: 2 -1 rendezvous%1:15:00:: 2 -1 rendering%1:10:01:: 1 -1 rendering%1:09:00:: 2 -1 rendering%1:04:01:: 3 -1 render%2:32:01:: 5 -1 renal_artery%1:08:00:: 1 -1 renaissance%1:04:00:: 2 -1 remunerative%5:00:00:paid:00 1 -1 remuneration%1:21:00:: 1 -1 remuda%1:14:00:: 1 -1 removed%5:00:01:distant:02 3 -1 removal_firm%1:14:00:: 1 -1 remount%2:38:00:: 1 -1 remote%5:00:00:inaccessible:00 4 -1 remorseless%5:00:00:merciless:00 1 -1 remorseful%5:00:00:penitent:00 1 -1 remorse%1:12:00:: 1 -1 remit%2:40:00:: 1 -1 remission%1:11:00:: 1 -1 reminiscent_of%5:00:00:mindful:00 1 -1 remind%2:31:01:: 3 -1 remedy%1:06:00:: 2 -1 remedial%5:00:00:bettering:00 1 -1 remarry%2:41:00:: 1 -1 remains%1:17:00:: 1 -1 relyric%2:36:00:: 1 -1 rely%2:31:11:: 1 -1 reluctant%5:00:00:uneager:00 3 -1 relive%2:31:00:: 1 -1 relinquish%2:33:02:: 2 -1 religiousness%1:07:00:: 1 -1 religious_order%1:14:00:: 1 -1 religionist%1:18:00:: 1 -1 relieve_oneself%2:29:00:: 1 -1 relieve%2:41:00:: 5 -1 relieve%2:32:00:: 6 -1 relieve%2:29:02:: 7 -1 relief%1:28:00:: 7 -1 relief%1:11:00:: 8 -1 relief%1:04:01:: 10 -1 relief%1:04:00:: 9 -1 reliance%1:26:00:: 2 -1 reliably%4:02:00:: 1 -1 reliable%5:00:02:trustworthy:00 2 -1 reliable%5:00:01:trustworthy:00 3 -1 relentless%5:00:00:continual:00 2 -1 release%2:41:01:: 7 -1 release%1:11:00:: 6 -1 relearn%2:31:00:: 1 -1 relay%1:04:00:: 1 -1 relaxing%5:00:00:quiet:02 1 -1 relax%2:29:01:: 4 -1 relativistic%3:01:00:: 1 -1 relative_humidity%1:24:00:: 1 -1 relative%5:00:00:proportionate:00 2 -1 relatedness%1:24:00:: 1 -1 related%5:00:00:similar:00 3 -1 related%5:00:00:relevant:00 4 -1 relate%2:41:01:: 6 -1 relace%2:35:00:: 1 -1 rejoin%2:32:00:: 2 -1 rejoicing%5:00:00:elated:00 1 -1 rejoice%2:37:02:: 3 -1 rejection%1:26:00:: 2 -1 reject%2:32:02:: 4 -1 reissue%2:36:00:: 1 -1 reissue%1:10:00:: 1 -1 reinstate%2:41:00:: 1 -1 reinstall%2:35:00:: 1 -1 reinforce%2:32:00:: 2 -1 rein%2:41:00:: 1 -1 reimbursement%1:21:00:: 1 -1 reimburse%2:40:00:: 1 -1 reign%2:42:00:: 2 -1 reign%1:28:01:: 1 -1 reich%1:14:00:: 1 -1 rehearing%1:04:00:: 1 -1 rehash%2:34:00:: 1 -1 reharmonization%1:10:00:: 1 -1 rehabilitate%2:41:00:: 1 -1 rehabilitate%2:29:00:: 2 -1 regulatory%5:00:00:restrictive:00 1 -1 regulator%1:06:00:: 1 -1 regulation%5:00:00:standard:02 1 -1 regulated%3:00:00:: 1 -1 regulate%2:31:00:: 3 -1 regularity%1:07:04:: 1 -1 regularity%1:07:00:: 2 -1 regular%5:00:00:steady:00 6 -1 regular%5:00:00:frequent:00 7 -1 regular%1:18:00:: 1 -1 regroup%2:41:00:: 1 -1 regretfully%4:02:00:: 1 -1 regret%2:32:02:: 4 -1 regret%2:32:01:: 5 -1 regret%2:32:00:: 3 -1 regression_equation%1:09:00:: 1 -1 regius_professor%1:18:00:: 1 -1 registry%1:10:00:: 1 -1 register_language%1:10:00:: 1 -1 register%2:41:05:: 6 -1 register%1:07:00:: 2 -1 regionally%4:02:00:: 1 -1 regimentation%1:04:00:: 1 -1 regiment%2:41:02:: 1 -1 regime%1:09:00:: 2 -1 regenerating%3:44:00:: 1 -1 regardant%5:00:00:backward:01 1 -1 regard%1:10:00:: 3 -1 regard%1:04:00:: 4 -1 regale%2:34:00:: 1 -1 regal%5:00:00:noble:02 1 -1 refute%2:31:00:: 2 -1 refuse%1:27:00:: 1 -1 refusal%1:10:00:: 2 -1 refurbish%2:30:00:: 1 -1 refund%2:40:00:: 1 -1 refund%1:04:00:: 2 -1 refueling%1:04:00:: 1 -1 refuel%2:40:00:: 2 -1 refrigerated%5:00:00:cold:01 1 -1 refrain%2:42:00:: 1 -1 refractory%5:00:00:uncooperative:00 1 -1 reformed%5:00:00:unorthodox:00 1 -1 reform_movement%1:14:00:: 1 -1 reform%2:30:00:: 1 -1 reform%1:04:01:: 2 -1 refocusing%1:04:00:: 1 -1 reflector%1:06:01:: 2 -1 reflectively%4:02:00:: 1 -1 reflectance%1:23:00:: 1 -1 refinement%1:26:00:: 1 -1 refinement%1:11:00:: 2 -1 refined%3:00:02:: 2 -1 refine%2:30:06:: 2 -1 refinance%2:40:00:: 1 -1 refill%2:30:00:: 1 -1 referendum%1:04:00:: 1 -1 referee%1:18:00:: 1 -1 refectory%1:06:00:: 1 -1 refashion%2:36:01:: 1 -1 reevaluation%1:09:00:: 1 -1 reevaluate%2:31:00:: 1 -1 reestablish%2:41:00:: 1 -1 reenforcement%1:10:00:: 1 -1 reenforce%2:30:00:: 1 -1 reenact%2:41:00:: 2 -1 reelection%1:04:00:: 1 -1 reel%2:38:03:: 2 -1 reeking%5:00:00:wet:01 1 -1 reek%2:39:13:: 1 -1 reek%2:39:00:: 2 -1 reek%2:29:00:: 3 -1 reef%1:17:00:: 1 -1 reecho%2:39:01:: 1 -1 redundancy%1:10:00:: 1 -1 redundancy%1:07:00:: 2 -1 reduction%1:04:02:: 3 -1 reducing%1:22:00:: 1 -1 reduced%5:00:00:low:02 2 -1 reduce%2:40:00:: 8 -1 reduce%2:30:04:: 9 -1 reduce%2:30:03:: 10 -1 reduce%2:30:01:: 11 -1 redress%2:41:00:: 1 -1 redress%1:21:00:: 1 -1 redoubled%5:00:00:increased:00 1 -1 redly%4:02:00:: 1 -1 rediscovery%1:04:00:: 1 -1 redirect%2:38:00:: 1 -1 redheader%1:18:00:: 1 -1 redheaded%5:00:00:blond:00 1 -1 redevelopment%1:04:00:: 1 -1 redemption%1:04:01:: 1 -1 redefine%2:42:00:: 1 -1 rededicate%2:32:00:: 1 -1 redecorate%2:36:00:: 1 -1 redden%2:29:00:: 1 -1 red_scare%1:26:00:: 1 -1 red_region%1:15:00:: 1 -1 red_herring%1:04:00:: 1 -1 red_clay%1:27:00:: 1 -1 red_china%1:15:00:: 1 -1 red-tailed_hawk%1:05:00:: 1 -1 red-rimmed%5:00:00:rimmed:00 1 -1 red-bellied_snake%1:05:00:: 1 -1 red%1:18:00:: 3 -1 recurrence%1:11:00:: 1 -1 recur%2:32:00:: 2 -1 recuperation%1:22:00:: 1 -1 rectitude%1:07:00:: 1 -1 rectangular%5:00:00:perpendicular:00 2 -1 rectangular%5:00:00:angular:00 1 -1 rectangle%1:25:00:: 1 -1 recreational_facility%1:06:00:: 1 -1 recreational%5:00:00:nonprofessional:00 2 -1 recreational%3:01:00:: 1 -1 recoverable%3:00:00:: 1 -1 recoup%2:40:02:: 1 -1 recording_studio%1:06:00:: 1 -1 recordbook%1:10:00:: 1 -1 record_player%1:06:00:: 1 -1 record%1:21:00:: 7 -1 recopy%2:36:00:: 1 -1 reconvert%2:30:00:: 1 -1 reconstruction%1:04:00:: 2 -1 reconstructed%3:00:00:: 1 -1 reconstruct%2:36:00:: 2 -1 reconstruct%2:30:01:: 3 -1 reconsideration%1:10:00:: 1 -1 reconnoiter%2:39:00:: 1 -1 recondition%2:30:00:: 1 -1 reconciling%5:00:00:adaptive:00 1 -1 reconcile%2:32:00:: 3 -1 reconcile%2:31:00:: 4 -1 recommendation%1:10:02:: 2 -1 recognition%1:10:00:: 3 -1 recognition%1:09:02:: 4 -1 recluse%1:18:00:: 1 -1 reclining%5:00:01:unerect:00 1 -1 reclining%1:04:00:: 1 -1 reclassification%1:04:00:: 1 -1 reckoning%1:09:00:: 1 -1 reckon%2:31:01:: 4 -1 reckon%2:31:00:: 3 -1 recklessly%4:02:00:: 1 -1 recital%1:10:03:: 2 -1 recital%1:10:01:: 1 -1 recession%1:26:00:: 1 -1 receptive%5:00:00:pervious:00 1 -1 reception_room%1:06:00:: 1 -1 reception%1:04:00:: 4 -1 receptacle%1:06:00:: 1 -1 receiving_system%1:06:00:: 1 -1 receiving%1:04:00:: 1 -1 receiver%1:18:00:: 4 -1 receive%2:42:00:: 9 -1 receding%5:00:00:retreating:00 1 -1 recapture%2:36:00:: 2 -1 recapitulate%2:32:00:: 1 -1 recall%2:42:00:: 3 -1 recall%2:32:02:: 4 -1 recall%2:31:06:: 5 -1 recalculate%2:31:00:: 1 -1 rebut%2:31:00:: 2 -1 rebuilt%5:00:00:restored:00 1 -1 rebuff%2:33:00:: 2 -1 rebuff%1:04:00:: 1 -1 rebound%2:38:00:: 1 -1 reborn%5:00:00:regenerate:00 1 -1 rebelliously%4:02:00:: 1 -1 rebellious%5:00:00:insubordinate:00 1 -1 rebellious%5:00:00:discontented:00 2 -1 rebelling%5:00:00:disloyal:00 1 -1 rebel%1:18:01:: 3 -1 reawaken%2:29:00:: 1 -1 reassuringly%4:02:00:: 1 -1 reassured%5:00:00:confident:00 1 -1 reassure%2:32:00:: 2 -1 reassign%2:41:00:: 1 -1 reassail%2:33:00:: 1 -1 reasonably%4:02:01:: 2 -1 reason%2:31:00:: 3 -1 reason%1:26:00:: 4 -1 reason%1:10:00:: 5 -1 rearward%5:00:00:back(a):00 2 -1 rearward%1:15:00:: 1 -1 rearing%1:07:00:: 1 -1 rearing%1:04:00:: 2 -1 rearguard%1:14:00:: 1 -1 rear_end%1:08:00:: 1 -1 rear_back%2:38:00:: 1 -1 rear%2:42:00:: 3 -1 reappearance%1:11:00:: 1 -1 reap%2:40:00:: 2 -1 realistic%5:00:00:representational:00 2 -1 realist%1:18:00:: 1 -1 realism%1:09:00:: 4 -1 realign%2:30:00:: 1 -1 real_estate_broker%1:18:00:: 1 -1 real%5:00:00:true:00 6 -1 ready-made%3:00:00:: 1 -1 ready%5:00:00:prepared:00 4 -1 ready%2:36:00:: 1 -1 ready%2:30:00:: 2 -1 readjustment%1:04:00:: 1 -1 reading_room%1:06:00:: 1 -1 reading%1:09:01:: 5 -1 readiness%1:09:00:: 3 -1 readapt%2:30:00:: 1 -1 readable%5:00:00:legible:00 1 -1 read%3:00:00:: 1 -1 reactivity%1:26:00:: 2 -1 reacquaint%2:32:00:: 1 -1 reach%2:40:00:: 8 -1 reach%1:09:00:: 4 -1 re-introduction%1:10:00:: 1 -1 re-incorporate%2:30:00:: 1 -1 re-formed%5:00:00:organized:02 1 -1 re-explore%2:31:00:: 1 -1 re-emphasise%2:32:00:: 1 -1 re-creation%1:04:00:: 1 -1 re-created%3:44:00:: 1 -1 re-create%2:36:00:: 1 -1 re-assume%2:30:00:: 1 -1 re-argue%2:32:00:: 1 -1 rbi%1:04:00:: 1 -1 razor-sharp%5:00:00:distinct:00 1 -1 ray%1:20:00:: 2 -1 rawhide%1:27:00:: 1 -1 raw_umber%1:27:00:: 1 -1 raw_sienna%1:07:00:: 1 -1 raw_deal%1:11:00:: 1 -1 raw%5:00:00:untreated:00 4 -1 raw%5:00:00:unfair:00 6 -1 raw%5:00:00:unanalyzed:00 7 -1 raw%5:00:00:overt:00 5 -1 raw%3:00:00:: 3 -1 raving_mad%5:00:00:insane:00 1 -1 raving%5:00:00:insane:00 1 -1 ravage%1:11:00:: 1 -1 raucously%4:02:00:: 1 -1 raucous%5:00:00:disorderly:00 2 -1 rationed%5:00:00:distributed:00 1 -1 rationalization%1:09:00:: 1 -1 rational%5:00:00:mental:00 2 -1 ration%1:21:00:: 2 -1 rating%1:26:00:: 3 -1 rathole%1:17:00:: 1 -1 rate_of_attrition%1:28:00:: 1 -1 rate%2:31:01:: 3 -1 rate%1:07:00:: 3 -1 ratable%5:00:00:taxable:00 1 -1 rasping%5:00:00:cacophonous:00 1 -1 rasp%1:10:00:: 1 -1 rascal%1:18:02:: 1 -1 rarified%5:00:00:thin:02 1 -1 rare_earth%1:27:00:: 1 -1 rapport%1:24:00:: 1 -1 rapist%1:18:00:: 1 -1 rapidity%1:07:00:: 1 -1 rapid_transit%1:06:00:: 1 -1 raped%5:00:00:destroyed:00 1 -1 rap%1:10:00:: 1 -1 ransom_money%1:21:00:: 1 -1 ransom%1:21:00:: 1 -1 ransom%1:04:01:: 2 -1 ranked%5:00:00:hierarchical:00 1 -1 rank%5:00:00:fertile:00 1 -1 rank%2:31:00:: 2 -1 rank%1:14:02:: 5 -1 rangy%5:00:00:tall:00 1 -1 range%2:42:03:: 3 -1 range%2:42:00:: 4 -1 range%2:35:00:: 5 -1 range%1:17:00:: 5 -1 range%1:06:00:: 6 -1 randomization%1:04:00:: 1 -1 random_memory%1:06:00:: 1 -1 random-access_memory%1:06:00:: 1 -1 rancor%1:12:00:: 1 -1 rampant%5:00:00:uncontrolled:00 1 -1 ramification%1:04:00:: 1 -1 ramble_on%2:42:00:: 1 -1 ram%2:35:01:: 3 -1 ram%1:06:01:: 1 -1 rallying_point%1:10:00:: 1 -1 rallying%5:00:00:encouraging:00 1 -1 rallying%1:04:00:: 1 -1 rally%2:35:01:: 3 -1 rally%2:30:00:: 4 -1 rally%1:04:01:: 2 -1 rakishly%4:02:00:: 1 -1 rake_up%2:31:00:: 1 -1 rake%2:38:00:: 1 -1 rake%2:35:01:: 2 -1 rajah%1:18:00:: 1 -1 raising%1:11:00:: 1 -1 raised%5:00:01:adorned:00 2 -1 raise_the_roof%2:37:00:: 1 -1 raise_hell%2:32:00:: 1 -1 raise%2:37:08:: 10 -1 raise%2:36:06:: 11 -1 raise%2:30:02:: 12 -1 raise%2:30:00:: 13 -1 rainfall%1:19:00:: 1 -1 rain_forest%1:17:00:: 1 -1 rain_dance%1:04:00:: 1 -1 rain_cloud%1:17:00:: 1 -1 railway_system%1:06:00:: 1 -1 railway_station%1:06:00:: 1 -1 railway%1:06:01:: 2 -1 railway%1:06:00:: 1 -1 railroad_train%1:06:00:: 1 -1 railroad_terminal%1:06:00:: 1 -1 railhead%1:06:00:: 1 -1 rail_fence%1:06:00:: 1 -1 rage%2:37:00:: 3 -1 rage%1:26:02:: 3 -1 ragamuffin%1:18:00:: 1 -1 raftered%5:00:00:ceilinged:00 1 -1 rafter%1:06:00:: 1 -1 radius%1:25:00:: 2 -1 radius%1:15:00:: 3 -1 radioactivity%1:19:00:: 1 -1 radio_transmitter%1:06:00:: 1 -1 radio_telescope%1:06:00:: 1 -1 radio_spectrum%1:19:00:: 1 -1 radio_reflector%1:06:00:: 1 -1 radio%3:01:00:: 1 -1 radical%5:00:00:basic:00 3 -1 radical%1:18:01:: 3 -1 radiator%1:17:00:: 1 -1 radiate%2:30:00:: 2 -1 radiance%1:07:00:: 2 -1 radial%3:01:01:: 1 -1 radial%3:01:00:: 2 -1 racy%5:00:00:spirited:00 1 -1 racket%1:04:00:: 2 -1 rack_up%2:33:01:: 1 -1 rack%2:37:00:: 2 -1 racist%1:18:00:: 1 -1 racing%1:04:00:: 1 -1 racine%1:18:00:: 1 -1 racial%3:00:00:: 2 -1 race_problem%1:26:00:: 1 -1 rabble%1:14:00:: 1 -1 rabbit_warren%1:15:00:: 1 -1 rabbit_punch%1:04:00:: 1 -1 rabbit_fever%1:26:00:: 1 -1 rabat%1:15:00:: 1 -1 quotation%1:10:01:: 1 -1 quotation%1:10:00:: 2 -1 quota%1:23:00:: 1 -1 quiver%2:38:04:: 2 -1 quiver%1:12:00:: 1 -1 quit%2:41:00:: 2 -1 quit%2:38:00:: 3 -1 quirk%2:35:00:: 1 -1 quirk%1:07:00:: 1 -1 quip%2:32:00:: 1 -1 quintet%1:10:00:: 1 -1 quilted%5:00:00:thick:01 1 -1 quilt%1:06:00:: 1 -1 quill%1:06:00:: 1 -1 quill%1:05:01:: 2 -1 quietness%1:12:00:: 2 -1 quiet_down%2:39:00:: 1 -1 quiet%5:00:00:uneventful:00 5 -1 quiet%5:00:00:soft:04 4 -1 quiet%5:00:00:calm:00 6 -1 quiet%4:02:00:: 1 -1 quiet%2:39:00:: 1 -1 quiet%2:37:00:: 2 -1 quiet%1:26:02:: 2 -1 quiet%1:26:00:: 1 -1 quiet%1:07:02:: 3 -1 quiescent%5:00:00:inactive:07 1 -1 quickstep%2:38:00:: 1 -1 quicksilver%5:00:00:changeable:00 1 -1 quickness%1:09:01:: 1 -1 quickie%1:04:00:: 1 -1 quicker%4:02:00:: 1 -1 quickening%1:22:00:: 1 -1 quick_march%1:04:00:: 1 -1 quick-frozen%5:00:00:preserved:02 1 -1 quick%5:00:02:fast:01 5 -1 quick%5:00:00:intelligent:00 4 -1 quick%5:00:00:excitable:00 6 -1 questioningly%4:02:00:: 1 -1 questioning%5:00:00:perplexed:00 1 -1 questioner%1:18:00:: 1 -1 quest%1:09:00:: 1 -1 query%1:10:00:: 1 -1 querulously%4:02:00:: 1 -1 quench%2:34:00:: 1 -1 queer%5:00:00:questionable:00 2 -1 queen%1:18:01:: 3 -1 quaveringly%4:02:00:: 1 -1 quaver%1:11:00:: 1 -1 quatrain%1:10:00:: 1 -1 quash%2:41:00:: 1 -1 quartz%1:27:01:: 1 -1 quarterly%3:01:00:: 1 -1 quarter%5:00:00:fractional:00 1 -1 quarrelsome%5:00:00:argumentative:00 1 -1 qualm%1:12:00:: 1 -1 quality_of_life%1:26:00:: 1 -1 qualitatively%4:02:00:: 1 -1 qualify%2:30:00:: 4 -1 qualified%5:00:00:registered:00 3 -1 qualified%3:00:02:: 2 -1 quaking%5:00:00:unsteady:00 1 -1 quakeress%1:18:00:: 1 -1 quaker%1:18:00:: 1 -1 quaint%5:00:01:strange:00 3 -1 quail%2:38:00:: 1 -1 quadrupling%1:22:00:: 1 -1 quadruple%2:30:00:: 1 -1 quadriceps%1:08:00:: 1 -1 quack%2:32:00:: 1 -1 q_fever%1:26:00:: 1 -1 pyramid%2:40:00:: 1 -1 puzzlement%1:09:00:: 1 -1 putout%1:04:00:: 1 -1 put_up%2:40:00:: 5 -1 put_up%2:30:00:: 6 -1 put_to_work%2:41:00:: 1 -1 put_to_sleep%2:35:02:: 1 -1 put_over%2:32:00:: 1 -1 put_out_feelers%2:31:00:: 1 -1 put_out%2:36:00:: 2 -1 put_out%2:35:00:: 3 -1 put_out%2:29:01:: 4 -1 put_on%2:36:01:: 4 -1 put_on%2:30:01:: 5 -1 put_off%2:42:00:: 1 -1 put_off%2:37:04:: 2 -1 put_in%2:35:00:: 5 -1 put_in%2:33:00:: 6 -1 put_forward%2:32:00:: 1 -1 put_down%2:38:00:: 3 -1 put_away%2:40:00:: 2 -1 pussy_willow%1:20:01:: 1 -1 pushing%5:00:00:ambitious:00 1 -1 pushing%1:04:00:: 1 -1 push_through%2:30:00:: 1 -1 push_down%2:35:00:: 1 -1 push_away%2:38:00:: 1 -1 push_aside%2:32:00:: 2 -1 push_around%2:37:00:: 1 -1 push%2:38:01:: 6 -1 push%1:19:00:: 2 -1 purveyor%1:18:00:: 1 -1 pursued%3:44:00:: 1 -1 pursued%1:18:00:: 1 -1 purse%1:21:01:: 2 -1 purse%1:06:02:: 3 -1 purportedly%4:02:01:: 1 -1 purport%2:31:00:: 2 -1 purple_heart%1:10:00:: 1 -1 purloin%2:40:00:: 1 -1 purl%2:36:02:: 3 -1 purity%1:26:02:: 2 -1 purify%2:30:01:: 2 -1 purging%1:04:00:: 1 -1 purge%2:41:00:: 1 -1 purgatory%1:26:00:: 1 -1 pure_and_simple%5:00:00:plain:01 1 -1 pure%5:00:00:theoretical:01 5 -1 pure%5:00:00:harmonious:00 4 -1 pure%3:00:04:: 3 -1 purchasing_agent%1:18:00:: 1 -1 purchase%1:19:01:: 3 -1 puppyish%5:00:00:young:00 1 -1 puppet%1:06:01:: 1 -1 pupil%1:08:00:: 2 -1 pup_tent%1:06:00:: 1 -1 pup%1:05:00:: 1 -1 puny%5:00:00:weak:00 1 -1 punt%2:35:01:: 1 -1 punster%1:18:00:: 1 -1 punk%1:18:00:: 1 -1 punitive%3:00:00:: 1 -1 punishable%5:00:00:guilty:00 1 -1 pungently%4:02:01:: 1 -1 pungent%3:00:00:: 1 -1 pundit%1:18:00:: 1 -1 puncture%2:35:00:: 1 -1 punctuation_mark%1:10:00:: 1 -1 punctuate%2:30:00:: 1 -1 punctuality%1:07:00:: 1 -1 punch_in%2:32:00:: 1 -1 punch%2:35:04:: 2 -1 punch%1:04:00:: 1 -1 pun%1:10:00:: 1 -1 pump%2:38:01:: 3 -1 pummel%2:35:00:: 1 -1 pulverized%5:00:00:fine:00 1 -1 pulverize%2:30:00:: 1 -1 pulsing%5:00:00:rhythmical:00 1 -1 pulseless%5:00:00:dead:01 1 -1 pulsed%5:00:00:periodic:00 1 -1 pulse_timing_circuit%1:06:00:: 1 -1 pulse_generator%1:06:00:: 1 -1 pulse%2:38:00:: 1 -1 pulse%2:36:00:: 2 -1 pulse%1:11:01:: 1 -1 pulse%1:11:00:: 2 -1 pulsation%1:11:00:: 1 -1 pulsate%2:38:00:: 1 -1 pulp%1:20:00:: 2 -1 pulmonary_emphysema%1:26:00:: 1 -1 pulling%1:04:00:: 1 -1 pulled%3:44:00:: 1 -1 pull_up%2:38:03:: 2 -1 pull_together%2:35:00:: 1 -1 pull_out%2:35:00:: 3 -1 pull_off%2:41:01:: 2 -1 pull_back%2:38:00:: 1 -1 pull_away%2:38:00:: 1 -1 pull_away%2:35:00:: 2 -1 pull%2:38:00:: 7 -1 pull%2:29:00:: 8 -1 pull%1:07:00:: 3 -1 pull%1:06:01:: 4 -1 puke%1:18:00:: 1 -1 pug-nosed%5:00:00:nosed:00 1 -1 puffed%5:00:00:unhealthy:00 1 -1 puff_up%2:30:01:: 2 -1 puff_up%2:30:00:: 1 -1 puff_out%2:30:00:: 1 -1 puff%2:34:00:: 2 -1 puff%2:29:00:: 3 -1 puerto_rican%1:18:00:: 1 -1 puckish%5:00:00:playful:00 1 -1 puckered%5:00:00:wrinkled:00 2 -1 puckered%5:00:00:rough:00 1 -1 pucker%1:25:00:: 1 -1 publishing%1:04:00:: 1 -1 publish%2:36:00:: 3 -1 publicized%3:00:00:: 1 -1 publicity_man%1:18:00:: 1 -1 publicist%1:18:00:: 1 -1 public_utility%1:14:00:: 1 -1 public_transit%1:06:00:: 1 -1 public_press%1:10:00:: 1 -1 public_opinion_poll%1:09:00:: 1 -1 public_lecture%1:10:00:: 1 -1 public_debate%1:10:00:: 1 -1 ptolemaic_system%1:09:00:: 1 -1 pterygium%1:08:00:: 1 -1 psychotic%5:00:00:insane:00 1 -1 psychotherapeutic%3:01:00:: 1 -1 psychosomatic_disorder%1:26:00:: 1 -1 psychopomp%1:18:00:: 1 -1 psychophysiology%1:09:00:: 1 -1 psychopharmacological%3:01:00:: 1 -1 psychopathic%5:00:00:insane:00 1 -1 psychopath%1:18:00:: 1 -1 psychologically%4:02:01:: 1 -1 psychic_phenomenon%1:10:00:: 1 -1 psychic%3:01:01:: 1 -1 psychiatric%3:01:00:: 1 -1 psyche%1:18:00:: 2 -1 psi%1:23:00:: 1 -1 pseudomonas_pyocanea%1:05:00:: 1 -1 pry%2:39:00:: 3 -1 prussian_blue%1:27:00:: 1 -1 prurient%5:00:00:sexy:00 1 -1 prudence%1:07:00:: 1 -1 proximity%1:07:00:: 1 -1 prowler%1:18:00:: 1 -1 prowl%2:42:00:: 2 -1 provost_guard%1:14:00:: 1 -1 provoke%2:37:01:: 4 -1 provocative%3:00:00:: 1 -1 provocation%1:04:00:: 1 -1 proviso%1:10:00:: 1 -1 provisions%1:13:00:: 1 -1 provision%2:40:00:: 1 -1 provision%1:09:00:: 3 -1 proving_ground%1:06:00:: 1 -1 provincialism%1:09:01:: 1 -1 provincialism%1:09:00:: 2 -1 province%1:26:00:: 2 -1 province%1:21:00:: 3 -1 providential%5:00:00:fortunate:00 1 -1 proverbial%3:01:00:: 1 -1 provenance%1:15:00:: 1 -1 proved%3:00:00:: 1 -1 prove_oneself%2:31:00:: 1 -1 proud_of%5:00:00:proud:00 1 -1 protuberance%1:25:00:: 1 -1 protozoan%1:05:00:: 1 -1 prototypical%5:00:00:first:00 1 -1 protoplasm%1:08:00:: 1 -1 proton_magnetic_resonance%1:19:00:: 1 -1 proton%1:17:00:: 1 -1 protesting%5:00:00:complaining(a):00 1 -1 protestation%1:10:01:: 1 -1 protestation%1:10:00:: 2 -1 protest%2:32:01:: 3 -1 protest%1:10:01:: 3 -1 proteolytic%3:01:00:: 1 -1 protege%1:18:00:: 1 -1 protectorate%1:15:00:: 1 -1 protectively%4:02:00:: 1 -1 protective%5:00:00:tender:03 2 -1 protection%1:26:00:: 4 -1 protecting%5:00:00:protective:00 1 -1 protect%2:33:01:: 2 -1 protagonist%1:18:00:: 1 -1 prostrate%2:38:00:: 1 -1 prostrate%2:30:00:: 2 -1 prostitute%1:18:00:: 1 -1 prosperous%5:00:00:successful:00 2 -1 prosperity%1:26:00:: 2 -1 prosper%2:40:00:: 2 -1 prospect%1:18:00:: 3 -1 prosody%1:10:00:: 1 -1 prosodic%3:01:00:: 1 -1 prosecution%1:14:00:: 2 -1 prose_poem%1:10:00:: 1 -1 propylthiouracil%1:27:00:: 1 -1 propriety%1:07:00:: 1 -1 proposition%2:32:00:: 1 -1 propose%2:41:00:: 4 -1 propose%2:32:01:: 5 -1 proposal%1:10:02:: 2 -1 proportionate%5:00:00:commensurate:00 2 -1 proportionally%4:02:00:: 1 -1 proportionality%1:24:00:: 1 -1 proportion%1:25:00:: 3 -1 proponent%1:18:00:: 1 -1 propitious%3:00:00:: 1 -1 prophet%1:18:01:: 2 -1 prophesy%2:32:00:: 1 -1 prophecy%1:10:00:: 2 -1 property_settlement%1:10:00:: 1 -1 properly_speaking%4:02:00:: 1 -1 properly%4:02:01:: 2 -1 propeller%1:06:00:: 1 -1 propagation%1:10:00:: 1 -1 propagation%1:04:00:: 2 -1 prop%2:35:00:: 1 -1 prop%1:06:00:: 1 -1 promulgator%1:18:00:: 1 -1 promulgate%2:32:01:: 2 -1 promulgate%2:32:00:: 1 -1 prompt%5:00:00:punctual:00 1 -1 prompt%5:00:00:efficient:00 2 -1 promotion_system%1:09:00:: 1 -1 promotion%1:04:00:: 2 -1 promised%5:00:00:secure:02 1 -1 prometheus%1:18:00:: 1 -1 prolongation%1:04:00:: 1 -1 prolific%5:00:00:productive:00 1 -1 proletariat%1:14:00:: 1 -1 projection%1:09:00:: 3 -1 projection%1:06:00:: 4 -1 projected%5:00:00:protrusive:00 2 -1 project%2:39:00:: 5 -1 project%2:36:08:: 6 -1 project%2:36:01:: 7 -1 project%2:31:00:: 8 -1 project%1:09:00:: 2 -1 prohibition_era%1:28:00:: 1 -1 prohibition%1:28:00:: 3 -1 progression%1:11:00:: 2 -1 progression%1:04:00:: 3 -1 progress_to%2:38:00:: 1 -1 profusion%1:07:00:: 1 -1 profusely%4:02:00:: 1 -1 profuse%5:00:00:abundant:00 1 -1 profundity%1:09:01:: 1 -1 profundity%1:07:01:: 2 -1 profitability%1:07:00:: 1 -1 profit_sharing%1:21:00:: 1 -1 profit_and_loss%1:21:00:: 1 -1 profit%1:07:00:: 2 -1 profile%1:10:00:: 3 -1 proficiency%1:07:00:: 1 -1 professorship%1:04:00:: 1 -1 professional%5:00:00:white-collar:00 5 -1 professional%1:18:02:: 2 -1 professional%1:18:01:: 3 -1 profess%2:32:02:: 3 -1 profanity%1:10:00:: 1 -1 profanely%4:02:01:: 1 -1 profane%5:00:00:dirty:02 1 -1 productive%5:00:00:successful:00 3 -1 productive%3:00:04:: 2 -1 produced%3:44:00:: 1 -1 prodigally%4:02:00:: 1 -1 prodigal%5:00:00:generous:01 1 -1 procurer%1:18:00:: 1 -1 procreative%5:00:00:fruitful:00 1 -1 procrastination%1:04:00:: 1 -1 procrastinate%2:42:00:: 1 -1 proclaim%2:32:01:: 4 -1 processor%1:14:00:: 1 -1 processed%5:00:00:prepared:00 1 -1 process-server%1:18:00:: 1 -1 process%2:41:01:: 2 -1 process%2:31:00:: 3 -1 proceeding%1:04:00:: 1 -1 proceed%2:42:00:: 5 -1 probing%1:09:00:: 1 -1 pro_tem%5:00:00:impermanent:00 1 -1 pro%1:18:00:: 1 -1 prizewinning%5:00:00:best:00 1 -1 prizefight%1:11:00:: 1 -1 prize_money%1:21:00:: 1 -1 prize%2:40:00:: 1 -1 prize%1:21:01:: 2 -1 privy%1:06:01:: 1 -1 privy%1:06:00:: 2 -1 privately%4:02:01:: 2 -1 private_property%1:21:00:: 1 -1 privacy%1:26:02:: 2 -1 prison_house%1:26:00:: 1 -1 prison_farm%1:06:00:: 1 -1 prison_camp%1:06:01:: 1 -1 prise%2:35:00:: 1 -1 printing_ink%1:27:00:: 1 -1 printing%1:04:00:: 2 -1 printed_symbol%1:10:00:: 1 -1 printable%3:00:00:: 1 -1 print%2:36:03:: 2 -1 principal%1:18:01:: 3 -1 prince_of_wales%1:18:00:: 1 -1 prince%1:18:00:: 1 -1 primping%1:04:00:: 1 -1 primly%4:02:00:: 1 -1 primitive%5:00:00:noncivilized:00 6 -1 primitive%3:00:00:: 5 -1 priming%1:04:01:: 1 -1 primer%1:10:00:: 1 -1 prime_time%1:28:00:: 1 -1 prime%2:30:00:: 1 -1 primates%1:05:00:: 1 -1 primate%1:18:00:: 1 -1 primary_election%1:04:00:: 1 -1 primary%1:05:00:: 2 -1 primacy%1:26:00:: 1 -1 prie-dieu%1:06:00:: 1 -1 prickly%5:00:00:ill-natured:00 1 -1 prickling%5:00:00:painful:00 1 -1 prick_up%2:38:00:: 1 -1 prick%2:39:00:: 2 -1 prick%2:38:00:: 3 -1 prick%2:35:04:: 4 -1 priced%3:00:00:: 1 -1 price_cutting%1:04:00:: 1 -1 price%1:10:00:: 5 -1 prey%2:34:01:: 1 -1 preventive_medicine%1:04:00:: 1 -1 preventive%5:00:00:healthful:00 1 -1 prevention%1:24:00:: 2 -1 prevalence%1:07:00:: 1 -1 prevailing%5:00:00:current:00 1 -1 prettiness%1:07:00:: 1 -1 pretrial%5:00:00:preceding(a):00 1 -1 pretext%1:10:00:: 1 -1 pretension%1:07:00:: 1 -1 pretense%1:04:00:: 1 -1 pretence%1:07:01:: 2 -1 pretence%1:07:00:: 1 -1 presumed%5:00:00:probable:00 1 -1 presume_to%2:41:00:: 1 -1 presto%5:00:00:fast:02 1 -1 presto%4:02:01:: 1 -1 pressure_dome%1:06:00:: 1 -1 pressure-cooker%5:00:00:intense:00 1 -1 pressure%2:41:00:: 1 -1 pressing%1:04:00:: 1 -1 press_out%2:30:00:: 1 -1 press_on%2:38:00:: 1 -1 press_down_on%2:35:00:: 1 -1 press_corps%1:14:00:: 1 -1 press_conference%1:10:00:: 1 -1 press_clipping%1:10:00:: 1 -1 press%2:38:00:: 6 -1 press%2:36:01:: 7 -1 press%2:32:09:: 8 -1 press%1:26:00:: 2 -1 press%1:10:00:: 3 -1 press%1:06:01:: 4 -1 president_of_the_united_states%1:18:00:: 1 -1 president%1:04:04:: 6 -1 presidency%1:28:00:: 1 -1 preserved%3:00:02:: 1 -1 preserved%3:00:01:: 2 -1 preserve%2:30:00:: 4 -1 preserve%1:26:00:: 1 -1 preservation%1:04:00:: 1 -1 presentness%1:07:00:: 1 -1 presentment%1:04:00:: 1 -1 presentational%3:01:00:: 1 -1 presentation%1:10:01:: 4 -1 presentation%1:06:00:: 5 -1 present%2:36:08:: 10 -1 presence%1:07:00:: 5 -1 preseason%1:28:00:: 1 -1 prescription%1:06:00:: 2 -1 prescribed%5:00:00:settled:02 2 -1 presbyterian%1:18:00:: 1 -1 presage%2:32:00:: 1 -1 prerequisite%1:09:00:: 1 -1 prepupal%5:00:00:immature:01 1 -1 prepubescent%5:00:00:immature:01 1 -1 prepared%5:00:00:willing:00 2 -1 prepare%2:30:01:: 7 -1 preparatory%5:00:00:preceding(a):00 1 -1 preparative%5:00:00:preceding(a):00 1 -1 prepackaged%5:00:00:packaged:00 1 -1 preoccupy%2:42:00:: 1 -1 preoccupy%2:37:00:: 2 -1 preoccupied%5:00:00:thoughtful:00 1 -1 preoccupied%5:00:00:concerned:00 2 -1 preoccupation%1:09:02:: 1 -1 preoccupation%1:09:00:: 2 -1 premonitory%5:00:00:prophetic:00 1 -1 premium%5:00:00:superior:02 1 -1 premium%1:21:02:: 1 -1 premises%1:15:00:: 1 -1 premise%1:10:00:: 1 -1 premiere%1:10:00:: 1 -1 prelude%1:11:00:: 1 -1 preliterate%5:00:00:noncivilized:00 2 -1 preliterate%5:00:00:illiterate:00 1 -1 prejudicial%5:00:00:harmful:00 1 -1 prejudiced%5:00:00:subjective:00 1 -1 preisolate%2:30:00:: 1 -1 prehistoric%5:00:00:past:00 1 -1 pregnant%5:00:00:meaningful:00 2 -1 prefix%1:10:00:: 1 -1 preferred%5:00:00:desirable:00 1 -1 preferment%1:04:00:: 1 -1 preferential%5:00:00:advantageous:00 1 -1 preferable%5:00:00:desirable:00 1 -1 prefer%2:41:00:: 3 -1 preface%2:32:00:: 1 -1 preface%1:10:00:: 1 -1 preexistent%5:00:00:antecedent:00 1 -1 preexistence%1:26:00:: 1 -1 preempt%2:40:00:: 1 -1 preemployment_training_program%1:09:00:: 1 -1 preeminent%5:00:00:superior:01 1 -1 predomination%1:26:00:: 1 -1 predominance%1:26:00:: 1 -1 predisposed%5:00:00:susceptible:00 1 -1 predilection%1:09:00:: 1 -1 predigested%5:00:00:digestible:00 1 -1 predicted%5:00:00:expected:00 1 -1 predicament%1:26:00:: 1 -1 predetermined%5:00:00:planned:00 1 -1 precooled%5:00:00:cool:01 1 -1 precooked%5:00:00:prepared:00 1 -1 preconception%1:09:00:: 1 -1 preconceived_notion%1:09:00:: 1 -1 preconceived%3:44:00:: 1 -1 precocious%3:00:00:: 1 -1 precise%5:00:00:correct:00 2 -1 precipitin%1:27:00:: 1 -1 precipitate%2:30:01:: 3 -1 precipitate%1:27:00:: 1 -1 precipice%1:17:00:: 1 -1 precinct%1:15:00:: 1 -1 prechlorination%1:22:00:: 1 -1 precedent%1:10:00:: 2 -1 precede%2:38:00:: 4 -1 precaution%1:09:00:: 3 -1 precast%5:00:00:formed:00 1 -1 precarious%5:00:00:dangerous:00 2 -1 prearranged%5:00:00:planned:00 1 -1 prearrange%2:36:00:: 1 -1 preamble%1:10:00:: 1 -1 preaching%1:10:01:: 2 -1 prayer_meeting%1:04:00:: 1 -1 prayer%1:10:01:: 4 -1 prattling%5:00:00:voluble:00 1 -1 prattle%2:32:00:: 1 -1 prank%1:04:01:: 1 -1 prairie_rattlesnake%1:05:00:: 1 -1 prairie_dog%1:05:00:: 1 -1 practitioner%1:18:00:: 1 -1 practised%5:00:00:experienced:00 1 -1 practise%2:36:00:: 1 -1 practicing%5:00:00:active:08 1 -1 practiced%5:00:00:skilled:00 1 -1 practice_session%1:04:00:: 1 -1 practice%1:09:00:: 5 -1 practical_nurse%1:18:00:: 1 -1 powwow%1:10:00:: 1 -1 powerless%3:00:00:: 1 -1 powerfulness%1:07:00:: 1 -1 powerful%5:00:01:strong:00 4 -1 power_saw%1:06:00:: 1 -1 power_plant%1:06:00:: 1 -1 power_company%1:14:00:: 1 -1 power%5:00:00:assisted:00 1 -1 power%1:14:00:: 8 -1 powdery%5:00:00:light:05 2 -1 powdery%5:00:00:fine:00 1 -1 powder_technique%1:22:00:: 1 -1 powder-puff%5:00:00:feminine:01 1 -1 powder%1:06:01:: 3 -1 pow%1:18:00:: 1 -1 pour_out%2:38:02:: 4 -1 pour_out%2:38:01:: 3 -1 pour_out%2:38:00:: 2 -1 pour_forth%2:35:00:: 1 -1 pour%2:40:00:: 5 -1 pounding%1:11:01:: 2 -1 pounding%1:11:00:: 1 -1 pounder%1:17:00:: 1 -1 pound%2:38:01:: 3 -1 pound%2:38:00:: 4 -1 pouch%1:06:00:: 1 -1 pottery%1:04:00:: 2 -1 potter%2:35:01:: 1 -1 potshot%1:04:00:: 1 -1 potpourri%1:14:00:: 1 -1 potentiometer%1:06:01:: 1 -1 potent%3:00:00:: 3 -1 potency%1:07:00:: 2 -1 pot%2:35:00:: 1 -1 pot%1:23:00:: 3 -1 pot%1:06:04:: 4 -1 posture%1:07:01:: 2 -1 postulate%2:31:00:: 2 -1 postulate%1:10:00:: 1 -1 postscript%1:10:00:: 1 -1 postponed%5:00:00:delayed:00 1 -1 postmark%1:10:00:: 1 -1 posthumous%5:00:00:late:00 1 -1 poster%1:10:00:: 1 -1 post%2:41:01:: 3 -1 post%2:33:00:: 4 -1 post%2:32:00:: 5 -1 possibly%4:02:03:: 2 -1 possible%5:00:00:thinkable:00 3 -1 possible%1:09:00:: 1 -1 possessive%5:00:00:acquisitive:00 2 -1 possessive%3:01:00:: 1 -1 positive_feedback%1:22:00:: 1 -1 positive%5:00:00:undeniable:00 6 -1 positive%5:00:00:formal:01 5 -1 positive%3:00:04:: 4 -1 positive%3:00:02:: 3 -1 position%2:35:00:: 2 -1 position%1:26:02:: 11 -1 position%1:09:01:: 12 -1 poseur%1:18:00:: 1 -1 pose%2:32:13:: 3 -1 pose%1:07:00:: 1 -1 portuguese%1:10:00:: 1 -1 portugal%1:15:00:: 1 -1 portrayal%1:10:01:: 1 -1 portrayal%1:04:02:: 2 -1 porterhouse%1:13:00:: 1 -1 porter%1:18:02:: 2 -1 porter%1:18:00:: 1 -1 portentous%5:00:00:prophetic:00 2 -1 portend%2:32:00:: 1 -1 port%1:13:00:: 2 -1 port%1:06:02:: 4 -1 port%1:06:00:: 3 -1 porosity%1:07:00:: 1 -1 porkchop%1:13:00:: 1 -1 pore%2:31:00:: 1 -1 pore%1:08:00:: 2 -1 porcupine%1:05:00:: 1 -1 population%1:23:00:: 4 -1 popularity_contest%1:04:00:: 1 -1 popularism%1:10:00:: 1 -1 popular%5:00:00:nonclassical:00 5 -1 popular%5:00:00:general:00 4 -1 poplin%1:06:00:: 1 -1 pop_tent%1:06:00:: 1 -1 pop_fly%1:04:00:: 1 -1 pop%2:39:00:: 3 -1 pop%2:33:00:: 4 -1 pop%1:18:00:: 1 -1 poor_white_trash%1:18:00:: 1 -1 pool%1:21:00:: 5 -1 pool%1:17:01:: 6 -1 pooh-pooh%2:32:01:: 1 -1 pooch%2:30:00:: 1 -1 pony%1:05:03:: 2 -1 pontoon_bridge%1:06:00:: 1 -1 ponderous%5:00:00:heavy:01 2 -1 pompousness%1:07:00:: 1 -1 pommel%2:35:00:: 1 -1 pomaded%5:00:00:groomed:00 1 -1 polytonal%5:00:00:tonal:00 1 -1 polymyositis%1:26:00:: 1 -1 polyelectrolyte%1:27:00:: 1 -1 pollution%1:26:00:: 1 -1 polluted%5:00:00:impure:02 1 -1 poll%2:41:00:: 1 -1 polka%1:10:00:: 1 -1 politics%1:09:01:: 4 -1 politically%4:02:01:: 2 -1 politically%4:02:00:: 1 -1 political_unit%1:14:00:: 1 -1 political_science%1:09:00:: 1 -1 political_platform%1:10:00:: 1 -1 political_party%1:14:00:: 1 -1 political_leader%1:18:00:: 1 -1 politic%3:00:00:: 1 -1 polite%5:00:00:refined:01 2 -1 polish_off%2:30:00:: 1 -1 polish%1:26:00:: 2 -1 polio%1:26:00:: 1 -1 policy_maker%1:18:00:: 1 -1 police_officer%1:18:00:: 1 -1 police_investigation%1:04:00:: 1 -1 police_force%1:14:00:: 1 -1 police_captain%1:18:00:: 1 -1 polemical%5:00:00:controversial:00 1 -1 polarize%2:30:01:: 2 -1 polarize%2:30:00:: 3 -1 polarization%1:26:00:: 2 -1 polarity%1:24:00:: 2 -1 polar%5:00:00:different:00 2 -1 poker-faced%5:00:00:uncommunicative:00 1 -1 poke_into%2:35:01:: 1 -1 poke_fun%2:32:00:: 1 -1 poke_at%2:35:00:: 1 -1 poison%2:35:00:: 2 -1 poison%2:30:00:: 3 -1 poison%1:07:00:: 2 -1 poise%2:37:00:: 2 -1 poise%2:35:02:: 3 -1 pointing_out%1:10:00:: 1 -1 pointing%3:44:00:: 1 -1 pointed%3:00:01:: 2 -1 point_system%1:09:00:: 1 -1 point-blank%5:00:00:direct:02 1 -1 point%2:32:12:: 5 -1 point%1:24:04:: 13 -1 point%1:07:01:: 14 -1 point%1:06:00:: 15 -1 poignancy%1:26:00:: 1 -1 poetry%1:10:03:: 2 -1 poetic%5:00:00:figurative:00 2 -1 poetic%3:01:00:: 1 -1 pocketful%1:23:00:: 1 -1 pocket%2:40:00:: 1 -1 poach%2:33:00:: 1 -1 poach%2:30:00:: 2 -1 pneumonia%1:26:00:: 1 -1 pm%1:04:01:: 2 -1 pm%1:04:00:: 3 -1 ply%2:34:00:: 1 -1 plush%5:00:00:rich:03 1 -1 pluralistic%3:01:00:: 1 -1 plunker%1:04:00:: 1 -1 plunk%2:39:00:: 1 -1 plunk%2:35:02:: 2 -1 plunge%2:31:01:: 5 -1 plunge%1:04:00:: 1 -1 plunder%2:40:02:: 1 -1 plunder%1:21:00:: 1 -1 plumping%5:00:00:large:00 1 -1 plump_for%2:41:00:: 1 -1 plummet%2:38:00:: 1 -1 plumbing%1:04:01:: 2 -1 plumb_line%1:06:00:: 1 -1 plumb%2:31:00:: 1 -1 plug%2:30:00:: 2 -1 pluck%1:07:00:: 1 -1 plow_ahead%2:32:00:: 1 -1 plow%2:38:00:: 3 -1 plot%2:31:01:: 3 -1 plodding%5:00:00:effortful:00 1 -1 plodding%1:04:00:: 1 -1 pliant%5:00:00:impressionable:00 1 -1 plenitude%1:07:00:: 1 -1 pleat%1:06:00:: 1 -1 pleasant%5:00:00:nice:00 2 -1 pleading%5:00:00:beseeching:00 1 -1 plead%2:32:03:: 4 -1 playing%1:04:00:: 2 -1 playground%1:15:00:: 1 -1 playful%3:00:00:: 1 -1 player%1:18:00:: 3 -1 played_out%5:00:00:tired:00 1 -1 played%3:44:00:: 1 -1 playback%1:04:00:: 1 -1 playacting%1:04:00:: 1 -1 playable%3:00:00:: 1 -1 play_up%2:30:00:: 1 -1 play_possum%2:32:00:: 1 -1 play_down%2:32:00:: 1 -1 play_back%2:36:00:: 1 -1 play_around%2:41:00:: 1 -1 play%5:00:00:unreal:00 1 -1 play%2:41:02:: 17 -1 play%2:36:05:: 18 -1 play%2:35:00:: 19 -1 play%2:34:13:: 20 -1 play%2:31:01:: 21 -1 play%1:04:08:: 6 -1 play%1:04:06:: 8 -1 play%1:04:03:: 7 -1 platitudinous%5:00:00:unoriginal:00 1 -1 plate%1:23:00:: 5 -1 plat%2:31:00:: 1 -1 plastically%4:02:00:: 1 -1 plastic%5:00:00:integrative:00 1 -1 plastic%5:00:00:elastic:00 2 -1 plasterer%1:18:00:: 1 -1 plastered%5:00:00:groomed:00 1 -1 plaster_saint%1:18:00:: 1 -1 plaster_over%2:35:00:: 1 -1 plaster_of_paris%1:27:00:: 1 -1 plaster%2:35:01:: 1 -1 plaque%1:06:00:: 2 -1 planted%5:00:00:established:00 1 -1 plantain_lily%1:20:00:: 1 -1 plant_tissue%1:20:00:: 1 -1 plant%2:36:00:: 3 -1 planetoid%1:17:00:: 1 -1 planet%1:18:00:: 2 -1 plaintively%4:02:00:: 1 -1 plain%5:00:00:unadorned:00 7 -1 plain%5:00:00:pure:02 5 -1 plain%5:00:00:direct:02 6 -1 plain%3:00:02:: 4 -1 plain%3:00:01:: 3 -1 plain%1:17:00:: 1 -1 plagued%5:00:00:troubled:00 1 -1 placidly%4:02:01:: 1 -1 placid%5:00:00:uneventful:00 3 -1 placid%5:00:00:good-natured:00 2 -1 placement%1:04:00:: 3 -1 place_of_origin%1:15:00:: 1 -1 place_of_birth%1:15:00:: 1 -1 place-kicker%1:18:00:: 1 -1 place%2:41:00:: 9 -1 place%2:36:00:: 10 -1 place%2:31:13:: 11 -1 place%1:26:02:: 13 -1 place%1:15:02:: 14 -1 place%1:11:00:: 15 -1 place%1:10:02:: 16 -1 place%1:10:01:: 17 -1 placating%5:00:00:conciliating:00 1 -1 pizza%1:13:00:: 1 -1 pixie%1:18:00:: 1 -1 pivot%2:38:00:: 1 -1 pityingly%4:02:00:: 1 -1 pitying%5:00:00:compassionate:00 1 -1 pitilessly%4:02:00:: 1 -1 pitiful%5:00:00:contemptible:00 1 -1 pitiable%5:00:00:contemptible:00 1 -1 pithy%5:00:00:concise:00 1 -1 pith%1:20:00:: 1 -1 pitfall%1:09:00:: 1 -1 piteously%4:02:00:: 1 -1 pitching%1:04:01:: 2 -1 pitcher%1:23:00:: 3 -1 pitch%2:30:00:: 4 -1 pitch%1:15:00:: 3 -1 pitch%1:10:00:: 4 -1 pitch%1:07:01:: 5 -1 pit%2:33:00:: 1 -1 pistoleer%1:18:00:: 1 -1 pistol-whip%2:35:00:: 1 -1 piss%2:29:00:: 1 -1 pisces%1:15:00:: 1 -1 pirogue%1:06:00:: 1 -1 piratical%3:01:00:: 1 -1 pirate%1:18:00:: 2 -1 pique%1:06:00:: 1 -1 piper%1:18:00:: 1 -1 pipe_in%2:35:00:: 1 -1 pipe%2:32:00:: 1 -1 pioneer%1:18:01:: 1 -1 pioneer%1:18:00:: 2 -1 pinpoint%1:28:00:: 1 -1 pinpoint%1:07:00:: 2 -1 pinning%1:10:00:: 1 -1 pinnacle%1:06:00:: 1 -1 ping-pong%1:04:00:: 1 -1 ping%2:35:00:: 1 -1 pinecone%1:20:00:: 1 -1 pine_knot%1:27:00:: 1 -1 pinched%5:00:00:thin:03 2 -1 pinched%5:00:00:high:03 1 -1 pinch_hitter%1:18:00:: 1 -1 pinball%1:04:00:: 1 -1 pinafore%1:06:00:: 1 -1 pin_down%2:31:00:: 1 -1 pin%2:35:01:: 3 -1 pin%1:06:01:: 1 -1 pimple%1:26:00:: 1 -1 pilot_program%1:04:00:: 1 -1 pilot_light%1:06:01:: 1 -1 pilot%2:38:01:: 2 -1 pilot%2:38:00:: 1 -1 pillory%2:41:01:: 1 -1 pillar%1:09:00:: 1 -1 pill%1:06:00:: 2 -1 pilgrim%1:18:00:: 1 -1 pike%1:06:01:: 1 -1 pigskin%1:27:00:: 1 -1 pigheaded%5:00:00:stubborn:00 1 -1 pigeon-toed%3:00:00:: 1 -1 piezoelectricity%1:19:00:: 1 -1 piezoelectric_effect%1:19:00:: 1 -1 piety%1:07:00:: 1 -1 pierce%2:37:00:: 2 -1 pier%1:06:00:: 1 -1 piedmont%1:15:01:: 1 -1 piece_de_resistance%1:06:00:: 1 -1 piece%2:35:02:: 1 -1 piece%1:13:00:: 8 -1 piece%1:07:00:: 9 -1 piece%1:06:04:: 10 -1 pidgin%1:10:00:: 1 -1 picturing%1:09:00:: 1 -1 picturing%1:04:00:: 2 -1 picturesque%5:00:00:colorful:03 2 -1 pictured%5:00:00:unreal:00 1 -1 picture_palace%1:06:00:: 1 -1 picture_hat%1:06:00:: 1 -1 picture_frame%1:06:00:: 1 -1 picture_book%1:06:00:: 1 -1 picture%1:09:01:: 9 -1 pictorially%4:02:00:: 1 -1 pictorial%5:00:00:realistic:00 2 -1 picnic_area%1:15:00:: 1 -1 picnic%2:34:00:: 1 -1 picnic%1:04:00:: 2 -1 pickup%1:10:00:: 2 -1 pickup%1:06:03:: 3 -1 pickle%1:13:00:: 1 -1 picking%1:04:01:: 1 -1 picket_ship%1:06:00:: 1 -1 picket_boat%1:06:00:: 1 -1 picket%2:41:00:: 1 -1 picket%2:35:00:: 2 -1 pick_up%2:41:00:: 11 -1 pick_up%2:37:00:: 12 -1 pick_up%2:30:00:: 13 -1 pick_off%2:41:00:: 1 -1 pick_off%2:35:00:: 2 -1 pick_at%2:35:00:: 1 -1 pick%2:36:00:: 4 -1 pick%2:30:01:: 6 -1 pick%2:30:00:: 5 -1 pick%1:09:00:: 1 -1 piazza%1:15:00:: 1 -1 piano_sonata%1:10:00:: 1 -1 piano_player%1:18:00:: 1 -1 piano_lesson%1:04:00:: 1 -1 pianistic%3:01:00:: 1 -1 pianism%1:10:00:: 1 -1 physiology%1:09:00:: 1 -1 physicochemical%3:01:00:: 1 -1 physicalness%1:07:00:: 1 -1 physical_therapist%1:18:00:: 1 -1 physical_structure%1:08:00:: 1 -1 physical_chemistry%1:09:00:: 1 -1 physical_ability%1:07:00:: 1 -1 phylum%1:14:01:: 1 -1 phrasing%1:04:00:: 1 -1 phraseology%1:10:00:: 1 -1 photon%1:17:00:: 1 -1 photomontage%1:06:00:: 1 -1 photography%1:04:00:: 1 -1 photographically%4:02:00:: 1 -1 photograph%2:42:00:: 2 -1 phosphorus%1:27:00:: 1 -1 phosphorescent%5:00:00:light:06 1 -1 phosgene%1:27:00:: 1 -1 phony%1:18:00:: 1 -1 phonologic_system%1:10:00:: 1 -1 phonograph_record%1:06:00:: 1 -1 phonograph_needle%1:06:00:: 1 -1 phonograph%1:06:01:: 1 -1 phonic%3:01:02:: 1 -1 phonetics%1:09:00:: 1 -1 phone_company%1:14:00:: 1 -1 phone_call%1:10:00:: 1 -1 phone_booth%1:06:00:: 1 -1 phoenix%1:15:00:: 1 -1 phloem%1:20:00:: 1 -1 philosophy%1:09:02:: 3 -1 philosophizing%1:10:00:: 1 -1 philosophize%2:31:00:: 1 -1 philosophically%4:02:00:: 1 -1 philosopher%1:18:01:: 2 -1 philological%3:01:00:: 1 -1 philippine_islands%1:15:00:: 1 -1 philippic%1:10:00:: 1 -1 philharmonic%3:01:00:: 1 -1 philanthropist%1:18:00:: 1 -1 philanthropic%5:00:00:charitable:00 1 -1 phase%1:28:01:: 3 -1 pharmacy%1:09:00:: 1 -1 pharmacy%1:06:00:: 2 -1 pharmacological%3:01:00:: 1 -1 pharmacist%1:18:00:: 1 -1 pharmaceutical%3:01:00:: 1 -1 phantom%5:00:00:unreal:02 1 -1 phantom%1:09:00:: 2 -1 phantasy%1:09:01:: 1 -1 phalanx%1:14:01:: 2 -1 phagocyte%1:08:00:: 1 -1 pfennig%1:23:00:: 1 -1 pew%1:06:00:: 1 -1 petulantly%4:02:00:: 1 -1 petulance%1:12:00:: 1 -1 petting%1:04:00:: 1 -1 petticoated%5:00:00:clothed:00 1 -1 petroleum_geologist%1:18:00:: 1 -1 petrify%2:30:01:: 1 -1 petite%5:00:00:small:00 1 -1 petit_dejeuner%1:13:00:: 1 -1 peter_out%2:42:00:: 1 -1 pet%2:35:00:: 1 -1 pestilential%5:00:00:epidemic:00 1 -1 pestering%5:00:00:disagreeable:00 1 -1 pessimistic%3:00:00:: 1 -1 pessimist%1:18:00:: 1 -1 pessimism%1:12:00:: 1 -1 pervaporation%1:04:00:: 1 -1 peruse%2:39:00:: 1 -1 perusal%1:10:00:: 1 -1 peru%1:15:00:: 1 -1 perturb%2:37:00:: 1 -1 pertinence%1:24:00:: 1 -1 pertain%2:42:00:: 2 -1 pert%5:00:00:spirited:00 1 -1 persuasive%3:00:00:: 1 -1 perspiring%5:00:00:wet:01 1 -1 perspective%1:07:00:: 2 -1 personification%1:18:00:: 1 -1 personally%4:02:02:: 5 -1 personalized%5:00:01:personal:00 1 -1 personalize%2:30:00:: 1 -1 personal%5:00:00:physical:00 4 -1 personage%1:18:00:: 1 -1 persona%1:09:00:: 1 -1 person%1:08:00:: 2 -1 persistently%4:02:01:: 1 -1 persistently%4:02:00:: 2 -1 persistent%5:00:00:unforgettable:00 2 -1 persist%2:42:01:: 3 -1 persevere%2:30:00:: 1 -1 perpetually%4:02:02:: 1 -1 perpetual%5:00:00:permanent:00 1 -1 perpetration%1:04:00:: 1 -1 peroxide%1:27:00:: 1 -1 permit%1:04:00:: 2 -1 permission%1:04:00:: 2 -1 permian%1:28:00:: 1 -1 permanence%1:07:00:: 1 -1 perk_up%2:29:00:: 1 -1 periwinkle%1:20:01:: 1 -1 peripheral%5:00:00:incidental:00 3 -1 periodicity%1:07:00:: 1 -1 period_piece%1:06:00:: 1 -1 perilously%4:02:00:: 1 -1 peril%1:26:00:: 1 -1 perfusion%1:04:00:: 1 -1 perfunctory%5:00:00:careless:00 1 -1 perfumed%5:00:02:fragrant:00 1 -1 perforation%1:06:00:: 1 -1 perfectionist%1:18:00:: 1 -1 perfectionism%1:07:00:: 1 -1 perfectibility%1:09:00:: 1 -1 perfectability%1:09:00:: 1 -1 perfect_tense%1:24:00:: 1 -1 perfect_gas%1:27:00:: 1 -1 perennially%4:02:00:: 1 -1 percussive_instrument%1:06:00:: 1 -1 percussion%1:04:01:: 1 -1 percussion%1:04:00:: 2 -1 percolator%1:06:00:: 1 -1 perchlorate%1:27:00:: 1 -1 perched%5:00:00:alert:00 1 -1 perchance%4:02:01:: 2 -1 perchance%4:02:00:: 1 -1 perch%1:06:00:: 1 -1 perceptive%3:01:00:: 1 -1 perceptive%3:00:00:: 2 -1 perception%1:09:03:: 4 -1 perceptible%3:00:00:: 1 -1 perceived%5:00:02:detected:00 1 -1 perambulating%5:00:00:mobile:00 1 -1 peptizing%3:44:00:: 1 -1 peptidase%1:27:00:: 1 -1 pepper%2:39:00:: 1 -1 pepper%2:33:00:: 2 -1 pep_up%2:32:00:: 1 -1 peopled%5:00:00:inhabited:00 1 -1 people%2:30:00:: 1 -1 people%1:14:03:: 4 -1 penutian%1:10:00:: 1 -1 penultimate%5:00:00:last:00 1 -1 penthouse%1:06:00:: 1 -1 pentagon%1:14:00:: 2 -1 pensive%5:00:00:thoughtful:00 1 -1 pensioner%1:18:00:: 1 -1 penny_arcade%1:06:00:: 1 -1 penny-pinch%2:40:00:: 1 -1 penny%1:21:00:: 2 -1 peninsula%1:17:00:: 1 -1 penetration%1:09:00:: 2 -1 penetration%1:04:02:: 3 -1 penetrate%2:31:01:: 3 -1 pendulum%1:06:00:: 1 -1 penciled%3:44:00:: 1 -1 pencil_pusher%1:18:00:: 1 -1 penance%1:12:00:: 1 -1 penance%1:04:01:: 2 -1 penalty%1:21:00:: 2 -1 penalty%1:07:00:: 3 -1 pen-and-ink%1:06:00:: 1 -1 pen%1:06:01:: 2 -1 pemmican%1:13:00:: 1 -1 pelvis%1:08:00:: 1 -1 pelvic_girdle%1:08:00:: 1 -1 pelting%1:07:00:: 1 -1 pelt%2:35:00:: 1 -1 pelt%2:33:00:: 2 -1 pegged-down%5:00:00:fastened:00 1 -1 peg_down%2:35:00:: 1 -1 peevish%5:00:00:ill-natured:00 1 -1 peer_group%1:14:00:: 1 -1 peep%2:39:00:: 1 -1 peeling%5:00:00:damaged:00 1 -1 peel_off%2:35:00:: 1 -1 peel_off%2:29:01:: 2 -1 pedestal%1:06:00:: 1 -1 pedantic%5:00:00:scholarly:00 1 -1 pedagogical%3:01:00:: 1 -1 peculiarly%4:02:02:: 3 -1 peculiarity%1:09:00:: 1 -1 peculiarity%1:07:02:: 2 -1 pectoralis_major%1:08:00:: 1 -1 pectoralis%1:08:00:: 1 -1 peck%2:34:00:: 2 -1 peasanthood%1:07:00:: 1 -1 peasant%1:18:03:: 2 -1 pearly%5:00:00:achromatic:00 1 -1 pearl%3:01:00:: 1 -1 pearl%1:21:00:: 1 -1 pearl%1:07:00:: 2 -1 pealing%1:11:00:: 1 -1 peal%1:11:00:: 1 -1 peaky%5:00:00:high:03 1 -1 peaked%5:00:00:pointed:00 2 -1 peak%2:38:00:: 1 -1 peace_officer%1:18:00:: 1 -1 peace_of_mind%1:12:00:: 1 -1 peace-loving%5:00:00:peaceful:00 1 -1 peace%1:26:02:: 4 -1 payroll%1:21:00:: 1 -1 payne's_gray%1:27:00:: 1 -1 pay_rate%1:21:00:: 1 -1 pay_off%2:40:04:: 4 -1 pay_cut%1:04:00:: 1 -1 pay%2:41:00:: 8 -1 pay%2:31:03:: 9 -1 paw%2:35:01:: 1 -1 paw%2:35:00:: 2 -1 paving_stone%1:06:00:: 1 -1 pavement%1:27:00:: 2 -1 pavement%1:06:01:: 3 -1 paucity%1:07:01:: 1 -1 pattern%1:09:02:: 6 -1 pattern%1:09:01:: 5 -1 patronize%2:41:00:: 2 -1 patronize%2:32:01:: 3 -1 patroller%1:18:00:: 1 -1 patrol%1:04:00:: 2 -1 patriarchal%3:00:00:: 1 -1 patina%1:06:00:: 1 -1 pathway%1:06:00:: 2 -1 pathos%1:07:00:: 1 -1 pathological%5:00:00:neurotic:00 2 -1 pathologic%5:00:00:unhealthy:00 1 -1 pathogenesis%1:22:00:: 1 -1 pathless%5:00:00:inaccessible:00 1 -1 pathetic%5:00:00:unfortunate:00 1 -1 pathetic%5:00:00:contemptible:00 2 -1 paternally%4:02:00:: 1 -1 paternalistic%5:00:00:paternal:00 1 -1 patent_right%1:07:00:: 1 -1 patent_medicine%1:06:00:: 1 -1 patent_leather%1:27:00:: 1 -1 patent%2:40:00:: 1 -1 patchwork%1:09:00:: 1 -1 patched%5:00:00:old:01 1 -1 patch_up%2:30:00:: 1 -1 patch%2:40:00:: 2 -1 pasty%5:00:00:colorless:02 1 -1 pasty%5:00:00:adhesive:00 2 -1 pasture%1:13:00:: 2 -1 pastoral%3:01:00:: 1 -1 pastime%1:04:00:: 1 -1 pastelike%5:00:00:colorless:02 1 -1 pastel%5:00:00:light:05 2 -1 pastel%5:00:00:delicate:00 1 -1 pastel%1:07:00:: 1 -1 past%1:10:00:: 3 -1 passivity%1:07:00:: 1 -1 passive%5:00:00:nonviolent:00 2 -1 passion%1:26:01:: 3 -1 passion%1:16:00:: 4 -1 passion%1:12:02:: 5 -1 passion%1:09:00:: 6 -1 passing%1:11:00:: 2 -1 passageway%1:08:00:: 2 -1 passage%1:08:00:: 7 -1 passage%1:04:05:: 8 -1 pass_water%2:29:00:: 1 -1 pass_up%2:40:00:: 1 -1 pass_through%2:38:01:: 3 -1 pass_over%2:38:03:: 4 -1 pass_over%2:38:02:: 2 -1 pass_over%2:38:01:: 3 -1 pass_out%2:29:00:: 1 -1 pass_on%2:40:00:: 4 -1 pass_off%2:39:00:: 1 -1 pass_off%2:32:00:: 2 -1 pass_away%2:30:01:: 2 -1 pass%2:42:04:: 15 -1 pass%2:41:11:: 17 -1 pass%2:41:07:: 16 -1 pass%2:40:02:: 18 -1 pass%2:38:02:: 19 -1 pass%1:17:00:: 4 -1 pass%1:10:03:: 6 -1 pass%1:10:01:: 5 -1 pass%1:04:06:: 7 -1 paso_doble%1:04:00:: 1 -1 party_game%1:04:00:: 1 -1 party%1:18:00:: 5 -1 partner%2:40:00:: 1 -1 partisan%5:00:00:aligned:01 1 -1 parting%5:00:00:last:00 1 -1 particularistic%3:01:00:: 1 -1 particle%1:10:00:: 3 -1 participate%2:33:00:: 2 -1 participant%1:18:00:: 1 -1 partial%3:00:01:: 2 -1 parthenon%1:06:00:: 1 -1 parted%5:00:00:compound:00 1 -1 partake%2:42:00:: 1 -1 part_of_speech%1:10:00:: 1 -1 part%2:41:00:: 2 -1 parsonage%1:06:00:: 1 -1 parry%2:33:00:: 1 -1 parrotlike%5:00:00:imitative:00 1 -1 parrot%2:32:00:: 1 -1 parrot%1:05:00:: 1 -1 paroxysm%1:26:00:: 1 -1 parody%2:36:00:: 1 -1 parlor%1:06:01:: 2 -1 parliamentary%5:00:00:democratic:00 2 -1 parlay%2:33:00:: 1 -1 parlance%1:10:00:: 1 -1 parkinson's_disease%1:26:00:: 1 -1 parking_space%1:15:00:: 1 -1 parisology%1:10:00:: 1 -1 parishioner%1:18:00:: 1 -1 parings%1:13:00:: 1 -1 parenthesis%1:10:00:: 1 -1 parental%3:01:00:: 1 -1 pare_down%2:30:00:: 1 -1 pare%2:30:00:: 1 -1 pardonable%3:00:00:: 1 -1 pardon%1:04:00:: 1 -1 parchment%1:27:01:: 1 -1 parched%5:00:00:dry:01 1 -1 parch%2:30:00:: 1 -1 parcel%2:41:00:: 1 -1 parcel%1:06:00:: 1 -1 parcel%1:04:00:: 2 -1 paraphrase%2:32:00:: 1 -1 paraphernalia%1:06:00:: 1 -1 paranoiac%1:18:00:: 1 -1 paramilitary_organization%1:14:00:: 1 -1 paramagnet%1:06:00:: 1 -1 paralyze%2:30:01:: 1 -1 paralyze%2:30:00:: 2 -1 parallel_bars%1:06:00:: 1 -1 parallel%2:30:00:: 2 -1 parallel%1:15:00:: 2 -1 parakeet%1:05:00:: 1 -1 paragon%1:09:00:: 1 -1 paradigm%1:09:00:: 2 -1 parade%2:38:00:: 2 -1 parade%1:14:02:: 2 -1 par%1:26:00:: 2 -1 papillary%3:01:00:: 1 -1 papery%5:00:00:thin:01 1 -1 paperwork%1:04:00:: 1 -1 paperback%1:06:00:: 1 -1 paper_bag%1:06:00:: 1 -1 papal%3:01:00:: 1 -1 pap%1:10:00:: 1 -1 pantry%1:06:00:: 1 -1 pantomime%2:36:00:: 1 -1 pantomime%1:04:00:: 1 -1 panting%1:04:00:: 1 -1 pantheon%1:14:00:: 1 -1 pant%2:32:00:: 2 -1 panoramic%5:00:00:wide:00 1 -1 panicked%5:00:00:afraid(p):00 1 -1 panic-stricken%5:00:00:afraid(p):00 1 -1 panic%2:37:01:: 2 -1 panic%2:37:00:: 1 -1 pang%1:12:00:: 1 -1 panel_discussion%1:10:00:: 1 -1 panel%2:36:00:: 1 -1 panel%1:06:00:: 1 -1 pane_of_glass%1:06:00:: 1 -1 pander%1:18:00:: 1 -1 panama%1:15:00:: 1 -1 pan%2:38:00:: 1 -1 pan%2:35:00:: 2 -1 pamphlet%1:10:01:: 1 -1 pamphlet%1:10:00:: 2 -1 pampered%5:00:00:soft:02 1 -1 pamper%2:41:00:: 1 -1 palpably%4:02:00:: 1 -1 palpable%3:00:00:: 1 -1 palm_off%2:40:00:: 1 -1 palm%2:35:00:: 1 -1 pallid%5:00:00:weak:00 2 -1 pall%2:30:01:: 1 -1 paling%5:00:00:decreasing:00 1 -1 palette%1:07:00:: 1 -1 palette%1:06:00:: 2 -1 palermo%1:15:00:: 1 -1 paleocortical%3:01:00:: 1 -1 paleocortex%1:08:00:: 1 -1 pale%2:29:00:: 1 -1 pale%1:06:00:: 1 -1 pakistan%1:15:00:: 1 -1 pajamas%1:06:00:: 1 -1 paired%5:00:00:matched:00 1 -1 painting%1:04:01:: 4 -1 painted%5:00:00:artificial:00 3 -1 paint_a_picture%2:32:00:: 1 -1 painless%5:00:00:easy:01 1 -1 painful%5:00:00:unpleasant:00 2 -1 paid_vacation%1:28:00:: 1 -1 paid%5:00:00:professional:01 2 -1 paging%1:10:00:: 1 -1 pageant%1:04:00:: 1 -1 page%2:32:00:: 1 -1 paganism%1:09:00:: 1 -1 pagan%1:18:00:: 1 -1 padlock%2:35:00:: 1 -1 padlock%1:06:00:: 1 -1 paddle%2:38:00:: 1 -1 padded%5:00:00:soft:01 1 -1 pad%2:32:00:: 1 -1 pad%1:27:01:: 1 -1 pact%1:10:00:: 1 -1 packinghouse%1:06:01:: 1 -1 packing%1:04:00:: 2 -1 packed%5:00:00:crowded:00 1 -1 packaging%1:04:00:: 1 -1 pack%2:41:00:: 5 -1 pack%1:23:00:: 1 -1 pack%1:14:03:: 2 -1 pack%1:06:00:: 3 -1 pacing%1:28:00:: 1 -1 pacing%1:04:00:: 2 -1 pacification%1:04:00:: 1 -1 pacific%5:00:01:peaceful:00 1 -1 pachinko%1:04:00:: 1 -1 pace%1:04:00:: 4 -1 oyster%1:05:00:: 1 -1 oxidised%3:44:00:: 1 -1 oxidise%2:30:00:: 1 -1 oxford_english%1:10:00:: 1 -1 oxford%1:15:00:: 1 -1 oxcart%1:06:00:: 1 -1 ox%1:05:02:: 1 -1 owned%3:00:00:: 1 -1 owing%5:00:00:unpaid:00 1 -1 overwork%2:36:00:: 1 -1 overwhelmed%5:00:00:powerless:00 1 -1 overwhelm%2:37:00:: 1 -1 overwhelm%2:32:00:: 2 -1 overweight%5:00:00:fat:01 1 -1 overvaliant%5:00:00:bold:00 1 -1 overturned%5:00:00:turned:00 1 -1 overturn%2:38:01:: 2 -1 overturn%2:31:00:: 3 -1 overture%1:11:00:: 2 -1 overture%1:10:00:: 3 -1 overtone%1:10:00:: 1 -1 overtly%4:02:00:: 1 -1 overtime%1:28:01:: 1 -1 overthrow%1:04:01:: 1 -1 overt%3:00:00:: 1 -1 overstrain%2:34:00:: 1 -1 overstep%2:38:00:: 1 -1 oversimplification%1:04:00:: 1 -1 overshoot%2:33:00:: 1 -1 overshoot%2:31:00:: 2 -1 overshoe%1:06:00:: 1 -1 overshadow%2:42:00:: 1 -1 overseas%5:00:00:foreign:02 1 -1 overseas%4:02:01:: 2 -1 overseas%4:02:00:: 1 -1 overriding%5:00:00:dominant:01 1 -1 overreach%2:33:00:: 2 -1 overprotective%5:00:00:protective:00 1 -1 overprotection%1:04:00:: 1 -1 overproduce%2:36:00:: 1 -1 overpriced%5:00:00:expensive:00 1 -1 overpower%2:37:00:: 2 -1 overlooked%5:00:00:unnoticed:00 1 -1 overlook%2:31:00:: 3 -1 overloaded%5:00:00:full:00 1 -1 overload%2:35:01:: 1 -1 overload%2:30:00:: 2 -1 overload%1:06:02:: 1 -1 overlay%2:35:00:: 1 -1 overlapping%5:00:00:related:02 1 -1 overlap%2:42:01:: 2 -1 overlap%2:30:02:: 3 -1 overindulge%2:34:00:: 1 -1 overheated%5:00:00:hot:01 1 -1 overheat%2:30:00:: 1 -1 overhaul%2:38:00:: 1 -1 overhaul%2:30:00:: 2 -1 overhang%1:06:00:: 1 -1 overhand%3:00:00:: 1 -1 overgrown%5:00:00:covered:00 1 -1 overflow%1:04:00:: 1 -1 overfill%2:30:00:: 1 -1 overfeed%2:34:00:: 1 -1 overexpose%2:39:01:: 1 -1 overestimation%1:10:00:: 1 -1 overestimate%2:31:00:: 1 -1 overeating%1:04:00:: 1 -1 overeat%2:34:00:: 1 -1 overdrive%2:41:00:: 1 -1 overcurious%5:00:00:curious:00 1 -1 overconfident%5:00:00:confident:00 1 -1 overcast%5:00:00:cloudy:00 1 -1 overburden%2:32:00:: 1 -1 overactive%5:00:00:active:01 1 -1 over_here%4:02:00:: 1 -1 over_again%4:02:00:: 1 -1 over%4:02:03:: 3 -1 over%4:02:00:: 4 -1 oven%1:06:00:: 1 -1 outwardly%4:02:01:: 1 -1 outward%4:02:00:: 1 -1 outstrip%2:33:00:: 1 -1 outstanding%5:00:00:major:06 3 -1 outspoken%5:00:00:communicative:00 1 -1 outskirt%1:15:00:: 1 -1 outside%1:15:00:: 2 -1 outright%5:00:00:unqualified:02 1 -1 outrageous%5:00:00:offensive:01 1 -1 outraged%5:00:00:angry:00 1 -1 outrage%1:12:00:: 1 -1 outrage%1:04:01:: 2 -1 output%2:36:00:: 1 -1 output%1:10:02:: 3 -1 outpost%1:15:00:: 1 -1 outpost%1:14:00:: 2 -1 outpost%1:06:00:: 3 -1 outplay%2:33:00:: 1 -1 outmoded%5:00:00:unfashionable:00 1 -1 outmode%2:30:00:: 1 -1 outmaneuver%2:33:00:: 1 -1 outlying%5:00:00:far:00 1 -1 outlined%5:00:00:distinct:00 1 -1 outline%1:09:00:: 3 -1 outlet%1:06:02:: 2 -1 outlay%1:04:00:: 1 -1 outlaw%1:18:00:: 1 -1 outing%1:04:00:: 1 -1 outgrow%2:30:01:: 1 -1 outgrow%2:30:00:: 2 -1 outgeneral%2:33:00:: 1 -1 outflow%1:11:00:: 1 -1 outfit%1:06:01:: 2 -1 outfit%1:06:00:: 3 -1 outfight%2:33:00:: 1 -1 outer_space%1:15:00:: 1 -1 outer%5:00:00:outward:00 2 -1 outdraw%2:33:00:: 1 -1 outdoor_man%1:18:00:: 1 -1 outdated%5:00:00:noncurrent:00 1 -1 outclassed%5:00:00:inferior:01 1 -1 outclass%2:31:00:: 1 -1 outbreak%1:11:00:: 1 -1 outboard_motor%1:06:00:: 1 -1 out_to%5:00:00:resolute:00 1 -1 out_of_the_question%5:00:00:unthinkable:00 1 -1 out_of_the_blue%5:00:00:unexpected:00 1 -1 out_of_sight%4:02:01:: 1 -1 out_of_sight%4:02:00:: 2 -1 out_of_place%5:00:00:malapropos:00 1 -1 out_of_focus%3:00:00:: 1 -1 out_of_commission%3:00:00:: 1 -1 out-of-the-way%5:00:00:unusual:00 1 -1 out-of-school%5:00:00:free:00 1 -1 out-of-doors%1:15:00:: 1 -1 out-and-out%5:00:00:complete:00 1 -1 out%5:00:00:impossible:00 4 -1 ought%2:42:00:: 2 -1 ostracize%2:41:01:: 1 -1 osteoporosis%1:26:00:: 1 -1 ostentatious%3:00:00:: 1 -1 ostensibly%4:02:00:: 1 -1 ossify%2:30:00:: 1 -1 oscillator%1:06:00:: 1 -1 oscillation%1:22:00:: 1 -1 oscillation%1:11:00:: 2 -1 os%1:08:01:: 1 -1 orthophosphate%1:27:00:: 1 -1 orthopedic%3:01:00:: 1 -1 orthodoxy%1:07:00:: 1 -1 orthodox_church%1:14:00:: 1 -1 orthodox_catholic_church%1:14:00:: 1 -1 orthicon%1:06:00:: 1 -1 orphan%1:18:00:: 1 -1 ornately%4:02:00:: 1 -1 ornate%5:00:00:adorned:00 1 -1 ornamented%5:00:00:adorned:00 1 -1 ornament%2:36:00:: 1 -1 ornament%1:06:00:: 1 -1 orinoco%1:17:00:: 1 -1 originally%4:02:01:: 2 -1 originality%1:07:00:: 2 -1 original_sin%1:04:00:: 1 -1 origin%1:11:00:: 3 -1 origin%1:09:00:: 4 -1 orientation%1:09:00:: 2 -1 orient%2:42:01:: 3 -1 orient%1:15:00:: 1 -1 orgy%1:04:01:: 1 -1 orgy%1:04:00:: 2 -1 organizer%1:18:00:: 1 -1 organize%2:41:02:: 6 -1 organise%2:30:00:: 1 -1 organically%4:02:01:: 1 -1 organically%4:02:00:: 2 -1 organic%3:01:00:: 2 -1 organ%1:14:00:: 2 -1 organ%1:06:01:: 3 -1 ordinate%1:09:00:: 1 -1 ordinary%1:26:00:: 2 -1 ordinance%1:10:00:: 1 -1 orderly_sergeant%1:18:00:: 1 -1 orderly%5:00:00:regular:00 2 -1 orderly%5:00:00:nonrandom:00 3 -1 orderliness%1:07:00:: 1 -1 order_arms%1:04:00:: 1 -1 order%2:30:01:: 6 -1 order%2:30:00:: 5 -1 order%1:14:02:: 8 -1 order%1:10:02:: 9 -1 ordain%2:41:00:: 2 -1 orchid%1:20:00:: 1 -1 orchestration%1:04:01:: 2 -1 orchestral%3:01:00:: 1 -1 orchestra%1:06:00:: 2 -1 orbit%1:26:00:: 2 -1 orbit%1:07:00:: 3 -1 oratorio%1:10:00:: 1 -1 orator%1:18:00:: 1 -1 orange%1:20:00:: 3 -1 orally%4:02:01:: 1 -1 oral_cavity%1:08:00:: 1 -1 opulent%5:00:00:rich:03 1 -1 optimum%1:07:00:: 1 -1 optically%4:02:00:: 1 -1 optical%3:01:04:: 2 -1 oppression%1:04:00:: 1 -1 oppress%2:41:00:: 1 -1 opposition%1:18:01:: 4 -1 opposition%1:14:00:: 5 -1 opposite%5:00:00:different:00 6 -1 opposite%1:24:03:: 2 -1 opposite%1:18:00:: 3 -1 opposing%5:00:00:counteractive:00 2 -1 opposed%3:00:00:: 2 -1 opportunistic%5:00:00:expedient:00 1 -1 opportunism%1:07:00:: 1 -1 opinionated%5:00:00:narrow-minded:00 1 -1 operator%1:18:02:: 4 -1 operator%1:18:01:: 3 -1 operative%3:00:00:: 1 -1 operations%1:04:00:: 1 -1 operationally%4:02:00:: 1 -1 operational%5:00:00:operative:00 4 -1 operating_procedure%1:04:00:: 1 -1 operating_capital%1:21:00:: 1 -1 operating_budget%1:21:00:: 1 -1 operagoer%1:18:00:: 1 -1 opera_bouffe%1:10:00:: 1 -1 openwork%1:06:00:: 1 -1 opening%1:11:00:: 4 -1 opening%1:04:01:: 5 -1 opened%5:00:00:open:02 2 -1 open_up%2:36:00:: 4 -1 open_to%5:00:00:susceptible:00 2 -1 open_sesame%1:04:00:: 1 -1 open_house%1:14:00:: 1 -1 open_fire%2:33:00:: 1 -1 open-ended%5:00:00:unrestricted:00 1 -1 open-ended%5:00:00:indeterminate:01 2 -1 open-collared%5:00:00:unbuttoned:00 1 -1 open%5:00:00:unsettled:02 13 -1 open%5:00:00:unsealed:01 14 -1 open%5:00:00:unconstricted:00 15 -1 open%5:00:00:empty:00 16 -1 open%3:00:04:: 12 -1 open%2:42:00:: 8 -1 open%2:33:00:: 9 -1 open%1:15:02:: 2 -1 open%1:15:01:: 1 -1 opalescent%5:00:00:bright:00 1 -1 onshore%4:02:00:: 1 -1 onshore%3:00:04:: 1 -1 onrush%1:11:00:: 2 -1 only_if%4:02:00:: 1 -1 one_of_these_days%4:02:00:: 1 -1 one_by_one%4:02:00:: 2 -1 one-upmanship%1:04:00:: 1 -1 one-thousandth%1:23:00:: 1 -1 one-tenth%1:23:00:: 1 -1 one-horse%5:00:00:provincial:00 1 -1 one-fourth%1:23:00:: 1 -1 one%5:00:00:indefinite:00 6 -1 one%5:00:00:extraordinary:00 5 -1 oncoming%5:00:00:moving:02 1 -1 once_in_a_while%4:02:00:: 1 -1 on_trial%5:00:00:unproved:00 1 -1 on_time%5:00:00:punctual:00 1 -1 on_the_wing%4:02:00:: 1 -1 on_the_side%4:02:00:: 1 -1 on_the_road%1:04:00:: 1 -1 on_the_hook%5:00:00:dangerous:00 1 -1 on_the_far_side%4:02:00:: 1 -1 on_the_face_of_it%4:02:00:: 1 -1 on_the_average%4:02:00:: 1 -1 on_leave%5:00:00:inactive:08 1 -1 on_her_own%5:00:00:independent:00 1 -1 on_guard%5:00:00:wary:00 1 -1 on_fire%5:00:00:lighted:00 1 -1 on_duty%5:00:00:active:08 1 -1 on_all_fours%4:02:00:: 1 -1 on-the-spot%5:00:00:on-site:00 1 -1 on-the-scene%5:00:00:on-site:00 1 -1 on-site%3:00:00:: 1 -1 on%4:02:02:: 3 -1 omniscient%5:00:00:wise:00 1 -1 omission%1:26:00:: 2 -1 omission%1:22:00:: 3 -1 ology%1:09:00:: 1 -1 oleophobic%3:00:00:: 1 -1 oleander%1:20:00:: 1 -1 oldest%5:00:00:first:00 1 -1 older%5:00:00:experienced:00 4 -1 old_wives'_tale%1:09:00:: 1 -1 old_school%1:14:00:: 1 -1 old_man%1:18:01:: 3 -1 old_boy%1:18:00:: 2 -1 old_age%1:28:00:: 1 -1 old-time%5:00:00:nonmodern:00 1 -1 old-fashioned%5:00:00:unfashionable:00 2 -1 old%5:00:00:experienced:00 6 -1 ok%4:02:00:: 1 -1 oily%5:00:00:insincere:00 2 -1 oily%5:00:00:coated:00 3 -1 oiled%3:00:00:: 1 -1 oilcloth%1:06:00:: 1 -1 oil_geologist%1:18:00:: 1 -1 oil_business%1:14:00:: 1 -1 oil%2:35:00:: 1 -1 ohmic%3:01:00:: 1 -1 ogress%1:18:00:: 1 -1 oftentimes%4:02:00:: 1 -1 offstage%1:06:00:: 1 -1 offspring%1:11:00:: 2 -1 offshore%4:02:00:: 1 -1 offsaddle%2:35:00:: 1 -1 officiate%2:33:00:: 2 -1 officially%4:02:01:: 2 -1 official%5:00:00:confirmed:00 3 -1 official%3:01:00:: 2 -1 officer%2:32:00:: 1 -1 officer%1:18:04:: 4 -1 office_boy%1:18:00:: 1 -1 offering%1:10:00:: 1 -1 offer%2:40:01:: 7 -1 offer%2:39:06:: 8 -1 offensive%5:00:00:offending:00 1 -1 offensive%1:04:00:: 1 -1 offense%1:12:00:: 2 -1 offense%1:04:01:: 3 -1 offender%1:18:00:: 1 -1 offence%1:04:00:: 1 -1 offbeat%5:00:00:unconventional:01 1 -1 off_the_beaten_track%5:00:00:far:00 1 -1 off_and_on%4:02:00:: 1 -1 off-broadway%1:15:00:: 1 -1 off%5:00:00:unsatisfactory:00 2 -1 of_value%5:00:00:important:00 1 -1 of_their_own%5:00:00:personal:00 1 -1 of_necessity%4:02:00:: 1 -1 of_his_own%5:00:00:personal:00 1 -1 odyssey%1:04:00:: 1 -1 odious%5:00:00:hateful:00 1 -1 odessa%1:15:00:: 1 -1 odds%1:07:00:: 1 -1 odd%5:00:00:strange:00 4 -1 ocular%3:01:00:: 1 -1 octave%1:28:00:: 1 -1 octahedron%1:25:00:: 1 -1 ocher%1:07:00:: 1 -1 ocelot%1:05:00:: 1 -1 ocean_floor%1:17:00:: 1 -1 occupy%2:40:08:: 7 -1 occupy%2:31:00:: 8 -1 occupation_license%1:10:00:: 1 -1 occupation%1:04:04:: 3 -1 occupation%1:04:02:: 2 -1 occupation%1:04:01:: 4 -1 occupancy%1:04:00:: 1 -1 occlusive%3:01:00:: 1 -1 occlusion%1:26:00:: 1 -1 occluded%5:00:00:combined:00 2 -1 occlude%2:35:00:: 1 -1 occipital_lobe%1:08:00:: 1 -1 occipital%3:01:00:: 1 -1 occidental%1:18:00:: 1 -1 occasions%1:09:00:: 1 -1 obvious%3:00:04:: 3 -1 obverse%1:09:00:: 1 -1 obtrusiveness%1:07:00:: 1 -1 obtrude_upon%2:38:00:: 1 -1 obtain%2:42:00:: 3 -1 obsolescent%5:00:00:noncurrent:00 1 -1 obsidian%1:27:00:: 1 -1 obsessive-compulsive%5:00:00:neurotic:00 1 -1 obsessed%5:00:00:concerned:00 1 -1 observed%5:00:00:witnessed:00 2 -1 observe%2:31:00:: 8 -1 observational%5:00:00:empirical:00 1 -1 observation%1:10:00:: 3 -1 observation%1:09:02:: 4 -1 observation%1:09:00:: 5 -1 observance%1:04:00:: 1 -1 observable%5:00:00:noticeable:00 1 -1 obscurely%4:02:00:: 1 -1 obscenity%1:07:00:: 1 -1 oblivion%1:26:00:: 1 -1 obliterating%5:00:00:destructive:00 1 -1 obliterate%2:30:02:: 1 -1 obliterate%2:30:01:: 2 -1 obliterate%2:30:00:: 3 -1 obligingly%4:02:00:: 1 -1 oblige%2:32:00:: 2 -1 obligational%3:01:00:: 1 -1 obligation%1:26:00:: 2 -1 objet_d'art%1:06:00:: 1 -1 objectionable%5:00:00:offensive:01 1 -1 object%1:09:01:: 4 -1 obelisk%1:06:00:: 1 -1 obediently%4:02:00:: 1 -1 obdurate%5:00:00:unregenerate:00 1 -1 oatmeal%1:13:00:: 1 -1 oat%1:20:00:: 1 -1 oaken%5:00:00:woody:00 1 -1 oak%1:20:00:: 2 -1 nymph%1:18:00:: 1 -1 nymph%1:05:00:: 2 -1 nuzzle%2:35:02:: 1 -1 nutritive%5:00:00:wholesome:00 1 -1 nutritional%3:01:00:: 1 -1 nutrient%5:00:00:wholesome:00 1 -1 nutrient%1:03:00:: 1 -1 nuthouse%1:06:00:: 1 -1 nut%1:18:00:: 2 -1 nut%1:06:00:: 3 -1 nurture%2:32:00:: 1 -1 nursing%1:04:00:: 1 -1 nurse%2:37:00:: 2 -1 nurse%1:18:01:: 2 -1 numinous%5:00:00:sacred:00 1 -1 numerical%5:00:00:denotative:00 3 -1 numerical%3:01:00:: 2 -1 numbness%1:26:00:: 1 -1 numbers_game%1:04:00:: 1 -1 number_one%1:18:00:: 1 -1 number%2:32:01:: 3 -1 number%1:14:00:: 7 -1 number%1:10:02:: 8 -1 number%1:07:01:: 9 -1 null%5:00:00:invalid:00 1 -1 nucleic_acid%1:27:00:: 1 -1 nucleate%2:42:00:: 1 -1 nuclear_resonance%1:19:00:: 1 -1 nuclear%5:00:00:central:01 4 -1 nuclear%3:01:02:: 3 -1 nubile%5:00:00:mature:01 1 -1 nubbin%1:17:00:: 1 -1 nowhere%1:26:00:: 1 -1 now_and_again%4:02:00:: 1 -1 novitiate%1:28:00:: 1 -1 november_2%1:28:00:: 1 -1 novelty%1:09:00:: 2 -1 nourishment%1:13:00:: 1 -1 nourished%3:00:00:: 1 -1 nourish%2:34:01:: 2 -1 noun%1:10:01:: 2 -1 noun%1:10:00:: 1 -1 notwithstanding%4:02:00:: 1 -1 notoriously%4:02:00:: 1 -1 notification%1:04:02:: 1 -1 noticeably%4:02:00:: 1 -1 noticeable%5:00:00:perceptible:00 2 -1 notice%2:32:00:: 3 -1 notice%1:10:03:: 4 -1 notice%1:10:00:: 5 -1 notice%1:09:01:: 6 -1 note%1:21:01:: 6 -1 note%1:10:02:: 7 -1 notch%1:25:00:: 1 -1 notarize%2:32:00:: 1 -1 notable%5:00:00:known:00 2 -1 notable%1:18:00:: 1 -1 not_by_a_blame_sight%4:02:00:: 1 -1 nostalgic%5:00:00:unhappy:00 1 -1 nosed%3:00:00:: 1 -1 nose%2:39:00:: 1 -1 nose%2:38:02:: 2 -1 nose%1:06:02:: 3 -1 norway%1:15:00:: 1 -1 northwest%5:00:01:north:00 1 -1 northwest%4:02:00:: 1 -1 northwest%1:15:00:: 1 -1 northland%1:15:00:: 1 -1 northerner%1:18:01:: 2 -1 northern%5:00:01:north:00 3 -1 northerly%5:00:02:north:00 1 -1 northeast%5:00:01:north:00 1 -1 northeast%1:24:00:: 1 -1 northeast%1:15:00:: 2 -1 normal_distribution%1:09:00:: 1 -1 normal%3:00:02:: 2 -1 norethandrolone%1:27:00:: 1 -1 noradrenaline%1:08:00:: 1 -1 nooks_and_crannies%1:09:00:: 1 -1 nonvolatile%3:00:00:: 1 -1 nonsense%5:00:00:meaningless:00 1 -1 nonproductive%5:00:00:unproductive:00 1 -1 nonpolitical%3:00:00:: 1 -1 nonpartisan%5:00:00:nonaligned:00 1 -1 nonparticulate%3:00:00:: 1 -1 nonoccurrence%1:26:00:: 1 -1 nonobservant%5:00:00:irreligious:00 1 -1 nonionic%3:00:00:: 1 -1 noninterference%1:10:00:: 1 -1 nonfunctional%3:00:00:: 1 -1 nonequivalent%5:00:00:unequal:00 1 -1 nonequivalence%1:07:00:: 1 -1 nonenzymatic%3:01:00:: 1 -1 none%4:02:00:: 1 -1 nondriver%1:18:00:: 1 -1 nondescript%5:00:00:ordinary:00 1 -1 nonconformist%1:18:01:: 1 -1 noncompetitive%3:00:00:: 1 -1 noncommissioned%3:00:00:: 1 -1 noncom%1:18:00:: 1 -1 nonchurchgoing%5:00:00:irreligious:00 1 -1 nonchalant%5:00:00:unconcerned:00 1 -1 nonassertive%5:00:00:unassertive:00 1 -1 non-resistant%1:18:00:: 1 -1 non-jew%1:18:00:: 1 -1 non-discrimination%1:07:00:: 1 -1 nominal%5:00:00:minimal:00 2 -1 nominal%3:01:01:: 1 -1 nomia_melanderi%1:05:00:: 1 -1 noisily%4:02:00:: 1 -1 noise%1:09:00:: 2 -1 nodule%1:08:00:: 1 -1 nodular%3:01:00:: 1 -1 nod%2:29:03:: 3 -1 nod%1:10:01:: 1 -1 nod%1:04:00:: 2 -1 nocturnal%3:00:00:: 1 -1 noctiluca_miliaris%1:05:00:: 1 -1 nobody%1:18:00:: 1 -1 noble%3:00:01:: 4 -1 nobility%1:14:00:: 1 -1 nobility%1:07:00:: 2 -1 nobel_prize%1:10:00:: 1 -1 no_matter_what_happens%4:02:00:: 1 -1 no_man's_land%1:15:00:: 1 -1 no_end%4:02:00:: 1 -1 no-nonsense%5:00:00:direct:02 1 -1 no-hit_game%1:04:00:: 1 -1 no-hit%5:00:00:successful:00 1 -1 no-goal%1:09:00:: 1 -1 no-account%5:00:00:worthless:00 1 -1 nitrogen_oxide%1:27:00:: 1 -1 nitrate%1:27:00:: 1 -1 nirvana%1:26:00:: 1 -1 nip%2:35:02:: 2 -1 nip%2:35:00:: 1 -1 ninth%1:24:00:: 1 -1 nineties%1:28:02:: 1 -1 nimbly%4:02:00:: 1 -1 nimble%5:00:00:active:01 1 -1 nihilistic%3:01:00:: 1 -1 nihilism%1:09:00:: 1 -1 nigra%1:18:00:: 1 -1 nighttime%1:28:00:: 1 -1 nightshirt%1:06:00:: 1 -1 nightmarish%5:00:00:alarming:00 1 -1 nighted%5:00:00:unpunctual:00 1 -1 nightdress%1:06:00:: 1 -1 night-sight%1:09:00:: 1 -1 night%1:28:04:: 3 -1 night%1:28:02:: 4 -1 night%1:28:01:: 2 -1 night%1:26:00:: 5 -1 niece%1:18:00:: 1 -1 nicotine%1:27:00:: 1 -1 nickname%2:32:00:: 1 -1 nickname%1:10:00:: 1 -1 nickel%1:21:00:: 2 -1 niche%1:26:00:: 1 -1 niche%1:25:00:: 2 -1 niche%1:06:00:: 3 -1 nicety%1:07:00:: 1 -1 nice%5:00:02:precise:00 3 -1 nibbed%5:00:00:pointed:00 1 -1 newton%1:18:00:: 1 -1 newspaperman%1:18:00:: 1 -1 newspaper_critic%1:18:00:: 1 -1 newspaper_columnist%1:18:00:: 1 -1 news_show%1:10:00:: 1 -1 news_item%1:10:00:: 1 -1 newfoundland%1:05:00:: 1 -1 newest%5:00:00:modern:00 1 -1 newcomer%1:18:01:: 2 -1 newcastle%1:15:00:: 1 -1 new_yorker%1:18:00:: 1 -1 new_york_bay%1:17:00:: 1 -1 new_waver%1:18:00:: 1 -1 new_moon%1:28:00:: 1 -1 new_haven%1:15:00:: 1 -1 new_hampshire%1:15:00:: 1 -1 new_edition%1:10:00:: 1 -1 new_deal%1:28:00:: 2 -1 new%5:00:00:unworn:00 6 -1 new%4:02:00:: 1 -1 never_again%4:02:00:: 1 -1 neutron_bomb%1:06:00:: 1 -1 neutralized%5:00:00:neutral:02 1 -1 neutralize%2:30:01:: 2 -1 neutrality%1:04:00:: 1 -1 neutral%5:00:00:achromatic:00 6 -1 neutral%3:00:03:: 5 -1 neuter%1:10:00:: 1 -1 neurotic%3:00:00:: 2 -1 neurotic%1:18:00:: 1 -1 neuronal%3:01:00:: 1 -1 neuromuscular%3:01:00:: 1 -1 neurological%3:01:00:: 1 -1 network%1:06:00:: 3 -1 nettlesome%5:00:00:disagreeable:00 1 -1 nettle%2:32:00:: 1 -1 netlike%5:00:00:reticulate:00 1 -1 net%5:00:00:ultimate:00 2 -1 net%2:40:00:: 1 -1 nestling%1:05:00:: 1 -1 nesting_place%1:15:00:: 1 -1 nest%1:06:00:: 2 -1 nervousness%1:12:00:: 1 -1 nerves%1:07:00:: 2 -1 nerveless%5:00:00:composed:00 1 -1 neptune%1:18:00:: 1 -1 neoromanticism%1:14:00:: 1 -1 neon_tube%1:06:00:: 1 -1 neoliberal%5:00:00:liberal:00 1 -1 neoclassicism%1:06:00:: 1 -1 neo_jazz%1:04:00:: 1 -1 neighbourhood%1:15:00:: 1 -1 neighborliness%1:07:00:: 1 -1 negroid%5:00:00:black:02 1 -1 negligent%3:00:00:: 1 -1 neglected%5:00:00:unnoticed:00 1 -1 neglected%5:00:00:uncared-for:00 2 -1 neglect%1:26:00:: 2 -1 neglect%1:04:02:: 3 -1 negatively_charged%5:00:00:charged:00 1 -1 negative%5:00:00:bad:00 4 -1 negative%1:10:00:: 1 -1 negation%1:24:00:: 1 -1 needlessly%4:02:00:: 1 -1 needle%2:32:00:: 1 -1 needle%1:06:00:: 3 -1 need%2:34:01:: 6 -1 need%1:26:01:: 4 -1 nectary%1:20:00:: 1 -1 necrotic%3:01:00:: 1 -1 necropsy%1:04:00:: 1 -1 necklace%1:06:00:: 1 -1 necessary%5:00:00:inevitable:00 2 -1 necessarily%4:02:01:: 3 -1 nebulous%5:00:00:indistinct:00 1 -1 nebraska%1:15:00:: 1 -1 neat%5:00:03:tidy:00 2 -1 neat%5:00:00:elegant:00 3 -1 neat%5:00:00:adroit:00 4 -1 nearsighted%3:00:00:: 1 -1 nearness%1:07:00:: 1 -1 nearer%4:02:00:: 1 -1 near-blind%5:00:00:blind:00 1 -1 near%4:02:03:: 2 -1 neanderthal%5:00:00:unrefined:01 1 -1 nazism%1:14:00:: 1 -1 nazi%3:01:00:: 2 -1 nay%4:02:00:: 1 -1 nay%1:10:00:: 1 -1 navy%1:07:00:: 2 -1 navigator%1:18:02:: 1 -1 navigation%1:04:00:: 1 -1 nautical%3:01:02:: 1 -1 nauseated%5:00:00:ill:01 1 -1 naught%1:23:00:: 1 -1 naturopath%1:18:00:: 1 -1 nature%1:19:00:: 6 -1 naturalness%1:07:00:: 1 -1 naturally%4:02:02:: 4 -1 naturalized%5:00:02:foreign:01 1 -1 naturalize%2:30:00:: 1 -1 naturalism%1:09:00:: 1 -1 natural_science%1:09:00:: 1 -1 natural_resources%1:21:00:: 1 -1 natural_phenomenon%1:19:00:: 1 -1 natural_order%1:17:00:: 1 -1 natural_gas%1:27:00:: 1 -1 natural%3:01:00:: 5 -1 natural%3:00:07:: 6 -1 native%3:00:02:: 4 -1 nationally%4:02:00:: 2 -1 nationality%1:14:00:: 1 -1 national_park_service%1:14:00:: 1 -1 national_park%1:15:00:: 1 -1 national_leader%1:18:00:: 1 -1 national_income%1:21:00:: 1 -1 national_anthem%1:10:00:: 1 -1 national%3:01:02:: 6 -1 natal%3:01:00:: 1 -1 nassau%1:15:00:: 1 -1 nashville%1:15:00:: 1 -1 nascent%5:00:00:aborning:00 1 -1 nasale%2:32:00:: 1 -1 nasal_cavity%1:08:00:: 1 -1 nasal%5:00:00:high:03 2 -1 nasal%3:01:00:: 1 -1 narrowness%1:07:00:: 1 -1 narrowing%1:07:00:: 1 -1 narrow_escape%1:04:00:: 1 -1 narrow_down%2:31:00:: 1 -1 narrow_down%2:30:00:: 2 -1 narrow%3:00:06:: 3 -1 narrow%2:31:00:: 2 -1 narrow%2:30:05:: 3 -1 narrow%2:30:01:: 4 -1 narrative%5:00:00:communicative:00 1 -1 narrate%2:32:01:: 1 -1 narcotize%2:29:00:: 1 -1 naprapath%1:18:00:: 1 -1 napoleonic%3:01:00:: 1 -1 napoleon_bonaparte%1:18:00:: 1 -1 namesake%1:18:00:: 1 -1 nameless%5:00:00:anonymous:00 1 -1 name%2:31:01:: 8 -1 name%1:18:00:: 4 -1 name%1:04:00:: 5 -1 nakedness%1:26:00:: 1 -1 nakedly%4:02:02:: 1 -1 naked%5:00:00:unassisted:00 3 -1 naked%5:00:00:overt:00 4 -1 nail_down%2:41:00:: 1 -1 nail%2:35:02:: 3 -1 nagging%5:00:00:ill-natured:00 1 -1 nag%2:37:00:: 2 -1 nab%2:35:02:: 1 -1 nab%2:35:00:: 2 -1 mythic%3:01:00:: 1 -1 mystify%2:31:00:: 1 -1 mystical%3:01:00:: 1 -1 mysteriously%4:02:00:: 1 -1 myrtle%1:20:02:: 1 -1 myriad%1:23:01:: 1 -1 myofibril%1:08:00:: 1 -1 myocardium%1:08:00:: 1 -1 myocardial_infarction%1:26:00:: 1 -1 myeloid%3:01:00:: 1 -1 myelofibrosis%1:26:00:: 1 -1 mycenaean%3:01:00:: 1 -1 mv%1:23:00:: 1 -1 muzzle_loader%1:06:00:: 1 -1 mutuality%1:24:01:: 1 -1 mutual_affection%1:24:00:: 1 -1 muttering%5:00:00:speaking(a):00 1 -1 muttering%1:11:00:: 1 -1 mutineer%1:18:00:: 1 -1 mutilation%1:11:00:: 1 -1 mutilate%2:30:00:: 1 -1 muted%5:00:02:soft:04 1 -1 mutational%3:01:00:: 1 -1 mutant%1:18:00:: 1 -1 mustached%5:00:00:unshaven:00 1 -1 musing%1:09:00:: 1 -1 musically%4:02:01:: 1 -1 musical_instrument%1:06:00:: 1 -1 musical_composition%1:10:00:: 1 -1 music_lover%1:18:00:: 1 -1 music_hall%1:06:00:: 1 -1 muse%1:18:00:: 1 -1 musculature%1:08:00:: 1 -1 muscular%5:00:00:powerful:00 3 -1 muscleman%1:18:00:: 1 -1 muscle_tone%1:26:00:: 1 -1 muscle_into%2:38:00:: 1 -1 murmuring%1:11:00:: 1 -1 murmur%1:10:01:: 2 -1 murdered%5:00:00:dead:01 1 -1 murder_suspect%1:18:00:: 1 -1 murder%2:30:00:: 2 -1 munition%1:06:00:: 1 -1 munich%1:15:00:: 1 -1 mumbo_jumbo%1:10:00:: 1 -1 mum%5:00:00:uncommunicative:00 1 -1 multitudinous%5:00:00:incalculable:00 1 -1 multitude%1:23:00:: 1 -1 multiply%2:29:00:: 3 -1 multiplied%5:00:00:increased:00 1 -1 multiplication%1:04:01:: 1 -1 multiple-choice%3:00:00:: 1 -1 multilateral%3:00:00:: 1 -1 multidimensional%3:00:00:: 1 -1 multichannel_recorder%1:06:00:: 1 -1 mull%2:31:00:: 1 -1 mug_file%1:10:00:: 1 -1 muffled%5:00:00:covered:00 2 -1 muff%1:06:00:: 1 -1 mudguard%1:06:00:: 1 -1 muddy%5:00:00:dirty:01 2 -1 muddleheaded%5:00:00:confused:00 1 -1 muddle%1:26:00:: 1 -1 muddied%5:00:00:impure:02 1 -1 mud_flat%1:15:00:: 1 -1 mud-beplastered%5:00:00:covered:00 1 -1 muck_up%2:41:00:: 1 -1 muck%2:30:01:: 1 -1 mrs%1:18:00:: 1 -1 mph%1:28:00:: 2 -1 mow%2:35:00:: 1 -1 movingly%4:02:00:: 1 -1 moving%1:04:00:: 1 -1 moviegoer%1:18:00:: 1 -1 movie_theater%1:06:00:: 1 -1 movie_house%1:06:00:: 1 -1 movie_camera%1:06:00:: 1 -1 move_in_on%2:38:00:: 1 -1 move_around%2:38:03:: 1 -1 move%2:40:00:: 12 -1 move%2:30:01:: 13 -1 move%1:04:03:: 3 -1 mouthpiece%1:06:04:: 1 -1 mouthpiece%1:06:02:: 2 -1 mouthful%1:23:00:: 1 -1 mouth%2:32:01:: 2 -1 mouth%1:18:00:: 5 -1 mousy%5:00:00:timid:00 1 -1 mouse_nest%1:17:00:: 1 -1 mouse-colored%5:00:00:chromatic:00 1 -1 mourn%2:37:01:: 2 -1 mounted%5:00:00:adorned:00 3 -1 mountainous%5:00:00:upland:00 3 -1 mountain%5:00:00:upland:00 1 -1 mount_everest%1:17:00:: 1 -1 mount%1:04:00:: 2 -1 mounded_over%3:44:00:: 1 -1 mound_over%2:35:00:: 1 -1 mound%1:17:00:: 2 -1 mound%1:14:00:: 3 -1 mould%2:36:02:: 1 -1 mottled%5:00:00:patterned:00 1 -1 motorcar%1:06:00:: 1 -1 motor_pool%1:14:00:: 1 -1 motor_neuron%1:08:00:: 1 -1 motor%5:00:00:efferent:00 1 -1 motor%2:38:00:: 1 -1 motive%5:00:00:causative:00 1 -1 motional%3:01:00:: 1 -1 motion%2:32:00:: 1 -1 motion%1:10:01:: 5 -1 motion%1:04:01:: 6 -1 motif%1:10:00:: 2 -1 motif%1:09:00:: 3 -1 motherland%1:15:00:: 1 -1 mother_country%1:15:00:: 1 -1 mother-naked%5:00:00:unclothed:00 1 -1 mother's_daughter%1:18:00:: 1 -1 motel%1:06:00:: 1 -1 most_desirable%5:00:00:best:00 1 -1 most-valuable%5:00:00:important:00 1 -1 most%4:02:02:: 3 -1 moss%1:20:00:: 1 -1 moses%1:18:00:: 1 -1 mortification%1:12:00:: 1 -1 mortician%1:18:00:: 1 -1 mortally%4:02:00:: 1 -1 mortal%5:00:00:unpardonable:00 2 -1 morsel%1:23:00:: 1 -1 morsel%1:13:00:: 2 -1 morse%1:10:00:: 1 -1 morphology%1:09:00:: 1 -1 morphologic%3:01:00:: 1 -1 morphemic%3:01:00:: 1 -1 morosely%4:02:00:: 1 -1 morocco%1:27:00:: 2 -1 morning_glory%1:20:00:: 1 -1 morgue%1:06:00:: 1 -1 mores%1:09:00:: 1 -1 more_than%5:00:00:more(a):02 2 -1 moralistic%5:00:00:moral:00 1 -1 moralist%1:18:00:: 1 -1 morale_builder%1:09:00:: 1 -1 moral_principle%1:09:00:: 1 -1 moral%5:00:00:right:01 3 -1 moonlit%3:00:00:: 1 -1 mooncurser%1:18:00:: 1 -1 moon_on%2:41:00:: 1 -1 moon-splashed%5:00:00:covered:00 1 -1 moon-round%5:00:00:round:00 1 -1 moon%1:17:02:: 2 -1 moo%2:32:00:: 1 -1 monumental%3:01:00:: 1 -1 month_by_month%4:02:00:: 1 -1 monstrous%5:00:00:ugly:00 3 -1 monstrosity%1:18:00:: 1 -1 monstrosity%1:11:00:: 2 -1 monster%1:18:03:: 2 -1 monster%1:18:01:: 3 -1 monsieur%1:18:00:: 1 -1 monotone%5:00:00:unmelodious:00 2 -1 monotone%1:10:00:: 1 -1 monopolization%1:04:00:: 1 -1 monophonic%5:00:00:monaural:00 1 -1 mononuclear%3:00:00:: 1 -1 monomer%1:27:00:: 1 -1 monologist%1:18:00:: 1 -1 monograph%1:10:00:: 1 -1 monochrome%1:06:01:: 1 -1 monkish%5:00:00:nonindulgent:00 1 -1 monilia_albicans%1:20:00:: 1 -1 moneymaking%1:04:00:: 1 -1 moneymaker%1:18:00:: 1 -1 money_order%1:21:00:: 1 -1 monaural%3:00:00:: 1 -1 monastery%1:06:00:: 1 -1 momentous%5:00:00:significant:00 1 -1 momentarily%4:02:00:: 2 -1 moment%1:28:02:: 3 -1 moment%1:07:00:: 4 -1 mollify%2:37:00:: 1 -1 molding%1:04:01:: 1 -1 mold%2:30:00:: 2 -1 mold%1:25:00:: 1 -1 mold%1:06:00:: 2 -1 moire%1:06:00:: 1 -1 modify%2:30:01:: 2 -1 modified%5:00:00:qualified:02 2 -1 modified%3:00:00:: 1 -1 modification%1:06:00:: 2 -1 modesty%1:07:01:: 2 -1 modesty%1:07:00:: 1 -1 modest%5:00:00:unpretentious:00 3 -1 modernizing%1:04:00:: 1 -1 modernized%5:00:00:modern:00 1 -1 modernize%2:30:02:: 2 -1 modern_man%1:05:00:: 1 -1 modern_greek%1:10:00:: 1 -1 moderation%1:07:00:: 1 -1 moderate%2:32:00:: 1 -1 moderate%2:30:03:: 2 -1 moderate%1:18:00:: 1 -1 modeled%5:00:00:shapely:00 1 -1 model%5:00:00:worthy:00 1 -1 model%2:36:02:: 1 -1 model%2:36:00:: 2 -1 model%1:18:01:: 6 -1 model%1:09:02:: 7 -1 mocking%5:00:00:disrespectful:00 1 -1 mockery%1:10:00:: 1 -1 mocker%1:18:00:: 1 -1 moccasins%1:06:00:: 1 -1 mobilization%1:04:01:: 1 -1 mobcap%1:06:00:: 1 -1 mob%5:00:00:disorderly:00 1 -1 mob%1:14:02:: 2 -1 moan%1:10:00:: 1 -1 mixture%1:11:00:: 4 -1 mixed-up%5:00:00:perplexed:00 1 -1 mixed%5:00:00:integrated:00 3 -1 mix%2:41:00:: 2 -1 mix%2:30:02:: 3 -1 mix%2:30:01:: 4 -1 mitral%3:01:00:: 1 -1 mitigation%1:04:00:: 1 -1 miter%2:35:00:: 1 -1 mite_box%1:06:00:: 1 -1 misused%3:00:00:: 1 -1 misuse%1:04:00:: 1 -1 misunderstanding%1:10:00:: 1 -1 misty-eyed%5:00:00:tearful:00 1 -1 misty%5:00:00:cloudy:00 1 -1 mistaking%1:10:00:: 1 -1 mist%2:30:00:: 1 -1 missouri%1:17:00:: 2 -1 missive%1:10:00:: 1 -1 miss%2:42:02:: 9 -1 miss%1:11:00:: 2 -1 misrepresentation%1:10:00:: 1 -1 misrelated%5:00:00:unrelated:02 1 -1 misread%2:31:02:: 1 -1 misquote%2:32:00:: 1 -1 misplace%2:35:01:: 1 -1 misplace%2:35:00:: 2 -1 misperceive%2:39:00:: 1 -1 misogynist%1:18:00:: 1 -1 misnomer%1:10:00:: 1 -1 misname%2:32:00:: 1 -1 mismanagement%1:04:00:: 1 -1 mismanage%2:41:00:: 1 -1 mislay%2:35:00:: 1 -1 misinterpretation%1:10:00:: 1 -1 misinterpret%2:32:00:: 1 -1 misguided%5:00:00:foolish:00 1 -1 misgiving%1:09:02:: 2 -1 misgauge%2:31:00:: 1 -1 misfire%2:33:00:: 1 -1 miserably%4:02:00:: 1 -1 miserable%5:00:00:unfortunate:00 2 -1 miserable%5:00:00:contemptible:00 3 -1 misdemeanor%1:04:00:: 1 -1 misconstruction%1:10:01:: 1 -1 misconstruction%1:10:00:: 2 -1 mischievous%5:00:00:playful:00 1 -1 mischievous%5:00:00:bad:00 2 -1 miscegenation%1:04:00:: 1 -1 miscarry%2:41:00:: 1 -1 miscalculate%2:31:01:: 1 -1 misbranded%5:00:00:illegal:00 1 -1 misanthrope%1:18:00:: 1 -1 mirror%1:09:00:: 2 -1 mire%1:17:00:: 1 -1 miraculous%5:00:00:supernatural:00 1 -1 miracle%1:11:01:: 2 -1 minutia%1:09:00:: 1 -1 minute_of_arc%1:23:00:: 1 -1 minute%1:28:02:: 3 -1 minuet%1:04:00:: 1 -1 mint%1:23:00:: 1 -1 minstrel%1:18:00:: 1 -1 minor%3:00:04:: 4 -1 minor%3:00:03:: 5 -1 minoan%3:01:00:: 1 -1 ministry%1:14:01:: 1 -1 ministry%1:06:00:: 2 -1 ministration%1:04:00:: 1 -1 ministerial%3:01:02:: 1 -1 mining_bee%1:05:00:: 1 -1 minimized%5:00:02:decreased:00 1 -1 miniature%5:00:00:small:00 1 -1 miniature%1:06:02:: 1 -1 miniature%1:06:01:: 2 -1 mingling%1:04:00:: 1 -1 mineralogy%1:09:00:: 1 -1 mineralized%5:00:01:mineral:00 1 -1 mineral_oil%1:27:00:: 1 -1 mine_field%1:15:00:: 1 -1 mindless%5:00:00:nonintellectual:00 2 -1 mindless%5:00:00:meaningless:00 1 -1 minded%5:00:02:inclined(p):02 2 -1 mind's_eye%1:09:00:: 1 -1 mind%1:09:03:: 5 -1 mincing%5:00:00:refined:01 1 -1 mimicry%1:04:00:: 1 -1 milwaukee%1:15:00:: 1 -1 millwheel%1:06:00:: 1 -1 millpond%1:17:00:: 1 -1 millivoltmeter%1:06:00:: 1 -1 millimeter_of_mercury%1:23:00:: 1 -1 millimeter%1:23:00:: 1 -1 millenarianism%1:09:00:: 1 -1 mill_about%2:42:00:: 1 -1 mill%2:38:00:: 1 -1 mill%2:30:00:: 2 -1 milking_stool%1:06:00:: 1 -1 milk%2:34:00:: 2 -1 milk%1:08:00:: 2 -1 militate%2:41:00:: 1 -1 military_vehicle%1:06:00:: 1 -1 military_unit%1:14:00:: 1 -1 military_service%1:14:00:: 1 -1 military_personnel%1:18:00:: 2 -1 military_man%1:18:00:: 1 -1 military%1:14:00:: 1 -1 militarily%4:02:00:: 1 -1 militant%5:00:00:unpeaceful:00 1 -1 militant%5:00:00:aggressive:00 2 -1 milieu%1:26:00:: 1 -1 milestone%1:11:00:: 2 -1 mileage%1:07:00:: 1 -1 mildly%4:02:02:: 2 -1 mild-mannered%5:00:00:mild:00 1 -1 mike%1:06:00:: 1 -1 migratory%3:01:00:: 1 -1 mien%1:07:00:: 1 -1 midwest%1:15:00:: 1 -1 midweek%3:01:00:: 1 -1 midway%4:02:00:: 1 -1 midwatch%1:28:00:: 1 -1 midsummer%1:28:00:: 1 -1 midsection%1:08:00:: 1 -1 middle_west%1:15:00:: 1 -1 middle_east%1:15:00:: 1 -1 middle_distance%1:09:00:: 1 -1 middle_atlantic%5:00:00:eastern:02 1 -1 middle-level%5:00:00:inferior:01 1 -1 middle%3:00:01:: 3 -1 middle%3:00:00:: 4 -1 middle%1:28:00:: 4 -1 midday%1:28:00:: 1 -1 midair%1:15:00:: 1 -1 mid-thirties%1:28:00:: 1 -1 microsomal%3:01:00:: 1 -1 microscopy%1:04:00:: 1 -1 microphoning%1:22:00:: 1 -1 microcosm%1:09:00:: 1 -1 microbial%3:01:00:: 1 -1 mew%2:32:00:: 1 -1 metro%1:06:00:: 1 -1 metrazol%1:06:00:: 1 -1 metis%1:18:00:: 1 -1 methodist_church%1:14:00:: 1 -1 methodist%3:01:00:: 1 -1 method_of_choice%1:09:00:: 1 -1 meter%2:30:00:: 1 -1 meter%1:06:00:: 2 -1 meteorological%3:01:00:: 1 -1 meteor_stream%1:19:00:: 1 -1 meted_out%5:00:00:distributed:00 1 -1 metaphysical%5:00:00:supernatural:00 2 -1 metamorphose%2:30:00:: 1 -1 metabolize%2:34:00:: 1 -1 metabolic%3:01:00:: 1 -1 messy%5:00:00:untidy:00 1 -1 messenger_boy%1:18:00:: 1 -1 mess_up%2:41:00:: 1 -1 mess_hall%1:06:00:: 1 -1 mess%1:26:02:: 2 -1 mess%1:13:01:: 3 -1 mess%1:13:00:: 4 -1 mess%1:06:00:: 5 -1 mesmerize%2:32:00:: 1 -1 mesh%2:35:01:: 1 -1 mesh%2:30:00:: 2 -1 mesh%1:23:00:: 1 -1 mesenteric%3:01:00:: 1 -1 merrymaking%1:04:00:: 1 -1 merry%5:00:01:joyous:00 2 -1 merriment%1:04:00:: 2 -1 mermaid%1:18:00:: 1 -1 meritorious%5:00:00:worthy:00 1 -1 merging%1:04:02:: 1 -1 mercy%1:12:00:: 3 -1 mercurial%5:00:00:changeable:00 1 -1 merciful%3:00:00:: 1 -1 merchandise%2:40:00:: 1 -1 mercer%1:18:00:: 1 -1 menu%1:10:00:: 1 -1 mention%1:10:02:: 2 -1 mentally_retarded%1:14:00:: 1 -1 mentally_ill%5:00:00:insane:00 1 -1 mentality%1:09:01:: 1 -1 mentality%1:09:00:: 2 -1 mental_picture%1:09:00:: 1 -1 mental_institution%1:06:00:: 1 -1 mental_health%1:26:00:: 1 -1 mental_disturbance%1:26:00:: 1 -1 mental_case%1:18:00:: 1 -1 menial%5:00:00:unskilled:00 1 -1 mendacious%5:00:00:untruthful:00 1 -1 mend%2:30:01:: 2 -1 menacing%5:00:00:alarming:00 1 -1 menace%2:42:00:: 1 -1 menace%2:32:00:: 2 -1 menace%1:10:00:: 2 -1 memorization%1:09:00:: 1 -1 memorial%1:10:00:: 1 -1 memorabilia%1:10:00:: 1 -1 memoir%1:10:00:: 1 -1 membrane%1:06:00:: 1 -1 melting%5:00:00:unfrozen:00 1 -1 melting%1:22:00:: 1 -1 melt_off%2:29:00:: 1 -1 melt%2:30:02:: 4 -1 melodramatic%5:00:02:dramatic:00 1 -1 melodrama%1:10:00:: 1 -1 melodious%3:00:04:: 1 -1 melodic%3:00:04:: 1 -1 mellowingly%4:02:00:: 1 -1 melioration%1:04:00:: 1 -1 mekong_river%1:17:00:: 1 -1 mekong%1:17:00:: 1 -1 megaton%1:23:02:: 1 -1 megalopolis%1:15:00:: 1 -1 megalomania%1:26:00:: 1 -1 megakaryocytic%3:01:00:: 1 -1 meeting%1:04:02:: 5 -1 meet%2:35:00:: 14 -1 meekly%4:02:02:: 1 -1 meekly%4:02:00:: 2 -1 medley%1:10:00:: 1 -1 medium%1:27:00:: 4 -1 mediterranean%1:17:00:: 1 -1 meditative%5:00:00:thoughtful:00 1 -1 meditation%1:09:00:: 1 -1 mediocrity%1:07:00:: 1 -1 medieval%5:00:00:nonmodern:00 2 -1 medically%4:02:00:: 1 -1 medical_report%1:10:00:: 1 -1 medical_practice%1:04:00:: 1 -1 medical_man%1:18:00:: 1 -1 medical_intern%1:18:00:: 1 -1 medical_care%1:04:00:: 1 -1 medical_aid%1:04:00:: 1 -1 medical%3:01:02:: 3 -1 mediate%2:32:00:: 1 -1 median%5:00:00:normal:01 1 -1 meddling%1:04:00:: 1 -1 meddle%2:41:00:: 1 -1 medal_of_honor%1:10:00:: 1 -1 mechanized%5:00:00:mechanical:00 1 -1 mechanistic%5:00:00:mechanical:00 1 -1 mechanically%4:02:01:: 1 -1 mechanically%4:02:00:: 2 -1 mechanical%3:01:00:: 3 -1 mechanic%1:18:01:: 2 -1 mechanic%1:18:00:: 1 -1 meaty%3:00:00:: 1 -1 meat_house%1:06:01:: 1 -1 meat_house%1:06:00:: 2 -1 measure_up%2:42:00:: 1 -1 measure%1:10:03:: 6 -1 measure%1:10:01:: 7 -1 measurable%5:00:00:important:00 2 -1 meanness%1:07:00:: 1 -1 meaningfulness%1:07:00:: 1 -1 meander%2:38:00:: 1 -1 mayflower%1:06:00:: 1 -1 may_day%1:28:00:: 1 -1 may%2:42:00:: 2 -1 maximum%1:07:00:: 2 -1 maximize%2:30:01:: 2 -1 maxim%1:10:00:: 1 -1 mausoleum%1:06:00:: 1 -1 maturity%1:28:01:: 3 -1 mature%3:00:01:: 3 -1 maturation%1:22:00:: 2 -1 matting%1:06:00:: 1 -1 matter_of_course%1:11:00:: 1 -1 matter%1:09:02:: 4 -1 matter%1:07:00:: 5 -1 matted%5:00:00:tangled:00 1 -1 matsyendra%1:07:00:: 1 -1 matron%1:18:00:: 1 -1 matrix%1:14:00:: 1 -1 matrimony%1:26:00:: 1 -1 matriarch%1:18:00:: 1 -1 math%1:09:00:: 1 -1 maternal%3:00:00:: 1 -1 materially%4:02:00:: 1 -1 material%5:00:00:physical:00 4 -1 material%3:00:02:: 3 -1 mate%2:35:02:: 2 -1 mate%1:18:00:: 4 -1 mate%1:06:00:: 5 -1 matching%5:00:01:matched:00 2 -1 matched%5:00:00:competitive:00 1 -1 match%1:11:00:: 2 -1 match%1:06:02:: 3 -1 match%1:06:01:: 4 -1 mat%1:06:04:: 2 -1 mat%1:06:02:: 3 -1 mastery%1:26:00:: 2 -1 mastermind%2:31:00:: 1 -1 masterly%5:00:00:skilled:00 1 -1 master_of_science%1:10:00:: 1 -1 master_of_ceremonies%1:18:00:: 1 -1 master's_degree%1:10:00:: 1 -1 master%5:00:00:skilled:00 1 -1 master%2:41:00:: 3 -1 master%1:18:06:: 5 -1 master%1:18:03:: 4 -1 master%1:18:01:: 3 -1 master%1:06:00:: 6 -1 masted%3:01:00:: 1 -1 massage%2:35:00:: 1 -1 massage%2:29:00:: 2 -1 massage%1:04:00:: 1 -1 massacre%2:30:00:: 1 -1 mass_rapid_transit%1:06:00:: 1 -1 mass_murder%1:04:00:: 1 -1 mass_culture%1:09:00:: 1 -1 mass-spectrometric%3:01:00:: 1 -1 masquerade%2:32:00:: 2 -1 masking%1:04:00:: 1 -1 mask%2:39:00:: 1 -1 mask%2:35:00:: 2 -1 mask%1:06:00:: 1 -1 mask%1:04:00:: 2 -1 mash%2:35:00:: 1 -1 masculinity%1:07:00:: 1 -1 masculine%3:00:01:: 2 -1 mascara%1:06:00:: 1 -1 maryland%1:15:00:: 1 -1 mary_magdalene%1:18:00:: 1 -1 marvelously%4:02:00:: 1 -1 marvel%2:32:00:: 2 -1 marvel%1:11:00:: 1 -1 martial%5:00:02:military:02 1 -1 marshalling_yard%1:06:00:: 1 -1 marshaling%1:04:00:: 1 -1 marshal%2:38:00:: 1 -1 marshal%2:35:00:: 2 -1 marshal%2:30:00:: 3 -1 marsh%1:17:00:: 1 -1 marrowbone%1:13:00:: 1 -1 marriage_mart%1:14:00:: 1 -1 marriage_bed%1:06:00:: 1 -1 marquee%1:06:01:: 1 -1 maroon%5:00:00:chromatic:00 1 -1 maroon%2:40:00:: 1 -1 marmalade%1:13:00:: 1 -1 marking%1:10:00:: 1 -1 marking%1:07:00:: 2 -1 marker%1:06:00:: 1 -1 marked%3:00:00:: 3 -1 mark_off%2:30:00:: 1 -1 mark%2:35:02:: 8 -1 mark%1:10:01:: 6 -1 marine%1:18:00:: 1 -1 maria%1:17:00:: 1 -1 marginally%4:02:00:: 1 -1 marginal%5:00:00:meager:00 3 -1 marching%1:04:00:: 1 -1 marched_upon%3:44:00:: 1 -1 march%2:41:00:: 4 -1 march%2:38:03:: 5 -1 marbleizing%1:07:00:: 1 -1 marbleized%5:00:00:patterned:00 1 -1 marathon%1:04:00:: 1 -1 maple%1:20:00:: 2 -1 map_out%2:36:03:: 1 -1 map%2:31:01:: 2 -1 manzanita%1:20:02:: 2 -1 manzanita%1:20:01:: 1 -1 manumission%1:04:00:: 1 -1 manufacture%2:36:01:: 2 -1 manual_labor%1:04:00:: 1 -1 mantrap%1:18:00:: 1 -1 mantle%1:10:00:: 1 -1 mantic%5:00:00:prophetic:00 1 -1 manservant%1:18:00:: 1 -1 manse%1:06:01:: 1 -1 manor%1:06:00:: 1 -1 manipulation%1:04:00:: 1 -1 manifold%5:00:00:multiple:00 1 -1 manifestly%4:02:00:: 1 -1 maniclike%5:00:00:insane:00 1 -1 manic-depressive%1:18:00:: 1 -1 mangled%5:00:00:injured:00 1 -1 manfulness%1:07:00:: 1 -1 maneuvering%1:04:00:: 1 -1 maneuverability%1:07:00:: 1 -1 mane%1:05:00:: 1 -1 mandate%2:41:00:: 1 -1 mandate%1:10:00:: 1 -1 mandamus%1:10:00:: 1 -1 manchester%1:15:00:: 2 -1 managing_editor%1:18:00:: 1 -1 man_of_letters%1:18:00:: 1 -1 man_of_affairs%1:18:00:: 1 -1 man_in_the_street%1:18:00:: 1 -1 man_hour%1:28:00:: 1 -1 man_and_wife%1:14:00:: 1 -1 man-to-man%4:02:00:: 1 -1 man-of-war%1:06:00:: 1 -1 mammoth%5:00:01:large:00 1 -1 maltreat%2:41:00:: 1 -1 malposed%5:00:00:crooked:01 1 -1 malingering%1:04:00:: 1 -1 malinger%2:41:00:: 1 -1 malignancy%1:26:00:: 1 -1 malign%3:00:00:: 1 -1 malformed%5:00:00:unshapely:00 1 -1 malfeasant%1:18:00:: 1 -1 malevolency%1:07:00:: 1 -1 maleness%1:07:00:: 1 -1 malediction%1:10:00:: 1 -1 male%5:00:01:masculine:01 2 -1 malady%1:26:01:: 1 -1 malady%1:26:00:: 2 -1 maladroit%3:00:00:: 1 -1 makeup%1:06:00:: 1 -1 makeshift%5:00:00:impermanent:00 1 -1 makeready%1:04:00:: 1 -1 make_up%2:41:00:: 4 -1 make_up%2:36:01:: 5 -1 make_up%2:30:00:: 6 -1 make_peace%2:33:00:: 1 -1 make_over%2:36:02:: 1 -1 make_over%2:36:00:: 2 -1 make_out%2:42:00:: 4 -1 make_out%2:41:02:: 5 -1 make_love%2:35:00:: 1 -1 make_happy%2:41:00:: 1 -1 make_good%2:41:00:: 1 -1 make_do%2:41:00:: 1 -1 make_bold%2:41:00:: 1 -1 make-work%1:04:00:: 1 -1 make%2:38:05:: 28 -1 make%2:29:00:: 29 -1 make%1:09:00:: 1 -1 majority%1:28:00:: 3 -1 major-league_club%1:14:00:: 1 -1 major%3:00:05:: 4 -1 major%3:00:04:: 5 -1 majesty%1:07:00:: 1 -1 majestically%4:02:00:: 1 -1 majestic%5:00:00:superior:01 1 -1 majestic%5:00:00:impressive:00 2 -1 maintenance%1:21:00:: 2 -1 maintained%5:00:01:preserved:01 1 -1 main_drag%1:06:00:: 1 -1 maimed%5:00:00:injured:00 1 -1 maimed%1:14:00:: 1 -1 mailman%1:18:00:: 1 -1 mail_out%2:35:00:: 1 -1 mail_order%1:10:00:: 1 -1 mail%1:06:01:: 3 -1 mah-jongg%1:04:00:: 1 -1 magpie%1:05:00:: 1 -1 magnitude%1:24:00:: 2 -1 magnitude%1:07:01:: 3 -1 magnifying_glass%1:06:00:: 1 -1 magnify%2:32:00:: 2 -1 magnify%2:30:01:: 3 -1 magnificence%1:07:02:: 1 -1 magnification%1:04:00:: 1 -1 magnetically%4:02:01:: 1 -1 magnetic_needle%1:06:00:: 1 -1 magnetic_moment%1:19:00:: 1 -1 magnetic_attraction%1:19:00:: 1 -1 magnetic%3:00:00:: 2 -1 magistrate%1:18:00:: 1 -1 magical_power%1:07:00:: 1 -1 magazine_article%1:10:00:: 1 -1 magazine%1:14:00:: 3 -1 madrigal%2:36:00:: 1 -1 made_use_of%5:00:00:exploited:00 1 -1 made%3:00:00:: 2 -1 madam%1:18:00:: 1 -1 macroscopically%4:02:00:: 1 -1 macrophage%1:08:00:: 1 -1 macromolecular%3:01:00:: 1 -1 mackinaw%1:06:03:: 1 -1 machinelike%5:00:00:mechanical:00 1 -1 machine_shop%1:06:00:: 1 -1 machine_gun%2:33:00:: 1 -1 machine%1:06:02:: 4 -1 macabre%5:00:00:alarming:00 1 -1 ma'am%1:18:00:: 1 -1 ma%1:10:00:: 2 -1 lyrical%5:00:00:melodious:00 1 -1 lyric_poem%1:10:00:: 1 -1 lyric%3:00:00:: 2 -1 lyophilize%2:30:00:: 1 -1 lymphocyte%1:08:00:: 1 -1 luxury%1:07:01:: 2 -1 luxuriously%4:02:02:: 1 -1 lusty%5:00:00:passionate:00 1 -1 lusty%5:00:00:healthy:00 2 -1 lustre%1:07:00:: 1 -1 lustily%4:02:00:: 1 -1 luster%1:07:02:: 2 -1 luster%1:07:01:: 1 -1 lust%1:12:00:: 1 -1 lust%1:04:00:: 2 -1 lush%5:00:00:abundant:00 1 -1 luscious%5:00:00:sexy:00 1 -1 lurking%5:00:00:concealed:00 1 -1 lurk%2:42:00:: 2 -1 lure%1:07:00:: 1 -1 lurch%1:04:00:: 1 -1 lunge%1:04:00:: 1 -1 lunchroom%1:06:00:: 1 -1 luncheon%1:13:00:: 1 -1 lunch%2:34:00:: 1 -1 lunatic%5:00:00:insane:00 1 -1 lumpish%5:00:00:stupid:00 1 -1 lump%1:26:01:: 2 -1 lump%1:18:00:: 3 -1 lump%1:17:00:: 4 -1 lummox%1:18:00:: 1 -1 luminosity%1:07:00:: 1 -1 luminescent%5:00:00:light:06 1 -1 luminescence%1:19:00:: 1 -1 luminary%1:18:00:: 1 -1 lumber%2:38:00:: 1 -1 lumbar%3:01:00:: 1 -1 lullaby%1:10:00:: 1 -1 lull%2:30:00:: 2 -1 lukewarm%5:00:00:warm:01 1 -1 lukewarm%5:00:00:unenthusiastic:00 2 -1 lugubrious%5:00:00:sorrowful:00 1 -1 luger%1:06:00:: 1 -1 ludicrous%5:00:00:humorous:00 1 -1 lucky%3:00:00:: 2 -1 luckily%4:02:00:: 1 -1 luck_into%2:40:00:: 1 -1 lucidity%1:07:00:: 1 -1 lp%1:06:00:: 1 -1 loyalty%1:04:00:: 3 -1 loyalist%1:18:00:: 1 -1 lowly%5:00:00:junior:00 2 -1 lowly%5:00:00:inferior:01 1 -1 lowland%1:17:00:: 1 -1 loweringly%4:02:00:: 1 -1 lowering%5:00:00:cloudy:00 1 -1 lower_jaw%1:08:00:: 1 -1 lower_class%1:14:00:: 1 -1 lower%2:30:00:: 3 -1 low_density%1:07:00:: 1 -1 low-water_mark%1:26:00:: 1 -1 low-sudsing%3:00:00:: 1 -1 low-pitched%3:00:00:: 1 -1 low-lying%5:00:00:low:01 1 -1 low-level%5:00:00:low:02 1 -1 low-grade%5:00:00:inferior:02 1 -1 low-down%5:00:00:contemptible:00 1 -1 low-ceilinged%5:00:00:ceilinged:00 1 -1 lovingly%4:02:00:: 1 -1 lovely%5:00:00:lovable:00 2 -1 love_lyric%1:10:00:: 1 -1 love%1:12:01:: 4 -1 lousiness%1:26:00:: 1 -1 lounge_about%2:42:00:: 1 -1 louisianan%1:18:00:: 1 -1 loudspeaker%1:06:00:: 1 -1 loudly%4:02:04:: 2 -1 loud-voiced%5:00:00:loud:00 1 -1 loud%5:00:00:tasteless:02 2 -1 loud%4:02:00:: 1 -1 lotus%1:20:02:: 1 -1 lotion%1:06:00:: 1 -1 lot%1:14:01:: 6 -1 lost%5:00:00:incomprehensible:00 6 -1 lost%1:14:00:: 1 -1 losing_streak%1:14:00:: 1 -1 lose_weight%2:29:00:: 1 -1 lose_control%2:37:00:: 1 -1 lose%2:39:01:: 10 -1 lorelei%1:18:00:: 1 -1 lordly%5:00:00:noble:02 1 -1 lord's_supper%1:04:00:: 1 -1 lord%1:18:00:: 3 -1 lopsidedly%4:02:00:: 1 -1 lope%2:38:00:: 1 -1 lop_off%2:35:00:: 1 -1 lop-eared%5:00:00:eared:00 1 -1 looted%5:00:00:empty:00 1 -1 loot%2:40:01:: 1 -1 loot%1:21:01:: 2 -1 looseness_of_the_bowels%1:26:00:: 1 -1 loosen_up%2:35:00:: 1 -1 loosely_knit%5:00:00:distant:02 1 -1 loose_end%1:04:00:: 1 -1 loose-jowled%5:00:00:fat:01 1 -1 loose-jointed%5:00:00:lax:01 1 -1 loose%5:00:00:unofficial:00 5 -1 loose%5:00:00:unconstipated:00 7 -1 loose%5:00:00:inexact:00 6 -1 loose%3:00:01:: 4 -1 loose%2:41:00:: 1 -1 loose%2:35:00:: 2 -1 loophole%1:06:00:: 2 -1 loop%2:38:01:: 1 -1 loop%2:36:00:: 2 -1 loop%1:06:01:: 1 -1 loon%1:18:00:: 1 -1 loon%1:05:00:: 2 -1 loom%1:06:00:: 1 -1 looking%1:04:01:: 1 -1 look_out_over%2:42:00:: 1 -1 look_out%2:33:10:: 2 -1 look_on%2:31:00:: 2 -1 look%2:42:00:: 5 -1 look%2:41:13:: 6 -1 look%2:32:00:: 7 -1 look%2:31:00:: 8 -1 longstanding%5:00:00:long:02 1 -1 longshot%1:06:00:: 1 -1 longshoreman%1:18:00:: 1 -1 longitude%1:15:00:: 1 -1 longhand%5:00:00:written:00 1 -1 longhand%1:10:00:: 1 -1 longevity%1:07:00:: 1 -1 longer%5:00:00:long:01 1 -1 long_shot%1:04:00:: 1 -1 long_island_sound%1:17:00:: 1 -1 long_haul%1:04:00:: 1 -1 long-winded%5:00:00:prolix:00 1 -1 long-shanked%5:00:00:tall:00 1 -1 long-lived%5:00:00:long:02 1 -1 long-legged%5:00:00:tall:00 1 -1 long-familiar%5:00:00:familiar:00 1 -1 long-distance%5:00:00:long:01 1 -1 long-acting%5:00:00:long:02 1 -1 lonely%5:00:00:inaccessible:00 3 -1 loneliness%1:12:00:: 2 -1 lone%5:00:00:unsocial:00 2 -1 lone%5:00:00:unaccompanied:00 1 -1 londoner%1:18:00:: 1 -1 loiter%2:42:00:: 1 -1 loins%1:08:00:: 1 -1 logistics%1:04:00:: 1 -1 logistic%3:01:00:: 1 -1 logically%4:02:00:: 2 -1 logic%1:09:03:: 3 -1 logging%1:04:00:: 1 -1 logger%1:18:00:: 1 -1 logarithm%1:10:00:: 1 -1 log_cabin%1:06:00:: 1 -1 log%2:35:00:: 2 -1 lofty%5:00:00:noble:01 1 -1 lofty%5:00:00:high:01 2 -1 loft%1:06:02:: 1 -1 loft%1:06:00:: 2 -1 lodge%2:35:00:: 2 -1 lodge%2:32:00:: 3 -1 lock_in%2:35:01:: 1 -1 lock_in%2:35:00:: 2 -1 lock%2:37:00:: 6 -1 lock%2:35:02:: 7 -1 lock%1:06:03:: 3 -1 local_option%1:26:00:: 1 -1 local_government%1:14:00:: 1 -1 local_department%1:14:00:: 1 -1 lobularity%1:07:00:: 1 -1 lobular%3:01:00:: 1 -1 lobster-backed%5:00:00:clothed:00 1 -1 lobscouse%1:13:00:: 1 -1 loblolly%1:13:00:: 1 -1 lobby%2:41:00:: 1 -1 lob%2:35:00:: 1 -1 loathsome%5:00:00:unwholesome:00 1 -1 loathsome%5:00:00:offensive:01 2 -1 loaf_of_bread%1:13:00:: 1 -1 loaf%2:42:01:: 1 -1 loaded_down%5:00:00:burdened:00 1 -1 loaded%5:00:00:prejudiced:00 3 -1 load_up%2:35:00:: 1 -1 load%2:35:00:: 4 -1 load%1:23:01:: 4 -1 load%1:19:01:: 5 -1 load%1:09:00:: 6 -1 lizard%1:05:00:: 1 -1 living_thing%1:03:00:: 1 -1 living_arrangement%1:09:00:: 1 -1 living%5:00:00:absolute:00 4 -1 living%3:44:00:: 3 -1 living%1:26:00:: 3 -1 living%1:21:00:: 4 -1 livid%5:00:00:light:06 2 -1 livid%5:00:00:colorless:02 1 -1 livid%5:00:00:angry:00 3 -1 liverpool%1:15:00:: 1 -1 liver_fluke%1:05:00:: 1 -1 liver%1:13:00:: 2 -1 liveliness%1:04:00:: 1 -1 livelihood%1:21:00:: 1 -1 live_out%2:42:00:: 1 -1 live_oak%1:20:00:: 1 -1 live_it_up%2:34:00:: 1 -1 live_in%2:34:00:: 1 -1 live%2:31:00:: 6 -1 livable%3:00:00:: 1 -1 little_sister%1:18:00:: 1 -1 little_rock%1:15:00:: 1 -1 little_finger%1:08:00:: 1 -1 little%5:00:00:narrow-minded:00 8 -1 littered%5:00:00:untidy:00 1 -1 litter%2:42:00:: 1 -1 litter%2:35:00:: 2 -1 litigation%1:04:00:: 1 -1 litigant%1:18:00:: 1 -1 lithe%5:00:00:graceful:00 1 -1 literate%3:00:00:: 1 -1 literary_study%1:09:00:: 1 -1 literalism%1:09:00:: 1 -1 literal%5:00:00:exact:00 2 -1 lit%5:00:00:light:06 1 -1 listlessly%4:02:00:: 1 -1 listless%5:00:00:lethargic:00 1 -1 listening%5:00:00:attentive:00 1 -1 listen_in%2:39:01:: 1 -1 listed%3:00:00:: 1 -1 list%1:07:00:: 2 -1 lisbon%1:15:00:: 1 -1 liquidation%1:04:01:: 2 -1 liquid_detergent%1:06:00:: 1 -1 liquid%5:00:00:tearful:00 2 -1 liquid%5:00:00:clear:02 3 -1 lipped%3:00:00:: 1 -1 linoleum%1:27:00:: 1 -1 links%1:06:00:: 1 -1 link%2:42:01:: 3 -1 linguistically%4:02:01:: 1 -1 linguistic_unit%1:10:00:: 1 -1 lingually%4:02:00:: 1 -1 lingual%3:01:00:: 1 -1 lingeringly%4:02:00:: 1 -1 linger%2:38:00:: 4 -1 lineup%1:10:00:: 1 -1 liner%1:04:00:: 1 -1 linen%1:27:00:: 2 -1 lineman%1:18:00:: 1 -1 lined_snake%1:05:00:: 1 -1 lined%5:00:00:rough:00 2 -1 linebacker%1:18:00:: 1 -1 linearly%4:02:01:: 2 -1 line_up%2:40:00:: 2 -1 line_up%2:38:01:: 3 -1 line_up%2:30:00:: 4 -1 line_of_work%1:04:00:: 1 -1 line_of_vision%1:15:00:: 1 -1 line_drive%1:04:00:: 1 -1 line_double%1:04:00:: 1 -1 line_coach%1:18:00:: 1 -1 line%1:15:01:: 20 -1 line%1:10:05:: 21 -1 line%1:06:08:: 22 -1 line%1:06:05:: 23 -1 linden%1:20:02:: 1 -1 lincoln%1:18:00:: 1 -1 limp%2:38:01:: 2 -1 limitless%5:00:00:immeasurable:00 1 -1 limited_edition%1:10:00:: 1 -1 limitation%1:23:00:: 3 -1 limit_point%1:15:00:: 1 -1 limit%1:15:02:: 3 -1 limit%1:15:00:: 4 -1 lime_tree%1:20:01:: 1 -1 limbo%1:26:01:: 1 -1 limbic_brain%1:08:00:: 1 -1 lilt%1:07:00:: 1 -1 lilac%5:00:00:chromatic:00 1 -1 likeness%1:07:00:: 1 -1 like_sin%4:02:00:: 1 -1 like_mad%4:02:00:: 1 -1 like%3:00:04:: 3 -1 like%3:00:02:: 2 -1 like%2:37:06:: 5 -1 lightweight%5:00:00:light:01 1 -1 lightweight%1:18:00:: 1 -1 lighting%1:04:01:: 3 -1 lighthearted%5:00:00:cheerful:00 1 -1 lighten%2:37:01:: 1 -1 light_year%1:23:00:: 1 -1 light_up%2:43:01:: 1 -1 light_up%2:30:00:: 2 -1 light_company%1:14:00:: 1 -1 light_brown%1:07:00:: 1 -1 light-mindedness%1:07:00:: 1 -1 light-headed%5:00:00:ill:01 1 -1 light-headed%5:00:00:frivolous:00 2 -1 light-haired%3:00:00:: 1 -1 light-duty%3:00:00:: 1 -1 light%5:00:00:undemanding:01 12 -1 light%5:00:00:pure:02 10 -1 light%5:00:00:light-footed:00 11 -1 light%1:09:02:: 12 -1 ligament%1:08:00:: 1 -1 lifted%5:00:00:raised:00 1 -1 lift_up%2:38:00:: 1 -1 lift_up%2:37:00:: 2 -1 lift_out%2:35:02:: 1 -1 lift%2:40:00:: 7 -1 lift%2:35:01:: 8 -1 lift%2:30:09:: 11 -1 lift%2:30:07:: 10 -1 lift%2:30:05:: 9 -1 lift%1:04:02:: 1 -1 lifelong%5:00:00:long:02 1 -1 lifelike%5:00:00:unaffected:01 2 -1 lifeless%5:00:00:empty:00 2 -1 life_tenant%1:18:00:: 1 -1 life_science%1:09:00:: 1 -1 life_principle%1:18:00:: 1 -1 life_cycle%1:19:00:: 1 -1 life%1:16:00:: 13 -1 lieutenant%1:18:02:: 3 -1 lie_low%2:39:00:: 1 -1 lie_in_wait%2:33:00:: 1 -1 lie_around%2:42:00:: 1 -1 lie%2:35:01:: 8 -1 licked%5:00:00:defeated:00 1 -1 lick%2:31:00:: 3 -1 licensing_fee%1:21:00:: 1 -1 libretto%1:10:00:: 1 -1 librarian%1:18:00:: 1 -1 liberty%1:26:03:: 3 -1 libertine%1:18:00:: 1 -1 liberation%1:04:02:: 1 -1 liberated%5:00:00:free:02 1 -1 liberate%2:41:02:: 2 -1 liberally%4:02:00:: 1 -1 liberalize%2:41:00:: 1 -1 liberalism%1:09:01:: 2 -1 liberal_arts%1:09:00:: 1 -1 liberal%1:18:01:: 2 -1 liaison%1:26:00:: 1 -1 liaison%1:10:00:: 2 -1 liable%5:00:01:nonexempt:00 2 -1 liable%5:00:00:susceptible:00 3 -1 liability%1:26:01:: 1 -1 liability%1:21:00:: 2 -1 leyden_jar%1:06:00:: 1 -1 lexicostatistic%3:01:00:: 1 -1 lewd%5:00:00:dirty:02 1 -1 levis%1:06:00:: 1 -1 lever%1:06:00:: 1 -1 levelheaded%5:00:00:reasonable:00 1 -1 level%5:00:02:even:01 4 -1 level%5:00:00:steady:00 2 -1 level%5:00:00:horizontal:00 3 -1 level%2:36:00:: 2 -1 level%2:35:01:: 3 -1 level%1:06:03:: 6 -1 level%1:06:00:: 5 -1 letting_down%1:04:00:: 1 -1 letters%1:09:00:: 1 -1 letterhead%1:10:00:: 1 -1 letter%2:40:00:: 1 -1 lethargy%1:07:00:: 2 -1 lethality%1:07:00:: 1 -1 lethal_dose%1:06:00:: 1 -1 letdown%1:12:00:: 1 -1 let_up%2:30:01:: 2 -1 let_up%2:30:00:: 1 -1 let_on%2:32:00:: 1 -1 let_loose%2:32:00:: 1 -1 let_it_go%2:41:00:: 1 -1 let_in%2:41:00:: 1 -1 let_fly%2:33:00:: 1 -1 let_drive%2:33:00:: 1 -1 let%2:30:00:: 5 -1 lest%4:02:01:: 2 -1 lessening%5:00:00:decreasing:00 1 -1 lessen%2:30:01:: 3 -1 leprosy%1:26:00:: 1 -1 lentil%1:13:00:: 1 -1 lengthwise%4:02:00:: 1 -1 lengthily%4:02:00:: 1 -1 lengthening%1:04:00:: 1 -1 lengthen%2:30:01:: 1 -1 length%1:07:03:: 4 -1 lending_institution%1:14:00:: 1 -1 lending%1:04:00:: 1 -1 lend_oneself%2:42:00:: 1 -1 lemonade%1:13:00:: 1 -1 lemon_tree%1:20:00:: 1 -1 lemon_meringue_pie%1:13:00:: 1 -1 leitmotiv%1:10:00:: 1 -1 leiden_jar%1:06:00:: 1 -1 legume%1:20:00:: 1 -1 legitimize%2:41:00:: 1 -1 legitimately%4:02:01:: 1 -1 legitimate%5:00:00:valid:00 2 -1 legitimate%5:00:00:legal:00 4 -1 legitimate%5:00:00:established:00 3 -1 legitimate%3:00:00:: 1 -1 legitimacy%1:07:00:: 1 -1 legislate%2:41:00:: 1 -1 legion%1:14:03:: 1 -1 legibility%1:07:01:: 1 -1 leggy%5:00:02:tall:00 1 -1 legged%3:00:00:: 1 -1 legatee%1:18:00:: 1 -1 legally%4:02:03:: 2 -1 legal_system%1:09:00:: 1 -1 legal_age%1:28:00:: 1 -1 legacy%1:21:00:: 1 -1 leg_of_lamb%1:13:00:: 1 -1 leg_extensor%1:04:00:: 1 -1 leg_curling%1:04:00:: 1 -1 leg%1:25:00:: 4 -1 left-of-center%5:00:00:left:02 1 -1 left-hander%1:18:00:: 2 -1 left%5:00:00:left-handed:00 3 -1 leech%1:05:00:: 1 -1 ledger%1:06:00:: 2 -1 ledge%1:17:00:: 1 -1 lecturing%1:04:00:: 1 -1 lecturer%1:18:00:: 2 -1 lecture%2:32:00:: 2 -1 lecher%1:18:00:: 1 -1 leaving%1:04:00:: 1 -1 leavening%1:09:00:: 1 -1 leavened%3:00:00:: 1 -1 leave_out%2:31:00:: 2 -1 leave_of_absence%1:28:00:: 1 -1 leave%1:10:00:: 2 -1 leathered%5:00:00:tough:01 1 -1 least_of_all%4:02:00:: 1 -1 least%1:23:00:: 1 -1 lease%1:21:00:: 1 -1 lease%1:10:00:: 2 -1 learning%1:09:02:: 2 -1 learner%1:18:00:: 1 -1 learned_reaction%1:04:00:: 1 -1 leaping%5:00:00:moving:02 1 -1 leaping%1:04:00:: 1 -1 leap%2:30:00:: 2 -1 leaning%5:00:00:inclined:01 1 -1 lean%2:42:00:: 4 -1 lean%2:31:10:: 5 -1 leakage%1:11:00:: 1 -1 leak%2:32:00:: 1 -1 leak%1:17:00:: 1 -1 league%2:30:00:: 1 -1 leaflet%1:08:00:: 1 -1 leafhopper%1:05:00:: 1 -1 leading_man%1:18:00:: 1 -1 leading%5:00:00:up:00 4 -1 leading%5:00:00:purposeful:00 5 -1 leaden%5:00:00:heavy:02 2 -1 leaded%5:00:00:fixed:00 1 -1 lead_sheet%1:10:00:: 1 -1 lead_pencil%1:06:01:: 1 -1 lead_on%2:32:00:: 1 -1 lead_off%2:41:00:: 1 -1 lead%2:42:02:: 14 -1 lead%1:25:00:: 5 -1 lead%1:10:01:: 6 -1 laze%2:41:00:: 1 -1 layout%1:09:00:: 1 -1 layout%1:04:00:: 2 -1 laying_on%1:04:00:: 1 -1 layette%1:06:00:: 1 -1 layer%1:15:00:: 2 -1 lay_over%2:42:00:: 1 -1 lay_over%2:35:00:: 2 -1 lay_out%2:30:00:: 2 -1 lay_off%2:41:00:: 2 -1 lay_eyes_on%2:39:00:: 1 -1 lay_claim%2:40:00:: 1 -1 lay%5:00:00:profane:00 1 -1 lay%2:40:00:: 5 -1 laxness%1:07:00:: 1 -1 lax%5:00:00:negligent:00 1 -1 lawless%5:00:00:uncontrolled:00 1 -1 law_school%1:14:00:: 1 -1 law_officer%1:18:00:: 1 -1 law_degree%1:10:00:: 1 -1 law-breaking%1:04:00:: 1 -1 law%1:14:01:: 7 -1 laurels%1:26:00:: 2 -1 laundry_truck%1:06:00:: 1 -1 laundry%1:06:01:: 1 -1 laundering%1:04:00:: 1 -1 launching%1:04:02:: 1 -1 launcher%1:06:00:: 1 -1 laughingly%4:02:00:: 1 -1 laugh_softly%2:29:00:: 1 -1 laugh_off%2:32:00:: 1 -1 laugh%1:10:02:: 2 -1 laudanum%1:06:00:: 1 -1 latin%5:00:00:emotional:00 2 -1 latin%3:01:00:: 1 -1 latent%5:00:00:inactive:02 2 -1 late%3:00:02:: 6 -1 latched%5:00:00:fastened:00 1 -1 lastly%4:02:00:: 1 -1 lasting%5:00:00:long:02 2 -1 last_rites%1:04:01:: 1 -1 last_resort%1:04:00:: 1 -1 last_mentioned%5:00:00:latter(a):00 1 -1 last-minute%5:00:00:unpunctual:00 1 -1 last%5:00:00:ultimate:00 5 -1 last%5:00:00:high:02 6 -1 last%4:02:01:: 2 -1 last%1:24:00:: 2 -1 last%1:04:00:: 3 -1 lashing%5:00:00:violent:00 1 -1 lashing%1:04:00:: 1 -1 lasher%1:18:00:: 1 -1 lash_together%2:35:00:: 1 -1 las_vegas%1:15:00:: 1 -1 larval%5:00:00:immature:01 1 -1 larkspur%1:20:00:: 1 -1 large_order%1:04:00:: 1 -1 large_intestine%1:08:00:: 1 -1 lapsed%5:00:00:irreligious:00 1 -1 lapse%2:38:01:: 1 -1 lapse%2:30:01:: 2 -1 lapse%2:30:00:: 3 -1 lapse%2:29:00:: 4 -1 lapse%1:28:00:: 2 -1 lapse%1:04:01:: 3 -1 lappet%1:08:00:: 1 -1 lapel%1:06:00:: 1 -1 lap%2:35:00:: 2 -1 lantern_slide%1:06:00:: 1 -1 lanky%5:00:00:thin:03 2 -1 lanky%5:00:00:tall:00 1 -1 languor%1:12:00:: 1 -1 languish%2:30:00:: 1 -1 language%1:09:01:: 4 -1 language%1:09:00:: 5 -1 lane%1:06:01:: 2 -1 landslide%1:11:01:: 1 -1 landslide%1:11:00:: 2 -1 landscaping%1:04:00:: 1 -1 landscaped%5:00:00:improved:00 1 -1 landrover%1:06:00:: 1 -1 landowner%1:18:00:: 1 -1 landmark%1:11:00:: 2 -1 landlocked%5:00:00:inland:00 1 -1 landler%1:10:00:: 1 -1 landing%1:06:00:: 2 -1 land_site%1:15:00:: 1 -1 land_grant%1:21:00:: 1 -1 land%3:00:00:: 1 -1 land%2:40:00:: 5 -1 land%1:14:00:: 9 -1 lampoon%2:32:00:: 1 -1 lamp_chimney%1:06:00:: 1 -1 laminate%2:36:00:: 1 -1 lament%2:37:00:: 1 -1 lamblike%5:00:00:compliant:00 1 -1 lam%2:35:00:: 2 -1 lair%1:15:00:: 1 -1 laid_up%5:00:00:ill:01 1 -1 laid%5:00:00:arranged:00 1 -1 laggard%1:18:00:: 1 -1 lager%1:06:00:: 1 -1 lag%1:04:00:: 1 -1 ladylike%5:00:00:refined:01 1 -1 ladened%5:00:00:full:00 1 -1 lad%1:18:00:: 2 -1 lackey%1:18:00:: 1 -1 lack%2:42:01:: 2 -1 laced%3:00:00:: 1 -1 lace%2:35:01:: 1 -1 labyrinth%1:06:00:: 1 -1 labrador%1:15:00:: 1 -1 labour%1:14:00:: 1 -1 laborsaving%5:00:00:helpful:00 1 -1 labor_movement%1:14:00:: 1 -1 labor_market%1:04:00:: 1 -1 labor%2:41:00:: 2 -1 labile%5:00:00:adaptable:00 1 -1 label%2:31:01:: 4 -1 label%1:27:00:: 3 -1 label%1:10:00:: 4 -1 l%5:00:00:cardinal:00 1 -1 ku_klux_klan%1:14:00:: 1 -1 krauthead%1:18:00:: 1 -1 kosher%5:00:00:clean:04 1 -1 korean%3:01:00:: 1 -1 korean%1:18:00:: 1 -1 knuckleball%1:04:00:: 1 -1 knuckle_duster%1:06:00:: 1 -1 knowledgeable%5:00:00:educated:00 1 -1 know_the_score%2:31:00:: 1 -1 know-how%1:09:00:: 1 -1 know%2:31:15:: 7 -1 knotty%5:00:00:difficult:00 1 -1 knotted%5:00:00:tied:00 1 -1 knot%2:36:00:: 1 -1 knot%2:35:00:: 2 -1 knot%1:27:00:: 3 -1 knoll%1:17:00:: 1 -1 knocking%1:11:00:: 1 -1 knock_out%2:30:00:: 3 -1 knock_off%2:40:03:: 2 -1 knock_down%2:35:00:: 2 -1 knock_against%2:35:00:: 1 -1 knock_about%2:35:00:: 1 -1 knock%1:09:00:: 2 -1 knob%1:06:00:: 2 -1 knit%2:36:01:: 2 -1 knit%1:06:02:: 1 -1 knightly%5:00:00:past:00 1 -1 knight_errantry%1:07:00:: 1 -1 knifelike%5:00:00:sharp:00 1 -1 knife_thrust%1:04:00:: 1 -1 knife%1:25:00:: 3 -1 knickknacks%1:06:01:: 1 -1 kneeling%5:00:00:unerect:00 1 -1 kneecap%1:08:00:: 1 -1 knee-deep%5:00:00:shallow:01 1 -1 knee%1:06:00:: 3 -1 knead%2:35:00:: 1 -1 km%1:23:00:: 1 -1 kleenex%1:27:00:: 1 -1 kittenish%5:00:00:playful:00 1 -1 kitchen_table%1:06:00:: 1 -1 kit_and_caboodle%1:26:00:: 1 -1 kipling%1:18:00:: 1 -1 kinship%1:24:00:: 2 -1 kingdom%1:15:01:: 2 -1 kingdom%1:15:00:: 3 -1 king's_evil%1:26:00:: 1 -1 king%1:18:02:: 2 -1 king%1:18:01:: 3 -1 kinesthetically%4:02:00:: 1 -1 kindly%5:00:00:kind:00 1 -1 kindly%5:00:00:benevolent:00 2 -1 kindly%4:02:00:: 1 -1 kindled%5:00:00:lighted:00 1 -1 kindergarten%1:14:00:: 1 -1 kind%5:00:00:generous:02 2 -1 kind%5:00:00:benign:00 3 -1 kilometer%1:23:00:: 1 -1 killable%5:00:00:edible:00 1 -1 kill_off%2:35:00:: 1 -1 kill%2:41:01:: 2 -1 kill%2:30:08:: 3 -1 kill%1:04:01:: 2 -1 kidnaped%3:44:00:: 1 -1 kickoff%1:28:00:: 2 -1 kick_up%2:35:00:: 1 -1 kick_up%1:04:00:: 1 -1 kick_one's_heels%2:42:00:: 1 -1 kick_in_the_butt%1:04:00:: 1 -1 kick_back%2:40:00:: 1 -1 kick_back%2:35:00:: 2 -1 kick%1:12:00:: 2 -1 khmer%1:10:00:: 1 -1 khartoum%1:15:00:: 1 -1 khaki%5:00:00:chromatic:00 1 -1 keynote%2:32:00:: 2 -1 keynote%1:10:01:: 1 -1 keynote%1:09:00:: 2 -1 keyed%5:00:00:adjusted:00 1 -1 key%2:31:00:: 1 -1 key%1:10:00:: 4 -1 kettle%1:06:00:: 1 -1 ketch%1:06:00:: 1 -1 kerosene%1:27:00:: 1 -1 kerchief%1:06:00:: 1 -1 kent%1:15:00:: 1 -1 keepsake%1:06:00:: 1 -1 keeping%1:04:01:: 1 -1 keeping%1:04:00:: 2 -1 keep_waiting%2:42:00:: 1 -1 keep_to_oneself%2:41:00:: 1 -1 keep_note%2:31:00:: 1 -1 keep_guard%2:41:00:: 1 -1 keep_down%2:30:00:: 1 -1 keep_abreast%2:30:02:: 1 -1 keep%2:42:02:: 15 -1 keenness%1:09:00:: 1 -1 keel_over%2:38:00:: 1 -1 kc%1:28:00:: 1 -1 kansas%1:15:00:: 1 -1 kamikaze%1:06:00:: 1 -1 kamchatka_peninsula%1:15:00:: 1 -1 kale%1:21:00:: 1 -1 juxtaposition%1:04:00:: 1 -1 juvenile%3:01:00:: 1 -1 jut_out%2:42:00:: 1 -1 justness%1:07:01:: 1 -1 justly%4:02:01:: 1 -1 justly%4:02:00:: 2 -1 justice_of_the_peace%1:18:00:: 1 -1 justice%1:18:00:: 3 -1 just_now%4:02:00:: 1 -1 just_in_time%4:02:00:: 1 -1 just_as%4:02:02:: 1 -1 jurist%1:18:00:: 1 -1 jurisprudentially%4:02:00:: 1 -1 jurisdiction%1:15:00:: 2 -1 junkyard%1:15:00:: 1 -1 junk%2:40:00:: 1 -1 junk%1:27:00:: 1 -1 junior_high_school%1:14:00:: 1 -1 junior-grade%5:00:00:junior:00 1 -1 junior%1:18:00:: 3 -1 jungian%3:01:00:: 1 -1 june_21%1:28:00:: 1 -1 june_14%1:28:00:: 1 -1 juncture%1:11:00:: 1 -1 junction%1:15:00:: 1 -1 junction%1:06:00:: 2 -1 jumpy%5:00:00:tense:03 1 -1 jumping_up_and_down%1:04:00:: 1 -1 jump_seat%1:06:00:: 1 -1 jump_out%2:42:00:: 1 -1 jump_on%2:38:00:: 1 -1 jump_off%2:30:00:: 1 -1 jump%2:42:00:: 5 -1 jump%2:33:03:: 6 -1 jump%2:30:01:: 7 -1 jumble%2:42:00:: 1 -1 julius_caesar%1:18:00:: 1 -1 jukebox%1:06:00:: 1 -1 juju%1:09:00:: 1 -1 juicy%5:00:00:sexy:00 2 -1 juicy%5:00:00:profitable:00 3 -1 juicy%3:00:00:: 1 -1 jug%1:06:00:: 1 -1 judiciary%1:14:00:: 1 -1 judicial%5:00:00:legal:00 1 -1 judgment%1:10:00:: 5 -1 judgment%1:07:00:: 6 -1 judgement_day%1:28:00:: 1 -1 judge%2:32:00:: 4 -1 jubilantly%4:02:00:: 1 -1 joust%1:11:00:: 1 -1 journeying%1:04:00:: 1 -1 journey%2:38:00:: 1 -1 journal%1:10:00:: 2 -1 jouncing%5:00:00:moving:02 1 -1 jot_down%2:32:00:: 1 -1 jot%1:10:00:: 1 -1 jostle%2:38:02:: 1 -1 joss%1:06:00:: 1 -1 jonquil%1:20:00:: 1 -1 jolted%5:00:00:agitated:02 1 -1 jolted%5:00:00:agitated:00 2 -1 jolt%2:38:00:: 1 -1 jolt%1:11:00:: 1 -1 jolt%1:04:00:: 2 -1 joker%1:18:00:: 1 -1 joke%2:29:00:: 2 -1 joke%1:04:01:: 2 -1 joke%1:04:00:: 3 -1 jointly%4:02:00:: 2 -1 joint_snake%1:05:00:: 1 -1 joint%5:00:00:shared:00 2 -1 joint%1:06:02:: 2 -1 joined%5:00:00:married:00 1 -1 join%2:42:01:: 5 -1 johnny_reb%1:18:00:: 1 -1 john_locke%1:18:00:: 1 -1 joggle%2:38:00:: 1 -1 jog%2:42:00:: 1 -1 jocose%5:00:00:humorous:00 1 -1 jockey%2:33:01:: 1 -1 jockey%1:18:00:: 1 -1 job_lot%1:14:00:: 1 -1 job%1:04:03:: 7 -1 jive%2:36:00:: 1 -1 jingling%5:00:00:reverberant:00 1 -1 jingle%2:39:00:: 1 -1 jimmy%2:35:00:: 1 -1 jig%2:38:00:: 1 -1 jibe%1:10:00:: 1 -1 jeweler's_glass%1:06:00:: 1 -1 jetting%5:00:00:running(a):02 1 -1 jet_plane%1:06:00:: 1 -1 jet%2:35:00:: 1 -1 jet%1:11:00:: 2 -1 jest%2:32:00:: 1 -1 jest%1:10:00:: 1 -1 jerking%5:00:00:irregular:00 1 -1 jerking%1:04:00:: 1 -1 jerk%1:04:00:: 2 -1 jelly%1:13:01:: 1 -1 jelly%1:13:00:: 2 -1 jeffersonian%3:01:00:: 1 -1 jazzy%5:00:00:rhythmical:00 1 -1 jazz_group%1:14:00:: 1 -1 jaw%2:32:02:: 2 -1 jaw%2:32:00:: 1 -1 java%1:13:00:: 2 -1 jaunty%5:00:00:fashionable:00 1 -1 jaunty%5:00:00:cheerful:00 2 -1 jarring%5:00:00:cacophonous:00 1 -1 jargon%1:10:00:: 1 -1 jar%2:42:00:: 1 -1 jar%2:38:00:: 2 -1 japanese_cherry%1:20:00:: 1 -1 japanese%1:18:00:: 1 -1 japanese%1:10:00:: 2 -1 janus-faced%5:00:00:bipolar:00 1 -1 jansenist%1:18:00:: 1 -1 janissary%1:18:01:: 1 -1 jangle%2:39:00:: 1 -1 jammed%5:00:00:crowded:00 1 -1 jamaican%1:18:00:: 1 -1 jam_session%1:04:00:: 1 -1 jam%2:38:01:: 2 -1 jam%2:38:00:: 1 -1 jam%2:35:03:: 3 -1 jam%2:32:00:: 4 -1 jail%2:41:00:: 1 -1 jacksonian%3:01:00:: 1 -1 jacket%2:35:00:: 1 -1 jacket%1:06:02:: 3 -1 jackdaw%1:05:00:: 1 -1 jack_of_all_trades%1:18:01:: 1 -1 jabbing%1:04:00:: 1 -1 jab%2:35:01:: 2 -1 jab%1:04:01:: 1 -1 jab%1:04:00:: 2 -1 ivy%1:20:00:: 1 -1 ivory_tower%1:09:00:: 1 -1 ivory_black%1:27:00:: 1 -1 itch%2:39:00:: 2 -1 italicize%2:36:00:: 1 -1 italic%1:10:02:: 1 -1 italian%1:18:00:: 1 -1 italian%1:10:00:: 2 -1 issue%2:32:02:: 5 -1 issue%1:04:01:: 4 -1 issuance%1:04:00:: 1 -1 israeli%1:18:00:: 1 -1 isotopic%3:01:00:: 1 -1 isotonic%3:01:00:: 2 -1 isothermal%5:00:00:equal:00 1 -1 isomer%1:27:00:: 1 -1 isolationist%3:01:00:: 1 -1 isolation%1:12:00:: 2 -1 isolation%1:07:00:: 3 -1 isolation%1:04:00:: 4 -1 isocyanate%1:27:00:: 1 -1 isle%1:17:00:: 1 -1 ish%5:00:00:like:00 1 -1 irruption%1:04:00:: 1 -1 irritation%1:12:01:: 2 -1 irritating%5:00:00:disagreeable:00 1 -1 irritate%2:29:00:: 2 -1 irritably%4:02:00:: 2 -1 irritable%5:00:00:ill-natured:00 1 -1 irritability%1:12:00:: 1 -1 irrevocable%3:00:00:: 1 -1 irreversible%3:00:00:: 1 -1 irreverence%1:09:00:: 1 -1 irresponsibility%1:07:00:: 1 -1 irrespective%4:02:00:: 1 -1 irresolution%1:09:00:: 1 -1 irresolute%3:00:00:: 1 -1 irresistible%3:00:00:: 1 -1 irremediable%3:00:00:: 1 -1 irregularity%1:07:04:: 3 -1 irregular%5:00:00:sporadic:00 2 -1 irreducible%3:00:00:: 1 -1 irreconcilable%3:00:00:: 1 -1 irrationally%4:02:00:: 1 -1 ironworker%1:18:00:: 1 -1 ironshod%5:00:00:shod:00 1 -1 ironlike%5:00:00:strong:00 1 -1 ironical%5:00:00:humorous:00 2 -1 ironic%5:00:00:humorous:00 1 -1 iron_trap%1:09:00:: 1 -1 iron_out%2:30:00:: 1 -1 iron_curtain%1:09:00:: 1 -1 irksome%5:00:00:uninteresting:00 1 -1 ireland%1:15:00:: 2 -1 iran%1:15:00:: 1 -1 ipso_facto%4:02:00:: 1 -1 ion_exchange%1:22:00:: 1 -1 iodotyrosine%1:27:00:: 1 -1 iodothyronine%1:27:00:: 1 -1 iodoprotein%1:27:00:: 1 -1 iodocompound%1:27:00:: 1 -1 iodoamino_acid%1:27:00:: 1 -1 inward%4:02:00:: 1 -1 invulnerable%3:00:00:: 1 -1 invulnerability%1:26:00:: 1 -1 involvement%1:24:00:: 2 -1 involvement%1:09:00:: 3 -1 involved_with%5:00:00:attached:01 1 -1 involved%5:00:00:attached:01 3 -1 involuntary%3:00:01:: 1 -1 invocation%1:10:00:: 1 -1 inviolate%5:00:00:uninjured:00 1 -1 invincible%5:00:00:unconquerable:00 1 -1 investigator%1:18:02:: 3 -1 investigator%1:18:00:: 2 -1 investigative%5:00:00:inquiring:00 1 -1 investigating%1:04:00:: 1 -1 inverted%5:00:00:turned:00 1 -1 invert%2:30:01:: 1 -1 inversion%1:19:00:: 1 -1 inverse_function%1:24:00:: 1 -1 inverse%5:00:00:reciprocal:00 1 -1 inverse%5:00:00:backward:01 2 -1 inventory%1:21:00:: 3 -1 inventory%1:09:00:: 4 -1 inventor%1:18:00:: 1 -1 inventive%5:00:00:creative:00 1 -1 inveigh%2:32:00:: 1 -1 invasion%1:11:00:: 2 -1 invariable%3:00:00:: 1 -1 invaluable%5:00:00:valuable:00 1 -1 invalidate%2:41:00:: 1 -1 invalid%1:18:00:: 1 -1 inundation%1:19:00:: 1 -1 intuition%1:09:01:: 2 -1 intrust%2:40:00:: 1 -1 intrusive%3:00:01:: 1 -1 intrusion%1:04:02:: 2 -1 intruder%1:18:00:: 1 -1 intrude%2:41:00:: 2 -1 introspective%3:00:00:: 1 -1 introjected%5:00:00:integrated:02 1 -1 introduction%1:10:02:: 4 -1 introduction%1:10:01:: 3 -1 introduce%2:36:01:: 5 -1 introduce%2:35:00:: 6 -1 introduce%2:32:02:: 7 -1 introduce%2:31:00:: 8 -1 intrigue%2:42:00:: 1 -1 intrigue%1:09:00:: 1 -1 intrapulmonary%3:01:00:: 1 -1 intransigence%1:07:00:: 1 -1 intramuscularly%4:02:00:: 1 -1 intradepartmental%3:01:00:: 1 -1 intone%2:32:00:: 2 -1 intolerance%1:07:02:: 1 -1 intolerable%5:00:00:unacceptable:00 2 -1 intimidate%2:37:01:: 2 -1 intimate%5:00:02:close:02 5 -1 intimate%5:00:01:profound:00 2 -1 intimate%5:00:00:personal:00 3 -1 intimate%5:00:00:friendly:01 4 -1 intimal%3:01:00:: 1 -1 intimacy%1:07:02:: 1 -1 interview%2:32:02:: 3 -1 interval%1:07:00:: 3 -1 intertwined%5:00:00:tangled:00 1 -1 interstate%3:00:00:: 1 -1 intersecting%5:00:00:crossed:01 1 -1 interruption%1:11:00:: 2 -1 interrogative%1:10:00:: 1 -1 interrogation%1:10:01:: 1 -1 interrelationship%1:24:00:: 1 -1 interpreting%1:09:00:: 1 -1 interpreter%1:18:02:: 2 -1 interpretative%5:00:00:instructive:00 1 -1 interpretation%1:10:00:: 3 -1 interpretation%1:09:00:: 4 -1 interpretable%5:00:00:explicable:00 1 -1 interpret%2:32:01:: 5 -1 interpret%2:31:02:: 6 -1 interposition%1:04:00:: 1 -1 interpose%2:38:00:: 2 -1 interpose%2:32:00:: 3 -1 interpersonal%5:00:00:social:00 1 -1 interpenetrate%2:35:00:: 1 -1 interne%1:18:00:: 1 -1 internal_combustion%1:22:00:: 1 -1 internal%5:00:00:inward:00 4 -1 internal%5:00:00:intramural:00 2 -1 internal%5:00:00:domestic:00 3 -1 intermolecular%3:01:00:: 1 -1 intermission%1:04:00:: 1 -1 intermeshed%5:00:00:tangled:00 1 -1 intermediate%5:00:00:moderate:00 2 -1 intermediary%1:18:00:: 1 -1 intermarriage%1:26:02:: 1 -1 interlock%2:30:00:: 1 -1 interior_design%1:09:00:: 2 -1 interior%3:00:00:: 1 -1 interim%1:28:00:: 1 -1 interfering%5:00:00:intrusive:01 1 -1 interfering%1:04:00:: 1 -1 interference%1:11:00:: 3 -1 interference%1:04:01:: 4 -1 interfaith%5:00:00:religious:00 1 -1 interestingly%4:02:01:: 1 -1 interested%5:00:00:involved:00 2 -1 interest_rate%1:21:00:: 1 -1 interest%2:42:00:: 3 -1 interdepartmental%3:01:00:: 1 -1 intercourse%1:10:00:: 1 -1 intercontinental_ballistic_missile%1:06:00:: 1 -1 interconnectedness%1:26:00:: 1 -1 interconnect%2:42:00:: 1 -1 interchangeable%5:00:00:reciprocal:00 1 -1 interchange%1:04:01:: 2 -1 interceptor%1:06:00:: 1 -1 intercept%1:09:00:: 1 -1 intercede%2:32:00:: 1 -1 inter_alia%4:02:00:: 1 -1 inter%2:41:00:: 1 -1 intentness%1:07:00:: 1 -1 intentionally%4:02:00:: 1 -1 intention%1:09:01:: 2 -1 intensively%4:02:00:: 1 -1 intensive%5:00:00:intense:00 1 -1 intensifying%3:00:00:: 1 -1 intelligent%5:00:00:rational:00 4 -1 intelligence%1:14:00:: 2 -1 intellectual%3:00:00:: 3 -1 intellect%1:09:01:: 2 -1 integrity%1:07:00:: 2 -1 integrating%1:04:00:: 1 -1 integrate%2:30:01:: 3 -1 integral%5:00:00:whole:00 2 -1 integral%1:09:00:: 1 -1 intangible%1:21:00:: 1 -1 intact%5:00:00:uninjured:00 3 -1 insurmountable%3:00:00:: 1 -1 insured%3:00:00:: 1 -1 insure%2:40:00:: 4 -1 insurance_premium%1:21:00:: 1 -1 insurance_firm%1:14:00:: 1 -1 insurance_claim%1:04:00:: 1 -1 insuperable%5:00:00:unconquerable:00 1 -1 insulting%5:00:00:offensive:02 1 -1 insulation%1:26:00:: 1 -1 insularity%1:26:00:: 1 -1 insufficiently%4:02:00:: 1 -1 insubstantial%3:00:00:: 1 -1 insubordination%1:07:00:: 1 -1 instrumentation%1:04:00:: 2 -1 instrumentality%1:14:00:: 1 -1 instrumentality%1:07:00:: 2 -1 instrumentalist%1:18:00:: 1 -1 instrument_panel%1:06:00:: 1 -1 instrument_flying%1:04:00:: 1 -1 instrument%1:18:00:: 3 -1 instructive%3:00:00:: 1 -1 instructions%1:10:00:: 1 -1 instructional%3:01:00:: 1 -1 institutionalized%5:00:00:institutional:00 2 -1 institutionalized%3:00:00:: 1 -1 institutionalize%2:40:00:: 1 -1 institution%1:09:00:: 3 -1 institution%1:04:00:: 4 -1 institute%1:14:00:: 1 -1 instinctively%4:02:00:: 1 -1 instinctive%5:00:00:natural:01 1 -1 instillation%1:04:00:: 1 -1 instantaneous%5:00:00:fast:01 1 -1 instancy%1:07:01:: 1 -1 install%2:41:00:: 2 -1 instability%1:26:00:: 1 -1 instability%1:07:01:: 2 -1 inspiring%3:00:00:: 1 -1 inspired%5:00:00:glorious:00 1 -1 inspire%2:32:01:: 4 -1 inspirational%5:00:00:sacred:00 1 -1 inspiration%1:09:02:: 1 -1 inspiration%1:06:00:: 2 -1 inspection%1:04:00:: 2 -1 inspect%2:38:00:: 2 -1 insouciance%1:12:00:: 1 -1 insolent%5:00:00:unashamed:00 2 -1 insistent%5:00:00:imperative:00 2 -1 insist%2:31:00:: 3 -1 insignificantly%4:02:01:: 1 -1 insignificant%5:00:00:minor:06 4 -1 insignificant%5:00:00:meaningless:00 3 -1 insignificance%1:07:00:: 1 -1 inside_track%1:07:00:: 1 -1 inside_job%1:04:00:: 1 -1 inside%5:00:00:interior:00 2 -1 inset%1:06:02:: 1 -1 inseparable%5:00:00:indivisible:00 1 -1 insensitive%3:00:01:: 1 -1 inscrutable%5:00:00:inexplicable:00 1 -1 inscrutability%1:07:00:: 1 -1 insanity%1:26:00:: 1 -1 insane%5:00:00:foolish:00 2 -1 inroad%1:04:01:: 1 -1 inquisitor%1:18:00:: 1 -1 inquisitive%5:00:00:curious:00 1 -1 inquest%1:04:00:: 1 -1 inoperable%5:00:00:unserviceable:00 1 -1 innumerable%5:00:00:incalculable:00 1 -1 innovation%1:09:00:: 2 -1 innovate%2:36:00:: 1 -1 innocent_of%5:00:00:uninformed:00 1 -1 innocent%5:00:00:virtuous:00 3 -1 innocent%5:00:00:naive:00 4 -1 innate%5:00:00:natural:01 1 -1 inmate%1:18:02:: 3 -1 inmate%1:18:01:: 2 -1 inlay%2:36:00:: 1 -1 inkling%1:09:00:: 1 -1 injured%5:00:00:wronged:00 2 -1 initiation%1:04:01:: 2 -1 initial%1:10:00:: 1 -1 inhuman%5:00:00:nonhuman:00 2 -1 inhuman%5:00:00:inhumane:00 1 -1 inhospitable%3:00:00:: 1 -1 inhibited%3:00:00:: 1 -1 inhibit%2:30:01:: 2 -1 inhalation%1:04:00:: 1 -1 inhabited%3:00:00:: 1 -1 inhabit%2:42:02:: 2 -1 ingroup%1:14:00:: 1 -1 ingredient%1:09:00:: 2 -1 ingratitude%1:12:00:: 1 -1 inglorious%5:00:00:dishonorable:00 1 -1 ingest%2:31:00:: 2 -1 infrared_spectrum%1:19:00:: 1 -1 infrared_radiation%1:19:00:: 1 -1 infrared%1:07:00:: 1 -1 information%1:10:02:: 3 -1 informant%1:18:00:: 1 -1 informal%5:00:00:unofficial:00 2 -1 inform%2:32:10:: 3 -1 influx%1:22:00:: 1 -1 inflow%1:22:00:: 1 -1 infliction%1:04:01:: 2 -1 infliction%1:04:00:: 1 -1 inflexible%3:00:02:: 1 -1 inflection%1:24:00:: 1 -1 inflection%1:10:00:: 2 -1 inflected%5:00:00:finite:02 2 -1 inflect%2:32:01:: 1 -1 inflation%1:22:00:: 1 -1 inflated%5:00:01:increased:00 1 -1 inflate%2:30:01:: 1 -1 inflate%2:30:00:: 2 -1 inflammatory%5:00:00:unhealthy:00 1 -1 inflamed%5:00:00:unhealthy:00 1 -1 inflamed%5:00:00:light:06 2 -1 infirmity%1:26:00:: 1 -1 infirmary%1:06:00:: 1 -1 infirm%5:00:00:ill:01 1 -1 infinitive%1:10:00:: 1 -1 infinitely%4:02:01:: 1 -1 infinitely%4:02:00:: 2 -1 infiltrate%2:41:00:: 2 -1 infielder%1:18:00:: 1 -1 infertile%3:00:00:: 1 -1 infernal%5:00:00:evil:00 2 -1 infernal%5:00:00:cursed:00 3 -1 infernal%3:01:00:: 1 -1 inferiority_complex%1:12:00:: 1 -1 inferiority%1:26:00:: 1 -1 inferiority%1:07:00:: 2 -1 inferior%5:00:00:junior:00 3 -1 inferior%3:00:02:: 2 -1 inferential%5:00:01:deductive:00 2 -1 inferential%3:01:00:: 1 -1 infer%2:32:01:: 2 -1 infected%5:00:01:septic:00 1 -1 infect%2:29:00:: 3 -1 infallible%3:00:00:: 1 -1 inextricable%3:00:00:: 1 -1 inexpressible%3:00:00:: 1 -1 inexperienced_person%1:18:00:: 1 -1 inexorably%4:02:00:: 1 -1 inexorable%5:00:00:inflexible:02 2 -1 inexorable%5:00:00:implacable:00 1 -1 inexhaustible%5:00:00:infinite:00 1 -1 inexcusable%3:00:00:: 1 -1 inevitable%1:11:00:: 1 -1 inevitability%1:07:00:: 1 -1 inescapably%4:02:00:: 1 -1 inertia%1:07:01:: 1 -1 inert%5:00:00:unreactive:00 2 -1 inequality%1:07:00:: 1 -1 ineptly%4:02:00:: 1 -1 inept%5:00:00:infelicitous:00 1 -1 inept%5:00:00:incompetent:00 2 -1 ineligible%3:00:00:: 1 -1 ineffectively%4:02:00:: 1 -1 ineffable%5:00:00:inexpressible:00 1 -1 industriously%4:02:00:: 1 -1 industrious%5:00:00:diligent:00 1 -1 industrialism%1:14:00:: 1 -1 industrial_park%1:15:00:: 1 -1 indulgent%5:00:00:permissive:01 2 -1 indulgent%3:00:00:: 1 -1 indulge%2:34:12:: 3 -1 induction%1:19:00:: 2 -1 induction%1:09:00:: 3 -1 inducement%1:16:00:: 1 -1 induced%3:00:00:: 1 -1 indubitable%5:00:00:unquestionable:00 1 -1 indorse%2:41:00:: 1 -1 indoors%4:02:00:: 1 -1 indonesia%1:15:00:: 1 -1 indolence%1:07:00:: 1 -1 indoctrinate%2:31:00:: 1 -1 individuality%1:07:00:: 1 -1 individualistic%5:00:00:individual:00 1 -1 individualistic%5:00:00:capitalistic:00 2 -1 individualism%1:09:01:: 2 -1 individualism%1:09:00:: 3 -1 indistinguishable%5:00:00:same:00 1 -1 indistinct%3:00:00:: 1 -1 indispensable%5:00:00:necessary:00 2 -1 indiscriminately%4:02:00:: 1 -1 indiscriminate%5:00:00:undiscriminating:00 1 -1 indirection%1:04:00:: 1 -1 indignity%1:04:00:: 1 -1 indignantly%4:02:00:: 1 -1 indigestion%1:26:00:: 1 -1 indifferently%4:02:00:: 1 -1 indifferent%5:00:00:unimportant:00 4 -1 indifference%1:12:01:: 2 -1 indifference%1:07:00:: 3 -1 indictment%1:10:01:: 2 -1 indian_summer%1:28:00:: 1 -1 indian%3:01:01:: 2 -1 indexing%1:04:00:: 1 -1 index%2:41:00:: 1 -1 index%1:24:00:: 1 -1 index%1:10:01:: 2 -1 indeterminate%3:00:01:: 1 -1 indescribable%5:00:00:inexpressible:00 1 -1 independent%5:00:00:unconditional:00 4 -1 independence%1:11:00:: 2 -1 indentation%1:25:00:: 1 -1 indelicate%5:00:00:tasteless:02 1 -1 indelible%5:00:00:ineradicable:00 1 -1 indefinity%1:07:00:: 1 -1 indefinable%5:00:00:undefined:00 1 -1 indefensible%5:00:00:unreasonable:00 1 -1 indefatigable%5:00:00:energetic:00 1 -1 indecent%3:00:00:: 2 -1 incursion%1:04:01:: 1 -1 incurably%4:02:01:: 1 -1 incurable%5:00:00:hopeless:00 2 -1 incurable%3:00:00:: 1 -1 inculcation%1:04:00:: 1 -1 inculcate%2:31:00:: 1 -1 incubus%1:18:00:: 1 -1 incubation%1:04:00:: 1 -1 incubate%2:30:02:: 1 -1 incubate%2:29:00:: 2 -1 incorruptibility%1:07:00:: 1 -1 incorrect%3:00:00:: 1 -1 incorporation%1:04:01:: 1 -1 incorporate%2:42:00:: 2 -1 inconveniently%4:02:00:: 1 -1 inconvenient%3:00:00:: 1 -1 inconvenience%1:26:00:: 1 -1 inconvenience%1:07:02:: 2 -1 inconvenience%1:07:01:: 3 -1 inconsistent%5:00:00:irreconcilable:00 2 -1 inconsistent%3:00:00:: 1 -1 inconsiderable%3:00:00:: 1 -1 inconceivable%5:00:00:unthinkable:00 1 -1 incomprehensible%3:00:04:: 1 -1 incomprehensible%3:00:00:: 2 -1 incompetence%1:07:00:: 1 -1 incompatibility%1:24:02:: 1 -1 incoming%3:00:00:: 1 -1 incoherent%3:00:00:: 1 -1 inclusion_body%1:17:00:: 1 -1 inclose%2:35:00:: 1 -1 incline%1:17:00:: 1 -1 incline%1:06:00:: 2 -1 inclination%1:25:02:: 2 -1 inclination%1:25:01:: 3 -1 incitement%1:10:01:: 2 -1 incise%2:35:00:: 1 -1 incipience%1:28:00:: 1 -1 incidentally%4:02:01:: 2 -1 incidental_to%5:00:00:related:02 1 -1 incidental%3:00:00:: 1 -1 inch%2:38:00:: 1 -1 incessant%5:00:00:continual:00 1 -1 incertain%3:00:00:: 1 -1 incentive%1:21:00:: 2 -1 incensed%5:00:00:angry:00 1 -1 incense%1:27:00:: 1 -1 incarnation%1:18:00:: 1 -1 incarnation%1:10:00:: 2 -1 incarnate%5:00:00:corporeal:00 1 -1 incarnate%2:36:00:: 1 -1 incapacitate%2:30:00:: 1 -1 incapable%5:00:00:unsusceptible:00 2 -1 incapable%5:00:00:incompetent:00 3 -1 incantation%1:10:00:: 1 -1 incandescent%5:00:00:light:06 1 -1 incalculable%3:00:00:: 1 -1 inboard%3:00:00:: 1 -1 inauguration%1:04:01:: 1 -1 inaugural%5:00:00:opening:00 2 -1 inaugural%3:00:00:: 1 -1 inaugural%1:10:00:: 1 -1 inanimate%3:00:02:: 1 -1 inane%5:00:00:foolish:00 1 -1 inadvisable%3:00:00:: 1 -1 inadvertently%4:02:00:: 1 -1 inadvertence%1:09:00:: 1 -1 inadequately%4:02:00:: 1 -1 inadequacy%1:07:01:: 1 -1 inactive%3:00:02:: 2 -1 inaction%1:26:00:: 1 -1 inaccurate%5:00:00:incorrect:00 3 -1 inaccurate%5:00:00:imprecise:00 2 -1 inaccuracy%1:07:02:: 1 -1 in_writing%4:02:00:: 1 -1 in_width%5:00:00:wide:00 1 -1 in_vogue%5:00:00:fashionable:00 1 -1 in_vain%4:02:00:: 1 -1 in_toto%4:02:00:: 1 -1 in_the_lead%4:02:00:: 1 -1 in_the_head%4:02:00:: 1 -1 in_the_flesh%5:00:00:personal:00 1 -1 in_the_final_analysis%4:02:00:: 1 -1 in_the_beginning%4:02:01:: 2 -1 in_the_beginning%4:02:00:: 1 -1 in_the_bargain%4:02:00:: 1 -1 in_store%5:00:00:future:00 1 -1 in_stock%5:00:00:available:00 1 -1 in_regard_to%5:00:00:related:02 1 -1 in_proportion_to%5:00:00:commensurate:00 1 -1 in_progress%5:00:00:current:00 1 -1 in_private%4:02:00:: 1 -1 in_passing%4:02:00:: 1 -1 in_order%5:00:00:systematic:00 2 -1 in_order%5:00:00:ready:00 3 -1 in_opposition%4:02:00:: 1 -1 in_name%4:02:00:: 1 -1 in_line%5:00:00:succeeding(a):00 2 -1 in_line%4:02:00:: 1 -1 in_kind%4:02:00:: 1 -1 in_his_right_mind%5:00:00:sane:00 1 -1 in_height%5:00:00:tall:00 1 -1 in_haste%4:02:01:: 1 -1 in_hand%4:02:00:: 1 -1 in_good_order%4:02:00:: 1 -1 in_general%5:00:00:general:00 1 -1 in_full_view%5:00:00:unconcealed:00 1 -1 in_full_swing%5:00:00:active:06 1 -1 in_extremis%4:02:00:: 1 -1 in_embryo%5:00:00:early:02 1 -1 in_earnest%5:00:00:serious:00 1 -1 in_due_course%4:02:00:: 1 -1 in_demand%5:00:00:salable:00 1 -1 in_conclusion%4:02:00:: 1 -1 in_color%3:00:00:: 1 -1 in_chorus%4:02:00:: 1 -1 in_brief%4:02:01:: 1 -1 in_all_likelihood%4:02:00:: 1 -1 in_all%4:02:00:: 1 -1 in_agreement%5:00:00:consistent:00 1 -1 in_accord%5:00:00:consistent:00 1 -1 in_absentia%4:02:00:: 1 -1 in_a_similar_way%4:02:02:: 1 -1 in_a_bad_way%5:00:02:troubled:00 1 -1 in-person%5:00:00:personal:00 1 -1 in-fighting%1:04:01:: 1 -1 in%5:00:00:internal:00 2 -1 impunity%1:26:00:: 1 -1 impulse%1:11:01:: 4 -1 impulse%1:04:01:: 5 -1 impudently%4:02:00:: 1 -1 impudent%5:00:00:forward:02 2 -1 improvised%5:00:00:impermanent:00 1 -1 impropriety%1:07:00:: 1 -1 improperly%4:02:00:: 1 -1 impromptu%5:00:00:unprepared:00 1 -1 impromptu%1:10:00:: 1 -1 improbable%3:00:00:: 1 -1 imprison%2:41:01:: 2 -1 imprint%1:09:00:: 1 -1 imprimatur%1:10:00:: 1 -1 impressionist%3:01:00:: 1 -1 impressionist%1:18:00:: 1 -1 impression%1:09:01:: 3 -1 impress%2:35:00:: 4 -1 impregnable%5:00:00:invulnerable:00 1 -1 imprecise%3:00:00:: 1 -1 imprecate%2:32:01:: 1 -1 impotency%1:07:00:: 1 -1 impotence%1:07:00:: 1 -1 impossible%1:09:00:: 1 -1 imposing%5:00:00:impressive:00 1 -1 importunity%1:10:00:: 1 -1 importation%1:04:00:: 1 -1 importantly%4:02:01:: 1 -1 important-looking%5:00:00:impressive:00 1 -1 important%5:00:00:influential:00 4 -1 import%1:18:00:: 2 -1 import%1:10:00:: 3 -1 import%1:09:00:: 4 -1 imply%2:42:00:: 3 -1 imploring%5:00:00:beseeching:00 1 -1 implied%5:00:00:implicit:00 1 -1 implicit_in%5:00:00:implicit:00 1 -1 implication%1:10:00:: 3 -1 implicated%5:00:00:involved:00 1 -1 implementation%1:04:00:: 2 -1 implant%2:35:00:: 1 -1 impinge%2:41:10:: 1 -1 impervious%3:00:00:: 1 -1 impersonal%5:00:00:objective:00 2 -1 imperious%5:00:00:domineering:00 1 -1 imperil%2:42:00:: 1 -1 imperial%3:01:01:: 1 -1 imperfectability%1:09:00:: 1 -1 imperfect%5:00:00:human:00 2 -1 imperceptibly%4:02:00:: 1 -1 impelled%5:00:00:motivated:00 1 -1 impel%2:36:00:: 1 -1 impede%2:35:00:: 2 -1 impatience%1:12:00:: 2 -1 impassable%3:00:00:: 1 -1 impartial%3:00:00:: 1 -1 impart%2:40:01:: 2 -1 impairment%1:11:00:: 1 -1 impaired%3:00:00:: 1 -1 impacted%5:00:00:compact:00 1 -1 impact%1:04:00:: 3 -1 imp%1:18:01:: 1 -1 immunoelectrophoresis%1:22:00:: 1 -1 immobility%1:26:00:: 1 -1 imminent%5:00:00:close:01 1 -1 imminence%1:26:00:: 1 -1 immigration%1:04:00:: 1 -1 immigrant_class%1:14:00:: 1 -1 immerse%2:35:00:: 1 -1 immerse%2:31:00:: 2 -1 immensity%1:07:00:: 1 -1 immediacy%1:09:00:: 2 -1 immediacy%1:07:01:: 3 -1 immature%5:00:00:undeveloped:00 2 -1 immaterial%3:00:02:: 1 -1 immaculate%5:00:00:clean:01 1 -1 imbued%5:00:00:full:00 1 -1 imbibe%2:35:01:: 1 -1 imbalance%1:26:00:: 1 -1 imaging%1:09:00:: 1 -1 imaginatively%4:02:00:: 1 -1 image_orthicon%1:06:00:: 1 -1 image%1:10:00:: 5 -1 illustrious%5:00:00:known:00 1 -1 illustrious%5:00:00:glorious:00 2 -1 illustration%1:09:02:: 3 -1 illustration%1:06:00:: 4 -1 illusory%5:00:00:unreal:00 1 -1 illusionary%5:00:00:unreal:00 1 -1 illusion%1:04:00:: 3 -1 illumination%1:26:00:: 2 -1 illuminating%5:00:00:light:06 2 -1 illicit%3:00:00:: 1 -1 illegitimate%5:00:00:illegal:00 1 -1 illegitimacy%1:26:00:: 1 -1 ill_turn%1:04:00:: 1 -1 ill_health%1:26:00:: 1 -1 ill-used%5:00:00:misused:00 1 -1 ill-fated%5:00:00:unfortunate:00 1 -1 ill-equipped%5:00:00:unequipped:00 1 -1 ill-conceived%5:00:00:foolish:00 1 -1 ill%5:00:00:harmful:00 2 -1 ill%5:00:00:bad:00 3 -1 ilk%1:09:00:: 1 -1 ileum%1:08:00:: 1 -1 ile-de-france%1:15:00:: 1 -1 ignorant%5:00:00:unconscious:00 4 -1 ignorant%5:00:00:naive:00 3 -1 ignoramus%1:18:00:: 1 -1 ignition_key%1:06:00:: 1 -1 ignite%2:43:01:: 2 -1 ignite%2:37:00:: 3 -1 idolized%5:00:00:loved:00 1 -1 idolize%2:37:00:: 1 -1 idol%1:18:00:: 2 -1 idle_talk%1:10:00:: 1 -1 idle%5:00:00:unsupported:02 2 -1 idle%5:00:00:inactive:03 3 -1 idle%2:41:00:: 2 -1 idiosyncratic%5:00:00:individual:00 1 -1 idiomatic%3:01:00:: 1 -1 idiom%1:10:00:: 2 -1 idiom%1:07:00:: 3 -1 ideology%1:09:03:: 2 -1 ideologist%1:18:00:: 1 -1 identified%5:00:00:known:00 1 -1 identifiable%3:00:00:: 1 -1 idealization%1:04:00:: 1 -1 idea%1:09:03:: 3 -1 idea%1:09:02:: 4 -1 icy%5:00:00:frozen:00 3 -1 icy%5:00:00:cold:01 2 -1 icicle%1:27:00:: 1 -1 icelandic-speaking%5:00:00:communicative:00 1 -1 icelandic%1:10:00:: 1 -1 iced%5:00:00:cold:01 1 -1 ice_pack%1:06:00:: 1 -1 ice_floe%1:17:00:: 1 -1 ice_cream%1:13:00:: 1 -1 ice_chest%1:06:00:: 1 -1 ice%1:17:00:: 2 -1 hysterical%5:00:00:agitated:00 2 -1 hysteria%1:26:01:: 1 -1 hysteria%1:12:01:: 2 -1 hypothyroidism%1:26:00:: 1 -1 hypothalamically%4:02:00:: 1 -1 hypophysectomised%3:44:00:: 1 -1 hypophyseal%3:01:00:: 1 -1 hypodermic_syringe%1:06:00:: 1 -1 hypocrisy%1:10:00:: 1 -1 hypocrisy%1:07:00:: 2 -1 hypocellularity%1:26:00:: 1 -1 hypoadrenocorticism%1:26:00:: 1 -1 hypoactive%5:00:00:inactive:01 1 -1 hypnotize%2:29:00:: 1 -1 hyphenated%5:00:00:combined:00 1 -1 hypervelocity%1:28:00:: 1 -1 hypertrophied%3:00:00:: 1 -1 hyperplasia%1:26:00:: 1 -1 hyperfine%5:00:00:thin:01 1 -1 hypercellularity%1:26:00:: 1 -1 hyperbolically%4:02:00:: 1 -1 hydroxymethyl%1:27:00:: 1 -1 hydroxide%1:27:00:: 1 -1 hydrous%3:00:00:: 1 -1 hydrostatic_head%1:19:00:: 1 -1 hydrogen_peroxide%1:27:00:: 1 -1 hydrochloride%1:27:00:: 1 -1 hyalinization%1:26:00:: 1 -1 hyaline%5:00:00:clear:02 1 -1 hyacinth%1:27:00:: 1 -1 hustle%2:38:00:: 2 -1 husky%5:00:00:cacophonous:00 2 -1 hush%2:30:01:: 2 -1 hush%1:07:00:: 1 -1 husbandry%1:04:00:: 1 -1 hurt%1:12:02:: 2 -1 hurry%2:30:01:: 3 -1 hurry%1:04:00:: 3 -1 hurriedly%4:02:00:: 1 -1 hurling%5:00:00:moving:02 1 -1 hurdle%1:06:00:: 1 -1 hunting_ground%1:26:00:: 1 -1 hunting%1:04:02:: 2 -1 hunting%1:04:00:: 3 -1 hunted%5:00:00:afraid(p):00 1 -1 hunkered_down%5:00:00:unerect:00 1 -1 hunker_down%2:35:00:: 1 -1 hungry%5:00:00:desirous:00 2 -1 hunger%1:07:00:: 2 -1 hungarian%3:01:00:: 1 -1 hung%5:00:00:adorned:00 1 -1 hunch_over%2:38:00:: 1 -1 hun%1:18:02:: 1 -1 humor%1:07:00:: 4 -1 humming%1:11:00:: 1 -1 humming%1:04:00:: 2 -1 humility%1:12:00:: 2 -1 humidity%1:26:00:: 1 -1 humble%3:00:00:: 2 -1 humble%2:37:01:: 1 -1 humble%2:37:00:: 2 -1 humanize%2:37:00:: 1 -1 humanity%1:07:02:: 3 -1 humanity%1:07:00:: 2 -1 humanitarian%5:00:00:humane:00 1 -1 humanistic%3:01:02:: 1 -1 humanist%3:01:03:: 1 -1 humanist%1:18:00:: 1 -1 humanism%1:09:01:: 1 -1 humanism%1:09:00:: 2 -1 humanely%4:02:00:: 1 -1 humane%3:01:01:: 1 -1 human_waste%1:27:00:: 1 -1 human_death%1:11:00:: 1 -1 human_action%1:03:00:: 1 -1 hulk%2:42:00:: 1 -1 hulk%1:18:00:: 1 -1 hulk%1:06:00:: 2 -1 hugging%1:04:00:: 1 -1 hue_and_cry%1:10:00:: 1 -1 huddled%5:00:00:unerect:00 1 -1 huddled%5:00:00:crowded:00 2 -1 huckster%2:40:00:: 1 -1 hubris%1:07:00:: 1 -1 hubbub%1:11:00:: 1 -1 hoydenish%5:00:00:spirited:00 1 -1 howling%5:00:00:noisy:00 1 -1 howling%1:10:00:: 1 -1 hover%2:38:01:: 4 -1 housework%1:04:00:: 1 -1 household%5:00:00:domestic:01 1 -1 housebreaking%1:04:00:: 1 -1 housebreaker%1:18:00:: 1 -1 house_organ%1:10:00:: 1 -1 house%1:14:04:: 3 -1 house%1:14:03:: 4 -1 house%1:14:02:: 5 -1 house%1:14:00:: 6 -1 house%1:04:00:: 7 -1 hourly%3:01:00:: 1 -1 hour_angle%1:15:00:: 1 -1 hour%1:28:02:: 3 -1 hound_dog%1:05:00:: 1 -1 hound%1:18:00:: 2 -1 hotshot%1:18:00:: 1 -1 hotness%1:07:00:: 1 -1 hotelman%1:18:00:: 1 -1 hot_war%1:26:00:: 1 -1 hot_spell%1:19:00:: 1 -1 hot_rod%1:06:00:: 1 -1 hot_potato%1:26:00:: 1 -1 hot-water_heater%1:06:00:: 1 -1 hot%5:00:00:warm:03 4 -1 hot%5:00:00:sexy:00 5 -1 hot%5:00:00:illegal:00 6 -1 hot%5:00:00:fast:01 7 -1 hostile%5:00:00:unfriendly:01 3 -1 hostess%1:18:01:: 3 -1 hostelry%1:06:00:: 1 -1 host%1:14:01:: 6 -1 hospitality%1:10:00:: 1 -1 hospitable%3:00:00:: 1 -1 horsemanship%1:09:00:: 1 -1 horselaugh%1:10:00:: 1 -1 horse_trading%1:04:00:: 1 -1 horse_chestnut%1:20:00:: 1 -1 horse-trail%1:06:00:: 1 -1 horse%1:06:03:: 2 -1 hors_de_combat%5:00:00:injured:00 1 -1 horrifyingly%4:02:00:: 1 -1 horrifying%5:00:00:alarming:00 1 -1 horrid%5:00:00:bad:00 1 -1 horoscope%1:10:00:: 1 -1 hornpipe%1:04:00:: 1 -1 horn_fly%1:05:00:: 1 -1 horn%1:10:02:: 3 -1 horn%1:06:04:: 4 -1 horn%1:06:01:: 5 -1 horn%1:05:02:: 6 -1 horizontal_bar%1:06:00:: 1 -1 hopscotch%1:04:00:: 1 -1 hopper%1:06:00:: 1 -1 hopeful%5:00:00:auspicious:00 2 -1 hop-skip%2:38:00:: 1 -1 hop%2:38:05:: 3 -1 hop%2:38:04:: 2 -1 hop%1:04:00:: 1 -1 hoot%1:10:01:: 1 -1 hoop%1:06:01:: 1 -1 hoop%1:06:00:: 2 -1 hookworm%1:05:00:: 1 -1 hookup%1:06:01:: 1 -1 hooker's_green%1:27:00:: 1 -1 hooked%5:00:00:crooked:01 1 -1 hooked%5:00:00:addicted:00 2 -1 hook_up%2:35:00:: 1 -1 hook%2:40:02:: 2 -1 hook%2:36:00:: 3 -1 hook%2:35:03:: 4 -1 hook%1:06:03:: 1 -1 hoofmark%1:10:00:: 1 -1 hood%1:18:00:: 1 -1 honour%2:41:00:: 1 -1 honour%1:26:00:: 1 -1 honour%1:10:00:: 2 -1 honorable%3:00:04:: 1 -1 honkytonk%1:06:00:: 1 -1 honky-tonk%1:06:00:: 1 -1 honeysuckle%1:20:01:: 1 -1 honestly%4:02:01:: 2 -1 honest%5:00:00:artless:00 4 -1 homosexual%3:00:00:: 1 -1 homosexual%1:18:00:: 1 -1 homogenize%2:30:01:: 1 -1 homogeneously%4:02:00:: 1 -1 homicide%1:04:00:: 1 -1 homicidal%5:00:00:bloody:00 1 -1 homeward%4:02:00:: 1 -1 hometown%1:15:00:: 1 -1 homer%1:18:00:: 2 -1 homemade%3:00:00:: 1 -1 homely%5:00:00:plain:01 3 -1 homegrown%5:00:00:native:01 1 -1 homefolk%1:14:00:: 1 -1 homebound%1:14:00:: 1 -1 home_movie%1:10:00:: 1 -1 home%1:15:03:: 6 -1 holystone%1:17:00:: 1 -1 holy_scripture%1:10:00:: 1 -1 holy_sacrament%1:04:00:: 1 -1 holy_father%1:18:00:: 1 -1 hollyhock%1:20:02:: 1 -1 hollyhock%1:20:01:: 2 -1 hollowness%1:26:00:: 1 -1 hollow%5:00:00:reverberant:00 3 -1 hollow%5:00:00:meaningless:00 4 -1 hollow%5:00:00:insincere:00 2 -1 hollow%3:00:00:: 1 -1 hollow%1:17:01:: 2 -1 hollow%1:17:00:: 3 -1 holler_out%2:32:00:: 1 -1 holler%2:32:00:: 3 -1 holler%1:10:00:: 1 -1 holland%1:15:00:: 1 -1 hole_out%2:35:00:: 1 -1 holdup%1:04:00:: 1 -1 holding%1:04:00:: 1 -1 hold_up%2:42:00:: 5 -1 hold_sway%2:41:00:: 1 -1 hold_still_for%2:31:00:: 1 -1 hold_over%2:40:00:: 2 -1 hold_out%2:42:02:: 4 -1 hold_on%2:32:00:: 4 -1 hold_in%2:42:00:: 1 -1 hold_in%2:41:00:: 2 -1 hold_down%2:40:00:: 1 -1 hold_back%2:41:00:: 2 -1 hold%2:42:14:: 19 -1 hold%2:42:07:: 18 -1 hold%2:41:00:: 20 -1 hold%2:33:05:: 21 -1 hold%2:32:13:: 22 -1 hold%2:31:10:: 24 -1 hold%2:31:04:: 23 -1 hokan%1:10:00:: 1 -1 hoist%2:35:00:: 1 -1 hog%2:40:00:: 1 -1 hoe%1:06:00:: 1 -1 hodgepodge%1:14:00:: 1 -1 hock%2:40:00:: 1 -1 hobble%2:41:00:: 2 -1 hive%1:14:00:: 1 -1 hive%1:06:00:: 2 -1 hitless%5:00:00:unsuccessful:00 1 -1 hitching_post%1:06:00:: 1 -1 hitch_up%2:35:00:: 1 -1 hitch%2:38:02:: 3 -1 hitch%2:38:01:: 2 -1 hitch%1:28:00:: 1 -1 hit_the_dirt%2:38:00:: 1 -1 hit_the_deck%2:38:00:: 1 -1 hit_it_up%2:34:00:: 1 -1 hit-and-run%5:00:00:offensive:03 1 -1 hit%2:40:12:: 11 -1 hit%1:04:02:: 3 -1 histrionics%1:10:00:: 1 -1 histology%1:09:00:: 1 -1 hiss%2:32:00:: 1 -1 hire%2:41:01:: 2 -1 hipline%1:15:01:: 1 -1 hip_pad%1:06:00:: 1 -1 hip%1:08:02:: 3 -1 hip%1:08:01:: 2 -1 hint%1:10:01:: 2 -1 hint%1:10:00:: 1 -1 hinge_on%2:42:00:: 1 -1 hinder%2:41:00:: 2 -1 hinder%2:33:00:: 3 -1 hilt%1:06:00:: 1 -1 hillbilly_music%1:10:00:: 1 -1 hillbilly%1:18:00:: 1 -1 hill%1:06:01:: 2 -1 hilarity%1:12:00:: 1 -1 hilariously%4:02:00:: 1 -1 hilarious%5:00:00:humorous:00 1 -1 hike_up%2:35:00:: 1 -1 hike%2:38:01:: 1 -1 hijacking%3:44:00:: 1 -1 hijacker%1:18:00:: 1 -1 highschool%1:14:00:: 1 -1 highness%1:18:00:: 1 -1 highly%4:02:01:: 2 -1 higher_education%1:04:00:: 1 -1 higher%5:00:01:high:02 2 -1 high_up%4:02:00:: 1 -1 high_time%1:28:00:: 1 -1 high_spirits%1:12:00:: 1 -1 high_sea%1:17:00:: 1 -1 high_quality%1:07:00:: 1 -1 high_frequency%1:07:01:: 1 -1 high_frequency%1:07:00:: 2 -1 high_finance%1:04:00:: 1 -1 high_anglicanism%1:09:00:: 1 -1 high_and_low%4:02:00:: 1 -1 high-topped%5:00:00:high:01 1 -1 high-tail%2:38:00:: 1 -1 high-sudsing%3:00:00:: 1 -1 high-stepped%5:00:00:high:01 1 -1 high-speed%5:00:02:fast:01 2 -1 high-resolution%3:00:00:: 1 -1 high-powered%5:00:00:dynamic:00 1 -1 high-pitched%5:00:00:inclined:01 2 -1 high-ceilinged%5:00:00:ceilinged:00 1 -1 high-backed%5:00:00:backed:00 1 -1 high-and-dry%5:00:00:aground(p):00 1 -1 high%3:00:04:: 6 -1 hideously%4:02:00:: 1 -1 hideaway%1:15:00:: 1 -1 hide_out%2:39:00:: 1 -1 hibachi%2:30:00:: 1 -1 hi%1:10:00:: 1 -1 hexameter%1:10:00:: 1 -1 hex%1:10:00:: 1 -1 het_up%5:00:00:hot:01 1 -1 hesitation%1:04:00:: 3 -1 hesitating%5:00:00:indecisive:01 1 -1 hesitancy%1:12:00:: 1 -1 herringbone%1:06:00:: 1 -1 heroics%1:04:00:: 1 -1 heroic%5:00:00:impressive:00 4 -1 hero_worshipper%1:18:00:: 1 -1 hero%1:18:01:: 3 -1 hermetic%5:00:00:tight:02 1 -1 hermeneutics%1:09:00:: 1 -1 herman_melville%1:18:00:: 1 -1 heretic%1:18:00:: 1 -1 herein%4:02:00:: 1 -1 heredity%1:22:00:: 1 -1 hereabouts%4:02:00:: 1 -1 here%4:02:04:: 4 -1 here%1:15:00:: 1 -1 herd%2:38:01:: 1 -1 herd%2:38:00:: 2 -1 herculean%5:00:00:superhuman:00 1 -1 herculean%5:00:00:difficult:00 2 -1 herb%1:20:00:: 1 -1 herb%1:13:00:: 2 -1 heraldic%5:00:00:communicative:00 1 -1 herald%2:32:01:: 2 -1 herald%2:32:00:: 1 -1 herald%1:18:00:: 1 -1 hepatitis%1:26:00:: 1 -1 henry_james%1:18:00:: 1 -1 henry_ford%1:18:00:: 1 -1 henpecked%5:00:00:submissive:00 1 -1 hen%1:05:02:: 2 -1 hemorrhoid%1:26:00:: 1 -1 hemolytic%3:01:00:: 1 -1 hemispherical%5:00:00:rounded:00 1 -1 hem_in%2:35:00:: 1 -1 hem_in%2:33:00:: 2 -1 helplessness%1:07:00:: 1 -1 helpless%5:00:00:dependent:00 3 -1 helping_hand%1:04:00:: 1 -1 helper%1:18:01:: 1 -1 helper%1:18:00:: 2 -1 help_out%2:41:02:: 1 -1 help%1:07:01:: 4 -1 help%1:07:00:: 3 -1 helm%1:06:00:: 1 -1 helm%1:04:00:: 2 -1 hello%1:10:00:: 1 -1 hellion%1:18:00:: 1 -1 hellfire%1:15:00:: 1 -1 hellenic%3:01:00:: 2 -1 hellenic%1:10:00:: 1 -1 hell_raising%1:04:00:: 1 -1 hell-rooster%1:18:00:: 1 -1 held_up%5:00:00:delayed:00 1 -1 held%3:44:00:: 1 -1 heist%2:41:00:: 1 -1 heighten%2:30:02:: 2 -1 heighten%2:30:01:: 1 -1 heighten%2:30:00:: 3 -1 height%1:07:02:: 4 -1 hefty%5:00:00:strong:00 1 -1 heft%2:35:00:: 1 -1 heed%1:09:00:: 1 -1 hedonism%1:16:00:: 1 -1 hedge%2:32:00:: 1 -1 hectic%5:00:00:agitated:00 1 -1 hebrew%3:01:01:: 1 -1 hebrew%1:10:00:: 1 -1 hebraic%3:01:00:: 1 -1 heavyweight%5:00:00:heavy:01 1 -1 heavy-handed%5:00:00:maladroit:00 1 -1 heavy-duty%3:00:00:: 1 -1 heavy-coated%5:00:00:clothed:00 1 -1 heavy-armed%5:00:00:robust:00 1 -1 heavy%5:00:00:fat:01 7 -1 heavy%5:00:00:compact:00 8 -1 heavy%5:00:00:cloudy:00 9 -1 heaving%1:11:01:: 1 -1 heavily%4:02:03:: 4 -1 heavily%4:02:02:: 5 -1 heavenly_body%1:17:00:: 1 -1 heavenly%3:01:00:: 1 -1 heaven%1:15:01:: 2 -1 heave%2:38:01:: 5 -1 heave%2:29:01:: 6 -1 heater%1:06:00:: 1 -1 heat_up%2:30:01:: 1 -1 heat_sink%1:06:00:: 1 -1 heat_of_dissociation%1:19:00:: 1 -1 heat_of_condensation%1:19:00:: 1 -1 heat%1:26:00:: 5 -1 hearty%5:00:00:warm:02 1 -1 heartily%4:02:01:: 2 -1 hearth%1:06:00:: 2 -1 hearted%3:00:00:: 1 -1 heart_rate%1:28:00:: 1 -1 heart_disease%1:26:00:: 1 -1 heart%1:07:04:: 6 -1 hearer%1:18:00:: 1 -1 heard%5:00:00:detected:00 1 -1 heaped-up%5:00:00:concentrated:00 1 -1 heap%2:40:00:: 1 -1 heap%2:35:00:: 2 -1 healthy%5:00:00:wholesome:00 3 -1 healthily%4:02:00:: 1 -1 health_problem%1:26:00:: 1 -1 healing%5:00:00:healthful:00 1 -1 healing%1:22:00:: 1 -1 healer%1:18:00:: 1 -1 heal%2:29:00:: 2 -1 headstrong%5:00:00:disobedient:00 1 -1 headsman%1:18:00:: 1 -1 headquarters%1:14:00:: 3 -1 headlinese%1:10:00:: 1 -1 headline%2:32:00:: 1 -1 heading%1:10:00:: 1 -1 headgear%1:06:00:: 1 -1 headed%3:00:02:: 2 -1 headed%3:00:01:: 3 -1 head_start%1:07:00:: 1 -1 head_of_hair%1:08:00:: 1 -1 head_home%2:38:00:: 1 -1 head_covering%1:06:00:: 1 -1 head-on%4:02:01:: 1 -1 head-in-the-clouds%5:00:00:irresponsible:00 1 -1 head%5:00:00:significant:00 2 -1 head%1:15:01:: 8 -1 head%1:15:00:: 7 -1 head%1:10:03:: 9 -1 hazy%5:00:00:cloudy:00 1 -1 hazel%5:00:00:chromatic:00 1 -1 haze%1:09:00:: 2 -1 hazard%2:32:00:: 1 -1 hazard%1:19:00:: 2 -1 haystack%1:14:00:: 1 -1 haying_time%1:04:00:: 1 -1 hayfield%1:15:00:: 1 -1 hay_fever%1:26:00:: 1 -1 hawker%1:18:00:: 1 -1 hawk_nose%1:08:00:: 1 -1 haven%1:06:00:: 1 -1 have_got%2:42:00:: 2 -1 have%2:42:08:: 21 -1 haunted%5:00:00:concerned:00 1 -1 haul_up%2:38:00:: 1 -1 haul%1:04:00:: 1 -1 haughty%5:00:00:proud:00 1 -1 haughtily%4:02:00:: 1 -1 hater%1:18:00:: 1 -1 hatefully%4:02:00:: 1 -1 hated%5:00:00:unloved:00 1 -1 hatch%2:36:00:: 2 -1 hat%2:29:00:: 1 -1 hasty%5:00:00:hurried:00 1 -1 hasten%2:36:00:: 4 -1 haste%1:26:00:: 3 -1 hasp%1:06:00:: 1 -1 hash_mark%1:10:00:: 1 -1 harvard_university%1:06:00:: 1 -1 harshness%1:07:03:: 1 -1 harshen%2:30:00:: 1 -1 harry%2:37:00:: 1 -1 harpy_eagle%1:05:00:: 1 -1 harp%2:32:00:: 1 -1 harp%1:06:00:: 1 -1 harness%2:34:00:: 2 -1 harness%1:06:00:: 2 -1 harmony%1:26:00:: 3 -1 harmonious%5:00:00:balanced:00 2 -1 harmonious%3:00:00:: 1 -1 harmonic%3:01:00:: 1 -1 harmlessly%4:02:00:: 1 -1 harmless%3:00:00:: 1 -1 harmful%5:00:00:dangerous:00 1 -1 harm%1:04:00:: 3 -1 harem%1:06:00:: 1 -1 hare%1:05:00:: 1 -1 hardy%5:00:00:robust:00 1 -1 hardworking%5:00:00:diligent:00 1 -1 hardtack%1:27:00:: 2 -1 hardship%1:26:01:: 1 -1 hardship%1:07:00:: 2 -1 hardened%5:00:05:hard:02 1 -1 hardbake%1:13:00:: 1 -1 hard_worker%1:18:00:: 1 -1 hard_times%1:28:00:: 1 -1 hard_time%1:26:00:: 1 -1 hard_put%5:00:00:troubled:00 1 -1 hard-pressed%5:00:00:troubled:00 1 -1 hard-fought%5:00:00:difficult:00 1 -1 hard%4:02:07:: 3 -1 hard%4:02:04:: 4 -1 hard%4:02:03:: 5 -1 harbor%2:42:00:: 2 -1 harbor%2:40:00:: 3 -1 harbor%2:39:00:: 4 -1 harass%2:37:01:: 2 -1 harangue%1:10:00:: 1 -1 happy%5:00:00:contented:00 4 -1 happen_upon%2:40:00:: 1 -1 hapless%5:00:00:unfortunate:00 1 -1 haphazardly%4:02:00:: 1 -1 hanukkah%1:28:00:: 1 -1 hangover%1:26:00:: 1 -1 hangout%1:15:00:: 1 -1 hang_up%2:30:00:: 3 -1 hang_together%2:42:00:: 1 -1 hang_in%2:30:00:: 1 -1 hang_back%2:38:00:: 1 -1 hang%2:39:00:: 7 -1 hang%2:35:07:: 9 -1 hang%2:35:06:: 8 -1 handyman%1:18:00:: 1 -1 handy%5:00:00:convenient:00 2 -1 handwritten%5:00:00:written:00 1 -1 handwoven%5:00:00:handmade:00 1 -1 handshaking%1:10:00:: 1 -1 hands%1:14:00:: 2 -1 handling%1:04:02:: 3 -1 handless%3:00:00:: 1 -1 handled%3:00:00:: 1 -1 handlebar%1:06:00:: 1 -1 handle%2:35:01:: 5 -1 handiwork%1:06:00:: 1 -1 handicap%2:29:00:: 1 -1 handicap%1:26:00:: 1 -1 handicap%1:07:02:: 2 -1 handcuffs%1:06:00:: 1 -1 handclasp%1:10:00:: 1 -1 hand_in_hand%4:02:03:: 1 -1 hand_in_hand%4:02:01:: 2 -1 hand_down%2:40:00:: 1 -1 hand_brake%1:06:00:: 1 -1 hand_blower%1:06:00:: 1 -1 hand%1:14:00:: 6 -1 hand%1:09:01:: 7 -1 hand%1:06:00:: 8 -1 hamper%2:33:00:: 2 -1 hamming%1:04:00:: 1 -1 hamlet%1:14:00:: 1 -1 ham_and_eggs%1:13:00:: 1 -1 ham%1:13:00:: 1 -1 haltingly%4:02:00:: 1 -1 halter%1:06:01:: 1 -1 halt%1:26:00:: 1 -1 halt%1:11:00:: 2 -1 halt%1:04:00:: 3 -1 hallucination%1:26:00:: 1 -1 halloween%1:28:00:: 1 -1 hallowed%5:00:00:holy:00 1 -1 hallelujah%1:10:00:: 1 -1 hall_of_fame%1:06:00:: 1 -1 halfway%5:00:00:intermediate:00 2 -1 halftime%1:28:00:: 1 -1 half_sister%1:18:00:: 1 -1 half_life%1:28:00:: 1 -1 half_gainer%1:04:00:: 1 -1 half_a_dozen%1:23:00:: 1 -1 half-time%5:00:00:part-time:00 1 -1 half-time%4:02:00:: 1 -1 half-moon%1:08:00:: 1 -1 half-heartedly%4:02:00:: 1 -1 half-brother%1:18:00:: 1 -1 hairtonic%1:06:00:: 1 -1 hairless%3:00:00:: 1 -1 hairdo%1:08:00:: 1 -1 hail%2:42:00:: 2 -1 hail%2:32:01:: 3 -1 hail%2:32:00:: 4 -1 haiku%1:10:00:: 1 -1 haggardly%4:02:00:: 1 -1 haggard%5:00:00:thin:03 2 -1 hackwork%1:04:00:: 1 -1 hackneyed%5:00:00:unoriginal:00 1 -1 hacker%1:18:02:: 1 -1 hack%2:35:02:: 1 -1 hack%1:18:00:: 1 -1 habitually%4:02:02:: 2 -1 habitual%5:00:00:usual:00 2 -1 habitual%5:00:00:established:00 1 -1 habitable%5:00:00:livable:00 1 -1 habit%1:06:00:: 3 -1 haberdashery_store%1:06:00:: 1 -1 haberdashery%1:06:01:: 1 -1 gyration%1:11:00:: 1 -1 gyrate%2:38:00:: 1 -1 gynecologist%1:18:00:: 1 -1 guzzle%2:34:00:: 1 -1 guy_fawkes_day%1:28:00:: 1 -1 guy%1:06:01:: 2 -1 guttural%5:00:00:cacophonous:00 1 -1 gusto%1:12:00:: 1 -1 guru%1:18:00:: 1 -1 gunslinger%1:18:00:: 1 -1 gunshot%1:04:00:: 1 -1 gunplay%1:04:00:: 1 -1 gun_smoke%1:19:00:: 1 -1 gun_down%2:33:00:: 1 -1 gun_barrel%1:06:00:: 1 -1 gummy%5:00:00:adhesive:00 1 -1 gum%1:13:00:: 1 -1 gum%1:08:00:: 2 -1 gulp%2:32:00:: 2 -1 gully%1:17:00:: 1 -1 gullible%5:00:00:naive:00 1 -1 gull%2:41:00:: 1 -1 gull%2:32:00:: 2 -1 gulf%1:17:01:: 1 -1 gulf%1:07:00:: 2 -1 guiltily%4:02:00:: 1 -1 guilt_pang%1:12:00:: 1 -1 guileless%5:00:00:artless:00 1 -1 guiding_light%1:18:00:: 1 -1 guidepost%1:09:00:: 1 -1 guideline%1:10:00:: 1 -1 guided_missile%1:06:00:: 1 -1 guide%1:18:02:: 2 -1 guide%1:18:00:: 1 -1 guide%1:10:00:: 3 -1 guide%1:09:00:: 4 -1 guidance%1:04:00:: 3 -1 guessing%1:09:00:: 1 -1 guess%1:09:00:: 2 -1 gubernatorial%3:01:00:: 1 -1 guatemalan%3:01:00:: 1 -1 guatemala%1:15:00:: 1 -1 guarding%1:04:00:: 1 -1 guard_duty%1:04:00:: 1 -1 guard%1:07:00:: 4 -1 guarantee%2:32:02:: 4 -1 guarantee%1:10:01:: 2 -1 grunting%5:00:00:inarticulate:00 1 -1 grumbling%5:00:00:complaining(a):00 2 -1 grumbling%1:11:00:: 1 -1 grumbling%1:10:00:: 2 -1 grumble%2:32:02:: 3 -1 grumble%1:11:00:: 1 -1 gruff%5:00:00:ill-natured:00 1 -1 gruff%5:00:00:cacophonous:00 2 -1 grudgingly%4:02:00:: 1 -1 grub%1:13:00:: 1 -1 grub%1:05:00:: 2 -1 growth_rate%1:28:00:: 1 -1 growth%1:11:01:: 5 -1 growling%1:10:00:: 1 -1 growl%1:11:00:: 1 -1 growing_season%1:28:00:: 1 -1 grower%1:18:00:: 1 -1 grow_into%2:30:00:: 1 -1 grouping%1:04:00:: 2 -1 group_participation%1:04:00:: 1 -1 group_action%1:04:00:: 1 -1 group%5:00:00:common:02 1 -1 group%2:33:00:: 2 -1 group%1:27:00:: 2 -1 groundwork%1:09:00:: 1 -1 grounds%1:10:00:: 4 -1 groundless%5:00:00:unsupported:02 1 -1 grounder%1:04:00:: 1 -1 ground_water%1:27:00:: 1 -1 ground_out%2:35:00:: 1 -1 ground_glass%1:27:00:: 1 -1 ground%2:35:01:: 2 -1 ground%2:35:00:: 3 -1 ground%2:32:00:: 4 -1 ground%1:24:00:: 4 -1 ground%1:15:00:: 5 -1 ground%1:09:00:: 6 -1 grotesquely%4:02:00:: 1 -1 grotesque%1:06:00:: 1 -1 grossly%4:02:00:: 1 -1 gross_national_product%1:21:00:: 1 -1 gross%5:00:00:general:00 3 -1 gross%5:00:00:fat:01 4 -1 grope_for%2:35:00:: 1 -1 grope%2:41:00:: 2 -1 grooved%5:00:00:established:00 1 -1 groove%1:25:00:: 1 -1 groove%1:04:00:: 2 -1 groomed%3:00:00:: 1 -1 groom%2:41:00:: 1 -1 groom%2:29:03:: 2 -1 groom%1:18:02:: 1 -1 groin%1:08:00:: 1 -1 groggy%5:00:00:lethargic:00 1 -1 grocery%1:06:00:: 1 -1 grizzled%5:00:00:brunet:00 1 -1 gritty%5:00:00:coarse:00 1 -1 gristmill%1:06:00:: 1 -1 gripe%1:10:00:: 1 -1 grip%2:35:01:: 4 -1 grip%1:06:01:: 2 -1 grip%1:06:00:: 3 -1 grinding%1:17:00:: 1 -1 grinding%1:11:00:: 2 -1 grind_out%2:36:00:: 1 -1 grind%2:41:00:: 3 -1 grind%2:38:00:: 4 -1 grind%2:30:00:: 5 -1 grim%5:00:01:unpleasant:00 5 -1 grille%1:06:02:: 1 -1 grill%2:30:00:: 1 -1 grievous%5:00:00:critical:03 1 -1 grieve%2:37:00:: 1 -1 grievance%1:12:00:: 1 -1 grievance%1:10:01:: 2 -1 grievance%1:10:00:: 3 -1 grief-stricken%5:00:00:sorrowful:00 1 -1 grey%5:00:00:achromatic:00 1 -1 gregarious%5:00:00:social:00 2 -1 gregarious%3:00:00:: 1 -1 greet%2:39:00:: 4 -1 greenwich_village%1:15:00:: 1 -1 greens%1:13:00:: 1 -1 greenroom%1:06:00:: 1 -1 greenness%1:07:02:: 1 -1 greenly%4:02:00:: 1 -1 greening%3:44:00:: 1 -1 greenhouse%1:06:00:: 1 -1 green_bean%1:13:00:: 1 -1 green_algae%1:05:00:: 1 -1 green%1:15:01:: 2 -1 greek_chorus%1:14:00:: 1 -1 greedy%5:00:00:acquisitive:00 1 -1 greed%1:07:00:: 1 -1 grecian%3:01:00:: 1 -1 greatest%5:00:00:superior:02 5 -1 great_grandmother%1:18:00:: 1 -1 great_depression%1:26:00:: 1 -1 great_britain%1:15:01:: 1 -1 great_britain%1:15:00:: 2 -1 great-niece%1:18:00:: 1 -1 grease%2:35:00:: 1 -1 grayed%5:00:00:colorless:02 1 -1 graybeard%1:18:00:: 1 -1 grayback%1:18:00:: 1 -1 gray%1:14:00:: 3 -1 gray%1:05:00:: 4 -1 gravy%1:21:00:: 1 -1 gravity%1:07:00:: 2 -1 gravitational_force%1:19:00:: 1 -1 gravitational_field%1:19:00:: 1 -1 gravitational_attraction%1:19:00:: 1 -1 gravitational%3:01:00:: 1 -1 gravestone%1:06:00:: 1 -1 graven_image%1:06:00:: 1 -1 gravel%5:00:00:unpaved:00 1 -1 gravel%5:00:00:cacophonous:00 2 -1 gratuitously%4:02:00:: 1 -1 gratuitous%5:00:00:unmerited:00 1 -1 gratifyingly%4:02:00:: 1 -1 gratifying%5:00:00:rewarding:00 1 -1 gratified%5:00:00:pleased:00 1 -1 gratification%1:04:00:: 2 -1 grate%1:06:00:: 1 -1 grassroots%5:00:00:basic:00 1 -1 grassfire%1:11:00:: 1 -1 grass%2:33:00:: 1 -1 grasping%1:09:00:: 1 -1 graphically%4:02:03:: 1 -1 graphical%3:01:00:: 1 -1 graphic%5:00:00:explicit:00 2 -1 graph%2:36:00:: 1 -1 granville_wilt%1:26:00:: 1 -1 granulocytic%3:01:00:: 1 -1 granule%1:17:00:: 1 -1 granted%5:00:00:given:00 2 -1 grant-in-aid%1:04:00:: 1 -1 granite%1:27:00:: 1 -1 granite%1:07:00:: 2 -1 grandparent%1:18:00:: 1 -1 grandly%4:02:00:: 1 -1 grandiose%5:00:00:impressive:00 1 -1 grandeur%1:07:02:: 2 -1 grandchild%1:18:00:: 1 -1 grand%5:00:00:noble:02 2 -1 granary%1:06:00:: 1 -1 grammatically%4:02:00:: 1 -1 grammarian%1:18:00:: 1 -1 gram-negative%3:00:00:: 1 -1 graining%1:07:00:: 1 -1 grain%1:13:00:: 2 -1 graduated%5:00:01:progressive:02 1 -1 graduate_student%1:18:00:: 1 -1 graduate_school%1:14:00:: 1 -1 grading%1:04:00:: 1 -1 graded%5:00:00:hierarchical:00 1 -1 grade_school%1:14:00:: 1 -1 grade-constructed%5:00:00:surface:00 1 -1 grade%2:31:03:: 1 -1 grade%1:07:01:: 3 -1 graciously%4:02:00:: 1 -1 gracious%5:00:00:good:02 2 -1 gracious%3:00:00:: 1 -1 grace%2:36:00:: 1 -1 grace%1:07:03:: 4 -1 grab%2:38:02:: 3 -1 gowned%5:00:00:clothed:00 1 -1 governor's_race%1:11:00:: 1 -1 government%1:09:00:: 3 -1 governess%1:18:00:: 1 -1 gout%1:26:00:: 1 -1 gourd%1:06:00:: 1 -1 gothic_romancer%1:18:00:: 1 -1 gossamer%5:00:00:delicate:00 1 -1 gospeler%1:18:00:: 1 -1 gospel%1:10:02:: 2 -1 gory%5:00:01:bloody:00 1 -1 gorgeous%5:00:00:beautiful:00 1 -1 gorge%2:34:00:: 1 -1 gore%2:35:02:: 1 -1 gop%1:14:00:: 1 -1 goose_bumps%1:26:00:: 1 -1 goof%2:41:00:: 1 -1 good_will%1:21:00:: 2 -1 good_person%1:18:00:: 1 -1 good_part%1:07:00:: 1 -1 good_nature%1:07:00:: 1 -1 good_guy%1:18:00:: 1 -1 good_for_you%5:00:00:wholesome:00 1 -1 good_faith%1:07:00:: 1 -1 good_example%1:09:00:: 1 -1 good_condition%1:26:00:: 1 -1 good-natured%3:00:00:: 1 -1 good-looking%5:00:00:beautiful:00 1 -1 good%5:00:01:sound:00 13 -1 good%5:00:00:opportune:00 14 -1 good%5:00:00:operative:00 16 -1 good%5:00:00:fortunate:00 15 -1 good%5:00:00:best:00 17 -1 good%3:00:04:: 12 -1 gone%5:00:00:past:00 5 -1 gone%5:00:00:lost:01 6 -1 golfing%1:04:00:: 1 -1 golf_widow%1:18:00:: 1 -1 goldsmith%1:18:00:: 1 -1 golden_glow%1:20:00:: 1 -1 golden%5:00:00:metallic:00 3 -1 gold_leaf%1:06:00:: 1 -1 going_away%1:04:00:: 1 -1 going-over%1:04:00:: 1 -1 going%5:00:00:active:06 1 -1 going%1:04:01:: 1 -1 godlike%5:00:00:superhuman:00 1 -1 godless%5:00:00:impious:00 1 -1 godforsaken%5:00:00:inhospitable:00 1 -1 god_knows_how%4:02:00:: 1 -1 gobble%2:32:00:: 2 -1 goal%1:15:00:: 2 -1 goad%2:37:00:: 1 -1 goad%2:35:00:: 2 -1 goad%1:06:00:: 1 -1 go_with%2:42:02:: 2 -1 go_with%2:42:00:: 3 -1 go_up%2:30:04:: 6 -1 go_under%2:38:00:: 1 -1 go_to_war%2:33:00:: 1 -1 go_to_pieces%2:37:00:: 1 -1 go_through%2:41:00:: 3 -1 go_steady%2:41:00:: 1 -1 go_over%2:31:01:: 3 -1 go_over%2:29:00:: 4 -1 go_out%2:42:00:: 5 -1 go_out%2:41:00:: 6 -1 go_off%2:33:00:: 3 -1 go_for%2:42:00:: 1 -1 go_for%2:32:00:: 2 -1 go_for%2:31:00:: 3 -1 go_far%2:42:00:: 2 -1 go_down%2:34:00:: 5 -1 go_down%2:33:00:: 6 -1 go_deep%2:42:00:: 1 -1 go_by%2:32:00:: 3 -1 go_around%2:42:00:: 1 -1 go_around%2:32:00:: 2 -1 go_along%2:38:02:: 3 -1 go_all_out%2:41:00:: 1 -1 go_after%2:35:00:: 2 -1 go_a_long_way%2:42:00:: 1 -1 go%2:42:10:: 19 -1 go%2:42:04:: 18 -1 go%2:38:09:: 20 -1 go%2:33:00:: 21 -1 gnome%1:18:00:: 1 -1 gnaw_at%2:30:00:: 1 -1 gnaw%2:30:00:: 2 -1 glycerolize%2:38:00:: 1 -1 glutton%1:18:00:: 1 -1 glutamic_oxaloacetic_transaminase%1:27:00:: 1 -1 glut%2:34:00:: 1 -1 glum%5:00:00:dejected:00 1 -1 glue%1:27:00:: 1 -1 glowing%5:00:00:enthusiastic:00 2 -1 glowering%5:00:00:ill-natured:00 1 -1 glow%2:37:01:: 4 -1 glow%1:19:00:: 3 -1 glow%1:12:00:: 4 -1 gloved%3:00:00:: 1 -1 glottochronology%1:09:00:: 1 -1 glottal_catch%1:10:00:: 1 -1 gloss_over%2:41:00:: 1 -1 glory%2:32:00:: 1 -1 gloriously%4:02:01:: 1 -1 glorious%5:00:00:proud:00 2 -1 glorious%5:00:00:blessed:00 3 -1 glorify%2:30:00:: 2 -1 glorified%5:00:00:authorized:00 1 -1 gloomy%5:00:00:hopeless:00 1 -1 gloomy%5:00:00:dark:01 3 -1 gloomy%5:00:00:cheerless:00 2 -1 gloom%1:12:00:: 2 -1 glom%2:40:00:: 1 -1 global%5:00:00:international:00 1 -1 gloat%2:32:00:: 1 -1 glint%2:39:02:: 2 -1 glint%1:11:00:: 1 -1 glimpse%1:09:00:: 2 -1 glimmer%1:11:00:: 1 -1 glide-bomb%2:33:00:: 1 -1 glibness%1:07:00:: 1 -1 gleaming%1:11:00:: 1 -1 gleaming%1:07:00:: 2 -1 gleam%2:30:00:: 3 -1 glazed%5:00:00:empty:00 1 -1 glaze%2:30:00:: 2 -1 glaucoma%1:26:00:: 1 -1 glassy%5:00:00:smooth:00 1 -1 glassy%5:00:00:empty:00 2 -1 glassless%3:00:00:: 1 -1 glass%1:06:03:: 4 -1 glaring%5:00:00:conspicuous:00 2 -1 glare%1:04:00:: 2 -1 glanders%1:26:00:: 1 -1 glance%2:38:00:: 2 -1 glamorous%5:00:00:exciting:00 1 -1 glamor%1:07:00:: 1 -1 gladiator%1:18:00:: 1 -1 glad%5:00:00:willing:00 2 -1 glad%5:00:00:grateful:00 3 -1 glacier%1:17:00:: 1 -1 giving_up%1:10:00:: 1 -1 giving%1:04:00:: 1 -1 giver%1:18:01:: 1 -1 givenness%1:07:00:: 1 -1 given%1:09:00:: 1 -1 giveaway%1:21:00:: 1 -1 give_way%2:38:01:: 2 -1 give_way%2:30:01:: 3 -1 give_up%2:41:00:: 11 -1 give_up%2:34:00:: 12 -1 give_thanks%2:32:04:: 1 -1 give_out%2:43:00:: 1 -1 give_out%2:40:00:: 2 -1 give_or_take%4:02:00:: 1 -1 give_it_a_whirl%2:41:00:: 1 -1 give_in%2:32:01:: 2 -1 give_forth%2:29:00:: 1 -1 give_ear%2:39:00:: 1 -1 give_birth%2:36:00:: 2 -1 give_and_take%2:32:00:: 1 -1 give%2:38:13:: 26 -1 give%2:31:00:: 27 -1 give%1:07:00:: 1 -1 girt%2:42:00:: 1 -1 girlfriend%1:18:01:: 1 -1 girlfriend%1:18:00:: 2 -1 gird%2:33:00:: 1 -1 ginkgo%1:20:00:: 1 -1 gingerly%5:00:00:cautious:00 1 -1 gingerly%4:02:00:: 1 -1 gild%2:36:00:: 1 -1 giggle%1:10:00:: 1 -1 gig%1:06:02:: 1 -1 gift_horse%1:21:00:: 1 -1 gift%2:41:00:: 1 -1 giddiness%1:07:00:: 1 -1 gibelike%5:00:00:disrespectful:00 1 -1 gibbet%1:06:00:: 1 -1 ghoul%1:18:00:: 2 -1 ghostly%5:00:00:supernatural:00 1 -1 ghostlike%5:00:00:supernatural:00 1 -1 ghost%2:38:00:: 1 -1 ghana%1:15:00:: 1 -1 geyser%2:38:00:: 1 -1 get_worse%2:30:00:: 1 -1 get_word%2:31:00:: 1 -1 get_up%2:29:03:: 5 -1 get_up%2:29:02:: 6 -1 get_tough%2:41:00:: 1 -1 get_together%2:41:03:: 1 -1 get_together%2:41:01:: 2 -1 get_together%2:41:00:: 3 -1 get_through%2:42:00:: 2 -1 get_through%2:38:00:: 3 -1 get_the_picture%2:31:00:: 1 -1 get_the_best%2:33:02:: 1 -1 get_over%2:36:00:: 2 -1 get_over%2:30:00:: 3 -1 get_onto%2:31:00:: 1 -1 get_on%2:38:03:: 2 -1 get_on%2:38:02:: 4 -1 get_on%2:38:00:: 3 -1 get_on%2:30:01:: 5 -1 get_on%2:30:00:: 6 -1 get_on%2:29:00:: 7 -1 get_off%2:41:00:: 2 -1 get_off%2:32:05:: 3 -1 get_off%2:32:01:: 4 -1 get_off%2:32:00:: 5 -1 get_it%2:41:00:: 2 -1 get_into_bed%2:29:00:: 1 -1 get_into%2:32:00:: 4 -1 get_into%2:29:00:: 5 -1 get_in%2:40:01:: 4 -1 get_in%2:40:00:: 3 -1 get_in%2:38:00:: 5 -1 get_hold_of%2:35:00:: 1 -1 get_even%2:33:00:: 1 -1 get_down%2:38:01:: 3 -1 get_down%2:38:00:: 2 -1 get_down%2:34:00:: 4 -1 get_by%2:38:00:: 2 -1 get_by%2:32:00:: 3 -1 get_behind%2:38:00:: 1 -1 get_back%2:33:00:: 3 -1 get_away%2:41:00:: 3 -1 get_at%2:38:00:: 1 -1 get_along_with%2:41:00:: 1 -1 get_across%2:32:00:: 1 -1 get_across%2:31:00:: 2 -1 get_about%2:38:00:: 1 -1 get%2:35:10:: 19 -1 get%2:35:00:: 18 -1 get%2:31:03:: 20 -1 gesticulating%5:00:00:communicative:00 1 -1 germinal%5:00:00:original:00 1 -1 germ%1:09:00:: 1 -1 georgian%1:18:00:: 1 -1 georgia%1:15:02:: 2 -1 george_washington%1:18:00:: 1 -1 geometrical%3:01:00:: 1 -1 geology%1:09:00:: 1 -1 geographical_area%1:15:00:: 1 -1 geographic%3:01:00:: 1 -1 geographer%1:18:00:: 1 -1 geochemistry%1:09:00:: 1 -1 genus%1:14:00:: 2 -1 genuinely%4:02:00:: 1 -1 gentry%1:14:00:: 1 -1 gentlemanly%5:00:00:refined:01 1 -1 gentle%5:00:00:noble:02 4 -1 gentle%2:37:00:: 1 -1 gentian%1:20:00:: 1 -1 genre%1:09:00:: 1 -1 genius%1:18:01:: 3 -1 genie%1:18:00:: 1 -1 geneticist%1:18:00:: 1 -1 generously%4:02:00:: 1 -1 generous%5:00:00:ample:00 3 -1 generous%3:00:02:: 2 -1 generosity%1:07:00:: 1 -1 generator%1:06:00:: 2 -1 generate%2:36:01:: 3 -1 generate%2:29:00:: 4 -1 generalized%5:00:00:general:00 2 -1 generalization%1:09:03:: 3 -1 generalization%1:09:00:: 2 -1 general_election%1:04:00:: 1 -1 general_agreement%1:26:00:: 1 -1 general-purpose%5:00:00:general:00 1 -1 general%5:00:00:national:01 3 -1 general%5:00:00:common:01 4 -1 general%2:32:00:: 1 -1 gem%1:06:01:: 1 -1 geiger_tube%1:06:00:: 1 -1 gegenschein%1:19:00:: 1 -1 gearset%1:06:00:: 1 -1 gear%1:06:00:: 1 -1 gayly%4:02:00:: 1 -1 gay%5:00:00:joyous:00 5 -1 gay%5:00:00:homosexual:00 6 -1 gawk%2:39:00:: 1 -1 gavotte%1:04:00:: 1 -1 gaussian_shape%1:09:00:: 1 -1 gauntleted%5:00:00:gloved:00 1 -1 gauge%1:06:00:: 1 -1 gaudy%5:00:00:tasteless:02 1 -1 gaudy%5:00:00:colorful:03 2 -1 gauche%5:00:00:inelegant:00 1 -1 gathering%5:00:00:intensifying:00 1 -1 gathering%1:04:01:: 3 -1 gathered%5:00:00:concentrated:00 1 -1 gather_up%2:40:00:: 2 -1 gather%2:35:03:: 6 -1 gateway%1:06:00:: 1 -1 gate%1:06:01:: 2 -1 gastronomy%1:13:01:: 1 -1 gassing%1:22:00:: 1 -1 gassing%1:04:00:: 2 -1 gaspingly%4:02:00:: 1 -1 gasoline%1:27:00:: 1 -1 gash%2:35:00:: 1 -1 gaseous%3:00:00:: 1 -1 gas_up%2:40:00:: 1 -1 gas_thermometer%1:06:00:: 1 -1 gas_stove%1:06:00:: 1 -1 gas_lamp%1:06:00:: 1 -1 gas_gun%1:06:00:: 1 -1 gas%2:33:00:: 1 -1 gas%1:26:01:: 4 -1 gas%1:06:00:: 5 -1 garrison%2:33:00:: 1 -1 garner%2:40:01:: 1 -1 garland%2:36:00:: 1 -1 gardening%1:04:00:: 1 -1 garden_heliotrope%1:20:00:: 1 -1 garbled%5:00:00:incoherent:00 1 -1 garbed%5:00:00:clothed:00 1 -1 garbage_collector%1:18:00:: 1 -1 garbage_can%1:06:00:: 1 -1 garb%1:06:00:: 1 -1 gape%2:39:00:: 1 -1 gang%1:14:00:: 3 -1 gamma_globulin%1:27:00:: 1 -1 gamma%1:10:00:: 1 -1 gamin%1:18:00:: 1 -1 gamecock%1:05:00:: 1 -1 game_bird%1:05:00:: 1 -1 gambler%1:18:00:: 1 -1 galvanizing%1:04:00:: 1 -1 galvanism%1:19:00:: 1 -1 galvanic%3:01:00:: 1 -1 gallus%1:06:00:: 1 -1 gallows%1:06:00:: 1 -1 galloping%3:44:00:: 1 -1 galling%5:00:00:disagreeable:00 1 -1 gallbladder%1:08:00:: 1 -1 gallantry%1:07:00:: 1 -1 gallant%5:00:00:brave:00 1 -1 gallant%1:18:01:: 1 -1 gal%1:23:00:: 1 -1 gait%1:28:00:: 1 -1 gainful%5:00:00:profitable:00 1 -1 gain%2:40:00:: 8 -1 gain%1:21:00:: 4 -1 gagwriter%1:18:00:: 1 -1 gage%1:06:01:: 2 -1 gage%1:06:00:: 1 -1 gag_line%1:10:00:: 1 -1 gag%2:39:00:: 1 -1 gaelic%3:01:00:: 1 -1 gadgetry%1:06:00:: 1 -1 gable%1:06:00:: 1 -1 gabbling%5:00:00:voluble:00 1 -1 gabble%2:32:00:: 1 -1 gabardine%1:06:00:: 1 -1 fuzzy%5:00:00:indistinct:00 2 -1 fuzzed%5:00:00:hairy:00 1 -1 fuzz%1:20:00:: 1 -1 future_day%5:00:00:future:00 1 -1 fussy%5:00:00:ill-natured:00 1 -1 fussily%4:02:00:: 1 -1 fuss%2:41:00:: 2 -1 fuss%1:26:00:: 1 -1 fusiform%5:00:00:pointed:00 1 -1 fuse%2:30:03:: 2 -1 fuse%1:06:01:: 1 -1 furtively%4:02:00:: 1 -1 furtive%5:00:00:concealed:00 1 -1 further%4:02:00:: 3 -1 furry%5:00:00:hairy:00 1 -1 furrow%2:35:00:: 1 -1 furrow%1:06:00:: 1 -1 furnishings%1:06:01:: 2 -1 furnished%3:00:00:: 1 -1 furnace%1:06:00:: 1 -1 furlough%2:41:00:: 1 -1 furlough%1:28:00:: 1 -1 furlong%1:23:00:: 1 -1 furl%2:30:00:: 1 -1 fur-piece%1:06:00:: 1 -1 fur%1:05:00:: 2 -1 funny_wagon%1:06:00:: 1 -1 funny_house%1:06:00:: 1 -1 funny%4:02:01:: 1 -1 funnel%2:35:00:: 1 -1 funnel%1:25:00:: 1 -1 fungal%3:01:00:: 1 -1 fundamentalist%3:01:00:: 1 -1 fundamental%5:00:00:significant:00 3 -1 fund-raising_drive%1:04:00:: 1 -1 functioning%3:00:00:: 1 -1 functional%3:00:02:: 2 -1 function%2:33:00:: 3 -1 fun%1:04:01:: 3 -1 fumbling%5:00:00:unskilled:00 1 -1 fumble%2:38:00:: 2 -1 fumble%2:35:01:: 3 -1 fumble%1:04:00:: 1 -1 fulminate%2:32:00:: 1 -1 fully%4:02:03:: 3 -1 fullness%1:26:01:: 1 -1 fullness%1:07:02:: 2 -1 fullback%2:33:00:: 1 -1 full_of_life%5:00:00:animated:00 1 -1 full_complement%1:14:00:: 1 -1 full-of-the-moon%1:28:00:: 1 -1 full-clad%5:00:00:complete:00 1 -1 full%5:00:00:ample:00 6 -1 full%3:00:01:: 5 -1 fulfil%2:34:00:: 2 -1 fugitive%1:18:01:: 1 -1 fugal%3:01:00:: 1 -1 fueled%3:00:00:: 1 -1 fry%2:42:00:: 1 -1 fry%2:30:00:: 2 -1 frustration%1:04:02:: 2 -1 frustrated%5:00:00:defeated:00 2 -1 fruitfulness%1:07:00:: 1 -1 fruitful%5:00:00:productive:00 2 -1 fruitful%3:00:00:: 1 -1 fruit_tree%1:20:00:: 1 -1 fruit%1:11:00:: 3 -1 frozen%5:00:00:cold:02 3 -1 frowzled%5:00:00:untidy:00 1 -1 frowningly%4:02:00:: 1 -1 frown_upon%2:31:00:: 1 -1 frothing%5:00:00:agitated:02 1 -1 froth%1:17:00:: 1 -1 frostbite%1:26:00:: 1 -1 frost%2:35:00:: 1 -1 frost%1:27:00:: 1 -1 frost%1:19:00:: 2 -1 frontier_settlement%1:14:00:: 1 -1 frontier%1:15:00:: 2 -1 frontal%5:00:01:anterior:00 1 -1 front_yard%1:06:00:: 1 -1 front_line%1:15:00:: 1 -1 front%1:18:00:: 5 -1 from_the_heart%4:02:00:: 1 -1 from_start_to_finish%4:02:00:: 1 -1 from_scratch%4:02:00:: 1 -1 from_pillar_to_post%4:02:00:: 1 -1 from_nowhere%4:02:00:: 1 -1 frolic%2:38:00:: 1 -1 frolic%1:04:00:: 1 -1 frogmarch%2:38:00:: 1 -1 frizzle%2:30:00:: 1 -1 fringed%5:00:00:adorned:00 2 -1 fringe%5:00:00:peripheral:00 1 -1 fringe%1:15:00:: 2 -1 frills%1:06:00:: 1 -1 frigid%5:00:00:cold:01 2 -1 frightful%5:00:00:extraordinary:00 2 -1 frighten_away%2:37:00:: 1 -1 frighten%2:37:01:: 2 -1 friendliness%1:12:00:: 1 -1 friend%1:18:03:: 2 -1 friend%1:18:02:: 3 -1 fried_egg%1:13:00:: 1 -1 freudian%3:01:00:: 1 -1 freud%1:18:00:: 1 -1 freshness%1:07:01:: 1 -1 freshness%1:07:00:: 2 -1 freshman%1:18:01:: 2 -1 freshly%4:02:00:: 1 -1 fresh%4:02:00:: 1 -1 frequent%2:41:00:: 1 -1 frequent%2:38:00:: 2 -1 frenzied%5:00:00:wild:02 1 -1 french_window%1:06:00:: 1 -1 french_ultramarine_blue%1:27:00:: 1 -1 french_teacher%1:18:00:: 1 -1 french_horn%1:06:00:: 1 -1 french_canadian%1:18:00:: 1 -1 freighter%1:06:00:: 1 -1 freight%1:04:00:: 2 -1 freezing%5:00:00:cold:01 1 -1 freezing%1:22:00:: 1 -1 freeze%2:30:02:: 4 -1 freeze%2:30:01:: 5 -1 freewheeling%5:00:00:unrestrained:00 1 -1 freewheeler%1:18:00:: 1 -1 freelance%5:00:00:employed:00 1 -1 freedom_of_thought%1:07:00:: 1 -1 freedom%1:26:01:: 2 -1 freed%5:00:00:free:00 2 -1 free_will%1:07:00:: 2 -1 free_trader%1:18:00:: 1 -1 free_rein%1:26:00:: 1 -1 free%5:00:00:voluntary:01 7 -1 free%5:00:00:unfixed:00 8 -1 free%2:41:07:: 4 -1 free%2:41:02:: 6 -1 free%2:41:01:: 5 -1 free%2:35:01:: 7 -1 free%2:32:00:: 8 -1 freckle%1:08:00:: 1 -1 frayed%5:00:01:worn:00 1 -1 fraternity%1:14:01:: 1 -1 fraternity%1:14:00:: 2 -1 fraternisation%1:04:00:: 1 -1 frantic%5:00:00:wild:02 2 -1 frangipani%1:20:00:: 1 -1 franc%1:23:00:: 1 -1 framing%1:04:00:: 1 -1 framework%1:07:00:: 2 -1 framed%3:00:00:: 1 -1 frame_up%2:36:00:: 1 -1 frame%2:41:00:: 3 -1 frame%2:32:00:: 4 -1 frame%2:31:00:: 5 -1 frambesia%1:26:00:: 1 -1 fragrance%1:09:00:: 1 -1 fragmented%5:00:00:broken:01 1 -1 fragmentation%1:04:00:: 1 -1 fragment%1:06:00:: 2 -1 fracture%2:30:01:: 1 -1 fractional%3:00:00:: 1 -1 fox%1:18:00:: 2 -1 fowl%1:05:00:: 1 -1 fourth_of_july%1:28:00:: 1 -1 fourth%1:24:00:: 1 -1 fourteenth%5:00:00:ordinal:00 1 -1 fourteen%1:23:00:: 1 -1 foursome%1:14:00:: 1 -1 fourfold%5:00:01:multiple:00 1 -1 four_hundred%1:14:00:: 1 -1 four-sided%5:00:00:multilateral:00 1 -1 fountainhead%1:10:00:: 1 -1 foundry%1:06:00:: 1 -1 founder%1:26:00:: 1 -1 founder%1:18:00:: 2 -1 foundation%1:06:00:: 3 -1 found%3:00:00:: 1 -1 found%1:21:00:: 1 -1 fouled%5:00:00:dirty:01 1 -1 foul_up%2:41:00:: 1 -1 foul_out%2:35:00:: 1 -1 foul%5:00:00:unfair:00 3 -1 foul%5:00:00:offensive:01 1 -1 foul%5:00:00:malodorous:00 2 -1 foul%2:33:01:: 1 -1 foul%2:30:03:: 2 -1 fostering%1:10:00:: 1 -1 foster_parent%1:18:00:: 1 -1 foster_home%1:14:00:: 1 -1 forwarding%1:04:01:: 1 -1 forward-moving%5:00:00:progressive:01 1 -1 forward%5:00:00:front(a):00 7 -1 forward%5:00:00:advancing:00 2 -1 fortune%1:26:00:: 4 -1 fortunate%5:00:00:blessed:00 2 -1 fortified%5:00:00:protected:00 1 -1 fortification%1:06:00:: 1 -1 forties%1:28:00:: 1 -1 forthwith%4:02:00:: 1 -1 forth%4:02:02:: 3 -1 forth%4:02:01:: 2 -1 forte-piano%1:06:00:: 1 -1 forte%1:07:01:: 1 -1 fort%1:06:00:: 2 -1 forswear%2:32:00:: 1 -1 formulation%1:10:00:: 3 -1 formulate%2:36:01:: 4 -1 formula%1:10:03:: 4 -1 formula%1:09:00:: 5 -1 formative%1:10:00:: 1 -1 formally%4:02:00:: 2 -1 formalized%3:01:00:: 1 -1 formal_logic%1:09:00:: 1 -1 form_of_government%1:14:00:: 1 -1 form%1:14:02:: 9 -1 form%1:10:02:: 10 -1 form%1:07:03:: 11 -1 forked%5:00:00:divided:00 1 -1 fork%1:25:00:: 3 -1 fork%1:06:02:: 4 -1 forgotten%5:00:00:unrecoverable:00 2 -1 forgo%2:41:00:: 1 -1 forgive%2:41:00:: 2 -1 forgetful%3:00:01:: 1 -1 forge%2:36:08:: 3 -1 forge%2:36:01:: 2 -1 forge%2:36:00:: 1 -1 forfeit%5:00:00:lost:03 1 -1 foresight%1:07:00:: 1 -1 foreshorten%2:30:00:: 1 -1 foreseeable%5:00:00:predictable:00 1 -1 forerunner%1:18:00:: 1 -1 forerunner%1:10:00:: 2 -1 forensic%5:00:00:rhetorical:00 1 -1 foremost%5:00:00:front(a):00 3 -1 foreknowledge%1:10:00:: 1 -1 foreknow%2:31:00:: 1 -1 foreign_office%1:14:00:: 1 -1 foreign_exchange%1:21:00:: 1 -1 foreign%5:00:00:adulterating:00 4 -1 forefather%1:18:00:: 1 -1 foreclose%2:41:00:: 1 -1 foreclose%2:40:00:: 2 -1 forecasting%1:10:00:: 1 -1 forecast%2:32:01:: 3 -1 forecast%1:10:00:: 1 -1 foreboding%1:12:00:: 1 -1 forebear%2:42:00:: 1 -1 forearm%1:08:00:: 1 -1 forceless%3:00:00:: 1 -1 forced_sale%1:10:00:: 1 -1 forced%5:00:00:involuntary:01 2 -1 forced%3:44:00:: 1 -1 force%2:35:05:: 8 -1 force%2:35:01:: 7 -1 force%1:18:00:: 7 -1 forbid%2:41:03:: 2 -1 foraging%1:04:00:: 1 -1 for_sure%5:00:00:unquestionable:00 1 -1 for_one%4:02:00:: 1 -1 for_keeps%4:02:00:: 1 -1 for_good_measure%4:02:00:: 1 -1 for_good%4:02:00:: 1 -1 for_all_the_world%4:02:00:: 1 -1 for_all_practical_purposes%4:02:00:: 1 -1 foppish%5:00:00:elegant:00 1 -1 footprint%1:10:00:: 1 -1 footpath%1:06:00:: 1 -1 footnote%1:10:00:: 1 -1 footloose%5:00:00:free:00 1 -1 footing%1:26:00:: 1 -1 foothills%1:17:00:: 1 -1 footbridge%1:06:00:: 1 -1 footage%1:06:00:: 1 -1 foot_soldier%1:18:00:: 1 -1 foot%2:40:00:: 1 -1 foot%1:04:00:: 7 -1 foolproof%5:00:00:infallible:00 1 -1 fooling%5:00:00:light:02 1 -1 foolhardy%5:00:00:bold:00 1 -1 fool%5:00:00:stupid:00 2 -1 fool%5:00:00:foolish:00 1 -1 fool%1:18:02:: 3 -1 foodstuff%1:06:00:: 1 -1 fond%5:00:01:loving:00 2 -1 fond%5:00:00:inclined(p):02 4 -1 folly%1:04:01:: 2 -1 following%1:14:00:: 1 -1 follow_suit%2:42:00:: 1 -1 follow-through%1:04:00:: 1 -1 follow%2:36:01:: 15 -1 follow%2:30:01:: 16 -1 follicular%3:01:00:: 1 -1 folks%1:14:00:: 1 -1 folk_writer%1:18:00:: 1 -1 folk_poet%1:18:00:: 1 -1 folk_music%1:10:00:: 1 -1 folk_dance%1:04:00:: 1 -1 folk%5:00:00:nonclassical:00 1 -1 folk%1:14:02:: 3 -1 folk%1:14:01:: 2 -1 foliage%1:06:00:: 2 -1 folding_chair%1:06:00:: 1 -1 folded-up%5:00:00:folded:00 1 -1 fold_up%2:35:00:: 1 -1 fold%2:30:00:: 3 -1 fold%1:14:00:: 2 -1 foil%2:42:00:: 1 -1 foil%2:41:00:: 2 -1 foible%1:07:00:: 1 -1 focusing%1:09:00:: 1 -1 focus%2:31:01:: 3 -1 focus%1:26:00:: 4 -1 focally%4:02:00:: 1 -1 foamy%5:00:00:unhealthy:00 2 -1 foam%2:30:05:: 1 -1 foam%1:27:00:: 2 -1 fm%1:10:00:: 1 -1 flyway%1:15:00:: 1 -1 flying%5:00:00:winged:00 1 -1 flying%5:00:00:moving:02 2 -1 flying%5:00:00:air(a):00 5 -1 flyer%1:10:00:: 1 -1 fly_open%2:35:00:: 1 -1 fly_in_the_ointment%1:07:00:: 1 -1 fly_high%2:37:00:: 1 -1 fly%2:38:06:: 8 -1 fly%2:38:05:: 9 -1 fly%1:06:01:: 2 -1 fly%1:06:00:: 3 -1 fly%1:04:00:: 4 -1 fluttering%5:00:02:moving:02 2 -1 fluttering%5:00:00:moving:02 1 -1 flutter%2:38:02:: 1 -1 flutter%2:38:01:: 2 -1 flutter%1:04:00:: 1 -1 flute%1:06:00:: 1 -1 fluster%2:37:01:: 1 -1 flush%5:00:00:even:01 1 -1 flush%1:28:00:: 1 -1 flush%1:26:00:: 2 -1 flurry%1:19:00:: 2 -1 fluoroboride%1:27:00:: 1 -1 fluorine%1:27:00:: 1 -1 fluorescent%5:00:00:light:06 1 -1 fluoresce%2:39:00:: 1 -1 fluid%5:00:00:changeable:00 1 -1 fluid%1:27:00:: 2 -1 fluffy%5:00:00:soft:01 1 -1 fluff%1:27:00:: 1 -1 fluent%5:00:00:graceful:00 1 -1 flub%2:41:00:: 1 -1 flowing%1:11:00:: 1 -1 flowering%1:22:01:: 2 -1 flowerbed%1:06:00:: 1 -1 flower%2:30:00:: 1 -1 flow_out%2:30:00:: 1 -1 flow_from%2:42:00:: 1 -1 flow%2:38:02:: 3 -1 flow%1:26:00:: 5 -1 flow%1:14:00:: 6 -1 flourishing%5:00:00:healthy:00 1 -1 flourish%2:40:00:: 2 -1 flourish%1:10:02:: 1 -1 flounce%2:38:00:: 1 -1 florist%1:18:00:: 1 -1 florist%1:06:00:: 2 -1 floridian%1:18:00:: 1 -1 florid%5:00:00:fancy:00 1 -1 florentine%3:01:00:: 1 -1 florence%1:15:00:: 1 -1 floral%5:00:00:patterned:00 1 -1 flooring%1:06:00:: 1 -1 floorboard%1:06:00:: 1 -1 floor_plan%1:06:00:: 1 -1 floor_covering%1:06:00:: 1 -1 floor_board%1:06:00:: 1 -1 floor%1:17:00:: 5 -1 floodhead%1:19:00:: 1 -1 flooded%5:00:01:full:00 1 -1 flood%1:04:00:: 5 -1 flog%2:35:00:: 1 -1 flock%1:23:00:: 3 -1 flock%1:14:03:: 4 -1 flocculation%1:22:00:: 1 -1 flocculate%2:42:00:: 1 -1 flit%2:38:00:: 1 -1 flirt_with%2:31:00:: 1 -1 flirt%2:32:00:: 1 -1 flip%2:35:01:: 2 -1 flip%1:04:03:: 1 -1 flint%1:27:00:: 1 -1 fling%2:38:00:: 2 -1 flimsy%5:00:02:weak:00 2 -1 flight_of_stairs%1:06:00:: 1 -1 flight%1:09:00:: 6 -1 flick%2:39:10:: 2 -1 flick%2:39:00:: 1 -1 flick%2:38:00:: 3 -1 flick%2:35:03:: 4 -1 flexible%5:00:00:elastic:00 4 -1 flexible%5:00:00:adaptable:00 3 -1 flex%2:38:01:: 1 -1 fleshy%5:00:00:fat:01 1 -1 fleeting%5:00:00:short:02 2 -1 fleeting%5:00:00:moving:02 1 -1 fleet%1:14:03:: 1 -1 fleeing%5:00:00:moving:02 1 -1 fledgling%5:00:00:inexperienced:00 2 -1 fledgling%5:00:00:fledged:00 1 -1 fledgling%1:18:00:: 1 -1 flecked%5:00:00:patterned:00 1 -1 fleck%1:17:00:: 1 -1 flea_market%1:15:00:: 1 -1 flea%1:05:00:: 1 -1 flattened%5:00:00:planar:00 1 -1 flatten%2:30:00:: 2 -1 flats%1:06:00:: 1 -1 flat_bench%1:06:00:: 1 -1 flat-footed%5:00:00:footed:00 1 -1 flat%4:02:01:: 1 -1 flat%3:00:03:: 5 -1 flat%1:06:04:: 2 -1 flashy%5:00:00:tasteless:02 1 -1 flashy%5:00:00:colorful:03 2 -1 flashlight_battery%1:06:00:: 1 -1 flashing%5:00:00:bright:00 1 -1 flashing%1:11:00:: 1 -1 flashback%1:10:00:: 1 -1 flash_flood%1:19:00:: 1 -1 flash%2:39:02:: 6 -1 flash%1:11:01:: 3 -1 flash%1:09:00:: 4 -1 flaring%5:00:00:increasing:00 1 -1 flare_up%2:43:00:: 1 -1 flare_up%2:30:00:: 2 -1 flare%2:43:00:: 1 -1 flare%2:37:00:: 2 -1 flare%2:30:00:: 3 -1 flare%1:25:00:: 1 -1 flare%1:22:00:: 2 -1 flare%1:10:00:: 3 -1 flapper%1:18:00:: 1 -1 flap%2:38:03:: 3 -1 flaming%5:00:00:lighted:00 2 -1 flamboyantly%4:02:00:: 1 -1 flake%2:35:02:: 1 -1 flair%1:07:00:: 2 -1 flailing%5:00:00:moving:02 1 -1 flail%2:35:00:: 1 -1 flail%1:06:00:: 1 -1 flagellated_protozoan%1:05:00:: 1 -1 flag_of_truce%1:06:00:: 1 -1 flag-waver%1:18:00:: 1 -1 flag%2:32:00:: 1 -1 flag%2:30:00:: 2 -1 flag%1:20:00:: 3 -1 fizzle%2:42:00:: 1 -1 fixture%1:06:00:: 1 -1 fixing%1:04:00:: 1 -1 fixer%1:18:00:: 1 -1 fix%2:30:00:: 8 -1 fix%2:29:00:: 9 -1 fitness%1:26:00:: 2 -1 fit_out%2:40:00:: 1 -1 fit%2:42:03:: 7 -1 fit%2:40:00:: 8 -1 fistfight%2:33:00:: 1 -1 fistfight%1:04:00:: 1 -1 fishwife%1:18:00:: 1 -1 fishmonger%1:18:00:: 1 -1 fishing_tackle%1:06:00:: 1 -1 fishing_rod%1:06:00:: 1 -1 fishing_net%1:06:00:: 1 -1 fisher%1:18:00:: 1 -1 fish%2:33:00:: 2 -1 fish%1:18:00:: 3 -1 fiscal_policy%1:10:00:: 1 -1 first_off%4:02:00:: 1 -1 first_name%1:10:00:: 1 -1 first_moment%1:09:00:: 1 -1 first_class%1:07:00:: 1 -1 first_baseman%1:18:00:: 1 -1 first_aid%1:04:00:: 1 -1 first-rate%5:00:00:superior:02 1 -1 first-nighter%1:18:00:: 1 -1 first-class%5:00:01:superior:02 1 -1 first%1:28:00:: 3 -1 first%1:04:00:: 4 -1 firmness%1:07:03:: 1 -1 firmness%1:07:01:: 2 -1 firm%5:00:00:healthy:00 8 -1 firm%4:02:00:: 1 -1 firing_range%1:06:00:: 1 -1 firewood%1:27:00:: 1 -1 firewall%1:04:00:: 1 -1 fireside%1:15:00:: 1 -1 firepower%1:07:00:: 1 -1 fireman%1:04:00:: 1 -1 fire_company%1:14:00:: 1 -1 fire_and_brimstone%1:26:00:: 1 -1 fire%2:38:02:: 6 -1 fire%2:37:00:: 7 -1 fire%2:30:01:: 8 -1 finn%1:18:00:: 1 -1 finishing%1:07:00:: 1 -1 finish_up%2:30:02:: 2 -1 finish_up%2:30:00:: 1 -1 finicky%5:00:00:fastidious:00 1 -1 fingerprinting%1:04:00:: 1 -1 fingerprint_specialist%1:18:00:: 1 -1 fingerprint_man%1:18:00:: 1 -1 fingerprint_expert%1:18:00:: 1 -1 fingerpaint%2:36:00:: 1 -1 fingernail%1:08:00:: 1 -1 fingering%1:04:02:: 1 -1 fingered%3:00:00:: 1 -1 finger%2:35:05:: 2 -1 finger%2:35:00:: 1 -1 fineness%1:07:03:: 1 -1 finely%4:02:03:: 3 -1 fine-looking%5:00:00:beautiful:00 1 -1 fine-grained%5:00:02:fine:00 1 -1 fine%5:00:00:delicate:00 10 -1 fine%4:02:02:: 2 -1 fine%3:00:00:: 9 -1 fine%1:04:00:: 1 -1 finding%1:17:00:: 3 -1 find_out%2:32:01:: 3 -1 find_oneself%2:30:00:: 1 -1 find_fault_with%2:32:01:: 1 -1 financial_aid%1:04:00:: 1 -1 financed%5:00:00:supported:02 1 -1 final_period%1:28:00:: 1 -1 filter_paper%1:27:00:: 1 -1 filter%1:06:01:: 2 -1 filming%1:04:00:: 1 -1 film_maker%1:18:00:: 1 -1 film_clip%1:10:00:: 1 -1 filly%1:05:00:: 1 -1 fillip%1:09:00:: 1 -1 fill_up%2:30:01:: 2 -1 fill_out%2:30:00:: 2 -1 fill_in%2:36:00:: 2 -1 fill%2:41:01:: 6 -1 fill%2:34:01:: 7 -1 fill%2:34:00:: 8 -1 fill%2:30:02:: 9 -1 filipino%1:18:00:: 1 -1 file_cabinet%1:06:00:: 1 -1 file_away%2:32:00:: 1 -1 file%2:32:00:: 5 -1 file%1:14:00:: 2 -1 file%1:06:01:: 3 -1 file%1:06:00:: 4 -1 figuring%1:09:00:: 1 -1 figurine%1:06:00:: 1 -1 figured_bass%1:10:00:: 1 -1 figure_of_speech%1:10:00:: 1 -1 figure%2:31:02:: 5 -1 figure%1:07:01:: 9 -1 figuratively%4:02:00:: 1 -1 figural_blindness%1:26:00:: 1 -1 fighting%5:00:00:unpeaceful:00 2 -1 fighter%1:18:02:: 3 -1 fight_down%2:33:00:: 1 -1 fig_tree%1:20:00:: 1 -1 fifty-fifty%5:00:00:equal:00 1 -1 fifty-cent_piece%1:21:00:: 1 -1 fifty%1:23:00:: 1 -1 fiftieth%5:00:00:ordinal:00 1 -1 fifth%1:23:01:: 1 -1 fifteen%1:23:00:: 1 -1 fierceness%1:07:00:: 1 -1 fierce%5:00:00:merciless:00 3 -1 fiendish%5:00:00:evil:00 1 -1 fiend%1:18:02:: 2 -1 fieldstone%1:27:00:: 1 -1 fielding_average%1:24:00:: 1 -1 fielding%1:04:00:: 1 -1 fieldhand%1:18:00:: 1 -1 fielder%1:18:00:: 1 -1 field_sport%1:04:00:: 1 -1 field_of_operation%1:04:00:: 1 -1 field_glasses%1:06:00:: 1 -1 field_general%1:18:00:: 1 -1 field-test%2:41:00:: 1 -1 field%2:33:01:: 1 -1 field%2:33:00:: 2 -1 field%1:14:02:: 13 -1 field%1:14:01:: 12 -1 fidelity%1:07:02:: 1 -1 fiddle%1:06:00:: 1 -1 fictive%5:00:00:counterfeit:00 1 -1 fibrocalcific%3:01:00:: 1 -1 fiberglass%1:27:00:: 1 -1 feudal%3:01:00:: 1 -1 fetid%5:00:00:malodorous:00 1 -1 fetching%5:00:00:attractive:01 1 -1 fetch%2:37:00:: 2 -1 festering%5:00:00:septic:00 1 -1 fervor%1:12:00:: 1 -1 fervently%4:02:00:: 1 -1 fertilizer%1:27:00:: 1 -1 fertilize%2:30:00:: 1 -1 fertile%5:00:02:productive:00 2 -1 fertile%3:00:00:: 1 -1 ferry%2:38:02:: 1 -1 ferret_out%2:31:00:: 1 -1 ferocity%1:07:00:: 1 -1 ferociously%4:02:00:: 1 -1 ferocious%5:00:00:violent:00 1 -1 fermentation%1:26:00:: 1 -1 fermentation%1:22:00:: 2 -1 ferment%1:26:00:: 1 -1 fender%1:06:01:: 1 -1 fence%2:35:00:: 1 -1 femininity%1:07:00:: 1 -1 feminine%3:00:02:: 2 -1 felt%5:00:00:detected:00 1 -1 felon%1:18:00:: 1 -1 fellowship%1:26:00:: 2 -1 fellow_worker%1:18:00:: 1 -1 fellow_feeling%1:12:00:: 1 -1 felicity%1:07:00:: 1 -1 felicitate%2:32:00:: 1 -1 feint%2:36:00:: 1 -1 feign%2:32:00:: 1 -1 feeling_of_identity%1:12:00:: 1 -1 feeling%1:09:02:: 5 -1 feeler%1:05:01:: 1 -1 feel_for%2:37:00:: 1 -1 feel%2:40:00:: 11 -1 feel%1:26:00:: 2 -1 feel%1:07:00:: 3 -1 feeder%1:05:00:: 1 -1 feedback%1:22:00:: 1 -1 feedback%1:10:00:: 2 -1 feed_upon%2:34:00:: 1 -1 feed_back%2:40:00:: 1 -1 feed%2:34:02:: 7 -1 feebleness%1:26:00:: 1 -1 fedora%1:06:00:: 1 -1 federalize%2:30:00:: 1 -1 federal_soldier%1:18:00:: 1 -1 federal_housing_administration%1:14:00:: 1 -1 federal_department%1:14:00:: 1 -1 federal_court%1:14:00:: 1 -1 fecundity%1:09:00:: 1 -1 fecund%5:00:00:fertile:00 1 -1 featureless%5:00:00:plain:01 1 -1 featured%5:00:00:faced:00 2 -1 feathered%5:00:00:adorned:00 1 -1 feather%2:35:01:: 1 -1 feast%2:34:00:: 1 -1 feast%1:14:00:: 1 -1 feast%1:11:00:: 2 -1 feast%1:04:00:: 3 -1 fearless%3:00:00:: 1 -1 fearfully%4:02:01:: 2 -1 fearful%5:00:00:alarming:00 1 -1 fear%2:37:02:: 3 -1 faze%2:37:00:: 1 -1 fawn%1:07:00:: 1 -1 favorite%5:00:00:popular:00 1 -1 favorite%5:00:00:loved:00 2 -1 favorite%1:18:00:: 2 -1 favorable_position%1:07:00:: 1 -1 favorable%5:00:00:propitious:00 5 -1 favorable%5:00:00:friendly:01 4 -1 favorable%3:00:01:: 3 -1 favor%2:41:03:: 4 -1 favor%2:41:01:: 3 -1 favor%1:09:00:: 3 -1 fauteuil%1:06:00:: 1 -1 fault%2:32:00:: 1 -1 fault%1:07:00:: 3 -1 faucet%1:06:01:: 1 -1 fatty%3:00:00:: 1 -1 fattening%5:00:00:finished:02 1 -1 fatten%2:34:00:: 1 -1 fatigue%1:26:01:: 2 -1 father-god%1:18:00:: 1 -1 father%1:18:05:: 5 -1 father%1:18:02:: 6 -1 fatally%4:02:00:: 1 -1 fat%1:08:00:: 2 -1 fastened%5:00:00:steady:00 2 -1 fastened%3:00:00:: 1 -1 fast-growing%5:00:00:invasive:00 1 -1 fast-flying%5:00:00:moving:02 1 -1 fast%4:02:02:: 2 -1 fast%1:04:00:: 1 -1 fashions%1:06:00:: 1 -1 fascist%3:01:00:: 1 -1 fascinatingly%4:02:00:: 1 -1 fascinated%5:00:02:enchanted:00 1 -1 fasciculation%1:26:00:: 1 -1 farthest%4:02:00:: 1 -1 farther%5:00:02:far:00 2 -1 farmland%1:15:00:: 1 -1 farm_out%2:41:00:: 1 -1 farm_out%2:40:00:: 2 -1 farm_club%1:14:00:: 1 -1 farm_building%1:06:00:: 1 -1 fare%2:42:00:: 1 -1 far-famed%5:00:00:known:00 1 -1 far%5:00:00:right:00 3 -1 fantods%1:26:00:: 1 -1 fantasy_life%1:09:00:: 1 -1 fantasy%1:10:00:: 2 -1 fantasy%1:09:01:: 3 -1 fantastic%5:00:00:unreal:00 4 -1 fantasist%1:18:00:: 1 -1 fantasia%1:10:00:: 1 -1 fanfare%1:10:00:: 1 -1 fancy-free%5:00:00:uncommitted:00 1 -1 fancy%2:37:00:: 2 -1 fancy%1:09:02:: 1 -1 fancy%1:09:01:: 2 -1 fanciful%5:00:00:creative:00 1 -1 fanatic%1:18:00:: 1 -1 fan%2:38:00:: 3 -1 familiarly%4:02:00:: 1 -1 familiarity%1:07:02:: 3 -1 familiarity%1:07:01:: 2 -1 familiar%5:00:00:informed:00 3 -1 familiar%3:00:02:: 2 -1 faltering%5:00:00:unsteady:00 1 -1 faltering%1:04:00:: 1 -1 falter%2:38:00:: 3 -1 falter%2:32:00:: 4 -1 falsity%1:26:00:: 1 -1 falsity%1:10:00:: 2 -1 false%5:00:00:incorrect:00 2 -1 fallow%5:00:00:unplowed:00 1 -1 falling_off%1:22:00:: 1 -1 falling%5:00:00:decreasing:00 2 -1 falling%3:00:03:: 1 -1 fallen%5:00:00:down:00 1 -1 fall_short%2:37:12:: 1 -1 fall_over%2:29:00:: 1 -1 fall_out%2:32:00:: 1 -1 fall_open%2:38:00:: 1 -1 fall_off%2:35:00:: 1 -1 fall_in%2:41:02:: 2 -1 fall_for%2:37:00:: 1 -1 fall_back%2:33:00:: 4 -1 fall%2:38:01:: 15 -1 fall%1:11:04:: 6 -1 fall%1:11:01:: 7 -1 fall%1:04:02:: 8 -1 faker%1:18:00:: 1 -1 fake%2:36:00:: 1 -1 fake%1:06:00:: 1 -1 faithful%5:00:00:accurate:00 2 -1 faithful%1:14:01:: 1 -1 faith%1:04:00:: 4 -1 fairyland%1:09:00:: 1 -1 fairy%3:01:00:: 1 -1 fairy%1:18:00:: 1 -1 fairness%1:07:00:: 1 -1 fair%5:00:02:beautiful:00 5 -1 fair%5:00:00:beautiful:00 6 -1 fair%2:35:00:: 1 -1 fair%1:04:01:: 1 -1 faint%5:00:00:ill:01 4 -1 faint%2:29:00:: 1 -1 failure%1:04:01:: 5 -1 fail%2:41:08:: 5 -1 faery%3:01:00:: 1 -1 fadeout%1:11:00:: 1 -1 fade_out%2:30:00:: 1 -1 factual%5:00:00:real:00 1 -1 factor%1:18:00:: 4 -1 facsimile%1:06:01:: 1 -1 facilitatory%5:00:00:helpful:00 1 -1 facetiously%4:02:00:: 1 -1 facetious%5:00:00:humorous:00 1 -1 face_to_face%4:02:00:: 1 -1 face_saving%1:04:00:: 1 -1 face_powder%1:06:00:: 1 -1 face_lifting%1:04:01:: 1 -1 face-saving%5:00:00:helpful:00 1 -1 face%1:15:00:: 7 -1 face%1:08:01:: 8 -1 face%1:06:01:: 9 -1 fabulous%5:00:00:pleasing:00 1 -1 fabric%1:07:00:: 2 -1 eyestrain%1:26:00:: 1 -1 eyeshadow%1:06:00:: 1 -1 eyepiece%1:06:00:: 1 -1 eyelike%5:00:00:eyed:00 1 -1 eyeball%1:08:00:: 1 -1 eye_socket%1:08:00:: 1 -1 eye-deceiving%5:00:00:unreal:00 1 -1 eye-beaming%1:04:00:: 1 -1 exultantly%4:02:00:: 1 -1 exude%2:29:00:: 1 -1 extrude%2:36:00:: 1 -1 extremum%1:15:00:: 1 -1 extremity%1:08:00:: 1 -1 extremely%4:02:05:: 3 -1 extreme%5:00:00:distant:01 4 -1 extravaganza%1:04:00:: 1 -1 extravagantly%4:02:02:: 1 -1 extravagant%5:00:00:wasteful:00 2 -1 extrapolated%3:44:00:: 1 -1 extrapolate%2:32:00:: 1 -1 extrapolate%2:31:01:: 3 -1 extrapolate%2:31:00:: 2 -1 extraordinary%5:00:00:unusual:00 3 -1 extraordinarily%4:02:00:: 1 -1 extraneousness%1:24:00:: 1 -1 extraneous%5:00:02:extrinsic:00 2 -1 extraneous%5:00:00:irrelevant:00 1 -1 extramarital%5:00:00:illicit:00 1 -1 extralegal%5:00:00:illegal:00 1 -1 extract%2:40:00:: 2 -1 extract%2:36:00:: 3 -1 extract%2:30:00:: 4 -1 extinguished%5:00:00:destroyed:00 1 -1 extinguish%2:30:00:: 1 -1 external%5:00:00:exogenous:00 4 -1 extern%1:18:00:: 1 -1 exterior%1:15:01:: 1 -1 exterior%1:15:00:: 2 -1 extension%1:04:01:: 5 -1 extension%1:04:00:: 4 -1 extended%5:00:00:considerable:00 3 -1 extended%3:00:00:: 2 -1 extend%2:30:09:: 9 -1 extend%2:30:02:: 10 -1 extant%3:00:00:: 1 -1 expurgation%1:04:00:: 1 -1 expunge%2:35:00:: 1 -1 expulsion%1:04:01:: 1 -1 expropriated%5:00:00:taken:00 1 -1 expressly%4:02:00:: 1 -1 expressively%4:02:00:: 1 -1 expressionistic%3:01:00:: 1 -1 expressible%3:00:00:: 1 -1 expressed%3:00:00:: 2 -1 express_emotion%2:37:00:: 1 -1 express%5:00:00:explicit:00 1 -1 express%4:02:00:: 1 -1 expository%5:00:00:instructive:00 1 -1 exposed%5:00:00:unclothed:00 2 -1 expose%2:32:02:: 6 -1 exporter%1:18:00:: 1 -1 export%1:06:00:: 1 -1 exponential_function%1:24:00:: 1 -1 explosively%4:02:00:: 1 -1 exploratory%3:00:00:: 1 -1 exploding%5:00:00:increasing:00 1 -1 explicitly%4:02:00:: 1 -1 expletive%1:10:01:: 1 -1 explanatory%5:00:00:instructive:00 1 -1 expiate%2:41:00:: 1 -1 expert%5:00:00:professional:02 2 -1 experimentalism%1:09:01:: 1 -1 experiential%5:00:00:empirical:00 2 -1 expense_account%1:21:00:: 1 -1 expense%1:21:01:: 3 -1 expended%5:00:00:exhausted:00 1 -1 expendable%3:00:00:: 1 -1 expel%2:35:00:: 2 -1 expedition%1:04:02:: 4 -1 expedient%3:00:00:: 1 -1 expected%5:00:00:unsurprising:00 2 -1 expectancy%1:12:00:: 1 -1 expectancy%1:09:00:: 2 -1 expectable%5:00:00:expected:00 1 -1 expansiveness%1:07:02:: 1 -1 expansiveness%1:07:01:: 2 -1 expansively%4:02:01:: 1 -1 expanse%1:07:00:: 2 -1 exotic_dancer%1:18:04:: 1 -1 exorcise%2:35:00:: 1 -1 exonerate%2:32:00:: 1 -1 exodus%1:04:00:: 1 -1 exit%1:06:00:: 1 -1 existentialist%1:18:00:: 1 -1 existent%3:00:00:: 1 -1 existence%1:17:00:: 2 -1 exile%2:41:00:: 1 -1 exigency%1:26:00:: 1 -1 exhumation%1:04:00:: 1 -1 exhilarating%5:00:00:invigorating:00 1 -1 exhibition_game%1:04:00:: 1 -1 exhibit%1:10:00:: 1 -1 exhaustively%4:02:00:: 1 -1 exhaustive%5:00:00:complete:00 1 -1 exhausting%5:00:00:debilitating:00 1 -1 exhaust%2:40:00:: 3 -1 exert%2:41:00:: 3 -1 exercising%1:04:00:: 1 -1 exempt%2:41:00:: 1 -1 exemplar%1:09:00:: 1 -1 executive_secretary%1:18:00:: 1 -1 executive_branch%1:14:00:: 1 -1 executive%1:14:01:: 2 -1 execute%2:41:01:: 3 -1 execute%2:36:00:: 4 -1 excuse%2:32:01:: 4 -1 excursus%1:10:00:: 1 -1 excursion%1:04:00:: 1 -1 excruciating%5:00:00:painful:00 1 -1 excretion%1:22:00:: 1 -1 excoriate%2:32:00:: 1 -1 exclusion%1:26:00:: 1 -1 exclaiming%1:10:00:: 1 -1 excise_tax%1:21:00:: 1 -1 excise%2:35:00:: 1 -1 exchange%2:30:01:: 3 -1 exchange%1:06:01:: 5 -1 except%2:32:00:: 1 -1 except%2:31:00:: 2 -1 excelsior%1:27:00:: 1 -1 excellently%4:02:00:: 1 -1 exboyfriend%1:18:00:: 1 -1 exasperating%5:00:00:displeasing:00 1 -1 exasperate%2:37:00:: 1 -1 examine%2:41:00:: 5 -1 examination%1:10:01:: 3 -1 examination%1:10:00:: 2 -1 exalted%5:00:00:high:02 2 -1 exalt%2:37:01:: 2 -1 exaggeration%1:10:01:: 1 -1 exaggeration%1:04:00:: 2 -1 exact%2:32:00:: 1 -1 ex-mayor%1:18:00:: 1 -1 ex-husband%1:18:00:: 1 -1 ex-gambler%1:18:00:: 1 -1 evolve%2:30:03:: 4 -1 evolutionary%3:01:00:: 1 -1 evocation%1:09:00:: 1 -1 evildoer%1:18:00:: 1 -1 evil%5:00:00:wicked:00 2 -1 evil%5:00:00:malign:00 3 -1 evidential%5:00:00:significant:00 1 -1 evident%5:00:00:noticeable:00 2 -1 evidence%2:32:02:: 3 -1 every_year%4:02:00:: 1 -1 every_which_way%4:02:01:: 1 -1 every_week%4:02:00:: 1 -1 every_so_often%4:02:00:: 1 -1 every_last%5:00:00:all(a):00 1 -1 every_bit%4:02:00:: 1 -1 everlasting%5:00:00:permanent:00 1 -1 everlasting%5:00:00:cursed:00 2 -1 eventuate%2:42:00:: 1 -1 evensong%1:28:00:: 1 -1 even_as%4:02:01:: 1 -1 evaporative_cooler%1:06:00:: 1 -1 evangelist%1:18:00:: 1 -1 evaluative%5:00:00:critical:02 1 -1 evade%2:38:00:: 2 -1 evacuation%1:04:01:: 2 -1 evacuated%5:00:00:exhausted:00 1 -1 evacuate%2:38:01:: 1 -1 evacuate%2:30:00:: 2 -1 eutectic%1:27:00:: 1 -1 europeanize%2:30:01:: 1 -1 europeanization%1:04:00:: 1 -1 european_country%1:15:00:: 1 -1 eurasian%3:01:00:: 1 -1 euphoric%3:00:00:: 1 -1 euphoria%1:12:00:: 1 -1 eugenic%3:01:00:: 1 -1 etymological%3:01:00:: 1 -1 etiquette%1:10:00:: 1 -1 ethiopian%1:18:00:: 1 -1 ethics%1:16:00:: 1 -1 ethical_motive%1:16:00:: 1 -1 ethical%5:00:00:right:01 3 -1 ethanol%1:27:00:: 1 -1 eternity%1:28:01:: 3 -1 eternally%4:02:00:: 1 -1 eternal%5:00:00:long:02 3 -1 eternal%5:00:00:immortal:00 2 -1 etch%2:36:00:: 1 -1 estuary%1:17:00:: 1 -1 estranging%5:00:00:disorienting:00 1 -1 estrangement%1:26:00:: 1 -1 estranged%5:00:00:unloved:00 1 -1 esthetic%1:09:00:: 1 -1 ester%1:27:00:: 1 -1 esteem%2:31:01:: 1 -1 establishment%1:14:01:: 5 -1 established%5:00:00:settled:02 3 -1 established%5:00:00:orthodox:00 4 -1 establish%2:36:10:: 7 -1 establish%2:31:03:: 8 -1 essential%1:17:00:: 1 -1 essay%2:41:00:: 1 -1 espionage_agent%1:18:00:: 1 -1 espionage%1:04:00:: 1 -1 esoteric%3:00:00:: 1 -1 escort%1:04:00:: 2 -1 escaped%5:00:00:free:00 1 -1 escape%1:04:04:: 5 -1 escape%1:04:03:: 4 -1 escape%1:04:01:: 3 -1 escapade%1:04:01:: 1 -1 erythroid%3:01:00:: 1 -1 eruption%1:11:00:: 1 -1 erupt%2:43:00:: 3 -1 erupt%2:30:04:: 4 -1 erupt%2:30:00:: 5 -1 ersatz%5:00:00:artificial:00 1 -1 erroneous%5:00:00:incorrect:00 1 -1 erratically%4:02:00:: 1 -1 erratic%5:00:00:changeable:00 1 -1 err%2:38:00:: 2 -1 erosion%1:22:00:: 1 -1 eroded%5:00:00:worn:00 1 -1 erode%2:30:01:: 1 -1 erode%2:30:00:: 2 -1 erlenmeyer_flask%1:06:00:: 1 -1 ergotropic%3:01:00:: 1 -1 equivocal%3:00:00:: 1 -1 equivalent%5:00:02:equal:00 2 -1 equivalent%3:00:04:: 1 -1 equivalence%1:26:00:: 1 -1 equity%1:21:01:: 1 -1 equipping%1:04:00:: 1 -1 equipped%3:00:00:: 1 -1 equipotent%5:00:00:potent:00 1 -1 equip%2:30:00:: 2 -1 equator%1:15:00:: 1 -1 equate%2:42:00:: 2 -1 equanimity%1:07:00:: 1 -1 equality%1:26:00:: 2 -1 equal_to%5:00:00:adequate:00 1 -1 equal%2:42:01:: 2 -1 equal%1:18:00:: 1 -1 epoxy%1:27:00:: 1 -1 epitome%1:09:00:: 1 -1 epitaph%1:10:00:: 1 -1 epistolatory%5:00:00:informal:02 1 -1 epistemology%1:09:00:: 1 -1 epileptic%3:01:00:: 1 -1 epigram%1:10:00:: 1 -1 epidermis%1:08:00:: 1 -1 epicure%1:18:00:: 1 -1 epic_poem%1:10:00:: 1 -1 epic%3:01:00:: 2 -1 ephemeral%5:00:00:impermanent:00 1 -1 epaulet%1:06:00:: 1 -1 eosinophilic%3:01:00:: 1 -1 enzymatic%3:01:00:: 1 -1 enwrapped%5:00:00:wrapped:00 1 -1 environs%1:15:00:: 1 -1 environmental%3:01:01:: 1 -1 environment%1:15:00:: 2 -1 environ%2:42:00:: 1 -1 envious%5:00:00:desirous:00 1 -1 enviably%4:02:00:: 1 -1 enveloping%5:00:00:concealing:00 1 -1 enveloping%5:00:00:close:01 2 -1 enunciate%2:32:01:: 1 -1 enunciate%2:32:00:: 2 -1 enumerate%2:32:00:: 1 -1 entry%1:10:00:: 4 -1 entry%1:06:00:: 5 -1 entrench%2:35:00:: 1 -1 entrant%1:06:00:: 1 -1 entranceway%1:06:00:: 1 -1 entrance_hall%1:06:00:: 1 -1 entomb%2:41:00:: 1 -1 entire%5:00:00:smooth:02 3 -1 entice%2:32:00:: 1 -1 enthusiastic%5:00:00:positive:01 2 -1 enthusiast%1:18:00:: 1 -1 enthrone%2:41:01:: 1 -1 enthrall%2:37:00:: 1 -1 entertainer%1:18:00:: 1 -1 entertain%2:31:00:: 2 -1 enterotoxemia%1:26:00:: 1 -1 entangled%5:00:01:tangled:00 2 -1 entangled%5:00:00:involved:00 1 -1 enslaving%1:04:00:: 1 -1 enshrine%2:35:00:: 1 -1 ensconce%2:35:00:: 1 -1 enrollment%1:04:00:: 1 -1 enrollee%1:18:00:: 1 -1 enrolled%5:00:00:registered:00 1 -1 enrichment%1:04:00:: 1 -1 enrage%2:37:00:: 1 -1 enquire%2:32:00:: 1 -1 enormity%1:07:01:: 1 -1 enliven%2:37:00:: 1 -1 enliven%2:30:00:: 2 -1 enlisted_man%1:18:00:: 1 -1 enlist%2:33:01:: 3 -1 enlightenment%1:09:00:: 1 -1 enlightened%5:00:00:disenchanted:00 3 -1 enlarge%2:32:04:: 4 -1 enjoyment%1:07:00:: 3 -1 enjoyable%5:00:00:pleasant:00 1 -1 enjoin%2:32:00:: 2 -1 enigma%1:09:00:: 1 -1 engrossed%5:00:00:written:00 2 -1 engross%2:31:02:: 1 -1 engraver%1:18:01:: 1 -1 engraved%5:00:00:carved:00 1 -1 engrave%2:35:00:: 1 -1 english_people%1:18:00:: 1 -1 english_muffin%1:13:00:: 1 -1 engine%1:06:01:: 3 -1 engagingly%4:02:00:: 1 -1 engagement%1:04:05:: 5 -1 engagement%1:04:02:: 4 -1 engaged%5:00:00:involved:00 2 -1 engage%2:41:00:: 4 -1 engage%2:32:00:: 5 -1 engage%2:30:00:: 6 -1 enforced%3:00:00:: 1 -1 enforceable%3:00:00:: 1 -1 enfant_terrible%1:18:00:: 1 -1 enervation%1:07:00:: 1 -1 enervating%5:00:00:debilitating:00 1 -1 enervate%2:30:00:: 1 -1 energize%2:29:00:: 1 -1 energetic%5:00:00:enterprising:00 2 -1 enemy%1:18:01:: 4 -1 enduringly%4:02:00:: 1 -1 endpoint%1:15:00:: 1 -1 endowment%1:09:00:: 1 -1 endowed%3:00:00:: 1 -1 endow%2:40:00:: 2 -1 endothelial%3:01:00:: 1 -1 endorse%2:41:02:: 2 -1 endorse%2:41:01:: 3 -1 endlessly%4:02:01:: 2 -1 ending%1:04:00:: 2 -1 endearing%5:00:00:lovable:00 1 -1 end%1:15:03:: 10 -1 end%1:04:00:: 11 -1 encyclopedia%1:10:00:: 1 -1 encumbrance%1:09:00:: 1 -1 encrust%2:35:00:: 1 -1 encroach_upon%2:38:00:: 1 -1 encroach%2:38:00:: 1 -1 encouragingly%4:02:00:: 1 -1 encourage%2:32:00:: 3 -1 encounter%2:42:02:: 4 -1 encounter%2:33:00:: 5 -1 enclosure%1:04:00:: 2 -1 enclose%2:35:00:: 3 -1 enclave%1:15:00:: 1 -1 encipher%2:32:00:: 1 -1 enchantment%1:12:00:: 1 -1 enchanted%3:00:00:: 1 -1 enchained%5:00:00:bound:01 1 -1 encase%2:35:00:: 1 -1 encampment%1:15:00:: 1 -1 enameled%5:00:00:adorned:00 1 -1 enamel%2:36:00:: 1 -1 enamel%1:08:00:: 1 -1 enabling_legislation%1:10:00:: 1 -1 enabling_act%1:10:00:: 1 -1 enabling%3:00:00:: 1 -1 emulsified%5:00:00:blended:00 1 -1 empty_of%5:00:00:empty:00 1 -1 empty%2:35:00:: 4 -1 emptiness%1:26:00:: 1 -1 empower%2:41:00:: 1 -1 employment%1:04:01:: 4 -1 employed%3:00:00:: 1 -1 employ%1:26:00:: 1 -1 empiricism%1:09:00:: 1 -1 empire%1:14:01:: 2 -1 emphysematous%3:01:00:: 1 -1 emphatically%4:02:00:: 1 -1 emphatic%5:00:00:stressed:00 1 -1 emphasize%2:32:03:: 3 -1 emphasis%1:10:01:: 3 -1 emotionality%1:07:00:: 1 -1 emotional_arousal%1:26:00:: 1 -1 emitting%3:44:00:: 1 -1 emit%2:43:00:: 2 -1 emission_spectrum%1:19:00:: 1 -1 eminently%4:02:00:: 1 -1 eminent_domain%1:07:00:: 1 -1 eminence%1:26:00:: 1 -1 emigration%1:04:00:: 1 -1 emeritus%5:00:00:old:02 1 -1 emerging%5:00:00:aborning:00 2 -1 emerging%3:44:00:: 1 -1 emergent%5:00:00:aborning:00 1 -1 emergency%1:26:00:: 2 -1 emergence%1:11:01:: 1 -1 emergence%1:11:00:: 2 -1 embroil%2:42:00:: 1 -1 embracing%1:04:00:: 1 -1 embrace%2:31:00:: 3 -1 embrace%1:26:00:: 2 -1 embowered%5:00:00:enclosed:00 1 -1 emboss%2:35:00:: 1 -1 emboldened%5:00:00:bold:00 1 -1 embolden%2:37:00:: 1 -1 embody%2:42:02:: 3 -1 embodiment%1:18:00:: 1 -1 embodied%3:44:00:: 1 -1 embitter%2:37:00:: 1 -1 embellish%2:32:00:: 1 -1 embedded%5:00:01:enclosed:00 1 -1 embassy%1:06:00:: 1 -1 embarrassment%1:26:00:: 2 -1 embarrassment%1:11:00:: 3 -1 embarrassed%5:00:00:discomposed:00 1 -1 embarrass%2:37:00:: 1 -1 embark%2:38:00:: 1 -1 embark%2:30:10:: 2 -1 embargo%1:10:00:: 1 -1 emasculate%2:30:00:: 1 -1 emancipated%5:00:00:free:00 1 -1 emancipate%2:41:01:: 1 -1 emancipate%2:41:00:: 2 -1 emanation%1:27:00:: 1 -1 emanation%1:04:00:: 2 -1 emanate%2:30:00:: 1 -1 elute%2:35:00:: 1 -1 elusive%5:00:00:unidentifiable:00 1 -1 elusive%5:00:00:artful:00 2 -1 elude%2:42:00:: 2 -1 elucidate%2:32:00:: 1 -1 elongated%5:00:02:long:01 1 -1 elongated%5:00:00:long:01 2 -1 elongate%2:30:00:: 1 -1 elm%1:20:00:: 1 -1 ell%1:06:00:: 1 -1 elizabethan%1:18:00:: 1 -1 eliminate%2:31:00:: 4 -1 eliminate%2:29:00:: 5 -1 elfin%5:00:00:supernatural:00 1 -1 elfin%5:00:00:small:00 2 -1 elevation%1:26:00:: 2 -1 elevation%1:24:00:: 3 -1 elevated%5:00:00:raised:00 2 -1 elevated%5:00:00:overhead:00 1 -1 elementary_school%1:14:00:: 1 -1 elemental%3:01:00:: 3 -1 element%1:15:00:: 4 -1 electrotherapist%1:18:00:: 1 -1 electroshock_therapy%1:04:00:: 1 -1 electrophorus%1:06:00:: 1 -1 electrophoresis%1:22:00:: 1 -1 electronic_equipment%1:06:00:: 1 -1 electromyography%1:04:00:: 1 -1 electromagnetic%3:01:00:: 1 -1 electromagnet%1:06:00:: 1 -1 electrolysis%1:22:00:: 1 -1 electrifying%5:00:00:exciting:00 1 -1 electricity%1:12:00:: 3 -1 electrically%4:02:00:: 1 -1 electrical_work%1:04:00:: 1 -1 electrical_shock%1:04:00:: 1 -1 electrical_engineer%1:18:00:: 1 -1 electric_shock%1:04:01:: 1 -1 electric_refrigerator%1:06:00:: 1 -1 electric_power%1:19:00:: 1 -1 electric_outlet%1:06:00:: 1 -1 electric_heater%1:06:00:: 1 -1 electric_discharge%1:19:00:: 1 -1 electric_circuit%1:06:00:: 1 -1 electric_chair%1:06:00:: 1 -1 elector%1:18:00:: 1 -1 election_day%1:28:00:: 1 -1 election%1:04:00:: 2 -1 elbow%2:38:00:: 1 -1 elbow%1:06:01:: 2 -1 elation%1:26:00:: 1 -1 elation%1:12:00:: 2 -1 elate%2:37:00:: 1 -1 elastic%5:00:00:adaptable:00 2 -1 elapsed%3:44:00:: 1 -1 elaborately%4:02:00:: 1 -1 eject%2:29:00:: 2 -1 ejaculation%1:10:00:: 1 -1 egocentric%5:00:00:egoistic:00 1 -1 ego%1:09:01:: 2 -1 eggplant%1:13:00:: 1 -1 egghead%1:18:00:: 1 -1 egg_on%2:35:00:: 1 -1 egg_laying%1:22:00:: 1 -1 egg%1:13:00:: 2 -1 effortlessly%4:02:00:: 1 -1 effortless%3:00:00:: 1 -1 effloresce%2:30:00:: 1 -1 efficacious%3:00:00:: 1 -1 effectually%4:02:00:: 1 -1 effectively%4:02:00:: 2 -1 effective%5:00:00:actual:00 5 -1 effect%1:07:01:: 5 -1 educational_activity%1:04:00:: 1 -1 educate%2:41:01:: 3 -1 editorially%4:02:00:: 1 -1 editorial%3:01:00:: 1 -1 edit%2:30:00:: 1 -1 edifying%3:00:00:: 1 -1 edify%2:32:00:: 1 -1 edgewise%4:02:00:: 1 -1 edge_up%2:38:00:: 1 -1 edge%1:06:01:: 6 -1 edentulous%5:00:00:toothless:00 1 -1 edematous%5:00:00:unhealthy:00 1 -1 eddy%2:38:00:: 1 -1 economy%1:09:01:: 2 -1 economy%1:07:00:: 3 -1 economy%1:04:00:: 4 -1 economical%5:00:00:thrifty:00 3 -1 economic_value%1:21:00:: 1 -1 economic_system%1:14:00:: 1 -1 economic_strangulation%1:04:00:: 1 -1 economic_policy%1:10:00:: 1 -1 economic%5:00:00:efficient:00 3 -1 eclipse%2:42:00:: 1 -1 eclipse%2:39:00:: 2 -1 ecclesiasticism%1:04:00:: 1 -1 eccentric%3:00:00:: 2 -1 ebullient%5:00:00:spirited:00 1 -1 ebony%1:07:00:: 1 -1 ebbing%1:22:00:: 1 -1 ebb%2:38:00:: 1 -1 eaten%3:00:00:: 1 -1 eatable%3:00:00:: 1 -1 eat_up%2:34:03:: 2 -1 eat_on%2:37:00:: 1 -1 easy%5:00:00:pleasing:00 4 -1 easy%5:00:00:light:08 5 -1 easy%3:00:02:: 3 -1 eastward%5:00:00:east:00 1 -1 eastward%4:02:00:: 1 -1 eastern%5:00:02:east:00 3 -1 eastern%3:00:02:: 2 -1 easter_card%1:10:00:: 1 -1 east_german%3:01:00:: 1 -1 east_german%1:18:00:: 1 -1 east%4:02:00:: 1 -1 ease_up%2:38:00:: 1 -1 ease_up%2:30:00:: 2 -1 ease%2:37:00:: 4 -1 ease%1:07:00:: 1 -1 earthy%5:00:00:uninhibited:00 3 -1 earthy%5:00:00:natural:01 2 -1 earthshaking%5:00:00:loud:00 1 -1 earthlike%5:00:00:chromatic:00 1 -1 earthbound%5:00:00:earthly:00 1 -1 earth's_surface%1:17:00:: 1 -1 earsplitting%5:00:00:loud:00 1 -1 earphone%1:06:00:: 1 -1 earnestness%1:12:00:: 1 -1 earnest%1:21:00:: 1 -1 earned_run%1:04:00:: 1 -1 early_childhood%1:28:00:: 1 -1 early%4:02:02:: 3 -1 earliest%4:02:00:: 1 -1 earlier%4:02:04:: 3 -1 earl%1:18:00:: 1 -1 eared%5:00:00:worn:00 1 -1 ear%1:09:01:: 4 -1 eagle-eyed%5:00:00:farsighted:00 1 -1 eagle%1:05:00:: 1 -1 dysentery%1:26:00:: 1 -1 dynasty%1:14:00:: 1 -1 dynamite%2:30:00:: 1 -1 dynamite%1:06:00:: 1 -1 dynamics%1:09:00:: 1 -1 dying%1:28:00:: 1 -1 dyeing%1:04:00:: 1 -1 dye%2:30:00:: 1 -1 dwindling_away%1:11:00:: 1 -1 dwelling_house%1:06:00:: 1 -1 dwell_on%2:42:00:: 1 -1 dwarf%1:18:00:: 1 -1 dutch_oven%1:06:00:: 1 -1 dustpanful%1:23:00:: 1 -1 dustbin%1:06:00:: 1 -1 dust-covered%5:00:00:dirty:01 1 -1 dust%2:35:02:: 2 -1 dusky%5:00:00:dark:01 1 -1 dusky%5:00:00:brunet:00 2 -1 duration%1:28:00:: 2 -1 duration%1:07:00:: 3 -1 durable%5:00:00:long:02 1 -1 durability%1:07:00:: 1 -1 duplication%1:06:00:: 1 -1 duplication%1:04:00:: 2 -1 duplicable%5:00:00:reproducible:00 1 -1 dupe%2:32:00:: 1 -1 dunk%2:35:00:: 1 -1 dune%1:17:00:: 1 -1 dun%5:00:00:chromatic:00 1 -1 dun%1:05:00:: 1 -1 dumped%3:44:00:: 1 -1 dump_truck%1:06:00:: 1 -1 dump%2:40:02:: 2 -1 dumfounded%5:00:00:surprised:00 1 -1 dully%4:02:02:: 2 -1 dullard%1:18:02:: 1 -1 dull%5:00:00:stupid:00 7 -1 dull%5:00:00:inactive:03 8 -1 dull%3:00:04:: 6 -1 dull%2:35:01:: 1 -1 dull%2:30:00:: 2 -1 duke%1:18:00:: 1 -1 duelist%1:18:00:: 1 -1 duel%1:04:01:: 2 -1 duel%1:04:00:: 1 -1 due_process_of_law%1:04:00:: 1 -1 due%5:00:00:expected:00 3 -1 ducking%1:04:01:: 1 -1 dublin%1:15:00:: 1 -1 dubious%5:00:00:questionable:00 2 -1 dub%2:32:01:: 2 -1 dryness%1:26:00:: 1 -1 dryly%4:02:00:: 1 -1 drying_agent%1:27:00:: 1 -1 dry-eyed%3:00:00:: 1 -1 dry%5:00:00:humorous:00 2 -1 drunkenness%1:26:00:: 1 -1 drunk-and-disorderly%1:18:00:: 1 -1 drummer%1:18:00:: 1 -1 drumlin%1:17:00:: 1 -1 drumhead%1:06:00:: 1 -1 drum_out%2:41:00:: 1 -1 drum_major%1:18:00:: 1 -1 drum%2:39:00:: 1 -1 drum%2:36:00:: 2 -1 drum%1:11:00:: 2 -1 drugless%5:00:00:healthful:00 1 -1 drugging%1:04:00:: 1 -1 drug%2:29:00:: 1 -1 drowsy%5:00:00:asleep(p):00 1 -1 drowsiness%1:26:00:: 1 -1 drowsily%4:02:00:: 1 -1 drowse%2:29:01:: 1 -1 drown%2:30:01:: 4 -1 drover%1:18:00:: 1 -1 drought%1:28:00:: 2 -1 dross%1:27:01:: 1 -1 droppings%1:27:00:: 1 -1 dropout%1:18:00:: 1 -1 drop_off%2:30:01:: 1 -1 drop_off%2:29:00:: 2 -1 drop_in%2:41:00:: 1 -1 drop_by%2:41:00:: 1 -1 drop_behind%2:38:00:: 1 -1 drop_back%2:38:00:: 1 -1 drop%2:40:00:: 11 -1 drop%2:30:05:: 12 -1 drop%1:07:00:: 3 -1 droop%2:38:00:: 1 -1 drone%1:10:00:: 2 -1 driving_force%1:04:00:: 1 -1 drive_up%2:38:00:: 1 -1 drive_out%2:38:01:: 1 -1 drive_in%2:38:00:: 2 -1 drive_away%2:38:00:: 1 -1 drive_around%2:38:00:: 1 -1 drive%2:41:00:: 10 -1 drive%2:38:03:: 11 -1 drive%2:32:00:: 12 -1 drive%1:07:00:: 5 -1 drive%1:04:06:: 7 -1 drive%1:04:03:: 6 -1 drive%1:04:00:: 8 -1 dripping%5:00:02:wet:01 2 -1 drinking_water%1:13:00:: 1 -1 drinker%1:18:01:: 1 -1 drink_up%2:34:00:: 1 -1 drink%2:34:12:: 3 -1 drink%2:31:00:: 4 -1 drilled%5:00:00:trained:00 1 -1 drill%2:31:00:: 3 -1 drift%1:22:01:: 2 -1 dried-out%5:00:00:dry:01 1 -1 dried%5:00:00:preserved:02 2 -1 dresser%1:06:00:: 1 -1 dress_up%2:30:00:: 2 -1 dress%2:30:00:: 6 -1 drenched%5:00:00:wet:01 1 -1 drenched%5:00:00:covered:00 2 -1 dreary%5:00:00:dull:03 2 -1 dreamlike%5:00:00:unreal:02 1 -1 dreamfully%4:02:00:: 1 -1 dreamer%1:18:02:: 1 -1 dreamed%5:00:00:unreal:00 1 -1 dream%1:09:04:: 5 -1 dreadfully%4:02:00:: 1 -1 dreadful%5:00:00:bad:00 2 -1 dread%1:12:00:: 1 -1 drawn%5:00:00:tense:03 2 -1 drawn%5:00:00:delineated:00 3 -1 drawn%5:00:00:closed:01 4 -1 drawl%2:32:00:: 1 -1 drawl%1:10:00:: 1 -1 drawing_power%1:07:00:: 1 -1 drawing_paper%1:27:00:: 1 -1 drawing_board%1:06:00:: 1 -1 draw_up%2:38:01:: 3 -1 draw_up%2:31:00:: 4 -1 draw_the_line%2:30:00:: 1 -1 draw_rein%2:41:00:: 1 -1 draw_out%2:32:00:: 1 -1 draw_out%2:30:00:: 2 -1 draw_on%2:40:00:: 1 -1 draw_off%2:35:00:: 1 -1 draw_in%2:35:03:: 2 -1 draw_in%2:35:02:: 1 -1 draw_in%2:35:00:: 3 -1 draw_close%2:35:00:: 1 -1 draw%2:38:07:: 18 -1 draw%2:36:07:: 19 -1 draw%2:36:02:: 20 -1 draw%2:35:02:: 21 -1 draughty%5:00:00:leaky:00 1 -1 draught%1:04:01:: 2 -1 drastic%5:00:00:forceful:00 1 -1 draper%1:18:00:: 1 -1 drape%2:35:01:: 2 -1 drape%1:06:00:: 1 -1 dramatize%2:36:00:: 1 -1 dramatize%2:32:01:: 2 -1 dramatize%2:32:00:: 3 -1 dramatics%1:04:00:: 1 -1 dramatically%4:02:01:: 3 -1 drama%1:07:00:: 4 -1 drain%2:34:00:: 2 -1 drain%2:30:01:: 3 -1 drain%1:04:00:: 1 -1 dragging%5:00:00:effortful:00 1 -1 drag_through_the_mud%2:32:00:: 1 -1 drag_out%2:42:00:: 1 -1 drag_a_bunt%2:35:00:: 1 -1 drag%2:42:00:: 3 -1 drag%2:38:06:: 4 -1 drag%2:38:00:: 5 -1 drag%2:34:00:: 6 -1 drag%1:19:00:: 1 -1 drafty%5:00:00:leaky:00 1 -1 drafting_board%1:06:00:: 1 -1 drafting%1:04:02:: 2 -1 drafting%1:04:01:: 1 -1 draft%1:21:00:: 1 -1 draft%1:19:00:: 2 -1 draft%1:06:01:: 3 -1 drab%5:00:00:colorless:02 2 -1 downward%5:00:00:down:00 1 -1 downstream%4:02:00:: 1 -1 downhill%5:00:00:descending(a):00 1 -1 downed%3:00:02:: 1 -1 downcast%5:00:00:down:00 1 -1 down%5:00:00:perfect:00 3 -1 down%5:00:00:out(p):02 5 -1 down%5:00:00:falling:00 2 -1 down%2:34:01:: 2 -1 down%2:33:00:: 3 -1 down%1:05:00:: 1 -1 down%1:04:00:: 2 -1 doweling%1:04:00:: 1 -1 dovetail%2:42:00:: 1 -1 dourly%4:02:00:: 1 -1 dough%1:21:00:: 2 -1 doubt%2:31:01:: 3 -1 doubly%4:02:00:: 1 -1 doubleheader%1:04:00:: 1 -1 double_up%2:38:00:: 1 -1 double_standard%1:10:00:: 1 -1 double_play%1:04:00:: 1 -1 double_over%2:38:00:: 1 -1 double_cross%2:41:00:: 1 -1 double_bogey%2:35:00:: 1 -1 double-glaze%2:40:00:: 1 -1 double-crossing%1:04:00:: 1 -1 double-crosser%1:18:00:: 1 -1 double-breasted%3:00:00:: 1 -1 double%2:38:00:: 3 -1 double%2:35:01:: 4 -1 dotted%5:00:00:broken:02 2 -1 dosed%5:00:00:treated:02 1 -1 dose%2:30:00:: 1 -1 doppler_effect%1:19:00:: 1 -1 doped%5:00:00:treated:00 1 -1 dope%1:06:00:: 1 -1 doorknob%1:06:00:: 1 -1 doorhandle%1:06:00:: 1 -1 doorbell%1:06:00:: 1 -1 door%1:06:02:: 4 -1 doomed%1:14:00:: 1 -1 done_with%5:00:00:finished:01 1 -1 done_up%5:00:00:wrapped:00 1 -1 done_for%5:00:00:destroyed:00 1 -1 donation%1:04:00:: 2 -1 don%1:18:01:: 1 -1 dominion%1:21:01:: 2 -1 dominican_republic%1:15:00:: 1 -1 domineering%3:00:00:: 1 -1 domineer%2:37:00:: 1 -1 domination%1:26:00:: 2 -1 dominating%5:00:00:dominant:01 1 -1 dominantly%4:02:00:: 1 -1 domestic_animal%1:05:00:: 1 -1 dollar_sign%1:10:01:: 1 -1 dollar_bill%1:21:00:: 1 -1 doll%1:06:00:: 1 -1 doled_out%5:00:00:distributed:00 1 -1 dole_out%2:40:00:: 1 -1 dogwood%1:20:00:: 1 -1 dogmatic%5:00:00:narrow-minded:00 1 -1 doglike%5:00:00:loyal:00 1 -1 doghouse%1:06:00:: 1 -1 dogging%5:00:00:continuous:01 1 -1 doggerel%1:10:00:: 1 -1 dodging%1:04:00:: 1 -1 dodge%2:38:01:: 2 -1 dodge%2:32:00:: 3 -1 dodge%1:09:00:: 1 -1 dodge%1:04:00:: 2 -1 document%2:31:00:: 2 -1 document%1:06:00:: 2 -1 doctrinally%4:02:00:: 1 -1 doctrinal%3:01:00:: 1 -1 doctorate%1:10:00:: 1 -1 doctor_of_philosophy%1:10:00:: 1 -1 doctor_of_education%1:10:00:: 1 -1 doctor%2:30:00:: 1 -1 doctor%2:29:00:: 2 -1 doctor%1:18:02:: 2 -1 doctor%1:04:00:: 3 -1 docket%2:32:01:: 1 -1 docked%3:44:00:: 1 -1 do_work%2:41:00:: 1 -1 do_justice%2:41:00:: 1 -1 do_justice%2:39:00:: 2 -1 do_in%2:35:00:: 1 -1 do_by%2:41:00:: 1 -1 do_away_with%2:30:00:: 1 -1 do%2:38:00:: 13 -1 dizzy%5:00:00:ill:01 1 -1 dizzy%5:00:00:frivolous:00 2 -1 dizzily%4:02:00:: 1 -1 divulge%2:32:00:: 1 -1 divorced%5:00:00:unmarried:00 1 -1 division%1:10:00:: 5 -1 divinity%1:07:00:: 2 -1 diving_board%1:06:00:: 1 -1 diving%1:11:00:: 1 -1 divine_law%1:09:00:: 1 -1 divine%5:00:03:heavenly:00 2 -1 divine%5:00:02:heavenly:00 3 -1 divine%1:18:01:: 1 -1 divide%2:38:00:: 5 -1 divide%2:35:01:: 6 -1 divest%2:40:01:: 1 -1 divertimento%1:10:00:: 1 -1 divert%2:41:00:: 3 -1 diversionary_attack%1:04:00:: 1 -1 diversion%1:04:02:: 3 -1 diversification%1:04:00:: 1 -1 diverse%5:00:00:different:00 2 -1 divergence%1:04:00:: 1 -1 diverge%2:38:00:: 1 -1 dive%2:38:02:: 2 -1 dive%1:04:01:: 2 -1 ditty%1:10:00:: 1 -1 disturbingly%4:02:00:: 1 -1 disturbed%5:00:00:troubled:00 2 -1 disturbed%5:00:00:neurotic:00 3 -1 disturbance%1:26:00:: 3 -1 disturbance%1:04:01:: 4 -1 disturbance%1:04:00:: 5 -1 disturb%2:30:04:: 5 -1 distrust%1:09:00:: 1 -1 distributive%3:00:00:: 1 -1 distribute%2:38:00:: 5 -1 distribute%2:32:00:: 6 -1 distressed%5:00:00:troubled:00 1 -1 distraught%5:00:00:agitated:00 1 -1 distractedly%4:02:00:: 1 -1 distortion%1:25:00:: 2 -1 distortion%1:19:00:: 3 -1 distortable%5:00:00:changeable:00 1 -1 distort%2:35:01:: 2 -1 distinguished_service_medal%1:10:00:: 1 -1 distinctness%1:07:00:: 1 -1 distinctive%5:00:02:characteristic:00 3 -1 distinct%5:00:00:separate:00 3 -1 distilled_water%1:27:00:: 1 -1 distill%2:30:02:: 3 -1 distension%1:04:00:: 1 -1 distastefully%4:02:02:: 1 -1 distance%1:28:00:: 5 -1 distally%4:02:00:: 1 -1 dissolving_agent%1:27:00:: 1 -1 dissolve%2:38:00:: 4 -1 dissolve%1:10:00:: 1 -1 dissolution%1:22:00:: 1 -1 dissipate%2:38:01:: 1 -1 dissipate%2:38:00:: 2 -1 dissipate%2:34:00:: 3 -1 dissimilar%3:00:00:: 1 -1 disservice%1:04:00:: 1 -1 dissenter%1:18:00:: 1 -1 dissent%2:32:00:: 1 -1 dissent%1:10:03:: 2 -1 dissent%1:10:02:: 1 -1 dissension%1:10:00:: 1 -1 dissemination%1:10:00:: 1 -1 disseminating%5:00:00:distributive:00 1 -1 dissemble%2:32:00:: 1 -1 dissection%1:09:00:: 2 -1 dissect%2:35:00:: 1 -1 disruption%1:04:02:: 1 -1 disrobe%2:29:01:: 1 -1 disrepute%1:26:00:: 1 -1 disregardless%4:02:00:: 1 -1 disregard%1:09:00:: 1 -1 disregard%1:04:01:: 2 -1 disqualify%2:30:00:: 1 -1 disqualified%5:00:01:ineligible:00 1 -1 disputable%5:00:00:contestable:00 1 -1 disprove%2:31:00:: 1 -1 disproportionate%5:00:00:incommensurate:00 2 -1 disproportionate%3:00:00:: 1 -1 dispossession%1:04:00:: 1 -1 dispossessed%5:00:00:unfortunate:00 1 -1 disposition%1:04:00:: 2 -1 disposal%1:04:02:: 2 -1 disposal%1:04:00:: 3 -1 displeased%3:00:00:: 1 -1 display_window%1:06:00:: 1 -1 display%1:06:00:: 3 -1 displacement%1:11:00:: 2 -1 displacement%1:04:02:: 3 -1 displace%2:38:00:: 2 -1 dispersion%1:11:00:: 1 -1 disperse%2:38:01:: 2 -1 disperse%2:30:00:: 3 -1 dispersal%1:04:00:: 1 -1 dispenser%1:06:00:: 1 -1 dispense_with%2:40:01:: 1 -1 dispensation%1:04:01:: 1 -1 dispensary%1:06:00:: 1 -1 dispatch%2:41:00:: 2 -1 dispatch%1:04:00:: 2 -1 dispassionate%5:00:00:impartial:00 1 -1 disparagement%1:10:00:: 1 -1 disown%2:40:00:: 1 -1 disorderly%5:00:00:untidy:00 2 -1 disorderly%3:00:00:: 1 -1 disordered%5:00:00:incoherent:00 2 -1 dismounted%5:00:00:unmounted:00 1 -1 dismissal%1:04:01:: 1 -1 dismiss%2:41:01:: 3 -1 dismember%2:35:00:: 1 -1 dismaying%5:00:00:alarming:00 1 -1 dismal%5:00:00:cheerless:00 1 -1 dislocation%1:11:00:: 1 -1 dislocation%1:04:00:: 2 -1 disk%2:36:00:: 1 -1 disjointed%5:00:00:incoherent:00 1 -1 disinterested%5:00:00:impartial:00 1 -1 disinterest%1:09:01:: 1 -1 disinter%2:41:00:: 1 -1 disintegrative%3:00:00:: 1 -1 disillusionment%1:09:00:: 1 -1 disillusioning%5:00:00:convincing:00 1 -1 dishwater%1:27:00:: 1 -1 dishwasher%1:06:00:: 1 -1 dishonour%2:41:00:: 1 -1 dishonor%1:26:00:: 1 -1 dishonest%3:00:00:: 1 -1 disheveled%5:00:00:untidy:00 1 -1 disheartening%5:00:00:discouraging:00 1 -1 disheartened%5:00:00:pessimistic:00 1 -1 dish_up%2:34:00:: 1 -1 disgusting%5:00:00:offensive:01 1 -1 disgust%2:39:00:: 1 -1 disgust%1:12:00:: 1 -1 disguise%2:39:00:: 1 -1 disfigured%5:00:00:ugly:00 1 -1 disentangle%2:35:02:: 1 -1 disentangle%2:35:00:: 2 -1 disengagement%1:04:02:: 1 -1 disengage%2:35:00:: 1 -1 disenfranchise%2:41:00:: 1 -1 disembodied%5:00:00:incorporeal:00 1 -1 diseased%5:00:00:unhealthy:00 1 -1 disdainful%5:00:00:disrespectful:00 1 -1 disdain%2:32:00:: 2 -1 discriminating%3:00:00:: 1 -1 discriminate%2:41:12:: 2 -1 discretionary%5:00:00:arbitrary:00 1 -1 discreetly%4:02:00:: 1 -1 discredit%2:31:01:: 1 -1 discredit%1:26:00:: 1 -1 discover%2:39:00:: 7 -1 discourteous%3:00:00:: 1 -1 discouraging%3:00:00:: 1 -1 discouraged%5:00:00:defeated:00 2 -1 discount_business%1:04:00:: 1 -1 discount%1:04:00:: 1 -1 discorporate%5:00:00:incorporeal:00 1 -1 discontinuance%1:04:00:: 1 -1 discontented%3:00:00:: 1 -1 disconnect%2:35:03:: 1 -1 disconnect%2:35:00:: 2 -1 disconcertingly%4:02:00:: 1 -1 disconcerted%5:00:00:discomposed:00 1 -1 discomfited%1:14:00:: 1 -1 disclosure%1:10:00:: 1 -1 disclosing%5:00:00:revealing:00 1 -1 disciplined%5:00:00:trained:00 2 -1 discipline%1:04:00:: 4 -1 disciple%1:18:00:: 1 -1 discharge%2:41:01:: 3 -1 discharge%2:35:01:: 4 -1 discharge%2:33:02:: 5 -1 discharge%2:32:00:: 6 -1 discharge%2:29:00:: 7 -1 discharge%1:27:00:: 3 -1 discharge%1:22:00:: 4 -1 discharge%1:19:00:: 5 -1 discerning%3:00:00:: 1 -1 discernible%5:00:00:perceptible:00 2 -1 discernable%3:00:00:: 1 -1 discarded%5:00:00:unwanted:00 1 -1 disc%1:25:00:: 2 -1 disburse%2:40:00:: 1 -1 disbelieve%2:31:00:: 1 -1 disband%2:38:01:: 1 -1 disband%2:38:00:: 2 -1 disaster%1:04:00:: 3 -1 disassembly%1:04:00:: 1 -1 disassemble%2:36:00:: 1 -1 disarray%1:09:00:: 1 -1 disarmament%1:04:00:: 1 -1 disapproval%1:10:00:: 2 -1 disapprobation%1:10:00:: 1 -1 disappointment%1:04:00:: 2 -1 disappointing%5:00:00:unsatisfactory:00 1 -1 disappearance%1:11:00:: 2 -1 disappearance%1:04:01:: 3 -1 disallow%2:32:00:: 1 -1 disabled%5:00:00:injured:00 2 -1 disable%2:30:00:: 1 -1 dirty%5:00:00:nasty:00 3 -1 directory%1:10:00:: 1 -1 directivity%1:07:00:: 1 -1 directive%1:10:00:: 1 -1 directionality%1:07:00:: 1 -1 directional%3:01:00:: 1 -1 direction%1:04:01:: 7 -1 directing%5:00:00:leading:00 1 -1 direct_sum%1:14:00:: 1 -1 direct_evidence%1:10:00:: 1 -1 direct_current%1:19:00:: 1 -1 direct_contrast%1:24:00:: 1 -1 direct%2:32:01:: 9 -1 direct%2:31:01:: 10 -1 dipylon%3:01:00:: 1 -1 diplomatic%3:00:00:: 2 -1 diplomacy%1:10:00:: 1 -1 diplomacy%1:07:00:: 2 -1 dip%2:34:00:: 2 -1 dip%2:30:01:: 3 -1 dip%2:30:00:: 4 -1 dinner_party%1:14:00:: 1 -1 dinner_pail%1:06:00:: 1 -1 dining_table%1:06:00:: 1 -1 din%2:39:00:: 1 -1 din%2:31:00:: 2 -1 diminution%1:22:00:: 1 -1 diminishing%5:00:00:decreasing:00 1 -1 dimer%1:27:00:: 1 -1 dimension%1:09:01:: 3 -1 dimension%1:07:01:: 4 -1 dilute%3:00:00:: 1 -1 diligent%5:00:00:patient:00 1 -1 diligence%1:07:01:: 1 -1 digress%2:32:00:: 1 -1 dignitary%1:18:00:: 1 -1 dignify%2:41:00:: 1 -1 dignified%5:00:00:proud:00 2 -1 digitalization%1:04:00:: 1 -1 digitalis_glycoside%1:27:00:: 1 -1 digging%1:04:01:: 1 -1 digestive%3:01:00:: 1 -1 digestible%3:00:00:: 1 -1 digest%2:34:00:: 1 -1 digest%2:31:00:: 2 -1 dig_in%2:34:00:: 2 -1 diffusion%1:11:00:: 2 -1 diffusion%1:07:00:: 3 -1 diffusely%4:02:00:: 1 -1 diffused%5:00:00:distributed:00 1 -1 diffuse%5:00:00:distributed:00 1 -1 diffuse%2:38:00:: 1 -1 diffuse%2:35:00:: 2 -1 diffuse%2:32:00:: 3 -1 diffraction%1:19:00:: 1 -1 diffidently%4:02:00:: 1 -1 diffident%5:00:00:unconfident:00 2 -1 diffident%5:00:00:reserved:01 1 -1 difficult%5:00:00:effortful:00 2 -1 differentiation%1:04:01:: 2 -1 differentiate%2:31:02:: 2 -1 differential%3:01:00:: 1 -1 differential%1:09:00:: 1 -1 different%3:00:02:: 4 -1 difference%1:24:00:: 5 -1 differ%2:32:00:: 2 -1 die%2:39:00:: 2 -1 die%2:37:00:: 3 -1 die%2:30:04:: 4 -1 die%1:06:01:: 2 -1 dictated%5:00:00:settled:02 1 -1 dictate%2:31:00:: 2 -1 dictate%1:10:00:: 1 -1 dictate%1:09:00:: 2 -1 dichondra%1:20:00:: 1 -1 diatom%1:05:00:: 1 -1 diathermy_machine%1:06:00:: 1 -1 diaper%1:06:00:: 1 -1 diamond_point%1:06:00:: 1 -1 diamond%1:27:00:: 2 -1 diametrically%4:02:00:: 1 -1 diameter%1:25:00:: 2 -1 dialectically%4:02:00:: 1 -1 dialectic%1:24:00:: 2 -1 dial%1:06:00:: 1 -1 diagram%2:36:00:: 1 -1 diagnostician%1:18:00:: 1 -1 diagnostic%3:01:00:: 1 -1 diagnosing%1:04:00:: 1 -1 diagnose%2:31:01:: 2 -1 diachronic%3:00:00:: 1 -1 diabetes%1:26:00:: 1 -1 dexterously%4:02:00:: 1 -1 dexterous%5:00:00:adroit:00 1 -1 dewar%1:06:00:: 1 -1 devout%5:00:00:religious:00 1 -1 devour%2:35:00:: 1 -1 devotional%5:00:00:pious:00 1 -1 devotion%1:04:01:: 2 -1 devisee%1:18:00:: 1 -1 devise%2:36:01:: 2 -1 devious%5:00:00:indirect:02 1 -1 devilment%1:04:00:: 1 -1 devilish%5:00:00:evil:00 1 -1 devil%1:18:03:: 4 -1 deviation%1:09:00:: 2 -1 deviate%2:42:00:: 2 -1 deviant%5:00:00:abnormal:00 1 -1 developing%3:44:00:: 2 -1 develop%2:36:09:: 14 -1 develop%2:30:10:: 15 -1 devastating%5:00:01:destructive:00 2 -1 devastating%5:00:00:disrespectful:00 1 -1 detribalize%2:30:00:: 1 -1 detractor%1:18:00:: 1 -1 detract%2:30:04:: 1 -1 detonating_fuse%1:06:00:: 1 -1 deterrent%1:09:00:: 1 -1 determining_factor%1:09:00:: 1 -1 determining%5:00:00:decisive:00 1 -1 determinedly%4:02:00:: 1 -1 determine%2:32:05:: 7 -1 determination%1:09:00:: 3 -1 determinate%3:00:01:: 1 -1 determinable%3:00:00:: 1 -1 deterioration%1:26:00:: 1 -1 detergent_builder%1:27:00:: 1 -1 deter%2:32:01:: 1 -1 detective%1:18:01:: 2 -1 detecting%1:04:00:: 1 -1 detectable%5:00:00:noticeable:00 2 -1 detain%2:41:00:: 1 -1 detail%2:32:00:: 1 -1 detail%2:31:00:: 2 -1 detachment%1:12:00:: 1 -1 detachment%1:04:00:: 2 -1 detached%5:00:00:unconnected:00 3 -1 detachable%3:00:00:: 1 -1 detach%2:38:00:: 2 -1 desynchronizing%1:24:00:: 1 -1 desultory%5:00:00:purposeless:00 1 -1 destroyer%1:06:00:: 1 -1 destroyed%5:00:00:lost:02 2 -1 destroyed%3:00:00:: 1 -1 destiny%1:18:00:: 2 -1 destination%1:09:00:: 2 -1 despondency%1:12:00:: 1 -1 despoiler%1:18:00:: 1 -1 despoil%2:40:00:: 1 -1 despised%5:00:00:unloved:00 1 -1 despicable%5:00:00:ignoble:01 1 -1 desperate%5:00:01:dangerous:00 3 -1 desperate%5:00:00:brave:00 4 -1 desperate%1:18:00:: 1 -1 despairingly%4:02:00:: 1 -1 desorption%1:22:00:: 1 -1 desolation%1:26:00:: 1 -1 desolate%5:00:00:forsaken:00 2 -1 desk_officer%1:18:00:: 1 -1 desired%5:00:00:wanted:00 2 -1 designer%1:18:00:: 2 -1 designation%1:10:01:: 2 -1 designate%2:41:00:: 2 -1 design%1:09:03:: 5 -1 design%1:06:01:: 6 -1 desensitized%5:00:00:insensitive:01 1 -1 desecration%1:04:00:: 1 -1 desecrate%2:41:00:: 1 -1 describe%2:35:00:: 3 -1 describe%2:31:00:: 4 -1 descent%1:04:00:: 3 -1 descending%3:00:00:: 1 -1 descendent%1:18:00:: 1 -1 descendants%1:14:00:: 1 -1 descendant%1:18:00:: 1 -1 descend%2:41:00:: 3 -1 descend%2:38:01:: 4 -1 des%1:27:00:: 1 -1 dervish%1:18:00:: 1 -1 derrick%1:06:01:: 1 -1 derived%5:00:00:calculable:00 2 -1 derived%3:00:00:: 1 -1 derive%2:42:00:: 5 -1 derivative%1:09:00:: 1 -1 derivation%1:15:00:: 1 -1 derivation%1:10:01:: 2 -1 derivation%1:09:00:: 3 -1 derisive%5:00:00:disrespectful:00 1 -1 dereliction%1:07:00:: 1 -1 dereliction%1:04:00:: 2 -1 deputy_sheriff%1:18:00:: 1 -1 deputy%5:00:00:subordinate:01 1 -1 deputy%1:18:00:: 2 -1 depth%1:15:00:: 3 -1 deprived_of%5:00:00:empty:00 1 -1 depression%1:12:00:: 4 -1 depressed%5:00:00:low:02 1 -1 depress%2:38:00:: 2 -1 depreciation%1:21:00:: 2 -1 deprecating%5:00:00:uncomplimentary:00 1 -1 depravity%1:04:00:: 2 -1 deprave%2:41:00:: 1 -1 depot%1:06:00:: 1 -1 depositor%1:18:00:: 1 -1 deposit%1:19:00:: 1 -1 deposit%1:17:00:: 2 -1 deposed%3:44:00:: 1 -1 deplorably%4:02:00:: 1 -1 depicted_object%1:06:00:: 1 -1 depersonalize%2:30:00:: 1 -1 dependable%5:00:00:trustworthy:00 2 -1 depend_upon%2:31:00:: 2 -1 departmental%3:01:00:: 1 -1 department_of_justice%1:14:00:: 1 -1 department_of_health_education_and_welfare%1:14:00:: 1 -1 departed%5:00:00:absent:00 1 -1 depart%2:38:00:: 4 -1 denuded%5:00:00:uncovered:00 1 -1 denture%1:06:00:: 1 -1 dent%1:19:00:: 1 -1 densitometry%1:04:00:: 1 -1 denseness%1:09:01:: 1 -1 dense%5:00:00:impenetrable:00 3 -1 dense%5:00:00:heavy:01 4 -1 denounce%2:32:02:: 3 -1 denouement%1:11:00:: 1 -1 denote%2:32:02:: 3 -1 denominationally%4:02:00:: 1 -1 denial%1:22:00:: 3 -1 denial%1:04:01:: 4 -1 demur%2:32:00:: 1 -1 demote%2:41:00:: 1 -1 demoralization%1:04:00:: 1 -1 demonstrator%1:18:02:: 1 -1 demonstrative%1:10:00:: 1 -1 demonstrated%5:00:00:incontestable:00 1 -1 demonstrate%2:41:00:: 5 -1 demonstrably%4:02:00:: 1 -1 demonstrable%5:00:00:incontestable:00 1 -1 demon-ridden%5:00:00:passionate:00 1 -1 demolition%1:11:00:: 1 -1 democratize%2:41:01:: 2 -1 democratize%2:41:00:: 1 -1 democrat%1:18:00:: 2 -1 demineralization%1:26:00:: 1 -1 demimonde%1:14:00:: 1 -1 demean%2:37:00:: 1 -1 demarcate%2:31:01:: 1 -1 demandingly%4:02:00:: 1 -1 demander%1:18:00:: 1 -1 demand%1:26:00:: 5 -1 demagogue%1:18:00:: 1 -1 delve%2:35:00:: 1 -1 deluge%1:23:00:: 1 -1 delude%2:41:00:: 1 -1 delta%1:17:00:: 1 -1 delivery_boy%1:18:00:: 1 -1 deliverance%1:04:00:: 1 -1 deliver%2:32:02:: 7 -1 deliver%2:32:01:: 6 -1 deliriously%4:02:00:: 1 -1 delineation%1:10:01:: 1 -1 delimit%2:42:00:: 1 -1 deliciously%4:02:00:: 1 -1 delicious%5:00:00:tasteful:01 2 -1 delicately%4:02:00:: 1 -1 delicate%5:00:00:tender:02 4 -1 delicate%5:00:00:refined:01 5 -1 delicate%5:00:00:difficult:00 6 -1 delicacy%1:13:00:: 2 -1 deliberation%1:10:00:: 1 -1 deliberation%1:09:01:: 2 -1 delhi_boil%1:26:00:: 1 -1 delegation%1:14:00:: 1 -1 delegate%2:41:00:: 2 -1 delegate%1:18:00:: 1 -1 delaware_river%1:17:00:: 1 -1 delaware%1:17:00:: 1 -1 dejected%3:00:00:: 1 -1 deign%2:41:00:: 1 -1 degree_of_freedom%1:09:00:: 1 -1 degree%1:23:03:: 6 -1 degrade%2:35:00:: 1 -1 degradation%1:04:00:: 1 -1 deglycerolize%2:38:00:: 1 -1 degeneration%1:22:00:: 1 -1 degenerate%2:30:00:: 1 -1 degas%2:30:00:: 1 -1 defy%2:32:00:: 3 -1 defrost%2:30:00:: 1 -1 deformed%5:00:00:unshapely:00 1 -1 deformational%3:01:00:: 1 -1 deflection%1:26:00:: 1 -1 deflated%5:00:00:dejected:00 1 -1 definite%5:00:00:certain(p):01 2 -1 defining%1:22:00:: 1 -1 definable%5:00:00:determinable:00 1 -1 deficit%1:07:00:: 1 -1 deficient%5:00:00:inadequate:00 1 -1 deference%1:04:00:: 1 -1 defer%2:32:00:: 2 -1 defensive%5:00:00:apologetic:00 2 -1 defensible%5:00:00:invulnerable:00 1 -1 defense_policy%1:09:00:: 1 -1 defense%1:22:00:: 5 -1 defense%1:14:02:: 6 -1 defense%1:14:00:: 7 -1 defense%1:10:01:: 8 -1 defend%2:33:04:: 5 -1 defective%5:00:00:abnormal:00 2 -1 defection%1:04:00:: 1 -1 defect%1:26:00:: 3 -1 defect%1:07:00:: 4 -1 defecate%2:29:00:: 1 -1 default%2:40:00:: 1 -1 default%1:04:00:: 1 -1 deepening%1:22:00:: 1 -1 deepen%2:30:01:: 1 -1 deepen%2:30:00:: 2 -1 deep_in_thought%5:00:00:thoughtful:00 1 -1 deep-seated%5:00:00:established:00 1 -1 deep-eyed%5:00:00:thin:03 1 -1 deed%1:10:00:: 2 -1 deductive%3:01:00:: 1 -1 deduction%1:21:00:: 2 -1 deduction%1:09:01:: 3 -1 deduction%1:09:00:: 4 -1 deduction%1:04:00:: 5 -1 deducted%5:00:00:subtracted:00 1 -1 dedifferentiated%5:00:00:undifferentiated:00 1 -1 decreasing%3:00:00:: 1 -1 decorum%1:07:00:: 1 -1 decorator%1:18:00:: 2 -1 decorativeness%1:07:00:: 1 -1 decorative%5:00:00:nonfunctional:00 1 -1 decor%1:06:00:: 1 -1 declivity%1:17:00:: 1 -1 declining%5:00:00:regressive:01 2 -1 decline%1:22:01:: 3 -1 declared%3:00:00:: 1 -1 declare%2:41:00:: 6 -1 declarative%3:00:00:: 1 -1 declaration_of_estimated_tax%1:10:00:: 1 -1 declaration%1:10:02:: 2 -1 declamation%1:10:00:: 1 -1 deck_out%2:29:00:: 1 -1 deck_of_cards%1:14:00:: 1 -1 deck_chair%1:06:00:: 1 -1 deck%1:14:00:: 3 -1 decisive%5:00:00:definite:00 2 -1 decision%1:11:01:: 4 -1 decimeter%1:23:00:: 1 -1 decertify%2:41:00:: 1 -1 deceptively%4:02:00:: 1 -1 decentralize%2:30:00:: 1 -1 decently%4:02:00:: 1 -1 decent%5:00:00:proper:00 2 -1 decent%4:02:00:: 1 -1 december_31%1:28:00:: 1 -1 decelerate%2:30:00:: 1 -1 deceit%1:07:00:: 1 -1 deceased%1:18:00:: 1 -1 decayed%5:00:00:rotten:00 1 -1 decay%1:19:00:: 3 -1 decadent%5:00:00:indulgent:00 1 -1 debut%2:36:00:: 2 -1 debunking%1:04:00:: 1 -1 debilitate%2:30:00:: 1 -1 debauch%1:04:00:: 1 -1 debate%2:32:02:: 2 -1 debate%2:32:01:: 4 -1 debate%2:32:00:: 3 -1 debacle%1:11:02:: 1 -1 deathly%5:00:00:dead:01 1 -1 death%1:26:01:: 7 -1 dearly%4:02:00:: 2 -1 dear%5:00:00:close:02 2 -1 dean%1:18:00:: 1 -1 dealings%1:04:02:: 1 -1 dealing%1:04:01:: 1 -1 deal%1:23:00:: 3 -1 deafening%5:00:00:loud:00 1 -1 deadly_sin%1:04:00:: 1 -1 deadly%5:00:02:fatal:00 2 -1 deadhead%1:18:00:: 1 -1 deadened%5:00:00:insensitive:01 1 -1 deadened%5:00:00:dull:04 2 -1 deaden%2:30:06:: 1 -1 dead_room%1:06:00:: 1 -1 dead_person%1:18:00:: 1 -1 dead_letter%1:26:00:: 1 -1 dead_end%1:06:00:: 1 -1 dead%5:00:00:precise:00 4 -1 dead%5:00:00:extinct:02 5 -1 dead%5:00:00:absolute:00 6 -1 dead%1:28:00:: 2 -1 de-iodination%1:22:00:: 1 -1 de-iodinase%1:27:00:: 1 -1 dc%1:19:00:: 2 -1 daytime%1:28:00:: 1 -1 days%1:28:00:: 1 -1 daydream%2:36:00:: 1 -1 daybreak%1:28:00:: 1 -1 daybed%1:06:01:: 1 -1 day_camp%1:06:00:: 1 -1 day_after_day%4:02:00:: 1 -1 day-to-day%5:00:00:regular:00 1 -1 day-after-day%5:00:00:regular:00 1 -1 dawning%1:28:00:: 1 -1 dawn%2:31:13:: 1 -1 dawn%1:11:01:: 2 -1 davy's_gray%1:27:00:: 1 -1 dauntless%5:00:00:bold:00 1 -1 daunt%2:37:00:: 1 -1 dated%5:00:00:unfashionable:00 1 -1 date%2:41:00:: 1 -1 date%2:31:02:: 2 -1 date%2:31:00:: 3 -1 date%1:28:04:: 4 -1 date%1:28:02:: 5 -1 data_processing%1:22:00:: 1 -1 dashing%5:00:00:spirited:00 1 -1 dash%2:35:02:: 3 -1 dash%1:07:00:: 1 -1 dash%1:04:01:: 2 -1 darwin%1:18:00:: 1 -1 dart%2:38:02:: 3 -1 dart%2:38:00:: 2 -1 darn%2:35:00:: 1 -1 darling%5:00:00:loved:00 1 -1 darkness%1:09:00:: 4 -1 darkly%4:02:00:: 1 -1 darkening%5:00:00:dark:01 1 -1 darken%2:39:00:: 2 -1 dark_field_illumination%1:04:00:: 1 -1 dark_bread%1:13:00:: 1 -1 dark_blue%1:07:00:: 1 -1 dark-skinned%5:00:00:black:02 1 -1 dark-haired%5:00:00:brunet:00 1 -1 dark-green%5:00:00:chromatic:00 1 -1 dark-brown%5:00:00:chromatic:00 1 -1 daring%5:00:00:adventurous:00 1 -1 daring%1:10:00:: 1 -1 daring%1:07:00:: 2 -1 dappled%5:00:00:patterned:00 1 -1 dante%1:18:00:: 1 -1 dank%5:00:00:wet:01 1 -1 dangling_modifier%1:10:00:: 1 -1 dangerous%5:00:00:critical:03 2 -1 danger_line%1:15:00:: 1 -1 danger%1:15:00:: 4 -1 dane%1:18:00:: 1 -1 dandily%4:02:00:: 1 -1 dandelion%1:20:00:: 1 -1 dancing_school%1:14:00:: 1 -1 dancing%5:00:00:active:01 1 -1 dance%1:04:00:: 3 -1 damned%4:02:00:: 1 -1 damn%1:07:00:: 1 -1 dame%1:18:00:: 1 -1 damascus%1:15:00:: 1 -1 damaging%5:00:00:harmful:00 1 -1 damage%1:11:01:: 2 -1 damage%1:04:00:: 3 -1 dam%2:35:00:: 1 -1 daisy%1:20:00:: 1 -1 dais%1:06:00:: 1 -1 dairyman%1:18:00:: 1 -1 dairy%1:06:00:: 1 -1 daiquiri%1:13:00:: 1 -1 dainty%5:00:00:refined:01 1 -1 dainty%5:00:00:delicate:00 2 -1 daintily%4:02:00:: 1 -1 daily_variation%1:11:00:: 1 -1 dagger%1:06:00:: 1 -1 daffodil%1:20:00:: 1 -1 dadaism%1:14:00:: 1 -1 dabbled%5:00:00:covered:00 1 -1 dabble_in%2:41:00:: 1 -1 dabble%2:38:00:: 1 -1 dab%2:35:00:: 2 -1 dab%1:04:00:: 1 -1 cytolysis%1:26:00:: 1 -1 cypress_tree%1:20:00:: 1 -1 cynic%1:18:00:: 1 -1 cylinder%1:25:02:: 1 -1 cyclohexanol_phthalate%1:27:00:: 1 -1 cycle%2:38:03:: 1 -1 cycle%2:38:02:: 2 -1 cycle%1:28:02:: 4 -1 cycle%1:11:01:: 5 -1 cyclades%1:14:00:: 1 -1 cutting_edge%1:09:00:: 1 -1 cutting%1:20:00:: 2 -1 cutting%1:04:01:: 3 -1 cutlass%1:06:00:: 1 -1 cute%5:00:00:attractive:01 1 -1 cute%5:00:00:artful:00 2 -1 cut_up%2:30:02:: 2 -1 cut_to_ribbons%2:33:00:: 1 -1 cut_through%2:38:00:: 1 -1 cut_short%2:30:04:: 2 -1 cut_out%2:35:03:: 3 -1 cut_out%2:35:02:: 2 -1 cut_off%5:00:00:cut:01 1 -1 cut_glass%1:06:00:: 1 -1 cut_down%2:35:03:: 2 -1 cut_down%2:35:00:: 3 -1 cut_down%2:33:00:: 4 -1 cut_corners%2:36:00:: 1 -1 cut_back%2:38:00:: 1 -1 cut_back%2:30:01:: 2 -1 cut_away%2:38:00:: 1 -1 cut%5:00:00:abridged:00 3 -1 cut%3:00:03:: 2 -1 cut%2:41:13:: 5 -1 cut%2:36:01:: 6 -1 cut%2:36:00:: 7 -1 cut%2:35:07:: 8 -1 cut%2:32:00:: 9 -1 cut%2:30:07:: 10 -1 cut%1:21:00:: 1 -1 cut%1:10:00:: 2 -1 cut%1:06:00:: 3 -1 custom-make%2:36:00:: 1 -1 custom%5:00:00:custom-made:00 1 -1 custody%1:26:00:: 1 -1 custodian%1:18:00:: 1 -1 custodial%5:00:00:protective:00 1 -1 cuss%2:32:00:: 1 -1 cuss%1:18:01:: 2 -1 cuss%1:18:00:: 1 -1 cusp%1:06:00:: 1 -1 cushioning%1:06:00:: 1 -1 cushion%1:06:01:: 1 -1 curve%2:42:00:: 2 -1 curve%2:38:01:: 3 -1 curve%1:04:02:: 3 -1 curvaceously%4:02:00:: 1 -1 curtness%1:07:00:: 1 -1 curtly%4:02:00:: 1 -1 curtained%3:00:00:: 1 -1 curtain_raiser%1:04:00:: 1 -1 cursory%5:00:00:careless:00 1 -1 curse%1:10:02:: 3 -1 curse%1:10:01:: 2 -1 curricular%3:01:00:: 1 -1 current%1:14:00:: 3 -1 currency%1:21:00:: 1 -1 currency%1:07:02:: 2 -1 currant%1:13:01:: 1 -1 curling%5:00:00:moving:02 1 -1 curled%5:00:00:coiled:00 1 -1 curl_up%2:38:01:: 1 -1 curl%2:35:00:: 4 -1 cure%2:30:00:: 2 -1 curdling%3:44:00:: 1 -1 cur%1:05:00:: 1 -1 cup_of_tea%1:04:00:: 1 -1 cumulus%1:17:00:: 1 -1 culture%1:04:01:: 4 -1 cultivation%1:04:01:: 1 -1 cultivation%1:04:00:: 2 -1 cultivate%2:36:01:: 2 -1 cult_of_personality%1:09:00:: 1 -1 cult%1:09:01:: 2 -1 culprit%1:18:00:: 1 -1 culminate%2:30:03:: 2 -1 cufflink%1:06:00:: 1 -1 cuffed%5:00:00:abused:01 1 -1 cuff%1:06:00:: 1 -1 cuddle%2:35:01:: 2 -1 cud%1:13:01:: 1 -1 cuckoo-bumblebee%1:05:00:: 1 -1 cubic_foot%1:23:00:: 1 -1 cube%2:31:00:: 1 -1 cube%1:25:01:: 2 -1 cu_ft%1:23:00:: 1 -1 crystallography%1:09:00:: 1 -1 crystallize%2:31:00:: 2 -1 crystallize%2:30:01:: 3 -1 crystallite%1:17:00:: 1 -1 crystal%1:17:00:: 3 -1 cryostat%1:06:00:: 1 -1 crying%5:00:00:noisy:00 1 -1 cry_out_for%2:42:00:: 1 -1 cry%1:10:03:: 3 -1 cry%1:10:02:: 4 -1 crux_of_the_matter%1:10:00:: 1 -1 crutch%1:04:00:: 2 -1 crust%1:17:00:: 1 -1 crushed%5:00:00:humble:00 2 -1 crushed%5:00:00:defeated:00 3 -1 crush%1:27:00:: 1 -1 crusade%1:04:01:: 2 -1 crupper%1:06:00:: 1 -1 crunched%3:44:00:: 1 -1 crunch%2:32:00:: 1 -1 crunch%1:11:00:: 1 -1 crumpled%5:00:00:wrinkled:00 1 -1 crumpled%5:00:00:damaged:00 2 -1 crumple%2:38:00:: 1 -1 crumbled%5:00:00:broken:01 1 -1 cruelty%1:12:00:: 2 -1 cruelty%1:07:01:: 3 -1 cruelly%4:02:00:: 1 -1 cruel%5:00:02:inhumane:00 3 -1 crudity%1:26:00:: 1 -1 crudity%1:07:00:: 2 -1 crudely%4:02:00:: 1 -1 crucify%2:37:00:: 2 -1 crucifixion%1:04:00:: 1 -1 crucifix%1:06:00:: 1 -1 crucial%5:00:00:material:02 2 -1 crowning%5:00:00:ultimate:00 1 -1 crowned%3:00:02:: 1 -1 crown%1:10:01:: 1 -1 crown%1:08:00:: 2 -1 crown%1:06:02:: 3 -1 crown%1:06:01:: 4 -1 crown%1:06:00:: 5 -1 crowd_together%2:38:00:: 1 -1 crowd%2:38:02:: 4 -1 crowd%1:14:01:: 2 -1 crowbait%1:05:00:: 1 -1 crow%2:32:02:: 3 -1 crow%1:11:00:: 2 -1 crotchety%5:00:00:ill-natured:00 1 -1 crossroads%1:26:00:: 2 -1 crossroads%1:09:00:: 3 -1 crossroad%1:06:00:: 1 -1 crossing%1:04:01:: 1 -1 crossed%3:00:01:: 1 -1 cross_off%2:32:00:: 1 -1 cross-section%5:00:00:crosswise:00 1 -1 cross-purpose%1:09:00:: 1 -1 cross-legged%4:02:00:: 1 -1 cross-examination%1:10:00:: 1 -1 cross%5:00:00:ill-natured:00 2 -1 cross%2:41:00:: 3 -1 cross%2:38:04:: 4 -1 cross%1:07:00:: 2 -1 cross%1:06:00:: 3 -1 cropped%3:00:00:: 1 -1 crop%2:35:02:: 1 -1 crook%1:25:00:: 2 -1 crony%1:18:00:: 1 -1 crone%1:18:00:: 1 -1 crofter%1:18:00:: 1 -1 crocketed%5:00:00:adorned:00 1 -1 crocked%5:00:00:intoxicated:00 1 -1 crochet%2:36:01:: 1 -1 croaking%1:10:00:: 1 -1 croak%2:30:00:: 1 -1 critical%3:00:03:: 6 -1 crisscross%2:38:00:: 1 -1 crisp%1:13:00:: 1 -1 crippling%5:00:00:unhealthful:00 1 -1 crippled%5:00:00:unfit:01 1 -1 cripple%1:18:00:: 1 -1 cringing%5:00:00:cowardly:00 1 -1 cringe%2:38:00:: 2 -1 crimson%1:07:00:: 1 -1 criminal_law%1:10:00:: 1 -1 criminal%5:00:00:wrong:01 2 -1 criminal%5:00:00:guilty:00 3 -1 cricket%1:05:00:: 1 -1 crevice%1:25:00:: 1 -1 crested%5:00:03:adorned:00 1 -1 crescendo%5:00:00:increasing:02 1 -1 crescendo%1:07:00:: 1 -1 cremate%2:30:00:: 1 -1 creeping%5:00:00:moving:02 1 -1 creeper%1:20:00:: 1 -1 creep_up%2:38:00:: 1 -1 creep_feed%1:13:00:: 1 -1 creedal%3:01:00:: 1 -1 creed%1:10:00:: 2 -1 creditable%5:00:00:worthy:00 1 -1 credit_system%1:09:00:: 1 -1 credit%2:31:00:: 4 -1 credit%1:04:00:: 6 -1 credible%5:00:00:credulous:00 2 -1 credible%3:00:00:: 1 -1 creche%1:06:00:: 1 -1 creature%1:18:02:: 3 -1 creator%1:18:00:: 2 -1 creativeness%1:09:00:: 1 -1 creatively%4:02:00:: 1 -1 creation%1:04:02:: 5 -1 creased%5:00:00:wrinkled:00 1 -1 crease%2:35:00:: 1 -1 creamy%5:00:00:chromatic:00 1 -1 creaking%1:11:00:: 1 -1 crazy%5:00:00:excited:00 4 -1 crazed%5:00:00:insane:00 1 -1 craze%1:09:00:: 1 -1 crawling%5:00:00:slow:01 2 -1 crawling%5:00:00:moving:02 1 -1 crawl%2:42:01:: 2 -1 crawl%1:04:03:: 1 -1 craven%5:00:00:cowardly:00 1 -1 craved%5:00:00:wanted:00 1 -1 crate%1:06:00:: 1 -1 crassness%1:07:00:: 1 -1 crash%5:00:00:intense:00 1 -1 crash%2:38:04:: 4 -1 crash%2:35:01:: 5 -1 crash%1:11:02:: 3 -1 crash%1:04:00:: 4 -1 cranky%5:00:00:unstable:00 1 -1 crank_call%1:10:00:: 1 -1 cramp%1:26:00:: 1 -1 cram%2:35:00:: 1 -1 craggy%5:00:00:rough:00 1 -1 crag%1:17:00:: 1 -1 crafty%5:00:00:artful:00 1 -1 craftsmanship%1:09:00:: 1 -1 craftsman%1:18:02:: 1 -1 craftsman%1:18:01:: 2 -1 craftsman%1:18:00:: 3 -1 crafter%1:18:00:: 1 -1 craft%1:06:00:: 2 -1 cradle%1:15:00:: 2 -1 crackpot%1:18:00:: 1 -1 crackling%5:00:00:noisy:00 1 -1 crackle%2:32:00:: 2 -1 crackle%2:30:00:: 3 -1 cracking%5:00:00:noisy:00 1 -1 cracking%1:11:00:: 1 -1 cracking%1:04:00:: 2 -1 cracker%1:13:00:: 1 -1 cracked%5:00:02:rough:00 1 -1 cracked%5:00:00:broken:01 2 -1 crack_up%2:37:00:: 1 -1 crack%2:30:02:: 6 -1 crack%2:30:00:: 7 -1 crack%1:25:00:: 3 -1 crack%1:11:00:: 4 -1 crab%1:05:00:: 1 -1 coyote%1:05:00:: 1 -1 cowpuncher%1:18:00:: 1 -1 cowling%1:06:00:: 1 -1 cowled%5:00:00:clothed:00 1 -1 cowhide%1:27:00:: 1 -1 cowhand%1:18:00:: 1 -1 cower%2:38:01:: 1 -1 cow%1:05:02:: 2 -1 covetousness%1:12:01:: 1 -1 covet%2:37:00:: 1 -1 coverlet%1:06:00:: 1 -1 covered_wagon%1:06:00:: 1 -1 coverage%1:21:00:: 1 -1 coverage%1:07:00:: 2 -1 cover%2:41:01:: 10 -1 cover%2:39:12:: 11 -1 cover%2:33:00:: 12 -1 cover%2:32:12:: 13 -1 cover%2:32:00:: 14 -1 cover%1:17:00:: 5 -1 cover%1:06:03:: 6 -1 cover%1:04:01:: 7 -1 cove%1:17:00:: 1 -1 courteous%5:00:00:polite:00 1 -1 court%2:41:01:: 2 -1 course%4:02:00:: 1 -1 courier%1:18:00:: 1 -1 courageous%3:00:04:: 1 -1 coupon%1:10:00:: 1 -1 coupon%1:09:00:: 2 -1 couple%2:41:00:: 3 -1 coup%1:04:01:: 2 -1 coup%1:04:00:: 1 -1 countywide%5:00:00:wide:00 1 -1 county%3:01:00:: 1 -1 countrywide%5:00:00:wide:00 1 -1 country_store%1:06:00:: 1 -1 country_doctor%1:18:00:: 1 -1 country_club%1:14:00:: 1 -1 countervailing%5:00:02:counteractive:00 1 -1 countershot%1:04:00:: 1 -1 counterproposal%1:10:00:: 1 -1 counterpoint%2:42:00:: 1 -1 counterpart%1:06:00:: 2 -1 counteroffensive%1:04:00:: 1 -1 counterchallenge%2:32:00:: 1 -1 counterbalanced%5:00:00:balanced:00 1 -1 counterbalance%2:42:01:: 1 -1 counterbalance%1:06:00:: 1 -1 counterattack%2:33:00:: 1 -1 counterattack%1:04:00:: 1 -1 counteract%2:41:03:: 3 -1 counteract%2:41:02:: 2 -1 counter-drill%2:35:00:: 1 -1 counter%4:02:00:: 1 -1 counter%2:41:00:: 2 -1 counter%1:06:04:: 4 -1 counter%1:06:03:: 2 -1 counter%1:06:01:: 3 -1 countenance%1:10:00:: 2 -1 countenance%1:08:00:: 3 -1 count_upon%2:31:00:: 1 -1 count_on%2:31:01:: 2 -1 counselor%1:18:02:: 2 -1 coughing%1:04:00:: 1 -1 couch%2:32:00:: 1 -1 cottonmouth%1:05:00:: 1 -1 cotter_pin%1:06:00:: 1 -1 cottage_tent%1:06:00:: 1 -1 costume%3:01:00:: 1 -1 costume%2:29:00:: 1 -1 costume%1:06:02:: 2 -1 cost_analysis%1:04:00:: 1 -1 cost_accountant%1:18:00:: 1 -1 cost-plus%5:00:00:indeterminate:01 1 -1 cosmos%1:17:00:: 1 -1 cosmos%1:14:00:: 2 -1 cosily%4:02:00:: 1 -1 cosigner%1:18:00:: 1 -1 cosecant%1:24:00:: 1 -1 corticotropin%1:08:00:: 1 -1 corticosteroid%1:27:00:: 1 -1 cortically%4:02:00:: 1 -1 cortical_potential%1:19:00:: 1 -1 cortex%1:08:00:: 2 -1 corsage%1:06:00:: 1 -1 corruption%1:07:00:: 1 -1 corrupt%2:41:00:: 1 -1 corrugated_iron%1:06:00:: 1 -1 corrugated%5:00:00:furrowed:00 1 -1 corrosive%5:00:00:destructive:00 1 -1 corrode%2:30:01:: 1 -1 corroborate%2:32:00:: 2 -1 correspondingly%4:02:00:: 1 -1 corresponding%5:00:00:same:00 3 -1 correspondence_course%1:04:00:: 1 -1 correction%1:23:00:: 2 -1 correction%1:10:01:: 3 -1 correct%2:32:00:: 3 -1 corral%2:35:00:: 1 -1 corpuscular-radiation_pressure%1:19:00:: 1 -1 corpus_delicti%1:10:00:: 1 -1 corpulence%1:07:00:: 1 -1 corporeality%1:07:00:: 1 -1 corporeal%3:00:00:: 1 -1 corona%1:19:00:: 1 -1 cornmeal%1:13:00:: 1 -1 cornflake%1:13:00:: 1 -1 cornfield%1:15:00:: 1 -1 corner_post%1:06:00:: 1 -1 corner%2:41:00:: 1 -1 corner%1:26:01:: 8 -1 corner%1:26:00:: 7 -1 corner%1:17:00:: 9 -1 corn_syrup%1:13:00:: 1 -1 corn%1:13:00:: 3 -1 corkscrew%1:06:00:: 1 -1 cork%1:27:00:: 1 -1 corinthian%3:00:00:: 1 -1 core%2:35:00:: 1 -1 core%1:17:01:: 5 -1 corduroys%1:06:04:: 1 -1 corduroy%1:06:00:: 1 -1 cordial%5:00:00:friendly:01 1 -1 coral%1:07:00:: 1 -1 coping%1:06:00:: 1 -1 coordinator%1:18:00:: 1 -1 coordination%1:09:00:: 1 -1 coordination%1:04:00:: 2 -1 coordinated%5:00:00:integrated:02 1 -1 coordinated%5:00:00:adroit:00 2 -1 coordinate%5:00:00:equal:00 1 -1 coordinate%2:41:01:: 3 -1 coordinate%2:30:01:: 4 -1 cooperative%1:14:00:: 2 -1 cooperation%1:04:02:: 2 -1 coon%1:18:01:: 1 -1 coolness%1:12:00:: 1 -1 coolness%1:07:02:: 3 -1 coolness%1:07:00:: 2 -1 cooling%1:06:00:: 2 -1 cooler%1:06:00:: 1 -1 cooled%5:00:00:cool:01 1 -1 cool_off%2:37:00:: 1 -1 cool_off%2:30:00:: 2 -1 cool%2:30:00:: 2 -1 cooking_utensil%1:06:00:: 1 -1 cookie%1:13:00:: 1 -1 cookfire%1:06:00:: 1 -1 cooked-over%5:00:00:uneaten:00 1 -1 cook_up%2:36:01:: 1 -1 cooing%3:44:00:: 1 -1 cooccurring%5:00:00:synchronous:00 1 -1 convulsive%5:00:00:violent:00 2 -1 convulse%2:32:00:: 1 -1 convulse%2:29:00:: 2 -1 convoy%1:14:00:: 1 -1 convivial%5:00:00:sociable:00 1 -1 convicted%5:00:00:guilty:00 1 -1 convict%1:18:00:: 1 -1 conveyor%1:18:00:: 1 -1 conveyor%1:06:00:: 2 -1 convexity%1:07:00:: 1 -1 convex%3:00:00:: 1 -1 convert%2:30:07:: 5 -1 conversion%1:04:01:: 4 -1 conversational%5:00:00:informal:02 1 -1 converge%2:42:00:: 1 -1 conventionally%4:02:00:: 1 -1 conventionalize%2:30:00:: 1 -1 conventional%5:00:00:traditional:00 6 -1 conventional%5:00:00:nonrepresentational:00 5 -1 conventional%3:00:02:: 3 -1 conventional%3:00:01:: 4 -1 convent%1:06:00:: 1 -1 convenience%1:07:00:: 2 -1 contusion%1:26:00:: 1 -1 controversial%3:00:00:: 1 -1 control_tower%1:06:00:: 1 -1 control_condition%1:09:00:: 1 -1 control%2:37:06:: 4 -1 control%1:06:00:: 9 -1 contrived%5:00:00:planned:00 1 -1 contrive%2:36:01:: 1 -1 contrive%2:36:00:: 2 -1 contrivance%1:09:01:: 2 -1 contrition%1:12:00:: 1 -1 contributor%1:18:01:: 2 -1 contributor%1:18:00:: 1 -1 contributing%5:00:00:causative:00 1 -1 contrasting%5:00:00:different:00 1 -1 contrast%2:42:01:: 3 -1 contrary%5:00:00:antonymous:00 2 -1 contraption%1:06:00:: 1 -1 contralto%1:18:00:: 1 -1 contradistinction%1:09:00:: 1 -1 contradictory%5:00:00:antonymous:00 1 -1 contradictorily%4:02:00:: 1 -1 contradiction%1:10:01:: 2 -1 contradict%2:32:00:: 2 -1 contraction%1:04:01:: 1 -1 contract%2:30:04:: 5 -1 contraceptive_device%1:06:00:: 1 -1 contrabass%1:06:00:: 1 -1 contraband%5:00:00:illegal:00 1 -1 contour_language%1:10:00:: 1 -1 continue%2:42:12:: 6 -1 contingent%1:14:01:: 1 -1 contingency%1:11:00:: 1 -1 continence%1:07:00:: 1 -1 contiguous%5:00:00:close:01 1 -1 contestant%1:18:00:: 1 -1 contest%1:04:00:: 2 -1 contention%1:10:00:: 2 -1 contentedly%4:02:00:: 1 -1 content%1:26:00:: 6 -1 contending%5:00:00:competitive:00 1 -1 contend%2:41:00:: 4 -1 contend%2:33:00:: 5 -1 contemptuously%4:02:00:: 1 -1 contemptible%3:00:00:: 1 -1 contemporary%5:00:00:synchronous:00 3 -1 contemporaries%1:14:00:: 1 -1 contemplative%5:00:00:thoughtful:00 1 -1 contemplate%2:31:01:: 4 -1 contaminate%2:30:01:: 2 -1 contact_sport%1:04:00:: 1 -1 contact%1:18:00:: 5 -1 contact%1:10:00:: 6 -1 contact%1:06:00:: 7 -1 consummated%3:00:00:: 1 -1 consummate%2:36:00:: 2 -1 consume%2:35:00:: 4 -1 consulting_firm%1:14:00:: 1 -1 construction%1:06:00:: 4 -1 construction%1:04:02:: 5 -1 constriction%1:25:00:: 1 -1 constricting%5:00:00:tight:01 1 -1 constricted%5:00:00:tense:02 1 -1 constrict%2:35:00:: 1 -1 constraining%5:00:00:restrictive:00 1 -1 constrained%5:00:00:obligated(p):00 1 -1 constitution%1:04:00:: 2 -1 constitute%2:41:00:: 2 -1 constellation%1:09:00:: 1 -1 constatation%1:09:00:: 1 -1 constantly%4:02:01:: 3 -1 constancy%1:07:00:: 1 -1 constable%1:18:00:: 1 -1 conspirator%1:18:00:: 1 -1 consoling%5:00:00:reassuring:00 1 -1 consolidation%1:11:00:: 1 -1 consolidation%1:04:00:: 2 -1 consolidated%5:00:00:united:00 1 -1 consolidate%2:30:02:: 2 -1 console%2:37:00:: 1 -1 consistence%1:07:02:: 1 -1 consign%2:40:00:: 2 -1 considered%5:00:00:thoughtful:00 1 -1 consideration%1:10:00:: 3 -1 consideration%1:07:00:: 4 -1 conservatively%4:02:00:: 1 -1 conservative%5:00:00:right:03 2 -1 conservative%5:00:00:moderate:00 3 -1 conservation%1:04:00:: 2 -1 consequently%4:02:01:: 2 -1 conscription%1:04:00:: 1 -1 conscript%2:33:00:: 1 -1 consciousness%1:09:01:: 2 -1 conscience%1:12:00:: 3 -1 conquest%1:04:00:: 2 -1 conqueror%1:18:00:: 1 -1 conquer%2:40:00:: 2 -1 conquer%2:33:00:: 3 -1 connective_tissue%1:08:00:: 1 -1 connection%1:09:00:: 5 -1 connecting%5:00:00:connected:00 1 -1 connect%2:35:01:: 5 -1 connect%2:32:00:: 6 -1 conjunction%1:26:00:: 2 -1 conjunction%1:10:00:: 3 -1 conjugate%2:30:00:: 1 -1 conjoined%5:00:00:joint:00 1 -1 conjoin%2:35:00:: 1 -1 conjecture%2:31:00:: 1 -1 conjecture%1:09:00:: 1 -1 congress_gaiter%1:06:00:: 1 -1 congress%1:14:00:: 2 -1 congratulatory%5:00:00:felicitous:00 1 -1 congratulations%1:10:01:: 1 -1 congratulate%2:37:00:: 3 -1 congo%1:15:00:: 1 -1 congestive%3:01:00:: 1 -1 congestion%1:26:01:: 2 -1 congestion%1:26:00:: 1 -1 congested%5:00:00:full:00 1 -1 congenital%5:00:00:noninheritable:00 1 -1 confusing%5:00:00:unclear:00 2 -1 confusing%5:00:00:disorienting:00 1 -1 confused%3:00:00:: 5 -1 confrontation%1:10:01:: 1 -1 confrere%1:18:00:: 1 -1 conformity%1:09:00:: 3 -1 conform_to%2:30:00:: 3 -1 conform%2:42:06:: 1 -1 conform%2:30:01:: 2 -1 confluent%5:00:00:convergent:00 1 -1 conflict%2:41:11:: 2 -1 confirmed%3:00:00:: 2 -1 confirmation%1:10:00:: 2 -1 confirm%2:41:01:: 4 -1 confining%5:00:00:restrictive:00 1 -1 confines%1:07:00:: 1 -1 confinement%1:26:01:: 1 -1 confinement%1:04:00:: 2 -1 configuration%1:09:00:: 1 -1 configuration%1:07:00:: 2 -1 confiding%5:00:00:trustful:00 1 -1 confidentiality%1:26:00:: 1 -1 confide%2:40:00:: 2 -1 confidante%1:18:00:: 1 -1 confessor%1:18:00:: 1 -1 confession%1:10:01:: 2 -1 confession%1:04:00:: 3 -1 conference_room%1:06:00:: 1 -1 confer%2:32:00:: 1 -1 confederate_flag%1:10:00:: 1 -1 confederate%1:18:02:: 1 -1 confederacy%1:15:00:: 1 -1 confederacy%1:14:00:: 2 -1 conestoga_wagon%1:06:00:: 1 -1 conductor%1:27:00:: 2 -1 conductor%1:18:01:: 3 -1 conduct%2:38:00:: 5 -1 condone%2:32:00:: 1 -1 conditioner%1:04:00:: 1 -1 conditioned_response%1:04:00:: 1 -1 conditional%5:00:00:qualified:02 1 -1 condition%2:41:00:: 2 -1 condition%2:32:00:: 3 -1 condition%1:09:00:: 4 -1 condenser%1:06:01:: 1 -1 condensed_milk%1:13:00:: 1 -1 condensed%3:00:01:: 3 -1 condense%2:30:00:: 2 -1 condemned%5:00:00:guilty:00 1 -1 condemned%5:00:00:disapproved:00 2 -1 condemnatory%5:00:00:inculpatory:00 1 -1 condemnation%1:10:01:: 3 -1 condemn%2:41:00:: 3 -1 condemn%2:39:00:: 4 -1 condemn%2:32:01:: 5 -1 concussion%1:11:01:: 2 -1 concussion%1:11:00:: 1 -1 concurrence%1:10:00:: 1 -1 concurrence%1:04:00:: 2 -1 concur%2:30:00:: 2 -1 concretely%4:02:00:: 1 -1 concord%1:15:00:: 1 -1 concoct%2:35:00:: 1 -1 conclusion%1:28:00:: 3 -1 conclusion%1:11:00:: 4 -1 conclusion%1:10:01:: 5 -1 conclusion%1:04:00:: 6 -1 conclude%2:32:01:: 3 -1 conclave%1:14:00:: 1 -1 conciseness%1:10:00:: 1 -1 concise%3:00:00:: 1 -1 conciliatory%3:00:04:: 1 -1 conciliating%3:00:00:: 1 -1 conciliate%2:37:00:: 1 -1 concession%1:10:02:: 2 -1 concertina%1:06:01:: 1 -1 concerted%5:00:00:joint:00 1 -1 concert_hall%1:06:00:: 1 -1 conceptually%4:02:00:: 1 -1 conceptualization%1:04:00:: 1 -1 conceptual%5:00:00:abstract:00 1 -1 conception%1:09:03:: 4 -1 concentration%1:04:02:: 6 -1 concentrate%2:38:00:: 5 -1 concentrate%1:13:00:: 2 -1 concentrate%1:09:00:: 3 -1 conceit%1:12:00:: 1 -1 concealed%3:00:00:: 2 -1 conceal%2:39:00:: 2 -1 con_game%1:04:00:: 1 -1 con%2:41:00:: 1 -1 con%1:10:00:: 1 -1 computation%1:09:00:: 2 -1 compunction%1:12:00:: 1 -1 compulsively%4:02:00:: 1 -1 compulsion%1:16:00:: 2 -1 compulsion%1:04:00:: 3 -1 compromising%3:00:00:: 1 -1 compromise%1:10:00:: 2 -1 comprise%2:42:03:: 3 -1 compressed%5:00:00:compressible:00 2 -1 compressed%5:00:00:closed:03 1 -1 comprehend%2:39:00:: 2 -1 compounding%1:04:00:: 1 -1 compound%1:27:00:: 2 -1 compound%1:06:00:: 3 -1 composition%1:10:01:: 4 -1 composition%1:04:02:: 5 -1 composition%1:04:01:: 6 -1 composing%1:07:00:: 1 -1 compose%2:37:00:: 5 -1 comportment%1:07:00:: 1 -1 comply%2:42:00:: 2 -1 complimentary%3:00:00:: 1 -1 compliment%2:32:01:: 2 -1 compliance%1:04:02:: 1 -1 complexion%1:07:00:: 1 -1 complex%1:27:00:: 2 -1 complete%2:33:00:: 4 -1 complete%2:32:00:: 5 -1 complementary%5:00:00:inessential:00 1 -1 complement%1:23:00:: 2 -1 complement%1:14:00:: 3 -1 complement%1:07:00:: 4 -1 complaisance%1:07:00:: 1 -1 complaint%1:10:02:: 3 -1 complaint%1:10:01:: 2 -1 complaint%1:10:00:: 4 -1 compiling%1:04:00:: 1 -1 competitively%4:02:00:: 1 -1 competitive%5:00:00:aggressive:00 3 -1 competently%4:02:00:: 1 -1 compensatory%5:00:00:counteractive:00 1 -1 compensate%2:40:01:: 2 -1 compatriot%1:18:00:: 1 -1 compatible%5:00:00:congenial:00 2 -1 compassionately%4:02:00:: 1 -1 compassionate%5:00:00:merciful:00 1 -1 compassion%1:07:00:: 2 -1 compartment%1:06:00:: 2 -1 comparable%5:00:00:same:00 2 -1 company_operator%1:18:00:: 1 -1 companionship%1:26:00:: 1 -1 compact%5:00:00:concentrated:00 2 -1 compact%1:06:00:: 1 -1 commute%2:30:01:: 4 -1 commutator%1:06:00:: 1 -1 commutation%1:04:00:: 1 -1 communize%2:30:01:: 1 -1 community_college%1:14:00:: 1 -1 community%1:26:00:: 5 -1 community%1:14:01:: 6 -1 communistic%3:01:00:: 1 -1 communist_china%1:15:00:: 1 -1 communique%1:10:00:: 1 -1 communication%1:24:00:: 3 -1 communicating%1:10:00:: 1 -1 commune%1:14:00:: 2 -1 communal%3:01:02:: 2 -1 commonplace%5:00:02:ordinary:00 2 -1 commonplace%5:00:00:unexciting:00 3 -1 commonplace%1:10:00:: 1 -1 commoner%1:18:00:: 1 -1 common_soldier%1:18:00:: 1 -1 common_law%1:10:00:: 1 -1 common_iliac_artery%1:08:00:: 1 -1 common%5:00:00:lowborn:00 6 -1 common%1:15:00:: 1 -1 committee_member%1:18:00:: 1 -1 committee%1:14:01:: 2 -1 commitment%1:04:02:: 3 -1 commit%2:40:05:: 5 -1 commit%2:40:00:: 4 -1 commission%1:21:00:: 2 -1 commission%1:04:02:: 3 -1 commissary%1:06:00:: 1 -1 commiseration%1:12:00:: 1 -1 commiserate%2:37:00:: 1 -1 commie%1:18:00:: 1 -1 commercialization%1:04:00:: 1 -1 commercialism%1:04:00:: 1 -1 commercial_enterprise%1:14:00:: 1 -1 commercial_art%1:06:00:: 1 -1 comment%2:32:10:: 2 -1 commend%2:36:00:: 2 -1 commend%2:32:03:: 3 -1 commanding%5:00:00:high:01 2 -1 commandeer%2:35:00:: 1 -1 command%2:42:00:: 4 -1 command%2:41:00:: 5 -1 command%1:26:00:: 5 -1 command%1:09:00:: 6 -1 coming%5:00:02:future:00 2 -1 comically%4:02:00:: 1 -1 comic_book%1:10:00:: 1 -1 comforting%5:00:00:satisfactory:00 1 -1 comforting%5:00:00:reassuring:00 2 -1 comforted%5:00:00:comfortable:01 1 -1 comfort%2:29:00:: 2 -1 cometary%3:01:00:: 1 -1 comet%1:17:00:: 1 -1 comer%1:18:01:: 1 -1 come_upon%2:40:01:: 2 -1 come_up%2:42:01:: 7 -1 come_up%2:35:00:: 8 -1 come_to_the_fore%2:38:00:: 1 -1 come_to_light%2:30:00:: 1 -1 come_through%2:38:00:: 2 -1 come_over%2:32:00:: 1 -1 come_out%2:38:01:: 7 -1 come_off%2:30:00:: 2 -1 come_of_age%2:41:00:: 1 -1 come_in_handy%2:42:00:: 1 -1 come_in%2:42:00:: 3 -1 come_in%2:32:00:: 4 -1 come_home%2:31:13:: 1 -1 come_forward%2:38:00:: 1 -1 come_down%2:43:00:: 3 -1 come_down%2:29:00:: 4 -1 come_back%2:38:01:: 4 -1 come_back%2:32:01:: 5 -1 come_away%2:38:00:: 2 -1 come_around%2:31:00:: 1 -1 come_alive%2:29:00:: 1 -1 come%2:42:12:: 16 -1 come%2:42:11:: 17 -1 come%2:38:02:: 18 -1 come%2:31:14:: 19 -1 combo%1:14:00:: 1 -1 combined%3:00:00:: 2 -1 combine%2:35:03:: 6 -1 combine%2:30:00:: 7 -1 combine%1:06:00:: 1 -1 combination_in_restraint_of_trade%1:14:00:: 1 -1 combinable%5:00:00:combinative:00 1 -1 combatant%5:00:00:military:01 1 -1 combat_mission%1:04:00:: 1 -1 combat%1:04:01:: 2 -1 comb%2:35:01:: 1 -1 comb%2:35:00:: 2 -1 comb%2:29:00:: 3 -1 comb%1:05:01:: 2 -1 coma%1:09:00:: 1 -1 columnlike%5:00:00:columned:00 1 -1 columnist%1:18:00:: 1 -1 columned%3:00:00:: 1 -1 column_chromatography%1:22:00:: 1 -1 column%1:06:01:: 6 -1 column%1:06:00:: 7 -1 columbine%1:20:00:: 1 -1 colt%1:06:00:: 2 -1 colour%3:00:02:: 1 -1 colorless%3:00:01:: 1 -1 coloratura%1:18:00:: 1 -1 color_tv%1:06:00:: 1 -1 color_scheme%1:14:00:: 1 -1 color%2:41:00:: 3 -1 color%1:07:04:: 5 -1 colonize%2:41:00:: 1 -1 colonial%1:18:00:: 1 -1 colombian%3:01:00:: 1 -1 colloquial%5:00:01:informal:02 1 -1 collision%1:04:00:: 2 -1 collide_with%2:35:00:: 1 -1 collegiate%3:01:00:: 1 -1 collegian%1:18:00:: 1 -1 college_level%1:26:00:: 1 -1 college_girl%1:18:00:: 1 -1 collector%1:18:00:: 2 -1 collector%1:17:00:: 3 -1 collectively%4:02:00:: 1 -1 collective%1:14:00:: 1 -1 collection%1:10:01:: 3 -1 collection%1:10:00:: 2 -1 collection%1:04:00:: 4 -1 collect%2:35:02:: 6 -1 colleague%1:18:01:: 2 -1 collate%2:31:00:: 1 -1 collar%2:35:00:: 1 -1 collapsible%3:00:00:: 1 -1 collapse%1:04:01:: 3 -1 collaborator%1:18:02:: 1 -1 coleridge%1:18:00:: 1 -1 coldness%1:09:00:: 1 -1 coldness%1:07:01:: 2 -1 cold_sweat%1:26:00:: 1 -1 cold_spell%1:19:00:: 1 -1 cold_sober%5:00:00:sober:01 1 -1 cold-bloodedly%4:02:00:: 1 -1 cold-blooded%5:00:00:inhumane:00 1 -1 cold%5:00:00:stale:00 3 -1 coil%1:06:00:: 1 -1 cohesiveness%1:26:00:: 1 -1 cohere%2:35:00:: 1 -1 cognizance%1:09:00:: 1 -1 cognate%5:00:02:related:02 1 -1 coffeepot%1:06:00:: 1 -1 coffeehouse%1:06:00:: 1 -1 coffee_break%1:13:00:: 1 -1 coexistent%5:00:00:synchronous:00 1 -1 coexist%2:42:01:: 1 -1 codify%2:30:01:: 1 -1 codification%1:10:00:: 2 -1 code_of_conduct%1:09:00:: 1 -1 code%2:35:00:: 1 -1 code%1:10:00:: 2 -1 cocoon%1:05:00:: 1 -1 coconut%1:13:00:: 2 -1 coco_palm%1:20:00:: 1 -1 cockroach%1:05:00:: 1 -1 cockeyed%5:00:00:crooked:01 1 -1 cockatoo%1:05:00:: 1 -1 coccidiosis%1:26:00:: 1 -1 coccidioidomycosis%1:26:00:: 1 -1 cocaine%1:06:00:: 1 -1 coca_cola%1:13:00:: 1 -1 cobbler%1:18:00:: 1 -1 cobalt_blue%1:07:00:: 1 -1 coaxial%5:00:00:concentric:00 1 -1 coattail%1:06:00:: 1 -1 coating%1:06:00:: 1 -1 coated%3:00:00:: 1 -1 coat%2:29:00:: 2 -1 coat%1:06:01:: 2 -1 coastal%3:01:00:: 1 -1 coastal%3:00:00:: 2 -1 coast%2:38:00:: 1 -1 coarsened%5:00:00:inferior:02 1 -1 coarsely%4:02:00:: 1 -1 coarse%5:00:00:unrefined:01 2 -1 coarse%3:00:00:: 1 -1 coalition%1:14:00:: 1 -1 coalescence%1:04:00:: 1 -1 coalesce%2:35:00:: 2 -1 coagulate%2:30:00:: 1 -1 coaching_job%1:04:00:: 1 -1 coaching%1:04:00:: 1 -1 coach%2:38:00:: 2 -1 co-opt%2:41:02:: 1 -1 clutches%1:04:00:: 1 -1 clutch%2:35:04:: 2 -1 clutch%1:26:00:: 2 -1 clumsy%5:00:00:infelicitous:00 2 -1 clumsily%4:02:00:: 1 -1 clump%1:14:01:: 2 -1 clubfoot%1:26:00:: 1 -1 club%1:06:01:: 5 -1 clowning%1:04:00:: 1 -1 clown%1:18:01:: 1 -1 clown%1:18:00:: 2 -1 clover%1:20:00:: 1 -1 cloudy%5:00:00:indistinct:00 1 -1 clouded%5:00:00:cloudy:00 2 -1 cloudburst%1:19:00:: 1 -1 cloud_over%2:43:00:: 1 -1 cloud%2:43:00:: 1 -1 cloud%2:39:00:: 2 -1 cloud%2:38:00:: 3 -1 cloud%1:26:01:: 3 -1 clotted%5:00:00:thick:02 1 -1 clothesline%1:06:00:: 1 -1 clothesbrush%1:06:00:: 1 -1 clothed%3:00:00:: 1 -1 clot%2:30:01:: 1 -1 clot%1:08:00:: 1 -1 closure%1:04:02:: 1 -1 closing_off%1:04:00:: 1 -1 closet%1:06:02:: 3 -1 closet%1:06:01:: 2 -1 closer%5:00:00:close:01 1 -1 closely_knit%5:00:00:close:02 1 -1 closed_circuit%1:06:00:: 1 -1 closed%5:00:00:union:00 5 -1 close_off%2:42:00:: 1 -1 close_at_hand%5:00:00:close:01 1 -1 close-packed%5:00:00:compact:00 1 -1 close%5:00:00:confined:00 7 -1 close%2:32:05:: 6 -1 close%1:11:00:: 2 -1 clonic%3:01:00:: 1 -1 clomp%2:38:00:: 1 -1 clogging%5:00:00:preventive:00 1 -1 clogged%5:00:00:thick:02 1 -1 clodhopper%1:06:00:: 1 -1 clod%1:18:00:: 2 -1 clockwise%3:00:00:: 1 -1 clocking%1:28:00:: 1 -1 clock%2:30:00:: 1 -1 cloak%1:06:01:: 1 -1 clique%1:14:00:: 1 -1 clip%1:11:00:: 2 -1 clip%1:06:01:: 3 -1 clink%2:39:01:: 1 -1 clinically%4:02:00:: 1 -1 clinical%5:00:00:objective:00 2 -1 clinch%1:04:00:: 1 -1 climb_on%2:38:00:: 1 -1 climax%1:04:00:: 3 -1 clientele%1:14:00:: 1 -1 client%1:18:01:: 2 -1 clickety-click%1:11:00:: 1 -1 click_open%2:35:00:: 1 -1 click_off%2:30:00:: 1 -1 click%2:39:00:: 2 -1 cleverness%1:09:01:: 1 -1 cleverly%4:02:00:: 1 -1 clever%5:00:00:intelligent:00 3 -1 clerking%1:04:00:: 1 -1 clerical%3:01:00:: 2 -1 cleric%1:18:00:: 1 -1 clench%2:35:02:: 2 -1 clench%2:35:01:: 1 -1 cleave%2:35:00:: 1 -1 cleat%1:06:02:: 1 -1 clearly%4:02:03:: 4 -1 clearing_house%1:14:00:: 1 -1 clearheaded%3:00:00:: 1 -1 clearance%1:07:00:: 1 -1 clear_up%2:30:02:: 2 -1 clear_up%2:30:00:: 3 -1 clear%5:00:01:pure:02 7 -1 clear%5:00:00:untroubled:00 6 -1 clear%5:00:00:unencumbered:00 8 -1 clear%5:00:00:distinct:00 9 -1 clear%2:41:01:: 6 -1 clear%2:40:07:: 7 -1 clear%2:39:05:: 8 -1 clear%2:38:00:: 9 -1 clear%2:31:00:: 10 -1 cleansing%5:00:00:purifying:00 1 -1 cleansing%1:04:00:: 1 -1 cleanse%2:29:00:: 1 -1 cleaned%5:00:00:clean:01 1 -1 clean_slate%1:26:00:: 1 -1 clean-shaven%5:00:00:shaven:00 1 -1 clean%5:00:01:pure:02 3 -1 clean%5:00:00:pure:02 4 -1 clean%5:00:00:perfect:00 5 -1 clean%4:02:04:: 1 -1 clean%2:29:00:: 4 -1 clean%1:04:00:: 1 -1 claw%2:38:00:: 1 -1 claw%2:35:01:: 2 -1 claw%1:06:00:: 2 -1 claw%1:05:02:: 3 -1 claustrophobia%1:26:00:: 1 -1 clause%1:10:01:: 2 -1 clattering%5:00:00:noisy:00 1 -1 classmate%1:18:00:: 1 -1 classless%5:00:00:democratic:00 1 -1 classifier%1:18:00:: 1 -1 classificatory%3:01:00:: 1 -1 classics%1:09:00:: 1 -1 classicist%1:18:00:: 1 -1 classically%4:02:00:: 1 -1 classic%1:18:00:: 2 -1 clash%2:35:00:: 1 -1 clash%1:26:00:: 2 -1 clarity%1:07:00:: 2 -1 claret%1:07:00:: 1 -1 clap%2:38:04:: 2 -1 clap%2:32:00:: 3 -1 clap%2:29:00:: 4 -1 clannishness%1:07:00:: 1 -1 clannish%5:00:00:joint:00 1 -1 clank%2:39:00:: 1 -1 clangoring%1:11:00:: 1 -1 clanging%5:00:00:noisy:00 1 -1 clang%1:11:00:: 1 -1 clandestine%5:00:00:covert:00 1 -1 clan%1:14:00:: 1 -1 clamp%2:32:00:: 2 -1 clamorous%5:00:00:noisy:00 1 -1 clamoring%1:10:00:: 1 -1 clairvoyance%1:10:00:: 1 -1 claim%2:32:01:: 5 -1 civil_rights%1:07:00:: 1 -1 civil_authority%1:18:00:: 1 -1 civil%3:00:00:: 2 -1 civic_center%1:06:00:: 1 -1 city_university%1:06:00:: 1 -1 city_council%1:14:00:: 1 -1 city%1:14:00:: 3 -1 citrus%1:13:00:: 1 -1 citron%1:13:00:: 1 -1 citrate%2:30:00:: 1 -1 circus%1:04:01:: 3 -1 circumspect%5:00:00:prudent:00 1 -1 circumscribe%2:35:00:: 1 -1 circumscribe%2:30:00:: 2 -1 circumference%1:07:00:: 1 -1 circulatory_system%1:08:00:: 1 -1 circulation%1:19:00:: 2 -1 circulate%2:38:03:: 3 -1 circulate%2:38:01:: 4 -1 circuitry%1:06:00:: 1 -1 circle%2:42:00:: 3 -1 cipher%2:32:00:: 1 -1 cipher%1:10:01:: 1 -1 cinema%1:10:00:: 1 -1 cilium%1:05:00:: 1 -1 ciliate%1:05:00:: 1 -1 cigar_butt%1:06:00:: 1 -1 cigar_box%1:06:00:: 1 -1 cicada%1:05:00:: 1 -1 chute%1:06:01:: 1 -1 chute%1:06:00:: 2 -1 churning%5:00:02:agitated:02 1 -1 churning%5:00:00:agitated:02 2 -1 churn%2:35:00:: 1 -1 churchman%1:18:00:: 1 -1 churchlike%5:00:00:religious:00 1 -1 churchillian%3:01:00:: 1 -1 churchgoer%1:18:00:: 1 -1 church_tower%1:06:00:: 1 -1 church_service%1:04:00:: 1 -1 church_roll%1:10:00:: 1 -1 church_of_rome%1:14:00:: 1 -1 church_member%1:18:00:: 1 -1 church-state%1:14:00:: 1 -1 chunky%5:00:00:unshapely:00 1 -1 chump%1:18:00:: 1 -1 chug%2:39:00:: 1 -1 chuff%2:29:00:: 1 -1 chuckle%1:10:00:: 1 -1 chuck_wagon%1:06:00:: 1 -1 chuck%1:13:02:: 1 -1 chrysanthemum%1:20:01:: 1 -1 chronologically%4:02:00:: 1 -1 chronicle%2:32:00:: 1 -1 chromic_acid%1:27:00:: 1 -1 chromatogram%1:06:00:: 1 -1 christmas_eve%1:28:00:: 1 -1 christian%3:00:00:: 2 -1 christening%1:04:00:: 1 -1 christendom%1:14:00:: 1 -1 chorus%2:32:00:: 1 -1 chorus%1:14:00:: 2 -1 chorus%1:10:00:: 3 -1 choreographic%3:01:00:: 1 -1 chopping_block%1:06:00:: 1 -1 chopper%1:04:00:: 1 -1 chopin%1:10:00:: 1 -1 chop_down%2:35:00:: 1 -1 choosy%5:00:00:fastidious:00 1 -1 choose_up%2:41:00:: 1 -1 chomp%1:04:00:: 1 -1 cholelithiasis%1:26:00:: 1 -1 choking%5:00:00:breathless:00 1 -1 choke_off%2:35:00:: 2 -1 choke%2:35:02:: 3 -1 choke%2:29:04:: 4 -1 choke%2:29:03:: 5 -1 choirboy%1:18:00:: 1 -1 chocolate%1:13:02:: 1 -1 chockful%5:00:00:full:00 1 -1 chock%1:06:00:: 1 -1 chlorpromazine%1:06:00:: 1 -1 chivy%2:37:00:: 1 -1 chivalry%1:07:00:: 1 -1 chivalrous%5:00:00:courteous:00 1 -1 chirp%2:32:00:: 1 -1 chipper%5:00:00:cheerful:00 1 -1 chip%2:35:03:: 2 -1 chip%2:35:01:: 1 -1 chip%1:17:00:: 1 -1 chip%1:06:02:: 2 -1 chinning_bar%1:06:00:: 1 -1 chinked%5:00:00:caulked:00 1 -1 chinese%1:10:00:: 1 -1 chin_up%2:38:00:: 1 -1 chin_music%1:10:00:: 1 -1 chimney_corner%1:06:00:: 1 -1 chilly%5:00:00:unemotional:00 2 -1 chilly%5:00:00:cool:01 1 -1 chill%2:30:01:: 2 -1 chill%1:26:01:: 3 -1 childlike%5:00:00:naive:00 2 -1 childishness%1:07:00:: 1 -1 child_welfare_service%1:14:00:: 1 -1 child_care%1:04:00:: 1 -1 child%1:18:06:: 3 -1 chignon%1:08:00:: 1 -1 chief_justice%1:18:00:: 1 -1 chief%1:18:01:: 2 -1 chic%5:00:00:stylish:00 1 -1 cheyenne%1:10:00:: 2 -1 chewing_out%1:10:00:: 1 -1 chew_over%2:31:00:: 1 -1 chevaux-de-frise%1:06:00:: 1 -1 chestnut%5:00:00:chromatic:00 1 -1 chest%1:06:00:: 2 -1 chess_set%1:14:00:: 1 -1 cherry_bomb%1:06:00:: 1 -1 cherokee%1:10:00:: 1 -1 chemistry_laboratory%1:06:00:: 1 -1 chemist%1:18:01:: 2 -1 chemical_reaction%1:22:00:: 1 -1 chemical_formula%1:10:00:: 1 -1 chela%1:18:00:: 1 -1 cheesecloth%1:06:00:: 1 -1 cheerfulness%1:07:00:: 1 -1 cheer%2:37:02:: 1 -1 cheer%2:32:02:: 2 -1 cheekbone%1:08:00:: 1 -1 cheek_by_jowl%4:02:00:: 1 -1 checkup%1:04:00:: 1 -1 checkout%1:04:00:: 1 -1 check_out%2:32:00:: 2 -1 check_mark%1:10:00:: 1 -1 check_into%2:31:00:: 1 -1 check%2:38:15:: 5 -1 check%2:31:01:: 6 -1 check%2:30:02:: 7 -1 check%1:26:00:: 4 -1 check%1:09:01:: 5 -1 check%1:04:05:: 7 -1 check%1:04:03:: 6 -1 cheat%2:41:01:: 3 -1 cheap_money%1:21:00:: 1 -1 cheap%5:00:00:tasteless:02 2 -1 cheap%5:00:00:inferior:02 3 -1 chaulmoogra_oil%1:27:00:: 1 -1 chattering%1:11:01:: 1 -1 chatter%2:39:00:: 1 -1 chatter%2:35:00:: 2 -1 chatter%2:32:01:: 3 -1 chatter%2:32:00:: 4 -1 chastity%1:04:00:: 1 -1 chastisement%1:04:00:: 1 -1 charter%2:41:01:: 1 -1 chart%2:31:00:: 2 -1 charnel%1:06:00:: 1 -1 charm%1:10:00:: 2 -1 charm%1:06:00:: 3 -1 charleston%1:15:01:: 1 -1 charlatan%1:18:00:: 1 -1 charity%1:07:00:: 2 -1 charity%1:04:00:: 3 -1 charitable%3:00:00:: 2 -1 charisma%1:07:00:: 1 -1 chariot%1:06:00:: 1 -1 charged%5:00:00:emotional:00 2 -1 charge%2:40:02:: 9 -1 charge%1:18:00:: 7 -1 charcoal_gray%1:07:00:: 1 -1 charcoal%2:36:00:: 1 -1 character%1:26:00:: 6 -1 character%1:10:01:: 7 -1 chap%1:18:00:: 1 -1 chaotic%5:00:00:wild:02 2 -1 chantlike%5:00:00:rhythmical:00 1 -1 chanted%5:00:00:musical:01 1 -1 channel%2:38:01:: 1 -1 channel%1:06:00:: 2 -1 change_over%2:30:01:: 1 -1 change%1:06:01:: 6 -1 change%1:06:00:: 7 -1 chandelle%2:38:00:: 1 -1 chancel%1:06:00:: 1 -1 chance%2:41:00:: 2 -1 champion%2:33:00:: 1 -1 champion%1:18:00:: 2 -1 champ%1:18:00:: 1 -1 chambered%5:00:00:divided:00 1 -1 chamber%2:42:00:: 1 -1 chamber%1:08:00:: 2 -1 chamber%1:06:02:: 3 -1 challenge%2:32:03:: 3 -1 challenge%2:32:02:: 4 -1 challenge%1:10:01:: 3 -1 chalk_up%2:40:00:: 1 -1 chalk_up%2:32:00:: 2 -1 chaise%1:06:01:: 1 -1 chairman_of_the_board%1:18:00:: 1 -1 chain_store%1:06:00:: 1 -1 chain%1:14:02:: 4 -1 chain%1:06:03:: 5 -1 chaff%2:32:00:: 1 -1 cha-cha%1:04:00:: 1 -1 cerulean_blue%1:27:00:: 1 -1 certitude%1:09:00:: 1 -1 certiorari%1:10:00:: 1 -1 certification%1:10:00:: 2 -1 certainty%1:07:00:: 2 -1 ceremonially%4:02:01:: 1 -1 cerebrate%2:31:00:: 1 -1 cerebral_palsy%1:26:00:: 1 -1 cerebral%3:01:00:: 2 -1 cerebellum%1:08:00:: 1 -1 ceramic%3:01:00:: 1 -1 centralization%1:04:00:: 1 -1 central_nervous_system%1:08:00:: 1 -1 central_heating%1:06:00:: 1 -1 central_american%3:01:00:: 1 -1 centering%1:09:00:: 1 -1 center_on%2:42:01:: 2 -1 center_line%1:25:00:: 1 -1 center%1:18:01:: 9 -1 center%1:18:00:: 10 -1 center%1:15:02:: 11 -1 center%1:14:00:: 12 -1 centennial%1:28:00:: 1 -1 centenary%3:01:00:: 1 -1 census%1:04:00:: 1 -1 censure%1:10:00:: 1 -1 censorship%1:04:01:: 1 -1 cement%1:27:01:: 3 -1 celtic%3:01:00:: 1 -1 cellulose_acetate%1:27:00:: 1 -1 cell%1:06:00:: 3 -1 celiac_artery%1:08:00:: 1 -1 celestial_body%1:17:00:: 1 -1 celestial%5:00:00:heavenly:00 3 -1 celestial%3:01:00:: 2 -1 celerity%1:07:00:: 1 -1 celebrity%1:18:00:: 1 -1 celebration%1:04:00:: 2 -1 cease%2:30:12:: 3 -1 caw%2:32:00:: 1 -1 cavity%1:17:00:: 1 -1 cavern%1:17:01:: 1 -1 cavern%1:17:00:: 2 -1 caveman%1:18:00:: 1 -1 caveat%1:10:01:: 1 -1 cavalryman%1:18:01:: 1 -1 cavalryman%1:18:00:: 2 -1 cavalcade%1:14:00:: 1 -1 cautious%1:14:00:: 1 -1 causative%3:00:00:: 1 -1 causally%4:02:00:: 1 -1 causal_factor%1:09:00:: 1 -1 caucus%2:41:00:: 1 -1 cattle_thief%1:18:00:: 1 -1 cathedral%3:01:02:: 1 -1 caterpillar%1:05:00:: 1 -1 caterer%1:18:00:: 1 -1 categorized%5:00:00:classified:01 1 -1 categorize%2:31:00:: 1 -1 categorize%2:30:00:: 2 -1 catecholamine%1:27:00:: 1 -1 catechize%2:32:00:: 1 -1 catching%1:04:00:: 1 -1 catch_one's_breath%2:32:00:: 1 -1 catch_on%2:30:00:: 2 -1 catch_it%2:41:00:: 1 -1 catch_fire%2:43:00:: 1 -1 catch_a_wink%2:29:00:: 1 -1 catch%2:41:13:: 13 -1 catch%2:39:02:: 15 -1 catch%2:39:00:: 14 -1 catch%2:35:08:: 16 -1 catch%2:31:03:: 18 -1 catch%2:31:00:: 17 -1 catch%2:29:10:: 19 -1 catch%1:07:00:: 1 -1 catatonic%3:01:00:: 1 -1 catastrophic%5:00:02:harmful:00 1 -1 catastrophe%1:26:00:: 2 -1 catapultian%3:01:00:: 1 -1 catapult%2:35:01:: 2 -1 catalogue%2:36:00:: 2 -1 catalog%1:10:01:: 2 -1 casually%4:02:01:: 1 -1 casually%4:02:00:: 2 -1 casual%5:00:01:unplanned:00 4 -1 casual%5:00:00:careless:00 5 -1 castle%1:06:00:: 2 -1 castigation%1:10:00:: 1 -1 castigate%2:32:00:: 1 -1 castanets%1:06:00:: 1 -1 cast_off%2:35:00:: 1 -1 cast_iron%1:27:00:: 1 -1 cast_down%2:37:00:: 1 -1 cast_around%2:31:00:: 1 -1 cast%5:00:00:formed:00 1 -1 cast%2:35:00:: 4 -1 cast%1:06:03:: 2 -1 cassocked%5:00:00:clothed:00 1 -1 cassite%1:10:00:: 1 -1 casino%1:06:00:: 1 -1 cashmere%1:06:00:: 1 -1 cash_register%1:06:00:: 1 -1 cash_in_on%2:40:00:: 1 -1 cash_basis%1:21:00:: 1 -1 casebook%5:00:00:standard:01 1 -1 case_load%1:04:00:: 1 -1 case_history%1:10:00:: 1 -1 case%2:39:00:: 1 -1 case%1:10:00:: 11 -1 cascade_down%2:38:00:: 1 -1 cascade%2:38:00:: 1 -1 cartwheel%1:06:00:: 1 -1 cartwheel%1:04:00:: 2 -1 cartridge_belt%1:06:00:: 1 -1 carton%1:23:00:: 1 -1 cartilage%1:08:00:: 1 -1 cartesian%3:01:00:: 1 -1 cart_off%2:35:00:: 1 -1 cart%2:35:00:: 1 -1 cart%1:06:01:: 2 -1 carrying_into_action%1:04:00:: 1 -1 carry_out%2:41:02:: 4 -1 carry_on%2:42:00:: 2 -1 carry_on%2:32:00:: 3 -1 carry_forward%2:38:00:: 1 -1 carry-over%1:09:00:: 1 -1 carry%2:41:01:: 13 -1 carry%2:40:00:: 14 -1 carry%2:36:00:: 15 -1 carry%2:35:08:: 16 -1 carry%2:32:07:: 17 -1 carry%1:04:00:: 1 -1 carrier%1:27:00:: 4 -1 carrier%1:14:00:: 5 -1 carping%5:00:00:critical:01 1 -1 carping%1:10:00:: 1 -1 carnival%1:04:00:: 1 -1 carload%1:14:00:: 1 -1 caricature%2:32:00:: 1 -1 caribbean_island%1:15:00:: 1 -1 caribbean%1:17:00:: 1 -1 careworn%5:00:00:tired:00 1 -1 caretaker%1:18:00:: 1 -1 caressingly%4:02:00:: 1 -1 caressing%5:00:00:loving:00 1 -1 carelessness%1:07:00:: 1 -1 carelessness%1:04:00:: 2 -1 carelessly%4:02:02:: 1 -1 careless%5:00:00:artless:00 2 -1 careful%5:00:00:unhurried:00 3 -1 careerism%1:04:00:: 1 -1 careen%2:38:01:: 1 -1 care_a_hang%2:37:00:: 1 -1 care%2:37:12:: 5 -1 care%1:12:01:: 3 -1 care%1:12:00:: 4 -1 care%1:04:02:: 5 -1 care%1:04:00:: 6 -1 cards%1:04:00:: 1 -1 cardroom%1:06:00:: 1 -1 cardiovascular%3:01:00:: 1 -1 cardiomegaly%1:26:00:: 1 -1 cardboard%1:27:00:: 1 -1 card_table%1:06:01:: 1 -1 card-playing%5:00:00:indulgent:00 1 -1 card%1:10:00:: 3 -1 carboxymethyl_cellulose%1:27:00:: 1 -1 carbonate%1:27:00:: 1 -1 carbon_tetrahalide%1:27:00:: 1 -1 carbon_dioxide%1:27:00:: 1 -1 caravan%1:14:00:: 1 -1 carabao%1:05:00:: 1 -1 car_door%1:06:00:: 1 -1 capture%2:40:01:: 4 -1 capture%2:40:00:: 5 -1 capture%2:35:00:: 6 -1 capture%1:22:01:: 2 -1 captor%1:18:00:: 1 -1 captivity%1:26:01:: 2 -1 captive%5:00:00:unfree:00 1 -1 captive%1:18:01:: 1 -1 captive%1:18:00:: 2 -1 captivating%5:00:00:attractive:01 1 -1 capstan%1:06:00:: 1 -1 capitulate%2:33:00:: 1 -1 capitalistic%3:00:00:: 1 -1 capitalist%1:18:01:: 1 -1 capital_punishment%1:04:00:: 1 -1 capital_loss%1:21:00:: 1 -1 capital%1:10:00:: 4 -1 capillary_tubing%1:06:00:: 1 -1 capillary_action%1:19:00:: 1 -1 caper%2:38:00:: 1 -1 cape%1:06:00:: 2 -1 capacity%1:04:01:: 5 -1 capacitance%1:19:00:: 1 -1 capable%5:00:00:competent:00 5 -1 cap%1:06:05:: 3 -1 cap%1:06:03:: 4 -1 canyonside%1:17:00:: 1 -1 canvas%1:26:00:: 3 -1 canvas%1:06:02:: 4 -1 cantle%1:06:00:: 1 -1 cantilever%1:06:00:: 1 -1 cantering%3:44:00:: 1 -1 canter%2:38:00:: 1 -1 canter%1:04:00:: 1 -1 cant%1:10:01:: 1 -1 canonized%5:00:00:authorized:00 1 -1 canonize%2:32:00:: 1 -1 cannon_fodder%1:18:00:: 1 -1 caning%1:06:00:: 1 -1 cane%2:35:00:: 1 -1 candy_store%1:06:00:: 1 -1 candy%1:13:00:: 1 -1 candour%1:07:00:: 1 -1 candlewick%1:06:00:: 1 -1 candle_flame%1:19:00:: 1 -1 candidly%4:02:00:: 1 -1 candidacy%1:04:00:: 1 -1 candid%5:00:00:direct:02 1 -1 canadian%3:01:00:: 1 -1 can%2:41:00:: 3 -1 campmate%1:18:00:: 1 -1 camper_trailer%1:06:00:: 1 -1 camp_site%1:15:00:: 1 -1 camp_out%2:42:00:: 1 -1 camp%1:09:00:: 6 -1 camouflage%2:39:00:: 1 -1 camera_lens%1:06:00:: 1 -1 cambridge%1:06:00:: 1 -1 cambodia%1:15:00:: 1 -1 camaraderie%1:07:00:: 1 -1 calumny%1:10:00:: 1 -1 calumniate%2:32:00:: 1 -1 calorimetric%3:01:00:: 1 -1 calorimeter%1:06:00:: 1 -1 calming%5:00:00:unalarming:00 1 -1 calm%2:30:00:: 2 -1 callousness%1:07:00:: 1 -1 callously%4:02:00:: 1 -1 called_upon%5:00:00:obligated(p):00 1 -1 called_for%5:00:00:appropriate:00 1 -1 call_up%2:32:00:: 2 -1 call_up%2:31:04:: 3 -1 call_off%2:41:00:: 1 -1 call_in%2:41:02:: 4 -1 call_in%2:41:00:: 3 -1 call_in%2:32:00:: 5 -1 call_for%2:32:03:: 4 -1 call_back%2:40:00:: 1 -1 call_back%2:31:00:: 2 -1 call-board%1:06:00:: 1 -1 call-back%1:10:00:: 1 -1 call%2:32:13:: 8 -1 call%2:32:04:: 9 -1 call%2:32:03:: 10 -1 call%1:10:03:: 5 -1 call%1:04:03:: 6 -1 caliph%1:18:00:: 1 -1 californian%1:18:00:: 1 -1 caliche-topped%5:00:00:unpaved:00 1 -1 calibre%1:07:00:: 1 -1 caliber%1:07:01:: 2 -1 calf%1:08:00:: 2 -1 calendar%1:28:00:: 1 -1 calendar%1:10:01:: 2 -1 calculus%1:17:00:: 1 -1 calculatingly%4:02:00:: 1 -1 calculating%5:00:00:hard:02 1 -1 calcium_lactate%1:27:00:: 1 -1 calcium_hydride%1:27:00:: 1 -1 calcify%2:30:02:: 1 -1 calcification%1:22:00:: 1 -1 cagey%5:00:00:smart:00 1 -1 caesar%1:18:00:: 1 -1 cadre%1:14:01:: 1 -1 cadre%1:14:00:: 2 -1 cadmium_yellow%1:27:00:: 1 -1 cadence%1:10:01:: 1 -1 cadaverous%5:00:00:thin:03 1 -1 cadaver%1:08:00:: 1 -1 cackly%5:00:00:cacophonous:00 1 -1 cackle%2:32:00:: 2 -1 cackle%2:29:00:: 3 -1 cache%1:06:00:: 1 -1 cable%2:32:00:: 1 -1 cable%1:06:02:: 2 -1 cable%1:06:00:: 3 -1 cabbage%1:13:00:: 1 -1 bypass%1:06:00:: 1 -1 bygone%5:00:00:past:00 1 -1 bygone%1:28:00:: 1 -1 by_word_of_mouth%4:02:01:: 1 -1 by_nature%4:02:00:: 1 -1 by_luck%4:02:00:: 1 -1 by_heart%4:02:00:: 1 -1 by_hand%4:02:01:: 1 -1 by_design%4:02:00:: 1 -1 by_chance%4:02:01:: 1 -1 by_any_means%4:02:00:: 1 -1 by_all_means%4:02:00:: 1 -1 by_a_long_shot%4:02:00:: 1 -1 buzz%1:11:00:: 1 -1 buzz%1:04:00:: 2 -1 buyer%1:18:00:: 1 -1 buy_time%2:30:00:: 1 -1 buy_it%2:30:00:: 1 -1 buttressed%5:00:00:supported:00 1 -1 buttoned%3:00:00:: 1 -1 button-down%5:00:00:conventional:01 1 -1 buttocks%1:08:00:: 1 -1 butterfat%1:27:00:: 1 -1 butt%2:35:01:: 3 -1 butler%1:18:00:: 1 -1 butcher%2:35:00:: 1 -1 but_then%4:02:00:: 1 -1 busy%5:00:01:active:06 4 -1 busy%5:00:00:intrusive:01 3 -1 busy%5:00:00:fancy:00 2 -1 busy%2:41:00:: 1 -1 bustle_about%2:38:00:: 1 -1 bustle%1:04:00:: 1 -1 busted%5:00:00:broken:01 1 -1 bust%2:35:01:: 1 -1 businessmen%1:14:00:: 1 -1 businesslike%5:00:00:efficient:00 1 -1 business_relationship%1:26:00:: 1 -1 business_organization%1:14:00:: 1 -1 business_leader%1:18:00:: 1 -1 business_firm%1:14:00:: 1 -1 business_executive%1:18:00:: 1 -1 business_enterprise%1:04:00:: 1 -1 business_agent%1:18:00:: 1 -1 business_activity%1:04:00:: 1 -1 bushy%5:00:00:ungroomed:00 1 -1 bushwhacking%5:00:00:concealed:00 1 -1 bushwhacker%1:18:00:: 1 -1 bushwhack%2:33:00:: 1 -1 bush_jacket%1:06:00:: 1 -1 bus_stop%1:15:00:: 1 -1 bus_line%1:06:00:: 1 -1 bus_company%1:14:00:: 1 -1 bury%2:35:02:: 4 -1 bury%2:35:01:: 5 -1 bursting%5:00:00:explosive:00 1 -1 burst_out%2:30:01:: 2 -1 burst%1:04:02:: 3 -1 bursitis%1:26:00:: 1 -1 burr-headed%5:00:00:headed:01 1 -1 burr%1:06:00:: 2 -1 burnt_sienna%1:07:00:: 1 -1 burnt%5:00:00:cooked:00 1 -1 burnish%2:36:00:: 1 -1 burning%5:00:00:passionate:00 3 -1 burning%5:00:00:lighted:00 4 -1 burning%1:04:00:: 1 -1 burner%1:06:00:: 1 -1 burned%5:00:00:injured:00 2 -1 burned%3:44:00:: 1 -1 burn_up%2:43:00:: 1 -1 burn_off%2:34:00:: 1 -1 burn_off%2:30:00:: 2 -1 burn%2:41:00:: 8 -1 burn%2:40:01:: 9 -1 burn%2:39:04:: 10 -1 burn%2:30:08:: 11 -1 burn%2:29:00:: 12 -1 burn%1:26:02:: 2 -1 burn%1:26:00:: 1 -1 burglar%1:18:00:: 1 -1 bureau%1:06:00:: 2 -1 burdened%3:00:00:: 1 -1 buoyant%5:00:00:light:01 1 -1 buoyant%5:00:00:cheerful:00 2 -1 buoy_up%2:32:00:: 1 -1 bunter%1:18:00:: 1 -1 bunt%1:04:00:: 1 -1 bunker%2:35:00:: 1 -1 bunker%1:06:00:: 1 -1 bundled-up%5:00:00:clothed:00 1 -1 bunched%5:00:00:concentrated:00 1 -1 bunch%2:35:00:: 2 -1 bunch%1:14:02:: 3 -1 bump_into%2:35:00:: 1 -1 bump%2:40:12:: 2 -1 bump%2:38:00:: 3 -1 bum%2:40:00:: 1 -1 bum%1:18:01:: 2 -1 bullyboy%1:18:00:: 1 -1 bully%5:00:00:good:01 1 -1 bully%1:18:00:: 1 -1 bullshit%2:32:00:: 1 -1 bullnecked%5:00:00:strong:00 1 -1 bullethead%1:08:00:: 1 -1 bullet_hole%1:17:00:: 1 -1 bull's_eye%1:04:01:: 3 -1 bull%2:41:00:: 1 -1 bull%1:18:02:: 2 -1 bull%1:10:00:: 3 -1 bull%1:04:00:: 4 -1 bulk%5:00:00:wholesale:00 1 -1 bulk%1:07:00:: 2 -1 bulging%5:00:00:protrusive:00 2 -1 bulging%3:00:06:: 1 -1 bulgaria%1:15:00:: 1 -1 bulb%1:06:01:: 3 -1 built%5:00:00:shapely:00 3 -1 building_supply_house%1:06:00:: 1 -1 building%1:04:01:: 3 -1 build%2:30:02:: 4 -1 bugler%1:18:00:: 1 -1 bug_out%2:38:00:: 1 -1 bug%2:37:00:: 1 -1 bug%1:05:02:: 1 -1 buffoon%1:18:01:: 1 -1 buffet%1:06:00:: 1 -1 buff%2:35:02:: 1 -1 budgetary%3:01:00:: 1 -1 buddhist%3:01:00:: 1 -1 buddhist%1:18:00:: 1 -1 bud%2:30:02:: 2 -1 bucolic%5:00:01:rural:00 1 -1 buckle%2:35:01:: 2 -1 buckle%2:35:00:: 1 -1 buckle%2:30:00:: 3 -1 buck_up%2:37:00:: 1 -1 buck%2:41:00:: 2 -1 buck%1:06:01:: 1 -1 bubble_over%2:37:00:: 1 -1 bubble_gum%1:13:00:: 1 -1 brute%5:00:00:inhumane:00 1 -1 brutal%5:00:02:inhumane:00 1 -1 brutal%5:00:01:inhumane:00 2 -1 brushed%5:00:00:touched:00 1 -1 brushed%5:00:00:groomed:00 2 -1 brush_up%2:31:00:: 1 -1 brush_on%2:35:00:: 1 -1 brush_fire%1:11:00:: 1 -1 brush_cut%1:08:00:: 1 -1 brush%2:30:00:: 5 -1 brush%1:11:00:: 3 -1 bruit%2:32:00:: 1 -1 bruised%5:00:02:injured:00 2 -1 bruise%1:26:00:: 1 -1 brucellosis%1:26:01:: 1 -1 brownish%5:00:00:chromatic:00 1 -1 brown%2:30:00:: 1 -1 browbeat%2:37:00:: 1 -1 brotherly%3:00:00:: 1 -1 brotherhood%1:24:00:: 1 -1 brotherhood%1:14:00:: 2 -1 brotherhood%1:12:00:: 3 -1 brother-in-law%1:18:00:: 1 -1 brother%5:00:00:related:02 1 -1 broth_of_a_boy%1:18:00:: 1 -1 brook%2:31:00:: 1 -1 broody_hen%1:05:00:: 1 -1 brooding%1:22:00:: 1 -1 brooding%1:12:00:: 2 -1 brood%2:42:01:: 2 -1 bronze%5:00:00:chromatic:00 1 -1 bronchiolitis%1:26:00:: 1 -1 bronchiolar%3:01:00:: 1 -1 bromophenol_blue%1:27:00:: 1 -1 brokerage%1:14:00:: 1 -1 broker%1:18:00:: 1 -1 broken-down%5:00:00:damaged:00 1 -1 broken-backed%5:00:00:damaged:00 1 -1 broken%5:00:00:humble:00 3 -1 broken%3:00:02:: 2 -1 broiler%1:06:00:: 1 -1 broil%2:30:01:: 2 -1 brocaded%5:00:00:adorned:00 1 -1 broadside%1:10:00:: 1 -1 broadly%4:02:00:: 1 -1 broadening%1:04:00:: 2 -1 broaden%2:30:05:: 3 -1 broaden%2:30:02:: 2 -1 broaden%2:30:00:: 4 -1 broadcasting_company%1:14:00:: 1 -1 broadcast%5:00:00:publicized:00 1 -1 broad%5:00:00:high:02 5 -1 britannic%3:01:00:: 1 -1 bristle_at%2:32:00:: 1 -1 bristle%1:05:00:: 2 -1 brisk%5:00:00:invigorating:00 2 -1 brink%1:25:00:: 1 -1 bringing%1:04:00:: 1 -1 bring_up%2:41:01:: 3 -1 bring_up%2:38:02:: 5 -1 bring_up%2:38:00:: 4 -1 bring_out%2:32:00:: 3 -1 bring_out%2:30:00:: 4 -1 bring_in%2:40:00:: 3 -1 bring_forward%2:38:00:: 1 -1 bring_forward%2:32:00:: 2 -1 bring_forth%2:39:00:: 2 -1 bring_forth%2:36:00:: 3 -1 bring_forth%2:29:00:: 4 -1 bring_down%2:41:00:: 2 -1 bring_down%2:32:00:: 3 -1 bring_back%2:29:00:: 2 -1 bring_about%2:36:02:: 3 -1 bring%2:40:00:: 9 -1 brim_over%2:38:00:: 1 -1 brim%1:06:01:: 1 -1 brilliantly%4:02:00:: 2 -1 brilliant%5:00:00:reverberant:00 6 -1 brilliancy%1:07:00:: 1 -1 brilliance%1:07:01:: 2 -1 brilliance%1:07:00:: 1 -1 brightly%4:02:00:: 1 -1 brighten%2:30:01:: 1 -1 bright_blue%5:00:00:chromatic:00 1 -1 bright%5:00:00:polished:00 5 -1 bright%5:00:00:glorious:00 6 -1 bright%4:02:00:: 1 -1 brigadier_general%1:18:00:: 1 -1 brig%1:06:01:: 1 -1 briefing%1:10:00:: 1 -1 brief%5:00:00:short:01 3 -1 brief%2:32:00:: 1 -1 bridgehead%1:15:00:: 1 -1 bridged-t%1:06:00:: 1 -1 bridge%2:35:00:: 2 -1 bridge%1:08:00:: 4 -1 bridge%1:04:00:: 5 -1 bridegroom%1:18:00:: 1 -1 bride-gift%1:21:00:: 1 -1 bricklayer%1:18:00:: 1 -1 brick%1:18:00:: 2 -1 bric-a-brac%1:06:00:: 1 -1 briber%1:18:00:: 1 -1 bribe%2:40:00:: 1 -1 bribe%1:21:00:: 1 -1 brevity%1:10:00:: 1 -1 brevity%1:07:00:: 2 -1 breeding%5:00:00:fruitful:00 1 -1 breeding%1:07:03:: 1 -1 breed%2:36:00:: 1 -1 breed%2:35:00:: 2 -1 breed%1:14:00:: 2 -1 breeches%1:06:00:: 1 -1 breathless%5:00:00:exciting:00 2 -1 breathing_space%1:28:00:: 1 -1 breathing%3:00:00:: 1 -1 breathe_in%2:29:00:: 1 -1 breathe%2:42:00:: 2 -1 breathe%2:40:00:: 3 -1 breath%1:28:00:: 3 -1 breath%1:10:00:: 4 -1 breastwork%1:06:00:: 1 -1 breakup%1:11:00:: 2 -1 breakthrough%1:09:00:: 1 -1 breakthrough%1:04:02:: 2 -1 breaking%1:04:00:: 1 -1 breakaway%1:04:00:: 1 -1 breakable%1:06:00:: 1 -1 break_up%2:35:02:: 4 -1 break_up%2:32:00:: 5 -1 break_up%2:30:03:: 6 -1 break_through%2:30:00:: 2 -1 break_out%2:35:00:: 4 -1 break_out%2:30:00:: 5 -1 break_one's_back%2:41:00:: 1 -1 break_off%2:35:01:: 3 -1 break_of_day%1:28:00:: 1 -1 break_loose%2:38:00:: 2 -1 break_even%2:40:00:: 1 -1 break_even%2:38:00:: 2 -1 break_down%2:38:00:: 5 -1 break_away%2:35:00:: 2 -1 break%2:41:01:: 18 -1 break%2:38:10:: 19 -1 break%2:38:01:: 20 -1 break%2:30:12:: 22 -1 break%2:30:09:: 21 -1 break%1:17:00:: 3 -1 break%1:11:03:: 4 -1 break%1:04:05:: 5 -1 break%1:04:00:: 6 -1 bread_dough%1:13:00:: 1 -1 bread_and_butter%1:21:00:: 1 -1 breach%2:41:00:: 1 -1 breach%2:35:00:: 2 -1 breach%1:04:01:: 1 -1 brazenness%1:07:00:: 1 -1 brazenly%4:02:00:: 1 -1 bravery%1:07:00:: 1 -1 brave%5:00:00:bold:00 2 -1 brave%2:42:01:: 1 -1 brave%2:42:00:: 2 -1 brassy%3:01:00:: 1 -1 brassica%1:20:00:: 1 -1 brass%1:14:00:: 3 -1 brass%1:07:00:: 4 -1 brass%1:06:02:: 5 -1 brash%5:00:00:forward:02 1 -1 brandish%2:39:00:: 2 -1 branded%5:00:00:proprietary:00 1 -1 brand%2:41:01:: 1 -1 branched%5:00:00:divided:00 1 -1 branch_out%2:30:00:: 1 -1 brainy%5:00:00:intelligent:00 1 -1 brain_tumor%1:26:00:: 1 -1 braided%5:00:00:adorned:00 1 -1 braid%2:36:00:: 1 -1 braid%1:08:00:: 1 -1 braggadocio%1:10:00:: 1 -1 brad%1:06:00:: 1 -1 braced%5:00:00:prepared:00 1 -1 brace%2:35:00:: 3 -1 brace%1:06:04:: 1 -1 boy_scout%1:18:00:: 1 -1 boy%1:18:01:: 4 -1 boxer%1:18:00:: 1 -1 boxed_in%5:00:00:enclosed:00 1 -1 boxed%5:00:00:bordered:00 1 -1 box_kodak%1:06:00:: 1 -1 box_in%2:42:00:: 1 -1 box%2:35:02:: 1 -1 box%1:26:00:: 4 -1 bowstring%1:06:00:: 1 -1 bowlder%1:17:00:: 1 -1 bowl%1:25:00:: 2 -1 bowl%1:06:00:: 3 -1 bower%1:06:00:: 1 -1 bowed_down%5:00:00:burdened:00 1 -1 bow_down%2:38:00:: 1 -1 bow%2:38:00:: 3 -1 bow%1:06:02:: 3 -1 bow%1:06:01:: 4 -1 bout%1:28:00:: 1 -1 bout%1:04:00:: 2 -1 bourgeoisie%1:14:00:: 1 -1 bourbon%1:13:00:: 2 -1 bounds%1:15:00:: 1 -1 bounds%1:07:00:: 2 -1 boundless%5:00:00:infinite:00 1 -1 bounding%5:00:00:moving:02 1 -1 bound_up%5:00:00:related:02 1 -1 bound%5:00:00:treated:02 5 -1 bound%5:00:00:oriented:00 6 -1 bound%2:38:00:: 4 -1 bound%1:25:00:: 1 -1 bouncing_betty%1:06:00:: 1 -1 bounce_out%2:35:00:: 1 -1 bounce%2:40:00:: 4 -1 bounce%2:38:01:: 5 -1 bounce%1:04:00:: 2 -1 boulevard%1:06:00:: 1 -1 boulder%1:17:00:: 1 -1 bouffant%5:00:00:large:00 1 -1 boucle%1:06:00:: 1 -1 botulinal%3:01:00:: 1 -1 bottomless%5:00:00:deep:01 1 -1 bottomland%1:17:00:: 1 -1 bottom%1:28:00:: 4 -1 bottom%1:17:00:: 5 -1 bottleneck%1:25:00:: 1 -1 boss%1:18:03:: 3 -1 bosom%1:26:00:: 1 -1 bosom%1:08:01:: 2 -1 bosom%1:06:00:: 3 -1 bosom%1:04:00:: 4 -1 borrowing%1:04:01:: 1 -1 borrower%1:18:00:: 1 -1 borne_in_upon%5:00:00:causative:00 1 -1 bored%5:00:00:uninterested:00 2 -1 bored%5:00:00:tired:00 1 -1 borderline%5:00:00:minimal:00 1 -1 bordering%5:00:00:connected:00 1 -1 border_patrolman%1:18:00:: 1 -1 border%2:42:00:: 2 -1 border%2:35:02:: 3 -1 border%1:25:00:: 2 -1 border%1:15:01:: 3 -1 borate%1:27:00:: 1 -1 booze%1:13:00:: 1 -1 booty%1:21:00:: 1 -1 bootlegging%1:04:00:: 1 -1 booth%1:06:02:: 1 -1 booth%1:06:00:: 2 -1 booted%5:00:00:shod:00 1 -1 boot%1:06:01:: 2 -1 boost_up%2:38:00:: 1 -1 boost%2:41:00:: 3 -1 boost%2:30:00:: 4 -1 boost%1:07:00:: 2 -1 boon%5:00:00:close:02 1 -1 boon%1:26:00:: 1 -1 boomerang%2:38:00:: 1 -1 boom%2:35:00:: 2 -1 booking%1:04:00:: 2 -1 booked%5:00:00:reserved:02 1 -1 book_jacket%1:10:00:: 1 -1 book%2:41:01:: 2 -1 book%2:41:00:: 3 -1 book%1:10:01:: 4 -1 booby%1:18:00:: 1 -1 boo%2:32:00:: 1 -1 bonus%1:09:00:: 1 -1 bonn%1:15:00:: 1 -1 bonemeal%1:27:00:: 1 -1 bondsman%1:18:01:: 1 -1 bonded%5:00:00:secure:02 1 -1 bond%2:35:00:: 1 -1 bond%1:21:03:: 4 -1 bond%1:06:01:: 6 -1 bond%1:06:00:: 5 -1 bombay%1:15:00:: 1 -1 bombast%1:10:00:: 1 -1 bomb_shelter%1:06:00:: 1 -1 bomb_calorimeter%1:06:00:: 1 -1 bomb%1:06:01:: 2 -1 bolt_out%2:38:00:: 1 -1 bolt%4:02:01:: 1 -1 bolt%2:34:01:: 3 -1 bolt%1:06:02:: 2 -1 bolt%1:06:01:: 3 -1 bolt%1:04:01:: 4 -1 bolster%1:06:00:: 1 -1 bolshevik%1:18:00:: 1 -1 bolo%1:06:01:: 1 -1 boldness%1:07:00:: 1 -1 bold%5:00:00:enterprising:00 3 -1 boisterous%5:00:00:disorderly:00 1 -1 boiling%5:00:00:hot:02 1 -1 boiling%1:22:00:: 1 -1 boiler%1:06:00:: 1 -1 boiled-down%5:00:00:condensed:01 1 -1 boil_down%2:30:03:: 1 -1 bogy%1:06:00:: 1 -1 boggle%2:38:00:: 1 -1 bogey%1:18:00:: 1 -1 bogartian%3:01:00:: 1 -1 bog_down%2:30:01:: 1 -1 bog%2:30:00:: 1 -1 bog%1:17:00:: 1 -1 boeotian%3:01:00:: 1 -1 bodyguard%1:18:00:: 1 -1 bodybuilding%1:04:00:: 1 -1 body_servant%1:18:00:: 1 -1 body_of_water%1:17:00:: 1 -1 body_length%1:23:00:: 1 -1 body%1:10:00:: 8 -1 bodily_function%1:22:00:: 1 -1 bodice%1:06:00:: 1 -1 bode%2:32:00:: 1 -1 bobbysoxer%1:18:00:: 1 -1 bobby_pin%1:06:00:: 1 -1 boatload%1:23:00:: 1 -1 boater%1:06:00:: 1 -1 boastfully%4:02:00:: 1 -1 boastful%5:00:00:proud:00 1 -1 boast%1:10:00:: 1 -1 boardinghouse%1:06:00:: 1 -1 board_of_trustees%1:14:00:: 1 -1 board_of_regents%1:14:00:: 1 -1 blustery%5:00:00:stormy:00 1 -1 bluster%2:43:00:: 1 -1 bluster%2:32:00:: 2 -1 bluster%1:10:00:: 2 -1 blushing%5:00:00:discomposed:00 1 -1 blurt%2:32:00:: 1 -1 blur%2:39:00:: 2 -1 blur%2:31:00:: 3 -1 blunt%5:00:00:pointless:00 1 -1 blunt%5:00:00:dull:01 2 -1 blunt%5:00:00:direct:02 3 -1 blunt%2:30:01:: 1 -1 blunder%2:41:01:: 2 -1 blunder%2:41:00:: 1 -1 bluish%5:00:00:chromatic:00 1 -1 bluestocking%1:18:00:: 1 -1 bluefish%1:05:00:: 1 -1 blueberry_pie%1:13:00:: 1 -1 blue_air%1:17:00:: 1 -1 blue-ribbon%5:00:00:superior:02 1 -1 blue-green_algae%1:05:00:: 1 -1 blue-eyed%5:00:00:loved:00 1 -1 blue-eyed%5:00:00:eyed:00 2 -1 blue-collar%5:00:00:lower-class:00 2 -1 blue-collar%3:00:00:: 1 -1 blue-black%5:00:00:achromatic:00 1 -1 blue%5:00:02:dirty:02 5 -1 blue%5:00:00:dejected:00 4 -1 blue%1:17:00:: 4 -1 blubber%2:29:00:: 1 -1 blown-up%5:00:02:inflated:00 1 -1 blown%5:00:00:moving:02 1 -1 blowing_gas%1:27:00:: 1 -1 blowfish%1:13:00:: 1 -1 blow_up%2:30:00:: 2 -1 blow_off%2:35:00:: 1 -1 blow%2:39:01:: 5 -1 blow%2:30:08:: 6 -1 blow%1:11:01:: 4 -1 blotch%1:07:00:: 1 -1 bloom%1:28:00:: 3 -1 bloom%1:26:00:: 4 -1 bloodthirsty%5:00:00:bloody:00 1 -1 bloodsucking%5:00:00:bloody:00 1 -1 bloodstained%5:00:00:bloody:00 1 -1 bloodless%5:00:00:dead:01 1 -1 blood_transfusion%1:04:00:: 1 -1 blood_relative%1:18:00:: 1 -1 blood-filled%5:00:00:bloody:00 1 -1 blood-and-guts%5:00:00:intense:00 1 -1 blood%1:18:00:: 4 -1 blood%1:14:00:: 5 -1 blonde%3:00:00:: 1 -1 bloke%1:18:00:: 1 -1 block_out%2:31:00:: 1 -1 block_off%2:33:00:: 1 -1 block_diagram%1:06:00:: 1 -1 block%2:41:01:: 3 -1 block%2:32:00:: 4 -1 block%1:25:01:: 3 -1 block%1:14:00:: 4 -1 block%1:06:06:: 5 -1 bloc%1:14:00:: 1 -1 bloated%5:00:00:unhealthy:00 1 -1 bloat%2:30:00:: 1 -1 blizzard%1:19:00:: 1 -1 blithe%5:00:00:cheerful:00 2 -1 blistering%5:00:00:unpleasant:00 1 -1 blistering%5:00:00:hot:01 2 -1 blissful%5:00:00:happy:00 1 -1 blinking%5:00:00:bright:00 1 -1 blinker%1:06:00:: 1 -1 blindly%4:02:01:: 2 -1 blindfolded%5:00:00:blind:00 1 -1 blinded%5:00:00:blind:00 1 -1 blind%1:06:01:: 2 -1 blind%1:06:00:: 3 -1 blighted%5:00:00:destroyed:00 1 -1 blight%2:43:00:: 1 -1 blight%1:26:00:: 1 -1 blessing%1:04:01:: 1 -1 blessed%5:00:02:holy:00 2 -1 blessed%5:00:01:cursed:00 3 -1 blessed%3:00:00:: 1 -1 bless%2:40:00:: 2 -1 bless%2:32:02:: 3 -1 blending%1:04:01:: 1 -1 blend%2:42:00:: 2 -1 blemish%1:07:00:: 1 -1 bleb%1:08:00:: 1 -1 bleat%2:32:01:: 1 -1 bleat%2:32:00:: 2 -1 bleat%1:11:00:: 1 -1 bleary%5:00:00:tired:00 1 -1 bleak%5:00:00:inhospitable:00 2 -1 bleachers%1:06:00:: 1 -1 bleached%5:00:00:colorless:02 1 -1 bleach%2:30:01:: 1 -1 bleach%1:07:00:: 1 -1 blaze_out%2:38:00:: 1 -1 blaze_away%2:36:00:: 1 -1 blaze_away%2:33:00:: 2 -1 blaze%1:04:00:: 3 -1 blatancy%1:07:00:: 1 -1 blasting%5:00:00:destructive:00 1 -1 blast%2:33:00:: 3 -1 blast%1:11:01:: 2 -1 blasphemy%1:10:00:: 1 -1 blasphemous%5:00:00:irreverent:00 1 -1 blaspheme%2:32:00:: 1 -1 blaring%1:11:00:: 1 -1 blare%2:39:01:: 1 -1 blare%1:11:00:: 1 -1 blanket%2:35:00:: 1 -1 blank%5:00:02:uncommunicative:00 2 -1 blank%5:00:00:empty:00 1 -1 blandness%1:07:02:: 1 -1 bland%5:00:00:tasteless:01 2 -1 bland%3:00:00:: 1 -1 blanched%5:00:00:colorless:02 1 -1 blanch%2:29:00:: 1 -1 bladed%3:01:01:: 1 -1 blade%1:18:00:: 2 -1 blade%1:17:00:: 3 -1 blade%1:06:01:: 4 -1 blacksmith%1:18:00:: 1 -1 blackout%1:28:00:: 1 -1 blackout%1:26:00:: 2 -1 blackening%1:04:00:: 1 -1 black_out%2:43:00:: 1 -1 black_out%2:30:01:: 2 -1 black_out%2:30:00:: 3 -1 black_out%2:29:00:: 4 -1 black_olive%1:13:00:: 1 -1 black_man%1:18:00:: 1 -1 black_hole%1:17:00:: 1 -1 black_flag%1:06:00:: 1 -1 black_eye%1:26:00:: 1 -1 black_bread%1:13:00:: 1 -1 black_and_white%3:00:02:: 1 -1 black-market%5:00:00:illegal:00 1 -1 black-haired%5:00:00:brunet:00 1 -1 black%5:00:00:dark:01 8 -1 black%5:00:00:colored:00 7 -1 blab%2:32:00:: 1 -1 bivouac%1:06:00:: 1 -1 bittersweet%5:00:00:sad:00 1 -1 bitters%1:13:00:: 1 -1 bitterness%1:07:01:: 2 -1 bitterly%4:02:01:: 2 -1 bitter%5:00:00:hostile:01 6 -1 bitten%5:00:00:injured:00 1 -1 biter%1:18:00:: 1 -1 bite%2:35:01:: 3 -1 bite%1:26:00:: 1 -1 bite%1:13:01:: 2 -1 bit_part%1:09:00:: 1 -1 bit%5:00:00:injured:00 1 -1 bit%1:28:00:: 3 -1 bit%1:11:00:: 4 -1 bit%1:06:01:: 5 -1 bishopry%1:04:00:: 1 -1 biscuit%1:13:02:: 2 -1 birthright%1:07:00:: 1 -1 birthplace%1:15:00:: 1 -1 birthe%2:29:00:: 1 -1 birthday%1:28:01:: 2 -1 birthcontrol%1:04:00:: 1 -1 birth_prevention%1:04:00:: 1 -1 birth%1:22:00:: 3 -1 birmingham%1:15:01:: 1 -1 birmingham%1:15:00:: 2 -1 birdhouse%1:06:00:: 1 -1 birdbath%1:06:00:: 1 -1 bird_shot%1:06:00:: 1 -1 bird%1:13:00:: 2 -1 bipartisan%5:00:00:nonpartisan:00 1 -1 biophysicist%1:18:00:: 1 -1 biomedical%3:01:00:: 1 -1 biologist%1:18:00:: 1 -1 biographical%3:01:00:: 1 -1 biochemical_mechanism%1:22:00:: 1 -1 biochemical%3:01:00:: 1 -1 binomial%1:09:00:: 1 -1 binoculars%1:06:00:: 1 -1 binding%5:00:00:valid:00 1 -1 binding%1:06:01:: 2 -1 binding%1:04:00:: 3 -1 binder%1:06:03:: 1 -1 bind_off%2:35:00:: 1 -1 bind%2:35:07:: 5 -1 bind%2:32:00:: 6 -1 bimolecular%3:01:00:: 1 -1 billowing%5:00:00:moving:02 1 -1 billow%2:38:02:: 1 -1 billion%1:23:01:: 1 -1 bill_of_health%1:10:00:: 1 -1 bill%2:32:00:: 2 -1 bill%1:04:00:: 4 -1 bilk%2:41:00:: 1 -1 bilingual%5:00:00:multilingual:00 1 -1 bilharziasis%1:26:00:: 1 -1 bile%1:08:00:: 1 -1 bilateral%5:00:00:symmetrical:00 1 -1 big_shot%1:18:00:: 1 -1 big_leaguer%1:18:00:: 1 -1 big_band%1:14:00:: 1 -1 big-ticket%5:00:00:expensive:00 1 -1 big-shouldered%5:00:00:robust:00 1 -1 big-chested%5:00:00:robust:00 1 -1 big%4:02:03:: 1 -1 big%4:02:00:: 2 -1 bide%2:42:00:: 1 -1 bidding%1:10:02:: 1 -1 bidder%1:18:00:: 1 -1 bid%2:40:04:: 5 -1 bid%2:40:01:: 4 -1 bid%2:32:00:: 6 -1 bid%1:10:03:: 1 -1 bid%1:04:00:: 2 -1 bickering%1:10:00:: 1 -1 bicker%2:32:00:: 1 -1 biceps_brachii%1:08:00:: 1 -1 bibliographical%3:01:00:: 1 -1 bible_belt%1:15:00:: 1 -1 bias%1:09:00:: 1 -1 beyond_measure%4:02:00:: 1 -1 beyond%4:02:02:: 2 -1 bewitched%5:00:00:enchanted:00 1 -1 bewitch%2:37:00:: 1 -1 bewilderment%1:09:00:: 1 -1 bewilderingly%4:02:00:: 1 -1 bewilderedly%4:02:00:: 1 -1 bewilder%2:37:00:: 2 -1 bewail%2:32:00:: 1 -1 between%4:02:03:: 1 -1 between%4:02:00:: 2 -1 betterment%1:11:00:: 1 -1 better_known%5:00:00:known:00 1 -1 better-looking%5:00:00:beautiful:00 1 -1 better%2:33:00:: 1 -1 better%2:30:01:: 2 -1 better%2:30:00:: 3 -1 better%1:07:02:: 1 -1 better%1:07:00:: 2 -1 betrothed%5:00:00:attached:01 1 -1 betray%2:41:01:: 4 -1 betray%2:32:00:: 5 -1 bethink%2:31:00:: 2 -1 beta%1:10:00:: 1 -1 bet_on%2:31:00:: 2 -1 bet%1:21:00:: 1 -1 bestubbled%5:00:00:unshaven:00 1 -1 bestowal%1:04:00:: 1 -1 bestow%2:40:02:: 2 -1 bestial%5:00:00:inhumane:00 1 -1 best_friend%1:18:00:: 1 -1 best-selling%5:00:00:popular:00 1 -1 best-known%5:00:00:known:00 1 -1 best%2:33:00:: 1 -1 best%1:18:00:: 2 -1 besplashed%5:00:00:dirty:01 1 -1 bespeak%2:32:01:: 1 -1 besmirch%2:35:00:: 2 -1 besides%4:02:03:: 2 -1 beryllium%1:27:00:: 1 -1 berg%1:17:00:: 1 -1 bennington%1:15:00:: 1 -1 benevolent%5:00:00:good:02 1 -1 benefit%1:10:00:: 3 -1 benediction%1:04:00:: 1 -1 beneath%4:02:00:: 1 -1 bending%5:00:00:crooked:01 1 -1 bend%2:38:02:: 5 -1 bend%1:25:02:: 1 -1 bend%1:11:00:: 2 -1 bend%1:06:00:: 3 -1 bench%1:17:00:: 3 -1 bench%1:14:00:: 4 -1 bench%1:06:01:: 5 -1 belt_out%2:36:00:: 1 -1 belt_buckle%1:06:00:: 1 -1 belt%2:36:00:: 1 -1 belt%2:35:00:: 2 -1 belt%1:11:00:: 4 -1 belshazzar%1:18:00:: 1 -1 belligerently%4:02:00:: 1 -1 bellhop%1:18:00:: 1 -1 belle%1:18:00:: 1 -1 bell%1:11:00:: 3 -1 believer%1:18:01:: 1 -1 believer%1:18:00:: 2 -1 believably%4:02:00:: 1 -1 believable%3:00:04:: 1 -1 belfry%1:06:01:: 1 -1 belching%1:04:01:: 1 -1 belching%1:04:00:: 2 -1 belated%5:00:00:unpunctual:00 1 -1 belabor%2:41:00:: 1 -1 belabor%2:32:02:: 2 -1 bel_canto%1:04:00:: 1 -1 behoove%2:42:00:: 1 -1 behind%5:00:00:down:00 1 -1 behind%1:08:00:: 1 -1 behead%2:35:00:: 1 -1 behavioral%3:01:00:: 1 -1 behave%2:41:00:: 3 -1 beguiling%5:00:00:seductive:00 1 -1 beguile%2:41:00:: 1 -1 beguile%2:37:00:: 2 -1 beginner%1:18:00:: 1 -1 beggary%1:10:00:: 1 -1 beggar%1:18:00:: 1 -1 befuddled%5:00:02:confused:00 1 -1 befuddle%2:31:00:: 1 -1 befriend%2:41:00:: 1 -1 before_long%4:02:00:: 1 -1 befog%2:39:00:: 1 -1 beetle%1:05:00:: 1 -1 beehive%1:06:01:: 1 -1 beefy%5:00:00:robust:00 1 -1 beefed-up%5:00:00:strong:00 1 -1 beef_up%2:30:00:: 1 -1 beef_man%1:18:00:: 1 -1 bedtime%1:28:00:: 1 -1 bedstead%1:06:00:: 1 -1 bedside%1:15:00:: 1 -1 bedroom_set%1:14:00:: 1 -1 bedpost%1:06:00:: 1 -1 bedground%1:15:00:: 1 -1 bedfast%5:00:00:ill:01 1 -1 bedamn%2:32:00:: 1 -1 bed_linen%1:06:00:: 1 -1 bed_hop%2:38:00:: 1 -1 bed_down%2:29:00:: 1 -1 beckon%2:37:00:: 2 -1 beauty%1:18:00:: 2 -1 beauty%1:09:00:: 3 -1 beautify%2:30:00:: 1 -1 beau%1:18:00:: 1 -1 beatnik%1:18:00:: 1 -1 beating%1:04:01:: 1 -1 beaten%5:00:00:defeated:00 1 -1 beaten%5:00:00:abused:01 2 -1 beat-up%5:00:00:damaged:00 1 -1 beat%2:39:03:: 7 -1 beat%2:38:04:: 8 -1 beat%2:38:01:: 9 -1 beat%2:35:10:: 11 -1 beat%2:35:03:: 10 -1 beat%1:15:00:: 1 -1 beat%1:11:00:: 2 -1 beat%1:10:00:: 3 -1 beast%1:18:00:: 2 -1 bearing%1:24:01:: 1 -1 bearing%1:15:00:: 2 -1 bearing%1:07:00:: 3 -1 bearer%1:18:00:: 2 -1 beardown%5:00:00:strong:00 1 -1 beard%2:42:00:: 1 -1 bear_witness%2:32:02:: 1 -1 bear_witness%2:32:00:: 2 -1 bear_upon%2:30:00:: 1 -1 bear_up%2:31:00:: 1 -1 bear_on%2:32:00:: 3 -1 bear_down%2:35:00:: 1 -1 bear%2:29:02:: 9 -1 bear%1:05:00:: 1 -1 beaming%5:00:00:cheerful:00 1 -1 beam%2:43:03:: 2 -1 beam%2:32:01:: 3 -1 beam%2:32:00:: 4 -1 beak%1:05:01:: 1 -1 beak%1:05:00:: 2 -1 beady%5:00:00:bright:00 1 -1 beadsman%1:18:00:: 1 -1 beadle%1:18:00:: 1 -1 beaded%5:00:00:covered:00 1 -1 bead%1:06:00:: 1 -1 beacon_light%1:06:00:: 1 -1 beacon%1:10:00:: 1 -1 be_well%2:29:00:: 1 -1 be_quiet%2:32:00:: 1 -1 be_on%2:30:00:: 1 -1 be%2:42:01:: 11 -1 bazaar%1:06:00:: 1 -1 bay%2:32:01:: 1 -1 bay%1:11:00:: 2 -1 bawdyhouse%1:06:00:: 1 -1 bawdy%5:00:00:dirty:02 1 -1 batwing%1:06:00:: 1 -1 battleground%1:15:00:: 1 -1 battlefront%1:15:00:: 1 -1 battle-ax%1:06:00:: 1 -1 batting_coach%1:18:00:: 1 -1 batting_average%1:24:01:: 2 -1 battering_ram%1:06:00:: 1 -1 battered%5:00:00:worn:00 2 -1 baton_rouge%1:15:00:: 1 -1 bathtub_gin%1:13:00:: 1 -1 bathos%1:10:00:: 1 -1 bathing%1:04:01:: 2 -1 bathing%1:04:00:: 1 -1 bather%1:18:00:: 1 -1 bath_towel%1:06:00:: 1 -1 bath%1:06:00:: 3 -1 bated%5:00:00:restrained:00 1 -1 batch%1:14:01:: 1 -1 bat%1:04:00:: 3 -1 bastion%1:14:00:: 1 -1 bassinet%1:06:00:: 1 -1 bass%1:10:01:: 2 -1 basketball_team%1:14:00:: 1 -1 basket_weave%1:06:00:: 1 -1 basileus%1:18:00:: 1 -1 bashful%5:00:00:timid:00 1 -1 bash%1:11:00:: 1 -1 baseline%1:24:00:: 1 -1 based%5:00:00:supported:02 3 -1 based%5:00:00:settled:01 4 -1 base_runner%1:18:00:: 1 -1 base_hit%1:04:00:: 1 -1 base%5:00:00:lowborn:00 2 -1 bas_relief%1:06:00:: 2 -1 bartlett_pear%1:13:00:: 1 -1 barricade%2:35:00:: 1 -1 barricade%1:06:01:: 2 -1 barren_of%5:00:00:empty:00 1 -1 barren%5:00:02:unfruitful:00 1 -1 barren%5:00:01:unfruitful:00 2 -1 barrage%1:04:00:: 2 -1 barrack%1:06:00:: 1 -1 baroreceptor%1:08:00:: 1 -1 baroque%5:00:00:fancy:00 1 -1 barony%1:21:00:: 1 -1 baronial%5:00:00:impressive:00 1 -1 barometric_pressure%1:19:00:: 1 -1 barnful%1:23:00:: 1 -1 barnburner%1:18:00:: 1 -1 barkeep%1:18:00:: 1 -1 bark%2:32:01:: 1 -1 bark%1:11:02:: 2 -1 bark%1:06:00:: 3 -1 barium%1:27:00:: 1 -1 barge_in%2:38:00:: 1 -1 bargaining%1:10:00:: 1 -1 bargain-priced%5:00:00:cheap:00 1 -1 bargain%2:40:00:: 1 -1 barefoot%4:02:00:: 1 -1 bare%5:00:00:uncovered:00 4 -1 bare%2:35:00:: 1 -1 barbiturate%1:06:00:: 1 -1 barbital%1:06:00:: 1 -1 barbed%5:00:00:sarcastic:00 1 -1 barbarian%1:18:00:: 1 -1 barb%1:10:00:: 1 -1 bar%2:41:00:: 3 -1 bar%2:35:01:: 4 -1 bar%1:10:00:: 4 -1 bar%1:06:02:: 5 -1 bar%1:04:00:: 6 -1 baptist%3:01:00:: 1 -1 banter%2:32:00:: 1 -1 bannerlike%4:02:00:: 1 -1 bankruptcy%1:26:01:: 1 -1 bankruptcy%1:26:00:: 2 -1 bankrupt%5:00:00:insolvent:00 1 -1 bankrupt%2:40:00:: 1 -1 bank_account%1:21:00:: 1 -1 bank%2:35:00:: 2 -1 bank%1:14:01:: 4 -1 banjo%1:06:00:: 1 -1 banish%2:41:02:: 2 -1 banish%2:41:00:: 3 -1 banish%2:38:00:: 4 -1 banging%5:00:00:noisy:00 1 -1 banging%1:11:00:: 1 -1 banging%1:04:00:: 2 -1 bang%4:02:00:: 1 -1 bang%2:38:00:: 4 -1 bang%1:08:00:: 3 -1 bandy%2:33:01:: 1 -1 bandwidth%1:23:00:: 1 -1 bandstand%1:06:00:: 1 -1 bandoleer%1:06:00:: 1 -1 band_together%2:41:00:: 1 -1 band%2:35:00:: 1 -1 band%1:14:02:: 5 -1 band%1:10:00:: 6 -1 band%1:06:00:: 7 -1 banana%1:20:00:: 1 -1 banana%1:13:00:: 2 -1 banal%5:00:00:ordinary:00 1 -1 ban%1:10:00:: 1 -1 bamboo%5:00:00:woody:00 1 -1 balzac%1:18:00:: 1 -1 balsam%1:20:00:: 1 -1 balm_of_gilead%1:20:01:: 1 -1 ballyhoo%1:10:00:: 1 -1 ballpark%1:06:00:: 1 -1 ballot%1:04:00:: 2 -1 ballooning%5:00:00:increasing:00 1 -1 balloon%1:06:01:: 2 -1 balletomane%1:18:00:: 1 -1 ballet_dancer%1:18:00:: 1 -1 ballet_company%1:14:00:: 1 -1 ballet%1:10:00:: 2 -1 ballerina%1:18:00:: 1 -1 balled%5:00:00:formed:00 1 -1 ballast_resistor%1:06:00:: 1 -1 ballast%1:06:00:: 1 -1 ball_game%1:04:00:: 1 -1 ball_field%1:06:00:: 1 -1 ball-hawking%5:00:00:skilled:00 1 -1 ball%2:35:00:: 1 -1 ball%1:08:01:: 5 -1 ball%1:06:02:: 6 -1 balking%5:00:00:intractable:00 1 -1 balkiness%1:07:00:: 1 -1 balinese%1:10:00:: 1 -1 bali%1:15:00:: 1 -1 baleful%5:00:00:maleficent:00 1 -1 bale%1:06:00:: 1 -1 balding%5:00:00:hairless:00 1 -1 bald%5:00:00:uncovered:00 2 -1 bald%5:00:00:overt:00 1 -1 bald%5:00:00:hairless:00 3 -1 balance_sheet%1:21:00:: 1 -1 balance_of_payments%1:21:00:: 1 -1 balance_of_international_payments%1:21:00:: 1 -1 balance%2:42:01:: 4 -1 balance%1:07:00:: 3 -1 baked%5:00:00:dry:01 1 -1 baked%5:00:00:cooked:00 2 -1 bake%2:36:00:: 2 -1 bake%2:30:02:: 3 -1 bait%2:32:00:: 1 -1 bait%1:09:00:: 1 -1 bagpipe%1:06:00:: 1 -1 baggy%5:00:00:loose:01 1 -1 baggage%1:06:00:: 1 -1 bag_of_tricks%1:09:00:: 1 -1 bag%2:35:01:: 1 -1 bag%1:23:00:: 5 -1 bag%1:06:01:: 6 -1 baffling%5:00:00:difficult:00 1 -1 baffled%1:14:00:: 1 -1 baffle%2:31:00:: 1 -1 baffin_island%1:15:00:: 1 -1 bad_luck%1:19:00:: 2 -1 bad_luck%1:11:00:: 3 -1 bad_hat%1:18:00:: 1 -1 bad_guy%1:18:00:: 1 -1 bad%5:00:00:stale:00 4 -1 bad%4:02:04:: 1 -1 bad%4:02:03:: 2 -1 backwoods%5:00:00:inaccessible:00 1 -1 backwards%4:02:03:: 1 -1 backward_and_forward%4:02:00:: 1 -1 backlog%1:14:00:: 1 -1 backing%1:06:00:: 2 -1 background%1:26:00:: 6 -1 backdrop%1:06:00:: 1 -1 backbone%1:09:00:: 1 -1 backbone%1:07:00:: 2 -1 back_up%2:30:00:: 3 -1 back_tooth%1:08:00:: 1 -1 back_door%1:04:00:: 1 -1 back_country%1:15:00:: 1 -1 back_circle%1:04:00:: 1 -1 back_brace%1:06:00:: 1 -1 back_away%2:32:00:: 1 -1 back-to-back%5:00:00:succeeding(a):00 1 -1 back%5:00:00:posterior:00 2 -1 back%4:02:03:: 6 -1 bachelor_of_science%1:10:00:: 1 -1 babylonian%1:18:00:: 1 -1 baby-wise%4:02:00:: 1 -1 baby%1:18:01:: 2 -1 babelike%5:00:00:dependent:00 1 -1 babel%1:26:00:: 1 -1 babbling%5:00:02:voluble:00 1 -1 babbiting%1:04:00:: 1 -1 b_vitamin%1:27:00:: 1 -1 b%1:05:00:: 2 -1 azimuth%1:25:00:: 1 -1 axle%1:06:00:: 1 -1 axiomatic%5:00:00:obvious:00 1 -1 axiom%1:10:00:: 1 -1 axially%4:02:00:: 1 -1 axial%3:01:00:: 1 -1 awry%5:00:00:crooked:01 1 -1 awry%4:02:00:: 1 -1 awkward%5:00:00:unwieldy:00 3 -1 awhile%4:02:00:: 1 -1 awfulness%1:07:00:: 1 -1 awed%3:00:00:: 2 -1 awe-inspiring%5:00:00:impressive:00 1 -1 awe%2:37:00:: 1 -1 away%5:00:00:absent:00 2 -1 away%4:02:09:: 7 -1 awarding%1:04:00:: 1 -1 award%2:41:00:: 3 -1 awakening%1:04:00:: 1 -1 awaken%2:31:00:: 3 -1 awaited%5:00:00:expected:00 1 -1 avowed%5:00:00:declared:00 1 -1 avoid%2:34:00:: 4 -1 aviation%1:14:00:: 1 -1 aviary%1:06:00:: 1 -1 avert%2:38:00:: 2 -1 aversion%1:12:00:: 1 -1 average_out%2:31:00:: 1 -1 average%2:31:00:: 3 -1 avenue%1:04:00:: 1 -1 avenging%5:00:00:reciprocal:00 1 -1 avenge%2:33:00:: 1 -1 avarice%1:04:00:: 1 -1 avant-garde%5:00:00:original:00 1 -1 auxiliary%5:00:00:secondary:01 1 -1 autumn%5:00:00:autumnal:00 1 -1 autopsy%1:04:00:: 1 -1 autonomy%1:26:01:: 1 -1 automobile_industry%1:14:00:: 1 -1 automatic%5:00:00:involuntary:02 3 -1 automate%2:30:00:: 1 -1 autoloader%1:06:00:: 1 -1 auto_limitation%1:04:00:: 1 -1 authorship%1:04:00:: 1 -1 authorized%3:00:00:: 1 -1 authority%1:14:00:: 5 -1 authority%1:07:02:: 6 -1 authoritatively%4:02:00:: 1 -1 authoritative%5:00:00:influential:00 1 -1 authenticate%2:31:00:: 1 -1 austerity%1:07:01:: 1 -1 austere%5:00:00:plain:01 1 -1 auspiciously%4:02:00:: 1 -1 augur%2:32:00:: 1 -1 augment%2:30:00:: 2 -1 audit%2:31:01:: 1 -1 audio_system%1:06:00:: 1 -1 audacity%1:07:02:: 2 -1 audacity%1:07:00:: 1 -1 audacious%5:00:00:bold:00 1 -1 atypical%3:00:00:: 1 -1 attune%2:30:00:: 1 -1 attribute%1:03:00:: 2 -1 attraction%1:09:00:: 4 -1 attorney_general%1:18:01:: 2 -1 attorney_general%1:04:00:: 3 -1 attitude%1:04:00:: 3 -1 attired%5:00:00:clothed:00 1 -1 attica%1:15:00:: 1 -1 attic%3:01:00:: 1 -1 attest%2:32:00:: 2 -1 attentively%4:02:00:: 1 -1 attention%1:07:00:: 6 -1 attend_to%2:31:00:: 1 -1 attend%2:42:01:: 3 -1 attend%2:41:00:: 4 -1 attend%2:39:00:: 5 -1 attainment%1:04:01:: 2 -1 attainment%1:04:00:: 1 -1 attained%5:00:00:earned:00 1 -1 attack_aircraft_carrier%1:06:00:: 1 -1 attack%5:00:00:offensive:03 1 -1 attack%2:30:00:: 5 -1 attack%1:04:03:: 4 -1 attack%1:04:02:: 5 -1 attack%1:04:01:: 6 -1 attachment%1:12:00:: 1 -1 attachment%1:06:00:: 2 -1 attached%5:00:00:related:02 2 -1 atrophied%3:00:00:: 1 -1 atrociously%4:02:00:: 1 -1 atop%4:02:00:: 1 -1 atone%2:41:12:: 1 -1 atonally%4:02:00:: 1 -1 atomlike%5:00:00:microscopic:00 1 -1 atomic_physics%1:09:00:: 1 -1 atomic_energy_commission%1:14:00:: 1 -1 atomic%3:00:00:: 2 -1 atom_bomb%1:06:00:: 1 -1 atmospheric%3:01:00:: 1 -1 atm%1:23:00:: 1 -1 atlantic_ocean%1:17:00:: 1 -1 atlantic%3:01:00:: 1 -1 atlanta%1:04:00:: 2 -1 athletics%1:04:00:: 1 -1 athleticism%1:07:00:: 1 -1 athletic%5:00:00:active:01 2 -1 atheromatous%3:01:00:: 1 -1 athens%1:15:00:: 1 -1 atheistic%5:00:00:irreligious:00 1 -1 atheist%1:18:00:: 1 -1 at_worst%4:02:00:: 1 -1 at_work%5:00:00:operative:00 2 -1 at_the_most%4:02:00:: 1 -1 at_rest%5:00:00:nonmoving:00 1 -1 at_random%4:02:00:: 1 -1 at_odds%5:00:00:inconsistent:00 1 -1 at_large%5:00:00:free:00 2 -1 at_home%4:02:01:: 1 -1 at_home%1:14:00:: 1 -1 at_ease%4:02:00:: 1 -1 at_ease%3:00:04:: 1 -1 at_ease%3:00:02:: 2 -1 at_close_range%4:02:00:: 1 -1 at_arm's_length%4:02:00:: 1 -1 at_a_loss%5:00:00:perplexed:00 1 -1 at-bat%1:04:00:: 1 -1 asymptotically%4:02:00:: 1 -1 asymptotic%3:01:00:: 1 -1 asymmetry%1:07:00:: 1 -1 astute%5:00:00:smart:00 1 -1 astrophysics%1:09:00:: 1 -1 astronomy%1:09:00:: 1 -1 astronomical_unit%1:23:00:: 1 -1 astronomical%5:00:00:large:00 2 -1 astronomical%3:01:00:: 1 -1 astringent%5:00:00:sour:00 1 -1 astray%4:02:00:: 1 -1 astral%3:01:00:: 1 -1 astounding%5:00:00:incredible:00 1 -1 astonish%2:31:00:: 1 -1 asteroidal%3:01:00:: 1 -1 assyriology%1:09:00:: 1 -1 assyrian%1:18:00:: 1 -1 assyrian%1:10:00:: 2 -1 assured%5:00:00:secure:02 2 -1 assure%2:32:02:: 6 -1 assurance%1:10:01:: 2 -1 assurance%1:10:00:: 3 -1 assumption%1:04:00:: 3 -1 assumed%5:00:00:acknowledged:00 1 -1 assortment%1:14:00:: 1 -1 assorted%5:00:00:heterogeneous:00 1 -1 association%1:26:00:: 5 -1 associate_professor%1:18:00:: 1 -1 associate%2:41:00:: 3 -1 assist%1:04:01:: 1 -1 assist%1:04:00:: 2 -1 assimilation%1:04:00:: 1 -1 assimilate%2:30:01:: 3 -1 assigning%1:04:00:: 1 -1 assigned%3:00:00:: 1 -1 assign%2:34:00:: 5 -1 assiduity%1:07:00:: 1 -1 asset%1:07:00:: 2 -1 assertiveness%1:07:00:: 1 -1 assertive%3:00:00:: 1 -1 assertion%1:10:01:: 2 -1 assert%2:31:00:: 4 -1 assembly_line%1:06:00:: 1 -1 assembly%1:06:01:: 3 -1 assembled%5:00:01:concentrated:00 1 -1 assemble%2:41:03:: 3 -1 assemblage%1:06:00:: 2 -1 assemblage%1:04:00:: 3 -1 assay%2:31:00:: 1 -1 assay%1:09:00:: 1 -1 assault%1:04:01:: 2 -1 ass%1:18:00:: 2 -1 aspiring%5:00:00:hopeful:00 1 -1 aspirin%1:06:00:: 1 -1 aspirant%1:18:00:: 1 -1 asphalt%1:27:02:: 1 -1 asleep%4:02:00:: 1 -1 ask_out%2:41:00:: 1 -1 ask%2:32:04:: 5 -1 ash%1:20:00:: 2 -1 ascribe%2:40:00:: 2 -1 ascertainable%5:00:00:determinable:00 1 -1 ascertain%2:31:00:: 2 -1 ascendancy%1:26:00:: 1 -1 as_we_say%4:02:00:: 1 -1 as_to%5:00:00:related:02 1 -1 as_needed%4:02:00:: 1 -1 as_far_as_possible%4:02:01:: 1 -1 as_expected%4:02:00:: 1 -1 as_an_alternative%4:02:00:: 1 -1 as_a_group%4:02:00:: 1 -1 arty%5:00:00:pretentious:00 1 -1 artistry%1:09:00:: 1 -1 artistically%4:02:00:: 1 -1 artisan%1:18:00:: 1 -1 artilleryman%1:18:00:: 1 -1 artillery_fire%1:04:00:: 1 -1 artillery%1:10:00:: 3 -1 artificial_lake%1:06:00:: 1 -1 artifice%1:04:00:: 1 -1 artifact%1:03:00:: 1 -1 articulation%1:10:00:: 1 -1 articulate%3:00:00:: 1 -1 articulate%2:40:00:: 1 -1 articulate%2:32:02:: 2 -1 articulate%2:32:00:: 3 -1 article%1:10:02:: 3 -1 artfully%4:02:00:: 1 -1 arteriosclerosis_obliterans%1:26:00:: 1 -1 art_teacher%1:18:00:: 1 -1 art_student%1:18:00:: 1 -1 art_editor%1:18:00:: 1 -1 arsenic%1:27:01:: 1 -1 arrogate%2:40:02:: 1 -1 arrogantly%4:02:00:: 1 -1 arrogant%5:00:00:proud:00 1 -1 arrogance%1:07:00:: 1 -1 arrival%1:18:00:: 3 -1 arrest%2:35:01:: 3 -1 array%2:35:00:: 1 -1 array%1:10:00:: 2 -1 arrangement%1:10:00:: 6 -1 arrangement%1:06:00:: 7 -1 arraign%2:41:00:: 1 -1 arraign%2:32:00:: 2 -1 aroused%5:00:00:excited:00 2 -1 aroused%5:00:00:awakened:00 1 -1 arouse%2:38:00:: 6 -1 arousal%1:04:00:: 1 -1 around%4:02:09:: 6 -1 around%4:02:08:: 7 -1 around%4:02:07:: 8 -1 around%4:02:00:: 9 -1 aroma%1:07:00:: 1 -1 armoire%1:06:00:: 1 -1 armful%1:23:00:: 1 -1 armed_service%1:14:00:: 1 -1 armchair%5:00:00:impractical:00 1 -1 armament%1:06:00:: 1 -1 arm's_length%1:07:00:: 1 -1 arm%2:40:00:: 2 -1 arm%1:06:02:: 4 -1 arm%1:06:01:: 3 -1 arizona%1:15:00:: 1 -1 aristotelian%3:01:00:: 1 -1 aristocratic%5:00:01:noble:02 1 -1 aristocracy%1:14:02:: 2 -1 arise%2:38:04:: 5 -1 aridity%1:07:00:: 1 -1 arianism%1:09:00:: 1 -1 argumentative%3:00:00:: 1 -1 argument%1:10:01:: 4 -1 arguing%5:00:00:argumentative:00 1 -1 argot%1:10:00:: 1 -1 argive%3:01:00:: 1 -1 arena%1:26:00:: 1 -1 areaway%1:06:00:: 1 -1 arduous%5:00:00:effortful:00 1 -1 ardent%5:00:00:passionate:00 1 -1 arcus_senilis%1:08:00:: 1 -1 arctic_circle%1:15:00:: 1 -1 arctic%5:00:00:polar:00 1 -1 archives%1:10:00:: 1 -1 architecture%1:09:00:: 2 -1 architecture%1:04:00:: 3 -1 arching%5:00:00:curved:00 1 -1 archeological%3:01:00:: 1 -1 arched%5:00:00:curved:00 2 -1 arched%3:01:00:: 1 -1 archangel%1:18:00:: 1 -1 archaize%2:30:00:: 1 -1 archaeologist%1:18:00:: 1 -1 arch%5:00:00:important:00 1 -1 arch%1:25:00:: 1 -1 arch%1:08:00:: 2 -1 arboreal%3:01:00:: 1 -1 arbitrate%2:32:00:: 1 -1 arable%5:00:00:productive:00 1 -1 arabian_sea%1:17:00:: 1 -1 approximation%1:07:00:: 2 -1 approval%1:26:00:: 3 -1 appropriate%5:00:00:congruous:00 3 -1 appropriate%2:40:00:: 2 -1 approaching%5:00:00:moving:02 1 -1 approachable%5:00:00:comprehensible:00 1 -1 apprenticeship%1:04:00:: 1 -1 apprentice%2:31:00:: 1 -1 apprehend%2:35:00:: 2 -1 appreciative%5:00:00:grateful:00 1 -1 appreciation%1:10:00:: 3 -1 appreciation%1:04:01:: 5 -1 appreciation%1:04:00:: 4 -1 appreciated%5:00:00:rewarding:00 1 -1 appraiser%1:18:01:: 1 -1 appraisal%1:09:00:: 1 -1 appointment%1:14:00:: 2 -1 appointment%1:06:00:: 3 -1 appointed%5:00:00:settled:02 3 -1 appointed%5:00:00:furnished:00 4 -1 apply%2:41:06:: 9 -1 apply%2:41:01:: 8 -1 apply%2:32:01:: 10 -1 applied%3:44:00:: 1 -1 applicator%1:06:00:: 1 -1 application_form%1:10:00:: 1 -1 applejack%1:13:00:: 1 -1 apple%1:13:00:: 1 -1 append%2:35:01:: 1 -1 appease%2:34:00:: 2 -1 appease%2:32:00:: 3 -1 appearance%1:09:00:: 4 -1 appearance%1:04:00:: 5 -1 appear%2:41:03:: 7 -1 appealing%3:00:02:: 2 -1 appeal%2:37:00:: 3 -1 apparition%1:18:00:: 1 -1 appalling%1:11:00:: 1 -1 apologist%1:18:00:: 1 -1 apologia%1:10:01:: 1 -1 apologetic%3:00:00:: 1 -1 apogee%1:28:00:: 1 -1 apocryphal%5:00:00:questionable:00 1 -1 apocalyptic%5:00:00:prophetic:00 1 -1 aplomb%1:07:00:: 1 -1 aperture%1:06:01:: 1 -1 ape%1:05:00:: 1 -1 apartment_house%1:06:00:: 1 -1 apart%5:00:00:unconnected:00 1 -1 apart%4:02:07:: 3 -1 any_longer%4:02:01:: 1 -1 anvil%1:06:00:: 1 -1 antitrust_case%1:04:00:: 1 -1 antitrust%5:00:00:fair:03 1 -1 antithetical%5:00:00:different:00 1 -1 antithesis%1:24:00:: 1 -1 antiseptic%5:00:00:incorrupt:00 2 -1 antiseptic%3:00:00:: 1 -1 antiredeposition%1:22:00:: 1 -1 antiquity%1:28:00:: 1 -1 anticoagulation%1:04:00:: 1 -1 anticipation%1:17:00:: 4 -1 anticipate%2:30:00:: 6 -1 antic%5:00:00:strange:00 1 -1 antibiotic%3:01:00:: 1 -1 anti-intellectual%5:00:00:nonintellectual:00 1 -1 anti-catholicism%1:09:00:: 1 -1 anthropomorphic%5:00:00:human:00 1 -1 anthill%1:17:00:: 1 -1 anterior%1:08:00:: 1 -1 antecedent%1:18:00:: 1 -1 antecedent%1:11:00:: 2 -1 antebellum%5:00:00:nonmodern:00 1 -1 anteater%1:05:04:: 1 -1 antares%1:17:00:: 1 -1 antagonistic%5:00:00:negative:02 1 -1 antagonistic%5:00:00:hostile:01 2 -1 antagonise%2:41:00:: 1 -1 answering%5:00:00:responsive:00 1 -1 anorexia%1:26:00:: 1 -1 anonymous%5:00:00:faceless:00 2 -1 anonymity%1:26:00:: 1 -1 anomie%1:26:00:: 1 -1 anomic%5:00:00:unoriented:00 1 -1 anomalous%5:00:00:abnormal:00 1 -1 annual%3:00:00:: 2 -1 annoying%5:00:00:disagreeable:00 1 -1 annoyance%1:12:00:: 2 -1 annihilation%1:11:00:: 2 -1 annihilating%5:00:00:destructive:00 1 -1 annihilate%2:30:00:: 1 -1 ankle-deep%5:00:00:shallow:01 1 -1 animosity%1:12:00:: 1 -1 animize%2:30:00:: 1 -1 animate%3:00:02:: 1 -1 animate%2:37:00:: 1 -1 animal%5:00:00:physical:00 1 -1 anhydrous%3:00:00:: 1 -1 angular%3:01:00:: 1 -1 angular%3:00:00:: 2 -1 anguished%5:00:00:sorrowful:00 1 -1 angry%5:00:00:stormy:00 2 -1 anglophilia%1:12:00:: 1 -1 anglo-saxon%3:01:00:: 1 -1 anglo-jewish%3:01:00:: 1 -1 angle_of_extinction%1:25:00:: 1 -1 anger%2:37:00:: 1 -1 anger%1:26:00:: 2 -1 anesthetized%5:00:00:insensible:00 1 -1 anemic%5:00:00:weak:00 1 -1 andean%3:01:00:: 1 -1 ancistrodon%1:05:00:: 1 -1 anciently%4:02:00:: 1 -1 anchor%1:09:00:: 2 -1 anatomy%1:04:00:: 3 -1 anatomic%3:01:00:: 1 -1 anastomotic%3:01:00:: 1 -1 anarchist%1:18:00:: 1 -1 anaplasmosis%1:26:00:: 1 -1 analyzer%1:06:00:: 1 -1 analyticity%1:07:00:: 1 -1 analytically%4:02:00:: 1 -1 analytical%3:00:03:: 1 -1 analogue_computer%1:06:00:: 1 -1 analogue%1:07:00:: 1 -1 analogously%4:02:00:: 1 -1 anaesthesia%1:26:00:: 1 -1 anaerobic%3:00:00:: 1 -1 anachronistically%4:02:00:: 1 -1 anachronism%1:28:00:: 1 -1 anachronism%1:06:00:: 2 -1 amusement%1:04:00:: 2 -1 amused%5:00:00:pleased:00 1 -1 amuse%2:32:00:: 2 -1 amulet%1:06:00:: 1 -1 amplifier%1:06:00:: 1 -1 amplification%1:04:02:: 1 -1 amphibology%1:10:00:: 1 -1 amount_of_money%1:21:00:: 1 -1 amorous%5:00:01:loving:00 1 -1 amorist%1:18:00:: 1 -1 ammonium_ion%1:27:00:: 1 -1 ammoniac%1:27:00:: 1 -1 amity%1:07:00:: 1 -1 amiss%5:00:00:malfunctioning:00 1 -1 aminomethane%1:27:00:: 1 -1 amino_acid%1:27:00:: 1 -1 amicable%3:00:00:: 1 -1 amiable%5:00:00:good-natured:00 1 -1 amiable%5:00:00:friendly:01 2 -1 americanism%1:07:00:: 1 -1 american_revolution%1:04:00:: 1 -1 american_dream%1:12:00:: 1 -1 america%1:17:00:: 2 -1 amendment%1:10:00:: 2 -1 amenable%5:00:00:compliant:00 1 -1 ambush%2:33:01:: 2 -1 ambuscade%1:04:00:: 1 -1 ambiguous%5:00:00:unstructured:00 3 -1 ambiguity%1:07:00:: 2 -1 ambiance%1:26:00:: 1 -1 amber%1:07:00:: 1 -1 amaze%2:31:01:: 2 -1 amateurishness%1:09:00:: 1 -1 amass%2:30:00:: 1 -1 alveolar_bed%1:08:00:: 1 -1 alundum%1:27:00:: 1 -1 aluminum_chloride%1:27:00:: 1 -1 altruism%1:07:00:: 1 -1 altogether%4:02:00:: 2 -1 alternatively%4:02:00:: 1 -1 alternative%5:00:00:disjunctive:00 2 -1 alternate%5:00:01:cyclic:01 3 -1 altered%3:00:00:: 1 -1 alter_ego%1:18:00:: 1 -1 alter%2:36:00:: 3 -1 also_known_as%4:02:00:: 1 -1 alphabetize%2:30:00:: 1 -1 alphabetic_character%1:10:00:: 1 -1 alpha%1:10:00:: 1 -1 aloud%4:02:01:: 2 -1 aloofness%1:12:02:: 1 -1 aloof%5:00:00:reserved:01 1 -1 aloneness%1:07:00:: 1 -1 alone%5:00:00:exclusive:00 3 -1 ally_with%2:41:00:: 1 -1 ally%1:18:00:: 2 -1 allowance%1:21:02:: 2 -1 allowance%1:21:01:: 3 -1 allowance%1:07:00:: 4 -1 allotment%1:04:00:: 2 -1 allocation%1:21:00:: 1 -1 allocation%1:04:00:: 2 -1 alligatored%5:00:00:rough:00 1 -1 alligator%1:27:00:: 1 -1 alligator%1:05:00:: 2 -1 allied%5:00:00:related:01 1 -1 alleyway%1:06:00:: 1 -1 alley_cat%1:05:00:: 1 -1 alley%1:06:00:: 1 -1 alleviate%2:30:00:: 2 -1 allegro_con_spirito%1:28:00:: 1 -1 allegiance%1:04:00:: 1 -1 alleged%5:00:00:questionable:00 2 -1 allegation%1:10:01:: 2 -1 allegation%1:10:00:: 1 -1 all_together%4:02:00:: 1 -1 all_the_same%4:02:00:: 1 -1 all_of_a_sudden%4:02:01:: 2 -1 all_of_a_sudden%4:02:00:: 1 -1 all_at_once%4:02:01:: 1 -1 all_at_once%4:02:00:: 2 -1 all-weather%5:00:00:unrestricted:00 1 -1 all-victorious%5:00:00:unconquerable:00 1 -1 all-time%5:00:00:incomparable:00 1 -1 all-round%5:00:00:comprehensive:00 1 -1 all-knowing%5:00:00:wise:00 1 -1 all-fired%5:00:00:immoderate:00 1 -1 alkylbenzenesulfonate%1:27:00:: 1 -1 alizarin_crimson%1:27:00:: 1 -1 aliquot%1:23:00:: 1 -1 align%2:42:00:: 2 -1 align%2:31:00:: 3 -1 alight%2:38:01:: 1 -1 alienated%5:00:00:unoriented:00 1 -1 alfresco%5:00:00:outdoor(a):00 1 -1 alexander_the_great%1:18:00:: 1 -1 alertly%4:02:00:: 1 -1 alerting%1:26:00:: 1 -1 alert%5:00:00:conscious:00 3 -1 alderman%1:18:00:: 1 -1 alchemy%1:07:00:: 1 -1 album%1:06:00:: 2 -1 alarmingly%4:02:00:: 1 -1 alarmed%5:00:00:afraid(p):00 1 -1 alarm%2:32:00:: 2 -1 alabamian%1:18:00:: 1 -1 alabaman%1:18:00:: 1 -1 airplane_mechanics%1:04:00:: 1 -1 airless%5:00:00:unventilated:00 1 -1 airily%4:02:00:: 1 -1 airframe%1:06:00:: 1 -1 airflow%1:11:00:: 1 -1 aircraft_carrier%1:06:00:: 1 -1 air_wave%1:11:00:: 1 -1 air_mattress%1:06:00:: 1 -1 air_defense%1:04:00:: 1 -1 air_corps%1:14:00:: 1 -1 air-to-surface_missile%1:06:00:: 1 -1 air%2:39:00:: 1 -1 air%1:15:01:: 6 -1 air%1:04:01:: 7 -1 aimlessness%1:07:00:: 1 -1 aimlessly%4:02:00:: 1 -1 aide%1:18:00:: 2 -1 aid%2:29:00:: 2 -1 ahorseback%5:00:00:moving:02 1 -1 ahead%5:00:00:up:00 1 -1 ahead%4:02:01:: 4 -1 ague%1:26:00:: 1 -1 agrobacterium_tumefaciens%1:05:00:: 1 -1 agriculture%1:04:00:: 2 -1 agricultural_agent%1:18:00:: 1 -1 agreeably%4:02:00:: 1 -1 agree%2:42:01:: 4 -1 agitation%1:26:01:: 1 -1 agitated%3:00:02:: 2 -1 agitate%2:37:00:: 2 -1 agilely%4:02:00:: 1 -1 agile%5:00:00:active:01 1 -1 aggressor%1:18:01:: 2 -1 aggressor%1:18:00:: 1 -1 aggressiveness%1:12:00:: 2 -1 aggressive%5:00:00:ambitious:00 2 -1 aggression%1:12:00:: 2 -1 aggression%1:04:00:: 3 -1 aggregation%1:14:00:: 1 -1 aggregate%1:06:00:: 1 -1 aggravatingly%4:02:00:: 1 -1 agglutination%1:22:00:: 2 -1 agglutinating_activity%1:22:00:: 1 -1 agent%1:18:01:: 4 -1 agency%1:26:01:: 3 -1 aged%5:00:00:worn:00 2 -1 aged%1:14:00:: 1 -1 age_of_reason%1:14:00:: 1 -1 age_group%1:14:00:: 1 -1 age-old%5:00:00:old:01 1 -1 age%2:30:01:: 1 -1 age%2:30:00:: 2 -1 agate%1:27:00:: 1 -1 agape%5:00:00:open:08 1 -1 afternoon%1:10:00:: 2 -1 aftereffect%1:19:00:: 1 -1 after_a_fashion%4:02:00:: 1 -1 after-school%5:00:00:outside:00 1 -1 after-hours%5:00:00:late:00 1 -1 aft%4:02:00:: 1 -1 afraid%5:00:02:concerned:00 3 -1 afoot%4:02:01:: 1 -1 afloat%5:00:00:purposeless:00 1 -1 aflare%5:00:00:moving:02 1 -1 aflare%5:00:00:lighted:00 2 -1 afire%5:00:00:lighted:00 1 -1 afghan%1:06:00:: 1 -1 affront%2:32:00:: 1 -1 affront%1:04:00:: 1 -1 afflicted%5:00:00:ill:01 1 -1 affirmation%1:10:00:: 1 -1 affinity%1:19:02:: 1 -1 affiliated%5:00:00:related:02 1 -1 affidavit%1:10:00:: 1 -1 affianced%5:00:00:attached:01 1 -1 afferent%3:00:00:: 1 -1 affectingly%4:02:00:: 1 -1 affected%3:00:01:: 2 -1 affect%1:12:00:: 1 -1 affairs%1:04:00:: 2 -1 affably%4:02:00:: 1 -1 aeschylus%1:18:00:: 1 -1 aerosolized%5:00:00:gaseous:00 1 -1 aerodynamic%3:01:00:: 1 -1 aerobic%3:00:00:: 1 -1 aerobacter_aerogenes%1:05:00:: 1 -1 aerial%5:00:00:overhead:00 1 -1 aerial%1:04:00:: 1 -1 aeon%1:18:00:: 1 -1 aegis%1:04:00:: 1 -1 aegean_island%1:15:00:: 1 -1 advocate%2:32:01:: 2 -1 advocacy%1:04:00:: 1 -1 advisor%1:18:00:: 1 -1 advisedly%4:02:00:: 1 -1 advisable%3:00:00:: 1 -1 advisability%1:07:00:: 1 -1 advertising_campaign%1:04:00:: 1 -1 advertised%5:00:00:publicized:00 1 -1 adversity%1:26:00:: 1 -1 adversary%1:18:00:: 1 -1 adverbial%3:01:00:: 1 -1 adventurous%3:00:00:: 1 -1 adventurer%1:18:00:: 1 -1 adventure%2:41:01:: 1 -1 advent%1:04:00:: 1 -1 advantageous%3:00:00:: 1 -1 advanced%5:00:00:late:00 6 -1 advanced%5:00:00:high-tech:00 5 -1 advanced%5:00:00:front(a):00 8 -1 advanced%5:00:00:civilized:00 7 -1 advance%2:30:09:: 8 -1 advance%1:10:00:: 3 -1 advance%1:04:00:: 4 -1 adulthood%1:28:00:: 1 -1 adult_education%1:04:00:: 1 -1 adult%5:00:00:mature:01 1 -1 adulation%1:04:00:: 1 -1 adsorb%2:35:00:: 1 -1 adroitness%1:09:00:: 1 -1 adroitly%4:02:00:: 1 -1 adroit%5:00:00:artful:00 1 -1 adrenal%3:01:00:: 1 -1 adore%2:37:00:: 1 -1 adopted%5:00:00:adoptive:00 2 -1 adonis%1:18:01:: 1 -1 adolescent%3:01:00:: 1 -1 adolescent%1:18:00:: 1 -1 ado%1:04:00:: 1 -1 admonish%2:32:02:: 1 -1 admix%2:30:00:: 1 -1 admittedly%4:02:00:: 1 -1 admit%2:41:00:: 3 -1 admit%2:40:00:: 4 -1 admission%1:10:00:: 2 -1 admissible%3:00:00:: 1 -1 admirer%1:18:01:: 1 -1 admiration%1:12:02:: 2 -1 admiralty_law%1:14:00:: 1 -1 administrative_official%1:18:00:: 1 -1 administration%1:28:00:: 4 -1 administer%2:29:00:: 4 -1 adjustment%1:04:01:: 3 -1 adjudication%1:04:00:: 1 -1 adjacent%5:00:00:near:00 3 -1 adios%1:10:00:: 1 -1 adieu%1:10:00:: 1 -1 adhere%2:35:01:: 3 -1 adequate%5:00:00:satisfactory:00 3 -1 adequacy%1:07:01:: 2 -1 adept%5:00:00:skilled:00 1 -1 adenoma%1:26:00:: 1 -1 addressed%3:00:00:: 1 -1 address%2:34:00:: 6 -1 address%1:10:03:: 4 -1 addlebrained%5:00:00:confused:00 1 -1 addition%1:23:00:: 4 -1 addicted%3:00:00:: 1 -1 add_on%2:30:00:: 1 -1 add%2:32:00:: 5 -1 adapted%5:00:00:modified:00 1 -1 adaptation%1:10:00:: 1 -1 adaptable%3:00:00:: 1 -1 adamantly%4:02:00:: 1 -1 ad_hoc%4:02:00:: 1 -1 ad_campaign%1:04:00:: 1 -1 ad-lib%5:00:00:unprepared:00 1 -1 acutely%4:02:00:: 2 -1 acute%5:00:00:perceptive:00 3 -1 active%5:00:00:existent:00 8 -1 active%5:00:00:dynamic:00 9 -1 action%1:10:00:: 5 -1 action%1:07:00:: 6 -1 action%1:06:00:: 7 -1 action%1:04:01:: 8 -1 actinometer%1:06:00:: 1 -1 act_out%2:36:01:: 1 -1 act_out%2:36:00:: 2 -1 act%2:29:01:: 5 -1 across%4:02:02:: 2 -1 across%4:02:00:: 3 -1 acrobatics%1:04:00:: 1 -1 acrobatic%5:00:00:active:01 1 -1 acquit%2:32:00:: 1 -1 acquired%5:00:00:noninheritable:00 1 -1 acquire%2:29:00:: 3 -1 acquiescence%1:10:00:: 2 -1 acquainted%5:00:00:familiar:00 1 -1 acquaintance%1:26:00:: 2 -1 acquaintance%1:18:00:: 3 -1 acquaint%2:32:01:: 2 -1 acquaint%2:32:00:: 1 -1 acoustically%4:02:00:: 1 -1 acoustical%3:01:00:: 1 -1 acolyte%1:18:00:: 1 -1 acknowledge%2:32:01:: 6 -1 acidity%1:07:02:: 1 -1 acid%5:00:00:unpleasant:00 1 -1 aching%5:00:00:painful:00 1 -1 ace_of_spades%1:06:00:: 1 -1 accusingly%4:02:00:: 1 -1 accusative%5:00:00:inculpatory:00 1 -1 accumulation%1:14:00:: 2 -1 accumulation%1:04:00:: 3 -1 accumulate%2:35:00:: 3 -1 acculturation%1:04:00:: 1 -1 acculturate%2:30:00:: 1 -1 accrued%5:00:00:increased:00 1 -1 accouterment%1:06:00:: 1 -1 accounting%1:10:00:: 1 -1 accounting%1:09:00:: 2 -1 accounting%1:04:00:: 3 -1 accountant%1:18:00:: 1 -1 account%1:16:00:: 5 -1 account%1:07:01:: 6 -1 accordingly%4:02:01:: 2 -1 accomplished%5:00:00:skilled:00 1 -1 accomplished%5:00:00:complete:00 2 -1 accomplice%1:18:00:: 1 -1 accompany%2:42:01:: 4 -1 accompaniment%1:11:00:: 1 -1 accompaniment%1:10:00:: 2 -1 accompanied%3:00:00:: 1 -1 acclimatize%2:30:00:: 1 -1 accidentally%4:02:00:: 1 -1 accidental%5:00:00:extrinsic:00 1 -1 accessory%1:06:01:: 1 -1 accessory%1:06:00:: 2 -1 access_road%1:06:00:: 1 -1 accepted%5:00:00:uncontroversial:00 3 -1 accepted%5:00:00:standard:01 2 -1 acceptance%1:26:00:: 3 -1 acceptance%1:10:01:: 4 -1 accentual_system%1:10:00:: 1 -1 accenting%1:04:00:: 1 -1 accent%1:26:00:: 2 -1 accelerator%1:06:00:: 2 -1 acceleration%1:28:00:: 3 -1 accelerated%5:00:00:fast:01 2 -1 accelerate%2:30:01:: 2 -1 accede%2:32:00:: 1 -1 acapulco%1:15:00:: 1 -1 academy%1:14:02:: 2 -1 academicianship%1:04:00:: 1 -1 academic_program%1:09:00:: 1 -1 abused%5:00:00:misused:00 1 -1 abuse%1:04:02:: 1 -1 abundant%3:00:00:: 1 -1 absurdity%1:07:01:: 2 -1 absurd%5:00:00:foolish:00 2 -1 abstruseness%1:07:00:: 1 -1 abstractive%5:00:00:theoretical:00 1 -1 abstractionism%1:06:00:: 1 -1 abstract_art%1:06:00:: 1 -1 abstract%5:00:00:technical:00 3 -1 abstract%5:00:00:nonrepresentational:00 2 -1 abstract%2:40:00:: 2 -1 abstract%2:31:01:: 3 -1 abstention%1:07:00:: 1 -1 abstain%2:41:00:: 1 -1 abstain%2:34:00:: 2 -1 absorptive%3:00:00:: 1 -1 absorption_spectrum%1:19:00:: 1 -1 absorbency%1:07:00:: 1 -1 absorbed%5:00:00:unreflected:00 2 -1 absorb%2:43:00:: 6 -1 absorb%2:31:06:: 7 -1 absolute_temperature%1:07:00:: 1 -1 absolute%5:00:00:arbitrary:00 3 -1 absolute%1:09:00:: 1 -1 absenteeism%1:04:00:: 1 -1 absentee_rate%1:24:00:: 1 -1 abscissa%1:09:00:: 1 -1 abruptness%1:07:02:: 1 -1 abrupt_change%1:11:00:: 1 -1 abrogate%2:41:00:: 1 -1 abroad%4:02:01:: 3 -1 abridgment%1:10:00:: 1 -1 abridge%2:30:00:: 1 -1 abreaction%1:04:00:: 1 -1 aboveground%5:00:00:surface:00 1 -1 above-mentioned%5:00:00:preceding(a):00 1 -1 about%4:02:05:: 7 -1 abounding%5:00:00:abundant:00 1 -1 abound_in%2:42:00:: 1 -1 aborigine%1:18:00:: 1 -1 abominable%5:00:00:hateful:00 1 -1 abolition%1:04:00:: 1 -1 abode%1:15:00:: 1 -1 abode%1:06:00:: 2 -1 aboard%4:02:00:: 2 -1 abo_antibodies%1:27:00:: 1 -1 abnormally%4:02:00:: 1 -1 abnormality%1:26:00:: 1 -1 abnormal%3:00:00:: 1 -1 ably%4:02:00:: 1 -1 ablaze%5:00:00:passionate:00 1 -1 ablated%5:00:00:decreased:00 1 -1 abjection%1:26:01:: 1 -1 abject%5:00:00:unfortunate:00 2 -1 abide%2:31:00:: 2 -1 abhorrent%5:00:00:offensive:01 1 -1 abhor%2:37:00:: 1 -1 aberration%1:26:01:: 1 -1 aberrant%5:00:00:abnormal:00 1 -1 abed%4:02:00:: 1 -1 abbreviated%5:00:00:short:01 1 -1 abbey%1:06:02:: 1 -1 abashed%5:00:00:discomposed:00 1 -1 abasement%1:26:00:: 1 -1 abandonment%1:04:01:: 2 -1 abandoned%5:00:00:uninhabited:00 1 -1 abandoned%5:00:00:forsaken:00 2 -1 ab%1:14:00:: 1 -1 ab%1:10:00:: 2 -1 a_hundred_times%4:02:00:: 1 -1 a_hundred_thousand%5:00:00:cardinal:00 1 -1 a_great_deal%4:02:00:: 1 -1 a_fortiori%4:02:00:: 1 -1 a.m.%1:28:00:: 1 -1 70th%5:00:00:ordinal:00 1 -1 70%1:23:00:: 1 -1 3rd%5:00:00:ordinal:00 1 -1 3-hitter%1:04:00:: 1 -1 2d%5:00:00:ordinal:00 1 -1 27%1:23:00:: 1 -1 26%1:23:00:: 1 -1 25th%5:00:00:ordinal:00 1 -1 24th%5:00:00:ordinal:00 1 -1 23%1:23:00:: 1 -1 17%1:23:00:: 1 -1 14th%5:00:00:ordinal:00 1 -1 14%1:23:00:: 1 -1 100000%1:23:00:: 1 diff --git a/corpora/en/wordnet/dict/cntlist.rev b/corpora/en/wordnet/dict/cntlist.rev deleted file mode 100644 index b297ca7ce..000000000 --- a/corpora/en/wordnet/dict/cntlist.rev +++ /dev/null @@ -1,37387 +0,0 @@ -0%1:23:00:: 1 20 -0%5:00:00:cardinal:00 1 3 -1%1:23:00:: 1 21 -1%5:00:00:cardinal:00 1 107 -10%1:23:00:: 1 4 -10%5:00:00:cardinal:00 1 69 -100%1:23:00:: 1 5 -100%5:00:00:cardinal:00 1 33 -1000%5:00:00:cardinal:00 1 19 -100000%1:23:00:: 1 1 -11%1:23:00:: 1 6 -11%5:00:00:cardinal:00 1 10 -11th%5:00:00:ordinal:00 1 2 -12%1:23:00:: 1 6 -12%5:00:00:cardinal:00 1 25 -13%5:00:00:cardinal:00 1 11 -13th%5:00:00:ordinal:00 1 2 -14%1:23:00:: 1 1 -14%5:00:00:cardinal:00 1 19 -14th%5:00:00:ordinal:00 1 1 -15%1:23:00:: 1 4 -15%5:00:00:cardinal:00 1 34 -15_minutes%1:28:00:: 1 8 -15th%5:00:00:ordinal:00 1 8 -16%1:23:00:: 1 4 -16%5:00:00:cardinal:00 1 17 -17%1:23:00:: 1 1 -17%5:00:00:cardinal:00 1 7 -17th%5:00:00:ordinal:00 1 4 -18%5:00:00:cardinal:00 1 18 -18th%5:00:00:ordinal:00 1 2 -19%1:23:00:: 1 2 -19%5:00:00:cardinal:00 1 8 -19th%5:00:00:ordinal:00 1 7 -1st%5:00:00:ordinal:00 1 2 -2%1:23:00:: 1 12 -2%5:00:00:cardinal:00 1 96 -20%1:23:00:: 1 4 -20%5:00:00:cardinal:00 1 32 -20th%5:00:00:ordinal:00 1 6 -21%1:23:00:: 1 2 -21%5:00:00:cardinal:00 1 12 -22%1:23:00:: 1 4 -22%5:00:00:cardinal:00 1 13 -23%1:23:00:: 1 1 -23%5:00:00:cardinal:00 1 8 -24%1:23:00:: 1 3 -24%5:00:00:cardinal:00 1 24 -24th%5:00:00:ordinal:00 1 1 -25%1:23:00:: 1 3 -25%5:00:00:cardinal:00 1 31 -25th%5:00:00:ordinal:00 1 1 -26%1:23:00:: 1 1 -26%5:00:00:cardinal:00 1 10 -27%1:23:00:: 1 1 -27%5:00:00:cardinal:00 1 7 -28%5:00:00:cardinal:00 1 4 -29%1:23:00:: 1 4 -29%5:00:00:cardinal:00 1 6 -2d%5:00:00:ordinal:00 1 1 -3%1:23:00:: 1 9 -3%5:00:00:cardinal:00 1 77 -3-hitter%1:04:00:: 1 1 -30%1:23:00:: 1 4 -30%5:00:00:cardinal:00 1 27 -30_minutes%1:28:00:: 1 15 -30th%5:00:00:ordinal:00 1 2 -3rd%5:00:00:ordinal:00 1 1 -4%1:23:00:: 1 13 -4%5:00:00:cardinal:00 1 51 -40%1:23:00:: 1 3 -40%5:00:00:cardinal:00 1 19 -4th%5:00:00:ordinal:00 1 4 -5%1:23:00:: 1 5 -5%5:00:00:cardinal:00 1 52 -50%1:23:00:: 1 5 -50%5:00:00:cardinal:00 1 34 -500%5:00:00:cardinal:00 1 9 -6%1:23:00:: 1 2 -6%5:00:00:cardinal:00 1 43 -60%5:00:00:cardinal:00 1 20 -6th%5:00:00:ordinal:00 1 4 -7%1:23:00:: 1 3 -7%5:00:00:cardinal:00 1 23 -70%1:23:00:: 1 1 -70%5:00:00:cardinal:00 1 9 -70th%5:00:00:ordinal:00 1 1 -8%1:23:00:: 1 3 -8%5:00:00:cardinal:00 1 35 -80%5:00:00:cardinal:00 1 7 -9%1:23:00:: 1 6 -9%5:00:00:cardinal:00 1 13 -90%5:00:00:cardinal:00 1 6 -a%1:14:00:: 1 7 -a%1:23:01:: 2 6 -a.m.%1:28:00:: 1 1 -a_bit%4:02:00:: 1 21 -a_couple_of%5:00:00:few:00 1 26 -a_few%5:00:00:few:00 1 138 -a_fortiori%4:02:00:: 1 1 -a_great_deal%4:02:00:: 1 1 -a_hundred%5:00:00:cardinal:00 1 19 -a_hundred_thousand%5:00:00:cardinal:00 1 1 -a_hundred_times%4:02:00:: 1 1 -a_little%4:02:00:: 1 80 -a_lot%4:02:00:: 1 17 -a_million%5:00:00:cardinal:00 1 5 -a_people%1:14:00:: 1 2 -a_thousand%5:00:00:cardinal:00 1 13 -a_trifle%4:02:00:: 1 9 -ab%1:10:00:: 2 1 -ab%1:14:00:: 1 1 -abandon%1:07:00:: 1 4 -abandon%2:31:00:: 5 3 -abandon%2:31:01:: 4 5 -abandon%2:38:00:: 3 6 -abandon%2:40:00:: 1 10 -abandon%2:40:01:: 2 6 -abandoned%5:00:00:forsaken:00 2 1 -abandoned%5:00:00:uninhabited:00 1 1 -abandonment%1:04:01:: 2 1 -abandonment%1:04:03:: 1 3 -abasement%1:26:00:: 1 1 -abashed%5:00:00:discomposed:00 1 1 -abbey%1:06:02:: 1 1 -abbot%1:18:00:: 1 2 -abbreviated%5:00:00:short:01 1 1 -abdomen%1:08:00:: 1 2 -abdominal%3:01:00:: 1 3 -abed%4:02:00:: 1 1 -aberrant%5:00:00:abnormal:00 1 1 -aberration%1:26:01:: 1 1 -abet%2:41:00:: 1 3 -abhor%2:37:00:: 1 1 -abhorrent%5:00:00:offensive:01 1 1 -abide%2:31:00:: 2 1 -abide%2:42:01:: 1 2 -abide_by%2:41:00:: 1 2 -abiding%5:00:00:permanent:00 1 2 -ability%1:07:00:: 1 19 -ability%1:09:00:: 2 9 -abject%5:00:00:contemptible:00 1 3 -abject%5:00:00:unfortunate:00 2 1 -abjection%1:26:01:: 1 1 -ablated%5:00:00:decreased:00 1 1 -ablation%1:04:00:: 1 2 -ablaze%5:00:00:passionate:00 1 1 -able%3:00:00:: 1 70 -able%5:00:00:capable:00 3 4 -able%5:00:00:competent:00 2 7 -ably%4:02:00:: 1 1 -abnormal%3:00:00:: 1 1 -abnormality%1:26:00:: 1 1 -abnormally%4:02:00:: 1 1 -abo%1:18:00:: 1 2 -abo_antibodies%1:27:00:: 1 1 -aboard%4:02:00:: 2 1 -aboard%4:02:01:: 1 4 -abode%1:06:00:: 2 1 -abode%1:15:00:: 1 1 -abolish%2:41:00:: 1 9 -abolition%1:04:00:: 1 1 -abolitionist%1:18:00:: 1 2 -abominable%5:00:00:hateful:00 1 1 -aborigine%1:18:00:: 1 1 -abortion%1:04:00:: 1 3 -abound%2:42:00:: 1 2 -abound_in%2:42:00:: 1 1 -abounding%5:00:00:abundant:00 1 1 -about%4:02:00:: 1 55 -about%4:02:01:: 3 5 -about%4:02:02:: 5 3 -about%4:02:03:: 6 2 -about%4:02:04:: 4 3 -about%4:02:05:: 7 1 -about%4:02:06:: 2 10 -about-face%2:38:00:: 1 2 -above%4:02:00:: 1 32 -above%4:02:01:: 2 9 -above%5:00:00:preceding(a):00 1 13 -above-mentioned%5:00:00:preceding(a):00 1 1 -above_all%4:02:00:: 1 5 -aboveground%5:00:00:surface:00 1 1 -abraham_lincoln%1:18:00:: 1 2 -abreaction%1:04:00:: 1 1 -abridge%2:30:00:: 1 1 -abridgment%1:10:00:: 1 1 -abroad%4:02:00:: 1 8 -abroad%4:02:01:: 3 1 -abroad%4:02:02:: 2 2 -abroad%5:00:00:foreign:02 1 6 -abrogate%2:41:00:: 1 1 -abrupt%5:00:00:staccato:00 1 3 -abrupt%5:00:00:sudden:00 2 2 -abrupt_change%1:11:00:: 1 1 -abruptly%4:02:00:: 1 9 -abruptness%1:07:02:: 1 1 -abscess%1:26:00:: 1 3 -abscissa%1:09:00:: 1 1 -absence%1:04:00:: 2 8 -absence%1:26:00:: 1 25 -absent%2:30:00:: 1 2 -absent%3:00:00:: 1 12 -absentee_rate%1:24:00:: 1 1 -absenteeism%1:04:00:: 1 1 -absently%4:02:00:: 1 6 -absentminded%5:00:00:inattentive:00 1 3 -absentmindedly%4:02:00:: 1 3 -absolute%1:09:00:: 1 1 -absolute%3:00:00:: 1 11 -absolute%5:00:00:arbitrary:00 3 1 -absolute%5:00:01:complete:00 2 4 -absolute_temperature%1:07:00:: 1 1 -absolutely%4:02:00:: 1 13 -absorb%2:30:00:: 5 2 -absorb%2:31:00:: 2 5 -absorb%2:31:06:: 7 1 -absorb%2:35:00:: 4 4 -absorb%2:35:01:: 1 8 -absorb%2:40:00:: 3 4 -absorb%2:43:00:: 6 1 -absorbed%5:00:00:attentive:00 1 7 -absorbed%5:00:00:unreflected:00 2 1 -absorbency%1:07:00:: 1 1 -absorption%1:22:00:: 1 4 -absorption%1:22:02:: 2 3 -absorption_spectrum%1:19:00:: 1 1 -absorptive%3:00:00:: 1 1 -abstain%2:34:00:: 2 1 -abstain%2:41:00:: 1 1 -abstention%1:07:00:: 1 1 -abstract%1:09:00:: 1 2 -abstract%2:31:00:: 1 5 -abstract%2:31:01:: 3 1 -abstract%2:40:00:: 2 1 -abstract%3:00:00:: 1 5 -abstract%5:00:00:nonrepresentational:00 2 1 -abstract%5:00:00:technical:00 3 1 -abstract_art%1:06:00:: 1 1 -abstract_expressionism%1:06:00:: 1 2 -abstracted%5:00:00:separate:00 1 2 -abstraction%1:04:00:: 2 3 -abstraction%1:06:00:: 4 2 -abstraction%1:09:00:: 1 5 -abstraction%1:09:02:: 3 2 -abstractionism%1:06:00:: 1 1 -abstractive%5:00:00:theoretical:00 1 1 -abstruseness%1:07:00:: 1 1 -absurd%5:00:00:foolish:00 2 1 -absurd%5:00:00:illogical:00 1 7 -absurdity%1:07:01:: 2 1 -absurdity%1:10:00:: 1 6 -abundance%1:07:00:: 1 2 -abundant%3:00:00:: 1 1 -abuse%1:04:02:: 1 1 -abuse%2:30:00:: 2 2 -abuse%2:41:00:: 1 3 -abused%5:00:00:misused:00 1 1 -abyss%1:17:00:: 1 3 -academic%1:18:00:: 1 2 -academic%3:01:00:: 1 18 -academic%5:00:00:scholarly:00 3 2 -academic%5:00:00:theoretical:01 2 3 -academic_program%1:09:00:: 1 1 -academically%4:02:00:: 1 4 -academicianship%1:04:00:: 1 1 -academy%1:14:00:: 1 5 -academy%1:14:02:: 2 1 -acapulco%1:15:00:: 1 1 -accede%2:32:00:: 1 1 -accelerate%2:30:00:: 1 11 -accelerate%2:30:01:: 2 1 -accelerated%5:00:00:expedited:00 1 2 -accelerated%5:00:00:fast:01 2 1 -accelerating%5:00:00:fast:01 1 2 -acceleration%1:04:00:: 2 2 -acceleration%1:07:00:: 1 2 -acceleration%1:28:00:: 3 1 -accelerator%1:06:00:: 2 1 -accelerator%1:06:02:: 1 2 -accent%1:10:01:: 1 5 -accent%1:26:00:: 2 1 -accent%2:30:00:: 1 2 -accenting%1:04:00:: 1 1 -accentual_system%1:10:00:: 1 1 -accentuate%2:30:00:: 2 2 -accentuate%2:32:00:: 1 2 -accept%2:31:00:: 1 34 -accept%2:31:01:: 4 12 -accept%2:31:03:: 7 2 -accept%2:32:00:: 3 17 -accept%2:40:00:: 2 33 -accept%2:40:01:: 6 7 -accept%2:40:03:: 5 8 -acceptable%3:00:00:: 1 2 -acceptance%1:04:00:: 2 3 -acceptance%1:09:00:: 1 4 -acceptance%1:10:01:: 4 1 -acceptance%1:26:00:: 3 1 -accepted%5:00:00:acknowledged:00 1 2 -accepted%5:00:00:standard:01 2 1 -accepted%5:00:00:uncontroversial:00 3 1 -accepting%5:00:00:acceptive:00 1 2 -access%1:06:00:: 3 2 -access%1:07:00:: 1 2 -access%1:07:01:: 2 2 -access_road%1:06:00:: 1 1 -accessory%1:06:00:: 2 1 -accessory%1:06:01:: 1 1 -accident%1:11:00:: 2 5 -accident%1:11:01:: 1 7 -accidental%5:00:00:extrinsic:00 1 1 -accidentally%4:02:00:: 1 1 -acclaim%2:32:00:: 1 3 -acclimatize%2:30:00:: 1 1 -accommodate%2:30:00:: 2 5 -accommodate%2:34:00:: 3 3 -accommodate%2:42:00:: 1 5 -accommodate%2:42:03:: 4 2 -accompanied%3:00:00:: 1 1 -accompaniment%1:10:00:: 2 1 -accompaniment%1:11:00:: 1 1 -accompany%2:36:00:: 3 3 -accompany%2:38:00:: 2 8 -accompany%2:42:00:: 1 20 -accompany%2:42:01:: 4 1 -accompanying%5:00:00:related:02 1 2 -accomplice%1:18:00:: 1 1 -accomplish%2:36:00:: 1 29 -accomplish%2:41:00:: 2 13 -accomplished%5:00:00:complete:00 2 1 -accomplished%5:00:00:skilled:00 1 1 -accomplishment%1:04:00:: 1 7 -accord%2:40:00:: 2 5 -accord%2:42:00:: 1 20 -accordance%1:10:00:: 1 8 -accordingly%4:02:00:: 1 10 -accordingly%4:02:01:: 2 1 -accost%2:32:01:: 1 4 -account%1:07:01:: 6 1 -account%1:10:00:: 1 12 -account%1:10:03:: 2 7 -account%1:10:04:: 4 3 -account%1:16:00:: 5 1 -account%1:26:00:: 3 5 -account_for%2:32:00:: 2 6 -account_for%2:42:00:: 1 24 -account_for%2:42:01:: 3 5 -accountant%1:18:00:: 1 1 -accounting%1:04:00:: 3 1 -accounting%1:09:00:: 2 1 -accounting%1:10:00:: 1 1 -accouterment%1:06:00:: 1 1 -accredit%2:41:00:: 1 2 -accreditation%1:04:00:: 1 7 -accretion%1:22:00:: 1 2 -accrue%2:30:00:: 1 2 -accrued%5:00:00:increased:00 1 1 -acculturate%2:30:00:: 1 1 -acculturation%1:04:00:: 1 1 -accumulate%2:30:00:: 2 4 -accumulate%2:35:00:: 3 1 -accumulate%2:40:00:: 1 4 -accumulated%5:00:00:concentrated:00 1 2 -accumulation%1:04:00:: 3 1 -accumulation%1:14:00:: 2 1 -accumulation%1:22:00:: 1 2 -accuracy%1:07:02:: 1 7 -accuracy%1:07:03:: 2 2 -accurate%3:00:00:: 1 12 -accurately%4:02:01:: 1 7 -accurately%4:02:02:: 2 3 -accusation%1:10:00:: 1 3 -accusative%5:00:00:inculpatory:00 1 1 -accuse%2:32:00:: 1 22 -accusing%5:00:00:inculpatory:00 1 2 -accusingly%4:02:00:: 1 1 -accustom%2:30:00:: 1 2 -accustomed%3:00:00:: 1 7 -ace%1:06:00:: 2 3 -ace%1:18:00:: 3 2 -ace%1:23:00:: 1 10 -ace_of_spades%1:06:00:: 1 1 -acetone%1:27:00:: 1 4 -acetonemia%1:26:00:: 1 3 -ache%1:26:00:: 1 2 -ache%2:37:06:: 2 3 -ache%2:39:00:: 3 2 -ache%2:39:01:: 1 3 -achieve%2:41:00:: 1 100 -achievement%1:04:00:: 1 39 -aching%5:00:00:painful:00 1 1 -acid%1:27:00:: 1 4 -acid%5:00:00:unpleasant:00 1 1 -acidity%1:07:02:: 1 1 -acknowledge%2:31:00:: 1 11 -acknowledge%2:32:00:: 2 5 -acknowledge%2:32:01:: 6 1 -acknowledge%2:32:02:: 5 2 -acknowledge%2:32:04:: 3 3 -acknowledge%2:32:07:: 4 2 -acolyte%1:18:00:: 1 1 -acoustical%3:01:00:: 1 1 -acoustically%4:02:00:: 1 1 -acquaint%2:32:00:: 1 1 -acquaint%2:32:01:: 2 1 -acquaintance%1:09:00:: 1 2 -acquaintance%1:18:00:: 3 1 -acquaintance%1:26:00:: 2 1 -acquainted%5:00:00:familiar:00 1 1 -acquainted_with%5:00:00:familiar:00 1 2 -acquiesce%2:32:00:: 1 3 -acquiescence%1:10:00:: 2 1 -acquiescence%1:26:00:: 1 3 -acquire%2:29:00:: 3 1 -acquire%2:30:00:: 2 5 -acquire%2:40:00:: 1 34 -acquired%5:00:00:noninheritable:00 1 1 -acquisition%1:04:00:: 1 11 -acquit%2:32:00:: 1 1 -acre%1:23:00:: 1 15 -acreage%1:07:00:: 1 4 -acres%1:21:00:: 1 4 -acrobatic%5:00:00:active:01 1 1 -acrobatics%1:04:00:: 1 1 -across%4:02:00:: 3 1 -across%4:02:01:: 1 4 -across%4:02:02:: 2 1 -across_the_nation%4:02:00:: 1 2 -act%1:03:00:: 2 24 -act%1:10:00:: 3 9 -act%1:10:01:: 1 35 -act%1:10:02:: 4 3 -act%2:29:00:: 2 22 -act%2:29:01:: 5 1 -act%2:33:00:: 4 4 -act%2:36:00:: 3 7 -act%2:41:00:: 1 35 -act_as%2:42:00:: 1 24 -act_on%2:41:00:: 1 5 -act_on%2:41:01:: 2 2 -act_out%2:36:00:: 2 1 -act_out%2:36:01:: 1 1 -acting%1:04:00:: 1 5 -acting%5:00:00:impermanent:00 1 4 -actinometer%1:06:00:: 1 1 -action%1:04:01:: 8 1 -action%1:04:02:: 1 94 -action%1:04:03:: 3 16 -action%1:06:00:: 7 1 -action%1:07:00:: 6 1 -action%1:10:00:: 5 1 -action%1:22:00:: 4 7 -action%1:26:00:: 2 18 -activate%2:30:00:: 2 2 -activate%2:36:00:: 1 3 -activated%5:00:00:treated:00 1 3 -activation_energy%1:19:00:: 1 6 -active%1:27:00:: 1 16 -active%3:00:01:: 5 3 -active%3:00:02:: 1 9 -active%3:00:03:: 3 5 -active%3:00:06:: 7 2 -active%3:00:07:: 6 2 -active%5:00:00:dynamic:00 9 1 -active%5:00:00:existent:00 8 1 -active%5:00:00:involved:00 4 4 -active%5:00:00:operational:00 2 7 -actively%4:02:00:: 1 3 -activism%1:09:00:: 1 2 -activity%1:04:00:: 1 43 -activity%1:22:00:: 3 13 -activity%1:26:00:: 2 36 -actor%1:18:00:: 1 14 -actress%1:18:00:: 1 3 -actual%3:00:00:: 1 22 -actual%5:00:00:real:00 2 8 -actual%5:00:00:true:00 3 3 -actual%5:00:02:real:00 4 2 -actuality%1:26:00:: 1 4 -actually%4:02:00:: 2 13 -actually%4:02:01:: 1 36 -actuate%2:36:00:: 1 2 -acute%3:00:00:: 1 2 -acute%5:00:00:perceptive:00 3 1 -acute%5:00:00:sharp:04 2 2 -acutely%4:02:00:: 2 1 -acutely%4:02:01:: 1 4 -ad%1:10:00:: 1 6 -ad-lib%5:00:00:unprepared:00 1 1 -ad_campaign%1:04:00:: 1 1 -ad_hoc%4:02:00:: 1 1 -ad_infinitum%4:02:01:: 1 2 -adam%1:18:00:: 1 14 -adamant%5:00:00:inflexible:02 1 2 -adamantly%4:02:00:: 1 1 -adapt%2:30:01:: 1 7 -adapt%2:30:02:: 3 3 -adapt%2:36:01:: 2 3 -adaptable%3:00:00:: 1 1 -adaptation%1:10:00:: 1 1 -adapted%5:00:00:modified:00 1 1 -add%2:30:00:: 1 116 -add%2:31:00:: 4 3 -add%2:32:00:: 5 1 -add%2:32:01:: 2 68 -add%2:40:00:: 3 15 -add_on%2:30:00:: 1 1 -add_up%2:32:00:: 2 2 -add_up%2:42:01:: 1 4 -added%3:00:00:: 1 11 -addicted%3:00:00:: 1 1 -addition%1:04:00:: 3 2 -addition%1:04:02:: 2 5 -addition%1:06:00:: 1 5 -addition%1:23:00:: 4 1 -additional%5:00:00:added:00 1 45 -additionally%4:02:00:: 1 2 -additive%1:06:00:: 1 5 -addlebrained%5:00:00:confused:00 1 1 -address%1:10:00:: 3 3 -address%1:10:03:: 4 1 -address%1:10:04:: 1 21 -address%1:15:00:: 2 5 -address%2:32:00:: 1 16 -address%2:32:02:: 2 5 -address%2:32:03:: 3 4 -address%2:32:08:: 4 3 -address%2:33:00:: 5 2 -address%2:34:00:: 6 1 -addressed%3:00:00:: 1 1 -adenoma%1:26:00:: 1 1 -adept%5:00:00:skilled:00 1 1 -adequacy%1:07:00:: 1 2 -adequacy%1:07:01:: 2 1 -adequate%3:00:00:: 1 17 -adequate%5:00:00:satisfactory:00 3 1 -adequate%5:00:00:sufficient:00 2 4 -adequate_to%5:00:00:adequate:00 1 4 -adequately%4:02:00:: 1 5 -adequately%4:02:01:: 2 2 -adhere%2:30:00:: 2 3 -adhere%2:35:01:: 3 1 -adhere%2:42:00:: 1 5 -adherence%1:04:00:: 1 2 -adherent%1:18:00:: 1 3 -adhesive%1:27:00:: 1 3 -adieu%1:10:00:: 1 1 -adios%1:10:00:: 1 1 -adjacent%5:00:00:close:01 1 4 -adjacent%5:00:00:connected:00 2 2 -adjacent%5:00:00:near:00 3 1 -adjectival%3:01:00:: 1 2 -adjective%1:10:00:: 1 3 -adjective%1:10:01:: 2 2 -adjoin%2:35:02:: 1 3 -adjoining%5:00:00:connected:00 1 3 -adjourn%2:30:00:: 1 4 -adjournment%1:04:00:: 1 2 -adjudication%1:04:00:: 1 1 -adjunct%1:17:00:: 1 5 -adjust%2:30:00:: 1 19 -adjust%2:30:01:: 4 6 -adjust%2:30:02:: 3 6 -adjust%2:30:03:: 5 2 -adjust%2:30:05:: 2 6 -adjusted%3:00:00:: 1 4 -adjustment%1:04:00:: 2 3 -adjustment%1:04:01:: 3 1 -adjustment%1:11:00:: 1 5 -administer%2:29:00:: 4 1 -administer%2:40:00:: 3 2 -administer%2:40:01:: 2 6 -administer%2:41:00:: 1 9 -administration%1:04:00:: 1 8 -administration%1:04:01:: 3 2 -administration%1:14:00:: 2 3 -administration%1:28:00:: 4 1 -administrative%3:01:00:: 1 16 -administrative_official%1:18:00:: 1 1 -administrator%1:18:00:: 1 5 -administrator%1:18:01:: 2 3 -admirable%5:00:00:estimable:00 1 4 -admirable%5:00:00:pleasing:00 2 2 -admirably%4:02:00:: 1 2 -admiralty_law%1:14:00:: 1 1 -admiration%1:12:01:: 1 8 -admiration%1:12:02:: 2 1 -admire%2:37:00:: 1 13 -admire%2:39:00:: 2 8 -admirer%1:18:01:: 1 1 -admissible%3:00:00:: 1 1 -admission%1:04:00:: 1 8 -admission%1:10:00:: 2 1 -admit%2:32:00:: 1 64 -admit%2:40:00:: 4 1 -admit%2:41:00:: 3 1 -admit%2:41:01:: 2 11 -admittedly%4:02:00:: 1 1 -admix%2:30:00:: 1 1 -admonish%2:32:02:: 1 1 -admonition%1:10:01:: 1 3 -ado%1:04:00:: 1 1 -adobe_house%1:06:00:: 1 2 -adolescence%1:28:00:: 1 3 -adolescent%1:18:00:: 1 1 -adolescent%3:01:00:: 1 1 -adonis%1:18:01:: 1 1 -adopt%2:30:00:: 5 2 -adopt%2:30:01:: 4 2 -adopt%2:40:00:: 2 6 -adopt%2:40:02:: 1 34 -adopt%2:41:01:: 3 2 -adopted%3:00:00:: 1 2 -adopted%5:00:00:adoptive:00 2 1 -adoption%1:04:00:: 1 2 -adore%2:37:00:: 1 1 -adorn%2:36:00:: 1 3 -adrenal%3:01:00:: 1 1 -adroit%5:00:00:artful:00 1 1 -adroitly%4:02:00:: 1 1 -adroitness%1:09:00:: 1 1 -adsorb%2:35:00:: 1 1 -adsorbed%5:00:00:adsorbable:00 1 3 -adulation%1:04:00:: 1 1 -adult%1:05:00:: 2 5 -adult%1:18:00:: 1 5 -adult%5:00:00:mature:01 1 1 -adult_education%1:04:00:: 1 1 -adulterer%1:18:00:: 1 2 -adulthood%1:28:00:: 1 1 -advance%1:04:00:: 4 1 -advance%1:10:00:: 3 1 -advance%1:11:00:: 1 7 -advance%1:11:01:: 2 6 -advance%2:30:00:: 7 2 -advance%2:30:08:: 3 5 -advance%2:30:09:: 8 1 -advance%2:32:00:: 2 6 -advance%2:33:00:: 6 3 -advance%2:38:00:: 1 7 -advance%2:38:01:: 5 4 -advance%2:41:01:: 4 4 -advanced%5:00:00:civilized:00 7 1 -advanced%5:00:00:front(a):00 8 1 -advanced%5:00:00:high-tech:00 5 1 -advanced%5:00:00:late:00 6 1 -advanced%5:00:00:late:02 2 3 -advanced%5:00:00:precocious:00 1 5 -advanced%5:00:00:progressive:01 3 2 -advanced%5:00:02:high:02 4 2 -advancing%3:00:00:: 1 2 -advantage%1:07:00:: 1 23 -advantageous%3:00:00:: 1 1 -advent%1:04:00:: 1 1 -adventure%1:04:00:: 1 12 -adventure%2:41:01:: 1 1 -adventurer%1:18:00:: 1 1 -adventurous%3:00:00:: 1 1 -adverb%1:10:01:: 1 3 -adverbial%3:01:00:: 1 1 -adversary%1:18:00:: 1 1 -adverse%5:00:00:unfavorable:02 1 4 -adversity%1:26:00:: 1 1 -advertise%2:32:01:: 1 7 -advertised%5:00:00:publicized:00 1 1 -advertisement%1:10:00:: 1 2 -advertising%1:04:00:: 2 6 -advertising%1:10:00:: 1 7 -advertising_agency%1:14:00:: 1 2 -advertising_campaign%1:04:00:: 1 1 -advice%1:10:00:: 1 18 -advisability%1:07:00:: 1 1 -advisable%3:00:00:: 1 1 -advise%2:32:00:: 1 11 -advise%2:32:01:: 2 10 -advise%2:32:02:: 3 4 -advisedly%4:02:00:: 1 1 -advisor%1:18:00:: 1 1 -advocacy%1:04:00:: 1 1 -advocate%1:18:00:: 1 2 -advocate%2:32:00:: 1 9 -advocate%2:32:01:: 2 1 -aegean%1:17:00:: 1 7 -aegean%3:01:01:: 1 5 -aegean_island%1:15:00:: 1 1 -aegis%1:04:00:: 1 1 -aeon%1:18:00:: 1 1 -aerated%5:00:00:treated:00 1 9 -aeration%1:22:00:: 1 5 -aerator%1:06:00:: 1 11 -aerial%1:04:00:: 1 1 -aerial%5:00:00:overhead:00 1 1 -aerial%5:00:02:air(a):00 2 4 -aerobacter_aerogenes%1:05:00:: 1 1 -aerobic%3:00:00:: 1 1 -aerodynamic%3:01:00:: 1 1 -aerosol%1:19:00:: 1 11 -aerosolize%2:35:00:: 1 2 -aerosolized%5:00:00:gaseous:00 1 1 -aeschylus%1:18:00:: 1 1 -aesthetic%3:00:00:: 2 2 -aesthetic%3:01:00:: 1 10 -afar%4:02:00:: 1 4 -affably%4:02:00:: 1 1 -affair%1:09:00:: 1 23 -affair%1:11:00:: 3 4 -affair%1:26:00:: 2 5 -affairs%1:04:00:: 2 1 -affairs%1:09:00:: 1 8 -affect%1:12:00:: 1 1 -affect%2:29:00:: 2 11 -affect%2:30:00:: 1 43 -affect%2:32:00:: 4 4 -affect%2:42:00:: 3 4 -affected%3:00:00:: 1 5 -affected%3:00:01:: 2 1 -affectingly%4:02:00:: 1 1 -affection%1:12:00:: 1 9 -affectionate%5:00:00:loving:00 1 2 -affectionately%4:02:00:: 1 2 -afferent%3:00:00:: 1 1 -affianced%5:00:00:attached:01 1 1 -affidavit%1:10:00:: 1 1 -affiliated%5:00:00:related:02 1 1 -affiliation%1:04:00:: 2 2 -affiliation%1:26:00:: 1 2 -affinity%1:19:02:: 1 1 -affirm%2:31:00:: 1 9 -affirm%2:32:00:: 2 3 -affirm%2:32:01:: 3 2 -affirmation%1:10:00:: 1 1 -affix%2:35:00:: 1 7 -affix%2:35:01:: 2 2 -affixed%3:00:00:: 1 6 -afflicted%5:00:00:ill:01 1 1 -affluence%1:26:00:: 1 3 -afford%2:34:00:: 1 24 -afford%2:40:00:: 2 13 -affront%1:04:00:: 1 1 -affront%2:32:00:: 1 1 -afghan%1:06:00:: 1 1 -afire%5:00:00:lighted:00 1 1 -aflame%5:00:00:passionate:00 1 2 -aflare%5:00:00:lighted:00 2 1 -aflare%5:00:00:moving:02 1 1 -afloat%5:00:00:purposeless:00 1 1 -afoot%4:02:01:: 1 1 -aforesaid%5:00:00:same:02 1 2 -afraid%3:00:00:: 1 29 -afraid%5:00:00:concerned:00 2 3 -afraid%5:00:02:concerned:00 3 1 -africa%1:17:00:: 1 10 -african%3:01:00:: 1 5 -aft%4:02:00:: 1 1 -after%4:02:01:: 1 5 -after-hours%5:00:00:late:00 1 1 -after-school%5:00:00:outside:00 1 1 -after_a_fashion%4:02:00:: 1 1 -after_all%4:02:00:: 1 17 -after_all%4:02:01:: 2 11 -aftereffect%1:19:00:: 1 1 -afternoon%1:10:00:: 2 1 -afternoon%1:28:00:: 1 51 -afterward%4:02:00:: 1 13 -afterwards%4:02:00:: 1 6 -again%4:02:00:: 1 249 -again_and_again%4:02:00:: 1 6 -agape%5:00:00:open:08 1 1 -agate%1:27:00:: 1 1 -age%1:07:00:: 1 75 -age%1:28:00:: 3 6 -age%1:28:02:: 2 23 -age%2:30:00:: 2 1 -age%2:30:01:: 1 1 -age-old%5:00:00:old:01 1 1 -age_group%1:14:00:: 1 1 -age_of_reason%1:14:00:: 1 1 -aged%1:14:00:: 1 1 -aged%5:00:00:worn:00 2 1 -aged%5:00:01:old:02 1 2 -agency%1:14:00:: 1 20 -agency%1:14:01:: 2 6 -agency%1:26:01:: 3 1 -agenda%1:09:00:: 1 3 -agent%1:17:00:: 1 21 -agent%1:18:01:: 4 1 -agent%1:18:02:: 2 6 -agent%1:27:00:: 3 5 -agglomerate%2:35:00:: 1 2 -agglomeration%1:14:00:: 1 2 -agglutinating_activity%1:22:00:: 1 1 -agglutination%1:22:00:: 2 1 -agglutination%1:22:01:: 1 3 -agglutinin%1:27:00:: 1 8 -aggravate%2:30:00:: 1 3 -aggravate%2:37:00:: 2 2 -aggravatingly%4:02:00:: 1 1 -aggregate%1:06:00:: 1 1 -aggregate%5:00:01:collective:00 1 2 -aggregation%1:14:00:: 1 1 -aggression%1:04:00:: 3 1 -aggression%1:07:00:: 1 2 -aggression%1:12:00:: 2 1 -aggressive%3:00:00:: 1 6 -aggressive%5:00:00:ambitious:00 2 1 -aggressiveness%1:07:00:: 1 3 -aggressiveness%1:12:00:: 2 1 -aggressor%1:18:00:: 1 1 -aggressor%1:18:01:: 2 1 -aghast%5:00:00:afraid(p):00 1 2 -agile%5:00:00:active:01 1 1 -agilely%4:02:00:: 1 1 -agitate%2:37:00:: 2 1 -agitate%2:41:00:: 1 2 -agitated%3:00:00:: 1 2 -agitated%3:00:02:: 2 1 -agitation%1:26:01:: 1 1 -ago%4:02:00:: 1 82 -agony%1:12:00:: 1 5 -agony%1:26:00:: 2 4 -agree%2:32:00:: 1 62 -agree%2:32:01:: 2 25 -agree%2:42:00:: 3 4 -agree%2:42:01:: 4 1 -agreeably%4:02:00:: 1 1 -agreed_upon%5:00:00:uncontroversial:00 1 3 -agreement%1:07:00:: 2 8 -agreement%1:09:00:: 4 2 -agreement%1:10:01:: 1 9 -agreement%1:26:01:: 3 6 -agricultural%3:01:00:: 1 6 -agricultural_agent%1:18:00:: 1 1 -agriculture%1:04:00:: 2 1 -agriculture%1:04:01:: 1 4 -agrobacterium_tumefaciens%1:05:00:: 1 1 -ague%1:26:00:: 1 1 -ahead%4:02:00:: 1 21 -ahead%4:02:01:: 4 1 -ahead%4:02:02:: 3 5 -ahead%4:02:06:: 2 5 -ahead%5:00:00:up:00 1 1 -ahorseback%5:00:00:moving:02 1 1 -aid%1:04:00:: 2 9 -aid%1:07:00:: 1 10 -aid%1:21:00:: 3 6 -aid%2:29:00:: 2 1 -aid%2:41:00:: 1 36 -aide%1:18:00:: 2 1 -aide%1:18:01:: 1 3 -ailing%5:00:00:ill:01 1 2 -ailment%1:26:00:: 1 7 -aim%1:04:00:: 3 4 -aim%1:09:00:: 1 12 -aim%1:09:01:: 2 4 -aim%2:31:00:: 7 2 -aim%2:31:01:: 2 7 -aim%2:31:02:: 4 3 -aim%2:32:00:: 6 2 -aim%2:32:09:: 3 5 -aim%2:33:00:: 1 8 -aim%2:33:10:: 5 2 -aimless%5:00:00:purposeless:00 1 3 -aimlessly%4:02:00:: 1 1 -aimlessness%1:07:00:: 1 1 -air%1:04:01:: 7 1 -air%1:07:00:: 4 9 -air%1:07:01:: 3 19 -air%1:15:00:: 2 29 -air%1:15:01:: 6 1 -air%1:19:00:: 5 3 -air%1:27:00:: 1 42 -air%2:39:00:: 1 1 -air%3:00:00:: 1 5 -air-conditioning%1:06:00:: 1 2 -air-to-surface_missile%1:06:00:: 1 1 -air_corps%1:14:00:: 1 1 -air_defense%1:04:00:: 1 1 -air_force%1:14:00:: 1 2 -air_mattress%1:06:00:: 1 1 -air_wave%1:11:00:: 1 1 -airborne%5:00:00:mobile:00 1 3 -aircraft%1:06:00:: 1 15 -aircraft_carrier%1:06:00:: 1 1 -airflow%1:11:00:: 1 1 -airframe%1:06:00:: 1 1 -airily%4:02:00:: 1 1 -airless%5:00:00:unventilated:00 1 1 -airplane%1:06:00:: 1 5 -airplane_mechanics%1:04:00:: 1 1 -airport%1:06:00:: 1 4 -airs%1:07:00:: 1 2 -airspeed%1:28:00:: 1 2 -airway%1:06:01:: 1 4 -airy%5:00:00:ventilated:00 1 4 -aisle%1:06:00:: 2 2 -aisle%1:06:03:: 1 2 -akin%5:00:00:similar:00 1 3 -alabama%1:15:00:: 1 3 -alabaman%1:18:00:: 1 1 -alabamian%1:18:00:: 1 1 -alabaster%1:27:00:: 1 2 -alarm%1:06:00:: 2 3 -alarm%1:12:00:: 1 5 -alarm%2:32:00:: 2 1 -alarm%2:37:00:: 1 2 -alarmed%5:00:00:afraid(p):00 1 1 -alarmingly%4:02:00:: 1 1 -alaska%1:15:00:: 1 15 -albany%1:15:00:: 1 2 -album%1:06:00:: 2 1 -album%1:10:00:: 1 2 -albumin%1:27:00:: 1 9 -alchemy%1:07:00:: 1 1 -alcohol%1:13:00:: 1 3 -alderman%1:18:00:: 1 1 -alert%2:32:00:: 1 9 -alert%3:00:00:: 1 7 -alert%5:00:00:conscious:00 3 1 -alert%5:00:00:intelligent:00 2 3 -alerting%1:26:00:: 1 1 -alertly%4:02:00:: 1 1 -alertness%1:09:00:: 1 2 -alexander_the_great%1:18:00:: 1 1 -alfresco%5:00:00:outdoor(a):00 1 1 -algae%1:05:00:: 1 6 -algebraically%4:02:00:: 1 4 -algerian%3:01:00:: 1 2 -alibi%1:10:00:: 1 2 -alien%1:18:00:: 1 2 -alien%5:00:00:extrinsic:00 1 3 -alien%5:00:00:foreign:01 2 2 -alienate%2:37:00:: 1 3 -alienated%5:00:00:unoriented:00 1 1 -alienation%1:12:00:: 1 2 -alight%2:38:01:: 1 1 -align%2:30:00:: 1 2 -align%2:31:00:: 3 1 -align%2:42:00:: 2 1 -alignment%1:07:00:: 2 2 -alignment%1:14:00:: 1 2 -alike%3:00:00:: 1 2 -alike%4:02:00:: 1 2 -aliquot%1:23:00:: 1 1 -alive%3:00:01:: 1 14 -alive%5:00:00:lively:00 2 3 -alizarin_crimson%1:27:00:: 1 1 -alkali%1:27:00:: 1 3 -alkali_bee%1:05:00:: 1 3 -alkaline%3:00:00:: 1 2 -alkylbenzenesulfonate%1:27:00:: 1 1 -all%3:00:00:: 1 247 -all%4:02:00:: 1 26 -all%5:00:00:complete:00 2 3 -all-fired%5:00:00:immoderate:00 1 1 -all-important%5:00:00:important:00 1 2 -all-knowing%5:00:00:wise:00 1 1 -all-out%5:00:00:complete:00 1 2 -all-round%5:00:00:comprehensive:00 1 1 -all-time%5:00:00:incomparable:00 1 1 -all-victorious%5:00:00:unconquerable:00 1 1 -all-weather%5:00:00:unrestricted:00 1 1 -all_along%4:02:00:: 1 5 -all_at_once%4:02:00:: 2 1 -all_at_once%4:02:01:: 1 1 -all_but%4:02:00:: 1 9 -all_in_all%4:02:00:: 1 3 -all_of%3:00:00:: 1 49 -all_of_a_sudden%4:02:00:: 1 1 -all_of_a_sudden%4:02:01:: 2 1 -all_over%4:02:00:: 2 6 -all_over%4:02:01:: 1 12 -all_over%5:00:00:finished:01 1 4 -all_right%4:02:00:: 1 24 -all_right%4:02:01:: 2 9 -all_right%4:02:02:: 3 4 -all_right%5:00:00:satisfactory:00 1 10 -all_right%5:00:00:well:01 2 6 -all_the_same%4:02:00:: 1 1 -all_the_time%4:02:01:: 1 8 -all_the_way%4:02:03:: 2 5 -all_the_way%4:02:09:: 1 9 -all_together%4:02:00:: 1 1 -all_told%4:02:00:: 1 2 -all_too%4:02:00:: 1 8 -allegation%1:10:00:: 1 1 -allegation%1:10:01:: 2 1 -allege%2:32:00:: 1 5 -alleged%5:00:00:declared:00 1 3 -alleged%5:00:00:questionable:00 2 1 -allegiance%1:04:00:: 1 1 -allegory%1:10:00:: 1 2 -allegro_con_spirito%1:28:00:: 1 1 -alleviate%2:29:00:: 1 2 -alleviate%2:30:00:: 2 1 -alley%1:06:00:: 1 1 -alley_cat%1:05:00:: 1 1 -alleyway%1:06:00:: 1 1 -allied%5:00:00:related:01 1 1 -alligator%1:05:00:: 2 1 -alligator%1:27:00:: 1 1 -alligatored%5:00:00:rough:00 1 1 -allocable%5:00:00:distributive:00 1 3 -allocate%2:40:00:: 1 6 -allocation%1:04:00:: 2 1 -allocation%1:21:00:: 1 1 -allot%2:40:00:: 2 4 -allot%2:40:01:: 1 6 -allot%2:40:02:: 3 2 -allotment%1:04:00:: 2 1 -allotment%1:21:00:: 1 44 -allow%2:31:00:: 6 3 -allow%2:31:01:: 4 8 -allow%2:32:00:: 2 49 -allow%2:40:00:: 3 17 -allow%2:41:00:: 1 65 -allow%2:42:00:: 5 3 -allow_for%2:42:00:: 1 8 -allow_in%2:41:00:: 1 2 -allowable%5:00:00:deductible:00 1 3 -allowance%1:07:00:: 4 1 -allowance%1:21:00:: 1 2 -allowance%1:21:01:: 3 1 -allowance%1:21:02:: 2 1 -allusion%1:10:00:: 1 7 -ally%1:14:00:: 1 3 -ally%1:18:00:: 2 1 -ally_with%2:41:00:: 1 1 -almost%4:02:00:: 1 175 -aloes%1:06:00:: 1 2 -alone%4:02:00:: 1 32 -alone%4:02:01:: 2 28 -alone%5:00:00:exclusive:00 3 1 -alone%5:00:00:unaccompanied:00 2 4 -alone%5:00:00:unsocial:00 1 26 -aloneness%1:07:00:: 1 1 -along%4:02:00:: 2 9 -along%4:02:01:: 1 25 -along%4:02:02:: 4 2 -along%4:02:03:: 3 2 -aloof%5:00:00:reserved:01 1 1 -aloofness%1:12:02:: 1 1 -aloud%4:02:00:: 1 10 -aloud%4:02:01:: 2 1 -alpha%1:10:00:: 1 1 -alphabetic_character%1:10:00:: 1 1 -alphabetize%2:30:00:: 1 1 -already%4:02:00:: 1 107 -also%4:02:00:: 1 411 -also_known_as%4:02:00:: 1 1 -alter%2:30:00:: 2 2 -alter%2:30:01:: 1 26 -alter%2:36:00:: 3 1 -alter_ego%1:18:00:: 1 1 -alteration%1:04:01:: 2 2 -alteration%1:11:00:: 1 4 -altercation%1:10:00:: 1 5 -altered%3:00:00:: 1 1 -alternate%2:30:01:: 1 3 -alternate%5:00:00:secondary:01 2 2 -alternate%5:00:01:cyclic:01 3 1 -alternate%5:00:02:cyclic:01 1 3 -alternately%4:02:00:: 1 3 -alternative%1:09:00:: 1 16 -alternative%5:00:00:disjunctive:00 2 1 -alternative%5:00:00:secondary:01 1 4 -alternatively%4:02:00:: 1 1 -although%4:02:00:: 1 4 -altitude%1:07:00:: 1 3 -altogether%4:02:00:: 2 1 -altogether%4:02:04:: 1 11 -altruism%1:07:00:: 1 1 -aluminum%1:27:00:: 1 5 -aluminum_chloride%1:27:00:: 1 1 -aluminum_foil%1:06:00:: 1 2 -alundum%1:27:00:: 1 1 -alveolar%3:01:00:: 1 8 -alveolar_bed%1:08:00:: 1 1 -alveolus%1:08:00:: 1 5 -always%4:02:00:: 1 196 -amass%2:30:00:: 1 1 -amateur%1:18:00:: 1 11 -amateur%5:00:00:nonprofessional:00 1 3 -amateurishness%1:09:00:: 1 1 -amaze%2:31:00:: 1 4 -amaze%2:31:01:: 2 1 -amazed%5:00:00:surprised:00 1 6 -amazement%1:12:00:: 1 13 -amazing%5:00:00:impressive:00 2 5 -amazing%5:00:00:surprising:00 1 5 -ambassador%1:18:00:: 1 7 -amber%1:07:00:: 1 1 -amber%5:00:00:chromatic:00 1 3 -ambiance%1:26:00:: 1 1 -ambiguity%1:07:00:: 2 1 -ambiguity%1:10:00:: 1 6 -ambiguous%3:00:00:: 2 4 -ambiguous%3:00:04:: 1 9 -ambiguous%5:00:00:unstructured:00 3 1 -ambition%1:07:00:: 2 2 -ambition%1:12:00:: 1 9 -ambitious%3:00:00:: 1 5 -ambitious%5:00:00:difficult:00 2 4 -ambivalent%5:00:00:equivocal:00 1 3 -amble%2:38:00:: 1 2 -ambulance%1:06:00:: 1 3 -ambuscade%1:04:00:: 1 1 -ambush%1:04:00:: 1 5 -ambush%2:33:00:: 1 2 -ambush%2:33:01:: 2 1 -amen_corner%1:06:00:: 1 7 -amenable%5:00:00:compliant:00 1 1 -amend%2:30:00:: 2 2 -amend%2:32:00:: 1 9 -amended%3:00:00:: 1 2 -amended_return%1:10:00:: 1 2 -amendment%1:04:00:: 1 6 -amendment%1:10:00:: 2 1 -america%1:15:00:: 1 39 -america%1:17:00:: 2 1 -american%1:10:00:: 2 2 -american%1:18:00:: 1 33 -american%3:01:00:: 2 4 -american%3:01:01:: 1 117 -american_dream%1:12:00:: 1 1 -american_revolution%1:04:00:: 1 1 -americana%1:06:00:: 1 3 -americanism%1:07:00:: 1 1 -amethystine_python%1:05:00:: 1 4 -amiable%5:00:00:friendly:01 2 1 -amiable%5:00:00:good-natured:00 1 1 -amicable%3:00:00:: 1 1 -amicus_curiae%1:18:00:: 1 3 -amino_acid%1:27:00:: 1 1 -aminomethane%1:27:00:: 1 1 -amiss%5:00:00:malfunctioning:00 1 1 -amity%1:07:00:: 1 1 -ammo%1:06:00:: 1 3 -ammoniac%1:27:00:: 1 1 -ammonium_ion%1:27:00:: 1 1 -ammunition%1:06:00:: 1 11 -amoral%3:00:00:: 1 2 -amorist%1:18:00:: 1 1 -amorous%5:00:01:loving:00 1 1 -amorphous%5:00:00:unformed:00 1 4 -amount%1:03:00:: 3 20 -amount%1:07:00:: 2 39 -amount%1:09:00:: 4 6 -amount%1:21:00:: 1 40 -amount%2:42:00:: 3 4 -amount%2:42:01:: 2 4 -amount%2:42:03:: 1 10 -amount_of_money%1:21:00:: 1 1 -amp%1:23:00:: 1 4 -amphibology%1:10:00:: 1 1 -ample%3:00:00:: 1 8 -ample%5:00:00:abundant:00 2 2 -amplification%1:04:02:: 1 1 -amplifier%1:06:00:: 1 1 -amplify%2:30:00:: 1 4 -amplitude%1:11:00:: 1 6 -amply%4:02:00:: 1 2 -amputate%2:35:00:: 1 2 -amsterdam%1:15:00:: 1 2 -amulet%1:06:00:: 1 1 -amuse%2:32:00:: 2 1 -amuse%2:41:00:: 1 6 -amused%5:00:00:pleased:00 1 1 -amusement%1:04:00:: 2 1 -amusement%1:12:00:: 1 3 -amusing%5:00:00:entertaining:00 1 7 -anabaptist%1:18:00:: 1 2 -anachronism%1:06:00:: 2 1 -anachronism%1:28:00:: 1 1 -anachronistically%4:02:00:: 1 1 -anaconda%1:05:00:: 1 18 -anaerobic%3:00:00:: 1 1 -anaesthesia%1:26:00:: 1 1 -analeptic%5:00:00:stimulative:00 1 2 -analogous%5:00:00:similar:00 1 6 -analogously%4:02:00:: 1 1 -analogue%1:07:00:: 1 1 -analogue_computer%1:06:00:: 1 1 -analogy%1:04:00:: 3 2 -analogy%1:07:00:: 1 5 -analogy%1:09:00:: 2 2 -analyse%2:31:00:: 1 2 -analysis%1:04:00:: 1 45 -analysis%1:09:00:: 2 5 -analysis%1:10:00:: 3 2 -analyst%1:18:00:: 1 9 -analytic%3:00:03:: 2 3 -analytic%3:01:00:: 1 10 -analytical%3:00:03:: 1 1 -analytical_cubism%1:14:00:: 1 5 -analytically%4:02:00:: 1 1 -analyticity%1:07:00:: 1 1 -analyze%2:31:00:: 1 21 -analyze%2:31:01:: 2 2 -analyzer%1:06:00:: 1 1 -anaplasmosis%1:26:00:: 1 1 -anarchist%1:18:00:: 1 1 -anarchy%1:26:00:: 1 2 -anastomosis%1:08:00:: 1 7 -anastomotic%3:01:00:: 1 1 -anatomic%3:01:00:: 1 1 -anatomical%1:10:00:: 1 2 -anatomical%3:01:00:: 1 7 -anatomically%4:02:00:: 1 2 -anatomy%1:04:00:: 3 1 -anatomy%1:08:00:: 2 2 -anatomy%1:09:00:: 1 4 -ancestor%1:18:00:: 1 2 -ancestral%5:00:00:inheritable:00 1 5 -ancestry%1:14:00:: 1 3 -anchor%1:06:00:: 1 3 -anchor%1:09:00:: 2 1 -anchor%2:35:00:: 2 3 -anchor%2:35:01:: 1 3 -ancient%5:00:00:old:02 2 5 -ancient%5:00:00:past:00 1 5 -ancient%5:00:01:old:01 3 5 -anciently%4:02:00:: 1 1 -ancistrodon%1:05:00:: 1 1 -and_others%4:02:00:: 1 5 -and_so_forth%4:02:00:: 1 4 -and_so_on%4:02:00:: 1 9 -and_then%4:02:00:: 1 76 -andean%3:01:00:: 1 1 -andrena%1:05:00:: 1 8 -anecdote%1:10:00:: 1 8 -anemia%1:26:00:: 1 5 -anemic%5:00:00:weak:00 1 1 -anesthetized%5:00:00:insensible:00 1 1 -anew%4:02:00:: 1 3 -angel%1:18:00:: 1 8 -angelic%5:00:00:good:02 1 2 -anger%1:12:00:: 1 22 -anger%1:26:00:: 2 1 -anger%2:37:00:: 1 1 -angle%1:09:00:: 2 2 -angle%1:25:00:: 1 10 -angle%2:38:01:: 1 2 -angle_of_extinction%1:25:00:: 1 1 -anglican%1:18:00:: 1 2 -anglican%3:01:00:: 1 8 -anglican_church%1:14:00:: 1 2 -anglo-american%1:18:00:: 1 3 -anglo-jewish%3:01:00:: 1 1 -anglo-saxon%1:18:00:: 1 2 -anglo-saxon%3:01:00:: 1 1 -anglophilia%1:12:00:: 1 1 -angrily%4:02:00:: 1 6 -angry%3:00:00:: 1 17 -angry%5:00:00:stormy:00 2 1 -angst%1:12:00:: 1 2 -anguish%1:12:02:: 1 4 -anguish%1:26:00:: 2 2 -anguished%5:00:00:sorrowful:00 1 1 -angular%3:00:00:: 2 1 -angular%3:01:00:: 1 1 -anhydrous%3:00:00:: 1 1 -animal%1:03:00:: 1 67 -animal%5:00:00:physical:00 1 1 -animallike%5:00:00:animal:00 1 3 -animate%2:37:00:: 1 1 -animate%3:00:02:: 1 1 -animated%3:00:00:: 1 2 -animize%2:30:00:: 1 1 -animosity%1:12:00:: 1 1 -anion%1:17:00:: 1 2 -anionic%1:27:00:: 1 7 -anionic%3:01:00:: 1 2 -ankle%1:08:00:: 1 7 -ankle-deep%5:00:00:shallow:01 1 1 -annihilate%2:30:00:: 1 1 -annihilating%5:00:00:destructive:00 1 1 -annihilation%1:04:00:: 1 2 -annihilation%1:11:00:: 2 1 -anniversary%1:28:00:: 1 5 -announce%2:32:00:: 1 74 -announce%2:32:01:: 4 2 -announce%2:32:02:: 2 13 -announce%2:32:07:: 3 2 -announcement%1:10:00:: 2 3 -announcement%1:10:01:: 1 4 -annoy%2:37:00:: 1 5 -annoyance%1:12:00:: 2 1 -annoyance%1:26:00:: 1 3 -annoyed%5:00:00:displeased:00 1 3 -annoying%5:00:00:disagreeable:00 1 1 -annual%3:00:00:: 2 1 -annual%3:01:00:: 1 21 -annually%4:02:00:: 1 4 -anode%1:06:00:: 1 66 -anomalous%5:00:00:abnormal:00 1 1 -anomic%5:00:00:unoriented:00 1 1 -anomie%1:26:00:: 1 1 -anonymity%1:26:00:: 1 1 -anonymous%3:00:00:: 1 7 -anonymous%5:00:00:faceless:00 2 1 -anorexia%1:26:00:: 1 1 -another%5:00:00:added:00 2 26 -another%5:00:00:other:00 1 51 -another%5:00:01:other:00 3 3 -answer%1:10:00:: 3 12 -answer%1:10:01:: 1 29 -answer%1:10:02:: 2 21 -answer%2:31:00:: 3 7 -answer%2:31:02:: 2 7 -answer%2:31:03:: 4 5 -answer%2:32:00:: 1 63 -answer%2:32:06:: 5 4 -answering%5:00:00:responsive:00 1 1 -ant%1:05:00:: 1 6 -antagonise%2:41:00:: 1 1 -antagonism%1:07:00:: 1 6 -antagonist%1:18:00:: 1 10 -antagonistic%5:00:00:hostile:01 2 1 -antagonistic%5:00:00:negative:02 1 1 -antagonize%2:37:00:: 1 2 -antares%1:17:00:: 1 1 -anteater%1:05:04:: 1 1 -antebellum%5:00:00:nonmodern:00 1 1 -antecedent%1:11:00:: 2 1 -antecedent%1:18:00:: 1 1 -antelope%1:05:00:: 1 6 -antenna%1:06:00:: 1 14 -antenna%1:07:00:: 2 2 -anterior%1:08:00:: 1 1 -anterior%3:00:00:: 1 3 -anthill%1:17:00:: 1 1 -anthropologist%1:18:00:: 1 3 -anthropology%1:09:00:: 1 2 -anthropomorphic%5:00:00:human:00 1 1 -anti%3:00:00:: 2 7 -anti%5:00:00:counteractive:00 1 16 -anti-catholicism%1:09:00:: 1 1 -anti-intellectual%5:00:00:nonintellectual:00 1 1 -anti-semite%1:18:00:: 1 5 -anti-semitic%3:01:00:: 1 4 -anti-semitism%1:09:00:: 1 22 -antibiotic%3:01:00:: 1 1 -antibody%1:27:00:: 1 17 -antic%5:00:00:strange:00 1 1 -anticipate%2:30:00:: 6 1 -anticipate%2:31:00:: 1 8 -anticipate%2:31:01:: 3 4 -anticipate%2:32:00:: 4 3 -anticipate%2:37:00:: 5 2 -anticipate%2:41:00:: 2 5 -anticipated%5:00:00:expected:00 1 5 -anticipation%1:09:00:: 3 2 -anticipation%1:09:01:: 2 4 -anticipation%1:12:00:: 1 4 -anticipation%1:17:00:: 4 1 -anticoagulation%1:04:00:: 1 1 -antigen%1:27:00:: 1 11 -antipathy%1:12:00:: 1 2 -antique%5:00:00:old:01 1 2 -antique%5:00:00:unfashionable:00 2 2 -antiquity%1:28:00:: 1 1 -antiredeposition%1:22:00:: 1 1 -antiseptic%3:00:00:: 1 1 -antiseptic%5:00:00:incorrupt:00 2 1 -antiserum%1:08:00:: 1 6 -antithesis%1:24:00:: 1 1 -antithetical%5:00:00:different:00 1 1 -antithyroid%3:01:00:: 1 6 -antitrust%5:00:00:fair:03 1 1 -antitrust_case%1:04:00:: 1 1 -anvil%1:06:00:: 1 1 -anxiety%1:12:00:: 2 9 -anxiety%1:26:00:: 1 20 -anxious%5:00:00:eager:00 2 3 -anxious%5:00:00:uneasy:00 1 11 -anxiously%4:02:00:: 1 7 -any%4:02:00:: 1 4 -any%5:00:00:immoderate:00 1 6 -any%5:00:00:some(a):00 2 47 -any_longer%4:02:01:: 1 1 -anyhow%4:02:00:: 1 14 -anymore%4:02:01:: 1 11 -anyway%4:02:00:: 1 16 -anywhere%4:02:00:: 1 9 -aorta%1:08:00:: 1 3 -apache%1:18:00:: 1 2 -apart%4:02:01:: 2 10 -apart%4:02:03:: 1 18 -apart%4:02:07:: 3 1 -apart%5:00:00:unconnected:00 1 1 -apartment%1:06:00:: 1 32 -apartment_building%1:06:00:: 1 3 -apartment_house%1:06:00:: 1 1 -ape%1:05:00:: 1 1 -aperture%1:06:01:: 1 1 -apex%1:15:00:: 1 3 -apiece%4:02:00:: 1 2 -aplomb%1:07:00:: 1 1 -apocalyptic%5:00:00:prophetic:00 1 1 -apocryphal%5:00:00:questionable:00 1 1 -apogee%1:28:00:: 1 1 -apologetic%3:00:00:: 1 1 -apologetically%4:02:00:: 1 3 -apologia%1:10:01:: 1 1 -apologist%1:18:00:: 1 1 -apologize%2:32:00:: 1 3 -apology%1:10:00:: 1 2 -apostolic%3:01:00:: 1 4 -apothecary%1:18:00:: 1 3 -appalling%1:11:00:: 1 1 -appalling%5:00:00:alarming:00 1 4 -apparatus%1:06:00:: 1 22 -apparent%5:00:00:obvious:00 1 19 -apparent%5:00:00:superficial:00 2 8 -apparent%5:00:00:visible:00 3 5 -apparently%4:02:00:: 1 52 -apparition%1:18:00:: 1 1 -appeal%1:04:00:: 3 8 -appeal%1:07:00:: 2 8 -appeal%1:10:00:: 1 9 -appeal%2:32:00:: 2 2 -appeal%2:37:00:: 3 1 -appeal%2:41:00:: 1 4 -appeal_board%1:14:00:: 1 7 -appeal_to%2:32:00:: 1 9 -appealing%3:00:00:: 1 3 -appealing%3:00:02:: 2 1 -appear%2:30:00:: 2 102 -appear%2:30:01:: 3 22 -appear%2:30:02:: 5 7 -appear%2:36:00:: 6 2 -appear%2:39:00:: 1 121 -appear%2:39:01:: 4 14 -appear%2:41:03:: 7 1 -appearance%1:04:00:: 5 1 -appearance%1:04:01:: 3 2 -appearance%1:07:00:: 1 19 -appearance%1:09:00:: 4 1 -appearance%1:11:00:: 2 4 -appease%2:32:00:: 3 1 -appease%2:34:00:: 2 1 -appease%2:37:00:: 1 2 -append%2:35:01:: 1 1 -appendix%1:10:00:: 1 6 -appetite%1:12:00:: 1 5 -applaud%2:32:00:: 2 4 -applaud%2:32:01:: 1 5 -applause%1:10:00:: 1 9 -apple%1:13:00:: 1 1 -apple_tree%1:20:00:: 1 3 -applejack%1:13:00:: 1 1 -applicability%1:24:00:: 1 2 -applicable%5:00:00:relevant:00 1 6 -applicant%1:18:00:: 1 13 -application%1:04:02:: 1 17 -application%1:04:03:: 3 4 -application%1:10:00:: 2 8 -application_form%1:10:00:: 1 1 -applicator%1:06:00:: 1 1 -applied%3:44:00:: 1 1 -apply%2:32:00:: 4 13 -apply%2:32:01:: 10 1 -apply%2:34:00:: 1 45 -apply%2:35:00:: 5 11 -apply%2:40:00:: 7 2 -apply%2:41:01:: 8 1 -apply%2:41:05:: 3 14 -apply%2:41:06:: 9 1 -apply%2:42:00:: 2 29 -apply%2:42:01:: 6 4 -appoint%2:41:00:: 2 8 -appoint%2:41:01:: 1 13 -appointed%3:00:02:: 1 2 -appointed%5:00:00:assigned:00 2 2 -appointed%5:00:00:furnished:00 4 1 -appointed%5:00:00:settled:02 3 1 -appointee%1:18:00:: 1 2 -appointee%1:18:01:: 2 2 -appointment%1:04:00:: 1 6 -appointment%1:06:00:: 3 1 -appointment%1:14:00:: 2 1 -apportion%2:40:01:: 1 3 -appraisal%1:09:00:: 1 1 -appraise%2:31:01:: 1 2 -appraiser%1:18:01:: 1 1 -appreciable%5:00:00:considerable:00 1 4 -appreciably%4:02:01:: 1 6 -appreciate%2:31:00:: 2 11 -appreciate%2:37:00:: 1 12 -appreciate%2:40:00:: 3 5 -appreciated%5:00:00:rewarding:00 1 1 -appreciation%1:04:00:: 4 1 -appreciation%1:04:01:: 5 1 -appreciation%1:09:00:: 1 7 -appreciation%1:09:01:: 2 2 -appreciation%1:10:00:: 3 1 -appreciative%5:00:00:grateful:00 1 1 -apprehend%2:31:00:: 1 2 -apprehend%2:35:00:: 2 1 -apprehension%1:09:00:: 2 3 -apprehension%1:12:00:: 1 5 -apprentice%1:18:00:: 1 10 -apprentice%2:31:00:: 1 1 -apprenticeship%1:04:00:: 1 1 -approach%1:04:00:: 2 9 -approach%1:04:02:: 1 29 -approach%1:06:00:: 3 2 -approach%2:32:00:: 5 6 -approach%2:38:00:: 1 46 -approach%2:38:01:: 4 6 -approach%2:41:00:: 3 6 -approach%2:42:00:: 2 9 -approachable%5:00:00:comprehensible:00 1 1 -approaching%5:00:00:moving:02 1 1 -appropriate%2:31:00:: 1 11 -appropriate%2:40:00:: 2 1 -appropriate%3:00:00:: 1 29 -appropriate%5:00:00:congruous:00 3 1 -appropriate%5:00:00:expedient:00 2 3 -appropriately%4:02:00:: 1 2 -appropriation%1:21:00:: 1 3 -approval%1:04:02:: 1 11 -approval%1:12:00:: 2 3 -approval%1:26:00:: 3 1 -approve%2:31:00:: 2 7 -approve%2:32:00:: 1 27 -approved%5:00:00:authorized:00 1 4 -approvingly%4:02:00:: 1 2 -approximate%2:31:00:: 2 2 -approximate%2:42:00:: 1 5 -approximate%5:00:00:inexact:00 1 3 -approximately%4:02:00:: 1 26 -approximation%1:07:00:: 2 1 -approximation%1:09:00:: 1 3 -april%1:28:00:: 1 22 -apron%1:06:00:: 1 3 -apt%5:00:00:inclined(p):02 3 6 -aptitude%1:09:00:: 1 3 -aqueous%3:01:00:: 1 14 -arabian_sea%1:17:00:: 1 1 -arable%5:00:00:productive:00 1 1 -arbitrarily%4:02:00:: 1 3 -arbitrary%3:00:00:: 1 8 -arbitrate%2:32:00:: 1 1 -arboreal%3:01:00:: 1 1 -arc%1:19:00:: 1 37 -arc%1:25:00:: 2 6 -arch%1:08:00:: 2 1 -arch%1:25:00:: 1 1 -arch%2:38:00:: 1 3 -arch%5:00:00:important:00 1 1 -archaeologist%1:18:00:: 1 1 -archaize%2:30:00:: 1 1 -archangel%1:18:00:: 1 1 -archbishop%1:18:00:: 1 5 -arched%3:01:00:: 1 1 -arched%5:00:00:curved:00 2 1 -archeological%3:01:00:: 1 1 -arching%5:00:00:curved:00 1 1 -architect%1:18:00:: 1 9 -architectural%3:01:00:: 1 4 -architecture%1:04:00:: 3 1 -architecture%1:06:00:: 1 3 -architecture%1:09:00:: 2 1 -archives%1:10:00:: 1 1 -arctic%1:15:00:: 1 2 -arctic%5:00:00:polar:00 1 1 -arctic_circle%1:15:00:: 1 1 -arcus_senilis%1:08:00:: 1 1 -ardent%5:00:00:passionate:00 1 1 -ardor%1:12:01:: 1 3 -arduous%5:00:00:effortful:00 1 1 -area%1:06:00:: 5 8 -area%1:07:00:: 6 5 -area%1:08:00:: 3 20 -area%1:09:00:: 2 27 -area%1:15:01:: 1 146 -area%1:26:00:: 4 9 -areaway%1:06:00:: 1 1 -arena%1:26:00:: 1 1 -argive%3:01:00:: 1 1 -argon%1:27:00:: 1 7 -argot%1:10:00:: 1 1 -argue%2:32:00:: 2 17 -argue%2:32:02:: 1 34 -arguing%5:00:00:argumentative:00 1 1 -argument%1:10:00:: 3 2 -argument%1:10:01:: 4 1 -argument%1:10:02:: 1 22 -argument%1:10:03:: 2 21 -argumentative%3:00:00:: 1 1 -arianism%1:09:00:: 1 1 -arianist%1:18:00:: 1 2 -aridity%1:07:00:: 1 1 -arise%2:30:00:: 4 7 -arise%2:38:00:: 3 8 -arise%2:38:04:: 5 1 -arise%2:42:00:: 1 29 -arise%2:42:01:: 2 9 -aristocracy%1:14:01:: 1 2 -aristocracy%1:14:02:: 2 1 -aristocratic%5:00:01:noble:02 1 1 -aristotelian%3:01:00:: 1 1 -aristotle%1:18:00:: 1 4 -arithmetic%1:09:00:: 1 4 -arizona%1:15:00:: 1 1 -arkansas%1:15:00:: 1 4 -arm%1:06:01:: 3 1 -arm%1:06:02:: 4 1 -arm%1:06:03:: 2 3 -arm%1:08:00:: 1 104 -arm%2:33:00:: 1 4 -arm%2:40:00:: 2 1 -arm's_length%1:07:00:: 1 1 -armadillo%1:05:00:: 1 2 -armament%1:06:00:: 1 1 -armchair%1:06:00:: 1 3 -armchair%5:00:00:impractical:00 1 1 -armed%3:00:01:: 1 10 -armed_forces%1:14:00:: 1 6 -armed_service%1:14:00:: 1 1 -armful%1:23:00:: 1 1 -armoire%1:06:00:: 1 1 -armor%1:06:00:: 1 2 -armored%3:00:01:: 1 2 -armpit%1:08:00:: 1 2 -arms%1:06:00:: 1 11 -army%1:14:00:: 1 61 -army%1:14:01:: 2 2 -aroma%1:07:00:: 1 1 -around%4:02:00:: 9 1 -around%4:02:01:: 1 26 -around%4:02:03:: 5 2 -around%4:02:04:: 3 12 -around%4:02:05:: 2 13 -around%4:02:06:: 4 6 -around%4:02:07:: 8 1 -around%4:02:08:: 7 1 -around%4:02:09:: 6 1 -arousal%1:04:00:: 1 1 -arouse%2:29:00:: 4 2 -arouse%2:29:01:: 5 2 -arouse%2:29:05:: 2 3 -arouse%2:36:00:: 3 2 -arouse%2:37:00:: 1 14 -arouse%2:38:00:: 6 1 -aroused%5:00:00:awakened:00 1 1 -aroused%5:00:00:excited:00 2 1 -arraign%2:32:00:: 2 1 -arraign%2:41:00:: 1 1 -arrange%2:29:00:: 6 2 -arrange%2:32:04:: 3 7 -arrange%2:35:00:: 2 13 -arrange%2:36:02:: 5 2 -arrange%2:36:03:: 4 3 -arrange%2:36:04:: 1 13 -arranged%3:00:00:: 1 2 -arrangement%1:04:02:: 4 3 -arrangement%1:06:00:: 7 1 -arrangement%1:07:00:: 5 2 -arrangement%1:09:00:: 3 4 -arrangement%1:09:01:: 1 13 -arrangement%1:10:00:: 6 1 -arrangement%1:14:00:: 2 4 -array%1:10:00:: 2 1 -array%1:14:00:: 1 4 -array%2:35:00:: 1 1 -arrest%1:04:00:: 1 5 -arrest%2:33:00:: 2 2 -arrest%2:35:00:: 1 20 -arrest%2:35:01:: 3 1 -arrival%1:04:00:: 1 4 -arrival%1:04:01:: 2 3 -arrival%1:18:00:: 3 1 -arrive%2:38:00:: 1 52 -arrive_at%2:38:00:: 1 20 -arrogance%1:07:00:: 1 1 -arrogant%5:00:00:proud:00 1 1 -arrogantly%4:02:00:: 1 1 -arrogate%2:40:02:: 1 1 -arrow%1:06:00:: 2 3 -arrow%1:10:00:: 1 17 -arroyo%1:17:00:: 1 3 -arsenic%1:27:01:: 1 1 -art%1:04:00:: 2 15 -art%1:06:00:: 1 49 -art%1:09:00:: 3 7 -art%1:10:00:: 4 3 -art_editor%1:18:00:: 1 1 -art_school%1:06:00:: 1 6 -art_student%1:18:00:: 1 1 -art_teacher%1:18:00:: 1 1 -arterial%3:01:00:: 1 6 -arteriolar%3:01:00:: 1 4 -arteriole%1:08:00:: 1 2 -arteriolosclerosis%1:26:00:: 1 2 -arteriosclerosis_obliterans%1:26:00:: 1 1 -artery%1:08:00:: 1 5 -artfully%4:02:00:: 1 1 -arthritis%1:26:00:: 1 2 -article%1:03:00:: 2 6 -article%1:10:00:: 1 14 -article%1:10:02:: 3 1 -articulate%2:32:00:: 3 1 -articulate%2:32:02:: 2 1 -articulate%2:40:00:: 1 1 -articulate%3:00:00:: 1 1 -articulation%1:10:00:: 1 1 -artifact%1:03:00:: 1 1 -artifice%1:04:00:: 1 1 -artificial%3:00:00:: 1 4 -artificial%5:00:00:affected:01 2 2 -artificial_lake%1:06:00:: 1 1 -artificially%4:02:00:: 1 2 -artillery%1:06:00:: 1 8 -artillery%1:10:00:: 3 1 -artillery%1:14:00:: 2 3 -artillery_fire%1:04:00:: 1 1 -artilleryman%1:18:00:: 1 1 -artisan%1:18:00:: 1 1 -artist%1:18:00:: 1 44 -artistic%3:01:00:: 1 18 -artistic%5:00:00:aesthetic:00 2 3 -artistically%4:02:00:: 1 1 -artistry%1:09:00:: 1 1 -arts%1:09:00:: 1 5 -arty%5:00:00:pretentious:00 1 1 -as%4:02:00:: 1 30 -as_a_group%4:02:00:: 1 1 -as_a_matter_of_fact%4:02:00:: 1 4 -as_a_whole%5:00:00:general:00 1 4 -as_an_alternative%4:02:00:: 1 1 -as_expected%4:02:00:: 1 1 -as_far_as_possible%4:02:01:: 1 1 -as_follows%4:02:00:: 1 14 -as_good_as%5:00:00:equal:00 1 3 -as_it_is%4:02:00:: 1 2 -as_it_were%4:02:00:: 1 4 -as_many%5:00:00:equal:00 1 5 -as_much_as_possible%4:02:00:: 1 3 -as_needed%4:02:00:: 1 1 -as_required%4:02:00:: 1 3 -as_such%4:02:00:: 1 12 -as_to%5:00:00:related:02 1 1 -as_usual%4:02:00:: 1 4 -as_we_say%4:02:00:: 1 1 -as_well%4:02:01:: 1 34 -as_yet%4:02:00:: 1 9 -ascend%2:38:02:: 1 3 -ascendancy%1:26:00:: 1 1 -ascending%3:00:00:: 1 2 -ascertain%2:31:00:: 2 1 -ascertain%2:32:01:: 1 4 -ascertainable%5:00:00:determinable:00 1 1 -ascribe%2:31:00:: 1 3 -ascribe%2:40:00:: 2 1 -ash%1:20:00:: 2 1 -ash%1:27:01:: 1 2 -ashamed%3:00:00:: 1 5 -ashen%5:00:00:colorless:02 1 2 -ashore%4:02:00:: 1 2 -asia%1:17:00:: 1 5 -asia_minor%1:15:00:: 1 2 -aside%4:02:00:: 1 7 -aside%4:02:01:: 2 5 -aside%4:02:04:: 3 4 -ask%2:32:00:: 1 244 -ask%2:32:01:: 2 165 -ask%2:32:02:: 3 16 -ask%2:32:04:: 5 1 -ask%2:32:05:: 4 2 -ask_for%2:37:00:: 1 4 -ask_out%2:41:00:: 1 1 -asleep%3:00:00:: 1 9 -asleep%4:02:00:: 1 1 -aspect%1:07:02:: 2 18 -aspect%1:09:00:: 1 24 -aspect%1:09:01:: 3 2 -asphalt%1:27:02:: 1 1 -aspirant%1:18:00:: 1 1 -aspiration%1:07:00:: 1 2 -aspire%2:31:00:: 1 2 -aspirin%1:06:00:: 1 1 -aspiring%5:00:00:hopeful:00 1 1 -ass%1:08:00:: 1 3 -ass%1:18:00:: 2 1 -assail%2:33:00:: 1 6 -assassin%1:18:00:: 1 6 -assault%1:04:00:: 1 6 -assault%1:04:01:: 2 1 -assault%2:33:00:: 1 7 -assay%1:09:00:: 1 1 -assay%2:31:00:: 1 1 -assemblage%1:04:00:: 3 1 -assemblage%1:06:00:: 2 1 -assemblage%1:14:00:: 1 2 -assemble%2:36:00:: 1 15 -assemble%2:41:00:: 2 13 -assemble%2:41:03:: 3 1 -assembled%5:00:01:concentrated:00 1 1 -assembly%1:04:01:: 2 3 -assembly%1:06:00:: 1 3 -assembly%1:06:01:: 3 1 -assembly_line%1:06:00:: 1 1 -assent%1:10:00:: 1 5 -assent%2:32:00:: 1 3 -assert%2:31:00:: 4 1 -assert%2:32:00:: 2 6 -assert%2:32:01:: 1 22 -assert%2:41:00:: 3 2 -assert_oneself%2:41:00:: 1 4 -assertion%1:10:00:: 1 2 -assertion%1:10:01:: 2 1 -assertive%3:00:00:: 1 1 -assertiveness%1:07:00:: 1 1 -assess%2:31:00:: 1 14 -assessment%1:09:00:: 1 4 -assessor%1:18:00:: 1 2 -asset%1:07:00:: 2 1 -asset%1:21:00:: 1 2 -assiduity%1:07:00:: 1 1 -assign%2:31:00:: 4 7 -assign%2:31:02:: 3 7 -assign%2:34:00:: 5 1 -assign%2:40:01:: 2 15 -assign%2:41:00:: 1 15 -assigned%3:00:00:: 1 1 -assignee%1:18:00:: 1 2 -assigning%1:04:00:: 1 1 -assignment%1:04:00:: 1 7 -assignment%1:04:02:: 3 2 -assignment%1:10:02:: 2 3 -assimilate%2:30:00:: 2 2 -assimilate%2:30:01:: 3 1 -assimilate%2:31:00:: 1 2 -assimilation%1:04:00:: 1 1 -assist%1:04:00:: 2 1 -assist%1:04:01:: 1 1 -assist%2:41:00:: 2 4 -assist%2:41:02:: 1 21 -assistance%1:04:00:: 1 28 -assistance%1:07:00:: 2 3 -assistant%1:18:00:: 1 7 -assistant%5:00:00:subordinate:01 1 4 -associate%1:18:00:: 1 7 -associate%2:31:00:: 1 25 -associate%2:41:00:: 3 1 -associate%2:41:02:: 2 3 -associate_professor%1:18:00:: 1 1 -associated%5:00:00:related:02 1 11 -association%1:04:00:: 2 6 -association%1:09:00:: 4 3 -association%1:14:00:: 1 10 -association%1:26:00:: 5 1 -association%1:26:02:: 3 3 -assorted%5:00:00:heterogeneous:00 1 1 -assortment%1:14:00:: 1 1 -assume%2:30:00:: 3 13 -assume%2:31:00:: 1 68 -assume%2:38:00:: 5 3 -assume%2:40:01:: 4 6 -assume%2:41:00:: 2 13 -assumed%5:00:00:acknowledged:00 1 1 -assumption%1:04:00:: 3 1 -assumption%1:09:00:: 2 13 -assumption%1:10:00:: 1 15 -assurance%1:09:00:: 1 11 -assurance%1:10:00:: 3 1 -assurance%1:10:01:: 2 1 -assure%2:31:00:: 4 6 -assure%2:32:00:: 2 9 -assure%2:32:01:: 3 9 -assure%2:32:02:: 6 1 -assure%2:32:03:: 1 20 -assure%2:37:00:: 5 2 -assured%5:00:00:confident:00 1 2 -assured%5:00:00:secure:02 2 1 -assuredly%4:02:00:: 1 3 -assyrian%1:10:00:: 2 1 -assyrian%1:18:00:: 1 1 -assyriology%1:09:00:: 1 1 -asterisk%1:10:00:: 1 2 -asteroidal%3:01:00:: 1 1 -astonish%2:31:00:: 1 1 -astonished%5:00:00:surprised:00 1 4 -astonishing%5:00:00:surprising:00 1 4 -astonishingly%4:02:00:: 1 2 -astonishment%1:12:00:: 1 8 -astound%2:31:00:: 1 3 -astounding%5:00:00:incredible:00 1 1 -astral%3:01:00:: 1 1 -astray%4:02:00:: 1 1 -astride%4:02:00:: 1 2 -astringent%5:00:00:sour:00 1 1 -astronomical%3:01:00:: 1 1 -astronomical%5:00:00:large:00 2 1 -astronomical_unit%1:23:00:: 1 1 -astronomy%1:09:00:: 1 1 -astrophysics%1:09:00:: 1 1 -astute%5:00:00:smart:00 1 1 -asymmetric%3:00:00:: 1 2 -asymmetrically%4:02:00:: 1 2 -asymmetry%1:07:00:: 1 1 -asymptotic%3:01:00:: 1 1 -asymptotically%4:02:00:: 1 1 -asynchrony%1:24:00:: 1 2 -at-bat%1:04:00:: 1 1 -at_a_loss%5:00:00:perplexed:00 1 1 -at_a_time%4:02:00:: 1 8 -at_all%4:02:00:: 1 81 -at_any_rate%4:02:00:: 1 4 -at_arm's_length%4:02:00:: 1 1 -at_bay%5:00:00:unfree:00 1 4 -at_best%4:02:00:: 1 4 -at_birth%4:02:00:: 1 3 -at_close_range%4:02:00:: 1 1 -at_ease%3:00:02:: 2 1 -at_ease%3:00:04:: 1 1 -at_ease%4:02:00:: 1 1 -at_first%4:02:00:: 1 23 -at_first_glance%4:02:00:: 1 3 -at_first_sight%4:02:00:: 1 2 -at_hand%5:00:01:close:01 2 4 -at_hand%5:00:02:close:01 1 5 -at_heart%4:02:00:: 1 2 -at_home%1:14:00:: 1 1 -at_home%4:02:01:: 1 1 -at_home%5:00:00:settled:01 1 2 -at_issue%5:00:00:relevant:00 1 2 -at_large%4:02:00:: 1 3 -at_large%5:00:00:free:00 2 1 -at_large%5:00:01:general:00 1 2 -at_last%4:02:00:: 1 44 -at_least%4:02:00:: 2 57 -at_least%4:02:01:: 1 60 -at_length%4:02:01:: 1 4 -at_most%4:02:00:: 1 2 -at_odds%5:00:00:inconsistent:00 1 1 -at_once%4:02:00:: 1 24 -at_once%4:02:03:: 2 9 -at_one_time%4:02:00:: 1 2 -at_present%4:02:00:: 1 8 -at_random%4:02:00:: 1 1 -at_rest%4:02:00:: 1 2 -at_rest%5:00:00:nonmoving:00 1 1 -at_sea%5:00:00:afloat(p):00 2 2 -at_the_least%4:02:00:: 1 2 -at_the_most%4:02:00:: 1 1 -at_the_same_time%4:02:03:: 1 23 -at_the_same_time%4:02:05:: 2 8 -at_the_same_time%5:00:00:synchronous:00 1 8 -at_the_start%4:02:00:: 1 3 -at_times%4:02:00:: 1 15 -at_work%5:00:00:busy:00 1 3 -at_work%5:00:00:operative:00 2 1 -at_worst%4:02:00:: 1 1 -athabascan%1:10:00:: 1 14 -atheist%1:18:00:: 1 1 -atheistic%5:00:00:irreligious:00 1 1 -athens%1:15:00:: 1 1 -atheromatous%3:01:00:: 1 1 -athlete%1:18:00:: 1 7 -athletic%3:01:00:: 1 3 -athletic%5:00:00:active:01 2 1 -athleticism%1:07:00:: 1 1 -athletics%1:04:00:: 1 1 -atlanta%1:04:00:: 2 1 -atlanta%1:15:00:: 1 7 -atlantic%1:17:00:: 1 3 -atlantic%3:01:00:: 1 1 -atlantic_ocean%1:17:00:: 1 1 -atm%1:23:00:: 1 1 -atmosphere%1:15:00:: 3 7 -atmosphere%1:17:00:: 5 4 -atmosphere%1:23:00:: 2 7 -atmosphere%1:26:00:: 4 5 -atmosphere%1:26:01:: 1 18 -atmospheric%3:01:00:: 1 1 -atom%1:27:00:: 1 19 -atom_bomb%1:06:00:: 1 1 -atomic%3:00:00:: 2 1 -atomic%3:01:00:: 1 4 -atomic_bomb%1:06:00:: 1 2 -atomic_energy_commission%1:14:00:: 1 1 -atomic_physics%1:09:00:: 1 1 -atomlike%5:00:00:microscopic:00 1 1 -atonally%4:02:00:: 1 1 -atone%2:41:12:: 1 1 -atop%4:02:00:: 1 1 -atrociously%4:02:00:: 1 1 -atrophic%3:01:00:: 1 3 -atrophied%3:00:00:: 1 1 -atrophy%1:26:00:: 1 4 -attach%2:35:00:: 3 3 -attach%2:35:01:: 1 22 -attach%2:35:02:: 2 4 -attach_to%2:42:01:: 1 3 -attached%5:00:00:connected:00 1 2 -attached%5:00:00:related:02 2 1 -attachment%1:06:00:: 2 1 -attachment%1:12:00:: 1 1 -attack%1:04:00:: 1 17 -attack%1:04:01:: 6 1 -attack%1:04:02:: 5 1 -attack%1:04:03:: 4 1 -attack%1:04:04:: 2 3 -attack%1:10:00:: 3 2 -attack%2:30:00:: 5 1 -attack%2:32:00:: 2 9 -attack%2:33:00:: 1 22 -attack%2:33:01:: 3 8 -attack%2:33:02:: 4 4 -attack%5:00:00:offensive:03 1 1 -attack_aircraft_carrier%1:06:00:: 1 1 -attacker%1:18:00:: 1 3 -attain%2:38:00:: 2 6 -attain%2:41:00:: 1 16 -attained%5:00:00:earned:00 1 1 -attainment%1:04:00:: 1 1 -attainment%1:04:01:: 2 1 -attempt%1:04:00:: 1 49 -attempt%1:04:02:: 2 2 -attempt%2:36:00:: 2 15 -attempt%2:41:00:: 1 50 -attempted%5:00:00:unsuccessful:00 1 2 -attend%2:39:00:: 5 1 -attend%2:41:00:: 4 1 -attend%2:41:12:: 2 2 -attend%2:42:00:: 1 84 -attend%2:42:01:: 3 1 -attend_to%2:31:00:: 1 1 -attendance%1:04:00:: 1 2 -attendant%1:18:00:: 1 3 -attendant%5:00:00:related:02 1 2 -attention%1:04:01:: 2 10 -attention%1:04:02:: 4 4 -attention%1:07:00:: 6 1 -attention%1:09:00:: 1 56 -attention%1:09:01:: 5 2 -attention%1:09:02:: 3 4 -attentive%3:00:00:: 1 2 -attentively%4:02:00:: 1 1 -attest%2:32:00:: 2 1 -attest%2:32:01:: 1 2 -attic%1:06:00:: 1 2 -attic%3:01:00:: 1 1 -attica%1:15:00:: 1 1 -attire%1:06:00:: 1 2 -attired%5:00:00:clothed:00 1 1 -attitude%1:04:00:: 3 1 -attitude%1:07:01:: 2 12 -attitude%1:09:00:: 1 65 -attorney%1:18:00:: 1 8 -attorney_general%1:04:00:: 3 1 -attorney_general%1:18:00:: 1 3 -attorney_general%1:18:01:: 2 1 -attract%2:35:00:: 1 23 -attract%2:37:00:: 3 4 -attract%2:37:01:: 2 14 -attraction%1:07:00:: 3 2 -attraction%1:09:00:: 4 1 -attraction%1:10:00:: 2 2 -attraction%1:19:00:: 1 4 -attractive%3:00:01:: 1 4 -attractive%5:00:00:appealing:00 2 3 -attributable%3:00:00:: 1 4 -attribute%1:03:00:: 2 1 -attribute%1:09:00:: 1 2 -attribute%2:31:00:: 1 16 -attune%2:30:00:: 1 1 -atypical%3:00:00:: 1 1 -audacious%5:00:00:bold:00 1 1 -audacity%1:07:00:: 1 1 -audacity%1:07:02:: 2 1 -audible%3:00:00:: 1 2 -audience%1:14:00:: 1 60 -audience%1:14:01:: 2 9 -audio_system%1:06:00:: 1 1 -audit%1:21:00:: 1 2 -audit%2:31:01:: 1 1 -audition%2:36:00:: 1 2 -auditorium%1:06:00:: 1 3 -aug%1:28:00:: 1 4 -augment%2:30:00:: 2 1 -augment%2:30:01:: 1 8 -augur%2:32:00:: 1 1 -august%1:28:00:: 1 15 -aunt%1:18:00:: 1 4 -aurally%4:02:00:: 1 2 -aureomycin%1:06:00:: 1 4 -auspiciously%4:02:00:: 1 1 -austere%5:00:00:plain:01 1 1 -austerity%1:07:01:: 1 1 -austin%1:15:00:: 1 2 -australia%1:15:00:: 1 3 -authentic%5:00:00:genuine:00 2 6 -authentic%5:00:00:trustworthy:00 1 6 -authenticate%2:31:00:: 1 1 -authenticity%1:07:00:: 1 7 -author%1:18:00:: 1 38 -author%1:18:01:: 2 6 -authoritarian%5:00:00:undemocratic:00 1 2 -authoritative%5:00:00:influential:00 1 1 -authoritatively%4:02:00:: 1 1 -authorities%1:14:00:: 1 10 -authority%1:07:00:: 1 18 -authority%1:07:02:: 6 1 -authority%1:09:00:: 4 2 -authority%1:14:00:: 5 1 -authority%1:18:00:: 3 3 -authority%1:18:01:: 2 5 -authorization%1:10:00:: 1 5 -authorize%2:32:00:: 1 32 -authorized%3:00:00:: 1 1 -authorship%1:04:00:: 1 1 -auto%1:06:00:: 1 2 -auto_limitation%1:04:00:: 1 1 -auto_mechanics%1:04:00:: 1 2 -autofluorescence%1:19:00:: 1 3 -autoloader%1:06:00:: 1 1 -automate%2:30:00:: 1 1 -automatic%3:00:00:: 1 7 -automatic%5:00:00:involuntary:02 3 1 -automatic%5:00:00:mechanical:00 2 5 -automatically%4:02:00:: 1 17 -automation%1:04:00:: 1 2 -automobile%1:06:00:: 1 15 -automobile_industry%1:14:00:: 1 1 -automotive%3:01:00:: 1 2 -autonomic%5:00:00:involuntary:02 1 13 -autonomy%1:26:01:: 1 1 -autopsy%1:04:00:: 1 1 -autumn%1:28:00:: 1 7 -autumn%5:00:00:autumnal:00 1 1 -auxiliary%1:18:00:: 1 2 -auxiliary%5:00:00:secondary:01 1 1 -avail%1:07:00:: 1 2 -avail%2:34:00:: 1 3 -avail%2:41:00:: 2 2 -availability%1:07:00:: 1 3 -available%3:00:00:: 1 91 -avant-garde%5:00:00:original:00 1 1 -avarice%1:04:00:: 1 1 -avenge%2:33:00:: 1 1 -avenging%5:00:00:reciprocal:00 1 1 -avenue%1:04:00:: 1 1 -average%1:09:00:: 1 13 -average%2:31:00:: 3 1 -average%2:41:00:: 2 2 -average%2:42:00:: 1 15 -average%5:00:00:common:01 2 6 -average%5:00:00:moderate:00 4 2 -average%5:00:00:ordinary:00 3 3 -average%5:00:02:normal:01 1 34 -average_cost%1:07:00:: 1 4 -average_out%2:31:00:: 1 1 -aversion%1:12:00:: 1 1 -avert%2:38:00:: 2 1 -avert%2:41:00:: 1 5 -aviary%1:06:00:: 1 1 -aviation%1:14:00:: 1 1 -avocado%1:13:00:: 1 15 -avoid%2:32:00:: 1 24 -avoid%2:34:00:: 4 1 -avoid%2:41:01:: 2 22 -avoid%2:41:03:: 3 18 -avoidance%1:04:00:: 1 4 -avowed%5:00:00:declared:00 1 1 -await%2:31:00:: 1 25 -awaited%5:00:00:expected:00 1 1 -awake%2:29:00:: 1 7 -awake%3:00:00:: 1 9 -awake%5:00:00:conscious:00 2 2 -awaken%2:29:00:: 1 8 -awaken%2:29:01:: 2 8 -awaken%2:31:00:: 3 1 -awakened%3:00:00:: 1 2 -awakening%1:04:00:: 1 1 -award%1:04:00:: 1 26 -award%1:10:00:: 2 6 -award%1:21:00:: 3 5 -award%2:40:00:: 1 6 -award%2:40:01:: 2 2 -award%2:41:00:: 3 1 -awarding%1:04:00:: 1 1 -aware%3:00:00:: 1 40 -awareness%1:09:00:: 1 10 -awareness%1:09:01:: 2 2 -away%4:02:00:: 1 70 -away%4:02:01:: 2 21 -away%4:02:03:: 3 13 -away%4:02:04:: 4 3 -away%4:02:05:: 6 2 -away%4:02:08:: 5 2 -away%4:02:09:: 7 1 -away%5:00:00:absent:00 2 1 -away%5:00:00:distant:01 1 9 -away%5:00:00:out(p):01 4 7 -awe%1:12:02:: 1 4 -awe%2:37:00:: 1 1 -awe-inspiring%5:00:00:impressive:00 1 1 -awed%3:00:00:: 2 1 -awed%5:00:00:reverent:00 1 2 -awestruck%3:00:00:: 1 3 -awful%4:02:00:: 1 4 -awful%5:00:00:alarming:00 2 4 -awful%5:00:00:bad:00 1 10 -awfully%4:02:00:: 1 5 -awfulness%1:07:00:: 1 1 -awhile%4:02:00:: 1 1 -awkward%3:00:00:: 2 2 -awkward%5:00:00:inconvenient:00 1 6 -awkward%5:00:00:unwieldy:00 3 1 -awkwardly%4:02:00:: 1 3 -awry%4:02:00:: 1 1 -awry%5:00:00:crooked:01 1 1 -ax%1:06:00:: 1 2 -axe%1:06:00:: 1 8 -axial%3:01:00:: 1 1 -axially%4:02:00:: 1 1 -axiom%1:10:00:: 1 1 -axiomatic%5:00:00:obvious:00 1 1 -axis%1:09:00:: 1 6 -axle%1:06:00:: 1 1 -azimuth%1:25:00:: 1 1 -b%1:05:00:: 2 1 -b%1:14:00:: 1 8 -b-52%1:06:00:: 1 4 -b_vitamin%1:27:00:: 1 1 -babbiting%1:04:00:: 1 1 -babble%2:32:00:: 2 2 -babble%2:32:02:: 1 3 -babbling%5:00:02:voluble:00 1 1 -babe%1:18:00:: 1 6 -babel%1:26:00:: 1 1 -babelike%5:00:00:dependent:00 1 1 -baby%1:18:00:: 1 16 -baby%1:18:01:: 2 1 -baby-wise%4:02:00:: 1 1 -babylonian%1:18:00:: 1 1 -bachelor%1:18:00:: 1 2 -bachelor_of_science%1:10:00:: 1 1 -back%1:06:00:: 2 12 -back%1:08:00:: 1 53 -back%1:15:02:: 3 4 -back%2:38:00:: 2 6 -back%2:38:01:: 4 4 -back%2:40:00:: 5 2 -back%2:41:00:: 1 7 -back%2:41:01:: 3 4 -back%3:00:00:: 1 15 -back%4:02:00:: 2 36 -back%4:02:01:: 4 15 -back%4:02:03:: 6 1 -back%4:02:04:: 1 91 -back%4:02:05:: 3 24 -back%4:02:06:: 5 14 -back%5:00:00:posterior:00 2 1 -back-to-back%5:00:00:succeeding(a):00 1 1 -back_and_forth%4:02:00:: 1 8 -back_away%2:32:00:: 1 1 -back_brace%1:06:00:: 1 1 -back_circle%1:04:00:: 1 1 -back_country%1:15:00:: 1 1 -back_door%1:04:00:: 1 1 -back_down%2:38:00:: 1 2 -back_off%2:38:00:: 1 6 -back_out%2:38:00:: 1 2 -back_porch%1:06:00:: 1 2 -back_tooth%1:08:00:: 1 1 -back_up%2:30:00:: 3 1 -back_up%2:38:00:: 2 3 -back_up%2:41:00:: 1 3 -backbend%1:04:00:: 1 2 -backbone%1:07:00:: 2 1 -backbone%1:09:00:: 1 1 -backdrop%1:06:00:: 1 1 -backer%1:18:00:: 1 2 -background%1:07:00:: 1 8 -background%1:09:00:: 2 5 -background%1:09:01:: 3 5 -background%1:11:00:: 4 2 -background%1:11:01:: 5 2 -background%1:26:00:: 6 1 -backing%1:04:00:: 1 2 -backing%1:06:00:: 2 1 -backlog%1:14:00:: 1 1 -backstage%1:06:00:: 1 2 -backstitch%2:35:00:: 1 2 -backward%3:00:01:: 1 2 -backward%4:02:01:: 2 2 -backward%4:02:03:: 1 4 -backward_and_forward%4:02:00:: 1 1 -backwards%4:02:03:: 1 1 -backwoods%1:15:00:: 1 3 -backwoods%5:00:00:inaccessible:00 1 1 -backyard%1:06:00:: 1 4 -bacon%1:13:00:: 1 4 -bacteria%1:05:00:: 1 3 -bacterial%3:01:00:: 1 14 -bad%1:07:00:: 1 2 -bad%3:00:00:: 1 51 -bad%4:02:03:: 2 1 -bad%4:02:04:: 1 1 -bad%5:00:00:intense:00 2 3 -bad%5:00:00:stale:00 4 1 -bad%5:00:00:uncomfortable:00 3 3 -bad_guy%1:18:00:: 1 1 -bad_hat%1:18:00:: 1 1 -bad_luck%1:11:00:: 3 1 -bad_luck%1:19:00:: 2 1 -bad_luck%1:26:00:: 1 2 -bad_weather%1:26:00:: 1 2 -badge%1:09:00:: 2 2 -badge%1:10:00:: 1 3 -badger%2:37:00:: 1 2 -badly%4:02:00:: 2 4 -badly%4:02:02:: 1 7 -badness%1:07:00:: 1 8 -baffin_island%1:15:00:: 1 1 -baffle%2:31:00:: 1 1 -baffled%1:14:00:: 1 1 -baffling%5:00:00:difficult:00 1 1 -bag%1:06:00:: 1 8 -bag%1:06:01:: 6 1 -bag%1:06:02:: 4 2 -bag%1:06:03:: 3 2 -bag%1:23:00:: 5 1 -bag%1:23:01:: 2 2 -bag%2:35:01:: 1 1 -bag_of_tricks%1:09:00:: 1 1 -baggage%1:06:00:: 1 1 -baggy%5:00:00:loose:01 1 1 -bagpipe%1:06:00:: 1 1 -bait%1:09:00:: 1 1 -bait%2:32:00:: 1 1 -bake%2:30:00:: 1 6 -bake%2:30:02:: 3 1 -bake%2:36:00:: 2 1 -baked%5:00:00:cooked:00 2 1 -baked%5:00:00:dry:01 1 1 -balance%1:07:00:: 3 1 -balance%1:21:00:: 2 3 -balance%1:26:00:: 1 28 -balance%2:35:00:: 3 2 -balance%2:40:00:: 2 3 -balance%2:42:00:: 1 6 -balance%2:42:01:: 4 1 -balance_of_international_payments%1:21:00:: 1 1 -balance_of_payments%1:21:00:: 1 1 -balance_of_power%1:26:00:: 1 2 -balance_sheet%1:21:00:: 1 1 -balanced%3:00:00:: 1 10 -bald%5:00:00:hairless:00 3 1 -bald%5:00:00:overt:00 1 1 -bald%5:00:00:uncovered:00 2 1 -balding%5:00:00:hairless:00 1 1 -bale%1:06:00:: 1 1 -baleful%5:00:00:maleficent:00 1 1 -bali%1:15:00:: 1 1 -balinese%1:10:00:: 1 1 -balk%2:41:00:: 1 3 -balkanize%2:41:00:: 1 2 -balkiness%1:07:00:: 1 1 -balking%5:00:00:intractable:00 1 1 -ball%1:06:01:: 1 35 -ball%1:06:02:: 6 1 -ball%1:06:03:: 2 5 -ball%1:08:01:: 5 1 -ball%1:14:00:: 4 2 -ball%1:25:00:: 3 3 -ball%2:35:00:: 1 1 -ball-hawking%5:00:00:skilled:00 1 1 -ball_club%1:14:00:: 1 3 -ball_field%1:06:00:: 1 1 -ball_game%1:04:00:: 1 1 -ballad%1:10:00:: 2 2 -ballad%1:10:01:: 1 3 -ballast%1:06:00:: 1 1 -ballast_resistor%1:06:00:: 1 1 -balled%5:00:00:formed:00 1 1 -ballerina%1:18:00:: 1 1 -ballet%1:04:00:: 1 4 -ballet%1:10:00:: 2 1 -ballet_company%1:14:00:: 1 1 -ballet_dancer%1:18:00:: 1 1 -balletomane%1:18:00:: 1 1 -ballistic_missile%1:06:00:: 1 4 -balloon%1:06:00:: 1 3 -balloon%1:06:01:: 2 1 -ballooning%5:00:00:increasing:00 1 1 -ballot%1:04:00:: 2 1 -ballot%1:10:00:: 1 3 -ballpark%1:06:00:: 1 1 -ballplayer%1:18:00:: 1 8 -ballroom%1:06:00:: 1 3 -ballyhoo%1:10:00:: 1 1 -balm_of_gilead%1:20:01:: 1 1 -balsam%1:20:00:: 1 1 -baltimore%1:15:00:: 1 8 -balustrade%1:06:00:: 1 3 -balzac%1:18:00:: 1 1 -bamboo%5:00:00:woody:00 1 1 -ban%1:10:00:: 1 1 -ban%2:32:00:: 2 2 -ban%2:41:00:: 1 2 -banal%5:00:00:ordinary:00 1 1 -banana%1:13:00:: 2 1 -banana%1:20:00:: 1 1 -band%1:06:00:: 7 1 -band%1:06:01:: 4 2 -band%1:07:00:: 3 2 -band%1:10:00:: 6 1 -band%1:14:00:: 2 8 -band%1:14:01:: 1 12 -band%1:14:02:: 5 1 -band%2:35:00:: 1 1 -band_together%2:41:00:: 1 1 -bandage%1:06:00:: 1 6 -bandaged%5:00:00:treated:02 1 5 -bandit%1:18:00:: 1 3 -bandoleer%1:06:00:: 1 1 -bandstand%1:06:00:: 1 1 -bandwidth%1:23:00:: 1 1 -bandy%2:33:01:: 1 1 -bang%1:08:00:: 3 1 -bang%1:11:00:: 2 2 -bang%1:11:01:: 1 2 -bang%2:35:00:: 1 3 -bang%2:35:01:: 3 2 -bang%2:38:00:: 4 1 -bang%2:39:00:: 2 2 -bang%4:02:00:: 1 1 -banging%1:04:00:: 2 1 -banging%1:11:00:: 1 1 -banging%5:00:00:noisy:00 1 1 -banish%2:38:00:: 4 1 -banish%2:41:00:: 3 1 -banish%2:41:01:: 1 3 -banish%2:41:02:: 2 1 -banister%1:06:00:: 1 2 -banjo%1:06:00:: 1 1 -bank%1:14:00:: 2 20 -bank%1:14:01:: 4 1 -bank%1:17:00:: 3 2 -bank%1:17:01:: 1 25 -bank%2:35:00:: 2 1 -bank%2:38:00:: 1 2 -bank_account%1:21:00:: 1 1 -banker%1:18:00:: 1 9 -bankrupt%2:40:00:: 1 1 -bankrupt%5:00:00:insolvent:00 1 1 -bankruptcy%1:26:00:: 2 1 -bankruptcy%1:26:01:: 1 1 -banner%1:06:00:: 1 4 -bannerlike%4:02:00:: 1 1 -banquet%1:14:00:: 1 2 -banshee%1:18:00:: 1 3 -banter%1:10:00:: 1 2 -banter%2:32:00:: 1 1 -baptist%1:18:00:: 1 2 -baptist%3:01:00:: 1 1 -baptize%2:32:00:: 1 8 -bar%1:04:00:: 6 1 -bar%1:06:00:: 3 4 -bar%1:06:02:: 5 1 -bar%1:06:04:: 1 10 -bar%1:06:05:: 2 4 -bar%1:10:00:: 4 1 -bar%2:32:00:: 1 9 -bar%2:35:00:: 2 5 -bar%2:35:01:: 4 1 -bar%2:41:00:: 3 1 -barb%1:10:00:: 1 1 -barbarian%1:18:00:: 1 1 -barbaric%5:00:00:noncivilized:00 1 3 -barbecue%2:30:00:: 1 2 -barbed%5:00:00:sarcastic:00 1 1 -barbed_wire%1:06:00:: 1 4 -barbell%1:06:00:: 1 5 -barbital%1:06:00:: 1 1 -barbiturate%1:06:00:: 1 1 -bare%2:35:00:: 1 1 -bare%5:00:00:leafless:00 1 2 -bare%5:00:00:meager:00 3 2 -bare%5:00:00:unclothed:00 2 2 -bare%5:00:00:uncovered:00 4 1 -barefoot%4:02:00:: 1 1 -barefoot%5:00:00:unshod:00 1 2 -barely%4:02:00:: 1 11 -barely%4:02:01:: 2 2 -bargain%1:10:00:: 1 3 -bargain%2:40:00:: 1 1 -bargain-priced%5:00:00:cheap:00 1 1 -bargaining%1:10:00:: 1 1 -barge%1:06:00:: 1 5 -barge%2:38:00:: 1 2 -barge_in%2:38:00:: 1 1 -barium%1:27:00:: 1 1 -bark%1:06:00:: 3 1 -bark%1:11:02:: 2 1 -bark%1:20:00:: 1 4 -bark%2:32:01:: 1 1 -barkeep%1:18:00:: 1 1 -barley%1:13:00:: 1 2 -barn%1:06:00:: 1 22 -barnburner%1:18:00:: 1 1 -barnful%1:23:00:: 1 1 -barnyard%1:06:00:: 1 2 -barometric_pressure%1:19:00:: 1 1 -baronial%5:00:00:impressive:00 1 1 -barony%1:21:00:: 1 1 -baroque%5:00:00:fancy:00 1 1 -baroreceptor%1:08:00:: 1 1 -barrack%1:06:00:: 1 1 -barrage%1:04:00:: 2 1 -barrage%1:10:00:: 1 2 -barrel%1:06:00:: 2 5 -barrel%1:06:01:: 1 8 -barrel%1:25:00:: 3 2 -barrel_roll%1:04:00:: 1 2 -barren%5:00:01:unfruitful:00 2 1 -barren%5:00:02:unfruitful:00 1 1 -barren_of%5:00:00:empty:00 1 1 -barricade%1:06:00:: 1 2 -barricade%1:06:01:: 2 1 -barricade%2:35:00:: 1 1 -barrier%1:06:00:: 1 4 -barrier%1:09:00:: 2 3 -barrier%1:17:00:: 3 2 -bartender%1:18:00:: 1 2 -bartlett_pear%1:13:00:: 1 1 -bas_relief%1:06:00:: 2 1 -bas_relief%1:25:00:: 1 2 -base%1:06:00:: 8 2 -base%1:06:01:: 2 3 -base%1:06:02:: 3 3 -base%1:06:04:: 1 4 -base%1:09:00:: 7 2 -base%1:10:01:: 6 2 -base%1:15:00:: 5 2 -base%1:17:00:: 4 2 -base%2:31:00:: 1 75 -base%5:00:00:basic:00 1 6 -base%5:00:00:lowborn:00 2 1 -base_hit%1:04:00:: 1 1 -base_on_balls%1:04:00:: 1 3 -base_runner%1:18:00:: 1 1 -baseball%1:04:00:: 1 21 -baseball%1:06:00:: 2 2 -baseball_game%1:04:00:: 1 2 -based%3:44:00:: 1 13 -based%5:00:00:settled:01 4 1 -based%5:00:00:supported:00 2 3 -based%5:00:00:supported:02 3 1 -based_on%5:00:00:supported:02 1 3 -baseline%1:24:00:: 1 1 -basement%1:06:00:: 1 18 -bash%1:11:00:: 1 1 -bashful%5:00:00:timid:00 1 1 -basic%3:00:00:: 1 45 -basic%5:00:00:elementary(a):00 4 2 -basic%5:00:00:essential:00 3 5 -basic%5:00:00:standard:01 2 17 -basically%4:02:00:: 1 7 -basileus%1:18:00:: 1 1 -basin%1:06:00:: 1 2 -basis%1:09:00:: 2 28 -basis%1:24:00:: 1 38 -bask%2:35:00:: 2 2 -bask%2:37:13:: 1 3 -basket%1:06:00:: 1 6 -basket%1:23:00:: 2 2 -basket_weave%1:06:00:: 1 1 -basketball%1:04:00:: 1 3 -basketball_team%1:14:00:: 1 1 -basophilic%3:01:00:: 1 2 -bass%1:07:01:: 1 2 -bass%1:10:01:: 2 1 -bassinet%1:06:00:: 1 1 -bastard%1:18:00:: 1 22 -baste%2:30:00:: 1 2 -bastion%1:14:00:: 1 1 -bat%1:04:00:: 3 1 -bat%1:05:00:: 2 2 -bat%1:06:01:: 1 5 -bat%2:29:00:: 2 2 -bat%2:35:01:: 1 11 -batch%1:14:01:: 1 1 -bated%5:00:00:restrained:00 1 1 -bath%1:04:00:: 2 2 -bath%1:06:00:: 3 1 -bath%1:06:02:: 1 5 -bath_towel%1:06:00:: 1 1 -bathe%2:29:00:: 1 5 -bathe%2:35:00:: 2 2 -bather%1:18:00:: 1 1 -bathing%1:04:00:: 1 1 -bathing%1:04:01:: 2 1 -bathing_suit%1:06:00:: 1 2 -bathos%1:10:00:: 1 1 -bathrobe%1:06:00:: 1 2 -bathroom%1:06:00:: 1 6 -bathtub%1:06:00:: 1 2 -bathtub_gin%1:13:00:: 1 1 -baton%1:06:00:: 1 3 -baton_rouge%1:15:00:: 1 1 -battalion%1:14:00:: 1 2 -batter%1:18:00:: 1 2 -batter%2:35:01:: 1 3 -batter's_box%1:06:00:: 1 3 -battered%5:00:00:damaged:00 1 2 -battered%5:00:00:worn:00 2 1 -battering_ram%1:06:00:: 1 1 -battery%1:06:00:: 2 9 -battery%1:14:01:: 3 2 -battery%1:14:02:: 1 21 -batting%1:04:00:: 1 2 -batting_average%1:24:00:: 1 2 -batting_average%1:24:01:: 2 1 -batting_coach%1:18:00:: 1 1 -battle%1:04:00:: 1 73 -battle%1:04:01:: 2 8 -battle%2:33:00:: 1 6 -battle-ax%1:06:00:: 1 1 -battle_cry%1:10:00:: 1 8 -battle_flag%1:06:00:: 1 2 -battle_line%1:15:00:: 1 2 -battlefield%1:15:00:: 1 5 -battlefront%1:15:00:: 1 1 -battleful%5:00:00:aggressive:00 1 2 -battleground%1:15:00:: 1 1 -batwing%1:06:00:: 1 1 -bavaria%1:15:00:: 1 2 -bawdy%5:00:00:dirty:02 1 1 -bawdyhouse%1:06:00:: 1 1 -bawl%2:32:00:: 1 8 -bay%1:11:00:: 2 1 -bay%1:17:00:: 1 7 -bay%2:32:01:: 1 1 -bayonet%1:06:00:: 1 5 -bazaar%1:06:00:: 1 1 -bc%1:28:00:: 1 7 -be%2:40:00:: 10 2 -be%2:41:00:: 8 86 -be%2:42:00:: 4 701 -be%2:42:01:: 11 1 -be%2:42:02:: 7 189 -be%2:42:03:: 1 10742 -be%2:42:04:: 5 698 -be%2:42:05:: 3 901 -be%2:42:06:: 2 3019 -be%2:42:07:: 6 270 -be%2:42:08:: 9 58 -be_after%2:31:00:: 1 3 -be_born%2:30:00:: 1 52 -be_due%2:42:00:: 1 25 -be_intimate%2:35:00:: 1 2 -be_on%2:30:00:: 1 1 -be_quiet%2:32:00:: 1 1 -be_well%2:29:00:: 1 1 -beach%1:17:00:: 1 14 -beachhead%1:15:00:: 1 3 -beacon%1:10:00:: 1 1 -beacon_light%1:06:00:: 1 1 -bead%1:06:00:: 1 1 -beaded%5:00:00:covered:00 1 1 -beadle%1:18:00:: 1 1 -beadsman%1:18:00:: 1 1 -beady%5:00:00:bright:00 1 1 -beak%1:05:00:: 2 1 -beak%1:05:01:: 1 1 -beam%1:06:00:: 2 9 -beam%1:10:00:: 1 9 -beam%1:19:00:: 4 3 -beam%1:19:01:: 3 3 -beam%2:29:00:: 1 5 -beam%2:32:00:: 4 1 -beam%2:32:01:: 3 1 -beam%2:43:03:: 2 1 -beaming%5:00:00:cheerful:00 1 1 -bean%1:13:00:: 1 2 -bear%1:05:00:: 1 1 -bear%2:29:01:: 2 17 -bear%2:29:02:: 9 1 -bear%2:31:00:: 3 13 -bear%2:35:00:: 4 10 -bear%2:36:00:: 5 6 -bear%2:40:01:: 8 4 -bear%2:40:02:: 6 5 -bear%2:42:01:: 1 23 -bear%2:42:14:: 7 4 -bear_down%2:35:00:: 1 1 -bear_down_on%2:38:00:: 1 2 -bear_in_mind%2:31:00:: 1 2 -bear_on%2:30:00:: 2 2 -bear_on%2:32:00:: 3 1 -bear_on%2:42:00:: 1 2 -bear_out%2:42:00:: 1 3 -bear_up%2:31:00:: 1 1 -bear_upon%2:30:00:: 1 1 -bear_witness%2:32:00:: 2 1 -bear_witness%2:32:02:: 1 1 -beard%1:08:00:: 1 8 -beard%2:42:00:: 1 1 -bearded%5:00:00:unshaven:00 1 10 -beardown%5:00:00:strong:00 1 1 -bearer%1:18:00:: 2 1 -bearer%1:18:03:: 1 3 -bearing%1:07:00:: 3 1 -bearing%1:15:00:: 2 1 -bearing%1:24:01:: 1 1 -beast%1:03:00:: 1 4 -beast%1:18:00:: 2 1 -beat%1:10:00:: 3 1 -beat%1:11:00:: 2 1 -beat%1:15:00:: 1 1 -beat%2:33:00:: 1 18 -beat%2:35:00:: 3 8 -beat%2:35:01:: 2 9 -beat%2:35:03:: 10 1 -beat%2:35:10:: 11 1 -beat%2:36:00:: 5 3 -beat%2:38:00:: 4 4 -beat%2:38:01:: 9 1 -beat%2:38:04:: 8 1 -beat%2:39:00:: 6 2 -beat%2:39:03:: 7 1 -beat-up%5:00:00:damaged:00 1 1 -beat_out%2:33:00:: 1 2 -beaten%5:00:00:abused:01 2 1 -beaten%5:00:00:defeated:00 1 1 -beating%1:04:01:: 1 1 -beatnik%1:18:00:: 1 1 -beau%1:18:00:: 1 1 -beautiful%3:00:00:: 1 25 -beautiful%5:00:00:aesthetic:00 2 2 -beautifully%4:02:00:: 1 6 -beautify%2:30:00:: 1 1 -beauty%1:07:00:: 1 16 -beauty%1:09:00:: 3 1 -beauty%1:18:00:: 2 1 -beckon%2:32:00:: 1 9 -beckon%2:37:00:: 2 1 -become%2:30:00:: 1 327 -become%2:42:00:: 3 5 -become%2:42:01:: 2 220 -bed%1:06:00:: 1 51 -bed%1:06:01:: 2 3 -bed%1:17:00:: 3 2 -bed_down%2:29:00:: 1 1 -bed_hop%2:38:00:: 1 1 -bed_linen%1:06:00:: 1 1 -bedamn%2:32:00:: 1 1 -bedding%1:06:00:: 1 3 -bedfast%5:00:00:ill:01 1 1 -bedground%1:15:00:: 1 1 -bedpost%1:06:00:: 1 1 -bedraggled%5:00:00:dirty:01 1 2 -bedroom%1:06:00:: 1 22 -bedroom_set%1:14:00:: 1 1 -bedside%1:15:00:: 1 1 -bedstead%1:06:00:: 1 1 -bedtime%1:28:00:: 1 1 -bee%1:05:00:: 1 20 -beebread%1:27:00:: 1 7 -beech%1:20:00:: 1 2 -beef%1:05:00:: 1 6 -beef%1:13:00:: 2 3 -beef_cattle%1:05:00:: 1 2 -beef_man%1:18:00:: 1 1 -beef_up%2:30:00:: 1 1 -beefed-up%5:00:00:strong:00 1 1 -beefy%5:00:00:robust:00 1 1 -beehive%1:06:01:: 1 1 -beer%1:13:00:: 1 18 -beer_bottle%1:06:00:: 1 2 -beetle%1:05:00:: 1 1 -befall%2:30:01:: 1 3 -befit%2:42:00:: 1 2 -befog%2:39:00:: 1 1 -before%4:02:03:: 1 68 -before_long%4:02:00:: 1 1 -befriend%2:41:00:: 1 1 -befuddle%2:31:00:: 1 1 -befuddled%5:00:02:confused:00 1 1 -beg%2:32:00:: 1 11 -beg%2:32:01:: 2 5 -beg%2:40:00:: 3 2 -beget%2:29:00:: 1 2 -beggar%1:18:00:: 1 1 -beggary%1:10:00:: 1 1 -begin%2:30:00:: 1 375 -begin%2:30:01:: 4 27 -begin%2:32:03:: 5 9 -begin%2:36:00:: 3 31 -begin%2:42:00:: 2 57 -beginner%1:18:00:: 1 1 -beginning%1:04:00:: 5 2 -beginning%1:09:00:: 3 6 -beginning%1:11:00:: 1 18 -beginning%1:15:00:: 4 2 -beginning%1:28:00:: 2 8 -beginning%5:00:00:early:02 1 4 -beginning%5:00:00:elementary(a):00 2 2 -beguile%2:37:00:: 2 1 -beguile%2:41:00:: 1 1 -beguiling%5:00:00:seductive:00 1 1 -behalf%1:04:00:: 1 4 -behalf%1:07:00:: 2 2 -behave%2:29:00:: 1 18 -behave%2:41:00:: 3 1 -behave%2:41:01:: 2 3 -behavior%1:04:00:: 1 30 -behavior%1:07:00:: 3 8 -behavior%1:26:00:: 2 8 -behavioral%3:01:00:: 1 1 -behead%2:35:00:: 1 1 -behind%1:08:00:: 1 1 -behind%4:02:00:: 1 13 -behind%4:02:01:: 2 3 -behind%5:00:00:down:00 1 1 -behold%2:39:00:: 1 7 -behoove%2:42:00:: 1 1 -being%1:03:00:: 2 6 -being%1:26:00:: 1 12 -bel_canto%1:04:00:: 1 1 -belabor%2:32:02:: 2 1 -belabor%2:41:00:: 1 1 -belated%5:00:00:unpunctual:00 1 1 -belch%1:04:00:: 1 2 -belch%2:29:00:: 1 2 -belching%1:04:00:: 2 1 -belching%1:04:01:: 1 1 -belfry%1:06:01:: 1 1 -belgian%3:01:00:: 1 2 -belie%2:42:00:: 1 3 -belief%1:09:00:: 1 19 -belief%1:09:01:: 3 6 -belief%1:10:01:: 2 12 -believable%3:00:04:: 1 1 -believably%4:02:00:: 1 1 -believe%2:31:00:: 1 118 -believe%2:31:01:: 4 10 -believe%2:31:02:: 5 2 -believe%2:31:03:: 3 37 -believe%2:31:04:: 2 72 -believe_in%2:31:01:: 1 24 -believer%1:18:00:: 2 1 -believer%1:18:01:: 1 1 -bell%1:06:00:: 1 9 -bell%1:06:02:: 2 2 -bell%1:11:00:: 3 1 -belle%1:18:00:: 1 1 -bellhop%1:18:00:: 1 1 -belligerent%5:00:00:hostile:01 1 3 -belligerently%4:02:00:: 1 1 -bellow%1:10:00:: 1 2 -bellow%2:32:00:: 1 10 -belly%1:08:00:: 1 8 -belly%1:08:02:: 2 2 -belong%2:40:00:: 1 10 -belong%2:42:00:: 2 9 -belong%2:42:01:: 5 2 -belong%2:42:02:: 3 4 -belong%2:42:03:: 4 3 -belong_to%2:42:00:: 1 34 -beloved%5:00:00:loved:00 1 7 -below%4:02:00:: 2 13 -below%4:02:01:: 1 16 -below%4:02:02:: 3 2 -below%4:02:06:: 4 2 -belowground%5:00:00:subsurface:00 1 2 -belshazzar%1:18:00:: 1 1 -belt%1:06:00:: 2 4 -belt%1:06:01:: 1 4 -belt%1:11:00:: 4 1 -belt%1:15:00:: 3 2 -belt%2:35:00:: 2 1 -belt%2:36:00:: 1 1 -belt_buckle%1:06:00:: 1 1 -belt_out%2:36:00:: 1 1 -bemoan%2:32:00:: 1 2 -bench%1:06:00:: 1 9 -bench%1:06:01:: 5 1 -bench%1:06:02:: 2 6 -bench%1:14:00:: 4 1 -bench%1:17:00:: 3 1 -bench%2:41:00:: 1 3 -bench_press%1:04:00:: 1 2 -bend%1:06:00:: 3 1 -bend%1:11:00:: 2 1 -bend%1:25:02:: 1 1 -bend%2:35:00:: 3 5 -bend%2:38:00:: 1 23 -bend%2:38:01:: 2 11 -bend%2:38:02:: 5 1 -bend%2:38:03:: 4 3 -bended%5:00:00:unerect:00 1 3 -bending%5:00:00:crooked:01 1 1 -beneath%4:02:00:: 1 1 -benediction%1:04:00:: 1 1 -beneficial%5:00:00:advantageous:00 1 6 -beneficiary%1:18:00:: 1 2 -benefit%1:07:00:: 2 15 -benefit%1:10:00:: 3 1 -benefit%1:21:00:: 1 16 -benefit%2:40:00:: 1 15 -benefit%2:40:01:: 2 7 -benevolent%5:00:00:good:02 1 1 -bennington%1:15:00:: 1 1 -bent%1:09:01:: 1 2 -bent%5:00:00:crooked:01 1 4 -bequest%1:21:00:: 1 4 -berate%2:32:00:: 1 2 -bereavement%1:26:00:: 1 3 -berg%1:17:00:: 1 1 -berlin%1:15:00:: 1 6 -bern%1:15:00:: 1 4 -berry%1:13:00:: 1 3 -berth%1:04:00:: 1 2 -beryllium%1:27:00:: 1 1 -beseech%2:32:00:: 1 2 -beset%2:33:00:: 2 2 -beset%2:37:00:: 1 5 -besides%4:02:01:: 1 10 -besides%4:02:03:: 2 1 -besiege%2:33:00:: 1 2 -besieger%1:18:00:: 1 2 -besmirch%2:32:00:: 1 2 -besmirch%2:35:00:: 2 1 -bespeak%2:32:01:: 1 1 -bespectacled%5:00:00:adorned:00 1 2 -besplashed%5:00:00:dirty:01 1 1 -best%1:04:00:: 1 6 -best%1:18:00:: 2 1 -best%2:33:00:: 1 1 -best%3:00:00:: 1 94 -best%4:02:00:: 2 6 -best%4:02:01:: 1 14 -best-known%5:00:00:known:00 1 1 -best-selling%5:00:00:popular:00 1 1 -best_friend%1:18:00:: 1 1 -best_seller%1:10:00:: 1 2 -bestial%5:00:00:inhumane:00 1 1 -bestow%2:40:00:: 1 4 -bestow%2:40:02:: 2 1 -bestowal%1:04:00:: 1 1 -bestubbled%5:00:00:unshaven:00 1 1 -bet%1:21:00:: 1 1 -bet%2:32:00:: 1 19 -bet_on%2:31:00:: 2 1 -bet_on%2:33:00:: 1 4 -beta%1:10:00:: 1 1 -bethink%2:31:00:: 2 1 -bethink%2:39:00:: 1 3 -betray%2:32:00:: 5 1 -betray%2:32:01:: 1 8 -betray%2:37:00:: 3 2 -betray%2:41:00:: 2 3 -betray%2:41:01:: 4 1 -betrayal%1:04:00:: 1 2 -betrothed%5:00:00:attached:01 1 1 -better%1:07:00:: 2 1 -better%1:07:02:: 1 1 -better%2:30:00:: 3 1 -better%2:30:01:: 2 1 -better%2:33:00:: 1 1 -better%3:00:00:: 1 69 -better%3:00:02:: 2 23 -better%4:02:00:: 1 45 -better%4:02:01:: 2 2 -better%5:00:00:advisable:00 3 8 -better-looking%5:00:00:beautiful:00 1 1 -better_known%5:00:00:known:00 1 1 -better_off%5:00:00:fortunate:00 1 3 -betterment%1:11:00:: 1 1 -between%4:02:00:: 2 1 -between%4:02:03:: 1 1 -bevel%2:35:00:: 1 4 -beverage%1:13:00:: 1 2 -bevy%1:14:01:: 1 2 -bewail%2:32:00:: 1 1 -beware%2:31:00:: 1 2 -bewhiskered%5:00:00:unshaven:00 1 2 -bewilder%2:31:00:: 1 2 -bewilder%2:37:00:: 2 1 -bewildered%5:00:00:perplexed:00 1 6 -bewilderedly%4:02:00:: 1 1 -bewilderingly%4:02:00:: 1 1 -bewilderment%1:09:00:: 1 1 -bewitch%2:37:00:: 1 1 -bewitched%5:00:00:enchanted:00 1 1 -beyond%4:02:01:: 1 10 -beyond%4:02:02:: 2 1 -beyond_measure%4:02:00:: 1 1 -bias%1:09:00:: 1 1 -bible%1:10:00:: 1 13 -bible_belt%1:15:00:: 1 1 -biblical%3:01:00:: 1 8 -bibliographical%3:01:00:: 1 1 -bibliography%1:10:00:: 1 2 -biceps%1:08:00:: 1 2 -biceps_brachii%1:08:00:: 1 1 -bicker%2:32:00:: 1 1 -bickering%1:10:00:: 1 1 -bicycle%1:06:00:: 1 5 -bid%1:04:00:: 2 1 -bid%1:10:03:: 1 1 -bid%2:32:00:: 6 1 -bid%2:32:01:: 2 3 -bid%2:32:02:: 3 3 -bid%2:40:00:: 1 6 -bid%2:40:01:: 4 1 -bid%2:40:04:: 5 1 -bidder%1:18:00:: 1 1 -bidding%1:10:02:: 1 1 -bide%2:42:00:: 1 1 -big%3:00:01:: 1 107 -big%4:02:00:: 2 1 -big%4:02:03:: 1 1 -big%5:00:00:conspicuous:00 6 2 -big%5:00:00:important:00 3 7 -big%5:00:00:intense:00 4 2 -big%5:00:00:loud:00 5 2 -big%5:00:00:significant:00 2 8 -big-chested%5:00:00:robust:00 1 1 -big-shouldered%5:00:00:robust:00 1 1 -big-ticket%5:00:00:expensive:00 1 1 -big_band%1:14:00:: 1 1 -big_league%1:14:00:: 1 3 -big_leaguer%1:18:00:: 1 1 -big_shot%1:18:00:: 1 1 -bigger%5:00:00:large:00 1 9 -biggest%5:00:00:large:00 1 7 -bilateral%5:00:00:symmetrical:00 1 1 -bile%1:08:00:: 1 1 -bilharziasis%1:26:00:: 1 1 -bilingual%5:00:00:multilingual:00 1 1 -bilk%2:41:00:: 1 1 -bill%1:04:00:: 4 1 -bill%1:10:01:: 2 6 -bill%1:10:04:: 1 22 -bill%1:21:00:: 3 4 -bill%2:32:00:: 2 1 -bill%2:40:00:: 1 2 -bill_of_health%1:10:00:: 1 1 -billion%1:23:01:: 1 1 -billion%5:00:00:cardinal:00 1 4 -billow%2:38:02:: 1 1 -billowing%5:00:00:moving:02 1 1 -bimolecular%3:01:00:: 1 1 -bin%1:06:00:: 1 2 -bind%2:32:00:: 6 1 -bind%2:35:00:: 3 4 -bind%2:35:06:: 1 8 -bind%2:35:07:: 5 1 -bind%2:35:08:: 4 3 -bind%2:41:01:: 2 4 -bind_off%2:35:00:: 1 1 -binder%1:06:03:: 1 1 -binding%1:04:00:: 3 1 -binding%1:06:01:: 2 1 -binding%1:07:00:: 1 4 -binding%5:00:00:valid:00 1 1 -binoculars%1:06:00:: 1 1 -binomial%1:09:00:: 1 1 -binomial%3:01:00:: 1 24 -binomial_distribution%1:09:00:: 1 8 -bioassay%1:09:00:: 1 2 -biochemical%3:01:00:: 1 1 -biochemical_mechanism%1:22:00:: 1 1 -biographical%3:01:00:: 1 1 -biography%1:10:00:: 1 3 -biological%3:01:00:: 1 11 -biological_warfare%1:04:00:: 1 2 -biologist%1:18:00:: 1 1 -biology%1:09:00:: 1 4 -biomedical%3:01:00:: 1 1 -biomedicine%1:09:01:: 1 2 -biophysicist%1:18:00:: 1 1 -biopsy%1:09:00:: 1 3 -bipartisan%5:00:00:nonpartisan:00 1 1 -bird%1:05:00:: 1 29 -bird%1:13:00:: 2 1 -bird_shot%1:06:00:: 1 1 -birdbath%1:06:00:: 1 1 -birdhouse%1:06:00:: 1 1 -birdie%2:35:00:: 1 5 -birefringence%1:19:00:: 1 3 -birmingham%1:15:00:: 2 1 -birmingham%1:15:01:: 1 1 -birth%1:11:00:: 2 2 -birth%1:22:00:: 3 1 -birth%1:28:00:: 1 6 -birth_control%1:04:00:: 1 12 -birth_prevention%1:04:00:: 1 1 -birthcontrol%1:04:00:: 1 1 -birthday%1:28:00:: 1 8 -birthday%1:28:01:: 2 1 -birthe%2:29:00:: 1 1 -birthplace%1:15:00:: 1 1 -birthright%1:07:00:: 1 1 -biscuit%1:13:00:: 1 4 -biscuit%1:13:02:: 2 1 -bishop%1:18:00:: 1 6 -bishopry%1:04:00:: 1 1 -bit%1:06:01:: 5 1 -bit%1:11:00:: 4 1 -bit%1:17:00:: 2 4 -bit%1:23:01:: 1 18 -bit%1:28:00:: 3 1 -bit%5:00:00:injured:00 1 1 -bit_part%1:09:00:: 1 1 -bite%1:13:01:: 2 1 -bite%1:26:00:: 1 1 -bite%2:35:00:: 1 12 -bite%2:35:01:: 3 1 -bite%2:39:00:: 2 2 -bite_off%2:35:00:: 1 2 -bite_out%2:32:00:: 1 2 -biter%1:18:00:: 1 1 -biting%5:00:00:sarcastic:00 1 3 -bitten%5:00:00:injured:00 1 1 -bitter%5:00:00:hostile:01 6 1 -bitter%5:00:00:intolerable:00 2 10 -bitter%5:00:00:resentful:00 1 12 -bitter%5:00:00:sorrowful:00 5 2 -bitter%5:00:00:tasteful:01 4 2 -bitter%5:00:00:unpleasant:00 3 6 -bitter_end%1:26:00:: 1 2 -bitterly%4:02:00:: 1 3 -bitterly%4:02:01:: 2 1 -bitterness%1:07:01:: 2 1 -bitterness%1:12:00:: 1 7 -bitters%1:13:00:: 1 1 -bittersweet%5:00:00:sad:00 1 1 -bivouac%1:06:00:: 1 1 -bizarre%5:00:00:unconventional:01 1 2 -blab%2:32:00:: 1 1 -black%1:07:00:: 1 4 -black%3:00:01:: 1 52 -black%3:00:02:: 2 4 -black%5:00:00:angry:00 3 4 -black%5:00:00:colored:00 7 1 -black%5:00:00:dark:01 8 1 -black%5:00:00:evil:00 5 2 -black%5:00:00:hopeless:00 4 2 -black%5:00:00:unfortunate:00 6 2 -black-haired%5:00:00:brunet:00 1 1 -black-market%5:00:00:illegal:00 1 1 -black_and_white%3:00:02:: 1 1 -black_body%1:17:00:: 1 9 -black_bread%1:13:00:: 1 1 -black_eye%1:26:00:: 1 1 -black_flag%1:06:00:: 1 1 -black_hole%1:17:00:: 1 1 -black_man%1:18:00:: 1 1 -black_olive%1:13:00:: 1 1 -black_out%2:29:00:: 4 1 -black_out%2:30:00:: 3 1 -black_out%2:30:01:: 2 1 -black_out%2:43:00:: 1 1 -blackberry%1:13:00:: 1 2 -blackboard%1:06:00:: 1 2 -blacken%2:30:00:: 1 2 -blackened%5:00:00:smoky:00 1 2 -blackening%1:04:00:: 1 1 -blackmailer%1:18:00:: 1 2 -blackness%1:07:00:: 1 4 -blackness%1:26:00:: 2 2 -blackout%1:26:00:: 2 1 -blackout%1:28:00:: 1 1 -blacksmith%1:18:00:: 1 1 -blade%1:06:01:: 4 1 -blade%1:17:00:: 3 1 -blade%1:18:00:: 2 1 -blade%1:20:00:: 1 4 -bladed%3:01:01:: 1 1 -blame%1:10:00:: 2 2 -blame%1:10:01:: 1 3 -blame%2:31:00:: 3 4 -blame%2:32:00:: 1 12 -blame%2:32:01:: 2 9 -blanch%2:29:00:: 1 1 -blanched%5:00:00:colorless:02 1 1 -bland%3:00:00:: 1 1 -bland%5:00:00:tasteless:01 2 1 -blandly%4:02:00:: 1 2 -blandness%1:07:02:: 1 1 -blank%5:00:00:empty:00 1 1 -blank%5:00:02:uncommunicative:00 2 1 -blanket%1:06:00:: 1 19 -blanket%1:17:00:: 2 4 -blanket%2:35:00:: 1 1 -blare%1:11:00:: 1 1 -blare%2:39:01:: 1 1 -blaring%1:11:00:: 1 1 -blaspheme%2:32:00:: 1 1 -blasphemous%5:00:00:irreverent:00 1 1 -blasphemy%1:10:00:: 1 1 -blast%1:04:00:: 1 2 -blast%1:11:01:: 2 1 -blast%2:33:00:: 3 1 -blast%2:35:00:: 2 2 -blast%2:39:00:: 1 3 -blasting%5:00:00:destructive:00 1 1 -blatancy%1:07:00:: 1 1 -blatant%5:00:00:noisy:00 2 2 -blatant%5:00:00:unconcealed:00 1 2 -blaze%1:04:00:: 3 1 -blaze%1:11:00:: 2 3 -blaze%1:22:00:: 1 4 -blaze%2:33:00:: 2 3 -blaze%2:43:01:: 1 5 -blaze_away%2:33:00:: 2 1 -blaze_away%2:36:00:: 1 1 -blaze_out%2:38:00:: 1 1 -blazing%5:00:00:bright:00 1 3 -blazing%5:00:00:lighted:00 2 2 -bleach%1:07:00:: 1 1 -bleach%2:30:01:: 1 1 -bleached%5:00:00:colorless:02 1 1 -bleachers%1:06:00:: 1 1 -bleak%5:00:00:hopeless:00 1 2 -bleak%5:00:00:inhospitable:00 2 1 -bleakly%4:02:00:: 1 3 -bleary%5:00:00:tired:00 1 1 -bleat%1:11:00:: 1 1 -bleat%2:32:00:: 2 1 -bleat%2:32:01:: 1 1 -bleb%1:08:00:: 1 1 -bleed%2:29:00:: 1 10 -bleed%2:29:01:: 2 2 -blemish%1:07:00:: 1 1 -blend%1:11:00:: 1 2 -blend%2:35:00:: 1 7 -blend%2:42:00:: 2 1 -blending%1:04:01:: 1 1 -bless%2:32:00:: 1 4 -bless%2:32:02:: 3 1 -bless%2:40:00:: 2 1 -blessed%3:00:00:: 1 1 -blessed%5:00:01:cursed:00 3 1 -blessed%5:00:02:holy:00 2 1 -blessing%1:04:01:: 1 1 -blight%1:26:00:: 1 1 -blight%2:43:00:: 1 1 -blighted%5:00:00:destroyed:00 1 1 -blind%1:06:00:: 3 1 -blind%1:06:01:: 2 1 -blind%1:14:00:: 1 5 -blind%2:39:00:: 2 2 -blind%2:39:01:: 1 2 -blind%3:00:00:: 1 11 -blind%5:00:00:imprudent:00 4 2 -blind%5:00:00:irrational:00 3 3 -blind%5:00:00:unperceptive:00 2 4 -blind_man%1:18:00:: 1 4 -blinded%5:00:00:blind:00 1 1 -blindfolded%5:00:00:blind:00 1 1 -blindly%4:02:00:: 1 4 -blindly%4:02:01:: 2 1 -blindness%1:26:00:: 1 7 -blink%2:29:00:: 1 11 -blink%2:29:01:: 2 2 -blinker%1:06:00:: 1 1 -blinking%5:00:00:bright:00 1 1 -blissful%5:00:00:happy:00 1 1 -blissfully%4:02:00:: 1 2 -blister%2:30:00:: 1 2 -blistered%5:00:00:injured:00 1 2 -blistering%5:00:00:hot:01 2 1 -blistering%5:00:00:unpleasant:00 1 1 -blithe%5:00:00:cheerful:00 2 1 -blithe%5:00:00:unconcerned:00 1 3 -blithely%4:02:00:: 1 2 -blizzard%1:19:00:: 1 1 -bloat%1:26:00:: 1 8 -bloat%2:30:00:: 1 1 -bloated%5:00:00:unhealthy:00 1 1 -blob%1:25:00:: 1 2 -bloc%1:14:00:: 1 1 -block%1:06:00:: 1 29 -block%1:06:06:: 5 1 -block%1:14:00:: 4 1 -block%1:15:00:: 2 6 -block%1:25:01:: 3 1 -block%2:32:00:: 4 1 -block%2:35:00:: 1 7 -block%2:41:00:: 2 3 -block%2:41:01:: 3 1 -block_capital%1:10:00:: 1 2 -block_diagram%1:06:00:: 1 1 -block_off%2:33:00:: 1 1 -block_out%2:31:00:: 1 1 -blockade%1:04:00:: 1 8 -blockading%5:00:00:preventive:00 1 2 -bloke%1:18:00:: 1 1 -blond%3:00:00:: 1 2 -blonde%1:18:00:: 1 2 -blonde%3:00:00:: 1 1 -blood%1:04:00:: 2 6 -blood%1:07:00:: 3 2 -blood%1:08:00:: 1 61 -blood%1:14:00:: 5 1 -blood%1:18:00:: 4 1 -blood-and-guts%5:00:00:intense:00 1 1 -blood-filled%5:00:00:bloody:00 1 1 -blood_group%1:14:00:: 1 3 -blood_pressure%1:19:00:: 1 2 -blood_relative%1:18:00:: 1 1 -blood_transfusion%1:04:00:: 1 1 -blood_vessel%1:08:00:: 1 4 -bloodhound%1:05:00:: 1 2 -bloodless%5:00:00:dead:01 1 1 -bloodshed%1:04:01:: 1 2 -bloodstained%5:00:00:bloody:00 1 1 -bloodstream%1:08:00:: 1 3 -bloodsucking%5:00:00:bloody:00 1 1 -bloodthirsty%5:00:00:bloody:00 1 1 -bloody%3:00:00:: 1 8 -bloom%1:20:00:: 2 2 -bloom%1:22:00:: 1 3 -bloom%1:26:00:: 4 1 -bloom%1:28:00:: 3 1 -bloom%2:30:00:: 1 11 -blooming%1:22:00:: 1 3 -blooming%5:00:00:flowering:00 1 3 -blossom%1:20:00:: 1 6 -blossom%2:30:00:: 2 2 -blossom%2:30:01:: 1 3 -blot%1:07:00:: 1 7 -blot_out%2:30:00:: 1 6 -blotch%1:07:00:: 1 1 -blow%1:04:01:: 1 25 -blow%1:11:00:: 2 7 -blow%1:11:01:: 4 1 -blow%1:11:02:: 3 2 -blow%2:29:00:: 1 6 -blow%2:29:01:: 3 3 -blow%2:30:08:: 6 1 -blow%2:38:00:: 4 2 -blow%2:39:01:: 5 1 -blow%2:43:00:: 2 5 -blow_off%2:35:00:: 1 1 -blow_out%2:30:00:: 1 2 -blow_up%2:30:00:: 2 1 -blow_up%2:30:03:: 1 4 -blower%1:06:00:: 1 3 -blowfish%1:13:00:: 1 1 -blowing%1:22:00:: 1 3 -blowing_gas%1:27:00:: 1 1 -blown%5:00:00:moving:02 1 1 -blown-up%5:00:02:inflated:00 1 1 -blubber%2:29:00:: 1 1 -bludgeon%1:06:00:: 1 2 -blue%1:06:01:: 2 9 -blue%1:07:00:: 1 9 -blue%1:14:00:: 3 3 -blue%1:17:00:: 4 1 -blue%3:01:00:: 3 10 -blue%5:00:00:chromatic:00 1 48 -blue%5:00:00:dejected:00 4 1 -blue%5:00:00:northern:02 2 13 -blue%5:00:02:dirty:02 5 1 -blue-black%5:00:00:achromatic:00 1 1 -blue-collar%3:00:00:: 1 1 -blue-collar%5:00:00:lower-class:00 2 1 -blue-eyed%5:00:00:eyed:00 2 1 -blue-eyed%5:00:00:loved:00 1 1 -blue-green_algae%1:05:00:: 1 1 -blue-ribbon%5:00:00:superior:02 1 1 -blue_air%1:17:00:: 1 1 -blueberry_pie%1:13:00:: 1 1 -bluefish%1:05:00:: 1 1 -blues%1:10:00:: 1 2 -bluestocking%1:18:00:: 1 1 -bluff%1:10:00:: 2 2 -bluff%1:17:00:: 1 5 -bluish%5:00:00:chromatic:00 1 1 -blunder%1:04:00:: 1 2 -blunder%2:41:00:: 1 1 -blunder%2:41:01:: 2 1 -blunt%2:30:01:: 1 1 -blunt%5:00:00:direct:02 3 1 -blunt%5:00:00:dull:01 2 1 -blunt%5:00:00:pointless:00 1 1 -blur%1:09:00:: 1 4 -blur%2:31:00:: 3 1 -blur%2:39:00:: 2 1 -blur%2:39:01:: 1 2 -blurred%5:00:00:indistinct:00 1 5 -blurt%2:32:00:: 1 1 -blush%2:29:00:: 1 9 -blushing%5:00:00:discomposed:00 1 1 -bluster%1:10:00:: 2 1 -bluster%1:26:00:: 1 2 -bluster%2:32:00:: 2 1 -bluster%2:43:00:: 1 1 -blustery%5:00:00:stormy:00 1 1 -boa_constrictor%1:05:00:: 1 6 -board%1:06:00:: 3 4 -board%1:14:00:: 1 28 -board%1:27:00:: 2 18 -board%2:38:00:: 1 5 -board%2:42:00:: 2 2 -board_of_directors%1:14:00:: 1 3 -board_of_regents%1:14:00:: 1 1 -board_of_trustees%1:14:00:: 1 1 -boarding%1:04:00:: 1 2 -boardinghouse%1:06:00:: 1 1 -boast%1:10:00:: 1 1 -boast%2:32:00:: 1 7 -boast%2:42:00:: 2 6 -boastful%5:00:00:proud:00 1 1 -boastfully%4:02:00:: 1 1 -boat%1:06:00:: 1 14 -boater%1:06:00:: 1 1 -boating%1:04:00:: 1 2 -boatload%1:23:00:: 1 1 -boatswain%1:18:00:: 1 3 -bob%2:38:00:: 1 6 -bobby_pin%1:06:00:: 1 1 -bobbysoxer%1:18:00:: 1 1 -bode%2:32:00:: 1 1 -bodice%1:06:00:: 1 1 -bodily%4:02:00:: 1 2 -bodily_function%1:22:00:: 1 1 -body%1:07:00:: 7 2 -body%1:08:00:: 1 113 -body%1:08:01:: 5 7 -body%1:08:02:: 3 14 -body%1:10:00:: 8 1 -body%1:14:00:: 2 19 -body%1:14:02:: 6 5 -body%1:17:00:: 4 7 -body_length%1:23:00:: 1 1 -body_of_water%1:17:00:: 1 1 -body_part%1:08:00:: 1 2 -body_servant%1:18:00:: 1 1 -body_weight%1:07:00:: 1 8 -bodybuilder%1:18:00:: 1 8 -bodybuilding%1:04:00:: 1 1 -bodyguard%1:18:00:: 1 1 -boeotian%3:01:00:: 1 1 -bog%1:17:00:: 1 1 -bog%2:30:00:: 1 1 -bog_down%2:30:01:: 1 1 -bogartian%3:01:00:: 1 1 -bogey%1:18:00:: 1 1 -bogey%2:35:00:: 1 2 -boggle%2:38:00:: 1 1 -bogus%5:00:00:counterfeit:00 1 3 -bogy%1:06:00:: 1 1 -boil%2:30:00:: 2 4 -boil%2:30:01:: 1 4 -boil%2:30:02:: 3 3 -boil_down%2:30:03:: 1 1 -boiled-down%5:00:00:condensed:01 1 1 -boiler%1:06:00:: 1 1 -boiling%1:22:00:: 1 1 -boiling%5:00:00:hot:02 1 1 -boisterous%5:00:00:disorderly:00 1 1 -bold%3:00:00:: 1 9 -bold%5:00:00:conspicuous:00 2 3 -bold%5:00:00:enterprising:00 3 1 -boldly%4:02:00:: 1 2 -boldness%1:07:00:: 1 1 -bolo%1:06:01:: 1 1 -bolshevik%1:18:00:: 1 1 -bolster%1:06:00:: 1 1 -bolster%2:30:01:: 1 3 -bolt%1:04:01:: 4 1 -bolt%1:06:01:: 3 1 -bolt%1:06:02:: 2 1 -bolt%1:19:00:: 1 2 -bolt%2:34:01:: 3 1 -bolt%2:35:00:: 2 2 -bolt%2:38:00:: 1 2 -bolt%4:02:01:: 1 1 -bolt_out%2:38:00:: 1 1 -bomb%1:06:00:: 1 8 -bomb%1:06:01:: 2 1 -bomb%2:33:00:: 1 3 -bomb_calorimeter%1:06:00:: 1 1 -bomb_shelter%1:06:00:: 1 1 -bombast%1:10:00:: 1 1 -bombay%1:15:00:: 1 1 -bomber%1:06:00:: 1 9 -bombing%1:04:00:: 1 2 -bombproof%1:06:00:: 1 3 -bombus%1:05:00:: 1 4 -bond%1:06:00:: 5 1 -bond%1:06:01:: 6 1 -bond%1:19:00:: 1 15 -bond%1:21:02:: 2 13 -bond%1:21:03:: 4 1 -bond%1:24:00:: 3 6 -bond%2:35:00:: 1 1 -bonded%5:00:00:secure:02 1 1 -bondsman%1:18:01:: 1 1 -bone%1:08:00:: 1 10 -bone%1:27:00:: 2 3 -bone_marrow%1:08:00:: 1 2 -bonemeal%1:27:00:: 1 1 -bonfire%1:11:00:: 1 3 -bonn%1:15:00:: 1 1 -bonnet%1:06:00:: 1 3 -bonus%1:09:00:: 1 1 -bony%5:00:00:thin:03 1 2 -boo%2:32:00:: 1 1 -booby%1:18:00:: 1 1 -booby_trap%1:06:00:: 1 2 -book%1:06:00:: 2 10 -book%1:10:00:: 1 46 -book%1:10:01:: 4 1 -book%1:10:02:: 3 2 -book%2:31:00:: 1 3 -book%2:41:00:: 3 1 -book%2:41:01:: 2 1 -book_jacket%1:10:00:: 1 1 -bookcase%1:06:00:: 1 2 -booked%5:00:00:reserved:02 1 1 -booker%1:18:00:: 1 2 -booking%1:04:00:: 2 1 -booking%1:04:01:: 1 6 -bookshelf%1:06:00:: 1 2 -boom%1:11:01:: 1 2 -boom%2:35:00:: 2 1 -boom%2:39:00:: 1 5 -boomerang%2:38:00:: 1 1 -boon%1:26:00:: 1 1 -boon%5:00:00:close:02 1 1 -boost%1:04:00:: 1 3 -boost%1:07:00:: 2 1 -boost%2:30:00:: 4 1 -boost%2:30:02:: 2 2 -boost%2:38:00:: 1 3 -boost%2:41:00:: 3 1 -boost_up%2:38:00:: 1 1 -boot%1:06:00:: 1 13 -boot%1:06:01:: 2 1 -booted%5:00:00:shod:00 1 1 -booth%1:06:00:: 2 1 -booth%1:06:02:: 1 1 -bootlegger%1:18:00:: 1 2 -bootlegging%1:04:00:: 1 1 -booty%1:21:00:: 1 1 -booze%1:13:00:: 1 1 -borate%1:27:00:: 1 1 -border%1:15:00:: 1 5 -border%1:15:01:: 3 1 -border%1:25:00:: 2 1 -border%2:35:01:: 1 3 -border%2:35:02:: 3 1 -border%2:42:00:: 2 1 -border_on%2:42:00:: 1 3 -border_patrolman%1:18:00:: 1 1 -bordering%5:00:00:connected:00 1 1 -borderline%5:00:00:minimal:00 1 1 -bore%2:35:00:: 2 4 -bore%2:37:00:: 1 7 -bored%5:00:00:tired:00 1 1 -bored%5:00:00:uninterested:00 2 1 -boredom%1:12:00:: 1 7 -boring%5:00:00:uninteresting:00 1 2 -born%3:00:00:: 1 5 -born%5:00:00:natural:01 2 3 -borne_in_upon%5:00:00:causative:00 1 1 -borough%1:15:00:: 1 3 -borrow%2:40:00:: 1 16 -borrow%2:40:01:: 2 5 -borrower%1:18:00:: 1 1 -borrowing%1:04:01:: 1 1 -bosom%1:04:00:: 4 1 -bosom%1:06:00:: 3 1 -bosom%1:08:01:: 2 1 -bosom%1:26:00:: 1 1 -boss%1:18:00:: 2 4 -boss%1:18:01:: 1 6 -boss%1:18:03:: 3 1 -boss%5:00:00:important:00 1 2 -boston%1:15:00:: 1 13 -both%5:00:00:some(a):00 1 4 -bother%2:37:00:: 2 16 -bother%2:41:00:: 1 18 -bother%2:41:01:: 3 8 -bottle%1:06:00:: 1 28 -bottle%1:23:00:: 2 2 -bottleneck%1:25:00:: 1 1 -bottom%1:08:00:: 3 2 -bottom%1:15:00:: 1 9 -bottom%1:15:01:: 2 5 -bottom%1:17:00:: 5 1 -bottom%1:28:00:: 4 1 -bottomland%1:17:00:: 1 1 -bottomless%5:00:00:deep:01 1 1 -botulinal%3:01:00:: 1 1 -boucle%1:06:00:: 1 1 -bouffant%5:00:00:large:00 1 1 -bough%1:20:00:: 1 6 -boulder%1:17:00:: 1 1 -boulevard%1:06:00:: 1 1 -bounce%1:04:00:: 2 1 -bounce%1:07:00:: 1 2 -bounce%2:35:03:: 2 5 -bounce%2:38:00:: 1 13 -bounce%2:38:01:: 5 1 -bounce%2:38:02:: 3 4 -bounce%2:40:00:: 4 1 -bounce_back%2:30:00:: 1 2 -bounce_out%2:35:00:: 1 1 -bouncing%1:11:00:: 1 2 -bouncing_betty%1:06:00:: 1 1 -bound%1:25:00:: 1 1 -bound%2:30:00:: 3 2 -bound%2:38:00:: 4 1 -bound%2:38:01:: 1 4 -bound%2:42:00:: 2 2 -bound%3:00:01:: 1 4 -bound%3:00:02:: 3 2 -bound%3:00:03:: 2 3 -bound%5:00:00:obligated(p):00 8 2 -bound%5:00:00:oriented:00 6 1 -bound%5:00:00:treated:02 5 1 -bound%5:00:01:certain:03 4 2 -bound_up%5:00:00:related:02 1 1 -boundary%1:15:00:: 1 4 -boundary%1:25:00:: 2 2 -bounded%5:00:00:finite:00 1 3 -bounding%5:00:00:moving:02 1 1 -boundless%5:00:00:infinite:00 1 1 -bounds%1:07:00:: 2 1 -bounds%1:15:00:: 1 1 -bouquet%1:06:00:: 1 3 -bourbon%1:13:00:: 2 1 -bourbon%1:18:01:: 1 7 -bourgeoisie%1:14:00:: 1 1 -bout%1:04:00:: 2 1 -bout%1:28:00:: 1 1 -bovine%3:01:00:: 1 2 -bow%1:06:00:: 2 2 -bow%1:06:01:: 4 1 -bow%1:06:02:: 3 1 -bow%1:06:03:: 1 4 -bow%2:32:00:: 1 11 -bow%2:32:01:: 2 3 -bow%2:38:00:: 3 1 -bow_down%2:38:00:: 1 1 -bowed%5:00:00:unerect:00 1 5 -bowed_down%5:00:00:burdened:00 1 1 -bower%1:06:00:: 1 1 -bowl%1:06:00:: 3 1 -bowl%1:06:01:: 1 2 -bowl%1:25:00:: 2 1 -bowlder%1:17:00:: 1 1 -bowstring%1:06:00:: 1 1 -box%1:06:00:: 1 25 -box%1:06:02:: 2 8 -box%1:23:00:: 3 3 -box%1:26:00:: 4 1 -box%2:35:02:: 1 1 -box_in%2:42:00:: 1 1 -box_kodak%1:06:00:: 1 1 -boxcar%1:06:00:: 1 5 -boxed%5:00:00:bordered:00 1 1 -boxed_in%5:00:00:enclosed:00 1 1 -boxer%1:18:00:: 1 1 -boy%1:18:00:: 1 144 -boy%1:18:01:: 4 1 -boy%1:18:02:: 2 42 -boy%1:18:03:: 3 16 -boy_scout%1:18:00:: 1 1 -boycott%2:41:00:: 1 2 -boyhood%1:28:00:: 1 6 -boyish%5:00:00:young:00 1 2 -brace%1:06:04:: 1 1 -brace%2:35:00:: 3 1 -brace%2:35:01:: 2 2 -brace%2:37:00:: 1 2 -braced%5:00:00:prepared:00 1 1 -bracing%1:06:00:: 1 2 -brackish%5:00:00:salt:00 1 3 -brad%1:06:00:: 1 1 -brag%2:32:00:: 1 2 -braggadocio%1:10:00:: 1 1 -braid%1:08:00:: 1 1 -braid%2:36:00:: 1 1 -braided%5:00:00:adorned:00 1 1 -brain%1:08:00:: 1 22 -brain%1:09:00:: 2 5 -brain%1:09:01:: 3 5 -brain%1:18:00:: 4 3 -brain_tumor%1:26:00:: 1 1 -brainy%5:00:00:intelligent:00 1 1 -brake%1:06:00:: 1 2 -brakes%1:06:00:: 1 4 -bramble%1:20:02:: 1 3 -branch%1:14:00:: 1 19 -branch%1:20:00:: 2 15 -branch%1:25:00:: 3 5 -branch_out%2:30:00:: 1 1 -branched%5:00:00:divided:00 1 1 -brand%1:09:00:: 2 3 -brand%1:10:00:: 1 7 -brand%1:10:02:: 3 2 -brand%2:41:01:: 1 1 -branded%5:00:00:proprietary:00 1 1 -brandish%2:35:00:: 1 2 -brandish%2:39:00:: 2 1 -brandy%1:13:00:: 1 3 -brash%5:00:00:forward:02 1 1 -brass%1:06:00:: 2 2 -brass%1:06:02:: 5 1 -brass%1:07:00:: 4 1 -brass%1:14:00:: 3 1 -brass%1:27:00:: 1 11 -brassica%1:20:00:: 1 1 -brassy%3:01:00:: 1 1 -bravado%1:10:00:: 1 2 -brave%2:42:00:: 2 1 -brave%2:42:01:: 1 1 -brave%3:00:00:: 1 10 -brave%5:00:00:bold:00 2 1 -bravely%4:02:00:: 1 2 -bravery%1:07:00:: 1 1 -brazen%5:00:00:unashamed:00 1 2 -brazenly%4:02:00:: 1 1 -brazenness%1:07:00:: 1 1 -brazil%1:15:00:: 1 2 -brazilian%3:01:00:: 1 2 -breach%1:04:01:: 1 1 -breach%2:35:00:: 2 1 -breach%2:41:00:: 1 1 -bread%1:13:00:: 1 3 -bread_and_butter%1:21:00:: 1 1 -bread_dough%1:13:00:: 1 1 -breadth%1:07:00:: 2 2 -breadth%1:09:00:: 1 2 -break%1:04:00:: 6 1 -break%1:04:05:: 5 1 -break%1:11:00:: 1 3 -break%1:11:01:: 2 2 -break%1:11:03:: 4 1 -break%1:17:00:: 3 1 -break%2:30:00:: 2 13 -break%2:30:02:: 10 4 -break%2:30:03:: 1 15 -break%2:30:04:: 16 2 -break%2:30:05:: 17 2 -break%2:30:06:: 3 9 -break%2:30:09:: 21 1 -break%2:30:10:: 5 8 -break%2:30:11:: 12 3 -break%2:30:12:: 22 1 -break%2:32:00:: 15 2 -break%2:33:00:: 14 2 -break%2:35:01:: 4 8 -break%2:37:00:: 9 4 -break%2:38:01:: 20 1 -break%2:38:02:: 7 4 -break%2:38:08:: 8 4 -break%2:38:10:: 19 1 -break%2:41:00:: 6 5 -break%2:41:01:: 18 1 -break%2:41:11:: 11 3 -break%2:42:00:: 13 2 -break_away%2:35:00:: 2 1 -break_away%2:38:01:: 1 2 -break_camp%2:38:00:: 1 2 -break_down%2:30:00:: 4 2 -break_down%2:31:00:: 2 3 -break_down%2:33:00:: 1 3 -break_down%2:37:00:: 3 2 -break_down%2:38:00:: 5 1 -break_even%2:38:00:: 2 1 -break_even%2:40:00:: 1 1 -break_in%2:30:03:: 3 2 -break_in%2:32:00:: 2 2 -break_in%2:41:00:: 1 2 -break_into%2:30:00:: 2 2 -break_into%2:32:00:: 1 4 -break_loose%2:30:00:: 1 2 -break_loose%2:38:00:: 2 1 -break_of_day%1:28:00:: 1 1 -break_off%2:30:00:: 2 2 -break_off%2:30:03:: 1 2 -break_off%2:35:01:: 3 1 -break_one's_back%2:41:00:: 1 1 -break_open%2:35:01:: 1 2 -break_out%2:30:00:: 5 1 -break_out%2:30:03:: 2 3 -break_out%2:30:04:: 1 4 -break_out%2:35:00:: 4 1 -break_out%2:38:00:: 3 2 -break_seal%1:06:00:: 1 3 -break_through%2:30:00:: 2 1 -break_through%2:30:02:: 1 3 -break_up%2:30:03:: 6 1 -break_up%2:32:00:: 5 1 -break_up%2:35:02:: 4 1 -break_up%2:38:00:: 3 2 -break_up%2:38:01:: 1 5 -break_up%2:41:00:: 2 3 -break_with%2:41:00:: 1 3 -breakable%1:06:00:: 1 1 -breakaway%1:04:00:: 1 1 -breakdown%1:04:02:: 1 5 -breakfast%1:13:00:: 1 12 -breakfast%2:34:00:: 1 2 -breakfast_table%1:06:00:: 1 3 -breaking%1:04:00:: 1 1 -breaking%3:44:00:: 1 2 -breaking_away%1:04:01:: 1 2 -breakthrough%1:04:02:: 2 1 -breakthrough%1:09:00:: 1 1 -breakup%1:04:00:: 1 2 -breakup%1:11:00:: 2 1 -breakwater%1:06:00:: 1 2 -breast%1:08:00:: 2 2 -breast%1:08:01:: 1 6 -breastwork%1:06:00:: 1 1 -breath%1:04:00:: 1 15 -breath%1:10:00:: 4 1 -breath%1:27:00:: 2 14 -breath%1:28:00:: 3 1 -breathe%2:29:00:: 1 22 -breathe%2:40:00:: 3 1 -breathe%2:42:00:: 2 1 -breathe_in%2:29:00:: 1 1 -breathing%1:04:00:: 1 5 -breathing%3:00:00:: 1 1 -breathing_space%1:28:00:: 1 1 -breathless%3:00:00:: 1 5 -breathless%5:00:00:exciting:00 2 1 -breathlessly%4:02:00:: 1 2 -breeches%1:06:00:: 1 1 -breed%1:14:00:: 2 1 -breed%1:14:01:: 1 5 -breed%2:35:00:: 2 1 -breed%2:36:00:: 1 1 -breeding%1:07:03:: 1 1 -breeding%5:00:00:fruitful:00 1 1 -breeze%1:19:00:: 1 6 -brevity%1:07:00:: 2 1 -brevity%1:10:00:: 1 1 -bribe%1:21:00:: 1 1 -bribe%2:40:00:: 1 1 -briber%1:18:00:: 1 1 -bric-a-brac%1:06:00:: 1 1 -brick%1:06:00:: 1 7 -brick%1:18:00:: 2 1 -bricklayer%1:18:00:: 1 1 -bricklaying%1:04:00:: 1 2 -bride%1:18:00:: 1 3 -bride-gift%1:21:00:: 1 1 -bridegroom%1:18:00:: 1 1 -bridge%1:04:00:: 5 1 -bridge%1:06:00:: 1 4 -bridge%1:06:05:: 2 3 -bridge%1:08:00:: 4 1 -bridge%1:24:00:: 3 2 -bridge%2:35:00:: 2 1 -bridge%2:42:00:: 1 3 -bridged-t%1:06:00:: 1 1 -bridgehead%1:15:00:: 1 1 -bridle%1:06:00:: 1 4 -brief%1:10:01:: 1 2 -brief%2:32:00:: 1 1 -brief%5:00:00:concise:00 2 6 -brief%5:00:00:short:01 3 1 -brief%5:00:00:short:02 1 12 -briefcase%1:06:00:: 1 3 -briefing%1:10:00:: 1 1 -briefly%4:02:00:: 1 10 -briefly%4:02:03:: 2 9 -brier%1:20:04:: 1 2 -brig%1:06:01:: 1 1 -brigade%1:14:00:: 1 19 -brigadier%1:18:00:: 1 4 -brigadier_general%1:18:00:: 1 1 -bright%3:00:00:: 1 16 -bright%4:02:00:: 1 1 -bright%5:00:00:colorful:00 2 6 -bright%5:00:00:glorious:00 6 1 -bright%5:00:00:intelligent:00 3 5 -bright%5:00:00:light:06 4 3 -bright%5:00:00:polished:00 5 1 -bright_blue%5:00:00:chromatic:00 1 1 -brighten%2:30:01:: 1 1 -brightly%4:02:00:: 1 1 -brightness%1:07:00:: 1 11 -brilliance%1:07:00:: 1 1 -brilliance%1:07:01:: 2 1 -brilliancy%1:07:00:: 1 1 -brilliant%5:00:00:bright:00 5 2 -brilliant%5:00:00:colorful:00 4 2 -brilliant%5:00:00:impressive:00 3 2 -brilliant%5:00:00:intelligent:00 2 7 -brilliant%5:00:00:reverberant:00 6 1 -brilliant%5:00:00:superior:02 1 11 -brilliantly%4:02:00:: 2 1 -brilliantly%4:02:01:: 1 3 -brim%1:06:01:: 1 1 -brim_over%2:38:00:: 1 1 -brindle%5:00:00:patterned:00 1 3 -bring%2:30:00:: 5 9 -bring%2:35:00:: 4 19 -bring%2:35:02:: 6 4 -bring%2:35:04:: 2 55 -bring%2:36:00:: 3 31 -bring%2:36:01:: 7 3 -bring%2:38:00:: 1 122 -bring%2:40:00:: 9 1 -bring%2:40:02:: 8 2 -bring_about%2:36:00:: 1 9 -bring_about%2:36:02:: 3 1 -bring_about%2:42:00:: 2 4 -bring_back%2:29:00:: 2 1 -bring_back%2:38:00:: 1 6 -bring_down%2:32:00:: 3 1 -bring_down%2:38:01:: 1 3 -bring_down%2:41:00:: 2 1 -bring_forth%2:29:00:: 4 1 -bring_forth%2:36:00:: 3 1 -bring_forth%2:36:01:: 1 2 -bring_forth%2:39:00:: 2 1 -bring_forward%2:32:00:: 2 1 -bring_forward%2:38:00:: 1 1 -bring_home%2:30:00:: 1 3 -bring_in%2:38:00:: 1 18 -bring_in%2:40:00:: 3 1 -bring_in%2:40:01:: 2 4 -bring_on%2:36:00:: 1 6 -bring_oneself%2:41:00:: 1 3 -bring_out%2:30:00:: 4 1 -bring_out%2:32:00:: 3 1 -bring_out%2:35:00:: 2 2 -bring_out%2:39:00:: 1 9 -bring_to_bear%2:41:00:: 1 4 -bring_together%2:35:01:: 1 6 -bring_together%2:35:02:: 2 3 -bring_up%2:36:00:: 1 3 -bring_up%2:38:00:: 4 1 -bring_up%2:38:02:: 5 1 -bring_up%2:41:00:: 2 2 -bring_up%2:41:01:: 3 1 -bringing%1:04:00:: 1 1 -brink%1:25:00:: 1 1 -brisk%5:00:00:energetic:00 1 2 -brisk%5:00:00:invigorating:00 2 1 -briskly%4:02:00:: 1 4 -bristle%1:05:00:: 2 1 -bristle%1:06:00:: 1 5 -bristle%2:38:00:: 2 2 -bristle%2:42:00:: 1 3 -bristle_at%2:32:00:: 1 1 -britain%1:15:00:: 1 2 -britannic%3:01:00:: 1 1 -british%1:18:00:: 1 3 -british%3:01:00:: 1 11 -brittle%5:00:00:breakable:00 1 2 -broad%3:00:04:: 1 14 -broad%5:00:00:clear:00 4 2 -broad%5:00:00:comprehensive:00 2 12 -broad%5:00:00:general:00 3 5 -broad%5:00:00:high:02 5 1 -broadcast%1:10:00:: 1 3 -broadcast%2:32:01:: 1 2 -broadcast%5:00:00:publicized:00 1 1 -broadcasting%1:10:01:: 1 2 -broadcasting_company%1:14:00:: 1 1 -broaden%2:30:00:: 4 1 -broaden%2:30:01:: 1 9 -broaden%2:30:02:: 2 1 -broaden%2:30:05:: 3 1 -broadening%1:04:00:: 2 1 -broadening%1:04:01:: 1 2 -broadly%4:02:00:: 1 1 -broadside%1:10:00:: 1 1 -broadway%1:15:00:: 1 4 -brocaded%5:00:00:adorned:00 1 1 -broil%2:30:00:: 1 2 -broil%2:30:01:: 2 1 -broiler%1:06:00:: 1 1 -broke%5:00:00:poor:00 1 2 -broken%3:00:01:: 1 16 -broken%3:00:02:: 2 1 -broken%5:00:00:humble:00 3 1 -broken-backed%5:00:00:damaged:00 1 1 -broken-down%5:00:00:damaged:00 1 1 -broker%1:18:00:: 1 1 -brokerage%1:14:00:: 1 1 -bromophenol_blue%1:27:00:: 1 1 -bronc%1:05:00:: 1 4 -bronchial%3:01:00:: 1 4 -bronchial_artery%1:08:00:: 1 25 -bronchiolar%3:01:00:: 1 1 -bronchiole%1:08:00:: 1 13 -bronchiolitis%1:26:00:: 1 1 -bronchus%1:08:00:: 1 7 -bronze%1:27:00:: 1 2 -bronze%5:00:00:chromatic:00 1 1 -bronzed%5:00:00:brunet:00 1 3 -brood%1:14:00:: 1 10 -brood%2:31:00:: 1 5 -brood%2:42:01:: 2 1 -brooding%1:12:00:: 2 1 -brooding%1:22:00:: 1 1 -brooding%5:00:00:thoughtful:00 1 3 -broody_hen%1:05:00:: 1 1 -brook%1:17:00:: 1 3 -brook%2:31:00:: 1 1 -brooklyn%1:15:00:: 1 6 -broom%1:06:00:: 1 3 -broth_of_a_boy%1:18:00:: 1 1 -brothel%1:06:00:: 1 2 -brother%1:18:00:: 1 36 -brother%1:18:02:: 2 6 -brother%5:00:00:related:02 1 1 -brother-in-law%1:18:00:: 1 1 -brotherhood%1:12:00:: 3 1 -brotherhood%1:14:00:: 2 1 -brotherhood%1:24:00:: 1 1 -brotherly%3:00:00:: 1 1 -brow%1:08:00:: 1 9 -brow%1:08:01:: 2 3 -brow%1:15:00:: 3 2 -browbeat%2:37:00:: 1 1 -brown%1:07:00:: 1 2 -brown%2:30:00:: 1 1 -brown%5:00:00:chromatic:00 1 38 -brownish%5:00:00:chromatic:00 1 1 -brucellosis%1:26:01:: 1 1 -bruise%1:26:00:: 1 1 -bruise%2:35:00:: 1 2 -bruised%5:00:01:injured:00 1 2 -bruised%5:00:02:injured:00 2 1 -bruit%2:32:00:: 1 1 -brush%1:06:00:: 2 8 -brush%1:11:00:: 3 1 -brush%1:14:00:: 1 11 -brush%2:30:00:: 5 1 -brush%2:35:00:: 2 10 -brush%2:35:01:: 1 11 -brush%2:35:02:: 3 5 -brush%2:38:00:: 4 2 -brush_aside%2:32:00:: 1 2 -brush_cut%1:08:00:: 1 1 -brush_fire%1:11:00:: 1 1 -brush_on%2:35:00:: 1 1 -brush_up%2:31:00:: 1 1 -brushed%5:00:00:groomed:00 2 1 -brushed%5:00:00:touched:00 1 1 -brushing%1:04:03:: 1 2 -brushy%5:00:00:wooded:00 1 2 -brutal%5:00:01:inhumane:00 2 1 -brutal%5:00:02:inhumane:00 1 1 -brutality%1:04:00:: 2 2 -brutality%1:07:00:: 1 2 -brute%1:18:00:: 1 2 -brute%5:00:00:inhumane:00 1 1 -bubble%1:17:00:: 1 6 -bubble%2:30:00:: 1 3 -bubble_gum%1:13:00:: 1 1 -bubble_over%2:37:00:: 1 1 -buck%1:06:01:: 1 1 -buck%2:41:00:: 2 1 -buck%2:41:01:: 1 2 -buck_up%2:37:00:: 1 1 -buckboard%1:06:00:: 1 2 -bucket%1:06:00:: 1 2 -buckle%1:06:00:: 1 2 -buckle%2:30:00:: 3 1 -buckle%2:35:00:: 1 1 -buckle%2:35:01:: 2 1 -buckskin%1:05:00:: 1 8 -bucolic%5:00:01:rural:00 1 1 -bud%1:20:00:: 2 2 -bud%1:20:02:: 1 3 -bud%2:30:00:: 1 2 -bud%2:30:02:: 2 1 -buddha%1:18:00:: 1 3 -buddhist%1:18:00:: 1 1 -buddhist%3:01:00:: 1 1 -buddy%1:18:00:: 1 7 -budge%2:38:00:: 1 3 -budget%1:21:02:: 1 4 -budget%1:21:03:: 2 3 -budget%2:31:00:: 1 2 -budgetary%3:01:00:: 1 1 -buff%1:18:00:: 1 2 -buff%2:35:02:: 1 1 -buffalo%1:05:02:: 1 3 -buffer%1:27:00:: 1 8 -buffer%2:30:00:: 1 5 -buffet%1:06:00:: 1 1 -buffet%2:35:00:: 1 3 -buffoon%1:18:01:: 1 1 -bug%1:05:02:: 1 1 -bug%2:37:00:: 1 1 -bug_out%2:38:00:: 1 1 -buggy%1:06:00:: 1 2 -bugle%1:06:00:: 1 3 -bugler%1:18:00:: 1 1 -build%1:07:00:: 1 2 -build%2:30:00:: 2 11 -build%2:30:02:: 4 1 -build%2:36:00:: 1 123 -build%2:36:09:: 3 4 -build_on%2:42:00:: 1 2 -build_up%2:30:00:: 2 6 -build_up%2:30:01:: 3 6 -build_up%2:30:02:: 1 7 -build_up%2:33:00:: 4 2 -builder%1:27:00:: 1 11 -building%1:04:00:: 2 3 -building%1:04:01:: 3 1 -building%1:06:00:: 1 48 -building%5:00:00:increasing:00 1 2 -building_supply_house%1:06:00:: 1 1 -buildup%1:04:00:: 1 3 -built%5:00:00:collective:00 2 2 -built%5:00:00:improved:00 1 4 -built%5:00:00:shapely:00 3 1 -built-in%5:00:00:intrinsic:00 1 2 -bulb%1:06:00:: 2 2 -bulb%1:06:01:: 3 1 -bulb%1:20:00:: 1 2 -bulgaria%1:15:00:: 1 1 -bulge%1:25:00:: 1 3 -bulge%2:30:00:: 1 3 -bulging%3:00:06:: 1 1 -bulging%5:00:00:protrusive:00 2 1 -bulk%1:07:00:: 2 1 -bulk%1:07:02:: 1 5 -bulk%2:30:01:: 1 2 -bulk%5:00:00:wholesale:00 1 1 -bulky%5:00:00:large:00 1 4 -bull%1:04:00:: 4 1 -bull%1:05:01:: 1 2 -bull%1:10:00:: 3 1 -bull%1:18:02:: 2 1 -bull%2:41:00:: 1 1 -bull's_eye%1:04:00:: 1 13 -bull's_eye%1:04:01:: 3 1 -bull's_eye%1:15:00:: 2 2 -bullet%1:06:00:: 1 35 -bullet_hole%1:17:00:: 1 1 -bullethead%1:08:00:: 1 1 -bulletin%1:10:00:: 1 2 -bulletin%2:32:00:: 1 2 -bullnecked%5:00:00:strong:00 1 1 -bullshit%2:32:00:: 1 1 -bully%1:18:00:: 1 1 -bully%5:00:00:good:01 1 1 -bullyboy%1:18:00:: 1 1 -bum%1:18:01:: 2 1 -bum%1:18:02:: 1 2 -bum%2:40:00:: 1 1 -bumblebee%1:05:00:: 1 13 -bump%2:35:00:: 1 2 -bump%2:38:00:: 3 1 -bump%2:40:12:: 2 1 -bump_into%2:35:00:: 1 1 -bump_off%2:41:00:: 1 2 -bunch%1:14:00:: 1 6 -bunch%1:14:01:: 2 3 -bunch%1:14:02:: 3 1 -bunch%2:35:00:: 2 1 -bunch%2:38:00:: 1 2 -bunched%5:00:00:concentrated:00 1 1 -bundle%1:06:00:: 2 4 -bundle%1:14:00:: 1 4 -bundle%2:35:00:: 1 2 -bundled-up%5:00:00:clothed:00 1 1 -bunk%1:06:00:: 2 4 -bunk%1:06:01:: 3 3 -bunk%1:06:03:: 1 9 -bunker%1:06:00:: 1 1 -bunker%2:35:00:: 1 1 -bunkmate%1:18:00:: 1 2 -bunt%1:04:00:: 1 1 -bunter%1:18:00:: 1 1 -buoy_up%2:32:00:: 1 1 -buoyant%5:00:00:cheerful:00 2 1 -buoyant%5:00:00:light:01 1 1 -burden%1:06:01:: 2 2 -burden%1:09:01:: 1 7 -burdened%3:00:00:: 1 1 -bureau%1:06:00:: 2 1 -bureau%1:14:00:: 1 3 -bureaucracy%1:14:00:: 1 6 -bureaucratic%3:01:00:: 1 3 -burgeon%2:30:01:: 1 3 -burglar%1:18:00:: 1 1 -burglary%1:04:00:: 1 2 -burial%1:11:00:: 1 5 -buried%5:00:00:concealed:00 1 3 -burly%5:00:00:robust:00 1 2 -burma%1:15:00:: 1 3 -burn%1:26:00:: 1 1 -burn%1:26:02:: 2 1 -burn%2:29:00:: 12 1 -burn%2:30:00:: 3 9 -burn%2:30:01:: 7 2 -burn%2:30:02:: 1 11 -burn%2:30:08:: 11 1 -burn%2:37:00:: 6 2 -burn%2:39:00:: 4 4 -burn%2:39:04:: 10 1 -burn%2:40:01:: 9 1 -burn%2:41:00:: 8 1 -burn%2:43:01:: 2 10 -burn%2:43:02:: 5 2 -burn_down%2:30:00:: 1 3 -burn_down%2:30:02:: 2 2 -burn_off%2:30:00:: 2 1 -burn_off%2:34:00:: 1 1 -burn_up%2:43:00:: 1 1 -burned%3:44:00:: 1 1 -burned%5:00:00:injured:00 2 1 -burner%1:06:00:: 1 1 -burning%1:04:00:: 1 1 -burning%5:00:00:lighted:00 4 1 -burning%5:00:00:painful:00 1 3 -burning%5:00:00:passionate:00 3 1 -burning%5:00:01:hot:01 2 2 -burnish%2:36:00:: 1 1 -burnt%5:00:00:cooked:00 1 1 -burnt_sienna%1:07:00:: 1 1 -burr%1:06:00:: 2 1 -burr%1:20:00:: 1 2 -burr-headed%5:00:00:headed:01 1 1 -burrow%1:17:00:: 1 4 -burrow%2:38:00:: 1 3 -bursitis%1:26:00:: 1 1 -burst%1:04:00:: 1 5 -burst%1:04:01:: 2 2 -burst%1:04:02:: 3 1 -burst%2:30:00:: 1 11 -burst%2:30:02:: 6 2 -burst%2:30:09:: 3 7 -burst%2:37:00:: 2 7 -burst%2:38:00:: 4 4 -burst%2:42:00:: 5 2 -burst_out%2:30:01:: 2 1 -burst_out%2:32:00:: 1 3 -bursting%5:00:00:explosive:00 1 1 -bury%2:35:00:: 3 3 -bury%2:35:01:: 5 1 -bury%2:35:02:: 4 1 -bury%2:39:00:: 1 7 -bury%2:41:00:: 2 6 -bus%1:06:00:: 1 2 -bus_company%1:14:00:: 1 1 -bus_line%1:06:00:: 1 1 -bus_stop%1:15:00:: 1 1 -busboy%1:18:00:: 1 3 -bush%1:14:00:: 3 2 -bush%1:15:00:: 2 2 -bush%1:20:00:: 1 5 -bush_jacket%1:06:00:: 1 1 -bushel%1:23:02:: 1 3 -bushwhack%2:33:00:: 1 1 -bushwhacker%1:18:00:: 1 1 -bushwhacking%5:00:00:concealed:00 1 1 -bushy%5:00:00:ungroomed:00 1 1 -busily%4:02:00:: 1 3 -business%1:04:00:: 3 13 -business%1:04:01:: 2 20 -business%1:04:02:: 6 7 -business%1:09:00:: 5 9 -business%1:09:01:: 4 12 -business%1:14:00:: 1 35 -business%1:14:02:: 7 5 -business%5:00:00:commercial:00 1 3 -business_activity%1:04:00:: 1 1 -business_agent%1:18:00:: 1 1 -business_concern%1:14:00:: 1 14 -business_district%1:15:00:: 1 2 -business_enterprise%1:04:00:: 1 1 -business_executive%1:18:00:: 1 1 -business_firm%1:14:00:: 1 1 -business_leader%1:18:00:: 1 1 -business_organization%1:14:00:: 1 1 -business_relationship%1:26:00:: 1 1 -businesslike%5:00:00:efficient:00 1 1 -businessman%1:18:00:: 1 10 -businessmen%1:14:00:: 1 1 -bust%2:35:01:: 1 1 -busted%5:00:00:broken:01 1 1 -bustle%1:04:00:: 1 1 -bustle%2:38:00:: 1 2 -bustle_about%2:38:00:: 1 1 -bustling%5:00:00:active:06 1 2 -busy%2:41:00:: 1 1 -busy%3:00:00:: 1 30 -busy%5:00:00:fancy:00 2 1 -busy%5:00:00:intrusive:01 3 1 -busy%5:00:01:active:06 4 1 -but%4:02:01:: 1 2 -but_then%4:02:00:: 1 1 -butcher%2:35:00:: 1 1 -butler%1:18:00:: 1 1 -butt%1:06:00:: 1 2 -butt%2:35:00:: 2 2 -butt%2:35:01:: 3 1 -butt%2:35:02:: 1 3 -butt_against%2:35:00:: 1 2 -butter%1:13:00:: 1 3 -butterfat%1:27:00:: 1 1 -buttocks%1:08:00:: 1 1 -button%1:06:00:: 1 8 -button%1:06:01:: 2 6 -button-down%5:00:00:conventional:01 1 1 -buttoned%3:00:00:: 1 1 -buttressed%5:00:00:supported:00 1 1 -buy%2:40:00:: 1 102 -buy%2:40:02:: 2 2 -buy_it%2:30:00:: 1 1 -buy_out%2:40:00:: 1 2 -buy_time%2:30:00:: 1 1 -buy_up%2:40:00:: 1 2 -buyer%1:18:00:: 1 1 -buying%1:04:00:: 1 3 -buzz%1:04:00:: 2 1 -buzz%1:11:00:: 1 1 -buzz%2:38:00:: 2 3 -buzz%2:39:00:: 1 4 -buzz%2:42:00:: 3 2 -buzzing%5:00:00:noisy:00 1 2 -bw%1:04:00:: 1 5 -by%4:02:00:: 1 2 -by-product%1:06:00:: 2 2 -by-product%1:19:00:: 1 4 -by_a_long_shot%4:02:00:: 1 1 -by_all_means%4:02:00:: 1 1 -by_and_large%4:02:00:: 1 2 -by_any_means%4:02:00:: 1 1 -by_chance%4:02:01:: 1 1 -by_design%4:02:00:: 1 1 -by_far%4:02:00:: 1 2 -by_hand%4:02:01:: 1 1 -by_heart%4:02:00:: 1 1 -by_luck%4:02:00:: 1 1 -by_nature%4:02:00:: 1 1 -by_no_means%4:02:00:: 1 15 -by_the_way%4:02:00:: 1 5 -by_word_of_mouth%4:02:01:: 1 1 -bygone%1:28:00:: 1 1 -bygone%5:00:00:past:00 1 1 -bypass%1:06:00:: 1 1 -bypass%2:32:00:: 1 4 -c%1:23:02:: 1 21 -cab%1:06:02:: 1 4 -cabana%1:06:00:: 1 3 -cabbage%1:13:00:: 1 1 -cabin%1:06:01:: 1 5 -cabin%1:06:02:: 2 3 -cabinet%1:06:00:: 1 4 -cable%1:06:00:: 3 1 -cable%1:06:02:: 2 1 -cable%1:10:00:: 1 2 -cable%2:32:00:: 1 1 -cache%1:06:00:: 1 1 -cackle%2:29:00:: 3 1 -cackle%2:32:00:: 2 1 -cackle%2:32:01:: 1 2 -cackly%5:00:00:cacophonous:00 1 1 -cadaver%1:08:00:: 1 1 -cadaverous%5:00:00:thin:03 1 1 -cadence%1:10:01:: 1 1 -cadenza%1:10:00:: 1 2 -cadmium_yellow%1:27:00:: 1 1 -cadre%1:14:00:: 2 1 -cadre%1:14:01:: 1 1 -caesar%1:18:00:: 1 1 -cafe%1:06:00:: 1 5 -cafeteria%1:06:00:: 1 13 -cage%1:06:00:: 1 4 -cage%1:26:00:: 2 2 -cagey%5:00:00:smart:00 1 1 -cake%1:06:00:: 1 2 -calamity%1:11:00:: 1 3 -calcification%1:22:00:: 1 1 -calcify%2:30:02:: 1 1 -calcium%1:27:00:: 1 3 -calcium_hydride%1:27:00:: 1 1 -calcium_lactate%1:27:00:: 1 1 -calculate%2:31:00:: 1 21 -calculate%2:31:03:: 2 3 -calculated%5:00:00:premeditated:00 1 2 -calculating%5:00:00:hard:02 1 1 -calculatingly%4:02:00:: 1 1 -calculation%1:04:00:: 1 7 -calculation%1:09:00:: 2 4 -calculus%1:17:00:: 1 1 -calendar%1:10:01:: 2 1 -calendar%1:28:00:: 1 1 -calendar_year%1:28:00:: 1 13 -calf%1:05:00:: 1 6 -calf%1:08:00:: 2 1 -caliber%1:07:00:: 1 2 -caliber%1:07:01:: 2 1 -calibrate%2:30:00:: 1 4 -calibration%1:04:00:: 1 7 -calibre%1:07:00:: 1 1 -caliche-topped%5:00:00:unpaved:00 1 1 -california%1:15:00:: 1 13 -californian%1:18:00:: 1 1 -caliph%1:18:00:: 1 1 -call%1:04:03:: 6 1 -call%1:09:00:: 2 4 -call%1:10:01:: 1 9 -call%1:10:02:: 3 3 -call%1:10:03:: 5 1 -call%1:10:05:: 4 2 -call%2:32:00:: 2 51 -call%2:32:01:: 3 38 -call%2:32:02:: 1 91 -call%2:32:03:: 10 1 -call%2:32:04:: 9 1 -call%2:32:05:: 5 25 -call%2:32:09:: 4 25 -call%2:32:13:: 8 1 -call%2:41:00:: 6 9 -call%2:41:04:: 7 9 -call-back%1:10:00:: 1 1 -call-board%1:06:00:: 1 1 -call_back%2:31:00:: 2 1 -call_back%2:40:00:: 1 1 -call_for%2:32:00:: 3 7 -call_for%2:32:03:: 4 1 -call_for%2:32:04:: 1 24 -call_for%2:42:00:: 2 21 -call_in%2:32:00:: 5 1 -call_in%2:32:02:: 2 2 -call_in%2:35:00:: 1 2 -call_in%2:41:00:: 3 1 -call_in%2:41:02:: 4 1 -call_off%2:41:00:: 1 1 -call_on%2:32:00:: 1 8 -call_out%2:32:00:: 2 6 -call_out%2:32:01:: 1 12 -call_up%2:31:04:: 3 1 -call_up%2:32:00:: 2 1 -call_up%2:32:03:: 1 2 -call_upon%2:32:00:: 1 10 -called%5:00:00:titled:00 1 32 -called%5:00:01:titled:00 2 7 -called_for%5:00:00:appropriate:00 1 1 -called_upon%5:00:00:obligated(p):00 1 1 -caller%1:18:00:: 1 3 -callous%5:00:00:insensitive:02 1 3 -calloused%5:00:00:tough:02 1 2 -callously%4:02:00:: 1 1 -callousness%1:07:00:: 1 1 -calm%1:07:00:: 1 3 -calm%2:30:00:: 2 1 -calm%2:37:00:: 1 5 -calm%5:00:00:composed:00 1 11 -calm%5:00:00:peaceful:00 2 8 -calm_down%2:37:01:: 1 4 -calming%5:00:00:unalarming:00 1 1 -calmly%4:02:00:: 1 9 -calmly%4:02:01:: 2 2 -calmness%1:07:00:: 1 2 -calorimeter%1:06:00:: 1 1 -calorimetric%3:01:00:: 1 1 -calumniate%2:32:00:: 1 1 -calumny%1:10:00:: 1 1 -calving%1:22:00:: 1 3 -camaraderie%1:07:00:: 1 1 -cambodia%1:15:00:: 1 1 -cambridge%1:06:00:: 1 1 -camera%1:06:00:: 1 18 -camera%1:06:01:: 2 4 -camera_lens%1:06:00:: 1 1 -camouflage%2:39:00:: 1 1 -camp%1:06:00:: 1 19 -camp%1:06:01:: 3 6 -camp%1:06:02:: 5 2 -camp%1:09:00:: 6 1 -camp%1:14:00:: 2 7 -camp%1:14:01:: 4 2 -camp%2:42:00:: 1 7 -camp_ground%1:15:00:: 1 4 -camp_out%2:42:00:: 1 1 -camp_site%1:15:00:: 1 1 -campaign%1:04:00:: 3 4 -campaign%1:04:02:: 2 5 -campaign%1:11:00:: 1 9 -campaign%2:33:01:: 1 7 -campaign%2:41:10:: 2 2 -camper%1:18:00:: 1 10 -camper_trailer%1:06:00:: 1 1 -campfire%1:11:00:: 1 3 -camping%1:04:00:: 1 13 -campmate%1:18:00:: 1 1 -campus%1:15:00:: 1 2 -can%1:06:00:: 1 2 -can%2:30:00:: 2 2 -can%2:41:00:: 3 1 -can%2:42:00:: 1 7 -canada%1:15:00:: 1 9 -canadian%3:01:00:: 1 1 -cancel%2:41:03:: 1 9 -cancel_out%2:30:00:: 1 3 -cancellation%1:04:00:: 1 2 -cancer%1:26:00:: 1 15 -candid%5:00:00:direct:02 1 1 -candidacy%1:04:00:: 1 1 -candidate%1:18:00:: 2 5 -candidate%1:18:01:: 1 20 -candidly%4:02:00:: 1 1 -candle%1:06:00:: 1 4 -candle_flame%1:19:00:: 1 1 -candlewick%1:06:00:: 1 1 -candour%1:07:00:: 1 1 -candy%1:13:00:: 1 1 -candy_store%1:06:00:: 1 1 -cane%1:06:01:: 1 5 -cane%2:35:00:: 1 1 -caning%1:06:00:: 1 1 -cannon%1:06:00:: 1 11 -cannon_fodder%1:18:00:: 1 1 -canon%1:10:00:: 1 5 -canonist%3:01:00:: 1 2 -canonize%2:32:00:: 1 1 -canonized%5:00:00:authorized:00 1 1 -cant%1:10:01:: 1 1 -canteen%1:06:00:: 1 12 -canter%1:04:00:: 1 1 -canter%2:38:00:: 1 1 -cantering%3:44:00:: 1 1 -cantilever%1:06:00:: 1 1 -cantle%1:06:00:: 1 1 -canvas%1:06:00:: 1 7 -canvas%1:06:02:: 4 1 -canvas%1:06:04:: 2 3 -canvas%1:26:00:: 3 1 -canvass%2:41:01:: 1 2 -canyon%1:17:00:: 1 5 -canyonside%1:17:00:: 1 1 -cap%1:06:00:: 1 10 -cap%1:06:02:: 2 2 -cap%1:06:03:: 4 1 -cap%1:06:05:: 3 1 -cap%2:42:00:: 1 3 -capability%1:07:00:: 1 8 -capable%3:00:00:: 1 20 -capable%3:00:02:: 3 2 -capable%5:00:00:adequate:00 4 2 -capable%5:00:00:competent:00 5 1 -capable%5:00:00:susceptible:00 2 5 -capacitance%1:19:00:: 1 1 -capacitor%1:06:00:: 1 2 -capacity%1:04:00:: 4 3 -capacity%1:04:01:: 5 1 -capacity%1:07:00:: 1 15 -capacity%1:23:00:: 3 6 -capacity%1:26:00:: 2 9 -cape%1:06:00:: 2 1 -cape%1:17:00:: 1 2 -caper%2:38:00:: 1 1 -capillary%1:06:00:: 1 2 -capillary_action%1:19:00:: 1 1 -capillary_bed%1:08:00:: 1 4 -capillary_tubing%1:06:00:: 1 1 -capital%1:10:00:: 4 1 -capital%1:15:00:: 3 3 -capital%1:21:00:: 2 3 -capital%1:21:01:: 1 15 -capital_gain%1:21:00:: 1 3 -capital_loss%1:21:00:: 1 1 -capital_punishment%1:04:00:: 1 1 -capital_stock%1:21:00:: 1 2 -capitalism%1:14:00:: 1 9 -capitalist%1:18:01:: 1 1 -capitalist%3:01:00:: 1 3 -capitalistic%3:00:00:: 1 1 -capitalize%2:40:00:: 1 3 -capitulate%2:33:00:: 1 1 -capstan%1:06:00:: 1 1 -capsule%1:06:00:: 2 2 -capsule%1:06:02:: 1 2 -captain%1:18:02:: 2 14 -captain%1:18:03:: 4 6 -captain%1:18:04:: 3 7 -captain%1:18:05:: 1 16 -captain%1:18:06:: 5 2 -captivate%2:37:00:: 1 2 -captivating%5:00:00:attractive:01 1 1 -captive%1:18:00:: 2 1 -captive%1:18:01:: 1 1 -captive%5:00:00:unfree:00 1 1 -captivity%1:26:01:: 2 1 -captivity%1:26:02:: 1 2 -captor%1:18:00:: 1 1 -capture%1:04:00:: 1 2 -capture%1:22:01:: 2 1 -capture%2:35:00:: 6 1 -capture%2:35:01:: 3 4 -capture%2:36:00:: 1 5 -capture%2:37:00:: 2 4 -capture%2:40:00:: 5 1 -capture%2:40:01:: 4 1 -car%1:06:00:: 1 71 -car%1:06:01:: 2 2 -car_door%1:06:00:: 1 1 -carabao%1:05:00:: 1 1 -caravan%1:14:00:: 1 1 -carbine%1:06:00:: 1 2 -carbon%1:27:00:: 1 6 -carbon_dioxide%1:27:00:: 1 1 -carbon_tetrachloride%1:27:00:: 1 19 -carbon_tetrahalide%1:27:00:: 1 1 -carbonate%1:27:00:: 1 1 -carboxymethyl_cellulose%1:27:00:: 1 1 -carcass%1:05:00:: 1 2 -card%1:06:00:: 1 5 -card%1:10:00:: 3 1 -card%1:10:01:: 2 2 -card-playing%5:00:00:indulgent:00 1 1 -card_table%1:06:01:: 1 1 -cardboard%1:27:00:: 1 1 -cardinal%1:18:00:: 1 2 -cardinal%5:00:00:important:00 1 3 -cardiomegaly%1:26:00:: 1 1 -cardiovascular%3:01:00:: 1 1 -cardroom%1:06:00:: 1 1 -cards%1:04:00:: 1 1 -care%1:04:00:: 6 1 -care%1:04:01:: 1 9 -care%1:04:02:: 5 1 -care%1:09:00:: 2 4 -care%1:12:00:: 4 1 -care%1:12:01:: 3 1 -care%2:37:00:: 3 7 -care%2:37:02:: 1 64 -care%2:37:12:: 5 1 -care%2:41:11:: 4 4 -care%2:41:13:: 2 9 -care_a_hang%2:37:00:: 1 1 -care_for%2:37:01:: 1 4 -careen%2:38:01:: 1 1 -career%1:04:00:: 1 22 -career%1:04:01:: 2 8 -career%2:38:00:: 1 3 -careerism%1:04:00:: 1 1 -carefree%5:00:00:untroubled:00 1 4 -careful%3:00:00:: 1 19 -careful%5:00:00:mindful:00 2 2 -careful%5:00:00:unhurried:00 3 1 -carefully%4:02:00:: 1 39 -carefully%4:02:02:: 2 6 -careless%3:00:00:: 1 3 -careless%5:00:00:artless:00 2 1 -carelessly%4:02:02:: 1 1 -carelessness%1:04:00:: 2 1 -carelessness%1:07:00:: 1 1 -caress%1:04:00:: 1 2 -caress%2:35:00:: 1 5 -caressing%5:00:00:loving:00 1 1 -caressingly%4:02:00:: 1 1 -caretaker%1:18:00:: 1 1 -careworn%5:00:00:tired:00 1 1 -cargo%1:06:00:: 1 3 -caribbean%1:17:00:: 1 1 -caribbean_island%1:15:00:: 1 1 -caricature%2:32:00:: 1 1 -carload%1:14:00:: 1 1 -carnal%5:00:00:physical:00 1 2 -carnival%1:04:00:: 1 1 -carpenter%1:18:00:: 1 8 -carpentry%1:04:00:: 1 3 -carpet%1:06:00:: 1 3 -carpeted%3:00:00:: 1 2 -carping%1:10:00:: 1 1 -carping%5:00:00:critical:01 1 1 -carriage%1:06:00:: 2 2 -carriage%1:06:01:: 1 2 -carrier%1:06:01:: 3 3 -carrier%1:06:03:: 2 3 -carrier%1:14:00:: 5 1 -carrier%1:18:03:: 1 3 -carrier%1:27:00:: 4 1 -carry%1:04:00:: 1 1 -carry%2:30:05:: 9 3 -carry%2:31:12:: 12 2 -carry%2:32:02:: 4 8 -carry%2:32:07:: 17 1 -carry%2:33:01:: 11 2 -carry%2:35:01:: 6 5 -carry%2:35:02:: 1 72 -carry%2:35:08:: 16 1 -carry%2:35:09:: 5 6 -carry%2:36:00:: 15 1 -carry%2:38:03:: 3 8 -carry%2:40:00:: 14 1 -carry%2:41:00:: 8 4 -carry%2:41:01:: 13 1 -carry%2:42:01:: 2 36 -carry%2:42:02:: 10 2 -carry%2:42:03:: 7 4 -carry-over%1:09:00:: 1 1 -carry_away%2:35:00:: 1 6 -carry_forward%2:38:00:: 1 1 -carry_on%2:32:00:: 3 1 -carry_on%2:41:00:: 1 9 -carry_on%2:42:00:: 2 1 -carry_out%2:30:00:: 2 16 -carry_out%2:36:00:: 1 21 -carry_out%2:41:02:: 4 1 -carry_out%2:41:15:: 3 6 -carry_over%2:30:00:: 1 4 -carry_over%2:38:01:: 2 2 -carry_through%2:36:00:: 1 4 -carrying_into_action%1:04:00:: 1 1 -cart%1:06:00:: 1 5 -cart%1:06:01:: 2 1 -cart%2:35:00:: 1 1 -cart_off%2:35:00:: 1 1 -cartesian%3:01:00:: 1 1 -cartilage%1:08:00:: 1 1 -carton%1:23:00:: 1 1 -cartoon%1:10:00:: 1 2 -cartoonist%1:18:00:: 1 3 -cartridge%1:06:00:: 1 7 -cartridge_belt%1:06:00:: 1 1 -cartwheel%1:04:00:: 2 1 -cartwheel%1:06:00:: 1 1 -carve%2:35:01:: 1 9 -carve%2:35:02:: 2 3 -carved%3:00:00:: 1 2 -carven%3:00:00:: 1 2 -carving%1:06:00:: 1 2 -cascade%2:38:00:: 1 1 -cascade_down%2:38:00:: 1 1 -case%1:04:00:: 3 19 -case%1:06:00:: 5 7 -case%1:09:00:: 4 11 -case%1:10:00:: 11 1 -case%1:10:01:: 9 3 -case%1:10:02:: 8 3 -case%1:11:00:: 1 72 -case%1:18:02:: 7 3 -case%1:18:03:: 6 5 -case%1:23:00:: 10 2 -case%1:26:00:: 2 39 -case%2:39:00:: 1 1 -case_history%1:10:00:: 1 1 -case_in_point%1:09:00:: 1 2 -case_load%1:04:00:: 1 1 -casebook%5:00:00:standard:01 1 1 -cash%1:21:00:: 1 9 -cash%2:40:00:: 1 2 -cash_basis%1:21:00:: 1 1 -cash_in_on%2:40:00:: 1 1 -cash_register%1:06:00:: 1 1 -cashmere%1:06:00:: 1 1 -casino%1:06:00:: 1 1 -cassite%1:10:00:: 1 1 -cassocked%5:00:00:clothed:00 1 1 -cast%1:06:03:: 2 1 -cast%1:14:00:: 1 10 -cast%2:35:00:: 4 1 -cast%2:36:01:: 3 2 -cast%2:36:02:: 1 15 -cast%2:40:13:: 2 3 -cast%5:00:00:formed:00 1 1 -cast_around%2:31:00:: 1 1 -cast_aside%2:40:00:: 1 2 -cast_down%2:37:00:: 1 1 -cast_iron%1:27:00:: 1 1 -cast_off%2:35:00:: 1 1 -castanets%1:06:00:: 1 1 -castigate%2:32:00:: 1 1 -castigation%1:10:00:: 1 1 -castle%1:06:00:: 2 1 -castle%1:06:02:: 1 3 -castroism%1:14:00:: 1 2 -casual%5:00:00:careless:00 5 1 -casual%5:00:00:unconcerned:00 1 3 -casual%5:00:01:informal:01 3 2 -casual%5:00:01:unplanned:00 4 1 -casual%5:00:02:unplanned:00 2 2 -casually%4:02:00:: 2 1 -casually%4:02:01:: 1 1 -cat%1:05:00:: 1 18 -catalog%1:10:00:: 1 2 -catalog%1:10:01:: 2 1 -catalogue%1:10:01:: 1 4 -catalogue%2:31:00:: 1 2 -catalogue%2:36:00:: 2 1 -catapult%2:35:00:: 1 2 -catapult%2:35:01:: 2 1 -catapultian%3:01:00:: 1 1 -catastrophe%1:11:00:: 1 3 -catastrophe%1:26:00:: 2 1 -catastrophic%5:00:02:harmful:00 1 1 -catastrophically%4:02:00:: 1 2 -catatonic%3:01:00:: 1 1 -catcall%1:10:00:: 1 2 -catch%1:07:00:: 1 1 -catch%2:29:10:: 19 1 -catch%2:30:00:: 12 2 -catch%2:31:00:: 17 1 -catch%2:31:01:: 1 19 -catch%2:31:03:: 18 1 -catch%2:33:10:: 11 2 -catch%2:35:00:: 4 8 -catch%2:35:01:: 5 8 -catch%2:35:03:: 8 4 -catch%2:35:06:: 6 7 -catch%2:35:07:: 7 6 -catch%2:35:08:: 16 1 -catch%2:35:13:: 3 10 -catch%2:38:00:: 9 3 -catch%2:39:00:: 14 1 -catch%2:39:01:: 2 14 -catch%2:39:02:: 15 1 -catch%2:40:00:: 10 2 -catch%2:41:13:: 13 1 -catch_a_glimpse%2:39:00:: 1 2 -catch_a_wink%2:29:00:: 1 1 -catch_fire%2:43:00:: 1 1 -catch_it%2:41:00:: 1 1 -catch_on%2:30:00:: 2 1 -catch_on%2:31:00:: 1 3 -catch_one's_breath%2:32:00:: 1 1 -catch_up%2:38:00:: 1 2 -catch_up_with%2:33:00:: 1 9 -catch_up_with%2:41:00:: 2 2 -catcher%1:18:00:: 1 15 -catching%1:04:00:: 1 1 -catechize%2:32:00:: 1 1 -catecholamine%1:27:00:: 1 1 -categorize%2:30:00:: 2 1 -categorize%2:31:00:: 1 1 -categorized%5:00:00:classified:01 1 1 -category%1:09:02:: 2 3 -category%1:14:00:: 1 17 -cater%2:34:00:: 1 4 -caterer%1:18:00:: 1 1 -caterpillar%1:05:00:: 1 1 -catharsis%1:04:00:: 1 4 -cathedral%1:06:00:: 1 4 -cathedral%3:01:02:: 1 1 -catheter%1:06:00:: 1 2 -cathode%1:06:00:: 1 8 -catholic%1:18:00:: 1 25 -catholic%3:01:00:: 1 25 -catholic_church%1:14:00:: 1 2 -catholicism%1:09:00:: 1 5 -catkin%1:20:00:: 1 7 -cattle%1:05:00:: 1 25 -cattle_thief%1:18:00:: 1 1 -cattleman%1:18:01:: 1 2 -caucus%2:41:00:: 1 1 -caught_up%5:00:00:involved:00 1 3 -causal%5:00:00:causative:00 1 5 -causal_factor%1:09:00:: 1 1 -causally%4:02:00:: 1 1 -causative%3:00:00:: 1 1 -cause%1:03:00:: 4 4 -cause%1:04:00:: 5 2 -cause%1:04:01:: 3 8 -cause%1:10:00:: 2 9 -cause%1:11:00:: 1 18 -cause%2:32:00:: 2 45 -cause%2:36:00:: 1 110 -caution%1:07:00:: 1 3 -caution%1:09:00:: 3 2 -caution%1:10:00:: 2 2 -caution%2:32:00:: 1 6 -cautious%1:14:00:: 1 1 -cautious%3:00:00:: 1 2 -cautiously%4:02:00:: 1 4 -cavalcade%1:14:00:: 1 1 -cavalry%1:14:01:: 1 7 -cavalryman%1:18:00:: 2 1 -cavalryman%1:18:01:: 1 1 -cave%1:17:00:: 1 4 -cave_in%2:38:00:: 1 2 -caveat%1:10:01:: 1 1 -caveman%1:18:00:: 1 1 -cavern%1:17:00:: 2 1 -cavern%1:17:01:: 1 1 -cavity%1:17:00:: 1 1 -cavort%2:38:00:: 1 3 -caw%2:32:00:: 1 1 -cc%1:23:00:: 1 2 -cease%2:30:12:: 3 1 -cease%2:42:00:: 1 25 -cease%2:42:13:: 2 6 -ceaseless%5:00:00:continuous:01 1 2 -ceiling%1:06:00:: 1 7 -ceiling%1:07:00:: 2 3 -ceiling%1:10:00:: 3 2 -celebrant%1:18:01:: 1 2 -celebrate%2:41:00:: 2 6 -celebrate%2:41:01:: 1 11 -celebrate%2:41:02:: 3 2 -celebration%1:04:00:: 2 1 -celebration%1:11:00:: 1 5 -celebrity%1:18:00:: 1 1 -celerity%1:07:00:: 1 1 -celestial%3:01:00:: 2 1 -celestial%3:01:01:: 1 3 -celestial%5:00:00:heavenly:00 3 1 -celestial_body%1:17:00:: 1 1 -celiac_artery%1:08:00:: 1 1 -cell%1:03:00:: 2 44 -cell%1:06:00:: 3 1 -cell%1:06:03:: 1 71 -cell-free%5:00:00:noncellular:00 1 4 -cellar%1:06:00:: 1 9 -cellulose%1:27:00:: 1 5 -cellulose_acetate%1:27:00:: 1 1 -celtic%3:01:00:: 1 1 -cement%1:27:00:: 2 2 -cement%1:27:01:: 3 1 -cement%1:27:03:: 1 2 -cement%2:35:01:: 1 2 -cemetery%1:15:00:: 1 4 -censorship%1:04:01:: 1 1 -censure%1:10:00:: 1 1 -census%1:04:00:: 1 1 -cent%1:21:00:: 2 2 -cent%1:23:00:: 1 15 -centenary%3:01:00:: 1 1 -centennial%1:28:00:: 1 1 -center%1:06:00:: 3 6 -center%1:06:02:: 2 10 -center%1:08:00:: 7 3 -center%1:09:00:: 5 3 -center%1:09:01:: 6 3 -center%1:14:00:: 12 1 -center%1:14:01:: 8 2 -center%1:15:00:: 4 5 -center%1:15:01:: 1 56 -center%1:15:02:: 11 1 -center%1:18:00:: 10 1 -center%1:18:01:: 9 1 -center%2:31:00:: 2 5 -center%2:42:00:: 1 11 -center%5:00:00:central:01 1 2 -center_line%1:25:00:: 1 1 -center_on%2:42:00:: 1 7 -center_on%2:42:01:: 2 1 -center_punch%2:35:00:: 1 2 -centered%5:00:00:central:01 1 2 -centerfield%1:06:00:: 1 2 -centering%1:09:00:: 1 1 -centimeter%1:23:00:: 1 3 -central%3:00:01:: 2 7 -central%3:00:02:: 3 5 -central%3:01:00:: 4 4 -central%5:00:00:important:00 1 11 -central%5:00:00:inner(a):00 5 2 -central_american%3:01:00:: 1 1 -central_city%1:15:00:: 1 13 -central_heating%1:06:00:: 1 1 -central_nervous_system%1:08:00:: 1 1 -centralization%1:04:00:: 1 1 -centralize%2:30:00:: 1 2 -centralized%3:00:00:: 1 2 -centrally%4:02:00:: 1 5 -centrifugation%1:22:00:: 1 2 -centrifuge%1:06:00:: 1 2 -centrifuge%2:38:00:: 1 8 -century%1:28:00:: 1 103 -ceramic%3:01:00:: 1 1 -cerebellum%1:08:00:: 1 1 -cerebral%3:00:00:: 1 2 -cerebral%3:01:00:: 2 1 -cerebral_cortex%1:08:00:: 1 2 -cerebral_palsy%1:26:00:: 1 1 -cerebrate%2:31:00:: 1 1 -ceremonially%4:02:01:: 1 1 -ceremony%1:04:00:: 3 2 -ceremony%1:04:01:: 2 4 -ceremony%1:11:00:: 1 9 -certain%3:00:01:: 3 8 -certain%3:00:02:: 2 16 -certain%3:00:03:: 4 4 -certain%5:00:00:definite:00 1 131 -certainly%4:02:00:: 1 55 -certainty%1:07:00:: 2 1 -certainty%1:09:00:: 1 3 -certificate%1:10:00:: 1 3 -certification%1:04:00:: 1 2 -certification%1:10:00:: 2 1 -certified%3:00:00:: 1 3 -certify%2:32:00:: 1 4 -certify%2:40:02:: 2 3 -certify%2:41:02:: 3 2 -certiorari%1:10:00:: 1 1 -certitude%1:09:00:: 1 1 -cerulean_blue%1:27:00:: 1 1 -ceylon%1:15:00:: 1 2 -cha-cha%1:04:00:: 1 1 -chafe%2:39:00:: 1 2 -chaff%2:32:00:: 1 1 -chagrin%1:12:00:: 1 2 -chain%1:06:00:: 3 2 -chain%1:06:03:: 5 1 -chain%1:14:00:: 1 14 -chain%1:14:02:: 4 1 -chain%1:17:00:: 2 3 -chain_reaction%1:22:01:: 1 2 -chain_store%1:06:00:: 1 1 -chair%1:04:00:: 2 2 -chair%1:06:00:: 1 35 -chairman%1:18:01:: 1 8 -chairman_of_the_board%1:18:00:: 1 1 -chaise%1:06:01:: 1 1 -chalk_up%2:32:00:: 2 1 -chalk_up%2:40:00:: 1 1 -challenge%1:10:00:: 2 3 -challenge%1:10:01:: 3 1 -challenge%1:26:00:: 1 5 -challenge%2:32:00:: 2 7 -challenge%2:32:01:: 1 12 -challenge%2:32:02:: 4 1 -challenge%2:32:03:: 3 1 -challenging%5:00:00:difficult:00 1 3 -chamber%1:06:00:: 1 6 -chamber%1:06:02:: 3 1 -chamber%1:08:00:: 2 1 -chamber%2:42:00:: 1 1 -chamber_music%1:10:00:: 1 3 -chamber_of_commerce%1:14:00:: 1 2 -chambered%5:00:00:divided:00 1 1 -chambermaid%1:18:00:: 1 2 -champ%1:18:00:: 1 1 -champagne%1:13:00:: 1 6 -champion%1:18:00:: 2 1 -champion%1:18:01:: 1 14 -champion%2:33:00:: 1 1 -championship%1:26:00:: 1 2 -chance%1:04:00:: 3 4 -chance%1:07:00:: 4 2 -chance%1:19:00:: 2 8 -chance%1:26:00:: 1 40 -chance%2:41:00:: 2 1 -chance%2:41:01:: 1 2 -chance%5:00:00:unplanned:00 1 5 -chancel%1:06:00:: 1 1 -chandelier%1:06:00:: 1 3 -chandelle%2:38:00:: 1 1 -change%1:04:00:: 3 17 -change%1:06:00:: 7 1 -change%1:06:01:: 6 1 -change%1:11:00:: 1 46 -change%1:19:00:: 4 13 -change%1:21:02:: 5 2 -change%1:24:00:: 2 45 -change%2:30:00:: 2 54 -change%2:30:01:: 1 57 -change%2:30:02:: 3 13 -change%2:30:03:: 5 6 -change%2:30:04:: 6 5 -change%2:30:05:: 4 7 -change%2:38:00:: 8 3 -change%2:40:00:: 7 3 -change_over%2:30:01:: 1 1 -changed%3:00:00:: 1 2 -changed%5:00:00:altered:00 2 2 -changing%5:00:00:dynamic:00 1 13 -channel%1:06:00:: 2 1 -channel%1:10:00:: 1 4 -channel%2:38:01:: 1 1 -chant%2:32:00:: 1 6 -chant%2:32:01:: 2 2 -chanted%5:00:00:musical:01 1 1 -chantlike%5:00:00:rhythmical:00 1 1 -chaos%1:26:00:: 1 12 -chaotic%5:00:00:disorganized:00 1 2 -chaotic%5:00:00:wild:02 2 1 -chap%1:18:00:: 1 1 -chapel%1:06:00:: 1 8 -chapter%1:10:00:: 1 38 -chapter%1:14:00:: 3 2 -chapter%1:28:00:: 2 2 -character%1:07:01:: 3 11 -character%1:09:00:: 2 12 -character%1:09:01:: 4 9 -character%1:10:01:: 7 1 -character%1:18:00:: 5 4 -character%1:18:02:: 1 16 -character%1:26:00:: 6 1 -characteristic%1:07:00:: 2 6 -characteristic%1:09:00:: 1 18 -characteristic%3:00:00:: 1 22 -characteristically%4:02:00:: 1 3 -characterization%1:10:00:: 1 4 -characterize%2:32:00:: 1 9 -characterize%2:42:01:: 2 8 -charcoal%1:06:00:: 2 2 -charcoal%1:27:00:: 1 4 -charcoal%2:36:00:: 1 1 -charcoal_gray%1:07:00:: 1 1 -charge%1:04:00:: 5 2 -charge%1:04:01:: 1 16 -charge%1:04:03:: 6 2 -charge%1:10:00:: 2 13 -charge%1:18:00:: 7 1 -charge%1:19:00:: 4 3 -charge%1:21:02:: 3 4 -charge%2:32:00:: 6 3 -charge%2:32:02:: 2 10 -charge%2:32:03:: 7 3 -charge%2:33:00:: 1 16 -charge%2:35:00:: 8 2 -charge%2:38:00:: 4 6 -charge%2:40:02:: 9 1 -charge%2:40:03:: 3 7 -charge%2:41:00:: 5 4 -charged%3:00:00:: 1 7 -charged%5:00:00:emotional:00 2 1 -charger%1:05:00:: 1 3 -chariot%1:06:00:: 1 1 -charisma%1:07:00:: 1 1 -charitable%3:00:00:: 2 1 -charitable%3:01:00:: 1 2 -charity%1:04:00:: 3 1 -charity%1:07:00:: 2 1 -charity%1:14:00:: 1 2 -charlatan%1:18:00:: 1 1 -charleston%1:15:01:: 1 1 -charm%1:06:00:: 3 1 -charm%1:07:00:: 1 6 -charm%1:10:00:: 2 1 -charm%2:37:00:: 1 2 -charming%5:00:00:pleasing:00 1 8 -charnel%1:06:00:: 1 1 -chart%1:06:00:: 2 2 -chart%1:10:00:: 1 7 -chart%2:31:00:: 2 1 -chart%2:31:13:: 1 5 -charter%1:10:00:: 1 2 -charter%2:41:01:: 1 1 -chase%1:04:00:: 1 5 -chase%2:38:00:: 1 10 -chastisement%1:04:00:: 1 1 -chastity%1:04:00:: 1 1 -chat%2:32:00:: 1 2 -chatter%1:10:00:: 1 2 -chatter%2:32:00:: 4 1 -chatter%2:32:01:: 3 1 -chatter%2:35:00:: 2 1 -chatter%2:39:00:: 1 1 -chattering%1:11:01:: 1 1 -chattering%3:44:00:: 1 2 -chaulmoogra_oil%1:27:00:: 1 1 -cheap%3:00:00:: 1 9 -cheap%5:00:00:inferior:02 3 1 -cheap%5:00:00:tasteless:02 2 1 -cheap_money%1:21:00:: 1 1 -cheat%2:33:00:: 2 2 -cheat%2:41:00:: 1 2 -cheat%2:41:01:: 3 1 -check%1:04:03:: 6 1 -check%1:04:05:: 7 1 -check%1:09:00:: 2 4 -check%1:09:01:: 5 1 -check%1:10:00:: 3 2 -check%1:21:00:: 1 18 -check%1:26:00:: 4 1 -check%2:30:02:: 7 1 -check%2:31:00:: 1 27 -check%2:31:01:: 6 1 -check%2:31:02:: 3 6 -check%2:38:15:: 5 1 -check%2:41:04:: 2 7 -check%2:41:08:: 4 5 -check_in%2:32:00:: 1 3 -check_into%2:31:00:: 1 1 -check_mark%1:10:00:: 1 1 -check_out%2:31:00:: 1 6 -check_out%2:32:00:: 2 1 -checkbook%1:21:00:: 1 5 -checklist%1:10:00:: 1 5 -checkout%1:04:00:: 1 1 -checkup%1:04:00:: 1 1 -cheek%1:08:00:: 1 22 -cheek_by_jowl%4:02:00:: 1 1 -cheekbone%1:08:00:: 1 1 -cheer%1:10:00:: 1 14 -cheer%2:32:02:: 2 1 -cheer%2:37:02:: 1 1 -cheerful%3:00:00:: 1 4 -cheerfully%4:02:00:: 1 2 -cheerfulness%1:07:00:: 1 1 -cheering%1:10:00:: 1 4 -cheery%5:00:00:cheerful:00 1 5 -cheese%1:13:00:: 1 2 -cheesecloth%1:06:00:: 1 1 -chela%1:18:00:: 1 1 -chemical%1:27:00:: 1 6 -chemical%3:01:00:: 1 11 -chemical%3:01:01:: 2 3 -chemical_formula%1:10:00:: 1 1 -chemical_reaction%1:22:00:: 1 1 -chemically%4:02:01:: 1 2 -chemist%1:18:00:: 1 4 -chemist%1:18:01:: 2 1 -chemistry%1:09:00:: 1 5 -chemistry_laboratory%1:06:00:: 1 1 -cherish%2:37:00:: 1 13 -cherished%5:00:00:loved:00 1 2 -cherokee%1:10:00:: 1 1 -cherry_bomb%1:06:00:: 1 1 -chess_set%1:14:00:: 1 1 -chest%1:06:00:: 2 1 -chest%1:08:00:: 1 34 -chestnut%5:00:00:chromatic:00 1 1 -chevaux-de-frise%1:06:00:: 1 1 -chew%2:34:00:: 1 10 -chew_over%2:31:00:: 1 1 -chewing_out%1:10:00:: 1 1 -cheyenne%1:10:00:: 2 1 -cheyenne%1:15:00:: 1 2 -chic%5:00:00:stylish:00 1 1 -chicago%1:15:00:: 1 25 -chick%1:05:00:: 1 2 -chicken%1:05:01:: 2 10 -chicken%1:13:00:: 1 16 -chide%2:32:00:: 1 3 -chief%1:18:00:: 1 5 -chief%1:18:01:: 2 1 -chief%5:00:01:important:00 2 4 -chief%5:00:02:important:00 1 16 -chief_justice%1:18:00:: 1 1 -chiefly%4:02:00:: 1 11 -chieftain%1:18:01:: 1 3 -chignon%1:08:00:: 1 1 -child%1:18:00:: 1 148 -child%1:18:01:: 2 65 -child%1:18:06:: 3 1 -child_care%1:04:00:: 1 1 -child_welfare_service%1:14:00:: 1 1 -childhood%1:26:00:: 2 2 -childhood%1:28:00:: 1 9 -childish%5:00:00:immature:02 1 8 -childishly%4:02:00:: 1 2 -childishness%1:07:00:: 1 1 -childlike%5:00:00:naive:00 2 1 -childlike%5:00:00:young:00 1 2 -chill%1:07:00:: 1 3 -chill%1:12:02:: 2 2 -chill%1:26:01:: 3 1 -chill%2:30:01:: 2 1 -chill%2:37:00:: 1 2 -chilling%5:00:00:alarming:00 1 2 -chilly%5:00:00:cool:01 1 1 -chilly%5:00:00:unemotional:00 2 1 -chimney%1:06:00:: 1 9 -chimney_corner%1:06:00:: 1 1 -chin%1:08:00:: 1 14 -chin%2:38:00:: 1 2 -chin-up%1:04:00:: 1 2 -chin_music%1:10:00:: 1 1 -chin_up%2:38:00:: 1 1 -china%1:06:00:: 2 4 -china%1:15:00:: 1 5 -chinese%1:10:00:: 1 1 -chinese%3:01:00:: 1 5 -chinked%5:00:00:caulked:00 1 1 -chinless%5:00:00:opisthognathous:00 1 2 -chinning_bar%1:06:00:: 1 1 -chip%1:06:02:: 2 1 -chip%1:17:00:: 1 1 -chip%2:35:01:: 1 1 -chip%2:35:03:: 2 1 -chipper%5:00:00:cheerful:00 1 1 -chiropractor%1:18:00:: 1 2 -chirp%2:32:00:: 1 1 -chisel%1:06:00:: 1 4 -chiseled%5:00:00:distinct:00 1 2 -chivalrous%5:00:00:courteous:00 1 1 -chivalry%1:07:00:: 1 1 -chivy%2:37:00:: 1 1 -chloride%1:27:00:: 1 2 -chlorine%1:27:00:: 1 32 -chlorothiazide%1:06:00:: 1 2 -chlorpromazine%1:06:00:: 1 1 -chock%1:06:00:: 1 1 -chockful%5:00:00:full:00 1 1 -chocolate%1:13:02:: 1 1 -choice%1:04:00:: 2 8 -choice%1:09:00:: 1 11 -choice%1:09:02:: 3 3 -choice%5:00:00:superior:02 1 3 -choir%1:14:00:: 1 2 -choirboy%1:18:00:: 1 1 -choke%2:29:00:: 1 8 -choke%2:29:03:: 5 1 -choke%2:29:04:: 4 1 -choke%2:35:00:: 2 2 -choke%2:35:02:: 3 1 -choke_off%2:30:00:: 1 2 -choke_off%2:35:00:: 2 1 -choked%5:00:00:obstructed:00 1 2 -choking%5:00:00:breathless:00 1 1 -cholelithiasis%1:26:00:: 1 1 -cholesterol%1:27:00:: 1 4 -chomp%1:04:00:: 1 1 -choose%2:31:00:: 1 80 -choose%2:31:01:: 3 11 -choose%2:31:02:: 2 19 -choose_up%2:41:00:: 1 1 -choosy%5:00:00:fastidious:00 1 1 -chop%2:35:01:: 1 2 -chop_down%2:35:00:: 1 1 -chopin%1:10:00:: 1 1 -chopper%1:04:00:: 1 1 -chopping_block%1:06:00:: 1 1 -chord%1:10:00:: 2 2 -chord%1:25:00:: 1 2 -chore%1:04:00:: 1 7 -choreograph%2:36:00:: 1 5 -choreographic%3:01:00:: 1 1 -choreography%1:04:00:: 1 2 -chorine%1:18:00:: 1 2 -chortle%2:29:00:: 1 4 -chorus%1:10:00:: 3 1 -chorus%1:11:00:: 1 3 -chorus%1:14:00:: 2 1 -chorus%2:32:00:: 1 1 -chosen%1:18:00:: 1 3 -chosen%5:00:00:selected:00 1 7 -christ%1:18:00:: 1 21 -christendom%1:14:00:: 1 1 -christening%1:04:00:: 1 1 -christian%1:18:00:: 1 10 -christian%3:00:00:: 2 1 -christian%3:01:00:: 1 36 -christian_church%1:14:00:: 1 2 -christianity%1:09:00:: 1 10 -christmas%1:28:00:: 2 2 -christmas%1:28:01:: 1 3 -christmas_card%1:10:00:: 1 4 -christmas_eve%1:28:00:: 1 1 -chromatogram%1:06:00:: 1 1 -chromatographic%3:01:00:: 1 3 -chromatography%1:22:00:: 1 5 -chrome%1:27:00:: 1 3 -chromic_acid%1:27:00:: 1 1 -chromium%1:27:00:: 1 4 -chronic%3:00:00:: 1 9 -chronicle%2:32:00:: 1 1 -chronologically%4:02:00:: 1 1 -chrysanthemum%1:20:01:: 1 1 -chuck%1:13:02:: 1 1 -chuck%2:35:00:: 1 2 -chuck_wagon%1:06:00:: 1 1 -chuckle%1:10:00:: 1 1 -chuckle%2:29:00:: 1 8 -chuff%2:29:00:: 1 1 -chug%2:39:00:: 1 1 -chump%1:18:00:: 1 1 -chunk%1:14:00:: 1 3 -chunky%5:00:00:unshapely:00 1 1 -church%1:04:00:: 3 10 -church%1:06:00:: 2 59 -church%1:14:00:: 1 60 -church-state%1:14:00:: 1 1 -church_bell%1:06:00:: 1 3 -church_father%1:18:00:: 1 3 -church_member%1:18:00:: 1 1 -church_of_england%1:14:00:: 1 4 -church_of_rome%1:14:00:: 1 1 -church_roll%1:10:00:: 1 1 -church_service%1:04:00:: 1 1 -church_tower%1:06:00:: 1 1 -churchgoer%1:18:00:: 1 1 -churchgoing%5:00:00:religious:00 1 2 -churchillian%3:01:00:: 1 1 -churchlike%5:00:00:religious:00 1 1 -churchman%1:18:00:: 1 1 -churchyard%1:15:00:: 1 5 -churn%2:35:00:: 1 1 -churning%5:00:00:agitated:02 2 1 -churning%5:00:02:agitated:02 1 1 -chute%1:06:00:: 2 1 -chute%1:06:01:: 1 1 -cicada%1:05:00:: 1 1 -cigar%1:06:00:: 1 7 -cigar_box%1:06:00:: 1 1 -cigar_butt%1:06:00:: 1 1 -cigarette%1:06:00:: 1 16 -ciliate%1:05:00:: 1 1 -ciliated_protozoan%1:05:00:: 1 3 -cilium%1:05:00:: 1 1 -cinch%1:04:01:: 1 2 -cincinnati%1:15:00:: 1 2 -cinema%1:10:00:: 1 1 -cinematic%3:01:00:: 1 3 -cipher%1:10:01:: 1 1 -cipher%2:32:00:: 1 1 -circle%1:04:00:: 4 2 -circle%1:14:00:: 2 10 -circle%1:25:00:: 1 15 -circle%1:25:01:: 3 4 -circle%2:38:00:: 2 4 -circle%2:38:01:: 1 6 -circle%2:42:00:: 3 1 -circuit%1:04:00:: 2 3 -circuit%1:06:00:: 1 4 -circuitry%1:06:00:: 1 1 -circular%3:00:00:: 1 6 -circulate%2:32:00:: 2 2 -circulate%2:32:01:: 1 2 -circulate%2:38:01:: 4 1 -circulate%2:38:03:: 3 1 -circulating%5:00:00:moving:02 1 2 -circulation%1:10:00:: 1 4 -circulation%1:19:00:: 2 1 -circulatory_system%1:08:00:: 1 1 -circumference%1:07:00:: 1 1 -circumscribe%2:30:00:: 2 1 -circumscribe%2:35:00:: 1 1 -circumspect%5:00:00:prudent:00 1 1 -circumstance%1:09:00:: 3 3 -circumstance%1:26:01:: 1 39 -circumstance%1:26:02:: 2 8 -circumstances%1:26:02:: 1 2 -circus%1:04:00:: 2 2 -circus%1:04:01:: 3 1 -circus%1:14:00:: 1 2 -citation%1:10:00:: 1 2 -cite%2:32:00:: 1 13 -cite%2:32:01:: 2 4 -cite%2:32:02:: 4 2 -cite%2:36:00:: 3 3 -citizen%1:18:00:: 1 29 -citizens_committee%1:14:00:: 1 2 -citrate%2:30:00:: 1 1 -citron%1:13:00:: 1 1 -citrus%1:13:00:: 1 1 -city%1:14:00:: 3 1 -city%1:15:00:: 1 103 -city%1:15:01:: 2 13 -city_council%1:14:00:: 1 1 -city_of_god%1:15:00:: 1 2 -city_university%1:06:00:: 1 1 -civic%3:01:00:: 1 4 -civic_center%1:06:00:: 1 1 -civil%3:00:00:: 2 1 -civil%5:00:00:civilian:00 1 7 -civil_authority%1:18:00:: 1 1 -civil_defense%1:04:00:: 1 3 -civil_law%1:14:00:: 1 3 -civil_rights%1:07:00:: 1 1 -civil_service%1:14:00:: 1 2 -civil_war%1:04:00:: 1 11 -civilian%1:18:00:: 1 2 -civilian%3:00:00:: 1 8 -civilization%1:14:00:: 1 17 -civilized%3:00:00:: 1 3 -clad%3:00:00:: 1 4 -claim%1:04:00:: 3 6 -claim%1:07:01:: 5 2 -claim%1:07:02:: 4 3 -claim%1:10:00:: 1 26 -claim%1:10:02:: 2 11 -claim%2:32:00:: 1 34 -claim%2:32:01:: 5 1 -claim%2:32:02:: 3 9 -claim%2:32:03:: 4 4 -claim%2:40:00:: 2 14 -claimant%1:18:00:: 1 8 -clairvoyance%1:10:00:: 1 1 -clam%1:05:00:: 1 2 -clamber%2:38:00:: 1 7 -clammy%5:00:00:wet:01 1 2 -clamor%1:11:00:: 1 5 -clamor%2:32:00:: 2 3 -clamor%2:32:03:: 1 5 -clamoring%1:10:00:: 1 1 -clamorous%5:00:00:noisy:00 1 1 -clamp%2:32:00:: 2 1 -clamp%2:35:00:: 1 7 -clamshell%1:05:00:: 1 2 -clan%1:14:00:: 1 1 -clandestine%5:00:00:covert:00 1 1 -clang%1:11:00:: 1 1 -clang%2:39:00:: 1 3 -clanging%5:00:00:noisy:00 1 1 -clangor%1:11:00:: 1 2 -clangoring%1:11:00:: 1 1 -clank%2:39:00:: 1 1 -clanking%5:00:00:noisy:00 1 2 -clannish%5:00:00:joint:00 1 1 -clannishness%1:07:00:: 1 1 -clap%1:11:00:: 1 2 -clap%2:29:00:: 4 1 -clap%2:32:00:: 3 1 -clap%2:35:03:: 1 2 -clap%2:38:04:: 2 1 -clapping%1:10:00:: 1 2 -claret%1:07:00:: 1 1 -clarify%2:30:00:: 2 5 -clarify%2:31:00:: 1 7 -clarify%2:32:00:: 3 3 -clarity%1:07:00:: 2 1 -clarity%1:07:01:: 1 17 -clash%1:11:00:: 1 2 -clash%1:26:00:: 2 1 -clash%2:35:00:: 1 1 -clasp%2:35:00:: 1 4 -class%1:04:00:: 4 4 -class%1:14:00:: 1 15 -class%1:14:01:: 3 6 -class%1:14:03:: 2 13 -class%1:14:05:: 5 2 -class%2:31:00:: 1 2 -classic%1:06:00:: 1 2 -classic%1:18:00:: 2 1 -classic%5:00:00:classical:00 2 4 -classic%5:00:00:standard:01 1 6 -classical%3:00:00:: 1 8 -classical%5:00:00:standard:01 2 2 -classically%4:02:00:: 1 1 -classicist%1:18:00:: 1 1 -classics%1:09:00:: 1 1 -classification%1:04:00:: 1 8 -classification%1:14:00:: 2 7 -classificatory%3:01:00:: 1 1 -classified%3:00:01:: 1 2 -classifier%1:18:00:: 1 1 -classify%2:31:00:: 1 14 -classless%5:00:00:democratic:00 1 1 -classmate%1:18:00:: 1 1 -classroom%1:06:00:: 1 5 -clatter%1:11:00:: 1 4 -clatter%2:39:00:: 1 6 -clattering%5:00:00:noisy:00 1 1 -clause%1:10:00:: 1 2 -clause%1:10:01:: 2 1 -claustrophobia%1:26:00:: 1 1 -claw%1:05:00:: 1 2 -claw%1:05:02:: 3 1 -claw%1:06:00:: 2 1 -claw%2:35:01:: 2 1 -claw%2:38:00:: 1 1 -clay%1:27:00:: 1 11 -clean%1:04:00:: 1 1 -clean%2:29:00:: 4 1 -clean%2:30:01:: 2 3 -clean%2:35:00:: 1 16 -clean%2:35:01:: 3 2 -clean%3:00:01:: 1 17 -clean%4:02:04:: 1 1 -clean%5:00:00:perfect:00 5 1 -clean%5:00:00:pure:02 4 1 -clean%5:00:00:unqualified:02 2 2 -clean%5:00:01:pure:02 3 1 -clean-shaven%5:00:00:shaven:00 1 1 -clean_out%2:30:00:: 1 5 -clean_slate%1:26:00:: 1 1 -clean_up%2:30:03:: 1 8 -cleaned%5:00:00:clean:01 1 1 -cleaner%1:06:00:: 1 4 -cleaning%1:04:00:: 1 13 -cleanly%4:02:00:: 1 2 -cleanse%2:29:00:: 1 1 -cleansing%1:04:00:: 1 1 -cleansing%5:00:00:purifying:00 1 1 -clear%2:30:01:: 5 2 -clear%2:30:02:: 1 16 -clear%2:30:09:: 2 5 -clear%2:31:00:: 10 1 -clear%2:32:01:: 4 2 -clear%2:38:00:: 9 1 -clear%2:39:05:: 8 1 -clear%2:40:07:: 7 1 -clear%2:41:01:: 6 1 -clear%2:43:00:: 3 2 -clear%3:00:00:: 1 55 -clear%3:00:02:: 4 4 -clear%4:02:03:: 1 3 -clear%5:00:00:clearheaded:00 2 8 -clear%5:00:00:distinct:00 9 1 -clear%5:00:00:unencumbered:00 8 1 -clear%5:00:00:unobstructed:00 3 6 -clear%5:00:00:untroubled:00 6 1 -clear%5:00:01:pure:02 7 1 -clear%5:00:02:free:00 5 3 -clear-cut%5:00:00:clear:00 1 2 -clear_out%2:38:00:: 1 2 -clear_up%2:30:00:: 3 1 -clear_up%2:30:02:: 2 1 -clear_up%2:32:00:: 1 3 -clearance%1:07:00:: 1 1 -cleared%3:00:00:: 1 3 -clearheaded%3:00:00:: 1 1 -clearing%1:15:00:: 1 3 -clearing_house%1:14:00:: 1 1 -clearly%4:02:00:: 1 32 -clearly%4:02:01:: 2 10 -clearly%4:02:02:: 3 6 -clearly%4:02:03:: 4 1 -clearness%1:07:01:: 1 3 -cleat%1:06:02:: 1 1 -cleave%2:35:00:: 1 1 -cleft%1:25:00:: 1 2 -clench%2:35:01:: 1 1 -clench%2:35:02:: 2 1 -clergy%1:14:00:: 1 2 -clergyman%1:18:00:: 1 13 -cleric%1:18:00:: 1 1 -clerical%3:01:00:: 2 1 -clerical%3:01:01:: 1 3 -clerk%1:18:00:: 1 7 -clerk%1:18:01:: 2 2 -clerking%1:04:00:: 1 1 -cleveland%1:15:00:: 1 5 -clever%5:00:00:artful:00 1 3 -clever%5:00:00:intelligent:00 3 1 -clever%5:00:00:smart:00 2 2 -cleverly%4:02:00:: 1 1 -cleverness%1:09:01:: 1 1 -cliche%1:10:00:: 1 5 -click%1:11:00:: 1 2 -click%2:38:00:: 1 5 -click%2:39:00:: 2 1 -click_off%2:30:00:: 1 1 -click_open%2:35:00:: 1 1 -clickety-click%1:11:00:: 1 1 -client%1:18:00:: 1 9 -client%1:18:01:: 2 1 -clientele%1:14:00:: 1 1 -cliff%1:17:00:: 1 3 -climate%1:26:00:: 1 5 -climate%1:26:01:: 2 3 -climax%1:04:00:: 3 1 -climax%1:10:00:: 2 2 -climax%1:11:00:: 1 2 -climax%2:30:00:: 1 2 -climb%2:30:00:: 3 2 -climb%2:38:00:: 1 36 -climb%2:38:01:: 2 2 -climb_down%2:38:00:: 1 3 -climb_on%2:38:00:: 1 1 -climb_up%2:38:00:: 1 3 -clinch%1:04:00:: 1 1 -clinch%2:35:01:: 1 3 -clinched%5:00:00:tight:01 1 3 -cling%2:35:00:: 1 9 -cling%2:35:02:: 3 2 -cling%2:37:00:: 2 5 -cling_to%2:35:00:: 1 10 -clinical%3:01:00:: 1 14 -clinical%5:00:00:objective:00 2 1 -clinically%4:02:00:: 1 1 -clink%2:39:01:: 1 1 -clip%1:06:00:: 1 2 -clip%1:06:01:: 3 1 -clip%1:11:00:: 2 1 -clip%2:35:03:: 1 2 -clique%1:14:00:: 1 1 -cloak%1:06:01:: 1 1 -clobber%2:35:01:: 1 2 -clock%1:06:00:: 1 15 -clock%2:30:00:: 1 1 -clocking%1:28:00:: 1 1 -clockwise%3:00:00:: 1 1 -clod%1:14:00:: 1 2 -clod%1:18:00:: 2 1 -clodhopper%1:06:00:: 1 1 -clog%2:35:00:: 1 4 -clogged%5:00:00:thick:02 1 1 -clogging%5:00:00:preventive:00 1 1 -clomp%2:38:00:: 1 1 -clonic%3:01:00:: 1 1 -close%1:11:00:: 2 1 -close%1:28:00:: 1 8 -close%2:32:05:: 6 1 -close%2:35:00:: 1 32 -close%2:35:06:: 2 20 -close%2:41:00:: 3 18 -close%2:41:01:: 4 13 -close%2:42:00:: 5 2 -close%3:00:01:: 1 38 -close%3:00:02:: 2 23 -close%3:00:05:: 3 6 -close%4:02:01:: 1 17 -close%4:02:02:: 2 4 -close%5:00:00:accurate:00 5 3 -close%5:00:00:careful:00 4 4 -close%5:00:00:confined:00 7 1 -close%5:00:00:equal:00 6 2 -close-packed%5:00:00:compact:00 1 1 -close_at_hand%5:00:00:close:01 1 1 -close_in%2:38:00:: 1 7 -close_off%2:42:00:: 1 1 -close_to%4:02:00:: 1 3 -close_up%4:02:00:: 1 2 -closed%3:00:01:: 1 8 -closed%3:00:02:: 2 6 -closed%3:00:03:: 4 3 -closed%3:00:04:: 3 6 -closed%5:00:00:union:00 5 1 -closed_circuit%1:06:00:: 1 1 -closed_interval%1:09:00:: 1 3 -closely%4:02:00:: 1 19 -closely%4:02:01:: 3 2 -closely%4:02:02:: 2 2 -closely_knit%5:00:00:close:02 1 1 -closer%4:02:00:: 1 3 -closer%5:00:00:close:01 1 1 -closet%1:06:01:: 2 1 -closet%1:06:02:: 3 1 -closet%1:06:03:: 1 4 -closeup%1:06:00:: 1 3 -closing%1:04:01:: 1 2 -closing%3:00:00:: 1 3 -closing_off%1:04:00:: 1 1 -closure%1:04:02:: 1 1 -clot%1:08:00:: 1 1 -clot%2:30:01:: 1 1 -cloth%1:06:00:: 1 16 -clothe%2:29:00:: 1 4 -clothe%2:41:00:: 2 2 -clothed%3:00:00:: 1 1 -clothes%1:06:00:: 1 44 -clothesbrush%1:06:00:: 1 1 -clotheshorse%1:06:00:: 1 2 -clothesline%1:06:00:: 1 1 -clothing%1:06:00:: 1 9 -clotted%5:00:00:thick:02 1 1 -cloud%1:17:00:: 2 16 -cloud%1:19:01:: 1 24 -cloud%1:26:01:: 3 1 -cloud%2:38:00:: 3 1 -cloud%2:39:00:: 2 1 -cloud%2:43:00:: 1 1 -cloud_over%2:43:00:: 1 1 -cloudburst%1:19:00:: 1 1 -clouded%5:00:00:cloudy:00 2 1 -clouded%5:00:00:troubled:00 1 2 -cloudy%5:00:00:indistinct:00 1 1 -clover%1:20:00:: 1 1 -clown%1:18:00:: 2 1 -clown%1:18:01:: 1 1 -clowning%1:04:00:: 1 1 -club%1:06:00:: 3 3 -club%1:06:01:: 5 1 -club%1:06:02:: 4 2 -club%1:14:00:: 2 9 -club%1:14:01:: 1 14 -clubfoot%1:26:00:: 1 1 -clubhouse%1:06:00:: 1 2 -cluck%1:11:00:: 1 2 -cluck%2:32:00:: 1 3 -clue%1:10:00:: 1 9 -clue%1:10:01:: 2 2 -clump%1:14:00:: 1 9 -clump%1:14:01:: 2 1 -clumsily%4:02:00:: 1 1 -clumsy%5:00:00:awkward:00 1 4 -clumsy%5:00:00:infelicitous:00 2 1 -cluster%1:14:00:: 1 11 -cluster%2:35:00:: 2 2 -cluster%2:38:00:: 1 4 -clutch%1:04:00:: 1 2 -clutch%1:26:00:: 2 1 -clutch%2:35:00:: 1 16 -clutch%2:35:04:: 2 1 -clutches%1:04:00:: 1 1 -cluttered%5:00:00:untidy:00 1 3 -cm%1:23:00:: 1 31 -co-opt%2:41:02:: 1 1 -co-optation%1:04:00:: 1 8 -co-worker%1:18:00:: 1 3 -coach%1:18:01:: 1 20 -coach%2:32:00:: 1 2 -coach%2:38:00:: 2 1 -coaching%1:04:00:: 1 1 -coaching_job%1:04:00:: 1 1 -coagulate%2:30:00:: 1 1 -coal%1:27:00:: 1 5 -coal-black%5:00:00:achromatic:00 1 3 -coalesce%2:30:00:: 1 2 -coalesce%2:35:00:: 2 1 -coalescence%1:04:00:: 1 1 -coalition%1:14:00:: 1 1 -coarse%3:00:00:: 1 1 -coarse%5:00:00:unrefined:01 2 1 -coarsely%4:02:00:: 1 1 -coarsened%5:00:00:inferior:02 1 1 -coast%1:17:00:: 1 20 -coast%2:38:00:: 1 1 -coastal%3:00:00:: 2 1 -coastal%3:01:00:: 1 1 -coat%1:06:00:: 1 29 -coat%1:06:01:: 2 1 -coat%2:29:00:: 2 1 -coat%2:35:00:: 1 3 -coated%3:00:00:: 1 1 -coating%1:06:00:: 1 1 -coattail%1:06:00:: 1 1 -coax%2:32:00:: 1 5 -coaxial%5:00:00:concentric:00 1 1 -coaxing%5:00:00:persuasive:00 1 2 -cobalt_blue%1:07:00:: 1 1 -cobbler%1:18:00:: 1 1 -coca_cola%1:13:00:: 1 1 -cocaine%1:06:00:: 1 1 -coccidioidomycosis%1:26:00:: 1 1 -coccidiosis%1:26:00:: 1 1 -cock%2:35:00:: 2 2 -cock%2:38:01:: 1 2 -cockatoo%1:05:00:: 1 1 -cockeyed%5:00:00:crooked:01 1 1 -cockpit%1:06:00:: 1 2 -cockroach%1:05:00:: 1 1 -cocktail_party%1:11:00:: 1 5 -cocky%5:00:00:assertive:00 1 3 -coco_palm%1:20:00:: 1 1 -coconut%1:13:00:: 2 1 -coconut%1:13:02:: 1 3 -cocoon%1:05:00:: 1 1 -coddle%2:41:00:: 1 2 -code%1:10:00:: 2 1 -code%1:10:01:: 1 9 -code%2:35:00:: 1 1 -code_of_behavior%1:09:00:: 1 3 -code_of_conduct%1:09:00:: 1 1 -codification%1:04:00:: 1 2 -codification%1:10:00:: 2 1 -codify%2:30:01:: 1 1 -coefficient%1:23:00:: 1 4 -coerce%2:41:00:: 1 2 -coexist%2:42:01:: 1 1 -coexistence%1:26:00:: 1 2 -coexistent%5:00:00:synchronous:00 1 1 -coffee%1:13:00:: 1 46 -coffee_break%1:13:00:: 1 1 -coffee_cup%1:06:00:: 1 2 -coffee_shop%1:06:00:: 1 2 -coffeehouse%1:06:00:: 1 1 -coffeepot%1:06:00:: 1 1 -coffin%1:06:00:: 1 3 -cognate%5:00:02:related:02 1 1 -cognizance%1:09:00:: 1 1 -cohere%2:35:00:: 1 1 -coherent%3:00:00:: 1 3 -coherent%5:00:00:rational:00 2 2 -cohesion%1:26:00:: 1 4 -cohesive%5:00:00:adhesive:00 1 3 -cohesiveness%1:26:00:: 1 1 -coil%1:06:00:: 1 1 -coil%2:38:00:: 1 2 -coin%1:21:02:: 1 7 -coin%2:36:01:: 1 3 -coincide%2:30:00:: 2 5 -coincide%2:42:00:: 1 9 -coincide%2:42:01:: 3 4 -coincidence%1:11:00:: 1 6 -cold%1:07:00:: 2 5 -cold%1:26:00:: 1 5 -cold%3:00:01:: 1 35 -cold%3:00:02:: 2 13 -cold%5:00:00:stale:00 3 1 -cold-blooded%5:00:00:inhumane:00 1 1 -cold-bloodedly%4:02:00:: 1 1 -cold_frame%1:06:00:: 1 4 -cold_sober%5:00:00:sober:01 1 1 -cold_spell%1:19:00:: 1 1 -cold_sweat%1:26:00:: 1 1 -cold_war%1:26:00:: 1 7 -cold_weather%1:19:00:: 1 3 -coldly%4:02:00:: 1 5 -coldness%1:07:01:: 2 1 -coldness%1:09:00:: 1 1 -coleridge%1:18:00:: 1 1 -collaborate%2:41:00:: 1 9 -collaboration%1:04:01:: 1 4 -collaborator%1:18:02:: 1 1 -collage%1:06:00:: 1 17 -collapse%1:04:01:: 3 1 -collapse%1:11:00:: 2 2 -collapse%1:26:01:: 1 3 -collapse%2:29:00:: 2 6 -collapse%2:38:00:: 1 8 -collapsible%3:00:00:: 1 1 -collar%1:06:00:: 1 5 -collar%2:35:00:: 1 1 -collate%2:31:00:: 1 1 -colleague%1:18:00:: 1 7 -colleague%1:18:01:: 2 1 -collect%2:35:00:: 3 12 -collect%2:35:01:: 4 8 -collect%2:35:02:: 6 1 -collect%2:40:00:: 1 16 -collect%2:40:01:: 2 15 -collect%2:40:03:: 5 2 -collection%1:04:00:: 4 1 -collection%1:10:00:: 2 1 -collection%1:10:01:: 3 1 -collection%1:14:00:: 1 12 -collective%1:14:00:: 1 1 -collective%5:00:00:joint:00 1 7 -collectively%4:02:00:: 1 1 -collector%1:17:00:: 3 1 -collector%1:18:00:: 2 1 -collector%1:18:01:: 1 9 -college%1:14:00:: 1 45 -college_girl%1:18:00:: 1 1 -college_level%1:26:00:: 1 1 -college_student%1:18:00:: 1 2 -collegian%1:18:00:: 1 1 -collegiate%3:01:00:: 1 1 -collide_with%2:35:00:: 1 1 -collision%1:04:00:: 2 1 -collision%1:11:01:: 1 6 -colloidal%3:01:00:: 1 2 -colloquial%5:00:01:informal:02 1 1 -collusion%1:09:00:: 1 2 -colombian%3:01:00:: 1 1 -colon%1:08:00:: 1 2 -colonel%1:18:00:: 1 33 -colonial%1:18:00:: 1 1 -colonial%3:01:00:: 1 5 -colonize%2:41:00:: 1 1 -colony%1:14:00:: 1 7 -colony%1:14:01:: 2 2 -color%1:07:00:: 1 48 -color%1:07:02:: 3 3 -color%1:07:03:: 2 4 -color%1:07:04:: 5 1 -color%1:14:00:: 4 2 -color%2:30:00:: 1 7 -color%2:32:00:: 2 2 -color%2:41:00:: 3 1 -color%3:00:00:: 1 4 -color_bearer%1:18:00:: 1 4 -color_scheme%1:14:00:: 1 1 -color_sergeant%1:18:00:: 1 3 -color_tv%1:06:00:: 1 1 -colorado%1:15:00:: 1 2 -coloratura%1:18:00:: 1 1 -colored%3:00:00:: 1 13 -colored%5:00:00:black:02 2 12 -colorful%3:00:00:: 1 6 -colorful%3:00:03:: 2 3 -colorless%3:00:01:: 1 1 -colors%1:06:00:: 1 5 -colossal%5:00:01:large:00 1 3 -colour%3:00:02:: 1 1 -colt%1:05:02:: 1 2 -colt%1:06:00:: 2 1 -columbine%1:20:00:: 1 1 -columbus%1:15:00:: 1 4 -column%1:06:00:: 7 1 -column%1:06:01:: 6 1 -column%1:06:02:: 2 10 -column%1:10:00:: 5 4 -column%1:14:00:: 1 18 -column%1:14:01:: 3 8 -column%1:25:02:: 4 5 -column_chromatography%1:22:00:: 1 1 -columned%3:00:00:: 1 1 -columnist%1:18:00:: 1 1 -columnlike%5:00:00:columned:00 1 1 -coma%1:09:00:: 1 1 -comb%1:05:01:: 2 1 -comb%1:06:00:: 1 3 -comb%2:29:00:: 3 1 -comb%2:35:00:: 2 1 -comb%2:35:01:: 1 1 -combat%1:04:00:: 1 14 -combat%1:04:01:: 2 1 -combat%2:33:00:: 1 7 -combat_mission%1:04:00:: 1 1 -combatant%5:00:00:military:01 1 1 -combinable%5:00:00:combinative:00 1 1 -combination%1:11:00:: 2 3 -combination%1:14:00:: 1 18 -combination_in_restraint_of_trade%1:14:00:: 1 1 -combine%1:06:00:: 1 1 -combine%2:30:00:: 7 1 -combine%2:30:02:: 2 12 -combine%2:35:01:: 3 5 -combine%2:35:03:: 6 1 -combine%2:40:00:: 4 4 -combine%2:41:00:: 5 2 -combine%2:42:00:: 1 14 -combined%3:00:00:: 2 1 -combined%5:00:00:joint:00 1 5 -combo%1:14:00:: 1 1 -combustion%1:22:00:: 1 2 -come%2:30:01:: 3 147 -come%2:30:02:: 7 11 -come%2:30:03:: 4 41 -come%2:30:04:: 11 6 -come%2:30:13:: 15 2 -come%2:31:14:: 19 1 -come%2:38:00:: 1 276 -come%2:38:02:: 18 1 -come%2:38:03:: 13 3 -come%2:38:04:: 2 235 -come%2:42:00:: 14 2 -come%2:42:01:: 6 22 -come%2:42:03:: 10 6 -come%2:42:04:: 5 40 -come%2:42:05:: 12 3 -come%2:42:09:: 9 7 -come%2:42:11:: 17 1 -come%2:42:12:: 16 1 -come%2:42:13:: 8 9 -come_about%2:30:00:: 1 4 -come_across%2:40:02:: 1 3 -come_after%2:42:00:: 1 2 -come_alive%2:29:00:: 1 1 -come_along%2:30:00:: 1 7 -come_along%2:30:01:: 2 2 -come_around%2:31:00:: 1 1 -come_away%2:35:00:: 1 2 -come_away%2:38:00:: 2 1 -come_back%2:30:00:: 2 3 -come_back%2:32:00:: 3 2 -come_back%2:32:01:: 5 1 -come_back%2:38:00:: 1 46 -come_back%2:38:01:: 4 1 -come_by%2:40:00:: 2 3 -come_by%2:41:00:: 1 4 -come_close%2:41:00:: 1 3 -come_close%2:42:00:: 2 2 -come_down%2:29:00:: 4 1 -come_down%2:30:00:: 2 2 -come_down%2:38:00:: 1 14 -come_down%2:43:00:: 3 1 -come_forth%2:30:00:: 1 2 -come_forward%2:38:00:: 1 1 -come_home%2:31:13:: 1 1 -come_in%2:32:00:: 4 1 -come_in%2:38:01:: 2 12 -come_in%2:38:02:: 1 44 -come_in%2:42:00:: 3 1 -come_in_for%2:42:00:: 1 2 -come_in_handy%2:42:00:: 1 1 -come_into%2:40:00:: 1 2 -come_into_being%2:30:01:: 1 3 -come_near%2:38:00:: 2 2 -come_near%2:41:00:: 1 3 -come_of_age%2:41:00:: 1 1 -come_off%2:30:00:: 2 1 -come_off%2:35:00:: 1 2 -come_on%2:30:01:: 1 9 -come_on%2:30:02:: 3 2 -come_on%2:38:00:: 2 5 -come_out%2:30:00:: 1 33 -come_out%2:30:01:: 2 6 -come_out%2:30:04:: 3 5 -come_out%2:31:00:: 6 2 -come_out%2:38:01:: 7 1 -come_out%2:38:06:: 5 2 -come_out%2:42:00:: 4 3 -come_over%2:32:00:: 1 1 -come_through%2:30:00:: 1 6 -come_through%2:38:00:: 2 1 -come_to%2:29:00:: 4 2 -come_to%2:39:00:: 1 10 -come_to%2:41:00:: 3 4 -come_to%2:42:03:: 2 4 -come_to_grips%2:41:00:: 1 4 -come_to_life%2:30:00:: 1 2 -come_to_light%2:30:00:: 1 1 -come_to_mind%2:31:00:: 1 3 -come_to_the_fore%2:38:00:: 1 1 -come_up%2:30:00:: 2 8 -come_up%2:35:00:: 8 1 -come_up%2:36:03:: 1 9 -come_up%2:38:01:: 4 3 -come_up%2:38:02:: 3 7 -come_up%2:38:03:: 6 2 -come_up%2:42:00:: 5 2 -come_up%2:42:01:: 7 1 -come_up_to%2:32:00:: 1 3 -come_upon%2:40:01:: 2 1 -come_upon%2:40:09:: 1 10 -come_with%2:42:00:: 1 6 -comeback%1:10:00:: 1 2 -comedian%1:18:00:: 1 4 -comedy%1:10:00:: 1 18 -comedy%1:10:01:: 2 2 -comer%1:18:01:: 1 1 -comet%1:17:00:: 1 1 -cometary%3:01:00:: 1 1 -comfort%1:04:00:: 3 4 -comfort%1:12:00:: 2 5 -comfort%1:26:00:: 1 5 -comfort%2:29:00:: 2 1 -comfort%2:37:01:: 1 4 -comfortable%3:00:00:: 1 17 -comfortable%3:00:01:: 2 2 -comfortably%4:02:00:: 1 5 -comfortably%4:02:02:: 2 2 -comforted%5:00:00:comfortable:01 1 1 -comforting%5:00:00:reassuring:00 2 1 -comforting%5:00:00:satisfactory:00 1 1 -comforts%1:21:00:: 1 4 -comic%3:01:00:: 2 2 -comic%5:00:00:humorous:00 1 3 -comic_book%1:10:00:: 1 1 -comically%4:02:00:: 1 1 -coming%1:04:01:: 2 2 -coming%1:04:02:: 1 2 -coming%5:00:01:future:00 1 5 -coming%5:00:02:future:00 2 1 -command%1:07:00:: 3 5 -command%1:07:02:: 4 2 -command%1:09:00:: 6 1 -command%1:10:00:: 1 23 -command%1:14:00:: 2 11 -command%1:26:00:: 5 1 -command%2:32:00:: 2 8 -command%2:32:01:: 1 10 -command%2:32:02:: 3 6 -command%2:41:00:: 5 1 -command%2:42:00:: 4 1 -commandeer%2:35:00:: 1 1 -commander%1:18:00:: 1 10 -commander%1:18:03:: 2 3 -commanding%5:00:00:high:01 2 1 -commanding%5:00:00:superior:01 1 3 -commanding_officer%1:18:00:: 1 4 -commandment%1:10:00:: 1 2 -commando%1:18:00:: 1 2 -commemorate%2:31:00:: 2 2 -commemorate%2:31:02:: 1 3 -commence%2:30:00:: 1 8 -commence%2:30:01:: 2 6 -commence%2:36:00:: 3 3 -commend%2:32:00:: 1 10 -commend%2:32:03:: 3 1 -commend%2:36:00:: 2 1 -commendable%5:00:00:worthy:00 1 2 -commensurate%3:00:00:: 1 3 -comment%1:10:00:: 1 24 -comment%1:10:01:: 2 6 -comment%2:32:00:: 1 23 -comment%2:32:10:: 2 1 -commentary%1:10:00:: 1 4 -commentator%1:18:01:: 1 2 -commerce%1:04:00:: 1 10 -commercial%1:10:00:: 1 4 -commercial%3:00:00:: 1 22 -commercial%3:01:00:: 2 2 -commercial_art%1:06:00:: 1 1 -commercial_enterprise%1:14:00:: 1 1 -commercialism%1:04:00:: 1 1 -commercialization%1:04:00:: 1 1 -commercially%4:02:00:: 1 6 -commie%1:18:00:: 1 1 -commiserate%2:37:00:: 1 1 -commiseration%1:12:00:: 1 1 -commissary%1:06:00:: 1 1 -commission%1:04:02:: 3 1 -commission%1:14:00:: 1 27 -commission%1:21:00:: 2 1 -commission%2:41:01:: 1 2 -commissioner%1:18:00:: 1 5 -commit%2:32:01:: 2 12 -commit%2:40:00:: 4 1 -commit%2:40:02:: 3 3 -commit%2:40:05:: 5 1 -commit%2:41:00:: 1 12 -commitment%1:04:00:: 2 2 -commitment%1:04:02:: 3 1 -commitment%1:07:01:: 1 2 -committed%3:00:00:: 1 3 -committee%1:14:00:: 1 16 -committee%1:14:01:: 2 1 -committee_member%1:18:00:: 1 1 -committeeman%1:18:00:: 1 3 -commodity%1:06:00:: 1 4 -common%1:15:00:: 1 1 -common%3:00:01:: 2 14 -common%3:00:02:: 1 32 -common%5:00:00:familiar:02 4 9 -common%5:00:00:informal:02 5 2 -common%5:00:00:lowborn:00 6 1 -common%5:00:00:shared:00 3 13 -common_iliac_artery%1:08:00:: 1 1 -common_law%1:10:00:: 1 1 -common_man%1:18:00:: 1 8 -common_sense%1:09:00:: 1 2 -common_soldier%1:18:00:: 1 1 -commoner%1:18:00:: 1 1 -commonly%4:02:00:: 1 11 -commonplace%1:10:00:: 1 1 -commonplace%5:00:00:ordinary:00 1 3 -commonplace%5:00:00:unexciting:00 3 1 -commonplace%5:00:02:ordinary:00 2 1 -commonsense%5:00:00:reasonable:00 1 3 -commonwealth%1:14:00:: 2 2 -commonwealth%1:15:00:: 1 2 -commotion%1:04:00:: 2 2 -commotion%1:26:00:: 1 6 -communal%3:01:02:: 2 1 -communal%5:00:00:common:02 1 2 -commune%1:14:00:: 2 1 -commune%1:15:00:: 1 5 -commune%2:32:02:: 1 2 -communicate%2:32:00:: 2 8 -communicate%2:32:01:: 1 9 -communicating%1:10:00:: 1 1 -communication%1:03:00:: 2 9 -communication%1:10:01:: 1 26 -communication%1:24:00:: 3 1 -communication_system%1:06:01:: 1 3 -communicational%5:00:00:communicative:00 1 2 -communicative%3:01:00:: 1 3 -communion%1:04:01:: 1 4 -communion%1:10:00:: 2 3 -communique%1:10:00:: 1 1 -communism%1:09:00:: 2 4 -communism%1:14:00:: 1 35 -communist%1:18:00:: 2 4 -communist%1:18:01:: 1 7 -communist%3:01:00:: 1 18 -communist_china%1:15:00:: 1 1 -communistic%3:01:00:: 1 1 -community%1:14:00:: 1 67 -community%1:14:01:: 6 1 -community%1:14:03:: 2 8 -community%1:14:04:: 4 2 -community%1:21:00:: 3 4 -community%1:26:00:: 5 1 -community%5:00:02:common:02 1 2 -community_college%1:14:00:: 1 1 -communize%2:30:01:: 1 1 -commutation%1:04:00:: 1 1 -commutator%1:06:00:: 1 1 -commute%2:30:00:: 3 2 -commute%2:30:01:: 4 1 -commute%2:30:04:: 1 12 -commute%2:38:00:: 2 2 -commuter%1:06:00:: 1 6 -commuter%1:18:00:: 2 2 -commuter_traffic%1:14:00:: 1 2 -commuting%1:04:00:: 1 2 -compact%1:06:00:: 1 1 -compact%3:00:00:: 1 2 -compact%5:00:00:concentrated:00 2 1 -companion%1:18:00:: 1 25 -companion%1:18:02:: 2 9 -companionship%1:26:00:: 1 1 -company%1:14:00:: 6 3 -company%1:14:01:: 1 60 -company%1:14:02:: 4 5 -company%1:14:03:: 2 28 -company%1:18:00:: 5 3 -company%1:26:00:: 3 6 -company_operator%1:18:00:: 1 1 -comparable%3:00:00:: 1 11 -comparable%5:00:00:same:00 2 1 -comparable_to%5:00:00:comparable:00 1 4 -comparable_with%5:00:00:comparable:00 1 2 -comparative%3:01:00:: 1 4 -comparative%5:00:00:relative:00 2 4 -comparative_literature%1:09:00:: 1 2 -comparatively%4:02:00:: 1 7 -compare%2:31:00:: 1 57 -compare%2:31:01:: 3 9 -compare%2:42:00:: 2 12 -comparison%1:04:00:: 1 16 -comparison%1:24:00:: 2 8 -compartment%1:06:00:: 2 1 -compartment%1:06:01:: 1 4 -compass%1:06:00:: 1 3 -compass%1:07:00:: 2 2 -compassion%1:07:00:: 2 1 -compassion%1:12:00:: 1 2 -compassionate%5:00:00:merciful:00 1 1 -compassionately%4:02:00:: 1 1 -compatible%3:00:01:: 1 6 -compatible%5:00:00:congenial:00 2 1 -compatriot%1:18:00:: 1 1 -compel%2:32:00:: 2 5 -compel%2:41:00:: 1 21 -compelled%5:00:00:obligated(p):00 1 3 -compensate%2:40:01:: 2 1 -compensate%2:42:00:: 1 5 -compensation%1:21:00:: 1 6 -compensatory%5:00:00:counteractive:00 1 1 -compete%2:33:00:: 1 24 -competence%1:07:00:: 1 7 -competent%3:00:00:: 1 7 -competent%5:00:00:adequate:00 2 3 -competently%4:02:00:: 1 1 -competing%5:00:00:competitive:00 1 2 -competition%1:04:00:: 3 4 -competition%1:11:00:: 2 4 -competition%1:24:01:: 1 17 -competitive%3:00:00:: 1 12 -competitive%5:00:00:aggressive:00 3 1 -competitive%5:00:00:capitalistic:00 2 4 -competitively%4:02:00:: 1 1 -competitor%1:18:00:: 1 7 -compile%2:36:00:: 2 3 -compile%2:40:00:: 1 3 -compiling%1:04:00:: 1 1 -complain%2:32:00:: 1 29 -complaint%1:10:00:: 4 1 -complaint%1:10:01:: 2 1 -complaint%1:10:02:: 3 1 -complaint%1:26:00:: 1 3 -complaisance%1:07:00:: 1 1 -complement%1:07:00:: 4 1 -complement%1:10:00:: 1 15 -complement%1:14:00:: 3 1 -complement%1:23:00:: 2 1 -complement%2:30:02:: 1 3 -complementary%5:00:00:inessential:00 1 1 -complete%2:30:00:: 2 5 -complete%2:30:02:: 1 52 -complete%2:32:00:: 5 1 -complete%2:33:00:: 4 1 -complete%2:41:00:: 3 3 -complete%3:00:00:: 1 67 -complete%5:00:00:perfect:00 2 4 -completed%5:00:00:complete:00 1 4 -completely%4:02:03:: 2 10 -completely%4:02:04:: 1 37 -completeness%1:26:00:: 1 2 -completion%1:04:00:: 3 2 -completion%1:04:01:: 1 40 -completion%1:04:02:: 2 3 -complex%1:09:00:: 1 6 -complex%1:27:00:: 2 1 -complex%3:00:00:: 1 28 -complex_number%1:23:00:: 1 3 -complexion%1:07:00:: 1 1 -complexity%1:07:00:: 1 10 -compliance%1:04:02:: 1 1 -complicate%2:30:00:: 1 5 -complicate%2:30:01:: 2 2 -complicated%5:00:00:complex:00 1 11 -complication%1:04:00:: 1 3 -complication%1:26:00:: 2 2 -complicity%1:26:00:: 1 4 -compliment%1:10:00:: 1 4 -compliment%2:32:00:: 1 2 -compliment%2:32:01:: 2 1 -complimentary%3:00:00:: 1 1 -comply%2:41:00:: 1 9 -comply%2:42:00:: 2 1 -component%1:06:00:: 3 4 -component%1:09:00:: 1 20 -component%1:24:00:: 2 10 -comportment%1:07:00:: 1 1 -compose%2:36:01:: 3 4 -compose%2:36:03:: 2 5 -compose%2:36:09:: 4 3 -compose%2:37:00:: 5 1 -compose%2:42:00:: 1 14 -composed%3:00:00:: 2 2 -composed%5:00:00:combined:00 1 8 -composer%1:18:00:: 1 24 -composing%1:07:00:: 1 1 -composite%1:09:00:: 1 9 -composite%5:00:00:complex:00 1 2 -composition%1:04:01:: 6 1 -composition%1:04:02:: 5 1 -composition%1:07:01:: 2 4 -composition%1:07:02:: 1 4 -composition%1:10:01:: 4 1 -composition%1:27:00:: 3 2 -compost%1:27:00:: 1 3 -composure%1:07:00:: 1 3 -compound%1:06:00:: 3 1 -compound%1:09:00:: 1 3 -compound%1:27:00:: 2 1 -compound%2:30:00:: 2 3 -compound%2:30:01:: 1 6 -compounding%1:04:00:: 1 1 -comprehend%2:31:00:: 1 11 -comprehend%2:39:00:: 2 1 -comprehension%1:09:00:: 1 5 -comprehensive%3:00:00:: 1 8 -comprehensively%4:02:00:: 1 3 -compress%1:06:00:: 1 2 -compress%2:35:00:: 2 2 -compress%2:35:01:: 1 6 -compressed%5:00:00:closed:03 1 1 -compressed%5:00:00:compressible:00 2 1 -comprise%2:42:00:: 2 6 -comprise%2:42:01:: 1 8 -comprise%2:42:03:: 3 1 -compromise%1:04:00:: 1 4 -compromise%1:10:00:: 2 1 -compromise%2:32:00:: 2 2 -compromise%2:32:01:: 1 3 -compromising%3:00:00:: 1 1 -comptroller_general%1:18:00:: 1 3 -compulsion%1:04:00:: 3 1 -compulsion%1:16:00:: 2 1 -compulsion%1:16:01:: 1 3 -compulsive%1:18:00:: 1 4 -compulsive%5:00:00:neurotic:00 1 7 -compulsively%4:02:00:: 1 1 -compulsivity%1:07:00:: 1 10 -compunction%1:12:00:: 1 1 -computation%1:04:00:: 1 3 -computation%1:09:00:: 2 1 -compute%2:31:00:: 1 35 -computer%1:06:00:: 1 6 -comrade%1:18:00:: 1 55 -con%1:10:00:: 1 1 -con%2:41:00:: 1 1 -con_game%1:04:00:: 1 1 -concave%3:00:00:: 1 3 -conceal%2:39:00:: 2 1 -conceal%2:39:01:: 1 8 -concealed%3:00:00:: 2 1 -concealed%5:00:00:invisible:00 1 2 -concede%2:32:00:: 1 10 -concede%2:32:01:: 2 6 -concede%2:40:00:: 3 4 -conceit%1:12:00:: 1 1 -conceivable%5:00:00:possible:00 1 5 -conceivable%5:00:00:thinkable:00 2 2 -conceivably%4:02:00:: 1 4 -conceive%2:29:00:: 3 2 -conceive%2:31:00:: 2 10 -conceive%2:36:00:: 1 21 -conceive_of%2:36:01:: 1 6 -concentrate%1:09:00:: 3 1 -concentrate%1:13:00:: 2 1 -concentrate%1:27:00:: 1 3 -concentrate%2:30:01:: 1 8 -concentrate%2:30:02:: 3 4 -concentrate%2:30:07:: 4 2 -concentrate%2:31:00:: 2 4 -concentrate%2:38:00:: 5 1 -concentrate_on%2:42:00:: 1 5 -concentrated%3:00:00:: 1 5 -concentrated%5:00:00:intense:00 3 2 -concentrated%5:00:00:undiluted:00 2 5 -concentration%1:04:01:: 3 3 -concentration%1:04:02:: 6 1 -concentration%1:07:02:: 1 25 -concentration%1:07:03:: 2 5 -concentration%1:09:00:: 5 2 -concentration%1:11:00:: 4 2 -concentration_camp%1:06:00:: 1 7 -concept%1:09:00:: 1 37 -conception%1:04:01:: 2 4 -conception%1:09:00:: 1 11 -conception%1:09:03:: 4 1 -conception%1:11:00:: 3 2 -conceptual%5:00:00:abstract:00 1 1 -conceptuality%1:09:00:: 1 2 -conceptualization%1:04:00:: 1 1 -conceptually%4:02:00:: 1 1 -concern%1:09:00:: 1 21 -concern%1:09:01:: 4 4 -concern%1:12:00:: 3 4 -concern%1:12:01:: 2 12 -concern%1:14:00:: 5 2 -concern%2:42:00:: 1 56 -concern%2:42:01:: 2 22 -concerned%3:00:00:: 1 15 -concerned%5:00:00:involved:00 2 12 -concerned%5:00:00:related:02 3 2 -concert%1:10:00:: 1 5 -concert_hall%1:06:00:: 1 1 -concerted%5:00:00:joint:00 1 1 -concertina%1:06:01:: 1 1 -concerto%1:10:00:: 1 3 -concession%1:10:00:: 1 2 -concession%1:10:02:: 2 1 -concessionaire%1:18:00:: 1 3 -concierge%1:18:00:: 1 2 -conciliate%2:37:00:: 1 1 -conciliating%3:00:00:: 1 1 -conciliatory%3:00:04:: 1 1 -concise%3:00:00:: 1 1 -conciseness%1:10:00:: 1 1 -conclave%1:14:00:: 1 1 -conclude%2:31:00:: 1 33 -conclude%2:31:01:: 2 9 -conclude%2:32:01:: 3 1 -concluding%5:00:00:closing:00 1 2 -conclusion%1:04:00:: 6 1 -conclusion%1:09:00:: 1 29 -conclusion%1:09:01:: 2 5 -conclusion%1:10:01:: 5 1 -conclusion%1:11:00:: 4 1 -conclusion%1:28:00:: 3 1 -conclusive%3:00:00:: 1 3 -conclusive%5:00:00:decisive:00 2 3 -conclusively%4:02:00:: 1 4 -concoct%2:35:00:: 1 1 -concord%1:15:00:: 1 1 -concordant%5:00:00:consistent:00 1 2 -concrete%1:27:00:: 1 16 -concrete%3:00:00:: 1 9 -concretely%4:02:00:: 1 1 -concretistic%3:01:00:: 1 2 -concur%2:30:00:: 2 1 -concur%2:32:00:: 1 5 -concurrence%1:04:00:: 2 1 -concurrence%1:10:00:: 1 1 -concurrent%5:00:00:synchronous:00 1 3 -concussion%1:11:00:: 1 1 -concussion%1:11:01:: 2 1 -condemn%2:32:00:: 1 18 -condemn%2:32:01:: 5 1 -condemn%2:32:02:: 2 2 -condemn%2:39:00:: 4 1 -condemn%2:41:00:: 3 1 -condemnation%1:04:00:: 2 3 -condemnation%1:10:00:: 1 3 -condemnation%1:10:01:: 3 1 -condemnatory%5:00:00:inculpatory:00 1 1 -condemned%5:00:00:disapproved:00 2 1 -condemned%5:00:00:guilty:00 1 1 -condensation%1:09:00:: 1 3 -condense%2:30:00:: 2 1 -condense%2:30:01:: 1 2 -condensed%3:00:01:: 3 1 -condensed%5:00:00:abridged:00 2 2 -condensed%5:00:00:combined:00 1 2 -condensed_milk%1:13:00:: 1 1 -condenser%1:06:01:: 1 1 -condescending%5:00:00:superior:01 1 3 -condescension%1:07:00:: 1 3 -condition%1:09:00:: 4 1 -condition%1:10:01:: 2 12 -condition%1:26:00:: 1 72 -condition%1:26:01:: 3 2 -condition%2:32:00:: 3 1 -condition%2:41:00:: 2 1 -condition%2:41:01:: 1 2 -conditional%5:00:00:qualified:02 1 1 -conditioned_reaction%1:04:00:: 1 7 -conditioned_reflex%1:04:00:: 1 2 -conditioned_response%1:04:00:: 1 1 -conditioned_stimulus%1:09:00:: 1 2 -conditioner%1:04:00:: 1 1 -conditioning%1:09:00:: 1 2 -condone%2:32:00:: 1 1 -conduct%1:04:00:: 1 5 -conduct%1:07:00:: 2 3 -conduct%2:36:00:: 2 30 -conduct%2:38:00:: 5 1 -conduct%2:38:01:: 4 2 -conduct%2:41:00:: 1 44 -conduct%2:41:01:: 3 2 -conducting_wire%1:06:00:: 1 2 -conduction%1:19:00:: 1 2 -conductivity%1:19:00:: 1 2 -conductor%1:18:00:: 1 6 -conductor%1:18:01:: 3 1 -conductor%1:27:00:: 2 1 -cone%1:06:00:: 1 4 -conestoga_wagon%1:06:00:: 1 1 -confederacy%1:14:00:: 2 1 -confederacy%1:15:00:: 1 1 -confederate%1:18:02:: 1 1 -confederate%5:00:00:southern:02 1 2 -confederate_flag%1:10:00:: 1 1 -confer%2:32:00:: 1 1 -confer_with%2:32:00:: 1 3 -conference%1:10:00:: 3 2 -conference%1:14:00:: 1 12 -conference%1:14:01:: 2 2 -conference_house%1:06:00:: 1 2 -conference_room%1:06:00:: 1 1 -confess%2:32:00:: 1 10 -confess%2:32:01:: 2 3 -confession%1:04:00:: 3 1 -confession%1:10:00:: 1 4 -confession%1:10:01:: 2 1 -confessor%1:18:00:: 1 1 -confidant%1:18:00:: 1 2 -confidante%1:18:00:: 1 1 -confide%2:32:00:: 1 6 -confide%2:40:00:: 2 1 -confidence%1:09:00:: 1 13 -confidence%1:12:00:: 2 6 -confidence%1:26:02:: 3 3 -confident%3:00:00:: 1 7 -confidential%5:00:00:private:00 1 2 -confidentiality%1:26:00:: 1 1 -confidentially%4:02:01:: 1 2 -confidently%4:02:00:: 1 2 -confiding%5:00:00:trustful:00 1 1 -configuration%1:07:00:: 2 1 -configuration%1:09:00:: 1 1 -confine%2:30:00:: 1 5 -confine%2:30:01:: 2 4 -confine%2:35:03:: 3 3 -confinement%1:04:00:: 2 1 -confinement%1:26:01:: 1 1 -confines%1:07:00:: 1 1 -confining%5:00:00:restrictive:00 1 1 -confirm%2:30:00:: 3 2 -confirm%2:31:00:: 1 18 -confirm%2:32:00:: 2 5 -confirm%2:41:01:: 4 1 -confirmation%1:09:00:: 1 4 -confirmation%1:10:00:: 2 1 -confirmed%3:00:00:: 2 1 -confirmed%5:00:00:unchangeable:00 1 2 -confiscate%2:40:01:: 1 2 -conflict%1:04:00:: 1 6 -conflict%1:04:01:: 3 4 -conflict%1:07:00:: 5 2 -conflict%1:12:00:: 2 4 -conflict%1:26:00:: 4 2 -conflict%2:41:11:: 2 1 -conflict%2:42:00:: 1 2 -conflicting%5:00:00:inconsistent:00 1 2 -confluent%5:00:00:convergent:00 1 1 -conform%2:30:01:: 2 1 -conform%2:42:06:: 1 1 -conform_to%2:30:00:: 3 1 -conform_to%2:42:00:: 2 2 -conform_to%2:42:01:: 1 6 -conformational_entropy%1:19:00:: 1 2 -conformity%1:04:00:: 2 2 -conformity%1:07:02:: 1 2 -conformity%1:09:00:: 3 1 -confound%2:31:02:: 1 2 -confrere%1:18:00:: 1 1 -confront%2:32:00:: 2 11 -confront%2:32:03:: 3 7 -confront%2:33:00:: 1 24 -confront%2:42:00:: 4 4 -confrontation%1:10:01:: 1 1 -confuse%2:31:02:: 1 10 -confuse%2:31:03:: 2 5 -confused%3:00:00:: 5 1 -confused%5:00:00:disorganized:00 4 2 -confused%5:00:00:incoherent:00 2 3 -confused%5:00:00:perplexed:00 1 5 -confused%5:00:00:unoriented:00 3 2 -confusing%5:00:00:disorienting:00 1 1 -confusing%5:00:00:unclear:00 2 1 -confusion%1:09:00:: 2 7 -confusion%1:26:01:: 1 14 -congeal%2:30:00:: 1 2 -congenital%5:00:00:noninheritable:00 1 1 -congested%5:00:00:full:00 1 1 -congestion%1:26:00:: 1 1 -congestion%1:26:01:: 2 1 -congestive%3:01:00:: 1 1 -congo%1:15:00:: 1 1 -congratulate%2:32:00:: 1 5 -congratulate%2:32:01:: 2 3 -congratulate%2:37:00:: 3 1 -congratulation%1:10:00:: 1 4 -congratulations%1:10:01:: 1 1 -congratulatory%5:00:00:felicitous:00 1 1 -congregate%2:38:00:: 1 2 -congregation%1:14:00:: 1 32 -congregation%1:14:01:: 2 2 -congregational%3:01:00:: 1 7 -congress%1:14:00:: 2 1 -congress%1:14:01:: 1 24 -congress_gaiter%1:06:00:: 1 1 -congressional%3:01:00:: 1 2 -congressman%1:18:00:: 1 3 -conjecture%1:09:00:: 1 1 -conjecture%2:31:00:: 1 1 -conjoin%2:35:00:: 1 1 -conjoined%5:00:00:joint:00 1 1 -conjugal%3:01:00:: 1 2 -conjugate%1:27:00:: 1 22 -conjugate%2:30:00:: 1 1 -conjugated%5:00:02:bound:03 1 5 -conjunction%1:07:00:: 1 3 -conjunction%1:10:00:: 3 1 -conjunction%1:26:00:: 2 1 -conjure_up%2:36:00:: 1 5 -connect%2:31:00:: 2 4 -connect%2:32:00:: 6 1 -connect%2:32:12:: 4 3 -connect%2:35:00:: 1 8 -connect%2:35:01:: 5 1 -connect%2:42:02:: 3 3 -connected%3:00:00:: 2 3 -connected%5:00:00:related:02 1 5 -connected%5:00:02:related:02 3 3 -connecticut%1:15:00:: 1 3 -connecting%5:00:00:connected:00 1 1 -connection%1:06:00:: 3 4 -connection%1:09:00:: 5 1 -connection%1:18:01:: 4 2 -connection%1:24:00:: 1 14 -connection%1:26:00:: 2 11 -connective%5:00:00:conjunctive:00 1 2 -connective_tissue%1:08:00:: 1 1 -connoisseur%1:18:00:: 1 2 -connotation%1:09:00:: 2 2 -connotation%1:10:00:: 1 3 -connote%2:32:01:: 1 2 -conquer%2:30:00:: 1 5 -conquer%2:33:00:: 3 1 -conquer%2:40:00:: 2 1 -conqueror%1:18:00:: 1 1 -conquest%1:04:00:: 2 1 -conquest%1:04:01:: 1 2 -conscience%1:07:00:: 2 6 -conscience%1:12:00:: 3 1 -conscience%1:16:00:: 1 12 -conscientious%5:00:00:careful:00 1 2 -conscientious_objector%1:18:00:: 1 3 -conscious%3:00:00:: 2 6 -conscious%5:00:00:aware(p):00 3 6 -conscious%5:00:00:intended:00 1 7 -consciously%4:02:00:: 1 3 -consciousness%1:09:00:: 1 20 -consciousness%1:09:01:: 2 1 -conscript%2:33:00:: 1 1 -conscription%1:04:00:: 1 1 -consecutive%5:00:00:succeeding(a):00 3 3 -consensus%1:26:00:: 1 3 -consent%1:10:00:: 1 7 -consent%2:32:00:: 1 6 -consequence%1:07:00:: 3 3 -consequence%1:11:00:: 2 4 -consequence%1:19:00:: 1 18 -consequent%5:00:00:subsequent:00 1 4 -consequently%4:02:00:: 1 7 -consequently%4:02:01:: 2 1 -conservation%1:04:00:: 2 1 -conservation%1:11:00:: 1 2 -conservatism%1:09:00:: 1 6 -conservative%1:18:00:: 1 3 -conservative%3:00:00:: 1 11 -conservative%5:00:00:moderate:00 3 1 -conservative%5:00:00:right:03 2 1 -conservatively%4:02:00:: 1 1 -conserve%2:40:01:: 1 5 -conserving%5:00:00:protective:00 1 2 -consider%2:31:00:: 1 107 -consider%2:31:01:: 3 37 -consider%2:31:08:: 6 2 -consider%2:32:00:: 4 27 -consider%2:32:02:: 5 15 -consider%2:39:00:: 2 51 -considerable%3:00:00:: 1 32 -considerably%4:02:01:: 1 19 -considerate%3:00:00:: 1 2 -considerately%4:02:00:: 1 2 -consideration%1:07:00:: 4 1 -consideration%1:09:00:: 1 17 -consideration%1:09:01:: 2 11 -consideration%1:10:00:: 3 1 -considered%5:00:00:thoughtful:00 1 1 -consign%2:40:00:: 2 1 -consign%2:40:01:: 1 3 -consist%2:42:00:: 1 4 -consist_in%2:42:00:: 1 4 -consist_of%2:42:00:: 1 59 -consist_of%2:42:01:: 2 8 -consistence%1:07:02:: 1 1 -consistency%1:07:00:: 1 2 -consistency%1:07:02:: 2 2 -consistent%3:00:00:: 1 7 -consistent%5:00:00:coherent:00 2 2 -consistently%4:02:00:: 1 8 -consolation%1:12:00:: 1 3 -console%2:37:00:: 1 1 -consolidate%2:30:00:: 1 3 -consolidate%2:30:02:: 2 1 -consolidated%5:00:00:united:00 1 1 -consolidation%1:04:00:: 2 1 -consolidation%1:11:00:: 1 1 -consoling%5:00:00:reassuring:00 1 1 -consonant%1:10:00:: 1 4 -consonant%1:10:01:: 2 2 -consonant_system%1:10:00:: 1 2 -consonantal%3:00:02:: 1 4 -consonantal_system%1:10:00:: 1 5 -consort%2:41:12:: 1 2 -conspicuous%3:00:00:: 1 2 -conspicuously%4:02:00:: 1 2 -conspicuously%4:02:01:: 2 2 -conspiracy%1:09:00:: 2 3 -conspiracy%1:10:00:: 1 3 -conspiracy%1:14:00:: 3 2 -conspirator%1:18:00:: 1 1 -conspire%2:31:00:: 1 3 -conspire%2:31:01:: 2 2 -constable%1:18:00:: 1 1 -constancy%1:07:00:: 1 1 -constant%1:09:00:: 1 4 -constant%3:00:00:: 3 2 -constant%5:00:00:continual:00 2 7 -constant%5:00:00:invariable:00 1 14 -constantly%4:02:01:: 3 1 -constantly%4:02:02:: 1 13 -constantly%4:02:03:: 2 2 -constatation%1:09:00:: 1 1 -constellation%1:09:00:: 1 1 -consternation%1:12:00:: 1 2 -constituent%1:06:00:: 1 7 -constituent%1:18:00:: 2 2 -constitute%2:41:00:: 2 1 -constitute%2:42:00:: 1 31 -constitution%1:04:00:: 2 1 -constitution%1:10:00:: 1 2 -constitutional%3:01:01:: 1 7 -constrained%5:00:00:obligated(p):00 1 1 -constraining%5:00:00:restrictive:00 1 1 -constrict%2:35:00:: 1 1 -constricted%5:00:00:tense:02 1 1 -constricting%5:00:00:tight:01 1 1 -constriction%1:25:00:: 1 1 -construct%2:35:00:: 3 2 -construct%2:36:00:: 1 28 -construct%2:36:01:: 2 5 -construction%1:04:00:: 1 25 -construction%1:04:02:: 5 1 -construction%1:06:00:: 4 1 -construction%1:09:00:: 3 2 -construction%1:10:01:: 2 5 -constructive%3:00:00:: 1 5 -constructively%4:02:00:: 1 2 -construe%2:31:00:: 1 5 -consult%2:32:01:: 2 4 -consult%2:32:02:: 1 15 -consult%2:32:03:: 3 2 -consult%2:32:05:: 4 2 -consultant%1:18:00:: 1 3 -consultation%1:10:00:: 1 2 -consultation%1:10:01:: 2 2 -consulting_firm%1:14:00:: 1 1 -consume%2:34:00:: 2 3 -consume%2:34:02:: 3 2 -consume%2:34:03:: 1 3 -consume%2:35:00:: 4 1 -consumer%1:18:00:: 1 10 -consummate%2:36:00:: 2 1 -consummate%2:36:01:: 1 2 -consummated%3:00:00:: 1 1 -consumption%1:04:01:: 1 2 -consumptive%3:00:00:: 1 3 -contact%1:04:00:: 2 4 -contact%1:04:02:: 1 29 -contact%1:06:00:: 7 1 -contact%1:10:00:: 6 1 -contact%1:11:00:: 4 2 -contact%1:18:00:: 5 1 -contact%1:26:00:: 3 2 -contact%2:32:00:: 1 10 -contact_sport%1:04:00:: 1 1 -contain%2:41:00:: 3 2 -contain%2:42:00:: 1 111 -contain%2:42:13:: 2 34 -container%1:06:00:: 1 5 -contaminate%2:30:00:: 1 4 -contaminate%2:30:01:: 2 1 -contamination%1:26:00:: 1 2 -contemplate%2:31:00:: 3 5 -contemplate%2:31:01:: 4 1 -contemplate%2:31:02:: 2 7 -contemplate%2:39:00:: 1 8 -contemplation%1:04:01:: 1 3 -contemplation%1:09:00:: 2 2 -contemplative%5:00:00:thoughtful:00 1 1 -contemporaries%1:14:00:: 1 1 -contemporary%1:18:00:: 1 3 -contemporary%5:00:00:current:00 2 5 -contemporary%5:00:00:modern:00 1 10 -contemporary%5:00:00:synchronous:00 3 1 -contempt%1:07:00:: 2 2 -contempt%1:12:00:: 1 7 -contemptible%3:00:00:: 1 1 -contemptuous%5:00:00:disrespectful:00 1 2 -contemptuously%4:02:00:: 1 1 -contend%2:32:00:: 3 2 -contend%2:32:01:: 2 3 -contend%2:32:02:: 1 10 -contend%2:33:00:: 5 1 -contend%2:41:00:: 4 1 -contending%5:00:00:competitive:00 1 1 -content%1:09:00:: 5 2 -content%1:10:00:: 2 8 -content%1:14:00:: 1 12 -content%1:23:00:: 4 2 -content%1:24:00:: 3 3 -content%1:26:00:: 6 1 -content%2:34:00:: 1 3 -content%2:37:00:: 2 2 -content%3:00:04:: 1 5 -contented%3:00:00:: 1 3 -contentedly%4:02:00:: 1 1 -contention%1:10:00:: 2 1 -contention%1:10:02:: 1 5 -contest%1:04:00:: 2 1 -contest%1:11:00:: 1 8 -contest%2:32:00:: 1 3 -contestant%1:18:00:: 1 1 -context%1:10:00:: 1 14 -context%1:26:00:: 2 4 -contiguous%5:00:00:close:01 1 1 -continence%1:07:00:: 1 1 -continent%1:15:00:: 2 2 -continent%1:17:00:: 1 5 -continental%3:01:01:: 1 3 -contingency%1:11:00:: 1 1 -contingent%1:14:01:: 1 1 -continual%3:00:00:: 1 4 -continually%4:02:01:: 1 21 -continuance%1:04:00:: 1 2 -continuation%1:04:00:: 1 2 -continue%2:32:00:: 2 39 -continue%2:38:00:: 4 5 -continue%2:41:00:: 5 2 -continue%2:42:00:: 3 22 -continue%2:42:01:: 1 146 -continue%2:42:12:: 6 1 -continued%3:00:00:: 1 12 -continuing%5:00:00:continued:00 1 7 -continuity%1:26:00:: 1 12 -continuous%3:00:01:: 1 16 -continuous%3:00:02:: 2 4 -continuously%4:02:00:: 1 6 -continuously%4:02:01:: 2 4 -continuum%1:28:00:: 1 2 -contortion%1:04:00:: 1 3 -contortion%1:25:00:: 2 2 -contour%1:07:00:: 2 2 -contour%1:10:00:: 1 6 -contour_language%1:10:00:: 1 1 -contraband%5:00:00:illegal:00 1 1 -contrabass%1:06:00:: 1 1 -contraception%1:04:00:: 1 4 -contraceptive%1:06:00:: 1 4 -contraceptive_device%1:06:00:: 1 1 -contract%1:10:00:: 1 19 -contract%1:10:01:: 2 2 -contract%2:29:00:: 4 2 -contract%2:30:04:: 5 1 -contract%2:32:00:: 1 8 -contract%2:35:04:: 3 2 -contract%2:41:00:: 2 3 -contraction%1:04:01:: 1 1 -contractor%1:18:00:: 1 5 -contractual%3:01:00:: 1 4 -contradict%2:32:00:: 2 1 -contradict%2:42:00:: 1 5 -contradiction%1:10:01:: 2 1 -contradiction%1:24:00:: 1 7 -contradictorily%4:02:00:: 1 1 -contradictory%5:00:00:antonymous:00 1 1 -contradistinction%1:09:00:: 1 1 -contralto%1:18:00:: 1 1 -contraption%1:06:00:: 1 1 -contrary%1:24:01:: 1 3 -contrary%5:00:00:antonymous:00 2 1 -contrary%5:00:00:different:00 1 5 -contrast%1:04:00:: 2 10 -contrast%1:09:00:: 4 2 -contrast%1:09:01:: 3 3 -contrast%1:24:00:: 1 23 -contrast%2:31:00:: 1 7 -contrast%2:42:00:: 2 3 -contrast%2:42:01:: 3 1 -contrasting%5:00:00:different:00 1 1 -contribute%2:40:00:: 2 25 -contribute%2:40:01:: 1 31 -contribute%2:40:02:: 4 3 -contribute%2:41:12:: 3 13 -contributing%5:00:00:causative:00 1 1 -contribution%1:04:00:: 3 3 -contribution%1:04:02:: 1 12 -contribution%1:21:00:: 2 4 -contribution%1:21:01:: 4 2 -contributor%1:18:00:: 1 1 -contributor%1:18:01:: 2 1 -contributory%5:00:00:causative:00 1 3 -contrition%1:12:00:: 1 1 -contrivance%1:06:00:: 1 2 -contrivance%1:09:01:: 2 1 -contrive%2:36:00:: 2 1 -contrive%2:36:01:: 1 1 -contrived%5:00:00:planned:00 1 1 -control%1:04:00:: 5 5 -control%1:04:02:: 3 7 -control%1:06:00:: 9 1 -control%1:07:00:: 1 19 -control%1:07:01:: 7 3 -control%1:09:01:: 8 2 -control%1:09:02:: 4 5 -control%1:24:00:: 2 16 -control%1:26:00:: 6 4 -control%2:35:00:: 3 7 -control%2:37:06:: 4 1 -control%2:41:00:: 1 28 -control%2:41:01:: 2 20 -control_condition%1:09:00:: 1 1 -control_tower%1:06:00:: 1 1 -controlled%3:00:00:: 1 6 -controller%1:18:00:: 1 2 -controlling%1:04:00:: 1 2 -controversial%3:00:00:: 1 1 -controversy%1:10:00:: 1 8 -contusion%1:26:00:: 1 1 -convection%1:22:01:: 1 2 -convene%2:38:00:: 1 2 -convenience%1:07:00:: 2 1 -convenience%1:26:00:: 1 5 -convenient%3:00:00:: 1 16 -convenient%5:00:00:accessible:00 2 3 -conveniently%4:02:00:: 1 4 -convent%1:06:00:: 1 1 -convention%1:09:00:: 2 4 -convention%1:14:00:: 1 4 -conventional%3:00:00:: 1 12 -conventional%3:00:01:: 4 1 -conventional%3:00:02:: 3 1 -conventional%5:00:00:nonrepresentational:00 5 1 -conventional%5:00:00:orthodox:00 2 2 -conventional%5:00:00:traditional:00 6 1 -conventionalize%2:30:00:: 1 1 -conventionally%4:02:00:: 1 1 -converge%2:42:00:: 1 1 -conversation%1:10:00:: 1 20 -conversational%5:00:00:informal:02 1 1 -converse%2:32:00:: 1 5 -conversely%4:02:00:: 1 5 -conversion%1:04:01:: 4 1 -conversion%1:04:02:: 3 2 -conversion%1:09:00:: 2 3 -conversion%1:11:00:: 1 9 -convert%1:18:00:: 1 3 -convert%2:30:00:: 1 13 -convert%2:30:01:: 3 3 -convert%2:30:02:: 4 3 -convert%2:30:03:: 2 5 -convert%2:30:07:: 5 1 -convertible%1:06:00:: 1 2 -convex%3:00:00:: 1 1 -convexity%1:07:00:: 1 1 -convey%2:32:00:: 1 9 -convey%2:32:01:: 2 8 -conveyor%1:06:00:: 2 1 -conveyor%1:18:00:: 1 1 -convict%1:18:00:: 1 1 -convict%2:32:00:: 1 11 -convicted%5:00:00:guilty:00 1 1 -conviction%1:04:00:: 2 3 -conviction%1:09:00:: 1 19 -convince%2:32:00:: 1 15 -convinced%3:00:00:: 1 3 -convinced%5:00:00:certain(p):02 2 10 -convincing%3:00:00:: 1 4 -convincingly%4:02:00:: 1 2 -convivial%5:00:00:sociable:00 1 1 -convoy%1:14:00:: 1 1 -convulse%2:29:00:: 2 1 -convulse%2:32:00:: 1 1 -convulsive%5:00:00:unsteady:00 1 2 -convulsive%5:00:00:violent:00 2 1 -convulsively%4:02:00:: 1 2 -cooccurring%5:00:00:synchronous:00 1 1 -cooing%3:44:00:: 1 1 -cook%1:18:00:: 1 7 -cook%2:30:00:: 3 6 -cook%2:36:00:: 2 9 -cook%2:36:01:: 1 9 -cook_up%2:36:01:: 1 1 -cooked-over%5:00:00:uneaten:00 1 1 -cookfire%1:06:00:: 1 1 -cookie%1:13:00:: 1 1 -cooking%1:04:00:: 2 4 -cooking%1:13:00:: 1 5 -cooking_utensil%1:06:00:: 1 1 -cool%2:30:00:: 2 1 -cool%2:30:01:: 1 15 -cool%3:00:01:: 1 25 -cool%5:00:00:composed:00 3 2 -cool%5:00:00:unexcited:00 2 3 -cool_off%2:30:00:: 2 1 -cool_off%2:37:00:: 1 1 -coolant%1:27:00:: 1 2 -cooled%5:00:00:cool:01 1 1 -cooler%1:06:00:: 1 1 -cooling%1:06:00:: 2 1 -cooling%1:22:00:: 1 6 -coolly%4:02:00:: 1 4 -coolness%1:07:00:: 2 1 -coolness%1:07:02:: 3 1 -coolness%1:12:00:: 1 1 -coon%1:18:01:: 1 1 -coop%1:06:01:: 1 2 -cooperate%2:41:00:: 1 20 -cooperation%1:04:01:: 1 7 -cooperation%1:04:02:: 2 1 -cooperative%1:04:00:: 1 3 -cooperative%1:14:00:: 2 1 -cooperative%3:00:00:: 2 3 -cooperative%5:00:00:joint:00 1 7 -coordinate%1:09:00:: 1 2 -coordinate%2:30:00:: 1 9 -coordinate%2:30:01:: 4 1 -coordinate%2:41:00:: 2 4 -coordinate%2:41:01:: 3 1 -coordinate%5:00:00:equal:00 1 1 -coordinated%5:00:00:adroit:00 2 1 -coordinated%5:00:00:integrated:02 1 1 -coordination%1:04:00:: 2 1 -coordination%1:09:00:: 1 1 -coordinator%1:18:00:: 1 1 -cop%1:18:00:: 1 20 -cope%2:41:00:: 1 5 -cope_with%2:41:00:: 1 18 -copenhagen%1:15:00:: 1 4 -coping%1:06:00:: 1 1 -copper%1:27:00:: 1 4 -copy%1:06:00:: 2 6 -copy%1:10:00:: 1 7 -copy%1:10:01:: 3 2 -copy%2:36:00:: 2 3 -copy%2:36:05:: 1 3 -coquette%1:18:00:: 1 2 -coral%1:07:00:: 1 1 -cord%1:06:00:: 1 5 -cordial%5:00:00:friendly:01 1 1 -corduroy%1:06:00:: 1 1 -corduroys%1:06:04:: 1 1 -core%1:09:00:: 4 2 -core%1:14:00:: 1 5 -core%1:15:00:: 2 4 -core%1:17:00:: 3 2 -core%1:17:01:: 5 1 -core%2:35:00:: 1 1 -corinthian%3:00:00:: 1 1 -cork%1:27:00:: 1 1 -corkscrew%1:06:00:: 1 1 -corn%1:13:00:: 3 1 -corn%1:20:00:: 1 3 -corn%1:20:02:: 2 2 -corn_syrup%1:13:00:: 1 1 -corner%1:06:00:: 4 9 -corner%1:06:02:: 3 11 -corner%1:15:00:: 2 15 -corner%1:15:01:: 5 5 -corner%1:15:02:: 1 20 -corner%1:17:00:: 9 1 -corner%1:25:00:: 6 3 -corner%1:26:00:: 7 1 -corner%1:26:01:: 8 1 -corner%2:41:00:: 1 1 -corner_post%1:06:00:: 1 1 -cornfield%1:15:00:: 1 1 -cornflake%1:13:00:: 1 1 -cornmeal%1:13:00:: 1 1 -corona%1:19:00:: 1 1 -coronary_artery%1:08:00:: 1 2 -coroner%1:18:00:: 1 5 -corporal%1:18:00:: 1 9 -corporate%3:01:00:: 1 4 -corporate%5:00:00:corporeal:00 2 2 -corporation%1:14:00:: 1 40 -corporeal%3:00:00:: 1 1 -corporeality%1:07:00:: 1 1 -corps%1:14:00:: 1 4 -corps%1:14:01:: 2 2 -corpse%1:08:00:: 1 22 -corpulence%1:07:00:: 1 1 -corpus_delicti%1:10:00:: 1 1 -corpuscular-radiation_pressure%1:19:00:: 1 1 -corpuscular_radiation%1:19:00:: 1 2 -corral%1:06:00:: 1 2 -corral%2:35:00:: 1 1 -correct%2:30:00:: 1 13 -correct%2:32:00:: 3 1 -correct%2:41:01:: 2 5 -correct%3:00:00:: 1 5 -correct%5:00:00:proper:00 2 5 -correct%5:00:02:proper:00 3 2 -correction%1:04:00:: 1 2 -correction%1:10:01:: 3 1 -correction%1:23:00:: 2 1 -correctly%4:02:01:: 1 6 -correctness%1:07:01:: 1 2 -correlate%2:42:00:: 1 4 -correlated%5:00:00:related:02 1 2 -correlation%1:09:00:: 2 2 -correlation%1:24:00:: 1 9 -correspond%2:32:00:: 3 3 -correspond%2:42:00:: 1 9 -correspond%2:42:04:: 2 6 -correspondence%1:07:02:: 2 2 -correspondence%1:10:00:: 1 5 -correspondence_course%1:04:00:: 1 1 -correspondent%1:18:00:: 1 3 -correspondent%1:18:01:: 2 2 -corresponding%5:00:00:related:02 1 9 -corresponding%5:00:00:same:00 3 1 -corresponding%5:00:00:similar:00 2 7 -correspondingly%4:02:00:: 1 1 -corridor%1:06:00:: 1 9 -corroborate%2:31:00:: 1 3 -corroborate%2:32:00:: 2 1 -corrode%2:30:01:: 1 1 -corrosive%5:00:00:destructive:00 1 1 -corrugated%5:00:00:furrowed:00 1 1 -corrugated_iron%1:06:00:: 1 1 -corrupt%2:41:00:: 1 1 -corrupt%3:00:00:: 1 3 -corruption%1:07:00:: 1 1 -corsage%1:06:00:: 1 1 -cortex%1:08:00:: 2 1 -cortex%1:08:01:: 1 4 -cortical%3:01:00:: 1 6 -cortical_potential%1:19:00:: 1 1 -cortically%4:02:00:: 1 1 -cortico-hypothalamic%3:01:00:: 1 2 -corticofugal%5:00:00:efferent:00 1 2 -corticosteroid%1:27:00:: 1 1 -corticotropin%1:08:00:: 1 1 -cosecant%1:24:00:: 1 1 -cosigner%1:18:00:: 1 1 -cosily%4:02:00:: 1 1 -cosmetics%1:06:00:: 1 2 -cosmic%3:01:00:: 1 7 -cosmos%1:14:00:: 2 1 -cosmos%1:17:00:: 1 1 -cosponsor%2:40:00:: 1 2 -cost%1:07:00:: 2 7 -cost%1:07:01:: 3 4 -cost%1:21:00:: 1 75 -cost%2:42:00:: 1 35 -cost%2:42:01:: 2 16 -cost-plus%5:00:00:indeterminate:01 1 1 -cost_accountant%1:18:00:: 1 1 -cost_analysis%1:04:00:: 1 1 -cost_of_living%1:21:00:: 1 3 -costly%5:00:01:expensive:00 2 2 -costly%5:00:02:expensive:00 1 2 -costume%1:06:00:: 1 7 -costume%1:06:02:: 2 1 -costume%2:29:00:: 1 1 -costume%3:01:00:: 1 1 -cottage%1:06:00:: 1 4 -cottage_tent%1:06:00:: 1 1 -cotter_pin%1:06:00:: 1 1 -cotton%1:06:00:: 2 2 -cotton%1:27:01:: 1 6 -cottonmouth%1:05:00:: 1 1 -couch%1:06:00:: 1 5 -couch%2:32:00:: 1 1 -cough%2:29:00:: 1 6 -coughing%1:04:00:: 1 1 -could%2:42:00:: 1 5 -council%1:14:01:: 1 8 -counsel%1:18:00:: 1 5 -counsel%2:32:00:: 1 3 -counseling%1:10:00:: 1 4 -counselor%1:18:01:: 1 3 -counselor%1:18:02:: 2 1 -count%1:04:00:: 2 4 -count%1:23:00:: 1 4 -count%2:31:00:: 6 2 -count%2:32:00:: 1 23 -count%2:32:01:: 4 3 -count%2:32:03:: 3 4 -count%2:42:00:: 2 7 -count%2:42:01:: 5 2 -count_on%2:31:00:: 1 8 -count_on%2:31:01:: 2 1 -count_upon%2:31:00:: 1 1 -countenance%1:07:00:: 1 6 -countenance%1:08:00:: 3 1 -countenance%1:10:00:: 2 1 -counter%1:06:00:: 1 3 -counter%1:06:01:: 3 1 -counter%1:06:03:: 2 1 -counter%1:06:04:: 4 1 -counter%2:32:00:: 1 2 -counter%2:41:00:: 2 1 -counter%4:02:00:: 1 1 -counter%5:00:00:negative:02 1 2 -counter-drill%2:35:00:: 1 1 -counteract%2:41:00:: 1 2 -counteract%2:41:02:: 2 1 -counteract%2:41:03:: 3 1 -counterattack%1:04:00:: 1 1 -counterattack%2:33:00:: 1 1 -counterbalance%1:06:00:: 1 1 -counterbalance%2:42:01:: 1 1 -counterbalanced%5:00:00:balanced:00 1 1 -counterchallenge%2:32:00:: 1 1 -counteroffensive%1:04:00:: 1 1 -counterpart%1:06:00:: 2 1 -counterpart%1:09:00:: 1 12 -counterpoint%1:10:00:: 1 2 -counterpoint%2:42:00:: 1 1 -counterproposal%1:10:00:: 1 1 -countershot%1:04:00:: 1 1 -countervailing%5:00:02:counteractive:00 1 1 -counting%1:04:00:: 1 2 -countless%5:00:00:incalculable:00 1 5 -country%1:14:00:: 1 68 -country%1:14:01:: 3 12 -country%1:15:00:: 2 29 -country%1:15:01:: 4 11 -country%1:15:02:: 5 3 -country%5:00:01:rural:00 1 2 -country_club%1:14:00:: 1 1 -country_doctor%1:18:00:: 1 1 -country_store%1:06:00:: 1 1 -countryman%1:18:00:: 1 4 -countryside%1:15:00:: 1 2 -countrywide%5:00:00:wide:00 1 1 -county%1:15:00:: 1 34 -county%3:01:00:: 1 1 -countywide%5:00:00:wide:00 1 1 -coup%1:04:00:: 1 1 -coup%1:04:01:: 2 1 -couple%1:14:00:: 1 13 -couple%1:14:01:: 2 9 -couple%1:23:00:: 4 2 -couple%1:23:01:: 3 6 -couple%2:35:01:: 2 2 -couple%2:35:02:: 1 5 -couple%2:41:00:: 3 1 -coupling%1:06:01:: 1 2 -coupon%1:09:00:: 2 1 -coupon%1:10:00:: 1 1 -courage%1:07:00:: 1 15 -courageous%3:00:04:: 1 1 -courier%1:18:00:: 1 1 -course%1:04:00:: 4 9 -course%1:04:01:: 1 61 -course%1:14:00:: 2 14 -course%1:15:00:: 3 11 -course%1:17:00:: 5 5 -course%4:02:00:: 1 1 -court%1:06:01:: 4 2 -court%1:06:02:: 2 5 -court%1:14:00:: 1 42 -court%1:14:01:: 3 3 -court%2:41:00:: 1 5 -court%2:41:01:: 2 1 -court_order%1:10:00:: 1 2 -courteous%5:00:00:polite:00 1 1 -courtesy%1:04:00:: 1 2 -courtier%1:18:00:: 1 2 -courtyard%1:06:00:: 1 2 -cousin%1:18:00:: 1 5 -cove%1:17:00:: 1 1 -cover%1:04:00:: 3 4 -cover%1:04:01:: 7 1 -cover%1:06:01:: 2 8 -cover%1:06:02:: 1 9 -cover%1:06:03:: 6 1 -cover%1:06:04:: 4 2 -cover%1:17:00:: 5 1 -cover%2:32:00:: 14 1 -cover%2:32:01:: 5 14 -cover%2:32:02:: 8 3 -cover%2:32:12:: 13 1 -cover%2:33:00:: 12 1 -cover%2:33:01:: 9 2 -cover%2:35:00:: 1 35 -cover%2:35:01:: 2 19 -cover%2:38:00:: 7 4 -cover%2:39:12:: 11 1 -cover%2:41:01:: 10 1 -cover%2:42:00:: 4 16 -cover%2:42:01:: 3 18 -cover%2:42:02:: 6 10 -cover_up%2:32:00:: 2 2 -cover_up%2:39:12:: 1 2 -coverage%1:07:00:: 2 1 -coverage%1:21:00:: 1 1 -covered%3:00:00:: 1 12 -covered_wagon%1:06:00:: 1 1 -coverlet%1:06:00:: 1 1 -covertly%4:02:00:: 1 2 -covet%2:37:00:: 1 1 -covetousness%1:12:01:: 1 1 -cow%1:05:01:: 1 20 -cow%1:05:02:: 2 1 -coward%1:18:00:: 1 4 -cowardice%1:07:00:: 1 2 -cowardly%3:00:00:: 1 2 -cowboy%1:18:00:: 1 9 -cower%2:38:01:: 1 1 -cowhand%1:18:00:: 1 1 -cowhide%1:27:00:: 1 1 -cowled%5:00:00:clothed:00 1 1 -cowling%1:06:00:: 1 1 -cowpuncher%1:18:00:: 1 1 -cows%1:05:00:: 1 5 -coyness%1:07:00:: 1 2 -coyote%1:05:00:: 1 1 -cozy%5:00:00:comfortable:00 1 2 -cps%1:28:00:: 1 3 -cr%1:27:00:: 1 3 -crab%1:05:00:: 1 1 -crack%1:06:00:: 2 2 -crack%1:11:00:: 4 1 -crack%1:17:00:: 1 3 -crack%1:25:00:: 3 1 -crack%2:30:00:: 7 1 -crack%2:30:01:: 1 6 -crack%2:30:02:: 6 1 -crack%2:30:09:: 5 2 -crack%2:35:00:: 4 2 -crack%2:39:00:: 3 2 -crack%2:39:01:: 2 4 -crack%5:00:00:superior:02 1 2 -crack_up%2:37:00:: 1 1 -cracked%5:00:00:broken:01 2 1 -cracked%5:00:02:rough:00 1 1 -cracker%1:13:00:: 1 1 -cracker_box%1:06:00:: 1 4 -cracking%1:04:00:: 2 1 -cracking%1:11:00:: 1 1 -cracking%5:00:00:noisy:00 1 1 -crackle%1:11:00:: 1 2 -crackle%2:30:00:: 3 1 -crackle%2:32:00:: 2 1 -crackle%2:39:00:: 1 2 -crackling%5:00:00:noisy:00 1 1 -crackpot%1:18:00:: 1 1 -cradle%1:06:00:: 1 2 -cradle%1:15:00:: 2 1 -cradle%2:35:00:: 1 3 -craft%1:04:00:: 1 3 -craft%1:06:00:: 2 1 -crafter%1:18:00:: 1 1 -craftsman%1:18:00:: 3 1 -craftsman%1:18:01:: 2 1 -craftsman%1:18:02:: 1 1 -craftsmanship%1:09:00:: 1 1 -crafty%5:00:00:artful:00 1 1 -crag%1:17:00:: 1 1 -craggy%5:00:00:rough:00 1 1 -cram%2:35:00:: 1 1 -cramp%1:26:00:: 1 1 -crane%2:29:00:: 1 2 -crank_call%1:10:00:: 1 1 -cranky%5:00:00:unstable:00 1 1 -crash%1:04:00:: 4 1 -crash%1:11:00:: 2 4 -crash%1:11:01:: 1 9 -crash%1:11:02:: 3 1 -crash%2:35:00:: 3 2 -crash%2:35:01:: 5 1 -crash%2:38:01:: 2 3 -crash%2:38:02:: 1 9 -crash%2:38:04:: 4 1 -crash%5:00:00:intense:00 1 1 -crassness%1:07:00:: 1 1 -crate%1:06:00:: 1 1 -crave%2:34:00:: 1 5 -craved%5:00:00:wanted:00 1 1 -craven%5:00:00:cowardly:00 1 1 -crawl%1:04:03:: 1 1 -crawl%2:38:00:: 1 32 -crawl%2:42:01:: 2 1 -crawling%5:00:00:moving:02 1 1 -crawling%5:00:00:slow:01 2 1 -craze%1:09:00:: 1 1 -crazed%5:00:00:insane:00 1 1 -crazily%4:02:00:: 1 2 -crazy%5:00:00:excited:00 4 1 -crazy%5:00:00:impractical:00 2 2 -crazy%5:00:00:insane:00 1 10 -crazy%5:00:00:loving:00 3 2 -creak%2:39:00:: 1 9 -creaking%1:11:00:: 1 1 -creaking%5:00:00:noisy:00 1 2 -cream%1:14:00:: 1 2 -creamy%5:00:00:chromatic:00 1 1 -crease%2:35:00:: 1 1 -creased%5:00:00:wrinkled:00 1 1 -create%2:36:00:: 1 94 -create%2:36:01:: 3 6 -create%2:36:02:: 2 38 -creation%1:04:00:: 1 5 -creation%1:04:01:: 4 2 -creation%1:04:02:: 5 1 -creation%1:06:00:: 2 4 -creation%1:11:00:: 3 2 -creative%3:00:00:: 1 13 -creative%5:00:00:constructive:00 2 3 -creatively%4:02:00:: 1 1 -creativeness%1:09:00:: 1 1 -creativity%1:09:00:: 1 2 -creator%1:18:00:: 2 1 -creator%1:18:01:: 1 3 -creature%1:03:00:: 1 16 -creature%1:18:01:: 2 2 -creature%1:18:02:: 3 1 -creche%1:06:00:: 1 1 -credible%3:00:00:: 1 1 -credible%5:00:00:credulous:00 2 1 -credit%1:04:00:: 6 1 -credit%1:04:01:: 4 3 -credit%1:10:00:: 1 7 -credit%1:21:00:: 5 2 -credit%1:21:01:: 3 4 -credit%1:21:02:: 2 5 -credit%2:31:00:: 4 1 -credit%2:31:01:: 1 4 -credit%2:31:12:: 2 3 -credit%2:40:00:: 3 2 -credit_system%1:09:00:: 1 1 -creditable%5:00:00:worthy:00 1 1 -credo%1:09:00:: 1 6 -creed%1:09:00:: 1 2 -creed%1:10:00:: 2 1 -creedal%3:01:00:: 1 1 -creek%1:17:00:: 1 7 -creep%2:38:00:: 1 11 -creep%2:38:04:: 2 4 -creep%2:38:06:: 3 2 -creep_feed%1:13:00:: 1 1 -creep_up%2:38:00:: 1 1 -creeper%1:20:00:: 1 1 -creeping%5:00:00:moving:02 1 1 -cremate%2:30:00:: 1 1 -crescendo%1:07:00:: 1 1 -crescendo%5:00:00:increasing:02 1 1 -crest%1:15:00:: 1 8 -crest%1:15:01:: 2 3 -crested%5:00:03:adorned:00 1 1 -crevice%1:25:00:: 1 1 -crew%1:14:00:: 2 4 -crew%1:14:01:: 1 15 -crew_member%1:18:00:: 1 2 -crib%1:06:00:: 1 3 -cricket%1:05:00:: 1 1 -crime%1:04:00:: 1 18 -crime%1:04:01:: 2 2 -criminal%1:18:00:: 1 12 -criminal%3:01:00:: 1 3 -criminal%5:00:00:guilty:00 3 1 -criminal%5:00:00:wrong:01 2 1 -criminal_law%1:10:00:: 1 1 -criminality%1:26:00:: 1 2 -crimson%1:07:00:: 1 1 -crimson%5:00:00:bloody:00 2 5 -crimson%5:00:00:chromatic:00 1 7 -cringe%2:38:00:: 2 1 -cringe%2:38:01:: 1 2 -cringing%5:00:00:cowardly:00 1 1 -cripple%1:18:00:: 1 1 -cripple%2:30:00:: 1 2 -crippled%5:00:00:unfit:01 1 1 -crippling%5:00:00:unhealthful:00 1 1 -crisis%1:11:00:: 2 8 -crisis%1:26:00:: 1 9 -crisp%1:13:00:: 1 1 -crisp%5:00:00:distinct:00 1 3 -crispness%1:07:02:: 1 2 -crisscross%2:38:00:: 1 1 -crisscrossed%5:00:00:reticulate:00 1 3 -criterion%1:09:00:: 2 2 -criterion%1:10:00:: 1 3 -critic%1:18:00:: 1 6 -critic%1:18:01:: 2 2 -critical%3:00:01:: 1 7 -critical%3:00:02:: 3 5 -critical%3:00:03:: 6 1 -critical%3:00:04:: 2 5 -critical%5:00:00:crucial:00 5 2 -critical%5:00:00:indispensable:00 4 3 -critically%4:02:00:: 1 2 -criticise%2:32:00:: 1 2 -criticism%1:09:00:: 2 3 -criticism%1:10:00:: 1 6 -criticism%1:10:01:: 3 2 -criticize%2:32:00:: 1 13 -croak%2:30:00:: 1 1 -croaking%1:10:00:: 1 1 -crochet%2:36:01:: 1 1 -crocked%5:00:00:intoxicated:00 1 1 -crocketed%5:00:00:adorned:00 1 1 -crofter%1:18:00:: 1 1 -crone%1:18:00:: 1 1 -crony%1:18:00:: 1 1 -crook%1:18:00:: 1 2 -crook%1:25:00:: 2 1 -crooked%3:00:01:: 1 2 -croon%2:32:00:: 1 4 -crop%1:20:00:: 1 8 -crop%2:35:02:: 1 1 -crop_up%2:39:00:: 1 2 -cropped%3:00:00:: 1 1 -cross%1:06:00:: 3 1 -cross%1:06:01:: 1 2 -cross%1:07:00:: 2 1 -cross%2:38:00:: 1 47 -cross%2:38:03:: 2 7 -cross%2:38:04:: 4 1 -cross%2:41:00:: 3 1 -cross%5:00:00:crosswise:00 1 4 -cross%5:00:00:ill-natured:00 2 1 -cross-examination%1:10:00:: 1 1 -cross-legged%4:02:00:: 1 1 -cross-purpose%1:09:00:: 1 1 -cross-section%5:00:00:crosswise:00 1 1 -cross-sectional%3:01:00:: 1 2 -cross_off%2:32:00:: 1 1 -cross_section%1:15:00:: 1 3 -crossed%3:00:01:: 1 1 -crossing%1:04:01:: 1 1 -crossroad%1:06:00:: 1 1 -crossroads%1:09:00:: 3 1 -crossroads%1:14:00:: 1 4 -crossroads%1:26:00:: 2 1 -crotchety%5:00:00:ill-natured:00 1 1 -crouch%1:04:00:: 1 2 -crouch%2:35:00:: 2 7 -crouch%2:38:00:: 1 9 -crow%1:05:00:: 1 2 -crow%1:11:00:: 2 1 -crow%2:32:00:: 1 2 -crow%2:32:01:: 2 2 -crow%2:32:02:: 3 1 -crowbait%1:05:00:: 1 1 -crowd%1:14:00:: 1 35 -crowd%1:14:01:: 2 1 -crowd%2:38:00:: 3 2 -crowd%2:38:01:: 1 6 -crowd%2:38:02:: 4 1 -crowd%2:42:00:: 2 3 -crowd_together%2:38:00:: 1 1 -crowded%3:00:00:: 1 12 -crown%1:06:00:: 5 1 -crown%1:06:01:: 4 1 -crown%1:06:02:: 3 1 -crown%1:08:00:: 2 1 -crown%1:10:01:: 1 1 -crown%2:30:01:: 2 2 -crown%2:41:00:: 1 2 -crown_gall%1:26:00:: 1 7 -crowned%3:00:02:: 1 1 -crowning%5:00:00:ultimate:00 1 1 -crucial%3:00:00:: 1 6 -crucial%5:00:00:material:02 2 1 -crucifix%1:06:00:: 1 1 -crucifixion%1:04:00:: 1 1 -crucify%2:37:00:: 2 1 -crucify%2:41:00:: 1 2 -crude%5:00:00:indecent:00 2 2 -crude%5:00:01:unskilled:00 1 6 -crudely%4:02:00:: 1 1 -crudity%1:07:00:: 2 1 -crudity%1:26:00:: 1 1 -cruel%5:00:00:heartless:00 1 7 -cruel%5:00:01:inhumane:00 2 3 -cruel%5:00:02:inhumane:00 3 1 -cruelly%4:02:00:: 1 1 -cruelty%1:04:00:: 1 4 -cruelty%1:07:01:: 3 1 -cruelty%1:12:00:: 2 1 -cruise%2:38:02:: 2 2 -cruise%2:38:03:: 1 3 -crumble%2:38:00:: 1 2 -crumbled%5:00:00:broken:01 1 1 -crummy%5:00:00:inferior:02 1 2 -crumple%2:38:00:: 1 1 -crumpled%5:00:00:damaged:00 2 1 -crumpled%5:00:00:wrinkled:00 1 1 -crunch%1:11:00:: 1 1 -crunch%2:32:00:: 1 1 -crunched%3:44:00:: 1 1 -crupper%1:06:00:: 1 1 -crusade%1:04:00:: 1 2 -crusade%1:04:01:: 2 1 -crush%1:27:00:: 1 1 -crush%2:30:00:: 4 2 -crush%2:33:00:: 3 3 -crush%2:35:00:: 2 3 -crush%2:41:00:: 1 4 -crushed%5:00:00:defeated:00 3 1 -crushed%5:00:00:humble:00 2 1 -crushed%5:00:00:rough:00 1 2 -crusher%1:06:00:: 1 2 -crushing%5:00:00:destructive:00 1 4 -crust%1:17:00:: 1 1 -crusted%5:00:00:covered:00 1 2 -crutch%1:04:00:: 2 1 -crutch%1:06:00:: 1 2 -crux_of_the_matter%1:10:00:: 1 1 -cry%1:10:00:: 1 13 -cry%1:10:02:: 4 1 -cry%1:10:03:: 3 1 -cry%1:10:04:: 2 10 -cry%2:29:00:: 2 12 -cry%2:32:01:: 1 17 -cry%2:32:02:: 4 2 -cry%2:32:07:: 3 11 -cry_out%2:32:00:: 1 10 -cry_out_for%2:42:00:: 1 1 -crying%5:00:00:noisy:00 1 1 -cryostat%1:06:00:: 1 1 -cryptic%5:00:00:inexplicable:00 1 2 -crystal%1:06:02:: 2 2 -crystal%1:17:00:: 3 1 -crystal%1:27:00:: 1 4 -crystallite%1:17:00:: 1 1 -crystallize%2:30:01:: 3 1 -crystallize%2:30:02:: 1 2 -crystallize%2:31:00:: 2 1 -crystallography%1:09:00:: 1 1 -cu_ft%1:23:00:: 1 1 -cuba%1:15:00:: 1 17 -cuban%3:01:00:: 1 7 -cube%1:25:00:: 1 2 -cube%1:25:01:: 2 1 -cube%2:31:00:: 1 1 -cubic_foot%1:23:00:: 1 1 -cubism%1:14:00:: 1 5 -cubist%3:01:00:: 1 5 -cuckoo-bumblebee%1:05:00:: 1 1 -cud%1:13:01:: 1 1 -cuddle%2:35:00:: 1 2 -cuddle%2:35:01:: 2 1 -cuff%1:06:00:: 1 1 -cuffed%5:00:00:abused:01 1 1 -cufflink%1:06:00:: 1 1 -culminate%2:30:00:: 1 8 -culminate%2:30:03:: 2 1 -culmination%1:28:00:: 1 3 -culprit%1:18:00:: 1 1 -cult%1:09:01:: 2 1 -cult%1:14:00:: 1 3 -cult_of_personality%1:09:00:: 1 1 -cultist%1:18:00:: 1 2 -cultivate%2:36:00:: 1 3 -cultivate%2:36:01:: 2 1 -cultivation%1:04:00:: 2 1 -cultivation%1:04:01:: 1 1 -cultural%3:01:00:: 3 3 -cultural%3:01:01:: 1 9 -cultural%5:00:00:social:00 2 8 -culturally%4:02:00:: 1 3 -culture%1:04:01:: 4 1 -culture%1:09:00:: 2 12 -culture%1:09:01:: 3 6 -culture%1:14:00:: 1 17 -cultured%5:00:00:refined:01 1 2 -cumbersome%5:00:00:unwieldy:00 1 2 -cumulative%5:00:00:additive:00 1 5 -cumulus%1:17:00:: 1 1 -cunning%1:09:00:: 1 2 -cup%1:06:00:: 1 14 -cup%1:23:01:: 2 7 -cup%1:25:00:: 3 2 -cup%2:30:00:: 1 2 -cup_of_tea%1:04:00:: 1 1 -cupboard%1:06:00:: 1 2 -cur%1:05:00:: 1 1 -curb%1:06:00:: 1 5 -curb%2:30:01:: 2 2 -curb%2:41:00:: 1 2 -curbside%1:06:00:: 1 2 -curdling%3:44:00:: 1 1 -cure%1:06:00:: 1 8 -cure%2:29:00:: 1 12 -cure%2:30:00:: 2 1 -cure-all%1:06:00:: 1 3 -curio%1:06:00:: 1 2 -curiosity%1:09:00:: 1 19 -curious%3:00:00:: 2 13 -curious%5:00:00:strange:00 1 14 -curiously%4:02:00:: 2 2 -curiously%4:02:01:: 1 3 -curl%2:30:00:: 1 3 -curl%2:35:00:: 4 1 -curl%2:35:01:: 3 2 -curl%2:38:00:: 2 2 -curl_up%2:38:01:: 1 1 -curled%5:00:00:coiled:00 1 1 -curled_up%5:00:00:coiled:00 1 2 -curling%5:00:00:moving:02 1 1 -curly%3:00:00:: 1 2 -currant%1:13:01:: 1 1 -currency%1:07:02:: 2 1 -currency%1:21:00:: 1 1 -current%1:11:00:: 2 6 -current%1:14:00:: 3 1 -current%1:19:01:: 1 11 -current%3:00:00:: 1 17 -currently%4:02:00:: 1 4 -curricular%3:01:00:: 1 1 -curriculum%1:10:00:: 1 7 -curse%1:10:00:: 1 5 -curse%1:10:01:: 2 1 -curse%1:10:02:: 3 1 -curse%2:32:00:: 1 17 -curse%2:32:01:: 3 2 -curse%2:32:02:: 2 10 -cursed%3:00:00:: 1 2 -cursing%3:44:00:: 1 3 -cursory%5:00:00:careless:00 1 1 -curtail%2:30:00:: 1 5 -curtain%1:06:00:: 1 6 -curtain%1:17:00:: 2 2 -curtain_call%1:10:00:: 1 2 -curtain_raiser%1:04:00:: 1 1 -curtained%3:00:00:: 1 1 -curtly%4:02:00:: 1 1 -curtness%1:07:00:: 1 1 -curvaceously%4:02:00:: 1 1 -curve%1:04:02:: 3 1 -curve%1:10:00:: 2 10 -curve%1:25:00:: 1 20 -curve%2:38:00:: 1 2 -curve%2:38:01:: 3 1 -curve%2:42:00:: 2 1 -curved%3:00:00:: 1 5 -curving%3:00:00:: 1 4 -cushion%1:06:01:: 1 1 -cushion%2:35:00:: 1 2 -cushioning%1:06:00:: 1 1 -cusp%1:06:00:: 1 1 -cuss%1:18:00:: 1 1 -cuss%1:18:01:: 2 1 -cuss%2:32:00:: 1 1 -custodial%5:00:00:protective:00 1 1 -custodian%1:18:00:: 1 1 -custody%1:26:00:: 1 1 -custom%1:04:00:: 1 4 -custom%1:09:00:: 2 3 -custom%5:00:00:custom-made:00 1 1 -custom-make%2:36:00:: 1 1 -customarily%4:02:00:: 1 2 -customary%5:00:00:conventional:00 1 4 -customary%5:00:00:usual:00 2 4 -customer%1:18:00:: 1 25 -cut%1:06:00:: 3 1 -cut%1:10:00:: 2 1 -cut%1:21:00:: 1 1 -cut%2:30:06:: 2 18 -cut%2:30:07:: 10 1 -cut%2:32:00:: 9 1 -cut%2:35:00:: 1 58 -cut%2:35:07:: 8 1 -cut%2:35:10:: 4 2 -cut%2:36:00:: 7 1 -cut%2:36:01:: 6 1 -cut%2:38:08:: 3 3 -cut%2:41:13:: 5 1 -cut%3:00:01:: 1 3 -cut%3:00:03:: 2 1 -cut%5:00:00:abridged:00 3 1 -cut_across%2:38:00:: 1 4 -cut_across%2:42:00:: 2 2 -cut_away%2:38:00:: 1 1 -cut_back%2:30:01:: 2 1 -cut_back%2:38:00:: 1 1 -cut_corners%2:36:00:: 1 1 -cut_down%2:30:00:: 1 8 -cut_down%2:33:00:: 4 1 -cut_down%2:35:00:: 3 1 -cut_down%2:35:03:: 2 1 -cut_glass%1:06:00:: 1 1 -cut_off%2:30:00:: 2 6 -cut_off%2:32:00:: 1 8 -cut_off%2:35:00:: 3 2 -cut_off%5:00:00:cut:01 1 1 -cut_out%2:30:00:: 1 2 -cut_out%2:35:02:: 2 1 -cut_out%2:35:03:: 3 1 -cut_short%2:30:02:: 1 3 -cut_short%2:30:04:: 2 1 -cut_through%2:38:00:: 1 1 -cut_to_ribbons%2:33:00:: 1 1 -cut_up%2:30:02:: 2 1 -cut_up%2:35:00:: 1 2 -cute%5:00:00:artful:00 2 1 -cute%5:00:00:attractive:01 1 1 -cutlass%1:06:00:: 1 1 -cutting%1:04:01:: 3 1 -cutting%1:04:03:: 1 2 -cutting%1:20:00:: 2 1 -cutting_edge%1:09:00:: 1 1 -cyclades%1:14:00:: 1 1 -cycle%1:11:01:: 5 1 -cycle%1:11:02:: 3 2 -cycle%1:14:00:: 2 2 -cycle%1:28:00:: 1 4 -cycle%1:28:02:: 4 1 -cycle%2:38:02:: 2 1 -cycle%2:38:03:: 1 1 -cyclist%1:18:00:: 1 8 -cyclohexanol_phthalate%1:27:00:: 1 1 -cylinder%1:25:02:: 1 1 -cylindrical%5:00:00:rounded:00 1 5 -cynic%1:18:00:: 1 1 -cynical%5:00:00:distrustful:00 1 2 -cypress_tree%1:20:00:: 1 1 -cyst%1:26:00:: 1 3 -cytolysis%1:26:00:: 1 1 -cytoplasm%1:08:00:: 1 4 -czechoslovakia%1:15:00:: 1 4 -dab%1:04:00:: 1 1 -dab%2:35:00:: 2 1 -dab%2:35:01:: 1 2 -dabble%2:38:00:: 1 1 -dabble_in%2:41:00:: 1 1 -dabbled%5:00:00:covered:00 1 1 -dad%1:18:00:: 1 3 -dadaism%1:14:00:: 1 1 -daddy%1:18:00:: 1 2 -daffodil%1:20:00:: 1 1 -dagger%1:06:00:: 1 1 -daily%3:01:00:: 2 7 -daily%4:02:00:: 1 37 -daily%5:00:00:regular:00 1 9 -daily_variation%1:11:00:: 1 1 -daintily%4:02:00:: 1 1 -dainty%5:00:00:delicate:00 2 1 -dainty%5:00:00:refined:01 1 1 -daiquiri%1:13:00:: 1 1 -dairy%1:06:00:: 1 1 -dairy_cattle%1:05:00:: 1 4 -dairy_cow%1:05:00:: 1 4 -dairyman%1:18:00:: 1 1 -dais%1:06:00:: 1 1 -daisy%1:20:00:: 1 1 -dallas%1:15:00:: 1 19 -dam%1:06:00:: 1 2 -dam%2:35:00:: 1 1 -damage%1:04:00:: 3 1 -damage%1:11:00:: 1 11 -damage%1:11:01:: 2 1 -damage%2:30:00:: 1 12 -damaging%5:00:00:harmful:00 1 1 -damascus%1:15:00:: 1 1 -dame%1:18:00:: 1 1 -damn%1:07:00:: 1 1 -damn%2:32:00:: 1 7 -damn%4:02:00:: 1 2 -damn%5:00:00:cursed:00 1 19 -damn%5:00:02:cursed:00 2 2 -damnation%1:10:00:: 1 2 -damned%1:14:00:: 1 2 -damned%4:02:00:: 1 1 -damned%5:00:00:cursed:00 1 8 -damned%5:00:00:lost:02 2 6 -damp%5:00:00:wet:01 1 6 -dampen%2:30:01:: 2 2 -dampen%2:30:05:: 1 3 -dance%1:04:00:: 3 1 -dance%1:10:00:: 1 15 -dance%1:14:00:: 2 3 -dance%2:36:00:: 2 14 -dance%2:38:01:: 1 17 -dance%2:38:02:: 3 2 -dancer%1:18:00:: 1 8 -dancing%1:04:00:: 1 6 -dancing%5:00:00:active:01 1 1 -dancing_school%1:14:00:: 1 1 -dandelion%1:20:00:: 1 1 -dandily%4:02:00:: 1 1 -dane%1:18:00:: 1 1 -danger%1:04:00:: 2 8 -danger%1:15:00:: 4 1 -danger%1:26:00:: 1 18 -danger%1:26:01:: 3 6 -danger_line%1:15:00:: 1 1 -dangerous%3:00:00:: 1 22 -dangerous%5:00:00:critical:03 2 1 -dangerously%4:02:00:: 1 2 -dangle%2:35:00:: 2 2 -dangle%2:42:00:: 1 3 -dangling_modifier%1:10:00:: 1 1 -danish%1:10:00:: 1 2 -danish%3:01:00:: 1 3 -dank%5:00:00:wet:01 1 1 -dante%1:18:00:: 1 1 -dapper%5:00:00:fashionable:00 1 2 -dappled%5:00:00:patterned:00 1 1 -dare%2:32:00:: 3 3 -dare%2:41:00:: 1 11 -dare%2:41:01:: 2 10 -daring%1:07:00:: 2 1 -daring%1:10:00:: 1 1 -daring%5:00:00:adventurous:00 1 1 -dark%1:09:00:: 5 2 -dark%1:15:00:: 3 4 -dark%1:26:00:: 1 9 -dark%1:26:01:: 2 5 -dark%1:28:00:: 4 3 -dark%3:00:01:: 1 49 -dark%3:00:02:: 2 27 -dark%5:00:00:brunet:00 3 13 -dark%5:00:00:cheerless:00 5 5 -dark%5:00:00:evil:00 4 5 -dark-blue%5:00:00:chromatic:00 1 2 -dark-brown%5:00:00:chromatic:00 1 1 -dark-green%5:00:00:chromatic:00 1 1 -dark-haired%5:00:00:brunet:00 1 1 -dark-skinned%5:00:00:black:02 1 1 -dark_ages%1:28:00:: 1 4 -dark_blue%1:07:00:: 1 1 -dark_bread%1:13:00:: 1 1 -dark_field_illumination%1:04:00:: 1 1 -darken%2:30:00:: 1 4 -darken%2:39:00:: 2 1 -darkening%5:00:00:dark:01 1 1 -darkly%4:02:00:: 1 1 -darkness%1:09:00:: 4 1 -darkness%1:15:00:: 2 6 -darkness%1:26:00:: 1 20 -darkness%1:26:01:: 3 2 -darling%1:18:00:: 1 3 -darling%5:00:00:loved:00 1 1 -darn%2:35:00:: 1 1 -darned%5:00:02:cursed:00 1 6 -dart%2:38:00:: 2 1 -dart%2:38:01:: 1 3 -dart%2:38:02:: 3 1 -darwin%1:18:00:: 1 1 -dash%1:04:01:: 2 1 -dash%1:07:00:: 1 1 -dash%2:30:00:: 2 2 -dash%2:35:02:: 3 1 -dash%2:38:00:: 1 7 -dashing%5:00:00:spirited:00 1 1 -data%1:14:00:: 1 76 -data_processing%1:22:00:: 1 1 -date%1:14:00:: 3 3 -date%1:18:00:: 2 3 -date%1:28:00:: 1 23 -date%1:28:02:: 5 1 -date%1:28:04:: 4 1 -date%2:31:00:: 3 1 -date%2:31:02:: 2 1 -date%2:41:00:: 1 1 -date_back%2:42:00:: 1 5 -date_from%2:42:00:: 1 3 -dated%5:00:00:unfashionable:00 1 1 -datum%1:09:00:: 1 5 -daughter%1:18:00:: 1 23 -daunt%2:37:00:: 1 1 -dauntless%5:00:00:bold:00 1 1 -davy's_gray%1:27:00:: 1 1 -dawn%1:11:01:: 2 1 -dawn%1:28:00:: 1 11 -dawn%2:31:13:: 1 1 -dawning%1:28:00:: 1 1 -day%1:28:00:: 1 169 -day%1:28:01:: 3 54 -day%1:28:02:: 4 38 -day%1:28:03:: 2 70 -day%1:28:04:: 5 11 -day%1:28:05:: 6 7 -day-after-day%5:00:00:regular:00 1 1 -day-to-day%5:00:00:regular:00 1 1 -day_after_day%4:02:00:: 1 1 -day_by_day%4:02:00:: 1 3 -day_camp%1:06:00:: 1 1 -day_off%1:28:00:: 1 2 -day_school%1:14:00:: 1 5 -day_watch%1:14:00:: 1 3 -daybed%1:06:01:: 1 1 -daybreak%1:28:00:: 1 1 -daydream%2:36:00:: 1 1 -daylight%1:19:00:: 2 2 -daylight%1:28:00:: 1 3 -days%1:28:00:: 1 1 -daytime%1:28:00:: 1 1 -dazed%5:00:00:confused:00 1 3 -dazed%5:00:00:lethargic:00 2 2 -dazzle%2:39:00:: 1 3 -dazzling%5:00:01:impressive:00 1 2 -dc%1:15:00:: 1 7 -dc%1:19:00:: 2 1 -de-iodinase%1:27:00:: 1 1 -de-iodinate%2:30:00:: 1 2 -de-iodinating%3:00:00:: 1 2 -de-iodination%1:22:00:: 1 1 -deacon%1:18:01:: 1 4 -dead%1:14:00:: 1 9 -dead%1:28:00:: 2 1 -dead%3:00:01:: 1 72 -dead%3:00:02:: 2 4 -dead%5:00:00:absolute:00 6 1 -dead%5:00:00:extinct:02 5 1 -dead%5:00:00:precise:00 4 1 -dead%5:00:00:tired:00 3 2 -dead_body%1:08:00:: 1 3 -dead_end%1:06:00:: 1 1 -dead_letter%1:26:00:: 1 1 -dead_person%1:18:00:: 1 1 -dead_room%1:06:00:: 1 1 -deaden%2:30:06:: 1 1 -deadened%5:00:00:dull:04 2 1 -deadened%5:00:00:insensitive:01 1 1 -deadhead%1:18:00:: 1 1 -deadline%1:28:00:: 1 2 -deadlock%1:26:00:: 1 2 -deadly%5:00:01:fatal:00 1 6 -deadly%5:00:02:fatal:00 2 1 -deadly_sin%1:04:00:: 1 1 -deae_cellulose%1:27:00:: 1 12 -deaf%1:14:00:: 1 2 -deaf%3:00:00:: 1 7 -deafening%5:00:00:loud:00 1 1 -deal%1:04:02:: 1 8 -deal%1:10:00:: 2 2 -deal%1:23:00:: 3 1 -deal%2:31:10:: 2 15 -deal%2:32:08:: 1 34 -deal%2:40:00:: 6 4 -deal%2:40:01:: 5 5 -deal%2:40:02:: 9 2 -deal%2:41:00:: 4 9 -deal%2:41:04:: 8 3 -deal%2:41:09:: 3 14 -deal%2:41:13:: 7 3 -dealer%1:14:00:: 2 2 -dealer%1:18:02:: 1 8 -dealing%1:04:01:: 1 1 -dealings%1:04:02:: 1 1 -dean%1:18:00:: 1 1 -dear%1:18:00:: 1 4 -dear%5:00:00:close:02 2 1 -dear%5:00:00:loved:00 1 8 -dearly%4:02:00:: 2 1 -dearly%4:02:02:: 1 2 -death%1:11:00:: 1 45 -death%1:18:00:: 6 3 -death%1:19:00:: 2 39 -death%1:26:00:: 3 24 -death%1:26:01:: 7 1 -death%1:28:00:: 4 14 -death%1:28:01:: 5 4 -deathbed%1:28:00:: 1 2 -deathlike%5:00:00:dead:01 1 2 -deathly%5:00:00:dead:01 1 1 -debacle%1:11:02:: 1 1 -debate%1:10:00:: 2 5 -debate%1:10:01:: 1 17 -debate%2:31:00:: 1 2 -debate%2:32:00:: 3 1 -debate%2:32:01:: 4 1 -debate%2:32:02:: 2 1 -debauch%1:04:00:: 1 1 -debilitate%2:30:00:: 1 1 -debilitating%3:00:00:: 1 2 -debility%1:26:00:: 1 2 -debris%1:27:00:: 1 5 -debt%1:21:00:: 2 3 -debt%1:26:00:: 1 3 -debunking%1:04:00:: 1 1 -debut%1:04:00:: 1 5 -debut%2:36:00:: 2 1 -debut%2:36:02:: 1 2 -dec%1:28:00:: 1 9 -decade%1:28:00:: 1 25 -decadent%5:00:00:indulgent:00 1 1 -decay%1:19:00:: 3 1 -decay%1:22:01:: 2 2 -decay%1:22:02:: 1 2 -decay%2:30:00:: 2 2 -decay%2:30:01:: 1 3 -decayed%5:00:00:rotten:00 1 1 -deceased%1:18:00:: 1 1 -deceased%5:00:00:dead:01 1 4 -decedent%1:18:00:: 1 2 -deceit%1:07:00:: 1 1 -deceive%2:32:00:: 2 2 -deceive%2:41:00:: 1 5 -decelerate%2:30:00:: 1 1 -deceleration%1:07:00:: 1 2 -december%1:28:00:: 1 14 -december_31%1:28:00:: 1 1 -decency%1:07:00:: 1 2 -decency%1:07:01:: 2 2 -decent%4:02:00:: 1 1 -decent%5:00:00:proper:00 2 1 -decent%5:00:00:respectable:00 1 3 -decently%4:02:00:: 1 1 -decentralize%2:30:00:: 1 1 -deceptive%5:00:00:unreal:02 1 2 -deceptively%4:02:00:: 1 1 -decertify%2:41:00:: 1 1 -decide%2:31:00:: 1 123 -decide%2:31:01:: 2 6 -decide%2:31:02:: 3 4 -decidedly%4:02:00:: 1 3 -decimeter%1:23:00:: 1 1 -decision%1:04:00:: 1 25 -decision%1:09:00:: 2 10 -decision%1:11:01:: 4 1 -decision%1:11:02:: 3 2 -decision_making%1:09:00:: 1 2 -decisive%3:00:00:: 1 8 -decisive%5:00:00:definite:00 2 1 -decisively%4:02:01:: 1 2 -deck%1:06:00:: 1 6 -deck%1:06:01:: 2 2 -deck%1:14:00:: 3 1 -deck_chair%1:06:00:: 1 1 -deck_of_cards%1:14:00:: 1 1 -deck_out%2:29:00:: 1 1 -declaim%2:32:00:: 1 2 -declamation%1:10:00:: 1 1 -declaration%1:10:00:: 1 4 -declaration%1:10:02:: 2 1 -declaration_of_estimated_tax%1:10:00:: 1 1 -declaration_of_independence%1:10:00:: 1 5 -declarative%3:00:00:: 1 1 -declare%2:32:00:: 1 33 -declare%2:32:01:: 3 11 -declare%2:32:02:: 5 6 -declare%2:32:04:: 4 9 -declare%2:32:05:: 2 13 -declare%2:41:00:: 6 1 -declared%3:00:00:: 1 1 -decline%1:22:01:: 3 1 -decline%1:22:02:: 1 4 -decline%1:26:00:: 2 2 -decline%2:30:00:: 4 2 -decline%2:30:01:: 1 5 -decline%2:32:00:: 3 4 -decline%2:40:00:: 2 4 -declining%5:00:00:falling:00 1 2 -declining%5:00:00:regressive:01 2 1 -declivity%1:17:00:: 1 1 -decompose%2:30:00:: 1 3 -decomposition%1:09:00:: 1 8 -decomposition%1:26:00:: 2 3 -decor%1:06:00:: 1 1 -decorate%2:36:00:: 1 6 -decoration%1:06:00:: 1 4 -decorative%5:00:00:nonfunctional:00 1 1 -decorativeness%1:07:00:: 1 1 -decorator%1:18:00:: 2 1 -decorator%1:18:01:: 1 3 -decorum%1:07:00:: 1 1 -decrease%1:11:00:: 1 5 -decrease%2:30:00:: 1 13 -decrease%2:30:01:: 2 3 -decreasing%3:00:00:: 1 1 -decree%1:10:00:: 1 4 -decree%2:32:00:: 1 2 -decrement%1:07:00:: 1 2 -decry%2:32:00:: 1 4 -dedicate%2:32:00:: 1 4 -dedicated%3:00:00:: 1 3 -dedication%1:07:00:: 1 5 -dedifferentiated%5:00:00:undifferentiated:00 1 1 -deduce%2:31:00:: 1 7 -deduce%2:32:00:: 2 2 -deduct%2:31:01:: 1 13 -deduct%2:40:00:: 2 3 -deducted%5:00:00:subtracted:00 1 1 -deductible%3:00:00:: 1 3 -deduction%1:04:00:: 5 1 -deduction%1:09:00:: 4 1 -deduction%1:09:01:: 3 1 -deduction%1:21:00:: 2 1 -deduction%1:21:01:: 1 12 -deductive%3:01:00:: 1 1 -deed%1:04:00:: 1 9 -deed%1:10:00:: 2 1 -deem%2:31:00:: 1 13 -deep%3:00:01:: 3 11 -deep%3:00:02:: 1 16 -deep%4:02:00:: 1 3 -deep%5:00:00:colorful:00 7 3 -deep%5:00:00:distant:01 4 7 -deep%5:00:00:intense:00 5 6 -deep%5:00:00:low:03 6 5 -deep%5:00:00:profound:00 2 12 -deep%5:00:00:thick:01 8 2 -deep-eyed%5:00:00:thin:03 1 1 -deep-seated%5:00:00:established:00 1 1 -deep-set%5:00:00:hollow:00 1 2 -deep_in_thought%5:00:00:thoughtful:00 1 1 -deep_south%1:15:00:: 1 2 -deepen%2:30:00:: 2 1 -deepen%2:30:01:: 1 1 -deepening%1:22:00:: 1 1 -deeply%4:02:00:: 1 16 -deeply%4:02:03:: 2 3 -deer%1:05:00:: 1 2 -default%1:04:00:: 1 1 -default%2:40:00:: 1 1 -defeat%1:11:00:: 1 12 -defeat%1:12:00:: 2 3 -defeat%2:33:00:: 1 14 -defeat%2:41:00:: 2 5 -defecate%2:29:00:: 1 1 -defect%1:07:00:: 4 1 -defect%1:07:01:: 2 2 -defect%1:26:00:: 3 1 -defect%1:26:01:: 1 2 -defection%1:04:00:: 1 1 -defective%5:00:00:abnormal:00 2 1 -defective%5:00:00:imperfect:00 1 2 -defend%2:32:00:: 1 19 -defend%2:33:00:: 2 14 -defend%2:33:02:: 3 3 -defend%2:33:04:: 5 1 -defend%2:33:05:: 4 2 -defendant%1:18:00:: 1 4 -defender%1:18:00:: 1 3 -defense%1:04:00:: 1 17 -defense%1:04:03:: 2 9 -defense%1:10:00:: 4 2 -defense%1:10:01:: 8 1 -defense%1:14:00:: 7 1 -defense%1:14:01:: 3 2 -defense%1:14:02:: 6 1 -defense%1:22:00:: 5 1 -defense_policy%1:09:00:: 1 1 -defense_program%1:09:00:: 1 2 -defensible%5:00:00:invulnerable:00 1 1 -defensive%3:00:00:: 1 9 -defensive%5:00:00:apologetic:00 2 1 -defer%2:32:00:: 2 1 -defer%2:42:00:: 1 2 -deference%1:04:00:: 1 1 -defiance%1:07:00:: 1 3 -defiance%1:10:00:: 2 2 -defiant%3:00:00:: 1 2 -deficiency%1:07:00:: 2 2 -deficiency%1:26:00:: 1 6 -deficient%5:00:00:inadequate:00 1 1 -deficit%1:07:00:: 1 1 -definable%5:00:00:determinable:00 1 1 -define%2:32:00:: 2 13 -define%2:42:00:: 1 20 -define%2:42:01:: 3 9 -define%2:42:03:: 4 2 -defined%3:00:00:: 1 2 -defining%1:22:00:: 1 1 -definite%3:00:00:: 1 13 -definite%5:00:00:certain(p):01 2 1 -definitely%4:02:00:: 1 8 -definition%1:07:00:: 2 10 -definition%1:10:00:: 1 11 -definitive%5:00:00:explicit:00 1 2 -deflated%5:00:00:dejected:00 1 1 -deflection%1:26:00:: 1 1 -deformation%1:11:00:: 1 3 -deformational%3:01:00:: 1 1 -deformed%5:00:00:unshapely:00 1 1 -defraud%2:41:00:: 1 2 -defray%2:40:00:: 1 2 -defrost%2:30:00:: 1 1 -defy%2:32:00:: 3 1 -defy%2:42:00:: 1 9 -defy%2:42:01:: 2 2 -degas%2:30:00:: 1 1 -degenerate%2:30:00:: 1 1 -degeneration%1:22:00:: 1 1 -deglycerolize%2:38:00:: 1 1 -degradation%1:04:00:: 1 1 -degrade%2:35:00:: 1 1 -degree%1:07:00:: 1 25 -degree%1:09:00:: 5 6 -degree%1:10:00:: 3 13 -degree%1:23:00:: 4 7 -degree%1:23:03:: 6 1 -degree%1:26:01:: 2 17 -degree_of_freedom%1:09:00:: 1 1 -deign%2:41:00:: 1 1 -deity%1:18:00:: 1 2 -deja_vu%1:09:00:: 1 7 -dejected%3:00:00:: 1 1 -dejection%1:26:00:: 1 2 -delaware%1:17:00:: 1 1 -delaware_river%1:17:00:: 1 1 -delay%1:04:00:: 2 2 -delay%1:28:00:: 1 2 -delay%2:30:00:: 1 8 -delay%2:30:01:: 3 3 -delay%2:42:00:: 2 6 -delayed%3:00:00:: 1 8 -delegate%1:18:00:: 1 1 -delegate%2:41:00:: 2 1 -delegate%2:41:01:: 1 5 -delegation%1:14:00:: 1 1 -delhi_boil%1:26:00:: 1 1 -deliberate%5:00:00:intended:00 1 2 -deliberate%5:00:00:unhurried:00 2 2 -deliberately%4:02:00:: 1 12 -deliberately%4:02:01:: 2 2 -deliberation%1:09:01:: 2 1 -deliberation%1:10:00:: 1 1 -delicacy%1:07:00:: 1 2 -delicacy%1:13:00:: 2 1 -delicate%3:00:00:: 1 6 -delicate%5:00:00:breakable:00 3 3 -delicate%5:00:00:difficult:00 6 1 -delicate%5:00:00:refined:01 5 1 -delicate%5:00:00:skilled:00 2 3 -delicate%5:00:00:tender:02 4 1 -delicately%4:02:00:: 1 1 -delicious%5:00:00:pleasing:00 1 2 -delicious%5:00:00:tasteful:01 2 1 -deliciously%4:02:00:: 1 1 -delight%1:12:00:: 1 9 -delight%2:34:00:: 2 3 -delight%2:37:00:: 1 5 -delighted%5:00:00:pleased:00 1 3 -delightful%5:00:00:pleasing:00 1 11 -delightfully%4:02:00:: 1 2 -delimit%2:42:00:: 1 1 -delineation%1:10:01:: 1 1 -deliriously%4:02:00:: 1 1 -delirium%1:26:01:: 1 2 -deliver%2:32:00:: 1 21 -deliver%2:32:01:: 6 1 -deliver%2:32:02:: 7 1 -deliver%2:35:00:: 2 15 -deliver%2:40:01:: 3 6 -deliver%2:41:00:: 5 2 -deliver%2:41:01:: 4 3 -deliverance%1:04:00:: 1 1 -delivery%1:04:04:: 1 3 -delivery_boy%1:18:00:: 1 1 -delta%1:17:00:: 1 1 -deltoid%1:08:00:: 1 3 -delude%2:41:00:: 1 1 -deluge%1:23:00:: 1 1 -delve%2:35:00:: 1 1 -demagogue%1:18:00:: 1 1 -demand%1:04:00:: 4 3 -demand%1:09:00:: 3 6 -demand%1:10:00:: 1 22 -demand%1:22:00:: 2 9 -demand%1:26:00:: 5 1 -demand%2:32:00:: 1 47 -demand%2:32:02:: 3 7 -demand%2:42:00:: 2 22 -demander%1:18:00:: 1 1 -demanding%3:00:01:: 1 4 -demandingly%4:02:00:: 1 1 -demarcate%2:31:01:: 1 1 -demarcation%1:15:00:: 1 2 -demean%2:37:00:: 1 1 -demeanor%1:07:00:: 1 3 -demimonde%1:14:00:: 1 1 -demineralization%1:26:00:: 1 1 -democracy%1:09:00:: 1 7 -democracy%1:14:00:: 2 3 -democrat%1:18:00:: 2 1 -democrat%1:18:01:: 1 4 -democratic%3:00:00:: 1 13 -democratic%3:01:00:: 2 8 -democratize%2:41:00:: 1 1 -democratize%2:41:01:: 2 1 -demolish%2:36:00:: 1 2 -demolition%1:11:00:: 1 1 -demon%1:18:00:: 1 4 -demon-ridden%5:00:00:passionate:00 1 1 -demonstrable%5:00:00:incontestable:00 1 1 -demonstrably%4:02:00:: 1 1 -demonstrate%2:31:00:: 2 22 -demonstrate%2:32:00:: 4 2 -demonstrate%2:39:00:: 3 5 -demonstrate%2:39:01:: 1 24 -demonstrate%2:41:00:: 5 1 -demonstrated%5:00:00:incontestable:00 1 1 -demonstration%1:04:00:: 1 8 -demonstration%1:04:01:: 3 3 -demonstration%1:04:02:: 2 5 -demonstration%1:10:03:: 4 2 -demonstrative%1:10:00:: 1 1 -demonstrator%1:18:02:: 1 1 -demoralization%1:04:00:: 1 1 -demote%2:41:00:: 1 1 -demur%2:32:00:: 1 1 -demure%5:00:00:modest:01 1 2 -demythologization%1:10:00:: 1 6 -demythologize%2:30:00:: 1 3 -demythologized%5:00:00:rational:00 1 2 -denial%1:04:01:: 4 1 -denial%1:10:00:: 1 4 -denial%1:10:01:: 2 3 -denial%1:22:00:: 3 1 -denmark%1:15:00:: 1 4 -denomination%1:14:00:: 1 10 -denominational%3:01:00:: 1 4 -denominationally%4:02:00:: 1 1 -denote%2:32:00:: 2 7 -denote%2:32:01:: 1 11 -denote%2:32:02:: 3 1 -denouement%1:11:00:: 1 1 -denounce%2:32:00:: 1 10 -denounce%2:32:02:: 3 1 -denounce%2:41:00:: 2 2 -dense%5:00:00:concentrated:00 2 2 -dense%5:00:00:heavy:01 4 1 -dense%5:00:00:impenetrable:00 3 1 -dense%5:00:00:thick:02 1 4 -denseness%1:09:01:: 1 1 -densitometry%1:04:00:: 1 1 -density%1:07:00:: 1 15 -density%1:07:01:: 2 2 -dent%1:19:00:: 1 1 -dent%2:35:00:: 1 3 -dental%3:01:00:: 1 2 -dentist%1:18:00:: 1 3 -denture%1:06:00:: 1 1 -denuded%5:00:00:uncovered:00 1 1 -denunciation%1:10:00:: 1 3 -denver%1:15:00:: 1 8 -deny%2:32:00:: 1 24 -deny%2:32:01:: 2 20 -deny%2:40:00:: 4 15 -deny%2:40:01:: 3 16 -depart%2:38:00:: 4 1 -depart%2:38:01:: 3 3 -depart%2:38:04:: 1 11 -depart%2:42:00:: 2 5 -departed%5:00:00:absent:00 1 1 -departing%5:00:00:outgoing:00 1 2 -department%1:14:00:: 1 28 -department_of_agriculture%1:14:00:: 1 3 -department_of_commerce%1:14:00:: 1 2 -department_of_defense%1:14:00:: 1 6 -department_of_health_education_and_welfare%1:14:00:: 1 1 -department_of_justice%1:14:00:: 1 1 -department_of_labor%1:14:00:: 1 2 -department_of_state%1:14:00:: 1 5 -department_store%1:06:00:: 1 8 -departmental%3:01:00:: 1 1 -departure%1:04:00:: 1 8 -departure%1:11:01:: 2 2 -depend%2:42:00:: 1 10 -depend_on%2:31:00:: 2 9 -depend_on%2:42:00:: 1 39 -depend_upon%2:31:00:: 2 1 -depend_upon%2:42:00:: 1 16 -dependable%3:00:00:: 1 4 -dependable%5:00:00:trustworthy:00 2 1 -dependence%1:26:00:: 1 6 -dependency%1:26:00:: 1 3 -dependent%1:18:00:: 1 2 -dependent%3:00:00:: 1 8 -dependent%5:00:00:conditional:00 2 2 -dependent_on%5:00:00:conditional:00 1 3 -depending_on%5:00:00:conditional:00 1 8 -depersonalize%2:30:00:: 1 1 -depict%2:32:01:: 2 6 -depict%2:36:00:: 1 6 -depict%2:36:01:: 3 2 -depicted_object%1:06:00:: 1 1 -depleted%5:00:00:exhausted:00 1 2 -depletion%1:04:00:: 1 2 -deplorable%5:00:00:bad:00 1 2 -deplorably%4:02:00:: 1 1 -deplore%2:32:00:: 1 2 -deploy%2:33:00:: 1 2 -deportee%1:18:00:: 1 2 -depose%2:41:00:: 1 2 -deposed%3:44:00:: 1 1 -deposit%1:17:00:: 2 1 -deposit%1:19:00:: 1 1 -deposit%2:35:00:: 1 3 -deposit%2:35:01:: 3 2 -deposit%2:40:00:: 2 2 -depositor%1:18:00:: 1 1 -depot%1:06:00:: 1 1 -deprave%2:41:00:: 1 1 -depravity%1:04:00:: 2 1 -depravity%1:07:00:: 1 3 -deprecating%5:00:00:uncomplimentary:00 1 1 -deprecatory%5:00:00:uncomplimentary:00 1 2 -depreciation%1:04:00:: 1 2 -depreciation%1:21:00:: 2 1 -depredation%1:04:00:: 1 2 -depress%2:37:00:: 1 3 -depress%2:38:00:: 2 1 -depressed%5:00:00:low:02 1 1 -depressing%5:00:00:cheerless:00 1 3 -depression%1:12:00:: 4 1 -depression%1:17:00:: 3 3 -depression%1:26:00:: 1 4 -depression%1:26:02:: 2 3 -deprive%2:40:00:: 2 3 -deprive%2:40:01:: 1 3 -deprived_of%5:00:00:empty:00 1 1 -depth%1:07:00:: 1 32 -depth%1:07:01:: 2 8 -depth%1:15:00:: 3 1 -deputy%1:18:00:: 2 1 -deputy%1:18:01:: 1 9 -deputy%5:00:00:subordinate:01 1 1 -deputy_sheriff%1:18:00:: 1 1 -deranged%5:00:00:insane:00 1 2 -dereliction%1:04:00:: 2 1 -dereliction%1:07:00:: 1 1 -deride%2:32:00:: 1 2 -derision%1:10:00:: 1 5 -derisive%5:00:00:disrespectful:00 1 1 -derivation%1:09:00:: 3 1 -derivation%1:10:01:: 2 1 -derivation%1:15:00:: 1 1 -derivative%1:09:00:: 1 1 -derive%2:30:00:: 4 3 -derive%2:30:01:: 3 7 -derive%2:31:00:: 1 25 -derive%2:40:00:: 2 11 -derive%2:42:00:: 5 1 -derived%3:00:00:: 1 1 -derived%5:00:00:calculable:00 2 1 -derrick%1:06:01:: 1 1 -dervish%1:18:00:: 1 1 -des%1:27:00:: 1 1 -descend%2:38:00:: 1 12 -descend%2:38:01:: 4 1 -descend%2:41:00:: 3 1 -descend%2:42:00:: 2 3 -descendant%1:18:00:: 1 1 -descendants%1:14:00:: 1 1 -descendent%1:18:00:: 1 1 -descending%3:00:00:: 1 1 -descent%1:04:00:: 3 1 -descent%1:07:00:: 2 2 -descent%1:11:00:: 1 2 -describe%2:31:00:: 4 1 -describe%2:32:00:: 1 77 -describe%2:32:01:: 2 52 -describe%2:35:00:: 3 1 -description%1:10:01:: 1 27 -descriptive%3:00:02:: 1 2 -desecrate%2:41:00:: 1 1 -desecration%1:04:00:: 1 1 -desensitized%5:00:00:insensitive:01 1 1 -desert%1:15:00:: 1 4 -desert%2:31:00:: 1 7 -desert%2:41:00:: 2 2 -deserted%5:00:00:forsaken:00 1 5 -desertion%1:04:00:: 1 2 -deserve%2:42:00:: 1 29 -deserved%5:00:00:merited:00 1 2 -deserving%5:00:00:worthy:00 1 2 -design%1:04:00:: 1 13 -design%1:06:00:: 4 2 -design%1:06:01:: 6 1 -design%1:09:01:: 2 12 -design%1:09:02:: 3 3 -design%1:09:03:: 5 1 -design%2:31:00:: 2 28 -design%2:36:00:: 4 8 -design%2:36:01:: 3 19 -design%2:36:02:: 1 31 -designate%2:32:00:: 1 12 -designate%2:41:00:: 2 1 -designation%1:10:00:: 1 2 -designation%1:10:01:: 2 1 -designed%5:00:00:planned:00 1 2 -designer%1:18:00:: 2 1 -designer%1:18:02:: 1 2 -desirable%3:00:00:: 1 16 -desire%1:07:00:: 2 9 -desire%1:12:00:: 1 32 -desire%1:26:00:: 3 2 -desire%2:37:00:: 1 25 -desire%2:37:01:: 3 2 -desire%2:37:02:: 2 2 -desired%5:00:00:desirable:00 1 5 -desired%5:00:00:wanted:00 2 1 -desk%1:06:00:: 1 24 -desk_officer%1:18:00:: 1 1 -desolate%5:00:00:forsaken:00 2 1 -desolate%5:00:00:inhospitable:00 1 4 -desolation%1:26:00:: 1 1 -desorption%1:22:00:: 1 1 -despair%1:12:00:: 2 8 -despair%1:26:00:: 1 12 -despair%2:37:00:: 1 3 -despairing%5:00:00:hopeless:00 1 3 -despairingly%4:02:00:: 1 1 -despatch%2:38:00:: 1 2 -desperate%1:18:00:: 1 1 -desperate%5:00:00:brave:00 4 1 -desperate%5:00:00:hopeless:00 1 7 -desperate%5:00:00:resolute:00 2 3 -desperate%5:00:01:dangerous:00 3 1 -desperately%4:02:00:: 1 9 -desperately%4:02:01:: 2 3 -desperation%1:26:01:: 1 4 -despicable%5:00:00:ignoble:01 1 1 -despise%2:37:00:: 1 8 -despised%5:00:00:unloved:00 1 1 -despoil%2:40:00:: 1 1 -despoiler%1:18:00:: 1 1 -despondency%1:12:00:: 1 1 -despondent%5:00:00:hopeless:00 1 3 -despotism%1:26:00:: 1 2 -dessert%1:13:00:: 1 2 -destination%1:09:00:: 2 1 -destination%1:15:00:: 1 2 -destine%2:31:00:: 2 2 -destine%2:32:00:: 1 4 -destiny%1:11:00:: 1 6 -destiny%1:18:00:: 2 1 -destroy%2:33:00:: 3 2 -destroy%2:35:00:: 2 28 -destroy%2:36:00:: 1 42 -destroyed%3:00:00:: 1 1 -destroyed%5:00:00:lost:02 2 1 -destroyer%1:06:00:: 1 1 -destruction%1:04:00:: 1 8 -destruction%1:11:00:: 2 6 -destructive%3:00:00:: 1 6 -desultory%5:00:00:purposeless:00 1 1 -desynchronizing%1:24:00:: 1 1 -detach%2:35:01:: 1 3 -detach%2:38:00:: 2 1 -detachable%3:00:00:: 1 1 -detached%5:00:00:separate:00 2 2 -detached%5:00:00:unconcerned:00 1 4 -detached%5:00:00:unconnected:00 3 1 -detachment%1:04:00:: 2 1 -detachment%1:12:00:: 1 1 -detail%1:09:00:: 1 26 -detail%1:10:00:: 3 9 -detail%1:14:01:: 4 2 -detail%1:24:00:: 2 9 -detail%2:31:00:: 2 1 -detail%2:32:00:: 1 1 -detailed%5:00:00:careful:00 1 26 -details%1:10:00:: 1 2 -detain%2:41:00:: 1 1 -detect%2:31:00:: 2 3 -detect%2:39:00:: 1 21 -detectable%5:00:00:noticeable:00 2 1 -detectable%5:00:00:perceptible:00 1 7 -detected%3:00:00:: 1 2 -detecting%1:04:00:: 1 1 -detection%1:04:00:: 2 2 -detection%1:09:00:: 1 4 -detective%1:18:00:: 1 27 -detective%1:18:01:: 2 1 -detective_story%1:10:00:: 1 2 -detector%1:06:00:: 1 4 -deter%2:32:01:: 1 1 -detergency%1:07:00:: 1 3 -detergent%1:06:00:: 2 3 -detergent%1:27:00:: 1 22 -detergent_builder%1:27:00:: 1 1 -deteriorate%2:29:00:: 2 2 -deteriorate%2:30:00:: 1 4 -deterioration%1:26:00:: 1 1 -determinable%3:00:00:: 1 1 -determinant%1:09:00:: 1 2 -determinate%3:00:01:: 1 1 -determination%1:04:00:: 1 7 -determination%1:07:00:: 2 3 -determination%1:09:00:: 3 1 -determine%2:31:00:: 5 9 -determine%2:31:01:: 3 18 -determine%2:31:02:: 2 21 -determine%2:31:03:: 6 7 -determine%2:32:00:: 1 107 -determine%2:32:03:: 4 11 -determine%2:32:05:: 7 1 -determined%5:00:00:resolute:00 1 10 -determinedly%4:02:00:: 1 1 -determining%5:00:00:decisive:00 1 1 -determining_factor%1:09:00:: 1 1 -deterrent%1:09:00:: 1 1 -detest%2:37:00:: 1 2 -detonate%2:30:00:: 1 3 -detonating_fuse%1:06:00:: 1 1 -detract%2:30:04:: 1 1 -detractor%1:18:00:: 1 1 -detribalize%2:30:00:: 1 1 -detroit%1:15:00:: 1 9 -devastate%2:30:00:: 1 3 -devastating%5:00:00:disrespectful:00 1 1 -devastating%5:00:01:destructive:00 2 1 -develop%2:29:00:: 4 19 -develop%2:30:00:: 10 4 -develop%2:30:01:: 13 3 -develop%2:30:04:: 6 12 -develop%2:30:05:: 9 4 -develop%2:30:06:: 3 41 -develop%2:30:09:: 12 3 -develop%2:30:10:: 15 1 -develop%2:31:00:: 8 5 -develop%2:32:00:: 7 6 -develop%2:36:00:: 2 44 -develop%2:36:01:: 1 44 -develop%2:36:09:: 14 1 -develop%2:39:04:: 11 3 -develop%2:42:00:: 5 15 -develop_into%2:30:00:: 1 2 -developed%3:00:00:: 1 18 -developer%1:18:00:: 1 4 -developing%3:44:00:: 2 1 -developing%5:00:00:nonindustrial:00 1 2 -development%1:04:01:: 1 52 -development%1:04:02:: 5 7 -development%1:11:01:: 4 9 -development%1:15:00:: 6 6 -development%1:22:01:: 3 11 -development%1:22:02:: 2 46 -development%1:26:00:: 7 4 -developmental%3:01:00:: 1 4 -deviant%5:00:00:abnormal:00 1 1 -deviate%2:38:00:: 1 2 -deviate%2:42:00:: 2 1 -deviation%1:09:00:: 2 1 -deviation%1:11:00:: 1 2 -device%1:04:00:: 3 2 -device%1:06:00:: 1 36 -device%1:10:00:: 2 2 -devil%1:10:00:: 3 3 -devil%1:18:00:: 2 5 -devil%1:18:02:: 1 12 -devil%1:18:03:: 4 1 -devilish%5:00:00:evil:00 1 1 -devilment%1:04:00:: 1 1 -devious%5:00:00:indirect:02 1 1 -devise%2:36:00:: 1 14 -devise%2:36:01:: 2 1 -devisee%1:18:00:: 1 1 -devoid_of%5:00:00:empty:00 1 3 -devote%2:31:00:: 2 5 -devote%2:32:00:: 1 30 -devoted%5:00:02:dedicated:00 1 6 -devotee%1:18:00:: 1 2 -devotion%1:04:01:: 2 1 -devotion%1:12:00:: 1 2 -devotional%5:00:00:pious:00 1 1 -devour%2:35:00:: 1 1 -devout%5:00:00:religious:00 1 1 -dew%1:27:00:: 1 2 -dewar%1:06:00:: 1 1 -dexamethasone%1:27:00:: 1 2 -dexterous%5:00:00:adroit:00 1 1 -dexterously%4:02:00:: 1 1 -dextrous%5:00:00:adroit:00 1 2 -di-iodotyrosine%1:27:00:: 1 5 -diabetes%1:26:00:: 1 1 -diabetic%1:18:00:: 1 2 -diachronic%3:00:00:: 1 1 -diagnose%2:31:00:: 1 4 -diagnose%2:31:01:: 2 1 -diagnosing%1:04:00:: 1 1 -diagnosis%1:04:00:: 1 4 -diagnostic%3:01:00:: 1 1 -diagnostician%1:18:00:: 1 1 -diagonal%5:00:02:oblique:00 1 4 -diagonalizable%3:01:00:: 1 14 -diagram%1:06:00:: 1 6 -diagram%2:36:00:: 1 1 -dial%1:06:00:: 1 1 -dial%2:32:00:: 1 3 -dialect%1:10:00:: 1 6 -dialectic%1:09:00:: 1 4 -dialectic%1:24:00:: 2 1 -dialectically%4:02:00:: 1 1 -dialogue%1:10:00:: 2 2 -dialogue%1:10:01:: 1 3 -dialogue%1:10:02:: 3 2 -dialysis%1:04:00:: 1 12 -dialyze%2:30:00:: 1 4 -diam%1:07:00:: 1 2 -diameter%1:07:00:: 1 27 -diameter%1:25:00:: 2 1 -diametrically%4:02:00:: 1 1 -diamond%1:21:00:: 1 3 -diamond%1:27:00:: 2 1 -diamond_point%1:06:00:: 1 1 -diaper%1:06:00:: 1 1 -diaphragm%1:06:00:: 1 5 -diaphragm%1:08:00:: 2 2 -diaphyseal%3:01:00:: 1 2 -diarrhea%1:26:00:: 1 9 -diarrhoea%1:26:00:: 1 3 -diary%1:10:00:: 1 3 -diathermy_machine%1:06:00:: 1 1 -diatom%1:05:00:: 1 1 -diatomic%3:01:00:: 1 2 -dice%1:06:00:: 1 9 -dichondra%1:20:00:: 1 1 -dickens%1:10:00:: 1 2 -dictate%1:09:00:: 2 1 -dictate%1:10:00:: 1 1 -dictate%2:31:00:: 2 1 -dictate%2:32:00:: 1 8 -dictated%5:00:00:settled:02 1 1 -dictatorship%1:14:00:: 1 3 -dictionary%1:10:00:: 1 52 -dictionary_entry%1:10:00:: 1 3 -dictum%1:10:00:: 1 2 -die%1:06:00:: 1 6 -die%1:06:01:: 2 1 -die%2:30:00:: 1 141 -die%2:30:04:: 4 1 -die%2:37:00:: 3 1 -die%2:39:00:: 2 1 -die_away%2:30:00:: 1 2 -die_out%2:30:00:: 1 2 -diet%1:13:00:: 1 8 -dietary%3:01:00:: 1 4 -diethylaminoethyl_cellulose%1:27:00:: 1 2 -diethylstilbestrol%1:27:00:: 1 3 -differ%2:32:00:: 2 1 -differ%2:42:00:: 1 27 -difference%1:07:00:: 1 73 -difference%1:09:00:: 2 21 -difference%1:10:00:: 4 2 -difference%1:11:00:: 3 16 -difference%1:24:00:: 5 1 -difference_of_opinion%1:10:00:: 1 2 -different%3:00:00:: 1 88 -different%3:00:02:: 4 1 -different%5:00:00:other:00 2 41 -different%5:00:00:unusual:00 3 2 -differentiable%3:01:00:: 1 3 -differential%1:09:00:: 1 1 -differential%3:01:00:: 1 1 -differential_equation%1:10:00:: 1 7 -differentiate%2:31:01:: 1 4 -differentiate%2:31:02:: 2 1 -differentiated%3:00:00:: 1 3 -differentiation%1:04:01:: 2 1 -differentiation%1:09:00:: 1 5 -differently%4:02:00:: 1 8 -difficult%3:00:00:: 1 63 -difficult%5:00:00:effortful:00 2 1 -difficulty%1:04:00:: 1 18 -difficulty%1:07:00:: 4 6 -difficulty%1:09:02:: 2 13 -difficulty%1:26:00:: 3 11 -diffident%5:00:00:reserved:01 1 1 -diffident%5:00:00:unconfident:00 2 1 -diffidently%4:02:00:: 1 1 -diffraction%1:19:00:: 1 1 -diffuse%2:32:00:: 3 1 -diffuse%2:35:00:: 2 1 -diffuse%2:38:00:: 1 1 -diffuse%5:00:00:distributed:00 1 1 -diffused%5:00:00:distributed:00 1 1 -diffusely%4:02:00:: 1 1 -diffusing%5:00:00:distributive:00 1 2 -diffusion%1:07:00:: 3 1 -diffusion%1:11:00:: 2 1 -diffusion%1:22:00:: 1 6 -dig%2:35:00:: 1 9 -dig%2:35:01:: 2 5 -dig_in%2:34:00:: 2 1 -dig_in%2:35:00:: 1 2 -dig_into%2:35:00:: 1 4 -dig_up%2:35:00:: 1 2 -digest%2:31:00:: 2 1 -digest%2:34:00:: 1 1 -digestible%3:00:00:: 1 1 -digestive%3:01:00:: 1 1 -digging%1:04:01:: 1 1 -digitalis_glycoside%1:27:00:: 1 1 -digitalization%1:04:00:: 1 1 -dignified%3:00:00:: 1 2 -dignified%5:00:00:proud:00 2 1 -dignify%2:41:00:: 1 1 -dignitary%1:18:00:: 1 1 -dignity%1:07:00:: 1 14 -dignity%1:07:01:: 2 4 -digress%2:32:00:: 1 1 -dilapidated%5:00:00:damaged:00 1 2 -dilate%2:30:01:: 1 6 -dilemma%1:09:00:: 1 8 -diligence%1:07:01:: 1 1 -diligent%5:00:00:patient:00 1 1 -dilute%2:30:00:: 1 9 -dilute%3:00:00:: 1 1 -dilution%1:04:00:: 2 2 -dilution%1:27:00:: 1 4 -dim%5:00:00:dark:01 1 4 -dim%5:00:00:indistinct:00 2 3 -dime%1:21:00:: 1 2 -dimension%1:07:00:: 1 7 -dimension%1:07:01:: 4 1 -dimension%1:09:00:: 2 5 -dimension%1:09:01:: 3 1 -dimensional%3:01:00:: 1 3 -dimensional%5:00:00:multidimensional:00 2 3 -dimensioning%5:00:00:orienting:00 1 3 -dimer%1:27:00:: 1 1 -dimethylglyoxime%1:27:00:: 1 2 -diminish%2:30:00:: 1 10 -diminish%2:30:04:: 2 2 -diminished%5:00:00:impaired:00 1 3 -diminishing%5:00:00:decreasing:00 1 1 -diminution%1:22:00:: 1 1 -diminutive%5:00:00:small:00 1 2 -dimly%4:02:00:: 1 10 -din%1:04:00:: 2 7 -din%1:11:00:: 1 9 -din%2:31:00:: 2 1 -din%2:39:00:: 1 1 -dine%2:34:01:: 1 6 -dingy%5:00:00:dirty:01 1 4 -dining_room%1:06:00:: 1 6 -dining_table%1:06:00:: 1 1 -dinner%1:13:00:: 1 25 -dinner%1:14:00:: 2 5 -dinner_pail%1:06:00:: 1 1 -dinner_party%1:14:00:: 1 1 -dinnertime%1:28:00:: 1 2 -dip%2:30:00:: 4 1 -dip%2:30:01:: 3 1 -dip%2:34:00:: 2 1 -dip%2:35:00:: 1 2 -diplomacy%1:07:00:: 2 1 -diplomacy%1:10:00:: 1 1 -diplomat%1:18:00:: 1 4 -diplomatic%3:00:00:: 2 1 -diplomatic%3:01:00:: 1 2 -dipole%1:17:00:: 1 6 -dipper%1:06:00:: 1 4 -dipylon%3:01:00:: 1 1 -direct%2:31:01:: 10 1 -direct%2:32:00:: 1 17 -direct%2:32:01:: 9 1 -direct%2:33:00:: 7 5 -direct%2:33:01:: 2 16 -direct%2:36:00:: 3 13 -direct%2:36:02:: 8 4 -direct%2:38:00:: 5 5 -direct%2:38:01:: 6 5 -direct%2:41:00:: 4 7 -direct%3:00:00:: 1 23 -direct%3:00:02:: 3 5 -direct%5:00:00:immediate:00 2 16 -direct_contrast%1:24:00:: 1 1 -direct_current%1:19:00:: 1 1 -direct_evidence%1:10:00:: 1 1 -direct_loan%1:21:00:: 1 2 -direct_sum%1:14:00:: 1 1 -directed%5:00:00:oriented:00 1 2 -directing%5:00:00:leading:00 1 1 -direction%1:04:00:: 5 3 -direction%1:04:01:: 7 1 -direction%1:09:00:: 3 14 -direction%1:10:00:: 4 5 -direction%1:10:02:: 6 2 -direction%1:15:00:: 1 35 -direction%1:24:00:: 2 17 -directional%3:01:00:: 1 1 -directionality%1:07:00:: 1 1 -directive%1:10:00:: 1 1 -directivity%1:07:00:: 1 1 -directly%4:02:00:: 1 26 -directly%4:02:01:: 4 5 -directly%4:02:05:: 2 14 -directly%4:02:07:: 3 9 -director%1:18:00:: 1 18 -director%1:18:02:: 2 6 -director%1:18:03:: 3 6 -directory%1:10:00:: 1 1 -dirge%1:10:00:: 1 2 -dirt%1:26:00:: 2 11 -dirt%1:27:01:: 1 14 -dirty%3:00:01:: 1 12 -dirty%3:00:02:: 2 2 -dirty%5:00:00:nasty:00 3 1 -disability%1:26:00:: 1 3 -disable%2:30:00:: 1 1 -disabled%1:14:00:: 1 2 -disabled%5:00:00:injured:00 2 1 -disabled%5:00:00:unfit:01 1 6 -disabling%5:00:00:unhealthful:00 1 2 -disabuse%2:32:00:: 1 2 -disadvantage%1:07:00:: 1 3 -disagree%2:32:00:: 1 10 -disagreement%1:07:00:: 2 2 -disagreement%1:26:00:: 1 3 -disallow%2:32:00:: 1 1 -disappear%2:30:00:: 1 40 -disappearance%1:04:00:: 1 4 -disappearance%1:04:01:: 3 1 -disappearance%1:11:00:: 2 1 -disappoint%2:37:00:: 1 5 -disappointed%5:00:00:unsuccessful:00 1 4 -disappointing%5:00:00:unsatisfactory:00 1 1 -disappointment%1:04:00:: 2 1 -disappointment%1:12:00:: 1 7 -disapprobation%1:10:00:: 1 1 -disapproval%1:10:00:: 2 1 -disapproval%1:12:00:: 1 6 -disapprove%2:31:00:: 1 5 -disapprove%2:32:00:: 2 2 -disarm%2:33:00:: 1 2 -disarmament%1:04:00:: 1 1 -disarming%5:00:00:pleasing:00 1 2 -disarray%1:09:00:: 1 1 -disassemble%2:36:00:: 1 1 -disassembly%1:04:00:: 1 1 -disaster%1:04:00:: 3 1 -disaster%1:11:00:: 2 7 -disaster%1:26:00:: 1 7 -disastrous%5:00:00:unfortunate:00 1 6 -disband%2:38:00:: 2 1 -disband%2:38:01:: 1 1 -disbelief%1:09:00:: 1 3 -disbelieve%2:31:00:: 1 1 -disburse%2:40:00:: 1 1 -disc%1:06:01:: 1 10 -disc%1:25:00:: 2 1 -discard%2:40:00:: 1 3 -discarded%5:00:00:unwanted:00 1 1 -discern%2:39:00:: 1 7 -discernable%3:00:00:: 1 1 -discernible%3:00:00:: 1 3 -discernible%5:00:00:perceptible:00 2 1 -discerning%3:00:00:: 1 1 -discharge%1:04:04:: 2 3 -discharge%1:11:00:: 1 13 -discharge%1:19:00:: 5 1 -discharge%1:22:00:: 4 1 -discharge%1:27:00:: 3 1 -discharge%2:29:00:: 7 1 -discharge%2:32:00:: 6 1 -discharge%2:33:02:: 5 1 -discharge%2:35:00:: 2 3 -discharge%2:35:01:: 4 1 -discharge%2:41:00:: 1 3 -discharge%2:41:01:: 3 1 -disciple%1:18:00:: 1 1 -discipline%1:04:00:: 4 1 -discipline%1:07:00:: 3 2 -discipline%1:09:00:: 1 2 -discipline%1:09:01:: 2 2 -discipline%2:41:01:: 1 4 -disciplined%5:00:00:controlled:00 1 4 -disciplined%5:00:00:trained:00 2 1 -disclose%2:32:00:: 1 19 -disclose%2:39:00:: 2 6 -disclosing%5:00:00:revealing:00 1 1 -disclosure%1:10:00:: 1 1 -discomfited%1:14:00:: 1 1 -discomfort%1:26:00:: 1 3 -disconcerted%5:00:00:discomposed:00 1 1 -disconcerting%5:00:00:displeasing:00 1 2 -disconcertingly%4:02:00:: 1 1 -disconnect%2:35:00:: 2 1 -disconnect%2:35:03:: 1 1 -discontent%1:12:00:: 1 2 -discontented%3:00:00:: 1 1 -discontinuance%1:04:00:: 1 1 -discontinue%2:42:00:: 1 4 -discontinue%2:42:01:: 2 2 -discontinuity%1:26:00:: 1 4 -discorporate%5:00:00:incorporeal:00 1 1 -discount%1:04:00:: 1 1 -discount%2:32:00:: 1 3 -discount_business%1:04:00:: 1 1 -discourage%2:32:01:: 1 12 -discourage%2:32:02:: 3 2 -discourage%2:37:00:: 2 3 -discouraged%5:00:00:defeated:00 2 1 -discouraged%5:00:00:pessimistic:00 1 2 -discouraging%3:00:00:: 1 1 -discourse%1:10:01:: 1 2 -discourteous%3:00:00:: 1 1 -discover%2:31:00:: 4 16 -discover%2:31:01:: 2 21 -discover%2:32:04:: 6 4 -discover%2:36:00:: 3 18 -discover%2:39:00:: 7 1 -discover%2:39:03:: 1 21 -discover%2:40:00:: 5 6 -discovered%5:00:00:determined:00 2 2 -discovered%5:00:00:unconcealed:00 1 2 -discovery%1:04:00:: 1 12 -discovery%1:09:00:: 3 5 -discovery%1:10:00:: 2 5 -discredit%1:26:00:: 1 1 -discredit%2:31:01:: 1 1 -discreetly%4:02:00:: 1 1 -discrepancy%1:07:00:: 1 5 -discrepancy%1:11:00:: 2 3 -discrete%5:00:00:separate:00 1 3 -discretion%1:09:00:: 2 2 -discretion%1:26:00:: 1 5 -discretionary%5:00:00:arbitrary:00 1 1 -discriminate%2:31:00:: 1 2 -discriminate%2:41:12:: 2 1 -discriminating%3:00:00:: 1 1 -discrimination%1:04:00:: 1 6 -discrimination%1:09:00:: 2 5 -discuss%2:32:00:: 2 30 -discuss%2:32:01:: 1 54 -discussion%1:10:00:: 2 25 -discussion%1:10:02:: 1 27 -disdain%1:12:00:: 1 2 -disdain%2:32:00:: 2 1 -disdain%2:37:00:: 1 2 -disdainful%5:00:00:disrespectful:00 1 1 -disease%1:26:00:: 1 26 -diseased%5:00:00:unhealthy:00 1 1 -disembodied%5:00:00:incorporeal:00 1 1 -disenfranchise%2:41:00:: 1 1 -disenfranchisement%1:04:00:: 1 2 -disengage%2:35:00:: 1 1 -disengagement%1:04:02:: 1 1 -disentangle%2:35:00:: 2 1 -disentangle%2:35:02:: 1 1 -disfigured%5:00:00:ugly:00 1 1 -disgrace%1:26:00:: 1 2 -disgrace%2:41:00:: 1 2 -disguise%1:07:00:: 1 2 -disguise%2:39:00:: 1 1 -disguised%5:00:00:covert:00 1 2 -disgust%1:12:00:: 1 1 -disgust%2:39:00:: 1 1 -disgusted%5:00:00:displeased:00 1 2 -disgusting%5:00:00:offensive:01 1 1 -dish%1:06:00:: 1 9 -dish%1:13:00:: 2 3 -dish_up%2:34:00:: 1 1 -dishearten%2:37:00:: 1 2 -disheartened%5:00:00:pessimistic:00 1 1 -disheartening%5:00:00:discouraging:00 1 1 -disheveled%5:00:00:untidy:00 1 1 -dishonest%3:00:00:: 1 1 -dishonor%1:26:00:: 1 1 -dishonor%2:41:00:: 1 2 -dishonour%2:41:00:: 1 1 -dishwasher%1:06:00:: 1 1 -dishwater%1:27:00:: 1 1 -disillusioning%5:00:00:convincing:00 1 1 -disillusionment%1:09:00:: 1 1 -disintegrate%2:30:00:: 1 2 -disintegration%1:26:00:: 1 2 -disintegrative%3:00:00:: 1 1 -disinter%2:41:00:: 1 1 -disinterest%1:09:01:: 1 1 -disinterested%5:00:00:impartial:00 1 1 -disjointed%5:00:00:incoherent:00 1 1 -disk%1:06:00:: 2 4 -disk%1:25:00:: 1 12 -disk%2:36:00:: 1 1 -dislike%1:09:00:: 1 4 -dislike%1:12:00:: 2 2 -dislike%2:37:00:: 1 13 -dislocation%1:04:00:: 2 1 -dislocation%1:11:00:: 1 1 -dislodge%2:35:00:: 1 2 -disloyalty%1:07:00:: 1 2 -dismal%5:00:00:cheerless:00 1 1 -dismally%4:02:01:: 1 2 -dismay%1:12:00:: 2 2 -dismay%1:12:02:: 1 4 -dismayed%5:00:00:afraid(p):00 1 2 -dismaying%5:00:00:alarming:00 1 1 -dismember%2:35:00:: 1 1 -dismiss%2:32:00:: 1 14 -dismiss%2:32:02:: 2 4 -dismiss%2:41:01:: 3 1 -dismissal%1:04:01:: 1 1 -dismount%2:38:00:: 1 6 -dismounted%5:00:00:unmounted:00 1 1 -disobedience%1:04:00:: 1 7 -disobedient%3:00:00:: 1 2 -disobey%2:41:00:: 1 4 -disorder%1:26:03:: 1 5 -disordered%5:00:00:disorganized:00 1 3 -disordered%5:00:00:incoherent:00 2 1 -disorderly%3:00:00:: 1 1 -disorderly%5:00:00:untidy:00 2 1 -disorganized%3:00:00:: 1 2 -disown%2:40:00:: 1 1 -disparagement%1:10:00:: 1 1 -disparate%5:00:00:different:00 1 2 -dispassionate%5:00:00:impartial:00 1 1 -dispassionately%4:02:00:: 1 2 -dispatch%1:04:00:: 2 1 -dispatch%1:10:00:: 1 3 -dispatch%2:38:00:: 1 5 -dispatch%2:41:00:: 2 1 -dispel%2:38:00:: 1 10 -dispensary%1:06:00:: 1 1 -dispensation%1:04:01:: 1 1 -dispense%2:40:00:: 1 3 -dispense_with%2:40:01:: 1 1 -dispenser%1:06:00:: 1 1 -dispersal%1:04:00:: 1 1 -disperse%2:30:00:: 3 1 -disperse%2:35:00:: 1 2 -disperse%2:38:01:: 2 1 -dispersed%5:00:00:distributed:00 1 3 -dispersion%1:11:00:: 1 1 -displace%2:38:00:: 2 1 -displace%2:38:01:: 1 3 -displacement%1:04:00:: 1 2 -displacement%1:04:02:: 3 1 -displacement%1:11:00:: 2 1 -display%1:04:00:: 2 3 -display%1:06:00:: 3 1 -display%1:10:01:: 1 4 -display%2:39:00:: 1 35 -display%2:39:01:: 2 2 -display_window%1:06:00:: 1 1 -displeased%3:00:00:: 1 1 -displeasure%1:12:00:: 1 3 -disposal%1:04:00:: 3 1 -disposal%1:04:02:: 2 1 -disposal%1:07:00:: 1 4 -disposal_plant%1:06:00:: 1 2 -dispose%2:31:00:: 3 2 -dispose%2:40:00:: 2 3 -dispose%2:40:11:: 1 3 -dispose_of%2:41:00:: 1 2 -disposition%1:04:00:: 2 1 -disposition%1:07:00:: 1 2 -dispossessed%5:00:00:unfortunate:00 1 1 -dispossession%1:04:00:: 1 1 -disproportionate%3:00:00:: 1 1 -disproportionate%5:00:00:incommensurate:00 2 1 -disprove%2:31:00:: 1 1 -disputable%5:00:00:contestable:00 1 1 -dispute%1:10:00:: 1 4 -dispute%2:32:00:: 1 4 -dispute%2:32:01:: 2 2 -disqualified%5:00:01:ineligible:00 1 1 -disqualify%2:30:00:: 1 1 -disregard%1:04:01:: 2 1 -disregard%1:09:00:: 1 1 -disregard%2:32:00:: 2 2 -disregard%2:32:02:: 1 3 -disregardless%4:02:00:: 1 1 -disrepair%1:26:00:: 1 2 -disrepute%1:26:00:: 1 1 -disrobe%2:29:01:: 1 1 -disrupt%2:30:01:: 2 2 -disrupt%2:32:00:: 1 5 -disruption%1:04:02:: 1 1 -disruptive%5:00:00:unquiet:00 1 2 -dissatisfaction%1:12:00:: 1 2 -dissatisfied%5:00:00:discontented:00 1 2 -dissect%2:35:00:: 1 1 -dissection%1:04:01:: 1 2 -dissection%1:09:00:: 2 1 -dissemble%2:32:00:: 1 1 -disseminate%2:32:00:: 1 6 -disseminating%5:00:00:distributive:00 1 1 -dissemination%1:10:00:: 1 1 -dissension%1:10:00:: 1 1 -dissent%1:10:02:: 1 1 -dissent%1:10:03:: 2 1 -dissent%2:32:00:: 1 1 -dissenter%1:18:00:: 1 1 -disservice%1:04:00:: 1 1 -dissimilar%3:00:00:: 1 1 -dissipate%2:34:00:: 3 1 -dissipate%2:38:00:: 2 1 -dissipate%2:38:01:: 1 1 -dissociation%1:04:00:: 1 3 -dissolution%1:22:00:: 1 1 -dissolve%1:10:00:: 1 1 -dissolve%2:30:01:: 2 3 -dissolve%2:30:02:: 3 2 -dissolve%2:30:03:: 1 4 -dissolve%2:38:00:: 4 1 -dissolved%5:00:00:melted:00 1 5 -dissolving_agent%1:27:00:: 1 1 -dissuade%2:32:00:: 1 3 -distal%3:00:01:: 1 9 -distally%4:02:00:: 1 1 -distance%1:07:00:: 1 54 -distance%1:07:01:: 3 5 -distance%1:12:00:: 4 4 -distance%1:15:00:: 2 18 -distance%1:28:00:: 5 1 -distant%3:00:01:: 1 33 -distant%3:00:02:: 2 2 -distaste%1:12:00:: 1 3 -distastefully%4:02:02:: 1 1 -distension%1:04:00:: 1 1 -distill%2:30:01:: 2 3 -distill%2:30:02:: 3 1 -distill%2:30:03:: 1 3 -distillation%1:22:00:: 1 3 -distilled_water%1:27:00:: 1 1 -distinct%3:00:00:: 2 10 -distinct%5:00:00:different:00 1 14 -distinct%5:00:00:separate:00 3 1 -distinction%1:07:00:: 4 3 -distinction%1:07:01:: 3 4 -distinction%1:09:00:: 1 11 -distinction%1:26:00:: 2 5 -distinctive%5:00:00:characteristic:00 1 5 -distinctive%5:00:00:identifiable:00 2 3 -distinctive%5:00:02:characteristic:00 3 1 -distinctively%4:02:00:: 1 2 -distinctly%4:02:00:: 1 7 -distinctness%1:07:00:: 1 1 -distinguish%2:31:00:: 1 15 -distinguish%2:31:02:: 3 3 -distinguish%2:39:00:: 2 6 -distinguishable%3:00:00:: 1 4 -distinguished%5:00:00:dignified:00 2 2 -distinguished%5:00:00:important:00 1 7 -distinguished_service_medal%1:10:00:: 1 1 -distort%2:32:00:: 1 5 -distort%2:35:01:: 2 1 -distortable%5:00:00:changeable:00 1 1 -distorted%5:00:00:crooked:01 1 2 -distortion%1:11:00:: 1 2 -distortion%1:19:00:: 3 1 -distortion%1:25:00:: 2 1 -distract%2:37:00:: 1 3 -distractedly%4:02:00:: 1 1 -distraction%1:09:00:: 1 2 -distraught%5:00:00:agitated:00 1 1 -distress%1:12:00:: 3 2 -distress%1:12:02:: 1 4 -distress%1:26:01:: 2 3 -distressed%5:00:00:troubled:00 1 1 -distressing%5:00:00:heavy:02 1 3 -distribute%2:32:00:: 6 1 -distribute%2:35:01:: 2 5 -distribute%2:38:00:: 5 1 -distribute%2:40:00:: 1 10 -distribute%2:40:01:: 4 3 -distribute%2:41:00:: 3 4 -distribution%1:04:00:: 3 7 -distribution%1:04:01:: 4 4 -distribution%1:07:00:: 2 13 -distribution%1:09:00:: 1 23 -distribution_cost%1:21:00:: 1 3 -distributive%3:00:00:: 1 1 -distributor%1:18:00:: 1 6 -district%1:15:00:: 1 38 -district_attorney%1:18:00:: 1 2 -district_manager%1:18:00:: 1 3 -district_of_columbia%1:15:00:: 1 12 -distrust%1:09:00:: 1 1 -distrust%2:31:00:: 1 3 -disturb%2:30:00:: 4 2 -disturb%2:30:04:: 5 1 -disturb%2:35:00:: 3 2 -disturb%2:35:01:: 2 4 -disturb%2:37:00:: 1 8 -disturbance%1:04:00:: 5 1 -disturbance%1:04:01:: 4 1 -disturbance%1:11:00:: 1 4 -disturbance%1:26:00:: 3 1 -disturbance%1:26:02:: 2 2 -disturbed%5:00:00:disarranged:00 1 2 -disturbed%5:00:00:neurotic:00 3 1 -disturbed%5:00:00:troubled:00 2 1 -disturbing%5:00:00:heavy:02 1 5 -disturbingly%4:02:00:: 1 1 -ditch%1:06:00:: 1 2 -ditty%1:10:00:: 1 1 -diurnal_variation%1:11:00:: 1 3 -divan%1:06:00:: 1 5 -dive%1:04:01:: 2 1 -dive%1:06:01:: 1 4 -dive%2:38:00:: 1 4 -dive%2:38:02:: 2 1 -diverge%2:38:00:: 1 1 -divergence%1:04:00:: 1 1 -divergent%5:00:00:different:00 1 2 -diverse%5:00:00:different:00 2 1 -diverse%5:00:02:different:00 1 4 -diversification%1:04:00:: 1 1 -diversified%3:00:00:: 1 3 -diversion%1:04:00:: 1 2 -diversion%1:04:01:: 2 2 -diversion%1:04:02:: 3 1 -diversionary_attack%1:04:00:: 1 1 -diversity%1:07:02:: 1 2 -divert%2:38:00:: 1 2 -divert%2:38:01:: 2 2 -divert%2:41:00:: 3 1 -divertimento%1:10:00:: 1 1 -divest%2:40:01:: 1 1 -divestiture%1:10:00:: 1 4 -divide%2:31:00:: 2 11 -divide%2:35:00:: 4 2 -divide%2:35:01:: 6 1 -divide%2:38:00:: 5 1 -divide%2:41:00:: 1 20 -divide%2:42:00:: 3 4 -divided%3:00:00:: 1 2 -dividend%1:21:00:: 1 5 -divine%1:18:01:: 1 1 -divine%5:00:00:heavenly:00 1 4 -divine%5:00:02:heavenly:00 3 1 -divine%5:00:03:heavenly:00 2 1 -divine_law%1:09:00:: 1 1 -divinely%4:02:00:: 1 2 -diving%1:11:00:: 1 1 -diving_board%1:06:00:: 1 1 -divinity%1:07:00:: 2 1 -divinity%1:18:00:: 1 4 -divisible_by%5:00:00:divisible:00 1 4 -division%1:04:00:: 3 4 -division%1:09:00:: 2 6 -division%1:10:00:: 5 1 -division%1:14:00:: 1 10 -division%1:14:03:: 4 3 -divisive%5:00:00:discordant:00 1 4 -divorce%1:04:00:: 1 8 -divorce%2:41:00:: 2 2 -divorce%2:41:01:: 1 4 -divorced%5:00:00:unmarried:00 1 1 -divulge%2:32:00:: 1 1 -dizzily%4:02:00:: 1 1 -dizzy%5:00:00:frivolous:00 2 1 -dizzy%5:00:00:ill:01 1 1 -do%2:29:04:: 12 2 -do%2:29:09:: 9 3 -do%2:36:00:: 8 9 -do%2:36:01:: 2 173 -do%2:36:02:: 5 35 -do%2:38:00:: 13 1 -do%2:41:01:: 1 526 -do%2:41:02:: 6 20 -do%2:41:03:: 11 2 -do%2:41:04:: 3 134 -do%2:42:00:: 4 58 -do%2:42:01:: 7 11 -do%2:42:02:: 10 2 -do-it-yourself%5:00:00:homemade:00 1 2 -do_away_with%2:30:00:: 1 1 -do_by%2:41:00:: 1 1 -do_good%2:40:00:: 1 5 -do_in%2:35:00:: 1 1 -do_justice%2:39:00:: 2 1 -do_justice%2:41:00:: 1 1 -do_one's_best%2:41:00:: 1 3 -do_well%2:42:00:: 1 6 -do_work%2:41:00:: 1 1 -docile%3:00:00:: 1 3 -dock%1:06:02:: 1 2 -dock%2:38:00:: 1 2 -docked%3:44:00:: 1 1 -docket%2:32:01:: 1 1 -doctor%1:04:00:: 3 1 -doctor%1:18:00:: 1 73 -doctor%1:18:02:: 2 1 -doctor%2:29:00:: 2 1 -doctor%2:30:00:: 1 1 -doctor_of_education%1:10:00:: 1 1 -doctor_of_philosophy%1:10:00:: 1 1 -doctorate%1:10:00:: 1 1 -doctrinaire%5:00:00:instructive:00 1 2 -doctrinal%3:01:00:: 1 1 -doctrinally%4:02:00:: 1 1 -doctrine%1:09:00:: 1 20 -document%1:06:00:: 2 1 -document%1:10:00:: 1 3 -document%2:31:00:: 2 1 -document%2:32:00:: 1 3 -documentary%1:10:00:: 1 5 -dodge%1:04:00:: 2 1 -dodge%1:09:00:: 1 1 -dodge%2:32:00:: 3 1 -dodge%2:38:00:: 1 6 -dodge%2:38:01:: 2 1 -dodging%1:04:00:: 1 1 -dog%1:05:00:: 1 42 -dog%2:38:00:: 1 2 -dogged%5:00:00:stubborn:00 1 2 -doggedly%4:02:00:: 1 4 -doggerel%1:10:00:: 1 1 -dogging%5:00:00:continuous:01 1 1 -doghouse%1:06:00:: 1 1 -doglike%5:00:00:loyal:00 1 1 -dogma%1:10:00:: 1 3 -dogmatic%5:00:00:narrow-minded:00 1 1 -dogmatically%4:02:00:: 1 2 -dogwood%1:20:00:: 1 1 -doing%1:04:00:: 1 4 -dole_out%2:40:00:: 1 1 -doled_out%5:00:00:distributed:00 1 1 -doleful%5:00:00:sad:00 1 2 -doll%1:06:00:: 1 1 -dollar%1:21:00:: 2 11 -dollar%1:23:00:: 1 23 -dollar_bill%1:21:00:: 1 1 -dollar_sign%1:10:01:: 1 1 -dollar_volume%1:07:00:: 1 2 -domain%1:15:00:: 2 2 -domain%1:26:00:: 1 4 -domestic%3:00:00:: 1 19 -domestic%3:00:01:: 3 3 -domestic%3:01:00:: 2 8 -domestic_animal%1:05:00:: 1 1 -dominance%1:07:02:: 1 4 -dominance%1:26:00:: 2 3 -dominant%3:00:01:: 1 51 -dominantly%4:02:00:: 1 1 -dominate%2:41:00:: 3 6 -dominate%2:42:00:: 1 9 -dominate%2:42:01:: 2 6 -dominated%5:00:00:controlled:00 1 2 -dominated_by%5:00:00:controlled:00 1 4 -dominating%5:00:00:dominant:01 1 1 -domination%1:04:00:: 1 6 -domination%1:26:00:: 2 1 -domineer%2:37:00:: 1 1 -domineering%3:00:00:: 1 1 -dominican_republic%1:15:00:: 1 1 -dominion%1:21:01:: 2 1 -dominion%1:26:00:: 1 4 -don%1:18:01:: 1 1 -don%2:29:00:: 1 4 -don_quixote%1:18:01:: 1 3 -donate%2:40:00:: 1 7 -donation%1:04:00:: 2 1 -donation%1:21:00:: 1 2 -done%5:00:00:finished:01 1 7 -done_for%5:00:00:destroyed:00 1 1 -done_up%5:00:00:wrapped:00 1 1 -done_with%5:00:00:finished:01 1 1 -donor%1:18:00:: 1 7 -doom%1:11:00:: 1 3 -doom%2:32:01:: 1 9 -doomed%1:14:00:: 1 1 -doomed%5:00:00:dead:01 1 2 -door%1:06:00:: 1 98 -door%1:06:01:: 2 36 -door%1:06:02:: 4 1 -door%1:07:00:: 3 5 -doorbell%1:06:00:: 1 1 -doorhandle%1:06:00:: 1 1 -doorknob%1:06:00:: 1 1 -doorman%1:18:00:: 1 3 -doorway%1:06:00:: 1 11 -dooryard%1:06:00:: 1 2 -dope%1:06:00:: 1 1 -doped%5:00:00:treated:00 1 1 -doppler_effect%1:19:00:: 1 1 -dormant%5:00:00:asleep(p):00 3 2 -dormitory%1:06:00:: 1 2 -dosage%1:23:00:: 1 6 -dose%1:06:00:: 1 4 -dose%1:23:00:: 2 2 -dose%2:30:00:: 1 1 -dosed%5:00:00:treated:02 1 1 -dot%1:25:00:: 1 13 -dot%2:42:00:: 1 3 -dotted%5:00:00:broken:02 2 1 -dotted%5:00:00:patterned:00 1 2 -double%1:04:00:: 1 12 -double%2:30:00:: 1 12 -double%2:35:00:: 2 2 -double%2:35:01:: 4 1 -double%2:38:00:: 3 1 -double%5:00:01:multiple:00 3 4 -double%5:00:02:multiple:00 2 5 -double%5:00:03:multiple:00 1 5 -double-breasted%3:00:00:: 1 1 -double-crosser%1:18:00:: 1 1 -double-crossing%1:04:00:: 1 1 -double-glaze%2:40:00:: 1 1 -double_bass%1:06:00:: 1 3 -double_bogey%2:35:00:: 1 1 -double_cross%2:41:00:: 1 1 -double_entendre%1:10:00:: 1 2 -double_over%2:38:00:: 1 1 -double_play%1:04:00:: 1 1 -double_standard%1:10:00:: 1 1 -double_up%2:38:00:: 1 1 -doubleheader%1:04:00:: 1 1 -doubly%4:02:00:: 1 1 -doubt%1:07:00:: 2 4 -doubt%1:09:00:: 1 26 -doubt%2:31:00:: 1 16 -doubt%2:31:01:: 3 1 -doubt%2:32:00:: 2 2 -doubtful%5:00:00:questionable:00 1 10 -doubtful%5:00:00:uncertain:02 2 2 -doubtless%4:02:00:: 1 8 -dough%1:13:00:: 1 3 -dough%1:21:00:: 2 1 -dourly%4:02:00:: 1 1 -dove%1:05:00:: 1 2 -dovetail%2:42:00:: 1 1 -doweling%1:04:00:: 1 1 -down%1:04:00:: 2 1 -down%1:05:00:: 1 1 -down%2:33:00:: 3 1 -down%2:34:00:: 1 3 -down%2:34:01:: 2 1 -down%3:00:00:: 1 9 -down%4:02:00:: 1 98 -down%4:02:02:: 2 22 -down%4:02:03:: 3 2 -down%5:00:00:descending(a):00 4 2 -down%5:00:00:falling:00 2 1 -down%5:00:00:out(p):02 5 1 -down%5:00:00:perfect:00 3 1 -down_the_stairs%4:02:00:: 1 4 -downcast%5:00:00:down:00 1 1 -downed%3:00:02:: 1 1 -downfall%1:11:01:: 1 2 -downgrade%2:31:00:: 1 4 -downhill%5:00:00:descending(a):00 1 1 -downpour%1:19:00:: 1 2 -downright%4:02:00:: 1 3 -downstairs%4:02:00:: 1 6 -downstream%4:02:00:: 1 1 -downtown%1:15:00:: 1 11 -downtown%3:00:00:: 1 13 -downtrodden%5:00:00:wronged:00 1 2 -downward%4:02:00:: 1 2 -downward%5:00:00:descending(a):00 2 3 -downward%5:00:00:down:00 1 1 -downwind%4:02:00:: 1 2 -dowry%1:21:00:: 1 2 -doze%2:29:00:: 1 4 -dozen%1:23:00:: 1 15 -dozen%5:00:00:cardinal:00 1 3 -dozens%1:23:00:: 1 3 -drab%5:00:00:colorless:02 2 1 -drab%5:00:00:dull:03 1 2 -draft%1:06:01:: 3 1 -draft%1:19:00:: 2 1 -draft%1:21:00:: 1 1 -draft%2:33:00:: 2 2 -draft%2:36:00:: 1 4 -drafting%1:04:01:: 1 1 -drafting%1:04:02:: 2 1 -drafting_board%1:06:00:: 1 1 -drafty%5:00:00:leaky:00 1 1 -drag%1:19:00:: 1 1 -drag%2:34:00:: 6 1 -drag%2:35:00:: 1 16 -drag%2:35:01:: 2 13 -drag%2:38:00:: 5 1 -drag%2:38:06:: 4 1 -drag%2:42:00:: 3 1 -drag_a_bunt%2:35:00:: 1 1 -drag_one's_feet%2:42:00:: 1 2 -drag_out%2:42:00:: 1 1 -drag_through_the_mud%2:32:00:: 1 1 -dragging%5:00:00:effortful:00 1 1 -dragon%1:18:02:: 1 6 -drain%1:04:00:: 1 1 -drain%2:30:01:: 3 1 -drain%2:34:00:: 2 1 -drain%2:38:00:: 1 2 -drainage%1:04:00:: 1 3 -drainage_ditch%1:06:00:: 1 2 -drama%1:07:00:: 4 1 -drama%1:10:00:: 3 2 -drama%1:10:01:: 1 12 -drama%1:11:00:: 2 7 -dramatic%3:00:00:: 1 13 -dramatic%5:00:00:impressive:00 2 5 -dramatically%4:02:00:: 2 2 -dramatically%4:02:01:: 3 1 -dramatically%4:02:02:: 1 4 -dramatics%1:04:00:: 1 1 -dramatist%1:18:00:: 1 2 -dramatize%2:32:00:: 3 1 -dramatize%2:32:01:: 2 1 -dramatize%2:36:00:: 1 1 -drape%1:06:00:: 1 1 -drape%2:35:00:: 1 3 -drape%2:35:01:: 2 1 -draped%5:00:00:covered:00 1 3 -draper%1:18:00:: 1 1 -drapery%1:06:00:: 1 4 -drastic%5:00:00:forceful:00 1 1 -drastically%4:02:02:: 1 3 -draught%1:04:01:: 2 1 -draught%1:13:00:: 1 2 -draughty%5:00:00:leaky:00 1 1 -draw%1:17:00:: 1 5 -draw%2:30:14:: 17 2 -draw%2:31:00:: 5 10 -draw%2:31:13:: 10 6 -draw%2:32:00:: 9 6 -draw%2:33:01:: 15 3 -draw%2:34:01:: 12 5 -draw%2:35:01:: 4 10 -draw%2:35:02:: 21 1 -draw%2:35:03:: 1 13 -draw%2:36:00:: 7 7 -draw%2:36:01:: 16 2 -draw%2:36:02:: 20 1 -draw%2:36:07:: 19 1 -draw%2:37:01:: 11 5 -draw%2:37:03:: 2 12 -draw%2:38:00:: 8 6 -draw%2:38:01:: 6 9 -draw%2:38:02:: 13 4 -draw%2:38:07:: 18 1 -draw%2:40:00:: 3 10 -draw%2:40:01:: 14 3 -draw_back%2:38:00:: 1 8 -draw_close%2:35:00:: 1 1 -draw_in%2:35:00:: 3 1 -draw_in%2:35:02:: 1 1 -draw_in%2:35:03:: 2 1 -draw_near%2:38:00:: 1 3 -draw_off%2:35:00:: 1 1 -draw_on%2:40:00:: 1 1 -draw_out%2:30:00:: 2 1 -draw_out%2:32:00:: 1 1 -draw_rein%2:41:00:: 1 1 -draw_the_line%2:30:00:: 1 1 -draw_together%2:35:00:: 1 2 -draw_up%2:31:00:: 4 1 -draw_up%2:38:01:: 3 1 -draw_up%2:38:02:: 2 2 -draw_up%2:41:00:: 1 2 -drawer%1:06:00:: 1 5 -drawing%1:04:01:: 3 2 -drawing%1:06:00:: 2 5 -drawing%1:10:00:: 1 7 -drawing_board%1:06:00:: 1 1 -drawing_paper%1:27:00:: 1 1 -drawing_power%1:07:00:: 1 1 -drawing_room%1:06:00:: 1 3 -drawl%1:10:00:: 1 1 -drawl%2:32:00:: 1 1 -drawn%5:00:00:closed:01 4 1 -drawn%5:00:00:delineated:00 3 1 -drawn%5:00:00:tense:03 2 1 -drawn%5:00:00:tired:00 1 2 -dread%1:12:00:: 1 1 -dread%2:37:00:: 1 4 -dreadful%5:00:00:alarming:00 1 6 -dreadful%5:00:00:bad:00 2 1 -dreadfully%4:02:00:: 1 1 -dream%1:09:01:: 1 31 -dream%1:09:02:: 2 7 -dream%1:09:03:: 4 2 -dream%1:09:04:: 5 1 -dream%1:12:00:: 3 4 -dream%2:36:00:: 1 15 -dream%2:39:00:: 2 11 -dream_up%2:36:00:: 1 3 -dreamed%5:00:00:unreal:00 1 1 -dreamer%1:18:02:: 1 1 -dreamfully%4:02:00:: 1 1 -dreamlike%5:00:00:unreal:02 1 1 -dreamy%5:00:00:inattentive:00 1 2 -drearily%4:02:00:: 1 2 -dreary%5:00:00:cheerless:00 1 2 -dreary%5:00:00:dull:03 2 1 -dregs%1:17:00:: 1 4 -drenched%5:00:00:covered:00 2 1 -drenched%5:00:00:wet:01 1 1 -dress%1:06:00:: 1 15 -dress%1:06:01:: 2 4 -dress%2:29:00:: 1 15 -dress%2:29:01:: 2 8 -dress%2:29:05:: 5 2 -dress%2:29:07:: 4 2 -dress%2:30:00:: 6 1 -dress%2:35:02:: 3 2 -dress_shop%1:06:00:: 1 2 -dress_up%2:29:00:: 1 5 -dress_up%2:30:00:: 2 1 -dressed%5:00:00:clothed:00 1 9 -dresser%1:06:00:: 1 1 -dressing_gown%1:06:00:: 1 3 -dressing_room%1:06:00:: 1 7 -dressy%5:00:00:fancy:00 1 2 -dribble%2:38:00:: 1 2 -dried%5:00:00:dry:01 1 3 -dried%5:00:00:preserved:02 2 1 -dried-out%5:00:00:dry:01 1 1 -drift%1:19:00:: 1 3 -drift%1:22:01:: 2 1 -drift%2:38:00:: 4 2 -drift%2:38:01:: 3 3 -drift%2:38:02:: 1 6 -drift%2:38:04:: 2 3 -drifting%5:00:00:afloat(p):00 2 2 -drill%2:31:00:: 3 1 -drill%2:31:03:: 2 5 -drill%2:35:00:: 1 21 -drilled%5:00:00:trained:00 1 1 -drink%1:04:00:: 2 4 -drink%1:13:00:: 3 3 -drink%1:13:04:: 1 20 -drink%2:31:00:: 4 1 -drink%2:34:00:: 1 30 -drink%2:34:01:: 2 10 -drink%2:34:12:: 3 1 -drink_up%2:34:00:: 1 1 -drinker%1:18:01:: 1 1 -drinking%1:04:00:: 1 10 -drinking%1:04:01:: 2 6 -drinking_water%1:13:00:: 1 1 -drip%2:38:00:: 1 11 -dripping%5:00:00:wet:01 1 3 -dripping%5:00:02:wet:01 2 1 -drive%1:04:00:: 8 1 -drive%1:04:02:: 3 4 -drive%1:04:03:: 6 1 -drive%1:04:04:: 1 6 -drive%1:04:06:: 7 1 -drive%1:06:01:: 4 3 -drive%1:06:02:: 2 5 -drive%1:07:00:: 5 1 -drive%2:32:00:: 12 1 -drive%2:35:00:: 4 13 -drive%2:35:01:: 9 2 -drive%2:35:07:: 8 2 -drive%2:35:11:: 6 5 -drive%2:36:00:: 7 4 -drive%2:38:00:: 2 24 -drive%2:38:01:: 1 56 -drive%2:38:02:: 3 13 -drive%2:38:03:: 11 1 -drive%2:41:00:: 10 1 -drive%2:41:02:: 5 6 -drive_around%2:38:00:: 1 1 -drive_away%2:38:00:: 1 1 -drive_in%2:33:00:: 1 4 -drive_in%2:38:00:: 2 1 -drive_off%2:38:06:: 1 2 -drive_out%2:38:01:: 1 1 -drive_up%2:38:00:: 1 1 -driven%5:00:00:involuntary:01 1 2 -driver%1:18:00:: 1 17 -driveway%1:06:00:: 1 5 -driving%5:00:00:dynamic:00 1 2 -driving_force%1:04:00:: 1 1 -drizzle%1:19:00:: 1 5 -drizzling%5:00:00:descending(a):00 1 2 -drone%1:05:00:: 1 2 -drone%1:10:00:: 2 1 -droop%2:38:00:: 1 1 -drop%1:07:00:: 3 1 -drop%1:23:00:: 2 9 -drop%1:25:00:: 1 9 -drop%2:30:00:: 3 12 -drop%2:30:01:: 7 5 -drop%2:30:05:: 12 1 -drop%2:32:00:: 6 6 -drop%2:33:00:: 10 2 -drop%2:35:00:: 8 3 -drop%2:35:03:: 9 2 -drop%2:38:00:: 2 21 -drop%2:38:01:: 1 36 -drop%2:38:05:: 4 7 -drop%2:40:00:: 11 1 -drop%2:41:01:: 5 6 -drop_back%2:38:00:: 1 1 -drop_behind%2:38:00:: 1 1 -drop_by%2:41:00:: 1 1 -drop_dead%2:30:00:: 1 2 -drop_down%2:38:01:: 1 3 -drop_in%2:41:00:: 1 1 -drop_off%2:29:00:: 2 1 -drop_off%2:30:01:: 1 1 -drop_out%2:33:00:: 1 2 -droplet%1:23:00:: 1 3 -dropout%1:18:00:: 1 1 -droppings%1:27:00:: 1 1 -dross%1:27:01:: 1 1 -drought%1:26:00:: 1 5 -drought%1:28:00:: 2 1 -drover%1:18:00:: 1 1 -drown%2:30:00:: 3 2 -drown%2:30:01:: 4 1 -drown%2:30:02:: 2 2 -drown%2:35:00:: 1 3 -drown_out%2:39:00:: 1 3 -drowse%2:29:01:: 1 1 -drowsily%4:02:00:: 1 1 -drowsiness%1:26:00:: 1 1 -drowsy%5:00:00:asleep(p):00 1 1 -drug%1:06:00:: 1 30 -drug%2:29:00:: 1 1 -drugged%5:00:00:intoxicated:00 1 3 -drugging%1:04:00:: 1 1 -drugless%5:00:00:healthful:00 1 1 -drugstore%1:06:00:: 1 6 -drum%1:06:00:: 1 5 -drum%1:11:00:: 2 1 -drum%2:36:00:: 2 1 -drum%2:39:00:: 1 1 -drum_major%1:18:00:: 1 1 -drum_out%2:41:00:: 1 1 -drumhead%1:06:00:: 1 1 -drumlin%1:17:00:: 1 1 -drummer%1:18:00:: 1 1 -drunk%1:18:00:: 1 4 -drunk%3:00:00:: 1 9 -drunk%5:00:00:excited:00 2 2 -drunk-and-disorderly%1:18:00:: 1 1 -drunkard%1:18:00:: 1 2 -drunken%5:00:02:intoxicated:00 1 4 -drunkenly%4:02:00:: 1 4 -drunkenness%1:26:00:: 1 1 -dry%2:30:00:: 2 11 -dry%2:30:01:: 1 12 -dry%3:00:01:: 1 18 -dry%5:00:00:humorous:00 2 1 -dry-eyed%3:00:00:: 1 1 -dry_out%2:30:00:: 1 2 -dry_up%2:30:00:: 1 2 -drygoods%1:06:00:: 1 3 -drying_agent%1:27:00:: 1 1 -dryly%4:02:00:: 1 1 -dryness%1:26:00:: 1 1 -dual%5:00:00:multiple:00 1 3 -dub%2:32:00:: 1 2 -dub%2:32:01:: 2 1 -dubious%5:00:00:questionable:00 2 1 -dubious%5:00:00:uncertain:02 1 2 -dublin%1:15:00:: 1 1 -duck%1:05:00:: 1 4 -duck%2:38:00:: 1 10 -duck%2:38:01:: 2 3 -ducking%1:04:01:: 1 1 -duct%1:08:00:: 1 2 -due%1:07:00:: 1 4 -due%3:00:00:: 1 6 -due%5:00:00:expected:00 3 1 -due%5:00:00:merited:00 2 2 -due_date%1:28:00:: 1 7 -due_process%1:04:00:: 1 5 -due_process_of_law%1:04:00:: 1 1 -due_to%5:00:00:attributable:00 1 24 -duel%1:04:00:: 1 1 -duel%1:04:01:: 2 1 -duelist%1:18:00:: 1 1 -duffel_bag%1:06:00:: 1 3 -duffer%1:18:00:: 1 3 -dugout%1:06:01:: 1 7 -duke%1:18:00:: 1 1 -dull%2:30:00:: 2 1 -dull%2:35:01:: 1 1 -dull%3:00:02:: 2 5 -dull%3:00:03:: 1 5 -dull%3:00:04:: 6 1 -dull%5:00:00:inactive:03 8 1 -dull%5:00:00:soft:04 3 2 -dull%5:00:00:stupid:00 7 1 -dull%5:00:00:unsaturated:03 5 2 -dull%5:00:01:uninteresting:00 4 2 -dullard%1:18:02:: 1 1 -dulled%5:00:00:uninterested:00 1 4 -dully%4:02:00:: 1 2 -dully%4:02:02:: 2 1 -duly%4:02:00:: 1 8 -dumb%5:00:00:stupid:00 1 9 -dumbbell%1:06:00:: 1 4 -dumfounded%5:00:00:surprised:00 1 1 -dump%2:40:00:: 1 12 -dump%2:40:02:: 2 1 -dump_truck%1:06:00:: 1 1 -dumped%3:44:00:: 1 1 -dun%1:05:00:: 1 1 -dun%5:00:00:chromatic:00 1 1 -dune%1:17:00:: 1 1 -dung%1:27:00:: 1 2 -dungeon%1:06:00:: 1 3 -dunk%2:35:00:: 1 1 -dupe%2:32:00:: 1 1 -duplicable%5:00:00:reproducible:00 1 1 -duplicate%2:36:00:: 1 3 -duplication%1:04:00:: 2 1 -duplication%1:06:00:: 1 1 -durability%1:07:00:: 1 1 -durable%5:00:00:long:02 1 1 -duration%1:07:00:: 3 1 -duration%1:28:00:: 2 1 -duration%1:28:02:: 1 5 -dusk%1:26:00:: 2 3 -dusk%1:28:00:: 1 5 -dusky%5:00:00:brunet:00 2 1 -dusky%5:00:00:dark:01 1 1 -dust%1:27:00:: 1 38 -dust%1:27:01:: 2 15 -dust%2:35:00:: 1 3 -dust%2:35:02:: 2 1 -dust-covered%5:00:00:dirty:01 1 1 -dust_cloud%1:19:00:: 1 2 -dustbin%1:06:00:: 1 1 -dustpanful%1:23:00:: 1 1 -dusty%5:00:00:dirty:01 1 10 -dutch%3:01:00:: 1 5 -dutch_oven%1:06:00:: 1 1 -duty%1:04:00:: 1 13 -duty%1:04:02:: 2 12 -duty%1:21:00:: 3 2 -dwarf%1:18:00:: 1 1 -dwarf%2:42:00:: 1 3 -dwell%2:31:00:: 1 4 -dwell%2:42:00:: 3 3 -dwell%2:42:01:: 2 3 -dwell_on%2:42:00:: 1 1 -dweller%1:18:00:: 1 3 -dwelling%1:06:00:: 1 11 -dwelling_house%1:06:00:: 1 1 -dwindle%2:30:00:: 1 9 -dwindling%5:00:00:decreasing:00 1 2 -dwindling_away%1:11:00:: 1 1 -dye%2:30:00:: 1 1 -dyeing%1:04:00:: 1 1 -dying%1:28:00:: 1 1 -dying%3:00:00:: 1 2 -dynamic%3:00:00:: 1 3 -dynamics%1:09:00:: 1 1 -dynamite%1:06:00:: 1 1 -dynamite%2:30:00:: 1 1 -dynasty%1:14:00:: 1 1 -dysentery%1:26:00:: 1 1 -e.g.%4:02:00:: 1 7 -each%4:02:00:: 1 7 -each%5:00:00:all(a):00 1 64 -each_day%4:02:00:: 1 2 -each_month%4:02:00:: 1 2 -each_week%4:02:00:: 1 4 -each_year%4:02:00:: 1 3 -eager%3:00:00:: 1 20 -eager%5:00:00:enthusiastic:00 2 2 -eagerly%4:02:00:: 1 6 -eagerness%1:12:00:: 1 5 -eagle%1:05:00:: 1 1 -eagle-eyed%5:00:00:farsighted:00 1 1 -ear%1:08:00:: 1 36 -ear%1:08:01:: 3 6 -ear%1:09:00:: 2 7 -ear%1:09:01:: 4 1 -eared%5:00:00:worn:00 1 1 -earl%1:18:00:: 1 1 -earlier%4:02:00:: 1 18 -earlier%4:02:02:: 2 7 -earlier%4:02:04:: 3 1 -earlier%5:00:00:past:00 1 18 -earliest%4:02:00:: 1 1 -earliest%5:00:00:early:00 1 2 -early%3:00:00:: 1 79 -early%3:00:01:: 5 2 -early%3:00:02:: 2 22 -early%4:02:00:: 2 6 -early%4:02:01:: 1 19 -early%4:02:02:: 3 1 -early%5:00:00:past:00 3 10 -early%5:00:00:young:00 4 6 -early_childhood%1:28:00:: 1 1 -early_days%1:28:00:: 1 2 -earn%2:40:01:: 1 19 -earn%2:40:03:: 2 15 -earned%3:00:00:: 1 2 -earned_run%1:04:00:: 1 1 -earnest%1:21:00:: 1 1 -earnest%5:00:00:serious:00 1 2 -earnestly%4:02:02:: 1 2 -earnestness%1:12:00:: 1 1 -earnings%1:21:00:: 2 2 -earnings%1:21:01:: 1 4 -earphone%1:06:00:: 1 1 -earsplitting%5:00:00:loud:00 1 1 -earth%1:15:00:: 4 3 -earth%1:17:00:: 1 51 -earth%1:17:01:: 3 20 -earth%1:27:00:: 2 20 -earth's_surface%1:17:00:: 1 1 -earthbound%5:00:00:earthly:00 1 1 -earthlike%5:00:00:chromatic:00 1 1 -earthman%1:18:00:: 1 2 -earthquake%1:11:00:: 1 17 -earthshaking%5:00:00:loud:00 1 1 -earthy%5:00:00:indecent:00 1 2 -earthy%5:00:00:natural:01 2 1 -earthy%5:00:00:uninhibited:00 3 1 -ease%1:07:00:: 1 1 -ease%2:29:00:: 2 4 -ease%2:30:00:: 3 3 -ease%2:37:00:: 4 1 -ease%2:38:00:: 1 4 -ease_up%2:30:00:: 2 1 -ease_up%2:38:00:: 1 1 -easel%1:06:00:: 1 4 -easily%4:02:01:: 1 31 -easily%4:02:06:: 2 3 -east%1:15:00:: 2 4 -east%1:15:01:: 3 2 -east%1:24:00:: 1 6 -east%3:00:00:: 1 7 -east%4:02:00:: 1 1 -east_german%1:18:00:: 1 1 -east_german%3:01:00:: 1 1 -east_side%1:15:00:: 1 2 -easter%1:28:00:: 1 3 -easter_card%1:10:00:: 1 1 -eastern%3:00:02:: 2 1 -eastern%5:00:00:east:00 1 8 -eastern%5:00:02:east:00 3 1 -eastward%4:02:00:: 1 1 -eastward%5:00:00:east:00 1 1 -easy%3:00:01:: 1 62 -easy%3:00:02:: 3 1 -easy%4:02:01:: 1 5 -easy%5:00:00:light:08 5 1 -easy%5:00:00:pleasing:00 4 1 -easy%5:00:00:unhurried:00 2 4 -easy_chair%1:06:00:: 1 2 -easy_money%1:21:00:: 1 2 -eat%2:34:00:: 1 61 -eat%2:34:01:: 2 13 -eat%2:34:02:: 3 4 -eat_on%2:37:00:: 1 1 -eat_up%2:34:00:: 1 2 -eat_up%2:34:03:: 2 1 -eatable%3:00:00:: 1 1 -eaten%3:00:00:: 1 1 -eating%1:04:00:: 1 3 -ebb%2:38:00:: 1 1 -ebbing%1:22:00:: 1 1 -ebony%1:07:00:: 1 1 -ebullient%5:00:00:spirited:00 1 1 -eccentric%1:18:00:: 1 3 -eccentric%3:00:00:: 2 1 -eccentric%5:00:00:unconventional:01 1 4 -eccentricity%1:07:00:: 1 2 -ecclesiastical%3:01:00:: 1 3 -ecclesiasticism%1:04:00:: 1 1 -echo%1:07:00:: 1 5 -echo%2:32:00:: 1 5 -echo%2:39:00:: 2 2 -eclectic%5:00:00:discriminating:00 1 2 -eclipse%1:11:00:: 1 2 -eclipse%2:39:00:: 2 1 -eclipse%2:42:00:: 1 1 -ecliptic%1:15:00:: 1 3 -economic%3:01:00:: 2 5 -economic%3:01:01:: 1 65 -economic%5:00:00:efficient:00 3 1 -economic_policy%1:10:00:: 1 1 -economic_strangulation%1:04:00:: 1 1 -economic_system%1:14:00:: 1 1 -economic_value%1:21:00:: 1 1 -economical%3:01:00:: 2 2 -economical%5:00:00:efficient:00 1 6 -economical%5:00:00:thrifty:00 3 1 -economically%4:02:00:: 1 3 -economics%1:09:00:: 1 3 -economist%1:18:00:: 1 4 -economize%2:40:00:: 1 4 -economy%1:04:00:: 4 1 -economy%1:07:00:: 3 1 -economy%1:09:01:: 2 1 -economy%1:14:00:: 1 20 -ecstasy%1:26:00:: 1 4 -ecstasy%1:26:02:: 2 3 -ecstatic%5:00:00:joyous:00 1 2 -eddy%2:38:00:: 1 1 -edema%1:26:00:: 1 2 -edematous%5:00:00:unhealthy:00 1 1 -edentulous%5:00:00:toothless:00 1 1 -edge%1:06:00:: 3 5 -edge%1:06:01:: 6 1 -edge%1:07:00:: 5 2 -edge%1:07:01:: 4 2 -edge%1:15:00:: 1 28 -edge%1:25:00:: 2 5 -edge%2:38:00:: 1 3 -edge_up%2:38:00:: 1 1 -edged%5:00:00:bordered:00 1 5 -edgewise%4:02:00:: 1 1 -edgy%5:00:00:tense:03 1 2 -edifice%1:06:00:: 1 2 -edify%2:32:00:: 1 1 -edifying%3:00:00:: 1 1 -edit%2:30:00:: 1 1 -edit_out%2:30:00:: 1 2 -edition%1:10:02:: 1 3 -edition%1:14:00:: 2 2 -editor%1:18:00:: 1 17 -editorial%1:10:00:: 1 4 -editorial%3:01:00:: 1 1 -editorially%4:02:00:: 1 1 -educate%2:31:00:: 2 3 -educate%2:41:00:: 1 7 -educate%2:41:01:: 3 1 -educated%3:00:00:: 1 5 -education%1:04:00:: 1 34 -education%1:04:01:: 4 5 -education%1:07:01:: 5 3 -education%1:09:00:: 2 10 -education%1:09:01:: 3 6 -educational%3:01:00:: 1 6 -educational%5:00:00:instructive:00 2 4 -educational_activity%1:04:00:: 1 1 -educational_institution%1:14:00:: 1 2 -educator%1:18:00:: 1 9 -eeg%1:10:00:: 1 3 -efface%2:30:00:: 1 2 -effect%1:07:00:: 2 11 -effect%1:07:01:: 5 1 -effect%1:09:00:: 3 9 -effect%1:10:00:: 4 2 -effect%1:19:00:: 1 101 -effect%2:36:00:: 1 17 -effect%2:41:15:: 2 3 -effective%3:00:00:: 1 29 -effective%5:00:00:actual:00 5 1 -effective%5:00:00:competent:00 2 14 -effective%5:00:00:efficacious:00 3 8 -effective%5:00:00:operative:00 4 4 -effectively%4:02:00:: 2 1 -effectively%4:02:01:: 1 12 -effectiveness%1:07:00:: 1 11 -effectiveness%1:07:01:: 2 3 -effectually%4:02:00:: 1 1 -effectuate%2:36:00:: 1 2 -efficacious%3:00:00:: 1 1 -efficacy%1:07:00:: 1 6 -efficiency%1:09:00:: 2 9 -efficiency%1:24:00:: 1 12 -efficiency_engineer%1:18:00:: 1 2 -efficient%3:00:00:: 1 7 -efficient%5:00:00:competent:00 2 3 -efficiently%4:02:00:: 1 2 -effloresce%2:30:00:: 1 1 -effluent%1:27:00:: 1 19 -effort%1:04:00:: 1 84 -effort%1:04:01:: 2 12 -effort%1:04:02:: 3 2 -effortless%3:00:00:: 1 1 -effortlessly%4:02:00:: 1 1 -egalitarianism%1:09:00:: 1 2 -egg%1:05:00:: 1 19 -egg%1:13:00:: 2 1 -egg_laying%1:22:00:: 1 1 -egg_on%2:35:00:: 1 1 -egghead%1:18:00:: 1 1 -eggplant%1:13:00:: 1 1 -eggs%1:13:00:: 1 6 -ego%1:09:01:: 2 1 -ego%1:12:01:: 1 6 -egocentric%5:00:00:egoistic:00 1 1 -egotism%1:07:00:: 1 2 -egotist%1:18:00:: 1 3 -egypt%1:15:00:: 1 2 -eight%5:00:00:cardinal:00 1 37 -eighteen%5:00:00:cardinal:00 1 8 -eighteenth%5:00:00:ordinal:00 1 7 -eighth%5:00:00:ordinal:00 1 12 -eighty%5:00:00:cardinal:00 1 6 -either%4:02:00:: 1 10 -ejaculate%2:32:00:: 1 4 -ejaculation%1:10:00:: 1 1 -eject%2:29:00:: 2 1 -eject%2:35:01:: 1 2 -ejection%1:04:01:: 1 2 -eke_out%2:40:02:: 1 2 -elaborate%2:32:00:: 1 7 -elaborate%5:00:00:careful:00 2 4 -elaborate%5:00:00:fancy:00 1 9 -elaborately%4:02:00:: 1 1 -elaboration%1:04:01:: 1 2 -elapse%2:38:00:: 1 5 -elapsed%3:44:00:: 1 1 -elastic%3:00:00:: 1 5 -elastic%5:00:00:adaptable:00 2 1 -elasticity%1:07:00:: 1 3 -elate%2:37:00:: 1 1 -elation%1:12:00:: 2 1 -elation%1:26:00:: 1 1 -elbow%1:06:01:: 2 1 -elbow%1:08:00:: 1 9 -elbow%2:38:00:: 1 1 -elder%1:18:00:: 1 3 -elder%5:00:00:senior:00 1 2 -elderly%5:00:00:old:02 1 6 -eldest%5:00:00:first:00 1 2 -elect%2:31:00:: 2 3 -elect%2:41:00:: 1 21 -elected%3:00:02:: 1 3 -election%1:04:00:: 2 1 -election%1:04:01:: 1 67 -election_day%1:28:00:: 1 1 -elector%1:18:00:: 1 1 -electoral%3:01:00:: 1 11 -electric%3:01:00:: 1 16 -electric_chair%1:06:00:: 1 1 -electric_circuit%1:06:00:: 1 1 -electric_current%1:19:00:: 1 4 -electric_discharge%1:19:00:: 1 1 -electric_heater%1:06:00:: 1 1 -electric_light%1:06:00:: 1 2 -electric_outlet%1:06:00:: 1 1 -electric_power%1:19:00:: 1 1 -electric_razor%1:06:00:: 1 2 -electric_refrigerator%1:06:00:: 1 1 -electric_shock%1:04:01:: 1 1 -electric_toothbrush%1:06:00:: 1 2 -electrical%3:01:00:: 1 16 -electrical_engineer%1:18:00:: 1 1 -electrical_shock%1:04:00:: 1 1 -electrical_work%1:04:00:: 1 1 -electrically%4:02:00:: 1 1 -electricity%1:12:00:: 3 1 -electricity%1:19:00:: 1 8 -electricity%1:19:01:: 2 5 -electrifying%5:00:00:exciting:00 1 1 -electrocardiograph%1:06:00:: 1 2 -electrode%1:06:00:: 1 3 -electrolysis%1:22:00:: 1 1 -electromagnet%1:06:00:: 1 1 -electromagnetic%3:01:00:: 1 1 -electromyography%1:04:00:: 1 1 -electron%1:17:00:: 1 12 -electron_microscopic%3:01:00:: 1 2 -electronic%3:01:00:: 1 4 -electronic_device%1:06:00:: 1 2 -electronic_equipment%1:06:00:: 1 1 -electronics%1:09:00:: 1 10 -electrophoresis%1:22:00:: 1 1 -electrophorus%1:06:00:: 1 1 -electroshock%1:04:00:: 1 2 -electroshock_therapy%1:04:00:: 1 1 -electrostatic%3:01:00:: 1 2 -electrotherapist%1:18:00:: 1 1 -elegance%1:07:00:: 1 3 -elegant%3:00:00:: 1 2 -element%1:06:00:: 2 10 -element%1:09:00:: 1 34 -element%1:15:00:: 4 1 -element%1:27:00:: 3 3 -elemental%3:01:00:: 3 1 -elemental%5:00:00:natural:01 1 3 -elemental%5:00:00:simple:02 2 2 -elementary%5:00:00:easy:01 1 2 -elementary_school%1:14:00:: 1 1 -elephant%1:05:00:: 1 3 -elevate%2:30:00:: 3 2 -elevate%2:38:00:: 2 2 -elevate%2:41:00:: 1 3 -elevated%5:00:00:overhead:00 1 1 -elevated%5:00:00:raised:00 2 1 -elevation%1:11:00:: 1 2 -elevation%1:24:00:: 3 1 -elevation%1:26:00:: 2 1 -elevator%1:06:00:: 1 5 -eleven%5:00:00:cardinal:00 1 12 -eleventh%5:00:00:ordinal:00 1 2 -elfin%5:00:00:small:00 2 1 -elfin%5:00:00:supernatural:00 1 1 -elicit%2:36:00:: 2 2 -elicit%2:37:00:: 1 6 -eligible%3:00:00:: 1 5 -eliminate%2:29:00:: 5 1 -eliminate%2:30:00:: 3 2 -eliminate%2:30:01:: 1 40 -eliminate%2:31:00:: 4 1 -eliminate%2:42:01:: 2 13 -elimination%1:04:02:: 1 3 -elite%1:14:00:: 1 6 -elizabethan%1:18:00:: 1 1 -ell%1:06:00:: 1 1 -ellipsoid%1:25:00:: 1 5 -elm%1:20:00:: 1 1 -elongate%2:30:00:: 1 1 -elongated%5:00:00:long:01 2 1 -elongated%5:00:02:long:01 1 1 -eloquent%5:00:00:articulate:00 1 4 -else%4:02:00:: 2 2 -else%4:02:01:: 1 45 -else%5:00:00:added:00 2 12 -else%5:00:00:other:00 1 26 -elsewhere%4:02:00:: 1 14 -eluate%1:27:00:: 1 2 -elucidate%2:32:00:: 1 1 -elude%2:38:00:: 1 2 -elude%2:42:00:: 2 1 -elusive%5:00:00:artful:00 2 1 -elusive%5:00:00:unidentifiable:00 1 1 -elute%2:35:00:: 1 1 -elution%1:22:00:: 1 4 -emaciated%5:00:00:thin:03 1 2 -emanate%2:30:00:: 1 1 -emanation%1:04:00:: 2 1 -emanation%1:27:00:: 1 1 -emancipate%2:41:00:: 2 1 -emancipate%2:41:01:: 1 1 -emancipated%5:00:00:free:00 1 1 -emasculate%2:30:00:: 1 1 -embankment%1:06:00:: 1 5 -embargo%1:10:00:: 1 1 -embark%2:30:10:: 2 1 -embark%2:38:00:: 1 1 -embark_on%2:36:00:: 1 3 -embarrass%2:37:00:: 1 1 -embarrassed%5:00:00:discomposed:00 1 1 -embarrassing%5:00:00:difficult:00 1 3 -embarrassing%5:00:00:unpleasant:00 2 2 -embarrassment%1:11:00:: 3 1 -embarrassment%1:12:00:: 1 3 -embarrassment%1:26:00:: 2 1 -embassy%1:06:00:: 1 1 -embed%2:35:00:: 1 2 -embedded%5:00:01:enclosed:00 1 1 -embellish%2:32:00:: 1 1 -embezzle%2:40:00:: 1 2 -embitter%2:37:00:: 1 1 -emblem%1:06:00:: 1 3 -emblem%1:10:00:: 2 2 -emblematic%5:00:00:representative:00 1 3 -embodied%3:44:00:: 1 1 -embodiment%1:18:00:: 1 1 -embody%2:42:00:: 2 3 -embody%2:42:01:: 1 3 -embody%2:42:02:: 3 1 -embolden%2:37:00:: 1 1 -emboldened%5:00:00:bold:00 1 1 -emboss%2:35:00:: 1 1 -embowered%5:00:00:enclosed:00 1 1 -embrace%1:04:00:: 1 2 -embrace%1:26:00:: 2 1 -embrace%2:31:00:: 3 1 -embrace%2:35:00:: 2 3 -embrace%2:42:00:: 1 5 -embracing%1:04:00:: 1 1 -embroider%2:36:00:: 1 2 -embroil%2:42:00:: 1 1 -emerge%2:30:00:: 1 36 -emerge%2:30:01:: 3 5 -emerge%2:30:02:: 2 9 -emerge%2:38:00:: 4 3 -emergence%1:11:00:: 2 1 -emergence%1:11:01:: 1 1 -emergency%1:11:00:: 1 10 -emergency%1:26:00:: 2 1 -emergent%5:00:00:aborning:00 1 1 -emerging%3:44:00:: 1 1 -emerging%5:00:00:aborning:00 2 1 -emeritus%5:00:00:old:02 1 1 -emigrate%2:30:00:: 1 2 -emigration%1:04:00:: 1 1 -eminence%1:26:00:: 1 1 -eminent%5:00:00:important:00 1 2 -eminent_domain%1:07:00:: 1 1 -eminently%4:02:00:: 1 1 -emission%1:04:00:: 1 6 -emission_spectrum%1:19:00:: 1 1 -emit%2:29:00:: 1 2 -emit%2:43:00:: 2 1 -emitting%3:44:00:: 1 1 -emotion%1:12:00:: 1 50 -emotional%3:00:00:: 2 7 -emotional%3:00:02:: 1 19 -emotional%3:01:00:: 3 2 -emotional_arousal%1:26:00:: 1 1 -emotional_disturbance%1:26:00:: 1 2 -emotional_state%1:26:00:: 1 5 -emotionalism%1:07:00:: 1 2 -emotionality%1:07:00:: 1 1 -emotionally%4:02:00:: 2 2 -emotionally%4:02:01:: 1 2 -emphasis%1:07:00:: 2 7 -emphasis%1:10:01:: 3 1 -emphasis%1:26:00:: 1 18 -emphasize%2:30:00:: 2 9 -emphasize%2:32:00:: 1 26 -emphasize%2:32:03:: 3 1 -emphatic%5:00:00:stressed:00 1 1 -emphatically%4:02:00:: 1 1 -emphysema%1:26:00:: 1 3 -emphysematous%3:01:00:: 1 1 -empire%1:14:01:: 2 1 -empire%1:15:00:: 1 3 -empirical%3:00:00:: 1 4 -empirically%4:02:00:: 1 4 -empiricism%1:09:00:: 1 1 -employ%1:26:00:: 1 1 -employ%2:34:00:: 1 42 -employ%2:41:00:: 2 14 -employed%3:00:00:: 1 1 -employee%1:18:00:: 1 57 -employer%1:18:00:: 1 14 -employment%1:04:00:: 2 9 -employment%1:04:01:: 4 1 -employment%1:04:02:: 3 6 -employment%1:26:00:: 1 9 -empower%2:41:00:: 1 1 -emptiness%1:26:00:: 1 1 -empty%2:30:00:: 2 3 -empty%2:30:01:: 1 4 -empty%2:35:00:: 4 1 -empty%2:38:00:: 3 2 -empty%3:00:00:: 1 30 -empty%5:00:00:meaningless:00 2 6 -empty_of%5:00:00:empty:00 1 1 -emulate%2:42:00:: 1 2 -emulsified%5:00:00:blended:00 1 1 -enable%2:30:00:: 1 44 -enabling%3:00:00:: 1 1 -enabling_act%1:10:00:: 1 1 -enabling_legislation%1:10:00:: 1 1 -enact%2:36:00:: 2 4 -enact%2:41:00:: 1 13 -enactment%1:04:01:: 1 2 -enamel%1:08:00:: 1 1 -enamel%2:36:00:: 1 1 -enameled%5:00:00:adorned:00 1 1 -encamp%2:42:00:: 1 2 -encampment%1:15:00:: 1 1 -encase%2:35:00:: 1 1 -enchained%5:00:00:bound:01 1 1 -enchant%2:37:00:: 1 2 -enchanted%3:00:00:: 1 1 -enchantment%1:12:00:: 1 1 -encipher%2:32:00:: 1 1 -enclave%1:15:00:: 1 1 -enclose%2:35:00:: 3 1 -enclose%2:35:01:: 1 3 -enclose%2:42:00:: 2 2 -enclosure%1:04:00:: 2 1 -enclosure%1:06:00:: 1 2 -encompass%2:42:00:: 1 4 -encounter%1:04:00:: 1 7 -encounter%1:04:01:: 3 3 -encounter%1:11:00:: 2 4 -encounter%2:33:00:: 5 1 -encounter%2:38:00:: 1 17 -encounter%2:40:00:: 2 8 -encounter%2:42:00:: 3 4 -encounter%2:42:02:: 4 1 -encourage%2:32:00:: 3 1 -encourage%2:37:00:: 2 12 -encourage%2:41:00:: 1 53 -encouragement%1:04:00:: 2 2 -encouragement%1:10:01:: 1 3 -encouragingly%4:02:00:: 1 1 -encroach%2:38:00:: 1 1 -encroach_upon%2:38:00:: 1 1 -encroachment%1:11:00:: 1 3 -encrust%2:35:00:: 1 1 -encumbrance%1:09:00:: 1 1 -encyclopedia%1:10:00:: 1 1 -end%1:04:00:: 11 1 -end%1:09:00:: 5 13 -end%1:09:02:: 4 22 -end%1:11:00:: 3 23 -end%1:15:00:: 1 35 -end%1:15:01:: 9 2 -end%1:15:02:: 7 5 -end%1:15:03:: 10 1 -end%1:18:00:: 8 3 -end%1:26:00:: 6 6 -end%1:28:00:: 2 31 -end%2:30:01:: 2 29 -end%2:42:00:: 1 53 -end%2:42:01:: 3 10 -end_point%1:15:00:: 1 2 -end_up%2:30:00:: 2 2 -end_up%2:30:01:: 1 3 -endanger%2:32:00:: 2 2 -endanger%2:42:00:: 1 3 -endear%2:37:00:: 1 3 -endearing%5:00:00:lovable:00 1 1 -endeavor%1:04:00:: 2 3 -endeavor%1:04:01:: 1 5 -endeavor%2:41:00:: 1 4 -ending%1:04:00:: 2 1 -ending%1:10:00:: 1 3 -endless%5:00:00:long:02 1 6 -endless%5:00:02:infinite:00 2 3 -endlessly%4:02:00:: 1 2 -endlessly%4:02:01:: 2 1 -endorse%2:41:00:: 1 7 -endorse%2:41:01:: 3 1 -endorse%2:41:02:: 2 1 -endothelial%3:01:00:: 1 1 -endothermic_reaction%1:22:00:: 1 2 -endow%2:40:00:: 2 1 -endow%2:41:00:: 1 3 -endowed%3:00:00:: 1 1 -endowment%1:09:00:: 1 1 -endpoint%1:15:00:: 1 1 -endurance%1:07:00:: 1 4 -endure%2:31:00:: 1 6 -endure%2:39:00:: 4 2 -endure%2:42:00:: 3 4 -endure%2:42:04:: 2 4 -enduring%5:00:00:permanent:00 1 6 -enduringly%4:02:00:: 1 1 -enemy%1:14:00:: 1 66 -enemy%1:14:01:: 3 5 -enemy%1:18:00:: 2 11 -enemy%1:18:01:: 4 1 -enemy%5:00:00:hostile:02 1 8 -energetic%3:00:00:: 1 4 -energetic%5:00:00:enterprising:00 2 1 -energetically%4:02:01:: 1 2 -energize%2:29:00:: 1 1 -energy%1:07:00:: 2 8 -energy%1:07:01:: 4 2 -energy%1:07:02:: 3 6 -energy%1:19:00:: 1 31 -enervate%2:30:00:: 1 1 -enervating%5:00:00:debilitating:00 1 1 -enervation%1:07:00:: 1 1 -enfant_terrible%1:18:00:: 1 1 -enforce%2:41:00:: 1 17 -enforce%2:41:01:: 2 7 -enforceable%3:00:00:: 1 1 -enforced%3:00:00:: 1 1 -enforcement%1:04:00:: 1 3 -engage%2:30:00:: 6 1 -engage%2:31:00:: 2 9 -engage%2:32:00:: 5 1 -engage%2:41:00:: 4 1 -engage%2:41:01:: 3 2 -engage%2:41:06:: 1 31 -engaged%5:00:00:involved:00 2 1 -engaged%5:00:02:busy:00 1 7 -engagement%1:04:01:: 1 6 -engagement%1:04:02:: 4 1 -engagement%1:04:05:: 5 1 -engagement%1:10:00:: 3 2 -engagement%1:14:00:: 2 2 -engagingly%4:02:00:: 1 1 -engender%2:36:00:: 1 6 -engine%1:06:00:: 1 9 -engine%1:06:01:: 3 1 -engine%1:19:00:: 2 2 -engineer%1:18:00:: 1 13 -engineering%1:04:01:: 1 6 -engineering%1:09:00:: 2 2 -england%1:15:00:: 1 39 -english%1:09:00:: 3 3 -english%1:10:00:: 1 18 -english%1:18:00:: 2 3 -english%3:01:00:: 1 33 -english_language%1:10:00:: 1 2 -english_muffin%1:13:00:: 1 1 -english_people%1:18:00:: 1 1 -english_professor%1:18:00:: 1 2 -englishman%1:18:00:: 1 5 -engrave%2:35:00:: 1 1 -engraved%5:00:00:carved:00 1 1 -engraver%1:18:01:: 1 1 -engross%2:31:02:: 1 1 -engrossed%5:00:00:attentive:00 1 4 -engrossed%5:00:00:written:00 2 1 -engrossing%5:00:00:interesting:00 1 2 -engulf%2:31:00:: 1 3 -engulf%2:35:00:: 2 2 -enhance%2:30:00:: 1 5 -enhance%2:30:01:: 2 4 -enigma%1:09:00:: 1 1 -enigmatic%5:00:00:incomprehensible:00 1 2 -enjoin%2:32:00:: 2 1 -enjoin%2:32:01:: 1 2 -enjoy%2:34:00:: 5 6 -enjoy%2:34:01:: 2 15 -enjoy%2:37:00:: 1 52 -enjoy%2:37:01:: 3 10 -enjoy%2:39:00:: 4 9 -enjoyable%5:00:00:pleasant:00 1 1 -enjoyment%1:04:00:: 2 2 -enjoyment%1:07:00:: 3 1 -enjoyment%1:12:00:: 1 6 -enlarge%2:30:00:: 3 2 -enlarge%2:30:01:: 2 2 -enlarge%2:30:03:: 1 7 -enlarge%2:32:04:: 4 1 -enlarged%5:00:02:expanded:01 1 4 -enlargement%1:04:00:: 1 2 -enlightened%3:00:00:: 2 2 -enlightened%5:00:00:disenchanted:00 3 1 -enlightened%5:00:00:educated:00 1 4 -enlightenment%1:09:00:: 1 1 -enlist%2:33:00:: 1 7 -enlist%2:33:01:: 3 1 -enlist%2:40:00:: 2 6 -enlisted_man%1:18:00:: 1 1 -enliven%2:30:00:: 2 1 -enliven%2:37:00:: 1 1 -enmesh%2:35:00:: 1 2 -enormity%1:07:01:: 1 1 -enormous%5:00:00:large:00 1 17 -enormously%4:02:00:: 1 3 -enough%1:23:00:: 1 14 -enough%4:02:00:: 1 101 -enough%5:00:00:sufficient:00 1 50 -enquire%2:32:00:: 1 1 -enrage%2:37:00:: 1 1 -enraged%5:00:00:angry:00 1 3 -enrich%2:30:00:: 1 7 -enrichment%1:04:00:: 1 1 -enrol%2:41:00:: 1 3 -enroll%2:41:00:: 1 6 -enrolled%5:00:00:registered:00 1 1 -enrollee%1:18:00:: 1 1 -enrollment%1:04:00:: 1 1 -ensconce%2:35:00:: 1 1 -ensemble%1:14:02:: 1 5 -enshrine%2:35:00:: 1 1 -enslaving%1:04:00:: 1 1 -ensue%2:42:00:: 1 7 -ensuing%5:00:00:succeeding(a):00 1 3 -ensure%2:31:00:: 2 2 -ensure%2:32:00:: 1 6 -entail%2:42:00:: 2 3 -entail%2:42:01:: 1 7 -entangled%5:00:00:involved:00 1 1 -entangled%5:00:01:tangled:00 2 1 -entanglement%1:06:00:: 1 2 -enter%2:32:04:: 5 7 -enter%2:33:00:: 2 24 -enter%2:36:00:: 6 2 -enter%2:38:00:: 1 85 -enter%2:41:06:: 3 17 -enter%2:42:00:: 4 8 -enterotoxemia%1:26:00:: 1 1 -enterprise%1:04:00:: 1 8 -enterprise%1:14:00:: 2 5 -enterprising%3:00:00:: 1 3 -entertain%2:31:00:: 2 1 -entertain%2:41:00:: 1 24 -entertainer%1:18:00:: 1 1 -entertaining%3:00:00:: 1 2 -entertainment%1:04:00:: 1 6 -enthalpy%1:07:00:: 1 2 -enthrall%2:37:00:: 1 1 -enthrone%2:41:01:: 1 1 -enthusiasm%1:07:00:: 2 5 -enthusiasm%1:09:00:: 3 3 -enthusiasm%1:12:00:: 1 5 -enthusiast%1:18:00:: 1 1 -enthusiastic%3:00:00:: 1 9 -enthusiastic%5:00:00:positive:01 2 1 -enthusiastically%4:02:00:: 1 2 -entice%2:32:00:: 1 1 -entire%5:00:00:smooth:02 3 1 -entire%5:00:01:whole:00 1 42 -entire%5:00:02:whole:00 2 5 -entirely%4:02:00:: 1 43 -entirely%4:02:02:: 2 2 -entirety%1:26:00:: 1 2 -entitle%2:32:00:: 2 6 -entitle%2:41:00:: 1 17 -entitled%5:00:00:eligible:00 1 11 -entity%1:03:00:: 1 11 -entomb%2:41:00:: 1 1 -entrance%1:04:00:: 3 3 -entrance%1:06:00:: 1 10 -entrance%1:11:00:: 2 5 -entrance_hall%1:06:00:: 1 1 -entranceway%1:06:00:: 1 1 -entrant%1:06:00:: 1 1 -entrench%2:35:00:: 1 1 -entrepreneur%1:18:00:: 1 6 -entropy%1:19:00:: 1 3 -entrust%2:40:00:: 1 3 -entry%1:04:01:: 2 5 -entry%1:06:00:: 5 1 -entry%1:10:00:: 4 1 -entry%1:10:01:: 1 10 -entry%1:21:00:: 3 2 -enumerate%2:32:00:: 1 1 -enunciate%2:32:00:: 2 1 -enunciate%2:32:01:: 1 1 -envelop%2:35:00:: 1 3 -envelope%1:06:00:: 2 2 -envelope%1:06:01:: 1 9 -enveloping%5:00:00:close:01 2 1 -enveloping%5:00:00:concealing:00 1 1 -enviably%4:02:00:: 1 1 -envious%5:00:00:desirous:00 1 1 -environ%2:42:00:: 1 1 -environment%1:15:00:: 2 1 -environment%1:26:00:: 1 21 -environmental%3:01:01:: 1 1 -environs%1:15:00:: 1 1 -envisage%2:36:00:: 1 2 -envision%2:36:00:: 1 4 -envision%2:36:01:: 2 3 -envy%1:12:00:: 1 2 -envy%2:37:01:: 1 9 -enwrapped%5:00:00:wrapped:00 1 1 -enzymatic%3:01:00:: 1 1 -enzyme%1:27:00:: 1 7 -eosinophilic%3:01:00:: 1 1 -epaulet%1:06:00:: 1 1 -ephemeral%5:00:00:impermanent:00 1 1 -epic%1:10:00:: 1 3 -epic%3:01:00:: 2 1 -epic%5:00:00:large:00 1 2 -epic_poem%1:10:00:: 1 1 -epicenter%1:15:00:: 1 3 -epicure%1:18:00:: 1 1 -epidemic%1:11:00:: 1 5 -epidemic%3:00:00:: 1 5 -epidermis%1:08:00:: 1 1 -epigram%1:10:00:: 1 1 -epileptic%3:01:00:: 1 1 -epiphany%1:11:00:: 1 2 -epiphyseal%3:01:00:: 1 2 -epiphysis%1:08:00:: 1 5 -episode%1:10:01:: 2 3 -episode%1:11:00:: 1 4 -epistemology%1:09:00:: 1 1 -epistolatory%5:00:00:informal:02 1 1 -epitaph%1:10:00:: 1 1 -epithet%1:10:01:: 1 3 -epitome%1:09:00:: 1 1 -epitomize%2:42:00:: 1 5 -epoch%1:28:00:: 1 5 -epoxy%1:27:00:: 1 1 -equal%1:18:00:: 1 1 -equal%2:42:00:: 1 13 -equal%2:42:01:: 2 1 -equal%3:00:00:: 1 31 -equal%3:00:02:: 2 3 -equal_to%5:00:00:adequate:00 1 1 -equality%1:07:00:: 1 2 -equality%1:26:00:: 2 1 -equally%4:02:01:: 1 14 -equally%4:02:02:: 2 2 -equanimity%1:07:00:: 1 1 -equate%2:31:00:: 1 8 -equate%2:42:00:: 2 1 -equation%1:10:00:: 1 8 -equator%1:15:00:: 1 1 -equilibrate%2:30:00:: 1 2 -equilibrium%1:22:00:: 2 2 -equilibrium%1:26:00:: 1 4 -equip%2:30:00:: 2 1 -equip%2:40:00:: 1 11 -equipment%1:06:00:: 1 48 -equipotent%5:00:00:potent:00 1 1 -equipped%3:00:00:: 1 1 -equipping%1:04:00:: 1 1 -equitable%3:00:00:: 1 4 -equity%1:21:01:: 1 1 -equivalence%1:26:00:: 1 1 -equivalent%1:09:00:: 1 17 -equivalent%3:00:04:: 1 1 -equivalent%5:00:02:equal:00 2 1 -equivalent_to%5:00:00:equal:00 1 7 -equivocal%3:00:00:: 1 1 -era%1:28:00:: 1 14 -eradicate%2:30:00:: 1 2 -erase%2:30:00:: 1 5 -erect%2:36:00:: 1 17 -erect%3:00:00:: 1 10 -ergotropic%3:01:00:: 1 1 -erlenmeyer_flask%1:06:00:: 1 1 -erode%2:30:00:: 2 1 -erode%2:30:01:: 1 1 -eroded%5:00:00:worn:00 1 1 -erosion%1:22:00:: 1 1 -erotic%5:00:00:sexy:00 1 3 -err%2:31:00:: 1 3 -err%2:38:00:: 2 1 -errand%1:04:00:: 1 5 -erratic%5:00:00:changeable:00 1 1 -erratically%4:02:00:: 1 1 -erroneous%5:00:00:incorrect:00 1 1 -error%1:04:02:: 1 15 -error%1:04:03:: 4 3 -error%1:07:00:: 2 6 -error%1:07:01:: 5 2 -error%1:09:00:: 3 4 -ersatz%5:00:00:artificial:00 1 1 -erudite%5:00:00:scholarly:00 1 3 -erupt%2:30:00:: 5 1 -erupt%2:30:01:: 1 6 -erupt%2:30:02:: 2 2 -erupt%2:30:04:: 4 1 -erupt%2:43:00:: 3 1 -eruption%1:11:00:: 1 1 -erythroid%3:01:00:: 1 1 -escalation%1:04:00:: 1 6 -escapade%1:04:01:: 1 1 -escape%1:04:00:: 1 6 -escape%1:04:01:: 3 1 -escape%1:04:02:: 2 2 -escape%1:04:03:: 4 1 -escape%1:04:04:: 5 1 -escape%2:32:00:: 2 8 -escape%2:32:04:: 3 7 -escape%2:38:00:: 1 22 -escape%2:42:00:: 4 2 -escape_from%2:38:00:: 1 6 -escaped%5:00:00:free:00 1 1 -escheat%1:21:00:: 1 2 -eschew%2:32:00:: 1 2 -escort%1:04:00:: 2 1 -escort%1:18:01:: 1 2 -escort%2:38:00:: 1 7 -escritoire%1:06:00:: 1 2 -esoteric%3:00:00:: 1 1 -especially%4:02:00:: 1 66 -espionage%1:04:00:: 1 1 -espionage_agent%1:18:00:: 1 1 -espouse%2:40:00:: 1 3 -esprit_de_corps%1:07:00:: 1 3 -essay%1:04:00:: 2 2 -essay%1:10:00:: 1 13 -essay%2:41:00:: 1 1 -essence%1:09:00:: 1 2 -essential%1:17:00:: 1 1 -essential%3:00:00:: 2 15 -essential%5:00:00:important:00 3 8 -essential%5:00:00:necessary:00 1 17 -essentially%4:02:01:: 1 28 -establish%2:31:00:: 3 23 -establish%2:31:02:: 4 15 -establish%2:31:03:: 8 1 -establish%2:35:00:: 6 2 -establish%2:36:00:: 2 28 -establish%2:36:01:: 5 6 -establish%2:36:10:: 7 1 -establish%2:41:00:: 1 50 -established%3:00:00:: 1 7 -established%5:00:00:orthodox:00 4 1 -established%5:00:00:secure:02 2 3 -established%5:00:00:settled:02 3 1 -establishment%1:04:00:: 1 10 -establishment%1:06:00:: 4 3 -establishment%1:14:00:: 2 4 -establishment%1:14:01:: 5 1 -establishment%1:14:02:: 3 3 -estate%1:21:01:: 2 2 -estate%1:21:02:: 1 9 -esteem%1:26:00:: 1 2 -esteem%2:31:01:: 1 1 -ester%1:27:00:: 1 1 -esthetic%1:09:00:: 1 1 -esthetic%3:00:00:: 1 2 -estimate%1:04:01:: 2 5 -estimate%1:09:00:: 1 13 -estimate%1:10:00:: 3 3 -estimate%1:10:01:: 4 2 -estimate%2:31:00:: 1 34 -estimate%2:31:01:: 2 9 -estimated%5:00:00:calculable:00 1 12 -estranged%5:00:00:unloved:00 1 1 -estrangement%1:26:00:: 1 1 -estranging%5:00:00:disorienting:00 1 1 -estuary%1:17:00:: 1 1 -et_al.%4:02:00:: 1 6 -etc.%4:02:00:: 1 6 -etcetera%1:06:00:: 1 8 -etcetera%4:02:00:: 1 3 -etch%2:36:00:: 1 1 -eternal%5:00:00:immortal:00 2 1 -eternal%5:00:00:long:02 3 1 -eternal%5:00:00:permanent:00 1 9 -eternally%4:02:00:: 1 1 -eternity%1:26:00:: 2 2 -eternity%1:28:00:: 1 3 -eternity%1:28:01:: 3 1 -ethanol%1:27:00:: 1 1 -ethereal%5:00:00:insubstantial:00 1 2 -ethic%1:09:00:: 1 2 -ethical%3:00:00:: 2 2 -ethical%3:01:00:: 1 3 -ethical%5:00:00:right:01 3 1 -ethical_motive%1:16:00:: 1 1 -ethics%1:16:00:: 1 1 -ethiopian%1:18:00:: 1 1 -ethnic%3:01:00:: 1 3 -ethnic%5:00:00:social:00 2 3 -ethos%1:07:00:: 1 2 -ethyl_acetate%1:27:00:: 1 3 -etiquette%1:10:00:: 1 1 -etymological%3:01:00:: 1 1 -eugenic%3:01:00:: 1 1 -eulogize%2:32:00:: 1 2 -euphoria%1:12:00:: 1 1 -euphoric%3:00:00:: 1 1 -eurasian%3:01:00:: 1 1 -europe%1:17:00:: 1 28 -european%1:18:00:: 1 2 -european%3:01:00:: 1 14 -european_country%1:15:00:: 1 1 -european_nation%1:15:00:: 1 2 -europeanization%1:04:00:: 1 1 -europeanize%2:30:01:: 1 1 -eutectic%1:27:00:: 1 1 -evacuate%2:30:00:: 2 1 -evacuate%2:38:01:: 1 1 -evacuated%5:00:00:exhausted:00 1 1 -evacuation%1:04:00:: 1 2 -evacuation%1:04:01:: 2 1 -evade%2:32:00:: 1 3 -evade%2:38:00:: 2 1 -evaluate%2:31:00:: 1 18 -evaluation%1:04:00:: 1 8 -evaluation%1:09:00:: 2 3 -evaluative%5:00:00:critical:02 1 1 -evangelical%3:01:01:: 1 2 -evangelism%1:04:00:: 1 3 -evangelist%1:18:00:: 1 1 -evaporate%2:30:00:: 1 2 -evaporation%1:22:00:: 1 2 -evaporative_cooler%1:06:00:: 1 1 -evasive%5:00:00:equivocal:00 1 2 -eve%1:18:00:: 1 7 -eve%1:28:01:: 2 2 -even%3:00:01:: 3 2 -even%3:00:02:: 1 4 -even%4:02:00:: 1 394 -even%4:02:01:: 3 6 -even%4:02:03:: 2 13 -even%5:00:01:equal:00 2 3 -even_as%4:02:01:: 1 1 -even_so%4:02:00:: 1 4 -evening%1:28:00:: 1 38 -evensong%1:28:00:: 1 1 -event%1:03:00:: 1 62 -event%1:26:00:: 2 6 -eventual%5:00:00:ultimate:00 1 3 -eventually%4:02:00:: 1 14 -eventually%4:02:03:: 2 6 -eventuate%2:42:00:: 1 1 -ever%4:02:00:: 2 15 -ever%4:02:04:: 1 107 -ever%4:02:05:: 3 7 -ever-changing%5:00:00:dynamic:00 1 2 -ever-present%5:00:00:present:02 1 2 -everlasting%5:00:00:cursed:00 2 1 -everlasting%5:00:00:permanent:00 1 1 -everlastingly%4:02:00:: 1 2 -every%5:00:00:all(a):00 2 57 -every%5:00:02:all(a):00 1 11 -every_bit%4:02:00:: 1 1 -every_day%4:02:00:: 1 11 -every_last%5:00:00:all(a):00 1 1 -every_month%4:02:00:: 1 2 -every_night%4:02:00:: 1 3 -every_other%5:00:00:cyclic:01 1 3 -every_so_often%4:02:00:: 1 1 -every_week%4:02:00:: 1 1 -every_which_way%4:02:01:: 1 1 -every_year%4:02:00:: 1 1 -everyday%5:00:00:ordinary:00 1 7 -everywhere%4:02:00:: 1 19 -evidence%1:09:00:: 1 54 -evidence%1:10:00:: 3 7 -evidence%1:10:01:: 2 23 -evidence%2:32:00:: 1 10 -evidence%2:32:01:: 2 3 -evidence%2:32:02:: 3 1 -evident%5:00:00:noticeable:00 2 1 -evident%5:00:00:obvious:00 1 24 -evidential%5:00:00:significant:00 1 1 -evidently%4:02:00:: 1 15 -evil%1:04:00:: 1 6 -evil%1:07:00:: 3 3 -evil%1:07:02:: 2 4 -evil%3:00:00:: 1 9 -evil%5:00:00:malign:00 3 1 -evil%5:00:00:wicked:00 2 1 -evildoer%1:18:00:: 1 1 -evocation%1:09:00:: 1 1 -evoke%2:36:00:: 2 3 -evoke%2:37:00:: 1 10 -evolution%1:22:01:: 1 5 -evolutionary%3:01:00:: 1 1 -evolve%2:30:00:: 2 3 -evolve%2:30:02:: 3 2 -evolve%2:30:03:: 4 1 -evolve%2:36:00:: 1 3 -ex%5:00:00:past:00 1 5 -ex-gambler%1:18:00:: 1 1 -ex-husband%1:18:00:: 1 1 -ex-mayor%1:18:00:: 1 1 -exacerbate%2:30:00:: 1 2 -exacerbation%1:04:01:: 1 3 -exact%2:32:00:: 1 1 -exact%3:00:00:: 1 8 -exact%5:00:00:correct:00 2 7 -exactly%4:02:01:: 1 37 -exactly%4:02:04:: 2 2 -exaggerate%2:32:00:: 1 14 -exaggerate%2:41:00:: 2 2 -exaggerated%5:00:00:immoderate:00 1 2 -exaggeration%1:04:00:: 2 1 -exaggeration%1:10:01:: 1 1 -exalt%2:32:00:: 1 2 -exalt%2:37:01:: 2 1 -exalted%5:00:00:high:02 2 1 -exalted%5:00:00:noble:01 1 2 -examination%1:04:00:: 1 15 -examination%1:10:00:: 2 1 -examination%1:10:01:: 3 1 -examine%2:31:00:: 1 17 -examine%2:32:00:: 4 2 -examine%2:32:01:: 3 7 -examine%2:39:00:: 2 11 -examine%2:41:00:: 5 1 -example%1:09:00:: 1 45 -example%1:09:01:: 3 5 -example%1:09:02:: 2 13 -example%1:10:00:: 4 2 -exasperate%2:37:00:: 1 1 -exasperated%5:00:00:displeased:00 1 2 -exasperating%5:00:00:displeasing:00 1 1 -exasperation%1:12:00:: 1 6 -exboyfriend%1:18:00:: 1 1 -excavation%1:04:01:: 1 2 -exceed%2:33:00:: 3 4 -exceed%2:42:00:: 2 8 -exceed%2:42:01:: 1 21 -exceedingly%4:02:00:: 1 2 -excel%2:42:00:: 1 2 -excellence%1:07:00:: 1 2 -excellent%5:00:00:superior:02 1 17 -excellently%4:02:00:: 1 1 -excelsior%1:27:00:: 1 1 -except%2:31:00:: 2 1 -except%2:32:00:: 1 1 -exception%1:09:00:: 1 18 -exception%1:09:01:: 2 8 -exceptional%5:00:00:extraordinary:00 1 3 -exceptional%5:00:00:uncommon:00 2 2 -exceptionally%4:02:00:: 1 2 -excess%1:07:00:: 2 2 -excess%1:07:02:: 1 4 -excess%5:00:00:unnecessary:00 1 4 -excessive%5:00:00:immoderate:00 1 7 -exchange%1:04:02:: 3 3 -exchange%1:04:03:: 4 3 -exchange%1:06:01:: 5 1 -exchange%1:10:00:: 2 3 -exchange%1:19:00:: 1 14 -exchange%2:30:00:: 2 2 -exchange%2:30:01:: 3 1 -exchange%2:40:00:: 1 10 -excise%2:35:00:: 1 1 -excise_tax%1:21:00:: 1 1 -excitability%1:09:00:: 1 4 -excitatory%5:00:00:stimulative:00 1 4 -excite%2:30:00:: 2 4 -excite%2:37:02:: 1 8 -excited%3:00:00:: 2 3 -excited%5:00:00:agitated:00 1 4 -excited%5:00:00:wild:02 3 2 -excitedly%4:02:00:: 1 8 -excitement%1:04:00:: 3 4 -excitement%1:04:02:: 4 2 -excitement%1:12:00:: 1 9 -excitement%1:26:01:: 2 5 -exciting%3:00:00:: 1 12 -exciting%5:00:00:stimulating:00 2 3 -exclaim%2:32:00:: 1 8 -exclaim%2:32:01:: 2 5 -exclaiming%1:10:00:: 1 1 -exclamation%1:10:00:: 1 7 -exclude%2:31:01:: 1 15 -exclude%2:32:01:: 4 2 -exclude%2:41:00:: 2 7 -exclude%2:42:00:: 3 3 -exclusion%1:26:00:: 1 1 -exclusive%5:00:00:unshared:00 1 6 -exclusively%4:02:00:: 1 7 -exclusiveness%1:07:00:: 1 2 -excommunicate%2:32:00:: 1 2 -excoriate%2:32:00:: 1 1 -excretion%1:22:00:: 1 1 -excruciating%5:00:00:painful:00 1 1 -excursion%1:04:00:: 1 1 -excursus%1:10:00:: 1 1 -excuse%1:10:00:: 1 10 -excuse%2:32:00:: 1 2 -excuse%2:32:01:: 4 1 -excuse%2:32:03:: 3 2 -excuse%2:32:04:: 2 2 -execute%2:36:00:: 4 1 -execute%2:41:00:: 2 2 -execute%2:41:01:: 3 1 -execute%2:41:02:: 1 7 -execution%1:04:00:: 1 4 -execution%1:04:02:: 2 2 -executioner%1:18:00:: 1 2 -executive%1:14:01:: 2 1 -executive%1:18:00:: 1 3 -executive%3:01:00:: 1 2 -executive_branch%1:14:00:: 1 1 -executive_secretary%1:18:00:: 1 1 -executor%1:18:00:: 1 2 -exemplar%1:09:00:: 1 1 -exemplify%2:32:00:: 2 2 -exemplify%2:42:00:: 1 2 -exempt%2:41:00:: 1 1 -exempt%3:00:00:: 1 2 -exemption%1:26:00:: 1 4 -exercise%1:04:00:: 1 26 -exercise%1:04:01:: 4 2 -exercise%1:04:02:: 3 2 -exercise%1:04:03:: 2 3 -exercise%2:29:00:: 4 3 -exercise%2:29:01:: 3 3 -exercise%2:34:00:: 1 14 -exercise%2:41:00:: 2 11 -exercising%1:04:00:: 1 1 -exert%2:34:00:: 1 12 -exert%2:40:00:: 2 7 -exert%2:41:00:: 3 1 -exertion%1:04:00:: 1 6 -exhale%2:29:00:: 1 2 -exhaust%2:29:00:: 1 4 -exhaust%2:34:00:: 2 3 -exhaust%2:40:00:: 3 1 -exhausted%5:00:00:tired:00 1 6 -exhausting%5:00:00:debilitating:00 1 1 -exhaustion%1:26:00:: 1 2 -exhaustive%5:00:00:complete:00 1 1 -exhaustively%4:02:00:: 1 1 -exhibit%1:10:00:: 1 1 -exhibit%2:39:00:: 3 4 -exhibit%2:39:01:: 2 11 -exhibit%2:42:00:: 1 13 -exhibition%1:04:00:: 1 8 -exhibition%1:14:00:: 2 4 -exhibition_game%1:04:00:: 1 1 -exhilarating%5:00:00:invigorating:00 1 1 -exhortation%1:10:01:: 1 2 -exhumation%1:04:00:: 1 1 -exigency%1:26:00:: 1 1 -exile%2:41:00:: 1 1 -exist%2:42:00:: 1 100 -exist%2:42:01:: 2 5 -existence%1:17:00:: 2 1 -existence%1:26:00:: 1 51 -existent%3:00:00:: 1 1 -existential%5:00:00:empirical:00 1 2 -existentialist%1:18:00:: 1 1 -existing%3:00:00:: 1 3 -existing%5:00:00:present(a):01 3 19 -existing%5:00:00:present:02 2 2 -exit%1:06:00:: 1 1 -exodus%1:04:00:: 1 1 -exonerate%2:32:00:: 1 1 -exorcise%2:35:00:: 1 1 -exotic%5:00:00:foreign:01 1 2 -exotic_dancer%1:18:04:: 1 1 -expand%2:30:01:: 4 4 -expand%2:30:02:: 5 3 -expand%2:30:07:: 2 6 -expand%2:30:12:: 3 4 -expand%2:38:00:: 1 7 -expanded%3:00:01:: 1 3 -expanding%5:00:00:increasing:00 1 8 -expanse%1:07:00:: 2 1 -expanse%1:07:01:: 1 2 -expansion%1:04:00:: 1 10 -expansively%4:02:01:: 1 1 -expansiveness%1:07:01:: 2 1 -expansiveness%1:07:02:: 1 1 -expect%2:31:00:: 1 204 -expect%2:31:01:: 3 12 -expect%2:32:00:: 2 30 -expectable%5:00:00:expected:00 1 1 -expectancy%1:09:00:: 2 1 -expectancy%1:12:00:: 1 1 -expectant%5:00:00:hopeful:00 1 3 -expectantly%4:02:00:: 1 3 -expectation%1:09:00:: 1 5 -expectation%1:26:00:: 2 4 -expected%3:00:00:: 1 6 -expected%5:00:00:unsurprising:00 2 1 -expedient%3:00:00:: 1 1 -expedite%2:41:00:: 1 2 -expedition%1:04:00:: 3 3 -expedition%1:04:01:: 1 4 -expedition%1:04:02:: 4 1 -expedition%1:14:00:: 2 3 -expel%2:35:00:: 2 1 -expel%2:41:00:: 1 3 -expend%2:34:00:: 1 7 -expend%2:40:00:: 2 2 -expendable%3:00:00:: 1 1 -expended%5:00:00:exhausted:00 1 1 -expenditure%1:04:00:: 2 3 -expenditure%1:21:00:: 1 20 -expense%1:11:00:: 2 4 -expense%1:21:00:: 1 25 -expense%1:21:01:: 3 1 -expense_account%1:21:00:: 1 1 -expensive%3:00:00:: 1 13 -experience%1:09:00:: 2 48 -experience%1:09:01:: 1 52 -experience%1:11:00:: 3 28 -experience%2:31:00:: 2 10 -experience%2:37:00:: 4 5 -experience%2:39:00:: 3 8 -experience%2:39:01:: 1 18 -experienced%3:00:00:: 1 10 -experiential%3:01:00:: 1 3 -experiential%5:00:00:empirical:00 2 1 -experiment%1:04:00:: 1 59 -experiment%1:04:01:: 3 7 -experiment%1:09:00:: 2 12 -experiment%2:41:01:: 1 17 -experimental%3:01:00:: 1 14 -experimental%5:00:01:empirical:00 2 3 -experimental%5:00:02:empirical:00 3 2 -experimentalism%1:09:01:: 1 1 -experimentally%4:02:00:: 1 5 -experimentation%1:04:00:: 2 3 -experimentation%1:09:00:: 1 4 -experimenter%1:18:00:: 1 3 -expert%1:18:00:: 1 20 -expert%5:00:00:professional:02 2 1 -expert%5:00:00:skilled:00 1 2 -expertise%1:09:00:: 1 2 -expiate%2:41:00:: 1 1 -expiration%1:28:00:: 1 2 -expire%2:30:00:: 2 2 -expire%2:42:00:: 1 3 -explain%2:32:00:: 1 109 -explain%2:32:01:: 2 9 -explain%2:32:02:: 3 7 -explanation%1:09:00:: 2 8 -explanation%1:10:00:: 1 28 -explanatory%5:00:00:instructive:00 1 1 -expletive%1:10:01:: 1 1 -explicit%3:00:00:: 1 7 -explicitly%4:02:00:: 1 1 -explode%2:30:00:: 2 5 -explode%2:30:01:: 1 14 -explode%2:30:03:: 4 3 -explode%2:31:00:: 3 4 -explode%2:33:00:: 5 2 -exploding%5:00:00:increasing:00 1 1 -exploit%1:04:00:: 1 2 -exploit%2:34:00:: 1 8 -exploit%2:34:01:: 2 3 -exploitation%1:04:00:: 1 2 -exploitation%1:04:01:: 2 2 -exploration%1:04:00:: 2 4 -exploration%1:04:02:: 1 5 -exploration%1:09:00:: 3 2 -exploratory%3:00:00:: 1 1 -explore%2:31:00:: 1 14 -explore%2:31:01:: 2 4 -explore%2:31:02:: 3 2 -explorer%1:18:00:: 1 3 -explosion%1:04:00:: 2 2 -explosion%1:11:00:: 1 6 -explosive%3:00:00:: 1 3 -explosive%5:00:00:unstable:00 2 3 -explosively%4:02:00:: 1 1 -exponential_function%1:24:00:: 1 1 -export%1:06:00:: 1 1 -export%2:40:00:: 1 4 -exporter%1:18:00:: 1 1 -expose%2:32:01:: 2 7 -expose%2:32:02:: 6 1 -expose%2:35:00:: 4 3 -expose%2:39:00:: 3 4 -expose%2:39:02:: 1 14 -expose%2:39:03:: 5 2 -exposed%5:00:00:unclothed:00 2 1 -exposed%5:00:00:unprotected:00 1 5 -exposition%1:10:00:: 1 2 -expository%5:00:00:instructive:00 1 1 -exposure%1:04:06:: 2 3 -exposure%1:07:00:: 1 6 -exposure%1:09:00:: 4 2 -exposure%1:10:00:: 3 2 -expound%2:32:00:: 1 3 -express%2:32:00:: 2 32 -express%2:32:01:: 1 59 -express%2:32:02:: 3 17 -express%2:32:03:: 4 2 -express%4:02:00:: 1 1 -express%5:00:00:explicit:00 1 1 -express_emotion%2:37:00:: 1 1 -expressed%3:00:00:: 2 1 -expressed%5:00:00:spoken:00 1 4 -expressible%3:00:00:: 1 1 -expression%1:07:00:: 1 23 -expression%1:10:00:: 4 5 -expression%1:10:01:: 5 4 -expression%1:10:02:: 2 18 -expression%1:10:03:: 6 4 -expression%1:10:04:: 3 15 -expressionistic%3:01:00:: 1 1 -expressionless%5:00:00:uncommunicative:00 1 2 -expressive%5:00:00:communicative:00 1 3 -expressive%5:00:01:communicative:00 2 2 -expressively%4:02:00:: 1 1 -expressiveness%1:07:00:: 1 2 -expressly%4:02:00:: 1 1 -expropriated%5:00:00:taken:00 1 1 -expulsion%1:04:01:: 1 1 -expunge%2:35:00:: 1 1 -expurgation%1:04:00:: 1 1 -exquisite%5:00:00:intense:00 1 3 -extant%3:00:00:: 1 1 -extend%2:29:00:: 8 2 -extend%2:29:01:: 5 5 -extend%2:30:01:: 1 20 -extend%2:30:02:: 10 1 -extend%2:30:09:: 9 1 -extend%2:40:04:: 7 3 -extend%2:40:05:: 4 6 -extend%2:42:01:: 3 11 -extend%2:42:02:: 6 4 -extend%2:42:03:: 2 16 -extend_to%2:42:00:: 1 4 -extended%3:00:00:: 2 1 -extended%5:00:00:considerable:00 3 1 -extended%5:00:00:long:02 1 4 -extension%1:04:00:: 4 1 -extension%1:04:01:: 5 1 -extension%1:04:02:: 2 10 -extension%1:10:01:: 3 2 -extension%1:28:00:: 1 13 -extensive%5:00:00:abundant:00 3 3 -extensive%5:00:00:comprehensive:00 2 3 -extensive%5:00:00:considerable:00 4 2 -extensive%5:00:00:large:00 1 13 -extensively%4:02:00:: 1 3 -extent%1:07:00:: 2 15 -extent%1:26:00:: 1 23 -extenuate%2:32:00:: 1 2 -exterior%1:15:00:: 2 1 -exterior%1:15:01:: 1 1 -exterior%3:00:00:: 1 2 -exterminate%2:35:01:: 1 3 -extern%1:18:00:: 1 1 -external%3:00:00:: 1 9 -external%5:00:00:exogenous:00 4 1 -external%5:00:00:extrinsic:00 2 2 -external%5:00:00:foreign:02 3 2 -extinguish%2:30:00:: 1 1 -extinguished%5:00:00:destroyed:00 1 1 -extirpate%2:36:00:: 1 2 -extra%5:00:00:added:00 1 12 -extra%5:00:00:unnecessary:00 2 4 -extra_points%1:04:00:: 1 3 -extract%1:27:00:: 1 3 -extract%2:30:00:: 4 1 -extract%2:35:04:: 1 8 -extract%2:36:00:: 3 1 -extract%2:40:00:: 2 1 -extralegal%5:00:00:illegal:00 1 1 -extramarital%5:00:00:illicit:00 1 1 -extraneous%5:00:00:irrelevant:00 1 1 -extraneous%5:00:02:extrinsic:00 2 1 -extraneousness%1:24:00:: 1 1 -extraordinarily%4:02:00:: 1 1 -extraordinary%3:00:00:: 1 12 -extraordinary%5:00:00:immoderate:00 2 2 -extraordinary%5:00:00:unusual:00 3 1 -extrapolate%2:31:00:: 2 1 -extrapolate%2:31:01:: 3 1 -extrapolate%2:32:00:: 1 1 -extrapolated%3:44:00:: 1 1 -extrapolation%1:09:00:: 1 3 -extraterrestrial%3:01:00:: 1 2 -extravagant%5:00:00:unrestrained:00 1 3 -extravagant%5:00:00:wasteful:00 2 1 -extravagantly%4:02:02:: 1 1 -extravaganza%1:04:00:: 1 1 -extreme%1:07:00:: 1 6 -extreme%1:15:00:: 2 3 -extreme%5:00:00:distant:01 4 1 -extreme%5:00:00:immoderate:00 2 5 -extreme%5:00:00:intense:00 1 15 -extreme%5:00:01:immoderate:00 3 2 -extremely%4:02:00:: 2 6 -extremely%4:02:02:: 1 11 -extremely%4:02:05:: 3 1 -extremity%1:08:00:: 1 1 -extremum%1:15:00:: 1 1 -extricate%2:35:00:: 1 2 -extrude%2:36:00:: 1 1 -exuberant%5:00:00:spirited:00 1 4 -exude%2:29:00:: 1 1 -exultant%5:00:00:elated:00 1 3 -exultantly%4:02:00:: 1 1 -exultation%1:12:00:: 1 2 -eye%1:08:00:: 1 263 -eye%1:09:00:: 2 8 -eye%1:09:01:: 3 6 -eye%2:39:00:: 1 11 -eye-beaming%1:04:00:: 1 1 -eye-deceiving%5:00:00:unreal:00 1 1 -eye_socket%1:08:00:: 1 1 -eyeball%1:08:00:: 1 1 -eyebrow%1:08:00:: 1 3 -eyed%3:00:00:: 1 2 -eyelid%1:08:00:: 1 3 -eyelike%5:00:00:eyed:00 1 1 -eyepiece%1:06:00:: 1 1 -eyes%1:09:00:: 1 4 -eyeshadow%1:06:00:: 1 1 -eyesight%1:09:00:: 1 2 -eyestrain%1:26:00:: 1 1 -f%1:23:02:: 1 8 -fabled%5:00:00:unreal:00 1 2 -fabric%1:06:00:: 1 11 -fabric%1:07:00:: 2 1 -fabulous%5:00:00:pleasing:00 1 1 -facade%1:06:00:: 1 3 -face%1:04:00:: 4 5 -face%1:06:01:: 9 1 -face%1:06:02:: 5 4 -face%1:07:00:: 3 22 -face%1:07:03:: 2 23 -face%1:08:00:: 1 193 -face%1:08:01:: 8 1 -face%1:15:00:: 7 1 -face%1:18:00:: 6 2 -face%2:32:00:: 1 56 -face%2:32:03:: 7 3 -face%2:33:00:: 2 33 -face%2:38:00:: 6 4 -face%2:42:00:: 3 14 -face%2:42:01:: 4 5 -face%2:42:02:: 5 4 -face-saving%5:00:00:helpful:00 1 1 -face-to-face%4:02:02:: 1 2 -face_lifting%1:04:01:: 1 1 -face_powder%1:06:00:: 1 1 -face_saving%1:04:00:: 1 1 -face_to_face%4:02:00:: 1 1 -face_up%2:32:03:: 1 3 -faced%3:00:00:: 1 2 -facet%1:09:00:: 1 3 -facet_plane%1:25:00:: 1 4 -facetious%5:00:00:humorous:00 1 1 -facetiously%4:02:00:: 1 1 -facilitate%2:30:00:: 1 5 -facilitatory%5:00:00:helpful:00 1 1 -facility%1:06:00:: 1 35 -facility%1:09:01:: 2 2 -facing%1:06:01:: 1 2 -facsimile%1:06:01:: 1 1 -fact%1:09:01:: 1 85 -fact%1:09:02:: 4 3 -fact%1:10:01:: 2 34 -fact%1:26:01:: 3 11 -faction%1:14:01:: 1 2 -factor%1:09:00:: 2 8 -factor%1:11:00:: 1 31 -factor%1:18:00:: 4 1 -factor%1:23:00:: 3 4 -factor%2:31:00:: 1 2 -factory%1:06:00:: 1 18 -factory_worker%1:18:00:: 1 4 -factual%5:00:00:real:00 1 1 -faculty%1:09:00:: 1 4 -faculty%1:14:00:: 2 3 -fade%2:30:00:: 3 4 -fade%2:30:01:: 2 4 -fade%2:30:02:: 1 6 -fade_out%2:30:00:: 1 1 -faded%5:00:00:colorless:02 1 7 -faded%5:00:00:decreased:00 2 3 -fadeout%1:11:00:: 1 1 -faery%3:01:00:: 1 1 -fail%2:30:00:: 4 3 -fail%2:37:00:: 3 5 -fail%2:41:00:: 2 33 -fail%2:41:02:: 1 66 -fail%2:41:08:: 5 1 -failure%1:04:00:: 1 18 -failure%1:04:01:: 5 1 -failure%1:11:00:: 2 10 -failure%1:18:00:: 4 3 -failure%1:26:00:: 3 3 -faint%2:29:00:: 1 1 -faint%5:00:00:ill:01 4 1 -faint%5:00:00:indistinct:00 2 5 -faint%5:00:00:perceptible:00 1 5 -faint%5:00:00:weak:00 3 4 -faintly%4:02:00:: 1 3 -fair%1:04:01:: 1 1 -fair%2:35:00:: 1 1 -fair%3:00:03:: 1 10 -fair%3:00:04:: 2 6 -fair%5:00:00:beautiful:00 6 1 -fair%5:00:00:moderate:00 4 2 -fair%5:00:00:respectable:00 3 2 -fair%5:00:02:beautiful:00 5 1 -fairly%4:02:00:: 2 3 -fairly%4:02:02:: 1 20 -fairness%1:07:00:: 1 1 -fairway%1:15:00:: 1 2 -fairy%1:18:00:: 1 1 -fairy%3:01:00:: 1 1 -fairyland%1:09:00:: 1 1 -fairytale%1:10:00:: 1 3 -faith%1:04:00:: 4 1 -faith%1:09:00:: 1 18 -faith%1:09:01:: 2 9 -faith%1:14:00:: 3 6 -faithful%1:14:01:: 1 1 -faithful%3:00:00:: 1 5 -faithful%5:00:00:accurate:00 2 1 -faithfully%4:02:00:: 1 2 -fake%1:06:00:: 1 1 -fake%2:36:00:: 1 1 -fake%5:00:00:counterfeit:00 1 7 -faker%1:18:00:: 1 1 -falcon%1:05:00:: 1 2 -fall%1:04:01:: 2 4 -fall%1:04:02:: 8 1 -fall%1:04:03:: 5 2 -fall%1:11:01:: 7 1 -fall%1:11:03:: 3 3 -fall%1:11:04:: 6 1 -fall%1:17:00:: 4 2 -fall%1:28:00:: 1 14 -fall%2:30:00:: 10 3 -fall%2:30:06:: 11 3 -fall%2:30:08:: 3 16 -fall%2:38:00:: 2 21 -fall%2:38:01:: 15 1 -fall%2:38:03:: 1 43 -fall%2:40:03:: 14 2 -fall%2:40:05:: 9 3 -fall%2:41:00:: 13 2 -fall%2:41:01:: 12 2 -fall%2:41:02:: 6 4 -fall%2:42:00:: 7 3 -fall%2:42:03:: 4 6 -fall%2:42:04:: 8 3 -fall%2:43:00:: 5 4 -fall_asleep%2:29:00:: 1 8 -fall_away%2:30:00:: 1 2 -fall_away%2:30:01:: 2 2 -fall_back%2:33:00:: 4 1 -fall_back%2:38:00:: 2 2 -fall_back%2:38:01:: 1 2 -fall_back%2:38:03:: 3 2 -fall_behind%2:33:00:: 1 2 -fall_down%2:38:00:: 1 6 -fall_for%2:37:00:: 1 1 -fall_in%2:38:00:: 1 3 -fall_in%2:41:02:: 2 1 -fall_in_love%2:30:00:: 1 7 -fall_into%2:42:00:: 1 14 -fall_off%2:35:00:: 1 1 -fall_open%2:38:00:: 1 1 -fall_out%2:32:00:: 1 1 -fall_over%2:29:00:: 1 1 -fall_short%2:37:12:: 1 1 -fall_short_of%2:42:00:: 1 3 -fallen%5:00:00:down:00 1 1 -falling%3:00:03:: 1 1 -falling%5:00:00:decreasing:00 2 1 -falling_off%1:22:00:: 1 1 -falloff%1:22:00:: 1 2 -fallout%1:27:00:: 1 10 -fallout_shelter%1:06:00:: 1 2 -fallow%5:00:00:unplowed:00 1 1 -false%3:00:00:: 1 9 -false%5:00:00:incorrect:00 2 1 -falsify%2:32:00:: 1 3 -falsity%1:10:00:: 2 1 -falsity%1:26:00:: 1 1 -falter%2:32:00:: 4 1 -falter%2:38:00:: 3 1 -falter%2:38:01:: 2 2 -falter%2:42:00:: 1 3 -faltering%1:04:00:: 1 1 -faltering%5:00:00:unsteady:00 1 1 -fame%1:26:01:: 1 7 -famed%5:00:00:known:00 1 3 -familiar%3:00:00:: 1 23 -familiar%3:00:02:: 2 1 -familiar%5:00:00:informed:00 3 1 -familiar_with%5:00:00:familiar:00 1 6 -familiarity%1:07:01:: 2 1 -familiarity%1:07:02:: 3 1 -familiarity%1:09:00:: 1 2 -familiarly%4:02:00:: 1 1 -family%1:14:00:: 2 52 -family%1:14:01:: 4 5 -family%1:14:02:: 1 66 -family%1:14:03:: 6 2 -family%1:14:04:: 3 8 -family%1:18:00:: 5 2 -family_business%1:14:00:: 1 3 -family_planning%1:04:00:: 1 6 -famous%5:00:00:known:00 1 21 -fan%1:06:00:: 1 4 -fan%1:18:00:: 3 3 -fan%1:18:01:: 2 3 -fan%2:30:00:: 2 2 -fan%2:35:01:: 1 3 -fan%2:38:00:: 3 1 -fan_out%2:38:00:: 1 4 -fanatic%1:18:00:: 1 1 -fanaticism%1:09:00:: 1 2 -fanciful%5:00:00:creative:00 1 1 -fancy%1:09:01:: 2 1 -fancy%1:09:02:: 1 1 -fancy%2:36:00:: 1 3 -fancy%2:37:00:: 2 1 -fancy%3:00:00:: 1 3 -fancy-free%5:00:00:uncommitted:00 1 1 -fanfare%1:10:00:: 1 1 -fantasia%1:10:00:: 1 1 -fantasist%1:18:00:: 1 1 -fantastic%5:00:00:extraordinary:00 2 3 -fantastic%5:00:00:strange:00 1 4 -fantastic%5:00:00:unreal:00 4 1 -fantastic%5:00:00:unrealistic:00 3 2 -fantasy%1:09:00:: 1 3 -fantasy%1:09:01:: 3 1 -fantasy%1:10:00:: 2 1 -fantasy_life%1:09:00:: 1 1 -fantods%1:26:00:: 1 1 -far%3:00:00:: 1 20 -far%4:02:00:: 2 39 -far%4:02:01:: 4 3 -far%4:02:02:: 1 61 -far%4:02:04:: 3 22 -far%5:00:00:long:01 2 5 -far%5:00:00:right:00 3 1 -far-famed%5:00:00:known:00 1 1 -far-off%5:00:01:far:00 1 2 -far_east%1:15:00:: 1 2 -faraway%5:00:00:far:00 1 5 -farce%1:10:00:: 1 2 -fare%1:09:00:: 1 2 -fare%2:42:00:: 1 1 -farewell%1:10:00:: 1 4 -farm%1:06:00:: 1 49 -farm%2:41:00:: 1 4 -farm%5:00:00:rural:00 1 4 -farm_building%1:06:00:: 1 1 -farm_club%1:14:00:: 1 1 -farm_out%2:40:00:: 2 1 -farm_out%2:41:00:: 1 1 -farmer%1:18:00:: 1 29 -farmhouse%1:06:00:: 1 3 -farming%1:04:00:: 1 12 -farmland%1:15:00:: 1 1 -farther%4:02:00:: 2 2 -farther%4:02:02:: 1 3 -farther%5:00:01:far:00 1 2 -farther%5:00:02:far:00 2 1 -farthest%4:02:00:: 1 1 -fasciculation%1:26:00:: 1 1 -fascinate%2:37:00:: 2 3 -fascinate%2:42:00:: 1 3 -fascinated%5:00:02:enchanted:00 1 1 -fascinating%5:00:00:interesting:00 1 7 -fascinatingly%4:02:00:: 1 1 -fascination%1:26:00:: 1 2 -fascism%1:09:00:: 1 2 -fascist%3:01:00:: 1 1 -fashion%1:04:00:: 2 6 -fashion%1:07:00:: 1 17 -fashion%1:09:00:: 3 2 -fashion%2:36:00:: 1 8 -fashionable%3:00:00:: 1 3 -fashions%1:06:00:: 1 1 -fast%1:04:00:: 1 1 -fast%3:00:01:: 1 18 -fast%4:02:01:: 1 16 -fast%4:02:02:: 2 1 -fast-flying%5:00:00:moving:02 1 1 -fast-growing%5:00:00:invasive:00 1 1 -fastball%1:04:00:: 1 2 -fasten%2:35:00:: 2 4 -fasten%2:35:01:: 1 13 -fasten%2:35:03:: 3 2 -fastened%3:00:00:: 1 1 -fastened%5:00:00:steady:00 2 1 -faster%4:02:01:: 1 3 -fastidious%3:00:00:: 1 2 -fat%1:08:00:: 2 1 -fat%1:27:00:: 1 2 -fat%3:00:01:: 1 22 -fat%5:00:00:thick:01 2 2 -fatal%3:00:00:: 1 6 -fatal%5:00:00:decisive:00 2 4 -fatally%4:02:00:: 1 1 -fate%1:11:00:: 1 9 -fate%1:18:00:: 2 4 -fate%1:26:00:: 3 2 -fateful%5:00:00:decisive:00 1 2 -father%1:18:00:: 1 72 -father%1:18:01:: 3 2 -father%1:18:02:: 6 1 -father%1:18:03:: 2 2 -father%1:18:04:: 4 2 -father%1:18:05:: 5 1 -father%2:29:00:: 1 2 -father-god%1:18:00:: 1 1 -fathom%2:31:00:: 1 4 -fatigue%1:26:00:: 1 4 -fatigue%1:26:01:: 2 1 -fatigued%5:00:00:tired:00 1 2 -fatten%2:34:00:: 1 1 -fattening%5:00:00:finished:02 1 1 -fatty%3:00:00:: 1 1 -fatty_acid%1:27:00:: 1 2 -faucet%1:06:01:: 1 1 -fault%1:04:00:: 1 8 -fault%1:07:00:: 3 1 -fault%1:26:00:: 2 4 -fault%2:32:00:: 1 1 -fauteuil%1:06:00:: 1 1 -favor%1:04:00:: 1 12 -favor%1:07:00:: 2 5 -favor%1:09:00:: 3 1 -favor%2:31:00:: 2 7 -favor%2:41:00:: 1 17 -favor%2:41:01:: 3 1 -favor%2:41:03:: 4 1 -favorable%3:00:01:: 3 1 -favorable%3:00:02:: 1 4 -favorable%5:00:00:auspicious:00 2 4 -favorable%5:00:00:friendly:01 4 1 -favorable%5:00:00:propitious:00 5 1 -favorable_position%1:07:00:: 1 1 -favorably%4:02:00:: 1 3 -favored%5:00:00:loved:00 1 2 -favorite%1:09:00:: 1 5 -favorite%1:18:00:: 2 1 -favorite%5:00:00:loved:00 2 1 -favorite%5:00:00:popular:00 1 1 -fawn%1:07:00:: 1 1 -faze%2:37:00:: 1 1 -fear%1:12:00:: 1 73 -fear%1:12:01:: 2 7 -fear%2:37:00:: 2 20 -fear%2:37:02:: 3 1 -fear%2:37:03:: 1 23 -fearful%5:00:00:afraid(p):00 5 2 -fearful%5:00:00:alarming:00 1 1 -fearfully%4:02:00:: 1 3 -fearfully%4:02:01:: 2 1 -fearless%3:00:00:: 1 1 -feasibility%1:07:00:: 1 3 -feasible%5:00:00:possible:00 1 4 -feast%1:04:00:: 3 1 -feast%1:11:00:: 2 1 -feast%1:14:00:: 1 1 -feast%2:34:00:: 1 1 -feat%1:04:00:: 1 6 -feather%1:05:00:: 1 6 -feather%2:35:01:: 1 1 -feathered%5:00:00:adorned:00 1 1 -feature%1:08:00:: 2 18 -feature%1:09:00:: 1 42 -feature%1:10:00:: 3 2 -feature%2:42:00:: 1 16 -feature%2:42:01:: 2 3 -featured%5:00:00:conspicuous:00 1 2 -featured%5:00:00:faced:00 2 1 -featureless%5:00:00:plain:01 1 1 -feb%1:28:00:: 1 5 -february%1:28:00:: 1 16 -fecund%5:00:00:fertile:00 1 1 -fecundity%1:09:00:: 1 1 -federal%3:01:02:: 2 5 -federal%5:00:00:national:01 1 39 -federal%5:00:00:northern:02 3 4 -federal_court%1:14:00:: 1 1 -federal_department%1:14:00:: 1 1 -federal_government%1:14:00:: 1 11 -federal_housing_administration%1:14:00:: 1 1 -federal_soldier%1:18:00:: 1 1 -federalize%2:30:00:: 1 1 -fedora%1:06:00:: 1 1 -fee%1:21:00:: 1 11 -feeble%5:00:02:weak:00 1 4 -feebleness%1:26:00:: 1 1 -feed%1:13:00:: 1 32 -feed%2:30:01:: 4 4 -feed%2:34:00:: 6 3 -feed%2:34:01:: 2 15 -feed%2:34:02:: 7 1 -feed%2:34:03:: 3 5 -feed%2:34:04:: 1 47 -feed%2:41:00:: 5 3 -feed_back%2:40:00:: 1 1 -feed_bunk%1:06:00:: 1 2 -feed_on%2:34:00:: 1 2 -feed_upon%2:34:00:: 1 1 -feedback%1:10:00:: 2 1 -feedback%1:22:00:: 1 1 -feeder%1:05:00:: 1 1 -feeding%1:04:00:: 1 9 -feeding%1:04:01:: 2 6 -feedlot%1:06:00:: 1 5 -feel%1:07:00:: 3 1 -feel%1:09:00:: 1 5 -feel%1:26:00:: 2 1 -feel%2:29:00:: 4 39 -feel%2:31:00:: 2 150 -feel%2:31:01:: 5 37 -feel%2:35:00:: 9 4 -feel%2:35:01:: 10 3 -feel%2:37:00:: 1 181 -feel%2:39:00:: 3 66 -feel%2:39:01:: 6 34 -feel%2:39:10:: 8 5 -feel%2:40:00:: 11 1 -feel%2:42:00:: 7 14 -feel_for%2:37:00:: 1 1 -feel_like%2:37:00:: 1 12 -feeler%1:05:01:: 1 1 -feeling%1:03:00:: 1 49 -feeling%1:09:01:: 4 8 -feeling%1:09:02:: 5 1 -feeling%1:09:03:: 2 28 -feeling%1:26:00:: 3 16 -feeling_of_identity%1:12:00:: 1 1 -feelings%1:12:00:: 1 6 -feign%2:32:00:: 1 1 -feint%2:36:00:: 1 1 -felicitate%2:32:00:: 1 1 -felicity%1:07:00:: 1 1 -feline%3:01:00:: 1 2 -fell%2:35:00:: 1 4 -fella%1:18:00:: 1 3 -fellow%1:18:00:: 1 48 -fellow%1:18:02:: 2 20 -fellow%1:18:03:: 3 18 -fellow%5:00:00:related:02 1 8 -fellow_feeling%1:12:00:: 1 1 -fellow_worker%1:18:00:: 1 1 -fellowship%1:14:00:: 1 7 -fellowship%1:26:00:: 2 1 -felon%1:18:00:: 1 1 -felt%5:00:00:detected:00 1 1 -female%1:05:00:: 1 18 -female%1:18:00:: 2 4 -female%3:00:00:: 1 11 -female%5:00:02:feminine:01 2 3 -feminine%3:00:01:: 1 4 -feminine%3:00:02:: 2 1 -femininity%1:07:00:: 1 1 -fence%1:06:00:: 1 32 -fence%2:35:00:: 1 1 -fence_line%1:15:00:: 1 3 -fence_rail%1:06:00:: 1 2 -fencing%1:06:00:: 1 2 -fender%1:06:01:: 1 1 -ferment%1:26:00:: 1 1 -fermentation%1:22:00:: 2 1 -fermentation%1:26:00:: 1 1 -ferocious%5:00:00:violent:00 1 1 -ferociously%4:02:00:: 1 1 -ferocity%1:07:00:: 1 1 -ferret_out%2:31:00:: 1 1 -ferromagnetic%3:01:00:: 1 2 -ferry%2:38:02:: 1 1 -fertile%3:00:00:: 1 1 -fertile%5:00:02:productive:00 2 1 -fertilize%2:30:00:: 1 1 -fertilized%5:00:00:fertile:00 1 2 -fertilizer%1:27:00:: 1 1 -fervent%5:00:00:passionate:00 1 3 -fervently%4:02:00:: 1 1 -fervor%1:12:00:: 1 1 -festering%5:00:00:septic:00 1 1 -festival%1:28:00:: 1 2 -festive%5:00:00:joyous:00 1 2 -festivity%1:04:00:: 1 3 -fetch%2:35:00:: 1 3 -fetch%2:37:00:: 2 1 -fetching%5:00:00:attractive:01 1 1 -fete%2:41:00:: 1 3 -fetid%5:00:00:malodorous:00 1 1 -feudal%3:01:00:: 1 1 -fever%1:12:00:: 2 4 -fever%1:26:00:: 1 4 -feverish%5:00:00:agitated:00 1 4 -feverishly%4:02:00:: 1 3 -few%1:23:00:: 1 5 -few%3:00:00:: 1 80 -fewer%3:00:00:: 1 11 -fiat%1:10:00:: 1 3 -fiber%1:27:00:: 1 14 -fiberglass%1:27:00:: 1 1 -fibrin%1:27:00:: 1 2 -fibrocalcific%3:01:00:: 1 1 -fibrosis%1:26:00:: 1 6 -fibrous_tissue%1:08:00:: 1 3 -fiction%1:10:00:: 1 14 -fictional%3:01:00:: 1 7 -fictional%5:00:00:unreal:00 2 3 -fictive%5:00:00:counterfeit:00 1 1 -fiddle%1:06:00:: 1 1 -fidelity%1:07:02:: 1 1 -fidget%2:38:00:: 1 2 -field%1:04:00:: 6 9 -field%1:09:00:: 4 18 -field%1:14:00:: 10 7 -field%1:14:01:: 12 1 -field%1:14:02:: 13 1 -field%1:15:00:: 1 49 -field%1:15:01:: 3 20 -field%1:15:02:: 8 8 -field%1:15:03:: 11 4 -field%1:15:04:: 2 22 -field%1:17:00:: 9 7 -field%1:19:00:: 5 14 -field%1:26:00:: 7 8 -field%2:33:00:: 2 1 -field%2:33:01:: 1 1 -field-test%2:41:00:: 1 1 -field_general%1:18:00:: 1 1 -field_glasses%1:06:00:: 1 1 -field_goal%1:04:00:: 1 2 -field_of_battle%1:15:00:: 1 3 -field_of_operation%1:04:00:: 1 1 -field_sport%1:04:00:: 1 1 -field_trial%1:09:00:: 1 2 -fielder%1:18:00:: 1 1 -fieldhand%1:18:00:: 1 1 -fielding%1:04:00:: 1 1 -fielding_average%1:24:00:: 1 1 -fieldstone%1:27:00:: 1 1 -fiend%1:18:00:: 1 3 -fiend%1:18:02:: 2 1 -fiendish%5:00:00:evil:00 1 1 -fierce%5:00:00:intense:00 2 5 -fierce%5:00:00:merciless:00 3 1 -fierce%5:00:00:violent:00 1 8 -fiercely%4:02:00:: 1 3 -fierceness%1:07:00:: 1 1 -fiery%5:00:00:hot:01 2 2 -fiery%5:00:00:passionate:00 1 2 -fifteen%1:23:00:: 1 1 -fifteen%5:00:00:cardinal:00 1 17 -fifteenth%5:00:00:ordinal:00 1 6 -fifth%1:23:01:: 1 1 -fifth%5:00:00:ordinal:00 1 13 -fifties%1:28:01:: 1 2 -fiftieth%5:00:00:ordinal:00 1 1 -fifty%1:23:00:: 1 1 -fifty%5:00:00:cardinal:00 1 24 -fifty-cent_piece%1:21:00:: 1 1 -fifty-fifty%5:00:00:equal:00 1 1 -fig%1:10:00:: 1 45 -fig_tree%1:20:00:: 1 1 -fight%1:04:01:: 1 21 -fight%1:04:02:: 2 18 -fight%1:07:00:: 3 2 -fight%2:33:00:: 1 112 -fight%2:33:01:: 2 34 -fight%2:41:00:: 3 8 -fight%2:41:10:: 4 5 -fight_back%2:33:01:: 1 2 -fight_down%2:33:00:: 1 1 -fighter%1:06:00:: 2 3 -fighter%1:18:00:: 1 6 -fighter%1:18:02:: 3 1 -fighting%1:04:00:: 1 25 -fighting%5:00:00:operational:00 1 5 -fighting%5:00:00:unpeaceful:00 2 1 -figural_blindness%1:26:00:: 1 1 -figurative%3:00:00:: 1 3 -figuratively%4:02:00:: 1 1 -figure%1:06:00:: 4 14 -figure%1:07:00:: 8 8 -figure%1:07:01:: 9 1 -figure%1:08:00:: 2 48 -figure%1:10:00:: 1 65 -figure%1:18:00:: 5 13 -figure%1:21:00:: 7 8 -figure%1:23:00:: 3 18 -figure%1:25:00:: 6 8 -figure%2:31:00:: 4 2 -figure%2:31:01:: 1 20 -figure%2:31:02:: 5 1 -figure%2:36:00:: 3 3 -figure%2:42:00:: 2 8 -figure_of_speech%1:10:00:: 1 1 -figure_out%2:31:00:: 1 6 -figured_bass%1:10:00:: 1 1 -figurine%1:06:00:: 1 1 -figuring%1:09:00:: 1 1 -file%1:06:00:: 4 1 -file%1:06:01:: 3 1 -file%1:10:00:: 1 17 -file%1:14:00:: 2 1 -file%2:32:00:: 5 1 -file%2:32:01:: 4 2 -file%2:32:02:: 1 50 -file%2:35:00:: 2 10 -file%2:38:00:: 3 3 -file_away%2:32:00:: 1 1 -file_cabinet%1:06:00:: 1 1 -file_out%2:38:00:: 1 3 -filing%1:10:00:: 1 3 -filipino%1:18:00:: 1 1 -fill%1:23:00:: 1 4 -fill%2:30:00:: 2 12 -fill%2:30:01:: 1 61 -fill%2:30:02:: 9 1 -fill%2:34:00:: 8 1 -fill%2:34:01:: 7 1 -fill%2:34:02:: 5 5 -fill%2:41:00:: 4 5 -fill%2:41:01:: 6 1 -fill%2:42:00:: 3 8 -fill-in%1:18:00:: 1 2 -fill_in%2:32:00:: 1 4 -fill_in%2:36:00:: 2 1 -fill_out%2:30:00:: 2 1 -fill_out%2:32:00:: 1 5 -fill_up%2:30:00:: 1 2 -fill_up%2:30:01:: 2 1 -fille_de_chambre%1:18:00:: 1 6 -filled%5:00:01:full:00 1 26 -filling%1:22:00:: 2 2 -filling%1:27:00:: 1 4 -filling_station%1:06:00:: 1 2 -fillip%1:09:00:: 1 1 -filly%1:05:00:: 1 1 -film%1:06:00:: 4 5 -film%1:06:01:: 3 5 -film%1:10:00:: 2 16 -film%1:10:01:: 1 38 -film%2:32:00:: 1 2 -film_clip%1:10:00:: 1 1 -film_maker%1:18:00:: 1 1 -filmed%5:00:00:recorded:00 1 2 -filming%1:04:00:: 1 1 -filter%1:06:00:: 1 4 -filter%1:06:01:: 2 1 -filter%2:35:00:: 1 10 -filter%2:35:01:: 2 3 -filter_paper%1:27:00:: 1 1 -filthy%5:00:00:dirty:01 1 2 -final%5:00:00:closing:00 1 31 -final%5:00:00:ultimate:00 2 22 -final%5:00:00:unalterable:00 3 3 -final_period%1:28:00:: 1 1 -finale%1:10:00:: 2 2 -finale%1:11:00:: 1 4 -finally%4:02:00:: 2 20 -finally%4:02:02:: 1 44 -finally%4:02:03:: 3 19 -finance%1:04:00:: 1 4 -finance%2:40:00:: 1 23 -financed%5:00:00:supported:02 1 1 -financial%3:01:00:: 1 22 -financial_aid%1:04:00:: 1 1 -financially%4:02:00:: 1 5 -financing%1:04:00:: 1 5 -find%2:30:00:: 12 13 -find%2:31:09:: 9 29 -find%2:31:10:: 5 57 -find%2:32:00:: 4 57 -find%2:32:01:: 11 16 -find%2:36:00:: 8 34 -find%2:39:01:: 6 45 -find%2:39:02:: 2 141 -find%2:39:05:: 13 11 -find%2:40:00:: 3 86 -find%2:40:01:: 7 41 -find%2:40:02:: 1 159 -find%2:40:03:: 10 16 -find_fault_with%2:32:01:: 1 1 -find_oneself%2:30:00:: 1 1 -find_out%2:31:00:: 2 17 -find_out%2:32:00:: 1 33 -find_out%2:32:01:: 3 1 -finding%1:04:00:: 1 16 -finding%1:04:01:: 2 3 -finding%1:17:00:: 3 1 -fine%1:04:00:: 1 1 -fine%2:40:00:: 1 3 -fine%3:00:00:: 9 1 -fine%4:02:00:: 1 3 -fine%4:02:02:: 2 1 -fine%5:00:00:delicate:00 10 1 -fine%5:00:00:elegant:00 8 2 -fine%5:00:00:precise:00 4 4 -fine%5:00:00:satisfactory:00 3 4 -fine%5:00:00:skilled:00 2 7 -fine%5:00:00:superior:02 1 34 -fine%5:00:00:thin:01 7 2 -fine%5:00:00:well:01 6 2 -fine%5:00:02:bad:00 5 3 -fine-grained%5:00:02:fine:00 1 1 -fine-looking%5:00:00:beautiful:00 1 1 -fine_arts%1:09:00:: 1 2 -finely%4:02:01:: 2 2 -finely%4:02:02:: 1 2 -finely%4:02:03:: 3 1 -fineness%1:07:03:: 1 1 -finest%5:00:00:best:00 1 4 -finger%1:08:00:: 1 53 -finger%2:35:00:: 1 1 -finger%2:35:05:: 2 1 -fingered%3:00:00:: 1 1 -fingering%1:04:02:: 1 1 -fingernail%1:08:00:: 1 1 -fingerpaint%2:36:00:: 1 1 -fingerprint%1:10:01:: 1 5 -fingerprint_expert%1:18:00:: 1 1 -fingerprint_man%1:18:00:: 1 1 -fingerprint_specialist%1:18:00:: 1 1 -fingerprinting%1:04:00:: 1 1 -fingertip%1:08:00:: 1 2 -finicky%5:00:00:fastidious:00 1 1 -finish%1:07:00:: 1 3 -finish%2:30:01:: 2 12 -finish%2:30:02:: 1 44 -finish%2:34:00:: 5 2 -finish%2:35:00:: 4 3 -finish%2:42:00:: 3 8 -finish_up%2:30:00:: 1 1 -finish_up%2:30:02:: 2 1 -finished%3:00:01:: 2 2 -finished%3:00:02:: 1 5 -finishing%1:07:00:: 1 1 -finite%3:00:00:: 1 11 -finn%1:18:00:: 1 1 -fire%1:04:00:: 2 18 -fire%1:06:00:: 4 4 -fire%1:11:00:: 1 43 -fire%1:12:00:: 6 3 -fire%1:22:00:: 3 7 -fire%1:27:01:: 5 3 -fire%2:30:00:: 3 10 -fire%2:30:01:: 8 1 -fire%2:33:00:: 2 16 -fire%2:33:01:: 1 30 -fire%2:33:02:: 5 5 -fire%2:37:00:: 7 1 -fire%2:38:02:: 6 1 -fire%2:41:00:: 4 7 -fire_and_brimstone%1:26:00:: 1 1 -fire_company%1:14:00:: 1 1 -firearm%1:06:00:: 1 6 -firecracker%1:06:00:: 1 3 -firelight%1:19:00:: 1 2 -fireman%1:04:00:: 1 1 -fireplace%1:06:01:: 1 5 -firepower%1:07:00:: 1 1 -fireside%1:15:00:: 1 1 -firewall%1:04:00:: 1 1 -firewood%1:27:00:: 1 1 -firework%1:06:00:: 1 2 -firing%1:04:02:: 2 6 -firing%1:04:03:: 1 8 -firing_range%1:06:00:: 1 1 -firm%1:14:00:: 1 26 -firm%4:02:00:: 1 1 -firm%5:00:00:forceful:00 3 6 -firm%5:00:00:hard:01 2 6 -firm%5:00:00:healthy:00 8 1 -firm%5:00:00:resolute:00 1 12 -firm%5:00:00:secure:02 7 2 -firm%5:00:00:settled:02 4 4 -firm%5:00:00:steady:00 5 2 -firm%5:00:02:stable:00 6 2 -firmly%4:02:01:: 3 2 -firmly%4:02:02:: 1 11 -firmly%4:02:03:: 2 5 -firmness%1:07:01:: 2 1 -firmness%1:07:03:: 1 1 -first%1:04:00:: 4 1 -first%1:23:00:: 2 5 -first%1:24:00:: 1 9 -first%1:28:00:: 3 1 -first%3:00:00:: 1 232 -first%4:02:00:: 1 58 -first%4:02:01:: 4 4 -first%4:02:02:: 2 40 -first%4:02:03:: 3 9 -first%5:00:00:best:00 5 3 -first%5:00:00:ordinal:00 2 61 -first%5:00:01:opening:00 4 4 -first%5:00:02:opening:00 3 4 -first-class%5:00:01:superior:02 1 1 -first-nighter%1:18:00:: 1 1 -first-rate%5:00:00:superior:02 1 1 -first_aid%1:04:00:: 1 1 -first_and_foremost%4:02:00:: 1 3 -first_baseman%1:18:00:: 1 1 -first_class%1:07:00:: 1 1 -first_half%1:28:00:: 1 2 -first_moment%1:09:00:: 1 1 -first_name%1:10:00:: 1 1 -first_of_all%4:02:00:: 1 5 -first_off%4:02:00:: 1 1 -first_step%1:04:00:: 1 8 -firsthand%5:00:00:primary:00 1 2 -fiscal%3:01:00:: 1 3 -fiscal_policy%1:10:00:: 1 1 -fiscal_year%1:28:00:: 1 17 -fish%1:05:00:: 1 12 -fish%1:13:00:: 2 3 -fish%1:18:00:: 3 1 -fish%2:33:00:: 2 1 -fish%2:35:00:: 1 2 -fish_hawk%1:05:00:: 1 3 -fisher%1:18:00:: 1 1 -fisherman%1:18:00:: 1 6 -fishing%1:04:00:: 1 5 -fishing_boat%1:06:00:: 1 3 -fishing_net%1:06:00:: 1 1 -fishing_rod%1:06:00:: 1 1 -fishing_tackle%1:06:00:: 1 1 -fishmonger%1:18:00:: 1 1 -fishwife%1:18:00:: 1 1 -fist%1:08:00:: 1 20 -fistfight%1:04:00:: 1 1 -fistfight%2:33:00:: 1 1 -fit%1:07:00:: 3 2 -fit%1:26:00:: 2 2 -fit%1:26:01:: 1 3 -fit%2:30:01:: 4 7 -fit%2:30:02:: 5 5 -fit%2:40:00:: 8 1 -fit%2:42:01:: 3 9 -fit%2:42:02:: 2 11 -fit%2:42:03:: 7 1 -fit%2:42:04:: 6 4 -fit%2:42:05:: 1 14 -fit%3:00:01:: 3 3 -fit%3:00:02:: 1 4 -fit%5:00:00:ready:00 2 4 -fit_in%2:42:00:: 1 2 -fit_out%2:40:00:: 1 1 -fitness%1:07:00:: 1 3 -fitness%1:26:00:: 2 1 -fitting%5:00:00:just:00 2 2 -fitting%5:00:00:proper:00 1 5 -five%1:23:00:: 1 4 -five%5:00:00:cardinal:00 1 103 -five_hundred%5:00:00:cardinal:00 1 5 -fix%1:26:00:: 1 2 -fix%2:29:00:: 9 1 -fix%2:30:00:: 8 1 -fix%2:30:01:: 1 9 -fix%2:30:02:: 7 2 -fix%2:32:03:: 3 6 -fix%2:33:00:: 5 3 -fix%2:35:00:: 2 7 -fix%2:36:00:: 4 5 -fix%2:36:01:: 6 2 -fix_up%2:32:00:: 2 2 -fix_up%2:34:00:: 1 5 -fixed%3:00:00:: 3 2 -fixed%5:00:00:determinate:01 1 12 -fixed%5:00:00:nonmoving:00 2 6 -fixed%5:00:00:steady:00 4 2 -fixed%5:00:00:unchangeable:00 5 2 -fixer%1:18:00:: 1 1 -fixing%1:04:00:: 1 1 -fixture%1:06:00:: 1 1 -fizzle%2:42:00:: 1 1 -flag%1:06:00:: 1 31 -flag%1:10:01:: 2 3 -flag%1:20:00:: 3 1 -flag%2:30:00:: 2 1 -flag%2:32:00:: 1 1 -flag-waver%1:18:00:: 1 1 -flag_of_truce%1:06:00:: 1 1 -flagellated_protozoan%1:05:00:: 1 1 -flail%1:06:00:: 1 1 -flail%2:35:00:: 1 1 -flailing%5:00:00:moving:02 1 1 -flair%1:07:00:: 2 1 -flair%1:09:00:: 1 2 -flake%2:35:02:: 1 1 -flamboyantly%4:02:00:: 1 1 -flame%1:22:00:: 1 15 -flame_up%2:43:00:: 1 2 -flaming%5:00:00:colorful:00 1 2 -flaming%5:00:00:lighted:00 2 1 -flank%1:14:00:: 1 3 -flank%2:42:00:: 1 5 -flannel%1:06:00:: 1 2 -flap%1:06:00:: 1 3 -flap%2:38:00:: 2 2 -flap%2:38:01:: 1 4 -flap%2:38:03:: 3 1 -flapper%1:18:00:: 1 1 -flare%1:10:00:: 3 1 -flare%1:22:00:: 2 1 -flare%1:25:00:: 1 1 -flare%2:30:00:: 3 1 -flare%2:37:00:: 2 1 -flare%2:43:00:: 1 1 -flare_up%2:30:00:: 2 1 -flare_up%2:43:00:: 1 1 -flaring%5:00:00:increasing:00 1 1 -flash%1:07:00:: 2 6 -flash%1:09:00:: 4 1 -flash%1:11:00:: 1 7 -flash%1:11:01:: 3 1 -flash%2:30:03:: 2 6 -flash%2:32:00:: 4 3 -flash%2:38:00:: 5 2 -flash%2:39:00:: 1 9 -flash%2:39:01:: 3 3 -flash%2:39:02:: 6 1 -flash_flood%1:19:00:: 1 1 -flashback%1:10:00:: 1 1 -flashing%1:11:00:: 1 1 -flashing%5:00:00:bright:00 1 1 -flashlight%1:06:00:: 1 3 -flashlight_battery%1:06:00:: 1 1 -flashy%5:00:00:colorful:03 2 1 -flashy%5:00:00:tasteless:02 1 1 -flask%1:06:00:: 1 4 -flat%1:06:04:: 2 1 -flat%1:17:00:: 1 2 -flat%3:00:03:: 5 1 -flat%4:02:01:: 1 1 -flat%5:00:00:even:01 1 11 -flat%5:00:00:planar:00 2 5 -flat%5:00:00:unerect:00 4 2 -flat%5:00:00:unqualified:02 3 2 -flat-bottomed%5:00:00:bottomed:00 1 4 -flat-footed%5:00:00:footed:00 1 1 -flat_bench%1:06:00:: 1 1 -flatly%4:02:00:: 1 4 -flatness%1:07:00:: 1 9 -flats%1:06:00:: 1 1 -flatten%2:30:00:: 2 1 -flatten%2:30:01:: 1 6 -flattened%5:00:00:planar:00 1 1 -flatter%2:32:00:: 1 7 -flattery%1:10:00:: 1 2 -flatus%1:04:00:: 1 2 -flaunt%2:39:00:: 1 3 -flautist%1:18:00:: 1 2 -flavor%1:09:00:: 2 3 -flavor%1:26:00:: 1 3 -flaw%1:26:00:: 1 2 -flawless%5:00:00:perfect:00 1 2 -flea%1:05:00:: 1 1 -flea_market%1:15:00:: 1 1 -fleck%1:17:00:: 1 1 -flecked%5:00:00:patterned:00 1 1 -fledgling%1:18:00:: 1 1 -fledgling%5:00:00:fledged:00 1 1 -fledgling%5:00:00:inexperienced:00 2 1 -flee%2:38:00:: 1 37 -fleeing%5:00:00:moving:02 1 1 -fleet%1:14:03:: 1 1 -fleet%5:00:00:fast:01 1 2 -fleeting%5:00:00:moving:02 1 1 -fleeting%5:00:00:short:02 2 1 -flesh%1:08:01:: 2 8 -flesh%1:08:02:: 1 12 -fleshy%5:00:00:fat:01 1 1 -flex%2:38:01:: 1 1 -flexibility%1:07:01:: 2 2 -flexibility%1:07:02:: 1 7 -flexible%3:00:01:: 2 2 -flexible%3:00:02:: 1 2 -flexible%5:00:00:adaptable:00 3 1 -flexible%5:00:00:elastic:00 4 1 -flick%1:11:00:: 1 2 -flick%2:35:03:: 4 1 -flick%2:38:00:: 3 1 -flick%2:39:00:: 1 1 -flick%2:39:10:: 2 1 -flicker%2:38:00:: 1 3 -flight%1:04:00:: 2 6 -flight%1:04:01:: 4 5 -flight%1:06:00:: 3 5 -flight%1:09:00:: 6 1 -flight%1:14:00:: 5 3 -flight%1:14:01:: 1 6 -flight_of_stairs%1:06:00:: 1 1 -flimsy%5:00:01:weak:00 1 2 -flimsy%5:00:02:weak:00 2 1 -flinch%2:38:00:: 1 3 -fling%2:35:00:: 1 13 -fling%2:38:00:: 2 1 -flint%1:27:00:: 1 1 -flip%1:04:03:: 1 1 -flip%2:35:01:: 2 1 -flip%2:38:00:: 1 3 -flirt%2:32:00:: 1 1 -flirt_with%2:31:00:: 1 1 -flit%2:38:00:: 1 1 -float%2:38:00:: 1 14 -float%2:38:01:: 2 4 -float%2:38:02:: 3 3 -floating%5:00:00:afloat(p):00 6 2 -floating%5:00:00:moving:02 1 2 -floc%1:27:00:: 1 3 -flocculate%2:42:00:: 1 1 -flocculation%1:22:00:: 1 1 -flock%1:14:00:: 2 2 -flock%1:14:02:: 1 2 -flock%1:14:03:: 4 1 -flock%1:23:00:: 3 1 -flock%2:38:01:: 1 2 -flog%2:35:00:: 1 1 -flood%1:04:00:: 5 1 -flood%1:04:01:: 4 2 -flood%1:06:00:: 3 2 -flood%1:19:00:: 1 5 -flood%1:23:00:: 2 2 -flood%2:30:00:: 2 3 -flood%2:35:00:: 1 6 -flooded%5:00:01:full:00 1 1 -floodhead%1:19:00:: 1 1 -floor%1:06:00:: 1 38 -floor%1:06:01:: 2 16 -floor%1:10:00:: 3 3 -floor%1:17:00:: 5 1 -floor%1:17:01:: 4 2 -floor_board%1:06:00:: 1 1 -floor_covering%1:06:00:: 1 1 -floor_plan%1:06:00:: 1 1 -floorboard%1:06:00:: 1 1 -flooring%1:06:00:: 1 1 -flop%2:38:00:: 2 2 -flop%2:38:01:: 1 4 -floral%5:00:00:patterned:00 1 1 -florence%1:15:00:: 1 1 -florentine%3:01:00:: 1 1 -florid%5:00:00:fancy:00 1 1 -florida%1:15:00:: 1 4 -floridian%1:18:00:: 1 1 -florist%1:06:00:: 2 1 -florist%1:18:00:: 1 1 -flounce%2:38:00:: 1 1 -flounder%2:38:00:: 1 5 -flounder%2:41:00:: 2 3 -flour%1:13:00:: 1 3 -flourish%1:10:02:: 1 1 -flourish%2:30:01:: 1 11 -flourish%2:40:00:: 2 1 -flourishing%5:00:00:healthy:00 1 1 -flout%2:32:01:: 1 2 -flow%1:04:00:: 3 5 -flow%1:11:00:: 1 18 -flow%1:14:00:: 6 1 -flow%1:22:00:: 4 3 -flow%1:26:00:: 5 1 -flow%1:28:00:: 2 7 -flow%2:38:00:: 2 10 -flow%2:38:01:: 1 13 -flow%2:38:02:: 3 1 -flow_from%2:42:00:: 1 1 -flow_out%2:30:00:: 1 1 -flow_rate%1:28:00:: 1 6 -flower%1:20:00:: 1 31 -flower%1:20:02:: 2 8 -flower%2:30:00:: 1 1 -flower_garden%1:06:00:: 1 3 -flowerbed%1:06:00:: 1 1 -flowering%1:22:00:: 1 2 -flowering%1:22:01:: 2 1 -flowing%1:11:00:: 1 1 -flowing%5:00:00:graceful:00 1 3 -flu%1:26:00:: 1 2 -flub%2:41:00:: 1 1 -fluent%5:00:00:graceful:00 1 1 -fluff%1:27:00:: 1 1 -fluffy%5:00:00:soft:01 1 1 -fluid%1:27:00:: 2 1 -fluid%1:27:02:: 1 25 -fluid%5:00:00:changeable:00 1 1 -fluoresce%2:39:00:: 1 1 -fluorescein%1:27:00:: 1 2 -fluorescence%1:19:00:: 1 11 -fluorescent%5:00:00:light:06 1 1 -fluoride%1:27:00:: 1 2 -fluorine%1:27:00:: 1 1 -fluoroboride%1:27:00:: 1 1 -flurry%1:04:00:: 1 4 -flurry%1:19:00:: 2 1 -flurry%2:38:00:: 1 2 -flush%1:26:00:: 2 1 -flush%1:28:00:: 1 1 -flush%2:29:00:: 1 3 -flush%2:30:00:: 2 2 -flush%4:02:00:: 1 2 -flush%5:00:00:even:01 1 1 -flushed%5:00:00:colored:00 2 2 -flushed%5:00:00:healthy:00 1 2 -fluster%2:37:01:: 1 1 -flute%1:06:00:: 1 1 -flutter%1:04:00:: 1 1 -flutter%2:38:01:: 2 1 -flutter%2:38:02:: 1 1 -fluttering%5:00:00:moving:02 1 1 -fluttering%5:00:02:moving:02 2 1 -flux%1:11:00:: 2 5 -flux%1:28:00:: 1 18 -fly%1:04:00:: 4 1 -fly%1:05:00:: 1 6 -fly%1:06:00:: 3 1 -fly%1:06:01:: 2 1 -fly%2:30:01:: 7 2 -fly%2:35:00:: 4 3 -fly%2:38:00:: 1 33 -fly%2:38:01:: 3 5 -fly%2:38:02:: 2 9 -fly%2:38:05:: 9 1 -fly%2:38:06:: 8 1 -fly%2:38:07:: 5 2 -fly%2:38:08:: 6 2 -fly_by%2:38:00:: 1 2 -fly_high%2:37:00:: 1 1 -fly_in_the_ointment%1:07:00:: 1 1 -fly_on%2:38:00:: 1 2 -fly_open%2:35:00:: 1 1 -flyer%1:10:00:: 1 1 -flying%5:00:00:air(a):00 5 1 -flying%5:00:00:moving:02 2 1 -flying%5:00:00:winged:00 1 1 -flyway%1:15:00:: 1 1 -fm%1:10:00:: 1 1 -foam%1:17:00:: 1 4 -foam%1:27:00:: 2 1 -foam%2:30:05:: 1 1 -foamy%5:00:00:gaseous:00 1 3 -foamy%5:00:00:unhealthy:00 2 1 -focal%5:00:00:central:01 1 3 -focal_point%1:19:00:: 1 2 -focally%4:02:00:: 1 1 -focus%1:07:01:: 2 3 -focus%1:07:03:: 3 2 -focus%1:09:00:: 1 6 -focus%1:26:00:: 4 1 -focus%2:31:00:: 1 6 -focus%2:31:01:: 3 1 -focus%2:39:00:: 2 4 -focus_on%2:42:00:: 1 6 -focusing%1:09:00:: 1 1 -foe%1:18:00:: 2 2 -foe%1:18:01:: 1 12 -fog%1:09:00:: 3 2 -fog%1:19:00:: 1 15 -fog%1:26:01:: 2 3 -foible%1:07:00:: 1 1 -foil%1:06:01:: 1 5 -foil%2:41:00:: 2 1 -foil%2:42:00:: 1 1 -fold%1:14:00:: 2 1 -fold%1:25:00:: 1 3 -fold%2:30:00:: 3 1 -fold%2:35:00:: 1 5 -fold%2:35:03:: 2 2 -fold_up%2:35:00:: 1 1 -folded%3:00:00:: 1 3 -folded-up%5:00:00:folded:00 1 1 -folding_chair%1:06:00:: 1 1 -foliage%1:06:00:: 2 1 -foliage%1:20:00:: 1 6 -folk%1:14:00:: 1 14 -folk%1:14:01:: 2 1 -folk%1:14:02:: 3 1 -folk%5:00:00:nonclassical:00 1 1 -folk_dance%1:04:00:: 1 1 -folk_music%1:10:00:: 1 1 -folk_poet%1:18:00:: 1 1 -folk_writer%1:18:00:: 1 1 -folklore%1:09:00:: 1 27 -folks%1:14:00:: 1 1 -folksy%5:00:00:rural:00 1 2 -follicular%3:01:00:: 1 1 -follow%2:30:00:: 7 13 -follow%2:30:01:: 16 1 -follow%2:31:00:: 12 4 -follow%2:36:00:: 11 8 -follow%2:36:01:: 15 1 -follow%2:38:00:: 1 74 -follow%2:38:01:: 4 20 -follow%2:40:00:: 9 9 -follow%2:41:00:: 5 18 -follow%2:41:01:: 14 2 -follow%2:41:02:: 13 3 -follow%2:42:00:: 2 50 -follow%2:42:01:: 6 17 -follow%2:42:02:: 8 12 -follow%2:42:03:: 10 8 -follow%2:42:05:: 3 26 -follow-through%1:04:00:: 1 1 -follow_suit%2:42:00:: 1 1 -follow_through%2:41:00:: 1 4 -follower%1:18:00:: 1 7 -following%1:14:00:: 1 1 -following%3:00:00:: 1 3 -following%5:00:01:succeeding(a):00 4 30 -following%5:00:02:succeeding(a):00 3 20 -folly%1:04:01:: 2 1 -folly%1:07:00:: 1 2 -fond%5:00:00:inclined(p):02 4 1 -fond%5:00:01:loving:00 2 1 -fond%5:00:02:loving:00 1 3 -fondly%4:02:00:: 1 3 -fondness%1:12:01:: 1 3 -food%1:03:00:: 1 29 -food_for_thought%1:09:00:: 1 2 -foodstuff%1:06:00:: 1 1 -fool%1:18:00:: 1 25 -fool%1:18:01:: 2 10 -fool%1:18:02:: 3 1 -fool%2:41:00:: 1 6 -fool%5:00:00:foolish:00 1 1 -fool%5:00:00:stupid:00 2 1 -fool_around%2:32:00:: 1 2 -foolhardy%5:00:00:bold:00 1 1 -fooling%5:00:00:light:02 1 1 -foolish%3:00:00:: 1 6 -foolishness%1:07:00:: 1 2 -foolproof%5:00:00:infallible:00 1 1 -foot%1:04:00:: 7 1 -foot%1:05:00:: 6 2 -foot%1:05:01:: 4 4 -foot%1:06:00:: 5 2 -foot%1:08:01:: 1 89 -foot%1:15:00:: 3 8 -foot%1:23:00:: 2 81 -foot%2:40:00:: 1 1 -foot_rot%1:26:00:: 1 3 -foot_soldier%1:18:00:: 1 1 -footage%1:06:00:: 1 1 -football%1:04:00:: 1 9 -football%1:06:00:: 2 2 -football_player%1:18:00:: 1 2 -football_team%1:14:00:: 1 3 -footbridge%1:06:00:: 1 1 -foothills%1:17:00:: 1 1 -footing%1:26:00:: 1 1 -footloose%5:00:00:free:00 1 1 -footnote%1:10:00:: 1 1 -footpath%1:06:00:: 1 1 -footprint%1:10:00:: 1 1 -footstep%1:04:00:: 2 4 -footstep%1:11:00:: 1 4 -footstep%1:23:00:: 3 3 -foppish%5:00:00:elegant:00 1 1 -for_a_while%4:02:01:: 1 12 -for_all_practical_purposes%4:02:00:: 1 1 -for_all_the_world%4:02:00:: 1 1 -for_example%4:02:00:: 1 63 -for_good%4:02:00:: 1 1 -for_good_measure%4:02:00:: 1 1 -for_instance%4:02:00:: 1 21 -for_keeps%4:02:00:: 1 1 -for_one%4:02:00:: 1 1 -for_one_thing%4:02:00:: 1 6 -for_sale%5:00:00:available:00 1 2 -for_sure%4:02:00:: 1 2 -for_sure%5:00:00:unquestionable:00 1 1 -for_that_matter%4:02:00:: 1 5 -for_the_first_time%4:02:00:: 1 10 -for_the_moment%4:02:00:: 1 6 -for_the_most_part%4:02:00:: 1 15 -for_the_time_being%4:02:02:: 1 2 -foraging%1:04:00:: 1 1 -forbid%2:32:00:: 1 15 -forbid%2:41:03:: 2 1 -forbidden%5:00:00:impermissible:00 1 4 -force%1:04:01:: 6 5 -force%1:07:00:: 3 19 -force%1:07:01:: 1 29 -force%1:14:00:: 4 15 -force%1:14:01:: 5 10 -force%1:18:00:: 7 1 -force%1:19:00:: 2 20 -force%2:32:00:: 4 8 -force%2:35:00:: 5 3 -force%2:35:01:: 7 1 -force%2:35:02:: 6 2 -force%2:35:05:: 8 1 -force%2:36:00:: 2 17 -force%2:38:00:: 3 13 -force%2:41:00:: 1 48 -forced%3:44:00:: 1 1 -forced%5:00:00:involuntary:01 2 1 -forced_sale%1:10:00:: 1 1 -forceful%3:00:00:: 1 2 -forceless%3:00:00:: 1 1 -forearm%1:08:00:: 1 1 -forebear%2:42:00:: 1 1 -foreboding%1:12:00:: 1 1 -forecast%1:10:00:: 1 1 -forecast%2:31:00:: 2 2 -forecast%2:32:00:: 1 5 -forecast%2:32:01:: 3 1 -forecasting%1:10:00:: 1 1 -foreclose%2:40:00:: 2 1 -foreclose%2:41:00:: 1 1 -forefather%1:18:00:: 1 1 -forefinger%1:08:00:: 1 3 -forego%2:42:00:: 1 3 -foregoing%5:00:00:preceding(a):00 1 4 -foreground%1:09:00:: 1 2 -forehead%1:08:00:: 1 8 -foreign%3:00:01:: 2 10 -foreign%3:00:02:: 1 20 -foreign%5:00:00:adulterating:00 4 1 -foreign%5:00:00:extrinsic:00 3 4 -foreign_exchange%1:21:00:: 1 1 -foreign_office%1:14:00:: 1 1 -foreign_policy%1:10:00:: 1 14 -foreigner%1:18:00:: 1 7 -foreknow%2:31:00:: 1 1 -foreknowledge%1:10:00:: 1 1 -foreman%1:18:00:: 1 2 -foremost%5:00:00:best:00 1 2 -foremost%5:00:00:front(a):00 3 1 -forensic%5:00:00:rhetorical:00 1 1 -forerunner%1:10:00:: 2 1 -forerunner%1:18:00:: 1 1 -foresee%2:31:00:: 1 5 -foresee%2:36:00:: 2 3 -foresee%2:41:00:: 3 2 -foreseeable%5:00:00:predictable:00 1 1 -foreshorten%2:30:00:: 1 1 -foresight%1:07:00:: 1 1 -forest%1:14:00:: 1 36 -forest%1:17:00:: 2 2 -forestall%2:41:01:: 1 4 -forever%4:02:00:: 1 14 -forever%4:02:02:: 2 2 -forever%4:02:03:: 3 2 -forfeit%2:40:00:: 1 2 -forfeit%5:00:00:lost:03 1 1 -forge%2:36:00:: 1 1 -forge%2:36:01:: 2 1 -forge%2:36:08:: 3 1 -forget%2:31:00:: 2 21 -forget%2:31:01:: 1 61 -forget%2:31:03:: 3 9 -forgetful%3:00:01:: 1 1 -forgetfulness%1:09:00:: 1 3 -forgive%2:32:00:: 1 24 -forgive%2:41:00:: 2 1 -forgo%2:41:00:: 1 1 -forgotten%5:00:00:unnoticed:00 1 5 -forgotten%5:00:00:unrecoverable:00 2 1 -fork%1:04:00:: 2 2 -fork%1:06:00:: 1 4 -fork%1:06:02:: 4 1 -fork%1:25:00:: 3 1 -forked%5:00:00:divided:00 1 1 -forlorn%5:00:00:forsaken:00 1 5 -form%1:03:00:: 6 8 -form%1:07:00:: 7 3 -form%1:07:01:: 4 23 -form%1:07:03:: 11 1 -form%1:08:00:: 5 19 -form%1:09:00:: 3 40 -form%1:09:01:: 2 62 -form%1:10:00:: 1 96 -form%1:10:01:: 8 2 -form%1:10:02:: 10 1 -form%1:14:02:: 9 1 -form%2:30:01:: 4 12 -form%2:35:00:: 7 3 -form%2:36:00:: 5 11 -form%2:41:00:: 1 28 -form%2:41:02:: 6 3 -form%2:42:00:: 2 26 -form%2:42:02:: 3 18 -form_of_government%1:14:00:: 1 1 -formal%3:00:01:: 1 13 -formal%3:00:02:: 3 2 -formal%5:00:00:official:00 2 3 -formal_logic%1:09:00:: 1 1 -formalism%1:09:01:: 1 2 -formalized%3:01:00:: 1 1 -formally%4:02:00:: 2 1 -formally%4:02:01:: 1 5 -formation%1:04:00:: 2 4 -formation%1:04:01:: 3 4 -formation%1:06:00:: 5 3 -formation%1:14:00:: 1 7 -formation%1:17:00:: 4 3 -formative%1:10:00:: 1 1 -formed%5:00:00:definite:00 1 2 -former%3:00:00:: 1 21 -former%5:00:01:past:00 2 20 -former%5:00:02:past:00 3 4 -formerly%4:02:00:: 1 7 -formidable%5:00:00:alarming:00 2 4 -formidable%5:00:01:impressive:00 1 4 -formula%1:09:00:: 5 1 -formula%1:10:00:: 1 8 -formula%1:10:01:: 3 3 -formula%1:10:02:: 2 6 -formula%1:10:03:: 4 1 -formulate%2:32:00:: 3 4 -formulate%2:32:03:: 1 8 -formulate%2:36:00:: 2 4 -formulate%2:36:01:: 4 1 -formulation%1:04:00:: 2 2 -formulation%1:10:00:: 3 1 -formulation%1:27:00:: 1 11 -forsake%2:31:00:: 1 4 -forswear%2:32:00:: 1 1 -fort%1:06:00:: 2 1 -fort%1:06:01:: 1 2 -fort_up%2:38:00:: 1 4 -fort_worth%1:15:00:: 1 2 -forte%1:07:01:: 1 1 -forte-piano%1:06:00:: 1 1 -forth%4:02:00:: 1 3 -forth%4:02:01:: 2 1 -forth%4:02:02:: 3 1 -forthright%5:00:01:direct:02 1 2 -forthwith%4:02:00:: 1 1 -forties%1:28:00:: 1 1 -fortification%1:06:00:: 1 1 -fortified%5:00:00:protected:00 1 1 -fortify%2:30:01:: 1 4 -fortitude%1:07:00:: 1 3 -fortress%1:06:00:: 1 3 -fortunate%3:00:00:: 1 7 -fortunate%5:00:00:blessed:00 2 1 -fortunately%4:02:00:: 1 4 -fortune%1:19:00:: 1 4 -fortune%1:19:01:: 3 2 -fortune%1:21:00:: 2 3 -fortune%1:26:00:: 4 1 -forty%5:00:00:cardinal:00 1 14 -forward%2:38:00:: 1 3 -forward%3:00:01:: 1 8 -forward%4:02:00:: 1 53 -forward%4:02:01:: 4 3 -forward%4:02:02:: 3 3 -forward%4:02:03:: 2 5 -forward%5:00:00:advancing:00 2 1 -forward%5:00:00:fore(a):00 6 3 -forward%5:00:00:front(a):00 7 1 -forward-moving%5:00:00:progressive:01 1 1 -forwarding%1:04:01:: 1 1 -foster%2:41:00:: 1 13 -foster_home%1:14:00:: 1 1 -foster_parent%1:18:00:: 1 1 -fostering%1:10:00:: 1 1 -foul%2:30:03:: 2 1 -foul%2:33:01:: 1 1 -foul%5:00:00:malodorous:00 2 1 -foul%5:00:00:offensive:01 1 1 -foul%5:00:00:unfair:00 3 1 -foul-smelling%5:00:00:malodorous:00 1 2 -foul_out%2:35:00:: 1 1 -foul_up%2:41:00:: 1 1 -fouled%5:00:00:dirty:01 1 1 -found%1:21:00:: 1 1 -found%2:36:00:: 2 4 -found%2:41:00:: 1 9 -found%3:00:00:: 1 1 -foundation%1:06:00:: 3 1 -foundation%1:14:00:: 2 3 -foundation%1:24:00:: 1 6 -founder%1:18:00:: 2 1 -founder%1:26:00:: 1 1 -founding%1:04:00:: 1 2 -foundry%1:06:00:: 1 1 -fountain%1:06:02:: 1 2 -fountainhead%1:10:00:: 1 1 -four%1:23:00:: 1 15 -four%5:00:00:cardinal:00 1 130 -four-sided%5:00:00:multilateral:00 1 1 -four_hundred%1:14:00:: 1 1 -four_times%4:02:00:: 1 2 -fourfold%5:00:01:multiple:00 1 1 -foursome%1:14:00:: 1 1 -fourteen%1:23:00:: 1 1 -fourteen%5:00:00:cardinal:00 1 8 -fourteenth%5:00:00:ordinal:00 1 1 -fourth%1:24:00:: 1 1 -fourth%4:02:00:: 1 2 -fourth%5:00:00:ordinal:00 1 33 -fourth_dimension%1:28:00:: 1 2 -fourth_of_july%1:28:00:: 1 1 -fowl%1:05:00:: 1 1 -fox%1:05:00:: 1 3 -fox%1:18:00:: 2 1 -fox_terrier%1:05:00:: 1 2 -foyer%1:06:00:: 1 3 -fracas%1:10:00:: 1 2 -fraction%1:06:00:: 2 5 -fraction%1:23:00:: 3 2 -fraction%1:27:00:: 1 22 -fractional%3:00:00:: 1 1 -fractionate%2:35:01:: 1 3 -fractionation%1:04:00:: 2 2 -fractionation%1:22:00:: 1 2 -fracture%2:30:01:: 1 1 -fragile%5:00:00:breakable:00 1 3 -fragile%5:00:00:delicate:00 2 2 -fragment%1:06:00:: 2 1 -fragment%1:17:01:: 1 7 -fragmentary%5:00:00:fractional:00 1 5 -fragmentation%1:04:00:: 1 1 -fragmented%5:00:00:broken:01 1 1 -fragrance%1:09:00:: 1 1 -fragrant%3:00:00:: 1 2 -frail%3:00:00:: 1 4 -frambesia%1:26:00:: 1 1 -frame%1:06:02:: 1 7 -frame%1:06:03:: 2 5 -frame%1:08:01:: 3 3 -frame%1:28:00:: 4 2 -frame%2:31:00:: 5 1 -frame%2:32:00:: 4 1 -frame%2:35:00:: 1 4 -frame%2:41:00:: 3 1 -frame%2:42:00:: 2 3 -frame_in%2:35:00:: 1 2 -frame_up%2:36:00:: 1 1 -framed%3:00:00:: 1 1 -framework%1:07:00:: 2 1 -framework%1:09:00:: 1 3 -framing%1:04:00:: 1 1 -franc%1:23:00:: 1 1 -france%1:15:00:: 1 10 -franchise%1:10:00:: 1 2 -frangipani%1:20:00:: 1 1 -frank%5:00:00:direct:02 1 3 -frankly%4:02:00:: 1 5 -frantic%5:00:00:agitated:00 1 10 -frantic%5:00:00:wild:02 2 1 -frantically%4:02:00:: 1 5 -fraternisation%1:04:00:: 1 1 -fraternity%1:14:00:: 2 1 -fraternity%1:14:01:: 1 1 -fraternize%2:41:00:: 1 2 -fraud%1:04:00:: 1 5 -fraud%1:04:01:: 3 2 -fraud%1:18:00:: 2 2 -frayed%5:00:01:worn:00 1 1 -freak%1:18:00:: 1 4 -freckle%1:08:00:: 1 1 -free%2:32:00:: 8 1 -free%2:35:01:: 7 1 -free%2:35:02:: 3 3 -free%2:40:02:: 2 3 -free%2:41:00:: 1 6 -free%2:41:01:: 5 1 -free%2:41:02:: 6 1 -free%2:41:07:: 4 1 -free%3:00:00:: 1 38 -free%3:00:02:: 2 4 -free%5:00:00:original:00 5 2 -free%5:00:00:unfixed:00 8 1 -free%5:00:00:unobstructed:00 6 2 -free%5:00:00:unpaid:00 3 3 -free%5:00:00:voluntary:01 7 1 -free%5:00:02:unoccupied:00 4 3 -free-swimming%5:00:00:vagile:00 1 3 -free_burning%5:00:00:continuous:01 1 7 -free_of%5:00:00:free:00 1 4 -free_radical%1:27:00:: 1 2 -free_rein%1:26:00:: 1 1 -free_trader%1:18:00:: 1 1 -free_will%1:07:00:: 2 1 -free_will%1:26:00:: 1 2 -free_world%1:14:00:: 1 2 -freed%5:00:00:free:00 2 1 -freed%5:00:00:free:01 1 2 -freedom%1:26:00:: 1 26 -freedom%1:26:01:: 2 1 -freedom_of_thought%1:07:00:: 1 1 -freehand%5:00:00:original:00 1 3 -freelance%5:00:00:employed:00 1 1 -freely%4:02:00:: 1 8 -freeman%1:18:00:: 1 2 -freeway%1:06:00:: 1 7 -freewheeler%1:18:00:: 1 1 -freewheeling%5:00:00:unrestrained:00 1 1 -freeze%2:29:00:: 3 3 -freeze%2:30:00:: 2 5 -freeze%2:30:01:: 5 1 -freeze%2:30:02:: 4 1 -freeze%2:38:00:: 1 5 -freeze_down%2:30:00:: 1 2 -freeze_out%2:30:00:: 1 2 -freezing%1:22:00:: 1 1 -freezing%5:00:00:cold:01 1 1 -freight%1:04:00:: 2 1 -freight%1:06:00:: 1 4 -freight_car%1:06:00:: 1 2 -freighter%1:06:00:: 1 1 -french%1:10:00:: 1 6 -french%1:18:00:: 2 3 -french%3:01:00:: 1 9 -french_canadian%1:18:00:: 1 1 -french_horn%1:06:00:: 1 1 -french_revolution%1:04:00:: 1 4 -french_teacher%1:18:00:: 1 1 -french_ultramarine_blue%1:27:00:: 1 1 -french_window%1:06:00:: 1 1 -frenchman%1:18:00:: 1 5 -frenzied%5:00:00:wild:02 1 1 -frenziedly%4:02:01:: 1 2 -frenzy%1:26:00:: 1 6 -frequency%1:23:00:: 3 2 -frequency%1:24:00:: 2 11 -frequency%1:28:00:: 1 12 -frequent%2:38:00:: 2 1 -frequent%2:41:00:: 1 1 -frequent%3:00:00:: 1 9 -frequent%5:00:00:common:01 2 3 -frequently%4:02:00:: 1 39 -fresh%3:00:01:: 1 16 -fresh%3:00:02:: 5 2 -fresh%4:02:00:: 1 1 -fresh%5:00:00:invigorating:00 3 4 -fresh%5:00:00:new:00 2 5 -fresh%5:00:00:original:00 4 3 -fresh_fish%1:18:00:: 1 2 -freshly%4:02:00:: 1 1 -freshman%1:18:00:: 1 2 -freshman%1:18:01:: 2 1 -freshness%1:07:00:: 2 1 -freshness%1:07:01:: 1 1 -fret%2:37:00:: 2 2 -fret%2:37:03:: 1 3 -freud%1:18:00:: 1 1 -freudian%3:01:00:: 1 1 -friable%5:00:00:breakable:00 1 2 -friction%1:26:00:: 1 2 -friday%1:28:00:: 1 18 -fried%5:00:00:cooked:00 1 2 -fried_egg%1:13:00:: 1 1 -friend%1:18:00:: 1 169 -friend%1:18:02:: 3 1 -friend%1:18:03:: 2 1 -friendliness%1:12:00:: 1 1 -friendly%3:00:01:: 1 25 -friendly%5:00:00:amicable:00 2 4 -friendship%1:26:00:: 1 3 -frieze%1:06:01:: 1 2 -fright%1:12:00:: 1 2 -frighten%2:37:00:: 1 10 -frighten%2:37:01:: 2 1 -frighten_away%2:37:00:: 1 1 -frightened%5:00:00:afraid(p):00 2 7 -frightened%5:00:02:afraid(p):00 1 3 -frightening%5:00:00:alarming:00 1 6 -frightful%5:00:00:alarming:00 1 4 -frightful%5:00:00:extraordinary:00 2 1 -frigid%5:00:00:cold:01 2 1 -frigid%5:00:00:unloving:00 1 2 -frills%1:06:00:: 1 1 -fringe%1:15:00:: 2 1 -fringe%1:25:00:: 1 8 -fringe%5:00:00:peripheral:00 1 1 -fringe_benefit%1:21:00:: 1 2 -fringed%5:00:00:adorned:00 2 1 -fringed%5:00:00:bordered:00 1 3 -frivolous%3:00:00:: 1 3 -frizzle%2:30:00:: 1 1 -frog%1:05:00:: 1 2 -frogmarch%2:38:00:: 1 1 -frolic%1:04:00:: 1 1 -frolic%2:38:00:: 1 1 -from_nowhere%4:02:00:: 1 1 -from_pillar_to_post%4:02:00:: 1 1 -from_scratch%4:02:00:: 1 1 -from_start_to_finish%4:02:00:: 1 1 -from_the_heart%4:02:00:: 1 1 -from_time_to_time%4:02:00:: 1 8 -front%1:06:00:: 4 2 -front%1:09:00:: 3 2 -front%1:15:00:: 1 20 -front%1:15:01:: 2 15 -front%1:18:00:: 5 1 -front%2:33:00:: 2 2 -front%2:42:00:: 1 2 -front%3:00:00:: 1 17 -front_door%1:06:00:: 1 10 -front_line%1:15:00:: 1 1 -front_porch%1:06:00:: 1 2 -front_room%1:06:00:: 1 4 -front_yard%1:06:00:: 1 1 -frontage%1:07:00:: 1 7 -frontal%5:00:01:anterior:00 1 1 -frontier%1:15:00:: 2 1 -frontier%1:25:00:: 1 5 -frontier%5:00:00:rural:00 1 2 -frontier_settlement%1:14:00:: 1 1 -frost%1:19:00:: 2 1 -frost%1:27:00:: 1 1 -frost%2:35:00:: 1 1 -frostbite%1:26:00:: 1 1 -frostbitten%5:00:00:frozen:00 1 2 -froth%1:17:00:: 1 1 -frothing%5:00:00:agitated:02 1 1 -frown%2:29:00:: 1 12 -frown_upon%2:31:00:: 1 1 -frowningly%4:02:00:: 1 1 -frowzled%5:00:00:untidy:00 1 1 -frozen%3:00:00:: 1 2 -frozen%5:00:00:cold:02 3 1 -frozen%5:00:00:nonmoving:00 2 2 -fruit%1:06:00:: 2 3 -fruit%1:11:00:: 3 1 -fruit%1:20:00:: 1 10 -fruit_tree%1:20:00:: 1 1 -fruitful%3:00:00:: 1 1 -fruitful%5:00:00:productive:00 2 1 -fruitfulness%1:07:00:: 1 1 -fruitless%5:00:00:unproductive:00 1 2 -frustrate%2:41:00:: 1 5 -frustrated%5:00:00:defeated:00 2 1 -frustrated%5:00:00:unsuccessful:00 1 2 -frustrating%5:00:00:discouraging:00 1 2 -frustration%1:04:02:: 2 1 -frustration%1:12:00:: 1 4 -fry%2:30:00:: 2 1 -fry%2:42:00:: 1 1 -fuck_up%2:41:00:: 1 2 -fuel%1:27:00:: 1 5 -fuel%2:40:00:: 1 2 -fueled%3:00:00:: 1 1 -fugal%3:01:00:: 1 1 -fugitive%1:18:01:: 1 1 -fulfil%2:34:00:: 2 1 -fulfil%2:36:00:: 1 3 -fulfill%2:34:00:: 3 3 -fulfill%2:36:00:: 1 10 -fulfill%2:42:00:: 2 3 -fulfillment%1:04:00:: 2 2 -fulfillment%1:12:00:: 1 3 -full%3:00:00:: 1 41 -full%3:00:01:: 5 1 -full%4:02:01:: 1 3 -full%5:00:00:ample:00 6 1 -full%5:00:00:complete:00 3 7 -full%5:00:00:nourished:00 4 2 -full%5:00:01:whole:00 2 32 -full-clad%5:00:00:complete:00 1 1 -full-grown%5:00:00:mature:01 1 2 -full-of-the-moon%1:28:00:: 1 1 -full-time%3:00:00:: 1 11 -full-time%4:02:00:: 1 2 -full_complement%1:14:00:: 1 1 -full_moon%1:28:00:: 1 2 -full_of_life%5:00:00:animated:00 1 1 -fullback%1:18:00:: 1 2 -fullback%2:33:00:: 1 1 -fullness%1:07:02:: 2 1 -fullness%1:26:01:: 1 1 -fully%4:02:02:: 1 29 -fully%4:02:03:: 3 1 -fully%4:02:04:: 2 2 -fulminate%2:32:00:: 1 1 -fumble%1:04:00:: 1 1 -fumble%2:35:00:: 1 4 -fumble%2:35:01:: 3 1 -fumble%2:38:00:: 2 1 -fumbling%5:00:00:unskilled:00 1 1 -fume%2:37:00:: 1 2 -fumed_oak%1:20:00:: 1 2 -fumes%1:27:00:: 1 2 -fun%1:04:00:: 1 9 -fun%1:04:01:: 3 1 -fun%1:10:00:: 2 3 -fun%5:00:00:entertaining:00 1 6 -function%1:04:00:: 3 7 -function%1:07:00:: 2 24 -function%1:24:00:: 1 43 -function%2:33:00:: 3 1 -function%2:35:00:: 1 9 -function%2:42:12:: 2 3 -functional%3:00:00:: 1 3 -functional%3:00:02:: 2 1 -functioning%1:04:00:: 1 3 -functioning%3:00:00:: 1 1 -fund%1:21:00:: 1 29 -fund%1:21:01:: 2 3 -fund-raising_drive%1:04:00:: 1 1 -fundamental%5:00:00:basic:00 2 7 -fundamental%5:00:00:important:00 1 10 -fundamental%5:00:00:significant:00 3 1 -fundamental_law%1:10:00:: 1 3 -fundamentalist%3:01:00:: 1 1 -fundamentally%4:02:00:: 1 5 -fundamentals%1:09:00:: 1 2 -funds%1:21:00:: 1 19 -funeral%1:11:00:: 1 8 -funeral_parlor%1:06:00:: 1 2 -fungal%3:01:00:: 1 1 -funnel%1:25:00:: 1 1 -funnel%2:35:00:: 1 1 -funny%4:02:01:: 1 1 -funny%5:00:00:humorous:00 1 14 -funny%5:00:00:questionable:00 3 4 -funny%5:00:00:strange:00 2 9 -funny_house%1:06:00:: 1 1 -funny_wagon%1:06:00:: 1 1 -fur%1:05:00:: 2 1 -fur%1:27:00:: 1 8 -fur-piece%1:06:00:: 1 1 -furious%5:00:00:angry:00 2 4 -furious%5:00:00:stormy:00 3 2 -furious%5:00:00:violent:00 1 7 -furiously%4:02:00:: 1 7 -furiously%4:02:02:: 2 2 -furl%2:30:00:: 1 1 -furlong%1:23:00:: 1 1 -furlough%1:28:00:: 1 1 -furlough%2:41:00:: 1 1 -furnace%1:06:00:: 1 1 -furnish%2:40:00:: 1 28 -furnish%2:40:01:: 2 3 -furnished%3:00:00:: 1 1 -furnishings%1:06:00:: 1 5 -furnishings%1:06:01:: 2 1 -furniture%1:06:00:: 1 11 -furor%1:09:00:: 1 2 -furrow%1:06:00:: 1 1 -furrow%2:35:00:: 1 1 -furry%5:00:00:hairy:00 1 1 -further%2:41:00:: 2 2 -further%2:41:01:: 1 7 -further%4:02:00:: 3 1 -further%4:02:02:: 1 33 -further%4:02:03:: 2 10 -further%5:00:00:added:00 1 40 -further%5:00:00:far:00 2 2 -furthermore%4:02:00:: 1 19 -furtive%5:00:00:concealed:00 1 1 -furtively%4:02:00:: 1 1 -fury%1:07:00:: 3 3 -fury%1:12:00:: 1 4 -fury%1:26:00:: 2 3 -fuse%1:06:01:: 1 1 -fuse%2:30:00:: 1 3 -fuse%2:30:03:: 2 1 -fusiform%5:00:00:pointed:00 1 1 -fusion%1:11:00:: 1 4 -fuss%1:26:00:: 1 1 -fuss%2:37:00:: 1 4 -fuss%2:41:00:: 2 1 -fussily%4:02:00:: 1 1 -fussy%5:00:00:ill-natured:00 1 1 -futile%5:00:00:unproductive:00 2 2 -futile%5:00:00:useless:00 1 2 -futility%1:07:00:: 1 5 -future%1:10:00:: 2 2 -future%1:28:00:: 1 46 -future%3:00:00:: 1 12 -future%5:00:00:incoming:00 4 3 -future%5:00:00:prospective:00 2 4 -future%5:00:00:subsequent:00 3 4 -future_day%5:00:00:future:00 1 1 -fuzz%1:20:00:: 1 1 -fuzzed%5:00:00:hairy:00 1 1 -fuzzy%5:00:00:hairy:00 1 2 -fuzzy%5:00:00:indistinct:00 2 1 -g%1:23:00:: 1 5 -gabardine%1:06:00:: 1 1 -gabble%2:32:00:: 1 1 -gabbling%5:00:00:voluble:00 1 1 -gable%1:06:00:: 1 1 -gadfly%1:18:00:: 1 2 -gadget%1:06:00:: 1 9 -gadgetry%1:06:00:: 1 1 -gaelic%3:01:00:: 1 1 -gag%1:10:00:: 1 6 -gag%2:39:00:: 1 1 -gag_line%1:10:00:: 1 1 -gage%1:06:00:: 1 1 -gage%1:06:01:: 2 1 -gagwriter%1:18:00:: 1 1 -gaiety%1:12:00:: 1 4 -gaily%4:02:00:: 1 2 -gain%1:07:01:: 3 2 -gain%1:07:02:: 2 2 -gain%1:21:00:: 4 1 -gain%1:23:00:: 1 6 -gain%2:30:00:: 6 2 -gain%2:30:01:: 7 2 -gain%2:33:00:: 5 2 -gain%2:38:00:: 4 5 -gain%2:40:00:: 8 1 -gain%2:40:01:: 2 13 -gain%2:40:02:: 3 7 -gain%2:40:03:: 1 27 -gainful%5:00:00:profitable:00 1 1 -gait%1:28:00:: 1 1 -gal%1:23:00:: 1 1 -galaxy%1:14:01:: 1 2 -gallant%1:18:01:: 1 1 -gallant%5:00:00:brave:00 1 1 -gallantry%1:07:00:: 1 1 -gallbladder%1:08:00:: 1 1 -galling%5:00:00:disagreeable:00 1 1 -gallon%1:23:01:: 1 2 -gallop%1:04:00:: 1 2 -gallop%2:38:00:: 1 8 -gallop%2:38:01:: 2 3 -galloping%3:44:00:: 1 1 -gallows%1:06:00:: 1 1 -gallus%1:06:00:: 1 1 -galvanic%3:01:00:: 1 1 -galvanism%1:19:00:: 1 1 -galvanizing%1:04:00:: 1 1 -gamble%2:41:00:: 1 2 -gambler%1:18:00:: 1 1 -gambling%1:04:00:: 1 4 -gambling_house%1:06:00:: 1 2 -game%1:04:00:: 1 38 -game%1:04:01:: 3 14 -game%1:04:03:: 2 26 -game%1:05:00:: 4 7 -game_bird%1:05:00:: 1 1 -gamecock%1:05:00:: 1 1 -gamin%1:18:00:: 1 1 -gaming_card%1:06:00:: 1 2 -gamma%1:10:00:: 1 1 -gamma_globulin%1:27:00:: 1 1 -gamut%1:07:00:: 1 2 -gang%1:14:00:: 3 1 -gang%1:14:01:: 1 7 -gang%1:14:02:: 2 2 -gang_up%2:33:00:: 1 2 -gangster%1:18:00:: 1 3 -gap%1:06:00:: 3 2 -gap%1:07:00:: 1 3 -gap%1:17:00:: 2 2 -gape%2:39:00:: 1 1 -gaping%5:00:00:open:08 1 3 -garage%1:06:00:: 1 12 -garage%2:40:00:: 1 2 -garb%1:06:00:: 1 1 -garbage%1:27:00:: 1 2 -garbage_can%1:06:00:: 1 1 -garbage_collector%1:18:00:: 1 1 -garbed%5:00:00:clothed:00 1 1 -garbled%5:00:00:incoherent:00 1 1 -garden%1:06:00:: 1 7 -garden%1:06:01:: 3 6 -garden%1:14:00:: 2 6 -garden%2:36:00:: 1 3 -garden_heliotrope%1:20:00:: 1 1 -gardener%1:18:00:: 1 3 -gardening%1:04:00:: 1 1 -garland%2:36:00:: 1 1 -garment%1:06:00:: 1 4 -garner%2:40:01:: 1 1 -garrison%1:06:00:: 1 2 -garrison%2:33:00:: 1 1 -garter_snake%1:05:00:: 1 2 -gas%1:06:00:: 5 1 -gas%1:26:00:: 1 15 -gas%1:26:01:: 4 1 -gas%1:27:00:: 2 13 -gas%1:27:02:: 3 7 -gas%2:33:00:: 1 1 -gas_chamber%1:06:00:: 1 2 -gas_gun%1:06:00:: 1 1 -gas_jet%1:06:00:: 1 3 -gas_lamp%1:06:00:: 1 1 -gas_stove%1:06:00:: 1 1 -gas_thermometer%1:06:00:: 1 1 -gas_up%2:40:00:: 1 1 -gaseous%3:00:00:: 1 1 -gash%2:35:00:: 1 1 -gasoline%1:27:00:: 1 1 -gasp%1:04:00:: 1 4 -gasp%2:29:00:: 1 9 -gaspingly%4:02:00:: 1 1 -gassing%1:04:00:: 2 1 -gassing%1:22:00:: 1 1 -gastrocnemius%1:08:00:: 1 4 -gastrointestinal%3:01:00:: 1 2 -gastronomy%1:13:01:: 1 1 -gate%1:06:00:: 1 18 -gate%1:06:01:: 2 1 -gatepost%1:06:00:: 1 2 -gateway%1:06:00:: 1 1 -gather%2:30:00:: 4 3 -gather%2:32:00:: 5 2 -gather%2:35:00:: 1 23 -gather%2:35:03:: 6 1 -gather%2:38:00:: 3 6 -gather%2:41:00:: 2 7 -gather_up%2:38:00:: 1 2 -gather_up%2:40:00:: 2 1 -gathered%5:00:00:concentrated:00 1 1 -gathering%1:04:00:: 2 3 -gathering%1:04:01:: 3 1 -gathering%1:14:00:: 1 3 -gathering%5:00:00:intensifying:00 1 1 -gauche%5:00:00:inelegant:00 1 1 -gaudy%5:00:00:colorful:03 2 1 -gaudy%5:00:00:tasteless:02 1 1 -gauge%1:06:00:: 1 1 -gauge%2:31:00:: 1 2 -gaunt%5:00:00:thin:03 1 9 -gauntleted%5:00:00:gloved:00 1 1 -gauss%1:23:00:: 1 2 -gaussian_shape%1:09:00:: 1 1 -gavotte%1:04:00:: 1 1 -gawk%2:39:00:: 1 1 -gay%5:00:00:cheerful:00 1 9 -gay%5:00:00:colorful:03 4 3 -gay%5:00:00:homosexual:00 6 1 -gay%5:00:00:indulgent:00 3 3 -gay%5:00:00:joyous:00 5 1 -gay%5:00:02:joyous:00 2 3 -gayly%4:02:00:: 1 1 -gaze%1:04:00:: 1 8 -gaze%2:39:00:: 1 25 -gear%1:06:00:: 1 1 -gear%2:30:00:: 1 3 -gearset%1:06:00:: 1 1 -gee%1:23:00:: 1 2 -gegenschein%1:19:00:: 1 1 -geiger_tube%1:06:00:: 1 1 -gelding%1:05:00:: 1 2 -gem%1:06:01:: 1 1 -gender%1:10:00:: 1 3 -general%1:18:00:: 1 40 -general%2:32:00:: 1 1 -general%3:00:00:: 1 87 -general%5:00:00:common:01 4 1 -general%5:00:00:national:01 3 1 -general%5:00:00:undiversified:00 2 3 -general-purpose%5:00:00:general:00 1 1 -general_agreement%1:26:00:: 1 1 -general_election%1:04:00:: 1 1 -general_manager%1:18:00:: 1 3 -generalist%1:18:00:: 1 3 -generalization%1:09:00:: 2 1 -generalization%1:09:01:: 1 2 -generalization%1:09:03:: 3 1 -generalize%2:32:01:: 1 6 -generalized%5:00:00:general:00 2 1 -generalized%5:00:00:unspecialized:00 1 4 -generally%4:02:00:: 3 2 -generally%4:02:01:: 2 11 -generally%4:02:02:: 1 37 -generate%2:29:00:: 4 1 -generate%2:36:00:: 1 14 -generate%2:36:01:: 3 1 -generate%2:36:02:: 2 3 -generation%1:14:00:: 2 7 -generation%1:14:01:: 1 8 -generation%1:28:00:: 3 6 -generator%1:06:00:: 2 1 -generator%1:06:01:: 1 4 -generosity%1:07:00:: 1 1 -generous%3:00:01:: 1 2 -generous%3:00:02:: 2 1 -generous%5:00:00:ample:00 3 1 -generously%4:02:00:: 1 1 -genesis%1:11:00:: 1 3 -genetic%5:00:00:inheritable:00 1 2 -geneticist%1:18:00:: 1 1 -genial%5:00:00:friendly:01 1 3 -genie%1:18:00:: 1 1 -genius%1:09:02:: 2 2 -genius%1:18:00:: 1 2 -genius%1:18:01:: 3 1 -genre%1:09:00:: 1 1 -gentian%1:20:00:: 1 1 -gentile%3:01:00:: 1 3 -gentle%2:37:00:: 1 1 -gentle%5:00:00:mild:00 1 6 -gentle%5:00:00:noble:02 4 1 -gentle%5:00:00:soft:04 3 2 -gentle%5:00:01:kind:00 2 4 -gentleman%1:18:00:: 1 9 -gentlemanly%5:00:00:refined:01 1 1 -gently%4:02:00:: 1 7 -gently%4:02:01:: 2 3 -gently%4:02:03:: 3 3 -gentry%1:14:00:: 1 1 -genuine%3:00:00:: 1 6 -genuine%5:00:00:sincere:00 2 4 -genuine%5:00:00:true:00 3 2 -genuinely%4:02:00:: 1 1 -genus%1:09:00:: 1 2 -genus%1:14:00:: 2 1 -geochemistry%1:09:00:: 1 1 -geographer%1:18:00:: 1 1 -geographic%3:01:00:: 1 1 -geographical%3:01:00:: 1 2 -geographical_area%1:15:00:: 1 1 -geographically%4:02:00:: 1 2 -geological%3:01:00:: 1 2 -geologist%1:18:00:: 1 2 -geology%1:09:00:: 1 1 -geometric%3:01:00:: 2 2 -geometric%5:00:00:nonrepresentational:00 1 9 -geometrical%3:01:00:: 1 1 -geometry%1:09:00:: 1 3 -george_washington%1:18:00:: 1 1 -georgia%1:15:00:: 1 17 -georgia%1:15:02:: 2 1 -georgian%1:18:00:: 1 1 -germ%1:09:00:: 1 1 -german%1:10:00:: 2 6 -german%1:18:00:: 1 7 -german%3:01:00:: 1 11 -german%3:01:01:: 2 2 -germanium%1:27:00:: 1 3 -germany%1:15:00:: 1 11 -germinal%5:00:00:original:00 1 1 -germinate%2:30:00:: 1 2 -gerundial%3:01:00:: 1 2 -gesticulate%2:32:00:: 1 4 -gesticulating%5:00:00:communicative:00 1 1 -gesture%1:04:00:: 1 20 -gesture%1:04:02:: 3 3 -gesture%1:10:00:: 2 4 -gesture%2:32:00:: 1 3 -get%2:29:00:: 13 4 -get%2:29:01:: 12 4 -get%2:30:00:: 2 157 -get%2:30:01:: 15 3 -get%2:30:02:: 3 82 -get%2:30:03:: 4 64 -get%2:31:03:: 20 1 -get%2:31:09:: 17 2 -get%2:32:00:: 10 7 -get%2:32:03:: 14 3 -get%2:32:08:: 16 2 -get%2:33:00:: 8 14 -get%2:35:00:: 18 1 -get%2:35:03:: 6 45 -get%2:35:09:: 11 4 -get%2:35:10:: 19 1 -get%2:38:00:: 5 58 -get%2:39:00:: 7 36 -get%2:40:00:: 1 235 -get%2:40:01:: 9 9 -get_a_look%2:39:00:: 1 3 -get_about%2:38:00:: 1 1 -get_across%2:31:00:: 2 1 -get_across%2:32:00:: 1 1 -get_ahead%2:33:00:: 1 4 -get_along%2:41:00:: 2 4 -get_along%2:42:00:: 1 4 -get_along_with%2:41:00:: 1 1 -get_around%2:32:00:: 1 4 -get_around%2:32:01:: 2 2 -get_around_to%2:41:00:: 1 4 -get_at%2:38:00:: 1 1 -get_away%2:32:00:: 2 4 -get_away%2:38:00:: 1 8 -get_away%2:41:00:: 3 1 -get_back%2:33:00:: 3 1 -get_back%2:33:01:: 2 4 -get_back%2:38:00:: 1 18 -get_behind%2:38:00:: 1 1 -get_by%2:32:00:: 3 1 -get_by%2:38:00:: 2 1 -get_by%2:41:00:: 1 3 -get_down%2:34:00:: 4 1 -get_down%2:38:00:: 2 1 -get_down%2:38:01:: 3 1 -get_down%2:38:02:: 1 3 -get_even%2:33:00:: 1 1 -get_going%2:38:00:: 1 2 -get_hold_of%2:35:00:: 1 1 -get_in%2:38:00:: 5 1 -get_in%2:38:01:: 1 13 -get_in%2:40:00:: 3 1 -get_in%2:40:01:: 4 1 -get_in%2:41:00:: 2 2 -get_in_touch%2:41:00:: 1 5 -get_into%2:29:00:: 5 1 -get_into%2:32:00:: 4 1 -get_into%2:38:00:: 2 7 -get_into%2:40:00:: 3 4 -get_into%2:42:00:: 1 11 -get_into_bed%2:29:00:: 1 1 -get_it%2:31:00:: 1 4 -get_it%2:41:00:: 2 1 -get_married%2:41:00:: 1 5 -get_off%2:32:00:: 5 1 -get_off%2:32:01:: 4 1 -get_off%2:32:05:: 3 1 -get_off%2:38:02:: 1 3 -get_off%2:41:00:: 2 1 -get_off_the_ground%2:38:00:: 1 2 -get_on%2:29:00:: 7 1 -get_on%2:30:00:: 6 1 -get_on%2:30:01:: 5 1 -get_on%2:38:00:: 3 1 -get_on%2:38:02:: 4 1 -get_on%2:38:03:: 2 1 -get_on%2:41:00:: 1 2 -get_onto%2:31:00:: 1 1 -get_out%2:32:01:: 4 2 -get_out%2:35:00:: 2 9 -get_out%2:38:00:: 3 3 -get_out%2:38:01:: 1 31 -get_over%2:30:00:: 3 1 -get_over%2:36:00:: 2 1 -get_over%2:38:00:: 1 4 -get_rid_of%2:30:00:: 2 3 -get_rid_of%2:40:01:: 1 7 -get_started%2:30:00:: 1 5 -get_the_best%2:33:02:: 1 1 -get_the_picture%2:31:00:: 1 1 -get_through%2:30:00:: 1 4 -get_through%2:38:00:: 3 1 -get_through%2:42:00:: 2 1 -get_to%2:30:00:: 2 3 -get_to%2:38:02:: 1 4 -get_together%2:41:00:: 3 1 -get_together%2:41:01:: 2 1 -get_together%2:41:03:: 1 1 -get_tough%2:41:00:: 1 1 -get_up%2:29:00:: 2 6 -get_up%2:29:01:: 4 3 -get_up%2:29:02:: 6 1 -get_up%2:29:03:: 5 1 -get_up%2:38:00:: 3 5 -get_up%2:38:01:: 1 15 -get_word%2:31:00:: 1 1 -get_worse%2:30:00:: 1 1 -geyser%2:38:00:: 1 1 -ghana%1:15:00:: 1 1 -ghastly%5:00:00:alarming:00 1 2 -ghetto%1:15:00:: 1 5 -ghost%1:09:00:: 1 4 -ghost%2:38:00:: 1 1 -ghostlike%5:00:00:supernatural:00 1 1 -ghostly%5:00:00:supernatural:00 1 1 -ghoul%1:18:00:: 2 1 -ghoul%1:18:01:: 1 3 -giant%1:05:00:: 1 6 -giant%1:14:00:: 3 2 -giant%1:18:01:: 2 2 -giant%5:00:00:large:00 1 9 -gibbet%1:06:00:: 1 1 -gibelike%5:00:00:disrespectful:00 1 1 -gibson_girl%1:18:00:: 1 2 -giddiness%1:07:00:: 1 1 -gift%1:04:00:: 3 2 -gift%1:09:00:: 2 4 -gift%1:21:00:: 1 8 -gift%2:41:00:: 1 1 -gift_horse%1:21:00:: 1 1 -gifted%5:00:00:precocious:00 1 3 -gig%1:06:02:: 1 1 -gigantic%5:00:01:large:00 1 9 -giggle%1:10:00:: 1 1 -giggle%2:29:00:: 1 4 -gild%2:36:00:: 1 1 -gilded%5:00:00:chromatic:00 1 2 -gilt%5:00:00:chromatic:00 1 2 -gingerly%4:02:00:: 1 1 -gingerly%5:00:00:cautious:00 1 1 -gingham%1:06:00:: 1 2 -ginkgo%1:20:00:: 1 1 -ginmill%1:06:00:: 1 2 -gird%2:33:00:: 1 1 -girl%1:18:00:: 1 80 -girl%1:18:01:: 4 6 -girl%1:18:02:: 2 57 -girl%1:18:03:: 5 5 -girl%1:18:04:: 3 8 -girlfriend%1:18:00:: 2 1 -girlfriend%1:18:01:: 1 1 -girlish%5:00:00:young:00 1 5 -girlishly%4:02:00:: 1 2 -girt%2:42:00:: 1 1 -give%1:07:00:: 1 1 -give%2:31:00:: 27 1 -give%2:31:02:: 10 18 -give%2:32:00:: 7 24 -give%2:32:01:: 5 32 -give%2:32:02:: 21 5 -give%2:32:03:: 18 8 -give%2:34:00:: 24 4 -give%2:36:00:: 11 16 -give%2:36:01:: 13 14 -give%2:36:02:: 6 29 -give%2:36:03:: 9 18 -give%2:38:00:: 23 4 -give%2:38:13:: 26 1 -give%2:40:00:: 3 96 -give%2:40:01:: 8 20 -give%2:40:02:: 14 12 -give%2:40:03:: 1 179 -give%2:40:05:: 2 160 -give%2:40:06:: 17 10 -give%2:40:07:: 4 78 -give%2:40:08:: 25 3 -give%2:40:09:: 12 14 -give%2:40:10:: 16 10 -give%2:40:11:: 22 4 -give%2:40:13:: 19 5 -give%2:40:14:: 20 5 -give%2:41:00:: 15 10 -give_and_take%2:32:00:: 1 1 -give_away%2:32:00:: 2 3 -give_away%2:40:00:: 1 3 -give_birth%2:29:00:: 1 2 -give_birth%2:36:00:: 2 1 -give_ear%2:39:00:: 1 1 -give_forth%2:29:00:: 1 1 -give_in%2:32:01:: 2 1 -give_in%2:32:02:: 1 5 -give_it_a_whirl%2:41:00:: 1 1 -give_off%2:42:00:: 1 2 -give_or_take%4:02:00:: 1 1 -give_out%2:40:00:: 2 1 -give_out%2:43:00:: 1 1 -give_rise%2:36:01:: 1 9 -give_thanks%2:32:04:: 1 1 -give_up%2:31:00:: 10 2 -give_up%2:33:00:: 3 5 -give_up%2:33:01:: 9 2 -give_up%2:34:00:: 12 1 -give_up%2:40:00:: 2 5 -give_up%2:40:01:: 8 2 -give_up%2:40:02:: 1 9 -give_up%2:40:03:: 6 3 -give_up%2:40:05:: 5 3 -give_up%2:41:00:: 11 1 -give_up%2:41:05:: 7 2 -give_up%2:42:00:: 4 3 -give_vent%2:32:00:: 1 6 -give_way%2:30:01:: 3 1 -give_way%2:38:00:: 1 7 -give_way%2:38:01:: 2 1 -giveaway%1:21:00:: 1 1 -given%1:09:00:: 1 1 -given%5:00:00:acknowledged:00 2 5 -given%5:00:00:inclined(p):02 4 2 -given%5:00:00:specified:00 1 25 -givenness%1:07:00:: 1 1 -giver%1:18:01:: 1 1 -giving%1:04:00:: 1 1 -giving_up%1:10:00:: 1 1 -glacier%1:17:00:: 1 1 -glad%3:00:00:: 1 11 -glad%5:00:00:grateful:00 3 1 -glad%5:00:00:willing:00 2 1 -gladiator%1:18:00:: 1 1 -glamor%1:07:00:: 1 1 -glamorous%5:00:00:exciting:00 1 1 -glance%1:04:00:: 1 31 -glance%2:38:00:: 2 1 -glance%2:39:00:: 1 34 -gland%1:08:00:: 1 6 -glanders%1:26:00:: 1 1 -glare%1:04:00:: 2 1 -glare%1:07:00:: 1 5 -glare%2:29:00:: 1 9 -glaring%5:00:00:bright:00 1 3 -glaring%5:00:00:conspicuous:00 2 1 -glass%1:06:00:: 2 12 -glass%1:06:03:: 4 1 -glass%1:23:00:: 3 4 -glass%1:27:00:: 1 22 -glasses%1:06:00:: 1 4 -glassless%3:00:00:: 1 1 -glassy%5:00:00:empty:00 2 1 -glassy%5:00:00:smooth:00 1 1 -glaucoma%1:26:00:: 1 1 -glaze%2:30:00:: 2 1 -glaze%2:35:00:: 1 6 -glazed%5:00:00:empty:00 1 1 -gleam%1:07:00:: 1 3 -gleam%1:11:00:: 2 2 -gleam%2:30:00:: 3 1 -gleam%2:39:00:: 2 3 -gleam%2:39:01:: 1 3 -gleaming%1:07:00:: 2 1 -gleaming%1:11:00:: 1 1 -gleaming%5:00:00:bright:00 1 3 -glean%2:35:00:: 1 2 -glee%1:12:00:: 1 3 -gleeful%5:00:00:joyous:00 1 3 -glibly%4:02:00:: 1 2 -glibness%1:07:00:: 1 1 -glide%2:38:00:: 1 3 -glide-bomb%2:33:00:: 1 1 -glimmer%1:11:00:: 1 1 -glimpse%1:04:00:: 1 6 -glimpse%1:09:00:: 2 1 -glimpse%2:39:00:: 1 5 -glint%1:11:00:: 1 1 -glint%2:39:00:: 1 4 -glint%2:39:02:: 2 1 -glinting%5:00:00:bright:00 1 4 -glisten%2:39:00:: 1 3 -glistening%5:00:00:bright:00 1 2 -glitter%1:07:00:: 1 2 -glitter%2:39:00:: 1 4 -glittering%5:00:00:bright:00 1 6 -gloat%2:32:00:: 1 1 -global%5:00:00:international:00 1 1 -globe%1:17:00:: 1 5 -globulin%1:27:00:: 1 3 -glom%2:40:00:: 1 1 -glomerular%3:01:00:: 1 2 -gloom%1:12:00:: 2 1 -gloom%1:26:01:: 1 10 -gloomily%4:02:00:: 1 2 -gloomy%5:00:00:cheerless:00 2 1 -gloomy%5:00:00:dark:01 3 1 -gloomy%5:00:00:hopeless:00 1 1 -glorified%5:00:00:authorized:00 1 1 -glorify%2:30:00:: 2 1 -glorify%2:32:00:: 1 4 -glorious%3:00:00:: 1 5 -glorious%5:00:00:blessed:00 3 1 -glorious%5:00:00:proud:00 2 1 -gloriously%4:02:01:: 1 1 -glory%1:07:00:: 2 6 -glory%1:26:00:: 1 9 -glory%2:32:00:: 1 1 -gloss_over%2:41:00:: 1 1 -glossary%1:10:00:: 1 3 -glottal_catch%1:10:00:: 1 1 -glottochronological%3:01:00:: 1 3 -glottochronology%1:09:00:: 1 1 -glove%1:06:01:: 1 6 -gloved%3:00:00:: 1 1 -gloves%1:06:00:: 1 3 -glow%1:07:00:: 2 3 -glow%1:12:00:: 4 1 -glow%1:19:00:: 3 1 -glow%1:26:00:: 1 3 -glow%2:37:01:: 4 1 -glow%2:39:00:: 1 5 -glow%2:39:01:: 2 4 -glow%2:43:00:: 3 2 -glower%2:29:01:: 1 4 -glowering%5:00:00:ill-natured:00 1 1 -glowing%5:00:00:bright:00 1 4 -glowing%5:00:00:enthusiastic:00 2 1 -glue%1:27:00:: 1 1 -glue%2:30:00:: 2 2 -glue%2:35:00:: 1 15 -glued%5:00:00:affixed:00 1 2 -glum%5:00:00:dejected:00 1 1 -glut%2:34:00:: 1 1 -glutamic_oxaloacetic_transaminase%1:27:00:: 1 1 -glutton%1:18:00:: 1 1 -glycerine%1:27:00:: 1 4 -glycerol%1:27:00:: 1 2 -glycerolize%2:38:00:: 1 1 -gm%1:23:00:: 1 10 -gnash%2:29:00:: 1 2 -gnaw%2:30:00:: 2 1 -gnaw%2:35:00:: 1 2 -gnaw_at%2:30:00:: 1 1 -gnome%1:18:00:: 1 1 -gnp%1:21:00:: 1 8 -go%2:30:00:: 17 2 -go%2:30:01:: 8 10 -go%2:30:02:: 14 3 -go%2:30:04:: 4 29 -go%2:30:08:: 9 9 -go%2:33:00:: 21 1 -go%2:34:00:: 13 3 -go%2:35:00:: 12 3 -go%2:38:00:: 1 343 -go%2:38:01:: 3 49 -go%2:38:09:: 20 1 -go%2:39:00:: 11 3 -go%2:41:00:: 2 95 -go%2:42:00:: 7 10 -go%2:42:02:: 6 10 -go%2:42:03:: 16 2 -go%2:42:04:: 18 1 -go%2:42:06:: 5 14 -go%2:42:07:: 10 7 -go%2:42:10:: 19 1 -go%2:42:14:: 15 2 -go_a_long_way%2:42:00:: 1 1 -go_about%2:41:00:: 1 5 -go_after%2:35:00:: 2 1 -go_after%2:38:01:: 1 7 -go_against%2:42:00:: 1 2 -go_ahead%2:32:00:: 1 6 -go_all_out%2:41:00:: 1 1 -go_along%2:38:02:: 3 1 -go_along%2:41:00:: 1 4 -go_along%2:42:00:: 2 3 -go_around%2:32:00:: 2 1 -go_around%2:42:00:: 1 1 -go_away%2:38:00:: 2 3 -go_away%2:38:05:: 1 4 -go_back%2:32:00:: 3 4 -go_back%2:38:00:: 1 37 -go_back%2:42:00:: 2 4 -go_by%2:32:00:: 3 1 -go_by%2:38:00:: 1 6 -go_by%2:38:01:: 2 6 -go_deep%2:42:00:: 1 1 -go_down%2:30:00:: 3 3 -go_down%2:33:00:: 6 1 -go_down%2:34:00:: 5 1 -go_down%2:38:00:: 2 5 -go_down%2:38:02:: 1 11 -go_down%2:42:00:: 4 2 -go_far%2:41:00:: 1 2 -go_far%2:42:00:: 2 1 -go_for%2:31:00:: 3 1 -go_for%2:32:00:: 2 1 -go_for%2:42:00:: 1 1 -go_forward%2:38:00:: 1 6 -go_home%2:38:00:: 1 21 -go_in%2:38:00:: 1 10 -go_in%2:42:00:: 2 2 -go_into%2:38:00:: 1 39 -go_into%2:42:00:: 2 3 -go_off%2:30:00:: 2 3 -go_off%2:33:00:: 3 1 -go_off%2:38:00:: 1 4 -go_on%2:30:00:: 2 24 -go_on%2:32:00:: 4 17 -go_on%2:35:00:: 5 3 -go_on%2:38:00:: 3 23 -go_on%2:42:00:: 1 44 -go_out%2:30:00:: 4 2 -go_out%2:38:00:: 1 21 -go_out%2:38:01:: 3 3 -go_out%2:38:02:: 2 10 -go_out%2:41:00:: 6 1 -go_out%2:42:00:: 5 1 -go_over%2:29:00:: 4 1 -go_over%2:30:00:: 2 2 -go_over%2:31:00:: 1 5 -go_over%2:31:01:: 3 1 -go_past%2:38:00:: 1 2 -go_steady%2:41:00:: 1 1 -go_through%2:34:01:: 2 2 -go_through%2:39:00:: 1 8 -go_through%2:41:00:: 3 1 -go_to%2:32:00:: 3 3 -go_to%2:38:00:: 1 67 -go_to%2:42:00:: 2 31 -go_to_bed%2:29:00:: 1 4 -go_to_pieces%2:37:00:: 1 1 -go_to_sleep%2:29:01:: 1 3 -go_to_war%2:33:00:: 1 1 -go_under%2:38:00:: 1 1 -go_up%2:30:00:: 2 7 -go_up%2:30:04:: 6 1 -go_up%2:38:00:: 1 19 -go_up%2:38:01:: 5 2 -go_up%2:38:02:: 4 2 -go_up%2:38:03:: 3 4 -go_with%2:42:00:: 3 1 -go_with%2:42:01:: 1 10 -go_with%2:42:02:: 2 1 -go_wrong%2:41:00:: 1 12 -goad%1:06:00:: 1 1 -goad%2:35:00:: 2 1 -goad%2:37:00:: 1 1 -goal%1:09:00:: 1 34 -goal%1:15:00:: 2 1 -goat%1:05:00:: 1 6 -gobble%2:32:00:: 2 1 -gobble%2:34:00:: 1 2 -god%1:18:00:: 1 90 -god%1:18:01:: 2 26 -god_knows_how%4:02:00:: 1 1 -goddam%5:00:00:cursed:00 1 3 -goddamn%5:00:00:cursed:00 1 4 -goddamned%5:00:02:cursed:00 1 3 -goddess%1:18:00:: 1 2 -godforsaken%5:00:00:inhospitable:00 1 1 -godless%5:00:00:impious:00 1 1 -godlike%5:00:00:superhuman:00 1 1 -going%1:04:01:: 1 1 -going%5:00:00:active:06 1 1 -going-over%1:04:00:: 1 1 -going_away%1:04:00:: 1 1 -goitre%1:26:00:: 1 3 -goitrogen%1:27:00:: 1 4 -gold%1:07:00:: 2 8 -gold%1:21:00:: 1 8 -gold%1:27:00:: 3 2 -gold%5:00:00:chromatic:00 2 2 -gold%5:00:00:metallic:00 1 2 -gold_leaf%1:06:00:: 1 1 -golden%5:00:00:chromatic:00 1 6 -golden%5:00:00:happy:00 2 2 -golden%5:00:00:metallic:00 3 1 -golden_glow%1:20:00:: 1 1 -goldsmith%1:18:00:: 1 1 -golf%1:04:00:: 1 9 -golf_widow%1:18:00:: 1 1 -golfer%1:18:00:: 1 2 -golfing%1:04:00:: 1 1 -gone%5:00:00:absent:00 1 12 -gone%5:00:00:dead:01 3 3 -gone%5:00:00:destroyed:00 2 5 -gone%5:00:00:exhausted:00 4 2 -gone%5:00:00:lost:01 6 1 -gone%5:00:00:past:00 5 1 -goner%1:18:00:: 1 2 -good%1:07:00:: 1 11 -good%1:07:01:: 2 9 -good%1:07:02:: 3 6 -good%3:00:01:: 1 190 -good%3:00:02:: 3 12 -good%3:00:04:: 12 1 -good%4:02:00:: 1 9 -good%4:02:01:: 2 4 -good%5:00:00:advantageous:00 5 5 -good%5:00:00:ample:00 2 22 -good%5:00:00:best:00 17 1 -good%5:00:00:close:02 11 2 -good%5:00:00:complete:00 10 2 -good%5:00:00:fortunate:00 15 1 -good%5:00:00:nice:00 7 4 -good%5:00:00:operative:00 16 1 -good%5:00:00:opportune:00 14 1 -good%5:00:00:reputable:00 4 10 -good%5:00:00:righteous:00 8 3 -good%5:00:00:skilled:00 9 2 -good%5:00:00:superior:02 6 4 -good%5:00:01:sound:00 13 1 -good-bye%1:10:00:: 1 4 -good-looking%5:00:00:beautiful:00 1 1 -good-natured%3:00:00:: 1 1 -good_condition%1:26:00:: 1 1 -good_deal%1:23:00:: 1 13 -good_enough%5:00:00:good:01 1 2 -good_example%1:09:00:: 1 1 -good_faith%1:07:00:: 1 1 -good_for_you%5:00:00:wholesome:00 1 1 -good_fortune%1:26:00:: 1 3 -good_friday%1:28:00:: 1 2 -good_guy%1:18:00:: 1 1 -good_health%1:26:00:: 1 2 -good_humor%1:12:00:: 1 3 -good_looks%1:07:00:: 1 2 -good_luck%1:26:00:: 1 3 -good_nature%1:07:00:: 1 1 -good_night%1:10:00:: 1 3 -good_part%1:07:00:: 1 1 -good_person%1:18:00:: 1 1 -good_will%1:07:00:: 1 5 -good_will%1:21:00:: 2 1 -goodness%1:07:02:: 1 7 -goods%1:06:00:: 1 13 -goof%2:41:00:: 1 1 -goose%1:05:00:: 1 3 -goose_bumps%1:26:00:: 1 1 -gop%1:14:00:: 1 1 -gore%2:35:02:: 1 1 -gorge%2:34:00:: 1 1 -gorgeous%5:00:00:beautiful:00 1 1 -gory%5:00:01:bloody:00 1 1 -gospel%1:10:00:: 1 7 -gospel%1:10:02:: 2 1 -gospeler%1:18:00:: 1 1 -gospels%1:10:00:: 1 2 -gossamer%5:00:00:delicate:00 1 1 -gossip%1:10:00:: 1 3 -gossip%1:10:01:: 2 2 -gothic_romancer%1:18:00:: 1 1 -gouge%2:35:00:: 1 3 -gouge%2:35:01:: 3 2 -gouge%2:40:00:: 2 2 -gourd%1:06:00:: 1 1 -gourmet%1:18:00:: 1 2 -gout%1:26:00:: 1 1 -govern%2:41:00:: 3 3 -govern%2:41:01:: 2 8 -govern%2:41:02:: 1 11 -governed%1:14:00:: 1 4 -governess%1:18:00:: 1 1 -governing%5:00:00:dominant:01 1 2 -government%1:04:00:: 2 7 -government%1:09:00:: 3 1 -government%1:14:00:: 1 100 -government_office%1:06:00:: 1 3 -governmental%3:01:00:: 1 9 -governor%1:18:00:: 1 9 -governor's_race%1:11:00:: 1 1 -gown%1:06:00:: 1 5 -gowned%5:00:00:clothed:00 1 1 -grab%2:35:00:: 1 27 -grab%2:38:02:: 3 1 -grab%2:40:00:: 2 4 -grab_sample%1:09:00:: 1 2 -grace%1:07:00:: 3 2 -grace%1:07:01:: 2 4 -grace%1:07:03:: 4 1 -grace%1:26:00:: 1 4 -grace%2:36:00:: 1 1 -graceful%3:00:00:: 1 2 -gracefully%4:02:00:: 1 3 -gracious%3:00:00:: 1 1 -gracious%5:00:00:good:02 2 1 -graciously%4:02:00:: 1 1 -grade%1:07:01:: 3 1 -grade%1:14:00:: 1 17 -grade%1:26:00:: 2 5 -grade%2:31:03:: 1 1 -grade-constructed%5:00:00:surface:00 1 1 -grade_school%1:14:00:: 1 1 -graded%5:00:00:hierarchical:00 1 1 -gradient%1:24:00:: 1 15 -grading%1:04:00:: 1 1 -gradual%3:00:01:: 1 7 -gradually%4:02:00:: 1 23 -graduate%1:18:00:: 1 6 -graduate%2:40:00:: 1 7 -graduate%2:40:01:: 2 3 -graduate%5:00:00:high:02 1 3 -graduate_school%1:14:00:: 1 1 -graduate_student%1:18:00:: 1 1 -graduated%5:00:01:progressive:02 1 1 -graduating_class%1:14:00:: 1 2 -graduation%1:04:01:: 1 6 -grain%1:13:00:: 2 1 -grain%1:17:00:: 1 2 -graining%1:07:00:: 1 1 -gram%1:23:00:: 1 27 -gram-negative%3:00:00:: 1 1 -grammarian%1:18:00:: 1 1 -grammatic%3:01:00:: 1 5 -grammatical%3:01:00:: 1 4 -grammatically%4:02:00:: 1 1 -granary%1:06:00:: 1 1 -grand%5:00:00:impressive:00 1 6 -grand%5:00:00:noble:02 2 1 -grand_jury%1:14:00:: 1 4 -grandchild%1:18:00:: 1 1 -grandeur%1:07:01:: 1 3 -grandeur%1:07:02:: 2 1 -grandfather%1:18:00:: 1 4 -grandfather_clause%1:26:00:: 1 2 -grandiose%5:00:00:impressive:00 1 1 -grandly%4:02:00:: 1 1 -grandma%1:18:00:: 1 2 -grandmother%1:18:00:: 1 8 -grandparent%1:18:00:: 1 1 -granite%1:07:00:: 2 1 -granite%1:27:00:: 1 1 -granny%1:18:00:: 1 3 -grant%1:04:00:: 2 5 -grant%1:21:00:: 1 5 -grant%1:21:02:: 3 3 -grant%2:32:00:: 3 5 -grant%2:40:00:: 4 3 -grant%2:40:01:: 1 14 -grant%2:40:03:: 2 9 -grant%2:40:05:: 5 2 -grant-in-aid%1:04:00:: 1 1 -granted%5:00:00:acknowledged:00 1 4 -granted%5:00:00:given:00 2 1 -granular%5:00:00:coarse:00 1 3 -granule%1:17:00:: 1 1 -granulocytic%3:01:00:: 1 1 -granville_wilt%1:26:00:: 1 1 -grape%1:13:00:: 1 2 -grape_arbor%1:06:00:: 1 3 -grapevine%1:10:00:: 1 3 -graph%1:10:00:: 1 15 -graph%2:36:00:: 1 1 -graphic%5:00:00:explicit:00 2 1 -graphic%5:00:00:written:00 1 2 -graphical%3:01:00:: 1 1 -graphically%4:02:03:: 1 1 -graphite%1:27:00:: 1 5 -grapple%2:35:01:: 2 2 -grapple%2:41:00:: 1 3 -grappling%1:04:00:: 1 2 -grasp%2:31:00:: 2 8 -grasp%2:35:00:: 1 15 -grasping%1:09:00:: 1 1 -grass%1:20:00:: 1 41 -grass%2:33:00:: 1 1 -grassfire%1:11:00:: 1 1 -grasshopper%1:05:00:: 1 4 -grassroots%5:00:00:basic:00 1 1 -grate%1:06:00:: 1 1 -grateful%3:00:00:: 1 10 -gratification%1:04:00:: 2 1 -gratification%1:26:00:: 1 3 -gratified%5:00:00:pleased:00 1 1 -gratify%2:37:00:: 1 2 -gratifying%5:00:00:rewarding:00 1 1 -gratifyingly%4:02:00:: 1 1 -grating%1:06:00:: 1 2 -gratitude%1:12:00:: 1 2 -gratuitous%5:00:00:unmerited:00 1 1 -gratuitously%4:02:00:: 1 1 -grave%1:06:00:: 2 5 -grave%1:28:00:: 1 5 -grave%5:00:00:critical:03 2 3 -grave%5:00:00:serious:00 1 4 -gravel%1:27:00:: 1 3 -gravel%5:00:00:cacophonous:00 2 1 -gravel%5:00:00:unpaved:00 1 1 -gravely%4:02:00:: 1 4 -graven_image%1:06:00:: 1 1 -gravestone%1:06:00:: 1 1 -graveyard%1:15:00:: 1 3 -gravid%5:00:00:pregnant:00 1 2 -gravitational%3:01:00:: 1 1 -gravitational_attraction%1:19:00:: 1 1 -gravitational_field%1:19:00:: 1 1 -gravitational_force%1:19:00:: 1 1 -gravity%1:07:00:: 2 1 -gravity%1:19:00:: 1 2 -gravy%1:21:00:: 1 1 -gray%1:05:00:: 4 1 -gray%1:06:00:: 2 3 -gray%1:07:00:: 1 6 -gray%1:14:00:: 3 1 -gray%5:00:00:achromatic:00 1 38 -gray%5:00:00:cloudy:00 3 4 -gray%5:00:00:old:02 2 6 -gray%5:00:00:southern:02 4 3 -gray-haired%5:00:00:old:02 1 2 -grayback%1:18:00:: 1 1 -graybeard%1:18:00:: 1 1 -grayed%5:00:00:colorless:02 1 1 -graze%2:35:01:: 1 3 -graze%2:35:02:: 2 2 -grease%1:27:00:: 1 4 -grease%2:35:00:: 1 1 -greasy%5:00:00:fatty:00 1 7 -great%5:00:00:good:01 6 7 -great%5:00:00:high:02 2 89 -great%5:00:00:major:06 4 26 -great%5:00:01:extraordinary:00 5 18 -great%5:00:01:important:00 3 38 -great%5:00:01:large:00 1 114 -great-niece%1:18:00:: 1 1 -great_britain%1:15:00:: 2 1 -great_britain%1:15:01:: 1 1 -great_deal%1:23:00:: 1 10 -great_depression%1:26:00:: 1 1 -great_grandmother%1:18:00:: 1 1 -great_power%1:14:00:: 1 2 -greatcoat%1:06:00:: 1 5 -greater%3:00:00:: 1 46 -greatest%5:00:00:best:00 3 4 -greatest%5:00:00:large:00 2 7 -greatest%5:00:00:maximal:00 1 15 -greatest%5:00:00:superior:01 4 3 -greatest%5:00:00:superior:02 5 1 -greatly%4:02:00:: 1 23 -greatness%1:07:00:: 1 4 -grecian%3:01:00:: 1 1 -greece%1:15:00:: 1 5 -greed%1:07:00:: 1 1 -greedily%4:02:00:: 1 2 -greedy%5:00:00:acquisitive:00 1 1 -greek%1:10:00:: 1 6 -greek%1:18:00:: 2 4 -greek%3:01:01:: 1 18 -greek_chorus%1:14:00:: 1 1 -green%1:07:00:: 1 6 -green%1:15:01:: 2 1 -green%5:00:00:chromatic:00 1 26 -green%5:00:00:inexperienced:00 3 2 -green%5:00:00:unseasoned:00 2 2 -green_algae%1:05:00:: 1 1 -green_bean%1:13:00:: 1 1 -greenhouse%1:06:00:: 1 1 -greening%3:44:00:: 1 1 -greenland%1:15:00:: 1 2 -greenly%4:02:00:: 1 1 -greenness%1:07:02:: 1 1 -greenroom%1:06:00:: 1 1 -greens%1:13:00:: 1 1 -greenwich_time%1:28:00:: 1 2 -greenwich_village%1:15:00:: 1 1 -greet%2:31:00:: 3 3 -greet%2:32:00:: 1 12 -greet%2:32:01:: 2 4 -greet%2:39:00:: 4 1 -greeting%1:10:00:: 1 5 -gregarious%3:00:00:: 1 1 -gregarious%5:00:00:social:00 2 1 -grenade%1:06:00:: 1 5 -grey%5:00:00:achromatic:00 1 1 -grief%1:12:00:: 1 5 -grief-stricken%5:00:00:sorrowful:00 1 1 -grievance%1:10:00:: 3 1 -grievance%1:10:01:: 2 1 -grievance%1:12:00:: 1 1 -grieve%2:37:00:: 1 1 -grievous%5:00:00:critical:03 1 1 -grill%1:06:01:: 1 2 -grill%2:30:00:: 1 1 -grille%1:06:02:: 1 1 -grim%5:00:00:alarming:00 2 7 -grim%5:00:00:cheerless:00 4 3 -grim%5:00:00:implacable:00 1 8 -grim%5:00:00:sarcastic:00 3 3 -grim%5:00:01:unpleasant:00 5 1 -grimace%2:29:00:: 1 2 -grimly%4:02:00:: 1 5 -grimy%5:00:00:dirty:01 1 4 -grin%1:10:00:: 1 6 -grin%2:29:00:: 1 18 -grind%2:30:00:: 5 1 -grind%2:35:00:: 2 3 -grind%2:35:02:: 1 4 -grind%2:38:00:: 4 1 -grind%2:41:00:: 3 1 -grind_out%2:36:00:: 1 1 -grinding%1:11:00:: 2 1 -grinding%1:17:00:: 1 1 -grinning%1:10:00:: 1 2 -grip%1:04:00:: 1 7 -grip%1:06:00:: 3 1 -grip%1:06:01:: 2 1 -grip%2:35:00:: 1 10 -grip%2:35:01:: 4 1 -grip%2:35:03:: 2 3 -grip%2:37:00:: 3 2 -gripe%1:10:00:: 1 1 -gristmill%1:06:00:: 1 1 -gritty%5:00:00:coarse:00 1 1 -grizzled%5:00:00:brunet:00 1 1 -groan%1:10:00:: 1 2 -groan%2:32:00:: 1 7 -grocer%1:18:00:: 1 5 -grocery%1:06:00:: 1 1 -grocery_store%1:06:00:: 1 2 -groggy%5:00:00:lethargic:00 1 1 -groin%1:08:00:: 1 1 -groom%1:18:02:: 1 1 -groom%2:29:03:: 2 1 -groom%2:41:00:: 1 1 -groomed%3:00:00:: 1 1 -groove%1:04:00:: 2 1 -groove%1:25:00:: 1 1 -grooved%5:00:00:established:00 1 1 -grope%2:35:01:: 1 6 -grope%2:41:00:: 2 1 -grope_for%2:35:00:: 1 1 -gross%3:00:00:: 1 8 -gross%5:00:00:fat:01 4 1 -gross%5:00:00:general:00 3 1 -gross%5:00:00:macroscopic:00 2 2 -gross_national_product%1:21:00:: 1 1 -grossly%4:02:00:: 1 1 -grotesque%1:06:00:: 1 1 -grotesque%5:00:00:strange:00 2 3 -grotesque%5:00:00:ugly:00 1 4 -grotesquely%4:02:00:: 1 1 -ground%1:09:00:: 6 1 -ground%1:15:00:: 5 1 -ground%1:16:00:: 2 11 -ground%1:17:00:: 1 86 -ground%1:24:00:: 4 1 -ground%1:27:00:: 3 7 -ground%2:32:00:: 4 1 -ground%2:35:00:: 3 1 -ground%2:35:01:: 2 1 -ground%2:35:08:: 1 2 -ground_floor%1:06:00:: 1 4 -ground_glass%1:27:00:: 1 1 -ground_level%1:07:00:: 1 2 -ground_out%2:35:00:: 1 1 -ground_water%1:27:00:: 1 1 -grounder%1:04:00:: 1 1 -groundless%5:00:00:unsupported:02 1 1 -grounds%1:06:00:: 2 5 -grounds%1:09:00:: 1 6 -grounds%1:10:00:: 4 1 -grounds%1:15:00:: 3 2 -groundwork%1:09:00:: 1 1 -group%1:03:00:: 1 1345 -group%1:27:00:: 2 1 -group%2:31:00:: 1 4 -group%2:33:00:: 2 1 -group%5:00:00:common:02 1 1 -group_action%1:04:00:: 1 1 -group_participation%1:04:00:: 1 1 -grouping%1:03:00:: 1 5 -grouping%1:04:00:: 2 1 -grove%1:06:00:: 2 2 -grove%1:14:00:: 1 6 -grovel%2:38:00:: 1 2 -grow%2:29:00:: 8 3 -grow%2:30:00:: 2 62 -grow%2:30:01:: 4 12 -grow%2:30:02:: 3 32 -grow%2:30:03:: 1 70 -grow%2:30:04:: 5 8 -grow%2:30:10:: 9 2 -grow%2:36:00:: 7 3 -grow%2:42:00:: 6 7 -grow_into%2:30:00:: 1 1 -grow_up%2:41:00:: 1 17 -grower%1:18:00:: 1 1 -growing%1:22:00:: 1 3 -growing%5:00:00:healthy:00 2 2 -growing%5:00:00:increasing:00 1 21 -growing_season%1:28:00:: 1 1 -growl%1:11:00:: 1 1 -growl%2:32:00:: 1 4 -growling%1:10:00:: 1 1 -grown%5:00:00:mature:01 1 2 -grownup%1:18:01:: 1 4 -growth%1:11:01:: 5 1 -growth%1:14:00:: 4 3 -growth%1:22:00:: 1 37 -growth%1:22:01:: 2 20 -growth%1:22:02:: 3 3 -growth_rate%1:28:00:: 1 1 -grub%1:05:00:: 2 1 -grub%1:13:00:: 1 1 -grudge%1:12:00:: 1 3 -grudgingly%4:02:00:: 1 1 -gruesome%5:00:00:alarming:00 1 2 -gruff%5:00:00:cacophonous:00 2 1 -gruff%5:00:00:ill-natured:00 1 1 -grumble%1:11:00:: 1 1 -grumble%2:32:00:: 2 3 -grumble%2:32:01:: 1 5 -grumble%2:32:02:: 3 1 -grumbling%1:10:00:: 2 1 -grumbling%1:11:00:: 1 1 -grumbling%5:00:00:complaining(a):00 2 1 -grunt%1:11:00:: 1 2 -grunt%2:32:00:: 1 11 -grunting%5:00:00:inarticulate:00 1 1 -guam%1:15:00:: 1 10 -guarantee%1:10:00:: 1 2 -guarantee%1:10:01:: 2 1 -guarantee%2:32:00:: 1 8 -guarantee%2:32:01:: 3 2 -guarantee%2:32:02:: 4 1 -guarantee%2:32:03:: 2 2 -guard%1:06:00:: 3 2 -guard%1:07:00:: 4 1 -guard%1:18:01:: 2 2 -guard%1:18:03:: 1 15 -guard%2:33:00:: 2 6 -guard%2:33:03:: 3 2 -guard%2:41:00:: 1 6 -guard_duty%1:04:00:: 1 1 -guardian%1:18:00:: 1 4 -guarding%1:04:00:: 1 1 -guatemala%1:15:00:: 1 1 -guatemalan%3:01:00:: 1 1 -gubernatorial%3:01:00:: 1 1 -guerrilla%1:18:00:: 1 3 -guerrilla%5:00:00:partisan:00 1 2 -guess%1:09:00:: 2 1 -guess%1:10:00:: 1 2 -guess%2:31:00:: 1 42 -guess%2:31:01:: 3 6 -guess%2:31:02:: 4 6 -guess%2:32:00:: 2 10 -guessing%1:09:00:: 1 1 -guest%1:18:00:: 1 26 -guidance%1:04:00:: 3 1 -guidance%1:04:01:: 2 4 -guidance%1:10:00:: 1 8 -guide%1:09:00:: 4 1 -guide%1:10:00:: 3 1 -guide%1:18:00:: 1 1 -guide%1:18:02:: 2 1 -guide%2:38:00:: 2 11 -guide%2:38:01:: 1 12 -guide%2:41:00:: 3 8 -guide_on%2:39:00:: 1 2 -guided%5:00:00:led:00 1 3 -guided_missile%1:06:00:: 1 1 -guideline%1:10:00:: 1 1 -guidepost%1:09:00:: 1 1 -guiding_light%1:18:00:: 1 1 -guileless%5:00:00:artless:00 1 1 -guilt%1:12:00:: 2 2 -guilt%1:26:00:: 1 8 -guilt_pang%1:12:00:: 1 1 -guiltily%4:02:00:: 1 1 -guilty%3:00:00:: 1 10 -guilty%5:00:00:ashamed(p):00 2 2 -guitar%1:06:00:: 1 3 -gulf%1:07:00:: 2 1 -gulf%1:17:01:: 1 1 -gull%2:32:00:: 2 1 -gull%2:41:00:: 1 1 -gullible%5:00:00:naive:00 1 1 -gully%1:17:00:: 1 1 -gulp%1:04:00:: 1 2 -gulp%2:32:00:: 2 1 -gulp%2:34:01:: 1 5 -gulping%1:04:01:: 1 2 -gum%1:08:00:: 2 1 -gum%1:13:00:: 1 1 -gummy%5:00:00:adhesive:00 1 1 -gun%1:06:00:: 1 72 -gun%1:06:01:: 2 25 -gun_barrel%1:06:00:: 1 1 -gun_down%2:33:00:: 1 1 -gun_smoke%1:19:00:: 1 1 -gunfire%1:04:00:: 1 5 -gunman%1:18:00:: 1 3 -gunner%1:18:00:: 1 4 -gunplay%1:04:00:: 1 1 -gunpowder%1:27:00:: 1 2 -gunshot%1:04:00:: 1 1 -gunslinger%1:18:00:: 1 1 -guru%1:18:00:: 1 1 -gush%2:32:00:: 2 2 -gush%2:38:00:: 1 3 -gust%1:19:00:: 1 3 -gusto%1:12:00:: 1 1 -gut%1:08:00:: 1 2 -guts%1:07:00:: 1 2 -gutter%1:06:00:: 1 2 -guttural%5:00:00:cacophonous:00 1 1 -guy%1:06:01:: 2 1 -guy%1:18:00:: 1 33 -guy_fawkes_day%1:28:00:: 1 1 -guzzle%2:34:00:: 1 1 -gym%1:06:00:: 1 4 -gymnast%1:18:00:: 1 5 -gymnastic%5:00:00:active:01 1 4 -gymnastics%1:04:00:: 1 11 -gynecologist%1:18:00:: 1 1 -gyrate%2:38:00:: 1 1 -gyration%1:11:00:: 1 1 -haberdashery%1:06:01:: 1 1 -haberdashery_store%1:06:00:: 1 1 -habit%1:04:02:: 2 6 -habit%1:06:00:: 3 1 -habit%1:09:00:: 1 7 -habitable%5:00:00:livable:00 1 1 -habitat%1:15:00:: 1 2 -habitual%5:00:00:established:00 1 1 -habitual%5:00:00:usual:00 2 1 -habitually%4:02:00:: 1 2 -habitually%4:02:02:: 2 1 -hack%1:18:00:: 1 1 -hack%2:35:02:: 1 1 -hacker%1:18:02:: 1 1 -hackneyed%5:00:00:unoriginal:00 1 1 -hackwork%1:04:00:: 1 1 -had_better%2:42:00:: 1 6 -haggard%5:00:00:thin:03 2 1 -haggard%5:00:00:tired:00 1 2 -haggardly%4:02:00:: 1 1 -haggle%2:40:00:: 1 2 -haiku%1:10:00:: 1 1 -hail%1:19:00:: 1 3 -hail%2:32:00:: 4 1 -hail%2:32:01:: 3 1 -hail%2:32:02:: 1 4 -hail%2:42:00:: 2 1 -hair%1:08:00:: 1 59 -haircut%1:08:00:: 1 2 -hairdo%1:08:00:: 1 1 -haired%5:00:00:hairy:00 1 5 -hairless%3:00:00:: 1 1 -hairtonic%1:06:00:: 1 1 -hairy%3:00:00:: 1 2 -half%1:23:00:: 1 42 -half%4:02:00:: 1 18 -half%5:00:00:fractional:00 1 22 -half%5:00:00:incomplete:00 2 11 -half-breed%1:18:00:: 1 4 -half-brother%1:18:00:: 1 1 -half-heartedly%4:02:00:: 1 1 -half-hour%1:28:00:: 1 6 -half-intensity%1:07:00:: 1 2 -half-moon%1:08:00:: 1 1 -half-time%4:02:00:: 1 1 -half-time%5:00:00:part-time:00 1 1 -half_a_dozen%1:23:00:: 1 1 -half_a_dozen%5:00:00:cardinal:00 1 2 -half_dozen%5:00:00:cardinal:00 1 2 -half_gainer%1:04:00:: 1 1 -half_life%1:28:00:: 1 1 -half_mile%1:23:00:: 1 3 -half_sister%1:18:00:: 1 1 -halfback%1:18:00:: 1 9 -halftime%1:28:00:: 1 1 -halfway%4:02:00:: 1 5 -halfway%5:00:00:central:01 1 4 -halfway%5:00:00:intermediate:00 2 1 -hall%1:06:02:: 3 6 -hall%1:06:03:: 1 25 -hall%1:06:04:: 4 3 -hall%1:06:05:: 2 10 -hall%1:06:06:: 5 2 -hall_of_fame%1:06:00:: 1 1 -hallelujah%1:10:00:: 1 1 -hallmark%1:07:00:: 1 2 -hallowed%5:00:00:holy:00 1 1 -halloween%1:28:00:: 1 1 -hallucination%1:26:00:: 1 1 -hallway%1:06:00:: 1 5 -halo%1:07:00:: 1 4 -halogen%1:27:00:: 1 2 -halt%1:04:00:: 3 1 -halt%1:11:00:: 2 1 -halt%1:26:00:: 1 1 -halt%2:38:00:: 4 4 -halt%2:38:01:: 2 7 -halt%2:38:05:: 1 8 -halt%2:41:00:: 3 4 -halted%5:00:00:nonmoving:00 1 2 -halter%1:06:01:: 1 1 -haltingly%4:02:00:: 1 1 -ham%1:13:00:: 1 1 -ham_and_eggs%1:13:00:: 1 1 -hamlet%1:14:00:: 1 1 -hammer%1:06:00:: 2 2 -hammer%1:06:04:: 1 2 -hammer%2:35:00:: 1 4 -hamming%1:04:00:: 1 1 -hamper%1:06:01:: 1 2 -hamper%2:30:00:: 1 4 -hamper%2:33:00:: 2 1 -hand%1:06:00:: 8 1 -hand%1:08:00:: 1 215 -hand%1:09:00:: 4 3 -hand%1:09:01:: 7 1 -hand%1:10:00:: 3 4 -hand%1:14:00:: 6 1 -hand%1:15:00:: 5 2 -hand%1:18:00:: 2 5 -hand%2:40:00:: 1 25 -hand-to-hand%5:00:00:close:01 1 2 -hand_blower%1:06:00:: 1 1 -hand_brake%1:06:00:: 1 1 -hand_down%2:40:00:: 1 1 -hand_grenade%1:06:00:: 1 2 -hand_in_hand%4:02:01:: 2 1 -hand_in_hand%4:02:03:: 1 1 -hand_out%2:40:00:: 1 5 -hand_over%2:40:00:: 1 5 -hand_tool%1:06:00:: 1 2 -handbag%1:06:00:: 1 3 -handclasp%1:10:00:: 1 1 -handcuffs%1:06:00:: 1 1 -handful%1:23:00:: 2 4 -handful%1:23:01:: 1 4 -handicap%1:07:02:: 2 1 -handicap%1:26:00:: 1 1 -handicap%2:29:00:: 1 1 -handicapped%5:00:00:unfit:01 1 2 -handiwork%1:06:00:: 1 1 -handkerchief%1:06:00:: 1 6 -handle%1:06:00:: 1 4 -handle%2:32:00:: 3 4 -handle%2:35:00:: 4 3 -handle%2:35:01:: 5 1 -handle%2:41:00:: 1 41 -handle%2:41:03:: 2 15 -handlebar%1:06:00:: 1 1 -handled%3:00:00:: 1 1 -handless%3:00:00:: 1 1 -handling%1:04:00:: 1 2 -handling%1:04:01:: 2 2 -handling%1:04:02:: 3 1 -handmade%3:00:00:: 1 2 -hands%1:04:00:: 1 10 -hands%1:14:00:: 2 1 -handshaking%1:10:00:: 1 1 -handsome%5:00:00:beautiful:00 1 7 -handsome%5:00:00:generous:01 2 3 -handspike%1:06:00:: 1 3 -handstand%1:04:00:: 1 3 -handwoven%5:00:00:handmade:00 1 1 -handwriting%1:10:00:: 1 2 -handwritten%5:00:00:written:00 1 1 -handy%5:00:00:accessible:00 1 2 -handy%5:00:00:convenient:00 2 1 -handyman%1:18:00:: 1 1 -hang%2:35:00:: 2 12 -hang%2:35:02:: 5 5 -hang%2:35:03:: 1 35 -hang%2:35:06:: 8 1 -hang%2:35:07:: 9 1 -hang%2:38:03:: 4 6 -hang%2:39:00:: 7 1 -hang%2:41:00:: 3 11 -hang%2:42:00:: 6 2 -hang_around%2:42:00:: 1 7 -hang_back%2:38:00:: 1 1 -hang_in%2:30:00:: 1 1 -hang_on%2:30:00:: 2 3 -hang_on%2:35:00:: 1 4 -hang_together%2:42:00:: 1 1 -hang_up%2:30:00:: 3 1 -hang_up%2:35:00:: 1 8 -hang_up%2:35:01:: 2 3 -hangout%1:15:00:: 1 1 -hangover%1:26:00:: 1 1 -hanker%2:37:00:: 1 2 -hanukkah%1:28:00:: 1 1 -haphazardly%4:02:00:: 1 1 -hapless%5:00:00:unfortunate:00 1 1 -happen%2:30:00:: 1 149 -happen%2:30:01:: 4 9 -happen%2:30:02:: 2 20 -happen%2:41:00:: 3 17 -happen_upon%2:40:00:: 1 1 -happening%1:11:00:: 1 2 -happily%4:02:01:: 1 5 -happiness%1:12:00:: 2 2 -happiness%1:26:00:: 1 4 -happy%3:00:00:: 1 37 -happy%5:00:00:contented:00 4 1 -happy%5:00:00:fortunate:00 3 2 -happy%5:00:00:glad:00 2 7 -harangue%1:10:00:: 1 1 -harangue%2:32:00:: 1 4 -harass%2:37:01:: 2 1 -harass%2:41:00:: 1 2 -harassed%5:00:00:troubled:00 1 2 -harbor%1:15:00:: 1 8 -harbor%2:37:00:: 1 4 -harbor%2:39:00:: 4 1 -harbor%2:40:00:: 3 1 -harbor%2:42:00:: 2 1 -hard%3:00:01:: 3 15 -hard%3:00:02:: 2 20 -hard%3:00:06:: 1 37 -hard%4:02:00:: 1 12 -hard%4:02:03:: 5 1 -hard%4:02:04:: 4 1 -hard%4:02:05:: 2 3 -hard%4:02:07:: 3 1 -hard%5:00:00:strong:00 4 5 -hard%5:00:01:effortful:00 5 3 -hard-boiled%5:00:00:tough:03 1 2 -hard-fought%5:00:00:difficult:00 1 1 -hard-pressed%5:00:00:troubled:00 1 1 -hard_put%5:00:00:troubled:00 1 1 -hard_time%1:26:00:: 1 1 -hard_times%1:28:00:: 1 1 -hard_worker%1:18:00:: 1 1 -hardbake%1:13:00:: 1 1 -harden%2:30:00:: 1 4 -hardened%5:00:05:hard:02 1 1 -hardly%4:02:00:: 1 37 -hardly%4:02:02:: 2 2 -hardly_a%5:00:00:few:00 1 3 -hardship%1:07:00:: 2 1 -hardship%1:26:01:: 1 1 -hardtack%1:13:00:: 1 3 -hardtack%1:27:00:: 2 1 -hardware%1:06:02:: 1 3 -hardware_store%1:06:00:: 1 2 -hardworking%5:00:00:diligent:00 1 1 -hardy%5:00:00:robust:00 1 1 -hare%1:05:00:: 1 1 -harem%1:06:00:: 1 1 -harlem%1:15:00:: 1 2 -harm%1:04:00:: 3 1 -harm%1:11:01:: 2 2 -harm%1:26:00:: 1 5 -harm%2:29:00:: 1 3 -harmful%5:00:00:dangerous:00 1 1 -harmless%3:00:00:: 1 1 -harmlessly%4:02:00:: 1 1 -harmonic%3:01:00:: 1 1 -harmonious%3:00:00:: 1 1 -harmonious%5:00:00:balanced:00 2 1 -harmony%1:07:01:: 1 6 -harmony%1:10:01:: 2 3 -harmony%1:26:00:: 3 1 -harness%1:06:00:: 2 1 -harness%1:06:01:: 1 2 -harness%2:34:00:: 2 1 -harness%2:35:00:: 1 2 -harp%1:06:00:: 1 1 -harp%2:32:00:: 1 1 -harpy_eagle%1:05:00:: 1 1 -harrow%2:36:00:: 1 2 -harry%2:37:00:: 1 1 -harsh%5:00:01:unpleasant:00 1 3 -harsh%5:00:03:unpleasant:00 2 2 -harshen%2:30:00:: 1 1 -harshly%4:02:00:: 2 2 -harshly%4:02:02:: 1 3 -harshness%1:07:03:: 1 1 -harvard%1:06:00:: 1 2 -harvard_university%1:06:00:: 1 1 -harvest%1:20:00:: 1 2 -harvest%2:35:00:: 1 3 -hash_mark%1:10:00:: 1 1 -hasp%1:06:00:: 1 1 -haste%1:04:00:: 2 2 -haste%1:07:00:: 1 12 -haste%1:26:00:: 3 1 -hasten%2:30:00:: 1 7 -hasten%2:36:00:: 4 1 -hasten%2:38:00:: 2 6 -hasten%2:41:00:: 3 2 -hastily%4:02:00:: 1 8 -hasty%5:00:00:hurried:00 1 1 -hat%1:06:00:: 1 30 -hat%2:29:00:: 1 1 -hatch%2:29:01:: 1 2 -hatch%2:36:00:: 2 1 -hatching%1:22:00:: 1 3 -hatchway%1:06:00:: 1 2 -hate%1:12:00:: 1 9 -hate%2:37:00:: 1 50 -hated%5:00:00:unloved:00 1 1 -hateful%3:00:00:: 1 2 -hateful%5:00:00:nasty:00 2 2 -hatefully%4:02:00:: 1 1 -hater%1:18:00:: 1 1 -hatless%3:00:00:: 1 2 -hatred%1:12:00:: 1 18 -haughtily%4:02:00:: 1 1 -haughty%5:00:00:proud:00 1 1 -haul%1:04:00:: 1 1 -haul%2:35:00:: 2 5 -haul%2:35:01:: 1 7 -haul_up%2:38:00:: 1 1 -haunch%1:05:00:: 2 2 -haunch%1:08:01:: 1 2 -haunt%1:15:00:: 1 2 -haunt%2:37:00:: 2 3 -haunt%2:38:00:: 1 3 -haunted%5:00:00:concerned:00 1 1 -haunting%5:00:00:unforgettable:00 1 2 -have%2:29:00:: 19 3 -have%2:29:02:: 13 11 -have%2:29:05:: 17 5 -have%2:30:00:: 6 64 -have%2:30:01:: 12 25 -have%2:32:00:: 14 8 -have%2:34:00:: 7 42 -have%2:35:00:: 20 2 -have%2:36:00:: 9 30 -have%2:39:06:: 3 220 -have%2:40:00:: 1 1202 -have%2:40:01:: 10 28 -have%2:40:02:: 18 3 -have%2:40:03:: 16 7 -have%2:40:04:: 4 143 -have%2:40:05:: 15 7 -have%2:41:00:: 8 31 -have%2:42:00:: 2 377 -have%2:42:05:: 5 138 -have%2:42:08:: 21 1 -have%2:42:12:: 11 25 -have_a_look%2:39:00:: 1 6 -have_got%2:40:00:: 1 16 -have_got%2:42:00:: 2 1 -have_in_mind%2:31:01:: 1 8 -have_on%2:29:00:: 1 8 -haven%1:06:00:: 1 1 -haversack%1:06:00:: 1 4 -havoc%1:04:00:: 1 3 -hawaii%1:15:00:: 1 9 -hawaii%1:15:01:: 2 3 -hawaiian%1:10:00:: 1 2 -hawaiian_islands%1:15:00:: 1 3 -hawk%1:05:00:: 1 2 -hawk%2:40:00:: 1 2 -hawk_nose%1:08:00:: 1 1 -hawker%1:18:00:: 1 1 -hay%1:13:00:: 1 11 -hay_fever%1:26:00:: 1 1 -hayfield%1:15:00:: 1 1 -haying_time%1:04:00:: 1 1 -haystack%1:14:00:: 1 1 -hazard%1:19:00:: 2 1 -hazard%1:26:00:: 1 3 -hazard%2:32:00:: 1 1 -haze%1:09:00:: 2 1 -haze%1:19:00:: 1 8 -hazel%5:00:00:chromatic:00 1 1 -hazy%5:00:00:cloudy:00 1 1 -head%1:05:00:: 2 21 -head%1:08:00:: 1 208 -head%1:09:00:: 3 7 -head%1:10:03:: 9 1 -head%1:14:00:: 5 6 -head%1:15:00:: 7 1 -head%1:15:01:: 8 1 -head%1:18:00:: 4 6 -head%1:19:00:: 6 3 -head%2:38:00:: 1 29 -head%2:38:01:: 5 2 -head%2:38:02:: 3 3 -head%2:41:00:: 2 19 -head%2:42:01:: 4 2 -head%5:00:00:important:00 1 2 -head%5:00:00:significant:00 2 1 -head-in-the-clouds%5:00:00:irresponsible:00 1 1 -head-on%4:02:01:: 1 1 -head_covering%1:06:00:: 1 1 -head_home%2:38:00:: 1 1 -head_of_hair%1:08:00:: 1 1 -head_off%2:41:00:: 1 3 -head_start%1:07:00:: 1 1 -head_up%2:42:00:: 1 2 -headache%1:09:00:: 1 5 -headache%1:26:00:: 2 3 -headed%3:00:01:: 3 1 -headed%3:00:02:: 2 1 -headed%5:00:00:oriented:00 1 5 -headgear%1:06:00:: 1 1 -heading%1:10:00:: 1 1 -headland%1:17:00:: 1 2 -headless%3:00:00:: 1 2 -headlight%1:06:00:: 1 5 -headline%1:10:00:: 1 3 -headline%2:32:00:: 1 1 -headlinese%1:10:00:: 1 1 -headlong%4:02:00:: 1 4 -headmaster%1:18:00:: 1 2 -headquarters%1:06:00:: 2 2 -headquarters%1:06:01:: 1 7 -headquarters%1:14:00:: 3 1 -headsman%1:18:00:: 1 1 -headstand%1:04:00:: 1 2 -headstrong%5:00:00:disobedient:00 1 1 -headwaters%1:15:00:: 1 2 -heal%2:29:00:: 2 1 -heal%2:30:00:: 1 2 -healer%1:18:00:: 1 1 -healing%1:22:00:: 1 1 -healing%5:00:00:healthful:00 1 1 -health%1:26:00:: 1 21 -health_problem%1:26:00:: 1 1 -healthful%3:00:00:: 1 2 -healthily%4:02:00:: 1 1 -healthy%3:00:00:: 1 15 -healthy%5:00:00:sound:00 2 3 -healthy%5:00:00:wholesome:00 3 1 -heap%1:14:00:: 1 6 -heap%1:23:00:: 2 2 -heap%2:35:00:: 2 1 -heap%2:40:00:: 1 1 -heaped-up%5:00:00:concentrated:00 1 1 -hear%2:31:00:: 2 60 -hear%2:39:00:: 1 275 -hear%2:39:01:: 4 8 -hear%2:41:00:: 3 12 -heard%5:00:00:detected:00 1 1 -hearer%1:18:00:: 1 1 -hearing%1:04:00:: 4 2 -hearing%1:04:01:: 1 10 -hearing%1:15:00:: 3 3 -hearing%1:26:00:: 2 4 -hearing_officer%1:18:00:: 1 19 -heart%1:07:01:: 3 9 -heart%1:07:04:: 6 1 -heart%1:08:00:: 2 25 -heart%1:09:00:: 1 42 -heart%1:09:01:: 5 2 -heart%1:15:00:: 4 5 -heart_disease%1:26:00:: 1 1 -heart_rate%1:28:00:: 1 1 -heartbeat%1:11:00:: 1 2 -hearted%3:00:00:: 1 1 -heartening%5:00:00:encouraging:00 1 2 -hearth%1:06:00:: 2 1 -hearth%1:06:01:: 1 2 -heartily%4:02:01:: 2 1 -heartily%4:02:03:: 1 4 -hearty%5:00:00:warm:02 1 1 -heat%1:07:01:: 2 6 -heat%1:07:02:: 4 2 -heat%1:09:00:: 3 5 -heat%1:19:00:: 1 19 -heat%1:26:00:: 5 1 -heat%2:30:01:: 1 11 -heat_energy%1:19:00:: 1 2 -heat_of_condensation%1:19:00:: 1 1 -heat_of_dissociation%1:19:00:: 1 1 -heat_of_formation%1:19:00:: 1 2 -heat_sink%1:06:00:: 1 1 -heat_up%2:30:01:: 1 1 -heated%5:00:00:hot:01 1 3 -heated%5:00:00:hot:02 2 2 -heater%1:06:00:: 1 1 -heating%1:22:00:: 1 4 -heave%2:29:01:: 6 1 -heave%2:32:00:: 1 5 -heave%2:35:00:: 4 2 -heave%2:35:01:: 2 3 -heave%2:38:00:: 3 2 -heave%2:38:01:: 5 1 -heaven%1:15:00:: 1 7 -heaven%1:15:01:: 2 1 -heavenly%3:01:00:: 1 1 -heavenly_body%1:17:00:: 1 1 -heavens%1:15:00:: 1 2 -heaver%1:06:00:: 1 2 -heavily%4:02:00:: 1 23 -heavily%4:02:02:: 5 1 -heavily%4:02:03:: 4 1 -heavily%4:02:04:: 2 7 -heavily%4:02:05:: 3 2 -heaviness%1:07:00:: 1 2 -heaving%1:11:01:: 1 1 -heaving%5:00:00:moving:02 1 2 -heavy%3:00:01:: 1 32 -heavy%3:00:02:: 6 2 -heavy%3:00:03:: 2 10 -heavy%3:00:04:: 3 5 -heavy%5:00:00:cloudy:00 9 1 -heavy%5:00:00:compact:00 8 1 -heavy%5:00:00:fat:01 7 1 -heavy%5:00:00:thick:02 4 4 -heavy%5:00:00:wide:00 5 3 -heavy-armed%5:00:00:robust:00 1 1 -heavy-coated%5:00:00:clothed:00 1 1 -heavy-duty%3:00:00:: 1 1 -heavy-handed%5:00:00:maladroit:00 1 1 -heavyweight%5:00:00:heavy:01 1 1 -hebephrenic%5:00:00:insane:00 1 7 -hebraic%3:01:00:: 1 1 -hebrew%1:10:00:: 1 1 -hebrew%3:01:01:: 1 1 -hectic%5:00:00:agitated:00 1 1 -hedge%1:06:00:: 1 2 -hedge%2:32:00:: 1 1 -hedonism%1:16:00:: 1 1 -heed%1:09:00:: 1 1 -heed%2:41:00:: 1 7 -heedless%3:00:00:: 1 4 -heel%1:06:00:: 1 6 -heel%1:08:00:: 2 4 -heft%2:35:00:: 1 1 -hefty%5:00:00:strong:00 1 1 -hegel%1:18:00:: 1 2 -hegelian%3:01:00:: 1 3 -height%1:07:00:: 1 11 -height%1:07:01:: 3 3 -height%1:07:02:: 4 1 -height%1:26:00:: 2 4 -heighten%2:30:00:: 3 1 -heighten%2:30:01:: 1 1 -heighten%2:30:02:: 2 1 -heights%1:15:00:: 1 2 -heir%1:18:00:: 1 3 -heist%2:41:00:: 1 1 -held%3:44:00:: 1 1 -held_up%5:00:00:delayed:00 1 1 -helium%1:27:00:: 1 15 -hell%1:15:00:: 1 9 -hell%1:15:01:: 2 6 -hell-rooster%1:18:00:: 1 1 -hell_raising%1:04:00:: 1 1 -hell_to_pay%1:07:00:: 1 2 -hellenic%1:10:00:: 1 1 -hellenic%3:01:00:: 2 1 -hellenic%5:00:00:classical:00 1 2 -hellfire%1:15:00:: 1 1 -hellion%1:18:00:: 1 1 -hello%1:10:00:: 1 1 -helm%1:04:00:: 2 1 -helm%1:06:00:: 1 1 -help%1:04:00:: 1 20 -help%1:07:00:: 3 1 -help%1:07:01:: 4 1 -help%1:18:00:: 2 3 -help%2:29:00:: 2 23 -help%2:34:00:: 5 2 -help%2:41:00:: 1 183 -help%2:42:00:: 3 19 -help%2:42:08:: 4 5 -help_out%2:41:02:: 1 1 -helper%1:18:00:: 2 1 -helper%1:18:01:: 1 1 -helpful%3:00:00:: 1 9 -helpful%5:00:00:useful:00 2 5 -helpfully%4:02:00:: 1 4 -helping_hand%1:04:00:: 1 1 -helpless%5:00:00:dependent:00 3 1 -helpless%5:00:00:hopeless:00 2 3 -helpless%5:00:01:powerless:00 1 4 -helplessly%4:02:00:: 1 2 -helplessness%1:07:00:: 1 1 -hem%1:06:00:: 1 3 -hem_in%2:33:00:: 2 1 -hem_in%2:35:00:: 1 1 -hemisphere%1:15:00:: 1 5 -hemispherical%5:00:00:rounded:00 1 1 -hemoglobin%1:27:00:: 1 4 -hemolytic%3:01:00:: 1 1 -hemorrhage%1:26:00:: 1 4 -hemorrhoid%1:26:00:: 1 1 -hemosiderin%1:27:00:: 1 2 -hen%1:05:01:: 1 22 -hen%1:05:02:: 2 1 -hence%4:02:00:: 1 25 -henceforth%4:02:00:: 1 2 -henpecked%5:00:00:submissive:00 1 1 -henry_ford%1:18:00:: 1 1 -henry_james%1:18:00:: 1 1 -hepatitis%1:26:00:: 1 1 -herald%1:18:00:: 1 1 -herald%2:32:00:: 1 1 -herald%2:32:01:: 2 1 -heraldic%5:00:00:communicative:00 1 1 -herb%1:13:00:: 2 1 -herb%1:20:00:: 1 1 -herculean%5:00:00:difficult:00 2 1 -herculean%5:00:00:superhuman:00 1 1 -herd%1:14:00:: 1 5 -herd%1:14:01:: 2 2 -herd%2:38:00:: 2 1 -herd%2:38:01:: 1 1 -here%1:15:00:: 1 1 -here%4:02:00:: 1 187 -here%4:02:01:: 3 17 -here%4:02:02:: 2 91 -here%4:02:04:: 4 1 -here%5:00:00:present:02 1 2 -here_and_now%1:28:00:: 1 3 -here_and_there%4:02:00:: 1 8 -hereabouts%4:02:00:: 1 1 -hereafter%4:02:00:: 1 3 -hereby%4:02:00:: 1 7 -heredity%1:22:00:: 1 1 -herein%4:02:00:: 1 1 -hereinafter%4:02:00:: 1 3 -heretic%1:18:00:: 1 1 -heretofore%4:02:00:: 1 4 -heritage%1:07:00:: 2 2 -heritage%1:09:00:: 1 6 -herman_melville%1:18:00:: 1 1 -hermeneutics%1:09:00:: 1 1 -hermetic%5:00:00:tight:02 1 1 -hero%1:09:00:: 2 10 -hero%1:18:00:: 1 19 -hero%1:18:01:: 3 1 -hero_worshipper%1:18:00:: 1 1 -heroic%3:01:00:: 2 2 -heroic%5:00:00:bold:00 3 2 -heroic%5:00:00:impressive:00 4 1 -heroic%5:00:00:large:00 1 5 -heroics%1:04:00:: 1 1 -heroine%1:18:01:: 1 2 -heroism%1:07:00:: 1 2 -herpetologist%1:18:00:: 1 3 -herringbone%1:06:00:: 1 1 -hesitancy%1:12:00:: 1 1 -hesitantly%4:02:00:: 1 2 -hesitate%2:42:00:: 1 16 -hesitate%2:42:01:: 2 9 -hesitating%5:00:00:indecisive:01 1 1 -hesitation%1:04:00:: 3 1 -hesitation%1:07:01:: 2 2 -hesitation%1:09:00:: 1 4 -het_up%5:00:00:hot:01 1 1 -heterogeneous%3:00:00:: 1 4 -heterozygous%3:00:00:: 1 2 -hex%1:10:00:: 1 1 -hexameter%1:10:00:: 1 1 -heyday%1:28:00:: 1 2 -hi%1:10:00:: 1 1 -hibachi%2:30:00:: 1 1 -hibernate%2:29:00:: 1 2 -hidden%5:00:00:invisible:00 1 7 -hidden%5:00:01:concealed:00 2 7 -hide%1:05:00:: 2 2 -hide%1:27:00:: 1 2 -hide%2:39:00:: 1 28 -hide%2:39:01:: 2 6 -hide_out%2:39:00:: 1 1 -hideaway%1:15:00:: 1 1 -hideous%5:00:00:offensive:01 1 3 -hideous%5:00:00:ugly:00 2 2 -hideously%4:02:00:: 1 1 -hideout%1:15:00:: 1 3 -hiding%1:04:00:: 1 2 -hiding_place%1:15:00:: 1 5 -hierarchy%1:14:00:: 1 2 -hierarchy%1:14:01:: 2 2 -high%1:07:00:: 1 5 -high%3:00:01:: 2 51 -high%3:00:02:: 1 134 -high%3:00:03:: 4 7 -high%3:00:04:: 6 1 -high%4:02:00:: 1 9 -high%4:02:02:: 2 2 -high%5:00:00:elated:00 5 2 -high%5:00:00:superior:01 3 10 -high-and-dry%5:00:00:aground(p):00 1 1 -high-backed%5:00:00:backed:00 1 1 -high-ceilinged%5:00:00:ceilinged:00 1 1 -high-pitched%3:00:00:: 1 4 -high-pitched%5:00:00:inclined:01 2 1 -high-powered%5:00:00:dynamic:00 1 1 -high-priced%5:00:00:expensive:00 1 2 -high-resolution%3:00:00:: 1 1 -high-speed%5:00:01:fast:01 1 2 -high-speed%5:00:02:fast:01 2 1 -high-spirited%5:00:00:spirited:00 1 2 -high-stepped%5:00:00:high:01 1 1 -high-sudsing%3:00:00:: 1 1 -high-tail%2:38:00:: 1 1 -high-topped%5:00:00:high:01 1 1 -high_and_low%4:02:00:: 1 1 -high_anglicanism%1:09:00:: 1 1 -high_explosive%1:27:00:: 1 2 -high_fidelity%1:04:00:: 1 4 -high_finance%1:04:00:: 1 1 -high_frequency%1:07:00:: 2 1 -high_frequency%1:07:01:: 1 1 -high_quality%1:07:00:: 1 1 -high_school%1:14:00:: 1 37 -high_sea%1:17:00:: 1 1 -high_society%1:14:00:: 1 2 -high_spirits%1:12:00:: 1 1 -high_temperature%1:07:00:: 1 2 -high_time%1:28:00:: 1 1 -high_up%4:02:00:: 1 1 -higher%5:00:01:high:02 2 1 -higher%5:00:02:high:02 1 10 -higher_education%1:04:00:: 1 1 -highest%5:00:00:maximal:00 1 8 -highest%5:00:00:ultimate:00 2 7 -highlight%2:30:00:: 1 2 -highly%4:02:01:: 2 1 -highly%4:02:02:: 1 43 -highness%1:18:00:: 1 1 -highroad%1:06:00:: 1 6 -highschool%1:14:00:: 1 1 -highway%1:06:00:: 1 12 -highwayman%1:18:00:: 1 2 -hijack%2:35:00:: 1 2 -hijacker%1:18:00:: 1 1 -hijacking%3:44:00:: 1 1 -hike%1:04:00:: 1 2 -hike%2:38:01:: 1 1 -hike_up%2:35:00:: 1 1 -hilar%3:01:00:: 1 4 -hilarious%5:00:00:humorous:00 1 1 -hilariously%4:02:00:: 1 1 -hilarity%1:12:00:: 1 1 -hill%1:06:01:: 2 1 -hill%1:17:00:: 1 33 -hillbilly%1:18:00:: 1 1 -hillbilly_music%1:10:00:: 1 1 -hillock%1:17:00:: 1 2 -hills%1:17:00:: 1 16 -hillside%1:17:00:: 1 3 -hilt%1:06:00:: 1 1 -hilum%1:08:00:: 1 5 -hind_leg%1:05:00:: 1 2 -hinder%2:33:00:: 3 1 -hinder%2:41:00:: 2 1 -hinder%2:41:01:: 1 3 -hinge%1:06:00:: 1 3 -hinge_on%2:42:00:: 1 1 -hint%1:10:00:: 1 1 -hint%1:10:01:: 2 1 -hint%2:32:00:: 1 7 -hip%1:08:00:: 1 5 -hip%1:08:01:: 2 1 -hip%1:08:02:: 3 1 -hip_pad%1:06:00:: 1 1 -hipline%1:15:01:: 1 1 -hire%2:41:00:: 1 33 -hire%2:41:01:: 2 1 -hired%5:00:00:employed:00 1 2 -hired_man%1:18:00:: 1 2 -hiss%2:32:00:: 1 1 -hissing%1:11:00:: 1 2 -histology%1:09:00:: 1 1 -historian%1:18:00:: 1 20 -historic%3:01:00:: 1 2 -historical%3:01:00:: 1 11 -historical%3:01:01:: 2 7 -historical%5:00:00:past:00 4 5 -historical%5:00:00:real:00 3 5 -historically%4:02:01:: 1 6 -history%1:09:00:: 3 16 -history%1:09:01:: 5 5 -history%1:10:00:: 2 23 -history%1:28:00:: 1 49 -history%1:28:02:: 4 14 -histrionics%1:10:00:: 1 1 -hit%1:04:00:: 2 2 -hit%1:04:02:: 3 1 -hit%1:04:03:: 1 15 -hit%2:33:00:: 10 2 -hit%2:33:01:: 6 8 -hit%2:33:02:: 8 3 -hit%2:35:00:: 3 18 -hit%2:35:01:: 2 21 -hit%2:35:03:: 1 25 -hit%2:35:05:: 5 8 -hit%2:38:00:: 4 9 -hit%2:39:00:: 9 2 -hit%2:40:05:: 7 3 -hit%2:40:12:: 11 1 -hit-and-run%5:00:00:offensive:03 1 1 -hit_it_up%2:34:00:: 1 1 -hit_the_deck%2:38:00:: 1 1 -hit_the_dirt%2:38:00:: 1 1 -hitch%1:28:00:: 1 1 -hitch%2:35:00:: 1 2 -hitch%2:38:01:: 2 1 -hitch%2:38:02:: 3 1 -hitch_up%2:35:00:: 1 1 -hitching_post%1:06:00:: 1 1 -hither%4:02:00:: 1 6 -hitherto%4:02:00:: 1 2 -hitler%1:18:00:: 1 3 -hitless%5:00:00:unsuccessful:00 1 1 -hitter%1:18:00:: 1 2 -hive%1:06:00:: 2 1 -hive%1:14:00:: 1 1 -hoarse%5:00:00:cacophonous:00 1 7 -hoarsely%4:02:00:: 1 2 -hobble%2:38:00:: 1 2 -hobble%2:41:00:: 2 1 -hobby%1:04:00:: 1 2 -hock%2:40:00:: 1 1 -hodgepodge%1:14:00:: 1 1 -hoe%1:06:00:: 1 1 -hog%2:40:00:: 1 1 -hoist%2:35:00:: 1 1 -hokan%1:10:00:: 1 1 -hold%1:04:00:: 1 5 -hold%1:07:00:: 3 2 -hold%1:09:00:: 2 2 -hold%2:31:01:: 5 20 -hold%2:31:04:: 23 1 -hold%2:31:08:: 17 2 -hold%2:31:10:: 24 1 -hold%2:32:13:: 22 1 -hold%2:33:05:: 21 1 -hold%2:35:00:: 2 65 -hold%2:35:01:: 10 9 -hold%2:35:02:: 15 3 -hold%2:35:03:: 7 17 -hold%2:36:00:: 3 62 -hold%2:37:00:: 6 17 -hold%2:40:00:: 4 26 -hold%2:40:02:: 8 14 -hold%2:40:03:: 12 6 -hold%2:40:04:: 9 9 -hold%2:41:00:: 20 1 -hold%2:42:00:: 1 79 -hold%2:42:01:: 14 3 -hold%2:42:02:: 16 2 -hold%2:42:05:: 13 3 -hold%2:42:07:: 18 1 -hold%2:42:13:: 11 7 -hold%2:42:14:: 19 1 -hold_back%2:33:00:: 1 4 -hold_back%2:41:00:: 2 1 -hold_down%2:40:00:: 1 1 -hold_in%2:41:00:: 2 1 -hold_in%2:42:00:: 1 1 -hold_off%2:33:00:: 1 3 -hold_on%2:30:00:: 3 2 -hold_on%2:30:05:: 2 4 -hold_on%2:32:00:: 4 1 -hold_on%2:35:00:: 1 5 -hold_out%2:29:00:: 1 5 -hold_out%2:33:00:: 2 3 -hold_out%2:42:01:: 3 2 -hold_out%2:42:02:: 4 1 -hold_over%2:37:00:: 1 2 -hold_over%2:40:00:: 2 1 -hold_still_for%2:31:00:: 1 1 -hold_sway%2:41:00:: 1 1 -hold_up%2:30:00:: 3 3 -hold_up%2:35:00:: 1 4 -hold_up%2:39:00:: 2 3 -hold_up%2:40:00:: 4 2 -hold_up%2:42:00:: 5 1 -holder%1:06:00:: 1 23 -holding%1:04:00:: 1 1 -holdup%1:04:00:: 1 1 -hole%1:06:00:: 2 9 -hole%1:06:01:: 3 5 -hole%1:17:01:: 1 12 -hole%1:17:02:: 5 2 -hole%1:25:00:: 4 2 -hole_out%2:35:00:: 1 1 -holiday%1:28:00:: 1 9 -holiday%1:28:01:: 2 4 -holland%1:15:00:: 1 1 -holler%1:10:00:: 1 1 -holler%2:32:00:: 3 1 -holler%2:32:05:: 2 2 -holler%2:32:06:: 1 3 -holler_out%2:32:00:: 1 1 -hollering%1:10:00:: 1 3 -hollow%1:17:00:: 3 1 -hollow%1:17:01:: 2 1 -hollow%1:25:02:: 1 2 -hollow%3:00:00:: 1 1 -hollow%5:00:00:insincere:00 2 1 -hollow%5:00:00:meaningless:00 4 1 -hollow%5:00:00:reverberant:00 3 1 -hollowness%1:26:00:: 1 1 -hollyhock%1:20:01:: 2 1 -hollyhock%1:20:02:: 1 1 -hollywood%1:14:00:: 1 6 -holmes%1:18:00:: 1 19 -holocaust%1:04:00:: 1 2 -holster%1:06:00:: 1 5 -holy_father%1:18:00:: 1 1 -holy_sacrament%1:04:00:: 1 1 -holy_scripture%1:10:00:: 1 1 -holy_spirit%1:18:00:: 1 2 -holystone%1:17:00:: 1 1 -home%1:06:00:: 2 48 -home%1:06:02:: 4 3 -home%1:15:02:: 3 10 -home%1:15:03:: 6 1 -home%1:15:04:: 1 55 -home%1:15:05:: 5 2 -home%3:00:00:: 1 7 -home%3:01:00:: 2 3 -home%4:02:01:: 1 59 -home%4:02:04:: 2 2 -home_economics%1:09:00:: 1 2 -home_folks%1:14:00:: 1 2 -home_movie%1:10:00:: 1 1 -home_plate%1:06:00:: 1 2 -home_run%1:04:00:: 1 13 -homebound%1:14:00:: 1 1 -homefolk%1:14:00:: 1 1 -homegrown%5:00:00:native:01 1 1 -homeland%1:15:00:: 1 2 -homely%5:00:00:comfortable:00 2 3 -homely%5:00:00:plain:01 3 1 -homely%5:00:00:unattractive:00 1 5 -homemade%3:00:00:: 1 1 -homer%1:04:00:: 1 12 -homer%1:18:00:: 2 1 -homeric%3:01:00:: 1 2 -homesick%5:00:00:unhappy:00 1 3 -homesteader%1:18:00:: 1 3 -hometown%1:15:00:: 1 1 -homeward%4:02:00:: 1 1 -homicidal%5:00:00:bloody:00 1 1 -homicide%1:04:00:: 1 1 -homogenate%1:27:00:: 1 2 -homogeneity%1:07:00:: 1 4 -homogeneous%3:00:00:: 1 7 -homogeneously%4:02:00:: 1 1 -homogenize%2:30:01:: 1 1 -homosexual%1:18:00:: 1 1 -homosexual%3:00:00:: 1 1 -homozygous%3:00:00:: 1 5 -honest%3:00:00:: 1 10 -honest%5:00:00:artless:00 4 1 -honest%5:00:00:sincere:00 2 5 -honest%5:00:00:trustworthy:00 3 2 -honestly%4:02:00:: 1 6 -honestly%4:02:01:: 2 1 -honesty%1:07:00:: 1 2 -honey%1:13:00:: 1 9 -honey%1:18:00:: 2 4 -honey%5:00:00:chromatic:00 1 2 -honeybee%1:05:00:: 1 6 -honeymoon%1:28:00:: 1 2 -honeymoon%2:42:00:: 1 3 -honeysuckle%1:20:01:: 1 1 -honky-tonk%1:06:00:: 1 1 -honkytonk%1:06:00:: 1 1 -honolulu%1:15:00:: 1 3 -honor%1:07:00:: 3 3 -honor%1:10:00:: 1 11 -honor%1:26:00:: 2 3 -honor%2:41:00:: 1 28 -honor%2:41:01:: 2 3 -honorable%3:00:04:: 1 1 -honorably%4:02:02:: 1 2 -honored%5:00:00:reputable:00 1 4 -honour%1:10:00:: 2 1 -honour%1:26:00:: 1 1 -honour%2:41:00:: 1 1 -hood%1:18:00:: 1 1 -hoof%1:05:00:: 1 7 -hoofmark%1:10:00:: 1 1 -hook%1:06:03:: 1 1 -hook%2:35:00:: 1 2 -hook%2:35:03:: 4 1 -hook%2:36:00:: 3 1 -hook%2:40:02:: 2 1 -hook_up%2:35:00:: 1 1 -hooked%5:00:00:addicted:00 2 1 -hooked%5:00:00:crooked:01 1 1 -hooker's_green%1:27:00:: 1 1 -hookup%1:06:01:: 1 1 -hookworm%1:05:00:: 1 1 -hoop%1:06:00:: 2 1 -hoop%1:06:01:: 1 1 -hoop_snake%1:05:00:: 1 2 -hoot%1:10:01:: 1 1 -hoot%2:32:00:: 1 3 -hop%1:04:00:: 1 1 -hop%2:38:00:: 1 7 -hop%2:38:04:: 2 1 -hop%2:38:05:: 3 1 -hop-skip%2:38:00:: 1 1 -hope%1:09:00:: 3 14 -hope%1:12:00:: 2 17 -hope%1:12:01:: 1 18 -hope%1:18:00:: 4 2 -hope%2:31:00:: 3 23 -hope%2:37:00:: 2 37 -hope%2:37:01:: 1 60 -hopeful%3:00:00:: 1 2 -hopeful%5:00:00:auspicious:00 2 1 -hopefully%4:02:00:: 1 3 -hopeless%3:00:00:: 1 3 -hopelessly%4:02:01:: 1 3 -hopper%1:06:00:: 1 1 -hopscotch%1:04:00:: 1 1 -horde%1:14:00:: 1 3 -horizon%1:07:00:: 2 7 -horizon%1:15:00:: 1 9 -horizontal%3:00:00:: 1 4 -horizontal_bar%1:06:00:: 1 1 -hormone%1:08:00:: 1 6 -horn%1:05:01:: 2 3 -horn%1:05:02:: 6 1 -horn%1:06:01:: 5 1 -horn%1:06:04:: 4 1 -horn%1:06:06:: 1 7 -horn%1:10:02:: 3 1 -horn_fly%1:05:00:: 1 1 -hornpipe%1:04:00:: 1 1 -horoscope%1:10:00:: 1 1 -horrible%5:00:00:alarming:00 1 4 -horribly%4:02:00:: 1 3 -horrid%5:00:00:bad:00 1 1 -horrified%5:00:00:afraid(p):00 1 2 -horrifying%5:00:00:alarming:00 1 1 -horrifyingly%4:02:00:: 1 1 -horror%1:06:00:: 2 6 -horror%1:12:00:: 3 3 -horror%1:12:01:: 1 10 -horror-stricken%5:00:00:afraid(p):00 1 2 -hors_de_combat%5:00:00:injured:00 1 1 -horse%1:05:00:: 1 103 -horse%1:06:03:: 2 1 -horse-trail%1:06:00:: 1 1 -horse_chestnut%1:20:00:: 1 1 -horse_race%1:11:00:: 1 2 -horse_trading%1:04:00:: 1 1 -horseback%1:05:00:: 1 2 -horselaugh%1:10:00:: 1 1 -horseman%1:18:00:: 1 6 -horsemanship%1:09:00:: 1 1 -hospitable%3:00:00:: 1 1 -hospital%1:06:00:: 1 25 -hospitality%1:10:00:: 1 1 -host%1:05:00:: 3 4 -host%1:14:00:: 2 6 -host%1:14:01:: 6 1 -host%1:14:02:: 5 2 -host%1:18:01:: 4 3 -host%1:18:02:: 1 8 -hostelry%1:06:00:: 1 1 -hostess%1:18:00:: 2 2 -hostess%1:18:01:: 3 1 -hostess%1:18:02:: 1 2 -hostile%3:00:01:: 1 5 -hostile%3:00:02:: 2 3 -hostile%5:00:00:unfriendly:01 3 1 -hostility%1:07:00:: 1 3 -hot%3:00:01:: 1 50 -hot%3:00:02:: 3 3 -hot%5:00:00:fast:01 7 1 -hot%5:00:00:illegal:00 6 1 -hot%5:00:00:sexy:00 5 1 -hot%5:00:00:violent:00 2 4 -hot%5:00:00:warm:03 4 1 -hot-water_heater%1:06:00:: 1 1 -hot_potato%1:26:00:: 1 1 -hot_rod%1:06:00:: 1 1 -hot_spell%1:19:00:: 1 1 -hot_war%1:26:00:: 1 1 -hotel%1:06:00:: 1 39 -hotelman%1:18:00:: 1 1 -hotness%1:07:00:: 1 1 -hotshot%1:18:00:: 1 1 -hound%1:05:00:: 1 2 -hound%1:18:00:: 2 1 -hound_dog%1:05:00:: 1 1 -hour%1:28:00:: 1 92 -hour%1:28:01:: 2 22 -hour%1:28:02:: 3 1 -hour_angle%1:15:00:: 1 1 -hourly%3:01:00:: 1 1 -hours%1:28:00:: 1 9 -hours%1:28:01:: 2 3 -house%1:04:00:: 7 1 -house%1:06:00:: 1 157 -house%1:14:00:: 6 1 -house%1:14:01:: 2 2 -house%1:14:02:: 5 1 -house%1:14:03:: 4 1 -house%1:14:04:: 3 1 -house%2:41:00:: 2 4 -house%2:42:02:: 1 13 -house_of_prostitution%1:06:00:: 1 2 -house_of_representatives%1:14:00:: 1 5 -house_organ%1:10:00:: 1 1 -housebreaker%1:18:00:: 1 1 -housebreaking%1:04:00:: 1 1 -household%1:14:00:: 1 8 -household%5:00:00:domestic:01 1 1 -householder%1:18:00:: 1 2 -housekeeping%1:04:00:: 1 2 -housewife%1:18:00:: 1 5 -housework%1:04:00:: 1 1 -housing%1:06:00:: 1 4 -houston%1:15:00:: 1 5 -hover%2:38:00:: 3 2 -hover%2:38:01:: 4 1 -hover%2:42:00:: 1 2 -hover%2:42:01:: 2 2 -how%4:02:00:: 1 9 -how%4:02:01:: 2 8 -how_come%4:02:00:: 1 2 -however%4:02:00:: 1 180 -however%4:02:01:: 4 2 -however%4:02:02:: 3 11 -however%4:02:04:: 2 20 -howl%1:10:00:: 1 10 -howl%2:32:02:: 1 3 -howling%1:10:00:: 1 1 -howling%5:00:00:noisy:00 1 1 -hoydenish%5:00:00:spirited:00 1 1 -hp%1:23:00:: 1 3 -hr%1:28:00:: 1 26 -hub%1:06:00:: 1 2 -hubbub%1:11:00:: 1 1 -hubris%1:07:00:: 1 1 -huckster%1:18:00:: 1 2 -huckster%2:40:00:: 1 1 -huddle%1:10:00:: 1 2 -huddle%2:38:00:: 2 3 -huddle%2:38:01:: 1 6 -huddle_together%2:38:00:: 1 3 -huddled%5:00:00:crowded:00 2 1 -huddled%5:00:00:unerect:00 1 1 -hudson%1:17:00:: 1 5 -hudson_bay%1:17:00:: 1 2 -hudson_river%1:17:00:: 1 2 -hue%1:07:00:: 1 6 -hue_and_cry%1:10:00:: 1 1 -hued%5:00:00:colored:00 1 5 -hug%2:35:00:: 2 2 -hug%2:35:01:: 1 6 -huge%5:00:01:large:00 1 23 -hugging%1:04:00:: 1 1 -hulk%1:06:00:: 2 1 -hulk%1:18:00:: 1 1 -hulk%2:42:00:: 1 1 -hum%2:32:00:: 1 4 -human%1:03:00:: 1 7 -human%1:05:00:: 2 5 -human%3:00:00:: 3 15 -human%3:01:00:: 1 46 -human%3:01:01:: 2 19 -human_action%1:03:00:: 1 1 -human_being%1:05:00:: 1 21 -human_body%1:08:00:: 1 2 -human_death%1:11:00:: 1 1 -human_race%1:14:00:: 1 6 -human_waste%1:27:00:: 1 1 -humane%3:01:01:: 1 1 -humanely%4:02:00:: 1 1 -humanism%1:09:00:: 2 1 -humanism%1:09:01:: 1 1 -humanist%1:18:00:: 1 1 -humanist%3:01:03:: 1 1 -humanistic%3:01:02:: 1 1 -humanitarian%5:00:00:humane:00 1 1 -humanity%1:07:00:: 2 1 -humanity%1:07:02:: 3 1 -humanity%1:14:00:: 1 8 -humanize%2:37:00:: 1 1 -humble%2:37:00:: 2 1 -humble%2:37:01:: 1 1 -humble%3:00:00:: 2 1 -humble%5:00:00:inferior:01 1 3 -humbly%4:02:00:: 1 3 -humidity%1:26:00:: 1 1 -humiliate%2:37:00:: 1 2 -humiliating%5:00:00:undignified:00 1 2 -humiliation%1:12:00:: 2 2 -humiliation%1:26:00:: 1 2 -humility%1:07:00:: 1 2 -humility%1:12:00:: 2 1 -humming%1:04:00:: 2 1 -humming%1:11:00:: 1 1 -humor%1:07:00:: 4 1 -humor%1:07:01:: 2 8 -humor%1:10:00:: 1 8 -humor%1:12:00:: 3 7 -humor%2:32:00:: 1 2 -humorist%1:18:00:: 1 2 -humorous%3:00:00:: 1 9 -hun%1:18:02:: 1 1 -hunch%1:09:00:: 1 6 -hunch%2:38:00:: 1 2 -hunch_over%2:38:00:: 1 1 -hundred%1:23:00:: 1 22 -hundred%5:00:00:cardinal:00 1 26 -hundred_dollar_bill%1:21:00:: 1 2 -hung%5:00:00:adorned:00 1 1 -hungarian%3:01:00:: 1 1 -hungary%1:15:00:: 1 2 -hunger%1:07:00:: 2 1 -hunger%1:26:00:: 1 9 -hungry%3:00:00:: 1 7 -hungry%5:00:00:desirous:00 2 1 -hunker_down%2:35:00:: 1 1 -hunkered_down%5:00:00:unerect:00 1 1 -hunt%2:33:00:: 1 4 -hunt%2:38:00:: 2 2 -hunt_down%2:33:00:: 1 2 -hunted%5:00:00:afraid(p):00 1 1 -hunter%1:18:00:: 1 7 -hunting%1:04:00:: 3 1 -hunting%1:04:01:: 1 14 -hunting%1:04:02:: 2 1 -hunting_expedition%1:04:00:: 1 2 -hunting_ground%1:26:00:: 1 1 -hurdle%1:06:00:: 1 1 -hurdle%2:38:00:: 1 2 -hurl%2:35:00:: 1 9 -hurl%2:38:00:: 2 3 -hurler%1:18:00:: 1 2 -hurling%5:00:00:moving:02 1 1 -hurricane%1:19:00:: 1 2 -hurricane_deck%1:06:00:: 1 2 -hurried%3:00:00:: 1 3 -hurriedly%4:02:00:: 1 1 -hurry%1:04:00:: 3 1 -hurry%1:07:00:: 2 2 -hurry%1:26:00:: 1 6 -hurry%2:30:00:: 2 8 -hurry%2:30:01:: 3 1 -hurry%2:38:00:: 1 30 -hurrying%5:00:00:fast:01 1 3 -hurt%1:12:02:: 2 1 -hurt%1:26:00:: 1 6 -hurt%2:29:01:: 2 8 -hurt%2:30:04:: 4 4 -hurt%2:37:00:: 5 3 -hurt%2:37:01:: 3 4 -hurt%2:39:00:: 1 8 -hurt%5:00:01:injured:00 1 3 -hurt%5:00:02:injured:00 2 3 -hurtle%2:38:00:: 2 2 -hurtle%2:38:01:: 1 3 -husband%1:18:00:: 1 68 -husbandry%1:04:00:: 1 1 -hush%1:07:00:: 1 1 -hush%2:30:00:: 1 2 -hush%2:30:01:: 2 1 -husky%5:00:00:cacophonous:00 2 1 -husky%5:00:00:robust:00 1 3 -hustle%2:38:00:: 2 1 -hustle%2:38:01:: 1 2 -hut%1:06:00:: 2 4 -hut%1:06:01:: 1 14 -hutment%1:06:00:: 1 2 -hyacinth%1:27:00:: 1 1 -hyaline%5:00:00:clear:02 1 1 -hyalinization%1:26:00:: 1 1 -hydride%1:27:00:: 1 4 -hydrocarbon%1:27:00:: 1 3 -hydrochloride%1:27:00:: 1 1 -hydrogen%1:27:00:: 1 6 -hydrogen_atom%1:27:00:: 1 10 -hydrogen_bond%1:19:00:: 1 4 -hydrogen_peroxide%1:27:00:: 1 1 -hydrophilic%3:00:00:: 1 2 -hydrophobic%3:00:00:: 1 2 -hydrostatic_head%1:19:00:: 1 1 -hydrous%3:00:00:: 1 1 -hydroxide%1:27:00:: 1 1 -hydroxymethyl%1:27:00:: 1 1 -hymn%1:10:00:: 1 7 -hyperbolic%5:00:00:increased:00 1 2 -hyperbolically%4:02:00:: 1 1 -hypercellularity%1:26:00:: 1 1 -hyperemia%1:26:00:: 1 2 -hyperemic%3:01:00:: 1 2 -hyperfine%5:00:00:thin:01 1 1 -hyperplasia%1:26:00:: 1 1 -hypertrophied%3:00:00:: 1 1 -hypertrophy%1:26:00:: 1 2 -hypervelocity%1:28:00:: 1 1 -hyphenated%5:00:00:combined:00 1 1 -hypnotize%2:29:00:: 1 1 -hypoactive%5:00:00:inactive:01 1 1 -hypoadrenocorticism%1:26:00:: 1 1 -hypocellularity%1:26:00:: 1 1 -hypocrisy%1:07:00:: 2 1 -hypocrisy%1:10:00:: 1 1 -hypocrite%1:18:00:: 1 3 -hypodermic_syringe%1:06:00:: 1 1 -hypophyseal%3:01:00:: 1 1 -hypophysectomised%3:44:00:: 1 1 -hypothalamic%3:01:00:: 1 27 -hypothalamically%4:02:00:: 1 1 -hypothalamus%1:08:00:: 1 18 -hypothesis%1:09:00:: 2 2 -hypothesis%1:10:00:: 1 4 -hypothesize%2:31:00:: 1 3 -hypothetical%5:00:00:theoretical:00 1 3 -hypothyroidism%1:26:00:: 1 1 -hysteria%1:12:01:: 2 1 -hysteria%1:26:01:: 1 1 -hysterical%5:00:00:agitated:00 2 1 -hysterical%5:00:00:neurotic:00 1 3 -hysterically%4:02:00:: 1 2 -i.e.%4:02:00:: 1 19 -i.q.%1:24:00:: 1 4 -icbm%1:06:00:: 1 3 -ice%1:17:00:: 2 1 -ice%1:27:00:: 1 22 -ice_chest%1:06:00:: 1 1 -ice_cream%1:13:00:: 1 1 -ice_floe%1:17:00:: 1 1 -ice_pack%1:06:00:: 1 1 -ice_water%1:13:00:: 1 3 -icebox%1:06:00:: 1 3 -iced%5:00:00:cold:01 1 1 -iceland%1:15:00:: 1 2 -iceland%1:15:01:: 2 2 -icelandic%1:10:00:: 1 1 -icelandic-speaking%5:00:00:communicative:00 1 1 -icicle%1:27:00:: 1 1 -icy%5:00:00:cold:01 2 1 -icy%5:00:00:cold:02 1 2 -icy%5:00:00:frozen:00 3 1 -idea%1:09:00:: 1 151 -idea%1:09:01:: 2 4 -idea%1:09:02:: 4 1 -idea%1:09:03:: 3 1 -ideal%1:09:00:: 1 7 -ideal%1:18:00:: 2 2 -ideal%5:00:00:abstract:00 3 2 -ideal%5:00:00:perfect:00 1 8 -ideal%5:00:00:utopian:00 2 3 -ideal_gas%1:27:00:: 1 5 -idealist%1:18:00:: 1 2 -idealization%1:04:00:: 1 1 -idealized%5:00:00:perfect:00 1 4 -ideally%4:02:00:: 1 4 -identical%5:00:00:same:00 1 12 -identical%5:00:00:same:02 2 9 -identifiable%3:00:00:: 1 1 -identification%1:04:00:: 1 10 -identification%1:10:01:: 3 3 -identification%1:12:00:: 2 7 -identified%5:00:00:known:00 1 1 -identify%2:31:00:: 1 32 -identify%2:31:01:: 5 2 -identify%2:31:02:: 6 2 -identify%2:31:03:: 4 4 -identify%2:31:04:: 3 6 -identify%2:32:00:: 2 7 -identity%1:07:00:: 1 12 -identity%1:07:02:: 4 2 -identity%1:09:00:: 2 6 -identity%1:24:01:: 3 2 -ideologist%1:18:00:: 1 1 -ideology%1:09:01:: 1 4 -ideology%1:09:03:: 2 1 -idiom%1:07:00:: 3 1 -idiom%1:10:00:: 2 1 -idiom%1:10:02:: 1 2 -idiomatic%3:01:00:: 1 1 -idiosyncrasy%1:07:00:: 1 2 -idiosyncratic%5:00:00:individual:00 1 1 -idiot%1:18:00:: 1 4 -idiotic%5:00:00:insane:00 1 3 -idiotically%4:02:00:: 1 2 -idle%2:35:00:: 1 2 -idle%2:41:00:: 2 1 -idle%3:00:00:: 1 4 -idle%5:00:00:inactive:03 3 1 -idle%5:00:00:unsupported:02 2 1 -idle_talk%1:10:00:: 1 1 -idleness%1:04:00:: 1 2 -idler%1:18:00:: 1 2 -idly%4:02:00:: 1 3 -idol%1:06:00:: 1 2 -idol%1:18:00:: 2 1 -idolize%2:37:00:: 1 1 -idolized%5:00:00:loved:00 1 1 -idyllic%5:00:00:perfect:00 1 2 -if_not%4:02:00:: 1 4 -ignite%2:37:00:: 3 1 -ignite%2:43:00:: 1 2 -ignite%2:43:01:: 2 1 -ignition_key%1:06:00:: 1 1 -ignoramus%1:18:00:: 1 1 -ignorance%1:09:00:: 1 5 -ignorant%5:00:00:naive:00 3 1 -ignorant%5:00:00:unconscious:00 4 1 -ignorant%5:00:01:uneducated:00 2 2 -ignorant%5:00:02:uneducated:00 1 3 -ignore%2:31:03:: 4 3 -ignore%2:32:00:: 2 13 -ignore%2:32:02:: 1 17 -ignore%2:39:00:: 3 7 -ile-de-france%1:15:00:: 1 1 -ileum%1:08:00:: 1 1 -iliad%1:10:00:: 1 5 -ilk%1:09:00:: 1 1 -ill%1:26:01:: 1 2 -ill%3:00:01:: 1 4 -ill%4:02:00:: 1 3 -ill%5:00:00:bad:00 3 1 -ill%5:00:00:harmful:00 2 1 -ill-conceived%5:00:00:foolish:00 1 1 -ill-equipped%5:00:00:unequipped:00 1 1 -ill-fated%5:00:00:unfortunate:00 1 1 -ill-starred%5:00:00:unfortunate:00 1 3 -ill-used%5:00:00:misused:00 1 1 -ill_health%1:26:00:: 1 1 -ill_turn%1:04:00:: 1 1 -ill_will%1:12:00:: 1 2 -illegal%3:00:00:: 1 3 -illegitimacy%1:26:00:: 1 1 -illegitimate%5:00:00:illegal:00 1 1 -illicit%3:00:00:: 1 1 -illinois%1:15:00:: 1 8 -illiterate%3:00:00:: 1 2 -illiterate%5:00:00:uneducated:00 2 2 -illness%1:26:00:: 1 6 -illuminate%2:30:03:: 1 9 -illuminate%2:31:00:: 2 5 -illuminating%3:00:00:: 1 3 -illuminating%5:00:00:light:06 2 1 -illumination%1:26:00:: 2 1 -illumination%1:26:01:: 1 2 -illumine%2:30:00:: 1 6 -illusion%1:04:00:: 3 1 -illusion%1:09:00:: 2 6 -illusion%1:09:01:: 1 23 -illusionary%5:00:00:unreal:00 1 1 -illusory%5:00:00:unreal:00 1 1 -illustrate%2:32:00:: 1 33 -illustrate%2:36:00:: 2 5 -illustrate%2:36:01:: 3 3 -illustrated%3:00:00:: 1 2 -illustration%1:06:00:: 4 1 -illustration%1:09:02:: 3 1 -illustration%1:10:00:: 1 4 -illustration%1:10:01:: 2 3 -illustrative%5:00:00:informative:00 1 2 -illustrator%1:18:00:: 1 2 -illustrious%5:00:00:glorious:00 2 1 -illustrious%5:00:00:known:00 1 1 -image%1:06:00:: 3 8 -image%1:07:00:: 2 9 -image%1:09:00:: 1 31 -image%1:09:02:: 4 2 -image%1:10:00:: 5 1 -image_orthicon%1:06:00:: 1 1 -imagery%1:09:00:: 1 4 -imaginary%5:00:00:unreal:00 1 7 -imagination%1:09:01:: 1 16 -imagination%1:09:02:: 2 9 -imagination%1:09:03:: 3 4 -imaginative%5:00:00:creative:00 1 3 -imaginatively%4:02:00:: 1 1 -imagine%2:31:01:: 2 11 -imagine%2:36:00:: 1 66 -imagined%5:00:00:unreal:00 1 5 -imaging%1:09:00:: 1 1 -imbalance%1:26:00:: 1 1 -imbecile%1:18:00:: 1 2 -imbed%2:35:00:: 1 3 -imbibe%2:35:01:: 1 1 -imbued%5:00:00:full:00 1 1 -imitate%2:36:00:: 1 4 -imitate%2:42:00:: 2 2 -imitation%1:04:00:: 3 4 -imitation%1:06:00:: 2 4 -imitation%1:09:00:: 1 11 -imitation%5:00:02:artificial:00 1 2 -imitative%3:00:00:: 1 2 -immaculate%5:00:00:clean:01 1 1 -immaterial%3:00:02:: 1 1 -immature%3:00:02:: 1 2 -immature%5:00:00:undeveloped:00 2 1 -immediacy%1:07:01:: 3 1 -immediacy%1:07:02:: 1 6 -immediacy%1:09:00:: 2 1 -immediate%3:00:00:: 2 3 -immediate%5:00:00:close:01 1 6 -immediate%5:00:00:present(a):01 4 11 -immediate%5:00:00:proximate:00 3 2 -immediately%4:02:00:: 1 46 -immediately%4:02:03:: 2 5 -immense%5:00:01:large:00 1 5 -immensely%4:02:01:: 1 3 -immensity%1:07:00:: 1 1 -immerse%2:31:00:: 2 1 -immerse%2:35:00:: 1 1 -immigrant%1:18:00:: 1 5 -immigrant_class%1:14:00:: 1 1 -immigration%1:04:00:: 1 1 -imminence%1:26:00:: 1 1 -imminent%5:00:00:close:01 1 1 -immobility%1:26:00:: 1 1 -immoral%3:00:00:: 1 2 -immoral%5:00:00:wrong:01 2 2 -immortal%3:00:00:: 1 5 -immortality%1:07:00:: 1 14 -immunity%1:26:00:: 1 5 -immunoelectrophoresis%1:22:00:: 1 1 -imp%1:18:01:: 1 1 -impact%1:04:00:: 3 1 -impact%1:11:00:: 1 11 -impact%1:19:00:: 2 6 -impacted%5:00:00:compact:00 1 1 -impair%2:30:00:: 1 4 -impair%2:30:01:: 2 3 -impaired%3:00:00:: 1 1 -impairment%1:11:00:: 1 1 -impale%2:35:00:: 1 2 -impart%2:40:00:: 1 7 -impart%2:40:01:: 2 1 -impartial%3:00:00:: 1 1 -impassable%3:00:00:: 1 1 -impasse%1:26:00:: 1 2 -impassioned%5:00:00:passionate:00 1 4 -impatience%1:12:00:: 2 1 -impatience%1:26:00:: 1 4 -impatient%3:00:00:: 1 5 -impatient%5:00:00:eager:00 2 2 -impatiently%4:02:00:: 1 6 -impeccable%5:00:00:perfect:00 1 2 -impeccably%4:02:00:: 1 2 -impede%2:35:00:: 2 1 -impede%2:41:00:: 1 2 -impel%2:36:00:: 1 1 -impelled%5:00:00:motivated:00 1 1 -impending%5:00:00:close:01 1 4 -imperative%3:00:00:: 1 2 -imperceptibly%4:02:00:: 1 1 -imperfect%3:00:00:: 1 2 -imperfect%5:00:00:human:00 2 1 -imperfectability%1:09:00:: 1 1 -imperfectly%4:02:00:: 1 2 -imperial%3:01:01:: 1 1 -imperialism%1:10:00:: 1 2 -imperil%2:42:00:: 1 1 -imperious%5:00:00:domineering:00 1 1 -impersonal%3:00:00:: 1 6 -impersonal%5:00:00:objective:00 2 1 -impersonate%2:36:00:: 1 2 -impervious%3:00:00:: 1 1 -impetuous%5:00:00:incautious:00 1 2 -impetus%1:19:00:: 1 3 -impinge%2:41:10:: 1 1 -impinge_on%2:35:00:: 1 2 -impinging%1:11:00:: 1 3 -impious%3:00:00:: 1 2 -implacable%3:00:00:: 1 2 -implant%2:35:00:: 1 1 -implement%1:06:00:: 1 2 -implement%2:30:00:: 3 2 -implement%2:41:00:: 2 2 -implement%2:41:01:: 1 3 -implementation%1:04:00:: 2 1 -implementation%1:04:01:: 1 2 -implicated%5:00:00:involved:00 1 1 -implication%1:09:00:: 2 6 -implication%1:09:01:: 1 9 -implication%1:10:00:: 3 1 -implicit%3:00:00:: 1 3 -implicit_in%5:00:00:implicit:00 1 1 -implied%5:00:00:implicit:00 1 1 -implike%5:00:00:playful:00 1 2 -implore%2:32:00:: 1 4 -imploring%5:00:00:beseeching:00 1 1 -imply%2:32:00:: 1 17 -imply%2:32:01:: 2 14 -imply%2:42:00:: 3 1 -import%1:06:00:: 1 2 -import%1:09:00:: 4 1 -import%1:10:00:: 3 1 -import%1:18:00:: 2 1 -import%2:40:00:: 1 4 -importance%1:07:00:: 1 50 -importance%1:26:00:: 2 4 -important%3:00:00:: 1 146 -important%3:00:02:: 3 2 -important%3:00:04:: 2 4 -important%5:00:00:influential:00 4 1 -important-looking%5:00:00:impressive:00 1 1 -importantly%4:02:01:: 1 1 -importation%1:04:00:: 1 1 -importunity%1:10:00:: 1 1 -impose%2:32:00:: 2 7 -impose%2:40:00:: 3 4 -impose%2:41:00:: 1 12 -imposing%5:00:00:impressive:00 1 1 -imposition%1:04:02:: 1 2 -impossible%1:09:00:: 1 1 -impossible%3:00:00:: 1 34 -impossible%5:00:00:unthinkable:00 2 12 -impotence%1:07:00:: 1 1 -impotency%1:07:00:: 1 1 -impotent%3:00:00:: 1 4 -impractical%3:00:00:: 1 2 -imprecate%2:32:01:: 1 1 -imprecation%1:10:00:: 1 4 -imprecise%3:00:00:: 1 1 -impregnable%5:00:00:invulnerable:00 1 1 -impress%2:31:00:: 3 5 -impress%2:35:00:: 4 1 -impress%2:37:00:: 2 8 -impress%2:37:01:: 1 9 -impression%1:07:00:: 2 6 -impression%1:09:00:: 1 14 -impression%1:09:01:: 3 1 -impressionist%1:18:00:: 1 1 -impressionist%3:01:00:: 1 1 -impressive%3:00:00:: 1 16 -imprimatur%1:10:00:: 1 1 -imprint%1:09:00:: 1 1 -imprint%2:41:00:: 1 2 -imprison%2:41:00:: 1 3 -imprison%2:41:01:: 2 1 -imprisonment%1:04:01:: 1 3 -improbable%3:00:00:: 1 1 -impromptu%1:10:00:: 1 1 -impromptu%5:00:00:unprepared:00 1 1 -improperly%4:02:00:: 1 1 -impropriety%1:07:00:: 1 1 -improve%2:30:00:: 2 12 -improve%2:30:01:: 1 66 -improved%3:00:00:: 1 3 -improved%5:00:00:better:00 2 2 -improvement%1:04:00:: 2 7 -improvement%1:11:00:: 1 7 -improvement%1:26:00:: 3 4 -improvise%2:36:00:: 1 3 -improvised%5:00:00:impermanent:00 1 1 -impudent%5:00:00:disrespectful:00 1 2 -impudent%5:00:00:forward:02 2 1 -impudently%4:02:00:: 1 1 -impulse%1:04:01:: 5 1 -impulse%1:11:00:: 3 2 -impulse%1:11:01:: 4 1 -impulse%1:12:01:: 2 3 -impulse%1:16:00:: 1 10 -impunity%1:26:00:: 1 1 -impurity%1:26:00:: 2 3 -impurity%1:27:00:: 1 8 -impute%2:31:00:: 1 3 -in%1:23:00:: 1 3 -in%3:00:00:: 1 2 -in%4:02:00:: 2 8 -in%4:02:01:: 1 19 -in%5:00:00:internal:00 2 1 -in-fighting%1:04:01:: 1 1 -in-person%5:00:00:personal:00 1 1 -in_a_bad_way%5:00:02:troubled:00 1 1 -in_a_moment%4:02:00:: 1 2 -in_a_sense%4:02:00:: 1 6 -in_a_similar_way%4:02:02:: 1 1 -in_a_way%4:02:00:: 2 2 -in_a_way%4:02:02:: 1 7 -in_absentia%4:02:00:: 1 1 -in_accord%5:00:00:consistent:00 1 1 -in_addition%4:02:00:: 1 50 -in_advance%4:02:00:: 1 3 -in_advance%5:00:00:front(a):00 1 2 -in_agreement%4:02:00:: 1 2 -in_agreement%5:00:00:consistent:00 1 1 -in_all%4:02:00:: 1 1 -in_all_likelihood%4:02:00:: 1 1 -in_any_case%4:02:00:: 1 8 -in_any_event%4:02:00:: 1 6 -in_arrears%5:00:00:late:00 1 2 -in_brief%4:02:01:: 1 1 -in_case%4:02:00:: 1 4 -in_charge%5:00:00:dominant:01 1 5 -in_check%4:02:00:: 1 4 -in_chorus%4:02:00:: 1 1 -in_color%3:00:00:: 1 1 -in_common%4:02:00:: 1 7 -in_concert%4:02:00:: 1 2 -in_conclusion%4:02:00:: 1 1 -in_demand%5:00:00:salable:00 1 1 -in_detail%4:02:00:: 1 11 -in_due_course%4:02:00:: 1 1 -in_earnest%5:00:00:serious:00 1 1 -in_effect%4:02:00:: 1 6 -in_effect%5:00:00:operative:00 1 4 -in_embryo%5:00:00:early:02 1 1 -in_essence%4:02:00:: 1 2 -in_evidence%5:00:00:conspicuous:00 1 4 -in_extremis%4:02:00:: 1 1 -in_fact%4:02:00:: 1 52 -in_for%5:00:00:certain:03 1 6 -in_front%4:02:00:: 1 30 -in_full%4:02:00:: 1 3 -in_full_swing%5:00:00:active:06 1 1 -in_full_view%5:00:00:unconcealed:00 1 1 -in_general%4:02:00:: 1 20 -in_general%5:00:00:general:00 1 1 -in_good_order%4:02:00:: 1 1 -in_hand%4:02:00:: 1 1 -in_hand%5:00:00:accessible:00 1 2 -in_harmony%5:00:00:harmonious:00 1 4 -in_haste%4:02:01:: 1 1 -in_height%5:00:00:tall:00 1 1 -in_his_right_mind%5:00:00:sane:00 1 1 -in_kind%4:02:00:: 1 1 -in_length%5:00:00:long:01 1 2 -in_line%4:02:00:: 1 1 -in_line%5:00:00:succeeding(a):00 2 1 -in_name%4:02:00:: 1 1 -in_no_way%4:02:01:: 1 4 -in_operation%5:00:01:operative:00 1 2 -in_opposition%4:02:00:: 1 1 -in_order%5:00:00:appropriate:00 1 5 -in_order%5:00:00:ready:00 3 1 -in_order%5:00:00:systematic:00 2 1 -in_other_words%4:02:00:: 1 5 -in_particular%4:02:00:: 1 9 -in_passing%4:02:00:: 1 1 -in_person%4:02:01:: 1 2 -in_place%4:02:00:: 1 6 -in_practice%4:02:00:: 1 4 -in_principle%4:02:00:: 1 2 -in_private%4:02:00:: 1 1 -in_progress%5:00:00:current:00 1 1 -in_proportion_to%5:00:00:commensurate:00 1 1 -in_public%4:02:00:: 1 2 -in_question%5:00:00:relevant:00 1 5 -in_reality%4:02:00:: 1 5 -in_regard_to%5:00:00:related:02 1 1 -in_relation_to%5:00:00:related:02 1 10 -in_reply%4:02:00:: 1 6 -in_secret%4:02:00:: 1 2 -in_short%4:02:01:: 1 8 -in_sight%5:00:00:visible:00 1 4 -in_so_far%4:02:00:: 1 2 -in_some_way%4:02:00:: 1 5 -in_stock%5:00:00:available:00 1 1 -in_store%5:00:00:future:00 1 1 -in_stride%4:02:00:: 1 2 -in_terms_of%5:00:00:related:02 1 20 -in_that%4:02:00:: 1 4 -in_the_air%4:02:00:: 1 3 -in_the_bargain%4:02:00:: 1 1 -in_the_beginning%4:02:00:: 1 1 -in_the_beginning%4:02:01:: 2 1 -in_the_end%4:02:00:: 2 5 -in_the_end%4:02:02:: 1 9 -in_the_final_analysis%4:02:00:: 1 1 -in_the_first_place%4:02:00:: 2 5 -in_the_first_place%4:02:01:: 1 6 -in_the_flesh%5:00:00:personal:00 1 1 -in_the_head%4:02:00:: 1 1 -in_the_last_analysis%4:02:00:: 1 3 -in_the_lead%4:02:00:: 1 1 -in_the_long_run%4:02:00:: 1 2 -in_the_meantime%4:02:00:: 1 4 -in_the_middle%4:02:00:: 1 4 -in_the_midst%4:02:00:: 1 10 -in_theory%4:02:00:: 1 2 -in_this%4:02:00:: 1 4 -in_time%4:02:00:: 1 9 -in_time%4:02:01:: 2 2 -in_toto%4:02:00:: 1 1 -in_trouble%5:00:00:pregnant:00 2 2 -in_trouble%5:00:00:troubled:00 1 4 -in_truth%4:02:01:: 1 7 -in_turn%4:02:00:: 1 15 -in_unison%4:02:02:: 1 3 -in_use%5:00:00:occupied:00 1 3 -in_use%5:00:00:used:00 2 2 -in_vain%4:02:00:: 1 1 -in_view%5:00:00:visible:00 1 2 -in_vitro%3:00:00:: 1 3 -in_vivo%4:02:00:: 1 3 -in_vogue%5:00:00:fashionable:00 1 1 -in_width%5:00:00:wide:00 1 1 -in_writing%4:02:00:: 1 1 -inability%1:09:00:: 1 5 -inaccuracy%1:07:02:: 1 1 -inaccurate%3:00:00:: 1 2 -inaccurate%5:00:00:imprecise:00 2 1 -inaccurate%5:00:00:incorrect:00 3 1 -inaction%1:26:00:: 1 1 -inactive%3:00:02:: 2 1 -inactive%5:00:00:unreactive:00 1 3 -inadequacy%1:07:01:: 1 1 -inadequate%3:00:00:: 1 14 -inadequately%4:02:00:: 1 1 -inadvertence%1:09:00:: 1 1 -inadvertently%4:02:00:: 1 1 -inadvisable%3:00:00:: 1 1 -inane%5:00:00:foolish:00 1 1 -inanimate%3:00:02:: 1 1 -inappropriate%3:00:00:: 1 2 -inaudible%3:00:00:: 1 2 -inaugural%1:10:00:: 1 1 -inaugural%3:00:00:: 1 1 -inaugural%5:00:00:opening:00 2 1 -inaugurate%2:41:00:: 1 3 -inauguration%1:04:01:: 1 1 -inboard%3:00:00:: 1 1 -incalculable%3:00:00:: 1 1 -incandescent%5:00:00:light:06 1 1 -incantation%1:10:00:: 1 1 -incapable%3:00:00:: 1 4 -incapable%5:00:00:incompetent:00 3 1 -incapable%5:00:00:unsusceptible:00 2 1 -incapacitate%2:30:00:: 1 1 -incarnate%2:36:00:: 1 1 -incarnate%5:00:00:corporeal:00 1 1 -incarnation%1:10:00:: 2 1 -incarnation%1:18:00:: 1 1 -incense%1:27:00:: 1 1 -incensed%5:00:00:angry:00 1 1 -incentive%1:16:00:: 1 5 -incentive%1:21:00:: 2 1 -inception%1:11:00:: 1 2 -incertain%3:00:00:: 1 1 -incessant%5:00:00:continual:00 1 1 -inch%1:23:00:: 1 49 -inch%1:23:02:: 2 6 -inch%2:38:00:: 1 1 -incidence%1:24:00:: 1 5 -incident%1:11:00:: 1 22 -incident%3:01:00:: 1 8 -incidental%3:00:00:: 1 1 -incidental_to%5:00:00:related:02 1 1 -incidentally%4:02:00:: 1 2 -incidentally%4:02:01:: 2 1 -incipience%1:28:00:: 1 1 -incipiency%1:28:00:: 1 2 -incise%2:35:00:: 1 1 -incisive%5:00:00:perceptive:00 1 2 -incite%2:32:00:: 2 2 -incite%2:36:00:: 1 2 -incitement%1:04:02:: 1 3 -incitement%1:10:01:: 2 1 -inclination%1:09:00:: 1 2 -inclination%1:25:01:: 3 1 -inclination%1:25:02:: 2 1 -incline%1:06:00:: 2 1 -incline%1:17:00:: 1 1 -incline%2:42:01:: 1 6 -incline_bench_press%1:04:00:: 1 2 -inclined%3:00:02:: 1 4 -inclose%2:35:00:: 1 1 -include%2:30:00:: 3 18 -include%2:31:00:: 2 32 -include%2:41:03:: 4 8 -include%2:42:00:: 1 234 -inclusion_body%1:17:00:: 1 1 -inclusive%3:00:00:: 1 2 -incoherent%3:00:00:: 1 1 -income%1:21:00:: 1 45 -income_tax%1:21:00:: 1 4 -income_tax_return%1:10:00:: 1 4 -incoming%3:00:00:: 1 1 -incompatibility%1:24:02:: 1 1 -incompatible%3:00:01:: 1 2 -incompetence%1:07:00:: 1 1 -incompetent%1:18:00:: 1 2 -incomplete%3:00:00:: 1 9 -incompletely%4:02:00:: 1 2 -incomprehensible%3:00:00:: 2 1 -incomprehensible%3:00:04:: 1 1 -inconceivable%5:00:00:unthinkable:00 1 1 -inconsequential%5:00:00:unimportant:00 1 3 -inconsiderable%3:00:00:: 1 1 -inconsistent%3:00:00:: 1 1 -inconsistent%5:00:00:irreconcilable:00 2 1 -inconvenience%1:07:01:: 3 1 -inconvenience%1:07:02:: 2 1 -inconvenience%1:26:00:: 1 1 -inconvenient%3:00:00:: 1 1 -inconveniently%4:02:00:: 1 1 -incorporate%2:30:00:: 1 6 -incorporate%2:42:00:: 2 1 -incorporation%1:04:01:: 1 1 -incorrect%3:00:00:: 1 1 -incorruptibility%1:07:00:: 1 1 -increase%1:04:00:: 5 3 -increase%1:07:00:: 4 3 -increase%1:11:00:: 2 21 -increase%1:22:00:: 3 7 -increase%1:23:00:: 1 49 -increase%2:30:00:: 1 86 -increase%2:30:02:: 2 61 -increased%3:00:00:: 1 30 -increasing%3:00:00:: 1 14 -increasingly%4:02:00:: 1 16 -incredible%3:00:00:: 1 10 -incredibly%4:02:00:: 1 5 -incubate%2:29:00:: 2 1 -incubate%2:30:02:: 1 1 -incubation%1:04:00:: 1 1 -incubation_period%1:28:00:: 1 3 -incubus%1:18:00:: 1 1 -inculcate%2:31:00:: 1 1 -inculcation%1:04:00:: 1 1 -incur%2:42:00:: 1 11 -incurable%3:00:00:: 1 1 -incurable%5:00:00:hopeless:00 2 1 -incurably%4:02:01:: 1 1 -incursion%1:04:01:: 1 1 -indebted%5:00:01:obligated(p):00 2 2 -indecent%3:00:00:: 2 1 -indecent%5:00:00:improper:00 1 2 -indecision%1:09:00:: 1 2 -indeed%4:02:03:: 1 66 -indefatigable%5:00:00:energetic:00 1 1 -indefensible%5:00:00:unreasonable:00 1 1 -indefinable%5:00:00:undefined:00 1 1 -indefinite%3:00:00:: 1 8 -indefinitely%4:02:00:: 1 3 -indefinity%1:07:00:: 1 1 -indelible%5:00:00:ineradicable:00 1 1 -indelicate%5:00:00:tasteless:02 1 1 -indentation%1:25:00:: 1 1 -independence%1:11:00:: 2 1 -independence%1:26:00:: 1 22 -independent%3:00:00:: 1 26 -independent%5:00:00:absolute:00 2 6 -independent%5:00:00:free:00 3 2 -independent%5:00:00:unconditional:00 4 1 -independently%4:02:00:: 1 6 -indescribable%5:00:00:inexpressible:00 1 1 -indeterminate%3:00:01:: 1 1 -index%1:10:01:: 2 1 -index%1:24:00:: 1 1 -index%2:41:00:: 1 1 -index_finger%1:08:00:: 1 4 -indexing%1:04:00:: 1 1 -india%1:15:00:: 1 5 -indian%1:18:00:: 1 10 -indian%3:01:00:: 1 3 -indian%3:01:01:: 2 1 -indian_python%1:05:00:: 1 5 -indian_summer%1:28:00:: 1 1 -indiana%1:15:00:: 1 2 -indianapolis%1:15:00:: 1 2 -indicate%2:32:00:: 3 37 -indicate%2:32:01:: 1 68 -indicate%2:32:02:: 4 14 -indicate%2:32:03:: 2 65 -indicate%2:32:04:: 5 4 -indication%1:10:00:: 1 13 -indicative_of%5:00:00:communicative:00 1 2 -indicator%1:06:00:: 3 2 -indicator%1:10:00:: 1 9 -indicator%1:10:01:: 2 2 -indict%2:41:00:: 1 2 -indictment%1:10:00:: 1 4 -indictment%1:10:01:: 2 1 -indifference%1:07:00:: 3 1 -indifference%1:12:00:: 1 4 -indifference%1:12:01:: 2 1 -indifferent%5:00:00:heedless:00 3 2 -indifferent%5:00:00:unconcerned:00 2 3 -indifferent%5:00:00:unimportant:00 4 1 -indifferent%5:00:00:uninterested:00 1 4 -indifferently%4:02:00:: 1 1 -indigestion%1:26:00:: 1 1 -indignant%5:00:00:angry:00 1 2 -indignantly%4:02:00:: 1 1 -indignation%1:12:00:: 1 8 -indignity%1:04:00:: 1 1 -indirect%3:00:00:: 2 2 -indirect%5:00:00:mediate:00 1 8 -indirection%1:04:00:: 1 1 -indirectly%4:02:00:: 1 7 -indiscriminate%5:00:00:undiscriminating:00 1 1 -indiscriminately%4:02:00:: 1 1 -indispensable%3:00:00:: 1 2 -indispensable%5:00:00:necessary:00 2 1 -indistinct%3:00:00:: 1 1 -indistinguishable%5:00:00:same:00 1 1 -individual%1:03:00:: 1 51 -individual%1:18:00:: 2 14 -individual%3:00:00:: 1 38 -individual%5:00:00:independent:00 2 8 -individual%5:00:00:personal:00 4 2 -individual%5:00:00:unshared:00 3 4 -individualism%1:07:00:: 1 9 -individualism%1:09:00:: 3 1 -individualism%1:09:01:: 2 1 -individualist%1:18:00:: 1 3 -individualistic%5:00:00:capitalistic:00 2 1 -individualistic%5:00:00:individual:00 1 1 -individuality%1:07:00:: 1 1 -individualized%5:00:00:personal:00 1 2 -individually%4:02:00:: 1 7 -indoctrinate%2:31:00:: 1 1 -indolence%1:07:00:: 1 1 -indolent%5:00:00:idle:00 1 4 -indonesia%1:15:00:: 1 1 -indoor%3:00:00:: 1 2 -indoors%4:02:00:: 1 1 -indorse%2:41:00:: 1 1 -indubitable%5:00:00:unquestionable:00 1 1 -induce%2:31:00:: 4 2 -induce%2:32:00:: 2 6 -induce%2:36:00:: 1 11 -induce%2:36:01:: 3 5 -induced%3:00:00:: 1 1 -inducement%1:16:00:: 1 1 -induct%2:41:00:: 1 3 -induction%1:09:00:: 3 1 -induction%1:11:00:: 1 2 -induction%1:19:00:: 2 1 -indulge%2:34:00:: 2 2 -indulge%2:34:12:: 3 1 -indulge%2:41:01:: 1 2 -indulgent%3:00:00:: 1 1 -indulgent%5:00:00:permissive:01 2 1 -industrial%3:00:00:: 2 3 -industrial%3:01:00:: 1 20 -industrial%3:01:01:: 3 2 -industrial%5:00:00:blue-collar:00 4 2 -industrial_park%1:15:00:: 1 1 -industrial_revolution%1:28:00:: 1 2 -industrialism%1:14:00:: 1 1 -industrialization%1:04:00:: 1 2 -industrious%5:00:00:diligent:00 1 1 -industriously%4:02:00:: 1 1 -industry%1:04:00:: 2 15 -industry%1:14:00:: 1 56 -ineffable%5:00:00:inexpressible:00 1 1 -ineffectively%4:02:00:: 1 1 -ineligible%3:00:00:: 1 1 -inept%5:00:00:incompetent:00 2 1 -inept%5:00:00:infelicitous:00 1 1 -ineptly%4:02:00:: 1 1 -inequality%1:07:00:: 1 1 -inert%5:00:00:nonmoving:00 1 2 -inert%5:00:00:unreactive:00 2 1 -inertia%1:07:01:: 1 1 -inescapable%5:00:00:inevitable:00 1 4 -inescapably%4:02:00:: 1 1 -inevitability%1:07:00:: 1 1 -inevitable%1:11:00:: 1 1 -inevitable%3:00:00:: 1 5 -inevitable%5:00:00:predictable:00 2 3 -inevitably%4:02:00:: 1 6 -inevitably%4:02:02:: 2 2 -inexcusable%3:00:00:: 1 1 -inexhaustible%5:00:00:infinite:00 1 1 -inexorable%5:00:00:implacable:00 1 1 -inexorable%5:00:00:inflexible:02 2 1 -inexorably%4:02:00:: 1 1 -inexpensive%3:00:00:: 1 4 -inexperience%1:09:00:: 1 2 -inexperienced%3:00:00:: 1 3 -inexperienced_person%1:18:00:: 1 1 -inexplicable%3:00:00:: 1 2 -inexpressible%3:00:00:: 1 1 -inextricable%3:00:00:: 1 1 -infallible%3:00:00:: 1 1 -infamous%5:00:00:disreputable:00 1 2 -infancy%1:28:00:: 1 3 -infant%1:18:00:: 1 3 -infantile%5:00:00:immature:02 1 2 -infantry%1:14:00:: 1 13 -infantryman%1:18:00:: 1 2 -infatuation%1:12:00:: 1 2 -infect%2:29:00:: 3 1 -infect%2:29:01:: 2 2 -infect%2:31:00:: 1 2 -infected%5:00:01:septic:00 1 1 -infection%1:26:00:: 1 9 -infectious%3:00:00:: 2 4 -infectious%5:00:00:septic:00 1 7 -infectious_disease%1:26:00:: 1 3 -infectious_hepatitis%1:26:00:: 1 2 -infective%5:00:00:unhealthful:00 1 2 -infer%2:31:00:: 1 3 -infer%2:32:01:: 2 1 -inference%1:09:00:: 1 6 -inferential%3:01:00:: 1 1 -inferential%5:00:01:deductive:00 2 1 -inferior%3:00:01:: 1 2 -inferior%3:00:02:: 2 1 -inferior%5:00:00:junior:00 3 1 -inferiority%1:07:00:: 2 1 -inferiority%1:26:00:: 1 1 -inferiority_complex%1:12:00:: 1 1 -infernal%3:01:00:: 1 1 -infernal%5:00:00:cursed:00 3 1 -infernal%5:00:00:evil:00 2 1 -infertile%3:00:00:: 1 1 -infest%2:38:00:: 1 2 -infested%5:00:00:troubled:00 1 2 -infidelity%1:07:00:: 1 2 -infield%1:06:00:: 1 4 -infielder%1:18:00:: 1 1 -infiltrate%2:38:01:: 1 2 -infiltrate%2:41:00:: 2 1 -infiltration%1:04:00:: 1 5 -infinite%3:00:00:: 1 8 -infinitely%4:02:00:: 2 1 -infinitely%4:02:01:: 1 1 -infinitive%1:10:00:: 1 1 -infirm%5:00:00:ill:01 1 1 -infirmary%1:06:00:: 1 1 -infirmity%1:26:00:: 1 1 -inflame%2:29:01:: 1 2 -inflamed%5:00:00:light:06 2 1 -inflamed%5:00:00:unhealthy:00 1 1 -inflammatory%5:00:00:unhealthy:00 1 1 -inflate%2:30:00:: 2 1 -inflate%2:30:01:: 1 1 -inflated%5:00:01:increased:00 1 1 -inflation%1:22:00:: 1 1 -inflect%2:32:01:: 1 1 -inflected%5:00:00:derivative:00 1 2 -inflected%5:00:00:finite:02 2 1 -inflection%1:10:00:: 2 1 -inflection%1:24:00:: 1 1 -inflexible%3:00:02:: 1 1 -inflict%2:32:00:: 1 9 -infliction%1:04:00:: 1 1 -infliction%1:04:01:: 2 1 -inflow%1:22:00:: 1 1 -influence%1:04:00:: 2 10 -influence%1:07:00:: 1 27 -influence%1:09:00:: 3 9 -influence%1:19:00:: 4 3 -influence%2:31:00:: 2 9 -influence%2:41:00:: 1 19 -influent%5:00:00:incoming:00 1 2 -influential%3:00:00:: 1 2 -influx%1:22:00:: 1 1 -inform%2:30:00:: 2 2 -inform%2:32:00:: 1 46 -inform%2:32:10:: 3 1 -informal%3:00:01:: 1 3 -informal%5:00:00:unofficial:00 2 1 -informally%4:02:00:: 1 2 -informant%1:18:00:: 1 1 -information%1:09:00:: 2 47 -information%1:10:00:: 1 102 -information%1:10:02:: 3 1 -informed%3:00:00:: 1 2 -infrared%1:07:00:: 1 1 -infrared%5:00:00:invisible:00 1 2 -infrared_emission%1:19:00:: 1 4 -infrared_radiation%1:19:00:: 1 1 -infrared_spectrum%1:19:00:: 1 1 -infrequent%3:00:00:: 1 2 -infuriate%2:37:00:: 1 3 -infuriating%5:00:00:displeasing:00 1 2 -ingenious%5:00:00:creative:00 1 4 -ingest%2:31:00:: 2 1 -ingest%2:34:00:: 1 2 -inglorious%5:00:00:dishonorable:00 1 1 -ingratitude%1:12:00:: 1 1 -ingredient%1:06:00:: 1 3 -ingredient%1:09:00:: 2 1 -ingroup%1:14:00:: 1 1 -inhabit%2:42:00:: 1 3 -inhabit%2:42:02:: 2 1 -inhabitant%1:18:00:: 1 4 -inhabited%3:00:00:: 1 1 -inhalation%1:04:00:: 1 1 -inherent%5:00:00:intrinsic:00 1 7 -inherit%2:40:00:: 1 14 -inheritance%1:04:00:: 1 2 -inhibit%2:30:00:: 1 6 -inhibit%2:30:01:: 2 1 -inhibited%3:00:00:: 1 1 -inhibition%1:04:00:: 1 3 -inhibition%1:07:00:: 2 2 -inhibitory%5:00:00:restrictive:00 1 2 -inhospitable%3:00:00:: 1 1 -inhuman%5:00:00:inhumane:00 1 1 -inhuman%5:00:00:nonhuman:00 2 1 -inhumane%3:00:00:: 1 2 -initial%1:10:00:: 1 1 -initial%5:00:00:first:00 1 21 -initially%4:02:00:: 1 9 -initiate%2:36:00:: 2 3 -initiate%2:36:01:: 1 9 -initiate%2:41:01:: 3 2 -initiation%1:04:01:: 2 1 -initiation%1:11:00:: 1 2 -initiative%1:04:00:: 2 4 -initiative%1:07:00:: 1 5 -inject%2:29:00:: 1 4 -inject%2:30:00:: 2 3 -injection%1:04:00:: 1 4 -injure%2:29:00:: 1 12 -injured%3:00:00:: 1 7 -injured%5:00:00:wronged:00 2 1 -injury%1:11:00:: 2 7 -injury%1:26:00:: 1 13 -injustice%1:04:00:: 1 2 -ink%1:27:01:: 1 2 -inkling%1:09:00:: 1 1 -inlay%2:36:00:: 1 1 -inlet%1:17:00:: 1 3 -inmate%1:18:00:: 1 2 -inmate%1:18:01:: 2 1 -inmate%1:18:02:: 3 1 -inn%1:06:00:: 1 3 -innate%5:00:00:natural:01 1 1 -inner%3:00:00:: 2 5 -inner%5:00:00:intrinsic:00 3 3 -inner%5:00:00:inward:00 1 16 -inner%5:00:02:exclusive:00 4 2 -inner_city%1:15:00:: 1 2 -inning%1:28:00:: 1 16 -innocence%1:07:01:: 1 5 -innocent%3:00:00:: 1 11 -innocent%5:00:00:harmless:00 2 2 -innocent%5:00:00:naive:00 4 1 -innocent%5:00:00:virtuous:00 3 1 -innocent_of%5:00:00:uninformed:00 1 1 -innovate%2:36:00:: 1 1 -innovation%1:06:00:: 1 3 -innovation%1:09:00:: 2 1 -innumerable%5:00:00:incalculable:00 1 1 -inoculation%1:04:00:: 1 2 -inoperable%5:00:00:unserviceable:00 1 1 -inorganic%3:00:01:: 1 6 -input%1:10:00:: 1 3 -inquest%1:04:00:: 1 1 -inquire%2:31:00:: 2 4 -inquire%2:32:01:: 1 13 -inquiring%3:00:00:: 1 2 -inquiry%1:04:00:: 3 2 -inquiry%1:09:01:: 1 4 -inquiry%1:10:01:: 2 3 -inquisitive%5:00:00:curious:00 1 1 -inquisitor%1:18:00:: 1 1 -inroad%1:04:01:: 1 1 -insane%3:00:00:: 1 11 -insane%5:00:00:foolish:00 2 1 -insanely%4:02:01:: 1 2 -insanity%1:26:00:: 1 1 -inscribe%2:35:00:: 1 2 -inscribed%5:00:00:written:00 1 4 -inscription%1:10:00:: 1 3 -inscrutability%1:07:00:: 1 1 -inscrutable%5:00:00:inexplicable:00 1 1 -insect%1:05:00:: 1 8 -insensitive%3:00:01:: 1 1 -inseparable%5:00:00:indivisible:00 1 1 -insert%2:30:00:: 2 4 -insert%2:35:00:: 1 12 -insert%2:35:01:: 3 3 -inset%1:06:02:: 1 1 -inside%1:15:00:: 2 4 -inside%1:15:01:: 1 4 -inside%3:00:00:: 1 2 -inside%4:02:00:: 1 19 -inside%4:02:01:: 2 14 -inside%5:00:00:interior:00 2 1 -inside_job%1:04:00:: 1 1 -inside_out%4:02:00:: 1 3 -inside_track%1:07:00:: 1 1 -insidiously%4:02:00:: 1 2 -insight%1:09:01:: 3 3 -insight%1:09:02:: 1 9 -insight%1:12:00:: 2 3 -insignificance%1:07:00:: 1 1 -insignificant%5:00:00:inconsiderable:00 1 3 -insignificant%5:00:00:meaningless:00 3 1 -insignificant%5:00:00:minor:06 4 1 -insignificant%5:00:00:unnoticeable:00 2 2 -insignificantly%4:02:01:: 1 1 -insinuation%1:10:00:: 1 4 -insist%2:31:00:: 3 1 -insist%2:32:00:: 1 59 -insist%2:32:03:: 2 4 -insistence%1:10:00:: 1 4 -insistent%5:00:00:continual:00 1 2 -insistent%5:00:00:imperative:00 2 1 -insofar%4:02:00:: 1 3 -insolence%1:07:00:: 1 3 -insolent%5:00:00:disrespectful:00 1 3 -insolent%5:00:00:unashamed:00 2 1 -insolently%4:02:00:: 1 3 -insoluble%3:00:01:: 1 9 -insouciance%1:12:00:: 1 1 -inspect%2:38:00:: 2 1 -inspect%2:39:00:: 1 13 -inspection%1:04:00:: 2 1 -inspection%1:04:01:: 1 10 -inspector%1:18:01:: 1 4 -inspiration%1:06:00:: 2 1 -inspiration%1:09:02:: 1 1 -inspirational%5:00:00:sacred:00 1 1 -inspire%2:32:00:: 3 5 -inspire%2:32:01:: 4 1 -inspire%2:36:00:: 2 5 -inspire%2:37:00:: 1 9 -inspired%5:00:00:glorious:00 1 1 -inspiring%3:00:00:: 1 1 -instability%1:07:01:: 2 1 -instability%1:26:00:: 1 1 -instal%2:35:00:: 1 6 -install%2:35:00:: 1 28 -install%2:41:00:: 2 1 -installation%1:04:00:: 1 4 -installation%1:06:00:: 2 3 -installment%1:21:00:: 1 2 -instance%1:09:00:: 2 4 -instance%1:11:00:: 1 18 -instancy%1:07:01:: 1 1 -instant%1:28:00:: 2 9 -instant%1:28:01:: 1 22 -instant%5:00:00:fast:01 1 2 -instantaneous%5:00:00:fast:01 1 1 -instantly%4:02:00:: 1 10 -instantly%4:02:02:: 2 6 -instead%4:02:00:: 1 36 -instead%4:02:01:: 2 21 -instigate%2:32:00:: 1 2 -instillation%1:04:00:: 1 1 -instinct%1:09:00:: 1 4 -instinctive%5:00:00:natural:01 1 1 -instinctively%4:02:00:: 1 1 -institute%1:14:00:: 1 1 -institute%2:36:00:: 2 5 -institute%2:36:01:: 1 9 -institution%1:04:00:: 4 1 -institution%1:06:00:: 2 2 -institution%1:09:00:: 3 1 -institution%1:14:00:: 1 26 -institutional%3:01:00:: 1 3 -institutionalize%2:40:00:: 1 1 -institutionalized%3:00:00:: 1 1 -institutionalized%5:00:00:institutional:00 2 1 -instruct%2:32:00:: 1 9 -instruct%2:32:01:: 2 9 -instruction%1:04:00:: 3 2 -instruction%1:04:01:: 2 5 -instruction%1:10:04:: 1 11 -instructional%3:01:00:: 1 1 -instructions%1:10:00:: 1 1 -instructive%3:00:00:: 1 1 -instructor%1:18:00:: 1 5 -instrument%1:04:00:: 2 4 -instrument%1:06:00:: 1 23 -instrument%1:18:00:: 3 1 -instrument_flying%1:04:00:: 1 1 -instrument_panel%1:06:00:: 1 1 -instrumental%3:01:00:: 1 2 -instrumentalist%1:18:00:: 1 1 -instrumentality%1:07:00:: 2 1 -instrumentality%1:14:00:: 1 1 -instrumentation%1:04:00:: 2 1 -instrumentation%1:06:00:: 1 3 -insubordination%1:07:00:: 1 1 -insubstantial%3:00:00:: 1 1 -insufficient%3:00:00:: 1 3 -insufficiently%4:02:00:: 1 1 -insularity%1:26:00:: 1 1 -insulate%2:30:00:: 2 2 -insulate%2:30:01:: 1 2 -insulation%1:26:00:: 1 1 -insulin%1:08:00:: 1 3 -insult%1:10:00:: 1 2 -insult%2:32:00:: 1 3 -insulting%5:00:00:offensive:02 1 1 -insuperable%5:00:00:unconquerable:00 1 1 -insurance%1:10:00:: 2 2 -insurance%1:21:02:: 1 7 -insurance_claim%1:04:00:: 1 1 -insurance_company%1:14:00:: 1 4 -insurance_firm%1:14:00:: 1 1 -insurance_premium%1:21:00:: 1 1 -insure%2:31:00:: 1 12 -insure%2:32:00:: 3 2 -insure%2:32:04:: 2 10 -insure%2:40:00:: 4 1 -insured%3:00:00:: 1 1 -insurmountable%3:00:00:: 1 1 -insurrection%1:04:00:: 1 2 -intact%5:00:00:unimpaired:00 2 2 -intact%5:00:00:uninjured:00 3 1 -intact%5:00:00:whole:00 1 5 -intake%1:04:00:: 1 5 -intangible%1:21:00:: 1 1 -integer%1:23:00:: 1 5 -integral%1:09:00:: 1 1 -integral%5:00:00:intrinsic:00 1 3 -integral%5:00:00:whole:00 2 1 -integrate%2:30:00:: 1 6 -integrate%2:30:01:: 3 1 -integrate%2:41:00:: 2 2 -integrated%5:00:00:united:00 1 2 -integrating%1:04:00:: 1 1 -integration%1:04:00:: 1 20 -integration%1:04:02:: 2 2 -integration%1:04:03:: 3 2 -integrity%1:07:00:: 2 1 -integrity%1:26:00:: 1 3 -intellect%1:09:01:: 2 1 -intellect%1:09:02:: 1 5 -intellectual%1:18:00:: 1 3 -intellectual%3:00:00:: 3 1 -intellectual%3:01:00:: 1 10 -intellectual%5:00:00:mental:00 2 3 -intellectually%4:02:00:: 1 2 -intelligence%1:09:00:: 1 7 -intelligence%1:14:00:: 2 1 -intelligence_test%1:04:00:: 1 3 -intelligent%3:00:00:: 1 4 -intelligent%5:00:00:rational:00 4 1 -intelligent%5:00:00:reasonable:00 3 3 -intelligent%5:00:00:sophisticated:00 2 4 -intelligible%5:00:00:comprehensible:00 1 5 -intend%2:31:00:: 1 32 -intend%2:31:01:: 2 6 -intend%2:32:00:: 3 4 -intended%3:00:00:: 1 3 -intense%3:00:00:: 1 20 -intensely%4:02:00:: 1 3 -intensification%1:04:00:: 1 2 -intensify%2:30:00:: 3 2 -intensify%2:30:01:: 2 2 -intensify%2:30:02:: 1 3 -intensifying%3:00:00:: 1 1 -intensity%1:07:00:: 2 12 -intensity%1:07:03:: 1 29 -intensive%5:00:00:intense:00 1 1 -intensively%4:02:00:: 1 1 -intent%1:09:00:: 1 3 -intent%1:10:00:: 2 2 -intent%5:00:00:attentive:00 2 4 -intent%5:00:00:concentrated:00 1 5 -intent_on%5:00:00:resolute:00 1 2 -intention%1:09:00:: 1 12 -intention%1:09:01:: 2 1 -intentional%5:00:00:intended:00 1 2 -intentionally%4:02:00:: 1 1 -intently%4:02:00:: 1 4 -intentness%1:07:00:: 1 1 -inter%2:41:00:: 1 1 -inter%3:00:00:: 1 2 -inter_alia%4:02:00:: 1 1 -interact%2:41:00:: 1 2 -interaction%1:04:00:: 1 15 -intercede%2:32:00:: 1 1 -intercept%1:09:00:: 1 1 -intercept%2:35:00:: 1 5 -interceptor%1:06:00:: 1 1 -interchange%1:04:01:: 2 1 -interchange%1:06:00:: 1 5 -interchangeable%5:00:00:reciprocal:00 1 1 -interconnect%2:42:00:: 1 1 -interconnectedness%1:26:00:: 1 1 -intercontinental%3:00:00:: 1 2 -intercontinental_ballistic_missile%1:06:00:: 1 1 -intercourse%1:10:00:: 1 1 -interdepartmental%3:01:00:: 1 1 -interdependence%1:24:00:: 1 5 -interdependent%5:00:00:dependent:00 1 3 -interest%1:04:01:: 7 3 -interest%1:07:01:: 2 32 -interest%1:07:02:: 3 21 -interest%1:09:00:: 1 62 -interest%1:14:00:: 6 5 -interest%1:21:00:: 4 14 -interest%1:21:03:: 5 7 -interest%2:37:00:: 1 5 -interest%2:42:00:: 3 1 -interest%2:42:01:: 2 2 -interest_rate%1:21:00:: 1 1 -interested%3:00:00:: 1 25 -interested%5:00:00:involved:00 2 1 -interesting%3:00:00:: 1 27 -interestingly%4:02:01:: 1 1 -interface%1:06:00:: 1 3 -interfacial_tension%1:19:00:: 1 3 -interfaith%5:00:00:religious:00 1 1 -interfere%2:41:00:: 2 3 -interfere%2:41:01:: 1 11 -interference%1:04:00:: 2 3 -interference%1:04:01:: 4 1 -interference%1:10:00:: 1 3 -interference%1:11:00:: 3 1 -interfering%1:04:00:: 1 1 -interfering%5:00:00:intrusive:01 1 1 -interferometer%1:06:00:: 1 4 -interim%1:28:00:: 1 1 -interim%5:00:00:impermanent:00 1 2 -interior%1:15:01:: 1 16 -interior%3:00:00:: 1 1 -interior_design%1:04:00:: 1 14 -interior_design%1:09:00:: 2 1 -interior_designer%1:18:00:: 1 10 -interject%2:32:00:: 1 2 -interlace%2:35:00:: 1 3 -interlayer%1:06:00:: 1 2 -interlobular%3:01:00:: 1 8 -interlock%2:30:00:: 1 1 -interlocking%5:00:00:complex:00 1 3 -interlude%1:28:00:: 1 4 -intermarriage%1:26:02:: 1 1 -intermediary%1:18:00:: 1 1 -intermediate%1:27:00:: 1 2 -intermediate%3:00:00:: 1 11 -intermediate%5:00:00:moderate:00 2 1 -intermeshed%5:00:00:tangled:00 1 1 -interminable%5:00:00:long:02 1 4 -intermission%1:04:00:: 1 1 -intermittent%5:00:00:sporadic:00 1 2 -intermolecular%3:01:00:: 1 1 -internal%3:00:00:: 1 10 -internal%5:00:00:domestic:00 3 1 -internal%5:00:00:intramural:00 2 1 -internal%5:00:00:inward:00 4 1 -internal_combustion%1:22:00:: 1 1 -internal_revenue%1:21:00:: 1 2 -internalize%2:31:00:: 1 2 -internally%4:02:00:: 1 2 -international%3:00:00:: 1 19 -international%5:00:00:foreign:02 2 8 -international_law%1:14:00:: 1 14 -internationally%4:02:00:: 1 2 -interne%1:18:00:: 1 1 -interpenetrate%2:35:00:: 1 1 -interpersonal%5:00:00:social:00 1 1 -interplanetary_space%1:15:00:: 1 3 -interplay%1:04:00:: 1 2 -interpose%2:32:00:: 3 1 -interpose%2:38:00:: 2 1 -interpose%2:38:01:: 1 2 -interposition%1:04:00:: 1 1 -interpret%2:31:00:: 1 17 -interpret%2:31:02:: 6 1 -interpret%2:32:00:: 2 10 -interpret%2:32:01:: 5 1 -interpret%2:36:00:: 3 2 -interpret%2:36:01:: 4 2 -interpretable%5:00:00:explicable:00 1 1 -interpretation%1:04:02:: 2 3 -interpretation%1:09:00:: 4 1 -interpretation%1:09:01:: 1 11 -interpretation%1:10:00:: 3 1 -interpretative%5:00:00:instructive:00 1 1 -interpreter%1:18:01:: 1 4 -interpreter%1:18:02:: 2 1 -interpreting%1:09:00:: 1 1 -interrelated%5:00:00:reticulate:00 1 2 -interrelation%1:24:00:: 1 5 -interrelationship%1:24:00:: 1 1 -interrogation%1:10:01:: 1 1 -interrogative%1:10:00:: 1 1 -interrupt%2:30:03:: 2 5 -interrupt%2:30:04:: 3 3 -interrupt%2:32:00:: 1 14 -interruption%1:04:00:: 1 5 -interruption%1:11:00:: 2 1 -intersect%2:38:00:: 1 7 -intersecting%5:00:00:crossed:01 1 1 -intersection%1:06:00:: 2 2 -intersection%1:09:00:: 1 10 -interspecies%3:00:00:: 1 2 -interstate%3:00:00:: 1 1 -interstellar%3:01:00:: 1 4 -interstitial%3:01:00:: 1 2 -intertwine%2:35:00:: 1 2 -intertwined%5:00:00:tangled:00 1 1 -interval%1:07:00:: 3 1 -interval%1:09:00:: 2 8 -interval%1:28:00:: 1 10 -intervene%2:41:00:: 1 4 -intervention%1:04:00:: 1 3 -interview%1:10:00:: 2 3 -interview%1:10:01:: 1 7 -interview%2:32:00:: 1 8 -interview%2:32:01:: 2 5 -interview%2:32:02:: 3 1 -interviewer%1:18:00:: 1 2 -interweave%2:35:00:: 1 2 -interwoven%5:00:00:complex:00 1 2 -intima%1:08:00:: 1 2 -intimacy%1:07:02:: 1 1 -intimal%3:01:00:: 1 1 -intimate%2:32:00:: 1 4 -intimate%2:32:01:: 2 2 -intimate%5:00:00:close:02 1 5 -intimate%5:00:00:friendly:01 4 1 -intimate%5:00:00:personal:00 3 1 -intimate%5:00:01:profound:00 2 1 -intimate%5:00:02:close:02 5 1 -intimately%4:02:00:: 1 2 -intimidate%2:37:00:: 1 2 -intimidate%2:37:01:: 2 1 -intimidation%1:04:01:: 1 2 -intolerable%3:00:00:: 1 3 -intolerable%5:00:00:unacceptable:00 2 1 -intolerance%1:07:02:: 1 1 -intonation%1:10:00:: 1 9 -intone%2:32:00:: 2 1 -intone%2:32:04:: 1 2 -intra%3:00:00:: 1 3 -intractable%3:00:00:: 1 2 -intradepartmental%3:01:00:: 1 1 -intramuscularly%4:02:00:: 1 1 -intransigence%1:07:00:: 1 1 -intrapulmonary%3:01:00:: 1 1 -intrenchment%1:06:00:: 1 2 -intricate%5:00:00:complex:00 1 7 -intrigue%1:09:00:: 1 1 -intrigue%2:42:00:: 1 1 -intrinsic%3:00:00:: 1 2 -intrinsically%4:02:00:: 1 3 -introduce%2:30:03:: 3 9 -introduce%2:31:00:: 8 1 -introduce%2:32:00:: 1 21 -introduce%2:32:02:: 7 1 -introduce%2:35:00:: 6 1 -introduce%2:36:00:: 2 10 -introduce%2:36:01:: 5 1 -introduce%2:38:00:: 4 7 -introduction%1:04:01:: 1 3 -introduction%1:10:00:: 2 2 -introduction%1:10:01:: 3 1 -introduction%1:10:02:: 4 1 -introductory%5:00:00:opening:00 1 3 -introject%1:09:00:: 1 5 -introjected%5:00:00:integrated:02 1 1 -introspective%3:00:00:: 1 1 -intrude%2:38:01:: 1 2 -intrude%2:41:00:: 2 1 -intruder%1:18:00:: 1 1 -intrusion%1:04:02:: 2 1 -intrusion%1:11:00:: 1 2 -intrusive%3:00:01:: 1 1 -intrust%2:40:00:: 1 1 -intuition%1:09:00:: 1 4 -intuition%1:09:01:: 2 1 -intuitive%5:00:00:natural:01 1 2 -inundation%1:19:00:: 1 1 -inure%2:30:00:: 1 3 -invade%2:33:00:: 1 7 -invade%2:38:00:: 2 4 -invader%1:18:00:: 1 2 -invalid%1:18:00:: 1 1 -invalidate%2:41:00:: 1 1 -invaluable%5:00:00:valuable:00 1 1 -invariable%3:00:00:: 1 1 -invariably%4:02:00:: 1 12 -invariant%5:00:02:invariable:00 1 3 -invasion%1:04:00:: 1 3 -invasion%1:11:00:: 2 1 -inveigh%2:32:00:: 1 1 -invent%2:36:00:: 1 14 -invent%2:36:01:: 2 5 -invention%1:04:00:: 3 3 -invention%1:06:00:: 2 6 -invention%1:09:00:: 1 6 -inventive%5:00:00:creative:00 1 1 -inventor%1:18:00:: 1 1 -inventory%1:06:00:: 2 2 -inventory%1:09:00:: 4 1 -inventory%1:10:00:: 1 5 -inventory%1:21:00:: 3 1 -inverse%1:24:01:: 1 2 -inverse%5:00:00:backward:01 2 1 -inverse%5:00:00:reciprocal:00 1 1 -inverse_function%1:24:00:: 1 1 -inversely%4:02:00:: 1 4 -inversion%1:19:00:: 1 1 -invert%2:30:01:: 1 1 -inverted%5:00:00:turned:00 1 1 -invest%2:40:00:: 1 7 -invest%2:41:03:: 2 2 -investigate%2:32:00:: 1 17 -investigate%2:32:01:: 2 11 -investigating%1:04:00:: 1 1 -investigation%1:04:00:: 2 8 -investigation%1:09:00:: 1 16 -investigative%5:00:00:inquiring:00 1 1 -investigator%1:18:00:: 2 1 -investigator%1:18:01:: 1 8 -investigator%1:18:02:: 3 1 -investment%1:04:00:: 1 7 -investment%1:21:00:: 2 5 -investor%1:18:00:: 1 3 -inveterate%5:00:00:addicted:00 1 2 -invincible%5:00:00:unconquerable:00 1 1 -inviolate%5:00:00:uninjured:00 1 1 -invisible%3:00:00:: 1 5 -invitation%1:10:00:: 1 5 -invite%2:32:00:: 4 6 -invite%2:32:01:: 7 2 -invite%2:35:00:: 6 2 -invite%2:37:00:: 3 6 -invite%2:37:01:: 1 7 -invite%2:41:00:: 2 6 -invite%2:41:01:: 5 3 -inviting%3:00:00:: 1 2 -invocation%1:10:00:: 1 1 -invoke%2:32:01:: 2 4 -invoke%2:36:00:: 1 6 -involuntary%3:00:01:: 1 1 -involve%2:42:00:: 3 17 -involve%2:42:01:: 1 56 -involve%2:42:02:: 5 6 -involve%2:42:04:: 2 23 -involve%2:42:07:: 4 12 -involved%3:00:00:: 1 23 -involved%5:00:00:attached:01 3 1 -involved%5:00:00:encumbered:00 2 3 -involved_with%5:00:00:attached:01 1 1 -involvement%1:04:00:: 1 4 -involvement%1:09:00:: 3 1 -involvement%1:24:00:: 2 1 -invulnerability%1:26:00:: 1 1 -invulnerable%3:00:00:: 1 1 -inward%3:00:00:: 1 5 -inward%4:02:00:: 1 1 -inwardly%4:02:00:: 1 2 -iodide%1:27:00:: 1 7 -iodinate%2:30:00:: 1 2 -iodinated%3:01:00:: 1 5 -iodinating%3:00:00:: 1 3 -iodination%1:22:00:: 1 2 -iodine%1:27:00:: 1 17 -iodoamino_acid%1:27:00:: 1 1 -iodocompound%1:27:00:: 1 1 -iodoprotein%1:27:00:: 1 1 -iodothyronine%1:27:00:: 1 1 -iodotyrosine%1:27:00:: 1 1 -ion%1:17:00:: 1 8 -ion_exchange%1:22:00:: 1 1 -ionic%3:01:00:: 1 3 -ionized%3:00:00:: 1 2 -ipso_facto%4:02:00:: 1 1 -iran%1:15:00:: 1 1 -iraq%1:15:00:: 1 2 -ireland%1:15:00:: 2 1 -ireland%1:15:01:: 1 2 -irish%1:18:00:: 1 2 -irish%3:01:00:: 1 14 -irishman%1:18:00:: 1 2 -irksome%5:00:00:uninteresting:00 1 1 -iron%1:06:01:: 2 2 -iron%1:27:00:: 1 15 -iron%2:35:00:: 1 2 -iron%5:00:00:robust:00 1 2 -iron_cage%1:26:00:: 1 2 -iron_curtain%1:09:00:: 1 1 -iron_out%2:30:00:: 1 1 -iron_trap%1:09:00:: 1 1 -ironic%5:00:00:humorous:00 1 1 -ironical%5:00:00:humorous:00 2 1 -ironical%5:00:00:incongruous:00 1 5 -ironlike%5:00:00:strong:00 1 1 -irons%1:06:00:: 1 3 -ironshod%5:00:00:shod:00 1 1 -ironworker%1:18:00:: 1 1 -irony%1:07:00:: 2 3 -irony%1:10:01:: 1 5 -irrational%3:00:00:: 1 2 -irrationally%4:02:00:: 1 1 -irreconcilable%3:00:00:: 1 1 -irreducible%3:00:00:: 1 1 -irregular%3:00:00:: 1 4 -irregular%5:00:00:sporadic:00 2 1 -irregularity%1:04:00:: 1 3 -irregularity%1:07:00:: 2 2 -irregularity%1:07:04:: 3 1 -irregularly%4:02:01:: 1 2 -irrelevant%3:00:00:: 1 6 -irremediable%3:00:00:: 1 1 -irreparable%3:00:00:: 1 2 -irreproducibility%1:07:00:: 1 2 -irresistible%3:00:00:: 1 1 -irresolute%3:00:00:: 1 1 -irresolution%1:09:00:: 1 1 -irrespective%4:02:00:: 1 1 -irresponsibility%1:07:00:: 1 1 -irresponsible%3:00:00:: 1 2 -irreverence%1:09:00:: 1 1 -irreversible%3:00:00:: 1 1 -irrevocable%3:00:00:: 1 1 -irrigate%2:30:00:: 1 2 -irrigation%1:04:00:: 1 2 -irritability%1:12:00:: 1 1 -irritable%5:00:00:ill-natured:00 1 1 -irritably%4:02:00:: 2 1 -irritably%4:02:01:: 1 3 -irritate%2:29:00:: 2 1 -irritate%2:37:00:: 1 3 -irritating%5:00:00:disagreeable:00 1 1 -irritation%1:12:01:: 2 1 -irritation%1:26:00:: 1 6 -irruption%1:04:00:: 1 1 -ish%5:00:00:like:00 1 1 -island%1:06:00:: 2 2 -island%1:17:00:: 1 13 -isle%1:17:00:: 1 1 -ism%1:09:00:: 1 2 -isocyanate%1:27:00:: 1 1 -isolate%2:30:00:: 1 12 -isolate%2:30:01:: 2 3 -isolate%2:30:02:: 3 2 -isolated%5:00:00:separate:00 2 5 -isolated%5:00:00:sporadic:00 1 8 -isolated%5:00:01:separate:00 3 4 -isolation%1:04:00:: 4 1 -isolation%1:07:00:: 3 1 -isolation%1:12:00:: 2 1 -isolation%1:26:00:: 1 3 -isolationist%3:01:00:: 1 1 -isomer%1:27:00:: 1 1 -isopleth%1:15:00:: 1 2 -isothermal%5:00:00:equal:00 1 1 -isotonic%3:00:00:: 1 3 -isotonic%3:01:00:: 2 1 -isotopic%3:01:00:: 1 1 -isotropic%3:00:00:: 1 3 -israeli%1:18:00:: 1 1 -issuance%1:04:00:: 1 1 -issue%1:04:01:: 4 1 -issue%1:09:00:: 3 2 -issue%1:09:01:: 1 23 -issue%1:10:00:: 2 3 -issue%2:30:00:: 4 6 -issue%2:32:00:: 1 21 -issue%2:32:01:: 3 12 -issue%2:32:02:: 5 1 -issue%2:41:00:: 2 12 -italian%1:10:00:: 2 1 -italian%1:18:00:: 1 1 -italian%3:01:00:: 1 8 -italic%1:10:02:: 1 1 -italicize%2:36:00:: 1 1 -italy%1:15:00:: 1 6 -itch%2:39:00:: 2 1 -itch%2:39:01:: 1 3 -item%1:06:00:: 3 16 -item%1:09:00:: 4 2 -item%1:10:00:: 1 31 -item%1:24:00:: 2 16 -itemize%2:32:00:: 1 4 -ivory%1:07:00:: 2 2 -ivory%1:27:00:: 1 6 -ivory_black%1:27:00:: 1 1 -ivory_tower%1:09:00:: 1 1 -ivy%1:20:00:: 1 1 -jab%1:04:00:: 2 1 -jab%1:04:01:: 1 1 -jab%2:35:00:: 1 2 -jab%2:35:01:: 2 1 -jabber%2:32:00:: 1 2 -jabbing%1:04:00:: 1 1 -jack_of_all_trades%1:18:01:: 1 1 -jackass%1:18:00:: 1 3 -jackdaw%1:05:00:: 1 1 -jacket%1:06:00:: 1 12 -jacket%1:06:01:: 2 3 -jacket%1:06:02:: 3 1 -jacket%2:35:00:: 1 1 -jacksonian%3:01:00:: 1 1 -jade%1:27:00:: 1 2 -jaded%5:00:00:satiate:00 2 2 -jaded%5:00:00:tired:00 1 3 -jagged%5:00:00:uneven:00 1 3 -jail%1:06:00:: 1 3 -jail%2:41:00:: 1 1 -jam%1:13:00:: 1 3 -jam%2:32:00:: 4 1 -jam%2:35:03:: 3 1 -jam%2:38:00:: 1 1 -jam%2:38:01:: 2 1 -jam_session%1:04:00:: 1 1 -jamaican%1:18:00:: 1 1 -jammed%5:00:00:crowded:00 1 1 -jan%1:28:00:: 1 2 -jangle%2:39:00:: 1 1 -jangling%5:00:00:cacophonous:00 1 2 -janissary%1:18:01:: 1 1 -janitor%1:18:00:: 1 3 -jansenist%1:18:00:: 1 1 -january%1:28:00:: 1 12 -janus-faced%5:00:00:bipolar:00 1 1 -jap%1:18:00:: 1 5 -japan%1:15:00:: 2 3 -japan%1:15:01:: 1 5 -japanese%1:10:00:: 2 1 -japanese%1:18:00:: 1 1 -japanese%3:01:00:: 1 10 -japanese_cherry%1:20:00:: 1 1 -jar%1:06:00:: 1 2 -jar%2:38:00:: 2 1 -jar%2:42:00:: 1 1 -jargon%1:10:00:: 1 1 -jarring%5:00:00:cacophonous:00 1 1 -jaunty%5:00:00:cheerful:00 2 1 -jaunty%5:00:00:fashionable:00 1 1 -java%1:13:00:: 2 1 -java%1:15:00:: 1 2 -jaw%1:08:00:: 1 9 -jaw%2:32:00:: 1 1 -jaw%2:32:02:: 2 1 -jazz%1:04:00:: 1 15 -jazz_festival%1:04:00:: 1 2 -jazz_group%1:14:00:: 1 1 -jazz_musician%1:18:00:: 1 2 -jazzy%5:00:00:rhythmical:00 1 1 -jealous%5:00:00:desirous:00 1 3 -jealous%5:00:00:distrustful:00 2 2 -jealousy%1:12:00:: 1 2 -jeep%1:06:00:: 1 5 -jeer%2:32:00:: 1 3 -jeffersonian%3:01:00:: 1 1 -jejunum%1:08:00:: 1 3 -jelly%1:13:00:: 2 1 -jelly%1:13:01:: 1 1 -jeopardize%2:41:00:: 2 2 -jeopardize%2:42:00:: 1 2 -jeopardy%1:26:00:: 1 2 -jerk%1:04:00:: 2 1 -jerk%1:18:00:: 1 2 -jerk%2:29:00:: 3 2 -jerk%2:35:01:: 1 15 -jerk%2:38:00:: 2 4 -jerking%1:04:00:: 1 1 -jerking%5:00:00:irregular:00 1 1 -jerky%5:00:00:irregular:00 1 4 -jerusalem%1:15:00:: 1 4 -jest%1:10:00:: 1 1 -jest%2:32:00:: 1 1 -jesuit%1:18:00:: 1 2 -jesus%1:18:00:: 1 7 -jesus_christ%1:18:00:: 1 6 -jet%1:06:00:: 1 2 -jet%1:11:00:: 2 1 -jet%2:35:00:: 1 1 -jet_plane%1:06:00:: 1 1 -jetting%5:00:00:running(a):02 1 1 -jew%1:18:00:: 1 55 -jew-baiter%1:18:00:: 1 2 -jewel%1:06:00:: 1 2 -jeweled%5:00:00:adorned:00 1 2 -jeweler%1:18:01:: 1 2 -jeweler's_glass%1:06:00:: 1 1 -jewish%3:01:01:: 1 52 -jibe%1:10:00:: 1 1 -jig%2:38:00:: 1 1 -jilt%2:31:00:: 1 2 -jimdandy%1:18:00:: 1 4 -jimhickey%1:18:00:: 1 3 -jimmy%2:35:00:: 1 1 -jingle%2:39:00:: 1 1 -jingling%5:00:00:reverberant:00 1 1 -jive%2:36:00:: 1 1 -job%1:04:00:: 1 76 -job%1:04:01:: 2 36 -job%1:04:03:: 7 1 -job%1:04:04:: 5 2 -job%1:04:05:: 6 2 -job%1:06:00:: 3 4 -job%1:06:01:: 4 2 -job_lot%1:14:00:: 1 1 -jockey%1:18:00:: 1 1 -jockey%2:33:01:: 1 1 -jocose%5:00:00:humorous:00 1 1 -jocular%5:00:00:humorous:00 1 2 -jog%2:42:00:: 1 1 -joggle%2:38:00:: 1 1 -john%1:06:00:: 1 2 -john_locke%1:18:00:: 1 1 -johnny%1:18:00:: 1 2 -johnny_reb%1:18:00:: 1 1 -join%2:35:00:: 4 7 -join%2:35:01:: 2 18 -join%2:41:00:: 1 75 -join%2:41:01:: 3 8 -join%2:42:01:: 5 1 -join_forces%2:41:00:: 1 2 -joined%5:00:00:married:00 1 1 -joint%1:06:02:: 2 1 -joint%1:08:00:: 1 3 -joint%3:00:00:: 1 4 -joint%5:00:00:shared:00 2 1 -joint_resolution%1:10:00:: 1 4 -joint_snake%1:05:00:: 1 1 -jointly%4:02:00:: 2 1 -jointly%4:02:02:: 1 3 -joke%1:04:00:: 3 1 -joke%1:04:01:: 2 1 -joke%1:10:00:: 1 10 -joke%2:29:00:: 2 1 -joke%2:32:00:: 1 2 -joker%1:18:00:: 1 1 -jolly%5:00:00:joyous:00 1 2 -jolt%1:04:00:: 2 1 -jolt%1:11:00:: 1 1 -jolt%2:38:00:: 1 1 -jolted%5:00:00:agitated:00 2 1 -jolted%5:00:00:agitated:02 1 1 -jonquil%1:20:00:: 1 1 -joss%1:06:00:: 1 1 -jostle%2:38:02:: 1 1 -jot%1:10:00:: 1 1 -jot_down%2:32:00:: 1 1 -jouncing%5:00:00:moving:02 1 1 -journal%1:10:00:: 2 1 -journal%1:10:01:: 1 2 -journalese%1:10:00:: 1 2 -journalism%1:10:00:: 1 4 -journalist%1:18:00:: 1 4 -journey%1:04:00:: 1 17 -journey%2:38:00:: 1 1 -journeying%1:04:00:: 1 1 -joust%1:11:00:: 1 1 -jovial%5:00:00:joyous:00 1 2 -jowl%1:08:00:: 1 2 -joy%1:09:00:: 2 5 -joy%1:12:00:: 1 19 -joyous%3:00:00:: 1 4 -jubilant%5:00:00:elated:00 1 2 -jubilantly%4:02:00:: 1 1 -judaism%1:14:00:: 1 2 -judge%1:18:00:: 1 6 -judge%1:18:01:: 2 3 -judge%2:31:00:: 2 8 -judge%2:31:01:: 3 6 -judge%2:31:02:: 1 11 -judge%2:32:00:: 4 1 -judgement_day%1:28:00:: 1 1 -judgment%1:04:00:: 3 4 -judgment%1:04:02:: 2 11 -judgment%1:07:00:: 6 1 -judgment%1:09:00:: 4 3 -judgment%1:09:04:: 1 19 -judgment%1:10:00:: 5 1 -judicial%5:00:00:legal:00 1 1 -judiciary%1:14:00:: 1 1 -jug%1:06:00:: 1 1 -juice%1:13:00:: 1 2 -juicy%3:00:00:: 1 1 -juicy%5:00:00:profitable:00 3 1 -juicy%5:00:00:sexy:00 2 1 -juju%1:09:00:: 1 1 -jukebox%1:06:00:: 1 1 -julius_caesar%1:18:00:: 1 1 -july%1:28:00:: 1 13 -jumble%1:26:00:: 1 3 -jumble%2:42:00:: 1 1 -jumbled%5:00:00:untidy:00 1 2 -jump%2:30:00:: 4 2 -jump%2:30:01:: 7 1 -jump%2:33:00:: 3 4 -jump%2:33:03:: 6 1 -jump%2:38:00:: 1 19 -jump%2:38:04:: 2 6 -jump%2:42:00:: 5 1 -jump_off%2:30:00:: 1 1 -jump_on%2:38:00:: 1 1 -jump_out%2:42:00:: 1 1 -jump_seat%1:06:00:: 1 1 -jumping_up_and_down%1:04:00:: 1 1 -jumpy%5:00:00:tense:03 1 1 -junction%1:06:00:: 2 1 -junction%1:15:00:: 1 1 -juncture%1:11:00:: 1 1 -june%1:28:00:: 1 26 -june_14%1:28:00:: 1 1 -june_21%1:28:00:: 1 1 -jungian%3:01:00:: 1 1 -jungle%1:17:00:: 1 3 -junior%1:18:00:: 3 1 -junior%1:18:01:: 2 2 -junior%1:18:02:: 1 3 -junior%3:00:00:: 1 3 -junior%5:00:00:intermediate:00 2 2 -junior-grade%5:00:00:junior:00 1 1 -junior_high%1:14:00:: 1 2 -junior_high_school%1:14:00:: 1 1 -junk%1:27:00:: 1 1 -junk%2:40:00:: 1 1 -junkyard%1:15:00:: 1 1 -jupiter%1:17:00:: 1 7 -jurisdiction%1:07:02:: 1 4 -jurisdiction%1:15:00:: 2 1 -jurisprudence%1:09:00:: 1 2 -jurisprudentially%4:02:00:: 1 1 -jurist%1:18:00:: 1 1 -juror%1:18:00:: 1 2 -jury%1:14:00:: 1 21 -jury%1:14:01:: 2 2 -just%3:00:00:: 1 4 -just%4:02:00:: 1 162 -just%4:02:01:: 3 52 -just%4:02:03:: 4 33 -just%4:02:04:: 5 13 -just%4:02:05:: 2 95 -just_about%4:02:00:: 2 2 -just_about%4:02:02:: 1 4 -just_as%4:02:02:: 1 1 -just_in_time%4:02:00:: 1 1 -just_now%4:02:00:: 1 1 -just_right%4:02:00:: 1 2 -justice%1:04:00:: 2 6 -justice%1:07:00:: 1 16 -justice%1:18:00:: 3 1 -justice_of_the_peace%1:18:00:: 1 1 -justifiably%4:02:00:: 1 2 -justification%1:09:00:: 1 3 -justification%1:10:00:: 2 2 -justify%2:32:00:: 2 9 -justify%2:32:01:: 1 17 -justify%2:32:02:: 3 2 -justly%4:02:00:: 2 1 -justly%4:02:01:: 1 1 -justness%1:07:01:: 1 1 -jut_out%2:42:00:: 1 1 -jutting%5:00:02:protrusive:00 1 2 -juvenile%3:01:00:: 1 1 -juxtapose%2:35:00:: 1 2 -juxtaposition%1:04:00:: 1 1 -k%1:23:05:: 1 5 -kale%1:21:00:: 1 1 -kamchatka_peninsula%1:15:00:: 1 1 -kamikaze%1:06:00:: 1 1 -kansas%1:15:00:: 1 1 -kansas_city%1:15:00:: 1 11 -kc%1:28:00:: 1 1 -keel_over%2:38:00:: 1 1 -keen%5:00:00:perceptive:00 1 3 -keenly%4:02:00:: 1 2 -keenness%1:09:00:: 1 1 -keep%2:31:00:: 6 9 -keep%2:32:00:: 8 4 -keep%2:34:00:: 11 3 -keep%2:40:00:: 3 32 -keep%2:40:01:: 7 8 -keep%2:41:00:: 14 2 -keep%2:41:01:: 4 22 -keep%2:41:02:: 10 3 -keep%2:41:03:: 5 10 -keep%2:41:05:: 13 2 -keep%2:42:00:: 1 206 -keep%2:42:01:: 9 3 -keep%2:42:02:: 15 1 -keep%2:42:03:: 12 2 -keep%2:42:07:: 2 39 -keep_abreast%2:30:02:: 1 1 -keep_an_eye_on%2:39:00:: 1 5 -keep_an_eye_on%2:41:00:: 2 3 -keep_away%2:41:00:: 1 2 -keep_company%2:42:00:: 1 3 -keep_down%2:30:00:: 1 1 -keep_from%2:41:00:: 1 2 -keep_guard%2:41:00:: 1 1 -keep_in%2:41:00:: 1 2 -keep_note%2:31:00:: 1 1 -keep_on%2:42:00:: 1 16 -keep_out%2:41:00:: 1 3 -keep_to_oneself%2:41:00:: 1 1 -keep_up%2:30:00:: 4 2 -keep_up%2:33:00:: 1 6 -keep_up%2:40:00:: 3 4 -keep_up%2:42:00:: 2 5 -keep_waiting%2:42:00:: 1 1 -keeping%1:04:00:: 2 1 -keeping%1:04:01:: 1 1 -keepsake%1:06:00:: 1 1 -ken%1:09:00:: 1 2 -kent%1:15:00:: 1 1 -kentucky%1:15:00:: 1 3 -kerchief%1:06:00:: 1 1 -kerosene%1:27:00:: 1 1 -kerygma%1:10:00:: 1 3 -ketch%1:06:00:: 1 1 -ketosis%1:26:00:: 1 6 -kettle%1:06:00:: 1 1 -key%1:06:00:: 1 14 -key%1:07:00:: 3 2 -key%1:09:00:: 2 4 -key%1:10:00:: 4 1 -key%2:31:00:: 1 1 -key%5:00:00:important:00 1 8 -keyboard%1:06:01:: 1 2 -keyed%5:00:00:adjusted:00 1 1 -keyhole%1:06:00:: 1 2 -keynote%1:09:00:: 2 1 -keynote%1:10:01:: 1 1 -keynote%2:30:00:: 1 2 -keynote%2:32:00:: 2 1 -khaki%5:00:00:chromatic:00 1 1 -khartoum%1:15:00:: 1 1 -khmer%1:10:00:: 1 1 -kick%1:04:00:: 1 3 -kick%1:12:00:: 2 1 -kick%2:35:00:: 3 7 -kick%2:35:01:: 1 11 -kick%2:38:00:: 2 9 -kick_back%2:35:00:: 2 1 -kick_back%2:40:00:: 1 1 -kick_in_the_butt%1:04:00:: 1 1 -kick_one's_heels%2:42:00:: 1 1 -kick_up%1:04:00:: 1 1 -kick_up%2:35:00:: 1 1 -kickoff%1:04:00:: 1 2 -kickoff%1:28:00:: 2 1 -kid%1:18:00:: 1 53 -kid%2:32:00:: 2 2 -kid%2:32:01:: 1 5 -kidnap%2:35:00:: 1 3 -kidnaped%3:44:00:: 1 1 -kidnapper%1:18:00:: 1 4 -kidney%1:08:00:: 1 9 -kill%1:04:00:: 1 3 -kill%1:04:01:: 2 1 -kill%2:30:08:: 3 1 -kill%2:35:00:: 1 103 -kill%2:41:01:: 2 1 -kill_off%2:35:00:: 1 1 -killable%5:00:00:edible:00 1 1 -killer%1:18:00:: 1 8 -killing%1:04:00:: 2 5 -killing%1:11:00:: 1 5 -kilometer%1:23:00:: 1 1 -kind%1:09:00:: 1 126 -kind%3:00:00:: 1 4 -kind%5:00:00:benign:00 3 1 -kind%5:00:00:generous:02 2 1 -kind_of%4:02:00:: 1 7 -kinda%4:02:00:: 1 3 -kindergarten%1:14:00:: 1 1 -kindled%5:00:00:lighted:00 1 1 -kindly%4:02:00:: 1 1 -kindly%5:00:00:benevolent:00 2 1 -kindly%5:00:00:kind:00 1 1 -kindred%5:00:00:similar:00 1 2 -kinesthetic%3:01:00:: 1 4 -kinesthetically%4:02:00:: 1 1 -kinetic%3:01:00:: 1 3 -kinetic_energy%1:19:00:: 1 4 -king%1:18:00:: 1 19 -king%1:18:01:: 3 1 -king%1:18:02:: 2 1 -king's_evil%1:26:00:: 1 1 -kingdom%1:15:00:: 3 1 -kingdom%1:15:01:: 2 1 -kingdom%1:26:00:: 1 2 -kinship%1:24:00:: 2 1 -kinship%1:24:02:: 1 2 -kipling%1:18:00:: 1 1 -kiss%1:04:00:: 1 7 -kiss%2:35:00:: 1 18 -kissing%1:04:00:: 1 2 -kit%1:06:01:: 1 2 -kit_and_caboodle%1:26:00:: 1 1 -kitchen%1:06:00:: 1 43 -kitchen_sink%1:06:00:: 1 2 -kitchen_table%1:06:00:: 1 1 -kitchenette%1:06:00:: 1 2 -kitten%1:05:00:: 1 7 -kittenish%5:00:00:playful:00 1 1 -kleenex%1:27:00:: 1 1 -km%1:23:00:: 1 1 -knack%1:09:00:: 1 2 -knapsack%1:06:00:: 1 4 -knead%2:35:00:: 1 1 -knee%1:05:01:: 2 3 -knee%1:06:00:: 3 1 -knee%1:08:00:: 1 51 -knee-deep%5:00:00:shallow:01 1 1 -knee_joint%1:08:00:: 1 2 -kneecap%1:08:00:: 1 1 -kneel%2:35:00:: 1 9 -kneeling%5:00:00:unerect:00 1 1 -knickknacks%1:06:01:: 1 1 -knife%1:06:00:: 1 6 -knife%1:06:01:: 2 5 -knife%1:25:00:: 3 1 -knife_thrust%1:04:00:: 1 1 -knifelike%5:00:00:sharp:00 1 1 -knight%1:18:00:: 1 3 -knight-errant%1:18:00:: 1 2 -knight_errantry%1:07:00:: 1 1 -knightly%5:00:00:past:00 1 1 -knit%1:06:02:: 1 1 -knit%2:36:00:: 1 2 -knit%2:36:01:: 2 1 -knob%1:06:00:: 2 1 -knob%1:06:01:: 1 2 -knock%1:09:00:: 2 1 -knock%1:11:01:: 1 2 -knock%2:35:00:: 3 4 -knock%2:35:01:: 2 6 -knock%2:35:04:: 1 7 -knock_about%2:35:00:: 1 1 -knock_against%2:35:00:: 1 1 -knock_down%2:35:00:: 2 1 -knock_down%2:35:01:: 1 5 -knock_off%2:35:00:: 1 3 -knock_off%2:40:03:: 2 1 -knock_out%2:30:00:: 3 1 -knock_out%2:30:01:: 1 4 -knock_out%2:35:00:: 2 2 -knock_over%2:38:00:: 1 2 -knocking%1:11:00:: 1 1 -knoll%1:17:00:: 1 1 -knot%1:06:00:: 2 2 -knot%1:14:00:: 1 2 -knot%1:27:00:: 3 1 -knot%2:35:00:: 2 1 -knot%2:36:00:: 1 1 -knotted%5:00:00:tied:00 1 1 -knotty%5:00:00:difficult:00 1 1 -know%2:31:00:: 4 76 -know%2:31:01:: 1 585 -know%2:31:02:: 3 123 -know%2:31:03:: 2 142 -know%2:31:04:: 5 17 -know%2:31:06:: 6 10 -know%2:31:15:: 7 1 -know-how%1:09:00:: 1 1 -know_the_score%2:31:00:: 1 1 -knowing%5:00:00:informed:00 1 2 -knowledge%1:03:00:: 1 45 -knowledgeable%5:00:00:educated:00 1 1 -known%3:00:00:: 1 35 -known_as%5:00:00:titled:00 1 8 -knuckle%1:08:00:: 1 3 -knuckle_duster%1:06:00:: 1 1 -knuckle_under%2:32:00:: 1 2 -knuckleball%1:04:00:: 1 1 -korea%1:15:00:: 1 4 -korean%1:18:00:: 1 1 -korean%3:01:00:: 1 1 -korean_war%1:04:00:: 1 3 -kosher%5:00:00:clean:04 1 1 -krauthead%1:18:00:: 1 1 -ku_klux_klan%1:14:00:: 1 1 -l%1:23:00:: 1 19 -l%5:00:00:cardinal:00 1 1 -lab%1:06:00:: 1 2 -label%1:10:00:: 4 1 -label%1:10:01:: 1 3 -label%1:10:02:: 2 2 -label%1:27:00:: 3 1 -label%2:31:01:: 4 1 -label%2:32:00:: 1 8 -label%2:32:01:: 3 3 -label%2:35:00:: 2 3 -labeled%3:00:00:: 1 2 -labile%5:00:00:adaptable:00 1 1 -labor%1:04:00:: 2 20 -labor%1:14:00:: 1 20 -labor%2:41:00:: 2 1 -labor%2:41:01:: 1 5 -labor_market%1:04:00:: 1 1 -labor_movement%1:14:00:: 1 1 -labor_union%1:14:00:: 1 3 -laboratory%1:06:00:: 1 19 -laborer%1:18:00:: 1 5 -laborsaving%5:00:00:helpful:00 1 1 -labour%1:14:00:: 1 1 -labrador%1:15:00:: 1 1 -labyrinth%1:06:00:: 1 1 -lace%2:35:01:: 1 1 -laced%3:00:00:: 1 1 -lacerate%2:35:00:: 1 2 -lack%1:26:00:: 1 42 -lack%2:42:00:: 1 31 -lack%2:42:01:: 2 1 -lackey%1:18:00:: 1 1 -lacking%5:00:00:absent:00 1 5 -lacking%5:00:00:inadequate:00 2 4 -lactating%3:00:00:: 1 2 -lacy%5:00:00:fancy:00 1 3 -lad%1:18:00:: 2 1 -lad%1:18:01:: 1 4 -ladder%1:06:00:: 1 5 -laden%5:00:00:full:00 1 3 -ladened%5:00:00:full:00 1 1 -lady%1:18:01:: 2 3 -lady%1:18:02:: 1 27 -ladylike%5:00:00:refined:01 1 1 -lag%1:04:00:: 1 1 -lag%2:38:00:: 1 7 -lager%1:06:00:: 1 1 -laggard%1:18:00:: 1 1 -lagoon%1:17:00:: 1 12 -laid%5:00:00:arranged:00 1 1 -laid_up%5:00:00:ill:01 1 1 -lair%1:15:00:: 1 1 -laissez-faire%5:00:00:capitalistic:00 1 2 -laissez_faire%1:09:00:: 1 2 -laity%1:14:00:: 1 3 -lake%1:17:00:: 1 3 -lam%2:35:00:: 2 1 -lam%2:38:00:: 1 2 -lamb%1:05:00:: 1 5 -lamblike%5:00:00:compliant:00 1 1 -lament%2:37:00:: 1 1 -lamentation%1:10:00:: 1 2 -laminate%2:36:00:: 1 1 -lamp%1:06:00:: 1 12 -lamp%1:06:01:: 2 2 -lamp_chimney%1:06:00:: 1 1 -lamplight%1:19:00:: 1 2 -lampoon%2:32:00:: 1 1 -lance%1:06:00:: 1 2 -land%1:14:00:: 9 1 -land%1:14:01:: 8 2 -land%1:15:01:: 3 11 -land%1:15:02:: 5 7 -land%1:17:00:: 4 9 -land%1:17:01:: 2 18 -land%1:21:00:: 7 2 -land%1:21:01:: 1 22 -land%1:26:00:: 6 2 -land%2:30:00:: 3 3 -land%2:38:00:: 1 16 -land%2:38:01:: 2 4 -land%2:38:03:: 4 2 -land%2:40:00:: 5 1 -land%3:00:00:: 1 1 -land_area%1:07:00:: 1 3 -land_grant%1:21:00:: 1 1 -land_reform%1:04:00:: 1 4 -land_site%1:15:00:: 1 1 -landing%1:06:00:: 2 1 -landing%1:06:01:: 1 6 -landler%1:10:00:: 1 1 -landlocked%5:00:00:inland:00 1 1 -landlord%1:18:00:: 1 3 -landmark%1:11:00:: 2 1 -landmark%1:15:00:: 1 2 -landmass%1:17:00:: 1 2 -landowner%1:18:00:: 1 1 -landrover%1:06:00:: 1 1 -landscape%1:06:00:: 3 2 -landscape%1:06:01:: 2 2 -landscape%1:15:00:: 1 13 -landscaped%5:00:00:improved:00 1 1 -landscaping%1:04:00:: 1 1 -landslide%1:11:00:: 2 1 -landslide%1:11:01:: 1 1 -lane%1:06:00:: 1 4 -lane%1:06:01:: 2 1 -language%1:09:00:: 5 1 -language%1:09:01:: 4 1 -language%1:10:00:: 1 48 -language%1:10:01:: 2 5 -language%1:10:02:: 3 2 -languid%5:00:00:lethargic:00 1 3 -languish%2:30:00:: 1 1 -languor%1:12:00:: 1 1 -lanky%5:00:00:tall:00 1 1 -lanky%5:00:00:thin:03 2 1 -lantern%1:06:00:: 1 4 -lantern_slide%1:06:00:: 1 1 -lao%3:01:00:: 1 3 -laos%1:15:00:: 1 13 -lap%1:08:00:: 1 11 -lap%2:35:00:: 2 1 -lap%2:42:00:: 1 3 -lapel%1:06:00:: 1 1 -lappet%1:08:00:: 1 1 -lapse%1:04:00:: 1 3 -lapse%1:04:01:: 3 1 -lapse%1:28:00:: 2 1 -lapse%2:29:00:: 4 1 -lapse%2:30:00:: 3 1 -lapse%2:30:01:: 2 1 -lapse%2:38:01:: 1 1 -lapsed%5:00:00:irreligious:00 1 1 -large%3:00:00:: 1 139 -large%5:00:00:significant:00 2 2 -large-scale%5:00:00:large:00 1 2 -large_intestine%1:08:00:: 1 1 -large_number%1:23:00:: 1 18 -large_order%1:04:00:: 1 1 -largely%4:02:00:: 1 24 -larger%5:00:00:large:00 1 52 -largest%5:00:00:large:00 1 16 -largest%5:00:00:maximal:00 2 3 -larkspur%1:20:00:: 1 1 -larva%1:05:00:: 1 6 -larval%5:00:00:immature:01 1 1 -las_vegas%1:15:00:: 1 1 -lash%2:35:01:: 1 4 -lash_together%2:35:00:: 1 1 -lasher%1:18:00:: 1 1 -lashing%1:04:00:: 1 1 -lashing%5:00:00:violent:00 1 1 -last%1:04:00:: 3 1 -last%1:24:00:: 2 1 -last%1:28:00:: 1 3 -last%2:42:00:: 1 19 -last%2:42:01:: 2 7 -last%3:00:00:: 2 45 -last%4:02:00:: 1 4 -last%4:02:01:: 2 1 -last%5:00:00:closing:00 3 26 -last%5:00:00:dying(a):00 11 2 -last%5:00:00:high:02 6 1 -last%5:00:00:past:00 1 109 -last%5:00:00:ultimate:00 5 1 -last%5:00:00:unlikely:00 4 2 -last-minute%5:00:00:unpunctual:00 1 1 -last_mentioned%5:00:00:latter(a):00 1 1 -last_resort%1:04:00:: 1 1 -last_rites%1:04:01:: 1 1 -lasting%3:00:04:: 1 2 -lasting%5:00:00:long:02 2 1 -lastly%4:02:00:: 1 1 -lat%1:08:00:: 1 4 -latch%2:35:00:: 1 2 -latched%5:00:00:fastened:00 1 1 -late%3:00:00:: 1 33 -late%3:00:01:: 5 2 -late%3:00:02:: 6 1 -late%4:02:00:: 1 16 -late%4:02:01:: 2 3 -late%5:00:00:dead:01 4 3 -late%5:00:00:past:00 3 3 -late%5:00:00:unpunctual:00 2 4 -lately%4:02:00:: 1 7 -latent%5:00:00:inactive:02 2 1 -latent%5:00:00:potential:00 1 6 -later%4:02:01:: 1 107 -later%4:02:02:: 2 18 -later%5:00:00:late:00 2 3 -later%5:00:00:subsequent:00 1 16 -later_on%4:02:00:: 1 9 -latest%5:00:00:current:00 2 3 -latest%5:00:00:modern:00 1 6 -lather%1:17:00:: 1 3 -lather%2:35:00:: 1 2 -latin%1:10:00:: 1 4 -latin%3:01:00:: 1 1 -latin%5:00:00:emotional:00 2 1 -latin-american%3:01:00:: 1 3 -latin_america%1:15:00:: 1 3 -latin_american%1:18:00:: 1 2 -latitude%1:15:00:: 1 2 -latter%3:00:00:: 1 52 -latter%5:00:00:late:00 2 3 -laudanum%1:06:00:: 1 1 -laugh%1:10:00:: 1 16 -laugh%1:10:02:: 2 1 -laugh%2:29:00:: 1 64 -laugh_at%2:32:00:: 1 8 -laugh_off%2:32:00:: 1 1 -laugh_softly%2:29:00:: 1 1 -laughingly%4:02:00:: 1 1 -laughter%1:10:00:: 1 15 -launch%2:30:00:: 6 2 -launch%2:30:10:: 5 2 -launch%2:35:00:: 2 6 -launch%2:35:02:: 3 4 -launch%2:36:00:: 4 3 -launch%2:41:01:: 1 10 -launcher%1:06:00:: 1 1 -launching%1:04:02:: 1 1 -laundering%1:04:00:: 1 1 -laundry%1:06:01:: 1 1 -laundry_truck%1:06:00:: 1 1 -laurels%1:10:00:: 1 3 -laurels%1:26:00:: 2 1 -lavatory%1:06:00:: 1 2 -lavender%5:00:00:chromatic:00 1 3 -lavish%2:40:00:: 1 2 -lavish%5:00:00:generous:01 1 2 -lavishly%4:02:00:: 1 2 -law%1:04:00:: 6 2 -law%1:09:00:: 3 11 -law%1:09:01:: 4 5 -law%1:09:02:: 5 3 -law%1:10:00:: 2 24 -law%1:14:00:: 1 50 -law%1:14:01:: 7 1 -law-breaking%1:04:00:: 1 1 -law_degree%1:10:00:: 1 1 -law_enforcement%1:04:00:: 1 4 -law_merchant%1:14:00:: 1 2 -law_of_nations%1:14:00:: 1 6 -law_of_nature%1:09:00:: 1 3 -law_officer%1:18:00:: 1 1 -law_school%1:14:00:: 1 1 -lawless%5:00:00:uncontrolled:00 1 1 -lawman%1:18:00:: 1 2 -lawn%1:15:00:: 1 14 -lawyer%1:18:00:: 1 15 -lax%5:00:00:negligent:00 1 1 -laxness%1:07:00:: 1 1 -lay%2:35:00:: 2 11 -lay%2:35:01:: 1 24 -lay%2:35:02:: 4 4 -lay%2:36:00:: 3 5 -lay%2:40:00:: 5 1 -lay%5:00:00:profane:00 1 1 -lay_claim%2:40:00:: 1 1 -lay_down%2:31:00:: 1 8 -lay_eyes_on%2:39:00:: 1 1 -lay_off%2:41:00:: 2 1 -lay_off%2:42:00:: 1 3 -lay_out%2:30:00:: 2 1 -lay_out%2:35:00:: 1 7 -lay_over%2:35:00:: 2 1 -lay_over%2:42:00:: 1 1 -lay_to_rest%2:41:00:: 1 2 -layer%1:06:00:: 1 8 -layer%1:15:00:: 2 1 -layer%2:35:00:: 1 3 -layette%1:06:00:: 1 1 -laying%1:22:00:: 1 2 -laying_on%1:04:00:: 1 1 -layman%1:18:00:: 1 2 -layoff%1:04:00:: 1 2 -layout%1:04:00:: 2 1 -layout%1:09:00:: 1 1 -laze%2:41:00:: 1 1 -lazily%4:02:00:: 1 2 -lazy%5:00:00:idle:00 2 2 -lazy%5:00:00:slow:01 1 4 -lb%1:23:00:: 1 10 -lead%1:04:01:: 4 3 -lead%1:07:02:: 1 7 -lead%1:09:00:: 3 3 -lead%1:10:01:: 6 1 -lead%1:25:00:: 5 1 -lead%1:27:00:: 2 6 -lead%2:32:00:: 5 17 -lead%2:36:00:: 10 8 -lead%2:38:00:: 4 17 -lead%2:38:01:: 1 40 -lead%2:38:02:: 13 2 -lead%2:41:00:: 7 13 -lead%2:41:12:: 9 9 -lead%2:42:00:: 6 13 -lead%2:42:01:: 8 10 -lead%2:42:02:: 14 1 -lead%2:42:03:: 12 5 -lead%2:42:04:: 2 35 -lead%2:42:08:: 11 6 -lead%2:42:12:: 3 27 -lead_off%2:41:00:: 1 1 -lead_on%2:32:00:: 1 1 -lead_pencil%1:06:01:: 1 1 -lead_sheet%1:10:00:: 1 1 -lead_up%2:30:00:: 1 4 -leaded%5:00:00:fixed:00 1 1 -leaden%5:00:00:cloudy:00 1 2 -leaden%5:00:00:heavy:02 2 1 -leader%1:18:00:: 1 23 -leaders%1:14:00:: 1 10 -leadership%1:04:00:: 1 9 -leadership%1:09:00:: 4 3 -leadership%1:14:00:: 2 6 -leadership%1:26:00:: 3 4 -leading%3:00:00:: 3 2 -leading%5:00:00:purposeful:00 5 1 -leading%5:00:00:superior:01 2 3 -leading%5:00:00:up:00 4 1 -leading%5:00:02:major:06 1 4 -leading_man%1:18:00:: 1 1 -leaf%1:20:00:: 1 20 -leafhopper%1:05:00:: 1 1 -leaflet%1:08:00:: 1 1 -league%1:14:00:: 2 2 -league%1:14:01:: 1 9 -league%2:30:00:: 1 1 -leak%1:17:00:: 1 1 -leak%2:32:00:: 1 1 -leak_out%2:32:00:: 1 4 -leakage%1:11:00:: 1 1 -lean%2:31:10:: 5 1 -lean%2:35:00:: 2 6 -lean%2:38:00:: 1 24 -lean%2:42:00:: 4 1 -lean%2:42:01:: 3 3 -lean%3:00:04:: 1 5 -lean_against%2:35:00:: 1 5 -lean_back%2:38:00:: 1 3 -lean_on%2:35:00:: 1 6 -leaning%5:00:00:inclined:01 1 1 -leap%1:04:00:: 1 5 -leap%1:11:00:: 2 2 -leap%2:30:00:: 2 1 -leap%2:38:00:: 1 22 -leapfrog%1:04:01:: 1 2 -leaping%1:04:00:: 1 1 -leaping%5:00:00:moving:02 1 1 -learn%2:31:00:: 1 90 -learn%2:31:01:: 2 53 -learn%2:31:02:: 4 3 -learn%2:31:03:: 3 6 -learn%2:32:00:: 5 2 -learned%5:00:00:educated:00 2 3 -learned%5:00:00:scholarly:00 1 7 -learned_reaction%1:04:00:: 1 1 -learner%1:18:00:: 1 1 -learning%1:09:00:: 1 4 -learning%1:09:02:: 2 1 -lease%1:10:00:: 2 1 -lease%1:21:00:: 1 1 -lease%2:41:00:: 1 2 -leash%1:06:00:: 1 2 -least%1:23:00:: 1 1 -least%3:00:00:: 1 2 -least%4:02:00:: 1 5 -least_of_all%4:02:00:: 1 1 -leather%1:27:00:: 1 11 -leathered%5:00:00:tough:01 1 1 -leave%1:10:00:: 2 1 -leave%1:28:00:: 1 2 -leave%2:30:01:: 9 14 -leave%2:30:02:: 4 27 -leave%2:30:03:: 14 5 -leave%2:31:02:: 16 3 -leave%2:31:05:: 2 63 -leave%2:38:00:: 5 20 -leave%2:38:01:: 1 146 -leave%2:40:00:: 11 8 -leave%2:40:01:: 12 7 -leave%2:40:02:: 15 3 -leave%2:40:06:: 10 8 -leave%2:41:00:: 8 14 -leave%2:42:00:: 7 16 -leave%2:42:01:: 6 19 -leave%2:42:02:: 3 56 -leave%2:42:03:: 13 5 -leave_behind%2:38:00:: 1 5 -leave_behind%2:40:01:: 2 2 -leave_of_absence%1:28:00:: 1 1 -leave_off%2:30:12:: 3 2 -leave_off%2:31:00:: 2 2 -leave_off%2:42:00:: 1 2 -leave_out%2:31:00:: 2 1 -leave_out%2:31:01:: 1 3 -leavened%3:00:00:: 1 1 -leavening%1:09:00:: 1 1 -leaving%1:04:00:: 1 1 -lecher%1:18:00:: 1 1 -lecture%1:10:00:: 1 8 -lecture%2:32:00:: 2 1 -lecture%2:32:01:: 1 4 -lecturer%1:18:00:: 2 1 -lecturer%1:18:01:: 1 2 -lecturing%1:04:00:: 1 1 -led%3:00:00:: 1 2 -ledge%1:17:00:: 1 1 -ledger%1:06:00:: 2 1 -ledger%1:21:00:: 1 5 -leech%1:05:00:: 1 1 -leer%2:39:00:: 1 3 -leering%5:00:00:malicious:00 1 2 -left%1:06:00:: 4 2 -left%1:08:00:: 3 2 -left%1:14:00:: 2 2 -left%1:15:00:: 1 19 -left%3:00:00:: 1 35 -left%4:02:03:: 1 3 -left%5:00:00:left-handed:00 3 1 -left%5:00:00:unexhausted:00 2 14 -left-hand%5:00:00:left-handed:00 1 2 -left-hander%1:18:00:: 2 1 -left-hander%1:18:01:: 1 2 -left-of-center%5:00:00:left:02 1 1 -left_fielder%1:18:00:: 1 2 -left_hand%1:08:00:: 1 6 -left_over%5:00:00:unexhausted:00 1 3 -left_ventricle%1:08:00:: 1 4 -leftfield%1:06:00:: 1 4 -lefty%1:18:00:: 1 2 -leg%1:06:01:: 3 2 -leg%1:08:01:: 1 75 -leg%1:08:02:: 2 7 -leg%1:25:00:: 4 1 -leg_curling%1:04:00:: 1 1 -leg_extensor%1:04:00:: 1 1 -leg_of_lamb%1:13:00:: 1 1 -legacy%1:21:00:: 1 1 -legal%3:00:00:: 1 11 -legal%3:01:00:: 2 5 -legal%3:01:01:: 4 2 -legal%5:00:00:valid:00 3 3 -legal_age%1:28:00:: 1 1 -legal_holiday%1:28:00:: 1 2 -legal_system%1:09:00:: 1 1 -legally%4:02:01:: 1 2 -legally%4:02:03:: 2 1 -legatee%1:18:00:: 1 1 -legation%1:04:00:: 1 2 -legend%1:10:01:: 1 15 -legendary%5:00:00:known:00 1 3 -legged%3:00:00:: 1 1 -leggy%5:00:02:tall:00 1 1 -legibility%1:07:01:: 1 1 -legion%1:14:03:: 1 1 -legislate%2:41:00:: 1 1 -legislation%1:04:00:: 2 2 -legislation%1:10:00:: 1 10 -legislative%3:01:00:: 2 3 -legislative%3:01:01:: 1 5 -legislator%1:18:00:: 1 8 -legislature%1:14:00:: 1 5 -legitimacy%1:07:00:: 1 1 -legitimate%3:00:00:: 1 1 -legitimate%5:00:00:established:00 3 1 -legitimate%5:00:00:legal:00 4 1 -legitimate%5:00:00:valid:00 2 1 -legitimately%4:02:01:: 1 1 -legitimize%2:41:00:: 1 1 -legume%1:20:00:: 1 1 -leiden_jar%1:06:00:: 1 1 -leisure%1:04:00:: 2 2 -leisure%1:28:00:: 1 3 -leisurely%4:02:00:: 1 2 -leitmotiv%1:10:00:: 1 1 -lemma%1:10:00:: 1 4 -lemon%1:07:00:: 2 2 -lemon%1:13:00:: 1 4 -lemon_meringue_pie%1:13:00:: 1 1 -lemon_tree%1:20:00:: 1 1 -lemonade%1:13:00:: 1 1 -lend%2:40:00:: 2 7 -lend%2:40:01:: 1 7 -lend%2:42:00:: 3 2 -lend_oneself%2:42:00:: 1 1 -lending%1:04:00:: 1 1 -lending_institution%1:14:00:: 1 1 -length%1:07:00:: 1 38 -length%1:07:01:: 2 6 -length%1:07:02:: 3 3 -length%1:07:03:: 4 1 -lengthen%2:30:01:: 1 1 -lengthening%1:04:00:: 1 1 -lengthening%5:00:00:increasing:00 1 2 -lengthily%4:02:00:: 1 1 -lengthwise%4:02:00:: 1 1 -lengthy%5:00:00:long:02 1 6 -lens%1:06:00:: 1 5 -lentil%1:13:00:: 1 1 -leprosy%1:26:00:: 1 1 -lesion%1:26:01:: 1 2 -less%1:23:00:: 1 7 -less%3:00:00:: 1 39 -less%4:02:00:: 1 68 -less%4:02:01:: 2 12 -less_than%4:02:00:: 1 39 -lessen%2:30:00:: 1 5 -lessen%2:30:01:: 3 1 -lessen%2:30:02:: 2 2 -lessened%5:00:00:impaired:00 1 2 -lessening%1:11:00:: 1 5 -lessening%5:00:00:decreasing:00 1 1 -lesser%3:00:00:: 1 6 -lesson%1:04:00:: 4 3 -lesson%1:04:01:: 1 6 -lesson%1:10:00:: 2 4 -lesson%1:10:01:: 3 4 -lest%4:02:00:: 1 3 -lest%4:02:01:: 2 1 -let%2:30:00:: 5 1 -let%2:30:01:: 4 2 -let%2:32:00:: 2 15 -let%2:32:02:: 3 2 -let%2:41:00:: 1 219 -let_alone%4:02:00:: 1 3 -let_down%2:38:00:: 1 7 -let_drive%2:33:00:: 1 1 -let_fly%2:33:00:: 1 1 -let_go%2:35:00:: 1 6 -let_go%2:42:00:: 2 4 -let_go_of%2:35:00:: 1 5 -let_in%2:41:00:: 1 1 -let_it_go%2:41:00:: 1 1 -let_loose%2:32:00:: 1 1 -let_on%2:32:00:: 1 1 -let_out%2:32:00:: 2 2 -let_out%2:32:02:: 1 2 -let_up%2:30:00:: 1 1 -let_up%2:30:01:: 2 1 -letdown%1:12:00:: 1 1 -lethal%5:00:00:fatal:00 1 2 -lethal_dose%1:06:00:: 1 1 -lethality%1:07:00:: 1 1 -lethargy%1:07:00:: 2 1 -lethargy%1:26:00:: 1 2 -letter%1:10:00:: 1 65 -letter%1:10:01:: 2 7 -letter%2:40:00:: 1 1 -letter_writer%1:18:00:: 1 2 -letterhead%1:10:00:: 1 1 -lettering%1:10:00:: 1 3 -letterman%1:18:00:: 1 2 -letters%1:09:00:: 1 1 -letting_down%1:04:00:: 1 1 -level%1:06:00:: 5 1 -level%1:06:03:: 6 1 -level%1:07:00:: 1 69 -level%1:07:01:: 4 5 -level%1:26:00:: 3 15 -level%1:26:01:: 2 22 -level%2:33:02:: 1 4 -level%2:35:01:: 3 1 -level%2:36:00:: 2 1 -level%5:00:00:horizontal:00 3 1 -level%5:00:00:steady:00 2 1 -level%5:00:01:even:01 1 3 -level%5:00:02:even:01 4 1 -level_off%2:30:00:: 1 3 -levelheaded%5:00:00:reasonable:00 1 1 -lever%1:06:00:: 1 1 -levis%1:06:00:: 1 1 -levy%2:40:00:: 1 4 -lewd%5:00:00:dirty:02 1 1 -lexical%3:01:00:: 1 2 -lexicon%1:09:00:: 1 2 -lexicostatistic%3:01:00:: 1 1 -lexicostatistics%1:09:00:: 1 4 -leyden_jar%1:06:00:: 1 1 -leyte%1:04:00:: 1 2 -liability%1:21:00:: 2 1 -liability%1:26:01:: 1 1 -liable%5:00:00:likely:00 1 4 -liable%5:00:00:susceptible:00 3 1 -liable%5:00:01:nonexempt:00 2 1 -liaison%1:10:00:: 2 1 -liaison%1:26:00:: 1 1 -liar%1:18:00:: 1 2 -liberal%1:18:00:: 1 27 -liberal%1:18:01:: 2 1 -liberal%3:00:00:: 3 3 -liberal%5:00:00:broad-minded:00 1 6 -liberal%5:00:00:generous:01 4 3 -liberal%5:00:00:left:02 2 4 -liberal_arts%1:09:00:: 1 1 -liberalism%1:09:00:: 1 6 -liberalism%1:09:01:: 2 1 -liberalize%2:41:00:: 1 1 -liberally%4:02:00:: 1 1 -liberate%2:41:01:: 1 2 -liberate%2:41:02:: 2 1 -liberated%5:00:00:free:02 1 1 -liberation%1:04:02:: 1 1 -libertine%1:18:00:: 1 1 -liberty%1:26:01:: 1 7 -liberty%1:26:02:: 2 2 -liberty%1:26:03:: 3 1 -librarian%1:18:00:: 1 1 -library%1:06:00:: 3 2 -library%1:06:01:: 1 3 -library%1:14:00:: 2 2 -libretto%1:10:00:: 1 1 -license%1:10:00:: 1 4 -license%1:26:01:: 2 3 -license%2:41:00:: 1 2 -license_number%1:10:00:: 1 2 -licensed%5:00:00:authorized:00 1 2 -licensing_fee%1:21:00:: 1 1 -lick%2:31:00:: 3 1 -lick%2:35:00:: 2 7 -lick%2:35:01:: 1 12 -licked%5:00:00:defeated:00 1 1 -licking%1:11:01:: 1 2 -lid%1:08:00:: 1 4 -lie%1:10:00:: 1 13 -lie%2:32:00:: 5 9 -lie%2:35:00:: 2 58 -lie%2:35:01:: 8 1 -lie%2:38:00:: 7 4 -lie%2:42:00:: 1 88 -lie%2:42:01:: 3 15 -lie%2:42:02:: 6 4 -lie%2:42:03:: 4 14 -lie_around%2:42:00:: 1 1 -lie_awake%2:35:00:: 1 2 -lie_dormant%2:41:00:: 1 2 -lie_down%2:38:00:: 1 11 -lie_in%2:42:00:: 1 22 -lie_in_wait%2:33:00:: 1 1 -lie_low%2:39:00:: 1 1 -lieutenant%1:18:00:: 2 7 -lieutenant%1:18:01:: 1 41 -lieutenant%1:18:02:: 3 1 -lieutenant_governor%1:18:00:: 1 3 -life%1:03:00:: 10 5 -life%1:07:01:: 9 5 -life%1:09:00:: 2 54 -life%1:10:00:: 12 2 -life%1:16:00:: 13 1 -life%1:18:00:: 8 5 -life%1:19:00:: 11 3 -life%1:26:00:: 4 29 -life%1:26:01:: 1 66 -life%1:26:02:: 3 41 -life%1:28:00:: 5 22 -life%1:28:01:: 6 18 -life%1:28:02:: 7 5 -life-size%5:00:00:large:00 1 2 -life_class%1:04:00:: 1 3 -life_cycle%1:19:00:: 1 1 -life_eternal%1:26:00:: 1 2 -life_history%1:10:00:: 1 3 -life_principle%1:18:00:: 1 1 -life_science%1:09:00:: 1 1 -life_style%1:07:00:: 1 2 -life_tenant%1:18:00:: 1 1 -lifeless%5:00:00:empty:00 2 1 -lifeless%5:00:01:dead:01 1 2 -lifelike%5:00:00:realistic:00 1 2 -lifelike%5:00:00:unaffected:01 2 1 -lifelong%5:00:00:long:02 1 1 -lifetime%1:28:00:: 1 2 -lift%1:04:02:: 1 1 -lift%2:30:05:: 9 1 -lift%2:30:07:: 10 1 -lift%2:30:09:: 11 1 -lift%2:32:00:: 6 2 -lift%2:32:02:: 5 2 -lift%2:35:00:: 2 10 -lift%2:35:01:: 8 1 -lift%2:38:00:: 1 31 -lift%2:38:01:: 3 2 -lift%2:38:03:: 4 2 -lift%2:40:00:: 7 1 -lift_out%2:35:02:: 1 1 -lift_up%2:37:00:: 2 1 -lift_up%2:38:00:: 1 1 -lifted%5:00:00:raised:00 1 1 -lifter%1:18:00:: 1 4 -ligament%1:08:00:: 1 1 -light%1:06:00:: 2 23 -light%1:07:00:: 7 4 -light%1:07:01:: 4 10 -light%1:07:02:: 11 2 -light%1:09:00:: 10 2 -light%1:09:01:: 3 13 -light%1:09:02:: 12 1 -light%1:15:00:: 5 7 -light%1:18:00:: 8 3 -light%1:19:00:: 1 46 -light%1:26:00:: 9 2 -light%1:26:01:: 6 4 -light%2:30:00:: 1 12 -light%2:34:00:: 2 10 -light%2:38:00:: 3 3 -light%2:43:00:: 4 2 -light%3:00:01:: 1 14 -light%3:00:02:: 5 3 -light%3:00:03:: 4 3 -light%3:00:04:: 3 4 -light%3:00:05:: 2 9 -light%3:00:06:: 6 3 -light%5:00:00:digestible:00 8 2 -light%5:00:00:light-footed:00 11 1 -light%5:00:00:loose:02 9 2 -light%5:00:00:pure:02 10 1 -light%5:00:00:undemanding:01 12 1 -light%5:00:00:unstressed:00 7 2 -light-duty%3:00:00:: 1 1 -light-footed%3:00:00:: 1 3 -light-green%5:00:00:chromatic:00 1 3 -light-haired%3:00:00:: 1 1 -light-headed%5:00:00:frivolous:00 2 1 -light-headed%5:00:00:ill:01 1 1 -light-mindedness%1:07:00:: 1 1 -light_beam%1:19:00:: 1 2 -light_brown%1:07:00:: 1 1 -light_bulb%1:06:00:: 1 2 -light_company%1:14:00:: 1 1 -light_up%2:30:00:: 2 1 -light_up%2:43:01:: 1 1 -light_year%1:23:00:: 1 1 -lighted%3:00:00:: 1 6 -lighted%5:00:00:light:06 2 6 -lighten%2:37:01:: 1 1 -lighthearted%5:00:00:cheerful:00 1 1 -lighting%1:04:01:: 3 1 -lighting%1:06:00:: 2 2 -lighting%1:26:00:: 1 3 -lightly%4:02:00:: 3 2 -lightly%4:02:01:: 4 2 -lightly%4:02:02:: 2 2 -lightly%4:02:04:: 5 2 -lightly%4:02:06:: 1 4 -lightning%1:11:00:: 2 3 -lightning%1:19:00:: 1 8 -lightweight%1:18:00:: 1 1 -lightweight%5:00:00:light:01 1 1 -lignite%1:27:00:: 1 4 -like%2:31:00:: 4 2 -like%2:37:01:: 1 76 -like%2:37:04:: 3 19 -like%2:37:05:: 2 73 -like%2:37:06:: 5 1 -like%3:00:00:: 1 30 -like%3:00:02:: 2 1 -like%3:00:04:: 3 1 -like-minded%5:00:00:like:00 1 2 -like_hell%4:02:00:: 1 2 -like_mad%4:02:00:: 1 1 -like_sin%4:02:00:: 1 1 -like_the_devil%4:02:00:: 1 4 -like_thunder%4:02:00:: 1 2 -likelihood%1:07:00:: 1 2 -likely%3:00:00:: 1 58 -likely%3:00:04:: 2 4 -likely%4:02:00:: 1 9 -likeness%1:07:00:: 1 1 -likewise%4:02:00:: 1 8 -likewise%4:02:01:: 2 3 -liking%1:12:00:: 1 4 -lilac%1:20:00:: 1 3 -lilac%5:00:00:chromatic:00 1 1 -lilt%1:07:00:: 1 1 -limb%1:08:00:: 1 6 -limbic_brain%1:08:00:: 1 1 -limbo%1:26:01:: 1 1 -lime_tree%1:20:01:: 1 1 -limit%1:07:00:: 1 24 -limit%1:15:00:: 4 1 -limit%1:15:02:: 3 1 -limit%1:28:00:: 2 3 -limit%2:30:00:: 3 6 -limit%2:30:01:: 1 23 -limit%2:41:00:: 2 15 -limit_point%1:15:00:: 1 1 -limitation%1:07:00:: 2 3 -limitation%1:09:00:: 1 3 -limitation%1:23:00:: 3 1 -limited%3:00:00:: 1 25 -limited%5:00:00:noncomprehensive:00 3 3 -limited%5:00:00:restricted:00 2 3 -limited_edition%1:10:00:: 1 1 -limiting%5:00:01:restrictive:00 1 3 -limitless%5:00:00:immeasurable:00 1 1 -limp%2:38:00:: 1 3 -limp%2:38:01:: 2 1 -limp%5:00:00:stale:00 2 3 -limp%5:00:00:weak:00 1 3 -lincoln%1:18:00:: 1 1 -linden%1:20:02:: 1 1 -line%1:04:00:: 19 2 -line%1:04:01:: 16 3 -line%1:06:00:: 18 2 -line%1:06:01:: 9 9 -line%1:06:03:: 14 4 -line%1:06:05:: 23 1 -line%1:06:06:: 13 4 -line%1:06:07:: 15 3 -line%1:06:08:: 22 1 -line%1:09:01:: 8 10 -line%1:10:01:: 2 20 -line%1:10:02:: 5 11 -line%1:10:05:: 21 1 -line%1:14:00:: 17 2 -line%1:14:01:: 3 15 -line%1:14:02:: 10 8 -line%1:14:03:: 1 51 -line%1:15:00:: 11 6 -line%1:15:01:: 20 1 -line%1:15:02:: 7 10 -line%1:19:00:: 6 10 -line%1:25:00:: 4 13 -line%1:25:01:: 12 5 -line%2:35:00:: 2 5 -line%2:42:00:: 1 7 -line_coach%1:18:00:: 1 1 -line_double%1:04:00:: 1 1 -line_drive%1:04:00:: 1 1 -line_of_vision%1:15:00:: 1 1 -line_of_work%1:04:00:: 1 1 -line_up%2:30:00:: 4 1 -line_up%2:38:01:: 3 1 -line_up%2:40:00:: 2 1 -line_up%2:42:00:: 1 3 -lineage%1:14:00:: 1 2 -linear%3:00:01:: 2 3 -linear%3:00:02:: 1 4 -linear_algebra%1:09:00:: 1 2 -linear_operator%1:24:00:: 1 10 -linearly%4:02:00:: 1 3 -linearly%4:02:01:: 2 1 -linebacker%1:18:00:: 1 1 -lined%5:00:00:bordered:00 1 3 -lined%5:00:00:rough:00 2 1 -lined_snake%1:05:00:: 1 1 -lineman%1:18:00:: 1 1 -linen%1:06:01:: 1 2 -linen%1:27:00:: 2 1 -liner%1:04:00:: 1 1 -lineup%1:10:00:: 1 1 -linger%2:38:00:: 4 1 -linger%2:38:01:: 3 2 -linger%2:42:00:: 2 2 -linger%2:42:02:: 1 3 -lingering%5:00:00:unforgettable:00 1 2 -lingeringly%4:02:00:: 1 1 -lingual%3:01:00:: 1 1 -lingually%4:02:00:: 1 1 -linguist%1:18:01:: 1 16 -linguistic%3:01:00:: 1 4 -linguistic%3:01:01:: 2 3 -linguistic_unit%1:10:00:: 1 1 -linguistically%4:02:01:: 1 1 -linguistics%1:09:00:: 1 2 -link%1:06:00:: 2 5 -link%1:24:00:: 1 5 -link%2:31:00:: 1 14 -link%2:35:00:: 2 3 -link%2:42:01:: 3 1 -links%1:06:00:: 1 1 -linoleum%1:27:00:: 1 1 -lint%1:27:02:: 1 3 -lion%1:05:00:: 1 2 -lionize%2:41:00:: 1 2 -lip%1:08:00:: 1 57 -lipped%3:00:00:: 1 1 -lipstick%1:06:00:: 1 2 -liquid%1:26:00:: 2 5 -liquid%1:27:00:: 3 4 -liquid%1:27:04:: 1 6 -liquid%3:00:00:: 1 19 -liquid%5:00:00:clear:02 3 1 -liquid%5:00:00:tearful:00 2 1 -liquid_air%1:27:00:: 1 3 -liquid_detergent%1:06:00:: 1 1 -liquid_nitrogen%1:27:00:: 1 2 -liquidate%2:35:00:: 1 2 -liquidation%1:04:00:: 1 2 -liquidation%1:04:01:: 2 1 -liquor%1:13:00:: 1 11 -liquor%1:27:00:: 2 7 -lisbon%1:15:00:: 1 1 -list%1:07:00:: 2 1 -list%1:10:00:: 1 64 -list%2:32:00:: 1 23 -list%2:41:00:: 2 19 -listed%3:00:00:: 1 1 -listen%2:39:00:: 1 60 -listen%2:39:01:: 2 34 -listen%2:41:11:: 3 4 -listen_in%2:39:01:: 1 1 -listener%1:18:00:: 1 9 -listening%5:00:00:attentive:00 1 1 -listless%5:00:00:lethargic:00 1 1 -listlessly%4:02:00:: 1 1 -lit%5:00:00:light:06 1 1 -liter%1:23:00:: 1 5 -literal%5:00:00:exact:00 2 1 -literal%5:00:00:true:00 1 10 -literalism%1:09:00:: 1 1 -literally%4:02:00:: 1 5 -literally%4:02:01:: 2 5 -literalness%1:07:00:: 1 3 -literary%3:01:00:: 1 27 -literary_study%1:09:00:: 1 1 -literary_work%1:10:00:: 1 2 -literate%3:00:00:: 1 1 -literature%1:04:00:: 4 2 -literature%1:09:00:: 2 6 -literature%1:10:00:: 1 60 -literature%1:10:01:: 3 5 -lithe%5:00:00:graceful:00 1 1 -litigant%1:18:00:: 1 1 -litigation%1:04:00:: 1 1 -litter%1:14:00:: 1 4 -litter%1:27:00:: 2 2 -litter%2:35:00:: 2 1 -litter%2:42:00:: 1 1 -littered%5:00:00:untidy:00 1 1 -little%1:23:00:: 1 12 -little%3:00:01:: 1 163 -little%3:00:03:: 2 71 -little%4:02:00:: 1 16 -little%5:00:00:minor:06 5 12 -little%5:00:00:narrow-minded:00 8 1 -little%5:00:00:short:02 3 19 -little%5:00:00:soft:04 7 3 -little%5:00:00:unimportant:00 6 8 -little%5:00:00:young:00 4 12 -little_finger%1:08:00:: 1 1 -little_rock%1:15:00:: 1 1 -little_sister%1:18:00:: 1 1 -livable%3:00:00:: 1 1 -live%2:31:00:: 6 1 -live%2:42:00:: 5 14 -live%2:42:01:: 4 16 -live%2:42:04:: 3 29 -live%2:42:06:: 2 51 -live%2:42:08:: 1 129 -live%3:00:02:: 1 6 -live%5:00:00:alive(p):01 10 3 -live_in%2:34:00:: 1 1 -live_it_up%2:34:00:: 1 1 -live_oak%1:20:00:: 1 1 -live_on%2:34:00:: 1 3 -live_out%2:42:00:: 1 1 -live_up_to%2:42:00:: 1 5 -livelihood%1:21:00:: 1 1 -liveliness%1:04:00:: 1 1 -lively%3:00:00:: 1 7 -liver%1:08:00:: 1 11 -liver%1:13:00:: 2 1 -liver_fluke%1:05:00:: 1 1 -liverpool%1:15:00:: 1 1 -livery_stable%1:06:00:: 1 2 -livestock%1:05:00:: 1 8 -livid%5:00:00:angry:00 3 1 -livid%5:00:00:colorless:02 1 1 -livid%5:00:00:light:06 2 1 -living%1:09:00:: 1 7 -living%1:14:00:: 2 2 -living%1:21:00:: 4 1 -living%1:26:00:: 3 1 -living%3:01:00:: 1 2 -living%3:44:00:: 3 1 -living%5:00:00:absolute:00 4 1 -living%5:00:00:realistic:00 2 2 -living%5:00:01:alive(p):01 9 7 -living_arrangement%1:09:00:: 1 1 -living_room%1:06:00:: 1 12 -living_space%1:23:00:: 1 2 -living_thing%1:03:00:: 1 1 -lizard%1:05:00:: 1 1 -load%1:06:00:: 1 9 -load%1:06:02:: 3 2 -load%1:09:00:: 6 1 -load%1:19:01:: 5 1 -load%1:23:00:: 2 3 -load%1:23:01:: 4 1 -load%2:35:00:: 4 1 -load%2:35:01:: 1 8 -load%2:35:02:: 2 3 -load%2:35:03:: 3 2 -load_up%2:35:00:: 1 1 -loaded%3:00:00:: 2 3 -loaded%5:00:00:full:00 1 6 -loaded%5:00:00:prejudiced:00 3 1 -loaded_down%5:00:00:burdened:00 1 1 -loading%1:06:01:: 1 4 -loading%1:23:00:: 2 2 -loaf%1:13:00:: 1 3 -loaf%2:42:01:: 1 1 -loaf_of_bread%1:13:00:: 1 1 -loan%1:21:00:: 1 19 -loan%2:40:00:: 1 3 -loathe%2:37:00:: 1 3 -loathsome%5:00:00:offensive:01 2 1 -loathsome%5:00:00:unwholesome:00 1 1 -lob%2:35:00:: 1 1 -lobby%1:06:00:: 1 6 -lobby%2:41:00:: 1 1 -lobe%1:08:00:: 1 6 -loblolly%1:13:00:: 1 1 -lobscouse%1:13:00:: 1 1 -lobscuse%1:13:00:: 1 2 -lobster-backed%5:00:00:clothed:00 1 1 -lobular%3:01:00:: 1 1 -lobularity%1:07:00:: 1 1 -lobule%1:08:00:: 1 3 -local%1:06:00:: 1 2 -local%3:00:01:: 1 47 -local%3:00:03:: 2 39 -local%3:01:01:: 4 3 -local%5:00:00:native:01 3 25 -local_call%1:10:00:: 1 2 -local_department%1:14:00:: 1 1 -local_government%1:14:00:: 1 1 -local_option%1:26:00:: 1 1 -locale%1:15:00:: 1 2 -locality%1:15:00:: 1 6 -localization%1:04:00:: 1 2 -locally%4:02:00:: 1 2 -locate%2:30:00:: 4 4 -locate%2:40:00:: 1 16 -locate%2:40:01:: 3 4 -locate%2:42:00:: 2 12 -located%5:00:00:settled:01 1 20 -location%1:03:00:: 1 992 -location%1:04:01:: 3 2 -location%1:04:02:: 2 2 -lock%1:06:00:: 1 6 -lock%1:06:03:: 3 1 -lock%1:08:00:: 2 2 -lock%2:30:00:: 3 4 -lock%2:35:00:: 1 8 -lock%2:35:01:: 2 7 -lock%2:35:02:: 7 1 -lock%2:35:03:: 5 2 -lock%2:35:04:: 4 2 -lock%2:37:00:: 6 1 -lock_in%2:35:00:: 2 1 -lock_in%2:35:01:: 1 1 -lock_up%2:35:00:: 2 3 -lock_up%2:35:01:: 1 3 -locked%5:00:00:fastened:00 1 2 -locker%1:06:00:: 1 4 -locker_room%1:06:00:: 1 2 -lockup%1:06:00:: 1 2 -locust%1:05:00:: 1 2 -lodge%2:32:00:: 3 1 -lodge%2:35:00:: 2 1 -lodge%2:42:02:: 1 3 -lodging%1:06:00:: 1 2 -lodgings%1:06:00:: 1 2 -loft%1:06:00:: 2 1 -loft%1:06:02:: 1 1 -lofty%5:00:00:high:01 2 1 -lofty%5:00:00:noble:01 1 1 -log%1:27:00:: 2 2 -log%1:27:01:: 1 7 -log%2:32:00:: 1 2 -log%2:35:00:: 2 1 -log_cabin%1:06:00:: 1 1 -logarithm%1:10:00:: 1 1 -logger%1:18:00:: 1 1 -logging%1:04:00:: 1 1 -logic%1:09:00:: 1 2 -logic%1:09:02:: 2 2 -logic%1:09:03:: 3 1 -logical%3:00:00:: 1 6 -logical%5:00:00:coherent:00 3 2 -logical%5:00:00:valid:00 2 5 -logically%4:02:00:: 2 1 -logically%4:02:01:: 1 2 -logistic%3:01:00:: 1 1 -logistics%1:04:00:: 1 1 -loins%1:08:00:: 1 1 -loiter%2:42:00:: 1 1 -london%1:15:00:: 1 13 -londoner%1:18:00:: 1 1 -lone%5:00:00:unaccompanied:00 1 1 -lone%5:00:00:unsocial:00 2 1 -loneliness%1:12:00:: 2 1 -loneliness%1:26:00:: 1 4 -lonely%5:00:00:dejected:00 2 4 -lonely%5:00:00:inaccessible:00 3 1 -lonely%5:00:00:unaccompanied:00 1 4 -long%1:28:00:: 1 10 -long%2:37:01:: 2 4 -long%2:37:02:: 1 6 -long%3:00:01:: 2 105 -long%3:00:02:: 1 118 -long%4:02:00:: 1 36 -long%5:00:00:tall:00 3 2 -long-acting%5:00:00:long:02 1 1 -long-distance%5:00:00:long:01 1 1 -long-familiar%5:00:00:familiar:00 1 1 -long-legged%5:00:00:tall:00 1 1 -long-lived%5:00:00:long:02 1 1 -long-range%5:00:00:long:01 2 3 -long-range%5:00:00:long:02 1 4 -long-run%5:00:00:long:02 1 3 -long-shanked%5:00:00:tall:00 1 1 -long-term%5:00:00:long:02 1 6 -long-winded%5:00:00:prolix:00 1 1 -long_ago%4:02:00:: 1 14 -long_bone%1:08:00:: 1 3 -long_haul%1:04:00:: 1 1 -long_island%1:15:00:: 1 4 -long_island_sound%1:17:00:: 1 1 -long_shot%1:04:00:: 1 1 -long_since%4:02:01:: 1 5 -long_time%1:28:00:: 1 15 -longer%4:02:00:: 1 17 -longer%5:00:00:long:01 1 1 -longevity%1:07:00:: 1 1 -longhand%1:10:00:: 1 1 -longhand%5:00:00:written:00 1 1 -longing%1:12:00:: 1 4 -longitude%1:15:00:: 1 1 -longshoreman%1:18:00:: 1 1 -longshot%1:06:00:: 1 1 -longstanding%5:00:00:long:02 1 1 -look%1:04:00:: 2 16 -look%1:07:00:: 3 9 -look%1:07:01:: 1 24 -look%2:29:00:: 3 25 -look%2:31:00:: 8 1 -look%2:32:00:: 7 1 -look%2:39:00:: 1 274 -look%2:39:01:: 2 126 -look%2:39:02:: 4 8 -look%2:41:13:: 6 1 -look%2:42:00:: 5 1 -look_across%2:42:00:: 1 2 -look_after%2:39:00:: 1 5 -look_around%2:39:00:: 1 13 -look_at%2:31:00:: 1 17 -look_at%2:39:01:: 2 6 -look_away%2:39:00:: 1 2 -look_back%2:31:00:: 2 4 -look_back%2:39:00:: 1 11 -look_for%2:35:00:: 1 50 -look_for%2:37:00:: 2 3 -look_forward%2:31:00:: 1 7 -look_into%2:31:00:: 2 2 -look_into%2:32:00:: 1 6 -look_like%2:42:00:: 1 59 -look_on%2:31:00:: 2 1 -look_on%2:39:00:: 1 3 -look_out%2:33:10:: 2 1 -look_out%2:39:00:: 1 7 -look_out_on%2:42:00:: 1 2 -look_out_over%2:42:00:: 1 1 -look_to%2:31:00:: 1 8 -look_to%2:31:01:: 2 4 -look_to%2:37:00:: 3 2 -look_up%2:32:00:: 1 8 -look_upon%2:31:00:: 1 10 -looking%1:04:01:: 1 1 -looking%5:00:00:superficial:00 1 5 -looking_at%1:04:00:: 1 3 -lookup%1:22:00:: 1 8 -loom%1:06:00:: 1 1 -loom%2:42:00:: 2 4 -loom%2:42:02:: 1 7 -loom%2:42:06:: 3 3 -loon%1:05:00:: 2 1 -loon%1:18:00:: 1 1 -loop%1:06:01:: 1 1 -loop%2:36:00:: 2 1 -loop%2:38:01:: 1 1 -loophole%1:06:00:: 2 1 -loophole%1:10:00:: 1 2 -loose%2:35:00:: 2 1 -loose%2:41:00:: 1 1 -loose%3:00:01:: 4 1 -loose%3:00:02:: 2 2 -loose%4:02:00:: 1 2 -loose%5:00:00:inexact:00 6 1 -loose%5:00:00:unconstipated:00 7 1 -loose%5:00:00:uncontrolled:00 3 2 -loose%5:00:00:unofficial:00 5 1 -loose%5:00:02:free:00 1 6 -loose-jointed%5:00:00:lax:01 1 1 -loose-jowled%5:00:00:fat:01 1 1 -loose_end%1:04:00:: 1 1 -loosely%4:02:00:: 1 6 -loosely_knit%5:00:00:distant:02 1 1 -loosen%2:30:01:: 1 5 -loosen_up%2:35:00:: 1 1 -looseness_of_the_bowels%1:26:00:: 1 1 -loot%1:21:00:: 1 2 -loot%1:21:01:: 2 1 -loot%2:40:01:: 1 1 -looted%5:00:00:empty:00 1 1 -lop-eared%5:00:00:eared:00 1 1 -lop_off%2:35:00:: 1 1 -lope%2:38:00:: 1 1 -lopsidedly%4:02:00:: 1 1 -lord%1:18:00:: 3 1 -lord%1:18:01:: 2 3 -lord%1:18:02:: 1 10 -lord's_supper%1:04:00:: 1 1 -lordly%5:00:00:noble:02 1 1 -lordship%1:10:00:: 1 2 -lore%1:09:00:: 1 4 -lorelei%1:18:00:: 1 1 -los_angeles%1:15:00:: 1 11 -lose%2:33:00:: 2 17 -lose%2:33:01:: 9 2 -lose%2:35:00:: 4 7 -lose%2:37:00:: 3 10 -lose%2:39:00:: 6 4 -lose%2:39:01:: 10 1 -lose%2:40:00:: 8 2 -lose%2:40:01:: 5 6 -lose%2:40:02:: 1 123 -lose%2:40:06:: 7 3 -lose_control%2:37:00:: 1 1 -lose_weight%2:29:00:: 1 1 -loser%1:18:01:: 1 2 -losing_streak%1:14:00:: 1 1 -loss%1:04:00:: 3 6 -loss%1:07:00:: 4 4 -loss%1:11:00:: 7 2 -loss%1:11:01:: 5 3 -loss%1:21:00:: 6 2 -loss%1:21:01:: 1 16 -loss%1:22:00:: 2 12 -losses%1:21:00:: 1 6 -lost%1:14:00:: 1 1 -lost%3:00:01:: 1 5 -lost%3:00:02:: 3 3 -lost%3:00:03:: 4 2 -lost%5:00:00:incomprehensible:00 6 1 -lost%5:00:00:unoriented:00 2 5 -lost%5:00:00:unrecoverable:00 5 2 -lot%1:06:00:: 5 3 -lot%1:14:00:: 3 4 -lot%1:14:01:: 6 1 -lot%1:15:00:: 2 5 -lot%1:23:00:: 1 13 -lot%1:26:00:: 4 3 -lotion%1:06:00:: 1 1 -lots%1:23:00:: 1 10 -lotus%1:20:02:: 1 1 -loud%3:00:00:: 1 50 -loud%4:02:00:: 1 1 -loud%5:00:00:tasteless:02 2 1 -loud-voiced%5:00:00:loud:00 1 1 -loudly%4:02:00:: 1 10 -loudly%4:02:04:: 2 1 -loudspeaker%1:06:00:: 1 1 -louisiana%1:15:00:: 1 3 -louisianan%1:18:00:: 1 1 -lounge%2:35:00:: 1 2 -lounge_about%2:42:00:: 1 1 -louse%1:05:01:: 1 2 -louse_up%2:41:00:: 1 2 -lousiness%1:26:00:: 1 1 -lousy%5:00:00:bad:00 1 3 -lousy%5:00:00:dirty:01 2 2 -love%1:09:00:: 2 3 -love%1:12:00:: 1 42 -love%1:12:01:: 4 1 -love%1:18:00:: 3 2 -love%2:37:00:: 1 43 -love%2:37:01:: 3 13 -love%2:37:02:: 2 26 -love_lyric%1:10:00:: 1 1 -loveliness%1:07:00:: 1 2 -lovely%5:00:00:beautiful:00 1 10 -lovely%5:00:00:lovable:00 2 1 -lover%1:18:00:: 1 7 -lover%1:18:01:: 2 2 -loving%3:00:00:: 1 3 -lovingly%4:02:00:: 1 1 -low%3:00:01:: 2 23 -low%3:00:02:: 1 55 -low%3:00:03:: 5 4 -low%4:02:00:: 1 3 -low%5:00:00:contemptible:00 6 3 -low%5:00:00:soft:04 3 11 -low%5:00:00:unrefined:01 4 6 -low-ceilinged%5:00:00:ceilinged:00 1 1 -low-class%3:00:04:: 1 2 -low-cost%5:00:00:cheap:00 1 2 -low-down%1:10:00:: 1 2 -low-down%5:00:00:contemptible:00 1 1 -low-grade%5:00:00:inferior:02 1 1 -low-level%5:00:00:low:02 1 1 -low-lying%5:00:00:low:01 1 1 -low-pitched%3:00:00:: 1 1 -low-sudsing%3:00:00:: 1 1 -low-toned%5:00:00:soft:04 1 2 -low-water_mark%1:26:00:: 1 1 -low_density%1:07:00:: 1 1 -low_frequency%1:07:01:: 1 2 -low_temperature%1:07:00:: 1 4 -lower%2:30:00:: 3 1 -lower%2:30:01:: 2 6 -lower%2:38:00:: 1 15 -lower%5:00:00:bottom(a):00 3 21 -lower%5:00:00:inferior:01 1 5 -lower%5:00:00:junior:00 2 2 -lower-class%3:00:00:: 1 2 -lower-middle-class%5:00:00:middle-class:00 1 4 -lower_class%1:14:00:: 1 1 -lower_jaw%1:08:00:: 1 1 -lower_limit%1:23:00:: 1 3 -lower_rank%1:26:00:: 1 2 -lowered%3:00:00:: 1 2 -lowering%5:00:00:cloudy:00 1 1 -loweringly%4:02:00:: 1 1 -lowland%1:17:00:: 1 1 -lowly%5:00:00:inferior:01 1 1 -lowly%5:00:00:junior:00 2 1 -loyal%3:00:00:: 1 6 -loyalist%1:18:00:: 1 1 -loyalty%1:04:00:: 3 1 -loyalty%1:07:00:: 1 7 -loyalty%1:12:00:: 2 2 -lp%1:06:00:: 1 1 -lucid%5:00:00:clear:00 1 3 -lucidity%1:07:00:: 1 1 -lucifer%1:18:00:: 1 2 -luck%1:19:00:: 2 6 -luck%1:19:01:: 3 2 -luck%1:26:00:: 1 8 -luck_into%2:40:00:: 1 1 -luckily%4:02:00:: 1 1 -lucky%3:00:00:: 2 1 -lucky%5:00:00:fortunate:00 1 11 -ludicrous%5:00:00:humorous:00 1 1 -lug%2:35:00:: 1 5 -luger%1:06:00:: 1 1 -luggage%1:06:00:: 1 6 -lugubrious%5:00:00:sorrowful:00 1 1 -lukewarm%5:00:00:unenthusiastic:00 2 1 -lukewarm%5:00:00:warm:01 1 1 -lull%1:28:00:: 1 4 -lull%2:30:00:: 2 1 -lull%2:37:01:: 1 2 -lullaby%1:10:00:: 1 1 -lumbar%3:01:00:: 1 1 -lumber%1:27:00:: 1 6 -lumber%2:38:00:: 1 1 -luminary%1:18:00:: 1 1 -luminescence%1:19:00:: 1 1 -luminescent%5:00:00:light:06 1 1 -luminosity%1:07:00:: 1 1 -luminous%5:00:00:bright:00 1 3 -lummox%1:18:00:: 1 1 -lump%1:14:00:: 1 2 -lump%1:17:00:: 4 1 -lump%1:18:00:: 3 1 -lump%1:26:01:: 2 1 -lump%2:35:00:: 1 2 -lumpish%5:00:00:stupid:00 1 1 -lunar%3:01:00:: 1 8 -lunatic%5:00:00:insane:00 1 1 -lunation%1:28:00:: 1 2 -lunch%1:13:00:: 1 12 -lunch%2:34:00:: 1 1 -luncheon%1:13:00:: 1 1 -lunchroom%1:06:00:: 1 1 -lung%1:08:00:: 1 30 -lunge%1:04:00:: 1 1 -lunge%2:38:00:: 1 6 -lunkhead%1:18:00:: 1 4 -lurch%1:04:00:: 1 1 -lurch%2:38:00:: 2 3 -lurch%2:38:01:: 3 2 -lurch%2:38:03:: 1 5 -lure%1:07:00:: 1 1 -lure%2:32:00:: 1 6 -lurid%5:00:00:bright:00 3 2 -lurid%5:00:00:sensational:00 2 3 -lurid%5:00:00:violent:00 1 3 -lurk%2:42:00:: 2 1 -lurk%2:42:01:: 1 8 -lurking%5:00:00:concealed:00 1 1 -luscious%5:00:00:sexy:00 1 1 -lush%5:00:00:abundant:00 1 1 -lust%1:04:00:: 2 1 -lust%1:12:00:: 1 1 -luster%1:07:01:: 1 1 -luster%1:07:02:: 2 1 -lustily%4:02:00:: 1 1 -lustre%1:07:00:: 1 1 -lusty%5:00:00:healthy:00 2 1 -lusty%5:00:00:passionate:00 1 1 -luxurious%5:00:00:indulgent:00 1 3 -luxuriously%4:02:02:: 1 1 -luxury%1:07:00:: 1 5 -luxury%1:07:01:: 2 1 -luxury%5:00:00:elegant:00 1 2 -lymph_node%1:08:00:: 1 2 -lymphocyte%1:08:00:: 1 1 -lyophilize%2:30:00:: 1 1 -lyric%1:10:01:: 1 12 -lyric%3:00:00:: 2 1 -lyric%5:00:00:emotional:00 1 3 -lyric_poem%1:10:00:: 1 1 -lyrical%5:00:00:melodious:00 1 1 -lyricist%1:18:00:: 1 4 -m%1:07:00:: 2 5 -m%1:23:00:: 1 5 -ma%1:10:00:: 2 1 -ma%1:18:00:: 1 16 -ma'am%1:18:00:: 1 1 -macabre%5:00:00:alarming:00 1 1 -machine%1:06:00:: 1 33 -machine%1:06:02:: 4 1 -machine%1:14:01:: 3 2 -machine%1:18:00:: 2 2 -machine_gun%1:06:00:: 1 8 -machine_gun%2:33:00:: 1 1 -machine_shop%1:06:00:: 1 1 -machinelike%5:00:00:mechanical:00 1 1 -machinery%1:06:00:: 1 15 -machinery%1:14:00:: 2 3 -machinist%1:18:00:: 1 2 -mackinaw%1:06:03:: 1 1 -macromolecular%3:01:00:: 1 1 -macrophage%1:08:00:: 1 1 -macroscopically%4:02:00:: 1 1 -mad%5:00:00:angry:00 1 12 -mad%5:00:00:insane:00 2 10 -mad%5:00:00:wild:02 3 9 -madam%1:18:00:: 1 1 -maddened%5:00:00:angry:00 1 2 -maddening%5:00:00:displeasing:00 1 2 -made%3:00:00:: 2 1 -made%5:00:00:ready-made:00 1 3 -made_use_of%5:00:00:exploited:00 1 1 -madly%4:02:02:: 1 6 -madman%1:18:00:: 1 3 -madness%1:26:00:: 1 2 -madrigal%2:36:00:: 1 1 -magazine%1:06:02:: 2 2 -magazine%1:10:00:: 1 13 -magazine%1:14:00:: 3 1 -magazine_article%1:10:00:: 1 1 -maggot%1:05:00:: 1 2 -magic%1:09:00:: 1 4 -magic%5:00:00:supernatural:00 1 3 -magical%5:00:00:supernatural:00 1 2 -magical_power%1:07:00:: 1 1 -magician%1:18:01:: 1 5 -magistrate%1:18:00:: 1 1 -magnet%1:06:00:: 1 2 -magnetic%3:00:00:: 2 1 -magnetic%3:01:00:: 1 4 -magnetic_attraction%1:19:00:: 1 1 -magnetic_field%1:19:00:: 1 3 -magnetic_force%1:19:00:: 1 5 -magnetic_moment%1:19:00:: 1 1 -magnetic_needle%1:06:00:: 1 1 -magnetic_resonance%1:19:00:: 1 2 -magnetically%4:02:01:: 1 1 -magnetism%1:19:00:: 1 6 -magnetize%2:30:00:: 1 2 -magnification%1:04:00:: 1 1 -magnificence%1:07:02:: 1 1 -magnificent%5:00:00:impressive:00 1 12 -magnificently%4:02:00:: 1 2 -magnified%5:00:00:increased:00 1 3 -magnify%2:30:00:: 1 4 -magnify%2:30:01:: 3 1 -magnify%2:32:00:: 2 1 -magnifying_glass%1:06:00:: 1 1 -magnitude%1:07:00:: 1 15 -magnitude%1:07:01:: 3 1 -magnitude%1:24:00:: 2 1 -magpie%1:05:00:: 1 1 -mah-jongg%1:04:00:: 1 1 -mahogany%1:20:02:: 1 2 -maid%1:18:01:: 1 13 -maiden%1:18:00:: 1 3 -mail%1:06:01:: 3 1 -mail%1:10:00:: 2 2 -mail%1:10:01:: 1 2 -mail%2:35:00:: 1 12 -mail_order%1:10:00:: 1 1 -mail_out%2:35:00:: 1 1 -mailbox%1:06:00:: 1 4 -mailman%1:18:00:: 1 1 -maimed%1:14:00:: 1 1 -maimed%5:00:00:injured:00 1 1 -main%5:00:00:important:00 1 33 -main_drag%1:06:00:: 1 1 -main_street%1:06:00:: 1 2 -maine%1:15:00:: 1 2 -mainland%1:17:00:: 1 3 -mainly%4:02:00:: 1 11 -maintain%2:32:00:: 4 8 -maintain%2:34:00:: 3 13 -maintain%2:40:00:: 2 38 -maintain%2:40:01:: 5 4 -maintain%2:42:00:: 1 41 -maintained%5:00:01:preserved:01 1 1 -maintenance%1:04:00:: 1 6 -maintenance%1:21:00:: 2 1 -majestic%5:00:00:impressive:00 2 1 -majestic%5:00:00:superior:01 1 1 -majestically%4:02:00:: 1 1 -majesty%1:07:00:: 1 1 -major%1:18:00:: 1 2 -major%2:31:09:: 1 2 -major%3:00:01:: 3 22 -major%3:00:02:: 2 25 -major%3:00:04:: 5 1 -major%3:00:05:: 4 1 -major%3:00:06:: 1 38 -major-general%1:18:00:: 1 3 -major-league_club%1:14:00:: 1 1 -major_axis%1:09:00:: 1 7 -major_league%1:14:00:: 1 4 -majority%1:07:00:: 1 17 -majority%1:23:00:: 2 5 -majority%1:28:00:: 3 1 -majors%1:14:00:: 1 2 -make%1:09:00:: 1 1 -make%2:29:00:: 29 1 -make%2:29:08:: 19 5 -make%2:30:00:: 2 459 -make%2:30:02:: 27 2 -make%2:30:15:: 18 5 -make%2:31:00:: 7 33 -make%2:31:13:: 23 4 -make%2:32:00:: 4 85 -make%2:36:00:: 3 243 -make%2:36:01:: 6 52 -make%2:36:04:: 26 2 -make%2:36:05:: 11 14 -make%2:36:08:: 5 78 -make%2:36:09:: 9 16 -make%2:36:11:: 15 9 -make%2:36:12:: 16 8 -make%2:36:13:: 17 5 -make%2:36:15:: 8 17 -make%2:38:00:: 22 4 -make%2:38:02:: 13 12 -make%2:38:05:: 28 1 -make%2:40:01:: 10 14 -make%2:40:02:: 21 4 -make%2:41:00:: 1 508 -make%2:41:01:: 25 2 -make%2:41:03:: 20 4 -make%2:41:13:: 24 3 -make%2:42:00:: 14 10 -make%2:42:05:: 12 12 -make-work%1:04:00:: 1 1 -make_bold%2:41:00:: 1 1 -make_do%2:41:00:: 1 1 -make_for%2:36:00:: 1 13 -make_fun%2:32:00:: 1 3 -make_good%2:41:00:: 1 1 -make_happy%2:41:00:: 1 1 -make_it%2:41:00:: 2 3 -make_it%2:42:00:: 1 7 -make_love%2:35:00:: 1 1 -make_noise%2:39:00:: 1 2 -make_one's_way%2:38:00:: 1 12 -make_out%2:31:00:: 3 2 -make_out%2:32:00:: 2 2 -make_out%2:39:00:: 1 8 -make_out%2:41:02:: 5 1 -make_out%2:42:00:: 4 1 -make_over%2:36:00:: 2 1 -make_over%2:36:02:: 1 1 -make_peace%2:33:00:: 1 1 -make_possible%2:42:01:: 1 3 -make_sense%2:42:00:: 1 9 -make_sure%2:41:00:: 1 5 -make_up%2:30:00:: 6 1 -make_up%2:36:01:: 5 1 -make_up%2:36:03:: 2 4 -make_up%2:40:00:: 3 3 -make_up%2:41:00:: 4 1 -make_up%2:42:00:: 1 19 -make_up_one's_mind%2:31:00:: 1 10 -make_way%2:38:00:: 1 3 -maker%1:18:00:: 1 8 -makeready%1:04:00:: 1 1 -makeshift%5:00:00:impermanent:00 1 1 -makeup%1:06:00:: 1 1 -making%1:04:00:: 1 7 -maladroit%3:00:00:: 1 1 -malady%1:26:00:: 2 1 -malady%1:26:01:: 1 1 -malaise%1:26:00:: 1 6 -malaria%1:26:00:: 1 2 -male%1:05:00:: 1 6 -male%1:18:00:: 2 4 -male%3:00:00:: 1 8 -male%5:00:01:masculine:01 2 1 -malediction%1:10:00:: 1 1 -maleness%1:07:00:: 1 1 -malevolency%1:07:00:: 1 1 -malfeasant%1:18:00:: 1 1 -malformed%5:00:00:unshapely:00 1 1 -malign%3:00:00:: 1 1 -malignancy%1:26:00:: 1 1 -malinger%2:41:00:: 1 1 -malingering%1:04:00:: 1 1 -malposed%5:00:00:crooked:01 1 1 -maltreat%2:41:00:: 1 1 -mama%1:18:00:: 1 6 -mamma%1:18:00:: 1 5 -mammal%1:05:00:: 1 3 -mammalian%3:01:00:: 1 2 -mammoth%5:00:01:large:00 1 1 -man%1:05:01:: 5 29 -man%1:14:00:: 4 75 -man%1:18:00:: 1 749 -man%1:18:03:: 2 346 -man%1:18:04:: 3 87 -man%1:18:06:: 7 3 -man%1:18:08:: 6 4 -man%2:41:00:: 1 2 -man-of-war%1:06:00:: 1 1 -man-to-man%4:02:00:: 1 1 -man_and_wife%1:14:00:: 1 1 -man_hour%1:28:00:: 1 1 -man_in_the_street%1:18:00:: 1 1 -man_of_affairs%1:18:00:: 1 1 -man_of_letters%1:18:00:: 1 1 -manage%2:41:00:: 2 5 -manage%2:41:01:: 4 3 -manage%2:41:03:: 3 3 -manage%2:41:08:: 5 2 -manage%2:41:09:: 1 27 -management%1:04:00:: 1 19 -management%1:14:00:: 2 8 -management_personnel%1:14:00:: 1 2 -manager%1:18:00:: 1 29 -manager%1:18:01:: 2 21 -managing_editor%1:18:00:: 1 1 -manchester%1:15:00:: 2 1 -manchester%1:15:01:: 1 11 -mandamus%1:10:00:: 1 1 -mandate%1:10:00:: 1 1 -mandate%2:41:00:: 1 1 -mandatory%5:00:00:obligatory:00 1 3 -mane%1:05:00:: 1 1 -maneuver%1:04:02:: 1 5 -maneuver%2:38:00:: 1 5 -maneuverability%1:07:00:: 1 1 -maneuvering%1:04:00:: 1 1 -manfulness%1:07:00:: 1 1 -mangled%5:00:00:injured:00 1 1 -manhattan%1:15:00:: 1 6 -manhood%1:26:00:: 1 2 -mania%1:16:00:: 1 2 -maniac%1:18:00:: 1 4 -maniacal%5:00:00:insane:00 1 2 -manic%5:00:00:wild:02 1 2 -manic-depressive%1:18:00:: 1 1 -maniclike%5:00:00:insane:00 1 1 -manifest%2:32:00:: 1 9 -manifestation%1:10:00:: 2 3 -manifestation%1:11:00:: 1 6 -manifestly%4:02:00:: 1 1 -manifold%1:06:00:: 1 11 -manifold%5:00:00:multiple:00 1 1 -manipulate%2:35:00:: 2 3 -manipulate%2:41:00:: 1 5 -manipulation%1:04:00:: 1 1 -mankind%1:14:00:: 1 5 -manned%3:00:00:: 1 3 -manner%1:07:01:: 2 17 -manner%1:07:02:: 1 49 -manner%1:09:01:: 3 7 -manners%1:07:00:: 1 5 -manometer%1:06:00:: 1 6 -manor%1:06:00:: 1 1 -manor_house%1:06:00:: 1 2 -manpower%1:14:00:: 1 4 -manse%1:06:01:: 1 1 -manservant%1:18:00:: 1 1 -mantel%1:06:00:: 1 2 -mantic%5:00:00:prophetic:00 1 1 -mantle%1:10:00:: 1 1 -mantrap%1:18:00:: 1 1 -manual%1:10:00:: 1 2 -manual_labor%1:04:00:: 1 1 -manufacture%1:04:00:: 1 2 -manufacture%2:36:00:: 1 3 -manufacture%2:36:01:: 2 1 -manufactured%5:00:00:factory-made:00 1 2 -manufacturer%1:14:00:: 1 16 -manufacturer%1:18:00:: 2 4 -manufacturing%1:04:00:: 1 2 -manumission%1:04:00:: 1 1 -manure%1:27:00:: 1 4 -manuscript%1:10:00:: 1 2 -many%3:00:00:: 1 347 -many_a%5:00:00:many:00 1 6 -many_another%5:00:00:many:00 1 2 -many_more%5:00:00:more(a):02 1 3 -manzanita%1:20:01:: 1 1 -manzanita%1:20:02:: 2 1 -map%1:06:00:: 1 7 -map%2:31:01:: 2 1 -map%2:36:00:: 1 3 -map_out%2:36:03:: 1 1 -maple%1:20:00:: 2 1 -maple%1:20:02:: 1 2 -mar%2:30:00:: 1 6 -marathon%1:04:00:: 1 1 -marble%1:06:00:: 2 2 -marble%1:27:00:: 1 8 -marbleized%5:00:00:patterned:00 1 1 -marbleizing%1:07:00:: 1 1 -marbles%1:04:00:: 1 2 -march%1:04:00:: 2 14 -march%1:04:01:: 3 4 -march%1:04:02:: 4 3 -march%1:14:00:: 5 2 -march%1:28:00:: 1 16 -march%2:38:00:: 3 5 -march%2:38:01:: 1 24 -march%2:38:03:: 5 1 -march%2:38:04:: 2 5 -march%2:41:00:: 4 1 -march_on%2:38:00:: 1 3 -marched_upon%3:44:00:: 1 1 -marching%1:04:00:: 1 1 -marching%5:00:00:moving:02 1 3 -mare%1:05:00:: 1 2 -margin%1:07:00:: 2 2 -margin%1:25:00:: 1 6 -marginal%5:00:00:meager:00 3 1 -marginal%5:00:00:minimal:00 2 3 -marginal%5:00:00:peripheral:00 1 4 -marginal_cost%1:07:00:: 1 3 -marginality%1:07:00:: 1 2 -marginally%4:02:00:: 1 1 -maria%1:17:00:: 1 1 -marinate%2:30:00:: 1 2 -marine%1:18:00:: 1 1 -marine%3:01:00:: 1 2 -marine_corps%1:14:00:: 1 5 -marital%3:01:00:: 1 2 -mark%1:07:02:: 5 2 -mark%1:09:01:: 1 5 -mark%1:10:01:: 6 1 -mark%1:10:02:: 2 4 -mark%1:10:03:: 4 2 -mark%1:10:04:: 3 3 -mark%2:30:00:: 5 5 -mark%2:31:01:: 4 9 -mark%2:31:09:: 3 13 -mark%2:32:02:: 2 13 -mark%2:35:02:: 8 1 -mark%2:35:09:: 1 13 -mark%2:39:00:: 7 2 -mark%2:41:00:: 6 2 -mark_off%2:30:00:: 1 1 -marked%3:00:00:: 3 1 -marked%5:00:00:conspicuous:00 2 2 -marked%5:00:00:noticeable:00 1 15 -markedly%4:02:00:: 1 2 -marker%1:06:00:: 1 1 -market%1:04:00:: 1 12 -market%1:06:00:: 3 4 -market%1:14:00:: 2 9 -market%1:14:01:: 4 2 -market%2:40:00:: 1 3 -market_price%1:21:00:: 1 4 -market_value%1:21:00:: 1 4 -marketable%5:00:01:salable:00 1 4 -marketing%1:04:00:: 1 31 -marketplace%1:04:00:: 1 3 -marketplace%1:06:00:: 2 2 -marking%1:07:00:: 2 1 -marking%1:10:00:: 1 1 -marksman%1:18:00:: 1 8 -marksmanship%1:09:00:: 1 3 -marmalade%1:13:00:: 1 1 -maroon%2:40:00:: 1 1 -maroon%5:00:00:chromatic:00 1 1 -marquee%1:06:01:: 1 1 -marriage%1:04:00:: 3 2 -marriage%1:14:00:: 2 10 -marriage%1:26:00:: 1 26 -marriage_bed%1:06:00:: 1 1 -marriage_contract%1:10:00:: 1 3 -marriage_mart%1:14:00:: 1 1 -married%3:00:00:: 1 17 -married_couple%1:14:00:: 1 2 -marrow%1:08:00:: 1 2 -marrowbone%1:13:00:: 1 1 -marry%2:41:00:: 1 44 -marry%2:41:01:: 2 2 -mars%1:17:00:: 1 14 -marsh%1:17:00:: 1 1 -marshal%1:18:00:: 1 5 -marshal%2:30:00:: 3 1 -marshal%2:35:00:: 2 1 -marshal%2:38:00:: 1 1 -marshaling%1:04:00:: 1 1 -marshalling_yard%1:06:00:: 1 1 -martial%5:00:02:military:02 1 1 -martian%1:18:00:: 1 3 -martian%3:01:00:: 1 5 -martini%1:13:00:: 1 2 -martyr%1:18:00:: 1 8 -marvel%1:11:00:: 1 1 -marvel%2:32:00:: 2 1 -marvel%2:32:12:: 1 4 -marvelous%5:00:00:extraordinary:00 1 3 -marvelous%5:00:00:incredible:00 2 3 -marvelously%4:02:00:: 1 1 -marxist%3:01:00:: 1 2 -mary%1:18:00:: 1 2 -mary_magdalene%1:18:00:: 1 1 -maryland%1:15:00:: 1 1 -mascara%1:06:00:: 1 1 -masculine%3:00:01:: 2 1 -masculine%3:00:02:: 1 2 -masculinity%1:07:00:: 1 1 -mash%2:35:00:: 1 1 -mask%1:04:00:: 2 1 -mask%1:06:00:: 1 1 -mask%2:35:00:: 2 1 -mask%2:39:00:: 1 1 -masking%1:04:00:: 1 1 -masonry%1:06:00:: 1 2 -masquerade%2:32:00:: 2 1 -masquerade%2:39:00:: 1 2 -mass%1:04:00:: 4 10 -mass%1:07:00:: 1 35 -mass%1:07:01:: 7 3 -mass%1:14:01:: 6 4 -mass%1:14:02:: 3 12 -mass%1:17:00:: 5 6 -mass%1:23:00:: 2 14 -mass%2:38:00:: 1 3 -mass%5:00:00:general:00 1 6 -mass-spectrometric%3:01:00:: 1 1 -mass_culture%1:09:00:: 1 1 -mass_media%1:10:00:: 1 2 -mass_murder%1:04:00:: 1 1 -mass_rapid_transit%1:06:00:: 1 1 -massachuset%1:10:00:: 1 2 -massachusetts%1:15:00:: 1 5 -massacre%2:30:00:: 1 1 -massage%1:04:00:: 1 1 -massage%2:29:00:: 2 1 -massage%2:35:00:: 1 1 -masses%1:14:00:: 1 3 -masseur%1:18:00:: 1 3 -massive%5:00:00:large:00 1 9 -mast%1:06:00:: 1 3 -masted%3:01:00:: 1 1 -master%1:06:00:: 6 1 -master%1:18:00:: 1 8 -master%1:18:01:: 3 1 -master%1:18:03:: 4 1 -master%1:18:04:: 2 5 -master%1:18:06:: 5 1 -master%2:31:01:: 1 4 -master%2:33:00:: 2 2 -master%2:41:00:: 3 1 -master%5:00:00:skilled:00 1 1 -master's_degree%1:10:00:: 1 1 -master_bedroom%1:06:00:: 1 2 -master_of_ceremonies%1:18:00:: 1 1 -master_of_science%1:10:00:: 1 1 -masterly%5:00:00:skilled:00 1 1 -mastermind%2:31:00:: 1 1 -masterpiece%1:04:00:: 2 2 -masterpiece%1:06:00:: 1 4 -mastery%1:09:00:: 1 4 -mastery%1:26:00:: 2 1 -mat%1:06:00:: 1 4 -mat%1:06:02:: 3 1 -mat%1:06:04:: 2 1 -match%1:06:00:: 1 4 -match%1:06:01:: 4 1 -match%1:06:02:: 3 1 -match%1:11:00:: 2 1 -match%2:30:01:: 5 3 -match%2:35:08:: 3 6 -match%2:40:00:: 2 12 -match%2:42:00:: 1 16 -match%2:42:01:: 4 5 -matched%5:00:00:competitive:00 1 1 -matching%5:00:01:matched:00 2 1 -matching%5:00:02:matched:00 1 2 -matching_funds%1:21:00:: 1 2 -mate%1:06:00:: 5 1 -mate%1:18:00:: 4 1 -mate%1:18:01:: 3 2 -mate%1:18:02:: 1 4 -mate%1:18:04:: 2 2 -mate%2:35:00:: 1 7 -mate%2:35:02:: 2 1 -material%1:06:00:: 3 7 -material%1:06:01:: 4 5 -material%1:10:00:: 2 34 -material%1:27:00:: 1 73 -material%3:00:01:: 2 3 -material%3:00:02:: 3 1 -material%5:00:00:physical:00 4 1 -material%5:00:00:worldly:00 1 5 -materialism%1:26:00:: 1 2 -materialize%2:30:00:: 1 3 -materially%4:02:00:: 1 1 -maternal%3:00:00:: 1 1 -math%1:09:00:: 1 1 -mathematical%3:01:00:: 1 3 -mathematically%4:02:00:: 1 3 -mathematics%1:09:00:: 1 4 -mating%1:04:00:: 1 2 -matriarch%1:18:00:: 1 1 -matriculate%2:41:00:: 1 2 -matrimony%1:26:00:: 1 1 -matrix%1:14:00:: 1 1 -matron%1:18:00:: 1 1 -matsyendra%1:07:00:: 1 1 -matted%5:00:00:tangled:00 1 1 -matter%1:03:00:: 3 7 -matter%1:07:00:: 5 1 -matter%1:09:00:: 2 32 -matter%1:09:01:: 1 35 -matter%1:09:02:: 4 1 -matter%2:42:00:: 1 21 -matter_of_course%1:11:00:: 1 1 -matter_to%2:42:00:: 1 4 -matting%1:06:00:: 1 1 -maturation%1:22:00:: 2 1 -maturation%1:22:01:: 1 2 -mature%2:30:00:: 1 5 -mature%3:00:01:: 3 1 -mature%3:00:02:: 1 4 -mature%5:00:00:developed:00 2 4 -maturing%1:22:01:: 1 2 -maturity%1:26:00:: 2 11 -maturity%1:28:00:: 1 16 -maturity%1:28:01:: 3 1 -mausoleum%1:06:00:: 1 1 -mauve%5:00:00:chromatic:00 1 2 -maxim%1:10:00:: 1 1 -maximal%3:00:00:: 1 2 -maximize%2:30:00:: 1 2 -maximize%2:30:01:: 2 1 -maximum%1:07:00:: 2 1 -maximum%1:23:00:: 1 11 -maximum%3:00:00:: 1 36 -may%1:28:00:: 1 29 -may%2:42:00:: 2 1 -may%2:42:01:: 1 6 -may_day%1:28:00:: 1 1 -may_not%2:42:00:: 1 5 -maybe%4:02:00:: 1 57 -mayflower%1:06:00:: 1 1 -mayor%1:18:00:: 1 9 -maze%1:06:00:: 1 2 -mc%1:28:00:: 1 5 -meadow%1:15:00:: 1 6 -meager%3:00:00:: 1 4 -meal%1:13:00:: 1 20 -mean%1:09:00:: 1 10 -mean%2:31:00:: 4 27 -mean%2:31:01:: 6 8 -mean%2:32:01:: 1 93 -mean%2:32:03:: 3 43 -mean%2:42:00:: 2 89 -mean%2:42:03:: 5 9 -mean%5:00:00:ignoble:01 3 3 -mean%5:00:00:nasty:00 2 6 -mean%5:00:00:normal:01 1 16 -meander%2:38:00:: 1 1 -meandering%5:00:00:indirect:00 1 2 -meaning%1:09:00:: 2 31 -meaning%1:10:00:: 1 48 -meaningful%3:00:00:: 1 8 -meaningfulness%1:07:00:: 1 1 -meaningless%3:00:00:: 1 4 -meanness%1:07:00:: 1 1 -means%1:04:00:: 1 50 -means%1:06:00:: 2 11 -meanwhile%4:02:00:: 2 6 -meanwhile%4:02:01:: 1 10 -measurable%3:00:00:: 1 4 -measurable%5:00:00:important:00 2 1 -measure%1:03:00:: 3 5 -measure%1:04:00:: 5 2 -measure%1:04:01:: 2 5 -measure%1:07:00:: 1 10 -measure%1:10:01:: 7 1 -measure%1:10:02:: 4 2 -measure%1:10:03:: 6 1 -measure%2:30:00:: 2 20 -measure%2:31:00:: 1 35 -measure%2:31:01:: 4 10 -measure%2:42:00:: 3 14 -measure_up%2:42:00:: 1 1 -measured%3:00:00:: 1 9 -measurement%1:04:00:: 2 19 -measurement%1:07:00:: 1 33 -measuring%1:04:00:: 1 2 -meat%1:13:01:: 1 4 -meat_house%1:06:00:: 2 1 -meat_house%1:06:01:: 1 1 -meaty%3:00:00:: 1 1 -mechanic%1:18:00:: 1 1 -mechanic%1:18:01:: 2 1 -mechanical%3:00:00:: 1 10 -mechanical%3:01:00:: 3 1 -mechanical%3:01:01:: 2 2 -mechanically%4:02:00:: 2 1 -mechanically%4:02:01:: 1 1 -mechanics%1:04:00:: 2 2 -mechanics%1:09:00:: 1 3 -mechanism%1:04:00:: 2 3 -mechanism%1:17:00:: 3 2 -mechanism%1:22:00:: 1 8 -mechanistic%5:00:00:mechanical:00 1 1 -mechanized%5:00:00:mechanical:00 1 1 -medal%1:10:00:: 1 4 -medal_of_honor%1:10:00:: 1 1 -meddle%2:41:00:: 1 1 -meddling%1:04:00:: 1 1 -meddling%5:00:00:intrusive:01 1 2 -median%5:00:00:normal:01 1 1 -mediate%2:32:00:: 1 1 -medical%3:00:00:: 2 4 -medical%3:01:00:: 1 29 -medical%3:01:02:: 3 1 -medical_aid%1:04:00:: 1 1 -medical_care%1:04:00:: 1 1 -medical_intern%1:18:00:: 1 1 -medical_man%1:18:00:: 1 1 -medical_practice%1:04:00:: 1 1 -medical_report%1:10:00:: 1 1 -medical_school%1:14:00:: 1 3 -medically%4:02:00:: 1 1 -medication%1:06:00:: 1 2 -medicine%1:04:00:: 3 3 -medicine%1:06:00:: 2 3 -medicine%1:09:00:: 1 5 -medieval%3:01:00:: 1 11 -medieval%5:00:00:nonmodern:00 2 1 -mediocrity%1:07:00:: 1 1 -meditate%2:31:00:: 1 4 -meditation%1:09:00:: 1 1 -meditative%5:00:00:thoughtful:00 1 1 -mediterranean%1:17:00:: 1 1 -medium%1:10:00:: 3 2 -medium%1:10:01:: 1 5 -medium%1:15:01:: 2 4 -medium%1:27:00:: 4 1 -medium%5:00:00:moderate:00 1 5 -medley%1:10:00:: 1 1 -meek%5:00:00:humble:00 1 4 -meekly%4:02:00:: 2 1 -meekly%4:02:02:: 1 1 -meet%1:11:00:: 1 4 -meet%2:33:00:: 10 8 -meet%2:34:00:: 4 23 -meet%2:35:00:: 14 1 -meet%2:38:00:: 12 6 -meet%2:38:01:: 1 49 -meet%2:38:06:: 9 11 -meet%2:39:00:: 13 3 -meet%2:41:00:: 7 14 -meet%2:41:01:: 2 38 -meet%2:41:02:: 6 15 -meet%2:41:03:: 8 12 -meet%2:42:00:: 11 7 -meet%2:42:01:: 5 18 -meet%2:42:02:: 3 32 -meet_up_with%2:38:00:: 1 2 -meeting%1:04:00:: 4 2 -meeting%1:04:02:: 5 1 -meeting%1:11:00:: 3 2 -meeting%1:14:00:: 1 30 -meeting%1:14:01:: 2 4 -megakaryocytic%3:01:00:: 1 1 -megalomania%1:26:00:: 1 1 -megalopolis%1:15:00:: 1 1 -megaton%1:23:02:: 1 1 -megaton_bomb%1:06:00:: 1 5 -mekong%1:17:00:: 1 1 -mekong_river%1:17:00:: 1 1 -melancholy%1:12:00:: 1 4 -melancholy%5:00:00:sad:00 1 3 -melee%1:04:00:: 1 2 -melioration%1:04:00:: 1 1 -mellowingly%4:02:00:: 1 1 -melodic%3:00:04:: 1 1 -melodious%3:00:04:: 1 1 -melodrama%1:10:00:: 1 1 -melodramatic%5:00:02:dramatic:00 1 1 -melody%1:09:00:: 2 4 -melody%1:10:00:: 1 8 -melon%1:13:00:: 1 2 -melt%2:30:00:: 2 2 -melt%2:30:01:: 1 3 -melt%2:30:02:: 4 1 -melt%2:30:04:: 3 2 -melt_off%2:29:00:: 1 1 -melting%1:22:00:: 1 1 -melting%5:00:00:unfrozen:00 1 1 -melting_pot%1:15:00:: 1 2 -member%1:08:00:: 3 5 -member%1:18:00:: 1 67 -member%1:24:00:: 2 6 -membership%1:14:00:: 1 10 -membership%1:26:00:: 2 9 -membrane%1:06:00:: 1 1 -memoir%1:10:00:: 1 1 -memorabilia%1:10:00:: 1 1 -memorable%5:00:02:unforgettable:00 1 6 -memorandum%1:10:00:: 1 2 -memorial%1:10:00:: 1 1 -memorization%1:09:00:: 1 1 -memorize%2:31:00:: 1 6 -memory%1:06:00:: 4 3 -memory%1:09:00:: 3 9 -memory%1:09:01:: 2 15 -memory%1:09:02:: 1 25 -memory_image%1:09:00:: 1 2 -memory_picture%1:09:00:: 1 2 -memphis%1:15:00:: 1 4 -men%1:14:00:: 1 35 -menace%1:10:00:: 2 1 -menace%1:26:00:: 1 8 -menace%2:32:00:: 2 1 -menace%2:42:00:: 1 1 -menacing%5:00:00:alarming:00 1 1 -menarche%1:11:00:: 1 4 -mend%2:30:00:: 1 5 -mend%2:30:01:: 2 1 -mendacious%5:00:00:untruthful:00 1 1 -menial%5:00:00:unskilled:00 1 1 -mental%3:00:00:: 1 12 -mental%3:01:00:: 2 4 -mental_case%1:18:00:: 1 1 -mental_disturbance%1:26:00:: 1 1 -mental_health%1:26:00:: 1 1 -mental_image%1:09:00:: 1 4 -mental_institution%1:06:00:: 1 1 -mental_picture%1:09:00:: 1 1 -mentality%1:09:00:: 2 1 -mentality%1:09:01:: 1 1 -mentally%4:02:00:: 1 6 -mentally_ill%5:00:00:insane:00 1 1 -mentally_retarded%1:14:00:: 1 1 -mention%1:10:01:: 1 8 -mention%1:10:02:: 2 1 -mention%2:32:00:: 2 14 -mention%2:32:01:: 3 6 -mention%2:32:02:: 1 62 -menu%1:10:00:: 1 1 -meq%1:07:00:: 1 2 -mercenary%1:18:00:: 1 2 -mercer%1:18:00:: 1 1 -merchandise%1:06:00:: 1 4 -merchandise%2:40:00:: 1 1 -merchandising%1:04:00:: 1 2 -merchant%1:18:00:: 1 8 -merciful%3:00:00:: 1 1 -mercifully%4:02:00:: 1 3 -merciless%3:00:00:: 1 3 -mercurial%5:00:00:changeable:00 1 1 -mercury%1:27:00:: 1 6 -mercy%1:04:00:: 1 4 -mercy%1:07:00:: 2 2 -mercy%1:12:00:: 3 1 -mere%5:00:00:plain:01 2 4 -mere%5:00:00:specified:00 1 22 -merely%4:02:00:: 1 73 -merge%2:30:00:: 1 10 -merge%2:30:01:: 2 3 -merger%1:04:00:: 1 6 -merging%1:04:02:: 1 1 -merit%1:07:01:: 1 5 -merit%1:07:02:: 2 3 -merit%2:42:04:: 1 6 -meritorious%5:00:00:worthy:00 1 1 -mermaid%1:18:00:: 1 1 -merrily%4:02:00:: 1 2 -merriment%1:04:00:: 2 1 -merriment%1:12:00:: 1 2 -merry%5:00:01:joyous:00 2 1 -merry%5:00:02:joyous:00 1 4 -merrymaking%1:04:00:: 1 1 -mesenteric%3:01:00:: 1 1 -mesh%1:23:00:: 1 1 -mesh%2:30:00:: 2 1 -mesh%2:35:01:: 1 1 -mesmerize%2:32:00:: 1 1 -mess%1:06:00:: 5 1 -mess%1:13:00:: 4 1 -mess%1:13:01:: 3 1 -mess%1:26:00:: 1 12 -mess%1:26:02:: 2 1 -mess_around%2:35:00:: 1 2 -mess_hall%1:06:00:: 1 1 -mess_up%2:41:00:: 1 1 -message%1:10:00:: 2 11 -message%1:10:01:: 1 20 -messenger%1:18:00:: 1 7 -messenger_boy%1:18:00:: 1 1 -messy%5:00:00:untidy:00 1 1 -metabolic%3:01:00:: 1 1 -metabolize%2:34:00:: 1 1 -metal%1:27:00:: 1 21 -metal%3:00:00:: 1 5 -metallic%3:00:00:: 1 3 -metamorphose%2:30:00:: 1 1 -metaphor%1:10:00:: 1 3 -metaphysical%3:01:00:: 1 2 -metaphysical%5:00:00:supernatural:00 2 1 -meted_out%5:00:00:distributed:00 1 1 -meteor%1:17:00:: 1 6 -meteor_stream%1:19:00:: 1 1 -meteorite%1:17:00:: 1 8 -meteoritic%3:01:00:: 1 6 -meteorological%3:01:00:: 1 1 -meteorological_conditions%1:26:00:: 1 2 -meter%1:06:00:: 2 1 -meter%1:23:00:: 1 6 -meter%2:30:00:: 1 1 -method%1:07:00:: 2 4 -method%1:09:00:: 1 95 -method_of_choice%1:09:00:: 1 1 -methodical%5:00:00:organized:01 1 3 -methodically%4:02:00:: 1 5 -methodist%3:01:00:: 1 1 -methodist_church%1:14:00:: 1 1 -meticulously%4:02:00:: 1 4 -metis%1:18:00:: 1 1 -metrazol%1:06:00:: 1 1 -metro%1:06:00:: 1 1 -metropolis%1:15:00:: 1 7 -metropolitan%3:01:00:: 1 15 -mew%2:32:00:: 1 1 -mexican%1:18:00:: 1 17 -mexican%3:01:00:: 1 4 -mexico%1:15:00:: 1 3 -mg%1:23:00:: 1 39 -micelle%1:17:00:: 1 11 -michigan%1:15:00:: 1 5 -microbial%3:01:00:: 1 1 -microcosm%1:09:00:: 1 1 -micrometeorite%1:17:00:: 1 11 -micrometeoritic%3:01:00:: 1 2 -micron%1:23:00:: 1 4 -microorganism%1:05:00:: 1 5 -microphone%1:06:00:: 1 4 -microphoning%1:22:00:: 1 1 -microscope%1:06:00:: 1 7 -microscopic%3:01:00:: 1 4 -microscopically%4:02:00:: 1 6 -microscopy%1:04:00:: 1 1 -microsecond%1:28:00:: 1 4 -microsomal%3:01:00:: 1 1 -microwave%1:19:00:: 1 2 -mid%5:00:00:middle:00 1 8 -mid-fifties%1:28:00:: 1 2 -mid-june%1:28:00:: 1 2 -mid-thirties%1:28:00:: 1 1 -midair%1:15:00:: 1 1 -midday%1:28:00:: 1 1 -middle%1:08:00:: 3 2 -middle%1:09:00:: 2 2 -middle%1:15:00:: 1 10 -middle%1:28:00:: 4 1 -middle%3:00:00:: 4 1 -middle%3:00:01:: 3 1 -middle%5:00:00:intermediate:00 1 5 -middle%5:00:01:central:01 2 4 -middle-aged%5:00:00:old:02 1 4 -middle-class%3:00:00:: 1 15 -middle-level%5:00:00:inferior:01 1 1 -middle_ages%1:28:00:: 1 5 -middle_atlantic%5:00:00:eastern:02 1 1 -middle_class%1:14:00:: 1 9 -middle_distance%1:09:00:: 1 1 -middle_east%1:15:00:: 1 1 -middle_west%1:15:00:: 1 1 -midnight%1:28:00:: 1 7 -midsection%1:08:00:: 1 1 -midshipman%1:18:00:: 1 2 -midst%1:15:00:: 1 3 -midsummer%1:28:00:: 1 1 -midwatch%1:28:00:: 1 1 -midway%4:02:00:: 1 1 -midway%5:00:00:central:01 1 2 -midweek%3:01:00:: 1 1 -midwest%1:15:00:: 1 1 -midwestern%5:00:00:western:02 1 4 -mien%1:07:00:: 1 1 -might%1:07:00:: 1 3 -might%2:42:01:: 1 2 -mighty%4:02:00:: 1 4 -mighty%5:00:00:powerful:00 1 10 -migrate%2:38:00:: 1 4 -migration%1:04:00:: 1 2 -migratory%3:01:00:: 1 1 -mike%1:06:00:: 1 1 -mild%3:00:00:: 1 7 -mild-mannered%5:00:00:mild:00 1 1 -mildly%4:02:00:: 1 3 -mildly%4:02:02:: 2 1 -mile%1:23:01:: 1 49 -mile%1:23:04:: 2 5 -mileage%1:07:00:: 1 1 -miles_per_hour%1:28:01:: 1 3 -milestone%1:10:01:: 1 2 -milestone%1:11:00:: 2 1 -milieu%1:26:00:: 1 1 -militant%5:00:00:aggressive:00 2 1 -militant%5:00:00:unpeaceful:00 1 1 -militarily%4:02:00:: 1 1 -military%1:14:00:: 1 1 -military%3:00:01:: 3 3 -military%3:00:02:: 2 12 -military%3:01:00:: 1 37 -military_force%1:14:00:: 1 3 -military_man%1:18:00:: 1 1 -military_personnel%1:14:00:: 1 2 -military_personnel%1:18:00:: 2 1 -military_service%1:14:00:: 1 1 -military_unit%1:14:00:: 1 1 -military_vehicle%1:06:00:: 1 1 -militate%2:41:00:: 1 1 -militia%1:14:00:: 1 5 -milk%1:08:00:: 2 1 -milk%1:13:01:: 1 20 -milk%2:30:00:: 1 3 -milk%2:34:00:: 2 1 -milking_stool%1:06:00:: 1 1 -mill%1:06:01:: 1 4 -mill%2:30:00:: 2 1 -mill%2:38:00:: 1 1 -mill_about%2:42:00:: 1 1 -millenarianism%1:09:00:: 1 1 -millennium%1:28:00:: 1 4 -milliampere%1:23:00:: 1 2 -millidegree%1:23:00:: 1 6 -milligram%1:23:00:: 1 26 -milliliter%1:23:00:: 1 2 -millimeter%1:23:00:: 1 1 -millimeter_of_mercury%1:23:00:: 1 1 -million%1:23:00:: 1 16 -million%5:00:00:cardinal:00 1 36 -millions%1:23:00:: 1 11 -millivoltmeter%1:06:00:: 1 1 -millpond%1:17:00:: 1 1 -millwheel%1:06:00:: 1 1 -milquetoast%1:18:00:: 1 2 -milwaukee%1:15:00:: 1 1 -mimesis%1:09:00:: 1 11 -mimetic%5:00:00:representational:00 1 2 -mimicry%1:04:00:: 1 1 -min%1:10:00:: 2 2 -min%1:28:00:: 1 5 -mince%2:32:00:: 1 2 -mincing%5:00:00:refined:01 1 1 -mind%1:09:00:: 1 120 -mind%1:09:01:: 2 13 -mind%1:09:03:: 5 1 -mind%1:09:04:: 3 10 -mind%1:18:00:: 4 3 -mind%2:31:02:: 2 5 -mind%2:32:00:: 1 15 -mind%2:41:01:: 3 2 -mind's_eye%1:09:00:: 1 1 -minded%5:00:00:oriented:00 1 2 -minded%5:00:02:inclined(p):02 2 1 -mindful%3:00:00:: 1 3 -mindless%5:00:00:meaningless:00 1 1 -mindless%5:00:00:nonintellectual:00 2 1 -mine%1:06:00:: 2 5 -mine%1:06:01:: 1 12 -mine%2:34:00:: 1 3 -mine_field%1:15:00:: 1 1 -miner%1:18:00:: 1 2 -mineral%1:27:00:: 1 9 -mineral_oil%1:27:00:: 1 1 -mineralized%5:00:01:mineral:00 1 1 -mineralogy%1:09:00:: 1 1 -mingle%2:35:00:: 1 9 -mingle%2:41:00:: 2 2 -mingling%1:04:00:: 1 1 -miniature%1:06:01:: 2 1 -miniature%1:06:02:: 1 1 -miniature%5:00:00:small:00 1 1 -minimal%3:00:00:: 1 24 -minimize%2:30:00:: 1 12 -minimize%2:32:01:: 2 2 -minimized%5:00:02:decreased:00 1 1 -minimum%1:23:00:: 1 9 -minimum%3:00:00:: 1 23 -mining%1:04:00:: 1 3 -mining_bee%1:05:00:: 1 1 -minister%1:18:00:: 1 10 -minister%2:41:12:: 1 3 -ministerial%3:01:02:: 1 1 -ministration%1:04:00:: 1 1 -ministry%1:06:00:: 2 1 -ministry%1:14:01:: 1 1 -minneapolis%1:15:00:: 1 2 -minnesota%1:15:00:: 1 5 -minoan%3:01:00:: 1 1 -minor%1:18:00:: 1 2 -minor%3:00:01:: 3 2 -minor%3:00:02:: 2 3 -minor%3:00:03:: 5 1 -minor%3:00:04:: 4 1 -minor%3:00:06:: 1 6 -minor_league%1:14:00:: 1 3 -minority%1:07:00:: 2 2 -minority%1:14:00:: 1 3 -minstrel%1:18:00:: 1 1 -mint%1:23:00:: 1 1 -minuet%1:04:00:: 1 1 -minute%1:28:00:: 1 83 -minute%1:28:01:: 2 8 -minute%1:28:02:: 3 1 -minute%5:00:00:small:00 1 5 -minute_of_arc%1:23:00:: 1 1 -minutia%1:09:00:: 1 1 -miracle%1:11:00:: 1 7 -miracle%1:11:01:: 2 1 -miraculous%5:00:00:supernatural:00 1 1 -miraculously%4:02:00:: 1 2 -mire%1:17:00:: 1 1 -mirror%1:06:00:: 1 8 -mirror%1:09:00:: 2 1 -mirror%2:43:00:: 1 4 -misanthrope%1:18:00:: 1 1 -misbehavior%1:04:00:: 1 3 -misbranded%5:00:00:illegal:00 1 1 -miscalculate%2:31:01:: 1 1 -miscalculation%1:04:00:: 1 2 -miscarry%2:41:00:: 1 1 -miscegenation%1:04:00:: 1 1 -miscellaneous%5:00:00:general:00 1 5 -miscellaneous%5:00:00:heterogeneous:00 2 2 -mischief%1:04:00:: 1 3 -mischievous%5:00:00:bad:00 2 1 -mischievous%5:00:00:playful:00 1 1 -misconception%1:09:00:: 1 3 -misconstruction%1:10:00:: 2 1 -misconstruction%1:10:01:: 1 1 -misconstrue%2:31:01:: 1 2 -misdeed%1:04:00:: 1 2 -misdemeanor%1:04:00:: 1 1 -miserable%5:00:00:contemptible:00 3 1 -miserable%5:00:00:unfortunate:00 2 1 -miserable%5:00:00:unhappy:00 1 3 -miserably%4:02:00:: 1 1 -misery%1:26:00:: 1 8 -misfire%2:33:00:: 1 1 -misfortune%1:11:00:: 1 4 -misfortune%1:26:00:: 2 3 -misgauge%2:31:00:: 1 1 -misgiving%1:09:02:: 2 1 -misgiving%1:12:00:: 1 3 -misguided%5:00:00:foolish:00 1 1 -misinterpret%2:32:00:: 1 1 -misinterpretation%1:10:00:: 1 1 -misjudge%2:31:00:: 1 2 -mislay%2:35:00:: 1 1 -mislead%2:32:00:: 2 2 -mislead%2:38:00:: 1 2 -misleading%5:00:00:dishonest:00 1 4 -mismanage%2:41:00:: 1 1 -mismanagement%1:04:00:: 1 1 -misname%2:32:00:: 1 1 -misnomer%1:10:00:: 1 1 -misogynist%1:18:00:: 1 1 -misperceive%2:39:00:: 1 1 -misplace%2:35:00:: 2 1 -misplace%2:35:01:: 1 1 -misplaced%5:00:00:disarranged:00 1 5 -misquote%2:32:00:: 1 1 -misread%2:31:02:: 1 1 -misrelated%5:00:00:unrelated:02 1 1 -misrepresent%2:32:00:: 1 2 -misrepresentation%1:10:00:: 1 1 -miss%1:11:00:: 2 1 -miss%1:18:00:: 1 3 -miss%2:31:00:: 4 6 -miss%2:33:00:: 8 4 -miss%2:35:00:: 7 4 -miss%2:37:00:: 2 13 -miss%2:38:00:: 5 5 -miss%2:39:00:: 1 16 -miss%2:42:00:: 6 4 -miss%2:42:01:: 3 9 -miss%2:42:02:: 9 1 -missile%1:06:00:: 2 4 -missile%1:06:01:: 1 10 -missing%5:00:00:absent:00 1 5 -missing%5:00:00:lost:01 2 5 -mission%1:04:00:: 3 8 -mission%1:04:01:: 2 8 -mission%1:04:02:: 4 7 -mission%1:14:01:: 1 18 -missionary%1:18:00:: 1 3 -mississippi%1:15:00:: 2 5 -mississippi%1:17:00:: 1 5 -mississippi_river%1:17:00:: 1 2 -missive%1:10:00:: 1 1 -missouri%1:15:00:: 1 7 -missouri%1:17:00:: 2 1 -mist%1:19:00:: 1 10 -mist%2:30:00:: 1 1 -mistake%1:04:00:: 1 13 -mistake%1:09:00:: 2 6 -mistake%1:10:00:: 3 2 -mistake%2:31:00:: 2 4 -mistake%2:31:02:: 1 7 -mistaken%5:00:00:incorrect:00 2 2 -mistaken%5:00:00:wrong:01 1 6 -mistakenly%4:02:00:: 1 2 -mistaking%1:10:00:: 1 1 -mister%1:18:00:: 1 2 -mistress%1:18:01:: 1 4 -mistrust%2:31:00:: 1 2 -misty%5:00:00:cloudy:00 1 1 -misty-eyed%5:00:00:tearful:00 1 1 -misunderstand%2:31:01:: 1 3 -misunderstanding%1:10:00:: 1 1 -misuse%1:04:00:: 1 1 -misuse%2:34:00:: 1 2 -misused%3:00:00:: 1 1 -mite%1:23:00:: 1 2 -mite_box%1:06:00:: 1 1 -miter%2:35:00:: 1 1 -mitigate%2:32:00:: 1 3 -mitigation%1:04:00:: 1 1 -mitral%3:01:00:: 1 1 -mittens%1:06:00:: 1 2 -mix%2:30:00:: 1 7 -mix%2:30:01:: 4 1 -mix%2:30:02:: 3 1 -mix%2:41:00:: 2 1 -mix_in%2:30:00:: 1 2 -mixed%5:00:00:blended:00 1 9 -mixed%5:00:00:heterogeneous:00 2 6 -mixed%5:00:00:integrated:00 3 1 -mixed-up%5:00:00:perplexed:00 1 1 -mixing%1:04:00:: 1 4 -mixture%1:11:00:: 4 1 -mixture%1:13:00:: 2 3 -mixture%1:14:00:: 3 2 -mixture%1:27:00:: 1 11 -ml%1:23:00:: 1 13 -mm%1:23:00:: 1 16 -moan%1:10:00:: 1 1 -moan%2:32:00:: 1 3 -mob%1:14:00:: 1 11 -mob%1:14:02:: 2 1 -mob%5:00:00:disorderly:00 1 1 -mobcap%1:06:00:: 1 1 -mobile%5:00:00:unsettled:01 1 2 -mobility%1:07:00:: 1 2 -mobilization%1:04:01:: 1 1 -mobilize%2:30:02:: 1 5 -mobilize%2:33:01:: 2 2 -moblike%5:00:00:disorderly:00 1 2 -moccasins%1:06:00:: 1 1 -mock%2:32:00:: 1 4 -mock%5:00:00:counterfeit:00 1 2 -mocker%1:18:00:: 1 1 -mockery%1:10:00:: 1 1 -mocking%5:00:00:disrespectful:00 1 1 -modal%5:00:00:normal:01 1 2 -mode%1:07:00:: 1 13 -model%1:06:00:: 4 4 -model%1:09:00:: 1 19 -model%1:09:01:: 5 3 -model%1:09:02:: 7 1 -model%1:09:03:: 2 11 -model%1:18:00:: 3 6 -model%1:18:01:: 6 1 -model%2:36:00:: 2 1 -model%2:36:02:: 1 1 -model%5:00:00:worthy:00 1 1 -modeled%5:00:00:shapely:00 1 1 -moderate%1:18:00:: 1 1 -moderate%2:30:03:: 2 1 -moderate%2:32:00:: 1 1 -moderate%3:00:00:: 1 10 -moderate%5:00:00:mild:00 2 2 -moderately%4:02:00:: 1 2 -moderation%1:07:00:: 1 1 -modern%1:18:00:: 1 2 -modern%3:00:00:: 1 57 -modern%5:00:00:fashionable:00 2 6 -modern%5:00:00:nonclassical:00 3 5 -modern%5:00:00:progressive:01 4 3 -modern_greek%1:10:00:: 1 1 -modern_man%1:05:00:: 1 1 -modern_times%1:28:00:: 1 2 -modern_world%1:28:00:: 1 4 -modernism%1:06:00:: 1 2 -modernity%1:07:00:: 1 5 -modernization%1:04:00:: 1 8 -modernize%2:30:00:: 1 3 -modernize%2:30:02:: 2 1 -modernized%5:00:00:modern:00 1 1 -modernizing%1:04:00:: 1 1 -modest%3:00:02:: 1 3 -modest%5:00:00:moderate:00 2 2 -modest%5:00:00:unpretentious:00 3 1 -modestly%4:02:00:: 1 2 -modesty%1:07:00:: 1 1 -modesty%1:07:01:: 2 1 -modification%1:04:00:: 1 2 -modification%1:06:00:: 2 1 -modified%3:00:00:: 1 1 -modified%5:00:00:qualified:02 2 1 -modifier%1:10:00:: 1 5 -modify%2:30:00:: 1 17 -modify%2:30:01:: 2 1 -modulation%1:10:00:: 2 2 -modulation%1:10:01:: 1 3 -moire%1:06:00:: 1 1 -moist%5:00:00:wet:01 1 6 -moisten%2:30:00:: 1 3 -moisture%1:26:00:: 1 7 -molal%3:01:00:: 1 2 -mold%1:06:00:: 2 1 -mold%1:25:00:: 1 1 -mold%2:30:00:: 2 1 -mold%2:36:02:: 1 4 -molding%1:04:01:: 1 1 -molecular%3:01:00:: 1 6 -molecular_weight%1:07:00:: 1 4 -molecule%1:27:00:: 1 9 -molest%2:41:00:: 1 2 -mollify%2:37:00:: 1 1 -molten%5:00:00:melted:00 1 3 -moment%1:07:00:: 4 1 -moment%1:28:00:: 1 86 -moment%1:28:01:: 2 73 -moment%1:28:02:: 3 1 -momentarily%4:02:00:: 2 1 -momentarily%4:02:02:: 1 3 -momentary%5:00:00:short:02 1 3 -momentous%5:00:00:significant:00 1 1 -momentum%1:07:00:: 1 7 -momentum%1:07:01:: 2 2 -mommy%1:18:00:: 1 2 -mon-khmer%1:10:00:: 1 2 -monarch%1:18:00:: 1 2 -monastery%1:06:00:: 1 1 -monastic%5:00:00:unworldly:00 1 5 -monaural%3:00:00:: 1 1 -monday%1:28:00:: 1 28 -money%1:21:00:: 1 77 -money%1:21:02:: 2 15 -money_order%1:21:00:: 1 1 -moneymaker%1:18:00:: 1 1 -moneymaking%1:04:00:: 1 1 -monic_polynomial%1:09:00:: 1 3 -monilia_albicans%1:20:00:: 1 1 -monitor%2:39:00:: 1 9 -monitoring%1:04:00:: 1 4 -monk%1:18:00:: 1 5 -monkey%1:05:00:: 1 8 -monkish%5:00:00:nonindulgent:00 1 1 -mono-iodotyrosine%1:27:00:: 1 5 -monochrome%1:06:01:: 1 1 -monocle%1:06:00:: 1 5 -monograph%1:10:00:: 1 1 -monologist%1:18:00:: 1 1 -monologue%1:10:00:: 1 3 -monomer%1:27:00:: 1 1 -mononuclear%3:00:00:: 1 1 -monophonic%5:00:00:monaural:00 1 1 -monopolization%1:04:00:: 1 1 -monopolize%2:40:00:: 2 2 -monopolize%2:41:00:: 1 2 -monopoly%1:26:01:: 1 5 -monopoly%1:26:02:: 2 2 -monosyllable%1:10:00:: 1 2 -monotone%1:10:00:: 1 1 -monotone%3:00:04:: 1 2 -monotone%5:00:00:unmelodious:00 2 1 -monotonous%5:00:00:dull:03 2 2 -monotonous%5:00:00:unmelodious:00 1 4 -monotony%1:07:00:: 1 3 -monroe_doctrine%1:10:00:: 1 6 -monsieur%1:18:00:: 1 1 -monsoon%1:19:00:: 1 2 -monster%1:18:01:: 3 1 -monster%1:18:02:: 1 5 -monster%1:18:03:: 2 1 -monstrosity%1:11:00:: 2 1 -monstrosity%1:18:00:: 1 1 -monstrous%5:00:00:evil:00 2 3 -monstrous%5:00:00:large:00 1 5 -monstrous%5:00:00:ugly:00 3 1 -month%1:28:00:: 2 37 -month%1:28:01:: 1 70 -month_by_month%4:02:00:: 1 1 -monthly%3:01:00:: 1 5 -montreal%1:15:00:: 1 3 -monument%1:06:00:: 1 7 -monumental%3:01:00:: 1 1 -moo%2:32:00:: 1 1 -mood%1:12:00:: 1 14 -mood%1:26:00:: 2 6 -moon%1:17:01:: 1 30 -moon%1:17:02:: 2 1 -moon-round%5:00:00:round:00 1 1 -moon-splashed%5:00:00:covered:00 1 1 -moon_on%2:41:00:: 1 1 -mooncurser%1:18:00:: 1 1 -moonlight%1:19:00:: 1 5 -moonlit%3:00:00:: 1 1 -mop%2:35:00:: 2 2 -mop%2:35:01:: 1 2 -mop_up%2:35:00:: 1 2 -moral%1:10:00:: 1 2 -moral%3:00:00:: 2 8 -moral%3:01:00:: 1 21 -moral%5:00:00:right:01 3 1 -moral_principle%1:09:00:: 1 1 -morale%1:07:00:: 2 2 -morale%1:26:00:: 1 2 -morale_builder%1:09:00:: 1 1 -moralist%1:18:00:: 1 1 -moralistic%5:00:00:moral:00 1 1 -morality%1:07:00:: 1 8 -morality%1:16:00:: 2 5 -morally%4:02:01:: 1 2 -morals%1:16:00:: 1 2 -more%1:23:00:: 1 52 -more%3:00:01:: 1 134 -more%3:00:02:: 2 67 -more%4:02:00:: 1 374 -more%4:02:01:: 2 34 -more%5:00:00:added:00 3 39 -more_and_more%4:02:00:: 1 8 -more_often_than_not%4:02:00:: 1 2 -more_or_less%4:02:00:: 1 11 -more_than%4:02:00:: 1 72 -more_than%5:00:00:more(a):02 2 1 -moreover%4:02:00:: 1 37 -mores%1:09:00:: 1 1 -morgue%1:06:00:: 1 1 -morning%1:10:00:: 2 2 -morning%1:28:00:: 1 86 -morning%5:00:00:antemeridian:00 1 10 -morning_glory%1:20:00:: 1 1 -moroccan%3:01:00:: 1 3 -morocco%1:15:00:: 1 3 -morocco%1:27:00:: 2 1 -morose%5:00:00:ill-natured:00 1 2 -morosely%4:02:00:: 1 1 -morphemic%3:01:00:: 1 1 -morphologic%3:01:00:: 1 1 -morphology%1:09:00:: 1 1 -morphophonemic%3:01:00:: 1 4 -morphophonemic_system%1:10:00:: 1 3 -morphophonemics%1:09:00:: 1 9 -morrow%1:28:00:: 1 2 -morse%1:10:00:: 1 1 -morsel%1:13:00:: 2 1 -morsel%1:23:00:: 1 1 -mortal%1:03:00:: 1 2 -mortal%3:00:00:: 1 3 -mortal%5:00:00:unpardonable:00 2 1 -mortality%1:07:00:: 1 4 -mortally%4:02:00:: 1 1 -mortar%1:06:00:: 1 3 -mortar%1:27:00:: 2 2 -mortar%2:35:00:: 1 3 -mortgage%1:21:00:: 1 4 -mortician%1:18:00:: 1 1 -mortification%1:12:00:: 1 1 -mosaic%1:06:00:: 1 2 -moscow%1:15:00:: 1 4 -moses%1:18:00:: 1 1 -mosquito%1:05:00:: 1 2 -moss%1:20:00:: 1 1 -most%1:23:00:: 1 12 -most%3:00:01:: 2 26 -most%3:00:02:: 1 76 -most%4:02:00:: 1 180 -most%4:02:01:: 2 63 -most%4:02:02:: 3 1 -most-valuable%5:00:00:important:00 1 1 -most_desirable%5:00:00:best:00 1 1 -most_recently%4:02:00:: 1 2 -most_valuable_player%1:18:00:: 1 2 -mostly%4:02:00:: 1 10 -mostly%4:02:03:: 2 3 -motel%1:06:00:: 1 1 -moth%1:05:00:: 1 3 -mother%1:18:00:: 1 100 -mother%2:41:00:: 1 2 -mother's_daughter%1:18:00:: 1 1 -mother-naked%5:00:00:unclothed:00 1 1 -mother_country%1:15:00:: 1 1 -motherland%1:15:00:: 1 1 -motif%1:06:00:: 1 5 -motif%1:09:00:: 3 1 -motif%1:10:00:: 2 1 -motion%1:04:00:: 3 6 -motion%1:04:01:: 6 1 -motion%1:10:00:: 1 8 -motion%1:10:01:: 5 1 -motion%1:11:00:: 2 7 -motion%1:26:00:: 4 2 -motion%2:32:00:: 1 1 -motion_picture%1:10:00:: 1 9 -motional%3:01:00:: 1 1 -motionless%5:00:00:nonmoving:00 1 8 -motivate%2:36:00:: 1 6 -motivated%3:00:00:: 1 3 -motivating%5:00:00:causative:00 1 2 -motivation%1:03:00:: 1 5 -motive%1:03:00:: 1 18 -motive%5:00:00:causative:00 1 1 -motor%1:06:00:: 1 6 -motor%2:38:00:: 1 1 -motor%5:00:00:efferent:00 1 1 -motor_neuron%1:08:00:: 1 1 -motor_pool%1:14:00:: 1 1 -motorcar%1:06:00:: 1 1 -mottle%2:36:00:: 1 2 -mottled%5:00:00:patterned:00 1 1 -motto%1:10:00:: 1 2 -mould%2:36:02:: 1 1 -mound%1:06:01:: 1 5 -mound%1:14:00:: 3 1 -mound%1:17:00:: 2 1 -mound_over%2:35:00:: 1 1 -mounded_over%3:44:00:: 1 1 -mount%1:04:00:: 2 1 -mount%1:05:00:: 1 4 -mount%2:30:00:: 2 8 -mount%2:30:01:: 3 6 -mount%2:35:00:: 1 10 -mount%2:36:00:: 4 4 -mount%2:38:00:: 6 3 -mount%2:38:01:: 5 3 -mount_everest%1:17:00:: 1 1 -mount_up%2:38:00:: 1 2 -mountain%1:17:00:: 1 17 -mountain%5:00:00:upland:00 1 1 -mountainous%5:00:00:large:00 2 2 -mountainous%5:00:00:rough:00 1 2 -mountainous%5:00:00:upland:00 3 1 -mountainside%1:17:00:: 1 2 -mounted%3:00:00:: 1 2 -mounted%5:00:00:adorned:00 3 1 -mounted%5:00:00:affixed:00 2 2 -mourn%2:37:00:: 1 6 -mourn%2:37:01:: 2 1 -mourner%1:18:00:: 1 2 -mournful%5:00:01:sorrowful:00 1 2 -mournfully%4:02:00:: 1 2 -mouse%1:05:00:: 1 14 -mouse-colored%5:00:00:chromatic:00 1 1 -mouse_nest%1:17:00:: 1 1 -mousy%5:00:00:timid:00 1 1 -mouth%1:08:00:: 2 12 -mouth%1:08:01:: 1 48 -mouth%1:17:00:: 3 2 -mouth%1:17:01:: 4 2 -mouth%1:18:00:: 5 1 -mouth%2:32:00:: 1 3 -mouth%2:32:01:: 2 1 -mouthful%1:23:00:: 1 1 -mouthpiece%1:06:02:: 2 1 -mouthpiece%1:06:04:: 1 1 -move%1:04:00:: 1 8 -move%1:04:01:: 2 3 -move%1:04:03:: 3 1 -move%2:29:06:: 6 7 -move%2:30:00:: 7 6 -move%2:30:01:: 13 1 -move%2:36:00:: 10 3 -move%2:37:00:: 9 3 -move%2:37:01:: 11 2 -move%2:38:00:: 3 52 -move%2:38:01:: 2 57 -move%2:38:02:: 4 20 -move%2:38:03:: 1 110 -move%2:40:00:: 12 1 -move%2:41:00:: 8 3 -move%2:41:01:: 5 15 -move_around%2:38:03:: 1 1 -move_back%2:38:00:: 1 4 -move_in%2:38:02:: 1 4 -move_in_on%2:38:00:: 1 1 -move_into%2:38:00:: 1 12 -move_on%2:38:00:: 1 7 -move_over%2:38:00:: 1 2 -move_up%2:38:00:: 2 3 -move_up%2:38:01:: 1 3 -movement%1:04:00:: 1 24 -movement%1:04:03:: 6 4 -movement%1:04:04:: 2 16 -movement%1:10:00:: 5 4 -movement%1:11:00:: 3 14 -movement%1:14:00:: 4 4 -movement%1:19:00:: 7 3 -mover%1:18:02:: 1 3 -movie%1:10:00:: 1 26 -movie_camera%1:06:00:: 1 1 -movie_house%1:06:00:: 1 1 -movie_star%1:18:00:: 1 2 -movie_theater%1:06:00:: 1 1 -moviegoer%1:18:00:: 1 1 -moving%1:04:00:: 1 1 -moving%3:00:01:: 2 2 -moving%3:00:02:: 1 9 -movingly%4:02:00:: 1 1 -mow%2:35:00:: 1 1 -mph%1:28:00:: 2 1 -mph%1:28:01:: 1 2 -mrs%1:18:00:: 1 1 -much%1:23:00:: 1 54 -much%3:00:00:: 1 137 -much%4:02:00:: 1 95 -much%4:02:01:: 4 9 -much%4:02:03:: 2 17 -much%4:02:04:: 3 10 -much%4:02:06:: 5 6 -much_as%4:02:00:: 1 3 -muck%2:30:01:: 1 1 -muck_up%2:41:00:: 1 1 -mucosa%1:08:00:: 1 5 -mucus%1:08:00:: 1 2 -mud%1:27:00:: 1 23 -mud-beplastered%5:00:00:covered:00 1 1 -mud_digger%1:18:00:: 1 3 -mud_flat%1:15:00:: 1 1 -muddied%5:00:00:impure:02 1 1 -muddle%1:26:00:: 1 1 -muddleheaded%5:00:00:confused:00 1 1 -muddy%5:00:00:dirty:01 2 1 -muddy%5:00:00:wet:01 1 7 -mudguard%1:06:00:: 1 1 -muff%1:06:00:: 1 1 -muffle%2:35:00:: 1 2 -muffled%5:00:00:covered:00 2 1 -muffled%5:00:00:soft:04 1 7 -muffler%1:06:01:: 1 2 -mug_file%1:10:00:: 1 1 -mulch%1:06:00:: 1 5 -mule%1:05:00:: 1 3 -mule_driver%1:18:00:: 1 10 -mull%2:31:00:: 1 1 -multi%5:00:00:multiple:00 1 3 -multichannel_recorder%1:06:00:: 1 1 -multidimensional%3:00:00:: 1 1 -multilateral%3:00:00:: 1 1 -multiple%3:00:00:: 1 6 -multiple-choice%3:00:00:: 1 1 -multiple_sclerosis%1:26:00:: 1 2 -multiplication%1:04:01:: 1 1 -multiplicity%1:07:02:: 1 6 -multiplied%5:00:00:increased:00 1 1 -multiply%2:29:00:: 3 1 -multiply%2:30:00:: 2 7 -multiply%2:31:00:: 1 18 -multitude%1:23:00:: 1 1 -multitudinous%5:00:00:incalculable:00 1 1 -mum%5:00:00:uncommunicative:00 1 1 -mumble%2:32:00:: 1 6 -mumbo_jumbo%1:10:00:: 1 1 -munch%2:34:01:: 1 2 -mundane%5:00:00:ordinary:00 1 2 -munich%1:15:00:: 1 1 -municipal%3:01:00:: 1 11 -munition%1:06:00:: 1 1 -murder%1:04:00:: 1 45 -murder%2:30:00:: 2 1 -murder%2:41:00:: 1 5 -murder_suspect%1:18:00:: 1 1 -murdered%5:00:00:dead:01 1 1 -murderer%1:18:00:: 1 12 -murky%5:00:00:opaque:00 1 2 -murmur%1:10:01:: 2 1 -murmur%1:11:00:: 1 2 -murmur%2:32:00:: 1 15 -murmuring%1:11:00:: 1 1 -muscle%1:08:00:: 1 43 -muscle%1:08:01:: 2 2 -muscle_fiber%1:08:00:: 1 2 -muscle_into%2:38:00:: 1 1 -muscle_tone%1:26:00:: 1 1 -muscleman%1:18:00:: 1 1 -muscular%3:00:04:: 2 3 -muscular%3:01:00:: 1 6 -muscular%5:00:00:powerful:00 3 1 -muscular_dystrophy%1:26:00:: 1 2 -musculature%1:08:00:: 1 1 -muse%1:18:00:: 1 1 -muse%2:31:00:: 1 10 -museum%1:06:00:: 1 3 -music%1:04:00:: 3 2 -music%1:09:00:: 2 12 -music%1:10:00:: 1 51 -music_hall%1:06:00:: 1 1 -music_lover%1:18:00:: 1 1 -musical%1:10:00:: 1 2 -musical%3:00:02:: 2 2 -musical%3:01:00:: 1 21 -musical_comedy%1:10:00:: 1 4 -musical_composition%1:10:00:: 1 1 -musical_instrument%1:06:00:: 1 1 -musical_theater%1:10:00:: 1 2 -musically%4:02:01:: 1 1 -musician%1:18:00:: 2 3 -musician%1:18:01:: 1 15 -musicianship%1:09:00:: 1 2 -musing%1:09:00:: 1 1 -musket%1:06:00:: 1 9 -musket_ball%1:06:00:: 1 2 -musketry%1:14:00:: 1 13 -must%2:42:00:: 1 4 -must_not%2:42:00:: 1 6 -mustache%1:08:00:: 1 6 -mustached%5:00:00:unshaven:00 1 1 -muster%2:32:00:: 2 2 -muster%2:35:02:: 1 4 -mutant%1:18:00:: 1 1 -mutational%3:01:00:: 1 1 -mute%5:00:00:inarticulate:00 1 3 -muted%5:00:02:soft:04 1 1 -mutely%4:02:00:: 1 3 -mutilate%2:30:00:: 1 1 -mutilation%1:11:00:: 1 1 -mutineer%1:18:00:: 1 1 -mutiny%1:04:00:: 1 2 -mutter%2:32:00:: 2 6 -mutter%2:32:01:: 1 19 -muttering%1:11:00:: 1 1 -muttering%5:00:00:speaking(a):00 1 1 -mutton%1:13:00:: 1 2 -mutual%5:00:00:reciprocal:00 2 3 -mutual%5:00:00:shared:00 1 3 -mutual_affection%1:24:00:: 1 1 -mutuality%1:24:01:: 1 1 -mutually_exclusive%5:00:00:incompatible:01 1 3 -muzzle%1:05:00:: 2 2 -muzzle%1:06:01:: 1 2 -muzzle_loader%1:06:00:: 1 1 -mv%1:23:00:: 1 1 -mycenaean%3:01:00:: 1 1 -myelofibrosis%1:26:00:: 1 1 -myeloid%3:01:00:: 1 1 -myocardial%3:01:00:: 1 2 -myocardial_infarction%1:26:00:: 1 1 -myocardium%1:08:00:: 1 1 -myofibril%1:08:00:: 1 1 -myofibrilla%1:08:00:: 1 2 -myriad%1:23:01:: 1 1 -myriad%5:00:00:incalculable:00 1 3 -myrrh%1:27:00:: 1 2 -myrtle%1:20:02:: 1 1 -mysterious%5:00:00:esoteric:00 2 4 -mysterious%5:00:00:inexplicable:00 1 14 -mysteriously%4:02:00:: 1 1 -mystery%1:09:00:: 1 18 -mystery_story%1:10:00:: 1 9 -mystic%5:00:00:esoteric:00 1 2 -mystical%3:01:00:: 1 1 -mystify%2:31:00:: 1 1 -mystique%1:07:00:: 1 2 -myth%1:10:00:: 1 14 -mythic%3:01:00:: 1 1 -mythological%5:00:00:unreal:00 1 12 -mythology%1:14:00:: 1 3 -n't%4:02:00:: 1 1007 -nab%2:35:00:: 2 1 -nab%2:35:02:: 1 1 -nadir%1:26:00:: 1 2 -nag%2:32:00:: 1 2 -nag%2:37:00:: 2 1 -nagging%5:00:00:ill-natured:00 1 1 -nail%1:06:00:: 2 3 -nail%1:08:00:: 1 3 -nail%2:35:00:: 1 8 -nail%2:35:01:: 2 2 -nail%2:35:02:: 3 1 -nail_down%2:41:00:: 1 1 -naive%3:00:00:: 1 6 -naked%5:00:00:overt:00 4 1 -naked%5:00:00:unassisted:00 3 1 -naked%5:00:00:unclothed:00 1 6 -naked%5:00:00:unprotected:00 2 3 -nakedly%4:02:02:: 1 1 -nakedness%1:26:00:: 1 1 -name%1:04:00:: 5 1 -name%1:10:00:: 1 94 -name%1:14:00:: 3 2 -name%1:18:00:: 4 1 -name%1:26:00:: 2 6 -name%2:31:01:: 8 1 -name%2:32:02:: 2 6 -name%2:32:03:: 1 31 -name%2:32:04:: 7 2 -name%2:32:07:: 5 4 -name%2:40:00:: 6 2 -name%2:41:00:: 4 4 -name%2:41:01:: 3 5 -named%5:00:00:titled:00 1 11 -nameless%5:00:00:anonymous:00 1 1 -namely%4:02:00:: 1 9 -namesake%1:18:00:: 1 1 -napoleon%1:18:00:: 1 4 -napoleon_bonaparte%1:18:00:: 1 1 -napoleonic%3:01:00:: 1 1 -naprapath%1:18:00:: 1 1 -narcotize%2:29:00:: 1 1 -narrate%2:32:01:: 1 1 -narrative%1:10:00:: 1 8 -narrative%5:00:00:communicative:00 1 1 -narrow%2:30:00:: 1 2 -narrow%2:30:01:: 4 1 -narrow%2:30:05:: 3 1 -narrow%2:31:00:: 2 1 -narrow%3:00:00:: 1 19 -narrow%3:00:06:: 3 1 -narrow%5:00:00:limited:00 2 2 -narrow_down%2:30:00:: 2 1 -narrow_down%2:31:00:: 1 1 -narrow_escape%1:04:00:: 1 1 -narrowed%5:00:00:narrow:00 1 2 -narrowing%1:07:00:: 1 1 -narrowly%4:02:00:: 1 3 -narrowness%1:07:00:: 1 1 -nasal%3:01:00:: 1 1 -nasal%5:00:00:high:03 2 1 -nasal_cavity%1:08:00:: 1 1 -nasale%2:32:00:: 1 1 -nascent%5:00:00:aborning:00 1 1 -nashville%1:15:00:: 1 1 -nassau%1:15:00:: 1 1 -nasty%3:00:00:: 1 2 -natal%3:01:00:: 1 1 -nation%1:14:00:: 1 33 -nation%1:14:01:: 2 10 -nation%1:15:00:: 3 6 -national%1:18:00:: 1 2 -national%3:00:00:: 2 17 -national%3:00:01:: 3 6 -national%3:01:00:: 1 46 -national%3:01:02:: 6 1 -national%5:00:00:domestic:00 5 5 -national%5:00:00:public:00 4 5 -national_anthem%1:10:00:: 1 1 -national_guard%1:14:00:: 1 2 -national_income%1:21:00:: 1 1 -national_leader%1:18:00:: 1 1 -national_park%1:15:00:: 1 1 -national_park_service%1:14:00:: 1 1 -nationalism%1:07:00:: 1 7 -nationalism%1:09:00:: 2 5 -nationalistic%5:00:00:patriotic:00 1 3 -nationality%1:14:00:: 1 1 -nationalize%2:30:00:: 1 2 -nationally%4:02:00:: 2 1 -nationally%4:02:02:: 1 2 -nationwide%5:00:00:wide:00 1 2 -native%1:18:00:: 1 3 -native%3:00:01:: 1 5 -native%3:00:02:: 4 1 -native%3:00:03:: 3 2 -native%5:00:00:natural:01 2 3 -native_land%1:15:00:: 1 3 -natural%3:00:01:: 1 22 -natural%3:00:02:: 2 15 -natural%3:00:03:: 3 4 -natural%3:00:07:: 6 1 -natural%3:01:00:: 5 1 -natural%5:00:00:normal:01 4 2 -natural_gas%1:27:00:: 1 1 -natural_law%1:09:00:: 1 4 -natural_order%1:17:00:: 1 1 -natural_phenomenon%1:19:00:: 1 1 -natural_resource%1:21:00:: 1 3 -natural_resources%1:21:00:: 1 1 -natural_science%1:09:00:: 1 1 -naturalism%1:09:00:: 1 1 -naturalize%2:30:00:: 1 1 -naturalized%5:00:02:foreign:01 1 1 -naturally%4:02:00:: 1 22 -naturally%4:02:01:: 2 7 -naturally%4:02:02:: 4 1 -naturally%4:02:03:: 3 2 -naturalness%1:07:00:: 1 1 -nature%1:07:01:: 5 3 -nature%1:07:02:: 1 41 -nature%1:17:00:: 4 9 -nature%1:18:00:: 2 12 -nature%1:19:00:: 6 1 -nature%1:26:00:: 3 10 -naturopath%1:18:00:: 1 1 -naught%1:23:00:: 1 1 -nausea%1:26:00:: 1 2 -nauseated%5:00:00:ill:01 1 1 -nautical%3:01:02:: 1 1 -naval%3:01:00:: 1 8 -naval_blockade%1:04:00:: 1 4 -navel%1:08:00:: 1 2 -navigate%2:38:02:: 1 2 -navigation%1:04:00:: 1 1 -navigator%1:18:02:: 1 1 -navy%1:07:00:: 2 1 -navy%1:14:00:: 1 9 -nay%1:10:00:: 1 1 -nay%4:02:00:: 1 1 -nazi%1:18:00:: 1 6 -nazi%3:01:00:: 2 1 -nazi%3:01:02:: 1 5 -nazism%1:14:00:: 1 1 -neanderthal%5:00:00:unrefined:01 1 1 -near%2:38:00:: 1 11 -near%3:00:00:: 1 44 -near%4:02:01:: 1 19 -near%4:02:03:: 2 1 -near-blind%5:00:00:blind:00 1 1 -nearby%4:02:00:: 1 7 -nearby%5:00:00:near:00 1 8 -nearer%4:02:00:: 1 1 -nearer%5:00:00:near:00 1 4 -nearest%5:00:00:near:00 1 2 -nearly%4:02:00:: 1 53 -nearness%1:07:00:: 1 1 -nearsighted%3:00:00:: 1 1 -neat%5:00:00:adroit:00 4 1 -neat%5:00:00:elegant:00 3 1 -neat%5:00:00:tidy:00 1 9 -neat%5:00:03:tidy:00 2 1 -neatly%4:02:00:: 1 6 -nebraska%1:15:00:: 1 1 -nebulous%5:00:00:indistinct:00 1 1 -necessarily%4:02:00:: 1 5 -necessarily%4:02:01:: 3 1 -necessarily%4:02:03:: 2 4 -necessary%3:00:00:: 1 81 -necessary%5:00:00:inevitable:00 2 1 -necessitate%2:42:00:: 1 12 -necessitate%2:42:01:: 2 4 -necessity%1:17:00:: 2 7 -necessity%1:26:00:: 1 11 -neck%1:08:00:: 1 34 -necklace%1:06:00:: 1 1 -necktie%1:06:00:: 1 2 -necropsy%1:04:00:: 1 1 -necrosis%1:19:00:: 1 3 -necrotic%3:01:00:: 1 1 -nectar%1:27:00:: 1 3 -nectary%1:20:00:: 1 1 -need%1:03:00:: 3 12 -need%1:17:00:: 2 29 -need%1:26:00:: 1 56 -need%1:26:01:: 4 1 -need%2:34:00:: 2 98 -need%2:34:01:: 6 1 -need%2:37:00:: 4 15 -need%2:42:00:: 1 110 -need%2:42:01:: 3 16 -need%2:42:02:: 5 4 -needed%5:00:00:necessary:00 1 21 -needle%1:06:00:: 3 1 -needle%1:06:01:: 2 2 -needle%1:20:00:: 1 2 -needle%2:32:00:: 1 1 -needless%5:00:00:unnecessary:00 1 2 -needlessly%4:02:00:: 1 1 -negation%1:24:00:: 1 1 -negative%1:10:00:: 1 1 -negative%3:00:01:: 3 2 -negative%3:00:02:: 1 12 -negative%5:00:00:backward:01 2 6 -negative%5:00:00:bad:00 4 1 -negative_charge%1:19:00:: 1 2 -negatively_charged%5:00:00:charged:00 1 1 -neglect%1:04:02:: 3 1 -neglect%1:09:00:: 1 2 -neglect%1:26:00:: 2 1 -neglect%2:31:00:: 1 6 -neglect%2:31:01:: 4 3 -neglect%2:31:05:: 3 4 -neglect%2:41:00:: 2 4 -neglected%5:00:00:uncared-for:00 2 1 -neglected%5:00:00:unnoticed:00 1 1 -negligence%1:04:00:: 1 2 -negligent%3:00:00:: 1 1 -negligible%5:00:00:minimal:00 1 7 -negotiate%2:32:00:: 1 17 -negotiation%1:10:00:: 1 2 -negro%1:18:00:: 1 22 -negro%5:00:00:black:02 1 9 -negroid%5:00:00:black:02 1 1 -neighbor%1:18:00:: 1 23 -neighborhood%1:14:00:: 2 14 -neighborhood%1:15:00:: 1 28 -neighboring%5:00:00:near:00 1 6 -neighborliness%1:07:00:: 1 1 -neighbourhood%1:15:00:: 1 1 -neither%4:02:00:: 1 20 -nemesis%1:18:00:: 1 2 -neo%5:00:00:modern:00 1 4 -neo_jazz%1:04:00:: 1 1 -neoclassicism%1:06:00:: 1 1 -neocortex%1:08:00:: 1 5 -neocortical%3:01:00:: 1 3 -neoliberal%5:00:00:liberal:00 1 1 -neon_tube%1:06:00:: 1 1 -neoromanticism%1:14:00:: 1 1 -nephew%1:18:00:: 1 8 -neptune%1:18:00:: 1 1 -nerve%1:07:00:: 2 5 -nerve%1:08:00:: 1 6 -nerveless%5:00:00:composed:00 1 1 -nerves%1:07:00:: 2 1 -nerves%1:26:00:: 1 3 -nervous%5:00:00:tense:03 1 9 -nervous%5:00:00:troubled:00 2 3 -nervous_breakdown%1:26:00:: 1 3 -nervous_system%1:08:00:: 1 2 -nervously%4:02:00:: 1 3 -nervously%4:02:01:: 2 2 -nervousness%1:12:00:: 1 1 -nest%1:06:00:: 2 1 -nest%1:17:00:: 1 14 -nest%2:35:00:: 2 2 -nest%2:42:00:: 1 4 -nesting_place%1:15:00:: 1 1 -nestle%2:35:00:: 1 5 -nestling%1:05:00:: 1 1 -net%1:06:01:: 1 4 -net%1:06:02:: 2 2 -net%2:40:00:: 1 1 -net%3:00:00:: 1 6 -net%5:00:00:ultimate:00 2 1 -netlike%5:00:00:reticulate:00 1 1 -nettle%2:32:00:: 1 1 -nettlesome%5:00:00:disagreeable:00 1 1 -network%1:06:00:: 3 1 -network%1:06:01:: 2 4 -network%1:14:00:: 1 23 -neurological%3:01:00:: 1 1 -neuromuscular%3:01:00:: 1 1 -neuronal%3:01:00:: 1 1 -neuropsychiatric%3:01:00:: 1 2 -neurosis%1:26:00:: 1 8 -neurotic%1:18:00:: 1 1 -neurotic%3:00:00:: 2 1 -neurotic%3:01:00:: 1 3 -neuter%1:10:00:: 1 1 -neutral%3:00:03:: 5 1 -neutral%5:00:00:achromatic:00 6 1 -neutral%5:00:00:amoral:00 1 5 -neutral%5:00:00:nonaligned:00 4 2 -neutral%5:00:00:objective:00 2 4 -neutral%5:00:00:unreactive:00 3 3 -neutralism%1:10:00:: 1 4 -neutralist%1:18:00:: 1 5 -neutrality%1:04:00:: 1 1 -neutralization%1:04:01:: 1 2 -neutralize%2:30:01:: 2 1 -neutralize%2:41:00:: 1 3 -neutralized%5:00:00:neutral:02 1 1 -neutron_bomb%1:06:00:: 1 1 -neutrophil%1:08:00:: 1 5 -never%4:02:00:: 1 255 -never_again%4:02:00:: 1 1 -nevertheless%4:02:00:: 1 28 -new%3:00:00:: 1 310 -new%4:02:00:: 1 1 -new%5:00:00:inexperienced:00 3 11 -new%5:00:00:original:00 2 36 -new%5:00:00:other:00 5 3 -new%5:00:00:unprecedented:00 4 5 -new%5:00:00:unworn:00 6 1 -new_deal%1:10:00:: 1 2 -new_deal%1:28:00:: 2 1 -new_edition%1:10:00:: 1 1 -new_england%1:15:00:: 1 17 -new_englander%1:18:00:: 1 5 -new_hampshire%1:15:00:: 1 1 -new_haven%1:15:00:: 1 1 -new_jersey%1:15:00:: 1 2 -new_mexico%1:15:00:: 1 5 -new_moon%1:28:00:: 1 1 -new_orleans%1:15:00:: 1 2 -new_testament%1:10:00:: 1 2 -new_waver%1:18:00:: 1 1 -new_year's_day%1:28:00:: 1 2 -new_year's_eve%1:28:00:: 1 3 -new_york%1:15:00:: 2 16 -new_york%1:15:01:: 1 46 -new_york_bay%1:17:00:: 1 1 -new_york_city%1:15:00:: 1 6 -new_yorker%1:18:00:: 1 1 -newborn%5:00:00:new:00 2 2 -newborn%5:00:00:young:00 1 4 -newcastle%1:15:00:: 1 1 -newcomer%1:18:00:: 1 2 -newcomer%1:18:01:: 2 1 -newest%5:00:00:modern:00 1 1 -newfoundland%1:05:00:: 1 1 -newly%4:02:00:: 1 10 -newport%1:15:00:: 1 4 -news%1:10:00:: 1 21 -news%1:10:01:: 2 17 -news%1:10:02:: 3 3 -news_conference%1:10:00:: 1 2 -news_item%1:10:00:: 1 1 -news_show%1:10:00:: 1 1 -newsboy%1:18:00:: 1 2 -newsletter%1:10:00:: 1 2 -newsman%1:18:00:: 1 2 -newspaper%1:06:00:: 3 2 -newspaper%1:10:00:: 1 31 -newspaper%1:14:00:: 2 13 -newspaper_columnist%1:18:00:: 1 1 -newspaper_critic%1:18:00:: 1 1 -newspaperman%1:18:00:: 1 1 -newton%1:18:00:: 1 1 -newtonian%3:01:00:: 1 2 -next%4:02:00:: 1 11 -next%5:00:00:close:01 1 24 -next%5:00:00:incoming:00 2 7 -next%5:00:00:succeeding(a):00 3 90 -next-to-last%5:00:01:last:00 1 2 -next_door%4:02:00:: 1 3 -nibbed%5:00:00:pointed:00 1 1 -nice%3:00:00:: 1 23 -nice%5:00:00:respectable:00 2 5 -nice%5:00:02:precise:00 3 1 -nicely%4:02:00:: 1 5 -nicety%1:07:00:: 1 1 -niche%1:06:00:: 3 1 -niche%1:25:00:: 2 1 -niche%1:26:00:: 1 1 -nickel%1:21:00:: 2 1 -nickel%1:27:00:: 1 4 -nickname%1:10:00:: 1 1 -nickname%2:32:00:: 1 1 -nicotine%1:27:00:: 1 1 -niece%1:18:00:: 1 1 -nigger%1:18:00:: 1 15 -night%1:26:00:: 5 1 -night%1:28:00:: 1 163 -night%1:28:01:: 2 1 -night%1:28:02:: 4 1 -night%1:28:04:: 3 1 -night-sight%1:09:00:: 1 1 -night_game%1:04:00:: 1 3 -nightclub%1:06:00:: 1 6 -nightdress%1:06:00:: 1 1 -nighted%5:00:00:unpunctual:00 1 1 -nightfall%1:28:00:: 1 4 -nightingale%1:05:00:: 1 2 -nightmare%1:09:00:: 2 2 -nightmare%1:26:00:: 1 2 -nightmarish%5:00:00:alarming:00 1 1 -nightshirt%1:06:00:: 1 1 -nighttime%1:28:00:: 1 1 -nigra%1:18:00:: 1 1 -nihilism%1:09:00:: 1 1 -nihilistic%3:01:00:: 1 1 -nilpotent%3:01:00:: 1 12 -nimble%5:00:00:active:01 1 1 -nimbly%4:02:00:: 1 1 -nine%1:23:00:: 1 5 -nine%5:00:00:cardinal:00 1 21 -nineteen%1:23:00:: 1 2 -nineteen%5:00:00:cardinal:00 1 4 -nineteenth%5:00:00:ordinal:00 1 14 -nineties%1:28:02:: 1 1 -ninety%5:00:00:cardinal:00 1 4 -ninth%1:24:00:: 1 1 -ninth%5:00:00:ordinal:00 1 11 -nip%2:35:00:: 1 1 -nip%2:35:02:: 2 1 -nirvana%1:26:00:: 1 1 -nitrate%1:27:00:: 1 1 -nitrogen%1:27:00:: 1 5 -nitrogen_oxide%1:27:00:: 1 1 -no%1:10:00:: 1 21 -no%3:00:00:: 1 135 -no%4:02:01:: 2 4 -no%4:02:02:: 1 38 -no-account%5:00:00:worthless:00 1 1 -no-goal%1:09:00:: 1 1 -no-hit%5:00:00:successful:00 1 1 -no-hit_game%1:04:00:: 1 1 -no-nonsense%5:00:00:direct:02 1 1 -no.%1:23:00:: 1 8 -no_doubt%4:02:00:: 1 25 -no_end%4:02:00:: 1 1 -no_longer%4:02:00:: 1 48 -no_man's_land%1:15:00:: 1 1 -no_matter%4:02:00:: 1 10 -no_matter_what_happens%4:02:00:: 1 1 -no_more%4:02:01:: 1 15 -no_more%4:02:05:: 2 12 -nobel_prize%1:10:00:: 1 1 -nobility%1:07:00:: 2 1 -nobility%1:14:00:: 1 1 -noble%3:00:01:: 4 1 -noble%3:00:02:: 3 2 -noble%5:00:00:honorable:00 1 5 -noble%5:00:00:impressive:00 2 3 -nobody%1:18:00:: 1 1 -nociceptive%5:00:00:sensitive:01 1 2 -noctiluca_miliaris%1:05:00:: 1 1 -nocturnal%3:00:00:: 1 1 -nod%1:04:00:: 2 1 -nod%1:10:01:: 1 1 -nod%2:29:03:: 3 1 -nod%2:32:00:: 2 16 -nod%2:32:01:: 1 35 -nodular%3:01:00:: 1 1 -nodule%1:08:00:: 1 1 -noise%1:09:00:: 2 1 -noise%1:11:00:: 1 43 -noisemaker%1:06:00:: 1 2 -noisily%4:02:00:: 1 1 -noisy%3:00:00:: 1 4 -nomia%1:05:00:: 1 2 -nomia_melanderi%1:05:00:: 1 1 -nominal%3:01:01:: 1 1 -nominal%5:00:00:minimal:00 2 1 -nominally%4:02:00:: 1 2 -nominate%2:32:00:: 1 4 -nomination%1:04:00:: 1 3 -non%5:00:00:negative:02 1 35 -non-catholic%1:18:00:: 1 8 -non-discrimination%1:07:00:: 1 1 -non-jew%1:18:00:: 1 1 -non-resistant%1:18:00:: 1 1 -nonassertive%5:00:00:unassertive:00 1 1 -nonchalant%5:00:00:unconcerned:00 1 1 -nonchurchgoing%5:00:00:irreligious:00 1 1 -noncom%1:18:00:: 1 1 -noncommissioned%3:00:00:: 1 1 -noncompetitive%3:00:00:: 1 1 -nonconformist%1:18:01:: 1 1 -nondescript%5:00:00:ordinary:00 1 1 -nondriver%1:18:00:: 1 1 -none%4:02:00:: 1 1 -nonenzymatic%3:01:00:: 1 1 -nonequivalence%1:07:00:: 1 1 -nonequivalent%5:00:00:unequal:00 1 1 -nonetheless%4:02:00:: 1 4 -nonexistent%3:00:00:: 1 3 -nonfiction%1:10:00:: 1 4 -nonfunctional%3:00:00:: 1 1 -noninterference%1:10:00:: 1 1 -nonionic%3:00:00:: 1 1 -nonlinguistic%3:01:00:: 1 2 -nonmetallic%3:00:00:: 1 4 -nonobservant%5:00:00:irreligious:00 1 1 -nonoccurrence%1:26:00:: 1 1 -nonparticulate%3:00:00:: 1 1 -nonpartisan%5:00:00:nonaligned:00 1 1 -nonparty%5:00:00:nonpartisan:00 1 2 -nonpolitical%3:00:00:: 1 1 -nonproductive%5:00:00:unproductive:00 1 1 -nonresident%3:00:00:: 1 2 -nonsense%1:10:00:: 1 5 -nonsense%5:00:00:meaningless:00 1 1 -nonspecific%3:00:00:: 1 19 -nonspecifically%4:02:00:: 1 3 -nonverbal%5:00:01:communicative:00 1 3 -nonvolatile%3:00:00:: 1 1 -nooks_and_crannies%1:09:00:: 1 1 -noon%1:28:00:: 1 8 -noradrenaline%1:08:00:: 1 1 -norethandrolone%1:27:00:: 1 1 -norm%1:09:00:: 2 3 -norm%1:24:00:: 1 9 -normal%3:00:01:: 1 77 -normal%3:00:02:: 2 1 -normal_distribution%1:09:00:: 1 1 -normally%4:02:00:: 1 20 -north%1:15:00:: 4 2 -north%1:15:01:: 2 3 -north%1:15:02:: 1 20 -north%1:24:00:: 3 2 -north%3:00:00:: 1 7 -north%4:02:00:: 1 11 -north-american%3:01:00:: 1 3 -north_america%1:17:00:: 1 4 -north_carolina%1:15:00:: 1 3 -north_korean%1:18:00:: 1 2 -north_korean%3:01:00:: 1 2 -north_pole%1:15:00:: 1 2 -northeast%1:15:00:: 2 1 -northeast%1:24:00:: 1 1 -northeast%5:00:01:north:00 1 1 -northerly%5:00:02:north:00 1 1 -northern%3:00:02:: 1 15 -northern%5:00:01:north:00 3 1 -northern%5:00:02:north:00 2 6 -northerner%1:18:00:: 1 3 -northerner%1:18:01:: 2 1 -northland%1:15:00:: 1 1 -northward%4:02:00:: 1 3 -northwest%1:15:00:: 1 1 -northwest%4:02:00:: 1 1 -northwest%5:00:01:north:00 1 1 -norway%1:15:00:: 1 1 -nose%1:06:00:: 2 3 -nose%1:06:02:: 3 1 -nose%1:08:00:: 1 28 -nose%2:38:02:: 2 1 -nose%2:39:00:: 1 1 -nosed%3:00:00:: 1 1 -nostalgia%1:12:00:: 1 2 -nostalgic%5:00:00:unhappy:00 1 1 -nostrils%1:08:00:: 1 3 -not%4:02:00:: 1 1837 -not_by_a_blame_sight%4:02:00:: 1 1 -not_long%4:02:00:: 1 2 -not_only%4:02:00:: 1 71 -not_to_mention%4:02:00:: 1 2 -not_yet%4:02:00:: 1 22 -notable%1:18:00:: 1 1 -notable%5:00:00:known:00 2 1 -notable%5:00:00:worthy:00 1 5 -notably%4:02:00:: 1 5 -notarize%2:32:00:: 1 1 -notation%1:10:00:: 1 2 -notch%1:25:00:: 1 1 -notch%2:35:00:: 1 3 -note%1:07:00:: 5 2 -note%1:10:00:: 1 14 -note%1:10:02:: 7 1 -note%1:10:03:: 2 13 -note%1:10:04:: 3 4 -note%1:10:05:: 4 3 -note%1:21:01:: 6 1 -note%2:32:00:: 1 41 -note%2:32:01:: 4 3 -note%2:39:00:: 2 36 -note%2:39:02:: 3 29 -notebook%1:10:00:: 1 2 -noted%5:00:00:known:00 1 3 -noteworthy%5:00:00:worthy:00 1 3 -nothing%1:23:00:: 1 141 -notice%1:09:00:: 2 3 -notice%1:09:01:: 6 1 -notice%1:10:00:: 5 1 -notice%1:10:01:: 1 8 -notice%1:10:02:: 3 2 -notice%1:10:03:: 4 1 -notice%2:32:00:: 3 1 -notice%2:39:00:: 2 19 -notice%2:39:04:: 1 39 -noticeable%3:00:00:: 1 2 -noticeable%5:00:00:perceptible:00 2 1 -noticeably%4:02:00:: 1 1 -notification%1:04:02:: 1 1 -notify%2:32:00:: 1 10 -notion%1:09:00:: 2 14 -notion%1:09:01:: 3 2 -notion%1:09:02:: 1 14 -notorious%5:00:00:disreputable:00 1 5 -notoriously%4:02:00:: 1 1 -notwithstanding%4:02:00:: 1 1 -noun%1:10:00:: 1 1 -noun%1:10:01:: 2 1 -nourish%2:34:00:: 1 4 -nourish%2:34:01:: 2 1 -nourished%3:00:00:: 1 1 -nourishment%1:13:00:: 1 1 -nov%1:28:00:: 1 9 -novel%1:10:00:: 1 17 -novel%5:00:00:original:00 1 6 -novelist%1:18:00:: 1 6 -novelty%1:07:00:: 1 3 -novelty%1:09:00:: 2 1 -november%1:28:00:: 1 22 -november_2%1:28:00:: 1 1 -novitiate%1:28:00:: 1 1 -now%1:28:00:: 1 10 -now%4:02:00:: 2 182 -now%4:02:01:: 5 9 -now%4:02:02:: 3 29 -now%4:02:04:: 4 15 -now%4:02:05:: 1 283 -now_and_again%4:02:00:: 1 1 -now_and_then%4:02:00:: 1 3 -nowhere%1:26:00:: 1 1 -nowhere%4:02:00:: 1 11 -nowise%4:02:00:: 1 3 -nozzle%1:06:00:: 1 2 -nuance%1:10:00:: 1 2 -nubbin%1:17:00:: 1 1 -nubile%5:00:00:mature:01 1 1 -nuclear%3:00:00:: 1 12 -nuclear%3:01:01:: 2 5 -nuclear%3:01:02:: 3 1 -nuclear%5:00:00:central:01 4 1 -nuclear_resonance%1:19:00:: 1 1 -nucleate%2:42:00:: 1 1 -nucleic_acid%1:27:00:: 1 1 -nucleolus%1:08:00:: 1 2 -nucleus%1:08:00:: 1 10 -nucleus%1:14:00:: 3 3 -nucleus%1:17:00:: 2 3 -nude%1:06:00:: 1 2 -nude%5:00:00:unclothed:00 1 2 -nudge%2:35:00:: 1 3 -nuisance%1:09:00:: 1 3 -null%5:00:00:invalid:00 1 1 -null_space%1:14:00:: 1 9 -numb%5:00:00:insensible:00 1 3 -number%1:07:00:: 1 131 -number%1:07:01:: 9 1 -number%1:10:00:: 6 2 -number%1:10:01:: 5 2 -number%1:10:02:: 8 1 -number%1:10:03:: 4 5 -number%1:10:04:: 3 5 -number%1:14:00:: 7 1 -number%1:23:00:: 2 63 -number%2:32:01:: 3 1 -number%2:32:03:: 2 2 -number%2:42:00:: 1 6 -number_one%1:18:00:: 1 1 -numbering%1:10:00:: 1 2 -numbers_game%1:04:00:: 1 1 -numbing%5:00:00:desensitizing:00 1 3 -numbness%1:26:00:: 1 1 -numerical%3:01:00:: 2 1 -numerical%5:00:00:denotative:00 3 1 -numerical%5:00:00:quantitative:00 1 4 -numerous%5:00:00:many:00 1 18 -numinous%5:00:00:sacred:00 1 1 -nun%1:18:00:: 1 3 -nurse%1:18:00:: 1 2 -nurse%1:18:01:: 2 1 -nurse%2:29:00:: 1 2 -nurse%2:37:00:: 2 1 -nursery%1:06:01:: 1 2 -nursing%1:04:00:: 1 1 -nurture%2:32:00:: 1 1 -nut%1:06:00:: 3 1 -nut%1:18:00:: 2 1 -nut%1:20:00:: 1 2 -nuthouse%1:06:00:: 1 1 -nutrient%1:03:00:: 1 1 -nutrient%5:00:00:wholesome:00 1 1 -nutritional%3:01:00:: 1 1 -nutritive%5:00:00:wholesome:00 1 1 -nuzzle%2:35:02:: 1 1 -nymph%1:05:00:: 2 1 -nymph%1:18:00:: 1 1 -nymphomaniac%1:18:00:: 1 2 -o%1:14:00:: 1 6 -o%1:27:00:: 2 3 -o'clock%4:02:00:: 1 16 -o.k.%5:00:00:satisfactory:00 1 2 -oak%1:20:00:: 2 1 -oak%1:20:02:: 1 3 -oaken%5:00:00:woody:00 1 1 -oat%1:20:00:: 1 1 -oath%1:10:00:: 2 2 -oath%1:10:01:: 1 15 -oatmeal%1:13:00:: 1 1 -obdurate%5:00:00:unregenerate:00 1 1 -obedience%1:04:00:: 1 3 -obedient%3:00:00:: 1 3 -obediently%4:02:00:: 1 1 -obelisk%1:06:00:: 1 1 -obey%2:41:00:: 1 14 -object%1:03:00:: 1 51 -object%1:09:00:: 2 3 -object%1:09:01:: 4 1 -object%1:10:00:: 3 2 -object%2:32:00:: 1 19 -objectification%1:04:00:: 1 2 -objection%1:04:01:: 3 2 -objection%1:10:00:: 2 3 -objection%1:10:01:: 1 10 -objectionable%5:00:00:offensive:01 1 1 -objective%1:09:00:: 1 38 -objective%3:00:00:: 1 9 -objectivity%1:07:00:: 1 2 -objet_d'art%1:06:00:: 1 1 -obligated%3:00:00:: 1 2 -obligation%1:04:00:: 1 14 -obligation%1:26:00:: 2 1 -obligational%3:01:00:: 1 1 -oblige%2:32:00:: 2 1 -oblige%2:41:00:: 1 14 -obliged%5:00:00:obligated(p):00 1 7 -obligingly%4:02:00:: 1 1 -oblique%3:00:00:: 1 2 -obliterate%2:30:00:: 3 1 -obliterate%2:30:01:: 2 1 -obliterate%2:30:02:: 1 1 -obliterating%5:00:00:destructive:00 1 1 -obliteration%1:04:00:: 1 2 -oblivion%1:26:00:: 1 1 -oblivious%5:00:00:unaware:00 1 2 -obnoxious%5:00:00:offensive:01 1 2 -obscene%5:00:00:indecent:00 1 2 -obscenity%1:07:00:: 1 1 -obscure%2:30:00:: 3 2 -obscure%2:31:00:: 2 2 -obscure%2:39:00:: 1 3 -obscure%5:00:00:incomprehensible:00 2 2 -obscure%5:00:00:unclear:00 1 4 -obscurely%4:02:00:: 1 1 -obscurity%1:07:02:: 1 3 -obscurity%1:26:00:: 2 2 -obscurity%1:26:01:: 3 2 -obsequious%5:00:00:insincere:00 1 2 -observable%5:00:00:noticeable:00 1 1 -observance%1:04:00:: 1 1 -observant%5:00:00:attentive:00 1 2 -observation%1:04:00:: 2 6 -observation%1:04:01:: 1 26 -observation%1:09:00:: 5 1 -observation%1:09:02:: 4 1 -observation%1:10:00:: 3 1 -observation_dome%1:06:00:: 1 2 -observational%5:00:00:empirical:00 1 1 -observe%2:31:00:: 8 1 -observe%2:32:00:: 2 17 -observe%2:39:00:: 4 10 -observe%2:39:01:: 3 12 -observe%2:39:02:: 1 39 -observe%2:41:00:: 7 2 -observe%2:41:01:: 5 4 -observe%2:41:02:: 6 3 -observed%5:00:00:determined:00 1 7 -observed%5:00:00:witnessed:00 2 1 -observer%1:18:00:: 1 11 -observer%1:18:01:: 2 9 -obsess%2:37:00:: 1 2 -obsessed%5:00:00:concerned:00 1 1 -obsessive-compulsive%5:00:00:neurotic:00 1 1 -obsidian%1:27:00:: 1 1 -obsolescent%5:00:00:noncurrent:00 1 1 -obstacle%1:06:00:: 2 4 -obstacle%1:09:00:: 1 5 -obstinately%4:02:00:: 1 2 -obstruct%2:35:00:: 2 2 -obstruct%2:41:00:: 1 2 -obstruction%1:06:00:: 1 4 -obtain%2:30:00:: 2 17 -obtain%2:40:00:: 1 116 -obtain%2:42:00:: 3 1 -obtainable%5:00:00:available:00 1 3 -obtrude_upon%2:38:00:: 1 1 -obtrusiveness%1:07:00:: 1 1 -obverse%1:09:00:: 1 1 -obvious%3:00:00:: 1 26 -obvious%3:00:04:: 3 1 -obvious%5:00:00:palpable:00 2 7 -obviously%4:02:00:: 1 44 -occasion%1:11:00:: 1 14 -occasion%1:11:01:: 2 6 -occasion%1:16:00:: 3 3 -occasion%2:36:00:: 1 3 -occasional%5:00:00:infrequent:00 1 21 -occasional%5:00:00:unpredictable:00 2 2 -occasionally%4:02:00:: 1 30 -occasions%1:09:00:: 1 1 -occidental%1:18:00:: 1 1 -occipital%3:01:00:: 1 1 -occipital_lobe%1:08:00:: 1 1 -occlude%2:35:00:: 1 1 -occluded%5:00:00:combined:00 2 1 -occluded%5:00:00:obstructed:00 1 2 -occlusion%1:26:00:: 1 1 -occlusive%3:01:00:: 1 1 -occupancy%1:04:00:: 1 1 -occupant%1:18:00:: 1 6 -occupation%1:04:00:: 1 7 -occupation%1:04:01:: 4 1 -occupation%1:04:02:: 2 1 -occupation%1:04:04:: 3 1 -occupation_license%1:10:00:: 1 1 -occupational%3:01:00:: 1 4 -occupied%3:00:00:: 1 3 -occupy%2:31:00:: 8 1 -occupy%2:33:00:: 6 2 -occupy%2:40:08:: 7 1 -occupy%2:41:00:: 2 8 -occupy%2:42:00:: 3 7 -occupy%2:42:01:: 4 3 -occupy%2:42:02:: 1 15 -occupy%2:42:04:: 5 2 -occur%2:30:00:: 1 81 -occur%2:31:00:: 2 21 -occur%2:42:00:: 3 16 -occurrence%1:11:00:: 1 29 -occurrence%1:26:00:: 2 3 -ocean%1:17:00:: 1 8 -ocean_floor%1:17:00:: 1 1 -ocelot%1:05:00:: 1 1 -ocher%1:07:00:: 1 1 -oct%1:28:00:: 1 3 -octahedron%1:25:00:: 1 1 -octave%1:28:00:: 1 1 -october%1:28:00:: 1 13 -ocular%3:01:00:: 1 1 -odd%3:00:00:: 1 7 -odd%5:00:00:inexact:00 3 3 -odd%5:00:00:strange:00 4 1 -odd%5:00:00:unusual:00 2 6 -oddly%4:02:00:: 1 2 -oddly_enough%4:02:00:: 1 2 -odds%1:07:00:: 1 1 -odds_and_ends%1:14:00:: 1 2 -odessa%1:15:00:: 1 1 -odious%5:00:00:hateful:00 1 1 -odor%1:07:00:: 1 7 -odor%1:09:00:: 2 2 -odyssey%1:04:00:: 1 1 -of_a_sudden%4:02:00:: 1 7 -of_age%5:00:00:old:02 1 4 -of_all_time%4:02:00:: 1 2 -of_course%4:02:00:: 1 123 -of_his_own%5:00:00:personal:00 1 1 -of_late%4:02:00:: 1 2 -of_necessity%4:02:00:: 1 1 -of_our_own%5:00:00:personal:00 1 2 -of_their_own%5:00:00:personal:00 1 1 -of_value%5:00:00:important:00 1 1 -off%3:00:00:: 1 3 -off%4:02:00:: 2 12 -off%4:02:03:: 1 13 -off%4:02:04:: 3 5 -off%5:00:00:unsatisfactory:00 2 1 -off-broadway%1:15:00:: 1 1 -off_and_on%4:02:00:: 1 1 -off_guard%5:00:00:unready:00 1 2 -off_the_beaten_track%5:00:00:far:00 1 1 -offbeat%5:00:00:unconventional:01 1 1 -offence%1:04:00:: 1 1 -offend%2:37:01:: 1 2 -offender%1:18:00:: 1 1 -offense%1:04:01:: 3 1 -offense%1:04:02:: 1 2 -offense%1:12:00:: 2 1 -offensive%1:04:00:: 1 1 -offensive%5:00:00:offending:00 1 1 -offer%1:10:00:: 2 2 -offer%1:10:01:: 1 2 -offer%2:31:00:: 4 4 -offer%2:39:06:: 8 1 -offer%2:40:00:: 2 31 -offer%2:40:01:: 7 1 -offer%2:40:02:: 1 95 -offer%2:40:03:: 6 3 -offer%2:40:09:: 5 3 -offer%2:41:00:: 3 12 -offering%1:10:00:: 1 1 -office%1:04:01:: 3 6 -office%1:06:00:: 1 62 -office%1:14:01:: 2 24 -office%1:26:00:: 4 2 -office_boy%1:18:00:: 1 1 -officer%1:18:01:: 3 8 -officer%1:18:02:: 2 23 -officer%1:18:03:: 1 86 -officer%1:18:04:: 4 1 -officer%2:32:00:: 1 1 -official%1:18:00:: 2 3 -official%1:18:01:: 1 23 -official%3:00:00:: 1 10 -official%3:01:00:: 2 1 -official%5:00:00:confirmed:00 3 1 -officially%4:02:00:: 1 2 -officially%4:02:01:: 2 1 -officiate%2:33:00:: 2 1 -officiate%2:41:01:: 1 4 -offsaddle%2:35:00:: 1 1 -offset%2:42:00:: 2 2 -offset%2:42:01:: 1 5 -offshore%4:02:00:: 1 1 -offspring%1:11:00:: 2 1 -offspring%1:18:00:: 1 3 -offstage%1:06:00:: 1 1 -often%4:02:00:: 1 153 -often%4:02:01:: 2 2 -oftentimes%4:02:00:: 1 1 -ogle%2:39:00:: 1 2 -ogress%1:18:00:: 1 1 -ohio%1:15:00:: 1 9 -ohmic%3:01:00:: 1 1 -oil%1:06:01:: 2 5 -oil%1:27:00:: 1 10 -oil%2:35:00:: 1 1 -oil-water_interface%1:17:00:: 1 2 -oil_business%1:14:00:: 1 1 -oil_geologist%1:18:00:: 1 1 -oil_painting%1:06:00:: 1 2 -oil_well%1:06:00:: 1 2 -oilcloth%1:06:00:: 1 1 -oiled%3:00:00:: 1 1 -oilfield%1:15:00:: 1 2 -oily%5:00:00:coated:00 3 1 -oily%5:00:00:fatty:00 1 4 -oily%5:00:00:insincere:00 2 1 -ok%4:02:00:: 1 1 -okay%5:00:00:satisfactory:00 1 2 -oklahoma%1:15:00:: 1 2 -old%3:00:01:: 2 95 -old%3:00:02:: 1 108 -old%5:00:00:experienced:00 6 1 -old%5:00:00:familiar:00 4 5 -old%5:00:00:past:00 3 22 -old%5:00:00:unoriginal:00 5 4 -old-fashioned%5:00:00:nonmodern:00 1 2 -old-fashioned%5:00:00:unfashionable:00 2 1 -old-time%5:00:00:nonmodern:00 1 1 -old_age%1:28:00:: 1 1 -old_boy%1:18:00:: 2 1 -old_boy%1:18:02:: 1 7 -old_country%1:15:00:: 1 2 -old_maid%1:18:00:: 1 4 -old_man%1:18:01:: 3 1 -old_man%1:18:02:: 1 38 -old_man%1:18:03:: 2 3 -old_school%1:14:00:: 1 1 -old_south%1:15:00:: 1 3 -old_testament%1:10:00:: 1 5 -old_wives'_tale%1:09:00:: 1 1 -old_woman%1:18:00:: 1 11 -older%3:00:00:: 2 3 -older%5:00:00:experienced:00 4 1 -older%5:00:00:old:02 1 11 -older%5:00:00:senior:00 3 3 -oldest%5:00:00:first:00 1 1 -oldster%1:18:00:: 1 2 -oleander%1:20:00:: 1 1 -oleophilic%3:00:00:: 1 3 -oleophobic%3:00:00:: 1 1 -olive%5:00:00:chromatic:00 1 2 -ology%1:09:00:: 1 1 -olympic%3:01:00:: 1 4 -olympics%1:11:00:: 1 2 -omen%1:11:00:: 1 3 -ominous%5:00:00:alarming:00 1 10 -ominously%4:02:00:: 1 3 -omission%1:04:01:: 1 2 -omission%1:22:00:: 3 1 -omission%1:26:00:: 2 1 -omit%2:31:01:: 1 10 -omniscient%5:00:00:wise:00 1 1 -on%3:00:00:: 1 6 -on%4:02:00:: 1 40 -on%4:02:01:: 2 2 -on%4:02:02:: 3 1 -on-site%3:00:00:: 1 1 -on-the-scene%5:00:00:on-site:00 1 1 -on-the-spot%5:00:00:on-site:00 1 1 -on_all_fours%4:02:00:: 1 1 -on_duty%5:00:00:active:08 1 1 -on_fire%5:00:00:lighted:00 1 1 -on_guard%5:00:00:wary:00 1 1 -on_hand%5:00:00:available:00 1 4 -on_her_own%5:00:00:independent:00 1 1 -on_his_own%5:00:00:independent:00 1 2 -on_it%4:02:00:: 1 7 -on_leave%5:00:00:inactive:08 1 1 -on_occasion%4:02:00:: 1 2 -on_paper%4:02:01:: 1 4 -on_request%4:02:00:: 1 4 -on_the_average%4:02:00:: 1 1 -on_the_contrary%4:02:02:: 1 10 -on_the_face_of_it%4:02:00:: 1 1 -on_the_far_side%4:02:00:: 1 1 -on_the_hook%5:00:00:dangerous:00 1 1 -on_the_job%5:00:00:employed:00 1 7 -on_the_one_hand%4:02:00:: 1 10 -on_the_other_hand%4:02:00:: 1 26 -on_the_road%1:04:00:: 1 1 -on_the_side%4:02:00:: 1 1 -on_the_spot%4:02:00:: 1 3 -on_the_way%4:02:00:: 1 10 -on_the_whole%4:02:00:: 1 4 -on_the_wing%4:02:00:: 1 1 -on_time%5:00:00:punctual:00 1 1 -on_trial%5:00:00:unproved:00 1 1 -onboard%4:02:00:: 1 3 -once%4:02:00:: 1 98 -once%4:02:01:: 3 21 -once%4:02:02:: 2 28 -once%5:00:00:past:00 1 3 -once_again%4:02:00:: 1 13 -once_and_for_all%4:02:00:: 1 2 -once_in_a_while%4:02:00:: 1 1 -once_more%4:02:00:: 1 15 -oncoming%5:00:00:moving:02 1 1 -one%1:09:00:: 2 26 -one%1:23:00:: 1 44 -one%5:00:00:cardinal:00 1 422 -one%5:00:00:extraordinary:00 5 1 -one%5:00:00:indefinite:00 6 1 -one%5:00:00:same:00 4 3 -one%5:00:00:united:00 3 4 -one%5:00:00:unspecified:00 2 129 -one%5:00:01:single(a):00 8 53 -one%5:00:02:single(a):00 7 28 -one-eighth%1:23:00:: 1 2 -one-fifth%1:23:00:: 1 3 -one-fourth%1:23:00:: 1 1 -one-half%1:23:00:: 1 7 -one-horse%5:00:00:provincial:00 1 1 -one-man%5:00:00:single(a):00 1 3 -one-tenth%1:23:00:: 1 1 -one-third%1:23:00:: 1 7 -one-thousandth%1:23:00:: 1 1 -one-upmanship%1:04:00:: 1 1 -one_after_another%4:02:01:: 1 2 -one_and_the_same%5:00:00:same:02 1 4 -one_at_a_time%4:02:00:: 1 2 -one_by_one%4:02:00:: 2 1 -one_by_one%4:02:02:: 1 6 -one_hundred%5:00:00:cardinal:00 1 10 -one_of_these_days%4:02:00:: 1 1 -one_percent%1:23:00:: 1 2 -one_thousand%5:00:00:cardinal:00 1 2 -oneness%1:07:00:: 1 2 -onetime%5:00:00:past:00 1 2 -onlooker%1:18:00:: 1 3 -only%4:02:00:: 3 13 -only%4:02:01:: 2 226 -only%4:02:02:: 1 258 -only%4:02:03:: 6 2 -only%4:02:04:: 4 6 -only%4:02:06:: 5 4 -only%5:00:00:single(a):00 1 118 -only_if%4:02:00:: 1 1 -only_too%4:02:00:: 1 2 -only_when%4:02:00:: 1 3 -onrush%1:04:00:: 1 2 -onrush%1:11:00:: 2 1 -onset%1:11:00:: 1 42 -onshore%3:00:04:: 1 1 -onshore%4:02:00:: 1 1 -onslaught%1:04:00:: 2 2 -onslaught%1:11:00:: 1 2 -onward%5:00:00:advancing:00 1 3 -opalescent%5:00:00:bright:00 1 1 -opaque%3:00:00:: 1 3 -open%1:15:01:: 1 1 -open%1:15:02:: 2 1 -open%2:30:00:: 6 4 -open%2:30:01:: 7 2 -open%2:33:00:: 9 1 -open%2:35:00:: 1 66 -open%2:35:06:: 3 17 -open%2:35:08:: 5 4 -open%2:41:00:: 2 45 -open%2:41:01:: 4 14 -open%2:42:00:: 8 1 -open%3:00:01:: 1 34 -open%3:00:02:: 2 17 -open%3:00:04:: 12 1 -open%3:00:08:: 5 4 -open%5:00:00:available:00 6 4 -open%5:00:00:coarse:00 9 2 -open%5:00:00:empty:00 16 1 -open%5:00:00:public:00 4 7 -open%5:00:00:unconstricted:00 15 1 -open%5:00:00:unenclosed:00 10 2 -open%5:00:00:unfolded:00 11 2 -open%5:00:00:unprotected:00 3 13 -open%5:00:00:unrestricted:00 7 3 -open%5:00:00:unsealed:01 14 1 -open%5:00:00:unsettled:02 13 1 -open%5:00:00:vulnerable:00 8 2 -open-collared%5:00:00:unbuttoned:00 1 1 -open-ended%5:00:00:indeterminate:01 2 1 -open-ended%5:00:00:unrestricted:00 1 1 -open_fire%2:33:00:: 1 1 -open_house%1:14:00:: 1 1 -open_sesame%1:04:00:: 1 1 -open_to%5:00:00:receptive:00 1 3 -open_to%5:00:00:susceptible:00 2 1 -open_up%2:30:00:: 3 2 -open_up%2:30:01:: 2 2 -open_up%2:35:00:: 1 2 -open_up%2:36:00:: 4 1 -opened%3:00:02:: 1 2 -opened%5:00:00:open:02 2 1 -opener%1:11:00:: 1 3 -opening%1:04:01:: 5 1 -opening%1:04:02:: 3 2 -opening%1:11:00:: 4 1 -opening%1:11:01:: 2 2 -opening%1:17:00:: 1 5 -opening%3:00:00:: 1 8 -openly%4:02:00:: 1 13 -openmouthed%5:00:00:surprised:00 1 2 -openwork%1:06:00:: 1 1 -opera%1:10:00:: 1 10 -opera_bouffe%1:10:00:: 1 1 -operagoer%1:18:00:: 1 1 -operate%2:30:00:: 5 2 -operate%2:33:00:: 4 3 -operate%2:35:00:: 3 14 -operate%2:35:03:: 2 29 -operate%2:41:00:: 1 34 -operatic%3:01:00:: 1 2 -operating%3:44:00:: 1 2 -operating_budget%1:21:00:: 1 1 -operating_capital%1:21:00:: 1 1 -operating_cost%1:21:00:: 1 2 -operating_procedure%1:04:00:: 1 1 -operation%1:04:00:: 7 2 -operation%1:04:02:: 6 4 -operation%1:04:03:: 4 8 -operation%1:04:04:: 3 8 -operation%1:04:05:: 8 2 -operation%1:04:06:: 2 11 -operation%1:22:00:: 5 4 -operation%1:26:00:: 1 12 -operational%3:00:00:: 3 2 -operational%3:01:00:: 1 7 -operational%5:00:00:operative:00 4 1 -operational%5:00:00:serviceable:00 2 4 -operationally%4:02:00:: 1 1 -operations%1:04:00:: 1 1 -operative%3:00:00:: 1 1 -operator%1:18:00:: 2 9 -operator%1:18:01:: 3 1 -operator%1:18:02:: 4 1 -operator%1:24:00:: 1 27 -operetta%1:10:00:: 1 4 -opinion%1:04:01:: 5 2 -opinion%1:09:00:: 1 21 -opinion%1:09:01:: 3 3 -opinion%1:10:00:: 4 2 -opinion%1:10:01:: 2 4 -opinionated%5:00:00:narrow-minded:00 1 1 -opium%1:06:00:: 1 14 -opponent%1:18:00:: 3 2 -opponent%1:18:01:: 2 2 -opponent%1:18:02:: 1 2 -opportunism%1:07:00:: 1 1 -opportunistic%5:00:00:expedient:00 1 1 -opportunity%1:26:00:: 1 67 -oppose%2:32:01:: 1 24 -oppose%2:33:00:: 4 3 -oppose%2:33:01:: 2 10 -oppose%2:42:00:: 3 4 -opposed%3:00:00:: 2 1 -opposed%5:00:00:anti:00 1 3 -opposing%5:00:00:counteractive:00 2 1 -opposing%5:00:00:hostile:01 1 4 -opposite%1:10:00:: 1 2 -opposite%1:18:00:: 3 1 -opposite%1:24:03:: 2 1 -opposite%3:00:00:: 2 4 -opposite%5:00:00:different:00 6 1 -opposite%5:00:00:other:00 4 3 -opposite%5:00:01:other:00 1 9 -opposite%5:00:02:different:00 5 3 -opposite%5:00:02:other:00 3 4 -opposition%1:04:00:: 3 3 -opposition%1:04:01:: 1 7 -opposition%1:14:00:: 5 1 -opposition%1:18:01:: 4 1 -opposition%1:24:02:: 2 4 -oppress%2:41:00:: 1 1 -oppressed%5:00:00:wronged:00 1 2 -oppression%1:04:00:: 1 1 -opt_for%2:31:00:: 1 2 -optical%3:01:01:: 1 2 -optical%3:01:04:: 2 1 -optically%4:02:00:: 1 1 -optimal%5:00:00:best:00 1 3 -optimism%1:12:00:: 1 2 -optimistic%3:00:00:: 1 2 -optimum%1:07:00:: 1 1 -optimum%5:00:00:best:00 1 6 -opulent%5:00:00:rich:03 1 1 -opus%1:10:00:: 1 2 -or_else%4:02:01:: 1 7 -or_so%4:02:00:: 1 8 -oral%5:00:00:spoken:00 1 6 -oral_cavity%1:08:00:: 1 1 -orally%4:02:01:: 1 1 -orange%1:07:00:: 2 3 -orange%1:13:00:: 1 4 -orange%1:20:00:: 3 1 -orange%5:00:00:chromatic:00 1 7 -oration%1:10:00:: 1 2 -orator%1:18:00:: 1 1 -oratorical%5:00:00:rhetorical:00 1 2 -oratorio%1:10:00:: 1 1 -orb%1:08:00:: 1 2 -orbit%1:07:00:: 3 1 -orbit%1:15:00:: 1 11 -orbit%1:26:00:: 2 1 -orbit%2:38:00:: 1 2 -orbital%3:01:00:: 1 2 -orchard%1:06:00:: 1 2 -orchestra%1:06:00:: 2 1 -orchestra%1:14:00:: 1 10 -orchestral%3:01:00:: 1 1 -orchestration%1:04:01:: 2 1 -orchestration%1:10:00:: 1 3 -orchid%1:20:00:: 1 1 -ordain%2:41:00:: 2 1 -ordain%2:41:01:: 1 3 -ordeal%1:11:00:: 1 3 -order%1:07:01:: 2 8 -order%1:10:00:: 6 2 -order%1:10:01:: 7 2 -order%1:10:02:: 9 1 -order%1:10:03:: 1 26 -order%1:14:00:: 4 6 -order%1:14:02:: 8 1 -order%1:26:00:: 3 7 -order%1:26:02:: 5 4 -order%2:30:00:: 5 1 -order%2:30:01:: 6 1 -order%2:32:00:: 2 14 -order%2:32:01:: 1 28 -order%2:32:02:: 3 5 -order%2:41:01:: 4 3 -order_arms%1:04:00:: 1 1 -order_of_magnitude%1:07:00:: 1 5 -ordered%3:00:00:: 1 4 -ordered%5:00:00:organized:01 2 4 -ordering%1:04:00:: 2 3 -ordering%1:14:00:: 1 4 -orderliness%1:07:00:: 1 1 -orderly%1:18:01:: 1 2 -orderly%3:00:00:: 1 4 -orderly%5:00:00:nonrandom:00 3 1 -orderly%5:00:00:regular:00 2 1 -orderly_sergeant%1:18:00:: 1 1 -ordinance%1:10:00:: 1 1 -ordinarily%4:02:00:: 1 9 -ordinary%1:18:01:: 1 3 -ordinary%1:26:00:: 2 1 -ordinary%3:00:00:: 1 28 -ordinary%5:00:02:common:01 2 4 -ordinate%1:09:00:: 1 1 -ore%1:27:00:: 1 3 -oregon%1:15:00:: 1 2 -organ%1:06:01:: 3 1 -organ%1:08:00:: 1 8 -organ%1:14:00:: 2 1 -organic%3:00:01:: 1 21 -organic%3:01:00:: 2 1 -organically%4:02:00:: 2 1 -organically%4:02:01:: 1 1 -organification%1:22:00:: 1 4 -organise%2:30:00:: 1 1 -organism%1:03:00:: 1 9 -organization%1:04:00:: 4 3 -organization%1:09:00:: 2 12 -organization%1:14:00:: 1 29 -organization%1:14:01:: 3 11 -organizational%3:01:00:: 1 3 -organize%2:30:00:: 4 4 -organize%2:31:00:: 3 5 -organize%2:36:00:: 5 2 -organize%2:41:00:: 2 6 -organize%2:41:01:: 1 11 -organize%2:41:02:: 6 1 -organized%3:00:01:: 2 2 -organized%3:00:02:: 1 5 -organizer%1:18:00:: 1 1 -orgy%1:04:00:: 2 1 -orgy%1:04:01:: 1 1 -orient%1:15:00:: 1 1 -orient%2:39:00:: 2 2 -orient%2:42:00:: 1 2 -orient%2:42:01:: 3 1 -oriental%5:00:00:eastern:01 1 4 -orientation%1:04:00:: 1 2 -orientation%1:09:00:: 2 1 -oriented%3:00:00:: 1 4 -orifice%1:08:00:: 1 2 -origin%1:07:00:: 2 3 -origin%1:09:00:: 4 1 -origin%1:11:00:: 3 1 -origin%1:15:00:: 1 11 -original%1:06:00:: 1 3 -original%1:09:00:: 2 2 -original%3:00:00:: 3 5 -original%5:00:00:primary:00 2 8 -original%5:00:01:first:00 1 17 -original_sin%1:04:00:: 1 1 -originality%1:07:00:: 2 1 -originality%1:09:00:: 1 3 -originally%4:02:00:: 1 3 -originally%4:02:01:: 2 1 -originate%2:36:00:: 2 4 -originate%2:42:00:: 1 12 -originate_in%2:42:00:: 1 7 -orinoco%1:17:00:: 1 1 -ornament%1:06:00:: 1 1 -ornament%2:36:00:: 1 1 -ornamented%5:00:00:adorned:00 1 1 -ornate%5:00:00:adorned:00 1 1 -ornately%4:02:00:: 1 1 -ornery%5:00:00:ill-natured:00 1 4 -orphan%1:18:00:: 1 1 -orthicon%1:06:00:: 1 1 -orthodox%3:00:00:: 2 3 -orthodox%3:01:00:: 1 3 -orthodox_catholic_church%1:14:00:: 1 1 -orthodox_church%1:14:00:: 1 1 -orthodoxy%1:07:00:: 1 1 -orthographic%3:01:00:: 1 3 -orthography%1:10:00:: 1 8 -orthopedic%3:01:00:: 1 1 -orthophosphate%1:27:00:: 1 1 -os%1:08:01:: 1 1 -oscillation%1:11:00:: 2 1 -oscillation%1:22:00:: 1 1 -oscillator%1:06:00:: 1 1 -osmotic_pressure%1:19:00:: 1 3 -osseous%3:01:00:: 1 2 -ossification%1:22:00:: 1 6 -ossify%2:30:00:: 1 1 -ostensibly%4:02:00:: 1 1 -ostentatious%3:00:00:: 1 1 -osteoporosis%1:26:00:: 1 1 -ostracize%2:41:01:: 1 1 -other%3:00:00:: 1 483 -other%5:00:00:added:00 2 33 -other%5:00:00:past:00 3 8 -other_than%5:00:00:other:00 1 24 -otherwise%4:02:01:: 1 24 -otherwise%4:02:03:: 2 7 -ought%2:42:00:: 2 1 -ought%2:42:01:: 1 5 -ounce%1:23:02:: 1 4 -oust%2:41:00:: 1 4 -out%3:00:01:: 1 13 -out%3:00:02:: 2 3 -out%4:02:00:: 1 48 -out%4:02:01:: 2 45 -out%4:02:02:: 3 5 -out%5:00:00:dead:02 3 2 -out%5:00:00:impossible:00 4 1 -out-and-out%5:00:00:complete:00 1 1 -out-of-bounds%5:00:00:foul:00 1 3 -out-of-bounds%5:00:00:restricted:00 2 2 -out-of-doors%1:15:00:: 1 1 -out-of-school%5:00:00:free:00 1 1 -out-of-the-way%5:00:00:unusual:00 1 1 -out-of-town%5:00:00:distant:01 1 3 -out_loud%4:02:00:: 1 2 -out_of_action%5:00:00:injured:00 1 2 -out_of_commission%3:00:00:: 1 1 -out_of_doors%4:02:00:: 1 3 -out_of_focus%3:00:00:: 1 1 -out_of_hand%4:02:00:: 1 3 -out_of_place%5:00:00:malapropos:00 1 1 -out_of_sight%4:02:00:: 2 1 -out_of_sight%4:02:01:: 1 1 -out_of_sight%5:00:00:invisible:00 1 4 -out_of_the_blue%5:00:00:unexpected:00 1 1 -out_of_the_question%5:00:00:unthinkable:00 1 1 -out_to%5:00:00:resolute:00 1 1 -outboard_motor%1:06:00:: 1 1 -outbreak%1:11:00:: 1 1 -outburst%1:10:00:: 1 3 -outburst%1:11:00:: 2 2 -outcast%1:18:00:: 1 2 -outclass%2:31:00:: 1 1 -outclassed%5:00:00:inferior:01 1 1 -outcome%1:11:00:: 1 16 -outcome%1:19:00:: 2 2 -outcry%1:10:00:: 1 2 -outdated%5:00:00:noncurrent:00 1 1 -outdistance%2:38:00:: 1 4 -outdo%2:33:00:: 1 2 -outdoor%3:00:00:: 1 6 -outdoor%3:01:00:: 2 2 -outdoor_man%1:18:00:: 1 1 -outdoors%4:02:00:: 1 2 -outdraw%2:33:00:: 1 1 -outer%3:00:00:: 1 6 -outer%5:00:00:outward:00 2 1 -outer_space%1:15:00:: 1 1 -outface%2:39:00:: 1 2 -outfield%1:06:00:: 1 2 -outfielder%1:18:00:: 1 4 -outfight%2:33:00:: 1 1 -outfit%1:06:00:: 3 1 -outfit%1:06:01:: 2 1 -outfit%1:14:00:: 1 7 -outflow%1:11:00:: 1 1 -outgeneral%2:33:00:: 1 1 -outgoing%3:00:00:: 1 2 -outgrow%2:30:00:: 2 1 -outgrow%2:30:01:: 1 1 -outing%1:04:00:: 1 1 -outlaw%1:18:00:: 1 1 -outlaw%2:41:00:: 1 2 -outlay%1:04:00:: 1 1 -outlet%1:06:01:: 1 3 -outlet%1:06:02:: 2 1 -outline%1:09:00:: 3 1 -outline%1:10:00:: 2 2 -outline%1:15:00:: 1 3 -outline%2:32:00:: 1 12 -outlined%5:00:00:distinct:00 1 1 -outlive%2:42:00:: 1 2 -outlook%1:09:00:: 2 5 -outlook%1:09:01:: 1 11 -outlying%5:00:00:far:00 1 1 -outmaneuver%2:33:00:: 1 1 -outmode%2:30:00:: 1 1 -outmoded%5:00:00:unfashionable:00 1 1 -outnumber%2:42:00:: 1 2 -outplay%2:33:00:: 1 1 -outpost%1:06:00:: 3 1 -outpost%1:14:00:: 2 1 -outpost%1:15:00:: 1 1 -output%1:04:00:: 2 2 -output%1:06:00:: 1 5 -output%1:10:02:: 3 1 -output%2:36:00:: 1 1 -outrage%1:04:01:: 2 1 -outrage%1:12:00:: 1 1 -outrage%2:37:01:: 1 2 -outraged%5:00:00:angry:00 1 1 -outrageous%5:00:00:offensive:01 1 1 -outreach%1:04:00:: 1 5 -outright%4:02:01:: 1 2 -outright%5:00:00:unqualified:02 1 1 -outrun%2:38:00:: 1 2 -outset%1:28:00:: 1 4 -outside%1:15:00:: 2 1 -outside%1:15:01:: 1 7 -outside%3:00:00:: 1 5 -outside%3:00:04:: 4 3 -outside%4:02:00:: 1 15 -outside%4:02:01:: 2 6 -outside%5:00:00:exterior:00 6 3 -outside%5:00:00:external:00 3 4 -outside%5:00:00:extramural:00 5 3 -outside%5:00:00:extrinsic:00 2 5 -outside%5:00:00:foreign:02 7 2 -outside_door%1:06:00:: 1 2 -outsider%1:18:00:: 1 2 -outskirt%1:15:00:: 1 1 -outskirts%1:15:00:: 1 3 -outsmart%2:33:00:: 1 2 -outspoken%5:00:00:communicative:00 1 1 -outstanding%5:00:00:conspicuous:00 2 3 -outstanding%5:00:00:major:06 3 1 -outstanding%5:00:00:superior:02 1 5 -outstandingly%4:02:00:: 1 2 -outstrip%2:33:00:: 1 1 -outward%3:00:00:: 1 3 -outward%4:02:00:: 1 1 -outwardly%4:02:01:: 1 1 -outweigh%2:33:00:: 1 3 -outweigh%2:42:00:: 2 2 -oval%1:25:00:: 1 3 -oval%5:00:00:rounded:00 1 4 -oven%1:06:00:: 1 1 -over%4:02:00:: 4 1 -over%4:02:01:: 1 23 -over%4:02:02:: 2 2 -over%4:02:03:: 3 1 -over%5:00:00:immoderate:00 2 2 -over%5:00:01:finished:01 1 21 -over_again%4:02:00:: 1 1 -over_and_over%4:02:00:: 1 5 -over_and_over_again%4:02:00:: 1 3 -over_here%4:02:00:: 1 1 -overachievement%1:04:00:: 1 2 -overachiever%1:18:00:: 1 2 -overactive%5:00:00:active:01 1 1 -overall%1:06:00:: 1 4 -overall%5:00:00:general:00 1 9 -overall%5:00:00:gross:00 2 8 -overbearing%5:00:00:domineering:00 1 2 -overboard%4:02:00:: 2 3 -overboard%4:02:01:: 1 3 -overburden%2:32:00:: 1 1 -overcast%1:26:00:: 1 6 -overcast%5:00:00:cloudy:00 1 1 -overcoat%1:06:00:: 1 3 -overcome%2:33:01:: 2 9 -overcome%2:33:03:: 1 14 -overcome%2:37:00:: 3 8 -overconfident%5:00:00:confident:00 1 1 -overcurious%5:00:00:curious:00 1 1 -overdone%5:00:00:immoderate:00 1 2 -overdrive%2:41:00:: 1 1 -overeat%2:34:00:: 1 1 -overeating%1:04:00:: 1 1 -overemphasize%2:32:00:: 1 2 -overestimate%2:31:00:: 1 1 -overestimation%1:10:00:: 1 1 -overexpose%2:39:01:: 1 1 -overfeed%2:34:00:: 1 1 -overfill%2:30:00:: 1 1 -overflow%1:04:00:: 1 1 -overflow%2:38:00:: 1 2 -overgrown%5:00:00:covered:00 1 1 -overhand%3:00:00:: 1 1 -overhang%1:06:00:: 1 1 -overhanging%5:00:00:wide:00 1 2 -overhaul%2:30:00:: 2 1 -overhaul%2:38:00:: 1 1 -overhead%1:21:00:: 1 3 -overhead%3:00:00:: 1 4 -overhead%4:02:00:: 2 2 -overhead%4:02:01:: 1 2 -overhear%2:39:00:: 1 8 -overheat%2:30:00:: 1 1 -overheated%5:00:00:hot:01 1 1 -overindulge%2:34:00:: 1 1 -overlap%2:30:02:: 3 1 -overlap%2:42:01:: 2 1 -overlap%2:42:03:: 1 5 -overlapping%5:00:00:related:02 1 1 -overlay%2:35:00:: 1 1 -overload%1:06:02:: 1 1 -overload%2:30:00:: 2 1 -overload%2:35:01:: 1 1 -overloaded%5:00:00:full:00 1 1 -overlook%2:31:00:: 3 1 -overlook%2:39:01:: 1 6 -overlook%2:42:01:: 2 3 -overlooked%5:00:00:unnoticed:00 1 1 -overnight%4:02:00:: 1 2 -overnight%5:00:00:long:02 1 2 -overnighter%1:18:00:: 1 3 -overpayment%1:21:00:: 1 4 -overpower%2:33:00:: 1 2 -overpower%2:37:00:: 2 1 -overpriced%5:00:00:expensive:00 1 1 -overproduce%2:36:00:: 1 1 -overprotection%1:04:00:: 1 1 -overprotective%5:00:00:protective:00 1 1 -overreach%2:33:00:: 2 1 -overreach%2:41:00:: 1 3 -override%2:31:00:: 1 3 -overriding%5:00:00:dominant:01 1 1 -overrun%2:38:01:: 1 3 -overseas%4:02:00:: 1 1 -overseas%4:02:01:: 2 1 -overseas%5:00:00:foreign:02 1 1 -overshadow%2:42:00:: 1 1 -overshoe%1:06:00:: 1 1 -overshoot%2:31:00:: 2 1 -overshoot%2:33:00:: 1 1 -oversimplification%1:04:00:: 1 1 -oversimplified%5:00:00:simple:02 1 3 -oversized%5:00:00:large:00 1 2 -overstep%2:38:00:: 1 1 -overstrain%2:34:00:: 1 1 -overt%3:00:00:: 1 1 -overtake%2:33:00:: 1 3 -overtake%2:38:00:: 2 2 -overthrow%1:04:01:: 1 1 -overthrow%2:41:00:: 1 4 -overtime%1:28:01:: 1 1 -overtly%4:02:00:: 1 1 -overtone%1:10:00:: 1 1 -overture%1:10:00:: 3 1 -overture%1:10:01:: 1 2 -overture%1:11:00:: 2 1 -overturn%2:31:00:: 3 1 -overturn%2:38:00:: 1 2 -overturn%2:38:01:: 2 1 -overturned%5:00:00:turned:00 1 1 -overvaliant%5:00:00:bold:00 1 1 -overweight%5:00:00:fat:01 1 1 -overwhelm%2:32:00:: 2 1 -overwhelm%2:37:00:: 1 1 -overwhelmed%5:00:00:powerless:00 1 1 -overwhelming%5:00:00:irresistible:00 1 8 -overwhelmingly%4:02:00:: 1 2 -overwork%2:36:00:: 1 1 -owe%2:40:00:: 3 3 -owe%2:40:01:: 1 11 -owe%2:42:00:: 2 5 -owing%5:00:00:unpaid:00 1 1 -owl%1:05:00:: 1 3 -own%2:40:00:: 1 47 -own%5:00:00:personal:00 1 259 -owned%3:00:00:: 1 1 -owner%1:18:00:: 1 15 -owner%1:18:02:: 2 9 -ownership%1:04:00:: 2 2 -ownership%1:21:00:: 1 4 -ox%1:05:02:: 1 1 -oxcart%1:06:00:: 1 1 -oxen%1:05:00:: 1 6 -oxford%1:15:00:: 1 1 -oxford_english%1:10:00:: 1 1 -oxidation%1:22:00:: 1 20 -oxidise%2:30:00:: 1 1 -oxidised%3:44:00:: 1 1 -oxygen%1:27:00:: 1 39 -oxytetracycline%1:06:00:: 1 2 -oyabun%1:18:00:: 1 4 -oyster%1:05:00:: 1 1 -ozone%1:27:00:: 1 3 -p.m.%1:28:00:: 1 2 -pa%1:18:00:: 1 22 -pa_system%1:06:00:: 1 2 -pace%1:04:00:: 4 1 -pace%1:07:01:: 3 4 -pace%1:23:01:: 2 6 -pace%1:28:00:: 1 10 -pace%2:30:00:: 3 2 -pace%2:38:00:: 1 10 -pace%2:38:01:: 2 6 -pachinko%1:04:00:: 1 1 -pacific%1:17:00:: 1 10 -pacific%5:00:01:peaceful:00 1 1 -pacification%1:04:00:: 1 1 -pacify%2:37:00:: 1 3 -pacing%1:04:00:: 2 1 -pacing%1:28:00:: 1 1 -pack%1:06:00:: 3 1 -pack%1:14:03:: 2 1 -pack%1:23:00:: 1 1 -pack%2:35:00:: 1 11 -pack%2:35:02:: 3 2 -pack%2:35:08:: 4 2 -pack%2:38:02:: 2 2 -pack%2:41:00:: 5 1 -pack_on%2:29:00:: 1 2 -package%1:06:00:: 2 3 -package%1:14:00:: 1 3 -package%2:35:00:: 1 2 -packaging%1:04:00:: 1 1 -packed%5:00:00:crowded:00 1 1 -packet%1:14:00:: 1 7 -packing%1:04:00:: 2 1 -packing%1:27:00:: 1 2 -packinghouse%1:06:01:: 1 1 -pact%1:10:00:: 1 1 -pad%1:27:01:: 1 1 -pad%2:32:00:: 1 1 -padded%5:00:00:soft:01 1 1 -paddle%2:38:00:: 1 1 -padlock%1:06:00:: 1 1 -padlock%2:35:00:: 1 1 -paean%1:10:00:: 1 2 -pagan%1:18:00:: 1 1 -paganism%1:09:00:: 1 1 -page%1:10:00:: 1 34 -page%2:32:00:: 1 1 -pageant%1:04:00:: 1 1 -paging%1:10:00:: 1 1 -paid%3:00:00:: 1 2 -paid%5:00:00:professional:01 2 1 -paid_vacation%1:28:00:: 1 1 -pail%1:06:00:: 1 5 -pain%1:09:00:: 3 9 -pain%1:12:00:: 2 14 -pain%1:26:00:: 1 32 -pain%2:29:00:: 1 2 -painful%3:00:00:: 1 10 -painful%5:00:00:unpleasant:00 2 1 -painfully%4:02:00:: 1 6 -painfully%4:02:01:: 2 2 -painless%5:00:00:easy:01 1 1 -pains%1:04:00:: 1 4 -paint%1:06:00:: 1 7 -paint%2:35:00:: 2 13 -paint%2:36:00:: 3 11 -paint%2:36:01:: 1 17 -paint_a_picture%2:32:00:: 1 1 -painted%3:00:00:: 2 2 -painted%5:00:00:artificial:00 3 1 -painted%5:00:00:delineated:00 1 3 -painter%1:18:00:: 1 15 -painting%1:04:00:: 2 9 -painting%1:04:01:: 4 1 -painting%1:04:02:: 3 4 -painting%1:06:00:: 1 13 -pair%1:14:00:: 3 7 -pair%1:14:01:: 1 18 -pair%1:23:00:: 2 10 -pair%2:35:01:: 2 2 -pair%2:41:00:: 1 3 -paired%5:00:00:matched:00 1 1 -pajamas%1:06:00:: 1 1 -pakistan%1:15:00:: 1 1 -palace%1:06:01:: 1 3 -palace%1:14:00:: 2 2 -pale%1:06:00:: 1 1 -pale%2:29:00:: 1 1 -pale%5:00:00:colorless:02 4 3 -pale%5:00:00:colorless:03 3 6 -pale%5:00:00:light:05 1 12 -pale%5:00:00:weak:00 2 9 -paleocortex%1:08:00:: 1 1 -paleocortical%3:01:00:: 1 1 -palermo%1:15:00:: 1 1 -palestine%1:15:01:: 1 4 -palette%1:06:00:: 2 1 -palette%1:07:00:: 1 1 -paling%5:00:00:decreasing:00 1 1 -pall%2:30:01:: 1 1 -pallid%5:00:00:colorless:02 1 2 -pallid%5:00:00:weak:00 2 1 -pallor%1:07:00:: 1 2 -palm%1:08:00:: 1 4 -palm%2:35:00:: 1 1 -palm_off%2:40:00:: 1 1 -palpable%3:00:00:: 1 1 -palpably%4:02:00:: 1 1 -pamper%2:41:00:: 1 1 -pampered%5:00:00:soft:02 1 1 -pamphlet%1:10:00:: 2 1 -pamphlet%1:10:01:: 1 1 -pan%1:06:01:: 1 5 -pan%2:35:00:: 2 1 -pan%2:38:00:: 1 1 -panama%1:15:00:: 1 1 -pander%1:18:00:: 1 1 -pane%1:06:00:: 1 3 -pane_of_glass%1:06:00:: 1 1 -panel%1:06:00:: 1 1 -panel%2:36:00:: 1 1 -panel_discussion%1:10:00:: 1 1 -paneling%1:06:00:: 1 3 -pang%1:12:00:: 1 1 -panic%1:12:00:: 1 7 -panic%1:26:01:: 2 2 -panic%2:37:00:: 1 1 -panic%2:37:01:: 2 1 -panic-stricken%5:00:00:afraid(p):00 1 1 -panicked%5:00:00:afraid(p):00 1 1 -panoramic%5:00:00:wide:00 1 1 -pansy%1:20:01:: 1 19 -pant%2:29:00:: 1 9 -pant%2:32:00:: 2 1 -pant_leg%1:06:00:: 1 2 -pantheon%1:14:00:: 1 1 -panther%1:05:03:: 1 2 -panting%1:04:00:: 1 1 -panting%5:00:00:breathless:00 1 3 -pantomime%1:04:00:: 1 1 -pantomime%2:36:00:: 1 1 -pantry%1:06:00:: 1 1 -pants%1:06:00:: 1 4 -pap%1:10:00:: 1 1 -papa%1:18:00:: 1 23 -papal%3:01:00:: 1 1 -paper%1:10:00:: 4 4 -paper%1:10:01:: 2 21 -paper%1:10:02:: 5 3 -paper%1:10:03:: 3 12 -paper%1:14:00:: 6 2 -paper%1:27:00:: 1 30 -paper_bag%1:06:00:: 1 1 -paper_electrophoresis%1:22:00:: 1 2 -paperback%1:06:00:: 1 1 -papers%1:10:00:: 1 13 -paperwork%1:04:00:: 1 1 -papery%5:00:00:thin:01 1 1 -papillary%3:01:00:: 1 1 -par%1:23:00:: 1 2 -par%1:26:00:: 2 1 -parable%1:10:00:: 1 2 -parachute%1:06:00:: 1 2 -parade%1:14:00:: 1 3 -parade%1:14:02:: 2 1 -parade%2:38:00:: 2 1 -parade%2:38:01:: 1 2 -parade_ground%1:15:00:: 1 4 -paradigm%1:09:00:: 2 1 -paradigm%1:24:00:: 1 4 -paradise%1:15:01:: 1 2 -paradox%1:10:00:: 1 3 -paradoxical%5:00:00:inexplicable:00 1 2 -paradoxically%4:02:00:: 1 5 -paragon%1:09:00:: 1 1 -paragraph%1:10:00:: 1 5 -parakeet%1:05:00:: 1 1 -parallel%1:07:00:: 1 5 -parallel%1:15:00:: 2 1 -parallel%2:30:00:: 2 1 -parallel%2:42:00:: 1 5 -parallel%3:00:00:: 1 10 -parallel_bars%1:06:00:: 1 1 -parallelism%1:07:00:: 1 3 -paralyze%2:30:00:: 2 1 -paralyze%2:30:01:: 1 1 -paramagnet%1:06:00:: 1 1 -paramagnetic%3:01:00:: 1 13 -parameter%1:09:00:: 1 5 -parameter%1:11:00:: 2 2 -parametric%3:01:00:: 1 2 -paramilitary_organization%1:14:00:: 1 1 -paramount%5:00:00:dominant:01 1 3 -paranoiac%1:18:00:: 1 1 -paranoid%5:00:00:insane:00 1 2 -paraphernalia%1:06:00:: 1 1 -paraphrase%1:10:00:: 1 2 -paraphrase%2:32:00:: 1 1 -parasite%1:05:00:: 1 4 -parasympathetic%3:01:00:: 1 9 -parcel%1:04:00:: 2 1 -parcel%1:06:00:: 1 1 -parcel%2:41:00:: 1 1 -parch%2:30:00:: 1 1 -parched%5:00:00:dry:01 1 1 -parchment%1:27:01:: 1 1 -pardner%1:18:00:: 1 2 -pardon%1:04:00:: 1 1 -pardon%2:32:00:: 2 2 -pardon%2:32:01:: 1 2 -pardonable%3:00:00:: 1 1 -pare%2:30:00:: 1 1 -pare_down%2:30:00:: 1 1 -parenchyma%1:08:01:: 1 4 -parent%1:18:00:: 1 35 -parental%3:01:00:: 1 1 -parenthesis%1:10:00:: 1 1 -parenthood%1:26:00:: 1 2 -parimutuel%1:04:00:: 1 2 -parings%1:13:00:: 1 1 -paris%1:15:00:: 1 20 -parish%1:14:00:: 1 3 -parishioner%1:18:00:: 1 1 -parisian%3:01:00:: 1 2 -parisology%1:10:00:: 1 1 -park%1:06:00:: 3 2 -park%1:15:00:: 1 13 -park%1:15:01:: 2 5 -park%2:35:00:: 1 11 -park%2:38:00:: 2 3 -parked%3:44:00:: 1 5 -parking%1:04:00:: 2 2 -parking%1:23:00:: 1 2 -parking_area%1:15:00:: 1 2 -parking_lot%1:15:00:: 1 6 -parking_space%1:15:00:: 1 1 -parkinson's_disease%1:26:00:: 1 1 -parlance%1:10:00:: 1 1 -parlay%2:33:00:: 1 1 -parliament%1:14:00:: 1 2 -parliamentary%3:01:00:: 1 2 -parliamentary%5:00:00:democratic:00 2 1 -parlor%1:06:00:: 1 8 -parlor%1:06:01:: 2 1 -parochial%3:01:00:: 1 2 -parody%1:10:00:: 1 2 -parody%2:36:00:: 1 1 -paroxysm%1:26:00:: 1 1 -parrot%1:05:00:: 1 1 -parrot%2:32:00:: 1 1 -parrotlike%5:00:00:imitative:00 1 1 -parry%2:33:00:: 1 1 -parson%1:18:00:: 1 2 -parsonage%1:06:00:: 1 1 -part%1:04:01:: 6 13 -part%1:04:03:: 12 2 -part%1:06:00:: 2 24 -part%1:08:01:: 10 3 -part%1:09:00:: 9 7 -part%1:09:01:: 7 9 -part%1:09:02:: 4 19 -part%1:10:00:: 11 2 -part%1:15:00:: 5 15 -part%1:17:00:: 3 19 -part%1:21:00:: 8 8 -part%1:24:00:: 1 113 -part%2:38:02:: 1 4 -part%2:41:00:: 2 1 -part%4:02:00:: 1 11 -part-time%3:00:00:: 1 21 -part_of_speech%1:10:00:: 1 1 -partake%2:42:00:: 1 1 -parted%5:00:00:compound:00 1 1 -parthenon%1:06:00:: 1 1 -partial%3:00:01:: 2 1 -partial%5:00:00:incomplete:00 1 5 -partially%4:02:00:: 1 7 -participant%1:18:00:: 1 1 -participate%2:33:00:: 2 1 -participate%2:41:00:: 1 28 -participation%1:04:00:: 1 13 -participation_loan%1:21:00:: 1 2 -particle%1:10:00:: 3 1 -particle%1:17:00:: 2 18 -particle%1:27:01:: 1 33 -particular%1:09:00:: 1 7 -particular%5:00:00:individual:00 2 23 -particular%5:00:00:specific:00 1 24 -particular%5:00:00:uncommon:00 4 6 -particular%5:00:02:specific:00 3 13 -particularistic%3:01:00:: 1 1 -particularly%4:02:00:: 1 61 -particulate%3:00:00:: 1 3 -parting%1:04:00:: 1 2 -parting%5:00:00:last:00 1 1 -partisan%5:00:00:aligned:01 1 1 -partition%1:06:00:: 1 2 -partly%4:02:00:: 1 19 -partner%1:18:00:: 2 7 -partner%1:18:01:: 1 8 -partner%2:40:00:: 1 1 -partnership%1:14:00:: 1 5 -parts%1:15:00:: 1 2 -party%1:11:00:: 4 6 -party%1:14:00:: 2 14 -party%1:14:01:: 1 29 -party%1:14:02:: 3 12 -party%1:18:00:: 5 1 -party_game%1:04:00:: 1 1 -paso_doble%1:04:00:: 1 1 -pass%1:04:02:: 3 2 -pass%1:04:04:: 1 6 -pass%1:04:06:: 7 1 -pass%1:10:01:: 5 1 -pass%1:10:03:: 6 1 -pass%1:17:00:: 4 1 -pass%1:28:00:: 2 3 -pass%2:30:00:: 8 7 -pass%2:30:01:: 13 3 -pass%2:32:01:: 12 3 -pass%2:35:00:: 11 3 -pass%2:38:00:: 1 32 -pass%2:38:01:: 7 8 -pass%2:38:02:: 19 1 -pass%2:38:03:: 4 17 -pass%2:38:05:: 2 31 -pass%2:40:00:: 5 13 -pass%2:40:02:: 18 1 -pass%2:41:02:: 3 29 -pass%2:41:04:: 9 4 -pass%2:41:07:: 16 1 -pass%2:41:08:: 14 2 -pass%2:41:11:: 17 1 -pass%2:42:00:: 10 3 -pass%2:42:04:: 15 1 -pass%2:42:08:: 6 8 -pass_away%2:30:00:: 1 3 -pass_away%2:30:01:: 2 1 -pass_by%2:38:00:: 1 6 -pass_off%2:32:00:: 2 1 -pass_off%2:39:00:: 1 1 -pass_on%2:38:01:: 3 2 -pass_on%2:40:00:: 4 1 -pass_on%2:40:01:: 1 4 -pass_on%2:40:03:: 2 3 -pass_out%2:29:00:: 1 1 -pass_over%2:31:00:: 1 2 -pass_over%2:38:01:: 3 1 -pass_over%2:38:02:: 2 1 -pass_over%2:38:03:: 4 1 -pass_through%2:38:00:: 1 18 -pass_through%2:38:01:: 3 1 -pass_through%2:38:02:: 2 14 -pass_up%2:40:00:: 1 1 -pass_water%2:29:00:: 1 1 -passage%1:04:00:: 5 3 -passage%1:04:01:: 4 3 -passage%1:04:04:: 1 6 -passage%1:04:05:: 8 1 -passage%1:06:00:: 3 4 -passage%1:08:00:: 7 1 -passage%1:10:00:: 2 5 -passage%1:10:01:: 6 2 -passageway%1:06:00:: 1 2 -passageway%1:08:00:: 2 1 -passenger%1:18:00:: 1 4 -passerby%1:18:00:: 1 3 -passing%1:04:03:: 1 7 -passing%1:11:00:: 2 1 -passing%5:00:00:impermanent:00 1 2 -passing%5:00:00:moving:02 2 2 -passion%1:07:00:: 2 3 -passion%1:09:00:: 6 1 -passion%1:12:00:: 1 4 -passion%1:12:02:: 5 1 -passion%1:16:00:: 4 1 -passion%1:26:01:: 3 1 -passionate%3:00:00:: 1 7 -passionately%4:02:00:: 1 2 -passive%3:00:01:: 1 5 -passive%5:00:00:nonviolent:00 2 1 -passively%4:02:00:: 1 2 -passivity%1:07:00:: 1 1 -past%1:10:00:: 3 1 -past%1:28:00:: 1 42 -past%1:28:01:: 2 5 -past%3:00:00:: 1 29 -past%4:02:00:: 1 15 -past%5:00:00:outgoing:00 2 4 -paste%1:27:01:: 1 6 -paste%2:35:01:: 1 5 -pasted%5:00:00:affixed:00 1 4 -pastel%1:07:00:: 1 1 -pastel%5:00:00:delicate:00 1 1 -pastel%5:00:00:light:05 2 1 -pastelike%5:00:00:colorless:02 1 1 -pastime%1:04:00:: 1 1 -pastor%1:18:00:: 1 9 -pastoral%3:01:00:: 1 1 -pasture%1:13:00:: 2 1 -pasture%1:15:00:: 1 4 -pasty%5:00:00:adhesive:00 2 1 -pasty%5:00:00:colorless:02 1 1 -pat%2:35:00:: 2 2 -pat%2:35:01:: 1 11 -patch%1:06:00:: 3 2 -patch%1:07:00:: 1 7 -patch%1:15:00:: 2 3 -patch%2:35:00:: 1 2 -patch%2:40:00:: 2 1 -patch_up%2:30:00:: 1 1 -patched%5:00:00:old:01 1 1 -patchwork%1:09:00:: 1 1 -patent%1:10:01:: 1 5 -patent%2:40:00:: 1 1 -patent_leather%1:27:00:: 1 1 -patent_medicine%1:06:00:: 1 1 -patent_right%1:07:00:: 1 1 -paternalistic%5:00:00:paternal:00 1 1 -paternally%4:02:00:: 1 1 -path%1:04:00:: 1 10 -path%1:06:00:: 2 8 -path%1:15:00:: 3 3 -pathetic%5:00:00:contemptible:00 2 1 -pathetic%5:00:00:unfortunate:00 1 1 -pathless%5:00:00:inaccessible:00 1 1 -pathogenesis%1:22:00:: 1 1 -pathogenic%5:00:00:unhealthful:00 1 2 -pathologic%5:00:00:unhealthy:00 1 1 -pathological%3:01:00:: 1 5 -pathological%5:00:00:neurotic:00 2 1 -pathologist%1:18:00:: 1 2 -pathology%1:09:00:: 1 2 -pathos%1:07:00:: 1 1 -pathway%1:06:00:: 2 1 -pathway%1:08:00:: 1 2 -patience%1:07:00:: 1 9 -patient%1:18:00:: 1 73 -patient%3:00:00:: 1 3 -patiently%4:02:00:: 1 3 -patina%1:06:00:: 1 1 -patriarchal%3:00:00:: 1 1 -patriot%1:18:00:: 1 2 -patriotic%3:00:00:: 1 4 -patriotism%1:07:00:: 1 3 -patristic%3:01:00:: 1 2 -patrol%1:04:00:: 2 1 -patrol%1:14:00:: 1 10 -patrol%2:41:00:: 1 5 -patroller%1:18:00:: 1 1 -patrolman%1:18:00:: 1 3 -patron%1:18:00:: 1 4 -patron_saint%1:18:00:: 1 2 -patronage%1:04:00:: 1 3 -patronize%2:32:01:: 3 1 -patronize%2:40:00:: 1 2 -patronize%2:41:00:: 2 1 -patronizing%5:00:00:superior:01 1 2 -patronne%1:18:00:: 1 4 -patter%1:10:00:: 1 2 -pattern%1:04:00:: 2 22 -pattern%1:06:00:: 3 9 -pattern%1:09:00:: 1 28 -pattern%1:09:01:: 5 1 -pattern%1:09:02:: 6 1 -pattern%1:09:03:: 4 8 -pattern%2:36:00:: 1 4 -paucity%1:07:01:: 1 1 -pause%1:04:00:: 2 3 -pause%1:28:00:: 1 12 -pause%2:32:01:: 2 12 -pause%2:42:00:: 1 23 -paved%3:00:00:: 1 3 -pavement%1:06:00:: 1 2 -pavement%1:06:01:: 3 1 -pavement%1:27:00:: 2 1 -paving_stone%1:06:00:: 1 1 -paw%1:05:00:: 1 2 -paw%2:35:00:: 2 1 -paw%2:35:01:: 1 1 -pay%1:21:01:: 1 14 -pay%2:31:00:: 6 4 -pay%2:31:03:: 9 1 -pay%2:32:00:: 2 26 -pay%2:40:00:: 1 138 -pay%2:40:01:: 4 6 -pay%2:40:02:: 5 6 -pay%2:40:04:: 3 12 -pay%2:41:00:: 8 1 -pay%2:42:00:: 7 3 -pay_attention%2:39:00:: 1 7 -pay_cut%1:04:00:: 1 1 -pay_off%2:40:00:: 2 2 -pay_off%2:40:02:: 1 4 -pay_off%2:40:03:: 3 2 -pay_off%2:40:04:: 4 1 -pay_out%2:40:00:: 1 3 -pay_rate%1:21:00:: 1 1 -payable%5:00:00:due:00 1 2 -payday%1:28:00:: 1 2 -payment%1:04:00:: 2 23 -payment%1:21:00:: 1 32 -payne's_gray%1:27:00:: 1 1 -payroll%1:21:00:: 1 1 -pbs%1:27:00:: 1 10 -pea%1:13:00:: 1 3 -pea_soup%1:13:00:: 1 2 -peace%1:12:00:: 3 6 -peace%1:26:00:: 1 13 -peace%1:26:01:: 2 6 -peace%1:26:02:: 4 1 -peace-loving%5:00:00:peaceful:00 1 1 -peace_of_mind%1:12:00:: 1 1 -peace_officer%1:18:00:: 1 1 -peaceable%5:00:02:peaceful:00 1 2 -peaceful%3:00:00:: 1 5 -peacefully%4:02:00:: 1 2 -peacock%1:05:01:: 2 2 -peacock%1:05:02:: 1 2 -peak%1:15:00:: 5 2 -peak%1:23:00:: 1 3 -peak%1:25:00:: 4 2 -peak%1:26:00:: 3 2 -peak%1:28:00:: 2 2 -peak%2:38:00:: 1 1 -peaked%5:00:00:ill:01 1 2 -peaked%5:00:00:pointed:00 2 1 -peaky%5:00:00:high:03 1 1 -peal%1:11:00:: 1 1 -pealing%1:11:00:: 1 1 -peanut_butter%1:13:00:: 1 2 -pear%1:13:00:: 1 3 -pearl%1:07:00:: 2 1 -pearl%1:21:00:: 1 1 -pearl%3:01:00:: 1 1 -pearly%5:00:00:achromatic:00 1 1 -peasant%1:18:00:: 1 6 -peasant%1:18:03:: 2 1 -peasanthood%1:07:00:: 1 1 -pebble%1:17:00:: 1 5 -peck%2:34:00:: 2 1 -peck%2:35:01:: 1 3 -pecs%1:08:00:: 1 4 -pectoral%1:08:00:: 1 3 -pectoralis%1:08:00:: 1 1 -pectoralis_major%1:08:00:: 1 1 -peculiar%5:00:00:specific:00 2 6 -peculiar%5:00:00:strange:00 1 9 -peculiarity%1:07:02:: 2 1 -peculiarity%1:09:00:: 1 1 -peculiarly%4:02:00:: 2 2 -peculiarly%4:02:01:: 1 4 -peculiarly%4:02:02:: 3 1 -pedagogical%3:01:00:: 1 1 -pedantic%5:00:00:scholarly:00 1 1 -peddle%2:40:00:: 1 2 -peddler%1:18:00:: 1 3 -pedestal%1:06:00:: 1 1 -pedigree%1:14:00:: 1 2 -peek%2:39:00:: 1 2 -peel%2:35:00:: 1 3 -peel_off%2:29:01:: 2 1 -peel_off%2:35:00:: 1 1 -peeling%5:00:00:damaged:00 1 1 -peep%2:39:00:: 1 1 -peer%1:18:00:: 1 4 -peer%2:39:00:: 1 30 -peer_group%1:14:00:: 1 1 -peevish%5:00:00:ill-natured:00 1 1 -peg%1:06:00:: 1 2 -peg_down%2:35:00:: 1 1 -pegboard%1:06:00:: 1 8 -pegged-down%5:00:00:fastened:00 1 1 -pelt%2:33:00:: 2 1 -pelt%2:35:00:: 1 1 -pelting%1:07:00:: 1 1 -pelvic%3:01:00:: 1 2 -pelvic_girdle%1:08:00:: 1 1 -pelvis%1:08:00:: 1 1 -pemmican%1:13:00:: 1 1 -pen%1:06:00:: 1 8 -pen%1:06:01:: 2 1 -pen%2:36:00:: 1 3 -pen-and-ink%1:06:00:: 1 1 -penalize%2:41:00:: 1 3 -penalty%1:04:00:: 1 6 -penalty%1:07:00:: 3 1 -penalty%1:21:00:: 2 1 -penance%1:04:01:: 2 1 -penance%1:12:00:: 1 1 -pencil%1:06:00:: 1 7 -pencil_pusher%1:18:00:: 1 1 -penciled%3:44:00:: 1 1 -pending%5:00:00:unfinished:01 1 3 -pendulum%1:06:00:: 1 1 -penetrate%2:31:00:: 2 3 -penetrate%2:31:01:: 3 1 -penetrate%2:35:00:: 1 7 -penetrating%5:00:00:perceptive:00 1 2 -penetration%1:04:00:: 1 2 -penetration%1:04:02:: 3 1 -penetration%1:09:00:: 2 1 -peninsula%1:17:00:: 1 1 -pennant%1:10:01:: 1 4 -pennsylvania%1:15:00:: 1 12 -penny%1:21:00:: 2 1 -penny%1:23:00:: 1 2 -penny-pinch%2:40:00:: 1 1 -penny_arcade%1:06:00:: 1 1 -pension%1:21:00:: 1 4 -pensioner%1:18:00:: 1 1 -pensive%5:00:00:thoughtful:00 1 1 -pentagon%1:06:00:: 1 2 -pentagon%1:14:00:: 2 1 -penthouse%1:06:00:: 1 1 -penultimate%5:00:00:last:00 1 1 -penutian%1:10:00:: 1 1 -peony%1:20:00:: 1 2 -people%1:14:00:: 1 257 -people%1:14:01:: 2 28 -people%1:14:02:: 3 3 -people%1:14:03:: 4 1 -people%2:30:00:: 1 1 -peopled%5:00:00:inhabited:00 1 1 -pep_up%2:32:00:: 1 1 -pepper%2:33:00:: 2 1 -pepper%2:39:00:: 1 1 -peptidase%1:27:00:: 1 1 -peptizing%3:44:00:: 1 1 -per_annum%4:02:00:: 1 2 -per_capita%5:00:00:proportionate:00 1 14 -per_centum%1:24:00:: 1 3 -per_se%4:02:00:: 1 5 -per_year%4:02:00:: 1 5 -perambulating%5:00:00:mobile:00 1 1 -perceive%2:31:00:: 2 9 -perceive%2:39:00:: 1 26 -perceived%5:00:02:detected:00 1 1 -percent%1:24:00:: 1 64 -percentage%1:21:00:: 2 6 -percentage%1:24:00:: 1 26 -perceptible%3:00:00:: 1 1 -perception%1:09:00:: 3 4 -perception%1:09:01:: 1 6 -perception%1:09:02:: 2 4 -perception%1:09:03:: 4 1 -perceptive%3:00:00:: 2 1 -perceptive%3:01:00:: 1 1 -perceptual%3:01:00:: 1 3 -perch%1:06:00:: 1 1 -perch%2:35:00:: 1 6 -perchance%4:02:00:: 1 1 -perchance%4:02:01:: 2 1 -perched%5:00:00:alert:00 1 1 -perchlorate%1:27:00:: 1 1 -percolator%1:06:00:: 1 1 -percussion%1:04:00:: 2 1 -percussion%1:04:01:: 1 1 -percussive%3:01:00:: 1 2 -percussive_instrument%1:06:00:: 1 1 -peremptory%5:00:00:domineering:00 1 2 -perennial%3:00:00:: 1 2 -perennially%4:02:00:: 1 1 -perfect%2:30:00:: 1 4 -perfect%3:00:00:: 1 17 -perfect_gas%1:27:00:: 1 1 -perfect_tense%1:24:00:: 1 1 -perfectability%1:09:00:: 1 1 -perfectibility%1:09:00:: 1 1 -perfection%1:26:00:: 1 7 -perfectionism%1:07:00:: 1 1 -perfectionist%1:18:00:: 1 1 -perfectly%4:02:00:: 1 13 -perfectly%4:02:01:: 2 2 -perforation%1:06:00:: 1 1 -perform%2:36:00:: 1 25 -perform%2:36:01:: 3 19 -perform%2:41:00:: 4 2 -perform%2:41:02:: 2 19 -performance%1:04:00:: 3 13 -performance%1:04:01:: 2 19 -performance%1:04:02:: 4 9 -performance%1:04:03:: 5 2 -performance%1:10:00:: 1 27 -performer%1:18:00:: 1 8 -perfume%1:06:00:: 2 2 -perfume%1:09:00:: 1 2 -perfumed%5:00:02:fragrant:00 1 1 -perfunctorily%4:02:00:: 1 2 -perfunctory%5:00:00:careless:00 1 1 -perfusion%1:04:00:: 1 1 -perhaps%4:02:00:: 1 123 -peril%1:26:00:: 1 1 -perilous%5:00:00:dangerous:00 1 4 -perilously%4:02:00:: 1 1 -period%1:28:00:: 1 94 -period%1:28:02:: 2 2 -period_of_time%1:28:00:: 1 7 -period_piece%1:06:00:: 1 1 -periodic%3:00:00:: 1 5 -periodic%5:00:00:rhythmical:00 2 2 -periodical%1:10:00:: 1 4 -periodically%4:02:00:: 1 3 -periodicity%1:07:00:: 1 1 -peripheral%3:00:00:: 2 2 -peripheral%3:01:00:: 1 2 -peripheral%5:00:00:incidental:00 3 1 -peripherally%4:02:00:: 1 2 -periphery%1:25:00:: 1 4 -perish%2:30:00:: 1 5 -periwinkle%1:20:01:: 1 1 -perk_up%2:29:00:: 1 1 -perky%5:00:00:cheerful:00 1 2 -permanence%1:07:00:: 1 1 -permanent%3:00:00:: 1 13 -permanently%4:02:00:: 1 4 -permeate%2:35:01:: 1 2 -permeated%3:44:00:: 1 2 -permian%1:28:00:: 1 1 -permission%1:04:00:: 2 1 -permission%1:10:00:: 1 5 -permit%1:04:00:: 2 1 -permit%1:10:02:: 1 6 -permit%2:32:00:: 1 55 -permit%2:41:00:: 2 39 -peroxide%1:27:00:: 1 1 -perpetrate%2:41:00:: 1 2 -perpetration%1:04:00:: 1 1 -perpetual%5:00:00:permanent:00 1 1 -perpetually%4:02:02:: 1 1 -perpetuate%2:42:00:: 1 10 -perpetuation%1:04:00:: 1 2 -perplexed%3:00:00:: 1 2 -perplexing%5:00:00:unclear:00 1 2 -persecute%2:41:00:: 1 2 -persecution%1:04:00:: 1 3 -persevere%2:30:00:: 1 1 -persist%2:30:01:: 2 8 -persist%2:42:00:: 1 11 -persist%2:42:01:: 3 1 -persist_in%2:42:00:: 1 3 -persistence%1:07:00:: 2 2 -persistence%1:07:02:: 1 5 -persistency%1:07:00:: 1 3 -persistent%5:00:00:continual:00 1 10 -persistent%5:00:00:unforgettable:00 2 1 -persistently%4:02:00:: 2 1 -persistently%4:02:01:: 1 1 -person%1:03:00:: 1 6833 -person%1:08:00:: 2 1 -persona%1:09:00:: 1 1 -personage%1:18:00:: 1 1 -personal%3:00:00:: 1 31 -personal%3:01:01:: 3 2 -personal%5:00:00:physical:00 4 1 -personal%5:00:00:subjective:00 2 12 -personal_pronoun%1:10:00:: 1 2 -personal_property%1:21:00:: 1 2 -personality%1:07:00:: 1 14 -personality%1:18:00:: 2 2 -personalize%2:30:00:: 1 1 -personalized%5:00:01:personal:00 1 1 -personally%4:02:00:: 2 4 -personally%4:02:01:: 1 7 -personally%4:02:02:: 5 1 -personally%4:02:03:: 3 2 -personally%4:02:04:: 4 2 -personification%1:18:00:: 1 1 -personify%2:42:00:: 2 2 -personify%2:42:01:: 1 2 -personnel%1:14:00:: 1 27 -perspective%1:07:00:: 2 1 -perspective%1:09:00:: 1 6 -perspiration%1:08:00:: 1 5 -perspiring%5:00:00:wet:01 1 1 -persuade%2:32:00:: 2 12 -persuade%2:41:00:: 1 17 -persuasive%3:00:00:: 1 1 -pert%5:00:00:spirited:00 1 1 -pertain%2:42:00:: 2 1 -pertain%2:42:01:: 1 9 -pertinence%1:24:00:: 1 1 -pertinent%5:00:00:apropos:00 2 2 -pertinent%5:00:00:relevant:00 1 5 -perturb%2:37:00:: 1 1 -perturbation%1:26:00:: 1 2 -peru%1:15:00:: 1 1 -perusal%1:10:00:: 1 1 -peruse%2:39:00:: 1 1 -pervade%2:35:00:: 1 3 -pervading%5:00:00:general:00 1 2 -pervaporation%1:04:00:: 1 1 -pervasive%5:00:00:general:00 1 2 -perverse%5:00:00:negative:02 1 2 -perversely%4:02:00:: 1 2 -pessimism%1:12:00:: 1 1 -pessimist%1:18:00:: 1 1 -pessimistic%3:00:00:: 1 1 -pester%2:37:00:: 1 2 -pestered%5:00:00:troubled:00 1 2 -pestering%5:00:00:disagreeable:00 1 1 -pestilential%5:00:00:epidemic:00 1 1 -pet%1:05:00:: 1 2 -pet%2:35:00:: 1 1 -petal%1:20:00:: 1 2 -peter_out%2:42:00:: 1 1 -petit_dejeuner%1:13:00:: 1 1 -petite%5:00:00:small:00 1 1 -petition%1:10:00:: 1 6 -petition%2:32:00:: 1 2 -petitioner%1:18:00:: 1 30 -petrify%2:30:01:: 1 1 -petroleum_geologist%1:18:00:: 1 1 -petticoated%5:00:00:clothed:00 1 1 -petting%1:04:00:: 1 1 -petulance%1:12:00:: 1 1 -petulantly%4:02:00:: 1 1 -pew%1:06:00:: 1 1 -pfennig%1:23:00:: 1 1 -ph%1:07:00:: 1 7 -phagocyte%1:08:00:: 1 1 -phalanx%1:08:00:: 1 3 -phalanx%1:14:01:: 2 1 -phantasy%1:09:01:: 1 1 -phantom%1:09:00:: 2 1 -phantom%1:18:00:: 1 2 -phantom%5:00:00:unreal:02 1 1 -pharmaceutical%3:01:00:: 1 1 -pharmacist%1:18:00:: 1 1 -pharmacological%3:01:00:: 1 1 -pharmacy%1:06:00:: 2 1 -pharmacy%1:09:00:: 1 1 -phase%1:26:00:: 2 22 -phase%1:28:00:: 1 24 -phase%1:28:01:: 3 1 -pheasant%1:05:00:: 1 2 -phenomenon%1:03:00:: 1 25 -phenomenon%1:11:00:: 2 5 -phenothiazine%1:27:00:: 1 3 -philadelphia%1:15:00:: 1 9 -philanthropic%5:00:00:charitable:00 1 1 -philanthropist%1:18:00:: 1 1 -philharmonic%3:01:00:: 1 1 -philippic%1:10:00:: 1 1 -philippine_islands%1:15:00:: 1 1 -philippines%1:15:00:: 1 2 -philological%3:01:00:: 1 1 -philosopher%1:18:00:: 1 15 -philosopher%1:18:01:: 2 1 -philosophic%3:01:00:: 1 2 -philosophical%3:01:00:: 1 7 -philosophical%5:00:00:unemotional:00 2 2 -philosophically%4:02:00:: 1 1 -philosophize%2:31:00:: 1 1 -philosophizing%1:10:00:: 1 1 -philosophy%1:09:00:: 2 8 -philosophy%1:09:01:: 1 12 -philosophy%1:09:02:: 3 1 -phloem%1:20:00:: 1 1 -phoenix%1:15:00:: 1 1 -phone%1:06:00:: 1 13 -phone%2:32:00:: 1 7 -phone_booth%1:06:00:: 1 1 -phone_call%1:10:00:: 1 1 -phone_company%1:14:00:: 1 1 -phoneme%1:10:00:: 1 2 -phonemic%3:01:00:: 1 4 -phonemic_system%1:10:00:: 1 4 -phonemics%1:09:00:: 1 2 -phonetic%3:01:01:: 1 2 -phonetics%1:09:00:: 1 1 -phonic%3:01:02:: 1 1 -phonograph%1:06:01:: 1 1 -phonograph_needle%1:06:00:: 1 1 -phonograph_record%1:06:00:: 1 1 -phonologic%3:01:00:: 1 9 -phonologic_system%1:10:00:: 1 1 -phonology%1:09:00:: 1 5 -phony%1:18:00:: 1 1 -phony%5:00:00:counterfeit:00 1 6 -phosgene%1:27:00:: 1 1 -phosphate%1:27:00:: 1 9 -phosphorescent%5:00:00:light:06 1 1 -phosphorus%1:27:00:: 1 1 -photo%1:06:00:: 1 3 -photochemical_exchange%1:19:00:: 1 3 -photochemical_reaction%1:22:00:: 1 2 -photograph%1:06:00:: 1 17 -photograph%2:32:00:: 1 9 -photograph%2:42:00:: 2 1 -photographic%3:01:00:: 1 7 -photographically%4:02:00:: 1 1 -photography%1:04:00:: 1 1 -photomontage%1:06:00:: 1 1 -photon%1:17:00:: 1 1 -phrase%1:10:00:: 1 10 -phrase%1:10:01:: 2 3 -phrase%2:32:00:: 1 3 -phraseology%1:10:00:: 1 1 -phrasing%1:04:00:: 1 1 -phylum%1:14:01:: 1 1 -physical%3:00:00:: 1 29 -physical%3:01:00:: 2 5 -physical%5:00:00:energetic:00 5 2 -physical%5:00:00:material:01 3 5 -physical%5:00:00:natural:03 4 3 -physical_ability%1:07:00:: 1 1 -physical_chemistry%1:09:00:: 1 1 -physical_education%1:09:00:: 1 2 -physical_phenomenon%1:19:00:: 1 2 -physical_property%1:07:00:: 1 2 -physical_science%1:09:00:: 1 3 -physical_structure%1:08:00:: 1 1 -physical_therapist%1:18:00:: 1 1 -physically%4:02:00:: 1 7 -physicalness%1:07:00:: 1 1 -physician%1:18:00:: 1 7 -physicist%1:18:00:: 1 3 -physicochemical%3:01:00:: 1 1 -physics%1:09:00:: 1 10 -physiognomy%1:08:00:: 1 2 -physiologic%3:01:00:: 1 2 -physiological%3:01:00:: 1 14 -physiology%1:09:00:: 1 1 -physique%1:07:00:: 1 2 -pianism%1:10:00:: 1 1 -pianist%1:18:00:: 1 5 -pianistic%3:01:00:: 1 1 -piano%1:06:00:: 1 10 -piano_lesson%1:04:00:: 1 1 -piano_player%1:18:00:: 1 1 -piano_sonata%1:10:00:: 1 1 -piano_stool%1:06:00:: 1 3 -piazza%1:15:00:: 1 1 -picasso%1:18:00:: 1 3 -pick%1:09:00:: 1 1 -pick%2:30:00:: 5 1 -pick%2:30:01:: 6 1 -pick%2:31:00:: 1 13 -pick%2:32:09:: 3 2 -pick%2:35:01:: 2 4 -pick%2:36:00:: 4 1 -pick_at%2:35:00:: 1 1 -pick_off%2:35:00:: 2 1 -pick_off%2:41:00:: 1 1 -pick_out%2:31:00:: 1 4 -pick_out%2:39:00:: 2 2 -pick_up%2:30:00:: 13 1 -pick_up%2:30:01:: 10 2 -pick_up%2:31:00:: 5 4 -pick_up%2:35:00:: 7 3 -pick_up%2:35:01:: 2 19 -pick_up%2:37:00:: 12 1 -pick_up%2:38:00:: 3 6 -pick_up%2:38:01:: 1 22 -pick_up%2:39:01:: 9 2 -pick_up%2:40:00:: 8 2 -pick_up%2:40:01:: 4 5 -pick_up%2:40:02:: 6 3 -pick_up%2:41:00:: 11 1 -picket%1:14:00:: 2 2 -picket%1:18:01:: 1 2 -picket%2:35:00:: 2 1 -picket%2:41:00:: 1 1 -picket_boat%1:06:00:: 1 1 -picket_ship%1:06:00:: 1 1 -picking%1:04:01:: 1 1 -pickle%1:13:00:: 1 1 -pickup%1:06:00:: 1 2 -pickup%1:06:03:: 3 1 -pickup%1:10:00:: 2 1 -picnic%1:04:00:: 2 1 -picnic%1:28:00:: 1 2 -picnic%2:34:00:: 1 1 -picnic_area%1:15:00:: 1 1 -pictorial%3:01:00:: 1 3 -pictorial%5:00:00:realistic:00 2 1 -pictorially%4:02:00:: 1 1 -picture%1:06:00:: 1 25 -picture%1:06:01:: 2 24 -picture%1:09:00:: 3 22 -picture%1:09:01:: 9 1 -picture%1:10:00:: 5 3 -picture%1:10:01:: 7 3 -picture%1:10:02:: 6 3 -picture%1:10:03:: 8 2 -picture%1:26:00:: 4 10 -picture%2:36:00:: 2 4 -picture%2:36:01:: 1 5 -picture_book%1:06:00:: 1 1 -picture_frame%1:06:00:: 1 1 -picture_hat%1:06:00:: 1 1 -picture_palace%1:06:00:: 1 1 -picture_plane%1:25:00:: 1 5 -pictured%5:00:00:unreal:00 1 1 -picturesque%5:00:00:beautiful:00 1 2 -picturesque%5:00:00:colorful:03 2 1 -picturing%1:04:00:: 2 1 -picturing%1:09:00:: 1 1 -pidgin%1:10:00:: 1 1 -pie%1:13:00:: 1 2 -piece%1:06:00:: 1 23 -piece%1:06:03:: 7 2 -piece%1:06:04:: 10 1 -piece%1:06:05:: 2 13 -piece%1:07:00:: 9 1 -piece%1:10:01:: 4 7 -piece%1:10:02:: 6 2 -piece%1:11:00:: 5 4 -piece%1:13:00:: 8 1 -piece%1:17:00:: 3 8 -piece%2:35:02:: 1 1 -piece_de_resistance%1:06:00:: 1 1 -piece_of_paper%1:10:00:: 1 3 -piedmont%1:15:01:: 1 1 -pier%1:06:00:: 1 1 -pierce%2:35:02:: 1 2 -pierce%2:37:00:: 2 1 -piety%1:07:00:: 1 1 -piezoelectric%3:01:00:: 1 2 -piezoelectric_effect%1:19:00:: 1 1 -piezoelectricity%1:19:00:: 1 1 -pig%1:05:00:: 1 7 -pigeon%1:05:00:: 1 3 -pigeon-toed%3:00:00:: 1 1 -pigheaded%5:00:00:stubborn:00 1 1 -pigment%1:27:00:: 1 2 -pigskin%1:27:00:: 1 1 -pike%1:06:01:: 1 1 -pile%1:14:00:: 1 9 -pile%1:21:00:: 3 2 -pile%1:23:00:: 2 3 -pile%2:35:00:: 1 8 -pile%2:38:00:: 2 2 -pile_up%2:30:00:: 1 4 -pile_up%2:35:00:: 2 2 -pilfer%2:40:00:: 1 2 -pilgrim%1:18:00:: 1 1 -pilgrimage%1:04:00:: 1 2 -pill%1:06:00:: 2 1 -pill%1:06:01:: 1 6 -pillar%1:09:00:: 1 1 -pillory%2:41:01:: 1 1 -pillow%1:06:00:: 1 8 -pilot%1:18:00:: 1 6 -pilot%2:38:00:: 1 1 -pilot%2:38:01:: 2 1 -pilot%5:00:00:empirical:00 1 9 -pilot_light%1:06:01:: 1 1 -pilot_program%1:04:00:: 1 1 -pimp%1:18:00:: 1 3 -pimple%1:26:00:: 1 1 -pin%1:06:01:: 1 1 -pin%2:35:00:: 1 2 -pin%2:35:01:: 3 1 -pin%2:35:03:: 2 2 -pin_down%2:31:00:: 1 1 -pinafore%1:06:00:: 1 1 -pinball%1:04:00:: 1 1 -pinch%2:35:00:: 1 3 -pinch%2:35:01:: 2 2 -pinch_hitter%1:18:00:: 1 1 -pinched%5:00:00:high:03 1 1 -pinched%5:00:00:thin:03 2 1 -pine%1:20:00:: 1 4 -pine%1:20:02:: 2 2 -pine_knot%1:27:00:: 1 1 -pinecone%1:20:00:: 1 1 -ping%2:35:00:: 1 1 -ping-pong%1:04:00:: 1 1 -pink%1:07:00:: 1 2 -pink%5:00:00:chromatic:00 1 12 -pinnacle%1:06:00:: 1 1 -pinning%1:10:00:: 1 1 -pinpoint%1:07:00:: 2 1 -pinpoint%1:28:00:: 1 1 -pinpoint%2:40:00:: 1 3 -pinpoint%5:00:00:precise:00 1 2 -pioneer%1:18:00:: 2 1 -pioneer%1:18:01:: 1 1 -pioneer%2:36:00:: 1 3 -pipe%1:06:00:: 2 4 -pipe%1:06:01:: 1 6 -pipe%2:32:00:: 1 1 -pipe_in%2:35:00:: 1 1 -pipeline_company%1:14:00:: 1 2 -piper%1:18:00:: 1 1 -pique%1:06:00:: 1 1 -pirate%1:18:00:: 2 1 -pirate%1:18:01:: 1 2 -piratical%3:01:00:: 1 1 -pirogue%1:06:00:: 1 1 -pisces%1:15:00:: 1 1 -piss%2:29:00:: 1 1 -pistol%1:06:00:: 1 17 -pistol-whip%2:35:00:: 1 1 -pistoleer%1:18:00:: 1 1 -pit%1:17:00:: 1 5 -pit%2:33:00:: 1 1 -pit_run%1:27:00:: 1 3 -pitch%1:04:03:: 2 3 -pitch%1:07:00:: 1 5 -pitch%1:07:01:: 5 1 -pitch%1:10:00:: 4 1 -pitch%1:15:00:: 3 1 -pitch%2:30:00:: 4 1 -pitch%2:35:00:: 1 6 -pitch%2:38:00:: 3 2 -pitch%2:38:03:: 2 5 -pitched%3:44:00:: 1 2 -pitcher%1:06:00:: 2 2 -pitcher%1:18:00:: 1 15 -pitcher%1:23:00:: 3 1 -pitchfork%1:06:00:: 1 2 -pitching%1:04:00:: 1 7 -pitching%1:04:01:: 2 1 -piteous%5:00:00:unfortunate:00 1 3 -piteously%4:02:00:: 1 1 -pitfall%1:09:00:: 1 1 -pith%1:20:00:: 1 1 -pithy%5:00:00:concise:00 1 1 -pitiable%5:00:00:contemptible:00 1 1 -pitiful%5:00:00:contemptible:00 1 1 -pitiless%5:00:00:merciless:00 1 2 -pitilessly%4:02:00:: 1 1 -pittsburgh%1:15:00:: 1 5 -pituitary%1:08:00:: 1 5 -pituitary_gland%1:08:00:: 1 2 -pity%1:11:00:: 2 3 -pity%1:12:00:: 1 6 -pity%2:37:00:: 1 4 -pitying%5:00:00:compassionate:00 1 1 -pityingly%4:02:00:: 1 1 -pivot%2:38:00:: 1 1 -pixie%1:18:00:: 1 1 -pizza%1:13:00:: 1 1 -placating%5:00:00:conciliating:00 1 1 -place%1:04:00:: 8 4 -place%1:04:01:: 5 9 -place%1:09:00:: 3 22 -place%1:10:00:: 12 2 -place%1:10:01:: 17 1 -place%1:10:02:: 16 1 -place%1:11:00:: 15 1 -place%1:15:00:: 1 77 -place%1:15:01:: 4 17 -place%1:15:02:: 14 1 -place%1:15:03:: 11 2 -place%1:15:04:: 2 38 -place%1:15:05:: 9 3 -place%1:15:06:: 7 6 -place%1:26:00:: 10 2 -place%1:26:01:: 6 7 -place%1:26:02:: 13 1 -place%2:31:00:: 8 2 -place%2:31:01:: 3 7 -place%2:31:03:: 6 3 -place%2:31:13:: 11 1 -place%2:32:01:: 5 4 -place%2:33:03:: 7 2 -place%2:35:00:: 1 135 -place%2:36:00:: 10 1 -place%2:40:00:: 4 4 -place%2:41:00:: 9 1 -place%2:41:01:: 2 13 -place-kicker%1:18:00:: 1 1 -place-kicking%1:04:00:: 1 3 -place_of_birth%1:15:00:: 1 1 -place_of_business%1:06:00:: 1 3 -place_of_origin%1:15:00:: 1 1 -placement%1:04:00:: 3 1 -placement%1:04:01:: 2 2 -placement%1:07:00:: 1 6 -placid%5:00:00:calm:00 1 2 -placid%5:00:00:good-natured:00 2 1 -placid%5:00:00:uneventful:00 3 1 -placidly%4:02:01:: 1 1 -plague%2:37:00:: 2 2 -plague%2:43:00:: 1 6 -plagued%5:00:00:troubled:00 1 1 -plain%1:17:00:: 1 1 -plain%3:00:01:: 3 1 -plain%3:00:02:: 4 1 -plain%5:00:00:direct:02 6 1 -plain%5:00:00:obvious:00 1 8 -plain%5:00:00:pure:02 5 1 -plain%5:00:00:unadorned:00 7 1 -plain%5:00:00:unpretentious:00 2 2 -plainclothesman%1:18:00:: 1 2 -plainly%4:02:00:: 1 12 -plaintively%4:02:00:: 1 1 -plan%1:06:00:: 3 6 -plan%1:09:00:: 1 63 -plan%1:09:01:: 2 10 -plan%2:31:00:: 2 27 -plan%2:31:01:: 1 44 -plan%2:36:00:: 3 17 -plan%2:36:01:: 4 2 -planar%3:00:00:: 1 2 -plane%1:06:01:: 1 21 -plane%1:25:00:: 2 16 -plane%1:26:00:: 3 3 -plane%2:35:00:: 1 2 -plane%5:00:00:even:01 1 2 -planet%1:17:00:: 1 21 -planet%1:18:00:: 2 1 -planetary%3:01:00:: 1 8 -planetoid%1:17:00:: 1 1 -plank%1:27:00:: 1 9 -plank%2:35:00:: 1 2 -planned%3:00:00:: 1 5 -planner%1:18:00:: 1 4 -planning%1:04:00:: 1 25 -planning%1:04:02:: 2 4 -planning%1:09:00:: 3 3 -plant%1:03:00:: 2 37 -plant%1:06:01:: 1 63 -plant%2:35:00:: 1 8 -plant%2:35:01:: 2 2 -plant%2:36:00:: 3 1 -plant_tissue%1:20:00:: 1 1 -plantain_lily%1:20:00:: 1 1 -plantation%1:21:00:: 1 4 -planted%5:00:00:established:00 1 1 -planter%1:18:00:: 1 7 -planting%1:04:00:: 1 3 -plaque%1:06:00:: 2 1 -plaque%1:08:00:: 1 2 -plasma%1:08:00:: 2 5 -plasma%1:27:00:: 1 5 -plaster%1:27:00:: 1 3 -plaster%2:35:01:: 1 1 -plaster_cast%1:06:00:: 1 2 -plaster_of_paris%1:27:00:: 1 1 -plaster_over%2:35:00:: 1 1 -plaster_saint%1:18:00:: 1 1 -plastered%5:00:00:groomed:00 1 1 -plasterer%1:18:00:: 1 1 -plastic%1:27:00:: 1 2 -plastic%5:00:00:elastic:00 2 1 -plastic%5:00:00:integrative:00 1 1 -plastically%4:02:00:: 1 1 -plasticity%1:07:00:: 1 3 -plat%2:31:00:: 1 1 -plate%1:06:00:: 4 3 -plate%1:06:02:: 2 4 -plate%1:06:04:: 1 6 -plate%1:06:06:: 3 3 -plate%1:23:00:: 5 1 -platform%1:06:00:: 1 5 -platform%1:10:00:: 2 2 -platinum%1:27:00:: 1 3 -platitudinous%5:00:00:unoriginal:00 1 1 -plato%1:18:00:: 1 15 -platonic%3:01:00:: 1 2 -platonism%1:09:00:: 1 3 -platonist%1:18:00:: 1 2 -platoon%1:14:00:: 1 6 -platoon%1:14:01:: 2 2 -plausible%3:00:00:: 1 2 -play%1:04:03:: 7 1 -play%1:04:04:: 4 6 -play%1:04:05:: 3 8 -play%1:04:06:: 8 1 -play%1:04:08:: 6 1 -play%1:10:01:: 1 32 -play%1:10:03:: 2 10 -play%1:26:00:: 5 2 -play%2:29:00:: 16 2 -play%2:29:01:: 8 6 -play%2:31:01:: 21 1 -play%2:33:00:: 1 70 -play%2:33:01:: 10 5 -play%2:33:03:: 15 2 -play%2:34:13:: 20 1 -play%2:35:00:: 19 1 -play%2:36:00:: 6 14 -play%2:36:01:: 7 8 -play%2:36:02:: 4 27 -play%2:36:03:: 14 2 -play%2:36:05:: 18 1 -play%2:36:06:: 12 4 -play%2:36:11:: 13 3 -play%2:36:12:: 3 29 -play%2:38:00:: 9 5 -play%2:41:00:: 11 4 -play%2:41:02:: 17 1 -play%2:41:03:: 5 23 -play%2:41:12:: 2 37 -play%5:00:00:unreal:00 1 1 -play_around%2:41:00:: 1 1 -play_back%2:36:00:: 1 1 -play_down%2:32:00:: 1 1 -play_possum%2:32:00:: 1 1 -play_up%2:30:00:: 1 1 -playable%3:00:00:: 1 1 -playacting%1:04:00:: 1 1 -playback%1:04:00:: 1 1 -played%3:44:00:: 1 1 -played_out%5:00:00:tired:00 1 1 -player%1:18:00:: 3 1 -player%1:18:01:: 1 20 -player%1:18:02:: 2 3 -playful%3:00:00:: 1 1 -playground%1:15:00:: 1 1 -playing%1:04:00:: 2 1 -playing%1:04:01:: 1 11 -playmate%1:18:00:: 1 3 -playoff_game%1:04:00:: 1 2 -playwright%1:18:00:: 1 4 -plead%2:32:00:: 1 10 -plead%2:32:01:: 3 4 -plead%2:32:02:: 2 4 -plead%2:32:03:: 4 1 -pleading%5:00:00:beseeching:00 1 1 -pleasant%3:00:00:: 1 9 -pleasant%5:00:00:nice:00 2 1 -pleasantly%4:02:00:: 2 2 -pleasantly%4:02:01:: 1 2 -please%2:37:00:: 1 15 -please%2:37:01:: 2 10 -pleased%3:00:00:: 1 9 -pleased%5:00:00:proud:00 2 3 -pleasing%3:00:00:: 1 7 -pleasure%1:09:00:: 2 4 -pleasure%1:12:00:: 1 21 -pleat%1:06:00:: 1 1 -pledge%2:32:00:: 1 3 -plenitude%1:07:00:: 1 1 -plentiful%5:00:01:abundant:00 2 2 -plentiful%5:00:02:abundant:00 1 2 -plenty%1:07:00:: 1 13 -plenty%1:23:00:: 2 2 -plenty%4:02:00:: 1 6 -pleura%1:08:00:: 1 6 -pleural%3:01:00:: 1 6 -pliant%5:00:00:impressionable:00 1 1 -plight%1:26:00:: 1 8 -plod%2:38:00:: 1 6 -plodding%1:04:00:: 1 1 -plodding%5:00:00:effortful:00 1 1 -plot%1:09:00:: 1 9 -plot%1:10:00:: 3 5 -plot%1:15:00:: 2 6 -plot%2:31:00:: 1 6 -plot%2:31:01:: 3 1 -plot%2:36:00:: 2 2 -plow%1:06:00:: 1 2 -plow%2:32:00:: 2 2 -plow%2:36:00:: 1 6 -plow%2:38:00:: 3 1 -plow_ahead%2:32:00:: 1 1 -plowing%1:04:00:: 1 2 -plowshare%1:06:00:: 1 2 -pluck%1:07:00:: 1 1 -pluck%2:35:00:: 1 3 -plug%1:06:00:: 1 15 -plug%2:30:00:: 2 1 -plug%2:35:01:: 1 2 -plug-ugly%1:18:00:: 1 2 -plug_in%2:35:00:: 1 2 -plum%4:02:02:: 1 2 -plumb%2:31:00:: 1 1 -plumb%4:02:04:: 1 2 -plumb_line%1:06:00:: 1 1 -plumber%1:18:00:: 1 3 -plumbing%1:04:01:: 2 1 -plumbing%1:06:00:: 1 2 -plummet%2:38:00:: 1 1 -plump%5:00:00:fat:01 1 2 -plump_for%2:41:00:: 1 1 -plumping%5:00:00:large:00 1 1 -plumpness%1:07:00:: 1 4 -plunder%1:21:00:: 1 1 -plunder%2:40:02:: 1 1 -plunge%1:04:00:: 1 1 -plunge%2:30:10:: 4 4 -plunge%2:31:01:: 5 1 -plunge%2:35:01:: 1 6 -plunge%2:38:01:: 2 4 -plunge%2:38:05:: 3 4 -plunk%2:35:02:: 2 1 -plunk%2:39:00:: 1 1 -plunker%1:04:00:: 1 1 -pluralistic%3:01:00:: 1 1 -plush%5:00:00:rich:03 1 1 -ply%2:34:00:: 1 1 -pm%1:04:00:: 3 1 -pm%1:04:01:: 2 1 -pm%1:28:00:: 1 4 -pm%5:00:00:postmeridian:00 1 3 -pneumonia%1:26:00:: 1 1 -poach%2:30:00:: 2 1 -poach%2:33:00:: 1 1 -pocket%1:06:00:: 1 21 -pocket%1:21:00:: 3 2 -pocket%1:25:00:: 2 2 -pocket%2:40:00:: 1 1 -pocketful%1:23:00:: 1 1 -poem%1:10:00:: 1 14 -poet%1:18:00:: 1 14 -poetic%3:01:00:: 1 1 -poetic%5:00:00:figurative:00 2 1 -poetry%1:10:02:: 1 11 -poetry%1:10:03:: 2 1 -poignancy%1:26:00:: 1 1 -poignant%5:00:00:moving:01 1 3 -poignant%5:00:00:painful:00 2 2 -point%1:06:00:: 15 1 -point%1:07:01:: 14 1 -point%1:09:00:: 1 51 -point%1:09:01:: 4 17 -point%1:09:02:: 7 6 -point%1:10:01:: 3 20 -point%1:10:03:: 12 2 -point%1:15:00:: 2 21 -point%1:17:02:: 11 2 -point%1:23:01:: 10 2 -point%1:24:04:: 13 1 -point%1:25:00:: 8 3 -point%1:25:02:: 9 2 -point%1:26:00:: 5 16 -point%1:28:00:: 6 9 -point%2:32:00:: 1 25 -point%2:32:12:: 5 1 -point%2:33:00:: 3 8 -point%2:38:05:: 4 5 -point%2:42:00:: 2 8 -point-blank%5:00:00:direct:02 1 1 -point_of_intersection%1:09:00:: 1 3 -point_of_view%1:09:00:: 1 13 -point_out%2:32:01:: 1 42 -point_out%2:32:02:: 3 3 -point_out%2:32:03:: 2 7 -point_system%1:09:00:: 1 1 -point_the_way%2:32:00:: 1 2 -point_up%2:32:00:: 1 6 -pointed%3:00:00:: 1 2 -pointed%3:00:01:: 2 1 -pointing%3:44:00:: 1 1 -pointing_out%1:10:00:: 1 1 -poise%1:23:00:: 1 2 -poise%2:35:02:: 3 1 -poise%2:37:00:: 2 1 -poise%2:38:00:: 1 3 -poised%5:00:00:balanced:00 1 4 -poison%1:07:00:: 2 1 -poison%1:27:00:: 1 4 -poison%2:30:00:: 3 1 -poison%2:35:00:: 2 1 -poison%2:41:00:: 1 3 -poke%2:35:01:: 1 7 -poke%2:39:00:: 2 5 -poke_at%2:35:00:: 1 1 -poke_fun%2:32:00:: 1 1 -poke_into%2:35:01:: 1 1 -poker-faced%5:00:00:uncommunicative:00 1 1 -poland%1:15:00:: 1 7 -polar%5:00:00:charged:00 1 3 -polar%5:00:00:different:00 2 1 -polarity%1:24:00:: 2 1 -polarity%1:24:01:: 1 3 -polarization%1:19:00:: 1 3 -polarization%1:26:00:: 2 1 -polarize%2:30:00:: 3 1 -polarize%2:30:01:: 2 1 -polarize%2:30:02:: 1 2 -pole%1:06:00:: 1 6 -pole%1:09:00:: 3 2 -pole%1:18:00:: 2 4 -pole%2:35:00:: 1 2 -polemical%5:00:00:controversial:00 1 1 -police%1:14:00:: 1 34 -police%2:41:00:: 1 4 -police_captain%1:18:00:: 1 1 -police_car%1:06:00:: 1 3 -police_chief%1:18:00:: 1 4 -police_department%1:14:00:: 1 3 -police_force%1:14:00:: 1 1 -police_headquarters%1:06:00:: 1 2 -police_investigation%1:04:00:: 1 1 -police_officer%1:18:00:: 1 1 -policeman%1:18:00:: 1 11 -policy%1:09:00:: 1 33 -policy%1:10:00:: 2 25 -policy%1:10:02:: 3 2 -policy_maker%1:18:00:: 1 1 -polio%1:26:00:: 1 1 -polish%1:07:00:: 1 2 -polish%1:26:00:: 2 1 -polish%2:30:01:: 2 3 -polish%2:35:00:: 1 7 -polish%3:01:00:: 1 3 -polish_off%2:30:00:: 1 1 -polished%3:00:00:: 1 2 -polite%3:00:00:: 1 3 -polite%5:00:00:refined:01 2 1 -politely%4:02:00:: 1 4 -politeness%1:07:00:: 1 3 -politic%3:00:00:: 1 1 -political%3:00:00:: 1 45 -political%3:01:01:: 2 11 -political%3:01:02:: 3 6 -political_arena%1:26:00:: 1 2 -political_campaign%1:11:00:: 1 3 -political_leader%1:18:00:: 1 1 -political_party%1:14:00:: 1 1 -political_platform%1:10:00:: 1 1 -political_science%1:09:00:: 1 1 -political_system%1:14:00:: 1 3 -political_unit%1:14:00:: 1 1 -politically%4:02:00:: 1 1 -politically%4:02:01:: 2 1 -politician%1:18:00:: 2 4 -politician%1:18:01:: 1 9 -politics%1:04:00:: 3 3 -politics%1:09:00:: 2 4 -politics%1:09:01:: 4 1 -politics%1:24:00:: 1 21 -polka%1:10:00:: 1 1 -poll%1:09:00:: 1 4 -poll%2:41:00:: 1 1 -pollen%1:20:00:: 1 10 -polls%1:15:00:: 1 3 -polluted%5:00:00:impure:02 1 1 -pollution%1:26:00:: 1 1 -polybutene%1:27:00:: 1 2 -polycrystalline%5:00:00:crystalline:00 1 2 -polyelectrolyte%1:27:00:: 1 1 -polyethylene%1:27:00:: 1 2 -polymerization%1:22:00:: 1 3 -polymyositis%1:26:00:: 1 1 -polynomial%1:09:00:: 1 35 -polyphosphate%1:27:00:: 1 6 -polytonal%5:00:00:tonal:00 1 1 -pomaded%5:00:00:groomed:00 1 1 -pommel%2:35:00:: 1 1 -pompous%5:00:00:pretentious:00 1 2 -pompously%4:02:00:: 1 2 -pompousness%1:07:00:: 1 1 -poncho%1:06:00:: 1 3 -pond%1:17:00:: 1 26 -ponder%2:31:00:: 1 9 -ponderous%5:00:00:heavy-footed:00 1 2 -ponderous%5:00:00:heavy:01 2 1 -pontoon_bridge%1:06:00:: 1 1 -pony%1:05:02:: 1 2 -pony%1:05:03:: 2 1 -pooch%2:30:00:: 1 1 -pooh-pooh%2:32:01:: 1 1 -pool%1:06:00:: 1 13 -pool%1:14:00:: 4 2 -pool%1:14:01:: 3 2 -pool%1:17:00:: 2 2 -pool%1:17:01:: 6 1 -pool%1:21:00:: 5 1 -pool%2:40:00:: 1 4 -pool%2:40:01:: 2 2 -poor%3:00:00:: 3 12 -poor%3:00:03:: 4 2 -poor%5:00:00:inferior:02 1 18 -poor%5:00:00:low:02 5 2 -poor%5:00:00:unfortunate:00 2 18 -poor_devil%1:18:00:: 1 2 -poor_white_trash%1:18:00:: 1 1 -poorly%4:02:00:: 1 9 -pop%1:18:00:: 1 1 -pop%2:33:00:: 4 1 -pop%2:35:00:: 2 3 -pop%2:38:00:: 1 3 -pop%2:39:00:: 3 1 -pop_fly%1:04:00:: 1 1 -pop_in%2:38:00:: 1 2 -pop_out%2:30:01:: 1 3 -pop_tent%1:06:00:: 1 1 -pop_up%2:39:00:: 1 4 -pope%1:18:00:: 1 6 -poplin%1:06:00:: 1 1 -popping%1:11:00:: 1 3 -poppy%1:20:00:: 1 2 -populace%1:14:00:: 1 2 -popular%3:00:00:: 1 14 -popular%5:00:00:democratic:00 2 9 -popular%5:00:00:general:00 4 1 -popular%5:00:00:nonclassical:00 5 1 -popular%5:00:01:common:01 3 5 -popular_music%1:10:00:: 1 2 -popularism%1:10:00:: 1 1 -popularity%1:07:00:: 1 6 -popularity_contest%1:04:00:: 1 1 -popularly%4:02:00:: 1 2 -populate%2:42:00:: 1 7 -populated%5:00:00:inhabited:00 1 2 -population%1:09:00:: 3 3 -population%1:14:00:: 1 27 -population%1:14:01:: 2 4 -population%1:23:00:: 4 1 -population_shift%1:11:00:: 1 4 -populous%5:00:00:inhabited:00 1 3 -porch%1:06:00:: 1 21 -porcupine%1:05:00:: 1 1 -pore%1:08:00:: 2 1 -pore%1:25:00:: 1 2 -pore%2:31:00:: 1 1 -pork%1:13:00:: 1 4 -porkchop%1:13:00:: 1 1 -porosity%1:07:00:: 1 1 -porous%5:00:00:permeable:00 1 11 -port%1:06:00:: 3 1 -port%1:06:02:: 4 1 -port%1:13:00:: 2 1 -port%1:15:00:: 1 5 -portable%3:00:00:: 1 3 -portal%1:06:01:: 1 5 -portend%2:32:00:: 1 1 -portentous%5:00:00:prophetic:00 2 1 -portentous%5:00:00:significant:00 1 2 -porter%1:18:00:: 1 1 -porter%1:18:02:: 2 1 -porterhouse%1:13:00:: 1 1 -portfolio%1:06:00:: 1 2 -portion%1:04:00:: 3 4 -portion%1:06:00:: 2 4 -portion%1:21:00:: 4 2 -portion%1:24:00:: 1 31 -portrait%1:06:00:: 3 2 -portrait%1:06:01:: 1 4 -portrait%1:10:00:: 2 2 -portray%2:32:00:: 1 9 -portray%2:36:00:: 2 3 -portray%2:36:01:: 3 2 -portrayal%1:04:02:: 2 1 -portrayal%1:10:01:: 1 1 -portugal%1:15:00:: 1 1 -portuguese%1:10:00:: 1 1 -portwatcher%1:18:00:: 1 2 -pose%1:07:00:: 1 1 -pose%2:32:13:: 3 1 -pose%2:39:00:: 2 4 -pose%2:42:00:: 1 7 -poseur%1:18:00:: 1 1 -position%1:04:00:: 10 2 -position%1:04:01:: 6 12 -position%1:04:02:: 9 3 -position%1:07:00:: 7 7 -position%1:07:01:: 4 14 -position%1:09:00:: 3 18 -position%1:09:01:: 12 1 -position%1:15:00:: 1 34 -position%1:15:02:: 2 18 -position%1:15:03:: 8 3 -position%1:26:00:: 5 12 -position%1:26:02:: 11 1 -position%2:35:00:: 2 1 -position%2:38:00:: 1 2 -positive%3:00:01:: 1 20 -positive%3:00:02:: 3 1 -positive%3:00:04:: 4 1 -positive%5:00:00:advantageous:00 2 2 -positive%5:00:00:certain(p):02 10 3 -positive%5:00:00:formal:01 5 1 -positive%5:00:00:undeniable:00 6 1 -positive_feedback%1:22:00:: 1 1 -positively%4:02:00:: 1 5 -positivism%1:09:00:: 1 3 -positivist%1:18:00:: 1 6 -positivist%3:01:00:: 1 4 -posse%1:14:00:: 1 11 -posseman%1:18:00:: 1 2 -possess%2:40:00:: 2 12 -possess%2:42:00:: 1 31 -possess%2:42:02:: 3 2 -possessed%5:00:00:controlled:00 1 2 -possession%1:03:00:: 2 6 -possession%1:04:00:: 1 10 -possessive%3:01:00:: 1 1 -possessive%5:00:00:acquisitive:00 2 1 -possibility%1:09:00:: 3 12 -possibility%1:09:01:: 4 6 -possibility%1:09:03:: 1 21 -possibility%1:26:00:: 2 18 -possible%1:09:00:: 1 1 -possible%3:00:00:: 1 136 -possible%3:00:04:: 2 20 -possible%5:00:00:thinkable:00 3 1 -possibly%4:02:00:: 1 26 -possibly%4:02:03:: 2 1 -possum%1:05:01:: 1 2 -post%1:04:00:: 3 3 -post%1:06:00:: 4 2 -post%1:06:01:: 2 3 -post%1:15:00:: 1 3 -post%2:32:00:: 5 1 -post%2:32:03:: 2 3 -post%2:33:00:: 4 1 -post%2:35:02:: 1 3 -post%2:41:01:: 3 1 -post%5:00:00:succeeding(a):00 1 6 -post_office%1:14:01:: 1 3 -poster%1:10:00:: 1 1 -posterior%3:00:00:: 1 5 -posthumous%5:00:00:late:00 1 1 -postmark%1:10:00:: 1 1 -postmaster_general%1:18:00:: 1 2 -postpone%2:42:00:: 1 12 -postponed%5:00:00:delayed:00 1 1 -postscript%1:10:00:: 1 1 -postulate%1:10:00:: 1 1 -postulate%2:31:00:: 2 1 -postulate%2:32:00:: 1 3 -posture%1:07:00:: 1 9 -posture%1:07:01:: 2 1 -postwar%3:00:00:: 1 2 -pot%1:06:00:: 1 6 -pot%1:06:01:: 2 5 -pot%1:06:04:: 4 1 -pot%1:23:00:: 3 1 -pot%2:35:00:: 1 1 -potassium%1:27:00:: 1 5 -potato%1:13:00:: 1 2 -potato_yellow-dwarf_virus%1:05:00:: 1 3 -potency%1:07:00:: 2 1 -potency%1:07:01:: 1 2 -potent%3:00:00:: 3 1 -potent%5:00:00:influential:00 1 2 -potent%5:00:00:powerful:00 2 2 -potential%1:26:00:: 1 10 -potential%3:00:00:: 1 7 -potential%5:00:00:prospective:00 2 6 -potential_energy%1:19:00:: 1 5 -potentiality%1:09:00:: 2 2 -potentiality%1:26:00:: 1 3 -potentially%4:02:00:: 1 2 -potentiometer%1:06:01:: 1 1 -pothole%1:17:00:: 1 2 -potpourri%1:14:00:: 1 1 -potshot%1:04:00:: 1 1 -potter%1:18:00:: 1 7 -potter%2:35:01:: 1 1 -pottery%1:04:00:: 2 1 -pottery%1:06:00:: 1 10 -pouch%1:06:00:: 1 1 -poultry%1:05:00:: 1 2 -pounce%2:38:00:: 1 2 -pound%1:23:01:: 2 2 -pound%1:23:09:: 1 42 -pound%2:35:00:: 1 5 -pound%2:35:01:: 2 3 -pound%2:38:00:: 4 1 -pound%2:38:01:: 3 1 -pounder%1:17:00:: 1 1 -pounding%1:11:00:: 1 1 -pounding%1:11:01:: 2 1 -pour%2:38:00:: 2 7 -pour%2:38:02:: 4 4 -pour%2:38:03:: 1 12 -pour%2:38:04:: 3 6 -pour%2:40:00:: 5 1 -pour_forth%2:35:00:: 1 1 -pour_out%2:32:00:: 1 2 -pour_out%2:38:00:: 2 1 -pour_out%2:38:01:: 3 1 -pour_out%2:38:02:: 4 1 -poverty%1:26:00:: 1 7 -pow%1:18:00:: 1 1 -powder%1:06:01:: 3 1 -powder%1:27:00:: 1 15 -powder%1:27:01:: 2 6 -powder-puff%5:00:00:feminine:01 1 1 -powder_technique%1:22:00:: 1 1 -powdered%5:00:00:fine:00 1 6 -powdery%5:00:00:fine:00 1 1 -powdery%5:00:00:light:05 2 1 -power%1:07:00:: 1 62 -power%1:07:02:: 7 5 -power%1:09:01:: 3 13 -power%1:10:00:: 6 7 -power%1:14:00:: 8 1 -power%1:18:00:: 5 7 -power%1:19:00:: 2 13 -power%1:26:00:: 4 7 -power%2:34:00:: 1 3 -power%5:00:00:assisted:00 1 1 -power_company%1:14:00:: 1 1 -power_plant%1:06:00:: 1 1 -power_saw%1:06:00:: 1 1 -power_tool%1:06:00:: 1 3 -powered%5:00:00:powerful:00 1 2 -powerful%3:00:00:: 1 18 -powerful%5:00:00:influential:00 3 2 -powerful%5:00:01:strong:00 4 1 -powerful%5:00:02:strong:00 2 2 -powerfully%4:02:01:: 1 2 -powerfulness%1:07:00:: 1 1 -powerless%3:00:00:: 1 1 -powwow%1:10:00:: 1 1 -practicable%5:00:00:possible:00 2 2 -practicable%5:00:00:practical:00 1 2 -practical%3:00:00:: 1 21 -practical%5:00:01:realistic:00 2 2 -practical_nurse%1:18:00:: 1 1 -practically%4:02:00:: 1 27 -practice%1:04:00:: 1 23 -practice%1:04:02:: 2 5 -practice%1:04:03:: 4 2 -practice%1:04:04:: 3 3 -practice%1:09:00:: 5 1 -practice%2:31:00:: 2 7 -practice%2:36:00:: 3 5 -practice%2:41:00:: 1 11 -practice%2:41:01:: 4 2 -practice_session%1:04:00:: 1 1 -practiced%5:00:00:skilled:00 1 1 -practicing%5:00:00:active:08 1 1 -practise%2:36:00:: 1 1 -practised%5:00:00:experienced:00 1 1 -practitioner%1:18:00:: 1 1 -pragmatic%5:00:00:practical:00 1 2 -prairie%1:15:00:: 1 2 -prairie_dog%1:05:00:: 1 1 -prairie_rattlesnake%1:05:00:: 1 1 -praise%1:10:00:: 1 5 -praise%2:32:00:: 1 14 -prance%2:38:00:: 1 2 -prank%1:04:01:: 1 1 -prattle%2:32:00:: 1 1 -prattling%5:00:00:voluble:00 1 1 -pray%2:32:00:: 1 21 -pray%2:32:01:: 2 2 -prayer%1:04:00:: 1 5 -prayer%1:10:00:: 3 2 -prayer%1:10:01:: 4 1 -prayer%1:10:02:: 2 4 -prayer_meeting%1:04:00:: 1 1 -pre%5:00:00:preceding(a):00 1 9 -preach%2:32:00:: 2 4 -preach%2:32:02:: 1 9 -preacher%1:18:00:: 1 8 -preaching%1:10:00:: 1 10 -preaching%1:10:01:: 2 1 -preamble%1:10:00:: 1 1 -prearrange%2:36:00:: 1 1 -prearranged%5:00:00:planned:00 1 1 -precarious%5:00:00:dangerous:00 2 1 -precarious%5:00:00:uneasy:00 1 4 -precast%5:00:00:formed:00 1 1 -precaution%1:04:00:: 1 5 -precaution%1:07:00:: 2 2 -precaution%1:09:00:: 3 1 -precede%2:38:00:: 4 1 -precede%2:41:00:: 3 3 -precede%2:42:00:: 1 9 -precede%2:42:01:: 2 6 -precedence%1:26:00:: 1 2 -precedent%1:09:00:: 1 3 -precedent%1:10:00:: 2 1 -preceding%3:00:00:: 1 7 -preceding%3:00:04:: 2 2 -prechlorination%1:22:00:: 1 1 -precinct%1:15:00:: 1 1 -precious%5:00:00:loved:00 1 7 -precious%5:00:00:valuable:00 2 3 -precipice%1:17:00:: 1 1 -precipitate%1:27:00:: 1 1 -precipitate%2:30:00:: 2 4 -precipitate%2:30:01:: 3 1 -precipitate%2:36:00:: 1 4 -precipitin%1:27:00:: 1 1 -precise%3:00:00:: 1 16 -precise%5:00:00:correct:00 2 1 -precisely%4:02:00:: 1 20 -precisely%4:02:01:: 2 4 -precisely%4:02:02:: 3 3 -precision%1:07:00:: 1 9 -preclude%2:41:00:: 1 2 -precocious%3:00:00:: 1 1 -preconceived%3:44:00:: 1 1 -preconceived_notion%1:09:00:: 1 1 -preconception%1:09:00:: 1 1 -precondition%2:30:00:: 1 2 -precooked%5:00:00:prepared:00 1 1 -precooled%5:00:00:cool:01 1 1 -predecessor%1:18:00:: 1 4 -predetermined%5:00:00:planned:00 1 1 -predicament%1:26:00:: 1 1 -predicator%1:10:00:: 1 2 -predict%2:32:00:: 1 28 -predict%2:32:01:: 2 2 -predictable%3:00:00:: 1 5 -predicted%5:00:00:expected:00 1 1 -prediction%1:09:00:: 1 2 -predictive%5:00:00:prophetic:00 1 2 -predigested%5:00:00:digestible:00 1 1 -predilection%1:09:00:: 1 1 -predisposed%5:00:00:susceptible:00 1 1 -prednisone%1:27:00:: 1 3 -predominance%1:26:00:: 1 1 -predominantly%4:02:00:: 1 2 -predominate%2:42:00:: 1 2 -predomination%1:26:00:: 1 1 -preeminent%5:00:00:superior:01 1 1 -preemployment_training_program%1:09:00:: 1 1 -preempt%2:40:00:: 1 1 -preexistence%1:26:00:: 1 1 -preexistent%5:00:00:antecedent:00 1 1 -preface%1:10:00:: 1 1 -preface%2:32:00:: 1 1 -prefer%2:31:00:: 2 16 -prefer%2:37:00:: 1 22 -prefer%2:41:00:: 3 1 -preferable%5:00:00:desirable:00 1 1 -preferably%4:02:00:: 1 4 -preference%1:09:01:: 2 2 -preference%1:12:00:: 1 2 -preferential%5:00:00:advantageous:00 1 1 -preferentially%4:02:00:: 1 2 -preferment%1:04:00:: 1 1 -preferred%5:00:00:desirable:00 1 1 -prefix%1:10:00:: 1 1 -pregnant%3:00:00:: 1 3 -pregnant%5:00:00:meaningful:00 2 1 -prehistoric%5:00:00:past:00 1 1 -preisolate%2:30:00:: 1 1 -prejudice%1:09:01:: 1 3 -prejudiced%5:00:00:subjective:00 1 1 -prejudicial%5:00:00:harmful:00 1 1 -preliminary%5:00:00:exploratory:00 1 11 -preliterate%5:00:00:illiterate:00 1 1 -preliterate%5:00:00:noncivilized:00 2 1 -prelude%1:11:00:: 1 1 -premiere%1:10:00:: 1 1 -premise%1:10:00:: 1 1 -premises%1:15:00:: 1 1 -premium%1:21:02:: 1 1 -premium%5:00:00:superior:02 1 1 -premix%1:13:00:: 1 3 -premonition%1:12:00:: 1 2 -premonitory%5:00:00:prophetic:00 1 1 -preoccupation%1:09:00:: 2 1 -preoccupation%1:09:02:: 1 1 -preoccupied%5:00:00:concerned:00 2 1 -preoccupied%5:00:00:thoughtful:00 1 1 -preoccupy%2:37:00:: 2 1 -preoccupy%2:42:00:: 1 1 -prep_school%1:14:00:: 1 2 -prepackaged%5:00:00:packaged:00 1 1 -preparation%1:04:02:: 1 14 -preparation%1:09:00:: 3 2 -preparation%1:27:00:: 2 5 -preparative%5:00:00:preceding(a):00 1 1 -preparatory%5:00:00:preceding(a):00 1 1 -preparatory_school%1:14:00:: 1 2 -prepare%2:30:00:: 1 45 -prepare%2:30:01:: 7 1 -prepare%2:31:01:: 6 2 -prepare%2:36:00:: 4 8 -prepare%2:36:01:: 2 15 -prepare%2:36:02:: 3 8 -prepare%2:41:00:: 5 5 -prepare_for%2:30:00:: 1 7 -prepared%3:00:00:: 1 14 -prepared%5:00:00:willing:00 2 1 -preposition%1:10:00:: 1 2 -prepositional%3:01:00:: 1 3 -preposterous%5:00:00:foolish:00 1 2 -prepubescent%5:00:00:immature:01 1 1 -prepupal%5:00:00:immature:01 1 1 -prerequisite%1:09:00:: 1 1 -presage%2:32:00:: 1 1 -presbyterian%1:18:00:: 1 1 -prescribe%2:32:00:: 1 7 -prescribed%5:00:00:nonarbitrary:00 1 2 -prescribed%5:00:00:settled:02 2 1 -prescription%1:06:00:: 2 1 -prescription%1:10:00:: 1 2 -preseason%1:28:00:: 1 1 -presence%1:07:00:: 5 1 -presence%1:09:00:: 4 2 -presence%1:15:00:: 2 6 -presence%1:18:00:: 3 2 -presence%1:26:00:: 1 30 -present%1:21:00:: 2 4 -present%1:28:00:: 1 17 -present%2:32:00:: 2 28 -present%2:32:01:: 9 2 -present%2:32:02:: 8 3 -present%2:36:00:: 3 14 -present%2:36:08:: 10 1 -present%2:39:00:: 1 40 -present%2:40:00:: 7 3 -present%2:40:01:: 4 13 -present%2:40:02:: 6 3 -present%2:42:00:: 5 7 -present%3:00:01:: 1 60 -present%3:00:02:: 2 39 -present-day%5:00:00:current:00 1 8 -present_time%1:28:00:: 1 2 -presentable%5:00:00:respectable:00 1 2 -presentation%1:04:00:: 2 4 -presentation%1:04:01:: 1 6 -presentation%1:06:00:: 5 1 -presentation%1:10:00:: 3 3 -presentation%1:10:01:: 4 1 -presentational%3:01:00:: 1 1 -presently%4:02:00:: 2 5 -presently%4:02:01:: 1 38 -presentment%1:04:00:: 1 1 -presentness%1:07:00:: 1 1 -preservation%1:04:00:: 1 1 -preserve%1:26:00:: 1 1 -preserve%2:30:00:: 4 1 -preserve%2:40:00:: 2 9 -preserve%2:40:01:: 3 9 -preserve%2:42:00:: 1 21 -preserved%3:00:01:: 2 1 -preserved%3:00:02:: 1 1 -preside%2:41:00:: 2 3 -preside%2:41:01:: 1 4 -presidency%1:28:00:: 1 1 -president%1:04:04:: 6 1 -president%1:18:00:: 3 5 -president%1:18:01:: 1 14 -president%1:18:02:: 5 3 -president%1:18:03:: 4 3 -president%1:18:04:: 2 5 -president_of_the_united_states%1:18:00:: 1 1 -presidential%3:01:00:: 1 8 -press%1:06:01:: 4 1 -press%1:10:00:: 3 1 -press%1:14:00:: 1 10 -press%1:26:00:: 2 1 -press%2:32:00:: 2 7 -press%2:32:09:: 8 1 -press%2:35:00:: 1 32 -press%2:35:01:: 4 2 -press%2:35:02:: 5 2 -press%2:36:01:: 7 1 -press%2:38:00:: 6 1 -press%2:42:01:: 3 2 -press_clipping%1:10:00:: 1 1 -press_conference%1:10:00:: 1 1 -press_corps%1:14:00:: 1 1 -press_down_on%2:35:00:: 1 1 -press_on%2:38:00:: 1 1 -press_out%2:30:00:: 1 1 -pressing%1:04:00:: 1 1 -pressing%5:00:00:imperative:00 1 3 -pressure%1:04:00:: 3 4 -pressure%1:07:00:: 2 29 -pressure%1:09:00:: 5 2 -pressure%1:19:00:: 1 65 -pressure%1:26:00:: 4 3 -pressure%2:41:00:: 1 1 -pressure-cooker%5:00:00:intense:00 1 1 -pressure_dome%1:06:00:: 1 1 -prestige%1:26:00:: 1 11 -presto%4:02:01:: 1 1 -presto%5:00:00:fast:02 1 1 -presumably%4:02:00:: 1 16 -presume%2:31:00:: 1 12 -presume_to%2:41:00:: 1 1 -presumed%5:00:00:probable:00 1 1 -presumption%1:09:00:: 1 3 -presuppose%2:31:00:: 2 2 -presuppose%2:31:01:: 1 2 -presupposition%1:09:00:: 1 2 -pretence%1:07:00:: 1 1 -pretence%1:07:01:: 2 1 -pretend%2:32:00:: 1 12 -pretend%2:36:00:: 2 10 -pretended%5:00:00:counterfeit:00 1 2 -pretense%1:04:00:: 1 1 -pretension%1:07:00:: 1 1 -pretext%1:10:00:: 1 1 -pretrial%5:00:00:preceding(a):00 1 1 -prettiness%1:07:00:: 1 1 -pretty%4:02:00:: 1 35 -pretty%5:00:00:bad:00 2 3 -pretty%5:00:00:beautiful:00 1 20 -pretty_much%4:02:00:: 1 3 -prevail%2:33:00:: 4 2 -prevail%2:42:00:: 3 5 -prevail%2:42:01:: 2 5 -prevail%2:42:02:: 1 6 -prevailing%5:00:00:current:00 1 1 -prevalence%1:07:00:: 1 1 -prevalent%5:00:00:current:00 1 2 -prevent%2:41:00:: 2 40 -prevent%2:41:01:: 1 62 -prevention%1:04:00:: 1 17 -prevention%1:24:00:: 2 1 -preventive%5:00:00:healthful:00 1 1 -preventive_medicine%1:04:00:: 1 1 -previous%5:00:00:past:00 1 17 -previous%5:00:00:preceding(a):00 3 24 -previously%4:02:00:: 1 30 -prevision%1:09:01:: 1 5 -prewar%3:00:00:: 1 3 -prey%1:05:00:: 2 2 -prey%1:18:00:: 1 3 -prey%2:34:01:: 1 1 -price%1:07:00:: 1 56 -price%1:07:01:: 4 2 -price%1:07:02:: 3 2 -price%1:10:00:: 5 1 -price%1:21:00:: 2 9 -price%2:40:00:: 1 4 -price_competition%1:24:00:: 1 3 -price_cutting%1:04:00:: 1 1 -priced%3:00:00:: 1 1 -priceless%5:00:00:valuable:00 1 3 -pricing%1:09:00:: 1 3 -prick%1:18:00:: 1 2 -prick%2:35:00:: 1 3 -prick%2:35:04:: 4 1 -prick%2:38:00:: 3 1 -prick%2:39:00:: 2 1 -prick_up%2:38:00:: 1 1 -prickling%5:00:00:painful:00 1 1 -prickly%5:00:00:ill-natured:00 1 1 -pride%1:07:00:: 3 3 -pride%1:12:00:: 1 6 -pride%1:12:01:: 2 5 -pride%2:37:00:: 1 2 -prie-dieu%1:06:00:: 1 1 -priest%1:18:00:: 1 10 -priest%1:18:01:: 2 5 -primacy%1:26:00:: 1 1 -primarily%4:02:01:: 1 28 -primary%1:04:00:: 1 3 -primary%1:05:00:: 2 1 -primary%3:00:00:: 1 16 -primary%5:00:00:important:00 3 7 -primary%5:00:00:underived:00 2 8 -primary_election%1:04:00:: 1 1 -primate%1:18:00:: 1 1 -primates%1:05:00:: 1 1 -prime%1:23:00:: 1 2 -prime%2:30:00:: 1 1 -prime%5:00:00:superior:02 3 2 -prime%5:00:01:first:00 2 3 -prime%5:00:02:first:00 1 6 -prime_minister%1:18:00:: 2 16 -prime_minister%1:18:01:: 1 16 -prime_time%1:28:00:: 1 1 -primed%5:00:00:ready:00 1 2 -primer%1:10:00:: 1 1 -primeval%5:00:00:early:00 1 3 -priming%1:04:01:: 1 1 -primitive%3:00:00:: 5 1 -primitive%5:00:00:natural:01 2 3 -primitive%5:00:00:noncivilized:00 6 1 -primitive%5:00:00:underived:00 4 2 -primitive%5:00:01:early:02 3 2 -primitive%5:00:02:early:02 1 8 -primly%4:02:00:: 1 1 -primping%1:04:00:: 1 1 -prince%1:18:00:: 1 1 -prince_of_wales%1:18:00:: 1 1 -principal%1:18:00:: 2 2 -principal%1:18:01:: 3 1 -principal%1:21:01:: 1 12 -principal%5:00:00:important:00 1 19 -principally%4:02:00:: 1 2 -principle%1:09:00:: 3 7 -principle%1:09:01:: 2 9 -principle%1:09:02:: 6 2 -principle%1:09:03:: 1 13 -principle%1:09:04:: 4 3 -principle%1:10:00:: 5 2 -print%1:06:00:: 2 2 -print%1:10:00:: 1 2 -print%2:36:02:: 1 12 -print%2:36:03:: 2 1 -print_shop%1:06:00:: 1 2 -printable%3:00:00:: 1 1 -printed%5:00:00:written:00 1 4 -printed_symbol%1:10:00:: 1 1 -printing%1:04:00:: 2 1 -printing%1:10:01:: 1 2 -printing_ink%1:27:00:: 1 1 -prior%5:00:00:antecedent:00 1 22 -priority%1:26:00:: 1 7 -prise%2:35:00:: 1 1 -prison%1:06:00:: 1 3 -prison_camp%1:06:01:: 1 1 -prison_farm%1:06:00:: 1 1 -prison_house%1:26:00:: 1 1 -prisoner%1:18:00:: 1 12 -prisoner_of_war%1:18:00:: 1 2 -privacy%1:07:00:: 1 2 -privacy%1:26:02:: 2 1 -private%1:18:00:: 1 12 -private%3:00:00:: 1 44 -private_detective%1:18:00:: 1 11 -private_eye%1:18:00:: 1 12 -private_property%1:21:00:: 1 1 -private_school%1:14:00:: 1 3 -privately%4:02:00:: 1 7 -privately%4:02:01:: 2 1 -privilege%1:07:00:: 2 3 -privilege%1:07:02:: 1 8 -privileged%3:00:00:: 1 4 -privy%1:06:00:: 2 1 -privy%1:06:01:: 1 1 -prize%1:21:00:: 1 9 -prize%1:21:01:: 2 1 -prize%2:40:00:: 1 1 -prize_money%1:21:00:: 1 1 -prizefight%1:11:00:: 1 1 -prizewinning%5:00:00:best:00 1 1 -pro%1:18:00:: 1 1 -pro%3:00:00:: 1 5 -pro_rata%4:02:00:: 1 2 -pro_tem%5:00:00:impermanent:00 1 1 -probability%1:07:00:: 2 2 -probability%1:07:01:: 1 30 -probable%3:00:00:: 1 11 -probable%5:00:00:likely:00 2 2 -probably%4:02:00:: 1 112 -probe%2:32:00:: 1 7 -probe%2:35:00:: 2 2 -probing%1:09:00:: 1 1 -problem%1:09:00:: 3 17 -problem%1:10:00:: 2 38 -problem%1:26:00:: 1 151 -procedural%3:01:00:: 1 4 -procedure%1:04:00:: 1 41 -procedure%1:04:02:: 2 15 -proceed%2:30:00:: 4 3 -proceed%2:32:00:: 1 19 -proceed%2:38:00:: 2 17 -proceed%2:41:00:: 3 8 -proceed%2:42:00:: 5 1 -proceeding%1:04:00:: 1 1 -proceedings%1:04:00:: 1 5 -proceeds%1:21:00:: 1 3 -process%1:04:00:: 1 63 -process%1:09:00:: 3 3 -process%1:22:00:: 2 25 -process%2:30:00:: 1 2 -process%2:31:00:: 3 1 -process%2:41:01:: 2 1 -process-server%1:18:00:: 1 1 -processed%5:00:00:prepared:00 1 1 -processing%1:22:00:: 1 2 -procession%1:14:00:: 1 10 -processor%1:14:00:: 1 1 -proclaim%2:32:00:: 2 10 -proclaim%2:32:01:: 4 1 -proclaim%2:32:02:: 1 13 -proclaim%2:32:03:: 3 3 -proclaimed%5:00:01:declared:00 1 2 -proclamation%1:10:00:: 1 6 -procrastinate%2:42:00:: 1 1 -procrastination%1:04:00:: 1 1 -procreation%1:04:00:: 1 5 -procreative%5:00:00:fruitful:00 1 1 -procure%2:40:00:: 1 3 -procurement%1:04:00:: 1 8 -procurer%1:18:00:: 1 1 -prod%2:35:00:: 2 2 -prod%2:35:02:: 1 2 -prodigal%5:00:00:generous:01 1 1 -prodigally%4:02:00:: 1 1 -prodigious%5:00:00:large:00 1 4 -produce%1:13:00:: 1 2 -produce%2:36:00:: 2 38 -produce%2:36:02:: 1 69 -produce%2:36:03:: 3 26 -produce%2:36:05:: 5 6 -produce%2:39:00:: 6 5 -produce%2:39:01:: 4 12 -produced%3:44:00:: 1 1 -producer%1:11:00:: 3 2 -producer%1:18:01:: 1 9 -producer%1:18:02:: 2 5 -product%1:06:00:: 2 25 -product%1:06:01:: 1 52 -product%1:09:00:: 3 8 -product%1:27:00:: 4 2 -production%1:04:00:: 1 36 -production%1:04:01:: 4 2 -production%1:06:00:: 3 6 -production%1:10:00:: 2 12 -productive%3:00:00:: 1 8 -productive%3:00:04:: 2 1 -productive%5:00:00:successful:00 3 1 -productivity%1:07:00:: 1 13 -profane%5:00:00:dirty:02 1 1 -profanely%4:02:01:: 1 1 -profanity%1:10:00:: 1 1 -profess%2:32:00:: 1 4 -profess%2:32:02:: 3 1 -profess%2:32:03:: 2 3 -professedly%4:02:00:: 1 2 -profession%1:04:00:: 2 5 -profession%1:14:00:: 1 7 -professional%1:18:00:: 1 3 -professional%1:18:01:: 3 1 -professional%1:18:02:: 2 1 -professional%3:00:01:: 1 12 -professional%3:00:02:: 3 6 -professional%3:01:00:: 4 4 -professional%3:01:01:: 2 11 -professional%5:00:00:white-collar:00 5 1 -professionally%4:02:00:: 1 2 -professor%1:18:00:: 1 19 -professorship%1:04:00:: 1 1 -proffer%2:40:00:: 1 2 -proficiency%1:07:00:: 1 1 -proficient%5:00:00:skilled:00 1 3 -profile%1:10:00:: 3 1 -profile%1:10:01:: 1 10 -profile%1:15:01:: 2 3 -profit%1:07:00:: 2 1 -profit%1:21:00:: 1 6 -profit%2:40:00:: 2 2 -profit%2:40:02:: 1 2 -profit-maximizing%5:00:00:increasing:00 1 2 -profit_and_loss%1:21:00:: 1 1 -profit_margin%1:21:00:: 1 3 -profit_sharing%1:21:00:: 1 1 -profitability%1:07:00:: 1 1 -profitable%3:00:00:: 1 4 -profitable%5:00:00:advantageous:00 2 3 -profitably%4:02:00:: 1 3 -profits%1:21:01:: 1 6 -profound%3:00:00:: 1 12 -profound%5:00:00:intense:00 2 8 -profoundly%4:02:00:: 1 5 -profundity%1:07:01:: 2 1 -profundity%1:09:01:: 1 1 -profuse%5:00:00:abundant:00 1 1 -profusely%4:02:00:: 1 1 -profusion%1:07:00:: 1 1 -program%1:09:00:: 1 106 -program%1:09:01:: 2 36 -program%1:10:01:: 3 5 -program%1:10:04:: 4 3 -program%2:32:00:: 1 4 -program%2:36:00:: 2 3 -programming%1:04:01:: 1 2 -progress%1:04:00:: 2 6 -progress%1:04:01:: 1 24 -progress%1:11:00:: 3 5 -progress%2:30:00:: 1 12 -progress%2:38:00:: 2 3 -progress_to%2:38:00:: 1 1 -progression%1:04:00:: 3 1 -progression%1:11:00:: 2 1 -progression%1:14:00:: 1 2 -progressive%3:00:01:: 1 3 -progressive%5:00:00:liberal:00 2 3 -progressively%4:02:01:: 1 3 -progressivism%1:09:00:: 1 2 -prohibit%2:32:00:: 1 8 -prohibition%1:10:00:: 2 2 -prohibition%1:10:02:: 1 3 -prohibition%1:28:00:: 3 1 -prohibition_era%1:28:00:: 1 1 -project%1:04:00:: 1 23 -project%1:09:00:: 2 1 -project%2:31:00:: 8 1 -project%2:32:00:: 1 7 -project%2:35:01:: 3 5 -project%2:36:01:: 7 1 -project%2:36:08:: 6 1 -project%2:39:00:: 5 1 -project%2:39:01:: 4 2 -project%2:42:00:: 2 6 -projected%5:00:00:planned:00 1 2 -projected%5:00:00:protrusive:00 2 1 -projectile%1:06:00:: 1 2 -projection%1:06:00:: 4 1 -projection%1:09:00:: 3 1 -projection%1:09:01:: 1 9 -projection%1:10:00:: 2 3 -proletariat%1:14:00:: 1 1 -proliferation%1:22:00:: 1 3 -prolific%5:00:00:productive:00 1 1 -prolong%2:30:00:: 1 3 -prolongation%1:04:00:: 1 1 -prolonged%5:00:00:long:02 1 5 -prometheus%1:18:00:: 1 1 -prominence%1:07:00:: 2 2 -prominence%1:26:00:: 1 3 -prominent%5:00:00:conspicuous:00 1 13 -prominent%5:00:02:conspicuous:00 2 9 -prominently%4:02:00:: 1 6 -promise%1:09:00:: 2 8 -promise%1:10:00:: 1 8 -promise%2:32:00:: 1 26 -promise%2:32:01:: 2 11 -promise%2:32:02:: 3 5 -promise%2:42:00:: 4 3 -promised%5:00:00:secure:02 1 1 -promising%5:00:00:auspicious:00 2 2 -promising%5:00:00:likely:00 1 9 -promote%2:32:00:: 3 2 -promote%2:41:00:: 2 5 -promote%2:41:01:: 1 31 -promoter%1:18:00:: 1 2 -promotion%1:04:00:: 2 1 -promotion%1:10:00:: 1 4 -promotion_system%1:09:00:: 1 1 -promotional%3:01:00:: 1 2 -prompt%2:32:00:: 2 2 -prompt%2:36:00:: 1 9 -prompt%5:00:00:efficient:00 2 1 -prompt%5:00:00:punctual:00 1 1 -promptly%4:02:00:: 2 3 -promptly%4:02:01:: 3 2 -promptly%4:02:02:: 1 4 -promulgate%2:32:00:: 1 1 -promulgate%2:32:01:: 2 1 -promulgator%1:18:00:: 1 1 -prone%5:00:00:inclined(p):02 2 4 -prone%5:00:00:unerect:00 1 2 -pronoun%1:10:00:: 1 5 -pronounce%2:32:00:: 2 3 -pronounce%2:32:01:: 1 3 -pronounced%5:00:00:noticeable:00 1 4 -pronouncement%1:10:00:: 1 3 -proof%1:09:00:: 1 10 -proof%1:10:00:: 2 8 -prop%1:06:00:: 1 1 -prop%2:35:00:: 1 1 -prop_up%2:35:00:: 1 2 -propaganda%1:10:00:: 1 4 -propagandist%1:18:00:: 1 7 -propagandistic%3:01:00:: 1 4 -propagation%1:04:00:: 2 1 -propagation%1:10:00:: 1 1 -propel%2:35:00:: 1 4 -propeller%1:06:00:: 1 1 -proper%3:00:00:: 1 34 -proper%5:00:00:appropriate:00 3 2 -proper%5:00:00:real(a):02 4 4 -proper%5:00:00:specific:00 2 2 -properly%4:02:00:: 1 21 -properly%4:02:01:: 2 1 -properly_speaking%4:02:00:: 1 1 -property%1:07:00:: 2 26 -property%1:15:00:: 3 4 -property%1:21:00:: 1 30 -property_settlement%1:10:00:: 1 1 -prophecy%1:09:00:: 1 2 -prophecy%1:10:00:: 2 1 -prophesy%2:32:00:: 1 1 -prophet%1:18:00:: 1 3 -prophet%1:18:01:: 2 1 -prophetic%3:00:00:: 1 3 -prophetically%4:02:00:: 1 2 -propitious%3:00:00:: 1 1 -proponent%1:18:00:: 1 1 -proportion%1:07:00:: 2 7 -proportion%1:24:00:: 1 9 -proportion%1:25:00:: 3 1 -proportional%5:00:00:proportionate:00 1 6 -proportionality%1:24:00:: 1 1 -proportionally%4:02:00:: 1 1 -proportionate%3:00:00:: 1 2 -proportionate%5:00:00:commensurate:00 2 1 -proportionately%4:02:00:: 1 4 -proposal%1:10:00:: 1 17 -proposal%1:10:02:: 2 1 -propose%2:31:00:: 2 21 -propose%2:31:01:: 3 6 -propose%2:32:00:: 1 23 -propose%2:32:01:: 5 1 -propose%2:41:00:: 4 1 -proposed%5:00:00:planned:00 1 9 -proposition%1:10:00:: 1 6 -proposition%1:10:01:: 2 2 -proposition%2:32:00:: 1 1 -proprietor%1:18:00:: 1 11 -proprietorship%1:21:00:: 1 10 -propriety%1:07:00:: 1 1 -propylthiouracil%1:27:00:: 1 1 -proscribe%2:32:00:: 1 2 -prose%1:10:00:: 1 3 -prose_poem%1:10:00:: 1 1 -prosecute%2:41:00:: 2 3 -prosecute%2:41:01:: 1 3 -prosecuting_attorney%1:18:00:: 1 2 -prosecution%1:04:00:: 1 3 -prosecution%1:14:00:: 2 1 -prosecutor%1:18:00:: 1 4 -prosodic%3:01:00:: 1 1 -prosody%1:10:00:: 1 1 -prospect%1:09:01:: 2 3 -prospect%1:18:00:: 3 1 -prospect%1:26:00:: 1 10 -prospective%3:00:00:: 1 6 -prospective%5:00:00:future:00 2 2 -prosper%2:30:00:: 1 3 -prosper%2:40:00:: 2 1 -prosperity%1:26:00:: 2 1 -prosperity%1:26:02:: 1 3 -prosperous%5:00:00:rich:00 1 2 -prosperous%5:00:00:successful:00 2 1 -prostitute%1:18:00:: 1 1 -prostitution%1:04:00:: 1 2 -prostrate%2:30:00:: 2 1 -prostrate%2:38:00:: 1 1 -prostrate%5:00:01:unerect:00 1 2 -protagonist%1:18:00:: 1 1 -protease%1:27:00:: 1 5 -protect%2:33:00:: 1 43 -protect%2:33:01:: 2 1 -protecting%5:00:00:protective:00 1 1 -protection%1:04:00:: 1 18 -protection%1:06:00:: 2 5 -protection%1:21:00:: 3 3 -protection%1:26:00:: 4 1 -protective%3:00:00:: 1 9 -protective%5:00:00:tender:03 2 1 -protectively%4:02:00:: 1 1 -protectorate%1:15:00:: 1 1 -protege%1:18:00:: 1 1 -protein%1:27:00:: 1 23 -proteolysis%1:22:00:: 1 2 -proteolytic%3:01:00:: 1 1 -protest%1:04:00:: 2 4 -protest%1:10:00:: 1 11 -protest%1:10:01:: 3 1 -protest%2:32:00:: 1 13 -protest%2:32:01:: 3 1 -protest%2:41:00:: 2 8 -protestant%1:14:00:: 2 5 -protestant%1:18:00:: 1 15 -protestant%3:01:00:: 1 27 -protestant_denomination%1:14:00:: 1 3 -protestantism%1:09:00:: 1 6 -protestation%1:10:00:: 2 1 -protestation%1:10:01:: 1 1 -protesting%5:00:00:complaining(a):00 1 1 -proto%5:00:00:early:00 1 2 -protogeometric%5:00:00:nonrepresentational:00 1 3 -proton%1:17:00:: 1 1 -proton_magnetic_resonance%1:19:00:: 1 1 -protoplasm%1:08:00:: 1 1 -prototype%1:09:00:: 1 2 -prototypical%5:00:00:first:00 1 1 -protozoa%1:05:00:: 1 3 -protozoan%1:05:00:: 1 1 -protrude%2:42:00:: 1 7 -protuberance%1:25:00:: 1 1 -proud%3:00:00:: 1 14 -proud%5:00:00:impressive:00 2 2 -proud_of%5:00:00:proud:00 1 1 -proudly%4:02:00:: 1 4 -prove%2:31:00:: 2 45 -prove%2:31:02:: 4 4 -prove%2:32:00:: 3 6 -prove%2:42:00:: 1 58 -prove_oneself%2:31:00:: 1 1 -proved%3:00:00:: 1 1 -provenance%1:15:00:: 1 1 -proverb%1:10:00:: 1 3 -proverbial%3:01:00:: 1 1 -provide%2:32:00:: 3 14 -provide%2:34:00:: 2 25 -provide%2:40:00:: 1 270 -provide%2:41:00:: 4 2 -provide_for%2:42:01:: 1 17 -providence%1:04:00:: 2 2 -providence%1:15:00:: 1 7 -providential%5:00:00:fortunate:00 1 1 -province%1:15:00:: 1 4 -province%1:21:00:: 3 1 -province%1:26:00:: 2 1 -provincial%3:00:00:: 2 2 -provincial%3:01:00:: 1 3 -provincialism%1:09:00:: 2 1 -provincialism%1:09:01:: 1 1 -proving_ground%1:06:00:: 1 1 -provision%1:04:01:: 2 4 -provision%1:09:00:: 3 1 -provision%1:10:00:: 1 27 -provision%2:40:00:: 1 1 -provisional%5:00:00:conditional:00 1 3 -provisions%1:13:00:: 1 1 -proviso%1:10:00:: 1 1 -provocation%1:04:00:: 1 1 -provocative%3:00:00:: 1 1 -provoke%2:32:00:: 3 3 -provoke%2:36:00:: 2 3 -provoke%2:37:00:: 1 3 -provoke%2:37:01:: 4 1 -provost_guard%1:14:00:: 1 1 -prowess%1:09:00:: 1 3 -prowl%2:38:00:: 1 2 -prowl%2:42:00:: 2 1 -prowler%1:18:00:: 1 1 -proximal%3:00:00:: 1 2 -proximate%3:00:00:: 1 2 -proximity%1:07:00:: 1 1 -prudence%1:07:00:: 1 1 -prurient%5:00:00:sexy:00 1 1 -prussian_blue%1:27:00:: 1 1 -pry%2:32:00:: 2 2 -pry%2:35:00:: 1 3 -pry%2:39:00:: 3 1 -pseudo%5:00:00:counterfeit:00 1 9 -pseudomonas_pyocanea%1:05:00:: 1 1 -pseudophloem%1:20:00:: 1 6 -psi%1:23:00:: 1 1 -psithyrus%1:05:00:: 1 4 -psyche%1:09:00:: 1 2 -psyche%1:18:00:: 2 1 -psychiatric%3:01:00:: 1 1 -psychiatrist%1:18:00:: 1 4 -psychic%3:01:01:: 1 1 -psychic_phenomenon%1:10:00:: 1 1 -psychical%5:00:00:mental:00 1 4 -psychically%4:02:00:: 1 3 -psychoactive_drug%1:06:00:: 1 2 -psychological%3:01:00:: 2 2 -psychological%5:00:00:mental:00 1 6 -psychologically%4:02:01:: 1 1 -psychologist%1:18:00:: 1 16 -psychology%1:09:00:: 1 5 -psychopath%1:18:00:: 1 1 -psychopathic%5:00:00:insane:00 1 1 -psychopharmacological%3:01:00:: 1 1 -psychophysiology%1:09:00:: 1 1 -psychopomp%1:18:00:: 1 1 -psychosomatic_disorder%1:26:00:: 1 1 -psychotherapeutic%3:01:00:: 1 1 -psychotherapy%1:09:00:: 1 2 -psychotic%5:00:00:insane:00 1 1 -pterygium%1:08:00:: 1 1 -ptolemaic_system%1:09:00:: 1 1 -pubescent%5:00:00:immature:01 1 3 -public%1:14:00:: 1 35 -public%1:14:01:: 2 4 -public%3:00:00:: 1 50 -public%5:00:00:common:02 2 22 -public_debate%1:10:00:: 1 1 -public_law%1:10:00:: 1 7 -public_lecture%1:10:00:: 1 1 -public_opinion%1:09:00:: 1 3 -public_opinion_poll%1:09:00:: 1 1 -public_press%1:10:00:: 1 1 -public_relations%1:10:00:: 1 4 -public_school%1:14:00:: 1 4 -public_square%1:15:00:: 1 2 -public_transit%1:06:00:: 1 1 -public_utility%1:14:00:: 1 1 -publication%1:04:01:: 2 5 -publication%1:10:00:: 1 6 -publicist%1:18:00:: 1 1 -publicity%1:10:00:: 1 4 -publicity_man%1:18:00:: 1 1 -publicize%2:32:00:: 1 3 -publicize%2:32:01:: 2 2 -publicized%3:00:00:: 1 1 -publicly%4:02:00:: 1 12 -publish%2:32:00:: 2 14 -publish%2:36:00:: 3 1 -publish%2:36:01:: 1 39 -published%3:00:00:: 1 3 -publisher%1:14:00:: 1 4 -publisher%1:18:00:: 2 3 -publishing%1:04:00:: 1 1 -pucker%1:25:00:: 1 1 -pucker%2:35:00:: 1 3 -puckered%5:00:00:rough:00 1 1 -puckered%5:00:00:wrinkled:00 2 1 -puckish%5:00:00:playful:00 1 1 -puerto_rican%1:18:00:: 1 1 -puerto_rico%1:15:00:: 1 17 -puff%2:29:00:: 3 1 -puff%2:34:00:: 2 1 -puff%2:34:01:: 1 2 -puff_out%2:30:00:: 1 1 -puff_up%2:30:00:: 1 1 -puff_up%2:30:01:: 2 1 -puffed%5:00:00:unhealthy:00 1 1 -pug-nosed%5:00:00:nosed:00 1 1 -puke%1:18:00:: 1 1 -pull%1:04:00:: 1 5 -pull%1:06:01:: 4 1 -pull%1:07:00:: 3 1 -pull%1:19:00:: 2 2 -pull%2:29:00:: 8 1 -pull%2:35:00:: 1 44 -pull%2:35:02:: 2 8 -pull%2:35:04:: 4 3 -pull%2:38:00:: 7 1 -pull%2:38:01:: 3 6 -pull%2:38:03:: 6 2 -pull%2:41:00:: 5 2 -pull_away%2:35:00:: 2 1 -pull_away%2:38:00:: 1 1 -pull_back%2:38:00:: 1 1 -pull_down%2:36:00:: 1 2 -pull_in%2:35:00:: 1 4 -pull_off%2:35:00:: 1 2 -pull_off%2:41:01:: 2 1 -pull_out%2:35:00:: 3 1 -pull_out%2:38:00:: 1 4 -pull_out%2:38:03:: 2 4 -pull_the_leg_of%2:32:00:: 1 2 -pull_together%2:35:00:: 1 1 -pull_up%2:38:02:: 1 6 -pull_up%2:38:03:: 2 1 -pulled%3:44:00:: 1 1 -pulley%1:06:00:: 1 3 -pulling%1:04:00:: 1 1 -pulmonary%3:01:00:: 1 5 -pulmonary_artery%1:08:00:: 1 21 -pulmonary_emphysema%1:26:00:: 1 1 -pulmonary_vein%1:08:00:: 1 9 -pulp%1:17:00:: 1 2 -pulp%1:20:00:: 2 1 -pulpit%1:06:00:: 1 2 -pulsate%2:38:00:: 1 1 -pulsating%5:00:00:rhythmical:00 1 2 -pulsation%1:11:00:: 1 1 -pulse%1:11:00:: 2 1 -pulse%1:11:01:: 1 1 -pulse%2:36:00:: 2 1 -pulse%2:38:00:: 1 1 -pulse_generator%1:06:00:: 1 1 -pulse_timing_circuit%1:06:00:: 1 1 -pulsed%5:00:00:periodic:00 1 1 -pulseless%5:00:00:dead:01 1 1 -pulsing%5:00:00:rhythmical:00 1 1 -pulverize%2:30:00:: 1 1 -pulverized%5:00:00:fine:00 1 1 -pummel%2:35:00:: 1 1 -pump%1:06:00:: 1 4 -pump%2:33:00:: 2 3 -pump%2:35:00:: 1 4 -pump%2:38:01:: 3 1 -pumped-up%5:00:00:tense:03 1 2 -pumps%1:06:00:: 1 3 -pun%1:10:00:: 1 1 -punch%1:04:00:: 1 1 -punch%2:35:00:: 1 3 -punch%2:35:04:: 2 1 -punch_in%2:32:00:: 1 1 -puncher%1:18:00:: 1 3 -punctuality%1:07:00:: 1 1 -punctuate%2:30:00:: 1 1 -punctuation_mark%1:10:00:: 1 1 -puncture%2:35:00:: 1 1 -punctured%5:00:00:cut:01 1 2 -pundit%1:18:00:: 1 1 -pungent%3:00:00:: 1 1 -pungently%4:02:01:: 1 1 -punish%2:41:00:: 1 10 -punishable%5:00:00:guilty:00 1 1 -punishment%1:04:00:: 1 12 -punitive%3:00:00:: 1 1 -punk%1:18:00:: 1 1 -punster%1:18:00:: 1 1 -punt%2:35:01:: 1 1 -puny%5:00:00:weak:00 1 1 -pup%1:05:00:: 1 1 -pup_tent%1:06:00:: 1 1 -pupate%2:29:00:: 1 2 -pupil%1:08:00:: 2 1 -pupil%1:18:00:: 1 8 -puppet%1:06:01:: 1 1 -puppy%1:05:00:: 1 2 -puppyish%5:00:00:young:00 1 1 -purchase%1:04:00:: 1 8 -purchase%1:19:01:: 3 1 -purchase%1:21:00:: 2 3 -purchase%2:40:00:: 1 34 -purchasing_agent%1:18:00:: 1 1 -purchasing_department%1:14:00:: 1 2 -pure%3:00:02:: 1 18 -pure%3:00:04:: 3 1 -pure%5:00:00:harmonious:00 4 1 -pure%5:00:00:theoretical:01 5 1 -pure%5:00:00:unmitigated:00 2 2 -pure_and_simple%5:00:00:plain:01 1 1 -purely%4:02:00:: 1 12 -purgatory%1:26:00:: 1 1 -purge%2:41:00:: 1 1 -purging%1:04:00:: 1 1 -purification%1:04:00:: 1 2 -purified%5:00:00:pure:02 1 5 -purify%2:30:00:: 1 2 -purify%2:30:01:: 2 1 -purity%1:26:00:: 1 3 -purity%1:26:02:: 2 1 -purl%2:32:00:: 2 2 -purl%2:36:02:: 3 1 -purl%2:38:00:: 1 2 -purloin%2:40:00:: 1 1 -purple%1:07:00:: 1 2 -purple%5:00:00:chromatic:00 1 9 -purple_heart%1:10:00:: 1 1 -purport%2:31:00:: 2 1 -purport%2:32:00:: 1 3 -purportedly%4:02:01:: 1 1 -purpose%1:07:00:: 2 26 -purpose%1:07:01:: 3 5 -purpose%1:09:00:: 1 75 -purposeful%3:00:00:: 1 2 -purposely%4:02:00:: 1 2 -purse%1:06:00:: 1 5 -purse%1:06:02:: 3 1 -purse%1:21:01:: 2 1 -purse%2:30:00:: 1 2 -pursuant%5:00:00:consistent:00 1 19 -pursue%2:35:00:: 3 6 -pursue%2:38:00:: 2 9 -pursue%2:41:00:: 1 11 -pursue%2:41:01:: 4 4 -pursued%1:18:00:: 1 1 -pursued%3:44:00:: 1 1 -pursuer%1:18:00:: 1 3 -pursuing%5:00:00:following:00 1 2 -pursuit%1:04:00:: 1 4 -pursuit%1:09:00:: 2 2 -purveyor%1:18:00:: 1 1 -push%1:04:00:: 1 4 -push%1:19:00:: 2 1 -push%2:32:00:: 3 6 -push%2:32:01:: 2 7 -push%2:38:00:: 1 56 -push%2:38:01:: 6 1 -push%2:38:02:: 5 3 -push%2:41:00:: 4 3 -push_around%2:37:00:: 1 1 -push_aside%2:32:00:: 2 1 -push_aside%2:38:00:: 1 3 -push_away%2:38:00:: 1 1 -push_back%2:35:00:: 1 3 -push_down%2:35:00:: 1 1 -push_through%2:30:00:: 1 1 -push_up%2:38:00:: 1 2 -pushing%1:04:00:: 1 1 -pushing%5:00:00:ambitious:00 1 1 -pushup%1:04:00:: 1 6 -pussy%1:08:00:: 1 4 -pussy_willow%1:20:01:: 1 1 -put%2:31:13:: 6 2 -put%2:32:00:: 3 28 -put%2:34:00:: 4 6 -put%2:35:00:: 1 138 -put%2:35:05:: 2 98 -put%2:40:00:: 5 3 -put_away%2:35:01:: 1 2 -put_away%2:40:00:: 2 1 -put_back%2:35:00:: 1 2 -put_down%2:35:00:: 2 2 -put_down%2:35:02:: 1 6 -put_down%2:38:00:: 3 1 -put_forward%2:32:00:: 1 1 -put_in%2:30:00:: 1 6 -put_in%2:32:00:: 4 2 -put_in%2:33:00:: 6 1 -put_in%2:35:00:: 5 1 -put_in%2:40:00:: 3 2 -put_in%2:42:00:: 2 2 -put_off%2:37:04:: 2 1 -put_off%2:42:00:: 1 1 -put_on%2:29:00:: 1 18 -put_on%2:30:00:: 2 3 -put_on%2:30:01:: 5 1 -put_on%2:36:01:: 4 1 -put_on%2:36:02:: 3 2 -put_out%2:29:01:: 4 1 -put_out%2:35:00:: 3 1 -put_out%2:36:00:: 2 1 -put_out%2:41:00:: 1 2 -put_out_feelers%2:31:00:: 1 1 -put_over%2:32:00:: 1 1 -put_through%2:30:00:: 1 2 -put_to_death%2:41:00:: 1 2 -put_to_sleep%2:35:02:: 1 1 -put_to_work%2:41:00:: 1 1 -put_together%2:36:00:: 1 4 -put_up%2:30:00:: 6 1 -put_up%2:31:00:: 4 2 -put_up%2:35:00:: 1 4 -put_up%2:36:00:: 3 3 -put_up%2:40:00:: 5 1 -put_up%2:41:01:: 2 3 -putout%1:04:00:: 1 1 -putt%2:35:00:: 1 3 -putter_around%2:35:00:: 1 2 -puzzle%2:31:00:: 1 6 -puzzle_out%2:31:00:: 1 2 -puzzle_over%2:31:00:: 1 3 -puzzled%5:00:00:perplexed:00 1 4 -puzzlement%1:09:00:: 1 1 -puzzling%5:00:00:incomprehensible:00 1 2 -puzzling%5:00:00:unclear:00 2 2 -pyknotic%3:01:00:: 1 2 -pyramid%2:40:00:: 1 1 -pyrex%1:27:00:: 1 5 -pyrometer%1:06:00:: 1 3 -python%1:05:00:: 1 3 -q_fever%1:26:00:: 1 1 -quack%1:18:00:: 1 14 -quack%2:32:00:: 1 1 -quack%5:00:00:unqualified:01 1 4 -quackery%1:04:00:: 1 6 -quadriceps%1:08:00:: 1 1 -quadruple%2:30:00:: 1 1 -quadrupling%1:22:00:: 1 1 -quail%2:38:00:: 1 1 -quaint%5:00:00:nonmodern:00 1 3 -quaint%5:00:00:strange:00 2 3 -quaint%5:00:01:strange:00 3 1 -quake%1:11:00:: 1 3 -quake%2:38:01:: 1 2 -quaker%1:18:00:: 1 1 -quakeress%1:18:00:: 1 1 -quaking%5:00:00:unsteady:00 1 1 -qualification%1:04:00:: 2 2 -qualification%1:07:00:: 1 8 -qualified%3:00:01:: 1 2 -qualified%3:00:02:: 2 1 -qualified%5:00:00:registered:00 3 1 -qualify%2:30:00:: 4 1 -qualify%2:30:02:: 3 2 -qualify%2:32:02:: 2 3 -qualify%2:42:00:: 1 14 -qualitative%3:00:00:: 1 5 -qualitatively%4:02:00:: 1 1 -quality%1:07:00:: 1 42 -quality%1:07:01:: 4 6 -quality%1:07:02:: 2 16 -quality%1:09:00:: 3 12 -quality_of_life%1:26:00:: 1 1 -qualm%1:12:00:: 1 1 -quantitative%3:00:00:: 1 5 -quantitatively%4:02:00:: 1 3 -quantity%1:03:00:: 1 15 -quantity%1:07:00:: 2 7 -quantum%1:03:00:: 1 4 -quarrel%1:10:00:: 1 2 -quarrel%2:32:00:: 1 11 -quarrelsome%5:00:00:argumentative:00 1 1 -quart%1:23:01:: 1 3 -quarter%1:15:00:: 2 4 -quarter%1:23:01:: 1 7 -quarter%5:00:00:fractional:00 1 1 -quarter-century%1:28:00:: 1 3 -quarter_mile%1:23:00:: 1 2 -quarterback%1:18:00:: 1 6 -quarterly%3:01:00:: 1 1 -quarters%1:06:00:: 1 6 -quartz%1:27:01:: 1 1 -quash%2:41:00:: 1 1 -quasi%5:00:00:similar:00 1 4 -quatrain%1:10:00:: 1 1 -quaver%1:11:00:: 1 1 -quavering%5:00:00:unsteady:00 1 3 -quaveringly%4:02:00:: 1 1 -queen%1:05:01:: 1 16 -queen%1:18:00:: 2 4 -queen%1:18:01:: 3 1 -queer%5:00:00:questionable:00 2 1 -queer%5:00:00:strange:00 1 9 -quell%2:30:00:: 1 3 -quench%2:34:00:: 1 1 -querulous%5:00:00:complaining(a):00 1 2 -querulously%4:02:00:: 1 1 -query%1:10:00:: 1 1 -query%2:32:00:: 1 3 -quest%1:09:00:: 1 1 -question%1:07:00:: 4 8 -question%1:10:00:: 1 81 -question%1:10:01:: 2 50 -question%1:10:03:: 3 9 -question%2:32:00:: 3 5 -question%2:32:01:: 1 17 -question%2:32:02:: 5 2 -question%2:32:03:: 2 14 -question%2:32:09:: 4 3 -questionable%3:00:00:: 1 2 -questioner%1:18:00:: 1 1 -questioning%1:10:00:: 1 6 -questioning%5:00:00:perplexed:00 1 1 -questioningly%4:02:00:: 1 1 -questionnaire%1:10:00:: 1 4 -quick%4:02:00:: 1 7 -quick%5:00:00:active:01 3 2 -quick%5:00:00:excitable:00 6 1 -quick%5:00:00:fast:01 1 20 -quick%5:00:00:hurried:00 2 6 -quick%5:00:00:intelligent:00 4 1 -quick%5:00:02:fast:01 5 1 -quick-frozen%5:00:00:preserved:02 1 1 -quick_march%1:04:00:: 1 1 -quicken%2:30:01:: 1 3 -quickening%1:22:00:: 1 1 -quicker%4:02:00:: 1 1 -quickie%1:04:00:: 1 1 -quickly%4:02:00:: 1 24 -quickly%4:02:02:: 2 16 -quickness%1:09:01:: 1 1 -quicksilver%5:00:00:changeable:00 1 1 -quickstep%2:38:00:: 1 1 -quiescent%5:00:00:inactive:07 1 1 -quiet%1:07:02:: 3 1 -quiet%1:26:00:: 1 1 -quiet%1:26:02:: 2 1 -quiet%2:37:00:: 2 1 -quiet%2:39:00:: 1 1 -quiet%3:00:01:: 2 10 -quiet%3:00:02:: 1 13 -quiet%4:02:00:: 1 1 -quiet%5:00:00:calm:00 6 1 -quiet%5:00:00:soft:04 4 1 -quiet%5:00:00:uneventful:00 5 1 -quiet%5:00:00:unostentatious:00 3 3 -quiet_down%2:39:00:: 1 1 -quietly%4:02:00:: 1 8 -quietly%4:02:01:: 2 7 -quietly%4:02:02:: 3 3 -quietness%1:07:00:: 1 2 -quietness%1:12:00:: 2 1 -quill%1:05:01:: 2 1 -quill%1:06:00:: 1 1 -quilt%1:06:00:: 1 1 -quilted%5:00:00:thick:01 1 1 -quintet%1:10:00:: 1 1 -quip%2:32:00:: 1 1 -quirk%1:07:00:: 1 1 -quirk%2:35:00:: 1 1 -quirt%1:06:00:: 1 7 -quit%2:38:00:: 3 1 -quit%2:41:00:: 2 1 -quit%2:42:04:: 1 13 -quite%4:02:01:: 2 47 -quite%4:02:02:: 1 57 -quite%4:02:03:: 3 6 -quiver%1:12:00:: 1 1 -quiver%2:38:00:: 1 8 -quiver%2:38:04:: 2 1 -quivering%5:00:00:unsteady:00 1 5 -quixotic%5:00:00:impractical:00 1 2 -quiz%1:10:00:: 1 2 -quota%1:23:00:: 1 1 -quotation%1:10:00:: 2 1 -quotation%1:10:01:: 1 1 -quote%2:32:00:: 1 30 -rabat%1:15:00:: 1 1 -rabbi%1:18:00:: 1 6 -rabbit%1:05:00:: 1 9 -rabbit_fever%1:26:00:: 1 1 -rabbit_punch%1:04:00:: 1 1 -rabbit_warren%1:15:00:: 1 1 -rabble%1:14:00:: 1 1 -race%1:11:00:: 2 6 -race%1:11:01:: 1 6 -race%1:14:00:: 3 4 -race%1:14:01:: 4 2 -race%2:33:00:: 2 3 -race%2:38:00:: 1 15 -race_problem%1:26:00:: 1 1 -racial%3:00:00:: 2 1 -racial%3:01:00:: 1 6 -racine%1:18:00:: 1 1 -racing%1:04:00:: 1 1 -racist%1:18:00:: 1 1 -rack%1:06:01:: 1 5 -rack%2:37:00:: 2 1 -rack%2:38:00:: 1 2 -rack_up%2:33:01:: 1 1 -racket%1:04:00:: 2 1 -racket%1:11:00:: 1 3 -racketeer%1:18:00:: 1 3 -racy%5:00:00:spirited:00 1 1 -radar%1:06:00:: 1 11 -radial%3:01:00:: 2 1 -radial%3:01:01:: 1 1 -radiance%1:07:00:: 2 1 -radiance%1:19:00:: 1 2 -radiant%5:00:00:bright:00 1 2 -radiate%2:30:00:: 2 1 -radiate%2:43:00:: 1 2 -radiation%1:04:00:: 2 15 -radiation%1:19:00:: 1 31 -radiator%1:17:00:: 1 1 -radical%1:18:01:: 3 1 -radical%1:27:00:: 1 4 -radical%1:27:02:: 2 3 -radical%5:00:00:basic:00 3 1 -radical%5:00:00:immoderate:00 1 5 -radical%5:00:00:new:00 2 4 -radicalism%1:09:00:: 1 2 -radically%4:02:00:: 1 6 -radio%1:06:00:: 3 6 -radio%1:06:01:: 2 8 -radio%1:10:00:: 1 9 -radio%2:32:00:: 1 2 -radio%3:01:00:: 1 1 -radio_brightness%1:07:00:: 1 2 -radio_emission%1:19:00:: 1 16 -radio_noise%1:11:00:: 1 2 -radio_observation%1:04:00:: 1 2 -radio_radiation%1:19:00:: 1 2 -radio_reflector%1:06:00:: 1 1 -radio_source%1:17:00:: 1 3 -radio_spectrum%1:19:00:: 1 1 -radio_telescope%1:06:00:: 1 1 -radio_transmitter%1:06:00:: 1 1 -radio_wave%1:19:00:: 1 2 -radioactive%3:00:00:: 1 3 -radioactivity%1:19:00:: 1 1 -radiochlorine%1:27:00:: 1 3 -radish%1:13:00:: 1 8 -radius%1:07:00:: 1 4 -radius%1:15:00:: 3 1 -radius%1:25:00:: 2 1 -radius_of_curvature%1:07:00:: 1 3 -raft%1:06:00:: 1 2 -rafter%1:06:00:: 1 1 -raftered%5:00:00:ceilinged:00 1 1 -rag%1:06:00:: 1 9 -ragamuffin%1:18:00:: 1 1 -rage%1:12:00:: 1 21 -rage%1:26:00:: 2 4 -rage%1:26:02:: 3 1 -rage%2:37:00:: 3 1 -rage%2:42:00:: 2 4 -rage%2:42:01:: 1 4 -ragged%5:00:00:tired:00 2 2 -ragged%5:00:00:uneven:00 3 2 -ragged%5:00:01:worn:00 1 5 -raid%1:04:00:: 1 3 -raid%2:38:00:: 2 2 -raid%2:41:00:: 1 2 -rail%1:06:02:: 1 5 -rail%1:06:03:: 2 3 -rail%2:32:00:: 1 2 -rail_fence%1:06:00:: 1 1 -railhead%1:06:00:: 1 1 -railing%1:06:00:: 1 3 -railroad%1:06:00:: 1 13 -railroad_siding%1:06:00:: 1 2 -railroad_station%1:06:00:: 1 5 -railroad_terminal%1:06:00:: 1 1 -railroad_train%1:06:00:: 1 1 -railway%1:06:00:: 1 1 -railway%1:06:01:: 2 1 -railway_station%1:06:00:: 1 1 -railway_system%1:06:00:: 1 1 -rain%1:19:00:: 1 25 -rain%1:27:00:: 2 5 -rain%2:43:00:: 1 13 -rain_cloud%1:17:00:: 1 1 -rain_dance%1:04:00:: 1 1 -rain_forest%1:17:00:: 1 1 -rainbow%1:17:00:: 1 2 -rainfall%1:19:00:: 1 1 -raise%1:07:00:: 1 3 -raise%2:30:00:: 13 1 -raise%2:30:01:: 1 33 -raise%2:30:02:: 12 1 -raise%2:32:00:: 3 21 -raise%2:36:01:: 7 7 -raise%2:36:02:: 9 2 -raise%2:36:03:: 5 10 -raise%2:36:06:: 11 1 -raise%2:37:08:: 10 1 -raise%2:38:00:: 2 26 -raise%2:38:02:: 8 4 -raise%2:40:00:: 4 14 -raise%2:41:00:: 6 7 -raise_hell%2:32:00:: 1 1 -raise_the_roof%2:37:00:: 1 1 -raise_up%2:35:00:: 1 2 -raised%3:00:00:: 1 4 -raised%5:00:01:adorned:00 2 1 -raising%1:11:00:: 1 1 -raising%5:00:00:increasing:00 1 2 -rajah%1:18:00:: 1 1 -rake%2:35:01:: 2 1 -rake%2:38:00:: 1 1 -rake_up%2:31:00:: 1 1 -rakishly%4:02:00:: 1 1 -rally%1:04:01:: 2 1 -rally%1:14:00:: 1 2 -rally%2:30:00:: 4 1 -rally%2:33:00:: 2 2 -rally%2:35:00:: 1 3 -rally%2:35:01:: 3 1 -rallying%1:04:00:: 1 1 -rallying%5:00:00:encouraging:00 1 1 -rallying_point%1:10:00:: 1 1 -ram%1:06:01:: 1 1 -ram%2:35:00:: 2 2 -ram%2:35:01:: 3 1 -ram%2:35:02:: 1 2 -ramble%2:42:00:: 1 2 -ramble_on%2:42:00:: 1 1 -ramification%1:04:00:: 1 1 -ramp%1:06:00:: 1 2 -rampant%5:00:00:uncontrolled:00 1 1 -rampart%1:06:00:: 1 2 -ramrod%1:06:00:: 1 4 -ran_into%2:38:01:: 1 3 -ranch%1:06:00:: 1 4 -ranch_house%1:06:00:: 1 3 -rancher%1:18:00:: 1 5 -rancor%1:12:00:: 1 1 -random%3:00:00:: 1 5 -random%5:00:00:unselected:00 2 2 -random-access_memory%1:06:00:: 1 1 -random_memory%1:06:00:: 1 1 -random_variable%1:09:00:: 1 11 -randomization%1:04:00:: 1 1 -randomly%4:02:00:: 1 2 -range%1:06:00:: 6 1 -range%1:07:00:: 1 45 -range%1:15:01:: 2 14 -range%1:15:02:: 4 7 -range%1:15:03:: 3 10 -range%1:17:00:: 5 1 -range%2:35:00:: 5 1 -range%2:38:00:: 2 2 -range%2:42:00:: 4 1 -range%2:42:01:: 1 34 -range%2:42:03:: 3 1 -ranging%3:44:00:: 1 2 -rangy%5:00:00:tall:00 1 1 -rank%1:14:00:: 1 20 -rank%1:14:01:: 3 3 -rank%1:14:02:: 5 1 -rank%1:26:00:: 2 6 -rank%1:26:01:: 4 2 -rank%2:31:00:: 2 1 -rank%2:31:13:: 1 2 -rank%5:00:00:fertile:00 1 1 -rank_and_file%1:14:00:: 1 2 -ranked%5:00:00:hierarchical:00 1 1 -ransack%2:35:02:: 2 3 -ransack%2:40:00:: 1 3 -ransom%1:04:01:: 2 1 -ransom%1:21:00:: 1 1 -ransom_money%1:21:00:: 1 1 -rap%1:10:00:: 1 1 -rap%2:35:00:: 1 5 -rape%2:41:00:: 1 4 -raped%5:00:00:destroyed:00 1 1 -rapid%5:00:00:fast:01 1 21 -rapid_transit%1:06:00:: 1 1 -rapidity%1:07:00:: 1 1 -rapidly%4:02:00:: 1 40 -rapist%1:18:00:: 1 1 -rapport%1:24:00:: 1 1 -rapture%1:26:00:: 1 2 -rare%5:00:00:infrequent:00 2 2 -rare%5:00:00:scarce:00 3 2 -rare%5:00:00:uncommon:00 1 6 -rare_earth%1:27:00:: 1 1 -rarely%4:02:00:: 1 16 -rarified%5:00:00:thin:02 1 1 -rascal%1:18:02:: 1 1 -rasp%1:10:00:: 1 1 -rasping%5:00:00:cacophonous:00 1 1 -rat%1:05:00:: 1 5 -ratable%5:00:00:taxable:00 1 1 -rate%1:07:00:: 3 1 -rate%1:21:00:: 2 39 -rate%1:28:00:: 1 68 -rate%2:31:00:: 1 9 -rate%2:31:01:: 3 1 -rate%2:42:01:: 2 2 -rate_of_attrition%1:28:00:: 1 1 -rate_of_growth%1:28:00:: 1 3 -rate_of_pay%1:21:00:: 1 2 -rather%4:02:01:: 3 6 -rather%4:02:02:: 1 59 -rather%4:02:04:: 2 53 -rathole%1:17:00:: 1 1 -ratify%2:41:00:: 1 5 -rating%1:04:00:: 2 3 -rating%1:09:00:: 1 7 -rating%1:26:00:: 3 1 -ratio%1:24:01:: 1 21 -ration%1:13:01:: 1 7 -ration%1:21:00:: 2 1 -rational%3:00:00:: 1 4 -rational%5:00:00:mental:00 2 1 -rationale%1:09:00:: 1 3 -rationalism%1:09:02:: 1 2 -rationalization%1:09:00:: 1 1 -rationalize%2:30:00:: 2 2 -rationalize%2:32:00:: 1 3 -rationally%4:02:00:: 1 2 -rationed%5:00:00:distributed:00 1 1 -rationing%1:04:00:: 1 2 -rattle%1:11:00:: 1 3 -rattle%2:38:00:: 2 3 -rattle%2:39:00:: 1 4 -rattler%1:05:00:: 1 2 -rattlesnake%1:05:00:: 1 6 -rattling%1:11:00:: 1 2 -raucous%5:00:00:cacophonous:00 1 2 -raucous%5:00:00:disorderly:00 2 1 -raucously%4:02:00:: 1 1 -ravage%1:11:00:: 1 1 -raving%5:00:00:insane:00 1 1 -raving_mad%5:00:00:insane:00 1 1 -raw%3:00:00:: 3 1 -raw%5:00:00:injured:00 2 2 -raw%5:00:00:overt:00 5 1 -raw%5:00:00:unanalyzed:00 7 1 -raw%5:00:00:unfair:00 6 1 -raw%5:00:00:unprocessed:00 1 7 -raw%5:00:00:untreated:00 4 1 -raw_deal%1:11:00:: 1 1 -raw_material%1:27:00:: 1 2 -raw_sienna%1:07:00:: 1 1 -raw_umber%1:27:00:: 1 1 -rawhide%1:27:00:: 1 1 -ray%1:19:00:: 1 11 -ray%1:20:00:: 2 1 -razor%1:06:00:: 1 5 -razor-sharp%5:00:00:distinct:00 1 1 -rbi%1:04:00:: 1 1 -re-argue%2:32:00:: 1 1 -re-assume%2:30:00:: 1 1 -re-create%2:36:00:: 1 1 -re-created%3:44:00:: 1 1 -re-creation%1:04:00:: 1 1 -re-emerge%2:30:00:: 1 2 -re-emphasise%2:32:00:: 1 1 -re-enter%2:38:00:: 1 2 -re-explore%2:31:00:: 1 1 -re-formed%5:00:00:organized:02 1 1 -re-incorporate%2:30:00:: 1 1 -re-introduction%1:10:00:: 1 1 -reach%1:04:00:: 3 2 -reach%1:07:00:: 2 2 -reach%1:09:00:: 4 1 -reach%1:15:00:: 1 2 -reach%2:32:00:: 4 22 -reach%2:35:00:: 3 29 -reach%2:38:00:: 2 39 -reach%2:38:01:: 1 103 -reach%2:38:06:: 7 9 -reach%2:40:00:: 8 1 -reach%2:41:00:: 5 18 -reach%2:42:00:: 6 13 -reach_into%2:42:00:: 1 3 -reach_out%2:35:00:: 1 4 -reach_out%2:42:00:: 2 3 -reacquaint%2:32:00:: 1 1 -react%2:30:00:: 3 2 -react%2:31:00:: 1 22 -react%2:41:00:: 2 2 -reactant%1:27:00:: 1 3 -reaction%1:04:00:: 3 7 -reaction%1:09:00:: 2 10 -reaction%1:22:00:: 1 38 -reactionary%1:18:00:: 1 5 -reactionary%5:00:00:right:03 1 3 -reactivate%2:30:00:: 1 3 -reactivity%1:09:00:: 1 9 -reactivity%1:26:00:: 2 1 -read%2:31:00:: 1 115 -read%2:31:01:: 3 15 -read%2:31:02:: 5 5 -read%2:31:05:: 7 4 -read%2:31:06:: 4 5 -read%2:31:09:: 6 5 -read%2:32:02:: 8 3 -read%2:42:00:: 2 17 -read%3:00:00:: 1 1 -readable%5:00:00:legible:00 1 1 -readapt%2:30:00:: 1 1 -reader%1:18:00:: 1 19 -reader%1:18:02:: 2 9 -reader%1:18:03:: 3 2 -readily%4:02:00:: 1 19 -readiness%1:07:01:: 2 2 -readiness%1:09:00:: 3 1 -readiness%1:26:00:: 1 3 -reading%1:09:00:: 1 22 -reading%1:09:01:: 5 1 -reading%1:09:02:: 3 3 -reading%1:10:00:: 4 2 -reading%1:10:01:: 2 4 -reading_room%1:06:00:: 1 1 -readjust%2:30:00:: 1 2 -readjustment%1:04:00:: 1 1 -ready%1:26:00:: 1 2 -ready%2:30:00:: 2 1 -ready%2:36:00:: 1 1 -ready%3:00:00:: 1 58 -ready%5:00:00:prepared:00 4 1 -ready%5:00:00:willing:00 3 2 -ready%5:00:01:available:00 2 4 -ready-made%3:00:00:: 1 1 -reaffirm%2:32:00:: 1 6 -reagent%1:27:00:: 1 3 -real%3:00:00:: 1 54 -real%3:00:02:: 2 14 -real%4:02:01:: 1 8 -real%5:00:00:concrete:00 5 3 -real%5:00:00:genuine:00 3 5 -real%5:00:00:serious:00 4 4 -real%5:00:00:true:00 6 1 -real_estate%1:21:00:: 1 5 -real_estate_broker%1:18:00:: 1 1 -real_life%1:09:00:: 1 5 -real_property%1:21:00:: 1 2 -real_thing%1:07:00:: 1 2 -realign%2:30:00:: 1 1 -realism%1:06:00:: 1 8 -realism%1:07:00:: 2 3 -realism%1:09:00:: 4 1 -realism%1:26:00:: 3 2 -realist%1:18:00:: 1 1 -realistic%3:00:00:: 1 10 -realistic%5:00:00:representational:00 2 1 -realistically%4:02:01:: 1 5 -reality%1:09:00:: 1 21 -reality%1:26:01:: 2 14 -reality%1:26:02:: 3 4 -realization%1:04:00:: 2 3 -realization%1:09:00:: 1 3 -realize%2:31:00:: 2 37 -realize%2:31:01:: 1 48 -realize%2:36:00:: 3 8 -realize%2:40:01:: 4 2 -really%4:02:03:: 1 61 -really%4:02:04:: 2 42 -realm%1:26:01:: 1 6 -reap%2:35:00:: 1 3 -reap%2:40:00:: 2 1 -reappear%2:30:00:: 1 8 -reappearance%1:11:00:: 1 1 -rear%1:14:00:: 1 16 -rear%1:15:00:: 2 6 -rear%1:15:01:: 3 4 -rear%2:38:00:: 1 7 -rear%2:41:00:: 2 2 -rear%2:42:00:: 3 1 -rear%5:00:00:back(a):00 1 3 -rear_back%2:38:00:: 1 1 -rear_end%1:08:00:: 1 1 -rear_window%1:06:00:: 1 3 -rearguard%1:14:00:: 1 1 -rearing%1:04:00:: 2 1 -rearing%1:07:00:: 1 1 -rearrange%2:30:00:: 1 4 -rearward%1:15:00:: 1 1 -rearward%4:02:00:: 1 4 -rearward%5:00:00:back(a):00 2 1 -reason%1:09:00:: 3 3 -reason%1:10:00:: 5 1 -reason%1:10:01:: 2 29 -reason%1:16:00:: 1 76 -reason%1:26:00:: 4 1 -reason%2:31:00:: 3 1 -reason%2:31:01:: 1 3 -reason%2:32:00:: 2 2 -reasonable%3:00:00:: 1 16 -reasonable%5:00:00:moderate:00 2 14 -reasonably%4:02:00:: 1 11 -reasonably%4:02:01:: 2 1 -reasoning%1:09:00:: 1 5 -reassail%2:33:00:: 1 1 -reassemble%2:36:00:: 1 3 -reassert%2:32:00:: 1 2 -reassign%2:41:00:: 1 1 -reassurance%1:04:00:: 1 4 -reassure%2:32:00:: 2 1 -reassure%2:37:00:: 1 5 -reassured%5:00:00:confident:00 1 1 -reassuring%3:00:00:: 1 2 -reassuringly%4:02:00:: 1 1 -reawaken%2:29:00:: 1 1 -reb%1:18:00:: 1 9 -rebel%1:18:00:: 2 3 -rebel%1:18:01:: 3 1 -rebel%1:18:02:: 1 10 -rebel%2:41:00:: 1 5 -rebel%2:41:01:: 2 2 -rebel%5:00:00:southern:02 1 2 -rebelling%5:00:00:disloyal:00 1 1 -rebellion%1:04:00:: 2 5 -rebellion%1:04:01:: 1 5 -rebellious%5:00:00:discontented:00 2 1 -rebellious%5:00:00:insubordinate:00 1 1 -rebelliously%4:02:00:: 1 1 -reborn%5:00:00:regenerate:00 1 1 -rebound%2:38:00:: 1 1 -rebuff%1:04:00:: 1 1 -rebuff%2:32:00:: 1 3 -rebuff%2:33:00:: 2 1 -rebuild%2:36:00:: 1 8 -rebuilding%1:04:00:: 1 2 -rebuilt%5:00:00:restored:00 1 1 -rebuke%2:32:00:: 1 3 -rebut%2:31:00:: 2 1 -rebut%2:32:00:: 1 7 -recalculate%2:31:00:: 1 1 -recall%2:31:00:: 1 47 -recall%2:31:06:: 5 1 -recall%2:32:00:: 2 4 -recall%2:32:02:: 4 1 -recall%2:42:00:: 3 1 -recapitulate%2:32:00:: 1 1 -recapture%2:36:00:: 2 1 -recapture%2:37:00:: 1 3 -recede%2:38:00:: 2 3 -recede%2:38:01:: 1 4 -receding%5:00:00:retreating:00 1 1 -receipt%1:04:00:: 1 3 -receipt%1:10:00:: 2 2 -receipts%1:21:00:: 1 2 -receive%2:30:00:: 8 2 -receive%2:30:01:: 2 27 -receive%2:31:00:: 6 8 -receive%2:32:00:: 7 2 -receive%2:35:00:: 5 16 -receive%2:39:00:: 3 25 -receive%2:39:03:: 4 22 -receive%2:40:00:: 1 122 -receive%2:42:00:: 9 1 -receiver%1:06:00:: 1 4 -receiver%1:06:01:: 3 3 -receiver%1:18:00:: 4 1 -receiver%1:18:01:: 2 3 -receiving%1:04:00:: 1 1 -receiving_system%1:06:00:: 1 1 -recent%5:00:00:modern:00 3 4 -recent%5:00:00:new:00 1 36 -recent%5:00:00:past:00 2 9 -recently%4:02:00:: 1 31 -recently%4:02:01:: 2 8 -receptacle%1:06:00:: 1 1 -reception%1:04:00:: 4 1 -reception%1:10:00:: 3 3 -reception%1:10:01:: 1 4 -reception%1:14:00:: 2 3 -reception_room%1:06:00:: 1 1 -receptionist%1:18:00:: 1 6 -receptive%5:00:00:pervious:00 1 1 -recess%2:35:01:: 1 2 -recession%1:26:00:: 1 1 -recipient%1:18:00:: 1 2 -reciprocal%3:00:00:: 1 7 -recital%1:10:01:: 1 1 -recital%1:10:03:: 2 1 -recite%2:32:00:: 2 2 -recite%2:32:02:: 1 2 -reckless%5:00:00:bold:00 1 2 -recklessly%4:02:00:: 1 1 -recklessness%1:07:00:: 1 2 -reckon%2:31:00:: 3 1 -reckon%2:31:01:: 4 1 -reckon%2:31:02:: 1 5 -reckon%2:31:03:: 2 3 -reckoning%1:09:00:: 1 1 -reclaim%2:40:00:: 1 2 -reclaimed%5:00:00:saved:00 1 2 -reclassification%1:04:00:: 1 1 -reclassify%2:31:00:: 1 2 -reclining%1:04:00:: 1 1 -reclining%5:00:01:unerect:00 1 1 -recluse%1:18:00:: 1 1 -recognition%1:09:00:: 2 8 -recognition%1:09:02:: 4 1 -recognition%1:10:00:: 3 1 -recognition%1:26:00:: 1 10 -recognizable%5:00:00:identifiable:00 2 2 -recognizable%5:00:00:perceptible:00 1 2 -recognize%2:31:00:: 4 11 -recognize%2:31:01:: 2 32 -recognize%2:31:02:: 1 33 -recognize%2:32:00:: 7 2 -recognize%2:32:01:: 6 2 -recognize%2:39:01:: 3 25 -recognize%2:41:00:: 5 2 -recognized%5:00:00:acknowledged:00 1 3 -recoil%2:38:00:: 1 2 -recollect%2:31:00:: 1 4 -recollection%1:09:00:: 1 4 -recollection%1:09:01:: 2 3 -recommend%2:32:00:: 2 6 -recommend%2:32:01:: 1 50 -recommendation%1:10:00:: 1 25 -recommendation%1:10:02:: 2 1 -recommended%5:00:00:advisable:00 1 3 -reconcile%2:30:00:: 2 2 -reconcile%2:30:01:: 1 2 -reconcile%2:31:00:: 4 1 -reconcile%2:32:00:: 3 1 -reconciling%5:00:00:adaptive:00 1 1 -recondition%2:30:00:: 1 1 -reconnoiter%2:39:00:: 1 1 -reconsider%2:31:00:: 1 7 -reconsideration%1:10:00:: 1 1 -reconstruct%2:30:01:: 3 1 -reconstruct%2:31:00:: 1 3 -reconstruct%2:36:00:: 2 1 -reconstructed%3:00:00:: 1 1 -reconstruction%1:04:00:: 2 1 -reconstruction%1:28:00:: 1 2 -reconvene%2:38:00:: 1 2 -reconvert%2:30:00:: 1 1 -recopy%2:36:00:: 1 1 -record%1:04:00:: 6 3 -record%1:04:01:: 4 6 -record%1:06:00:: 2 23 -record%1:10:02:: 5 3 -record%1:10:03:: 1 26 -record%1:21:00:: 7 1 -record%1:23:00:: 3 7 -record%2:32:00:: 1 34 -record%2:32:01:: 2 9 -record%2:32:03:: 3 4 -record%5:00:00:best:00 1 5 -record_player%1:06:00:: 1 1 -recordbook%1:10:00:: 1 1 -recorded%3:00:00:: 1 2 -recorder%1:06:01:: 1 2 -recording%1:04:00:: 2 5 -recording%1:06:00:: 1 14 -recording_studio%1:06:00:: 1 1 -recount%2:32:00:: 1 10 -recoup%2:40:02:: 1 1 -recourse%1:04:00:: 1 2 -recover%2:29:00:: 2 4 -recover%2:30:00:: 3 3 -recover%2:40:00:: 1 9 -recoverable%3:00:00:: 1 1 -recovery%1:04:00:: 3 2 -recovery%1:11:00:: 1 3 -recovery%1:22:00:: 2 2 -recreate%2:29:02:: 1 4 -recreation%1:04:00:: 1 23 -recreational%3:01:00:: 1 1 -recreational%5:00:00:nonprofessional:00 2 1 -recreational_facility%1:06:00:: 1 1 -recrimination%1:10:00:: 1 2 -recruit%1:18:00:: 2 2 -recruit%1:18:01:: 1 2 -recruit%2:33:00:: 3 2 -recruit%2:40:00:: 2 3 -recruit%2:41:01:: 1 7 -recruitment%1:04:00:: 1 6 -rectangle%1:25:00:: 1 1 -rectangular%5:00:00:angular:00 1 1 -rectangular%5:00:00:perpendicular:00 2 1 -rectifier%1:06:00:: 1 2 -rectitude%1:07:00:: 1 1 -recuperation%1:22:00:: 1 1 -recur%2:30:00:: 1 5 -recur%2:32:00:: 2 1 -recurrence%1:11:00:: 1 1 -recurrent%5:00:00:continual:00 1 2 -red%1:07:00:: 1 9 -red%1:17:00:: 2 7 -red%1:18:00:: 3 1 -red%5:00:00:bloody:00 5 3 -red%5:00:00:colored:00 4 7 -red%5:00:01:chromatic:00 1 43 -red%5:00:02:bloody:00 3 8 -red%5:00:02:colored:00 2 8 -red-bellied_snake%1:05:00:: 1 1 -red-faced%5:00:00:colored:00 1 2 -red-rimmed%5:00:00:rimmed:00 1 1 -red-tailed_hawk%1:05:00:: 1 1 -red_blood_cell%1:08:00:: 1 5 -red_china%1:15:00:: 1 1 -red_clay%1:27:00:: 1 1 -red_herring%1:04:00:: 1 1 -red_region%1:15:00:: 1 1 -red_river%1:17:00:: 1 10 -red_scare%1:26:00:: 1 1 -redcoat%1:18:00:: 1 12 -redden%2:29:00:: 1 1 -reddish%5:00:00:colored:00 1 2 -redecorate%2:36:00:: 1 1 -rededicate%2:32:00:: 1 1 -redeem%2:41:04:: 1 3 -redefine%2:42:00:: 1 1 -redefinition%1:10:00:: 1 2 -redemption%1:04:01:: 1 1 -redeposition%1:22:00:: 1 2 -redevelopment%1:04:00:: 1 1 -redheaded%5:00:00:blond:00 1 1 -redheader%1:18:00:: 1 1 -redirect%2:38:00:: 1 1 -rediscover%2:39:00:: 1 2 -rediscovery%1:04:00:: 1 1 -redistribute%2:35:00:: 1 2 -redly%4:02:00:: 1 1 -redouble%2:30:00:: 1 2 -redoubled%5:00:00:increased:00 1 1 -redoubtable%5:00:00:alarming:00 1 2 -redress%1:21:00:: 1 1 -redress%2:41:00:: 1 1 -reduce%2:30:00:: 1 102 -reduce%2:30:01:: 11 1 -reduce%2:30:03:: 10 1 -reduce%2:30:04:: 9 1 -reduce%2:30:05:: 7 2 -reduce%2:30:06:: 2 9 -reduce%2:30:11:: 6 3 -reduce%2:37:00:: 5 3 -reduce%2:40:00:: 8 1 -reduce%2:40:04:: 4 3 -reduce%2:41:00:: 3 5 -reduced%3:00:04:: 1 6 -reduced%5:00:00:low:02 2 1 -reducing%1:22:00:: 1 1 -reduction%1:04:00:: 1 16 -reduction%1:04:02:: 3 1 -reduction%1:22:00:: 2 3 -redundancy%1:07:00:: 2 1 -redundancy%1:10:00:: 1 1 -redundant%5:00:00:unnecessary:00 1 2 -reecho%2:39:01:: 1 1 -reef%1:17:00:: 1 1 -reek%2:29:00:: 3 1 -reek%2:39:00:: 2 1 -reek%2:39:13:: 1 1 -reeking%5:00:00:wet:01 1 1 -reel%1:06:02:: 1 3 -reel%2:38:00:: 1 2 -reel%2:38:03:: 2 1 -reelect%2:41:00:: 1 3 -reelection%1:04:00:: 1 1 -reenact%2:36:01:: 1 2 -reenact%2:41:00:: 2 1 -reenforce%2:30:00:: 1 1 -reenforcement%1:10:00:: 1 1 -reestablish%2:41:00:: 1 1 -reevaluate%2:31:00:: 1 1 -reevaluation%1:09:00:: 1 1 -reexamine%2:31:00:: 1 3 -refashion%2:36:01:: 1 1 -refectory%1:06:00:: 1 1 -refer%2:31:00:: 3 12 -refer%2:32:00:: 6 3 -refer%2:32:01:: 1 21 -refer%2:32:12:: 5 4 -refer%2:38:00:: 4 6 -refer%2:42:00:: 2 18 -referee%1:18:00:: 1 1 -reference%1:04:00:: 7 2 -reference%1:09:00:: 6 3 -reference%1:10:01:: 5 4 -reference%1:10:02:: 1 9 -reference%1:10:03:: 2 6 -reference%1:10:04:: 4 5 -reference%1:10:06:: 3 5 -reference_to%1:24:00:: 1 2 -referendum%1:04:00:: 1 1 -refill%2:30:00:: 1 1 -refinance%2:40:00:: 1 1 -refine%2:30:01:: 1 2 -refine%2:30:06:: 2 1 -refined%3:00:01:: 1 2 -refined%3:00:02:: 2 1 -refinement%1:11:00:: 2 1 -refinement%1:26:00:: 1 1 -reflect%2:31:00:: 2 18 -reflect%2:39:00:: 3 17 -reflect%2:39:01:: 1 41 -reflect%2:43:00:: 4 5 -reflectance%1:23:00:: 1 1 -reflection%1:06:00:: 5 2 -reflection%1:07:02:: 4 2 -reflection%1:09:00:: 1 8 -reflection%1:10:01:: 3 4 -reflection%1:19:00:: 2 4 -reflective%5:00:00:thoughtful:00 1 3 -reflectively%4:02:00:: 1 1 -reflector%1:06:00:: 1 6 -reflector%1:06:01:: 2 1 -reflex%1:04:00:: 1 5 -reflexly%4:02:00:: 1 2 -refocusing%1:04:00:: 1 1 -reform%1:04:00:: 1 3 -reform%1:04:01:: 2 1 -reform%2:30:00:: 1 1 -reform_movement%1:14:00:: 1 1 -reformed%5:00:00:unorthodox:00 1 1 -refractory%5:00:00:uncooperative:00 1 1 -refrain%1:10:00:: 1 3 -refrain%2:42:00:: 1 1 -refrain_from%2:41:00:: 1 5 -refreshed%5:00:00:rested:00 1 3 -refreshing%5:00:00:invigorating:00 1 2 -refrigerated%5:00:00:cold:01 1 1 -refrigeration%1:22:00:: 1 2 -refrigerator%1:06:00:: 1 2 -refuel%2:40:00:: 2 1 -refuel%2:40:01:: 1 2 -refueling%1:04:00:: 1 1 -refugee%1:18:00:: 1 5 -refund%1:04:00:: 2 1 -refund%1:21:00:: 1 7 -refund%2:40:00:: 1 1 -refurbish%2:30:00:: 1 1 -refusal%1:10:00:: 2 1 -refusal%1:10:01:: 1 4 -refuse%1:27:00:: 1 1 -refuse%2:32:00:: 1 47 -refuse%2:40:00:: 2 13 -refuse%2:40:01:: 4 2 -refuse%2:42:00:: 3 5 -refute%2:31:00:: 2 1 -refute%2:32:00:: 1 2 -regain%2:40:00:: 1 5 -regal%5:00:00:noble:02 1 1 -regale%2:34:00:: 1 1 -regard%1:04:00:: 4 1 -regard%1:09:00:: 1 4 -regard%1:09:01:: 2 2 -regard%1:10:00:: 3 1 -regard%2:31:00:: 1 33 -regard%2:39:00:: 2 19 -regard%2:42:00:: 3 12 -regard_as%2:31:00:: 1 31 -regard_to%1:24:00:: 1 17 -regardant%5:00:00:backward:01 1 1 -regarding%5:00:00:related:02 1 2 -regardless%4:02:00:: 1 12 -regenerating%3:44:00:: 1 1 -regime%1:09:00:: 2 1 -regime%1:14:00:: 1 2 -regiment%1:14:00:: 1 145 -regiment%2:41:02:: 1 1 -regimental%3:01:00:: 1 7 -regimentation%1:04:00:: 1 1 -region%1:08:00:: 2 5 -region%1:15:00:: 1 65 -region%1:15:01:: 3 2 -regional%3:01:00:: 1 14 -regional%5:00:00:territorial:00 2 4 -regionally%4:02:00:: 1 1 -register%1:07:00:: 2 1 -register%1:10:00:: 1 2 -register%2:32:00:: 5 2 -register%2:32:03:: 2 6 -register%2:39:00:: 4 3 -register%2:41:00:: 1 7 -register%2:41:01:: 3 4 -register%2:41:05:: 6 1 -register_language%1:10:00:: 1 1 -registrant%1:18:00:: 1 8 -registration%1:04:00:: 1 7 -registry%1:10:00:: 1 1 -regius_professor%1:18:00:: 1 1 -regression_equation%1:09:00:: 1 1 -regression_line%1:09:00:: 1 2 -regret%1:12:00:: 1 5 -regret%2:32:00:: 3 1 -regret%2:32:01:: 5 1 -regret%2:32:02:: 4 1 -regret%2:37:00:: 1 8 -regret%2:37:01:: 2 2 -regretfully%4:02:00:: 1 1 -regroup%2:41:00:: 1 1 -regular%1:18:00:: 1 1 -regular%3:00:00:: 1 17 -regular%5:00:00:frequent:00 7 1 -regular%5:00:00:scheduled:00 4 2 -regular%5:00:00:standard:02 3 5 -regular%5:00:00:steady:00 6 1 -regular%5:00:00:typical:00 2 8 -regular%5:00:00:usual:00 5 2 -regular_army%1:14:00:: 1 3 -regularity%1:07:00:: 2 1 -regularity%1:07:04:: 1 1 -regularly%4:02:00:: 1 6 -regulate%2:30:00:: 1 6 -regulate%2:31:00:: 3 1 -regulate%2:41:01:: 2 4 -regulated%3:00:00:: 1 1 -regulation%1:09:00:: 2 2 -regulation%1:10:00:: 1 10 -regulation%5:00:00:standard:02 1 1 -regulator%1:06:00:: 1 1 -regulatory%5:00:00:restrictive:00 1 1 -rehabilitate%2:29:00:: 2 1 -rehabilitate%2:41:00:: 1 1 -rehabilitation%1:04:00:: 2 2 -rehabilitation%1:04:01:: 1 7 -rehabilitation_program%1:09:00:: 1 2 -reharmonization%1:10:00:: 1 1 -rehash%2:34:00:: 1 1 -rehearing%1:04:00:: 1 1 -rehearsal%1:04:01:: 1 6 -rehearse%2:36:00:: 1 5 -reich%1:14:00:: 1 1 -reign%1:28:01:: 1 1 -reign%2:41:00:: 1 3 -reign%2:42:00:: 2 1 -reimburse%2:40:00:: 1 1 -reimbursement%1:21:00:: 1 1 -rein%1:06:00:: 1 5 -rein%2:41:00:: 1 1 -rein_in%2:38:00:: 1 2 -reinforce%2:30:00:: 1 11 -reinforce%2:32:00:: 2 1 -reinforced_concrete%1:27:00:: 1 2 -reinforcement%1:04:01:: 1 4 -reinstall%2:35:00:: 1 1 -reinstate%2:41:00:: 1 1 -reinterpret%2:32:00:: 1 2 -reissue%1:10:00:: 1 1 -reissue%2:36:00:: 1 1 -reiterate%2:32:00:: 1 5 -reject%2:31:00:: 1 19 -reject%2:32:00:: 3 2 -reject%2:32:02:: 4 1 -reject%2:40:00:: 2 15 -rejected%5:00:00:forsaken:00 1 2 -rejection%1:04:00:: 1 5 -rejection%1:26:00:: 2 1 -rejoice%2:32:00:: 2 2 -rejoice%2:37:00:: 1 4 -rejoice%2:37:02:: 3 1 -rejoicing%1:12:00:: 1 2 -rejoicing%5:00:00:elated:00 1 1 -rejoin%2:32:00:: 2 1 -rejoin%2:41:00:: 1 3 -relace%2:35:00:: 1 1 -relate%2:31:00:: 1 15 -relate%2:32:00:: 3 7 -relate%2:41:00:: 5 2 -relate%2:41:01:: 6 1 -relate%2:42:00:: 2 9 -relate%2:42:01:: 4 4 -related%3:00:01:: 2 4 -related%3:00:02:: 1 20 -related%5:00:00:relevant:00 4 1 -related%5:00:00:similar:00 3 1 -related_to%3:00:00:: 1 12 -relatedness%1:24:00:: 1 1 -relation%1:03:00:: 1 23 -relation%1:04:01:: 2 2 -relation_to%1:24:00:: 1 3 -relations%1:24:00:: 1 14 -relationship%1:24:00:: 1 25 -relationship%1:26:00:: 2 9 -relationship%1:26:01:: 3 8 -relative%1:05:00:: 2 2 -relative%1:18:00:: 1 8 -relative%3:00:00:: 1 25 -relative%5:00:00:proportionate:00 2 1 -relative_frequency%1:24:00:: 1 2 -relative_humidity%1:24:00:: 1 1 -relatively%4:02:00:: 1 36 -relativistic%3:01:00:: 1 1 -relax%2:29:00:: 1 17 -relax%2:29:01:: 4 1 -relax%2:30:01:: 2 5 -relax%2:30:02:: 3 3 -relaxation_time%1:28:00:: 1 2 -relaxed%3:00:00:: 1 2 -relaxing%5:00:00:quiet:02 1 1 -relay%1:04:00:: 1 1 -relay%2:32:00:: 1 2 -relearn%2:31:00:: 1 1 -release%1:04:01:: 2 3 -release%1:04:02:: 5 2 -release%1:06:00:: 1 6 -release%1:10:00:: 4 2 -release%1:11:00:: 6 1 -release%1:22:00:: 3 2 -release%2:29:00:: 6 3 -release%2:29:01:: 5 3 -release%2:32:00:: 4 3 -release%2:35:00:: 1 12 -release%2:35:01:: 3 4 -release%2:41:00:: 2 6 -release%2:41:01:: 7 1 -released%5:00:00:free:00 1 2 -relegate%2:41:00:: 2 2 -relegate%2:41:02:: 1 4 -relent%2:42:00:: 1 3 -relentless%5:00:00:continual:00 2 1 -relentless%5:00:00:implacable:00 1 2 -relentlessly%4:02:00:: 1 3 -relentlessness%1:07:00:: 1 2 -relevance%1:24:00:: 1 7 -relevancy%1:24:00:: 1 2 -relevant%3:00:00:: 1 11 -reliability%1:07:00:: 1 2 -reliable%3:00:00:: 1 9 -reliable%5:00:01:trustworthy:00 3 1 -reliable%5:00:02:trustworthy:00 2 1 -reliably%4:02:00:: 1 1 -reliance%1:09:00:: 1 2 -reliance%1:26:00:: 2 1 -relic%1:06:00:: 1 2 -relief%1:04:00:: 9 1 -relief%1:04:01:: 10 1 -relief%1:04:02:: 6 3 -relief%1:11:00:: 8 1 -relief%1:12:00:: 1 12 -relief%1:18:00:: 5 3 -relief%1:21:00:: 3 5 -relief%1:25:00:: 4 3 -relief%1:26:00:: 2 8 -relief%1:28:00:: 7 1 -relieve%2:29:00:: 1 9 -relieve%2:29:02:: 7 1 -relieve%2:32:00:: 6 1 -relieve%2:37:00:: 4 2 -relieve%2:41:00:: 5 1 -relieve%2:41:01:: 2 4 -relieve%2:41:02:: 3 2 -relieve_oneself%2:29:00:: 1 1 -relieved%5:00:00:mitigated:00 1 5 -religion%1:09:00:: 1 63 -religion%1:14:00:: 2 9 -religionist%1:18:00:: 1 1 -religious%3:00:00:: 3 3 -religious%3:01:00:: 1 65 -religious%5:00:00:sacred:00 2 10 -religious_belief%1:09:00:: 1 6 -religious_order%1:14:00:: 1 1 -religiously%4:02:00:: 1 3 -religiousness%1:07:00:: 1 1 -relinquish%2:33:02:: 2 1 -relinquish%2:40:01:: 1 9 -relish%1:12:02:: 1 2 -relish%2:37:00:: 1 2 -relive%2:31:00:: 1 1 -reliving%1:09:00:: 1 3 -reload%2:35:01:: 1 2 -reluctant%5:00:00:disinclined:00 2 2 -reluctant%5:00:00:uneager:00 3 1 -reluctant%5:00:00:unwilling:00 1 3 -reluctantly%4:02:00:: 1 5 -rely%2:31:11:: 1 1 -rely_on%2:31:01:: 1 15 -rely_upon%2:31:01:: 1 3 -relyric%2:36:00:: 1 1 -remain%2:30:00:: 1 128 -remain%2:42:01:: 4 9 -remain%2:42:03:: 2 38 -remain%2:42:05:: 3 34 -remain_firm%2:42:00:: 1 2 -remainder%1:24:00:: 1 8 -remaining%5:00:00:other:00 1 5 -remaining%5:00:00:unexhausted:00 2 3 -remains%1:17:00:: 1 1 -remake%2:36:00:: 1 2 -remand%2:32:00:: 1 3 -remark%1:10:00:: 1 32 -remark%2:32:00:: 1 41 -remarkable%5:00:00:extraordinary:00 1 13 -remarkable%5:00:00:significant:00 2 2 -remarkably%4:02:00:: 1 9 -remarry%2:41:00:: 1 1 -remedial%5:00:00:bettering:00 1 1 -remedy%1:04:00:: 1 2 -remedy%1:06:00:: 2 1 -remedy%2:30:00:: 1 3 -remember%2:31:00:: 1 106 -remember%2:31:01:: 2 53 -remember%2:31:02:: 3 23 -remember%2:40:00:: 4 2 -remembered%3:44:00:: 1 2 -remembrance%1:09:00:: 1 3 -remind%2:31:00:: 1 22 -remind%2:31:01:: 3 1 -remind%2:32:00:: 2 13 -reminder%1:09:00:: 2 3 -reminder%1:10:00:: 1 3 -reminisce%2:31:00:: 1 3 -reminiscent_of%5:00:00:mindful:00 1 1 -remission%1:11:00:: 1 1 -remit%2:40:00:: 1 1 -remnant%1:24:00:: 1 3 -remodel%2:30:00:: 1 3 -remonstrance%1:10:00:: 1 2 -remonstrate%2:32:00:: 1 2 -remorse%1:12:00:: 1 1 -remorseful%5:00:00:penitent:00 1 1 -remorseless%5:00:00:merciless:00 1 1 -remote%5:00:00:inaccessible:00 4 1 -remote%5:00:00:unlikely:00 2 4 -remote%5:00:01:far:00 1 5 -remote%5:00:02:far:00 3 3 -remount%2:38:00:: 1 1 -removal%1:04:00:: 1 9 -removal_firm%1:14:00:: 1 1 -remove%2:30:00:: 1 86 -remove%2:30:01:: 6 2 -remove%2:38:00:: 5 3 -remove%2:40:00:: 3 4 -remove%2:41:00:: 2 4 -remove%2:41:02:: 4 3 -removed%5:00:00:separate:00 1 3 -removed%5:00:01:distant:02 3 1 -removed%5:00:01:far:00 2 2 -remuda%1:14:00:: 1 1 -remuneration%1:21:00:: 1 1 -remunerative%5:00:00:paid:00 1 1 -renaissance%1:04:00:: 2 1 -renaissance%1:28:00:: 1 5 -renal_artery%1:08:00:: 1 1 -rename%2:32:00:: 1 2 -rend%2:35:00:: 1 2 -render%2:30:00:: 1 12 -render%2:32:01:: 5 1 -render%2:36:00:: 4 2 -render%2:36:03:: 3 4 -render%2:40:02:: 2 10 -rendering%1:04:01:: 3 1 -rendering%1:09:00:: 2 1 -rendering%1:10:01:: 1 1 -rendezvous%1:04:00:: 1 3 -rendezvous%1:15:00:: 2 1 -rending%5:00:00:cacophonous:00 1 2 -rendition%1:10:00:: 1 2 -renew%2:30:00:: 2 3 -renew%2:36:00:: 1 7 -renewal%1:04:00:: 1 2 -renewal%1:04:01:: 2 1 -renewed%5:00:00:revived:00 1 1 -renewing%5:00:00:invigorating:00 1 1 -renovation%1:04:00:: 1 1 -rent%1:17:00:: 2 2 -rent%1:21:00:: 1 6 -rent%2:40:00:: 3 1 -rent%2:40:01:: 2 2 -rent%2:41:01:: 1 6 -rent_out%2:40:00:: 1 2 -renunciation%1:10:01:: 1 1 -reopen%2:35:00:: 1 3 -reorder%2:31:00:: 1 1 -reorganize%2:41:00:: 1 3 -reorganize%2:41:01:: 2 1 -reorientation%1:09:00:: 1 1 -repair%1:04:00:: 1 5 -repair%1:26:00:: 2 1 -repair%2:30:00:: 1 11 -repair_to%2:38:00:: 1 1 -repaired%5:00:00:restored:00 1 1 -repairman%1:18:00:: 1 1 -repay%2:40:00:: 1 7 -repay%2:40:01:: 2 1 -repayable%5:00:00:due:00 1 1 -repayment%1:04:00:: 1 1 -repeal%1:04:00:: 1 1 -repeal%2:32:00:: 1 3 -repeat%1:11:00:: 1 2 -repeat%2:30:00:: 3 8 -repeat%2:32:00:: 1 33 -repeat%2:32:01:: 4 7 -repeat%2:36:00:: 2 11 -repeat%2:41:00:: 5 3 -repeated%5:00:00:continual:00 1 6 -repeatedly%4:02:00:: 1 10 -repel%2:32:00:: 4 1 -repel%2:33:00:: 3 2 -repel%2:35:00:: 1 7 -repel%2:37:00:: 2 2 -repent%2:37:01:: 1 2 -repentance%1:12:00:: 1 1 -repentant%3:00:00:: 1 1 -repertory%1:06:00:: 1 3 -repetition%1:04:00:: 2 4 -repetition%1:10:00:: 3 1 -repetition%1:11:00:: 1 6 -repetitious%5:00:00:unvaried:00 1 3 -repetitive%5:00:00:continual:00 1 1 -rephrase%2:32:00:: 1 1 -replace%2:30:00:: 1 24 -replace%2:35:00:: 3 7 -replace%2:40:00:: 4 6 -replace%2:41:00:: 2 21 -replacement%1:04:00:: 1 4 -replacement%1:09:00:: 4 1 -replacement%1:11:00:: 3 2 -replacement%1:18:02:: 2 2 -replacing%1:04:00:: 1 1 -replant%2:35:00:: 1 1 -replenish%2:30:00:: 1 6 -replenishment%1:22:00:: 1 1 -replication%1:04:00:: 1 1 -reply%1:10:00:: 2 2 -reply%1:10:01:: 1 21 -reply%2:32:00:: 1 53 -report%1:10:00:: 3 10 -report%1:10:01:: 2 10 -report%1:10:03:: 1 50 -report%1:11:00:: 4 2 -report%2:32:00:: 1 64 -report%2:32:01:: 4 5 -report%2:32:02:: 6 1 -report%2:32:03:: 3 12 -report%2:32:04:: 2 52 -report%2:32:13:: 5 1 -report_out%2:32:00:: 1 2 -reported%3:00:00:: 1 2 -reportedly%4:02:00:: 1 3 -reporter%1:18:00:: 1 10 -reporting%1:10:00:: 1 1 -reporting_weight%1:07:00:: 1 1 -repose%1:04:00:: 1 3 -repose%2:34:00:: 1 1 -reposeful%5:00:00:quiet:02 1 1 -repository%1:06:00:: 1 2 -repository%1:18:00:: 2 1 -reprehensible%5:00:00:wrong:01 1 1 -represent%2:32:00:: 5 8 -represent%2:32:02:: 2 28 -represent%2:36:01:: 9 2 -represent%2:36:02:: 10 1 -represent%2:41:00:: 4 11 -represent%2:41:02:: 3 14 -represent%2:41:06:: 8 2 -represent%2:42:00:: 7 5 -represent%2:42:01:: 6 7 -represent%2:42:02:: 1 39 -representation%1:04:01:: 3 1 -representation%1:06:00:: 2 10 -representation%1:09:00:: 1 10 -representational%3:00:00:: 1 2 -representative%1:18:00:: 1 8 -representative%1:18:01:: 3 4 -representative%1:18:02:: 2 4 -representative%3:00:00:: 2 1 -representative%5:00:00:typical:00 1 3 -repress%2:41:00:: 1 2 -repressed%5:00:00:inhibited:00 1 1 -repression%1:26:00:: 1 1 -repressive%5:00:00:restrictive:00 1 1 -reprieve%1:26:00:: 1 1 -reprimand%2:32:00:: 1 2 -reprint%1:10:01:: 1 1 -reprint%2:36:00:: 1 1 -reprisal%1:04:00:: 1 2 -reproach%1:10:00:: 1 7 -reproach%1:26:00:: 2 1 -reproach%2:32:00:: 1 2 -reprobate%1:18:00:: 1 1 -reprobate%2:31:00:: 1 1 -reproduce%2:29:00:: 2 1 -reproduce%2:36:00:: 1 13 -reproducibility%1:07:00:: 1 2 -reproducible%3:00:00:: 1 5 -reproducibly%4:02:00:: 1 1 -reproduction%1:22:00:: 1 1 -reproof%1:10:00:: 1 1 -reprovingly%4:02:00:: 1 1 -reptile%1:05:00:: 1 1 -republic%1:14:00:: 1 7 -republican%1:18:00:: 2 1 -republican%1:18:01:: 1 8 -republican%3:01:01:: 1 6 -republican_party%1:14:00:: 1 1 -repudiate%2:31:00:: 2 1 -repudiate%2:32:00:: 1 3 -repugnance%1:12:00:: 1 1 -repulse%2:33:00:: 1 2 -repulsion%1:12:00:: 2 1 -repulsion%1:19:00:: 1 2 -repulsive%5:00:00:offensive:01 1 1 -repulsive_force%1:19:00:: 1 2 -reputable%3:00:00:: 1 4 -reputation%1:26:00:: 1 5 -reputation%1:26:01:: 2 4 -repute%1:26:00:: 1 1 -repute%2:31:00:: 1 2 -reputed%5:00:00:acknowledged:00 1 1 -request%1:10:00:: 2 4 -request%1:10:01:: 1 10 -request%2:32:01:: 1 11 -request%2:32:02:: 2 7 -require%2:32:00:: 3 16 -require%2:32:01:: 2 16 -require%2:34:00:: 4 6 -require%2:42:00:: 1 144 -required%5:00:00:necessary:00 1 13 -required%5:00:00:obligated(p):00 3 1 -required%5:00:00:obligatory:00 2 1 -requirement%1:09:00:: 3 11 -requirement%1:09:01:: 1 19 -requirement%1:17:00:: 2 18 -requisition%1:10:00:: 1 1 -requisition%2:32:00:: 1 2 -reread%2:31:00:: 1 3 -rerun%2:32:00:: 1 1 -reschedule%2:32:00:: 1 1 -rescind%2:32:00:: 1 3 -rescue%1:04:00:: 1 3 -rescue%2:41:00:: 1 11 -reseal%2:35:00:: 1 1 -research%1:04:00:: 1 46 -research%1:09:00:: 2 6 -research%2:32:00:: 1 1 -researchable%5:00:00:possible:00 1 1 -researcher%1:18:00:: 1 3 -resemblance%1:07:00:: 1 7 -resemble%2:42:00:: 1 24 -resent%2:37:00:: 1 14 -resentful%3:00:00:: 1 4 -resentfully%4:02:00:: 1 1 -resentment%1:12:00:: 1 6 -reserpine%1:06:00:: 1 1 -reservation%1:04:01:: 4 1 -reservation%1:09:00:: 3 1 -reservation%1:10:00:: 2 1 -reservation%1:15:00:: 1 5 -reserve%1:07:01:: 1 2 -reserve%1:18:00:: 3 1 -reserve%1:21:00:: 2 1 -reserve%2:31:00:: 2 6 -reserve%2:32:00:: 4 1 -reserve%2:40:00:: 3 5 -reserve%2:40:03:: 1 7 -reserve%5:00:00:nonoperational:00 1 5 -reserves%1:14:00:: 1 5 -reservoir%1:06:00:: 3 1 -reservoir%1:06:01:: 2 1 -reservoir%1:23:00:: 1 2 -reset%2:32:00:: 1 1 -resettle%2:30:00:: 1 1 -reshape%2:31:00:: 1 1 -reside%2:42:00:: 1 10 -reside%2:42:01:: 2 1 -residence%1:04:00:: 3 2 -residence%1:06:00:: 2 2 -residence%1:06:01:: 4 1 -residence%1:15:00:: 1 11 -resident%1:18:00:: 1 6 -resident%3:00:00:: 1 2 -resident%3:00:04:: 2 1 -residential%3:00:00:: 1 13 -residential%3:01:00:: 2 5 -residual%3:01:00:: 1 1 -residue%1:24:00:: 2 1 -residue%1:27:00:: 1 2 -resift%2:35:00:: 1 1 -resign%2:41:00:: 1 9 -resignation%1:10:00:: 2 1 -resignation%1:10:01:: 3 1 -resignation%1:12:00:: 1 1 -resignedly%4:02:00:: 1 1 -resilience%1:07:00:: 1 1 -resiny%5:00:00:adhesive:00 1 1 -resist%2:33:00:: 2 11 -resist%2:33:01:: 4 1 -resist%2:41:02:: 3 2 -resist%2:42:01:: 1 12 -resistance%1:04:01:: 4 1 -resistance%1:04:02:: 1 6 -resistance%1:19:00:: 2 4 -resistance%1:19:01:: 3 2 -resistance_thermometer%1:06:00:: 1 1 -resistant%5:00:00:unsusceptible:00 1 1 -resistive%3:01:00:: 1 1 -resistor%1:06:00:: 1 7 -resmudge%2:35:00:: 1 1 -resolute%3:00:00:: 1 1 -resolutely%4:02:00:: 1 2 -resolution%1:04:01:: 4 2 -resolution%1:07:00:: 3 2 -resolution%1:09:00:: 6 1 -resolution%1:09:01:: 5 1 -resolution%1:10:01:: 1 12 -resolution%1:19:00:: 2 2 -resolve%1:07:00:: 1 1 -resolve%2:31:01:: 1 8 -resolve%2:31:02:: 3 6 -resolve%2:31:03:: 6 1 -resolve%2:31:04:: 4 3 -resolve%2:32:00:: 2 6 -resolve%2:39:00:: 5 1 -resolved%5:00:00:resolute:00 1 2 -resonance%1:07:00:: 3 1 -resonance%1:19:00:: 2 3 -resonance%1:19:01:: 1 5 -resonant%5:00:00:reverberant:00 1 3 -resorcinol%1:27:00:: 1 2 -resort%1:15:00:: 1 1 -resort%2:41:11:: 1 7 -resound%2:39:01:: 1 1 -resounding%5:00:00:reverberant:00 1 1 -resource%1:07:00:: 2 8 -resource%1:09:00:: 3 2 -resource%1:21:00:: 1 12 -resourcefulness%1:07:00:: 1 1 -respect%1:04:02:: 5 1 -respect%1:04:03:: 4 1 -respect%1:09:00:: 1 15 -respect%1:09:01:: 3 5 -respect%1:26:00:: 2 5 -respect%2:31:00:: 1 12 -respect%2:41:00:: 2 4 -respect_to%1:24:00:: 1 2 -respectable%3:00:00:: 1 5 -respectable%5:00:00:considerable:00 3 2 -respectable%5:00:00:reputable:00 2 5 -respected%5:00:00:reputable:00 1 2 -respectful%3:00:00:: 1 3 -respective%5:00:00:individual:00 1 4 -respectively%4:02:00:: 1 18 -respects%1:10:00:: 1 3 -respiration%1:04:00:: 1 1 -respiratory%3:01:00:: 1 13 -respiratory_tract%1:08:00:: 1 2 -respite%1:04:00:: 2 2 -respite%1:11:00:: 3 1 -respite%1:26:00:: 1 2 -resplendent%5:00:00:beautiful:00 1 1 -respond%2:31:00:: 1 33 -respond%2:31:01:: 3 1 -respond%2:32:00:: 2 7 -response%1:04:01:: 2 11 -response%1:10:01:: 3 6 -response%1:10:02:: 4 4 -response%1:10:03:: 5 1 -response%1:19:00:: 1 11 -responsibility%1:04:00:: 1 17 -responsibility%1:07:00:: 3 2 -responsibility%1:26:00:: 2 2 -responsible%3:00:00:: 1 9 -responsible%5:00:00:causative:00 2 1 -responsible_for%5:00:00:causative:00 1 9 -responsibly%4:02:00:: 1 1 -responsiveness%1:09:00:: 1 2 -rest%1:04:00:: 2 6 -rest%1:06:00:: 6 1 -rest%1:24:00:: 1 44 -rest%1:26:00:: 4 1 -rest%1:26:01:: 5 1 -rest%1:28:00:: 3 3 -rest%2:29:00:: 5 4 -rest%2:30:00:: 6 2 -rest%2:32:00:: 2 8 -rest%2:32:01:: 3 6 -rest%2:35:00:: 1 20 -rest%2:35:01:: 9 1 -rest%2:35:02:: 10 1 -rest%2:35:04:: 8 1 -rest%2:42:00:: 4 4 -rest%2:42:12:: 7 1 -rest_on%2:35:00:: 1 8 -rest_on%2:42:00:: 2 6 -rest_room%1:06:00:: 1 1 -restate%2:32:00:: 1 2 -restatement%1:10:00:: 1 4 -restaurant%1:06:00:: 1 7 -restive%5:00:00:tense:03 1 2 -restively%4:02:00:: 1 1 -restless%5:00:00:discontented:00 2 2 -restless%5:00:00:moving:02 3 1 -restless%5:00:00:unquiet:00 1 2 -restlessly%4:02:00:: 1 2 -restlessness%1:07:01:: 1 1 -restock%2:40:00:: 1 1 -restoration%1:04:00:: 2 1 -restoration%1:04:01:: 3 1 -restoration%1:28:00:: 1 1 -restore%2:30:00:: 2 4 -restore%2:30:01:: 4 1 -restore%2:40:00:: 3 2 -restore%2:41:01:: 1 10 -restrain%2:30:00:: 2 3 -restrain%2:35:00:: 3 1 -restrain%2:35:01:: 4 1 -restrain%2:41:01:: 1 11 -restrained%3:00:00:: 2 1 -restrained%5:00:00:undemonstrative:00 1 2 -restraint%1:04:00:: 1 5 -restraint%1:07:00:: 2 2 -restrict%2:30:00:: 3 4 -restrict%2:30:01:: 4 2 -restrict%2:30:02:: 1 9 -restrict%2:41:00:: 2 5 -restricted%3:00:00:: 1 2 -restricted%5:00:00:modified:00 2 1 -restricting%5:00:00:restrictive:00 1 1 -restriction%1:04:00:: 3 1 -restriction%1:07:00:: 2 2 -restriction%1:09:00:: 1 5 -restrictive%3:00:00:: 1 1 -restrictive%5:00:00:protective:00 2 1 -resublimed%3:44:00:: 1 1 -result%1:10:00:: 2 25 -result%1:11:00:: 3 24 -result%1:19:00:: 1 83 -result%2:42:00:: 1 45 -result%2:42:02:: 2 38 -resultant%5:00:00:subsequent:00 1 5 -resulting%5:00:00:subsequent:00 1 7 -resume%1:10:00:: 1 4 -resume%2:30:00:: 1 17 -resume%2:30:01:: 2 5 -resume%2:41:00:: 3 4 -resumption%1:04:00:: 1 1 -resurrect%2:29:00:: 1 1 -resuspend%2:30:00:: 1 3 -resuspension%1:27:00:: 1 1 -retail%1:04:00:: 1 1 -retail%2:42:00:: 1 1 -retail%3:00:00:: 1 1 -retailer%1:18:00:: 1 5 -retailing%1:04:00:: 1 4 -retain%2:40:00:: 5 1 -retain%2:40:01:: 1 28 -retain%2:41:00:: 4 1 -retain%2:41:01:: 3 2 -retain%2:42:00:: 2 2 -retained%5:00:00:preserved:01 1 1 -retaliate%2:33:00:: 2 1 -retaliate%2:33:01:: 1 1 -retaliation%1:04:00:: 1 3 -retaliatory%5:00:00:reciprocal:00 1 1 -retard%2:30:01:: 1 1 -retardation%1:07:00:: 1 1 -retarded%3:00:00:: 1 1 -retch%2:29:00:: 1 1 -retention%1:04:00:: 1 8 -retention%1:09:00:: 2 1 -retentive%3:00:00:: 1 1 -retentiveness%1:09:00:: 1 1 -rethink%2:31:00:: 1 2 -reticulate%3:00:00:: 1 3 -retie%2:35:00:: 1 1 -retina%1:08:00:: 1 1 -retinal%3:01:00:: 1 3 -retire%2:38:00:: 3 2 -retire%2:38:03:: 4 2 -retire%2:40:00:: 8 1 -retire%2:41:00:: 6 1 -retire%2:41:01:: 1 18 -retire%2:41:02:: 2 7 -retire%2:41:03:: 7 1 -retire%2:41:04:: 5 1 -retired%5:00:00:inactive:08 1 11 -retired%5:00:01:old:02 2 1 -retired_person%1:18:00:: 1 1 -retirement%1:04:00:: 2 1 -retirement%1:26:00:: 1 9 -retiring%5:00:00:retreating:00 2 1 -retiring%5:00:00:unobtrusive:00 1 1 -retort%1:10:00:: 1 1 -retort%2:32:00:: 1 4 -retrace%2:38:00:: 1 6 -retract%2:32:00:: 1 3 -retraining%1:04:00:: 1 1 -retranslate%2:32:00:: 1 1 -retreat%1:04:00:: 1 3 -retreat%2:38:00:: 1 10 -retreated%1:14:00:: 1 1 -retreating%3:00:00:: 1 6 -retribution%1:04:00:: 2 1 -retribution%1:21:00:: 1 1 -retrieve%2:40:00:: 1 10 -retrogressive%5:00:00:regressive:01 1 1 -retrospect%1:09:00:: 1 1 -retrospective%1:14:00:: 1 1 -retrovision%1:09:00:: 1 1 -return%1:04:00:: 5 2 -return%1:04:01:: 2 6 -return%1:04:02:: 4 3 -return%1:10:01:: 1 32 -return%1:11:02:: 3 3 -return%1:21:00:: 6 1 -return%2:30:00:: 3 12 -return%2:30:01:: 9 2 -return%2:32:00:: 4 5 -return%2:32:01:: 8 2 -return%2:32:03:: 11 1 -return%2:35:01:: 7 2 -return%2:38:00:: 1 111 -return%2:38:12:: 5 3 -return%2:40:00:: 10 1 -return%2:40:03:: 6 2 -return%2:40:08:: 2 14 -return_address%1:10:00:: 1 1 -reunion%1:04:00:: 2 1 -reunion%1:14:00:: 1 1 -reunite%2:41:00:: 1 2 -reunite%2:41:01:: 2 2 -reuse%2:34:00:: 1 1 -rev%2:30:00:: 1 1 -revamp%2:30:00:: 1 3 -reveal%2:32:00:: 2 17 -reveal%2:39:00:: 1 34 -reveal%2:39:01:: 3 10 -revealing%5:00:00:informative:00 1 1 -revel%1:04:00:: 1 1 -revel%2:34:00:: 1 3 -revelation%1:09:00:: 2 4 -revelation%1:10:02:: 1 4 -reveller%1:18:00:: 1 1 -revelry%1:04:00:: 1 1 -revenge%1:04:00:: 1 8 -revenge%2:33:00:: 1 1 -revenue%1:21:01:: 1 5 -reverberate%2:39:00:: 1 1 -reverberation%1:07:00:: 1 2 -revere%2:37:00:: 2 1 -revere%2:37:01:: 1 2 -revered%5:00:00:honorable:00 1 1 -reverence%2:37:00:: 1 1 -reverend%1:18:00:: 1 1 -reverie%1:09:00:: 2 1 -reverie%1:09:01:: 1 1 -reversal%1:04:00:: 1 1 -reverse%1:06:00:: 2 1 -reverse%1:24:00:: 1 1 -reverse%2:30:00:: 1 8 -reverse%2:30:01:: 2 7 -reverse%2:31:00:: 3 2 -reverse%5:00:00:backward:01 1 1 -reversibility%1:07:00:: 1 1 -reversible%3:00:00:: 1 2 -revert%2:30:00:: 1 3 -revery%1:09:00:: 1 1 -revetment%1:06:01:: 1 1 -review%1:04:00:: 3 1 -review%1:09:00:: 1 4 -review%1:10:01:: 2 2 -review%2:31:00:: 1 13 -review%2:31:02:: 3 3 -review%2:32:00:: 2 9 -reviewer%1:18:01:: 1 1 -reviewing_stand%1:06:00:: 1 1 -revile%2:32:00:: 1 1 -revise%2:32:00:: 1 6 -revise%2:41:00:: 2 3 -revised%5:00:00:altered:00 1 3 -revision%1:04:00:: 1 3 -revision%1:10:00:: 3 1 -revision%1:10:01:: 2 1 -revitalize%2:29:00:: 1 1 -revival%1:04:01:: 1 1 -revive%2:29:00:: 2 5 -revive%2:29:01:: 1 5 -revive%2:30:00:: 3 2 -revive%2:30:01:: 4 1 -revolt%1:04:00:: 1 4 -revolution%1:04:00:: 2 6 -revolution%1:11:01:: 1 6 -revolutionary%5:00:00:new:00 1 7 -revolutionize%2:30:00:: 1 1 -revolve%2:38:00:: 1 1 -revolve%2:38:01:: 2 1 -revolve_about%2:42:00:: 1 2 -revolve_around%2:42:00:: 1 2 -revolver%1:06:00:: 1 4 -revolving_fund%1:21:00:: 1 1 -revulsion%1:12:00:: 1 3 -reward%1:04:01:: 3 2 -reward%1:10:00:: 4 1 -reward%1:11:00:: 1 4 -reward%1:21:00:: 2 2 -reward%2:32:00:: 2 1 -reward%2:41:01:: 1 1 -rewarding%3:00:00:: 1 2 -rewrite%2:32:00:: 1 3 -rh%1:27:01:: 1 2 -rh_antibody%1:27:00:: 1 4 -rhetorician%1:18:00:: 1 1 -rheumatic_fever%1:26:00:: 1 1 -rheumatism%1:26:00:: 1 2 -rhino%1:05:00:: 1 2 -rhinoceros%1:05:00:: 1 1 -rhinotracheitis%1:26:00:: 1 2 -rhode_island%1:15:00:: 1 9 -rhode_islander%1:18:00:: 1 4 -rhubarb%1:13:00:: 1 2 -rhyme%1:10:00:: 1 1 -rhyme%1:10:01:: 2 1 -rhyme%2:36:00:: 1 1 -rhythm%1:04:00:: 5 1 -rhythm%1:07:01:: 2 6 -rhythm%1:10:00:: 4 1 -rhythm%1:10:01:: 1 7 -rhythm%1:28:00:: 3 1 -rhythm_method%1:04:00:: 1 1 -rhythmic%3:00:00:: 1 3 -rhythmical%3:00:00:: 1 1 -rhythmically%4:02:00:: 1 1 -rib%1:06:00:: 1 4 -rib%1:08:01:: 2 2 -rib_cage%1:08:00:: 1 2 -ribbon%1:17:00:: 1 6 -ribbon_snake%1:05:00:: 1 2 -ribes%1:20:00:: 1 1 -ribes_sanguineum%1:20:00:: 1 1 -riboflavin%1:27:00:: 1 1 -rice%1:13:00:: 1 5 -rice%1:20:00:: 2 4 -rice_paddy%1:15:00:: 1 1 -rich%3:00:00:: 1 17 -rich%3:00:02:: 2 5 -rich%5:00:00:colorful:00 5 2 -rich%5:00:00:fruitful:00 4 2 -rich%5:00:00:valuable:00 3 2 -rich%5:00:02:productive:00 6 1 -rich_in%5:00:00:full:00 1 2 -rich_man%1:18:00:: 1 2 -richly%4:02:02:: 1 1 -richmond%1:15:00:: 1 4 -richness%1:07:01:: 3 1 -richness%1:07:03:: 1 3 -richness%1:26:00:: 2 1 -rickety%5:00:00:unstable:00 1 1 -ricochet%2:38:00:: 1 1 -rid%2:40:00:: 1 5 -ridden%5:00:00:controlled:00 1 2 -riddle%1:10:00:: 1 1 -riddle%2:31:01:: 2 1 -riddle%2:35:00:: 1 2 -riddled%5:00:00:damaged:00 1 1 -ride%1:04:00:: 1 6 -ride%2:32:00:: 5 1 -ride%2:38:00:: 2 30 -ride%2:38:01:: 1 53 -ride%2:38:02:: 4 2 -ride%2:42:00:: 3 2 -ride_away%2:38:00:: 1 2 -ride_herd%2:38:00:: 1 1 -ride_herd_on%2:39:00:: 1 1 -ride_off%2:38:00:: 1 1 -ride_the_bench%2:41:00:: 1 1 -rider%1:10:00:: 2 2 -rider%1:18:00:: 1 11 -ridge%1:17:00:: 1 6 -ridicule%1:10:00:: 1 2 -ridicule%2:32:00:: 1 3 -ridiculous%5:00:00:foolish:00 2 3 -ridiculous%5:00:00:undignified:00 1 4 -ridiculously%4:02:00:: 1 1 -riding_boot%1:06:00:: 1 2 -riffle%2:35:01:: 1 1 -rifle%1:06:00:: 1 75 -rifle%2:40:00:: 1 1 -rifle_ball%1:06:00:: 1 1 -rifleman%1:18:00:: 2 1 -rifleman%1:18:01:: 1 3 -rift%1:17:01:: 1 1 -rig%1:06:00:: 1 2 -rig%2:35:00:: 3 1 -rig%2:40:00:: 2 1 -rig%2:41:00:: 1 1 -rig-veda%1:10:00:: 1 1 -rig_up%2:36:00:: 1 1 -rigger%1:06:00:: 2 1 -rigger%1:18:00:: 1 1 -right%1:04:00:: 6 2 -right%1:06:00:: 3 5 -right%1:07:00:: 1 41 -right%1:07:01:: 7 1 -right%1:08:00:: 5 2 -right%1:14:00:: 4 4 -right%1:15:00:: 2 27 -right%3:00:00:: 1 20 -right%3:00:01:: 4 10 -right%3:00:02:: 2 20 -right%3:00:04:: 5 2 -right%4:02:00:: 6 3 -right%4:02:01:: 5 3 -right%4:02:03:: 4 4 -right%4:02:04:: 1 17 -right%4:02:05:: 9 1 -right%4:02:06:: 8 2 -right%4:02:07:: 7 2 -right%4:02:08:: 2 14 -right%4:02:09:: 3 11 -right%5:00:00:appropriate:00 6 1 -right%5:00:01:proper:00 3 16 -right-hand%5:00:00:right-handed:00 2 1 -right-hand%5:00:00:right:00 1 1 -right-hander%1:18:01:: 1 2 -right_angle%1:25:00:: 1 1 -right_away%4:02:00:: 1 10 -right_coronary_artery%1:08:00:: 1 1 -right_hand%1:08:00:: 1 3 -right_of_entry%1:07:00:: 1 2 -right_to_vote%1:07:00:: 1 2 -right_ventricle%1:08:00:: 1 1 -righteous%3:00:00:: 1 1 -righteousness%1:07:00:: 1 1 -rightfield%1:06:00:: 1 3 -rightful%5:00:00:just:00 1 1 -rightfully%4:02:00:: 1 2 -rightly%4:02:00:: 1 4 -rightness%1:07:00:: 1 1 -rigid%5:00:00:inflexible:01 1 5 -rigid%5:00:00:intolerant:00 2 2 -rigid%5:00:00:unadaptable:00 3 2 -rigidly%4:02:00:: 1 3 -rigor%1:07:00:: 1 2 -rigorous%5:00:00:demanding:01 2 1 -rigorous%5:00:00:exact:00 1 1 -rigorously%4:02:00:: 1 1 -rim%1:25:00:: 1 2 -rim%2:42:00:: 1 1 -rimless%3:00:00:: 1 1 -ring%1:06:02:: 3 2 -ring%1:06:04:: 4 1 -ring%1:07:00:: 1 4 -ring%1:25:00:: 2 2 -ring%2:32:00:: 5 1 -ring%2:39:00:: 1 15 -ring%2:39:01:: 3 5 -ring%2:39:04:: 2 7 -ring%2:42:00:: 4 1 -ring-around-a-rosy%1:04:00:: 1 1 -ring_out%2:39:00:: 1 4 -ring_up%2:32:00:: 1 1 -ringing%1:10:00:: 2 1 -ringing%1:11:00:: 1 1 -rinse%2:35:00:: 1 1 -rinse%2:35:02:: 2 1 -riot%1:04:00:: 1 1 -riotous%5:00:00:abundant:00 1 2 -riotous%5:00:00:unquiet:00 2 1 -rip%2:35:00:: 1 8 -rip%2:35:01:: 3 2 -rip%2:38:00:: 2 2 -ripe%3:00:00:: 1 6 -ripe%5:00:00:ready:00 2 1 -ripen%2:30:00:: 2 1 -ripen%2:30:01:: 1 1 -ripening%1:22:00:: 1 1 -ripping%5:00:00:cacophonous:00 1 1 -ripple%1:11:00:: 1 4 -ripple%1:11:01:: 2 1 -ripple%2:38:00:: 1 2 -ripple%2:39:00:: 2 1 -rise%1:04:00:: 2 3 -rise%1:07:01:: 6 1 -rise%1:07:02:: 5 1 -rise%1:11:00:: 1 8 -rise%1:11:02:: 4 1 -rise%1:17:00:: 3 1 -rise%2:29:08:: 10 4 -rise%2:30:00:: 2 23 -rise%2:30:02:: 9 4 -rise%2:30:03:: 8 4 -rise%2:30:09:: 11 3 -rise%2:33:00:: 13 2 -rise%2:37:00:: 12 2 -rise%2:38:00:: 1 26 -rise%2:38:01:: 17 1 -rise%2:38:02:: 16 1 -rise%2:38:03:: 15 1 -rise%2:38:04:: 5 5 -rise%2:38:05:: 3 20 -rise%2:38:06:: 7 4 -rise%2:38:08:: 18 1 -rise%2:41:00:: 14 1 -rise%2:42:00:: 4 8 -rise%2:42:01:: 6 4 -rise_up%2:38:00:: 1 4 -rising%3:00:00:: 1 3 -rising%3:00:01:: 2 2 -rising%5:00:00:increasing:00 3 1 -risk%1:04:00:: 2 2 -risk%1:26:00:: 1 4 -risk%2:41:00:: 1 8 -risk%2:41:01:: 2 2 -risky%5:00:00:dangerous:00 1 1 -rite%1:04:00:: 2 2 -rite%1:04:01:: 1 2 -ritual%1:04:00:: 1 6 -ritual%1:04:01:: 2 4 -ritualize%2:30:00:: 1 1 -rival%1:18:00:: 1 1 -rival%2:42:00:: 1 4 -rival%5:00:00:competitive:00 1 4 -rive%2:35:00:: 1 1 -river%1:17:00:: 1 55 -riverbank%1:17:00:: 1 2 -rivet%2:31:00:: 1 2 -rivulet%1:17:00:: 1 1 -road%1:04:00:: 2 2 -road%1:06:00:: 1 94 -road_game%1:04:00:: 1 1 -road_show%1:04:00:: 1 1 -roadblock%1:09:00:: 1 1 -roadside%1:06:00:: 1 2 -roadway%1:06:00:: 1 11 -roam%2:38:00:: 1 7 -roar%1:10:00:: 2 2 -roar%1:11:00:: 1 13 -roar%2:32:01:: 1 15 -roar%2:32:02:: 3 6 -roar%2:32:03:: 2 7 -roar%2:32:05:: 5 1 -roar%2:38:00:: 4 1 -roar_off%2:38:00:: 1 1 -roarer%1:18:00:: 1 1 -roaring%1:11:00:: 1 2 -roast%2:30:00:: 1 4 -roasted%5:00:00:cooked:00 1 1 -rob%2:40:00:: 1 5 -rob%2:40:01:: 2 5 -robber%1:18:01:: 1 5 -robbery%1:04:00:: 1 3 -robe%1:06:00:: 1 3 -robe%1:06:01:: 2 1 -robe%2:29:00:: 1 1 -robert_e_lee%1:18:00:: 1 1 -robust%3:00:00:: 1 1 -robustness%1:07:00:: 1 1 -rock%1:17:01:: 1 14 -rock%1:27:00:: 2 6 -rock%2:38:00:: 1 6 -rock%2:38:01:: 2 5 -rock-steady%5:00:00:steady:00 1 1 -rock_outcrop%1:17:00:: 1 1 -rock_python%1:05:00:: 1 2 -rocket%1:06:00:: 2 2 -rocket%1:06:01:: 1 2 -rocklike%5:00:00:hard:01 1 2 -rocky%5:00:00:rough:00 1 3 -rod%1:05:00:: 2 1 -rod%1:06:00:: 1 1 -rodeo%1:04:00:: 1 2 -rogue%1:18:00:: 1 1 -roiling%5:00:00:agitated:02 1 2 -role%1:04:00:: 1 34 -role%1:04:01:: 4 6 -role%1:07:00:: 3 8 -role%1:09:00:: 2 10 -roleplay%2:36:00:: 1 1 -roleplaying%1:04:00:: 1 16 -roll%1:06:01:: 4 1 -roll%1:10:00:: 2 2 -roll%1:11:01:: 3 1 -roll%1:11:02:: 1 2 -roll%2:29:06:: 9 1 -roll%2:30:10:: 8 1 -roll%2:35:00:: 6 2 -roll%2:35:01:: 7 1 -roll%2:35:05:: 4 6 -roll%2:38:00:: 1 22 -roll%2:38:01:: 2 10 -roll%2:39:00:: 5 2 -roll%2:42:00:: 3 7 -roll_out%2:35:01:: 1 1 -roll_over%2:38:00:: 1 3 -roll_up%2:30:01:: 1 1 -rolled_into_one%5:00:00:combined:00 1 1 -rolled_out%5:00:00:extended:00 1 1 -roller%1:04:00:: 1 1 -roller_skate%1:06:00:: 1 1 -rollickingly%4:02:00:: 1 1 -rolling%5:00:00:moving:02 3 1 -rolling%5:00:00:pronounceable:00 2 1 -rolling%5:00:00:reverberant:00 1 4 -rolling_stock%1:06:00:: 1 1 -roman%1:18:00:: 1 3 -roman%3:01:01:: 2 2 -roman%3:01:02:: 1 2 -roman_candle%1:06:00:: 1 1 -roman_catholic%1:14:00:: 2 4 -roman_catholic%1:18:00:: 1 8 -roman_catholic_church%1:14:00:: 1 7 -roman_catholicism%1:09:00:: 1 1 -roman_church%1:14:00:: 1 2 -roman_collar%1:06:00:: 1 1 -roman_nose%1:08:00:: 1 1 -romance%1:07:00:: 2 1 -romance%1:26:00:: 1 4 -romantic%1:18:00:: 1 2 -romantic%1:18:01:: 2 1 -romantic%3:01:00:: 1 6 -romantic%5:00:01:loving:00 2 2 -romanticism%1:07:00:: 1 1 -romanticize%2:31:00:: 1 3 -rome%1:14:00:: 2 2 -rome%1:15:00:: 1 4 -romp%1:11:00:: 1 1 -romp%2:38:00:: 1 2 -roof%1:06:00:: 1 34 -roof%1:06:01:: 2 1 -roof%2:35:00:: 1 1 -roof_of_the_mouth%1:08:00:: 1 1 -roofer%1:18:00:: 1 1 -rooftop%1:15:00:: 1 2 -rooftree%1:06:00:: 1 1 -rookie%1:18:00:: 1 8 -room%1:06:00:: 1 116 -room%1:23:00:: 2 10 -room%1:26:00:: 3 3 -room%2:42:00:: 1 1 -room_clerk%1:18:00:: 1 1 -room_temperature%1:07:00:: 1 9 -roomful%1:23:00:: 1 1 -rooms%1:06:00:: 1 2 -roosevelt%1:18:02:: 1 1 -roost%2:35:00:: 1 1 -rooster%1:05:00:: 1 3 -root%1:10:00:: 3 2 -root%1:14:00:: 5 1 -root%1:15:00:: 2 2 -root%1:20:00:: 1 11 -root%1:23:00:: 4 1 -root%2:30:00:: 1 2 -root_cellar%1:06:00:: 1 1 -root_out%2:35:00:: 1 1 -rooting%1:22:00:: 1 2 -rope%1:06:00:: 1 5 -rosary%1:06:00:: 1 1 -rose%1:20:00:: 1 5 -rose%5:00:00:chromatic:00 1 1 -rose_of_sharon%1:20:00:: 1 1 -rosebud%1:20:00:: 1 1 -rosette%1:06:00:: 1 1 -roster%1:10:01:: 1 2 -rostrum%1:06:00:: 1 1 -rosy%5:00:00:chromatic:00 3 1 -rosy%5:00:00:healthy:00 2 1 -rosy%5:00:00:optimistic:00 1 1 -rot%1:22:00:: 2 1 -rot%1:26:00:: 1 1 -rot%2:30:00:: 1 3 -rotary%3:01:00:: 1 1 -rotary_club%1:14:00:: 1 1 -rotate%2:33:00:: 3 1 -rotate%2:38:01:: 1 8 -rotate%2:41:00:: 2 1 -rotated%5:00:00:turned:00 1 1 -rotating%5:00:00:moving:02 1 2 -rotation%1:04:00:: 1 3 -rotc%1:14:00:: 1 1 -rotor%1:06:01:: 1 6 -rotten%5:00:03:bad:00 1 1 -rotting%5:00:00:rotten:00 1 1 -rotundity%1:07:00:: 1 1 -rough%2:36:01:: 1 1 -rough%3:00:00:: 1 13 -rough%4:02:03:: 1 1 -rough%5:00:00:aggressive:00 7 1 -rough%5:00:00:cacophonous:00 6 1 -rough%5:00:00:difficult:00 4 1 -rough%5:00:00:inexact:00 3 2 -rough%5:00:00:stormy:00 5 1 -rough%5:00:00:unrefined:01 2 2 -rough_out%2:36:00:: 1 1 -roughen%2:35:00:: 1 1 -roughhewn%5:00:00:unfinished:02 1 1 -roughly%4:02:00:: 1 9 -roughly%4:02:02:: 3 1 -roughly%4:02:03:: 2 1 -roughneck%1:18:00:: 1 1 -roughness%1:07:00:: 1 2 -roughness%1:07:01:: 2 1 -roughness%1:07:02:: 3 1 -roulette_ball%1:06:00:: 1 1 -round%1:04:00:: 4 1 -round%1:04:01:: 6 1 -round%1:04:03:: 5 1 -round%1:06:01:: 1 6 -round%1:15:00:: 3 1 -round%1:28:01:: 2 2 -round%2:30:00:: 2 1 -round%2:38:00:: 1 3 -round%3:00:00:: 1 12 -round%4:02:00:: 1 3 -round%5:00:00:full:01 2 1 -round%5:00:00:inexact:00 3 1 -round-bottom%5:00:00:bottomed:00 1 1 -round-faced%5:00:00:faced:00 1 1 -round_bone%1:08:00:: 1 2 -round_off%2:30:01:: 1 1 -round_out%2:30:00:: 2 3 -round_out%2:30:03:: 1 3 -round_table%1:10:00:: 1 1 -round_up%2:35:00:: 1 4 -roundabout%5:00:00:indirect:00 2 1 -roundabout%5:00:00:indirect:02 1 1 -rounded%3:00:00:: 1 3 -rounded%5:00:00:endomorphic:00 2 1 -roundhouse%1:04:00:: 2 1 -roundhouse%1:06:00:: 1 1 -roundly%4:02:00:: 1 1 -roundup%1:04:01:: 1 2 -rouse%2:38:01:: 1 2 -rousing%5:00:00:stimulating:00 1 1 -rousseau%1:18:00:: 1 13 -rousseauan%3:01:00:: 1 1 -rout%2:33:00:: 1 1 -rout_out%2:38:00:: 2 1 -rout_out%2:40:00:: 1 1 -route%1:06:00:: 2 2 -route%1:15:00:: 1 11 -routine%1:04:00:: 1 10 -routine%1:10:00:: 3 1 -routine%1:10:01:: 2 2 -routine%5:00:00:ordinary:00 2 2 -routine%5:00:00:regular:00 1 3 -routinely%4:02:00:: 1 1 -rove%2:38:00:: 1 2 -row%1:06:00:: 4 1 -row%1:10:00:: 2 3 -row%1:14:00:: 1 23 -row%1:17:00:: 3 1 -row%2:38:00:: 1 4 -row_house%1:06:00:: 1 1 -rowdy%1:18:00:: 1 1 -rowdy%5:00:00:disorderly:00 1 1 -royal%3:01:00:: 1 4 -royal%3:01:01:: 2 1 -royal_brace%1:06:00:: 1 1 -royal_family%1:14:00:: 1 1 -royal_house%1:14:00:: 1 1 -royalty%1:14:00:: 2 1 -royalty%1:21:00:: 1 5 -rpm%1:28:00:: 1 6 -rub%2:35:00:: 1 19 -rub%2:35:01:: 2 1 -rubber%1:27:00:: 1 4 -rubber%5:00:00:impermeable:00 1 1 -rubberized%5:00:00:processed:00 1 1 -rubberlike%5:00:00:elastic:00 1 1 -rubbery%5:00:00:elastic:00 1 1 -rubbish%1:27:00:: 1 1 -rubble%1:27:00:: 1 1 -rubric%1:10:02:: 1 1 -ruby%1:21:00:: 1 1 -ruck%1:14:00:: 1 1 -rudder%1:06:01:: 1 1 -rudderless%5:00:00:purposeless:00 1 1 -ruddy%5:00:00:healthy:00 1 1 -rude%5:00:00:impolite:00 1 2 -rude%5:00:00:unrefined:01 2 1 -rudely%4:02:00:: 1 1 -rudeness%1:07:00:: 1 1 -rudimentary%5:00:00:basic:00 1 1 -rudimentary%5:00:00:incomplete:00 2 1 -ruefully%4:02:00:: 1 2 -ruffian%1:18:00:: 1 1 -ruffle%2:37:00:: 2 1 -ruffle%2:38:00:: 1 1 -ruffled%5:00:00:adorned:00 2 1 -ruffled%5:00:00:agitated:02 1 1 -rug%1:06:00:: 1 4 -rugged%3:00:00:: 1 9 -rugged_individualist%1:18:00:: 1 1 -ruin%1:06:00:: 2 2 -ruin%1:26:00:: 1 3 -ruin%2:35:00:: 1 4 -ruined%5:00:00:lost:02 1 1 -ruinous%5:00:00:harmful:00 1 1 -rule%1:09:00:: 1 15 -rule%1:09:01:: 2 15 -rule%1:09:03:: 5 3 -rule%1:10:00:: 3 10 -rule%1:10:01:: 4 7 -rule%2:31:00:: 2 9 -rule%2:32:00:: 4 1 -rule%2:41:00:: 1 12 -rule%2:42:00:: 3 2 -rule_in%2:33:00:: 1 1 -rule_out%2:31:00:: 3 1 -rule_out%2:33:00:: 2 1 -rule_out%2:42:00:: 1 6 -ruled%5:00:00:subordinate:02 1 1 -ruler%1:06:00:: 2 1 -ruler%1:18:00:: 1 4 -ruling%1:04:00:: 1 4 -ruling%5:00:00:powerful:00 1 1 -ruling_class%1:14:00:: 1 1 -rumanian%1:10:00:: 1 1 -rumanian%3:01:00:: 1 1 -rumble%1:11:00:: 1 4 -rumble%2:32:00:: 2 1 -rumble%2:39:00:: 1 3 -rumen%1:05:00:: 1 1 -rummage%2:35:00:: 1 2 -rumor%1:10:00:: 1 14 -rumor%2:32:00:: 1 1 -rump%1:05:00:: 1 1 -rumpus%1:04:00:: 1 1 -run%1:04:00:: 7 1 -run%1:04:01:: 1 18 -run%1:04:02:: 5 1 -run%1:04:04:: 6 1 -run%1:04:06:: 2 5 -run%1:11:02:: 3 2 -run%1:14:00:: 4 1 -run%2:30:03:: 14 3 -run%2:30:07:: 15 3 -run%2:33:06:: 9 7 -run%2:35:00:: 7 8 -run%2:35:01:: 22 2 -run%2:35:04:: 13 3 -run%2:36:00:: 21 2 -run%2:36:01:: 10 5 -run%2:36:02:: 20 2 -run%2:38:00:: 1 106 -run%2:38:01:: 6 9 -run%2:38:03:: 28 1 -run%2:38:04:: 2 38 -run%2:38:05:: 29 1 -run%2:38:08:: 27 1 -run%2:38:10:: 26 1 -run%2:38:11:: 11 4 -run%2:40:06:: 25 1 -run%2:41:00:: 19 2 -run%2:41:01:: 24 1 -run%2:41:02:: 4 20 -run%2:42:00:: 3 21 -run%2:42:01:: 12 3 -run%2:42:02:: 16 2 -run%2:42:03:: 17 2 -run%2:42:04:: 5 10 -run%2:42:06:: 18 2 -run%2:42:07:: 8 7 -run%2:42:08:: 23 1 -run-down%5:00:00:malfunctioning:00 2 1 -run-down%5:00:00:worn:00 1 1 -run_a_risk%2:41:00:: 1 7 -run_across%2:38:00:: 1 2 -run_along%2:42:00:: 1 1 -run_around%2:38:00:: 1 3 -run_away%2:38:00:: 1 12 -run_away%2:38:04:: 2 1 -run_bases%2:38:00:: 1 1 -run_batted_in%1:04:00:: 1 1 -run_by%2:38:00:: 1 1 -run_down%2:29:00:: 4 2 -run_down%2:29:01:: 3 2 -run_down%2:38:02:: 2 2 -run_down%2:39:00:: 5 1 -run_down%2:41:00:: 1 2 -run_into%2:35:00:: 2 1 -run_into%2:35:01:: 3 1 -run_into%2:42:01:: 1 6 -run_off%2:38:00:: 3 1 -run_off%2:38:01:: 2 1 -run_off%2:38:02:: 1 2 -run_on%2:32:00:: 1 1 -run_out%2:30:12:: 1 5 -run_out%2:38:01:: 2 3 -run_out%2:38:02:: 3 3 -run_out%2:42:00:: 4 1 -run_over%2:29:00:: 1 3 -run_over%2:38:00:: 2 1 -run_roughshod%2:41:00:: 1 1 -run_through%2:34:00:: 2 1 -run_through%2:34:01:: 1 4 -run_up%2:30:00:: 1 2 -run_up%2:35:00:: 2 1 -run_up%2:35:01:: 3 1 -runaway%1:11:00:: 1 1 -runaway%5:00:00:uncontrolled:00 1 3 -rundown%1:10:00:: 1 1 -runner%1:18:01:: 1 3 -runner%1:18:02:: 4 1 -runner%1:18:03:: 2 1 -runner%1:18:04:: 3 1 -runner-up%1:18:00:: 1 2 -running%1:04:01:: 2 2 -running%1:04:03:: 1 2 -running%3:00:02:: 2 1 -running%5:00:00:continual:00 3 1 -running%5:00:00:moving:02 1 3 -running_board%1:06:00:: 1 1 -running_time%1:28:00:: 1 2 -runoff%1:11:00:: 1 2 -rupture%2:35:00:: 1 1 -rural%3:00:00:: 1 18 -rural%3:01:01:: 2 7 -rural_area%1:15:00:: 1 3 -rush%1:04:00:: 1 8 -rush%1:11:00:: 2 2 -rush%2:30:00:: 4 1 -rush%2:30:01:: 3 2 -rush%2:33:00:: 2 6 -rush%2:38:00:: 1 20 -rush_hour%1:28:00:: 1 1 -rush_off%2:38:00:: 1 2 -rush_out%2:38:00:: 1 2 -rushing%1:04:00:: 1 5 -rushing%1:04:01:: 2 1 -rushing%5:00:00:moving:02 1 1 -russet%1:06:00:: 1 1 -russia%1:15:00:: 1 8 -russia%1:15:01:: 2 1 -russia%1:15:02:: 3 1 -russian%1:10:00:: 2 4 -russian%1:18:00:: 1 6 -russian%3:01:00:: 1 22 -rust%2:30:00:: 1 2 -rusted%3:00:00:: 1 1 -rustic%5:00:00:provincial:00 2 1 -rustic%5:00:02:rural:00 1 1 -rustle%1:11:00:: 1 1 -rustle%2:39:00:: 1 7 -rustle%2:40:00:: 2 3 -rustler%1:18:00:: 1 3 -rustling%1:04:00:: 1 4 -rustling%1:11:00:: 2 1 -rusty%5:00:00:chromatic:00 2 1 -rusty%5:00:00:rusted:00 1 3 -rut%1:04:00:: 2 1 -rut%1:25:00:: 1 1 -rutabaga%1:13:00:: 1 1 -ruthless%5:00:00:merciless:00 1 1 -ruthlessness%1:07:00:: 1 1 -rutted%5:00:00:furrowed:00 1 1 -sabbath%1:28:00:: 1 1 -sabine%1:17:00:: 1 1 -sable%1:06:01:: 1 2 -sabotage%1:04:00:: 1 2 -sack%1:06:00:: 1 1 -sack%2:40:00:: 1 1 -sacrament%1:04:00:: 1 1 -sacramento%1:15:00:: 1 1 -sacred%3:00:00:: 1 4 -sacred%5:00:00:holy:00 3 1 -sacred%5:00:00:worthy:00 2 1 -sacred_writing%1:10:00:: 1 1 -sacrifice%1:04:01:: 1 7 -sacrifice%1:11:00:: 2 1 -sacrifice%2:35:00:: 2 1 -sacrifice%2:40:00:: 1 10 -sacrifice_fly%1:04:00:: 1 1 -sacrilege%1:04:00:: 1 2 -sad%3:00:00:: 1 9 -sadden%2:37:01:: 1 1 -saddle%1:06:00:: 1 14 -saddle%2:32:00:: 3 1 -saddle%2:35:01:: 1 1 -saddle%2:35:10:: 2 1 -saddle_hackle%1:05:00:: 1 1 -saddlebag%1:06:00:: 1 3 -sadism%1:12:00:: 1 2 -sadistic%3:00:00:: 1 1 -sadly%4:02:00:: 1 7 -sadly%4:02:03:: 2 2 -sadness%1:12:00:: 1 2 -safe%1:06:00:: 1 6 -safe%3:00:01:: 1 25 -safe%5:00:00:unadventurous:00 2 1 -safe-conduct%1:10:00:: 1 1 -safebreaker%1:18:00:: 1 1 -safeguard%1:04:00:: 1 1 -safeguard%2:33:00:: 1 2 -safely%4:02:00:: 1 6 -safety%1:04:00:: 4 1 -safety%1:06:00:: 3 1 -safety%1:15:00:: 2 4 -safety%1:26:00:: 1 13 -sag%2:38:00:: 1 5 -sag%2:38:01:: 2 1 -sag_down%2:38:00:: 1 1 -saga%1:10:00:: 1 2 -sagacious%5:00:00:wise:00 1 1 -sage%1:13:00:: 2 1 -sage%1:18:00:: 1 1 -sagebrush%1:20:00:: 1 1 -sagging%5:00:00:lax:01 1 1 -said%5:00:00:same:02 1 2 -sail%1:04:00:: 2 1 -sail%1:06:00:: 1 1 -sail%2:38:00:: 3 1 -sail%2:38:01:: 2 3 -sail%2:38:03:: 1 13 -sailing%1:04:00:: 2 1 -sailing%1:04:01:: 1 2 -sailing%1:04:02:: 3 1 -sailing%5:00:00:afloat(p):00 1 1 -sailor%1:18:00:: 1 3 -sailor%1:18:01:: 2 1 -saint%1:18:00:: 2 2 -saint%1:18:01:: 3 1 -saint%1:18:03:: 1 3 -sake%1:07:00:: 1 10 -salable%3:00:00:: 1 1 -salacious%5:00:00:dirty:02 2 1 -salacious%5:00:00:sexy:00 1 1 -salad%1:13:00:: 1 1 -salamander%1:05:00:: 1 1 -salary%1:21:00:: 1 10 -sale%1:04:00:: 1 29 -sale%1:04:01:: 3 1 -sale%1:04:02:: 2 18 -sales_force%1:14:00:: 1 4 -sales_tax%1:21:00:: 1 1 -salesgirl%1:18:00:: 1 1 -saleslady%1:18:00:: 1 3 -salesman%1:18:00:: 1 20 -salesmanship%1:09:00:: 1 3 -salient%5:00:00:conspicuous:00 1 3 -saline%1:27:00:: 1 27 -saline%5:00:00:salt:00 1 4 -salish%1:10:00:: 1 1 -saliva%1:08:00:: 1 2 -salivary%3:01:00:: 1 1 -salivate%2:29:00:: 1 1 -sallow%5:00:00:unhealthy:00 1 1 -sally%1:10:00:: 1 1 -sallying_forth%1:04:00:: 1 1 -salmon%1:05:00:: 1 1 -salon%1:06:01:: 1 2 -saloon%1:06:00:: 1 5 -saloon%1:06:01:: 2 2 -salt%1:13:00:: 2 5 -salt%1:27:00:: 1 9 -salt%2:39:00:: 1 1 -salt%3:00:00:: 1 1 -salt%5:00:00:sharp:04 2 1 -salt_away%2:40:00:: 1 1 -saltwater%1:27:00:: 1 1 -salty%5:00:00:salt:00 2 1 -salty%5:00:00:stimulating:00 1 1 -salubrious%5:00:00:wholesome:00 1 1 -salutary%5:00:00:healthful:00 1 1 -salute%2:32:00:: 2 1 -salute%2:32:03:: 3 1 -salute%2:34:00:: 1 1 -salvage%2:41:00:: 1 3 -salvation%1:04:00:: 1 10 -salvation%1:04:01:: 2 1 -salve%1:04:00:: 2 1 -salve%1:06:00:: 1 1 -salvo%1:04:00:: 2 1 -salvo%1:11:00:: 1 1 -same%3:00:00:: 2 80 -same%3:00:02:: 1 129 -same%3:00:04:: 3 20 -same%4:02:00:: 1 4 -same%5:00:00:unchanged:00 4 17 -sameness%1:07:00:: 1 3 -sample%1:09:00:: 1 48 -sample%1:09:01:: 2 13 -sample%2:34:00:: 1 7 -sampler%1:06:01:: 1 1 -sampling%1:04:00:: 1 4 -sampling_station%1:06:00:: 1 1 -san_francisco%1:15:00:: 1 10 -sanctified%5:00:00:holy:00 1 1 -sanction%1:04:02:: 2 1 -sanction%1:10:00:: 1 2 -sanction%2:32:01:: 1 6 -sanction%2:41:01:: 2 1 -sanctity%1:07:00:: 1 2 -sand%1:27:00:: 1 10 -sand%2:35:00:: 1 2 -sand_dune%1:17:00:: 1 2 -sandal%1:06:00:: 1 3 -sandalwood%1:20:00:: 1 1 -sandpaper%1:27:00:: 1 1 -sandwich%1:13:00:: 1 6 -sandy%5:00:00:blond:00 2 1 -sandy%5:00:00:loose:02 1 1 -sane%3:00:00:: 1 2 -sanguineous%5:00:00:bloody:00 1 1 -sanitation%1:04:00:: 2 1 -sanitation%1:26:00:: 1 1 -sanity%1:26:00:: 1 1 -sap%2:34:00:: 2 1 -sap%2:40:00:: 1 1 -sapling%1:20:00:: 1 1 -sapphire%5:00:00:chromatic:00 1 1 -saracen%1:18:01:: 1 1 -sarcasm%1:10:00:: 1 2 -sarcastic%3:00:00:: 1 4 -sarcolemmal%3:01:00:: 1 1 -sardine%1:05:01:: 2 1 -sardine%1:13:00:: 1 1 -sardonic%5:00:00:sarcastic:00 1 1 -sari%1:06:00:: 1 1 -sash%1:06:00:: 1 1 -sash%1:06:01:: 2 1 -sashay%2:38:01:: 1 1 -sassing%1:10:00:: 1 1 -satanic%5:00:00:evil:00 1 1 -satellite%1:06:00:: 1 4 -satiate%2:34:00:: 1 1 -satiety%1:26:00:: 1 1 -satin%1:06:00:: 1 1 -satire%1:10:00:: 1 7 -satiric%5:00:00:sarcastic:00 1 1 -satirical%5:00:00:sarcastic:00 1 1 -satirically%4:02:00:: 1 1 -satirist%1:18:00:: 1 1 -satisfaction%1:12:00:: 1 10 -satisfaction%1:21:00:: 3 1 -satisfaction%1:26:00:: 2 4 -satisfactorily%4:02:00:: 1 7 -satisfactory%3:00:00:: 1 14 -satisfactory%5:00:00:good:01 2 7 -satisfied%5:00:00:contented:00 1 11 -satisfy%2:34:01:: 3 8 -satisfy%2:37:00:: 2 8 -satisfy%2:42:00:: 1 13 -satisfying%5:00:00:rewarding:00 1 4 -saturate%2:30:01:: 1 1 -saturated%3:00:01:: 1 1 -saturated%5:00:00:wet:01 2 1 -saturation%1:04:00:: 2 1 -saturation%1:22:00:: 1 2 -saturday%1:28:00:: 1 26 -saturn%1:17:00:: 1 3 -sauce%1:13:00:: 1 1 -sausage%1:13:00:: 1 1 -saute%2:30:00:: 1 1 -savage%1:18:00:: 1 2 -savage%5:00:00:inhumane:00 1 6 -savage%5:00:00:noncivilized:00 3 1 -savage%5:00:00:wild:01 2 1 -savagely%4:02:00:: 1 7 -savagely%4:02:02:: 2 1 -savageness%1:07:00:: 1 1 -savannah%1:15:00:: 1 4 -save%2:30:00:: 6 4 -save%2:40:00:: 2 16 -save%2:40:01:: 5 4 -save%2:40:02:: 4 4 -save%2:40:03:: 10 1 -save%2:40:04:: 9 1 -save%2:41:00:: 3 4 -save%2:41:01:: 1 41 -save%2:41:02:: 7 2 -save%2:41:05:: 8 2 -saved%3:00:00:: 1 1 -saver%1:18:01:: 1 1 -saving%1:04:00:: 1 6 -saving%1:04:02:: 2 1 -saving%5:00:00:good:02 1 1 -savings%1:21:00:: 1 3 -savior%1:18:01:: 1 1 -savor%2:37:00:: 1 4 -savor%2:39:00:: 3 1 -savor%2:39:02:: 2 1 -savory%3:00:00:: 1 1 -savvy%2:31:00:: 1 1 -saw%2:35:00:: 1 1 -sawdust%1:27:00:: 1 1 -sawdust_saloon%1:06:00:: 1 1 -sawhorse%1:06:00:: 1 1 -say%2:32:00:: 1 1861 -say%2:32:01:: 2 254 -say%2:32:02:: 6 4 -say%2:32:03:: 3 29 -say%2:32:04:: 5 8 -say%2:32:07:: 7 2 -say%2:32:15:: 8 1 -say%2:42:00:: 4 8 -scab%2:29:00:: 1 1 -scaffold%1:06:01:: 1 2 -scalar_field%1:14:00:: 1 2 -scale%1:20:00:: 4 2 -scale%1:24:00:: 2 10 -scale%1:24:01:: 3 6 -scale%1:24:03:: 1 10 -scale%2:36:00:: 2 1 -scale%2:42:00:: 1 1 -scaled%5:00:02:armored:02 1 1 -scalloped%5:00:00:rough:02 1 1 -scalp%1:08:00:: 1 1 -scamper%1:04:00:: 1 1 -scamper%2:38:00:: 1 5 -scampering%5:00:00:moving:02 1 1 -scan%1:04:00:: 1 3 -scan%2:31:01:: 3 2 -scan%2:35:00:: 4 1 -scan%2:39:00:: 2 6 -scan%2:39:01:: 1 9 -scandal%1:10:00:: 1 3 -scandal%1:11:00:: 2 1 -scandalize%2:37:00:: 1 1 -scandinavian%3:01:02:: 1 1 -scant%5:00:00:insufficient:00 1 2 -scanty%5:00:00:meager:00 1 1 -scapular%1:05:00:: 1 1 -scar%1:07:00:: 2 4 -scar%1:26:00:: 1 7 -scarce%4:02:00:: 1 1 -scarce%5:00:00:insufficient:00 1 1 -scarcely%4:02:00:: 1 10 -scarcity%1:07:00:: 1 1 -scare%2:37:00:: 1 4 -scare%2:37:04:: 2 2 -scare_off%2:37:00:: 1 2 -scarecrowish%5:00:00:thin:03 1 1 -scared%5:00:00:afraid(p):00 1 9 -scarf%1:06:00:: 1 2 -scarify%2:35:00:: 1 1 -scarred%5:00:00:blemished:00 2 1 -scarred%5:00:00:marked:00 1 1 -scathing%5:00:00:critical:01 1 1 -scathingly%4:02:00:: 1 1 -scatter%2:30:00:: 5 1 -scatter%2:35:00:: 3 2 -scatter%2:35:01:: 4 1 -scatter%2:38:00:: 2 4 -scatter%2:38:01:: 1 5 -scattered%5:00:00:distributed:00 1 7 -scattered%5:00:00:sporadic:00 2 1 -scavenger%1:27:00:: 1 1 -scavenging%5:00:00:thrifty:00 1 1 -scenario%1:10:00:: 1 1 -scene%1:06:01:: 8 1 -scene%1:09:00:: 3 13 -scene%1:10:00:: 6 7 -scene%1:10:01:: 4 8 -scene%1:11:00:: 2 17 -scene%1:15:00:: 1 18 -scene%1:26:00:: 5 7 -scene%1:26:01:: 7 1 -scenery%1:06:00:: 1 3 -scenery%1:15:00:: 2 1 -scenic%5:00:00:beautiful:00 1 5 -scent%1:07:00:: 3 1 -scent%1:09:00:: 2 1 -scent%1:09:01:: 1 3 -scented%3:00:00:: 1 2 -scented%5:00:01:fragrant:00 3 1 -scented%5:00:02:fragrant:00 2 1 -scepticism%1:09:00:: 1 1 -schedule%1:09:00:: 1 11 -schedule%1:10:00:: 2 6 -schedule%2:31:00:: 1 21 -schedule%2:32:00:: 2 6 -scheduled%3:00:00:: 1 1 -schematic%5:00:00:nonrepresentational:00 1 3 -scheme%1:09:00:: 1 10 -scheme%1:10:00:: 2 1 -scheme%2:31:00:: 1 1 -scherzo%1:10:00:: 1 1 -schism%1:04:00:: 1 1 -schizophrenic%1:18:00:: 1 1 -schizophrenic%3:01:00:: 2 1 -schizophrenic%5:00:01:insane:00 1 4 -scholar%1:18:00:: 1 7 -scholar%1:18:01:: 2 1 -scholarly%3:00:00:: 1 2 -scholarship%1:09:00:: 2 4 -scholarship%1:21:00:: 1 7 -scholastic%1:18:00:: 1 1 -scholastic%3:01:00:: 1 2 -scholastic%3:01:01:: 2 1 -scholastically%4:02:00:: 1 1 -school%1:06:00:: 2 12 -school%1:09:00:: 3 6 -school%1:14:00:: 1 125 -school%1:14:02:: 4 4 -school%1:28:00:: 5 1 -school%2:41:01:: 1 2 -school_board%1:14:00:: 1 2 -school_principal%1:18:00:: 1 3 -school_superintendent%1:18:00:: 1 4 -school_system%1:06:00:: 1 3 -school_teacher%1:18:00:: 1 1 -school_term%1:28:00:: 1 1 -school_text%1:10:00:: 1 1 -school_year%1:28:00:: 1 2 -schoolboy%1:18:00:: 1 2 -schooldays%1:28:00:: 1 2 -schoolgirl%1:18:00:: 1 2 -schoolgirlish%5:00:00:young:00 1 1 -schoolhouse%1:06:00:: 1 3 -schooling%1:04:00:: 1 1 -schoolmarm%1:18:00:: 1 1 -schoolmaster%1:18:00:: 1 1 -schoolmate%1:18:00:: 1 3 -schoolmistress%1:18:00:: 1 1 -schoolroom%1:06:00:: 1 3 -sciatica%1:26:00:: 1 2 -science%1:09:00:: 2 5 -science%1:09:01:: 1 26 -science%1:09:02:: 3 1 -science_fiction%1:10:00:: 1 2 -scientific%3:00:00:: 2 12 -scientific%3:01:00:: 1 12 -scientifically%4:02:00:: 1 3 -scientist%1:18:00:: 1 7 -scimitar%1:06:00:: 1 2 -sclerotic%3:01:01:: 1 1 -scoff%2:32:00:: 1 4 -scoffing%1:10:00:: 1 2 -scold%2:32:00:: 1 3 -scold%2:32:01:: 2 1 -scolding%3:44:00:: 1 2 -scoop%1:23:00:: 1 1 -scoop_out%2:35:00:: 1 1 -scoop_up%2:35:00:: 1 3 -scoot%2:38:00:: 1 3 -scope%1:07:00:: 1 15 -scorch%2:30:03:: 1 1 -scorched%5:00:00:dry:01 1 1 -scorching%5:00:01:hot:01 1 1 -score%1:09:00:: 1 18 -score%1:09:01:: 6 1 -score%1:10:00:: 2 8 -score%1:14:00:: 4 4 -score%1:16:00:: 5 1 -score%1:23:00:: 3 4 -score%2:32:00:: 3 3 -score%2:33:00:: 1 18 -score%2:35:00:: 2 12 -scoreboard%1:06:00:: 1 1 -scoreless%5:00:00:unsuccessful:00 1 2 -scores%1:23:00:: 1 2 -scorn%1:10:00:: 2 1 -scorn%1:12:00:: 1 6 -scorn%2:32:00:: 2 1 -scorn%2:37:00:: 1 2 -scornful%5:00:00:disrespectful:00 1 2 -scornfully%4:02:00:: 1 2 -scot%1:18:00:: 1 5 -scot_free%4:02:00:: 1 1 -scotch_and_soda%1:13:00:: 1 1 -scotchman%1:18:00:: 1 1 -scotland%1:15:00:: 1 2 -scotland_yard%1:14:00:: 1 2 -scoundrel%1:18:00:: 1 1 -scour%2:35:01:: 2 1 -scour%2:35:03:: 1 1 -scoured%5:00:00:worn:00 1 1 -scourge%1:06:00:: 1 1 -scouring%1:04:00:: 2 1 -scouring%1:04:01:: 1 1 -scours%1:26:00:: 1 5 -scout%1:18:01:: 1 1 -scout%2:39:00:: 1 2 -scouting%1:04:00:: 1 1 -scowl%1:10:00:: 1 1 -scowl%2:29:00:: 1 3 -scraggly%5:00:00:untidy:00 1 1 -scramble%1:04:01:: 1 1 -scramble%2:38:00:: 1 9 -scramble%2:38:01:: 2 4 -scrambled%5:00:00:disorganized:00 1 1 -scrap%1:17:00:: 1 1 -scrap%2:40:00:: 1 1 -scrap%5:00:00:useless:00 1 1 -scrape%1:11:00:: 1 2 -scrape%2:35:00:: 1 4 -scrape%2:35:02:: 3 1 -scrape%2:36:00:: 2 1 -scrape_up%2:35:00:: 1 1 -scrapheap%1:15:00:: 1 1 -scraping%1:11:00:: 2 1 -scraping%1:17:00:: 1 1 -scratch%1:26:00:: 1 1 -scratch%2:35:00:: 2 8 -scratch%2:35:03:: 1 9 -scratch%2:39:00:: 3 1 -scratched%5:00:00:damaged:00 1 1 -scratchiness%1:07:00:: 1 1 -scratching%5:00:00:sharp:04 1 1 -scratchy%5:00:00:rough:00 1 1 -scrawl%2:36:00:: 1 1 -scrawled%5:00:00:written:00 1 1 -scrawny%5:00:00:thin:03 1 2 -scream%1:10:00:: 1 6 -scream%1:11:00:: 2 1 -scream%2:32:01:: 1 25 -scream%2:32:08:: 2 2 -scream%2:39:00:: 3 1 -screaming%1:10:00:: 1 1 -screaming%5:00:00:intense:00 2 1 -screaming%5:00:00:noisy:00 1 2 -screech%1:10:00:: 2 1 -screech%1:11:00:: 1 1 -screech%2:32:00:: 2 3 -screech%2:39:00:: 1 5 -screeching%1:11:00:: 1 1 -screeching%5:00:00:noisy:00 1 1 -screechy%5:00:00:high:03 1 1 -screen%1:06:00:: 5 1 -screen%1:06:01:: 4 2 -screen%1:06:04:: 2 3 -screen%1:06:05:: 3 2 -screen%1:06:06:: 1 4 -screen%2:31:00:: 2 2 -screen%2:41:01:: 1 2 -screen_door%1:06:00:: 1 2 -screen_pass%1:04:00:: 1 1 -screenplay%1:10:00:: 1 1 -screw%2:35:00:: 1 11 -screw-loose%5:00:00:insane:00 1 1 -screw_up%2:30:00:: 1 1 -screwdriver%1:06:00:: 1 1 -scribble%2:32:00:: 1 1 -scribe%2:35:00:: 1 3 -scrimmage%1:04:00:: 2 1 -scrimmage%1:04:01:: 1 1 -scrimmage%2:36:00:: 1 1 -script%1:10:00:: 1 6 -scriptural%3:01:00:: 1 2 -scripture%1:10:00:: 1 5 -scrounge%2:40:00:: 1 1 -scrub%2:29:00:: 2 1 -scrub%2:35:00:: 1 4 -scrub_oak%1:20:00:: 1 1 -scrubbing%1:04:00:: 1 1 -scrupulously%4:02:00:: 1 1 -scrutin_de_liste_system%1:09:00:: 1 1 -scrutin_uninominal_voting_system%1:09:00:: 1 1 -scrutinize%2:39:00:: 1 6 -scrutiny%1:04:00:: 1 3 -scrutiny%1:04:01:: 2 2 -scud%2:38:00:: 1 1 -scuff%2:38:00:: 1 1 -scuffle%1:04:00:: 1 3 -sculptor%1:18:00:: 1 3 -sculptural%3:01:00:: 1 2 -sculpture%1:04:00:: 2 3 -sculpture%1:06:00:: 1 9 -sculpture%2:36:00:: 1 2 -sculptured%5:00:00:carved:00 1 1 -scurry%2:38:00:: 1 2 -scurrying%5:00:00:fast:01 1 2 -scuttle%2:38:00:: 1 3 -sea%1:17:00:: 1 37 -sea%1:23:00:: 2 3 -sea%3:00:00:: 1 1 -sea_bird%1:05:00:: 1 1 -sea_bottom%1:17:00:: 1 1 -sea_power%1:07:00:: 1 1 -sea_spray%1:27:00:: 1 1 -seacoast%1:17:00:: 1 1 -seafarer%1:18:00:: 1 1 -seafaring%5:00:00:sea(a):00 1 1 -seagull%1:05:00:: 1 1 -seahorse%1:05:01:: 1 1 -seal%1:06:00:: 2 1 -seal%1:06:01:: 1 3 -seal%2:31:00:: 3 2 -seal%2:35:00:: 2 3 -seal%2:35:03:: 1 3 -seal_of_approval%1:10:00:: 1 1 -seal_off%2:33:00:: 2 1 -seal_off%2:35:00:: 1 3 -sealed_off%5:00:00:sealed:01 1 2 -sealing%1:04:00:: 1 1 -seam%1:06:00:: 1 2 -seaman%1:18:00:: 1 2 -seaquake%1:11:00:: 1 1 -sear%2:30:00:: 1 2 -search%1:04:00:: 1 14 -search%1:04:02:: 2 5 -search%2:31:00:: 3 3 -search%2:35:00:: 1 13 -search%2:35:01:: 4 2 -search%2:39:00:: 2 11 -search_warrant%1:10:00:: 1 1 -searching%5:00:00:inquiring:00 1 2 -searchlight%1:06:00:: 1 3 -season%1:28:00:: 2 14 -season%1:28:02:: 1 40 -seasonal%3:00:00:: 1 2 -seat%1:06:00:: 4 2 -seat%1:06:01:: 3 2 -seat%1:08:00:: 2 4 -seat%1:15:00:: 5 1 -seat%1:15:01:: 1 9 -seat%2:35:00:: 1 9 -seat%2:41:00:: 3 2 -seat%2:42:00:: 2 2 -seated%3:00:00:: 1 7 -seattle%1:15:00:: 1 2 -seawater%1:27:00:: 1 1 -seaweed%1:05:00:: 1 1 -sec%1:28:00:: 1 3 -secede%2:41:00:: 1 13 -secessionist%1:18:00:: 1 1 -seclude%2:30:00:: 1 1 -secluded%5:00:00:private:00 1 1 -second%1:04:00:: 3 2 -second%1:28:00:: 1 24 -second%1:28:01:: 2 6 -second%4:02:00:: 1 9 -second%5:00:00:intermediate:00 2 10 -second%5:00:00:ordinal:00 1 108 -second-rate%5:00:00:inferior:02 1 1 -second_base%1:06:00:: 1 1 -second_baseman%1:18:00:: 1 1 -second_coming%1:11:00:: 1 1 -second_cousin%1:18:00:: 1 1 -second_half%1:28:00:: 1 2 -second_hand%1:18:00:: 1 1 -second_moment%1:09:00:: 1 3 -second_thought%1:09:00:: 1 1 -secondarily%4:02:00:: 1 2 -secondary%3:00:01:: 1 11 -secondary_school%1:14:00:: 1 2 -secondhand%4:02:00:: 1 1 -secondhand%5:00:00:old:01 2 1 -secondhand%5:00:00:secondary:01 1 1 -secondly%4:02:00:: 1 2 -secrecy%1:07:02:: 1 2 -secrecy%1:26:00:: 2 1 -secret%1:10:00:: 1 9 -secret%5:00:00:concealed:00 1 10 -secret%5:00:00:inward:00 5 1 -secret%5:00:00:unacknowledged:00 3 2 -secret%5:00:01:covert:00 2 2 -secret%5:00:03:covert:00 4 1 -secretarial_school%1:14:00:: 1 1 -secretary%1:18:00:: 2 14 -secretary%1:18:01:: 1 14 -secretary_general%1:18:00:: 1 1 -secretary_of_state%1:18:00:: 2 2 -secretary_of_state%1:18:01:: 1 6 -secretary_of_the_interior%1:04:00:: 1 18 -secretary_of_the_treasury%1:18:00:: 1 13 -secrete%2:29:00:: 1 1 -secretion%1:08:00:: 2 1 -secretion%1:22:00:: 1 3 -secretly%4:02:00:: 1 3 -secretly%4:02:02:: 2 1 -sect%1:14:01:: 1 1 -section%1:06:00:: 4 10 -section%1:09:00:: 6 1 -section%1:10:00:: 1 43 -section%1:14:02:: 5 1 -section%1:15:01:: 3 11 -section%1:17:00:: 2 31 -sectioned%5:00:00:divided:00 1 1 -sector%1:09:00:: 3 3 -sector%1:14:00:: 2 4 -sector%1:25:00:: 1 5 -secular%5:00:00:profane:00 1 6 -secularism%1:09:00:: 1 1 -secularist%1:18:00:: 1 1 -secularize%2:30:00:: 1 1 -secularized%5:00:00:profane:00 1 2 -secure%2:32:00:: 4 1 -secure%2:35:01:: 2 4 -secure%2:40:00:: 1 20 -secure%2:40:01:: 3 2 -secure%3:00:01:: 1 3 -secure%3:00:02:: 2 2 -secure%3:00:04:: 3 1 -secure%5:00:01:safe:01 4 1 -secured%5:00:00:fastened:00 1 1 -securely%4:02:00:: 1 1 -security%1:12:00:: 3 1 -security%1:21:01:: 2 5 -security%1:26:00:: 1 17 -sedan%1:06:00:: 1 2 -sedate%5:00:00:decorous:00 1 1 -sedentary%5:00:00:inactive:01 1 1 -sediment%1:17:00:: 1 3 -sedimentation%1:19:00:: 1 2 -seduction%1:04:00:: 1 1 -seductive%3:00:00:: 1 1 -sedulously%4:02:00:: 1 1 -see%2:31:00:: 5 47 -see%2:31:01:: 2 159 -see%2:31:02:: 6 40 -see%2:31:03:: 10 22 -see%2:31:08:: 19 1 -see%2:32:00:: 9 27 -see%2:35:09:: 15 4 -see%2:36:00:: 4 58 -see%2:38:00:: 8 27 -see%2:39:00:: 1 613 -see%2:39:02:: 3 140 -see%2:39:03:: 7 29 -see%2:39:04:: 16 3 -see%2:39:05:: 18 1 -see%2:41:00:: 17 1 -see%2:41:10:: 13 10 -see%2:41:11:: 11 13 -see%2:41:12:: 12 12 -see%2:41:14:: 14 7 -see%4:02:00:: 1 36 -see_also%4:02:00:: 1 2 -see_eye_to_eye%2:32:00:: 1 1 -see_to_it%2:31:00:: 1 4 -seed%1:20:00:: 1 12 -seed%1:20:02:: 2 5 -seed%2:35:00:: 1 1 -seed_grain%1:21:00:: 1 2 -seedbed%1:06:00:: 1 2 -seedling%1:20:00:: 1 1 -seedpod%1:20:00:: 1 1 -seek%2:35:00:: 2 41 -seek%2:40:00:: 1 44 -seek%2:41:00:: 3 32 -seek_out%2:35:00:: 1 14 -seeker%1:18:00:: 1 1 -seeking%3:44:00:: 1 1 -seem%2:39:00:: 1 607 -seem%2:39:01:: 2 84 -seeming%5:00:00:superficial:00 1 6 -seemingly%4:02:00:: 1 9 -seen%5:00:00:witnessed:00 1 1 -seep%2:38:00:: 1 4 -seepage%1:11:00:: 1 1 -seeping%5:00:00:leaky:00 1 1 -seer%1:18:00:: 1 1 -seething%5:00:00:agitated:02 1 1 -segment%1:06:00:: 1 4 -segmental%5:00:00:divided:00 2 1 -segmental%5:00:02:divided:00 1 1 -segregate%2:41:00:: 1 5 -segregated%3:00:00:: 1 2 -segregationist%1:18:00:: 1 1 -seismic%5:00:00:unstable:00 1 1 -seismograph%1:06:00:: 1 2 -seize%2:35:00:: 1 13 -seize%2:35:01:: 2 5 -seize%2:40:01:: 3 4 -seize%2:40:02:: 4 3 -seizure%1:04:01:: 2 1 -seizure%1:26:00:: 1 3 -seldom%4:02:00:: 1 10 -select%2:31:00:: 1 58 -select%5:00:02:superior:02 1 2 -selected%3:00:00:: 1 2 -selection%1:04:00:: 1 13 -selection%1:09:00:: 3 1 -selection%1:14:00:: 2 2 -selective%5:00:00:discriminating:00 1 3 -selective_service%1:14:00:: 1 1 -selective_service_system%1:14:00:: 1 1 -selectman%1:18:00:: 1 1 -self%1:09:00:: 1 16 -self%1:18:00:: 2 7 -self%3:01:00:: 2 1 -self%5:00:00:same:02 1 2 -self-aggrandisement%1:04:00:: 1 1 -self-assertive%5:00:00:aggressive:00 1 2 -self-awareness%1:09:00:: 1 1 -self-conceited%5:00:00:proud:00 1 1 -self-confidence%1:09:00:: 1 3 -self-confident%5:00:00:confident:00 1 2 -self-conscious%5:00:00:conscious:00 1 1 -self-consciously%4:02:00:: 1 1 -self-consciously%4:02:02:: 2 1 -self-consciousness%1:12:00:: 1 2 -self-consistent%5:00:00:consistent:00 1 1 -self-contained%5:00:00:complete:00 1 2 -self-control%1:04:00:: 1 1 -self-deception%1:09:00:: 1 2 -self-defeating%5:00:00:unsuccessful:00 1 1 -self-defense%1:04:00:: 1 1 -self-destruction%1:04:00:: 1 1 -self-destructive%5:00:00:dangerous:00 1 1 -self-determination%1:26:00:: 1 3 -self-discipline%1:07:00:: 1 1 -self-effacement%1:04:00:: 1 1 -self-effacing%5:00:00:unassertive:00 1 1 -self-employed%5:00:00:employed:00 1 1 -self-enclosed%5:00:00:enclosed:00 1 1 -self-esteem%1:12:00:: 1 3 -self-evident%5:00:00:obvious:00 1 2 -self-flagellation%1:04:00:: 1 1 -self-government%1:26:00:: 1 2 -self-help%1:04:00:: 1 1 -self-imposed%5:00:00:voluntary:01 1 1 -self-indulgence%1:07:00:: 1 1 -self-interest%1:07:01:: 1 1 -self-locking%5:00:00:automatic:00 1 1 -self-preservation%1:04:00:: 1 1 -self-pride%1:12:00:: 1 1 -self-reliance%1:26:00:: 1 1 -self-reliant%5:00:00:independent:00 1 1 -self-respect%1:07:00:: 1 2 -self-sacrifice%1:04:00:: 1 1 -self-satisfaction%1:12:00:: 1 4 -self-sufficient%5:00:00:independent:00 1 2 -self-sustaining%5:00:00:independent:00 1 4 -self-whispered%5:00:00:inward:00 1 1 -self-will%1:07:00:: 1 1 -self-will%1:07:01:: 2 1 -self_acceptance%1:07:00:: 1 1 -selfish%3:00:00:: 1 3 -selfishness%1:07:00:: 1 2 -sell%2:32:00:: 3 5 -sell%2:40:00:: 1 73 -sell%2:40:01:: 4 4 -sell%2:40:02:: 5 2 -sell%2:42:00:: 2 12 -sell_out%2:32:10:: 2 1 -sell_out%2:40:00:: 1 2 -selling%1:04:00:: 1 9 -semantic%3:01:00:: 1 3 -semantically%4:02:00:: 1 2 -semblance%1:07:00:: 1 1 -semester_hour%1:04:00:: 1 3 -semi%5:00:00:fractional:00 1 4 -semi%5:00:00:similar:00 2 2 -semi-processed%5:00:00:processed:00 1 1 -semiempirical%5:00:00:empirical:00 1 1 -semiliterate%5:00:00:educated:00 1 2 -semiliterate%5:00:01:illiterate:00 2 1 -semiminor_axis%1:09:00:: 1 1 -seminarian%1:18:00:: 1 1 -seminary%1:14:01:: 1 2 -semiprecious%5:00:00:valuable:00 1 1 -semipublic%5:00:00:public:00 1 1 -semiskilled%5:00:00:unskilled:00 1 1 -semitrance%1:09:00:: 1 1 -senate%1:14:00:: 1 6 -senate%1:14:01:: 2 4 -senator%1:18:00:: 1 6 -senatorial%3:01:00:: 1 1 -send%2:32:00:: 3 20 -send%2:32:02:: 6 5 -send%2:32:03:: 8 2 -send%2:33:00:: 5 5 -send%2:35:00:: 2 20 -send%2:38:00:: 4 14 -send%2:38:01:: 1 79 -send%2:40:00:: 7 3 -send-off%1:10:00:: 1 1 -send_away%2:41:01:: 1 1 -send_for%2:32:00:: 1 4 -send_in%2:35:00:: 1 1 -send_on%2:38:00:: 1 2 -send_out%2:35:00:: 1 10 -send_word%2:32:00:: 1 1 -sending%1:04:00:: 1 4 -senile%5:00:00:old:02 1 1 -senior%1:18:00:: 1 3 -senior%3:00:00:: 1 3 -senior%5:00:00:last:00 2 1 -senior_class%1:14:00:: 1 1 -senior_high%1:14:00:: 1 1 -senior_high_school%1:14:00:: 1 2 -seniority%1:26:00:: 1 1 -senor%1:18:00:: 1 1 -senora%1:18:00:: 1 1 -sensation%1:09:00:: 1 14 -sensation%1:12:00:: 3 1 -sensation%1:18:00:: 2 1 -sensational%3:00:00:: 1 3 -sensational%5:00:00:impressive:00 2 3 -sense%1:09:02:: 3 16 -sense%1:09:03:: 4 15 -sense%1:09:04:: 5 8 -sense%1:09:05:: 1 37 -sense%1:09:06:: 7 1 -sense%1:10:00:: 2 23 -sense%1:10:01:: 6 3 -sense%2:39:00:: 1 26 -sense_datum%1:09:00:: 1 3 -sense_of_direction%1:09:00:: 1 1 -sense_of_humor%1:07:00:: 1 2 -sense_of_purpose%1:07:00:: 1 2 -sense_of_responsibility%1:09:00:: 1 1 -sense_of_touch%1:09:00:: 1 10 -sense_organ%1:08:00:: 1 1 -senseless%5:00:00:unconscious:00 2 1 -senseless%5:00:00:unreasonable:00 1 2 -sensibility%1:09:00:: 1 4 -sensibility%1:12:00:: 2 2 -sensible%3:00:04:: 1 3 -sensibly%4:02:00:: 1 1 -sensing%1:09:00:: 1 3 -sensitive%3:00:01:: 1 13 -sensitive%3:00:02:: 2 7 -sensitivity%1:07:00:: 2 4 -sensitivity%1:09:00:: 1 8 -sensitivity%1:12:00:: 3 3 -sensitize%2:30:00:: 1 2 -sensor%1:06:00:: 1 7 -sensory%3:00:00:: 2 3 -sensory%5:00:00:afferent:00 1 4 -sensual%5:00:00:physical:00 1 1 -sensuality%1:12:00:: 1 2 -sensuous%5:00:00:aesthetic:00 1 1 -sentence%1:04:00:: 2 5 -sentence%1:10:00:: 1 31 -sentence%1:28:00:: 3 3 -sentence%2:32:00:: 1 6 -sentence_structure%1:09:00:: 1 1 -sentient%3:00:00:: 1 1 -sentiment%1:09:00:: 2 6 -sentiment%1:12:00:: 1 7 -sentimental%5:00:00:emotional:00 2 1 -sentimental%5:00:00:tender:03 1 1 -sentimentalist%1:18:00:: 1 1 -sentimentality%1:07:00:: 1 1 -sentimentalize%2:30:00:: 1 1 -sentinel%1:18:00:: 1 1 -sentry%1:18:00:: 1 1 -separable%5:00:01:divisible:00 1 2 -separate%2:30:03:: 10 1 -separate%2:31:00:: 6 3 -separate%2:31:01:: 3 7 -separate%2:35:01:: 2 8 -separate%2:35:02:: 5 3 -separate%2:38:00:: 9 1 -separate%2:38:01:: 7 2 -separate%2:41:01:: 4 6 -separate%2:41:02:: 8 1 -separate%2:42:00:: 1 18 -separate%3:00:00:: 1 20 -separate%5:00:00:detached:00 3 2 -separate%5:00:01:individual:00 2 4 -separate_out%2:35:00:: 1 2 -separated%5:00:00:distributed:00 2 2 -separated%5:00:00:separate:00 1 5 -separated%5:00:02:divided:00 3 1 -separately%4:02:02:: 1 4 -separation%1:04:00:: 5 1 -separation%1:04:03:: 4 1 -separation%1:07:00:: 3 1 -separation%1:11:00:: 2 3 -separation%1:26:00:: 1 3 -sepia%1:07:00:: 1 1 -sept%1:14:00:: 2 1 -sept%1:28:00:: 1 3 -septation%1:04:00:: 1 1 -september%1:28:00:: 1 18 -septic%3:00:00:: 1 3 -septum%1:08:00:: 1 6 -sequence%1:04:00:: 4 3 -sequence%1:06:00:: 3 3 -sequence%1:07:00:: 2 3 -sequence%1:14:00:: 1 13 -sequence%2:31:00:: 1 1 -sequential%5:00:00:ordered:00 1 1 -sequestration%1:04:00:: 1 1 -serenade%1:10:01:: 1 1 -serenade%2:36:00:: 1 1 -serene%5:00:00:peaceful:00 1 5 -serenely%4:02:00:: 1 2 -serenity%1:07:00:: 1 2 -serenity%1:12:00:: 2 1 -serge%1:06:00:: 1 1 -sergeant%1:18:00:: 2 3 -sergeant%1:18:01:: 1 6 -serial%5:00:00:ordered:00 1 1 -serialism%1:10:00:: 1 1 -series%1:10:00:: 3 3 -series%1:10:01:: 2 7 -series%1:11:00:: 4 2 -series%1:14:00:: 1 40 -serious%3:00:00:: 1 29 -serious%5:00:00:critical:03 3 4 -serious%5:00:00:important:00 2 10 -serious%5:00:00:intellectual:00 4 3 -serious_music%1:10:00:: 1 1 -seriously%4:02:00:: 1 19 -seriously%4:02:01:: 2 2 -seriousness%1:07:01:: 2 1 -seriousness%1:12:00:: 1 2 -sermon%1:10:00:: 1 4 -serological%3:01:00:: 1 1 -serpent%1:05:00:: 1 5 -serratus%1:08:00:: 1 2 -serum%1:08:00:: 1 34 -servant%1:18:00:: 1 9 -serve%2:33:00:: 2 36 -serve%2:34:00:: 6 20 -serve%2:34:01:: 5 21 -serve%2:35:00:: 11 3 -serve%2:41:00:: 4 23 -serve%2:41:01:: 10 3 -serve%2:41:02:: 7 19 -serve%2:42:00:: 9 3 -serve%2:42:01:: 3 24 -serve%2:42:02:: 8 7 -serve%2:42:03:: 1 55 -serve_up%2:34:00:: 1 1 -service%1:04:00:: 2 8 -service%1:04:01:: 3 5 -service%1:04:07:: 5 3 -service%1:04:08:: 1 24 -service%1:14:00:: 6 2 -service%1:14:05:: 4 4 -service%2:30:00:: 2 1 -service%2:41:00:: 1 3 -service_entrance%1:06:00:: 1 1 -serviceable%3:00:00:: 1 2 -services%1:04:00:: 1 29 -serviette%1:06:00:: 1 1 -servile%5:00:00:slave(a):00 3 1 -session%1:04:00:: 3 4 -session%1:10:00:: 1 13 -session%1:28:00:: 2 6 -set%1:04:00:: 3 6 -set%1:04:01:: 7 1 -set%1:06:00:: 4 3 -set%1:09:01:: 6 1 -set%1:14:00:: 1 23 -set%1:14:01:: 5 2 -set%1:14:02:: 2 14 -set%2:30:01:: 5 9 -set%2:30:02:: 8 5 -set%2:30:07:: 14 1 -set%2:30:09:: 7 5 -set%2:31:04:: 2 29 -set%2:32:00:: 3 12 -set%2:32:01:: 4 10 -set%2:35:00:: 1 30 -set%2:35:02:: 6 6 -set%2:35:09:: 12 2 -set%2:36:00:: 11 2 -set%2:36:01:: 9 3 -set%2:36:12:: 13 1 -set%2:38:00:: 10 2 -set%5:00:00:arranged:00 4 1 -set%5:00:00:nonmoving:00 2 3 -set%5:00:00:ready:00 1 4 -set%5:00:00:settled:01 3 2 -set-apart%5:00:00:separate:00 1 1 -set_ablaze%2:43:00:: 1 1 -set_about%2:36:00:: 2 1 -set_about%2:41:00:: 1 3 -set_apart%2:30:01:: 2 1 -set_apart%2:31:00:: 1 1 -set_aside%2:30:00:: 2 2 -set_aside%2:31:00:: 1 6 -set_back%2:41:00:: 2 1 -set_back%2:42:01:: 1 1 -set_decoration%1:06:00:: 1 1 -set_down%2:32:00:: 1 2 -set_down%2:35:01:: 3 1 -set_down%2:35:02:: 4 1 -set_down%2:38:01:: 2 1 -set_forth%2:32:00:: 1 15 -set_in%2:42:00:: 1 1 -set_in_motion%2:35:05:: 1 4 -set_off%2:30:00:: 4 2 -set_off%2:30:01:: 6 1 -set_off%2:30:02:: 3 2 -set_off%2:36:00:: 1 4 -set_off%2:38:00:: 2 3 -set_off%2:42:00:: 5 1 -set_on_fire%2:43:01:: 1 2 -set_out%2:30:00:: 1 9 -set_out%2:35:00:: 2 5 -set_out%2:38:00:: 3 3 -set_up%2:30:00:: 4 6 -set_up%2:35:00:: 5 4 -set_up%2:35:02:: 9 2 -set_up%2:35:04:: 10 1 -set_up%2:36:00:: 2 10 -set_up%2:36:01:: 3 8 -set_up%2:36:02:: 6 3 -set_up%2:36:03:: 8 2 -set_up%2:41:00:: 7 2 -set_up%2:41:02:: 1 17 -set_up%5:00:00:established:00 1 4 -setback%1:11:01:: 1 3 -setting%1:06:01:: 3 1 -setting%1:15:00:: 1 7 -setting%1:26:00:: 2 2 -settle%2:30:00:: 4 7 -settle%2:30:02:: 7 3 -settle%2:30:03:: 9 2 -settle%2:30:05:: 8 2 -settle%2:31:00:: 2 10 -settle%2:32:00:: 3 8 -settle%2:32:01:: 13 1 -settle%2:32:02:: 5 5 -settle%2:32:04:: 12 1 -settle%2:35:01:: 11 1 -settle%2:38:00:: 10 1 -settle%2:38:01:: 1 16 -settle%2:38:07:: 6 4 -settle_down%2:30:00:: 2 4 -settle_down%2:37:00:: 3 1 -settle_down%2:38:00:: 1 4 -settle_on%2:30:00:: 1 1 -settled%3:00:01:: 2 1 -settled%3:00:02:: 1 2 -settled%5:00:00:inhabited:00 3 1 -settlement%1:04:01:: 4 2 -settlement%1:09:00:: 5 1 -settlement%1:10:00:: 3 2 -settlement%1:14:00:: 1 7 -settlement%1:14:01:: 2 2 -settler%1:18:00:: 1 10 -setup%1:06:00:: 1 2 -setup%1:07:00:: 2 1 -seven%1:23:00:: 1 3 -seven%5:00:00:cardinal:00 1 33 -seventeen%5:00:00:cardinal:00 1 10 -seventeenth%5:00:00:ordinal:00 1 3 -seventh%5:00:00:ordinal:00 1 4 -seventy%5:00:00:cardinal:00 1 1 -sever%2:35:00:: 2 3 -sever%2:35:01:: 1 5 -several%5:00:00:different:00 2 10 -several%5:00:00:individual:00 1 16 -several%5:00:00:some(a):00 3 112 -severalty%1:26:00:: 1 1 -severe%5:00:00:critical:03 5 1 -severe%5:00:00:intense:00 1 8 -severe%5:00:00:plain:01 3 2 -severe%5:00:00:strong:00 2 3 -severe%5:00:02:nonindulgent:00 4 1 -severely%4:02:01:: 1 8 -severely%4:02:02:: 2 3 -severely%4:02:03:: 3 1 -severing%1:04:00:: 1 1 -severity%1:07:01:: 1 2 -sew%2:35:00:: 1 5 -sewage%1:27:00:: 1 19 -sewage_disposal%1:04:00:: 1 2 -sewage_system%1:06:00:: 1 5 -sewer%1:06:00:: 1 4 -sewer%1:18:00:: 2 1 -sewer_line%1:06:00:: 1 1 -sewing%1:04:00:: 1 1 -sex%1:04:00:: 1 14 -sex%1:14:00:: 2 7 -sex_act%1:04:00:: 1 3 -sex_activity%1:04:00:: 1 1 -sextet%1:10:00:: 1 1 -sexual%3:00:00:: 2 1 -sexual%3:01:01:: 1 16 -sexual_activity%1:04:00:: 1 1 -sexual_arousal%1:26:00:: 1 1 -sexual_relation%1:04:00:: 1 1 -sexual_relationship%1:26:00:: 1 6 -sexual_union%1:04:00:: 1 1 -sexually%4:02:00:: 2 1 -sexually%4:02:01:: 1 4 -sexy%3:00:00:: 1 1 -sforzando%1:10:01:: 1 1 -shabby%5:00:00:worn:00 1 4 -shack%1:06:00:: 1 1 -shack_up%2:42:00:: 1 1 -shackle%1:06:00:: 1 2 -shackled%5:00:00:bound:01 1 2 -shade%1:06:00:: 3 3 -shade%1:07:00:: 2 5 -shade%1:10:00:: 4 2 -shade%1:26:00:: 1 9 -shade%2:35:00:: 3 1 -shade%2:36:00:: 2 1 -shade%2:43:00:: 1 2 -shaded%3:00:01:: 1 4 -shading%1:04:00:: 2 1 -shading%1:07:00:: 1 1 -shadow%1:07:00:: 6 1 -shadow%1:09:00:: 3 3 -shadow%1:10:00:: 5 1 -shadow%1:12:00:: 4 1 -shadow%1:15:00:: 2 8 -shadow%1:26:01:: 1 17 -shadow%2:38:00:: 1 3 -shadowed%5:00:00:shaded:01 1 1 -shadowy%5:00:02:shaded:01 1 1 -shaft%1:06:00:: 3 1 -shaft%1:10:00:: 1 3 -shaft%1:10:01:: 2 3 -shaft_of_light%1:19:00:: 1 1 -shaggy%5:00:00:ungroomed:00 1 1 -shake%2:29:00:: 2 14 -shake%2:30:00:: 5 6 -shake%2:30:01:: 8 1 -shake%2:37:00:: 6 2 -shake%2:38:00:: 1 42 -shake%2:38:01:: 3 8 -shake%2:38:02:: 4 6 -shake%2:38:04:: 7 1 -shake_hands%2:32:00:: 1 2 -shake_off%2:35:00:: 2 2 -shake_off%2:38:00:: 1 3 -shake_up%2:38:00:: 1 1 -shaken%5:00:00:agitated:00 1 2 -shakespeare%1:18:00:: 1 11 -shaking%1:04:00:: 1 2 -shaking%5:00:00:unsteady:00 1 4 -shaky%5:00:00:unstable:00 1 1 -shallow%3:00:01:: 1 6 -shallowness%1:07:01:: 1 1 -sham%1:06:00:: 1 2 -shamble%2:38:00:: 1 2 -shame%1:11:00:: 3 1 -shame%1:12:00:: 1 9 -shame%1:26:00:: 2 5 -shame%2:41:00:: 1 1 -shamefacedly%4:02:00:: 1 1 -shameful%5:00:00:dishonorable:00 1 2 -shamrock%1:20:02:: 1 1 -shantung%1:06:00:: 1 1 -shanty%1:06:00:: 1 1 -shape%1:03:00:: 2 6 -shape%1:07:00:: 1 37 -shape%1:07:01:: 5 2 -shape%1:08:00:: 3 3 -shape%1:09:01:: 4 2 -shape%1:26:00:: 6 1 -shape%2:30:00:: 3 3 -shape%2:31:00:: 1 11 -shape%2:36:00:: 2 6 -shaped%5:00:00:formed:00 1 4 -shapeless%5:00:00:unformed:00 1 3 -shapely%3:00:00:: 1 1 -shaping%1:22:00:: 1 1 -shard%1:06:00:: 1 1 -share%1:04:00:: 3 3 -share%1:04:01:: 4 3 -share%1:21:00:: 1 29 -share%1:21:01:: 2 12 -share%2:32:00:: 5 1 -share%2:40:00:: 4 4 -share%2:40:01:: 3 15 -share%2:40:02:: 2 19 -share%2:42:00:: 1 23 -share_in%2:41:00:: 1 8 -sharecrop_farmer%1:18:00:: 1 1 -shared%3:00:00:: 1 2 -sharer%1:18:00:: 1 1 -shark%1:05:00:: 1 1 -sharp%3:00:00:: 10 1 -sharp%3:00:04:: 8 2 -sharp%4:02:00:: 1 1 -sharp%5:00:00:distinct:00 1 9 -sharp%5:00:00:high:03 6 3 -sharp%5:00:00:intelligent:00 9 2 -sharp%5:00:00:perceptive:00 3 6 -sharp%5:00:00:pointed:00 2 6 -sharp%5:00:00:smart:00 4 6 -sharp%5:00:00:sour:00 11 1 -sharp%5:00:00:steep:00 7 3 -sharp%5:00:00:unpleasant:00 5 3 -sharp-limbed%5:00:00:limbed:00 1 1 -sharp-worded%5:00:00:unpleasant:00 1 1 -sharp_tongue%1:10:00:: 1 1 -sharpen%2:30:00:: 3 1 -sharpen%2:30:01:: 2 1 -sharpen%2:30:03:: 4 1 -sharpen%2:35:00:: 1 1 -sharply%4:02:00:: 1 14 -sharply%4:02:01:: 2 3 -sharply%4:02:02:: 3 2 -sharpness%1:09:01:: 1 1 -shatter%2:30:00:: 1 12 -shattered%5:00:00:broken:01 1 2 -shattering%5:00:00:loud:00 1 1 -shave%2:29:00:: 1 8 -shave%2:35:01:: 2 1 -shaved%3:00:00:: 1 2 -shaven%3:00:00:: 1 1 -shaving%1:04:00:: 1 3 -shaving%1:17:00:: 2 1 -shawl%1:06:00:: 1 2 -sheaf%1:06:00:: 1 1 -shear%1:19:00:: 1 21 -shear%2:35:00:: 1 3 -sheath%1:06:00:: 1 2 -sheath%1:06:01:: 3 1 -sheath%1:08:00:: 2 1 -shed%1:06:00:: 1 1 -shed%2:35:01:: 1 5 -shed%2:35:02:: 2 3 -shed_light_on%2:31:00:: 1 2 -sheep%1:05:00:: 1 14 -sheep%1:18:01:: 2 1 -sheep_rot%1:26:00:: 1 1 -sheeplike%5:00:00:docile:00 1 2 -sheepman%1:18:00:: 1 1 -sheepskin%1:27:00:: 1 1 -sheer%2:38:00:: 1 1 -sheer%5:00:00:complete:00 1 6 -sheer%5:00:00:pure:02 2 2 -sheer%5:00:00:steep:00 3 1 -sheet%1:06:00:: 3 3 -sheet%1:10:00:: 2 11 -sheet%1:17:00:: 1 12 -sheet_metal%1:06:00:: 1 2 -sheet_music%1:10:00:: 1 1 -sheet_of_paper%1:10:00:: 1 3 -shelf%1:06:00:: 1 8 -shell%1:05:02:: 3 2 -shell%1:06:00:: 1 14 -shell%1:27:00:: 2 3 -shell%2:33:00:: 1 1 -shelter%1:06:00:: 1 56 -shelter%1:06:01:: 2 3 -shelter%2:42:00:: 1 1 -sheltered%5:00:00:protected:00 1 2 -sheltered_workshop%1:06:00:: 1 1 -shelve%2:42:00:: 1 1 -shenanigan%1:04:00:: 1 2 -shenanigan%1:04:01:: 2 1 -shepherd%1:18:00:: 2 1 -shepherd%1:18:01:: 1 1 -shepherd%2:41:01:: 1 1 -sheriff%1:18:00:: 1 7 -sherlock_holmes%1:18:00:: 1 6 -sherry%1:13:00:: 1 3 -shibboleth%1:10:00:: 2 1 -shibboleth%1:10:01:: 1 1 -shield%1:06:01:: 2 2 -shield%1:06:02:: 1 3 -shield%2:33:00:: 1 5 -shielded%5:00:00:protected:00 1 2 -shielding%1:04:00:: 1 3 -shielding%1:06:00:: 2 2 -shift%1:04:00:: 5 2 -shift%1:04:01:: 4 3 -shift%1:11:00:: 1 5 -shift%1:11:01:: 2 5 -shift%1:28:00:: 3 3 -shift%2:30:00:: 1 13 -shift%2:30:01:: 7 1 -shift%2:30:03:: 5 2 -shift%2:30:04:: 6 1 -shift%2:38:00:: 2 12 -shift%2:38:01:: 4 2 -shift%2:38:02:: 3 5 -shifting%5:00:00:moving:02 1 3 -shifting%5:00:00:variable:00 2 2 -shim%1:06:00:: 1 1 -shimmering%5:00:00:bright:00 1 1 -shimmy%2:36:00:: 2 1 -shimmy%2:38:00:: 1 1 -shin%1:08:01:: 1 2 -shinbone%1:08:00:: 1 1 -shine%2:39:01:: 3 5 -shine%2:39:06:: 6 1 -shine%2:42:01:: 4 3 -shine%2:42:04:: 5 1 -shine%2:43:00:: 2 6 -shine%2:43:01:: 1 9 -shining%1:04:00:: 1 1 -shining%5:00:00:bright:00 2 2 -shining%5:00:00:superior:02 1 2 -shiny%5:00:00:bright:00 1 2 -ship%1:06:00:: 1 49 -ship%2:38:00:: 1 7 -shipbuilding%1:04:00:: 1 1 -shipment%1:04:00:: 2 3 -shipment%1:06:00:: 1 3 -shipping%1:04:00:: 1 4 -shipping_fever%1:26:00:: 1 6 -shipshape%5:00:00:tidy:00 1 1 -shipwreck%1:06:00:: 1 1 -shipyard%1:06:00:: 1 1 -shirk%2:41:01:: 1 2 -shirking%1:04:00:: 1 1 -shirt%1:06:00:: 1 15 -shirt%2:29:00:: 1 1 -shirtfront%1:06:01:: 1 1 -shirtsleeve%1:06:00:: 1 1 -shirtsleeves%1:26:00:: 1 1 -shit%1:10:00:: 2 1 -shit%1:27:00:: 1 1 -shiver%1:04:00:: 1 1 -shiver%2:29:00:: 2 4 -shiver%2:38:00:: 1 5 -shivering%1:26:00:: 1 1 -shivering%5:00:00:unsteady:00 1 1 -shivery%5:00:00:cold:01 1 1 -shock%1:04:00:: 3 2 -shock%1:04:01:: 2 2 -shock%1:11:00:: 5 1 -shock%1:11:01:: 6 1 -shock%1:12:01:: 1 6 -shock%1:26:00:: 4 1 -shock%2:37:01:: 1 4 -shock%2:37:02:: 2 3 -shock_absorber%1:06:00:: 1 1 -shock_therapy%1:04:00:: 1 1 -shocked%5:00:00:afraid(p):00 1 1 -shocking%5:00:00:sensational:00 1 1 -shockingly%4:02:00:: 1 1 -shod%3:00:00:: 1 2 -shoe%1:06:00:: 1 27 -shoe_leather%1:27:00:: 1 1 -shoe_repairing%1:04:00:: 1 1 -shoe_store%1:06:00:: 1 1 -shoeful%1:23:00:: 1 1 -shoelace%1:06:00:: 1 1 -shoes%1:26:00:: 1 1 -shoestring%1:06:00:: 1 1 -shoo_away%2:38:00:: 1 1 -shoot%2:32:00:: 9 1 -shoot%2:32:01:: 4 7 -shoot%2:33:00:: 3 26 -shoot%2:33:01:: 1 28 -shoot%2:35:01:: 8 1 -shoot%2:38:00:: 6 3 -shoot%2:38:01:: 7 1 -shoot%2:38:03:: 5 3 -shoot%2:41:00:: 2 27 -shoot-down%1:04:00:: 1 2 -shoot_down%2:38:00:: 2 1 -shoot_down%2:38:01:: 1 1 -shoot_up%2:30:00:: 1 2 -shooter%1:06:00:: 1 1 -shooting%1:04:00:: 1 21 -shooting%1:04:01:: 2 4 -shooting_preserve%1:15:00:: 1 5 -shop%1:06:00:: 1 9 -shop%1:06:01:: 2 1 -shop%2:40:00:: 1 7 -shop%2:41:00:: 2 1 -shop_at%2:41:00:: 1 1 -shopkeeper%1:18:00:: 1 1 -shopper%1:18:00:: 1 1 -shopping%1:04:00:: 1 8 -shopping_center%1:06:00:: 1 8 -shore%1:17:00:: 1 18 -shore_up%2:35:00:: 1 2 -short%1:06:00:: 1 3 -short%3:00:01:: 2 21 -short%3:00:02:: 1 43 -short%3:00:03:: 3 7 -short%4:02:04:: 1 1 -short%5:00:00:insufficient:00 4 3 -short-change%2:41:00:: 1 1 -short-lived%5:00:00:impermanent:00 1 2 -short-range%5:00:00:short:02 1 1 -short-run%5:00:00:short:02 1 2 -short-term%5:00:00:short:02 1 5 -short_and_sweet%5:00:00:short:02 1 1 -short_bone%1:08:00:: 1 5 -short_story%1:10:00:: 1 3 -shortage%1:07:00:: 1 4 -shortage%1:26:00:: 2 2 -shortcut%1:06:00:: 1 1 -shorten%2:30:01:: 1 6 -shorten%2:30:02:: 2 3 -shortened%5:00:01:short:01 1 1 -shortly%4:02:00:: 2 3 -shortly%4:02:01:: 1 6 -shortly%4:02:02:: 3 2 -shortness%1:07:03:: 1 1 -shorts%1:06:02:: 1 1 -shortsighted%5:00:00:improvident:00 1 4 -shortstop%1:18:00:: 1 4 -shot%1:04:00:: 1 24 -shot%1:04:03:: 7 1 -shot%1:04:06:: 3 6 -shot%1:06:00:: 2 20 -shot%1:10:01:: 6 1 -shot%1:18:00:: 5 1 -shot%1:26:00:: 4 1 -shotgun%1:06:00:: 1 2 -should%2:42:01:: 2 1 -should%2:42:02:: 1 1 -shoulder%1:08:00:: 1 65 -shoulder%2:35:00:: 2 2 -shoulder%2:35:02:: 1 2 -shoulder_bag%1:06:00:: 1 1 -shoulder_blade%1:08:00:: 1 2 -shoulder_in%2:38:00:: 1 1 -shouldered%3:01:00:: 1 1 -shout%1:10:00:: 1 3 -shout%2:32:00:: 1 39 -shout%2:32:01:: 2 18 -shout%2:32:08:: 3 2 -shout_out%2:32:00:: 1 1 -shouting%1:10:00:: 1 2 -shouting%1:10:01:: 2 2 -shove%2:35:00:: 2 5 -shove%2:38:00:: 1 6 -shove_along%2:38:00:: 1 1 -shovel%1:06:00:: 1 2 -shovel%2:35:00:: 1 1 -show%1:04:00:: 1 18 -show%1:10:03:: 2 9 -show%2:31:00:: 2 63 -show%2:32:00:: 3 57 -show%2:32:01:: 8 24 -show%2:32:02:: 7 24 -show%2:32:03:: 12 6 -show%2:32:04:: 11 7 -show%2:36:00:: 6 32 -show%2:38:00:: 13 2 -show%2:39:00:: 4 43 -show%2:39:01:: 10 11 -show%2:39:02:: 1 136 -show%2:39:03:: 5 33 -show%2:39:04:: 9 15 -show_off%2:39:00:: 1 4 -show_up%2:30:00:: 1 8 -show_up%2:39:00:: 2 4 -showcase%1:26:00:: 1 2 -showdown%1:10:00:: 1 2 -shower%1:04:00:: 2 4 -shower%1:06:00:: 1 5 -shower%1:11:00:: 4 1 -shower%1:19:00:: 3 1 -shower%2:29:00:: 3 2 -shower%2:35:00:: 2 2 -shower%2:40:00:: 1 2 -shower_room%1:06:00:: 1 2 -showerhead%1:06:00:: 1 1 -showing%1:04:00:: 2 1 -showing%1:10:01:: 1 1 -showpiece%1:06:00:: 1 1 -showroom%1:06:00:: 1 1 -showy%5:00:00:fancy:00 2 1 -showy%5:00:00:ostentatious:00 1 1 -shrapnel%1:06:00:: 1 2 -shred%1:23:00:: 1 3 -shred%2:35:00:: 1 1 -shrewd%5:00:00:smart:00 1 2 -shrewdly%4:02:00:: 1 1 -shrewish%5:00:00:ill-natured:00 1 1 -shriek%1:10:00:: 1 4 -shriek%1:11:00:: 2 1 -shriek%2:32:00:: 1 4 -shrieked%3:44:00:: 1 1 -shrieking%1:10:00:: 1 1 -shrill%2:32:00:: 1 2 -shrill%5:00:00:high:03 1 9 -shrilling%5:00:00:high:03 1 1 -shrilly%4:02:00:: 1 2 -shrine%1:06:00:: 1 1 -shrink%2:30:00:: 4 1 -shrink%2:30:01:: 3 2 -shrink%2:30:02:: 1 3 -shrink%2:38:00:: 2 2 -shrink_back%2:38:00:: 1 2 -shrink_from%2:41:00:: 1 2 -shriveled%5:00:00:dry:01 1 1 -shroud%2:35:01:: 1 1 -shrub%1:20:00:: 1 3 -shrubbery%1:14:00:: 2 1 -shrubbery%1:15:00:: 1 1 -shrug%1:10:00:: 1 3 -shrug%2:29:00:: 1 10 -shrug_off%2:32:00:: 1 1 -shucks%1:07:00:: 1 1 -shudder%2:29:00:: 1 5 -shudder%2:38:00:: 2 3 -shuddering%5:00:00:unsteady:00 1 1 -shuffle%2:38:00:: 1 4 -shuffle%2:38:01:: 2 1 -shuffling%1:04:01:: 1 1 -shun%2:32:00:: 1 4 -shunt%1:06:01:: 2 1 -shunt%1:08:00:: 1 5 -shunt%2:38:00:: 1 1 -shut%2:35:00:: 1 10 -shut%2:35:06:: 2 2 -shut%2:41:00:: 3 1 -shut%3:00:00:: 1 7 -shut%3:00:02:: 2 2 -shut_down%2:41:00:: 1 2 -shut_off%2:42:00:: 1 1 -shut_out%2:41:00:: 1 3 -shut_up%2:30:00:: 3 1 -shut_up%2:32:00:: 1 6 -shut_up%2:35:00:: 2 1 -shut_up%5:00:00:confined:00 1 1 -shutdown%1:04:00:: 1 5 -shutter%1:06:00:: 2 5 -shutter%1:06:01:: 1 5 -shuttle%2:38:00:: 1 2 -shy%2:38:00:: 1 1 -shy%5:00:00:timid:00 2 3 -shy%5:00:00:unconfident:00 1 3 -shy_away_from%2:32:00:: 1 4 -shyly%4:02:00:: 1 1 -siamese%1:10:00:: 1 1 -siamese_cat%1:05:00:: 1 2 -siberia%1:15:00:: 1 3 -sic%4:02:00:: 1 2 -sicilian%1:18:00:: 1 2 -sicilian%3:01:00:: 1 2 -sicily%1:15:00:: 1 1 -sick%1:14:00:: 1 1 -sick%3:00:01:: 1 8 -sick%5:00:00:displeased:00 4 1 -sick%5:00:00:insane:00 3 1 -sick%5:00:02:ill:01 2 7 -sick_pay%1:21:00:: 1 2 -sicken%2:29:00:: 2 1 -sicken%2:37:00:: 1 2 -sickish%5:00:00:ill:01 1 1 -sickly%5:00:00:unhealthy:00 1 1 -sickness%1:26:00:: 1 4 -sickroom%1:06:00:: 1 1 -side%1:06:00:: 5 11 -side%1:08:00:: 3 18 -side%1:09:00:: 6 5 -side%1:10:00:: 10 1 -side%1:13:00:: 9 1 -side%1:14:00:: 2 25 -side%1:14:01:: 8 1 -side%1:15:00:: 4 12 -side%1:15:01:: 7 3 -side%1:15:02:: 1 91 -side%2:33:13:: 1 1 -side%3:00:00:: 1 6 -side%5:00:00:incidental:00 2 3 -side_by_side%5:00:00:close:01 1 2 -side_entrance%1:06:00:: 1 1 -side_yard%1:06:00:: 1 1 -sideboard%1:06:02:: 1 1 -sidelong%5:00:00:indirect:00 1 2 -sidestep%2:32:00:: 1 3 -sidewalk%1:06:00:: 1 16 -sidewinder%1:05:00:: 1 1 -sidewise%4:02:03:: 1 2 -siding%1:06:01:: 1 1 -sidle%2:38:00:: 2 2 -sidle%2:38:01:: 1 2 -siege%1:04:00:: 1 2 -sieve%1:06:00:: 1 1 -sift%2:35:00:: 2 1 -sift%2:38:00:: 1 1 -sigh%1:10:00:: 1 6 -sigh%2:29:00:: 1 24 -sigh%2:32:01:: 2 2 -sight%1:04:00:: 7 2 -sight%1:06:00:: 4 3 -sight%1:09:00:: 3 6 -sight%1:09:01:: 1 17 -sight%1:09:02:: 6 2 -sight%1:09:03:: 5 2 -sight%1:10:00:: 2 12 -sight%1:23:00:: 8 1 -sight%2:39:00:: 1 4 -sightseeing%1:04:00:: 1 2 -sign%1:06:01:: 4 3 -sign%1:10:00:: 2 5 -sign%1:10:01:: 9 1 -sign%1:10:03:: 3 4 -sign%1:10:05:: 1 18 -sign%1:11:00:: 8 1 -sign%1:15:00:: 5 2 -sign%1:24:00:: 7 1 -sign%1:26:00:: 6 1 -sign%2:32:00:: 3 8 -sign%2:32:01:: 5 1 -sign%2:32:02:: 1 16 -sign%2:41:00:: 2 13 -sign%2:41:01:: 4 2 -sign_of_the_cross%1:10:00:: 1 1 -sign_up%2:33:00:: 2 1 -sign_up%2:41:00:: 1 2 -signal%1:10:00:: 1 16 -signal%1:16:00:: 2 1 -signal%2:32:00:: 1 4 -signal%2:32:01:: 2 3 -signal-to-noise%1:24:00:: 1 1 -signaling%1:10:00:: 1 1 -signature%1:07:00:: 2 1 -signature%1:10:00:: 1 1 -signed%3:00:00:: 1 3 -significance%1:07:00:: 1 21 -significance%1:09:01:: 2 7 -significance%1:10:00:: 3 2 -significant%3:00:00:: 1 18 -significant%3:00:01:: 3 3 -significant%5:00:00:considerable:00 2 9 -significant%5:00:00:meaningful:00 4 2 -significantly%4:02:01:: 3 1 -significantly%4:02:03:: 2 3 -significantly%4:02:04:: 1 6 -signify%2:32:00:: 2 1 -signify%2:32:02:: 1 3 -signore%1:18:00:: 1 1 -signpost%1:10:00:: 1 1 -silence%1:07:00:: 2 10 -silence%1:07:01:: 3 8 -silence%1:07:02:: 4 1 -silence%1:26:00:: 1 12 -silence%2:30:00:: 1 4 -silenced%3:00:00:: 1 1 -silent%5:00:00:quiet:01 1 18 -silent%5:00:00:uncommunicative:00 2 10 -silent_movie%1:10:00:: 1 2 -silently%4:02:00:: 1 4 -silhouette%1:15:00:: 1 5 -silhouette%2:36:00:: 2 1 -silhouette%2:39:00:: 1 1 -silicate%1:27:00:: 1 1 -silicone%1:27:00:: 1 1 -silk%1:06:00:: 1 6 -silk%1:27:00:: 2 1 -silkworm%1:05:01:: 1 1 -silky%5:00:00:smooth:00 1 1 -sill%1:06:00:: 1 2 -silly%5:00:00:foolish:00 1 7 -silly%5:00:00:frivolous:00 2 1 -silo%1:06:00:: 1 2 -silver%1:06:00:: 4 1 -silver%1:07:00:: 3 2 -silver%1:21:00:: 2 2 -silver%1:27:00:: 1 2 -silver%5:00:00:achromatic:00 3 1 -silver%5:00:00:bright:00 2 4 -silver%5:00:00:metallic:00 1 4 -silver_chloride%1:27:00:: 1 2 -silver_dollar%1:21:00:: 1 1 -silver_gray%1:07:00:: 1 1 -silvery%5:00:00:bright:00 2 1 -silvery%5:00:00:euphonious:00 1 1 -similar%3:00:00:: 1 61 -similar%3:00:04:: 2 6 -similarity%1:07:00:: 1 9 -similarly%4:02:00:: 1 21 -simile%1:10:00:: 1 1 -similitude%1:07:00:: 1 6 -simmer%2:30:00:: 1 5 -simple%3:00:02:: 1 56 -simple%5:00:00:easy:01 2 10 -simple%5:00:00:naive:00 4 2 -simple%5:00:00:ordinary:00 7 1 -simple%5:00:00:retarded:00 6 1 -simple%5:00:00:unpretentious:00 5 1 -simple%5:00:02:plain:01 3 4 -simple-minded%5:00:00:naive:00 1 1 -simplex%5:00:00:unidirectional:00 1 1 -simplicity%1:07:02:: 1 4 -simplicity%1:07:04:: 2 1 -simplified%5:00:00:easy:01 1 2 -simplified%5:00:00:simple:02 2 1 -simplify%2:30:00:: 2 3 -simplify%2:30:01:: 1 5 -simplistic%5:00:00:simple:02 1 2 -simply%4:02:00:: 1 46 -simply%4:02:01:: 4 3 -simply%4:02:02:: 3 7 -simply%4:02:03:: 2 9 -simulate%2:36:04:: 1 5 -simulated%5:00:00:artificial:00 1 5 -simulation%1:04:01:: 1 1 -simultaneous%5:00:00:synchronous:00 1 4 -simultaneously%4:02:00:: 1 20 -sin%1:04:00:: 2 9 -sin%1:07:00:: 1 14 -sin%2:41:00:: 1 7 -sincere%3:00:00:: 1 6 -sincerely%4:02:00:: 1 5 -sincerity%1:07:00:: 2 2 -sincerity%1:07:02:: 3 1 -sincerity%1:12:00:: 1 2 -sine_die%4:02:00:: 1 1 -sine_qua_non%1:09:00:: 1 1 -sinewy%5:00:00:tough:01 1 2 -sinful%5:00:00:wicked:00 1 2 -sinfulness%1:07:00:: 1 3 -sing%2:32:00:: 4 1 -sing%2:32:01:: 5 1 -sing%2:32:08:: 3 3 -sing%2:36:00:: 2 35 -sing%2:36:01:: 1 46 -singe%2:30:00:: 1 1 -singer%1:18:00:: 1 3 -singing%1:04:00:: 1 6 -single%1:04:00:: 1 7 -single%2:35:00:: 1 6 -single%3:00:00:: 1 74 -single-foot%2:38:00:: 1 1 -single-spaced%5:00:00:spaced:00 1 1 -single_out%2:31:00:: 1 2 -single_out%2:41:00:: 2 1 -singly%4:02:00:: 1 1 -singsong%1:10:00:: 1 1 -singsong%2:32:00:: 1 1 -singular%5:00:00:extraordinary:00 1 3 -singular%5:00:00:individual:00 3 1 -singular%5:00:00:strange:00 2 1 -singularity%1:07:01:: 1 1 -singularly%4:02:00:: 1 1 -sinister%5:00:00:alarming:00 1 3 -sinister%5:00:00:evil:00 2 1 -sink%1:06:00:: 1 4 -sink%2:30:00:: 7 2 -sink%2:35:00:: 9 1 -sink%2:38:00:: 4 3 -sink%2:38:01:: 1 8 -sink%2:38:02:: 2 5 -sink%2:38:03:: 8 1 -sink%2:38:04:: 6 2 -sink%2:38:06:: 5 3 -sink%2:38:07:: 3 4 -sink_in%2:31:00:: 1 2 -sinking%1:11:00:: 1 1 -sinking%1:11:01:: 2 1 -sinner%1:18:00:: 1 4 -sinning%1:04:00:: 1 1 -sintered%3:44:00:: 1 1 -sinuous%5:00:00:curved:00 1 1 -sinusoid%1:08:00:: 1 2 -sinusoidal%5:00:00:curved:00 1 1 -sioux%1:18:00:: 1 3 -sip%1:04:01:: 1 2 -sip%2:34:00:: 1 7 -sipper%1:18:00:: 1 1 -sir%1:18:00:: 1 19 -sire%2:29:00:: 1 3 -sirloin%1:13:00:: 1 1 -sis%1:18:00:: 1 1 -sister%1:18:00:: 1 20 -sister-in-law%1:18:00:: 1 1 -sit%2:35:00:: 1 134 -sit%2:38:00:: 3 10 -sit%2:38:01:: 4 6 -sit%2:38:03:: 6 1 -sit%2:39:00:: 5 1 -sit%2:42:00:: 2 33 -sit-down%1:04:00:: 1 1 -sit_back%2:29:00:: 1 3 -sit_back%2:41:00:: 2 1 -sit_by%2:41:00:: 1 1 -sit_down%2:35:00:: 2 1 -sit_down%2:35:03:: 3 1 -sit_down%2:38:00:: 1 38 -sit_out%2:42:00:: 1 1 -sit_up%2:29:00:: 1 3 -sit_up%2:38:01:: 2 1 -site%1:15:00:: 1 51 -site%1:15:02:: 2 1 -sitting%1:04:00:: 2 1 -sitting%1:04:01:: 1 1 -sitting%3:00:02:: 1 1 -sitting_room%1:06:00:: 1 2 -situate%2:35:00:: 2 1 -situate%2:42:00:: 1 3 -situated%5:00:00:settled:01 1 2 -situation%1:26:00:: 1 66 -situation%1:26:01:: 2 18 -six%1:23:00:: 1 6 -six%5:00:00:cardinal:00 1 77 -sixteen%5:00:00:cardinal:00 1 5 -sixteenth%5:00:00:ordinal:00 1 2 -sixth%5:00:00:ordinal:00 1 12 -sixties%1:28:00:: 2 1 -sixties%1:28:01:: 1 6 -sixty%5:00:00:cardinal:00 1 7 -sizable%5:00:00:large:00 1 2 -size%1:07:00:: 1 70 -size%1:07:01:: 2 3 -size%5:00:00:sized:00 1 2 -size_of_it%1:26:00:: 1 1 -size_up%2:39:00:: 1 2 -sized%3:00:00:: 1 2 -sizzle%2:32:00:: 1 1 -sizzling%5:00:00:hot:01 1 2 -skate_over%2:41:00:: 1 1 -skedaddle%2:38:00:: 1 3 -skeet%1:04:00:: 1 1 -skeletal%3:01:00:: 1 13 -skeptic%1:18:00:: 1 3 -skeptical%5:00:00:distrustful:00 2 2 -skeptical%5:00:00:incredulous:00 1 3 -skepticism%1:09:00:: 1 1 -sketch%1:06:00:: 1 15 -sketch%1:10:00:: 3 2 -sketch%1:10:03:: 2 6 -sketch%2:32:00:: 2 1 -sketch%2:36:00:: 1 4 -sketch_map%1:06:00:: 1 1 -sketch_pad%1:06:00:: 1 1 -skid%2:38:03:: 1 3 -skiff%1:06:00:: 1 7 -skill%1:09:00:: 2 10 -skill%1:09:01:: 1 39 -skilled%3:00:00:: 1 11 -skilled_worker%1:18:00:: 1 5 -skillful%5:00:00:skilled:00 1 3 -skillfully%4:02:00:: 1 3 -skim%2:35:00:: 2 1 -skim%2:38:00:: 1 1 -skim_off%2:35:00:: 1 2 -skim_over%2:31:00:: 1 1 -skimming%1:04:00:: 1 1 -skin%1:05:01:: 4 3 -skin%1:06:01:: 3 3 -skin%1:08:00:: 1 11 -skin%1:26:00:: 5 2 -skin%1:27:02:: 2 3 -skin_perceptiveness%1:09:00:: 1 1 -skinny%5:00:00:thin:03 1 2 -skip%2:31:01:: 1 7 -skip%2:38:00:: 3 1 -skip%2:42:00:: 2 1 -skirmish%1:04:00:: 1 3 -skirmish%2:33:00:: 1 1 -skirmisher%1:18:00:: 1 7 -skirt%1:06:00:: 2 2 -skirt%1:06:01:: 1 4 -skirt%2:32:00:: 1 2 -skirt%2:38:00:: 2 1 -skit%1:04:00:: 1 1 -skulk%2:42:00:: 1 1 -skulking%1:04:00:: 1 1 -skull%1:08:00:: 1 5 -skullcap%1:06:00:: 1 1 -skunk%1:18:00:: 1 1 -sky%1:17:00:: 1 49 -skylark%2:38:00:: 1 1 -skylight%1:06:00:: 1 3 -skyscraper%1:06:00:: 1 1 -slab%1:06:00:: 1 3 -slack%5:00:00:lax:01 1 5 -slack_off%2:30:00:: 1 1 -slacken%2:30:02:: 1 4 -slacken%2:30:03:: 2 1 -slacks%1:06:00:: 1 4 -slain%1:14:00:: 1 1 -slam%2:35:00:: 2 8 -slam%2:35:01:: 1 8 -slam_on%2:35:00:: 1 1 -slant%1:07:00:: 2 1 -slant%1:09:00:: 1 1 -slant%2:31:00:: 2 1 -slant%2:42:00:: 1 1 -slanted%5:00:00:inclined:01 1 1 -slanting%5:00:00:inclined:01 1 3 -slantingly%4:02:00:: 1 1 -slantwise%4:02:00:: 1 1 -slap%2:35:00:: 1 15 -slapstick%1:10:00:: 1 1 -slash%2:30:00:: 4 2 -slash%2:35:00:: 3 3 -slash%2:35:01:: 1 7 -slash%2:35:02:: 2 3 -slashed%5:00:00:cut:03 2 1 -slashed%5:00:00:patterned:00 1 1 -slashing%5:00:00:dynamic:00 1 1 -slat%1:06:00:: 1 2 -slate%1:06:00:: 1 1 -slate%2:31:00:: 1 2 -slate_roof%1:06:00:: 1 2 -slaughter%1:04:00:: 1 3 -slaughter%1:11:00:: 2 1 -slaughter%2:30:00:: 2 2 -slaughter%2:35:00:: 1 3 -slave%1:18:00:: 1 18 -slave%1:18:01:: 2 1 -slave_dealer%1:18:00:: 1 1 -slave_trade%1:04:00:: 1 1 -slaver%2:29:00:: 1 1 -slavery%1:04:01:: 2 1 -slavery%1:26:00:: 1 9 -slavic%1:10:00:: 1 2 -sleek%5:00:00:smooth:00 1 1 -sleep%1:26:00:: 1 23 -sleep%1:26:02:: 2 1 -sleep%2:29:00:: 1 58 -sleep_in%2:29:00:: 1 1 -sleep_off%2:40:00:: 1 1 -sleep_with%2:35:00:: 1 1 -sleeper%1:18:00:: 1 1 -sleepily%4:02:00:: 1 1 -sleeping%1:09:00:: 1 1 -sleeping%5:00:00:asleep(p):00 2 3 -sleeping_bag%1:06:00:: 1 1 -sleeping_beauty%1:18:00:: 1 1 -sleeping_capsule%1:06:00:: 1 1 -sleeping_pill%1:06:00:: 1 1 -sleepwalker%1:18:00:: 1 1 -sleepy%5:00:00:asleep(p):00 1 6 -sleepy-eyed%5:00:00:asleep(p):00 1 1 -sleeve%1:06:00:: 1 5 -slender%5:00:00:graceful:00 5 1 -slender%5:00:00:narrow:00 2 3 -slender%5:00:00:small:00 4 1 -slender%5:00:00:thin:01 3 1 -slender%5:00:00:thin:03 1 6 -slender-waisted%5:00:00:thin:03 1 1 -slice%1:04:00:: 4 1 -slice%1:13:00:: 2 2 -slice%1:21:00:: 1 3 -slice%1:26:00:: 3 1 -slice%2:33:00:: 4 1 -slice%2:35:00:: 3 1 -slice%2:35:01:: 1 2 -slice%2:35:02:: 2 1 -slice_up%2:35:00:: 1 1 -slick%1:07:00:: 1 1 -slick%5:00:00:smooth:00 1 1 -slicker%1:06:00:: 1 2 -slide%1:04:00:: 5 1 -slide%1:06:02:: 1 2 -slide%1:06:03:: 4 1 -slide%1:10:00:: 3 1 -slide%1:11:00:: 2 1 -slide%2:38:00:: 2 14 -slide%2:38:01:: 1 18 -slide%2:38:02:: 3 3 -slide_action%1:06:00:: 1 1 -sliding%5:00:00:slippery:00 1 1 -slight%1:04:00:: 1 2 -slight%5:00:00:little(a):03 2 13 -slight%5:00:00:weak:00 1 7 -slightest%5:00:00:least(a):00 1 5 -slightly%4:02:01:: 1 26 -slim%5:00:00:thin:03 1 4 -slim-waisted%5:00:00:thin:03 1 1 -slime%2:35:00:: 1 1 -sling%2:35:00:: 1 2 -slinging%1:04:00:: 1 1 -slingshot%1:06:00:: 1 1 -slink%2:38:00:: 1 2 -slip%1:04:02:: 1 4 -slip%1:04:05:: 2 1 -slip%2:30:00:: 4 4 -slip%2:30:04:: 2 7 -slip%2:31:00:: 6 1 -slip%2:38:00:: 3 6 -slip%2:38:01:: 1 11 -slip%2:38:05:: 5 2 -slip_away%2:38:00:: 2 1 -slip_away%2:38:01:: 1 1 -slip_in%2:32:00:: 1 1 -slip_of_paper%1:06:00:: 1 1 -slip_on%2:29:00:: 1 1 -slippage%1:22:00:: 1 1 -slipper%1:06:00:: 1 5 -slippered%5:00:00:shod:00 1 1 -slippery%3:00:00:: 1 3 -slipping%5:00:00:slippery:00 1 1 -slit%1:06:00:: 1 5 -slit%1:08:00:: 2 1 -slit%2:35:00:: 2 1 -slit%2:35:01:: 1 1 -slivery%3:01:00:: 1 1 -slob%1:18:00:: 1 2 -sloe%1:20:02:: 1 2 -slogan%1:10:00:: 1 1 -sloganeering%1:10:00:: 1 1 -sloop%1:06:00:: 1 1 -slop%1:13:00:: 1 1 -slop%2:35:00:: 1 2 -slop%2:38:00:: 2 1 -slope%1:07:00:: 2 4 -slope%1:17:00:: 1 11 -sloping%5:00:00:gradual:02 2 1 -sloping%5:00:00:inclined:01 1 2 -sloppy%5:00:00:untidy:00 1 2 -slot%1:06:00:: 2 1 -slot%1:10:00:: 1 3 -slot%2:31:00:: 1 1 -slovenliness%1:26:00:: 1 1 -slovenly%5:00:00:untidy:00 1 3 -slow%2:30:00:: 1 9 -slow%2:30:01:: 2 2 -slow%2:30:05:: 3 1 -slow%3:00:01:: 1 23 -slow%3:00:02:: 2 3 -slow%4:02:00:: 1 2 -slow%5:00:00:stupid:00 3 1 -slow-moving%5:00:00:slow:01 1 1 -slow_down%2:30:00:: 1 5 -slow_down%2:30:01:: 2 2 -slow_down%2:30:04:: 3 1 -slow_up%2:30:03:: 1 1 -slowing%1:07:00:: 1 3 -slowly%4:02:02:: 1 78 -slowness%1:07:00:: 2 1 -slowness%1:09:02:: 1 2 -sludge%1:27:01:: 1 4 -slug%1:06:00:: 1 4 -slug%2:35:00:: 1 7 -slugger%1:18:00:: 1 3 -sluggish%5:00:01:slow:01 1 2 -sluggishly%4:02:00:: 1 1 -sluice%1:06:00:: 1 1 -sluice%2:30:01:: 2 1 -sluice%2:43:00:: 1 1 -sluicing%3:44:00:: 1 1 -slum%1:15:00:: 1 3 -slum%5:00:00:poor:03 1 1 -slum_area%1:15:00:: 1 2 -slumber%1:26:01:: 1 1 -slumber%2:29:00:: 1 2 -slump%1:22:00:: 1 2 -slump%2:30:00:: 3 1 -slump%2:38:00:: 2 1 -slump%2:38:01:: 1 4 -slurp%2:34:00:: 1 1 -slurred%5:00:00:unintelligible:00 1 1 -sly%5:00:00:artful:00 1 1 -smack%2:35:02:: 1 2 -smack%2:39:13:: 2 1 -small%1:08:00:: 1 1 -small%3:00:00:: 1 213 -small%3:00:04:: 4 1 -small%5:00:00:inferior:01 5 1 -small%5:00:00:limited:00 2 13 -small%5:00:00:little(a):03 11 2 -small%5:00:00:lowercase:00 7 1 -small%5:00:00:minor:06 6 1 -small%5:00:00:narrow-minded:00 9 1 -small%5:00:00:soft:04 8 1 -small%5:00:00:young:00 3 8 -small-arm%1:06:00:: 1 2 -small-scale%5:00:00:small:00 1 1 -small-time%5:00:00:unimportant:00 1 1 -small_businessman%1:18:00:: 1 1 -small_fortune%1:23:00:: 1 1 -small_intestine%1:08:00:: 1 2 -small_town%1:14:00:: 1 4 -small_voice%1:16:00:: 1 1 -smaller%5:00:00:small:00 1 33 -smallest%5:00:00:minimal:00 2 3 -smallest%5:00:00:small:00 1 5 -smallish%5:00:00:small:00 1 1 -smallness%1:07:00:: 1 2 -smallpox%1:26:00:: 1 1 -smart%2:39:00:: 1 1 -smart%3:00:00:: 1 8 -smart%5:00:00:fashionable:00 5 1 -smart%5:00:00:forward:02 4 2 -smart%5:00:00:intelligent:00 3 2 -smart%5:00:00:stylish:00 2 3 -smart_as_a_whip%5:00:00:intelligent:00 1 1 -smash%1:11:01:: 1 2 -smash%2:30:00:: 2 5 -smash%2:35:00:: 1 6 -smashed%5:00:00:broken:01 1 1 -smear%2:35:00:: 1 1 -smeared%5:00:00:dirty:01 1 1 -smell%1:07:00:: 2 5 -smell%1:09:02:: 1 8 -smell%1:26:00:: 3 1 -smell%2:39:00:: 2 12 -smell%2:39:01:: 1 14 -smell%2:39:02:: 3 3 -smile%1:10:00:: 1 29 -smile%2:29:00:: 1 79 -smiling%1:10:00:: 1 1 -smiling%5:00:00:cheerful:00 1 2 -smilingly%4:02:00:: 1 1 -smirk%2:29:00:: 1 1 -smite%2:35:00:: 1 2 -smitten%5:00:00:affected:00 1 2 -smoke%1:19:00:: 1 65 -smoke%1:22:00:: 2 4 -smoke%2:34:00:: 1 12 -smokehouse%1:06:00:: 1 2 -smoking%1:04:00:: 1 1 -smoking_jacket%1:06:00:: 1 1 -smolder%2:30:00:: 1 3 -smoldering%5:00:00:live:00 1 1 -smolderingly%4:02:00:: 1 1 -smooth%2:35:00:: 1 7 -smooth%2:35:01:: 2 1 -smooth%3:00:00:: 1 11 -smooth%3:00:02:: 3 1 -smooth%5:00:00:diplomatic:00 2 3 -smooth%5:00:00:graceful:00 5 1 -smooth%5:00:00:unfurrowed:00 4 1 -smooth_out%2:40:00:: 1 1 -smooth_over%2:41:00:: 1 2 -smoothly%4:02:00:: 1 3 -smoothly%4:02:02:: 2 1 -smoothness%1:07:00:: 1 3 -smother%2:35:00:: 2 1 -smother%2:35:01:: 3 1 -smother%2:35:02:: 1 2 -smothered%5:00:00:inhibited:00 1 1 -smothering%5:00:00:breathless:00 1 1 -smudged%5:00:00:dirty:01 1 2 -smug%5:00:00:contented:00 1 3 -smuggle%2:40:00:: 1 3 -smuggler%1:18:00:: 1 2 -snack%1:13:00:: 1 1 -snag%2:35:00:: 1 2 -snail%1:05:00:: 1 3 -snake%1:05:00:: 1 20 -snake%2:38:01:: 1 3 -snake-rail_fence%1:06:00:: 1 1 -snake_oil%1:27:00:: 1 1 -snap%1:04:00:: 1 1 -snap%2:30:00:: 3 3 -snap%2:30:01:: 5 2 -snap%2:32:00:: 1 7 -snap%2:35:00:: 8 1 -snap%2:35:01:: 2 3 -snap%2:35:02:: 10 1 -snap%2:35:03:: 9 1 -snap%2:38:00:: 4 2 -snap%2:38:01:: 7 1 -snap%2:39:00:: 6 1 -snap_at%2:35:00:: 1 1 -snap_up%2:40:00:: 1 1 -snapdragon%1:20:00:: 1 1 -snappy%5:00:00:ill-natured:00 1 1 -snapshot%1:06:00:: 1 1 -snare%1:09:00:: 1 1 -snare%2:35:00:: 1 1 -snarl%1:10:00:: 1 1 -snarl%1:10:01:: 2 1 -snarl%2:32:00:: 1 6 -snarl%2:32:01:: 2 1 -snatch%2:35:00:: 1 13 -snatch%2:35:02:: 2 1 -snatch_up%2:35:00:: 1 1 -sneak%2:38:00:: 1 2 -sneak%2:41:00:: 2 1 -sneak_off%2:38:00:: 1 2 -sneak_out%2:38:00:: 1 1 -sneak_up%2:38:00:: 1 1 -sneaker%1:06:00:: 1 2 -sneer%1:10:00:: 1 2 -sneer%2:29:00:: 2 1 -sneer%2:29:01:: 1 2 -sneering%1:10:00:: 2 1 -sneering%1:10:01:: 1 1 -snicker%2:29:00:: 1 2 -sniff%2:29:00:: 2 1 -sniff%2:39:00:: 1 5 -snigger%2:29:00:: 1 1 -snip%1:06:00:: 1 1 -sniper%1:18:00:: 1 2 -sniveling%1:04:00:: 1 1 -snobbish%5:00:00:private:00 1 1 -snoop%2:32:00:: 1 1 -snore%2:29:00:: 1 4 -snoring%1:04:00:: 1 2 -snoring%5:00:00:breathing:00 1 1 -snort%2:29:00:: 2 3 -snort%2:32:00:: 1 3 -snort%2:34:02:: 3 1 -snout%1:05:00:: 1 1 -snow%1:19:00:: 1 13 -snow%1:27:00:: 2 11 -snow%2:43:00:: 1 10 -snowball%1:20:00:: 1 2 -snowball%2:30:00:: 1 1 -snowfall%1:19:00:: 1 1 -snub%2:32:00:: 2 1 -snub%2:32:01:: 1 3 -snuff_out%2:30:00:: 1 1 -snuffbox%1:06:00:: 1 1 -snuffer%1:06:01:: 1 1 -snug%5:00:00:protected:00 1 1 -snuggle%2:35:00:: 1 3 -snuggled%5:00:00:close:01 1 1 -snugly%4:02:00:: 1 2 -snugly%4:02:01:: 2 1 -so%4:02:02:: 1 322 -so%4:02:03:: 7 1 -so%4:02:04:: 6 2 -so%4:02:05:: 3 73 -so%4:02:06:: 2 79 -so%4:02:07:: 4 7 -so%4:02:08:: 5 6 -so%4:02:09:: 8 1 -so%5:00:00:true:00 1 17 -so-called%5:00:00:questionable:00 1 13 -so-so%5:00:00:ordinary:00 1 3 -so_far%4:02:00:: 1 7 -so_much%5:00:00:much(a):00 1 3 -so_to_speak%4:02:00:: 1 2 -so_to_speak%4:02:01:: 2 1 -soak%2:30:01:: 3 1 -soak%2:35:01:: 1 4 -soak%2:40:00:: 2 1 -soaked%5:00:00:wet:01 1 6 -soaking%1:22:00:: 1 1 -soaking%5:00:00:wet:01 1 2 -soap%1:06:00:: 1 9 -soap_flakes%1:06:00:: 1 1 -soap_powder%1:06:00:: 1 1 -soapsuds%1:17:00:: 1 1 -soar%2:30:00:: 4 1 -soar%2:38:00:: 3 1 -soar%2:38:01:: 1 4 -soar%2:38:03:: 2 1 -soaring%5:00:00:high:02 1 2 -sob%1:10:00:: 1 5 -sob%2:29:00:: 1 2 -sober%3:00:01:: 1 5 -sober%5:00:00:colorless:02 3 1 -sober%5:00:00:serious:00 2 5 -sober_up%2:30:00:: 1 3 -sobering%5:00:00:serious:00 1 1 -soberly%4:02:00:: 1 3 -sobriety%1:26:00:: 1 1 -sociability%1:07:00:: 1 1 -sociably%4:02:01:: 1 1 -social%1:14:00:: 1 1 -social%3:00:00:: 2 7 -social%3:01:00:: 1 81 -social%3:01:02:: 3 2 -social%5:00:00:sociable:00 4 2 -social_class%1:14:00:: 1 5 -social_contract%1:26:00:: 1 2 -social_control%1:04:00:: 1 1 -social_event%1:11:00:: 1 1 -social_organization%1:14:00:: 1 2 -social_relation%1:03:00:: 1 1 -social_science%1:09:00:: 1 3 -social_security%1:04:00:: 1 2 -social_status%1:26:00:: 1 1 -social_structure%1:14:00:: 1 2 -social_system%1:14:00:: 1 2 -social_welfare%1:04:00:: 1 2 -socialism%1:09:00:: 1 11 -socialist%1:18:00:: 1 1 -socialist%3:01:00:: 1 3 -socialistic%3:00:00:: 1 3 -sociality%1:07:00:: 1 1 -socialize%2:32:00:: 2 1 -socialize%2:41:01:: 1 1 -socialized%5:00:00:liberal:00 1 1 -socially%4:02:00:: 1 3 -societal%3:01:00:: 1 1 -society%1:14:00:: 1 88 -society%1:14:01:: 2 6 -socioeconomic%3:01:00:: 1 2 -sociological%3:01:00:: 1 2 -sociologist%1:18:00:: 1 1 -sock%1:06:00:: 1 3 -sock%2:35:00:: 1 2 -sod%1:17:00:: 1 4 -sodden%5:00:00:wet:01 1 2 -soddy%1:06:00:: 1 1 -sodium%1:27:00:: 1 1 -sodium_iodide%1:27:00:: 1 2 -sodium_nitrate%1:27:00:: 1 3 -sodium_tripolyphosphate%1:27:00:: 1 2 -sofa%1:06:00:: 1 5 -soft%3:00:01:: 1 18 -soft%3:00:02:: 2 13 -soft%3:00:04:: 3 4 -soft%4:02:00:: 1 1 -soft%5:00:00:tender:02 4 2 -soft-shoe%1:04:00:: 1 1 -soft-spoken%5:00:00:soft:04 1 1 -soft_drink%1:13:00:: 1 2 -soft_glass%1:27:00:: 1 1 -soft_spot%1:07:00:: 1 1 -soften%2:30:02:: 2 1 -soften%2:39:00:: 1 4 -softened%5:00:00:modulated:00 1 1 -softening%1:22:00:: 1 1 -softening%5:00:00:soft:01 1 1 -softly%4:02:00:: 1 18 -softly%4:02:02:: 3 3 -softly%4:02:04:: 2 3 -softness%1:07:00:: 1 2 -soil%1:17:00:: 3 3 -soil%1:26:00:: 1 24 -soil%1:27:01:: 2 12 -soil%2:35:00:: 1 1 -soiled%3:00:04:: 1 10 -soiree_musicale%1:14:00:: 1 1 -sojourn%1:04:00:: 1 1 -solace%1:12:00:: 1 2 -solace%2:37:00:: 1 2 -solar%3:01:00:: 1 4 -solar_radiation%1:19:00:: 1 6 -solar_system%1:17:00:: 1 4 -solar_wind%1:19:00:: 1 1 -sold-out%5:00:00:corrupt:00 1 1 -solder%2:35:00:: 1 7 -soldier%1:18:00:: 1 166 -soldiering%1:09:00:: 1 1 -soldiery%1:14:00:: 1 2 -sole%1:06:00:: 1 3 -sole%5:00:00:single(a):00 2 6 -sole%5:00:00:unshared:00 1 2 -soled%3:00:00:: 1 1 -solely%4:02:00:: 1 9 -solemn%5:00:00:formal:01 1 3 -solemn%5:00:00:humorless:00 3 1 -solemn%5:00:00:serious:00 2 2 -solemnity%1:07:00:: 1 1 -solemnly%4:02:00:: 1 4 -solicit%2:32:00:: 1 4 -solicitude%1:12:00:: 1 2 -solid%1:26:00:: 2 1 -solid%1:27:04:: 1 14 -solid%3:00:01:: 2 6 -solid%3:00:02:: 3 5 -solid%5:00:00:cubic:00 10 1 -solid%5:00:00:good:01 1 8 -solid%5:00:00:hard:01 9 1 -solid%5:00:00:homogeneous:00 4 4 -solid%5:00:00:honorable:00 8 1 -solid%5:00:00:opaque:00 11 1 -solid%5:00:00:sound:01 7 1 -solid%5:00:00:unbroken:02 5 4 -solid%5:00:00:wholesome:00 6 1 -solid-state%5:00:02:solid:01 1 2 -solid_angle%1:25:00:: 1 2 -solidarity%1:07:00:: 1 5 -solidity%1:07:02:: 1 2 -solidly%4:02:00:: 2 1 -solidly%4:02:02:: 1 1 -solipsism%1:09:00:: 1 1 -solitary%5:00:00:single(a):00 5 2 -solitary%5:00:00:ungregarious:00 2 1 -solitary%5:00:01:unsocial:00 1 3 -solitude%1:26:00:: 1 1 -solo%1:04:01:: 1 1 -solo_blast%1:04:00:: 1 1 -soloist%1:18:00:: 1 5 -soluble%3:00:01:: 1 1 -solution%1:09:00:: 3 8 -solution%1:10:00:: 2 8 -solution%1:14:00:: 4 6 -solution%1:27:00:: 1 12 -solvating_agent%1:27:00:: 1 1 -solve%2:31:00:: 1 30 -solve%2:31:01:: 2 5 -solved%3:00:00:: 1 1 -solvent%1:27:00:: 1 1 -somatic%5:00:00:physical:00 1 4 -somber%5:00:00:cheerless:00 1 2 -somber%5:00:00:colorless:02 2 1 -sombre%5:00:00:cheerless:00 1 1 -some%3:00:00:: 1 130 -some%4:02:00:: 1 2 -some%5:00:00:many:00 3 7 -some%5:00:00:much(a):00 5 7 -some%5:00:00:unspecified:00 2 66 -some_other%5:00:00:other:00 1 2 -someday%4:02:00:: 1 10 -somehow%4:02:00:: 1 16 -somehow%4:02:01:: 2 7 -someone%1:03:00:: 1 17 -someplace%4:02:00:: 1 1 -somersault%1:04:00:: 1 4 -somersaulting%1:04:00:: 1 1 -sometime%4:02:00:: 1 6 -sometimes%4:02:01:: 1 99 -somewhat%4:02:00:: 2 5 -somewhat%4:02:01:: 1 50 -somewhere%4:02:00:: 1 30 -somnolent%5:00:00:asleep(p):00 1 2 -son%1:18:00:: 1 48 -son%1:18:01:: 2 2 -son_of_a_bitch%1:18:00:: 1 7 -sonar%1:06:00:: 1 6 -song%1:04:00:: 3 3 -song%1:10:00:: 1 46 -song%1:10:02:: 4 1 -song%1:11:00:: 2 3 -songwriter%1:18:00:: 1 2 -sonnet%1:10:00:: 1 1 -sonny%1:18:00:: 1 3 -sonny_boy%1:18:00:: 1 1 -sonogram%1:06:00:: 1 1 -sonority%1:07:00:: 1 1 -sonorous%5:00:00:full:01 1 1 -soon%4:02:00:: 1 60 -soon_enough%4:02:00:: 1 2 -sooner%4:02:00:: 1 2 -soothe%2:29:00:: 2 1 -soothe%2:37:00:: 1 1 -soothingly%4:02:00:: 1 2 -soothsayer%1:18:00:: 1 1 -sooty%5:00:00:achromatic:00 1 1 -sophisticate%1:18:00:: 1 1 -sophisticated%3:00:00:: 1 9 -sophisticated%5:00:00:cosmopolitan:02 3 1 -sophisticated%5:00:00:high-tech:00 2 1 -sophistication%1:09:00:: 1 2 -sophomore%1:18:00:: 1 4 -sopping%5:00:00:wet:01 1 1 -soprano%1:18:00:: 1 2 -sorb%2:35:00:: 1 6 -sorbed%5:00:00:combined:00 1 2 -sordid%5:00:00:disreputable:00 1 2 -sore%1:26:00:: 1 1 -sore%5:00:00:angry:00 3 1 -sore%5:00:00:painful:00 1 8 -sore%5:00:00:unpleasant:00 2 1 -sore-eyed%5:00:00:unhealthy:00 1 1 -sorely%4:02:01:: 1 2 -sorority%1:14:00:: 1 2 -sorption%1:22:00:: 1 2 -sorrel%5:00:00:chromatic:00 1 1 -sorrow%1:09:00:: 3 1 -sorrow%1:12:00:: 1 3 -sorrow%1:12:01:: 2 1 -sorrowful%3:00:00:: 1 2 -sorry%3:00:02:: 3 1 -sorry%5:00:00:bad:00 5 1 -sorry%5:00:00:cheerless:00 6 1 -sorry%5:00:00:compassionate:00 2 3 -sorry%5:00:00:penitent:00 4 1 -sorry%5:00:00:unhappy:00 1 8 -sorry_for%5:00:00:compassionate:00 1 1 -sort%1:07:00:: 2 2 -sort%1:09:00:: 1 65 -sort%1:18:00:: 3 1 -sort_of%4:02:00:: 1 10 -sort_out%2:31:00:: 1 3 -sort_out%2:31:01:: 2 2 -soughingly%4:02:00:: 1 1 -sought%3:44:00:: 1 1 -soul%1:03:00:: 2 6 -soul%1:04:00:: 4 1 -soul%1:12:00:: 3 3 -soul%1:18:00:: 1 20 -soulfully%4:02:00:: 1 1 -sound%1:07:00:: 1 36 -sound%1:09:00:: 2 16 -sound%1:10:00:: 5 6 -sound%1:10:01:: 6 1 -sound%1:11:00:: 4 11 -sound%1:19:00:: 3 11 -sound%2:32:00:: 5 1 -sound%2:39:00:: 2 14 -sound%2:39:02:: 4 1 -sound%2:39:03:: 3 9 -sound%2:39:06:: 1 38 -sound%3:00:00:: 1 8 -sound%3:00:01:: 3 1 -sound%3:00:04:: 4 1 -sound%4:02:01:: 1 1 -sound%5:00:00:healthy:00 5 1 -sound%5:00:00:reasonable:00 2 3 -sound_effect%1:09:00:: 1 1 -sound_off%2:32:01:: 1 1 -sound_wave%1:11:00:: 1 3 -sounding%5:00:00:superficial:00 1 2 -soundproof%5:00:00:impervious:00 1 1 -soundtrack%1:06:00:: 1 2 -soup%1:13:00:: 1 2 -soup_bowl%1:06:00:: 1 1 -sour%2:30:01:: 1 2 -sour%2:39:00:: 2 1 -sour%5:00:00:malodorous:00 1 1 -source%1:06:00:: 4 8 -source%1:09:00:: 3 12 -source%1:10:00:: 2 12 -source%1:15:00:: 1 34 -source%1:18:00:: 6 1 -source%1:18:01:: 5 3 -sourdough%1:27:00:: 1 1 -sourdough%5:00:00:leavened:00 1 1 -sourly%4:02:00:: 1 1 -souse%2:30:01:: 1 1 -soutane%1:06:00:: 1 1 -south%1:15:00:: 2 5 -south%1:15:01:: 1 37 -south%1:15:02:: 4 2 -south%1:24:00:: 3 2 -south%3:00:00:: 1 13 -south%4:02:00:: 1 8 -south-central%5:00:00:south:00 1 1 -south_africa%1:15:00:: 1 1 -south_america%1:17:00:: 1 3 -south_carolina%1:15:00:: 2 1 -south_carolina%1:15:01:: 1 1 -south_carolinian%1:18:00:: 1 1 -south_dakota%1:15:00:: 1 1 -south_sea%1:17:00:: 1 1 -south_side%1:15:00:: 1 2 -southbound%5:00:00:south:00 1 1 -southeast%1:15:00:: 2 1 -southeast%1:24:00:: 1 1 -southeast%4:02:00:: 1 2 -southeastern%5:00:00:south:00 1 1 -southern%3:00:01:: 3 3 -southern%3:00:02:: 1 30 -southern%5:00:01:south:00 4 1 -southern%5:00:02:south:00 2 7 -southern_hemisphere%1:15:00:: 1 1 -southerner%1:18:00:: 1 19 -southernism%1:10:00:: 1 1 -southpaw%1:18:01:: 1 5 -southward%4:02:00:: 1 3 -southwest%1:15:00:: 2 1 -southwest%1:24:00:: 1 1 -souvenir%1:06:00:: 1 1 -sovereign%1:18:00:: 1 5 -sovereign%5:00:00:dominant:01 2 2 -sovereign%5:00:00:free:00 1 4 -sovereignty%1:26:00:: 1 1 -soviet%3:01:00:: 1 25 -soviet_union%1:15:00:: 1 5 -soviets%1:14:00:: 1 3 -sow%2:32:00:: 2 1 -sow%2:35:00:: 1 5 -sow_one's_oats%2:34:00:: 1 1 -sowbelly%1:13:00:: 1 1 -space%1:03:00:: 1 24 -space%1:10:00:: 6 2 -space%1:10:01:: 8 1 -space%1:14:00:: 2 21 -space%1:15:00:: 4 12 -space%1:15:01:: 5 4 -space%1:25:00:: 3 16 -space%1:28:00:: 7 1 -space%2:38:00:: 1 3 -space_probe%1:06:00:: 1 3 -spaced%5:00:00:distributed:00 1 3 -spacing%1:07:00:: 2 1 -spacing%1:28:00:: 1 1 -spacious%5:00:00:large:00 1 2 -spaciousness%1:07:00:: 1 2 -spade%1:06:00:: 2 1 -spade%1:06:01:: 1 2 -spade%2:35:00:: 1 1 -spain%1:15:00:: 1 2 -span%1:07:00:: 2 1 -span%1:28:00:: 1 6 -span%2:42:00:: 1 8 -spang%2:35:00:: 1 1 -spaniel%1:05:00:: 1 1 -spanish%1:10:00:: 1 6 -spanish%1:18:00:: 2 1 -spanish%3:01:00:: 1 3 -spanish-american_war%1:04:00:: 1 2 -spare%2:40:00:: 3 5 -spare%2:41:00:: 1 7 -spare%2:41:01:: 2 5 -spare%5:00:00:thin:03 1 3 -spare%5:00:01:unnecessary:00 2 1 -spare_time%1:28:00:: 1 4 -spark%1:07:00:: 2 4 -spark%1:11:01:: 1 4 -spark%1:19:00:: 3 2 -spark%2:36:00:: 1 5 -spark%2:43:00:: 2 1 -sparkle%1:07:01:: 1 2 -sparkle%2:30:01:: 2 1 -sparkle%2:43:00:: 1 1 -sparkling%5:00:00:lively:00 2 1 -sparkling%5:00:00:starry:00 1 2 -sparrow%1:05:00:: 1 1 -sparse%5:00:00:distributed:00 1 3 -sparsely%4:02:00:: 1 1 -spasm%1:26:00:: 1 1 -spasmodic%5:00:00:unsteady:00 1 1 -spatial%3:01:00:: 1 8 -spatiality%1:07:00:: 1 1 -spatially%4:02:00:: 1 2 -spatter%1:04:00:: 2 1 -spatter%1:11:00:: 1 1 -spatter%2:35:00:: 1 1 -speak%2:32:00:: 1 86 -speak%2:32:01:: 2 53 -speak%2:32:02:: 3 23 -speak%2:32:03:: 4 11 -speak%2:39:00:: 5 3 -speak_for%2:41:00:: 1 6 -speak_of%2:32:00:: 1 11 -speak_to%2:32:00:: 1 21 -speak_up%2:32:00:: 1 1 -speakeasy%1:06:00:: 1 1 -speaker%1:06:00:: 2 2 -speaker%1:18:00:: 1 9 -speaker%1:18:01:: 3 1 -speaking%1:10:01:: 1 1 -spear%1:06:00:: 1 1 -spear%2:35:00:: 1 3 -spearhead%2:41:00:: 1 1 -special%1:10:00:: 1 1 -special%5:00:00:extraordinary:00 2 20 -special%5:00:00:primary:00 6 2 -special%5:00:00:specialized:00 4 6 -special%5:00:00:specific:00 5 3 -special%5:00:00:uncommon:00 3 7 -special%5:00:01:specific:00 1 30 -specialist%1:18:00:: 1 19 -specialist%1:18:01:: 2 1 -specialization%1:04:00:: 2 2 -specialization%1:04:01:: 1 2 -specialize%2:30:00:: 1 3 -specialize%2:30:01:: 3 2 -specialize%2:32:00:: 2 2 -specialized%3:00:00:: 1 6 -specialized%5:00:00:technical:00 2 2 -specially%4:02:00:: 2 2 -specially%4:02:01:: 1 3 -specialty%1:07:02:: 1 2 -species%1:09:00:: 2 5 -species%1:14:00:: 1 27 -specific%3:00:00:: 1 39 -specific%5:00:00:specified:00 2 5 -specific_heat%1:19:00:: 1 1 -specifically%4:02:00:: 1 13 -specification%1:10:00:: 1 1 -specificity%1:07:01:: 1 7 -specificity%1:07:02:: 2 1 -specified%3:00:00:: 1 6 -specify%2:31:02:: 5 1 -specify%2:32:00:: 4 2 -specify%2:32:02:: 2 4 -specify%2:32:03:: 1 6 -specify%2:42:00:: 3 3 -specimen%1:08:00:: 2 3 -specimen%1:09:00:: 1 5 -speck%1:07:00:: 1 2 -speck%1:23:00:: 3 1 -speck%1:27:00:: 2 1 -speckled%5:00:00:patterned:00 1 1 -spectacle%1:06:00:: 2 2 -spectacle%1:10:00:: 1 8 -spectacles%1:06:00:: 1 1 -spectacular%5:00:00:dramatic:00 2 1 -spectacular%5:00:00:impressive:00 1 4 -spectacularly%4:02:00:: 1 2 -spectator%1:06:00:: 2 1 -spectator%1:18:00:: 1 12 -spectator_pump%1:06:00:: 1 1 -specter%1:09:00:: 1 5 -specter%1:18:00:: 2 1 -spectral%3:01:00:: 1 4 -spectral%5:00:00:supernatural:00 2 2 -spectrometer%1:06:00:: 1 2 -spectrophotometer%1:06:00:: 1 1 -spectroscopy%1:04:00:: 1 3 -spectrum%1:07:00:: 2 2 -spectrum%1:19:00:: 1 18 -specular%5:00:00:reflective:00 1 1 -speculate%2:31:00:: 3 1 -speculate%2:31:01:: 1 5 -speculate%2:32:00:: 2 4 -speculation%1:09:00:: 2 2 -speculation%1:10:03:: 1 2 -speculation%1:21:00:: 3 1 -speculative%5:00:00:theoretical:00 2 1 -speculative%5:00:00:unsound:00 1 1 -speculatively%4:02:00:: 1 1 -speech%1:10:00:: 2 7 -speech%1:10:01:: 1 16 -speech%1:10:03:: 6 1 -speech%1:10:04:: 4 1 -speech%1:10:05:: 5 1 -speech%1:10:06:: 3 4 -speechlessness%1:07:00:: 1 1 -speed%1:04:00:: 3 4 -speed%1:07:00:: 2 9 -speed%1:28:00:: 1 25 -speed%2:30:00:: 2 5 -speed%2:30:02:: 5 1 -speed%2:38:00:: 3 3 -speed%2:38:01:: 4 2 -speed%2:38:03:: 1 7 -speed_limit%1:10:00:: 1 1 -speed_of_light%1:28:00:: 1 1 -speed_up%2:30:00:: 1 3 -speedily%4:02:00:: 1 2 -speedy%5:00:00:fast:01 1 2 -speedy%5:00:03:fast:01 2 1 -spell%1:26:00:: 1 4 -spell%1:28:00:: 2 1 -spell%1:28:01:: 3 1 -spell%2:32:00:: 1 2 -spell%2:32:01:: 2 2 -spell%2:36:00:: 3 1 -spell_out%2:32:00:: 1 8 -spellbinding%5:00:00:attractive:01 1 1 -spellbound%5:00:00:enchanted:00 1 3 -spelling%1:10:00:: 1 2 -spend%2:40:00:: 2 36 -spend%2:40:01:: 3 3 -spend%2:42:00:: 1 98 -spending%1:04:00:: 1 1 -sphere%1:06:00:: 2 5 -sphere%1:09:00:: 4 2 -sphere%1:15:00:: 3 2 -sphere%1:26:00:: 1 5 -spherical%3:01:00:: 1 5 -spherical%5:00:00:round:00 2 1 -spherule%1:25:00:: 1 1 -spic%5:00:00:clean:01 1 1 -spice%1:27:00:: 1 1 -spice%2:30:00:: 1 1 -spice_up%2:39:00:: 1 1 -spider%1:05:00:: 1 1 -spidery%3:01:00:: 1 1 -spike%1:06:00:: 2 1 -spike%1:11:00:: 1 2 -spike_out%2:30:00:: 1 1 -spiked%5:00:02:pointed:00 1 1 -spill%2:35:00:: 3 1 -spill%2:35:04:: 1 2 -spill%2:38:00:: 2 1 -spill_out%2:38:00:: 1 3 -spill_over%2:37:00:: 1 1 -spin%2:38:00:: 2 5 -spin%2:38:01:: 1 11 -spin_around%2:38:00:: 1 3 -spine%1:08:00:: 1 3 -spineless%5:00:00:weak:00 1 1 -spinnability%1:07:00:: 1 1 -spiral%1:25:00:: 1 7 -spiral%2:38:00:: 1 2 -spire%1:06:00:: 1 4 -spirit%1:07:00:: 3 13 -spirit%1:07:02:: 7 3 -spirit%1:07:03:: 8 2 -spirit%1:10:00:: 6 3 -spirit%1:18:00:: 4 7 -spirit%1:18:01:: 1 45 -spirit%1:26:00:: 2 37 -spirit%1:26:01:: 5 6 -spirit_world%1:15:00:: 1 2 -spirited%3:00:00:: 1 3 -spirits%1:13:00:: 1 1 -spiritual%1:10:00:: 1 2 -spiritual%5:00:00:incorporeal:00 3 1 -spiritual%5:00:00:sacred:00 1 7 -spiritual%5:00:00:unworldly:00 2 1 -spiritual_being%1:18:00:: 1 1 -spiritually%4:02:00:: 1 3 -spit%2:29:00:: 1 11 -spit%2:32:00:: 2 1 -spit_out%2:29:00:: 1 2 -spit_out%2:32:00:: 2 1 -spite%1:12:00:: 1 1 -spiteful%5:00:00:malicious:00 1 1 -splash%1:11:00:: 1 1 -splash%2:35:00:: 3 1 -splash%2:35:01:: 1 2 -splash%2:35:06:: 4 1 -splash%2:38:00:: 2 1 -splashed%5:00:00:distributed:00 1 1 -splatter%1:11:00:: 1 1 -splattered%5:00:00:covered:00 1 2 -spleen%1:08:00:: 1 3 -splendid%5:00:00:beautiful:00 1 7 -splendidly%4:02:00:: 1 1 -splendor%1:07:00:: 1 2 -splendor%1:07:01:: 2 2 -splenomegaly%1:26:00:: 1 1 -splice%2:35:01:: 1 1 -splicing%1:06:00:: 1 1 -splinter%1:17:00:: 1 3 -splinter%2:30:00:: 3 1 -splinter%2:41:00:: 1 1 -splinter%2:41:01:: 2 1 -splintered%5:00:00:broken:01 1 2 -splinters%1:27:00:: 1 1 -splintery%5:00:00:breakable:00 1 1 -split%1:04:02:: 1 5 -split%2:30:01:: 5 2 -split%2:35:00:: 2 3 -split%2:38:00:: 4 2 -split%2:41:00:: 3 2 -split%2:41:03:: 1 4 -split%5:00:00:broken:01 3 1 -split%5:00:00:divided:00 2 1 -split%5:00:02:divided:00 1 1 -split_end%1:18:00:: 1 1 -split_second%1:28:00:: 1 1 -splitting%5:00:00:cacophonous:00 1 1 -splutter%1:11:00:: 1 1 -spluttering%5:00:00:noisy:00 1 2 -spoil%2:30:00:: 2 1 -spoil%2:30:01:: 3 1 -spoil%2:41:02:: 1 2 -spoilables%1:13:00:: 1 1 -spoiled%5:00:00:ill-natured:00 2 1 -spoiled%5:00:00:soft:02 1 1 -spoke%1:06:00:: 1 2 -spoken%3:00:00:: 1 2 -spoken%5:00:00:voiced:00 2 1 -spoken_language%1:10:00:: 1 2 -spoken_word%1:10:00:: 1 1 -spokesman%1:18:00:: 1 1 -sponge%1:27:00:: 1 1 -sponge%2:35:00:: 1 2 -sponge_off%2:35:00:: 1 2 -spongy%5:00:00:soft:01 1 2 -sponsor%1:18:00:: 1 4 -sponsor%2:40:00:: 1 26 -sponsor%2:40:01:: 2 7 -sponsorship%1:04:01:: 1 3 -spontaneity%1:07:00:: 1 3 -spontaneous%3:00:00:: 1 8 -spontaneously%4:02:00:: 1 2 -spoon%1:06:00:: 1 1 -spoonful%1:23:00:: 1 1 -sporadic%3:00:00:: 1 3 -spore%1:20:00:: 1 2 -sport%1:04:00:: 1 11 -sport%1:04:01:: 2 6 -sport%2:42:00:: 1 1 -sport_shirt%1:06:00:: 1 1 -sporting%3:01:00:: 2 3 -sporting%5:00:00:adventurous:00 3 1 -sporting%5:00:00:fair:03 1 5 -sports_arena%1:06:00:: 1 1 -sports_car%1:06:00:: 1 1 -sports_editor%1:18:00:: 1 2 -sports_jacket%1:06:00:: 1 1 -sports_writer%1:18:00:: 1 1 -sportsman%1:18:00:: 1 6 -sportswoman%1:18:00:: 1 1 -spot%1:04:01:: 8 1 -spot%1:06:00:: 7 1 -spot%1:07:00:: 4 2 -spot%1:07:01:: 5 2 -spot%1:07:02:: 3 2 -spot%1:10:00:: 6 1 -spot%1:10:01:: 2 2 -spot%1:15:01:: 1 23 -spot%2:39:00:: 1 18 -spot_promote%2:41:00:: 1 1 -spotless%5:00:00:clean:01 1 3 -spotlight%1:26:00:: 1 1 -spotlight%2:30:01:: 1 1 -spouse%1:18:00:: 1 3 -spout%2:32:00:: 2 1 -spout%2:38:00:: 1 1 -sprain%2:29:00:: 1 1 -sprawl%2:35:00:: 1 8 -sprawl%2:38:00:: 2 2 -sprawled%5:00:00:extended:00 1 2 -sprawling%1:07:00:: 1 1 -sprawling%5:00:00:extended:00 1 1 -spray%1:06:00:: 4 1 -spray%1:06:01:: 3 1 -spray%1:23:00:: 2 1 -spray%1:27:01:: 1 3 -spray%2:35:00:: 2 2 -spray%2:35:01:: 1 3 -spray-dried%3:44:00:: 1 1 -spraying%1:04:03:: 1 3 -spread%1:06:01:: 3 2 -spread%1:07:00:: 4 1 -spread%1:07:02:: 2 3 -spread%1:11:00:: 1 3 -spread%2:32:00:: 5 5 -spread%2:32:02:: 6 4 -spread%2:35:00:: 1 24 -spread%2:35:03:: 4 5 -spread%2:35:07:: 2 6 -spread%2:38:00:: 7 3 -spread%2:38:02:: 8 3 -spread%2:42:00:: 3 5 -spread%5:00:00:distributed:00 1 4 -spread%5:00:00:extended:00 3 1 -spread%5:00:00:prepared:00 2 1 -spread-eagle%2:29:00:: 1 1 -spread-out%5:00:00:distributed:00 1 2 -spread_out%2:35:00:: 2 2 -spread_out%2:38:00:: 1 6 -spread_over%2:35:00:: 1 3 -spreading%5:00:00:wide:00 1 1 -spree%1:04:00:: 1 4 -sprightly%5:00:00:spirited:00 1 1 -spring%1:04:00:: 6 1 -spring%1:06:00:: 2 4 -spring%1:07:00:: 5 1 -spring%1:15:00:: 4 1 -spring%1:17:00:: 3 3 -spring%1:28:00:: 1 25 -spring%2:29:00:: 5 1 -spring%2:38:00:: 3 2 -spring%2:38:01:: 1 15 -spring%2:39:00:: 4 1 -spring%2:42:00:: 2 5 -spring_training%1:28:00:: 1 3 -spring_up%2:42:00:: 1 8 -springboard%1:06:00:: 1 1 -springfield%1:15:00:: 1 2 -springtime%1:28:00:: 1 4 -sprinkle%2:35:00:: 2 1 -sprinkle%2:35:01:: 1 5 -sprinkling%1:23:00:: 1 2 -sprint%2:38:00:: 1 1 -sprinter%1:18:00:: 1 2 -sprout%2:30:00:: 1 4 -sprue%1:26:00:: 1 1 -spume%1:17:00:: 1 1 -spur%1:06:00:: 4 1 -spur%1:06:01:: 5 1 -spur%1:10:00:: 1 3 -spur%1:20:00:: 3 1 -spur%1:25:00:: 2 1 -spur%2:35:00:: 4 1 -spur%2:35:02:: 3 1 -spur%2:37:00:: 2 2 -spur%2:41:00:: 1 2 -spurn%2:32:00:: 1 2 -sputnik%1:06:00:: 1 2 -sputter%2:30:00:: 2 1 -sputter%2:39:00:: 1 1 -sputtering%1:11:00:: 1 1 -spy%1:18:00:: 1 3 -spy%2:32:01:: 2 2 -spy%2:39:00:: 1 2 -squabble%1:10:00:: 1 1 -squad%1:14:00:: 2 4 -squad%1:14:01:: 1 8 -squad_car%1:06:00:: 1 1 -squadron%1:14:00:: 2 1 -squadron%1:14:01:: 1 1 -squadroom%1:06:02:: 1 1 -squall%2:32:00:: 2 1 -squall%2:32:01:: 1 1 -squalling%5:00:00:unquiet:00 1 1 -square%1:15:00:: 3 2 -square%1:23:00:: 2 2 -square%1:25:00:: 1 23 -square%2:30:00:: 1 4 -square%2:31:00:: 2 2 -square%2:38:00:: 4 1 -square%2:42:01:: 3 1 -square%3:00:00:: 1 7 -square%4:02:00:: 1 2 -square_away%2:30:00:: 1 1 -square_block%1:06:00:: 1 1 -square_mile%1:23:00:: 1 5 -square_root%1:23:00:: 1 1 -square_up%2:30:00:: 1 2 -squared%5:00:00:square:00 1 3 -squarely%4:02:01:: 3 1 -squarely%4:02:03:: 1 3 -squarely%4:02:05:: 2 1 -squash%2:35:00:: 1 1 -squashed%3:44:00:: 1 1 -squat%1:04:01:: 1 1 -squat%2:35:00:: 1 8 -squat%2:42:01:: 2 2 -squat%5:00:00:low:01 2 2 -squat%5:00:00:short:03 1 3 -squatting%1:04:00:: 2 1 -squatting%1:04:01:: 1 1 -squawk%2:32:01:: 1 3 -squeak%1:11:00:: 1 1 -squeak%2:39:00:: 1 3 -squeaky%5:00:00:high:03 1 1 -squeal%1:11:00:: 1 1 -squeal%2:32:01:: 1 2 -squeeze%1:04:00:: 1 1 -squeeze%2:35:00:: 2 6 -squeeze%2:35:03:: 3 4 -squeeze%2:35:05:: 1 9 -squeeze_out%2:35:00:: 3 1 -squeeze_out%2:40:01:: 2 1 -squeeze_out%2:41:00:: 1 1 -squelch%2:30:00:: 1 1 -squint%2:29:00:: 1 3 -squire%1:18:00:: 2 1 -squire%1:18:01:: 1 2 -squirm%2:38:00:: 1 3 -squirrel%1:05:00:: 1 3 -squirt%2:35:00:: 1 1 -st._louis%1:15:00:: 1 9 -st._paul%1:15:00:: 1 3 -st._petersburg%1:15:01:: 1 1 -stab%2:35:02:: 1 1 -stabbed%5:00:00:injured:00 1 1 -stability%1:07:00:: 1 6 -stabilization%1:04:00:: 1 2 -stabilize%2:30:01:: 1 2 -stabilized%5:00:00:stable:00 1 1 -stabilizing%5:00:00:helpful:00 1 1 -stable%1:06:00:: 1 3 -stable%2:41:00:: 1 1 -stable%3:00:00:: 1 6 -stable%5:00:00:sound:00 2 2 -staccato%3:00:00:: 1 1 -stack%1:14:00:: 1 2 -stack%2:35:01:: 1 2 -stack%2:35:02:: 2 1 -stacked%3:44:00:: 1 1 -stacked_heel%1:06:00:: 1 1 -stadium%1:06:00:: 1 2 -staff%1:06:00:: 2 2 -staff%1:14:00:: 3 1 -staff%1:14:01:: 1 17 -staff%2:33:00:: 1 4 -stage%1:04:00:: 6 2 -stage%1:06:00:: 3 15 -stage%1:06:01:: 5 2 -stage%1:10:00:: 4 6 -stage%1:15:00:: 7 1 -stage%1:26:00:: 2 18 -stage%1:28:00:: 1 25 -stage%2:36:00:: 1 9 -stage%2:36:01:: 2 5 -stage_direction%1:10:00:: 1 1 -stage_door%1:06:00:: 1 2 -stage_left%1:15:00:: 1 1 -stage_right%1:15:00:: 1 1 -stager%1:18:00:: 1 1 -stagger%2:31:00:: 3 2 -stagger%2:35:00:: 4 1 -stagger%2:38:00:: 1 10 -stagger%2:38:01:: 2 6 -staggering%5:00:00:impressive:00 2 1 -staggering%5:00:00:unsteady:00 1 1 -staggeringly%4:02:00:: 1 2 -staginess%1:07:00:: 1 1 -stagnant%5:00:00:standing(a):02 1 2 -stagnation%1:26:00:: 1 1 -stain%1:07:00:: 1 5 -stain%1:26:00:: 3 1 -stain%1:27:00:: 2 2 -stain%2:30:00:: 3 2 -stain%2:30:01:: 1 19 -stain%2:35:00:: 2 2 -stained%3:00:00:: 1 9 -stained%5:00:00:painted:00 2 1 -stained-glass_window%1:06:00:: 1 1 -staining%1:04:00:: 1 23 -staining%1:04:01:: 2 10 -stainless_steel%1:27:00:: 1 1 -stair%1:06:00:: 1 1 -staircase%1:06:00:: 1 3 -stairs%1:06:00:: 1 15 -stairway%1:06:00:: 1 3 -stairwell%1:06:00:: 1 1 -stake%1:06:01:: 3 1 -stake%1:10:00:: 2 1 -stake%1:21:02:: 1 2 -stake%2:33:00:: 2 2 -stake%2:35:00:: 3 1 -stake%2:41:00:: 1 2 -stale%3:00:00:: 1 1 -stalin%1:18:00:: 1 1 -stalk%2:38:00:: 1 4 -stalk%2:38:01:: 2 1 -stalked%3:00:00:: 1 1 -stalking%5:00:00:following:00 1 2 -stall%1:06:00:: 2 3 -stall%1:06:01:: 3 2 -stall%1:06:03:: 1 10 -stall%2:30:00:: 3 1 -stall%2:38:00:: 2 1 -stall%2:42:00:: 1 2 -stamen%1:20:00:: 1 1 -staminate%5:00:00:male:00 1 2 -stammer%2:32:00:: 1 6 -stammering%5:00:00:inarticulate:00 1 1 -stamp%1:10:00:: 3 1 -stamp%1:10:01:: 4 1 -stamp%1:14:00:: 2 1 -stamp%1:25:00:: 1 1 -stamp%2:30:00:: 6 1 -stamp%2:31:00:: 5 1 -stamp%2:35:01:: 2 3 -stamp%2:35:02:: 4 1 -stamp%2:38:00:: 1 3 -stamp%2:39:00:: 3 1 -stamp_down%2:30:00:: 1 1 -stamp_out%2:30:00:: 1 2 -stampede%1:04:00:: 1 1 -stampede%2:38:01:: 1 2 -stance%1:07:00:: 1 1 -stand%1:04:01:: 9 1 -stand%1:06:00:: 1 4 -stand%1:06:03:: 5 2 -stand%1:06:04:: 4 2 -stand%1:06:05:: 8 1 -stand%1:09:00:: 7 1 -stand%1:11:00:: 6 1 -stand%1:14:00:: 3 2 -stand%1:15:00:: 2 2 -stand%2:31:00:: 5 9 -stand%2:31:01:: 6 8 -stand%2:32:02:: 12 1 -stand%2:33:00:: 11 1 -stand%2:35:00:: 1 169 -stand%2:35:01:: 10 1 -stand%2:42:00:: 4 18 -stand%2:42:01:: 9 2 -stand%2:42:02:: 8 3 -stand%2:42:03:: 3 38 -stand%2:42:04:: 2 53 -stand%2:42:06:: 7 5 -stand_back%2:35:00:: 2 1 -stand_back%2:42:00:: 1 1 -stand_by%2:42:00:: 1 4 -stand_by%2:42:02:: 2 2 -stand_for%2:31:00:: 4 1 -stand_for%2:32:00:: 2 2 -stand_for%2:32:01:: 1 5 -stand_for%2:42:00:: 3 1 -stand_guard%2:41:00:: 1 2 -stand_in%2:40:00:: 1 1 -stand_out%2:38:00:: 3 1 -stand_out%2:42:00:: 2 4 -stand_out%2:42:02:: 1 4 -stand_sentinel%2:41:00:: 1 1 -stand_still%2:38:00:: 1 7 -stand_up%2:32:00:: 5 2 -stand_up%2:33:00:: 2 5 -stand_up%2:35:00:: 4 2 -stand_up%2:35:03:: 3 2 -stand_up%2:38:00:: 1 23 -stand_watch%2:41:00:: 1 1 -standard%1:09:00:: 2 11 -standard%1:10:00:: 1 11 -standard%3:00:01:: 3 2 -standard%3:00:02:: 1 12 -standard%5:00:00:common:01 2 5 -standard_deviation%1:09:00:: 1 8 -standard_of_living%1:26:00:: 1 2 -standard_of_measurement%1:24:00:: 1 1 -standardize%2:30:00:: 1 1 -standardized%5:00:00:standard:02 1 2 -standby%1:06:00:: 1 1 -standing%1:26:00:: 1 3 -standing%5:00:00:erect:00 1 2 -standing%5:00:00:permanent:00 2 1 -standing_ovation%1:10:00:: 1 1 -standpoint%1:09:00:: 1 6 -stands%1:06:00:: 1 2 -standstill%1:26:00:: 1 1 -staple%1:06:00:: 1 1 -star%1:17:00:: 1 8 -star%1:17:01:: 3 3 -star%1:18:00:: 4 1 -star%1:18:01:: 2 3 -star%2:42:00:: 1 3 -star%5:00:00:major:06 1 1 -star-spangled_banner%1:10:01:: 1 1 -star_of_david%1:10:00:: 1 2 -starboard%1:06:00:: 1 1 -stardom%1:26:00:: 1 1 -stare%1:04:00:: 1 9 -stare%2:29:00:: 2 4 -stare%2:39:00:: 1 82 -stark%5:00:00:unconditional:00 1 1 -starlet%1:18:00:: 1 1 -starlight%1:19:00:: 1 1 -start%1:04:00:: 5 1 -start%1:04:01:: 4 1 -start%1:04:02:: 3 2 -start%1:11:00:: 1 11 -start%1:28:00:: 2 5 -start%2:30:00:: 1 159 -start%2:30:01:: 2 45 -start%2:33:00:: 11 1 -start%2:36:00:: 5 16 -start%2:36:01:: 6 11 -start%2:38:00:: 9 5 -start%2:38:01:: 8 7 -start%2:38:02:: 3 29 -start%2:38:04:: 7 7 -start%2:41:00:: 10 2 -start%2:42:00:: 4 17 -start_out%2:30:00:: 1 7 -start_out%2:38:00:: 2 2 -start_up%2:38:00:: 1 2 -starter%1:06:02:: 1 1 -starting%1:04:00:: 1 3 -starting%5:00:00:opening:00 2 1 -starting%5:00:00:protrusive:00 1 1 -starting_buffer%1:27:00:: 1 6 -starting_pitcher%1:18:00:: 1 1 -starting_point%1:28:00:: 1 2 -startle%2:37:00:: 1 9 -startled%5:00:00:surprised:00 1 6 -startling%5:00:00:surprising:00 1 11 -startup%1:04:01:: 1 1 -starvation%1:04:00:: 2 1 -starvation%1:26:00:: 1 2 -starve%2:34:00:: 1 4 -starve%2:34:02:: 2 3 -starve%2:34:03:: 3 1 -starved%5:00:00:malnourished:00 1 1 -starving%5:00:00:malnourished:00 1 1 -state%1:03:00:: 2 39 -state%1:14:00:: 4 21 -state%1:14:01:: 3 24 -state%1:15:01:: 1 108 -state%2:32:00:: 1 73 -state%2:32:01:: 2 15 -state%2:32:02:: 3 2 -state%5:00:01:public:00 2 1 -state%5:00:02:public:00 1 24 -state-supported%5:00:00:public:00 1 1 -state_department%1:14:00:: 1 4 -state_department%1:14:01:: 2 1 -state_government%1:14:00:: 1 5 -state_of_affairs%1:26:00:: 1 1 -state_of_matter%1:26:00:: 1 1 -state_prison%1:06:00:: 1 1 -state_treasurer%1:18:00:: 1 1 -stately%5:00:00:impressive:00 1 1 -statement%1:10:00:: 1 58 -statement%1:10:02:: 2 10 -statement%1:10:04:: 3 1 -statement%1:10:05:: 4 1 -staten_island%1:15:00:: 1 1 -statesman%1:18:00:: 1 4 -statesmanlike%3:00:00:: 1 1 -statesmanship%1:07:00:: 1 1 -static%5:00:00:nonmoving:00 2 1 -static%5:00:00:undynamic:00 1 5 -station%1:06:00:: 1 23 -station%2:33:00:: 1 4 -station_house%1:06:00:: 1 1 -station_keeper%1:18:00:: 1 3 -station_wagon%1:06:00:: 1 3 -stationery%1:10:00:: 1 2 -statistic%1:09:00:: 1 7 -statistical%3:01:00:: 1 5 -statistically%4:02:00:: 1 2 -statistician%1:18:01:: 1 1 -statuary%1:14:00:: 1 1 -statue%1:06:00:: 1 5 -statuette%1:06:00:: 1 1 -stature%1:26:00:: 1 8 -status%1:26:00:: 1 20 -status%1:26:01:: 2 1 -status_quo%1:26:00:: 1 3 -statute%1:10:00:: 1 5 -statutory%3:01:00:: 1 4 -staunch%5:00:00:constant:00 1 2 -stave_off%2:41:00:: 1 3 -stay%1:04:00:: 1 2 -stay%2:30:00:: 1 43 -stay%2:30:01:: 6 3 -stay%2:38:00:: 2 32 -stay%2:38:01:: 5 7 -stay%2:42:01:: 3 22 -stay%2:42:02:: 4 17 -stay_at%2:42:01:: 1 3 -stay_away_from%2:42:00:: 1 1 -stay_in_place%2:38:00:: 1 1 -stay_on%2:42:00:: 1 5 -stay_put%2:38:00:: 1 2 -stay_together%2:41:00:: 1 1 -stead%1:04:00:: 1 2 -steadfastly%4:02:00:: 1 2 -steadied%5:00:00:steady:00 1 1 -steadily%4:02:01:: 1 6 -steady%2:30:00:: 1 2 -steady%2:35:00:: 2 1 -steady%3:00:00:: 1 11 -steady%5:00:00:invariable:00 2 3 -steak%1:13:00:: 1 2 -steakhouse%1:06:00:: 1 1 -steal%2:33:00:: 3 3 -steal%2:38:00:: 2 4 -steal%2:40:00:: 1 23 -steal_away%2:38:00:: 1 1 -stealing%1:04:00:: 1 1 -stealth%1:04:00:: 1 1 -stealthily%4:02:00:: 1 3 -stealthy%5:00:00:concealed:00 1 1 -steam%2:38:02:: 1 2 -steam%2:43:00:: 2 1 -steam_bath%1:06:00:: 1 1 -steam_shovel%1:06:00:: 1 1 -steam_turbine%1:06:00:: 1 1 -steamboat%1:06:00:: 1 1 -steamed%5:00:00:cooked:00 1 1 -steaming%5:00:00:wet:01 1 1 -steamship%1:06:00:: 1 1 -steed%1:05:00:: 1 1 -steel%1:06:01:: 2 1 -steel%1:27:00:: 1 20 -steel%2:37:00:: 1 1 -steel_blue%1:07:00:: 1 1 -steel_trap%1:09:00:: 1 1 -steep%2:31:00:: 1 2 -steep%3:00:00:: 1 5 -steeple%1:06:00:: 1 12 -steeply%4:02:00:: 1 1 -steer%2:38:00:: 1 4 -steer%2:38:01:: 2 3 -steer%2:41:00:: 3 1 -steering_wheel%1:06:00:: 1 1 -stein%1:06:00:: 1 1 -stellar%5:00:00:major:06 1 1 -stem%1:06:02:: 3 1 -stem%1:10:01:: 1 23 -stem%1:20:00:: 2 10 -stem%2:42:00:: 1 19 -stemmed%3:00:00:: 1 1 -stenography%1:10:00:: 1 1 -stentorian%5:00:00:full:01 1 1 -step%1:04:00:: 3 7 -step%1:04:02:: 1 36 -step%1:06:00:: 4 2 -step%1:23:00:: 2 13 -step%1:26:00:: 5 1 -step%2:38:00:: 1 23 -step%2:38:01:: 2 7 -step-by-step%5:00:00:gradual:01 1 1 -step_by_step%4:02:00:: 1 3 -step_down%2:41:00:: 1 1 -step_forward%2:38:00:: 1 1 -step_in%2:41:00:: 1 2 -step_on%2:38:00:: 1 3 -step_out%2:38:00:: 1 6 -step_to_the_fore%2:38:00:: 1 1 -step_up%2:30:00:: 1 3 -step_up%2:30:01:: 2 2 -stepchild%1:18:00:: 1 1 -stepmother%1:18:00:: 1 4 -steppe%1:17:00:: 1 1 -stepping_stone%1:17:00:: 1 1 -steprelationship%1:24:00:: 1 1 -steps%1:06:00:: 1 27 -steps%1:17:00:: 2 2 -stepwise%5:00:00:gradual:01 1 2 -stereo%1:06:00:: 1 5 -stereo%5:00:00:binaural:00 1 1 -stereophonic%5:00:00:binaural:00 1 1 -stereotype%1:09:00:: 1 6 -stereotyped%5:00:00:conventional:01 1 5 -sterile%5:00:00:infertile:00 1 1 -sterilize%2:29:01:: 1 2 -sterling%5:00:00:superior:02 1 1 -stern%1:06:00:: 1 2 -stern%5:00:00:demanding:01 3 2 -stern%5:00:00:implacable:00 2 2 -stern%5:00:00:nonindulgent:00 1 5 -sternal%3:01:00:: 1 1 -sternly%4:02:00:: 1 1 -sternocleido_mastoideus%1:08:00:: 1 1 -sternum%1:08:00:: 1 1 -steroid%1:27:00:: 1 4 -stethoscope%1:06:00:: 1 2 -stetson%1:06:00:: 1 1 -steward%1:18:00:: 1 1 -stewing%1:12:00:: 1 1 -stick%1:06:00:: 1 7 -stick%1:06:03:: 3 5 -stick%1:20:00:: 2 6 -stick%2:35:00:: 4 2 -stick%2:35:02:: 1 5 -stick%2:35:05:: 3 2 -stick%2:38:00:: 2 2 -stick_in%2:30:00:: 2 1 -stick_in%2:32:00:: 1 1 -stick_out%2:42:00:: 2 1 -stick_out%2:42:01:: 1 1 -stick_to%2:30:00:: 3 3 -stick_to%2:35:03:: 2 4 -stick_to%2:42:00:: 1 5 -stick_together%2:41:00:: 1 1 -stick_with%2:42:00:: 1 3 -sticking%5:00:00:protrusive:00 1 2 -stickpin%1:06:00:: 1 1 -sticky%5:00:00:adhesive:00 1 4 -sticky%5:00:02:wet:01 2 2 -stiff%1:18:00:: 1 2 -stiff%5:00:00:formal:01 4 1 -stiff%5:00:00:immobile:00 2 2 -stiff%5:00:00:strong:00 3 1 -stiff%5:00:02:inflexible:01 1 4 -stiff-backed%5:00:00:backed:00 1 1 -stiffen%2:30:00:: 1 11 -stiffen%2:30:01:: 2 2 -stiffened%5:00:00:inflexible:01 1 4 -stiffening%1:04:00:: 1 1 -stiffly%4:02:00:: 1 5 -stiffly%4:02:01:: 2 2 -stiffness%1:07:00:: 1 1 -stiffness%1:07:01:: 2 1 -stifle%2:30:00:: 2 1 -stifle%2:35:00:: 1 2 -still%1:06:01:: 1 2 -still%2:30:00:: 2 1 -still%2:37:00:: 1 1 -still%3:00:03:: 4 2 -still%4:02:00:: 3 26 -still%4:02:01:: 1 233 -still%4:02:02:: 4 3 -still%4:02:04:: 2 51 -still%5:00:00:calm:00 3 3 -still%5:00:00:quiet:01 2 9 -still%5:00:01:nonmoving:00 1 16 -stillness%1:07:00:: 1 6 -stillness%1:26:00:: 2 1 -stilt%1:06:01:: 1 1 -stilted%5:00:00:affected:01 1 1 -stimulant%1:06:00:: 2 1 -stimulant%1:09:00:: 1 1 -stimulate%2:29:00:: 4 3 -stimulate%2:30:00:: 1 6 -stimulate%2:32:01:: 2 5 -stimulate%2:36:00:: 5 2 -stimulate%2:37:00:: 3 3 -stimulate%2:39:00:: 6 1 -stimulating%3:00:00:: 1 1 -stimulation%1:04:00:: 1 5 -stimulation%1:09:00:: 2 3 -stimulus%1:09:00:: 1 10 -sting%1:26:00:: 1 2 -sting%2:32:00:: 3 1 -sting%2:35:01:: 2 1 -sting%2:39:02:: 1 1 -stinging%5:00:00:painful:00 1 1 -stink%2:42:00:: 1 2 -stinking%5:00:00:bad:00 1 1 -stipulate%2:32:00:: 1 4 -stir%2:35:00:: 5 2 -stir%2:36:00:: 7 1 -stir%2:37:00:: 6 1 -stir%2:37:01:: 4 4 -stir%2:38:00:: 2 5 -stir%2:38:01:: 1 7 -stir%2:39:00:: 3 4 -stir_up%2:35:00:: 3 1 -stir_up%2:37:00:: 2 1 -stir_up%2:41:00:: 1 1 -stirring%1:04:00:: 1 1 -stirrup%1:06:00:: 1 3 -stitch%1:06:00:: 1 1 -stitch%2:35:00:: 1 1 -stock%1:06:00:: 2 3 -stock%1:06:02:: 3 2 -stock%1:13:01:: 8 1 -stock%1:14:00:: 7 1 -stock%1:14:01:: 6 1 -stock%1:21:00:: 1 28 -stock%1:21:01:: 5 1 -stock%1:21:02:: 4 1 -stock%2:40:00:: 1 2 -stock%5:00:00:unoriginal:00 1 1 -stock_market%1:06:00:: 1 5 -stockade%1:06:01:: 1 1 -stockbroker%1:18:00:: 1 1 -stockholder%1:18:00:: 1 18 -stocking%1:04:00:: 2 1 -stocking%1:06:00:: 1 4 -stocky%5:00:00:fat:01 1 1 -stoic%1:18:00:: 2 1 -stoic%1:18:01:: 1 2 -stoic%5:00:00:unemotional:00 1 3 -stoical%5:00:00:unemotional:00 1 1 -stoicism%1:07:00:: 1 3 -stoicism%1:09:00:: 2 2 -stoke%2:41:00:: 1 1 -stolid%5:00:00:unemotional:00 1 7 -stolidly%4:02:00:: 1 4 -stomach%1:08:00:: 1 23 -stomach%1:08:01:: 2 5 -stomp%2:38:00:: 1 2 -stone%1:06:00:: 2 9 -stone%1:17:00:: 1 16 -stone%1:27:00:: 3 8 -stone%2:35:00:: 1 1 -stone-dead%5:00:00:dead:01 1 1 -stone-gray%5:00:00:achromatic:00 1 1 -stone_wall%1:06:00:: 1 2 -stonily%4:02:00:: 1 1 -stool%1:06:00:: 1 3 -stoop%1:04:00:: 1 1 -stoop%2:38:00:: 1 7 -stoop_to%2:32:00:: 1 1 -stooped%5:00:00:unerect:00 1 3 -stop%1:04:00:: 2 3 -stop%1:04:02:: 3 3 -stop%1:11:00:: 1 3 -stop%1:15:00:: 5 1 -stop%1:26:00:: 4 1 -stop%2:30:05:: 6 4 -stop%2:33:00:: 7 3 -stop%2:35:00:: 8 2 -stop%2:38:00:: 1 57 -stop%2:38:01:: 5 7 -stop%2:38:02:: 4 7 -stop%2:41:00:: 3 25 -stop%2:42:00:: 2 56 -stop%2:42:13:: 9 1 -stop_dead%2:38:00:: 1 1 -stopping_point%1:28:00:: 1 1 -storage%1:04:00:: 3 1 -storage%1:04:01:: 1 7 -storage%1:06:00:: 2 1 -store%1:06:00:: 1 25 -store%1:06:03:: 3 1 -store%1:21:00:: 2 5 -store%2:35:00:: 3 1 -store%2:40:00:: 1 16 -store%2:40:02:: 2 11 -stored_up%5:00:00:concentrated:00 1 1 -storefront%1:06:00:: 1 2 -storehouse%1:06:00:: 1 3 -storekeeper%1:18:00:: 1 1 -storeria%1:05:00:: 1 1 -storeroom%1:06:00:: 1 1 -storied%5:00:00:glorious:00 1 1 -storm%1:19:00:: 1 8 -storm%1:26:00:: 2 3 -storm%2:35:00:: 2 1 -storm%2:42:00:: 1 2 -storm_cloud%1:17:00:: 1 1 -stormy%3:00:00:: 1 2 -stormy%5:00:00:unpeaceful:00 2 1 -story%1:06:00:: 3 7 -story%1:10:00:: 2 14 -story%1:10:01:: 5 2 -story%1:10:02:: 6 1 -story%1:10:03:: 1 36 -story%1:10:04:: 4 3 -storyline%1:10:00:: 1 3 -storyteller%1:18:00:: 1 2 -stout%5:00:00:fat:01 2 2 -stout%5:00:00:resolute:00 1 3 -stout%5:00:00:robust:00 3 1 -stoutly%4:02:00:: 1 4 -stove%1:06:00:: 2 1 -stove%1:06:01:: 1 5 -stow%2:35:00:: 2 1 -stow%2:35:01:: 1 1 -straddle%2:42:01:: 1 4 -straddle%2:42:02:: 2 1 -strafe%2:33:00:: 1 1 -straggle%2:38:00:: 1 2 -straggle%2:38:01:: 2 1 -straggler%1:18:00:: 1 3 -straggling%5:00:00:untidy:00 1 1 -straight%3:00:01:: 2 6 -straight%3:00:03:: 3 5 -straight%4:02:00:: 3 1 -straight%4:02:04:: 2 7 -straight%4:02:05:: 1 14 -straight%5:00:00:accurate:00 5 1 -straight%5:00:00:continuous:01 1 10 -straight%5:00:00:erect:00 4 2 -straight-backed%5:00:00:erect:00 1 1 -straight-out%5:00:00:unqualified:02 1 1 -straight_face%1:10:00:: 1 2 -straight_line%1:25:00:: 1 7 -straightaway%1:06:00:: 1 1 -straightaway%4:02:00:: 1 1 -straighten%2:30:00:: 4 1 -straighten%2:35:00:: 2 6 -straighten%2:38:00:: 1 7 -straighten%2:38:01:: 3 3 -straighten_out%2:30:01:: 1 2 -straighten_out%2:30:02:: 3 1 -straighten_out%2:35:01:: 2 1 -straighten_up%2:38:01:: 1 4 -straightforward%5:00:00:direct:02 2 2 -straightforward%5:00:00:unequivocal:00 1 2 -strain%1:07:00:: 7 1 -strain%1:10:00:: 3 3 -strain%1:14:00:: 5 2 -strain%1:14:01:: 6 1 -strain%1:19:00:: 1 5 -strain%1:26:01:: 4 2 -strain%1:26:02:: 2 3 -strain%2:29:00:: 5 1 -strain%2:33:00:: 1 6 -strain%2:34:00:: 3 3 -strain%2:35:01:: 4 1 -strain%2:37:00:: 2 3 -strained%5:00:00:awkward:00 1 3 -strained%5:00:00:tense:03 2 2 -straining%1:04:01:: 1 1 -straining%5:00:00:effortful:00 1 1 -strait%1:17:00:: 1 3 -straitlaced%5:00:00:proper:00 1 1 -strand%1:06:01:: 3 1 -strand%1:06:02:: 2 1 -strand%1:09:00:: 1 1 -strand%2:40:00:: 1 2 -stranded%5:00:00:unaccompanied:00 1 1 -strange%3:00:00:: 1 41 -strange%5:00:00:foreign:01 3 3 -strange%5:00:00:uneasy:00 4 3 -strange%5:00:01:unfamiliar:00 2 15 -strangely%4:02:00:: 1 6 -strangely_enough%4:02:00:: 1 1 -strangeness%1:07:00:: 1 1 -stranger%1:18:00:: 1 15 -strangle%2:35:00:: 1 4 -strangled%5:00:00:inhibited:00 1 1 -strangulation%1:04:01:: 1 1 -strap%1:06:01:: 1 2 -strap%2:35:00:: 1 1 -stratagem%1:04:00:: 1 1 -strategic%3:01:00:: 1 3 -strategic%5:00:00:important:00 2 1 -strategist%1:18:00:: 1 1 -strategy%1:09:00:: 1 12 -stratification%1:04:00:: 1 1 -stratified%5:00:02:hierarchical:00 1 1 -stratify%2:30:00:: 2 1 -stratify%2:41:00:: 1 1 -stratum%1:15:00:: 1 3 -stravinsky%1:18:00:: 1 6 -straw%1:27:00:: 1 10 -straw%1:27:01:: 2 2 -straw%5:00:00:chromatic:00 1 1 -straw_hat%1:06:00:: 1 2 -strawberry%1:13:00:: 1 1 -stray%1:05:00:: 1 1 -stray%2:38:00:: 3 1 -stray%2:38:01:: 1 2 -stray%2:38:02:: 2 1 -stray%5:00:00:sporadic:00 1 2 -streak%1:07:00:: 3 1 -streak%1:07:01:: 2 1 -streak%1:14:00:: 1 1 -streak%2:38:00:: 1 2 -streaked%5:00:00:patterned:00 1 2 -stream%1:04:00:: 3 3 -stream%1:11:00:: 5 2 -stream%1:14:00:: 2 4 -stream%1:17:00:: 1 20 -stream%1:26:00:: 4 2 -stream%2:29:00:: 2 3 -stream%2:38:01:: 1 4 -stream%2:38:03:: 3 2 -stream_of_consciousness%1:10:00:: 1 1 -streaming%3:44:00:: 1 2 -streaming%5:00:00:running(a):02 3 1 -streaming%5:00:01:moving:02 2 1 -streamlined%5:00:00:efficient:00 1 2 -streamliner%1:06:00:: 1 1 -street%1:06:00:: 1 86 -street%1:06:01:: 2 3 -street%1:26:00:: 3 2 -street_cleaner%1:18:00:: 1 1 -street_clothes%1:06:00:: 1 1 -street_corner%1:06:00:: 1 2 -streetcar%1:06:00:: 1 3 -streetlight%1:06:00:: 1 2 -strength%1:07:00:: 1 42 -strength%1:07:01:: 4 2 -strength%1:07:04:: 6 1 -strength%1:07:05:: 2 10 -strength%1:07:06:: 3 4 -strength%1:07:08:: 7 1 -strength%1:07:09:: 5 1 -strengthen%2:30:00:: 2 1 -strengthen%2:30:01:: 1 24 -strenuous%5:00:00:energetic:00 1 1 -strenuously%4:02:01:: 1 1 -streptococcus_anhemolyticus%1:05:00:: 1 1 -stress%1:04:00:: 6 1 -stress%1:10:01:: 1 67 -stress%1:19:00:: 5 2 -stress%1:26:01:: 2 5 -stress%1:26:02:: 4 2 -stress%1:26:03:: 3 3 -stress%2:30:00:: 3 2 -stress%2:32:00:: 1 29 -stress%2:32:01:: 2 4 -stressed%5:00:00:troubled:00 1 1 -stretch%1:04:00:: 4 2 -stretch%1:04:01:: 2 3 -stretch%1:04:02:: 5 1 -stretch%1:06:00:: 3 2 -stretch%1:17:00:: 1 3 -stretch%2:29:01:: 2 11 -stretch%2:30:00:: 4 4 -stretch%2:30:04:: 5 3 -stretch%2:30:05:: 8 1 -stretch%2:35:00:: 7 1 -stretch%2:38:00:: 3 4 -stretch%2:38:02:: 6 1 -stretch%2:42:00:: 1 16 -stretch_forth%2:29:00:: 1 2 -stretch_out%2:29:01:: 3 1 -stretch_out%2:38:00:: 1 2 -stretch_out%2:38:02:: 2 1 -stretch_pants%1:06:00:: 1 1 -stretched%5:00:00:extended:00 2 2 -stretched%5:00:00:flexible:01 1 3 -stretched%5:00:02:extended:00 3 1 -stretched_out%5:00:00:extended:00 1 2 -stretching%1:04:02:: 1 1 -stretching%5:00:00:wide:00 1 1 -strew%2:35:00:: 1 4 -strew%2:35:04:: 2 1 -strewn%5:00:00:covered:00 1 4 -strewn%5:00:00:distributed:00 2 1 -striation%1:25:00:: 1 2 -stricken%5:00:00:affected:00 2 1 -stricken%5:00:01:ill:01 1 3 -strict%5:00:00:exact:00 1 3 -strict%5:00:00:invariable:00 2 2 -strictly%4:02:00:: 1 7 -strictly%4:02:02:: 2 2 -strictly_speaking%4:02:00:: 1 2 -stride%1:04:00:: 1 6 -stride%1:04:01:: 3 1 -stride%1:23:00:: 2 2 -stride%2:38:04:: 1 17 -strife%1:04:00:: 2 2 -strife%1:26:00:: 1 2 -strike%1:04:00:: 1 7 -strike%1:04:02:: 2 2 -strike%2:30:00:: 11 2 -strike%2:32:00:: 5 5 -strike%2:33:00:: 4 7 -strike%2:35:00:: 1 18 -strike%2:35:01:: 3 14 -strike%2:35:02:: 6 4 -strike%2:35:03:: 10 2 -strike%2:35:04:: 15 1 -strike%2:35:08:: 14 1 -strike%2:36:00:: 13 1 -strike%2:37:00:: 2 16 -strike%2:40:00:: 12 1 -strike%2:41:00:: 7 3 -strike%2:41:02:: 9 2 -strike%2:42:00:: 8 2 -strike_a_chord%2:31:00:: 1 1 -strike_home%2:37:00:: 1 1 -strike_out%2:32:00:: 1 2 -strike_out%2:35:00:: 2 1 -strike_up%2:36:01:: 1 4 -striking%5:00:00:impressive:00 1 14 -strikingly%4:02:00:: 1 3 -string%1:06:00:: 1 5 -string%1:06:01:: 6 1 -string%1:06:03:: 3 2 -string%1:06:05:: 2 3 -string%1:10:00:: 5 1 -string%1:14:00:: 4 1 -string%2:30:00:: 2 1 -string%2:35:02:: 1 2 -string_out%2:35:00:: 1 1 -stringy%5:00:00:thin:03 1 1 -strip%1:06:00:: 2 6 -strip%1:06:02:: 3 4 -strip%1:10:00:: 4 1 -strip%1:17:00:: 1 8 -strip%2:29:01:: 2 2 -strip%2:30:05:: 5 1 -strip%2:30:06:: 4 1 -strip%2:35:00:: 3 1 -strip%2:40:03:: 1 7 -stripe%1:06:00:: 1 1 -striped%5:00:00:patterned:00 1 1 -strive%2:33:00:: 2 6 -strive%2:41:00:: 1 13 -striving%1:04:00:: 1 3 -stroke%1:04:00:: 1 3 -stroke%1:04:01:: 5 1 -stroke%1:11:00:: 2 2 -stroke%1:11:01:: 4 1 -stroke%1:26:00:: 3 1 -stroke%2:33:00:: 2 1 -stroke%2:35:00:: 1 4 -stroll%1:04:00:: 1 1 -stroll%2:38:00:: 2 1 -stroll%2:38:01:: 1 4 -strong%3:00:00:: 1 58 -strong%5:00:00:intense:00 3 9 -strong%5:00:00:powerful:00 4 3 -strong%5:00:00:stressed:00 2 20 -strong_point%1:07:00:: 1 1 -strongly%4:02:00:: 1 18 -strop%2:35:00:: 1 2 -structural%3:01:00:: 2 2 -structural%3:01:01:: 1 6 -structural%5:00:00:constructive:00 4 1 -structural%5:00:00:functional:00 3 1 -structurally%4:02:00:: 1 2 -structure%1:06:00:: 1 24 -structure%1:07:00:: 2 13 -structure%1:08:00:: 4 3 -structure%1:09:00:: 3 7 -structure%2:30:00:: 1 1 -structured%3:00:00:: 1 12 -struggle%1:04:00:: 3 1 -struggle%1:04:01:: 1 16 -struggle%1:04:02:: 2 11 -struggle%2:33:00:: 4 2 -struggle%2:35:00:: 2 7 -struggle%2:38:00:: 3 3 -struggle%2:41:00:: 1 13 -struggling%5:00:00:troubled:00 1 3 -strum%2:39:00:: 1 2 -strung%3:44:00:: 1 1 -strut%1:04:00:: 1 2 -strut%2:38:00:: 1 2 -strychnine%1:27:00:: 1 4 -stub%1:17:00:: 1 1 -stub_out%2:30:00:: 1 1 -stubborn%3:00:00:: 1 5 -stubbornly%4:02:00:: 1 6 -stubbornness%1:07:00:: 1 1 -stubbornness%1:07:01:: 2 1 -stucco%1:27:00:: 1 2 -stuck-up%5:00:00:proud:00 1 1 -stuck_with%5:00:00:cursed:00 1 1 -stud%2:42:00:: 1 3 -studded%5:00:00:adorned:00 1 1 -student%1:18:00:: 1 67 -student%1:18:01:: 2 14 -studio%1:06:00:: 1 15 -studious%5:00:00:careful:00 1 1 -studiously%4:02:00:: 1 2 -study%1:04:00:: 1 90 -study%1:06:00:: 5 6 -study%1:06:01:: 7 2 -study%1:09:01:: 8 1 -study%1:09:02:: 6 3 -study%1:09:03:: 2 17 -study%1:09:04:: 4 6 -study%1:10:00:: 3 6 -study%2:31:00:: 4 13 -study%2:31:01:: 5 5 -study%2:31:02:: 1 73 -study%2:31:03:: 2 17 -study%2:31:04:: 6 2 -study%2:39:00:: 3 15 -stuff%1:06:00:: 2 5 -stuff%1:07:00:: 5 1 -stuff%1:10:00:: 4 1 -stuff%1:21:00:: 3 1 -stuff%1:27:00:: 1 5 -stuff%2:34:01:: 3 1 -stuff%2:35:00:: 1 5 -stuff%2:38:00:: 2 4 -stuffed%5:00:01:full:00 1 1 -stuffy%5:00:00:conventional:00 2 1 -stuffy%5:00:00:unventilated:00 1 1 -stumble%2:38:00:: 2 9 -stumble%2:38:01:: 1 11 -stumble%2:40:10:: 3 2 -stumbling%5:00:00:unsteady:00 1 2 -stumbling_block%1:06:00:: 1 1 -stump%1:08:00:: 2 1 -stump%1:20:00:: 1 5 -stump%2:31:00:: 1 1 -stumping%1:04:00:: 1 1 -stun%2:30:00:: 1 2 -stun%2:35:00:: 3 1 -stun%2:37:00:: 2 1 -stung%5:00:00:displeased:00 1 1 -stung%5:00:02:injured:00 2 1 -stunned%5:00:00:surprised:00 1 2 -stunning%5:00:00:impressive:00 1 1 -stunt%1:04:00:: 1 2 -stunt%2:41:00:: 1 1 -stupefying%5:00:01:impressive:00 1 1 -stupendous%5:00:00:large:00 1 2 -stupid%1:18:00:: 1 1 -stupid%3:00:00:: 1 10 -stupid%5:00:00:confused:00 2 1 -stupidity%1:04:00:: 2 1 -stupidity%1:09:00:: 1 5 -stupidly%4:02:00:: 1 3 -stupor%1:09:00:: 2 1 -stupor%1:12:00:: 1 1 -sturdy%5:00:00:robust:00 1 9 -stutter%2:32:00:: 1 2 -style%1:07:00:: 1 28 -style%1:09:00:: 4 2 -style%1:09:01:: 3 7 -style%1:10:00:: 2 7 -style%2:32:00:: 1 1 -stylemark%1:07:00:: 1 1 -stylist%1:18:00:: 1 1 -stylistic%5:00:00:rhetorical:00 1 1 -stylization%1:04:00:: 1 2 -stylized%5:00:00:artificial:00 1 1 -suave%5:00:00:diplomatic:00 2 1 -suave%5:00:00:refined:01 1 1 -sub%2:40:00:: 1 1 -sub-interval%1:09:00:: 1 3 -sub-test%1:04:00:: 1 2 -subcommittee%1:14:00:: 1 1 -subconscious%5:00:00:unconscious:00 1 1 -subconscious_mind%1:09:00:: 1 1 -subconsciously%4:02:00:: 1 1 -subcontinent%1:17:00:: 1 1 -subcontract%2:41:01:: 1 1 -subdivision%1:04:00:: 2 2 -subdivision%1:14:01:: 3 1 -subdivision%1:15:00:: 1 2 -subdue%2:30:01:: 2 2 -subdue%2:41:00:: 1 2 -subdued%5:00:00:restrained:00 2 2 -subdued%5:00:00:soft:04 1 3 -subfigure%1:25:00:: 1 1 -subgross%5:00:00:microscopic:00 1 2 -subgroup%1:14:00:: 1 1 -subhuman%3:00:00:: 1 1 -subject%1:06:00:: 2 14 -subject%1:09:00:: 3 11 -subject%1:09:01:: 4 9 -subject%1:10:00:: 1 20 -subject%1:10:01:: 5 4 -subject%1:18:00:: 7 2 -subject%1:18:01:: 6 2 -subject%2:31:00:: 4 2 -subject%2:32:07:: 3 2 -subject%2:33:00:: 2 6 -subject%2:39:03:: 1 10 -subject%2:41:00:: 5 1 -subject%5:00:01:taxable:00 1 7 -subject_matter%1:10:00:: 1 3 -subject_to%5:00:00:amenable:00 2 1 -subject_to%5:00:00:susceptible:00 1 9 -subjective%3:00:00:: 1 10 -subjectivist%1:18:00:: 1 3 -subjugate%2:41:01:: 1 1 -subjugation%1:26:00:: 1 1 -sublime%2:30:00:: 1 1 -sublime%5:00:00:elated:00 3 1 -sublime%5:00:00:glorious:00 1 4 -sublime%5:00:00:sacred:00 2 1 -subliterary%5:00:00:informal:02 1 1 -submachine_gun%1:06:00:: 1 2 -submarine%1:06:00:: 1 7 -submarine_ball%1:04:00:: 1 1 -submerge%2:35:00:: 2 1 -submerge%2:38:00:: 1 2 -submerged%3:00:04:: 1 1 -submission%1:04:01:: 2 2 -submission%1:10:00:: 1 3 -submissive%3:00:00:: 1 4 -submit%2:31:12:: 7 2 -submit%2:32:00:: 2 8 -submit%2:32:01:: 1 12 -submit%2:32:02:: 6 2 -submit%2:33:00:: 3 6 -submit%2:33:02:: 8 1 -submit%2:40:00:: 4 4 -submit%2:41:00:: 5 2 -submucosa%1:08:00:: 1 2 -subordinate%1:18:00:: 1 3 -subordinate%2:31:00:: 1 1 -subordinate%3:00:01:: 1 2 -subordinator%5:00:00:subordinating(a):00 1 2 -subpart%1:24:00:: 1 1 -subpoena%2:32:00:: 1 1 -subpoena_duces_tecum%1:10:00:: 1 1 -subscribe%2:32:02:: 2 1 -subscribe%2:32:03:: 3 1 -subscribe%2:40:01:: 1 2 -subscribe_to%2:40:00:: 1 1 -subscription%1:10:00:: 2 1 -subscription%1:21:00:: 1 1 -subscription_right%1:21:00:: 1 1 -subsection%1:06:00:: 1 12 -subsequent%3:00:00:: 1 5 -subsequently%4:02:00:: 1 4 -subservient%5:00:00:subordinate:02 1 1 -subside%2:30:00:: 1 4 -subsidize%2:40:00:: 1 6 -subsidized%5:00:00:supported:02 1 1 -subsidy%1:21:00:: 1 1 -subsist%2:42:00:: 1 1 -subsistence%1:21:00:: 1 3 -subsistence%1:26:01:: 2 1 -subsoil%1:27:00:: 1 1 -subspace%1:14:00:: 1 8 -subspecies%1:14:00:: 1 3 -substance%1:03:00:: 1 17 -substance%1:09:00:: 3 2 -substance%1:09:01:: 2 2 -substance%1:24:00:: 4 1 -substantial%5:00:00:considerable:00 1 22 -substantial%5:00:00:essential:00 2 1 -substantially%4:02:01:: 1 9 -substantially%4:02:02:: 2 1 -substantiate%2:31:00:: 1 2 -substantive%5:00:00:essential:00 1 1 -substation%1:06:00:: 1 1 -substitute%1:09:00:: 1 9 -substitute%2:40:00:: 1 13 -substitute%2:40:01:: 2 5 -substitute%5:00:01:secondary:01 1 2 -substitution%1:11:00:: 1 1 -substrate%1:27:00:: 1 2 -subsurface%3:00:00:: 1 1 -subsystem%1:14:00:: 1 4 -subtend%2:42:00:: 1 2 -subterfuge%1:10:00:: 1 1 -subtitle%2:40:00:: 1 1 -subtle%5:00:00:delicate:00 2 4 -subtle%5:00:00:impalpable:00 1 9 -subtlety%1:07:00:: 2 1 -subtlety%1:10:00:: 1 1 -subtly%4:02:00:: 1 1 -subtract%2:31:00:: 1 9 -suburb%1:15:00:: 1 16 -suburban%3:01:00:: 1 22 -suburbanite%1:18:00:: 1 2 -suburbanized%5:00:00:decentralized:00 1 1 -subvert%2:41:00:: 1 1 -subway%1:06:00:: 1 3 -succeed%2:41:00:: 1 28 -succeed%2:41:01:: 2 12 -succeeding%3:00:00:: 1 3 -success%1:04:00:: 2 23 -success%1:11:00:: 1 36 -success%1:18:00:: 4 3 -success%1:26:00:: 3 10 -successful%3:00:00:: 1 42 -successfully%4:02:00:: 1 15 -succession%1:04:00:: 3 1 -succession%1:07:00:: 1 3 -succession%1:14:00:: 2 1 -successive%5:00:00:ordered:00 1 5 -successively%4:02:00:: 1 1 -successor%1:09:00:: 2 2 -successor%1:18:01:: 1 4 -succinctly%4:02:01:: 1 1 -succor%1:04:00:: 1 2 -succumb%2:32:00:: 1 4 -such%4:02:00:: 1 28 -such%5:00:00:much(a):00 3 22 -such%5:00:00:specified:00 2 33 -such%5:00:01:specified:00 1 401 -such-and-such%5:00:00:unspecified:00 1 1 -such_as%5:00:00:specified:00 1 44 -such_that%5:00:00:specified:00 1 17 -suck%1:04:00:: 1 1 -suck%2:34:04:: 1 4 -suck%2:38:00:: 2 2 -suck_in%2:34:00:: 1 2 -suck_in%2:35:01:: 3 1 -suck_in%2:43:00:: 2 1 -suck_up%2:35:00:: 1 1 -sucker%1:18:01:: 1 1 -suction%1:19:00:: 1 1 -sudanese%1:18:00:: 1 1 -sudden%3:00:00:: 1 33 -suddenly%4:02:00:: 2 42 -suddenly%4:02:02:: 1 64 -suddenly%4:02:04:: 3 3 -suddenness%1:07:00:: 1 1 -suds%1:17:00:: 1 3 -sue%2:41:00:: 1 8 -suffer%2:29:00:: 6 4 -suffer%2:29:01:: 2 17 -suffer%2:29:03:: 8 1 -suffer%2:30:00:: 5 7 -suffer%2:31:00:: 4 8 -suffer%2:37:00:: 3 12 -suffer%2:39:00:: 7 1 -suffer%2:39:01:: 1 17 -sufferer%1:18:00:: 1 2 -suffering%1:12:01:: 4 2 -suffering%1:12:02:: 3 7 -suffering%1:26:00:: 1 11 -suffering%1:26:01:: 2 8 -suffering%5:00:00:troubled:00 1 1 -suffering%5:00:00:unhappy:00 2 1 -suffice%2:42:00:: 1 3 -sufficient%3:00:00:: 1 30 -sufficiently%4:02:00:: 1 23 -suffix%1:10:00:: 1 2 -suffocate%2:29:00:: 2 1 -suffocate%2:35:00:: 1 3 -suffocating%5:00:00:breathless:00 1 1 -suffocation%1:04:00:: 1 1 -suffrage%1:07:00:: 1 1 -suffuse%2:30:01:: 1 3 -suffused%5:00:00:distributed:00 1 1 -sugar%1:13:00:: 1 5 -sugar%2:39:00:: 1 1 -sugar_bowl%1:06:00:: 1 1 -sugar_maple%1:20:00:: 1 1 -suggest%2:32:00:: 1 57 -suggest%2:32:01:: 5 12 -suggest%2:32:02:: 3 19 -suggest%2:32:03:: 4 14 -suggest%2:32:04:: 2 21 -suggested%5:00:00:advisable:00 1 4 -suggestion%1:09:00:: 1 13 -suggestion%1:10:00:: 2 9 -suggestion%1:10:01:: 4 1 -suggestion%1:23:00:: 3 1 -suggestive%5:00:00:connotative:00 2 1 -suggestive%5:00:00:meaningful:00 1 1 -suggestive_of%5:00:00:connotative:00 1 3 -suicide%1:04:00:: 1 3 -suit%1:04:00:: 2 3 -suit%1:06:00:: 1 13 -suit%2:42:00:: 3 1 -suit%2:42:02:: 2 1 -suit%2:42:05:: 1 7 -suitability%1:07:00:: 1 1 -suitable%5:00:00:appropriate:00 3 1 -suitable%5:00:00:fit:02 2 3 -suitable%5:00:00:good:01 1 13 -suitably%4:02:00:: 1 2 -suitcase%1:06:00:: 1 11 -suite%1:06:00:: 2 2 -suite%1:10:00:: 1 2 -suite%1:14:00:: 3 1 -suited%5:00:00:clothed:00 2 1 -suited%5:00:00:fit:02 1 5 -suitor%1:18:00:: 1 1 -sulfur%1:27:00:: 1 1 -sulk%2:37:00:: 1 1 -sulkily%4:02:00:: 1 2 -sulky%1:06:00:: 1 2 -sulky%5:00:00:ill-natured:00 1 1 -sullen%5:00:00:cloudy:00 2 1 -sullen%5:00:00:ill-natured:00 1 9 -sullenly%4:02:00:: 1 2 -sulphur%2:30:00:: 1 1 -sultan%1:18:00:: 1 1 -sultry%5:00:00:hot:01 2 1 -sultry%5:00:00:hot:02 1 1 -sum%1:06:00:: 5 1 -sum%1:09:00:: 4 1 -sum%1:09:01:: 2 4 -sum%1:14:00:: 3 1 -sum%1:21:00:: 1 12 -sum_of_money%1:21:00:: 1 1 -sum_up%2:32:00:: 1 5 -sumatra%1:15:00:: 1 1 -summarization%1:10:00:: 1 1 -summarize%2:32:00:: 1 9 -summary%1:10:00:: 1 5 -summate%2:32:00:: 1 1 -summation%1:10:00:: 1 1 -summer%1:28:00:: 1 58 -summon%2:32:00:: 1 8 -summon%2:32:05:: 2 2 -sumptuous%5:00:00:rich:03 1 2 -sun%1:17:00:: 1 42 -sun%1:17:01:: 4 1 -sun%1:18:00:: 3 1 -sun%1:19:00:: 2 13 -sun%2:29:00:: 1 1 -sun-dried%5:00:00:preserved:02 1 1 -sunbaked%5:00:00:dry:01 1 1 -sunburnt%5:00:00:unhealthy:00 1 1 -sunday%1:28:00:: 1 33 -sunday_school%1:14:00:: 1 1 -sunder%2:30:00:: 1 1 -sundial%1:06:00:: 1 1 -sundown%1:28:00:: 1 5 -sundry%5:00:00:heterogeneous:00 1 4 -sung%5:00:00:voiced:00 1 1 -sunken%5:00:00:hollow:00 1 2 -sunlight%1:19:00:: 1 8 -sunny%5:00:00:cheerful:00 2 2 -sunny%5:00:00:clear:03 1 2 -sunray%1:19:00:: 1 3 -sunshade%1:06:00:: 1 2 -sunshine%1:19:00:: 1 1 -sunshiny%5:00:00:clear:03 1 1 -sunstruck%5:00:00:light:06 1 1 -suntanned%5:00:00:brunet:00 1 1 -sup%2:34:00:: 1 1 -super%4:02:00:: 1 2 -super%5:00:00:comprehensive:00 2 1 -super%5:00:00:superior:02 1 3 -superb%5:00:00:superior:02 1 6 -superbly%4:02:00:: 1 2 -supercilious%5:00:00:proud:00 1 1 -superficial%3:00:00:: 1 4 -superficiality%1:07:01:: 1 1 -superficially%4:02:00:: 1 1 -superhighway%1:06:00:: 1 1 -superimpose%2:35:00:: 1 4 -superimposed%5:00:00:added:00 1 2 -superintend%2:41:00:: 1 1 -superintendent%1:18:00:: 1 4 -superior%1:18:01:: 1 1 -superior%1:18:02:: 2 1 -superior%3:00:01:: 2 4 -superior%3:00:02:: 1 16 -superior%5:00:00:dominant:01 3 1 -superiority%1:07:00:: 1 3 -superiority%1:07:01:: 2 1 -superiority%1:07:02:: 3 1 -superlative%1:10:00:: 1 1 -superlative%5:00:00:superior:02 1 1 -supermarket%1:06:00:: 1 1 -supernatant%5:00:00:supported:00 1 1 -supernatural%1:18:00:: 1 2 -supernatural%3:00:00:: 1 3 -supernaturalism%1:09:00:: 1 2 -supersede%2:41:00:: 1 4 -supersonic%3:00:00:: 1 2 -superstition%1:09:00:: 1 9 -superstitious%5:00:00:irrational:00 1 1 -supervise%2:41:00:: 1 11 -supervision%1:04:00:: 1 6 -supervisor%1:18:00:: 1 3 -supine%5:00:00:unerect:00 1 1 -supper%1:13:00:: 1 14 -supplant%2:41:00:: 1 3 -supplement%1:06:00:: 3 4 -supplement%1:07:00:: 2 4 -supplement%1:10:00:: 1 4 -supplement%2:40:00:: 1 10 -supplemental%5:00:00:secondary:01 1 1 -supplementary%5:00:00:added:00 1 2 -supplementary%5:00:00:secondary:01 2 1 -suppleness%1:07:00:: 1 1 -supplicate%2:32:00:: 1 2 -supplied_with%5:00:00:furnished:00 1 1 -supplier%1:18:00:: 1 2 -supplies%1:21:00:: 1 15 -supply%1:04:00:: 3 2 -supply%1:22:00:: 2 4 -supply%1:23:00:: 1 21 -supply%2:32:00:: 4 1 -supply%2:34:00:: 3 3 -supply%2:40:00:: 1 44 -supply%2:41:00:: 2 8 -supply_closet%1:06:00:: 1 1 -support%1:04:00:: 2 9 -support%1:04:01:: 8 2 -support%1:04:02:: 5 3 -support%1:04:03:: 4 4 -support%1:04:04:: 1 15 -support%1:06:00:: 10 1 -support%1:06:01:: 7 2 -support%1:09:00:: 3 4 -support%1:10:01:: 9 1 -support%1:21:00:: 6 2 -support%2:30:00:: 9 1 -support%2:31:00:: 5 6 -support%2:32:00:: 6 3 -support%2:32:01:: 8 2 -support%2:35:00:: 4 14 -support%2:40:00:: 2 16 -support%2:41:00:: 1 26 -support%2:41:01:: 3 14 -support%2:42:00:: 7 2 -supporter%1:18:00:: 1 1 -supporting%1:04:00:: 1 1 -supporting%5:00:00:supportive:00 1 2 -supportive%3:00:00:: 1 5 -suppose%2:31:00:: 2 31 -suppose%2:31:01:: 3 17 -suppose%2:32:00:: 1 34 -supposed%5:00:00:acknowledged:00 3 2 -supposed%5:00:00:expected:00 1 5 -supposed%5:00:00:intended:00 4 1 -supposed%5:00:00:obligated(p):00 6 4 -supposed%5:00:02:improbable:00 2 2 -supposedly%4:02:00:: 1 4 -suppress%2:30:00:: 1 4 -suppress%2:41:00:: 3 1 -suppress%2:41:01:: 2 1 -supra%4:02:00:: 1 3 -supra_expressionism%1:14:00:: 1 1 -supremacy%1:26:00:: 1 4 -supreme%5:00:00:dominant:01 2 3 -supreme%5:00:00:maximal:00 4 1 -supreme%5:00:00:superior:02 3 1 -supreme%5:00:00:ultimate:00 1 6 -supreme_court%1:14:00:: 1 2 -supremely%4:02:00:: 1 1 -sure%3:00:00:: 1 51 -sure%3:00:04:: 3 4 -sure%4:02:00:: 1 18 -sure%5:00:00:careful:00 2 23 -sure%5:00:00:reliable:00 5 1 -sure%5:00:00:secure:02 4 1 -sure-enough%5:00:00:genuine:00 1 1 -sure_as_shooting%4:02:00:: 1 1 -sure_enough%4:02:00:: 1 3 -sure_enough%4:02:02:: 2 3 -surely%4:02:00:: 1 17 -surety%1:07:00:: 1 1 -surf%1:11:00:: 1 1 -surface%1:06:00:: 1 90 -surface%1:09:00:: 4 4 -surface%1:09:01:: 5 1 -surface%1:15:00:: 2 36 -surface%1:17:00:: 3 11 -surface%2:38:00:: 1 1 -surface%3:00:00:: 1 2 -surface%5:00:00:shallow:02 2 2 -surface-active%5:00:00:active:05 1 1 -surface-active_agent%1:27:00:: 1 6 -surface_area%1:07:00:: 1 2 -surface_noise%1:11:00:: 1 1 -surface_tension%1:19:00:: 1 4 -surfactant%1:27:00:: 1 3 -surfeit%2:40:00:: 1 1 -surfeited%5:00:00:satiate:00 1 1 -surge%1:04:00:: 2 2 -surge%1:11:00:: 1 4 -surge%2:38:00:: 2 1 -surge%2:38:01:: 1 8 -surge%2:38:03:: 3 1 -surge%2:38:04:: 4 1 -surgeon%1:18:00:: 1 9 -surging%5:00:00:stormy:00 1 1 -surly%5:00:00:ill-natured:00 1 1 -surmise%1:10:00:: 1 1 -surmise%2:31:00:: 1 2 -surmise%2:32:00:: 2 1 -surmount%2:33:00:: 1 2 -surmount%2:42:00:: 2 1 -surmounted%3:44:00:: 1 1 -surpass%2:33:00:: 2 2 -surpass%2:38:00:: 3 1 -surpass%2:42:00:: 1 2 -surplus%1:07:00:: 1 8 -surplus%5:00:00:unnecessary:00 1 7 -surprise%1:11:00:: 2 5 -surprise%1:12:00:: 1 16 -surprise%2:31:00:: 1 22 -surprise%2:41:00:: 2 1 -surprised%3:00:00:: 1 15 -surprising%1:04:00:: 1 1 -surprising%3:00:00:: 1 11 -surprisingly%4:02:00:: 1 5 -surprisingly%4:02:01:: 2 2 -surrender%1:10:00:: 2 1 -surrender%1:12:00:: 1 1 -surrender%2:33:00:: 1 5 -surrender%2:33:01:: 3 2 -surrender%2:40:00:: 2 2 -surreptitiously%4:02:00:: 1 1 -surround%2:33:00:: 4 1 -surround%2:35:00:: 2 6 -surround%2:35:01:: 3 2 -surround%2:42:00:: 1 14 -surrounded%5:00:00:enclosed:00 1 3 -surrounding%5:00:00:close:01 1 11 -surroundings%1:15:00:: 2 1 -surroundings%1:26:00:: 1 5 -surveillance%1:04:01:: 1 2 -survey%1:04:01:: 3 1 -survey%1:04:02:: 1 5 -survey%1:10:00:: 2 4 -survey%2:31:00:: 1 6 -survey%2:39:00:: 2 5 -surveying%1:04:00:: 1 1 -surveyor%1:18:00:: 1 2 -survival%1:26:00:: 1 10 -survive%2:42:00:: 3 5 -survive%2:42:01:: 1 20 -survive%2:42:02:: 2 8 -surviving%5:00:00:extant:00 1 2 -survivor%1:05:00:: 3 1 -survivor%1:18:02:: 2 1 -survivor%1:18:03:: 1 3 -susceptibility%1:26:00:: 1 2 -susceptible%3:00:00:: 1 2 -sushi%1:13:00:: 1 1 -suspect%1:18:00:: 1 1 -suspect%2:31:00:: 3 2 -suspect%2:31:02:: 1 27 -suspect%2:32:00:: 2 6 -suspect%2:32:01:: 5 1 -suspect%2:32:02:: 4 1 -suspect%5:00:00:questionable:00 1 2 -suspend%2:30:00:: 4 2 -suspend%2:30:01:: 2 4 -suspend%2:30:02:: 5 1 -suspend%2:35:00:: 1 8 -suspend%2:41:00:: 3 2 -suspended%5:00:00:delayed:00 2 1 -suspended%5:00:01:supported:00 1 7 -suspended_animation%1:26:00:: 1 2 -suspense%1:09:00:: 2 2 -suspense%1:12:02:: 1 2 -suspension%1:27:00:: 1 6 -suspension_bridge%1:06:00:: 1 1 -suspicion%1:09:00:: 2 2 -suspicion%1:09:01:: 1 11 -suspicious%5:00:00:distrustful:00 1 3 -suspicious%5:00:00:questionable:00 2 1 -suspiciously%4:02:00:: 1 2 -sustain%2:29:00:: 2 3 -sustain%2:32:00:: 6 1 -sustain%2:34:00:: 4 2 -sustain%2:34:01:: 3 2 -sustain%2:35:00:: 5 1 -sustain%2:42:01:: 1 8 -sustenance%1:13:00:: 1 2 -swab%2:35:00:: 1 1 -swad%1:14:00:: 1 1 -swagger%2:38:00:: 1 2 -swaggering%5:00:00:proud:00 1 2 -swahili%1:10:00:: 1 1 -swallow%1:04:00:: 2 1 -swallow%1:13:00:: 1 3 -swallow%2:33:00:: 2 4 -swallow%2:34:00:: 1 12 -swallow%2:35:00:: 3 2 -swallow_up%2:35:00:: 1 2 -swallowed%5:00:00:enclosed:00 1 1 -swami%1:18:00:: 1 1 -swamp%1:17:00:: 1 4 -swamp%2:35:00:: 2 1 -swamp%2:43:00:: 1 1 -swamped%5:00:00:sunken:00 1 1 -swan%1:05:00:: 1 1 -swan%2:32:00:: 1 1 -swap%2:40:00:: 1 1 -sward%1:17:00:: 1 2 -swarm%1:14:00:: 2 1 -swarm%1:14:01:: 1 1 -swarm%2:38:00:: 2 3 -swarm%2:42:00:: 1 3 -swarming%5:00:00:abundant:00 1 1 -swarming_with%5:00:00:full:00 1 1 -swart%5:00:00:brunet:00 1 1 -swarthy%5:00:00:brunet:00 1 1 -swash%1:11:00:: 1 1 -swashbuckler%1:18:00:: 1 1 -swatch%1:06:00:: 1 2 -swathe%2:35:00:: 1 1 -swathing%1:06:00:: 1 1 -sway%1:07:00:: 1 1 -sway%2:38:00:: 1 5 -sway%2:38:01:: 2 4 -sway%2:38:02:: 4 3 -sway%2:41:00:: 3 3 -swaybacked%5:00:00:unfit:01 1 1 -swaying%5:00:00:moving:02 1 1 -swear%2:32:00:: 4 1 -swear%2:32:01:: 1 20 -swear%2:32:02:: 3 2 -swear%2:32:03:: 2 8 -swear_in%2:32:00:: 1 1 -swear_off%2:32:00:: 1 2 -swear_out%2:35:00:: 1 1 -swearing%1:10:02:: 1 1 -sweat%1:08:00:: 1 11 -sweat%2:29:00:: 1 5 -sweat_bag%1:06:00:: 1 1 -sweat_gland%1:08:00:: 1 1 -sweat_suit%1:06:00:: 1 1 -sweatband%1:06:01:: 1 1 -sweater%1:06:00:: 1 1 -sweating%5:00:00:wet:01 1 2 -sweatshirt%1:06:00:: 1 2 -sweaty%5:00:00:wet:01 1 4 -swede%1:18:00:: 1 1 -sweden%1:15:00:: 1 9 -swedish%3:01:00:: 1 6 -sweep%1:07:00:: 1 3 -sweep%2:33:00:: 7 1 -sweep%2:35:00:: 3 5 -sweep%2:35:01:: 6 1 -sweep%2:38:00:: 2 12 -sweep%2:38:01:: 1 13 -sweep%2:42:00:: 4 3 -sweep%2:42:03:: 5 2 -sweep_away%2:36:00:: 1 2 -sweep_away%2:37:00:: 2 1 -sweep_over%2:37:00:: 1 3 -sweep_through%2:41:00:: 1 1 -sweep_under_the_rug%2:41:00:: 1 1 -sweep_up%2:31:00:: 2 1 -sweep_up%2:42:00:: 1 1 -sweeping%1:04:00:: 1 1 -sweeping%5:00:00:moving:02 2 2 -sweeping%5:00:00:wide:00 1 2 -sweet%3:00:01:: 8 1 -sweet%3:00:02:: 1 9 -sweet%4:02:00:: 1 1 -sweet%5:00:00:fragrant:00 7 2 -sweet%5:00:00:lovable:00 2 4 -sweet%5:00:00:melodious:00 3 3 -sweet%5:00:00:tasteful:01 4 2 -sweet%5:00:01:pleasing:00 6 2 -sweet%5:00:02:pleasing:00 5 2 -sweet-faced%5:00:00:faced:00 1 1 -sweet-smelling%5:00:00:fragrant:00 1 1 -sweet_clover%1:20:00:: 1 17 -sweet_nothings%1:10:00:: 1 1 -sweet_orange%1:13:00:: 1 1 -sweet_roll%1:13:00:: 1 1 -sweet_shrub%1:20:00:: 1 1 -sweetheart%1:18:00:: 1 3 -sweetheart%1:18:02:: 2 3 -sweetly%4:02:00:: 1 1 -sweetness%1:09:00:: 1 1 -swell%1:07:00:: 3 1 -swell%1:11:00:: 1 3 -swell%1:17:00:: 2 2 -swell%2:30:00:: 3 4 -swell%2:30:02:: 1 5 -swell%2:38:07:: 5 1 -swell%2:41:00:: 2 4 -swell%2:42:03:: 4 1 -swell%5:00:00:good:01 1 1 -swelled%5:00:00:proud:00 1 1 -swelling%1:26:00:: 1 2 -swelling%5:00:00:injured:00 1 1 -sweltering%5:00:00:hot:01 1 1 -swerve%1:04:00:: 1 1 -swerve%2:38:00:: 1 4 -swift%5:00:00:fast:01 1 15 -swiftly%4:02:00:: 1 18 -swig%1:04:00:: 1 1 -swim%2:38:00:: 1 12 -swim%2:38:01:: 2 1 -swimming%1:04:00:: 1 1 -swimming_hole%1:17:00:: 1 1 -swimming_pool%1:06:00:: 1 3 -swimming_trunks%1:06:00:: 1 1 -swimsuit%1:06:00:: 1 1 -swindle%2:41:00:: 1 2 -swing%1:04:00:: 4 1 -swing%1:04:06:: 3 1 -swing%1:06:00:: 2 1 -swing%1:26:01:: 1 1 -swing%2:30:08:: 8 2 -swing%2:33:00:: 7 2 -swing%2:35:00:: 5 4 -swing%2:38:00:: 2 15 -swing%2:38:02:: 1 35 -swing%2:38:03:: 3 6 -swing%2:41:01:: 4 4 -swing%2:42:00:: 6 2 -swing%2:42:01:: 9 1 -swing_around%2:38:00:: 1 2 -swinging%5:00:00:moving:02 1 2 -swinging_door%1:06:00:: 1 1 -swingy%5:00:00:rhythmical:00 1 1 -swipe%2:35:00:: 1 1 -swirl%1:25:00:: 1 2 -swirl%2:38:00:: 2 3 -swirl%2:38:01:: 1 3 -swirling%5:00:00:moving:02 1 4 -swish%2:38:00:: 2 1 -swish%2:39:00:: 1 1 -swishing%5:00:00:noisy:00 1 1 -swiss%1:18:00:: 1 5 -swiss%3:01:00:: 1 3 -switch%1:06:01:: 1 4 -switch%1:11:00:: 2 1 -switch%2:30:01:: 4 1 -switch%2:30:02:: 3 2 -switch%2:30:03:: 1 5 -switch%2:40:00:: 2 3 -switch-hitter%1:18:00:: 1 1 -switch_off%2:35:00:: 1 2 -switch_on%2:35:00:: 1 5 -switchboard%1:06:00:: 1 1 -switching%1:04:00:: 1 1 -switzerland%1:15:00:: 1 1 -swivel%2:38:00:: 1 2 -swivel_chair%1:06:00:: 1 2 -swollen%5:00:00:expanded:01 2 6 -swollen%5:00:00:unhealthy:00 1 6 -swoon%2:29:00:: 1 1 -swoop%1:10:00:: 1 1 -swoop%2:38:00:: 1 8 -swoop_up%2:35:00:: 1 1 -sword%1:06:00:: 1 9 -sworn%5:00:00:committed:00 1 1 -syllabicity%1:10:00:: 1 1 -syllable%1:10:00:: 1 11 -symbol%1:09:00:: 2 2 -symbol%1:10:00:: 1 18 -symbolic%3:01:00:: 1 2 -symbolic%3:01:01:: 3 1 -symbolic%5:00:00:representative:00 2 2 -symbolically%4:02:00:: 1 2 -symbolism%1:04:00:: 2 1 -symbolism%1:10:00:: 1 1 -symbolist%1:18:00:: 1 1 -symbolize%2:32:00:: 1 16 -symmetric%3:00:00:: 1 7 -symmetrical%3:00:00:: 1 1 -symmetrical%5:00:00:balanced:00 2 1 -symmetrically%4:02:00:: 1 1 -symmetry%1:07:00:: 1 5 -symmetry%1:25:00:: 2 1 -sympathetic%3:00:00:: 2 8 -sympathetic%3:01:00:: 1 13 -sympathetic%5:00:00:congenial:00 3 2 -sympathetic%5:00:00:kind:00 4 1 -sympathetically%4:02:00:: 1 1 -sympathize%2:31:00:: 2 1 -sympathize%2:37:01:: 1 2 -sympathize_with%2:37:00:: 1 3 -sympathy%1:09:00:: 1 10 -sympathy%1:12:00:: 2 7 -sympathy%1:24:00:: 3 4 -symphonic%3:01:00:: 1 5 -symphony%1:10:00:: 1 4 -symphony%1:14:00:: 2 1 -symphony_orchestra%1:14:00:: 1 1 -symposium%1:14:00:: 1 2 -symptom%1:10:00:: 2 6 -symptom%1:26:00:: 1 8 -symptomatic%5:00:00:characteristic:00 1 1 -symptomatic_of%5:00:00:characteristic:00 1 3 -synagogue%1:06:00:: 1 2 -synchronism%1:24:00:: 1 1 -synchronize%2:30:00:: 1 1 -synchronous%3:00:00:: 1 1 -synchronous_motor%1:06:00:: 1 1 -synchrony%1:24:00:: 1 2 -syndicate%1:14:00:: 2 1 -syndicate%1:14:01:: 1 1 -syndrome%1:09:00:: 1 1 -synergism%1:22:00:: 1 1 -synergistic%3:00:00:: 1 1 -synonym%1:10:00:: 1 2 -synonymous%3:00:00:: 1 1 -syntactic%3:01:00:: 1 1 -syntactically%4:02:00:: 1 1 -syntax%1:09:01:: 1 2 -syntax%1:14:00:: 2 1 -synthesis%1:09:00:: 2 2 -synthesis%1:22:00:: 1 6 -synthesise%2:31:00:: 1 1 -synthesize%2:31:00:: 1 3 -synthetic%5:00:00:artificial:00 1 7 -synthetic_cubism%1:14:00:: 1 2 -syria%1:15:00:: 1 1 -syrian%3:01:00:: 1 1 -syringa%1:20:02:: 1 1 -syrupy%5:00:00:sweet:02 1 1 -system%1:06:00:: 1 43 -system%1:08:00:: 6 7 -system%1:08:01:: 8 1 -system%1:09:00:: 4 10 -system%1:09:01:: 7 6 -system%1:09:02:: 5 8 -system%1:14:00:: 2 23 -system%1:27:00:: 3 14 -systematic%3:00:00:: 1 2 -systematically%4:02:00:: 1 2 -systematization%1:04:00:: 1 2 -systematize%2:30:00:: 1 4 -t-square%1:06:00:: 1 1 -t.b.%1:26:00:: 1 1 -table%1:06:01:: 2 25 -table%1:06:02:: 3 5 -table%1:14:00:: 1 52 -table_tennis%1:04:00:: 1 1 -tableau%1:09:00:: 2 1 -tableau%1:14:00:: 1 1 -tablet%1:06:02:: 1 1 -tabletop%1:06:00:: 1 1 -taboo%5:00:00:impermissible:00 1 1 -tabula_rasa%1:09:00:: 1 2 -tabulate%2:36:00:: 1 4 -tabulation%1:10:00:: 1 1 -tack%2:35:00:: 1 3 -tack%2:38:00:: 2 1 -tack_hammer%1:06:00:: 1 3 -tack_on%2:35:00:: 1 1 -tackle%1:18:00:: 1 1 -tackle%2:33:00:: 2 1 -tackle%2:41:00:: 1 3 -tact%1:07:00:: 1 2 -tactic%1:09:00:: 1 4 -tactically%4:02:00:: 1 1 -tactics%1:09:01:: 1 2 -tactile%3:01:00:: 1 2 -tactual%3:01:00:: 1 7 -tactual_sensation%1:09:00:: 1 1 -tactually%4:02:00:: 1 1 -tadpole%1:05:00:: 1 1 -taffy%1:13:00:: 1 2 -tag%1:10:00:: 1 4 -tag%2:32:00:: 3 1 -tag%2:35:00:: 1 3 -tag%2:35:01:: 2 1 -tagged%3:00:00:: 1 1 -tahiti%1:15:00:: 1 1 -tail%1:05:00:: 1 6 -tail%1:08:01:: 4 1 -tail%1:25:00:: 3 1 -tail%1:28:00:: 2 2 -tailback%1:18:00:: 1 1 -tailgate%1:06:00:: 1 1 -tailor%2:30:00:: 1 5 -tailor%2:36:01:: 2 1 -tailor-make%2:36:00:: 1 1 -tailored%5:00:00:plain:01 1 3 -taint%1:26:00:: 1 1 -taiwan%1:15:00:: 1 1 -take%2:30:00:: 17 16 -take%2:30:01:: 5 38 -take%2:30:08:: 24 7 -take%2:30:09:: 29 4 -take%2:31:01:: 10 26 -take%2:31:02:: 25 6 -take%2:31:03:: 13 22 -take%2:31:07:: 6 36 -take%2:31:09:: 19 15 -take%2:32:00:: 26 5 -take%2:32:02:: 16 16 -take%2:32:09:: 36 1 -take%2:33:09:: 28 4 -take%2:34:00:: 18 15 -take%2:35:00:: 4 50 -take%2:35:14:: 35 1 -take%2:38:00:: 22 10 -take%2:38:02:: 9 26 -take%2:38:05:: 27 4 -take%2:38:09:: 3 73 -take%2:38:10:: 7 32 -take%2:39:00:: 15 21 -take%2:40:00:: 8 28 -take%2:40:01:: 21 13 -take%2:40:02:: 33 1 -take%2:40:03:: 31 2 -take%2:40:04:: 32 1 -take%2:40:05:: 11 25 -take%2:40:06:: 2 74 -take%2:40:07:: 23 8 -take%2:40:08:: 34 1 -take%2:40:15:: 20 14 -take%2:41:00:: 12 22 -take%2:41:04:: 1 92 -take%2:42:00:: 14 21 -take%2:42:10:: 30 2 -take_a_breath%2:29:00:: 1 3 -take_a_breather%2:32:00:: 1 1 -take_a_chance%2:41:00:: 1 6 -take_a_look%2:39:00:: 1 7 -take_aback%2:37:00:: 1 1 -take_account%2:31:12:: 1 2 -take_advantage%2:40:00:: 1 11 -take_advantage%2:41:12:: 2 1 -take_aim%2:33:00:: 1 1 -take_apart%2:35:00:: 2 1 -take_apart%2:36:00:: 1 1 -take_away%2:30:00:: 3 4 -take_away%2:30:01:: 2 5 -take_away%2:35:00:: 1 5 -take_away%2:40:01:: 4 2 -take_back%2:38:03:: 1 5 -take_back%2:40:00:: 2 1 -take_care%2:41:00:: 1 9 -take_care%2:41:11:: 3 6 -take_care%2:41:12:: 2 8 -take_chances%2:41:00:: 1 1 -take_charge%2:41:00:: 1 4 -take_counsel%2:31:00:: 1 1 -take_down%2:38:00:: 1 3 -take_exception%2:32:03:: 1 1 -take_for%2:31:00:: 1 2 -take_for_granted%2:31:00:: 1 3 -take_form%2:42:00:: 1 5 -take_heart%2:37:00:: 1 1 -take_hold%2:35:00:: 2 2 -take_hold%2:41:00:: 1 3 -take_hold_of%2:35:01:: 1 1 -take_in%2:31:00:: 9 1 -take_in%2:32:00:: 2 2 -take_in%2:35:00:: 8 1 -take_in%2:35:01:: 7 1 -take_in%2:39:06:: 6 1 -take_in%2:40:09:: 5 1 -take_in%2:41:00:: 4 1 -take_in%2:42:00:: 1 3 -take_in%2:43:00:: 3 1 -take_into_account%2:31:00:: 1 12 -take_issue%2:32:00:: 1 1 -take_it_easy%2:29:00:: 1 3 -take_kindly_to%2:42:00:: 1 1 -take_leave%2:38:00:: 1 2 -take_note%2:39:00:: 1 2 -take_notice%2:39:00:: 1 2 -take_off%2:29:03:: 7 1 -take_off%2:30:00:: 3 6 -take_off%2:35:01:: 2 6 -take_off%2:36:00:: 6 1 -take_off%2:38:00:: 1 15 -take_off%2:38:02:: 4 4 -take_off%2:41:00:: 5 2 -take_on%2:30:00:: 1 10 -take_on%2:33:00:: 4 2 -take_on%2:33:01:: 6 1 -take_on%2:40:00:: 5 1 -take_on%2:41:00:: 3 2 -take_on%2:41:01:: 2 6 -take_out%2:30:00:: 3 4 -take_out%2:35:00:: 6 1 -take_out%2:35:01:: 2 6 -take_out%2:40:02:: 4 2 -take_out%2:41:00:: 5 1 -take_out%2:41:01:: 1 7 -take_over%2:40:02:: 8 1 -take_over%2:40:03:: 5 3 -take_over%2:40:05:: 7 1 -take_over%2:40:06:: 4 5 -take_over%2:40:07:: 1 12 -take_over%2:41:00:: 3 5 -take_over%2:41:01:: 2 8 -take_over%2:41:02:: 6 1 -take_pains%2:41:00:: 1 3 -take_part%2:41:00:: 1 12 -take_place%2:30:00:: 1 54 -take_pride%2:37:00:: 1 3 -take_root%2:30:01:: 1 4 -take_shape%2:42:00:: 1 5 -take_stock%2:39:00:: 1 1 -take_the_field%2:33:01:: 1 1 -take_the_floor%2:38:00:: 1 2 -take_the_stand%2:32:00:: 1 1 -take_time_off%2:41:00:: 1 1 -take_to%2:37:00:: 1 4 -take_to%2:41:01:: 2 1 -take_to_be%2:31:00:: 1 2 -take_to_heart%2:31:00:: 1 1 -take_turns%2:30:00:: 1 2 -take_up%2:30:00:: 1 9 -take_up%2:31:00:: 2 5 -take_up%2:35:00:: 9 1 -take_up%2:35:04:: 8 1 -take_up%2:38:03:: 7 1 -take_up%2:40:00:: 6 1 -take_up%2:41:00:: 5 2 -take_up%2:41:01:: 3 4 -take_up%2:42:00:: 4 3 -take_up_arms%2:33:00:: 1 1 -taken%5:00:00:understood:00 1 1 -taken_for_granted%5:00:00:obvious:00 1 1 -taken_over%5:00:00:taken:00 1 1 -taken_up%5:00:00:concerned:00 1 1 -takeoff%1:04:00:: 1 1 -takeover%1:04:02:: 1 1 -takings%1:21:00:: 1 1 -tale%1:10:00:: 1 26 -tale%1:10:01:: 2 6 -talent%1:09:00:: 1 14 -talent%1:18:00:: 2 4 -talented%5:00:00:precocious:00 1 3 -talismanic%5:00:00:supernatural:00 1 1 -talk%1:04:02:: 3 1 -talk%1:10:00:: 1 12 -talk%1:10:03:: 2 1 -talk%2:32:00:: 2 26 -talk%2:32:01:: 1 108 -talk%2:32:02:: 4 4 -talk%2:32:03:: 3 8 -talk%2:32:06:: 5 2 -talk_about%2:32:00:: 1 40 -talk_about%2:32:01:: 2 10 -talk_down%2:32:00:: 1 1 -talk_into%2:32:00:: 1 7 -talk_of%2:32:00:: 1 3 -talk_over%2:32:00:: 1 1 -talk_shop%2:32:00:: 1 1 -talk_terms%2:32:00:: 1 1 -talkative%5:00:00:voluble:00 1 1 -talking%1:10:00:: 1 1 -talks%1:10:00:: 1 1 -talky%5:00:00:voluble:00 1 1 -tall%3:00:00:: 1 73 -tall-growing%5:00:00:tall:00 1 1 -tall_tale%1:10:00:: 1 2 -tallow%1:27:00:: 1 1 -tally%1:04:01:: 1 4 -tame%2:30:00:: 1 1 -tame%5:00:00:unexciting:00 1 1 -tamper%2:35:12:: 1 1 -tampering%1:04:00:: 1 1 -tan%1:07:00:: 2 1 -tan%1:26:00:: 1 1 -tang%1:07:00:: 1 1 -tangent%1:25:00:: 1 18 -tangential%5:00:00:irrelevant:00 1 1 -tangible%3:00:00:: 1 1 -tangible%5:00:00:concrete:00 2 1 -tangibly%4:02:00:: 1 1 -tangle%1:09:00:: 2 1 -tangle%1:17:00:: 1 2 -tangle_with%2:42:00:: 1 2 -tangled%3:00:00:: 1 5 -tangled%5:00:00:complex:00 2 2 -tango%1:04:00:: 1 2 -tank%1:06:00:: 2 3 -tank%1:06:01:: 1 7 -tanker%1:06:00:: 1 1 -tanned%5:00:00:brunet:00 1 1 -tantalize%2:32:00:: 2 1 -tantalize%2:37:00:: 1 1 -tantalizing%5:00:01:inviting:00 2 1 -tantalizing%5:00:02:inviting:00 1 1 -tantalizingly%4:02:00:: 1 1 -tantrum%1:26:00:: 1 1 -tap%1:11:00:: 1 3 -tap%2:34:00:: 4 3 -tap%2:35:00:: 3 3 -tap%2:35:02:: 1 6 -tap%2:39:00:: 5 1 -tap%2:40:00:: 2 3 -tape%1:06:00:: 1 10 -tape%1:06:01:: 2 2 -tape_recorder%1:06:00:: 1 1 -taped%5:00:00:fixed:00 1 1 -taper%2:30:02:: 1 1 -taper_off%2:42:00:: 1 1 -tapered%5:00:00:pointed:00 1 2 -tapering%5:00:00:pointed:00 1 1 -tapestry%1:07:00:: 1 1 -tapping%1:11:00:: 1 2 -tar%1:27:00:: 1 1 -target%1:06:00:: 4 3 -target%1:09:00:: 5 2 -target%1:10:00:: 1 6 -target%1:15:00:: 3 4 -target%1:18:00:: 2 4 -target-hunting%5:00:00:guided:00 1 1 -target_area%1:15:00:: 1 2 -target_language%1:10:01:: 1 1 -target_practice%1:04:00:: 1 1 -tariff%1:21:00:: 1 2 -tarnish%2:35:00:: 1 1 -tarpaulin%1:06:00:: 1 2 -tarred-and-feathered%5:00:00:punished:00 1 1 -tarry%2:42:00:: 1 1 -tart%5:00:00:sour:00 1 1 -tartly%4:02:00:: 1 1 -task%1:04:00:: 2 15 -task%1:04:01:: 1 18 -task_force%1:14:00:: 1 3 -taste%1:09:01:: 3 3 -taste%1:09:02:: 1 8 -taste%1:11:00:: 4 1 -taste%1:12:02:: 2 7 -taste%2:34:00:: 3 3 -taste%2:39:00:: 2 3 -taste%2:39:02:: 1 10 -tasteful%3:00:02:: 1 1 -tat%2:36:00:: 1 1 -tattered%5:00:01:worn:00 1 35 -tattletale_grey%1:07:00:: 1 1 -taunt%1:04:00:: 1 3 -taunt%2:32:00:: 1 5 -taunting%5:00:00:disrespectful:00 1 1 -taut%5:00:00:tense:01 1 4 -taut%5:00:00:tense:03 2 1 -tavern%1:06:00:: 1 2 -tawdry%5:00:00:tasteless:02 1 1 -tawny%5:00:00:chromatic:00 1 1 -tax%1:21:00:: 1 44 -tax%2:40:00:: 1 16 -tax-exempt%5:00:00:nontaxable:00 1 1 -tax_advantage%1:21:00:: 1 1 -tax_return%1:10:00:: 1 2 -taxable%3:00:00:: 1 1 -taxi%1:06:00:: 1 5 -taxi%2:38:01:: 1 2 -taxi_strip%1:06:00:: 1 1 -taxidriver%1:18:00:: 1 1 -taxing%5:00:00:heavy:02 1 1 -taxpayer%1:18:00:: 1 10 -taxpaying%5:00:00:nonexempt:00 1 1 -tea%1:13:00:: 1 5 -tea%1:13:01:: 2 1 -tea_party%1:11:00:: 1 1 -tea_service%1:06:00:: 1 1 -teacart%1:06:00:: 1 2 -teach%2:30:00:: 2 2 -teach%2:32:00:: 1 86 -teacher%1:09:00:: 2 1 -teacher%1:18:00:: 1 41 -teaching%1:04:00:: 1 9 -teaching%1:04:01:: 3 1 -teaching%1:09:00:: 2 3 -teaching_certificate%1:10:00:: 1 1 -teaching_method%1:09:00:: 1 4 -teakettle%1:06:00:: 1 1 -teakwood%1:20:00:: 1 1 -team%1:14:00:: 1 43 -team%1:14:01:: 2 8 -team_spirit%1:07:00:: 1 1 -team_up%2:33:00:: 1 2 -teammate%1:18:00:: 1 2 -teamster%1:18:02:: 1 5 -tear%1:08:01:: 1 6 -tear%1:17:00:: 2 1 -tear%2:35:00:: 1 19 -tear%2:35:01:: 2 7 -tear%2:35:06:: 4 1 -tear%2:38:00:: 3 2 -tear_apart%2:32:00:: 1 1 -tear_away%2:30:00:: 1 2 -tear_down%2:36:00:: 1 5 -tearfully%4:02:00:: 1 1 -tears%1:04:00:: 1 7 -tease%1:18:00:: 1 1 -tease%2:32:00:: 2 1 -tease%2:37:00:: 1 2 -teasing%1:04:00:: 1 1 -teaspoonful%1:23:01:: 1 1 -teat%1:08:00:: 1 2 -technical%3:00:00:: 2 11 -technical%3:01:00:: 1 16 -technical%3:01:01:: 3 8 -technical%3:01:03:: 4 5 -technical_school%1:14:00:: 1 1 -technically%4:02:00:: 2 1 -technically%4:02:01:: 1 1 -technician%1:18:00:: 1 3 -technique%1:09:00:: 1 58 -technique%1:09:01:: 2 4 -technological%3:01:00:: 2 3 -technological%5:00:00:scientific:00 1 6 -technological_revolution%1:28:00:: 1 1 -technologically%4:02:00:: 1 1 -technology%1:04:00:: 1 12 -technology%1:09:00:: 2 2 -tedious%5:00:00:uninteresting:00 1 2 -tee%1:15:00:: 1 1 -teem%2:42:00:: 1 1 -teen%5:00:00:young:00 1 6 -teenage%5:00:00:young:00 1 4 -teenager%1:18:00:: 1 12 -teens%1:28:00:: 1 3 -teensy%5:00:00:small:00 1 1 -teeter%2:38:00:: 1 2 -teetotaler%1:18:00:: 1 1 -tel_aviv%1:15:00:: 1 1 -telegram%1:10:00:: 1 2 -telegraph%1:06:00:: 1 3 -telegraph%2:32:00:: 1 2 -telegraph_form%1:10:00:: 1 1 -telegraph_operator%1:18:00:: 1 1 -telegrapher%1:18:00:: 1 5 -telegraphic%3:01:00:: 1 2 -telegraphy%1:10:00:: 1 1 -telepathy%1:10:00:: 1 1 -telephone%1:06:00:: 1 18 -telephone%1:10:00:: 2 1 -telephone%2:32:00:: 1 12 -telephone_booth%1:06:00:: 1 2 -telephone_call%1:10:00:: 1 2 -telephone_company%1:14:00:: 1 1 -telephone_directory%1:10:00:: 1 1 -telephone_line%1:06:01:: 1 3 -telephone_number%1:10:00:: 1 1 -telephone_operator%1:18:00:: 1 2 -telephone_order%1:04:00:: 1 1 -telephone_pole%1:06:00:: 1 2 -telephone_wire%1:06:00:: 1 1 -telescope%2:35:00:: 1 1 -telescopic_sight%1:06:00:: 1 1 -televise%2:32:00:: 1 3 -television%1:06:00:: 2 2 -television%1:06:01:: 3 1 -television%1:10:00:: 1 12 -television_camera%1:06:00:: 1 1 -television_program%1:10:00:: 1 2 -television_set%1:06:00:: 1 2 -television_system%1:06:00:: 1 1 -tell%2:31:00:: 5 27 -tell%2:31:01:: 8 3 -tell%2:32:00:: 2 189 -tell%2:32:01:: 3 75 -tell%2:32:02:: 4 60 -tell%2:32:03:: 7 4 -tell%2:32:04:: 1 196 -tell%2:32:08:: 6 6 -tell_apart%2:39:00:: 1 1 -tell_on%2:30:00:: 2 1 -tell_on%2:32:00:: 1 1 -telling%5:00:00:informative:00 1 1 -telltale%5:00:00:informative:00 1 1 -temerity%1:07:00:: 1 2 -temper%1:07:02:: 3 2 -temper%1:12:00:: 2 2 -temper%1:12:01:: 1 3 -temperament%1:07:00:: 1 1 -temperature%1:07:00:: 1 91 -temperature%1:09:00:: 2 1 -temperature_change%1:22:00:: 1 1 -temperature_gradient%1:24:00:: 1 3 -tempest%1:26:00:: 1 1 -temple%1:06:00:: 1 6 -temple%1:06:01:: 3 1 -temple%1:08:00:: 2 1 -tempo%1:28:00:: 2 1 -tempo%1:28:01:: 1 2 -temporal%5:00:00:impermanent:00 1 3 -temporarily%4:02:00:: 1 5 -temporary%3:00:00:: 1 6 -tempt%2:32:00:: 4 1 -tempt%2:32:01:: 1 4 -tempt%2:32:04:: 2 4 -tempt%2:37:00:: 3 1 -temptation%1:09:00:: 1 8 -ten%1:23:00:: 1 8 -ten%5:00:00:cardinal:00 1 71 -ten-gallon_hat%1:06:00:: 1 1 -ten_thousand%1:23:00:: 1 8 -tenable%5:00:00:reasonable:00 1 1 -tenaciously%4:02:00:: 1 1 -tenacity%1:07:00:: 1 1 -tenancy%1:04:00:: 1 2 -tenant%1:18:00:: 1 4 -tend%2:41:00:: 3 3 -tend%2:41:01:: 4 1 -tend%2:42:00:: 2 4 -tend%2:42:01:: 1 59 -tendency%1:07:00:: 3 5 -tendency%1:09:00:: 1 11 -tendency%1:12:00:: 2 6 -tender%2:40:01:: 1 1 -tender%3:00:01:: 5 1 -tender%3:00:03:: 1 2 -tender%5:00:00:loving:00 4 2 -tender%5:00:00:painful:00 2 2 -tender%5:00:00:young:00 3 2 -tenderly%4:02:00:: 1 2 -tenderness%1:07:00:: 1 3 -tending%1:04:00:: 1 1 -tendon%1:08:00:: 1 3 -tenebrous%5:00:00:dark:01 1 1 -tenement%1:06:00:: 1 4 -tenement_house%1:06:00:: 1 1 -tenet%1:10:00:: 1 1 -tenfold%4:02:00:: 1 1 -tennessee%1:15:00:: 1 1 -tennis%1:04:00:: 1 1 -tennis_court%1:06:00:: 1 1 -tennis_racket%1:06:00:: 1 1 -tenor%1:07:00:: 2 1 -tenor%1:10:00:: 1 1 -tense%1:10:00:: 1 2 -tense_system%1:10:00:: 1 1 -tensely%4:02:00:: 1 2 -tension%1:19:00:: 4 3 -tension%1:26:01:: 2 4 -tension%1:26:02:: 3 3 -tension%1:26:03:: 1 9 -tensional%3:01:00:: 1 1 -tensionless%5:00:00:lax:01 1 1 -tent%1:06:00:: 1 17 -tentacle%1:07:00:: 1 1 -tentative%5:00:00:conditional:00 1 7 -tentatively%4:02:00:: 1 3 -tenth%1:23:00:: 1 2 -tenth%5:00:00:ordinal:00 1 4 -tenting%1:04:00:: 1 1 -tenuous%5:00:00:weak:00 1 1 -tenuously%4:02:00:: 1 1 -tenure%1:28:00:: 1 2 -tepid%5:00:00:warm:01 1 1 -term%1:09:00:: 4 3 -term%1:10:00:: 1 37 -term%1:10:01:: 5 1 -term%1:10:02:: 3 6 -term%1:28:00:: 2 8 -term%2:32:00:: 1 15 -term_of_office%1:28:00:: 1 1 -terminal%1:06:00:: 1 2 -terminal%1:06:01:: 2 1 -terminal%5:00:00:last:00 1 7 -terminal_velocity%1:28:00:: 1 1 -terminate%2:30:01:: 1 8 -terminate%2:42:00:: 3 2 -terminate%2:42:03:: 2 3 -termination%1:28:00:: 1 3 -terminology%1:10:00:: 1 2 -terms%1:21:00:: 2 1 -terms%1:26:00:: 1 2 -terra_firma%1:17:00:: 1 1 -terrace%1:06:00:: 1 2 -terrain%1:15:00:: 1 2 -terrestrial%3:01:00:: 1 1 -terrestrial%3:01:02:: 2 1 -terrible%5:00:00:alarming:00 1 11 -terrible%5:00:00:bad:00 4 1 -terrible%5:00:00:intense:00 3 1 -terrible%5:00:01:bad:00 2 2 -terribly%4:02:00:: 1 8 -terrier%1:05:00:: 1 2 -terrific%5:00:00:extraordinary:00 2 2 -terrific%5:00:00:intense:00 1 3 -terrified%5:00:00:afraid(p):00 1 4 -terrify%2:37:00:: 1 1 -terrifying%5:00:00:alarming:00 1 3 -territorial%3:01:00:: 1 2 -territory%1:09:00:: 3 2 -territory%1:15:00:: 1 6 -territory%1:21:01:: 2 4 -terror%1:12:00:: 1 11 -terror%1:18:01:: 2 1 -terror-stricken%5:00:00:afraid(p):00 1 1 -terror-struck%5:00:00:afraid(p):00 1 1 -terrorist%1:18:00:: 1 1 -terrorize%2:41:00:: 1 1 -terrycloth%1:06:00:: 1 1 -terse%5:00:00:concise:00 1 1 -tersely%4:02:00:: 1 1 -test%1:04:00:: 6 2 -test%1:04:02:: 2 7 -test%1:04:03:: 5 2 -test%1:09:01:: 3 4 -test%1:09:02:: 1 19 -test%1:10:00:: 4 2 -test%2:32:00:: 3 4 -test%2:41:00:: 1 32 -test%2:41:01:: 2 9 -test%5:00:00:empirical:00 1 4 -test_suit%1:04:00:: 1 1 -test_tube%1:06:00:: 1 1 -testament%1:09:00:: 1 2 -testament%1:10:00:: 2 1 -tested%5:00:00:proved:00 1 2 -tested%5:00:00:reliable:00 2 1 -testicle%1:08:00:: 1 2 -testify%2:32:01:: 1 13 -testify%2:32:02:: 2 1 -testily%4:02:00:: 1 1 -testimonial%1:10:01:: 2 1 -testimonial%1:10:02:: 1 2 -testimony%1:10:00:: 1 5 -testimony%1:10:01:: 2 4 -testimony%1:10:02:: 3 2 -testing%1:04:00:: 1 5 -testing%1:04:02:: 3 2 -testing%1:04:03:: 2 4 -testing_room%1:06:00:: 1 3 -tether%2:35:00:: 1 1 -tetrasodium_pyrophosphate%1:27:00:: 1 1 -teutonic%3:01:00:: 1 1 -texan%1:18:00:: 1 2 -texas%1:15:00:: 1 14 -text%1:10:00:: 1 53 -textile%1:06:00:: 1 7 -texture%1:07:00:: 1 13 -texture%1:07:02:: 3 1 -texture%1:09:00:: 2 3 -textured%5:00:00:rough:00 1 1 -thailand%1:15:00:: 1 1 -thamnophis%1:05:00:: 1 1 -thank%2:32:00:: 1 17 -thank_you%1:10:00:: 1 3 -thankfulness%1:12:00:: 1 1 -thanks%1:04:00:: 2 2 -thanks%1:10:00:: 1 7 -thanksgiving%1:28:00:: 1 2 -that_is%4:02:00:: 1 34 -that_is_to_say%4:02:00:: 1 4 -that_much%4:02:00:: 1 4 -thatch%1:08:00:: 1 1 -thaw%1:19:00:: 2 1 -thaw%1:22:00:: 1 1 -thaw%2:30:00:: 1 5 -thawing%1:22:00:: 1 1 -the_americas%1:17:00:: 1 1 -the_british%1:18:00:: 1 1 -the_bronx%1:15:00:: 1 2 -the_buddha%1:18:00:: 1 1 -the_devil%1:18:00:: 1 1 -the_english%1:18:00:: 1 2 -the_french%1:18:00:: 1 4 -the_good_old_days%1:28:00:: 1 1 -the_indies%1:15:00:: 1 1 -the_irish%1:18:00:: 1 1 -the_least_bit%4:02:00:: 1 2 -the_like%1:09:00:: 1 4 -the_matter%5:00:00:malfunctioning:00 1 12 -the_netherlands%1:15:00:: 1 2 -the_shits%1:26:00:: 1 2 -the_swiss%1:18:00:: 1 1 -the_virgin%1:18:00:: 1 1 -theater%1:06:00:: 1 7 -theater%1:10:00:: 2 3 -theatre%1:06:00:: 1 9 -theatre%1:10:00:: 2 2 -theatregoer%1:18:00:: 1 1 -theatrical%3:00:00:: 2 1 -theatrical%3:01:00:: 1 1 -theatrically%4:02:00:: 1 2 -theistic%3:01:00:: 1 1 -thematic%3:01:00:: 1 1 -theme%1:09:01:: 2 5 -theme%1:10:00:: 1 9 -then%1:28:00:: 1 6 -then%4:02:00:: 1 333 -then%4:02:01:: 3 87 -then%4:02:02:: 2 117 -then%5:00:00:past:00 1 1 -then_again%4:02:00:: 1 4 -thence%4:02:01:: 1 2 -thenceforth%4:02:01:: 1 1 -theologian%1:18:00:: 1 9 -theological%3:01:00:: 1 15 -theology%1:04:00:: 3 1 -theology%1:09:00:: 2 6 -theology%1:09:01:: 1 11 -theorem%1:10:00:: 1 14 -theoretical%3:00:00:: 1 8 -theoretically%4:02:00:: 1 2 -theoretically%4:02:01:: 2 1 -theorist%1:18:00:: 1 1 -theorize%2:31:00:: 1 2 -theory%1:09:00:: 1 49 -theory%1:09:01:: 2 18 -theory%1:09:02:: 3 5 -therapeutic%3:01:00:: 2 4 -therapeutic%5:00:00:healthful:00 1 5 -therapist%1:18:00:: 1 9 -therapy%1:04:00:: 1 7 -there%4:02:00:: 1 181 -there%4:02:01:: 3 2 -there%4:02:02:: 2 6 -thereafter%4:02:00:: 1 8 -thereby%4:02:00:: 1 15 -therefor%4:02:00:: 1 1 -therefore%4:02:00:: 1 88 -therefrom%4:02:01:: 2 1 -therefrom%4:02:02:: 1 3 -therein%4:02:00:: 1 6 -thereof%4:02:00:: 1 9 -thereon%4:02:00:: 1 1 -thereto%4:02:00:: 1 6 -theretofore%4:02:00:: 1 2 -thereunder%4:02:00:: 1 1 -thereupon%4:02:00:: 1 2 -therewith%4:02:00:: 1 2 -thermal%3:01:00:: 1 27 -thermal_emission%1:22:00:: 1 1 -thermally%4:02:00:: 1 1 -thermistor%1:06:00:: 1 1 -thermocouple%1:06:00:: 1 6 -thermodynamic%3:01:00:: 1 2 -thermodynamically%4:02:00:: 1 2 -thermodynamics%1:09:00:: 1 1 -thermodynamics_of_equilibrium%1:09:00:: 1 1 -thermogravimetric%3:01:00:: 1 1 -thermometer%1:06:00:: 1 10 -thermometric%3:01:00:: 1 1 -thermometry%1:04:00:: 1 2 -thermopile%1:06:00:: 1 1 -thermostat%1:06:00:: 1 1 -thermostated%5:00:00:regulated:00 1 1 -thermostatics%1:09:00:: 1 1 -thesis%1:10:00:: 1 3 -thiamin%1:27:00:: 1 1 -thick%1:15:00:: 1 1 -thick%3:00:01:: 1 25 -thick%3:00:02:: 3 6 -thick%5:00:00:concentrated:00 2 7 -thick%5:00:00:unintelligible:00 4 2 -thick-skulled%5:00:00:stupid:00 1 1 -thick_with%5:00:00:full:00 1 1 -thicken%2:30:00:: 2 2 -thicken%2:30:01:: 1 2 -thickened%5:00:00:thick:01 1 1 -thickening%5:00:00:intensifying:00 1 1 -thicket%1:14:00:: 1 11 -thickly%4:02:01:: 2 1 -thickly%4:02:02:: 1 1 -thickly_settled%5:00:00:inhabited:00 1 1 -thickness%1:07:01:: 1 4 -thickspread%5:00:00:covered:00 1 2 -thief%1:18:00:: 1 10 -thieving%1:04:00:: 1 2 -thieving%5:00:00:dishonest:00 1 4 -thigh%1:08:00:: 1 9 -thighbone%1:08:00:: 1 1 -thill%1:06:00:: 1 1 -thin%2:30:00:: 1 2 -thin%3:00:01:: 1 16 -thin%3:00:02:: 6 1 -thin%3:00:03:: 2 15 -thin%5:00:00:distributed:00 5 2 -thin%5:00:00:narrow:00 3 7 -thin%5:00:01:weak:00 4 2 -thin_out%2:30:00:: 1 1 -thing%1:04:00:: 2 52 -thing%1:06:00:: 4 36 -thing%1:06:01:: 8 26 -thing%1:07:00:: 9 20 -thing%1:09:00:: 3 36 -thing%1:09:01:: 10 4 -thing%1:09:02:: 6 32 -thing%1:10:00:: 7 26 -thing%1:11:00:: 5 32 -thing%1:26:00:: 1 72 -things%1:21:00:: 1 7 -think%2:31:00:: 3 111 -think%2:31:01:: 1 274 -think%2:31:02:: 4 8 -think%2:31:03:: 2 188 -think%2:31:06:: 7 2 -think%2:31:09:: 6 3 -think%2:36:00:: 5 4 -think_about%2:31:03:: 2 8 -think_about%2:31:05:: 1 21 -think_back%2:31:00:: 1 2 -think_factory%1:14:00:: 1 1 -think_of%2:31:00:: 1 53 -think_of%2:31:01:: 3 26 -think_of%2:31:02:: 4 20 -think_of%2:31:03:: 2 26 -think_of%2:36:00:: 5 16 -think_out%2:31:00:: 1 2 -think_over%2:31:00:: 1 3 -think_the_world_of%2:31:00:: 1 1 -think_twice%2:32:00:: 1 1 -think_up%2:36:00:: 1 2 -thinker%1:18:00:: 1 1 -thinking%1:09:00:: 1 11 -thinly%4:02:03:: 1 1 -thinness%1:07:00:: 2 1 -thinness%1:07:01:: 1 1 -thiocyanate%1:27:00:: 1 1 -thiouracil%1:27:00:: 1 3 -third%1:04:00:: 2 4 -third%1:23:00:: 1 6 -third%1:24:00:: 3 3 -third%4:02:00:: 1 3 -third%5:00:00:fractional:00 2 2 -third%5:00:00:ordinal:00 1 73 -third-dimensional%5:00:00:multidimensional:00 1 2 -third-dimensionality%1:07:00:: 1 1 -third_base%1:06:00:: 1 5 -third_person%1:10:00:: 1 1 -third_reich%1:14:00:: 1 1 -third_sacker%1:18:00:: 1 1 -thirst%1:07:00:: 2 1 -thirst%1:26:00:: 1 2 -thirsty%5:00:00:dry:01 1 1 -thirteen%1:23:00:: 1 1 -thirteen%5:00:00:cardinal:00 1 5 -thirteenth%5:00:00:ordinal:00 1 1 -thirties%1:28:00:: 1 1 -thirtieth%5:00:00:ordinal:00 1 1 -thirty%1:23:00:: 1 2 -thirty%5:00:00:cardinal:00 1 17 -this_evening%4:02:00:: 1 2 -thither%4:02:00:: 1 6 -thong%1:06:00:: 1 1 -thoreau%1:18:00:: 1 1 -thoriated%3:44:00:: 1 1 -thorn%1:09:00:: 1 1 -thorough%5:00:00:careful:00 1 4 -thorough%5:00:00:complete:00 2 3 -thoroughfare%1:06:00:: 1 2 -thoroughgoing%5:00:00:complete:00 1 2 -thoroughly%4:02:00:: 1 8 -thoroughly%4:02:01:: 2 7 -thoroughness%1:07:00:: 1 1 -though%4:02:00:: 1 23 -though%4:02:01:: 2 11 -thought%1:09:00:: 2 21 -thought%1:09:01:: 1 70 -thought%1:09:02:: 3 11 -thought-image%1:09:00:: 1 1 -thoughtful%3:00:00:: 2 1 -thoughtful%5:00:00:profound:00 1 2 -thoughtful%5:00:00:serious:00 3 1 -thoughtfully%4:02:00:: 2 3 -thoughtfully%4:02:01:: 1 8 -thoughtless%3:00:00:: 1 2 -thoughtless%3:00:04:: 2 1 -thoughtless%5:00:00:inconsiderate:00 3 1 -thousand%1:23:00:: 1 24 -thousand%5:00:00:cardinal:00 1 14 -thousand-fold%4:02:00:: 1 1 -thrash%2:35:00:: 1 2 -thrash%2:38:01:: 2 1 -thrash_about%2:38:00:: 1 1 -thrash_out%2:32:00:: 1 1 -thread%1:06:00:: 1 4 -thread%2:35:00:: 2 3 -thread%2:38:00:: 1 3 -threadbare%5:00:00:unoriginal:00 1 1 -threat%1:10:00:: 2 4 -threat%1:10:01:: 3 4 -threat%1:26:00:: 1 16 -threaten%2:32:00:: 2 21 -threaten%2:32:01:: 3 10 -threaten%2:42:00:: 1 23 -threatened%5:00:00:vulnerable:00 1 1 -threatening%5:00:00:alarming:00 1 2 -three%1:23:00:: 1 19 -three%5:00:00:cardinal:00 1 221 -three-dimensional%5:00:00:multidimensional:00 1 5 -three-dimensional_figure%1:25:00:: 1 2 -three-dimensionality%1:07:00:: 1 2 -three-way%5:00:00:multilateral:00 1 1 -three_times%4:02:01:: 1 3 -thresh%2:38:00:: 1 1 -threshing%1:04:00:: 1 1 -threshold%1:06:01:: 4 1 -threshold%1:06:02:: 3 1 -threshold%1:09:00:: 2 1 -threshold%1:28:00:: 1 7 -thrice%4:02:00:: 1 1 -thrifty%3:00:00:: 1 2 -thrill%1:04:00:: 3 1 -thrill%1:12:00:: 1 5 -thrill%1:12:02:: 2 2 -thrill%2:37:02:: 2 1 -thrill%2:39:00:: 1 2 -thriller%1:10:00:: 1 1 -thrillful%5:00:00:excited:00 1 1 -thrilling%5:00:00:exciting:00 1 2 -thrive%2:30:00:: 1 3 -thrive%2:40:00:: 2 1 -thriving%5:00:00:successful:00 1 2 -throat%1:06:00:: 3 2 -throat%1:06:01:: 2 2 -throat%1:08:00:: 1 34 -throb%2:38:01:: 2 2 -throb%2:39:00:: 1 2 -throbbing%1:11:00:: 1 1 -throbbing%5:00:00:rhythmical:00 1 1 -throe%1:26:01:: 1 1 -thrombosed%5:00:00:obstructed:00 1 1 -thrombosis%1:26:00:: 1 1 -thrombus%1:26:00:: 1 1 -throne%1:06:00:: 1 1 -throng%1:14:00:: 1 3 -throng%2:38:00:: 1 1 -thronged%5:00:00:crowded:00 1 1 -throttle%1:06:00:: 1 4 -throttle%2:30:01:: 1 2 -throttle%2:35:00:: 2 1 -through%4:02:00:: 1 8 -through%4:02:01:: 3 2 -through%4:02:03:: 2 5 -through%4:02:04:: 4 1 -through%5:00:00:finished:01 1 4 -through_with%5:00:02:finished:01 1 1 -throughout%4:02:00:: 1 3 -throw%1:04:00:: 1 4 -throw%1:26:00:: 2 1 -throw%2:32:00:: 5 6 -throw%2:32:03:: 10 2 -throw%2:35:00:: 1 53 -throw%2:35:01:: 6 5 -throw%2:35:02:: 4 7 -throw%2:35:07:: 3 7 -throw%2:36:02:: 7 4 -throw%2:36:08:: 11 1 -throw%2:37:00:: 9 2 -throw%2:38:00:: 2 9 -throw%2:38:03:: 8 2 -throw_away%2:40:00:: 1 5 -throw_back%2:35:00:: 1 1 -throw_in%2:32:00:: 3 1 -throw_in%2:33:00:: 2 1 -throw_in%2:40:00:: 1 2 -throw_in_the_towel%2:33:00:: 1 1 -throw_off%2:35:00:: 1 2 -throw_out%2:32:00:: 5 1 -throw_out%2:32:01:: 6 1 -throw_out%2:35:00:: 3 3 -throw_out%2:40:00:: 2 3 -throw_out%2:41:00:: 4 1 -throw_out%2:41:01:: 1 3 -throw_up%2:29:00:: 1 1 -thrown_and_twisted%5:00:00:tangled:00 1 1 -thrust%1:04:00:: 3 1 -thrust%1:04:01:: 2 1 -thrust%1:19:00:: 1 2 -thrust%2:32:00:: 4 3 -thrust%2:35:01:: 5 1 -thrust%2:38:00:: 1 11 -thrust%2:38:01:: 3 4 -thrust%2:38:02:: 2 7 -thrust_out%2:38:00:: 1 1 -thruway%1:06:00:: 1 1 -thud%1:11:00:: 1 1 -thud%2:35:00:: 2 1 -thud%2:39:00:: 1 1 -thudding%5:00:00:unreverberant:00 1 1 -thuggee%1:04:00:: 1 1 -thumb%1:08:00:: 1 5 -thumb%2:38:00:: 1 2 -thumbnail%1:08:00:: 1 1 -thump%2:35:00:: 3 1 -thump%2:38:00:: 1 3 -thump%2:39:00:: 2 1 -thumping%1:11:00:: 1 2 -thumping%5:00:00:unreverberant:00 1 1 -thunder%1:11:00:: 1 8 -thunder%1:11:01:: 2 5 -thunder%2:32:00:: 2 1 -thunder%2:38:00:: 1 2 -thundering%5:00:00:impressive:00 2 1 -thundering%5:00:00:noisy:00 1 1 -thunderous%5:00:00:loud:00 1 3 -thursday%1:28:00:: 1 13 -thus%4:02:00:: 1 90 -thus%4:02:01:: 2 55 -thus_far%4:02:00:: 1 3 -thwack%1:04:00:: 1 1 -thwart%1:06:00:: 1 1 -thwart%2:37:00:: 2 1 -thwart%2:41:00:: 1 5 -thyroglobulin%1:27:00:: 1 16 -thyroid%1:08:00:: 1 29 -thyroid-stimulating_hormone%1:27:00:: 1 1 -thyroid_gland%1:08:00:: 1 6 -thyroid_hormone%1:08:00:: 1 4 -thyroidal%3:01:00:: 1 1 -thyronine%1:27:00:: 1 1 -thyrotoxic%3:01:00:: 1 1 -thyrotrophic_hormone%1:27:00:: 1 1 -thyrotrophin%1:27:00:: 1 1 -thyroxine%1:08:00:: 1 9 -tibet%1:15:00:: 1 2 -tibetan%1:10:00:: 1 1 -tibetan%3:01:00:: 1 1 -tibialis_anticus%1:08:00:: 1 1 -tick%1:05:00:: 2 1 -tick%1:11:00:: 1 2 -tick%2:39:00:: 1 2 -tick%2:39:01:: 2 1 -ticket%1:10:01:: 1 3 -tidbit%1:13:00:: 1 1 -tide%1:11:00:: 1 5 -tide%1:11:01:: 2 1 -tidewater%1:15:00:: 2 1 -tidewater%1:17:00:: 1 1 -tidings%1:10:00:: 1 3 -tidy_up%2:30:00:: 1 1 -tie%1:06:01:: 1 5 -tie%1:06:02:: 4 1 -tie%1:06:04:: 5 1 -tie%1:26:00:: 3 3 -tie%1:26:01:: 2 4 -tie%2:30:00:: 5 1 -tie%2:30:01:: 3 4 -tie%2:33:00:: 2 5 -tie%2:35:00:: 1 13 -tie%2:35:01:: 4 2 -tie-in%1:06:00:: 1 1 -tie_in%2:42:00:: 1 2 -tie_up%2:35:00:: 1 3 -tied%5:00:00:bound:01 1 2 -tied%5:00:00:united:00 2 1 -tied_up%5:00:00:busy:00 1 1 -tiger%1:05:00:: 2 1 -tiger%1:18:00:: 1 1 -tight%3:00:01:: 1 10 -tight%4:02:00:: 1 3 -tight%4:02:02:: 2 1 -tight%5:00:00:closed:03 4 1 -tight%5:00:00:invulnerable:00 3 1 -tight%5:00:00:scarce:00 6 1 -tight%5:00:00:stingy:00 5 1 -tight%5:00:00:tense:01 2 2 -tighten%2:30:00:: 2 1 -tighten%2:30:01:: 1 8 -tighten%2:30:02:: 3 1 -tighten_up%2:30:00:: 1 1 -tightened%5:00:00:secure:03 1 1 -tightening%1:04:00:: 1 1 -tightly%4:02:01:: 2 1 -tightly%4:02:02:: 1 3 -tightly_fitting%5:00:00:tight:01 1 1 -tightly_knit%5:00:00:integrated:02 1 1 -tile%1:06:00:: 1 1 -tiled%5:00:00:covered:00 1 1 -tilled%5:00:00:plowed:00 1 1 -tilt%2:38:00:: 1 9 -tilt%2:38:01:: 2 1 -tilt-top_table%1:06:00:: 1 1 -tilted%5:00:00:inclined:01 1 2 -tilth%1:26:00:: 1 1 -timber%1:06:00:: 2 2 -timber%1:06:01:: 3 1 -timber%1:27:00:: 1 3 -timbered%3:00:00:: 1 1 -timbered%5:00:00:wooded:00 2 1 -timbre%1:07:00:: 1 2 -time%1:03:00:: 5 36 -time%1:07:01:: 9 1 -time%1:11:00:: 1 219 -time%1:11:01:: 6 10 -time%1:28:00:: 3 114 -time%1:28:03:: 7 7 -time%1:28:04:: 8 5 -time%1:28:05:: 2 160 -time%1:28:06:: 4 43 -time%2:30:00:: 1 4 -time%2:31:00:: 2 3 -time%2:31:01:: 3 1 -time-delay_measuring_system%1:06:00:: 1 1 -time_and_again%4:02:00:: 1 2 -time_and_time_again%4:02:00:: 1 2 -time_clock%1:06:00:: 1 1 -time_machine%1:06:00:: 1 2 -time_of_arrival%1:28:00:: 1 1 -time_of_life%1:28:00:: 1 2 -time_of_year%1:28:00:: 1 1 -time_off%1:28:00:: 1 4 -time_period%1:28:00:: 1 4 -time_plan%1:21:00:: 1 1 -timed%5:00:00:regular:00 1 1 -timeliness%1:07:01:: 1 1 -timely%4:02:00:: 1 1 -timely%5:00:00:opportune:00 2 1 -timely%5:00:01:punctual:00 1 3 -timepiece%1:06:00:: 1 1 -timer%1:06:00:: 1 1 -times%1:04:00:: 2 1 -times%1:28:01:: 1 12 -timetable%1:10:01:: 1 1 -timeworn%5:00:00:unoriginal:00 1 1 -timid%3:00:00:: 1 3 -timidity%1:12:00:: 1 1 -timidly%4:02:00:: 1 2 -timing%1:07:00:: 1 6 -tin%1:27:00:: 1 5 -tine%1:06:00:: 1 2 -tinge%2:30:01:: 1 1 -tingle%2:39:00:: 1 3 -tingling%5:00:00:exciting:00 1 2 -tinker%2:35:00:: 1 1 -tinkle%1:11:00:: 1 1 -tinkle%2:39:00:: 1 2 -tinsel%5:00:00:worthless:00 1 1 -tint%1:07:00:: 1 1 -tint%2:30:00:: 1 1 -tinted%5:00:00:colored:00 1 2 -tiny%5:00:00:small:00 1 19 -tip%1:10:00:: 3 3 -tip%1:15:00:: 1 9 -tip%1:21:00:: 2 3 -tip%2:30:00:: 2 1 -tip%2:38:02:: 1 5 -tipped%3:00:00:: 1 1 -tipsy%5:00:00:intoxicated:00 1 1 -tiptoe%2:38:00:: 1 1 -tiptoe%4:02:00:: 1 1 -tire%1:06:00:: 1 8 -tire%2:29:00:: 1 3 -tire%2:29:01:: 2 3 -tire_out%2:29:00:: 1 2 -tire_tool%1:06:00:: 1 1 -tired%3:00:00:: 1 9 -tired_of%5:00:00:displeased:00 1 7 -tiredly%4:02:00:: 1 1 -tireless%5:00:00:energetic:00 1 1 -tiresome%5:00:00:uninteresting:00 1 1 -tiring%5:00:00:effortful:00 1 1 -tissue%1:08:00:: 1 37 -tissue%1:27:02:: 2 4 -tissue_paper%1:27:00:: 1 2 -tit%1:08:01:: 1 2 -titanic%5:00:00:large:00 1 1 -titer%1:07:00:: 1 8 -titillating%5:00:01:exciting:00 1 1 -title%1:07:00:: 7 1 -title%1:10:00:: 2 8 -title%1:10:01:: 3 3 -title%1:10:02:: 6 1 -title%1:10:04:: 5 2 -title%1:10:05:: 1 26 -title%1:26:00:: 4 2 -title%2:32:00:: 1 3 -title-holder%1:18:00:: 1 1 -title_page%1:10:00:: 1 1 -titled%3:00:00:: 1 3 -titled%5:00:00:noble:02 2 1 -titration%1:04:00:: 1 1 -titter%2:29:00:: 1 2 -tittering%3:44:00:: 1 1 -to_a_greater_extent%4:02:01:: 1 1 -to_and_fro%4:02:00:: 1 11 -to_be_sure%4:02:00:: 1 11 -to_begin_with%4:02:00:: 1 3 -to_boot%4:02:00:: 1 1 -to_it%4:02:00:: 1 4 -to_that_extent%4:02:00:: 1 1 -to_the_contrary%4:02:00:: 1 3 -to_the_hilt%4:02:00:: 1 1 -to_the_north%4:02:00:: 1 3 -to_what_degree%4:02:00:: 1 1 -to_what_extent%4:02:00:: 1 2 -toad%1:05:00:: 1 4 -toast%1:13:00:: 1 5 -toast%2:30:00:: 1 5 -toast%2:34:00:: 2 1 -tobacco%1:06:00:: 1 4 -tobacco_mosaic_virus%1:05:00:: 1 1 -today%1:28:00:: 1 69 -today%1:28:01:: 2 13 -today%4:02:00:: 2 11 -today%4:02:01:: 1 19 -toddy%1:13:00:: 1 1 -toe%1:06:00:: 2 2 -toe%1:08:01:: 1 13 -toe%3:00:00:: 1 1 -toe_the_line%2:41:00:: 1 2 -toffee%1:13:00:: 1 1 -together%4:02:00:: 5 9 -together%4:02:01:: 6 7 -together%4:02:02:: 2 22 -together%4:02:03:: 3 18 -together%4:02:04:: 1 26 -together%4:02:05:: 7 1 -together%4:02:10:: 4 12 -together%5:00:00:unneurotic:00 1 2 -toil%2:41:00:: 1 2 -toilet%1:06:00:: 1 3 -toilet%1:06:01:: 2 2 -toiling%5:00:00:busy:00 1 1 -token%1:10:00:: 1 2 -tokenish%5:00:00:minimal:00 1 1 -tokyo%1:15:00:: 1 3 -tolerable%5:00:00:acceptable:00 1 3 -tolerance%1:04:00:: 3 1 -tolerance%1:07:03:: 1 1 -tolerance%1:07:04:: 2 1 -tolerant%3:00:00:: 1 3 -tolerant%5:00:00:broad-minded:00 3 1 -tolerant%5:00:00:forgiving:00 2 1 -tolerate%2:31:00:: 1 7 -toll%1:07:01:: 2 1 -toll%1:21:00:: 1 1 -toll%2:39:00:: 1 1 -toll_call%1:10:00:: 1 1 -tollgate%1:06:00:: 1 1 -tollhouse%1:06:00:: 1 1 -tomato%1:13:00:: 1 2 -tomato_paste%1:13:00:: 1 1 -tomb%1:06:00:: 1 6 -tomorrow%1:28:00:: 2 9 -tomorrow%1:28:01:: 1 15 -tomorrow%4:02:00:: 1 3 -ton%1:23:02:: 1 10 -tonal%3:00:00:: 2 1 -tonal%3:01:00:: 1 6 -tone%1:07:00:: 5 2 -tone%1:07:01:: 3 11 -tone%1:07:02:: 2 22 -tone%1:09:00:: 7 1 -tone%1:10:01:: 1 24 -tone%1:10:02:: 6 1 -tone%1:26:01:: 4 5 -tone_language%1:10:00:: 1 3 -tone_system%1:10:00:: 1 4 -toned%5:00:00:tonal:00 1 1 -tongue%1:08:00:: 1 13 -tongue%1:10:00:: 2 4 -tongue%1:10:01:: 4 1 -tongue%1:25:00:: 3 2 -tongue-in-cheek%5:00:00:humorous:00 1 2 -tongue_depressor%1:06:00:: 1 1 -tongue_twister%1:10:00:: 1 1 -tongued%3:00:00:: 1 1 -tonight%1:28:00:: 1 3 -tonight%4:02:00:: 1 22 -tons%1:23:00:: 1 2 -too%4:02:00:: 1 180 -too%4:02:01:: 2 117 -too-careful%5:00:00:careful:00 1 1 -too_bad%5:00:00:unfortunate:00 1 5 -too_large%5:00:00:large:00 1 2 -too_little%5:00:00:insufficient:00 1 1 -too_much%4:02:00:: 1 29 -too_much%4:02:01:: 2 1 -too_much%5:00:00:immoderate:00 1 3 -too_soon%4:02:00:: 1 1 -tool%1:04:00:: 2 5 -tool%1:06:00:: 1 15 -tool%2:38:00:: 2 1 -tool%2:38:01:: 1 1 -tool-and-die_work%1:04:00:: 1 2 -tool_around%2:38:00:: 1 1 -tooth%1:04:00:: 4 1 -tooth%1:05:02:: 3 1 -tooth%1:06:01:: 2 2 -tooth%1:08:00:: 1 38 -toothbrush%1:06:00:: 1 1 -toothpaste%1:06:00:: 1 1 -top%1:07:02:: 6 1 -top%1:15:00:: 2 15 -top%1:15:01:: 1 23 -top%1:15:02:: 3 8 -top%1:26:00:: 5 3 -top%1:28:00:: 4 3 -top%2:38:00:: 2 1 -top%2:42:00:: 1 2 -top%3:00:00:: 1 11 -top%5:00:00:best:00 4 1 -top%5:00:00:important:00 2 7 -top%5:00:00:maximal:00 3 4 -top-grade%5:00:00:best:00 1 1 -top-quality%5:00:00:best:00 1 1 -top_dog%1:18:00:: 1 3 -top_executive%1:18:00:: 1 1 -topgallant_mast%1:06:00:: 1 2 -topic%1:09:00:: 2 2 -topic%1:10:00:: 1 5 -topical%5:00:00:local:02 1 2 -topnotch%5:00:00:superior:02 1 1 -topographical%3:01:00:: 1 1 -topography%1:07:00:: 1 3 -topped%3:00:00:: 1 1 -topple%2:38:00:: 1 4 -toppling%5:00:00:falling:03 1 1 -topsoil%1:27:00:: 1 1 -topsy-turvy%5:00:00:untidy:00 1 1 -torch%1:06:02:: 1 2 -torment%1:12:01:: 3 1 -torment%1:12:02:: 2 1 -torment%1:26:00:: 1 1 -torment%2:37:00:: 1 1 -tormented%5:00:00:sorrowful:00 1 1 -tormentor%1:18:00:: 1 2 -torn%5:00:00:damaged:00 3 2 -torn%5:00:00:divided:00 2 2 -torn%5:00:00:injured:00 1 5 -tornado%1:19:00:: 1 1 -toronto%1:15:00:: 1 1 -torpid%5:00:00:inactive:01 1 1 -torpor%1:26:00:: 1 1 -torrent%1:11:00:: 2 1 -torrent%1:19:01:: 1 1 -torso%1:08:00:: 1 6 -tortuous%5:00:00:complex:00 1 2 -torture%1:12:02:: 1 1 -torture%2:29:00:: 2 1 -torture%2:37:00:: 1 3 -tortured%5:00:00:punished:00 1 1 -tortured%5:00:00:sorrowful:00 2 1 -torturing%5:00:00:painful:00 1 1 -tory%1:18:01:: 1 2 -toss%1:04:00:: 2 2 -toss%1:04:01:: 1 3 -toss%2:35:00:: 6 1 -toss%2:35:04:: 1 13 -toss%2:35:05:: 3 5 -toss%2:38:00:: 2 10 -toss%2:38:01:: 4 4 -toss%2:40:00:: 5 1 -toss_away%2:40:00:: 1 2 -toss_back%2:35:00:: 1 1 -tot_up%2:32:00:: 1 1 -total%1:06:00:: 1 13 -total%1:09:00:: 2 6 -total%2:32:00:: 2 2 -total%2:42:00:: 1 16 -total%5:00:00:gross:00 2 21 -total%5:00:00:unconditional:00 3 2 -total%5:00:00:whole:00 1 31 -total%5:00:02:complete:00 4 2 -total_darkness%1:26:00:: 1 1 -totalistic%3:01:00:: 1 1 -totalitarian%5:00:00:undemocratic:00 1 1 -totality%1:26:00:: 1 1 -totally%4:02:00:: 1 8 -totemic%3:01:00:: 1 1 -toter%1:18:00:: 1 1 -totter%2:38:02:: 1 4 -tottering%5:00:00:unsteady:00 1 3 -touch%1:04:00:: 5 2 -touch%1:07:01:: 4 2 -touch%1:09:01:: 2 3 -touch%1:10:01:: 3 2 -touch%1:10:02:: 7 1 -touch%1:11:00:: 1 8 -touch%1:23:00:: 6 1 -touch%2:30:00:: 6 3 -touch%2:31:00:: 13 1 -touch%2:32:09:: 12 1 -touch%2:35:00:: 1 33 -touch%2:35:01:: 5 3 -touch%2:35:03:: 11 1 -touch%2:35:04:: 8 2 -touch%2:37:00:: 3 4 -touch%2:39:00:: 2 5 -touch%2:41:00:: 7 2 -touch%2:42:00:: 4 3 -touch%2:42:01:: 9 1 -touch%2:42:02:: 10 1 -touch_down%2:38:00:: 1 1 -touch_off%2:36:00:: 1 3 -touch_on%2:32:01:: 1 4 -touch_on%2:42:00:: 2 1 -touch_up%2:30:00:: 1 1 -touchdown%1:04:00:: 1 4 -touched%5:00:00:colored:00 1 1 -touched%5:00:00:moved(p):00 4 1 -touching%5:00:00:moving:01 1 3 -touchstone%1:10:00:: 1 1 -tough%3:00:02:: 3 2 -tough%3:00:03:: 1 9 -tough%5:00:00:rugged:00 4 2 -tough%5:00:00:uncomfortable:00 6 1 -tough%5:00:00:violent:00 5 1 -tough%5:00:01:difficult:00 2 5 -toughness%1:07:01:: 1 1 -tour%1:04:00:: 1 3 -tour%1:28:00:: 2 1 -tour%2:38:00:: 1 3 -tour_de_force%1:04:00:: 1 1 -touring%5:00:00:moving:02 1 1 -tourist%1:18:00:: 1 3 -tourist_court%1:06:00:: 1 1 -tournament%1:11:00:: 1 6 -tousled%5:00:00:untidy:00 1 3 -tow%1:04:00:: 1 1 -toward_the_sea%4:02:00:: 1 1 -towboat%1:06:00:: 1 1 -towel%1:06:00:: 1 6 -towel_rack%1:06:00:: 1 1 -toweling%1:06:00:: 1 1 -tower%1:06:00:: 1 4 -tower%1:25:00:: 2 1 -tower%2:42:00:: 1 2 -town%1:14:00:: 2 8 -town%1:15:00:: 1 67 -town%1:15:01:: 3 4 -town_clerk%1:18:00:: 1 1 -town_house%1:06:01:: 1 1 -town_meeting%1:14:00:: 1 4 -town_meeting%1:14:01:: 2 1 -townsman%1:18:00:: 1 1 -toxic%3:00:00:: 1 3 -toxin%1:27:00:: 1 1 -toy%1:06:00:: 1 4 -toy_with%2:31:00:: 1 1 -trace%1:06:00:: 4 1 -trace%1:06:01:: 5 1 -trace%1:10:00:: 2 2 -trace%1:10:01:: 3 1 -trace%1:23:00:: 1 5 -trace%2:31:00:: 1 9 -trace%2:35:00:: 2 5 -trace%2:38:00:: 4 2 -trace%2:38:01:: 3 2 -traceable%5:00:00:attributable:00 1 1 -trachea%1:08:01:: 1 2 -tracing%1:04:00:: 1 9 -track%1:06:02:: 3 1 -track%1:06:05:: 4 1 -track%1:09:00:: 2 1 -track%1:17:00:: 1 6 -track%2:38:00:: 3 1 -track%2:38:02:: 1 2 -track%2:39:00:: 2 1 -track_down%2:33:00:: 1 3 -track_meet%1:11:00:: 1 1 -tract%1:08:01:: 2 3 -tract%1:10:00:: 3 1 -tract%1:15:00:: 1 3 -tractarian%1:18:00:: 1 1 -tractor%1:06:00:: 1 3 -trade%1:04:00:: 2 16 -trade%1:04:01:: 3 6 -trade%1:04:02:: 4 3 -trade%1:04:05:: 1 16 -trade%1:14:00:: 5 2 -trade%2:40:00:: 2 6 -trade%2:40:01:: 1 6 -trade%2:40:02:: 4 2 -trade%2:42:00:: 3 2 -trade%5:00:00:commercial:00 1 2 -trade_in%2:40:00:: 1 1 -trade_name%1:10:00:: 1 3 -trade_policy%1:10:00:: 1 1 -trade_route%1:06:00:: 1 1 -trade_school%1:14:00:: 1 1 -trademark%1:07:00:: 1 3 -trademark%1:10:00:: 2 1 -trader%1:18:00:: 1 5 -tradesman%1:18:00:: 1 1 -trading%1:04:00:: 1 2 -trading_post%1:06:00:: 1 1 -tradition%1:09:01:: 1 28 -tradition%1:09:02:: 2 15 -traditional%3:00:00:: 1 23 -traditional%5:00:00:orthodox:00 2 3 -traditionalism%1:04:00:: 2 1 -traditionalism%1:07:00:: 1 1 -traditionalist%1:18:00:: 1 5 -traditionally%4:02:00:: 1 1 -traffic%1:04:01:: 2 1 -traffic%1:14:00:: 1 13 -traffic_light%1:10:00:: 1 1 -tragedian%1:18:02:: 1 1 -tragedy%1:10:00:: 2 1 -tragedy%1:11:00:: 1 8 -tragic%3:01:00:: 2 3 -tragic%5:00:00:sad:00 1 7 -tragically%4:02:00:: 1 1 -tragicomic%3:01:00:: 1 2 -trail%1:06:00:: 2 4 -trail%1:09:00:: 3 1 -trail%1:17:01:: 1 5 -trail%2:35:00:: 3 1 -trail%2:38:00:: 2 3 -trail%2:38:02:: 1 8 -train%1:06:00:: 1 24 -train%1:14:02:: 2 1 -train%2:29:00:: 8 1 -train%2:31:00:: 2 9 -train%2:31:01:: 1 14 -train%2:32:00:: 7 1 -train%2:33:00:: 6 1 -train%2:41:00:: 4 5 -train%2:41:01:: 5 1 -train%2:41:02:: 3 5 -trained%3:00:00:: 1 8 -trained%5:00:00:skilled:00 2 3 -trained_worker%1:18:00:: 1 1 -traineeship%1:21:00:: 1 1 -training%1:04:00:: 1 71 -training_program%1:09:00:: 1 10 -training_school%1:14:01:: 1 1 -training_ship%1:06:00:: 1 1 -trainman%1:18:00:: 1 1 -trait%1:07:00:: 1 3 -traitor%1:18:00:: 1 4 -traitorous%5:00:00:disloyal:00 1 1 -tramp%1:18:00:: 1 1 -tramp%2:38:00:: 1 7 -tramping%5:00:00:moving:02 1 1 -trample%2:29:00:: 2 1 -trample%2:38:00:: 1 5 -trampled%5:00:00:damaged:00 1 2 -trampling%1:11:00:: 1 1 -trampling%5:00:00:moving:02 1 1 -trance%1:09:00:: 2 1 -trance%1:26:00:: 1 6 -tranquil%5:00:00:calm:00 2 1 -tranquil%5:00:00:peaceful:00 1 3 -tranquility%1:07:00:: 1 1 -tranquilizer%1:06:00:: 1 3 -tranquilly%4:02:01:: 1 3 -trans%5:00:00:crosswise:00 1 1 -transact%2:40:14:: 1 2 -transaction%1:04:00:: 1 2 -transcend%2:42:00:: 1 3 -transcend%2:42:01:: 2 1 -transcendent%5:00:00:unknown:00 1 2 -transcendental%3:01:00:: 2 1 -transcendental%5:00:00:supernatural:00 1 2 -transcribe%2:32:00:: 2 1 -transcribe%2:32:01:: 1 1 -transcription%1:10:00:: 1 1 -transcultural%3:01:00:: 1 1 -transducer%1:06:00:: 1 11 -transfer%1:04:00:: 1 20 -transfer%1:04:03:: 3 1 -transfer%1:18:00:: 2 1 -transfer%2:35:00:: 7 1 -transfer%2:38:00:: 4 5 -transfer%2:38:02:: 6 1 -transfer%2:38:05:: 3 6 -transfer%2:40:00:: 5 1 -transfer%2:40:01:: 2 6 -transfer%2:41:00:: 1 6 -transfix%2:37:00:: 1 1 -transform%2:30:00:: 2 10 -transform%2:30:02:: 1 14 -transform%2:30:03:: 3 3 -transformation%1:11:00:: 1 3 -transformed%5:00:00:changed:00 1 1 -transformer%1:06:00:: 1 1 -transfusion%1:04:00:: 1 1 -transgress%2:41:00:: 1 1 -transgression%1:04:00:: 1 1 -transience%1:07:00:: 1 1 -transistor%1:06:00:: 1 1 -transit%1:06:00:: 1 2 -transit_line%1:06:00:: 1 1 -transition%1:04:00:: 1 10 -transition%1:11:00:: 2 3 -transition%1:11:01:: 3 1 -transitional%3:01:00:: 1 3 -translate%2:30:00:: 5 2 -translate%2:30:01:: 2 7 -translate%2:31:00:: 3 4 -translate%2:32:00:: 1 10 -translate%2:35:00:: 4 2 -translation%1:04:02:: 3 2 -translation%1:10:00:: 1 4 -translation%1:11:00:: 2 2 -translucence%1:07:00:: 1 1 -translucent%5:00:00:clear:02 1 2 -transmissible%5:00:00:infectious:00 1 1 -transmission%1:04:01:: 1 4 -transmission%1:10:00:: 2 2 -transmit%2:32:00:: 3 2 -transmit%2:35:00:: 4 1 -transmit%2:38:00:: 2 2 -transmit%2:40:10:: 1 4 -transmitted%5:00:00:sent:00 1 1 -transmitting%1:04:00:: 1 1 -transmutation%1:04:00:: 1 2 -transmutation%1:11:00:: 2 1 -transmute%2:30:00:: 1 2 -transmute%2:30:02:: 2 1 -transparent%5:00:00:clear:02 1 5 -transparent%5:00:00:thin:01 2 2 -transpirate%2:38:00:: 1 1 -transpiration%1:22:01:: 1 3 -transpiring%3:44:00:: 1 4 -transplant%2:38:00:: 1 3 -transplantable%5:00:00:mobile:00 1 1 -transport%1:04:00:: 3 1 -transport%1:06:00:: 1 3 -transport%1:22:00:: 2 1 -transport%2:35:00:: 2 2 -transport%2:37:00:: 3 1 -transport%2:38:00:: 1 4 -transportation%1:04:00:: 2 5 -transportation%1:06:00:: 1 7 -transpose%2:30:00:: 1 2 -transpose%2:30:02:: 3 1 -transpose%2:30:05:: 2 1 -transversally%4:02:00:: 1 1 -transverse%5:00:00:crosswise:00 1 4 -transversely%4:02:00:: 1 1 -transversus%1:08:00:: 1 1 -transversus_abdominis%1:08:00:: 1 1 -transvestitism%1:04:00:: 1 1 -trap%1:04:00:: 5 1 -trap%1:06:00:: 1 4 -trap%1:06:03:: 4 1 -trap%1:06:04:: 2 2 -trap%1:09:00:: 3 1 -trap%2:35:00:: 2 2 -trap%2:35:01:: 3 1 -trap%2:41:00:: 1 2 -trapped%5:00:00:unfree:00 1 1 -trapper%1:18:00:: 1 3 -trapping%1:06:01:: 1 1 -trash_dump%1:15:00:: 1 1 -travel%1:04:00:: 1 7 -travel%1:11:00:: 2 1 -travel%2:38:00:: 1 34 -travel%2:38:01:: 3 3 -travel%2:38:02:: 4 2 -travel%2:38:03:: 5 1 -travel%2:38:04:: 2 9 -travel_along%2:38:00:: 1 1 -travel_to%2:38:00:: 1 2 -traveled%3:00:00:: 1 1 -traveled%5:00:00:cosmopolitan:02 2 1 -traveler%1:18:00:: 1 3 -traveling%5:00:00:moving:02 1 1 -traveller%1:18:00:: 1 1 -travelogue%1:10:00:: 1 1 -traverse%2:32:00:: 3 1 -traverse%2:38:00:: 1 4 -traverse%2:42:00:: 2 1 -tray%1:06:00:: 1 12 -treacherous%5:00:00:dangerous:00 1 1 -treachery%1:07:00:: 1 1 -tread%1:04:00:: 1 2 -tread%2:35:00:: 3 1 -tread%2:35:01:: 4 1 -tread%2:38:00:: 2 3 -tread%2:38:01:: 1 3 -tread_on%2:38:00:: 1 3 -treadmill%1:06:01:: 1 1 -treason%1:04:00:: 1 4 -treasure%1:06:00:: 2 2 -treasure%1:14:00:: 4 1 -treasure%1:21:00:: 1 2 -treasure%1:21:01:: 3 1 -treasure%2:40:00:: 1 1 -treasured%5:00:00:loved:00 1 1 -treasurer%1:18:00:: 1 3 -treasury%1:14:00:: 2 2 -treasury%1:21:00:: 1 7 -treat%2:29:00:: 3 17 -treat%2:30:01:: 2 23 -treat%2:32:00:: 4 10 -treat%2:40:00:: 5 3 -treat%2:41:00:: 1 30 -treated%3:00:00:: 1 2 -treated%5:00:00:stained:00 2 2 -treatment%1:04:00:: 1 28 -treatment%1:04:01:: 2 25 -treatment%1:07:00:: 3 4 -treatment%1:10:00:: 4 2 -treaty%1:10:00:: 1 3 -treble%5:00:00:high:03 1 1 -tree%1:20:00:: 1 107 -tree_branch%1:20:00:: 1 1 -tree_trunk%1:20:00:: 1 2 -treetop%1:20:00:: 1 5 -tremble%2:29:00:: 1 16 -tremble%2:38:00:: 2 4 -trembling%1:26:00:: 1 1 -trembling%5:00:00:unsteady:00 1 7 -tremendous%5:00:00:extraordinary:00 2 10 -tremendous%5:00:00:large:00 1 19 -tremendously%4:02:00:: 1 5 -tremor%1:04:00:: 1 2 -tremor%1:11:00:: 2 1 -trench%1:06:00:: 1 2 -trend%1:09:00:: 3 1 -trend%1:15:01:: 2 1 -trend%1:15:02:: 1 18 -trepidation%1:12:00:: 1 1 -trespass%2:41:01:: 1 2 -trestle%1:06:01:: 1 1 -tri-iodothyronine%1:27:00:: 1 4 -trial%1:04:00:: 2 44 -trial%1:04:01:: 1 49 -trial%1:04:02:: 5 1 -trial%1:04:03:: 4 2 -trial%1:09:00:: 3 3 -trial_and_error%1:04:00:: 1 2 -trial_balloon%1:09:00:: 1 1 -trial_court%1:14:00:: 1 1 -trial_judge%1:18:00:: 1 1 -triamcinolone%1:27:00:: 1 4 -triangle%1:25:00:: 1 2 -triangular%5:00:00:angular:00 1 1 -tribal%3:01:00:: 1 2 -tribunal%1:14:00:: 1 1 -tribute%1:10:01:: 1 5 -trichloroacetic_acid%1:27:00:: 1 1 -trichrome%5:00:00:colored:00 1 1 -trick%1:04:00:: 4 1 -trick%1:04:02:: 5 1 -trick%1:04:04:: 3 1 -trick%1:04:05:: 1 2 -trick%1:28:00:: 2 1 -trick%2:41:00:: 1 1 -trick_out%2:29:00:: 1 1 -trickle%2:38:00:: 1 1 -tricolor%5:00:00:colored:00 1 1 -trigger%1:06:00:: 1 5 -trigger%2:33:00:: 2 1 -trigger%2:36:00:: 1 4 -trigger-happy%5:00:00:irresponsible:00 1 2 -trigonal%5:00:00:symmetrical:00 1 1 -trill%1:10:00:: 1 3 -trim%1:06:00:: 2 1 -trim%1:26:00:: 1 1 -trim%2:30:00:: 3 1 -trim%2:35:03:: 1 8 -trim%2:36:01:: 2 1 -trim%5:00:00:thin:03 1 1 -trim_down%2:30:00:: 1 1 -trimming%1:04:00:: 1 1 -trinket%1:06:00:: 1 1 -trio%1:10:00:: 2 1 -trio%1:23:00:: 1 1 -trip%1:04:00:: 1 31 -trip%2:38:00:: 1 2 -trip_up%2:31:00:: 1 1 -triphammer%1:06:00:: 1 1 -triphosphopyridine_nucleotide%1:27:00:: 1 1 -triple%1:04:00:: 1 3 -triple%2:30:00:: 1 3 -triple%2:35:00:: 2 1 -triple%5:00:00:multiple:00 1 2 -triple-crown_season%1:28:00:: 1 1 -tripod%1:06:00:: 1 1 -trisodium_orthophosphate%1:27:00:: 1 1 -trite%5:00:00:unoriginal:00 1 1 -triumph%1:11:00:: 1 6 -triumph%1:12:00:: 2 5 -triumph%2:33:00:: 1 1 -triumphant%5:00:00:elated:00 1 3 -triumphant%5:00:00:undefeated:00 2 1 -triumphantly%4:02:00:: 1 4 -trivial%5:00:00:ordinary:00 2 3 -trivial%5:00:00:unimportant:00 1 4 -triviality%1:07:00:: 1 1 -troika%1:06:00:: 1 1 -troll%1:18:00:: 1 1 -trolley_car%1:06:00:: 1 1 -trolley_line%1:06:00:: 1 1 -trompe_l'oeil%1:06:00:: 1 1 -troop%1:14:00:: 1 10 -troop%1:14:03:: 2 5 -trooper%1:18:00:: 2 1 -trooper%1:18:01:: 1 9 -troops%1:14:00:: 1 27 -trophotropic%3:01:00:: 1 1 -tropical%3:01:00:: 2 1 -tropical%5:00:00:equatorial:00 1 3 -tropidoclonion%1:05:00:: 1 1 -trot%1:04:00:: 1 1 -trot%2:38:00:: 1 10 -trot%2:38:01:: 2 2 -trot_out%2:39:00:: 1 1 -trouble%1:04:02:: 5 8 -trouble%1:09:00:: 1 21 -trouble%1:11:00:: 4 11 -trouble%1:11:01:: 3 16 -trouble%1:12:03:: 6 1 -trouble%1:26:01:: 2 16 -trouble%2:29:00:: 5 1 -trouble%2:37:00:: 3 3 -trouble%2:37:01:: 1 6 -trouble%2:41:00:: 2 3 -trouble%2:41:01:: 4 1 -trouble_oneself%2:41:00:: 1 1 -troubled%3:00:00:: 1 1 -troubled%5:00:00:unquiet:00 2 1 -troubleshooter%1:18:00:: 1 1 -troublesome%5:00:00:difficult:00 1 3 -trough%1:06:00:: 2 1 -trough%1:17:00:: 1 4 -troupe%1:14:00:: 1 2 -trouser%1:06:00:: 1 3 -trouser_cuff%1:06:00:: 1 1 -trousers%1:06:00:: 1 4 -truck%1:06:00:: 1 20 -truck%2:38:00:: 1 1 -truck_bed%1:06:00:: 1 2 -trucking%1:04:00:: 1 1 -truculence%1:07:00:: 1 1 -truculent%5:00:00:aggressive:00 1 1 -trudge%2:38:00:: 2 2 -trudge%2:38:01:: 1 6 -true%3:00:00:: 1 83 -true%4:02:00:: 1 2 -true%5:00:00:accurate:00 3 3 -true%5:00:00:constant:00 5 1 -true%5:00:00:genuine:00 2 8 -true%5:00:02:faithful:00 4 2 -truly%4:02:00:: 1 20 -truly%4:02:01:: 2 1 -trump_up%2:36:00:: 1 1 -trumpet%1:06:00:: 1 1 -trumpet%2:32:00:: 1 1 -trumpet_vine%1:20:01:: 1 2 -trumpeter%1:18:00:: 1 1 -trundle%2:38:00:: 1 3 -trunk%1:06:00:: 2 3 -trunk%1:20:00:: 1 3 -trust%1:07:00:: 3 3 -trust%1:09:00:: 2 3 -trust%1:09:01:: 5 1 -trust%1:14:00:: 4 1 -trust%1:21:03:: 1 4 -trust%2:31:00:: 1 16 -trust%2:31:02:: 3 4 -trust%2:37:00:: 4 2 -trust%2:40:00:: 5 1 -trust%2:41:00:: 2 5 -trusted%5:00:00:trustworthy:00 1 1 -trustee%1:18:00:: 1 6 -trustee%1:18:01:: 2 1 -trustfully%4:02:00:: 1 1 -trustworthy%3:00:00:: 1 1 -trustworthy%5:00:00:responsible:00 2 1 -truth%1:07:01:: 4 3 -truth%1:09:00:: 1 17 -truth%1:10:00:: 3 6 -truth%1:26:00:: 2 7 -truthful%3:00:00:: 1 1 -truthful%5:00:00:true:00 2 1 -truthfulness%1:07:00:: 1 1 -try%1:04:00:: 1 5 -try%2:34:00:: 4 2 -try%2:41:00:: 1 342 -try%2:41:01:: 2 16 -try%2:41:06:: 3 4 -try_for%2:33:00:: 1 1 -try_on%2:29:00:: 1 1 -try_out%2:41:00:: 1 8 -trying%5:00:00:difficult:00 1 2 -tsh%1:27:00:: 1 19 -tsunami%1:11:00:: 1 22 -tub%1:06:00:: 2 1 -tub%1:06:01:: 1 7 -tube%1:06:00:: 1 26 -tube%1:06:02:: 2 7 -tube%1:25:00:: 3 1 -tube-nosed_fruit_bat%1:05:00:: 1 1 -tuberculosis%1:26:00:: 1 4 -tubing%1:06:00:: 1 4 -tubular%5:00:00:hollow:00 1 1 -tubule%1:08:00:: 1 1 -tuck%2:35:00:: 1 8 -tudor%1:14:00:: 1 2 -tudor%3:01:00:: 1 1 -tuesday%1:28:00:: 1 12 -tuft%1:14:00:: 1 1 -tug%1:04:00:: 1 1 -tug%2:35:00:: 1 7 -tug-of-war%1:04:00:: 1 2 -tuition%1:21:00:: 1 2 -tularemia%1:26:00:: 1 2 -tulip%1:20:00:: 1 1 -tulip_tree%1:20:00:: 1 1 -tumble%1:04:00:: 1 1 -tumble%2:38:00:: 1 10 -tumble%2:38:03:: 5 1 -tumble%2:38:04:: 3 2 -tumble%2:38:06:: 2 2 -tumble%2:38:07:: 4 1 -tumbler%1:06:00:: 2 1 -tumbler%1:18:00:: 1 1 -tumbling%1:04:00:: 1 1 -tumbling%5:00:00:falling:03 2 1 -tumbling%5:00:00:moving:02 1 2 -tumor%1:26:00:: 1 18 -tumour%1:26:00:: 1 1 -tumult%1:26:00:: 1 3 -tumultuous%5:00:00:unquiet:00 1 1 -tune%1:10:00:: 1 12 -tune%2:30:01:: 1 1 -tune_in%2:39:00:: 1 1 -tuned%5:00:01:adjusted:00 2 1 -tuned%5:00:02:adjusted:00 1 1 -tuneful%3:00:00:: 1 1 -tunelessly%4:02:00:: 1 1 -tungsten%1:27:00:: 1 2 -tuning%1:04:00:: 1 3 -tunisia%1:15:00:: 1 1 -tunnel%1:06:00:: 1 1 -tunnel%2:35:00:: 2 1 -tunnel%2:38:00:: 1 1 -turban%1:06:00:: 1 2 -turbinate%1:08:00:: 1 1 -turbine%1:06:00:: 1 3 -turbofan_engine%1:06:00:: 1 1 -turbulence%1:19:00:: 1 1 -turbulent%5:00:00:agitated:02 2 1 -turbulent%5:00:00:unquiet:00 1 1 -turf%1:17:00:: 1 1 -turkey%1:05:00:: 1 2 -turkey%1:15:00:: 2 1 -turkey_cock%1:05:00:: 1 1 -turkish%3:01:00:: 1 1 -turmoil%1:12:00:: 2 1 -turmoil%1:26:00:: 1 5 -turn%1:04:01:: 2 6 -turn%1:04:02:: 6 1 -turn%1:04:06:: 3 4 -turn%1:04:07:: 7 1 -turn%1:11:00:: 5 1 -turn%1:11:01:: 4 2 -turn%1:25:00:: 1 7 -turn%2:29:00:: 15 1 -turn%2:30:00:: 5 7 -turn%2:30:03:: 7 5 -turn%2:30:04:: 2 21 -turn%2:30:09:: 14 1 -turn%2:35:06:: 13 1 -turn%2:35:08:: 8 2 -turn%2:36:00:: 12 1 -turn%2:38:00:: 1 187 -turn%2:38:01:: 10 1 -turn%2:38:02:: 4 8 -turn%2:38:03:: 6 5 -turn%2:38:04:: 9 1 -turn%2:38:06:: 11 1 -turn%2:42:00:: 3 12 -turn_around%2:30:01:: 2 1 -turn_around%2:38:00:: 1 10 -turn_away%2:38:00:: 2 4 -turn_away%2:38:01:: 4 1 -turn_away%2:38:02:: 1 13 -turn_away%2:41:00:: 3 1 -turn_back%2:30:00:: 2 4 -turn_back%2:33:00:: 4 1 -turn_back%2:38:00:: 1 7 -turn_back%2:38:02:: 3 1 -turn_down%2:40:00:: 1 5 -turn_in%2:36:00:: 4 1 -turn_in%2:36:02:: 2 2 -turn_in%2:38:00:: 1 2 -turn_in%2:40:00:: 3 1 -turn_into%2:42:00:: 1 15 -turn_of_the_century%1:28:00:: 1 2 -turn_off%2:35:00:: 1 8 -turn_off%2:37:00:: 3 1 -turn_off%2:38:00:: 2 1 -turn_on%2:30:00:: 4 1 -turn_on%2:35:00:: 1 12 -turn_on%2:39:00:: 3 1 -turn_on%2:42:00:: 2 2 -turn_out%2:30:00:: 5 2 -turn_out%2:35:00:: 7 1 -turn_out%2:36:00:: 6 1 -turn_out%2:36:01:: 3 10 -turn_out%2:42:00:: 1 32 -turn_out%2:42:01:: 2 10 -turn_out%2:42:02:: 4 6 -turn_over%2:35:00:: 4 1 -turn_over%2:38:02:: 2 2 -turn_over%2:38:03:: 3 1 -turn_over%2:40:00:: 1 5 -turn_the_tables%2:30:00:: 1 1 -turn_to%2:30:00:: 4 9 -turn_to%2:31:00:: 3 9 -turn_to%2:32:00:: 2 10 -turn_to%2:32:01:: 1 12 -turn_to%2:41:00:: 6 2 -turn_to%2:42:00:: 5 3 -turn_up%2:30:00:: 1 8 -turn_up%2:35:00:: 2 3 -turn_up%2:40:00:: 3 2 -turn_upon%2:30:00:: 1 4 -turned%3:00:00:: 1 5 -turning%1:04:00:: 1 2 -turning%1:04:01:: 2 2 -turning_point%1:11:00:: 1 1 -turnover%1:24:00:: 1 2 -turnpike%1:06:01:: 1 1 -turntable%1:06:00:: 1 1 -tutor%1:18:00:: 1 1 -tutor%2:32:00:: 1 1 -tutorial%1:10:00:: 1 1 -tuxedoed%5:00:00:clothed:00 1 1 -tv%1:06:00:: 2 1 -tv%1:10:00:: 1 9 -tv_audience%1:14:00:: 1 1 -tv_room%1:06:00:: 1 1 -tweed%1:06:00:: 1 3 -tweedy%5:00:00:rough:00 1 1 -tweeze%2:35:00:: 1 1 -twelfth%5:00:00:ordinal:00 1 2 -twelve%1:23:00:: 1 1 -twelve%5:00:00:cardinal:00 1 20 -twenties%1:28:00:: 1 3 -twenties%1:28:01:: 2 2 -twentieth%1:24:00:: 1 1 -twentieth%5:00:00:ordinal:00 1 11 -twenty%1:23:00:: 1 1 -twenty%5:00:00:cardinal:00 1 19 -twenty-eight%1:23:00:: 1 1 -twenty-eighth%5:00:00:ordinal:00 1 2 -twenty-fifth%5:00:00:ordinal:00 1 3 -twenty-first%5:00:00:ordinal:00 1 3 -twenty-five%5:00:00:cardinal:00 1 11 -twenty-four%5:00:00:cardinal:00 1 2 -twenty-four_hours%1:28:00:: 1 3 -twenty-one%1:23:00:: 1 1 -twenty-one%5:00:00:cardinal:00 1 3 -twenty-six%5:00:00:cardinal:00 1 1 -twenty-three%1:23:00:: 1 1 -twenty-three%5:00:00:cardinal:00 1 3 -twenty-two%1:23:00:: 1 1 -twenty-two_rifle%1:06:00:: 1 1 -twice%4:02:00:: 1 21 -twice%4:02:01:: 2 4 -twiddle%2:38:00:: 1 1 -twig%1:20:00:: 1 1 -twig%2:30:00:: 1 1 -twilight%1:19:00:: 3 1 -twilight%1:26:00:: 1 2 -twilight%1:28:00:: 2 1 -twin%1:18:00:: 1 1 -twin%5:00:00:matched:00 1 1 -twine%2:35:00:: 1 5 -twinge%1:12:00:: 1 2 -twinkle%2:39:00:: 1 1 -twinkling%1:28:00:: 1 1 -twinkling%5:00:00:bright:00 1 1 -twirl%2:38:00:: 1 2 -twirl%2:38:01:: 2 1 -twirler%1:18:01:: 1 2 -twirlingly%4:02:00:: 1 1 -twist%1:04:01:: 3 2 -twist%1:04:02:: 4 1 -twist%1:10:00:: 2 2 -twist%1:11:00:: 1 2 -twist%2:30:00:: 5 1 -twist%2:35:00:: 3 2 -twist%2:35:01:: 4 1 -twist%2:35:02:: 2 5 -twist%2:38:01:: 1 13 -twisted%5:00:00:coiled:00 1 1 -twisted%5:00:00:crooked:01 2 1 -twisted%5:00:00:disingenuous:00 3 1 -twisting%1:04:00:: 1 1 -twisting%5:00:00:moving:02 1 2 -twitch%2:29:00:: 1 4 -twitch%2:38:01:: 2 2 -two%1:23:00:: 1 33 -two%5:00:00:cardinal:00 1 508 -two-baser%1:04:00:: 1 1 -two-by-four%1:06:00:: 1 2 -two-thirds%1:23:00:: 1 3 -two-way%5:00:00:nonpartisan:00 1 1 -two_weeks%1:28:00:: 1 10 -twofold%5:00:01:multiple:00 2 1 -twofold%5:00:02:multiple:00 1 2 -twoscore%5:00:00:cardinal:00 1 1 -twotime%2:41:00:: 1 2 -type%1:09:00:: 1 136 -type%1:18:00:: 2 7 -type%2:31:00:: 2 1 -type%2:32:00:: 1 2 -typewriter%1:06:00:: 1 2 -typewriting%1:10:00:: 1 1 -typhoid%1:26:00:: 1 1 -typhus%1:26:00:: 1 2 -typhus_fever%1:26:00:: 1 1 -typical%3:00:00:: 1 26 -typical%5:00:00:characteristic:00 2 2 -typically%4:02:00:: 1 7 -typify%2:42:00:: 1 2 -typing%1:10:00:: 1 2 -typographic%3:01:00:: 1 1 -typography%1:04:00:: 1 2 -typography%1:10:00:: 2 1 -tyranny%1:14:00:: 1 3 -tyrant%1:18:00:: 1 1 -tyrosine%1:27:00:: 1 3 -u.s.%1:14:00:: 1 18 -u.s.%1:15:00:: 2 6 -u.s._government%1:14:00:: 1 1 -ubermensch%1:18:00:: 1 1 -ubiquitous%5:00:00:present:02 1 1 -ugliness%1:07:00:: 1 1 -ugly%3:00:00:: 1 3 -ugly%5:00:00:inaesthetic:00 2 1 -ukrainian%1:10:00:: 1 1 -ulcer%1:26:00:: 1 4 -ulcerated%5:00:00:unhealthy:00 1 1 -ulceration%1:26:00:: 1 1 -ultimate%3:00:00:: 1 18 -ultimate%5:00:00:last:00 2 5 -ultimately%4:02:01:: 1 5 -ultimately%4:02:02:: 2 3 -ultimatum%1:10:00:: 1 1 -ultra%5:00:00:immoderate:00 1 1 -ultracentrifugation%1:22:00:: 1 4 -ultracentrifuge%1:06:00:: 1 3 -ultramodern%5:00:00:modern:00 1 1 -ultrasonic%5:00:00:inaudible:00 1 8 -ultrasonically%4:02:00:: 1 1 -ultraviolet%1:19:00:: 1 3 -ultraviolet%5:00:00:invisible:00 1 2 -ultraviolet_illumination%1:19:00:: 1 1 -ultraviolet_light%1:19:00:: 1 3 -ultraviolet_radiation%1:19:00:: 1 2 -ultraviolet_spectrum%1:19:00:: 1 2 -umbrella%1:06:00:: 1 2 -umbrella_tent%1:06:00:: 1 1 -un%1:14:00:: 1 1 -unabated%5:00:00:intense:00 1 1 -unable%3:00:00:: 1 20 -unable%5:00:00:incapable:00 2 5 -unacceptable%5:00:00:unsatisfactory:00 1 1 -unaccompanied%3:00:00:: 1 2 -unaccountable%5:00:00:inexplicable:00 1 1 -unachievable%5:00:00:impossible:00 1 1 -unacquainted_with%5:00:00:uninformed:00 1 1 -unadjusted%3:00:00:: 1 12 -unaffected%3:00:00:: 1 1 -unaffected%5:00:01:insensitive:02 2 1 -unafraid%3:00:00:: 1 1 -unaided%5:00:02:unassisted:00 1 3 -unalterable%3:00:00:: 1 1 -unambiguity%1:07:00:: 1 1 -unambiguous%3:00:00:: 1 2 -unambiguous%3:00:04:: 2 1 -unambiguously%4:02:01:: 1 2 -unanimous%5:00:00:accordant:00 1 3 -unanimously%4:02:00:: 1 5 -unanswered%5:00:00:nonreciprocal:00 1 1 -unarmed%3:00:01:: 1 1 -unashamedly%4:02:00:: 1 1 -unasked%5:00:00:unrequested:00 1 2 -unassisted%5:00:00:unsupported:02 1 2 -unasterisked%5:00:00:unmarked:00 1 1 -unattached%5:00:00:unconnected:00 1 1 -unattractive%3:00:00:: 1 1 -unattractive%5:00:00:unappealing:00 2 1 -unauthentic%5:00:00:counterfeit:00 1 1 -unauthorized%3:00:00:: 1 1 -unavailable%3:00:00:: 1 4 -unavailing%5:00:00:useless:00 1 1 -unavoidable%5:00:00:inevitable:00 1 5 -unavoidably%4:02:00:: 1 1 -unaware%3:00:00:: 1 8 -unawareness%1:09:00:: 1 2 -unawares%4:02:01:: 1 1 -unbalance%1:26:00:: 1 1 -unbearable%5:00:00:intolerable:00 1 3 -unbelievable%3:00:04:: 1 1 -unbidden%5:00:00:uninvited:00 1 1 -unblinkingly%4:02:00:: 1 1 -unborn%3:00:00:: 1 1 -unbounded%5:00:00:infinite:00 1 1 -unbreakable%3:00:00:: 1 1 -unbroken%3:00:02:: 1 3 -unbroken%5:00:00:wild:01 2 1 -unbuttoned%3:00:00:: 1 1 -uncanny%5:00:00:supernatural:00 1 1 -uncanny%5:00:00:unnatural:00 2 1 -uncaused%5:00:00:unintended:00 1 1 -unceasingly%4:02:00:: 1 1 -uncertain%3:00:01:: 2 3 -uncertain%3:00:02:: 1 6 -uncertain%5:00:00:insecure:03 3 2 -uncertainly%4:02:01:: 1 2 -uncertainty%1:07:00:: 1 6 -uncertainty%1:09:00:: 2 4 -uncertified%3:00:00:: 1 1 -unchangeable%3:00:00:: 1 1 -unchanged%3:00:00:: 1 2 -unchanged%3:00:04:: 2 1 -uncharged%3:00:00:: 1 4 -uncheckable%5:00:00:unmanageable:00 1 1 -unclaimed%5:00:00:unwanted:00 1 1 -unclasp%2:35:00:: 1 1 -uncle%1:18:00:: 1 6 -uncle%1:18:01:: 2 1 -uncle_sam%1:18:00:: 1 3 -unclean%3:00:04:: 1 2 -unclouded%5:00:00:pure:02 1 1 -uncombable%5:00:00:uncombed:00 1 1 -uncomfortable%3:00:00:: 2 2 -uncomfortable%3:00:01:: 1 2 -uncomfortably%4:02:00:: 1 1 -uncommon%3:00:00:: 1 4 -uncompromising%3:00:00:: 1 1 -unconcern%1:07:01:: 1 1 -unconcerned%3:00:00:: 1 3 -unconcerned%5:00:00:untroubled:00 2 1 -unconcernedly%4:02:00:: 1 2 -unconditional%3:00:00:: 1 1 -unconditionally%4:02:02:: 1 1 -unconditioned%5:00:00:unconditional:00 1 1 -unconfessed%1:14:00:: 1 1 -unconnected%5:00:00:unrelated:02 1 1 -unconquerable%3:00:00:: 1 1 -unconquered%5:00:00:undefeated:00 1 1 -unconscious%1:09:00:: 1 1 -unconscious%3:00:00:: 1 5 -unconscious%5:00:00:involuntary:01 2 1 -unconscious%5:00:01:unaware:00 3 1 -unconsciously%4:02:00:: 1 5 -unconstitutional%3:00:00:: 1 1 -uncontrollable%5:00:00:intractable:00 1 1 -uncontrollably%4:02:00:: 1 1 -unconventional%3:00:00:: 1 1 -unconvincing%3:00:00:: 1 2 -uncooperative%3:00:00:: 1 2 -uncork%2:35:01:: 1 1 -uncousinly%3:00:00:: 1 1 -uncover%2:35:00:: 2 1 -uncover%2:39:00:: 1 4 -uncritical%3:00:02:: 1 1 -uncurl%2:38:00:: 1 1 -undamaged%3:00:00:: 1 1 -undaunted%5:00:00:brave:00 2 2 -undaunted%5:00:00:resolute:00 1 2 -undeclared%3:00:00:: 1 1 -undeniable%3:00:00:: 1 2 -undepicted%5:00:00:undelineated:00 1 4 -under%4:02:05:: 1 2 -under%5:00:00:low:01 1 2 -under%5:00:00:subordinate:01 2 1 -under_arms%4:02:00:: 1 1 -under_control%5:00:01:controlled:00 1 1 -under_fire%5:00:00:vulnerable:00 1 4 -under_one's_nose%5:00:00:obvious:00 1 1 -under_that%4:02:00:: 1 1 -under_the_circumstances%4:02:00:: 1 2 -underachievement%1:04:00:: 1 3 -underachiever%1:18:00:: 1 2 -underbrush%1:14:00:: 1 2 -undercover%5:00:00:covert:00 1 1 -undercurrent%1:09:00:: 1 1 -underdeveloped%5:00:00:nonindustrial:00 1 2 -undereducated%5:00:00:uneducated:00 1 1 -underestimate%2:31:00:: 2 1 -underestimate%2:31:01:: 3 1 -underestimate%2:31:02:: 1 1 -underfoot%4:02:00:: 1 3 -undergo%2:31:00:: 3 3 -undergo%2:39:00:: 1 12 -undergo%2:39:02:: 2 8 -undergraduate%1:18:00:: 1 1 -underground%5:00:00:subsurface:00 1 7 -underhanded%5:00:00:crooked:02 1 1 -underlie%2:42:00:: 1 8 -underline%2:32:00:: 1 6 -underling%1:18:00:: 1 1 -underlying%5:00:00:implicit:00 1 7 -undermine%2:41:00:: 1 7 -underpin%2:35:00:: 1 1 -underprivileged%3:00:00:: 1 2 -underrate%2:31:00:: 1 1 -underscore%2:32:00:: 1 3 -undersea%5:00:00:subsurface:00 1 1 -undersecretary%1:18:00:: 1 1 -undershirt%1:06:00:: 1 3 -underside%1:15:00:: 1 1 -understand%2:31:00:: 1 110 -understand%2:31:01:: 2 29 -understand%2:31:02:: 4 4 -understand%2:31:03:: 3 9 -understand%2:31:04:: 5 1 -understandable%5:00:00:comprehensible:00 1 6 -understandable%5:00:00:meaningful:00 2 2 -understanding%1:09:00:: 4 1 -understanding%1:09:01:: 1 38 -understanding%1:09:03:: 3 1 -understanding%1:10:00:: 2 2 -understanding%5:00:00:perceptive:00 1 1 -understandingly%4:02:00:: 1 2 -understate%2:32:00:: 1 2 -understatement%1:10:00:: 1 1 -understood%3:00:00:: 1 1 -understood%5:00:00:implicit:00 2 1 -undertake%2:32:00:: 3 2 -undertake%2:32:01:: 4 2 -undertake%2:36:00:: 1 26 -undertake%2:41:01:: 2 2 -undertaker%1:18:00:: 1 1 -undertaking%1:04:00:: 1 1 -underwater%5:00:00:subsurface:00 1 2 -underway%5:00:00:current:00 1 9 -underwear%1:06:00:: 1 1 -underworld%1:14:00:: 2 1 -underworld%1:15:00:: 1 1 -underwrite%2:32:00:: 2 1 -underwrite%2:32:01:: 1 2 -undesirable%3:00:00:: 1 2 -undeveloped%3:00:00:: 1 2 -undifferentiated%3:00:00:: 1 1 -undigested%5:00:00:ununderstood:00 1 1 -undiluted%3:00:00:: 1 1 -undiminished%5:00:00:unmitigated:00 1 3 -undisguised%5:00:00:overt:00 1 1 -undisputed%5:00:00:uncontroversial:00 1 1 -undisturbed%3:00:02:: 1 1 -undo%2:35:00:: 1 3 -undo%2:36:00:: 2 1 -undoing%1:04:00:: 1 1 -undone%5:00:00:unfinished:01 1 1 -undoubtedly%4:02:00:: 1 9 -undress%2:29:00:: 1 2 -undrinkable%3:00:00:: 1 1 -undue%3:00:00:: 1 2 -undue%3:00:02:: 2 1 -undulate%2:38:01:: 1 1 -unduly%4:02:00:: 1 1 -unearned_run%1:04:00:: 1 1 -unearth%2:40:01:: 1 2 -uneasily%4:02:00:: 1 3 -uneasiness%1:12:02:: 1 2 -uneasy%3:00:00:: 1 15 -uneconomical%5:00:00:inefficient:00 1 2 -unemployed%3:00:00:: 1 2 -unemployment%1:26:00:: 1 3 -unemployment_compensation%1:04:00:: 1 1 -unending%5:00:00:permanent:00 1 1 -unendurable%5:00:00:intolerable:00 1 2 -unenthusiastic%3:00:00:: 1 1 -unequally%4:02:02:: 1 2 -unequivocally%4:02:01:: 1 3 -unerring%5:00:00:infallible:00 1 1 -unerringly%4:02:00:: 1 1 -uneven%3:00:00:: 1 4 -uneven%5:00:00:unequal:00 2 1 -unevenly%4:02:00:: 1 1 -unexpected%3:00:00:: 1 7 -unexpected%5:00:00:unsuspected:00 2 1 -unexpectedly%4:02:00:: 2 2 -unexpectedly%4:02:01:: 1 5 -unexplainable%5:00:00:inexplicable:00 1 1 -unexplained%5:00:00:inexplicable:00 2 1 -unexplained%5:00:00:undetermined:00 1 2 -unexplored%5:00:00:unknown:00 1 3 -unfair%3:00:00:: 2 1 -unfair%3:00:04:: 1 2 -unfaithful%3:00:00:: 1 1 -unfaltering%5:00:00:resolute:00 1 1 -unfalteringly%4:02:00:: 1 1 -unfamiliar%3:00:00:: 1 4 -unfasten%2:35:01:: 1 1 -unfastened%3:00:00:: 1 1 -unfavorable%3:00:02:: 1 2 -unfertile%3:00:00:: 1 1 -unfertilized%5:00:00:infertile:00 1 1 -unfettered%5:00:00:unbound:01 1 1 -unfit%3:00:02:: 1 1 -unfitting%5:00:00:incongruous:00 1 3 -unfixed%3:00:00:: 1 1 -unfold%2:30:00:: 1 5 -unfold%2:38:00:: 3 1 -unfold%2:39:00:: 2 1 -unfolding%1:22:00:: 1 1 -unforeseen%5:00:00:unexpected:00 1 1 -unforgettable%3:00:00:: 1 3 -unfortunate%1:18:00:: 1 1 -unfortunate%3:00:00:: 1 7 -unfortunate%3:00:04:: 2 3 -unfortunately%4:02:00:: 1 12 -unfrosted%5:00:00:clear:02 1 1 -unfrozen%3:00:00:: 1 2 -ungainly%5:00:00:awkward:00 1 4 -ungodly%5:00:00:wicked:00 1 2 -ungrateful%3:00:00:: 1 1 -unguided%5:00:00:unled:00 1 1 -unhappiness%1:12:00:: 1 1 -unhappy%3:00:00:: 1 6 -unhappy%3:00:04:: 2 1 -unhealthy%3:00:00:: 1 1 -unheated%5:00:00:cold:01 1 1 -unheeded%5:00:00:unnoticed:00 1 1 -unheeding%3:00:00:: 1 2 -unheeding%5:00:00:deaf:00 2 1 -unhesitatingly%4:02:00:: 1 2 -unhitch%2:35:00:: 1 2 -unholy%3:00:00:: 1 1 -unholy%5:00:00:evil:00 2 1 -unhurried%3:00:00:: 1 1 -unhurriedly%4:02:00:: 1 2 -unhurt%5:00:00:uninjured:00 1 1 -unification%1:11:00:: 1 1 -unified%5:00:00:united:00 1 5 -uniform%1:06:00:: 1 18 -uniform%3:00:00:: 1 4 -uniform%5:00:00:homogeneous:00 2 2 -uniformed%5:00:00:clothed:00 1 3 -uniformity%1:07:01:: 1 2 -uniformly%4:02:00:: 1 3 -unify%2:30:00:: 1 5 -unify%2:35:00:: 2 2 -unilateral%3:00:00:: 1 1 -unimaginable%5:00:00:unthinkable:00 1 1 -unimaginative%5:00:00:uncreative:00 1 1 -unimpaired%3:00:00:: 1 1 -unimpassioned%5:00:00:passionless:00 1 1 -unimpeachable%5:00:00:unquestionable:00 1 1 -unimpeachably%4:02:00:: 1 1 -unimportant%3:00:00:: 1 2 -unimposing%5:00:00:unimpressive:00 1 1 -unimpressed%5:00:00:unaffected:00 1 3 -unimpressive%3:00:00:: 1 1 -unimproved%3:00:00:: 1 1 -uninitiate%1:14:00:: 1 1 -uninitiated%5:00:00:inexperienced:00 1 1 -uninjectable%3:00:00:: 1 1 -unintelligent%3:00:00:: 1 1 -unintended%3:00:00:: 1 1 -unintentionally%4:02:00:: 1 1 -uninterrupted%5:00:00:unbroken:02 1 2 -uninterruptedly%4:02:00:: 1 1 -uninvited%5:00:00:unwelcome:00 1 1 -uninvolved%3:00:00:: 1 1 -union%1:04:02:: 3 1 -union%1:14:01:: 1 27 -union%1:15:00:: 2 2 -union%5:00:00:northern:02 1 4 -union_of_soviet_socialist_republics%1:15:00:: 1 2 -unique%5:00:00:incomparable:00 1 10 -unique%5:00:00:single(a):00 3 10 -unique%5:00:00:specific:00 2 2 -uniquely%4:02:00:: 1 4 -uniqueness%1:07:00:: 1 3 -unit%1:06:00:: 5 5 -unit%1:06:01:: 6 3 -unit%1:09:00:: 4 6 -unit%1:14:00:: 3 9 -unit%1:17:00:: 7 2 -unit%1:23:00:: 1 14 -unit%1:24:00:: 2 13 -unit_cell%1:17:00:: 1 3 -unit_cost%1:21:00:: 1 2 -unitarian%1:18:00:: 1 1 -unite%2:30:00:: 2 7 -unite%2:41:00:: 1 7 -united%3:00:00:: 1 3 -united_kingdom%1:15:00:: 1 2 -united_nations%1:14:00:: 1 4 -united_states%1:14:00:: 2 29 -united_states%1:15:00:: 1 71 -united_states_dollar%1:23:00:: 1 1 -united_states_of_america%1:15:00:: 1 4 -unity%1:07:00:: 3 2 -unity%1:23:00:: 2 3 -unity%1:26:00:: 1 19 -univalent%3:00:02:: 1 1 -universal%5:00:00:comprehensive:00 1 21 -universalistic%3:01:00:: 1 1 -universality%1:07:00:: 1 3 -universalize%2:32:00:: 1 1 -universally%4:02:00:: 1 5 -universe%1:14:00:: 2 2 -universe%1:17:00:: 1 12 -university%1:06:00:: 2 14 -university%1:14:00:: 1 20 -university_student%1:18:00:: 1 1 -unjust%3:00:04:: 1 1 -unkind%3:00:00:: 1 1 -unknown%1:15:00:: 1 5 -unknown%3:00:00:: 1 13 -unknown%5:00:00:anonymous:00 2 2 -unknown%5:00:00:inglorious:00 4 1 -unknown%5:00:00:unsuspected:00 3 1 -unknown_quantity%1:11:00:: 1 1 -unlace%2:35:00:: 1 1 -unlash%2:35:00:: 1 1 -unlawful%5:00:00:irregular:00 1 1 -unleash%2:35:00:: 1 2 -unleash%2:35:01:: 2 1 -unleash%2:35:02:: 3 1 -unleavened_bread%1:13:00:: 1 2 -unlike%3:00:00:: 1 6 -unlikely%3:00:00:: 2 5 -unlikely%3:00:04:: 1 5 -unlimited%3:00:00:: 1 3 -unlined%3:00:00:: 1 2 -unlined%5:00:00:smooth:00 2 1 -unliterary%5:00:00:informal:02 1 1 -unload%2:35:02:: 1 3 -unloaded%3:00:00:: 1 1 -unloading%1:04:00:: 1 2 -unlock%2:30:00:: 3 1 -unlock%2:35:00:: 1 4 -unlock%2:35:01:: 2 1 -unlocked%5:00:00:unfastened:00 1 2 -unlovely%5:00:00:ugly:00 1 1 -unluckily%4:02:00:: 1 1 -unlucky%3:00:00:: 1 1 -unmalicious%3:00:00:: 1 1 -unmanageably%4:02:00:: 1 1 -unmarried%3:00:00:: 1 2 -unmask%2:32:00:: 1 1 -unmated%3:00:00:: 1 1 -unmeritorious%5:00:00:unworthy:00 1 1 -unmistakable%5:00:00:clear:00 1 3 -unmistakably%4:02:00:: 1 2 -unmixed%5:00:00:absolute:00 1 1 -unmolested%5:00:00:untroubled:00 1 8 -unmoved%3:00:00:: 1 2 -unnatural%3:00:00:: 1 4 -unnecessarily%4:02:00:: 1 2 -unnecessary%3:00:00:: 1 5 -unneeded%3:00:00:: 1 1 -unnoticed%3:00:00:: 1 1 -unnoticed%5:00:00:undetected:00 2 1 -unnourished%5:00:00:unsupported:02 1 1 -unnumbered%5:00:00:incalculable:00 1 1 -unobtainable%5:00:00:unavailable:00 1 2 -unobtrusively%4:02:00:: 1 1 -unoccupied%3:00:00:: 1 2 -unofficial%3:00:00:: 1 3 -unopposed%3:00:00:: 1 1 -unorthodox%3:00:00:: 2 1 -unorthodox%5:00:00:unconventional:00 1 2 -unpack%2:35:00:: 1 1 -unpaid%3:00:00:: 1 5 -unpaintable%3:00:00:: 1 1 -unpaired%5:00:00:mismatched:00 1 4 -unparalleled%5:00:00:incomparable:00 1 1 -unpatriotic%3:00:00:: 1 1 -unpaved%3:00:00:: 1 1 -unperformed%5:00:00:unstaged:00 1 1 -unpicturesque%5:00:00:ugly:00 1 1 -unpleasant%3:00:00:: 1 6 -unpleasantly%4:02:00:: 1 1 -unplowed%3:00:00:: 1 1 -unplumbed%5:00:00:deep:01 1 1 -unpopular%3:00:00:: 1 4 -unprecedented%3:00:00:: 1 5 -unpredictability%1:07:02:: 1 1 -unpredictable%3:00:00:: 1 2 -unpredictably%4:02:00:: 1 1 -unpremeditated%5:00:00:unplanned:00 1 1 -unprepared%3:00:00:: 1 2 -unprepared%5:00:00:unequipped:00 2 1 -unpretentious%3:00:00:: 1 1 -unproblematic%5:00:00:easy:01 1 1 -unprocurable%5:00:00:unavailable:00 1 1 -unpromising%5:00:00:inauspicious:00 1 1 -unprotected%3:00:00:: 1 1 -unprotesting%5:00:00:uncomplaining:00 1 1 -unpublished%3:00:00:: 1 1 -unpunished%3:00:00:: 1 1 -unqualified%3:00:02:: 1 2 -unqualifiedly%4:02:00:: 1 1 -unquestionably%4:02:00:: 1 3 -unquestioningly%4:02:00:: 1 1 -unravel%2:35:00:: 1 1 -unready%3:00:00:: 1 1 -unreal%3:00:00:: 1 1 -unrealism%1:09:00:: 1 1 -unrealistic%3:00:00:: 1 2 -unrealistically%4:02:00:: 1 1 -unreality%1:07:00:: 1 1 -unreason%1:26:00:: 1 1 -unreasoning%5:00:00:irrational:00 1 1 -unrecognizable%5:00:00:unidentifiable:00 1 1 -unrecognized%5:00:00:unacknowledged:00 1 1 -unreconstructed%3:00:00:: 1 5 -unredeemed%5:00:00:lost:02 1 1 -unreeling%5:00:00:moving:02 1 1 -unreflective%5:00:00:thoughtless:00 1 1 -unregretting%3:00:00:: 1 1 -unrelated%3:00:02:: 1 2 -unreleased%5:00:00:suppressed:00 1 1 -unreliable%5:00:00:fallible:00 1 2 -unreliable%5:00:00:untrustworthy:00 2 1 -unremarkable%5:00:00:ordinary:00 1 1 -unrequited%5:00:00:nonreciprocal:00 1 1 -unreservedly%4:02:00:: 1 1 -unresponsive%3:00:00:: 1 1 -unrest%1:26:00:: 1 1 -unrestricted%3:00:00:: 1 1 -unrestricted%5:00:00:free:00 2 1 -unrevealing%5:00:00:uncommunicative:00 1 1 -unruly%5:00:00:disorderly:00 1 1 -unsaid%5:00:00:implicit:00 1 1 -unsatisfactory%3:00:00:: 1 6 -unsaturated%3:00:01:: 1 2 -unscathed%5:00:00:uninjured:00 1 1 -unscientific%3:00:00:: 1 2 -unscramble%2:30:00:: 1 1 -unscrew%2:35:00:: 1 2 -unscrew%2:35:01:: 2 1 -unscrupulous%3:00:00:: 1 2 -unseeing%5:00:00:unperceptive:00 1 1 -unseen%5:00:00:invisible:00 1 3 -unseen%5:00:00:undetected:00 2 2 -unselfconscious%5:00:00:unaffected:01 1 1 -unselfconsciousness%1:09:00:: 1 1 -unselfish%3:00:00:: 1 1 -unselfishness%1:07:00:: 1 1 -unservile%3:00:00:: 1 1 -unsettled%3:00:02:: 1 1 -unshakable%5:00:00:resolute:00 1 1 -unsharpened%5:00:00:dull:01 1 1 -unshaved%3:00:00:: 1 1 -unshaven%3:00:00:: 1 1 -unsheathe%2:35:00:: 1 1 -unshielded%5:00:00:unprotected:00 1 1 -unsigned%3:00:00:: 1 1 -unsloped%5:00:00:vertical:00 1 1 -unsmiling%5:00:00:joyless:00 1 2 -unsmilingly%4:02:00:: 1 1 -unsold%3:00:00:: 1 1 -unsolder%2:35:00:: 1 1 -unsolved%3:00:00:: 1 3 -unspeakable%5:00:00:bad:00 2 3 -unspeakable%5:00:00:inexpressible:00 1 6 -unspoken%5:00:00:inarticulate:00 1 1 -unstable%3:00:00:: 1 5 -unstable%5:00:00:reactive:00 2 1 -unstable%5:00:00:uneasy:00 3 1 -unstained%3:00:00:: 1 2 -unstained%5:00:00:unpainted:00 2 1 -unsteadily%4:02:00:: 1 3 -unstilted%5:00:00:unaffected:01 1 1 -unstressed%3:00:00:: 1 4 -unstructured%3:00:00:: 1 12 -unstrung%5:00:00:discomposed:00 1 1 -unsuccessful%3:00:00:: 1 2 -unsuccessful%5:00:00:unfruitful:00 2 2 -unsuitable%5:00:00:unfit:02 1 1 -unsuitably%4:02:00:: 1 1 -unsuited%5:00:00:mismatched:00 1 1 -unsung%5:00:00:inglorious:00 2 1 -unsung%5:00:00:unvoiced:00 1 1 -unsympathetic%3:00:00:: 1 2 -unteach%2:32:00:: 1 1 -untellable%5:00:00:inexpressible:00 1 1 -untenable%5:00:00:unreasonable:00 1 1 -untested%5:00:00:inexperienced:00 1 1 -unthaw%2:30:00:: 1 1 -unthematic%3:01:00:: 1 1 -unthinking%5:00:00:thoughtless:00 1 1 -untie%2:35:00:: 1 3 -untold%5:00:00:much(a):00 1 1 -untouched%5:00:00:full:00 1 1 -untouched%5:00:00:unaffected:00 2 1 -untouched%5:00:00:unmoved(p):00 4 1 -untoward%5:00:00:improper:00 1 1 -untraditional%3:00:00:: 1 1 -untrammeled%5:00:00:unlimited:00 1 1 -untried%5:00:00:inexperienced:00 1 1 -untrue%5:00:00:false:00 1 1 -untruth%1:10:00:: 1 1 -unused%5:00:00:clean:01 1 1 -unusual%3:00:00:: 1 24 -unusual%3:00:02:: 2 1 -unusual%5:00:00:uncommon:00 3 1 -unusually%4:02:00:: 1 3 -unutterably%4:02:00:: 1 1 -unvarying%5:00:00:invariable:00 1 1 -unveil%2:35:00:: 1 1 -unventilated%3:00:00:: 1 1 -unwanted%3:00:00:: 1 2 -unwanted%5:00:00:unwelcome:00 2 1 -unwarranted%5:00:00:inexcusable:00 1 1 -unwavering%5:00:00:resolute:00 1 1 -unwed%5:00:00:unmarried:00 1 1 -unwelcome%3:00:00:: 1 2 -unwilling%3:00:00:: 1 1 -unwillingness%1:07:00:: 1 3 -unwind%2:35:06:: 1 1 -unwire%2:35:00:: 1 2 -unwise%5:00:00:foolish:00 1 2 -unwisely%4:02:00:: 1 1 -unwitting%5:00:00:unintended:00 1 1 -unwittingly%4:02:00:: 1 2 -unwomanly%3:00:00:: 1 1 -unworn%3:00:00:: 1 1 -unworthy%3:00:00:: 1 1 -unwrinkled%3:00:00:: 1 1 -unwritten%3:00:00:: 1 1 -up%2:30:00:: 1 2 -up%3:00:00:: 1 8 -up%4:02:00:: 1 79 -up%5:00:00:ascending(a):00 3 1 -up%5:00:00:awake(p):00 8 5 -up%5:00:00:rising:00 2 1 -up-to-date%5:00:00:current:00 1 3 -up_and_down%4:02:01:: 1 6 -up_and_down%4:02:03:: 2 3 -up_here%4:02:00:: 1 4 -up_in_the_air%5:00:00:uncertain:01 1 1 -up_the_stairs%4:02:00:: 1 6 -up_to%5:00:00:adequate:00 2 2 -up_to%5:00:00:busy:00 1 3 -up_to_now%4:02:00:: 1 2 -upbeat%5:00:00:optimistic:00 1 1 -upcoming%5:00:00:future:00 1 1 -update%2:30:00:: 1 2 -update%2:32:00:: 2 1 -upgrade%2:30:00:: 2 1 -upgrade%2:31:00:: 1 2 -upheaval%1:26:00:: 1 2 -uphold%2:32:00:: 2 5 -uphold%2:32:02:: 3 4 -uphold%2:42:00:: 1 7 -upholster%2:40:00:: 1 1 -upkeep%1:04:00:: 1 2 -upland%3:00:00:: 1 1 -uplift%2:37:00:: 1 1 -uplifted%5:00:00:elated:00 1 1 -uplifting%1:11:00:: 1 2 -upon_one's_guard%5:00:00:wary:00 1 1 -upper%5:00:00:high:01 1 14 -upper%5:00:00:top(a):00 2 18 -upper-level%5:00:00:superior:01 1 1 -upper-lower-class%5:00:00:lower-class:00 1 1 -upper-middle-class%5:00:00:middle-class:00 1 1 -upper_hand%1:07:00:: 1 1 -upper_limit%1:15:00:: 2 1 -upper_limit%1:23:00:: 1 2 -uppercut%1:04:00:: 1 1 -uppermost%5:00:00:top(a):00 1 1 -upraise%2:29:00:: 1 1 -upraised%5:00:00:raised:00 1 2 -upright%5:00:00:erect:00 3 1 -upright%5:00:00:righteous:00 2 1 -upright%5:00:00:vertical:00 1 5 -uprising%1:04:00:: 1 1 -uproar%1:11:00:: 2 1 -uproar%1:26:00:: 1 4 -uproot%2:41:00:: 1 1 -upset%1:04:01:: 2 1 -upset%1:26:00:: 1 1 -upset%2:30:00:: 1 4 -upset%2:37:00:: 3 2 -upset%2:37:01:: 2 2 -upset%5:00:00:disorganized:00 2 1 -upset%5:00:00:troubled:00 1 1 -upset%5:00:00:unexpected:00 3 1 -upshot%1:19:00:: 1 1 -upside-down%5:00:00:turned:00 1 1 -upside_down%4:02:00:: 1 3 -upstairs%3:00:00:: 1 5 -upstairs%4:02:00:: 1 13 -upstate%4:02:00:: 1 1 -upstream%3:00:00:: 1 1 -upstream%4:02:00:: 1 2 -uptake%1:04:00:: 1 5 -uptown%1:15:00:: 1 2 -upward%4:02:00:: 1 6 -upward%5:00:00:ascending(a):00 2 1 -upward%5:00:00:up:00 1 2 -upwards%4:02:00:: 1 3 -uranyl_oxalate%1:27:00:: 1 2 -urban%3:00:00:: 2 2 -urban%3:01:00:: 1 5 -urban_area%1:15:00:: 1 3 -urban_center%1:15:00:: 1 2 -urbanize%2:30:00:: 1 1 -urbanized%5:00:00:urban:00 1 2 -urchin%1:18:00:: 1 1 -urge%1:12:00:: 2 2 -urge%1:16:00:: 1 2 -urge%2:32:00:: 1 36 -urge%2:32:01:: 3 1 -urge%2:32:03:: 2 11 -urgency%1:07:00:: 2 1 -urgency%1:26:00:: 1 2 -urgent%5:00:00:imperative:00 1 6 -urgently%4:02:00:: 1 1 -urging%1:04:00:: 2 1 -urging%1:10:00:: 1 1 -urinary%3:01:00:: 1 1 -urine%1:27:00:: 1 1 -urn%1:06:00:: 1 1 -us%1:15:00:: 1 1 -us_navy%1:14:00:: 1 2 -usable%5:00:00:useful:00 1 3 -usage%1:04:00:: 1 9 -usage%1:04:01:: 2 1 -use%1:04:00:: 1 90 -use%1:04:01:: 5 1 -use%1:04:02:: 6 1 -use%1:07:00:: 2 18 -use%1:07:02:: 3 7 -use%1:22:00:: 4 1 -use%2:34:00:: 3 8 -use%2:34:01:: 1 603 -use%2:34:02:: 2 12 -use%2:41:00:: 4 1 -use_up%2:34:00:: 1 3 -useable%5:00:00:serviceable:00 1 1 -used%3:00:00:: 1 4 -used%5:00:00:old:01 3 1 -used%5:00:02:misused:00 2 1 -used_to%5:00:00:accustomed:00 1 13 -useful%3:00:00:: 1 16 -useful%5:00:00:important:00 2 5 -useful%5:00:00:practical:00 3 2 -usefulness%1:07:00:: 1 5 -useless%3:00:00:: 1 7 -useless%5:00:00:unhelpful:00 2 2 -uselessly%4:02:00:: 1 1 -uselessness%1:07:00:: 1 1 -user%1:18:00:: 1 3 -user%1:18:01:: 2 1 -usher%2:38:00:: 1 2 -usher_in%2:30:00:: 1 1 -ussr%1:15:00:: 1 2 -usual%3:00:00:: 1 29 -usual%5:00:00:familiar:02 2 2 -usually%4:02:00:: 1 96 -usurp%2:40:00:: 1 2 -utah%1:15:00:: 1 2 -utensil%1:06:00:: 1 2 -utilitarian%5:00:00:functional:00 1 1 -utility%1:04:00:: 3 1 -utility%1:07:00:: 2 1 -utility%1:14:00:: 1 6 -utilization%1:04:00:: 1 3 -utilize%2:34:00:: 1 15 -utilize%2:41:00:: 2 3 -utmost%1:07:00:: 1 1 -utmost%5:00:00:high:02 2 1 -utmost%5:00:00:intense:00 1 3 -uto-aztecan%1:10:00:: 1 2 -utopia%1:10:00:: 1 15 -utopia%1:15:00:: 2 2 -utopian%1:18:00:: 1 4 -utopian%3:01:00:: 1 13 -utopianism%1:09:00:: 1 1 -utter%2:32:00:: 3 1 -utter%2:32:01:: 1 6 -utter%2:32:02:: 2 3 -utter%5:00:00:absolute:00 2 1 -utter%5:00:00:unmitigated:00 1 3 -utterance%1:10:00:: 1 1 -utterly%4:02:00:: 1 8 -utterly%4:02:01:: 2 1 -v%1:23:00:: 1 1 -vacancy%1:25:00:: 2 1 -vacancy%1:26:00:: 1 3 -vacant%5:00:01:empty:00 2 1 -vacant%5:00:02:empty:00 1 2 -vacantly%4:02:00:: 1 1 -vacate%2:38:00:: 2 1 -vacate%2:41:00:: 1 2 -vacation%1:28:00:: 1 23 -vacation%2:42:00:: 1 2 -vacationing%1:04:00:: 1 1 -vaccinating%1:04:00:: 1 1 -vaccination%1:04:00:: 1 1 -vaccine%1:06:00:: 1 1 -vacuolated%3:01:00:: 1 1 -vacuolization%1:26:00:: 1 2 -vacuum%1:26:00:: 1 12 -vacuum%2:35:00:: 1 2 -vacuum_cleaner%1:06:00:: 1 1 -vagabond%1:17:00:: 1 1 -vague%3:00:04:: 2 8 -vague%5:00:00:indistinct:00 3 1 -vague%5:00:00:unclear:00 1 18 -vaguely%4:02:00:: 1 14 -vagueness%1:07:00:: 1 1 -vain%5:00:00:proud:00 1 3 -vain%5:00:00:unproductive:00 2 2 -valet%1:18:00:: 1 2 -valiant%5:00:00:brave:00 1 3 -valid%3:00:00:: 1 5 -validate%2:31:00:: 2 2 -validate%2:41:00:: 1 2 -validation%1:04:00:: 1 1 -validity%1:07:00:: 2 1 -validity%1:07:01:: 1 4 -valley%1:17:00:: 1 27 -valor%1:07:00:: 1 7 -valuable%3:00:00:: 1 16 -valuable%5:00:00:important:00 3 2 -valuable%5:00:00:worthy:00 2 5 -valuation%1:09:00:: 1 2 -value%1:07:00:: 2 52 -value%1:07:01:: 4 2 -value%1:09:00:: 1 65 -value%1:21:00:: 3 13 -value%2:31:01:: 3 1 -value%2:31:03:: 1 2 -value%2:40:00:: 2 1 -value-system%1:09:00:: 1 4 -value_orientation%1:09:00:: 1 1 -value_statement%1:10:00:: 1 1 -valued%5:00:00:quantitative:00 1 13 -valued%5:00:00:valuable:00 2 1 -valueless%5:00:00:worthless:00 1 1 -values%1:09:00:: 1 21 -valve%1:06:01:: 2 1 -valve%1:08:00:: 1 2 -van_der_waal's_forces%1:19:00:: 1 1 -vandal%1:18:00:: 1 1 -vandalism%1:04:00:: 1 1 -vanguard%1:14:00:: 1 1 -vanish%2:30:00:: 1 11 -vanish%2:39:00:: 2 6 -vanished%5:00:00:nonexistent:00 1 2 -vanishing%3:44:00:: 1 1 -vanishing_point%1:15:00:: 1 1 -vanity%1:12:00:: 1 4 -vanquish%2:33:00:: 1 1 -vantage_point%1:15:00:: 1 1 -vapor%1:22:00:: 2 1 -vapor%1:27:01:: 1 5 -vapor_pressure%1:19:00:: 1 10 -vaporization%1:04:00:: 1 1 -vaquero%1:18:00:: 1 1 -var.%1:14:00:: 1 1 -variability%1:07:00:: 1 2 -variable%1:09:00:: 2 2 -variable%1:17:00:: 1 4 -variable%3:00:00:: 1 6 -variable%5:00:00:adaptable:00 3 1 -variable%5:00:00:varied:00 2 2 -variable_resistor%1:06:00:: 1 1 -variant%1:11:00:: 1 1 -variant%5:00:00:different:00 1 1 -variation%1:04:00:: 2 9 -variation%1:06:00:: 5 1 -variation%1:09:01:: 4 1 -variation%1:10:00:: 3 2 -variation%1:11:01:: 1 24 -varied%3:00:00:: 1 11 -variegated%5:00:00:varied:00 1 1 -variety%1:07:00:: 2 7 -variety%1:09:00:: 3 5 -variety%1:14:00:: 4 1 -variety%1:14:01:: 1 22 -various%5:00:00:different:00 3 3 -various%5:00:00:individual:00 2 36 -various%5:00:02:different:00 1 46 -various%5:00:02:varied:00 4 2 -variously%4:02:00:: 1 2 -vary%2:30:01:: 1 26 -vary%2:30:04:: 4 5 -vary%2:42:00:: 2 20 -vary%2:42:01:: 3 7 -varying%5:00:00:varied:00 1 6 -vasa_vasorum%1:08:00:: 1 2 -vascular%3:01:00:: 1 3 -vase%1:06:00:: 1 12 -vast%5:00:00:large:00 1 30 -vastly%4:02:00:: 1 6 -vatican%1:06:00:: 1 2 -vaudeville%1:10:00:: 1 4 -vault%1:06:01:: 1 1 -vector%1:09:00:: 1 13 -veer%2:38:00:: 1 8 -vegetable%1:13:00:: 1 5 -vegetable_patch%1:06:00:: 1 1 -vegetation%1:14:00:: 1 2 -vehemence%1:07:01:: 1 1 -vehement%5:00:00:intense:00 1 2 -vehicle%1:06:00:: 1 9 -vehicle%1:10:00:: 2 6 -veil%1:06:00:: 1 2 -veil%2:35:00:: 1 5 -veiled%3:00:00:: 1 3 -vein%1:08:00:: 1 8 -vein%1:10:00:: 2 5 -vein%2:36:00:: 1 1 -veined%5:00:00:patterned:00 1 1 -vellum%1:27:01:: 1 1 -velocity%1:28:00:: 1 21 -velour%1:06:00:: 1 1 -velours%1:06:00:: 1 1 -velvet%1:06:00:: 1 2 -velvety%5:00:00:smooth:00 1 3 -vending%1:04:00:: 1 1 -vending_machine%1:06:00:: 1 4 -vendor%1:18:00:: 1 2 -venerable%5:00:00:honorable:00 2 1 -venerable%5:00:00:old:02 1 1 -venerate%2:37:00:: 1 1 -venetian_blind%1:06:00:: 1 2 -venezuela%1:15:00:: 1 1 -vengeance%1:04:00:: 1 3 -venice%1:15:00:: 1 1 -vent%1:05:00:: 2 1 -vent%1:06:00:: 1 2 -vent%2:32:00:: 1 3 -ventilate%2:30:00:: 1 1 -ventilating_system%1:06:00:: 1 1 -ventilation%1:04:00:: 1 3 -ventilation%1:06:00:: 2 1 -venture%1:04:00:: 1 3 -venture%1:04:01:: 3 1 -venture%1:21:00:: 2 2 -venture%2:32:00:: 2 4 -venture%2:32:01:: 3 2 -venture%2:41:01:: 1 5 -venus%1:17:00:: 1 5 -venus%1:18:00:: 2 1 -veracity%1:07:00:: 1 1 -veranda%1:06:00:: 1 4 -verandah%1:06:00:: 1 1 -verb%1:10:00:: 2 5 -verb%1:10:01:: 1 6 -verbal%3:01:01:: 2 3 -verbal%5:00:00:communicative:00 1 5 -verbena%1:20:00:: 1 3 -verdict%1:04:00:: 1 1 -verge%1:07:00:: 2 1 -verge%1:25:00:: 1 1 -veridical%5:00:00:realistic:00 1 1 -verification%1:09:00:: 1 1 -verify%2:31:01:: 1 7 -verify%2:41:00:: 2 2 -verisimilitude%1:07:00:: 1 1 -veritable%5:00:00:genuine:00 2 1 -veritable%5:00:00:typical:00 1 1 -vermilion%5:00:00:chromatic:00 1 1 -vermont%1:15:00:: 1 3 -vermouth%1:13:00:: 1 1 -vernal%5:00:00:young:00 1 1 -versatile%5:00:00:flexible:02 1 1 -versatility%1:09:00:: 1 1 -verse%1:10:00:: 2 2 -verse%1:10:01:: 3 1 -verse%1:10:02:: 1 2 -version%1:09:01:: 2 7 -version%1:10:01:: 1 7 -version%1:10:02:: 3 1 -vertebral%3:01:00:: 1 2 -vertebral_column%1:08:00:: 1 1 -vertebrate%1:05:00:: 1 1 -vertex%1:09:00:: 1 13 -vertical%3:00:00:: 1 9 -vertigo%1:26:00:: 1 1 -verve%1:07:00:: 1 2 -very%4:02:00:: 1 260 -very%4:02:01:: 2 11 -very%5:00:00:actual:00 3 4 -very%5:00:00:precise:00 1 19 -very%5:00:00:same:02 2 14 -very_loudly%4:02:00:: 1 1 -very_much%4:02:01:: 1 14 -very_much_like%4:02:00:: 1 1 -very_well%4:02:00:: 1 3 -very_well%4:02:01:: 2 2 -vesicular%3:01:00:: 1 1 -vessel%1:06:00:: 2 6 -vessel%1:08:00:: 1 6 -vest%1:06:01:: 1 2 -vest%2:41:00:: 1 3 -vest_pocket%1:06:00:: 1 1 -vestibule%1:06:00:: 1 2 -vestige%1:10:00:: 1 1 -vet%1:18:00:: 1 1 -veteran%1:18:00:: 3 5 -veteran%1:18:01:: 2 5 -veteran%1:18:02:: 1 7 -veteran%5:00:00:experienced:00 1 11 -veterinary%3:01:00:: 1 1 -veto%1:04:00:: 1 2 -veto%2:32:00:: 2 1 -veto%2:41:00:: 1 1 -vex%2:37:00:: 1 1 -vexation%1:12:00:: 1 1 -viability%1:07:00:: 1 1 -viable%5:00:00:possible:00 1 1 -viand%1:13:02:: 1 1 -vibrancy%1:07:00:: 1 1 -vibrant%5:00:00:spirited:00 1 2 -vibrate%2:38:00:: 1 1 -vibrate%2:38:01:: 2 1 -vibration%1:04:00:: 1 1 -vibrionic%3:01:00:: 1 1 -vicar%1:18:00:: 1 1 -vicarious%5:00:00:secondary:01 1 1 -vice%1:07:00:: 1 3 -vice_president%1:18:00:: 1 10 -vice_versa%4:02:00:: 1 2 -vicinity%1:15:00:: 1 4 -vicious%5:00:00:inhumane:00 1 4 -vicious%5:00:00:malevolent:00 3 1 -vicious%5:00:00:wicked:00 2 2 -vicious_circle%1:22:00:: 1 3 -vicious_cycle%1:22:00:: 1 1 -victim%1:18:00:: 1 8 -victim%1:18:01:: 2 4 -victimize%2:41:00:: 2 1 -victimize%2:41:01:: 1 2 -victor%1:18:01:: 1 1 -victorian%3:01:00:: 1 3 -victoriously%4:02:00:: 1 1 -victory%1:11:00:: 1 42 -victrola%1:06:00:: 1 1 -video%1:06:00:: 2 1 -video%1:10:00:: 1 1 -vie%2:33:00:: 1 4 -vienna%1:15:00:: 1 1 -viennese%3:01:00:: 1 1 -vientiane%1:15:00:: 1 6 -viet_nam%1:15:00:: 1 1 -view%1:04:00:: 3 9 -view%1:06:00:: 8 2 -view%1:09:00:: 7 4 -view%1:09:01:: 2 12 -view%1:09:02:: 1 36 -view%1:09:04:: 5 6 -view%1:10:00:: 6 4 -view%1:15:00:: 4 7 -view%2:31:00:: 1 19 -view%2:39:00:: 2 12 -view%2:39:02:: 3 2 -view_as%2:31:00:: 1 13 -viewer%1:18:01:: 1 1 -viewers%1:14:00:: 1 1 -viewpoint%1:09:00:: 1 14 -vigilance%1:09:00:: 1 2 -vigilantism%1:04:00:: 1 1 -vignette%1:10:00:: 1 1 -vigor%1:07:02:: 1 1 -vigorous%5:00:00:energetic:00 1 13 -vigorous%5:00:00:robust:00 2 1 -vigorously%4:02:00:: 1 5 -vile%5:00:00:evil:00 1 1 -vile%5:00:00:inclement:02 2 1 -village%1:14:00:: 1 29 -village%1:15:00:: 2 6 -village%1:15:01:: 3 1 -villager%1:18:00:: 1 2 -villain%1:18:00:: 1 2 -villain%1:18:01:: 2 1 -villainous%5:00:00:wicked:00 1 1 -vindicate%2:32:00:: 1 1 -vindication%1:04:01:: 1 6 -vindictive%5:00:00:malicious:00 2 1 -vindictive%5:00:00:unforgiving:00 1 2 -vine%1:20:00:: 1 7 -vinegar%1:13:00:: 1 1 -vineyard%1:06:00:: 1 1 -vintage%1:13:00:: 1 1 -vinyl%1:27:00:: 1 1 -violate%2:35:00:: 3 1 -violate%2:41:00:: 2 5 -violate%2:42:00:: 1 7 -violation%1:04:00:: 1 6 -violation%1:04:01:: 3 2 -violation%1:04:03:: 4 1 -violation%1:04:04:: 2 2 -violence%1:04:01:: 1 13 -violence%1:07:00:: 2 3 -violence%1:26:00:: 3 2 -violent%3:00:00:: 1 8 -violent%5:00:00:unnatural:00 2 1 -violent%5:00:03:intense:00 3 1 -violently%4:02:00:: 1 5 -violet%1:07:00:: 2 1 -violet%1:20:00:: 1 1 -violin%1:06:00:: 1 3 -violinist%1:18:00:: 1 2 -virgin%1:18:00:: 1 5 -virgin%5:00:00:new:00 1 2 -virgin_islands%1:15:00:: 1 12 -virgin_mary%1:18:00:: 1 2 -virginia%1:15:00:: 1 23 -virginia_creeper%1:20:00:: 1 1 -virginian%1:18:00:: 1 1 -virginity%1:26:00:: 1 1 -virile%5:00:00:masculine:01 2 1 -virile%5:00:00:strong:00 1 1 -virtual%5:00:00:realistic:00 1 1 -virtually%4:02:00:: 1 14 -virtually%4:02:01:: 2 4 -virtually%4:02:02:: 3 4 -virtue%1:07:01:: 1 6 -virtue%1:07:03:: 2 3 -virtuoso%1:18:00:: 1 1 -virtuoso%5:00:00:skilled:00 1 1 -virtuous%5:00:00:righteous:00 1 2 -virulence%1:07:00:: 1 2 -virulent%5:00:00:toxic:00 1 1 -virus%1:05:00:: 1 4 -vis-a-vis%4:02:00:: 1 1 -visage%1:07:00:: 2 1 -visage%1:08:00:: 1 1 -visceral%3:01:00:: 1 1 -visceral_brain%1:08:00:: 1 3 -viscoelastic%5:00:00:elastic:00 1 2 -viscometer%1:06:00:: 1 1 -viscosity%1:07:00:: 1 9 -viselike%5:00:00:tight:01 1 1 -visibility%1:07:00:: 1 1 -visible%3:00:00:: 1 14 -visible%5:00:00:overt:00 2 2 -visible_light%1:19:00:: 1 4 -visibly%4:02:00:: 1 3 -visibly%4:02:01:: 2 1 -vision%1:09:01:: 2 8 -vision%1:09:02:: 3 7 -vision%1:09:03:: 1 13 -vision%1:09:04:: 4 2 -vision%1:11:00:: 5 1 -visit%1:04:01:: 3 4 -visit%1:04:02:: 1 11 -visit%1:14:00:: 2 7 -visit%2:32:00:: 6 1 -visit%2:32:01:: 5 3 -visit%2:38:00:: 2 24 -visit%2:38:01:: 4 6 -visit%2:41:00:: 3 15 -visit%2:41:02:: 1 29 -visiting%5:00:00:impermanent:00 1 1 -visitor%1:18:00:: 1 8 -visored%5:00:00:equipped:00 1 1 -vista%1:09:00:: 1 1 -visual%3:01:04:: 1 27 -visual_space%1:09:00:: 1 1 -visualization%1:09:00:: 1 1 -visualize%2:36:00:: 1 4 -visually%4:02:00:: 1 3 -vital%5:00:00:indispensable:00 1 6 -vitality%1:07:01:: 1 8 -vitality%1:26:00:: 2 1 -vitally%4:02:00:: 1 5 -vitals%1:08:00:: 1 2 -vitamin%1:27:00:: 1 3 -vitamin_c%1:27:00:: 1 1 -vitamin_e%1:27:00:: 1 1 -vivacious%5:00:00:spirited:00 1 2 -vivid%5:00:00:clear:00 2 4 -vivid%5:00:00:realistic:00 1 10 -vividly%4:02:00:: 1 4 -vividness%1:07:01:: 1 1 -vivify%2:29:00:: 1 2 -viyella%1:06:00:: 1 1 -vocabulary%1:09:00:: 2 3 -vocabulary%1:09:01:: 3 1 -vocabulary%1:10:00:: 1 6 -vocal%3:01:00:: 2 1 -vocal%3:01:02:: 1 1 -vocal%5:00:00:communicative:00 4 1 -vocal%5:00:02:voiced:00 3 1 -vocal_cord%1:08:00:: 1 1 -vocalic%3:00:02:: 1 1 -vocalist%1:18:00:: 1 1 -vocalize%2:32:02:: 1 1 -vocation%1:04:00:: 1 2 -vocational%3:01:00:: 1 49 -vocational_program%1:09:00:: 1 6 -vocational_rehabilitation%1:04:00:: 1 3 -vocational_rehabilitation_program%1:09:00:: 1 1 -vocational_school%1:14:00:: 1 4 -vocational_training%1:09:00:: 1 1 -vocationally%4:02:00:: 1 1 -vociferous%5:00:00:noisy:00 1 2 -vociferously%4:02:00:: 1 1 -vogue%1:09:00:: 1 2 -voice%1:04:00:: 5 4 -voice%1:07:00:: 1 78 -voice%1:07:01:: 9 2 -voice%1:10:00:: 2 69 -voice%1:10:01:: 4 5 -voice%1:10:03:: 6 3 -voice%1:11:00:: 3 5 -voice%1:18:00:: 8 2 -voice%1:18:01:: 7 2 -voice%2:32:00:: 1 4 -voiced%3:00:00:: 1 1 -void%5:00:00:invalid:00 1 1 -volatile%3:00:00:: 1 2 -volcanic_eruption%1:11:00:: 1 1 -volcano%1:17:01:: 1 1 -volition%1:09:00:: 1 1 -volley%1:04:00:: 1 9 -volley%1:04:01:: 2 1 -volleyball%1:04:00:: 1 1 -voltage%1:19:01:: 2 2 -voltage%1:19:02:: 1 8 -voltaic%3:01:00:: 1 2 -voltaic_battery%1:06:00:: 1 2 -voltaic_cell%1:06:00:: 1 1 -voltaic_pile%1:06:00:: 1 2 -voltaire%1:18:00:: 1 8 -voltmeter%1:06:00:: 1 1 -volume%1:06:00:: 3 8 -volume%1:07:02:: 6 1 -volume%1:07:03:: 2 11 -volume%1:10:00:: 4 4 -volume%1:23:00:: 1 25 -volume%1:23:01:: 5 2 -volumetric%3:01:00:: 1 1 -volumetrically%4:02:00:: 1 1 -voluminous%5:00:00:large:00 1 3 -voluntarily%4:02:00:: 1 2 -voluntary%3:00:01:: 1 1 -volunteer%1:18:00:: 2 1 -volunteer%1:18:01:: 1 3 -volunteer%2:32:00:: 1 4 -volunteer%2:41:00:: 3 2 -volunteer%2:41:01:: 2 2 -voluptuous%5:00:00:sexy:00 1 3 -vomit%2:29:00:: 1 1 -vomiting%1:04:00:: 1 1 -voodoo%1:06:00:: 1 1 -vote%1:04:00:: 1 13 -vote%1:04:01:: 2 3 -vote%1:07:00:: 3 1 -vote%2:41:10:: 2 10 -vote%2:41:11:: 3 1 -vote%2:41:13:: 1 30 -vote_down%2:41:00:: 1 1 -vote_in%2:41:00:: 1 1 -vote_of_confidence%1:10:00:: 1 1 -voter%1:18:00:: 1 7 -voting%1:04:00:: 1 9 -voting_precinct%1:15:00:: 1 1 -voting_right%1:07:00:: 1 1 -voting_system%1:09:00:: 1 1 -voting_trust%1:21:00:: 1 1 -votive%5:00:00:consecrated:00 1 1 -vouch%2:32:01:: 1 1 -vouchsafe%2:40:00:: 1 1 -vow%2:32:00:: 1 4 -vowel%1:10:00:: 1 3 -vowel_sound%1:10:00:: 1 1 -vowel_system%1:10:00:: 1 3 -voyage%1:04:00:: 2 2 -voyage%1:04:01:: 1 11 -voyager%1:18:00:: 1 1 -vulgar%5:00:00:unrefined:01 1 2 -vulnerability%1:26:00:: 1 3 -vulnerable%3:00:00:: 1 8 -vulpine%3:01:00:: 1 1 -vulture%1:05:00:: 1 4 -wacky%5:00:00:foolish:00 1 1 -wad%2:35:01:: 1 1 -wade%2:38:00:: 1 4 -wads%1:23:00:: 1 1 -wafer%1:27:00:: 1 1 -waffle%1:13:00:: 1 1 -waft%2:38:00:: 1 1 -wag%1:18:00:: 1 1 -wag%2:38:00:: 1 3 -wage%1:21:00:: 1 70 -wage%2:41:00:: 1 9 -wage_setter%1:26:00:: 1 1 -wager%1:04:00:: 1 1 -wages%1:11:00:: 1 2 -waggle%2:38:00:: 1 1 -wagon%1:06:00:: 1 24 -wagon%1:06:02:: 2 1 -wagon_wheel%1:06:00:: 1 1 -wail%1:10:00:: 1 2 -wail%2:29:00:: 2 2 -wail%2:32:00:: 1 7 -wailful%5:00:00:sorrowful:00 1 1 -wailing%1:04:01:: 1 1 -wainscoted%5:00:00:adorned:00 1 1 -waist%1:08:00:: 1 4 -wait%1:04:00:: 2 2 -wait%1:28:00:: 1 2 -wait%2:31:00:: 3 33 -wait%2:41:00:: 4 2 -wait%2:42:00:: 1 100 -wait%2:42:01:: 2 49 -wait_on%2:41:00:: 1 1 -waiter%1:18:00:: 1 4 -waiting%1:04:00:: 1 2 -waiting%5:00:00:ready:00 1 2 -waiting_list%1:10:00:: 1 1 -waitress%1:18:00:: 1 1 -waive%2:41:00:: 1 1 -wake%1:19:00:: 1 4 -wake%2:29:00:: 1 7 -wake%2:29:01:: 2 3 -wake_up%2:29:00:: 2 7 -wake_up%2:29:01:: 1 8 -wakeful%5:00:00:alert:00 1 5 -wakefulness%1:09:00:: 1 4 -waking_up%1:04:00:: 1 1 -walk%1:04:00:: 1 4 -walk%1:04:01:: 2 4 -walk%1:04:02:: 6 1 -walk%1:04:03:: 4 2 -walk%1:06:00:: 5 1 -walk%1:07:00:: 3 3 -walk%2:33:00:: 3 3 -walk%2:33:01:: 5 1 -walk%2:38:00:: 1 184 -walk%2:38:01:: 2 3 -walk%2:38:03:: 4 1 -walk-to%5:00:00:close:01 1 1 -walk-up%1:06:00:: 2 1 -walk-up%1:06:01:: 1 1 -walk_about%2:38:00:: 1 1 -walk_around%2:38:00:: 1 6 -walk_around%2:38:01:: 2 3 -walk_of_life%1:04:00:: 1 1 -walk_off%2:40:00:: 1 1 -walk_on_air%2:37:00:: 1 1 -walk_out%2:38:00:: 2 1 -walk_out%2:41:00:: 1 2 -walk_out_of%2:38:00:: 1 2 -walking%5:00:00:close:01 1 1 -walking_stick%1:06:00:: 1 1 -walkout%1:04:00:: 1 1 -walkover%1:04:01:: 1 1 -wall%1:06:00:: 1 82 -wall%1:08:00:: 3 1 -wall%1:17:00:: 2 15 -wall_plug%1:06:00:: 1 1 -wall_street%1:15:00:: 1 2 -wall_tent%1:06:00:: 1 1 -wall_up%2:35:00:: 1 1 -walled%3:00:00:: 1 2 -wallet%1:06:00:: 1 2 -wallflower%1:20:02:: 1 1 -wallop%2:33:00:: 2 3 -wallop%2:35:00:: 1 3 -walloping%5:00:00:large:00 1 1 -wallow%2:34:01:: 1 3 -wallow%2:38:00:: 2 2 -wallow%2:38:02:: 3 1 -wallpaper%1:27:00:: 1 3 -walnut%1:13:00:: 1 1 -walnut_tree%1:20:00:: 1 1 -walrus%1:05:00:: 1 1 -wan%5:00:00:weak:00 1 1 -wand%1:06:00:: 1 1 -wander%2:38:00:: 1 18 -wander%2:41:00:: 2 1 -wanderer%1:18:00:: 1 1 -wandering%5:00:00:indirect:00 2 2 -wandering%5:00:02:unsettled:01 1 2 -wane%2:30:00:: 2 1 -wane%2:30:02:: 1 2 -wangle%2:41:00:: 1 1 -waning%1:11:00:: 1 1 -want%1:12:00:: 4 1 -want%1:17:00:: 3 1 -want%1:26:00:: 1 3 -want%1:26:01:: 2 1 -want%2:31:01:: 4 2 -want%2:34:00:: 2 15 -want%2:35:00:: 3 3 -want%2:37:00:: 1 389 -war%1:04:00:: 1 78 -war%1:04:02:: 3 1 -war%1:26:00:: 2 27 -war-ridden%5:00:00:unpeaceful:00 1 1 -war_crime%1:04:00:: 1 1 -war_department%1:14:00:: 1 1 -war_god%1:18:00:: 1 1 -warble%2:32:00:: 1 1 -ward%1:06:00:: 3 1 -ward%1:15:00:: 2 2 -ward%1:18:00:: 1 3 -ward-heeler%1:18:00:: 1 2 -wardrobe%1:06:00:: 1 3 -wardrobe%1:06:01:: 2 1 -wardroom%1:06:00:: 1 1 -warehouse%1:06:00:: 1 5 -warehousing%1:04:00:: 1 1 -wares%1:06:00:: 1 1 -warfare%1:04:00:: 1 9 -warfare%1:04:02:: 2 1 -warhorse%1:06:00:: 1 1 -warily%4:02:00:: 1 2 -warlike%5:00:00:unpeaceful:00 1 2 -warm%2:30:00:: 1 2 -warm%2:30:01:: 2 1 -warm%3:00:01:: 1 27 -warm%3:00:02:: 2 8 -warm%3:00:03:: 3 3 -warm%5:00:00:loving:00 4 1 -warm-toned%5:00:00:emotional:00 1 1 -warm-up%1:04:00:: 1 1 -warm_to%2:37:00:: 1 2 -warm_up%2:29:00:: 5 1 -warm_up%2:29:01:: 4 1 -warm_up%2:30:00:: 3 1 -warm_up%2:30:01:: 2 2 -warm_up%2:41:00:: 1 2 -warmed%5:00:00:warm:01 1 1 -warming%5:00:00:warm:01 1 1 -warmly%4:02:00:: 1 1 -warmongering%1:09:00:: 1 1 -warmth%1:07:01:: 3 1 -warmth%1:09:00:: 1 4 -warmth%1:12:00:: 2 1 -warn%2:32:00:: 1 22 -warn%2:32:01:: 2 5 -warning%1:10:00:: 1 13 -warning%1:10:01:: 2 9 -warp%2:30:00:: 2 1 -warp%2:32:00:: 1 2 -warped%5:00:00:crooked:01 1 1 -warrant%1:10:00:: 1 2 -warrant%2:32:00:: 1 12 -warrior%1:18:00:: 1 3 -warsaw%1:15:00:: 1 8 -wart%1:25:00:: 1 1 -wary%3:00:00:: 1 2 -wash%1:04:01:: 2 3 -wash%1:06:02:: 1 6 -wash%1:17:00:: 3 2 -wash%2:29:00:: 2 9 -wash%2:35:00:: 3 7 -wash%2:35:02:: 1 13 -wash%2:38:01:: 4 2 -wash_down%2:30:00:: 2 1 -wash_down%2:34:00:: 1 2 -wash_out%2:35:01:: 2 1 -wash_out%2:41:00:: 1 1 -wash_up%2:29:00:: 1 1 -washbasin%1:06:02:: 1 1 -washbowl%1:06:02:: 1 1 -washed%5:00:00:clean:01 1 2 -washing%1:04:00:: 1 14 -washington%1:14:00:: 3 2 -washington%1:15:00:: 2 3 -washington%1:15:01:: 1 27 -washington%1:18:00:: 4 1 -washup%1:04:00:: 1 1 -waste%1:04:00:: 2 4 -waste%1:07:00:: 3 1 -waste%1:27:00:: 1 5 -waste%2:34:05:: 2 8 -waste%2:40:00:: 1 10 -waste_material%1:27:00:: 1 1 -waste_of_time%1:04:00:: 1 1 -wastebasket%1:06:00:: 1 3 -wasted%5:00:00:lost:01 2 1 -wasted%5:00:00:worthless:00 1 1 -wasteful%5:00:00:inefficient:00 1 2 -wasteland%1:15:00:: 1 2 -wastewater%1:27:00:: 1 2 -wasting_time%1:04:00:: 1 1 -watch%1:04:00:: 3 3 -watch%1:06:00:: 1 9 -watch%1:28:00:: 2 3 -watch%1:28:01:: 4 2 -watch%2:39:00:: 1 77 -watch%2:39:01:: 5 1 -watch%2:39:02:: 4 10 -watch%2:39:05:: 3 24 -watch%2:41:00:: 2 64 -watch_out%2:39:00:: 1 5 -watch_over%2:41:00:: 1 1 -watcher%1:18:02:: 1 1 -watchful%5:00:00:alert:00 1 1 -watchfully%4:02:00:: 1 1 -watching%1:04:00:: 1 2 -watchmaker%1:18:00:: 1 1 -watchman%1:18:00:: 1 1 -water%1:06:00:: 4 2 -water%1:08:03:: 5 1 -water%1:17:00:: 2 41 -water%1:27:00:: 1 136 -water%1:27:02:: 3 2 -water%2:29:00:: 3 2 -water%2:30:00:: 1 3 -water%2:40:00:: 2 2 -water-cooled%5:00:00:cool:01 1 3 -water-skiing%1:04:00:: 1 1 -water-wash%2:35:00:: 1 1 -water_buffalo%1:05:00:: 1 1 -water_development%1:04:00:: 1 1 -water_down%2:30:00:: 1 1 -water_fountain%1:06:00:: 1 1 -water_level%1:07:00:: 1 1 -water_line%1:15:00:: 1 1 -water_main%1:06:00:: 1 1 -water_program%1:04:00:: 1 1 -water_project%1:04:00:: 1 1 -water_right%1:07:00:: 1 1 -water_ski%2:38:00:: 1 1 -water_sport%1:04:00:: 1 1 -water_tower%1:06:00:: 1 1 -water_vapor%1:27:00:: 1 1 -watercolor%1:06:00:: 1 9 -watercolor%1:06:01:: 2 3 -watercolorist%1:18:00:: 1 4 -waterfall%1:17:00:: 1 3 -waterfront%1:15:00:: 1 1 -watering_place%1:15:00:: 1 1 -watermark%1:15:00:: 1 1 -waterproof%5:00:00:tight:02 1 1 -waterproofing%1:04:00:: 1 1 -watershed%1:15:00:: 1 1 -waterway%1:17:00:: 1 1 -watery%5:00:00:tearful:00 3 1 -watery%5:00:01:wet:01 2 1 -watery%5:00:02:wet:01 1 1 -watt%1:23:00:: 1 2 -wattle%1:06:00:: 2 1 -wattle%1:08:00:: 1 1 -wave%1:04:02:: 2 9 -wave%1:08:00:: 6 1 -wave%1:10:01:: 5 1 -wave%1:11:00:: 3 7 -wave%1:11:01:: 1 40 -wave%1:11:02:: 4 2 -wave%2:32:00:: 1 21 -wave%2:35:00:: 2 5 -wave%2:38:00:: 3 4 -wave_off%2:30:00:: 1 1 -wavelength%1:07:00:: 1 25 -wavelength%1:09:00:: 2 1 -waver%2:38:01:: 4 1 -waver%2:38:03:: 3 1 -waver%2:42:00:: 1 2 -waver%2:42:02:: 2 1 -waving%5:00:00:moving:02 1 3 -wavy%5:00:00:curly:00 1 2 -wavy%5:00:00:uneven:00 2 1 -wax%1:27:00:: 1 7 -wax%2:30:00:: 2 1 -wax%2:35:00:: 1 2 -waxed%3:00:00:: 1 1 -waxen%3:01:00:: 1 1 -waxing%1:04:00:: 1 1 -waxlike%5:00:00:colorless:02 1 1 -way%1:04:00:: 5 19 -way%1:04:01:: 2 61 -way%1:04:02:: 7 12 -way%1:06:00:: 6 16 -way%1:07:01:: 1 183 -way%1:07:02:: 9 7 -way%1:09:00:: 10 3 -way%1:09:01:: 11 1 -way%1:15:00:: 3 40 -way%1:23:00:: 8 10 -way%1:26:00:: 4 28 -way%4:02:00:: 1 7 -way_of_life%1:04:00:: 1 11 -way_out%1:06:00:: 1 2 -waylay%2:33:00:: 1 1 -ways%1:06:00:: 2 1 -ways%1:07:00:: 1 2 -ways%4:02:00:: 1 1 -wayside%1:06:00:: 1 1 -wayward%5:00:00:disobedient:00 1 2 -weak%3:00:00:: 1 13 -weak%3:00:04:: 2 3 -weak%5:00:00:diluted:00 3 3 -weak%5:00:00:human:00 5 1 -weak%5:00:00:unstressed:00 4 1 -weak_part%1:07:00:: 1 1 -weak_point%1:07:00:: 1 1 -weaken%2:30:00:: 2 2 -weaken%2:30:01:: 1 6 -weaken%2:30:03:: 4 1 -weaken%2:41:00:: 3 1 -weakened%5:00:00:impaired:00 1 1 -weakening%1:11:00:: 1 1 -weakly%4:02:01:: 1 2 -weakness%1:07:00:: 3 2 -weakness%1:07:01:: 2 2 -weakness%1:26:00:: 1 24 -wealth%1:07:00:: 2 5 -wealth%1:21:00:: 4 1 -wealth%1:21:02:: 3 1 -wealth%1:26:00:: 1 6 -wealthy%5:00:00:rich:00 1 3 -wean%2:34:00:: 1 1 -weaning%1:04:00:: 1 1 -weapon%1:06:00:: 1 29 -weapon%1:10:00:: 2 2 -weapon_system%1:06:00:: 1 4 -weapons_carrier%1:06:00:: 1 1 -weapons_system%1:06:00:: 1 4 -wear%2:29:00:: 1 83 -wear%2:29:02:: 5 2 -wear%2:29:04:: 2 22 -wear%2:30:00:: 4 2 -wear%2:42:00:: 6 1 -wear%2:42:01:: 3 6 -wear_down%2:29:00:: 1 1 -wear_off%2:30:00:: 1 1 -wear_on%2:30:00:: 1 2 -wear_out%2:29:00:: 1 2 -wear_out%2:30:00:: 3 1 -wear_out%2:35:00:: 2 1 -wear_thin%2:30:00:: 1 1 -wearer%1:18:00:: 1 1 -wearied%5:00:00:tired:00 1 1 -wearily%4:02:00:: 1 4 -weariness%1:26:00:: 1 2 -wearisome%5:00:00:uninteresting:00 1 1 -weary%2:29:00:: 1 1 -weary%5:00:00:tired:00 1 11 -wearying%5:00:00:effortful:00 1 1 -weather%1:19:00:: 1 20 -weather%5:00:00:windward:00 1 1 -weather-beaten%5:00:00:tough:02 1 1 -weather_conditions%1:26:00:: 1 1 -weatherstrip%2:30:00:: 1 1 -weave%1:06:00:: 1 2 -weave%2:35:00:: 1 3 -weave%2:36:00:: 2 2 -weave%2:38:01:: 3 1 -web%1:05:01:: 3 1 -web%1:06:00:: 2 1 -web%1:17:00:: 1 1 -wed%2:41:00:: 1 3 -wedding%1:04:00:: 2 1 -wedding%1:11:00:: 1 3 -wedding_ceremony%1:11:00:: 1 1 -wedding_day%1:28:00:: 1 2 -wedding_night%1:28:00:: 1 1 -wedge%1:25:00:: 1 1 -wedge%2:35:01:: 1 1 -wedge-shaped%5:00:00:simple:01 1 1 -wedge_heel%1:06:00:: 1 1 -wednesday%1:28:00:: 1 12 -wee%5:00:00:small:00 1 3 -weed%1:20:00:: 1 3 -weed_out%2:40:00:: 1 2 -weeds%1:06:00:: 1 1 -week%1:28:00:: 1 103 -week%1:28:01:: 2 3 -week%1:28:02:: 3 1 -week_after_week%4:02:00:: 1 1 -week_by_week%4:02:00:: 1 1 -week_from_monday%1:28:00:: 1 1 -weekday%1:28:00:: 1 1 -weekend%1:28:00:: 1 13 -weekly%1:10:00:: 1 2 -weekly%3:01:00:: 1 10 -weep%2:29:00:: 1 20 -weeping%1:04:00:: 1 1 -weeping%5:00:00:sorrowful:00 1 1 -weigh%2:32:00:: 2 4 -weigh%2:42:00:: 3 2 -weigh%2:42:01:: 1 17 -weigh%2:42:03:: 4 1 -weigh_anchor%2:35:00:: 1 1 -weight%1:06:00:: 4 3 -weight%1:06:01:: 2 5 -weight%1:07:00:: 1 26 -weight%1:07:01:: 3 4 -weight%1:12:00:: 5 2 -weight%2:31:00:: 2 1 -weight%2:35:00:: 1 1 -weight_down%2:35:00:: 1 1 -weight_gaining%1:04:00:: 1 1 -weighted%5:00:00:heavy:02 1 1 -weighting%1:23:00:: 1 1 -weightlessness%1:07:00:: 1 2 -weir%1:06:00:: 1 3 -weird%5:00:00:supernatural:00 1 8 -weirdly%4:02:00:: 1 1 -welcome%1:26:00:: 1 1 -welcome%2:32:00:: 2 4 -welcome%2:35:00:: 3 2 -welcome%2:40:00:: 1 15 -welcome%3:00:00:: 1 4 -welcoming%5:00:01:hospitable:02 1 1 -weld%2:30:00:: 2 1 -weld%2:35:00:: 1 1 -welfare%1:04:00:: 1 3 -welfare%1:07:00:: 2 1 -welfare_case%1:18:00:: 1 1 -welfare_state%1:14:00:: 1 2 -well%1:06:00:: 1 8 -well%1:06:03:: 2 1 -well%2:38:00:: 1 3 -well%3:00:01:: 1 4 -well%4:02:00:: 1 76 -well%4:02:03:: 3 16 -well%4:02:05:: 2 30 -well%4:02:07:: 6 4 -well%4:02:08:: 5 4 -well%4:02:11:: 7 2 -well%4:02:14:: 8 1 -well%4:02:15:: 4 6 -well%5:00:00:advisable:00 3 3 -well%5:00:00:fortunate:00 2 3 -well-balanced%5:00:00:balanced:00 1 1 -well-being%1:26:00:: 1 2 -well-bound%5:00:00:bound:02 1 1 -well-chosen%5:00:00:felicitous:00 1 1 -well-defined%5:00:00:distinct:00 1 1 -well-educated%5:00:00:educated:00 1 3 -well-fed%5:00:00:nourished:00 1 2 -well-informed%5:00:00:sophisticated:00 1 3 -well-kept%5:00:00:preserved:01 1 2 -well-kept%5:00:00:tidy:00 2 1 -well-known%5:00:00:familiar:00 2 1 -well-known%5:00:00:known:00 1 6 -well-made%5:00:00:superior:02 1 1 -well-meaning%5:00:00:amicable:00 1 1 -well-nigh%4:02:00:: 1 1 -well-read%5:00:00:informed:00 1 1 -well-rounded%5:00:00:comprehensive:00 1 1 -well-wishing%1:10:00:: 1 1 -well_known%5:00:00:known:00 1 4 -well_up%2:42:00:: 1 3 -weltanschauung%1:09:00:: 1 1 -welter%1:26:00:: 1 2 -wend%2:38:00:: 1 2 -west%1:15:00:: 1 19 -west%1:15:01:: 3 6 -west%1:24:00:: 2 10 -west%3:00:00:: 1 8 -west%4:02:00:: 1 3 -west_berliner%1:18:00:: 1 1 -west_indies%1:15:00:: 1 1 -west_side%1:15:00:: 1 1 -westerly%4:02:00:: 1 1 -westerly%5:00:02:west:00 1 1 -western%1:10:00:: 1 1 -western%3:00:01:: 1 21 -western%3:00:02:: 3 3 -western%5:00:00:west:00 4 1 -western%5:00:02:west:00 2 10 -western_hemisphere%1:15:00:: 1 3 -westerner%1:18:00:: 1 1 -westward%4:02:00:: 1 3 -westwards%4:02:00:: 1 1 -wet%1:26:00:: 1 1 -wet%2:30:00:: 1 4 -wet%3:00:01:: 1 23 -wetness%1:26:00:: 1 1 -wetting%1:04:00:: 1 1 -whack%2:35:00:: 1 2 -whale%1:18:00:: 1 1 -wharf%1:06:00:: 1 1 -what_is_more%4:02:00:: 1 1 -wheat%1:20:00:: 1 1 -wheedle%2:32:00:: 1 1 -wheel%1:06:00:: 1 12 -wheel%1:06:05:: 2 5 -wheel%2:38:00:: 1 7 -wheel%2:38:02:: 3 3 -wheel%2:38:04:: 2 3 -wheelchair%1:06:00:: 1 1 -wheels%1:07:00:: 1 1 -wheeze%1:04:00:: 1 1 -wheeze%2:29:00:: 1 2 -wheezing%5:00:00:unhealthy:00 1 1 -when%4:02:00:: 1 1 -whence%4:02:00:: 1 1 -whereabouts%1:15:00:: 1 3 -wherefore%4:02:00:: 1 2 -whet%2:39:00:: 1 1 -whiff%1:19:00:: 1 1 -whig%1:18:00:: 1 1 -while%1:28:00:: 1 23 -while_away%2:42:00:: 1 1 -whim%1:12:00:: 1 1 -whimper%2:29:00:: 1 1 -whine%2:32:01:: 2 1 -whine%2:38:00:: 1 1 -whining%5:00:00:complaining(a):00 2 3 -whining%5:00:00:noisy:00 1 1 -whinny%2:32:00:: 1 2 -whip%1:06:00:: 1 3 -whip%2:33:00:: 2 4 -whip%2:35:00:: 1 8 -whip%2:35:02:: 4 3 -whip%2:38:00:: 3 3 -whip_hand%1:07:00:: 1 1 -whip_through%2:41:00:: 1 1 -whipping%1:04:00:: 1 1 -whipping%5:00:00:spirited:00 1 1 -whir%1:11:00:: 1 1 -whir%2:39:00:: 1 1 -whirl%1:11:00:: 1 1 -whirl%2:38:00:: 3 1 -whirl%2:38:01:: 1 6 -whirl%2:38:02:: 2 2 -whirl%2:38:04:: 4 1 -whirling%5:00:00:moving:02 1 1 -whirring%1:11:00:: 1 2 -whisk%2:38:00:: 1 1 -whisk_away%2:35:00:: 1 1 -whisk_by%2:38:00:: 1 1 -whiskered%5:00:00:unshaven:00 1 1 -whiskers%1:08:00:: 1 1 -whiskey%1:13:00:: 1 6 -whisky%1:13:00:: 1 19 -whisky_on_the_rocks%1:13:00:: 1 1 -whisper%1:10:00:: 1 6 -whisper%2:32:00:: 1 22 -whistle%2:32:00:: 3 2 -whistle%2:32:01:: 5 1 -whistle%2:38:00:: 2 2 -whistle%2:38:01:: 4 1 -whistle%2:39:00:: 1 3 -whistling%1:04:00:: 2 1 -whistling%1:11:00:: 1 1 -whit%1:23:00:: 1 1 -white%1:07:00:: 2 6 -white%1:18:00:: 1 10 -white%3:00:01:: 1 61 -white%3:00:02:: 2 15 -white-collar%3:00:00:: 1 2 -white_flag%1:06:00:: 1 1 -white_heat%1:07:00:: 1 1 -white_house%1:14:00:: 1 1 -white_man%1:18:00:: 1 4 -white_violet%1:20:00:: 1 1 -whiteface%1:05:00:: 1 2 -whiten%2:30:00:: 1 1 -whiteness%1:07:00:: 1 1 -whitewashed%5:00:00:painted:00 1 1 -whiz%1:18:00:: 1 1 -whiz%2:39:00:: 1 2 -whodunit%1:10:00:: 1 1 -whole%1:06:00:: 2 4 -whole%1:09:00:: 1 8 -whole%3:00:00:: 1 109 -whole%4:02:00:: 1 1 -whole-souled%5:00:00:sincere:00 1 1 -whole-word_method%1:04:00:: 1 1 -whole_lot%1:23:00:: 1 1 -whole_number%1:23:00:: 1 1 -whole_thing%1:06:00:: 1 4 -wholesaler%1:18:00:: 1 1 -wholesome%3:00:00:: 1 2 -wholly%4:02:00:: 1 11 -whoop%2:32:00:: 1 3 -whoop_it_up%2:41:00:: 1 1 -whore%1:18:00:: 1 3 -whorl%1:25:00:: 1 1 -why%4:02:00:: 1 3 -wicked%3:00:00:: 1 2 -wicked%5:00:00:intense:00 3 1 -wicked%5:00:00:unrighteous:00 2 1 -wickedly%4:02:00:: 1 1 -wickedness%1:04:00:: 1 1 -wicker%1:27:00:: 1 2 -wide%3:00:00:: 1 45 -wide%4:02:01:: 1 4 -wide%4:02:03:: 2 1 -wide%5:00:00:comprehensive:00 2 12 -wide%5:00:00:large:00 4 1 -wide%5:00:00:open:08 3 4 -wide-cut%5:00:00:ample:00 1 1 -wide-open%5:00:00:open:01 1 1 -wide-ranging%5:00:00:large:00 1 1 -wide-screen%5:00:00:wide:00 1 1 -wide_screen%1:06:00:: 1 1 -widely%4:02:00:: 1 17 -widely%4:02:01:: 2 2 -widely%4:02:02:: 3 1 -widen%2:30:00:: 1 7 -widen%2:30:03:: 3 1 -widen%2:30:05:: 2 1 -widespread%5:00:00:distributed:00 2 3 -widespread%5:00:00:general:00 1 9 -widow%1:18:00:: 1 4 -widowed%5:00:00:unmarried:00 1 2 -widower%1:18:00:: 1 1 -widowhood%1:28:00:: 1 1 -width%1:07:00:: 1 4 -wield%2:35:00:: 2 2 -wield%2:40:00:: 1 3 -wife%1:18:00:: 1 120 -wifely%3:00:00:: 1 1 -wig%1:06:00:: 1 1 -wiggle%2:38:00:: 1 5 -wigmaker%1:18:00:: 1 2 -wild%3:00:01:: 2 5 -wild%3:00:02:: 1 29 -wild%4:02:02:: 1 1 -wild%5:00:00:intense:00 5 1 -wild%5:00:00:passionate:00 3 5 -wild%5:00:00:uncontrolled:00 6 1 -wild%5:00:01:uncontrolled:00 4 2 -wild-eyed%5:00:00:agitated:00 1 2 -wild_dog%1:05:00:: 1 1 -wild_horse%1:05:00:: 1 1 -wild_man%1:18:00:: 1 1 -wild_pitch%1:04:00:: 1 2 -wildcat%1:05:00:: 3 1 -wildcat%1:06:00:: 1 2 -wildcat%1:18:00:: 2 1 -wildcatter%1:18:00:: 1 1 -wildlife%1:14:00:: 1 3 -wildly%4:02:00:: 1 11 -wildly%4:02:02:: 2 4 -wildness%1:07:02:: 2 1 -wildness%1:12:00:: 1 1 -wile%1:04:00:: 1 1 -wilfully%4:02:00:: 1 1 -will%1:09:00:: 1 11 -will%1:09:01:: 2 9 -will%1:10:00:: 3 6 -will%2:31:00:: 3 2 -will%2:31:01:: 4 2 -will%2:32:00:: 2 3 -will%2:42:00:: 1 3 -willful%5:00:00:voluntary:01 1 1 -william_james%1:18:00:: 1 1 -willing%1:04:00:: 1 1 -willing%3:00:00:: 1 22 -willingness%1:07:00:: 1 8 -willow%1:20:00:: 1 8 -willpower%1:07:00:: 1 1 -willy-nilly%4:02:00:: 1 2 -willy-nilly%4:02:01:: 2 1 -wilsonian%3:01:00:: 1 1 -wilt%2:30:01:: 1 1 -wily%5:00:00:artful:00 1 1 -win%1:11:00:: 1 2 -win%2:33:00:: 1 71 -win%2:33:01:: 3 2 -win%2:40:00:: 2 42 -win_back%2:33:00:: 1 2 -wince%2:29:00:: 2 1 -wince%2:38:00:: 1 2 -wind%1:04:01:: 3 1 -wind%1:19:00:: 1 28 -wind%1:19:01:: 2 1 -wind%2:35:06:: 3 2 -wind%2:38:00:: 1 3 -wind%2:42:00:: 2 2 -wind_up%2:30:01:: 1 11 -wind_up%2:30:02:: 2 4 -wind_up%2:37:00:: 4 1 -wind_up%2:38:00:: 3 1 -windbag%1:18:00:: 1 1 -windblown%5:00:00:crooked:01 1 1 -windbreak%1:06:00:: 1 1 -windfall%1:21:00:: 1 1 -winding%5:00:00:crooked:01 1 1 -winding%5:00:00:indirect:00 2 1 -winding-clothes%1:06:00:: 1 1 -windmill%1:06:01:: 1 1 -window%1:06:00:: 1 72 -window%1:06:01:: 2 6 -window%1:06:02:: 3 3 -window%1:17:00:: 4 1 -window-washing%1:04:00:: 1 1 -window_box%1:06:00:: 1 1 -window_shade%1:06:00:: 1 1 -windowpane%1:06:00:: 1 2 -windowsill%1:06:00:: 1 1 -windshield%1:06:00:: 1 3 -windsor_green%1:27:00:: 1 1 -windy%5:00:00:stormy:00 1 2 -wine%1:07:00:: 2 2 -wine%1:13:00:: 1 9 -wineglass%1:06:00:: 1 1 -wing%1:05:00:: 1 8 -wing%1:06:00:: 2 6 -wing%1:06:03:: 3 5 -wing%1:14:00:: 4 2 -wing%1:14:01:: 5 1 -wing%2:38:00:: 1 5 -wingback%1:18:00:: 1 1 -wingman%1:18:00:: 1 2 -wings%1:04:00:: 1 2 -wink%1:28:00:: 1 1 -wink%2:29:00:: 3 1 -wink%2:29:02:: 1 10 -wink%2:39:00:: 2 3 -winless%5:00:00:unsuccessful:00 1 2 -winner%1:18:00:: 1 2 -winning%1:04:00:: 1 1 -winning%5:00:01:successful:00 2 2 -winning%5:00:02:successful:00 1 3 -winnipeg%1:15:00:: 1 1 -winnow%2:35:05:: 1 1 -winter%1:28:00:: 1 24 -winter%2:42:00:: 1 2 -winter_solstice%1:28:00:: 1 1 -wintertime%1:28:00:: 1 1 -wintry%3:00:00:: 1 1 -wipe%2:30:00:: 2 1 -wipe%2:35:00:: 1 17 -wipe_off%2:35:00:: 1 3 -wipe_out%2:30:00:: 2 1 -wipe_out%2:34:00:: 1 1 -wipe_up%2:35:00:: 1 1 -wiped_out%5:00:00:destroyed:00 1 2 -wire%1:06:00:: 1 15 -wire%1:06:01:: 2 5 -wire%1:10:00:: 4 1 -wire%1:15:00:: 3 1 -wire%2:32:00:: 2 2 -wire%2:35:00:: 3 1 -wire%2:40:00:: 1 3 -wired%3:00:00:: 1 1 -wiry%5:00:00:thin:03 1 4 -wisdom%1:07:00:: 2 3 -wisdom%1:07:01:: 4 1 -wisdom%1:09:01:: 3 2 -wisdom%1:09:02:: 1 5 -wise%1:07:00:: 1 2 -wise%3:00:00:: 1 13 -wise%5:00:00:prudent:00 2 2 -wise_guy%1:18:00:: 1 1 -wise_man%1:18:00:: 1 1 -wise_up%2:31:00:: 1 1 -wisecrack%2:32:00:: 1 2 -wisely%4:02:00:: 1 2 -wisenheimer%1:18:00:: 1 1 -wish%1:10:00:: 2 2 -wish%1:12:00:: 1 6 -wish%2:31:00:: 3 25 -wish%2:32:00:: 7 2 -wish%2:32:01:: 6 2 -wish%2:32:02:: 4 12 -wish%2:37:00:: 1 48 -wish%2:37:01:: 5 5 -wish%2:37:02:: 2 31 -wishful_thinking%1:09:00:: 1 2 -wishing%1:12:00:: 1 1 -wisp%1:14:01:: 1 1 -wit%1:09:00:: 2 3 -wit%1:10:00:: 1 9 -witch%1:18:00:: 1 3 -witch%1:18:01:: 2 2 -witch_doctor%1:18:00:: 1 2 -with_attention%4:02:00:: 1 1 -with_authority%4:02:00:: 1 1 -with_boldness%4:02:00:: 1 1 -with_confidence%4:02:00:: 1 2 -with_great_care%4:02:00:: 1 1 -with_impatience%4:02:00:: 1 1 -with_nostalgia%4:02:00:: 1 1 -with_patience%4:02:00:: 1 1 -with_pride%4:02:00:: 1 1 -with_respect_to%5:00:00:related:02 1 29 -with_sympathy%4:02:00:: 1 1 -with_that%4:02:03:: 1 1 -with_wisdom%4:02:00:: 1 1 -withal%4:02:01:: 1 1 -withdraw%2:30:00:: 6 1 -withdraw%2:32:01:: 5 1 -withdraw%2:35:00:: 3 4 -withdraw%2:38:00:: 1 9 -withdraw%2:40:01:: 4 2 -withdraw%2:41:01:: 2 4 -withdrawal%1:04:00:: 3 1 -withdrawal%1:04:03:: 2 1 -withdrawal%1:10:00:: 1 1 -withe%1:06:00:: 1 1 -wither%2:30:00:: 1 1 -withered%5:00:00:thin:03 1 1 -withering%5:00:00:destructive:00 1 1 -withhold%2:40:00:: 1 8 -withhold%2:40:01:: 2 1 -withholding%1:04:00:: 1 3 -withholding%1:04:01:: 3 1 -withholding%1:21:00:: 2 1 -within%4:02:00:: 1 6 -within_reason%4:02:00:: 1 1 -without_delay%4:02:00:: 1 1 -without_doubt%4:02:01:: 1 1 -without_fear%4:02:01:: 1 1 -withstand%2:42:00:: 1 6 -witness%1:10:00:: 3 2 -witness%1:18:00:: 1 7 -witness%1:18:01:: 2 3 -witness%1:18:02:: 4 1 -witness%2:39:00:: 1 17 -witness%2:39:01:: 2 7 -wittingly%4:02:00:: 1 1 -witty%5:00:00:humorous:00 1 5 -wizard%1:18:01:: 1 2 -wobble%2:38:00:: 1 5 -wobbling%5:00:00:unsteady:00 1 1 -wobbly%5:00:00:unstable:00 1 1 -woe%1:26:00:: 1 3 -woeful%5:00:00:sorrowful:00 1 2 -woefully%4:02:00:: 1 1 -wolf%1:05:00:: 1 1 -wolflike%3:01:00:: 1 1 -woman%1:18:00:: 1 143 -woman%1:18:01:: 2 1 -womb%1:08:00:: 1 1 -womb-to-tomb%5:00:00:long:02 1 1 -won-lost_record%1:10:00:: 1 1 -wonder%1:09:00:: 3 4 -wonder%1:11:00:: 2 4 -wonder%1:12:00:: 1 5 -wonder%2:31:00:: 1 58 -wonder%2:32:01:: 2 41 -wonder%2:32:12:: 3 2 -wonder_drug%1:06:00:: 1 1 -wonderful%5:00:00:extraordinary:00 1 14 -wonderfully%4:02:00:: 1 3 -wonderfulness%1:07:00:: 1 1 -wonderworking%5:00:00:extraordinary:00 1 1 -wondrous%5:00:00:extraordinary:00 1 2 -wondrously%4:02:00:: 1 4 -woo%2:41:00:: 2 1 -woo%2:41:01:: 1 2 -wood%1:14:00:: 2 10 -wood%1:27:00:: 1 14 -woodcarver%1:18:00:: 1 1 -wooded%3:00:00:: 1 1 -wooden%5:00:00:woody:00 1 16 -wooden_leg%1:06:00:: 1 2 -woodenly%4:02:00:: 1 2 -woodgrain%1:07:00:: 1 1 -woodgraining%1:07:00:: 1 1 -woodpecker%1:05:00:: 1 2 -woods%1:14:00:: 1 43 -woodshed%1:06:00:: 1 1 -woodwork%1:06:00:: 1 3 -wool%1:06:00:: 1 3 -woolen%1:06:00:: 1 1 -woolen%3:01:00:: 1 1 -woolgather%2:36:00:: 1 1 -woolly%5:00:00:confused:00 2 1 -woolly%5:00:00:soft:01 1 1 -word%1:10:00:: 1 117 -word%1:10:01:: 6 1 -word%1:10:02:: 3 5 -word%1:10:03:: 2 18 -word%1:10:04:: 5 3 -word%1:10:06:: 4 3 -word%2:32:00:: 1 2 -word_class%1:10:00:: 1 3 -word_of_advice%1:10:00:: 1 1 -word_of_farewell%1:10:00:: 1 1 -word_of_god%1:10:00:: 2 1 -word_of_god%1:11:00:: 1 2 -wording%1:10:00:: 1 1 -wordlessly%4:02:00:: 1 1 -words%1:10:02:: 2 8 -words%1:10:03:: 1 55 -words%1:10:04:: 3 2 -wordsworth%1:18:00:: 1 2 -wordy%5:00:02:prolix:00 1 1 -work%1:04:00:: 1 90 -work%1:04:01:: 3 27 -work%1:06:00:: 2 76 -work%1:06:01:: 6 3 -work%1:09:00:: 4 11 -work%1:19:00:: 5 5 -work%2:29:00:: 7 9 -work%2:30:00:: 10 4 -work%2:32:00:: 16 1 -work%2:35:02:: 5 20 -work%2:36:00:: 6 9 -work%2:36:01:: 13 3 -work%2:36:09:: 15 2 -work%2:38:00:: 8 5 -work%2:38:02:: 12 3 -work%2:41:00:: 2 62 -work%2:41:01:: 14 2 -work%2:41:02:: 1 74 -work%2:41:03:: 3 32 -work%2:41:04:: 9 4 -work%2:41:05:: 11 3 -work%2:41:06:: 4 28 -work-study_program%1:04:00:: 1 1 -work_at%2:41:01:: 1 6 -work_camp%1:06:00:: 1 1 -work_force%1:14:00:: 1 1 -work_in_progress%1:06:00:: 1 1 -work_of_art%1:06:00:: 1 3 -work_on%2:36:00:: 2 5 -work_on%2:41:00:: 1 21 -work_out%2:29:00:: 4 5 -work_out%2:30:00:: 1 16 -work_out%2:30:01:: 3 6 -work_out%2:41:00:: 5 2 -work_out%2:42:00:: 2 8 -work_papers%1:10:00:: 1 1 -work_table%1:06:00:: 1 1 -work_through%2:34:00:: 1 1 -work_up%2:29:00:: 2 1 -work_up%2:30:00:: 1 4 -workable%5:00:00:possible:00 1 4 -workbench%1:06:00:: 1 8 -workboard%1:06:00:: 1 1 -worker%1:05:01:: 3 4 -worker%1:18:00:: 1 29 -worker%1:18:01:: 2 4 -worker_bee%1:05:00:: 1 2 -working%5:00:00:employed:00 1 7 -working%5:00:00:functioning:00 4 1 -working%5:00:00:impermanent:00 3 1 -working%5:00:00:practical:00 2 2 -working%5:00:02:operative:00 5 1 -working-class%5:00:00:lower-class:00 1 1 -working_capital%1:21:00:: 1 2 -working_girl%1:18:00:: 1 1 -workings%1:06:01:: 1 1 -workman%1:18:00:: 1 3 -workmanlike%5:00:00:competent:00 1 1 -workout%1:04:00:: 1 6 -works%1:04:00:: 3 1 -works%1:06:02:: 1 5 -works%1:26:00:: 2 1 -works_program%1:09:00:: 1 1 -worksheet%1:10:00:: 1 1 -workshop%1:04:00:: 2 2 -workshop%1:06:00:: 1 6 -worktable%1:06:00:: 1 1 -workweek%1:28:00:: 1 1 -world%1:09:00:: 4 31 -world%1:09:01:: 8 5 -world%1:14:00:: 1 60 -world%1:14:01:: 3 34 -world%1:14:02:: 6 16 -world%1:17:00:: 5 26 -world%1:17:01:: 2 49 -world%1:17:02:: 7 6 -world%5:00:00:international:00 1 1 -world-shaking%5:00:00:significant:00 1 1 -world-shattering%5:00:00:significant:00 1 1 -world_affairs%1:04:00:: 1 1 -world_council%1:14:00:: 1 1 -world_court%1:14:00:: 1 1 -world_organization%1:14:00:: 1 1 -world_premiere%1:10:00:: 1 1 -world_record%1:04:00:: 1 2 -world_series%1:11:00:: 1 5 -world_war%1:04:00:: 1 2 -world_war_i%1:04:00:: 1 2 -world_war_ii%1:04:00:: 1 2 -worldly%3:00:00:: 1 1 -worldly_belongings%1:21:00:: 1 1 -worldwide%5:00:00:intercontinental:00 1 1 -worm%1:05:00:: 1 3 -worm%1:18:00:: 2 2 -worn%3:00:00:: 1 2 -worn%5:00:00:tired:00 2 2 -worried%5:00:00:troubled:00 1 7 -worriedly%4:02:00:: 1 1 -worriment%1:07:00:: 1 1 -worry%1:09:00:: 1 8 -worry%1:12:00:: 2 6 -worry%2:31:00:: 4 3 -worry%2:37:00:: 1 32 -worry%2:37:01:: 3 9 -worry%2:37:12:: 2 9 -worse%1:07:00:: 1 1 -worse%3:00:00:: 1 15 -worse%4:02:00:: 1 4 -worsen%2:30:00:: 1 1 -worship%1:04:00:: 1 12 -worship%2:37:00:: 1 5 -worship%2:37:01:: 2 2 -worship%2:42:00:: 3 1 -worshiping%3:44:00:: 1 2 -worshipper%1:18:00:: 1 1 -worst%1:11:00:: 1 2 -worst%3:00:00:: 1 9 -worsted%1:06:00:: 1 1 -worth%1:07:00:: 2 4 -worth%1:23:00:: 1 5 -worth%5:00:00:valuable:00 2 8 -worth%5:00:00:worthy:00 1 13 -worthless%3:00:00:: 1 1 -worthlessness%1:07:00:: 1 1 -worthwhile%5:00:00:worthy:00 1 3 -worthy%3:00:00:: 1 13 -worthy%5:00:00:eligible:00 2 1 -would%2:42:00:: 1 10 -would-be%5:00:00:hopeful:00 1 2 -wound%1:11:00:: 2 2 -wound%1:26:00:: 1 22 -wound%2:29:00:: 1 5 -wound_tumor_virus%1:05:00:: 1 1 -wound_up%5:00:00:tense:03 1 1 -wounded%1:14:00:: 1 1 -wounded%5:00:01:injured:00 1 19 -wounded%5:00:02:injured:00 2 1 -woven%3:00:00:: 1 1 -wrack%1:05:01:: 1 1 -wrack%2:35:00:: 1 1 -wraithlike%5:00:00:insubstantial:00 1 2 -wrangle%1:10:01:: 1 2 -wrangle%2:32:00:: 1 3 -wrap%1:06:00:: 1 1 -wrap%2:35:00:: 1 5 -wrap%2:35:01:: 3 1 -wrap%2:35:02:: 2 4 -wrap_up%2:35:00:: 1 1 -wrapped%5:00:00:attentive:00 2 1 -wrapped%5:00:00:covered:00 1 2 -wrapped_up%5:00:00:committed:00 1 1 -wrapper%1:06:01:: 1 1 -wrath%1:12:00:: 1 8 -wrathful%5:00:00:angry:00 1 2 -wrathfully%4:02:00:: 1 1 -wreak%2:36:00:: 1 1 -wreath%1:06:00:: 1 2 -wreathe%2:38:00:: 1 1 -wreathed%5:00:00:adorned:00 1 3 -wreck%1:26:00:: 1 1 -wreck%2:35:00:: 1 10 -wreckage%1:06:00:: 1 1 -wrench%2:35:00:: 1 5 -wrench%2:38:00:: 2 2 -wrenching%5:00:00:painful:00 1 1 -wrestle%2:32:00:: 2 1 -wrestle%2:33:01:: 1 2 -wrestler%1:18:00:: 1 1 -wrestling%1:04:00:: 2 1 -wrestling%1:04:01:: 1 1 -wretch%1:18:00:: 2 1 -wretch%1:18:01:: 1 1 -wretched%5:00:00:inferior:02 1 2 -wretched%5:00:00:uncomfortable:00 2 2 -wretchedness%1:26:00:: 1 1 -wriggle%2:38:00:: 1 2 -wring%2:35:00:: 2 1 -wring%2:35:01:: 1 1 -wrinkle%1:25:00:: 1 4 -wrinkle%2:35:00:: 2 1 -wrinkle%2:35:01:: 1 2 -wrinkled%5:00:00:furrowed:00 1 4 -wrist%1:08:00:: 1 9 -wrist_watch%1:06:00:: 1 1 -writ%1:10:00:: 1 2 -writ_large%5:00:00:obvious:00 1 1 -write%2:32:00:: 2 94 -write%2:32:01:: 5 10 -write%2:32:03:: 8 4 -write%2:32:08:: 4 15 -write%2:36:00:: 1 112 -write%2:36:01:: 7 8 -write%2:36:02:: 3 33 -write%2:36:03:: 9 1 -write%2:36:04:: 6 9 -write_about%2:36:00:: 1 4 -write_down%2:32:01:: 1 4 -write_of%2:36:00:: 1 4 -write_off%2:31:00:: 1 2 -write_off%2:36:00:: 2 1 -write_on%2:36:00:: 1 3 -write_out%2:36:00:: 1 2 -write_up%2:32:02:: 1 1 -writer%1:18:00:: 1 36 -writer%1:18:01:: 2 5 -writhe%2:38:00:: 1 7 -writhed%5:00:00:crooked:01 1 1 -writhing%5:00:00:moving:02 1 2 -writing%1:04:01:: 5 2 -writing%1:04:02:: 1 8 -writing%1:10:00:: 2 6 -writing%1:10:01:: 4 2 -writing%1:10:02:: 3 4 -writing_desk%1:06:01:: 1 1 -writing_paper%1:27:00:: 1 1 -writings%1:10:01:: 1 1 -written%3:00:00:: 1 9 -written_language%1:10:00:: 1 4 -wrong%1:04:00:: 2 2 -wrong%1:07:01:: 1 3 -wrong%2:41:00:: 1 1 -wrong%3:00:01:: 2 12 -wrong%3:00:02:: 1 15 -wrong%4:02:00:: 1 1 -wrong%5:00:00:false:00 5 2 -wrong%5:00:00:inappropriate:00 3 9 -wrong%5:00:00:malfunctioning:00 4 5 -wrongdoing%1:07:00:: 1 1 -wrongly%4:02:00:: 2 1 -wrongly%4:02:03:: 1 1 -wrought_iron%1:27:00:: 1 1 -wry%5:00:00:humorous:00 1 1 -wryly%4:02:00:: 1 2 -wyoming%1:15:00:: 1 3 -x-ray_diffraction%1:19:00:: 1 3 -x-ray_film%1:06:00:: 1 1 -x-ray_machine%1:06:00:: 1 1 -x_ray%1:19:00:: 1 6 -xenon%1:27:00:: 1 1 -xylem%1:20:00:: 1 4 -xylophone%1:06:00:: 1 1 -yacht%1:06:00:: 1 1 -yale%1:06:00:: 1 2 -yank%1:18:02:: 1 7 -yank%2:35:00:: 1 5 -yankee%1:18:02:: 1 5 -yankee%5:00:00:northern:02 1 3 -yap%2:32:00:: 1 1 -yard%1:06:02:: 2 12 -yard%1:15:00:: 3 1 -yard%1:23:00:: 1 34 -yardage%1:07:00:: 1 2 -yarder%1:07:00:: 1 1 -yardstick%1:10:00:: 1 1 -yawn%1:04:00:: 1 1 -yawn%2:29:00:: 1 3 -yawning%5:00:00:open:02 1 1 -yaws%1:26:00:: 1 1 -year%1:14:00:: 4 1 -year%1:28:00:: 3 5 -year%1:28:01:: 1 426 -year%1:28:02:: 2 18 -year-end%1:28:00:: 1 1 -year-round%3:00:00:: 1 1 -yearly%3:01:00:: 1 2 -yearn%2:37:00:: 1 4 -yearning%1:12:00:: 1 5 -yearningly%4:02:00:: 1 1 -years%1:28:00:: 1 19 -years%1:28:01:: 2 6 -yell%1:10:00:: 1 7 -yell%1:10:01:: 2 4 -yell%2:32:00:: 2 6 -yell%2:32:01:: 1 18 -yelled%5:00:00:loud:00 1 1 -yelling%1:10:00:: 1 1 -yelling%5:00:00:noisy:00 1 2 -yellow%1:07:00:: 1 8 -yellow%2:30:00:: 1 2 -yellow%5:00:00:chromatic:00 1 26 -yellow%5:00:00:cowardly:00 2 2 -yellow%5:00:00:old:01 3 1 -yellow-brown%5:00:00:chromatic:00 1 1 -yellow-green%5:00:00:chromatic:00 1 2 -yellow_ochre%1:27:00:: 1 1 -yellow_pine%1:20:00:: 1 1 -yellowish_brown%1:07:00:: 1 1 -yelp%1:11:00:: 1 1 -yelp%2:32:00:: 1 3 -yelping%1:11:00:: 1 1 -yen%1:12:00:: 1 1 -yes%1:10:00:: 1 15 -yesterday%1:28:01:: 1 16 -yesterday%4:02:00:: 1 10 -yesteryear%1:28:00:: 1 1 -yet%4:02:02:: 1 22 -yet%4:02:03:: 3 6 -yet%4:02:04:: 2 15 -yield%1:04:00:: 1 4 -yield%1:06:00:: 3 1 -yield%1:21:00:: 2 1 -yield%2:30:00:: 2 5 -yield%2:32:01:: 8 1 -yield%2:36:00:: 3 4 -yield%2:36:01:: 7 1 -yield%2:38:00:: 6 1 -yield%2:40:01:: 4 3 -yield%2:40:02:: 1 6 -yield%2:42:00:: 5 2 -yield_up%2:40:00:: 1 1 -yielding%5:00:00:docile:00 1 3 -yoga%1:09:00:: 1 1 -yoke%1:06:01:: 1 1 -yokel%1:18:00:: 1 2 -yokel-like%5:00:00:stupid:00 1 1 -yokuts%1:10:00:: 1 8 -yonder%5:00:00:distant:01 1 1 -you_bet%4:02:00:: 1 3 -young%1:05:00:: 1 7 -young%3:00:00:: 1 107 -young%5:00:00:early:02 2 1 -young_girl%1:18:00:: 1 4 -young_lady%1:18:00:: 1 1 -young_man%1:18:00:: 1 14 -young_man%1:18:01:: 2 3 -young_woman%1:18:00:: 1 4 -younger%3:00:00:: 1 3 -younger%5:00:00:junior:00 2 3 -youngish%5:00:00:young:00 1 1 -youngster%1:18:00:: 1 4 -youth%1:07:00:: 6 1 -youth%1:14:00:: 2 10 -youth%1:18:00:: 1 323 -youth%1:26:00:: 4 2 -youth%1:28:00:: 3 5 -youth%1:28:01:: 5 1 -youthful%5:00:00:young:00 1 10 -yr%1:28:00:: 1 6 -yucca%1:20:00:: 1 1 -yugoslavia%1:15:00:: 1 1 -zeal%1:12:01:: 1 2 -zeal%1:12:02:: 2 2 -zenith%1:15:01:: 1 1 -zero%1:23:01:: 2 3 -zero%1:23:02:: 1 6 -zero%5:00:00:cardinal:00 1 5 -zero%5:00:00:no(a):00 3 1 -zero%5:00:02:ordinal:00 2 1 -zero_in%2:33:12:: 1 1 -zest%1:12:00:: 1 1 -zigzag%2:38:00:: 1 2 -zinc%1:27:00:: 1 6 -zinc_cadmium_sulfide%1:27:00:: 1 1 -zionism%1:10:00:: 1 1 -zionist%1:18:00:: 1 1 -zip%2:35:00:: 1 1 -zloty%1:23:00:: 1 1 -zodiacal%3:01:00:: 1 1 -zodiacal_light%1:19:00:: 1 2 -zombie%1:18:00:: 1 1 -zone%1:15:00:: 1 1 -zoning%1:04:00:: 1 1 -zoo%1:06:00:: 1 2 -zoom%2:38:00:: 1 2 diff --git a/corpora/en/wordnet/dict/data.adj b/corpora/en/wordnet/dict/data.adj deleted file mode 100644 index 62eafc5a6..000000000 --- a/corpora/en/wordnet/dict/data.adj +++ /dev/null @@ -1,18185 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -00001740 00 a 01 able 0 005 = 05200169 n 0000 = 05616246 n 0000 + 05616246 n 0101 + 05200169 n 0101 ! 00002098 a 0101 | (usually followed by `to') having the necessary means or skill or know-how or authority to do something; "able to swim"; "she was able to program her computer"; "we were at last able to buy a car"; "able to get a grant for the project" -00002098 00 a 01 unable 0 002 = 05200169 n 0000 ! 00001740 a 0101 | (usually followed by `to') not having the necessary means or skill or know-how; "unable to get to town without a car"; "unable to obtain funds" -00002312 00 a 02 abaxial 0 dorsal 4 002 ;c 06037666 n 0000 ! 00002527 a 0101 | facing away from the axis of an organ or organism; "the abaxial surface of a leaf is the underside or side facing away from the stem" -00002527 00 a 02 adaxial 0 ventral 4 002 ;c 06037666 n 0000 ! 00002312 a 0101 | nearest to or facing toward the axis of an organ or organism; "the upper side of a leaf is known as the adaxial surface" -00002730 00 a 01 acroscopic 0 002 ;c 06066555 n 0000 ! 00002843 a 0101 | facing or on the side toward the apex -00002843 00 a 01 basiscopic 0 002 ;c 06066555 n 0000 ! 00002730 a 0101 | facing or on the side toward the base -00002956 00 a 02 abducent 0 abducting 0 002 ;c 06080522 n 0000 ! 00003131 a 0101 | especially of muscles; drawing away from the midline of the body or from an adjacent part -00003131 00 a 03 adducent 0 adductive 0 adducting 0 003 ;c 06080522 n 0000 + 01449236 v 0201 ! 00002956 a 0101 | especially of muscles; bringing together or drawing toward the midline of the body or toward an adjacent part -00003356 00 a 01 nascent 0 005 + 07320302 n 0103 ! 00003939 a 0101 & 00003553 a 0000 & 00003700 a 0000 & 00003829 a 0000 | being born or beginning; "the nascent chicks"; "a nascent insurgency" -00003553 00 s 02 emergent 0 emerging 0 003 & 00003356 a 0000 + 02625016 v 0102 + 00050693 n 0101 | coming into existence; "an emergent republic" -00003700 00 s 01 dissilient 0 002 & 00003356 a 0000 + 07434782 n 0101 | bursting open with force, as do some ripe seed vessels -00003829 00 s 01 parturient 0 002 & 00003356 a 0000 + 14048441 n 0101 | giving birth; "a parturient heifer" -00003939 00 a 01 dying 0 003 ! 00003356 a 0101 & 00004171 a 0000 & 00004296 a 0000 | in or associated with the process of passing from life or ceasing to be; "a dying man"; "his dying wish"; "a dying fire"; "a dying civilization" -00004171 00 s 01 moribund 0 001 & 00003939 a 0000 | being on the point of death; breathing your last; "a moribund patient" -00004296 00 s 01 last 0 001 & 00003939 a 0000 | occurring at the time of death; "his last words"; "the last rites" -00004413 00 a 01 abridged 0 005 ^ 01442186 a 0000 ! 00004980 a 0101 & 00004615 a 0000 & 00004723 a 0000 & 00004817 a 0000 | (used of texts) shortened by condensing or rewriting; "an abridged version" -00004615 00 s 02 cut 0 shortened 0 001 & 00004413 a 0000 | with parts removed; "the drastically cut film" -00004723 00 s 01 half-length 0 001 & 00004413 a 0000 | abridged to half its original length -00004817 00 s 01 potted 0 003 & 00004413 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) summarized or abridged; "a potted version of a novel" -00004980 00 a 01 unabridged 0 002 ! 00004413 a 0101 & 00005107 a 0000 | (used of texts) not shortened; "an unabridged novel" -00005107 00 s 02 full-length 0 uncut 0 001 & 00004980 a 0000 | complete; "the full-length play" -00005205 00 a 01 absolute 0 007 + 05854474 n 0101 + 04738398 n 0101 ! 00006032 a 0101 & 00005473 a 0000 & 00005599 a 0000 & 00005718 a 0000 & 00005839 a 0000 | perfect or complete or pure; "absolute loyalty"; "absolute silence"; "absolute truth"; "absolute alcohol" -00005473 00 s 01 direct 0 001 & 00005205 a 0000 | lacking compromising or mitigating elements; exact; "the direct opposite" -00005599 00 s 02 implicit 0 unquestioning 0 001 & 00005205 a 0000 | being without doubt or reserve; "implicit trust" -00005718 00 s 01 infinite 0 002 & 00005205 a 0000 + 05209324 n 0101 | total and all-embracing; "God's infinite wisdom" -00005839 00 s 01 living 0 002 & 00005205 a 0000 ;u 06321054 n 0000 | (informal) absolute; "she is a living doll"; "scared the living daylights out of them"; "beat the living hell out of him" -00006032 00 a 02 relative 0 comparative 0 005 + 00653620 v 0201 + 00652900 v 0201 + 05212609 n 0101 ! 00005205 a 0101 & 00006245 a 0000 | estimated by comparison; not absolute or complete; "a relative stranger" -00006245 00 s 01 relational 0 001 & 00006032 a 0000 | having a relation or being related -00006336 00 a 02 absorbent 0 absorptive 0 015 = 04940964 n 0000 + 02765464 v 0201 + 01539633 v 0201 + 05010062 n 0201 + 04940964 n 0101 + 02765464 v 0101 + 01539633 v 0101 ! 00007813 a 0101 & 00006777 a 0000 & 00006885 a 0000 & 00007096 a 0000 & 00007208 a 0000 & 00007331 a 0000 & 00007516 a 0000 & 00007697 a 0000 | having power or capacity or tendency to absorb or soak up something (liquids or energy etc.); "as absorbent as a sponge" -00006777 00 s 02 absorbefacient 0 sorbefacient 0 001 & 00006336 a 0000 | inducing or promoting absorption -00006885 00 s 03 assimilating 0 assimilative 0 assimilatory 0 003 & 00006336 a 0000 + 01540042 v 0301 + 01540042 v 0201 | capable of taking (gas, light, or liquids) into a solution; "an assimilative substance -00007096 00 s 01 hygroscopic 0 002 & 00006336 a 0000 + 03554645 n 0101 | absorbing moisture (as from the air) -00007208 00 s 01 receptive 0 001 & 00006336 a 0000 | able to absorb liquid (not repellent); "the paper is ink-receptive" -00007331 00 s 01 shock-absorbent 0 001 & 00006336 a 0000 | having the capacity to absorb the energy of an impact; "the material absorbs shock and is used for shock-absorbent insoles" -00007516 00 s 02 spongy 0 spongelike 0 003 & 00006336 a 0000 + 14597758 n 0101 + 04940379 n 0101 | like a sponge in being able to absorb liquids and yield it back when compressed -00007697 00 s 01 thirsty 0 001 & 00006336 a 0000 | able to take in large quantities of moisture; "thirsty towels" -00007813 00 a 02 nonabsorbent 0 nonabsorptive 0 004 = 04940964 n 0000 + 04942738 n 0101 ! 00006336 a 0101 & 00007990 a 0000 | not capable of absorbing or soaking up (liquids) -00007990 00 s 02 repellent 0 resistant 0 003 & 00007813 a 0000 + 01115916 v 0201 + 05196054 n 0101 | incapable of absorbing or mixing with; "a water-repellent fabric"; "plastic highly resistant to steam and water" -00008206 00 a 03 adsorbent 0 adsorptive 0 surface-assimilative 0 005 + 01540232 v 0201 + 14598525 n 0101 + 01540232 v 0101 ! 00008595 a 0101 & 00008443 a 0000 | having capacity or tendency to adsorb or cause to accumulate on a surface -00008443 00 s 02 chemisorptive 0 chemosorptive 0 001 & 00008206 a 0000 | having the capacity to adsorb by chemical as contrasted with physical forces -00008595 00 a 02 nonadsorbent 0 nonadsorptive 0 001 ! 00008206 a 0101 | lacking a capacity to adsorb or cause to accumulate on a surface -00008734 00 a 01 absorbable 0 002 + 02765464 v 0101 ! 00008877 a 0101 | capable of being absorbed or taken in through the pores of a surface -00008877 00 a 02 adsorbable 0 adsorbate 0 003 + 14598704 n 0201 + 01540232 v 0101 ! 00008734 a 0101 | capable of being adsorbed or accumulated on a surface of a solid -00009046 00 a 01 abstemious 0 006 ^ 01299888 a 0000 = 04883942 n 0000 + 04883942 n 0101 ! 00009978 a 0101 & 00009346 a 0000 & 00009618 a 0000 | sparing in consumption of especially food and drink; "the pleasures of the table, never of much consequence to one naturally abstemious"- John Galsworthy -00009346 00 s 02 abstinent 0 abstentious 0 006 & 00009046 a 0000 + 04882622 n 0202 + 09757944 n 0102 + 04882622 n 0101 + 01068773 n 0101 + 01196037 v 0101 | self-restraining; not indulging an appetite especially for food or drink; "not totally abstinent but abstemious" -00009618 00 s 04 ascetic 0 ascetical 0 austere 0 spartan 0 004 & 00009046 a 0000 + 04881998 n 0301 + 09758173 n 0202 + 09758173 n 0102 | practicing great self-denial; "Be systematically ascetic...do...something for no other reason than that you would rather not do it"- William James; "a desert nomad's austere life"; "a spartan diet"; "a spartan existence" -00009978 00 a 01 gluttonous 0 010 ^ 01297315 a 0000 = 04886101 n 0000 + 10132988 n 0101 ! 00009046 a 0101 & 00010385 a 0000 & 00010537 a 0000 & 00010726 a 0000 & 00011160 a 0000 & 00011327 a 0000 & 00011665 a 0000 | given to excess in consumption of especially food or drink; "over-fed women and their gluttonous husbands"; "a gluttonous debauch"; "a gluttonous appetite for food and praise and pleasure" -00010385 00 s 01 crapulous 1 002 & 00009978 a 0000 + 00748515 n 0105 | given to gross intemperance in eating or drinking; "a crapulous old reprobate" -00010537 00 s 02 crapulent 0 crapulous 2 003 & 00009978 a 0000 + 00748515 n 0205 + 00748515 n 0105 | suffering from excessive eating or drinking; "crapulent sleep"; "a crapulous stomach" -00010726 00 s 07 edacious 0 esurient 0 rapacious 0 ravening 0 ravenous 0 voracious 0 wolfish 0 011 & 00009978 a 0000 + 14040071 n 0605 + 04886402 n 0606 + 14040071 n 0604 + 04886402 n 0605 + 14040071 n 0503 + 04886402 n 0303 + 04886402 n 0304 + 04886402 n 0202 + 14040071 n 0101 + 04886402 n 0101 | devouring or craving food in great quantities; "edacious vultures"; "a rapacious appetite"; "ravenous as wolves"; "voracious sharks" -00011160 00 s 01 greedy 0 002 & 00009978 a 0000 + 04886235 n 0101 | wanting to eat or drink more than one can reasonably consume; "don't be greedy with the cookies" -00011327 00 s 05 hoggish 0 piggish 0 piggy 0 porcine 0 swinish 0 005 & 00009978 a 0000 + 02395694 n 0302 + 10179649 n 0302 + 04886235 n 0203 + 04886235 n 0102 | resembling swine; coarsely gluttonous or greedy; "piggish table manners"; "the piggy fat-cheeked little boy and his porcine pot-bellied father"; "swinish slavering over food" -00011665 00 s 02 overgreedy 0 too-greedy 0 001 & 00009978 a 0000 | excessively gluttonous -00011757 00 a 01 abstract 0 010 ^ 02391867 a 0000 ^ 01980250 a 0000 = 04762134 n 0000 + 05854150 n 0102 + 04762134 n 0101 ! 00013160 a 0101 & 00012071 a 0000 & 00012362 a 0000 & 00012689 a 0000 & 00012932 a 0000 | existing only in the mind; separated from embodiment; "abstract words like `truth' and `justice'" -00012071 00 s 03 conceptional 0 ideational 0 notional 0 004 & 00011757 a 0000 + 05836598 n 0301 + 05784699 n 0201 + 05835747 n 0102 | being of the nature of a notion or concept; "a plan abstract and conceptional"; "to improve notional comprehension"; "a notional response to the question" -00012362 00 s 01 conceptual 0 004 & 00011757 a 0000 + 01633343 v 0103 + 05835747 n 0101 + 05836275 n 0103 | being or characterized by concepts or their formation; "conceptual discussions"; "the schizophrenic loses ability to abstract or do conceptual thinking"; "sex is a notional category, gender is a grammatical category" -00012689 00 s 01 ideal 0 003 & 00011757 a 0000 + 05833840 n 0101 + 04855524 n 0101 | constituting or existing only in the form of an idea or mental image or conception; "a poem or essay may be typical of its period in idea or ideal content" -00012932 00 s 02 ideological 0 ideologic 0 003 & 00011757 a 0000 + 05779568 n 0201 + 05779568 n 0101 | concerned with or suggestive of ideas; "ideological application of a theory"; "the drama's symbolism was very ideological" -00013160 00 a 01 concrete 0 008 ^ 02391455 a 0000 ^ 01834304 a 0000 ^ 01932973 a 0000 = 04759849 n 0000 + 04759849 n 0101 ! 00011757 a 0101 & 00013442 a 0000 & 00013662 a 0000 | capable of being perceived by the senses; not abstract or imaginary; "concrete objects such as trees" -00013442 00 s 01 objective 0 001 & 00013160 a 0000 | belonging to immediate experience of actual things or events; "objective benefits"; "an objective example"; "there is no objective evidence of anything of the kind" -00013662 00 s 02 real 0 tangible 0 003 & 00013160 a 0000 + 04760024 n 0202 + 13956097 n 0101 | capable of being treated as fact; "tangible evidence"; "his brief time as Prime Minister brought few real benefits to the poor" -00013887 00 a 01 abundant 0 021 ^ 00105746 a 0000 ^ 02021905 a 0000 = 05108740 n 0000 + 02715279 v 0101 + 05115040 n 0101 ! 00016756 a 0101 & 00014358 a 0000 & 00014490 a 0000 & 00014858 a 0000 & 00015097 a 0000 & 00015247 a 0000 & 00015480 a 0000 & 00015589 a 0000 & 00015720 a 0000 & 00015854 a 0000 & 00016005 a 0000 & 00016135 a 0000 & 00016247 a 0000 & 00016350 a 0000 & 00016532 a 0000 & 00016647 a 0000 | present in great quantity; "an abundant supply of water" -00014358 00 s 02 abounding 0 galore(ip) 0 001 & 00013887 a 0000 | existing in abundance; "abounding confidence"; "whiskey galore" -00014490 00 s 05 ample 0 copious 1 plenteous 0 plentiful 1 rich 0 008 & 00013887 a 0000 + 05115804 n 0503 + 05115568 n 0402 + 13774404 n 0312 + 05115568 n 0301 + 05115568 n 0303 + 05115040 n 0202 + 05112910 n 0101 | affording an abundant supply; "had ample food for the party"; "copious provisions"; "food is plentiful"; "a plenteous grape harvest"; "a rich supply" -00014858 00 s 02 copious 2 voluminous 0 004 & 00013887 a 0000 + 05106024 n 0203 + 05106024 n 0202 + 05115040 n 0102 | large in number or quantity (especially of discourse); "she took copious notes"; "a subject of voluminous legislation" -00015097 00 s 01 easy 0 002 & 00013887 a 0000 ;c 06149484 n 0000 | obtained with little effort or sacrifice, often obtained illegally; "easy money" -00015247 00 s 05 exuberant 0 lush 0 luxuriant 0 profuse 0 riotous 0 005 & 00013887 a 0000 + 05115804 n 0402 + 00310812 v 0301 + 05116243 n 0301 + 05116243 n 0202 | produced or growing in extreme abundance; "their riotous blooming" -00015480 00 s 01 thick 0 001 & 00013887 a 0000 | abounding; having a lot of; "the top was thick with dust" -00015589 00 s 01 long 0 001 & 00013887 a 0000 | having or being more than normal or necessary:"long on brains"; "in long supply" -00015720 00 s 03 overabundant 0 plethoric 0 rife 0 003 & 00013887 a 0000 + 05120116 n 0202 + 05119367 n 0101 | excessively abundant -00015854 00 s 01 plentiful 2 002 & 00013887 a 0000 + 05115568 n 0102 | existing in great number or quantity; "rhinoceroses were once plentiful here" -00016005 00 s 01 rampant 0 001 & 00013887 a 0000 | (of a plant) having a lush and unchecked growth; "a rampant growth of weeds" -00016135 00 s 01 rank 0 002 & 00013887 a 0000 + 05147586 n 0102 | growing profusely; "rank jungle vegetation" -00016247 00 s 01 superabundant 0 002 & 00013887 a 0000 + 05119367 n 0104 | most excessively abundant -00016350 00 s 01 teeming 0 002 & 00013887 a 0000 + 05115040 n 0103 | abundantly filled with especially living things; "the Third World's teeming millions"; "the teeming boulevard" -00016532 00 s 01 torrential 0 002 & 00013887 a 0000 + 11502102 n 0105 | pouring in abundance; "torrential rains" -00016647 00 s 01 verdant 0 002 & 00013887 a 0000 + 05116590 n 0102 | characterized by abundance of verdure -00016756 00 a 01 scarce 0 007 ^ 00106456 a 0000 = 05108740 n 0000 + 05116953 n 0102 + 05116953 n 0101 ! 00013887 a 0101 & 00017024 a 0000 & 00017186 a 0000 | deficient in quantity or number compared with the demand; "fresh vegetables were scarce during the drought" -00017024 00 s 01 rare 0 003 & 00016756 a 0000 + 05117237 n 0102 + 05117237 n 0101 | not widely distributed; "rare herbs"; "rare patches of green in the desert" -00017186 00 s 01 tight 0 003 & 00016756 a 0000 ;c 06149484 n 0000 + 14450540 n 0102 | affected by scarcity and expensive to borrow; "tight money"; "a tight market" -00017352 00 a 04 abused 1 ill-treated 0 maltreated 0 mistreated 0 002 ! 00017688 a 0101 & 00017509 a 0000 | subjected to cruel treatment; "an abused wife" -00017509 00 s 01 battered 0 001 & 00017352 a 0000 | exhibiting symptoms resulting from repeated physical and emotional injury; "a battered child"; "the battered woman syndrome" -00017688 00 a 01 unabused 1 001 ! 00017352 a 0101 | not physically abused; treated properly -00017782 00 a 01 acceptable 0 007 ^ 02080577 a 0000 + 04792679 n 0101 + 04792679 n 0102 ! 00018584 a 0101 & 00018069 a 0000 & 00018222 a 0000 & 00018435 a 0000 | worthy of acceptance or satisfactory; "acceptable levels of radiation"; "performances varied from acceptable to excellent" -00018069 00 s 01 bankable 0 004 & 00017782 a 0000 + 02343374 v 0101 + 02343056 v 0101 + 02310855 v 0102 | acceptable to or at a bank; "bankable funds" -00018222 00 s 02 unexceptionable 0 unimpeachable 0 001 & 00017782 a 0000 | completely acceptable; not open to exception or reproach; "two unexceptionable witnesses"; "a judge's ethics should be unexceptionable" -00018435 00 s 01 unobjectionable 0 001 & 00017782 a 0000 | not objectionable; "the ends are unobjectionable; it's the means that one can't accept" -00018584 00 a 01 unacceptable 0 006 ^ 02082218 a 0000 ^ 02540236 a 0000 + 04793925 n 0102 + 04793925 n 0101 ! 00017782 a 0101 & 00018850 a 0000 | not acceptable; not welcome; "a word unacceptable in polite society"; "an unacceptable violation of personal freedom" -00018850 00 s 02 exceptionable 0 objectionable 0 002 & 00018584 a 0000 + 04781755 n 0203 | liable to objection or debate; used of something one might take exception to; "a thoroughly unpleasant highly exceptionable piece of writing"; "found the politician's views objectionable" -00019131 00 a 01 accessible 0 007 ^ 00604617 a 0000 = 04718999 n 0000 + 02007417 v 0101 ! 00019874 a 0101 & 00019349 a 0000 & 00019505 a 0000 & 00019731 a 0000 | capable of being reached; "a town accessible by rail" -00019349 00 s 02 approachable 0 reachable 0 002 & 00019131 a 0000 + 02053941 v 0101 | easily approached; "a site approachable from a branch of the Niger" -00019505 00 s 03 come-at-able 0 get-at-able 0 getatable 0 002 & 00019131 a 0000 ;u 07075172 n 0000 | capable of being reached or attained; "a very getatable man"; "both oil and coal are there but not in getatable locations" -00019731 00 s 02 handy 0 ready_to_hand(p) 0 002 & 00019131 a 0000 + 04718999 n 0101 | easy to reach; "found a handy spot for the can opener" -00019874 00 a 02 inaccessible 0 unaccessible 0 006 = 04718999 n 0000 ! 00019131 a 0101 & 00020103 a 0000 & 00020241 a 0000 & 00020410 a 0000 & 00020647 a 0000 | capable of being reached only with great difficulty or not at all -00020103 00 s 02 outback(a) 0 remote 0 003 & 00019874 a 0000 + 05085165 n 0202 + 08505110 n 0101 | inaccessible and sparsely populated; -00020241 00 s 06 pathless 0 roadless 0 trackless 0 untracked 0 untrod 0 untrodden 0 001 & 00019874 a 0000 | lacking pathways; "trackless wilderness"; "roadless areas" -00020410 00 s 04 unapproachable 0 unreachable 0 unreached 0 out_of_reach(p) 0 001 & 00019874 a 0000 | inaccessibly located or situated; "an unapproachable chalet high in the mountains"; "an unreachable canyon"; "the unreachable stars" -00020647 00 s 03 un-come-at-able 0 un-get-at-able 0 ungetatable 0 002 & 00019874 a 0000 ;u 07075172 n 0000 | difficult to reach or attain -00020787 00 a 02 accommodating 0 accommodative 0 006 ^ 01133876 a 0000 ^ 01195536 a 0000 ^ 01372049 a 0000 + 00885925 v 0202 ! 00021403 a 0101 & 00021110 a 0000 | helpful in bringing about a harmonious adaptation; "the warden was always accommodating in allowing visitors in"; "made a special effort to be accommodating" -00021110 00 s 02 complaisant 0 obliging 0 003 & 00020787 a 0000 + 04641153 n 0204 + 04641153 n 0101 | showing a cheerful willingness to do favors for others; "to close one's eyes like a complaisant husband whose wife has taken a lover"; "the obliging waiter was in no hurry for us to leave" -00021403 00 a 02 unaccommodating 0 unobliging 0 002 ! 00020787 a 0101 & 00021592 a 0000 | not accommodating; "the unaccommodating bus driver pulled out while she was banging on the door" -00021592 00 s 02 disobliging 0 uncooperative 0 001 & 00021403 a 0000 | intentionally unaccommodating; "the action was not offensive to him but proved somewhat disobliging" -00021766 00 a 01 accurate 0 012 ^ 00631391 a 0000 ^ 00914421 a 0000 ^ 01837744 a 0000 = 04802907 n 0000 ! 00023383 a 0101 & 00022219 a 0000 & 00022437 a 0000 & 00022680 a 0000 & 00022852 a 0000 & 00022962 a 0000 & 00023120 a 0000 & 00023278 a 0000 | conforming exactly or almost exactly to fact or to a standard or performing with total accuracy; "an accurate reproduction"; "the accounting was accurate"; "accurate measurements"; "an accurate scale" -00022219 00 s 02 close 0 faithful 0 002 & 00021766 a 0000 + 04876985 n 0202 | marked by fidelity to an original; "a close translation"; "a faithful copy of the portrait"; "a faithful rendering of the observed facts" -00022437 00 s 01 dead-on(a) 0 002 & 00021766 a 0000 ;u 07075172 n 0000 | accurate and to the point; "a dead-on feel for characterization"; "She avoids big scenes...preferring to rely on small gestures and dead-on dialogue"- Peter S.Prescott -00022680 00 s 02 high-fidelity 0 hi-fi 0 001 & 00021766 a 0000 | characterized by minimal distortion in sound reproduction; "a high-fidelity recording"; "a hi-fi system" -00022852 00 s 01 surgical 0 001 & 00021766 a 0000 | performed with great precision; "a surgical air strike" -00022962 00 s 01 straight 0 001 & 00021766 a 0000 | in keeping with the facts; "set the record straight"; "made sure the facts were straight in the report" -00023120 00 s 02 true 0 dead_on_target 0 002 & 00021766 a 0000 + 04804169 n 0101 | accurately placed or thrown; "his aim was true"; "he was dead on target" -00023278 00 s 02 veracious 0 right 0 001 & 00021766 a 0000 | precisely accurate; "a veracious account" -00023383 00 a 01 inaccurate 0 009 ^ 01839417 a 0000 ^ 00632438 a 0000 ^ 00915787 a 0000 = 04802907 n 0000 ! 00021766 a 0101 & 00023655 a 0000 & 00023854 a 0000 & 00024139 a 0000 & 00024241 a 0000 | not exact; "an inaccurate translation"; "the thermometer is inaccurate" -00023655 00 s 02 away 0 outside 0 002 & 00023383 a 0000 ;c 00471613 n 0000 | (of a baseball pitch) on the far side of home plate from the batter; "the pitch was away (or wide)"; "an outside pitch" -00023854 00 s 03 faulty 0 incorrect 0 wrong 0 003 & 00023383 a 0000 + 00070965 n 0103 + 14472299 n 0102 | characterized by errors; not agreeing with a model or not following established rules; "he submitted a faulty report"; "an incorrect transcription"; the wrong side of the road" -00024139 00 s 01 unfaithful 0 001 & 00023383 a 0000 | not trustworthy; "an unfaithful reproduction" -00024241 00 s 02 wide 0 wide_of_the_mark 0 001 & 00023383 a 0000 | not on target; "the kick was wide"; "the arrow was wide of the mark"; "a claim that was wide of the truth" -00024417 00 a 01 accustomed 0 002 ! 00024834 a 0101 & 00024619 a 0000 | (often followed by `to') in the habit of or adapted to; "accustomed to doing her own work"; "I've grown accustomed to her face" -00024619 00 s 02 used_to(p) 0 wont_to(p) 0 001 & 00024417 a 0000 | in the habit; "I am used to hitchhiking"; "you'll get used to the idea"; "...was wont to complain that this is a cold world"- Henry David Thoreau -00024834 00 a 01 unaccustomed 0 003 ! 00024417 a 0101 & 00024996 a 0000 & 00025138 a 0000 | not habituated to; unfamiliar with; "unaccustomed to wearing suits" -00024996 00 s 01 new 0 001 & 00024834 a 0000 | unfamiliar; "new experiences"; "experiences new to him"; "errors of someone new to the job" -00025138 00 s 01 unused 0 001 & 00024834 a 0000 | infrequently exposed to; "feet unused to shoes" -00025238 00 a 01 acidic 0 005 ;c 06084469 n 0000 ! 00025728 a 0101 ! 00026515 a 0101 & 00025470 a 0000 & 00025633 a 0000 | being or containing an acid; of a solution having an excess of hydrogen atoms (having a pH of less than 7) -00025470 00 s 01 acid 0 004 & 00025238 a 0000 ;c 06084469 n 0000 + 14607521 n 0101 + 04993882 n 0103 | having the characteristics of an acid; "an acid reaction" -00025633 00 s 01 acid-forming 0 001 & 00025238 a 0000 | yielding an acid in aqueous solution -00025728 00 a 02 alkaline 0 alkalic 0 009 ;c 06084469 n 0000 + 14712036 n 0201 + 05039709 n 0101 ! 00026515 a 0101 ! 00025238 a 0101 & 00026051 a 0000 & 00026168 a 0000 & 00026294 a 0000 & 00026388 a 0000 | relating to or containing an alkali; having a pH greater than 7; "alkaline soils derived from chalk or limestone" -00026051 00 s 02 alkalescent 0 alcalescent 0 001 & 00025728 a 0000 | tending to become alkaline; slightly alkaline -00026168 00 s 01 basic 0 002 & 00025728 a 0000 ;c 06084469 n 0000 | of or denoting or of the nature of or containing a base -00026294 00 s 01 base-forming 0 001 & 00025728 a 0000 | yielding a base in aqueous solution -00026388 00 s 01 saltlike 0 001 & 00025728 a 0000 | resembling a compound formed by replacing hydrogen in an acid by a metal -00026515 00 a 02 amphoteric 0 amphiprotic 0 003 ;c 06084469 n 0000 ! 00025238 a 0101 ! 00025728 a 0101 | having characteristics of both an acid and a base and capable of reacting as either -00026706 00 a 01 acid-loving 0 003 ;c 00017222 n 0000 ! 00027074 a 0101 & 00026895 a 0000 | thriving in a relatively acidic environment (especially of plants requiring a pH well below 7) -00026895 00 s 03 acidophilic 0 acidophilous 0 aciduric 0 003 & 00026706 a 0000 + 01349333 n 0102 + 01349333 n 0101 | especially of some bacteria; growing well in an acid medium -00027074 00 a 01 alkaline-loving 0 002 ;c 00017222 n 0000 ! 00026706 a 0101 | thriving in a relatively alkaline environment; (especially of plants requiring a pH above 7) -00027247 00 a 01 acknowledged 0 009 ^ 01375174 a 0000 = 14411981 n 0000 ! 00028672 a 0101 & 00027599 a 0000 & 00027833 a 0000 & 00028008 a 0000 & 00028181 a 0000 & 00028280 a 0000 & 00028471 a 0000 | recognized or made known or admitted; "the acknowledged leader of the community"; "a woman of acknowledged accomplishments"; "his acknowledged error" -00027599 00 s 03 accepted 0 recognized 0 recognised 0 001 & 00027247 a 0000 | generally approved or compelling recognition; "several accepted techniques for treating the condition"; "his recognized superiority in this kind of work" -00027833 00 s 01 self-confessed(a) 0 001 & 00027247 a 0000 | owned up to; "his admitted doubts"; "the conceded error"; "a confessed murderer"; "a self-confessed plagiarist" -00028008 00 s 01 assumptive 0 002 & 00027247 a 0000 + 00632236 v 0101 | accepted as real or true without proof; "the assumed reason for his absence"; "assumptive beliefs" -00028181 00 s 01 declarable 0 001 & 00027247 a 0000 | that must be declared; "declarable income" -00028280 00 s 02 given 0 granted 0 003 & 00027247 a 0000 + 05893356 n 0101 + 04755630 n 0101 | acknowledged as a supposition; "given the engine's condition, it is a wonder that it started" -00028471 00 s 01 putative(a) 0 001 & 00027247 a 0000 | purported; commonly put forth or accepted as true on inconclusive grounds; "the foundling's putative father"; "the putative author of the book" -00028672 00 a 01 unacknowledged 0 007 ^ 01376894 a 0000 = 14411981 n 0000 ! 00027247 a 0101 & 00028867 a 0000 & 00028984 a 0000 & 00029108 a 0000 & 00029216 a 0000 | not recognized or admitted -00028867 00 s 03 unappreciated 0 unsung 0 unvalued 0 001 & 00028672 a 0000 | having value that is not acknowledged -00028984 00 s 02 unavowed 0 secret 0 001 & 00028672 a 0000 | not openly made known; "a secret marriage"; "a secret bride" -00029108 00 s 01 unconfessed 0 002 & 00028672 a 0000 + 08477164 n 0101 | not admitted; "unconfessed sins" -00029216 00 s 02 unrecognized 0 unrecognised 0 001 & 00028672 a 0000 | not recognized; "he was unrecognized in his disguise" -00029343 00 a 01 acquisitive 0 011 = 04946078 n 0000 + 02210855 v 0102 + 04946078 n 0101 ! 00031533 a 0101 & 00029769 a 0000 & 00029933 a 0000 & 00030508 a 0000 & 00030701 a 0000 & 00030798 a 0000 & 00031138 a 0000 & 00031384 a 0000 | eager to acquire and possess things especially material possessions or ideas; "an acquisitive mind"; "an acquisitive society in which the craving for material things seems never satisfied" -00029769 00 s 01 accumulative 0 003 & 00029343 a 0000 + 02304982 v 0103 + 00158804 v 0101 | marked by acquiring or amassing; "we live in an accumulative society" -00029933 00 s 06 avaricious 0 covetous 0 grabby 0 grasping 0 greedy 0 prehensile 0 009 & 00029343 a 0000 + 04945530 n 0501 + 00758525 n 0502 + 04834817 n 0501 + 00812274 n 0401 + 00758525 n 0203 + 04945758 n 0101 + 00758525 n 0101 + 04945758 n 0102 | immoderately desirous of acquiring e.g. wealth; "they are avaricious and will do anything for money"; "casting covetous eyes on his neighbor's fields"; "a grasping old miser"; "grasping commercialism"; "greedy for money and power"; "grew richer and greedier"; "prehensile employers stingy with raises for their employees" -00030508 00 s 01 possessive 0 003 & 00029343 a 0000 + 04945942 n 0101 + 02204692 v 0103 | desirous of owning; "small children are so possessive they will not let others play with their toys" -00030701 00 s 01 plundering 0 001 & 00029343 a 0000 | given to taking by force what is desired -00030798 00 s 03 predaceous 0 predacious 0 predatory 0 001 & 00029343 a 0000 | living by or given to victimizing others for personal gain; "predatory capitalists"; "a predatory, insensate society in which innocence and decency can prove fatal"- Peter S. Prescott; "a predacious kind of animal--the early geological gangster"- W.E.Swinton -00031138 00 s 03 rapacious 0 ravening 0 voracious 0 003 & 00029343 a 0000 + 04834817 n 0302 + 00758525 n 0104 | excessively greedy and grasping; "a rapacious divorcee on the prowl"; "ravening creditors"; "paying taxes to voracious governments" -00031384 00 s 01 sordid 0 002 & 00029343 a 0000 + 04807971 n 0102 | meanly avaricious and mercenary; "sordid avarice"; "sordid material interests" -00031533 00 a 01 unacquisitive 0 002 = 04946078 n 0000 ! 00029343 a 0101 | not acquisitive; not interested in acquiring or owning anything -00031674 00 a 01 acropetal 0 002 ;c 06066555 n 0000 ! 00031824 a 0101 | of leaves or flowers; developing or opening in succession from base to apex -00031824 00 a 01 basipetal 0 002 ;c 06066555 n 0000 ! 00031674 a 0101 | of leaves or flowers; developing or opening in succession from apex to base -00031974 00 a 01 active 1 013 ^ 00873603 a 0000 ^ 00804695 a 0000 = 04635104 n 0000 + 04635104 n 0101 + 04635104 n 0102 ! 00033574 a 0101 & 00032358 a 0000 & 00032497 a 0000 & 00032733 a 0000 & 00033077 a 0000 & 00033206 a 0000 & 00033359 a 0000 & 00033475 a 0000 | characterized by energetic activity; "an active toddler"; "active as a gazelle"; "an active man is a man of action" -00032358 00 s 02 about(p) 0 astir(p) 0 001 & 00031974 a 0000 | on the move; "up and about"; "the whole town was astir over the incident" -00032497 00 s 03 acrobatic 0 athletic 0 gymnastic 0 004 & 00031974 a 0000 + 00433802 n 0301 + 00523513 n 0202 + 00434075 n 0101 | vigorously active; "an acrobatic dance"; "an athletic child"; "athletic playing"; "gymnastic exercises" -00032733 00 s 04 agile 0 nimble 0 quick 0 spry 0 005 & 00031974 a 0000 + 05642175 n 0305 + 05059132 n 0302 + 05003850 n 0205 + 05003850 n 0101 | moving quickly and lightly; "sleek and agile as a gymnast"; "as nimble as a deer"; "nimble fingers"; "quick of foot"; "the old dog was so spry it was halfway up the stairs before we could stop it" -00033077 00 s 01 hot 0 002 & 00031974 a 0000 ;u 07075172 n 0000 | marked by excited activity; "a hot week on the stock market" -00033206 00 s 02 hyperactive 0 overactive 0 003 & 00031974 a 0000 + 13529450 n 0201 + 14060256 n 0101 | more active than normal; "a hyperactive child" -00033359 00 s 01 on_the_go(p) 0 001 & 00031974 a 0000 | (of a person) very busy and active; "is always on the go" -00033475 00 s 01 sporty 0 001 & 00031974 a 0000 | appropriate for sport or engagement in a sport -00033574 00 a 01 inactive 1 009 ^ 00875712 a 0000 = 04635104 n 0000 + 04635631 n 0101 ! 00031974 a 0101 & 00033886 a 0000 & 00034032 a 0000 & 00034232 a 0000 & 00034322 a 0000 & 00034572 a 0000 | not active physically or mentally; "illness forced him to live an inactive life"; "dreamy and inactive by nature" -00033886 00 s 02 desk-bound 0 deskbound 0 001 & 00033574 a 0000 | restricted to working in an office rather than in an active physical capacity -00034032 00 s 02 abeyant 0 dormant 0 003 & 00033574 a 0000 + 14011811 n 0201 + 14010636 n 0101 | inactive but capable of becoming active; "her feelings of affection are dormant but easily awakened" -00034232 00 s 02 hypoactive 0 underactive 0 001 & 00033574 a 0000 | abnormally inactive -00034322 00 s 04 inert 0 sluggish 0 soggy 0 torpid 0 005 & 00033574 a 0000 + 04636881 n 0403 + 14014621 n 0402 + 04635953 n 0203 + 04776572 n 0101 | slow and apathetic; "she was fat and inert"; "a sluggish worker"; "a mind grown torpid in old age" -00034572 00 s 01 sedentary 0 001 & 00033574 a 0000 | requiring sitting or little activity; "forced by illness to lead a sedentary life" -00034710 00 a 01 active 8 004 + 14006945 n 0103 + 14006945 n 0102 ! 00035074 a 0101 & 00034924 a 0000 | engaged in full-time work; "active duty"; "though past retirement age he is still active in his profession" -00034924 00 s 01 activated 0 002 & 00034710 a 0000 ;c 08199025 n 0000 | (military) set up and placed on active assignment; "a newly activated unit" -00035074 00 a 01 inactive 8 004 + 01062583 n 0101 ! 00034710 a 0101 & 00035254 a 0000 & 00035368 a 0000 | not engaged in full-time work; "inactive reserve"; "an inactive member" -00035254 00 s 01 off 0 001 & 00035074 a 0000 | not performing or scheduled for duties; "He's off every Tuesday" -00035368 00 s 01 retired 0 001 & 00035074 a 0000 | no longer active in your work or profession -00035465 00 a 01 active 6 009 + 04635104 n 0101 + 04635104 n 0102 ! 00036481 a 0101 & 00035779 a 0000 & 00035868 a 0000 & 00035978 a 0000 & 00036163 a 0000 & 00036254 a 0000 & 00036346 a 0000 | full of activity or engaged in continuous activity; "an active seaport"; "an active bond market"; "an active account" -00035779 00 s 01 brisk 0 001 & 00035465 a 0000 | very active; "doing a brisk business" -00035868 00 s 01 bustling 0 001 & 00035465 a 0000 | full of energetic and noisy activity; "a bustling city" -00035978 00 s 01 busy 1 002 & 00035465 a 0000 + 14008050 n 0101 | crowded with or characterized by much activity; "a very busy week"; "a busy life"; "a busy street"; "a busy seaport" -00036163 00 s 01 going(a) 0 001 & 00035465 a 0000 | in full operation; "a going concern" -00036254 00 s 01 open 0 001 & 00035465 a 0000 | ready for business; "the stores are open" -00036346 00 s 01 springy 0 001 & 00035465 a 0000 | (of movements) light and confidently active; "he walked away with a springy step" -00036481 00 a 01 inactive 3 008 + 14010148 n 0103 + 01062583 n 0101 ! 00035465 a 0101 & 00036763 a 0000 & 00036879 a 0000 & 00036998 a 0000 & 00037188 a 0000 & 00037341 a 0000 | lacking activity; lying idle or unused; "an inactive mine"; "inactive accounts"; "inactive machinery" -00036763 00 s 01 dark 0 001 & 00036481 a 0000 | not giving performances; closed; "the theater is dark on Mondays" -00036879 00 s 01 dead 0 001 & 00036481 a 0000 | devoid of activity; "this is a dead town; nothing ever happens here" -00036998 00 s 03 dull 0 slow 0 sluggish 0 003 & 00036481 a 0000 ;c 01094725 n 0000 + 05062518 n 0301 | (of business) not active or brisk; "business is dull (or slow)"; "a sluggish market" -00037188 00 s 02 idle 0 unused 0 002 & 00036481 a 0000 + 01065441 n 0101 | not in active use; "the machinery sat idle during the strike"; "idle hands" -00037341 00 s 01 strikebound 0 001 & 00036481 a 0000 | closed or immobilized by a strike; "a strikebound airline" -00037457 00 a 01 active 2 005 ;c 06060845 n 0000 + 14006945 n 0103 + 13440063 n 0104 ! 00037757 a 0101 & 00037653 a 0000 | tending to become more severe or wider in scope; "active tuberculosis" -00037653 00 s 01 progressive 0 001 & 00037457 a 0000 | advancing in severity; "progressive paralysis" -00037757 00 a 01 inactive 2 007 ;c 06060845 n 0000 ! 00037457 a 0101 & 00037985 a 0000 & 00038119 a 0000 & 00038260 a 0000 & 00038462 a 0000 & 00038623 a 0000 | (pathology) not progressing or increasing; or progressing slowly -00037985 00 s 01 dead-end 0 001 & 00037757 a 0000 | lacking opportunities for development or advancement; "stuck in a dead-end job" -00038119 00 s 01 flat 0 001 & 00037757 a 0000 | commercially inactive; "flat sales for the month"; "prices remained flat"; "a flat market" -00038260 00 s 01 indolent 0 002 & 00037757 a 0000 ;c 06060845 n 0000 | (of tumors, e.g.) slow to heal or develop and usually painless; "an indolent ulcer"; "leprosy is an indolent infectious disease" -00038462 00 s 01 latent 0 003 & 00037757 a 0000 ;c 06060845 n 0000 + 14482852 n 0101 | (pathology) not presently active; "latent infection"; "latent diabetes" -00038623 00 s 01 quiescent 0 002 & 00037757 a 0000 ;c 06060845 n 0000 | (pathology) causing no symptoms; "a quiescent tumor" -00038750 00 a 01 active 3 008 = 04635104 n 0000 + 09764900 n 0101 + 14006945 n 0103 + 04635104 n 0102 ! 00039592 a 0101 & 00039122 a 0000 & 00039259 a 0000 & 00039394 a 0000 | disposed to take action or effectuate change; "a director who takes an active interest in corporate operations"; "an active antagonism"; "he was active in drawing attention to their grievances" -00039122 00 s 02 activist 0 activistic 0 003 & 00038750 a 0000 + 05901840 n 0201 + 10315837 n 0102 | advocating or engaged in activism -00039259 00 s 01 hands-on 0 001 & 00038750 a 0000 | involving active participation; "he's a hands-on manager"; "hands-on operations" -00039394 00 s 01 proactive 0 001 & 00038750 a 0000 | (of a policy or person or action) controlling a situation by causing something to happen rather than waiting to respond to it after it happens -00039592 00 a 02 passive 1 inactive 4 008 = 04636397 n 0000 + 04635631 n 0201 + 04635631 n 0202 + 04636397 n 0101 + 04636397 n 0102 ! 00038750 a 0101 & 00039929 a 0000 & 00040058 a 0000 | lacking in energy or will; "Much benevolence of the passive order may be traced to a disinclination to inflict pain upon oneself"- George Meredith -00039929 00 s 01 hands-off 0 001 & 00039592 a 0000 | not involving participation or intervention; "a hands-off foreign policy" -00040058 00 s 03 resistless 0 supine 0 unresisting 0 001 & 00039592 a 0000 | offering no resistance; "resistless hostages"; "No other colony showed such supine, selfish helplessness in allowing her own border citizens to be mercilessly harried"- Theodore Roosevelt -00040325 00 a 01 active 4 006 = 14006945 n 0000 ;c 09470550 n 0000 + 14006945 n 0103 + 13518963 n 0104 ! 00040685 a 0101 & 00040534 a 0000 | (of e.g. volcanos) erupting or liable to erupt; "active volcanos" -00040534 00 s 01 eruptive 0 002 & 00040325 a 0000 + 00309074 v 0101 | actively spewing out lava; "a geyser is an intermittently eruptive hot spring" -00040685 00 a 02 dormant 0 inactive 5 006 = 14011811 n 0000 + 14010148 n 0203 + 14010148 n 0202 + 14011811 n 0101 ! 00040325 a 0101 & 00040909 a 0000 | (of e.g. volcanos) not erupting and not extinct ; "a dormant volcano" -00040909 00 s 01 quiescent 0 004 & 00040685 a 0000 + 14011811 n 0103 + 14011811 n 0102 + 02190188 v 0104 | being quiet or still or inactive -00041051 00 a 01 extinct 2 003 = 14012173 n 0000 ! 00041361 a 0101 & 00041202 a 0000 | (of e.g. volcanos) permanently inactive; "an extinct volcano" -00041202 00 s 01 dead 0 002 & 00041051 a 0000 + 05006519 n 0101 | physically inactive; "Crater Lake is in the crater of a dead volcano of the Cascade Range" -00041361 00 a 01 active 5 003 ^ 00099290 a 0000 ! 00041051 a 0101 & 00041488 a 0000 | (of e.g. volcanos) capable of erupting -00041488 00 s 02 alive 0 live 7 001 & 00041361 a 0000 | capable of erupting; "a live volcano"; "the volcano is very much alive" -00041618 00 a 02 active 0 dynamic 4 002 ;c 06174404 n 0000 ! 00041841 a 0101 | (used of verbs (e.g. `to run') and participial adjectives (e.g. `running' in `running water')) expressing action rather than a state of being -00041841 00 a 01 stative 0 002 ;c 06174404 n 0000 ! 00041618 a 0101 | ( used of verbs (e.g. `be' or `own') and most participial adjectives) expressing existence or a state rather than an action -00042037 00 a 01 active 9 002 ;c 06174404 n 0000 ! 00042228 a 0101 | expressing that the subject of the sentence has the semantic function of actor: "Hemingway favors active constructions" -00042228 00 a 01 passive 2 003 ;c 06174404 n 0000 + 13803431 n 0102 ! 00042037 a 0101 | expressing that the subject of the sentence is the patient of the action denoted by the verb; "academics seem to favor passive sentences" -00042457 00 a 01 active 7 007 + 14776804 n 0102 + 14006945 n 0103 + 14531203 n 0101 ! 00043125 a 0101 & 00042692 a 0000 & 00042837 a 0000 & 00042982 a 0000 | exerting influence or producing a change or effect; "an active ingredient" -00042692 00 s 01 activated 0 001 & 00042457 a 0000 | rendered active; e.g. rendered radioactive or luminescent or photosensitive or conductive -00042837 00 s 01 counteractive 0 002 & 00042457 a 0000 + 02543874 v 0101 | opposing or neutralizing or mitigating an effect by contrary action -00042982 00 s 01 surface-active 0 001 & 00042457 a 0000 | capable of lowering the surface tension of a liquid; used especially of detergents -00043125 00 a 01 inactive 7 002 ! 00042457 a 0101 & 00043231 a 0000 | not exerting influence or change -00043231 00 s 01 quiescent 0 003 & 00043125 a 0000 + 14011811 n 0103 + 14011811 n 0102 | not active or activated; "the quiescent level of centimeter wave-length solar radiation" -00043411 00 a 01 active a 004 ;c 06095022 n 0000 + 14006945 n 0103 + 13518963 n 0104 ! 00043615 a 0101 | (of the sun) characterized by an increased occurrence of sunspots and flares and radio emissions -00043615 00 a 01 quiet 3 002 ;c 06095022 n 0000 ! 00043411 a 0101 | of the sun characterized by a low level of surface phenomena like sunspots e.g. -00043765 00 a 02 actual 0 existent 4 008 = 13954818 n 0000 + 13954253 n 0203 + 02603699 v 0201 + 01644746 v 0103 + 00987870 v 0101 + 13954818 n 0101 ! 00044353 a 0101 & 00044132 a 0000 | presently existing in fact and not merely potential or possible; "the predicted temperature and the actual temperature were markedly different"; "actual and imagined conditions" -00044132 00 s 01 effective 0 001 & 00043765 a 0000 | existing in fact; not theoretical; real; "a decline in the effective demand"; "confused increased equipment and expenditure with the quantity of effective work done" -00044353 00 a 02 potential 0 possible 4 007 = 14482620 n 0000 + 05951180 n 0201 + 05792010 n 0201 + 14481929 n 0202 + 14482620 n 0103 ! 00043765 a 0101 & 00044608 a 0000 | existing in possibility; "a potential problem"; "possible uses of nuclear power" -00044608 00 s 01 latent 0 001 & 00044353 a 0000 | potentially existing but not presently evident or realized; "a latent fingerprint"; "latent talent" -00044760 00 a 01 acute 0 003 ;c 06043075 n 0000 ! 00045123 a 0101 & 00044987 a 0000 | having or experiencing a rapid onset and short but severe course; "acute appendicitis"; "the acute phase of the illness"; "acute patients" -00044987 00 s 01 subacute 0 001 & 00044760 a 0000 | less than acute; relating to a disease present in a person with no symptoms of it -00045123 00 a 01 chronic 0 003 ;c 06043075 n 0000 ! 00044760 a 0101 & 00045356 a 0000 | being long-lasting and recurrent or characterized by long suffering; "chronic indigestion"; "a chronic shortage of funds"; "a chronic invalid" -00045356 00 s 01 degenerative 0 002 & 00045123 a 0000 + 00092293 v 0104 | (of illness) marked by gradual deterioration of organs and cells along with loss of function; "degenerative diseases of old age" -00045561 00 a 01 virulent 0 005 + 05166560 n 0102 + 05166560 n 0101 ! 00046014 a 0101 & 00045735 a 0000 & 00045888 a 0000 | infectious; having the ability to cause disease -00045735 00 s 01 highly_infective 0 002 & 00045561 a 0000 ;c 01326291 n 0000 | (of a microorganism) extremely infective; "a highly infective organism" -00045888 00 s 01 deadly 0 002 & 00045561 a 0000 + 04791081 n 0101 | (of a disease) having a rapid course and violent effect -00046014 00 a 01 avirulent 0 001 ! 00045561 a 0101 | not virulent; unable to produce disease -00046109 00 a 02 adaptive 0 adaptative 0 006 + 00299580 v 0201 + 00150287 v 0103 ! 00046673 a 0101 & 00046339 a 0000 & 00046471 a 0000 & 00046558 a 0000 | having a capacity for adaptation; "the adaptive coloring of a chameleon" -00046339 00 s 02 accommodative 0 reconciling 0 001 & 00046109 a 0000 | tending to reconcile or accommodate; bringing into harmony -00046471 00 s 01 adaptational 0 001 & 00046109 a 0000 | of or relating to adaptation -00046558 00 s 01 adjustive 0 003 & 00046109 a 0000 + 00150287 v 0101 + 00296178 v 0101 | conducive to adjustment -00046673 00 a 01 maladaptive 0 003 ! 00046109 a 0101 & 00046792 a 0000 & 00046955 a 0000 | showing faulty adaptation -00046792 00 s 02 dysfunctional 0 nonadaptive 0 001 & 00046673 a 0000 | (of a trait or condition) failing to serve an adjustive purpose; "dysfunctional behavior" -00046955 00 s 01 maladjustive 0 001 & 00046673 a 0000 | poorly adjusted -00047029 00 a 01 addicted 0 003 ! 00047566 a 0101 & 00047243 a 0000 & 00047406 a 0000 | compulsively or physiologically dependent on something habit-forming; "she is addicted to chocolate"; "addicted to cocaine" -00047243 00 s 02 alcoholic 0 alcohol-dependent 0 002 & 00047029 a 0000 + 09782167 n 0101 | addicted to alcohol; "alcoholic expatriates in Paris"- Carl Van Doren -00047406 00 s 05 dependent 0 dependant 0 drug-addicted 0 hooked 0 strung-out 0 003 & 00047029 a 0000 + 14062725 n 0104 + 14062725 n 0102 | addicted to a drug -00047566 00 a 01 unaddicted 0 002 ! 00047029 a 0101 & 00047653 a 0000 | not addicted -00047653 00 s 01 clean 0 001 & 00047566 a 0000 | free of drugs; "after a long dependency on heroin she has been clean for 4 years" -00047786 00 a 02 addictive 0 habit-forming 0 002 + 01165290 v 0101 ! 00047954 a 0101 | causing or characterized by addiction; "addictive drugs"; "addictive behavior" -00047954 00 a 01 nonaddictive 0 001 ! 00047786 a 0101 | not causing or characterized by addiction; "for years tobacco companies have contended that tobacco is nonaddictive" -00048129 00 a 01 additive 0 013 + 02679788 n 0101 + 02745172 v 0101 + 00949288 v 0108 + 00640828 v 0101 ! 00050083 a 0101 & 00048460 a 0000 & 00048706 a 0000 & 00048858 a 0000 & 00049016 a 0000 & 00049266 a 0000 & 00049469 a 0000 & 00049683 a 0000 & 00049879 a 0000 | characterized or produced by addition; "an additive process" -00048460 00 s 02 accumulative 0 cumulative 0 004 & 00048129 a 0000 + 00158804 v 0202 + 02304982 v 0103 + 00158804 v 0101 | increasing by successive addition; "the benefits are cumulative"; "the eventual accumulative effect of these substances" -00048706 00 s 02 addable 0 addible 0 004 & 00048129 a 0000 + 00949288 v 0208 + 00949288 v 0108 + 00640828 v 0101 | capable of being added or added to -00048858 00 s 02 extra 0 additional 3 001 & 00048129 a 0000 | further or added; "called for additional troops"; "need extra help"; "an extra pair of shoes" -00049016 00 s 03 complemental 0 complementary 0 completing 0 006 & 00048129 a 0000 + 05109511 n 0201 + 13857314 n 0201 + 08218212 n 0101 + 05696297 n 0101 + 05109511 n 0101 | acting as or providing a complement (something that completes the whole) -00049266 00 s 01 incremental 0 003 & 00048129 a 0000 + 13497135 n 0102 + 05108947 n 0102 | increasing gradually by regular degrees or additions; "lecturers enjoy...steady incremental growth in salary" -00049469 00 s 01 intercalary 0 001 & 00048129 a 0000 | having a day or month inserted to make the calendar year correspond to the solar year: "Feb. 29 is an intercalary day"; "a leap year is an intercalary year" -00049683 00 s 02 summational 0 summative 0 005 & 00048129 a 0000 + 13563139 n 0101 + 07959016 n 0102 + 06469874 n 0101 + 00872107 n 0101 | of or relating to a summation or produced by summation -00049879 00 s 02 supplementary 0 supplemental 0 004 & 00048129 a 0000 + 05110772 n 0201 + 05110772 n 0101 + 06399631 n 0102 | added to complete or make up a deficiency; "produced supplementary volumes" -00050083 00 a 01 subtractive 0 004 + 00641252 v 0101 ! 00048129 a 0101 & 00050260 a 0000 & 00050446 a 0000 | constituting or involving subtraction; "a subtractive correction" -00050260 00 s 01 ablative 0 002 & 00050083 a 0000 + 00275466 v 0101 | tending to ablate; i.e. to be removed or vaporized at very high temperature; "ablative material on a rocket cone" -00050446 00 s 01 reductive 0 002 & 00050083 a 0000 + 00429060 v 0101 | characterized by or causing diminution or curtailment; "their views of life were reductive and depreciatory" - R.H.Rovere -00050641 00 a 01 addressed 0 002 ! 00050947 a 0101 & 00050799 a 0000 | (of mail) marked with a destination; "I throw away all mail addressed to `resident'" -00050799 00 s 01 self-addressed 0 001 & 00050641 a 0000 | addressed to yourself; "enclose a stamped self-addressed envelope with all submissions" -00050947 00 a 01 unaddressed 0 001 ! 00050641 a 0101 | not addressed; "an unaddressed envelope" -00051045 00 a 02 adequate 0 equal 3 006 ^ 02080577 a 0000 = 04792357 n 0000 + 04792357 n 0102 ! 00051696 a 0101 & 00051373 a 0000 & 00051571 a 0000 | having the requisite qualities or resources to meet a task; "she had adequate training"; "her training was adequate"; "she was adequate to the job"; "he was equal to the task" -00051373 00 s 04 adequate_to(p) 0 capable 0 equal_to(p) 0 up_to(p) 0 001 & 00051045 a 0000 | having the requisite qualities for; "equal to the task"; "the work isn't up to the standard I require" -00051571 00 s 01 competent 0 002 & 00051045 a 0000 + 05153520 n 0102 | adequate for the purpose; "a competent performance" -00051696 00 a 02 inadequate 0 unequal 3 007 ^ 02082218 a 0000 = 04792357 n 0000 + 04793555 n 0102 ! 00051045 a 0101 & 00052012 a 0000 & 00052246 a 0000 & 00052431 a 0000 | lacking the requisite qualities or resources to meet a task; "inadequate training"; "the staff was inadequate"; "she was unequal to the task" -00052012 00 s 03 deficient 0 lacking(p) 0 wanting(p) 0 002 & 00051696 a 0000 + 05113133 n 0103 | inadequate in amount or degree; "a deficient education"; "deficient in common sense"; "lacking in stamina"; "tested and found wanting" -00052246 00 s 03 incapable 0 incompetent 0 unequal_to(p) 0 003 & 00051696 a 0000 + 05154241 n 0201 + 05207570 n 0101 | not meeting requirements; "unequal to the demands put upon him" -00052431 00 s 04 short-handed 0 short-staffed 0 undermanned 0 understaffed 0 001 & 00051696 a 0000 | inadequate in number of workers or assistants etc.; "they're rather short-handed at the moment"; "overcrowded and understaffed hospitals" -00052672 00 a 01 adhesive 0 017 + 14702416 n 0103 + 01356750 v 0101 + 04935528 n 0101 ! 00054908 a 0101 & 00053032 a 0000 & 00053154 a 0000 & 00053248 a 0000 & 00053384 a 0000 & 00053564 a 0000 & 00053691 a 0000 & 00054109 a 0000 & 00054201 a 0000 & 00054278 a 0000 & 00054364 a 0000 & 00054541 a 0000 & 00054667 a 0000 & 00054804 a 0000 | tending to adhere -00053032 00 s 01 adherent 0 004 & 00052672 a 0000 + 04935528 n 0103 + 01220885 v 0103 + 01356750 v 0101 | sticking fast -00053154 00 s 02 agglutinate 0 agglutinative 0 001 & 00052672 a 0000 | united as if by glue -00053248 00 s 01 bondable 0 002 & 00052672 a 0000 + 01356750 v 0103 | capable of holding together or cohering; as particles in a mass -00053384 00 s 02 coherent 0 tenacious 0 004 & 00052672 a 0000 + 14420464 n 0102 + 14420464 n 0101 + 01220885 v 0105 | sticking together; "two coherent sheets"; "tenacious burrs" -00053564 00 s 01 cohesive 0 003 & 00052672 a 0000 + 01220885 v 0105 + 14420464 n 0104 | causing cohesion; "a cohesive agent" -00053691 00 s 08 gluey 0 glutinous 0 gummy 0 mucilaginous 0 pasty 0 sticky 0 viscid 0 viscous 0 015 & 00052672 a 0000 + 04935904 n 0708 + 04935904 n 0707 + 04935239 n 0601 + 14704966 n 0501 + 14702875 n 0403 + 14901679 n 0401 + 14702875 n 0302 + 04935904 n 0304 + 07570237 n 0201 + 04936213 n 0203 + 04936213 n 0202 + 14702875 n 0101 + 04935904 n 0103 + 04935904 n 0102 | having the sticky properties of an adhesive -00054109 00 s 02 gooey 0 icky 0 002 & 00052672 a 0000 + 14956661 n 0103 | soft and sticky -00054201 00 s 01 gum-like 0 001 & 00052672 a 0000 | resembling chewing gum -00054278 00 s 02 gummed 0 gummy 1 001 & 00052672 a 0000 | covered with adhesive gum -00054364 00 s 04 pitchy 0 resinous 0 resiny 0 tarry 0 004 & 00052672 a 0000 + 14894140 n 0301 + 14894140 n 0201 + 14911704 n 0101 | having the characteristics of pitch or tar -00054541 00 s 01 self-sealing 0 001 & 00052672 a 0000 | seals without the application of moisture; "self-sealing envelopes" -00054667 00 s 01 stick-on 0 001 & 00052672 a 0000 | of something (a paper label or postage stamp) gummed in advance; "stick-on labels" -00054804 00 s 01 sticky 1 002 & 00052672 a 0000 + 04935239 n 0101 | covered with an adhesive material -00054908 00 a 01 nonadhesive 0 004 ! 00052672 a 0101 & 00055041 a 0000 & 00055142 a 0000 & 00055256 a 0000 | not tending to adhere -00055041 00 s 02 nonglutinous 0 nonviscid 0 001 & 00054908 a 0000 | not resembling glue in texture -00055142 00 s 04 nonresinous 0 non-resinous 0 nonresiny 0 non-resiny 0 001 & 00054908 a 0000 | not having resin -00055256 00 s 01 ungummed 0 001 & 00054908 a 0000 | not treated with adhesive gum -00055340 00 a 02 adjective 0 procedural 0 003 ;c 08441203 n 0000 + 01023636 n 0201 ! 00055539 a 0101 | relating to court practice and procedure as opposed to the principles of law; "adjective law" -00055539 00 a 02 substantive 0 essential 4 003 ;c 08441203 n 0000 + 05171045 n 0202 ! 00055340 a 0101 | defining rights and duties as opposed to giving the rules by which rights and duties are established; "substantive law" -00055765 00 a 01 adoptable 0 002 + 00413195 v 0101 ! 00055906 a 0101 | suitable or eligible for adoption; "a shortage of adoptable babies" -00055906 00 a 01 unadoptable 0 001 ! 00055765 a 0101 | difficult to place in an adoptive home -00056002 00 a 02 adorned 0 decorated 4 030 ^ 00453726 a 0000 ^ 01794340 a 0000 ! 00060397 a 0101 & 00056660 a 0000 & 00056849 a 0000 & 00056943 a 0000 & 00057149 a 0000 & 00057390 a 0000 & 00057490 a 0000 & 00057566 a 0000 & 00057737 a 0000 & 00057881 a 0000 & 00057992 a 0000 & 00058280 a 0000 & 00058379 a 0000 & 00058554 a 0000 & 00058696 a 0000 & 00058822 a 0000 & 00058929 a 0000 & 00059028 a 0000 & 00059131 a 0000 & 00059201 a 0000 & 00059326 a 0000 & 00059491 a 0000 & 00059669 a 0000 & 00059782 a 0000 & 00059965 a 0000 & 00060053 a 0000 & 00060151 a 0000 & 00060294 a 0000 | provided with something intended to increase its beauty or distinction -00056660 00 s 07 beady 0 gemmed 0 jeweled 0 jewelled 0 sequined 0 spangled 0 spangly 0 003 & 00056002 a 0000 + 04173698 n 0702 + 02815071 n 0101 | covered with beads or jewels or sequins -00056849 00 s 01 bedaubed 0 001 & 00056002 a 0000 | ornamented in a vulgar or showy fashion -00056943 00 s 03 bespectacled 0 monocled 0 spectacled 0 001 & 00056002 a 0000 | wearing, or having the face adorned with, eyeglasses or an eyeglass; "a bespectacled grandmother"; "the monocled gentleman" -00057149 00 s 03 brocaded 0 embossed 1 raised 1 001 & 00056002 a 0000 | embellished with a raised pattern created by pressure or embroidery; "brocaded silk"; "an embossed satin"; "embossed leather"; "raised needlework"; "raised metalwork" -00057390 00 s 01 buttony 0 002 & 00056002 a 0000 + 02928608 n 0101 | ornamented with many buttons -00057490 00 s 01 carbuncled 0 001 & 00056002 a 0000 | set with carbuncles -00057566 00 s 02 champleve 0 cloisonne 0 002 & 00056002 a 0000 + 03047799 n 0201 | (for metals) having areas separated by metal and filled with colored enamel and fired -00057737 00 s 03 clinquant 0 tinseled 0 tinselly 0 003 & 00056002 a 0000 + 04440210 n 0301 + 04440059 n 0301 | glittering with gold or silver -00057881 00 s 02 crested 1 plumed 1 001 & 00056002 a 0000 | (of a knight's helmet) having a decorative plume -00057992 00 s 03 crested 2 topknotted 0 tufted 1 002 & 00056002 a 0000 ;c 00015388 n 0000 | (of a bird or animal) having a usually ornamental tuft or process on the head; often used in combination; "golden crested"; "crested iris"; "crested oriole"; "tufted duck"; "tufted loosestrife" -00058280 00 s 01 crested 3 002 & 00056002 a 0000 ;c 05801594 n 0000 | bearing an heraldic device -00058379 00 s 01 crocketed 0 001 & 00056002 a 0000 | (of a gable or spire) furnished with a crocket (an ornament in the form of curved or bent foliage); "a crocketed spire" -00058554 00 s 03 feathery 0 feathered 0 plumy 0 003 & 00056002 a 0000 + 01896031 n 0101 + 04938838 n 0102 | adorned with feathers or plumes -00058696 00 s 03 frilled 0 frilly 0 ruffled 0 002 & 00056002 a 0000 + 03397532 n 0201 | having decorative ruffles or frills -00058822 00 s 01 fringed 0 001 & 00056002 a 0000 | having a decorative edging of hanging cords or strips -00058929 00 s 01 gilt-edged 0 001 & 00056002 a 0000 | having gilded edges as the pages of a book -00059028 00 s 01 inflamed 0 002 & 00056002 a 0000 ;c 05801594 n 0000 | adorned with tongues of flame -00059131 00 s 01 inlaid 0 001 & 00056002 a 0000 | adorned by inlays -00059201 00 s 01 inwrought 0 001 & 00056002 a 0000 | having a decorative pattern worked or woven in; "an inwrought design" -00059326 00 s 01 tessellated 0 001 & 00056002 a 0000 | decorated with small pieces of colored glass or stone fitted together in a mosaic; "a tessellated pavement" -00059491 00 s 01 mounted 0 001 & 00056002 a 0000 | decorated with applied ornamentation; often used in combination; "the trim brass-mounted carbine of the ranger"- F.V.W.Mason -00059669 00 s 02 paneled 0 wainscoted 0 001 & 00056002 a 0000 | fitted or decorated with panels or wainscoting -00059782 00 s 01 studded 0 001 & 00056002 a 0000 | dotted or adorned with or as with studs or nailheads; usually used in combination; "star-studded heavens"; "diamond-studded belt" -00059965 00 s 01 tapestried 0 001 & 00056002 a 0000 | hung or decorated with tapestry -00060053 00 s 02 tasseled 0 tasselled 0 001 & 00056002 a 0000 | fringed or adorned with tassels -00060151 00 s 01 tricked-out 0 001 & 00056002 a 0000 | decorated in a particular way; "tricked-out cupboards looking like Georgian cabinets" -00060294 00 s 01 tufted 0 001 & 00056002 a 0000 | having or adorned with tufts; "a tufted bedspread" -00060397 00 a 02 unadorned 0 undecorated 4 005 ^ 01791911 a 0000 ^ 00457598 a 0000 ! 00056002 a 0101 & 00060605 a 0000 & 00060875 a 0000 | not decorated with something to increase its beauty or distinction -00060605 00 s 05 plain 0 bare 0 spare 0 unembellished 0 unornamented 0 002 & 00060397 a 0000 + 04697267 n 0101 | lacking embellishment or ornamentation; "a plain hair style"; "unembellished white walls"; "functional architecture featuring stark unornamented concrete" -00060875 00 s 01 untufted 0 001 & 00060397 a 0000 | not adorned with tufts; "untufted ears" -00060969 00 a 01 cholinergic 0 001 ! 00061088 a 0101 | releasing or activated by acetylcholine or a related compound -00061088 00 a 01 anticholinergic 0 002 + 02717901 n 0101 ! 00060969 a 0101 | inhibiting or blocking the action of acetylcholine at a receptor site; "anticholinergic drugs" -00061262 00 a 01 adroit 0 010 ^ 00147734 a 0000 + 05642175 n 0102 ! 00063277 a 0101 & 00061664 a 0000 & 00061885 a 0000 & 00062152 a 0000 & 00062367 a 0000 & 00062626 a 0000 & 00062740 a 0000 & 00063087 a 0000 | quick or skillful or adept in action or thought; "an exceptionally adroit pianist"; "an adroit technician"; "his adroit replies to hecklers won him many followers"; "an adroit negotiator" -00061664 00 s 02 clean 0 neat 0 001 & 00061262 a 0000 | free from clumsiness; precisely or deftly executed; "he landed a clean left on his opponent's cheek"; "a clean throw"; "the neat exactness of the surgeon's knife" -00061885 00 s 03 clever 0 cunning 0 ingenious 0 004 & 00061262 a 0000 + 04730367 n 0302 + 05633672 n 0303 + 04730367 n 0103 | showing inventiveness and skill; "a clever gadget"; "the cunning maneuvers leading to his success"; "an ingenious solution to the problem" -00062152 00 s 02 coordinated 0 co-ordinated 0 001 & 00061262 a 0000 | being dexterous in the use of more than one set of muscle movements; "she was usually good with her hands and well coordinated"- Mary McCarthy -00062367 00 s 03 deft 2 dexterous 0 dextrous 0 003 & 00061262 a 0000 + 05642815 n 0301 + 05642175 n 0103 | skillful in physical movements; especially of the hands; "a deft waiter"; "deft fingers massaged her face"; "dexterous of hand and inventive of mind" -00062626 00 s 01 handy 0 002 & 00061262 a 0000 + 05640924 n 0101 | skillful with the hands; "handy with an axe" -00062740 00 s 02 light-fingered 0 nimble-fingered 0 001 & 00061262 a 0000 | having nimble fingers literally or figuratively; especially for stealing or picking pockets; "a light-fingered burglar who can crack the combination of a bank vault"- Harry Hansen; "the light-fingered thoughtfulness...of the most civilized playwright of the era"- Time -00063087 00 s 01 quick-witted 0 002 & 00061262 a 0000 + 05619345 n 0103 | mentally nimble and resourceful; "quick-witted debater"; "saved an embarrassing situation with quick-witted tact" -00063277 00 a 01 maladroit 0 007 ^ 01140514 a 0000 + 05648459 n 0105 ! 00061262 a 0101 & 00063563 a 0000 & 00063953 a 0000 & 00064176 a 0000 & 00064365 a 0000 | not adroit; "a maladroit movement of his hand caused the car to swerve"; "a maladroit translation"; "maladroit propaganda" -00063563 00 s 08 bumbling 0 bungling 0 butterfingered 0 ham-fisted 0 ham-handed 0 handless 0 heavy-handed 0 left-handed 0 001 & 00063277 a 0000 | lacking physical movement skills, especially with the hands; "a bumbling mechanic"; "a bungling performance"; "ham-handed governmental interference"; "could scarcely empty a scuttle of ashes, so handless was the poor creature"- Mary H. Vorse -00063953 00 s 02 inept 0 tactless 0 003 & 00063277 a 0000 + 04846243 n 0201 + 04721058 n 0103 | revealing lack of perceptiveness or judgment or finesse; "an inept remark"; "it was tactless to bring up those disagreeable" -00064176 00 s 01 uncoordinated 0 001 & 00063277 a 0000 | lacking the skillful and effective interaction of muscle movements; "his movements are uncoordinated"; "an uncoordinated toddler" -00064365 00 s 02 unmechanical 0 nonmechanical 0 001 & 00063277 a 0000 | (of a person) lacking mechanical skills -00064479 00 a 01 advantageous 0 009 ^ 00931555 a 0000 ^ 01660994 a 0000 ^ 01870889 a 0000 + 05155821 n 0101 + 05160796 n 0103 ! 00065488 a 0101 & 00064787 a 0000 & 00065064 a 0000 & 00065184 a 0000 | giving an advantage; "a contract advantageous to our country"; "socially advantageous to entertain often" -00064787 00 s 02 beneficial 0 good 0 003 & 00064479 a 0000 + 05142180 n 0202 + 05142641 n 0101 | promoting or enhancing well-being; "an arms limitation agreement beneficial to all countries"; "the beneficial effects of a temperate climate"; "the experience was good for her" -00065064 00 s 02 plus 0 positive 0 001 & 00064479 a 0000 | involving advantage or good; "a plus (or positive) factor" -00065184 00 s 02 discriminatory 0 preferential 0 003 & 00064479 a 0000 + 06200344 n 0202 + 02512305 v 0101 | manifesting partiality; "a discriminatory tax"; "preferential tariff rates"; "preferential treatment"; "a preferential shop gives priority or advantage to union members in hiring or promoting" -00065488 00 a 01 disadvantageous 0 006 ^ 00932367 a 0000 ^ 01160031 a 0000 ^ 01661914 a 0000 + 05161614 n 0101 ! 00064479 a 0101 & 00065667 a 0000 | constituting a disadvantage -00065667 00 s 02 minus 0 negative 0 001 & 00065488 a 0000 | involving disadvantage or harm; "minus (or negative) factors" -00065791 00 a 02 adventurous 0 adventuresome 0 009 ^ 00249721 a 0000 ^ 00262792 a 0000 ^ 00326436 a 0000 + 00796315 n 0101 + 04859177 n 0101 ! 00066800 a 0101 & 00066146 a 0000 & 00066565 a 0000 & 00066703 a 0000 | willing to undertake or seeking out new and daring enterprises; "adventurous pioneers"; "the risks and gains of an adventuresome economy" -00066146 00 s 04 audacious 0 daring 0 venturesome 0 venturous 0 006 & 00065791 a 0000 + 13342692 n 0402 + 01117164 n 0401 + 04859177 n 0302 + 04859449 n 0101 + 04859449 n 0102 | disposed to venture or take risks; "audacious visions of the total conquest of space"; "an audacious interpretation of two Jacobean dramas"; "the most daring of contemporary fiction writers"; "a venturesome investor"; "a venturous spirit" -00066565 00 s 01 sporting 0 001 & 00065791 a 0000 | involving risk or willingness to take a risk; "a sporting chance"; "sporting blood" -00066703 00 s 02 swaggering 0 swashbuckling 0 001 & 00065791 a 0000 | flamboyantly adventurous -00066800 00 a 01 unadventurous 0 004 ^ 00325281 a 0000 ^ 00251809 a 0000 ! 00065791 a 0101 & 00066933 a 0000 | lacking in boldness -00066933 00 s 01 safe 0 002 & 00066800 a 0000 + 04856308 n 0101 | (of an undertaking) secure from risk -00067038 00 a 01 advisable 0 007 ^ 01898129 a 0000 ^ 02569130 a 0000 + 00872886 v 0102 + 05160399 n 0101 ! 00067767 a 0101 & 00067379 a 0000 & 00067638 a 0000 | worthy of being recommended or suggested; prudent or wise; "such action is neither necessary nor advisable"; "extreme caution is advisable"; "it is advisable to telephone first" -00067379 00 s 02 better(p) 0 best(p) 0 002 & 00067038 a 0000 ;u 06322693 n 0000 | (comparative and superlative of `well') wiser or more advantageous and hence advisable; "it would be better to speak to him"; "the White House thought it best not to respond" -00067638 00 s 01 well(p) 0 001 & 00067038 a 0000 | wise or advantageous and hence advisable; "it would be well to start early" -00067767 00 a 02 inadvisable 0 unadvisable 0 004 ^ 02570282 a 0000 ^ 01899360 a 0000 + 05165028 n 0101 ! 00067038 a 0101 | not prudent or wise; not recommended; "running on the ice is inadvisable" -00067966 00 a 02 well-advised 0 advised 2 003 ^ 02569130 a 0000 ! 00068278 a 0101 & 00068180 a 0000 | having the benefit of careful prior consideration or counsel; "a well-advised delay in carrying out the plan" -00068180 00 s 01 considered 0 001 & 00067966 a 0000 | carefully weighed; "a considered opinion" -00068278 00 a 02 ill-advised 0 unadvised 2 003 ^ 02570282 a 0000 ^ 01899360 a 0000 ! 00067966 a 0101 | without careful prior deliberation or counsel; "ill-advised efforts"; "it would be ill-advised to accept the offer"; "took the unadvised measure of going public with the accusations" -00068566 00 a 03 aerobic 0 aerophilic 0 aerophilous 0 003 ! 00069060 a 0101 & 00068738 a 0000 & 00068883 a 0000 | depending on free oxygen or air; "aerobic fermentation" -00068738 00 s 01 aerobiotic 0 002 & 00068566 a 0000 + 11473685 n 0101 | living or active only in the presence of oxygen; "aerobiotic bacteria" -00068883 00 s 01 oxidative 0 003 & 00068566 a 0000 + 00239321 v 0103 + 00238867 v 0103 | taking place in the presence of oxygen; "oxidative glycolysis"; "oxidative rancidity" -00069060 00 a 02 anaerobic 0 anaerobiotic 0 002 + 01327028 n 0201 ! 00068566 a 0101 | living or active in the absence of free oxygen; "anaerobic bacteria" -00069217 00 a 01 aerobic 2 002 + 00625858 n 0101 ! 00069427 a 0101 | based on or using the principles of aerobics; enhancing respiratory and circulatory efficiency; "aerobic dance"; "running is very aerobic" -00069427 00 a 01 anaerobic 2 001 ! 00069217 a 0101 | not aerobic; "isometric exercises are anaerobic" -00069531 00 a 04 aesthetic 0 esthetic 0 aesthetical 0 esthetical 0 008 + 06161223 n 0402 + 06161223 n 0301 + 05968971 n 0101 ! 00070583 a 0101 & 00069948 a 0000 & 00070111 a 0000 & 00070288 a 0000 & 00070427 a 0000 | concerning or characterized by an appreciation of beauty or good taste; "the aesthetic faculties"; "an aesthetic person"; "aesthetic feeling"; "the illustrations made the book an aesthetic success" -00069948 00 s 01 artistic 0 003 & 00069531 a 0000 + 09812338 n 0101 + 02743547 n 0101 | satisfying aesthetic standards and sensibilities; "artistic workmanship" -00070111 00 s 02 cosmetic 0 enhancive 0 002 & 00069531 a 0000 + 00230033 v 0201 | serving an aesthetic purpose in beautifying the body; "cosmetic surgery"; "enhansive makeup" -00070288 00 s 01 painterly 0 003 & 00069531 a 0000 ;c 06156968 n 0000 + 10391653 n 0101 | having qualities unique to the art of painting -00070427 00 s 01 sensuous 0 003 & 00069531 a 0000 + 05651971 n 0101 + 07513413 n 0101 | taking delight in beauty; "the sensuous joy from all things fair" -00070583 00 a 02 inaesthetic 0 unaesthetic 0 002 ! 00069531 a 0101 & 00070839 a 0000 | violating aesthetic canons or requirements; deficient in tastefulness or beauty; "inaesthetic and quite unintellectual"; "peered through those inaesthetic spectacles" -00070839 00 s 02 inartistic 0 unartistic 0 001 & 00070583 a 0000 | lacking aesthetic sensibility; -00070939 00 a 01 affected 0 008 ^ 01559903 a 0000 ! 00071992 a 0101 & 00071142 a 0000 & 00071242 a 0000 & 00071427 a 0000 & 00071559 a 0000 & 00071739 a 0000 & 00071897 a 0000 | acted upon; influenced -00071142 00 s 01 impressed(p) 0 001 & 00070939 a 0000 | deeply or markedly affected or influenced -00071242 00 s 03 smitten 0 stricken 0 struck 0 002 & 00070939 a 0000 ;u 06307152 n 0000 | (used in combination) affected by something overwhelming; "conscience-smitten"; "awe-struck" -00071427 00 s 01 stage-struck 0 001 & 00070939 a 0000 | infatuated with or enthralled by the theater especially the desire to act -00071559 00 s 01 subject 0 002 & 00070939 a 0000 + 10668666 n 0101 | likely to be affected by something; "the bond is subject to taxation"; "he is subject to fits of depression" -00071739 00 s 01 taken 0 001 & 00070939 a 0000 | be affected with an indisposition; "the child was taken ill"; "couldn't tell when he would be taken drunk" -00071897 00 s 01 wonder-struck 0 001 & 00070939 a 0000 | affected by or overcome with wonder -00071992 00 a 01 unaffected 0 006 ^ 01560320 a 0000 ! 00070939 a 0101 & 00072281 a 0000 & 00072436 a 0000 & 00072673 a 0000 & 00072790 a 0000 | undergoing no change when acted upon; "entirely unaffected by each other's writings"; "fibers remained apparently unaffected by the treatment" -00072281 00 s 01 immune 0 002 & 00071992 a 0000 + 05033906 n 0101 | (usually followed by `to') not affected by a given influence; "immune to persuasion" -00072436 00 s 01 superior(p) 0 001 & 00071992 a 0000 | (often followed by `to') above being affected or influenced by; "he is superior to fear"; "an ignited firework proceeds superior to circumstances until its blazing vitality fades" -00072673 00 s 01 unimpressed 0 001 & 00071992 a 0000 | not moved to serious regard; "trying to appear unimpressed" -00072790 00 s 03 uninfluenced 0 unswayed 0 untouched 0 001 & 00071992 a 0000 | not influenced or affected; "stewed in its petty provincialism untouched by the brisk debates that stirred the old world"- V.L.Parrington; "unswayed by personal considerations" -00073048 00 a 02 affected 1 unnatural 4 011 ^ 01798828 a 0000 = 04787763 n 0000 + 04787530 n 0201 + 04787763 n 0101 ! 00074346 a 0101 & 00073358 a 0000 & 00073465 a 0000 & 00073761 a 0000 & 00073935 a 0000 & 00074094 a 0000 & 00074216 a 0000 | speaking or behaving in an artificial way to make an impression -00073358 00 s 02 agonistic 0 strained 0 001 & 00073048 a 0000 | struggling for effect; "agonistic poses" -00073465 00 s 04 artificial 0 contrived 0 hokey 0 stilted 0 001 & 00073048 a 0000 | artificially formal; "that artificial humility that her husband hated"; "contrived coyness"; "a stilted letter of acknowledgment"; "when people try to correct their speech they develop a stilted pronunciation" -00073761 00 s 03 constrained 0 forced 0 strained 2 001 & 00073048 a 0000 | lacking spontaneity; not natural; "a constrained smile"; "forced heartiness"; "a strained smile" -00073935 00 s 01 elocutionary 0 002 & 00073048 a 0000 + 07083246 n 0101 | (used of style of speaking) overly embellished; "an elocutionary Oxonian delivery" -00074094 00 s 01 mannered 0 001 & 00073048 a 0000 | having unnatural mannerisms; "brief, mannered and unlifelike idiom" -00074216 00 s 01 plummy 0 001 & 00073048 a 0000 | (of a voice) affectedly mellow and rich; "the radio announcer's plummy voice" -00074346 00 a 01 unaffected 1 008 ^ 01799035 a 0000 = 04787763 n 0000 + 04786326 n 0101 ! 00073048 a 0101 & 00074594 a 0000 & 00074741 a 0000 & 00074867 a 0000 & 00075019 a 0000 | free of artificiality; sincere and genuine; "an unaffected grace" -00074594 00 s 02 lifelike 0 natural 0 002 & 00074346 a 0000 + 04785908 n 0201 | free from artificiality; "a lifelike pose"; "a natural reaction" -00074741 00 s 01 unmannered 0 001 & 00074346 a 0000 | without artificiality; natural; "the doctor's quiet unmannered entry" -00074867 00 s 01 unselfconscious 0 002 & 00074346 a 0000 + 05677097 n 0101 | not self-conscious; "she grew up with him in unselfconscious friendship" -00075019 00 s 01 unstilted 0 001 & 00074346 a 0000 | flowing naturally and continuously; "unstilted conversation" -00075135 00 a 02 affirmative 0 affirmatory 0 007 ^ 00995775 a 0000 ^ 01817500 a 0000 + 01011725 v 0201 + 07203696 n 0101 + 01011725 v 0101 ! 00075515 a 0101 & 00075389 a 0000 | affirming or giving assent; "an affirmative decision"; "affirmative votes" -00075389 00 s 01 assentient 0 002 & 00075135 a 0000 + 00804139 v 0101 | expressing agreement or consent; "an assenting nod" -00075515 00 a 01 negative 1 007 ^ 01293158 a 0000 ^ 00996448 a 0000 + 05167618 n 0102 + 00823436 v 0102 + 00666886 v 0101 ! 00075135 a 0101 & 00075737 a 0000 | expressing or consisting of a negation or refusal or denial -00075737 00 s 03 dissentient 0 dissenting(a) 0 dissident 0 006 & 00075515 a 0000 + 10018021 n 0302 + 07181208 n 0301 + 02521410 v 0103 + 00804802 v 0103 + 00804653 v 0101 | disagreeing, especially with a majority -00075952 00 a 01 acceptive 0 003 + 00719231 v 0101 ! 00076341 a 0101 & 00076127 a 0000 | inclined to accept rather than reject; "she was seldom acceptive of my suggestions" -00076127 00 s 01 accepting 0 001 & 00075952 a 0000 | tolerating without protest; "always more accepting of coaching suggestion than her teammates"; "the atmosphere was judged to be more supporting and accepting" -00076341 00 a 01 rejective 0 006 + 00796976 v 0101 + 00807178 v 0102 + 00685683 v 0101 ! 00075952 a 0101 & 00076580 a 0000 & 00076739 a 0000 | rejecting or tending to reject; "rejective or overcritical attitudes of disappointed parents" -00076580 00 s 01 dismissive 0 002 & 00076341 a 0000 + 00900728 v 0101 | stopping to associate with; "they took dismissive action after the third violation" -00076739 00 s 01 repudiative 0 003 & 00076341 a 0000 + 00816828 v 0101 + 00686039 v 0101 | rejecting emphatically; e.g. refusing to pay or disowning; "a veto is a repudiative act" -00076921 00 a 01 afloat(p) 0 004 ! 00077449 a 0101 & 00077059 a 0000 & 00077196 a 0000 & 00077354 a 0000 | borne on the water; floating -00077059 00 s 01 adrift(p) 0 001 & 00076921 a 0000 | afloat on the surface of a body of water; "after the storm the boats were adrift" -00077196 00 s 01 floating 0 001 & 00076921 a 0000 | borne up by or suspended in a liquid; "the ship is still floating"; "floating logs"; "floating seaweed" -00077354 00 s 01 waterborne 0 001 & 00076921 a 0000 | supported by water; "waterborne craft" -00077449 00 a 01 aground(p) 0 001 ! 00076921 a 0101 | stuck in a place where a ship can no longer float; "a ship aground offshore"; "a boat aground on the beach waiting for the tide to lift it" -00077645 00 a 01 afraid(p) 0 027 ^ 00264776 a 0000 ^ 00251809 a 0000 = 07519253 n 0000 ! 00081671 a 0101 & 00078329 a 0000 & 00078463 a 0000 & 00078576 a 0000 & 00078705 a 0000 & 00078851 a 0000 & 00078942 a 0000 & 00079069 a 0000 & 00079262 a 0000 & 00079356 a 0000 & 00079485 a 0000 & 00079629 a 0000 & 00079786 a 0000 & 00079896 a 0000 & 00080098 a 0000 & 00080213 a 0000 & 00080357 a 0000 & 00080698 a 0000 & 00080861 a 0000 & 00080981 a 0000 & 00081087 a 0000 & 00081234 a 0000 & 00081417 a 0000 & 00081513 a 0000 | filled with fear or apprehension; "afraid even to turn his head"; "suddenly looked afraid"; "afraid for his life"; "afraid of snakes"; "afraid to ask questions" -00078329 00 s 01 acrophobic 0 002 & 00077645 a 0000 + 14382766 n 0101 | suffering from acrophobia; abnormally afraid of high places -00078463 00 s 02 afeard(p) 0 afeared(p) 0 002 & 00077645 a 0000 ;u 07156497 n 0000 | a pronunciation of afraid -00078576 00 s 04 aghast(p) 0 appalled 0 dismayed 0 shocked 0 001 & 00077645 a 0000 | struck with fear, dread, or consternation -00078705 00 s 01 agoraphobic 0 002 & 00077645 a 0000 + 14381840 n 0101 | suffering from agoraphobia; abnormally afraid of open or public places -00078851 00 s 01 alarmed 0 001 & 00077645 a 0000 | experiencing a sudden sense of danger -00078942 00 s 01 algophobic 0 002 & 00077645 a 0000 + 14382871 n 0101 | suffering from algophobia; abnormally afraid of pain -00079069 00 s 01 apprehensive 0 003 & 00077645 a 0000 + 01782432 v 0101 + 07521674 n 0102 | in fear or dread of possible evil or harm; "apprehensive for one's life"; "apprehensive of danger" -00079262 00 s 01 hangdog 0 001 & 00077645 a 0000 | frightened into submission or compliance -00079356 00 s 01 claustrophobic 0 001 & 00077645 a 0000 | suffering from claustrophobia; abnormally afraid of closed-in places -00079485 00 s 01 fearful 0 002 & 00077645 a 0000 + 07519253 n 0102 | experiencing or showing fear; "a fearful glance"; "fearful of criticism" -00079629 00 s 02 frightened 0 scared 0 001 & 00077645 a 0000 | made afraid; "the frightened child cowered in the corner"; "too shocked and scared to move" -00079786 00 s 03 horrified 0 horror-stricken 0 horror-struck 0 001 & 00077645 a 0000 | stricken with horror -00079896 00 s 01 hunted 0 001 & 00077645 a 0000 | reflecting the fear or terror of one who is hunted; "the hopeless hunted look on the prisoner's face"; "a glitter of apprehension in her hunted eyes" -00080098 00 s 02 hydrophobic 0 aquaphobic 0 002 & 00077645 a 0000 + 14382967 n 0201 | abnormally afraid of water -00080213 00 s 01 mysophobic 0 002 & 00077645 a 0000 + 14383848 n 0101 | suffering from mysophobia; abnormally afraid of dirt or contamination -00080357 00 s 06 panicky 0 panicked 0 panic-stricken 0 panic-struck 0 terrified 0 frightened 2 002 & 00077645 a 0000 + 07520612 n 0101 | thrown into a state of intense fear or desperation; "became panicky as the snow deepened"; "felt panicked before each exam"; "trying to keep back the panic-stricken crowd"; "the terrified horse bolted" -00080698 00 s 01 numb 0 001 & 00077645 a 0000 | so frightened as to be unable to move; stunned or paralyzed with terror; petrified; "too numb with fear to move" -00080861 00 s 01 shitless 0 002 & 00077645 a 0000 ;u 07124340 n 0000 | extremely frightened; "he was scared shitless" -00080981 00 s 02 terror-stricken 0 terror-struck 0 001 & 00077645 a 0000 | struck or filled with terror -00081087 00 s 01 triskaidekaphobic 0 002 & 00077645 a 0000 + 14384684 n 0101 | suffering from triskaidekaphobia (abnormal fear of the number 13) -00081234 00 s 01 unnerved 0 001 & 00077645 a 0000 | deprived of courage and strength; "the steeplejack, exhausted and unnerved, couldn't hold on to his dangerous perch much longer" -00081417 00 s 01 white-lipped 0 001 & 00077645 a 0000 | having white lips from fear or terror -00081513 00 s 01 xenophobic 0 002 & 00077645 a 0000 + 14386022 n 0101 | suffering from xenophobia; having abnormal fear or hatred of the strange or foreign -00081671 00 a 02 unafraid(p) 0 fearless 0 008 ^ 00249721 a 0000 ^ 00262792 a 0000 = 07519253 n 0000 + 07526182 n 0201 ! 00077645 a 0101 & 00081930 a 0000 & 00082034 a 0000 & 00082160 a 0000 | oblivious of dangers or perils or calmly resolute in facing them -00081930 00 s 01 unapprehensive 0 001 & 00081671 a 0000 | not recognizing or slow to recognize danger -00082034 00 s 04 unblinking 0 unflinching 0 unintimidated 0 unshrinking 0 001 & 00081671 a 0000 | not shrinking from danger -00082160 00 s 01 unfrightened 0 001 & 00081671 a 0000 | not affected by fright -00082241 00 a 01 aggressive 0 015 ^ 00156101 a 0000 ^ 01244410 a 0000 ^ 01628946 a 0000 + 04837232 n 0101 ! 00084956 a 0101 & 00082766 a 0000 & 00083003 a 0000 & 00083296 a 0000 & 00083478 a 0000 & 00083749 a 0000 & 00083876 a 0000 & 00084022 a 0000 & 00084353 a 0000 & 00084661 a 0000 & 00084795 a 0000 | having or showing determination and energetic pursuit of your ends; "an aggressive businessman"; "an aggressive basketball player"; "he was aggressive and imperious; positive in his convictions"; "aggressive drivers" -00082766 00 s 03 battleful 0 bellicose 0 combative 0 003 & 00082241 a 0000 + 01092366 v 0302 + 04837615 n 0301 | having or showing a ready disposition to fight; "bellicose young officers"; "a combative impulse"; "a contentious nature" -00083003 00 s 02 competitive 0 militant 0 004 & 00082241 a 0000 + 04837615 n 0203 + 04837615 n 0202 + 04837425 n 0101 | showing a fighting disposition; "highly competitive sales representative"; "militant in fighting for better wages for workers"; "his self-assertive and ubiquitous energy" -00083296 00 s 02 hard-hitting 0 high-pressure 0 001 & 00082241 a 0000 | aggressively and persistently persuasive; "a hard-hitting advertising campaign"; "a high-pressure salesman" -00083478 00 s 01 hostile 0 003 & 00082241 a 0000 ;c 01094725 n 0000 + 00964569 n 0102 | unsolicited and resisted by the management of the target company ( used of attempts to buy or take control of a business); "hostile takeover"; "hostile tender offer"; "hostile bid" -00083749 00 s 01 in-your-face 0 001 & 00082241 a 0000 | blatantly aggressive; "on-line hard-boiled in-your-face pornography" -00083876 00 s 01 obstreperous 0 002 & 00082241 a 0000 + 04908283 n 0101 | boisterously and noisily aggressive; "kept up an obstreperous clamor" -00084022 00 s 06 predatory 0 rapacious 0 raptorial 0 ravening 0 vulturine 0 vulturous 0 003 & 00082241 a 0000 + 01616318 n 0601 + 01604330 n 0302 | living by preying on other animals especially by catching living prey; "a predatory bird"; "the rapacious wolf"; "raptorial birds"; "ravening wolves"; "a vulturine taste for offal" -00084353 00 s 02 pugnacious 0 rough 0 003 & 00082241 a 0000 + 13977184 n 0203 + 04643662 n 0103 | ready and able to resort to force or violence; "pugnacious spirits...lamented that there was so little prospect of an exhilarating disturbance"- Herman Melville; "they were rough and determined fighting men" -00084661 00 s 01 scrappy 0 003 & 00082241 a 0000 + 01170962 n 0104 + 04837814 n 0101 | full of fighting spirit; "a scrappy admiral" -00084795 00 s 01 truculent 0 003 & 00082241 a 0000 + 04644161 n 0102 + 04644161 n 0101 | defiantly aggressive; "a truculent speech against the new government" -00084956 00 a 02 unaggressive 0 nonaggressive 0 004 ^ 01740892 a 0000 ^ 00156839 a 0000 ! 00082241 a 0101 & 00085139 a 0000 | not aggressive; not given to fighting or assertiveness -00085139 00 s 01 low-pressure 0 001 & 00084956 a 0000 | not forceful; "a low-pressure salesman"; "a low-pressure campaign" -00085264 00 a 01 agitated 0 015 ^ 00531342 a 0000 ^ 00919542 a 0000 ^ 01737241 a 0000 ^ 02405326 a 0000 ^ 01923391 a 0000 ^ 02303077 a 0000 ! 00087152 a 0101 & 00085630 a 0000 & 00085870 a 0000 & 00086005 a 0000 & 00086210 a 0000 & 00086341 a 0000 & 00086606 a 0000 & 00086801 a 0000 & 00087022 a 0000 | troubled emotionally and usually deeply; "agitated parents" -00085630 00 s 04 aroused 0 emotional 0 excited 0 worked_up 0 002 & 00085264 a 0000 + 04626280 n 0201 | (of persons) excessively affected by emotion; "he would become emotional over nothing at all"; "she was worked up about all the noise" -00085870 00 s 02 distraught 0 overwrought 0 001 & 00085264 a 0000 | deeply agitated especially from emotion; "distraught with grief" -00086005 00 s 02 jolted 0 shaken 0 001 & 00085264 a 0000 | disturbed psychologically as if by a physical jolt or shock; "retrieved his named from her jolted memory"; "the accident left her badly shaken" -00086210 00 s 02 feverish 0 hectic 0 001 & 00085264 a 0000 | marked by intense agitation or emotion; "worked at a feverish pace" -00086341 00 s 04 frantic 0 frenetic 0 phrenetic 0 frenzied 0 001 & 00085264 a 0000 | excessively agitated; distraught with fear or other violent emotion; "frantic with anger and frustration"; "frenetic screams followed the accident"; "a frenzied look in his eye" -00086606 00 s 01 hysterical 0 003 & 00085264 a 0000 + 14391876 n 0105 + 07520507 n 0101 | marked by excessive or uncontrollable emotion; "hysterical laughter"; "a mob of hysterical vigilantes" -00086801 00 s 01 psychedelic 0 001 & 00085264 a 0000 | (of a mental state) characterized by intense and distorted perceptions and hallucinations and feelings of euphoria or sometimes despair; "a psychedelic experience" -00087022 00 s 01 wild-eyed 0 001 & 00085264 a 0000 | appearing extremely agitated; "crowded the wild-eyed animals into a truck" -00087152 00 a 01 unagitated 0 007 ^ 00529266 a 0000 ^ 02531422 a 0000 ^ 01922763 a 0000 ^ 02407603 a 0000 ^ 02301560 a 0000 ^ 00920881 a 0000 ! 00085264 a 0101 | not agitated or disturbed emotionally -00087354 00 a 01 agitated 2 007 ! 00088658 a 0101 & 00087597 a 0000 & 00087837 a 0000 & 00088055 a 0000 & 00088157 a 0000 & 00088328 a 0000 & 00088545 a 0000 | physically disturbed or set in motion; "the agitated mixture foamed and bubbled" -00087597 00 s 05 churning 0 roiling 0 roiled 0 roily 0 turbulent 0 003 & 00087354 a 0000 + 11520989 n 0502 + 11520989 n 0501 | (of a liquid) agitated vigorously; in a state of turbulence; "the river's roiling current"; "turbulent rapids" -00087837 00 s 02 churning 2 churned-up 2 001 & 00087354 a 0000 | moving with or producing or produced by vigorous agitation; "winds whipped the piled leaves into churning masses"; "a car stuck in the churned-up mud" -00088055 00 s 01 jolted 0 001 & 00087354 a 0000 | bumped or shaken jerkily; "the jolted passengers" -00088157 00 s 02 rippled 0 ruffled 0 001 & 00087354 a 0000 | shaken into waves or undulations as by wind; "the rippled surface of the pond"; "with ruffled flags flying" -00088328 00 s 01 seething 0 001 & 00087354 a 0000 | in constant agitation; "a seething flag-waving crowd filled the streets"; "a seething mass of maggots"; "lovers and madmen have such seething brains"- Shakespeare -00088545 00 s 01 stirred 0 001 & 00087354 a 0000 | set into a usually circular motion in order to mix or blend -00088658 00 a 01 unagitated 2 003 ! 00087354 a 0101 & 00088792 a 0000 & 00088899 a 0000 | not physically disturbed or set in motion -00088792 00 s 01 nonturbulent 0 001 & 00088658 a 0000 | (of a liquid) not turbulent; "nonturbulent flow" -00088899 00 s 01 unstirred 0 001 & 00088658 a 0000 | not agitated by stirring; "the ingredients sat in the bowl unstirred while she buttered the pan" -00089051 00 a 01 agreeable 0 003 + 04779053 n 0101 + 04640927 n 0102 ! 00089355 a 0101 | conforming to your own liking or feelings or nature; "Is the plan agreeable to you?"; "he's an agreeable fellow"; "My idea of an agreeable person...is a person who agrees with me"- Disraeli; "an agreeable manner" -00089355 00 a 01 disagreeable 0 006 + 04779895 n 0101 ! 00089051 a 0101 & 00089550 a 0000 & 00090219 a 0000 & 00090408 a 0000 & 00090628 a 0000 | not to your liking; "a disagreeable situation" -00089550 00 s 0d annoying 0 bothersome 0 galling 0 irritating 0 nettlesome 0 pesky 0 pestering 0 pestiferous 0 plaguy 0 plaguey 0 teasing 0 vexatious 0 vexing 0 003 & 00089355 a 0000 + 05831939 n 0a01 + 05831939 n 0901 | causing irritation or annoyance; "tapping an annoying rhythm on his glass with his fork"; "aircraft noise is particularly bothersome near the airport"; "found it galling to have to ask permission"; "an irritating delay"; "nettlesome paperwork"; "a pesky mosquito"; "swarms of pestering gnats"; "a plaguey newfangled safety catch"; "a teasing and persistent thought annoyed him"; "a vexatious child"; "it is vexing to have to admit you are wrong" -00090219 00 s 02 harsh 0 abrasive 0 003 & 00089355 a 0000 + 04780114 n 0201 + 04639732 n 0103 | sharply disagreeable; rigorous; "the harsh facts of court delays"; "an abrasive character" -00090408 00 s 04 nerve-racking 0 nerve-wracking 0 stressful 0 trying 0 001 & 00089355 a 0000 | extremely irritating to the nerves; "nerve-racking noise"; "the stressful days before a war"; "a trying day at the office" -00090628 00 s 01 unsweet 0 001 & 00089355 a 0000 | distasteful; "he found life unsweet" -00090718 00 a 02 air-to-surface 0 air-to-ground 0 002 ! 00090917 a 0101 ! 00091121 a 0101 | operating from or designed to be fired from aircraft at targets on the ground; "air-to-surface missiles" -00090917 00 a 01 air-to-air 0 002 ! 00091121 a 0101 ! 00090718 a 0101 | operating between or launched from or involving rockets or aircraft in flight; "air-to-air missiles"; "air-to-air communications" -00091121 00 a 01 surface-to-air 0 002 ! 00090718 a 0101 ! 00090917 a 0101 | operating from or designed to be launched from the ground against an airborne target; "surface-to-air missiles" -00091311 00 a 02 alert 0 watchful 0 012 ^ 00186616 a 0000 ^ 00804695 a 0000 ^ 00162386 a 0000 + 05705722 n 0201 + 04664778 n 0201 + 14031660 n 0101 + 04664628 n 0101 ! 00092551 a 0101 & 00091764 a 0000 & 00092136 a 0000 & 00092275 a 0000 & 00092391 a 0000 | engaged in or accustomed to close observation; "caught by a couple of alert cops"; "alert enough to spot the opportunity when it came"; "constantly alert and vigilant, like a sentinel on duty" -00091764 00 s 04 argus-eyed 0 open-eyed 0 vigilant 0 wakeful 0 004 & 00091311 a 0000 + 05705722 n 0402 + 05705722 n 0303 + 04664778 n 0302 | carefully observant or attentive; on the lookout for possible danger; "a policy of open-eyed awareness"; "the vigilant eye of the town watch"; "there was a watchful dignity in the room"; "a watchful parent with a toddler in tow" -00092136 00 s 01 fly 0 003 & 00091311 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) not to be deceived or hoodwinked -00092275 00 s 02 heads-up 0 wide-awake 0 001 & 00091311 a 0000 | fully alert and watchful; "played heads-up ball" -00092391 00 s 02 lidless 0 sleepless 0 001 & 00091311 a 0000 | always watchful; "to an eye like mine, a lidless watcher of the public weal"- Alfred Tennyson -00092551 00 a 03 unalert 0 unwatchful 0 unvigilant 0 002 ^ 00162990 a 0000 ! 00091311 a 0101 | not alert to what is potentially dangerous -00092691 00 a 01 algorithmic 0 003 + 05847438 n 0101 ! 00092933 a 0101 & 00092848 a 0000 | of or relating to or having the characteristics of an algorithm -00092848 00 s 01 recursive 0 001 & 00092691 a 0000 | of or relating to a recursion -00092933 00 a 01 heuristic 0 003 + 05847956 n 0101 ! 00092691 a 0101 & 00093108 a 0000 | of or relating to or using a general formulation that serves to guide investigation -00093108 00 s 01 trial-and-error 0 001 & 00092933 a 0000 | relating to solving problems by experience rather than theory; "they adopted a trial-and-error procedure" -00093275 00 a 01 alienable 0 005 ;c 08441203 n 0000 + 02221010 v 0102 ! 00093810 a 0101 & 00093433 a 0000 & 00093556 a 0000 | transferable to another owner -00093433 00 s 01 appropriable 0 002 & 00093275 a 0000 + 00724150 v 0102 | that can be appropriated; "appropriable funds" -00093556 00 s 05 assignable 0 conveyable 0 negotiable 0 transferable 0 transferrable 0 005 & 00093275 a 0000 + 04736516 n 0401 + 00761713 v 0302 + 02221454 v 0201 + 02228531 v 0101 | legally transferable to the ownership of another; "negotiable bonds" -00093810 00 a 02 inalienable 0 unalienable 0 005 ^ 01348258 a 0000 ! 00093275 a 0101 & 00094069 a 0000 & 00094239 a 0000 & 00094324 a 0000 | incapable of being repudiated or transferred to another; "endowed by their Creator with certain unalienable rights" -00094069 00 s 03 absolute 0 infrangible 0 inviolable 0 002 & 00093810 a 0000 + 04738398 n 0101 | not capable of being violated or infringed; "infrangible human rights" -00094239 00 s 01 non-negotiable 0 001 & 00093810 a 0000 | cannot be bought or sold -00094324 00 s 03 nontransferable 0 unassignable 0 untransferable 0 001 & 00093810 a 0000 | incapable of being transferred -00094448 00 a 02 alive(p) 1 live 0 009 ^ 00118066 a 0000 = 13961642 n 0000 = 05005809 n 0000 + 05005447 n 0203 + 05005447 n 0102 ! 00095280 a 0101 & 00094799 a 0000 & 00094941 a 0000 & 00095094 a 0000 | possessing life; "the happiest person alive"; "the nerve is alive"; "doctors are working hard to keep him alive"; "burned alive"; "a live canary" -00094799 00 s 01 liveborn 0 001 & 00094448 a 0000 | (of newborn infant) showing signs of life after birth; not stillborn; "a liveborn baby" -00094941 00 s 01 viable 0 002 & 00094448 a 0000 + 05056234 n 0101 | capable of life or normal growth and development; "viable seeds"; "a viable fetus" -00095094 00 s 01 vital 0 004 & 00094448 a 0000 + 00165103 v 0101 + 05171352 n 0101 + 05005809 n 0102 | manifesting or characteristic of life; "a vital, living organism"; "vital signs" -00095280 00 a 01 dead 1 023 = 13961642 n 0000 = 05005809 n 0000 + 05006519 n 0101 ! 00094448 a 0101 & 00095873 a 0000 & 00096072 a 0000 & 00096239 a 0000 & 00096414 a 0000 & 00096595 a 0000 & 00096815 a 0000 & 00096913 a 0000 & 00097022 a 0000 & 00097147 a 0000 & 00097305 a 0000 & 00097452 a 0000 & 00097577 a 0000 & 00097674 a 0000 & 00097768 a 0000 & 00097906 a 0000 & 00098043 a 0000 & 00098147 a 0000 & 00098307 a 0000 & 00098450 a 0000 | no longer having or seeming to have or expecting to have life; "the nerve is dead"; "a dead pallor"; "he was marked as a dead man by the assassin" -00095873 00 s 06 asleep(p) 0 at_peace(p) 2 at_rest(p) 0 deceased 0 departed 0 gone 0 003 & 00095280 a 0000 ;u 06605046 n 0000 + 09994943 n 0506 | dead; "he is deceased"; "our dear departed friend" -00096072 00 s 01 assassinated 0 001 & 00095280 a 0000 | murdered by surprise attack for political reasons; "the 20th century has seen too many assassinated leaders" -00096239 00 s 03 bloodless 0 exsanguine 0 exsanguinous 0 001 & 00095280 a 0000 | destitute of blood or apparently so; "the bloodless carcass of my Hector sold"- John Dryden -00096414 00 s 01 brain_dead 0 001 & 00095280 a 0000 | having irreversible loss of brain function as indicated by a persistent flat electroencephalogram; "was declared brain dead" -00096595 00 s 03 breathless 0 inanimate 0 pulseless 0 003 & 00095280 a 0000 + 05006285 n 0201 + 14370122 n 0103 | appearing dead; not breathing or having no perceptible pulse; "an inanimate body"; "pulseless and dead" -00096815 00 s 01 cold 0 001 & 00095280 a 0000 | lacking the warmth of life; "cold in his grave" -00096913 00 s 01 d.o.a. 0 001 & 00095280 a 0000 | abbreviation for `dead on arrival' at the emergency room -00097022 00 s 02 deathlike 0 deathly 0 001 & 00095280 a 0000 | having the physical appearance of death; "a deathly pallor" -00097147 00 s 01 defunct 0 002 & 00095280 a 0000 + 13963032 n 0102 | having ceased to exist or live; "the will of a defunct aunt"; "a defunct Indian tribe" -00097305 00 s 01 doomed 0 002 & 00095280 a 0000 + 07946694 n 0101 | marked for certain death; "the black spot told the old sailor he was doomed" -00097452 00 s 01 executed 0 001 & 00095280 a 0000 | put to death as punishment; "claimed the body of the executed traitor" -00097577 00 s 01 fallen 0 001 & 00095280 a 0000 | killed in battle; "to honor fallen soldiers" -00097674 00 s 01 late(a) 0 001 & 00095280 a 0000 | having died recently; "her late husband" -00097768 00 s 02 lifeless 1 exanimate 0 002 & 00095280 a 0000 + 05006285 n 0102 | deprived of life; no longer living; "a lifeless body" -00097906 00 s 01 murdered 0 001 & 00095280 a 0000 | killed unlawfully; "the murdered woman"; "lay a wreath on murdered Lincoln's bier" -00098043 00 s 01 nonviable 0 001 & 00095280 a 0000 | not capable of living or developing successfully -00098147 00 s 01 slain 1 001 & 00095280 a 0000 | killed; `slain' is formal or literary as in "slain warriors"; "a picture of St. George and the slain dragon" -00098307 00 s 01 stillborn 0 001 & 00095280 a 0000 | (of newborn infant) showing no signs of life at birth; not liveborn; "a stillborn baby" -00098450 00 s 01 stone-dead 0 001 & 00095280 a 0000 | as lifeless as a stone -00098529 00 a 01 apocrine 0 001 ! 00098736 a 0101 | (of exocrine glands) producing a secretion in which part of the secreting cell is released with the secretion; "mother's milk is one apocrine secretion" -00098736 00 a 01 eccrine 0 001 ! 00098529 a 0101 | (of exocrine glands) producing a clear aqueous secretion without releasing part of the secreting cell; important in regulating body temperature -00098933 00 a 01 artesian 0 001 ! 00099097 a 0101 | (of water) rising to the surface under internal hydrostatic pressure; "an artesian well"; "artesian pressure" -00099097 00 a 01 subartesian 0 001 ! 00098933 a 0101 | (of water) rising naturally in a well to a height appreciably above that of the surrounding water table but not flowing out of the well -00099290 00 a 01 live 1 004 ^ 00040325 a 0000 ! 00099874 a 0101 & 00099590 a 0000 & 00099704 a 0000 | exerting force or containing energy; "live coals"; "tossed a live cigarette out the window"; "got a shock from a live wire"; "live ore is unmined ore"; "a live bomb"; "a live ball is one in play" -00099590 00 s 01 in_play(p) 0 002 & 00099290 a 0000 ;c 00523513 n 0000 | of a ball; "the ball is still in play" -00099704 00 s 01 living(a) 0 001 & 00099290 a 0000 | (used of minerals or stone) in its natural state and place; not mined or quarried; "carved into the living stone"; -00099874 00 a 01 dead 2 006 ^ 00041051 a 0000 + 05006519 n 0101 ! 00099290 a 0101 & 00100213 a 0000 & 00100373 a 0000 & 00100506 a 0000 | not showing characteristics of life especially the capacity to sustain life; no longer exerting force or having energy or heat; "Mars is a dead planet"; "dead soil"; "dead coals"; "the fire is dead" -00100213 00 s 02 extinct 0 out(p) 0 001 & 00099874 a 0000 | being out or having grown cold; "threw his extinct cigarette into the stream"; "the fire is out" -00100373 00 s 01 lifeless 0 002 & 00099874 a 0000 + 05006285 n 0102 | not having the capacity to support life; "a lifeless planet" -00100506 00 s 01 out_of_play(p) 0 002 & 00099874 a 0000 ;c 00523513 n 0000 | (of a ball) "a ball that is out of play is dead" -00100634 00 a 02 alphabetic 0 alphabetical 0 004 + 06497459 n 0201 ! 00101152 a 0101 & 00100881 a 0000 & 00100989 a 0000 | arranged in order according to the alphabet; "an alphabetic arrangement"; "dictionaries list words in alphabetical order" -00100881 00 s 01 abecedarian 0 001 & 00100634 a 0000 | alphabetically arranged (as for beginning readers) -00100989 00 s 02 alphabetized 0 alphabetised 0 001 & 00100634 a 0000 | having been put in alphabetical order; "the cards are all alphabetized, as you requested" -00101152 00 a 01 analphabetic 0 001 ! 00100634 a 0101 | not alphabetic; "an analphabetic arrangement of letters"; "Jesperson's system of phonetic transcription is analphabetic" -00101331 00 a 01 altricial 0 001 ! 00101452 a 0101 | (of hatchlings) naked and blind and dependent on parents for food -00101452 00 a 01 precocial 0 001 ! 00101331 a 0101 | (of hatchlings) covered with down and having eyes open; capable of leaving the nest within a few days -00101609 00 a 02 altruistic 0 selfless 0 005 ^ 02099019 a 0000 + 04833276 n 0202 + 01205961 n 0201 + 10421956 n 0102 ! 00101800 a 0101 | showing unselfish concern for the welfare of others -00101800 00 a 05 egoistic 0 egoistical 0 egocentric 0 self-centered 0 self-centred 0 007 ^ 02098325 a 0000 + 04835028 n 0405 + 10047199 n 0301 + 10047459 n 0102 + 10047199 n 0102 ! 00101609 a 0101 & 00102079 a 0000 | limited to or caring only about yourself and your own needs -00102079 00 s 02 self-absorbed 0 self-involved 0 001 & 00101800 a 0000 | absorbed in your own interests or thoughts etc -00102201 00 a 01 ambiguous 0 011 ^ 00895442 a 0000 ^ 00430191 a 0000 + 04825114 n 0101 ! 00103696 a 0101 & 00102578 a 0000 & 00102786 a 0000 & 00102930 a 0000 & 00103196 a 0000 & 00103302 a 0000 & 00103447 a 0000 & 00103567 a 0000 | having more than one possible meaning; "ambiguous words"; "frustrated by ambiguous instructions, the parents were unable to assemble the toy" -00102578 00 s 02 double-barreled 0 double-barrelled 0 001 & 00102201 a 0000 | having two purposes; twofold; "our double-barreled desire to make things profitable as well as attractive"- Louis Kronenbergers -00102786 00 s 01 double-edged 0 001 & 00102201 a 0000 | capable of being interpreted in two usually contradictory ways; "double-edged praise" -00102930 00 s 02 enigmatic 0 oracular 0 003 & 00102201 a 0000 + 10483530 n 0203 + 05685538 n 0102 | resembling an oracle in obscurity of thought; "the oracular sayings of Victorian poets"; "so enigmatic that priests might have to clarify it"; "an enigmatic smile" -00103196 00 s 01 left-handed 0 001 & 00102201 a 0000 | ironically ambiguous; "a left-handed compliment" -00103302 00 s 02 multivalent 0 multi-valued 0 001 & 00102201 a 0000 | having many values, meanings, or appeals; "subtle, multivalent allegory" -00103447 00 s 02 polysemous 0 polysemantic 0 002 & 00102201 a 0000 + 04825576 n 0101 | of words; having many meanings -00103567 00 s 01 uncertain 0 001 & 00102201 a 0000 | ambiguous (especially in the negative); "she spoke in no uncertain terms" -00103696 00 a 01 unambiguous 0 005 ^ 00428404 a 0000 ^ 00896555 a 0000 + 04821802 n 0101 ! 00102201 a 0101 & 00103953 a 0000 | having or exhibiting a single clearly defined meaning; "As a horror, apartheid...is absolutely unambiguous"- Mario Vargas Llosa -00103953 00 s 01 monosemous 0 002 & 00103696 a 0000 + 04820908 n 0101 | having only one meaning -00104051 00 a 01 ambitious 0 010 ^ 00884778 a 0000 = 04836268 n 0000 + 04836268 n 0101 + 04836268 n 0102 ! 00105023 a 0101 & 00104318 a 0000 & 00104533 a 0000 & 00104699 a 0000 & 00104825 a 0000 & 00104942 a 0000 | having a strong desire for success or achievement -00104318 00 s 02 pushful 0 pushy 0 003 & 00104051 a 0000 + 04836683 n 0202 + 05167412 n 0203 | marked by aggressive ambition and energy and initiative; "an aggressive young executive"; "a pushful insurance agent" -00104533 00 s 03 aspirant 0 aspiring(a) 0 wishful 0 003 & 00104051 a 0000 + 09801533 n 0101 + 00705517 v 0102 | desiring or striving for recognition or advancement -00104699 00 s 03 compulsive 0 determined 0 driven 0 002 & 00104051 a 0000 + 09950457 n 0101 | strongly motivated to succeed -00104825 00 s 02 manque 0 would-be(a) 0 001 & 00104051 a 0000 | unfulfilled or frustrated in realizing an ambition -00104942 00 s 01 overambitious 0 001 & 00104051 a 0000 | excessively ambitious -00105023 00 a 02 unambitious 0 ambitionless 0 004 ^ 00885415 a 0000 = 04836268 n 0000 ! 00104051 a 0101 & 00105197 a 0000 | having little desire for success or achievement -00105197 00 s 01 shiftless 0 002 & 00105023 a 0000 + 04637571 n 0101 | lacking or characterized by lack of ambition or initiative; lazy; "a shiftless student"; "studied in a shiftless way" -00105388 00 a 01 ametropic 0 002 + 14096724 n 0101 ! 00105566 a 0101 | of or relating to an abnormal condition of the eye in which visual images are not in focus on the retina -00105566 00 a 01 emmetropic 0 002 + 14096957 n 0101 ! 00105388 a 0101 | of or relating to the normal condition of the eye in which visual images are in clear focus on the retina -00105746 00 a 01 ample 0 008 ^ 00013887 a 0000 ^ 02335828 a 0000 = 05112609 n 0000 + 05112910 n 0101 ! 00106456 a 0101 & 00106020 a 0000 & 00106182 a 0000 & 00106277 a 0000 | more than enough in size or scope or capacity; "had ample food for the party"; "an ample supply" -00106020 00 s 02 full 0 good 0 001 & 00105746 a 0000 | having the normally expected amount; "gives full measure"; "gives good measure"; "a good mile from here" -00106182 00 s 01 generous 0 001 & 00105746 a 0000 | more than adequate; "a generous portion" -00106277 00 s 03 wide 0 wide-cut 0 full 2 003 & 00105746 a 0000 + 05106024 n 0301 + 05104548 n 0108 | having ample fabric; "the current taste for wide trousers"; "a full skirt" -00106456 00 a 05 meager 0 meagre 0 meagerly 0 stingy 2 scrimpy 0 012 ^ 02336449 a 0000 ^ 01496021 a 0000 ^ 00016756 a 0000 = 05112609 n 0000 + 05113462 n 0202 + 05113462 n 0101 ! 00105746 a 0101 & 00106821 a 0000 & 00107017 a 0000 & 00107128 a 0000 & 00107250 a 0000 & 00107384 a 0000 | deficient in amount or quality or extent; "meager resources"; "meager fare" -00106821 00 s 03 bare(a) 0 scanty 0 spare 0 003 & 00106456 a 0000 + 05114781 n 0302 + 05113462 n 0205 | lacking in amplitude or quantity; "a bare livelihood"; "a scanty harvest"; "a spare diet" -00107017 00 s 01 exiguous 0 002 & 00106456 a 0000 + 05113462 n 0107 | extremely scanty; "an exiguous budget" -00107128 00 s 01 hand-to-mouth(a) 0 001 & 00106456 a 0000 | providing only bare essentials; "a hand-to-mouth existence" -00107250 00 s 01 hardscrabble 0 001 & 00106456 a 0000 | barely satisfying a lower standard; "the sharecropper's hardscrabble life" -00107384 00 s 03 measly 0 miserable 0 paltry 0 002 & 00106456 a 0000 + 05140278 n 0301 | contemptibly small in amount; "a measly tip"; "the company donated a miserable $100 for flood relief"; "a paltry wage"; "almost depleted his miserable store of dried beans" -00107648 00 a 01 anabolic 0 003 + 13430495 n 0101 ! 00107984 a 0101 & 00107868 a 0000 | characterized by or promoting constructive metabolism; "some athletes take anabolic steroids to increase muscle size temporarily" -00107868 00 s 02 constructive-metabolic 0 energy-storing(a) 0 001 & 00107648 a 0000 | of or relating to anabolism -00107984 00 a 02 catabolic 0 katabolic 0 004 + 13443787 n 0201 + 13443787 n 0101 ! 00107648 a 0101 & 00108145 a 0000 | characterized by destructive metabolism -00108145 00 s 02 destructive-metabolic 0 energy-releasing(a) 0 001 & 00107984 a 0000 | of or relating to catabolism -00108263 00 a 01 anaclinal 0 002 ;c 06115701 n 0000 ! 00108434 a 0101 | of valleys and rivers; progressing in a direction opposite to the dip in surrounding rock strata -00108434 00 a 01 cataclinal 0 002 ;c 06115701 n 0000 ! 00108263 a 0101 | of valleys and rivers; running in the direction of the dip in surrounding rock strata -00108595 00 a 02 anastigmatic 0 stigmatic 0 002 + 05654783 n 0201 ! 00108698 a 0101 | not astigmatic -00108698 00 a 01 astigmatic 0 005 + 14553590 n 0102 + 13938899 n 0102 + 14553590 n 0101 + 13938899 n 0101 ! 00108595 a 0101 | of or relating to a defect in the eye or in a lens caused by a deviation from spherical curvature which prevents light rays from meeting at a common focus and so results in distorted images -00109016 00 a 01 anticlinal 0 002 ;c 06115701 n 0000 ! 00109133 a 0101 | sloping downward away from a common crest -00109133 00 a 01 synclinal 0 002 ;c 06115701 n 0000 ! 00109016 a 0101 | sloping downward toward each other to create a trough -00109261 00 a 01 anadromous 0 002 ! 00109382 a 0101 ! 00109504 a 0101 | migrating from the sea to fresh water to spawn -00109382 00 a 01 catadromous 0 002 ! 00109504 a 0101 ! 00109261 a 0101 | migrating from fresh water to the sea to spawn -00109504 00 a 01 diadromous 0 002 ! 00109261 a 0101 ! 00109382 a 0101 | (used of fish) migratory between fresh and salt waters -00109633 00 a 01 anabatic 0 002 ;c 06118563 n 0000 ! 00109782 a 0101 | of an air current or wind; rising especially up a slope; "an anabatic wind" -00109782 00 a 02 katabatic 0 catabatic 0 002 ;c 06118563 n 0000 ! 00109633 a 0101 | of an air current or wind; moving downward or down a slope because of cooling especially at night -00109966 00 a 02 anal 0 anal_retentive 0 002 ;c 00704305 n 0000 ! 00110252 a 0101 | a stage in psychosexual development when the child's interest is concentrated on the anal region; fixation at this stage is said to result in orderliness, meanness, stubbornness, compulsiveness, etc. -00110252 00 a 01 oral 2 002 ;c 00704305 n 0000 ! 00109966 a 0101 | a stage in psychosexual development when the child's interest is concentrated in the mouth; fixation at this stage is said to result in dependence, selfishness, and aggression -00110497 00 a 03 analogue 0 analog 0 linear 3 002 ;c 06099269 n 0000 ! 00110701 a 0101 | of a circuit or device having an output that is proportional to the input; "analogue device"; "linear amplifier" -00110701 00 a 01 digital 0 002 ;c 06099269 n 0000 ! 00110497 a 0101 | of a circuit or device that represents magnitudes in digits; "digital computer" -00110853 00 a 02 analytic 1 analytical 4 005 ^ 00138912 a 0000 ^ 01296474 a 0000 ^ 01430111 a 0000 ;c 06163751 n 0000 ! 00111129 a 0101 | of a proposition that is necessarily true independent of fact or experience; "`all spinsters are unmarried' is an analytic proposition" -00111129 00 a 02 synthetic 1 synthetical 4 006 ^ 00139126 a 0000 ^ 01296270 a 0000 ^ 01430111 a 0000 ;c 06163751 n 0000 + 05774129 n 0103 ! 00110853 a 0101 | of a proposition whose truth value is determined by observation or facts; "`all men are arrogant' is a synthetic proposition" -00111415 00 a 02 analytic 2 uninflected 4 003 ;c 06172789 n 0000 ! 00111856 a 0101 & 00111604 a 0000 | expressing a grammatical category by using two or more words rather than inflection -00111604 00 s 01 isolating(a) 0 001 & 00111415 a 0000 | relating to or being a language in which each word typically expresses a distinct idea and part of speech and syntactical relations are determined almost exclusively by word order and particles -00111856 00 a 01 synthetic 2 003 ;c 06172789 n 0000 ! 00111415 a 0101 & 00112018 a 0000 | systematic combining of root and modifying elements into single words -00112018 00 s 02 agglutinative 0 polysynthetic 0 002 & 00111856 a 0000 + 01222016 v 0101 | forming derivative or compound words by putting together constituents each of which expresses a single definite meaning -00112231 00 a 02 analytic 3 analytical 3 005 + 05772667 n 0201 + 00634276 n 0201 + 05772667 n 0101 + 05208690 n 0101 ! 00112628 a 0101 | using or skilled in using analysis (i.e., separating a whole--intellectual or substantial--into its elemental parts or basic principles); "an analytic experiment"; "an analytic approach"; "a keenly analytic man"; "analytical reasoning"; "an analytical mind" -00112628 00 a 02 synthetic 3 synthetical 3 005 + 13565379 n 0201 + 05774129 n 0203 + 05783940 n 0201 + 05783940 n 0101 ! 00112231 a 0101 | involving or of the nature of synthesis (combining separate elements to form a coherent whole) as opposed to analysis; "limnology is essentially a synthetic science composed of elements...that extend well beyond the limits of biology"- P.S.Welch -00113015 00 a 01 inflectional 0 002 + 13803782 n 0101 ! 00113245 a 0101 | characterized by inflections indicating grammatical distinctions; "inflectional morphology is used to indicate number and case and tense and person etc." -00113245 00 a 01 derivational 0 001 ! 00113015 a 0101 | characterized by inflections indicating a semantic relation between a word and its base; "the morphological relation between `sing' and `singer' and `song' is derivational" -00113476 00 a 01 apocarpous 0 002 ;c 00017222 n 0000 ! 00113663 a 0101 | (of ovaries of flowering plants) consisting of carpels that are free from one another as in buttercups or roses -00113663 00 a 01 syncarpous 0 003 ;c 00017222 n 0000 + 13137672 n 0103 ! 00113476 a 0101 | (of ovaries of flowering plants) consisting of united carpels -00113818 00 a 01 angry 0 016 + 14036539 n 0101 + 07516354 n 0101 + 00758972 n 0102 + 14036539 n 0102 ! 00116463 a 0101 & 00114266 a 0000 & 00114454 a 0000 & 00114797 a 0000 & 00114921 a 0000 & 00115094 a 0000 & 00115193 a 0000 & 00115494 a 0000 & 00115777 a 0000 & 00115906 a 0000 & 00116058 a 0000 & 00116245 a 0000 | feeling or showing anger; "angry at the weather"; "angry customers"; "an angry silence"; "sending angry letters to the papers" -00114266 00 s 02 aggravated 0 provoked 0 001 & 00113818 a 0000 | incited, especially deliberately, to anger; "aggravated by passive resistance"; "the provoked animal attacked the child" -00114454 00 s 05 angered 0 enraged 0 furious 0 infuriated 0 maddened 0 003 & 00113818 a 0000 + 07516997 n 0301 + 05037813 n 0303 | marked by extreme anger; "the enraged bull attached"; "furious about the accident"; "a furious scowl"; "infuriated onlookers charged the police who were beating the boy"; "could not control the maddened crowd" -00114797 00 s 01 black 0 001 & 00113818 a 0000 | marked by anger or resentment or hostility; "black looks"; "black words" -00114921 00 s 02 choleric 0 irascible 0 003 & 00113818 a 0000 + 07552549 n 0201 + 07516354 n 0102 | characterized by anger; "a choleric outburst"; "an irascible response" -00115094 00 s 01 hot_under_the_collar(p) 0 002 & 00113818 a 0000 ;u 07075172 n 0000 | very angry -00115193 00 s 03 huffy 0 mad 0 sore 0 006 & 00113818 a 0000 ;u 07075172 n 0000 + 07495973 n 0302 + 07516997 n 0203 + 14407070 n 0101 + 07517869 n 0101 | roused to anger; "stayed huffy a good while"- Mark Twain; "she gets mad when you wake her up so early"; "mad at his friend"; "sore over a remark" -00115494 00 s 04 indignant 0 incensed 0 outraged 0 umbrageous 0 002 & 00113818 a 0000 + 07517550 n 0401 | angered at something unjust or wrong; "an indignant denial"; "incensed at the judges' unfairness"; "a look of outraged disbelief"; "umbrageous at the loss of their territory" -00115777 00 s 02 irate 0 ireful 0 001 & 00113818 a 0000 | feeling or showing extreme anger; "irate protesters"; "ireful words" -00115906 00 s 01 livid 0 003 & 00113818 a 0000 ;u 07075172 n 0000 + 07517292 n 0101 | furiously angry; "willful stupidity makes him absolutely livid" -00116058 00 s 02 smoldering 0 smouldering 0 001 & 00113818 a 0000 | showing scarcely suppressed anger; "her tone was...conversational although...her eyes were smoldering"- James Hensel -00116245 00 s 03 wrathful 0 wroth 0 wrothful 0 001 & 00113818 a 0000 | vehemently incensed and condemnatory; "they trembled before the wrathful queen"; "but wroth as he was, a short struggle ended in reconciliation" -00116463 00 a 01 unangry(p) 0 001 ! 00113818 a 0101 | not angry -00116529 00 a 01 resentful 0 003 ! 00117106 a 0101 & 00116744 a 0000 & 00116940 a 0000 | full of or marked by resentment or indignant ill will; "resentful at the way he was treated"; "a sullen resentful attitude" -00116744 00 s 02 acrimonious 0 bitter 0 003 & 00116529 a 0000 + 04643397 n 0201 + 04643397 n 0102 | marked by strong resentment or cynicism; "an acrimonious dispute"; "bitter about the divorce" -00116940 00 s 01 rancorous 0 002 & 00116529 a 0000 + 07548978 n 0104 | showing deep-seated resentment; "preserve...from rancourous envy of the rich"- Aldous Huxley -00117106 00 a 01 unresentful 0 002 ! 00116529 a 0101 & 00117235 a 0000 | not resentful; "completely unresentful and forgiving" -00117235 00 s 01 unbitter 0 001 & 00117106 a 0000 | having or showing no resentment or desire for revenge; "remarkably unbitter toward her captors" -00117385 00 a 02 sentient 0 animate 4 005 = 05006020 n 0000 + 05005447 n 0201 + 05677952 n 0102 ! 00117754 a 0101 & 00117654 a 0000 | endowed with feeling and unstructured consciousness; "the living knew themselves just sentient puppets on God's stage"- T.E.Lawrence -00117654 00 s 01 sensate 0 001 & 00117385 a 0000 | having physical sensation; "sensate creatures" -00117754 00 a 02 insentient 0 insensate 2 004 = 05006020 n 0000 + 05006749 n 0101 ! 00117385 a 0101 & 00117961 a 0000 | devoid of feeling and consciousness and animation; "insentient (or insensate) stone" -00117961 00 s 01 unfeeling 0 001 & 00117754 a 0000 | devoid of feeling or sensation; "unfeeling trees" -00118066 00 a 01 animate 1 003 = 05005447 n 0000 + 05005447 n 0101 ! 00118238 a 0101 | endowed with animal life as distinguished from plant life; "we are animate beings" -00118238 00 a 03 inanimate 1 nonliving 0 non-living 0 004 = 05005447 n 0000 + 05006285 n 0101 ! 00118066 a 0101 & 00118451 a 0000 | not endowed with life; "the inorganic world is inanimate"; "inanimate objects" -00118451 00 s 01 nonconscious 0 001 & 00118238 a 0000 | relating to the lack of consciousness of inanimate things -00118567 00 a 02 animated 0 alive 4 005 + 05005447 n 0202 ! 00119409 a 0101 & 00118844 a 0000 & 00119006 a 0000 & 00119279 a 0000 | having life or vigor or spirit; "an animated and expressive face"; "animated conversation"; "became very animated when he heard the good news" -00118844 00 s 02 enlivened 0 spirited 0 002 & 00118567 a 0000 + 04631700 n 0202 | made lively or spirited; "a meal enlivened by the music"; "a spirited debate" -00119006 00 s 03 full_of_life 0 lively 0 vital 0 006 & 00118567 a 0000 + 00164816 v 0301 + 14050143 n 0303 + 04633453 n 0301 + 05005809 n 0302 + 04632157 n 0201 | full of spirit; "a dynamic full of life woman"; "a vital and charismatic leader"; "this whole lively world" -00119279 00 s 02 reanimated 0 revived 0 001 & 00118567 a 0000 | given fresh life or vigor or spirit; "stirred by revived hopes" -00119409 00 a 01 unanimated 0 003 ! 00118567 a 0101 & 00119533 a 0000 & 00119750 a 0000 | not animated or enlivened; dull -00119533 00 s 01 lifeless 0 003 & 00119409 a 0000 + 14006179 n 0103 + 05006285 n 0102 | lacking animation or excitement or activity; "the party being dead we left early"; "it was a lifeless party until she arrived" -00119750 00 s 01 wan 2 001 & 00119409 a 0000 | lacking vitality as from weariness or illness or unhappiness; "a wan smile" -00119875 00 a 01 enlivened 0 003 ^ 00804695 a 0000 ! 00120132 a 0101 & 00119993 a 0000 | made sprightly or cheerful -00119993 00 s 01 perked_up 0 001 & 00119875 a 0000 | made or become more cheerful or lively; "his attention made her feel all perked up" -00120132 00 a 01 unenlivened 0 001 ! 00119875 a 0101 | not made lively or brightened; "a life unenlivened by romance" -00120252 00 a 01 animate 2 002 ;c 06172789 n 0000 ! 00120411 a 0101 | belonging to the class of nouns that denote living beings; "the word `dog' is animate" -00120411 00 a 01 inanimate 2 002 ;c 06172789 n 0000 ! 00120252 a 0101 | belonging to the class of nouns denoting nonliving things; "the word `car' is inanimate" -00120574 00 a 02 anonymous 0 anon. 0 003 + 14436285 n 0101 ! 00121034 a 0101 & 00120784 a 0000 | having no known name or identity or known source; "anonymous authors"; "anonymous donors"; "an anonymous gift" -00120784 00 s 04 nameless 0 unidentified 0 unknown 0 unnamed 0 002 & 00120574 a 0000 + 14436285 n 0102 | being or having an unknown or unnamed source; "a poem by an unknown author"; "corporations responsible to nameless owners"; "an unnamed donor" -00121034 00 a 01 onymous 0 003 ! 00120574 a 0101 & 00121183 a 0000 & 00121376 a 0000 | bearing a name; "articles in magazines are usually onymous" -00121183 00 s 02 binomial 0 binominal 0 001 & 00121034 a 0000 | having or characterized by two names, especially those of genus and species in taxonomies; "binomial nomenclature of bacteria" -00121376 00 s 01 pseudonymous 0 002 & 00121034 a 0000 + 06338278 n 0101 | bearing or identified by an assumed (often pen) name; "the writings of Mark Twain are pseudonymous" -00121552 00 a 01 antemortem 0 001 ! 00121649 a 0101 | preceding death; "antemortem confession" -00121649 00 a 02 postmortem 0 postmortal 0 002 + 07144039 n 0201 ! 00121552 a 0101 | occurring or done after death; "postmortem changes"; "a postmortem examination to determine cause of death"; "postmortal wounds" -00121865 00 a 01 antecedent 0 011 ^ 00125711 a 0000 + 13844923 n 0101 + 09792555 n 0104 + 07326880 n 0101 + 06603651 n 0101 + 05047279 n 0103 + 05047279 n 0102 ! 00122626 a 0101 & 00122128 a 0000 & 00122245 a 0000 & 00122386 a 0000 | preceding in time or order -00122128 00 s 02 anterior 0 prior(a) 0 003 & 00121865 a 0000 + 05047279 n 0201 + 05047279 n 0104 | earlier in time -00122245 00 s 02 anticipatory 0 prevenient 0 004 & 00121865 a 0000 + 02565491 v 0101 + 00917772 v 0106 + 00342640 v 0101 | in anticipation -00122386 00 s 04 preexistent 0 pre-existent 0 preexisting 0 pre-existing 0 004 & 00121865 a 0000 + 02604100 v 0201 + 13957117 n 0101 + 02604100 v 0101 | existing previously or before something; "variations on pre-existent musical themes" -00122626 00 a 01 subsequent 0 007 ^ 00127296 a 0000 + 05047617 n 0102 + 07295507 n 0102 + 05047617 n 0103 ! 00121865 a 0101 & 00122844 a 0000 & 00123485 a 0000 | following in time or order; "subsequent developments" -00122844 00 s 08 attendant 0 consequent 0 accompanying 0 concomitant 0 incidental 0 ensuant 0 resultant 0 sequent 1 010 & 00122626 a 0000 + 13941337 n 0701 + 07292694 n 0702 + 05865034 n 0702 + 02635659 v 0702 + 02634265 v 0701 + 05048690 n 0401 + 11410625 n 0201 + 07284554 n 0103 + 02716567 v 0101 | following or accompanying as a consequence; "an excessive growth of bureaucracy, with attendant problems"; "snags incidental to the changeover in management"; "attendant circumstances"; "the period of tension and consequent need for military preparedness"; "the ensuant response to his appeal"; "the resultant savings were considerable" -00123485 00 s 03 later(a) 0 ulterior 0 posterior 0 001 & 00122626 a 0000 | coming at a subsequent time or stage; "without ulterior argument"; "the mood posterior to" -00123653 00 a 01 antrorse 0 002 ;c 06037666 n 0000 ! 00123804 a 0101 | bent or curved forward or upward; "a plant having antrorse hairs on the stem" -00123804 00 a 01 retrorse 0 003 ;c 06037666 n 0000 ! 00123653 a 0101 & 00123961 a 0000 | bent or curved backward or downward; "leaves with retrorse barbs" -00123961 00 s 01 decurved 0 001 & 00123804 a 0000 | bent down or curved downward; "the decurved bill of a curlew" -00124077 00 a 01 aquatic 0 006 + 11536673 n 0101 ! 00124918 a 0101 ! 00125319 a 0101 & 00124353 a 0000 & 00124493 a 0000 & 00124685 a 0000 | operating or living or growing in water; "boats are aquatic vehicles"; "water lilies are aquatic plants"; "fish are aquatic animals" -00124353 00 s 01 marine 0 001 & 00124077 a 0000 | native to or inhabiting the sea; "marine plants and animals such as seaweed and whales" -00124493 00 s 02 semiaquatic 1 subaquatic 1 002 & 00124077 a 0000 ;c 06037666 n 0000 | partially aquatic; living or growing partly on land and partly in water; "a marginal subaquatic flora" -00124685 00 s 05 subaqueous 0 subaquatic 2 submerged 2 submersed 2 underwater 0 002 & 00124077 a 0000 ;c 06037666 n 0000 | growing or remaining under water; "viewing subaqueous fauna from a glass-bottomed boat"; "submerged leaves" -00124918 00 a 01 terrestrial 0 004 ! 00125319 a 0101 ! 00124077 a 0101 & 00125068 a 0000 & 00125170 a 0000 | operating or living or growing on land -00125068 00 s 01 onshore 0 001 & 00124918 a 0000 | on the edge of the land; "an onshore lighthouse" -00125170 00 s 01 overland 0 001 & 00124918 a 0000 | traveling or passing over land; "an overland journey"; "the overland route used by Marco Polo" -00125319 00 a 01 amphibious 0 003 ! 00124077 a 0101 ! 00124918 a 0101 & 00125553 a 0000 | operating or living on land and in water; "amphibious vehicles"; "amphibious operations"; "amphibious troops"; "frogs are amphibious animals" -00125553 00 s 02 amphibiotic 0 semiaquatic 2 002 & 00125319 a 0000 ;c 06037666 n 0000 | having an aquatic early or larval form and a terrestrial adult form -00125711 00 a 01 preceding(a) 0 012 ^ 00121865 a 0000 = 05046009 n 0000 = 13844690 n 0000 ! 00127296 a 0101 & 00125993 a 0000 & 00126116 a 0000 & 00126235 a 0000 & 00126339 a 0000 & 00126497 a 0000 & 00126702 a 0000 & 00126830 a 0000 & 00127137 a 0000 | existing or coming before -00125993 00 s 01 above 0 001 & 00125711 a 0000 | appearing earlier in the same text; "flaws in the above interpretation" -00126116 00 s 02 above-mentioned 0 above-named 0 001 & 00125711 a 0000 | mentioned or named earlier in the same text -00126235 00 s 01 foregoing(a) 0 001 & 00125711 a 0000 | especially of writing or speech; going before -00126339 00 s 03 introductory 0 prefatorial 0 prefatory 0 003 & 00125711 a 0000 + 06397903 n 0202 + 00901799 v 0104 | serving as an introduction or preface -00126497 00 s 01 precedent 0 007 & 00125711 a 0000 + 06600282 n 0101 + 01257145 n 0103 + 05047279 n 0105 + 01257145 n 0102 + 02692686 v 0101 + 02712443 v 0102 | preceding in time, order, or significance -00126702 00 s 01 premedical 0 001 & 00125711 a 0000 | preceding and preparing for the study of medicine; "premedical courses" -00126830 00 s 03 preparatory 0 preparative 0 propaedeutic 0 010 & 00125711 a 0000 + 00891642 n 0301 + 00891642 n 0302 + 02387034 v 0201 + 01651444 v 0203 + 00406243 v 0202 + 02387034 v 0101 + 00603298 v 0103 + 00602805 v 0102 + 00406243 v 0102 | preceding and preparing for something; "preparatory steps" -00127137 00 s 02 previous(a) 0 old 0 001 & 00125711 a 0000 | just preceding something else in time or order; "the previous owner"; "my old house was larger" -00127296 00 a 01 succeeding(a) 0 010 ^ 00122626 a 0000 = 05046009 n 0000 = 13844690 n 0000 ! 00125711 a 0101 & 00127543 a 0000 & 00127661 a 0000 & 00127815 a 0000 & 00127948 a 0000 & 00128137 a 0000 & 00128262 a 0000 | coming after or following -00127543 00 s 02 back-to-back 0 consecutive 0 001 & 00127296 a 0000 | one after the other; "back-to-back home runs" -00127661 00 s 01 ensuing 0 001 & 00127296 a 0000 | following immediately and as a result of what went before; "ensuing events confirmed the prediction" -00127815 00 s 02 following(a) 1 undermentioned 0 001 & 00127296 a 0000 | about to be mentioned or specified; "the following items" -00127948 00 s 02 following 2 next 0 001 & 00127296 a 0000 | immediately following in time or order; "the following day"; "next in line"; "the next president"; "the next item on the list" -00128137 00 s 01 in_line 0 001 & 00127296 a 0000 | being next in a line of succession; "he was in line for the presidency" -00128262 00 s 01 postmortem 0 001 & 00127296 a 0000 | after death or after an event; "a postmortem examination to determine the cause of death"; "the postmortem discussion of the President's TV address" -00128467 00 a 01 precedented 0 001 ! 00128572 a 0101 | having or supported or justified by a precedent -00128572 00 a 01 unprecedented 0 002 ! 00128467 a 0101 & 00128733 a 0000 | having no precedent; novel; "an unprecedented expansion in population and industry" -00128733 00 s 02 new 0 unexampled 0 001 & 00128572 a 0000 | having no previous example or precedent or parallel; "a time of unexampled prosperity" -00128882 00 a 01 prehensile 0 001 ! 00129029 a 0101 | adapted for grasping especially by wrapping around an object; "a monkey's prehensile tail" -00129029 00 a 01 nonprehensile 0 001 ! 00128882 a 0101 | not prehensile -00129103 00 a 03 prenatal 0 antenatal 0 antepartum 0 002 ! 00129276 a 0101 ! 00129467 a 0101 | occurring or existing before birth; "the prenatal period"; "antenatal care" -00129276 00 a 01 perinatal 0 002 ! 00129467 a 0101 ! 00129103 a 0101 | occurring during the period around birth (5 months before and 1 month after); "perinatal mortality"; "perinatal care" -00129467 00 a 02 postnatal 0 postpartum 0 002 ! 00129103 a 0101 ! 00129276 a 0101 | occurring immediately after birth; "postnatal development" -00129612 00 a 01 preprandial 0 001 ! 00129729 a 0101 | preceding a meal (especially dinner); "a preprandial drink" -00129729 00 a 01 postprandial 0 001 ! 00129612 a 0101 | following a meal (especially dinner); "his postprandial cigar"; "took a postprandial walk" -00129878 00 a 01 prewar 0 001 ! 00130017 a 0101 | existing or belonging to a time before a war; "prewar levels of industrial production" -00130017 00 a 01 postwar 0 001 ! 00129878 a 0101 | belonging to the period after a war; "postwar resettlement"; "postwar inflation" -00130151 00 a 01 retrograde 0 002 = 13844690 n 0000 ! 00130281 a 0101 | of amnesia; affecting time immediately preceding trauma -00130281 00 a 01 anterograde 0 002 = 13844690 n 0000 ! 00130151 a 0101 | of amnesia; affecting time immediately following trauma -00130412 00 a 01 antemeridian 0 003 = 15129927 n 0000 ! 00130596 a 0101 & 00130518 a 0000 | before noon -00130518 00 s 02 ante_meridiem 0 a.m. 0 001 & 00130412 a 0000 | before noon -00130596 00 a 01 postmeridian 0 003 = 15129927 n 0000 ! 00130412 a 0101 & 00130701 a 0000 | after noon -00130701 00 s 02 post_meridiem 0 p.m. 0 001 & 00130596 a 0000 | after noon -00130778 00 a 01 anterior 0 008 ^ 00198147 a 0000 = 05074774 n 0000 + 05306190 n 0102 + 05078289 n 0101 ! 00131426 a 0101 & 00131018 a 0000 & 00131176 a 0000 & 00131297 a 0000 | of or near the head end or toward the front plane of a body -00131018 00 s 01 frontal 1 004 & 00130778 a 0000 + 08626080 n 0101 + 08573472 n 0101 + 03398467 n 0101 | belonging to the front part; "a frontal appendage" -00131176 00 s 01 frontal 2 001 & 00130778 a 0000 | of or adjacent to the forehead or frontal bone; "the frontal lobes" -00131297 00 s 01 prefrontal 0 001 & 00130778 a 0000 | anterior to a frontal structure; "a prefrontal bone"; "prefrontal lobes" -00131426 00 a 01 posterior 0 009 ^ 00197576 a 0000 = 05074774 n 0000 + 05306476 n 0102 + 05559256 n 010d + 05078450 n 0101 ! 00130778 a 0101 & 00131692 a 0000 & 00131863 a 0000 & 00132040 a 0000 | located at or near or behind a part or near the end of a structure -00131692 00 s 03 back(a) 0 hind(a) 0 hinder(a) 0 001 & 00131426 a 0000 | located at or near the back of an animal; "back (or hind) legs"; "the hinder part of a carcass" -00131863 00 s 01 caudal 0 001 & 00131426 a 0000 | situated in or directed toward the part of the body from which the tail arises; "caudal fins"; "the caudal end of the body" -00132040 00 s 01 retral 0 001 & 00131426 a 0000 | at or near or toward the posterior -00132127 00 a 01 dorsal 0 003 + 05558717 n 0102 + 05557500 n 0101 ! 00132385 a 0101 | belonging to or on or near the back or upper surface of an animal or organ or part; "the dorsal fin is the vertical fin on the back of a fish and certain marine mammals" -00132385 00 a 01 ventral 0 005 + 05424796 n 0101 + 05424679 n 0101 + 05556943 n 0102 ! 00132127 a 0101 & 00132754 a 0000 | toward or on or near the belly (front of a primate or lower surface of a lower animal); "the ventral aspect of the human body"; "the liver is somewhat ventral in position"; "ventral (or pelvic) fins correspond to the hind limbs of a quadruped" -00132754 00 s 01 dorsoventral 0 001 & 00132385 a 0000 | extending from the back to the belly -00132849 00 a 01 appealable 0 003 + 02497824 v 0101 + 02497586 v 0101 ! 00133065 a 0101 | capable of being appealed especially to a higher tribunal; "decisions...appealable to the head of the agency"- New Republic -00133065 00 a 01 unappealable 0 001 ! 00132849 a 0101 | not subject to appeal; "the judge's ruling was handed down in a preliminary hearing rather than a trial and was therefore unappealable" -00133259 00 a 01 appendaged 0 001 ! 00133335 a 0101 | having an appendage -00133335 00 a 01 unappendaged 0 001 ! 00133259 a 0101 | not having an appendage -00133417 00 a 02 appetizing 0 appetising 0 007 ^ 01716227 a 0000 ^ 02395115 a 0000 = 04995531 n 0000 + 04995531 n 0202 + 04995531 n 0101 ! 00133851 a 0101 & 00133669 a 0000 | appealing to or stimulating the appetite especially in appearance or aroma -00133669 00 s 03 mouth-watering 0 savory 0 savoury 0 005 & 00133417 a 0000 + 07594840 n 0302 + 05715864 n 0306 + 07594840 n 0201 + 04995940 n 0203 | pleasing to the sense of taste -00133851 00 a 02 unappetizing 0 unappetising 0 006 ^ 02395115 a 0000 ^ 01716491 a 0000 = 04995531 n 0000 + 04996823 n 0202 + 04996823 n 0101 ! 00133417 a 0101 | not appetizing in appearance, aroma, or taste -00134060 00 a 01 approachable 0 004 + 00990392 v 0101 + 04655649 n 0101 ! 00134401 a 0101 & 00134251 a 0000 | easy to meet or converse or do business with; "a friendly approachable person" -00134251 00 s 01 accessible 0 002 & 00134060 a 0000 + 04655649 n 0102 | easy to get along with or talk to; friendly; "an accessible and genial man" -00134401 00 a 01 unapproachable 0 003 + 04657244 n 0101 ! 00134060 a 0101 & 00134562 a 0000 | discouraging intimacies; reserved; "an unapproachable executive" -00134562 00 s 02 offish 0 standoffish 0 002 & 00134401 a 0000 + 04656996 n 0203 | lacking cordiality; unfriendly; "a standoffish manner" -00134701 00 a 01 appropriate 0 009 ^ 00138169 a 0000 ^ 01878466 a 0000 = 04715947 n 0000 + 04715947 n 0101 ! 00135718 a 0101 & 00135092 a 0000 & 00135193 a 0000 & 00135342 a 0000 & 00135455 a 0000 | suitable for a particular person or place or condition etc; "a book not appropriate for children"; "a funeral conducted the appropriate solemnity"; "it seems that an apology is appropriate" -00135092 00 s 01 befitting 0 001 & 00134701 a 0000 | appropriate to; "behavior befitting a father" -00135193 00 s 01 grade-appropriate 0 001 & 00134701 a 0000 | the quality of ability and work that is appropriate for students in a specified grade -00135342 00 s 01 pat 0 002 & 00134701 a 0000 + 04718826 n 0102 | exactly suited to the occasion; "a pat reply" -00135455 00 s 02 proper 0 right 0 002 & 00134701 a 0000 + 04898437 n 0102 | appropriate for a condition or purpose or occasion or a person's character, needs; "everything in its proper place"; "the right man for the job"; "she is not suitable for the position" -00135718 00 a 01 inappropriate 0 008 ^ 01880531 a 0000 ^ 00138622 a 0000 = 04715947 n 0000 + 04721650 n 0101 ! 00134701 a 0101 & 00136081 a 0000 & 00136185 a 0000 + 04901996 n 0101 | not suitable for a particular occasion etc; "noise seems inappropriate at a time of sadness"; "inappropriate shoes for a walk on the beach"; "put inappropriate pressure on them" -00136081 00 s 01 unbefitting 0 001 & 00135718 a 0000 | not befitting; "behavior unbefitting a father" -00136185 00 s 02 improper 0 wrong 0 003 & 00135718 a 0000 + 04901996 n 0202 + 04901326 n 0102 | not appropriate for a purpose or occasion; "said all the wrong things" -00136354 00 a 01 due 0 008 ! 00137641 a 0101 & 00136589 a 0000 & 00136727 a 0000 & 00136884 a 0000 & 00137120 a 0000 & 00137277 a 0000 & 00137373 a 0000 & 00137501 a 0000 | owed and payable immediately or on demand; "payment is due" -00136589 00 s 01 callable 0 002 & 00136354 a 0000 + 02359061 v 0101 | subject to a demand for payment before due date; "callable bonds" -00136727 00 s 02 collect 0 cod 0 001 & 00136354 a 0000 | payable by the recipient on delivery; "a collect call"; "the letter came collect"; "a COD parcel" -00136884 00 s 03 collectible 0 collectable 0 payable 0 002 & 00136354 a 0000 + 02218173 v 0101 | subject to or requiring payment especially as specified; "a collectible bill"; "a note payable on demand"; "a check payable to John Doe" -00137120 00 s 02 delinquent 0 overdue 0 001 & 00136354 a 0000 | past due; not paid at the scheduled time; "an overdue installment"; "a delinquent account" -00137277 00 s 01 receivable 0 001 & 00136354 a 0000 | awaiting payment; "accounts receivable" -00137373 00 s 01 out-of-pocket 0 001 & 00136354 a 0000 | calling for the spending of cash; "his out-of-pocket costs were $10" -00137501 00 s 01 repayable 0 001 & 00136354 a 0000 | subject to repayment; "business loans are usually repayable in regular installments" -00137641 00 a 01 undue 0 001 ! 00136354 a 0101 | not yet payable; "an undue loan" -00137725 00 a 01 due 2 001 ! 00137943 a 0101 | suitable to or expected in the circumstances; "all due respect"; "due cause to honor them"; "a long due promotion"; "in due course"; "due esteem"; "exercising due care" -00137943 00 a 01 undue 2 002 ;c 08441203 n 0000 ! 00137725 a 0101 | not appropriate or proper (or even legal) in the circumstances; "undue influence"; "I didn't want to show undue excitement"; "accused of using undue force" -00138169 00 a 01 apropos 0 004 ^ 00134701 a 0000 = 04715947 n 0000 ! 00138622 a 0101 & 00138314 a 0000 | of an appropriate or pertinent nature -00138314 00 s 03 apposite 0 apt 0 pertinent 0 006 & 00138169 a 0000 + 13795180 n 0303 + 13795180 n 0302 + 02676054 v 0302 + 04716491 n 0201 + 04716491 n 0102 | being of striking appropriateness and pertinence; "the successful copywriter is a master of apposite and evocative verbal images"; "an apt reply" -00138622 00 a 01 malapropos 0 004 ^ 00135718 a 0000 = 04715947 n 0000 ! 00138169 a 0101 & 00138782 a 0000 | of an inappropriate or incorrectly applied nature -00138782 00 s 02 inapposite 0 out_of_place 0 002 & 00138622 a 0000 + 04721428 n 0102 | of an inappropriate or misapplied nature -00138912 00 a 01 a_priori 0 003 ^ 00110853 a 0000 ^ 01296474 a 0000 ! 00139126 a 0101 | involving deductive reasoning from a general principle to a necessary effect; not supported by fact; "an a priori judgment" -00139126 00 a 01 a_posteriori 0 003 ^ 01296270 a 0000 ^ 00111129 a 0000 ! 00138912 a 0101 | involving reasoning from facts or particulars to general principles or from effects to causes; "a posteriori demonstration" -00139344 00 a 01 apteral 0 003 ! 00139870 a 0101 & 00139492 a 0000 & 00139702 a 0000 | having columns at one or both ends but not along the sides -00139492 00 s 04 amphiprostylar 0 amphiprostyle 0 amphistylar 0 porticoed 0 001 & 00139344 a 0000 | marked by columniation having free columns in porticoes either at both ends or at both sides of a structure -00139702 00 s 02 prostyle 0 pseudoprostyle 0 001 & 00139344 a 0000 | marked by columniation having free columns in a portico only across the opening to the structure -00139870 00 a 01 peripteral 0 003 ! 00139344 a 0101 & 00139990 a 0000 & 00140075 a 0000 | having columns on all sides -00139990 00 s 01 monopteral 0 001 & 00139870 a 0000 | having circular columniation -00140075 00 s 02 peristylar 0 pseudoperipteral 0 002 & 00139870 a 0000 + 03917198 n 0101 | having columniation completely circling an area of the structure -00140233 00 a 01 arbitrable 0 002 + 00760956 v 0105 ! 00140437 a 0101 | appropriate for or subject to settlement by arbitration; "an arbitrable wage and health benefits policy"; "an arbitrable dispute" -00140437 00 a 01 nonarbitrable 0 001 ! 00140233 a 0101 | not appropriate for or subject to arbitration -00140542 00 a 01 columned 0 007 ;u 06307152 n 0000 ! 00141522 a 0101 & 00140880 a 0000 & 00140989 a 0000 & 00141111 a 0000 & 00141316 a 0000 & 00141429 a 0000 | having or resembling columns; having columns of a specified kind (often used as a combining form); "a columned portico"; "trees with columned trunks"; "white-columned houses" -00140880 00 s 01 amphistylar 0 001 & 00140542 a 0000 | having columns either at both ends or at both sides -00140989 00 s 01 columnar 1 002 & 00140542 a 0000 + 03073977 n 0101 | characterized by columns; "columnar construction" -00141111 00 s 03 columniform 0 columnar 2 columnlike 0 002 & 00140542 a 0000 + 13900422 n 0201 | having the form of a column; "trees with columniform trunks"; "columnar forms"; "a columnlike tree trunk" -00141316 00 s 01 colonnaded 0 001 & 00140542 a 0000 | having a series of columns arranged at regular intervals -00141429 00 s 01 pillared 0 001 & 00140542 a 0000 | having pillars; "the pillared portico" -00141522 00 a 02 noncolumned 0 uncolumned 0 003 ! 00140542 a 0101 & 00141647 a 0000 & 00141746 a 0000 | not having columns -00141647 00 s 01 astylar 0 002 & 00141522 a 0000 ;c 06123363 n 0000 | lacking columns or pillars -00141746 00 s 01 unpillared 0 001 & 00141522 a 0000 | lacking pillars -00141818 00 a 03 arboreal 0 arboreous 4 tree-living 0 001 ! 00141947 a 0101 | inhabiting or frequenting trees; "arboreal apes" -00141947 00 a 01 nonarboreal 0 001 ! 00141818 a 0101 | not inhabiting or frequenting trees -00142040 00 a 03 arenaceous 0 sandy 2 sandlike 0 003 + 15019030 n 0201 + 04949453 n 0201 ! 00142270 a 0101 | resembling or containing or abounding in sand; or growing in sandy areas; "arenaceous limestone"; "arenaceous grasses" -00142270 00 a 02 argillaceous 0 clayey 0 002 + 14602597 n 0101 ! 00142040 a 0101 | resembling or containing clay; "argillaceous rocks" -00142407 00 a 01 armed 1 005 ;c 08199025 n 0000 ! 00142917 a 0101 & 00142622 a 0000 & 00142704 a 0000 & 00142825 a 0000 | (used of persons or the military) characterized by having or bearing arms; "armed robbery" -00142622 00 s 02 equipped 0 weaponed 0 001 & 00142407 a 0000 | carrying weapons -00142704 00 s 01 light-armed 0 001 & 00142407 a 0000 | armed with light equipment and weapons; "a light-armed brigade" -00142825 00 s 02 militarized 0 militarised 0 001 & 00142407 a 0000 | issued military arms -00142917 00 a 01 unarmed 1 006 ;c 08199025 n 0000 ! 00142407 a 0101 & 00143201 a 0000 & 00143294 a 0000 & 00143376 a 0000 & 00143516 a 0000 | (used of persons or the military) not having or using arms; "went alone and unarmed"; "unarmed peasants were shot down"; "unarmed vehicles" -00143201 00 s 01 barehanded 0 001 & 00142917 a 0000 | with bare hands; "fought barehanded" -00143294 00 s 01 clean 0 001 & 00142917 a 0000 | not carrying concealed weapons -00143376 00 s 02 defenseless 0 defenceless 0 003 & 00142917 a 0000 + 05043091 n 0202 + 05043091 n 0101 | lacking weapons for self-defense -00143516 00 s 01 weaponless 0 001 & 00142917 a 0000 | without a weapon -00143589 00 a 02 armored 1 armoured 1 009 ;c 08199025 n 0000 ! 00144728 a 0101 & 00143854 a 0000 & 00144020 a 0000 & 00144102 a 0000 & 00144244 a 0000 & 00144408 a 0000 & 00144510 a 0000 & 00144598 a 0000 | protected by armor (used of persons or things military) -00143854 00 s 05 armor-clad 0 armour-clad 0 armor-plated 0 armour-plated 0 steel-plated 0 001 & 00143589 a 0000 | covered with heavy steel; "armor-plated vehicles" -00144020 00 s 01 bony-plated 0 001 & 00143589 a 0000 | covered with bony plates -00144102 00 s 01 bulletproof 0 002 & 00143589 a 0000 + 00166331 v 0101 | not penetrable by bullets; "bulletproof glass"; "bulletproof vest" -00144244 00 s 02 lightly_armored 0 lightly_armoured 0 001 & 00143589 a 0000 | equipped with armor heavy enough to provide protection against fire from light arms -00144408 00 s 01 mail-cheeked 0 001 & 00143589 a 0000 | having bony plates on the sides of the head -00144510 00 s 02 mail-clad 0 mailed 0 001 & 00143589 a 0000 | wearing protective mail -00144598 00 s 01 scaled 1 001 & 00143589 a 0000 | (used of armor) having overlapping metal plates attached to a leather backing -00144728 00 a 02 unarmored 1 unarmoured 1 002 ;c 08199025 n 0000 ! 00143589 a 0101 | (used of persons or things military) without protective armor -00144877 00 a 01 armed 2 006 ! 00145995 a 0101 & 00145083 a 0000 & 00145628 a 0000 & 00145706 a 0000 & 00145805 a 0000 & 00145883 a 0000 | (used of plants and animals) furnished with bristles and thorns -00145083 00 s 0d barbed 0 barbellate 0 briary 0 briery 0 bristled 0 bristly 0 burred 0 burry 0 prickly 0 setose 0 setaceous 0 spiny 0 thorny 0 012 & 00144877 a 0000 + 04949799 n 0d04 + 13089631 n 0d02 + 04949799 n 0c03 + 01902022 n 0b01 + 13089631 n 0903 + 04949799 n 0901 + 12036368 n 0802 + 04949799 n 0602 + 02902535 n 0601 + 12470512 n 0307 + 02585285 n 0201 | having or covered with protective barbs or quills or spines or thorns or setae etc.; "a horse with a short bristly mane"; "bristly shrubs"; "burred fruits"; "setaceous whiskers" -00145628 00 s 01 bristlelike 0 001 & 00144877 a 0000 | resembling a bristle -00145706 00 s 01 brushlike 0 001 & 00144877 a 0000 | resembling a brush; "brushlike blue blooms" -00145805 00 s 01 thistlelike 0 001 & 00144877 a 0000 | resembling a thistle -00145883 00 s 02 clawed 0 taloned 0 001 & 00144877 a 0000 | (of predatory animals) armed with claws or talons -00145995 00 a 01 unarmed 2 002 ! 00144877 a 0101 & 00146128 a 0000 | (used of plants or animals) lacking barbs or stings or thorns -00146128 00 s 02 thornless 0 spineless 0 001 & 00145995 a 0000 | lacking thorns -00146210 00 a 01 armed 3 005 ! 00146786 a 0101 & 00146430 a 0000 & 00146501 a 0000 & 00146609 a 0000 & 00146693 a 0000 | having arms or arms as specified; used especially in combination; "the many-armed goddess Shiva" -00146430 00 s 01 armlike 0 001 & 00146210 a 0000 | resembling an arm -00146501 00 s 01 brachiate 0 002 & 00146210 a 0000 ;c 06083243 n 0000 | having arms or armlike appendages -00146609 00 s 01 long-armed 0 001 & 00146210 a 0000 | having relatively long arms -00146693 00 s 01 one-armed 0 001 & 00146210 a 0000 | having one arm; "a one-armed veteran" -00146786 00 a 01 armless 0 001 ! 00146210 a 0101 | having no arms; "the armless Venus de Milo" -00146883 00 a 02 armored 2 armoured 2 004 ! 00147528 a 0101 & 00147052 a 0000 & 00147160 a 0000 & 00147397 a 0000 | used of animals; provided with protective covering -00147052 00 s 01 bone-covered 0 002 & 00146883 a 0000 ;c 00015388 n 0000 | (of animals) armored with bone -00147160 00 s 03 scaly 0 scaley 0 scaled 2 005 & 00146883 a 0000 ;c 06083243 n 0000 + 01902877 n 0201 + 04948603 n 0101 + 01902877 n 0101 | having the body covered or partially covered with thin horny plates, as some fish and reptiles -00147397 00 s 01 silver-scaled 0 001 & 00146883 a 0000 | having the body covered or partially covered with silver-colored scales -00147528 00 a 02 unarmored 2 unarmoured 2 002 ! 00146883 a 0101 & 00147659 a 0000 | used of animals; without protective covering -00147659 00 s 01 scaleless 0 001 & 00147528 a 0000 | destitute of scales -00147734 00 a 01 artful 0 010 ^ 00061262 a 0000 + 04876705 n 0101 ! 00149861 a 0101 & 00148078 a 0000 & 00148642 a 0000 & 00148852 a 0000 & 00149120 a 0000 & 00149262 a 0000 & 00149461 a 0000 & 00149686 a 0000 | marked by skill in achieving a desired end especially with cunning or craft; "the artful dodger"; "an artful choice of metaphors" -00148078 00 s 0b crafty 0 cunning 0 dodgy 0 foxy 0 guileful 0 knavish 0 slick 0 sly 0 tricksy 0 tricky 0 wily 0 014 & 00147734 a 0000 + 00752954 n 0b05 + 05621178 n 0b07 + 04875728 n 0a04 + 00171618 n 0a01 + 00171618 n 0901 + 05621178 n 0806 + 06760722 n 0703 + 05095324 n 0702 + 10022759 n 0402 + 05621178 n 0404 + 05905802 n 0303 + 05621178 n 0101 + 05621178 n 0102 | marked by skill in deception; "cunning men often pass for wise"; "deep political machinations"; "a foxy scheme"; "a slick evasive answer"; "sly as a fox"; "tricky Dick"; "a wily old attorney" -00148642 00 s 02 cute 0 precious 0 003 & 00147734 a 0000 + 04788332 n 0202 + 04788332 n 0201 | obviously contrived to charm; "an insufferably precious performance"; "a child with intolerably cute mannerisms" -00148852 00 s 02 designing 0 scheming 0 001 & 00147734 a 0000 | concealing crafty designs for advancing your own interest; "a selfish and designing nation obsessed with the dark schemes of European intrigue"- W.Churchill; "a scheming wife"; "a scheming gold digger" -00149120 00 s 01 deep 0 001 & 00147734 a 0000 | exhibiting great cunning usually with secrecy; "deep political machinations"; "a deep plot" -00149262 00 s 01 elusive 0 003 & 00147734 a 0000 + 02074377 v 0101 + 04824118 n 0101 | skillful at eluding capture; "a cabal of conspirators, each more elusive than the archterrorist"- David Kline -00149461 00 s 01 manipulative 0 003 & 00147734 a 0000 + 02536329 v 0101 + 01803936 v 0101 | skillful in influencing or controlling others to your own advantage; "the early manipulative techniques of a three-year-old child" -00149686 00 s 01 pawky 0 002 & 00147734 a 0000 ;r 08860123 n 0000 | cunning and sly; "the pawky rich old lady who incessantly scores off her parasitical descendants"- Punch -00149861 00 a 01 artless 0 004 ^ 01569965 a 0000 + 04872676 n 0101 ! 00147734 a 0101 & 00150055 a 0000 | simple and natural; without cunning or deceit; "an artless manner"; "artless elegance" -00150055 00 s 01 careless 0 001 & 00149861 a 0000 | effortless and unstudied; "an impression of careless elegance"; "danced with careless grace" -00150202 00 a 01 articulate 0 007 ^ 00494907 a 0000 ^ 02283703 a 0000 + 04651195 n 0103 ! 00151105 a 0101 & 00150505 a 0000 & 00150835 a 0000 & 00150936 a 0000 | expressing yourself easily or characterized by clear expressive language; "articulate speech"; "an articulate orator"; "articulate beings" -00150505 00 s 06 eloquent 0 facile 0 fluent 0 silver 0 silver-tongued 0 smooth-spoken 0 007 & 00150202 a 0000 + 07069210 n 0302 + 05642947 n 0301 + 04651195 n 0301 + 04708796 n 0201 + 07069210 n 0101 + 00769180 v 0101 | expressing yourself readily, clearly, effectively; "able to dazzle with his facile tongue"; "silver speech" -00150835 00 s 01 speech-endowed 0 001 & 00150202 a 0000 | capable of speech; "the speaking animal" -00150936 00 s 01 well-spoken 0 001 & 00150202 a 0000 | speaking or spoken fittingly or pleasingly; "a well-spoken gentleman"; "a few well-spoken words on civic pride" -00151105 00 a 02 inarticulate 0 unarticulate 0 010 ^ 00500569 a 0000 ! 00150202 a 0101 & 00151530 a 0000 & 00151661 a 0000 & 00151855 a 0000 & 00152004 a 0000 & 00152104 a 0000 & 00152285 a 0000 & 00152629 a 0000 & 00152784 a 0000 | without or deprived of the use of speech or words; "inarticulate beasts"; "remained stupidly inarticulate and saying something noncommittal"; "inarticulate with rage"; "an inarticulate cry" -00151530 00 s 01 aphasic 0 003 & 00151105 a 0000 + 09798244 n 0101 + 14097574 n 0101 | unable to speak because of a brain lesion -00151661 00 s 02 aphonic 0 voiceless 0 003 & 00151105 a 0000 + 14400507 n 0202 + 14400507 n 0101 | being without sound through injury or illness and thus incapable of all but whispered speech -00151855 00 s 03 dumb 1 mute 1 silent 0 003 & 00151105 a 0000 + 10342367 n 0201 + 14551986 n 0202 | unable to speak because of hereditary deafness -00152004 00 s 01 dumb 3 001 & 00151105 a 0000 | lacking the power of human speech; "dumb animals" -00152104 00 s 02 incoherent 0 tongue-tied 0 001 & 00151105 a 0000 | unable to express yourself clearly or fluently; "felt tongue-tied with embarrassment"; "incoherent with grief" -00152285 00 s 04 mute 0 tongueless 0 unspoken 0 wordless 0 003 & 00151105 a 0000 + 14551986 n 0102 + 04651974 n 0101 | expressed without speech; "a mute appeal"; "a silent curse"; "best grief is tongueless"- Emily Dickinson; "the words stopped at her lips unsounded"; "unspoken grief"; "choking exasperation and wordless shame"- Thomas Wolfe -00152629 00 s 02 speechless 0 dumb 2 002 & 00151105 a 0000 + 04982745 n 0101 | temporarily incapable of speaking; "struck dumb"; "speechless with shock" -00152784 00 s 01 unarticulated 0 001 & 00151105 a 0000 | uttered without the use of normal words or syllables -00152896 00 a 01 speaking(a) 0 002 ! 00153239 a 0101 & 00153083 a 0000 | capable of or involving speech or speaking; "human beings--the speaking animals"; "a speaking part in the play" -00153083 00 s 01 tongued 0 001 & 00152896 a 0000 | having a manner of speaking as specified; often used in combination; "golden-tongued"; "sharp-tongued" -00153239 00 a 02 nonspeaking 0 walk-on 0 001 ! 00152896 a 0101 | not capable of or especially not involving speech or spoken lines; "had a nonspeaking role in the play" -00153410 00 a 02 articulated 0 articulate 4 002 ! 00153652 a 0101 & 00153545 a 0000 | consisting of segments held together by joints -00153545 00 s 01 jointed 0 002 & 00153410 a 0000 ;c 06083243 n 0000 | having joints or jointed segments; -00153652 00 a 01 unarticulated 0 002 ! 00153410 a 0101 & 00153789 a 0000 | not consisting of segments that are held together by joints -00153789 00 s 01 unjointed 0 002 & 00153652 a 0000 ;c 06083243 n 0000 | without joints or jointed segments -00153898 00 a 01 ashamed(p) 0 006 ^ 01743217 a 0000 ! 00154965 a 0101 & 00154163 a 0000 & 00154270 a 0000 & 00154583 a 0000 & 00154837 a 0000 | feeling shame or guilt or embarrassment or remorse; "are you ashamed for having lied?"; "felt ashamed of my torn coat" -00154163 00 s 04 discredited 0 disgraced 0 dishonored 0 shamed 1 001 & 00153898 a 0000 | suffering shame -00154270 00 s 03 embarrassed 0 humiliated 0 mortified 0 001 & 00153898 a 0000 | made to feel uncomfortable because of shame or wounded pride; "too embarrassed to say hello to his drunken father on the street"; "humiliated that his wife had to go out to work"; "felt mortified by the comparison with her sister" -00154583 00 s 04 guilty 0 hangdog 0 shamefaced 2 shamed 2 004 & 00153898 a 0000 + 07507560 n 0301 + 07536245 n 0101 + 13990675 n 0102 | showing a sense of guilt; "a guilty look"; "the hangdog and shamefaced air of the retreating enemy"- Eric Linklater -00154837 00 s 02 shamefaced 1 sheepish 0 003 & 00153898 a 0000 + 07507560 n 0202 + 07507560 n 0101 | showing a sense of shame -00154965 00 a 01 unashamed 0 005 ^ 01743909 a 0000 ! 00153898 a 0101 & 00155144 a 0000 & 00155720 a 0000 & 00155886 a 0000 | used of persons or their behavior; feeling no shame -00155144 00 s 08 audacious 0 barefaced 0 bodacious 0 bald-faced 0 brassy 0 brazen 0 brazen-faced 0 insolent 0 006 & 00154965 a 0000 + 04915866 n 0805 + 04859636 n 0602 + 04838210 n 0503 + 04838510 n 0101 + 04838510 n 0102 | unrestrained by convention or propriety; "an audacious trick to pull"; "a barefaced hypocrite"; "the most bodacious display of tourism this side of Anaheim"- Los Angeles Times; "bald-faced lies"; "brazen arrogance"; "the modern world with its quick material successes and insolent belief in the boundless possibilities of progress"- Bertrand Russell -00155720 00 s 02 shameless 0 unblushing 0 002 & 00154965 a 0000 + 04859636 n 0101 | feeling no shame; "a shameless imposter"; "an unblushing apologist for fascism" -00155886 00 s 02 unabashed 0 unembarrassed 0 001 & 00154965 a 0000 | not embarrassed; "a tinseled charm and unabashed sentimentality"- Jerome Stone; "an unembarrassed greeting as if nothing untoward had happened" -00156101 00 a 03 assertive 0 self-asserting 0 self-assertive 0 007 ^ 00082241 a 0000 ^ 00712419 a 0000 + 02373785 v 0101 + 05167237 n 0101 ! 00156839 a 0101 & 00156440 a 0000 & 00156575 a 0000 | aggressively self-assured; "an energetic assertive boy who was always ready to argue"; "pointing directly at a listener is an assertive act" -00156440 00 s 01 cocky 0 002 & 00156101 a 0000 + 05167412 n 0102 | overly self-confident or self-assertive; "a very cocky young man" -00156575 00 s 02 emphatic 0 forceful 0 005 & 00156101 a 0000 + 05035353 n 0202 + 14434866 n 0101 + 07102945 n 0101 + 05037394 n 0102 | forceful and definite in expression or action; "the document contained a particularly emphatic guarantee of religious liberty" -00156839 00 a 01 unassertive 0 007 ^ 00788821 a 0000 ^ 00251809 a 0000 ^ 00084956 a 0000 + 07523649 n 0101 ! 00156101 a 0101 & 00157080 a 0000 & 00157268 a 0000 | inclined to timidity or lack of self-confidence; "a shy unassertive person" -00157080 00 s 01 nonassertive 0 001 & 00156839 a 0000 | not aggressively self-assured, though not necessarily lacking in confidence; "she was quiet and nonassertive as she took control" -00157268 00 s 03 reticent 0 self-effacing 0 retiring 0 001 & 00156839 a 0000 | reluctant to draw attention to yourself -00157389 00 a 02 associative 0 associatory 0 004 + 00713167 v 0201 + 00713167 v 0101 ! 00157849 a 0101 & 00157659 a 0000 | characterized by or causing or resulting from the process of bringing ideas or events together in memory or imagination ; "associative learning" -00157659 00 s 01 associable 0 005 & 00157389 a 0000 + 02470175 v 0102 + 00713167 v 0101 + 04688058 n 0101 + 04688058 n 0102 | capable of being associated; "words associable with politics" -00157849 00 a 01 nonassociative 0 001 ! 00157389 a 0101 | not associative -00157925 00 a 02 attached 1 committed 4 005 ^ 01463965 a 0000 ! 00158407 a 0101 & 00158110 a 0000 & 00158238 a 0000 & 00158332 a 0000 | associated in an exclusive sexual relationship -00158110 00 s 02 bespoken 0 betrothed 0 002 & 00157925 a 0000 + 09851575 n 0201 | pledged to be married; "the engaged couple" -00158238 00 s 01 intended 0 001 & 00157925 a 0000 | future; betrothed; "his intended bride" -00158332 00 s 01 involved 0 001 & 00157925 a 0000 | emotionally involved -00158407 00 a 02 unattached 0 uncommitted 4 002 ! 00157925 a 0101 & 00158546 a 0000 | not associated in an exclusive sexual relationship -00158546 00 s 03 unengaged 0 unpledged 0 unpromised 0 001 & 00158407 a 0000 | not promised in marriage; "continued seeing him but on an unengaged basis" -00158701 00 a 01 affixed 0 005 ! 00159381 a 0101 & 00158864 a 0000 & 00158961 a 0000 & 00159106 a 0000 & 00159267 a 0000 | firmly attached; "the affixed labels" -00158864 00 s 01 appendant 0 002 & 00158701 a 0000 + 01328705 v 0101 | affixed as an appendage -00158961 00 s 01 basifixed 0 002 & 00158701 a 0000 ;c 06066555 n 0000 | attached by its base (as certain anthers to their filaments or stalks) -00159106 00 s 02 glued 0 pasted 0 001 & 00158701 a 0000 | affixed or as if affixed with glue or paste; "he stayed glued to one spot"; "pieces of pasted paper" -00159267 00 s 01 mounted 0 001 & 00158701 a 0000 | assembled for use; especially by being attached to a support -00159381 00 a 02 unaffixed 0 loose 4 002 + 04777421 n 0201 ! 00158701 a 0101 | not affixed; "the stamp came loose" -00159498 00 a 02 sessile 0 stalkless 0 002 ;c 06037666 n 0000 ! 00159735 a 0101 | attached directly by the base; not having an intervening stalk; "sessile flowers"; "the shell of a sessile barnacle is attached directly to a substrate" -00159735 00 a 02 pedunculate 0 stalked 0 002 ;c 06037666 n 0000 ! 00159498 a 0101 | having or growing on or from a peduncle or stalk; "a pedunculate flower"; "a pedunculate barnacle is attached to the substrate by a fleshy foot or stalk" -00159975 00 a 01 sessile 2 002 ;c 06037666 n 0000 ! 00160144 a 0101 | permanently attached to a substrate; not free to move about; "sessile marine animals and plants" -00160144 00 a 01 vagile 0 003 ;c 06083243 n 0000 ! 00159975 a 0101 & 00160288 a 0000 | having freedom to move about; "vagile aquatic animals" -00160288 00 s 02 free-swimming 0 unattached 0 002 & 00160144 a 0000 ;c 00015388 n 0000 | (of animals) able to swim about; not attached -00160425 00 a 01 attached 2 002 ;c 06123363 n 0000 ! 00160573 a 0101 | used of buildings joined by common sidewalls; "a block of attached houses" -00160573 00 a 01 detached 0 004 ;c 06123363 n 0000 ! 00160425 a 0101 & 00160768 a 0000 & 00160957 a 0000 | used of buildings; standing apart from others; "detached houses"; "a detached garage" -00160768 00 s 02 freestanding 0 separate 0 001 & 00160573 a 0000 | standing apart; not attached to or supported by anything; "a freestanding bell tower"; "a house with a separate garage" -00160957 00 s 01 semidetached 0 001 & 00160573 a 0000 | attached on one side only; "a semidetached house" -00161065 00 a 01 stuck 0 002 ! 00161276 a 0101 & 00161170 a 0000 | caught or fixed; "stuck in the mud" -00161170 00 s 01 cragfast 0 001 & 00161065 a 0000 | stranded on or as if on a crag; "cragfast climbers" -00161276 00 a 01 unstuck 0 001 ! 00161065 a 0101 | free; "a man with a mule got my car unstuck"; "the gears locked in second and would not come unstuck" -00161431 00 a 01 attachable 0 007 + 01290255 v 0101 + 01296462 v 0101 + 01290422 v 0101 ! 00162083 a 0101 & 00161684 a 0000 & 00161878 a 0000 & 00161993 a 0000 | capable of being fastened or added to something else; "a handle attachable by two bolts" -00161684 00 s 02 bindable 0 bondable 0 005 & 00161431 a 0000 + 01303547 v 0101 + 01286913 v 0103 + 01285440 v 0102 + 01303242 v 0101 | capable of being fastened or secured with a rope or bond -00161878 00 s 01 clip-on 0 001 & 00161431 a 0000 | attachable by a clip; "clip-on earrings"; "a clip-on bow tie" -00161993 00 s 01 tie-on 0 001 & 00161431 a 0000 | fastened by tying on; "tie-on labels" -00162083 00 a 01 detachable 0 002 ! 00161431 a 0101 & 00162248 a 0000 | designed to be unfastened or disconnected without damage; "shirts with detachable collars" -00162248 00 s 01 clastic 0 001 & 00162083 a 0000 | capable of being taken apart; "the professor had a clastic model of the human brain" -00162386 00 a 01 wary 0 005 = 04664413 n 0000 + 04664413 n 0101 ! 00162990 a 0101 & 00162661 a 0000 & 00162863 a 0000 | marked by keen caution and watchful prudence; "they were wary in their movements"; "a wary glance at the black clouds"; "taught to be wary of strangers" -00162661 00 s 04 on_guard 0 on_one's_guard(p) 0 upon_one's_guard(p) 0 on_your_guard 0 001 & 00162386 a 0000 | vigilant; "on guard against con artists"; "must remain on your guard in such a situation" -00162863 00 s 01 shy 0 001 & 00162386 a 0000 | wary and distrustful; disposed to avoid persons or things; "shy of strangers" -00162990 00 a 01 unwary 0 005 = 04664413 n 0000 + 04665406 n 0101 ! 00162386 a 0101 & 00163315 a 0000 & 00163480 a 0000 | not alert to danger or deception; "the shrieks of unwary animals taken by surprise"; "some thieves prey especially on unwary travelers"; "seduce the unwary reader into easy acquiescence"- O.J.Campbell -00163315 00 s 01 gullible 0 002 & 00162990 a 0000 + 04881156 n 0102 | easily tricked because of being too trusting; "gullible tourists taken in by the shell game" -00163480 00 s 01 unguarded 0 001 & 00162990 a 0000 | displaying or feeling no wariness; "an unguarded remark" -00163592 00 a 01 attentive 0 010 ^ 00543603 a 0000 = 05082790 n 0000 + 02170427 v 0101 + 05702726 n 0101 ! 00164863 a 0101 & 00163948 a 0000 & 00164308 a 0000 & 00164462 a 0000 & 00164598 a 0000 & 00164681 a 0000 | (often followed by `to') giving care or attention; "attentive to details"; "the nurse was attentive to her patient"; "an attentive suitor" -00163948 00 s 06 captive 0 absorbed 0 engrossed 0 enwrapped 0 intent 0 wrapped 0 002 & 00163592 a 0000 + 04865722 n 0501 | giving or marked by complete attention to; "that engrossed look or rapt delight"; "then wrapped in dreams"; "so intent on this fantastic...narrative that she hardly stirred"- Walter de la Mare; "rapt with wonder"; "wrapped in thought" -00164308 00 s 02 advertent 0 heedful 0 005 & 00163592 a 0000 + 04663763 n 0202 + 05704096 n 0102 + 05704096 n 0101 + 02170427 v 0103 | giving attention -00164462 00 s 01 observant 0 003 & 00163592 a 0000 + 05703429 n 0103 + 02118933 v 0103 | paying close attention especially to details -00164598 00 s 01 oversolicitous 0 001 & 00163592 a 0000 | excessively solicitous -00164681 00 s 01 solicitous 0 002 & 00163592 a 0000 + 07505207 n 0102 | showing hovering attentiveness; "solicitous about her health"; "made solicitous inquiries about our family" -00164863 00 a 01 inattentive 0 010 ^ 00311663 a 0000 ^ 00165943 a 0000 ^ 00754873 a 0000 = 05082790 n 0000 ! 00163592 a 0101 & 00165171 a 0000 & 00165458 a 0000 & 00165585 a 0000 & 00165766 a 0000 & 00165943 a 0000 | showing a lack of attention or care; "inattentive students"; "an inattentive babysitter" -00165171 00 s 04 absent 0 absentminded 0 abstracted 0 scatty 0 003 & 00164863 a 0000 + 05700625 n 0301 + 05701209 n 0201 | lost in thought; showing preoccupation; "an absent stare"; "an absentminded professor"; "the scatty glancing quality of a hyperactive but unfocused intelligence" -00165458 00 s 02 distracted 0 distrait 0 001 & 00164863 a 0000 | having the attention diverted especially because of anxiety -00165585 00 s 03 dreamy 0 moony 0 woolgathering 0 004 & 00164863 a 0000 + 05700925 n 0101 + 05768806 n 0101 + 07516222 n 0102 | dreamy in mood or nature; "a woolgathering moment" -00165766 00 s 03 drowsy 0 oscitant 0 yawning(a) 0 003 & 00164863 a 0000 + 14030671 n 0201 + 00837293 n 0204 | showing lack of attention or boredom; "the yawning congregation" -00165943 00 s 02 forgetful 0 oblivious 0 004 & 00164863 a 0000 + 05674134 n 0202 + 05674134 n 0201 + 05673908 n 0101 | failing to keep in mind; "forgetful of her responsibilities"; "oblivious old age" -00166146 00 a 01 attractive 1 021 ^ 00217728 a 0000 ^ 01358363 a 0000 ^ 01807219 a 0000 ^ 02097268 a 0000 = 04686003 n 0000 + 01807882 v 0101 + 04686003 n 0101 ! 00169164 a 0101 & 00166753 a 0000 & 00167077 a 0000 & 00167278 a 0000 & 00167520 a 0000 & 00167671 a 0000 & 00167829 a 0000 & 00168039 a 0000 & 00168188 a 0000 & 00168551 a 0000 & 00168694 a 0000 & 00168820 a 0000 & 00168910 a 0000 & 00169056 a 0000 | pleasing to the eye or mind especially through beauty or charm; "a remarkably attractive young man"; "an attractive personality"; "attractive clothes"; "a book with attractive illustrations" -00166753 00 s 06 bewitching 0 captivating 0 enchanting 0 enthralling 0 entrancing 0 fascinating 0 001 & 00166146 a 0000 | capturing interest as if by a spell; "bewitching smile"; "Roosevelt was a captivating speaker"; "enchanting music"; "an enthralling book"; "antique papers of entrancing design"; "a fascinating woman" -00167077 00 s 02 charismatic 0 magnetic 0 003 & 00166146 a 0000 + 05850823 n 0205 + 04686537 n 0101 | possessing an extraordinary ability to attract; "a charismatic leader"; "a magnetic personality" -00167278 00 s 02 cunning 0 cute 0 002 & 00166146 a 0000 + 04685649 n 0202 | attractive especially by means of smallness or prettiness or quaintness; "a cute kid with pigtails"; "a cute little apartment"; "cunning kittens"; "a cunning baby" -00167520 00 s 01 dinky 0 003 & 00166146 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) pretty and neat; "what a dinky little hat" -00167671 00 s 02 engaging 0 piquant 0 001 & 00166146 a 0000 | attracting or delighting; "an engaging frankness"; "a piquant face with large appealing eyes" -00167829 00 s 03 fetching 0 taking 0 winning 0 001 & 00166146 a 0000 | very attractive; capturing interest; "a fetching new hairstyle"; "something inexpressibly taking in his manner"; "a winning personality" -00168039 00 s 02 glossy 0 showy 0 001 & 00166146 a 0000 | superficially attractive and stylish; suggesting wealth or expense; "a glossy TV series" -00168188 00 s 04 hypnotic 0 mesmeric 0 mesmerizing 0 spellbinding 0 003 & 00166146 a 0000 + 00158996 n 0202 + 14026592 n 0101 | attracting and holding interest as if by a spell; "read the bedtime story in a hypnotic voice"; "she had a warm mesmeric charm"; "the sheer force of his presence was mesmerizing"; "a spellbinding description of life in ancient Rome" -00168551 00 s 01 irresistible 0 003 & 00166146 a 0000 + 05192240 n 0102 + 05192240 n 0101 | overpoweringly attractive; "irresistible beauty" -00168694 00 s 01 personable 0 002 & 00166146 a 0000 + 04618921 n 0101 | (of persons) pleasant in appearance and personality -00168820 00 s 01 photogenic 0 001 & 00166146 a 0000 | looking attractive in photographs -00168910 00 s 01 prepossessing 0 001 & 00166146 a 0000 | creating a favorable impression; "strong and vigorous and of prepossessing appearance" -00169056 00 s 01 winsome 0 002 & 00166146 a 0000 + 04687957 n 0101 | charming in a childlike or naive way -00169164 00 a 01 unattractive 0 009 ^ 00220956 a 0000 ^ 01359035 a 0000 ^ 02098136 a 0000 = 04686003 n 0000 + 04691476 n 0101 ! 00166146 a 0101 & 00169432 a 0000 & 00169692 a 0000 & 00169826 a 0000 | lacking beauty or charm; "as unattractive as most mining regions" -00169432 00 s 02 homely 0 plain 0 004 & 00169164 a 0000 + 04691651 n 0202 + 04816528 n 0103 + 04691651 n 0101 | lacking in physical beauty or proportion; "a homely child"; "several of the buildings were downright homely"; "a plain girl with a freckled face" -00169692 00 s 01 subfusc 0 001 & 00169164 a 0000 | devoid of brightness or appeal; "a subfusc mining town"; "dark subfusc clothing" -00169826 00 s 02 unprepossessing 0 unpresentable 0 001 & 00169164 a 0000 | creating an unfavorable or neutral first impression -00169955 00 a 01 attractive(a) 2 004 = 11479058 n 0000 ;c 06090869 n 0000 + 01350025 v 0101 ! 00170156 a 0101 | having the properties of a magnet; the ability to draw or pull; "an attractive force"; -00170156 00 a 01 repulsive(a) 0 006 = 11426914 n 0000 ;c 06090869 n 0000 + 04781349 n 0102 + 01506157 v 0101 + 01131197 v 0101 ! 00169955 a 0101 | possessing the ability to repel; "a repulsive force" -00170358 00 a 01 appealing 0 004 + 04687333 n 0102 ! 00171044 a 0101 & 00170717 a 0000 & 00170847 a 0000 | able to attract interest or draw favorable attention; "He added an appealing and memorable figure to popular American mythology"- Vincent Starrett; "an appealing sense of humor"; "the idea of having enough money to retire at fifty is very appealing" -00170717 00 s 02 attention-getting 0 catchy 0 001 & 00170358 a 0000 | likely to attract attention; "a catchy title for a movie" -00170847 00 s 01 attractive 0 003 & 00170358 a 0000 + 01505254 v 0101 + 04688246 n 0102 | having power to arouse interest; "an attractive opportunity"; "the job is attractive because of the pay" -00171044 00 a 01 unappealing 0 003 ! 00170358 a 0101 & 00171292 a 0000 & 00171447 a 0000 | not able to attract favorable attention; "they have made the place as unappealing as possible"; "was forced to talk to his singularly unappealing hostess" -00171292 00 s 01 off-putting 0 001 & 00171044 a 0000 | tending to repel; "The trappings of upper-class life are off-putting and sterile"- Elizabeth Hess -00171447 00 s 01 unattractive 0 001 & 00171044 a 0000 | lacking power to arouse interest; "being unemployed is a most unattractive prospect" -00171590 00 a 01 attributable 0 006 = 05734559 n 0000 + 00726300 v 0104 ! 00172452 a 0101 & 00171872 a 0000 & 00172172 a 0000 & 00172308 a 0000 | capable of being attributed; "the collapse of the movement was attributable to a lack of morale"; "an idea attributable to a Russian" -00171872 00 s 04 ascribable 0 due 0 imputable 0 referable 0 002 & 00171590 a 0000 + 00726300 v 0102 | capable of being assigned or credited to; "punctuation errors ascribable to careless proofreading"; "the cancellation of the concert was due to the rain"; "the oversight was not imputable to him" -00172172 00 s 01 credited(p) 0 001 & 00171590 a 0000 | (usually followed by `to') given credit for; "an invention credited to Edison" -00172308 00 s 01 traceable 0 001 & 00171590 a 0000 | (usually followed by `to') able to be traced to; "a failure traceable to lack of energy" -00172452 00 a 02 unattributable 0 unascribable 0 002 = 05734559 n 0000 ! 00171590 a 0101 | not attributable -00172562 00 a 02 attributive 0 prenominal 0 003 ;c 06174404 n 0000 ! 00172993 a 0101 & 00172774 a 0000 | of adjectives; placed before the nouns they modify; "`red' is an attributive adjective in `a red apple'" -00172774 00 s 01 attributive_genitive 0 002 & 00172562 a 0000 ;c 06174404 n 0000 | a word in the genitive case used as an attributive adjective; "an example of the attributive genitive is `John's' in `John's mother'" -00172993 00 a 01 predicative 0 003 ;c 06174404 n 0000 + 01017222 v 0101 ! 00172562 a 0101 | of adjectives; relating to or occurring within the predicate of a sentence; "`red' is a predicative adjective in `the apple is red'" -00173220 00 a 01 pregnant 0 003 + 14046202 n 0101 ! 00173694 a 0101 & 00173391 a 0000 | carrying developing offspring within the body or being about to produce new life -00173391 00 s 08 big(p) 0 enceinte 0 expectant 0 gravid 0 great(p) 0 large(p) 0 heavy(p) 0 with_child(p) 0 006 & 00173220 a 0000 + 05103946 n 0601 + 14046861 n 0402 + 14046861 n 0401 + 00059376 v 0301 + 00059019 v 0305 | in an advanced stage of pregnancy; "was big with child"; "was great with child" -00173694 00 a 01 nonpregnant 0 001 ! 00173220 a 0101 | not pregnant -00173764 00 a 02 audible 0 hearable 0 010 ^ 01452593 a 0000 ^ 01746605 a 0000 = 05018934 n 0000 + 02169702 v 0201 + 05018934 n 0101 + 05018934 n 0102 ! 00174379 a 0101 & 00174056 a 0000 & 00174150 a 0000 & 00174243 a 0000 | heard or perceptible by the ear; "he spoke in an audible whisper" -00174056 00 s 01 clunky 0 002 & 00173764 a 0000 + 07396945 n 0104 | making a clunking sound -00174150 00 s 01 sonic 0 001 & 00173764 a 0000 | relating to audible sound; "a sonic wave" -00174243 00 s 01 sounding 0 001 & 00173764 a 0000 | making or having a sound as specified; used as a combining form; "harsh-sounding" -00174379 00 a 02 inaudible 0 unhearable 0 012 ^ 01748318 a 0000 ^ 01918984 a 0000 = 05018934 n 0000 + 05019163 n 0102 + 05019163 n 0101 ! 00173764 a 0101 & 00174719 a 0000 & 00174879 a 0000 & 00174983 a 0000 & 00175123 a 0000 & 00175300 a 0000 & 00175435 a 0000 | impossible to hear; imperceptible by the ear; "an inaudible conversation" -00174719 00 s 02 breathed 0 voiceless 0 001 & 00174379 a 0000 | uttered without voice; "could hardly hear her breathed plea, `Help me'"; "voiceless whispers" -00174879 00 s 01 infrasonic 0 001 & 00174379 a 0000 | having frequencies below those of audible sound -00174983 00 s 01 silent 0 001 & 00174379 a 0000 | having a frequency below or above the range of human audibility; "a silent dog whistle" -00175123 00 s 02 silent 2 unsounded 0 001 & 00174379 a 0000 | not made to sound; "the silent `h' at the beginning of `honor'"; "in French certain letters are often unsounded" -00175300 00 s 02 supersonic 0 ultrasonic 0 002 & 00174379 a 0000 + 11481209 n 0201 | having frequencies above those of audible sound -00175435 00 s 01 unheard 0 001 & 00174379 a 0000 | not necessarily inaudible but not heard -00175528 00 a 02 sonic 0 transonic 0 002 ! 00175719 a 0101 ! 00175887 a 0101 | (of speed) having or caused by speed approximately equal to that of sound in air at sea level; "a sonic boom" -00175719 00 a 01 subsonic 0 002 ! 00175887 a 0101 ! 00175528 a 0101 | (of speed) less than that of sound in a designated medium; "aircraft flying at subsonic speeds" -00175887 00 a 01 supersonic 0 002 ! 00175528 a 0101 ! 00175719 a 0101 | (of speed) greater than the speed of sound in a given medium (especially air); "a supersonic bomber flies so fast that it must release its bombs while the target is still over the horizon" -00176150 00 a 01 auspicious 0 006 ^ 00177186 a 0000 = 05161150 n 0000 + 05161150 n 0101 ! 00176838 a 0101 & 00176387 a 0000 & 00176676 a 0000 | auguring favorable circumstances and good luck; "an auspicious beginning for the campaign" -00176387 00 s 03 bright 0 hopeful 0 promising 0 004 & 00176150 a 0000 + 09801533 n 0203 + 14483620 n 0201 + 05620955 n 0101 | full or promise; "had a bright future in publishing"; "the scandal threatened an abrupt end to a promising political career"; "a hopeful new singer on Broadway" -00176676 00 s 02 fortunate 0 rosy 0 001 & 00176150 a 0000 | presaging good fortune; "she made a fortunate decision to go to medical school"; "rosy predictions" -00176838 00 a 02 inauspicious 0 unfortunate 4 004 = 05161150 n 0000 + 05162217 n 0101 ! 00176150 a 0101 & 00176991 a 0000 | not auspicious; boding ill -00176991 00 s 01 unpromising 0 001 & 00176838 a 0000 | unlikely to bring about favorable results or enjoyment; "faced an unpromising task"; "music for unpromising combinations of instruments" -00177186 00 a 01 propitious 0 007 ^ 00176150 a 0000 ^ 00995119 a 0000 = 05161150 n 0000 + 05161150 n 0102 ! 00177963 a 0101 & 00177547 a 0000 & 00177834 a 0000 | presenting favorable circumstances; likely to result in or show signs of success; "propitious omens"; "propitious gales speeded us along"; "a propitious alignment of planets for space exploration" -00177547 00 s 05 golden 2 favorable 0 favourable 0 lucky 0 prosperous 0 004 & 00177186 a 0000 + 14473655 n 0402 + 05160796 n 0302 + 05160796 n 0201 | presaging or likely to bring good luck; "a favorable time to ask for a raise"; "lucky stars"; "a prosperous moment to make a decision" -00177834 00 s 01 gracious 0 002 & 00177186 a 0000 + 04840981 n 0103 | disposed to bestow favors; "thanks to the gracious gods" -00177963 00 a 01 unpropitious 0 006 ^ 00995468 a 0000 = 05161150 n 0000 + 05162217 n 0102 ! 00177186 a 0101 & 00178126 a 0000 & 00178464 a 0000 | not propitious -00178126 00 s 03 ill 0 inauspicious 0 ominous 0 003 & 00177963 a 0000 + 07286368 n 0301 + 05162217 n 0201 | presaging ill fortune; "ill omens"; "ill predictions"; "my words with inauspicious thunderings shook heaven"- P.B.Shelley; "a dead and ominous silence prevailed"; "a by-election at a time highly unpropitious for the Government" -00178464 00 s 01 thunderous 0 001 & 00177963 a 0000 | extremely ominous; "world events of thunderous import" -00178575 00 a 02 authorized 0 authorised 0 009 ^ 01395617 a 0000 ^ 01406640 a 0000 ^ 01632537 a 0000 = 06556481 n 0000 ! 00179486 a 0101 & 00178811 a 0000 & 00179035 a 0000 & 00179190 a 0000 & 00179315 a 0000 | endowed with authority -00178811 00 s 04 accredited 0 commissioned 0 licensed 0 licenced 0 001 & 00178575 a 0000 | given official approval to act; "an accredited college"; "commissioned broker"; "licensed pharmacist"; "authorized representative" -00179035 00 s 02 approved 0 sanctioned 0 001 & 00178575 a 0000 | established by authority; given authoritative approval; "a list of approved candidates" -00179190 00 s 03 canonized 0 canonised 0 glorified 0 001 & 00178575 a 0000 | accorded sacrosanct or authoritative standing -00179315 00 s 03 empowered 0 sceptered 0 sceptred 0 001 & 00178575 a 0000 | invested with legal power or official authority especially as symbolized by having a scepter -00179486 00 a 02 unauthorized 0 unauthorised 0 006 ^ 01407465 a 0000 ^ 01633591 a 0000 = 06556481 n 0000 ! 00178575 a 0101 & 00179676 a 0000 & 00179815 a 0000 | not endowed with authority -00179676 00 s 01 self-appointed 0 001 & 00179486 a 0000 | designated or chosen by yourself; "a self-appointed guardian of public morals" -00179815 00 s 03 unaccredited 0 unlicensed 0 unlicenced 0 001 & 00179486 a 0000 | lacking official approval -00179925 00 a 01 constitutional 0 001 ! 00180211 a 0101 | sanctioned by or consistent with or operating under the law determining the fundamental political principles of a government; "the constitutional right of free speech"; "constitutional government"; "constitutional guarantees" -00180211 00 a 01 unconstitutional 0 001 ! 00179925 a 0101 | not consistent with or according to a constitution; contrary to the U.S. Constitution -00180359 00 a 01 autochthonous 0 001 ! 00180496 a 0101 | of rocks, deposits, etc.; found where they and their constituents were formed -00180496 00 a 01 allochthonous 0 001 ! 00180359 a 0101 | of rocks, deposits, etc.; found in a place other than where they and their constituents were formed -00180655 00 a 02 autoecious 0 homoecious 0 001 ! 00180835 a 0101 | of parasites especially rust fungi; completing the entire life cycle on a single host; "autoecious rust fungi" -00180835 00 a 01 heteroecious 0 001 ! 00180655 a 0101 | of parasites; passing through different stages of the life cycle on different host species; "heteroecious fungi"; "heteroecious insects" -00181030 00 a 02 autogenous 0 autogenic 0 003 ! 00181373 a 0101 & 00181162 a 0000 & 00181264 a 0000 | originating within the body -00181162 00 s 02 self-generated 0 self-produced 0 001 & 00181030 a 0000 | originating from the self -00181264 00 s 01 self-induced 0 001 & 00181030 a 0000 | brought about by yourself; "self-induced vomiting" -00181373 00 a 02 heterogenous 0 heterogeneous 2 001 ! 00181030 a 0101 | originating outside the body -00181476 00 a 01 automatic 0 013 ^ 01499686 a 0000 + 00479932 v 0101 + 02760658 n 0102 + 02760855 n 0102 + 02761392 n 0101 ! 00182843 a 0101 & 00181904 a 0000 & 00182086 a 0000 & 00182225 a 0000 & 00182418 a 0000 & 00182510 a 0000 & 00182639 a 0000 & 00182718 a 0000 | operating with minimal human intervention; independent of external control; "automatic transmission"; "a budget deficit that caused automatic spending cuts" -00181904 00 s 03 autoloading(a) 0 self-loading 0 semiautomatic 0 001 & 00181476 a 0000 | (of firearms) capable of automatic loading and firing continuously; "an autoloading rifle" -00182086 00 s 03 automated 0 machine-controlled 0 machine-driven 0 001 & 00181476 a 0000 | operated by automation; "an automated stoker" -00182225 00 s 04 self-acting 0 self-activating 0 self-moving 0 self-regulating 0 001 & 00181476 a 0000 | designed to activate or move or regulate itself; "a self-activating sprinkler system" -00182418 00 s 01 self-locking 0 001 & 00181476 a 0000 | locking automatically when closed -00182510 00 s 01 self-winding 0 001 & 00181476 a 0000 | designed so that manual winding is unnecessary; "a self-winding watch" -00182639 00 s 01 semiautomatic 1 001 & 00181476 a 0000 | partially automatic -00182718 00 s 01 smart 0 001 & 00181476 a 0000 | capable of independent and apparently intelligent action; "smart weapons" -00182843 00 a 01 manual 0 002 ! 00181476 a 0101 & 00182961 a 0000 | requiring human effort; "a manual transmission" -00182961 00 s 02 hand-operated 0 non-automatic 0 001 & 00182843 a 0000 | operated by hand -00183053 00 a 01 available 0 020 = 04718999 n 0000 + 01193569 v 0101 + 04718999 n 0103 + 04718999 n 0104 ! 00185921 a 0101 & 00183675 a 0000 & 00183832 a 0000 & 00183932 a 0000 & 00184075 a 0000 & 00184229 a 0000 & 00184363 a 0000 & 00184543 a 0000 & 00184676 a 0000 & 00184792 a 0000 & 00185020 a 0000 & 00185160 a 0000 & 00185363 a 0000 & 00185509 a 0000 & 00185607 a 0000 & 00185759 a 0000 | obtainable or accessible and ready for use or service; "kept a fire extinguisher available"; "much information is available through computers"; "available in many colors"; "the list of available candidates is unusually long" -00183675 00 s 01 accessible 0 002 & 00183053 a 0000 + 04718999 n 0102 | easily obtained; "most students now have computers accessible"; "accessible money" -00183832 00 s 01 acquirable 0 002 & 00183053 a 0000 + 02210855 v 0102 | capable of being acquired -00183932 00 s 01 addressable 0 003 & 00183053 a 0000 ;c 06128570 n 0000 + 01160899 v 0101 | capable of being addressed; "addressable memory" -00184075 00 s 01 easy 0 002 & 00183053 a 0000 ;c 06149484 n 0000 | less in demand and therefore readily obtainable; "commodities are easy this quarter" -00184229 00 s 01 forthcoming 0 001 & 00183053 a 0000 | available when required or as promised; "federal funds were not forthcoming" -00184363 00 s 04 gettable 0 getable 0 obtainable 0 procurable 0 002 & 00183053 a 0000 + 02238085 v 0301 | capable of being obtained; "savings of up to 50 percent are obtainable" -00184543 00 s 01 in_stock(p) 0 001 & 00183053 a 0000 | available for use or sale; "they have plenty of stonewashed jeans in stock" -00184676 00 s 01 lendable 0 002 & 00183053 a 0000 + 02324182 v 0101 | available for lending; "lendable resources" -00184792 00 s 01 visible(a) 0 001 & 00183053 a 0000 | present and easily available; "the cash on hand is adequate for current needs"; "emergency police were on hand in case of trouble"; "a visible supply"; "visible resources" -00185020 00 s 01 on_hand(p) 0 001 & 00183053 a 0000 | readily available; "there will be a wealth of information on hand from the lawyers" -00185160 00 s 01 on_tap(p) 0 001 & 00183053 a 0000 | available for immediate use; "extra personnel on tap"; "other sports and entertainment facilities are on tap"; "there are numerous projects on tap" -00185363 00 s 01 on_tap(p) 2 001 & 00183053 a 0000 | (of liquids) available by turning a tap; "ale on tap"; "hot and cold running water on tap" -00185509 00 s 01 open 0 001 & 00183053 a 0000 | not having been filled; "the job is still open" -00185607 00 s 02 purchasable 0 for_sale 0 001 & 00183053 a 0000 | available for purchase; "purchasable goods"; "many houses in the area are for sale" -00185759 00 s 01 ready(a) 1 001 & 00183053 a 0000 | (of especially money) immediately available; "he seems to have ample ready money"; "a ready source of cash" -00185921 00 a 01 unavailable 0 005 = 04718999 n 0000 + 04722910 n 0102 ! 00183053 a 0101 & 00186193 a 0000 & 00186490 a 0000 | not available or accessible or at hand; "fresh milk was unavailable during the emergency"; "his secretary said he was unavailable for comment" -00186193 00 s 04 inaccessible 0 unobtainable 0 unprocurable 0 untouchable 0 002 & 00185921 a 0000 + 04722910 n 0101 | not capable of being obtained; "a rare work, today almost inaccessible"; "timber is virtually unobtainable in the islands"; "untouchable resources buried deep within the earth" -00186490 00 s 01 out_of_stock(p) 0 001 & 00185921 a 0000 | not available for sale or use; "too many items are out of stock" -00186616 00 a 01 awake(p) 0 009 ^ 00091311 a 0000 ^ 00190115 a 0000 ^ 00570590 a 0000 ! 00187736 a 0101 & 00186925 a 0000 & 00187049 a 0000 & 00187176 a 0000 & 00187443 a 0000 & 00187590 a 0000 | not in a state of sleep; completely conscious; "lay awake thinking about his new job"; "still not fully awake" -00186925 00 s 02 astir(p) 0 up(p) 0 001 & 00186616 a 0000 | out of bed; "are they astir yet?"; "up by seven each morning" -00187049 00 s 01 awakened 0 001 & 00186616 a 0000 | (somewhat formal) having been waked up; "the awakened baby began to cry" -00187176 00 s 03 insomniac 0 sleepless 0 watchful 0 002 & 00186616 a 0000 + 14022959 n 0202 | experiencing or accompanied by sleeplessness; "insomniac old people"; "insomniac nights"; "lay sleepless all night"; "twenty watchful, weary, tedious nights"- Shakespeare -00187443 00 s 02 unsleeping 0 wide-awake 0 001 & 00186616 a 0000 | fully awake; "the unsleeping city"; "so excited she was wide-awake all night" -00187590 00 s 02 waking 0 wakeful 0 001 & 00186616 a 0000 | marked by full consciousness or alertness; "worked every moment of my waking hours" -00187736 00 a 01 asleep(p) 0 011 ^ 00191603 a 0000 ^ 00571643 a 0000 ! 00186616 a 0101 & 00188058 a 0000 & 00188155 a 0000 & 00188436 a 0000 & 00188738 a 0000 & 00188917 a 0000 & 00189017 a 0000 & 00189253 a 0000 & 00189511 a 0000 | in a state of sleep; "were all asleep when the phone rang"; "fell asleep at the wheel" -00188058 00 s 01 at_rest(a) 0 001 & 00187736 a 0000 | in a state of repose or especially sleep -00188155 00 s 03 dormant 0 hibernating(a) 0 torpid 0 006 & 00187736 a 0000 ;c 06037666 n 0000 + 04636881 n 0303 + 04636881 n 0302 + 14011811 n 0101 + 01064863 n 0103 | in a condition of biological rest or suspended animation; "dormant buds"; "a hibernating bear"; "torpid frogs" -00188436 00 s 03 drowsy 0 drowsing(a) 0 dozy 0 003 & 00187736 a 0000 + 00858849 n 0102 + 14030435 n 0102 | half asleep; "made drowsy by the long ride"; "it seemed a pity to disturb the drowsing (or dozing) professor"; "a tired dozy child"; "the nodding (or napping) grandmother in her rocking chair" -00188738 00 s 02 fast_asleep(p) 0 sound_asleep(p) 0 001 & 00187736 a 0000 | sleeping deeply; "lying fast asleep on the sofa"; "it would be cruel to wake him; he's sound asleep" -00188917 00 s 01 hypnoid 0 001 & 00187736 a 0000 | of or relating to a state of sleep or hypnosis -00189017 00 s 03 sleepy 0 sleepy-eyed 0 sleepyheaded 0 003 & 00187736 a 0000 + 14024882 n 0101 + 14030435 n 0101 | ready to fall asleep; "beginning to feel sleepy"; "a sleepy-eyed child with drooping eyelids"; "sleepyheaded students" -00189253 00 s 04 slumberous 0 slumbery 0 slumbrous 0 somnolent 0 003 & 00187736 a 0000 + 14030435 n 0403 + 14024882 n 0202 | inclined to or marked by drowsiness; "slumberous (or slumbrous) eyes"; "`slumbery' is archaic"; "the sound had a somnolent effect" -00189511 00 s 01 unawakened 0 001 & 00187736 a 0000 | still asleep -00189580 00 a 01 astringent 0 007 = 05202034 n 0000 + 02750835 n 0101 + 05202034 n 0101 + 01388386 v 0101 + 00304662 v 0101 ! 00190023 a 0101 & 00189833 a 0000 | tending to draw together or constrict soft organic tissue; "astringent cosmetic lotions" -00189833 00 s 02 styptic 0 hemostatic 0 004 & 00189580 a 0000 + 00676834 n 0201 + 02750835 n 0103 + 05202034 n 0102 | tending to check bleeding by contracting the tissues or blood vessels -00190023 00 a 01 nonastringent 0 002 = 05202034 n 0000 ! 00189580 a 0101 | not astringent -00190115 00 a 03 aware(p) 0 cognizant 0 cognisant 0 014 ^ 00186616 a 0000 ^ 00570590 a 0000 ^ 02102484 a 0000 ^ 00192756 a 0000 = 05675905 n 0000 + 00594621 v 0303 + 05675905 n 0304 + 05675905 n 0203 + 00594621 v 0202 + 05675905 n 0101 ! 00191603 a 0101 & 00190653 a 0000 & 00190960 a 0000 & 00191265 a 0000 | (sometimes followed by `of') having or showing knowledge or understanding or realization or perception; "was aware of his opponent's hostility"; "became aware of her surroundings"; "aware that he had exceeded the speed limit" -00190653 00 s 03 alert 0 alive(p) 0 awake(p) 0 003 & 00190115 a 0000 + 13961642 n 0204 + 05705722 n 0104 | mentally perceptive and responsive;"an alert mind"; "alert to the problems"; "alive to what is going on"; "awake to the dangers of her situation"; "was now awake to the reality of his predicament" -00190960 00 s 01 conscious(p) 0 002 & 00190115 a 0000 + 05675905 n 0102 | (followed by `of') showing realization or recognition of something; "few voters seem conscious of the issue's importance"; "conscious of having succeeded"; "the careful tread of one conscious of his alcoholic load"- Thomas Hardy -00191265 00 s 01 sensible 0 003 & 00190115 a 0000 + 05151701 n 0101 + 00589469 v 0103 | aware intuitively or intellectually of something sensed; "made sensible of his mistakes"; "I am sensible that the mention of such a circumstance may appear trifling"- Henry Hallam; "sensible that a good deal more is still to be done"- Edmund Burke -00191603 00 a 02 unaware 0 incognizant 0 011 ^ 00187736 a 0000 ^ 02102796 a 0000 ^ 00571643 a 0000 ^ 00192880 a 0000 = 05675905 n 0000 + 05676476 n 0201 + 05679611 n 0102 ! 00190115 a 0101 & 00192026 a 0000 & 00192332 a 0000 & 00192523 a 0000 | (often followed by `of') not aware; "seemed unaware of the scrutiny"; "unaware of the danger they were in"; "unaware of the newborn hope"; "the most unaware person I've known" -00192026 00 s 02 oblivious(p) 0 unmindful(p) 1 003 & 00191603 a 0000 + 04665543 n 0201 + 05674134 n 0101 | (followed by `to' or `of') lacking conscious awareness of; "oblivious of the mounting pressures for political reform"; "oblivious to the risks she ran"; "not unmindful of the heavy responsibility" -00192332 00 s 01 unconscious(p) 1 002 & 00191603 a 0000 + 05678932 n 0101 | (followed by `of') not knowing or perceiving; "happily unconscious of the new calamity at home"- Charles Dickens -00192523 00 s 01 unsuspecting 0 001 & 00191603 a 0000 | (often followed by `of') not knowing or expecting; not thinking likely; "an unsuspecting victim"; "unsuspecting (or unaware) of the fact that I would one day be their leader" -00192756 00 a 01 witting 0 002 ^ 00190115 a 0000 ! 00192880 a 0101 | aware or knowing; "a witting tool of the Communists" -00192880 00 a 01 unwitting 0 002 ^ 00191603 a 0000 ! 00192756 a 0101 | not aware or knowing; "an unwitting subject in an experiment" -00193015 00 a 01 alarming 0 015 = 07519773 n 0000 ! 00196560 a 0101 & 00193367 a 0000 & 00193480 a 0000 & 00193799 a 0000 & 00194357 a 0000 & 00194817 a 0000 & 00194924 a 0000 & 00195191 a 0000 & 00195383 a 0000 & 00195684 a 0000 & 00196122 a 0000 & 00196233 a 0000 & 00196312 a 0000 & 00196449 a 0000 | frightening because of an awareness of danger -00193367 00 s 02 appalling 0 dismaying 0 001 & 00193015 a 0000 | causing consternation; "appalling conditions" -00193480 00 s 05 atrocious 0 frightful 0 horrifying 0 horrible 0 ugly 2 002 & 00193015 a 0000 + 04782466 n 0201 | provoking horror; "an atrocious automobile accident"; "a frightful crime of decapitation"; "an alarming, even horrifying, picture"; "war is beyond all words horrible"- Winston Churchill; "an ugly wound" -00193799 00 s 0c awful 0 dire 1 direful 1 dread(a) 0 dreaded 0 dreadful 0 fearful 0 fearsome 0 frightening 0 horrendous 0 horrific 0 terrible 0 004 & 00193015 a 0000 + 04782116 n 0c04 + 07521674 n 0403 + 04782116 n 0101 | causing fear or dread or terror; "the awful war"; "an awful risk"; "dire news"; "a career or vengeance so direful that London was shocked"; "the dread presence of the headmaster"; "polio is no longer the dreaded disease it once was"; "a dreadful storm"; "a fearful howling"; "horrendous explosions shook the city"; "a terrible curse" -00194357 00 s 08 baleful 0 forbidding 0 menacing 0 minacious 0 minatory 0 ominous 0 sinister 0 threatening 0 003 & 00193015 a 0000 + 07286368 n 0601 + 04846533 n 0103 | threatening or foreshadowing evil or tragic developments; "a baleful look"; "forbidding thunderclouds"; "his tone became menacing"; "ominous rumblings of discontent"; "sinister storm clouds"; "a sinister smile"; "his threatening behavior"; "ugly black clouds"; "the situation became ugly" -00194817 00 s 03 bloodcurdling 0 hair-raising 0 nightmarish 0 001 & 00193015 a 0000 | extremely alarming -00194924 00 s 05 chilling 0 scarey 0 scary 0 shivery 0 shuddery 0 005 & 00193015 a 0000 + 07520112 n 0505 + 07520112 n 0402 + 07521437 n 0201 + 14405931 n 0202 | provoking fear terror; "a scary movie"; "the most terrible and shuddery...tales of murder and revenge" -00195191 00 s 02 creepy 0 creepy-crawly 0 002 & 00193015 a 0000 + 05723080 n 0101 | causing a sensation as of things crawling on your skin; "a creepy story"; "I had a creepy-crawly feeling" -00195383 00 s 03 formidable 0 redoubtable 0 unnerving 0 001 & 00193015 a 0000 | inspiring fear; "the formidable prospect of major surgery"; "a tougher and more redoubtable adversary than the heel-clicking, jackbooted fanatic"- G.H.Johnston; "something unnerving and prisonlike about high grey wall" -00195684 00 s 06 ghastly 0 grim 0 grisly 0 gruesome 0 macabre 0 sick 0 004 & 00193015 a 0000 + 04782610 n 0403 + 04782610 n 0202 + 04782610 n 0101 | shockingly repellent; inspiring horror; "ghastly wounds"; "the grim aftermath of the bombing"; "the grim task of burying the victims"; "a grisly murder"; "gruesome evidence of human sacrifice"; "macabre tales of war and plague in the Middle ages"; "macabre tortures conceived by madmen" -00196122 00 s 01 hairy 0 001 & 00193015 a 0000 | hazardous and frightening; "hairy moments in the mountains" -00196233 00 s 01 petrifying 0 001 & 00193015 a 0000 | paralyzing with terror -00196312 00 s 01 stupefying 0 001 & 00193015 a 0000 | shocking with surprise and consternation; "the stupefying impact of the tragedy" -00196449 00 s 02 terrific 0 terrifying 0 001 & 00193015 a 0000 | causing extreme terror; "a terrifying wail" -00196560 00 a 01 unalarming 0 002 = 07519773 n 0000 ! 00193015 a 0101 | not alarming; assuaging alarm -00196664 00 a 01 anemophilous 0 001 ! 00196799 a 0101 | of flowering plants (especially grasses etc) that are pollinated by the wind -00196799 00 a 01 entomophilous 0 001 ! 00196664 a 0101 | of flowering plants (especially orchids etc) that are pollinated by insects -00196934 00 a 01 reassuring 0 006 ^ 00866471 a 0000 = 01215719 n 0000 ! 00197447 a 0101 & 00197151 a 0000 & 00197247 a 0000 & 00197319 a 0000 | restoring confidence and relieving anxiety; "a very reassuring remark" -00197151 00 s 02 assuasive 0 soothing 0 001 & 00196934 a 0000 | freeing from fear and anxiety -00197247 00 s 01 assuring 0 001 & 00196934 a 0000 | giving confidence -00197319 00 s 03 comforting 0 consolatory 0 consoling 0 002 & 00196934 a 0000 + 01814815 v 0203 | affording comfort or solace -00197447 00 a 02 unreassuring 0 worrisome 4 002 = 01215719 n 0000 ! 00196934 a 0101 | not reassuring; tending to cause anxiety -00197576 00 a 01 back(a) 0 005 ^ 01033371 a 0000 ^ 00131426 a 0000 ! 00198147 a 0101 & 00197773 a 0000 & 00197891 a 0000 | related to or located at the back; "the back yard"; "the back entrance" -00197773 00 s 04 backmost 0 hindermost 0 hindmost 0 rearmost 0 001 & 00197576 a 0000 | located farthest to the rear -00197891 00 s 02 rear(a) 0 rearward(a) 0 005 & 00197576 a 0000 + 08629746 n 0201 + 08625846 n 0102 + 08629508 n 0101 + 04059701 n 0101 | located in or toward the back or rear; "the chair's rear legs"; "the rear door of the plane"; "on the rearward side" -00198147 00 a 01 front(a) 0 007 ^ 00130778 a 0000 ^ 01010862 a 0000 ^ 01033081 a 0000 ! 00197576 a 0101 & 00198383 a 0000 & 00198610 a 0000 & 00198757 a 0000 | relating to or located in the front; "the front lines"; "the front porch" -00198383 00 s 03 advance(a) 0 advanced(a) 0 in_advance(p) 0 002 & 00198147 a 0000 + 07445265 n 0103 | situated ahead or going before; "an advance party"; "at that time the most advanced outpost was still east of the Rockies" -00198610 00 s 02 foremost 0 frontmost 0 001 & 00198147 a 0000 | preceding all others in spatial position; "the foremost compartment of the ship" -00198757 00 s 02 frontal 0 head-on 0 002 & 00198147 a 0000 + 08573674 n 0102 | meeting front to front; "a frontal attack"; "a head-on collision" -00198904 00 a 01 leading 0 003 ! 00199569 a 0101 & 00199114 a 0000 & 00199463 a 0000 | going or proceeding or going in advance; showing the way; "we rode in the leading car"; "the leading edge of technology" -00199114 00 s 04 directing 0 directional 0 directive 0 guiding 2 006 & 00198904 a 0000 + 07170080 n 0301 + 05066867 n 0302 + 05066867 n 0301 + 02439501 v 0301 + 00710005 v 0303 | showing the way by conducting or leading; imposing direction on; "felt his mother's directing arm around him"; "the directional role of science on industrial progress" -00199463 00 s 01 guiding 0 001 & 00198904 a 0000 | exerting control or influence; "a guiding principle" -00199569 00 a 01 following 0 002 ! 00198904 a 0101 & 00199811 a 0000 | going or proceeding or coming after in the same direction; "the crowd of following cars made the occasion seem like a parade"; "tried to outrun the following footsteps" -00199811 00 s 01 pursuing 0 001 & 00199569 a 0000 | following in order to overtake or capture or as accompaniment to such pursuit; "the fox fled from the pursuing hounds"; "listened for the hounds' pursuing bark" -00200026 00 a 01 backed 0 008 ! 00201130 a 0101 & 00200258 a 0000 & 00200431 a 0000 & 00200529 a 0000 & 00200603 a 0000 & 00200760 a 0000 & 00200854 a 0000 & 00200979 a 0000 | having a back or backing, usually of a specified type -00200258 00 s 04 hardbacked 0 hardback 0 hardbound 0 hardcover 0 003 & 00200026 a 0000 + 03492391 n 0402 + 03492391 n 0201 | having a hard back or cover; "hardback books" -00200431 00 s 01 high-backed 0 001 & 00200026 a 0000 | having a high back; "a high-backed sofa" -00200529 00 s 01 low-backed 0 001 & 00200026 a 0000 | having a low back -00200603 00 s 02 razorback 0 razor-backed 0 002 & 00200026 a 0000 + 02396157 n 0101 | having a sharp narrow back; "a razor-backed horse"; "razorback hogs" -00200760 00 s 01 spiny-backed 0 001 & 00200026 a 0000 | having the back covered with spines -00200854 00 s 01 stiff-backed 0 001 & 00200026 a 0000 | having a stiff back; "the guards stood stiff-backed and unsmiling" -00200979 00 s 01 straight-backed 0 001 & 00200026 a 0000 | having a straight back; "a straight-backed wooden chair"; "a slim straight-backed dancer" -00201130 00 a 01 backless 0 002 ! 00200026 a 0101 & 00201259 a 0000 | lacking a back; "a stool is a backless and armless seat" -00201259 00 s 01 low-cut 0 001 & 00201130 a 0000 | having a low-cut back; "a backless dress" -00201354 00 a 01 backward 1 015 ^ 01876957 a 0000 ^ 01884539 a 0000 ! 00203237 a 0101 & 00201722 a 0000 & 00201802 a 0000 & 00201961 a 0000 & 00202095 a 0000 & 00202250 a 0000 & 00202411 a 0000 & 00202508 a 0000 & 00202677 a 0000 & 00202772 a 0000 & 00202875 a 0000 & 00203030 a 0000 & 00203123 a 0000 | directed or facing toward the back or rear; "a backward view" -00201722 00 s 02 backswept 0 sweptback 0 001 & 00201354 a 0000 | used of hair -00201802 00 s 02 cacuminal 0 retroflex 2 002 & 00201354 a 0000 ;c 06172789 n 0000 | pronounced with the tip of the tongue turned back toward the hard palate -00201961 00 s 03 converse 0 reversed 0 transposed 0 001 & 00201354 a 0000 | turned about in order or relation; "transposed letters" -00202095 00 s 02 inverse 0 reverse 2 003 & 00201354 a 0000 + 13858604 n 0201 + 00346693 n 0202 | reversed (turned backward) in order or nature or effect -00202250 00 s 02 rearward 0 reverse 0 002 & 00201354 a 0000 + 08629746 n 0101 | directed or moving toward the rear; "a rearward glance"; "a rearward movement" -00202411 00 s 01 receding(a) 0 001 & 00201354 a 0000 | (of a hairline e.g.) moving slowly back -00202508 00 s 02 reflexive 0 self-referent 0 005 & 00201354 a 0000 ;c 06174404 n 0000 + 06328207 n 0102 + 13798814 n 0102 + 13798814 n 0101 | referring back to itself -00202677 00 s 01 regardant(ip) 0 002 & 00201354 a 0000 ;c 05801594 n 0000 | looking backward -00202772 00 s 01 retracted 0 001 & 00201354 a 0000 | drawn back and in; "a cat with retracted claws" -00202875 00 s 02 retral 0 retrograde 2 001 & 00201354 a 0000 | moving or directed or tending in a backward direction or contrary to a previous direction -00203030 00 s 02 retroflex 0 retroflexed 0 001 & 00201354 a 0000 | bent or curved backward -00203123 00 s 02 returning(a) 0 reversive 0 002 & 00201354 a 0000 + 00387310 v 0201 | tending to be turned back -00203237 00 a 01 forward 1 005 ^ 01033081 a 0000 ^ 01876006 a 0000 ! 00201354 a 0101 & 00203495 a 0000 & 00203614 a 0000 | at or near or directed toward the front; "the forward section of the aircraft"; "a forward plunge down the stairs"; "forward motion" -00203495 00 s 03 guardant(ip) 0 gardant(ip) 0 full-face 0 002 & 00203237 a 0000 ;c 05801594 n 0000 | looking forward -00203614 00 s 02 headfirst 0 headlong 0 001 & 00203237 a 0000 | with the head foremost; "a headfirst plunge down the stairs"; "a headlong dive into the pool" -00203774 00 a 01 forward 3 001 ! 00203917 a 0101 | of the transmission gear causing forward movement in a motor vehicle; "in a forward gear" -00203917 00 a 01 reverse 0 002 + 04085017 n 0101 ! 00203774 a 0101 | of the transmission gear causing backward movement in a motor vehicle; "in reverse gear" -00204077 00 a 01 backward 2 003 ^ 00251809 a 0000 ! 00204491 a 0101 & 00204249 a 0000 | (used of temperament or behavior) marked by a retiring nature; "a backward lover" -00204249 00 s 02 bashful 0 blate 0 002 & 00204077 a 0000 ;r 08890097 n 0000 | disposed to avoid notice; "they considered themselves a tough outfit and weren't bashful about letting anybody know it"; (`blate' is a Scottish term for bashful) -00204491 00 a 01 forward 2 008 ^ 00249721 a 0000 + 05167412 n 0104 ! 00204077 a 0101 & 00204779 a 0000 & 00205033 a 0000 & 00205150 a 0000 & 00205295 a 0000 & 00205696 a 0000 | used of temperament or behavior; lacking restraint or modesty; "a forward child badly in need of discipline" -00204779 00 s 03 brash 0 cheeky 0 nervy 0 005 & 00204491 a 0000 + 04838210 n 0302 + 04838210 n 0205 + 04915866 n 0206 + 04662283 n 0101 | offensively bold; "a brash newcomer disputed the age-old rules for admission to the club"; "a nervy thing to say" -00205033 00 s 02 bumptious 0 self-assertive 0 002 & 00204491 a 0000 + 05167412 n 0101 | offensively self-assertive -00205150 00 s 01 overfamiliar 0 001 & 00204491 a 0000 | taking undue liberties; "young women disliked the overfamiliar tone he took with them" -00205295 00 s 08 fresh 0 impertinent 0 impudent 0 overbold 0 smart 0 saucy 0 sassy 0 wise 0 007 & 00204491 a 0000 + 06721949 n 0701 + 04649651 n 0604 + 06721813 n 0301 + 04915866 n 0304 + 04915866 n 0203 + 04915866 n 0107 | improperly forward or bold; "don't be fresh with me"; "impertinent of a child to lecture a grownup"; "an impudent boy given to insulting strangers"; "Don't get wise with me!" -00205696 00 s 03 assumptive 0 assuming 0 presumptuous 0 004 & 00204491 a 0000 + 04838727 n 0301 + 01225562 n 0301 + 04838727 n 0302 | excessively forward; "an assumptive person"; "on a subject like this it would be too assuming for me to decide"; "the duchess would not put up with presumptuous servants" -00206003 00 a 01 balconied 0 001 ! 00206127 a 0101 | having balconies or a balcony; "the balconied houses of New Orleans" -00206127 00 a 01 unbalconied 0 001 ! 00206003 a 0101 | not having balconies -00206205 00 a 02 barreled 0 barrelled 2 001 ! 00206317 a 0101 | put in or stored in a barrel; "barreled beer" -00206317 00 a 02 unbarreled 0 unbarrelled 0 001 ! 00206205 a 0101 | not in a barrel -00206403 00 a 01 beaked 0 009 ! 00207467 a 0101 & 00206627 a 0000 & 00206750 a 0000 & 00206900 a 0000 & 00207034 a 0000 & 00207133 a 0000 & 00207226 a 0000 & 00207305 a 0000 & 00207389 a 0000 | having or resembling a beak -00206627 00 s 01 beaklike 0 001 & 00206403 a 0000 | resembling the beak of a bird; "a grizzled man with a beaklike nose" -00206750 00 s 01 billed 0 002 & 00206403 a 0000 ;u 06307152 n 0000 | having a beak or bill as specified; "a thick-billed bird"; "a long-billed cap" -00206900 00 s 02 duckbill 0 duck-billed 0 001 & 00206403 a 0000 | having a beak resembling that of a duck; "a duck-billed dinosaur" -00207034 00 s 01 rostrate 0 001 & 00206403 a 0000 | having a beak or beaklike snout or proboscis -00207133 00 s 02 short-beaked 0 short-billed 0 001 & 00206403 a 0000 | having a short beak -00207226 00 s 01 stout-billed 0 001 & 00206403 a 0000 | having a strong beak -00207305 00 s 01 straight-billed 0 001 & 00206403 a 0000 | having a straight beak -00207389 00 s 01 thick-billed 0 001 & 00206403 a 0000 | having a thick beak -00207467 00 a 01 beakless 0 001 ! 00206403 a 0101 | not having a beak or bill -00207547 00 a 01 bedded 0 005 ;u 06307152 n 0000 ! 00207961 a 0101 & 00207706 a 0000 & 00207809 a 0000 & 00207887 a 0000 | having a bed or beds as specified -00207706 00 s 01 double-bedded 0 001 & 00207547 a 0000 | having a double bed; "a double-bedded room" -00207809 00 s 01 single-bedded 0 001 & 00207547 a 0000 | having single beds -00207887 00 s 01 twin-bedded 0 001 & 00207547 a 0000 | having twin beds -00207961 00 a 01 bedless 0 001 ! 00207547 a 0101 | without a bed; "the cell was bedless" -00208052 00 a 01 beneficed 0 001 ! 00208150 a 0101 | having a benefice; "a beneficed clergyman" -00208150 00 a 01 unbeneficed 0 001 ! 00208052 a 0101 | not having a benefice -00208229 00 a 02 stratified 0 bedded 4 006 ;c 06115701 n 0000 ! 00208946 a 0101 & 00208447 a 0000 & 00208613 a 0000 & 00208749 a 0000 & 00208872 a 0000 | deposited or arranged in horizontal layers; "stratified rock" -00208447 00 s 03 foliate 0 foliated 0 foliaceous 0 002 & 00208229 a 0000 + 09283066 n 0301 | (especially of metamorphic rock) having thin leaflike layers or strata -00208613 00 s 02 laminar 0 laminal 0 003 & 00208229 a 0000 + 05580929 n 0201 + 05580929 n 0101 | arranged in or consisting of laminae -00208749 00 s 02 layered 0 superimposed 0 001 & 00208229 a 0000 | with one layer on top of another; "superimposed rocks" -00208872 00 s 01 sheetlike 0 001 & 00208229 a 0000 | resembling a sheet -00208946 00 a 01 unstratified 0 002 ;c 06115701 n 0000 ! 00208229 a 0101 | not deposited in layers; "glacial till is unstratified" -00209079 00 a 02 ferned 0 ferny 1 004 + 11545714 n 0201 ! 00209550 a 0101 & 00209253 a 0000 & 00209390 a 0000 | abounding in or covered with ferns; "the ferny undergrowth" -00209253 00 s 01 braky 0 002 & 00209079 a 0000 + 13189844 n 0103 | abounding with bracken; "the woods and braky glens"- William Browne -00209390 00 s 02 fernlike 0 ferny 2 002 & 00209079 a 0000 + 11545714 n 0201 | resembling ferns especially in leaf shape; "the ferny shadows of locust leaves" -00209550 00 a 01 fernless 0 001 ! 00209079 a 0101 | devoid of ferns -00209620 00 a 01 grassy 0 006 + 12102133 n 0101 ! 00210212 a 0101 & 00209781 a 0000 & 00209916 a 0000 & 00209988 a 0000 & 00210079 a 0000 | abounding in grass -00209781 00 s 01 grass-covered 0 001 & 00209620 a 0000 | covered with grass; "wide grass-covered plains as far as the eye could see" -00209916 00 s 01 grasslike 0 001 & 00209620 a 0000 | resembling grass -00209988 00 s 02 rushlike 0 sedgelike 0 001 & 00209620 a 0000 | resembling rush or sedge -00210079 00 s 01 sedgy 0 003 & 00209620 a 0000 ;c 00017222 n 0000 + 12150028 n 0101 | covered with sedges (grasslike marsh plants) -00210212 00 a 01 grassless 0 001 ! 00209620 a 0101 | lacking grass -00210281 00 a 01 gusseted 0 001 ! 00210371 a 0101 | provided or reinforced with gussets -00210371 00 a 01 ungusseted 0 001 ! 00210281 a 0101 | not having gussets -00210446 00 a 01 hairless 0 013 + 14457218 n 0101 ! 00212173 a 0101 & 00210848 a 0000 & 00211026 a 0000 & 00211092 a 0000 & 00211221 a 0000 & 00211370 a 0000 & 00211444 a 0000 & 00211564 a 0000 & 00211735 a 0000 & 00211827 a 0000 & 00211916 a 0000 & 00212057 a 0000 | having no hair or fur; "a Mexican Hairless is about the size of a fox terrier and hairless except for a tufts on the head and tail" -00210848 00 s 03 bald 0 bald-headed 0 bald-pated 0 002 & 00210446 a 0000 + 14457041 n 0101 | lacking hair on all or most of the scalp; "a bald pate"; "a bald-headed gentleman" -00211026 00 s 01 balding 0 001 & 00210446 a 0000 | getting bald -00211092 00 s 02 beardless 0 smooth-faced 0 001 & 00210446 a 0000 | lacking hair on the face; "a smooth-faced boy of 14 years" -00211221 00 s 01 depilatory 0 004 & 00210446 a 0000 + 14833729 n 0101 + 03177165 n 0101 + 00037514 v 0102 | able to remove hair or render hairless -00211370 00 s 01 depilous 0 001 & 00210446 a 0000 | completely hairless -00211444 00 s 01 glabrescent 0 001 & 00210446 a 0000 | lacking hair or a similar growth or tending to become hairless -00211564 00 s 01 glabrous 0 002 & 00210446 a 0000 ;c 06037666 n 0000 | having no hair or similar growth; smooth; "glabrous stems"; "glabrous leaves"; "a glabrous scalp" -00211735 00 s 01 naked-muzzled 0 001 & 00210446 a 0000 | having a muzzle that is hairless -00211827 00 s 01 naked-tailed 0 001 & 00210446 a 0000 | having a tail that is hairless -00211916 00 s 01 nonhairy 0 001 & 00210446 a 0000 | without hair; "tinea corporis is a fungal infection of the nonhairy parts of the skin" -00212057 00 s 01 tonsured 0 001 & 00210446 a 0000 | having a bald spot either shaved or natural; "tonsured monks" -00212173 00 a 03 hairy 0 haired 0 hirsute 0 036 + 04683600 n 0301 + 05254795 n 0101 + 01900150 n 0101 + 04683453 n 0101 ! 00210446 a 0101 & 00212949 a 0000 & 00213071 a 0000 & 00213172 a 0000 & 00213387 a 0000 & 00213516 a 0000 & 00213610 a 0000 & 00213814 a 0000 & 00213933 a 0000 & 00214001 a 0000 & 00214165 a 0000 & 00214323 a 0000 & 00214461 a 0000 & 00214640 a 0000 & 00214812 a 0000 & 00214907 a 0000 & 00215087 a 0000 & 00215257 a 0000 & 00215344 a 0000 & 00215468 a 0000 & 00215564 a 0000 & 00215654 a 0000 & 00215745 a 0000 & 00215834 a 0000 & 00215929 a 0000 & 00216003 a 0000 & 00216079 a 0000 & 00216155 a 0000 & 00216308 a 0000 & 00216420 a 0000 & 00216560 a 0000 & 00216668 a 0000 | having or covered with hair; "Jacob was a hairy man"; "a hairy caterpillar" -00212949 00 s 02 canescent 0 hoary 0 002 & 00212173 a 0000 ;c 06037666 n 0000 | covered with fine whitish hairs or down -00213071 00 s 02 coarse-haired 0 coarse-furred 0 001 & 00212173 a 0000 | having coarse hair or fur -00213172 00 s 03 comate 0 comose 0 comal 0 003 & 00212173 a 0000 ;c 06066555 n 0000 + 13090395 n 0301 | of certain seeds (such as cotton) having a tuft or tufts of hair; "comate (or comose) seeds"; "a comal tuft" -00213387 00 s 02 curly-haired 0 curly-coated 0 001 & 00212173 a 0000 | covered with curly hair; "a curly-coated water spaniel" -00213516 00 s 02 dark-haired 0 dark-coated 0 001 & 00212173 a 0000 | covered with dark hair -00213610 00 s 04 downy 0 pubescent 0 puberulent 0 sericeous 0 004 & 00212173 a 0000 ;c 06037666 n 0000 + 05255692 n 0101 + 04938838 n 0101 | covered with fine soft hairs or down; "downy milkweed seeds" -00213814 00 s 01 floccose 0 002 & 00212173 a 0000 ;c 00017222 n 0000 | (of plants) having tufts of soft woolly hairs -00213933 00 s 01 furlike 0 001 & 00212173 a 0000 | resembling fur -00214001 00 s 02 furred 0 furry 0 002 & 00212173 a 0000 + 01899062 n 0201 | covered with a dense coat of fine silky hairs; "furred animals"; "a furry teddy bear" -00214165 00 s 02 fuzzed 0 fuzzy 0 002 & 00212173 a 0000 + 05261894 n 0201 | covering with fine light hairs; "his head fuzzed like a dandelion gone to seed" -00214323 00 s 03 glossy-haired 0 glossy-coated 0 glossy-furred 0 001 & 00212173 a 0000 | having glossy hair; "a glossy-coated foxhound" -00214461 00 s 01 hispid 0 003 & 00212173 a 0000 ;c 00015388 n 0000 ;c 00017222 n 0000 | (of animals or plants) having stiff coarse hairs or bristles; "plants with hispid stems" -00214640 00 s 02 lanate 0 woolly 2 001 & 00212173 a 0000 | covered with dense cottony hairs or hairlike filaments; "the woolly aphid has a lanate coat resembling cotton" -00214812 00 s 01 long-haired 0 001 & 00212173 a 0000 | with long hair; "long-haired hippies" -00214907 00 s 01 pappose 0 002 & 00212173 a 0000 ;c 00017222 n 0000 | (of plants such as dandelions and thistles) having pappi or tufts of featherlike hairs or delicate bristles -00215087 00 s 03 pilous 0 pilose 0 pilary 0 004 & 00212173 a 0000 ;c 06037666 n 0000 + 05255692 n 0302 + 05255692 n 0102 | covered with hairs especially fine soft ones -00215257 00 s 01 rough-haired 0 001 & 00212173 a 0000 | having hair that feels rough -00215344 00 s 01 shock-headed 0 001 & 00212173 a 0000 | having a shock (or untidy mass) of hair; "shock-headed teenagers" -00215468 00 s 01 short-haired 0 001 & 00212173 a 0000 | with short hair; "a short-haired dog" -00215564 00 s 01 silky-haired 0 001 & 00212173 a 0000 | having hair that resembles silk -00215654 00 s 01 silver-haired 0 001 & 00212173 a 0000 | having hair the color of silver -00215745 00 s 01 smooth-haired 0 001 & 00212173 a 0000 | having hair that feels smooth -00215834 00 s 01 snake-haired 0 001 & 00212173 a 0000 | (of monsters) having snakes for hair -00215929 00 s 01 soft-haired 0 001 & 00212173 a 0000 | having soft hair -00216003 00 s 01 stiff-haired 0 001 & 00212173 a 0000 | having stiff hair -00216079 00 s 01 thick-haired 0 001 & 00212173 a 0000 | having thick hair -00216155 00 s 02 tomentose 0 tomentous 0 002 & 00212173 a 0000 ;c 06037666 n 0000 | densely covered with short matted woolly hairs; "a tomentose leaf" -00216308 00 s 02 velvety-furred 0 velvety-haired 0 001 & 00212173 a 0000 | having hair that feels like velvet -00216420 00 s 02 wire-haired 0 wiry-coated 0 001 & 00212173 a 0000 | (especially of dogs) having stiff wiry hair; "a wire-haired terrier" -00216560 00 s 01 wiry 0 001 & 00212173 a 0000 | of hair that resembles wire in stiffness; "wiry red hair" -00216668 00 s 04 wooly 0 woolly 0 wooly-haired 0 woolly-haired 0 003 & 00212173 a 0000 + 01899593 n 0201 + 01899593 n 0101 | covered with dense often matted or curly hairs; "woolly lambs" -00216858 00 a 02 awned 0 awny 0 003 + 13090743 n 0201 ! 00217183 a 0101 & 00217075 a 0000 | having awns i.e. bristlelike or hairlike appendages on the flowering parts of some cereals and grasses; "awned wheatgrass" -00217075 00 s 01 bearded 0 001 & 00216858 a 0000 | having a growth of hairlike awns; "bearded wheatgrass" -00217183 00 a 01 awnless 0 001 ! 00216858 a 0101 | lacking or having only very short awns; "awnless bromegrass" -00217297 00 a 01 bearing(a) 0 002 ! 00217563 a 0101 & 00217428 a 0000 | (of a structural member) withstanding a weight or strain -00217428 00 s 02 load-bearing(a) 0 supporting(a) 0 001 & 00217297 a 0000 | capable of bearing a structural load; "a supporting wall" -00217563 00 a 01 nonbearing 0 001 ! 00217297 a 0101 | (of a structural member) supporting no vertical weight other than its own; "they took out a nonbearing wall" -00217728 00 a 01 beautiful 0 020 ^ 00166146 a 0000 ^ 01139352 a 0000 ^ 01807219 a 0000 = 04683814 n 0000 ! 00220956 a 0101 & 00218305 a 0000 & 00218440 a 0000 & 00218673 a 0000 & 00218837 a 0000 & 00218950 a 0000 & 00219389 a 0000 & 00219705 a 0000 & 00219809 a 0000 & 00219924 a 0000 & 00220082 a 0000 & 00220241 a 0000 & 00220341 a 0000 & 00220502 a 0000 & 00220600 a 0000 & 00220739 a 0000 | delighting the senses or exciting intellectual or emotional admiration; "a beautiful child"; "beautiful country"; "a beautiful painting"; "a beautiful theory"; "a beautiful party" -00218305 00 s 01 beauteous 0 003 & 00217728 a 0000 + 04683814 n 0101 + 04685396 n 0104 | (poetic )beautiful, especially to the sight -00218440 00 s 05 bonny 0 bonnie 0 comely 0 fair 0 sightly 0 003 & 00217728 a 0000 + 04685396 n 0402 + 04685396 n 0301 | very pleasing to the eye; "my bonny lass"; "there's a bonny bay beyond"; "a comely face"; "young fair maidens" -00218673 00 s 01 dishy 0 004 & 00217728 a 0000 ;u 07075172 n 0000 ;r 08860123 n 0000 + 10613996 n 010b | (informal British) sexually attractive; "a dishy blonde" -00218837 00 s 01 exquisite 0 002 & 00217728 a 0000 + 04684654 n 0101 | of extreme beauty; "her exquisite face" -00218950 00 s 06 fine-looking 0 good-looking 0 better-looking 0 handsome 0 well-favored 0 well-favoured 0 002 & 00217728 a 0000 + 04685840 n 0401 | pleasing in appearance especially by reason of conformity to ideals of form and proportion; "a fine-looking woman"; "a good-looking man"; "better-looking than her sister"; "very pretty but not so extraordinarily handsome"- Thackeray; "our southern women are well-favored"- Lillian Hellman -00219389 00 s 04 glorious 0 resplendent 0 splendid 0 splendiferous 0 005 & 00217728 a 0000 + 04684358 n 0203 + 04684358 n 0202 + 02733453 v 0201 + 04684358 n 0101 | having great beauty and splendor; "a glorious spring morning"; "a glorious sunset"; "splendid costumes"; "a kind of splendiferous native simplicity" -00219705 00 s 01 gorgeous 0 001 & 00217728 a 0000 | dazzlingly beautiful; "a gorgeous Victorian gown" -00219809 00 s 01 lovely 0 002 & 00217728 a 0000 + 04685396 n 0103 | appealing to the emotions as well as the eye -00219924 00 s 01 picturesque 0 002 & 00217728 a 0000 + 04684765 n 0101 | suggesting or suitable for a picture; pretty as a picture; "a picturesque village" -00220082 00 s 01 pretty 0 002 & 00217728 a 0000 + 04685649 n 0101 | pleasing by delicacy or grace; not imposing; "pretty girl"; "pretty song"; "pretty room" -00220241 00 s 01 pretty-pretty 0 001 & 00217728 a 0000 | ostentatiously or inappropriately pretty -00220341 00 s 01 pulchritudinous 0 002 & 00217728 a 0000 + 04685062 n 0101 | used of persons only; having great physical beauty; "pulchritudinous movie stars" -00220502 00 s 01 ravishing 0 001 & 00217728 a 0000 | stunningly beautiful; "a ravishing blonde" -00220600 00 s 01 scenic 0 002 & 00217728 a 0000 + 05933246 n 0104 | used of locations; having beautiful natural scenery; "scenic drives" -00220739 00 s 01 stunning 0 001 & 00217728 a 0000 | strikingly beautiful or attractive; "quite stunning with large dark eyes and a beautiful high-bosomed figure"; "stunning photographs of Canada's wilderness areas" -00220956 00 a 01 ugly 0 015 ^ 01808822 a 0000 ^ 00169164 a 0000 ^ 01140514 a 0000 = 04683814 n 0000 + 04690196 n 0101 ! 00217728 a 0101 & 00221318 a 0000 & 00221469 a 0000 & 00221553 a 0000 & 00221627 a 0000 & 00221934 a 0000 & 00222147 a 0000 & 00222272 a 0000 & 00222449 a 0000 & 00222543 a 0000 | displeasing to the senses; "an ugly face"; "ugly furniture" -00221318 00 s 01 disfigured 0 001 & 00220956 a 0000 | having the appearance spoiled; "a disfigured face"; "strip mining left a disfigured landscape" -00221469 00 s 01 evil-looking 0 001 & 00220956 a 0000 | having an evil appearance -00221553 00 s 01 fugly 0 001 & 00220956 a 0000 | (slang) extremely ugly -00221627 00 s 02 grotesque 0 monstrous 0 005 & 00220956 a 0000 + 10109443 n 0202 + 01460108 n 0201 + 10109443 n 0203 + 04690592 n 0101 | distorted and unnatural in shape or size; abnormal and hideous; "tales of grotesque serpents eight fathoms long that churned the seas"; "twisted into monstrous shapes" -00221934 00 s 02 hideous 0 repulsive 0 005 & 00220956 a 0000 + 04781349 n 0202 + 02194913 v 0204 + 01808769 v 0201 + 04691061 n 0101 | so extremely ugly as to be terrifying; "a hideous scar"; "a repulsive mask" -00222147 00 s 02 ill-favored 0 ill-favoured 0 001 & 00220956 a 0000 | usually used of a face; "an ill-favored countenance" -00222272 00 s 01 scrofulous 0 001 & 00220956 a 0000 | having a diseased appearance resembling scrofula; "our canoe...lay with her scrofulous sides on the shore"- Farley Mowat -00222449 00 s 02 unlovely 0 unpicturesque 0 001 & 00220956 a 0000 | without beauty or charm -00222543 00 s 01 unsightly 0 002 & 00220956 a 0000 + 04690476 n 0101 | unpleasant to look at; "unsightly billboards" -00222662 00 a 01 bellied 0 002 ! 00222873 a 0101 & 00222775 a 0000 | having a belly; often used in combination -00222775 00 s 02 big-bellied 0 great_bellied 0 001 & 00222662 a 0000 | having a prominent belly -00222873 00 a 02 bellyless 0 flat-bellied 0 001 ! 00222662 a 0101 | lacking a prominent belly -00222969 00 a 01 banded 0 001 ! 00223119 a 0101 | identified with a band especially around a leg; "kept watch for the return of their banded birds" -00223119 00 a 01 unbanded 0 001 ! 00222969 a 0101 | not identified with a band; "an unbanded bird" -00223220 00 a 01 belted 0 004 ! 00223683 a 0101 & 00223375 a 0000 & 00223504 a 0000 & 00223582 a 0000 | having or provided with a belt; "a belted dress" -00223375 00 s 01 banded 0 001 & 00223220 a 0000 | characterized by a band of especially white around the body; "banded cattle" -00223504 00 s 01 belt-fed 0 001 & 00223220 a 0000 | using belted ammunition -00223582 00 s 02 beltlike 0 belt-like 0 001 & 00223220 a 0000 | resembling a belt around something -00223683 00 a 02 unbelted 0 beltless 0 001 ! 00223220 a 0101 | lacking a belt; "unbelted jackets are in this season" -00223802 00 a 01 beneficent 0 007 ^ 01372049 a 0000 = 04840537 n 0000 + 07545833 n 0101 + 04840537 n 0101 + 02290956 v 0101 ! 00224166 a 0101 & 00224031 a 0000 | doing or producing good; "the most beneficent regime in history" -00224031 00 s 01 benefic 0 001 & 00223802 a 0000 | exerting a favorable or beneficent influence; "a benefic star"; "a benefic force" -00224166 00 a 01 maleficent 0 007 ^ 00227003 a 0000 = 04846533 n 0000 + 07550551 n 0101 + 04846533 n 0101 ! 00223802 a 0101 & 00224366 a 0000 & 00224515 a 0000 | harmful or evil in intent or effect -00224366 00 s 02 baleful 0 baneful 0 002 & 00224166 a 0000 + 04846533 n 0103 | deadly or sinister; "the Florida eagles have a fierce baleful look" -00224515 00 s 04 malefic 0 malevolent 0 malign 0 evil 0 004 & 00224166 a 0000 + 04842788 n 0301 + 04842313 n 0202 + 04842313 n 0201 | having or exerting a malignant influence; "malevolent stars"; "a malefic force" -00224731 00 a 01 malicious 0 011 + 07550666 n 0101 + 07550666 n 0102 ! 00226535 a 0101 & 00225099 a 0000 & 00225408 a 0000 & 00225564 a 0000 & 00225821 a 0000 & 00225912 a 0000 & 00226105 a 0000 & 00226339 a 0000 & 00226434 a 0000 | having the nature of or resulting from malice; "malicious gossip"; "took malicious pleasure in...watching me wince"- Rudyard Kipling -00225099 00 s 03 despiteful 0 spiteful 0 vindictive 0 004 & 00224731 a 0000 + 07550891 n 0301 + 07550666 n 0204 + 04842515 n 0204 | showing malicious ill will and a desire to hurt; motivated by spite; "a despiteful fiend"; "a truly spiteful child"; "a vindictive man will look for occasions for resentment" -00225408 00 s 01 leering 0 001 & 00224731 a 0000 | showing sly or knowing malice in a glance; "she had run in fear of...his evil leering eye"- Amy Lowell -00225564 00 s 01 malevolent 0 002 & 00224731 a 0000 + 07550369 n 0101 | wishing or appearing to wish evil to others; arising from intense ill will or hatred; "a gossipy malevolent old woman"; "failure made him malevolent toward those who were successful" -00225821 00 s 01 beady-eyed 0 001 & 00224731 a 0000 | having eyes that gleam with malice -00225912 00 s 03 bitchy 0 catty 0 cattish 0 005 & 00224731 a 0000 + 09900153 n 0201 + 04842515 n 0201 + 07209965 n 0104 + 04842515 n 0102 | marked by or arising from malice; "a catty remark" -00226105 00 s 03 poisonous 0 venomous 0 vicious 0 004 & 00224731 a 0000 + 04830689 n 0303 + 07550666 n 0205 + 05166397 n 0101 | marked by deep ill will; deliberately harmful; "poisonous hate"; "venomous criticism"; "vicious gossip" -00226339 00 s 01 venomed 0 001 & 00224731 a 0000 | full of malice or hate; "venomed remarks" -00226434 00 s 01 vixenish 0 001 & 00224731 a 0000 | shrewish and malicious; "a vixenish old woman" -00226535 00 a 01 unmalicious 0 001 ! 00224731 a 0101 | not malicious or spiteful -00226618 00 a 02 benign 0 benignant 4 006 ^ 01159655 a 0000 ^ 01372049 a 0000 = 04840981 n 0000 + 04840981 n 0102 ! 00227003 a 0101 & 00226891 a 0000 | pleasant and beneficial in nature or influence; "a benign smile"; "the benign sky"; "the benign influence of pure air" -00226891 00 s 01 kindly 0 001 & 00226618 a 0000 | pleasant and agreeable; "a kindly climate"; "kindly breeze" -00227003 00 a 01 malign 0 006 ^ 01160031 a 0000 ^ 00224166 a 0000 ^ 01373728 a 0000 = 04842788 n 0000 ! 00226618 a 0101 & 00227301 a 0000 | evil or harmful in nature or influence; "prompted by malign motives"; "believed in witches and malign spirits"; "gave him a malign look"; "a malign lesion" -00227301 00 s 01 cancerous 0 001 & 00227003 a 0000 | like a cancer; an evil that grows and spreads; "remorse was cancerous within him"; "pornography is cancerous to the moral development of our children" -00227507 00 a 01 best 0 018 ^ 01123148 a 0000 ^ 00504592 a 0000 ^ 02341266 a 0000 ^ 02439949 a 0000 ;u 06693870 n 0000 + 00127531 n 0101 ! 00229630 a 0101 & 00228025 a 0000 & 00228173 a 0000 & 00228294 a 0000 & 00228485 a 0000 & 00228645 a 0000 & 00228876 a 0000 & 00228967 a 0000 & 00229130 a 0000 & 00229227 a 0000 & 00229371 a 0000 & 00229487 a 0000 | (superlative of `good') having the most positive qualities; "the best film of the year"; "the best solution"; "the best time for planting"; "wore his best suit" -00228025 00 s 02 champion 0 prizewinning 0 001 & 00227507 a 0000 | holding first place in a contest; "a champion show dog"; "a prizewinning wine" -00228173 00 s 03 high-grade 0 top-quality 0 top-grade 0 001 & 00227507 a 0000 | surpassing in quality; "top-grade ore" -00228294 00 s 03 first 0 foremost 0 world-class 0 001 & 00227507 a 0000 | ranking above all others; "was first in her class"; "the foremost figure among marine artists"; "the top graduate" -00228485 00 s 02 go-to-meeting(a) 0 Sunday-go-to-meeting(a) 0 001 & 00227507 a 0000 | used of clothing; "my good clothes"; "her Sunday-go-to-meeting clothes" -00228645 00 s 02 optimum 0 optimal 0 003 & 00227507 a 0000 + 05143864 n 0201 + 05143864 n 0101 | most desirable possible under a restriction expressed or implied; "an optimum return on capital"; "optimal concentration of a drug" -00228876 00 s 01 primo 0 002 & 00227507 a 0000 ;u 07075172 n 0000 | the best of its kind -00228967 00 s 01 record-breaking 0 001 & 00227507 a 0000 | surpassing any previously established record; "a record-breaking high jump"; "record-breaking crowds" -00229130 00 s 01 second-best 0 001 & 00227507 a 0000 | next to the best; "his second-best bed" -00229227 00 s 01 superfine 0 001 & 00227507 a 0000 | (used especially of merchandise) very fine in quality; "made of superfine Flemish cloth" -00229371 00 s 03 unexcelled 0 unexceeded 0 unsurpassed 0 001 & 00227507 a 0000 | not capable of being improved on -00229487 00 s 01 unsurpassable 0 001 & 00227507 a 0000 | not to be exceeded; "unsurpassable skill"; "unsurpassable standards of workmanship" -00229630 00 a 01 worst 0 010 ^ 01125429 a 0000 ^ 02345272 a 0000 ;u 06693870 n 0000 + 07295955 n 0101 + 04852534 n 0101 + 00127672 n 0101 ! 00227507 a 0101 & 00229978 a 0000 & 00230076 a 0000 & 00230208 a 0000 | (superlative of `bad') most wanting in quality or value or condition; "the worst player on the team"; "the worst weather of the year" -00229978 00 s 01 bottom 0 001 & 00229630 a 0000 | the lowest rank; "bottom member of the class" -00230076 00 s 03 last 0 last-place 0 lowest 0 001 & 00229630 a 0000 | lowest in rank or importance; "last prize"; "in last place" -00230208 00 s 02 pessimal 0 pessimum(a) 0 001 & 00229630 a 0000 | of an organism's environment; least favorable for survival -00230335 00 a 01 better 0 005 ;u 06322693 n 0000 ! 00231252 a 0101 & 00230843 a 0000 & 00230940 a 0000 & 00231103 a 0000 | (comparative of `good') superior to another (of the same class or set or kind) in excellence or quality or desirability or suitability; more highly skilled than another; "You're a better man than I am, Gunga Din"; "a better coat"; "a better type of car"; "a suit with a better fit"; "a better chance of success"; "produced a better mousetrap"; "she's better in math than in history" -00230843 00 s 01 amended 0 001 & 00230335 a 0000 | modified for the better; "his amended ways" -00230940 00 s 01 finer 0 002 & 00230335 a 0000 ;u 06322693 n 0000 | (comparative of `fine') greater in quality or excellence; "a finer wine"; "a finer musician" -00231103 00 s 01 improved 0 001 & 00230335 a 0000 | become or made better in quality; "was proud of his improved grades"; "an improved viewfinder" -00231252 00 a 01 worse 0 004 ;u 06322693 n 0000 + 05144453 n 0101 ! 00230335 a 0101 & 00231591 a 0000 | (comparative of `bad') inferior to another in quality or condition or desirability; "this road is worse than the first one we took"; "the road is in worse shape than it was"; "she was accused of worse things than cheating and lying" -00231591 00 s 01 worsened 0 001 & 00231252 a 0000 | made or become worse; impaired; "troubled by the worsened economic conditions"; "the worsened diplomatic relations" -00231761 00 a 01 better 2 003 ;u 06322693 n 0000 ! 00232068 a 0101 & 00231963 a 0000 | (comparative of `good') changed for the better in health or fitness; "her health is better now"; "I feel better" -00231963 00 s 02 fitter 0 healthier 0 001 & 00231761 a 0000 | improved in health or physical condition -00232068 00 a 02 worse 2 worsened 0 002 + 05144453 n 0101 ! 00231761 a 0101 | changed for the worse in health or fitness; "I feel worse today"; "her cold is worse" -00232234 00 a 01 bettering 0 005 ! 00233151 a 0101 & 00232385 a 0000 & 00232620 a 0000 & 00232754 a 0000 & 00232986 a 0000 | changing for the better -00232385 00 s 04 ameliorating(a) 0 ameliorative 0 amelioratory 0 meliorative 0 007 & 00232234 a 0000 + 00205885 v 0405 + 00205046 v 0404 + 00205885 v 0304 + 00205046 v 0303 + 00205885 v 0204 + 00205046 v 0203 | tending to ameliorate -00232620 00 s 01 amendatory 0 002 & 00232234 a 0000 + 00996328 v 0101 | effecting amendment; "added amendatory phrases to the text" -00232754 00 s 01 corrective 0 004 & 00232234 a 0000 + 02672540 v 0103 + 00296178 v 0103 + 00079470 v 0101 | tending or intended to correct or counteract or restore to a normal condition; "corrective measures"; "corrective lenses" -00232986 00 s 01 remedial 0 002 & 00232234 a 0000 + 00259177 n 0102 | tending or intended to rectify or improve; "a remedial reading course"; "remedial education" -00233151 00 a 01 worsening 0 001 ! 00232234 a 0101 | changing for the worse; "worried by the worsening storm" -00233263 00 a 01 bicameral 0 001 ! 00233353 a 0101 | composed of two legislative bodies -00233353 00 a 01 unicameral 0 001 ! 00233263 a 0101 | composed of one legislative body -00233442 00 a 01 bidirectional 0 004 ! 00234106 a 0101 & 00233635 a 0000 & 00233756 a 0000 & 00233925 a 0000 | reactive or functioning or allowing movement in two usually opposite directions -00233635 00 s 02 biface 0 bifacial 0 001 & 00233442 a 0000 | having two faces or fronts; "the Roman Janus is bifacial" -00233756 00 s 01 duplex 0 002 & 00233442 a 0000 ;c 06271778 n 0000 | allowing communication in opposite directions simultaneously; "duplex system"; "duplex telephony" -00233925 00 s 01 two-way 0 001 & 00233442 a 0000 | operating or permitting operation in either of two opposite directions; "a two-way valve"; "two-way traffic"; "two-way streets" -00234106 00 a 01 unidirectional 0 004 ! 00233442 a 0101 & 00234378 a 0000 & 00234522 a 0000 & 00234733 a 0000 | operating or moving or allowing movement in one direction only; "a unidirectional flow"; "a unidirectional antenna"; "a unidirectional approach to a problem" -00234378 00 s 01 one-way 0 001 & 00234106 a 0000 | moving or permitting movement in one direction only; "one-way streets"; "a one-way ticket" -00234522 00 s 01 simplex 0 002 & 00234106 a 0000 ;c 06271778 n 0000 | allowing communication in only one direction at a time, or in telegraphy allowing only one message over a line at a time; "simplex system" -00234733 00 s 01 unifacial 0 001 & 00234106 a 0000 | having but one principal or specialized surface; "a primitive unifacial flint tool" -00234872 00 a 01 faced 0 012 ! 00236483 a 0101 & 00235239 a 0000 & 00235326 a 0000 & 00235429 a 0000 & 00235571 a 0000 & 00235731 a 0000 & 00235823 a 0000 & 00235913 a 0000 & 00235988 a 0000 & 00236086 a 0000 & 00236200 a 0000 & 00236338 a 0000 | having a face or facing especially of a specified kind or number; often used in combination; "a neatly faced terrace" -00235239 00 s 01 baby-faced 0 001 & 00234872 a 0000 | having a youthful-looking face -00235326 00 s 01 bald-faced 0 001 & 00234872 a 0000 | (of animals) having white markings on the face -00235429 00 s 01 featured 0 001 & 00234872 a 0000 | having facial features as specified; usually used in combination; "a grim-featured man" -00235571 00 s 02 Janus-faced 0 two-faced 0 001 & 00234872 a 0000 | having two faces--one looking to the future and one to the past; "Janus the two-faced god" -00235731 00 s 01 long-faced 0 001 & 00234872 a 0000 | having a face longer than the usual -00235823 00 s 02 moon-faced 0 round-faced 0 001 & 00234872 a 0000 | having a round face -00235913 00 s 01 pale-faced 0 001 & 00234872 a 0000 | having a pale face -00235988 00 s 01 pug-faced 0 001 & 00234872 a 0000 | having the flat wrinkled face of a pug dog -00236086 00 s 01 sad-faced 0 001 & 00234872 a 0000 | having a face with a sad expression; "the sad-faced clown" -00236200 00 s 01 sweet-faced 0 001 & 00234872 a 0000 | having a pleasing face or one showing a sweet disposition; "a sweet-faced child" -00236338 00 s 01 visaged 0 002 & 00234872 a 0000 ;u 06307152 n 0000 | having a face or visage as specified; "gloomy-visaged funeral directors" -00236483 00 a 01 faceless 0 002 ! 00234872 a 0101 & 00236652 a 0000 | without a face or identity; "a faceless apparition"; "the faceless accusers of the police state" -00236652 00 s 01 anonymous 0 002 & 00236483 a 0000 + 14436285 n 0101 | not known or lacking marked individuality; "brown anonymous houses"; "anonymous bureaucrats in the Civil Service" -00236839 00 a 01 bibbed 0 001 ! 00236922 a 0101 | having a bib; "a bibbed apron" -00236922 00 a 01 bibless 0 001 ! 00236839 a 0101 | lacking a bib -00236989 00 a 02 unilateral 0 one-sided 4 002 ! 00237240 a 0101 & 00237156 a 0000 | involving only one part or side; "unilateral paralysis"; "a unilateral decision" -00237156 00 s 01 one-party 0 001 & 00236989 a 0000 | determined by a single party -00237240 00 a 02 multilateral 0 many-sided 4 026 ! 00236989 a 0101 & 00237788 a 0000 & 00237881 a 0000 & 00237965 a 0000 & 00238037 a 0000 & 00238189 a 0000 & 00238310 a 0000 & 00238400 a 0000 & 00238490 a 0000 & 00238564 a 0000 & 00238636 a 0000 & 00238712 a 0000 & 00238788 a 0000 & 00238862 a 0000 & 00238934 a 0000 & 00239012 a 0000 & 00239090 a 0000 & 00239185 a 0000 & 00239325 a 0000 & 00239444 a 0000 & 00239520 a 0000 & 00239594 a 0000 & 00239668 a 0000 & 00239742 a 0000 & 00239847 a 0000 & 00240008 a 0000 | having many parts or sides -00237788 00 s 02 bilateral 0 two-sided 4 001 & 00237240 a 0000 | having two sides or parts -00237881 00 s 01 deep-lobed 0 001 & 00237240 a 0000 | having deep bilateral lobes -00237965 00 s 01 two-lobed 0 001 & 00237240 a 0000 | having two lobes -00238037 00 s 03 bipartite 0 two-part 0 two-way 0 001 & 00237240 a 0000 | involving two parts or elements; "a bipartite document"; "a two-way treaty" -00238189 00 s 01 joint 0 001 & 00237240 a 0000 | involving both houses of a legislature; "a joint session of Congress" -00238310 00 s 01 multipartite 0 001 & 00237240 a 0000 | involving more than two parties -00238400 00 s 02 quadrilateral 0 four-sided 0 001 & 00237240 a 0000 | having four sides -00238490 00 s 01 five-sided 0 001 & 00237240 a 0000 | having five sides -00238564 00 s 01 six-sided 0 001 & 00237240 a 0000 | having six sides -00238636 00 s 01 seven-sided 0 001 & 00237240 a 0000 | having seven sides -00238712 00 s 01 eight-sided 0 001 & 00237240 a 0000 | having eight sides -00238788 00 s 01 nine-sided 0 001 & 00237240 a 0000 | having nine sides -00238862 00 s 01 ten-sided 0 001 & 00237240 a 0000 | having ten sides -00238934 00 s 01 eleven-sided 0 001 & 00237240 a 0000 | having eleven sides -00239012 00 s 01 twelve-sided 0 001 & 00237240 a 0000 | having twelve sides -00239090 00 s 02 quadripartite 0 four-party 0 001 & 00237240 a 0000 | involving four parties -00239185 00 s 01 tetramerous 0 002 & 00237240 a 0000 ;c 06037666 n 0000 | having or consisting of four similar parts; tetramerous flowers -00239325 00 s 01 three-cornered 0 001 & 00237240 a 0000 | involving a group or set of three; "a three-cornered race" -00239444 00 s 01 three-lobed 0 001 & 00237240 a 0000 | having three lobes -00239520 00 s 01 four-lobed 0 001 & 00237240 a 0000 | having four lobes -00239594 00 s 01 five-lobed 0 001 & 00237240 a 0000 | having five lobes -00239668 00 s 01 many-lobed 0 001 & 00237240 a 0000 | having many lobes -00239742 00 s 01 palmately-lobed 0 001 & 00237240 a 0000 | having lobes radiating from a central point -00239847 00 s 03 trilateral 0 triangular 0 three-sided 0 003 & 00237240 a 0000 + 13879320 n 0201 + 05072523 n 0201 | having three sides; "a trilateral figure" -00240008 00 s 03 tripartite 0 three-party 0 three-way 0 001 & 00237240 a 0000 | involving three parties or elements; "a tripartite treaty"; "a tripartite division"; "a three-way playoff" -00240197 00 a 01 bimodal 0 002 ;c 06018465 n 0000 ! 00240323 a 0101 | of a distribution; having or occurring with two modes -00240323 00 a 01 unimodal 0 002 ;c 06018465 n 0000 ! 00240197 a 0101 | having a single mode -00240417 00 a 02 binaural 0 biaural 0 003 ! 00240842 a 0101 & 00240584 a 0000 & 00240655 a 0000 | relating to or having or hearing with two ears; "binaural hearing" -00240584 00 s 01 two-eared 0 001 & 00240417 a 0000 | having two ears -00240655 00 s 03 stereophonic 0 stereo 0 two-channel 0 003 & 00240417 a 0000 ;c 06099269 n 0000 + 04315948 n 0102 | designating sound transmission from two sources through two channels -00240842 00 a 01 monaural 0 003 ! 00240417 a 0101 & 00241004 a 0000 & 00241079 a 0000 | relating to or having or hearing with only one ear; "monaural deafness" -00241004 00 s 01 one-eared 0 001 & 00240842 a 0000 | having a single ear -00241079 00 s 03 mono 0 monophonic 0 single-channel 0 002 & 00240842 a 0000 ;c 06099269 n 0000 | designating sound transmission or recording or reproduction over a single channel -00241260 00 a 03 binucleate 0 binuclear 0 binucleated 0 003 ;c 06037666 n 0000 ! 00241530 a 0101 ! 00241397 a 0101 | having two nuclei -00241397 00 a 02 mononuclear 0 mononucleate 0 003 ;c 06037666 n 0000 ! 00241260 a 0101 ! 00241530 a 0101 | having only one nucleus -00241530 00 a 03 trinucleate 0 trinuclear 0 trinucleated 0 003 ;c 06037666 n 0000 ! 00241397 a 0101 ! 00241260 a 0101 | having three nuclei -00241672 00 a 03 bipedal 0 biped 0 two-footed 0 004 + 02157285 n 0201 ! 00241816 a 0202 + 02157285 n 0101 ! 00241816 a 0101 | having two feet -00241816 00 a 03 quadrupedal 0 quadruped 0 four-footed 0 003 ! 00241672 a 0202 + 02156871 n 0101 ! 00241672 a 0101 | having four feet -00241952 00 a 01 black 2 005 ! 00243180 a 0101 & 00242293 a 0000 & 00242575 a 0000 & 00242832 a 0000 & 00243039 a 0000 | of or belonging to a racial group having dark skin especially of sub-Saharan African origin; "a great people--a black people--...injected new meaning and dignity into the veins of civilization"- Martin Luther King Jr. -00242293 00 s 02 African-American 0 Afro-American 0 003 & 00241952 a 0000 + 09637013 n 0203 + 09637013 n 0101 | pertaining to or characteristic of Americans of African ancestry; "Afro-American culture"; "many black people preferred to be called African-American or Afro-American" -00242575 00 s 05 colored 0 coloured 0 dark 0 dark-skinned 0 non-white 0 003 & 00241952 a 0000 + 04978216 n 0301 + 09637512 n 0102 | having skin rich in melanin pigments; "National Association for the Advancement of Colored People"; "dark-skinned peoples" -00242832 00 s 01 negro 0 001 & 00241952 a 0000 | relating to or characteristic of or being a member of the traditional racial division of mankind having brown to black pigmentation and tightly curled hair -00243039 00 s 01 negroid 0 001 & 00241952 a 0000 | characteristic of people traditionally classified as the Negro race; "negroid features" -00243180 00 a 01 white 2 004 + 09638875 n 0101 ! 00241952 a 0101 & 00243395 a 0000 & 00243515 a 0000 | of or belonging to a racial group having light skin coloration; "voting patterns within the white population" -00243395 00 s 02 Caucasian 0 Caucasoid 0 002 & 00243180 a 0000 + 09638875 n 0103 | of or relating to Caucasian people -00243515 00 s 01 light-skinned 0 001 & 00243180 a 0000 | having little skin pigmentation -00243606 00 a 03 blond 0 blonde 0 light-haired 0 008 = 04976952 n 0000 + 04977247 n 0102 ! 00244503 a 0101 & 00243945 a 0000 & 00244054 a 0000 & 00244199 a 0000 & 00244324 a 0000 & 00244410 a 0000 | being or having light colored skin and hair and usually blue or grey eyes; "blond Scandinavians"; "a house full of light-haired children" -00243945 00 s 03 ash-blonde 0 platinum-blonde 0 towheaded 0 001 & 00243606 a 0000 | of hair color; whitish -00244054 00 s 02 fair 0 fairish 0 002 & 00243606 a 0000 + 04977247 n 0103 | (used of hair or skin) pale or light-colored; "a fair complexion"; -00244199 00 s 02 flaxen 0 sandy 0 001 & 00243606 a 0000 | of hair color; pale yellowish to yellowish brown; "flaxen locks" -00244324 00 s 01 nordic 0 001 & 00243606 a 0000 | resembling peoples of Scandinavia -00244410 00 s 01 redheaded 0 001 & 00243606 a 0000 | having red hair and usually fair skin -00244503 00 a 02 brunet 0 brunette 0 010 = 04976952 n 0000 ! 00243606 a 0101 & 00244820 a 0000 & 00244958 a 0000 & 00245112 a 0000 & 00245200 a 0000 & 00245319 a 0000 & 00245458 a 0000 & 00245763 a 0000 & 00245860 a 0000 | marked by dark or relatively dark pigmentation of hair or skin or eyes; "a brunette beauty" -00244820 00 s 01 adust 0 002 & 00244503 a 0000 ;u 07073447 n 0000 | burned brown by the sun; "of an adust complexion"- Sir Walter Scott -00244958 00 s 03 bronzed 0 suntanned 0 tanned 0 001 & 00244503 a 0000 | (of skin) having a tan color from exposure to the sun; "a young bronzed Apollo" -00245112 00 s 02 brown 0 browned 0 001 & 00244503 a 0000 | (of skin) deeply suntanned -00245200 00 s 01 dark 0 002 & 00244503 a 0000 + 04979870 n 0101 | brunet (used of hair or skin or eyes); "dark eyes" -00245319 00 s 03 dark-haired 0 black-haired 0 brown-haired 0 001 & 00244503 a 0000 | having hair of a dark color; "a dark-haired beauty" -00245458 00 s 04 dark-skinned 0 dusky 0 swart 0 swarthy 0 004 & 00244503 a 0000 ;u 07073447 n 0000 + 04978216 n 0403 + 04978216 n 0202 | naturally having skin of a dark color; "a dark-skinned beauty"; "gold earrings gleamed against her dusky cheeks"; "a smile on his swarthy face"; "`swart' is archaic" -00245763 00 s 01 grizzled 0 001 & 00244503 a 0000 | having dark hairs mixed with grey or white -00245860 00 s 01 nutbrown 0 001 & 00244503 a 0000 | of the color of nuts; "nutbrown hair" -00245952 00 a 01 blemished 0 009 ^ 00679147 a 0000 ^ 01752167 a 0000 ! 00247013 a 0101 & 00246175 a 0000 & 00246348 a 0000 & 00246497 a 0000 & 00246623 a 0000 & 00246727 a 0000 & 00246878 a 0000 | marred by imperfections -00246175 00 s 04 acned 0 pimpled 0 pimply 0 pustulate 0 003 & 00245952 a 0000 + 14334122 n 0401 + 14334306 n 0301 | (of complexion) blemished by imperfections of the skin -00246348 00 s 02 blebbed 0 blebby 0 001 & 00245952 a 0000 | (of glass or quartzite) marred by small bubbles or small particles of foreign material -00246497 00 s 01 blotchy 0 002 & 00245952 a 0000 + 04694809 n 0101 | marred by discolored spots or blotches; "blotchy skin" -00246623 00 s 01 flyblown 0 001 & 00245952 a 0000 | especially of reputation; "a flyblown reputation" -00246727 00 s 02 marred 0 scarred 0 001 & 00245952 a 0000 | blemished by injury or rough wear; "the scarred piano bench"; "walls marred by graffiti" -00246878 00 s 02 pocked 0 pockmarked 0 001 & 00245952 a 0000 | marked by or as if by smallpox or acne or other eruptive skin disease -00247013 00 a 03 unblemished 0 unmarred 0 unmutilated 0 004 ^ 01749320 a 0000 ^ 00681094 a 0000 ! 00245952 a 0101 & 00247247 a 0000 | free from physical or moral spots or stains; "an unblemished record"; "an unblemished complexion" -00247247 00 s 05 stainless 0 unstained 0 unsullied 0 untainted 0 untarnished 0 001 & 00247013 a 0000 | (of reputation) free from blemishes; "his unsullied name"; "an untarnished reputation" -00247439 00 a 01 bloody 0 013 ^ 01507402 a 0000 + 05399847 n 0101 + 13974937 n 0101 + 04624687 n 0101 ! 00249433 a 0101 & 00247868 a 0000 & 00247993 a 0000 & 00248118 a 0000 & 00248251 a 0000 & 00248560 a 0000 & 00248837 a 0000 & 00249104 a 0000 & 00249303 a 0000 | having or covered with or accompanied by blood; "a bloody nose"; "your scarf is all bloody"; "the effects will be violent and probably bloody"; "a bloody fight" -00247868 00 s 01 blood-filled 0 001 & 00247439 a 0000 | containing blood; "the blood-filled centers of arteries and veins" -00247993 00 s 02 bloodstained 0 gory 1 001 & 00247439 a 0000 | covered with blood; "a bloodstained shirt"; "a gory dagger" -00248118 00 s 01 bloodsucking 0 001 & 00247439 a 0000 | drawing blood from the body of another; "a plague of bloodsucking insects" -00248251 00 s 03 bloodthirsty 0 bloody-minded 0 sanguinary 0 002 & 00247439 a 0000 + 04624687 n 0102 | marked by eagerness to resort to violence and bloodshed; "bloody-minded tyrants"; "bloodthirsty yells"; "went after the collaborators with a sanguinary fury that drenched the land with blood"-G.W.Johnson -00248560 00 s 03 crimson 0 red 2 violent 0 002 & 00247439 a 0000 + 13979977 n 0301 | characterized by violence or bloodshed; "writes of crimson deeds and barbaric days"- Andrea Parke; "fann'd by Conquest's crimson wing"- Thomas Gray; "convulsed with red rage"- Hudson Strode -00248837 00 s 02 homicidal 0 murderous 0 005 & 00247439 a 0000 + 00220522 n 0201 + 07547547 n 0201 + 04830904 n 0201 + 00220023 n 0101 | characteristic of or capable of or having a tendency toward killing another human being ; "a homicidal rage"; "murderous thugs" -00249104 00 s 05 gory 2 sanguinary 3 sanguineous 0 slaughterous 0 butcherly 0 003 & 00247439 a 0000 + 00223983 n 0401 + 04963111 n 0301 | accompanied by bloodshed; "this bitter and sanguinary war" -00249303 00 s 01 internecine 0 001 & 00247439 a 0000 | characterized by bloodshed and carnage for both sides; "internecine war" -00249433 00 a 01 bloodless 0 002 ! 00247439 a 0101 & 00249576 a 0000 | free from blood or bloodshed; "bloodless surgery"; "a bloodless coup" -00249576 00 s 02 nonviolent 0 unbloody 0 002 & 00249433 a 0000 + 01242716 n 0103 | achieved without bloodshed; "an unbloody transfer of power" -00249721 00 a 01 bold 0 015 ^ 00065791 a 0000 ^ 00262792 a 0000 ^ 00204491 a 0000 ^ 00081671 a 0000 = 04858785 n 0000 + 04858785 n 0101 ! 00251809 a 0101 & 00250119 a 0000 & 00250483 a 0000 & 00250659 a 0000 & 00250739 a 0000 & 00251134 a 0000 & 00251373 a 0000 & 00251529 a 0000 & 00251681 a 0000 | fearless and daring; "bold settlers on some foreign shore"; "a bold speech"; "a bold adventure" -00250119 00 s 07 audacious 0 brave 0 dauntless 0 fearless 0 hardy 0 intrepid 0 unfearing 0 008 & 00249721 a 0000 + 04858089 n 0602 + 07526182 n 0401 + 04858089 n 0301 + 04857083 n 0204 + 04859449 n 0101 + 04859449 n 0102 + 04858455 n 0401 | invulnerable to fear or intimidation; "audacious explorers"; "fearless reporters and photographers"; "intrepid pioneers" -00250483 00 s 02 daredevil 0 temerarious 0 003 & 00249721 a 0000 + 04859449 n 0203 + 09991530 n 0101 | presumptuously daring; "a daredevil test pilot having the right stuff" -00250659 00 s 01 emboldened 0 001 & 00249721 a 0000 | made bold or courageous -00250739 00 s 04 foolhardy 0 heady 0 rash 0 reckless 0 005 & 00249721 a 0000 + 04661926 n 0401 + 04661926 n 0303 + 08482271 n 0201 + 04661926 n 0102 | marked by defiant disregard for danger or consequences; "foolhardy enough to try to seize the gun from the hijacker"; "became the fiercest and most reckless of partisans"-Macaulay; "a reckless driver"; "a rash attempt to climb Mount Everest" -00251134 00 s 02 heroic 0 heroical 0 004 & 00249721 a 0000 + 10173086 n 0201 + 09906538 n 0203 + 10325013 n 0201 | having or displaying qualities appropriate for heroes; "the heroic attack on the beaches of Normandy"; "heroic explorers" -00251373 00 s 01 nervy 0 002 & 00249721 a 0000 + 04857490 n 0103 | showing or requiring courage and contempt of danger; "the nervy feats of mountaineers" -00251529 00 s 02 overreaching 0 vaulting 0 001 & 00249721 a 0000 | revealing excessive self-confidence; reaching for the heights; "vaulting ambition" -00251681 00 s 01 overvaliant 0 001 & 00249721 a 0000 | having or showing undue valor or boldness; "a foolish overvaliant act" -00251809 00 a 01 timid 0 014 ^ 00077645 a 0000 ^ 00204077 a 0000 ^ 00264776 a 0000 ^ 00066800 a 0000 ^ 00156839 a 0000 = 04860759 n 0000 + 07522729 n 0102 + 07522729 n 0101 ! 00249721 a 0101 & 00252130 a 0000 & 00252310 a 0000 & 00252498 a 0000 & 00252733 a 0000 & 00252826 a 0000 | showing fear and lack of confidence -00252130 00 s 01 bashful 0 002 & 00251809 a 0000 + 07508092 n 0102 | self-consciously timid; "I never laughed, being bashful; lowering my head, I looked at the wall"- Ezra Pound -00252310 00 s 01 coy 0 001 & 00251809 a 0000 | modestly or warily rejecting approaches or overtures; "like a wild young colt, very inquisitive but very coy and not to be easily cajoled" -00252498 00 s 03 fearful 0 timorous 0 trepid 0 003 & 00251809 a 0000 + 07522729 n 0203 + 04860759 n 0202 | timid by nature or revealing timidity; "timorous little mouse"; "in a timorous tone"; "cast fearful glances at the large dog" -00252733 00 s 01 intimidated 0 001 & 00251809 a 0000 | made timid or fearful as by threats -00252826 00 s 02 mousy 0 mousey 0 003 & 00251809 a 0000 + 10335563 n 0201 + 10335563 n 0101 | quiet and timid and ineffectual -00252954 00 a 01 bound 1 009 ^ 01064286 a 0000 ! 00254152 a 0101 & 00253196 a 0000 & 00253361 a 0000 & 00253469 a 0000 & 00253654 a 0000 & 00253757 a 0000 & 00253869 a 0000 & 00254046 a 0000 | confined by bonds; "bound and gagged hostages" -00253196 00 s 02 chained 0 enchained 0 001 & 00252954 a 0000 | bound with chains; "enchained demons strained in anger to gnaw on his bones"; "prisoners in chains" -00253361 00 s 02 fettered 0 shackled 0 001 & 00252954 a 0000 | bound by chains fastened around the ankles -00253469 00 s 02 furled 0 rolled 0 001 & 00252954 a 0000 | rolled up and secured; "furled sails bound securely to the spar"; "a furled flag"; "his rolled umbrella hanging on his arm" -00253654 00 s 01 pinioned 0 001 & 00252954 a 0000 | bound fast especially having the arms restrained -00253757 00 s 01 tethered 0 001 & 00252954 a 0000 | confined or restricted with or as if with a rope or chain -00253869 00 s 02 trussed 0 tied 0 001 & 00252954 a 0000 | bound or secured closely; "the guard was found trussed up with his arms and legs securely tied"; "a trussed chicken" -00254046 00 s 01 wired 0 001 & 00252954 a 0000 | tied or bound with wire; "wired bundles of newspapers" -00254152 00 a 01 unbound 1 004 ^ 01061489 a 0000 ! 00252954 a 0101 & 00254296 a 0000 & 00254419 a 0000 | not restrained or tied down by bonds -00254296 00 s 04 unchained 0 unfettered 0 unshackled 0 untied 0 001 & 00254152 a 0000 | not bound by shackles and chains -00254419 00 s 01 untethered 0 001 & 00254152 a 0000 | not confined or restricted with a tether -00254516 00 a 02 laced 0 tied 2 001 ! 00254615 a 0101 | closed with a lace; "snugly laced shoes" -00254615 00 a 02 unlaced 0 untied 2 001 ! 00254516 a 0101 | with laces not tied; "teenagers slopping around in unlaced sneakers" -00254746 00 a 02 tied 0 fastened 3 002 ! 00254983 a 0101 & 00254880 a 0000 | fastened with strings or cords; "a neatly tied bundle" -00254880 00 s 01 knotted 0 001 & 00254746 a 0000 | tied with a knot; "his carefully knotted necktie" -00254983 00 a 02 untied 0 unfastened 3 001 ! 00254746 a 0101 | not tied -00255057 00 a 01 tangled 0 008 ! 00256453 a 0101 & 00255308 a 0000 & 00255453 a 0000 & 00255582 a 0000 & 00255720 a 0000 & 00255918 a 0000 & 00256042 a 0000 & 00256237 a 0000 | in a confused mass; "pushed back her tangled hair"; "the tangled ropes" -00255308 00 s 03 afoul(ip) 0 foul 0 fouled 0 001 & 00255057 a 0000 | especially of a ship's lines etc; "with its sails afoul"; "a foul anchor" -00255453 00 s 02 enmeshed 0 intermeshed 0 001 & 00255057 a 0000 | caught as if in a mesh; "enmeshed in financial difficulties" -00255582 00 s 01 entangled 1 001 & 00255057 a 0000 | twisted together in a tangled mass; "toiled through entangled growths of mesquite" -00255720 00 s 03 knotty 0 snarled 0 snarly 0 004 & 00255057 a 0000 + 05685879 n 0302 + 13885836 n 0101 + 03627232 n 0101 | tangled in knots or snarls; "a mass of knotted string"; "snarled thread" -00255918 00 s 01 matted 0 001 & 00255057 a 0000 | tangled in a dense mass; "tried to push through the matted undergrowth" -00256042 00 s 01 rootbound 0 001 & 00255057 a 0000 | having the roots matted or densely tangled; "shaggy untended lawns of old trees and rootbound scented flowers and shrubs"- William Faulkner -00256237 00 s 02 thrown 0 thrown_and_twisted 0 002 & 00255057 a 0000 ;u 07073447 n 0000 | twisted together; as of filaments spun into a thread; "thrown silk is raw silk that has been twisted and doubled into yarn" -00256453 00 a 01 untangled 0 002 ! 00255057 a 0101 & 00256538 a 0000 | not tangled -00256538 00 s 03 disentangled 0 loosened 0 unsnarled 0 001 & 00256453 a 0000 | straightened out -00256636 00 a 01 bound 2 006 ! 00257462 a 0101 & 00256883 a 0000 & 00257032 a 0000 & 00257102 a 0000 & 00257232 a 0000 & 00257356 a 0000 | secured with a cover or binding; often used as a combining form; "bound volumes"; "leather-bound volumes" -00256883 00 s 01 brassbound 0 001 & 00256636 a 0000 | having trim or fittings of brass; "a brassbound campaign chest"; "the heavy brassbound door" -00257032 00 s 01 cased 0 001 & 00256636 a 0000 | enclosed in a case -00257102 00 s 01 half-bound 0 001 & 00256636 a 0000 | (of books) having the back bound in one material and the sides in another -00257232 00 s 02 paperback 0 paperbacked 0 002 & 00256636 a 0000 + 03886432 n 0103 | (of books) having a flexible binding -00257356 00 s 01 well-bound 0 001 & 00256636 a 0000 | (of books) having a sturdy and attractive binding -00257462 00 a 01 unbound 2 002 ! 00256636 a 0101 & 00257579 a 0000 | not secured within a cover; "an unbound book" -00257579 00 s 01 looseleaf 0 001 & 00257462 a 0000 | being or having leaves that can be easily removed or rearranged; "loose-leaf paper"; "a looseleaf notebook" -00257742 00 a 01 bordered 0 011 ^ 01006566 a 0000 ! 00259256 a 0101 & 00258090 a 0000 & 00258255 a 0000 & 00258411 a 0000 & 00258587 a 0000 & 00258797 a 0000 & 00258899 a 0000 & 00259011 a 0000 & 00259098 a 0000 & 00259177 a 0000 | having a border especially of a specified kind; sometimes used as a combining term; "black-bordered handkerchief" -00258090 00 s 01 boxed 0 001 & 00257742 a 0000 | enclosed in or set off by a border or box; "boxed sections of the report"; "boxed announcements in the newspaper" -00258255 00 s 03 deckled 0 deckle-edged 0 featheredged 0 001 & 00257742 a 0000 | having a rough edge; used of handmade paper or paper resembling handmade -00258411 00 s 01 edged 0 001 & 00257742 a 0000 | having a specified kind of border or edge; "a black-edged card"; "rough-edged leaves"; "dried sweat left salt-edged patches" -00258587 00 s 01 fringed 0 001 & 00257742 a 0000 | surrounded as with a border or fringe; sometimes used in combination; "a large suburban community...fringed by an industrial area"; "a grass-fringed stream" -00258797 00 s 01 lined 0 001 & 00257742 a 0000 | bordered by a line of things; "tree lined streets" -00258899 00 s 01 sawtoothed-edged 0 001 & 00257742 a 0000 | (of leaves) having an edged resembling a sawtooth -00259011 00 s 01 seagirt 0 001 & 00257742 a 0000 | surrounded or enclosed by the sea -00259098 00 s 01 spiny-edged 0 001 & 00257742 a 0000 | having a spiny border -00259177 00 s 01 white-edged 0 001 & 00257742 a 0000 | having a white border -00259256 00 a 01 unbordered 0 001 ! 00257742 a 0101 | having no border -00259329 00 a 01 lotic 0 001 ! 00259433 a 0101 | of or relating to or living in actively moving water -00259433 00 a 01 lentic 0 002 ;c 09328904 n 0000 ! 00259329 a 0101 | of or relating to or living in still waters (as lakes or ponds) -00259568 00 a 02 lower-class 0 low-class 4 008 ^ 01592642 a 0000 = 13945919 n 0000 ! 00260430 a 0101 ! 00261245 a 0101 & 00259820 a 0000 & 00259957 a 0000 & 00260100 a 0000 & 00260323 a 0000 | occupying the lowest socioeconomic position in a society -00259820 00 s 01 non-U 0 002 & 00259568 a 0000 ;r 08860123 n 0000 | not characteristic of the upper classes especially in language use -00259957 00 s 01 proletarian 0 003 & 00259568 a 0000 + 10481711 n 0101 + 08180639 n 0104 | belonging to or characteristic of the proletariat -00260100 00 s 04 propertyless 0 wage-earning 0 working-class 0 blue-collar 0 001 & 00259568 a 0000 | of those who work for wages especially manual or industrial laborers; "party of the propertyless proletariat"- G.B.Shaw -00260323 00 s 01 upper-lower-class 0 001 & 00259568 a 0000 | occupying the upper part of the lower class -00260430 00 a 01 middle-class 0 007 = 13945919 n 0000 ! 00261245 a 0101 ! 00259568 a 0101 & 00260695 a 0000 & 00260780 a 0000 & 00260973 a 0000 & 00261109 a 0000 | occupying a socioeconomic position intermediate between those of the lower classes and the wealthy -00260695 00 s 01 bourgeois 1 001 & 00260430 a 0000 | belonging to the middle class -00260780 00 s 03 bourgeois 2 conservative 0 materialistic 0 002 & 00260430 a 0000 + 14039310 n 0301 | conforming to the standards and conventions of the middle class; "a bourgeois mentality" -00260973 00 s 01 lower-middle-class 0 001 & 00260430 a 0000 | occupying the lower part of the middle socioeconomic range in a society -00261109 00 s 01 upper-middle-class 0 001 & 00260430 a 0000 | occupying the upper part of the middle socioeconomic range in a society -00261245 00 a 01 upper-class 0 008 = 13945919 n 0000 ! 00259568 a 0101 ! 00260430 a 0101 & 00261486 a 0000 & 00261602 a 0000 & 00261735 a 0000 & 00261885 a 0000 & 00262008 a 0000 | occupying the highest socioeconomic position in a society -00261486 00 s 01 quality 0 001 & 00261245 a 0000 | of high social status; "people of quality"; "a quality family" -00261602 00 s 02 propertied 0 property-owning 0 001 & 00261245 a 0000 | owning land or securities as a principal source of revenue -00261735 00 s 01 u 0 002 & 00261245 a 0000 ;r 08860123 n 0000 | (chiefly British) of or appropriate to the upper classes especially in language use -00261885 00 s 01 tweedy 0 002 & 00261245 a 0000 + 04817020 n 0101 | (of country gentry) informal, clannish and outdoorsy -00262008 00 s 01 wellborn 0 001 & 00261245 a 0000 | of good or upper-class lineage; "a rich and wellborn husband" -00262124 00 a 03 brachycephalic 0 brachycranial 0 brachycranic 0 004 + 05212362 n 0101 ! 00262529 a 0101 & 00262328 a 0000 & 00262444 a 0000 | having a short broad head with a cephalic index of over 80 -00262328 00 s 03 broad-headed 0 roundheaded 0 short-headed 0 001 & 00262124 a 0000 | having a brachycephalic head -00262444 00 s 01 bullet-headed 0 001 & 00262124 a 0000 | having a small round head -00262529 00 a 03 dolichocephalic 0 dolichocranial 0 dolichocranic 0 002 ! 00262124 a 0101 & 00262705 a 0000 | having a relatively long head with a cephalic index of under 75 -00262705 00 s 01 long-headed 0 001 & 00262529 a 0000 | having a dolichocephalic head -00262792 00 a 02 brave 0 courageous 4 016 ^ 00065791 a 0000 ^ 00249721 a 0000 ^ 01989669 a 0000 ^ 00081671 a 0000 = 04857083 n 0000 + 04857083 n 0201 + 04857083 n 0202 + 04857083 n 0104 ! 00264776 a 0101 & 00263463 a 0000 & 00263840 a 0000 & 00263994 a 0000 & 00264178 a 0000 & 00264262 a 0000 & 00264459 a 0000 & 00264570 a 0000 | possessing or displaying courage; able to face and deal with danger or fear without flinching; "Familiarity with danger makes a brave man braver but less daring"- Herman Melville; "a frank courageous heart...triumphed over pain"- William Wordsworth; "set a courageous example by leading them safely into and out of enemy-held territory" -00263463 00 s 02 desperate 0 heroic 0 001 & 00262792 a 0000 | showing extreme courage; especially of actions courageously undertaken in desperation as a last resort; "made a last desperate attempt to reach the climber"; "the desperate gallantry of our naval task forces marked the turning point in the Pacific war"- G.C.Marshall; "they took heroic measures to save his life" -00263840 00 s 01 gallant 0 001 & 00262792 a 0000 | unflinching in battle or action; "a gallant warrior"; "put up a gallant resistance to the attackers" -00263994 00 s 07 game 0 gamy 0 gamey 0 gritty 0 mettlesome 0 spirited 0 spunky 0 004 & 00262792 a 0000 + 04857490 n 0704 + 04634415 n 0501 + 05032351 n 0402 | willing to face danger -00264178 00 s 01 lionhearted 0 001 & 00262792 a 0000 | extraordinarily courageous -00264262 00 s 02 stalwart 0 stouthearted 0 002 & 00262792 a 0000 + 04858317 n 0201 | used especially of persons; "a stalwart knight"; "a stouthearted fellow who had an active career in the army" -00264459 00 s 01 undaunted 0 001 & 00262792 a 0000 | resolutely courageous; "undaunted in the face of death" -00264570 00 s 02 valiant 0 valorous 0 004 & 00262792 a 0000 + 04857738 n 0203 + 04857738 n 0205 + 04857738 n 0107 | having or showing valor; "a valiant attempt to prevent the hijack"; "a valiant soldier" -00264776 00 a 02 cowardly 0 fearful 4 016 ^ 00077645 a 0000 ^ 01589217 a 0000 ^ 00251809 a 0000 = 04860065 n 0000 + 04860586 n 0201 + 09614047 n 0101 + 04860065 n 0102 ! 00262792 a 0101 & 00265214 a 0000 & 00265314 a 0000 & 00265496 a 0000 & 00265765 a 0000 & 00265989 a 0000 & 00266228 a 0000 & 00266309 a 0000 & 00266420 a 0000 | lacking courage; ignobly timid and faint-hearted; "cowardly dogs, ye will not aid me then"- P.B.Shelley -00265214 00 s 01 caitiff 0 002 & 00264776 a 0000 + 09886911 n 0101 | despicably mean and cowardly -00265314 00 s 06 chicken 0 chickenhearted 0 lily-livered 0 white-livered 0 yellow 0 yellow-bellied 0 003 & 00264776 a 0000 ;u 07075172 n 0000 + 10781817 n 0102 | easily frightened -00265496 00 s 02 craven 0 recreant 0 003 & 00264776 a 0000 + 10452024 n 0203 + 04860272 n 0101 | lacking even the rudiments of courage; abjectly fearful; "the craven fellow turned and ran"; "a craven proposal to raise the white flag"; "this recreant knight"- Spenser -00265765 00 s 02 dastard(a) 0 dastardly 0 004 & 00264776 a 0000 + 09992429 n 0201 + 04861221 n 0201 + 09992429 n 0101 | despicably cowardly; "the unprovoked and dastardly attack by Japan on...December 7th"- F.D. Roosevelt -00265989 00 s 04 faint 0 fainthearted 0 timid 0 faint-hearted 0 005 & 00264776 a 0000 + 07522729 n 0302 + 04860759 n 0301 + 04860369 n 0201 + 04860369 n 0102 | lacking conviction or boldness or courage; "faint heart ne'er won fair lady" -00266228 00 s 01 funky 0 001 & 00264776 a 0000 | in a state of cowardly fright -00266309 00 s 01 poltroon 0 002 & 00264776 a 0000 + 10452024 n 0101 | characterized by complete cowardliness -00266420 00 s 03 pusillanimous 0 poor-spirited 0 unmanly 0 004 & 00264776 a 0000 + 04668139 n 0306 + 04860985 n 0102 + 04860985 n 0101 | lacking in courage and manly strength and resolution; contemptibly fearful -00266634 00 a 02 gutsy 0 plucky 0 004 + 04859816 n 0202 + 05032351 n 0103 + 04859816 n 0101 ! 00266985 a 0101 | marked by courage and determination in the face of difficulties or danger; robust and uninhibited; "you have to admire her; it was a gutsy thing to do"; "the gutsy...intensity of her musical involvement"-Judith Crist; "a gutsy red wine" -00266985 00 a 01 gutless 0 002 + 04861319 n 0101 ! 00266634 a 0101 | lacking courage or vitality; "he was a yellow gutless worm"; "a spineless craven fellow" -00267145 00 a 01 breast-fed 0 002 ! 00267356 a 0101 & 00267268 a 0000 | (of an infant) fed milk from the mother's breast -00267268 00 s 02 nursed 0 suckled 0 001 & 00267145 a 0000 | (of an infant) breast-fed -00267356 00 a 01 bottle-fed 0 001 ! 00267145 a 0101 | (of an infant) given milk from a bottle -00267452 00 a 03 breathing 0 eupneic 0 eupnoeic 0 002 ! 00267871 a 0101 & 00267774 a 0000 | passing or able to pass air in and out of the lungs normally; sometimes used in combination; "the boy was disappointed to find only skeletons instead of living breathing dinosaurs"; "the heavy-breathing person on the telephone" -00267774 00 s 01 sweet-breathed 0 001 & 00267452 a 0000 | having breath or breath as specified -00267871 00 a 05 breathless 0 dyspneic 0 dyspnoeic 0 dyspneal 0 dyspnoeal 0 008 ^ 02509292 a 0000 + 14369744 n 0502 + 14369744 n 0401 + 14370122 n 0103 ! 00267452 a 0101 & 00268273 a 0000 & 00268383 a 0000 & 00268748 a 0000 | not breathing or able to breathe except with difficulty; "breathless at thought of what I had done"; "breathless from running"; "followed the match with breathless interest" -00268273 00 s 01 asphyxiating 0 001 & 00267871 a 0000 | tending to deprive of oxygen; "asphyxiating gasses" -00268383 00 s 03 smothering 0 suffocating 0 suffocative 0 005 & 00267871 a 0000 + 01476180 v 0301 + 00359511 v 0301 + 00106412 v 0301 + 00077698 v 0304 | causing difficulty in breathing especially through lack of fresh air and presence of heat; "the choking June dust"; "the smothering soft voices"; "smothering heat"; "the room was suffocating--hot and airless" -00268748 00 s 04 blown 0 pursy 0 short-winded 0 winded 0 001 & 00267871 a 0000 | breathing laboriously or convulsively -00268869 00 a 01 crystalline 0 004 ! 00269486 a 0101 & 00269063 a 0000 & 00269241 a 0000 & 00269364 a 0000 | consisting of or containing or of the nature of crystals; "granite is crystalline" -00269063 00 s 02 crystallized 0 crystalised 0 001 & 00268869 a 0000 | having both internal structure and external form of a crystal; "quartz crystal is perfectly crystallized" -00269241 00 s 01 microcrystalline 0 001 & 00268869 a 0000 | containing crystals that are visible only under a microscope -00269364 00 s 01 polycrystalline 0 001 & 00268869 a 0000 | composed of aggregates of crystals; "polycrystalline metals" -00269486 00 a 01 noncrystalline 0 002 ! 00268869 a 0101 & 00269580 a 0000 | not crystalline -00269580 00 s 03 amorphous 0 uncrystallized 0 uncrystallised 0 001 & 00269486 a 0000 | without real or apparent crystalline form; "an amorphous mineral"; "amorphous structure" -00269758 00 a 01 landed 0 001 ! 00269894 a 0101 | owning or consisting of land or real estate; "the landed gentry"; "landed property" -00269894 00 a 01 landless 0 001 ! 00269758 a 0101 | owning no land; "the landless peasantry" -00269989 00 a 01 light 6 019 = 04951373 n 0000 + 04951373 n 0102 ! 00273082 a 0101 & 00270496 a 0000 & 00270732 a 0000 & 00270856 a 0000 & 00271022 a 0000 & 00271208 a 0000 & 00271288 a 0000 & 00271419 a 0000 & 00271580 a 0000 & 00271813 a 0000 & 00271966 a 0000 & 00272069 a 0000 & 00272172 a 0000 & 00272410 a 0000 & 00272555 a 0000 & 00272771 a 0000 & 00272950 a 0000 | characterized by or emitting light; "a room that is light when the shutters are open"; "the inside of the house was airy and light" -00270496 00 s 03 ablaze(p) 0 inflamed 0 reddened 0 001 & 00269989 a 0000 | lighted with red light as if with flames; "streets ablaze with lighted Christmas trees"; "the inflamed clouds at sunset"; "reddened faces around the campfire" -00270732 00 s 01 autofluorescent 0 002 & 00269989 a 0000 + 11427736 n 0101 | emitting light via self-induced fluorescence -00270856 00 s 01 bioluminescent 0 003 & 00269989 a 0000 ;c 00004475 n 0000 + 11476619 n 0101 | (of living organisms) emitting light; "fireflies are bioluminescent" -00271022 00 s 01 bright 0 002 & 00269989 a 0000 + 05018103 n 0102 | having lots of light either natural or artificial; "the room was bright and airy"; "a stage bright with spotlights" -00271208 00 s 01 candescent 0 001 & 00269989 a 0000 | glowing from great heat -00271288 00 s 02 floodlit 0 floodlighted 0 001 & 00269989 a 0000 | illuminated by means of floodlights; "the floodlit courtyard" -00271419 00 s 01 fluorescent 0 003 & 00269989 a 0000 + 11458102 n 0101 + 02161160 v 0101 | emitting light during exposure to radiation from an external source -00271580 00 s 04 illuminated 0 lighted 0 lit 0 well-lighted 0 001 & 00269989 a 0000 | provided with artificial light; "illuminated advertising"; "looked up at the lighted windows"; "a brightly lit room"; "a well-lighted stairwell" -00271813 00 s 02 incandescent 0 candent 0 002 & 00269989 a 0000 + 11467786 n 0101 | emitting light as a result of being heated; "an incandescent bulb" -00271966 00 s 01 lamplit 0 001 & 00269989 a 0000 | lighted by a lamp; "our lamplit mountain retreat" -00272069 00 s 01 lighting-up(a) 0 001 & 00269989 a 0000 | turning lights on; "it's lighting-up time" -00272172 00 s 01 livid 0 001 & 00269989 a 0000 | (of a light) imparting a deathlike luminosity; "livid lightning streaked the sky"; "a thousand flambeaux...turned all at once that deep gloom into a livid and preternatural day"- E.A.Poe -00272410 00 s 01 luminescent 0 004 & 00269989 a 0000 + 11476430 n 0101 + 05018785 n 0101 + 02766223 v 0101 | emitting light not caused by heat -00272555 00 s 01 phosphorescent 0 003 & 00269989 a 0000 + 11491026 n 0101 + 02632035 v 0101 | emitting light without appreciable heat as by slow oxidation of phosphorous; "the phosphorescent glow of decaying wood" -00272771 00 s 02 sunlit 0 sunstruck 0 001 & 00269989 a 0000 | lighted by sunlight; "the sunlit slopes of the canyon"; "violet valleys and the sunstruck ridges"- Wallace Stegner -00272950 00 s 01 white 0 001 & 00269989 a 0000 | of summer nights in northern latitudes where the sun barely sets; "white nights" -00273082 00 a 01 dark 1 021 = 04951373 n 0000 + 13983515 n 0101 + 08646306 n 0102 + 08646306 n 0101 ! 00269989 a 0101 & 00273652 a 0000 & 00273901 a 0000 & 00274068 a 0000 & 00274291 a 0000 & 00274373 a 0000 & 00274551 a 0000 & 00274698 a 0000 & 00274833 a 0000 & 00274971 a 0000 & 00275106 a 0000 & 00275290 a 0000 & 00275486 a 0000 & 00275764 a 0000 & 00275985 a 0000 & 00276226 a 0000 & 00276355 a 0000 | devoid of or deficient in light or brightness; shadowed or black; "sitting in a dark corner"; "a dark day"; "dark shadows"; "dark as the inside of a black cat" -00273652 00 s 03 Acheronian 0 Acherontic 0 Stygian 0 002 & 00273082 a 0000 + 09186709 n 0101 | dark and dismal as of the rivers Acheron and Styx in Hades; "in the depths of an Acheronian forest"; "upon those roseate lips a Stygian hue"-Wordsworth -00273901 00 s 01 aphotic 0 001 & 00273082 a 0000 | lacking light; especially not reached by sunlight; "the aphotic depths of the sea where no photosynthesis occurs" -00274068 00 s 03 black 0 pitch-black 0 pitch-dark 0 003 & 00273082 a 0000 + 13983807 n 0204 + 13983807 n 0103 | extremely dark; "a black moonless night"; "through the pitch-black woods"; "it was pitch-dark in the cellar" -00274291 00 s 01 caliginous 0 001 & 00273082 a 0000 | dark and misty and gloomy -00274373 00 s 01 Cimmerian 0 001 & 00273082 a 0000 | intensely dark and gloomy as with perpetual darkness; "the Cimmerian gloom...a darkness that could be felt"-Norman Douglas -00274551 00 s 01 crepuscular 0 003 & 00273082 a 0000 + 15169421 n 0109 + 15169421 n 0108 | like twilight; dim; "the evening's crepuscular charm" -00274698 00 s 01 darkened 0 001 & 00273082 a 0000 | become or made dark by lack of light; "a darkened house"; "the darkened theater" -00274833 00 s 01 darkening 0 001 & 00273082 a 0000 | becoming dark or darker as from waning light or clouding over; "the darkening sky" -00274971 00 s 01 darkling 1 002 & 00273082 a 0000 ;c 07092592 n 0000 | (poetic) occurring in the dark or night; "a darkling journey" -00275106 00 s 01 darkling 2 001 & 00273082 a 0000 | uncannily or threateningly dark or obscure; "a darkling glance"; "secret operatives and darkling conspiracies"-Archibald MacLeish -00275290 00 s 02 dim 0 subdued 0 003 & 00273082 a 0000 + 04955907 n 0202 + 04955907 n 0101 | lacking in light; not bright or harsh; "a dim light beside the bed"; "subdued lights and soft music" -00275486 00 s 03 dusky 0 twilight(a) 0 twilit 0 003 & 00273082 a 0000 + 15169421 n 0102 + 13985323 n 0102 | lighted by or as if by twilight; "The dusky night rides down the sky/And ushers in the morn"-Henry Fielding; "the twilight glow of the sky"; "a boat on a twilit river" -00275764 00 s 04 glooming 0 gloomy 0 gloomful 0 sulky 0 003 & 00273082 a 0000 + 13985462 n 0201 + 04631470 n 0201 | depressingly dark; "the gloomy forest"; "the glooming interior of an old inn"; "`gloomful' is archaic" -00275985 00 s 04 lightless 0 unilluminated 0 unlighted 0 unlit 0 002 & 00273082 a 0000 + 13983807 n 0102 | without illumination; "came up the lightless stairs"; "the unilluminated side of Mars"; "through dark unlighted (or unlit) streets" -00276226 00 s 01 semidark 0 002 & 00273082 a 0000 + 13984285 n 0101 | partially devoid of light or brightness; "semidark room" -00276355 00 s 03 tenebrous 0 tenebrific 0 tenebrious 0 001 & 00273082 a 0000 | dark and gloomy; "a tenebrous cave" -00276472 00 a 01 shaded 1 003 ! 00277183 a 0101 & 00276689 a 0000 & 00276862 a 0000 | protected from heat and light with shade or shadow; "shaded avenues"; "o'er the shaded billows rushed the night"- Alexander Pope -00276689 00 s 02 murky 0 mirky 0 003 & 00276472 a 0000 + 14521648 n 0103 + 14521648 n 0104 | dark or gloomy; "a murky dungeon"; "murky rooms lit by smoke-blackened lamps" -00276862 00 s 04 shady 0 shadowed 0 shadowy 2 umbrageous 0 005 & 00276472 a 0000 + 13984944 n 0301 + 13984613 n 0303 + 13984613 n 0102 + 13984613 n 0101 | filled with shade; "the shady side of the street"; "the surface of the pond is dark and shadowed"; "we sat on rocks in a shadowy cove"; "cool umbrageous woodlands" -00277183 00 a 01 unshaded 1 002 ! 00276472 a 0101 & 00277339 a 0000 | not darkened or dimmed by shade; "an unshaded meadow"; "a bright and unshaded lane" -00277339 00 s 01 unshadowed 0 001 & 00277183 a 0000 | not darkened or obscured by shadow; "on the rough sea ice you may on an unshadowed day...fall over a chunk of ice that is kneehigh"- Vilhjalmur Stefansson -00277550 00 a 01 shaded 2 002 ! 00277867 a 0101 & 00277749 a 0000 | (of pictures or drawings) drawn or painted with degrees or gradations of shadow; "the shaded areas of the face seemed to recede" -00277749 00 s 02 hatched 0 crosshatched 0 001 & 00277550 a 0000 | shaded by means of fine parallel or crossed lines -00277867 00 a 01 unshaded 2 001 ! 00277550 a 0101 | (of pictures) not having shadow represented; "unshaded drawings resembling cartoons" -00278006 00 a 02 moonlit 0 moony 2 002 + 11484975 n 0203 ! 00278131 a 0101 | lighted by moonlight; "the moonlit landscape" -00278131 00 a 01 moonless 0 001 ! 00278006 a 0101 | without a moon or a visible moon; "the dark moonless night"; "a moonless planet" -00278266 00 a 01 bridgeable 0 003 + 01915131 v 0101 + 01296324 v 0101 ! 00278418 a 0101 | capable of being connected by a bridge or as if by a bridge -00278418 00 a 01 unbridgeable 0 001 ! 00278266 a 0101 | not bridgeable; "a wide unbridgeable river"; "unbridgeable generation gap" -00278551 00 a 01 bright 0 022 = 05018103 n 0000 + 04952242 n 0101 ! 00283703 a 0101 & 00279092 a 0000 & 00279332 a 0000 & 00279618 a 0000 & 00280245 a 0000 & 00280463 a 0000 & 00280844 a 0000 & 00281075 a 0000 & 00281173 a 0000 & 00281342 a 0000 & 00281527 a 0000 & 00281657 a 0000 & 00282020 a 0000 & 00282389 a 0000 & 00282557 a 0000 & 00282675 a 0000 & 00283060 a 0000 & 00283167 a 0000 & 00283327 a 0000 & 00283580 a 0000 | emitting or reflecting light readily or in large amounts; "the sun was bright and hot"; "a bright sunlit room" -00279092 00 s 03 agleam 0 gleaming 0 nitid 0 001 & 00278551 a 0000 | bright with a steady but subdued shining; "from the plane we saw the city below agleam with lights"; "the gleaming brass on the altar"; "Nereids beneath the nitid moon" -00279332 00 s 04 aglow(p) 0 lambent 0 lucent 0 luminous 0 004 & 00278551 a 0000 + 05018103 n 0405 + 05018103 n 0401 + 04954534 n 0204 | softly bright or radiant; "a house aglow with lights"; "glowing embers"; "lambent tongues of flame"; "the lucent moon"; "a sky luminous with stars" -00279618 00 s 0a aglitter(p) 0 coruscant 0 fulgid 0 glinting 0 glistering 0 glittering 0 glittery 0 scintillant 0 scintillating 0 sparkly 0 007 & 00278551 a 0000 + 07412668 n 0a02 + 02766390 v 0802 + 02764765 v 0803 + 07412668 n 0701 + 04952944 n 0701 + 02766390 v 0203 | having brief brilliant points or flashes of light; "bugle beads all aglitter"; "glinting eyes"; "glinting water"; "his glittering eyes were cold and malevolent"; "shop window full of glittering Christmas trees"; "glittery costume jewelry"; "scintillant mica"; "the scintillating stars"; "a dress with sparkly sequins"; "`glistering' is an archaic term" -00280245 00 s 04 beady 0 beadlike 0 buttony 0 buttonlike 0 003 & 00278551 a 0000 + 02928608 n 0301 + 13901585 n 0102 | small and round and shiny like a shiny bead or button; "bright beady eyes"; "black buttony eyes" -00280463 00 s 05 beaming 0 beamy 0 effulgent 0 radiant 0 refulgent 0 010 & 00278551 a 0000 + 04953954 n 0506 + 04953954 n 0505 + 04953954 n 0402 + 04953954 n 0401 + 02767116 v 0401 + 02160552 v 0401 + 00529582 v 0401 + 04953954 n 0304 + 11428023 n 0201 | radiating or as if radiating light; "the beaming sun"; "the effulgent daffodils"; "a radiant sunrise"; "a refulgent sunset" -00280844 00 s 06 blazing 0 blinding 0 dazzling 0 fulgent 0 glaring 0 glary 0 001 & 00278551 a 0000 | shining intensely; "the blazing sun"; "blinding headlights"; "dazzling snow"; "fulgent patterns of sunlight"; "the glaring sun" -00281075 00 s 01 bright_as_a_new_penny(p) 0 001 & 00278551 a 0000 | (metaphor) shining brightly -00281173 00 s 01 brilliant 0 003 & 00278551 a 0000 + 04954920 n 0103 + 04952570 n 0103 | full of light; shining intensely; "a brilliant star"; "brilliant chandeliers" -00281342 00 s 01 ardent 0 001 & 00278551 a 0000 | glowing or shining like fire; "from rank to rank she darts her ardent eyes"- Alexander Pope; "frightened by his ardent burning eyes" -00281527 00 s 01 glimmery 0 002 & 00278551 a 0000 + 07412478 n 0103 | shining softly and intermittently; "glimmery candlelight" -00281657 00 s 06 glistening 0 glossy 0 lustrous 1 sheeny 0 shiny 0 shining 1 005 & 00278551 a 0000 + 04954683 n 0501 + 04954683 n 0402 + 04954683 n 0304 + 04955160 n 0203 | reflecting light; "glistening bodies of swimmers"; "the horse's glossy coat"; "lustrous auburn hair"; "saw the moon like a shiny dime on a deep blue velvet carpet"; "shining white enamel" -00282020 00 s 05 iridescent 0 nacreous 0 opalescent 0 opaline 0 pearlescent 0 006 & 00278551 a 0000 + 04953678 n 0301 + 02765231 v 0301 + 02734140 v 0301 + 04953678 n 0102 + 02733928 v 0101 | having a play of lustrous rainbow colors; "an iridescent oil slick"; "nacreous (or pearlescent) clouds looking like mother-of-pearl"; "a milky opalescent (or opaline) luster" -00282389 00 s 01 lurid 0 002 & 00278551 a 0000 + 04977561 n 0103 | shining with an unnatural red glow as of fire seen through smoke; "a lurid sunset"; "lurid flames" -00282557 00 s 01 noctilucent 0 001 & 00278551 a 0000 | shining or glowing by night; "the noctilucent eyes of a cat" -00282675 00 s 06 satiny 0 sleek 0 silken 0 silky 0 silklike 0 slick 0 006 & 00278551 a 0000 + 04947628 n 0601 + 04219424 n 0401 + 04947494 n 0401 + 04947494 n 0202 + 04138261 n 0101 | having a smooth, gleaming surface reflecting light; "glossy auburn hair"; "satiny gardenia petals"; "sleek black fur"; "silken eyelashes"; "silky skin"; "a silklike fabric"; "slick seals and otters" -00283060 00 s 01 self-luminous 0 001 & 00278551 a 0000 | having in itself the property of emitting light -00283167 00 s 01 shimmery 0 002 & 00278551 a 0000 + 07411851 n 0101 | glistening tremulously; "the shimmery surface of the lake"; "a dress of shimmery satin" -00283327 00 s 03 silver 0 silvern 0 silvery 0 002 & 00278551 a 0000 + 14654954 n 0301 | having the white lustrous sheen of silver; "a land of silver (or silvern) rivers where the salmon leap"; "repeated scrubbings have given the wood a silvery sheen" -00283580 00 s 01 twinkling(a) 0 001 & 00278551 a 0000 | shining intermittently with a sparkling light; "twinkling stars" -00283703 00 a 01 dull 2 007 ^ 01812846 a 0000 = 05018103 n 0000 + 04955633 n 0101 ! 00278551 a 0101 & 00283972 a 0000 & 00284194 a 0000 & 00284400 a 0000 | emitting or reflecting very little light; "a dull glow"; "dull silver badly in need of a polish"; "a dull sky" -00283972 00 s 05 flat 0 mat 0 matt 0 matte 0 matted 0 004 & 00283703 a 0000 + 04956110 n 0406 + 04956110 n 0305 + 04956110 n 0101 | not reflecting light; not glossy; "flat wall paint"; "a photograph with a matte finish" -00284194 00 s 04 lackluster 0 lacklustre 0 lusterless 0 lustreless 0 003 & 00283703 a 0000 + 04956110 n 0403 + 04956110 n 0302 | lacking luster or shine; "staring with lackluster eyes"; "lusterless hair" -00284400 00 s 02 soft 0 subdued 0 002 & 00283703 a 0000 + 04956419 n 0101 | not brilliant or glaring; "the moon cast soft shadows"; "soft pastel colors"; "subdued lighting" -00284575 00 a 02 dimmed 0 dim 2 003 + 13985323 n 0201 ! 00284930 a 0101 & 00284816 a 0000 | made dim or less bright; "the dimmed houselights brought a hush of anticipation"; "dimmed headlights"; "we like dimmed lights when we have dinner" -00284816 00 s 01 low-beam(a) 0 001 & 00284575 a 0000 | used of headlights; "following with low-beam headlights" -00284930 00 a 02 undimmed 0 bright 2 002 + 05018103 n 0202 ! 00284575 a 0101 | not made dim or less bright; "undimmed headlights"; "surprisingly the curtain started to rise while the houselights were still undimmed" -00285148 00 a 02 prejudiced 0 discriminatory 4 007 + 02512305 v 0201 ! 00286214 a 0101 & 00285413 a 0000 & 00285506 a 0000 & 00285725 a 0000 & 00285905 a 0000 & 00286063 a 0000 | being biased or having a belief or attitude formed beforehand; "a prejudiced judge" -00285413 00 s 01 homophobic 0 001 & 00285148 a 0000 | prejudiced against homosexual people -00285506 00 s 01 jaundiced 0 001 & 00285148 a 0000 | showing or affected by prejudice or envy or distaste; "looked with a jaundiced eye on the growth of regimentation"; "takes a jaundiced view of societies and clubs" -00285725 00 s 01 loaded 0 001 & 00285148 a 0000 | (of statements or questions) charged with associative significance and often meant to mislead or influence; "a loaded question" -00285905 00 s 03 racist 0 antiblack 0 anti-Semite(a) 0 002 & 00285148 a 0000 + 09797742 n 0301 | discriminatory especially on the basis of race or religion -00286063 00 s 01 sexist 0 002 & 00285148 a 0000 + 09912431 n 0102 | discriminatory on the basis of sex (usually said of men's attitude toward women) -00286214 00 a 02 unprejudiced 0 impartial 4 004 ^ 01985247 a 0000 + 06202686 n 0201 ! 00285148 a 0101 & 00286470 a 0000 | free from undue bias or preconceived opinions; "an unprejudiced appraisal of the pros and cons"; "the impartial eye of a scientist" -00286470 00 s 03 color-blind 0 colour-blind 0 nonracist 0 001 & 00286214 a 0000 | unprejudiced about race -00286578 00 a 01 broad-minded 0 006 + 06204623 n 0101 ! 00287640 a 0101 & 00286837 a 0000 & 00287128 a 0000 & 00287275 a 0000 & 00287498 a 0000 | inclined to respect views and beliefs that differ from your own; "a judge who is broad-minded but even-handed" -00286837 00 s 04 broad 0 large-minded 0 liberal 0 tolerant 0 003 & 00286578 a 0000 + 02457585 v 0401 + 06204820 n 0302 | showing or characterized by broad-mindedness; "a broad political stance"; "generous and broad sympathies"; "a liberal newspaper"; "tolerant of his opponent's opinions" -00287128 00 s 01 catholic 0 002 & 00286578 a 0000 + 04765691 n 0102 | free from provincial prejudices or attachments; "catholic in one's tastes" -00287275 00 s 04 free-thinking 0 latitudinarian 0 undogmatic 0 undogmatical 0 004 & 00286578 a 0000 ;c 05946687 n 0000 + 13995148 n 0201 + 05127640 n 0201 | unwilling to accept authority or dogma (especially in religion) -00287498 00 s 01 open-minded 0 001 & 00286578 a 0000 | ready to entertain new ideas; "an open-minded curiosity"; "open-minded impartiality" -00287640 00 a 02 narrow-minded 0 narrow 6 009 ^ 02561888 a 0000 + 06205411 n 0202 + 06205411 n 0101 ! 00286578 a 0101 & 00287962 a 0000 & 00288070 a 0000 & 00288237 a 0000 & 00288362 a 0000 & 00288498 a 0000 | lacking tolerance or flexibility or breadth of view; "a brilliant but narrow-minded judge"; "narrow opinions" -00287962 00 s 02 close-minded 0 closed-minded 0 001 & 00287640 a 0000 | not ready to receive to new ideas -00288070 00 s 02 dogmatic 0 dogmatical 0 003 & 00287640 a 0000 + 05960464 n 0201 + 06790042 n 0101 | characterized by assertion of unproved or unprovable principles -00288237 00 s 02 illiberal 0 intolerant 0 002 & 00287640 a 0000 + 04834457 n 0101 | narrow-minded about cherished opinions -00288362 00 s 03 opinionated 0 opinionative 0 self-opinionated 0 002 & 00287640 a 0000 + 01027668 v 0201 | obstinate in your opinions -00288498 00 s 02 petty 0 small-minded 0 002 & 00287640 a 0000 + 06205827 n 0101 | contemptibly narrow in outlook; "petty little comments"; "disgusted with their small-minded pettiness" -00288685 00 a 01 reconstructed 0 001 ! 00288809 a 0101 | adapted to social or economic change; "a reconstructed feminist" -00288809 00 a 01 unreconstructed 0 001 ! 00288685 a 0101 | adhering to an attitude or position widely held to be outmoded; "peasants are still unreconstructed small capitalists at heart"; "there are probably more unreconstructed Southerners than one would like to admit" -00289082 00 a 01 broken 1 006 ^ 00679147 a 0000 ^ 01752167 a 0000 ^ 01317954 a 0000 ^ 02274253 a 0000 = 14460565 n 0000 ! 00289365 a 0101 | physically and forcibly separated into pieces or cracked or split; "a broken mirror"; "a broken tooth"; "a broken leg"; "his neck is broken" -00289365 00 a 01 unbroken 1 006 ^ 01749320 a 0000 ^ 02273326 a 0000 ^ 00681094 a 0000 ^ 01319182 a 0000 = 14460565 n 0000 ! 00289082 a 0101 | not broken; whole and intact; in one piece; "fortunately the other lens is unbroken" -00289594 00 a 02 broken 3 unkept 0 002 ;c 06520944 n 0000 ! 00289799 a 0101 | (especially of promises or contracts) having been violated or disregarded; "broken (or unkept) promises"; "broken contracts" -00289799 00 a 02 unbroken 3 kept 0 002 ;c 06520944 n 0000 ! 00289594 a 0101 | (especially of promises or contracts) not violated or disregarded; "unbroken promises"; "promises kept" -00289983 00 a 01 broken 2 006 ^ 00596769 a 0000 ! 00290923 a 0101 & 00290337 a 0000 & 00290483 a 0000 & 00290593 a 0000 & 00290784 a 0000 | not continuous in space, time, or sequence or varying abruptly; "broken lines of defense"; "a broken cable transmission"; "broken sleep"; "tear off the stub above the broken line"; "a broken note"; "broken sobs" -00290337 00 s 01 broken-field 0 002 & 00289983 a 0000 ;c 00468480 n 0000 | varying in direction suddenly and frequently; "broken-field running" -00290483 00 s 02 dashed 0 dotted 0 001 & 00289983 a 0000 | having gaps or spaces; "sign on the dotted line" -00290593 00 s 03 fitful 0 interrupted 0 off-and-on(a) 0 002 & 00289983 a 0000 + 04770535 n 0101 | intermittently stopping and starting; "fitful (or interrupted) sleep"; "off-and-on static" -00290784 00 s 01 halting 0 001 & 00289983 a 0000 | fragmentary or halting from emotional strain; "uttered a few halting words of sorrow" -00290923 00 a 01 unbroken 2 004 ^ 00594413 a 0000 ! 00289983 a 0101 & 00291181 a 0000 & 00291338 a 0000 | marked by continuous or uninterrupted extension in space or time or sequence; "cars in an unbroken procession"; "the unbroken quiet of the afternoon" -00291181 00 s 01 solid 0 001 & 00290923 a 0000 | uninterrupted in space; having no gaps or breaks; "a solid line across the page"; "solid sheets of water" -00291338 00 s 01 uninterrupted 0 001 & 00290923 a 0000 | having undisturbed continuity; "a convalescent needs uninterrupted sleep" -00291471 00 a 03 brotherly 0 brotherlike 0 fraternal 2 002 + 09876454 n 0101 ! 00291665 a 0101 | like or characteristic of or befitting a brother; "brotherly feelings"; "close fraternal ties" -00291665 00 a 03 sisterly 0 sisterlike 0 sororal 2 002 + 10602985 n 0101 ! 00291471 a 0101 | like or characteristic of or befitting a sister; "sisterly kindness"; "sororal concern" -00291848 00 a 01 exergonic 0 002 ;c 06079620 n 0000 ! 00292024 a 0101 | (biochemistry) of a process accompanied by the release of energy; "diffusion is an exergonic process" -00292024 00 a 01 endergonic 0 002 ;c 06079620 n 0000 ! 00291848 a 0101 | (biochemistry) of a process accompanied by or requiring the absorption of energy; the products of the process are of greater free energy than the reactants; "photosynthesis is an endergonic process" -00292298 00 a 02 fraternal 0 biovular 0 001 ! 00292448 a 0101 | (of twins) derived from two separate fertilized ova; "fraternal twins are biovular" -00292448 00 a 02 identical 0 monovular 0 002 + 04743024 n 0102 ! 00292298 a 0101 | (of twins) derived from a single egg or ovum; "identical twins are monovular" -00292611 00 a 03 buried 0 inhumed 0 interred 0 002 ! 00292872 a 0101 & 00292750 a 0000 | placed in a grave; "the hastily buried corpses" -00292750 00 s 01 belowground 0 001 & 00292611 a 0000 | underneath the ground; "most of his friends are now belowground" -00292872 00 a 01 unburied 0 001 ! 00292611 a 0101 | not buried -00292937 00 a 01 busy 0 010 ^ 00754107 a 0000 ^ 00863946 a 0000 + 14008050 n 0101 ! 00294175 a 0101 & 00293248 a 0000 & 00293376 a 0000 & 00293611 a 0000 & 00293819 a 0000 & 00293882 a 0000 & 00294056 a 0000 | actively or fully engaged or occupied; "busy with her work"; "a busy man"; "too busy to eat lunch" -00293248 00 s 01 at_work(p) 0 001 & 00292937 a 0000 | on the job; "had been at work for over an hour before her boss arrived" -00293376 00 s 04 drudging 0 laboring 0 labouring 0 toiling 0 001 & 00292937 a 0000 | doing arduous or unpleasant work; "drudging peasants"; "the bent backs of laboring slaves picking cotton"; "toiling coal miners in the black deeps" -00293611 00 s 02 engaged 2 occupied 0 001 & 00292937 a 0000 | having ones attention or mind or energy engaged; "she keeps herself fully occupied with volunteer activities"; "deeply engaged in conversation" -00293819 00 s 01 overbusy 0 001 & 00292937 a 0000 | too busy -00293882 00 s 01 tied_up(p) 0 001 & 00292937 a 0000 | kept occupied or engaged; "she's tied up at the moment and can't see you"; "the phone was tied up for almost an hour" -00294056 00 s 01 up_to 0 001 & 00292937 a 0000 | busy or occupied with; "what have you been up to?"; "up to no good" -00294175 00 a 01 idle 0 009 ^ 00835609 a 0000 ^ 00864693 a 0000 + 04637290 n 0102 ! 00292937 a 0101 & 00294463 a 0000 & 00294579 a 0000 & 00295011 a 0000 & 00295235 a 0000 & 00295507 a 0000 | not in action or at work; "an idle laborer"; "idle drifters"; "the idle rich"; "an idle mind" -00294463 00 s 02 bone-idle 0 bone-lazy 0 002 & 00294175 a 0000 ;u 07075172 n 0000 | constitutionally lazy or idle -00294579 00 s 06 faineant 0 indolent 0 lazy 0 otiose 0 slothful 0 work-shy 0 006 & 00294175 a 0000 + 04637444 n 0502 + 04637108 n 0302 + 00758795 n 0302 + 04637108 n 0201 + 04637290 n 0101 | disinclined to work or exertion; "faineant kings under whose rule the country languished"; "an indolent hanger-on"; "too lazy to wash the dishes"; "shiftless idle youth"; "slothful employees"; "the unemployed are not necessarily work-shy" -00295011 00 s 01 lackadaisical 0 001 & 00294175 a 0000 | idle or indolent especially in a dreamy way; "she was annoyingly lackadaisical and impractical"; "a...lackadaisical, spiritless young man-about-town"- P.G.Wodehouse -00295235 00 s 01 leisured 0 001 & 00294175 a 0000 | free from duties or responsibilities; "he writes in his leisure hours"; "life as it ought to be for the leisure classes"- J.J.Chapman; "even the artist and the sculptor were not regarded...as leisured men"- Ida Craven -00295507 00 s 01 unengaged 0 001 & 00294175 a 0000 | not busy or occupied; free; "the cancellation left her unengaged a good part of the afternoon" -00295657 00 a 02 bony 0 boney 0 007 + 05269901 n 0201 + 05269901 n 0101 ! 00296354 a 0101 & 00295924 a 0000 & 00296061 a 0000 & 00296186 a 0000 & 00296276 a 0000 | having bones especially many or prominent bones; "a bony shad fillet"; "her bony wrist"; "bony fish" -00295924 00 s 01 bone 1 001 & 00295657 a 0000 | consisting of or made up of bone; "a bony substance"; "the bony framework of the body" -00296061 00 s 01 boned 1 002 & 00295657 a 0000 ;u 06307152 n 0000 | having bones as specified; "his lanky long-boned body" -00296186 00 s 01 bonelike 0 001 & 00295657 a 0000 | resembling bone; "a bonelike tumor" -00296276 00 s 01 strong-boned 0 001 & 00295657 a 0000 | having strong bones -00296354 00 a 01 boneless 0 002 ! 00295657 a 0101 & 00296482 a 0000 | being without a bone or bones; "jellyfish are boneless" -00296482 00 s 02 boned 2 deboned 0 001 & 00296354 a 0000 | having had the bones removed; "a boneless rib roast"; "a boned (or deboned) fish" -00296625 00 a 02 buttoned 0 fastened 2 003 ! 00297097 a 0101 & 00296783 a 0000 & 00296935 a 0000 | furnished or closed with buttons or something buttonlike -00296783 00 s 02 botonee 0 botonnee 0 001 & 00296625 a 0000 | (of a heraldic cross) having a cluster of three buttons or knobs at the end of each arm -00296935 00 s 01 button-down 0 001 & 00296625 a 0000 | of a shirt; having the ends of the collar fastened down by buttons; "Brooks Brothers button-down shirts" -00297097 00 a 02 unbuttoned 0 unfastened 2 002 ! 00296625 a 0101 & 00297250 a 0000 | not buttoned; "the wind picked up the hem of her unbuttoned coat" -00297250 00 s 01 open-collared 0 001 & 00297097 a 0000 | of a shirt; not buttoned at the neck; "dressed casually in shorts and an open-collared shirt" -00297403 00 a 02 capitalistic 0 capitalist 4 006 + 09892262 n 0201 + 08364143 n 0101 ! 00298041 a 0101 & 00297598 a 0000 & 00297755 a 0000 & 00297897 a 0000 | favoring or practicing capitalism -00297598 00 s 01 bourgeois 0 001 & 00297403 a 0000 | (according to Marxist thought) being of the property-owning class and exploitive of the working class -00297755 00 s 03 competitive 0 free-enterprise(a) 0 private-enterprise(a) 0 001 & 00297403 a 0000 | subscribing to capitalistic competition -00297897 00 s 02 individualistic 0 laissez-faire(a) 0 002 & 00297403 a 0000 + 05962936 n 0101 | with minimally restricted freedom in commerce -00298041 00 a 02 socialistic 0 socialist 4 007 ^ 02030935 a 0000 + 10618848 n 0201 + 08366202 n 0101 + 06220616 n 0101 ! 00297403 a 0101 & 00298293 a 0000 & 00298507 a 0000 | advocating or following the socialist principles; "socialistic government" -00298293 00 s 01 collective 0 001 & 00298041 a 0000 | set up on the principle of collectivism or ownership and production by the workers involved usually under the supervision of a government; "collective farms" -00298507 00 s 05 collectivist 0 collectivistic 0 collectivized 0 collectivised 0 state-controlled 0 004 & 00298041 a 0000 + 08368308 n 0202 + 06214580 n 0201 + 10619176 n 0101 | subscribing to the socialistic doctrine of ownership by the people collectively -00298767 00 a 02 cacophonous 0 cacophonic 0 014 ^ 01919931 a 0000 + 07377473 n 0203 + 04984938 n 0201 + 07377473 n 0103 + 04984938 n 0101 ! 00300738 a 0101 & 00299144 a 0000 & 00299313 a 0000 & 00299476 a 0000 & 00299690 a 0000 & 00300007 a 0000 & 00300196 a 0000 & 00300359 a 0000 & 00300469 a 0000 | having an unpleasant sound; "as cacophonous as a henyard"- John McCarten -00299144 00 s 02 cackly 0 squawky 0 003 & 00298767 a 0000 + 07395446 n 0201 + 07378437 n 0101 | like the cackles or squawks a hen makes especially after laying an egg -00299313 00 s 02 croaky 0 guttural 0 002 & 00298767 a 0000 + 07125367 n 0101 | like the sounds of frogs and crows; "a guttural voice"; "acres of guttural frogs" -00299476 00 s 06 grating 0 gravelly 0 rasping 0 raspy 0 rough 0 scratchy 0 004 & 00298767 a 0000 + 07392982 n 0603 + 04988666 n 0502 + 07130774 n 0401 | unpleasantly harsh or grating in sound; "a gravelly voice" -00299690 00 s 03 gruff 0 hoarse 0 husky 0 004 & 00298767 a 0000 + 04988861 n 0303 + 04988861 n 0202 + 04988861 n 0101 | deep and harsh sounding as if from shouting or illness or emotion; "gruff voices"; "the dog's gruff barking"; "hoarse cries"; "makes all the instruments sound powerful but husky"- Virgil Thomson -00300007 00 s 02 jangling 0 jangly 0 002 & 00298767 a 0000 + 07385998 n 0202 | like the discordant ringing of nonmusical metallic objects striking together; "cowboys with jangling spurs" -00300196 00 s 01 jarring 0 001 & 00298767 a 0000 | making or causing a harsh and irritating sound; "the jarring noise of the iron gate scraping on the sidewalk" -00300359 00 s 02 raucous 0 strident 0 002 & 00298767 a 0000 + 04990021 n 0202 | unpleasantly loud and harsh -00300469 00 s 03 rending 0 ripping 0 splitting 0 001 & 00298767 a 0000 | resembling a sound of violent tearing as of something ripped apart or lightning splitting a tree; "the tree split with a great ripping sound"; "heard a rending roar as the crowd surged forward" -00300738 00 a 02 euphonious 0 euphonous 0 005 + 05718556 n 0202 + 05718556 n 0102 ! 00298767 a 0101 & 00300943 a 0000 & 00301032 a 0000 | having a pleasant sound; "a euphonious trill of silver laughter" -00300943 00 s 01 golden 1 001 & 00300738 a 0000 | suggestive of gold; "a golden voice" -00301032 00 s 02 silvern 0 silvery 0 001 & 00300738 a 0000 | resembling or reminiscent of silver; "a soft silvern voice"; "singing in her silvery tones" -00301187 00 a 01 calculable 0 007 ^ 00738593 a 0000 + 00926472 v 0102 + 00712135 v 0101 + 00637259 v 0101 ! 00301777 a 0101 & 00301432 a 0000 & 00301589 a 0000 | capable of being calculated or estimated; "a calculable risk"; "calculable odds" -00301432 00 s 02 computable 0 estimable 0 001 & 00301187 a 0000 | may be computed or estimated; "a calculable risk"; "computable odds"; "estimable assets" -00301589 00 s 04 countable 0 denumerable 0 enumerable 0 numerable 0 003 & 00301187 a 0000 + 00948071 v 0404 + 00948071 v 0101 | that can be counted; "countable sins"; "numerable assets" -00301777 00 a 01 incalculable 0 005 ^ 00739273 a 0000 ! 00301187 a 0101 & 00301951 a 0000 & 00302436 a 0000 & 00302658 a 0000 | not capable of being computed or enumerated -00301951 00 s 0b countless 0 infinite 0 innumerable 0 innumerous 0 multitudinous 0 myriad 0 numberless 0 uncounted 0 unnumberable 0 unnumbered 0 unnumerable 0 007 & 00301777 a 0000 + 13776726 n 0601 + 13775093 n 0503 + 05122295 n 0501 + 05122419 n 0301 + 05209324 n 0201 + 05122419 n 0102 | too numerous to be counted; "incalculable riches"; "countless hours"; "an infinite number of reasons"; "innumerable difficulties"; "the multitudinous seas"; "myriad stars"; "untold thousands" -00302436 00 s 03 incomputable 0 inestimable 0 immeasurable 0 001 & 00301777 a 0000 | beyond calculation or measure; "of incalculable value"; "an incomputable amount"; "jewels of inestimable value"; "immeasurable wealth" -00302658 00 s 01 indeterminable 0 001 & 00301777 a 0000 | incapable of being definitely ascertained -00302761 00 a 01 calm 0 006 ^ 01740892 a 0000 + 14522265 n 0101 ! 00303727 a 0101 & 00302951 a 0000 & 00303480 a 0000 & 00303579 a 0000 | (of weather) free from storm or wind; "calm seas" -00302951 00 s 06 placid 0 quiet 0 still 0 tranquil 0 smooth 0 unruffled 0 008 & 00302761 a 0000 + 04769716 n 0501 + 07515560 n 0402 + 13969101 n 0401 + 07515560 n 0401 + 14522809 n 0301 + 07515560 n 0203 + 07515169 n 0102 | (of a body of water) free from disturbance by heavy waves; "a ribbon of sand between the angry sea and the placid bay"; "the quiet waters of a lagoon"; "a lake of tranquil blue water reflecting a tranquil blue sky"; "a smooth channel crossing"; "scarcely a ripple on the still water"; "unruffled water" -00303480 00 s 01 settled 0 001 & 00302761 a 0000 | not changeable; "a period of settled weather" -00303579 00 s 01 windless 0 002 & 00302761 a 0000 + 14522809 n 0102 | without or almost without wind; "he prefers windless days for playing golf" -00303727 00 a 01 stormy 0 015 ^ 00438567 a 0000 ^ 01742296 a 0000 + 14523436 n 0101 + 11462526 n 0101 ! 00302761 a 0101 & 00304144 a 0000 & 00304455 a 0000 & 00304670 a 0000 & 00304949 a 0000 & 00305225 a 0000 & 00305464 a 0000 & 00305590 a 0000 & 00305700 a 0000 & 00305882 a 0000 & 00306034 a 0000 | (especially of weather) affected or characterized by storms or commotion; "a stormy day"; "wide and stormy seas" -00304144 00 s 05 angry 0 furious 0 raging 0 tempestuous 0 wild 0 007 & 00303727 a 0000 + 05037813 n 0507 + 14523923 n 0401 + 11518494 n 0401 + 05037813 n 0204 + 05037813 n 0203 + 14036539 n 0102 | (of the elements) as if showing violent anger; "angry clouds on the horizon"; "furious winds"; "the raging sea" -00304455 00 s 03 billowy 0 billowing(a) 0 surging 0 002 & 00303727 a 0000 + 07348545 n 0101 | characterized by great swelling waves or surges; "billowy storm clouds"; "the restless billowing sea"; "surging waves" -00304670 00 s 03 blustering(a) 0 blusterous 0 blustery 0 003 & 00303727 a 0000 + 11465297 n 0301 + 11465297 n 0201 | blowing in violent and abrupt bursts; "blustering (or blusterous) winds of Patagonia"; "a cold blustery day"; "a gusty storm with strong sudden rushes of wind" -00304949 00 s 03 boisterous 0 fierce 0 rough 0 004 & 00303727 a 0000 + 14524029 n 0302 + 05037813 n 0202 + 14523669 n 0101 | violently agitated and turbulent; "boisterous winds and waves"; "the fierce thunders roar me their music"- Ezra Pound; "rough weather"; "rough seas" -00305225 00 s 03 blowy 0 breezy 0 windy 0 006 & 00303727 a 0000 + 14523787 n 0302 + 11525955 n 0301 + 11431754 n 0201 + 14523787 n 0201 + 11465017 n 0103 | abounding in or exposed to the wind or breezes; "blowy weather"; "a windy bluff" -00305464 00 s 01 choppy 0 003 & 00303727 a 0000 + 11527767 n 0101 + 14524029 n 0101 | rough with small waves; "choppy seas" -00305590 00 s 01 dirty 0 001 & 00303727 a 0000 | unpleasantly stormy; "there's dirty weather in the offing" -00305700 00 s 02 gusty 0 puffy 0 003 & 00303727 a 0000 + 11497888 n 0201 + 11465017 n 0101 | blowing in puffs or short intermittent blasts; "puffy off-shore winds"; "gusty winds " -00305882 00 s 01 squally 0 002 & 00303727 a 0000 + 11514008 n 0101 | characterized by brief periods of violent wind or rain; "a grey squally morning" -00306034 00 s 01 thundery 0 002 & 00303727 a 0000 + 07397355 n 0101 | accompanied with thunder -00306131 00 a 01 camphorated 0 001 ! 00306232 a 0101 | impregnated with camphor; "camphorated oil" -00306232 00 a 01 uncamphorated 0 001 ! 00306131 a 0101 | not containing camphor -00306314 00 a 01 capable 0 010 ^ 00510050 a 0000 = 05202497 n 0000 = 05623181 n 0000 + 05623181 n 0102 + 05202497 n 0102 + 05202497 n 0101 ! 00307474 a 0101 & 00306663 a 0000 & 00306909 a 0000 & 00307182 a 0000 | (usually followed by `of') having capacity or ability; "capable of winning"; "capable of hard work"; "capable of walking on two feet" -00306663 00 s 01 able 0 003 & 00306314 a 0000 + 05616246 n 0101 + 05200169 n 0101 | having inherent physical or mental ability or capacity; "able to learn"; "human beings are able to walk on two feet"; "Superman is able to leap tall buildings" -00306909 00 s 03 confident 0 surefooted 0 sure-footed 0 001 & 00306314 a 0000 | not liable to error in judgment or action; "most surefooted of the statesmen who dealt with the depression"- Walter Lippman; "demonstrates a surefooted storytelling talent"- Michiko Kakutani -00307182 00 s 01 resourceful 0 003 & 00306314 a 0000 + 05633860 n 0102 + 05155476 n 0101 | having inner resources; adroit or imaginative; "someone who is resourceful is capable of dealing with difficult situations"; "an able and resourceful politician"; "the most resourceful cook in town" -00307474 00 a 01 incapable 0 007 ^ 00511214 a 0000 = 05202497 n 0000 = 05623181 n 0000 + 05647867 n 0102 + 05207570 n 0101 ! 00306314 a 0101 & 00307794 a 0000 | (followed by `of') lacking capacity or ability; "incapable of carrying a tune"; "he is incapable of understanding the matter"; "incapable of doing the work" -00307794 00 s 01 unable(p) 0 001 & 00307474 a 0000 | (usually followed by `to') lacking necessary physical or mental ability; "dyslexics are unable to learn to read adequately"; "the sun was unable to melt enough snow" -00308015 00 a 01 capable 2 002 + 05202497 n 0102 ! 00308188 a 0101 | (followed by `of') having the temperament or inclination for; "no one believed her capable of murder" -00308188 00 a 01 incapable 2 002 + 05207570 n 0101 ! 00308015 a 0101 | (followed by `of') not having the temperament or inclination for; "simply incapable of lying" -00308355 00 a 01 cared-for 0 002 ! 00308593 a 0101 & 00308488 a 0000 | having needed care and attention; "well-cared-for children" -00308488 00 s 02 attended 0 tended_to(p) 0 001 & 00308355 a 0000 | having a caretaker or other watcher -00308593 00 a 01 uncared-for 0 003 ! 00308355 a 0101 & 00308720 a 0000 & 00308870 a 0000 | lacking needed care and attention -00308720 00 s 02 neglected 0 unattended 0 001 & 00308593 a 0000 | lacking a caretaker; "a neglected child"; "many casualties were lying unattended" -00308870 00 s 01 untended 0 001 & 00308593 a 0000 | lacking care and attention; "untended garden was soon overgrown with weeds"; "untended children" -00309021 00 a 01 careful 0 017 ^ 00325281 a 0000 ^ 00754107 a 0000 ^ 01898129 a 0000 = 04663494 n 0000 + 04663494 n 0101 ! 00311663 a 0101 & 00309620 a 0000 & 00309740 a 0000 & 00309945 a 0000 & 00310138 a 0000 & 00310433 a 0000 & 00310716 a 0000 & 00310943 a 0000 & 00311044 a 0000 & 00311187 a 0000 & 00311354 a 0000 & 00311505 a 0000 | exercising caution or showing care or attention; "they were careful when crossing the busy street"; "be careful to keep her shoes clean"; "did very careful research"; "careful art restorers"; "careful of the rights of others"; "careful about one's behavior" -00309620 00 s 01 blow-by-blow 0 001 & 00309021 a 0000 | providing great detail; "a blow-by-blow account of the movie" -00309740 00 s 02 certain 0 sure 0 001 & 00309021 a 0000 | exercising or taking care great enough to bring assurance; "be certain to disconnect the iron when you are through"; "be sure to lock the doors" -00309945 00 s 01 close 0 001 & 00309021 a 0000 | rigorously attentive; strict and thorough; "close supervision"; "paid close attention"; "a close study"; "kept a close watch on expenditures" -00310138 00 s 03 conscientious 0 painstaking 0 scrupulous 0 004 & 00309021 a 0000 + 04672605 n 0304 + 04672355 n 0202 + 04672355 n 0101 | characterized by extreme care and great effort; "conscientious application to the work at hand"; "painstaking research"; "scrupulous attention to details" -00310433 00 s 03 detailed 0 elaborate 0 elaborated 0 002 & 00309021 a 0000 + 04766852 n 0201 | developed or executed with care and in minute detail; "a detailed plan"; "the elaborate register of the inhabitants prevented tax evasion"- John Buchan; "the carefully elaborated theme" -00310716 00 s 02 minute 0 narrow 0 002 & 00309021 a 0000 + 04803702 n 0101 | characterized by painstaking care and detailed examination; "a minute inspection of the grounds"; "a narrow scrutiny"; "an exact and minute report" -00310943 00 s 02 overcareful 0 too-careful 0 001 & 00309021 a 0000 | excessively or unduly careful -00311044 00 s 01 particular(a) 0 001 & 00309021 a 0000 | providing specific details or circumstances; "a particular description of the room" -00311187 00 s 01 protective(p) 1 002 & 00309021 a 0000 + 04723622 n 0101 | (usually followed by `of') solicitously caring or mindful; "protective of his reputation" -00311354 00 s 01 studious 0 002 & 00309021 a 0000 + 04866238 n 0101 | marked by care and effort; "made a studious attempt to fix the television set" -00311505 00 s 01 thorough 0 002 & 00309021 a 0000 + 04672858 n 0101 | painstakingly careful and accurate; "our accountant is thorough"; "thorough research" -00311663 00 a 01 careless 0 015 ^ 01899360 a 0000 ^ 00164863 a 0000 ^ 00326436 a 0000 ^ 00754873 a 0000 ^ 01873406 a 0000 ^ 00545015 a 0000 = 04663494 n 0000 + 04664964 n 0101 + 00739270 n 0102 ! 00309021 a 0101 & 00312234 a 0000 & 00312519 a 0000 & 00312757 a 0000 & 00313041 a 0000 & 00313217 a 0000 | marked by lack of attention or consideration or forethought or thoroughness; not careful; "careless about her clothes"; "forgotten by some careless person"; "a careless housekeeper"; "careless proofreading"; "it was a careless mistake"; "hurt by a careless remark" -00312234 00 s 04 casual 0 cursory 0 passing(a) 0 perfunctory 0 002 & 00311663 a 0000 + 04912240 n 0101 | hasty and without attention to detail; not thorough; "a casual (or cursory) inspection failed to reveal the house's structural flaws"; "a passing glance"; "perfunctory courtesy" -00312519 00 s 04 haphazard 0 slapdash 0 slipshod 0 sloppy 0 002 & 00311663 a 0000 + 04664964 n 0402 | marked by great carelessness; "a most haphazard system of record keeping"; "slapdash work"; "slipshod spelling"; "sloppy workmanship" -00312757 00 s 02 heedless 0 reckless 0 003 & 00311663 a 0000 + 04661926 n 0201 + 04894204 n 0101 | characterized by careless unconcern; "the heedless generosity and the spasmodic extravagance of persons used to large fortunes"- Edith Wharton; "reckless squandering of public funds" -00313041 00 s 01 incautious 0 002 & 00311663 a 0000 + 04665210 n 0102 | carelessly failing to exercise proper caution; "an incautious step sent her headlong down the stairs" -00313217 00 s 02 offhand 0 offhanded 0 001 & 00311663 a 0000 | casually thoughtless or inconsiderate; "an offhand manner"; "she treated most men with offhand contempt" -00313387 00 a 01 carnivorous 0 007 ;c 00017222 n 0000 ! 00314023 a 0101 ! 00315109 a 0101 ! 00315383 a 0101 & 00313701 a 0000 & 00313836 a 0000 & 00313911 a 0000 | (used of plants as well as animals) feeding on animals; "carnivorous plants are capable of trapping and digesting small animals especially insects" -00313701 00 s 03 flesh-eating(a) 0 meat-eating(a) 0 zoophagous 0 002 & 00313387 a 0000 ;c 00015388 n 0000 | (of animals) carnivorous -00313836 00 s 01 piscivorous 0 001 & 00313387 a 0000 | feeding on fishes -00313911 00 s 02 predacious 0 predaceous 0 001 & 00313387 a 0000 | hunting and killing other animals for food -00314023 00 a 01 herbivorous 0 010 ! 00315109 a 0101 ! 00315383 a 0101 ! 00313387 a 0101 & 00314265 a 0000 & 00314390 a 0000 & 00314466 a 0000 & 00314559 a 0000 & 00314639 a 0000 & 00314794 a 0000 & 00314927 a 0000 | feeding only on plants -00314265 00 s 02 anthophagous 0 anthophilous 0 001 & 00314023 a 0000 | feeding on flowers; "some insects are anthophagous" -00314390 00 s 01 baccivorous 0 001 & 00314023 a 0000 | feeding on berries -00314466 00 s 02 carpophagous 0 fruit-eating(a) 0 001 & 00314023 a 0000 | feeding on fruit -00314559 00 s 01 grass-eating(a) 0 001 & 00314023 a 0000 | feeding on grasses -00314639 00 s 04 plant-eating(a) 0 phytophagic 0 phytophagous 0 phytophilous 0 002 & 00314023 a 0000 ;c 00015388 n 0000 | (of animals) feeding on plants -00314794 00 s 02 saprophagous 0 saprozoic 0 001 & 00314023 a 0000 | (of certain animals) feeding on dead or decaying animal matter -00314927 00 s 01 saprophytic 0 004 & 00314023 a 0000 ;c 00017222 n 0000 ;c 12992464 n 0000 + 13124164 n 0101 | (of some plants or fungi) feeding on dead or decaying organic matter -00315109 00 a 01 omnivorous 0 004 ! 00315383 a 0101 ! 00313387 a 0101 ! 00314023 a 0101 & 00315254 a 0000 | feeding on both plants and animals -00315254 00 s 01 all-devouring(a) 0 002 & 00315109 a 0000 ;c 00015388 n 0000 | (of animals) both plant-eating and flesh-eating -00315383 00 a 01 insectivorous 0 009 ;c 00015388 n 0000 ;c 00017222 n 0000 + 01324799 n 0101 + 01889074 n 0101 ! 00313387 a 0101 ! 00314023 a 0101 ! 00315109 a 0101 & 00315631 a 0000 & 00315702 a 0000 | (of animals and plants) feeding on insects -00315631 00 s 01 apivorous 0 001 & 00315383 a 0000 | feeding on bees -00315702 00 s 01 myrmecophagous 0 001 & 00315383 a 0000 | feeding on ants; "myrmecophagous squirrel" -00315805 00 a 01 holozoic 0 001 ! 00315931 a 0101 | obtaining nourishment as animals do by ingesting complex organic matter -00315931 00 a 01 holophytic 0 002 + 11530860 n 0101 ! 00315805 a 0101 | obtaining nourishment as green plants do -00316046 00 a 02 carpellate 0 pistillate 2 002 ;c 06066555 n 0000 ! 00316167 a 0101 | bearing or consisting of carpels -00316167 00 a 02 acarpelous 0 acarpellous 0 002 ;c 06066555 n 0000 ! 00316046 a 0101 | having no carpels -00316274 00 a 01 carpeted 0 001 ! 00316477 a 0101 | covered with or as if with carpeting or with carpeting as specified; often used in combination; "the carpeted hallway"; "a flower-carpeted hillside" -00316477 00 a 01 uncarpeted 0 001 ! 00316274 a 0101 | not carpeted; "bare uncarpeted floors" -00316572 00 a 01 carvel-built 0 003 ;c 04194289 n 0000 ! 00316827 a 0101 & 00316733 a 0000 | (of ships) built with flush (rather than overlapping) hull planks -00316733 00 s 01 flush-seamed 0 001 & 00316572 a 0000 | laid edge to edge (not overlapping) -00316827 00 a 06 clinker-built 0 clincher-built 0 lap-strake 0 lap-straked 0 lap-streak 0 lap-streaked 0 002 ;c 04194289 n 0000 ! 00316572 a 0101 | having overlapping hull planks -00317008 00 a 02 carved 0 carven 0 006 ;c 06364641 n 0000 ! 00317821 a 0101 & 00317310 a 0000 & 00317481 a 0000 & 00317629 a 0000 & 00317727 a 0000 | made for or formed by carving (`carven' is archaic or literary); "the carved fretwork"; "an intricately carved door"; "stood as if carven from stone" -00317310 00 s 05 engraved 0 etched 0 graven 1 incised 0 inscribed 0 001 & 00317008 a 0000 | cut or impressed into a surface; "an incised design"; "engraved invitations" -00317481 00 s 03 graven 2 sculpted 0 sculptured 0 001 & 00317008 a 0000 | cut into a desired shape; "graven images"; "sculptured representations" -00317629 00 s 01 lapidarian 0 001 & 00317008 a 0000 | inscribed on stone; "a lapidarian record" -00317727 00 s 01 sliced 0 001 & 00317008 a 0000 | used of meat; cut into pieces for serving -00317821 00 a 01 uncarved 0 001 ! 00317008 a 0101 | not carved -00317886 00 a 01 acatalectic 0 003 + 06348215 n 0101 ! 00318082 a 0101 ! 00318291 a 0101 | (verse) metrically complete; especially having the full number of syllables in the final metrical foot -00318082 00 a 01 catalectic 0 004 + 06348500 n 0101 + 07094355 n 0101 ! 00318291 a 0101 ! 00317886 a 0101 | (verse) metrically incomplete; especially lacking one or more syllables in the final metrical foot -00318291 00 a 01 hypercatalectic 0 003 + 06348685 n 0101 ! 00317886 a 0101 ! 00318082 a 0101 | (verse) having an extra syllable or syllables at the end of a metrically complete verse or in a metrical foot -00318498 00 a 01 cauline 0 002 ;c 06066555 n 0000 ! 00318667 a 0101 | especially of leaves; growing on a stem especially on the upper part of a stem; "cauline leaves" -00318667 00 a 02 radical 0 basal 2 003 ;c 06066555 n 0000 + 08511777 n 0201 ! 00318498 a 0101 | especially of leaves; located at the base of a plant or stem; especially arising directly from the root or rootstock or a root-like stem; "basal placentation"; "radical leaves" -00318942 00 a 01 censored 0 002 ! 00319262 a 0101 & 00319090 a 0000 | suppressed or subject to censorship; "the censored press in some countries" -00319090 00 s 01 expurgated 0 001 & 00318942 a 0000 | having material deleted; "at that time even Shakespeare was considered dangerous except in the expurgated versions" -00319262 00 a 01 uncensored 0 002 ! 00318942 a 0101 & 00319389 a 0000 | not subject to censorship; "uncensored news reports" -00319389 00 s 01 unexpurgated 0 001 & 00319262 a 0000 | not having material deleted; "volumes of the best plays, unexpurgated"- Havelock Ellis -00319534 00 a 02 caudate 0 caudated 0 013 ;c 06083243 n 0000 + 05497741 n 0102 ! 00320847 a 0101 & 00319851 a 0000 & 00319965 a 0000 & 00320064 a 0000 & 00320177 a 0000 & 00320255 a 0000 & 00320378 a 0000 & 00320456 a 0000 & 00320536 a 0000 & 00320614 a 0000 & 00320756 a 0000 | having a tail or taillike appendage -00319851 00 s 02 bobtail 0 bobtailed 0 001 & 00319534 a 0000 | having a short or shortened tail; "bobtail mare" -00319965 00 s 02 caudal 0 taillike 0 002 & 00319534 a 0000 + 05228264 n 0101 | resembling a tail -00320064 00 s 01 tailed 0 001 & 00319534 a 0000 | having a tail of a specified kind; often used in combination -00320177 00 s 01 scaly-tailed 0 001 & 00319534 a 0000 | having a scaly tail -00320255 00 s 01 scissor-tailed 0 001 & 00319534 a 0000 | (of birds) having a deeply forked tail; "scissor-tailed birds" -00320378 00 s 01 short-tailed 0 001 & 00319534 a 0000 | having a short tail -00320456 00 s 01 square-tailed 0 001 & 00319534 a 0000 | having a square tail -00320536 00 s 01 stiff-tailed 0 001 & 00319534 a 0000 | having a stiff tail -00320614 00 s 01 swallow-tailed 0 001 & 00319534 a 0000 | (especially of butterflies and birds) having a forked tail like that of a swallow -00320756 00 s 01 tail-shaped 0 001 & 00319534 a 0000 | shaped like the tail of an animal -00320847 00 a 02 acaudate 0 acaudal 0 003 ;c 06083243 n 0000 ! 00319534 a 0101 & 00320985 a 0000 | lacking a tail or taillike appendage -00320985 00 s 02 anurous 0 tailless 0 001 & 00320847 a 0000 | not having a tail; "anurous toads and frogs" -00321094 00 a 03 caulescent 0 cauline 4 stemmed 4 013 ;c 06066555 n 0000 ! 00322321 a 0101 & 00321444 a 0000 & 00321535 a 0000 & 00321614 a 0000 & 00321691 a 0000 & 00321770 a 0000 & 00321849 a 0000 & 00321928 a 0000 & 00322007 a 0000 & 00322084 a 0000 & 00322161 a 0000 & 00322242 a 0000 | (of plants) producing a well-developed stem above ground -00321444 00 s 01 cylindrical-stemmed 0 001 & 00321094 a 0000 | having a cylindrical stem -00321535 00 s 01 leafy-stemmed 0 001 & 00321094 a 0000 | having a leafy stem -00321614 00 s 01 multi-stemmed 0 001 & 00321094 a 0000 | having many stems -00321691 00 s 01 short-stemmed 0 001 & 00321094 a 0000 | having a short stem -00321770 00 s 01 spiny-stemmed 0 001 & 00321094 a 0000 | having a spiny stem -00321849 00 s 01 stout-stemmed 0 001 & 00321094 a 0000 | having a stout stem -00321928 00 s 01 thick-stemmed 0 001 & 00321094 a 0000 | having a thick stem -00322007 00 s 01 weak-stemmed 0 001 & 00321094 a 0000 | having a weak stem -00322084 00 s 01 wiry-stemmed 0 001 & 00321094 a 0000 | having a wiry stem -00322161 00 s 01 woolly-stemmed 0 001 & 00321094 a 0000 | having a woolly stem -00322242 00 s 01 woody-stemmed 0 001 & 00321094 a 0000 | having a woody stem -00322321 00 a 02 acaulescent 0 stemless 4 002 ;c 06066555 n 0000 ! 00321094 a 0101 | (of plants) having no apparent stem above ground -00322457 00 a 01 causative 0 016 + 01645601 v 0101 + 00770437 v 0103 ! 00325197 a 0101 & 00322844 a 0000 & 00322938 a 0000 & 00323047 a 0000 & 00323199 a 0000 & 00323426 a 0000 & 00323796 a 0000 & 00323873 a 0000 & 00324013 a 0000 & 00324195 a 0000 & 00324481 a 0000 & 00324680 a 0000 & 00324878 a 0000 & 00325069 a 0000 | producing an effect; "poverty as a causative factor in crime" -00322844 00 s 01 abortifacient 0 002 & 00322457 a 0000 + 02667906 n 0101 | causing abortion -00322938 00 s 02 activating(a) 0 actuating(a) 0 001 & 00322457 a 0000 | causing motion or action or change -00323047 00 s 02 anorectic 0 anorexigenic 0 002 & 00322457 a 0000 + 14055796 n 0101 | causing loss of appetite; "an anorectic (or anorexigenic) drug" -00323199 00 s 01 causal 0 005 & 00322457 a 0000 + 07326557 n 0101 + 06740402 n 0101 + 00007347 n 0102 + 13780606 n 0101 | involving or constituting a cause; causing; "a causal relationship between scarcity and higher prices" -00323426 00 s 05 conducive 0 contributing(a) 0 contributive 0 contributory 0 tributary 0 004 & 00322457 a 0000 + 02555908 v 0401 + 02555908 v 0301 + 02555908 v 0103 | tending to bring about; being partly responsible for; "working conditions are not conducive to productivity"; "the seaport was a contributing factor in the growth of the city"; "a contributory factor" -00323796 00 s 01 errhine 0 001 & 00322457 a 0000 | causing nasal discharge -00323873 00 s 01 fast 0 001 & 00322457 a 0000 | (of a photographic lens or emulsion) causing a shortening of exposure time; "a fast lens" -00324013 00 s 02 inductive 0 inducive 0 003 & 00322457 a 0000 + 01644050 v 0201 + 00770437 v 0201 | inducing or influencing; leading on; "inductive to the sin of Eve"- John Milton -00324195 00 s 03 motivative(a) 0 motive(a) 2 motivating 0 004 & 00322457 a 0000 + 00070641 n 0302 + 00023773 n 0202 + 01649999 v 0101 | impelling to action; "it may well be that ethical language has primarily a motivative function"- Arthur Pap; "motive pleas"; "motivating arguments" -00324481 00 s 02 motive(a) 0 motor 0 004 & 00322457 a 0000 + 09359631 n 0201 + 03789946 n 0201 + 04773596 n 0103 | causing or able to cause motion; "a motive force"; "motive power"; "motor energy" -00324680 00 s 01 precipitating(a) 0 001 & 00322457 a 0000 | bringing on suddenly or abruptly; "the completion of the railroad was the precipitating cause in the extinction of waterborne commerce" -00324878 00 s 02 responsible 0 responsible_for(p) 0 001 & 00322457 a 0000 | being the agent or cause; "determined who was the responsible party"; "termites were responsible for the damage" -00325069 00 s 02 sternutatory 0 sternutative 0 001 & 00322457 a 0000 | causing sneezing; "pepper is a sternutatory substance" -00325197 00 a 02 noncausative 0 noncausal 0 001 ! 00322457 a 0101 | not causative -00325281 00 a 01 cautious 0 011 ^ 00309021 a 0000 ^ 00066800 a 0000 + 07944900 n 0102 + 05615869 n 0101 + 04664058 n 0102 ! 00326436 a 0101 & 00325619 a 0000 & 00325840 a 0000 & 00325995 a 0000 & 00326202 a 0000 & 00326296 a 0000 | showing careful forethought; "reserved and cautious; never making swift decisions"; "a cautious driver" -00325619 00 s 03 cagey 0 cagy 0 chary 0 002 & 00325281 a 0000 + 04664413 n 0302 | characterized by great caution and wariness; "a cagey avoidance of a definite answer"; "chary of the risks involved"; "a chary investor" -00325840 00 s 01 fabian 0 001 & 00325281 a 0000 | using cautious slow strategy to wear down opposition; avoiding direct confrontation; "a fabian policy" -00325995 00 s 01 gingerly 0 001 & 00325281 a 0000 | with extreme care or delicacy; "they proceeded with gingerly footwork over the jagged stones"; "the issue was handled only in a gingerly way"- W.S.White -00326202 00 s 02 guarded 0 restrained 0 001 & 00325281 a 0000 | prudent; "guarded optimism" -00326296 00 s 01 overcautious 0 001 & 00325281 a 0000 | unnecessarily cautious; "sometimes it doesn't pay to be overcautious in business" -00326436 00 a 01 incautious 0 004 ^ 00065791 a 0000 ^ 00311663 a 0000 ! 00325281 a 0101 & 00326608 a 0000 | lacking in caution; "an incautious remark"; "incautious talk" -00326608 00 s 06 hotheaded 0 impulsive 0 impetuous 0 madcap 0 tearaway(a) 0 brainish 0 005 & 00326436 a 0000 ;u 07073447 n 0000 + 04662730 n 0301 + 04662730 n 0302 + 04662504 n 0201 | characterized by undue haste and lack of thought or deliberation; "a hotheaded decision"; "liable to such impulsive acts as hugging strangers"; "an impetuous display of spending and gambling"; "madcap escapades"; (`brainish' is archaic) -00327031 00 a 01 cellular 0 011 ;c 00004475 n 0000 + 08358594 n 0101 + 02991711 n 0101 + 00006484 n 0101 + 14061462 n 0101 ! 00328128 a 0101 & 00327541 a 0000 & 00327690 a 0000 & 00327857 a 0000 & 00327930 a 0000 & 00328017 a 0000 | characterized by or divided into or containing cells or compartments (the smallest organizational or structural unit of an organism or organization); "the cellular construction of a beehive"; "any effective opposition to a totalitarian regime must be secretive and cellular" -00327541 00 s 03 cancellate 0 cancellated 0 cancellous 0 002 & 00327031 a 0000 ;c 06057539 n 0000 | having an open or latticed or porous structure -00327690 00 s 05 alveolate 0 faveolate 0 cavitied 0 honeycombed 0 pitted 0 002 & 00327031 a 0000 + 05528395 n 0101 | pitted with cell-like cavities (as a honeycomb) -00327857 00 s 01 cell-like 0 001 & 00327031 a 0000 | resembling a cell -00327930 00 s 01 lymphoblast-like 0 001 & 00327031 a 0000 | resembling a lymphoblast -00328017 00 s 01 multicellular 0 001 & 00327031 a 0000 | consisting of many cells; "multicellular organisms" -00328128 00 a 02 noncellular 0 acellular 0 003 ! 00327031 a 0101 & 00328270 a 0000 & 00328401 a 0000 | not made up of or divided into cells -00328270 00 s 01 cell-free 0 001 & 00328128 a 0000 | lacking cells; "cell-free systems"; "a cell-free homogenate of the thyroid" -00328401 00 s 02 single-celled 0 one-celled 0 001 & 00328128 a 0000 | having a single cell (and thus not divided into cells) -00328528 00 a 01 coherent 1 002 ! 00328653 a 0101 ;c 06090869 n 0101 | (physics) of waves having a constant phase relation -00328653 00 a 01 incoherent 1 002 ! 00328528 a 0101 ;c 06090869 n 0101 | (physics) of waves having no stable definite or stable phase relation -00328798 00 a 01 compartmented 0 002 ! 00329268 a 0101 & 00329034 a 0000 | divided up or separated into compartments or isolated units; "a compartmented box"; "the protected and compartmented society of Beacon Hill"- John Mason Brown -00329034 00 s 03 compartmental 0 compartmentalized 0 compartmentalised 0 003 & 00328798 a 0000 + 00483801 v 0101 + 03079741 n 0101 | divided up into compartments or categories; "most sciences have become woefully compartmentalized" -00329268 00 a 01 uncompartmented 0 001 ! 00328798 a 0101 | not compartmented; not divided into compartments or isolated units -00329396 00 a 02 porous 0 poriferous 0 006 + 13912115 n 0201 + 05245906 n 0201 + 05245906 n 0101 + 04940146 n 0101 ! 00329695 a 0101 & 00329585 a 0000 | full of pores or vessels or holes -00329585 00 s 01 porose 0 001 & 00329396 a 0000 | forming a continuous series of pores; "a porose hymenium" -00329695 00 a 01 nonporous 0 001 ! 00329396 a 0101 | not porous; especially not having vessels that appear as pores; "nonporous wood" -00329831 00 a 01 central 1 015 + 02994858 n 0101 + 08523483 n 0101 + 08521816 n 0101 + 05078025 n 0101 ! 00331446 a 0101 & 00330219 a 0000 & 00330322 a 0000 & 00330396 a 0000 & 00330506 a 0000 & 00330644 a 0000 & 00330728 a 0000 & 00330904 a 0000 & 00331030 a 0000 & 00331167 a 0000 & 00331259 a 0000 | in or near a center or constituting a center; the inner area; "a central position" -00330219 00 s 01 amidship 0 001 & 00329831 a 0000 | located in the middle part of a ship or aircraft -00330322 00 s 01 bicentric 0 001 & 00329831 a 0000 | having two centers -00330396 00 s 01 bifocal 0 002 & 00329831 a 0000 ;c 06100778 n 0000 | having two foci; "bifocal eyeglasses" -00330506 00 s 04 center(a) 0 halfway 0 middle(a) 1 midway 0 002 & 00329831 a 0000 + 08521816 n 0101 | equally distant from the extremes -00330644 00 s 01 centered 0 001 & 00329831 a 0000 | being or placed in the center -00330728 00 s 02 centric 0 centrical 0 005 & 00329831 a 0000 + 08523483 n 0201 + 08521816 n 0201 + 08523483 n 0101 + 08521816 n 0101 | having or situated at or near a center -00330904 00 s 01 focal 0 001 & 00329831 a 0000 | having or localized centrally at a focus; "focal point"; "focal infection" -00331030 00 s 02 median 0 medial 0 002 & 00329831 a 0000 + 13920169 n 0201 | relating to or situated in or extending toward the middle -00331167 00 s 02 middlemost 0 midmost 0 001 & 00329831 a 0000 | being in the exact middle -00331259 00 s 01 nuclear 0 001 & 00329831 a 0000 | constituting or like a nucleus; "annexation of the suburban fringe by the nuclear metropolis"; "the nuclear core of the congregation" -00331446 00 a 01 peripheral 0 006 + 13903576 n 0101 ! 00329831 a 0101 & 00331716 a 0000 & 00331889 a 0000 & 00332091 a 0000 & 00332269 a 0000 | on or near an edge or constituting an outer boundary; the outer area; "Russia's peripheral provinces"; "peripheral suburbs" -00331716 00 s 01 circumferential 0 002 & 00331446 a 0000 + 08514592 n 0101 | lying around or just outside the edges or outskirts; "circumferential highways around cities" -00331889 00 s 02 fringy 0 marginal 0 005 & 00331446 a 0000 + 13903387 n 0201 + 05078147 n 0201 + 13903576 n 0102 + 03397762 n 0101 | at or constituting a border or edge; "the marginal strip of beach" -00332091 00 s 02 encircling(a) 0 skirting(a) 0 001 & 00331446 a 0000 | being all around the edges; enclosing; "his encircling arms"; "the room's skirting board needs painting" -00332269 00 s 01 off-base 0 001 & 00331446 a 0000 | located outside a military base; "off-base housing" -00332375 00 a 01 centrifugal 0 003 ! 00332869 a 0101 & 00332524 a 0000 & 00332723 a 0000 | tending to move away from a center; "centrifugal force" -00332524 00 s 01 outward-developing 0 002 & 00332375 a 0000 ;c 06066555 n 0000 | away from an axis, as in a flower cluster in which the oldest flowers are in the center, the youngest near the edge -00332723 00 s 01 outward-moving 0 001 & 00332375 a 0000 | moving or directed away from center, especially when spinning or traveling in a curve -00332869 00 a 01 centripetal 0 003 ! 00332375 a 0101 & 00333015 a 0000 & 00333197 a 0000 | tending to move toward a center; "centripetal force" -00333015 00 s 01 inward-developing 0 002 & 00332869 a 0000 ;c 06066555 n 0000 | toward an axis, as in a sunflower; the oldest flowers are near the edge, the youngest in the center -00333197 00 s 01 inward-moving 0 001 & 00332869 a 0000 | moving or directed toward the center or axis, especially when spinning or traveling in a curve -00333351 00 a 01 afferent 0 005 ;c 06080522 n 0000 + 05475134 n 0103 ! 00333987 a 0101 & 00333611 a 0000 & 00333824 a 0000 | of nerves and nerve impulses; conveying sensory information from the sense organs to the CNS; "afferent nerves"; "afferent impulses" -00333611 00 s 03 centripetal 0 receptive 0 sensory(a) 0 002 & 00333351 a 0000 + 02107248 v 0202 | of a nerve fiber or impulse originating outside and passing toward the central nervous system; "sensory neurons" -00333824 00 s 02 corticoafferent 0 corticipetal 0 001 & 00333351 a 0000 | of a nerve fiber or impulse originating outside and passing toward the cerebral cortex -00333987 00 a 02 efferent 0 motorial 0 006 ;c 06080522 n 0000 + 05474738 n 0103 ! 00333351 a 0101 & 00334245 a 0000 & 00334379 a 0000 & 00334555 a 0000 | of nerves and nerve impulses; conveying information away from the CNS; "efferent nerves and impulses" -00334245 00 s 02 centrifugal 0 motor(a) 0 001 & 00333987 a 0000 | conveying information to the muscles from the CNS; "motor nerves" -00334379 00 s 03 corticoefferent 0 corticofugal 0 corticifugal 0 001 & 00333987 a 0000 | of a nerve fiber passing outward from the cerebral cortex; "corticofugal discharges" -00334555 00 s 01 neuromotor 0 001 & 00333987 a 0000 | relating to a nerve fiber or impulse passing toward motor effectors; "neuromotor impulses" -00334702 00 a 02 centralizing(a) 0 centralising(a) 0 003 ! 00335090 a 0101 & 00334852 a 0000 & 00334940 a 0000 | tending to draw to a central point -00334852 00 s 02 centripetal 0 unifying(a) 0 001 & 00334702 a 0000 | tending to unify -00334940 00 s 02 consolidative 0 integrative 0 004 & 00334702 a 0000 + 00466651 v 0201 + 00242747 v 0101 + 00242580 v 0101 | tending to consolidate -00335090 00 a 02 decentralizing(a) 0 decentralising(a) 0 002 ! 00334702 a 0101 & 00335225 a 0000 | tending away from a central point -00335225 00 s 01 centrifugal 0 001 & 00335090 a 0000 | tending away from centralization, as of authority; "the division of Europe into warring blocs produces ever-increasing centrifugal stress" -00335421 00 a 01 certain(p) 1 005 = 04753455 n 0000 ! 00336168 a 0101 & 00335768 a 0000 & 00335895 a 0000 & 00336041 a 0000 | established beyond doubt or question; definitely known; "what is certain is that every effect must have a cause"; "it is certain that they were on the bus"; "his fate is certain"; "the date for the invasion is certain" -00335768 00 s 01 definite 0 002 & 00335421 a 0000 + 04754237 n 0102 | known for certain; "it is definite that they have won" -00335895 00 s 02 indisputable 0 sure 2 002 & 00335421 a 0000 + 04754862 n 0101 | impossible to doubt or dispute; "indisputable (or sure) proof" -00336041 00 s 01 sure_as_shooting 0 001 & 00335421 a 0000 | absolutely certain; "it is sure as shooting that they will come" -00336168 00 a 01 uncertain 1 006 ^ 00740336 a 0000 = 04753455 n 0000 + 04756887 n 0102 ! 00335421 a 0101 & 00336564 a 0000 & 00336724 a 0000 | not established beyond doubt; still undecided or unknown; "an uncertain future"; "a manuscript of uncertain origin"; "plans are still uncertain"; "changes of great if uncertain consequences"; "without further evidence his story must remain uncertain" -00336564 00 s 01 indefinite 0 002 & 00336168 a 0000 + 04757864 n 0101 | not decided or not known; "were indefinite about their plans"; "plans are indefinite" -00336724 00 s 01 up_in_the_air 0 001 & 00336168 a 0000 | very uncertain; "left everything up in the air" -00336831 00 a 02 certain(p) 2 sure 0 006 = 05697135 n 0000 = 05697363 n 0000 + 05697363 n 0206 ! 00337404 a 0202 ! 00337404 a 0101 & 00337172 a 0000 | having or feeling no doubt or uncertainty; confident and assured; "felt certain of success"; "was sure (or certain) she had seen it"; "was very sure in his beliefs"; "sure of her friends" -00337172 00 s 03 convinced(p) 0 positive(p) 0 confident(p) 0 001 & 00336831 a 0000 | persuaded of; very sure; "were convinced that it would be to their advantage to join"; "I am positive he is lying"; "was confident he would win" -00337404 00 a 03 uncertain 2 unsure 0 incertain 0 008 = 05697135 n 0000 = 05697363 n 0000 ! 00336831 a 0202 + 04756887 n 0102 ! 00336831 a 0101 & 00337841 a 0000 & 00338013 a 0000 & 00338275 a 0000 | lacking or indicating lack of confidence or assurance; "uncertain of his convictions"; "unsure of himself and his future"; "moving with uncertain (or unsure) steps"; "an uncertain smile"; "touched the ornaments with uncertain fingers" -00337841 00 s 01 ambivalent 0 002 & 00337404 a 0000 + 07483305 n 0101 | uncertain or unable to decide about what course to follow; "was ambivalent about having children" -00338013 00 s 02 doubtful 0 dubious 0 003 & 00337404 a 0000 + 05698247 n 0206 + 05698247 n 0105 | fraught with uncertainty or doubt; "they were doubtful that the cord would hold"; "it was doubtful whether she would be admitted"; "dubious about agreeing to go" -00338275 00 s 01 groping 0 001 & 00337404 a 0000 | acting with uncertainty or hesitance or lack of confidence; "a groping effort to understand" -00338421 00 a 01 convinced 0 001 ! 00338551 a 0101 | having a strong belief or conviction; "a convinced and fanatical pacifist" -00338551 00 a 01 unconvinced 0 002 ! 00338421 a 0101 & 00338669 a 0000 | lacking conviction; "I remain unconvinced" -00338669 00 s 01 dubious 0 002 & 00338551 a 0000 + 05698247 n 0106 | not convinced; "they admitted the force of my argument but remained dubious" -00338817 00 a 01 confident 0 008 = 07526505 n 0000 + 14483744 n 0101 + 05697363 n 0103 ! 00339941 a 0101 & 00339157 a 0000 & 00339288 a 0000 & 00339599 a 0000 & 00339742 a 0000 | having or marked by confidence or assurance; "a confident speaker"; "a confident reply"; "his manner is more confident these days"; "confident of fulfillment" -00339157 00 s 01 assured 0 001 & 00338817 a 0000 | marked by assurance; exhibiting confidence; "she paints with an assured hand" -00339288 00 s 03 cocksure 0 overconfident 0 positive 0 004 & 00338817 a 0000 + 05166805 n 0302 + 05697789 n 0203 + 05697789 n 0102 | marked by excessive confidence; "an arrogant and cocksure materialist"; "so overconfident and impudent as to speak to the queen"; "the less he knows the more positive he gets" -00339599 00 s 01 reassured 0 001 & 00338817 a 0000 | having confidence restored; freed from anxiety; "reassured by her praise he pressed on" -00339742 00 s 02 self-assured 0 self-confident 0 002 & 00338817 a 0000 + 05697363 n 0204 | showing poise and confidence in your own worth; "hardly more than a boy but firm-knit and self-confident" -00339941 00 a 04 diffident 0 shy 0 timid 9 unsure 7 005 = 07526505 n 0000 + 07522729 n 0302 + 07523180 n 0201 + 07523286 n 0101 ! 00338817 a 0101 | lacking self-confidence; "stood in the doorway diffident and abashed"; "problems that call for bold not timid responses"; "a very unsure young man" -00340239 00 a 02 certain 3 sure 4 006 ^ 01841544 a 0000 ! 00341405 a 0101 & 00340626 a 0000 & 00340827 a 0000 & 00341017 a 0000 & 00341292 a 0000 | certain to occur; destined or inevitable; "he was certain to fail"; "his fate is certain"; "In this life nothing is certain but death and taxes"- Benjamin Franklin; "he faced certain death"; "sudden but sure regret"; "he is sure to win" -00340626 00 s 02 bound(p) 1 destined 0 001 & 00340239 a 0000 | (usually followed by `to') governed by fate; "bound to happen"; "an old house destined to be demolished"; "he is destined to be famous" -00340827 00 s 02 doomed 0 fated 0 001 & 00340239 a 0000 | (usually followed by `to') determined by tragic fate; "doomed to unhappiness"; "fated to be the scene of Kennedy's assassination" -00341017 00 s 03 foreordained 0 predestinate 0 predestined 0 001 & 00340239 a 0000 | established or prearranged unalterably; "his place in history was foreordained"; "a sense of predestinate inevitability about it"; "it seemed predestined since the beginning of the world" -00341292 00 s 01 in_for(p) 0 001 & 00340239 a 0000 | certain to get or have; "he knew he was in for a licking" -00341405 00 a 01 uncertain 3 006 ^ 01842001 a 0000 + 04756887 n 0102 ! 00340239 a 0101 & 00341655 a 0000 & 00341933 a 0000 & 00342139 a 0000 | not certain to occur; not inevitable; "everything is uncertain about the army"; "the issue is uncertain" -00341655 00 s 04 chancy 0 fluky 0 flukey 0 iffy 0 004 & 00341405 a 0000 ;u 07075172 n 0000 + 11463746 n 0302 + 11463746 n 0202 | subject to accident or chance or change; "a chancy appeal at best"; "getting that job was definitely fluky"; "a fluky wind"; "an iffy proposition" -00341933 00 s 01 contingent 0 002 & 00341405 a 0000 + 14001973 n 0101 | uncertain because of uncontrollable circumstances; "the results of confession were not contingent, they were certain"- George Eliot -00342139 00 s 01 up_in_the_air 0 001 & 00341405 a 0000 | not yet determined; "plans are still up in the air" -00342250 00 a 01 certified 0 006 ^ 00786291 a 0000 ^ 00178575 a 0000 ! 00342902 a 0101 & 00342488 a 0000 & 00342626 a 0000 & 00342755 a 0000 | endorsed authoritatively as having met certain requirements; "a certified public accountant" -00342488 00 s 01 certifiable 0 002 & 00342250 a 0000 + 02447793 v 0101 | capable of being guaranteed or certified; "a certifiable fact" -00342626 00 s 01 certificated 0 001 & 00342250 a 0000 | furnished with or authorized by a certificate: "certificated teachers" -00342755 00 s 01 credentialled 0 001 & 00342250 a 0000 | certified as professional by evidence or testimonials; "credentialled day care workers" -00342902 00 a 01 uncertified 0 001 ! 00342250 a 0101 | lacking requisite official documentation or endorsement -00343015 00 a 01 inevitable 0 006 + 04754056 n 0102 + 04754056 n 0101 ! 00343700 a 0101 & 00343226 a 0000 & 00343360 a 0000 & 00343552 a 0000 | incapable of being avoided or prevented; "the inevitable result" -00343226 00 s 02 fatal 0 fateful 0 001 & 00343015 a 0000 | controlled or decreed by fate; predetermined; "a fatal series of events" -00343360 00 s 03 ineluctable 0 inescapable 0 unavoidable 0 001 & 00343015 a 0000 | impossible to avoid or evade:"inescapable conclusion"; "an ineluctable destiny"; "an unavoidable accident" -00343552 00 s 01 necessary 0 001 & 00343015 a 0000 | unavoidably determined by prior circumstances; "the necessary consequences of one's actions" -00343700 00 a 04 evitable 0 avoidable 0 avertible 0 avertable 0 004 + 02453321 v 0406 + 02453321 v 0306 + 02453321 v 020a ! 00343015 a 0101 | capable of being avoided or warded off -00343883 00 a 01 preventable 0 001 ! 00344024 a 0101 | capable of being prevented; "conscious of preventable human suffering"- A.L.Guerard -00344024 00 a 01 unpreventable 0 001 ! 00343883 a 0101 | not preventable; "unpreventable hysteria" -00344125 00 a 02 changeable 0 changeful 0 021 ^ 00917613 a 0000 ^ 00583990 a 0000 = 04733640 n 0000 + 04734885 n 0202 + 04733640 n 0101 ! 00346991 a 0101 & 00344686 a 0000 & 00344816 a 0000 & 00344890 a 0000 & 00345005 a 0000 & 00345189 a 0000 & 00345494 a 0000 & 00345694 a 0000 & 00345860 a 0000 & 00345949 a 0000 & 00346103 a 0000 & 00346246 a 0000 & 00346368 a 0000 & 00346527 a 0000 & 00346626 a 0000 & 00346847 a 0000 | such that alteration is possible; having a marked tendency to change; "changeable behavior"; "changeable moods"; "changeable prices" -00344686 00 s 01 adjustable 0 002 & 00344125 a 0000 + 00296178 v 0101 | capable of being regulated; "adjustable interest rates" -00344816 00 s 01 astatic 0 001 & 00344125 a 0000 | not static or stable -00344890 00 s 01 checkered 0 001 & 00344125 a 0000 | marked by changeable fortune; "a checkered business career" -00345005 00 s 01 distortable 0 001 & 00344125 a 0000 | capable of having the meaning altered or twisted; "our words are distortable things--as in a crooked mirror held up to nature" -00345189 00 s 04 erratic 0 fickle 0 mercurial 0 quicksilver(a) 0 002 & 00344125 a 0000 + 04879092 n 0203 | liable to sudden unpredictable change; "erratic behavior"; "fickle weather"; "mercurial twists of temperament"; "a quicksilver character, cool and willful at one moment, utterly fragile the next" -00345494 00 s 02 fluid 0 unstable 0 002 & 00344125 a 0000 + 04734272 n 0102 | subject to change; variable; "a fluid situation fraught with uncertainty"; "everything was unstable following the coup" -00345694 00 s 02 fluid 2 mobile 1 001 & 00344125 a 0000 | affording change (especially in social status); "Britain is not a truly fluid society"; "upwardly mobile" -00345860 00 s 01 jittering 0 001 & 00344125 a 0000 | undergoing small rapid variations -00345949 00 s 02 kaleidoscopic 0 kaleidoscopical 0 003 & 00344125 a 0000 + 05931827 n 0201 + 05931827 n 0101 | continually shifting or rapidly changing -00346103 00 s 01 mobile 2 001 & 00344125 a 0000 | capable of changing quickly from one state or condition to another; "a highly mobile face" -00346246 00 s 01 open-ended 0 001 & 00344125 a 0000 | allowing for future changes or revisions; "open-ended agreements" -00346368 00 s 01 quick-change(a) 0 001 & 00344125 a 0000 | adept at changing from one thing to another especially changing costumes; "a quick-change artist" -00346527 00 s 01 quick-drying 0 001 & 00344125 a 0000 | of a liquid substance that dries quickly -00346626 00 s 01 reversible 0 004 & 00344125 a 0000 ;c 06084469 n 0000 ;c 06090869 n 0000 + 04734551 n 0101 | capable of assuming or producing either of two states; "a reversible chemical reaction"; "a reversible cell" -00346847 00 s 01 volatile 0 002 & 00344125 a 0000 + 04866671 n 0101 | tending to vary often or widely; "volatile stocks"; "volatile emotions" -00346991 00 a 01 unchangeable 0 011 ^ 00583239 a 0000 ^ 01754421 a 0000 = 04733640 n 0000 + 04737934 n 0103 + 04737934 n 0102 ! 00344125 a 0101 & 00347400 a 0000 & 00347571 a 0000 & 00347707 a 0000 & 00347880 a 0000 & 00348018 a 0000 | not changeable or subject to change; "a fixed and unchangeable part of the germ plasm"-Ashley Montagu; "the unchangeable seasons"; "one of the unchangeable facts of life" -00347400 00 s 02 changeless 0 unalterable 0 004 & 00346991 a 0000 + 04740655 n 0202 + 04742084 n 0201 + 04737934 n 0101 | remaining the same for indefinitely long times -00347571 00 s 01 confirmed 0 001 & 00346991 a 0000 | of persons; not subject to change; "a confirmed bachelor"; "a confirmed invalid" -00347707 00 s 02 fixed 0 frozen 0 002 & 00346991 a 0000 + 04777098 n 0103 | incapable of being changed or moved or undone; e.g. "frozen prices"; "living on fixed incomes" -00347880 00 s 02 set_in_stone 0 carved_in_stone 0 001 & 00346991 a 0000 | no longer changeable; "the agreement is not yet set in stone" -00348018 00 s 03 static 0 stable 0 unchanging 0 004 & 00346991 a 0000 + 04737934 n 0304 + 04778401 n 0202 + 04738641 n 0202 | showing little if any change; "a static population" -00348198 00 a 01 commutable 0 003 ! 00348808 a 0101 & 00348380 a 0000 & 00348537 a 0000 | subject to alteration or change; "the death sentence was commutable to life imprisonment" -00348380 00 s 01 alterable 0 002 & 00348198 a 0000 ;c 08441203 n 0000 | (of the punishment ordered by a court) capable of being changed to one less severe -00348537 00 s 04 convertible 0 transformable 0 translatable 0 transmutable 0 003 & 00348198 a 0000 + 04734145 n 0402 + 00114837 v 0101 | capable of being changed in substance as if by alchemy; "is lead really transmutable into gold?"; "ideas translatable into reality" -00348808 00 a 01 incommutable 0 003 ! 00348198 a 0101 & 00348938 a 0000 & 00349148 a 0000 | not subject to alteration or change -00348938 00 s 02 inconvertible 0 untransmutable 0 001 & 00348808 a 0000 | not capable of being changed into something else; "the alchemists were unable to accept the inconvertible nature of elemental metals" -00349148 00 s 01 unalterable 0 002 & 00348808 a 0000 ;c 08441203 n 0000 | of a sentence; that cannot be changed; "an unalterable death sentence" -00349295 00 a 01 alterable 0 004 + 01667132 v 0101 + 00126264 v 0102 + 04741530 n 0101 ! 00349523 a 0101 | capable of being changed or altered in some characteristic; "alterable clothing"; "alterable conditions of employment" -00349523 00 a 02 unalterable 0 inalterable 0 005 + 04740655 n 0102 + 04742084 n 0101 ! 00349295 a 0101 & 00349759 a 0000 & 00349894 a 0000 | not capable of being changed or altered; "unalterable resolve"; "an unalterable ground rule" -00349759 00 s 01 incurable 0 002 & 00349523 a 0000 + 04742251 n 0101 | unalterable in disposition or habits; "an incurable optimist" -00349894 00 s 02 final 0 last 0 002 & 00349523 a 0000 + 04754440 n 0101 | not to be altered or undone; "the judge's decision is final"; "the arbiter will have the last say" -00350069 00 a 01 modifiable 0 003 + 00126264 v 0103 + 00169806 v 0101 ! 00350384 a 0101 | capable of being modified in form or character or strength (especially by making less extreme); "the rhythm of physiological time is not modifiable except by interference with certain fundamental processes" - Alexis Carrel -00350384 00 a 01 unmodifiable 0 001 ! 00350069 a 0101 | incapable of being modified in form or character or strength (especially by making less extreme); "these variations from custom are illogical, incomprehensible, and unmodifiable" -00350621 00 a 01 adjusted 0 003 ! 00351226 a 0101 & 00350876 a 0000 & 00351012 a 0000 | altered to accommodate to certain requirements or bring into a proper relation; "an adjusted insurance claim"; "the car runs more smoothly with the timing adjusted" -00350876 00 s 01 focused 0 001 & 00350621 a 0000 | of an optical system (e.g. eye or opera glasses) adjusted to produce a clear image -00351012 00 s 01 weighted 0 001 & 00350621 a 0000 | adjusted to reflect value or proportion; "votes weighted according to the size of constituencies"; "a law weighted in favor of landlords"; "a weighted average" -00351226 00 a 01 unadjusted 0 002 ! 00350621 a 0101 & 00351420 a 0000 | not altered to fit certain requirements; "an unadjusted figure of 8.5 percent"; "the unadjusted clock is running fast"; -00351420 00 s 01 maladjusted 0 001 & 00351226 a 0000 | not well adjusted; "a maladjusted carburetor" -00351523 00 a 01 adjusted 2 003 ;c 06136258 n 0000 ! 00351818 a 0101 & 00351679 a 0000 | adjusted to demands of daily living; showing emotional stability -00351679 00 s 02 well-adjusted 0 well-balanced 0 001 & 00351523 a 0000 | free from psychological disorder; "a well-adjusted personality" -00351818 00 a 01 maladjusted 0 003 ;c 06136258 n 0000 ! 00351523 a 0101 & 00351991 a 0000 | poorly adjusted to demands and stresses of daily living; "a maladjusted child" -00351991 00 s 02 unadapted 0 unadjusted 0 001 & 00351818 a 0000 | not having adapted to new conditions; "several unadjusted refugees" -00352127 00 a 01 altered 0 006 ! 00353206 a 0101 & 00352536 a 0000 & 00352716 a 0000 & 00352877 a 0000 & 00353001 a 0000 & 00353101 a 0000 | changed in form or character without becoming something else; "the altered policy promised success"; "following an altered course we soon found ourselves back in civilization"; "he looked...with clouded eyes and with an altered manner of breathing"- Charles Dickens -00352536 00 s 01 adjusted 0 001 & 00352127 a 0000 | (especially of garments) having the fit or style adjusted; "for my wedding I had my mother's wedding dress altered to fit me" -00352716 00 s 01 changed 0 001 & 00352127 a 0000 | made or become different in some respect; "he's an altered (or changed) man since his election to Congress" -00352877 00 s 02 emended 0 edited 0 001 & 00352127 a 0000 | improved or corrected by critical editing; "the emended text" -00353001 00 s 01 paraphrastic 0 002 & 00352127 a 0000 + 06429316 n 0101 | altered by paraphrasing -00353101 00 s 01 revised 0 001 & 00352127 a 0000 | improved or brought up to date; "a revised edition" -00353206 00 a 02 unaltered 0 unchanged 4 006 ! 00352127 a 0101 & 00353431 a 0000 & 00353604 a 0000 & 00353812 a 0000 & 00353889 a 0000 & 00353969 a 0000 | remaining in an original state; "persisting unaltered through time" -00353431 00 s 02 dateless 0 timeless 0 002 & 00353206 a 0000 + 13956905 n 0202 | unaffected by time; "few characters are so dateless as Hamlet"; "Helen's timeless beauty" -00353604 00 s 02 in-situ 0 unmoved 0 001 & 00353206 a 0000 | being in the original position; not having been moved; "the archeologists could date the vase because it was in-situ"; "an in-situ investigator" -00353812 00 s 01 unedited 0 001 & 00353206 a 0000 | not changed by editing -00353889 00 s 01 unreduced 0 001 & 00353206 a 0000 | not altered by reduction -00353969 00 s 01 unrevised 0 001 & 00353206 a 0000 | not improved or brought up to date; "the book is still unrevised" -00354090 00 a 01 amended 0 002 ! 00354330 a 0101 & 00354176 a 0000 | of legislation -00354176 00 s 01 revised 0 001 & 00354090 a 0000 | altered or revised by rephrasing or by adding or deleting material; "the amended bill passed easily" -00354330 00 a 01 unamended 0 002 ;c 06535222 n 0000 ! 00354090 a 0101 | (of legislation) not amended -00354433 00 a 01 changed 0 005 ! 00355258 a 0101 & 00354692 a 0000 & 00354833 a 0000 & 00354934 a 0000 & 00355083 a 0000 | made or become different in nature or form; "changed attitudes"; "changed styles of dress"; "a greatly changed country after the war" -00354692 00 s 03 denatured 0 denaturized 0 denaturised 0 001 & 00354433 a 0000 | changed in nature or natural quality; "denatured alcohol" -00354833 00 s 01 exchanged 0 001 & 00354433 a 0000 | changed for (replaced by) something different -00354934 00 s 01 transformed 0 001 & 00354433 a 0000 | given a completely different form or appearance; "shocked to see the transformed landscape" -00355083 00 s 01 varied 0 002 & 00354433 a 0000 + 04735556 n 0101 | broken away from sameness or identity or duplication; "her quickly varied answers indicated uncertainty" -00355258 00 a 01 unchanged 0 004 ^ 02507968 a 0000 ! 00354433 a 0101 & 00355453 a 0000 & 00355611 a 0000 | not made or become different; "the causes that produced them have remained unchanged" -00355453 00 s 01 idempotent 0 002 & 00355258 a 0000 ;c 06000644 n 0000 | unchanged in value following multiplication by itself; "this matrix is idempotent" -00355611 00 s 01 same(p) 0 002 & 00355258 a 0000 + 04740326 n 0103 | unchanged in character or nature; "the village stayed the same"; "his attitude is the same as ever" -00355782 00 a 01 isometric 0 002 ;c 06080522 n 0000 ! 00355950 a 0101 | of or involving muscular contraction in which tension increases while length remains constant -00355950 00 a 01 isotonic 1 002 ;c 06080522 n 0000 ! 00355782 a 0101 | of or involving muscular contraction in which tension is constant while length changes -00356110 00 a 02 ionized 0 ionised 0 001 ! 00356211 a 0101 | converted totally or partly into ions -00356211 00 a 05 nonionized 0 nonionised 0 unionized 0 unionised 0 nonionic 0 001 ! 00356110 a 0101 | not converted into ions -00356339 00 a 02 mutable 0 changeable 4 005 + 04733640 n 0202 + 04733640 n 0201 + 04741311 n 0101 + 04741311 n 0102 ! 00356648 a 0101 | capable of or tending to change in form or quality or nature; "a mutable substance"; "the mutable ways of fortune"; "mutable weather patterns"; "a mutable foreign policy" -00356648 00 a 02 immutable 0 changeless 4 004 + 04737934 n 0201 + 04741807 n 0102 + 04741807 n 0101 ! 00356339 a 0101 | not subject or susceptible to change or variation in form or quality or nature; "the view of that time was that all species were immutable, created by God" -00356926 00 a 01 characteristic 0 007 ^ 02468635 a 0000 + 04731497 n 0101 + 05849284 n 0102 ! 00357983 a 0101 & 00357254 a 0000 & 00357556 a 0000 & 00357790 a 0000 | typical or distinctive; "heard my friend's characteristic laugh"; "red and gold are the characteristic colors of autumn"; "stripes characteristic of the zebra" -00357254 00 s 02 diagnostic 0 symptomatic 0 003 & 00356926 a 0000 + 14299637 n 0201 + 06798187 n 0201 | characteristic or indicative of a disease; "a diagnostic sign of yellow fever"; "a rash symptomatic of scarlet fever"; "symptomatic of insanity"; "a rise in crime symptomatic of social breakdown" -00357556 00 s 02 distinctive 0 typical 0 002 & 00356926 a 0000 + 04763925 n 0105 | of a feature that helps to distinguish a person or thing; "Jerusalem has a distinctive Middle East flavor"- Curtis Wilkie; "that is typical of you!" -00357790 00 s 01 peculiar(a) 0 002 & 00356926 a 0000 + 04763925 n 0101 | characteristic of one only; distinctive or special; "the peculiar character of the Government of the U.S."- R.B.Taney -00357983 00 a 01 uncharacteristic 0 002 ^ 02469928 a 0000 ! 00356926 a 0101 | distinctive and not typical; "a book uncharacteristic of its author" -00358132 00 a 01 charged 0 005 ! 00358951 a 0101 & 00358392 a 0000 & 00358534 a 0000 & 00358678 a 0000 & 00358820 a 0000 | of a particle or body or system; having a net amount of positive or negative electric charge; "charged particles"; "a charged battery" -00358392 00 s 02 hot 0 live 0 002 & 00358132 a 0000 ;c 11449907 n 0000 | charged or energized with electricity; "a hot wire"; "a live wire" -00358534 00 s 03 negative 0 electronegative 0 negatively_charged 0 001 & 00358132 a 0000 | having a negative charge; "electrons are negative" -00358678 00 s 03 positive 0 electropositive 0 positively_charged 0 001 & 00358132 a 0000 | having a positive charge; "protons are positive" -00358820 00 s 01 polar 0 003 & 00358132 a 0000 + 04413151 n 0102 + 13856574 n 0101 | having a pair of equal and opposite charges -00358951 00 a 01 uncharged 0 004 ;c 06090869 n 0000 ! 00358132 a 0101 & 00359160 a 0000 & 00359260 a 0000 | of a particle or body or system; having no charge; "an uncharged particle"; "an uncharged battery" -00359160 00 s 02 neutral 0 electroneutral 0 001 & 00358951 a 0000 | having no net electric charge -00359260 00 s 02 dead 0 drained 0 002 & 00358951 a 0000 + 05006519 n 0101 | drained of electric charge; discharged; "a dead battery"; "left the lights on and came back to find the battery drained" -00359459 00 a 01 charitable 0 004 ^ 01111016 a 0000 + 04832050 n 0101 ! 00359862 a 0101 & 00359645 a 0000 | full of love and generosity; "charitable to the poor"; "a charitable trust" -00359645 00 s 04 beneficent 0 benevolent 0 eleemosynary 0 philanthropic 0 001 & 00359459 a 0000 | generous in assistance to the poor; "a benevolent contributor"; "eleemosynary relief"; "philanthropic contributions" -00359862 00 a 01 uncharitable 0 003 ^ 01115081 a 0000 ^ 01112573 a 0000 ! 00359459 a 0101 | lacking love and generosity; "all pious words and uncharitable deeds"- Charles Reade -00360041 00 a 03 chartered 0 hired 2 leased 2 001 ! 00360235 a 0101 | hired for the exclusive temporary use of a group of travelers; "a chartered plane"; "the chartered buses arrived on time" -00360235 00 a 01 unchartered 0 001 ! 00360041 a 0101 | not chartered -00360306 00 a 01 owned 0 002 ! 00360569 a 0101 & 00360442 a 0000 | having an owner; often used in combination; "state-owned railways" -00360442 00 s 01 closely-held 0 001 & 00360306 a 0000 | owned by a relatively few shareholders; "a closely-held corporation" -00360569 00 a 02 unowned 0 ownerless 0 001 ! 00360306 a 0101 | having no owner -00360650 00 a 01 chaste 0 009 ^ 01548193 a 0000 ^ 01904845 a 0000 ^ 02513269 a 0000 = 04849759 n 0000 = 13967581 n 0000 + 04849759 n 0102 ! 00361509 a 0101 & 00360950 a 0000 & 00361125 a 0000 | morally pure (especially not having experienced sexual intercourse); "a holy woman innocent and chaste" -00360950 00 s 02 celibate 0 continent 0 004 & 00360650 a 0000 + 04882813 n 0202 + 04882813 n 0201 + 09903367 n 0101 | abstaining from sexual intercourse; "celibate priests" -00361125 00 s 05 pure 0 vestal 0 virgin 0 virginal 0 virtuous 0 009 & 00360650 a 0000 + 04849759 n 0501 + 10755257 n 0401 + 10755257 n 0301 + 13967581 n 0301 + 10748804 n 0201 + 13990064 n 0102 + 04849972 n 0104 + 04849972 n 0103 | in a state of sexual virginity; "pure and vestal modesty"; "a spinster or virgin lady"; "men have decreed that their women must be pure and virginal" -00361509 00 a 01 unchaste 0 008 ^ 01549291 a 0000 ^ 01905377 a 0000 = 04849759 n 0000 ! 00360650 a 0101 & 00361720 a 0000 & 00361837 a 0000 & 00362173 a 0000 & 00362269 a 0000 | not chaste; "unchaste conduct" -00361720 00 s 01 cyprian 0 001 & 00361509 a 0000 | resembling the ancient orgiastic worship of Aphrodite on Cyprus -00361837 00 s 06 easy 0 light 0 loose 0 promiscuous 0 sluttish 0 wanton 0 007 & 00361509 a 0000 + 10766260 n 0601 + 04851715 n 0602 + 04896995 n 0502 + 00856342 n 0402 + 00856342 n 0401 + 00748307 n 0305 | casual and unrestrained in sexual behavior; "her easy virtue"; "he was told to avoid loose (or light) women"; "wanton behavior" -00362173 00 s 01 fallen 0 001 & 00361509 a 0000 | having lost your chastity; "a fallen woman" -00362269 00 s 01 licentious 0 004 & 00361509 a 0000 + 13995378 n 0102 + 04851715 n 0101 + 00748307 n 0104 | lacking moral discipline; especially sexually unrestrained; "coarse and licentious men" -00362467 00 a 01 cheerful 0 011 ^ 01361414 a 0000 ^ 01148283 a 0000 = 04630689 n 0000 + 04630689 n 0101 ! 00364479 a 0101 & 00362892 a 0000 & 00363031 a 0000 & 00363291 a 0000 & 00363621 a 0000 & 00363938 a 0000 & 00364145 a 0000 | being full of or promoting cheer; having or showing good spirits; "her cheerful nature"; "a cheerful greeting"; "a cheerful room"; "as cheerful as anyone confined to a hospital bed could be" -00362892 00 s 02 beaming 0 glad 0 002 & 00362467 a 0000 + 07527167 n 0201 | cheerful and bright; "a beaming smile"; "a glad May morning" -00363031 00 s 03 beamish 0 smiling(a) 0 twinkly 0 003 & 00362467 a 0000 + 04953380 n 0302 + 06878071 n 0202 | smiling with happiness or optimism; "Come to my arms, my beamish boy!"- Lewis Carroll; "a room of smiling faces"; "a round red twinkly Santa Claus" -00363291 00 s 05 blithe 0 blithesome 0 lighthearted 0 lightsome 0 light-hearted 0 004 & 00362467 a 0000 + 07530866 n 0404 + 07530866 n 0303 + 07530478 n 0102 | carefree and happy and lighthearted; "was loved for her blithe spirit"; "a merry blithesome nature"; "her lighthearted nature"; "trilling songs with a lightsome heart" -00363621 00 s 03 buoyant 0 chirpy 0 perky 0 005 & 00362467 a 0000 + 07530723 n 0302 + 04632063 n 0201 + 07530723 n 0101 + 04633959 n 0102 | characterized by liveliness and lightheartedness; "buoyant spirits"; "his quick wit and chirpy humor"; "looking bright and well and chirpy"; "a perky little widow in her 70s" -00363938 00 s 03 cheery 0 gay 0 sunny 0 003 & 00362467 a 0000 + 04630689 n 0303 + 04630689 n 0102 | bright and pleasant; promoting a feeling of cheer; "a cheery hello"; "a gay sunny room"; "a sunny smile" -00364145 00 s 04 chipper 0 debonair 0 debonaire 0 jaunty 0 002 & 00362467 a 0000 + 04633797 n 0402 | having a cheerful, lively, and self-confident air; "looking chipper, like a man...diverted by his own wit"- Frances G. Patton; "life that is gay, brisk, and debonair"- H.M.Reynolds; "walked with a jaunty step"; "a jaunty optimist" -00364479 00 a 03 depressing 0 cheerless 0 uncheerful 4 009 ^ 01368192 a 0000 ^ 01149494 a 0000 = 04630689 n 0000 + 07537068 n 0302 + 04631298 n 0301 + 07537068 n 0201 ! 00362467 a 0101 & 00364881 a 0000 & 00365261 a 0000 | causing sad feelings of gloom and inadequacy; "the economic outlook is depressing"; "something cheerless about the room"; "a moody and uncheerful person"; "an uncheerful place" -00364881 00 s 0b blue 0 dark 0 dingy 0 disconsolate 0 dismal 0 gloomy 0 grim 0 sorry 0 drab 0 drear 0 dreary 0 002 & 00364479 a 0000 + 05206006 n 0b02 | causing dejection; "a blue day"; "the dark days of the war"; "a week of rainy depressing weather"; "a disconsolate winter landscape"; "the first dismal dispiriting days of November"; "a dark gloomy day"; "grim rainy weather" -00365261 00 s 03 somber 0 sombre 0 melancholy 0 005 & 00364479 a 0000 + 07533257 n 0204 + 04647478 n 0206 + 07533257 n 0103 + 04647478 n 0105 | grave or even gloomy in character; "solemn and mournful music"; "a suit of somber black"; "a somber mood" -00365513 00 a 01 chlamydeous 0 003 ;c 06066555 n 0000 + 11692265 n 0102 ! 00365681 a 0101 | having a floral envelope or perianth consisting of a calyx and/or corolla -00365681 00 a 01 achlamydeous 0 002 ;c 06066555 n 0000 ! 00365513 a 0101 | not having a floral envelope or perianth -00365799 00 a 02 chondritic 0 granular 4 002 + 09244191 n 0101 ! 00365936 a 0101 | having a granular structure like that of chondrites -00365936 00 a 01 achondritic 0 001 ! 00365799 a 0101 | not having a granular structure -00366025 00 a 01 monoclinic 0 002 ;c 06098876 n 0000 ! 00366185 a 0101 | having three unequal crystal axes with one oblique intersection; "monoclinic system" -00366185 00 a 02 triclinic 0 anorthic 0 002 ;c 06098876 n 0000 ! 00366025 a 0101 | having three unequal crystal axes intersecting at oblique angles; "triclinic system" -00366355 00 a 02 monochromatic 0 homochromatic 0 001 ! 00366526 a 0101 | (of light or other electromagnetic radiation) having only one wavelength; "monochromatic light" -00366526 00 a 01 polychromatic 0 001 ! 00366355 a 0101 | (of light or other electromagnetic radiation) composed of more than one wavelength; "polychromatic light" -00366691 00 a 01 chromatic 0 152 ^ 00373209 a 0000 ^ 00394562 a 0000 = 04975122 n 0000 + 04975340 n 0102 + 04975122 n 0102 ! 00386392 a 0101 & 00369504 a 0000 & 00369648 a 0000 & 00369732 a 0000 & 00369831 a 0000 & 00369941 a 0000 & 00370160 a 0000 & 00370267 a 0000 & 00370501 a 0000 & 00370601 a 0000 & 00370688 a 0000 & 00370771 a 0000 & 00370869 a 0000 & 00371163 a 0000 & 00371311 a 0000 & 00371411 a 0000 & 00371511 a 0000 & 00371611 a 0000 & 00371741 a 0000 & 00371841 a 0000 & 00371945 a 0000 & 00372029 a 0000 & 00372111 a 0000 & 00372266 a 0000 & 00372367 a 0000 & 00372476 a 0000 & 00372571 a 0000 & 00372653 a 0000 & 00372799 a 0000 & 00372960 a 0000 & 00373067 a 0000 & 00373209 a 0000 & 00373381 a 0000 & 00373493 a 0000 & 00373621 a 0000 & 00373731 a 0000 & 00373811 a 0000 & 00373915 a 0000 & 00374001 a 0000 & 00374214 a 0000 & 00374303 a 0000 & 00374390 a 0000 & 00374477 a 0000 & 00374556 a 0000 & 00374635 a 0000 & 00374735 a 0000 & 00374818 a 0000 & 00374944 a 0000 & 00375090 a 0000 & 00375217 a 0000 & 00375303 a 0000 & 00375387 a 0000 & 00375471 a 0000 & 00375593 a 0000 & 00375720 a 0000 & 00375847 a 0000 & 00375969 a 0000 & 00376255 a 0000 & 00376342 a 0000 & 00376453 a 0000 & 00376537 a 0000 & 00376645 a 0000 & 00376821 a 0000 & 00376917 a 0000 & 00377036 a 0000 & 00377131 a 0000 & 00377224 a 0000 & 00377323 a 0000 & 00377438 a 0000 & 00377524 a 0000 & 00377616 a 0000 & 00377702 a 0000 & 00377802 a 0000 & 00377890 a 0000 & 00378002 a 0000 & 00378084 a 0000 & 00378166 a 0000 & 00378280 a 0000 & 00378498 a 0000 & 00378591 a 0000 & 00378687 a 0000 & 00378782 a 0000 & 00378892 a 0000 & 00379084 a 0000 & 00379181 a 0000 & 00379267 a 0000 & 00379413 a 0000 & 00379495 a 0000 & 00379595 a 0000 & 00379697 a 0000 & 00379804 a 0000 & 00379914 a 0000 & 00379992 a 0000 & 00380077 a 0000 & 00380178 a 0000 & 00380312 a 0000 & 00380483 a 0000 & 00380583 a 0000 & 00380686 a 0000 & 00380789 a 0000 & 00380895 a 0000 & 00380992 a 0000 & 00381097 a 0000 & 00381525 a 0000 & 00381636 a 0000 & 00381766 a 0000 & 00381861 a 0000 & 00381975 a 0000 & 00382074 a 0000 & 00382173 a 0000 & 00382321 a 0000 & 00382411 a 0000 & 00382512 a 0000 & 00382594 a 0000 & 00382693 a 0000 & 00382792 a 0000 & 00382874 a 0000 & 00382990 a 0000 & 00383088 a 0000 & 00383189 a 0000 & 00383291 a 0000 & 00383429 a 0000 & 00383521 a 0000 & 00383607 a 0000 & 00383700 a 0000 & 00383827 a 0000 & 00383957 a 0000 & 00384099 a 0000 & 00384195 a 0000 & 00384292 a 0000 & 00384410 a 0000 & 00384533 a 0000 & 00384615 a 0000 & 00384694 a 0000 & 00384782 a 0000 & 00384936 a 0000 & 00385059 a 0000 & 00385188 a 0000 & 00385338 a 0000 & 00385432 a 0000 & 00385547 a 0000 & 00385651 a 0000 & 00385756 a 0000 & 00385990 a 0000 & 00386095 a 0000 & 00386196 a 0000 & 00386303 a 0000 | being or having or characterized by hue -00369504 00 s 03 amber 0 brownish-yellow 0 yellow-brown 0 002 & 00366691 a 0000 + 04966240 n 0101 | of a medium to dark brownish yellow color -00369648 00 s 01 amber-green 0 001 & 00366691 a 0000 | of green tinged with amber -00369732 00 s 01 amethyst 0 002 & 00366691 a 0000 + 14722589 n 0101 | of a moderate purple color -00369831 00 s 01 auburn 0 001 & 00366691 a 0000 | (of hair) colored a moderate reddish-brown; "auburn hair" -00369941 00 s 05 aureate 0 gilded 0 gilt 0 gold 0 golden 0 003 & 00366691 a 0000 + 04966240 n 0402 + 03437430 n 0301 | having the deep slightly brownish color of gold; "long aureate (or golden) hair"; "a gold carpet" -00370160 00 s 01 avocado 0 001 & 00366691 a 0000 | of the dull yellowish green of the meat of an avocado -00370267 00 s 04 azure 0 cerulean 0 sky-blue 0 bright_blue 0 003 & 00366691 a 0000 + 04969242 n 0202 + 04969242 n 0101 | of a deep somewhat purplish blue color similar to that of a clear October sky; "October's bright blue weather" -00370501 00 s 01 beige 0 002 & 00366691 a 0000 + 04973291 n 0101 | of a light greyish-brown color -00370601 00 s 01 blackish-brown 0 001 & 00366691 a 0000 | of brown tinged with black -00370688 00 s 01 blackish-red 0 001 & 00366691 a 0000 | of red tinged with black -00370771 00 s 01 blae 0 002 & 00366691 a 0000 ;r 08890097 n 0000 | of bluish-black or grey-blue -00370869 00 s 03 blue 0 bluish 0 blueish 0 002 & 00366691 a 0000 + 04968895 n 0102 | of the color intermediate between green and violet; having a color similar to that of a clear unclouded sky; "October's bright blue weather"- Helen Hunt Jackson; "a blue flame"; "blue haze of tobacco smoke" -00371163 00 s 04 bluish_green 0 blue-green 0 cyan 0 teal 0 003 & 00366691 a 0000 + 04968426 n 0403 + 04968619 n 0301 | of a bluish shade of green -00371311 00 s 02 blue-lilac 0 bluish-lilac 0 001 & 00366691 a 0000 | of lavender tinged with blue -00371411 00 s 02 blue-purple 0 bluish-purple 0 001 & 00366691 a 0000 | of purple tinged with blue -00371511 00 s 02 blue-violet 0 bluish-violet 0 001 & 00366691 a 0000 | of violet tinted with blue -00371611 00 s 02 blushful 0 rosy 0 003 & 00366691 a 0000 + 04971313 n 0202 + 04971313 n 0201 | of blush color; "blushful mists" -00371741 00 s 01 bottle-green 0 001 & 00366691 a 0000 | of a dark to moderate greyish green color -00371841 00 s 02 bright-red 0 raspberry-red 0 001 & 00366691 a 0000 | of the red of fresh raspberries -00371945 00 s 02 bronze 0 bronzy 0 001 & 00366691 a 0000 | of the color of bronze -00372029 00 s 01 bronze-red 0 001 & 00366691 a 0000 | of red tinged with bronze -00372111 00 s 04 brown 0 brownish 0 chocolate-brown 0 dark-brown 0 002 & 00366691 a 0000 + 04971928 n 0102 | of a color similar to that of wood or earth -00372266 00 s 02 brown-green 0 brownish-green 0 001 & 00366691 a 0000 | of green tinged with brown -00372367 00 s 02 brown-purple 0 brownish-purple 0 001 & 00366691 a 0000 | of dark purple tinted with brown -00372476 00 s 01 buff 0 001 & 00366691 a 0000 | of the yellowish-beige color of buff leather -00372571 00 s 01 buff-brown 0 001 & 00366691 a 0000 | of brown tinged with buff -00372653 00 s 02 canary 0 canary-yellow 0 002 & 00366691 a 0000 + 04966114 n 0102 | having the color of a canary; of a light to moderate yellow -00372799 00 s 02 caramel 0 caramel_brown 0 003 & 00366691 a 0000 + 04973957 n 0205 + 04973957 n 0104 | having the color of caramel; of a moderate yellow-brown -00372960 00 s 01 carnation 0 003 & 00366691 a 0000 + 11808468 n 0101 + 04971211 n 0101 | pink or pinkish -00373067 00 s 01 chartreuse 0 002 & 00366691 a 0000 + 04968257 n 0103 | of something having the yellowish green color of Chartreuse liqueur -00373209 00 s 01 chestnut 0 002 & 00366691 a 0000 + 04972350 n 0101 | (of hair or feathers) of a golden brown to reddish brown color; "a chestnut horse"; "chestnut hair" -00373381 00 s 01 chestnut-brown 0 001 & 00366691 a 0000 | (of hair or feathers) of brown tinged with chestnut -00373493 00 s 02 coppery 0 copper_colored 0 002 & 00366691 a 0000 + 04973669 n 0101 | of something having the color of copper -00373621 00 s 01 coral 0 002 & 00366691 a 0000 + 04971820 n 0101 | of a strong pink to yellowish-pink color -00373731 00 s 01 coral-red 0 001 & 00366691 a 0000 | of red tinged with coral -00373811 00 s 01 creamy 0 001 & 00366691 a 0000 | of the color of cream; "creamy translucent pebbles" -00373915 00 s 01 creamy-yellow 0 001 & 00366691 a 0000 | yellow with a creamy tinge -00374001 00 s 03 cress_green 0 cresson 0 watercress 0 002 & 00366691 a 0000 + 11869689 n 0301 | of a moderate yellow-green color that is greener and deeper than moss green and yellower and darker than pea green -00374214 00 s 01 crimson-magenta 0 001 & 00366691 a 0000 | magenta tinged with crimson -00374303 00 s 01 crimson-purple 0 001 & 00366691 a 0000 | purple tinged with crimson -00374390 00 s 01 crimson-yellow 0 001 & 00366691 a 0000 | yellow tinged with crimson -00374477 00 s 01 dark-blue 0 001 & 00366691 a 0000 | of a dark shade of blue -00374556 00 s 01 deep-pink 0 001 & 00366691 a 0000 | of a deep shade of pink -00374635 00 s 01 deep-yellow 0 001 & 00366691 a 0000 | of something having the color of a pumpkin -00374735 00 s 01 dull-purple 0 001 & 00366691 a 0000 | of a dull shade of purple -00374818 00 s 01 dun 0 001 & 00366691 a 0000 | of a dull greyish brown to brownish grey color; "the dun and dreary prairie" -00374944 00 s 01 earthlike 0 001 & 00366691 a 0000 | earth colored; of something having a color of soil or earth; "a range of earthlike colors" -00375090 00 s 02 fuscous 0 taupe 0 002 & 00366691 a 0000 + 04974774 n 0201 | of something having a dusky brownish grey color -00375217 00 s 01 golden-yellow 0 001 & 00366691 a 0000 | of yellow tinged with gold -00375303 00 s 01 golden-brown 0 001 & 00366691 a 0000 | of brown tinged with gold -00375387 00 s 01 golden-green 0 001 & 00366691 a 0000 | of green tinged with gold -00375471 00 s 04 grey-blue 0 gray-blue 0 greyish-blue 0 grayish-blue 0 001 & 00366691 a 0000 | of blue tinged with grey -00375593 00 s 04 grey-brown 0 gray-brown 0 greyish-brown 0 grayish-brown 0 001 & 00366691 a 0000 | of brown tinged with grey -00375720 00 s 04 grey-green 0 gray-green 0 greyish-green 0 grayish-green 0 001 & 00366691 a 0000 | of green tinged with grey -00375847 00 s 04 grey-pink 0 gray-pink 0 greyish-pink 0 grayish-pink 0 001 & 00366691 a 0000 | of pink tinged with grey -00375969 00 s 04 green 0 greenish 0 light-green 0 dark-green 0 004 & 00366691 a 0000 + 04967561 n 0201 + 04967191 n 0101 + 04967191 n 0102 | of the color between blue and yellow in the color spectrum; similar to the color of fresh grass; "a green tree"; "green fields"; "green paint" -00376255 00 s 01 greenish-brown 0 001 & 00366691 a 0000 | of brown tinged with green -00376342 00 s 01 hazel 0 002 & 00366691 a 0000 + 04972603 n 0101 | of a light brown or yellowish brown color -00376453 00 s 01 hazel-brown 0 001 & 00366691 a 0000 | of brown tinged with hazel -00376537 00 s 01 honey 0 002 & 00366691 a 0000 + 07858978 n 0101 | of something having the color of honey -00376645 00 s 02 jade 0 jade-green 0 002 & 00366691 a 0000 + 04968749 n 0102 | of something having the color of jade; especially varying from bluish green to yellowish green -00376821 00 s 01 khaki 0 002 & 00366691 a 0000 + 03615406 n 0101 | of a yellowish brown color -00376917 00 s 03 lavender 0 lilac 0 lilac-colored 0 002 & 00366691 a 0000 + 12310349 n 0201 | of a pale purple color -00377036 00 s 01 lavender-tinged 0 001 & 00366691 a 0000 | of something tinged with lavender -00377131 00 s 02 light-blue 0 pale_blue 0 001 & 00366691 a 0000 | of a light shade of blue -00377224 00 s 02 lilac-blue 0 violet-blue 0 001 & 00366691 a 0000 | of blue tinged with lavender -00377323 00 s 03 lilac-pink 0 lavender-pink 0 violet-pink 0 001 & 00366691 a 0000 | of pink tinged with lavender -00377438 00 s 01 lilac-purple 0 001 & 00366691 a 0000 | of purple tinged with lilac -00377524 00 s 01 magenta 0 002 & 00366691 a 0000 + 04964586 n 0101 | of deep purplish red -00377616 00 s 01 magenta_pink 0 001 & 00366691 a 0000 | of pink tinged with magenta -00377702 00 s 02 maroon 0 brownish-red 0 001 & 00366691 a 0000 | of dark brownish to purplish red -00377802 00 s 01 maroon-purple 0 001 & 00366691 a 0000 | of purple tinged with maroon -00377890 00 s 01 mauve 0 002 & 00366691 a 0000 + 04970544 n 0101 | of a pale to moderate greyish violet color -00378002 00 s 01 mauve-blue 0 001 & 00366691 a 0000 | of blue tinged with mauve -00378084 00 s 01 mauve-pink 0 001 & 00366691 a 0000 | of pink tinged with mauve -00378166 00 s 02 moss_green 0 mosstone 0 001 & 00366691 a 0000 | of a moderate somewhat dull yellow-green color -00378280 00 s 04 mousy 0 mousey 0 mouse-colored 0 mouselike 0 001 & 00366691 a 0000 | of something having a drab pale brown color resembling a mouse; "a mousy brownish-grey color"; "mousy hair"; "mouse-colored hair" -00378498 00 s 02 ocher 0 ochre 0 001 & 00366691 a 0000 | of a moderate orange-yellow color -00378591 00 s 01 olive-brown 0 001 & 00366691 a 0000 | of a brown color with a greenish tinge -00378687 00 s 02 olive-drab 0 drab 0 001 & 00366691 a 0000 | of a light brownish green color -00378782 00 s 01 olive 0 001 & 00366691 a 0000 | of a yellow-green color similar to that of an unripe olive -00378892 00 s 02 orange 0 orangish 0 004 & 00366691 a 0000 + 14991210 n 0101 + 04965179 n 0101 + 04965179 n 0102 | of the color between red and yellow; similar to the color of a ripe orange -00379084 00 s 02 orange-red 0 orangish-red 0 001 & 00366691 a 0000 | of red tinged with orange -00379181 00 s 01 orange-brown 0 001 & 00366691 a 0000 | of brown tinged with orange -00379267 00 s 03 peachy 0 peachy-colored 0 peachy-coloured 0 002 & 00366691 a 0000 + 04971675 n 0103 | of something resembling a peach in color -00379413 00 s 01 peacock-blue 0 001 & 00366691 a 0000 | of bright greenish blue -00379495 00 s 01 pea-green 0 001 & 00366691 a 0000 | of a moderate slightly yellowish-green color -00379595 00 s 02 pink 0 pinkish 0 002 & 00366691 a 0000 + 04970916 n 0101 | of a light shade of red -00379697 00 s 02 pink-lavender 0 pinkish-lavender 0 001 & 00366691 a 0000 | of lavender tinged with pink -00379804 00 s 03 pink-orange 0 pinkish-orange 0 salmon 0 001 & 00366691 a 0000 | of orange tinged with pink -00379914 00 s 01 pink-red 0 001 & 00366691 a 0000 | of red tinged with pink -00379992 00 s 01 pink-tinged 0 001 & 00366691 a 0000 | of a color tinged with pink -00380077 00 s 02 pink-purple 0 pinkish-purple 0 001 & 00366691 a 0000 | of purple tinged with pink -00380178 00 s 02 powder_blue 0 powdery-blue 0 002 & 00366691 a 0000 + 04969431 n 0101 | of a moderate to pale blue or purplish blue -00380312 00 s 03 purple 0 violet 0 purplish 0 004 & 00366691 a 0000 + 04970758 n 0201 + 04970059 n 0101 + 04970059 n 0102 | of a color intermediate between red and blue -00380483 00 s 02 purple-blue 0 purplish-blue 0 001 & 00366691 a 0000 | of blue tinged with purple -00380583 00 s 02 purple-brown 0 purplish-brown 0 001 & 00366691 a 0000 | of brown tinged with purple -00380686 00 s 02 purple-green 0 purplish-green 0 001 & 00366691 a 0000 | of green tinged with purple -00380789 00 s 02 purple-lilac 0 purplish-lilac 0 001 & 00366691 a 0000 | of lavender tinged with purple -00380895 00 s 02 purple-red 0 purplish-red 0 001 & 00366691 a 0000 | of red tinged with purple -00380992 00 s 02 purple-tinged 0 purple-tinted 0 001 & 00366691 a 0000 | of a color tinged with purple -00381097 00 s 0c red 1 reddish 0 ruddy 0 blood-red 0 carmine 0 cerise 0 cherry 0 cherry-red 0 crimson 0 ruby 0 ruby-red 0 scarlet 0 009 & 00366691 a 0000 + 04964977 n 0c01 + 04963588 n 0901 + 04964443 n 0702 + 04964443 n 0601 + 04963449 n 0502 + 04977412 n 0301 + 04962784 n 0101 + 04962784 n 0102 | of a color at the end of the color spectrum (next to orange); resembling the color of blood or cherries or tomatoes or rubies -00381525 00 s 03 red-brown 0 reddish-brown 0 mahogany-red 0 001 & 00366691 a 0000 | of brown tinged with red -00381636 00 s 02 red-lavender 0 reddish-lavender 0 001 & 00366691 a 0000 | of something having a lavender color tinged with red -00381766 00 s 01 reddish-pink 0 001 & 00366691 a 0000 | of a pink color that is close to red -00381861 00 s 03 red-orange 0 reddish-orange 0 flame-orange 0 001 & 00366691 a 0000 | of orange tinged with red -00381975 00 s 02 red-purple 0 reddisn-purple 0 001 & 00366691 a 0000 | of purple tinged with red -00382074 00 s 02 red-violet 0 reddish-violet 0 001 & 00366691 a 0000 | of violet tinged with red -00382173 00 s 03 rose 0 roseate 0 rosaceous 0 001 & 00366691 a 0000 | of something having a dusty purplish pink color; "the roseate glow of dawn" -00382321 00 s 01 rose-red 0 001 & 00366691 a 0000 | of a deep slightly bluish red color -00382411 00 s 02 rose-lilac 0 rose-lavender 0 001 & 00366691 a 0000 | of lavender tinged with rose -00382512 00 s 01 rose-mauve 0 001 & 00366691 a 0000 | of mauve tinged with rose -00382594 00 s 02 rose-purple 0 rosy-purple 0 001 & 00366691 a 0000 | of purple with a rose tinge -00382693 00 s 02 rose-tinted 0 rose-tinged 0 001 & 00366691 a 0000 | of a color tinged with rose -00382792 00 s 01 russet 0 001 & 00366691 a 0000 | of brown with a reddish tinge -00382874 00 s 03 rust 0 rusty 0 rust-brown 0 002 & 00366691 a 0000 + 14889479 n 0201 | of the brown color of rust -00382990 00 s 02 rust-red 0 rusty-red 0 001 & 00366691 a 0000 | of a red color tinged with rust -00383088 00 s 01 rusty-brown 0 001 & 00366691 a 0000 | of something having the brown color of rust -00383189 00 s 02 sage 0 sage-green 0 001 & 00366691 a 0000 | of the grey-green color of sage leaves -00383291 00 s 01 sapphire 0 002 & 00366691 a 0000 + 04969242 n 0103 | of something having the color of a blue sapphire; "sapphire eyes" -00383429 00 s 01 scarlet-crimson 0 001 & 00366691 a 0000 | of crimson tinged with scarlet -00383521 00 s 01 scarlet-pink 0 001 & 00366691 a 0000 | of pink tinged with scarlet -00383607 00 s 01 sea-green 0 001 & 00366691 a 0000 | of the color of the sea; bluish green -00383700 00 s 02 silver-blue 0 silvery-blue 0 001 & 00366691 a 0000 | of something having a color that is a light shiny blue -00383827 00 s 02 silver-green 0 silvery-green 0 001 & 00366691 a 0000 | of something having a color that is a light shiny green -00383957 00 s 04 snuff 0 snuff-brown 0 mummy-brown 0 chukker-brown 0 001 & 00366691 a 0000 | snuff colored; of a greyish to yellowish brown -00384099 00 s 02 sorrel 0 brownish-orange 0 001 & 00366691 a 0000 | of a light brownish color -00384195 00 s 01 stone 0 001 & 00366691 a 0000 | of any of various dull tannish or grey colors -00384292 00 s 01 straw 0 002 & 00366691 a 0000 + 04966941 n 0102 | of a pale yellow color like straw; straw-colored -00384410 00 s 02 sulfur-yellow 0 sulphur-yellow 0 001 & 00366691 a 0000 | of something having the yellow color of sulfur -00384533 00 s 01 tan 0 001 & 00366691 a 0000 | of a light yellowish-brown color -00384615 00 s 01 tannish 0 001 & 00366691 a 0000 | of a color resembling tan -00384694 00 s 01 tangerine 0 001 & 00366691 a 0000 | of a strong reddish orange color -00384782 00 s 02 tawny 0 tawny-brown 0 002 & 00366691 a 0000 + 04978050 n 0101 | of a light brown to brownish orange color; the color of tanned leather -00384936 00 s 01 ultramarine 0 002 & 00366691 a 0000 + 04974859 n 0101 | of a brilliant pure blue to purplish blue color -00385059 00 s 01 umber 0 002 & 00366691 a 0000 + 04972451 n 0104 | of the color of any of various natural brown earth pigments -00385188 00 s 04 vermilion 0 vermillion 0 cinnabar 0 Chinese-red 0 002 & 00366691 a 0000 + 04964977 n 0102 | of a vivid red to reddish-orange color -00385338 00 s 01 vinaceous 0 002 & 00366691 a 0000 + 04964162 n 0101 | of the color of wine -00385432 00 s 02 violet-tinged 0 violet-tinted 0 001 & 00366691 a 0000 | of something that is tinged with violet -00385547 00 s 01 white-pink 0 001 & 00366691 a 0000 | of pink tinged with white; a light tint of pink -00385651 00 s 01 wine-red 0 001 & 00366691 a 0000 | of something having the dark red color of red wine -00385756 00 s 03 yellow 0 yellowish 0 xanthous 0 003 & 00366691 a 0000 + 04965661 n 0101 + 04965661 n 0102 | of the color intermediate between green and orange in the color spectrum; of something resembling the color of an egg yolk -00385990 00 s 02 yellow-beige 0 yellowish-beige 0 001 & 00366691 a 0000 | of beige tinged with yellow; -00386095 00 s 01 yellow-green 0 001 & 00366691 a 0000 | of a color midway between yellow and green -00386196 00 s 02 yellow-orange 0 yellowish-orange 0 001 & 00366691 a 0000 | of orange tinged with yellow -00386303 00 s 01 yellow-tinged 0 001 & 00366691 a 0000 | of a color tinged with yellow -00386392 00 a 02 achromatic 0 neutral 0 050 ^ 00404202 a 0000 = 04975122 n 0000 + 00524530 v 0101 ! 00366691 a 0101 & 00387392 a 0000 & 00387593 a 0000 & 00387699 a 0000 & 00387808 a 0000 & 00387922 a 0000 & 00388032 a 0000 & 00388152 a 0000 & 00388249 a 0000 & 00388350 a 0000 & 00388477 a 0000 & 00388571 a 0000 & 00388725 a 0000 & 00388849 a 0000 & 00389035 a 0000 & 00389150 a 0000 & 00389231 a 0000 & 00389310 a 0000 & 00389607 a 0000 & 00389734 a 0000 & 00389861 a 0000 & 00389962 a 0000 & 00390071 a 0000 & 00390195 a 0000 & 00390332 a 0000 & 00390461 a 0000 & 00390539 a 0000 & 00390630 a 0000 & 00390725 a 0000 & 00390844 a 0000 & 00390943 a 0000 & 00391077 a 0000 & 00391162 a 0000 & 00391265 a 0000 & 00391368 a 0000 & 00391487 a 0000 & 00391572 a 0000 & 00391699 a 0000 & 00391806 a 0000 & 00391897 a 0000 & 00392093 a 0000 & 00392184 a 0000 & 00392281 a 0000 & 00392367 a 0000 & 00392460 a 0000 & 00392574 a 0000 & 00392706 a 0000 | having no hue; "neutral colors like black or white" -00387392 00 s 04 argent 0 silver 0 silvery 0 silverish 0 003 & 00386392 a 0000 + 04962062 n 0303 + 14986144 n 0101 | of lustrous grey; covered with or tinged with the color of silver; "silvery hair" -00387593 00 s 03 ash-grey 0 ash-gray 0 ashy 0 002 & 00386392 a 0000 + 14769160 n 0301 | of a light grey -00387699 00 s 01 blackish 0 001 & 00386392 a 0000 | of something that is somewhat black; "blackish clouds" -00387808 00 s 04 black-grey 0 black-gray 0 blackish-grey 0 blackish-gray 0 001 & 00386392 a 0000 | of dark grey -00387922 00 s 03 blue-white 0 bluish-white 0 cool-white 0 001 & 00386392 a 0000 | of white tinged with blue -00388032 00 s 04 blue-grey 0 blue-gray 0 bluish-grey 0 bluish-gray 0 001 & 00386392 a 0000 | of grey tinged with blue -00388152 00 s 02 blue-black 0 bluish_black 0 001 & 00386392 a 0000 | of black tinged with blue -00388249 00 s 02 brown-black 0 brownish-black 0 001 & 00386392 a 0000 | of black tinged with brown -00388350 00 s 04 brown-grey 0 brown-gray 0 brownish-grey 0 brownish-gray 0 001 & 00386392 a 0000 | of grey tinged with brown -00388477 00 s 01 canescent 0 001 & 00386392 a 0000 | of greyish white; "the canescent moon" -00388571 00 s 01 chalky 0 003 & 00386392 a 0000 + 14806598 n 0101 + 04961472 n 0101 | of something having the color of chalk; "she turned chalky white" -00388725 00 s 03 charcoal 0 charcoal-grey 0 charcoal-gray 0 002 & 00386392 a 0000 + 04962240 n 0101 | of a very dark grey -00388849 00 s 05 coal-black 0 jet 0 jet-black 0 pitchy 0 sooty 0 003 & 00386392 a 0000 + 14793533 n 0503 + 14911704 n 0401 | of the blackest black; similar to the color of jet or coal -00389035 00 s 01 cottony-white 0 001 & 00386392 a 0000 | of something as white as cotton; "cottony-white clouds" -00389150 00 s 01 dull-white 0 001 & 00386392 a 0000 | of a dull shade of white -00389231 00 s 02 ebon 0 ebony 0 001 & 00386392 a 0000 | of a very dark black -00389310 00 s 04 grey 0 gray 0 greyish 0 grayish 0 004 & 00386392 a 0000 + 04961691 n 0201 + 04961691 n 0202 + 04961691 n 0104 | of an achromatic color of any lightness intermediate between the extremes of white and black; "the little grey cells"; "gray flannel suit"; "a man with greyish hair" -00389607 00 s 04 grey-black 0 gray-black 0 greyish-black 0 grayish-black 0 001 & 00386392 a 0000 | of black tinged with grey -00389734 00 s 04 grey-white 0 gray-white 0 greyish-white 0 grayish-white 0 001 & 00386392 a 0000 | of white tinged with grey -00389861 00 s 02 greenish-grey 0 greenish-gray 0 001 & 00386392 a 0000 | of grey tinged with green -00389962 00 s 02 green-white 0 greenish-white 0 001 & 00386392 a 0000 | of white flowers tinged with green -00390071 00 s 01 hueless 0 001 & 00386392 a 0000 | of something totally lacking in saturation and therefore having no hue -00390195 00 s 03 ink-black 0 inky 0 inky-black 0 003 & 00386392 a 0000 + 14917635 n 0201 + 04960277 n 0203 | of the color of black ink -00390332 00 s 02 iron-grey 0 iron-gray 0 003 & 00386392 a 0000 + 04962548 n 0202 + 04962548 n 0101 | of the grey color of iron -00390461 00 s 01 lily-white 0 001 & 00386392 a 0000 | of a pure white color -00390539 00 s 01 milk-white 0 001 & 00386392 a 0000 | of a white the color of fresh milk -00390630 00 s 02 olive-grey 0 olive-gray 0 001 & 00386392 a 0000 | of grey tinged with olive -00390725 00 s 04 oxford-grey 0 oxford-gray 0 dark-grey 0 dark-gray 0 001 & 00386392 a 0000 | of a dark shade of grey -00390844 00 s 02 pearl_grey 0 pearl_gray 0 001 & 00386392 a 0000 | of a grey with a pearly tinge -00390943 00 s 02 pearly 0 pearly-white 0 003 & 00386392 a 0000 + 05283498 n 0102 + 04961331 n 0103 | of a white the color of pearls -00391077 00 s 01 pinkish-white 0 001 & 00386392 a 0000 | of white tinged with pink -00391162 00 s 02 purple-black 0 purplish-black 0 001 & 00386392 a 0000 | of black tinged with purple -00391265 00 s 02 purple-white 0 purplish-white 0 001 & 00386392 a 0000 | of white tinged with purple -00391368 00 s 04 red-grey 0 red-gray 0 reddish-grey 0 reddish-gray 0 001 & 00386392 a 0000 | of grey tinged with red -00391487 00 s 01 sable 0 001 & 00386392 a 0000 | of a dark somewhat brownish black -00391572 00 s 04 silver-grey 0 silver-gray 0 silvery-grey 0 silvery-gray 0 001 & 00386392 a 0000 | of grey resembling silver -00391699 00 s 02 silver-white 0 silvery-white 0 001 & 00386392 a 0000 | of a white that resembles silver -00391806 00 s 01 slate-black 0 001 & 00386392 a 0000 | of a black tinged with slate-grey -00391897 00 s 08 slate-grey 0 slate-gray 0 slaty-grey 0 slaty-gray 0 slaty 0 slatey 0 stone-grey 0 stone-gray 0 001 & 00386392 a 0000 | of the color of slate or granite; "the slaty sky of dawn" -00392093 00 s 02 snow-white 0 snowy 0 001 & 00386392 a 0000 | of the white color of snow -00392184 00 s 02 soot-black 0 sooty-black 0 001 & 00386392 a 0000 | of the black color of soot -00392281 00 s 01 violet-black 0 001 & 00386392 a 0000 | of black tinged with violet -00392367 00 s 01 white-flowered 0 001 & 00386392 a 0000 | (of plants) having white flowers -00392460 00 s 02 whitish 0 off-white 0 001 & 00386392 a 0000 | of something having a color tending toward white -00392574 00 s 04 yellow-grey 0 yellow-gray 0 yellowish-grey 0 yellowish-gray 0 001 & 00386392 a 0000 | of grey tinged with yellow -00392706 00 s 02 yellow-white 0 yellowish-white 0 001 & 00386392 a 0000 | of a white tinged with yellow -00392812 00 a 01 black 1 004 ^ 00409440 a 0000 = 04979425 n 0000 + 04960277 n 0102 ! 00393105 a 0101 | being of the achromatic color of maximum darkness; having little or no hue owing to absorption of almost all incident light; "black leather jackets"; "as black as coal"; "rich black soil" -00393105 00 a 01 white 1 006 ^ 00408660 a 0000 = 04979425 n 0000 + 04960729 n 0101 + 04960729 n 0102 ! 00392812 a 0101 & 00393422 a 0000 | being of the achromatic color of maximum lightness; having little or no hue owing to reflection of almost all incident light; "as white as fresh snow"; "a bride's white dress" -00393422 00 s 01 albescent 0 001 & 00393105 a 0000 | becoming or shading into white -00393508 00 a 02 saturated 3 pure 4 003 + 14486767 n 0202 ! 00393852 a 0101 & 00393683 a 0000 | (of color) being chromatically pure; not diluted with white or grey or black -00393683 00 s 02 intense 0 vivid 0 003 & 00393508 a 0000 + 04975340 n 0204 + 04975340 n 0103 | (of color) having the highest saturation; "vivid green"; "intense blue" -00393852 00 a 01 unsaturated 3 002 ! 00393508 a 0101 & 00393992 a 0000 | (of color) not chromatically pure; diluted; "an unsaturated red" -00393992 00 s 01 dull 0 002 & 00393852 a 0000 + 04955633 n 0101 | (of color) very low in saturation; highly diluted; "dull greens and blues" -00394135 00 a 02 color 0 colour 2 002 ;c 00903559 n 0000 ! 00394331 a 0101 | having or capable of producing colors; "color film"; "he rented a color television"; "marvelous color illustrations" -00394331 00 a 02 black-and-white 0 black_and_white(p) 2 002 ;c 00903559 n 0000 ! 00394135 a 0101 | not having or not capable of producing colors; "black-and-white film"; "a black-and-white TV"; "the movie was in black and white" -00394562 00 a 03 colored 0 coloured 0 colorful 2 048 = 04956594 n 0000 ! 00401650 a 0101 & 00395626 a 0000 & 00395977 a 0000 & 00396115 a 0000 & 00396296 a 0000 & 00396444 a 0000 & 00396523 a 0000 & 00396627 a 0000 & 00396721 a 0000 & 00396839 a 0000 & 00396958 a 0000 & 00397108 a 0000 & 00397191 a 0000 & 00397314 a 0000 & 00397441 a 0000 & 00397532 a 0000 & 00397633 a 0000 & 00397757 a 0000 & 00397870 a 0000 & 00397975 a 0000 & 00398172 a 0000 & 00398271 a 0000 & 00398373 a 0000 & 00398482 a 0000 & 00398581 a 0000 & 00398677 a 0000 & 00398816 a 0000 & 00398978 a 0000 & 00399479 a 0000 & 00399606 a 0000 & 00399715 a 0000 & 00399840 a 0000 & 00399923 a 0000 & 00400013 a 0000 & 00400101 a 0000 & 00400193 a 0000 & 00400312 a 0000 & 00400395 a 0000 & 00400472 a 0000 & 00400644 a 0000 & 00400737 a 0000 & 00400826 a 0000 & 00400922 a 0000 & 00401028 a 0000 & 00401125 a 0000 & 00401444 a 0000 & 00401562 a 0000 | having color or a certain color; sometimes used in combination; "colored crepe paper"; "the film was in color"; "amber-colored heads of grain" -00395626 00 s 05 crimson 0 red 0 reddened 0 red-faced 0 flushed 0 002 & 00394562 a 0000 + 14336539 n 0202 | (especially of the face) reddened or suffused with or as if with blood from emotion or exertion; "crimson with fury"; "turned red from exertion"; "with puffy reddened eyes"; "red-faced and violent"; "flushed (or crimson) with embarrassment" -00395977 00 s 01 bay 0 002 & 00394562 a 0000 + 02388917 n 0101 | (used of animals especially a horse) of a moderate reddish-brown color -00396115 00 s 06 bicolor 0 bicolour 0 bicolored 0 bicoloured 0 bichrome 0 dichromatic 0 001 & 00394562 a 0000 | having two colors; "a bicolor flower"; "a bicolored postage stamp" -00396296 00 s 02 black 0 blackened 0 001 & 00394562 a 0000 | (of the face) made black especially as with suffused blood; "a face black with fury" -00396444 00 s 01 blue-flowered 0 001 & 00394562 a 0000 | having blue flowers -00396523 00 s 02 brightly-colored 0 brightly-coloured 0 001 & 00394562 a 0000 | having a bright color -00396627 00 s 02 buff-colored 0 buff-coloured 0 001 & 00394562 a 0000 | having a buff color -00396721 00 s 02 chestnut-colored 0 chestnut-coloured 0 001 & 00394562 a 0000 | having the brown color of chestnuts -00396839 00 s 02 chocolate-colored 0 chocolate-coloured 0 001 & 00394562 a 0000 | having the color of dark chocolate -00396958 00 s 04 cinnamon_colored 0 cinnamon_coloured 0 cinnamon-colored 0 cinnamon-coloured 0 001 & 00394562 a 0000 | having the color of cinnamon -00397108 00 s 01 cinnamon-red 0 001 & 00394562 a 0000 | red tinged with cinnamon -00397191 00 s 03 cream-colored 0 creamy-colored 0 creamy-white 0 001 & 00394562 a 0000 | having the color of fresh cream -00397314 00 s 04 dark-colored 0 dark-coloured 0 dusky-colored 0 dusky-coloured 0 001 & 00394562 a 0000 | having a dark color -00397441 00 s 02 dun-colored 0 dun-coloured 0 001 & 00394562 a 0000 | having a dun color -00397532 00 s 02 fawn-colored 0 fawn-coloured 0 001 & 00394562 a 0000 | having the color of a fawn -00397633 00 s 02 flame-colored 0 flame-coloured 0 001 & 00394562 a 0000 | having the brilliant orange-red color of flames -00397757 00 s 02 flesh-colored 0 flesh-coloured 0 001 & 00394562 a 0000 | having a bright red or pinkish color -00397870 00 s 02 garnet-colored 0 garnet-coloured 0 001 & 00394562 a 0000 | having the color of garnet -00397975 00 s 02 ginger 0 gingery 0 001 & 00394562 a 0000 | (used especially of hair or fur) having a bright orange-brown color; "a man with gingery hair and bright blue eyes"; "a ginger kitten" -00398172 00 s 02 gold-colored 0 gold-coloured 0 001 & 00394562 a 0000 | having the color of gold -00398271 00 s 02 honey-colored 0 honey-coloured 0 001 & 00394562 a 0000 | having the color of honey -00398373 00 s 01 indigo 0 001 & 00394562 a 0000 | having a color between blue and violet; "indigo flowers" -00398482 00 s 02 lead-colored 0 lead-coloured 0 001 & 00394562 a 0000 | having the color of lead -00398581 00 s 02 liver-colored 0 liver 0 001 & 00394562 a 0000 | having a reddish-brown color -00398677 00 s 04 metal-colored 0 metal-coloured 0 metallic-colored 0 metallic-coloured 0 001 & 00394562 a 0000 | having a metallic color -00398816 00 s 04 monochromatic 0 monochrome 0 monochromic 0 monochromous 0 002 & 00394562 a 0000 + 03783304 n 0201 | having or appearing to have only one color -00398978 00 s 11 motley 0 calico 0 multicolor 0 multi-color 0 multicolour 0 multi-colour 0 multicolored 0 multi-colored 0 multicoloured 0 multi-coloured 0 painted 0 particolored 0 particoloured 0 piebald 0 pied 0 varicolored 0 varicoloured 0 004 & 00394562 a 0000 + 02939763 n 0201 + 03789794 n 0101 + 03789603 n 0101 | having sections or patches colored differently and usually brightly; "a jester dressed in motley"; "the painted desert"; "a particolored dress"; "a piebald horse"; "pied daisies" -00399479 00 s 02 neutral-colored 0 neutral-coloured 0 001 & 00394562 a 0000 | having a color that does not attract attention -00399606 00 s 02 olive-colored 0 olive-coloured 0 001 & 00394562 a 0000 | having the color of green olives -00399715 00 s 03 orange-colored 0 orange-coloured 0 orange-hued 0 001 & 00394562 a 0000 | having the color of ripe oranges -00399840 00 s 01 orange-flowered 0 001 & 00394562 a 0000 | having orange flowers -00399923 00 s 02 pale-colored 0 pale-hued 0 001 & 00394562 a 0000 | having a pale color -00400013 00 s 01 pastel-colored 0 001 & 00394562 a 0000 | having pale delicate colors -00400101 00 s 01 peach-colored 0 001 & 00394562 a 0000 | having the color of a ripe peach -00400193 00 s 03 polychromatic 0 polychrome 0 polychromic 0 001 & 00394562 a 0000 | having or exhibiting many colors -00400312 00 s 01 purple-flowered 0 001 & 00394562 a 0000 | having purple flowers -00400395 00 s 01 red-flowered 0 001 & 00394562 a 0000 | having red flowers -00400472 00 s 01 roan 0 002 & 00394562 a 0000 + 02375302 n 0101 | (used of especially horses) having a brownish coat thickly sprinkled with white or grey; "a roan horse" -00400644 00 s 02 rose-colored 0 rosy-colored 0 001 & 00394562 a 0000 | having a rose color -00400737 00 s 01 rust-colored 0 001 & 00394562 a 0000 | having the brown color of rust -00400826 00 s 01 silver-colored 0 001 & 00394562 a 0000 | having the color of polished silver -00400922 00 s 02 straw-colored 0 straw-coloured 0 001 & 00394562 a 0000 | having the color of dry straw -00401028 00 s 02 tawny-colored 0 tawny-coloured 0 001 & 00394562 a 0000 | having a tawny color -00401125 00 s 03 trichromatic 0 trichrome 0 tricolor 0 001 & 00394562 a 0000 | having or involving three colors; "trichromatic vision"; "a trichromatic printing process"; "trichromatic staining is the staining of tissue samples differentially in three colors"; "tricolor plumage"; "a tricolor process in photography" -00401444 00 s 03 violet-colored 0 violet-coloured 0 violet-flowered 0 001 & 00394562 a 0000 | having a violet color -00401562 00 s 01 violet-purple 0 001 & 00394562 a 0000 | light violet and dark purple -00401650 00 a 02 uncolored 0 uncoloured 0 005 ^ 00386392 a 0000 = 04956594 n 0000 ! 00394562 a 0101 & 00401831 a 0000 & 00401922 a 0000 | without color; "pure water is uncolored" -00401831 00 s 01 achromatous 0 001 & 00401650 a 0000 | having little or inadequate color -00401922 00 s 02 achromic 0 achromous 0 001 & 00401650 a 0000 | having no color -00402004 00 a 01 stained 0 001 ! 00402159 a 0101 | marked or dyed or discolored with foreign matter; "a badly stained tablecloth"; "tear-stained cheeks" -00402159 00 a 01 unstained 0 002 ! 00402004 a 0101 & 00402285 a 0000 | not stained; "An apron keeps his clothing unstained" -00402285 00 s 01 untreated 0 001 & 00402159 a 0000 | (of a specimen for study under a microscope) not treated with a reagent or dye -00402419 00 a 02 colorful 0 colourful 0 012 ^ 00366691 a 0000 = 05193338 n 0000 ! 00404202 a 0101 & 00402731 a 0000 & 00402855 a 0000 & 00403072 a 0000 & 00403385 a 0000 & 00403505 a 0000 & 00403654 a 0000 & 00403819 a 0000 & 00403982 a 0000 & 00404110 a 0000 | having striking color; "colorful autumn leaves" -00402731 00 s 01 ablaze 0 001 & 00402419 a 0000 | resembling flame in brilliance or color; "maple trees ablaze in autumn" -00402855 00 s 03 bright 0 brilliant 0 vivid 0 004 & 00402419 a 0000 + 04975340 n 0304 + 04954920 n 0203 + 04952242 n 0101 | having striking color; "bright dress"; "brilliant tapestries"; "a bird with vivid plumage" -00403072 00 s 04 changeable 0 chatoyant 0 iridescent 0 shot 0 004 & 00402419 a 0000 + 04953678 n 0302 + 02733928 v 0301 + 04733640 n 0101 | varying in color when seen in different lights or from different angles; "changeable taffeta"; "chatoyant (or shot) silk"; "a dragonfly hovered, vibrating and iridescent" -00403385 00 s 02 deep 0 rich 0 002 & 00402419 a 0000 + 04958460 n 0201 | strong; intense; "deep purple"; "a rich red" -00403505 00 s 01 fluorescent 0 002 & 00402419 a 0000 + 02161160 v 0101 | brilliantly colored and apparently giving off light; "fluorescent colors" -00403654 00 s 01 prismatic 0 002 & 00402419 a 0000 + 04005340 n 0101 | exhibiting spectral colors formed by refraction of light through a prism; "prismatic light" -00403819 00 s 01 psychedelic 0 001 & 00402419 a 0000 | having the vivid colors and bizarre patterns associated with psychedelic states; "a psychedelic painting" -00403982 00 s 01 shrill 0 002 & 00402419 a 0000 + 05193621 n 0101 | of colors that are bright and gaudy; "a shrill turquoise" -00404110 00 s 01 vibrant 0 001 & 00402419 a 0000 | of colors that are bright and striking -00404202 00 a 02 colorless 2 colourless 2 016 ^ 00386392 a 0000 = 05193338 n 0000 + 04958634 n 0202 + 04958634 n 0101 ! 00402419 a 0101 & 00404568 a 0000 & 00404961 a 0000 & 00405179 a 0000 & 00405406 a 0000 & 00405554 a 0000 & 00405750 a 0000 & 00405879 a 0000 & 00406140 a 0000 & 00406348 a 0000 & 00406495 a 0000 & 00406743 a 0000 | weak in color; not colorful -00404568 00 s 05 ashen 0 blanched 0 bloodless 0 livid 0 white 0 003 & 00404202 a 0000 + 04977561 n 0401 + 04977561 n 0402 | anemic looking from illness or emotion; "a face turned ashen"; "the invalid's blanched cheeks"; "tried to speak with bloodless lips"; "a face livid with shock"; "lips...livid with the hue of death"- Mary W. Shelley; "lips white with terror"; "a face white with rage" -00404961 00 s 04 bleached 0 faded 0 washed-out 0 washy 0 001 & 00404202 a 0000 | having lost freshness or brilliance of color; "sun-bleached deck chairs"; "faded jeans"; "a very pale washed-out blue"; "washy colors" -00405179 00 s 04 drab 0 sober 0 somber 0 sombre 0 003 & 00404202 a 0000 + 13985462 n 0403 + 13985462 n 0302 | lacking brightness or color; dull; "drab faded curtains"; "sober Puritan grey"; "children in somber brown clothes" -00405406 00 s 02 dulled 0 greyed 0 001 & 00404202 a 0000 | deprived of color; "colors dulled by too much sun"; "greyed with the dust of the road" -00405554 00 s 03 etiolate 0 etiolated 0 blanched 2 002 & 00404202 a 0000 ;c 00017222 n 0000 | (especially of plants) developed without chlorophyll by being deprived of light; "etiolated celery" -00405750 00 s 01 lurid 0 002 & 00404202 a 0000 + 04977561 n 0103 | ghastly pale; "moonlight gave the statue a lurid luminence" -00405879 00 s 03 pale 0 pallid 0 wan 0 004 & 00404202 a 0000 + 04977561 n 0307 + 04977561 n 0205 + 04977561 n 0104 | abnormally deficient in color as suggesting physical or emotional distress; "the pallid face of the invalid"; "her wan face suddenly flushed" -00406140 00 s 02 pasty 0 pastelike 0 002 & 00404202 a 0000 + 14704966 n 0101 | resembling paste in color; pallid; "he looked pasty and red-eyed"; "a complexion that had been pastelike was now chalky white" -00406348 00 s 01 prefaded 0 001 & 00404202 a 0000 | (of fabric or clothing) having been given a faded (weathered) appearance by artificial means -00406495 00 s 03 waxen 0 waxlike 0 waxy 0 001 & 00404202 a 0000 | having the paleness of wax; "the poor face with the same awful waxen pallor"- Bram Stoker; "the soldier turned his waxlike features toward him"; "a thin face with a waxy paleness" -00406743 00 s 02 white 2 whitened 2 001 & 00404202 a 0000 | (of hair) having lost its color; "the white hairs of old age" -00406867 00 a 02 colorful 3 colourful 3 007 ! 00408031 a 0202 ! 00408031 a 0101 & 00407151 a 0000 & 00407420 a 0000 & 00407654 a 0000 & 00407766 a 0000 & 00407887 a 0000 | striking in variety and interest; "a colorful period of history"; "a colorful character"; "colorful language" -00407151 00 s 03 brave 0 braw 0 gay 0 002 & 00406867 a 0000 ;r 08890097 n 0201 | brightly colored and showy; "girls decked out in brave new dresses"; "brave banners flying"; "`braw' is a Scottish word"; "a dress a bit too gay for her years"; "birds with gay plumage" -00407420 00 s 05 flashy 0 gaudy 0 jazzy 0 showy 0 sporty 0 006 & 00406867 a 0000 + 04699936 n 0404 + 04818700 n 0203 + 04690769 n 0202 + 06889330 n 0103 + 04818700 n 0101 | (used especially of clothes) marked by conspicuous display -00407654 00 s 01 many-sided 0 001 & 00406867 a 0000 | full of variety or interest; "a many-sided personality" -00407766 00 s 01 noisy 0 001 & 00406867 a 0000 | attracting attention by showiness or bright colors; "a noisy sweater" -00407887 00 s 01 picturesque 0 002 & 00406867 a 0000 + 04819822 n 0101 | strikingly expressive; "a picturesque description of the rainforest" -00408031 00 a 02 colorless 3 colourless 3 005 ^ 00806512 a 0000 ! 00406867 a 0202 ! 00406867 a 0101 & 00408284 a 0000 & 00408445 a 0000 | lacking in variety and interest; "a colorless and unimaginative person"; "a colorless description of the parade" -00408284 00 s 01 neutral 0 001 & 00408031 a 0000 | lacking distinguishing quality or characteristics; "a neutral personality that made no impression whatever" -00408445 00 s 02 pale 0 pallid 0 001 & 00408031 a 0000 | lacking in vitality or interest or effectiveness; "a pale rendition of the aria"; "pale prose with the faint sweetness of lavender"; "a pallid performance" -00408660 00 a 02 light 5 light-colored 0 008 ^ 00393105 a 0000 = 04979425 n 0000 + 04979758 n 0101 ! 00409440 a 0101 & 00408992 a 0000 & 00409141 a 0000 & 00409207 a 0000 & 00409319 a 0000 | (used of color) having a relatively small amount of coloring agent; "light blue"; "light colors such as pastels"; "a light-colored powder" -00408992 00 s 01 pale 0 002 & 00408660 a 0000 + 04975612 n 0101 | very light colored; highly diluted with white; "pale seagreen"; "pale blue eyes" -00409141 00 s 01 palish 0 001 & 00408660 a 0000 | slightly pale -00409207 00 s 01 pastel 0 002 & 00408660 a 0000 + 04974575 n 0101 | delicate and pale in color; "pastel pink" -00409319 00 s 01 powdery 0 001 & 00408660 a 0000 | as if dulled in color with a sprinkling of powder; "a powdery blue" -00409440 00 a 01 dark 2 005 ^ 00392812 a 0000 = 04979425 n 0000 + 04979870 n 0101 ! 00408660 a 0101 & 00409668 a 0000 | (used of color) having a dark hue; "dark green"; "dark glasses"; "dark colors like wine red or navy blue" -00409668 00 s 01 darkish 0 001 & 00409440 a 0000 | slightly dark; "darkish red" -00409750 00 a 01 chromatic 1 002 ;c 07020895 n 0000 ! 00409889 a 0101 | based on a scale consisting of 12 semitones; "a chromatic scale" -00409889 00 a 01 diatonic 0 002 ;c 07020895 n 0000 ! 00409750 a 0101 | based on the standard major or minor scales consisting of 5 tones and 2 semitones without modulation by accidentals -00410078 00 a 01 cismontane 0 002 ! 00410449 a 0101 & 00410268 a 0000 | on this (the speaker's) side of the mountains; "a contest in Virginia between a cismontane and a tramontane people" -00410268 00 s 02 cisalpine 0 ultramontane 1 001 & 00410078 a 0000 | on the Italian or Roman side of the Alps; "ancient cisalpine Gaul included an area south and east of the Alps" -00410449 00 a 02 tramontane 0 transmontane 0 002 ! 00410078 a 0101 & 00410668 a 0000 | on or coming from the other side of the mountains (from the speaker); "the transmontane section of the state"; "tramontane winds" -00410668 00 s 02 transalpine 0 ultramontane 2 002 & 00410449 a 0000 + 10723731 n 0101 | on or relating to or characteristic of the region or peoples beyond the Alps from Italy (or north of the Alps); "ancient transalpine Gaul was an area northwest of the Alps and included modern France and Belgium"; "Cracow was a transalpine university" -00411009 00 a 01 christian 0 005 + 11083656 n 0105 + 06226057 n 0101 ! 00411481 a 0101 & 00411215 a 0000 & 00411353 a 0000 | following the teachings or manifesting the qualities or spirit of Jesus Christ -00411215 00 s 01 christianly 0 002 & 00411009 a 0000 + 09678009 n 0101 | becoming to or like a Christian; "gentle christianly behavior" -00411353 00 s 02 christlike 0 christly 0 002 & 00411009 a 0000 + 11083656 n 0205 | resembling or showing the spirit of Christ -00411481 00 a 01 unchristian 0 003 ! 00411009 a 0101 & 00411599 a 0000 & 00411694 a 0000 | not of a Christian faith -00411599 00 s 02 christless 0 nonchristian 0 001 & 00411481 a 0000 | not believing in Christ -00411694 00 s 02 unchristianly 0 unchristlike 0 001 & 00411481 a 0000 | not becoming to or like a Christian; "ashamed to have to recognize how unchristianly his assumptions and motives are" -00411886 00 a 02 civilized 0 civilised 0 006 ^ 00829745 a 0000 ^ 01947266 a 0000 ! 00412567 a 0101 & 00412171 a 0000 & 00412355 a 0000 & 00412460 a 0000 | having a high state of culture and development both social and technological; "terrorist acts that shocked the civilized world" -00412171 00 s 01 advanced 0 001 & 00411886 a 0000 | (of societies) highly developed especially in technology or industry; "advanced societies"; "an advanced country technologically" -00412355 00 s 01 civil 0 001 & 00411886 a 0000 | of or in a condition of social order; "civil peoples" -00412460 00 s 01 humane 0 001 & 00411886 a 0000 | showing evidence of moral and intellectual advancement -00412567 00 a 02 noncivilized 0 noncivilised 0 006 ^ 00830717 a 0000 ! 00411886 a 0101 & 00412788 a 0000 & 00413224 a 0000 & 00413312 a 0000 & 00413432 a 0000 | not having a high state of culture and social development -00412788 00 s 06 barbarian 0 barbaric 0 savage 0 uncivilized 0 uncivilised 0 wild 0 008 & 00412567 a 0000 + 13939353 n 0601 + 04907826 n 0601 + 10553402 n 0301 + 05038251 n 0301 + 00424934 n 0202 + 10410815 n 0102 + 10553402 n 0102 | without civilizing influences; "barbarian invaders"; "barbaric practices"; "a savage people"; "fighting is crude and uncivilized especially if the weapons are efficient"-Margaret Meade; "wild tribes" -00413224 00 s 01 barbarous 0 001 & 00412567 a 0000 | primitive in customs and culture -00413312 00 s 02 preliterate 0 nonliterate 0 001 & 00412567 a 0000 | used of a society that has not developed writing -00413432 00 s 01 primitive 0 004 & 00412567 a 0000 ;c 06143546 n 0000 + 09627462 n 0101 + 14472624 n 0103 | used of preliterate or tribal or nonindustrial societies; "primitive societies" -00413622 00 a 02 classical 0 classic 0 004 ;c 06156968 n 0000 ! 00414227 a 0101 & 00413861 a 0000 & 00414080 a 0000 | of or relating to the most highly developed stage of an earlier civilisation and its culture; "classic Cinese pottery" -00413861 00 s 05 classical 1 classic 1 Greco-Roman 0 Graeco-Roman 0 Hellenic 0 001 & 00413622 a 0000 | of or pertaining to or characteristic of the ancient Greek and Roman cultures; "classical mythology"; "classical -00414080 00 s 02 neoclassic 0 neoclassical 0 002 & 00413622 a 0000 + 06154464 n 0201 | characteristic of a revival of an earlier classical style -00414227 00 a 01 nonclassical 0 004 ;c 06156968 n 0000 ! 00413622 a 0101 & 00414354 a 0000 & 00414518 a 0000 | not classical -00414354 00 s 01 modern 0 003 & 00414227 a 0000 + 05050668 n 0101 + 05050668 n 0102 | characteristic of present-day art and music and literature and architecture -00414518 00 s 02 popular 0 pop 0 004 & 00414227 a 0000 ;c 07020895 n 0000 ;c 00933420 n 0000 + 04808639 n 0101 | (of music or art) new and of general appeal (especially among young people) -00414709 00 a 01 classified 1 003 ! 00415002 a 0101 & 00414823 a 0000 & 00414919 a 0000 | arranged into classes -00414823 00 s 02 categorized 0 categorised 0 001 & 00414709 a 0000 | arranged into categories -00414919 00 s 02 grouped 0 sorted 0 001 & 00414709 a 0000 | arranged into groups -00415002 00 a 01 unclassified 1 002 ! 00414709 a 0101 & 00415116 a 0000 | not arranged in any specific grouping -00415116 00 s 03 uncategorized 0 uncategorised 0 unsorted 0 001 & 00415002 a 0000 | not categorized or sorted -00415228 00 a 01 classified 2 007 ! 00416415 a 0101 & 00415543 a 0000 & 00415696 a 0000 & 00415931 a 0000 & 00416045 a 0000 & 00416164 a 0000 & 00416301 a 0000 | official classification of information or documents; withheld from general circulation; "thousands of classified documents have now been declassified" -00415543 00 s 01 eyes-only 0 001 & 00415228 a 0000 | official classification for documents; meant to be seen by only the person to whom it is directed -00415696 00 s 01 confidential 0 002 & 00415228 a 0000 + 14416668 n 0101 | the level of official classification for documents next above restricted and below secret; available only to persons authorized to see documents so classified -00415931 00 s 01 restricted 0 001 & 00415228 a 0000 | the lowest level of official classification for documents -00416045 00 s 01 secret 0 001 & 00415228 a 0000 | the next to highest level of official classification for documents -00416164 00 s 01 sensitive 0 001 & 00415228 a 0000 | of or pertaining to classified information or matters affecting national security -00416301 00 s 01 top-secret 0 001 & 00415228 a 0000 | the highest official level of classification of documents -00416415 00 a 01 unclassified 2 003 ! 00415228 a 0101 & 00416550 a 0000 & 00416651 a 0000 | not subject to a security classification -00416550 00 s 01 declassified 0 001 & 00416415 a 0000 | having had security classification removed -00416651 00 s 02 nonsensitive 0 unrestricted 0 001 & 00416415 a 0000 | never having had security classification -00416765 00 a 01 analyzed 0 001 ! 00417032 a 0101 | examined carefully and methodically; broken down for consideration of constituent parts; "the analyzed data indicated surprising trends"; "a carefully analyzed poem can be like a dead butterfly pinned to a board" -00417032 00 a 01 unanalyzed 0 002 ! 00416765 a 0101 & 00417204 a 0000 | not analyzed or broken down for detailed examination; "an unanalyzed compound"; "unanalyzed data" -00417204 00 s 02 crude 0 raw 0 003 & 00417032 a 0000 + 14462193 n 0202 + 14472624 n 0102 | not processed or subjected to analysis; "raw data"; "the raw cost of production"; "only the crude vital statistics" -00417413 00 a 01 clean 1 015 ^ 02115324 a 0000 ^ 02422685 a 0000 = 14496193 n 0000 + 14496193 n 0101 ! 00419289 a 0101 & 00417898 a 0000 & 00417978 a 0000 & 00418110 a 0000 & 00418198 a 0000 & 00418364 a 0000 & 00418679 a 0000 & 00418809 a 0000 & 00418950 a 0000 & 00419058 a 0000 & 00419175 a 0000 | free from dirt or impurities; or having clean habits; "children with clean shining faces"; "clean white shirts"; "clean dishes"; "a spotlessly clean house"; "cats are clean animals" -00417898 00 s 01 cleanable 0 001 & 00417413 a 0000 | capable of being cleaned -00417978 00 s 01 cleanly 0 002 & 00417413 a 0000 + 04896161 n 0101 | habitually clean; "cleanly in their persons and habitations" -00418110 00 s 01 dry-cleaned 0 001 & 00417413 a 0000 | cleaned with chemical solvents -00418198 00 s 02 fresh 0 unused 0 002 & 00417413 a 0000 + 04926728 n 0101 | not yet used or soiled; "a fresh shirt"; "a fresh sheet of paper"; "an unused envelope" -00418364 00 s 07 immaculate 0 speckless 0 spick-and-span 0 spic-and-span 0 spic 0 spick 0 spotless 0 003 & 00417413 a 0000 + 14496563 n 0701 + 14496563 n 0102 | completely neat and clean; "the apartment was immaculate"; "in her immaculate white uniform"; "a spick-and-span kitchen"; "their spic red-visored caps" -00418679 00 s 01 pristine 0 001 & 00417413 a 0000 | immaculately clean and unused; "handed her his pristine white handkerchief" -00418809 00 s 01 scrubbed 0 001 & 00417413 a 0000 | made clean by scrubbing; "fresh-scrubbed floors"; "boys with scrubbed necks and faces" -00418950 00 s 03 unsoiled 0 unspotted 0 unstained 0 001 & 00417413 a 0000 | without soil or spot or stain -00419058 00 s 01 unsullied 0 001 & 00417413 a 0000 | spotlessly clean and fresh; "the unsullied snow of mountains" -00419175 00 s 02 washed 0 water-washed 0 001 & 00417413 a 0000 | clean by virtue of having been washed in water -00419289 00 a 03 dirty 1 soiled 4 unclean 4 030 ^ 02424254 a 0000 = 14496193 n 0000 + 14497763 n 0302 + 14498096 n 0101 + 14497763 n 0101 ! 00417413 a 0101 & 00420182 a 0000 & 00420287 a 0000 & 00420480 a 0000 & 00420650 a 0000 & 00421002 a 0000 & 00421202 a 0000 & 00421308 a 0000 & 00421383 a 0000 & 00421513 a 0000 & 00421590 a 0000 & 00421875 a 0000 & 00422168 a 0000 & 00422374 a 0000 & 00422546 a 0000 & 00422620 a 0000 & 00422772 a 0000 & 00422870 a 0000 & 00423001 a 0000 & 00423269 a 0000 & 00423431 a 0000 & 00423569 a 0000 & 00423689 a 0000 & 00423781 a 0000 & 00423874 a 0000 | soiled or likely to soil with dirt or grime; "dirty unswept sidewalks"; "a child in dirty overalls"; "dirty slums"; "piles of dirty dishes"; "put his dirty feet on the clean sheet"; "wore an unclean shirt"; "mining is a dirty job"; "Cinderella did the dirty work while her sisters preened themselves" -00420182 00 s 01 Augean 0 002 & 00419289 a 0000 + 09486424 n 0101 | extremely filthy from long neglect -00420287 00 s 02 bedraggled 0 draggled 0 001 & 00419289 a 0000 | limp and soiled as if dragged in the mud; "the beggar's bedraggled clothes"; "scarecrows in battered hats or draggled skirts" -00420480 00 s 02 befouled 0 fouled 0 001 & 00419289 a 0000 | made dirty or foul; "a building befouled with soot"; "breathing air fouled and darkened with factory soot" -00420650 00 s 06 begrimed 0 dingy 0 grimy 0 grubby 0 grungy 0 raunchy 0 007 & 00419289 a 0000 + 14498096 n 0507 + 14498843 n 0402 + 14498096 n 0303 + 14498843 n 0301 + 14498567 n 0202 + 14498567 n 0201 | thickly covered with ingrained dirt or soot; "a miner's begrimed face"; "dingy linen"; "grimy hands"; "grubby little fingers"; "a grungy kitchen" -00421002 00 s 02 black 0 smutty 0 003 & 00419289 a 0000 + 14498972 n 0201 + 04960277 n 0102 | soiled with dirt or soot; "with feet black from playing outdoors"; "his shirt was black within an hour" -00421202 00 s 01 buggy 0 003 & 00419289 a 0000 + 02236355 n 0101 + 14472526 n 0101 | infested with bugs -00421308 00 s 01 cobwebby 0 001 & 00419289 a 0000 | covered with cobwebs -00421383 00 s 01 dirty-faced 0 001 & 00419289 a 0000 | having a dirty face; "a crowd of dirty-faced ragamuffins surrounded him" -00421513 00 s 01 feculent 0 001 & 00419289 a 0000 | foul with waste matter -00421590 00 s 03 filthy 0 foul 0 nasty 0 006 & 00419289 a 0000 + 14495761 n 0304 + 14495761 n 0203 + 14498096 n 0102 + 14495761 n 0101 + 14495761 n 0102 | disgustingly dirty; filled or smeared with offensive matter; "as filthy as a pigsty"; "a foul pond"; "a nasty pigsty of a room" -00421875 00 s 03 flyblown 0 squalid 0 sordid 0 003 & 00419289 a 0000 + 14499111 n 0301 + 14499111 n 0203 | foul and run-down and repulsive; "a flyblown bar on the edge of town"; "a squalid overcrowded apartment in the poorest part of town"; "squalid living conditions"; "sordid shantytowns" -00422168 00 s 02 greasy 0 oily 0 004 & 00419289 a 0000 + 05000116 n 0202 + 14890945 n 0101 + 05000116 n 0101 | smeared or soiled with grease or oil; "greasy coveralls"; "get rid of rubbish and oily rags" -00422374 00 s 01 lousy 0 005 & 00419289 a 0000 + 02185481 n 0103 + 02251775 n 0102 + 02183857 n 0101 + 14454450 n 0102 | infested with lice; "burned their lousy clothes" -00422546 00 s 01 maculate 0 001 & 00419289 a 0000 | spotted or blotched -00422620 00 s 02 mucky 0 muddy 0 002 & 00419289 a 0000 + 14956661 n 0108 | dirty and messy; covered with mud or muck; "muddy boots"; "a mucky stable" -00422772 00 s 01 ratty 0 002 & 00419289 a 0000 + 02331046 n 0101 | dirty and infested with rats -00422870 00 s 01 scummy 0 002 & 00419289 a 0000 + 04157703 n 0101 | covered with scum; "the scummy surface of the polluted pond" -00423001 00 s 01 smudgy 0 002 & 00419289 a 0000 + 04694441 n 0101 | smeared with something that soils or stains; these words are often used in combination; "oil-smeared work clothes"; "hostile faces smirched by the grime and rust"- Henry Roth; "ink-smudged fingers" -00423269 00 s 02 snotty 0 snot-nosed 0 002 & 00419289 a 0000 + 05416048 n 0101 | dirty with nasal discharge; "a snotty nose"; "a house full of snot-nosed kids" -00423431 00 s 01 sooty 0 003 & 00419289 a 0000 + 14498972 n 0102 + 14793533 n 0103 | covered with or as if with soot; "a sooty chimney" -00423569 00 s 02 travel-soiled 0 travel-stained 0 001 & 00419289 a 0000 | soiled from travel; "travel-soiled clothes" -00423689 00 s 01 uncleanly 0 002 & 00419289 a 0000 + 04896724 n 0101 | habitually unclean -00423781 00 s 01 unswept 0 001 & 00419289 a 0000 | not having been swept; "unswept floors" -00423874 00 s 01 unwashed 0 001 & 00419289 a 0000 | not cleaned with or as if with soap and water; "a sink full of unwashed dishes" -00424008 00 a 02 clean 2 unobjectionable 2 003 ^ 00682932 a 0000 ! 00424370 a 0101 & 00424240 a 0000 | (of behavior or especially language) free from objectionable elements; fit for all observers; "good clean fun"; "a clean joke" -00424240 00 s 01 antiseptic 0 001 & 00424008 a 0000 | devoid of objectionable language; "lyrics as antiseptic as Sunday School" -00424370 00 a 01 dirty 2 011 ^ 00683185 a 0000 + 04903678 n 0102 ! 00424008 a 0101 & 00424787 a 0000 & 00425002 a 0000 & 00425234 a 0000 & 00425313 a 0000 & 00425588 a 0000 & 00425740 a 0000 & 00426068 a 0000 & 00426186 a 0000 | (of behavior or especially language) characterized by obscenity or indecency; "dirty words"; "a dirty old man"; "dirty books and movies"; "boys telling dirty jokes"; "has a dirty mouth" -00424787 00 s 03 bawdy 0 off-color 0 ribald 0 005 & 00424370 a 0000 + 10528969 n 0301 + 07124736 n 0102 + 10485440 n 0105 + 04903368 n 0103 | humorously vulgar; "bawdy songs"; "off-color jokes"; "ribald language" -00425002 00 s 03 blasphemous 0 blue 2 profane 0 004 & 00424370 a 0000 + 04856014 n 0301 + 07128527 n 0301 + 07124172 n 0101 | characterized by profanity or cursing; "foul-mouthed and blasphemous"; "blue language"; "profane words" -00425234 00 s 01 dirty-minded 0 001 & 00424370 a 0000 | having lewd thoughts -00425313 00 s 05 cruddy 0 filthy 0 foul 0 nasty 0 smutty 0 007 & 00424370 a 0000 + 04903678 n 0501 + 07124340 n 0502 + 00747215 n 0505 + 04842515 n 0405 + 07124340 n 0204 + 04852962 n 0201 | characterized by obscenity; "had a filthy mouth"; "foul language"; "smutty jokes" -00425588 00 s 02 foul-mouthed 0 foul-spoken 0 001 & 00424370 a 0000 | using foul or obscene language; "noisy foul-mouthed women all shouting at once" -00425740 00 s 04 lewd 0 obscene 0 raunchy 0 salacious 0 006 & 00424370 a 0000 + 04903368 n 0404 + 04903368 n 0405 + 04817280 n 0306 + 04903368 n 0201 + 04903368 n 0102 | suggestive of or tending to moral looseness; "lewd whisperings of a dirty old man"; "an indecent gesture"; "obscene telephone calls"; "salacious limericks" -00426068 00 s 01 scabrous 0 001 & 00424370 a 0000 | dealing with salacious or indecent material; "a scabrous novel" -00426186 00 s 01 scatological 0 002 & 00424370 a 0000 + 07124928 n 0101 | dealing pruriently with excrement and excretory functions; "scatological literature" -00426347 00 a 02 clean 3 uncontaminating 2 002 + 14496193 n 0101 ! 00426608 a 0101 | not spreading pollution or contamination; especially radioactive contamination; "a clean fuel"; "cleaner and more efficient engines"; "the tactical bomb is reasonably clean" -00426608 00 a 02 dirty 3 contaminating 2 003 + 14498096 n 0101 + 14488004 n 0101 ! 00426347 a 0101 | spreading pollution or contamination; especially radioactive contamination; "the air near the foundry was always dirty"; "a dirty bomb releases enormous amounts of long-lived radioactive fallout" -00426907 00 a 01 radioactive 0 003 + 13545184 n 0102 ! 00427255 a 0101 & 00427105 a 0000 | exhibiting or caused by radioactivity; "radioactive isotope"; "radioactive decay"; "radioactive fallout" -00427105 00 s 01 hot 0 001 & 00426907 a 0000 | having or dealing with dangerously high levels of radioactivity; "hot fuel rods"; "a hot laboratory" -00427255 00 a 01 nonradioactive 0 001 ! 00426907 a 0101 | not radioactive -00427331 00 a 01 clean 4 006 ^ 00417413 a 0000 ^ 01905653 a 0000 ;c 05946687 n 0000 ! 00427786 a 0101 & 00427496 a 0000 & 00427644 a 0000 | ritually clean or pure -00427496 00 s 01 halal 0 003 & 00427331 a 0000 ;c 06234825 n 0000 + 07664582 n 0101 | conforming to dietary laws; "halal meat"; "a halal kitchen" -00427644 00 s 02 kosher 0 cosher 0 002 & 00427331 a 0000 ;c 06232880 n 0000 | conforming to dietary laws; "kosher meat"; "a kosher kitchen" -00427786 00 a 02 unclean 0 impure 3 007 ^ 01908039 a 0000 ;c 05946687 n 0000 + 14487184 n 0202 + 14497763 n 0102 ! 00427331 a 0101 & 00428121 a 0000 & 00428243 a 0000 | having a physical or moral blemish so as to make impure according to dietary or ceremonial laws; "unclean meat"; "and the swine...is unclean to you"-Leviticus 11:3 -00428121 00 s 03 nonkosher 0 tref 0 terefah 0 002 & 00427786 a 0000 ;c 06232880 n 0000 | not conforming to dietary laws -00428243 00 s 01 untouchable 0 002 & 00427786 a 0000 + 10739881 n 0101 | ( especially used in traditional Hindu belief of the lowest caste or castes) defiling -00428404 00 a 01 clear 0 014 ^ 00532892 a 0000 ^ 00700451 a 0000 ^ 00779374 a 0000 ^ 00103696 a 0000 = 04820258 n 0000 + 04820258 n 0101 + 04820258 n 0105 ! 00430191 a 0101 & 00428878 a 0000 & 00429016 a 0000 & 00429355 a 0000 & 00429793 a 0000 & 00429909 a 0000 & 00430041 a 0000 | readily apparent to the mind; "a clear and present danger"; "a clear explanation"; "a clear case of murder"; "a clear indication that she was angry"; "gave us a clear idea of human nature" -00428878 00 s 02 broad 0 unsubtle 0 001 & 00428404 a 0000 | lacking subtlety; obvious; "gave us a broad hint that it was time to leave" -00429016 00 s 03 clear-cut 0 distinct 0 trenchant 0 004 & 00428404 a 0000 + 05199680 n 0302 + 04702688 n 0201 + 04821451 n 0102 | clearly or sharply defined to the mind; "clear-cut evidence of tampering"; "Claudius was the first to invade Britain with distinct...intentions of conquest"; "trenchant distinctions between right and wrong" -00429355 00 s 06 limpid 0 lucid 0 luculent 0 pellucid 0 crystal_clear 0 perspicuous 0 007 & 00428404 a 0000 ;c 06282651 n 0000 + 04821615 n 0602 + 04821615 n 0601 + 04820258 n 0404 + 04820258 n 0202 + 04820258 n 0106 | (of language) transparently clear; easily understandable; "writes in a limpid style"; "lucid directions"; "a luculent oration"- Robert Burton; "pellucid prose"; "a crystal clear explanation"; "a perspicuous argument" -00429793 00 s 01 prima_facie 0 001 & 00428404 a 0000 | as it seems at first sight; "a prima facie case of murder" -00429909 00 s 01 unmistakable 0 001 & 00428404 a 0000 | clearly evident to the mind; "his opposition to slavery was unmistakable" -00430041 00 s 01 vivid 0 002 & 00428404 a 0000 + 05193338 n 0103 | having the clarity and freshness of immediate experience; "a vivid recollection" -00430191 00 a 01 unclear 0 011 ^ 00102201 a 0000 ^ 00701479 a 0000 ^ 00533851 a 0000 ^ 00781168 a 0000 ^ 00433115 a 0000 = 04820258 n 0000 + 04823866 n 0101 ! 00428404 a 0101 & 00430545 a 0000 & 00430756 a 0000 & 00431004 a 0000 | not clear to the mind; "the law itself was unclear on that point"; "the reason for their actions is unclear to this day" -00430545 00 s 02 blurred 0 clouded 0 001 & 00430191 a 0000 | unclear in form or expression; "the blurred aims of the group"; "sometimes one understood clearly and sometimes the meaning was clouded"- H.G.Wells -00430756 00 s 03 confusing 0 perplexing 0 puzzling 0 001 & 00430191 a 0000 | lacking clarity of meaning; causing confusion or perplexity; "sent confusing signals to Iraq"; "perplexing to someone who knew nothing about it"; "a puzzling statement" -00431004 00 s 02 obscure 0 vague 0 004 & 00430191 a 0000 + 04824350 n 0201 + 04823416 n 0102 + 04823416 n 0101 | not clearly understood or expressed; "an obscure turn of phrase"; "an impulse to go off and fight certain obscure battles of his own spirit"-Anatole Broyard; "their descriptions of human behavior become vague, dull, and unclear"- P.A.Sorokin; "vague...forms of speech...have so long passed for mysteries of science"- John Locke -00431447 00 a 01 clear 2 010 = 04701460 n 0000 + 04701460 n 0102 + 04701460 n 0101 ! 00433115 a 0101 & 00431774 a 0000 & 00432251 a 0000 & 00432453 a 0000 & 00432626 a 0000 & 00432861 a 0000 & 00432998 a 0000 | allowing light to pass through; "clear water"; "clear plastic bags"; "clear glass"; "the air is clear and clean" -00431774 00 s 06 crystalline 0 crystal_clear 0 limpid 0 lucid 0 pellucid 0 transparent 0 008 & 00431447 a 0000 + 11520619 n 0601 + 04702127 n 0603 + 11520619 n 0602 + 04702127 n 0602 + 04701943 n 0502 + 04701943 n 0501 + 04701943 n 0303 | transmitting light; able to be seen through with clarity; "the cold crystalline water of melted snow"; "crystal clear skies"; "could see the sand on the bottom of the limpid pool"; "lucid air"; "a pellucid brook"; "transparent crystal" -00432251 00 s 02 hyaline 0 hyaloid 0 002 & 00431447 a 0000 + 14909703 n 0101 | resembling glass in transparency or translucency; "the morning is as clear as diamond or as hyaline"-Sacheverell Sitwell -00432453 00 s 02 liquid 0 limpid 2 001 & 00431447 a 0000 | clear and bright; "the liquid air of a spring morning"; "eyes shining with a liquid luster"; "limpid blue eyes" -00432626 00 s 02 translucent 0 semitransparent 0 004 & 00431447 a 0000 + 04702351 n 0203 + 04702351 n 0102 + 04702351 n 0101 | allowing light to pass through diffusely; "translucent amber"; "semitransparent curtains at the windows" -00432861 00 s 01 unclouded 0 002 & 00431447 a 0000 + 04701460 n 0103 | not made opaque or cloudy by sediment; "the wine was unclouded" -00432998 00 s 01 unfrosted 0 001 & 00431447 a 0000 | (of glass) lacking a frosted coating; "unfrosted light bulbs" -00433115 00 a 01 opaque 0 014 ^ 00430191 a 0000 = 04703424 n 0000 + 11490058 n 0101 + 04703424 n 0101 + 04703424 n 0102 ! 00431447 a 0101 & 00433529 a 0000 & 00433811 a 0000 & 00433972 a 0000 & 00434097 a 0000 & 00434265 a 0000 & 00434384 a 0000 & 00434524 a 0000 & 00434597 a 0000 | not transmitting or reflecting light or radiant energy; impenetrable to sight; "opaque windows of the jail"; "opaque to X-rays" -00433529 00 s 05 cloudy 0 muddy 0 mirky 0 murky 0 turbid 0 007 & 00433115 a 0000 + 04703932 n 0502 + 04703932 n 0501 + 14521648 n 0403 + 04703698 n 0402 + 04703698 n 0203 + 04703698 n 0101 | (of liquids) clouded as with sediment; "a cloudy liquid"; "muddy coffee"; "murky waters" -00433811 00 s 02 fogged 0 foggy 0 003 & 00433115 a 0000 + 14521648 n 0201 + 04704346 n 0204 | obscured by fog; "he could barely see through the fogged window" -00433972 00 s 01 frosted 0 001 & 00433115 a 0000 | (of glass) having a roughened coating resembling frost; "frosted glass" -00434097 00 s 01 glaucous 0 001 & 00433115 a 0000 | having a frosted look from a powdery coating, as on plants; "glaucous stems"; "glaucous plums"; "glaucous grapes" -00434265 00 s 02 lightproof 0 light-tight 0 001 & 00433115 a 0000 | not penetrable by light; "lightproof containers" -00434384 00 s 03 milky 0 milklike 0 whitish 0 002 & 00433115 a 0000 + 07844042 n 0101 | resembling milk in color not clear; "milky glass" -00434524 00 s 01 semiopaque 0 001 & 00433115 a 0000 | partially opaque -00434597 00 s 01 solid 0 001 & 00433115 a 0000 | impenetrable for the eye; "solid blackness" -00434692 00 a 01 radiolucent 0 001 ! 00434838 a 0101 | almost complete transparent to X-rays or other forms of radiation; "radiolucent tissues" -00434838 00 a 02 radiopaque 0 radio-opaque 0 002 + 11490335 n 0101 ! 00434692 a 0101 | not transparent to X-rays or other forms of radiation; "barium sulfate is radiopaque" -00435013 00 a 02 clearheaded 0 clear-thinking 0 003 ! 00435492 a 0101 & 00435190 a 0000 & 00435374 a 0000 | not mentally confused; able to think clearly and act intelligently -00435190 00 s 01 clear 0 002 & 00435013 a 0000 + 04820258 n 0105 | free from confusion or doubt; "a complex problem requiring a clear head"; "not clear about what is expected of us" -00435374 00 s 01 unclouded 0 002 & 00435013 a 0000 + 04701460 n 0103 | not mentally disordered; "an unclouded mind" -00435492 00 a 01 confused 0 012 ^ 01765643 a 0000 + 05683582 n 0103 ! 00435013 a 0101 & 00435872 a 0000 & 00436115 a 0000 & 00436385 a 0000 & 00436544 a 0000 & 00436645 a 0000 & 00436920 a 0000 & 00437149 a 0000 & 00437223 a 0000 & 00437419 a 0000 | mentally confused; unable to think with clarity or act intelligently; "the flood of questions left her bewildered and confused" -00435872 00 s 04 addlebrained 0 addlepated 0 puddingheaded 0 muddleheaded 0 001 & 00435492 a 0000 | stupid and confused; "blathering like the addlepated nincompoop that you are"; "a confused puddingheaded, muddleheaded fellow"- Isaac Sterne -00436115 00 s 08 addled 0 befuddled 1 muddled 0 muzzy 0 woolly 0 wooly 0 woolly-headed 0 wooly-minded 0 001 & 00435492 a 0000 | confused and vague; used especially of thinking; "muddleheaded ideas"; "your addled little brain"; "woolly thinking"; "woolly-headed ideas" -00436385 00 s 02 befogged 0 befuddled 2 001 & 00435492 a 0000 | stupefied by alcoholic drink; "the wino's poor befuddled mind"; "a mind befogged with drink" -00436544 00 s 01 clouded 0 001 & 00435492 a 0000 | mentally disordered; "a mind clouded by sorrow" -00436645 00 s 04 dazed 0 stunned 0 stupefied 0 stupid(p) 0 001 & 00435492 a 0000 | in a state of mental numbness especially as resulting from shock; "he had a dazed expression on his face"; "lay semiconscious, stunned (or stupefied) by the blow"; "was stupid from fatigue" -00436920 00 s 01 dazzled 0 001 & 00435492 a 0000 | stupefied or dizzied by something overpowering; "I fall back dazzled at beholding myself all rosy red, / At having, I myself, caused the sun to rise."- `Chanticler' by Rostand -00437149 00 s 01 trancelike 0 001 & 00435492 a 0000 | as if in a trance -00437223 00 s 03 punch-drunk 0 silly 0 slaphappy 0 002 & 00435492 a 0000 ;u 07075172 n 0000 | dazed from or as if from repeated blows; "knocked silly by the impact"; "slaphappy with exhaustion" -00437419 00 s 01 spaced-out 0 001 & 00435492 a 0000 | confused or disoriented as if intoxicated through taking a drug -00437539 00 a 01 clement 1 004 ^ 01507134 a 0000 + 01071411 n 0101 ! 00437852 a 0101 & 00437744 a 0000 | (used of persons or behavior) inclined to show mercy; "a more clement judge reduced the sentence" -00437744 00 s 01 lenient 0 002 & 00437539 a 0000 + 04829922 n 0102 | characterized by tolerance and mercy -00437852 00 a 01 inclement 1 004 ^ 01507402 a 0000 + 04639732 n 0108 ! 00437539 a 0101 & 00438063 a 0000 | used of persons or behavior; showing no clemency or mercy; "the harsh sentence of an inclement judge" -00438063 00 s 01 unsparing 0 001 & 00437852 a 0000 | not forbearing; ruthless; "an unsparing critic" -00438166 00 a 01 clement 2 004 ^ 02402559 a 0000 + 14522408 n 0102 ! 00438567 a 0101 & 00438332 a 0000 | (of weather or climate) physically mild; "clement weather" -00438332 00 s 03 balmy 0 mild 0 soft 0 004 & 00438166 a 0000 + 14522570 n 0302 + 14522408 n 0201 + 14896923 n 0101 | mild and pleasant; "balmy days and nights"; "the climate was mild and conducive to life or growth"; "a soft breeze" -00438567 00 a 01 inclement 2 004 ^ 02403030 a 0000 ! 00438166 a 0101 + 14523090 n 0103 + 14523090 n 0102 | (of weather or climate) severe -00438707 00 a 01 smart 0 006 ^ 01334398 a 0000 + 05620955 n 0103 ! 00439588 a 0101 & 00438909 a 0000 & 00439252 a 0000 & 00439431 a 0000 | showing mental alertness and calculation and resourcefulness -00438909 00 s 03 astute 0 sharp 0 shrewd 0 004 & 00438707 a 0000 + 05621439 n 0301 + 05620468 n 0203 + 05621439 n 0102 | marked by practical hardheaded intelligence; "a smart businessman"; "an astute tenant always reads the small print in a lease"; "he was too shrewd to go along with them on a road that could lead only to their overthrow" -00439252 00 s 04 cagey 0 cagy 0 canny 0 clever 0 001 & 00438707 a 0000 | showing self-interest and shrewdness in dealing with others; "a cagey lawyer"; "too clever to be sound" -00439431 00 s 03 streetwise 0 street_smart 0 with-it 0 001 & 00438707 a 0000 | having the shrewd resourcefulness needed to survive in an urban environment -00439588 00 a 01 stupid 0 013 ^ 01336587 a 0000 + 10667187 n 0101 + 05645597 n 0101 ! 00438707 a 0101 & 00439905 a 0000 & 00440292 a 0000 & 00440489 a 0000 & 00440579 a 0000 & 00441154 a 0000 & 00441272 a 0000 & 00441365 a 0000 & 00441523 a 0000 & 00441630 a 0000 | lacking or marked by lack of intellectual acuity -00439905 00 s 08 anserine 0 dopy 1 dopey 1 foolish 0 goosey 0 goosy 0 gooselike 0 jerky 0 008 & 00439588 a 0000 ;u 07075172 n 0000 + 10221040 n 0801 + 10157744 n 0606 + 10157744 n 0506 + 04891333 n 0402 + 10039391 n 0303 + 10039391 n 0203 | having or revealing stupidity; "ridiculous anserine behavior"; "a dopey answer"; "a dopey kid"; "some fool idea about rewriting authors' books" -00440292 00 s 0a blockheaded 0 boneheaded 0 duncical 0 duncish 0 fatheaded 0 loggerheaded 0 thick 0 thickheaded 0 thick-skulled 0 wooden-headed 0 001 & 00439588 a 0000 | (used informally) stupid -00440489 00 s 02 cloddish 0 doltish 0 001 & 00439588 a 0000 | heavy and dull and stupid -00440579 00 s 06 dense 0 dim 0 dull 0 dumb 0 obtuse 0 slow 0 007 & 00439588 a 0000 + 05648459 n 0606 + 05646218 n 0604 + 05646039 n 0502 + 05645854 n 0402 + 05646039 n 0301 + 05645854 n 0101 | slow to learn or understand; lacking intellectual acuity; "so dense he never understands anything I say to him"; "never met anyone quite so dim"; "although dull at classical learning, at mathematics he was uncommonly quick"- Thackeray; "dumb officials make some really dumb decisions"; "he was either normally stupid or being deliberately obtuse"; "worked with the slow students" -00441154 00 s 02 gaumless 0 gormless 0 001 & 00439588 a 0000 | (British informal) lacking intelligence and vitality -00441272 00 s 03 lumpish 0 lumpen 0 unthinking 0 001 & 00439588 a 0000 | mentally sluggish -00441365 00 s 04 nitwitted 0 senseless 0 soft-witted 0 witless 0 001 & 00439588 a 0000 | (of especially persons) lacking sense or understanding or judgment -00441523 00 s 01 weak 0 001 & 00439588 a 0000 | deficient in intelligence or mental power; "a weak mind" -00441630 00 s 01 yokel-like 0 001 & 00439588 a 0000 | stupid and ignorant like proverbial rural inhabitants; "the boy's empty yokel-like expression" -00441781 00 a 01 clockwise 0 003 ^ 00742879 a 0000 ! 00442057 a 0101 & 00441927 a 0000 | in the same direction as the rotating hands of a clock -00441927 00 s 03 dextrorotary 0 dextrorotatory 0 right-handed 0 002 & 00441781 a 0000 + 05067514 n 0301 | rotating to the right -00442057 00 a 03 counterclockwise 0 anticlockwise 0 contraclockwise 0 003 ^ 00743435 a 0000 ! 00441781 a 0101 & 00442255 a 0000 | in the direction opposite to the rotation of the hands of a clock -00442255 00 s 03 levorotary 0 levorotatory 0 left-handed 0 001 & 00442057 a 0000 | rotating to the left -00442361 00 a 01 far 0 012 = 05084201 n 0000 + 05085165 n 0101 ! 00444519 a 0101 & 00442827 a 0000 & 00442917 a 0000 & 00443075 a 0000 & 00443274 a 0000 & 00443490 a 0000 & 00443618 a 0000 & 00443988 a 0000 & 00444220 a 0000 & 00444399 a 0000 | located at a great distance in time or space or degree; "we come from a far country"; "far corners of the earth"; "the far future"; "a far journey"; "the far side of the road"; "far from the truth"; "far in the future" -00442827 00 s 01 cold 0 001 & 00442361 a 0000 | of a seeker; far from the object sought -00442917 00 s 02 distant 1 remote 1 003 & 00442361 a 0000 + 05085165 n 0202 + 05084201 n 0101 | located far away spatially; "distant lands"; "remote stars" -00443075 00 s 03 distant 2 remote 2 removed 2 004 & 00442361 a 0000 + 15172212 n 0101 + 15172423 n 0101 + 05085165 n 0202 | separate or apart in time; "distant events"; "the remote past or future" -00443274 00 s 02 faraway 0 far-off 1 002 & 00442361 a 0000 + 05085165 n 0103 | very far away in space or time; "faraway mountains"; "the faraway future"; "troops landing on far-off shores"; "far-off happier times" -00443490 00 s 01 farther 1 001 & 00442361 a 0000 | more distant in especially space or time; "they live in the farther house" -00443618 00 s 06 farthermost 0 farthest 0 furthermost 0 furthest 0 utmost 0 uttermost 0 002 & 00442361 a 0000 ;u 06322693 n 0000 | (comparatives of `far') most remote in space or time or order; "had traveled to the farthest frontier"; "don't go beyond the farthermost (or furthermost) tree"; "explored the furthest reaches of space"; "the utmost tip of the peninsula" -00443988 00 s 02 further 0 farther 2 001 & 00442361 a 0000 | more distant in especially degree; "nothing could be further from the truth"; "further from our expectations"; "farther from the truth"; "farther from our expectations" -00444220 00 s 02 off_the_beaten_track(p) 0 out-of-the-way(a) 0 001 & 00442361 a 0000 | remote from populous or much-traveled regions; "they found a quiet out-of-the-way resort" -00444399 00 s 01 outlying(a) 0 001 & 00442361 a 0000 | relatively far from a center or middle; "outlying settlements" -00444519 00 a 03 near 0 close 5 nigh 0 008 = 05084201 n 0000 + 05085572 n 0202 + 05085572 n 0101 ! 00442361 a 0101 & 00444984 a 0000 & 00445169 a 0000 & 00445308 a 0000 & 00445440 a 0000 | not far distant in time or space or degree or circumstances; "near neighbors"; "in the near future"; "they are near equals"; "his nearest approach to success"; "a very near thing"; "a near hit by the bomb"; "she was near tears"; "she was close to tears"; "had a close call" -00444984 00 s 01 adjacent 0 002 & 00444519 a 0000 + 05085991 n 0101 | near or close to but not necessarily touching; "lands adjacent to the mountains"; "New York and adjacent cities" -00445169 00 s 01 nearby 0 001 & 00444519 a 0000 | close at hand; "the nearby towns"; "concentrated his study on the nearby planet Venus" -00445308 00 s 01 warm 0 001 & 00444519 a 0000 | of a seeker; near to the object sought; "you're getting warm"; "hot on the trail" -00445440 00 s 01 hot 0 001 & 00444519 a 0000 | of a seeker; very near to the object sought; "you are hot" -00445548 00 a 01 distant 1 011 ^ 00442361 a 0000 = 05084201 n 0000 + 15172423 n 0101 ! 00446921 a 0101 & 00445937 a 0000 & 00446107 a 0000 & 00446236 a 0000 & 00446333 a 0000 & 00446525 a 0000 & 00446605 a 0000 & 00446758 a 0000 | separated in space or coming from or going to a distance; "distant villages"; "the sound of distant traffic"; "a distant sound"; "a distant telephone call" -00445937 00 s 01 deep 0 001 & 00445548 a 0000 | very distant in time or space; "deep in the past"; "deep in enemy territory"; "deep in the woods"; "a deep space probe" -00446107 00 s 01 extreme 0 002 & 00445548 a 0000 + 08568978 n 0101 | most distant in any direction; "the extreme edge of town" -00446236 00 s 01 far-flung 0 001 & 00445548 a 0000 | remote; "far-flung corners of the Empire" -00446333 00 s 01 long-distance 0 001 & 00445548 a 0000 | covering a long distance; "a long-distance runner"; "a long-distance freight train"; "she ran off with a long-distance truck driver" -00446525 00 s 01 nonadjacent 0 001 & 00445548 a 0000 | not adjacent; not next -00446605 00 s 01 out-of-town 0 001 & 00445548 a 0000 | happening in or being of another town or city; "an out-of-town tryout"; "an out-of-town school" -00446758 00 s 02 yonder 0 yon 0 001 & 00445548 a 0000 | distant but within sight (`yon' is dialectal); "yonder valley"; "the hills yonder"; "what is yon place?" -00446921 00 a 01 close 1 020 = 05084201 n 0000 + 05085572 n 0102 ! 00445548 a 0101 & 00447472 a 0000 & 00447753 a 0000 & 00447909 a 0000 & 00448130 a 0000 & 00448314 a 0000 & 00448644 a 0000 & 00448777 a 0000 & 00448924 a 0000 & 00449079 a 0000 & 00449332 a 0000 & 00449525 a 0000 & 00449662 a 0000 & 00449769 a 0000 & 00449889 a 0000 & 00450147 a 0000 & 00450269 a 0000 & 00450402 a 0000 | at or within a short distance in space or time or having elements near each other; "close to noon"; "how close are we to town?"; "a close formation of ships" -00447472 00 s 03 adjacent 0 next 0 side_by_side(p) 0 002 & 00446921 a 0000 + 05085991 n 0101 | nearest in space or position; immediately adjoining without intervening space; "had adjacent rooms"; "in the next room"; "the person sitting next to me"; "our rooms were side by side" -00447753 00 s 01 ambient 1 002 & 00446921 a 0000 + 14524849 n 0103 | completely enveloping; "the ambient air"; "ambient sound"; "the ambient temperature" -00447909 00 s 02 appressed 0 adpressed 0 001 & 00446921 a 0000 | pressed close to or lying flat against something; "adpressed hairs along the plant's stem"; "igneous rocks...closely appressed by this force"-L.V.Pirsson -00448130 00 s 02 approximate 0 close_together(p) 0 001 & 00446921 a 0000 | located close together; "with heads close together"; "approximate leaves grow together but are not united" -00448314 00 s 05 at_hand(p) 1 close_at_hand(p) 1 imminent 0 impendent 0 impending 0 004 & 00446921 a 0000 + 14030820 n 0405 + 14030820 n 0302 + 14030820 n 0301 | close in time; about to occur; "retribution is at hand"; "some people believe the day of judgment is close at hand"; "in imminent danger"; "his impending retirement" -00448644 00 s 02 at_hand(p) 2 close_at_hand(p) 0 001 & 00446921 a 0000 | close in space; within reach; "the town is close at hand" -00448777 00 s 01 close-hauled 0 002 & 00446921 a 0000 ;c 00314469 n 0000 | having the sails trimmed for sailing as close to the wind as possible -00448924 00 s 02 close-set(a) 0 close_set(p) 0 001 & 00446921 a 0000 | set close together; "close-set eyes"; "close-set teeth"; "her eyes are close set" -00449079 00 s 02 contiguous 0 immediate 0 004 & 00446921 a 0000 + 04918767 n 0202 + 05085991 n 0103 + 05085991 n 0102 | very close or connected in space or time; "contiguous events"; "immediate contact"; "the immediate vicinity"; "the immediate past" -00449332 00 s 03 encompassing(a) 0 surrounding(a) 0 circumferent 0 002 & 00446921 a 0000 + 08514592 n 0301 | closely encircling; "encompassing mountain ranges"; "the surrounding countryside" -00449525 00 s 01 enveloping(a) 0 001 & 00446921 a 0000 | surrounding and closing in on or hemming in; "the army's enveloping maneuver" -00449662 00 s 01 hand-to-hand 0 001 & 00446921 a 0000 | being at close quarters; "hand-to-hand fighting" -00449769 00 s 01 juxtaposed 0 001 & 00446921 a 0000 | placed side by side often for comparison; "juxtaposed pictures" -00449889 00 s 02 nestled 0 snuggled 0 001 & 00446921 a 0000 | drawn or pressed close to someone or something for or as if for affection or protection; "saw a number of small houses nestled against the hillside"; "like a baby snuggled in its mother's arms" -00450147 00 s 01 proximate 0 001 & 00446921 a 0000 | very close in space or time; "proximate words"; "proximate houses" -00450269 00 s 01 scalelike 0 001 & 00446921 a 0000 | reduced to a small appressed thing that resembles a scale; "scalelike leaves" -00450402 00 s 02 walk-to(a) 0 walking(a) 0 001 & 00446921 a 0000 | close enough to be walked to; "walking distance"; "the factory with the big parking lot...is more convenient than the walk-to factory" -00450606 00 a 02 distant 2 remote 0 005 ! 00451510 a 0101 & 00450915 a 0000 & 00451032 a 0000 & 00451155 a 0000 & 00451291 a 0000 | far apart in relevance or relationship or kinship ; "a distant cousin"; "a remote relative"; "a distant likeness"; "considerations entirely removed (or remote) from politics" -00450915 00 s 01 faraway 0 001 & 00450606 a 0000 | far removed mentally; "a faraway (or distant) look in her eyes" -00451032 00 s 01 loosely_knit 0 001 & 00450606 a 0000 | having only distant social or legal ties; "a loosely knit group" -00451155 00 s 01 removed(p) 2 001 & 00450606 a 0000 | separated in relationship by a given degree of descent; "a cousin once removed" -00451291 00 s 01 ulterior 0 001 & 00450606 a 0000 | beyond or outside an area of immediate interest; remote; "a suggestion ulterior to the present discussion"; "without...any purpose, immediate or ulterior"- G.B.Shaw -00451510 00 a 01 close 2 011 + 07530124 n 0101 ! 00450606 a 0101 & 00451872 a 0000 & 00452020 a 0000 & 00452114 a 0000 & 00452407 a 0000 & 00452605 a 0000 & 00452773 a 0000 & 00452883 a 0000 & 00453053 a 0000 & 00453308 a 0000 | close in relevance or relationship; "a close family"; "we are all...in close sympathy with..."; "close kin"; "a close resemblance" -00451872 00 s 02 approximate 0 near 2 001 & 00451510 a 0000 | very close in resemblance; "sketched in an approximate likeness"; "a near likeness" -00452020 00 s 01 boon 0 001 & 00451510 a 0000 | very close and convivial; "boon companions" -00452114 00 s 03 chummy 0 buddy-buddy 0 thick(p) 0 004 & 00451510 a 0000 ;u 07075172 n 0000 + 09877951 n 0103 + 04653627 n 0101 | (used informally) associated on close terms; "a close friend"; "the bartender was chummy with the regular customers"; "the two were thick as thieves for months" -00452407 00 s 02 close-knit 0 closely_knit 0 001 & 00451510 a 0000 | held together as by social or cultural ties; "a close-knit family"; "close-knit little villages"; "the group was closely knit" -00452605 00 s 01 confidential 0 002 & 00451510 a 0000 + 07526505 n 0101 | denoting confidence or intimacy; "a confidential approach"; "in confidential tone of voice" -00452773 00 s 01 cozy 0 001 & 00451510 a 0000 | suggesting connivance; "a cozy arrangement with the police" -00452883 00 s 03 dear 0 good 0 near 0 001 & 00451510 a 0000 | with or in a close or intimate relationship; "a good friend"; "my sisters and brothers are near and dear" -00453053 00 s 02 familiar 0 intimate 2 003 & 00451510 a 0000 + 05817145 n 0102 + 04655442 n 0101 | having mutual interests or affections; of established friendship; "on familiar terms"; "pretending she is on an intimate footing with those she slanders" -00453308 00 s 01 intimate 0 001 & 00451510 a 0000 | marked by close acquaintance, association, or familiarity; "intimate friend"; "intimate relations between economics, politics, and legal principles" - V.L. Parrington -00453529 00 a 01 cousinly 0 002 + 09972010 n 0101 ! 00453647 a 0101 | like or befitting a cousin; "a cousinly kiss" -00453647 00 a 01 uncousinly 0 001 ! 00453529 a 0101 | not befitting a cousin -00453726 00 a 02 clothed 0 clad 0 027 ^ 00056002 a 0000 ! 00457598 a 0101 & 00454440 a 0000 & 00454849 a 0000 & 00454984 a 0000 & 00455084 a 0000 & 00455190 a 0000 & 00455310 a 0000 & 00455405 a 0000 & 00455485 a 0000 & 00455605 a 0000 & 00455717 a 0000 & 00455824 a 0000 & 00456026 a 0000 & 00456121 a 0000 & 00456229 a 0000 & 00456355 a 0000 & 00456436 a 0000 & 00456576 a 0000 & 00456739 a 0000 & 00456855 a 0000 & 00456929 a 0000 & 00457036 a 0000 & 00457160 a 0000 & 00457258 a 0000 & 00457355 a 0000 & 00457482 a 0000 | wearing or provided with clothing; sometimes used in combination; "clothed and in his right mind"- Bible; "proud of her well-clothed family"; "nurses clad in white"; "white-clad nurses" -00454440 00 s 07 appareled 0 attired 0 dressed 0 garbed 0 garmented 0 habilimented 0 robed 0 001 & 00453726 a 0000 | dressed or clothed especially in fine attire; often used in combination; "the elegantly attired gentleman"; "neatly dressed workers"; "monks garbed in hooded robes"; "went about oddly garmented"; "professors robed in crimson"; "tuxedo-attired gentlemen"; "crimson-robed Harvard professors" -00454849 00 s 02 arrayed 0 panoplied 0 001 & 00453726 a 0000 | in ceremonial attire and paraphernalia; "professors arrayed in robes" -00454984 00 s 03 breeched 0 pantalooned 0 trousered 0 001 & 00453726 a 0000 | dressed in trousers -00455084 00 s 01 bundled-up 0 001 & 00453726 a 0000 | dressed warmly; "bundled-up sailors and soldiers" -00455190 00 s 01 caparisoned 0 001 & 00453726 a 0000 | clothed in finery (especially a horse in ornamental trappings) -00455310 00 s 01 cassocked 0 001 & 00453726 a 0000 | dressed in a cassock; "cassocked monks" -00455405 00 s 01 coated 0 001 & 00453726 a 0000 | having or dressed in a coat -00455485 00 s 01 costumed 0 001 & 00453726 a 0000 | dressed in clothing characteristic of a period, country, or class -00455605 00 s 01 cowled 0 001 & 00453726 a 0000 | having the head enclosed in a cowl or hood; "a cowled monk" -00455717 00 s 01 dighted 0 002 & 00453726 a 0000 ;u 07073447 n 0000 | dressed or adorned (as for battle) -00455824 00 s 08 dressed(p) 2 dressed-up 0 dressed_to_the_nines(p) 0 dressed_to_kill(p) 0 dolled_up 0 spruced_up 0 spiffed_up 0 togged_up 0 001 & 00453726 a 0000 | dressed in fancy or formal clothing -00456026 00 s 01 gowned 0 001 & 00453726 a 0000 | wearing a gown; "beautifully gowned women" -00456121 00 s 01 habited 0 001 & 00453726 a 0000 | dressed in a habit; "the habited men of the monastery" -00456229 00 s 01 heavy-coated 0 001 & 00453726 a 0000 | wearing a heavy coat; "heavy-coated policemen astride noble horses" -00456355 00 s 01 overdressed 0 001 & 00453726 a 0000 | dressed too elaborately -00456436 00 s 01 petticoated 0 001 & 00453726 a 0000 | wearing or furnished with a petticoat; "petticoated ladies"; "a petticoated table" -00456576 00 s 02 red-coated 0 lobster-backed 0 001 & 00453726 a 0000 | used of British soldiers during the American Revolutionary War because of their red coats -00456739 00 s 01 suited 0 001 & 00453726 a 0000 | outfitted or supplied with clothing; "recruits suited in green" -00456855 00 s 01 surpliced 0 001 & 00453726 a 0000 | wearing a surplice -00456929 00 s 01 togged 0 002 & 00453726 a 0000 ;u 07075172 n 0000 | dressed especially in smart clothes -00457036 00 s 01 turned_out 0 001 & 00453726 a 0000 | dressed well or smartly; "the girls were well turned out and smart" -00457160 00 s 01 tuxedoed 0 001 & 00453726 a 0000 | dressed in a tuxedo; "a tuxedoed gentleman" -00457258 00 s 01 underdressed 0 001 & 00453726 a 0000 | inadequately or too informally clothed -00457355 00 s 01 uniformed 0 001 & 00453726 a 0000 | dressed in a uniform; "uniformed policemen lined the President's route" -00457482 00 s 01 vestmented 0 001 & 00453726 a 0000 | dressed in ceremonial garments especially clerical vestment -00457598 00 a 01 unclothed 0 019 ^ 00060397 a 0000 ! 00453726 a 0101 & 00457998 a 0000 & 00458266 a 0000 & 00458488 a 0000 & 00458664 a 0000 & 00458810 a 0000 & 00458940 a 0000 & 00459102 a 0000 & 00459210 a 0000 & 00459330 a 0000 & 00459443 a 0000 & 00459553 a 0000 & 00459746 a 0000 & 00459881 a 0000 & 00459953 a 0000 & 00460076 a 0000 & 00460157 a 0000 & 00460296 a 0000 | not wearing clothing -00457998 00 s 04 bare 0 au_naturel(p) 0 naked 0 nude 0 007 & 00457598 a 0000 + 14456435 n 0401 + 10365399 n 0401 + 14456138 n 0402 + 14456138 n 0403 + 14456138 n 0301 + 14456893 n 0101 | completely unclothed; "bare bodies"; "naked from the waist up"; "a nude model" -00458266 00 s 09 bare-assed 0 bare-ass 0 in_the_altogether 0 in_the_buff 0 in_the_raw 0 raw 0 peeled 0 naked_as_a_jaybird 0 stark_naked 0 002 & 00457598 a 0000 ;u 07075172 n 0000 | (used informally) completely unclothed -00458488 00 s 03 bare-breasted 0 braless 0 topless 0 001 & 00457598 a 0000 | having the breasts uncovered or featuring such nudity; "topless waitresses"; "a topless cabaret" -00458664 00 s 02 bareheaded 0 bared 0 001 & 00457598 a 0000 | having the head uncovered; "caught bareheaded by the downpour"; "with bared head" -00458810 00 s 01 barelegged 0 001 & 00457598 a 0000 | having the legs uncovered by clothing; "barelegged children on the beach" -00458940 00 s 01 bottomless 0 001 & 00457598 a 0000 | unclothed especially below the waist or featuring such nudeness; "bottomless dancers"; "a bottomless bar" -00459102 00 s 03 clothesless 0 garmentless 0 raimentless 0 001 & 00457598 a 0000 | possessing no clothing -00459210 00 s 02 en_deshabille 0 in_dishabille 0 001 & 00457598 a 0000 | partly dressed in a loose or careless manner -00459330 00 s 02 exposed 0 uncovered 0 001 & 00457598 a 0000 | not covered with clothing; "her exposed breast" -00459443 00 s 03 half-clothed 0 scantily_clad 0 underclothed 0 001 & 00457598 a 0000 | inadequately clothed -00459553 00 s 05 mother-naked 0 naked_as_the_day_one_was_born 0 naked_as_the_day_you_were_born 0 in_one's_birthday_suit 0 in_your_birthday_suit 0 001 & 00457598 a 0000 | as naked as at birth -00459746 00 s 01 off-the-shoulder 0 001 & 00457598 a 0000 | not covering the shoulders (especially in the case of a blouse or dress) -00459881 00 s 01 seminude 0 001 & 00457598 a 0000 | partially clothed -00459953 00 s 01 starkers 0 003 & 00457598 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) stark naked -00460076 00 s 01 stripped 0 001 & 00457598 a 0000 | with clothing stripped off -00460157 00 s 06 unappareled 0 unattired 0 unclad 0 undressed 0 ungarbed 0 ungarmented 0 001 & 00457598 a 0000 | having removed clothing -00460296 00 s 01 without_a_stitch 0 001 & 00457598 a 0000 | without any clothing at all -00460386 00 a 01 saddled 0 001 ! 00460536 a 0101 | having a saddle on or being mounted on a saddled animal; "saddled and spurred and ready to ride" -00460536 00 a 01 unsaddled 0 002 ! 00460386 a 0101 & 00460624 a 0000 | with no saddle -00460624 00 s 02 bareback 0 barebacked 0 001 & 00460536 a 0000 | riding without a saddle; "a bareback rider" -00460735 00 a 01 clear 3 007 ;c 06118563 n 0000 + 04701460 n 0102 + 04701460 n 0101 ! 00461311 a 0101 & 00460946 a 0000 & 00461091 a 0000 & 00461195 a 0000 | free from clouds or mist or haze; "on a clear day" -00460946 00 s 02 cloudless 0 unclouded 1 003 & 00460735 a 0000 + 04701460 n 0203 + 04951978 n 0101 | free from clouds; "under a cloudless sky" -00461091 00 s 01 fair 0 001 & 00460735 a 0000 | free of clouds or rain; "today will be fair and warm" -00461195 00 s 01 serene 0 001 & 00460735 a 0000 | completely clear and fine; "serene skies and a bright blue sea" -00461311 00 a 01 cloudy 0 012 ;c 06118563 n 0000 + 09247410 n 0101 + 14524198 n 0101 ! 00460735 a 0101 & 00461609 a 0000 & 00461859 a 0000 & 00461971 a 0000 & 00462129 a 0000 & 00462249 a 0000 & 00462409 a 0000 & 00462546 a 0000 & 00462741 a 0000 | full of or covered with clouds; "cloudy skies" -00461609 00 s 04 brumous 0 foggy 0 hazy 0 misty 0 007 & 00461311 a 0000 + 11482706 n 0401 + 04704116 n 0402 + 11465888 n 0301 + 04704116 n 0301 + 11458314 n 0201 + 14521648 n 0202 | filled or abounding with fog or mist; "a brumous October morning" -00461859 00 s 01 fogbound 0 001 & 00461311 a 0000 | enveloped in fog; "a fogbound fleet"; "the fogbound city" -00461971 00 s 04 cloud-covered 0 clouded 0 overcast 0 sunless 0 003 & 00461311 a 0000 + 13984468 n 0302 + 14524198 n 0303 | filled or abounding with clouds -00462129 00 s 02 cloudlike 0 nebular 0 003 & 00461311 a 0000 + 14314756 n 0201 + 04682184 n 0201 | resembling a cloud -00462249 00 s 02 dull 0 leaden 0 002 & 00461311 a 0000 + 04955633 n 0101 | darkened with overcast; "a dark day"; "a dull sky"; "the sky was leaden and thick" -00462409 00 s 04 heavy 0 lowering 0 sullen 0 threatening 0 002 & 00461311 a 0000 + 07552367 n 0303 | darkened by clouds; "a heavy sky" -00462546 00 s 04 miasmal 0 miasmic 0 vaporous 0 vapourous 0 004 & 00461311 a 0000 + 15055633 n 0301 + 14518010 n 0201 + 14518010 n 0101 | filled with vapor; "miasmic jungles"; "a vaporous bog" -00462741 00 s 01 smoggy 0 003 & 00461311 a 0000 + 14518377 n 0101 + 14518377 n 0102 | clouded with a mixture of smoke and fog; "the smoggy atmosphere of Los Angeles" -00462909 00 a 01 coastal 0 006 + 09428293 n 0102 ! 00463784 a 0101 & 00463162 a 0000 & 00463308 a 0000 & 00463399 a 0000 & 00463580 a 0000 | located on or near or bordering on a coast; "coastal marshes"; "coastal waters"; "the Atlantic coastal plain" -00463162 00 s 01 coastwise 0 001 & 00462909 a 0000 | along or following a coast; "coastal shipping"; "coastwise winds contributed to the storm" -00463308 00 s 01 inshore 0 001 & 00462909 a 0000 | close to a shore; "inshore fisheries" -00463399 00 s 01 maritime 0 001 & 00462909 a 0000 | bordering on or living or characteristic of those near the sea; "a maritime province"; "maritime farmers"; "maritime cultures" -00463580 00 s 01 seaward 0 001 & 00462909 a 0000 | directed or situated away from inland regions and toward the sea or coast; "from the hill he took a seaward course"; "on the seaward side of the road" -00463784 00 a 01 inland 0 003 ! 00462909 a 0101 & 00463917 a 0000 & 00464068 a 0000 | situated away from an area's coast or border -00463917 00 s 03 interior 0 midland 0 upcountry 0 001 & 00463784 a 0000 | of or coming from the middle of a region or country; "upcountry districts" -00464068 00 s 01 landlocked 0 001 & 00463784 a 0000 | surrounded entirely or almost entirely by land; "a landlocked country" -00464195 00 a 04 inshore 0 onshore 4 seaward 4 shoreward 0 001 ! 00464399 a 0101 | (of winds) coming from the sea toward the land; "an inshore breeze"; "an onshore gale"; "sheltered from seaward winds" -00464399 00 a 02 offshore 0 seaward 0 001 ! 00464195 a 0101 | (of winds) coming from the land; "offshore winds" -00464513 00 a 04 coherent 0 consistent 1 logical 5 ordered 6 009 ^ 01430111 a 0000 ^ 01925372 a 0000 + 04745932 n 0202 + 04821277 n 0102 + 04821277 n 0101 + 02753642 v 0101 + 02753426 v 0101 ! 00464962 a 0101 & 00464845 a 0000 | marked by an orderly, logical, and aesthetically consistent relation of parts; "a coherent argument" -00464845 00 s 01 seamless 0 001 & 00464513 a 0000 | perfectly consistent and coherent; "the novel's seamless plot" -00464962 00 a 01 incoherent 0 008 ^ 01430847 a 0000 ^ 01926376 a 0000 + 14418103 n 0102 + 14418103 n 0101 + 06608977 n 0101 ! 00464513 a 0101 & 00465221 a 0000 & 00465585 a 0000 | without logical or meaningful connection; "a turgid incoherent presentation" -00465221 00 s 08 confused 0 disconnected 0 disjointed 0 disordered 0 garbled 0 illogical 0 scattered 0 unconnected 0 004 & 00464962 a 0000 + 04785669 n 0602 + 14418290 n 0301 + 14417697 n 0204 | lacking orderly continuity; "a confused set of instructions"; "a confused dream about the end of the world"; "disconnected fragments of a story"; "scattered thoughts" -00465585 00 s 01 fuzzy 0 001 & 00464962 a 0000 | confused and not coherent; not clearly thought out; "a vague and fuzzy idea of the world of finance" -00465737 00 a 02 collapsible 0 collapsable 0 005 + 02083497 v 0101 ! 00466365 a 0101 & 00465943 a 0000 & 00466077 a 0000 & 00466229 a 0000 | capable of collapsing or being collapsed; "a collapsible boat" -00465943 00 s 03 foldable 0 foldaway 0 folding(a) 0 001 & 00465737 a 0000 | capable of being folded up and stored; "a foldaway bed" -00466077 00 s 01 telescopic 0 001 & 00465737 a 0000 | having parts that slide one within another; "a telescopic antenna"; "a telescopic drinking cup" -00466229 00 s 01 tip-up 0 001 & 00465737 a 0000 | constructed so as to tip up or out of the way; "the little tip-up seat of the taxi" -00466365 00 a 02 noncollapsible 0 noncollapsable 0 002 ! 00465737 a 0101 & 00466486 a 0000 | not capable of collapsing -00466486 00 s 02 nontelescopic 0 nontelescoping 0 001 & 00466365 a 0000 | not telescopic -00466577 00 a 01 crannied 0 001 ! 00466725 a 0101 | having small chinks or crannies (especially in or between rocks or stones); "a crannied wall" -00466725 00 a 01 uncrannied 0 001 ! 00466577 a 0101 | without chinks or crannies -00466808 00 a 01 collective 0 008 ^ 01330986 a 0000 ^ 02111684 a 0000 ^ 02475855 a 0000 ! 00467913 a 0101 & 00467019 a 0000 & 00467240 a 0000 & 00467564 a 0000 & 00467737 a 0000 | forming a whole or aggregate -00467019 00 s 04 agglomerate 0 agglomerated 0 agglomerative 0 clustered 0 004 & 00466808 a 0000 + 01484714 v 0301 + 14711647 n 0101 + 07961480 n 0104 | clustered together but not coherent; "an agglomerated flower head" -00467240 00 s 04 aggregate 1 aggregated 0 aggregative 0 mass 0 004 & 00466808 a 0000 + 01385170 v 0301 + 08418103 n 0101 + 04353803 n 0104 | formed of separate units gathered into a mass or whole; "aggregate expenses include expenses of all divisions combined for the entire year"; "the aggregated amount of indebtedness" -00467564 00 s 02 collectivized 0 collectivised 0 001 & 00466808 a 0000 | characterized by the principle of ownership by the state or the people of the means of production -00467737 00 s 01 knockdown 0 002 & 00466808 a 0000 ;c 03405725 n 0000 | (furniture) easily assembled and dismantled; "I bought a knockdown chest at the do-it-yourself store" -00467913 00 a 01 distributive 0 010 ^ 02478749 a 0000 ^ 00539793 a 0000 + 02201644 v 0101 ! 00466808 a 0101 & 00468176 a 0000 & 00468362 a 0000 & 00468574 a 0000 & 00468795 a 0000 & 00469170 a 0000 & 00469468 a 0000 | serving to distribute or allot or disperse -00468176 00 s 03 allocable 0 allocatable 0 apportionable 0 005 & 00467913 a 0000 + 02234087 v 0302 + 02294179 v 0304 + 02234087 v 0201 + 02234087 v 0101 | capable of being distributed -00468362 00 s 04 diffusing(a) 0 diffusive 0 dispersive 0 disseminative 0 006 & 00467913 a 0000 + 00968211 v 0405 + 01376245 v 0305 + 00968211 v 030a + 01229071 v 0205 + 00968211 v 0209 | spreading by diffusion -00468574 00 s 01 immanent 0 003 & 00467913 a 0000 + 13957974 n 0102 + 13957974 n 0101 | of qualities that are spread throughout something; "ambition is immanent in human nature"; "we think of God as immanent in nature" -00468795 00 s 04 permeant 0 permeating 0 permeative 0 pervasive 0 006 & 00467913 a 0000 + 04765166 n 0401 + 01229071 v 0402 + 01229071 v 0301 + 01229071 v 0101 + 01457954 v 0103 | spreading or spread throughout; "armed with permeative irony...he punctures affectations"; "the pervasive odor of garlic"; "an error is pervasive if it is material to more than one conclusion" -00469170 00 s 01 separative 0 001 & 00467913 a 0000 | (of a word) referring singly and without exception to the members of a group; "whereas `each,' `every,' `either,' `neither,' and `none' are distributive or referring to a single member of a group, `which' in `which of the men' is separative" -00469468 00 s 01 suffusive 0 003 & 00467913 a 0000 + 00454251 v 0101 + 00454651 v 0101 | spreading through; "suffusive purple light" -00469603 00 a 02 publicized 0 publicised 0 004 ! 00470111 a 0101 & 00469767 a 0000 & 00469879 a 0000 & 00469999 a 0000 | made known; especially made widely known -00469767 00 s 01 advertised 0 001 & 00469603 a 0000 | called to public attention; "these advertised products" -00469879 00 s 01 heralded 0 001 & 00469603 a 0000 | publicly announced; "the royal couple's much heralded world tour" -00469999 00 s 02 promulgated 0 published 0 001 & 00469603 a 0000 | formally made public; "published accounts" -00470111 00 a 01 suppressed 0 005 ! 00469603 a 0101 & 00470284 a 0000 & 00470372 a 0000 & 00470528 a 0000 & 00470719 a 0000 | kept from public knowledge by various means; -00470284 00 s 01 burked(p) 0 001 & 00470111 a 0000 | suppressed quietly or indirectly -00470372 00 s 01 hushed-up 0 001 & 00470111 a 0000 | (used of information or news) kept secret by using influence; "hushed-up stories sometimes leak out" -00470528 00 s 03 quelled 0 quenched 0 squelched 0 001 & 00470111 a 0000 | subdued or overcome; "the quelled rebellion"; "an uprising quenched almost before it started"; "a squelched rumor" -00470719 00 s 01 unreleased 0 001 & 00470111 a 0000 | not (or not yet) made available for distribution or publication; "someone leaked the unreleased announcement"; "a film that remained unreleased for years" -00470930 00 a 01 published 0 001 ! 00471072 a 0101 | prepared and printed for distribution and sale; "the complete published works Dickens" -00471072 00 a 01 unpublished 0 001 ! 00470930 a 0101 | not published; "unpublished letters and diaries" -00471178 00 a 01 publishable 0 001 ! 00471260 a 0101 | suitable for publication -00471260 00 a 01 unpublishable 0 001 ! 00471178 a 0101 | not suitable for publication -00471348 00 a 01 reported 0 004 ! 00471966 a 0101 & 00471572 a 0000 & 00471698 a 0000 & 00471842 a 0000 | made known or told about; especially presented in a formal account; "his reported opinion"; "the reported findings" -00471572 00 s 01 according 0 001 & 00471348 a 0000 | (followed by `to') as reported or stated by; "according to historians" -00471698 00 s 01 notifiable 0 002 & 00471348 a 0000 + 00873682 v 0102 | requiring that official notification be given; "a notifiable disease" -00471842 00 s 01 reportable 0 001 & 00471348 a 0000 | meriting report; "years of research produced no reportable results" -00471966 00 a 01 unreported 0 001 ! 00471348 a 0101 | not reported; "unreported results" -00472057 00 a 01 reportable 0 001 ! 00472177 a 0101 | (of income) required by law to be reported; "reportable income" -00472177 00 a 01 unreportable 0 001 ! 00472057 a 0101 | (of income) not reportable; not required by law to be reported; "very little income is unreportable" -00472336 00 a 02 combinative 0 combinatory 1 005 ^ 01330986 a 0000 + 01461328 v 0102 ! 00472810 a 0101 & 00472534 a 0000 & 00472694 a 0000 | marked by or relating to or resulting from combination -00472534 00 s 01 combinatorial 0 003 & 00472336 a 0000 ;c 06000644 n 0000 + 00870453 n 0101 | relating to the combination and arrangement of elements in sets -00472694 00 s 03 combinable 0 combinational 0 combinatory 2 001 & 00472336 a 0000 | able to or tending to combine -00472810 00 a 01 noncombinative 0 002 ! 00472336 a 0101 & 00472914 a 0000 | not involving combination -00472914 00 s 01 noncombining 0 001 & 00472810 a 0000 | not able to combine -00472992 00 a 01 combustible 0 010 + 14816745 n 0101 + 02762468 v 0102 + 02760622 v 0105 + 00377002 v 0102 ! 00474043 a 0101 & 00473243 a 0000 & 00473502 a 0000 & 00473658 a 0000 & 00473778 a 0000 & 00473869 a 0000 | capable of igniting and burning -00473243 00 s 03 burnable 0 ignitable 0 ignitible 0 010 & 00472992 a 0000 + 02760622 v 0302 + 02759614 v 0301 + 02760622 v 0202 + 02759614 v 0201 + 02762468 v 0101 + 00196364 v 0101 + 00378664 v 0101 + 00378042 v 0101 + 00377002 v 0101 | capable of burning -00473502 00 s 03 comburent 0 comburant 0 combustive 0 004 & 00472992 a 0000 + 02762468 v 0302 + 02760622 v 0305 + 00377002 v 0302 | supporting combustion -00473658 00 s 02 flammable 0 inflammable 0 003 & 00472992 a 0000 + 04712568 n 0202 + 04712568 n 0101 | easily ignited -00473778 00 s 01 ignescent 0 001 & 00472992 a 0000 | can emit sparks or burst into flame -00473869 00 s 01 incendiary 0 001 & 00472992 a 0000 | capable of catching fire spontaneously or causing fires or burning readily; "an incendiary agent"; "incendiary bombs" -00474043 00 a 02 noncombustible 0 incombustible 0 005 ! 00472992 a 0101 & 00474227 a 0000 & 00474311 a 0000 & 00474440 a 0000 & 00474541 a 0000 | not capable of igniting and burning -00474227 00 s 01 fireproof 0 001 & 00474043 a 0000 | impervious to damage by fire -00474311 00 s 04 fire-retardant 0 fire-resistant 0 fire-resisting 0 fire-resistive 0 001 & 00474043 a 0000 | difficult to burn -00474440 00 s 02 flameproof 0 flame-retardant 0 001 & 00474043 a 0000 | resistant to catching fire -00474541 00 s 01 nonflammable 0 001 & 00474043 a 0000 | impossible to ignite -00474620 00 a 01 explosive 0 003 + 03304730 n 0101 ! 00475008 a 0101 & 00474883 a 0000 | serving to explode or characterized by explosion or sudden outburst; "an explosive device"; "explosive gas"; "explosive force"; "explosive violence"; "an explosive temper" -00474883 00 s 01 detonative 0 003 & 00474620 a 0000 + 00306298 v 0101 + 00306723 v 0102 | exploding almost instantaneously -00475008 00 a 01 nonexplosive 0 001 ! 00474620 a 0101 | not explosive; "nonexplosive gases"; "a nonexplosive fuel" -00475125 00 a 02 lighted 0 lit 2 003 ! 00475749 a 0101 & 00475308 a 0000 & 00475625 a 0000 | set afire or burning; "the lighted candles"; "a lighted cigarette"; "a lit firecracker" -00475308 00 s 06 ablaze(p) 0 afire(p) 0 aflame(p) 0 aflare(p) 0 alight(p) 0 on_fire(p) 0 001 & 00475125 a 0000 | lighted up by or as by fire or flame; "forests set ablaze (or afire) by lightning"; "even the car's tires were aflame"; "a night aflare with fireworks"; "candles alight on the tables"; "houses on fire" -00475625 00 s 03 ignited 0 enkindled 0 kindled 0 001 & 00475125 a 0000 | set afire; "the ignited paper"; "a kindled fire" -00475749 00 a 02 unlighted 0 unlit 2 002 ! 00475125 a 0101 & 00475927 a 0000 | not set afire or burning; "the table was bare, the candles unlighted"; "held an unlit cigarette" -00475927 00 s 01 unkindled 0 001 & 00475749 a 0000 | not set afire -00475996 00 a 02 commodious 0 convenient 2 004 ;u 07073447 n 0000 + 05105265 n 0104 ! 00476494 a 0101 & 00476249 a 0000 | large and roomy (`convenient' is archaic in this sense); "a commodious harbor"; "a commodious building suitable for conventions" -00476249 00 s 02 roomy 0 spacious 0 005 & 00475996 a 0000 + 05105265 n 0203 + 08652970 n 0201 + 05105265 n 0102 + 13777764 n 0101 | (of buildings and rooms) having ample space; "a roomy but sparsely furnished apartment"; "a spacious ballroom" -00476494 00 a 01 incommodious 0 003 + 14446878 n 0102 ! 00475996 a 0101 & 00476663 a 0000 | uncomfortably or inconveniently small; "incommodious hotel accommodations" -00476663 00 s 01 cramped 0 001 & 00476494 a 0000 | constricted in size; "cramped quarters"; "trying to bring children up in cramped high-rise apartments" -00476819 00 a 02 comfortable 0 comfy 0 008 = 14445379 n 0000 ;u 07075172 n 0000 + 14445379 n 0102 ! 00478015 a 0101 & 00477284 a 0000 & 00477553 a 0000 & 00477661 a 0000 & 00477896 a 0000 | providing or experiencing physical well-being or relief (`comfy' is informal); "comfortable clothes"; "comfortable suburban houses"; "made himself comfortable in an armchair"; "the antihistamine made her feel more comfortable"; "are you comfortable?"; "feeling comfy now?" -00477284 00 s 03 cozy 0 cosy 0 snug 0 004 & 00476819 a 0000 + 14446298 n 0303 + 14446298 n 0202 + 14446298 n 0101 | enjoying or affording comforting warmth and shelter especially in a small space; "a cozy nook near the fire"; "snug in bed"; "a snug little apartment" -00477553 00 s 01 easy 0 001 & 00476819 a 0000 | affording comfort; "soft light that was easy on the eyes" -00477661 00 s 04 homelike 0 homely 0 homey 0 homy 0 004 & 00476819 a 0000 + 14513694 n 0401 + 14513694 n 0301 + 08559508 n 0201 | having a feeling of home; cozy and comfortable; "the homely everyday atmosphere"; "a homey little inn" -00477896 00 s 01 soothing 0 001 & 00476819 a 0000 | affording physical relief; "a soothing ointment for her sunburn" -00478015 00 a 01 uncomfortable 0 008 = 14445379 n 0000 ! 00476819 a 0101 & 00478311 a 0000 & 00478590 a 0000 & 00478685 a 0000 & 00478872 a 0000 & 00479073 a 0000 & 00479192 a 0000 | providing or experiencing physical discomfort; "an uncomfortable chair"; "an uncomfortable day in the hot sun" -00478311 00 s 02 bad 0 tough 0 003 & 00478015 a 0000 ;u 07075172 n 0000 + 05036715 n 0101 | feeling physical discomfort or pain (`tough' is occasionally used colloquially for `bad'); "my throat feels bad"; "she felt bad all over"; "he was feeling tough after a restless night" -00478590 00 s 01 comfortless 0 001 & 00478015 a 0000 | without comfort; "a comfortless room" -00478685 00 s 02 irritating 0 painful 0 002 & 00478015 a 0000 + 04720024 n 0201 | causing physical discomfort; "bites of black flies are more than irritating; they can be very painful" -00478872 00 s 02 miserable 0 wretched 0 003 & 00478015 a 0000 + 14447303 n 0201 + 14448333 n 0103 | characterized by physical misery; "a wet miserable weekend"; "spent a wretched night on the floor" -00479073 00 s 01 uneasy 0 002 & 00478015 a 0000 + 14447019 n 0103 | relating to bodily unease that causes discomfort -00479192 00 s 01 warm 0 001 & 00478015 a 0000 | uncomfortable because of possible danger or trouble; "made things warm for the bookies" -00479330 00 a 01 comfortable 1 004 ^ 00822115 a 0000 + 07530000 n 0101 ! 00479933 a 0101 & 00479783 a 0000 | free from stress or conducive to mental ease; having or affording peace of mind; "was settled in a comfortable job, one for which he was well prepared"; "the comfortable thought that nothing could go wrong"; "was comfortable in his religious beliefs"; "she's a comfortable person to be with"; "she felt comfortable with her fiance's parents" -00479783 00 s 01 comforted 0 001 & 00479330 a 0000 | made comfortable or more comfortable in a time of distress; "the news make her feel comforted" -00479933 00 a 01 uncomfortable 1 008 ^ 00822449 a 0000 + 14446652 n 0102 + 07507329 n 0103 ! 00479330 a 0101 & 00480439 a 0000 & 00480753 a 0000 & 00480880 a 0000 & 00480965 a 0000 | conducive to or feeling mental discomfort; "this kind of life can prove disruptive and uncomfortable"; "the uncomfortable truth"; "grew uncomfortable beneath his appraising eye"; "an uncomfortable way of surprising me just when I felt surest"; "the teacher's presence at the conference made the child very uncomfortable" -00480439 00 s 03 awkward 0 ill_at_ease(p) 0 uneasy 0 004 & 00479933 a 0000 + 07507329 n 0302 + 04904851 n 0303 + 04815624 n 0101 | socially uncomfortable; unsure and constrained in manner; "awkward and reserved at parties"; "ill at ease among eddies of people he didn't know"; "was always uneasy with strangers" -00480753 00 s 01 disquieting 0 001 & 00479933 a 0000 | causing mental discomfort; "the disquieting sounds of nearby gunfire" -00480880 00 s 01 ill-fitting 0 001 & 00479933 a 0000 | not the right size or shape -00480965 00 s 01 self-conscious 0 002 & 00479933 a 0000 + 07507329 n 0101 | excessively and uncomfortably conscious of your appearance or behavior; "self-conscious teenagers"; "wondered if she could ever be untidy without feeling self-conscious about it" -00481222 00 a 01 commensurate 0 006 ^ 00889831 a 0000 + 13817279 n 0101 ! 00481855 a 0101 & 00481463 a 0000 & 00481592 a 0000 & 00481737 a 0000 | corresponding in size or degree or extent; "pay should be commensurate with the time worked" -00481463 00 s 03 coextensive 0 coterminous 0 conterminous 0 001 & 00481222 a 0000 | being of equal extent or scope or duration -00481592 00 s 01 commensurable 0 001 & 00481222 a 0000 | capable of being measured by a common standard; "hours and minutes are commensurable" -00481737 00 s 01 proportionate 0 002 & 00481222 a 0000 + 13817279 n 0103 | agreeing in amount, magnitude, or degree -00481855 00 a 01 incommensurate 0 004 ^ 00892379 a 0000 ! 00481222 a 0101 & 00482059 a 0000 & 00482139 a 0000 | not corresponding in size or degree or extent; "a reward incommensurate with his effort" -00482059 00 s 01 disproportionate 0 001 & 00481855 a 0000 | not proportionate -00482139 00 s 01 incommensurable 0 001 & 00481855 a 0000 | not having a common factor -00482227 00 a 01 proportionate 0 006 + 13817279 n 0103 ! 00483048 a 0101 & 00482452 a 0000 & 00482580 a 0000 & 00482673 a 0000 & 00482948 a 0000 | being in due proportion; "proportionate representation of a minority group" -00482452 00 s 01 per_capita 0 001 & 00482227 a 0000 | per person; "among the states Connecticut has a high per capita income" -00482580 00 s 01 proportionable 0 002 & 00482227 a 0000 ;u 07073447 n 0000 | proportionate -00482673 00 s 02 proportional 0 relative 0 002 & 00482227 a 0000 + 05212609 n 0201 | properly related in size or degree or other measurable characteristics; usually followed by `to'; "the punishment ought to be proportional to the crime"; "earnings relative to production" -00482948 00 s 01 proportional 1 002 & 00482227 a 0000 + 13824675 n 0101 | having a constant ratio -00483048 00 a 02 disproportionate 0 disproportional 0 001 ! 00482227 a 0101 | out of proportion -00483146 00 a 01 commercial 0 008 = 01090446 n 0000 + 07250034 n 0101 + 01090446 n 0101 ! 00484333 a 0101 & 00483481 a 0000 & 00483650 a 0000 & 00483816 a 0000 & 00484070 a 0000 | connected with or engaged in or sponsored by or used in commerce or commercial enterprises; "commercial trucker"; "commercial TV"; "commercial diamonds" -00483481 00 s 02 commercialized 0 commercialised 0 001 & 00483146 a 0000 | organized principally for financial gain; "Christmas has become a commercialized spectacle" -00483650 00 s 01 mercantile 0 001 & 00483146 a 0000 | relating to or characteristic of trade or traders; "the mercantile North was forging ahead"- Van Wyck Brooks -00483816 00 s 03 mercantile 2 mercenary 0 moneymaking(a) 0 002 & 00483146 a 0000 + 00078393 n 0301 | profit oriented; "a commercial book"; "preached a mercantile and militant patriotism"- John Buchan; "a mercenary enterprise"; "a moneymaking business" -00484070 00 s 01 technical 2 001 & 00483146 a 0000 | resulting from or dependent on market factors rather than fundamental economic considerations; "analysts content that the stock market is due for a technical rally"; "the fall is only a technical correction" -00484333 00 a 01 noncommercial 0 006 = 01090446 n 0000 ! 00483146 a 0101 & 00484538 a 0000 & 00484680 a 0000 & 00484782 a 0000 & 00484932 a 0000 | not connected with or engaged in commercial enterprises -00484538 00 s 01 blue-sky 0 001 & 00484333 a 0000 | without immediate commercial value; "the company cannot afford to do blue-sky research" -00484680 00 s 02 nonprofit 0 non-profit-making 0 001 & 00484333 a 0000 | not commercially motivated -00484782 00 s 01 uncommercial 0 001 & 00484333 a 0000 | not conducive to commercial success; "might prove arty and hence uncommercial"- H.E.Clurman -00484932 00 s 02 uncommercialized 0 uncommercialised 0 001 & 00484333 a 0000 | not having been commercialized -00485044 00 a 01 residential 0 001 ! 00485252 a 0101 | used or designed for residence or limited to residences; "a residential hotel"; "a residential quarter"; "a residential college"; "residential zoning" -00485252 00 a 01 nonresidential 0 001 ! 00485044 a 0101 | not residential; "the commercial or nonresidential areas of a town"; "community colleges are typically nonresidential" -00485431 00 a 01 commissioned 0 001 ! 00485593 a 0101 | (of military officers) holding by virtue of a commission a rank of second lieutenant or ensign or above -00485593 00 a 01 noncommissioned 0 001 ! 00485431 a 0101 | (of military officers) appointed from enlisted personnel -00485711 00 a 01 common 1 013 ^ 00489108 a 0000 ^ 01672607 a 0000 = 04795545 n 0000 + 04795545 n 0101 + 04764741 n 0101 ! 00487653 a 0101 & 00486290 a 0000 & 00486539 a 0000 & 00486819 a 0000 & 00486990 a 0000 & 00487198 a 0000 & 00487327 a 0000 & 00487525 a 0000 | having no special distinction or quality; widely known or commonly encountered; average or ordinary or usual; "the common man"; "a common sailor"; "the common cold"; "a common nuisance"; "followed common procedure"; "it is common knowledge that she lives alone"; "the common housefly"; "a common brand of soap" -00486290 00 s 02 average 0 ordinary 2 004 & 00485711 a 0000 + 04794751 n 0201 + 14501172 n 0101 + 04795061 n 0101 | lacking special distinction, rank, or status; commonly encountered; "average people"; "the ordinary (or common) man in the street" -00486539 00 s 02 democratic 0 popular 1 002 & 00485711 a 0000 + 05964445 n 0102 | representing or appealing to or adapted for the benefit of the people at large; "democratic art forms"; "a democratic or popular movement"; "popular thought"; "popular science"; "popular fiction" -00486819 00 s 01 demotic 0 001 & 00485711 a 0000 | of or for the common people; "demotic entertainments"; "demotic speech"; "a poet with a keen ear for demotic rhythms" -00486990 00 s 01 frequent 0 003 & 00485711 a 0000 + 13598237 n 0101 + 15278281 n 0102 | frequently encountered; "a frequent (or common) error is using the transitive verb `lay' for the intransitive `lie'"; -00487198 00 s 01 general 0 001 & 00485711 a 0000 | prevailing among and common to the general public; "the general discontent" -00487327 00 s 01 grassroots 0 001 & 00485711 a 0000 | of or involving the common people as constituting a fundamental political and economic group; "a grassroots movement for nuclear disarmament" -00487525 00 s 01 standard 0 001 & 00485711 a 0000 | commonly used or supplied; "standard procedure"; "standard car equipment" -00487653 00 a 01 uncommon 0 010 ^ 01675190 a 0000 ^ 00490035 a 0000 = 04795545 n 0000 + 04796946 n 0101 ! 00485711 a 0101 & 00488187 a 0000 & 00488561 a 0000 & 00488697 a 0000 & 00488857 a 0000 & 00488998 a 0000 | not common or ordinarily encountered; unusually great in amount or remarkable in character or kind; "uncommon birds"; "frost and floods are uncommon during these months"; "doing an uncommon amount of business"; "an uncommon liking for money"; "he owed his greatest debt to his mother's uncommon character and ability" -00488187 00 s 04 especial(a) 0 exceptional 0 particular(a) 0 special 0 002 & 00487653 a 0000 + 04763925 n 0402 | surpassing what is common or usual or expected; "he paid especial attention to her"; "exceptional kindness"; "a matter of particular and unusual importance"; "a special occasion"; "a special reason to confide in her"; "what's so special about the year 2000?" -00488561 00 s 01 rare 0 001 & 00487653 a 0000 | not widely known; especially valued for its uncommonness; "a rare word"; "rare books" -00488697 00 s 02 red_carpet(a) 0 red-carpet(a) 0 001 & 00487653 a 0000 | special treatment or hospitality; "the maitre d' gave them the red-carpet treatment" -00488857 00 s 01 unusual 0 002 & 00487653 a 0000 + 04797295 n 0101 | not commonly encountered; "two-career families are no longer unusual" -00488998 00 s 01 unwonted 0 001 & 00487653 a 0000 | out of the ordinary; "an unwonted softness in her face" -00489108 00 a 01 usual 0 007 ^ 00485711 a 0000 = 04796086 n 0000 + 04796086 n 0101 ! 00490035 a 0101 & 00489491 a 0000 & 00489768 a 0000 & 00489863 a 0000 | occurring or encountered or experienced or observed frequently or in accordance with regular practice or procedure; "grew the usual vegetables"; "the usual summer heat"; "came at the usual time"; "the child's usual bedtime" -00489491 00 s 04 accustomed 0 customary 0 habitual 0 wonted(a) 0 003 & 00489108 a 0000 + 00414179 n 0301 + 00413239 n 0201 | commonly used or practiced; usual; "his accustomed thoroughness"; "took his customary morning walk"; "his habitual comment"; "with her wonted candor" -00489768 00 s 02 chronic 0 inveterate 0 001 & 00489108 a 0000 | habitual; "a chronic smoker" -00489863 00 s 01 regular 0 002 & 00489108 a 0000 + 04767347 n 0101 | in accord with regular practice or procedure; "took his regular morning walk"; "her regular bedtime" -00490035 00 a 01 unusual 0 011 ^ 00487653 a 0000 = 04796086 n 0000 + 04797295 n 0101 ! 00489108 a 0101 & 00490413 a 0000 & 00490650 a 0000 & 00490845 a 0000 & 00490979 a 0000 & 00491089 a 0000 & 00491320 a 0000 & 00491511 a 0000 | not usual or common or ordinary; "a scene of unusual beauty"; "a man of unusual ability"; "cruel and unusual punishment"; "an unusual meteorite" -00490413 00 s 01 different 0 002 & 00490035 a 0000 + 02666239 v 0101 | differing from all others; not ordinary; "advertising that strives continually to be different"; "this new music is certainly different but I don't really like it" -00490650 00 s 01 extraordinary(p) 0 001 & 00490035 a 0000 | (of an official) serving an unusual or special function in addition to those of the regular officials; "an ambassador extraordinary" -00490845 00 s 01 odd 0 002 & 00490035 a 0000 + 04799011 n 0102 | not easily explained; "it is odd that his name is never mentioned" -00490979 00 s 01 out-of-the-way 0 001 & 00490035 a 0000 | out of the ordinary; "out-of-the-way information" -00491089 00 s 01 peculiar 0 001 & 00490035 a 0000 | markedly different from the usual; "a peculiar hobby of stuffing and mounting bats"; "a man...feels it a peculiar insult to be taunted with cowardice by a woman"-Virginia Woolf -00491320 00 s 01 unaccustomed 0 001 & 00490035 a 0000 | not customary or usual; "an unaccustomed pleasure"; "many varieties of unaccustomed foods"; "a new budget of unaccustomed austerity" -00491511 00 s 01 unique 0 001 & 00490035 a 0000 | highly unusual or rare but not the single instance; "spoke with a unique accent"; "had unique ability in raising funds"; "a frankness unique in literature"; "a unique dining experience" -00491749 00 a 01 hydrophobic 0 003 ;c 06084469 n 0000 + 05196220 n 0101 ! 00491971 a 0101 | lacking affinity for water; tending to repel and not absorb water; tending not to dissolve in or mix with or be wetted by water -00491971 00 a 01 hydrophilic 0 003 ;c 06084469 n 0000 ! 00491749 a 0101 & 00492157 a 0000 | having a strong affinity for water; tending to dissolve in, mix with, or be wetted by water -00492157 00 s 01 deliquescent 0 003 & 00491971 a 0000 + 00553053 v 0101 + 00376625 v 0101 | (especially of certain salts) becoming liquid by absorbing moisture from the air -00492332 00 a 01 oleophilic 0 003 ;c 06084469 n 0000 ! 00492595 a 0101 & 00492477 a 0000 | having a strong affinity for oils rather than water -00492477 00 s 02 lipophilic 0 lipotropic 0 002 & 00492332 a 0000 ;c 06084469 n 0000 | having an affinity for lipids -00492595 00 a 01 oleophobic 0 001 ! 00492332 a 0101 | lacking affinity for oils -00492677 00 a 01 common 2 008 ^ 02111684 a 0000 = 04764741 n 0000 + 08615374 n 0103 + 04764741 n 0102 + 04764741 n 0101 ! 00493460 a 0101 & 00493012 a 0000 & 00493297 a 0000 | belonging to or participated in by a community as a whole; public; "for the common good"; "common lands are set aside for use by all members of a community" -00493012 00 s 01 communal 0 003 & 00492677 a 0000 + 02295979 v 0101 + 13240839 n 0101 | for or by a group rather than individuals; "dipping each his bread into a communal dish of stew"- Paul Roche; "a communal settlement in which all earnings and food were shared"; "a group effort" -00493297 00 s 01 public 0 001 & 00492677 a 0000 | affecting the people or community as a whole; "community leaders"; "community interests"; "the public welfare" -00493460 00 a 02 individual 0 single 0 009 ^ 02109678 a 0000 = 04763293 n 0000 + 04763293 n 0101 ! 00492677 a 0101 & 00493820 a 0000 & 00494027 a 0000 & 00494198 a 0000 & 00494409 a 0000 & 00494622 a 0000 | being or characteristic of a single thing or person; "individual drops of rain"; "please mark the individual pages"; "they went their individual ways" -00493820 00 s 01 idiosyncratic 0 002 & 00493460 a 0000 + 04764242 n 0101 | peculiar to the individual; "we all have our own idiosyncratic gestures"; "Michelangelo's highly idiosyncratic style of painting" -00494027 00 s 02 individualist 0 individualistic 0 002 & 00493460 a 0000 + 04763293 n 0202 | marked by or expressing individuality; "an individualistic way of dressing" -00494198 00 s 02 one-on-one 0 man-to-man 0 002 & 00493460 a 0000 ;c 00523513 n 0000 | being a system of play in which an individual defensive player guards an individual offensive player; "one-on-one defense" -00494409 00 s 03 respective(a) 0 several(a) 0 various(a) 0 001 & 00493460 a 0000 | considered individually; "the respective club members"; "specialists in their several fields"; "the various reports all agreed" -00494622 00 s 01 singular 0 002 & 00493460 a 0000 + 04763650 n 0101 | being a single and separate person or thing; "can the singular person be understood apart from his culture?"; "every fact in the world might be singular...unlike any other fact and sole of its kind"-William James -00494907 00 a 02 communicative 0 communicatory 0 047 ^ 00150202 a 0000 ^ 02383831 a 0000 + 01070102 v 0201 + 00742320 v 0201 + 00740577 v 0201 + 01070102 v 0101 + 00742320 v 0101 + 00740577 v 0101 + 04650527 n 0101 ! 00500569 a 0101 & 00495916 a 0000 & 00496170 a 0000 & 00496259 a 0000 & 00496422 a 0000 & 00496569 a 0000 & 00496670 a 0000 & 00496845 a 0000 & 00496938 a 0000 & 00497148 a 0000 & 00497330 a 0000 & 00497442 a 0000 & 00497535 a 0000 & 00497626 a 0000 & 00497717 a 0000 & 00497808 a 0000 & 00497964 a 0000 & 00498161 a 0000 & 00498286 a 0000 & 00498439 a 0000 & 00498536 a 0000 & 00498629 a 0000 & 00498724 a 0000 & 00498817 a 0000 & 00498912 a 0000 & 00499062 a 0000 & 00499183 a 0000 & 00499315 a 0000 & 00499441 a 0000 & 00499530 a 0000 & 00499730 a 0000 & 00499823 a 0000 & 00499920 a 0000 & 00500024 a 0000 & 00500126 a 0000 & 00500219 a 0000 & 00500310 a 0000 & 00500434 a 0000 | able or tending to communicate; "was a communicative person and quickly told all she knew"- W.M.Thackeray -00495916 00 s 03 anecdotic 0 anecdotal 0 anecdotical 0 003 & 00494907 a 0000 + 07220586 n 0301 + 07220586 n 0101 | characterized by or given to telling anecdotes; "anecdotal conversation"; "an anecdotal history of jazz"; "he was at his anecdotic best" -00496170 00 s 01 Bantu-speaking 0 001 & 00494907 a 0000 | able to communicate in Bantu -00496259 00 s 04 blabbermouthed 0 leaky 0 talebearing(a) 0 tattling(a) 0 002 & 00494907 a 0000 + 07215185 n 0201 | prone to communicate confidential information -00496422 00 s 03 chatty 0 gossipy 0 newsy 0 003 & 00494907 a 0000 + 07135080 n 0207 + 07134850 n 0101 | prone to friendly informal communication -00496569 00 s 01 communicable 0 001 & 00494907 a 0000 | readily communicated; "communicable ideas" -00496670 00 s 01 communicational 0 003 & 00494907 a 0000 + 06252138 n 0101 + 00033020 n 0101 | used in communication; "he had few communicational grooves available for use" -00496845 00 s 01 English-speaking 0 001 & 00494907 a 0000 | able to communicate in English -00496938 00 s 02 expansive 0 talkative 0 005 & 00494907 a 0000 + 04651382 n 0205 + 00962447 v 0201 + 04651009 n 0103 + 04651009 n 0102 | friendly and open and willing to talk; "wine made the guest expansive" -00497148 00 s 01 expressive 0 005 & 00494907 a 0000 + 01061017 v 0103 + 00943837 v 0101 + 00940384 v 0101 + 04819694 n 0101 | characterized by expression; "a very expressive face" -00497330 00 s 01 Finno-Ugric-speaking 0 001 & 00494907 a 0000 | able to communicate in a Finno-Ugric language -00497442 00 s 01 Flemish-speaking 0 001 & 00494907 a 0000 | able to communicate in Flemish -00497535 00 s 01 French-speaking 0 001 & 00494907 a 0000 | able to communicate in French -00497626 00 s 01 Gaelic-speaking 0 001 & 00494907 a 0000 | able to communicate in Gaelic -00497717 00 s 01 German-speaking 0 001 & 00494907 a 0000 | able to communicate in German -00497808 00 s 01 gesticulating 0 001 & 00494907 a 0000 | making gestures while speaking; "her gesticulating hands and arms made words almost unnecessary" -00497964 00 s 02 gestural 1 nonverbal 1 001 & 00494907 a 0000 | being other than verbal communication; "the study of gestural communication"; "art like gesture is a form of nonverbal expression" -00498161 00 s 04 gestural 2 sign(a) 0 signed 0 sign-language(a) 0 001 & 00494907 a 0000 | used of the language of the deaf -00498286 00 s 01 heraldic 0 001 & 00494907 a 0000 | indicative of or announcing something to come; "the Beatles were heraldic of a new style of music" -00498439 00 s 01 Icelandic-speaking 0 001 & 00494907 a 0000 | able to communicate in Icelandic -00498536 00 s 01 Italian-speaking 0 001 & 00494907 a 0000 | able to communicate in Italian -00498629 00 s 01 Japanese-speaking 0 001 & 00494907 a 0000 | able to communicate in Japanese -00498724 00 s 01 Kannada-speaking 0 001 & 00494907 a 0000 | able to communicate in Kannada -00498817 00 s 01 Livonian-speaking 0 001 & 00494907 a 0000 | able to communicate in Livonian -00498912 00 s 01 narrative 0 002 & 00494907 a 0000 + 00953216 v 0102 | consisting of or characterized by the telling of a story; "narrative poetry" -00499062 00 s 01 nonverbal 0 001 & 00494907 a 0000 | involving little use of language; "a nonverbal intelligence test" -00499183 00 s 01 nonverbal 2 001 & 00494907 a 0000 | lacking verbal skill; "rural students often come from nonverbal backgrounds" -00499315 00 s 01 openhearted 0 001 & 00494907 a 0000 | freely communicative; candidly straightforward; "openhearted advice" -00499441 00 s 01 Oscan-speaking 0 001 & 00494907 a 0000 | able to communicate in Oscan -00499530 00 s 02 outspoken 0 vocal 0 002 & 00494907 a 0000 + 04650731 n 0102 | given to expressing yourself freely or insistently; "outspoken in their opposition to segregation"; "a vocal assembly" -00499730 00 s 01 Russian-speaking 0 001 & 00494907 a 0000 | able to communicate in Russian -00499823 00 s 01 Samoyedic-speaking 0 001 & 00494907 a 0000 | able to communicate in Samoyedic -00499920 00 s 01 Semitic-speaking 0 001 & 00494907 a 0000 | able to communicate in a Semitic language -00500024 00 s 01 Siouan-speaking 0 001 & 00494907 a 0000 | able to communicate in a Siouan language -00500126 00 s 01 Spanish-speaking 0 001 & 00494907 a 0000 | able to communicate in Spanish -00500219 00 s 01 Turkic-speaking 0 001 & 00494907 a 0000 | able to communicate in Turkic -00500310 00 s 01 verbal 0 001 & 00494907 a 0000 | communicated in the form of words; "verbal imagery"; "a verbal protest" -00500434 00 s 01 yarn-spinning 0 001 & 00494907 a 0000 | inclined to tell long and involved stories (often of incredible happenings) -00500569 00 a 02 uncommunicative 0 incommunicative 4 011 ^ 00151105 a 0000 ^ 02383380 a 0000 + 04651784 n 0101 ! 00494907 a 0101 & 00500889 a 0000 & 00501004 a 0000 & 00501313 a 0000 & 00501552 a 0000 & 00501723 a 0000 & 00501820 a 0000 & 00501998 a 0000 | not inclined to talk or give information or express opinions -00500889 00 s 02 blank 2 vacuous 0 002 & 00500569 a 0000 + 14455419 n 0101 | void of expression; "a blank stare" -00501004 00 s 05 close 0 closelipped 0 closemouthed 0 secretive 0 tightlipped 0 005 & 00500569 a 0000 + 04652177 n 0402 + 04657407 n 0402 + 02145271 v 0401 + 04657407 n 0101 | inclined to secrecy or reticence about divulging information; "although they knew her whereabouts her friends kept close about it" -00501313 00 s 05 deadpan 0 expressionless 0 impassive 0 poker-faced 0 unexpressive 0 002 & 00500569 a 0000 + 07483782 n 0303 | deliberately impassive in manner; "deadpan humor"; "his face remained expressionless as the verdict was read" -00501552 00 s 01 incommunicado 0 001 & 00500569 a 0000 | without the means or right to communicate; "a prisoner held incommunicado"; "incommunicado political detainees" -00501723 00 s 01 inexpressive 0 001 & 00500569 a 0000 | not expressive; "an inexpressive face" -00501820 00 s 02 mum 0 silent 0 003 & 00500569 a 0000 + 04651974 n 0202 + 04652345 n 0101 | failing to speak or communicate etc when expected to; "the witness remained silent" -00501998 00 s 02 unpronounceable 0 unutterable 0 001 & 00500569 a 0000 | very difficult to pronounce correctly; "an unpronounceable foreign word"; "unutterable consonant clusters" -00502180 00 a 01 compact 0 010 ^ 00538565 a 0000 + 04941325 n 0101 ! 00503321 a 0101 & 00502487 a 0000 & 00502646 a 0000 & 00502730 a 0000 & 00502809 a 0000 & 00502922 a 0000 & 00503020 a 0000 & 00503157 a 0000 | closely and firmly united or packed together; "compact soil"; "compact clusters of flowers" -00502487 00 s 03 clayey 0 cloggy 0 heavy 0 001 & 00502180 a 0000 | (used of soil) compact and fine-grained; "the clayey soil was heavy and easily saturated" -00502646 00 s 01 close-packed 0 001 & 00502180 a 0000 | packed especially tightly -00502730 00 s 01 consolidated 0 001 & 00502180 a 0000 | forming a solid mass -00502809 00 s 02 impacted 0 wedged 0 001 & 00502180 a 0000 | wedged or packed in together; "an impacted tooth" -00502922 00 s 01 packed 0 001 & 00502180 a 0000 | pressed together or compressed; "packed snow" -00503020 00 s 01 serried 0 001 & 00502180 a 0000 | (especially of rows as of troops or mountains) pressed together; "in serried ranks" -00503157 00 s 01 tight 0 001 & 00502180 a 0000 | packed closely together; "they stood in a tight little group"; "hair in tight curls"; "the pub was packed tight" -00503321 00 a 01 loose 2 006 + 04777421 n 0101 ! 00502180 a 0101 & 00503527 a 0000 & 00503664 a 0000 & 00503780 a 0000 & 00503876 a 0000 | not compact or dense in structure or arrangement; "loose gravel" -00503527 00 s 01 light 0 002 & 00503321 a 0000 + 05028700 n 0101 | (used of soil) loose and large-grained in consistency; "light soil" -00503664 00 s 02 shifting 0 unfirm 0 001 & 00503321 a 0000 | (of soil) unstable; "shifting sands"; "unfirm earth" -00503780 00 s 01 silty 0 002 & 00503321 a 0000 + 15042052 n 0101 | full of silt; "silty soil" -00503876 00 s 01 unconsolidated 0 001 & 00503321 a 0000 | loose and unstratified; "unconsolidated soil" -00503982 00 a 01 comparable 0 006 ^ 00889831 a 0000 ^ 01718158 a 0000 + 04746842 n 0104 ! 00504592 a 0101 & 00504172 a 0000 & 00504431 a 0000 | able to be compared or worthy of comparison -00504172 00 s 01 comparable_with(p) 0 001 & 00503982 a 0000 | similar in some respect and so able to be compared in order to show differences and similarities; "pianists of comparable ability"; "cars comparable with each other in terms of fuel consumption" -00504431 00 s 01 comparable_to(p) 0 001 & 00503982 a 0000 | worthy of comparison; as good as; "at that moment nothing in the world seemed comparable to sleep" -00504592 00 a 02 incomparable 0 uncomparable 0 007 ^ 00227507 a 0000 ^ 01675190 a 0000 ! 00503982 a 0101 & 00505086 a 0000 & 00505285 a 0000 & 00505410 a 0000 & 00505853 a 0000 | such that comparison is impossible; unsuitable for comparison or lacking features that can be compared; "an incomparable week of rest and pleasure"; "the computer proceeds with its incomparable logic and efficiency"; "this report is incomparable with the earlier ones because of different breakdowns of the data" -00505086 00 s 01 all-time 0 001 & 00504592 a 0000 | unsurpassed in some respect up to the present; "prices at an all-time high"; "morale at an all-time low"; "among the all-time great lefthanders" -00505285 00 s 01 incommensurable 0 001 & 00504592 a 0000 | impossible to measure or compare in value or size or excellence -00505410 00 s 09 matchless 0 nonpareil 0 one(a) 0 one_and_only(a) 0 peerless 0 unmatched 0 unmatchable 0 unrivaled 0 unrivalled 0 001 & 00504592 a 0000 | eminent beyond or above comparison; "matchless beauty"; "the team's nonpareil center fielder"; "she's one girl in a million"; "the one and only Muhammad Ali"; "a peerless scholar"; "infamy unmatched in the Western world"; "wrote with unmatchable clarity"; "unrivaled mastery of her art" -00505853 00 s 05 alone(p) 0 unique 0 unequaled 0 unequalled 0 unparalleled 0 002 & 00504592 a 0000 + 04763650 n 0202 | radically distinctive and without equal; "he is alone in the field of microbiology"; "this theory is altogether alone in its penetration of the problem"; "Bach was unique in his handling of counterpoint"; "craftsmen whose skill is unequaled"; "unparalleled athletic ability"; "a breakdown of law unparalleled in our history" -00506299 00 a 01 compassionate 0 010 ^ 01261867 a 0000 ^ 01507134 a 0000 ^ 02374914 a 0000 + 07553741 n 0101 + 04829550 n 0101 + 07553741 n 0102 ! 00507053 a 0101 & 00506601 a 0000 & 00506743 a 0000 & 00506852 a 0000 | showing or having compassion; "heard the soft and compassionate voices of women" -00506601 00 s 01 caring 0 002 & 00506299 a 0000 + 07546125 n 0102 | feeling and exhibiting concern and empathy for others; "caring friends" -00506743 00 s 01 nurturant 0 001 & 00506299 a 0000 | providing physical and emotional care and nourishment -00506852 00 s 01 tenderhearted 0 002 & 00506299 a 0000 + 07554342 n 0102 | easily moved by another's distress; "a noble tenderhearted creature who sympathizes with all the human race"- W.M.Thackeray -00507053 00 a 01 uncompassionate 0 004 ^ 01507402 a 0000 ^ 02375828 a 0000 ! 00506299 a 0101 & 00507292 a 0000 | lacking compassion or feeling for others; "nor silver-shedding tears could penetrate her uncompassionate sire"- Shakespeare -00507292 00 s 03 hardhearted 0 stonyhearted 0 unfeeling 0 003 & 00507053 a 0000 + 04844625 n 0301 + 07506149 n 0103 | devoid of feeling for others; "an unfeeling wretch" -00507464 00 a 01 compatible 1 008 ^ 00560586 a 0000 ^ 01163083 a 0000 ^ 01486489 a 0000 + 04712735 n 0101 ! 00508192 a 0101 & 00507789 a 0000 & 00507912 a 0000 & 00508036 a 0000 | able to exist and perform in harmonious or agreeable combination; "a compatible married couple"; "her deeds were compatible with her ideology" -00507789 00 s 01 congenial 0 001 & 00507464 a 0000 | (used of plants) capable of cross-fertilization or of being grafted -00507912 00 s 01 congruous 0 003 & 00507464 a 0000 + 04714156 n 0102 + 04714156 n 0101 | suitable or appropriate together -00508036 00 s 01 harmonious 0 003 & 00507464 a 0000 + 13969243 n 0101 + 04713118 n 0102 | existing together in harmony; "harmonious family relationships" -00508192 00 a 01 incompatible 1 010 ^ 02064745 a 0000 ^ 01164072 a 0000 ^ 01487201 a 0000 ^ 00561036 a 0000 + 04714440 n 0101 ! 00507464 a 0101 & 00508480 a 0000 & 00508592 a 0000 & 00508750 a 0000 & 00508924 a 0000 | not compatible; "incompatible personalities"; "incompatible colors" -00508480 00 s 01 antagonistic 0 002 & 00508192 a 0000 + 13980288 n 0103 | incapable of harmonious association -00508592 00 s 01 clashing 0 001 & 00508192 a 0000 | sharply and harshly discordant; "clashing interests of loggers and conservationists"; "clashing colors" -00508750 00 s 02 contradictory 0 mutually_exclusive 0 004 & 00508192 a 0000 + 13857486 n 0101 + 02663141 v 0101 + 00823436 v 0101 | unable to be both true at the same time -00508924 00 s 01 uncongenial 0 001 & 00508192 a 0000 | used of plant stock or scions; incapable of being grafted -00509039 00 a 01 compatible 2 002 ;c 03082979 n 0000 ! 00509206 a 0101 | capable of being used with or connected to other devices or components without modification -00509206 00 a 01 incompatible 2 002 ;c 03082979 n 0000 ! 00509039 a 0101 | incapable of being used with or connected to other devices or components without modification -00509377 00 a 02 miscible 0 mixable 0 006 ;c 06090869 n 0000 + 00556193 v 0201 + 00184117 v 0201 + 00394813 v 0203 ! 00509735 a 0101 & 00509576 a 0000 | (chemistry, physics) capable of being mixed -00509576 00 s 01 compatible 0 001 & 00509377 a 0000 | capable of forming a homogeneous mixture that neither separates nor is altered by chemical interaction -00509735 00 a 03 immiscible 0 non-miscible 0 unmixable 0 003 ;c 06090869 n 0000 ! 00509377 a 0101 & 00509896 a 0000 | (chemistry, physics) incapable of mixing -00509896 00 s 01 incompatible 0 001 & 00509735 a 0000 | used especially of solids or solutions; incapable of blending into a stable homogeneous mixture -00510050 00 a 01 competent 0 010 ^ 00306314 a 0000 ^ 00839619 a 0000 ^ 01911053 a 0000 ^ 02225510 a 0000 + 05153520 n 0102 + 05153520 n 0101 ! 00511214 a 0101 & 00510348 a 0000 & 00510644 a 0000 & 00511037 a 0000 | properly or sufficiently qualified or capable or efficient; "a competent typist" -00510348 00 s 02 able 0 capable 0 005 & 00510050 a 0000 + 05202497 n 0202 + 05623181 n 0201 + 05616246 n 0101 + 05200169 n 0101 | have the skills and qualifications to do things well; "able teachers"; "a capable administrator"; "children as young as 14 can be extremely capable and dependable" -00510644 00 s 02 effective 0 efficient 0 004 & 00510050 a 0000 + 01642924 v 0101 + 05199286 n 0101 + 05199286 n 0102 | able to accomplish a purpose; functioning effectively; "people who will do nothing unless they get something out of it for themselves are often highly effective persons..."-G.B.Shaw; "effective personnel"; "an efficient secretary"; "the efficient cause of the revolution" -00511037 00 s 01 workmanlike 0 001 & 00510050 a 0000 | worthy of a good workman; "a competent job"; "the book is a workmanlike job with chronology and bibliography and index" -00511214 00 a 01 incompetent 0 009 ^ 00840902 a 0000 ^ 01911415 a 0000 ^ 02228335 a 0000 + 05154241 n 0102 + 05154241 n 0101 ! 00510050 a 0101 & 00511526 a 0000 & 00511739 a 0000 & 00511966 a 0000 | not qualified or suited for a purpose; "an incompetent secret service"; "the filming was hopeless incompetent" -00511526 00 s 02 feckless 0 inept 0 003 & 00511214 a 0000 + 04721058 n 0203 + 05139942 n 0101 | generally incompetent and ineffectual; "feckless attempts to repair the plumbing"; "inept handling of the account" -00511739 00 s 02 ineffective 0 inefficient 0 003 & 00511214 a 0000 + 05648953 n 0201 + 05207963 n 0101 | lacking the ability or skill to perform effectively; inadequate; "an ineffective administration"; "inefficient workers" -00511966 00 s 01 unworkmanlike 0 001 & 00511214 a 0000 | not characteristic of or suitable for a good workman; "an unworkmanlike result"; "an unworkmanlike tool" -00512130 00 a 01 competent 2 001 ! 00512261 a 0101 | legally qualified or sufficient; "a competent court"; "competent testimony" -00512261 00 a 02 incompetent 2 unqualified 3 002 ;c 08441203 n 0000 ! 00512130 a 0101 | legally not qualified or sufficient; "a wife is usually considered unqualified to testify against her husband"; "incompetent witnesses" -00512487 00 a 02 competitive 0 competitory 0 007 + 01072262 v 0201 + 01072262 v 0101 + 04837425 n 0101 ! 00513165 a 0101 & 00512769 a 0000 & 00512941 a 0000 & 00513048 a 0000 | involving competition or competitiveness; "competitive games"; "to improve one's competitive position" -00512769 00 s 03 agonistic 0 agonistical 0 combative 0 002 & 00512487 a 0000 + 04837615 n 0301 | striving to overcome in argument; "a dialectical and agonistic approach" -00512941 00 s 02 emulous 0 rivalrous 0 002 & 00512487 a 0000 + 10533013 n 0201 | eager to surpass others -00513048 00 s 01 matched 0 001 & 00512487 a 0000 | provided with a worthy adversary or competitor; "matched teams" -00513165 00 a 01 noncompetitive 0 004 ! 00512487 a 0101 & 00513388 a 0000 & 00513559 a 0000 & 00513716 a 0000 | not involving competition or competitiveness; "noncompetitive positions"; "noncompetitive interest in games" -00513388 00 s 02 accommodative 0 cooperative 0 003 & 00513165 a 0000 + 04906026 n 0203 + 02702830 v 0102 | willing to adjust to differences in order to obtain agreement -00513559 00 s 01 monopolistic 0 002 & 00513165 a 0000 + 14444326 n 0101 | having exclusive control over a commercial activity by possession or legal grant -00513716 00 s 01 uncompetitive 0 001 & 00513165 a 0000 | not inclined to compete -00513799 00 a 02 complaining(a) 0 complaintive 0 003 ! 00514278 a 0101 & 00513981 a 0000 & 00514175 a 0000 | expressing pain or dissatisfaction of resentment; "a complaining boss" -00513981 00 s 04 fretful 0 querulous 0 whiney 0 whiny 0 005 & 00513799 a 0000 + 07211752 n 0402 + 07211752 n 0302 + 04642980 n 0201 + 07552729 n 0103 | habitually complaining; "a whiny child" -00514175 00 s 01 protestant 0 003 & 00513799 a 0000 + 02521410 v 0101 + 00910135 v 0101 | protesting -00514278 00 a 01 uncomplaining 0 002 ^ 01735736 a 0000 ! 00513799 a 0101 | not complaining; "uncomplaining courage" -00514396 00 a 01 compressible 0 004 + 01387786 v 0101 + 04938474 n 0101 ! 00514717 a 0101 & 00514613 a 0000 | capable of being compressed or made more compact; "compressible packing materials"; "a compressible box" -00514613 00 s 01 compressed 0 001 & 00514396 a 0000 | reduced in volume by pressure; "compressed air" -00514717 00 a 01 incompressible 0 002 ! 00514396 a 0101 + 04938702 n 0101 | incapable of being compressed; resisting compression; "mounds of incompressible garbage" -00514884 00 a 01 whole 0 010 ^ 00520214 a 0000 = 14460565 n 0000 + 05869584 n 0101 ! 00516539 a 0101 & 00515380 a 0000 & 00515622 a 0000 & 00515753 a 0000 & 00515870 a 0000 & 00516231 a 0000 & 00516360 a 0000 | including all components without exception; being one unit or constituting the full amount or extent or duration; complete; "gave his whole attention"; "a whole wardrobe for the tropics"; "the whole hog"; "a whole week"; "the baby cried the whole trip home"; "a whole loaf of bread" -00515380 00 s 03 entire 1 full 1 total 0 003 & 00514884 a 0000 + 04765851 n 0301 + 14461231 n 0102 | constituting the full quantity or extent; complete; "an entire town devastated by an earthquake"; "gave full attention"; "a total failure" -00515622 00 s 01 full-length 0 001 & 00514884 a 0000 | representing or accommodating the entire length; "a full-length portrait" -00515753 00 s 01 full-page 0 001 & 00514884 a 0000 | occupying an entire page in a book or paper; "a full-page ad" -00515870 00 s 03 integral 0 entire 2 intact 0 004 & 00514884 a 0000 + 14460407 n 0301 + 14461231 n 0202 + 14461231 n 0103 | constituting the undiminished entirety; lacking nothing essential especially not damaged; "a local motion keepeth bodies integral"- Bacon; "was able to keep the collection entire during his lifetime"; "fought to keep the union intact" -00516231 00 s 01 livelong 0 001 & 00514884 a 0000 | (of time) constituting the full extent or duration; "all the livelong day" -00516360 00 s 01 undivided 0 001 & 00514884 a 0000 | not separated into parts or shares; constituting an undivided unit; "an undivided interest in the property"; "a full share" -00516539 00 a 01 fractional 0 010 ^ 00523978 a 0000 = 14460565 n 0000 + 03390207 n 0101 ! 00514884 a 0101 & 00516887 a 0000 & 00517010 a 0000 & 00517314 a 0000 & 00517554 a 0000 & 00517710 a 0000 & 00517816 a 0000 | constituting or comprising a part or fraction of a possible whole or entirety; "a fractional share of the vote"; "a partial dose" -00516887 00 s 01 aliquot 0 002 & 00516539 a 0000 + 13734629 n 0101 | signifying an exact divisor or factor of a quantity -00517010 00 s 01 divisional 0 002 & 00516539 a 0000 + 05867413 n 0103 | constituting a division or an aliquot part of the basic monetary unit; "American divisional (fractional) coins include the dime and the nickel"; "fractional currency is currency in denominations less than the basic monetary unit" -00517314 00 s 02 fragmental 0 fragmentary 0 007 & 00516539 a 0000 + 09285254 n 0201 + 07008680 n 0201 + 04184701 n 0203 + 09285254 n 0101 + 07008680 n 0101 + 04184701 n 0103 | consisting of small disconnected parts; "fragmentary remains" -00517554 00 s 01 half(a) 0 001 & 00516539 a 0000 | consisting of one of two equivalent parts in value or quantity; "a half chicken"; "lasted a half hour" -00517710 00 s 01 halfway 0 001 & 00516539 a 0000 | including only half or a portion; "halfway measures" -00517816 00 s 01 waist-length 0 001 & 00516539 a 0000 | (of clothing) extending only to the waist -00517916 00 a 01 whole 2 001 ! 00518035 a 0101 | (of siblings) having the same parents; "whole brothers and sisters" -00518035 00 a 01 half 2 001 ! 00517916 a 0101 | (of siblings) related through one parent only; "a half brother"; "half sister" -00518164 00 a 01 committed 0 004 + 04646990 n 0101 ! 00518716 a 0101 & 00518405 a 0000 & 00518549 a 0000 | bound or obligated, as under a pledge to a particular cause, action, or attitude; "committed church members"; "a committed Marxist" -00518405 00 s 02 bound_up 0 wrapped_up 0 001 & 00518164 a 0000 | deeply devoted to; "bound up in her teaching"; "is wrapped up in his family" -00518549 00 s 02 pledged 0 sworn 0 001 & 00518164 a 0000 | bound by or as if by an oath; "according to an early tradition became his sworn brother"; "sworn enemies" -00518716 00 a 01 uncommitted 0 004 ! 00518164 a 0101 & 00518848 a 0000 & 00518981 a 0000 & 00519103 a 0000 | not bound or pledged -00518848 00 s 01 fancy-free 0 001 & 00518716 a 0000 | having no commitments or responsibilities; carefree; "a fancy-free bachelor" -00518981 00 s 01 floating(a) 0 001 & 00518716 a 0000 | not definitely committed to a party or policy; "floating voters" -00519103 00 s 01 undecided 0 001 & 00518716 a 0000 | not yet having made a commitment; "undecided voters" -00519211 00 a 01 dedicated 0 004 ! 00520081 a 0101 & 00519477 a 0000 & 00519668 a 0000 & 00519823 a 0000 | devoted to a cause or ideal or purpose; "a dedicated dancer"; "dedicated teachers"; "dedicated to the proposition that all men are created equal"- A.Lincoln -00519477 00 s 01 devoted(p) 0 001 & 00519211 a 0000 | (followed by `to') dedicated exclusively to a purpose or use; "large sums devoted to the care of the poor"; "a life devoted to poetry" -00519668 00 s 01 devoted 2 002 & 00519211 a 0000 + 07544491 n 0102 | zealous in devotion or affection; "a devoted husband and father"; "devoted friends" -00519823 00 s 01 sacred 0 002 & 00519211 a 0000 + 04855332 n 0101 | (often followed by `to') devoted exclusively to a single use or purpose or person; "a fund sacred to charity"; "a morning hour sacred to study"; "a private office sacred to the President" -00520081 00 a 01 undedicated 0 001 ! 00519211 a 0101 | not dedicated; "the playground has been completed but is still undedicated" -00520214 00 a 01 complete 0 024 ^ 00525453 a 0000 ^ 00514884 a 0000 = 14460974 n 0000 + 14460974 n 0101 ! 00523978 a 0101 & 00520892 a 0000 & 00521329 a 0000 & 00521584 a 0000 & 00521692 a 0000 & 00521811 a 0000 & 00521976 a 0000 & 00522101 a 0000 & 00522240 a 0000 & 00522349 a 0000 & 00522463 a 0000 & 00522680 a 0000 & 00522885 a 0000 & 00523068 a 0000 & 00523229 a 0000 & 00523364 a 0000 & 00523479 a 0000 & 00523587 a 0000 & 00523786 a 0000 & 00523867 a 0000 | having every necessary or normal part or component or step; "a complete meal"; "a complete wardrobe"; "a complete set of the Britannica"; "a complete set of china"; "a complete defeat"; "a complete accounting" -00520892 00 s 06 absolute 1 downright 0 out-and-out(a) 0 rank(a) 0 right-down 0 sheer(a) 0 002 & 00520214 a 0000 + 04738398 n 0101 | complete and without restriction or qualification; sometimes used informally as intensifiers; "absolute freedom"; "an absolute dimwit"; "a downright lie"; "out-and-out mayhem"; "an out-and-out lie"; "a rank outsider"; "many right-down vices"; "got the job through sheer persistence"; "sheer stupidity" -00521329 00 s 04 accomplished 0 completed 0 realized 0 realised 0 001 & 00520214 a 0000 | successfully completed or brought to an end; "his mission accomplished he took a vacation"; "the completed project"; "the joy of a realized ambition overcame him" -00521584 00 s 01 all 0 001 & 00520214 a 0000 | completely given to or absorbed by; "became all attention" -00521692 00 s 02 all-or-none 0 all-or-nothing 0 001 & 00520214 a 0000 | occurring completely or not occurring at all -00521811 00 s 02 all-out 0 full-scale 0 001 & 00520214 a 0000 | using all available resources; "all-out war"; "a full-scale campaign against nuclear power plants" -00521976 00 s 01 allover 0 001 & 00520214 a 0000 | covering the entire surface; "an allover pattern"; "got an allover tan" -00522101 00 s 01 clean 0 001 & 00520214 a 0000 | thorough and without qualification; "a clean getaway"; "a clean sweep"; "a clean break" -00522240 00 s 01 completed 2 002 & 00520214 a 0000 ;c 00468480 n 0000 | caught; "a completed forward pass" -00522349 00 s 02 dead(a) 0 utter 0 001 & 00520214 a 0000 | complete; "came to a dead stop"; "utter seriousness" -00522463 00 s 03 exhaustive 0 thorough 0 thoroughgoing 0 002 & 00520214 a 0000 + 04672858 n 0201 | performed comprehensively and completely; "an exhaustive study"; "made a thorough search"; "thoroughgoing research" -00522680 00 s 02 fleshed_out 0 full-clad 0 001 & 00520214 a 0000 | given substance or detail; completed; "did not spring full-clad from his imagination"; "a plan fleshed out with statistics and details" -00522885 00 s 02 full 0 total 2 002 & 00520214 a 0000 + 14461519 n 0102 | complete in extent or degree and in every particular; "a full game"; "a total eclipse"; "a total disaster" -00523068 00 s 01 full-blown 0 001 & 00520214 a 0000 | having or displaying all the characteristics necessary for completeness; "a full-blown financial crisis" -00523229 00 s 01 full-dress 0 001 & 00520214 a 0000 | complete in every respect; "a full-dress debate"; "a full-dress investigation" -00523364 00 s 01 good 0 001 & 00520214 a 0000 | thorough; "had a good workout"; "gave the house a good cleaning" -00523479 00 s 01 hearty 0 002 & 00520214 a 0000 + 04867539 n 0101 | without reservation; "hearty support" -00523587 00 s 01 self-contained 0 001 & 00520214 a 0000 | constituting a complete and independent unit in and of itself; "the university is like a self-contained city with shops and all amenities" -00523786 00 s 01 sound 0 001 & 00520214 a 0000 | thorough; "a sound thrashing" -00523867 00 s 01 stand-alone 0 002 & 00520214 a 0000 ;c 06099269 n 0000 | capable of operating independently -00523978 00 a 02 incomplete 0 uncomplete 0 011 ^ 00516539 a 0000 = 14460974 n 0000 + 14462193 n 0101 ! 00520214 a 0101 & 00524388 a 0000 & 00524496 a 0000 & 00524607 a 0000 & 00524693 a 0000 & 00524965 a 0000 & 00525105 a 0000 & 00525315 a 0000 | not complete or total; not completed; "an incomplete account of his life"; "political consequences of incomplete military success"; "an incomplete forward pass" -00524388 00 s 01 broken 0 001 & 00523978 a 0000 | lacking a part or parts; "a broken set of encyclopedia" -00524496 00 s 01 half(a) 0 001 & 00523978 a 0000 | partial; "gave me a half smile"; "he did only a half job" -00524607 00 s 01 neither 0 001 & 00523978 a 0000 | not either; not one or the other -00524693 00 s 01 partial 0 004 & 00523978 a 0000 + 13809207 n 0101 + 03892891 n 0101 + 14462064 n 0101 | being or affecting only a part; not total; "a partial description of the suspect"; "partial collapse"; "a partial eclipse"; "a partial monopoly"; "partial immunity" -00524965 00 s 01 rudimentary 0 002 & 00523978 a 0000 + 05604022 n 0101 | being in the earliest stages of development; "rudimentary plans" -00525105 00 s 02 sketchy 0 unelaborated 0 003 & 00523978 a 0000 + 06469694 n 0101 + 14462565 n 0101 | giving only major points; lacking completeness; "a sketchy account"; "details of the plan remain sketchy" -00525315 00 s 01 uncompleted 0 002 & 00523978 a 0000 ;c 00468480 n 0000 | not caught or not caught within bounds; "an uncompleted pass" -00525453 00 a 01 comprehensive 0 023 ^ 00520214 a 0000 ^ 01101391 a 0000 ^ 02560548 a 0000 = 14461519 n 0000 + 02629793 v 0103 + 14461519 n 0101 ! 00529075 a 0101 & 00526062 a 0000 & 00526541 a 0000 & 00526696 a 0000 & 00526832 a 0000 & 00526984 a 0000 & 00527188 a 0000 & 00527551 a 0000 & 00527744 a 0000 & 00527870 a 0000 & 00528041 a 0000 & 00528167 a 0000 & 00528333 a 0000 & 00528495 a 0000 & 00528629 a 0000 & 00528761 a 0000 & 00528875 a 0000 | including all or everything; "comprehensive coverage"; "a comprehensive history of the revolution"; "a comprehensive survey"; "a comprehensive education" -00526062 00 s 0a across-the-board 0 all-embracing 0 all-encompassing 0 all-inclusive 0 blanket(a) 0 broad 0 encompassing 0 extensive 0 panoptic 0 wide 0 003 & 00525453 a 0000 + 05104548 n 0a08 + 05106317 n 0802 | broad in scope or content; "across-the-board pay increases"; "an all-embracing definition"; "blanket sanctions against human-rights violators"; "an invention with broad applications"; "a panoptic study of Soviet nationality"- T.G.Winner; "granted him wide powers" -00526541 00 s 03 all-around(a) 0 all-round(a) 0 well-rounded 0 001 & 00525453 a 0000 | many-sided; "an all-around athlete"; "a well-rounded curriculum" -00526696 00 s 01 citywide 0 001 & 00525453 a 0000 | occurring or extending throughout a city; "citywide bussing"; "a citywide strike" -00526832 00 s 01 countywide 0 001 & 00525453 a 0000 | occurring or extending throughout a county; "a countywide war on drugs"; "countywide elections" -00526984 00 s 02 countrywide 0 nationwide 0 001 & 00525453 a 0000 | occurring or extending throughout a country or nation; "the event aroused nationwide interest"; "a countrywide fund-raising campaign" -00527188 00 s 07 cosmopolitan 0 ecumenical 0 oecumenical 0 general 0 universal 0 worldwide 0 world-wide 0 004 & 00525453 a 0000 + 01022740 v 0501 + 09466280 n 0501 + 04765691 n 0501 | of worldwide scope or applicability; "an issue of cosmopolitan import"; "the shrewdest political and ecumenical comment of our time"- Christopher Morley; "universal experience" -00527551 00 s 02 door-to-door 0 house-to-house 0 001 & 00525453 a 0000 | omitting no one; from the door of one house to that of the next; "a door-to-door campaign"; "house-to-house coverage" -00527744 00 s 02 encyclopedic 0 encyclopaedic 0 001 & 00525453 a 0000 | broad in scope or content; "encyclopedic knowledge" -00527870 00 s 01 large 0 002 & 00525453 a 0000 + 05618293 n 0103 | having broad power and range and scope; "taking the large view"; "a large effect"; "a large sympathy" -00528041 00 s 01 omnibus(a) 0 002 & 00525453 a 0000 + 02924116 n 0109 | providing for many things at once; "an omnibus law" -00528167 00 s 01 plenary 0 002 & 00525453 a 0000 + 08309854 n 0101 | full in all respects; "a plenary session of the legislature"; "a diplomat with plenary powers" -00528333 00 s 02 spatiotemporal 0 spaciotemporal 0 001 & 00525453 a 0000 | existing in both space and time; having both spatial extension and temporal duration -00528495 00 s 01 schoolwide 0 001 & 00525453 a 0000 | occurring or extending throughout a school; "schoolwide support for the team" -00528629 00 s 01 statewide 0 001 & 00525453 a 0000 | occurring or extending throughout a state; "the statewide recycling program" -00528761 00 s 01 super 0 001 & 00525453 a 0000 | including more than a specified category; "a super experiment" -00528875 00 s 01 umbrella 0 001 & 00525453 a 0000 | covering or applying simultaneously to a number of similar items or elements or groups; "an umbrella organization"; "umbrella insurance coverage" -00529075 00 a 02 noncomprehensive 0 incomprehensive 0 002 ! 00525453 a 0101 & 00529191 a 0000 | not comprehensive -00529191 00 s 01 limited 0 001 & 00529075 a 0000 | including only a part -00529266 00 a 01 composed 0 008 ^ 00751525 a 0000 ^ 00087152 a 0000 ! 00531342 a 0101 & 00529657 a 0000 & 00530047 a 0000 & 00530354 a 0000 & 00530772 a 0000 & 00531087 a 0000 | serenely self-possessed and free from agitation especially in times of stress; "the performer seemed completely composed as she stepped onto the stage"; "I felt calm and more composed than I had in a long time" -00529657 00 s 04 calm 0 unagitated 0 serene 0 tranquil 0 004 & 00529266 a 0000 + 04903813 n 0102 + 07514968 n 0101 + 04903813 n 0103 | not agitated; without losing self-possession; "spoke in a calm voice"; "remained calm throughout the uproar"; "he remained serene in the midst of turbulence"; "a serene expression on her face"; "she became more tranquil"; "tranquil life in the country" -00530047 00 s 02 imperturbable 0 unflappable 0 003 & 00529266 a 0000 + 07515328 n 0103 + 07515328 n 0102 | not easily perturbed or excited or upset; marked by extreme calm and composure; "hitherto imperturbable, he now showed signs of alarm"; "an imperturbable self-possession"; "unflappable in a crisis" -00530354 00 s 06 collected 0 equanimous 0 poised 0 self-collected 0 self-contained 0 self-possessed 0 002 & 00529266 a 0000 + 04903813 n 0204 | in full control of your faculties; "the witness remained collected throughout the cross-examination"; "perfectly poised and sure of himself"; "more self-contained and more dependable than many of the early frontiersmen"; "strong and self-possessed in the face of trouble" -00530772 00 s 03 cool 0 coolheaded 0 nerveless 0 003 & 00529266 a 0000 + 04858632 n 0302 + 04858632 n 0101 | marked by calm self-control (especially in trying circumstances); unemotional; "play it cool"; "keep cool"; "stayed coolheaded in the crisis"; "the most nerveless winner in the history of the tournament" -00531087 00 s 04 unflurried 0 unflustered 0 unperturbed 0 unruffled 0 001 & 00529266 a 0000 | free from emotional agitation or nervous tension; "the waiters were unflurried and good natured"; "with contented mind and unruffled spirit"- Anthony Trollope -00531342 00 a 01 discomposed 0 009 ^ 00085264 a 0000 ^ 00752392 a 0000 ! 00529266 a 0101 & 00531628 a 0000 & 00531887 a 0000 & 00532147 a 0000 & 00532288 a 0000 & 00532560 a 0000 & 00532753 a 0000 | having your composure disturbed; "looked about with a wandering and discomposed air" -00531628 00 s 03 abashed 0 chagrined 0 embarrassed 0 001 & 00531342 a 0000 | feeling or caused to feel uneasy and self-conscious; "felt abashed at the extravagant praise"; "chagrined at the poor sales of his book"; "was embarrassed by her child's tantrums" -00531887 00 s 03 blushful 0 blushing(a) 0 red-faced 0 001 & 00531342 a 0000 | having a red face from embarrassment or shame or agitation or emotional upset; "the blushing boy was brought before the Principal"; "her blushful beau"; "was red-faced with anger" -00532147 00 s 03 bothered 0 daunted 0 fazed 0 001 & 00531342 a 0000 | caused to show discomposure; "refused to be fazed by the objections" -00532288 00 s 02 discombobulated 0 disconcerted 0 001 & 00531342 a 0000 | having self-possession upset; thrown into confusion; "the hecklers pelted the discombobulated speaker with anything that came to hand"; "looked at each other dumbly, quite disconcerted"- G.B.Shaw -00532560 00 s 04 flustered 0 hot_and_bothered(p) 0 perturbed 0 rattled 0 002 & 00531342 a 0000 ;u 07075172 n 0000 | thrown into a state of agitated confusion; (`rattled' is an informal term) -00532753 00 s 01 unstrung 0 001 & 00531342 a 0000 | emotionally upset; "the incident left him unstrung and incapable of rational effort" -00532892 00 a 02 comprehensible 0 comprehendible 0 010 ^ 00428404 a 0000 ^ 00938801 a 0000 ^ 01336926 a 0000 + 00588221 v 0203 + 00588221 v 0103 + 04819026 n 0101 ! 00533851 a 0101 & 00533221 a 0000 & 00533452 a 0000 & 00533738 a 0000 | capable of being comprehended or understood; "an idea comprehensible to the average mind" -00533221 00 s 02 accessible 0 approachable 0 001 & 00532892 a 0000 | capable of being read with comprehension; "readily accessible to the nonprofessional reader"; "the tales seem more approachable than his more difficult novels" -00533452 00 s 05 apprehensible 0 intelligible 0 graspable 0 perceivable 0 understandable 0 008 & 00532892 a 0000 + 00594058 v 0505 + 00593852 v 0501 + 00591115 v 0501 + 00588888 v 0501 + 04819026 n 0502 + 04819496 n 0201 + 00588221 v 0108 | capable of being apprehended or understood -00533738 00 s 01 fathomable 0 001 & 00532892 a 0000 | (of meaning) capable of being penetrated or comprehended -00533851 00 a 02 incomprehensible 0 uncomprehensible 0 012 ^ 00939105 a 0000 ^ 00430191 a 0000 ^ 01337121 a 0000 + 04822223 n 0101 ! 00532892 a 0101 & 00534250 a 0000 & 00534524 a 0000 & 00534827 a 0000 & 00534918 a 0000 & 00535042 a 0000 & 00535170 a 0000 & 00535293 a 0000 | difficult to understand; "the most incomprehensible thing about the universe is that it is comprehensible"- A. Einstein -00534250 00 s 02 dark 0 obscure 0 004 & 00533851 a 0000 + 04823416 n 0202 + 04823416 n 0201 + 05988498 n 0102 | marked by difficulty of style or expression; "much that was dark is now quite clear to me"; "those who do not appreciate Kafka's work say his style is obscure" -00534524 00 s 03 enigmatic 0 enigmatical 0 puzzling 0 003 & 00533851 a 0000 + 05685538 n 0202 + 05685538 n 0102 | not clear to the understanding; "I didn't grasp the meaning of that enigmatic comment until much later"; "prophetic texts so enigmatic that their meaning has been disputed for centuries" -00534827 00 s 01 unfathomable 0 001 & 00533851 a 0000 | impossible to come to understand -00534918 00 s 01 impenetrable 0 002 & 00533851 a 0000 + 04822870 n 0102 | impossible to understand; "impenetrable jargon" -00535042 00 s 01 indecipherable 0 001 & 00533851 a 0000 | impossible to determine the meaning of; "an indecipherable message" -00535170 00 s 02 lost 0 missed 0 001 & 00533851 a 0000 | not caught with the senses or the mind; "words lost in the din" -00535293 00 s 02 opaque 0 unintelligible 0 004 & 00533851 a 0000 + 06608977 n 0203 + 04823258 n 0101 + 04823258 n 0102 | not clearly understood or expressed -00535452 00 a 01 concave 0 019 ^ 01353014 a 0000 + 05070032 n 0102 + 13864965 n 0102 + 05070032 n 0101 ! 00537339 a 0101 & 00535844 a 0000 & 00536008 a 0000 & 00536103 a 0000 & 00536195 a 0000 & 00536304 a 0000 & 00536416 a 0000 & 00536572 a 0000 & 00536655 a 0000 & 00536792 a 0000 & 00536898 a 0000 & 00536998 a 0000 & 00537073 a 0000 & 00537169 a 0000 & 00537248 a 0000 | curving inward -00535844 00 s 03 acetabular 0 cotyloid 0 cotyloidal 0 002 & 00535452 a 0000 + 05596224 n 0101 | of the cup-shaped socket that receives the head of the thigh bone -00536008 00 s 02 biconcave 0 concavo-concave 0 001 & 00535452 a 0000 | concave on both sides -00536103 00 s 01 boat-shaped 0 001 & 00535452 a 0000 | having a concave shape like a boat -00536195 00 s 01 bowl-shaped 0 001 & 00535452 a 0000 | having a concave shape with an open top like a bowl -00536304 00 s 04 bursiform 0 pouch-shaped 0 pouchlike 0 saclike 0 001 & 00535452 a 0000 | shaped like a pouch -00536416 00 s 01 concavo-convex 0 001 & 00535452 a 0000 | concave on one side and convex on the other with the concavity being greater than the convexity -00536572 00 s 01 cuplike 0 001 & 00535452 a 0000 | resembling the shape of a cup -00536655 00 s 02 cupular 0 cupulate 0 003 & 00535452 a 0000 + 12267931 n 0101 + 02465585 n 0101 | shaped like (or supporting) a cupule -00536792 00 s 03 dished 0 dish-shaped 0 patelliform 0 001 & 00535452 a 0000 | shaped like a dish or pan -00536898 00 s 01 planoconcave 0 001 & 00535452 a 0000 | flat on one side and concave on the other -00536998 00 s 01 recessed 0 001 & 00535452 a 0000 | resembling an alcove -00537073 00 s 01 saucer-shaped 0 001 & 00535452 a 0000 | having a concave shape like a saucer -00537169 00 s 01 umbilicate 0 001 & 00535452 a 0000 | depressed like a navel -00537248 00 s 01 urn-shaped 0 001 & 00535452 a 0000 | having a concave shape like an urn -00537339 00 a 02 convex 0 bulging 6 013 ^ 01353226 a 0000 + 05070290 n 0102 + 13864153 n 0102 + 05070290 n 0101 ! 00535452 a 0101 & 00537644 a 0000 & 00537745 a 0000 & 00537884 a 0000 & 00538017 a 0000 & 00538174 a 0000 & 00538276 a 0000 & 00538371 a 0000 & 00538469 a 0000 | curving or bulging outward -00537644 00 s 01 bell-shaped 0 001 & 00537339 a 0000 | having a convex shape that resembles a bell -00537745 00 s 04 biconvex 0 convexo-convex 0 lenticular 0 lentiform 0 001 & 00537339 a 0000 | convex on both sides; shaped like a lentil -00537884 00 s 02 broken-backed 0 hogged 0 002 & 00537339 a 0000 ;c 04194289 n 0000 | (of a ship) so weakened as to sag at each end -00538017 00 s 01 convexo-concave 0 001 & 00537339 a 0000 | convex on one side and concave on the other with the convexity being greater than the concavity -00538174 00 s 02 gibbous 0 gibbose 0 001 & 00537339 a 0000 | (used of the moon) more than half full -00538276 00 s 01 helmet-shaped 0 001 & 00537339 a 0000 | having the convex shape of a helmet -00538371 00 s 01 planoconvex 0 001 & 00537339 a 0000 | flat on one side and convex on the other -00538469 00 s 02 umbellate 0 umbel-like 0 001 & 00537339 a 0000 | resembling an umbel in form -00538565 00 a 01 concentrated 0 007 ^ 00502180 a 0000 ! 00539793 a 0101 & 00538891 a 0000 & 00539009 a 0000 & 00539207 a 0000 & 00539389 a 0000 & 00539687 a 0000 | gathered together or made less diffuse; "their concentrated efforts"; "his concentrated attention"; "concentrated study"; "a narrow thread of concentrated ore" -00538891 00 s 01 bunchy 0 002 & 00538565 a 0000 + 07959943 n 0101 | occurring close together in bunches or clusters -00539009 00 s 01 thick 0 001 & 00538565 a 0000 | having component parts closely crowded together; "a compact shopping center"; "a dense population"; "thick crowds"; "a thick forest"; "thick hair" -00539207 00 s 01 cumulous 0 002 & 00538565 a 0000 + 07961480 n 0106 | thrown together in a pile; "a desk heaped with books"; "heaped-up ears of corn"; "ungraded papers piled high" -00539389 00 s 03 single(a) 0 undivided 0 exclusive 0 002 & 00538565 a 0000 + 04865921 n 0101 | not divided among or brought to bear on more than one object or objective; "judging a contest with a single eye"; "a single devotion to duty"; "undivided affection"; "gained their exclusive attention" -00539687 00 s 01 thickset 0 001 & 00538565 a 0000 | planted or growing close together; "thickset trees" -00539793 00 a 01 distributed 0 020 ^ 00467913 a 0000 ! 00538565 a 0101 & 00540236 a 0000 & 00540366 a 0000 & 00540487 a 0000 & 00540632 a 0000 & 00540826 a 0000 & 00540977 a 0000 & 00541189 a 0000 & 00541349 a 0000 & 00541460 a 0000 & 00541614 a 0000 & 00541823 a 0000 & 00541935 a 0000 & 00542099 a 0000 & 00542282 a 0000 & 00542359 a 0000 & 00542501 a 0000 & 00542660 a 0000 & 00542775 a 0000 | spread out or scattered about or divided up -00540236 00 s 05 apportioned 0 dealt_out 0 doled_out 0 meted_out 0 parceled_out 0 001 & 00539793 a 0000 | given out in portions -00540366 00 s 01 broken 0 002 & 00539793 a 0000 ;c 06118563 n 0000 | discontinuous; "broken clouds"; "broken sunshine" -00540487 00 s 01 diffuse 0 002 & 00539793 a 0000 + 05088645 n 0101 | spread out; not concentrated in one place; "a large diffuse organization" -00540632 00 s 01 diffused 0 001 & 00539793 a 0000 | (of light rays) subjected to scattering by reflection from a rough surface or transmission through a translucent material; "diffused light" -00540826 00 s 01 dispensed 0 001 & 00539793 a 0000 | distributed or weighted out in carefully determined portions; "medicines dispensed to the sick" -00540977 00 s 02 dispersed 0 spread 0 001 & 00539793 a 0000 | distributed or spread over a considerable extent; "has ties with many widely dispersed friends"; "eleven million Jews are spread throughout Europe" -00541189 00 s 04 divided 0 divided_up 0 shared 0 shared_out 0 001 & 00539793 a 0000 | distributed in portions (often equal) on the basis of a plan or purpose -00541349 00 s 01 encyclical 0 001 & 00539793 a 0000 | intended for wide distribution; "an encyclical letter" -00541460 00 s 02 fanned 0 spread-out(a) 0 001 & 00539793 a 0000 | especially spread in a fan shape; "the peacock's fanned tail"; "the spread-out cards" -00541614 00 s 02 far-flung 0 widespread 0 001 & 00539793 a 0000 | distributed over a considerable extent; "far-flung trading operations"; "the West's far-flung mountain ranges"; "widespread nuclear fallout" -00541823 00 s 01 low-density(a) 0 001 & 00539793 a 0000 | having low concentration; "low-density urban areas" -00541935 00 s 01 rationed 0 001 & 00539793 a 0000 | distributed equitably in limited individual portions; "got along as best we could on rationed meat and sugar" -00542099 00 s 01 scattered 0 001 & 00539793 a 0000 | occurring or distributed over widely spaced and irregular intervals in time or space; "scattered showers"; "scattered villages" -00542282 00 s 02 separated 0 spaced 0 001 & 00539793 a 0000 | spaced apart -00542359 00 s 02 sparse 0 thin 0 003 & 00539793 a 0000 + 05114781 n 0101 + 05114781 n 0103 | not dense; "a thin beard"; "trees were sparse" -00542501 00 s 01 splashed 0 001 & 00539793 a 0000 | (of a fluid) having been propelled about in flying drops or masses; "with clothes wet by splashed water" -00542660 00 s 01 straggly 0 001 & 00539793 a 0000 | growing or spreading sparsely or irregularly; "straggly ivy" -00542775 00 s 02 unfocused 0 unfocussed 0 001 & 00539793 a 0000 | not concentrated at one point or upon one objective; "diversity...in our huge unfocused country"- Owen Wister -00542953 00 a 03 concentric 0 concentrical 0 homocentric 0 003 + 05073723 n 0101 ! 00543200 a 0101 & 00543117 a 0000 | having a common center; "concentric rings" -00543117 00 s 02 coaxial 0 coaxal 0 001 & 00542953 a 0000 | having a common axis -00543200 00 a 02 eccentric 0 nonconcentric 0 005 + 13877129 n 0101 + 05073888 n 0101 ! 00542953 a 0101 & 00543407 a 0000 & 00543494 a 0000 | not having a common center; not concentric; "eccentric circles" -00543407 00 s 01 acentric 0 001 & 00543200 a 0000 | not centered or having no center -00543494 00 s 02 off-center 0 off-centered 0 001 & 00543200 a 0000 | situated away from the center or axis -00543603 00 a 01 concerned 0 007 ^ 00163592 a 0000 ^ 02455297 a 0000 ! 00545015 a 0101 & 00543993 a 0000 & 00544231 a 0000 & 00544478 a 0000 & 00544860 a 0000 | feeling or showing worry or solicitude; "concerned parents of youthful offenders"; "was concerned about the future"; "we feel concerned about accomplishing the task at hand"; "greatly concerned not to disappoint a small child" -00543993 00 s 01 afraid 0 001 & 00543603 a 0000 | filled with regret or concern; used often to soften an unpleasant statement; "I'm afraid I won't be able to come"; "he was afraid he would have to let her go"; "I'm afraid you're wrong" -00544231 00 s 01 afraid 2 001 & 00543603 a 0000 | feeling worry or concern or insecurity; "She was afraid that I might be embarrassed"; "terribly afraid of offending someone"; "I am afraid we have witnessed only the first phase of the conflict" -00544478 00 s 04 haunted 0 obsessed 0 preoccupied 0 taken_up(p) 0 002 & 00543603 a 0000 + 05700087 n 0302 | having or showing excessive or compulsive concern with something; "became more and more haunted by the stupid riddle"; "was absolutely obsessed with the girl"; "got no help from his wife who was preoccupied with the children"; "he was taken up in worry for the old woman" -00544860 00 s 01 solicitous 0 002 & 00543603 a 0000 + 07505207 n 0102 | full of anxiety and concern; "solicitous parents"; "solicitous about the future" -00545015 00 a 01 unconcerned 0 008 ^ 00311663 a 0000 ^ 02459109 a 0000 ! 00543603 a 0101 & 00545484 a 0000 & 00545600 a 0000 & 00545746 a 0000 & 00546155 a 0000 & 00546452 a 0000 | lacking in interest or care or feeling; "the average American...is unconcerned that his or her plight is the result of a complex of personal and economic and governmental actions...beyond the normal citizen's comprehension and control"; "blithely unconcerned about his friend's plight" -00545484 00 s 01 blase 0 001 & 00545015 a 0000 | nonchalantly unconcerned; "a blase attitude about housecleaning" -00545600 00 s 01 blithe 0 001 & 00545015 a 0000 | lacking or showing a lack of due concern; "spoke with blithe ignorance of the true situation" -00545746 00 s 03 casual 0 insouciant 0 nonchalant 0 004 & 00545015 a 0000 + 04673470 n 0301 + 07530866 n 0202 + 04912240 n 0101 | marked by blithe unconcern; "an ability to interest casual students"; "showed a casual disregard for cold weather"; "an utterly insouciant financial policy"; "an elegantly insouciant manner"; "drove his car with nonchalant abandon"; "was polite in a teasing nonchalant manner" -00546155 00 s 03 degage 0 detached 0 uninvolved 0 001 & 00545015 a 0000 | showing lack of emotional involvement; "adopted a degage pose on the arm of the easy chair"- J.S.Perelman; "she may be detached or even unfeeling but at least she's not hypocritically effusive"; "an uninvolved bystander" -00546452 00 s 01 indifferent 0 002 & 00545015 a 0000 + 07505676 n 0101 | showing no care or concern in attitude or action; "indifferent to the sufferings of others"; "indifferent to her plea" -00546646 00 a 01 concise 0 012 ^ 02383380 a 0000 = 07090108 n 0000 + 07089024 n 0101 ! 00548781 a 0101 & 00546951 a 0000 & 00547166 a 0000 & 00547317 a 0000 & 00547641 a 0000 & 00547930 a 0000 & 00548029 a 0000 & 00548316 a 0000 & 00548579 a 0000 | expressing much in few words; "a concise explanation" -00546951 00 s 03 aphoristic 0 apothegmatic 0 epigrammatic 0 004 & 00546646 a 0000 + 07153727 n 0301 + 07153130 n 0202 + 07153130 n 0101 | terse and witty and like a maxim; "much given to apothegmatic instruction" -00547166 00 s 01 brief 0 003 & 00546646 a 0000 + 07089431 n 0101 + 05053042 n 0102 | concise and succinct; "covered the matter in a brief statement" -00547317 00 s 04 compendious 0 compact 0 succinct 0 summary 0 004 & 00546646 a 0000 + 06467007 n 0401 + 07089024 n 0304 + 06467996 n 0101 | briefly giving the gist of something; "a short and compendious book"; "a compact style is brief and pithy"; "succinct comparisons"; "a summary formulation of a wide-ranging subject" -00547641 00 s 04 crisp 0 curt 0 laconic 0 terse 0 003 & 00546646 a 0000 + 07088438 n 0401 + 07089276 n 0101 | brief and to the point; effectively cut short; "a crisp retort"; "a response so curt as to be almost rude"; "the laconic reply; `yes'"; "short and terse and easy to understand" -00547930 00 s 01 cryptic 0 001 & 00546646 a 0000 | having a puzzling terseness; "a cryptic note" -00548029 00 s 02 elliptic 0 elliptical 0 001 & 00546646 a 0000 | characterized by extreme economy of expression or omission of superfluous elements; "the dialogue is elliptic and full of dark hints"; "the explanation was concise, even elliptical to the verge of obscurity"- H.O.Taylor -00548316 00 s 02 pithy 0 sententious 0 003 & 00546646 a 0000 + 05921123 n 010e + 07089024 n 0103 | concise and full of meaning; "welcomed her pithy comments"; "the peculiarly sardonic and sententious style in which Don Luis composed his epigrams"- Hervey Allen -00548579 00 s 01 telegraphic 0 001 & 00546646 a 0000 | having the style of a telegram with many short words left out; "telegraphic economy of words"; "the strange telegraphic speech of some aphasics" -00548781 00 a 01 prolix 0 009 ^ 02383831 a 0000 = 07090108 n 0000 + 07090108 n 0102 + 07090108 n 0101 ! 00546646 a 0101 & 00549133 a 0000 & 00549236 a 0000 & 00549675 a 0000 & 00549826 a 0000 | tediously prolonged or tending to speak or write at great length; "editing a prolix manuscript"; "a prolix lecturer telling you more than you want to know" -00549133 00 s 01 diffuse 0 001 & 00548781 a 0000 | lacking conciseness; "a diffuse historical novel" -00549236 00 s 05 long-winded 0 tedious 0 verbose 0 windy 0 wordy 1 008 & 00548781 a 0000 + 07090108 n 0505 + 07090108 n 0403 + 07136711 n 0401 + 07089751 n 0301 + 07089751 n 0302 + 05206237 n 0201 + 07090108 n 0104 | using or containing too many words; "long-winded (or windy) speakers"; "verbose and ineffective instructional methods"; "newspapers of the day printed long wordy editorials"; "proceedings were delayed by wordy disputes" -00549675 00 s 01 verbal 0 002 & 00548781 a 0000 ;u 07073447 n 0000 | prolix; "you put me to forget a lady's manners by being so verbal"- Shakespeare -00549826 00 s 04 pleonastic 0 redundant 2 tautologic 0 tautological 0 007 & 00548781 a 0000 + 07091385 n 0401 + 07091214 n 0401 + 07091214 n 0301 + 05120310 n 0201 + 01019248 n 0201 + 07091087 n 0101 | repetition of same sense in different words; "`a true fact' and `a free gift' are pleonastic expressions"; "the phrase `a beginner who has just started' is tautological"; "at the risk of being redundant I return to my original proposition"- J.B.Conant -00550282 00 a 01 conclusive 0 007 ^ 00684480 a 0000 = 04754440 n 0000 + 01021420 v 0101 + 00634472 v 0103 + 04754440 n 0102 ! 00550777 a 0101 & 00550574 a 0000 | forming an end or termination; especially putting an end to doubt or question; "conclusive proof"; "the evidence is conclusive" -00550574 00 s 02 definitive 0 determinate 0 002 & 00550282 a 0000 + 04754237 n 0201 | supplying or being a final or conclusive settlement; "a definitive verdict"; "a determinate answer to the problem" -00550777 00 a 01 inconclusive 0 009 ^ 00685483 a 0000 ^ 00740336 a 0000 = 04754440 n 0000 + 04758181 n 0101 ! 00550282 a 0101 & 00551120 a 0000 & 00551267 a 0000 & 00551416 a 0000 & 00551695 a 0000 | not conclusive; not putting an end to doubt or question; "an inconclusive reply"; "inconclusive evidence"; "the inconclusive committee vote" -00551120 00 s 01 equivocal 0 001 & 00550777 a 0000 | uncertain as a sign or indication; "the evidence from bacteriologic analysis was equivocal" -00551267 00 s 01 indeterminate 0 002 & 00550777 a 0000 + 04757864 n 0102 | not leading to a definite ending or result; "an indeterminate campaign" -00551416 00 s 03 neck_and_neck 0 head-to-head 0 nip_and_tuck 0 001 & 00550777 a 0000 | inconclusive as to outcome; close or just even in a race or comparison or competition; "as they approached the finish line they were neck and neck"; "the election was a nip and tuck affair" -00551695 00 s 01 nisi 0 001 & 00550777 a 0000 | not final or absolute; "the decree is nisi and not absolute" -00551806 00 a 01 consummated 0 003 ! 00552168 a 0101 & 00551950 a 0000 & 00552089 a 0000 | brought to completion; "a consummated transaction" -00551950 00 s 01 completed 0 001 & 00551806 a 0000 | (of a marriage) completed by the first act of sexual intercourse after the ceremony -00552089 00 s 01 fulfilled 0 001 & 00551806 a 0000 | completed to perfection -00552168 00 a 01 unconsummated 0 001 ! 00551806 a 0101 | not consummated (especially of a marriage); "an unconsummated marriage can be annulled" -00552315 00 a 02 coordinating(a) 0 coordinative 0 002 ;c 06174404 n 0000 ! 00552618 a 0101 | serving to connect two grammatical constituents of identical construction; "`and' in `John and Mary' or in `John walked and Mary rode' is a coordinating conjunction; and so is `or' in `will you go or stay?'" -00552618 00 a 02 subordinating(a) 0 subordinative 0 002 ;c 06174404 n 0000 ! 00552315 a 0101 | serving to connect a subordinate clause to a main clause; "`when' in `I will come when I can' is a subordinating conjunction" -00552841 00 a 01 accordant 0 008 + 02700104 v 0104 + 07176804 n 0103 ! 00553899 a 0101 & 00553140 a 0000 & 00553279 a 0000 & 00553478 a 0000 & 00553594 a 0000 & 00553732 a 0000 | being in agreement or harmony; often followed by `with'; "a place perfectly accordant with man's nature"-Thomas Hardy -00553140 00 s 01 according 0 001 & 00552841 a 0000 | (followed by `to') in agreement with or accordant with; "according to instructions" -00553279 00 s 01 agreeable 0 006 & 00552841 a 0000 + 04640927 n 0101 + 04640927 n 0102 + 01035530 v 0101 + 00764222 v 0101 + 00805376 v 0101 | prepared to agree or consent; "agreeable to the plan" -00553478 00 s 02 concordant 0 concurring(a) 0 002 & 00552841 a 0000 + 07180183 n 0103 | being of the same opinion -00553594 00 s 01 consensual 0 003 & 00552841 a 0000 ;c 08441203 n 0000 + 13971901 n 0101 | existing by consent; "a consensual contract" -00553732 00 s 03 consentaneous 0 consentient 0 unanimous 0 003 & 00552841 a 0000 + 13972387 n 0301 + 06689667 n 0101 | in complete agreement; "a unanimous decision" -00553899 00 a 01 discordant 0 005 + 02718543 v 0103 + 01170175 n 0102 ! 00552841 a 0101 & 00554098 a 0000 & 00554302 a 0000 | not in agreement or harmony; "views discordant with present-day ideas" -00554098 00 s 03 at_variance(p) 0 discrepant 0 dissonant 0 003 & 00553899 a 0000 + 07366627 n 0201 + 04749709 n 0201 | not in accord; "desires at variance with his duty"; "widely discrepant statements" -00554302 00 s 03 dissentious 0 divisive 0 factious 0 003 & 00553899 a 0000 + 08251877 n 0301 + 07209305 n 0101 | dissenting (especially dissenting with the majority opinion) -00554478 00 a 01 contracted 0 002 ! 00554780 a 0101 & 00554624 a 0000 | reduced in size or pulled together; "the contracted pupils of her eyes" -00554624 00 s 01 contractile 0 002 & 00554478 a 0000 + 05201813 n 0101 | capable of contracting or being contracted; "the contractile wings of an insect" -00554780 00 a 01 expanded 1 001 ! 00554478 a 0101 | increased in extent or size or bulk or scope -00554879 00 a 03 atrophied 0 wasted 4 diminished 4 001 ! 00555117 a 0101 | (of an organ or body part) diminished in size or strength as a result of disease or injury or lack of use; "partial paralysis resulted in an atrophied left arm" -00555117 00 a 02 hypertrophied 0 enlarged 4 001 ! 00554879 a 0101 | (of an organ or body part) excessively enlarged as a result of increased size in the constituent cells; "hypertrophied myocardial fibers" -00555325 00 a 01 conditional 0 008 ^ 01913200 a 0000 + 13924069 n 0101 ! 00556709 a 0101 & 00555709 a 0000 & 00555859 a 0000 & 00556174 a 0000 & 00556318 a 0000 & 00556611 a 0000 | imposing or depending on or containing a condition; "conditional acceptance of the terms"; "lent conditional support"; "the conditional sale will not be complete until the full purchase price is paid" -00555709 00 s 02 counterfactual 0 contrary_to_fact 0 002 & 00555325 a 0000 + 04759712 n 0101 | going counter to the facts (usually as a hypothesis) -00555859 00 s 08 contingent 0 contingent_on(p) 0 contingent_upon(p) 0 dependent_on(p) 0 dependant_on(p) 0 dependent_upon(p) 0 dependant_upon(p) 0 depending_on(p) 0 002 & 00555325 a 0000 + 14001973 n 0101 | determined by conditions or circumstances that follow; "arms sales contingent on the approval of congress" -00556174 00 s 03 dependent 0 dependant 0 qualified 0 003 & 00555325 a 0000 + 02664234 v 0201 + 02664234 v 0101 | contingent on something else -00556318 00 s 04 probationary 0 provisional 0 provisionary 0 tentative 0 004 & 00555325 a 0000 + 06755947 n 0301 + 15297472 n 0101 + 15297303 n 0101 | under terms not final or fully worked out or agreed upon; "probationary employees"; "a provisional government"; "just a tentative schedule" -00556611 00 s 01 provisory 0 001 & 00555325 a 0000 | subject to a proviso; "a provisory clause" -00556709 00 a 02 unconditional 0 unconditioned 1 004 ^ 01913715 a 0000 ! 00555325 a 0101 & 00556881 a 0000 & 00557108 a 0000 | not conditional; "unconditional surrender" -00556881 00 s 03 blunt 0 crude(a) 0 stark(a) 0 002 & 00556709 a 0000 + 05124534 n 0301 | devoid of any qualifications or disguise or adornment; "the blunt truth"; "the crude facts"; "facing the stark reality of the deadline" -00557108 00 s 01 vested 0 001 & 00556709 a 0000 | fixed and absolute and without contingency; "a vested right" -00557221 00 a 01 enforceable 0 001 ! 00557304 a 0101 | capable of being enforced -00557304 00 a 01 unenforceable 0 001 ! 00557221 a 0101 | not enforceable; not capable of being brought about by compulsion; "an unenforceable law"; "unenforceable reforms" -00557478 00 a 02 enforced 0 implemented 2 001 ! 00557637 a 0101 | forced or compelled or put in force; "a life of enforced inactivity"; "enforced obedience" -00557637 00 a 01 unenforced 0 001 ! 00557478 a 0101 | not enforced; not compelled especially by legal or police action; "too many unenforced laws can breed contempt for law" -00557813 00 a 01 conductive 0 004 + 02079933 v 0102 + 11512818 n 0102 ! 00558232 a 0101 & 00558019 a 0000 | having the quality or power of conducting heat or electricity or sound; exhibiting conductivity -00558019 00 s 02 semiconducting 0 semiconductive 0 001 & 00557813 a 0000 | having characteristics of a semiconductor; that is having electrical conductivity greater than insulators but less than good conductors -00558232 00 a 03 nonconductive 0 nonconducting 0 non-conducting 0 001 ! 00557813 a 0101 | not able to conduct heat or electricity or sound -00558373 00 a 01 confined 0 010 ^ 02002227 a 0000 ^ 01064286 a 0000 ! 00559425 a 0101 & 00558612 a 0000 & 00558738 a 0000 & 00558827 a 0000 & 00558951 a 0000 & 00559031 a 0000 & 00559120 a 0000 & 00559271 a 0000 | not free to move about -00558612 00 s 01 claustrophobic 0 001 & 00558373 a 0000 | uncomfortably closed or hemmed in; "a claustrophobic little room" -00558738 00 s 02 close 0 confining 0 001 & 00558373 a 0000 | crowded; "close quarters" -00558827 00 s 03 homebound 0 housebound 0 shut-in 0 002 & 00558373 a 0000 + 07948183 n 0101 | confined usually by illness -00558951 00 s 02 pent 0 shut_up(p) 0 001 & 00558373 a 0000 | closely confined -00559031 00 s 01 snowbound 0 001 & 00558373 a 0000 | confined or shut in by heavy snow -00559120 00 s 01 stormbound 0 001 & 00558373 a 0000 | delayed or confined or cut off by a storm; "the airport was filled with stormbound passengers" -00559271 00 s 01 weather-bound 0 001 & 00558373 a 0000 | delayed or shut in by bad weather; "weather-bound traffic"; "irritable weather-bound children" -00559425 00 a 01 unconfined 0 003 ^ 01061489 a 0000 ! 00558373 a 0101 & 00559530 a 0000 | not confined -00559530 00 s 01 free-range 0 001 & 00559425 a 0000 | of livestock and domestic poultry; permitted to graze or forage rather than being confined to a feedlot -00559690 00 a 01 crowded 0 004 ! 00560453 a 0101 & 00559930 a 0000 & 00560100 a 0000 & 00560284 a 0000 | overfilled or compacted or concentrated; "a crowded theater"; "a crowded program"; "crowded trains"; "a young mother's crowded days" -00559930 00 s 01 huddled 0 001 & 00559690 a 0000 | crowded or massed together; "give me...your huddled masses"; "the huddled sheep turned their backs against the wind" -00560100 00 s 03 jammed 0 jam-packed 0 packed 0 001 & 00559690 a 0000 | filled to capacity; "a suitcase jammed with dirty clothes"; "stands jam-packed with fans"; "a packed theater" -00560284 00 s 01 thronged 0 001 & 00559690 a 0000 | filled with great numbers crowded together; "I try to avoid the thronged streets and stores just before Christmas" -00560453 00 a 01 uncrowded 0 001 ! 00559690 a 0101 | having or allowing sufficient room; "an uncrowded train"; "an uncrowded view" -00560586 00 a 01 congenial 0 007 ^ 00507464 a 0000 ^ 01074650 a 0000 ^ 02374914 a 0000 + 04712978 n 0101 + 04712978 n 0102 ! 00561036 a 0101 & 00560900 a 0000 | suitable to your needs; "a congenial atmosphere to work in"; "two congenial spirits united...by mutual confidence and reciprocal virtues"- T.L.Peacock -00560900 00 s 01 sociable 0 003 & 00560586 a 0000 + 04652930 n 0102 + 04652930 n 0101 | friendly and pleasant; "a sociable gathering" -00561036 00 a 02 uncongenial 0 incompatible 4 007 ^ 00508192 a 0000 ^ 01076793 a 0000 ^ 02375828 a 0000 + 04714440 n 0201 + 04658686 n 0101 ! 00560586 a 0101 & 00561359 a 0000 | not suitable to your tastes or needs; "the uncongenial roommates were always fighting"; "the task was uncongenial to one sensitive to rebuffs" -00561359 00 s 02 disagreeable 0 unsympathetic 0 002 & 00561036 a 0000 + 04779895 n 0101 | not agreeing with your tastes or expectations; "found the task disagreeable and decided to abandon it"; "a job temperamentally unsympathetic to him" -00561600 00 a 01 congruent 0 005 ;c 06004685 n 0000 + 04714156 n 0103 ! 00562026 a 0101 & 00561757 a 0000 & 00561896 a 0000 | coinciding when superimposed -00561757 00 s 01 coincident 0 003 & 00561600 a 0000 + 05077661 n 0101 + 02658734 v 0101 | matching point for point; "coincident circles" -00561896 00 s 02 identical 0 superposable 0 001 & 00561600 a 0000 | coinciding exactly when superimposed; "identical triangles" -00562026 00 a 01 incongruent 0 002 ;c 06004685 n 0000 ! 00561600 a 0101 | not congruent -00562116 00 a 02 congruous 0 congruent 4 006 ^ 00134701 a 0000 + 04714156 n 0203 + 04714156 n 0102 + 04714156 n 0101 ! 00562469 a 0101 & 00562308 a 0000 | corresponding in character or kind -00562308 00 s 01 harmonious 0 002 & 00562116 a 0000 + 04713118 n 0102 | suitable and fitting; "the tailored clothes were harmonious with her military bearing" -00562469 00 a 01 incongruous 0 007 + 04714847 n 0102 + 04714847 n 0101 ! 00562116 a 0101 & 00562803 a 0000 & 00562909 a 0000 & 00563116 a 0000 & 00563288 a 0000 | lacking in harmony or compatibility or appropriateness; "a plan incongruous with reason"; "incongruous behavior"; "a joke that was incongruous with polite conversation" -00562803 00 s 02 discrepant 0 inconsistent 0 002 & 00562469 a 0000 + 04749709 n 0101 | not in agreement -00562909 00 s 04 inappropriate 0 incompatible 0 out_or_keeping(p) 0 unfitting 0 002 & 00562469 a 0000 + 04901996 n 0101 | not in keeping with what is correct or proper; "completely inappropriate behavior" -00563116 00 s 01 inharmonious 0 002 & 00562469 a 0000 + 04984809 n 0102 | lacking in harmony of parts; "an inharmonious (or incongruous) mixture of architectural styles" -00563288 00 s 02 ironic 0 ironical 0 005 & 00562469 a 0000 + 07106246 n 0201 + 04715075 n 0201 + 07106246 n 0101 + 04715075 n 0101 | characterized by often poignant difference or incongruity between what is expected and what actually is; "madness, an ironic fate for such a clear thinker"; "it was ironical that the well-planned scheme failed so completely" -00563648 00 a 01 conjunctive 0 004 + 01291069 v 0102 ! 00564262 a 0101 & 00563789 a 0000 & 00563980 a 0000 | serving or tending to connect -00563789 00 s 01 copulative 0 003 & 00563648 a 0000 ;c 06174404 n 0000 + 06472824 n 0102 | syntactically connecting sentences or elements of a sentence; "`and' is a copulative conjunction" -00563980 00 s 01 connective 0 006 & 00563648 a 0000 + 02622234 v 0101 + 02389592 v 0101 + 01354673 v 0101 + 00713167 v 0107 + 04918053 n 0101 | connecting or tending to connect; "connective remarks between chapters"; "connective tissue in animals"; "conjunctive tissue in plants" -00564262 00 a 01 disjunctive 0 009 + 01294396 v 0101 + 01294182 v 0101 ! 00563648 a 0101 & 00564504 a 0000 & 00564667 a 0000 & 00564858 a 0000 & 00565115 a 0000 & 00565289 a 0000 & 00565565 a 0000 | serving or tending to divide or separate -00564504 00 s 02 adversative 0 oppositive 0 001 & 00564262 a 0000 | expressing antithesis or opposition; "the adversative conjunction `but' in `poor but happy'" -00564667 00 s 01 alternative 0 002 & 00564262 a 0000 + 05790944 n 0102 | necessitating a choice between mutually exclusive possibilities; "alternative possibilities were neutrality or war" -00564858 00 s 01 contrastive 0 002 & 00564262 a 0000 ;c 06174404 n 0000 | syntactically establishing a relation of contrast between sentences or elements of a sentence; "disjunctive conjunctions like `but', `or', or `though' serve a contrastive function" -00565115 00 s 01 divisional 0 003 & 00564262 a 0000 + 00397953 n 0101 + 00385791 n 0101 | serving to divide or marking a division; "the divisional line between two states" -00565289 00 s 02 partitive 0 separative 1 005 & 00564262 a 0000 + 02512305 v 0202 + 02031158 v 0201 + 01556921 v 0104 + 01557774 v 0103 | serving to separate or divide into parts; "partitive tendencies in education"; "the uniting influence was stronger than the separative" -00565565 00 s 01 separative 2 001 & 00564262 a 0000 | (used of an accent in Hebrew orthography) indicating that the word marked is separated to a greater or lesser degree rhythmically and grammatically from the word that follows it -00565799 00 a 01 conjunct 0 002 ;c 07020895 n 0000 ! 00565962 a 0101 | progressing melodically by intervals of a second; "conjunct motion of an ascending scale" -00565962 00 a 01 disjunct 0 002 ;c 07020895 n 0000 ! 00565799 a 0101 | progressing melodically by intervals larger than a major second -00566099 00 a 01 connected 0 010 = 13791389 n 0000 + 14419164 n 0103 ! 00567593 a 0101 & 00566342 a 0000 & 00566733 a 0000 & 00566835 a 0000 & 00566961 a 0000 & 00567161 a 0000 & 00567287 a 0000 & 00567414 a 0000 | joined or linked together -00566342 00 s 04 adjacent 0 conterminous 1 contiguous 1 neighboring(a) 0 004 & 00566099 a 0000 + 05085991 n 0303 + 05085991 n 0302 + 05085991 n 0101 | having a common boundary or edge; abutting; touching; "Rhode Island has two bordering states; Massachusetts and Conncecticut"; "the side of Germany conterminous with France"; "Utah and the contiguous state of Idaho"; "neighboring cities" -00566733 00 s 01 adjunctive 0 002 & 00566099 a 0000 + 01205696 v 0102 | joining; forming an adjunct -00566835 00 s 01 affined 0 001 & 00566099 a 0000 | closely related; "syllable to blessed syllable affined"- Wallace Stevens -00566961 00 s 02 conterminous 0 contiguous 0 002 & 00566099 a 0000 + 05085991 n 0202 | connecting without a break; within a common boundary; "the 48 conterminous states"; "the contiguous 48 states" -00567161 00 s 03 coupled 0 joined 0 linked 0 001 & 00566099 a 0000 | connected by a link, as railway cars or trailer trucks -00567287 00 s 01 engaged 0 002 & 00566099 a 0000 ;c 06123363 n 0000 | built against or attached to a wall; "engaged columns" -00567414 00 s 01 well-connected 0 001 & 00566099 a 0000 | connected by blood or close acquaintance with people of wealth or social position; "a well-connected Edinburgh family" -00567593 00 a 01 unconnected 0 011 ^ 01974740 a 0000 = 13791389 n 0000 + 13794226 n 0101 ! 00566099 a 0101 & 00567860 a 0000 & 00568171 a 0000 & 00568304 a 0000 & 00568541 a 0000 & 00568658 a 0000 & 00568881 a 0000 & 00568959 a 0000 | not joined or linked together -00567860 00 s 03 apart(p) 0 isolated 0 obscure 0 001 & 00567593 a 0000 | remote and separate physically or socially; "existed over the centuries as a world apart"; "preserved because they inhabited a place apart"- W.H.Hudson; "tiny isolated villages remote from centers of civilization"; "an obscure village" -00568171 00 s 01 asternal 0 002 & 00567593 a 0000 ;c 06057539 n 0000 | not connected to the sternum or breastbone; "asternal ribs" -00568304 00 s 02 detached 0 separated 0 001 & 00567593 a 0000 | no longer connected or joined; "a detached part"; "on one side of the island was a hugh rock, almost detached"; "the separated spacecraft will return to their home bases" -00568541 00 s 02 disjoined 0 separate 2 001 & 00567593 a 0000 | have the connection undone; having become separate -00568658 00 s 01 exploded 0 001 & 00567593 a 0000 | showing the parts of something separated but in positions that show their correct relation to one another; "the manufacturer provided an exploded view of the apparatus" -00568881 00 s 01 unattached 0 001 & 00567593 a 0000 | not fastened together -00568959 00 s 01 uncoupled 0 001 & 00567593 a 0000 | having the coupling undone; "the uncoupled caboose rolled down the incline" -00569090 00 a 01 conquerable 0 005 ^ 02356820 a 0000 ^ 02523275 a 0000 ! 00569568 a 0101 & 00569304 a 0000 & 00569468 a 0000 | subject to being conquered or overcome; "knew her fears were ultimately conquerable" -00569304 00 s 03 beatable 0 vanquishable 0 vincible 0 004 & 00569090 a 0000 + 01101913 v 0206 + 01104852 v 0105 + 01101913 v 0101 | susceptible to being defeated -00569468 00 s 02 subduable 0 subjugable 0 001 & 00569090 a 0000 | susceptible to being subjugated -00569568 00 a 01 unconquerable 0 008 ^ 02357115 a 0000 ^ 02525206 a 0000 ! 00569090 a 0101 & 00569918 a 0000 & 00570099 a 0000 & 00570225 a 0000 & 00570322 a 0000 & 00570512 a 0000 | not capable of being conquered or vanquished or overcome; "a tribute to his courage...and his unconquerable will"- R.E.Danielson; "faced unconquerable difficulties" -00569918 00 s 02 impregnable 0 inexpugnable 0 001 & 00569568 a 0000 | incapable of being overcome, challenged or refuted; "an impregnable argument"; "impregnable self-confidence" -00570099 00 s 03 indomitable 0 never-say-die 0 unsubduable 0 002 & 00569568 a 0000 + 05032028 n 0101 | impossible to subdue -00570225 00 s 02 insuperable 0 insurmountable 2 001 & 00569568 a 0000 | impossible to surmount -00570322 00 s 03 invincible 0 unbeatable 0 unvanquishable 0 002 & 00569568 a 0000 + 05032028 n 0102 | incapable of being overcome or subdued; "an invincible army"; "her invincible spirit" -00570512 00 s 01 all-victorious 0 001 & 00569568 a 0000 | never having lost -00570590 00 a 01 conscious 0 009 ^ 00186616 a 0000 ^ 00190115 a 0000 ^ 02102484 a 0000 ^ 02520219 a 0000 + 05675130 n 0101 ! 00571643 a 0101 & 00570991 a 0000 & 00571291 a 0000 & 00571424 a 0000 | knowing and perceiving; having awareness of surroundings and sensations and thoughts; "remained conscious during the operation"; "conscious of his faults"; "became conscious that he was being followed" -00570991 00 s 02 self-conscious 0 self-aware 0 003 & 00570590 a 0000 + 05676605 n 0201 + 05676911 n 0101 | aware of yourself as an individual or of your own being and actions and thoughts; "self-conscious awareness"; "self-conscious about their roles as guardians of the social values"- D.M.Potter -00571291 00 s 01 semiconscious 0 002 & 00570590 a 0000 + 05679906 n 0104 | partially conscious; not completely aware of sensations -00571424 00 s 01 sentient 0 004 & 00570590 a 0000 + 05651971 n 0104 + 05651971 n 0103 + 05006020 n 0101 | consciously perceiving; "sentient of the intolerable load"; "a boy so sentient of his surroundings"- W.A.White -00571643 00 a 01 unconscious 0 014 ^ 00187736 a 0000 ^ 02102796 a 0000 ^ 02521353 a 0000 ^ 00191603 a 0000 + 05678932 n 0101 ! 00570590 a 0101 & 00572060 a 0000 & 00572202 a 0000 & 00572392 a 0000 & 00572534 a 0000 & 00572714 a 0000 & 00572845 a 0000 & 00573008 a 0000 & 00573093 a 0000 | not conscious; lacking awareness and the capacity for sensory perception as if asleep or dead; "lay unconscious on the floor" -00572060 00 s 01 cold 0 001 & 00571643 a 0000 | unconscious from a blow or shock or intoxication; "the boxer was out cold"; "pass out cold" -00572202 00 s 01 comatose 0 002 & 00571643 a 0000 + 05680193 n 0102 | in a state of deep and usually prolonged unconsciousness; unable to respond to external stimuli; "a comatose patient" -00572392 00 s 01 innocent 0 002 & 00571643 a 0000 ;u 07073447 n 0000 | (used of things) lacking sense or awareness; "fine innocent weather" -00572534 00 s 02 insensible 0 senseless 0 002 & 00571643 a 0000 + 05680982 n 0101 | unresponsive to stimulation; "he lay insensible where he had fallen"; "drugged and senseless" -00572714 00 s 05 knocked_out(p) 0 kayoed 0 KO'd 0 out(p) 0 stunned 0 001 & 00571643 a 0000 | knocked unconscious by a heavy blow -00572845 00 s 01 nonconscious 0 001 & 00571643 a 0000 | concerning mental functioning that is not represented in consciousness; "nonconscious psychic processes" -00573008 00 s 01 semicomatose 0 001 & 00571643 a 0000 | in a state of partial coma -00573093 00 s 01 subconscious 0 003 & 00571643 a 0000 + 05613478 n 0102 + 05682431 n 0101 | just below the level of consciousness -00573225 00 a 03 consecrated 0 consecrate 0 dedicated 2 005 ^ 02053818 a 0000 ^ 02055062 a 0000 ! 00573770 a 0101 & 00573542 a 0000 & 00573666 a 0000 | solemnly dedicated to or set apart for a high purpose; "a life consecrated to science"; "the consecrated chapel"; "a chapel dedicated to the dead of World War II" -00573542 00 s 01 ordained 0 001 & 00573225 a 0000 | invested with ministerial or priestly functions; "an ordained priest" -00573666 00 s 01 votive 0 001 & 00573225 a 0000 | dedicated in fulfillment of a vow; "votive prayers" -00573770 00 a 01 desecrated 0 003 ! 00573225 a 0101 & 00573926 a 0000 & 00574010 a 0000 | treated with contempt; "many desecrated shrines and cemeteries" -00573926 00 s 01 deconsecrated 0 001 & 00573770 a 0000 | divested of consecration -00574010 00 s 02 profaned 0 violated 0 001 & 00573770 a 0000 | treated irreverently or sacrilegiously -00574114 00 a 02 priestly 0 priestlike 0 002 + 10470779 n 0101 ! 00574308 a 0101 | befitting or characteristic of a priest or the priesthood; "priestly dedication to the people of his parish" -00574308 00 a 01 unpriestly 0 001 ! 00574114 a 0101 | not priestly; unbefitting a priest; "unpriestly behavior" -00574422 00 a 01 conservative 0 009 ^ 01689880 a 0000 ^ 02030080 a 0000 = 06212839 n 0000 ! 00575230 a 0101 & 00574644 a 0000 & 00574744 a 0000 & 00574884 a 0000 & 00575012 a 0000 & 00575126 a 0000 | resistant to change -00574644 00 s 01 blimpish 0 001 & 00574422 a 0000 | pompously ultraconservative and nationalistic -00574744 00 s 01 buttoned-up 0 001 & 00574422 a 0000 | conservative in professional manner; "employers are looking for buttoned-up types" -00574884 00 s 04 fusty 0 standpat(a) 0 unprogressive 0 nonprogressive 0 001 & 00574422 a 0000 | old-fashioned and out of date -00575012 00 s 02 hidebound 0 traditionalist 0 001 & 00574422 a 0000 | stubbornly conservative and narrow-minded -00575126 00 s 01 ultraconservative 0 002 & 00574422 a 0000 + 10508475 n 0102 | extremely conservative -00575230 00 a 01 liberal 0 010 ^ 02030935 a 0000 = 06212839 n 0000 + 06204820 n 0102 ! 00574422 a 0101 & 00575520 a 0000 & 00575685 a 0000 & 00576011 a 0000 & 00576189 a 0000 & 00576423 a 0000 & 00576573 a 0000 | tolerant of change; not bound by authoritarianism, orthodoxy, or tradition -00575520 00 s 01 civil-libertarian 0 002 & 00575230 a 0000 + 05183242 n 0101 | having or showing active concern for protection of civil liberties protected by law -00575685 00 s 01 liberalistic 0 003 & 00575230 a 0000 + 05995576 n 0101 + 06218623 n 0101 | having or demonstrating belief in the essential goodness of man and the autonomy of the individual; favoring civil and political liberties, government by law with the consent of the governed, and protection from arbitrary authority -00576011 00 s 01 neoliberal 0 002 & 00575230 a 0000 + 10352782 n 0101 | having or showing belief in the need for economic growth in addition to traditional liberalistic values -00576189 00 s 03 progressive 0 reformist 0 reform-minded 0 006 & 00575230 a 0000 ;c 01124794 n 0000 + 10515194 n 0202 + 10256756 n 0103 + 04737743 n 0101 + 04737743 n 0102 | favoring or promoting reform (often by government action) -00576423 00 s 02 socialized 0 socialised 0 001 & 00575230 a 0000 | under group or government control; "socialized ownership"; "socialized medicine" -00576573 00 s 02 welfarist 0 welfare-statist 0 001 & 00575230 a 0000 | of or relating to a welfare state -00576680 00 a 01 consistent 0 008 ^ 02505716 a 0000 + 14420780 n 0101 ! 00577920 a 0101 & 00577122 a 0000 & 00577405 a 0000 & 00577612 a 0000 & 00577698 a 0000 & 00577782 a 0000 | (sometimes followed by `with') in agreement or consistent or reliable; "testimony consistent with the known facts"; "I have decided that the course of conduct which I am following is consistent with my sense of responsibility as president in time of war"- FDR -00577122 00 s 05 accordant 0 agreeable 0 conformable 0 consonant 0 concordant 0 003 & 00576680 a 0000 + 02700104 v 0207 + 02657219 v 0208 | in keeping; "salaries agreeable with current trends"; "plans conformable with your wishes"; "expressed views concordant with his background" -00577405 00 s 01 pursuant(p) 0 002 & 00576680 a 0000 + 02376429 v 0101 | (followed by `to') in conformance to or agreement with; "pursuant to our agreement"; "pursuant to the dictates of one's conscience" -00577612 00 s 01 reconciled 0 001 & 00576680 a 0000 | made compatible or consistent -00577698 00 s 01 self-consistent 0 001 & 00576680 a 0000 | not self-contradictory -00577782 00 s 01 unchanging 0 002 & 00576680 a 0000 + 04737934 n 0104 | conforming to the same principles or course of action over time -00577920 00 a 01 inconsistent 0 008 ^ 02504131 a 0000 + 04751847 n 0101 ! 00576680 a 0101 & 00578234 a 0000 & 00578523 a 0000 & 00578662 a 0000 & 00578831 a 0000 & 00578960 a 0000 | displaying a lack of consistency; "inconsistent statements cannot both be true at the same time"; "inconsistent with the roadmap" -00578234 00 s 04 at_odds(p) 0 conflicting 0 contradictory 0 self-contradictory 0 003 & 00577920 a 0000 + 13857486 n 0301 + 02663141 v 0301 | in disagreement; "the figures are at odds with our findings"; "contradictory attributes of unjust justice and loving vindictiveness"- John Morley -00578523 00 s 02 discrepant 0 incompatible 0 003 & 00577920 a 0000 + 13858045 n 0201 + 04749709 n 0101 | not compatible with other facts -00578662 00 s 03 spotty 0 uneven 0 scratchy 0 002 & 00577920 a 0000 + 04771890 n 0201 | lacking consistency; "the golfer hit the ball well but his putting was spotty" -00578831 00 s 01 unconformable 0 001 & 00577920 a 0000 | not correspondent; "a description unconformable to previous accounts" -00578960 00 s 01 unreconciled 0 001 & 00577920 a 0000 | not made consistent or compatible; "two unreconciled accountings" -00579084 00 a 01 conspicuous 0 012 ^ 00773109 a 0000 = 04706087 n 0000 + 04706087 n 0101 ! 00581401 a 0101 & 00579498 a 0000 & 00579622 a 0000 & 00579881 a 0000 & 00580039 a 0000 & 00580346 a 0000 & 00580497 a 0000 & 00580684 a 0000 & 00580805 a 0000 | obvious to the eye or mind; "a tower conspicuous at a great distance"; "wore conspicuous neckties"; "made herself conspicuous by her exhibitionistic preening" -00579498 00 s 02 attention-getting 0 eye-catching 0 001 & 00579084 a 0000 | seizing the attention; "eye-catching posters" -00579622 00 s 03 big 0 large 0 prominent 2 003 & 00579084 a 0000 + 14433587 n 0301 + 05169507 n 0301 | conspicuous in position or importance; "a big figure in the movement"; "big man on campus"; "he's very large in financial circles"; "a prominent citizen" -00579881 00 s 01 bold 0 002 & 00579084 a 0000 + 04707252 n 0101 | clear and distinct; "bold handwriting"; "a figure carved in bold relief"; "a bold design" -00580039 00 s 06 crying(a) 0 egregious 0 flagrant 0 glaring 0 gross 0 rank 0 001 & 00579084 a 0000 | conspicuously and outrageously bad or reprehensible; "a crying shame"; "an egregious lie"; "flagrant violation of human rights"; "a glaring error"; "gross ineptitude"; "gross injustice"; "rank treachery" -00580346 00 s 01 featured 0 001 & 00579084 a 0000 | made a feature or highlight; given prominence; "a featured actor"; "a featured item at the sale" -00580497 00 s 01 in_evidence 0 001 & 00579084 a 0000 | clearly to be seen; "they were much in evidence during the fighting"; "she made certain that her engagement ring was in evidence" -00580684 00 s 01 marked 0 001 & 00579084 a 0000 | singled out for notice or especially for a dire fate; "a marked man" -00580805 00 s 05 outstanding 0 prominent 0 salient 0 spectacular 0 striking 0 005 & 00579084 a 0000 + 14434022 n 0503 + 06889138 n 0401 + 14434022 n 0302 + 14434022 n 0301 | having a quality that thrusts itself into attention; "an outstanding fact of our time is that nations poisoned by anti semitism proved less fortunate in regard to their own freedom"; "a new theory is the most prominent feature of the book"; "salient traits"; "a spectacular rise in prices"; "a striking thing about Picadilly Circus is the statue of Eros in the center"; "a striking resemblance between parent and child" -00581401 00 a 02 inconspicuous 0 invisible 4 004 = 04706087 n 0000 + 04707636 n 0101 ! 00579084 a 0101 & 00581637 a 0000 | not prominent or readily noticeable; "he pushed the string through an inconspicuous hole"; "the invisible man" -00581637 00 s 02 obscure 0 unnoticeable 0 002 & 00581401 a 0000 + 04707808 n 0201 | not drawing attention; "an unnoticeable cigarette burn on the carpet"; "an obscure flaw" -00581812 00 a 02 discernible 0 discernable 0 003 + 04703104 n 0201 + 02193194 v 0105 ! 00582164 a 0101 | perceptible by the senses or intellect; "things happen in the earth and sky with no discernible cause"; "the newspaper reports no discernible progress in the negotiations"; "the skyline is easily discernible even at a distance of several miles" -00582164 00 a 01 indiscernible 0 001 ! 00581812 a 0101 | difficult or impossible to perceive or discern; "an indiscernible increase in temperature" -00582314 00 a 01 distinguishable 0 003 ! 00582876 a 0101 & 00582636 a 0000 & 00582762 a 0000 | capable of being perceived as different or distinct; "only the shine of their metal was distinguishable in the gloom"; "a project distinguishable into four stages of progress"; "distinguishable differences between the twins" -00582636 00 s 01 differentiable 0 001 & 00582314 a 0000 | capable of being perceived as different; "differentiable species" -00582762 00 s 01 discriminable 0 001 & 00582314 a 0000 | capable of being discriminated; "discriminable faults" -00582876 00 a 02 indistinguishable 0 undistinguishable 0 001 ! 00582314 a 0101 | not capable of being distinguished or differentiated; "the two specimens are actually different from each other but the differences are almost indistinguishable"; "the twins were indistinguishable"; "a colorless person quite indistinguishable from the colorless mass of humanity" -00583239 00 a 01 constant 0 009 ^ 00958880 a 0000 ^ 02505716 a 0000 ^ 02290998 a 0000 ^ 00346991 a 0000 = 04738641 n 0000 + 04877264 n 0101 ! 00583990 a 0101 & 00583581 a 0000 & 00583842 a 0000 | steadfast in purpose or devotion or affection; "a man constant in adherence to his ideals"; "a constant lover"; "constant as the northern star" -00583581 00 s 03 steadfast 0 staunch 0 unswerving 0 003 & 00583239 a 0000 + 04877783 n 0202 + 04877783 n 0101 | firm and dependable especially in loyalty; "a steadfast ally"; "a staunch defender of free speech"; "unswerving devotion"; "unswerving allegiance" -00583842 00 s 02 unfailing 0 unflagging 0 001 & 00583239 a 0000 | unceasing; "unfailing loyalty"; "unfailing good spirits"; "unflagging courtesy" -00583990 00 a 01 inconstant 0 011 ^ 00344125 a 0000 ^ 00959731 a 0000 ^ 02291843 a 0000 ^ 02504131 a 0000 ^ 02519555 a 0000 = 04738641 n 0000 + 04879092 n 0104 + 04734885 n 0101 ! 00583239 a 0101 & 00584403 a 0000 & 00584626 a 0000 | likely to change frequently often without apparent or cogent reason; variable; "inconstant affections"; "an inconstant lover"; "swear not by...the inconstant moon"- Shakespeare -00584403 00 s 02 false 0 untrue 0 003 & 00583990 a 0000 + 04867871 n 0102 + 13960464 n 0101 | (used especially of persons) not dependable in devotion or affection; unfaithful; "a false friend"; "when lovers prove untrue" -00584626 00 s 02 fickle 0 volatile 0 002 & 00583990 a 0000 + 04879092 n 0103 | marked by erratic changeableness in affections or attachments; "fickle friends"; "a flirt's volatile affections" -00584820 00 a 01 constructive 0 009 ^ 01817500 a 0000 + 05165745 n 0101 ! 00586183 a 0101 & 00585202 a 0000 & 00585398 a 0000 & 00585597 a 0000 & 00585751 a 0000 & 00585856 a 0000 & 00586060 a 0000 | constructing or tending to construct or improve or promote development; "constructive criticism"; "a constructive attitude"; "a constructive philosophy"; "constructive permission" -00585202 00 s 01 creative 0 006 & 00584820 a 0000 + 01640207 v 0101 + 01753788 v 0101 + 01685313 v 0101 + 05624700 n 0102 + 05624700 n 0101 | promoting construction or creation; "creative work" -00585398 00 s 03 formative 1 shaping 0 plastic 0 002 & 00584820 a 0000 + 02430922 v 0102 | forming or capable of forming or molding or fashioning; "a formative influence"; "a formative experience" -00585597 00 s 01 formative 2 002 & 00584820 a 0000 ;c 06037666 n 0000 | capable of forming new cells and tissues; "a formative zone in developing bone" -00585751 00 s 01 inferential 0 001 & 00584820 a 0000 | based on interpretation; not directly expressed -00585856 00 s 02 reconstructive 0 rehabilitative 0 003 & 00584820 a 0000 + 02552829 v 0201 + 02552449 v 0102 | helping to restore to good condition; "reconstructive surgery"; "rehabilitative exercises" -00586060 00 s 01 structural 0 001 & 00584820 a 0000 | concerned with systematic structure in a particular field of study -00586183 00 a 01 destructive 0 016 ^ 01160031 a 0000 ^ 01818234 a 0000 + 01619929 v 0101 + 05165904 n 0101 ! 00584820 a 0101 & 00586617 a 0000 & 00586883 a 0000 & 00587193 a 0000 & 00587376 a 0000 & 00587697 a 0000 & 00587890 a 0000 & 00588062 a 0000 & 00588207 a 0000 & 00588425 a 0000 & 00588535 a 0000 & 00588655 a 0000 | causing destruction or much damage; "a policy that is destructive to the economy"; "destructive criticism" -00586617 00 s 04 annihilative 0 annihilating 0 devastating 1 withering 0 002 & 00586183 a 0000 + 00470701 v 0102 | wreaking or capable of wreaking complete destruction; "possessing annihilative power"; "a devastating hurricane"; "the guns opened a withering fire" -00586883 00 s 02 blasting 0 ruinous 0 001 & 00586183 a 0000 | causing injury or blight; especially affecting with sudden violence or plague or ruin; "the blasting effects of the intense cold on the budding fruit"; "the blasting force of the wind blowing sharp needles of sleet in our faces"; "a ruinous war" -00587193 00 s 02 cataclysmal 0 cataclysmic 0 003 & 00586183 a 0000 + 07314838 n 0205 + 07314838 n 0105 | severely destructive; "cataclysmic nuclear war"; "a cataclysmic earthquake" -00587376 00 s 05 caustic 0 corrosive 0 erosive 1 vitriolic 0 mordant 0 008 & 00586183 a 0000 + 14955030 n 0501 + 15093482 n 0401 + 00275253 v 0301 + 14823788 n 0201 + 00274283 v 0201 + 00273963 v 0201 + 15014529 n 0101 | of a substance, especially a strong acid; capable of destroying or eating away by chemical action -00587697 00 s 02 crushing 0 devastating 0 001 & 00586183 a 0000 | physically or spiritually devastating; often used in combination; "a crushing blow"; "a crushing rejection"; "bone-crushing" -00587890 00 s 02 damaging 0 negative 0 001 & 00586183 a 0000 | designed or tending to discredit, especially without positive or helpful suggestions; "negative criticism" -00588062 00 s 01 erosive 2 002 & 00586183 a 0000 + 00274724 v 0101 | wearing away by friction; "the erosive effects of waves on the shoreline" -00588207 00 s 01 iconoclastic 0 002 & 00586183 a 0000 + 05980750 n 0101 | destructive of images used in religious worship; said of religions, such as Islam, in which the representation of living things is prohibited -00588425 00 s 01 ravaging 0 001 & 00586183 a 0000 | ruinously destructive and wasting; "a ravaging illness" -00588535 00 s 01 soul-destroying 0 001 & 00586183 a 0000 | destructive to the spirit or soul; "soul-destroying labor" -00588655 00 s 01 wasteful 0 002 & 00586183 a 0000 + 00742645 n 0102 | laying waste; "when wasteful war shall statues overturn"- Shakespeare -00588797 00 a 02 contented 0 content 0 008 ^ 01148283 a 0000 ^ 01805157 a 0000 + 14412882 n 0202 + 14412882 n 0101 ! 00589624 a 0101 & 00589067 a 0000 & 00589344 a 0000 & 00589448 a 0000 | satisfied or showing satisfaction with things as they are; "a contented smile" -00589067 00 s 03 complacent 0 self-satisfied 0 self-complacent 0 004 & 00588797 a 0000 + 07531713 n 0303 + 07531713 n 0101 + 07531713 n 0102 | contented to a fault with oneself or one's actions; "he had become complacent after years of success"; "his self-satisfied dignity" -00589344 00 s 01 satisfied 0 001 & 00588797 a 0000 | filled with satisfaction; "a satisfied customer" -00589448 00 s 02 smug 0 self-satisfied 2 002 & 00588797 a 0000 + 07531998 n 0101 | marked by excessive complacency or self-satisfaction; "a smug glow of self-congratulation" -00589624 00 a 02 discontented 0 discontent 0 008 ^ 01805889 a 0000 ^ 01149494 a 0000 + 07538965 n 0202 + 07538965 n 0103 ! 00588797 a 0101 & 00589960 a 0000 & 00590163 a 0000 & 00590271 a 0000 | showing or experiencing dissatisfaction or restless longing; "saw many discontent faces in the room"; "was discontented with his position" -00589960 00 s 04 disaffected 0 ill-affected 0 malcontent 0 rebellious 0 005 & 00589624 a 0000 + 01177327 n 0401 + 00962129 n 0401 + 04907991 n 0402 + 10284965 n 0301 | discontented as toward authority -00590163 00 s 02 disgruntled 0 dissatisfied 0 001 & 00589624 a 0000 | in a state of sulky dissatisfaction -00590271 00 s 03 restless 0 ungratified 0 unsatisfied 0 002 & 00589624 a 0000 + 04625284 n 0101 | worried and uneasy -00590390 00 a 01 contestable 0 006 ^ 01916229 a 0000 + 00869596 v 0101 ! 00590923 a 0101 & 00590564 a 0000 & 00590669 a 0000 & 00590782 a 0000 | capable of being contested -00590564 00 s 01 challengeable 0 002 & 00590390 a 0000 + 00869126 v 0101 | capable of being challenged -00590669 00 s 02 debatable 0 disputable 0 002 & 00590390 a 0000 + 00812580 v 0101 | capable of being disproved -00590782 00 s 02 shakable 0 shakeable 0 001 & 00590390 a 0000 | capable of being weakened; "the crisis proved his confidence was shakable" -00590923 00 a 02 incontestable 0 incontestible 0 007 ^ 01918184 a 0000 ! 00590390 a 0101 & 00591147 a 0000 & 00591298 a 0000 & 00591406 a 0000 & 00591513 a 0000 & 00591710 a 0000 | incapable of being contested or disputed -00591147 00 s 02 demonstrable 0 incontrovertible 0 002 & 00590923 a 0000 + 04755218 n 0202 | necessarily or demonstrably true; "demonstrable truths" -00591298 00 s 01 demonstrated 0 001 & 00590923 a 0000 | having been demonstrated or verified beyond doubt -00591406 00 s 02 inarguable 0 unarguable 0 001 & 00590923 a 0000 | against which no argument can be made -00591513 00 s 04 unassailable 0 unshakable 0 watertight 0 bulletproof 0 001 & 00590923 a 0000 | without flaws or loopholes; "an ironclad contract"; "a watertight alibi"; "a bulletproof argument" -00591710 00 s 01 unanswerable 0 001 & 00590923 a 0000 | impossible to answer; "an unanswerable argument" -00591817 00 a 01 continent 0 003 + 04884177 n 0101 + 02700867 v 0104 ! 00591953 a 0101 | having control over urination and defecation -00591953 00 a 01 incontinent 0 004 + 13496972 n 0102 + 13496972 n 0101 ! 00591817 a 0101 & 00592113 a 0000 | not having control over urination and defecation -00592113 00 s 01 leaky 0 002 & 00591953 a 0000 + 13506727 n 0101 | used informally; unable to retain urine -00592222 00 a 01 continual 0 006 ! 00593374 a 0101 & 00592539 a 0000 & 00592754 a 0000 & 00592880 a 0000 & 00593071 a 0000 & 00593276 a 0000 | occurring without interruption; chiefly restricted to what recurs regularly or frequently in a prolonged and closely spaced series; "the continual banging of the shutters" -00592539 00 s 02 insistent 0 repetitive 0 006 & 00592222 a 0000 + 07090721 n 0201 + 01734502 v 0204 + 00343334 v 0202 + 14451349 n 0102 + 07191777 n 0101 | repetitive and persistent; "the bluejay's insistent cry" -00592754 00 s 01 running(a) 0 001 & 00592222 a 0000 | continually repeated over a period of time; "a running joke among us" -00592880 00 s 03 perennial 0 recurrent 0 repeated 0 003 & 00592222 a 0000 + 07343363 n 0201 + 00343334 v 0201 | recurring again and again; "perennial efforts to stipulate the requirements" -00593071 00 s 03 persistent 0 relentless 0 unrelenting 0 005 & 00592222 a 0000 + 04831437 n 0201 + 04864515 n 0104 + 05054130 n 0102 + 00350461 v 0102 | never-ceasing; "the relentless beat of the drums" -00593276 00 s 02 recurring 0 revenant 0 001 & 00592222 a 0000 | coming back; "a revenant ghost" -00593374 00 a 01 sporadic 0 008 ^ 00596769 a 0000 ^ 01067193 a 0000 ! 00592222 a 0101 & 00593664 a 0000 & 00593836 a 0000 & 00594004 a 0000 & 00594146 a 0000 & 00594267 a 0000 | recurring in scattered and irregular or unpredictable instances; "a city subjected to sporadic bombing raids" -00593664 00 s 02 fitful 0 spasmodic 0 002 & 00593374 a 0000 + 04770535 n 0101 | occurring in spells and often abruptly; "fitful bursts of energy"; "spasmodic rifle fire" -00593836 00 s 01 intermittent 0 003 & 00593374 a 0000 + 04770720 n 0102 + 04770720 n 0101 | stopping and starting at irregular intervals; "intermittent rain showers" -00594004 00 s 02 periodic 0 occasional 0 001 & 00593374 a 0000 | recurring or reappearing from time to time; "periodic feelings of anxiety" -00594146 00 s 02 irregular 0 unpredictable 0 002 & 00593374 a 0000 + 14371161 n 0102 | not occurring at expected times -00594267 00 s 02 isolated 0 stray 0 001 & 00593374 a 0000 | not close together in time; "isolated instances of rebellion"; "a few stray crumbs" -00594413 00 a 02 continuous 1 uninterrupted 0 015 ^ 00290923 a 0000 = 05054130 n 0000 + 15123754 n 0101 + 05052587 n 0101 + 14422035 n 0101 + 05054130 n 0101 ! 00596769 a 0101 & 00595147 a 0000 & 00595299 a 0000 & 00595863 a 0000 & 00596043 a 0000 & 00596211 a 0000 & 00596358 a 0000 & 00596511 a 0000 & 00596639 a 0000 | continuing in time or space without interruption; "a continuous rearrangement of electrons in the solar atoms results in the emission of light"- James Jeans; "a continuous bout of illness lasting six months"; "lived in continuous fear"; "a continuous row of warehouses"; "a continuous line has no gaps or breaks in it"; "moving midweek holidays to the nearest Monday or Friday allows uninterrupted work weeks" -00595147 00 s 04 around-the-clock 0 day-and-night 0 nonstop 0 round-the-clock 0 001 & 00594413 a 0000 | at all times; "around-the-clock nursing care" -00595299 00 s 07 ceaseless 0 constant 0 incessant 0 never-ending 0 perpetual 0 unceasing 0 unremitting 0 005 & 00594413 a 0000 + 05053527 n 0501 + 05052587 n 0304 + 05052587 n 0303 + 05052587 n 0102 | uninterrupted in time and indefinitely long continuing; "the ceaseless thunder of surf"; "in constant pain"; "night and day we live with the incessant noise of the city"; "the never-ending search for happiness"; "the perpetual struggle to maintain standards in a democracy"; "man's unceasing warfare with drought and isolation"; "unremitting demands of hunger" -00595863 00 s 01 continual 0 001 & 00594413 a 0000 | `continual' (meaning seemingly uninterrupted) is often used interchangeably with `continuous' (meaning without interruption) -00596043 00 s 02 dogging 0 persisting 0 001 & 00594413 a 0000 | relentless and indefatigable in pursuit or as if in pursuit; "impossible to escape the dogging fears" -00596211 00 s 01 endless 0 002 & 00594413 a 0000 + 05052387 n 0101 | having the ends united so as to form a continuous whole; "an endless chain" -00596358 00 s 02 free_burning 0 sustained 2 001 & 00594413 a 0000 | (of an electric arc) continuous; "heat transfer to the anode in free burning arcs" -00596511 00 s 02 straight 0 consecutive 0 001 & 00594413 a 0000 | successive (without a break); "sick for five straight days" -00596639 00 s 01 sustained 0 001 & 00594413 a 0000 | maintained at length without interruption or weakening; "sustained flight" -00596769 00 a 02 discontinuous 1 noncontinuous 0 006 ^ 00593374 a 0000 ^ 00289983 a 0000 + 14417551 n 0101 ! 00594413 a 0101 & 00597148 a 0000 & 00597267 a 0000 | not continuing without interruption in time or space; "discontinuous applause"; "the landscape was a discontinuous mosaic of fields and forest areas"; "he received a somewhat haphazard and discontinuous schooling" -00597148 00 s 01 disrupted 0 001 & 00596769 a 0000 | marked by breaks or gaps; "many routes are unsafe or disrupted" -00597267 00 s 01 disjunct 0 001 & 00596769 a 0000 | used of distributions, as of statistical or natural populations; "disjunct distribution of king crabs" -00597424 00 a 01 continuous 2 004 ;c 06000644 n 0000 + 15123754 n 0101 + 14422035 n 0101 ! 00597599 a 0101 | of a function or curve; extending without break or irregularity -00597599 00 a 01 discontinuous 2 003 ;c 06000644 n 0000 + 14417551 n 0101 ! 00597424 a 0101 | of a function or curve; possessing one or more discontinuities -00597758 00 a 01 continued 0 002 ! 00598203 a 0101 & 00597988 a 0000 | without stop or interruption; "to insure the continued success of the war"; "the continued existence of nationalism"; "the continued popularity of Westerns" -00597988 00 s 01 continuing 0 001 & 00597758 a 0000 | remaining in force or being carried on without letup; "the act provided a continuing annual appropriation"; "the continuing struggle to put food on the table" -00598203 00 a 01 discontinued 0 003 ! 00597758 a 0101 & 00598413 a 0000 & 00598536 a 0000 | stopped permanently or temporarily; "discontinued models"; "a discontinued magazine"; "a discontinued conversation" -00598413 00 s 01 interrupted 0 001 & 00598203 a 0000 | discontinued temporarily; "we resumed the interrupted discussion" -00598536 00 s 01 out_of_print 0 001 & 00598203 a 0000 | (of books) no longer offered for sale by a publisher; "that edition is out of print" -00598679 00 a 01 controlled 0 009 ^ 02000118 a 0000 ! 00599821 a 0101 & 00599005 a 0000 & 00599111 a 0000 & 00599186 a 0000 & 00599292 a 0000 & 00599468 a 0000 & 00599628 a 0000 & 00599745 a 0000 | restrained or managed or kept within certain bounds; "controlled emotions"; "the controlled release of water from reservoirs" -00599005 00 s 01 contained 0 001 & 00598679 a 0000 | gotten under control; "the oil spill is contained" -00599111 00 s 01 disciplined 0 001 & 00598679 a 0000 | obeying the rules -00599186 00 s 01 dominated 0 001 & 00598679 a 0000 | controlled or ruled by superior authority or power -00599292 00 s 01 harnessed 0 001 & 00598679 a 0000 | brought under control and put to use; "electricity from the harnessed Colorado River"; "the harnessed power of the atom" -00599468 00 s 02 obsessed 0 possessed(p) 0 001 & 00598679 a 0000 | influenced or controlled by a powerful force such as a strong emotion; "by love possessed" -00599628 00 s 01 price-controlled 0 001 & 00598679 a 0000 | having the price regulated or controlled by government -00599745 00 s 01 regimented 0 001 & 00598679 a 0000 | strictly controlled -00599821 00 a 01 uncontrolled 0 012 ^ 02000680 a 0000 ! 00598679 a 0101 & 00600192 a 0000 & 00600395 a 0000 & 00600540 a 0000 & 00600725 a 0000 & 00600879 a 0000 & 00601032 a 0000 & 00601150 a 0000 & 00601250 a 0000 & 00601499 a 0000 & 00601650 a 0000 | not being under control; out of control; "the greatest uncontrolled health problem is AIDS"; "uncontrolled growth" -00600192 00 s 03 anarchic 0 anarchical 0 lawless 0 003 & 00599821 a 0000 + 13973059 n 0302 + 13973059 n 0201 | without law or control; "the system is economically inefficient and politically anarchic" -00600395 00 s 01 errant 0 002 & 00599821 a 0000 + 01925694 v 0102 | uncontrolled motion that is irregular or unpredictable; "an errant breeze" -00600540 00 s 02 irrepressible 0 uncontrollable 0 002 & 00599821 a 0000 + 04633959 n 0101 | impossible to repress or control; "an irrepressible chatterbox"; "uncontrollable laughter" -00600725 00 s 01 loose 0 002 & 00599821 a 0000 ;c 00523513 n 0000 | (of a ball in sport) not in the possession or control of any player; "a loose ball" -00600879 00 s 02 lordless 0 masterless 0 001 & 00599821 a 0000 | having no lord or master; "harsh punishments for sturdy vagabonds and masterless men" -00601032 00 s 01 rampant 0 002 & 00599821 a 0000 + 02723016 v 0101 | unrestrained and violent; "rampant aggression" -00601150 00 s 01 runaway 0 001 & 00599821 a 0000 | completely out of control; "runaway inflation" -00601250 00 s 01 torrential 0 002 & 00599821 a 0000 + 13775706 n 0104 | resembling a torrent in force and abundance; "torrential applause"; "torrential abuse"; "the torrential facility and fecundity characteristic of his style"- Winthrop Sargeant -00601499 00 s 02 undisciplined 0 ungoverned 0 001 & 00599821 a 0000 | lacking in discipline or control; "undisciplined behavior"; "ungoverned youth" -00601650 00 s 01 wild 1 001 & 00599821 a 0000 | deviating widely from an intended course; "a wild bullet"; "he threw a wild pitch" -00601783 00 a 01 controversial 0 006 + 07183151 n 0101 ! 00602721 a 0101 & 00602117 a 0000 & 00602293 a 0000 & 00602474 a 0000 & 00602563 a 0000 | marked by or capable of arousing controversy; "the issue of the death penalty is highly controversial"; "Rushdie's controversial book"; "a controversial decision on affirmative action" -00602117 00 s 04 arguable 0 debatable 0 disputable 0 moot 0 003 & 00601783 a 0000 + 00773432 v 0203 + 00812580 v 0201 | open to argument or debate; "that is a moot question" -00602293 00 s 01 contentious 0 002 & 00601783 a 0000 + 07183151 n 0102 | involving or likely to cause controversy; "a central and contentious element of the book"- Tim W.Ferfuson -00602474 00 s 01 disputed 0 001 & 00601783 a 0000 | subject to disagreement and debate -00602563 00 s 02 polemic 0 polemical 0 004 & 00601783 a 0000 + 07183660 n 0201 + 10448670 n 0103 + 07183660 n 0101 | of or involving dispute or controversy -00602721 00 a 02 uncontroversial 0 noncontroversial 0 004 ! 00601783 a 0101 & 00602888 a 0000 & 00603039 a 0000 & 00603194 a 0000 | not likely to arouse controversy -00602888 00 s 01 unchallengeable 0 001 & 00602721 a 0000 | not open to challenge; "unchallengeable facts"; "a position of unchallengeable supremacy" -00603039 00 s 03 undisputed 0 unchallenged 0 unquestioned 0 001 & 00602721 a 0000 | generally agreed upon; not subject to dispute; "the undisputed fact" -00603194 00 s 02 agreed_upon(p) 0 stipulatory 0 002 & 00602721 a 0000 + 01018928 v 0201 | constituted or contracted by stipulation or agreement; "stipulatory obligations" -00603367 00 a 01 argumentative 0 005 + 00773432 v 0101 ! 00604399 a 0101 & 00603660 a 0000 & 00603804 a 0000 & 00604221 a 0000 | given to or characterized by argument; "an argumentative discourse"; "argumentative to the point of being cantankerous"; "an intelligent but argumentative child" -00603660 00 s 01 quarrelsome 0 002 & 00603367 a 0000 + 04643979 n 0101 | given to quarreling; "arguing children"; "quarrelsome when drinking" -00603804 00 s 05 contentious 0 combative 0 disputatious 0 disputative 0 litigious 0 007 & 00603367 a 0000 + 04644306 n 0501 + 00775156 v 0402 + 07181935 n 0301 + 01170813 n 0301 + 07183151 n 0102 + 04643979 n 0102 | inclined or showing an inclination to dispute or disagree, even to engage in law suits; "a style described as abrasive and contentious"; "a disputatious lawyer"; "a litigious and acrimonious spirit" -00604221 00 s 02 eristic 0 eristical 0 003 & 00603367 a 0000 + 09615465 n 0103 + 05635321 n 0101 | given to disputation for its own sake and often employing specious arguments -00604399 00 a 01 unargumentative 0 002 ! 00603367 a 0101 & 00604520 a 0000 | not given to or characterized by argument -00604520 00 s 01 noncontentious 0 001 & 00604399 a 0000 | of persons; not given to controversy -00604617 00 a 01 convenient 0 009 ^ 00931555 a 0000 ^ 00019131 a 0000 = 04718563 n 0000 + 14446493 n 0101 + 04718563 n 0101 + 02729965 n 0104 ! 00605128 a 0101 & 00604897 a 0000 & 00604978 a 0000 | suited to your comfort or purpose or needs; "a convenient excuse for not going" -00604897 00 s 01 handy 0 001 & 00604617 a 0000 | easy to use; "a handy gadget" -00604978 00 s 02 favorable 0 favourable 0 001 & 00604617 a 0000 | occurring at a convenient or suitable time; "an opportune time to receive guests" -00605128 00 a 01 inconvenient 0 004 = 04718563 n 0000 + 04722715 n 0101 ! 00604617 a 0101 & 00605406 a 0000 | not suited to your comfort, purpose or needs; "it is inconvenient not to have a telephone in the kitchen"; "the back hall is an inconvenient place for the telephone" -00605406 00 s 01 awkward 0 001 & 00605128 a 0000 | causing inconvenience; "they arrived at an awkward time" -00605516 00 a 01 conventional 0 010 ^ 01041916 a 0000 ^ 01688271 a 0000 = 04801532 n 0000 + 06212155 n 0101 ! 00606602 a 0101 & 00605893 a 0000 & 00606079 a 0000 & 00606240 a 0000 & 00606347 a 0000 ! 00608421 a 0101 | following accepted customs and proprieties; "conventional wisdom"; "she had strayed from the path of conventional behavior"; "conventional forms of address" -00605893 00 s 01 received 0 001 & 00605516 a 0000 | widely accepted as true or worthy; "a received moral idea"; "Received political wisdom says not; surveys show otherwise"- Economist -00606079 00 s 01 customary 0 002 & 00605516 a 0000 + 05667404 n 0101 | in accordance with convention or custom; "sealed the deal with the customary handshake" -00606240 00 s 01 formulaic 0 001 & 00605516 a 0000 | characterized by or in accordance with some formula -00606347 00 s 02 stodgy 0 stuffy 0 003 & 00605516 a 0000 + 04648059 n 0202 + 04648059 n 0101 | excessively conventional and unimaginative and hence dull; "why is the middle class so stodgy, so utterly without a sense of humor?"; "a stodgy dinner party" -00606602 00 a 01 unconventional 0 007 ^ 01686439 a 0000 = 04801532 n 0000 + 05634910 n 0101 ! 00605516 a 0101 & 00606859 a 0000 & 00607009 a 0000 & 00607202 a 0000 | not conforming to accepted rules or standards; "her unconventional dress and hair style" -00606859 00 s 01 bohemian 0 002 & 00606602 a 0000 + 08241309 n 0101 | unconventional in especially appearance and behavior; "a bohemian life style" -00607009 00 s 01 go-as-you-please 0 001 & 00606602 a 0000 | not bound by rule or law or convention; "bewildered by the old go-as-you-please liberty of alliterative rhythm"- George Saintsbury -00607202 00 s 03 irregular 0 maverick 0 unorthodox 0 003 & 00606602 a 0000 + 10303654 n 0201 + 04770211 n 0101 | independent in behavior or thought; "she led a somewhat irregular private life"; "maverick politicians" -00607421 00 a 01 conventional 1 006 + 05650180 n 0101 ! 00608421 a 0101 & 00607656 a 0000 & 00607857 a 0000 & 00607977 a 0000 & 00608245 a 0000 | unimaginative and conformist; "conventional bourgeois lives"; "conventional attitudes" -00607656 00 s 03 button-down 0 buttoned-down 0 conservative 0 001 & 00607421 a 0000 | unimaginatively conventional; "a colorful character in the buttoned-down, dull-grey world of business"- Newsweek -00607857 00 s 02 square 0 straight 0 002 & 00607421 a 0000 ;u 07157273 n 0000 | rigidly conventional or old-fashioned -00607977 00 s 04 stereotyped 0 stereotypic 0 stereotypical 0 unimaginative 0 003 & 00607421 a 0000 + 05927586 n 0301 + 05927586 n 0201 | lacking spontaneity or originality or individuality; "stereotyped phrases of condolence"; "even his profanity was unimaginative" -00608245 00 s 01 white-bread 0 001 & 00607421 a 0000 | of or belonging to or representative of the white middle class; "white-bread America"; "a white-bread college student" -00608421 00 a 01 unconventional 1 008 ! 00605516 a 0101 ! 00607421 a 0101 & 00608668 a 0000 & 00608791 a 0000 & 00609341 a 0000 & 00609564 a 0000 & 00609750 a 0000 & 00609938 a 0000 | not conventional or conformist; "unconventional life styles" -00608668 00 s 01 alternative 0 001 & 00608421 a 0000 | pertaining to unconventional choices; "an alternative life style" -00608791 00 s 0a bizarre 0 eccentric 0 freakish 0 freaky 0 flaky 0 flakey 0 gonzo 0 off-the-wall 0 outlandish 0 outre 0 007 & 00608421 a 0000 + 04798511 n 0901 + 14397889 n 0603 + 14397889 n 0503 + 04798185 n 0302 + 04798881 n 0201 + 04798511 n 0102 | conspicuously or grossly unconventional or unusual; "restaurants of bizarre design--one like a hat, another like a rabbit"; "famed for his eccentric spelling"; "a freakish combination of styles"; "his off-the-wall antics"; "the outlandish clothes of teenagers"; "outre and affected stage antics" -00609341 00 s 03 devil-may-care 0 raffish 0 rakish 0 002 & 00608421 a 0000 + 04884995 n 0301 | marked by a carefree unconventionality or disreputableness; "a cocktail party given by some...raffish bachelors"- Crary Moore -00609564 00 s 05 far-out 0 kinky 0 offbeat 0 quirky 0 way-out 0 004 & 00608421 a 0000 + 04797824 n 0403 + 04797824 n 0404 + 05926150 n 0201 | informal terms; strikingly unconventional -00609750 00 s 01 funky 0 001 & 00608421 a 0000 | stylish and modern in an unconventional way; "she likes funky clothes"; "we did it all in black and white in a very funky sixties style" -00609938 00 s 03 spaced-out 0 spacy 0 spacey 0 001 & 00608421 a 0000 | stupefied by (or as if by) some narcotic drug -00610057 00 a 01 conformist 0 001 ! 00610249 a 0101 | marked by convention and conformity to customs or rules or styles; "underneath the radical image teenagers are surprisingly conformist" -00610249 00 a 02 nonconformist 0 unconformist 0 001 ! 00610057 a 0101 | not conforming to some norm or socially approved pattern of behavior or thought; "their rabidly nonconformist deportment has made them legendary"; "the old stubborn nonconformist spirit of the early settlers" -00610532 00 a 02 nuclear 0 atomic 0 002 ! 00610861 a 0101 & 00610734 a 0000 | (weapons) deriving destructive energy from the release of atomic energy; "nuclear war"; "nuclear weapons"; "atomic bombs" -00610734 00 s 01 thermonuclear 0 001 & 00610532 a 0000 | using nuclear weapons based on fusion as distinguished from fission -00610861 00 a 01 conventional 2 001 ! 00610532 a 0101 | (weapons) using energy for propulsion or destruction that is not nuclear energy; "conventional warfare"; "conventional weapons" -00611047 00 a 01 traditional 0 006 + 05667404 n 0102 + 05809745 n 0101 ! 00611938 a 0101 & 00611281 a 0000 & 00611527 a 0000 & 00611754 a 0000 | consisting of or derived from tradition; "traditional history"; "traditional morality" -00611281 00 s 01 conventional 0 002 & 00611047 a 0000 + 06212155 n 0101 | in accord with or being a tradition or practice accepted from the past; "a conventional church wedding with the bride in traditional white"; "the conventional handshake" -00611527 00 s 02 handed-down 0 tralatitious 0 001 & 00611047 a 0000 | having been passed along from generation to generation; "among Biblical critics a tralatitious interpretation is one received by expositor from expositor" -00611754 00 s 01 traditionalistic 0 004 & 00611047 a 0000 + 10721124 n 0101 + 04801877 n 0101 + 01213702 n 0101 | adhering to tradition especially in cultural or religious practices -00611938 00 a 02 nontraditional 0 untraditional 0 001 ! 00611047 a 0101 | not conforming to or in accord with tradition; "nontraditional designs"; "nontraditional practices" -00612114 00 a 01 convergent 0 010 ^ 01718867 a 0000 + 00146572 n 0103 + 07414740 n 0101 + 00146572 n 0101 + 02710402 v 0101 + 02032634 v 0101 + 00368847 v 0101 ! 00612652 a 0101 & 00612383 a 0000 & 00612504 a 0000 | tending to come together from different directions -00612383 00 s 02 confluent 0 merging(a) 0 003 & 00612114 a 0000 + 08542634 n 0101 + 00380881 n 0101 | flowing together -00612504 00 s 02 focused 0 focussed 0 001 & 00612114 a 0000 | (of light rays) converging on a point; "focused light rays can set something afire" -00612652 00 a 02 divergent 0 diverging 0 008 ^ 01718867 a 0000 + 01004072 n 0102 + 01004072 n 0101 + 02709906 v 0101 + 02032415 v 0101 ! 00612114 a 0101 & 00612891 a 0000 & 00612980 a 0000 | tending to move apart in different directions -00612891 00 s 01 branching 0 001 & 00612652 a 0000 | resembling the branches of a tree -00612980 00 s 01 radiating(a) 0 001 & 00612652 a 0000 | diverging from a common point -00613068 00 a 01 branchy 0 013 + 13913849 n 0101 + 13163250 n 0101 ! 00614680 a 0101 & 00613382 a 0000 & 00613728 a 0000 & 00613866 a 0000 & 00613975 a 0000 & 00614120 a 0000 & 00614200 a 0000 & 00614305 a 0000 & 00614436 a 0000 & 00614518 a 0000 & 00614600 a 0000 | having many branches; "a branchy tree trunk" -00613382 00 s 0a arboreal 0 arboreous 0 arborescent 0 arboresque 0 arboriform 0 dendriform 0 dendroid 1 dendroidal 1 treelike 0 tree-shaped 0 004 & 00613068 a 0000 + 13107891 n 0201 + 13107891 n 0101 + 02732827 n 0101 | resembling a tree in form and branching structure; "arborescent coral found off the coast of Bermuda"; "dendriform sponges" -00613728 00 s 01 brachiate 0 002 & 00613068 a 0000 ;c 06066555 n 0000 | having widely spreading paired branches; "maples are brachiate" -00613866 00 s 05 branched 0 branching 0 ramose 0 ramous 0 ramate 0 001 & 00613068 a 0000 | having branches -00613975 00 s 01 bushy 0 003 & 00613068 a 0000 + 13112664 n 0102 + 08438223 n 0103 | resembling a bush in being thickly branched and spreading -00614120 00 s 01 long-branched 0 001 & 00613068 a 0000 | having long branches -00614200 00 s 02 maplelike 0 maple-like 0 001 & 00613068 a 0000 | resembling maple; "maplelike leaves" -00614305 00 s 01 mop-headed 0 001 & 00613068 a 0000 | (of trees) having a bushy top without a leader; "mop-headed cabbage palms" -00614436 00 s 01 stiff-branched 0 001 & 00613068 a 0000 | having stiff branches -00614518 00 s 01 thick-branched 0 001 & 00613068 a 0000 | having thick branches -00614600 00 s 01 well-branched 0 001 & 00613068 a 0000 | having good branches -00614680 00 a 01 branchless 0 003 ! 00613068 a 0101 & 00614791 a 0000 & 00614868 a 0000 | having no branches -00614791 00 s 01 palmlike 0 001 & 00614680 a 0000 | resembling a palm tree -00614868 00 s 02 unbranched 0 unbranching 0 001 & 00614680 a 0000 | without branches; "a tree with an unbranched trunk" -00614990 00 a 01 convincing 0 004 ^ 01769843 a 0000 ! 00615457 a 0101 & 00615191 a 0000 & 00615343 a 0000 | causing one to believe the truth of something; "a convincing story"; "a convincing manner" -00615191 00 s 01 credible 0 003 & 00614990 a 0000 + 04782878 n 0102 + 04782878 n 0101 | appearing to merit belief or acceptance; "a credible witness" -00615343 00 s 02 disenchanting 0 disillusioning 0 001 & 00614990 a 0000 | freeing from illusion or false belief -00615457 00 a 02 unconvincing 0 flimsy 2 004 ^ 00645493 a 0000 + 05041320 n 0201 ! 00614990 a 0101 & 00615655 a 0000 | not convincing; "unconvincing argument"; "as unconvincing as a forced smile" -00615655 00 s 01 unpersuasive 0 002 & 00615457 a 0000 + 05205220 n 0101 | not capable of persuading -00615757 00 a 01 cooked 0 031 ! 00619433 a 0101 & 00616408 a 0000 & 00616532 a 0000 & 00616654 a 0000 & 00616748 a 0000 & 00616822 a 0000 & 00616913 a 0000 & 00617033 a 0000 & 00617137 a 0000 & 00617271 a 0000 & 00617344 a 0000 & 00617422 a 0000 & 00617510 a 0000 & 00617583 a 0000 & 00617678 a 0000 & 00617752 a 0000 & 00617864 a 0000 & 00617951 a 0000 & 00618040 a 0000 & 00618169 a 0000 & 00618274 a 0000 & 00618377 a 0000 & 00618493 a 0000 & 00618584 a 0000 & 00618752 a 0000 & 00618865 a 0000 & 00618944 a 0000 & 00619030 a 0000 & 00619119 a 0000 & 00619238 a 0000 & 00619324 a 0000 | having been prepared for eating by the application of heat -00616408 00 s 01 au_gratin 0 001 & 00615757 a 0000 | cooked while covered with browned breadcrumbs (and sometimes cheese) -00616532 00 s 01 baked 0 001 & 00615757 a 0000 | (bread and pastries) cooked by dry heat (as in an oven); "baked goods" -00616654 00 s 02 barbecued 0 grilled 1 001 & 00615757 a 0000 | cooked over an outdoor grill -00616748 00 s 01 batter-fried 0 001 & 00615757 a 0000 | fried in batter -00616822 00 s 03 boiled 0 poached 0 stewed 0 001 & 00615757 a 0000 | cooked in hot water -00616913 00 s 01 braised 0 001 & 00615757 a 0000 | cooked by browning in fat and then simmering in a closed container -00617033 00 s 02 broiled 0 grilled 2 001 & 00615757 a 0000 | cooked by radiant heat (as over a grill) -00617137 00 s 02 burned 0 burnt 0 001 & 00615757 a 0000 | ruined by overcooking; "she served us underdone bacon and burnt biscuits" -00617271 00 s 01 candy-like 0 001 & 00615757 a 0000 | resembling candy -00617344 00 s 01 done 0 001 & 00615757 a 0000 | cooked until ready to serve -00617422 00 s 02 fried 0 deep-fried 0 001 & 00615757 a 0000 | cooked by frying in fat -00617510 00 s 01 hard-baked 0 001 & 00615757 a 0000 | baked until hard -00617583 00 s 01 hard-boiled 0 001 & 00615757 a 0000 | (eggs) cooked until the yolk is solid -00617678 00 s 01 lyonnaise 0 001 & 00615757 a 0000 | cooked with onions -00617752 00 s 01 medium 0 001 & 00615757 a 0000 | (meat) cooked until there is just a little pink meat inside -00617864 00 s 01 overdone 0 001 & 00615757 a 0000 | cooked too long but still edible -00617951 00 s 01 pancake-style 0 001 & 00615757 a 0000 | cooked as pancakes are cooked -00618040 00 s 01 parched 0 001 & 00615757 a 0000 | toasted or roasted slightly; "parched corn was a staple of the Indian diet" -00618169 00 s 01 rare-roasted 0 001 & 00615757 a 0000 | (meat) roasted with the meat inside still rare -00618274 00 s 01 ready-cooked 0 001 & 00615757 a 0000 | cooked in such a way as to be ready for sale -00618377 00 s 02 roast 0 roasted 0 002 & 00615757 a 0000 + 07580782 n 0101 | (meat) cooked by dry heat in an oven -00618493 00 s 02 saute 0 sauteed 0 001 & 00615757 a 0000 | fried quickly in a little fat -00618584 00 s 01 seared 0 001 & 00615757 a 0000 | having the surface burned quickly with intense heat; "the seared meat is then covered with hot liquid for braising" -00618752 00 s 01 soft-boiled 0 001 & 00615757 a 0000 | (eggs) having the yolk still liquid; "soft-boiled eggs" -00618865 00 s 01 souffle-like 0 001 & 00615757 a 0000 | resembling a souffle -00618944 00 s 01 steamed 0 001 & 00615757 a 0000 | cooked in steam; "steamed clams" -00619030 00 s 01 sunny-side_up 0 001 & 00615757 a 0000 | (eggs) fried on only one side -00619119 00 s 01 toasted 0 001 & 00615757 a 0000 | browned over by exposure to heat; "he liked toasted marshmallows" -00619238 00 s 01 wafer-like 0 001 & 00615757 a 0000 | resembling a thin crisp wafer -00619324 00 s 01 well-done 0 001 & 00615757 a 0000 | (meat) cooked until there is no pink meat left inside -00619433 00 a 01 raw 0 005 ! 00615757 a 0101 & 00619601 a 0000 & 00619691 a 0000 & 00619808 a 0000 & 00619873 a 0000 | not treated with heat to prepare it for eating -00619601 00 s 02 half-baked 0 underdone 1 001 & 00619433 a 0000 | insufficiently cooked -00619691 00 s 01 rare 0 001 & 00619433 a 0000 | (of meat) cooked a short time; still red inside; "rare roast beef" -00619808 00 s 01 uncooked 0 001 & 00619433 a 0000 | not cooked -00619873 00 s 01 untoasted 0 001 & 00619433 a 0000 | not having been browned by exposure to heat -00619972 00 a 01 cooperative 0 006 ^ 01195536 a 0000 + 02416278 v 0103 + 04906026 n 0103 ! 00620585 a 0101 & 00620208 a 0000 & 00620341 a 0000 | done with or working with others for a common purpose or benefit; "a cooperative effort" -00620208 00 s 01 collaborative 0 002 & 00619972 a 0000 + 02416278 v 0101 | accomplished by collaboration; "collaborative research" -00620341 00 s 02 synergetic 0 synergistic 0 003 & 00619972 a 0000 + 13564910 n 0202 + 13564910 n 0101 | working together; used especially of groups, as subsidiaries of a corporation, cooperating for an enhanced effect; "a synergistic effect" -00620585 00 a 01 uncooperative 0 003 ^ 01613463 a 0000 ^ 01198019 a 0000 ! 00619972 a 0101 | unwilling to cooperate; "an uncooperative witness" -00620731 00 a 01 corrupt 0 011 ^ 01549291 a 0000 = 04853948 n 0000 + 14440035 n 0101 ! 00622581 a 0101 & 00621100 a 0000 & 00621207 a 0000 & 00621524 a 0000 & 00621857 a 0000 & 00622014 a 0000 & 00622354 a 0000 & 00622468 a 0000 | lacking in integrity; "humanity they knew to be corrupt...from the day of Adam's creation"; "a corrupt and incompetent city government" -00621100 00 s 03 corrupted 0 debased 0 vitiated 0 001 & 00620731 a 0000 | ruined in character or quality -00621207 00 s 05 corruptible 0 bribable 0 dishonest 0 purchasable 0 venal 0 006 & 00620731 a 0000 + 04854259 n 0501 + 02284096 v 0201 + 02579447 v 0101 + 02284096 v 0102 + 04851585 n 0101 | capable of being corrupted; "corruptible judges"; "dishonest politicians"; "a purchasable senator"; "a venal police officer" -00621524 00 s 04 depraved 0 perverse 0 perverted 0 reprobate 0 005 & 00620731 a 0000 + 10522324 n 0401 + 04853503 n 0202 + 04853503 n 0201 + 04850996 n 0104 | deviating from what is considered moral or right or proper or good; "depraved criminals"; "a perverted sense of loyalty"; "the reprobate conduct of a gambling aristocrat" -00621857 00 s 02 dirty 0 sordid 0 002 & 00620731 a 0000 + 04807971 n 0202 | unethical or dishonest; "dirty police officers"; "a sordid political campaign" -00622014 00 s 02 Praetorian 0 Pretorian 0 001 & 00620731 a 0000 | characteristic of or similar to the corruptible soldiers in the Praetorian Guard with respect to corruption or political venality; "a large Praetorian bureaucracy filled with ambitious...and often sycophantic people makes work and makes trouble"- Arthur M.Schlesinger Jr. -00622354 00 s 01 putrid 0 001 & 00620731 a 0000 | morally corrupt or evil; "the putrid atmosphere of the court" -00622468 00 s 01 sold-out(a) 0 001 & 00620731 a 0000 | having taken a bribe or bribes; "a sold-out politician" -00622581 00 a 01 incorrupt 0 007 = 04853948 n 0000 + 04870040 n 0101 ! 00620731 a 0101 & 00622828 a 0000 & 00622935 a 0000 & 00623105 a 0000 & 00623261 a 0000 | free of corruption or immorality; "a policeman who was incorrupt and incorruptible" -00622828 00 s 01 antiseptic 0 001 & 00622581 a 0000 | clean and honest; "antiseptic financial practices" -00622935 00 s 01 incorruptible 0 002 & 00622581 a 0000 + 04870206 n 0101 | incapable of being morally corrupted; "incorruptible judges are the backbone of the society" -00623105 00 s 01 uncorrupted 1 001 & 00622581 a 0000 | not debased; "though his associates were dishonest, he remained uncorrupted"; "uncorrupted values" -00623261 00 s 02 uncorrupted 2 unspoiled 0 001 & 00622581 a 0000 | not decayed or decomposed -00623356 00 a 02 synergistic 0 interactive 0 002 + 13564910 n 0102 ! 00623565 a 0101 | used especially of drugs or muscles that work together so the total effect is greater than the sum of the two (or more) -00623565 00 a 02 antagonistic 2 incompatible 0 006 + 05293420 n 0101 + 02714883 n 0101 + 01074252 n 0101 ! 00623356 a 0101 & 00623814 a 0000 & 00623939 a 0000 | used especially of drugs or muscles that counteract or neutralize each other's effect -00623814 00 s 01 antacid 0 002 & 00623565 a 0000 + 14778019 n 0101 | acting to neutralize acid (especially in the stomach) -00623939 00 s 01 antiphlogistic 0 001 & 00623565 a 0000 | counteracting inflammation -00624026 00 a 01 considerable 0 006 ^ 01382086 a 0000 ! 00625170 a 0101 & 00624416 a 0000 & 00624576 a 0000 & 00624913 a 0000 & 00625055 a 0000 | large or relatively large in number or amount or extent or degree; "a considerable quantity"; "the economy was a considerable issue in the campaign"; "went to considerable trouble for us"; "spent a considerable amount of time on the problem" -00624416 00 s 01 appreciable 0 001 & 00624026 a 0000 | enough to be estimated or measured; "appreciable amounts of noxious wastes are dumped into the harbor" -00624576 00 s 08 goodly 0 goodish 0 healthy 0 hefty 0 respectable 0 sizable 0 sizeable 0 tidy 0 003 & 00624026 a 0000 + 05104548 n 0706 + 05027837 n 0402 | large in amount or extent or degree; "it cost a considerable amount"; "a goodly amount"; "received a hefty bonus"; "a respectable sum"; "a tidy sum of money"; "a sizable fortune" -00624913 00 s 01 right_smart 0 002 & 00624026 a 0000 ;u 07156497 n 0000 | (Southern or Midland) considerable; "it's a right smart distance" -00625055 00 s 02 significant 0 substantial 0 001 & 00624026 a 0000 | fairly large; "won by a substantial margin" -00625170 00 a 01 inconsiderable 0 001 ! 00624026 a 0101 | too small or unimportant to merit attention; "passed his life in an inconsiderable village"; "their duties were inconsiderable"; "had no inconsiderable influence" -00625393 00 a 03 substantial 0 real 3 material 3 007 = 04761212 n 0000 ^ 00626800 a 0000 + 04762355 n 0201 + 00019613 n 0101 + 04761212 n 0102 + 04761212 n 0101 ! 00625774 a 0101 | having substance or capable of being treated as fact; not imaginary; "the substantial world"; "a mere dream, neither substantial nor practical"; "most ponderous and substantial things"- Shakespeare -00625774 00 a 03 insubstantial 0 unsubstantial 0 unreal 3 010 ^ 00627410 a 0000 = 04761212 n 0000 + 13960117 n 0301 + 00547802 v 0203 + 05041595 n 0101 + 04761815 n 0101 ! 00625393 a 0101 & 00626136 a 0000 & 00626483 a 0000 & 00626701 a 0000 | lacking material form or substance; unreal; "as insubstantial as a dream"; "an insubstantial mirage on the horizon" -00626136 00 s 05 aeriform 0 aerial 0 airy 0 aery 0 ethereal 0 002 & 00625774 a 0000 + 05028963 n 0301 | characterized by lightness and insubstantiality; as impalpable or intangible as air; "figures light and aeriform come unlooked for and melt away"- Thomas Carlyle; "aerial fancies"; "an airy apparition"; "physical rather than ethereal forms" -00626483 00 s 02 shadowy 0 wraithlike 0 002 & 00625774 a 0000 + 05897553 n 0106 | lacking in substance; "strange fancies of unreal and shadowy worlds"- W.A.Butler; "dim shadowy forms"; "a wraithlike column of smoke" -00626701 00 s 01 stringy 0 001 & 00625774 a 0000 | consisting of or containing string or strings -00626800 00 a 01 material 1 006 ^ 00625393 a 0000 = 04760771 n 0000 + 04760771 n 0101 ! 00627410 a 0101 & 00627004 a 0000 & 00627204 a 0000 | derived from or composed of matter; "the material universe" -00627004 00 s 01 physical 0 002 & 00626800 a 0000 + 04760771 n 0102 | having substance or material existence; perceptible to the senses; "a physical manifestation"; "surrounded by tangible objects" -00627204 00 s 01 physical 2 002 & 00626800 a 0000 + 04760771 n 0102 | concerned with material things; "physical properties"; "the physical characteristics of the earth"; "the physical size of a computer" -00627410 00 a 02 immaterial 1 nonmaterial 0 005 ^ 00625774 a 0000 = 04760771 n 0000 + 04761517 n 0101 ! 00626800 a 0101 & 00627643 a 0000 | not consisting of matter; "immaterial apparitions"; "ghosts and other immaterial entities" -00627643 00 s 02 intangible 0 nonphysical 0 003 & 00627410 a 0000 + 04760296 n 0101 + 04760296 n 0102 | lacking substance or reality; incapable of being touched or seen; "that intangible thing--the soul" -00627849 00 a 01 bodied 0 012 ^ 00629997 a 0000 ! 00629146 a 0101 & 00628201 a 0000 & 00628354 a 0000 & 00628432 a 0000 & 00628519 a 0000 & 00628610 a 0000 & 00628687 a 0000 & 00628776 a 0000 & 00628881 a 0000 & 00628988 a 0000 & 00629068 a 0000 | having a body or a body of a specified kind; often used in combination; "strong-bodied"; "big-bodied" -00628201 00 s 01 incarnate 0 001 & 00627849 a 0000 | invested with a bodily form especially of a human body; "a monarch...regarded as a god incarnate" -00628354 00 s 01 lithe-bodied 0 001 & 00627849 a 0000 | having a lithe body -00628432 00 s 01 long-bodied 0 001 & 00627849 a 0000 | having a relatively long body -00628519 00 s 01 narrow-bodied 0 001 & 00627849 a 0000 | having a relatively narrow body -00628610 00 s 01 oval-bodied 0 001 & 00627849 a 0000 | having an oval body -00628687 00 s 01 short-bodied 0 001 & 00627849 a 0000 | having a relatively short body -00628776 00 s 02 silver-bodied 0 silvery-bodied 0 001 & 00627849 a 0000 | having a silver-colored body -00628881 00 s 03 slim-bodied 0 thin-bodied 0 slender-bodied 0 001 & 00627849 a 0000 | having a slim body -00628988 00 s 01 smooth-bodied 0 001 & 00627849 a 0000 | having a smooth body -00629068 00 s 01 thick-bodied 0 001 & 00627849 a 0000 | having a thick body -00629146 00 a 01 unbodied 0 004 ^ 00630802 a 0000 ! 00627849 a 0101 & 00629269 a 0000 & 00629382 a 0000 | having no body -00629269 00 s 02 bodiless 0 bodyless 0 001 & 00629146 a 0000 | having no trunk or main part; "a bodiless head" -00629382 00 s 01 formless 0 001 & 00629146 a 0000 | having no physical form; "belief in a world filled with...formless but often malevolent beings" -00629532 00 a 01 brainwashed 0 001 ! 00629808 a 0101 | subjected to intensive forced indoctrination resulting in the rejection of old beliefs and acceptance of new ones; "brainwashed prisoners of war"; "captive audiences for TV commercials can become brainwashed consumers" -00629808 00 a 01 unbrainwashed 0 001 ! 00629532 a 0101 | not successfully subjected to brainwashing; "despite the torture and the psychological pressure some POWs remained unbrainwashed" -00629997 00 a 02 corporeal 0 material 4 008 ^ 00627849 a 0000 = 04760771 n 0000 + 04760771 n 0201 + 04760771 n 0103 ! 00630802 a 0101 & 00630329 a 0000 & 00630466 a 0000 & 00630727 a 0000 | having material or physical form or substance; "that which is created is of necessity corporeal and visible and tangible" - Benjamin Jowett -00630329 00 s 01 bodily 0 002 & 00629997 a 0000 + 05216365 n 0101 | having or relating to a physical material body; "bodily existence" -00630466 00 s 05 bodied 0 corporal 0 corporate 0 embodied 0 incarnate 0 001 & 00629997 a 0000 | possessing or existing in bodily form; "what seemed corporal melted as breath into the wind"- Shakespeare; "an incarnate spirit"; "`corporate' is an archaic term" -00630727 00 s 01 reincarnate 0 001 & 00629997 a 0000 | having a new body -00630802 00 a 02 incorporeal 0 immaterial 4 007 ^ 00629146 a 0000 = 04760771 n 0000 + 04761517 n 0201 + 04761517 n 0102 ! 00629997 a 0101 & 00631040 a 0000 & 00631193 a 0000 | without material form or substance; "an incorporeal spirit" -00631040 00 s 05 discorporate 0 unembodied 0 bodiless 0 unbodied 0 disembodied 0 001 & 00630802 a 0000 | not having a material body; "bodiless ghosts" -00631193 00 s 01 spiritual 0 001 & 00630802 a 0000 | lacking material body or form or substance; "spiritual beings"; "the vital transcendental soul belonging to the spiritual realm"-Lewis Mumford -00631391 00 a 02 correct 0 right 2 011 ^ 00021766 a 0000 ^ 01878466 a 0000 ^ 02460502 a 0000 = 04802198 n 0000 + 04802198 n 0202 ! 00632438 a 0202 + 04802198 n 0101 ! 00632438 a 0101 & 00631798 a 0000 & 00632071 a 0000 & 00632306 a 0000 | free from error; especially conforming to fact or truth; "the correct answer"; "the correct version"; "the right answer"; "took the right road"; "the right decision" -00631798 00 s 03 accurate 0 exact 0 precise 0 003 & 00631391 a 0000 + 04803880 n 0301 + 04803430 n 0201 | (of ideas, images, representations, expressions) characterized by perfect conformity to fact or truth ; strictly correct; "a precise image"; "a precise measurement" -00632071 00 s 02 letter-perfect 0 word-perfect 0 001 & 00631391 a 0000 | correct to the last detail; especially being in or following the exact words; "a letter-perfect rendition of the soliloquy"; "she was word-perfect in her part" -00632306 00 s 01 straight 0 002 & 00631391 a 0000 + 04918210 n 0102 | following a correct or logical method; "straight reasoning" -00632438 00 a 02 incorrect 0 wrong 2 012 ^ 02461723 a 0000 ^ 01880531 a 0000 ^ 00023383 a 0000 = 04802198 n 0000 + 04802403 n 0202 ! 00631391 a 0202 + 04802403 n 0101 ! 00631391 a 0101 & 00632949 a 0000 & 00633084 a 0000 & 00633235 a 0000 + 04901599 n 0101 | not correct; not in conformity with fact or truth; "an incorrect calculation"; "the report in the paper is wrong"; "your information is wrong"; "the clock showed the wrong time"; "found themselves on the wrong road"; "based on the wrong assumptions" -00632949 00 s 01 erroneous 0 002 & 00632438 a 0000 + 04802629 n 0101 | containing or characterized by error; "erroneous conclusions" -00633084 00 s 01 fallacious 0 002 & 00632438 a 0000 + 04810727 n 0101 | based on an incorrect or misleading notion or information; "fallacious hope" -00633235 00 s 02 false 0 mistaken 0 003 & 00632438 a 0000 + 13960464 n 0102 + 13960464 n 0101 | arising from error; "a false assumption"; "a mistaken view of the situation" -00633410 00 a 02 right 4 correct 4 004 + 04899201 n 0201 + 04899031 n 0102 ! 00633778 a 0101 & 00633581 a 0000 | correct in opinion or judgment; "time proved him right" -00633581 00 s 01 right-minded 0 001 & 00633410 a 0000 | disposed toward or having views based on what is right; "respect for law which every right-minded citizen ought to have"- Bertrand Russell -00633778 00 a 01 wrong 4 003 + 04802403 n 0102 ! 00633410 a 0101 & 00633937 a 0000 | based on or acting or judging in error; "it is wrong to think that way" -00633937 00 s 01 wrongheaded 0 001 & 00633778 a 0000 | obstinately perverse in judgment or opinion; "a wrongheaded policy" -00634062 00 a 01 corrected 0 004 ! 00634636 a 0101 & 00634259 a 0000 & 00634404 a 0000 & 00634559 a 0000 | having something undesirable neutralized; "with glasses her corrected vision was 20:20" -00634259 00 s 01 aplanatic 0 002 & 00634062 a 0000 ;c 06100778 n 0000 | free from or corrected for spherical aberration; "an aplanatic mirror" -00634404 00 s 01 apochromatic 0 002 & 00634062 a 0000 ;c 06100778 n 0000 | corrected for both chromatic and spherical aberration; "an apochromatic lens" -00634559 00 s 01 rectified 0 001 & 00634062 a 0000 | having been put right -00634636 00 a 01 uncorrected 0 002 ! 00634062 a 0101 & 00634759 a 0000 | left faulty or wrong; "uncorrected astigmatism" -00634759 00 s 01 unremedied 0 001 & 00634636 a 0000 | not having been put right; "unremedied errors" -00634862 00 a 01 corrigible 0 005 + 02553428 v 0102 ! 00635456 a 0101 & 00635078 a 0000 & 00635244 a 0000 & 00635327 a 0000 | capable of being corrected or set right; "a corrigible defect"; "a corrigible prisoner" -00635078 00 s 02 amendable 0 correctable 0 003 & 00634862 a 0000 + 00199912 v 0105 + 00205885 v 0103 | capable of being corrected by additions; "an amendable flaw" -00635244 00 s 01 improvable 0 001 & 00634862 a 0000 | susceptible of improvement -00635327 00 s 02 redeemable 0 reformable 0 001 & 00634862 a 0000 | susceptible to improvement or reform; "a redeemable sinner" -00635456 00 a 01 incorrigible 0 004 ^ 01613463 a 0000 ! 00634862 a 0101 & 00635607 a 0000 & 00635752 a 0000 | impervious to correction by punishment -00635607 00 s 02 unreformable 0 unregenerate 0 001 & 00635456 a 0000 | unrepentant and incapable of being reformed; "an unregenerate criminal" -00635752 00 s 03 uncontrollable 0 uncorrectable 0 unmanageable 0 002 & 00635456 a 0000 + 04907575 n 0302 | incapable of being controlled or managed; "uncontrollable children"; "an uncorrectable habit" -00635955 00 a 01 cosmopolitan 2 002 ! 00636547 a 0101 & 00636391 a 0000 | composed of people from or at home in many parts of the world; especially not provincial in attitudes or interests; "his cosmopolitan benevolence impartially extended to all races and to all creeds"- T.B. Macaulay; "the ancient and cosmopolitan societies of Syria and Egypt"; "that queer, cosmopolitan, rather sinister crowd found around the Marseilles docks" -00636391 00 s 02 traveled 0 travelled 0 001 & 00635955 a 0000 | familiar with many parts of the world; "a traveled, educated man"; "well-traveled people" -00636547 00 a 01 provincial 0 007 + 08654360 n 0102 ! 00635955 a 0101 & 00636891 a 0000 & 00637172 a 0000 & 00637267 a 0000 & 00637455 a 0000 & 00637645 a 0000 | characteristic of the provinces or their people; "deeply provincial and conformist"; "in that well-educated company I felt uncomfortably provincial"; "narrow provincial attitudes" -00636891 00 s 04 bumpkinly 0 hick 0 rustic 0 unsophisticated 0 003 & 00636547 a 0000 + 04816125 n 0301 + 10804102 n 0106 | awkwardly simple and provincial; "bumpkinly country boys"; "rustic farmers"; "a hick town"; "the nightlife of Montmartre awed the unsophisticated tourists" -00637172 00 s 01 corn-fed 0 001 & 00636547 a 0000 | strong and healthy but not sophisticated -00637267 00 s 02 insular 0 parochial 0 001 & 00636547 a 0000 | narrowly restricted in outlook or scope; "little sympathy with parochial mentality"; "insular attitudes toward foreigners" -00637455 00 s 04 jerkwater 0 one-horse 0 pokey 0 poky 0 001 & 00636547 a 0000 | small and remote and insignificant; "a jerkwater college"; "passed a series of poky little one-horse towns" -00637645 00 s 01 stay-at-home(a) 0 001 & 00636547 a 0000 | not given to travel; "a stay-at-home friend" -00637751 00 a 01 costive 0 001 ! 00637857 a 0101 | retarding evacuation of feces; binding; constipating -00637857 00 a 01 laxative 0 003 ! 00637751 a 0101 & 00637979 a 0000 & 00638067 a 0000 | stimulating evacuation of feces -00637979 00 s 01 aperient 0 002 & 00637857 a 0000 + 04025748 n 0104 | mildly laxative -00638067 00 s 03 cathartic 0 evacuant 0 purgative 0 006 & 00637857 a 0000 + 04025748 n 0301 + 00073813 v 0301 + 00073343 v 0201 + 04025748 n 0102 + 00253577 n 0101 | strongly laxative -00638253 00 a 01 constipated 0 002 ! 00638501 a 0101 & 00638396 a 0000 | have difficult or incomplete or infrequent evacuation of the bowels -00638396 00 s 01 bound(p) 0 001 & 00638253 a 0000 | confined in the bowels; "he is bound in the belly" -00638501 00 a 02 unconstipated 0 regular 6 003 ! 00638253 a 0101 & 00638622 a 0000 & 00638841 a 0000 | not constipated -00638622 00 s 06 diarrheal 0 diarrhoeal 0 diarrhetic 0 diarrhoetic 0 diarrheic 0 diarrhoeic 0 005 & 00638501 a 0000 + 14371913 n 0402 + 14371913 n 0301 + 14371913 n 0202 + 14371913 n 0101 | of or relating to diarrhea -00638841 00 s 02 lax 0 loose 0 003 & 00638501 a 0000 + 14371913 n 0204 + 14546042 n 0101 | emptying easily or excessively; "loose bowels" -00638981 00 a 01 considerate 0 006 ^ 01372049 a 0000 ^ 02384383 a 0000 ^ 02099019 a 0000 + 04841358 n 0102 ! 00639356 a 0101 & 00639230 a 0000 | showing concern for the rights and feelings of others; "friends considerate enough to leave us alone" -00639230 00 s 01 thoughtful 0 002 & 00638981 a 0000 + 04841358 n 0103 | considerate of the feelings or well-being of others -00639356 00 a 01 inconsiderate 0 006 ^ 02098325 a 0000 ^ 02384843 a 0000 ^ 02420530 a 0000 + 04845967 n 0102 ! 00638981 a 0101 & 00639594 a 0000 | lacking regard for the rights or feelings of others; "shockingly inconsiderate behavior" -00639594 00 s 03 thoughtless 0 uncaring 0 unthinking 0 002 & 00639356 a 0000 + 04845967 n 0103 | without care or thought for others; "the thoughtless saying of a great princess on being informed that the people had no bread; `Let them eat cake'" -00639842 00 a 01 courteous 0 004 ^ 01993940 a 0000 = 04912732 n 0000 ! 00640283 a 0101 & 00640106 a 0000 | characterized by courtesy and gracious good manners; "if a man be gracious and courteous to strangers it shows he is a citizen of the world"-Francis Bacon -00640106 00 s 03 chivalrous 0 gallant 0 knightly 0 004 & 00639842 a 0000 + 10238375 n 0301 + 10644062 n 0202 + 05955848 n 0101 | being attentive to women like an ideal knight -00640283 00 a 01 discourteous 0 007 ^ 01994602 a 0000 = 04912732 n 0000 ! 00639842 a 0101 & 00640520 a 0000 & 00640660 a 0000 & 00640931 a 0000 & 00641036 a 0000 | showing no courtesy; rude; "a distant and at times discourteous young" -00640520 00 s 01 abrupt 0 002 & 00640283 a 0000 + 04915462 n 0101 | surprisingly and unceremoniously brusque in manner; "an abrupt reply" -00640660 00 s 04 brusque 0 brusk 0 curt 0 short(p) 0 004 & 00640283 a 0000 + 04915462 n 0405 + 04915462 n 0303 + 04915462 n 0102 | marked by rude or peremptory shortness; "try to cultivate a less brusque manner"; "a curt reply"; "the salesgirl was very short with him" -00640931 00 s 03 caddish 0 unchivalrous 0 ungallant 0 001 & 00640283 a 0000 | offensively discourteous -00641036 00 s 01 unceremonious 0 001 & 00640283 a 0000 | without due formalities; "unceremonious dismissal from office" -00641158 00 a 01 polite 0 005 = 04912982 n 0000 + 01227908 n 0101 ! 00641640 a 0101 & 00641343 a 0000 & 00641460 a 0000 | showing regard for others in manners, speech, behavior, etc. -00641343 00 s 02 mannerly 0 well-mannered 0 002 & 00641158 a 0000 + 04928903 n 0101 | socially correct in behavior -00641460 00 s 03 courteous 0 gracious 0 nice 0 004 & 00641158 a 0000 + 04912982 n 0302 + 04900357 n 0202 + 04913568 n 0201 | exhibiting courtesy and politeness; "a nice gesture" -00641640 00 a 01 impolite 0 007 = 04912982 n 0000 + 04914694 n 0101 ! 00641158 a 0101 & 00641813 a 0000 & 00641944 a 0000 & 00642152 a 0000 & 00642263 a 0000 | not polite -00641813 00 s 02 bratty 0 brattish 0 002 & 00641640 a 0000 + 10702483 n 0102 | (used of an ill-mannered child) impolitely unruly -00641944 00 s 05 ill-mannered 0 bad-mannered 0 rude 0 unmannered 0 unmannerly 0 002 & 00641640 a 0000 + 04914292 n 0302 | socially incorrect in behavior; "resentment flared at such an unmannered intrusion" -00642152 00 s 02 discourteous 0 ungracious 0 002 & 00641640 a 0000 + 04914991 n 0201 | lacking social graces -00642263 00 s 01 unparliamentary 0 001 & 00641640 a 0000 | so rude and abusive as to be unsuitable for parliament -00642379 00 a 02 civil 0 polite 4 005 = 04914133 n 0000 + 04912982 n 0201 + 04914133 n 0101 + 01227908 n 0102 ! 00642725 a 0101 | not rude; marked by satisfactory (or especially minimal) adherence to social usages and sufficient but not noteworthy consideration for others; "even if he didn't like them he should have been civil"- W.S. Maugham -00642725 00 a 02 uncivil 0 rude 4 003 = 04914133 n 0000 + 04914292 n 0202 ! 00642379 a 0101 | lacking civility or good manners; "want nothing from you but to get away from your uncivil tongue"- Willa Cather -00642934 00 a 01 civil 1 001 ! 00643116 a 0101 | (of divisions of time) legally recognized in ordinary affairs of life; "the civil calendar"; "a civil day begins at mean midnight" -00643116 00 a 01 sidereal 0 001 ! 00642934 a 0101 | (of divisions of time) determined by daily motion of the stars; "sidereal time" -00643250 00 a 02 creative 0 originative 0 013 ^ 01686439 a 0000 ^ 01865197 a 0000 = 05624700 n 0000 + 01628449 v 0201 + 01640207 v 0101 + 01685313 v 0101 + 05624700 n 0102 + 05624700 n 0101 ! 00644372 a 0101 & 00643598 a 0000 & 00643760 a 0000 & 00643863 a 0000 & 00644299 a 0000 | having the ability or power to create; "a creative imagination" -00643598 00 s 02 fanciful 0 notional 0 001 & 00643250 a 0000 | indulging in or influenced by fancy; "a fanciful mind"; "all the notional vagaries of childhood" -00643760 00 s 01 fictive 0 001 & 00643250 a 0000 | capable of imaginative creation; "fictive talent" -00643863 00 s 02 imaginative 0 inventive 0 005 & 00643250 a 0000 + 01632411 v 0201 + 05633672 n 0201 + 01636397 v 0101 + 05625465 n 0102 | (used of persons or artifacts) marked by independence and creativity in thought or action; "an imaginative use of material"; "the invention of the knitting frame by another ingenious English clergyman"- Lewis Mumford; "an ingenious device"; "had an inventive turn of mind"; "inventive ceramics" -00644299 00 s 01 yeasty 0 001 & 00643250 a 0000 | exuberantly creative -00644372 00 a 01 uncreative 0 006 ^ 01688271 a 0000 ^ 01866535 a 0000 = 05624700 n 0000 + 05649385 n 0101 ! 00643250 a 0101 & 00644560 a 0000 | not creative; "an uncreative imagination" -00644560 00 s 04 sterile 2 unimaginative 0 uninspired 0 uninventive 0 001 & 00644372 a 0000 | deficient in originality or creativity; lacking powers of invention; "a sterile ideology lacking in originality"; "unimaginative development of a musical theme"; "uninspired writing" -00644839 00 a 02 credible 0 believable 4 011 ^ 01799457 a 0000 ^ 02417895 a 0000 = 04782878 n 0000 + 00684068 v 0201 + 00683280 v 0201 + 04782878 n 0203 + 04782878 n 0102 + 04782878 n 0101 ! 00645493 a 0101 & 00645169 a 0000 & 00645281 a 0000 | capable of being believed; "completely credible testimony"; "credible information" -00645169 00 s 01 likely 0 001 & 00644839 a 0000 | within the realm of credibility; "not a very likely excuse" -00645281 00 s 01 presumptive 0 003 & 00644839 a 0000 + 01015677 v 0101 + 00632236 v 0102 | affording reasonable grounds for belief or acceptance; "presumptive evidence"; "a strong presumptive case is made out" -00645493 00 a 02 incredible 0 unbelievable 4 012 ^ 01799957 a 0000 ^ 00647070 a 0000 ^ 00615457 a 0000 ^ 02418538 a 0000 = 04782878 n 0000 + 04784142 n 0102 + 04784142 n 0101 ! 00644839 a 0101 & 00645856 a 0000 & 00645982 a 0000 & 00646117 a 0000 & 00646276 a 0000 | beyond belief or understanding; "at incredible speed"; "the book's plot is simply incredible" -00645856 00 s 03 astounding 0 dumbfounding 0 dumfounding 0 001 & 00645493 a 0000 | bewildering or striking dumb with wonder -00645982 00 s 01 fabulous 0 002 & 00645493 a 0000 + 06757891 n 0103 | barely credible; "the fabulous endurance of a marathon runner" -00646117 00 s 04 improbable 0 marvelous 0 marvellous 0 tall(a) 0 002 & 00645493 a 0000 + 04758452 n 0102 | too improbable to admit of belief; "a tall story" -00646276 00 s 05 undreamed 0 undreamed_of 0 undreamt 0 undreamt_of 0 unimagined 0 001 & 00645493 a 0000 | not imagined even in a dream -00646413 00 a 01 credulous 0 008 ^ 02271544 a 0000 ^ 02462619 a 0000 + 04881156 n 0101 + 04895558 n 0101 ! 00647070 a 0101 & 00646691 a 0000 & 00646890 a 0000 & 00646981 a 0000 | disposed to believe on little evidence; "the gimmick would convince none but the most credulous" -00646691 00 s 01 credible 0 002 & 00646413 a 0000 + 04782878 n 0102 | (a common but incorrect usage where `credulous' would be appropriate) credulous; "she was not the...credible fool he expected" -00646890 00 s 01 overcredulous 0 001 & 00646413 a 0000 | too credulous for your own good -00646981 00 s 01 unquestioning 0 001 & 00646413 a 0000 | not inclined to ask questions -00647070 00 a 01 incredulous 0 005 ^ 02463154 a 0000 ^ 00645493 a 0000 + 05698982 n 0101 ! 00646413 a 0101 & 00647247 a 0000 | not disposed or willing to believe; unbelieving -00647247 00 s 04 disbelieving 0 skeptical 0 sceptical 0 unbelieving 0 006 & 00647070 a 0000 + 05980051 n 0303 + 10604634 n 0302 + 10604634 n 0201 + 05980051 n 0202 + 05698982 n 0203 | denying or questioning the tenets of especially a religion; "a skeptical approach to the nature of miracles" -00647542 00 a 01 critical 1 011 ^ 02079029 a 0000 ^ 00996448 a 0000 + 09979072 n 0101 + 06710546 n 0101 ! 00648816 a 0101 & 00647867 a 0000 & 00648089 a 0000 & 00648238 a 0000 & 00648345 a 0000 & 00648543 a 0000 & 00648614 a 0000 | marked by a tendency to find and call attention to errors and flaws; "a critical attitude" -00647867 00 s 02 captious 0 faultfinding 0 003 & 00647542 a 0000 + 06711030 n 0201 + 07209691 n 0101 | tending to find and call attention to faults; "a captious pedant"; "an excessively demanding and faultfinding tutor" -00648089 00 s 01 censorious 0 002 & 00647542 a 0000 + 09903936 n 0101 | harshly critical or expressing censure; "was censorious of petty failings" -00648238 00 s 01 deprecative 0 002 & 00647542 a 0000 + 00856429 v 0101 | given to expressing disapproval -00648345 00 s 02 hypercritical 0 overcritical 0 001 & 00647542 a 0000 | inclined to judge too severely; "hypercritical of colloquial speech"; "the overcritical teacher can discourage originality" -00648543 00 s 01 searing 0 001 & 00647542 a 0000 | severely critical -00648614 00 s 02 scathing 0 vituperative 0 002 & 00647542 a 0000 + 00847870 v 0203 | marked by harshly abusive criticism; "his scathing remarks about silly lady novelists"; "her vituperative railing" -00648816 00 a 01 uncritical 1 001 ! 00647542 a 0101 | not critical; not tending to find or call attention to errors; "a devoted and almost uncritical admirer" -00648977 00 a 01 judgmental 0 006 + 05837957 n 0101 + 05789432 n 0101 + 04892084 n 0101 + 00874067 n 0101 ! 00649405 a 0101 & 00649228 a 0000 | depending on judgment; "a judgmental error"; "I think that she is too judgmental to be a good therapist" -00649228 00 s 01 faultfinding(a) 0 001 & 00648977 a 0000 | tending to make moral judgments or judgments based on personal opinions; "a counselor tries not to be faultfinding" -00649405 00 a 01 nonjudgmental 0 001 ! 00648977 a 0101 | refraining from making judgments especially ones based on personal opinions or standards; "sympathetic and nonjudgmental" -00649586 00 a 01 critical 2 007 ^ 00771373 a 0000 ^ 02083615 a 0000 + 09979321 n 0101 + 05734018 n 0101 ! 00650351 a 0101 & 00649892 a 0000 & 00650135 a 0000 | characterized by careful evaluation and judgment; "a critical reading"; "a critical dissertation"; "a critical analysis of Melville's writings" -00649892 00 s 02 appraising(a) 0 evaluative 0 003 & 00649586 a 0000 + 00670261 v 0201 + 00681429 v 0202 | exercising or involving careful evaluations; "looked him over with an appraising eye"; "the literary judge uses many evaluative terms" -00650135 00 s 02 discriminative 0 judicial 0 002 & 00649586 a 0000 + 10066732 n 0202 | expressing careful judgment; "discriminative censure"; "a biography ...appreciative and yet judicial in purpose"-Tyler Dennett -00650351 00 a 02 uncritical 2 noncritical 4 002 ^ 02084538 a 0000 ! 00649586 a 0101 | marked by disregard for critical standards or procedures; "news sources reflected uncritical estimates of the number of juvenile addicts" -00650577 00 a 01 critical 3 008 ^ 00655779 a 0000 = 13933560 n 0000 + 14451672 n 0102 + 14451672 n 0101 ! 00651697 a 0101 & 00650900 a 0000 & 00651039 a 0000 & 00651451 a 0000 | being in or verging on a state of crisis or emergency; "a critical shortage of food"; "a critical illness"; "an illness at the critical stage" -00650900 00 s 01 acute 0 001 & 00650577 a 0000 | of critical importance and consequence; "an acute (or critical) lack of research funds" -00651039 00 s 06 dangerous 0 grave 0 grievous 0 serious 0 severe 0 life-threatening 0 004 & 00650577 a 0000 + 05036715 n 0503 + 05037197 n 0401 + 04856460 n 0101 | causing fear or anxiety by threatening great harm; "a dangerous operation"; "a grave situation"; "a grave illness"; "grievous bodily harm"; "a serious wound"; "a serious turn of events"; "a severe case of pneumonia"; "a life-threatening disease" -00651451 00 s 02 desperate 0 dire 0 001 & 00650577 a 0000 | fraught with extreme danger; nearly hopeless; "a desperate illness"; "on all fronts the Allies were in a desperate situation due to lack of materiel"- G.C.Marshall; "a dire emergency" -00651697 00 a 02 noncritical 1 noncrucial 4 003 = 13933560 n 0000 ! 00650577 a 0101 & 00651841 a 0000 | not in a state of crisis or emergency -00651841 00 s 01 acritical 0 001 & 00651697 a 0000 | without a crisis (as of some diseases) -00651935 00 a 01 critical 4 006 = 14033587 n 0000 ;c 06084469 n 0000 ;c 06090869 n 0000 + 14033587 n 0101 ! 00652533 a 0101 & 00652351 a 0000 | at or of a point at which a property or phenomenon suffers an abrupt change especially having enough mass to sustain a chain reaction; "a critical temperature of water is 100 degrees C--its boiling point at standard atmospheric pressure"; "critical mass"; "go critical" -00652351 00 s 01 supercritical 0 001 & 00651935 a 0000 | (especially of fissionable material) able to sustain a chain reaction in such a manner that the rate of reaction increases -00652533 00 a 01 noncritical 2 004 = 14033587 n 0000 ;c 06084469 n 0000 ;c 06090869 n 0000 ! 00651935 a 0101 | not critical; not at a point of abrupt change -00652692 00 a 01 crossed 1 003 ! 00653190 a 0101 & 00652893 a 0000 & 00653044 a 0000 | placed crosswise; "spoken with a straight face but crossed fingers"; "crossed forks"; "seated with arms across" -00652893 00 s 02 crosstown 0 cross-town 0 001 & 00652692 a 0000 | going or extending across a town or city; "the crosstown bus"; "crosstown traffic" -00653044 00 s 03 decussate 0 intersectant 0 intersecting 0 002 & 00652692 a 0000 + 02023396 v 0201 | crossed or intersected in the form of an X -00653190 00 a 01 uncrossed 1 001 ! 00652692 a 0101 | not crossed; "sitting primly with uncrossed legs" -00653295 00 a 01 crossed 2 001 ! 00653434 a 0101 | (of a check) marked for deposit only as indicated by having two lines drawn across it -00653434 00 a 01 uncrossed 2 001 ! 00653295 a 0101 | (of a check) not crossed -00653514 00 a 01 cross-eyed 0 002 ! 00653740 a 0101 & 00653617 a 0000 | having convergent strabismus -00653617 00 s 01 boss-eyed 0 003 & 00653514 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) cross-eyed -00653740 00 a 01 walleyed 0 001 ! 00653514 a 0101 | having divergent strabismus -00653822 00 a 01 crowned 0 006 ! 00654829 a 0101 & 00654125 a 0000 & 00654315 a 0000 & 00654394 a 0000 & 00654596 a 0000 & 00654685 a 0000 | provided with or as if with a crown or a crown as specified; often used in combination; "a high-crowned hat"; "an orange-crowned bird"; "a crowned signet ring" -00654125 00 s 01 capped 0 001 & 00653822 a 0000 | covered as if with a cap or crown especially of a specified kind; "cloud-capped mountains"; "brown-capped mushrooms"; "snow-capped peaks" -00654315 00 s 01 chapleted 0 001 & 00653822 a 0000 | provided with a chaplet -00654394 00 s 02 comate 0 comose 0 002 & 00653822 a 0000 ;c 06066555 n 0000 | bearing a coma; crowned with an assemblage of branches or leaves or bracts; "comate royal palms"; "pineapples are comate" -00654596 00 s 01 high-crowned 0 001 & 00653822 a 0000 | (of a hat) having a high crown -00654685 00 s 01 royal 0 001 & 00653822 a 0000 | invested with royal power as symbolized by a crown; "the royal (or crowned) heads of Europe" -00654829 00 a 02 uncrowned 0 crownless 0 002 ! 00653822 a 0101 & 00654983 a 0000 | not (especially not yet) provided with a crown; "the uncrowned king" -00654983 00 s 01 quasi-royal 0 001 & 00654829 a 0000 | having the power but not the rank or title of a king; "one of the quasi-royal rulers of Africa" -00655136 00 a 01 crowned 2 003 ;c 06047430 n 0000 ! 00655445 a 0101 & 00655292 a 0000 | having an (artificial) crown on a tooth; "had many crowned teeth" -00655292 00 s 01 capped 0 001 & 00655136 a 0000 | used especially of front teeth having (artificial) crowns; "capped teeth gave her a beautiful smile" -00655445 00 a 01 uncrowned 2 003 ;c 06047430 n 0000 ! 00655136 a 0101 & 00655668 a 0000 | not having an (artificial) crown on a tooth; used especially of molars and bicuspids; "uncrowned teeth badly in need of attention" -00655668 00 s 01 uncapped 0 001 & 00655445 a 0000 | used especially of front teeth; "natural uncapped teeth" -00655779 00 a 02 crucial 0 important 2 009 ^ 00650577 a 0000 ^ 00684480 a 0000 ^ 00900616 a 0000 + 05168261 n 0201 + 14451672 n 0103 ! 00656771 a 0101 & 00656132 a 0000 & 00656384 a 0000 & 00656507 a 0000 | of extreme importance; vital to the resolution of a crisis; "a crucial moment in his career"; "a crucial election"; "a crucial issue for women" -00656132 00 s 02 critical 0 decisive 0 005 & 00655779 a 0000 + 04754440 n 0203 + 13933560 n 0101 + 07417644 n 0101 + 14451672 n 0102 | forming or having the nature of a turning point or crisis; "a critical point in the campaign"; "the critical test" -00656384 00 s 02 life-and-death 0 life-or-death 0 001 & 00655779 a 0000 | vitally important; "a life-and-death struggle" -00656507 00 s 02 pivotal 0 polar 0 002 & 00655779 a 0000 + 10436707 n 0101 | being of crucial importance; "a pivotal event"; "Its pivotal location has also exposed it to periodic invasions"- Henry Kissinger; "the polar events of this study"; "a polar principal" -00656771 00 a 01 noncrucial 0 001 ! 00655779 a 0101 | of little importance; not decisive -00656862 00 a 02 crystallized 0 crystallised 0 001 ! 00657064 a 0101 | having become fixed and definite in form; "distinguish between crystallized and uncrystallized opinion"- Psychological Abstracts -00657064 00 a 02 uncrystallized 0 uncrystallised 0 001 ! 00656862 a 0101 | not finally or definitely formed; "uncrystallized ideas" -00657198 00 a 02 cubic 0 three-dimensional 2 011 = 05063729 n 0000 + 05063564 n 0201 + 05063729 n 0101 ! 00658259 a 0101 ! 00658942 a 0101 & 00657473 a 0000 & 00657600 a 0000 & 00657726 a 0000 & 00657804 a 0000 & 00658022 a 0000 & 00658166 a 0000 | having three dimensions -00657473 00 s 02 blockish 0 blocky 0 003 & 00657198 a 0000 + 13914608 n 0201 + 02852523 n 0201 | resembling a block in shape -00657600 00 s 03 boxlike 0 boxy 0 box-shaped 0 002 & 00657198 a 0000 + 02883344 n 0201 | resembling a box in rectangularity -00657726 00 s 01 brick-shaped 0 001 & 00657198 a 0000 | shaped like a brick -00657804 00 s 06 cubelike 0 cube-shaped 0 cubical 0 cubiform 0 cuboid 0 cuboidal 0 006 & 00657198 a 0000 + 13914608 n 0602 + 13916721 n 0601 + 13914608 n 0302 + 13916721 n 0301 + 03144592 n 0301 | shaped like a cube -00658022 00 s 01 isometric 0 002 & 00657198 a 0000 ;c 06098876 n 0000 | of a crystal system characterized by three equal axes at right angles -00658166 00 s 01 solid 0 001 & 00657198 a 0000 | having three dimensions; "a solid object" -00658259 00 a 02 linear 1 one-dimensional 0 006 ! 00658942 a 0101 ! 00657198 a 0101 & 00658513 a 0000 & 00658591 a 0000 & 00658680 a 0000 & 00658752 a 0000 | of or in or along or relating to a line; involving a single dimension; "a linear measurement" -00658513 00 s 01 collinear 0 001 & 00658259 a 0000 | lying on the same line -00658591 00 s 01 lineal 0 002 & 00658259 a 0000 + 08593262 n 0101 | arranged in a line -00658680 00 s 01 linelike 0 001 & 00658259 a 0000 | resembling a line -00658752 00 s 02 rectilinear 0 rectilineal 0 001 & 00658259 a 0000 | characterized by a straight line or lines; "rectilinear patterns in wallpaper"; "the rectilinear propagation of light" -00658942 00 a 02 planar 0 two-dimensional 2 009 + 05063349 n 0201 + 13861050 n 0101 ! 00657198 a 0101 ! 00658259 a 0101 & 00659181 a 0000 & 00659259 a 0000 & 00659421 a 0000 & 00659530 a 0000 & 00659617 a 0000 | involving two dimensions -00659181 00 s 01 coplanar 0 001 & 00658942 a 0000 | lying in the same plane -00659259 00 s 01 flat 0 002 & 00658942 a 0000 + 05063349 n 0102 | having a relatively broad surface in relation to depth or thickness; "flat computer monitors" -00659421 00 s 02 placoid 0 platelike 0 001 & 00658942 a 0000 | as the hard flattened scales of e.g. sharks -00659530 00 s 02 planate 0 flattened 0 001 & 00658942 a 0000 | having been flattened -00659617 00 s 01 tabular 0 002 & 00658942 a 0000 + 09351905 n 0102 | flat; like a table in form -00659715 00 a 02 unidimensional 0 one-dimensional 2 001 ! 00660019 a 0101 | relating to a single dimension or aspect; having no depth or scope; "a prose statement of fact is unidimensional, its value being measured wholly in terms of its truth"- Mary Sheehan; "a novel with one-dimensional characters" -00660019 00 a 01 multidimensional 0 005 ! 00659715 a 0101 & 00660313 a 0000 & 00660551 a 0000 & 00660809 a 0000 & 00661146 a 0000 | having or involving or marked by several dimensions or aspects; "multidimensional problems"; "a multidimensional proposition"; "a multidimensional personality" -00660313 00 s 01 dimensional 0 002 & 00660019 a 0000 + 05062993 n 0101 | having dimension--the quality or character or stature proper to a person; "never matures as a dimensional character; he is pasty, bland, faceless"- Norman Cousins -00660551 00 s 03 two-dimensional 0 2-dimensional 0 flat 0 002 & 00660019 a 0000 + 07069747 n 0301 | lacking the expected range or depth; not designed to give an illusion or depth; "a film with two-dimensional characters"; "a flat two-dimensional painting" -00660809 00 s 04 three-dimensional 0 3-dimensional 0 third-dimensional 0 three-d 0 001 & 00660019 a 0000 | involving or relating to three dimensions or aspects; giving the illusion of depth; "lifelike three-dimensional characters"; "a three-dimensional account of conditions under the new government"; "they shot the movie in three-D" -00661146 00 s 02 four-dimensional 0 4-dimensional 0 001 & 00660019 a 0000 | involving or relating to the fourth dimension or time -00661278 00 a 01 cut 1 008 ! 00662687 a 0101 & 00661640 a 0000 & 00661819 a 0000 & 00661887 a 0000 & 00661973 a 0000 & 00662139 a 0000 & 00662318 a 0000 & 00662529 a 0000 | separated into parts or laid open or penetrated with a sharp edge or instrument; "the cut surface was mottled"; "cut tobacco"; "blood from his cut forehead"; "bandages on her cut wrists" -00661640 00 s 03 chopped 0 shredded 0 sliced 0 001 & 00661278 a 0000 | prepared by cutting; "sliced tomatoes"; "sliced ham"; "chopped clams"; "chopped meat"; "shredded cabbage" -00661819 00 s 01 cut_up 0 001 & 00661278 a 0000 | cut into pieces -00661887 00 s 01 incised 0 001 & 00661278 a 0000 | cut into with a sharp instrument -00661973 00 s 01 perforated 0 001 & 00661278 a 0000 | having a number or series of holes; "a perforated steel plate"; "perforated cancellation"; "perforated stamp" -00662139 00 s 04 pierced 0 perforated 2 perforate 0 punctured 0 001 & 00661278 a 0000 | having a hole cut through; "pierced ears"; "a perforated eardrum"; "a punctured balloon" -00662318 00 s 02 severed 0 cut_off 0 001 & 00661278 a 0000 | detached by cutting; "cut flowers"; "a severed head"; "an old tale of Anne Bolyn walking the castle walls with her poor cut-off head under her arm" -00662529 00 s 01 split 0 001 & 00661278 a 0000 | (especially of wood) cut or ripped longitudinally with the grain; "we bought split logs for the fireplace" -00662687 00 a 01 uncut 1 003 ! 00661278 a 0101 & 00662782 a 0000 & 00662873 a 0000 | not cut -00662782 00 s 01 imperforate 0 001 & 00662687 a 0000 | not perforated; having no opening -00662873 00 s 01 unpierced 0 001 & 00662687 a 0000 | not pierced; "unpierced ears" -00662958 00 a 01 cut 2 001 ! 00663104 a 0101 | (of pages of a book) having the folds of the leaves trimmed or slit; "the cut pages of the book" -00663104 00 a 01 uncut 2 001 ! 00662958 a 0101 | (of pages of a book) having adjacent leaves still joined at the fore edge; "a book with its leaves still uncut" -00663267 00 a 01 cut 3 005 ! 00664167 a 0101 & 00663468 a 0000 & 00663576 a 0000 & 00663807 a 0000 & 00663981 a 0000 | fashioned or shaped by cutting; "a well-cut suit"; "cut diamonds"; "cut velvet" -00663468 00 s 01 cut_out 0 001 & 00663267 a 0000 | having been cut out; "the cut-out pieces of the dress" -00663576 00 s 02 hewn 0 hand-hewn 0 001 & 00663267 a 0000 | cut or shaped with hard blows of a heavy cutting instrument like an ax or chisel; "a house built of hewn logs"; "rough-hewn stone"; "a path hewn through the underbrush" -00663807 00 s 01 sheared 0 001 & 00663267 a 0000 | (used especially of fur or wool) shaped or finished by cutting or trimming to a uniform length; "a coat of sheared lamb" -00663981 00 s 01 slashed 0 001 & 00663267 a 0000 | having long and narrow ornamental cuts showing an underlying fabric; "a slashed doublet"; "slashed cuffs showing the scarlet lining" -00664167 00 a 02 uncut 3 rough 5 002 ! 00663267 a 0101 & 00664317 a 0000 | not shaped by cutting or trimming; "an uncut diamond"; "rough gemstones" -00664317 00 s 01 unsheared 0 001 & 00664167 a 0000 | (used especially of fur or wool) not having been sheared; "unsheared beaver" -00664449 00 a 01 curious 0 007 ^ 00878829 a 0000 + 05683197 n 0101 + 05682570 n 0101 ! 00665587 a 0101 & 00664879 a 0000 & 00665156 a 0000 & 00665502 a 0000 | eager to investigate and learn or learn more (sometimes about others' concerns); "a curious child is a teacher's delight"; "a trap door that made me curious"; "curious investigators"; "traffic was slowed by curious rubberneckers"; "curious about the neighbor's doings" -00664879 00 s 04 inquisitive 0 speculative 0 questioning 0 wondering(a) 0 004 & 00664449 a 0000 + 00630380 v 020c + 05683197 n 0102 + 00729378 v 0102 | showing curiosity; "if someone saw a man climbing a light post they might get inquisitive"; "raised a speculative eyebrow" -00665156 00 s 04 nosy 0 nosey 0 prying 0 snoopy 0 006 & 00664449 a 0000 + 10617193 n 0401 + 05683390 n 0403 + 06807056 n 0201 + 06807056 n 0101 + 05683390 n 0101 | offensively curious or inquisitive; "curious about the neighbor's doings"; "he flipped through my letters in his nosy way"; "prying eyes"; "the snoopy neighbor watched us all day" -00665502 00 s 01 overcurious 0 001 & 00664449 a 0000 | showing excessive curiosity -00665587 00 a 01 incurious 0 003 ! 00664449 a 0101 & 00665829 a 0000 & 00665962 a 0000 | showing absence of intellectual inquisitiveness or natural curiosity; "strangely incurious about the cause of the political upheaval surrounding them" -00665829 00 s 01 uninterested 0 001 & 00665587 a 0000 | having no care or interest in knowing; "she appeared totally uninterested" -00665962 00 s 02 uninquiring 0 uninquisitive 0 001 & 00665587 a 0000 | deficient in curiosity -00666058 00 a 01 current 0 019 ^ 01535709 a 0000 ^ 01640850 a 0000 = 05050379 n 0000 + 05050379 n 0102 + 05050379 n 0101 ! 00668571 a 0101 & 00666610 a 0000 & 00666784 a 0000 & 00666960 a 0000 & 00667079 a 0000 & 00667208 a 0000 & 00667353 a 0000 & 00667463 a 0000 & 00667641 a 0000 & 00667822 a 0000 & 00667936 a 0000 & 00668053 a 0000 & 00668208 a 0000 & 00668366 a 0000 | occurring in or belonging to the present time; "current events"; "the current topic"; "current negotiations"; "current psychoanalytic theories"; "the ship's current position" -00666610 00 s 01 actual 0 002 & 00666058 a 0000 + 13954818 n 0101 | being or existing at the present moment; "the ship's actual position is 22 miles due south of Key West" -00666784 00 s 02 afoot(p) 0 underway 0 001 & 00666058 a 0000 | currently in progress; "there is mischief afoot"; "plans are afoot"; "preparations for the trial are underway" -00666960 00 s 01 circulating(a) 0 001 & 00666058 a 0000 | passing from one to another; "circulating bills and coins" -00667079 00 s 02 contemporary 0 present-day(a) 0 001 & 00666058 a 0000 | belonging to the present time; "contemporary leaders" -00667208 00 s 01 incumbent 0 003 & 00666058 a 0000 + 15291498 n 0103 + 00593512 n 0101 | currently holding an office; "the incumbent governor" -00667353 00 s 01 live 0 001 & 00666058 a 0000 | of current relevance; "a live issue"; "still a live option" -00667463 00 s 01 live 2 002 & 00666058 a 0000 ;c 06677302 n 0000 | in current use or ready for use; "live copy is ready to be set in type or already set but not yet proofread" -00667641 00 s 01 occurrent 0 002 & 00666058 a 0000 + 07283608 n 0102 | presently occurring (either causally or incidentally); "technical terms are rarely occurrent in literature" -00667822 00 s 02 ongoing 0 on-going 0 001 & 00666058 a 0000 | currently happening; "an ongoing economic crisis" -00667936 00 s 02 on-line(a) 0 online 0 001 & 00666058 a 0000 | being in progress now; "on-line editorial projects" -00668053 00 s 01 topical 0 001 & 00666058 a 0000 | of interest at the present time; "a topical reference"; "a topical and timely study of civil liberty" -00668208 00 s 01 up-to-date 0 002 & 00666058 a 0000 + 05050379 n 0103 | reflecting the latest information or changes; "an up-to-date issue of the magazine" -00668366 00 s 02 up-to-the-minute 0 latest 0 001 & 00666058 a 0000 | up to the immediate present; most recent or most up-to-date; "the news is up-to-the-minute"; "the very latest scientific discoveries" -00668571 00 a 01 noncurrent 0 009 ^ 01638438 a 0000 ^ 01727926 a 0000 = 05050379 n 0000 ! 00666058 a 0101 & 00668816 a 0000 & 00668919 a 0000 & 00669021 a 0000 & 00669138 a 0000 & 00669367 a 0000 | not current or belonging to the present time -00668816 00 s 01 back(a) 0 001 & 00668571 a 0000 | of an earlier date; "back issues of the magazine" -00668919 00 s 01 dead 0 001 & 00668571 a 0000 | no longer having force or relevance; "a dead issue" -00669021 00 s 02 disused 0 obsolete 1 002 & 00668571 a 0000 + 04925577 n 0201 | no longer in use; "obsolete words" -00669138 00 s 03 outdated 0 out-of-date 0 superannuated 0 001 & 00668571 a 0000 | old; no longer valid or fashionable; "obsolete words"; "an obsolete locomotive"; "outdated equipment"; "superannuated laws"; "out-of-date ideas" -00669367 00 s 01 obsolescent 0 003 & 00668571 a 0000 + 13523983 n 0101 + 00567775 v 0101 | becoming obsolete -00669478 00 a 02 cursed 0 curst 0 006 ! 00670741 a 0101 & 00669853 a 0000 & 00669942 a 0000 & 00670418 a 0000 & 00670530 a 0000 & 00670635 a 0000 | deserving a curse; sometimes used as an intensifier; "villagers shun the area believing it to be cursed"; "cursed with four daughter"; "not a cursed drop"; "his cursed stupidity"; "I'll be cursed if I can see your reasoning" -00669853 00 s 03 accursed 0 accurst 0 maledict 0 001 & 00669478 a 0000 | under a curse -00669942 00 s 0c blasted 0 blame 0 blamed 0 blessed 1 damn 2 damned 0 darned 2 deuced 0 goddam 0 goddamn 2 goddamned 2 infernal 0 002 & 00669478 a 0000 + 07945490 n 0601 | expletives used informally as intensifiers; "he's a blasted idiot"; "it's a blamed shame"; "a blame cold winter"; "not a blessed dime"; "I'll be damned (or blessed or darned or goddamned) if I'll do any such thing"; "he's a damn (or goddam or goddamned) fool"; "a deuced idiot"; "an infernal nuisance" -00670418 00 s 02 cursed_with(p) 0 stuck_with(p) 0 001 & 00669478 a 0000 | burdened with; "stuck with the tab" -00670530 00 s 02 damn 0 goddamn 0 001 & 00669478 a 0000 | used as expletives; "oh, damn (or goddamn)!" -00670635 00 s 02 damnable 0 execrable 0 001 & 00669478 a 0000 | deserving a curse; "her damnable pride" -00670741 00 a 02 blessed 0 blest 0 002 ! 00669478 a 0101 & 00670938 a 0000 | highly favored or fortunate (as e.g. by divine grace); "our blessed land"; "the blessed assurance of a steady income" -00670938 00 s 02 fortunate 0 golden 0 001 & 00670741 a 0000 | supremely favored; "golden lads and girls all must / like chimney sweepers come to dust" -00671091 00 a 01 endowed 0 002 ! 00671441 a 0101 & 00671357 a 0000 | provided or supplied or equipped with (especially as by inheritance or nature); "a well-endowed college"; "endowed with good eyesight"; "endowed by their Creator with certain unalienable rights" -00671357 00 s 01 dowered 0 001 & 00671091 a 0000 | supplied with a dower or dowry -00671441 00 a 01 unendowed 0 003 ! 00671091 a 0101 & 00671593 a 0000 & 00671683 a 0000 | not equipped or provided; "unendowed with genius"- J.L.Lowes -00671593 00 s 01 dowerless 0 002 & 00671441 a 0000 ;u 07073447 n 0000 | lacking a dowry -00671683 00 s 01 unblessed 0 001 & 00671441 a 0000 | not provided with something desirable; "a hovel unblessed with electricity or running water" -00671831 00 a 01 curtained 0 002 ! 00672079 a 0101 & 00671976 a 0000 | furnished or concealed with curtains or draperies; "a curtained alcove" -00671976 00 s 01 draped 0 001 & 00671831 a 0000 | covered in folds of cloth; "velvet-draped windows" -00672079 00 a 02 curtainless 0 uncurtained 0 001 ! 00671831 a 0101 | not provided with curtains; "blank, curtainless windows stared back at her" -00672226 00 a 02 custom-made 0 custom 0 003 ! 00672621 a 0101 & 00672382 a 0000 & 00672513 a 0000 | made according to the specifications of an individual -00672382 00 s 05 bespoke 0 bespoken 0 made-to-order 1 tailored 0 tailor-made 0 001 & 00672226 a 0000 | (of clothing) custom-made -00672513 00 s 02 custom-built 0 made-to-order 2 001 & 00672226 a 0000 | built for a particular individual -00672621 00 a 01 ready-made 0 005 ! 00672226 a 0101 & 00672785 a 0000 & 00672932 a 0000 & 00673172 a 0000 & 00673330 a 0000 | made for purchase and immediate use -00672785 00 s 01 made 0 001 & 00672621 a 0000 | produced by a manufacturing process; "bought some made goods at the local store; rope and nails" -00672932 00 s 04 off-the-rack 0 off-the-shelf 0 off-the-peg 0 ready-to-wear 0 001 & 00672621 a 0000 | (especially of clothing) made in standard sizes and available from merchandise in stock; "a ready-made jacket"; "ready-to-wear clothes" -00673172 00 s 01 prefab 0 002 & 00672621 a 0000 + 03999064 n 0101 | manufactured in standard sizes to be shipped and assembled elsewhere; "a pre structure" -00673330 00 s 01 ready-to-eat 0 001 & 00672621 a 0000 | food products that are prepared in advance and can be eaten as sold -00673456 00 a 02 handmade 0 hand-crafted 0 005 ! 00674196 a 0101 & 00673662 a 0000 & 00673807 a 0000 & 00673919 a 0000 & 00674021 a 0000 | made by hand or a hand process; "delicate handmade baby dresses" -00673662 00 s 01 camp-made 0 001 & 00673456 a 0000 | made as part of the arts-and-crafts program at summer camp; "my camp-made leather wallet" -00673807 00 s 02 hand-loomed 0 handwoven 0 001 & 00673456 a 0000 | made on a handloom; "handwoven tablecloth" -00673919 00 s 02 handsewn 0 handstitched 0 001 & 00673456 a 0000 | sewn by hand rather than machine -00674021 00 s 02 overhand 0 oversewn 0 001 & 00673456 a 0000 | sewn together with overhand stitches (close vertical stitches that pass over and draw the two edges together) -00674196 00 a 01 machine-made 0 001 ! 00673456 a 0101 | made by machine -00674270 00 a 01 homemade 0 006 ! 00675064 a 0101 & 00674476 a 0000 & 00674633 a 0000 & 00674732 a 0000 & 00674824 a 0000 & 00674913 a 0000 | made or produced in the home or by yourself; "homemade bread" -00674476 00 s 01 do-it-yourself 0 001 & 00674270 a 0000 | done by yourself; "their house was a do-it-yourself project"; "he opened a do-it-yourself store" -00674633 00 s 01 home-baked 0 001 & 00674270 a 0000 | baked at home; "home-baked cakes and pies" -00674732 00 s 01 home-brewed 0 001 & 00674270 a 0000 | brewed at home; "home-brewed beer" -00674824 00 s 01 home-cured 0 001 & 00674270 a 0000 | cured at home; "home-cured hams" -00674913 00 s 01 homespun 0 002 & 00674270 a 0000 + 03529444 n 0101 | made of cloth spun or woven in the home; "homespun linen"; "homespun garments" -00675064 00 a 01 factory-made 0 005 ! 00674270 a 0101 & 00675228 a 0000 & 00675368 a 0000 & 00675473 a 0000 & 00675587 a 0000 | produced in quantity at a factory -00675228 00 s 02 boughten 0 store-bought 0 001 & 00675064 a 0000 | purchased; not homemade; "my boughten clothes"; "a store-bought dress" -00675368 00 s 01 manufactured 0 001 & 00675064 a 0000 | produced in a large-scale industrial operation -00675473 00 s 01 mass-produced 0 001 & 00675064 a 0000 | produced in quantity often by assembly-line techniques -00675587 00 s 01 ready-made 0 001 & 00675064 a 0000 | commercially produced; not homemade; "ready-made clothes" -00675701 00 a 02 cyclic 1 cyclical 0 009 = 04767805 n 0000 + 07342495 n 0201 + 15287830 n 0101 + 07342495 n 0101 + 04767805 n 0101 ! 00676457 a 0101 & 00675928 a 0000 & 00676093 a 0000 & 00676271 a 0000 | recurring in cycles -00675928 00 s 02 alternate(a) 1 alternating(a) 1 001 & 00675701 a 0000 | occurring by turns; first one and then the other; "alternating feelings of love and hate" -00676093 00 s 01 alternate(a) 2 001 & 00675701 a 0000 | every second one of a series; "the cleaning lady comes on alternate Wednesdays"; "jam every other day"- the White Queen -00676271 00 s 03 circular 0 rotary 0 orbitual 0 003 & 00675701 a 0000 + 03032811 n 0101 + 00295172 n 0102 | describing a circle; moving in a circle; "the circular motion of the wheel" -00676457 00 a 02 noncyclic 0 noncyclical 0 002 = 04767805 n 0000 ! 00675701 a 0101 | not cyclic -00676555 00 a 01 cyclic 2 006 ;c 06084469 n 0000 ! 00677313 a 0101 & 00676754 a 0000 & 00676855 a 0000 & 00676999 a 0000 & 00677170 a 0000 | of a compound having atoms arranged in a ring structure -00676754 00 s 01 bicyclic 0 001 & 00676555 a 0000 | having molecules consisting of two fused rings -00676855 00 s 02 closed-chain 0 closed-ring 0 001 & 00676555 a 0000 | having atoms linked by bonds represented in circular or triangular form -00676999 00 s 01 heterocyclic 0 003 & 00676555 a 0000 + 15025397 n 0103 + 09302400 n 0102 | containing a closed ring of atoms of which at least one is not a carbon atom -00677170 00 s 02 homocyclic 0 isocyclic 0 001 & 00676555 a 0000 | containing a closed ring of atoms of the same kind especially carbon atoms -00677313 00 a 02 acyclic 2 open-chain 0 003 ;c 06084469 n 0000 ! 00676555 a 0101 & 00677448 a 0000 | having an open chain structure -00677448 00 s 01 aliphatic 0 001 & 00677313 a 0000 | having carbon atoms linked in open chains -00677545 00 a 01 cyclic 3 003 ;c 06066555 n 0000 ! 00677877 a 0101 & 00677721 a 0000 | forming a whorl or having parts arranged in a whorl; "cyclic petals"; "cyclic flowers" -00677721 00 s 03 verticillate 0 verticillated 0 whorled 0 001 & 00677545 a 0000 | forming one or more whorls (especially a whorl of leaves around a stem) -00677877 00 a 01 acyclic 1 002 ;c 06066555 n 0000 ! 00677545 a 0101 | not cyclic; especially having parts arranged in spirals rather than whorls -00678024 00 a 02 annual 0 one-year 4 004 ;c 06066555 n 0000 + 11552806 n 0101 ! 00678221 a 0101 ! 00678473 a 0101 | completing its life cycle within a year; "a border of annual flowering plants" -00678221 00 a 02 biennial 0 two-year 4 004 ;c 06066555 n 0000 + 11552976 n 0101 ! 00678473 a 0101 ! 00678024 a 0101 | having a life cycle lasting two seasons; "a biennial life cycle"; "parsnips and carrots are biennial plants often grown as annuals" -00678473 00 a 01 perennial 0 004 ;c 06066555 n 0000 + 11553240 n 0101 ! 00678024 a 0101 ! 00678221 a 0101 | lasting three seasons or more; "the common buttercup is a popular perennial plant" -00678666 00 a 01 diurnal 0 002 ;c 06037666 n 0000 ! 00678923 a 0101 | of or belonging to or active during the day; "diurnal animals are active during the day"; "diurnal flowers are open during the day and closed at night"; "diurnal and nocturnal offices" -00678923 00 a 01 nocturnal 0 002 ;c 06037666 n 0000 ! 00678666 a 0101 | belonging to or active during the night; "nocturnal animals are active at night"; "nocturnal plants have flowers that open at night and close by day" -00679147 00 a 01 damaged 0 015 ^ 00245952 a 0000 ^ 00289082 a 0000 ^ 00734318 a 0000 ^ 01274261 a 0000 ^ 01317954 a 0000 ! 00681094 a 0101 & 00679562 a 0000 & 00679717 a 0000 & 00680005 a 0000 & 00680156 a 0000 & 00680395 a 0000 & 00680532 a 0000 & 00680634 a 0000 & 00680791 a 0000 & 00681019 a 0000 | harmed or injured or spoiled; "I won't buy damaged goods"; "the storm left a wake of badly damaged buildings" -00679562 00 s 03 battered 0 beat-up 0 beaten-up 0 001 & 00679147 a 0000 | damaged by blows or hard usage; "a battered old car"; "the beaten-up old Ford" -00679717 00 s 07 bedraggled 0 broken-down 0 derelict 0 dilapidated 0 ramshackle 0 tatterdemalion 1 tumble-down 0 002 & 00679147 a 0000 + 10504664 n 0602 | in deplorable condition; "a street of bedraggled tenements"; "a broken-down fence"; "a ramshackle old pier"; "a tumble-down shack" -00680005 00 s 03 bent 0 crumpled 0 dented 0 001 & 00679147 a 0000 | of metal e.g.; "bent nails"; "a car with a crumpled front end"; "dented fenders" -00680156 00 s 02 broken 0 busted 0 002 & 00679147 a 0000 ;u 07075172 n 0000 | out of working order (`busted' is an informal substitute for `broken'); "a broken washing machine"; "the coke machine is broken"; "the coke machine is busted" -00680395 00 s 01 broken-backed 0 001 & 00679147 a 0000 | having the spine damaged; "a broken-backed book"; "a broken-backed old horse" -00680532 00 s 02 hurt 0 weakened 0 001 & 00679147 a 0000 | damaged inanimate objects or their value -00680634 00 s 01 knocked-out(a) 0 002 & 00679147 a 0000 ;u 07075172 n 0000 | damaged; "the gym has some of the most knocked-out equipment since Vic Tanny" -00680791 00 s 01 riddled 0 001 & 00679147 a 0000 | (often followed by `with') damaged throughout by numerous perforations or holes; "a sweater riddled with moth holes"; "cliffs riddled with caves"; "the bullet-riddled target" -00681019 00 s 01 storm-beaten 0 001 & 00679147 a 0000 | damaged by storm -00681094 00 a 01 undamaged 0 006 ^ 00247013 a 0000 ^ 00289365 a 0000 ^ 01275395 a 0000 ^ 01319182 a 0000 ! 00679147 a 0101 & 00681268 a 0000 | not harmed or spoiled; sound -00681268 00 s 01 intact 0 002 & 00681094 a 0000 + 14460407 n 0101 | undamaged in any way; "the vase remained intact despit rough handling" -00681409 00 a 02 datable 0 dateable 0 001 ! 00681548 a 0101 | that can be given a date; "a concrete and datable happening"- C.W.Shumaker -00681548 00 a 01 undatable 0 003 ! 00681409 a 0101 & 00681673 a 0000 & 00681777 a 0000 | not capable of being given a date -00681673 00 s 02 dateless 1 undated 0 001 & 00681548 a 0000 | not bearing a date; "a dateless letter" -00681777 00 s 01 dateless 2 001 & 00681548 a 0000 | of such great duration as to preclude the possibility of being assigned a date; "dateless customs" -00681930 00 a 01 deaf 0 008 + 07945949 n 0101 + 14550987 n 0101 ! 00682744 a 0101 & 00682168 a 0000 & 00682329 a 0000 & 00682419 a 0000 & 00682521 a 0000 & 00682662 a 0000 | lacking or deprived of the sense of hearing wholly or in part -00682168 00 s 02 deaf-and-dumb 0 deaf-mute 0 003 & 00681930 a 0000 + 10342367 n 0202 + 14551822 n 0202 | lacking the sense of hearing and the ability to speak -00682329 00 s 01 deafened 0 001 & 00681930 a 0000 | caused to hear poorly or not at all -00682419 00 s 02 hard-of-hearing 0 hearing-impaired 0 001 & 00681930 a 0000 | having a hearing loss -00682521 00 s 04 profoundly_deaf 0 stone-deaf 0 deaf_as_a_post 0 unhearing 0 001 & 00681930 a 0000 | totally deaf; unable to hear anything -00682662 00 s 01 tone-deaf 0 001 & 00681930 a 0000 | unable to appreciate music -00682744 00 a 01 hearing(a) 0 002 ! 00681930 a 0101 & 00682841 a 0000 | able to perceive sound -00682841 00 s 02 sharp-eared 0 quick-eared 0 001 & 00682744 a 0000 | having keen hearing -00682932 00 a 01 decent 0 005 ^ 00424008 a 0000 ^ 00688947 a 0000 ^ 01878466 a 0000 + 04900739 n 0101 ! 00683185 a 0101 | conforming to conventions of sexual behavior; "speech in this circle, if not always decent, never became lewd"- George Santayana -00683185 00 a 01 indecent 0 011 ^ 00424370 a 0000 ^ 01880531 a 0000 ^ 00689471 a 0000 + 04902925 n 0101 + 00737536 n 0101 ! 00682932 a 0101 & 00683531 a 0000 & 00683910 a 0000 & 00684054 a 0000 & 00684163 a 0000 & 00684334 a 0000 | offensive to good taste especially in sexual matters; "an earthy but not indecent story"; "an indecent gesture" -00683531 00 s 04 crude 0 earthy 0 gross 0 vulgar 0 005 & 00683185 a 0000 + 04817280 n 0404 + 04817280 n 0303 + 04915121 n 0101 + 04915121 n 0102 | conspicuously and tastelessly indecent; "coarse language"; "a crude joke"; "crude behavior"; "an earthy sense of humor"; "a revoltingly gross expletive"; "a vulgar gesture"; "full of language so vulgar it should have been edited" -00683910 00 s 01 Hollywood 0 001 & 00683185 a 0000 | flashy and vulgar; "young white women dressed Hollywood style"; "Hollywood philandering" -00684054 00 s 01 indelicate 0 001 & 00683185 a 0000 | verging on the indecent; "an indelicate proposition" -00684163 00 s 01 obscene 0 002 & 00683185 a 0000 + 04903368 n 0101 | designed to incite to indecency or lust; "the dance often becomes flagrantly obscene"-Margaret Mead -00684334 00 s 01 suggestive 0 001 & 00683185 a 0000 | tending to suggest something improper or indecent; "a suggestive nod"; "suggestive poses" -00684480 00 a 01 decisive 0 008 ^ 00550282 a 0000 ^ 00655779 a 0000 + 00701877 v 0101 + 04754440 n 0103 ! 00685483 a 0101 & 00684782 a 0000 & 00685113 a 0000 & 00685365 a 0000 | determining or having the power to determine an outcome; "cast the decisive vote"; "two factors had a decisive influence" -00684782 00 s 04 deciding(a) 0 determinant 0 determinative 0 determining(a) 0 006 & 00684480 a 0000 + 05692419 n 0303 + 05692419 n 0201 + 00947077 v 0203 + 00697589 v 0203 + 05788149 n 0102 | having the power or quality of deciding; "the crucial experiment"; "cast the deciding vote"; "the determinative (or determinant) battle" -00685113 00 s 02 fateful 0 fatal 0 001 & 00684480 a 0000 | having momentous consequences; of decisive importance; "that fateful meeting of the U.N. when...it declared war on North Korea"- Saturday Rev; "the fatal day of the election finally arrived" -00685365 00 s 01 peremptory 0 001 & 00684480 a 0000 | putting an end to all debate or action; "a peremptory decree" -00685483 00 a 01 indecisive 0 003 ^ 00550777 a 0000 ^ 01992149 a 0000 ! 00684480 a 0101 | not definitely settling something; "a long and indecisive war" -00685638 00 a 01 decisive 1 006 ^ 01989669 a 0000 + 00698855 v 0101 + 00697589 v 0101 + 04863969 n 0101 ! 00686081 a 0101 & 00685924 a 0000 | characterized by decision and firmness; "an able and decisive young woman"; "we needed decisive leadership"; "she gave him a decisive answer" -00685924 00 s 02 unhesitating 0 resolute 0 002 & 00685638 a 0000 + 04861486 n 0201 | characterized by quickness and firmness; "his reply was unhesitating" -00686081 00 a 01 indecisive 1 007 ^ 01992149 a 0000 + 05699172 n 0102 + 04866866 n 0101 ! 00685638 a 0101 & 00686356 a 0000 & 00686573 a 0000 & 00686789 a 0000 | characterized by lack of decision and firmness; "an indecisive manager brought the enterprise to a standstill" -00686356 00 s 02 on_the_fence(p) 0 undecided 0 001 & 00686081 a 0000 | characterized by indecision; "some who had been on the fence came out in favor of the plan"; "too many voters still declare they are undecided" -00686573 00 s 02 hesitant 0 hesitating 0 005 & 00686081 a 0000 + 02640440 v 0101 + 07523485 n 0102 + 04645943 n 0102 + 07523485 n 0101 | lacking decisiveness of character; unable to act or decide quickly or firmly -00686789 00 s 01 suspensive 0 001 & 00686081 a 0000 | undecided or characterized by indecisiveness -00686890 00 a 03 declarative 0 declaratory 0 asserting(a) 0 008 + 00820801 v 0201 + 01010118 v 0201 ! 00687163 a 0202 + 00965871 v 0102 + 00822367 v 0101 + 00820801 v 0101 + 01010118 v 0101 ! 00687163 a 0101 | relating to the use of or having the nature of a declaration -00687163 00 a 02 interrogative 0 interrogatory 0 004 + 00788184 v 0201 ! 00686890 a 0202 + 00788184 v 0101 ! 00686890 a 0101 | relating to the use of or having the nature of an interrogation -00687356 00 a 01 declared 0 007 ! 00688581 a 0101 & 00687614 a 0000 & 00687750 a 0000 & 00687952 a 0000 & 00688074 a 0000 & 00688296 a 0000 & 00688413 a 0000 | made known or openly avowed; "their declared and their covert objectives"; "a declared liberal" -00687614 00 s 01 alleged 0 001 & 00687356 a 0000 | declared but not proved; "alleged abuses of housing benefits"- Wall Street Journal -00687750 00 s 02 announced 0 proclaimed 1 001 & 00687356 a 0000 | declared publicly; made widely known; "their announced intentions"; "the newspaper's proclaimed adherence to the government's policy" -00687952 00 s 01 asserted 1 001 & 00687356 a 0000 | confidently declared to be so; "the asserted value of the painting" -00688074 00 s 02 avowed(a) 0 professed(a) 0 001 & 00687356 a 0000 | openly declared as such; "an avowed enemy"; "her professed love of everything about that country"; "McKinley was assassinated by a professed anarchist" -00688296 00 s 01 professed(a) 1 001 & 00687356 a 0000 | claimed with intent to deceive; "his professed intentions" -00688413 00 s 01 self-proclaimed 0 001 & 00687356 a 0000 | proclaimed to be or described as such by oneself, without endorsement by others; "self-proclaimed experts" -00688581 00 a 01 undeclared 0 003 ! 00687356 a 0101 & 00688740 a 0000 & 00688855 a 0000 | not announced or openly acknowledged; "fighting an undeclared war" -00688740 00 s 01 unacknowledged 0 001 & 00688581 a 0000 | not openly acknowledged; "an unacknowledged emergency" -00688855 00 s 01 unavowed 0 001 & 00688581 a 0000 | not affirmed or mentioned or declared -00688947 00 a 01 decorous 0 006 ^ 01878466 a 0000 + 04898804 n 0101 + 04898804 n 0102 ! 00689471 a 0101 & 00689215 a 0000 & 00689336 a 0000 | characterized by propriety and dignity and good taste in manners and conduct; "the tete-a-tete was decorous in the extreme" -00689215 00 s 01 in_good_taste(p) 0 001 & 00688947 a 0000 | satisfying generally accepted social or esthetic standards -00689336 00 s 02 sedate 0 staid 0 003 & 00688947 a 0000 + 04647826 n 0202 + 04647826 n 0101 | characterized by dignity and propriety -00689471 00 a 02 indecorous 0 indelicate 2 004 ^ 01880531 a 0000 ^ 00683185 a 0000 + 04902470 n 0102 ! 00688947 a 0101 | lacking propriety and good taste in manners and conduct; "indecorous behavior" -00689673 00 a 01 deductible 0 006 ;c 13308999 n 0000 + 13273550 n 0101 + 06393424 n 0101 + 02215001 v 0102 ! 00689970 a 0101 & 00689878 a 0000 | acceptable as a deduction (especially as a tax deduction) -00689878 00 s 01 allowable 0 001 & 00689673 a 0000 | deductible according to the tax laws -00689970 00 a 01 nondeductible 0 001 ! 00689673 a 0101 | not allowable as a deduction -00690058 00 a 01 deep 1 009 ^ 00994882 a 0000 = 05134547 n 0000 + 05134880 n 0101 ! 00691696 a 0101 & 00690683 a 0000 & 00690892 a 0000 & 00691022 a 0000 & 00691141 a 0000 & 00691497 a 0000 | having great spatial extension or penetration downward or inward from an outer surface or backward or laterally or outward from a center; sometimes used in combination; "a deep well"; "a deep dive"; "deep water"; "a deep casserole"; "a deep gash"; "deep massage"; "deep pressure receptors in muscles"; "deep shelves"; "a deep closet"; "surrounded by a deep yard"; "hit the ball to deep center field"; "in deep space"; "waist-deep" -00690683 00 s 03 abysmal 0 abyssal 0 unfathomable 0 003 & 00690058 a 0000 + 09186359 n 0201 + 09186359 n 0102 | resembling an abyss in depth; so deep as to be unmeasurable; "the abyssal depths of the ocean" -00690892 00 s 01 bottomless 0 002 & 00690058 a 0000 + 05135582 n 0101 | extremely deep; "a bottomless pit"; "a bottomless lake" -00691022 00 s 01 deep-water 0 001 & 00690058 a 0000 | of or carried on in waters of great depth; "a deep-water port" -00691141 00 s 04 profound 0 unfathomed 0 unplumbed 0 unsounded 0 003 & 00690058 a 0000 + 05134880 n 0103 + 05134880 n 0102 | situated at or extending to great depth; too deep to have been sounded or plumbed; "the profound depths of the sea"; "the dark unfathomed caves of ocean"-Thomas Gray; "unplumbed depths of the sea"; "remote and unsounded caverns" -00691497 00 s 01 walk-in(a) 0 001 & 00690058 a 0000 | (of e.g. closets or refrigerators) extending very far enough back to allow a person to enter; "a deep walk-in refrigerator"; "walk-in closets" -00691696 00 a 01 shallow 1 008 = 05134547 n 0000 + 09433134 n 0102 + 05135725 n 0101 ! 00690058 a 0101 & 00692154 a 0000 & 00692255 a 0000 & 00692415 a 0000 & 00692548 a 0000 | lacking physical depth; having little spatial extension downward or inward from an outer surface or backward or outward from a center; "shallow water"; "a shallow dish"; "a shallow cut"; "a shallow closet"; "established a shallow beachhead"; "hit the ball to shallow left field" -00692154 00 s 02 ankle-deep 0 knee-deep 0 001 & 00691696 a 0000 | coming only to the ankle or knee -00692255 00 s 01 fordable 0 001 & 00691696 a 0000 | shallow enough to be crossed by walking or riding on an animal or in a vehicle; "the stream was fordable" -00692415 00 s 01 neritic 0 001 & 00691696 a 0000 | relating to the region of shallow water adjoining the seacoast; "neritic fauna" -00692548 00 s 04 reefy 0 shelfy 0 shelvy 0 shoaly 0 004 & 00691696 a 0000 + 09433312 n 0401 + 09337253 n 0202 + 09406793 n 0101 | full of submerged reefs or sandbanks or shoals; "reefy shallows"; "shoaly waters" -00692762 00 a 01 deep 2 004 = 05134547 n 0000 ! 00693356 a 0101 & 00693020 a 0000 & 00693237 a 0000 | relatively deep or strong; affecting one deeply; "a deep breath"; "a deep sigh"; "deep concentration"; "deep emotion"; "a deep trance"; "in a deep sleep" -00693020 00 s 04 heavy 0 profound 0 sound 0 wakeless 0 002 & 00692762 a 0000 + 13942554 n 0201 | (of sleep) deep and complete; "a heavy sleep"; "fell into a profound sleep"; "a sound sleeper"; "deep wakeless sleep" -00693237 00 s 01 profound 2 002 & 00692762 a 0000 + 13942554 n 0101 | coming from deep within one; "a profound sigh" -00693356 00 a 01 shallow 2 003 = 05134547 n 0000 ! 00692762 a 0101 & 00693570 a 0000 | not deep or strong; not affecting one deeply; "shallow breathing"; "a night of shallow fretful sleep"; "in a shallow trance" -00693570 00 s 02 light 0 wakeful 0 002 & 00693356 a 0000 + 14022959 n 0201 | (of sleep) easily disturbed; "in a light doze"; "a light sleeper"; "a restless wakeful night" -00693743 00 a 01 de_facto 0 002 ^ 01932973 a 0000 ! 00693961 a 0101 | existing in fact whether with lawful authority or not; "de facto segregation is as real as segregation imposed by law"; "a de facto state of war" -00693961 00 a 01 de_jure 0 001 ! 00693743 a 0101 | by right; according to law; "de jure recognition of the new government" -00694086 00 a 01 defeasible 0 001 ! 00694284 a 0101 | capable of being annulled or voided or terminated; "a claim to an estate may be defeasible so long as the claimant is under 21 and unmarried" -00694284 00 a 01 indefeasible 0 002 ! 00694086 a 0101 & 00694483 a 0000 | not liable to being annulled or voided or undone; "an indefeasible right to freedom"; "an indefeasible claim to the title" -00694483 00 s 02 unforfeitable 0 inalienable 0 001 & 00694284 a 0000 | not subject to forfeiture; "an unforfeitable right" -00694608 00 a 01 defeated 0 004 ^ 02333453 a 0000 ! 00695024 a 0101 & 00694773 a 0000 & 00694924 a 0000 | beaten or overcome; not victorious; "the defeated enemy" -00694773 00 s 01 licked 0 002 & 00694608 a 0000 ;u 07075172 n 0000 | having been got the better of; "I'm pretty beat up but I don't feel licked yet" -00694924 00 s 01 subjugated 0 001 & 00694608 a 0000 | reduced to submission; "subjugated peoples" -00695024 00 a 01 undefeated 0 005 ^ 02331262 a 0000 ! 00694608 a 0101 & 00695209 a 0000 & 00695335 a 0000 & 00695432 a 0000 | victorious; "undefeated in battle"; "an undefeated team" -00695209 00 s 02 triumphant 0 victorious 0 003 & 00695024 a 0000 + 07473441 n 0201 + 01101734 v 0102 | experiencing triumph -00695335 00 s 03 unbeaten 0 unconquered 0 unvanquished 0 001 & 00695024 a 0000 | not conquered -00695432 00 s 01 unbowed 0 001 & 00695024 a 0000 | not forced to bow down to a conqueror -00695523 00 a 02 defiant 0 noncompliant 0 014 ^ 01613463 a 0000 ^ 02330336 a 0000 ^ 02451951 a 0000 ^ 01475282 a 0000 ^ 02566015 a 0000 + 01179707 n 0202 + 02706816 v 0101 + 07231943 n 0101 + 04907991 n 0101 + 01170320 n 0101 ! 00696518 a 0101 & 00695938 a 0000 & 00696207 a 0000 & 00696335 a 0000 | boldly resisting authority or an opposing force; "brought up to be aggressive and defiant"; "a defiant attitude" -00695938 00 s 03 insubordinate 0 resistant 0 resistive 0 008 & 00695523 a 0000 + 02521410 v 0302 + 02583545 v 0301 + 01116585 v 0301 + 01169317 n 0201 + 02521410 v 0202 + 02583545 v 0201 + 01116585 v 0201 | disposed to or engaged in defiance of established authority -00696207 00 s 01 obstreperous 0 002 & 00695523 a 0000 + 04908283 n 0101 | noisily and stubbornly defiant; "obstreperous boys" -00696335 00 s 01 recalcitrant 0 002 & 00695523 a 0000 + 04907575 n 0104 | marked by stubborn resistance to authority; "the University suspended the most recalcitrant demonstrators" -00696518 00 a 01 compliant 0 011 ^ 01474513 a 0000 ^ 01612053 a 0000 ^ 02451113 a 0000 ^ 02564986 a 0000 + 04641153 n 0102 + 04641153 n 0103 + 02542280 v 0101 ! 00695523 a 0101 & 00696828 a 0000 & 00696996 a 0000 & 00697089 a 0000 | disposed or willing to comply; "children compliant with the parental will" -00696828 00 s 02 amenable 0 conformable 0 003 & 00696518 a 0000 + 04906026 n 0101 + 04906026 n 0102 | disposed or willing to comply; "someone amenable to persuasion" -00696996 00 s 01 lamblike 0 001 & 00696518 a 0000 | like a lamb in meekness and gentleness -00697089 00 s 01 nonresistant 0 002 & 00696518 a 0000 + 01169598 n 0101 | offering no resistance -00697188 00 a 01 defined 0 002 ^ 00700451 a 0000 ! 00697389 a 0101 | clearly characterized or delimited; "lost in a maze of words both defined and undefined"; "each child has clearly defined duties" -00697389 00 a 02 undefined 0 vague 4 004 ^ 00701479 a 0000 + 04824350 n 0201 ! 00697188 a 0101 & 00697691 a 0000 | not precisely limited, determined, or distinguished; "an undefined term"; "undefined authority"; "some undefined sense of excitement"; "vague feelings of sadness"; "a vague uneasiness" -00697691 00 s 02 indefinable 0 undefinable 0 001 & 00697389 a 0000 | not capable of being precisely or readily described; not easily put into words; "an indefinable feeling of terror"; "an abstract concept that seems indefinable" -00697923 00 a 02 well-defined 0 clear 4 003 + 04820258 n 0201 + 04820258 n 0205 ! 00698088 a 0101 | accurately stated or described; "a set of well-defined values" -00698088 00 a 02 ill-defined 0 unclear 4 002 + 04823866 n 0201 ! 00697923 a 0101 | poorly stated or described; "he confuses the reader with ill-defined terms and concepts" -00698262 00 a 01 derived 0 004 ! 00699085 a 0101 & 00698506 a 0000 & 00698586 a 0000 & 00698848 a 0000 | formed or developed from something else; not original; "the belief that classes and organizations are secondary and derived"- John Dewey -00698506 00 s 01 derivable 0 001 & 00698262 a 0000 | capable of being derived -00698586 00 s 01 derivative 0 007 & 00698262 a 0000 + 06480506 n 0102 + 06290051 n 0101 + 06014730 n 0102 + 02737187 v 0101 + 00251791 v 0101 + 00251615 v 0101 | resulting from or employing derivation; "a derivative process"; "a highly derivative prose style" -00698848 00 s 03 plagiaristic 0 plagiarized 0 plagiarised 0 003 & 00698262 a 0000 + 07277158 n 0101 + 00750405 n 0101 | copied and passed off as your own; "used plagiarized data in his thesis"; "a work dotted with plagiarized phrases" -00699085 00 a 01 underived 0 003 ! 00698262 a 0101 & 00699207 a 0000 & 00699521 a 0000 | not derived; primary or simple -00699207 00 s 01 original 0 003 & 00699085 a 0000 + 05938400 n 0101 + 03727274 n 0103 | not derived or copied or translated from something else; "the play is original; not an adaptation"; "he kept the original copy and gave her only a xerox"; "the translation misses much of the subtlety of the original French" -00699521 00 s 01 primary 0 001 & 00699085 a 0000 | not derived from or reducible to something else; basic; "a primary instinct" -00699651 00 a 01 inflected 1 002 ;c 06172789 n 0000 ! 00699876 a 0101 | showing alteration in form (especially by the addition of affixes); "`boys' and `swam' are inflected English words"; "German is an inflected language" -00699876 00 a 01 uninflected 1 002 ;c 06172789 n 0000 ! 00699651 a 0101 | not inflected; "`boy' and `swim' are uninflected English words" -00700016 00 a 01 inflected 0 002 ! 00700312 a 0101 & 00700214 a 0000 | (of the voice) altered in tone or pitch; "his southern Yorkshire voice was less inflected and singing than her northern one" -00700214 00 s 01 modulated 0 001 & 00700016 a 0000 | altered in volume as well as tone or pitch -00700312 00 a 01 uninflected 0 001 ! 00700016 a 0101 | (of the voice) not inflected; "uninflected words"; "monotonic uninflected speech" -00700451 00 a 01 definite 0 008 ^ 00428404 a 0000 ^ 00697188 a 0000 ^ 00779374 a 0000 ^ 00940437 a 0000 ! 00701479 a 0101 & 00700884 a 0000 & 00701178 a 0000 & 00701299 a 0000 | precise; explicit and clearly defined; "I want a definite answer"; "a definite statement of the terms of the will"; "a definite amount"; "definite restrictions on the sale of alcohol"; "the wedding date is now definite"; "a definite drop in attendance" -00700884 00 s 01 certain(a) 0 001 & 00700451 a 0000 | definite but not specified or identified; "set aside a certain sum each week"; "to a certain degree"; "certain breeds do not make good pets"; "certain members have not paid their dues"; "a certain popular teacher"; "a certain Mrs. Jones" -00701178 00 s 01 decisive 0 002 & 00700451 a 0000 + 04754440 n 0103 | unmistakable; "had a decisive lead in the polls" -00701299 00 s 02 distinct 0 decided 0 002 & 00700451 a 0000 + 04702688 n 0101 | recognizable; marked; "noticed a distinct improvement"; "at a distinct (or decided) disadvantage" -00701479 00 a 01 indefinite 0 011 ^ 00781168 a 0000 ^ 00430191 a 0000 ^ 00697389 a 0000 + 04757864 n 0101 + 04757864 n 0103 ! 00700451 a 0101 & 00701894 a 0000 & 00702118 a 0000 & 00702245 a 0000 & 00702444 a 0000 & 00702642 a 0000 | vague or not clearly defined or stated; "must you be so indefinite?"; "amorphous blots of color having vague and indefinite edges"; "he would not answer so indefinite a proposal" -00701894 00 s 01 coy 0 002 & 00701479 a 0000 + 04788159 n 0101 | showing marked and often playful or irritating evasiveness or reluctance to make a definite or committing statement; "a politician coy about his intentions" -00702118 00 s 01 indecisive 0 001 & 00701479 a 0000 | not clearly defined; "indecisive boundaries running through mountains" -00702245 00 s 02 nebulous 0 unfixed 0 001 & 00701479 a 0000 | lacking definition or definite content; "nebulous reasons"; "unfixed as were her general notions of what men ought to be"- Jane Austen -00702444 00 s 01 noncommittal 0 001 & 00701479 a 0000 | refusing to bind oneself to a particular course of action or view or the like; "her boyfriend was noncommittal about their future together" -00702642 00 s 01 one(a) 0 001 & 00701479 a 0000 | indefinite in time or position; "he will come one day"; "one place or another" -00702773 00 a 01 dehiscent 0 004 = 11444816 n 0000 + 11444816 n 0101 + 00308105 v 0101 ! 00702962 a 0101 | (of e.g. fruits and anthers) opening spontaneously at maturity to release seeds -00702962 00 a 01 indehiscent 0 002 = 11444816 n 0000 ! 00702773 a 0101 | (of e.g. fruits) not opening spontaneously at maturity to release seeds -00703109 00 a 01 dejected 0 008 ^ 00909363 a 0000 ^ 01149494 a 0000 ! 00704609 a 0101 & 00703366 a 0000 & 00703454 a 0000 & 00703615 a 0000 & 00704270 a 0000 & 00704360 a 0000 | affected or marked by low spirits; "is dejected but trying to look cheerful" -00703366 00 s 01 amort 0 002 & 00703109 a 0000 ;u 07073447 n 0000 | utterly cast down -00703454 00 s 04 chapfallen 0 chopfallen 0 crestfallen 0 deflated 0 001 & 00703109 a 0000 | brought low in spirit; "left us fatigued and deflated spiritually" -00703615 00 s 0b gloomy 0 grim 0 blue 0 depressed 0 dispirited 0 down(p) 0 downcast 0 downhearted 0 down_in_the_mouth 0 low 0 low-spirited 0 007 & 00703109 a 0000 + 07537668 n 0a04 + 07537668 n 0801 + 07537668 n 0505 + 07533257 n 0102 + 04631470 n 0101 + 07537668 n 0b03 | filled with melancholy and despondency ; "gloomy at the thought of what he had to face"; "gloomy predictions"; "a gloomy silence"; "took a grim view of the economy"; "the darkening mood"; "lonely and blue in a strange city"; "depressed by the loss of his job"; "a dispirited and resigned expression on her face"; "downcast after his defeat"; "feeling discouraged and downhearted" -00704270 00 s 01 glum 0 002 & 00703109 a 0000 + 07552367 n 0102 | moody and melancholic -00704360 00 s 02 lonely 0 lonesome 0 002 & 00703109 a 0000 + 07534108 n 0102 | marked by dejection from being alone; "felt sad and lonely"; "the loneliest night of the week"; "lonesome when her husband is away"; "spent a lonesome hour in the bar" -00704609 00 a 01 elated 0 009 ^ 00908929 a 0000 ^ 01148283 a 0000 ^ 01366718 a 0000 ! 00703109 a 0101 & 00704898 a 0000 & 00705336 a 0000 & 00705498 a 0000 & 00705616 a 0000 & 00705776 a 0000 | exultantly proud and joyful; in high spirits; "the elated winner"; "felt elated and excited" -00704898 00 s 07 exultant 0 exulting 0 jubilant 0 prideful 0 rejoicing 0 triumphal 0 triumphant 0 010 & 00704609 a 0000 + 01823370 v 0703 + 00857923 v 0704 + 07528097 n 0601 + 07508486 n 0402 + 07527817 n 0303 + 00857923 v 0305 + 07527817 n 0302 + 01813668 v 0101 + 00857923 v 0102 | joyful and proud especially because of triumph or success; "rejoicing crowds filled the streets on VJ Day"; "a triumphal success"; "a triumphant shout" -00705336 00 s 02 gladdened 0 exhilarated 0 001 & 00704609 a 0000 | made joyful; "the sun and the wind on his back made him feel exhilarated--happy to be alive" -00705498 00 s 02 high 0 in_high_spirits 0 002 & 00704609 a 0000 + 14405621 n 0101 | happy and excited and energetic -00705616 00 s 01 sublime 0 003 & 00704609 a 0000 ;u 07073447 n 0000 + 04870889 n 0101 | lifted up or set high; "their hearts were jocund and sublime"- Milton -00705776 00 s 01 uplifted 0 002 & 00704609 a 0000 ;u 07073447 n 0000 | exalted emotionally especially with pride -00705891 00 a 01 delicate 0 012 ^ 00708017 a 0000 ^ 02040049 a 0000 ^ 02324397 a 0000 = 05029706 n 0000 ! 00707366 a 0101 & 00706311 a 0000 & 00706455 a 0000 & 00706688 a 0000 & 00706800 a 0000 & 00706974 a 0000 & 00707087 a 0000 & 00707206 a 0000 | exquisitely fine and subtle and pleasing; susceptible to injury; "a delicate violin passage"; "delicate china"; "a delicate flavor"; "the delicate wing of a butterfly" -00706311 00 s 02 dainty 0 exquisite 0 002 & 00705891 a 0000 + 04813066 n 0101 | delicately beautiful; "a dainty teacup"; "an exquisite cameo" -00706455 00 s 02 ethereal 0 gossamer 0 003 & 00705891 a 0000 + 03059806 n 0202 + 03448696 n 0201 | characterized by unusual lightness and delicacy; "this smallest and most ethereal of birds"; "gossamer shading through his playing" -00706688 00 s 01 fragile 0 001 & 00705891 a 0000 | vulnerably delicate; "she has the fragile beauty of youth" -00706800 00 s 01 light-handed 0 001 & 00705891 a 0000 | having a metaphorically delicate touch; "the translation is...light-handed...and generally unobtrusive"- New Yorker -00706974 00 s 01 overdelicate 0 001 & 00705891 a 0000 | extremely delicate; "an overdelicate digestive system" -00707087 00 s 01 pastel 0 001 & 00705891 a 0000 | lacking in body or vigor; "faded pastel charms of the naive music" -00707206 00 s 01 tender 0 002 & 00705891 a 0000 ;c 00017222 n 0000 | (of plants) not hardy; easily killed by adverse growing condition; "tender green shoots" -00707366 00 a 01 rugged 0 008 ^ 02037708 a 0000 ^ 02321009 a 0000 ^ 02447344 a 0000 = 05029706 n 0000 + 05031214 n 0102 ! 00705891 a 0101 & 00707667 a 0000 & 00707795 a 0000 | sturdy and strong in constitution or construction; enduring; "with a house full of boys you have to have rugged furniture" -00707667 00 s 01 knockabout 0 001 & 00707366 a 0000 | suitable for rough use; "a knockabout overcoat"; "a knockabout old car" -00707795 00 s 02 sturdy 0 tough 0 002 & 00707366 a 0000 + 05031726 n 0101 | substantially made or constructed; "sturdy steel shelves"; "sturdy canvas"; "a tough all-weather fabric"; "some plastics are as tough as metal" -00708017 00 a 01 breakable 0 018 = 04939324 n 0000 + 01610463 v 0101 + 01298931 v 0101 + 01369758 v 0101 + 01369346 v 0101 + 00336260 v 0103 + 00334996 v 0101 + 00434374 v 0108 + 00334186 v 0101 + 05043755 n 0102 + 04939324 n 0101 ! 00709744 a 0101 & 00708498 a 0000 & 00708738 a 0000 & 00709021 a 0000 & 00709215 a 0000 & 00709446 a 0000 & 00709625 a 0000 | capable of being broken or damaged; "earthenware pottery is breakable"; "breakable articles should be packed carefully" -00708498 00 s 03 brittle 0 brickle 0 brickly 0 002 & 00708017 a 0000 + 04939547 n 0101 | having little elasticity; hence easily cracked or fractured or snapped; "brittle bones"; "glass is brittle"; "`brickle' and `brickly' are dialectal" -00708738 00 s 02 crumbly 0 friable 0 004 & 00708017 a 0000 + 04939742 n 0202 + 07622261 n 0101 + 04939742 n 0101 | easily broken into small fragments or reduced to powder; "friable sandstone"; "friable carcinomatous tissue"; "friable curds formed in the stomach";"crumbly cookies" -00709021 00 s 01 short 0 001 & 00708017 a 0000 | tending to crumble or break into flakes due to a large amount of shortening; "shortbread is a short crumbly cookie"; "a short flaky pie crust" -00709215 00 s 03 delicate 0 fragile 0 frail 0 002 & 00708017 a 0000 + 05043755 n 0201 | easily broken or damaged or destroyed; "a kite too delicate to fly safely"; "fragile porcelain plates"; "fragile old bones"; "a frail craft" -00709446 00 s 01 frangible 0 003 & 00708017 a 0000 + 05043755 n 0103 + 05043755 n 0104 | capable of being broken; "the museum stored all frangible articles in locked showcases" -00709625 00 s 01 splintery 0 002 & 00708017 a 0000 + 09442838 n 0101 | subject to breaking into sharp slender pieces -00709744 00 a 01 unbreakable 0 005 = 04939324 n 0000 + 04939987 n 0101 ! 00708017 a 0101 & 00709959 a 0000 & 00710097 a 0000 | impossible to break especially under ordinary usage; "unbreakable plastic dinnerwear" -00709959 00 s 01 infrangible 0 001 & 00709744 a 0000 | difficult or impossible to break or separate into parts; "an infrangible series" -00710097 00 s 03 shatterproof 0 splinterless 0 splinterproof 0 001 & 00709744 a 0000 | resistant to shattering or splintering; "shatterproof automobile windows" -00710260 00 a 01 demanding 1 007 ^ 00744916 a 0000 ! 00711528 a 0101 & 00710585 a 0000 & 00710741 a 0000 & 00710909 a 0000 & 00711059 a 0000 & 00711308 a 0000 | requiring more than usually expected or thought due; especially great patience and effort and skill; "found the job very demanding"; "a baby can be so demanding" -00710585 00 s 02 exigent 0 exacting 1 001 & 00710260 a 0000 | requiring precise accuracy; "an exacting job"; "became more exigent over his pronunciation" -00710741 00 s 02 hard-to-please(a) 0 hard_to_please(p) 0 001 & 00710260 a 0000 | (of persons) "his father was a hard-to-please taskmaster"; "was very hard to please" -00710909 00 s 01 needy 0 002 & 00710260 a 0000 + 04719805 n 0101 | demanding or needing attention, affection, or reassurance to an excessive degree -00711059 00 s 03 rigorous 0 stringent 0 tight 0 004 & 00710260 a 0000 + 04673173 n 0202 + 04639732 n 0106 + 04639732 n 0104 | demanding strict attention to rules and procedures; "rigorous discipline"; "tight security"; "stringent safety measures" -00711308 00 s 03 stern 0 strict 0 exacting 2 003 & 00710260 a 0000 + 04639371 n 0202 + 04639371 n 0101 | severe and unremitting in making demands; "an exacting instructor"; "a stern disciplinarian"; "strict standards" -00711528 00 a 01 undemanding 1 006 ^ 00749230 a 0000 ! 00710260 a 0101 & 00711831 a 0000 & 00712004 a 0000 & 00712186 a 0000 & 00712314 a 0000 | requiring little if any patience or effort or skill; "the pay was adequate and the job undemanding"; "simple undemanding affection"; "an undemanding boss" -00711831 00 s 01 lenient 0 003 & 00711528 a 0000 + 01071213 n 0102 + 04638585 n 0102 | not strict; "an easy teacher"; "easy standards"; "lenient rules"; "an easy penalty" -00712004 00 s 01 easygoing 0 002 & 00711528 a 0000 + 04640722 n 0101 | relaxed and informal in attitude or standards; "an easygoing teacher who allowed extra time for assignments" -00712186 00 s 01 light 0 001 & 00711528 a 0000 | demanding little effort; not burdensome; "light housework"; "light exercise" -00712314 00 s 01 unexacting 0 001 & 00711528 a 0000 | not rigorous; "relaxed and unexacting standards" -00712419 00 a 01 imperative 0 009 ^ 00156101 a 0000 + 14451349 n 0101 ! 00713995 a 0101 & 00712765 a 0000 & 00712877 a 0000 & 00713205 a 0000 & 00713351 a 0000 & 00713558 a 0000 & 00713853 a 0000 | requiring attention or action; "as nuclear weapons proliferate, preventing war becomes imperative"; "requests that grew more and more imperative" -00712765 00 s 01 adjuratory 1 002 & 00712419 a 0000 + 00755331 v 0101 | containing a solemn charge or command -00712877 00 s 05 clamant 0 crying 0 exigent 0 insistent 0 instant 0 005 & 00712419 a 0000 + 05172131 n 0502 + 14451349 n 0403 + 14033054 n 0301 + 07417405 n 0302 | demanding attention; "clamant needs"; "a crying need"; "regarded literary questions as exigent and momentous"- H.L.Mencken; "insistent hunger"; "an instant need" -00713205 00 s 01 peremptory 2 001 & 00712419 a 0000 | not allowing contradiction or refusal; "spoke in peremptory tones"; "peremptory commands" -00713351 00 s 01 desperate 0 001 & 00712419 a 0000 | showing extreme urgency or intensity especially because of great need or desire; "felt a desperate urge to confess"; "a desperate need for recognition" -00713558 00 s 02 pressing 0 urgent 0 006 & 00712419 a 0000 + 13944516 n 0201 + 05171800 n 0201 + 00875141 v 0202 + 00858781 v 0204 + 00765649 v 0201 | compelling immediate action; "too pressing to permit of longer delay"; "the urgent words `Hurry! Hurry!'"; "bridges in urgent need of repair" -00713853 00 s 02 strident 0 shrill 0 001 & 00712419 a 0000 | being sharply insistent on being heard; "strident demands"; "shrill criticism" -00713995 00 a 03 beseeching 0 pleading 0 imploring 0 007 ! 00712419 a 0101 & 00714190 a 0000 & 00714320 a 0000 & 00714437 a 0000 & 00714585 a 0000 & 00714763 a 0000 & 00714889 a 0000 | begging -00714190 00 s 01 adjuratory 0 002 & 00713995 a 0000 + 00759657 v 0104 | earnestly or solemnly entreating; "in adjuratory terms" -00714320 00 s 01 importunate 0 001 & 00713995 a 0000 | expressing earnest entreaty; "an importunate job applicant" -00714437 00 s 01 mendicant 0 004 & 00713995 a 0000 + 10111903 n 0102 + 09847010 n 0102 + 07187996 n 0103 | practicing beggary; "mendicant friars" -00714585 00 s 01 petitionary 0 002 & 00713995 a 0000 + 06513366 n 0102 | of the nature of or expressing a petition; "the petitionary procedure had a quality of indecisiveness" -00714763 00 s 02 precatory 0 precative 0 001 & 00713995 a 0000 | expressing entreaty or supplication; "precatory overtures" -00714889 00 s 03 suppliant 0 supplicant 0 supplicatory 0 007 & 00713995 a 0000 + 00759087 v 0301 + 00758887 v 0301 + 00758627 v 0301 + 00759087 v 0201 + 00758887 v 0201 + 00758627 v 0201 | humbly entreating; "a suppliant sinner seeking forgiveness" -00715140 00 a 01 democratic 0 011 ^ 00846052 a 0000 + 06217103 n 0101 ! 00717417 a 0101 & 00715586 a 0000 & 00715677 a 0000 & 00715830 a 0000 & 00716056 a 0000 & 00716211 a 0000 & 00716370 a 0000 & 00716562 a 0000 & 00716892 a 0000 | characterized by or advocating or based upon the principles of democracy or social equality; "democratic government"; "a democratic country"; "a democratic scorn for bloated dukes and lords"- George du Maurier -00715586 00 s 01 antiauthoritarian 0 001 & 00715140 a 0000 | opposed to authoritarianism -00715677 00 s 02 classless 0 egalitarian 0 003 & 00715140 a 0000 + 10046870 n 0201 + 13947010 n 0201 | favoring social equality; "a classless society" -00715830 00 s 01 parliamentary 0 001 & 00715140 a 0000 | having the supreme legislative power resting with a body of cabinet ministers chosen from and responsible to the legislature or parliament; "parliamentary government" -00716056 00 s 01 parliamentary 2 001 & 00715140 a 0000 | in accord with rules and customs of a legislative or deliberative assembly; "parliamentary law" -00716211 00 s 01 participatory 0 002 & 00715140 a 0000 + 01082606 v 0102 | affording the opportunity for individual participation; "participatory democracy" -00716370 00 s 01 popular 0 001 & 00715140 a 0000 | carried on by or for the people (or citizens) at large; "the popular vote"; "popular representation"; "institutions of popular government" -00716562 00 s 01 representative 0 002 & 00715140 a 0000 + 02541509 v 0101 | being or characteristic of government by representation in which citizens exercise power through elected officers and representatives; "representative government as defined by Abraham Lincoln is government of the people, by the people, for the people" -00716892 00 s 01 republican 0 002 & 00715140 a 0000 + 10522495 n 0101 | having the supreme power lying in the body of citizens entitled to vote for officers and representatives responsible to them or characteristic of such government; "the United States shall guarantee to every state in this union a republican form of government"- United States Constitution; "a very republican notion"; "so little republican and so much aristocratic sentiment"- Philip Marsh; "our republican and artistic simplicity"-Nathaniel Hawthorne -00717417 00 a 01 undemocratic 0 005 ! 00715140 a 0101 & 00717684 a 0000 & 00718137 a 0000 & 00718339 a 0000 & 00718635 a 0000 | not in agreement with or according to democratic doctrine or practice or ideals; "the union broke with its past undemocratic procedures" -00717684 00 s 06 authoritarian 0 autocratic 0 dictatorial 0 despotic 0 tyrannic 0 tyrannical 0 006 & 00717417 a 0000 + 14443912 n 0602 + 14443912 n 0502 + 10735298 n 0403 + 10011902 n 0301 + 10735298 n 0202 | characteristic of an absolute ruler or absolute rule; having absolute sovereignty; "an authoritarian regime"; "autocratic government"; "despotic rulers"; "a dictatorial rule that lasted for the duration of the war"; "a tyrannical government" -00718137 00 s 01 despotic 2 002 & 00717417 a 0000 + 10735298 n 0103 | ruled by or characteristic of a despot; "moved from a feudal to a despotic order"; "his administration was arrogant and despotic" -00718339 00 s 03 monarchal 0 monarchical 0 monarchic 0 007 & 00717417 a 0000 + 08363812 n 0301 + 10628644 n 0303 + 10628644 n 0203 + 08363812 n 0201 + 08363812 n 0101 + 10628644 n 0103 | ruled by or having the supreme power resting with a monarch; "monarchal government"; "monarchical systems" -00718635 00 s 01 totalitarian 0 001 & 00717417 a 0000 | characterized by a government in which the political authority exercises absolute and centralized control; "a totalitarian regime crushes all autonomous institutions in its drive to seize the human soul"- Arthur M.Schlesinger, Jr. -00718924 00 a 01 arbitrary 0 005 + 04671841 n 0102 ! 00720082 a 0101 & 00719328 a 0000 & 00719442 a 0000 & 00719819 a 0000 | based on or subject to individual discretion or preference or sometimes impulse or caprice; "an arbitrary decision"; "the arbitrary rule of a dictator"; "an arbitrary penalty"; "of arbitrary size and shape"; "an arbitrary choice"; "arbitrary division of the group into halves" -00719328 00 s 01 absolute 0 002 & 00718924 a 0000 + 04738398 n 0101 | not limited by law; "an absolute monarch" -00719442 00 s 03 capricious 0 impulsive 0 whimsical 0 007 & 00718924 a 0000 + 05919549 n 0303 + 04671841 n 0304 + 04671841 n 0303 + 04662504 n 0201 + 07490579 n 0101 + 04671841 n 0106 | determined by chance or impulse or whim rather than by necessity or reason; "a capricious refusal"; "authoritarian rulers are frequently capricious"; "the victim of whimsical persecutions" -00719819 00 s 02 discretionary 0 discretional 0 003 & 00718924 a 0000 + 13995824 n 0101 + 05198756 n 0102 | having or using the ability to act or decide according to your own discretion or judgment; "The commission has discretionary power to award extra funds" -00720082 00 a 02 nonarbitrary 0 unarbitrary 0 002 ! 00718924 a 0101 & 00720212 a 0000 | not subject to individual determination -00720212 00 s 01 prescribed 0 001 & 00720082 a 0000 | set down as a rule or guide -00720296 00 a 01 demonstrative 0 005 ^ 01988166 a 0000 + 04626879 n 0101 ! 00720913 a 0101 & 00720524 a 0000 & 00720777 a 0000 | given to or marked by the open expression of emotion; "an affectionate and demonstrative family" -00720524 00 s 03 effusive 0 gushing(a) 0 gushy 0 002 & 00720296 a 0000 + 07014320 n 0302 | extravagantly demonstrative; "insincere and effusive demonstrations of sentimental friendship"; "a large gushing female"; "write unrestrained and gushy poetry" -00720777 00 s 02 epideictic 0 epideictical 0 001 & 00720296 a 0000 | designed primarily for rhetorical display; "epideictic orations" -00720913 00 a 01 undemonstrative 0 003 ^ 01987341 a 0000 ! 00720296 a 0101 & 00721050 a 0000 | not given to open expression of emotion -00721050 00 s 03 restrained 0 reticent 0 unemotional 0 001 & 00720913 a 0000 | cool and formal in manner -00721157 00 a 01 deniable 0 003 ! 00721505 a 0101 & 00721287 a 0000 & 00721371 a 0000 | capable of being denied or contradicted -00721287 00 s 01 disavowable 0 001 & 00721157 a 0000 | capable of being disavowed -00721371 00 s 04 questionable 0 refutable 0 confutable 0 confutative 0 002 & 00721157 a 0000 + 00667424 v 0402 | able to be refuted -00721505 00 a 01 undeniable 0 004 ^ 01918184 a 0000 ! 00721157 a 0101 & 00721636 a 0000 & 00721838 a 0000 | not possible to deny -00721636 00 s 03 incontestable 0 indisputable 0 undisputable 0 002 & 00721505 a 0000 + 04754862 n 0201 | not open to question; obviously true; "undeniable guilt"; "indisputable evidence of a witness" -00721838 00 s 03 incontrovertible 0 irrefutable 0 positive 0 004 & 00721505 a 0000 + 04755218 n 0303 + 04755218 n 0102 + 04755218 n 0101 | impossible to deny or disprove; "incontrovertible proof of the defendant's innocence"; "proof positive"; "an irrefutable argument" -00722110 00 a 02 denotative 0 denotive 0 009 ^ 00940437 a 0000 + 00931467 v 0201 + 00931467 v 0101 ! 00723163 a 0101 & 00722386 a 0000 & 00722611 a 0000 & 00722707 a 0000 & 00722886 a 0000 & 00723015 a 0000 | having the power of explicitly denoting or designating or naming -00722386 00 s 02 appellative 0 naming(a) 0 002 & 00722110 a 0000 + 06338908 n 0104 | inclined to or serving for the giving of names; "the appellative faculty of children"; "the appellative function of some primitive rites" -00722611 00 s 01 designative 0 002 & 00722110 a 0000 + 01030132 v 0101 | serving to designate -00722707 00 s 01 extensional 0 003 & 00722110 a 0000 ;c 06163751 n 0000 + 05922949 n 0103 | defining a word by listing the class of entities to which the word correctly applies -00722886 00 s 01 referent 0 002 & 00722110 a 0000 + 05922949 n 0101 | having reference; "judgments referent to the indictment" -00723015 00 s 01 referential 0 002 & 00722110 a 0000 + 05923314 n 0101 | referring or pointing to something; "symbols are inherently referential" -00723163 00 a 01 connotative 0 006 ^ 00941485 a 0000 ! 00722110 a 0101 & 00723395 a 0000 & 00723542 a 0000 & 00723786 a 0000 & 00723910 a 0000 | having the power of implying or suggesting something in addition to what is explicit -00723395 00 s 02 connotational 0 connotative_of(p) 0 003 & 00723163 a 0000 + 06602935 n 0102 + 05923566 n 0101 | of or relating to a connotation -00723542 00 s 02 implicative 0 suggestive 0 005 & 00723163 a 0000 + 00930806 v 0201 + 02635189 v 0102 + 00930599 v 0101 + 00929839 v 0101 | tending to suggest or imply; "artifacts suggestive of an ancient society"; "an implicative statement" -00723786 00 s 01 inferential 0 002 & 00723163 a 0000 + 05774614 n 0101 | derived or capable of being derived by inference -00723910 00 s 01 intensional 0 003 & 00723163 a 0000 ;c 06163751 n 0000 + 06602935 n 0101 | used of the set of attributes that distinguish the referents of a given word -00724081 00 a 02 reliable 0 dependable 0 010 ^ 02464693 a 0000 + 04670022 n 0202 + 04670022 n 0201 ! 00724861 a 0202 + 04670022 n 0104 + 04670022 n 0103 ! 00724861 a 0101 & 00724397 a 0000 & 00724596 a 0000 & 00724720 a 0000 | worthy of reliance or trust; "a reliable source of information"; "a dependable worker" -00724397 00 s 02 certain 0 sure 0 001 & 00724081 a 0000 | reliable in operation or effect; "a quick and certain remedy"; "a sure way to distinguish the two"; "wood dust is a sure sign of termites" -00724596 00 s 04 tested 0 time-tested 0 tried 0 tried_and_true 0 001 & 00724081 a 0000 | tested and proved to be reliable -00724720 00 s 01 undeviating 0 001 & 00724081 a 0000 | used of values and principles; not subject to change; steady; "undeviating loyalty" -00724861 00 a 02 unreliable 0 undependable 0 010 ^ 02466111 a 0000 + 04671394 n 0202 + 04671394 n 0201 ! 00724081 a 0202 + 04671394 n 0104 + 04671394 n 0103 ! 00724081 a 0101 & 00725227 a 0000 & 00725522 a 0000 & 00725704 a 0000 | not worthy of reliance or trust; "in the early 1950s computers were large and expensive and unreliable"; "an undependable assistant" -00725227 00 s 02 erratic 0 temperamental 0 001 & 00724861 a 0000 | likely to perform unpredictably; "erratic winds are the bane of a sailor"; "a temperamental motor; sometimes it would start and sometimes it wouldn't"; "that beautiful but temperamental instrument the flute"- Osbert Lancaster -00725522 00 s 01 uncertain 0 002 & 00724861 a 0000 + 04756887 n 0102 | not consistent or dependable; "an uncertain recollection of events"; "a gun with a rather uncertain trigger" -00725704 00 s 01 unsound 0 001 & 00724861 a 0000 | of e.g. advice -00725772 00 a 01 dependent 0 014 ^ 01064286 a 0000 = 13994148 n 0000 + 10004804 n 0102 + 14001348 n 0103 + 14001348 n 0101 ! 00727564 a 0101 & 00726189 a 0000 & 00726317 a 0000 & 00726445 a 0000 & 00726612 a 0000 & 00726723 a 0000 & 00727113 a 0000 & 00727268 a 0000 & 00727481 a 0000 | relying on or requiring a person or thing for support, supply, or what is needed; "dependent children"; "dependent on moisture" -00726189 00 s 01 babelike 0 001 & 00725772 a 0000 | like a baby especially in dependence; "babelike innocence and dependence" -00726317 00 s 01 helpless 0 002 & 00725772 a 0000 + 07538142 n 0101 | unable to manage independently; "as helpless as a baby" -00726445 00 s 03 interdependent 0 mutualist 0 mutually_beneficial 0 004 & 00725772 a 0000 + 13841863 n 0103 + 13841863 n 0102 + 02622033 v 0102 | mutually dependent -00726612 00 s 01 myrmecophilous 0 002 & 00725772 a 0000 ;c 06037666 n 0000 | living symbiotically with ants -00726723 00 s 04 parasitic 0 parasitical 0 leechlike 0 bloodsucking 0 003 & 00725772 a 0000 + 10252674 n 0202 + 10252674 n 0102 | of plants or persons; having the nature or habits of a parasite or leech; living off another; "a wealthy class parasitic upon the labor of the masses"; "parasitic vines that strangle the trees"; "bloodsucking blackmailer"; "his indolent leechlike existence" -00727113 00 s 01 reliant 0 003 & 00725772 a 0000 + 14001728 n 0101 + 00688377 v 0103 | relying on another for support; "dependent on Middle Eastern oil" -00727268 00 s 01 symbiotic 0 003 & 00725772 a 0000 ;c 06037666 n 0000 + 13842622 n 0101 | used of organisms (especially of different species) living together but not necessarily in a relation beneficial to each -00727481 00 s 01 underage 0 001 & 00725772 a 0000 | dependent by virtue of youth -00727564 00 a 01 independent 0 020 ^ 01061489 a 0000 ^ 02109678 a 0000 = 13994148 n 0000 + 13994148 n 0102 + 13994148 n 0101 ! 00725772 a 0101 & 00728103 a 0000 & 00728225 a 0000 & 00728431 a 0000 & 00728619 a 0000 & 00728826 a 0000 & 00728993 a 0000 & 00729133 a 0000 & 00729246 a 0000 & 00729439 a 0000 & 00729647 a 0000 & 00729776 a 0000 & 00729894 a 0000 & 00730009 a 0000 & 00730082 a 0000 | free from external control and constraint; "an independent mind"; "a series of independent judgments"; "fiercely independent individualism" -00728103 00 s 02 autarkic 0 autarkical 0 002 & 00727564 a 0000 + 13993356 n 0201 | of countries; not relying on imports -00728225 00 s 03 autonomous 1 self-directed 0 self-reliant 0 003 & 00727564 a 0000 + 14001031 n 0303 + 14001031 n 0101 | (of persons) free from external control and constraint in e.g. action and judgment -00728431 00 s 01 autonomous 2 002 & 00727564 a 0000 + 13992514 n 0101 | existing as an independent entity; "the partitioning of India created two separate and autonomous jute economies" -00728619 00 s 03 breakaway 0 fissiparous 0 separatist 0 002 & 00727564 a 0000 + 10580030 n 0301 | having separated or advocating separation from another entity or policy or attitude; "a breakaway faction" -00728826 00 s 01 commutative 0 003 & 00727564 a 0000 ;c 06000644 n 0000 + 00139367 v 0101 | (of a binary operation) independent of order; as in e.g. "a x b = b x a" -00728993 00 s 03 free-living 0 nonparasitic 0 nonsymbiotic 0 002 & 00727564 a 0000 ;c 06037666 n 0000 | not parasitic on another organism -00729133 00 s 01 indie 0 001 & 00727564 a 0000 | (of pop groups) not affiliated with a major recording company -00729246 00 s 03 individual 0 case-by-case 0 item-by-item 0 001 & 00727564 a 0000 | separate and distinct from others of the same kind; "mark the individual pages"; "on a case-by-case basis" -00729439 00 s 03 self-sufficient 0 self-sufficing 0 self-sustaining 0 002 & 00727564 a 0000 + 14001031 n 0104 | able to provide for your own needs without help from others; "a self-sufficing economic unit" -00729647 00 s 01 self-supporting 0 001 & 00727564 a 0000 | financially independent; "now that my children are self-supporting" -00729776 00 s 01 single-handed 0 001 & 00727564 a 0000 | without help from others; "a single-handed accomplishment" -00729894 00 s 01 strong-minded 0 001 & 00727564 a 0000 | marked by vigorous independence of thought and judgment -00730009 00 s 01 unaffiliated 0 001 & 00727564 a 0000 | not affiliated -00730082 00 s 01 unconditional 0 001 & 00727564 a 0000 | not contingent; not determined or influenced by someone or something else -00730215 00 a 02 independent 2 main(a) 2 002 ;c 06174404 n 0000 ! 00730470 a 0101 | (of a clause) capable of standing syntactically alone as a complete sentence; "the main (or independent) clause in a complex sentence has at least a subject and a verb" -00730470 00 a 02 dependent 2 subordinate 3 002 ;c 06174404 n 0000 ! 00730215 a 0101 | (of a clause) unable to stand alone syntactically as a complete sentence; "a subordinate (or dependent) clause functions as a noun or adjective or adverb within a sentence" -00730731 00 a 02 partisan 0 partizan 0 005 + 10059582 n 0203 + 10059582 n 0102 ! 00731292 a 0101 & 00730896 a 0000 & 00730985 a 0000 | devoted to a cause or party -00730896 00 s 01 party-spirited 0 001 & 00730731 a 0000 | devoted to a political party -00730985 00 s 02 tendentious 0 tendencious 0 004 & 00730731 a 0000 + 06196584 n 0203 + 06196584 n 0103 + 06204289 n 0101 | having or marked by a strong tendency especially a controversial one; "a tendentious account of recent elections"; "distinguishing between verifiable fact and tendentious assertion" -00731292 00 a 02 nonpartisan 0 nonpartizan 0 005 ! 00730731 a 0101 & 00731471 a 0000 & 00731606 a 0000 & 00731725 a 0000 + 10361390 n 0101 | free from party affiliation or bias -00731471 00 s 04 bipartisan 0 bipartizan 0 two-party 0 two-way 0 001 & 00731292 a 0000 | supported by both sides; "a two-way treaty" -00731606 00 s 01 independent 0 002 & 00731292 a 0000 + 13994148 n 0101 | not controlled by a party or interest group -00731725 00 s 02 unbiased 0 unbiassed 0 001 & 00731292 a 0000 | without bias -00731804 00 a 01 aligned 1 002 ! 00732037 a 0101 & 00731955 a 0000 | brought into agreement or cooperation on the side of a faction, party, or cause -00731955 00 s 01 allied 0 001 & 00731804 a 0000 | joined by treaty or agreement -00732037 00 a 01 nonaligned 0 002 ! 00731804 a 0101 & 00732160 a 0000 | not affiliated with any faction, party, or cause -00732160 00 s 01 neutral 0 003 & 00732037 a 0000 + 10355142 n 0101 + 01240850 n 0101 | not supporting or favoring either side in a war, dispute, or contest -00732318 00 a 01 descriptive 0 002 ;c 06174404 n 0000 ! 00732456 a 0101 | describing the structure of a language; "descriptive grammar" -00732456 00 a 02 prescriptive 0 normative 0 003 ;c 06174404 n 0000 + 00747135 v 0102 ! 00732318 a 0101 | pertaining to giving directives or rules; "prescriptive grammar is concerned with norms of or rules for correct usage" -00732682 00 a 01 descriptive 2 002 + 00965035 v 0102 ! 00732872 a 0101 | serving to describe or inform or characterized by description; "the descriptive variable"; "a descriptive passage" -00732872 00 a 01 undescriptive 0 001 ! 00732682 a 0101 | not successful in describing -00732960 00 a 01 desirable 0 010 ^ 01459422 a 0000 ^ 02526925 a 0000 + 05141840 n 0102 + 05141840 n 0101 ! 00733905 a 0101 & 00733297 a 0000 & 00733406 a 0000 & 00733541 a 0000 & 00733632 a 0000 & 00733743 a 0000 | worth having or seeking or achieving; "a desirable job"; "computer with many desirable features"; "a desirable outcome" -00733297 00 s 04 coveted 0 desired 0 in_demand(p) 0 sought_after 0 001 & 00732960 a 0000 | greatly desired -00733406 00 s 02 delectable 0 sexually_attractive 0 001 & 00732960 a 0000 | capable of arousing desire; "the delectable Miss Haynes" -00733541 00 s 01 enviable 0 001 & 00732960 a 0000 | causing envy; "an enviable position" -00733632 00 s 01 plummy 0 002 & 00732960 a 0000 ;u 07075172 n 0000 | very desirable; "a plummy leading role" -00733743 00 s 02 preferable 0 preferred 0 001 & 00732960 a 0000 | more desirable than another; "coffee is preferable to tea"; "Danny's preferred name is `Dan'" -00733905 00 a 02 undesirable 0 unwanted 1 006 ^ 01460421 a 0000 ^ 02527734 a 0000 + 10737264 n 0101 + 05142008 n 0101 ! 00732960 a 0101 & 00734187 a 0000 | not wanted; "undesirable impurities in steel"; "legislation excluding undesirable aliens";"removed the unwanted vegetation" -00734187 00 s 01 unenviable 0 001 & 00733905 a 0000 | so undesirable as to be incapable of arousing envy; "unenviable notoriety" -00734318 00 a 01 destroyed 0 018 ^ 00679147 a 0000 ! 00737246 a 0101 & 00734798 a 0000 & 00734906 a 0000 & 00735088 a 0000 & 00735195 a 0000 & 00735336 a 0000 & 00735608 a 0000 & 00735709 a 0000 & 00735882 a 0000 & 00736020 a 0000 & 00736196 a 0000 & 00736299 a 0000 & 00736511 a 0000 & 00736671 a 0000 & 00736879 a 0000 & 00737033 a 0000 & 00737116 a 0000 | spoiled or ruined or demolished; "war left many cities destroyed"; "Alzheimer's is responsible for her destroyed mind" -00734798 00 s 03 annihilated 0 exterminated 0 wiped_out(p) 0 001 & 00734318 a 0000 | destroyed completely -00734906 00 s 02 blighted 0 spoilt 0 001 & 00734318 a 0000 | affected by blight; anything that mars or prevents growth or prosperity; "a blighted rose"; "blighted urban districts" -00735088 00 s 03 blotted_out 0 obliterate 0 obliterated 0 001 & 00734318 a 0000 | reduced to nothingness -00735195 00 s 03 broken 0 wiped_out(p) 2 impoverished 0 001 & 00734318 a 0000 | destroyed financially; "the broken fortunes of the family" -00735336 00 s 05 burned 0 burnt 0 burned-over 0 burned-out 0 burnt-out 0 001 & 00734318 a 0000 | destroyed or badly damaged by fire; "a row of burned houses"; "a charred bit of burnt wood"; "a burned-over site in the forest"; "barricaded the street with burnt-out cars" -00735608 00 s 03 demolished 0 dismantled 0 razed 0 001 & 00734318 a 0000 | torn down and broken up -00735709 00 s 05 despoiled 0 pillaged 0 raped 0 ravaged 2 sacked 0 001 & 00734318 a 0000 | having been robbed and destroyed by force and violence; "the raped countryside" -00735882 00 s 03 done_for(p) 0 kaput(p) 0 gone(a) 0 002 & 00734318 a 0000 ;u 07075172 n 0000 | destroyed or killed; "we are gone geese" -00736020 00 s 01 extinguished 0 002 & 00734318 a 0000 ;c 06136258 n 0000 | of a conditioned response; caused to die out because of the absence or withdrawal of reinforcement -00736196 00 s 01 fallen 0 001 & 00734318 a 0000 | having fallen in or collapsed; "a fallen building" -00736299 00 s 02 finished 0 ruined 2 001 & 00734318 a 0000 | brought to ruin; "after the revolution the aristocracy was finished"; "the unsuccessful run for office left him ruined politically and economically" -00736511 00 s 01 scorched 0 001 & 00734318 a 0000 | having everything destroyed so nothing is left salvageable by an enemy; "Sherman's scorched earth policy" -00736671 00 s 02 shattered 0 tattered 0 001 & 00734318 a 0000 | ruined or disrupted; "our shattered dreams of peace and prosperity"; "a tattered remnant of its former strength"; "my torn and tattered past" -00736879 00 s 01 totaled 0 001 & 00734318 a 0000 | used of automobiles; completely demolished; "the insurance adjuster declared the automobile totaled" -00737033 00 s 02 war-torn 0 war-worn 0 001 & 00734318 a 0000 | laid waste by war -00737116 00 s 01 wrecked 1 001 & 00734318 a 0000 | destroyed in an accident; "a wrecked ship"; "a highway full of wrecked cars" -00737246 00 a 01 preserved 1 006 ! 00734318 a 0101 & 00737432 a 0000 & 00737515 a 0000 & 00737619 a 0000 & 00737703 a 0000 & 00737801 a 0000 | kept intact or in a particular condition -00737432 00 s 01 conserved 0 001 & 00737246 a 0000 | protected from harm or loss -00737515 00 s 03 kept_up(p) 0 maintained 1 well-kept 0 001 & 00737246 a 0000 | kept in good condition -00737619 00 s 01 preservable 0 001 & 00737246 a 0000 | capable of being preserved -00737703 00 s 02 protected 0 saved 0 001 & 00737246 a 0000 | guarded from injury or destruction -00737801 00 s 02 retained 0 maintained 2 001 & 00737246 a 0000 | continued in your keeping or use or memory; "in...the retained pattern of dancers and guests remembered" -00737973 00 a 01 destructible 0 007 = 05043459 n 0000 + 01619929 v 0101 + 01564144 v 0101 + 05043459 n 0101 ! 00738368 a 0101 & 00738182 a 0000 & 00738284 a 0000 | easily destroyed; "destructible glassware" -00738182 00 s 01 abolishable 0 002 & 00737973 a 0000 + 02427334 v 0101 | capable of being abolished -00738284 00 s 01 destroyable 0 001 & 00737973 a 0000 | capable of being destroyed -00738368 00 a 01 indestructible 0 004 = 05043459 n 0000 + 05043621 n 0101 ! 00737973 a 0101 & 00738503 a 0000 | not easily destroyed -00738503 00 s 01 undestroyable 0 001 & 00738368 a 0000 | not capable of being destroyed -00738593 00 a 01 determinable 0 005 ^ 00301187 a 0000 ! 00739273 a 0101 & 00738829 a 0000 & 00739022 a 0000 & 00739163 a 0000 | capable of being determined or limited or fixed; "determinable velocities"; "matters determinable by law" -00738829 00 s 02 ascertainable 0 discoverable 0 004 & 00738593 a 0000 + 00918872 v 0104 + 00920336 v 0105 + 00721302 v 0101 | capable of being ascertained or found out; "ascertainable facts" -00739022 00 s 01 definable 0 001 & 00738593 a 0000 | capable of being defined, limited, or explained; "definable terms"; "definable rules" -00739163 00 s 01 judicable 0 001 & 00738593 a 0000 | capable of being judged or decided; "judicable issues" -00739273 00 a 02 indeterminable 0 undeterminable 0 006 ^ 00301777 a 0000 ^ 00740336 a 0000 ! 00738593 a 0101 & 00739495 a 0000 & 00739663 a 0000 & 00739789 a 0000 | not capable of being definitely decided or ascertained -00739495 00 s 01 indeterminate 0 002 & 00739273 a 0000 + 04757864 n 0102 | not capable of being determined; "the indeterminate number of plant species in the jungle" -00739663 00 s 02 unascertainable 0 undiscoverable 0 001 & 00739273 a 0000 | not able to be ascertained; resisting discovery -00739789 00 s 01 unpredictable 0 002 & 00739273 a 0000 + 04758313 n 0101 | unknown in advance; "an unpredictable (or indeterminable) future" -00739932 00 a 01 determinate 1 003 + 04754237 n 0101 ! 00740336 a 0101 & 00740217 a 0000 | precisely determined or limited or defined; especially fixed by rule or by a specific and constant cause; "a determinate distance"; "a determinate number"; "determinate variations in animals" -00740217 00 s 01 fixed 0 002 & 00739932 a 0000 + 04740655 n 0101 | (of a number) having a fixed and unchanging value -00740336 00 a 02 indeterminate 1 undetermined 4 007 ^ 00550777 a 0000 ^ 00739273 a 0000 ^ 00336168 a 0000 + 04757864 n 0102 ! 00739932 a 0101 & 00740767 a 0000 & 00740958 a 0000 | not precisely determined or established; not fixed or known in advance; "of indeterminate age"; "a zillion is a large indeterminate number"; "an indeterminate point of law"; "the influence of environment is indeterminate"; "an indeterminate future" -00740767 00 s 01 cost-plus 0 001 & 00740336 a 0000 | determining payment based on the actual cost of production plus an agreed-upon fee or rate of profit; "a cost-plus government contract" -00740958 00 s 01 open-ended 0 001 & 00740336 a 0000 | allowing for a spontaneous response; "an open-ended question" -00741076 00 a 01 determinate 2 003 ;c 06066555 n 0000 ! 00741459 a 0101 & 00741240 a 0000 | not continuing to grow indefinitely at the apex; "determinate growth" -00741240 00 s 01 cymose 0 002 & 00741076 a 0000 ;c 06066555 n 0000 | having a usually flat-topped flower cluster in which the main and branch stems each end in a flower that opens before those below it or to its side -00741459 00 a 01 indeterminate 2 003 ;c 06066555 n 0000 ! 00741076 a 0101 & 00741633 a 0000 | having a capacity for continuing to grow at the apex; "an indeterminate stem" -00741633 00 s 01 racemose 0 002 & 00741459 a 0000 ;c 06066555 n 0000 | having stalked flowers along an elongated stem that continue to open in succession from below as the stem continues to grow; "lilies of the valley are racemose" -00741867 00 a 01 developed 0 003 ! 00742425 a 0101 & 00742164 a 0000 & 00742316 a 0000 | being changed over time so as to be e.g. stronger or more complete or more useful; "the developed qualities of the Hellenic outlook"; "they have very small limbs with only two fully developed toes on each" -00742164 00 s 01 formulated 0 001 & 00741867 a 0000 | devised; developed according to an orderly plan; "he had well formulated opinions on schooling" -00742316 00 s 02 mature 0 matured 0 001 & 00741867 a 0000 | fully considered and perfected; "mature plans" -00742425 00 a 01 undeveloped 0 003 ! 00741867 a 0101 & 00742620 a 0000 & 00742714 a 0000 | not developed; "courses in interior design were rare and undeveloped"; "undeveloped social awareness" -00742620 00 s 01 budding 0 001 & 00742425 a 0000 | beginning to develop; "a budding genius" -00742714 00 s 02 vestigial 0 rudimentary 0 003 & 00742425 a 0000 ;c 06037666 n 0000 + 05604022 n 0201 | not fully developed in mature animals; "rudimentary wings" -00742879 00 a 01 dextral 0 005 ^ 00441781 a 0000 ^ 02028612 a 0000 ! 00743435 a 0101 & 00743183 a 0000 & 00743293 a 0000 | of or on the right; "a dextral gastropod shell with the apex upward has its opening on the right when facing the observer"; "a dextral flatfish lies with the right eye uppermost" -00743183 00 s 01 dexter 0 002 & 00742879 a 0000 ;c 05801594 n 0000 | on or starting from the wearer's right -00743293 00 s 02 dextrorse 0 dextrorsal 0 002 & 00742879 a 0000 ;c 06066555 n 0000 | spiraling upward from left to right; "dextrorse vines" -00743435 00 a 01 sinistral 0 005 ^ 00442057 a 0000 ^ 02029167 a 0000 ! 00742879 a 0101 & 00743742 a 0000 & 00743869 a 0000 | of or on the left; "a sinistral gastropod shell with the apex upward has its opening on the left when facing the observer"; "a sinistral flatfish lies with the left eye uppermost" -00743742 00 s 01 sinister 0 002 & 00743435 a 0000 ;c 05801594 n 0000 | on or starting from the wearer's left; "bar sinister" -00743869 00 s 02 sinistrorse 0 sinistrorsal 0 002 & 00743435 a 0000 ;c 06066555 n 0000 | spiraling upward from right to left; "sinistrorse vines" -00744017 00 a 01 diabatic 0 002 ;c 06090869 n 0000 ! 00744141 a 0101 | involving a transfer of heat; "a diabatic process" -00744141 00 a 01 adiabatic 0 002 ;c 06090869 n 0000 ! 00744017 a 0101 | occurring without loss or gain of heat; "adiabatic expansion" -00744277 00 a 01 differentiated 0 001 ! 00744506 a 0101 | made different (especially in the course of development) or shown to be different; "the differentiated markings of butterflies"; "the regionally differentiated results" -00744506 00 a 02 undifferentiated 0 uniform 4 005 + 00552458 v 0201 + 04769049 n 0201 + 04745370 n 0201 ! 00744277 a 0101 & 00744669 a 0000 | not differentiated -00744669 00 s 01 dedifferentiated 0 001 & 00744506 a 0000 | having experienced or undergone dedifferentiation or the loss of specialization in form or function; "the hebephrenic--the most severely dedifferentiated of all schizophrenic patients" -00744916 00 a 02 difficult 0 hard 6 025 ^ 00710260 a 0000 ^ 00836277 a 0000 ^ 01155354 a 0000 = 04709253 n 0000 + 04710588 n 0201 + 04709253 n 0102 ! 00749230 a 0101 & 00745642 a 0000 & 00745858 a 0000 & 00746047 a 0000 & 00746451 a 0000 & 00746819 a 0000 & 00746994 a 0000 & 00747226 a 0000 & 00747471 a 0000 & 00747576 a 0000 & 00747727 a 0000 & 00747910 a 0000 & 00748058 a 0000 & 00748359 a 0000 & 00748563 a 0000 & 00748674 a 0000 & 00748795 a 0000 & 00748947 a 0000 & 00749040 a 0000 | not easy; requiring great physical or mental effort to accomplish or comprehend or endure; "a difficult task"; "nesting places on the cliffs are difficult of access"; "difficult times"; "why is it so hard for you to keep a secret?" -00745642 00 s 02 ambitious 0 challenging 0 002 & 00744916 a 0000 + 07484547 n 0101 | requiring full use of your abilities or resources; "ambitious schedule"; "performed the most challenging task without a mistake" -00745858 00 s 01 arduous 0 002 & 00744916 a 0000 + 04709759 n 0101 | difficult to accomplish; demanding considerable mental effort and skill; "the arduous work of preparing a dictionary" -00746047 00 s 04 awkward 0 embarrassing 0 sticky 0 unenviable 0 002 & 00744916 a 0000 + 05162807 n 0101 | hard to deal with; especially causing pain or embarrassment; "awkward (or embarrassing or difficult) moments in the discussion"; "an awkward pause followed his remark"; "a sticky question"; "in the unenviable position of resorting to an act he had planned to save for the climax of the campaign" -00746451 00 s 06 baffling 0 elusive 0 knotty 0 problematic 0 problematical 0 tough 2 005 & 00744916 a 0000 + 04710866 n 0602 + 14410605 n 0501 + 14410605 n 0401 + 04766620 n 0303 | making great mental demands; hard to comprehend or solve or believe; "a baffling problem"; "I faced the knotty problem of what to have for breakfast"; "a problematic situation at home" -00746819 00 s 02 catchy 0 tricky 0 003 & 00744916 a 0000 + 04767182 n 0201 + 05164673 n 0101 | having concealed difficulty; "a catchy question"; "a tricky recipe to follow" -00746994 00 s 03 delicate 0 ticklish 0 touchy 0 001 & 00744916 a 0000 | difficult to handle; requiring great tact; "delicate negotiations with the big powers";"hesitates to be explicit on so ticklish a matter"; "a touchy subject" -00747226 00 s 01 fractious 0 001 & 00744916 a 0000 | unpredictably difficult in operation; likely to be troublesome; "rockets were much too fractious to be tested near thickly populated areas"; "fractious components of a communication system" -00747471 00 s 01 hard-fought 0 001 & 00744916 a 0000 | requiring great effort; "a hard-fought primary" -00747576 00 s 01 herculean 0 002 & 00744916 a 0000 + 09578005 n 0101 | extremely difficult; requiring the strength of a Hercules; "a herculean task" -00747727 00 s 02 nasty 0 tight 0 001 & 00744916 a 0000 | exasperatingly difficult to handle or circumvent; "a nasty problem"; "a good man to have on your side in a tight situation" -00747910 00 s 02 rocky 0 rough 0 001 & 00744916 a 0000 | full of hardship or trials; "the rocky road to success"; "they were having a rough time" -00748058 00 s 02 rugged 0 tough 1 003 & 00744916 a 0000 + 04710866 n 0202 + 04710588 n 0102 | very difficult; severely testing stamina or resolution; "a rugged competitive examination"; "the rugged conditions of frontier life"; "the competition was tough"; "it's a tough life"; "it was a tough job" -00748359 00 s 01 serious 0 001 & 00744916 a 0000 | requiring effort or concentration; complex and not easy to answer or solve; "raised serious objections to the proposal"; "the plan has a serious flaw" -00748563 00 s 01 tall(a) 0 002 & 00744916 a 0000 ;u 07075172 n 0000 | impressively difficult; "a tall order" -00748674 00 s 01 thorny 0 001 & 00744916 a 0000 | bristling with perplexities; "the thorny question of states' rights" -00748795 00 s 01 troublesome 0 002 & 00744916 a 0000 + 04711435 n 0101 | difficult to deal with; "a troublesome infection"; "a troublesome situation" -00748947 00 s 01 trying 0 001 & 00744916 a 0000 | hard to endure; "fell upon trying times" -00749040 00 s 01 vexed 0 001 & 00744916 a 0000 | causing difficulty in finding an answer or solution; much disputed; "the vexed issue of priorities"; "we live in vexed and troubled times" -00749230 00 a 01 easy 1 016 ^ 00838296 a 0000 ^ 02174896 a 0000 ^ 01156112 a 0000 ^ 00711528 a 0000 = 04708113 n 0000 + 04708113 n 0102 ! 00744916 a 0101 & 00749749 a 0000 & 00749947 a 0000 & 00750054 a 0000 & 00750296 a 0000 & 00750602 a 0000 & 00750712 a 0000 & 00750843 a 0000 & 00750926 a 0000 & 00751099 a 0000 | posing no difficulty; requiring little effort; "an easy job"; "an easy problem"; "an easy victory"; "the house is easy to heat"; "satisfied with easy answers"; "took the easy way out of his dilemma" -00749749 00 s 02 casual 0 effortless 0 003 & 00749230 a 0000 + 04708543 n 0201 + 04912240 n 0101 | not showing effort or strain; "a difficult feat performed with casual mastery"; "careless grace" -00749947 00 s 01 clean 0 001 & 00749230 a 0000 | without difficulties or problems; "a clean test flight" -00750054 00 s 03 cushy 0 soft 0 easygoing 0 002 & 00749230 a 0000 ;u 07075172 n 0000 | not burdensome or demanding; borne or done easily and without hardship; "what a cushy job!"; "the easygoing life of a parttime consultant"; "a soft job" -00750296 00 s 04 elementary 0 simple 0 uncomplicated 0 unproblematic 0 003 & 00749230 a 0000 + 04708113 n 0204 + 04708113 n 0203 | easy and not involved or complicated; "an elementary problem in statistics"; "elementary, my dear Watson"; "a simple game"; "found an uncomplicated solution to the problem" -00750602 00 s 01 hands-down 0 001 & 00749230 a 0000 | achieved without great effort; "a hands-down victory" -00750712 00 s 01 painless 0 001 & 00749230 a 0000 | requiring little hard work or exertion; "a painless solution to the problem" -00750843 00 s 01 simplified 0 001 & 00749230 a 0000 | made easy or uncomplicated -00750926 00 s 01 smooth 0 002 & 00749230 a 0000 + 04709011 n 0101 | lacking obstructions or difficulties; "the bill's path through the legislature was smooth and orderly" -00751099 00 s 01 user-friendly 0 001 & 00749230 a 0000 | easy to use -00751170 00 a 01 digitigrade 0 002 ;c 01861778 n 0000 ! 00751353 a 0101 | (of mammals) walking on the toes with the posterior part of the foot raised (as cats, dogs, and horses do) -00751353 00 a 01 plantigrade 0 002 ;c 01861778 n 0000 ! 00751170 a 0101 | (of mammals) walking on the whole sole of the foot (as rabbits, raccoons, bears, and humans do) -00751525 00 a 01 dignified 0 005 ^ 00529266 a 0000 ^ 00849357 a 0000 ! 00752392 a 0101 & 00751838 a 0000 & 00752110 a 0000 | having or expressing dignity; especially formality or stateliness in bearing or appearance; "her dignified demeanor"; "the director of the school was a dignified white-haired gentleman" -00751838 00 s 03 courtly 0 formal 0 stately 0 007 & 00751525 a 0000 + 04911894 n 0301 + 04911420 n 0202 + 08329322 n 0101 + 08051946 n 0101 + 03121040 n 0101 + 04813283 n 0101 | refined or imposing in manner or appearance; befitting a royal court; "a courtly gentleman" -00752110 00 s 04 distinguished 0 grand 0 imposing 0 magisterial 0 002 & 00751525 a 0000 + 04814238 n 0206 | used of a person's appearance or behavior; befitting an eminent person; "his distinguished bearing"; "the monarch's imposing presence"; "she reigned in magisterial beauty" -00752392 00 a 01 undignified 0 006 ^ 00531342 a 0000 ^ 00851103 a 0000 ! 00751525 a 0101 & 00752555 a 0000 & 00752714 a 0000 & 00752847 a 0000 | lacking dignity -00752555 00 s 04 demeaning 0 humbling 0 humiliating 0 mortifying 0 001 & 00752392 a 0000 | causing awareness of your shortcomings; "golf is a humbling game" -00752714 00 s 01 infra_dig(p) 0 001 & 00752392 a 0000 | beneath your dignity; "considered helping with the dishes to be infra dig" -00752847 00 s 03 pathetic 0 ridiculous 0 silly 0 003 & 00752392 a 0000 + 04891683 n 0304 + 01224517 n 0202 | inspiring scornful pity; "how silly an ardent and unsuccessful wooer can be especially if he is getting on in years"- Dashiell Hammett -00753093 00 a 02 statesmanlike 0 statesmanly 0 004 ^ 00758459 a 0000 ^ 00753504 a 0000 + 10650162 n 0201 ! 00753378 a 0101 | marked by the qualities of or befitting a statesman; "a man of statesmanlike judgment"; "a statesmanlike solution of the present perplexities"-V.L.Parrington -00753378 00 a 01 unstatesmanlike 0 002 ^ 00753659 a 0000 ! 00753093 a 0101 | not statesmanlike; "unstatesmanlike procedure" -00753504 00 a 01 presidential 0 002 ^ 00753093 a 0000 ! 00753659 a 0101 | befitting a president; "criticized the candidate for not looking presidential" -00753659 00 a 01 unpresidential 0 002 ^ 00753378 a 0000 ! 00753504 a 0101 | not presidential; "very unpresidential behavior" -00753786 00 a 01 dicotyledonous 0 002 ;c 00017222 n 0000 ! 00753922 a 0101 | (of a flowering plant) having two cotyledons in the seed -00753922 00 a 01 monocotyledonous 0 003 ;c 00017222 n 0000 + 11668117 n 0102 ! 00753786 a 0101 | (of a flowering plant) having a single cotyledon in the seed as in grasses and lilies -00754107 00 a 01 diligent 0 006 ^ 00292937 a 0000 ^ 00309021 a 0000 + 04865114 n 0101 ! 00754873 a 0101 & 00754393 a 0000 & 00754682 a 0000 | characterized by care and perseverance in carrying out tasks; "a diligent detective investigates all clues"; "a diligent search of the files" -00754393 00 s 02 assiduous 0 sedulous 0 005 & 00754107 a 0000 + 04866078 n 0202 + 04866078 n 0201 + 04865502 n 0101 + 04865502 n 0102 | marked by care and persistent effort; "her assiduous attempts to learn French"; "assiduous research"; "sedulous pursuit of legal and moral principles" -00754682 00 s 04 hardworking 0 industrious 0 tireless 0 untiring 0 004 & 00754107 a 0000 + 04864824 n 0303 + 04865114 n 0203 + 04865114 n 0202 | characterized by hard work and perseverance -00754873 00 a 01 negligent 0 010 ^ 00311663 a 0000 ^ 00164863 a 0000 + 04665813 n 0101 + 00616153 v 0101 + 00616857 v 0101 ! 00754107 a 0101 & 00755220 a 0000 & 00755482 a 0000 & 00755742 a 0000 & 00755876 a 0000 | characterized by neglect and undue lack of concern; "negligent parents"; "negligent of detail"; "negligent in his correspondence" -00755220 00 s 04 derelict 0 delinquent 0 neglectful 0 remiss 0 003 & 00754873 a 0000 + 04666416 n 0403 + 04665813 n 0303 | failing in what duty requires; "derelict (or delinquent) in his duty"; "neglectful of his duties"; "remiss of you not to pay your bills" -00755482 00 s 02 lax 0 slack 0 004 & 00754873 a 0000 + 04666416 n 0204 + 04666416 n 0101 + 04666416 n 0102 | lacking in rigor or strictness; "such lax and slipshod ways are no longer acceptable"; "lax in attending classes"; "slack in maintaining discipline" -00755742 00 s 01 hit-and-run(a) 0 001 & 00754873 a 0000 | involving a driver of a motor vehicle who leaves the scene of an accident -00755876 00 s 02 inattentive 0 neglectful 2 003 & 00754873 a 0000 + 04665813 n 0203 + 04663319 n 0101 | not showing due care or attention; "inattentive students"; "an inattentive babysitter"; "neglectful parents" -00756091 00 a 02 diluted 0 dilute 0 004 ! 00756728 a 0101 & 00756327 a 0000 & 00756459 a 0000 & 00756638 a 0000 | reduced in strength or concentration or quality or purity; "diluted alcohol"; "a dilute solution"; "dilute acetic acid" -00756327 00 s 03 cut 0 thinned 0 weakened 0 001 & 00756091 a 0000 | mixed with water; "sold cut whiskey"; "a cup of thinned soup" -00756459 00 s 03 watery 0 washy 0 weak 0 003 & 00756091 a 0000 + 05113929 n 0101 + 04937427 n 0101 | overly diluted; thin and insipid; "washy coffee"; "watery milk"; "weak tea" -00756638 00 s 01 white 0 001 & 00756091 a 0000 | (of coffee) having cream or milk added -00756728 00 a 01 undiluted 0 004 ! 00756091 a 0101 & 00756897 a 0000 & 00757001 a 0000 & 00757120 a 0000 | not diluted; "undiluted milk"; "an undiluted racial strain" -00756897 00 s 01 black 0 002 & 00756728 a 0000 + 04960277 n 0102 | (of coffee) without cream or sugar -00757001 00 s 01 concentrated 0 001 & 00756728 a 0000 | of or relating to a solution whose dilution has been reduced -00757120 00 s 03 neat 0 straight 0 full-strength 0 001 & 00756728 a 0000 | without water; "took his whiskey neat" -00757236 00 a 01 saturated 0 002 ;c 06084469 n 0000 ! 00757408 a 0101 | used especially of organic compounds; having all available valence bonds filled; "saturated fats" -00757408 00 a 01 unsaturated 0 004 ;c 06084469 n 0000 ! 00757236 a 0101 & 00757634 a 0000 & 00757783 a 0000 | used of a compound (especially of carbon) containing atoms sharing more than one valence bond; "unsaturated fats" -00757634 00 s 01 monounsaturated 0 001 & 00757408 a 0000 | (of long-chain carbon compounds especially fats) saturated except for one multiple bond -00757783 00 s 01 polyunsaturated 0 001 & 00757408 a 0000 | (of long-chain carbon compounds especially fats) having many unsaturated bonds -00757923 00 a 02 saturated 1 concentrated 2 002 ! 00758290 a 0101 & 00758150 a 0000 | being the most concentrated solution possible at a given temperature; unable to dissolve still more of a substance; "a saturated solution" -00758150 00 s 01 supersaturated 0 001 & 00757923 a 0000 | being more concentrated than normally possible and therefore not in equilibrium -00758290 00 a 01 unsaturated 1 001 ! 00757923 a 0101 | not saturated; capable of dissolving more of a substance at a given temperature; "an unsaturated salt solution" -00758459 00 a 02 diplomatic 0 diplomatical 0 008 ^ 01813400 a 0000 + 10014658 n 0201 + 10013927 n 0201 + 04842029 n 0202 + 04842029 n 0102 ! 00759458 a 0101 & 00758800 a 0000 & 00759169 a 0000 | using or marked by tact in dealing with sensitive matters or people; "the hostess averted a confrontation with a diplomatic chenage of subject" -00758800 00 s 04 politic 0 smooth 0 suave 0 bland 0 006 & 00758459 a 0000 + 04629417 n 0401 + 04913322 n 0403 + 04913322 n 0302 + 04913322 n 0301 + 04913322 n 0204 | smoothly agreeable and courteous with a degree of sophistication; "he was too politic to quarrel with so important a personage"; "the manager pacified the customer with a smooth apology for the error" -00759169 00 s 02 tactful 0 kid-glove 0 002 & 00758459 a 0000 + 04841810 n 0102 | showing skill and sensitivity in dealing with people; "by diplomatic conduct he avoided antagonizing anyone"; "a tactful way of correcting someone"; "the agency got the kid-glove treatment on Capitol Hill" -00759458 00 a 01 undiplomatic 0 001 ! 00758459 a 0101 | not skilled in dealing with others -00759551 00 a 02 conciliatory 0 conciliative 0 008 + 01765392 v 0203 + 00764902 v 0204 + 00764902 v 0104 ! 00760577 a 0101 & 00759826 a 0000 & 00760149 a 0000 & 00760289 a 0000 & 00760473 a 0000 | intended to placate; "spoke in a conciliating tone"; "a conciliatory visit" -00759826 00 s 04 appeasing(a) 0 placating 0 placative 0 placatory 0 003 & 00759551 a 0000 + 01765392 v 0407 + 01765392 v 0307 | intended to pacify by acceding to demands or granting concessions; "the appeasing concessions to the Nazis at Munich"; "placating (or placative) gestures"; "an astonishingly placatory speech" -00760149 00 s 01 pacific 1 001 & 00759551 a 0000 | promoting peace; "the result of this pacific policy was that no troops were called up" -00760289 00 s 02 propitiative 0 propitiatory 0 003 & 00759551 a 0000 + 00765213 v 0201 + 00765213 v 0101 | intended to reconcile or appease; "sent flowers as a propitiatory gesture" -00760473 00 s 01 soft 0 002 & 00759551 a 0000 + 04910973 n 0102 | willing to negotiate and compromise -00760577 00 a 01 antagonistic 1 003 + 07548366 n 0101 ! 00759551 a 0101 & 00760783 a 0000 | arousing animosity or hostility; "his antagonistic brusqueness"; "Europe was antagonistic to the Unites States" -00760783 00 s 01 alienating 0 001 & 00760577 a 0000 | causing hostility or loss of friendliness; "her sudden alienating aloofness" -00760916 00 a 01 direct 0 009 ^ 02310895 a 0000 = 04918210 n 0000 ! 00762355 a 0101 & 00761260 a 0000 & 00761449 a 0000 & 00761592 a 0000 & 00761734 a 0000 & 00761844 a 0000 & 00762168 a 0000 | direct in spatial dimensions; proceeding without deviation or interruption; straight and short; "a direct route"; "a direct flight"; "a direct hit" -00761260 00 s 01 door-to-door 0 001 & 00760916 a 0000 | (of e.g. journeys or deliveries) direct from point of origin to point of destination ; "the limousine offers door-to-door service" -00761449 00 s 01 nonstop 0 001 & 00760916 a 0000 | (of a journey especially a flight) occurring without stops; "a nonstop flight to Atlanta" -00761592 00 s 01 point-blank 0 001 & 00760916 a 0000 | close enough to go straight to the target; "point-blank range"; "a point-blank shot" -00761734 00 s 01 straightforward 0 001 & 00760916 a 0000 | pointed directly ahead; "a straightforward gaze" -00761844 00 s 02 undeviating 0 unswerving 0 001 & 00760916 a 0000 | going directly ahead from one point to another without veering or turning aside; "some people see evolution as an undeviating upward march from simple organisms to the very complex"; "a straight and narrow tree-lined road unswerving across the lowlands" -00762168 00 s 01 through(a) 0 001 & 00760916 a 0000 | (of a route or journey etc.) continuing without requiring stops or changes; "a through street"; "a through bus"; "through traffic" -00762355 00 a 01 indirect 0 008 ^ 02311544 a 0000 = 04918210 n 0000 + 04919209 n 0101 ! 00760916 a 0101 & 00762721 a 0000 & 00763013 a 0000 & 00763272 a 0000 & 00763407 a 0000 | not direct in spatial dimension; not leading by a straight line or course to a destination; "sometimes taking an indirect path saves time"; "you must take an indirect course in sailing" -00762721 00 s 07 askance 0 askant 0 asquint 0 squint 0 squint-eyed 0 squinty 0 sidelong 0 001 & 00762355 a 0000 | (used especially of glances) directed to one side with or as if with doubt or suspicion or envy; "her eyes with their misted askance look"- Elizabeth Bowen; "sidelong glances" -00763013 00 s 03 devious 0 circuitous 0 roundabout 0 002 & 00762355 a 0000 + 04919712 n 0101 | deviating from a straight course; "a scenic but devious route"; "a long and circuitous journey by train and boat"; "a roundabout route avoided rush-hour traffic" -00763272 00 s 01 diversionary 0 002 & 00762355 a 0000 + 00350380 n 0101 | (of tactics e.g.) likely or designed to confuse or deceive -00763407 00 s 04 meandering(a) 0 rambling 0 wandering(a) 0 winding 0 001 & 00762355 a 0000 | of a path e.g.; "meandering streams"; "rambling forest paths"; "the river followed its wandering course"; "a winding country road" -00763633 00 a 01 direct 1 002 ;c 11449907 n 0000 ! 00763767 a 0101 | (of a current) flowing in one direction only; "direct current" -00763767 00 a 01 alternating 0 002 ;c 11449907 n 0000 ! 00763633 a 0101 | (of a current) reversing direction; "alternating current" -00763901 00 a 01 direct 2 013 ^ 01222360 a 0000 + 04871720 n 0105 ! 00766457 a 0101 & 00764301 a 0000 & 00764484 a 0000 & 00765173 a 0000 & 00765289 a 0000 & 00765410 a 0000 & 00765537 a 0000 & 00765666 a 0000 & 00765862 a 0000 & 00766102 a 0000 & 00766348 a 0000 | straightforward in means or manner or behavior or language or action; "a direct question"; "a direct response"; "a direct approach" -00764301 00 s 01 bluff 1 002 & 00763901 a 0000 + 04650913 n 0101 | bluntly direct and outspoken but good-natured; "a bluff but pleasant manner"; "a bluff and rugged natural leader" -00764484 00 s 09 blunt 0 candid 0 forthright 1 frank 0 free-spoken 0 outspoken 0 plainspoken 0 point-blank 0 straight-from-the-shoulder 0 007 & 00763901 a 0000 + 04650731 n 0602 + 04650731 n 0401 + 04871720 n 0404 + 04871720 n 0306 + 04871720 n 0203 + 04846383 n 0101 | characterized by directness in manner or speech; without subtlety or evasion; "blunt talking and straight shooting"; "a blunt New England farmer"; "I gave them my candid opinion"; "forthright criticism"; "a forthright approach to the problem"; "tell me what you think--and you may just as well be frank"; "it is possible to be outspoken without being rude"; "plainspoken and to the point"; "a point-blank accusation" -00765173 00 s 01 brutal 0 001 & 00763901 a 0000 | disagreeably direct and precise; "he spoke with brutal honesty" -00765289 00 s 01 flat-footed 1 002 & 00763901 a 0000 ;u 07075172 n 0000 | without reservation; "a flat-footed refusal" -00765410 00 s 01 man-to-man 0 001 & 00763901 a 0000 | forthright and honest; "had a man-to-man talk about the facts of life" -00765537 00 s 01 no-nonsense 0 001 & 00763901 a 0000 | not tolerating irrelevancies; "the no-nonsense tones of a stern parent" -00765666 00 s 02 plain 0 unvarnished 0 001 & 00763901 a 0000 | free from any effort to soften to disguise; "the plain and unvarnished truth"; "the unvarnished candor of old people and children" -00765862 00 s 01 pointed 0 002 & 00763901 a 0000 + 04919011 n 0101 | direct and obvious in meaning or reference; often unpleasant; "a pointed critique"; "a pointed allusion to what was going on"; "another pointed look in their direction" -00766102 00 s 03 square(a) 0 straightforward 0 straight 0 004 & 00763901 a 0000 + 04872016 n 0302 + 04867700 n 0202 + 04918498 n 0202 | without evasion or compromise; "a square contradiction"; "he is not being as straightforward as it appears" -00766348 00 s 01 upfront 0 001 & 00763901 a 0000 | frank and honest; "he was upfront about his intentions" -00766457 00 a 01 indirect 2 010 ! 00763901 a 0101 & 00766957 a 0000 & 00767133 a 0000 & 00767349 a 0000 & 00767626 a 0000 & 00768098 a 0000 & 00768397 a 0000 & 00768808 a 0000 & 00768927 a 0000 & 00769121 a 0000 | extended senses; not direct in manner or language or behavior or action; "making indirect but legitimate inquiries"; "an indirect insult"; "doubtless they had some indirect purpose in mind"; "though his methods are indirect they are not dishonest"; "known as a shady indirect fellow" -00766957 00 s 01 allusive 0 003 & 00766457 a 0000 + 01026728 v 0101 + 04919458 n 0101 | characterized by indirect references; "allusive speech is characterized by allusions" -00767133 00 s 01 backhanded 0 001 & 00766457 a 0000 | roundabout or ambiguous; "attacks from that source amounted to a backhanded compliment to his integrity"; "a backhanded and dishonest way of reaching his goal" -00767349 00 s 02 circuitous 0 roundabout 0 001 & 00766457 a 0000 | marked by obliqueness or indirection in speech or conduct; "the explanation was circuitous and puzzling"; "a roundabout paragraph"; "hear in a roundabout way that her ex-husband was marrying her best friend" -00767626 00 s 04 circumlocutious 0 circumlocutory 0 periphrastic 0 ambagious 0 005 & 00766457 a 0000 + 07090379 n 0403 + 07090379 n 0302 + 06761342 n 0101 + 07090379 n 0101 | roundabout and unnecessarily wordy; "had a preference for circumlocutious (or circumlocutory) rather than forthright expression"; "A periphrastic study in a worn-out poetical fashion,/ Leaving one still with the intolerable wrestle/ With words and meanings."-T.S.Eliot; (`ambagious' is archaic) -00768098 00 s 02 devious 0 oblique 0 004 & 00766457 a 0000 + 04874939 n 0202 + 04919712 n 0202 + 04875556 n 0102 | indirect in departing from the accepted or proper way; misleading; "used devious means to achieve success"; "gave oblique answers to direct questions"; "oblique political maneuvers" -00768397 00 s 04 digressive 0 discursive 0 excursive 0 rambling 0 003 & 00766457 a 0000 + 04919872 n 0201 + 00780575 v 0101 | (of e.g. speech and writing) tending to depart from the main point or cover a wide range of subjects; "amusingly digressive with satirical thrusts at women's fashions among other things"; "a rambling discursive book"; "his excursive remarks"; "a rambling speech about this and that" -00768808 00 s 01 hearsay 0 001 & 00766457 a 0000 | heard through another rather than directly; "hearsay information" -00768927 00 s 02 mealymouthed 0 mealy-mouthed 0 001 & 00766457 a 0000 | hesitant to state facts or opinions simply and directly as from e.g. timidity or hypocrisy; "a mealymouthed politician" -00769121 00 s 01 tortuous 0 002 & 00766457 a 0000 + 04766620 n 0104 | not straightforward; "his tortuous reasoning" -00769239 00 a 01 direct 3 002 ;c 06000644 n 0000 ! 00769489 a 0101 | similar in nature or effect or relation to another quantity; "a term is in direct proportion to another term if it increases (or decreases) as the other increases (or decreases)" -00769489 00 a 01 inverse 0 003 ;c 06000644 n 0000 ! 00769239 a 0101 & 00769761 a 0000 | opposite in nature or effect or relation to another quantity ; "a term is in inverse proportion to another term if it increases (or decreases) as the other decreases (or increases)" -00769761 00 s 01 reciprocal 0 001 & 00769489 a 0000 | of or relating to the multiplicative inverse of a quantity or function; "the reciprocal ratio of a:b is b:a" -00769926 00 a 01 direct 5 002 ;c 06095022 n 0000 ! 00770114 a 0101 | moving from west to east on the celestial sphere; or--for planets--around the sun in the same direction as the Earth -00770114 00 a 01 retrograde 5 002 ;c 06095022 n 0000 ! 00769926 a 0101 | moving from east to west on the celestial sphere; or--for planets--around the sun in a direction opposite to that of the Earth -00770316 00 a 01 immediate 0 004 = 04918767 n 0000 + 04918767 n 0102 ! 00770756 a 0101 & 00770480 a 0000 | having no intervening medium; "an immediate influence" -00770480 00 s 02 direct 0 unmediated 0 001 & 00770316 a 0000 | having no intervening persons, agents, conditions; "in direct sunlight"; "in direct contact with the voters"; "direct exposure to the disease"; "a direct link"; "the direct cause of the accident"; "direct vote" -00770756 00 a 01 mediate 0 005 = 04918767 n 0000 + 04919580 n 0102 ! 00770316 a 0101 & 00770993 a 0000 & 00771203 a 0000 | acting through or dependent on an intervening agency; "the disease spread by mediate as well as direct contact" -00770993 00 s 01 indirect 0 001 & 00770756 a 0000 | having intervening factors or persons or influences; "reflection from the ceiling provided a soft indirect light"; "indirect evidence"; "an indirect cause" -00771203 00 s 01 mediated 0 001 & 00770756 a 0000 | acting or brought about through an intervening agency; "the mediated settlement brought satisfaction to both sides" -00771373 00 a 01 discerning 0 006 ^ 00649586 a 0000 ^ 00774323 a 0000 ! 00772360 a 0101 & 00771616 a 0000 & 00771803 a 0000 & 00772137 a 0000 | having or revealing keen insight and good judgment; "a discerning critic"; "a discerning reader" -00771616 00 s 02 clear 0 percipient 0 003 & 00771373 a 0000 + 00591519 v 0201 + 04820258 n 0105 | characterized by ease and quickness in perceiving; "clear mind"; "a percipient author" -00771803 00 s 03 clear-eyed 0 clear-sighted 0 perspicacious 0 002 & 00771373 a 0000 + 05621439 n 0304 | mentally acute or penetratingly discerning; "too clear-eyed not to see what problems would follow"; "chaos could be prevented only by clear-sighted leadership"; "much too perspicacious to be taken in by so spurious an argument" -00772137 00 s 01 prescient 0 002 & 00771373 a 0000 + 05919431 n 0101 | perceiving the significance of events before they occur; "extraordinarily prescient memoranda on the probable course of postwar relations"-R.H.Rovere -00772360 00 a 01 undiscerning 0 004 ^ 00773759 a 0000 ! 00771373 a 0101 & 00772492 a 0000 & 00772776 a 0000 | lacking discernment -00772492 00 s 02 obtuse 0 purblind 0 002 & 00772360 a 0000 + 05646039 n 0102 | lacking in insight or discernment; "too obtuse to grasp the implications of his behavior"; "a purblind oligarchy that flatly refused to see that history was condemning it to the dustbin"- Jasper Griffin -00772776 00 s 01 uncomprehending 0 001 & 00772360 a 0000 | lacking understanding; "tried to explain to her uncomprehending husband" -00772910 00 a 01 discreet 0 002 + 04842029 n 0103 ! 00773109 a 0101 | marked by prudence or modesty and wise self-restraint; "his trusted discreet aide"; "a discreet, finely wrought gold necklace" -00773109 00 a 01 indiscreet 0 004 + 05616092 n 0102 ! 00772910 a 0101 & 00773299 a 0000 & 00773455 a 0000 | lacking discretion; injudicious; "her behavior was indiscreet at the very best" -00773299 00 s 04 bigmouthed 0 blabbermouthed 0 blabby 0 talkative 0 003 & 00773109 a 0000 + 04651382 n 0405 + 00937208 v 0403 | unwisely talking too much -00773455 00 s 01 imprudent 0 002 & 00773109 a 0000 + 04894037 n 0101 | lacking wise self-restraint; "an imprudent remark" -00773579 00 a 01 discriminate 0 002 ^ 00774323 a 0000 ! 00773759 a 0101 | marked by the ability to see or make fine distinctions; "discriminate judgments"; "discriminate people" -00773759 00 a 01 indiscriminate 0 005 ^ 01101391 a 0000 ^ 00775900 a 0000 ! 00773579 a 0101 & 00774006 a 0000 & 00774182 a 0000 | not marked by fine distinctions; "indiscriminate reading habits"; "an indiscriminate mixture of colors and styles" -00774006 00 s 01 promiscuous 0 001 & 00773759 a 0000 | not selective of a single class or person; "Clinton was criticized for his promiscuous solicitation of campaign money" -00774182 00 s 02 sweeping 0 wholesale 0 001 & 00773759 a 0000 | ignoring distinctions; "sweeping generalizations"; "wholesale destruction" -00774323 00 a 01 discriminating 0 010 ^ 00771373 a 0000 ^ 00773579 a 0000 ! 00775900 a 0101 & 00774676 a 0000 & 00774911 a 0000 & 00775135 a 0000 & 00775301 a 0000 & 00775486 a 0000 & 00775611 a 0000 & 00775693 a 0000 | showing or indicating careful judgment and discernment especially in matters of taste; "the discriminating eye of the connoisseur" -00774676 00 s 01 appreciative 0 002 & 00774323 a 0000 + 02256109 v 0104 | having or showing appreciation or a favorable critical judgment or opinion; "appreciative of a beautiful landscape"; "an appreciative laugh from the audience" -00774911 00 s 02 diacritic 0 diacritical 0 003 & 00774323 a 0000 + 06820964 n 0202 + 06820964 n 0102 | capable of distinguishing; "students having superior diacritic powers"; "the diacritic elements in culture"- S.F.Nadel -00775135 00 s 01 discerning 0 001 & 00774323 a 0000 | able to make or detect effects of great subtlety; sensitive; "discerning taste"; "a discerning eye for color" -00775301 00 s 02 discriminative 0 discriminatory 0 005 & 00774323 a 0000 + 02193765 v 0201 + 00650016 v 0201 + 02193765 v 0101 + 00650016 v 0101 | capable of making fine distinctions -00775486 00 s 01 eclectic 0 002 & 00774323 a 0000 + 05788713 n 0101 | selecting what seems best of various styles or ideas -00775611 00 s 01 good 0 001 & 00774323 a 0000 | generally admired; "good taste" -00775693 00 s 01 selective 0 003 & 00774323 a 0000 + 00674607 v 0103 + 05208988 n 0101 | tending to select; characterized by careful choice; "an exceptionally quick and selective reader"- John Mason Brown -00775900 00 a 02 undiscriminating 0 indiscriminating 0 006 ^ 00773759 a 0000 ! 00774323 a 0101 & 00776090 a 0000 & 00776192 a 0000 & 00776290 a 0000 & 00776406 a 0000 | not discriminating -00776090 00 s 01 indiscriminate 0 001 & 00775900 a 0000 | failing to make or recognize distinctions -00776192 00 s 01 scattershot 0 001 & 00775900 a 0000 | covering a wide range in a haphazard way -00776290 00 s 01 unperceptive 0 002 & 00775900 a 0000 + 04845146 n 0101 | lacking sensitivity, taste, or judgment -00776406 00 s 01 unselective 0 001 & 00775900 a 0000 | not selective or discriminating; "unselective in her reading habits; her choices seemed completely random" -00776570 00 a 01 disposable 1 002 ! 00776822 a 0101 & 00776706 a 0000 | designed to be disposed of after use; "disposable paper cups" -00776706 00 s 01 throwaway(p) 0 001 & 00776570 a 0000 | intended to be thrown away after use; "throwaway diapers" -00776822 00 a 01 nondisposable 1 001 ! 00776570 a 0101 | not designed to be thrown away after use -00776922 00 a 01 returnable 0 002 ! 00777238 a 0101 & 00777106 a 0000 | that may be returned; "returnable bottles and cans"; "this merchandise is returnable if you save the receipt" -00777106 00 s 01 revertible 0 002 & 00776922 a 0000 ;c 08441203 n 0000 | to be returned to the former owner or that owner's heirs -00777238 00 a 01 nonreturnable 0 001 ! 00776922 a 0101 | that may not be returned; "nonreturnable bottles cannot be exchanged for a deposit"; "sale merchandise is nonreturnable" -00777418 00 a 01 disposable 2 004 ! 00778161 a 0101 & 00777650 a 0000 & 00777891 a 0000 & 00778017 a 0000 | free or available for use or disposition; "every disposable piece of equipment was sent to the fire"; "disposable assets" -00777650 00 s 03 available 0 usable 0 useable 0 004 & 00777418 a 0000 + 01158872 v 0301 + 01158872 v 0201 + 04718999 n 0104 | convenient for use or disposal; "the house is available after July 1"; "2000 square feet of usable office space" -00777891 00 s 02 expendable 0 spendable 0 001 & 00777418 a 0000 | (used of funds) remaining after taxes; "spendable income" -00778017 00 s 02 fluid 0 liquid 0 002 & 00777418 a 0000 + 04737430 n 0201 | in cash or easily convertible to cash; "liquid (or fluid) assets" -00778161 00 a 01 nondisposable 2 002 ! 00777418 a 0101 & 00778270 a 0000 | (of assets) unavailable for use -00778270 00 s 01 frozen 0 001 & 00778161 a 0000 | not convertible to cash; "frozen assets" -00778363 00 a 01 distal 1 002 ;c 06057539 n 0000 ! 00778509 a 0101 | situated farthest from point of attachment or origin, as of a limb or bone -00778509 00 a 01 proximal 0 003 ;c 06057539 n 0000 + 05085867 n 0101 ! 00778363 a 0101 | situated nearest to point of attachment or origin; "the proximal end of a bone" -00778680 00 a 01 distal 2 003 ;c 06057539 n 0000 ! 00778958 a 0101 & 00778828 a 0000 | directed away from the midline or mesial plane of the body -00778828 00 s 01 lateral 0 001 & 00778680 a 0000 | lying away from the median and sagittal plane of a body; "lateral lemniscus" -00778958 00 a 01 mesial 0 004 ;c 06057539 n 0000 ! 00778680 a 0101 & 00779133 a 0000 & 00779240 a 0000 | being in or directed toward the midline or mesial plane of the body -00779133 00 s 02 medial 0 median 0 001 & 00778958 a 0000 | dividing an animal into right and left halves -00779240 00 s 01 sagittal 0 001 & 00778958 a 0000 | located in a plane that is parallel to the central plane of the sagittal suture -00779374 00 a 01 distinct 0 012 ^ 00428404 a 0000 ^ 00700451 a 0000 ^ 01837744 a 0000 + 04702688 n 0101 ! 00781168 a 0101 & 00779819 a 0000 & 00780011 a 0000 & 00780352 a 0000 & 00780575 a 0000 & 00780712 a 0000 & 00780944 a 0000 & 00781061 a 0000 | easy to perceive; especially clearly outlined; "a distinct flavor"; "a distinct odor of turpentine"; "a distinct outline"; "the ship appeared as a distinct silhouette"; "distinct fingerprints" -00779819 00 s 02 chiseled 0 well-defined 0 001 & 00779374 a 0000 | having a clean and distinct outline as if precisely cut along the edges; "a finely chiseled nose"; "well-defined features" -00780011 00 s 03 clear 0 clean-cut 0 clear-cut 0 003 & 00779374 a 0000 + 04821451 n 0302 + 04820258 n 0105 | clear and distinct to the senses; easily perceptible; "as clear as a whistle"; "clear footprints in the snow"; "the letter brought back a clear image of his grandfather"; "a spire clean-cut against the sky"; "a clear-cut pattern" -00780352 00 s 02 crisp 0 sharp 0 002 & 00779374 a 0000 + 04702688 n 0202 | (of something seen or heard) clearly defined; "a sharp photographic image"; "the sharp crack of a twig"; "the crisp snap of dry leaves underfoot" -00780575 00 s 01 crystalline 0 001 & 00779374 a 0000 | distinctly or sharply outlined; "crystalline sharpness of outline"- John Buchan -00780712 00 s 02 defined 0 outlined 0 001 & 00779374 a 0000 | showing clearly the outline or profile or boundary; "hills defined against the evening sky"; "the setting sun showed the outlined figure of a man standing on the hill" -00780944 00 s 01 knifelike 0 001 & 00779374 a 0000 | having a sharp or distinct edge; "a narrow knifelike profile" -00781061 00 s 01 razor-sharp 0 001 & 00779374 a 0000 | very clearly delineated; "razor-sharp definition" -00781168 00 a 01 indistinct 0 010 ^ 00701479 a 0000 ^ 00430191 a 0000 + 04704346 n 0101 ! 00779374 a 0101 & 00781539 a 0000 & 00781644 a 0000 & 00781974 a 0000 & 00782216 a 0000 & 00782568 a 0000 & 00782738 a 0000 | not clearly defined or easy to perceive or understand; "indistinct shapes in the gloom"; "an indistinct memory"; "only indistinct notions of what to do" -00781539 00 s 01 bedimmed 0 001 & 00781168 a 0000 | made dim or indistinct; "a sun bedimmed by clouds" -00781644 00 s 07 bleary 0 blurred 0 blurry 0 foggy 0 fuzzy 0 hazy 0 muzzy 0 008 & 00781168 a 0000 + 05684561 n 0603 + 04824695 n 0601 + 04704346 n 0505 + 05684561 n 0402 + 04704346 n 0404 + 05940414 n 0301 + 04704346 n 0303 | indistinct or hazy in outline; "a landscape of blurred outlines"; "the trees were just blurry shapes" -00781974 00 s 03 cloudy 0 nebulose 0 nebulous 0 002 & 00781168 a 0000 + 04703698 n 0101 | lacking definite form or limits; "gropes among cloudy issues toward a feeble conclusion"- H.T.Moore; "nebulous distinction between pride and conceit" -00782216 00 s 05 dim 0 faint 0 shadowy 0 vague 0 wispy 0 004 & 00781168 a 0000 + 04704839 n 0401 + 04704675 n 0202 + 04704675 n 0101 | lacking clarity or distinctness; "a dim figure in the distance"; "only a faint recollection"; "shadowy figures in the gloom"; "saw a vague outline of a building through the fog"; "a few wispy memories of childhood" -00782568 00 s 01 faint 2 001 & 00781168 a 0000 | indistinctly understood or felt or perceived; "a faint clue to the origin of the mystery"; "haven't the faintest idea" -00782738 00 s 01 veiled 0 001 & 00781168 a 0000 | muted or unclear; "veiled sounds"; "the image is veiled or foggy" -00782856 00 a 02 focused 0 focussed 4 001 ! 00782957 a 0101 | being in focus or brought into focus -00782957 00 a 02 unfocused 0 unfocussed 4 001 ! 00782856 a 0101 | (of an image) not being in or brought into focus; "at their edges things were pretty much out of focus" -00783129 00 a 01 diversified 0 003 ^ 01198737 a 0000 ! 00783675 a 0101 & 00783469 a 0000 | having variety of character or form or components; or having increased variety; "a diversified musical program ranging from classical to modern"; "diversified farming"; "diversified manufacturing"; "diversified scenery"; "diversified investments" -00783469 00 s 02 varied 0 wide-ranging 0 002 & 00783129 a 0000 + 04735556 n 0101 | widely different; "varied motives prompt people to join a political party"; "varied ethnic traditions of the immigrants" -00783675 00 a 01 undiversified 0 006 ^ 01199751 a 0000 ! 00783129 a 0101 & 00783840 a 0000 & 00784037 a 0000 & 00784215 a 0000 & 00784411 a 0000 | not diversified -00783840 00 s 01 general 0 004 & 00783675 a 0000 + 05818388 n 0101 + 05913275 n 0103 + 04764412 n 0101 | not specialized or limited to one class of things; "general studies"; "general knowledge" -00784037 00 s 01 monolithic 0 001 & 00783675 a 0000 | characterized by massiveness and rigidity and total uniformity; "a monolithic society"; "a monolithic worldwide movement" -00784215 00 s 03 solid 0 unanimous 0 whole 0 004 & 00783675 a 0000 + 00003553 n 0301 + 14460565 n 0303 + 13972387 n 0201 | acting together as a single undiversified whole; "a solid voting bloc" -00784411 00 s 01 undistributed 0 001 & 00783675 a 0000 | (of investments) not distributed among a variety of securities -00784533 00 a 01 divisible 0 010 + 02467662 v 0101 + 02031158 v 0102 + 01557774 v 0102 + 00642098 v 0101 ! 00785684 a 0101 & 00784922 a 0000 & 00785002 a 0000 & 00785298 a 0000 & 00785406 a 0000 & 00785555 a 0000 | capable of being or liable to be divided or separated; "even numbers are divisible by two"; "the Americans fought a bloody war to prove that their nation is not divisible" -00784922 00 s 01 cleavable 0 001 & 00784533 a 0000 | capable of being cleaved -00785002 00 s 03 dissociable 0 separable 1 severable 0 002 & 00784533 a 0000 + 14417993 n 0201 | capable of being divided or dissociated; "often drugs and crime are not dissociable"; "the siamese twins were not considered separable"; "a song...never conceived of as severable from the melody"; -00785298 00 s 01 dissociative 0 002 & 00784533 a 0000 + 00714273 v 0102 | tending to produce dissociation -00785406 00 s 01 dividable 0 002 & 00784533 a 0000 ;c 06000644 n 0000 | can be divided usually without leaving a remainder; "15 is dividable by 3" -00785555 00 s 01 partible 0 001 & 00784533 a 0000 | (of e.g. property) capable of being parted or divided; "a partible estate" -00785684 00 a 01 indivisible 0 004 ! 00784533 a 0101 & 00785889 a 0000 & 00786031 a 0000 & 00786173 a 0000 | impossible of undergoing division; "an indivisible union of states"; "one nation indivisible" -00785889 00 s 01 indiscrete 0 001 & 00785684 a 0000 | not divided or divisible into parts; "layers that were fused into an indiscrete mass" -00786031 00 s 02 undividable 0 indivisible_by(p) 0 002 & 00785684 a 0000 ;c 06000644 n 0000 | cannot be divided without leaving a remainder -00786173 00 s 01 inseparable 0 001 & 00785684 a 0000 | not capable of being separated; "inseparable pieces of rock" -00786291 00 a 01 documented 0 003 ! 00786790 a 0101 & 00786485 a 0000 & 00786624 a 0000 | furnished with or supported by documents; "the first documented case of shark attack in those waters" -00786485 00 s 01 referenced 0 001 & 00786291 a 0000 | supported with written references or citations; "a carefully referenced biography" -00786624 00 s 01 registered 0 002 & 00786291 a 0000 ;c 02858304 n 0000 | (of a boat or vessel) furnished with necessary official documents specifying ownership etc -00786790 00 a 01 undocumented 0 002 ! 00786291 a 0101 & 00787002 a 0000 | lacking necessary documents (as for e.g. permission to live or work in a country); "undocumented aliens"; "undocumented tax deductions" -00787002 00 s 01 unregistered 0 002 & 00786790 a 0000 ;c 02858304 n 0000 | (a boat or vessel) not furnished with official documents -00787136 00 a 01 domineering 0 009 ^ 01539642 a 0000 + 04888788 n 0102 ! 00788821 a 0101 & 00787357 a 0000 & 00787595 a 0000 & 00788032 a 0000 & 00788145 a 0000 & 00788268 a 0000 & 00788474 a 0000 | tending to domineer -00787357 00 s 03 authoritarian 0 dictatorial 0 overbearing 0 002 & 00787136 a 0000 + 04888788 n 0303 | expecting unquestioning obedience; "the timid child of authoritarian parents"; "insufferably overbearing behavior toward the waiter" -00787595 00 s 06 autocratic 0 bossy 0 dominating 0 high-and-mighty 0 magisterial 0 peremptory 0 002 & 00787136 a 0000 + 10104209 n 0205 | offensively self-assured or given to exercising usually unwarranted power; "an autocratic person"; "autocratic behavior"; "a bossy way of ordering others around"; "a rather aggressive and dominating character"; "managed the employees in an aloof magisterial way"; "a swaggering peremptory manner" -00788032 00 s 02 blustery 0 bullying 0 001 & 00787136 a 0000 | noisily domineering; tending to browbeat others -00788145 00 s 02 cavalier 0 high-handed 0 002 & 00787136 a 0000 + 04887912 n 0204 | given to haughty disregard of others -00788268 00 s 02 heavy-handed 0 roughshod 0 001 & 00787136 a 0000 | unjustly domineering; "incensed at the government's heavy-handed economic policies"; "a manager who rode roughshod over all opposition" -00788474 00 s 03 oppressive 0 tyrannical 0 tyrannous 0 007 & 00787136 a 0000 + 10735564 n 0301 + 10735298 n 0301 + 14443912 n 0202 + 07538674 n 0102 + 02585489 v 0102 + 02424652 v 0101 | marked by unjust severity or arbitrary behavior; "the oppressive government"; "oppressive laws"; "a tyrannical parent"; "tyrannous disregard of human rights" -00788821 00 a 01 submissive 0 013 ^ 01892953 a 0000 ^ 01612053 a 0000 ^ 02329355 a 0000 ^ 00156839 a 0000 + 04906471 n 0101 + 01118081 v 0101 + 00878348 v 0101 ! 00787136 a 0101 & 00789281 a 0000 & 00789392 a 0000 & 00789494 a 0000 & 00789871 a 0000 & 00789988 a 0000 | inclined or willing to submit to orders or wishes of others or showing such inclination; "submissive servants"; "a submissive reply"; "replacing troublemakers with more submissive people" -00789281 00 s 01 abject 0 001 & 00788821 a 0000 | showing humiliation or submissiveness; "an abject apology" -00789392 00 s 02 bowed 0 bowing 0 001 & 00788821 a 0000 | showing an excessively deferential manner -00789494 00 s 02 meek 0 spiritless 0 003 & 00788821 a 0000 + 04636610 n 0204 + 04889779 n 0101 | evidencing little spirit or courage; overly submissive or compliant; "compliant and anxious to suit his opinions of those of others"; "a fine fiery blast against meek conformity"- Orville Prescott; "she looked meek but had the heart of a lion"; "was submissive and subservient" -00789871 00 s 05 cringing 0 groveling 0 grovelling 0 wormlike 0 wormy 0 001 & 00788821 a 0000 | totally submissive -00789988 00 s 02 dominated 0 henpecked 0 001 & 00788821 a 0000 | harassed by persistent nagging -00790086 00 a 01 servile 0 006 + 04906712 n 0102 ! 00791131 a 0101 & 00790394 a 0000 & 00790540 a 0000 & 00790691 a 0000 & 00791044 a 0000 | submissive or fawning in attitude or behavior; "spoke in a servile tone"; "the incurably servile housekeeper"; "servile tasks such as floor scrubbing and barn work" -00790394 00 s 04 bootlicking 0 fawning 0 sycophantic 0 toadyish 0 002 & 00790086 a 0000 + 10684827 n 0301 | attempting to win favor by flattery -00790540 00 s 01 obsequious 0 002 & 00790086 a 0000 + 04906712 n 0101 | attentive in an ingratiating or servile manner; "obsequious shop assistants" -00790691 00 s 03 slavish 0 subservient 0 submissive 0 005 & 00790086 a 0000 + 04906471 n 0301 + 01118081 v 0301 + 13952466 n 0202 + 04906712 n 0203 | abjectly submissive; characteristic of a slave or servant; "slavish devotion to her job ruled her life"; "a slavish yes-man to the party bosses"- S.H.Adams; "she has become submissive and subservient" -00791044 00 s 01 slavelike 0 001 & 00790086 a 0000 | suitable for a slave or servant -00791131 00 a 02 unservile 0 unsubmissive 4 001 ! 00790086 a 0101 | not servile or submissive -00791227 00 a 01 dominant 1 013 ^ 02338615 a 0000 = 13945919 n 0000 + 14441825 n 0101 + 02646931 v 0101 + 02539334 v 0101 ! 00792991 a 0101 & 00791631 a 0000 & 00791944 a 0000 & 00792075 a 0000 & 00792202 a 0000 & 00792476 a 0000 & 00792641 a 0000 & 00792769 a 0000 | exercising influence or control; "television plays a dominant role in molding public opinion"; "the dominant partner in the marriage" -00791631 00 s 03 ascendant 0 ascendent 0 dominating 0 006 & 00791227 a 0000 + 14441825 n 0205 + 14441825 n 0203 + 14442361 n 0101 + 14441825 n 0104 + 14441825 n 0102 | most powerful or important or influential; "the economically ascendant class"; "D-day is considered the dominating event of the war in Europe" -00791944 00 s 01 controlling 0 001 & 00791227 a 0000 | able to control or determine policy; "a controlling interest in the firm" -00792075 00 s 01 governing 0 001 & 00791227 a 0000 | responsible for making and enforcing rules and laws; "governing bodies" -00792202 00 s 06 overriding 0 paramount 0 predominant 0 predominate 0 preponderant 0 preponderating 0 004 & 00791227 a 0000 + 05191486 n 0501 + 02645597 v 0501 + 14442749 n 0301 | having superior power and influence; "the predominant mood among policy-makers is optimism" -00792476 00 s 01 possessive 0 003 & 00791227 a 0000 + 04945942 n 0101 + 02204692 v 0103 | having or showing a desire to control or dominate; "a possessive parent" -00792641 00 s 02 sovereign 0 supreme 0 001 & 00791227 a 0000 | greatest in status or authority or power; "a supreme tribunal" -00792769 00 s 01 superior 0 002 & 00791227 a 0000 + 13950440 n 0103 | (sometimes followed by `to') not subject to or influenced by; "overcome by a superior opponent"; "trust magnates who felt themselves superior to law" -00792991 00 a 02 subordinate 1 low-level 4 010 ^ 02340213 a 0000 ^ 02329355 a 0000 = 13945919 n 0000 + 10669991 n 0101 + 13951984 n 0101 ! 00791227 a 0101 & 00793250 a 0000 & 00793426 a 0000 & 00793592 a 0000 & 00793682 a 0000 | lower in rank or importance -00793250 00 s 02 adjunct 0 assistant 0 004 & 00792991 a 0000 + 09815790 n 0201 + 02414710 v 0201 + 09769803 n 0101 | of or relating to a person who is subordinate to another -00793426 00 s 01 associate(a) 0 001 & 00792991 a 0000 | having partial rights and privileges or subordinate status; "an associate member"; "an associate professor" -00793592 00 s 01 secondary 0 001 & 00792991 a 0000 | belonging to a lower class or rank -00793682 00 s 01 under(a) 0 001 & 00792991 a 0000 | lower in rank, power, or authority; "an under secretary" -00793793 00 a 01 dominant 2 004 ;c 06075527 n 0000 + 05438130 n 0102 + 11413800 n 0101 ! 00793988 a 0101 | (of genes) producing the same phenotype whether its allele is identical or dissimilar -00793988 00 a 01 recessive 0 002 ;c 06075527 n 0000 ! 00793793 a 0101 | (of genes) producing its characteristic phenotype only when its allele is identical -00794146 00 a 02 single-barreled 0 single-barrelled 0 001 ! 00794277 a 0101 | having one barrel; "most guns are single-barreled" -00794277 00 a 02 double-barreled 0 double-barrelled 0 001 ! 00794146 a 0101 | having two barrels mounted side by side; "a double-barreled shotgun" -00794426 00 a 01 double-breasted 0 001 ! 00794650 a 0101 | (of clothing) fastened by lapping one edge of the front well over the other usually with a double row of buttons; "double-breasted jacket"; "double-breasted suit" -00794650 00 a 01 single-breasted 0 001 ! 00794426 a 0101 | (of clothing) closing with a narrow overlap and fastened with a single row of buttons; "a single-breasted jacket" -00794825 00 a 01 dramatic 0 006 = 04626705 n 0000 + 07290278 n 0101 ! 00795495 a 0101 & 00795078 a 0000 & 00795246 a 0000 & 00795395 a 0000 | suitable to or characteristic of drama; "a dramatic entrance in a swirling cape"; "a dramatic rescue at sea" -00795078 00 s 01 melodramatic 2 001 & 00794825 a 0000 | having the excitement and emotional appeal of melodrama; "a melodramatic account of two perilous days at sea" -00795246 00 s 01 spectacular 0 002 & 00794825 a 0000 + 04271891 n 0101 | characteristic of spectacles or drama; "spectacular dives from the cliff" -00795395 00 s 01 hammy 0 002 & 00794825 a 0000 + 10158010 n 0101 | affectedly dramatic; overacted -00795495 00 a 01 undramatic 0 003 = 04626705 n 0000 ! 00794825 a 0101 & 00795671 a 0000 | lacking dramatic force and quality; "moved with quiet force and undramatic bearing" -00795671 00 s 01 unspectacular 0 001 & 00795495 a 0000 | not spectacular; "an unspectacular but necessary task" -00795785 00 a 01 actable 0 004 + 02744977 v 0101 + 01719921 v 0101 + 01719302 v 0101 ! 00795959 a 0101 | capable of being acted; suitable for the stage; "an actable scene" -00795959 00 a 01 unactable 0 001 ! 00795785 a 0101 | not actable; "an unactable play" -00796047 00 a 01 theatrical 0 007 + 06893885 n 0102 + 07006119 n 0104 + 04788693 n 0102 ! 00796928 a 0101 & 00796337 a 0000 & 00796591 a 0000 & 00796715 a 0000 | suited to or characteristic of the stage or theater; "a theatrical pose"; "one of the most theatrical figures in public life" -00796337 00 s 02 histrionic 0 melodramatic 1 003 & 00796047 a 0000 + 07016648 n 0201 + 06893885 n 0104 | characteristic of acting or a stage performance; often affected; "histrionic gestures"; "an attitude of melodramatic despair"; "a theatrical pose" -00796591 00 s 01 showy 0 003 & 00796047 a 0000 + 00520257 n 0101 + 04699936 n 0104 | displaying brilliance and virtuosity -00796715 00 s 02 stagy 0 stagey 0 004 & 00796047 a 0000 + 07006712 n 0201 + 07006712 n 0101 + 04788693 n 0101 | having characteristics of the stage especially an artificial and mannered quality; "stagy heroics" -00796928 00 a 01 untheatrical 0 001 ! 00796047 a 0101 | not suited to or characteristic of the stage or theater; "a well-written but untheatrical play"; "an untheatrical personality" -00797113 00 a 02 drinkable 0 potable 0 002 + 07881800 n 0204 ! 00797218 a 0101 | suitable for drinking -00797218 00 a 01 undrinkable 0 001 ! 00797113 a 0101 | unsuitable for drinking -00797299 00 a 03 intoxicated 0 drunk 0 inebriated 0 012 + 10037080 n 0201 + 10037385 n 0202 ! 00799517 a 0101 & 00797706 a 0000 & 00798017 a 0000 & 00798103 a 0000 & 00798384 a 0000 & 00798491 a 0000 & 00798879 a 0000 & 00799129 a 0000 & 00799224 a 0000 & 00799401 a 0000 | stupefied or excited by a chemical substance (especially alcohol); "a noisy crowd of intoxicated sailors"; "helplessly inebriated" -00797706 00 s 05 bacchanalian 0 bacchanal 0 bacchic 0 carousing 0 orgiastic 0 005 & 00797299 a 0000 + 00511212 n 0501 + 01030280 n 0501 + 00511212 n 0206 + 00511212 n 0106 | used of riotously drunken merrymaking; "a night of bacchanalian revelry"; "carousing bands of drunken soldiers"; "orgiastic festivity" -00798017 00 s 01 beery 0 002 & 00797299 a 0000 + 07886849 n 0101 | smelling of beer -00798103 00 s 15 besotted 0 blind_drunk 1 blotto 0 crocked 0 cockeyed 0 fuddled 0 loaded 0 pie-eyed 0 pissed 0 pixilated 0 plastered 0 slopped 0 sloshed 0 smashed 0 soaked 0 soused 0 sozzled 0 squiffy 0 stiff 0 tight 0 wet 0 002 & 00797299 a 0000 ;u 07157273 n 0000 | very drunk -00798384 00 s 03 potty 0 tiddly 0 tipsy 0 002 & 00797299 a 0000 + 14018567 n 0305 | slightly intoxicated -00798491 00 s 04 bibulous 2 boozy 0 drunken 2 sottish 0 005 & 00797299 a 0000 + 14019039 n 0401 + 04885990 n 0401 + 14018567 n 0301 + 07901587 n 0203 | given to or marked by the consumption of alcohol; "a bibulous fellow"; "a bibulous evening"; "his boozy drinking companions"; "thick boozy singing"; "a drunken binge"; "two drunken gentlemen holding each other up"; "sottish behavior" -00798879 00 s 04 doped 0 drugged 0 narcotized 0 narcotised 0 001 & 00797299 a 0000 | under the influence of narcotics; "knocked out by doped wine"; "a drugged sleep"; "were under the effect of the drugged sweets"; "in a stuperous narcotized state" -00799129 00 s 01 half-seas-over 0 001 & 00797299 a 0000 | British informal for `intoxicated' -00799224 00 s 02 high 0 mellow 0 003 & 00797299 a 0000 + 04656448 n 0201 + 14405452 n 0101 | slightly and pleasantly intoxicated from alcohol or a drug (especially marijuana) -00799401 00 s 02 hopped-up 0 stoned 0 002 & 00797299 a 0000 ;u 07075172 n 0000 | under the influence of narcotics -00799517 00 a 01 sober 1 006 + 14019138 n 0101 ! 00797299 a 0101 & 00799716 a 0000 & 00799800 a 0000 & 00799953 a 0000 & 00800159 a 0000 | not affected by a chemical substance (especially alcohol) -00799716 00 s 02 cold_sober 0 stone-sober 0 001 & 00799517 a 0000 | totally sober -00799800 00 s 01 drug-free 0 001 & 00799517 a 0000 | characteristic of a person not taking illegal drugs or of a place where no illegal drugs are used -00799953 00 s 02 dry 0 teetotal 0 002 & 00799517 a 0000 + 04883804 n 0102 | practicing complete abstinence from alcoholic beverages; "he's been dry for ten years"; "no thank you; I happen to be teetotal" -00800159 00 s 02 uninebriated 0 unintoxicated 0 001 & 00799517 a 0000 | not inebriated -00800248 00 a 01 dull 1 006 + 04705671 n 0101 ! 00800826 a 0101 & 00800464 a 0000 & 00800597 a 0000 & 00800678 a 0000 & 00800755 a 0000 | not having a sharp edge or point; "the knife was too dull to be of any use" -00800464 00 s 01 blunt 0 002 & 00800248 a 0000 + 04705671 n 0102 | used of a knife or other blade; not sharp; "a blunt instrument" -00800597 00 s 02 blunted 0 dulled 0 001 & 00800248 a 0000 | made dull or blunt -00800678 00 s 01 edgeless 0 001 & 00800248 a 0000 | lacking a cutting edge -00800755 00 s 01 unsharpened 0 001 & 00800248 a 0000 | not sharpened -00800826 00 a 01 sharp 0 019 ^ 01809655 a 0000 = 04705324 n 0000 + 04705324 n 0101 ! 00800248 a 0101 & 00801328 a 0000 & 00801462 a 0000 & 00801539 a 0000 & 00801616 a 0000 & 00801691 a 0000 & 00801874 a 0000 & 00801947 a 0000 & 00802020 a 0000 & 00802179 a 0000 & 00802300 a 0000 & 00802397 a 0000 & 00802514 a 0000 & 00802767 a 0000 & 00802844 a 0000 & 00802960 a 0000 | having or made by a thin edge or sharp point; suitable for cutting or piercing; "a sharp knife"; "a pencil with a sharp point" -00801328 00 s 01 carnassial 0 001 & 00800826 a 0000 | (of a tooth) adapted for shearing flesh; "the carnassial teeth of carnivores" -00801462 00 s 01 chisel-like 0 001 & 00800826 a 0000 | resembling a chisel -00801539 00 s 01 dagger-like 0 001 & 00800826 a 0000 | resembling a dagger -00801616 00 s 01 drill-like 0 001 & 00800826 a 0000 | resembling a drill -00801691 00 s 01 edged 0 001 & 00800826 a 0000 | having a cutting edge or especially an edge or edges as specified; often used in combination; "an edged knife"; "a two-edged sword" -00801874 00 s 01 fang-like 0 001 & 00800826 a 0000 | resembling a fang -00801947 00 s 01 file-like 0 001 & 00800826 a 0000 | resembling a file -00802020 00 s 01 incisive 0 004 & 00800826 a 0000 + 13904843 n 0101 + 00678010 n 0101 + 01555742 v 0101 | suitable for cutting or piercing; "incisive teeth" -00802179 00 s 01 keen 0 002 & 00800826 a 0000 + 04705324 n 0102 | having a sharp cutting edge or point; "a keen blade" -00802300 00 s 01 knifelike 0 001 & 00800826 a 0000 | cutting or able to cut as if with a knife -00802397 00 s 01 metal-cutting 0 001 & 00800826 a 0000 | hard and sharp enough to cut metal; "metal-cutting tools" -00802514 00 s 02 penetrative 0 penetrating 0 002 & 00800826 a 0000 + 01229071 v 0103 | tending to penetrate; having the power of entering or piercing; "a toxic penetrative spray applied to the surface"; "a cold penetrating wind"; "a penetrating odor" -00802767 00 s 01 razor-sharp 0 001 & 00800826 a 0000 | as sharp as a razor -00802844 00 s 01 sharpened 0 001 & 00800826 a 0000 | made sharp or sharper; "a sharpened knife cuts more cleanly" -00802960 00 s 01 sharp-toothed 0 001 & 00800826 a 0000 | having sharp teeth -00803038 00 a 01 sharp 4 006 + 04720226 n 0101 ! 00803971 a 0101 & 00803275 a 0000 & 00803432 a 0000 & 00803751 a 0000 & 00803846 a 0000 | keenly and painfully felt; as if caused by a sharp edge or point; "a sharp pain"; "sharp winds" -00803275 00 s 02 acute 0 intense 0 001 & 00803038 a 0000 | extremely sharp or intense; "acute pain"; "felt acute annoyance"; "intense itching and burning" -00803432 00 s 07 cutting 0 keen 0 knifelike 0 piercing 0 stabbing 0 lancinate 0 lancinating 0 001 & 00803038 a 0000 | painful as if caused by a sharp instrument; "a cutting wind"; "keen winds"; "knifelike cold"; "piercing knifelike pains"; "piercing cold"; "piercing criticism"; "a stabbing pain"; "lancinating pain" -00803751 00 s 01 fulgurating 0 002 & 00803038 a 0000 ;c 06043075 n 0000 | sharp and piercing -00803846 00 s 01 salt 0 001 & 00803038 a 0000 | (of speech) painful or bitter; "salt scorn"- Shakespeare; "a salt apology" -00803971 00 a 01 dull 4 003 + 04844891 n 0101 ! 00803038 a 0101 & 00804106 a 0000 | not keenly felt; "a dull throbbing"; "dull pain" -00804106 00 s 01 deadened 0 001 & 00803971 a 0000 | made or become less intense; "the deadened pangs of hunger" -00804220 00 a 01 eventful 0 002 ! 00804502 a 0101 & 00804371 a 0000 | full of events or incidents; "the most exhausting and eventful day of my life" -00804371 00 s 01 lively 0 002 & 00804220 a 0000 + 00552436 n 0101 | filled with events or activity; "a lively period in history" -00804502 00 a 01 uneventful 0 001 ! 00804220 a 0101 | marked by no noteworthy or significant events; "an uneventful life"; "the voyage was pleasant and uneventful"; "recovery was uneventful" -00804695 00 a 01 lively 0 016 ^ 00091311 a 0000 ^ 00118567 a 0000 ^ 00873603 a 0000 ^ 02434605 a 0000 ^ 02278939 a 0000 = 04632157 n 0000 + 00552436 n 0101 ! 00806512 a 0101 & 00805115 a 0000 & 00805309 a 0000 & 00805566 a 0000 & 00805676 a 0000 & 00805810 a 0000 & 00806064 a 0000 & 00806243 a 0000 & 00806387 a 0000 | full of life and energy; "a lively discussion"; "lively and attractive parents"; "a lively party" -00805115 00 s 01 alive(p) 0 002 & 00804695 a 0000 + 05005447 n 0102 | (often followed by `with') full of life and spirit; "she was wonderfully alive for her age"; "a face alive with mischief" -00805309 00 s 05 bouncing 0 bouncy 0 peppy 0 spirited 0 zippy 0 004 & 00804695 a 0000 + 04631700 n 0402 + 04634833 n 0301 + 04634833 n 0302 | marked by lively action; "a bouncing gait"; "bouncy tunes"; "the peppy and interesting talk"; "a spirited dance" -00805566 00 s 01 breezy 0 002 & 00804695 a 0000 + 04633797 n 0101 | fresh and animated; "her breezy nature" -00805676 00 s 01 bubbly 0 001 & 00804695 a 0000 | full of or showing high spirits; "bright bubbly children"; "a bubbly personality" -00805810 00 s 05 bubbling 0 effervescent 0 frothy 0 scintillating 0 sparkly 0 002 & 00804695 a 0000 + 04953380 n 0501 | marked by high spirits or excitement; "his fertile effervescent mind"; "scintillating personality"; "a row of sparkly cheerleaders" -00806064 00 s 04 burbling 0 burbly 0 effusive 0 gushing 0 002 & 00804695 a 0000 + 04651009 n 0301 | uttered with unrestrained enthusiasm; "a novel told in burbly panting tones" -00806243 00 s 01 live 0 002 & 00804695 a 0000 ;u 07075172 n 0000 | abounding with life and energy; "the club members are a really live bunch" -00806387 00 s 01 warm 0 001 & 00804695 a 0000 | characterized by liveliness or excitement or disagreement; "a warm debate" -00806512 00 a 01 dull 3 012 ^ 00408031 a 0000 ^ 02281325 a 0000 ^ 00119409 a 0000 = 05205739 n 0000 + 05205739 n 0101 ! 00804695 a 0101 & 00806991 a 0000 & 00807277 a 0000 & 00807399 a 0000 & 00807667 a 0000 & 00807817 a 0000 & 00808011 a 0000 | lacking in liveliness or animation; "he was so dull at parties"; "a dull political campaign"; "a large dull impassive man"; "dull days with nothing to do"; "how dull and dreary the world is"; "fell back into one of her dull moods" -00806991 00 s 03 arid 0 desiccate 0 desiccated 0 001 & 00806512 a 0000 | lacking vitality or spirit; lifeless; "a technically perfect but arid performance of the sonata"; "a desiccate romance"; "a prissy and emotionless creature...settles into a mold of desiccated snobbery"-C.J.Rolo -00807277 00 s 01 bovine 0 001 & 00806512 a 0000 | dull and slow-moving and stolid; like an ox; "showed a bovine apathy" -00807399 00 s 02 drab 0 dreary 0 003 & 00806512 a 0000 + 05206006 n 0202 + 04816528 n 0102 | lacking in liveliness or charm or surprise; "her drab personality"; "life was drab compared with the more exciting life style overseas"; "a series of dreary dinner parties" -00807667 00 s 02 heavy 0 leaden 0 002 & 00806512 a 0000 + 05206829 n 0102 | lacking lightness or liveliness; "heavy humor"; "a leaden conversation" -00807817 00 s 02 humdrum 0 monotonous 0 001 & 00806512 a 0000 | tediously repetitious or lacking in variety; "a humdrum existence; all work and no play"; "nothing is so monotonous as the sea" -00808011 00 s 04 lackluster 0 lacklustre 0 lusterless 0 lustreless 0 001 & 00806512 a 0000 | lacking brilliance or vitality; "a dull lackluster life"; "a lusterless performance" -00808191 00 a 02 dynamic 0 dynamical 0 013 ^ 00873603 a 0000 + 05030806 n 0203 + 04635482 n 0201 ! 00810481 a 0101 & 00808614 a 0000 & 00808822 a 0000 & 00808940 a 0000 & 00809164 a 0000 & 00809343 a 0000 & 00809622 a 0000 & 00809790 a 0000 & 00810164 a 0000 & 00810355 a 0000 | characterized by action or forcefulness or force of personality; "a dynamic market"; "a dynamic speaker"; "the dynamic president of the firm" -00808614 00 s 01 can-do 0 002 & 00808191 a 0000 ;u 07157273 n 0000 | marked by a willingness to tackle a job and get it done; "a can-do kind of person"; "the city's indomitable optimism and can-do spirit" -00808822 00 s 02 changing 0 ever-changing 0 001 & 00808191 a 0000 | marked by continuous change or effective action -00808940 00 s 02 driving 0 impulsive 0 002 & 00808191 a 0000 + 01650425 v 0201 | having the power of driving or impelling; "a driving personal ambition"; "the driving force was his innate enthusiasm"; "an impulsive force" -00809164 00 s 03 energizing 0 energising 0 kinetic 0 001 & 00808191 a 0000 | supplying motive force; "the complex civilization of which Rome was the kinetic center"- H.O.Taylor -00809343 00 s 05 high-octane 0 high-powered 0 high-power 0 high-voltage 0 high-energy 0 001 & 00808191 a 0000 | vigorously energetic or forceful; "a high-octane sales manager"; "a high-octane marketing plan"; "high-powered executives"; "a high-voltage theatrical entrepreneur" -00809622 00 s 01 projectile 0 003 & 00808191 a 0000 + 04099429 n 0102 + 04008634 n 0101 | impelling or impelled forward; "a projectile force"; "a projectile missile" -00809790 00 s 04 propellant 0 propellent 0 propelling 0 propulsive 0 006 & 00808191 a 0000 + 01511706 v 0401 + 14691822 n 0202 + 01511706 v 0201 + 14691822 n 0101 + 01511706 v 0101 | tending to or capable of propelling; "propellant fuel for submarines"; "the faster a jet plane goes the greater its propulsive efficiency"; "universities...the seats of propulsive thought" -00810164 00 s 02 self-propelled 0 self-propelling 0 001 & 00808191 a 0000 | moved forward by its own force or momentum; "a self-propelled egotist"; "the arms program is now self-propelled" -00810355 00 s 01 slashing 0 001 & 00808191 a 0000 | as if striking with slashing blows; "his slashing demon-ridden cadenza" -00810481 00 a 02 undynamic 0 adynamic 4 003 ! 00808191 a 0101 & 00810636 a 0000 & 00810764 a 0000 | characterized by an absence of force or forcefulness -00810636 00 s 01 backward 0 001 & 00810481 a 0000 | having made less than normal progress; "an economically backward country" -00810764 00 s 02 stagnant 0 moribund 0 003 & 00810481 a 0000 + 14012667 n 0102 + 02725286 v 0101 | not growing or changing; without force or vitality -00810916 00 a 01 eager 0 007 ^ 00885695 a 0000 + 07555184 n 0101 ! 00811820 a 0101 & 00811248 a 0000 & 00811421 a 0000 & 00811536 a 0000 & 00811707 a 0000 | having or showing keen interest or intense desire or impatient expectancy; "eager to learn"; "eager to travel abroad"; "eager for success"; "eager helpers"; "an eager look" -00811248 00 s 02 anxious(p) 0 dying(p) 0 002 & 00810916 a 0000 ;u 07075172 n 0000 | eagerly desirous; "anxious to see the new show at the museum"; "dying to hear who won" -00811421 00 s 01 hot 0 001 & 00810916 a 0000 | having or showing great eagerness or enthusiasm; "hot for travel" -00811536 00 s 02 impatient(p) 0 raring(p) 0 002 & 00810916 a 0000 + 07514071 n 0101 | (usually followed by `to') full of eagerness; "impatient to begin"; "raring to go" -00811707 00 s 01 overeager 0 001 & 00810916 a 0000 | excessively eager; "overeager in his pursuit of the girl" -00811820 00 a 01 uneager 0 002 ! 00810916 a 0101 & 00811969 a 0000 | lacking interest or spirit or animation; "decrepit, colorless uneager things" -00811969 00 s 01 reluctant 0 002 & 00811820 a 0000 + 04645943 n 0101 | not eager; "foreigners stubbornly reluctant to accept our ways"; "fresh from college and reluctant for the moment to marry him" -00812170 00 a 01 eared 0 006 ! 00812860 a 0101 & 00812417 a 0000 & 00812521 a 0000 & 00812626 a 0000 & 00812710 a 0000 & 00812785 a 0000 | having ears (or appendages resembling ears) or having ears of a specified kind; often used in combination -00812417 00 s 02 auriculate 0 auriculated 0 002 & 00812170 a 0000 + 05323889 n 0101 | having auricles -00812521 00 s 01 lop-eared 0 001 & 00812170 a 0000 | having bent or drooping ears; "a lop-eared hound" -00812626 00 s 01 mouse-eared 0 001 & 00812170 a 0000 | having ears like a mouse's -00812710 00 s 01 short-eared 0 001 & 00812170 a 0000 | having short ears -00812785 00 s 01 small-eared 0 001 & 00812170 a 0000 | having small ears -00812860 00 a 01 earless 0 001 ! 00812170 a 0101 | lacking external ears; "earless seals" -00812952 00 a 01 early 0 017 ^ 01010862 a 0000 = 05046009 n 0000 + 05046659 n 0101 ! 00815941 a 0101 ! 00816481 a 0101 & 00813589 a 0000 & 00813915 a 0000 & 00814073 a 0000 & 00814251 a 0000 & 00814468 a 0000 & 00814611 a 0000 & 00814902 a 0000 & 00815000 a 0000 & 00815227 a 0000 & 00815406 a 0000 & 00815586 a 0000 & 00815849 a 0000 | at or near the beginning of a period of time or course of events or before the usual or expected time; "early morning"; "an early warning"; "early diagnosis"; "an early death"; "took early retirement"; "an early spring"; "early varieties of peas and tomatoes mature before most standard varieties" -00813589 00 s 05 aboriginal 0 primal 0 primeval 0 primaeval 0 primordial 0 001 & 00812952 a 0000 | having existed from the beginning; in an earliest or original stage or state; "aboriginal forests"; "primal eras before the appearance of life on earth"; "the forest primeval"; "primordial matter"; "primordial forms of life" -00813915 00 s 02 advance(a) 0 beforehand(p) 0 001 & 00812952 a 0000 | being ahead of time or need; "gave advance warning"; "was beforehand with her report" -00814073 00 s 02 archean 0 archaean 0 003 & 00812952 a 0000 ;c 06115701 n 0000 + 15129220 n 0101 | of or relating to the earliest known rocks formed during the Precambrian Eon -00814251 00 s 02 archeozoic 0 archaeozoic 0 004 & 00812952 a 0000 ;c 06115701 n 0000 + 15129220 n 0205 + 15129220 n 0104 | of or belonging to earlier of two divisions of the Precambrian era; "archeozoic life forms" -00814468 00 s 01 azoic 0 002 & 00812952 a 0000 ;c 06115701 n 0000 | before the appearance of life; "azoic rocks contain not organic remains" -00814611 00 s 02 earlier 0 earliest 0 002 & 00812952 a 0000 ;u 06322693 n 0000 | (comparative and superlative of `early') more early than; most early; "a fashion popular in earlier times"; "his earlier work reflects the influence of his teacher"; "Verdi's earliest and most raucous opera" -00814902 00 s 01 earlyish 0 001 & 00812952 a 0000 | being somewhat early; "at an earlyish hour" -00815000 00 s 02 premature 0 untimely 0 003 & 00812952 a 0000 + 05049458 n 0202 + 14426736 n 0101 | uncommonly early or before the expected time; "illness led to his premature death"; "alcohol brought him to an untimely end" -00815227 00 s 02 previous(p) 0 premature 2 002 & 00812952 a 0000 + 14426736 n 0201 | too soon or too hasty; "our condemnation of him was a bit previous"; "a premature judgment" -00815406 00 s 01 proterozoic 0 003 & 00812952 a 0000 ;c 06115701 n 0000 + 15128997 n 0101 | formed in the later of two divisions of the Precambrian era; "proterozoic life forms" -00815586 00 s 01 proto(a) 0 002 & 00812952 a 0000 ;u 06307152 n 0000 | indicating the first or earliest or original; "`proto' is a combining form in a word like `protolanguage' that refers to the hypothetical ancestor of another language or group of languages" -00815849 00 s 01 wee 0 001 & 00812952 a 0000 | very early; "the wee hours of the morning" -00815941 00 a 01 middle 0 005 = 05046009 n 0000 ! 00816481 a 0101 ! 00812952 a 0101 & 00816160 a 0000 & 00816324 a 0000 | between an earlier and a later period of time; "in the middle years"; "in his middle thirties" -00816160 00 s 01 intervening 0 001 & 00815941 a 0000 | occurring or falling between events or points in time; "so much had happened during the intervening years" -00816324 00 s 01 mid(a) 0 001 & 00815941 a 0000 | used in combination to denote the middle; "midmorning"; "midsummer"; "in mid-1958"; "a mid-June wedding" -00816481 00 a 01 late 0 008 = 05046009 n 0000 + 05047059 n 0101 ! 00812952 a 0101 ! 00815941 a 0101 & 00816839 a 0000 & 00817004 a 0000 & 00817176 a 0000 & 00817242 a 0000 | being or occurring at an advanced period of time or after a usual or expected time; "late evening"; "late 18th century"; "a late movie"; "took a late flight"; "had a late breakfast" -00816839 00 s 02 advanced 0 ripe 0 001 & 00816481 a 0000 | far along in time; "a man of advanced age"; "advanced in years"; "a ripe old age"; "the ripe age of 90" -00817004 00 s 01 after-hours 0 001 & 00816481 a 0000 | after closing time especially a legally established closing time; "after-hours socializing"; "an after-hours club" -00817176 00 s 01 latish 0 001 & 00816481 a 0000 | somewhat late -00817242 00 s 01 posthumous 0 001 & 00816481 a 0000 | occurring or coming into existence after a person's death; "a posthumous award"; "a posthumous book"; "a posthumous daughter" -00817424 00 a 01 early 2 008 + 05046659 n 0101 ! 00819235 a 0101 & 00817731 a 0000 & 00818008 a 0000 & 00818175 a 0000 & 00818581 a 0000 & 00818829 a 0000 & 00819051 a 0000 | being or occurring at an early stage of development; "in an early stage"; "early forms of life"; "early man"; "an early computer" -00817731 00 s 02 archaic 0 primitive 1 003 & 00817424 a 0000 + 09627462 n 0201 + 14472624 n 0203 | little evolved from or characteristic of an earlier ancestral type; "archaic forms of life"; "primitive mammals"; "the okapi is a short-necked primitive cousin of the giraffe" -00818008 00 s 02 new 0 young 0 001 & 00817424 a 0000 | (of crops) harvested at an early stage of development; before complete maturity; "new potatoes"; "young corn" -00818175 00 s 03 crude 0 primitive 2 rude 0 005 & 00817424 a 0000 + 14472624 n 0305 + 14472624 n 0203 + 14472624 n 0101 + 14472624 n 0102 | belonging to an early stage of technical development; characterized by simplicity and (often) crudeness; "the crude weapons and rude agricultural implements of early man"; "primitive movies of the 1890s"; "primitive living conditions in the Appalachian mountains" -00818581 00 s 02 embryonic 0 embryotic 0 003 & 00817424 a 0000 + 01458842 n 0201 + 01458842 n 0101 | in an early stage of development; "the embryonic government staffed by survivors of the massacre"; "an embryonic nation, not yet self-governing" -00818829 00 s 02 incipient 0 inchoate 0 003 & 00817424 a 0000 + 15143012 n 0101 + 15143012 n 0102 | only partly in existence; imperfectly formed; "incipient civil disorder"; "an incipient tumor"; "a vague inchoate idea" -00819051 00 s 01 precocious 0 002 & 00817424 a 0000 ;c 06066555 n 0000 | appearing or developing early; "precocious flowers appear before the leaves as in some species of magnolias" -00819235 00 a 02 late 2 later(a) 2 004 + 05047059 n 0101 ! 00817424 a 0101 & 00819526 a 0000 & 00819709 a 0000 | at or toward an end or late period or stage of development; "the late phase of feudalism"; "a later symptom of the disease"; "later medical science could have saved the child" -00819526 00 s 01 advanced(a) 0 001 & 00819235 a 0000 | comparatively late in a course of development; "the illness had reached an advanced stage"; "an advanced state of exhaustion" -00819709 00 s 01 tardive 0 001 & 00819235 a 0000 | late-occurring (especially with reference to symptoms of a disease); "tardive dyskinesia" -00819852 00 a 01 early 1 005 ;c 06172789 n 0000 + 05046659 n 0101 ! 00820458 a 0101 ! 00820721 a 0101 & 00820219 a 0000 | of an early stage in the development of a language or literature; "the Early Hebrew alphabetical script is that used mainly from the 11th to the 6th centuries B.C."; "Early Modern English is represented in documents printed from 1476 to 1700" -00820219 00 s 01 Old 0 002 & 00819852 a 0000 ;c 06172789 n 0000 | of a very early stage in development; "Old English is also called Anglo Saxon"; "Old High German is High German from the middle of the 9th to the end of the 11th century" -00820458 00 a 01 middle 1 003 ;c 06172789 n 0000 ! 00820721 a 0101 ! 00819852 a 0101 | of a stage in the development of a language or literature between earlier and later stages; "Middle English is the English language from about 1100 to 1500"; "Middle Gaelic" -00820721 00 a 01 late 1 006 ;c 06172789 n 0000 + 05047059 n 0101 ! 00819852 a 0101 ! 00820458 a 0101 & 00820975 a 0000 & 00821208 a 0000 | of a later stage in the development of a language or literature; used especially of dead languages; "Late Greek" -00820975 00 s 02 Modern 0 New 1 004 & 00820721 a 0000 ;c 06172789 n 0000 + 10326551 n 0101 + 05050668 n 0102 | used of a living language; being the current stage in its development; "Modern English"; "New Hebrew is Israeli Hebrew" -00821208 00 s 01 New 2 002 & 00820721 a 0000 ;c 06172789 n 0000 | in use after medieval times; "New Eqyptian was the language of the 18th to 21st dynasties" -00821367 00 a 01 earned 0 002 ! 00821723 a 0101 & 00821603 a 0000 | gained or acquired; especially through merit or as a result of effort or action; "a well-earned reputation for honesty"; "earned income"; "an earned run in baseball" -00821603 00 s 01 attained 0 001 & 00821367 a 0000 | achieved or reached; "the actual attained achievement test score" -00821723 00 a 01 unearned 0 002 ! 00821367 a 0101 & 00821959 a 0000 | not gained by merit or labor or service; "accepted the unearned rewards that came his ways as well as the unearned criticism"; "unearned income"; "an unearned run" -00821959 00 s 01 honorary 0 003 & 00821723 a 0000 + 14436875 n 0101 + 06696483 n 0103 | given as an honor without the normal duties; "an honorary degree" -00822115 00 a 01 easy 2 004 ^ 00479330 a 0000 ^ 02407603 a 0000 + 07515974 n 0101 ! 00822449 a 0101 | free from worry or anxiety; "knowing that I had done my best, my mind was easy"; "an easy good-natured manner"; "by the time the chsild faced the actual problem of reading she was familiar and at ease with all the elements words" -00822449 00 a 01 uneasy 0 007 ^ 02405326 a 0000 ^ 00479933 a 0000 ^ 01923391 a 0000 + 07525057 n 0102 ! 00822115 a 0101 & 00822907 a 0000 & 00823192 a 0000 | lacking a sense of security or affording no ease or reassurance; "farmers were uneasy until rain finally came"; "uneasy about his health"; "gave an uneasy laugh"; "uneasy lies the head that wears the crown"; "an uneasy coalition government"; "an uneasy calm"; "an uneasy silence fell on the group" -00822907 00 s 02 apprehensive 0 worried 0 003 & 00822449 a 0000 + 01782432 v 0101 + 07521674 n 0102 | mentally upset over possible misfortune or danger etc; "apprehensive about her job"; "not used to a city and worried about small things"; "felt apprehensive about the consequences" -00823192 00 s 02 precarious 0 unstable 0 003 & 00822449 a 0000 + 04775747 n 0202 + 04756887 n 0103 | affording no ease or reassurance; "a precarious truce" -00823350 00 a 01 east 0 007 ! 00824321 a 0101 & 00823556 a 0000 & 00823665 a 0000 & 00823832 a 0000 & 00823971 a 0000 & 00824094 a 0000 & 00824183 a 0000 | situated in or facing or moving toward the east -00823556 00 s 02 eastbound 0 eastward 0 001 & 00823350 a 0000 | moving toward the east; "eastbound trains" -00823665 00 s 02 easterly 1 eastern 1 002 & 00823350 a 0000 + 11448343 n 0102 | from the east; used especially of winds; "an eastern wind"; "the winds are easterly" -00823832 00 s 02 easterly 2 eastern 2 001 & 00823350 a 0000 | lying in or toward the east; "the east side of New York"; "eastern cities" -00823971 00 s 01 eastern 0 001 & 00823350 a 0000 | lying toward or situated in the east; "the eastern end of the island" -00824094 00 s 02 easternmost 0 eastmost 0 001 & 00823350 a 0000 | farthest to the east -00824183 00 s 01 eastside 0 001 & 00823350 a 0000 | of the eastern part of a city e.g. Manhattan; "the eastside silk-stocking district" -00824321 00 a 01 west 0 006 ! 00823350 a 0101 & 00824509 a 0000 & 00824631 a 0000 & 00824753 a 0000 & 00824876 a 0000 & 00824965 a 0000 | situated in or facing or moving toward the west -00824509 00 s 03 westbound 0 westerly 3 westward 0 001 & 00824321 a 0000 | moving toward the west; "westbound pioneers" -00824631 00 s 01 western 0 001 & 00824321 a 0000 | lying toward or situated in the west; "our company's western office" -00824753 00 s 02 westerly 1 western 1 003 & 00824321 a 0000 + 11525614 n 0102 + 11525480 n 0102 | of wind; from the west -00824876 00 s 02 westernmost 0 westmost 0 001 & 00824321 a 0000 | farthest to the west -00824965 00 s 01 westside 0 001 & 00824321 a 0000 | of the western part of a city; "he lives in upper westside Manhattan" -00825089 00 a 01 western 1 004 = 08682575 n 0000 + 00523645 v 0103 ! 00825604 a 0101 & 00825375 a 0000 | relating to or characteristic of the western parts of the world or the West as opposed to the eastern or oriental parts; "the Western world"; "Western thought"; "Western thought" -00825375 00 s 02 occidental 0 Hesperian 0 003 & 00825089 a 0000 + 10369845 n 0101 + 08682575 n 0102 | denoting or characteristic of countries of Europe and the western hemisphere; "occidental civilization"; "Hesperian culture" -00825604 00 a 01 eastern 1 003 = 08562620 n 0000 ! 00825089 a 0101 & 00825807 a 0000 | relating to or characteristic of regions of eastern parts of the world; "Eastern Europe"; "the Eastern religions" -00825807 00 s 01 oriental 0 003 & 00825604 a 0000 + 09643078 n 0101 + 08562620 n 0102 | denoting or characteristic of countries of Asia; "oriental civilization" -00825970 00 a 01 western 2 006 = 08682819 n 0000 ! 00826959 a 0101 & 00826215 a 0000 & 00826403 a 0000 & 00826658 a 0000 & 00826827 a 0000 | of or characteristic of regions of the United States west of the Mississippi River; "a Western ranch" -00826215 00 s 01 southwestern 0 001 & 00825970 a 0000 | of a region of the United States generally including New Mexico; Arizona; Texas; California; and sometimes Nevada; Utah; Colorado -00826403 00 s 01 midwestern 0 001 & 00825970 a 0000 | of a region of the United States generally including Ohio; Indiana; Illinois; Iowa; Missouri; Kansas; Nebraska; and sometimes Michigan; Wisconsin; Minnesota; "a midwestern city"; "midwestern accent" -00826658 00 s 01 northwestern 0 001 & 00825970 a 0000 | of a region of the United States generally including Washington; Oregon; Idaho; and sometimes Montana; Wyoming -00826827 00 s 01 west-central 0 001 & 00825970 a 0000 | of a region of the United States usually including Colorado; Nevada; Utah -00826959 00 a 01 eastern 2 006 = 08563180 n 0000 ! 00825970 a 0101 & 00827192 a 0000 & 00827327 a 0000 & 00827556 a 0000 & 00827743 a 0000 | of or characteristic of eastern regions of the United States; "the Eastern establishment" -00827192 00 s 01 east-central 0 001 & 00826959 a 0000 | of a region of the United States generally including Kentucky, West Virginia -00827327 00 s 02 middle_Atlantic 0 mid-Atlantic 0 001 & 00826959 a 0000 | of a region of the United States generally including Delaware; Maryland; Virginia; and usually New York; Pennsylvania; New Jersey; "mid-Atlantic states" -00827556 00 s 01 northeastern 0 001 & 00826959 a 0000 | of a region of the United States generally including the New England states; New York; and sometimes New Jersey and Pennsylvania -00827743 00 s 01 southeastern 0 001 & 00826959 a 0000 | of a region of the United States generally including Alabama; Georgia; Florida; Tennessee; South Carolina; North Carolina -00827923 00 a 01 ectomorphic 0 004 ^ 00988232 a 0000 ! 00828175 a 0101 ! 00828336 a 0101 & 00828095 a 0000 | having a build with little fat or muscle but with long limbs -00828095 00 s 01 asthenic 0 001 & 00827923 a 0000 | having a slender physique -00828175 00 a 02 endomorphic 0 pyknic 0 003 ^ 00986027 a 0000 ! 00828336 a 0101 ! 00827923 a 0101 | having a squat and fleshy build; "a pyknic practical joke" -00828336 00 a 02 mesomorphic 0 muscular 4 006 ;c 06057539 n 0000 + 05030418 n 0203 + 10310903 n 0101 ! 00827923 a 0101 ! 00828175 a 0101 & 00828661 a 0000 | having a robust muscular body-build characterized by predominance of structures (bone and muscle and connective tissue) developed from the embryonic mesodermal layer -00828661 00 s 01 athletic 0 001 & 00828336 a 0000 | having a sturdy and well proportioned body; "an athletic build" -00828779 00 a 03 edible 0 comestible 0 eatable 0 010 ^ 01182024 a 0000 ^ 01716227 a 0000 ^ 02446651 a 0000 + 07556637 n 0201 + 04997472 n 0102 + 04997472 n 0101 ! 00829496 a 0101 & 00829041 a 0000 & 00829146 a 0000 & 00829243 a 0000 | suitable for use as food -00829041 00 s 01 killable 0 002 & 00828779 a 0000 + 01323958 v 0101 | fit to kill, especially for food -00829146 00 s 03 nonpoisonous 0 non-poisonous 0 nontoxic 0 001 & 00828779 a 0000 | safe to eat -00829243 00 s 02 pareve 0 parve 0 002 & 00828779 a 0000 ;c 06951067 n 0000 | containing no meat or milk (or their derivatives) and thus eatable with both meat and dairy dishes according to the dietary laws of Judaism; "pareve margarine"; "parvebread" -00829496 00 a 02 inedible 0 uneatable 0 005 ^ 01182747 a 0000 ^ 02445636 a 0000 ^ 01716491 a 0000 ! 00828779 a 0101 & 00829656 a 0000 | not suitable for food -00829656 00 s 01 poisonous 0 002 & 00829496 a 0000 + 15032376 n 0101 | not safe to eat -00829745 00 a 01 educated 0 011 ^ 00411886 a 0000 ^ 00884007 a 0000 ^ 01306273 a 0000 ^ 01332386 a 0000 ^ 01421602 a 0000 ^ 00832075 a 0000 ! 00830717 a 0101 & 00830051 a 0000 & 00830381 a 0000 & 00830508 a 0000 & 00830630 a 0000 | possessing an education (especially having more than average knowledge) -00830051 00 s 06 knowing 0 knowledgeable 0 learned 0 lettered 0 well-educated 0 well-read 0 005 & 00829745 a 0000 + 05985999 n 0303 + 04890546 n 0202 + 04890546 n 0201 + 05675905 n 0105 | highly educated; having extensive information or understanding; "knowing instructors"; "a knowledgeable critic"; "a knowledgeable audience" -00830381 00 s 01 literate 0 001 & 00829745 a 0000 | knowledgeable and educated in one or several fields; "computer literate" -00830508 00 s 01 self-educated 0 001 & 00829745 a 0000 | educated by your own efforts rather than by formal instruction -00830630 00 s 01 semiliterate 0 001 & 00829745 a 0000 | literate but poorly informed -00830717 00 a 01 uneducated 0 011 ^ 01421679 a 0000 ^ 00832200 a 0000 ^ 00412567 a 0000 ^ 00884286 a 0000 ^ 01308425 a 0000 ! 00829745 a 0101 & 00830981 a 0000 & 00831225 a 0000 & 00831603 a 0000 & 00831696 a 0000 & 00831903 a 0000 | not having a good education -00830981 00 s 02 ignorant 1 illiterate 0 001 & 00830717 a 0000 | uneducated in the fundamentals of a given art or branch of learning; lacking knowledge of a specific field; "she is ignorant of quantum mechanics"; "he is musically illiterate" -00831225 00 s 04 ignorant 2 nescient 0 unlearned 0 unlettered 0 004 & 00830717 a 0000 + 05988743 n 0202 + 05988743 n 0101 + 05988282 n 0101 | uneducated in general; lacking knowledge or sophistication; "an ignorant man"; "nescient of contemporary literature"; "an unlearned group incapable of understanding complex issues"; "exhibiting contempt for his unlettered companions" -00831603 00 s 01 undereducated 0 001 & 00830717 a 0000 | poorly or insufficiently educated -00831696 00 s 03 unschooled 0 untaught 0 untutored 0 001 & 00830717 a 0000 | lacking in schooling; "untaught people whose verbal skills are grossly deficient"; "an untutored genius"; "uneducated children" -00831903 00 s 01 unstudied 0 001 & 00830717 a 0000 | lacking knowledge gained by study often in a particular field; "is unstudied in Latin as he is in may other matters" -00832075 00 a 01 numerate 0 003 ^ 00829745 a 0000 = 05639431 n 0000 ! 00832200 a 0101 | able to understand and use numbers -00832200 00 a 01 innumerate 0 002 = 05639431 n 0000 ! 00832075 a 0101 | lacking knowledge and understanding of mathematical concepts and methods -00832347 00 a 01 operative 0 005 ! 00833575 a 0101 & 00832609 a 0000 & 00832784 a 0000 & 00833018 a 0000 & 00833334 a 0000 | being in force or having or exerting force; "operative regulations"; "the major tendencies operative in the American political system" -00832609 00 s 01 operant 0 002 & 00832347 a 0000 + 01525666 v 0103 | having influence or producing an effect; "many emotional determinants at work"; "an operant conscience" -00832784 00 s 04 effective 0 good 0 in_effect(p) 0 in_force(p) 0 001 & 00832347 a 0000 | exerting force or influence; "the law is effective immediately"; "a warranty good for two years"; "the law is already in effect (or in force)" -00833018 00 s 03 operational 0 in_operation(p) 1 operating(a) 1 001 & 00832347 a 0000 | being in effect or operation; "de facto apartheid is still operational even in the `new' African nations"- Leslie Marmon Silko; "bus service is in operation during the emergency"; "the company had several operating divisions" -00833334 00 s 01 working 2 001 & 00832347 a 0000 | serving to permit or facilitate further work or activity; "discussed the working draft of a peace treaty"; "they need working agreements with their neighbor states on interstate projects" -00833575 00 a 01 inoperative 0 004 ! 00832347 a 0101 & 00833737 a 0000 & 00833878 a 0000 & 00834048 a 0000 | not working or taking effect; "an inoperative law" -00833737 00 s 01 down 0 001 & 00833575 a 0000 | not functioning (temporarily or permanently); "we can't work because the computer is down" -00833878 00 s 01 dead 0 002 & 00833575 a 0000 + 05006519 n 0101 | out of use or operation because of a fault or breakdown; "a dead telephone line"; "the motor is dead" -00834048 00 s 01 defunct 0 002 & 00833575 a 0000 + 13963032 n 0102 | no longer in force or use; inactive; "a defunct law"; "a defunct organization" -00834198 00 a 03 effective 0 effectual 2 efficacious 2 018 ^ 00838856 a 0000 ^ 00839619 a 0000 ^ 01824244 a 0000 ^ 01825671 a 0000 ^ 02495922 a 0000 = 05199286 n 0000 + 05199869 n 0301 + 05199869 n 0302 + 05199286 n 0203 + 05199286 n 0204 + 01642924 v 0101 + 05199286 n 0101 + 05199286 n 0102 ! 00835609 a 0101 & 00834959 a 0000 & 00835122 a 0000 & 00835292 a 0000 & 00835504 a 0000 | producing or capable of producing an intended result or having a striking effect; "an air-cooled motor was more effective than a witch's broomstick for rapid long-distance transportation"-LewisMumford; "effective teaching methods"; "effective steps toward peace"; "made an effective entrance"; "his complaint proved to be effectual in bringing action"; "an efficacious law" -00834959 00 s 02 hard-hitting 0 trenchant 0 001 & 00834198 a 0000 | characterized by or full of force and vigor; "a hard-hitting expose"; "a trenchant argument" -00835122 00 s 01 impelling 0 001 & 00834198 a 0000 | markedly effective as if by emotional pressure; "impelling skill as a teller of tales"; "an impelling personality" -00835292 00 s 02 impressive 0 telling 0 004 & 00834198 a 0000 + 04719502 n 0101 + 01767949 v 0102 + 00728393 v 0101 | producing a strong effect; "gave an impressive performance as Othello"; "a telling gesture" -00835504 00 s 01 rough-and-ready 0 001 & 00834198 a 0000 | crude but effective for the purpose at hand -00835609 00 a 03 ineffective 0 uneffective 0 ineffectual 2 012 ^ 00294175 a 0000 ^ 00839411 a 0000 ^ 00840902 a 0000 ^ 01827535 a 0000 ^ 02497141 a 0000 = 05199286 n 0000 + 05207963 n 0302 + 05207963 n 0303 + 05207963 n 0101 ! 00834198 a 0101 & 00835978 a 0000 & 00836111 a 0000 | not producing an intended effect; "an ineffective teacher"; "ineffective legislation" -00835978 00 s 01 toothless 0 001 & 00835609 a 0000 | lacking necessary force for effectiveness; "a toothless piece of legislation" -00836111 00 s 01 unproductive 0 002 & 00835609 a 0000 + 05148539 n 0101 | not producing desired results; "the talks between labor and management were unproductive" -00836277 00 a 01 effortful 0 011 ^ 00744916 a 0000 + 04709585 n 0101 ! 00838296 a 0101 & 00836544 a 0000 & 00837084 a 0000 & 00837249 a 0000 & 00837415 a 0000 & 00837574 a 0000 & 00837756 a 0000 & 00837868 a 0000 & 00837977 a 0000 | requiring great physical effort -00836544 00 s 0a arduous 0 backbreaking 0 grueling 0 gruelling 0 hard 1 heavy 0 laborious 0 operose 0 punishing 0 toilsome 0 008 & 00836277 a 0000 + 04709944 n 0a03 + 04709944 n 0802 + 00620752 n 0701 + 04709944 n 0701 + 04711031 n 0602 + 04710588 n 0501 + 04709759 n 0101 | characterized by effort to the point of exhaustion; especially physical effort; "worked their arduous way up the mining valley"; "a grueling campaign"; "hard labor"; "heavy work"; "heavy going"; "spent many laborious hours on the project"; "set a punishing pace" -00837084 00 s 01 dragging 0 001 & 00836277 a 0000 | marked by a painfully slow and effortful manner; "it was a strange dragging approach"; "years of dragging war" -00837249 00 s 04 exhausting 0 tiring 0 wearing 0 wearying 0 001 & 00836277 a 0000 | producing exhaustion; "an exhausting march"; "the visit was especially wearing" -00837415 00 s 03 heavy 1 labored 0 laboured 0 001 & 00836277 a 0000 | requiring or showing effort; "heavy breathing"; "the subject made for labored reading" -00837574 00 s 02 labor-intensive 0 labour-intensive 0 001 & 00836277 a 0000 | requiring a large expenditure of labor but not much capital; "cottage industries are labor intensive" -00837756 00 s 02 leaden 0 plodding 0 001 & 00836277 a 0000 | (of movement) slow and laborious; "leaden steps" -00837868 00 s 01 Sisyphean 0 002 & 00836277 a 0000 + 09498697 n 0101 | both extremely effortful and futile -00837977 00 s 03 arduous 2 straining 0 strenuous 0 004 & 00836277 a 0000 + 00788766 n 0304 + 04709759 n 0302 + 04709759 n 0101 | taxing to the utmost; testing powers of endurance; "his final, straining burst of speed"; "a strenuous task"; "your willingness after these six arduous days to remain here"- F.D.Roosevelt -00838296 00 a 01 effortless 0 005 ^ 00749230 a 0000 + 04708543 n 0101 ! 00836277 a 0101 & 00838533 a 0000 & 00838659 a 0000 | requiring or apparently requiring no effort; "the swallows glided in an effortless way through the busy air" -00838533 00 s 01 facile 0 002 & 00838296 a 0000 + 05642175 n 0104 | performing adroitly and without effort; "a facile hand" -00838659 00 s 02 unforced 0 unstrained 0 001 & 00838296 a 0000 | not resulting from undue effort; not forced; "a voice with a pleasingly unforced quality"; "his playing is facile and unstrained" -00838856 00 a 01 efficacious 0 006 ^ 00834198 a 0000 = 05199869 n 0000 + 05199869 n 0101 + 05199869 n 0102 ! 00839411 a 0101 & 00839225 a 0000 | marked by qualities giving the power to produce an intended effect; "written propaganda is less efficacious than the habits and prejudices...of the readers"-Aldous Huxley; "the medicine is efficacious in stopping a cough" -00839225 00 s 01 effective 0 002 & 00838856 a 0000 + 05199286 n 0101 | works well as a means or remedy; "an effective reprimand"; "a lotion that is effective in cases of prickly heat" -00839411 00 a 01 inefficacious 0 004 ^ 00835609 a 0000 = 05199869 n 0000 + 05208291 n 0102 ! 00838856 a 0101 | lacking the power to produce a desired effect; "laws that are inefficacious in stopping crime" -00839619 00 a 01 efficient 0 010 ^ 00510050 a 0000 ^ 00834198 a 0000 + 05644527 n 0101 ! 00840902 a 0101 & 00839959 a 0000 & 00840103 a 0000 & 00840212 a 0000 & 00840510 a 0000 & 00840634 a 0000 & 00840737 a 0000 | being effective without wasting time or effort or expense; "an efficient production manager"; "efficient engines save gas" -00839959 00 s 01 businesslike 0 001 & 00839619 a 0000 | exhibiting methodical and systematic characteristics that would be useful in business -00840103 00 s 02 cost-efficient 0 cost-effective 0 001 & 00839619 a 0000 | productive relative to the cost -00840212 00 s 02 economic 0 economical 0 004 & 00839619 a 0000 + 05644727 n 0201 + 00192613 n 0201 + 05644727 n 0101 | using the minimum of time or resources necessary for effectiveness; "an economic use of home heating oil"; "a modern economical heating system"; "an economical use of her time" -00840510 00 s 01 expeditious 0 003 & 00839619 a 0000 + 05059830 n 0103 + 05059830 n 0104 | marked by speed and efficiency -00840634 00 s 01 high-octane 0 001 & 00839619 a 0000 | used of gasoline; having a high octane number -00840737 00 s 01 streamlined 0 001 & 00839619 a 0000 | made efficient by stripping off nonessentials; "short streamlined meetings"; "a streamlined hiring process" -00840902 00 a 01 inefficient 0 005 ^ 00511214 a 0000 ^ 00835609 a 0000 + 05648953 n 0101 ! 00839619 a 0101 & 00841159 a 0000 | not producing desired results; wasteful; "an inefficient campaign against drugs"; "outdated and inefficient design and methods" -00841159 00 s 02 uneconomical 0 wasteful 0 002 & 00840902 a 0000 + 00742645 n 0202 | inefficient in use of time and effort and materials; "a clumsy and wasteful process"; "wasteful duplication of effort"; "uneconomical ebb and flow of power" -00841403 00 a 01 forceful 0 010 + 05035353 n 0102 ! 00842914 a 0101 & 00841800 a 0000 & 00841934 a 0000 & 00842041 a 0000 & 00842199 a 0000 & 00842324 a 0000 & 00842550 a 0000 & 00842704 a 0000 & 00842810 a 0000 | characterized by or full of force or strength (often but not necessarily physical); "a forceful speaker"; "a forceful personality"; "forceful measures"; "a forceful plan for peace" -00841800 00 s 01 bruising 0 001 & 00841403 a 0000 | brutally forceful and compelling; "protected from the bruising facts of battle" -00841934 00 s 01 drastic 0 001 & 00841403 a 0000 | forceful and extreme and rigorous; "drastic measures" -00842041 00 s 02 emphatic 0 exclamatory 0 004 & 00841403 a 0000 + 00977336 v 0202 + 00912048 v 0201 + 07085375 n 0102 | sudden and strong; "an emphatic no" -00842199 00 s 02 firm 0 strong 0 001 & 00841403 a 0000 | strong and sure; "a firm grasp"; "gave a strong pull on the rope" -00842324 00 s 03 forcible 0 physical 0 strong-arm 0 002 & 00841403 a 0000 + 01871979 v 0102 | impelled by physical force especially against resistance; "forcible entry"; "a real cop would get physical"; "strong-arm tactics" -00842550 00 s 01 impellent 0 002 & 00841403 a 0000 + 01511706 v 0102 | forcing forward or onward; impelling; "an impellent power"; "an impellent cause" -00842704 00 s 01 impetuous 0 001 & 00841403 a 0000 | marked by violent force; "impetuous heaving waves" -00842810 00 s 01 sharp 0 002 & 00841403 a 0000 + 04720226 n 0101 | quick and forceful; "a sharp blow" -00842914 00 a 02 forceless 0 unforceful 0 002 ! 00841403 a 0101 & 00843046 a 0000 | lacking force; feeble; "a forceless argument" -00843046 00 s 02 wimpish 0 wimpy 0 002 & 00842914 a 0000 + 10781817 n 0201 | weak and ineffectual -00843146 00 a 01 elastic 0 016 ^ 01022064 a 0000 + 04116098 n 0103 + 03267696 n 0101 + 05020358 n 0101 ! 00845528 a 0101 & 00843595 a 0000 & 00843988 a 0000 & 00844112 a 0000 & 00844263 a 0000 & 00844461 a 0000 & 00844719 a 0000 & 00844869 a 0000 & 00845025 a 0000 & 00845127 a 0000 & 00845216 a 0000 & 00845406 a 0000 | capable of resuming original shape after stretching or compression; springy; "an elastic band"; "a youthful and elastic walk" -00843595 00 s 05 bouncy 0 live 0 lively 0 resilient 0 springy 0 011 & 00843146 a 0000 + 05021151 n 0503 + 07350567 n 0402 + 05020697 n 0402 + 07350567 n 0401 + 05020697 n 0401 + 01892104 v 0402 + 00387680 v 0401 + 04632157 n 0301 + 07350401 n 0101 + 05020981 n 0102 | elastic; rebounds readily; "clean bouncy hair"; "a lively tennis ball"; "as resilient as seasoned hickory"; "springy turf" -00843988 00 s 01 chewy 0 002 & 00843146 a 0000 + 00278810 n 0101 | (of a consistency) requiring chewing; "chewy caramels" -00844112 00 s 02 elasticized 0 elasticised 0 001 & 00843146 a 0000 | made with strands or inserts of elastic; "slacks with an elasticized waistband" -00844263 00 s 04 expandable 0 expandible 0 expansible 0 expansile 0 005 & 00843146 a 0000 + 02077148 v 0301 + 00257269 v 0301 + 02077148 v 0201 + 00257269 v 0201 | (of gases) capable of expansion -00844461 00 s 03 fictile 0 moldable 0 plastic 0 004 & 00843146 a 0000 + 05021884 n 0302 + 01697027 v 0202 + 01662771 v 0202 | capable of being molded or modeled (especially of earth or clay or other soft material); "plastic substances such as wax or clay" -00844719 00 s 02 flexible 0 whippy 0 003 & 00843146 a 0000 + 05022457 n 0102 + 05022457 n 0101 | bending and snapping back readily without breaking -00844869 00 s 02 rubbery 0 rubberlike 0 002 & 00843146 a 0000 + 15006258 n 0101 | having an elastic texture resembling rubber in flexibility or toughness -00845025 00 s 01 springlike 0 001 & 00843146 a 0000 | resembling a spring or the action of a spring -00845127 00 s 01 stretch 0 001 & 00843146 a 0000 | easily stretched; "stretch hosiery" -00845216 00 s 02 stretchable 0 stretchy 0 004 & 00843146 a 0000 + 05021345 n 0201 + 05021345 n 0202 + 05021345 n 0103 | capable of being easily stretched and resuming former size or shape -00845406 00 s 01 viscoelastic 0 002 & 00843146 a 0000 ;c 06090869 n 0000 | having viscous as well as elastic properties -00845528 00 a 01 inelastic 0 006 ^ 01023289 a 0000 + 05023233 n 0101 ! 00843146 a 0101 & 00845737 a 0000 & 00845856 a 0000 & 00845928 a 0000 | not elastic; "economists speak of an inelastic price structure" -00845737 00 s 01 dead 0 002 & 00845528 a 0000 + 05023404 n 0101 | lacking resilience or bounce; "a dead tennis ball" -00845856 00 s 01 nonresilient 0 001 & 00845528 a 0000 | not resilient -00845928 00 s 01 springless 0 001 & 00845528 a 0000 | lacking in elasticity or vitality; "went off with springless steps" -00846052 00 a 02 elective 0 elected 2 004 + 02400760 v 0101 ! 00846462 a 0101 & 00846219 a 0000 & 00846349 a 0000 | subject to popular election; "elective official" -00846219 00 s 01 electoral 0 002 & 00846052 a 0000 + 10760340 n 0102 | relating to or composed of electors; "electoral college" -00846349 00 s 01 nonappointive 0 001 & 00846052 a 0000 | filled by popular election rather than by appointment -00846462 00 a 02 appointive 0 appointed 2 005 + 02396205 v 0101 + 02475922 v 0101 ! 00846052 a 0101 & 00846625 a 0000 & 00846789 a 0000 | subject to appointment -00846625 00 s 02 nominated 0 nominative 0 005 & 00846462 a 0000 + 02401523 v 0201 + 02396716 v 0202 + 02396205 v 0203 + 00879540 v 0201 | appointed by nomination -00846789 00 s 03 nonelective 0 non-elective 0 nonelected 0 001 & 00846462 a 0000 | filled by appointment rather than by election; "a nonelective office" -00846944 00 a 01 assigned 0 003 ! 00847306 a 0101 & 00847103 a 0000 & 00847196 a 0000 | appointed to a post or duty; "assigned personnel"; "assigned duties" -00847103 00 s 01 allotted 0 001 & 00846944 a 0000 | given as a task; "her allotted chores" -00847196 00 s 01 appointed 0 001 & 00846944 a 0000 | selected for a job; "the one appointed for guard duty" -00847306 00 a 01 unassigned 0 001 ! 00846944 a 0101 | not assigned; "unassigned personnel" -00847399 00 a 01 optional 0 005 ! 00848074 a 0101 & 00847577 a 0000 & 00847715 a 0000 & 00847861 a 0000 & 00847972 a 0000 | possible but not necessary; left to personal choice -00847577 00 s 01 elective 0 002 & 00847399 a 0000 + 00676864 v 0101 | not compulsory; "elective surgery"; "an elective course of study" -00847715 00 s 01 ex_gratia 0 001 & 00847399 a 0000 | as a favor; not compelled by legal right; "ex gratia payments made to nonstriking workers" -00847861 00 s 01 facultative 0 001 & 00847399 a 0000 | not compulsory; "facultative courses in the sciences" -00847972 00 s 02 nonmandatory 0 nonobligatory 0 001 & 00847399 a 0000 | not required by rule or law -00848074 00 a 01 obligatory 0 009 ^ 01580050 a 0000 ! 00847399 a 0101 & 00848375 a 0000 & 00848466 a 0000 & 00848679 a 0000 & 00848838 a 0000 & 00848983 a 0000 & 00849108 a 0000 & 00849232 a 0000 | morally or legally constraining or binding; "attendance is obligatory"; "an obligatory contribution" -00848375 00 s 01 bounden 0 001 & 00848074 a 0000 | morally obligatory; "my bounden duty" -00848466 00 s 03 compulsory 0 mandatory 0 required 0 002 & 00848074 a 0000 + 00751389 v 0201 | required by rule; "in most schools physical education is compulsory"; "attendance is mandatory"; "required reading" -00848679 00 s 01 de_rigueur 0 001 & 00848074 a 0000 | required by etiquette or usage or fashion; "instruction as to when and where a silk hat is de rigueur" -00848838 00 s 01 imposed 0 001 & 00848074 a 0000 | set forth authoritatively as obligatory; "the imposed taxation"; "rules imposed by society" -00848983 00 s 01 incumbent_on(p) 0 001 & 00848074 a 0000 | morally binding or necessary; "it is incumbent on me to attend" -00849108 00 s 01 indispensable 0 001 & 00848074 a 0000 | unavoidable; "the routine but indispensable ceremonies of state" -00849232 00 s 01 prerequisite 0 002 & 00848074 a 0000 + 05892427 n 0101 | required as a prior condition or course of study -00849357 00 a 01 elegant 0 015 ^ 00751525 a 0000 ^ 01139352 a 0000 ^ 01947266 a 0000 ^ 02270342 a 0000 ^ 02392878 a 0000 + 04812268 n 0101 ! 00851103 a 0101 & 00849912 a 0000 & 00850053 a 0000 & 00850183 a 0000 & 00850434 a 0000 & 00850552 a 0000 & 00850648 a 0000 & 00850875 a 0000 & 00850983 a 0000 | refined and tasteful in appearance or behavior or style; "elegant handwriting"; "an elegant dark suit"; "she was elegant to her fingertips"; "small churches with elegant white spires"; "an elegant mathematical solution--simple and precise and lucid" -00849912 00 s 03 dandified 0 dandyish 0 foppish 0 002 & 00849357 a 0000 + 04910848 n 0301 | affecting extreme elegance in dress and manner -00850053 00 s 03 deluxe 0 de_luxe 0 luxe 0 001 & 00849357 a 0000 | elegant and sumptuous; "a deluxe car"; "luxe accommodations" -00850183 00 s 01 fine 0 001 & 00849357 a 0000 | characterized by elegance or refinement or accomplishment; "fine wine"; "looking fine in her Easter suit"; "a fine gentleman"; "fine china and crystal"; "a fine violinist"; "the fine hand of a master" -00850434 00 s 02 high-class 0 high-toned 0 001 & 00849357 a 0000 | pretentiously elegant; "a high-toned restaurant" -00850552 00 s 02 exquisite 0 recherche 0 001 & 00849357 a 0000 | lavishly elegant and refined -00850648 00 s 03 neat 0 refined 0 tasteful 0 003 & 00849357 a 0000 + 04813395 n 0301 + 04896515 n 0102 | free from what is tawdry or unbecoming; "a neat style"; "a neat set of rules"; "she hated to have her neat plans upset" -00850875 00 s 01 ritzy 0 003 & 00849357 a 0000 ;u 07075172 n 0000 + 06889875 n 0101 | luxuriously elegant -00850983 00 s 02 soigne 0 soignee 0 001 & 00849357 a 0000 | polished and well-groomed; showing sophisticated elegance -00851103 00 a 01 inelegant 0 008 ^ 02384843 a 0000 ^ 02393401 a 0000 ^ 00752392 a 0000 ^ 01949149 a 0000 + 04815321 n 0101 ! 00849357 a 0101 & 00851329 a 0000 & 00851588 a 0000 | lacking in refinement or grace or good taste -00851329 00 s 03 gauche 0 graceless 0 unpolished 0 003 & 00851103 a 0000 + 04815624 n 0203 + 04915121 n 0103 | lacking social polish; "too gauche to leave the room when the conversation became intimate"; "their excellent manners always made me feel gauche" -00851588 00 s 01 homely 0 002 & 00851103 a 0000 + 04816528 n 0103 | without artificial refinement or elegance; "plain homely furniture"; "homely manners" -00851744 00 a 01 eligible 0 010 ^ 01911053 a 0000 + 02400760 v 0101 + 04717552 n 0101 ! 00852988 a 0101 & 00852101 a 0000 & 00852197 a 0000 & 00852425 a 0000 & 00852576 a 0000 & 00852754 a 0000 & 00852875 a 0000 | qualified for or allowed or worthy of being chosen; "eligible to run for office"; "eligible for retirement benefits"; "an eligible bachelor" -00852101 00 s 01 bailable 0 001 & 00851744 a 0000 | eligible for bail; "a bailable defendant" -00852197 00 s 03 desirable 0 suitable 0 worthy 0 004 & 00851744 a 0000 + 04715487 n 0202 + 04686935 n 0103 + 04686935 n 0102 | worthy of being chosen especially as a spouse; "the parents found the girl suitable for their son" -00852425 00 s 01 entitled 0 001 & 00851744 a 0000 | qualified for by right according to law; "we are all entitled to equal protection under the law" -00852576 00 s 01 in_line 0 001 & 00851744 a 0000 | awaiting something; especially something due; "people were in line at the checkout counter"; "she was in line for promotion" -00852754 00 s 01 legal 0 002 & 00851744 a 0000 ;c 00523513 n 0000 | allowed by official rules; "a legal pass receiver" -00852875 00 s 01 pensionable 0 001 & 00851744 a 0000 | entitled to receive a pension; "a pensionable employee" -00852988 00 a 01 ineligible 0 007 ^ 01911415 a 0000 + 04718134 n 0101 ! 00851744 a 0101 & 00853225 a 0000 & 00853324 a 0000 & 00853473 a 0000 & 00853631 a 0000 | not eligible; "ineligible to vote"; "ineligible for retirement benefits" -00853225 00 s 01 disqualified 1 001 & 00852988 a 0000 | disqualified by law or rule or provision -00853324 00 s 01 disqualified 2 002 & 00852988 a 0000 ;c 00523513 n 0000 | barred from competition for violation of rules; "a disqualified player" -00853473 00 s 02 undesirable 0 unsuitable 0 003 & 00852988 a 0000 + 04721058 n 0202 + 05142008 n 0101 | not worthy of being chosen (especially as a spouse) -00853631 00 s 02 unentitled 0 unqualified 0 001 & 00852988 a 0000 | having no right or entitlement; "a distinction to which he was unentitled" -00853776 00 a 01 emotional 0 021 ^ 01559903 a 0000 ^ 01560513 a 0000 ^ 01725712 a 0000 ^ 02530861 a 0000 = 04626280 n 0000 + 04626280 n 0101 ! 00856860 a 0101 & 00854255 a 0000 & 00854413 a 0000 & 00854869 a 0000 & 00854989 a 0000 & 00855158 a 0000 & 00855309 a 0000 & 00855565 a 0000 & 00855670 a 0000 & 00856011 a 0000 & 00856132 a 0000 & 00856325 a 0000 & 00856511 a 0000 & 00856651 a 0000 & 00856790 a 0000 | of more than usual emotion; "his behavior was highly emotional" -00854255 00 s 03 affectional 0 affective 0 emotive 0 004 & 00853776 a 0000 + 01772806 v 0301 + 01767949 v 0201 + 07479926 n 0101 | characterized by emotion -00854413 00 s 0d bathetic 0 drippy 0 hokey 0 maudlin 0 mawkish 0 kitschy 0 mushy 0 schmaltzy 0 schmalzy 0 sentimental 0 soppy 0 soupy 0 slushy 0 007 & 00853776 a 0000 + 07481951 n 0a01 + 04627506 n 0a02 + 04627506 n 0704 + 07482267 n 0501 + 04627506 n 0501 + 04627506 n 0203 | effusively or insincerely emotional; "a bathetic novel"; "maudlin expressions of sympathy"; "mushy effusiveness"; "a schmaltzy song"; "sentimental soap operas"; "slushy poetry" -00854869 00 s 02 cathartic 0 releasing 0 002 & 00853776 a 0000 ;c 00933420 n 0000 | emotionally purging (of e.g. art) -00854989 00 s 02 charged 0 supercharged 0 001 & 00853776 a 0000 | fraught with great emotion; "an atmosphere charged with excitement"; "an emotionally charged speech" -00855158 00 s 02 funky 0 low-down 0 003 & 00853776 a 0000 ;c 07062697 n 0000 + 07063585 n 0101 | (of jazz) having the soulful feeling of early blues -00855309 00 s 01 het_up(p) 0 002 & 00853776 a 0000 ;u 07075172 n 0000 | worked up emotionally by anger or excitement; "was terribly het up over the killing of the eagle"; "got really het up over the new taxes"; "he was suddenly het up about racing cars" -00855565 00 s 01 hot-blooded 0 001 & 00853776 a 0000 | prone to emotion; "hot-blooded Latin-Americans" -00855670 00 s 01 little 0 001 & 00853776 a 0000 | small in a way that arouses feelings (of tenderness or its opposite depending on the context); "a nice little job"; "bless your little heart"; "my dear little mother"; "a sweet little deal"; "I'm tired of your petty little schemes"; "filthy little tricks"; "what a nasty little situation" -00856011 00 s 02 lyric 0 lyrical 0 001 & 00853776 a 0000 | expressing deep emotion; "the dancer's lyrical performance" -00856132 00 s 01 mind-blowing 0 001 & 00853776 a 0000 | intensely affecting the mind or emotions; "spending a week in the jungle was a mind-blowing experience"; "a mind-blowing horror story" -00856325 00 s 02 moody 0 temperamental 0 004 & 00853776 a 0000 + 04628466 n 0201 + 07551052 n 0102 + 04628632 n 0101 | subject to sharply varying moods; "a temperamental opera singer" -00856511 00 s 02 overemotional 0 sloppy 0 003 & 00853776 a 0000 + 04627506 n 0206 + 06775969 n 0203 | excessively or abnormally emotional -00856651 00 s 01 soulful 0 002 & 00853776 a 0000 + 07480790 n 0102 | full of or expressing deep emotion; "soulful eyes"; "soulful music" -00856790 00 s 01 warm-toned 0 001 & 00853776 a 0000 | used of music -00856860 00 a 01 unemotional 0 014 ^ 02531422 a 0000 ^ 01727439 a 0000 ^ 01560320 a 0000 ^ 01561564 a 0000 = 04626280 n 0000 + 04629194 n 0101 ! 00853776 a 0101 & 00857206 a 0000 & 00857387 a 0000 & 00857560 a 0000 & 00858053 a 0000 & 00858340 a 0000 & 00858558 a 0000 & 00858780 a 0000 | unsusceptible to or destitute of or showing no emotion -00857206 00 s 01 chilly 0 001 & 00856860 a 0000 | not characterized by emotion; "a female form in marble--a chilly but ideal medium for depicting abstract virtues"-C.W.Cunningham -00857387 00 s 01 dry 0 002 & 00856860 a 0000 + 04630137 n 0103 | lacking warmth or emotional involvement; "a dry greeting"; "a dry reading of the lines"; "a dry critique" -00857560 00 s 02 impassive 0 stolid 0 006 & 00856860 a 0000 + 04630378 n 0203 + 04630378 n 0202 + 07483782 n 0206 + 07483782 n 0103 + 07483782 n 0102 | having or revealing little emotion or sensibility; not easily aroused or excited; "her impassive remoteness"; "he remained impassive, showing neither interest in nor concern for our plight"- Nordhoff & Hall; "a silent stolid creature who took it all as a matter of course"-Virginia Woolf; "her face showed nothing but stolid indifference" -00858053 00 s 02 philosophical 0 philosophic 0 004 & 00856860 a 0000 + 10425946 n 0201 + 10425946 n 0101 + 06158346 n 0101 | characterized by the attitude of a philosopher; meeting trouble with level-headed detachment; "philosophical resignation"; "a philosophic attitude toward life" -00858340 00 s 02 phlegmatic 0 phlegmatical 0 005 & 00856860 a 0000 + 07483782 n 0204 + 04635953 n 0204 + 07483782 n 0104 + 04635953 n 0104 | showing little emotion; "a phlegmatic...and certainly undemonstrative man" -00858558 00 s 02 stoic 0 stoical 0 004 & 00856860 a 0000 + 10658867 n 0201 + 04630378 n 0201 + 10658867 n 0101 | seeming unaffected by pleasure or pain; impassive; "stoic courage"; "stoic patience"; "a stoical sufferer" -00858780 00 s 01 unblinking 0 001 & 00856860 a 0000 | showing no visible emotion; "stood unblinking and accepted a sentence of a year" -00858917 00 a 02 empirical 0 empiric 0 010 + 00635699 n 0201 + 00635699 n 0101 ! 00860611 a 0101 & 00859350 a 0000 & 00859453 a 0000 & 00859632 a 0000 & 00859949 a 0000 & 00860127 a 0000 & 00860254 a 0000 & 00860365 a 0000 | derived from experiment and observation rather than theory; "an empirical basis for an ethical theory"; "empirical laws"; "empirical data"; "an empirical treatment of a disease about which little is known" -00859350 00 s 01 a_posteriori 0 001 & 00858917 a 0000 | requiring evidence for validation or support -00859453 00 s 03 confirmable 0 verifiable 0 falsifiable 0 002 & 00858917 a 0000 + 00664483 v 0201 | capable of being tested (verified or falsified) by experiment or observation -00859632 00 s 02 experiential 0 existential 0 002 & 00858917 a 0000 + 05758059 n 0101 | derived from experience or the experience of existence; "the rich experiential content of the teachings of the older philosophers"- Benjamin Farrington; "formal logicians are not concerned with existential matters"- John Dewey -00859949 00 s 03 experimental 1 data-based 0 observational 0 001 & 00858917 a 0000 | relying on observation or experiment; "experimental results that supported the hypothesis" -00860127 00 s 01 experimental 2 001 & 00858917 a 0000 | of the nature of or undergoing an experiment; "an experimental drug" -00860254 00 s 01 semiempirical 0 001 & 00858917 a 0000 | relying to some extent on observation or experiment -00860365 00 s 01 trial-and-error 0 001 & 00858917 a 0000 | trying out various means or theories until error is satisfactorily reduced or eliminated; "he argued that all learning is a trial-and-error process that resembles biological evolution" -00860611 00 a 02 theoretical 0 theoretic 0 009 + 05888929 n 0203 + 05989479 n 0201 ! 00858917 a 0101 & 00860932 a 0000 & 00861109 a 0000 & 00861216 a 0000 & 00861818 a 0000 & 00862067 a 0000 & 00862190 a 0000 | concerned primarily with theories or hypotheses rather than practical considerations; "theoretical science" -00860932 00 s 01 abstractive 0 003 & 00860611 a 0000 + 00734587 v 0101 + 00692329 v 0101 | of an abstracting nature or having the power of abstracting; "abstractive analysis" -00861109 00 s 01 a_priori 0 001 & 00860611 a 0000 | based on hypothesis or theory rather than experiment -00861216 00 s 08 conjectural 0 divinatory 0 hypothetical 0 hypothetic 0 supposed 0 suppositional 0 suppositious 0 supposititious 0 012 & 00860611 a 0000 + 06782680 n 0803 + 05892096 n 0802 + 06782680 n 0703 + 05892096 n 0702 + 06782680 n 0603 + 05779712 n 0601 + 05892096 n 0602 + 06782680 n 0307 + 06782680 n 0102 + 05773923 n 0101 + 05891783 n 0102 | based primarily on surmise rather than adequate evidence; "theories about the extinction of dinosaurs are still highly conjectural"; "the supposed reason for his absence"; "suppositious reconstructions of dead languages"; "hypothetical situation" -00861818 00 s 02 notional 0 speculative 0 004 & 00860611 a 0000 + 04759134 n 0201 + 00927049 v 0201 + 00633443 v 0201 | not based on fact or investigation; "a notional figure of cost helps in determining production costs"; "speculative knowledge" -00862067 00 s 01 metaphysical 0 001 & 00860611 a 0000 | highly abstract and overly theoretical; "metaphysical reasoning" -00862190 00 s 01 theory-based 0 001 & 00860611 a 0000 | based in theory rather than experiment; "theory-based arguments and positions" -00862327 00 a 01 theoretical 1 004 ! 00863049 a 0101 & 00862526 a 0000 & 00862718 a 0000 & 00862911 a 0000 | concerned with theories rather than their practical applications; "theoretical physics" -00862526 00 s 01 abstract 0 002 & 00862327 a 0000 + 04762134 n 0101 | dealing with a subject in the abstract without practical purpose or intention; "abstract reasoning"; "abstract science" -00862718 00 s 01 academic 0 001 & 00862327 a 0000 | hypothetical or theoretical and not expected to produce an immediate or practical result; "an academic discussion"; "an academic question" -00862911 00 s 01 pure 0 001 & 00862327 a 0000 | concerned with theory and data rather than practice; opposed to applied; "pure science" -00863049 00 a 01 applied 0 003 ! 00862327 a 0101 & 00863361 a 0000 & 00863555 a 0000 | concerned with concrete problems or data rather than with fundamental principles; "applied physics"; "applied psychology"; "technical problems in medicine, engineering, economics and other applied disciplines"- Sidney Hook -00863361 00 s 01 forensic 0 001 & 00863049 a 0000 | used or applied in the investigation and establishment of facts or evidence in a court of law; "forensic photograph"; "forensic ballistics" -00863555 00 s 01 practical 0 001 & 00863049 a 0000 | having or put to a practical purpose or use; "practical mathematics"; "practical applications of calculus" -00863717 00 a 01 salaried 0 001 ! 00863823 a 0101 | receiving a salary; "salaried members of the staff" -00863823 00 a 03 freelance 0 free-lance 0 self-employed 0 002 + 02576110 v 0101 ! 00863717 a 0101 | working for yourself -00863946 00 a 01 employed 0 005 ^ 00292937 a 0000 ! 00864693 a 0101 & 00864203 a 0000 & 00864346 a 0000 & 00864461 a 0000 | having your services engaged for; or having a job especially one that pays wages or a salary; "most of our graduates are employed" -00864203 00 s 01 engaged 0 001 & 00863946 a 0000 | having services contracted for; "the carpenter engaged (or employed) for the job is sick" -00864346 00 s 01 hired 0 001 & 00863946 a 0000 | having services engaged for a fee; "hired hands"; "a hired gun" -00864461 00 s 02 working(a) 0 on_the_job(p) 0 001 & 00863946 a 0000 | actively engaged in paid work; "the working population"; "the ratio of working men to unemployed"; "a working mother"; "robots can be on the job day and night" -00864693 00 a 01 unemployed 0 004 ^ 00294175 a 0000 ! 00863946 a 0101 & 00864884 a 0000 & 00865007 a 0000 | not engaged in a gainful occupation; "unemployed workers marched on the capital" -00864884 00 s 05 discharged 0 dismissed 0 fired 0 laid-off 0 pink-slipped 0 001 & 00864693 a 0000 | having lost your job -00865007 00 s 03 idle 0 jobless 0 out_of_work 0 002 & 00864693 a 0000 + 01065441 n 0101 | not having a job; "idle carpenters"; "jobless transients"; "many people in the area were out of work" -00865201 00 a 01 employable 0 001 ! 00865331 a 0101 | physically and mentally capable of working at a regular job and available -00865331 00 a 01 unemployable 0 001 ! 00865201 a 0101 | not acceptable for employment as a worker; "his illiteracy made him unemployable" -00865471 00 a 01 enchanted 0 004 ! 00866047 a 0101 & 00865620 a 0000 & 00865765 a 0000 & 00865848 a 0000 | influenced as by charms or incantations -00865620 00 s 06 beguiled 0 captivated 0 charmed 0 delighted 0 enthralled 0 entranced 0 001 & 00865471 a 0000 | filled with wonder and delight -00865765 00 s 02 bewitched 0 ensorcelled 0 001 & 00865471 a 0000 | under a spell -00865848 00 s 08 fascinated 2 hypnotized 0 hypnotised 0 mesmerized 0 mesmerised 0 spellbound 0 spell-bound 0 transfixed 0 001 & 00865471 a 0000 | having your attention fixated as though by a spell -00866047 00 a 01 disenchanted 0 004 ^ 02270342 a 0000 ! 00865471 a 0101 & 00866182 a 0000 & 00866392 a 0000 | freed from enchantment -00866182 00 s 02 disabused(p) 1 undeceived 0 001 & 00866047 a 0000 | freed of a mistaken or misguided notion; "some people are still not disabused of the old idea that the universe revolves around the Earth" -00866392 00 s 01 disillusioned 0 001 & 00866047 a 0000 | freed from illusion -00866471 00 a 01 encouraging 0 008 ^ 01195536 a 0000 ^ 01228530 a 0000 ^ 00196934 a 0000 ! 00867213 a 0101 & 00866735 a 0000 & 00866894 a 0000 & 00866987 a 0000 & 00867092 a 0000 | giving courage or confidence or hope; "encouraging advances in medical research" -00866735 00 s 04 exhortative 0 exhortatory 0 hortative 0 hortatory 0 003 & 00866471 a 0000 + 00858781 v 0207 + 00765649 v 0204 | giving strong encouragement -00866894 00 s 02 heartening 0 inspiriting 0 001 & 00866471 a 0000 | cheerfully encouraging -00866987 00 s 01 promotive 0 002 & 00866471 a 0000 + 02554922 v 0101 | tending to further or encourage -00867092 00 s 01 rallying 0 001 & 00866471 a 0000 | rousing or recalling to unity and renewed effort; "a rallying cry" -00867213 00 a 01 discouraging 0 008 ^ 01770903 a 0000 ^ 01229020 a 0000 ^ 01198019 a 0000 ! 00866471 a 0101 & 00867520 a 0000 & 00867615 a 0000 & 00867758 a 0000 & 00867841 a 0000 | depriving of confidence or hope or enthusiasm and hence often deterring action; "where never is heard a discouraging word" -00867520 00 s 02 daunting 0 intimidating 0 001 & 00867213 a 0000 | discouraging through fear -00867615 00 s 04 demoralizing 0 demoralising 0 disheartening 0 dispiriting 0 001 & 00867213 a 0000 | destructive of morale and self-reliance -00867758 00 s 01 frustrating 0 001 & 00867213 a 0000 | discouraging by hindering -00867841 00 s 01 unencouraging 0 001 & 00867213 a 0000 | not encouraging -00867916 00 a 01 encumbered 0 005 ! 00868988 a 0101 & 00868241 a 0000 & 00868448 a 0000 & 00868603 a 0000 & 00868815 a 0000 | loaded to excess or impeded by a heavy load; "a summer resort...encumbered with great clapboard-and-stucco hotels"- A.J.Liebling; "a hiker encumbered with a heavy backpack"; "an encumbered estate" -00868241 00 s 03 burdened 0 heavy-laden 0 loaded_down 0 001 & 00867916 a 0000 | bearing a physically heavy weight or load; "tree limbs burdened with ice"; "a heavy-laden cart"; "loaded down with packages" -00868448 00 s 01 clogged 0 001 & 00867916 a 0000 | loaded with something that hinders motion; "The wings of birds were clogged with ice and snow"-Dryden -00868603 00 s 02 involved 0 mired 0 001 & 00867916 a 0000 | entangled or hindered as if e.g. in mire; "the difficulties in which the question is involved"; "brilliant leadership mired in details and confusion" -00868815 00 s 01 mortgaged 0 001 & 00867916 a 0000 | burdened with legal or financial obligations; "his house, his business, indeed, his whole life was heavily mortgaged" -00868988 00 a 01 unencumbered 0 003 ! 00867916 a 0101 & 00869138 a 0000 & 00869253 a 0000 | free of encumbrance; "inherited an unencumbered estate" -00869138 00 s 02 burdenless 0 unburdened 0 001 & 00868988 a 0000 | not encumbered with a physical burden or load -00869253 00 s 02 clear 0 unmortgaged 0 001 & 00868988 a 0000 | (especially of a title) free from any encumbrance or limitation that presents a question of fact or law; "I have clear title to this property" -00869461 00 a 01 burdened 0 004 ! 00870303 a 0101 & 00869690 a 0000 & 00869972 a 0000 & 00870127 a 0000 | bearing a heavy burden of work or difficulties or responsibilities; "she always felt burdened by the load of paper work" -00869690 00 s 04 bowed_down(p) 0 loaded_down(p) 0 overburdened 0 weighed_down(p) 0 001 & 00869461 a 0000 | heavily burdened with work or cares; "bowed down with troubles"; "found himself loaded down with responsibilities"; "overburdened social workers"; "weighed down with cares" -00869972 00 s 02 laden 0 oppressed 0 001 & 00869461 a 0000 | burdened psychologically or mentally; "laden with grief"; "oppressed by a sense of failure" -00870127 00 s 01 saddled 0 001 & 00869461 a 0000 | subject to an imposed burden; "left me saddled with the bill"; "found himself saddled with more responsibility than power" -00870303 00 a 01 unburdened 0 002 ! 00869461 a 0101 & 00870481 a 0000 | not burdened with difficulties or responsibilities; "unburdened by an overarching theory"- Alex Inkeles -00870481 00 s 01 unencumbered 0 001 & 00870303 a 0000 | not burdened with cares or responsibilities; "living an unencumbered life" -00870614 00 a 01 endocentric 0 002 ;c 06174404 n 0000 ! 00870827 a 0101 | fulfilling the grammatical role of one of its constituents; "when `three blind mice' serves as a noun it is an endocentric construction" -00870827 00 a 01 exocentric 0 002 ;c 06174404 n 0000 ! 00870614 a 0101 | not fulfilling the same grammatical role of any of its constituents; "when `until last Easter' serves as an adverb it is an exocentric construction" -00871051 00 a 02 endogamous 1 endogamic 1 003 ;c 06143546 n 0000 + 13965049 n 0101 ! 00871255 a 0101 | pertaining to or characterized by the custom of marrying only within the limits of a clan or tribe -00871255 00 a 02 exogamous 1 exogamic 1 005 ^ 01291937 a 0000 ;c 06143546 n 0000 + 13965274 n 0201 + 13965274 n 0101 ! 00871051 a 0101 | pertaining to or characterized by the custom of marrying only outside the limits of a clan or tribe -00871494 00 a 02 autogamous 0 autogamic 0 006 ;c 06066555 n 0000 + 07438655 n 0201 + 07438655 n 0101 ! 00871816 a 0101 ! 00872010 a 0101 & 00871690 a 0000 | characterized by or fit for autogamy -00871690 00 s 03 self-fertilized 0 self-fertilised 0 self-pollinated 0 001 & 00871494 a 0000 | fertilized by its own pollen -00871816 00 a 02 endogamous 2 endogamic 2 003 ;c 06066555 n 0000 ! 00872010 a 0101 ! 00871494 a 0101 | characterized by or fit for fertilization by pollen from another flower of the same kind -00872010 00 a 02 exogamous 2 exogamic 2 003 ;c 06066555 n 0000 ! 00871494 a 0101 ! 00871816 a 0101 | characterized by or fit for fertilization by a flower that is not closely related -00872195 00 a 02 endoergic 0 energy-absorbing 0 002 ^ 00872510 a 0000 ! 00872347 a 0101 | (of a nuclear reaction) occurring with absorption of energy -00872347 00 a 02 exoergic 0 energy-releasing 0 002 ^ 00872906 a 0000 ! 00872195 a 0101 | (of a nuclear reaction) occurring with evolution or releasing of energy -00872510 00 a 03 endothermic 0 endothermal 0 heat-absorbing 0 003 ^ 00872195 a 0000 ! 00872906 a 0101 & 00872715 a 0000 | (of a chemical reaction or compound) occurring or formed with absorption of heat -00872715 00 s 01 decalescent 0 002 & 00872510 a 0000 + 11444371 n 0101 | absorbing heat without increase in temperature when heated beyond a certain point; "the decalescent point of steel" -00872906 00 a 03 exothermic 0 exothermal 0 heat-releasing 0 003 ^ 00872347 a 0000 + 14883954 n 0101 ! 00872510 a 0101 | (of a chemical reaction or compound) occurring or formed with the liberation of heat -00873113 00 a 02 endogenous 0 endogenic 0 003 + 11668117 n 0204 ! 00873251 a 0202 ! 00873251 a 0101 | derived or originating internally -00873251 00 a 02 exogenous 0 exogenic 0 003 + 11666854 n 0204 ! 00873113 a 0202 ! 00873113 a 0101 | derived or originating externally -00873387 00 a 01 end-stopped 0 001 ! 00873502 a 0101 | (verse) having a rhetorical pause at the end of each line -00873502 00 a 01 run-on 0 001 ! 00873387 a 0101 | (verse) without a rhetorical pause between lines -00873603 00 a 01 energetic 0 016 ^ 00031974 a 0000 ^ 00808191 a 0000 ^ 00884778 a 0000 ^ 00804695 a 0000 ^ 02278939 a 0000 + 14050143 n 0101 + 05035961 n 0101 ! 00875712 a 0101 & 00874092 a 0000 & 00874226 a 0000 & 00874547 a 0000 & 00874634 a 0000 & 00874781 a 0000 & 00874920 a 0000 & 00875235 a 0000 & 00875422 a 0000 | possessing or exerting or displaying energy; "an energetic fund raiser for the college"; "an energetic group of hikers"; "it caused an energetic chemical reaction" -00874092 00 s 01 physical 0 001 & 00873603 a 0000 | characterized by energetic bodily activity; "a very physical dance performance" -00874226 00 s 08 alert 0 brisk 0 lively 0 merry 0 rattling 0 snappy 0 spanking 0 zippy 0 004 & 00873603 a 0000 + 05035961 n 0804 + 04632157 n 0301 + 04632963 n 0202 | quick and energetic; "a brisk walk in the park"; "a lively gait"; "a merry chase"; "traveling at a rattling rate"; "a snappy pace"; "a spanking breeze" -00874547 00 s 01 canty 0 002 & 00873603 a 0000 ;r 08860123 n 0000 | lively and brisk -00874634 00 s 01 driving 0 001 & 00873603 a 0000 | acting with vigor; "responsibility turned the spoiled playboy into a driving young executive" -00874781 00 s 01 high-energy 0 001 & 00873603 a 0000 | providing a relatively large amount of energy upon undergoing a chemical reaction -00874920 00 s 04 indefatigable 0 tireless 0 unflagging 0 unwearying 0 004 & 00873603 a 0000 + 04864824 n 0203 + 04864824 n 0102 + 04864824 n 0101 | showing sustained enthusiastic action with unflagging vitality; "an indefatigable advocate of equal rights"; "a tireless worker"; "unflagging pursuit of excellence" -00875235 00 s 01 strenuous 0 004 & 00873603 a 0000 + 00624553 n 0101 + 04709759 n 0102 + 05036237 n 0102 | characterized by or performed with much energy or force; "strenuous exercise" -00875422 00 s 01 vigorous 0 003 & 00873603 a 0000 + 05035961 n 0102 + 05030806 n 0101 | characterized by forceful and energetic action or activity; "a vigorous hiker"; "gave her skirt a vigorous shake"; "a vigorous campaign"; "a vigorous foreign policy"; "vigorous opposition to the war" -00875712 00 a 02 lethargic 0 unenrgetic 4 006 ^ 00033574 a 0000 + 04635953 n 0102 ! 00873603 a 0101 & 00875962 a 0000 & 00876204 a 0000 & 00876465 a 0000 | deficient in alertness or activity; "bullfrogs became lethargic with the first cold nights" -00875962 00 s 05 dazed 0 foggy 0 groggy 0 logy 0 stuporous 0 005 & 00875712 a 0000 + 05679906 n 0502 + 14018432 n 0401 + 14018918 n 0301 + 14018318 n 0301 | stunned or confused and slow to react (as from blows or drunkenness or exhaustion) -00876204 00 s 04 dreamy 0 lackadaisical 0 languid 0 languorous 0 003 & 00875712 a 0000 + 04635953 n 0401 + 07516222 n 0102 | lacking spirit or liveliness; "a lackadaisical attempt"; "a languid mood"; "a languid wave of the hand"; "a hot languorous afternoon" -00876465 00 s 01 listless 0 003 & 00875712 a 0000 + 07484109 n 0103 + 04636881 n 0101 | lacking zest or vivacity; "he was listless and bored" -00876609 00 a 01 enfranchised 0 001 ! 00876735 a 0101 | endowed with the rights of citizenship especially the right to vote -00876735 00 a 04 disenfranchised 0 disfranchised 0 voiceless 0 voteless 0 002 + 05205537 n 0301 ! 00876609 a 0101 | deprived of the rights of citizenship especially the right to vote; "labor was voiceless"; "disenfrenchised masses took to the streets" -00876989 00 a 01 exportable 0 002 ! 00877263 a 0101 & 00877119 a 0000 | suitable for export; "exportable cultural achievements" -00877119 00 s 01 marketable 0 003 & 00876989 a 0000 + 02298160 v 0101 + 00470386 v 0103 | capable of being marketed; "the marketable surplus" -00877263 00 a 01 unexportable 0 001 ! 00876989 a 0101 | not suitable for export -00877345 00 a 02 exploratory 0 explorative 0 012 + 00649481 v 0201 + 00648224 v 0203 + 00645939 v 0101 + 00646271 v 0101 + 00649481 v 0101 + 00648224 v 0103 ! 00878704 a 0101 & 00877816 a 0000 & 00877938 a 0000 & 00878086 a 0000 & 00878362 a 0000 & 00878438 a 0000 | serving in or intended for exploration or discovery; "an exploratory operation"; "exploratory reconnaissance"; "digging an exploratory well in the Gulf of Mexico"; "exploratory talks between diplomats" -00877816 00 s 01 alpha 0 001 & 00877345 a 0000 | early testing stage of a software or hardware product; "alpha version" -00877938 00 s 01 beta 0 001 & 00877345 a 0000 | preliminary or testing stage of a software or hardware product; "a beta version"; "beta software" -00878086 00 s 01 preliminary 0 003 & 00877345 a 0000 + 07327013 n 0101 + 07457599 n 0101 | denoting an action or event preceding or in preparation for something more important; designed to orient or acquaint with a situation before proceeding; "a preliminary investigation" -00878362 00 s 01 searching 0 001 & 00877345 a 0000 | exploring thoroughly -00878438 00 s 01 wildcat 0 002 & 00877345 a 0000 + 04584639 n 0102 | (of a mine or oil well) drilled speculatively in an area not known to be productive; "drilling there would be strictly a wildcat operation"; "a wildcat mine"; "wildcat drilling"; "wildcat wells" -00878704 00 a 04 nonexploratory 0 nonexplorative 0 unexploratory 0 unexplorative 0 001 ! 00877345 a 0101 | not exploratory -00878829 00 a 01 inquiring 0 007 ^ 00664449 a 0000 ! 00880120 a 0101 & 00879030 a 0000 & 00879259 a 0000 & 00879468 a 0000 & 00879624 a 0000 & 00879918 a 0000 | given to inquiry; "an inquiring mind" -00879030 00 s 03 fact-finding 0 investigative 0 investigatory 0 003 & 00878829 a 0000 + 00785962 v 0301 + 00785962 v 0201 | designed to find information or ascertain facts; "a fact-finding committee"; "investigative reporting" -00879259 00 s 01 inquisitive 0 004 & 00878829 a 0000 + 05683197 n 0102 + 00785962 v 0102 + 00729378 v 0102 | inquiring or appearing to inquire; "an inquiring look"; "the police are proverbially inquisitive" -00879468 00 s 01 inquisitorial 0 001 & 00878829 a 0000 | having the authority to conduct official investigations; "the inquisitorial power of the Senate" -00879624 00 s 01 inquisitorial 2 002 & 00878829 a 0000 + 10208432 n 0101 | marked by inquisitive interest; especially suggestive of an ecclesiastical inquisitor; "the press was inquisitorial to the point of antagonism"; "a practical police force with true inquisitorial talents"- Waldo Frank -00879918 00 s 03 inquisitory 0 probing 0 searching 0 001 & 00878829 a 0000 | diligent and thorough in inquiry or investigation; "a probing inquiry"; "a searching investigation of their past dealings" -00880120 00 a 02 uninquiring 0 uninquisitive 0 001 ! 00878829 a 0101 | not inquiring -00880207 00 a 01 increased 0 009 ! 00881735 a 0101 & 00880447 a 0000 & 00880586 a 0000 & 00880765 a 0000 & 00881030 a 0000 & 00881177 a 0000 & 00881337 a 0000 & 00881432 a 0000 & 00881551 a 0000 | made greater in size or amount or degree -00880447 00 s 02 accrued 0 accumulated 0 001 & 00880207 a 0000 | periodically accumulated over time; "accrued interest"; "accrued leave" -00880586 00 s 01 augmented 0 001 & 00880207 a 0000 | added to or made greater in amount or number or strength; "his augmented renown"; "a greatly augmented collection of books" -00880765 00 s 01 enhanced 0 001 & 00880207 a 0000 | increased or intensified in value or beauty or quality; "her enhanced beauty was the result of a good night's sleep rather than makeup"; "careful cleaning was responsible for the enhanced value of the painting" -00881030 00 s 02 hyperbolic 0 inflated 1 002 & 00880207 a 0000 + 07106502 n 0101 | enlarged beyond truth or reasonableness; "a hyperbolic style" -00881177 00 s 03 exaggerated 2 magnified 0 enlarged 2 001 & 00880207 a 0000 | enlarged to an abnormal degree; "thick lenses exaggerated the size of her eyes" -00881337 00 s 01 multiplied 0 001 & 00880207 a 0000 | greatly increased as by multiplication -00881432 00 s 02 raised(a) 0 elevated 0 001 & 00880207 a 0000 | increased in amount or degree; "raised temperature" -00881551 00 s 01 redoubled 0 001 & 00880207 a 0000 | become much greater in intensity or size or amount; "we faced redoubled attacks from the enemy"; "despite our redoubled efforts" -00881735 00 a 02 decreased 0 reduced 4 011 ! 00880207 a 0101 & 00882018 a 0000 & 00882166 a 0000 & 00882312 a 0000 & 00882462 a 0000 & 00882580 a 0000 & 00882742 a 0000 & 00882890 a 0000 & 00883075 a 0000 & 00883188 a 0000 & 00883345 a 0000 | made less in size or amount or degree -00882018 00 s 01 ablated 0 001 & 00881735 a 0000 | made smaller or less by melting or erosion or vaporization; "the rocket's ablated head shield" -00882166 00 s 04 attenuate 0 attenuated 0 faded 0 weakened 0 001 & 00881735 a 0000 | reduced in strength; "the faded tones of an old recording" -00882312 00 s 01 attenuated 2 002 & 00881735 a 0000 ;c 06099269 n 0000 | of an electrical signal; reduced in amplitude with little or no distortion -00882462 00 s 01 bated 0 001 & 00881735 a 0000 | diminished or moderated; "our bated enthusiasm"; "his bated hopes" -00882580 00 s 03 belittled 0 diminished 1 small 0 001 & 00881735 a 0000 | made to seem smaller or less (especially in worth); "her comments made me feel small" -00882742 00 s 02 cut 0 slashed 0 001 & 00881735 a 0000 | (used of rates or prices) reduced usually sharply; "the slashed prices attracted buyers" -00882890 00 s 01 diminished 2 002 & 00881735 a 0000 ;c 07020895 n 0000 | (of musical intervals) reduction by a semitone of any perfect or minor musical interval; "a diminished fifth" -00883075 00 s 01 minimized 2 001 & 00881735 a 0000 | reduced to the smallest possible size or amount or degree -00883188 00 s 01 remittent 0 002 & 00881735 a 0000 + 00268314 v 0101 | (of a disease) characterized by periods of diminished severity; "a remittent fever" -00883345 00 s 03 shriveled 0 shrivelled 0 shrunken 0 001 & 00881735 a 0000 | reduced in efficacy or vitality or intensity; "our shriveled receipts during the storm"; "as the project wore on she found her enthusiasm shriveled"; "the dollar's shrunken buying power" -00883611 00 a 01 reducible 0 005 + 02258291 v 0101 + 00237704 v 0101 + 00242396 v 0101 + 00240131 v 0101 ! 00883830 a 0101 | capable of being reduced; "reducible to a set of principles of human nature"- Edmund Wilson -00883830 00 a 01 irreducible 0 001 ! 00883611 a 0101 | incapable of being made smaller or simpler; "an irreducible minimum"; "an irreducible formula"; "an irreducible hernia" -00884007 00 a 01 enlightened 0 004 ^ 00829745 a 0000 ^ 01306273 a 0000 ! 00884286 a 0101 & 00884157 a 0000 | having knowledge and spiritual insight -00884157 00 s 01 edified 0 001 & 00884007 a 0000 | instructed and encouraged in moral, intellectual, and spiritual improvement -00884286 00 a 01 unenlightened 0 004 ^ 00830717 a 0000 ^ 01308425 a 0000 ! 00884007 a 0101 & 00884501 a 0000 | not enlightened; ignorant; "the devices by which unenlightened men preserved the unjust social order" -00884501 00 s 02 benighted 0 dark 0 003 & 00884286 a 0000 + 05988498 n 0201 + 05988498 n 0202 | lacking enlightenment or knowledge or culture; "this benighted country"; "benighted ages of barbarism and superstition"; "the dark ages"; "a dark age in the history of education" -00884778 00 a 01 enterprising 0 007 ^ 00065791 a 0000 ^ 00104051 a 0000 ^ 00873603 a 0000 + 04836074 n 0102 ! 00885415 a 0101 & 00885099 a 0000 & 00885288 a 0000 | marked by imagination, initiative, and readiness to undertake new projects; "an enterprising foreign policy"; "an enterprising young man likely to go far" -00885099 00 s 04 energetic 0 gumptious 0 industrious 0 up-and-coming 0 004 & 00884778 a 0000 + 04865114 n 0303 + 04865114 n 0302 + 04836683 n 0101 | working hard to promote an enterprise -00885288 00 s 01 entrepreneurial 0 002 & 00884778 a 0000 + 10060352 n 0101 | willing to take risks in order to make a profit -00885415 00 a 02 unenterprising 0 nonenterprising 0 004 ^ 00066800 a 0000 ^ 00105023 a 0000 ! 00884778 a 0101 & 00885594 a 0000 | lacking in enterprise; not bold or venturesome -00885594 00 s 02 slowgoing 0 unenergetic 0 001 & 00885415 a 0000 | not inclined to be enterprising -00885695 00 a 01 enthusiastic 0 012 ^ 01725712 a 0000 ^ 02278939 a 0000 + 07555014 n 0101 + 05670343 n 0101 ! 00887062 a 0101 & 00886117 a 0000 & 00886253 a 0000 & 00886448 a 0000 & 00886681 a 0000 & 00886804 a 0000 & 00886895 a 0000 & 00886980 a 0000 | having or showing great excitement and interest; "enthusiastic crowds filled the streets"; "an enthusiastic response"; "was enthusiastic about taking ballet lessons" -00886117 00 s 02 ardent 0 warm 0 001 & 00885695 a 0000 | characterized by strong enthusiasm; "ardent revolutionaries"; "warm support" -00886253 00 s 02 avid 0 zealous 0 005 & 00885695 a 0000 + 07481785 n 0201 + 07555402 n 0204 + 07555184 n 0102 + 07555184 n 0103 | marked by active interest and enthusiasm; "an avid sports fan" -00886448 00 s 04 crazy 0 wild 0 dotty 0 gaga 0 004 & 00885695 a 0000 ;u 07075172 n 0000 + 05751173 n 0102 + 05647156 n 0103 | intensely enthusiastic about or preoccupied with; "crazy about cars and racing"; "he is potty about her" -00886681 00 s 02 evangelical 0 evangelistic 0 001 & 00885695 a 0000 | marked by ardent or zealous enthusiasm for a cause -00886804 00 s 01 glowing 0 001 & 00885695 a 0000 | highly enthusiastic; "glowing praise" -00886895 00 s 01 gung_ho 0 001 & 00885695 a 0000 | very enthusiastic and dedicated -00886980 00 s 01 overenthusiastic 0 001 & 00885695 a 0000 | unduly enthusiastic -00887062 00 a 01 unenthusiastic 0 005 ^ 01727439 a 0000 ^ 02281325 a 0000 ! 00885695 a 0101 & 00887317 a 0000 & 00887472 a 0000 | not enthusiastic; lacking excitement or ardor; "an unenthusiastic performance by the orchestra"; "unenthusiastic applause" -00887317 00 s 01 cold 0 002 & 00887062 a 0000 + 04629604 n 0101 | feeling or showing no enthusiasm; "a cold audience"; "a cold response to the new play" -00887472 00 s 04 halfhearted 0 half-hearted 0 tepid 0 lukewarm 0 003 & 00887062 a 0000 + 04630547 n 0402 + 04630547 n 0301 | feeling or showing little interest or enthusiasm; "a halfhearted effort"; "gave only lukewarm support to the candidate" -00887719 00 a 02 desirous 0 wishful 0 009 + 07487177 n 0201 + 14038993 n 0101 ! 00889334 a 0101 & 00888051 a 0000 & 00888200 a 0000 & 00888477 a 0000 & 00888765 a 0000 & 00889098 a 0000 & 00889239 a 0000 | having or expressing desire for something; "desirous of high office"; "desirous of finding a quick solution to the problem" -00888051 00 s 01 appetent 0 003 & 00887719 a 0000 + 07485626 n 0102 + 07485626 n 0103 | marked by eager desire; "a big rich appetent Western city" -00888200 00 s 03 athirst(p) 0 hungry(p) 0 thirsty(p) 0 005 & 00887719 a 0000 + 04945254 n 0304 + 04945254 n 0303 + 04945254 n 0201 + 07486628 n 0203 | (usually followed by `for') extremely desirous; "athirst for knowledge"; "hungry for recognition"; "thirsty for informaton" -00888477 00 s 04 avid 0 devouring(a) 0 esurient 0 greedy 0 001 & 00887719 a 0000 | (often followed by `for') ardently or excessively desirous; "avid for adventure"; "an avid ambition to succeed"; "fierce devouring affection"; "the esurient eyes of an avid curiosity"; "greedy for fame" -00888765 00 s 03 covetous 0 envious 0 jealous 0 004 & 00887719 a 0000 + 00758335 n 0201 + 07549716 n 0202 + 04945758 n 0103 | showing extreme cupidity; painfully desirous of another's advantages; "he was never covetous before he met her"; "jealous of his success and covetous of his possessions"; "envious of their art collection" -00889098 00 s 01 nostalgic 0 002 & 00887719 a 0000 + 07487375 n 0101 | unhappy about being away and longing for familiar things or persons -00889239 00 s 01 homesick 0 002 & 00887719 a 0000 + 07487594 n 0101 | longing to return home -00889334 00 a 02 undesirous 0 undesiring 0 001 ! 00887719 a 0101 | having or feeling no desire; "a very private man, totally undesirous of public office" -00889490 00 a 03 entozoic 0 entozoan 0 endozoic 0 003 + 01385017 n 0203 + 01385017 n 0204 ! 00889672 a 0101 | living within a living animal usually as a parasite; "entozoic worms" -00889672 00 a 01 epizoic 0 001 ! 00889490 a 0101 | living or growing on the exterior surface of an animal usually as a parasite; "an epizoic plant parasite" -00889831 00 a 01 equal 0 021 ^ 00481222 a 0000 ^ 00503982 a 0000 ^ 02062670 a 0000 = 04747899 n 0000 + 09626238 n 0102 + 04747899 n 0101 ! 00892379 a 0101 & 00890351 a 0000 & 00890622 a 0000 & 00890781 a 0000 & 00890874 a 0000 & 00890985 a 0000 & 00891081 a 0000 & 00891170 a 0000 & 00891468 a 0000 & 00891569 a 0000 & 00891705 a 0000 & 00891807 a 0000 & 00891970 a 0000 & 00892104 a 0000 & 00892243 a 0000 | having the same quantity, value, or measure as another; "on equal terms"; "all men are equal before the law" -00890351 00 s 02 equivalent 0 tantamount(p) 0 003 & 00889831 a 0000 + 05695554 n 0101 + 04748273 n 0101 | being essentially equal to something; "it was as good as gold"; "a wish that was equivalent to a command"; "his statement was tantamount to an admission of guilt" -00890622 00 s 02 close 0 tight 0 001 & 00889831 a 0000 | (of a contest or contestants) evenly matched; "a close contest"; "a close election"; "a tight game" -00890781 00 s 01 coequal 0 001 & 00889831 a 0000 | having the same standing before the law -00890874 00 s 01 coordinate 0 002 & 00889831 a 0000 + 05641432 n 0101 | of equal importance, rank, or degree -00890985 00 s 01 equidistant 0 001 & 00889831 a 0000 | the same distance apart at every point -00891081 00 s 01 equilateral 0 001 & 00889831 a 0000 | having all sides or faces equal -00891170 00 s 02 even 1 fifty-fifty 0 002 & 00889831 a 0000 + 04748498 n 0101 | equal in degree or extent or amount; or equally matched or balanced; "even amounts of butter and sugar"; "on even terms"; "it was a fifty-fifty (or even) split"; "had a fifty-fifty (or even) chance"; "an even fight" -00891468 00 s 01 half-and-half 0 001 & 00889831 a 0000 | in equal parts; "a half-and-half mixture" -00891569 00 s 02 isochronal 0 isochronous 0 001 & 00889831 a 0000 | equal in duration or interval; "the oscillations were isochronal" -00891705 00 s 02 isoclinal 0 isoclinic 0 001 & 00889831 a 0000 | having equal magnetic inclinations -00891807 00 s 02 isometric 0 isometrical 0 004 & 00889831 a 0000 + 04748654 n 0201 + 05131537 n 0101 + 04748654 n 0101 | having equal dimensions or measurements -00891970 00 s 01 isothermal 0 002 & 00889831 a 0000 + 08590172 n 0101 | of a process or change taking place at constant temperature -00892104 00 s 01 quits 0 001 & 00889831 a 0000 | on equal terms by payment or requital; "we're now quits"; "finally quits with the loan" -00892243 00 s 03 tied(p) 0 even 2 level(p) 0 002 & 00889831 a 0000 + 04748498 n 0201 | of the score in a contest; "the score is tied" -00892379 00 a 01 unequal 0 009 ^ 00481855 a 0000 = 04747899 n 0000 ! 00889831 a 0101 & 00892635 a 0000 & 00892773 a 0000 & 00892976 a 0000 & 00893118 a 0000 & 00893239 a 0000 & 00893347 a 0000 | poorly balanced or matched in quantity or value or measure -00892635 00 s 02 anisometric 0 unsymmetrical 0 001 & 00892379 a 0000 | having unsymmetrical parts or unequal dimensions or measurements -00892773 00 s 02 mismatched 0 uneven 0 002 & 00892379 a 0000 + 04753331 n 0201 | (of a contest or contestants) not fairly matched as opponents; "vaudeville...waged an uneven battle against the church" -00892976 00 s 01 nonequivalent 0 002 & 00892379 a 0000 + 04752414 n 0101 | not equal or interchangeable in value, quantity, or significance -00893118 00 s 01 odds-on 0 001 & 00892379 a 0000 | having a better than even chance of success; "the odds-on favorite" -00893239 00 s 01 unbalanced 0 002 & 00892379 a 0000 ;c 05662532 n 0000 | debits and credits are not equal -00893347 00 s 02 unequalized 0 unequalised 0 001 & 00892379 a 0000 | not caused to be equal -00893441 00 a 01 balanced 0 007 ! 00894757 a 0101 & 00893878 a 0000 & 00894029 a 0000 & 00894272 a 0000 & 00894435 a 0000 & 00894551 a 0000 & 00894627 a 0000 | being in a state of proper equilibrium; "the carefully balanced seesaw"; "a properly balanced symphony orchestra"; "a balanced assessment of intellectual and cultural history"; "a balanced blend of whiskeys"; "the educated man shows a balanced development of all his powers" -00893878 00 s 02 counterbalanced 0 counterpoised 0 001 & 00893441 a 0000 | brought into equipoise by means of a weight or force that offsets another -00894029 00 s 03 harmonious 0 proportionate 0 symmetrical 0 004 & 00893441 a 0000 + 13817279 n 0203 + 13969243 n 0101 + 04713118 n 0102 | exhibiting equivalence or correspondence among constituents of an entity or between different entities -00894272 00 s 01 poised 0 001 & 00893441 a 0000 | marked by balance or equilibrium and readiness for action; "a gull in poised flight"; "George's poised hammer" -00894435 00 s 01 self-balancing 0 001 & 00893441 a 0000 | of someone or something that balances himself or itself -00894551 00 s 01 stable 0 001 & 00893441 a 0000 | maintaining equilibrium -00894627 00 s 01 well-balanced 0 001 & 00893441 a 0000 | in an optimal state of balance or equilibrium; "a well-balanced wheel" -00894757 00 a 02 unbalanced 0 imbalanced 0 002 ! 00893441 a 0101 & 00894879 a 0000 | being or thrown out of equilibrium -00894879 00 s 01 labile 0 001 & 00894757 a 0000 | liable to change; "an emotionally labile person" -00894980 00 a 02 isotonic 0 isosmotic 0 002 ! 00895126 a 0101 ! 00895276 a 0101 | (used of solutions) having the same or equal osmotic pressure -00895126 00 a 01 hypertonic 0 002 ! 00895276 a 0101 ! 00894980 a 0101 | (of a solution) having a higher osmotic pressure than a comparison solution -00895276 00 a 01 hypotonic 0 003 + 14576860 n 0101 ! 00894980 a 0101 ! 00895126 a 0101 | (of a solution) having a lower osmotic pressure than a comparison solution -00895442 00 a 02 equivocal 0 ambiguous 4 008 ^ 00102201 a 0000 + 04825114 n 0201 + 06604319 n 0201 + 04825114 n 0102 ! 00896555 a 0101 & 00896026 a 0000 & 00896182 a 0000 & 00896378 a 0000 | open to two or more interpretations; or of uncertain nature or significance; or (often) intended to mislead; "an equivocal statement"; "the polling had a complex and equivocal (or ambiguous) message for potential female candidates"; "the officer's equivocal behavior increased the victim's uneasiness"; "popularity is an equivocal crown"; "an equivocal response to an embarrassing question" -00896026 00 s 02 double 0 forked 0 001 & 00895442 a 0000 | having two meanings with intent to deceive; "a sly double meaning"; "spoke with forked tongue" -00896182 00 s 01 evasive 0 003 & 00895442 a 0000 + 02369811 v 0101 + 04825383 n 0103 | deliberately vague or ambiguous; "his answers were brief, constrained and evasive"; "an evasive statement" -00896378 00 s 01 indeterminate 0 002 & 00895442 a 0000 + 04757864 n 0102 | of uncertain or ambiguous nature; "the equivocal (or indeterminate) objects painted by surrealists" -00896555 00 a 03 unequivocal 0 univocal 0 unambiguous 4 007 ^ 00103696 a 0000 + 04821802 n 0301 + 04821802 n 0102 ! 00895442 a 0101 & 00897015 a 0000 & 00897223 a 0000 & 00897363 a 0000 | admitting of no doubt or misunderstanding; having only one meaning or interpretation and leading to only one conclusion; "unequivocal evidence"; "took an unequivocal position"; "an unequivocal success"; "an unequivocal promise"; "an unequivocal (or univocal) statement" -00897015 00 s 01 absolute 0 003 & 00896555 a 0000 + 05854474 n 0101 + 04738398 n 0101 | expressing finality with no implication of possible change; "an absolute guarantee to respect the nation's authority" -00897223 00 s 01 straightforward 0 002 & 00896555 a 0000 + 04918498 n 0102 | free from ambiguity; "a straightforward set of instructions" -00897363 00 s 01 unquestionable 0 002 & 00896555 a 0000 + 04754862 n 0104 | not open to question; "an unquestionable (or unequivocal) loss of prestige" -00897517 00 a 01 eradicable 0 005 ! 00898289 a 0101 & 00897681 a 0000 & 00897759 a 0000 & 00898013 a 0000 & 00898132 a 0000 | able to be eradicated or rooted out -00897681 00 s 01 delible 0 001 & 00897517 a 0000 | capable of being deleted -00897759 00 s 02 effaceable 0 erasable 0 001 & 00897517 a 0000 | capable of being effaced; "the fire's worst scars were effaceable by a comprehensive program of reforestation"; "a signal too loud to be erasable in a single pass through the erase head" -00898013 00 s 02 exterminable 0 extirpable 0 001 & 00897517 a 0000 | capable of being totally destroyed or wiped out -00898132 00 s 02 obliterable 0 removable 0 004 & 00897517 a 0000 + 00472230 v 0101 + 00478830 v 0102 + 00313987 v 0103 | able to be obliterated completely -00898289 00 a 01 ineradicable 0 005 ^ 01754421 a 0000 ! 00897517 a 0101 & 00898488 a 0000 & 00898628 a 0000 & 00898814 a 0000 | not able to be destroyed or rooted out; "ineradicable superstitions" -00898488 00 s 02 indelible 0 unerasable 0 001 & 00898289 a 0000 | cannot be removed or erased; "an indelible stain"; "indelible memories" -00898628 00 s 02 inexpungible 0 inexpungeable 0 001 & 00898289 a 0000 | not capable of being expunged; "the inexpungible scent of a bottle of perfume he had broken"- Louis Auchincloss -00898814 00 s 02 inexterminable 0 inextirpable 0 001 & 00898289 a 0000 | incapable of extermination or extirpation; "some weeds seem inextirpable" -00898963 00 a 01 esoteric 0 006 ^ 01858094 a 0000 ! 00900478 a 0101 & 00899226 a 0000 & 00899612 a 0000 & 00899738 a 0000 & 00900071 a 0000 | confined to and understandable by only an enlightened inner circle; "a compilation of esoteric philosophical theories" -00899226 00 s 03 abstruse 0 deep 0 recondite 0 005 & 00898963 a 0000 + 04823416 n 0304 + 05926358 n 0103 + 05926358 n 0102 + 04823416 n 0103 | difficult to penetrate; incomprehensible to one of ordinary understanding or knowledge; "the professor's lectures were so abstruse that students tended to avoid them"; "a deep metaphysical theory"; "some recondite problem in historiography" -00899612 00 s 01 arcane 0 001 & 00898963 a 0000 | requiring secret or mysterious knowledge; "the arcane science of dowsing" -00899738 00 s 06 cabalistic 0 kabbalistic 0 qabalistic 0 cryptic 0 cryptical 0 sibylline 0 004 & 00898963 a 0000 + 06673770 n 0307 + 06673770 n 0205 + 06673770 n 0101 | having a secret or hidden meaning; "cabalistic symbols engraved in stone"; "cryptic writings"; "thoroughly sibylline in most of his pronouncements"- John Gunther -00900071 00 s 06 mysterious 0 mystic 0 mystical 0 occult 0 secret 0 orphic 0 006 & 00898963 a 0000 + 09503877 n 0402 + 00412572 n 0401 + 10343554 n 0301 + 10343554 n 0201 + 05685538 n 0101 | having an import not apparent to the senses nor obvious to the intelligence; beyond ordinary understanding; "mysterious symbols"; "the mystical style of Blake"; "occult lore"; "the secret learning of the ancients" -00900478 00 a 01 exoteric 0 002 ^ 01861205 a 0000 ! 00898963 a 0101 | suitable for the general public; "writings of an exoteric nature" -00900616 00 a 01 essential 0 020 ^ 00655779 a 0000 ^ 01275562 a 0000 ^ 00903668 a 0000 ^ 01348258 a 0000 ^ 01580050 a 0000 ^ 01852174 a 0000 ^ 00933032 a 0000 = 05171045 n 0000 + 05171045 n 0102 + 05171045 n 0101 ! 00902652 a 0101 & 00901060 a 0000 & 00901161 a 0000 & 00901345 a 0000 & 00901547 a 0000 & 00901650 a 0000 & 00901826 a 0000 & 00901969 a 0000 & 00902157 a 0000 & 00902347 a 0000 | basic and fundamental; "the essential feature" -00901060 00 s 02 basal 0 primary 0 002 & 00900616 a 0000 + 05793554 n 0102 | of primary importance -00901161 00 s 01 biogenic 0 001 & 00900616 a 0000 | essential for maintaining the fundamental life processes; "sleep and food and water are among the biogenic needs of the organism" -00901345 00 s 04 constituent(a) 0 constitutional 0 constitutive(a) 0 organic 0 002 & 00900616 a 0000 + 02620587 v 0101 | constitutional in the structure of something (especially your physical makeup) -00901547 00 s 01 must(a) 0 001 & 00900616 a 0000 | highly recommended; "a book that is must reading" -00901650 00 s 01 no-frills(a) 0 002 & 00900616 a 0000 ;u 07075172 n 0000 | characterized by the absence of inessential features; "he got a no-frills introduction to the job" -00901826 00 s 01 staple 0 001 & 00900616 a 0000 | necessary or important, especially regarding food or commodities; "wheat is a staple crop" -00901969 00 s 02 substantial 0 substantive 0 001 & 00900616 a 0000 | having a firm basis in reality and being therefore important, meaningful, or considerable; "substantial equivalents" -00902157 00 s 01 virtual(a) 0 001 & 00900616 a 0000 | existing in essence or effect though not in actual fact; "a virtual dependence on charity"; "a virtual revolution"; "virtual reality" -00902347 00 s 02 vital 0 life-sustaining 0 004 & 00900616 a 0000 + 05171491 n 0103 + 05171352 n 0101 + 11523839 n 0103 | performing an essential function in the living body; "vital organs"; "blood and other vital fluids"; "the loss of vital heat in shock"; "a vital spot"; "life-giving love and praise" -00902652 00 a 02 inessential 0 unessential 0 012 ^ 00903449 a 0000 ^ 00932695 a 0000 ^ 01349041 a 0000 ^ 01853461 a 0000 ^ 01279978 a 0000 ^ 01581115 a 0000 = 05171045 n 0000 + 05172815 n 0101 ! 00900616 a 0101 & 00902946 a 0000 & 00903117 a 0000 & 00903264 a 0000 | not basic or fundamental -00902946 00 s 01 accessorial 0 003 & 00902652 a 0000 + 02671780 n 0101 + 02671421 n 0101 | nonessential but helpful; "accessorial services included sorting and packing" -00903117 00 s 01 adscititious 0 001 & 00902652 a 0000 | supplemental; not part of the real or essential nature of a thing; "adscititious vowels" -00903264 00 s 02 incidental 0 nonessential 0 002 & 00902652 a 0000 + 09312645 n 0202 | not of prime or central importance; "nonessential to the integral meanings of poetry"- Pubs.MLA -00903449 00 a 01 dispensable 0 005 ^ 01581115 a 0000 = 05172953 n 0000 + 05172953 n 0102 + 05172953 n 0101 ! 00903668 a 0101 | capable of being dispensed with or done without; "dispensable items of personal property" -00903668 00 a 01 indispensable 0 006 ^ 01580050 a 0000 = 05172953 n 0000 + 05171491 n 0102 + 05171491 n 0101 ! 00903449 a 0101 & 00903894 a 0000 | not to be dispensed with; essential; "foods indispensable to good nutrition" -00903894 00 s 02 critical 0 vital 0 004 & 00903668 a 0000 + 05171491 n 0203 + 14451672 n 0102 + 14451672 n 0101 | urgently needed; absolutely necessary; "a critical element of the plan"; "critical medical supplies"; "vital for a healthy society"; "of vital interest" -00904163 00 a 01 estimable 0 003 ^ 02584981 a 0000 ! 00904548 a 0101 & 00904290 a 0000 | deserving of respect or high regard -00904290 00 s 01 admirable 0 003 & 00904163 a 0000 + 04729127 n 0101 + 04729127 n 0102 | deserving of the highest esteem or admiration; "an estimable young professor"; "trains ran with admirable precision"; "his taste was impeccable, his health admirable" -00904548 00 a 01 contemptible 0 007 ^ 01589217 a 0000 ^ 02588099 a 0000 + 04807971 n 0103 ! 00904163 a 0101 & 00904745 a 0000 & 00905039 a 0000 & 00905181 a 0000 | deserving of contempt or scorn -00904745 00 s 06 abject 0 low 0 low-down 0 miserable 0 scummy 0 scurvy 0 001 & 00904548 a 0000 | of the most contemptible kind; "abject cowardice"; "a low stunt to pull"; "a low-down sneak"; "his miserable treatment of his family"; "You miserable skunk!"; "a scummy rabble"; "a scurvy trick" -00905039 00 s 02 bastardly 0 mean 0 002 & 00904548 a 0000 + 02804772 n 0101 | of no value or worth; "I was caught in the bastardly traffic" -00905181 00 s 03 pathetic 0 pitiable 0 pitiful 0 001 & 00904548 a 0000 | inspiring mixed contempt and pity; "their efforts were pathetic"; "pitiable lack of character"; "pitiful exhibition of cowardice" -00905386 00 a 01 ethical 0 003 ^ 02034828 a 0000 + 09183693 n 0102 ! 00905728 a 0101 | conforming to accepted standards of social or professional behavior; "an ethical lawyer"; "ethical medical practice"; "an ethical problem"; "had no ethical objection to drinking"; "Ours is a world of nuclear giants and ethical infants"- Omar N. Bradley -00905728 00 a 01 unethical 0 002 ^ 02035337 a 0000 ! 00905386 a 0101 | not conforming to approved standards of social or professional behavior; "unethical business practices" -00905905 00 a 01 complimentary 0 005 ^ 00995775 a 0000 + 06695227 n 0101 ! 00906455 a 0101 & 00906099 a 0000 & 00906312 a 0000 | conveying or resembling a compliment; "a complimentary remark" -00906099 00 s 04 encomiastic 0 eulogistic 0 panegyric 0 panegyrical 0 006 & 00905905 a 0000 + 06694149 n 0403 + 06694149 n 0303 + 06694149 n 0202 + 06694359 n 0201 + 06694149 n 0101 | formally expressing praise -00906312 00 s 03 laudatory 0 praiseful 0 praising 0 002 & 00905905 a 0000 + 00860620 v 0101 | full of or giving praise; "a laudatory remark" -00906455 00 a 01 uncomplimentary 0 006 ^ 00996448 a 0000 ! 00905905 a 0101 & 00906655 a 0000 & 00907032 a 0000 & 00907243 a 0000 & 00907400 a 0000 | tending to (or intended to) detract or disparage -00906655 00 s 07 belittling 0 deprecating 0 deprecative 0 deprecatory 0 depreciative 0 depreciatory 0 slighting 0 005 & 00906455 a 0000 + 00855933 v 0602 + 00855933 v 0502 + 00855933 v 0401 + 00855933 v 0301 | tending to diminish or disparage; "belittling comments"; "managed a deprecating smile at the compliment"; "deprecatory remarks about the book"; "a slighting remark" -00907032 00 s 03 derogative 0 derogatory 0 disparaging 0 003 & 00906455 a 0000 + 00864475 v 0204 + 00864475 v 0104 | expressive of low opinion; "derogatory comments"; "disparaging remarks about the new house" -00907243 00 s 03 dyslogistic 0 dislogistic 0 pejorative 0 001 & 00906455 a 0000 | expressing disapproval; "dyslogistic terms like `nitwit' and `scalawag'" -00907400 00 s 03 supercilious 0 sneering 0 snide 0 002 & 00906455 a 0000 + 04888268 n 0102 | expressive of contempt; "curled his lip in a supercilious smile"; "spoke in a sneering jeering manner"; "makes many a sharp comparison but never a mean or snide one" -00907661 00 a 01 flattering 0 004 ! 00908315 a 0101 & 00907830 a 0000 & 00907972 a 0000 & 00908143 a 0000 | showing or representing to advantage; "a flattering color" -00907830 00 s 01 adulatory 0 002 & 00907661 a 0000 + 00880518 v 0101 | obsequiously complimentary; "they listened with flattering interest" -00907972 00 s 01 becoming 0 002 & 00907661 a 0000 + 04900597 n 0101 | displaying or setting off to best advantage; "a becoming new shade of rose"; "a becoming portrait" -00908143 00 s 03 ingratiating 0 insinuating 0 ingratiatory 0 002 & 00907661 a 0000 + 01804595 v 0301 | calculated to please or gain favor; "a smooth ingratiating manner" -00908315 00 a 02 unflattering 0 uncomplimentary 1 001 ! 00907661 a 0101 | showing or representing unfavorably; "an unflattering portrait"; "an uncomplimentary dress" -00908483 00 a 02 euphemistic 0 inoffensive 5 002 + 06605046 n 0101 ! 00908672 a 0101 | substituting a mild term for a harsher or distasteful one; "`peepee' is a common euphemistic term" -00908672 00 a 02 dysphemistic 0 offensive 5 005 + 04780958 n 0201 + 01789270 v 0202 + 01793177 v 0205 + 06605396 n 0101 ! 00908483 a 0101 | substitute a harsher or distasteful term for a mild one ; "`nigger' is a dysphemistic term for `African-American'" -00908929 00 a 01 euphoric 0 006 ^ 00704609 a 0000 ^ 01148283 a 0000 + 07529096 n 0102 ! 00909363 a 0101 & 00909118 a 0000 & 00909220 a 0000 | exaggerated feeling of well-being or elation -00909118 00 s 01 euphoriant 0 002 & 00908929 a 0000 + 03301696 n 0101 | tending to produce euphoria -00909220 00 s 01 expansive 0 002 & 00908929 a 0000 ;c 06055946 n 0000 | marked by exaggerated feelings of euphoria and delusions of grandeur -00909363 00 a 03 dysphoric 0 distressed 4 unhappy 4 005 ^ 00703109 a 0000 ^ 01149494 a 0000 + 07532440 n 0302 + 07539367 n 0101 ! 00908929 a 0101 | generalized feeling of distress -00909545 00 a 01 even 1 013 ^ 02236842 a 0000 ^ 02301560 a 0000 = 04769456 n 0000 + 04748498 n 0101 ! 00911327 a 0101 & 00910101 a 0000 & 00910404 a 0000 & 00910542 a 0000 & 00910750 a 0000 & 00910885 a 0000 & 00910983 a 0000 & 00911091 a 0000 & 00911204 a 0000 | being level or straight or regular and without variation as e.g. in shape or texture; or being in the same plane or at the same height as something else (i.e. even with); "an even application of varnish"; "an even floor"; "the road was not very even"; "the picture is even with the window" -00910101 00 s 03 flat 0 level 1 plane 0 004 & 00909545 a 0000 + 13861050 n 0301 + 05063349 n 0303 + 05063349 n 0102 | having a surface without slope, tilt in which no part is higher or lower than another; "a flat desk"; "acres of level farmland"; "a plane surface"; "skirts sewn with fine flat seams" -00910404 00 s 02 flatbottom 0 flatbottomed 0 001 & 00909545 a 0000 | having a flat bottom; "a flatbottom kettle"; "a flatbottomed boat" -00910542 00 s 01 flush(p) 0 001 & 00909545 a 0000 | of a surface exactly even with an adjoining one, forming the same plane; "a door flush with the wall"; "the bottom of the window is flush with the floor" -00910750 00 s 01 justified 0 002 & 00909545 a 0000 ;c 06677302 n 0000 | having words so spaced that lines have straight even margins -00910885 00 s 01 lap-jointed 0 001 & 00909545 a 0000 | jointed so as to produce a flush surface -00910983 00 s 01 straight-grained 0 001 & 00909545 a 0000 | of timber; having fibers that run in parallel -00911091 00 s 01 level 2 001 & 00909545 a 0000 | oriented at right angles to the plumb; "the picture is level" -00911204 00 s 02 true 0 straight 2 001 & 00909545 a 0000 | accurately fitted; level; "the window frame isn't quite true" -00911327 00 a 01 uneven 0 015 ^ 02238462 a 0000 ^ 02303077 a 0000 = 04769456 n 0000 + 04771890 n 0101 ! 00909545 a 0101 & 00911762 a 0000 & 00911935 a 0000 & 00912094 a 0000 & 00912288 a 0000 & 00912490 a 0000 & 00912637 a 0000 & 00912814 a 0000 & 00912980 a 0000 & 00913131 a 0000 & 00913306 a 0000 | not even or uniform as e.g. in shape or texture; "an uneven color"; "uneven ground"; "uneven margins"; "wood with an uneven grain" -00911762 00 s 05 crinkled 0 crinkly 0 rippled 0 wavy 0 wavelike 0 003 & 00911327 a 0000 + 04772955 n 0401 + 13905792 n 0204 | uneven by virtue of having wrinkles or waves -00911935 00 s 03 curly-grained 0 cross-grained 0 wavy-grained 0 001 & 00911327 a 0000 | of timber; having fibers running irregularly rather than in parallel -00912094 00 s 01 irregular 0 002 & 00911327 a 0000 + 05066012 n 0101 | (of a surface or shape); not level or flat or symmetrical; "walking was difficult on the irregular cobblestoned surface" -00912288 00 s 03 jagged 0 jaggy 0 scraggy 0 003 & 00911327 a 0000 + 09320826 n 0201 + 04772691 n 0101 | having a sharply uneven surface or outline; "the jagged outline of the crags"; "scraggy cliffs" -00912490 00 s 01 lumpy 0 003 & 00911327 a 0000 + 09307300 n 0102 + 07961016 n 0104 | having lumps; not smooth and even in texture; "lumpy gravy" -00912637 00 s 02 out_of_true 0 untrue 0 001 & 00911327 a 0000 | not accurately fitted; not level; "the frame was out of true"; "off-level floors and untrue doors and windows" -00912814 00 s 01 patchy 0 003 & 00911327 a 0000 + 04682462 n 0104 + 04772844 n 0101 | irregular or uneven in quality, texture, etc.; "a patchy essay"; "patchy fog" -00912980 00 s 01 pebble-grained 0 001 & 00911327 a 0000 | (of leather) having a rough surface as the result of being treated with a patterned roller -00913131 00 s 01 ragged 0 002 & 00911327 a 0000 + 04948241 n 0102 | having an irregular outline; "text set with ragged right margins"; "herded the class into a ragged line" -00913306 00 s 01 unparallel 0 001 & 00911327 a 0000 | not straight or parallel -00913387 00 a 01 even 2 001 ! 00913454 a 0101 | divisible by two -00913454 00 a 02 odd 0 uneven 4 002 + 13790592 n 0101 ! 00913387 a 0101 | not divisible by two -00913551 00 a 01 evergreen 0 004 ;c 00017222 n 0000 ! 00914104 a 0101 & 00913720 a 0000 & 00913889 a 0000 | (of plants and shrubs) bearing foliage throughout the year -00913720 00 s 02 coniferous 0 cone-bearing 0 002 & 00913551 a 0000 + 13108841 n 0101 | of or relating to or part of trees or shrubs bearing cones and evergreen leaves -00913889 00 s 02 semi-evergreen 0 half-evergreen 0 001 & 00913551 a 0000 | of a plant that is incompletely evergreen; "it was evergreen where the weather was mild but deciduous in the rigorous parts of the range" -00914104 00 a 01 deciduous 0 003 ;c 00017222 n 0000 ! 00913551 a 0101 & 00914269 a 0000 | (of plants and shrubs) shedding foliage at the end of the growing season -00914269 00 s 03 broadleaf 0 broad-leafed 0 broad-leaved 0 001 & 00914104 a 0000 | having relatively broad rather than needlelike or scalelike leaves -00914421 00 a 01 exact 0 012 ^ 00021766 a 0000 ^ 01418789 a 0000 ^ 01749320 a 0000 ^ 01837744 a 0000 + 04803430 n 0101 ! 00915787 a 0101 & 00914808 a 0000 & 00914983 a 0000 & 00915141 a 0000 & 00915321 a 0000 & 00915420 a 0000 & 00915556 a 0000 | marked by strict and particular and complete accordance with fact; "an exact mind"; "an exact copy"; "hit the exact center of the target" -00914808 00 s 02 direct 0 verbatim 0 001 & 00914421 a 0000 | in precisely the same words used by a writer or speaker; "a direct quotation"; "repeated their dialog verbatim" -00914983 00 s 01 literal 0 002 & 00914421 a 0000 + 04760611 n 0101 | without interpretation or embellishment; "a literal depiction of the scene before him" -00915141 00 s 01 mathematical 0 003 & 00914421 a 0000 ;c 06000644 n 0000 + 06000644 n 0101 | characterized by the exactness or precision of mathematics; "mathematical precision" -00915321 00 s 01 perfect 0 001 & 00914421 a 0000 | precisely accurate or exact; "perfect timing" -00915420 00 s 01 photographic 0 001 & 00914421 a 0000 | representing people or nature with the exactness and fidelity of a photograph -00915556 00 s 02 rigorous 0 strict 0 004 & 00914421 a 0000 + 04673173 n 0201 + 04639732 n 0106 + 04783567 n 0103 | rigidly accurate; allowing no deviation from a standard; "rigorous application of the law"; "a strict vegetarian" -00915787 00 a 01 inexact 0 008 ^ 01839417 a 0000 ^ 00023383 a 0000 + 04804611 n 0101 ! 00914421 a 0101 & 00915976 a 0000 & 00916199 a 0000 & 00916383 a 0000 & 00916524 a 0000 | not exact -00915976 00 s 03 approximate 0 approximative 0 rough 0 003 & 00915787 a 0000 + 02666060 v 0201 + 00672433 v 0203 | not quite exact or correct; "the approximate time was 10 o'clock"; "a rough guess"; "a ballpark estimate" -00916199 00 s 03 free 0 loose 0 liberal 0 002 & 00915787 a 0000 + 04804947 n 0201 | not literal; "a loose interpretation of what she had been told"; "a free translation of the poem" -00916383 00 s 01 odd 0 002 & 00915787 a 0000 ;u 06307152 n 0000 | an indefinite quantity more than that specified; "invited 30-odd guests" -00916524 00 s 01 round 0 003 & 00915787 a 0000 ;c 06000644 n 0000 + 05123206 n 0101 | (mathematics) expressed to the nearest integer, ten, hundred, or thousand; "in round numbers" -00916706 00 a 02 convertible 0 exchangeable 4 006 = 04736757 n 0000 + 04735929 n 0201 + 00161225 v 0104 + 04736757 n 0101 ! 00917207 a 0101 & 00916965 a 0000 | capable of being exchanged for or replaced by something of equal value; "convertible securities" -00916965 00 s 02 cashable 0 redeemable 0 002 & 00916706 a 0000 + 02256354 v 0101 | able to be converted into ready money or the equivalent; "a cashable check"; "cashable gambling chips"; "redeemable stocks and bonds"; "a redeemable coupon" -00917207 00 a 03 inconvertible 0 unconvertible 0 unexchangeable 4 005 = 04736757 n 0000 + 04740864 n 0301 + 04737020 n 0101 ! 00916706 a 0101 & 00917482 a 0000 | used especially of currencies; incapable of being exchanged for or replaced by another currency of equal value -00917482 00 s 01 irredeemable 0 001 & 00917207 a 0000 | (of paper money) not convertible into coin at the pleasure of the holder -00917613 00 a 01 exchangeable 0 005 ! 00918491 a 0101 & 00917768 a 0000 & 00917956 a 0000 & 00918200 a 0000 & 00918354 a 0000 | suitable to be exchanged -00917768 00 s 02 commutable 0 substitutable 0 003 & 00917613 a 0000 + 04737234 n 0202 + 04737234 n 0103 | capable of being exchanged for another or for something else that is equivalent -00917956 00 s 01 fungible 0 004 & 00917613 a 0000 ;c 08441203 n 0000 + 03403169 n 0101 + 04735929 n 0104 | of goods or commodities; freely exchangeable for or replaceable by another of like nature or kind in the satisfaction of an obligation -00918200 00 s 02 transposable 0 permutable 0 004 & 00917613 a 0000 + 04737568 n 0202 + 04737568 n 0201 + 04737568 n 0103 | capable of changing sequence -00918354 00 s 01 vicarious 0 001 & 00917613 a 0000 | suffered or done by one person as a substitute for another; "vicarious atonement" -00918491 00 a 01 unexchangeable 0 003 + 04740864 n 0101 ! 00917613 a 0101 & 00918616 a 0000 | not suitable to be exchanged -00918616 00 s 01 incommutable 0 002 & 00918491 a 0000 + 04741075 n 0101 | not interchangeable or able to substitute one for another; "a rare incommutable skill" -00918779 00 a 01 excitable 0 006 + 04628850 n 0102 + 04628850 n 0101 ! 00919321 a 0101 & 00918939 a 0000 & 00919018 a 0000 & 00919155 a 0000 | easily excited -00918939 00 s 01 high-keyed 0 001 & 00918779 a 0000 | (of persons) excitable -00919018 00 s 02 quick 0 warm 0 002 & 00918779 a 0000 + 05059132 n 0102 | easily aroused or excited; "a quick temper"; "a warm temper" -00919155 00 s 04 skittish 0 flighty 0 spooky 0 nervous 0 003 & 00918779 a 0000 + 04624959 n 0401 + 04625716 n 0101 | unpredictably excitable (especially of horses) -00919321 00 a 01 unexcitable 0 002 ! 00918779 a 0101 & 00919445 a 0000 | not easily excited; "an unexcitable temperament" -00919445 00 s 01 steady 0 001 & 00919321 a 0000 | not easily excited or upset; "steady nerves" -00919542 00 a 01 excited 0 012 ^ 00085264 a 0000 ! 00920881 a 0101 & 00919813 a 0000 & 00919919 a 0000 & 00919984 a 0000 & 00920167 a 0000 & 00920260 a 0000 & 00920422 a 0000 & 00920494 a 0000 & 00920603 a 0000 & 00920704 a 0000 & 00920797 a 0000 | in an aroused state -00919813 00 s 02 aflutter 0 nervous 0 002 & 00919542 a 0000 + 07525760 n 0203 | excited in anticipation -00919919 00 s 01 agog 0 001 & 00919542 a 0000 | highly excited -00919984 00 s 01 crazy 0 003 & 00919542 a 0000 ;u 07075172 n 0000 + 00512843 n 0104 | possessed by inordinate excitement; "the crowd went crazy"; "was crazy to try his new bicycle" -00920167 00 s 01 fevered 0 001 & 00919542 a 0000 | highly excited; "a fevered imagination" -00920260 00 s 02 intoxicated 0 drunk 0 001 & 00919542 a 0000 | as if under the influence of alcohol; "felt intoxicated by her success"; "drunk with excitement" -00920422 00 s 01 overexcited 0 001 & 00919542 a 0000 | unduly excited -00920494 00 s 04 stimulated 0 stirred 0 stirred_up 0 aroused 0 001 & 00919542 a 0000 | emotionally aroused -00920603 00 s 02 teased 0 titillated 0 001 & 00919542 a 0000 | feeling mild pleasurable excitement -00920704 00 s 01 thrilled 0 001 & 00919542 a 0000 | feeling intense pleasurable excitement -00920797 00 s 01 thrillful 0 001 & 00919542 a 0000 | full of excitement; thrilled -00920881 00 a 01 unexcited 0 002 ^ 00087152 a 0000 ! 00919542 a 0101 | not excited; "made an unexcited appraisal of the situation" -00921014 00 a 01 exciting 0 014 ^ 01343918 a 0000 ^ 01896478 a 0000 ^ 02131072 a 0000 ^ 02306288 a 0000 = 14037011 n 0000 ! 00922594 a 0101 & 00921369 a 0000 & 00921538 a 0000 & 00921631 a 0000 & 00921866 a 0000 & 00922051 a 0000 & 00922228 a 0000 & 00922344 a 0000 & 00922439 a 0000 | creating or arousing excitement; "an exciting account of her trip" -00921369 00 s 02 breathless 0 breathtaking 0 001 & 00921014 a 0000 | tending to cause suspension of regular breathing; "a breathless flight"; "breathtaking adventure" -00921538 00 s 02 elating 0 exhilarating 0 001 & 00921014 a 0000 | making lively and joyful -00921631 00 s 04 electric 0 galvanic 0 galvanizing 0 galvanising 0 001 & 00921014 a 0000 | affected by emotion as if by electricity; thrilling; "gave an electric reading of the play"; "the new leader had a galvanic effect on morale" -00921866 00 s 02 electrifying 0 thrilling 0 001 & 00921014 a 0000 | causing a surge of emotion or excitement; "she gave an electrifying performance"; "a thrilling performer to watch" -00922051 00 s 02 glamorous 0 glamourous 0 003 & 00921014 a 0000 + 04685195 n 0202 + 04685195 n 0101 | having an air of allure, romance and excitement; "glamorous movie stars" -00922228 00 s 02 heady 0 intoxicating 0 001 & 00921014 a 0000 | extremely exciting as if by alcohol or a narcotic -00922344 00 s 01 titillating 1 001 & 00921014 a 0000 | pleasantly and superficially exciting -00922439 00 s 03 tickling 0 tingling 0 titillating 2 001 & 00921014 a 0000 | exciting by touching lightly so as to cause laughter or twitching movements -00922594 00 a 01 unexciting 0 008 ^ 01344963 a 0000 ^ 01897787 a 0000 ^ 02307367 a 0000 = 14037011 n 0000 ! 00921014 a 0101 & 00922840 a 0000 & 00923066 a 0000 & 00923232 a 0000 | not exciting; "an unexciting novel"; "lived an unexciting life" -00922840 00 s 05 commonplace 0 humdrum 0 prosaic 0 unglamorous 0 unglamourous 0 003 & 00922594 a 0000 + 07072434 n 0301 + 04795878 n 0302 | not challenging; dull and lacking excitement; "an unglamorous job greasing engines" -00923066 00 s 01 uninspired 0 001 & 00922594 a 0000 | having no intellectual or emotional or spiritual excitement; "the production was professional but uninspired" -00923232 00 s 01 tame 0 002 & 00922594 a 0000 + 05206573 n 0103 | flat and uninspiring -00923321 00 a 01 exculpatory 0 006 ^ 01319874 a 0000 + 00904046 v 0106 ! 00923993 a 0101 & 00923495 a 0000 & 00923671 a 0000 & 00923790 a 0000 | clearing of guilt or blame -00923495 00 s 03 absolvitory 0 exonerative 0 forgiving 0 005 & 00923321 a 0000 + 04829764 n 0301 + 00904046 v 0205 + 00903711 v 0102 + 00902424 v 0101 | providing absolution -00923671 00 s 01 extenuating 0 001 & 00923321 a 0000 | partially excusing or justifying; "extenuating circumstances" -00923790 00 s 03 justificative 0 justificatory 0 vindicatory 0 006 & 00923321 a 0000 + 00896141 v 0302 + 00896803 v 0201 + 00896141 v 0201 + 00896803 v 0101 + 00896141 v 0101 | providing justification -00923993 00 a 02 inculpatory 0 inculpative 0 010 ^ 01320988 a 0000 + 02636921 v 0203 + 02636921 v 0103 ! 00923321 a 0101 & 00924257 a 0000 & 00924635 a 0000 & 00924791 a 0000 & 00924952 a 0000 & 00925177 a 0000 & 00925287 a 0000 | causing blame to be imputed to -00924257 00 s 04 accusative 0 accusatory 0 accusing 0 accusive 0 008 & 00923993 a 0000 + 00843468 v 0402 + 00842989 v 0401 + 00843468 v 0202 + 00842989 v 0201 + 06311557 n 0101 + 00843468 v 0102 + 00842989 v 0101 | containing or expressing accusation; "an accusitive forefinger"; "black accusatory looks"; "accusive shoes and telltale trousers"- O.Henry; "his accusing glare" -00924635 00 s 03 comminatory 0 denunciative 0 denunciatory 0 003 & 00923993 a 0000 + 02508245 v 0204 + 00864910 v 0104 | containing warning of punishment -00924791 00 s 02 condemnatory 0 condemning 0 002 & 00923993 a 0000 + 00864159 v 0101 | containing or imposing condemnation or censure; "a condemnatory decree" -00924952 00 s 04 criminative 0 criminatory 0 incriminating 0 incriminatory 0 004 & 00923993 a 0000 + 02636921 v 0401 + 00842989 v 0204 + 00842989 v 0104 | charging or suggestive of guilt or blame; "incriminatory testimony" -00925177 00 s 02 damnatory 0 damning 0 002 & 00923993 a 0000 + 00865958 v 0103 | threatening with damnation -00925287 00 s 02 recriminative 0 recriminatory 0 003 & 00923993 a 0000 + 00844553 v 0201 + 00844553 v 0101 | countering one charge with another; "recriminatory arguments" -00925460 00 a 01 exhaustible 0 002 ! 00925642 a 0101 & 00925560 a 0000 | capable of being used up -00925560 00 s 01 depletable 0 001 & 00925460 a 0000 | capable of being depleted -00925642 00 a 01 inexhaustible 0 003 ! 00925460 a 0101 & 00925820 a 0000 & 00925985 a 0000 | incapable of being entirely consumed or used up; "an inexhaustible supply of coal" -00925820 00 s 01 renewable 0 001 & 00925642 a 0000 | capable of being renewed; replaceable; "renewable energy such as solar energy is theoretically inexhaustible" -00925985 00 s 01 unfailing 0 001 & 00925642 a 0000 | always able to supply more; "an unfailing source of good stories"; "a subject of unfailing interest" -00926141 00 a 02 exhausted 0 spent 0 001 ! 00926348 a 0101 | depleted of energy, force, or strength; "impossible to grow tobacco on the exhausted soil"; "the exhausted food sources"; "exhausted oil wells" -00926348 00 a 01 unexhausted 0 004 ! 00926141 a 0101 & 00926505 a 0000 & 00926802 a 0000 & 00926871 a 0000 | not used up completely; "an unexhausted well" -00926505 00 s 06 leftover 0 left_over(p) 0 left(p) 0 odd 0 remaining 0 unexpended 0 001 & 00926348 a 0000 | not used up; "leftover meatloaf"; "she had a little money left over so she went to a movie"; "some odd dollars left"; "saved the remaining sandwiches for supper"; "unexpended provisions" -00926802 00 s 01 unconsumed 0 001 & 00926348 a 0000 | not consumed -00926871 00 s 02 unspent 0 unexpended 2 001 & 00926348 a 0000 | (of financial resources) not spent; "unexpended funds"; "his unspent allowance" -00927017 00 a 02 existent 0 existing 0 006 ^ 00928525 a 0000 = 13954253 n 0000 + 13954253 n 0103 + 02603699 v 0101 ! 00927578 a 0101 & 00927373 a 0000 | having existence or being or actuality; "an attempt to refine the existent machinery to make it more efficient"; "much of the beluga caviar existing in the world is found in the Soviet Union and Iran" -00927373 00 s 02 active 0 alive(p) 0 004 & 00927017 a 0000 + 13961642 n 0204 + 14006945 n 0103 + 00407535 n 0101 | in operation; "keep hope alive"; "the tradition was still alive"; "an active tradition" -00927578 00 a 01 nonexistent 0 008 ^ 00041051 a 0000 = 13954253 n 0000 + 13959931 n 0101 ! 00927017 a 0101 & 00927832 a 0000 & 00927978 a 0000 & 00928238 a 0000 & 00928414 a 0000 | not having existence or being or actuality; "chimeras are nonexistent" -00927832 00 s 04 lacking 0 absent 0 missing 0 wanting 0 001 & 00927578 a 0000 | nonexistent; "the thumb is absent"; "her appetite was lacking" -00927978 00 s 05 barren 0 destitute 0 devoid 0 free 0 innocent 0 001 & 00927578 a 0000 | completely wanting or lacking; "writing barren of insight"; "young recruits destitute of experience"; "innocent of literary merit"; "the sentence was devoid of meaning" -00928238 00 s 01 nonextant 0 001 & 00927578 a 0000 | no longer existing or inaccessible through loss or destruction; "its nonextant original was written on vellum"- G.B.Saul -00928414 00 s 01 vanished 0 001 & 00927578 a 0000 | having passed out of existence; "vanished civilizations" -00928525 00 a 01 extant 0 004 ^ 00927017 a 0000 ! 00929164 a 0101 & 00928781 a 0000 & 00928874 a 0000 | still in existence; not extinct or destroyed or lost; "extant manuscripts"; "specimens of graphic art found among extant barbaric folk"- Edward Clodd -00928781 00 s 01 living 1 001 & 00928525 a 0000 | still in active use; "a living language" -00928874 00 s 02 surviving 0 living 0 001 & 00928525 a 0000 | still in existence; "the Wollemi pine found in Australia is a surviving specimen of a conifer thought to have been long extinct and therefore known as a living fossil"; "the only surviving frontier blockhouse in Pennsylvania" -00929164 00 a 02 extinct 1 nonextant 2 003 ^ 00927578 a 0000 ! 00928525 a 0101 & 00929443 a 0000 | no longer in existence; lost or especially having died out leaving no living representatives; "an extinct species of fish"; "an extinct royal family"; "extinct laws and customs" -00929443 00 s 01 dead 0 002 & 00929164 a 0000 + 05006519 n 0101 | not surviving in active use; "Latin is a dead language" -00929567 00 a 01 expected 0 007 ^ 02360351 a 0000 + 14501375 n 0102 ! 00930290 a 0101 & 00929815 a 0000 & 00929916 a 0000 & 00930022 a 0000 & 00930170 a 0000 | considered likely or probable to happen or arrive; "prepared for the expected attack" -00929815 00 s 03 anticipated 0 awaited(p) 0 hoped-for 0 001 & 00929567 a 0000 | expected hopefully -00929916 00 s 01 due(p) 0 001 & 00929567 a 0000 | scheduled to arrive; "the train is due in 15 minutes" -00930022 00 s 01 expectable 0 001 & 00929567 a 0000 | to be expected; "differences of opinion are quite expectable given the present information" -00930170 00 s 01 matter-of-course 0 001 & 00929567 a 0000 | expected or depended upon as a natural or logical outcome -00930290 00 a 01 unexpected 0 008 ^ 02359464 a 0000 + 04796725 n 0101 ! 00929567 a 0101 & 00930540 a 0000 & 00930765 a 0000 & 00931070 a 0000 & 00931306 a 0000 & 00931395 a 0000 | not expected or anticipated; "unexpected guests"; "unexpected news" -00930540 00 s 03 unannounced 0 unheralded 0 unpredicted 0 001 & 00930290 a 0000 | without warning or announcement; "they arrived unannounced"; "a totally unheralded telegram that his daughter...died last night"- M.A.D.Howe -00930765 00 s 04 unanticipated 0 unforeseen 0 unlooked-for 0 out_of_the_blue(p) 0 001 & 00930290 a 0000 | not anticipated; "unanticipated and disconcerting lines of development"- H.W.Glidden; "unforeseen circumstances"; "a virtue unlooked-for in people so full of energy"; "like a bolt out of the blue" -00931070 00 s 04 unhoped 0 unhoped-for 0 unthought 0 unthought-of 0 001 & 00930290 a 0000 | so unexpected as to have not been imagined; "an unhoped-for piece of luck"; "an unthought advantage"; "an unthought-of place to find the key" -00931306 00 s 01 unprovided_for(p) 0 001 & 00930290 a 0000 | not prepared or ready for -00931395 00 s 01 upset(a) 0 001 & 00930290 a 0000 | used of an unexpected defeat of a team favored to win; "the Bills' upset victory over the Houston Oilers" -00931555 00 a 01 expedient 0 009 ^ 00064479 a 0000 ^ 00604617 a 0000 ^ 01813400 a 0000 ^ 02495922 a 0000 + 04835488 n 0104 ! 00932367 a 0101 & 00931833 a 0000 & 00931974 a 0000 & 00932184 a 0000 | serving to promote your interest; "was merciful only when mercy was expedient" -00931833 00 s 01 advantageous 0 001 & 00931555 a 0000 | appropriate for achieving a particular end; implies a lack of concern for fairness -00931974 00 s 03 opportunist 0 opportunistic 0 timeserving 0 003 & 00931555 a 0000 + 04835488 n 0201 + 10379376 n 0101 | taking immediate advantage, often unethically, of any circumstance of possible benefit -00932184 00 s 02 carpetbag 0 carpetbagging 0 001 & 00931555 a 0000 | presumptuously seeking success or a position in a new locality; "a carpetbag stranger"; "a capetbag politician" -00932367 00 a 01 inexpedient 0 006 ^ 00065488 a 0000 ^ 01814085 a 0000 + 05165303 n 0102 + 05165303 n 0101 ! 00931555 a 0101 & 00932565 a 0000 | not suitable or advisable; "an inexpedient tactic" -00932565 00 s 01 inadvisable 0 002 & 00932367 a 0000 + 05165028 n 0101 | not advisable; "an unnecessary and inadvisable action" -00932695 00 a 01 expendable 0 004 ^ 01978395 a 0000 ! 00933032 a 0101 & 00932829 a 0000 & 00932918 a 0000 | suitable to be expended -00932829 00 s 01 consumable 0 002 & 00932695 a 0000 + 01157517 v 0101 | may be used up -00932918 00 s 01 sacrificeable 0 001 & 00932695 a 0000 | may be deliberately sacrificed to achieve an objective -00933032 00 a 01 unexpendable 0 003 ^ 00900616 a 0000 ^ 01978894 a 0000 ! 00932695 a 0101 | not suitable to be expended -00933154 00 a 01 expensive 0 008 ^ 02500884 a 0000 + 05145891 n 0101 + 02267060 v 0102 ! 00934199 a 0101 & 00933415 a 0000 & 00933599 a 0000 & 00933941 a 0000 & 00934082 a 0000 | high in price or charging high prices; "expensive clothes"; "an expensive shop" -00933415 00 s 02 big-ticket(a) 0 high-ticket(a) 0 002 & 00933154 a 0000 ;u 07075172 n 0000 | very expensive; "big-ticket items like cars and furs"; "a big-ticket government program" -00933599 00 s 05 costly 1 dear(p) 0 high-priced 0 pricey 0 pricy 0 008 & 00933154 a 0000 + 13303315 n 0501 + 05141683 n 0501 + 13303315 n 0401 + 05141683 n 0401 + 05146272 n 0202 + 05145118 n 0103 + 05146272 n 0101 | having a high price; "costly jewelry"; "high-priced merchandise"; "much too dear for my pocketbook"; "a pricey restaurant" -00933941 00 s 02 dearly-won 0 costly 2 002 & 00933154 a 0000 + 05163807 n 0202 | entailing great loss or sacrifice; "a dearly-won victory" -00934082 00 s 01 overpriced 0 001 & 00933154 a 0000 | too costly for the value; "overpriced items at resort shops" -00934199 00 a 02 cheap 0 inexpensive 0 010 + 05146739 n 0201 + 05147237 n 0102 ! 00933154 a 0101 & 00934554 a 0000 & 00934738 a 0000 & 00934874 a 0000 & 00934966 a 0000 & 00935103 a 0000 & 00935259 a 0000 & 00935359 a 0000 | relatively low in price or charging low prices; "it would have been cheap at twice the price"; "inexpensive family restaurants" -00934554 00 s 03 bargain-priced 0 cut-rate 1 cut-price 1 001 & 00934199 a 0000 | costing less than standard price; "buying bargain-priced clothes for the children"; "cut-rate goods" -00934738 00 s 01 catchpenny(a) 0 001 & 00934199 a 0000 | designed to sell quickly without concern for quality; "catchpenny ornaments" -00934874 00 s 01 dirt_cheap 0 001 & 00934199 a 0000 | very cheap; "a dirt cheap property" -00934966 00 s 01 low-budget 0 001 & 00934199 a 0000 | made on or suited to a limited budget; "a low-budget movie"; "a low-budget menu" -00935103 00 s 03 low-cost 0 low-priced 0 affordable 0 002 & 00934199 a 0000 + 02744451 v 0301 | that you have the financial means for; "low-cost housing" -00935259 00 s 01 nickel-and-dime(a) 0 001 & 00934199 a 0000 | low-paying; "a nickel-and-dime job" -00935359 00 s 06 sixpenny 0 threepenny 0 twopenny 0 tuppeny 0 two-a-penny 0 twopenny-halfpenny 0 001 & 00934199 a 0000 | of trifling worth -00935500 00 a 02 experienced 0 experient 0 009 ^ 02225510 a 0000 ^ 02447344 a 0000 + 05758059 n 0201 ! 00936740 a 0101 & 00935792 a 0000 & 00936038 a 0000 & 00936297 a 0000 & 00936427 a 0000 & 00936523 a 0000 | having experience; having knowledge or skill from observation or participation -00935792 00 s 02 full-fledged 0 fully_fledged 0 001 & 00935500 a 0000 | (of persons, e.g.) having gained full status; "a full-fledged lawyer"; "by the age of seventeen I was a full-fledged atheist"; "sees itself as a fully fledged rival party" -00936038 00 s 03 intimate 0 knowledgeable 0 versed 0 002 & 00935500 a 0000 + 04890546 n 0201 | thoroughly acquainted through study or experience; "this girl, so intimate with nature"-W.H.Hudson; "knowledgeable about the technique of painting"- Herbert Read -00936297 00 s 02 old 0 older 0 001 & 00935500 a 0000 | skilled through long experience; "an old offender"; "the older soldiers" -00936427 00 s 02 practiced 0 practised 0 001 & 00935500 a 0000 | skillful after much practice -00936523 00 s 02 seasoned 0 veteran(a) 0 003 & 00935500 a 0000 + 10749528 n 0201 + 10749123 n 0201 | rendered competent through trial and experience; "a seasoned traveler"; "veteran steadiness"; "a veteran officer" -00936740 00 a 02 inexperienced 0 inexperient 0 009 ^ 02228335 a 0000 ^ 02271544 a 0000 + 05988956 n 0201 ! 00935500 a 0101 & 00936998 a 0000 & 00937186 a 0000 & 00937341 a 0000 & 00937616 a 0000 & 00937732 a 0000 | lacking practical experience or training -00936998 00 s 03 fledgling 0 unfledged 0 callow 0 002 & 00936740 a 0000 + 10355449 n 0102 | young and inexperienced; "a fledgling enterprise"; "a fledgling skier"; "an unfledged lawyer" -00937186 00 s 02 raw 0 new 0 002 & 00936740 a 0000 + 05988956 n 0102 | lacking training or experience; "the new men were eager to fight"; "raw recruits" -00937341 00 s 03 uninitiate 0 uninitiated 0 naive 0 003 & 00936740 a 0000 + 04880573 n 0303 + 07948754 n 0101 | not initiated; deficient in relevant experience; "it seemed a bizarre ceremony to uninitiated western eyes"; "he took part in the experiment as a naive subject" -00937616 00 s 03 unpracticed 0 unpractised 0 unversed 0 001 & 00936740 a 0000 | not having had extensive practice -00937732 00 s 04 unseasoned 0 untested 0 untried 0 young 0 001 & 00936740 a 0000 | not tried or tested by experience; "unseasoned artillery volunteers"; "still untested in battle"; "an illustrator untried in mural painting"; "a young hand at plowing" -00937985 00 a 01 expired 0 003 ! 00938441 a 0101 & 00938210 a 0000 & 00938305 a 0000 | having come to an end or become void after passage of a period of time; "an expired passport"; "caught driving with an expired license" -00938210 00 s 01 invalid 0 001 & 00937985 a 0000 | no longer valid; "the license is invalid" -00938305 00 s 01 terminated 0 002 & 00937985 a 0000 ;c 06520944 n 0000 | (of e.g. a contract or term of office) having come to an end -00938441 00 a 01 unexpired 0 002 ! 00937985 a 0101 & 00938659 a 0000 | not having come to an end or been terminated by passage of time; "elected to fill the senator's unexpired term"; "an unexpired driver's license" -00938659 00 s 01 valid 0 003 & 00938441 a 0000 + 04809453 n 0102 + 04809453 n 0101 | still legally acceptable; "the license is still valid" -00938801 00 a 01 explicable 0 004 ^ 00532892 a 0000 ^ 02266145 a 0000 ! 00939105 a 0101 & 00938979 a 0000 | capable of being explicated or accounted for; "explicable behavior" -00938979 00 s 02 explainable 0 interpretable 0 001 & 00938801 a 0000 | capable of being understood; "explainable phenomena" -00939105 00 a 02 inexplicable 0 incomprehensible 4 008 ^ 00533851 a 0000 ^ 02266600 a 0000 + 04822223 n 0201 ! 00938801 a 0101 & 00939444 a 0000 & 00939895 a 0000 & 00940108 a 0000 & 00940314 a 0000 | incapable of being explained or accounted for; "inexplicable errors"; "left the house at three in the morning for inexplicable reasons" -00939444 00 s 06 cryptic 0 cryptical 0 deep 0 inscrutable 0 mysterious 0 mystifying 0 003 & 00939105 a 0000 + 05685538 n 0501 + 04822524 n 0401 | of an obscure nature; "the new insurance policy is written without cryptic or mysterious terms"; "a deep dark secret"; "the inscrutable workings of Providence"; "in its mysterious past it encompasses all the dim origins of life"- Rachel Carson; "rituals totally mystifying to visitors from other lands" -00939895 00 s 02 paradoxical 0 self-contradictory 0 002 & 00939105 a 0000 + 06724559 n 0101 | seemingly contradictory but nonetheless possibly true; "it is paradoxical that standing is more tiring than walking" -00940108 00 s 02 unaccountable 0 unexplainable 0 001 & 00939105 a 0000 | not to be accounted for or explained; "perceptible only as unaccountable influences that hinder progress"; "an unexplainable fear" -00940314 00 s 01 unexplained 0 001 & 00939105 a 0000 | having the reason or cause not made clear; "an unexplained error" -00940437 00 a 02 explicit 0 expressed 0 012 ^ 00700451 a 0000 ^ 00722110 a 0000 ^ 01704761 a 0000 ^ 00896555 a 0000 = 04822032 n 0000 + 04822032 n 0101 ! 00941485 a 0101 & 00940870 a 0000 & 00940969 a 0000 & 00941148 a 0000 & 00941242 a 0000 & 00941375 a 0000 | precisely and clearly expressed or readily observable; leaving nothing to implication; "explicit instructions"; "she made her wishes explicit"; "explicit sexual scenes" -00940870 00 s 02 declared 0 stated 0 001 & 00940437 a 0000 | declared as fact; explicitly stated -00940969 00 s 02 definitive 0 unequivocal 0 002 & 00940437 a 0000 + 04821802 n 0202 | clearly defined or formulated; "the plain and unequivocal language of the laws"- R.B.Taney -00941148 00 s 01 express 0 001 & 00940437 a 0000 | not tacit or implied; "her express wish" -00941242 00 s 01 graphic 0 001 & 00940437 a 0000 | describing nudity or sexual activity in graphic detail; "graphic sexual scenes" -00941375 00 s 02 hard-core 0 hardcore 0 001 & 00940437 a 0000 | extremely explicit; "hard-core pornography" -00941485 00 a 02 implicit 0 inexplicit 0 009 ^ 00723163 a 0000 ^ 01705655 a 0000 = 04822032 n 0000 + 04824819 n 0201 + 04824977 n 0101 ! 00940437 a 0101 & 00941940 a 0000 & 00942163 a 0000 & 00942380 a 0000 | implied though not directly expressed; inherent in the nature of something; "an implicit agreement not to raise the subject"; "there was implicit criticism in his voice"; "anger was implicit in the argument"; "the oak is implicit in the acorn" -00941940 00 s 03 implicit_in(p) 0 inherent 0 underlying 0 002 & 00941485 a 0000 + 02653564 v 0201 | in the nature of something though not readily apparent; "shortcomings inherent in our approach"; "an underlying meaning" -00942163 00 s 03 silent 0 tacit 0 understood 0 001 & 00941485 a 0000 | implied by or inferred from actions or statements; "gave silent consent"; "a tacit agreement"; "the understood provisos of a custody agreement" -00942380 00 s 08 unexpressed 0 unsaid 0 unstated 0 unuttered 0 unverbalized 0 unverbalised 0 unvoiced 0 unspoken 0 001 & 00941485 a 0000 | not made explicit; "the unexpressed terms of the agreement"; "things left unsaid"; "some kind of unspoken agreement"; "his action is clear but his reason remains unstated" -00942693 00 a 01 exploited 0 002 ! 00942871 a 0101 & 00942806 a 0000 | developed or used to greatest advantage -00942806 00 s 01 employed 0 001 & 00942693 a 0000 | put to use -00942871 00 a 02 unexploited 0 undeveloped 4 003 ! 00942693 a 0101 & 00943092 a 0000 & 00943203 a 0000 | undeveloped or unused; "vast unexploited (or undeveloped) natural resources"; "taxes on undeveloped lots are low" -00943092 00 s 01 fallow 0 001 & 00942871 a 0000 | undeveloped but potentially useful; "a fallow gold market" -00943203 00 s 01 untapped 0 001 & 00942871 a 0000 | not drawn upon or used; "untapped reserves of coal"; "the untapped stockrooms of our minds"- G.R.Harrison -00943363 00 a 01 expressible 0 008 + 01061481 v 0101 + 01061017 v 0103 + 00943837 v 0101 + 00940384 v 0101 ! 00943999 a 0101 & 00943599 a 0000 & 00943683 a 0000 & 00943831 a 0000 | capable of being expressed; "an expressible emotion" -00943599 00 s 01 describable 0 001 & 00943363 a 0000 | capable of being described -00943683 00 s 01 representable 0 002 & 00943363 a 0000 ;c 06000644 n 0000 | expressible in symbolic form; "uniquely representable in the form..." -00943831 00 s 02 speakable 0 utterable 0 004 & 00943363 a 0000 + 00983824 v 0201 + 00940384 v 0204 + 00941990 v 0203 | capable of being uttered in words or sentences -00943999 00 a 02 inexpressible 0 unexpressible 0 002 ! 00943363 a 0101 & 00944111 a 0000 | defying expression -00944111 00 s 06 indefinable 0 indescribable 0 ineffable 0 unspeakable 0 untellable 0 unutterable 0 001 & 00943999 a 0000 | defying expression or description; "indefinable yearnings"; "indescribable beauty"; "ineffable ecstasy"; "inexpressible anguish"; "unspeakable happiness"; "unutterable contempt"; "a thing of untellable splendor" -00944449 00 a 02 extensile 0 extensible 0 007 + 02690093 v 0201 + 02054989 v 0204 + 01368863 v 0201 + 00027705 v 0204 ! 00945019 a 0101 & 00944734 a 0000 & 00944848 a 0000 | capable of being protruded or stretched or opened out; "an extensile tongue"; "an extensible measuring rule" -00944734 00 s 02 protractile 0 protractible 0 001 & 00944449 a 0000 | able to be extended; "protractile muscle" -00944848 00 s 02 protrusile 0 protrusible 0 004 & 00944449 a 0000 + 02713372 v 0202 + 02081946 v 0202 + 00263231 v 0203 | capable of being thrust forward, as the tongue -00945019 00 a 03 nonextensile 0 inextensible 0 nonprotractile 0 001 ! 00944449 a 0101 | not extensile -00945123 00 a 01 extricable 0 001 ! 00945207 a 0101 | capable of being extricated -00945207 00 a 01 inextricable 0 002 ! 00945123 a 0101 & 00945399 a 0000 | not permitting extrication; incapable of being disentangled or untied; "an inextricable knot"; "inextricable unity" -00945399 00 s 01 unresolvable 0 001 & 00945207 a 0000 | not capable of being resolved; "unresolvable confusion" -00945513 00 a 01 bowed 0 003 ;c 07020895 n 0000 ! 00945772 a 0101 & 00945658 a 0000 | of a stringed instrument; sounded by stroking with a bow -00945658 00 s 01 arco 0 001 & 00945513 a 0000 | (of instruments in the violin family) to be played with the bow -00945772 00 a 01 plucked 0 003 ;c 07020895 n 0000 ! 00945513 a 0101 & 00945927 a 0000 | of a stringed instrument; sounded with the fingers or a plectrum -00945927 00 s 01 pizzicato 0 001 & 00945772 a 0000 | (of instruments in the violin family) to be plucked with the finger -00946050 00 a 01 fingered 0 002 ! 00946409 a 0101 & 00946281 a 0000 | having or resembling a finger or fingers; often used in combination; "the fingered roots of giant trees"; "rosy-fingered"; "three-fingered cartoon characters" -00946281 00 s 02 digitate 0 fingerlike 0 001 & 00946050 a 0000 | resembling a finger; "digitate leaves of the horse chestnut" -00946409 00 a 01 fingerless 0 001 ! 00946050 a 0101 | not having or having lost fingers -00946499 00 a 01 expansive 0 011 + 02077148 v 0101 + 00541163 v 0101 + 00540946 v 0102 + 00257269 v 0101 + 00264386 v 0103 + 04729710 n 0101 ! 00947680 a 0101 & 00946844 a 0000 & 00947012 a 0000 & 00947264 a 0000 & 00947520 a 0000 | able or tending to expand or characterized by expansion; "Expansive materials"; "the expansive force of fire" -00946844 00 s 01 distensible 0 002 & 00946499 a 0000 + 00305537 v 0102 | capable of being distended; able to stretch and expand; "the stomach is a distensible organ" -00947012 00 s 02 erectile 0 cavernous 0 002 & 00946499 a 0000 ;c 06080522 n 0000 | filled with vascular sinuses and capable of becoming distended and rigid as the result of being filled with blood; "erectile tissue"; "the penis is an erectile organ" -00947264 00 s 03 expandable 0 expandible 0 expansible 0 009 & 00946499 a 0000 + 02077148 v 0301 + 00541163 v 0301 + 00257269 v 0301 + 00310386 v 0304 + 02077148 v 0201 + 00541163 v 0201 + 00540946 v 0202 + 00257269 v 0201 | able to expand or be expanded -00947520 00 s 01 inflatable 0 002 & 00946499 a 0000 + 00264034 v 0101 | designed to be filled with air or gas; "an inflatable mattress"; "an inflatable boat" -00947680 00 a 01 unexpansive 0 001 ! 00946499 a 0101 | showing no tendency to expand; "unexpansive bodies" -00947789 00 a 01 extinguishable 0 001 ! 00947945 a 0101 | capable of being extinguished or killed; "an extinguishable fire"; "hope too is extinguishable" -00947945 00 a 01 inextinguishable 0 001 ! 00947789 a 0101 | difficult or impossible to extinguish; "an inextinguishable flame"; "an inextinguishable faith" -00948103 00 a 01 external 0 006 ^ 01692969 a 0000 = 05074774 n 0000 + 05078623 n 0102 ! 00948670 a 0101 & 00948384 a 0000 & 00948514 a 0000 | happening or arising or located outside or beyond some limits or especially surface; "the external auditory canal"; "external pressures" -00948384 00 s 01 outer 0 002 & 00948103 a 0000 ;c 06057539 n 0000 | being on or toward the outside of the body; "the outer ear" -00948514 00 s 01 outside 0 001 & 00948103 a 0000 | originating or belonging beyond some bounds:"the outside world"; "outside interests"; "an outside job" -00948670 00 a 01 internal 0 007 ^ 01693799 a 0000 = 05074774 n 0000 ! 00948103 a 0101 & 00948985 a 0000 & 00949115 a 0000 & 00949229 a 0000 & 00949374 a 0000 | happening or arising or located within some limits or especially surface; "internal organs"; "internal mechanism of a toy"; "internal party maneuvering" -00948985 00 s 01 inner 0 002 & 00948670 a 0000 ;c 06057539 n 0000 | inside or closer to the inside of the body; "the inner ear" -00949115 00 s 01 interior 0 001 & 00948670 a 0000 | inside and toward a center; "interior regions of the earth" -00949229 00 s 01 internecine 0 001 & 00948670 a 0000 | (of conflict) within a group or organization; "an internecine feud among proxy holders" -00949374 00 s 01 intrinsic 0 002 & 00948670 a 0000 ;c 06057539 n 0000 | situated within or belonging solely to the organ or body part on which it acts; "intrinsic muscles" -00949548 00 a 01 outer(a) 0 006 = 05074774 n 0000 ! 00950272 a 0101 & 00949797 a 0000 & 00949883 a 0000 & 00950002 a 0000 & 00950119 a 0000 | being on the outside or further from a center; "spent hours adorning the outer man"; "the outer suburbs" -00949797 00 s 01 out 0 001 & 00949548 a 0000 | outer or outlying; "the out islands" -00949883 00 s 02 outermost 0 outmost 0 001 & 00949548 a 0000 | situated at the farthest possible point from a center -00950002 00 s 01 outside 0 001 & 00949548 a 0000 | on or toward an outer edge; "an outer lane"; "the outside lane" -00950119 00 s 01 satellite 0 001 & 00949548 a 0000 | surrounding and dominated by a central authority or power; "a city and its satellite communities" -00950272 00 a 01 inner(a) 0 005 = 05074774 n 0000 ^ 00329831 a 0000 ! 00949548 a 0101 & 00950465 a 0000 & 00950592 a 0000 | located or occurring within or closer to a center; "an inner room" -00950465 00 s 02 inmost 0 innermost 0 001 & 00950272 a 0000 | situated or occurring farthest within; "the innermost chamber" -00950592 00 s 01 inside 0 001 & 00950272 a 0000 | away from the outer edge; "an inner lahne"; "the inside lane" -00950706 00 a 01 outward 0 007 ^ 01873406 a 0000 = 04620741 n 0000 + 05787498 n 0101 + 04620741 n 0101 ! 00951247 a 0101 & 00951003 a 0000 & 00951163 a 0000 | relating to physical reality rather than with thoughts or the mind; "a concern with outward beauty rather than with inward reflections" -00951003 00 s 01 external 0 001 & 00950706 a 0000 | purely outward or superficial; "external composure"; "an external concern for reputation"- A.R.Gurney,Jr. -00951163 00 s 01 outer 0 001 & 00950706 a 0000 | located outside; "outer reality" -00951247 00 a 01 inward 0 009 = 04621010 n 0000 + 05787175 n 0101 + 04621010 n 0101 ! 00950706 a 0101 & 00951528 a 0000 & 00951709 a 0000 & 00951831 a 0000 & 00952181 a 0000 & 00952307 a 0000 | relating to or existing in the mind or thoughts; "a concern with inward reflections" -00951528 00 s 01 indwelling 0 001 & 00951247 a 0000 | existing or residing as an inner activating spirit or force or principle; "an indwelling divinity"; "an indwelling goodness" -00951709 00 s 02 inmost 0 innermost 0 001 & 00951247 a 0000 | being deepest within the self; "one's innermost feelings" -00951831 00 s 03 inner 0 interior 0 internal 0 001 & 00951247 a 0000 | located inward; "Beethoven's manuscript looks like a bloody record of a tremendous inner battle"- Leonard Bernstein; "she thinks she has no soul, no interior life, but the truth is that she has no access to it"- David Denby; "an internal sense of rightousness"- A.R.Gurney,Jr. -00952181 00 s 02 secret 0 private 0 002 & 00951247 a 0000 + 14416089 n 0202 | not expressed; "secret (or private) thoughts" -00952307 00 s 01 self-whispered 0 001 & 00951247 a 0000 | as if whispered to yourself -00952395 00 a 01 exterior 0 005 ^ 01692222 a 0000 = 05074774 n 0000 ! 00952867 a 0101 & 00952653 a 0000 & 00952761 a 0000 | situated in or suitable for the outdoors or outside of a building; "an exterior scene"; "exterior grade plywood"; "exterior paints" -00952653 00 s 01 out(a) 0 001 & 00952395 a 0000 | outside or external; "the out surface of a ship's hull" -00952761 00 s 01 outside(a) 0 001 & 00952395 a 0000 | leading to or from the outside; "an outside door" -00952867 00 a 01 interior 0 005 ^ 01692786 a 0000 = 05074774 n 0000 ! 00952395 a 0101 & 00953127 a 0000 & 00953213 a 0000 | situated within or suitable for inside a building; "an interior scene"; "interior decoration"; "an interior bathroom without windows" -00953127 00 s 01 indoor 0 001 & 00952867 a 0000 | within doors; "an indoor setting" -00953213 00 s 01 inside(a) 0 001 & 00952867 a 0000 | being or applying to the inside of a building; "an inside wall" -00953332 00 a 01 eyed 0 013 ! 00954965 a 0101 & 00953731 a 0000 & 00953814 a 0000 & 00953886 a 0000 & 00954064 a 0000 & 00954153 a 0000 & 00954233 a 0000 & 00954390 a 0000 & 00954503 a 0000 & 00954576 a 0000 & 00954678 a 0000 & 00954760 a 0000 & 00954864 a 0000 | having an eye or eyes or eyelike feature especially as specified; often used in combination; "a peacock's eyed feathers"; "red-eyed" -00953731 00 s 01 almond-eyed 0 001 & 00953332 a 0000 | having almond-shaped eyes -00953814 00 s 01 blue-eyed 0 001 & 00953332 a 0000 | having blue eyes -00953886 00 s 01 eyelike 0 001 & 00953332 a 0000 | suggesting an eye or eyes; "eyelike markings on a butterfly's wings"; "the eyelike gleam of two distant windows in the dark" -00954064 00 s 02 keen-eyed 0 sharp-eyed 0 001 & 00953332 a 0000 | having keen eyesight -00954153 00 s 01 left-eyed 0 001 & 00953332 a 0000 | having only the left eye -00954233 00 s 01 one-eyed 0 001 & 00953332 a 0000 | having or showing only one eye; "one-eyed Jacks are wild"; "the three one-eyed Cyclopes of Greek myth" -00954390 00 s 01 ox-eyed 0 001 & 00953332 a 0000 | having large round eyes like those of an ox; "ox-eyed Juno" -00954503 00 s 01 popeyed 0 001 & 00953332 a 0000 | having bulging eyes -00954576 00 s 01 purple-eyed 0 001 & 00953332 a 0000 | (of flowers) having a purple eyelike marking -00954678 00 s 01 right-eyed 0 001 & 00953332 a 0000 | having only the right eye -00954760 00 s 02 saucer-eyed 0 round-eyed 0 001 & 00953332 a 0000 | having large round wide-open eyes -00954864 00 s 01 skew-eyed 0 001 & 00953332 a 0000 | having eyes that look in different directions -00954965 00 a 01 eyeless 0 001 ! 00953332 a 0101 | lacking eyes or eyelike features; "eyeless fish that evolved in dark caves"; "an eyeless needle" -00955115 00 a 01 playable 0 001 ! 00955405 a 0101 | capable of or suitable for being played or played on; "a playable lie in golf"; "the baseball fan reached out and caught a foul that was judged playable"; "the ball field was playable"; "harpsichord music is readily playable"- P.H.Lang -00955405 00 a 01 unplayable 0 001 ! 00955115 a 0101 | not capable of or suitable for being played or played on; "the golf ball was in an unplayable lie"; "the field was unplayable"; "some music seems almost unplayable" -00955626 00 a 01 fair 1 003 ;c 00471613 n 0000 ! 00955915 a 0101 & 00955802 a 0000 | (of a baseball) hit between the foul lines; "he hit a fair ball over the third base bag" -00955802 00 s 01 in-bounds 0 002 & 00955626 a 0000 ;c 00471613 n 0000 | between the first and third base lines -00955915 00 a 01 foul 0 003 ;c 00471613 n 0000 ! 00955626 a 0101 & 00956049 a 0000 | (of a baseball) not hit between the foul lines -00956049 00 s 01 out-of-bounds 0 001 & 00955915 a 0000 | outside the foul lines -00956131 00 a 02 fair 3 just 4 011 ^ 01723308 a 0000 ^ 01369663 a 0000 ^ 01943406 a 0000 = 04839154 n 0000 + 04850117 n 0202 + 04839154 n 0101 ! 00957176 a 0101 & 00956568 a 0000 & 00956733 a 0000 & 00956976 a 0000 & 00957099 a 0000 | free from favoritism or self-interest or bias or deception; conforming with established standards or rules; "a fair referee"; "fair deal"; "on a fair footing"; "a fair fight"; "by fair means or foul" -00956568 00 s 02 antimonopoly 0 antitrust 0 001 & 00956131 a 0000 | of laws and regulations; designed to protect trade and commerce from unfair business practices -00956733 00 s 04 clean 0 sporting 0 sporty 0 sportsmanlike 0 002 & 00956131 a 0000 + 13990389 n 0101 | exhibiting or calling for sportsmanship or fair play; "a clean fight"; "a sporting solution of the disagreement"; "sportsmanlike conduct" -00956976 00 s 01 fair-minded 0 002 & 00956131 a 0000 + 06203030 n 0102 | of a person; just and impartial; not prejudiced -00957099 00 s 01 fair-and-square 0 001 & 00956131 a 0000 | just and honest -00957176 00 a 02 unfair 0 unjust 4 011 ^ 01722965 a 0000 ^ 01370590 a 0000 = 04839154 n 0000 + 04854389 n 0202 + 06202553 n 0101 + 04839676 n 0101 + 00744616 n 0102 ! 00956131 a 0101 & 00957551 a 0000 & 00957743 a 0000 & 00958020 a 0000 | not fair; marked by injustice or partiality or deception; "used unfair methods"; "it was an unfair trial"; "took an unfair advantage" -00957551 00 s 01 below_the_belt 0 002 & 00957176 a 0000 ;c 00445802 n 0000 | disregarding the rules (from the notion of an illegal low blow in boxing); "her accusations were below the belt" -00957743 00 s 05 cheating(a) 0 dirty 0 foul 0 unsporting 0 unsportsmanlike 0 002 & 00957176 a 0000 + 14563222 n 0301 | violating accepted standards or rules; "a dirty fighter"; "used foul means to gain power"; "a nasty unsporting serve"; "fined for unsportsmanlike behavior" -00958020 00 s 01 raw 0 001 & 00957176 a 0000 | brutally unfair or harsh; "received raw treatment from his friends"; "a raw deal" -00958151 00 a 02 equitable 0 just 2 007 ^ 00956131 a 0000 ^ 01369663 a 0000 ^ 01723308 a 0000 + 04850117 n 0202 ! 00958712 a 0101 & 00958475 a 0000 & 00958615 a 0000 | fair to all parties as dictated by reason and conscience; "equitable treatment of all citizens"; "an equitable distribution of gifts among the children" -00958475 00 s 02 honest 0 fair 0 001 & 00958151 a 0000 | gained or earned without cheating or stealing; "an honest wage"; "an fair penny" -00958615 00 s 01 evenhanded 0 001 & 00958151 a 0000 | without partiality; "evenhanded justice" -00958712 00 a 02 inequitable 0 unjust 2 002 + 04854389 n 0202 ! 00958151 a 0101 | not equitable or fair; "the inequitable division of wealth"; "inequitable taxation" -00958880 00 a 01 faithful 0 009 ^ 00583239 a 0000 ^ 02460502 a 0000 ^ 02464693 a 0000 = 04876985 n 0000 + 08223475 n 0101 + 04876985 n 0102 ! 00959731 a 0101 & 00959244 a 0000 & 00959530 a 0000 | steadfast in affection or allegiance; "years of faithful service"; "faithful employees"; "we do not doubt that England has a faithful patriot in the Lord Chancellor" -00959244 00 s 04 firm 0 loyal 0 truehearted 0 fast(a) 0 002 & 00958880 a 0000 + 04861486 n 0102 | unwavering in devotion to friend or vow or cause; "a firm ally"; "loyal supporters"; "the true-hearted soldier...of Tippecanoe"- Campaign song for William Henry Harrison; "fast friends" -00959530 00 s 01 true 2 002 & 00958880 a 0000 + 04877530 n 0102 | devoted (sometimes fanatically) to a cause or concept or truth; "true believers bonded together against all who disagreed with them" -00959731 00 a 01 unfaithful 0 008 ^ 00583990 a 0000 ^ 02466111 a 0000 = 04876985 n 0000 + 04878861 n 0102 ! 00958880 a 0101 & 00959979 a 0000 & 00960094 a 0000 & 00960481 a 0000 | not true to duty or obligation or promises; "an unfaithful lover" -00959979 00 s 01 apostate 0 002 & 00959731 a 0000 + 10007109 n 0102 | not faithful to religion or party or cause -00960094 00 s 03 punic 0 perfidious 0 treacherous 0 006 & 00959731 a 0000 + 04879964 n 0303 + 00749767 n 0301 + 04879964 n 0201 + 00749767 n 0204 + 04879964 n 0202 | tending to betray; especially having a treacherous character as attributed to the Carthaginians by the Romans; "Punic faith"; "the perfidious Judas"; "the fiercest and most treacherous of foes"; "treacherous intrigues" -00960481 00 s 01 untrue 0 001 & 00959731 a 0000 | not true to an obligation or trust; "is untrue to his highest opportunity and duty"-Bruno Laske -00960629 00 a 01 faithful 1 003 + 04876985 n 0102 ! 00960971 a 0101 & 00960856 a 0000 | not having sexual relations with anyone except your husband or wife, or your boyfriend or girlfriend; "he remained faithful to his wife" -00960856 00 s 01 true_to(p) 0 001 & 00960629 a 0000 | sexually faithful; "she was true to her significant other" -00960971 00 a 01 unfaithful 1 003 + 04878861 n 0102 ! 00960629 a 0101 & 00961195 a 0000 | having sexual relations with someone other than your husband or wife, or your boyfriend or girlfriend; "her husband was unfaithful" -00961195 00 s 03 adulterous 0 cheating(a) 0 two-timing(a) 0 002 & 00960971 a 0000 + 00848466 n 0101 | not faithful to a spouse or lover; "adulterous husbands and wives"; "a two-timing boyfriend" -00961392 00 a 01 loyal 0 009 ^ 01740207 a 0000 = 04877530 n 0000 ! 00962634 a 0101 & 00961667 a 0000 & 00961908 a 0000 & 00962025 a 0000 & 00962135 a 0000 & 00962306 a 0000 & 00962476 a 0000 | steadfast in allegiance or duty; "loyal subjects"; "loyal friends stood by him" -00961667 00 s 01 allegiant 0 004 & 00961392 a 0000 ;c 01124794 n 0000 + 04877938 n 0101 + 01206153 n 0102 | steadfast in devotion (especially to your lawful monarch or government); "it is impossible to be allegiant to two opposing forces" -00961908 00 s 01 doglike 0 001 & 00961392 a 0000 | resembling a dog; especially in devotion; "a doglike affection" -00962025 00 s 02 hard-core 0 hardcore 0 001 & 00961392 a 0000 | intensely loyal; "his hard-core supporters" -00962135 00 s 01 leal 0 003 & 00961392 a 0000 ;u 07073447 n 0000 ;r 08890097 n 0000 | faithful and true; "leal to the core of her intrepid Scottish heart"- Harry Lauder -00962306 00 s 01 liege 0 003 & 00961392 a 0000 + 10259094 n 0101 + 10746581 n 0102 | owing or owed feudal allegiance and service; "one's liege lord"; "a liege subject" -00962476 00 s 01 true-blue 0 001 & 00961392 a 0000 | marked by unswerving loyalty; "a true-blue American"; "a reliable true-blue country club conservative" -00962634 00 a 01 disloyal 0 008 ^ 01740630 a 0000 = 04877530 n 0000 ! 00961392 a 0101 & 00962939 a 0000 & 00963283 a 0000 & 00963502 a 0000 & 00963671 a 0000 & 00963858 a 0000 | deserting your allegiance or duty to leader or cause or principle; "disloyal aides revealed his indiscretions to the papers" -00962939 00 s 05 faithless 0 traitorous 0 unfaithful 0 treasonable 0 treasonous 0 007 & 00962634 a 0000 + 04879658 n 0501 + 00782072 n 0501 + 04878861 n 0302 + 10722965 n 0201 + 04879658 n 0203 + 04879092 n 0101 | having the character of, or characteristic of, a traitor; "the faithless Benedict Arnold"; "a lying traitorous insurrectionist" -00963283 00 s 03 insurgent 0 seditious 0 subversive 0 006 & 00962634 a 0000 + 10527334 n 0303 + 04879658 n 0302 + 02402409 v 0302 + 00772813 n 0201 + 00963241 n 0101 | in opposition to a civil authority or government -00963502 00 s 01 mutinous 0 001 & 00962634 a 0000 | consisting of or characterized by or inciting to mutiny; "mutinous acts"; "mutinous thoughts"; "a mutinous speech" -00963671 00 s 01 rebellious 0 003 & 00962634 a 0000 + 00962129 n 0101 + 01179393 n 0102 | participating in organized resistance to a constituted government; "the rebelling confederacy" -00963858 00 s 02 recreant 0 renegade 0 004 & 00962634 a 0000 + 10007109 n 0203 + 10520544 n 0201 + 10007109 n 0105 | having deserted a cause or principle; "some provinces had proved recreant"; "renegade supporters of the usurper" -00964090 00 a 01 fallible 0 006 + 04806512 n 0101 ! 00964906 a 0101 & 00964303 a 0000 & 00964470 a 0000 & 00964590 a 0000 & 00964768 a 0000 | likely to fail or make errors; "everyone is fallible to some degree" -00964303 00 s 01 errant 0 003 & 00964090 a 0000 + 04805813 n 0101 + 04805472 n 0101 | straying from the right course or from accepted standards; "errant youngsters" -00964470 00 s 02 erring 0 error-prone 0 001 & 00964090 a 0000 | capable of making an error; "all men are error-prone" -00964590 00 s 02 undependable 0 unreliable 0 003 & 00964090 a 0000 + 04671394 n 0204 + 04671394 n 0102 | liable to be erroneous or misleading; "an undependable generalization" -00964768 00 s 01 weak 0 002 & 00964090 a 0000 + 14462946 n 0102 | likely to fail under stress or pressure; "the weak link in the chain" -00964906 00 a 01 infallible 0 004 + 04805136 n 0101 ! 00964090 a 0101 & 00965176 a 0000 & 00965359 a 0000 | incapable of failure or error; "an infallible antidote"; "an infallible memory"; "the Catholic Church considers the Pope infallible"; "no doctor is infallible" -00965176 00 s 02 foolproof 0 unfailing 0 001 & 00964906 a 0000 | not liable to failure; "a foolproof identification system"; "the unfailing sign of an amateur"; "an unfailing test" -00965359 00 s 03 inerrable 0 inerrant 0 unerring 0 002 & 00964906 a 0000 + 04805304 n 0201 | not liable to error; "the Church was...theoretically inerrant and omnicompetent"-G.G.Coulton; "lack an inerrant literary sense"; "an unerring marksman" -00965606 00 a 01 familiar 0 009 ^ 01375174 a 0000 = 04796291 n 0000 + 09945905 n 0104 + 04796291 n 0101 ! 00966477 a 0101 & 00965894 a 0000 & 00966037 a 0000 & 00966167 a 0000 & 00966357 a 0000 | well known or easily recognized; "a familiar figure"; "familiar songs"; "familiar guests" -00965894 00 s 01 acquainted(p) 0 001 & 00965606 a 0000 | having fair knowledge of; "they were acquainted"; "fully acquainted with the facts" -00966037 00 s 01 beaten(a) 0 001 & 00965606 a 0000 | much trodden and worn smooth or bare; "did not stray from the beaten path" -00966167 00 s 02 long-familiar 0 well-known(a) 0 001 & 00965606 a 0000 | frequently experienced; known closely or intimately; "a long-familiar face"; "a well-known voice reached her ears" -00966357 00 s 01 old(a) 0 001 & 00965606 a 0000 | (used for emphasis) very familiar; "good old boy"; "same old story" -00966477 00 a 01 unfamiliar 0 007 ^ 01034457 a 0000 ^ 01376894 a 0000 = 04796291 n 0000 + 04797482 n 0101 ! 00965606 a 0101 & 00966753 a 0000 & 00966960 a 0000 | not known or well known; "a name unfamiliar to most"; "be alert at night especially in unfamiliar surroundings" -00966753 00 s 02 strange 1 unknown 0 002 & 00966477 a 0000 + 04797482 n 0102 | not known before; "used many strange words"; "saw many strange faces in the crowd"; "don't let anyone unknown into the house" -00966960 00 s 03 unacquainted(p) 0 unacquainted_with(p) 0 unfamiliar_with(p) 0 001 & 00966477 a 0000 | having little or no knowledge of; "unacquainted with city ways" -00967129 00 a 02 strange 0 unusual 2 015 + 04797295 n 0201 + 04797482 n 0102 ! 00970249 a 0101 & 00967646 a 0000 & 00967897 a 0000 & 00968010 a 0000 & 00968522 a 0000 & 00968730 a 0000 & 00968957 a 0000 & 00969103 a 0000 & 00969264 a 0000 & 00969333 a 0000 & 00969556 a 0000 & 00969763 a 0000 & 00970081 a 0000 | being definitely out of the ordinary and unexpected; slightly odd or even a bit weird; "a strange exaltation that was indefinable"; "a strange fantastical mind"; "what a strange sense of humor she has" -00967646 00 s 04 antic 0 fantastic 0 fantastical 0 grotesque 0 003 & 00967129 a 0000 + 04690592 n 0401 + 00427580 n 0101 | ludicrously odd; "Hamlet's assumed antic disposition"; "fantastic Halloween costumes"; "a grotesque reflection in the mirror" -00967897 00 s 01 crazy 0 001 & 00967129 a 0000 | bizarre or fantastic; "had a crazy dream"; "wore a crazy hat" -00968010 00 s 08 curious 0 funny 0 odd 0 peculiar 0 queer 0 rum 0 rummy 0 singular 0 007 & 00967129 a 0000 + 04798365 n 0801 + 04797824 n 0502 + 03149951 n 0405 + 03149951 n 0303 + 04799344 n 0103 + 03149951 n 0102 | beyond or deviating from the usual or expected; "a curious hybrid accent"; "her speech has a funny twang"; "they have some funny ideas about war"; "had an odd name"; "the peculiar aromatic odor of cloves"; "something definitely queer about this town"; "what a rum fellow"; "singular behavior" -00968522 00 s 02 eerie 0 eery 0 002 & 00967129 a 0000 + 04798020 n 0201 | inspiring a feeling of fear; strange and frightening; "an uncomfortable and eerie stillness in the woods"; "an eerie midnight howl" -00968730 00 s 01 exotic 0 002 & 00967129 a 0000 + 04799612 n 0102 | strikingly strange or unusual; "an exotic hair style"; "protons, neutrons, electrons and all their exotic variants"; "the exotic landscape of a dead planet" -00968957 00 s 01 freaky 0 002 & 00967129 a 0000 ;u 07157273 n 0000 | strange and somewhat frightening; "the whole experience was really freaky" -00969103 00 s 01 gothic 0 002 & 00967129 a 0000 ;c 06364641 n 0000 | characterized by gloom and mystery and the grotesque; "gothic novels like `Frankenstein'" -00969264 00 s 01 oddish 0 001 & 00967129 a 0000 | somewhat strange -00969333 00 s 01 other 0 002 & 00967129 a 0000 + 04742766 n 0101 | very unusual; different in character or quality from the normal or expected; "a strange, other dimension...where his powers seemed to fail"- Lance Morrow -00969556 00 s 01 quaint 0 002 & 00967129 a 0000 + 04798700 n 0101 | strange in an interesting or pleasing way; "quaint dialect words"; "quaint streets of New Orleans, that most foreign of American cities" -00969763 00 s 01 quaint 1 001 & 00967129 a 0000 | very strange or unusual; odd or even incongruous in character or appearance; "the head terminating in the quaint duck bill which gives the animal its vernacular name"- Bill Beatty; "came forth a quaint and fearful sight"- Sir Walter Scott; "a quaint sense of humor" -00970081 00 s 01 weird 0 002 & 00967129 a 0000 + 04798511 n 0103 | strikingly odd or unusual; "some trick of the moonlight; some weird effect of shadow"- Bram Stoker -00970249 00 a 01 familiar 2 005 + 04796291 n 0101 ! 00967129 a 0101 & 00970610 a 0000 & 00970803 a 0000 & 00970947 a 0000 | within normal everyday experience; common and ordinary; not strange; "familiar ordinary objects found in every home"; "a familiar everyday scene"; "a familiar excuse"; "a day like any other filled with familiar duties and experiences" -00970610 00 s 02 common 0 usual 0 004 & 00970249 a 0000 + 04796086 n 0201 + 14501375 n 0101 + 04764741 n 0101 | commonly encountered; "a common (or familiar) complaint"; "the usual greeting" -00970803 00 s 01 common_or_garden 0 002 & 00970249 a 0000 ;r 08860123 n 0000 | the usual or familiar type; "it is a common or garden sparrow" -00970947 00 s 01 everyday 0 002 & 00970249 a 0000 + 04795545 n 0103 | commonplace and ordinary; "the familiar everyday world" -00971075 00 a 02 fashionable 0 stylish 2 014 + 04813712 n 0206 ! 00973844 a 0101 & 00971506 a 0000 & 00971660 a 0000 & 00971933 a 0000 & 00972236 a 0000 & 00972354 a 0000 & 00972501 a 0000 & 00972642 a 0000 & 00972902 a 0000 & 00973192 a 0000 & 00973434 a 0000 & 00973568 a 0000 & 00973677 a 0000 | being or in accordance with current social fashions; "fashionable clothing"; "the fashionable side of town"; "a fashionable cafe" -00971506 00 s 05 latest 0 a_la_mode(p) 0 in_style(p) 0 in_vogue(p) 0 modish 0 002 & 00971075 a 0000 + 04813712 n 0504 | in the current fashion or style -00971660 00 s 01 cool 0 003 & 00971075 a 0000 ;u 07075172 n 0000 + 07515328 n 0101 | fashionable and attractive at the time; often skilled or socially adept; "he's a cool dude"; "that's cool"; "Mary's dress is really cool"; "it's not cool to arrive at a party too early" -00971933 00 s 09 dapper 0 dashing 0 jaunty 0 natty 0 raffish 0 rakish 0 spiffy 0 snappy 0 spruce 0 006 & 00971075 a 0000 + 14497365 n 0902 + 04814025 n 0604 + 04814025 n 0402 + 04814025 n 0301 + 04814025 n 0103 | marked by up-to-dateness in dress and manners; "a dapper young man"; "a jaunty red hat" -00972236 00 s 02 faddish 0 faddy 0 002 & 00971075 a 0000 + 05751173 n 0201 | intensely fashionable for a short time -00972354 00 s 02 groovy 0 swagger 0 003 & 00971075 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) very chic; "groovy clothes" -00972501 00 s 01 in 0 002 & 00971075 a 0000 ;u 07075172 n 0000 | currently fashionable; "the in thing to do"; "large shoulder pads are in" -00972642 00 s 03 up-to-date 0 cutting-edge 0 with-it 0 002 & 00971075 a 0000 + 05050379 n 0103 | in accord with the most fashionable ideas or style; "wears only the latest style"; "the last thing in swimwear"; "cutting-edge technology"; "a with-it boutique" -00972902 00 s 03 mod 0 modern 0 modernistic 0 006 & 00971075 a 0000 + 05050668 n 0303 + 03777961 n 0301 + 00412449 n 0301 + 05050668 n 0201 + 05050668 n 0202 | relating to a recently developed fashion or style; "their offices are in a modern skyscraper"; "tables in modernistic designs"; -00973192 00 s 03 old-time 0 quaint 0 olde_worlde 0 002 & 00971075 a 0000 + 04926038 n 0201 | attractively old-fashioned (but not necessarily authentic); "houses with quaint thatched roofs"; "a vaulted roof supporting old-time chimney pots" -00973434 00 s 02 swank 0 swanky 0 002 & 00971075 a 0000 + 04813712 n 0207 | imposingly fashionable and elegant; "a swank apartment" -00973568 00 s 02 trendsetting 0 trend-setting 0 001 & 00971075 a 0000 | initiating or popularizing a trend -00973677 00 s 02 trendy 0 voguish 0 002 & 00971075 a 0000 + 05750163 n 0102 | in accord with the latest fad; "trendy ideas"; "trendy clothes"; "voguish terminology" -00973844 00 a 02 unfashionable 0 unstylish 2 008 ^ 01638438 a 0000 ! 00971075 a 0101 & 00974159 a 0000 & 00974404 a 0000 & 00974519 a 0000 & 00974697 a 0000 & 00974908 a 0000 & 00975011 a 0000 | not in accord with or not following current fashion; "unfashionable clothes"; "melodrama of a now unfashionable kind" -00974159 00 s 08 antique 0 demode 0 ex 0 old-fashioned 0 old-hat(p) 0 outmoded 0 passe 0 passee 0 002 & 00973844 a 0000 + 04925895 n 0401 | out of fashion; "a suit of rather antique appearance"; "demode (or outmoded) attire"; "outmoded ideas" -00974404 00 s 01 dated 0 001 & 00973844 a 0000 | marked by features of the immediate and usually discounted past -00974519 00 s 03 dowdy 0 frumpy 0 frumpish 0 003 & 00973844 a 0000 + 10114209 n 0201 + 04816528 n 0101 | primly out of date; "nothing so frumpish as last year's gambling game" -00974697 00 s 05 fogyish 0 moss-grown 0 mossy 0 stick-in-the-mud(p) 0 stodgy 0 002 & 00973844 a 0000 + 04648059 n 0501 | (used pejoratively) out of fashion; old fashioned; "moss-grown ideas about family life" -00974908 00 s 01 out 0 001 & 00973844 a 0000 | no longer fashionable; "that style is out these days" -00975011 00 s 01 prehistoric 0 002 & 00973844 a 0000 ;u 07075172 n 0000 | no longer fashionable; "my mother has these prehistoric ideas about proper clothes" -00975171 00 a 02 stylish 0 fashionable 2 006 + 04813712 n 0106 ! 00976123 a 0101 & 00975487 a 0000 & 00975692 a 0000 & 00975778 a 0000 & 00976016 a 0000 | having elegance or taste or refinement in manners or dress; "a little less posh but every bit as stylish as Lord Peter Wimsey"; "the stylish resort of Gstadd" -00975487 00 s 03 chic 0 smart 0 voguish 0 004 & 00975171 a 0000 + 04813712 n 0205 + 04813712 n 0101 + 04813712 n 0102 | elegant and stylish; "chic elegance"; "a smart new dress"; "a suit of voguish cut" -00975692 00 s 01 chichi 0 001 & 00975171 a 0000 | affectedly trendy and fashionable -00975778 00 s 03 classy 0 posh 0 swish 0 003 & 00975171 a 0000 ;u 07075172 n 0000 + 04815177 n 0101 | elegant and fashionable; "classy clothes"; "a classy dame"; "a posh restaurant"; "a swish pastry shop on the Rue du Bac"- Julia Child -00976016 00 s 01 snazzy 0 002 & 00975171 a 0000 ;u 07075172 n 0000 | flashily stylish; "a snazzy outfit" -00976123 00 a 02 styleless 0 unstylish 0 002 ! 00975171 a 0101 & 00976339 a 0000 | lacking in style or elegance; "a styleless way of dressing"; "expensive but styleless country tweeds"; "wearing unstylish clothes" -00976339 00 s 01 dowdy 0 002 & 00976123 a 0000 + 04816528 n 0101 | lacking in smartness or taste; "a dowdy grey outfit"; "a clean and sunny but completely dowdy room" -00976508 00 a 01 fast 1 024 ^ 01270175 a 0000 ^ 01143279 a 0000 = 05058140 n 0000 + 05058140 n 0103 ! 00980527 a 0101 & 00977105 a 0000 & 00977238 a 0000 & 00977372 a 0000 & 00977606 a 0000 & 00977699 a 0000 & 00977839 a 0000 & 00978059 a 0000 & 00978199 a 0000 & 00978429 a 0000 & 00978581 a 0000 & 00978754 a 0000 & 00979031 a 0000 & 00979234 a 0000 & 00979366 a 0000 & 00979697 a 0000 & 00979862 a 0000 & 00980144 a 0000 & 00980287 a 0000 & 00980385 a 0000 | acting or moving or capable of acting or moving quickly; "fast film"; "on the fast track in school"; "set a fast pace"; "a fast car" -00977105 00 s 01 accelerated 0 001 & 00976508 a 0000 | speeded up, as of an academic course; "in an accelerated program in school" -00977238 00 s 01 alacritous 0 002 & 00976508 a 0000 + 04632963 n 0101 | quick and eager; "an alacritous response to the invitation" -00977372 00 s 03 blistering 0 hot 0 red-hot 0 001 & 00976508 a 0000 | very fast; capable of quick response and great speed; "a hot sports car"; "a blistering pace"; "got off to a hot start"; "in hot pursuit"; "a red-hot line drive" -00977606 00 s 01 double-quick 0 001 & 00976508 a 0000 | (of a marching cadence) very quick -00977699 00 s 01 express 0 002 & 00976508 a 0000 + 03306385 n 0101 | without unnecessary stops; "an express train"; "an express shipment" -00977839 00 s 01 fast-breaking 0 002 & 00976508 a 0000 ;c 06269130 n 0000 | occurring rapidly as a series of events in rapid succession; "the broadcast was interrupted by a fast-breaking news story about the invasion" -00978059 00 s 01 fast-paced 0 001 & 00976508 a 0000 | of communication that proceeds rapidly; "a fast-paced talker"; "fast-paced fiction" -00978199 00 s 02 fleet 0 swift 0 003 & 00976508 a 0000 + 05058140 n 0202 + 05059017 n 0101 | moving very fast; "fleet of foot"; "the fleet scurrying of squirrels"; "a swift current"; "swift flight of an arrow"; "a swift runner" -00978429 00 s 02 high-speed 1 high-velocity 0 001 & 00976508 a 0000 | operating at high speed; "a high-speed food processor"; "a high-velocity shell" -00978581 00 s 02 hurrying 0 scurrying 0 001 & 00976508 a 0000 | moving with great haste; "affection for this hurrying driving...little man"; "lashed the scurrying horses" -00978754 00 s 04 immediate 0 prompt 0 quick 2 straightaway 0 004 & 00976508 a 0000 + 05059132 n 0302 + 05060052 n 0201 + 05059525 n 0102 | performed with little or no delay; "an immediate reply to my letter"; "a prompt reply"; "was quick to respond"; "a straightaway denial" -00979031 00 s 02 instantaneous 0 instant(a) 0 004 & 00976508 a 0000 + 05059525 n 0204 + 15244650 n 0104 + 05059525 n 0103 | occurring with no delay; "relief was instantaneous"; "instant gratification" -00979234 00 s 01 meteoric 0 001 & 00976508 a 0000 | like a meteor in speed or brilliance or transience; "a meteoric rise to fame" -00979366 00 s 02 quick 0 speedy 3 004 & 00976508 a 0000 + 05059132 n 0205 + 05058140 n 0201 + 05059132 n 0102 | accomplished rapidly and without delay; "was quick to make friends"; "his quick reaction prevented an accident"; "hoped for a speedy resolution of the problem"; "a speedy recovery"; "he has a right to a speedy trial" -00979697 00 s 01 rapid 0 003 & 00976508 a 0000 + 05059132 n 0104 + 05059132 n 0103 | done or occurring in a brief period of time; "a rapid rise through the ranks" -00979862 00 s 02 rapid 2 speedy 0 006 & 00976508 a 0000 + 05059132 n 0205 + 15282696 n 0201 + 00330160 n 0201 + 05059132 n 0104 + 05059132 n 0103 | characterized by speed; moving with or capable of moving with high speed; "a rapid movement"; "a speedy car"; "a speedy errand boy" -00980144 00 s 01 smart 0 002 & 00976508 a 0000 + 04632963 n 0103 | quick and brisk; "I gave him a smart salute"; "we walked at a smart pace" -00980287 00 s 01 winged 0 001 & 00976508 a 0000 | very fast; as if with wings; "on winged feet" -00980385 00 s 01 windy 0 002 & 00976508 a 0000 + 11525955 n 0101 | resembling the wind in speed, force, or variability; "a windy dash home" -00980527 00 a 01 slow 1 012 ^ 01142804 a 0000 ^ 01271700 a 0000 = 05058140 n 0000 + 05061977 n 0101 ! 00976508 a 0101 & 00980961 a 0000 & 00981067 a 0000 & 00981195 a 0000 & 00981304 a 0000 & 00981455 a 0000 & 00981612 a 0000 & 00981703 a 0000 | not moving quickly; taking a comparatively long time; "a slow walker"; "the slow lane of traffic"; "her steps were slow"; "he was slow in reacting to the news"; "slow but steady growth" -00980961 00 s 01 bumper-to-bumper 0 001 & 00980527 a 0000 | used of traffic; "bumper-to-bumper traffic" -00981067 00 s 04 dilatory 0 laggard 0 poky 0 pokey 0 003 & 00980527 a 0000 + 09993252 n 0406 + 09993252 n 0306 | wasting time -00981195 00 s 01 drawn-out 0 001 & 00980527 a 0000 | (used of speech) uttered slowly with prolonged vowels -00981304 00 s 01 lazy 0 002 & 00980527 a 0000 + 01064613 n 0101 | moving slowly and gently; "up a lazy river"; "lazy white clouds"; "at a lazy pace" -00981455 00 s 02 long-play 0 long-playing 0 001 & 00980527 a 0000 | (used of records) playing at a slower speed and for a longer time than earlier records -00981612 00 s 01 slow-moving 0 001 & 00980527 a 0000 | moving slowly; "slow-moving cars" -00981703 00 s 02 sluggish 1 sulky 0 002 & 00980527 a 0000 + 05062518 n 0101 | moving slowly; "a sluggish stream" -00981818 00 a 01 fast 2 009 ;c 07020895 n 0000 + 05058140 n 0103 ! 00982602 a 0101 & 00982065 a 0000 & 00982170 a 0000 & 00982275 a 0000 & 00982357 a 0000 & 00982430 a 0000 & 00982518 a 0000 | at a rapid tempo; "the band played a fast fox trot" -00982065 00 s 01 allegro 0 003 & 00981818 a 0000 + 07039770 n 0101 + 15265021 n 0101 | (of tempo) fast -00982170 00 s 01 allegretto 0 002 & 00981818 a 0000 + 15264891 n 0101 | (of tempo) faster than allegro -00982275 00 s 01 andantino 0 001 & 00981818 a 0000 | (of tempo) moderately fast -00982357 00 s 01 presto 0 001 & 00981818 a 0000 | (of tempo) very fast -00982430 00 s 01 prestissimo 0 001 & 00981818 a 0000 | (of tempo) as fast as possible -00982518 00 s 01 vivace 0 001 & 00981818 a 0000 | (of tempo) very fast and lively -00982602 00 a 01 slow 2 011 ;c 07020895 n 0000 + 05061977 n 0101 ! 00981818 a 0101 & 00982881 a 0000 & 00982954 a 0000 & 00983052 a 0000 & 00983119 a 0000 & 00983196 a 0000 & 00983304 a 0000 & 00983401 a 0000 & 00983499 a 0000 | at a slow tempo; "the band played a slow waltz" -00982881 00 s 01 adagio 0 001 & 00982602 a 0000 | (of tempo) leisurely -00982954 00 s 01 andante 0 002 & 00982602 a 0000 + 15265219 n 0101 | (of tempo) moderately slow -00983052 00 s 01 lento 0 001 & 00982602 a 0000 | (of tempo) slow -00983119 00 s 01 lentissimo 0 001 & 00982602 a 0000 | (of tempo) very slow -00983196 00 s 01 largo 0 002 & 00982602 a 0000 + 07046543 n 0101 | very slow in tempo and broad in manner -00983304 00 s 01 larghetto 0 001 & 00982602 a 0000 | (of tempo) less slow and broad than largo -00983401 00 s 01 larghissimo 0 001 & 00982602 a 0000 | (of tempo) as slow and broad as possible -00983499 00 s 01 moderato 0 001 & 00982602 a 0000 | (of tempo) moderate -00983573 00 a 01 fast 3 001 ! 00983722 a 0101 | (used of timepieces) indicating a time ahead of or later than the correct time; "my watch is fast" -00983722 00 a 01 slow 3 001 ! 00983573 a 0101 | (used of timepieces) indicating a time earlier than the correct time; "the clock is slow" -00983862 00 a 01 fastidious 0 010 ^ 01947266 a 0000 ^ 02422685 a 0000 + 04896317 n 0101 ! 00985387 a 0101 & 00984251 a 0000 & 00984333 a 0000 & 00984624 a 0000 & 00984879 a 0000 & 00985104 a 0000 & 00985297 a 0000 | giving careful attention to detail; hard to please; excessively concerned with cleanliness; "a fastidious and incisive intellect"; "fastidious about personal cleanliness" -00984251 00 s 02 choosy 0 choosey 0 001 & 00983862 a 0000 | difficult to please -00984333 00 s 05 dainty 0 nice 0 overnice 0 prissy 0 squeamish 0 003 & 00983862 a 0000 + 14360320 n 0502 + 04897152 n 0501 | excessively fastidious and easily disgusted; "too nice about his food to take to camp cooking"; "so squeamish he would only touch the toilet handle with his elbow" -00984624 00 s 05 finical 0 finicky 0 fussy 1 particular 0 picky 0 003 & 00983862 a 0000 + 07184735 n 0307 + 04700199 n 0301 | exacting especially about details; "a finicky eater"; "fussy about clothes"; "very particular about how her food was prepared" -00984879 00 s 01 meticulous 0 003 & 00983862 a 0000 + 04672605 n 0102 + 04672605 n 0101 | marked by extreme care in treatment of details; "a meticulous craftsman"; "almost worryingly meticulous in his business formalities" -00985104 00 s 02 pernickety 0 persnickety 0 001 & 00983862 a 0000 | characterized by excessive precision and attention to trivial details; "a persnickety job"; "a persnickety school teacher" -00985297 00 s 02 old-maidish 0 old-womanish 0 001 & 00983862 a 0000 | primly fastidious -00985387 00 a 01 unfastidious 0 003 ^ 01949149 a 0000 ^ 02424254 a 0000 ! 00983862 a 0101 | marked by an absence of due or proper care or attention to detail; not concerned with cleanliness; "unfastidious in her dress" -00985608 00 a 02 fastidious 2 exacting 0 002 ;c 06077648 n 0000 ! 00985909 a 0101 | having complicated nutritional requirements; especially growing only in special artificial cultures; "fastidious microorganisms"; "certain highly specialized xerophytes are extremely exacting in their requirements" -00985909 00 a 01 unfastidious 2 002 ;c 06077648 n 0000 ! 00985608 a 0101 | not exacting in nutritional requirements -00986027 00 a 01 fat 1 018 ^ 00828175 a 0000 ^ 02043898 a 0000 ^ 02410393 a 0000 = 05027135 n 0000 + 04999401 n 0102 + 04999401 n 0101 ! 00988232 a 0101 & 00986457 a 0000 & 00986611 a 0000 & 00986766 a 0000 & 00986975 a 0000 & 00987180 a 0000 & 00987349 a 0000 & 00987510 a 0000 & 00987703 a 0000 & 00987769 a 0000 & 00987974 a 0000 & 00988077 a 0000 | having an (over)abundance of flesh; "he hadn't remembered how fat she was" -00986457 00 s 03 abdominous 0 paunchy 0 potbellied 0 004 & 00986027 a 0000 + 05555917 n 0202 + 04999964 n 0202 + 04999964 n 0101 | having a large belly -00986611 00 s 01 blubbery 0 002 & 00986027 a 0000 + 04999401 n 0103 | swollen with fat; "blubber cheeks"; "blubber lips"; "a coarse blubbery individual" -00986766 00 s 03 chubby 0 embonpoint 0 plump 0 003 & 00986027 a 0000 + 05000913 n 0301 + 05001089 n 0101 | sufficiently fat so as to have a pleasing fullness of figure; "a chubby child"; "pleasingly plump"; -00986975 00 s 03 buxom 0 zaftig 0 zoftig 0 002 & 00986027 a 0000 + 05001302 n 0101 | (of a female body) healthily plump and vigorous ; "a generation ago...buxom actresses were popular"- Robt.A.Hamilton; -00987180 00 s 04 corpulent 0 obese 0 weighty 0 rotund 0 004 & 00986027 a 0000 + 05027529 n 0302 + 05000342 n 0202 + 05000537 n 0101 | excessively fat; "a weighty man" -00987349 00 s 03 double-chinned 0 jowly 0 loose-jowled 0 002 & 00986027 a 0000 + 05602982 n 0201 | having sagging folds of flesh beneath the chin or lower jaw -00987510 00 s 05 dumpy 0 podgy 0 pudgy 0 tubby 0 roly-poly 0 006 & 00986027 a 0000 + 05001089 n 0504 + 05001089 n 0403 + 10491998 n 0301 + 05001089 n 0302 + 04998816 n 0101 | short and plump -00987703 00 s 01 fattish 0 001 & 00986027 a 0000 | somewhat fat -00987769 00 s 03 fleshy 0 heavy 0 overweight 0 004 & 00986027 a 0000 + 05000537 n 0302 + 05027529 n 0201 + 05000342 n 0101 | usually describes a large person who is fat but has a large frame to carry it -00987974 00 s 02 gross 0 porcine 0 001 & 00986027 a 0000 | repellently fat; "a bald porcine old man" -00988077 00 s 02 portly 0 stout 0 003 & 00986027 a 0000 + 05097166 n 0201 + 05000537 n 0203 | euphemisms for `fat'; "men are portly and women are stout" -00988232 00 a 02 thin 3 lean 4 023 ^ 00827923 a 0000 ^ 02412164 a 0000 = 05027135 n 0000 + 05001482 n 0201 + 05001482 n 0102 ! 00986027 a 0101 & 00988797 a 0000 & 00988988 a 0000 & 00989416 a 0000 & 00989544 a 0000 & 00989647 a 0000 & 00989721 a 0000 & 00989830 a 0000 & 00989957 a 0000 & 00990053 a 0000 & 00990192 a 0000 & 00990442 a 0000 & 00990855 a 0000 & 00991189 a 0000 & 00991301 a 0000 & 00991481 a 0000 & 00991584 a 0000 & 00991678 a 0000 | lacking excess flesh; "you can't be too rich or too thin"; "Yon Cassius has a lean and hungry look"-Shakespeare -00988797 00 s 02 anorexic 0 anorectic 0 005 & 00988232 a 0000 + 09795751 n 0202 + 14055796 n 0201 + 09795751 n 0101 + 14055796 n 0101 | suffering from anorexia nervosa; pathologically thin -00988988 00 s 08 bony 0 cadaverous 0 emaciated 0 gaunt 0 haggard 0 pinched 0 skeletal 0 wasted 0 004 & 00988232 a 0000 + 05001867 n 0404 + 05001867 n 0102 + 05001867 n 0101 | very thin especially from disease or hunger or cold; "emaciated bony hands"; "a nightmare population of gaunt men and skeletal boys"; "eyes were haggard and cavernous"; "small pinched faces"; "kept life in his wasted frame only by grim concentration" -00989416 00 s 03 deep-eyed 0 hollow-eyed 0 sunken-eyed 0 001 & 00988232 a 0000 | characteristic of the bony face of a cadaver -00989544 00 s 03 gangling 0 gangly 0 lanky 0 002 & 00988232 a 0000 + 04998700 n 0301 | tall and thin -00989647 00 s 02 lank 0 spindly 0 001 & 00988232 a 0000 | long and lean -00989721 00 s 01 rawboned 0 001 & 00988232 a 0000 | having a lean and bony physique; "a rawboned cow hand" -00989830 00 s 02 reedy 0 reedlike 0 002 & 00988232 a 0000 + 12136720 n 0101 | resembling a reed in being upright and slender -00989957 00 s 02 twiggy 0 twiglike 0 002 & 00988232 a 0000 + 13163991 n 0102 | thin as a twig -00990053 00 s 01 scarecrowish 0 001 & 00988232 a 0000 | resembling a scarecrow in being thin and ragged; "a forlorn scarecrowish figure" -00990192 00 s 06 scraggy 0 boney 0 scrawny 0 skinny 0 underweight 0 weedy 0 005 & 00988232 a 0000 + 05001724 n 0401 + 05001724 n 0302 + 05001867 n 0202 + 10708797 n 0103 | being very thin; "a child with skinny freckled legs"; "a long scrawny neck" -00990442 00 s 06 shriveled 0 shrivelled 0 shrunken 0 withered 0 wizen 0 wizened 0 001 & 00988232 a 0000 | lean and wrinkled by shrinkage as from age or illness; "the old woman's shriveled skin"; "he looked shriveled and ill"; "a shrunken old man"; "a lanky scarecrow of a man with withered face and lantern jaws"-W.F.Starkie; "he did well despite his withered arm"; "a wizened little man with frizzy grey hair" -00990855 00 s 04 slender 0 slight 0 slim 0 svelte 0 005 & 00988232 a 0000 + 05002155 n 0303 + 05002155 n 0202 + 05107216 n 0202 + 05002155 n 0101 | being of delicate or slender build; "she was slender as a willow shoot is slender"- Frank Norris; "a slim girl with straight blonde hair"; "watched her slight figure cross the street" -00991189 00 s 03 slender-waisted 0 slim-waisted 0 wasp-waisted 0 001 & 00988232 a 0000 | having a small waist -00991301 00 s 02 spare 0 trim 0 003 & 00988232 a 0000 + 14497511 n 0202 + 05114781 n 0102 | thin and fit; "the spare figure of a marathon runner"; "a body kept trim by exercise" -00991481 00 s 02 spindle-legged 0 spindle-shanked 0 001 & 00988232 a 0000 | having long slender legs -00991584 00 s 02 stringy 0 wiry 0 002 & 00988232 a 0000 + 05033171 n 0201 | lean and sinewy -00991678 00 s 02 wisplike 0 wispy 0 002 & 00988232 a 0000 + 10784436 n 0201 | thin and weak; "a wispy little fellow with small hands and feet"- Edmund Wilson -00991838 00 a 02 fatty 0 fat 2 011 + 14864360 n 0201 + 05268965 n 0202 + 10082146 n 0102 + 05268965 n 0102 + 04999741 n 0103 ! 00992955 a 0101 & 00992133 a 0000 & 00992291 a 0000 & 00992432 a 0000 & 00992716 a 0000 & 00992826 a 0000 | containing or composed of fat; "fatty food"; "fat tissue" -00992133 00 s 01 adipose 0 003 & 00991838 a 0000 + 04999741 n 0101 + 04999741 n 0102 | composed of animal fat; "adipose tissue constitutes the fat of meat" -00992291 00 s 01 buttery 0 002 & 00991838 a 0000 + 07848338 n 0101 | resembling or containing or spread with butter; "a rich buttery cake" -00992432 00 s 04 greasy 0 oily 0 sebaceous 0 oleaginous 0 006 & 00991838 a 0000 + 05000116 n 0403 + 05416979 n 0301 + 07673397 n 0202 + 05000116 n 0202 + 05000116 n 0101 | containing an unusual amount of grease or oil; "greasy hamburgers"; "oily fried potatoes"; "oleaginous seeds" -00992716 00 s 01 suety 0 002 & 00991838 a 0000 + 07672790 n 0101 | like or full of suet; "suety lamb chops" -00992826 00 s 01 superfatted 0 001 & 00991838 a 0000 | (of soap) containing extra unsaponified fat; "superfatted toilet soaps" -00992955 00 a 03 nonfat 0 fat-free 0 fatless 0 003 ! 00991838 a 0101 & 00993117 a 0000 & 00993316 a 0000 | without fat or fat solids; "nonfat or fat-free milk" -00993117 00 s 04 light 0 lite 0 low-cal 0 calorie-free 0 001 & 00992955 a 0000 | having relatively few calories; "diet cola"; "light (or lite) beer"; "lite (or light) mayonnaise"; "a low-cal diet" -00993316 00 s 02 skim 0 skimmed 0 001 & 00992955 a 0000 | used of milk and milk products from which the cream has been removed; "yogurt made with skim milk"; "she can drink skimmed milk but should avoid butter" -00993529 00 a 01 fatal 0 005 + 04791321 n 0101 ! 00994210 a 0101 & 00993667 a 0000 & 00993885 a 0000 & 00994073 a 0000 | bringing death -00993667 00 s 03 deadly 1 deathly 0 mortal 1 003 & 00993529 a 0000 + 00219575 n 0201 + 04791081 n 0101 | causing or capable of causing death; "a fatal accident"; "a deadly enemy"; "mortal combat"; "a mortal illness" -00993885 00 s 02 deadly 2 lethal 0 003 & 00993529 a 0000 + 04791081 n 0202 + 04791081 n 0101 | of an instrument of certain death; "deadly poisons"; "lethal weapon"; "a lethal injection" -00994073 00 s 01 terminal 0 001 & 00993529 a 0000 | causing or ending in or approaching death; "a terminal patient"; "terminal cancer" -00994210 00 a 01 nonfatal 0 002 ! 00993529 a 0101 & 00994326 a 0000 | not bringing death; "nonfatal heart attack" -00994326 00 s 01 nonlethal 0 001 & 00994210 a 0000 | not capable of causing death -00994410 00 a 01 curable 0 004 + 00081725 v 0102 + 04856721 n 0102 + 04856721 n 0101 ! 00994567 a 0101 | curing or healing is possible; "curable diseases" -00994567 00 a 01 incurable 0 003 + 04856899 n 0102 + 04856899 n 0101 ! 00994410 a 0101 | incapable of being cured; "an incurable disease"; "an incurable addiction to smoking" -00994744 00 a 03 fathomable 0 plumbable 0 soundable 0 001 ! 00994882 a 0101 | (of depth) capable of being sounded or measured for depth -00994882 00 a 01 unfathomable 0 003 ^ 00690058 a 0000 ! 00994744 a 0101 & 00995027 a 0000 | of depth; not capable of being sounded or measured -00995027 00 s 01 unsoundable 0 001 & 00994882 a 0000 | too deep to determine the depth of -00995119 00 a 02 favorable 1 favourable 1 005 ^ 00177186 a 0000 + 05160796 n 0202 + 05160796 n 0101 ! 00995468 a 0101 & 00995365 a 0000 | (of winds or weather) tending to promote or facilitate; "the days were fair and the winds were favorable" -00995365 00 s 01 following(a) 0 001 & 00995119 a 0000 | in the desired direction; "a following wind" -00995468 00 a 02 unfavorable 1 unfavourable 1 003 ^ 00177963 a 0000 ! 00995119 a 0101 & 00995647 a 0000 | (of winds or weather) tending to hinder or oppose; "unfavorable winds" -00995647 00 s 02 adverse 0 contrary 0 001 & 00995468 a 0000 | in an opposing direction; "adverse currents"; "a contrary wind" -00995775 00 a 02 favorable 2 favourable 2 006 ^ 00075135 a 0000 ^ 00905905 a 0000 ^ 01123148 a 0000 ! 00996448 a 0101 & 00996089 a 0000 & 00996343 a 0000 | encouraging or approving or pleasing; "a favorable reply"; "he received a favorable rating"; "listened with a favorable ear"; "made a favorable impression" -00996089 00 s 05 approving 0 affirmative 0 approbative 0 approbatory 0 plausive 0 004 & 00995775 a 0000 + 00673983 v 0401 + 00806502 v 0301 + 00673983 v 0301 | expressing or manifesting praise or approval; "approbative criticism"; "an affirmative nod" -00996343 00 s 01 indulgent 0 001 & 00995775 a 0000 | being favorably inclined; "an indulgent attitude" -00996448 00 a 02 unfavorable 2 unfavourable 2 012 ^ 01125429 a 0000 ^ 00647542 a 0000 ^ 01244410 a 0000 ^ 00075515 a 0000 ^ 00906455 a 0000 + 05161967 n 0202 + 05161967 n 0101 ! 00995775 a 0101 & 00996864 a 0000 & 00997036 a 0000 & 00997298 a 0000 & 00997394 a 0000 | not encouraging or approving or pleasing; "unfavorable conditions"; "an unfavorable comparison"; "unfavorable comments", "unfavorable impression" -00996864 00 s 04 admonitory 0 admonishing 0 reproachful 0 reproving 0 002 & 00996448 a 0000 + 00824066 v 0101 | expressing reproof or reproach especially as a corrective -00997036 00 s 03 adverse 0 inauspicious 0 untoward 0 004 & 00996448 a 0000 + 05162217 n 0201 + 14475661 n 0101 + 07336612 n 0101 | contrary to your interests or welfare; "adverse circumstances"; "made a place for themselves under the most untoward conditions" -00997298 00 s 01 disapproving 0 001 & 00996448 a 0000 | expressing or manifesting disapproval -00997394 00 s 02 discriminatory 0 invidious 0 002 & 00996448 a 0000 + 02512305 v 0101 | containing or implying a slight or showing prejudice; "discriminatory attitudes and practices"; "invidious comparisons" -00997604 00 a 01 feathered 0 012 ! 00999330 a 0101 & 00997914 a 0000 & 00998040 a 0000 & 00998207 a 0000 & 00998381 a 0000 & 00998479 a 0000 & 00998598 a 0000 & 00998674 a 0000 & 00998850 a 0000 & 00998985 a 0000 & 00999136 a 0000 & 00999242 a 0000 | having or covered with feathers; "our feathered friends" -00997914 00 s 01 aftershafted 0 001 & 00997604 a 0000 | having an aftershaft (a small feather at the base of some feathers) -00998040 00 s 01 feathery 1 003 & 00997604 a 0000 + 01896031 n 0101 + 04938838 n 0102 | characterized by a covering of feathers; "the feathery congregation of jays" -00998207 00 s 02 featherlike 0 feathery 2 003 & 00997604 a 0000 + 01896031 n 0201 + 04938838 n 0202 | resembling or suggesting a feather or feathers; "feathery palm trees" -00998381 00 s 02 fledged 0 vaned 0 001 & 00997604 a 0000 | (of an arrow) equipped with feathers -00998479 00 s 01 flighted(ip) 0 002 & 00997604 a 0000 ;c 05801594 n 0000 | having feathers; "arrows flighted argent" -00998598 00 s 01 pennate 0 001 & 00997604 a 0000 | having feathered wings -00998674 00 s 01 plumaged 0 001 & 00997604 a 0000 | having or covered in plumage; often used as a combining form; "fully plumaged young bird"; "brilliantly plumaged parrots" -00998850 00 s 03 plumate 0 plumed 1 plumose 0 002 & 00997604 a 0000 ;c 06037666 n 0000 | having an ornamental plume or feathery tuft -00998985 00 s 02 plumed 2 plumy 1 001 & 00997604 a 0000 | having or covered with or abounding in plumes; "the plumed serpent"; "white-plumed egrets" -00999136 00 s 02 plumelike 0 plumy 2 001 & 00997604 a 0000 | resembling a plume; "the dog's plumy tail" -00999242 00 s 01 velvety-plumaged 0 001 & 00997604 a 0000 | plumage resembling velvet -00999330 00 a 02 unfeathered 0 featherless 0 003 ! 00997604 a 0101 & 00999519 a 0000 & 00999671 a 0000 | having no feathers; "a featherless biped"; "the unfeathered legs of an Orpington" -00999519 00 s 01 plucked 0 001 & 00999330 a 0000 | having the feathers removed, as from a pelt or a fowl; "a plucked chicken"; "an unfeathered goose" -00999671 00 s 03 unfledged 0 fledgeless 0 unvaned 0 001 & 00999330 a 0000 | (of an arrow) not equipped with feathers; "shot an unfledged arrow" -00999817 00 a 01 felicitous 0 009 ^ 01148283 a 0000 = 04716210 n 0000 + 04716210 n 0102 + 04716210 n 0101 ! 01000881 a 0101 & 01000093 a 0000 & 01000442 a 0000 & 01000592 a 0000 & 01000737 a 0000 | exhibiting an agreeably appropriate manner or style; "a felicitous speaker" -01000093 00 s 02 congratulatory 0 gratulatory 0 005 & 00999817 a 0000 + 01772498 v 0103 + 00883847 v 0102 + 00881998 v 0101 + 00881661 v 0102 | expressive of sympathetic pleasure or joy on account of someone's success or good fortune; "a congratulatory telegram"; "the usual congratulatory crowd was conspicuously absent"; "a gratulatory address" -01000442 00 s 02 happy 0 well-chosen 0 001 & 00999817 a 0000 | well expressed and to the point; "a happy turn of phrase"; "a few well-chosen words" -01000592 00 s 01 well-turned 0 002 & 00999817 a 0000 ;c 06282651 n 0000 | (of language) aptly and pleasingly expressed; "a well-turned phrase" -01000737 00 s 01 well-wishing(a) 0 002 & 00999817 a 0000 + 06630459 n 0101 | extending good wishes for success; "his well-wishing supporters" -01000881 00 a 01 infelicitous 0 006 ^ 01149494 a 0000 = 04716210 n 0000 + 04722051 n 0101 ! 00999817 a 0101 & 01001180 a 0000 & 01001547 a 0000 | not appropriate in application; defective; "an infelicitous remark"; "infelicitous phrasing"; "the infelicitous typesetting was due to illegible copy" -01001180 00 s 06 awkward 0 clumsy 0 cumbersome 0 inapt 0 inept 0 ill-chosen 0 005 & 01000881 a 0000 + 05648459 n 0503 + 04721428 n 0401 + 04815624 n 0202 + 05648459 n 0101 | not elegant or graceful in expression; "an awkward prose style"; "a clumsy apology"; "his cumbersome writing style"; "if the rumor is true, can anything be more inept than to repeat it now?" -01001547 00 s 01 unfortunate 0 001 & 01000881 a 0000 | unsuitable or regrettable; "an unfortunate choice of words"; "an unfortunate speech" -01001689 00 a 01 fertile 0 011 ^ 01001945 a 0000 ^ 01080297 a 0000 ^ 01824244 a 0000 ^ 01865197 a 0000 = 14051494 n 0000 + 14051494 n 0101 ! 01002377 a 0101 & 01001945 a 0000 & 01002055 a 0000 & 01002170 a 0000 & 01002256 a 0000 | capable of reproducing -01001945 00 s 02 conceptive 0 impregnable 0 002 & 01001689 a 0000 + 00054285 v 0101 | capable of conceiving -01002055 00 s 01 fecund 0 002 & 01001689 a 0000 + 14051494 n 0102 | capable of producing offspring or vegetation -01002170 00 s 01 fertilizable 0 001 & 01001689 a 0000 | capable of being fertilized -01002256 00 s 01 rank 0 002 & 01001689 a 0000 + 05147586 n 0102 | very fertile; producing profuse growth; "rank earth" -01002377 00 a 03 sterile 0 unfertile 0 infertile 0 010 ^ 01082535 a 0000 ^ 01824751 a 0000 ^ 01866535 a 0000 = 14051494 n 0000 + 14045507 n 0302 + 14045507 n 0101 ! 01001689 a 0101 & 01002664 a 0000 & 01002827 a 0000 & 01002911 a 0000 | incapable of reproducing; "an infertile couple" -01002664 00 s 01 barren 0 002 & 01002377 a 0000 + 14045347 n 0101 | not bearing offspring; "a barren woman"; "learned early in his marriage that he was sterile" -01002827 00 s 02 sterilized 0 sterilised 0 001 & 01002377 a 0000 | made infertile -01002911 00 s 03 unfertilized 0 unfertilised 0 unimpregnated 0 001 & 01002377 a 0000 | not having been fertilized; "an unfertilized egg" -01003050 00 a 01 finished 1 006 ! 01004318 a 0101 & 01003277 a 0000 & 01003536 a 0000 & 01003822 a 0000 & 01004051 a 0000 & 01004245 a 0000 | ended or brought to an end; "are you finished?"; "gave me the finished manuscript" -01003277 00 s 06 complete 0 concluded 0 ended 0 over(p) 1 all_over 0 terminated 0 001 & 01003050 a 0000 | having come or been brought to a conclusion; "the harvesting was complete"; "the affair is over, ended, finished"; "the abruptly terminated interview" -01003536 00 s 03 done 0 through 0 through_with(p) 2 001 & 01003050 a 0000 | having finished or arrived at completion; "certain to make history before he's done"; "it's a done deed"; "after the treatment, the patient is through except for follow-up"; "almost through with his studies" -01003822 00 s 02 done_with(p) 0 through_with(p) 1 001 & 01003050 a 0000 | having no further concern with; "he was through with school and he was through with family"- John Dos Passos; "done with gambling"; "done with drinking" -01004051 00 s 01 fin_de_siecle 0 002 & 01003050 a 0000 ;u 06964901 n 0000 | relating to or characteristic of the end of a century (especially the end of the 19th century); "fin de siecle art" -01004245 00 s 01 up(p) 0 001 & 01003050 a 0000 | used up; "time is up" -01004318 00 a 01 unfinished 1 005 ! 01003050 a 0101 & 01004541 a 0000 & 01004703 a 0000 & 01004818 a 0000 & 01004932 a 0000 | not brought to an end or conclusion; "unfinished business"; "the building is still unfinished" -01004541 00 s 02 incomplete 0 uncompleted 0 002 & 01004318 a 0000 + 14462193 n 0101 | not yet finished; "his thesis is still incomplete"; "an uncompleted play" -01004703 00 s 01 pending 0 001 & 01004318 a 0000 | awaiting conclusion or confirmation; "business still pending" -01004818 00 s 01 undone 0 001 & 01004318 a 0000 | not done; "the work could be done or undone and nobody cared" -01004932 00 s 01 unended 0 001 & 01004318 a 0000 | not ended; lacking an end or conclusion; "he did with the book still unended" -01005063 00 a 01 finished 2 007 ^ 01713373 a 0000 ^ 01951684 a 0000 ^ 02236842 a 0000 ! 01005675 a 0101 & 01005306 a 0000 & 01005410 a 0000 & 01005506 a 0000 | (of materials or goods) brought to the desired final state; "a finished product" -01005306 00 s 02 dressed 0 polished 1 001 & 01005063 a 0000 | (of lumber or stone) to trim and smooth -01005410 00 s 01 fattened 0 001 & 01005063 a 0000 | (of market animals) made ready for market -01005506 00 s 01 fattening 0 001 & 01005063 a 0000 | subject to or used in the process of finishing or fattening up for slaughter; "a fattening hog"; "fattening pens" -01005675 00 a 01 unfinished 2 009 ^ 02238462 a 0000 ^ 01713925 a 0000 ^ 01952405 a 0000 ! 01005063 a 0101 & 01005914 a 0000 & 01006016 a 0000 & 01006136 a 0000 & 01006284 a 0000 & 01006386 a 0000 | not brought to the desired final state -01005914 00 s 02 raw(a) 0 unsanded 0 001 & 01005675 a 0000 | used of wood and furniture; "raw wood" -01006016 00 s 02 roughhewn 0 rough-cut 0 001 & 01005675 a 0000 | of stone or timber; shaped roughly without finishing -01006136 00 s 01 undressed 0 001 & 01005675 a 0000 | of lumber or stone or hides; not finished or dressed; "undressed granite"; "undressed hides" -01006284 00 s 01 unfattened 0 001 & 01005675 a 0000 | (of market animals) not optimal for marketing -01006386 00 s 01 unhewn 0 001 & 01005675 a 0000 | (of stone especially) not given a finished form by or as if by hewing; "a house of unhewn grey stone roughly cemented together" -01006566 00 a 01 finite 0 007 ^ 01557614 a 0000 + 05209659 n 0101 ! 01007354 a 0101 & 01006788 a 0000 & 01006967 a 0000 & 01007120 a 0000 & 01007258 a 0000 | bounded or limited in magnitude or spatial or temporal extent -01006788 00 s 02 bounded 0 delimited 0 002 & 01006566 a 0000 + 05209659 n 0103 | having the limits or boundaries established; "a delimited frontier through the disputed region" -01006967 00 s 01 exhaustible 0 001 & 01006566 a 0000 | capable of being used up; capable of being exhausted; "our exhaustible reserves of fossil fuel" -01007120 00 s 01 impermanent 0 003 & 01006566 a 0000 + 05054863 n 0102 + 05054863 n 0101 | existing or enduring for a limited time only -01007258 00 s 01 limited 0 001 & 01006566 a 0000 | not unlimited; "a limited list of choices" -01007354 00 a 01 infinite 0 008 ^ 01557903 a 0000 + 05209324 n 0101 + 15243976 n 0102 ! 01006566 a 0101 & 01007657 a 0000 & 01007947 a 0000 & 01008174 a 0000 & 01008289 a 0000 | having no limits or boundaries in time or space or extent or magnitude; "the infinite ingenuity of man"; "infinite wealth" -01007657 00 s 03 boundless 0 unbounded 0 limitless 0 004 & 01007354 a 0000 + 05209324 n 0305 + 05209324 n 0203 + 05209324 n 0104 | seemingly boundless in amount, number, degree, or especially extent; "unbounded enthusiasm"; "children with boundless energy"; "a limitless supply of money" -01007947 00 s 03 dateless 0 endless 0 sempiternal 0 002 & 01007354 a 0000 + 05052387 n 0201 | having no known beginning and presumably no end; "the dateless rise and fall of the tides"; "time is endless"; "sempiternal truth" -01008174 00 s 01 endless 2 002 & 01007354 a 0000 + 05052387 n 0101 | infinitely great in number; "endless waves" -01008289 00 s 02 inexhaustible 0 unlimited 0 001 & 01007354 a 0000 | that cannot be entirely consumed or used up; "an inexhaustible supply of coal" -01008439 00 a 01 finite 2 003 ;c 06174404 n 0000 ! 01008745 a 0101 & 01008656 a 0000 | of verbs; relating to forms of the verb that are limited in time by a tense and (usually) show agreement with number and person -01008656 00 s 01 tensed 0 001 & 01008439 a 0000 | having inflections to indicate tense -01008745 00 a 02 infinite 2 non-finite 0 002 ;c 06174404 n 0000 ! 01008439 a 0101 | of verbs; having neither person nor number nor mood (as a participle or gerund or infinitive); "infinite verb form" -01008947 00 a 01 opening 0 007 + 07329363 n 0101 + 00239230 n 0104 ! 01010025 a 0101 & 01009206 a 0000 & 01009343 a 0000 & 01009709 a 0000 & 01009865 a 0000 | first or beginning; "the memorable opening bars of Beethoven's Fifth"; "the play's opening scene" -01009206 00 s 02 beginning(a) 0 first 1 001 & 01008947 a 0000 | serving to begin; "the beginning canto of the poem"; "the first verse" -01009343 00 s 05 inaugural 0 initiative 0 initiatory 0 first 2 maiden 0 004 & 01008947 a 0000 + 01628449 v 0302 + 01628449 v 0202 + 00539546 v 0202 | serving to set in motion; "the magazine's inaugural issue"; "the initiative phase in the negotiations"; "an initiatory step toward a treaty"; "his first (or maiden) speech in Congress"; "the liner's maiden voyage" -01009709 00 s 01 introductory 0 002 & 01008947 a 0000 + 00901799 v 0104 | serving to open or begin; "began the slide show with some introductory remarks" -01009865 00 s 01 starting 0 001 & 01008947 a 0000 | appropriate to the beginning or start of an event; "the starting point"; "hands in the starting position" -01010025 00 a 01 closing 0 004 ! 01008947 a 0101 & 01010271 a 0000 & 01010569 a 0000 & 01010747 a 0000 | final or ending; "the closing stages of the election"; "the closing weeks of the year"; "the closing scene of the film"; "closing remarks" -01010271 00 s 04 concluding 0 final 0 last 0 terminal 0 004 & 01010025 a 0000 + 07466832 n 0201 + 07198276 n 0203 + 04754440 n 0201 | occurring at or forming an end or termination; "his concluding words came as a surprise"; "the final chapter"; "the last days of the dinosaurs"; "terminal leave" -01010569 00 s 01 terminative 0 004 & 01010025 a 0000 + 02735418 v 0102 + 02609764 v 0104 + 00352826 v 0102 | coming to an end; "a contract terminative with the end of the war" -01010747 00 s 01 year-end 0 001 & 01010025 a 0000 | taking place at the close of a fiscal year; "year-end audit" -01010862 00 a 01 first 0 014 ^ 00812952 a 0000 ^ 00198147 a 0000 ^ 01686439 a 0000 ^ 01852174 a 0000 ! 01013279 a 0101 & 01011392 a 0000 & 01011753 a 0000 & 01011973 a 0000 & 01012100 a 0000 & 01012247 a 0000 & 01012503 a 0000 & 01012855 a 0000 & 01012990 a 0000 & 01013171 a 0000 | preceding all others in time or space or degree; "the first house on the right"; "the first day of spring"; "his first political race"; "her first baby"; "the first time"; "the first meetings of the new party"; "the first phase of his training" -01011392 00 s 05 archetypal 0 archetypical 0 prototypal 0 prototypic 0 prototypical 0 006 & 01010862 a 0000 + 05937524 n 0501 + 05937524 n 0401 + 05937524 n 0301 + 05938400 n 0202 + 05938400 n 0102 | representing or constituting an original type after which other similar things are patterned; "archetypal patterns"; "she was the prototypal student activist" -01011753 00 s 02 basic 2 introductory 0 001 & 01010862 a 0000 | serving as a base or starting point; "a basic course in Russian"; "basic training for raw recruits"; "a set of basic tools"; "an introductory art course" -01011973 00 s 01 initial 0 001 & 01010862 a 0000 | occurring at the beginning; "took the initial step toward reconciliation" -01012100 00 s 02 firstborn 0 eldest 0 003 & 01010862 a 0000 + 10092643 n 0202 + 10092643 n 0101 | first in order of birth; "the firstborn child" -01012247 00 s 02 freshman 0 first-year 0 002 & 01010862 a 0000 ;r 09044862 n 0000 | used of a person in the first year of an experience (especially in United States high school or college); "a freshman senator"; "freshman year in high school or college" -01012503 00 s 01 original 1 001 & 01010862 a 0000 | preceding all others in time or being as first made or performed; "the original inhabitants of the Americas"; "the book still has its original binding"; "restored the house to its original condition"; "the original performance of the opera"; "the original cast"; "retracted his original statement" -01012855 00 s 02 premier 1 premiere 0 002 & 01010862 a 0000 + 06893285 n 0201 | preceding all others in time; "the premiere showing" -01012990 00 s 02 premier(a) 2 prime(a) 2 003 & 01010862 a 0000 + 09906986 n 0102 + 09907196 n 0103 | first in rank or degree; "an architect of premier rank"; "the prime minister" -01013171 00 s 01 prime(a) 1 001 & 01010862 a 0000 | used of the first or originating agent; "prime mover" -01013279 00 a 01 last 0 004 ! 01010862 a 0101 & 01013681 a 0000 & 01013843 a 0000 & 01013961 a 0000 | coming after all others in time or space or degree or being the only one remaining; "the last time I saw Paris"; "the last day of the month"; "had the last word"; "waited until the last minute"; "he raised his voice in a last supreme call"; "the last game of the season"; "down to his last nickel" -01013681 00 s 02 senior(a) 0 fourth-year 0 001 & 01013279 a 0000 | used of the fourth and final year in United States high school or college; "the senior prom" -01013843 00 s 01 sunset(a) 0 001 & 01013279 a 0000 | providing for termination; "a program with a sunset provision" -01013961 00 s 01 ultimate 0 002 & 01013279 a 0000 + 13942104 n 0102 | being the last or concluding element of a series; "the ultimate sonata of that opus"; "a distinction between the verb and noun senses of `conflict' is that in the verb the stress is on the ultimate (or last) syllable" -01014251 00 a 01 intermediate 0 009 ! 01016035 a 0101 & 01014685 a 0000 & 01014838 a 0000 & 01014953 a 0000 & 01015185 a 0000 & 01015392 a 0000 & 01015599 a 0000 & 01015798 a 0000 & 01015940 a 0000 | lying between two extremes in time or space or state; "going from sitting to standing without intermediate pushes with the hands"; "intermediate stages in a process"; "intermediate stops on the route"; "an intermediate range plane" -01014685 00 s 02 grey 0 gray 0 001 & 01014251 a 0000 | intermediate in character or position; "a grey area between clearly legal and strictly illegal" -01014838 00 s 01 halfway 0 001 & 01014251 a 0000 | at a point midway between two extremes; "at the halfway mark" -01014953 00 s 03 in-between 0 mediate 0 middle 0 001 & 01014251 a 0000 | being neither at the beginning nor at the end in a series; "adolescence is an awkward in-between age"; "in a mediate position"; "the middle point on a line" -01015185 00 s 03 junior(a) 0 third-year 0 next-to-last 0 001 & 01014251 a 0000 | used of the third or next to final year in United States high school or college; "the junior class"; "a third-year student" -01015392 00 s 02 penultimate 0 next-to-last 1 001 & 01014251 a 0000 | next to the last; "the author inadvertently reveals the murderer in the penultimate chapter"; "the figures in the next-to-last column" -01015599 00 s 02 sophomore(a) 0 second-year 0 002 & 01014251 a 0000 + 10625438 n 0101 | used of the second year in United States high school or college; "the sophomore class"; "his sophomore year" -01015798 00 s 01 subterminal 0 001 & 01014251 a 0000 | near but not precisely at an end; "a subterminal band of color on the tail feathers" -01015940 00 s 01 antepenultimate 0 002 & 01014251 a 0000 + 06305223 n 0102 | third from last -01016035 00 a 01 terminal 0 001 ! 01014251 a 0101 | being or situated at an end; "the endmost pillar"; "terminal buds on a branch"; "a terminal station"; "the terminal syllable" -01016215 00 a 01 first 3 002 ;c 07020895 n 0000 ! 01016436 a 0101 | highest in pitch or chief among parts or voices or instruments or orchestra sections; "first soprano"; "the first violin section"; "played first horn" -01016436 00 a 01 second 0 002 ;c 07020895 n 0000 ! 01016215 a 0101 | a part or voice or instrument or orchestra section lower in pitch than or subordinate to the first; "second flute"; "the second violins" -01016644 00 a 01 fissile 0 001 ! 01016806 a 0101 | capable of being split or cleft or divided in the direction of the grain; "fissile crystals"; "fissile wood" -01016806 00 a 01 nonfissile 0 001 ! 01016644 a 0101 | not fissile -01016874 00 a 02 fissionable 0 fissile 2 002 ;c 06090869 n 0000 ! 01017048 a 0101 | capable of undergoing nuclear fission; "a fissionable nucleous"; "fissionable material" -01017048 00 a 01 nonfissionable 0 002 ;c 06090869 n 0000 ! 01016874 a 0101 | not capable of undergoing fission -01017161 00 a 01 fit 1 007 ^ 01170243 a 0000 ^ 02273326 a 0000 ^ 02540578 a 0000 + 05153795 n 0101 ! 01017738 a 0101 & 01017439 a 0000 & 01017600 a 0000 | physically and mentally sound or healthy; "felt relaxed and fit after their holiday"; "keeps fit with diet and exercise" -01017439 00 s 02 able 0 able-bodied 0 001 & 01017161 a 0000 | having a strong healthy body; "an able seaman"; "every able-bodied young man served in the army" -01017600 00 s 02 conditioned 0 in_condition(p) 0 001 & 01017161 a 0000 | physically fit; "exercised daily to keep herself in condition" -01017738 00 a 01 unfit 1 019 ^ 02541302 a 0000 ^ 01172889 a 0000 ^ 02274253 a 0000 + 14547369 n 0101 + 05207130 n 0102 ! 01017161 a 0101 & 01018264 a 0000 & 01018359 a 0000 & 01018530 a 0000 & 01018667 a 0000 & 01018788 a 0000 & 01019000 a 0000 & 01019283 a 0000 & 01019450 a 0000 & 01019587 a 0000 & 01019713 a 0000 & 01020007 a 0000 & 01020117 a 0000 & 01020282 a 0000 | not in good physical or mental condition; out of condition; "fat and very unfit"; "certified as unfit for army service"; "drunk and unfit for service" -01018264 00 s 02 afflicted 0 impaired 0 001 & 01017738 a 0000 | mentally or physically unfit -01018359 00 s 02 apractic 0 apraxic 0 003 & 01017738 a 0000 + 14091126 n 0201 + 14091126 n 0101 | having uncoordinated muscular movements, symptomatic of a CNS disorder -01018530 00 s 05 bandy 0 bandy-legged 0 bowed 0 bowleg 0 bowlegged 0 001 & 01017738 a 0000 | have legs that curve outward at the knees -01018667 00 s 01 broken-backed 0 001 & 01017738 a 0000 | (of a horse) having bones of the back united by a bony growth -01018788 00 s 06 crippled 0 halt 0 halting 0 lame 1 gimpy 0 game 0 004 & 01017738 a 0000 + 14549937 n 0605 + 14549937 n 0504 + 14549937 n 0401 | disabled in the feet or legs; "a crippled soldier"; "a game leg" -01019000 00 s 07 crookback 0 crookbacked 0 humped 0 humpbacked 0 hunchbacked 0 gibbous 0 kyphotic 0 005 & 01017738 a 0000 + 14505069 n 0701 + 13894434 n 0606 + 13894434 n 0605 + 10192412 n 0103 | characteristic of or suffering from kyphosis, an abnormality of the vertebral column -01019283 00 s 02 disabled 0 handicapped 0 003 & 01017738 a 0000 + 07946288 n 0101 + 14548343 n 0101 | incapable of functioning as a consequence of injury or illness -01019450 00 s 01 gammy 0 003 & 01017738 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) sore or lame; "a gammy foot" -01019587 00 s 01 knock-kneed 0 001 & 01017738 a 0000 | having the knees abnormally close together and the ankles wide apart -01019713 00 s 03 soft 0 flabby 0 flaccid 0 005 & 01017738 a 0000 + 04939046 n 0303 + 05269401 n 0201 + 04939046 n 0201 + 14547369 n 0102 | out of condition; not strong or robust; incapable of exertion or endurance; "he was too soft for the army"; "flabby around the middle"; "flaccid cheeks" -01020007 00 s 01 spavined 0 001 & 01017738 a 0000 | (of horses) afflicted with a swelling of the hock-joint -01020117 00 s 04 dipped 0 lordotic 0 swayback 0 swaybacked 0 002 & 01017738 a 0000 + 14505215 n 0201 | having abnormal sagging of the spine (especially in horses) -01020282 00 s 02 maimed 0 mutilated 0 001 & 01017738 a 0000 | having a part of the body crippled or disabled -01020393 00 a 01 fit 2 006 ^ 00134701 a 0000 + 04716864 n 0101 ! 01021301 a 0101 & 01020709 a 0000 & 01020885 a 0000 & 01021120 a 0000 | meeting adequate standards for a purpose; "a fit subject for discussion"; "it is fit and proper that you be there"; "water fit to drink"; "fit for duty"; "do as you see fit to" -01020709 00 s 01 acceptable 0 004 & 01020393 a 0000 + 04792679 n 0101 + 02209936 v 0102 + 04792679 n 0102 | adequate for the purpose; "the water was acceptable for drinking" -01020885 00 s 02 suitable 0 suited 0 003 & 01020393 a 0000 + 04715487 n 0102 + 04715487 n 0101 | meant or adapted for an occasion or use; "a tractor suitable (or fit) for heavy duty"; "not an appropriate (or fit) time for flippancy" -01021120 00 s 01 worthy 0 001 & 01020393 a 0000 | having qualities or abilities that merit recognition in some way; "behavior worthy of reprobation"; "a fact worthy of attention" -01021301 00 a 01 unfit 2 004 + 04722373 n 0101 ! 01020393 a 0101 & 01021499 a 0000 & 01021607 a 0000 | below the required standards for a purpose; "an unfit parent"; "unfit for human consumption" -01021499 00 s 01 subhuman 0 001 & 01021301 a 0000 | unfit for human beings; "subhuman conditions of life" -01021607 00 s 01 unsuitable 0 003 & 01021301 a 0000 + 04721058 n 0102 + 04721058 n 0101 | not meant or adapted for a particular purpose; "a solvent unsuitable for use on wood surfaces" -01021794 00 a 01 flat 3 003 ;c 00903559 n 0000 + 04956110 n 0101 ! 01021923 a 0101 | lacking contrast or shading between tones -01021923 00 a 01 contrasty 0 003 ;c 00903559 n 0000 + 05126362 n 0101 ! 01021794 a 0101 | having sharp differences between black and white -01022064 00 a 02 flexible 1 flexile 0 011 ^ 00843146 a 0000 + 01280014 v 0101 + 05022457 n 0102 + 05022457 n 0101 ! 01023289 a 0101 & 01022367 a 0000 & 01022657 a 0000 & 01022785 a 0000 & 01022926 a 0000 & 01023010 a 0000 & 01023128 a 0000 | able to flex; able to bend easily; "slim flexible birches" -01022367 00 s 04 bendable 0 pliable 0 pliant 0 waxy 0 007 & 01022064 a 0000 + 05023022 n 0302 + 05023022 n 0301 + 05022709 n 0202 + 02035919 v 0101 + 01280014 v 0102 + 05022709 n 0101 | capable of being bent or flexed or twisted without breaking; "a flexible wire"; "a pliant young tree" -01022657 00 s 01 double-jointed 0 001 & 01022064 a 0000 | having unusually flexible joints especially of the limbs or fingers -01022785 00 s 02 limber 0 supple 1 002 & 01022064 a 0000 + 05023022 n 0203 | (used of persons' bodies) capable of moving or bending freely -01022926 00 s 01 limber 1 001 & 01022064 a 0000 | (used of artifacts) easily bent -01023010 00 s 02 spinnable 0 spinnbar 0 002 & 01022064 a 0000 + 04720685 n 0101 | capable of being spun into fibres -01023128 00 s 01 stretched 0 001 & 01022064 a 0000 | (of muscles) relieved of stiffness by stretching; "well-stretched muscles are less susceptible to injury" -01023289 00 a 01 inflexible 1 007 ^ 00845528 a 0000 + 05024093 n 0102 + 05024093 n 0101 ! 01022064 a 0101 & 01023533 a 0000 & 01023706 a 0000 & 01024002 a 0000 | resistant to being bent; "an inflexible iron bar"; "an inflexible knife blade"; -01023533 00 s 01 muscle-bound 0 001 & 01023289 a 0000 | having stiff muscles as the result of excessive exercise; "he arrived accompanied by two muscle-bound body guards" -01023706 00 s 02 rigid 0 stiff 1 005 & 01023289 a 0000 + 05004895 n 0201 + 05023591 n 0201 + 05023741 n 0102 + 05023741 n 0101 | incapable of or resistant to bending; "a rigid strip of metal"; "a table made of rigid plastic"; "a palace guardsman stiff as a poker"; "stiff hair"; "a stiff neck" -01024002 00 s 01 semirigid 0 001 & 01023289 a 0000 | not fully rigid -01024073 00 a 01 flexible 2 004 + 04659287 n 0102 ! 01024597 a 0101 & 01024228 a 0000 & 01024400 a 0000 | capable of being changed; "flexible schedules" -01024228 00 s 02 limber 0 supple 0 002 & 01024073 a 0000 + 04659730 n 0204 | (used of e.g. personality traits) readily adaptable; "a supple mind"; "a limber imagination" -01024400 00 s 02 negotiable 0 on_the_table 0 002 & 01024073 a 0000 + 00761713 v 0102 | able to be negotiated or arranged by compromise; "negotiable demands"; "the proposal is still on the table" -01024597 00 a 01 inflexible 2 007 + 04660261 n 0101 ! 01024073 a 0101 & 01024812 a 0000 & 01025212 a 0000 & 01025397 a 0000 & 01025610 a 0000 & 01025732 a 0000 | incapable of change; "a man of inflexible purpose" -01024812 00 s 04 adamant 0 adamantine 0 inexorable 0 intransigent 0 005 & 01024597 a 0000 + 04863497 n 0401 + 04863497 n 0402 + 04831437 n 0303 + 04863793 n 0101 | impervious to pleas, persuasion, requests, reason; "he is adamant in his refusal to change his mind"; "Cynthia was inexorable; she would have none of him"- W.Churchill; "an intransigent conservative opposed to every liberal tendency" -01025212 00 s 02 die-hard(a) 0 rock-ribbed 0 001 & 01024597 a 0000 | tradition-bound and obstinately opinionated; "an inflexible (or die-hard) conservative"; "rock-ribbed republican" -01025397 00 s 03 fossilized 0 fossilised 0 ossified 0 001 & 01024597 a 0000 | set in a rigidly conventional pattern of behavior, habits, or beliefs; "obsolete fossilized ways"; "an ossified bureaucratic system" -01025610 00 s 01 hard-core 0 001 & 01024597 a 0000 | stubbornly resistant to change or improvement; "hard-core addicts" -01025732 00 s 02 ironclad 0 brassbound 0 001 & 01024597 a 0000 | inflexibly entrenched and unchangeable; "brassbound traditions"; "brassbound party loyalists"; "an ironclad rule" -01025913 00 a 03 uncompromising 0 sturdy 0 inflexible 4 004 + 04660261 n 0301 + 04862592 n 0201 ! 01026262 a 0101 & 01026150 a 0000 | not making concessions; "took an uncompromising stance in the peace talks"; "uncompromising honesty" -01026150 00 s 02 hard-line 0 hardline 0 001 & 01025913 a 0000 | firm and uncompromising; "a hard-line policy" -01026262 00 a 03 compromising 0 conciliatory 4 flexible 4 005 + 04659287 n 0302 + 04905188 n 0303 + 00764902 v 0204 ! 01025913 a 0101 & 01026552 a 0000 | making or willing to make concessions; "loneliness tore through him...whenever he thought of...even the compromising Louis du Tillet" -01026552 00 s 01 yielding 0 001 & 01026262 a 0000 | tending to give in or surrender or agree; "too yielding to make a stand against any encroachments"- V.I.Parrington -01026721 00 a 01 rigid 0 003 ;c 06096913 n 0000 ! 01027076 a 0101 & 01026911 a 0000 | designating an airship or dirigible having a form maintained by a stiff unyielding frame or structure -01026911 00 s 01 semirigid 0 002 & 01026721 a 0000 ;c 06096913 n 0000 | having a form maintained by a rigid internal structure as well as by internal gas pressure -01027076 00 a 01 nonrigid 0 002 ;c 06096913 n 0000 ! 01026721 a 0101 | designating an airship having a shape maintained only by internal gas pressure and without a supporting structure -01027263 00 a 01 adaptable 0 011 + 00150287 v 0103 + 00299580 v 0101 + 04659090 n 0101 ! 01029044 a 0101 & 01027686 a 0000 & 01027832 a 0000 & 01027988 a 0000 & 01028163 a 0000 & 01028467 a 0000 & 01028623 a 0000 & 01028796 a 0000 | capable of adapting (of becoming or being made suitable) to a particular situation or use; "to succeed one must be adaptable"; "the frame was adaptable to cloth bolts of different widths" -01027686 00 s 01 adjustable 0 002 & 01027263 a 0000 + 00298067 v 0101 | capable of being changed so as to match or fit; "adjustable seat belts" -01027832 00 s 01 all-mains(a) 0 002 & 01027263 a 0000 ;r 08860123 n 0000 | used of a radio receiver that is adaptable to all voltages; "an all-mains set" -01027988 00 s 01 convertible 0 002 & 01027263 a 0000 + 00115157 v 0101 | designed to be changed from one use or form to another; "a convertible sofa"; "a convertible coupe" -01028163 00 s 04 elastic 0 flexible 0 pliable 0 pliant 0 006 & 01027263 a 0000 + 04659730 n 0403 + 04659730 n 0402 + 04659730 n 0301 + 04659287 n 0202 + 04659287 n 0201 | able to adjust readily to different conditions; "an adaptable person"; "a flexible personality"; "an elastic clause in a contract" -01028467 00 s 01 filmable 0 002 & 01027263 a 0000 ;c 06364641 n 0000 | (used of a story or literary work) capable of being adapted to motion picture form -01028623 00 s 01 universal 0 001 & 01027263 a 0000 | adapted to various purposes, sizes, forms, operations; "universal wrench", "universal chuck"; "universal screwdriver" -01028796 00 s 01 variable 0 003 & 01027263 a 0000 + 04735233 n 0102 + 04735233 n 0101 | (used of a device) designed so that a property (as e.g. light) can be varied; "a variable capacitor"; "variable filters in front of the mercury xenon lights" -01029044 00 a 01 unadaptable 0 003 + 04660080 n 0101 ! 01027263 a 0101 & 01029151 a 0000 | not adaptable -01029151 00 s 03 inflexible 0 rigid 0 unbending 0 003 & 01029044 a 0000 + 04660261 n 0203 + 04660261 n 0101 | incapable of adapting or changing to meet circumstances; "a rigid disciplinarian"; "an inflexible law"; "an unbending will to dominate" -01029399 00 a 01 campylotropous 0 002 ;c 00017222 n 0000 ! 01029563 a 0101 | (of a plant ovule) curved with the micropyle near the base almost touching its stalk -01029563 00 a 01 orthotropous 0 002 ;c 00017222 n 0000 ! 01029399 a 0101 | (of a plant ovule) completely straight with the micropyle at the apex -01029710 00 a 02 anatropous 0 inverted 4 002 ;c 00017222 n 0000 ! 01029873 a 0101 | (of a plant ovule) completely inverted; turned back 180 degrees on its stalk -01029873 00 a 01 amphitropous 0 002 ;c 00017222 n 0000 ! 01029710 a 0101 | (of a plant ovule) partly inverted; turned back 90 degrees on its stalk -01030022 00 a 01 curly 0 009 = 05074374 n 0000 + 05257737 n 0102 + 05074374 n 0101 ! 01030826 a 0101 & 01030289 a 0000 & 01030372 a 0000 & 01030525 a 0000 & 01030605 a 0000 & 01030691 a 0000 | (of hair) having curls or waves; "they envied her naturally curly hair" -01030289 00 s 02 curled 0 curling 0 001 & 01030022 a 0000 | of hair having curls -01030372 00 s 05 crisp 0 frizzly 0 frizzy 0 kinky 0 nappy 0 003 & 01030022 a 0000 + 04947087 n 0501 + 14575700 n 0301 | (of hair) in small tight curls -01030525 00 s 01 permed 0 001 & 01030022 a 0000 | styled with permanent waves -01030605 00 s 01 ringleted 0 001 & 01030022 a 0000 | (of hair) shaped into ringlets -01030691 00 s 01 wavy 0 003 & 01030022 a 0000 + 05074374 n 0102 + 05259240 n 0101 | (of hair) having waves; "she had long wavy hair" -01030826 00 a 01 straight 3 005 = 05074374 n 0000 + 05074559 n 0101 ! 01030022 a 0101 & 01031038 a 0000 & 01031115 a 0000 | (of hair) having no waves or curls; "her naturally straight hair hung long and silky" -01031038 00 s 01 uncurled 0 001 & 01030826 a 0000 | not having been curled -01031115 00 s 01 unpermed 0 001 & 01030826 a 0000 | not having had a permanent wave; "smooth glossy unpermed hair" -01031232 00 a 01 footed 0 005 ! 01031797 a 0101 & 01031405 a 0000 & 01031503 a 0000 & 01031602 a 0000 & 01031701 a 0000 | having feet; "footed creatures"; "a footed sofa" -01031405 00 s 01 flat-footed 0 001 & 01031232 a 0000 | with feet flat on the ground; not tiptoe -01031503 00 s 01 pedate 0 002 & 01031232 a 0000 ;c 06083243 n 0000 | having or resembling a foot -01031602 00 s 02 swift-footed 0 fast-footed 0 001 & 01031232 a 0000 | having rapidly moving feet -01031701 00 s 02 web-footed 0 web-toed 0 001 & 01031232 a 0000 | having feet with webbed toes -01031797 00 a 01 footless 0 002 ! 01031232 a 0101 & 01031908 a 0000 | having no feet or analogous appendages -01031908 00 s 02 apodal 0 apodous 0 001 & 01031797 a 0000 | (of snakes and eels) naturally footless; "eels are apodal" -01032029 00 a 01 toed 0 004 ! 01032531 a 0101 & 01032226 a 0000 & 01032339 a 0000 & 01032451 a 0000 | having a toe or toes of a specified kind; often used in combination; "long-toed; "five-toed" -01032226 00 s 02 pointy-toed 0 pointed-toe 0 001 & 01032029 a 0000 | having a pointed toe; "pointy-toed shoes" -01032339 00 s 02 square-toed 0 squared-toe 0 001 & 01032029 a 0000 | having a square toe; "square-toed shoes" -01032451 00 s 02 two-toed 0 two-toe 0 001 & 01032029 a 0000 | having two toes -01032531 00 a 01 toeless 0 001 ! 01032029 a 0101 | lacking a toe or toes; "a toeless shoe" -01032624 00 a 01 pigeon-toed 0 001 ! 01032710 a 0101 | having feet that turn inward -01032710 00 a 02 splayfooted 0 splayfoot 0 003 ! 01032624 a 0101 & 01032845 a 0000 & 01032978 a 0000 | having feet that turn outward -01032845 00 s 01 flat-footed 0 001 & 01032710 a 0000 | having broad flat feet that usually turn outward; "a slow flat-footed walk" -01032978 00 s 01 splay 0 001 & 01032710 a 0000 | turned outward in an ungainly manner; "splay knees" -01033081 00 a 01 fore(a) 0 005 ^ 00203237 a 0000 ^ 00198147 a 0000 ;c 00314469 n 0000 ! 01033371 a 0101 & 01033249 a 0000 | situated at or toward the bow of a vessel -01033249 00 s 01 foremost 0 001 & 01033081 a 0000 | situated closest to the bow; "the foremost compartment of the ship" -01033371 00 a 01 aft(a) 0 004 ^ 00197576 a 0000 ! 01033081 a 0101 & 01033542 a 0000 & 01033616 a 0000 | (nautical, aeronautical) situated at or toward the stern or tail -01033542 00 s 01 after(a) 0 001 & 01033371 a 0000 | located farther aft -01033616 00 s 01 aftermost 0 001 & 01033371 a 0000 | located closest to the stern or tail -01033708 00 a 02 forehand(a) 0 forehanded 0 001 ! 01033840 a 0101 | (of racket strokes) made with palm facing direction of stroke -01033840 00 a 02 backhand(a) 0 backhanded 0 001 ! 01033708 a 0101 | (of racket strokes) made across the body with back of hand facing direction of stroke -01033996 00 a 01 native 3 003 + 04799881 n 0101 ! 01034296 a 0101 & 01034153 a 0000 | belonging to one by birth; "my native land"; "one's native language" -01034153 00 s 03 connatural 0 inborn 0 inbred 0 001 & 01033996 a 0000 | normally existing at birth; "mankind's connatural sense of the good" -01034296 00 a 02 adopted 0 adoptive 4 002 + 02346724 v 0201 ! 01033996 a 0101 | acquired as your own by free choice; "my adopted state"; "an adoptive country" -01034457 00 a 02 foreign 1 strange 1 011 = 04799344 n 0000 = 04797482 n 0000 ! 01036083 a 0101 & 01034858 a 0000 & 01035007 a 0000 & 01035277 a 0000 & 01035422 a 0000 & 01035559 a 0000 & 01035725 a 0000 & 01035858 a 0000 & 01035976 a 0000 | relating to or originating in or characteristic of another place or part of the world; "foreign nations"; "a foreign accent"; "on business in a foreign city" -01034858 00 s 01 adventive 0 001 & 01034457 a 0000 | not native and not fully established; locally or temporarily naturalized; "an adventive weed" -01035007 00 s 02 alien 0 exotic 0 005 & 01034457 a 0000 + 04799612 n 0202 + 09484465 n 0103 + 10103485 n 0102 + 10661002 n 0102 | being or from or characteristic of another place or part of the world; "alien customs"; "exotic plants in a greenhouse"; "exotic cuisine" -01035277 00 s 01 nonnative 2 001 & 01034457 a 0000 | of plants or animals originating in a part of the world other than where they are growing -01035422 00 s 02 established 0 naturalized 2 001 & 01034457 a 0000 | introduced from another region and persisting without cultivation -01035559 00 s 02 foreign-born 0 nonnative 1 001 & 01034457 a 0000 | of persons born in another area or country than that lived in; "our large nonnative population" -01035725 00 s 01 imported 0 001 & 01034457 a 0000 | used of especially merchandise brought from a foreign source; "imported wines" -01035858 00 s 01 tramontane 0 001 & 01034457 a 0000 | being or coming from another country; "tramontane influences" -01035976 00 s 02 unnaturalized 0 unnaturalised 0 001 & 01034457 a 0000 | not having acquired citizenship -01036083 00 a 01 native 1 007 + 09620794 n 0101 + 04799881 n 0101 ! 01034457 a 0101 & 01036383 a 0000 & 01036754 a 0000 & 01036874 a 0000 & 01037022 a 0000 | characteristic of or existing by virtue of geographic origin; "the native North American sugar maple"; "many native artists studied abroad" -01036383 00 s 05 autochthonal 0 autochthonic 0 autochthonous 0 endemic 0 indigenous 0 003 & 01036083 a 0000 + 04800152 n 0501 + 04800152 n 0202 | originating where it is found; "the autochthonal fauna of Australia includes the kangaroo"; "autochthonous rocks and people and folktales"; "endemic folkways"; "the Ainu are indigenous to the northernmost islands of Japan" -01036754 00 s 01 domestic 0 001 & 01036083 a 0000 | produced in a particular country; "domestic wine"; "domestic oil" -01036874 00 s 01 homegrown 0 001 & 01036083 a 0000 | grown or originating in a particular place; "stands selling homegrown fruits and vegetables" -01037022 00 s 01 native-born 0 001 & 01036083 a 0000 | belonging to a place by birth; "a native-born Scot"; "a native Scot" -01037148 00 a 02 native 2 aboriginal 0 004 + 09620794 n 0205 + 09620794 n 0204 + 04799881 n 0101 ! 01037405 a 0101 | characteristic of or relating to people inhabiting a region from the beginning; "native Americans"; "the aboriginal peoples of Australia" -01037405 00 a 01 nonnative 0 001 ! 01037148 a 0101 | not being or composed of aborigines; "the nonnative population of South Africa" -01037540 00 a 01 foreign 2 004 ^ 01568375 a 0000 ! 01038102 a 0101 & 01037763 a 0000 & 01037885 a 0000 | of concern to or concerning the affairs of other nations (other than your own); "foreign trade"; "a foreign office" -01037763 00 s 02 abroad 0 overseas 0 001 & 01037540 a 0000 | in a foreign country; "markets abroad"; "overseas markets" -01037885 00 s 03 external 0 international 0 outside(a) 0 002 & 01037540 a 0000 + 05126611 n 0201 | from or between other countries; "external commerce"; "international trade"; "developing nations need outside help" -01038102 00 a 01 domestic 0 004 ^ 01567862 a 0000 ! 01037540 a 0101 & 01038332 a 0000 & 01038580 a 0000 | of concern to or concerning the internal affairs of a nation; "domestic issues such as tax rate and highway construction" -01038332 00 s 04 home(a) 0 interior(a) 0 internal 0 national 0 001 & 01038102 a 0000 | inside the country; "the British Home Office has broader responsibilities than the United States Department of the Interior"; "the nation's internal politics" -01038580 00 s 01 municipal 0 002 & 01038102 a 0000 + 08626283 n 0101 | of or relating to the government of a municipality; "international law...only authorizes a belligerent to punish a spy under its municipal law"- J.L.kuntz -01038808 00 a 01 domestic 1 007 = 05209113 n 0000 ! 01039843 a 0101 & 01039203 a 0000 & 01039366 a 0000 & 01039460 a 0000 & 01039556 a 0000 & 01039687 a 0000 | of or involving the home or family; "domestic worries"; "domestic happiness"; "they share the domestic chores"; "everything sounded very peaceful and domestic"; "an author of blood-and-thunder novels yet quite domestic in his taste" -01039203 00 s 01 domesticated 0 001 & 01038808 a 0000 | accustomed to home life; "some men think it unmanly to be domesticated; others find gratification in it" -01039366 00 s 01 home-loving 0 001 & 01038808 a 0000 | devoted to home duties and pleasures -01039460 00 s 01 home-style 0 001 & 01038808 a 0000 | as if in the home; "home-style cooking" -01039556 00 s 01 housewifely 0 002 & 01038808 a 0000 + 10189776 n 0101 | related or suited to a housewife; "housewifely virtues" -01039687 00 s 01 husbandly 0 002 & 01038808 a 0000 + 10193967 n 0101 | related to or suited to a husband; "assumed husbandly duties like mowing the lawn" -01039843 00 a 01 undomestic 0 003 = 05209113 n 0000 ! 01038808 a 0101 & 01040087 a 0000 | not domestic or related to home; "had established herself in her career at the price of being so undomestic she didn't even know how to light the oven" -01040087 00 s 01 undomesticated 0 001 & 01039843 a 0000 | unaccustomed to home life; "after years of marriage he remained essentially undomesticated" -01040239 00 a 01 forgettable 0 002 ! 01040410 a 0101 & 01040331 a 0000 | easily forgotten -01040331 00 s 01 unmemorable 0 001 & 01040239 a 0000 | not worth remembering -01040410 00 a 01 unforgettable 0 004 ! 01040239 a 0101 & 01040544 a 0000 & 01040752 a 0000 & 01040825 a 0000 | impossible to forget -01040544 00 s 02 haunting 0 persistent 0 001 & 01040410 a 0000 | continually recurring to the mind; "haunting memories"; "the cathedral organ and the distant voices have a haunting beauty"- Claudia Cassidy -01040752 00 s 01 memorable 2 001 & 01040410 a 0000 | worth remembering -01040825 00 s 01 red-letter 0 001 & 01040410 a 0000 | memorable for being a special occasion; "on red-letter nights a large gathering greeted the celebrity" -01040984 00 a 01 forgiving 0 004 + 04829764 n 0101 ! 01041481 a 0101 & 01041209 a 0000 & 01041408 a 0000 | inclined or able to forgive and show mercy; "a kindly forgiving nature"; "a forgiving embrace to the naughty child" -01041209 00 s 02 kind 0 tolerant 0 003 & 01040984 a 0000 + 00668099 v 0207 + 04829764 n 0102 | tolerant and forgiving under provocation; "our neighbor was very kind about the window our son broke" -01041408 00 s 01 unvindictive 0 001 & 01040984 a 0000 | not vindictive -01041481 00 a 01 unforgiving 0 002 ! 01040984 a 0101 & 01041634 a 0000 | unwilling or unable to forgive or show mercy; "a surly unforgiving old woman" -01041634 00 s 03 revengeful 0 vindictive 0 vengeful 0 003 & 01041481 a 0000 + 07550891 n 0302 + 07550891 n 0201 | disposed to seek revenge or intended for revenge; "more vindictive than jealous love"- Shakespeare; "punishments...essentially vindictive in their nature"- M.R.Cohen -01041916 00 a 01 formal 1 017 ^ 00605516 a 0000 ^ 01045216 a 0000 = 04911420 n 0000 + 04911420 n 0102 + 01204055 n 0101 ! 01044240 a 0101 & 01042491 a 0000 & 01042703 a 0000 & 01042921 a 0000 & 01043070 a 0000 & 01043226 a 0000 & 01043374 a 0000 & 01043505 a 0000 & 01043619 a 0000 & 01043746 a 0000 & 01043924 a 0000 & 01044118 a 0000 | being in accord with established forms and conventions and requirements (as e.g. of formal dress); "pay one's formal respects"; "formal dress"; "a formal ball"; "the requirement was only formal and often ignored"; "a formal education" -01042491 00 s 01 ceremonial 0 005 & 01041916 a 0000 + 07450842 n 0102 + 07450842 n 0101 + 01026897 n 0101 + 01027379 n 0101 | marked by pomp or ceremony or formality; "a ceremonial occasion"; "ceremonial garb" -01042703 00 s 02 ceremonious 0 conventional 0 004 & 01041916 a 0000 + 01026897 n 0101 + 01027379 n 0101 + 04911777 n 0101 | rigidly formal or bound by convention; "their ceremonious greetings did not seem heartfelt" -01042921 00 s 02 dress 1 full-dress 1 001 & 01041916 a 0000 | (of an occasion) requiring formal clothes; "a dress dinner"; "a full-dress ceremony" -01043070 00 s 01 form-only(a) 0 001 & 01041916 a 0000 | being a matter of form only; lacking substance; "a form-only requirement that is usually ignored" -01043226 00 s 02 full-dress 2 dress 2 001 & 01041916 a 0000 | suitable for formal occasions; "formal wear"; "a full-dress uniform"; "dress shoes" -01043374 00 s 02 nominal 0 titular 0 001 & 01041916 a 0000 | existing in name only; "the nominal (or titular) head of his party" -01043505 00 s 02 positive 0 prescribed 0 001 & 01041916 a 0000 | formally laid down or imposed; "positive laws" -01043619 00 s 02 pro_forma 0 perfunctory 0 001 & 01041916 a 0000 | as a formality only; "a one-candidate pro forma election" -01043746 00 s 03 semiformal 0 semi-formal 0 black-tie 0 001 & 01041916 a 0000 | moderately formal; requiring a dinner jacket; "he wore semiformal attire"; "a black-tie dinner" -01043924 00 s 03 starchy 0 stiff 0 buckram 0 002 & 01041916 a 0000 + 04815624 n 0204 | rigidly formal; "a starchy manner"; "the letter was stiff and formal"; "his prose has a buckram quality" -01044118 00 s 01 white-tie 0 001 & 01041916 a 0000 | requiring white ties and tailcoats for men; "a white-tie occasion" -01044240 00 a 01 informal 1 008 ^ 01045711 a 0000 = 04911420 n 0000 + 04786994 n 0102 ! 01041916 a 0101 & 01044557 a 0000 & 01044730 a 0000 & 01044922 a 0000 & 01045067 a 0000 | not formal; "conservative people unaccustomed to informal dress"; "an informal free-and-easy manner"; "an informal gathering of friends" -01044557 00 s 03 casual 1 everyday 0 daily 0 002 & 01044240 a 0000 + 04912240 n 0101 | appropriate for ordinary or routine occasions; "casual clothes"; "everyday clothes" -01044730 00 s 02 free-and-easy 0 casual 2 002 & 01044240 a 0000 + 04912240 n 0201 | natural and unstudied; "using their Christian names in a casual way"; "lectured in a free-and-easy style" -01044922 00 s 01 folksy 0 002 & 01044240 a 0000 + 07947255 n 0102 | very informal and familiar; "a folksy radio commentator"; "a folksy style" -01045067 00 s 02 unceremonious 0 unceremonial 0 002 & 01044240 a 0000 + 04912610 n 0101 | without ceremony or formality; "an unceremonious speech" -01045216 00 a 01 formal 2 005 ^ 01041916 a 0000 ^ 02016535 a 0000 = 04911420 n 0000 ! 01045711 a 0101 & 01045518 a 0000 | (of spoken and written language) adhering to traditional standards of correctness and without casual, contracted, and colloquial forms; "the paper was written in formal English" -01045518 00 s 01 literary 0 001 & 01045216 a 0000 | appropriate to literature rather than everyday speech or writing; "when trying to impress someone she spoke in an affected literary style" -01045711 00 a 01 informal 2 010 ^ 01044240 a 0000 ^ 02018486 a 0000 = 04911420 n 0000 ! 01045216 a 0101 & 01045963 a 0000 & 01046226 a 0000 & 01046553 a 0000 & 01046784 a 0000 & 01046994 a 0000 & 01047144 a 0000 | used of spoken and written language -01045963 00 s 02 colloquial 1 conversational 0 002 & 01045711 a 0000 + 07133701 n 0201 | characteristic of informal spoken language or conversation; "wrote her letters in a colloquial style"; "the broken syntax and casual enunciation of conversational English" -01046226 00 s 03 common 0 vernacular 0 vulgar 1 003 & 01045711 a 0000 + 07157123 n 0201 + 04795545 n 0101 | being or characteristic of or appropriate to everyday language; "common parlance"; "a vernacular term"; "vernacular speakers"; "the vulgar tongue of the masses"; "the technical and vulgar names for an animal species" -01046553 00 s 02 epistolary 0 epistolatory 0 002 & 01045711 a 0000 + 06626183 n 0101 | written in the form of or carried on by letters or correspondence; "an endless sequence of epistolary love affairs"; "the epistolatory novel" -01046784 00 s 01 slangy 0 004 & 01045711 a 0000 + 07159467 n 0101 + 07157273 n 0101 + 04912506 n 0101 | constituting or expressed in slang or given to the use of slang; "a slangy expression"; "slangy speech" -01046994 00 s 01 subliterary 0 001 & 01045711 a 0000 | not written as or intended to be literature; "subliterary works such as letters and diaries" -01047144 00 s 02 unliterary 0 nonliterary 0 001 & 01045711 a 0000 | marked by lack of affectation or pedantry; "her talk was very unliterary"- W.D.Howells -01047301 00 a 01 former(a) 0 001 ! 01047561 a 0101 | referring to the first of two things or persons mentioned (or the earlier one or ones of several); "the novel was made into a film in 1943 and again in 1967; I prefer the former version to the latter one" -01047561 00 a 01 latter(a) 0 002 ! 01047301 a 0101 & 01047752 a 0000 | referring to the second of two things or persons mentioned (or the last one or ones of several); "in the latter case" -01047752 00 s 01 last_mentioned 0 001 & 01047561 a 0000 | the one most recently mentioned; "the last mentioned pianist" -01047874 00 a 01 fortunate 0 011 ^ 01468097 a 0000 ^ 01864123 a 0000 ^ 02331262 a 0000 ! 01049462 a 0101 & 01048202 a 0000 & 01048406 a 0000 & 01048587 a 0000 & 01048762 a 0000 & 01048976 a 0000 & 01049210 a 0000 & 01049352 a 0000 | having unexpected good fortune; "other, less fortunate, children died"; "a fortunate choice" -01048202 00 s 01 better_off(p) 0 001 & 01047874 a 0000 | in a more fortunate or prosperous condition; "she would have been better off if she had stuck with teaching"; "is better off than his classmate" -01048406 00 s 02 felicitous 0 happy 0 004 & 01047874 a 0000 + 13987423 n 0201 + 04716210 n 0102 + 13987423 n 0102 | marked by good fortune; "a felicitous life"; "a happy outcome" -01048587 00 s 01 fortuitous 0 002 & 01047874 a 0000 + 04758980 n 0101 | occurring by happy chance; "profits were enhanced by a fortuitous drop in the cost of raw materials" -01048762 00 s 02 good 0 well(p) 0 001 & 01047874 a 0000 | resulting favorably; "it's a good thing that I wasn't there"; "it is good that you stayed"; "it is well that no one saw you"; "all's well that ends well" -01048976 00 s 03 heaven-sent 0 providential 0 miraculous 0 002 & 01047874 a 0000 + 07288801 n 0301 | peculiarly fortunate or appropriate; as if by divine intervention; "a heaven-sent rain saved the crops"; "a providential recovery" -01049210 00 s 01 lucky 0 003 & 01047874 a 0000 + 11418460 n 0101 + 14473655 n 0102 | occurring by chance; "a lucky escape"; "a lucky guess" -01049352 00 s 01 well-off 0 001 & 01047874 a 0000 | fortunately situated; "doesn't know when he's well-off" -01049462 00 a 01 unfortunate 0 013 ^ 01864471 a 0000 ^ 01468682 a 0000 ^ 02333453 a 0000 + 09630641 n 0101 ! 01047874 a 0101 & 01049941 a 0000 & 01050088 a 0000 & 01050603 a 0000 & 01050890 a 0000 & 01051410 a 0000 & 01051718 a 0000 & 01051814 a 0000 & 01052038 a 0000 | not favored by fortune; marked or accompanied by or resulting in ill fortune; "an unfortunate turn of events"; "an unfortunate decision"; "unfortunate investments"; "an unfortunate night for all concerned" -01049941 00 s 01 abject 0 001 & 01049462 a 0000 | most unfortunate or miserable; "the most abject slaves joined in the revolt"; "abject poverty" -01050088 00 s 05 black 0 calamitous 0 disastrous 0 fatal 0 fateful 0 003 & 01049462 a 0000 + 07314838 n 0303 + 07314838 n 0201 | (of events) having extremely unfortunate or dire consequences; bringing ruin; "the stock market crashed on Black Friday"; "a calamitous defeat"; "the battle was a disastrous end to a disastrous campaign"; "such doctrines, if true, would be absolutely fatal to my theory"- Charles Darwin; "it is fatal to enter any war without the will to win it"- Douglas MacArthur; "a fateful error" -01050603 00 s 03 dispossessed 0 homeless 0 roofless 0 004 & 01049462 a 0000 + 10182190 n 0201 + 07948314 n 0201 + 13943053 n 0201 | physically or spiritually homeless or deprived of security; "made a living out of shepherding dispossed people from one country to another"- James Stern -01050890 00 s 09 hapless 0 miserable 0 misfortunate 0 pathetic 0 piteous 0 pitiable 0 pitiful 0 poor 0 wretched 0 006 & 01049462 a 0000 + 14448333 n 0902 + 07553964 n 0502 + 07305098 n 0501 + 07553964 n 0404 + 14448333 n 0203 | deserving or inciting pity; "a hapless victim"; "miserable victims of war"; "the shabby room struck her as extraordinarily pathetic"- Galsworthy; "piteous appeals for help"; "pitiable homeless children"; "a pitiful fate"; "Oh, you poor thing"; "his poor distorted limbs"; "a wretched life" -01051410 00 s 05 doomed 0 ill-fated 0 ill-omened 0 ill-starred 0 unlucky 0 001 & 01049462 a 0000 | marked by or promising bad fortune; "their business venture was doomed from the start"; "an ill-fated business venture"; "an ill-starred romance"; "the unlucky prisoner was again put in irons"- W.H.Prescott -01051718 00 s 01 downtrodden 0 001 & 01049462 a 0000 | abused or oppressed by people in power -01051814 00 s 02 infelicitous 0 unhappy 0 001 & 01049462 a 0000 | marked by or producing unhappiness; "infelicitous circumstances"; "unhappy caravans, straggling afoot through swamps and canebrakes"- American Guide Series -01052038 00 s 02 regrettable 0 too_bad 0 001 & 01049462 a 0000 | deserving regret; "regrettable remarks"; "it's regrettable that she didn't go to college"; "it's too bad he had no feeling himself for church" -01052248 00 a 01 fragrant 0 007 + 05714466 n 0102 + 04980463 n 0102 ! 01053144 a 0101 & 01052428 a 0000 & 01052611 a 0000 & 01052888 a 0000 & 01053046 a 0000 | pleasant-smelling -01052428 00 s 02 aromatic 0 redolent 0 003 & 01052248 a 0000 + 04980463 n 0204 + 05714466 n 0101 | having a strong pleasant odor; "the pine woods were more redolent"- Jean Stafford -01052611 00 s 07 odoriferous 1 odorous 1 perfumed 1 scented 1 sweet 0 sweet-scented 0 sweet-smelling 0 002 & 01052248 a 0000 + 04980463 n 0505 | having a natural fragrance; "odoriferous spices"; "the odorous air of the orchard"; "the perfumed air of June"; "scented flowers" -01052888 00 s 02 perfumed 2 scented 2 001 & 01052248 a 0000 | filled or impregnated with perfume; "perfumed boudoir"; "perfumed stationery"; "scented soap" -01053046 00 s 01 musky 0 002 & 01052248 a 0000 + 05714332 n 0101 | resembling the smell of musk -01053144 00 a 05 malodorous 0 malodourous 0 unpleasant-smelling 0 ill-smelling 0 stinky 0 015 + 04980656 n 0502 + 05714894 n 0504 + 04980656 n 0101 ! 01052248 a 0101 & 01053539 a 0000 & 01053634 a 0000 & 01053915 a 0000 & 01054047 a 0000 & 01054204 a 0000 & 01054367 a 0000 & 01054504 a 0000 & 01054630 a 0000 & 01054741 a 0000 & 01054832 a 0000 & 01054922 a 0000 | having an unpleasant smell -01053539 00 s 01 bilgy 0 002 & 01053144 a 0000 + 15059797 n 0101 | smelling like bilge water -01053634 00 s 09 fetid 0 foetid 0 foul 0 foul-smelling 0 funky 0 noisome 0 smelly 0 stinking 0 ill-scented 0 005 & 01053144 a 0000 + 04980008 n 0702 + 04790774 n 0602 + 04980656 n 0303 + 04980656 n 0105 | offensively malodorous; "a foul odor"; "the kitchen smelled really funky" -01053915 00 s 03 fusty 0 musty 0 frowsty 0 003 & 01053144 a 0000 + 04928194 n 0202 + 04928194 n 0201 | stale and unclean smelling -01054047 00 s 03 gamey 0 gamy 0 high 0 003 & 01053144 a 0000 + 07650449 n 0201 + 07650449 n 0101 | (used of the smell of meat) smelling spoiled or tainted -01054204 00 s 02 miasmic 0 mephitic 0 004 & 01053144 a 0000 + 15035975 n 0201 + 05714894 n 0208 + 14526032 n 0101 | of noxious stench from atmospheric pollution -01054367 00 s 01 niffy 0 004 & 01053144 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 05715150 n 0101 | (British informal) malodorous -01054504 00 s 02 odoriferous 2 odorous 2 001 & 01053144 a 0000 | emitting an odor; "odorous salt pork and weevily hardtack" -01054630 00 s 01 putrid-smelling 0 001 & 01053144 a 0000 | having the putrid odor of decaying organic matter -01054741 00 s 01 rank-smelling 0 001 & 01053144 a 0000 | having an offensive rancid odor -01054832 00 s 01 reeking 0 001 & 01053144 a 0000 | giving off a strong unpleasant smell -01054922 00 s 02 sour 0 rancid 0 004 & 01053144 a 0000 + 04992431 n 0201 + 14561839 n 0201 + 04993882 n 0101 | smelling of fermentation or staleness -01055073 00 a 01 odorous 0 026 = 04980008 n 0000 + 04980008 n 0104 ! 01057775 a 0101 & 01055682 a 0000 & 01055767 a 0000 & 01055846 a 0000 & 01055923 a 0000 & 01056001 a 0000 & 01056086 a 0000 & 01056163 a 0000 & 01056242 a 0000 & 01056325 a 0000 & 01056402 a 0000 & 01056481 a 0000 & 01056558 a 0000 & 01056636 a 0000 & 01056711 a 0000 & 01056802 a 0000 & 01056897 a 0000 & 01057103 a 0000 & 01057270 a 0000 & 01057348 a 0000 & 01057447 a 0000 & 01057541 a 0000 & 01057614 a 0000 & 01057695 a 0000 | having odor or a characteristic odor; "odorous jasmine flowers"; "odorous garbage"; "fresh odorous bread" -01055682 00 s 01 alliaceous 0 001 & 01055073 a 0000 | smelling of onions or garlic -01055767 00 s 01 almond-scented 0 001 & 01055073 a 0000 | smelling of almond -01055846 00 s 01 anise-scented 0 001 & 01055073 a 0000 | smelling of anise -01055923 00 s 01 apple-scented 0 001 & 01055073 a 0000 | smelling of apples -01056001 00 s 01 balsam-scented 0 001 & 01055073 a 0000 | smelling of balsam resin -01056086 00 s 01 candy-scented 0 001 & 01055073 a 0000 | smelling of candy -01056163 00 s 01 cedar-scented 0 001 & 01055073 a 0000 | smelling like cedar -01056242 00 s 01 cinnamon-scented 0 001 & 01055073 a 0000 | smelling of cinnamon -01056325 00 s 01 clove-scented 0 001 & 01055073 a 0000 | smelling of clove -01056402 00 s 01 ginger-scented 0 001 & 01055073 a 0000 | smelling of ginger -01056481 00 s 01 honey-scented 0 001 & 01055073 a 0000 | smelling of honey -01056558 00 s 01 lemon-scented 0 001 & 01055073 a 0000 | smelling of lemons -01056636 00 s 01 mint-scented 0 001 & 01055073 a 0000 | smelling of mint -01056711 00 s 02 musk-scented 0 musky-scented 0 001 & 01055073 a 0000 | smelling of musk -01056802 00 s 01 pleasant-smelling 0 001 & 01055073 a 0000 | having an odor that is pleasing -01056897 00 s 02 redolent(p) 0 smelling(p) 0 001 & 01055073 a 0000 | (used with `of' or `with') noticeably odorous; "the hall was redolent of floor wax"; "air redolent with the fumes of beer and whiskey" -01057103 00 s 01 scented 0 002 & 01055073 a 0000 ;u 06307152 n 0000 | (used in combination) having the odor of; "clean-scented laundry"; "a manure-scented barnyard" -01057270 00 s 01 spice-scented 0 001 & 01055073 a 0000 | smelling of spices -01057348 00 s 02 strong-smelling 0 strong-scented 0 001 & 01055073 a 0000 | having a strong odor -01057447 00 s 02 tansy-scented 0 tansy-smelling 0 001 & 01055073 a 0000 | smelling of tansy -01057541 00 s 01 tea-scented 0 001 & 01055073 a 0000 | smelling of tea -01057614 00 s 01 vanilla-scented 0 001 & 01055073 a 0000 | smelling of vanilla -01057695 00 s 01 violet-scented 0 001 & 01055073 a 0000 | smelling of violets -01057775 00 a 03 odorless 0 odourless 0 inodorous 0 004 = 04980008 n 0000 ! 01055073 a 0101 & 01057958 a 0000 & 01058029 a 0000 | having no odor; "odorless gas"; "odorless flowers" -01057958 00 s 01 non-aromatic 0 001 & 01057775 a 0000 | not aromatic -01058029 00 s 01 scentless 0 001 & 01057775 a 0000 | emitting or holding no odor; "scentless wisps of straw"; "a scentless stretch of rocky ground" -01058179 00 a 01 scented 0 001 ! 01058281 a 0101 | having the sense of smell; "keen-scented hounds" -01058281 00 a 01 scentless 0 001 ! 01058179 a 0101 | lacking the sense of smell -01058363 00 a 01 free 2 005 ;c 06084469 n 0000 ;c 06090869 n 0000 ! 01058854 a 0101 & 01058650 a 0000 & 01058756 a 0000 | unconstrained or not chemically bound in a molecule or not fixed and capable of relatively unrestricted motion; "free expansion"; "free oxygen"; "a free electron" -01058650 00 s 01 liberated 0 001 & 01058363 a 0000 | (of a gas e.g.) released from chemical combination -01058756 00 s 01 unbound 0 001 & 01058363 a 0000 | not held in chemical or physical combination -01058854 00 a 01 bound 3 005 ;c 06084469 n 0000 ;c 06090869 n 0000 ! 01058363 a 0101 & 01059058 a 0000 & 01059252 a 0000 | held with another element, substance or material in chemical or physical union -01059058 00 s 02 conjugate 1 conjugated 1 002 & 01058854 a 0000 ;c 06084469 n 0000 | of an organic compound; containing two or more double bonds each separated from the other by a single bond -01059252 00 s 02 conjugate 2 conjugated 2 002 & 01058854 a 0000 ;c 06084469 n 0000 | formed by the union of two compounds; "a conjugated protein" -01059400 00 a 01 fixed 0 011 ^ 02095311 a 0000 + 04777098 n 0102 + 04777098 n 0103 ! 01060785 a 0101 & 01059711 a 0000 & 01059911 a 0000 & 01060110 a 0000 & 01060304 a 0000 & 01060445 a 0000 & 01060570 a 0000 & 01060712 a 0000 | securely placed or fastened or set; "a fixed piece of wood"; "a fixed resistor" -01059711 00 s 03 fast 0 firm 0 immobile 0 004 & 01059400 a 0000 + 14006490 n 0302 + 04777852 n 0202 + 04777098 n 0101 | securely fixed in place; "the post was still firm after being hit by the car" -01059911 00 s 01 geostationary 0 001 & 01059400 a 0000 | of or having a geosynchronous orbit such that the position in such an orbit is fixed with respect to the earth; "a geostationary satellite" -01060110 00 s 01 geosynchronous 0 001 & 01059400 a 0000 | of or having an orbit with a fixed period of 24 hours (although the position in the orbit may not be fixed with respect to the earth) -01060304 00 s 01 leaded 0 001 & 01059400 a 0000 | (of panes of glass) fixed in place by means of thin strips of lead; "leaded windowpanes" -01060445 00 s 01 stationary 0 002 & 01059400 a 0000 + 14006490 n 0101 | not capable of being moved; "stationary machinery" -01060570 00 s 01 taped 0 001 & 01059400 a 0000 | secured or held in place by tape; "carefully taped pieces of glass served as a windowpane" -01060712 00 s 01 unadjustable 0 001 & 01059400 a 0000 | not adjustable -01060785 00 a 01 unfixed 0 005 ^ 02095786 a 0000 ! 01059400 a 0101 & 01060947 a 0000 & 01061100 a 0000 & 01061310 a 0000 | not firmly placed or set or fastened -01060947 00 s 02 detached 0 free 0 001 & 01060785 a 0000 | not fixed in position; "the detached shutter fell on him"; "he pulled his arm free and ran" -01061100 00 s 01 floating(a) 0 001 & 01060785 a 0000 | (of a part of the body) not firmly connected; movable or out of normal position; "floating ribs are not connected with the sternum"; "a floating kidney" -01061310 00 s 02 unfirm 0 unsteady 0 002 & 01060785 a 0000 + 04775562 n 0201 | not firmly or solidly positioned; "climbing carefully up the unsteady ladder"; "an unfirm stance" -01061489 00 a 01 free 0 020 ^ 01065694 a 0000 ^ 00727564 a 0000 ^ 00254152 a 0000 ^ 00559425 a 0000 ^ 02000680 a 0000 ^ 02002814 a 0000 = 13991823 n 0000 ! 01064286 a 0101 & 01062114 a 0000 & 01062393 a 0000 & 01062631 a 0000 & 01062819 a 0000 & 01062938 a 0000 & 01063102 a 0000 & 01063286 a 0000 & 01063490 a 0000 & 01063638 a 0000 & 01063753 a 0000 & 01063958 a 0000 & 01064167 a 0000 | able to act at will; not hampered; not under compulsion or restraint; "free enterprise"; "a free port"; "a free country"; "I have an hour free"; "free will"; "free of racism"; "feel free to stay as long as you wish"; "a free choice" -01062114 00 s 04 at_large(p) 0 escaped 0 loose 1 on_the_loose(p) 0 001 & 01061489 a 0000 | having escaped, especially from confinement; "a convict still at large"; "searching for two escaped prisoners"; "dogs loose on the streets"; "criminals on the loose in the neighborhood" -01062393 00 s 04 autonomous 0 independent 0 self-governing 0 sovereign 0 003 & 01061489 a 0000 + 13994148 n 0201 + 13992514 n 0101 | (of political bodies) not controlled by outside forces; "an autonomous judiciary"; "a sovereign state" -01062631 00 s 02 available 0 uncommitted 0 001 & 01061489 a 0000 | not busy; not otherwise committed; "he was not available for comment"; "he was available and willing to accompany her" -01062819 00 s 02 aweigh 0 atrip 0 002 & 01061489 a 0000 ;c 00314469 n 0000 | (of an anchor) just clear of the bottom -01062938 00 s 01 clear(p) 2 001 & 01061489 a 0000 | free from contact or proximity or connection; "we were clear of the danger"; "the ship was clear of the reef" -01063102 00 s 02 emancipated 0 liberated 0 001 & 01061489 a 0000 | free from traditional social restraints; "an emancipated young woman pursuing her career"; "a liberated lifestyle" -01063286 00 s 01 footloose 0 001 & 01061489 a 0000 | free to go or do as one pleases; "Americans have always been a footloose people always moving on"; "a footloose young man eager to see the big city" -01063490 00 s 01 out-of-school 0 001 & 01061489 a 0000 | not attending school and therefore free to work; "opportunities for out-of-school youth" -01063638 00 s 02 unconfined 0 unimprisoned 0 001 & 01061489 a 0000 | free from confinement or physical restraint -01063753 00 s 01 unconstrained 0 001 & 01061489 a 0000 | free from constraint; "he was unconstrained by any of the sanctions of polite society"; "the dog was unconstrained"; "idle, unconstrained gossip" -01063958 00 s 01 unhampered 0 001 & 01061489 a 0000 | not held in check or subject to control; "unhampered dissemination of news"; "this would give black people the opportunity to live unhampered by racism" -01064167 00 s 01 unrestricted 0 001 & 01061489 a 0000 | free of restrictions on conduct; "I had unrestricted access" -01064286 00 a 01 unfree 0 014 ^ 00252954 a 0000 ^ 00558373 a 0000 ^ 00725772 a 0000 ^ 02002227 a 0000 = 13991823 n 0000 ! 01061489 a 0101 & 01064619 a 0000 & 01064806 a 0000 & 01064913 a 0000 & 01065126 a 0000 & 01065321 a 0000 & 01065401 a 0000 & 01065538 a 0000 & 01065614 a 0000 | hampered and not free; not able to act at will -01064619 00 s 02 adscript 0 adscripted 0 001 & 01064286 a 0000 | (used of persons) bound to a tract of land; hence their service is transferable from owner to owner; "an adscript serf" -01064806 00 s 04 apprenticed 0 articled 0 bound 0 indentured 0 001 & 01064286 a 0000 | bound by contract -01064913 00 s 04 at_bay(p) 0 cornered 0 trapped 0 treed 0 001 & 01064286 a 0000 | forced to turn and face attackers; "a stag at bay"; "she had me cornered between the porch and her car"; "like a trapped animal" -01065126 00 s 04 captive 0 confined 0 imprisoned 0 jailed 0 006 & 01064286 a 0000 + 09893600 n 0101 + 09893502 n 0101 + 10476086 n 0102 + 13999206 n 0101 + 13997050 n 0102 | being in captivity -01065321 00 s 01 entangled 0 001 & 01064286 a 0000 | involved in difficulties -01065401 00 s 02 nonautonomous 0 nonsovereign 0 001 & 01064286 a 0000 | (of peoples and political bodies) controlled by outside forces -01065538 00 s 01 prisonlike 0 001 & 01064286 a 0000 | resembling a prison -01065614 00 s 01 serflike 0 001 & 01064286 a 0000 | like someone in servitude -01065694 00 a 01 free 1 004 ^ 01061489 a 0000 ! 01066070 a 0101 & 01065861 a 0000 & 01065941 a 0000 | not held in servitude; "after the Civil War he was a free man" -01065861 00 s 01 freeborn 0 001 & 01065694 a 0000 | born free of free parents -01065941 00 s 03 free-soil 0 slaveless 0 non-slave 0 001 & 01065694 a 0000 | where slavery was prohibited; "a free-soil state" -01066070 00 a 01 unfree 1 004 ^ 01064286 a 0000 ! 01065694 a 0101 & 01066226 a 0000 & 01066441 a 0000 | held in servitude; "he was born of slave parents" -01066226 00 s 01 servile(a) 0 001 & 01066070 a 0000 | relating to or involving slaves or appropriate for slaves or servants; "Brown's attempt at servile insurrection"; "the servile wars of Sicily"; "servile work" -01066441 00 s 01 slaveholding 0 001 & 01066070 a 0000 | allowing slavery; "the slaveholding South" -01066542 00 a 01 frequent 0 007 + 13598237 n 0101 + 15278281 n 0102 + 02466134 v 0106 + 01844431 v 0101 ! 01067193 a 0101 & 01066787 a 0000 & 01067003 a 0000 | coming at short intervals or habitually; "a frequent guest"; "frequent complaints" -01066787 00 s 05 prevailing 0 prevalent 0 predominant 0 dominant 0 rife 0 005 & 01066542 a 0000 + 04707409 n 0302 + 02644234 v 0301 + 04765355 n 0201 + 02647497 v 0201 | most frequent or common; "prevailing winds" -01067003 00 s 02 regular 0 steady 0 003 & 01066542 a 0000 + 10517405 n 0101 + 04767347 n 0101 | relating to a person who does something regularly; "a regular customer"; "a steady drinker" -01067193 00 a 01 infrequent 0 005 ^ 00593374 a 0000 + 05117237 n 0103 ! 01066542 a 0101 & 01067415 a 0000 & 01067538 a 0000 | not frequent; not occurring regularly or at short intervals; "infrequent outbursts of temper" -01067415 00 s 01 occasional(a) 0 001 & 01067193 a 0000 | occurring from time to time; "took an occasional glass of wine" -01067538 00 s 01 rare 0 002 & 01067193 a 0000 + 05117237 n 0102 | recurring only at long intervals; "a rare appearance"; "total eclipses are rare events" -01067694 00 a 01 fresh 1 011 ^ 01640850 a 0000 = 04926728 n 0000 + 04926728 n 0101 ! 01068726 a 0101 & 01068012 a 0000 & 01068104 a 0000 & 01068217 a 0000 & 01068306 a 0000 & 01068438 a 0000 & 01068513 a 0000 & 01068609 a 0000 | recently made, produced, or harvested; "fresh bread"; "a fresh scent"; "fresh lettuce" -01068012 00 s 01 caller 0 002 & 01067694 a 0000 ;r 08890097 n 0000 | fresh; "caller fish" -01068104 00 s 01 crisp 0 002 & 01067694 a 0000 + 04927098 n 0101 | pleasingly firm and fresh; "crisp lettuce" -01068217 00 s 01 fresh-cut 0 001 & 01067694 a 0000 | cut recently; "fresh-cut flowers" -01068306 00 s 04 good 0 undecomposed 0 unspoiled 0 unspoilt 0 001 & 01067694 a 0000 | not left to spoil; "the meat is still good" -01068438 00 s 01 hot 0 001 & 01067694 a 0000 | newly made; "a hot scent" -01068513 00 s 01 new-made 0 001 & 01067694 a 0000 | newly made; "the aroma of new-made bread" -01068609 00 s 02 strong 0 warm 0 001 & 01067694 a 0000 | freshly made or left; "a warm trail"; "the scent is warm" -01068726 00 a 01 stale 0 018 ^ 01638438 a 0000 ^ 01688271 a 0000 = 04928008 n 0000 + 04928008 n 0101 ! 01067694 a 0101 & 01069187 a 0000 & 01069283 a 0000 & 01069454 a 0000 & 01069607 a 0000 & 01069715 a 0000 & 01069823 a 0000 & 01070002 a 0000 & 01070088 a 0000 & 01070321 a 0000 & 01070538 a 0000 & 01070716 a 0000 & 01070844 a 0000 & 01071049 a 0000 | lacking freshness, palatability, or showing deterioration from age; "stale bread"; "the beer was stale" -01069187 00 s 01 addled 0 001 & 01068726 a 0000 | (of eggs) no longer edible; "an addled egg" -01069283 00 s 03 bad 0 spoiled 0 spoilt 0 001 & 01068726 a 0000 | (of foodstuffs) not in an edible or usable condition; "bad meat"; "a refrigerator full of spoilt food" -01069454 00 s 01 cold 0 001 & 01068726 a 0000 | having lost freshness through passage of time; "a cold trail"; "dogs attempting to catch a cold scent" -01069607 00 s 01 day-old 0 001 & 01068726 a 0000 | not fresh today; "day-old bread is cheaper than fresh" -01069715 00 s 01 hard 0 001 & 01068726 a 0000 | dried out; "hard dry rolls left over from the day before" -01069823 00 s 02 flyblown 0 maggoty 0 002 & 01068726 a 0000 + 02312175 n 0201 | spoiled and covered with eggs and larvae of flies; "flyblown meat"; "a sack of maggoty apricots" -01070002 00 s 02 limp 0 wilted 0 001 & 01068726 a 0000 | not firm; "wilted lettuce" -01070088 00 s 03 moldy 0 mouldy 0 musty 0 006 & 01068726 a 0000 + 04928194 n 0302 + 04928194 n 0301 + 13077033 n 0202 + 13077033 n 0101 + 04928194 n 0103 | covered with or smelling of mold; "moldy bread"; "a moldy (or musty) odor" -01070321 00 s 01 rancid 0 002 & 01068726 a 0000 + 04992431 n 0101 | (used of decomposing oils or fats) having a rank smell or taste usually due to a chemical change or decomposition; "rancid butter"; "rancid bacon" -01070538 00 s 01 rotten 0 003 & 01068726 a 0000 + 14561102 n 0103 + 04791591 n 0102 | having decayed or disintegrated; usually implies foulness; "dead and rotten in his grave" -01070716 00 s 02 corrupt 0 tainted 0 001 & 01068726 a 0000 | touched by rot or decay; "tainted bacon"; "`corrupt' is archaic" -01070844 00 s 01 putrid 0 003 & 01068726 a 0000 + 14561102 n 0102 + 14488200 n 0101 | in an advanced state of decomposition and having a foul odor; "horrible like raw and putrid flesh"- Somerset Maugham -01071049 00 s 01 putrescent 0 003 & 01068726 a 0000 + 14561102 n 0101 + 04791591 n 0101 | becoming putrid; "a trail lined by putrescent carcasses" -01071198 00 a 01 fresh 2 002 ! 01071423 a 0101 & 01071321 a 0000 | not canned or otherwise preserved; "fresh vegetables" -01071321 00 s 01 unprocessed 0 001 & 01071198 a 0000 | not treated or prepared by a special process -01071423 00 a 01 preserved 2 015 ! 01071198 a 0101 & 01071794 a 0000 & 01071941 a 0000 & 01072112 a 0000 & 01072196 a 0000 & 01072297 a 0000 & 01072382 a 0000 & 01072586 a 0000 & 01072782 a 0000 & 01072908 a 0000 & 01073094 a 0000 & 01073194 a 0000 & 01073311 a 0000 & 01073435 a 0000 & 01073592 a 0000 | prevented from decaying or spoiling and prepared for future use -01071794 00 s 02 aged 0 cured 1 001 & 01071423 a 0000 | (used of tobacco) aging as a preservative process (`aged' is pronounced as one syllable) -01071941 00 s 04 candied 0 crystalized 0 crystalised 0 glace 0 001 & 01071423 a 0000 | (used especially of fruits) preserved by coating with or allowing to absorb sugar -01072112 00 s 02 canned 0 tinned 0 001 & 01071423 a 0000 | sealed in a can or jar -01072196 00 s 02 corned 0 cured 2 001 & 01071423 a 0000 | (used especially of meat) cured in brine -01072297 00 s 01 cured 3 001 & 01071423 a 0000 | (used of hay e.g.) allowed to dry -01072382 00 s 03 dried 0 dehydrated 0 desiccated 0 001 & 01071423 a 0000 | preserved by removing natural moisture; "dried beef"; "dried fruit"; "dehydrated eggs"; "shredded and desiccated coconut meat" -01072586 00 s 03 flash-frozen 0 quick-frozen 0 frozen 0 001 & 01071423 a 0000 | (used of foods) preserved by freezing sufficiently rapidly to retain flavor and nutritional value; "frozen foods" -01072782 00 s 01 freeze-dried 1 001 & 01071423 a 0000 | preserved by freezing and drying in a vacuum; "freeze-dried coffee" -01072908 00 s 03 lyophilized 0 lyophilised 0 freeze-dried 2 001 & 01071423 a 0000 | used of tissue or blood or serum or other biological substances; dried by freezing in a high vacuum -01073094 00 s 01 pickled 0 001 & 01071423 a 0000 | (used of foods) preserved in a pickling liquid -01073194 00 s 01 potted 0 001 & 01071423 a 0000 | preserved in a pot or can or jar; "potted meat"; "potted shrimp" -01073311 00 s 03 salted 0 salt-cured 0 brine-cured 0 001 & 01071423 a 0000 | (used especially of meats) preserved in salt -01073435 00 s 03 smoked 0 smoke-cured 0 smoke-dried 0 001 & 01071423 a 0000 | (used especially of meats and fish) dried and cured by hanging in wood smoke -01073592 00 s 02 sun-dried 0 sundried 0 001 & 01071423 a 0000 | dried naturally by the sun; "sun-dried apricots" -01073707 00 a 02 fresh 3 sweet 0 001 ! 01073822 a 0101 | not containing or composed of salt water; "fresh water" -01073822 00 a 01 salty 0 009 ^ 02395115 a 0000 + 04993413 n 0101 + 15010703 n 0101 + 07813107 n 0101 ! 01073707 a 0101 & 01074062 a 0000 & 01074335 a 0000 & 01074458 a 0000 & 01074582 a 0000 | containing or filled with salt; "salt water" -01074062 00 s 02 brackish 0 briny 0 006 & 01073822 a 0000 + 09345932 n 0202 + 15008847 n 0203 + 07937203 n 0201 + 04993604 n 0201 + 04993752 n 0101 | slightly salty (especially from containing a mixture of seawater and fresh water); "a brackish lagoon"; "the briny deep" -01074335 00 s 01 saliferous 0 001 & 01073822 a 0000 | containing or yielding salt; "saliferous formations"; "salt domes" -01074458 00 s 01 saline 0 002 & 01073822 a 0000 + 04993604 n 0102 | containing salt; "a saline substance "; "salty tears" -01074582 00 s 01 saltish 0 001 & 01073822 a 0000 | somewhat salty -01074650 00 a 01 friendly 1 019 ^ 01246579 a 0000 ^ 00560586 a 0000 ^ 01141743 a 0000 ^ 01243825 a 0000 ^ 02257141 a 0000 ^ 02248349 a 0000 ^ 02530861 a 0000 = 04654337 n 0000 + 10112591 n 0101 + 04654337 n 0101 ! 01076793 a 0101 & 01075178 a 0000 & 01075524 a 0000 & 01075742 a 0000 & 01075864 a 0000 & 01076024 a 0000 & 01076145 a 0000 & 01076435 a 0000 & 01076634 a 0000 | characteristic of or befitting a friend; "friendly advice"; "a friendly neighborhood"; "the only friendly person here"; "a friendly host and hostess" -01075178 00 s 04 affable 0 amiable 0 cordial 0 genial 0 008 & 01074650 a 0000 + 04654652 n 0406 + 04655929 n 0302 + 07551691 n 0204 + 04654652 n 0203 + 13970460 n 0201 + 04654652 n 0101 + 04654652 n 0102 | diffusing warmth and friendliness; "an affable smile"; "an amiable gathering"; "cordial relations"; "a cordial greeting"; "a genial host" -01075524 00 s 04 chummy 0 matey 0 pally 0 palsy-walsy 0 005 & 01074650 a 0000 ;u 07075172 n 0000 + 10300154 n 0201 + 09877951 n 0103 + 04653627 n 0101 | (used colloquially) having the relationship of friends or pals -01075742 00 s 01 companionate 0 001 & 01074650 a 0000 | like a companion; "companionate marriage"; "a companionate dog" -01075864 00 s 03 comradely 0 hail-fellow 0 hail-fellow-well-met 0 003 & 01074650 a 0000 + 09945905 n 0102 + 04653627 n 0103 | heartily friendly and congenial -01076024 00 s 02 couthie 0 couthy 0 002 & 01074650 a 0000 ;r 08890097 n 0000 | (chiefly Scottish) agreeable and genial -01076145 00 s 03 cozy 0 intimate 0 informal 0 003 & 01074650 a 0000 + 04912052 n 0301 + 14446298 n 0101 | having or fostering a warm or friendly and informal atmosphere; "had a cozy chat"; "a relaxed informal manner"; "an intimate cocktail lounge"; "the small room was cozy and intimate" -01076435 00 s 02 neighborly 0 neighbourly 0 005 & 01074650 a 0000 + 10352299 n 0202 + 04656051 n 0202 + 10352299 n 0101 + 04656051 n 0101 | exhibiting the qualities expected in a friendly neighbor -01076634 00 s 01 social 0 003 & 01074650 a 0000 + 08256369 n 0102 + 04652635 n 0101 | marked by friendly companionship with others; "a social cup of coffee" -01076793 00 a 01 unfriendly 1 012 ^ 02531422 a 0000 ^ 01244410 a 0000 ^ 01244195 a 0000 ^ 00561036 a 0000 ^ 02258600 a 0000 = 04654337 n 0000 + 04657876 n 0101 ! 01074650 a 0101 & 01077158 a 0000 & 01077263 a 0000 & 01077362 a 0000 & 01077485 a 0000 | not disposed to friendship or friendliness; "an unfriendly coldness of manner"; "an unfriendly action to take" -01077158 00 s 02 beetle-browed 0 scowling 0 001 & 01076793 a 0000 | sullen or unfriendly in appearance -01077263 00 s 01 chilly 0 001 & 01076793 a 0000 | lacking warmth of feeling; "a chilly greeting" -01077362 00 s 01 uncordial 0 001 & 01076793 a 0000 | lacking warmth or friendliness; "looked uncordial as we approached" -01077485 00 s 02 unneighborly 0 unneighbourly 0 002 & 01076793 a 0000 + 04658816 n 0101 | not exhibiting the qualities expected in a friendly neighbor -01077638 00 a 01 friendly 2 001 ! 01077829 a 0101 | of or belonging to your own country's forces or those of an ally; "in friendly territory"; "he was accidentally killed by friendly fire" -01077829 00 a 01 hostile 2 002 ! 01077638 a 0101 + 00964781 n 0101 | not belonging to your own country's forces or those of an ally; "hostile naval and air forces" -01077995 00 a 01 friendly 3 002 ;u 06307152 n 0000 ! 01078178 a 0101 | easy to understand or use; "user-friendly computers"; "a consumer-friendly policy"; "a reader-friendly novel" -01078178 00 a 01 unfriendly 2 002 ;u 06307152 n 0000 ! 01077995 a 0101 | not easy to understand or use; "user-unfriendly" -01078302 00 a 01 frozen 0 011 ^ 01251128 a 0000 ^ 01506770 a 0000 ! 01079683 a 0101 & 01078673 a 0000 & 01078840 a 0000 & 01078932 a 0000 & 01079052 a 0000 & 01079143 a 0000 & 01079240 a 0000 & 01079396 a 0000 & 01079532 a 0000 | turned into ice; affected by freezing or by long and severe cold; "the frozen North"; "frozen pipes"; "children skating on a frozen brook" -01078673 00 s 01 frostbitten 0 001 & 01078302 a 0000 | injured by freezing or partial freezing; "frostbitten fingers"; "frostbitten grapes unsalable as fresh fruit" -01078840 00 s 01 frost-bound 0 001 & 01078302 a 0000 | (of the ground) made hard by frost -01078932 00 s 01 glaciated 0 001 & 01078302 a 0000 | covered with ice (as by a glacier) or affected by glacial action -01079052 00 s 01 icebound 0 001 & 01078302 a 0000 | locked in by ice; "icebound harbors" -01079143 00 s 01 ice-clogged 0 001 & 01078302 a 0000 | obstructed by ice; "ice-clogged rivers" -01079240 00 s 01 icy 0 003 & 01078302 a 0000 + 03558176 n 0103 + 05015463 n 0102 | covered with or containing or consisting of ice; "icy northern waters" -01079396 00 s 01 sleety 0 002 & 01078302 a 0000 + 11507951 n 0101 | consisting of or of the nature of frozen or partially frozen rain -01079532 00 s 01 unthawed 0 001 & 01078302 a 0000 | still frozen; "there wasn't time to cook the unthawed turkey, so they had to settle for hotdogs" -01079683 00 a 01 unfrozen 0 006 ^ 01505991 a 0000 ! 01078302 a 0101 & 01079857 a 0000 & 01079978 a 0000 & 01080060 a 0000 & 01080197 a 0000 | not frozen; "unfrozen ground" -01079857 00 s 01 ice-free 0 001 & 01079683 a 0000 | free of ice and open to travel; "an ice-free channel in the river" -01079978 00 s 02 liquescent 0 melting 0 001 & 01079683 a 0000 | becoming liquid -01080060 00 s 01 slushy 0 002 & 01079683 a 0000 + 15043308 n 0101 | being or resembling melting snow; "slushy snow"; "deep slushy mud" -01080197 00 s 01 thawed 0 001 & 01079683 a 0000 | no longer frozen; "the thawed ground was muddy" -01080297 00 a 01 fruitful 0 017 ^ 01001689 a 0000 ^ 01865197 a 0000 + 05147381 n 0101 ! 01082535 a 0101 & 01080717 a 0000 & 01080823 a 0000 & 01080900 a 0000 & 01081068 a 0000 & 01081263 a 0000 & 01081340 a 0000 & 01081592 a 0000 & 01081917 a 0000 & 01082038 a 0000 & 01082115 a 0000 & 01082302 a 0000 & 01082377 a 0000 & 01082456 a 0000 | productive or conducive to producing in abundance; "be fruitful and multiply" -01080717 00 s 03 berried 0 baccate 0 bacciferous 0 001 & 01080297 a 0000 | producing or bearing berries -01080823 00 s 01 blue-fruited 0 001 & 01080297 a 0000 | bearing blue fruit -01080900 00 s 02 bountiful 0 plentiful 0 002 & 01080297 a 0000 + 05115418 n 0102 | producing in abundance; "the bountiful earth"; "a plentiful year"; "fruitful soil" -01081068 00 s 01 breeding 0 001 & 01080297 a 0000 | producing offspring or set aside especially for producing offspring; "the breeding population"; "retained a few bulls for breeding purposes" -01081263 00 s 01 dark-fruited 0 001 & 01080297 a 0000 | bearing dark fruit -01081340 00 s 04 fat 0 fertile 1 productive 0 rich 0 005 & 01080297 a 0000 + 05164101 n 0401 + 05147586 n 0401 + 05147940 n 0301 + 05147586 n 0204 | marked by great fruitfulness; "fertile farmland"; "a fat land"; "a productive vineyard"; "rich soil" -01081592 00 s 03 generative 0 procreative 0 reproductive 0 004 & 01080297 a 0000 + 00055142 v 0301 + 00055142 v 0202 + 00054628 v 0107 | producing new life or offspring; "the reproductive potential of a species is its relative capacity to reproduce itself under optimal conditions"; "the reproductive or generative organs" -01081917 00 s 01 high-yield 0 001 & 01080297 a 0000 | yielding a large amount of agricultural or industrial production -01082038 00 s 01 oval-fruited 0 001 & 01080297 a 0000 | bearing oval fruit -01082115 00 s 02 prolific 0 fertile 2 002 & 01080297 a 0000 + 14051494 n 0201 | bearing in abundance especially offspring; "flying foxes are extremely prolific"; "a prolific pear tree" -01082302 00 s 01 red-fruited 0 001 & 01080297 a 0000 | bearing red fruit -01082377 00 s 01 round-fruited 0 001 & 01080297 a 0000 | bearing round fruit -01082456 00 s 01 small-fruited 0 001 & 01080297 a 0000 | bearing small fruit -01082535 00 a 01 unfruitful 0 005 ^ 01002377 a 0000 ! 01080297 a 0101 & 01082714 a 0000 & 01082925 a 0000 & 01082998 a 0000 | not fruitful; not conducive to abundant production -01082714 00 s 03 abortive 0 stillborn 0 unsuccessful 0 002 & 01082535 a 0000 + 00353839 v 0101 | failing to accomplish an intended result; "an abortive revolt"; "a stillborn plot to assassinate the President" -01082925 00 s 01 acarpous 0 001 & 01082535 a 0000 | producing no fruit -01082998 00 s 01 childless 0 002 & 01082535 a 0000 + 13933103 n 0101 | without offspring; "in some societies a childless woman is rejected by her tribesmen" -01083157 00 a 01 full 0 023 = 14451911 n 0000 + 14451911 n 0101 ! 01086545 a 0101 & 01083754 a 0000 & 01084023 a 0000 & 01084091 a 0000 & 01084297 a 0000 & 01084486 a 0000 & 01084575 a 0000 & 01084644 a 0000 & 01084900 a 0000 & 01085097 a 0000 & 01085167 a 0000 & 01085268 a 0000 & 01085442 a 0000 & 01085661 a 0000 & 01085848 a 0000 & 01085937 a 0000 & 01086042 a 0000 & 01086118 a 0000 & 01086213 a 0000 & 01086339 a 0000 & 01086453 a 0000 | containing as much or as many as is possible or normal; "a full glass"; "a sky full of stars"; "a full life"; "the auditorium was full to overflowing" -01083754 00 s 05 afloat(p) 0 awash(p) 0 flooded 1 inundated 0 overflowing 0 001 & 01083157 a 0000 | covered with water; "the main deck was afloat (or awash)"; "the monsoon left the whole place awash"; "a flooded bathroom"; "inundated farmlands"; "an overflowing tub" -01084023 00 s 01 air-filled 0 001 & 01083157 a 0000 | full of air -01084091 00 s 03 brimful 0 brimfull 0 brimming 0 001 & 01083157 a 0000 | filled to capacity; "a brimful cup"; "I am brimful of chowder"; "a child brimming over with curiosity"; "eyes brimming with tears" -01084297 00 s 06 chockablock(p) 0 chock-full 0 chockful 0 choke-full 0 chuck-full 0 cram_full 0 001 & 01083157 a 0000 | packed full to capacity; "chowder chockablock with pieces of fish" -01084486 00 s 02 congested 0 engorged 0 001 & 01083157 a 0000 | overfull as with blood -01084575 00 s 01 egg-filled 0 001 & 01083157 a 0000 | full of eggs -01084644 00 s 01 filled 1 002 & 01083157 a 0000 ;u 06307152 n 0000 | (usually followed by `with' or used as a combining form) generously supplied with; "theirs was a house filled with laughter"; "a large hall filled with rows of desks"; "fog-filled air" -01084900 00 s 02 fraught(p) 0 pregnant 0 001 & 01083157 a 0000 | filled with or attended with; "words fraught with meaning"; "an incident fraught with danger"; "a silence pregnant with suspense" -01085097 00 s 01 gas-filled 0 001 & 01083157 a 0000 | full of a gas -01085167 00 s 02 glutted 0 overfull 0 001 & 01083157 a 0000 | exceeding demand; "a glutted market" -01085268 00 s 02 heavy 0 weighed_down 0 002 & 01083157 a 0000 + 05027529 n 0101 | full of; bearing great weight; "trees heavy with fruit"; "vines weighed down with grapes" -01085442 00 s 02 instinct(p) 0 replete(p) 0 001 & 01083157 a 0000 | (followed by `with')deeply filled or permeated; "imbued with the spirit of the Reformation"; "words instinct with love"; "it is replete with misery" -01085661 00 s 03 laden 0 loaded 0 ladened 0 001 & 01083157 a 0000 | filled with a great quantity; "a tray loaded with dishes"; "table laden with food"; "`ladened' is not current usage" -01085848 00 s 02 overladen 0 overloaded 0 001 & 01083157 a 0000 | loaded past capacity -01085937 00 s 01 riddled 0 001 & 01083157 a 0000 | spread throughout; "cities riddled with corruption" -01086042 00 s 01 sperm-filled 0 001 & 01083157 a 0000 | filled with sperm -01086118 00 s 01 stuffed 1 001 & 01083157 a 0000 | filled with something; "a stuffed turkey" -01086213 00 s 01 stuffed 2 002 & 01083157 a 0000 ;u 07075172 n 0000 | crammed with food; "a full stomach"; "I feel stuffed" -01086339 00 s 02 untouched 0 untasted 0 001 & 01083157 a 0000 | still full; "an untouched cocktail in her hand" -01086453 00 s 01 well-lined 0 001 & 01083157 a 0000 | full of money; "a well-lined purse" -01086545 00 a 01 empty 0 013 = 14451911 n 0000 + 14455206 n 0101 ! 01083157 a 0101 & 01086915 a 0000 & 01087093 a 0000 & 01087300 a 0000 & 01087388 a 0000 & 01087557 a 0000 & 01087757 a 0000 & 01087977 a 0000 & 01088164 a 0000 & 01088262 a 0000 & 01088351 a 0000 | holding or containing nothing; "an empty glass"; "an empty room"; "full of empty seats"; "empty hours" -01086915 00 s 02 bare 0 stripped 0 002 & 01086545 a 0000 + 04697819 n 0101 | having everything extraneous removed including contents; "the bare walls"; "the cupboard was bare" -01087093 00 s 03 blank 0 clean 0 white 0 002 & 01086545 a 0000 + 14455419 n 0101 | (of a surface) not written or printed on; "blank pages"; "fill in the blank spaces"; "a clean page"; "wide white margins" -01087300 00 s 01 empty-handed 0 001 & 01086545 a 0000 | carrying nothing in the hands -01087388 00 s 02 glassy 0 glazed 0 001 & 01086545 a 0000 | (used of eyes) lacking liveliness; "empty eyes"; "a glassy stare"; "his eyes were glazed over with boredom" -01087557 00 s 01 lifeless 0 002 & 01086545 a 0000 + 14006179 n 0103 | destitute or having been emptied of life or living beings; "after the dance the littered and lifeless ballroom echoed hollowly" -01087757 00 s 04 looted 0 pillaged 0 plundered 0 ransacked 0 001 & 01086545 a 0000 | wrongfully emptied or stripped of anything of value; "the robbers left the looted train"; "people returned to the plundered village" -01087977 00 s 01 vacant 1 005 & 01086545 a 0000 + 14455966 n 0101 + 13910116 n 0102 + 02367032 v 0101 + 02076676 v 0101 | without an occupant or incumbent; "the throne is never vacant" -01088164 00 s 01 vacant 2 001 & 01086545 a 0000 | void of thought or knowledge; "a vacant mind" -01088262 00 s 01 vacuous 0 001 & 01086545 a 0000 | devoid of matter; "a vacuous space" -01088351 00 s 01 void 0 002 & 01086545 a 0000 + 13910116 n 0101 | containing nothing; "the earth was without form, and void" -01088478 00 a 01 drained 0 003 ! 01089027 a 0101 & 01088749 a 0000 & 01088881 a 0000 | emptied or exhausted of (as by drawing off e.g. water or other liquid); "a drained marsh"; "a drained tank"; "a drained and apathetic old man...not caring any longer about anything" -01088749 00 s 01 empty 0 002 & 01088478 a 0000 + 14455206 n 0101 | emptied of emotion; "after the violent argument he felt empty" -01088881 00 s 01 exhausted 0 001 & 01088478 a 0000 | drained physically; "the day's events left her completely exhausted--her strength drained" -01089027 00 a 01 undrained 0 001 ! 01088478 a 0101 | not drained; "preserve wetlands; keep them undrained" -01089136 00 a 01 full-time 0 002 ! 01089369 a 0101 & 01089275 a 0000 | for the entire time appropriate to an activity; "a full-time job" -01089275 00 s 01 regular 0 001 & 01089136 a 0000 | officially full-time; "regular students" -01089369 00 a 02 part-time 0 parttime 0 005 ! 01089136 a 0101 & 01089616 a 0000 & 01089775 a 0000 & 01089949 a 0000 & 01090061 a 0000 | involving less than the standard or customary time for an activity; "part-time employees"; "a part-time job" -01089616 00 s 01 half-time 0 001 & 01089369 a 0000 | involving half the standard or customary time for an activity; "he had two years of half-time training" -01089775 00 s 02 irregular 0 temporary 0 002 & 01089369 a 0000 + 05055141 n 0201 | lacking continuity or regularity; "an irregular worker"; "employed on a temporary basis" -01089949 00 s 01 odd-job(a) 0 001 & 01089369 a 0000 | not regular or skilled; "found only odd-job employment" -01090061 00 s 01 underemployed 0 001 & 01089369 a 0000 | employed only part-time when one needs full-time employment or not making full use of your skills; "migrants are likely to be poor and underemployed"; "able people are kept underemployed" -01090308 00 a 01 functional 0 006 ^ 02123812 a 0000 = 05149325 n 0000 + 05151372 n 0101 ! 01090993 a 0101 & 01090593 a 0000 & 01090820 a 0000 | designed for or capable of a particular function or use; "a style of writing in which every word is functional"; "functional architecture" -01090593 00 s 01 structural 0 001 & 01090308 a 0000 | affecting or involved in structure or construction; "the structural details of a house such as beams and joists and rafters; not ornamental elements"; "structural damage" -01090820 00 s 02 utilitarian 0 useful 0 004 & 01090308 a 0000 + 05148699 n 0202 + 10742736 n 0101 + 05148699 n 0101 | having a useful function; "utilitarian steel tables" -01090993 00 a 01 nonfunctional 0 005 ^ 02124654 a 0000 = 05149325 n 0000 ! 01090308 a 0101 & 01091160 a 0000 & 01091234 a 0000 | not having or performing a function -01091160 00 s 01 nonstructural 0 001 & 01090993 a 0000 | not structural -01091234 00 s 03 cosmetic 0 decorative 0 ornamental 0 007 & 01090993 a 0000 + 11536087 n 0301 + 03169390 n 0302 + 02748927 v 0203 + 01675963 v 0201 + 01466543 v 0202 + 04700327 n 0201 | serving an esthetic rather than a useful purpose; "cosmetic fenders on cars"; "the buildings were utilitarian rather than decorative" -01091556 00 a 01 functioning 0 003 ! 01092142 a 0101 & 01091728 a 0000 & 01091995 a 0000 | performing or able to perform its regular function; "a functioning flashlight" -01091728 00 s 04 running(a) 0 operative 0 functional 0 working(a) 0 004 & 01091556 a 0000 + 05151372 n 0301 + 01525666 v 0203 + 01224744 v 0201 | (of e.g. a machine) performing or capable of performing; "in running (or working) order"; "a functional set of brakes" -01091995 00 s 01 up(p) 0 002 & 01091556 a 0000 ;c 03082979 n 0000 | (used of computers) operating properly; "how soon will the computers be up?" -01092142 00 a 02 malfunctioning 0 nonfunctional 3 005 ! 01091556 a 0101 & 01092371 a 0000 & 01092572 a 0000 & 01092727 a 0000 & 01092889 a 0000 | not performing or able to perform its regular function; "a malfunctioning valve" -01092371 00 s 04 amiss(p) 0 awry(p) 0 haywire 0 wrong(p) 0 001 & 01092142 a 0000 | not functioning properly; "something is amiss"; "has gone completely haywire"; "something is wrong with the engine" -01092572 00 s 02 bad 0 defective 0 002 & 01092142 a 0000 + 14472299 n 0201 | not working properly; "a bad telephone connection"; "a defective appliance" -01092727 00 s 01 out_of_whack 0 002 & 01092142 a 0000 ;u 07154330 n 0000 | out of balance or out of adjustment; "the front wheel of my bicycle is out of whack" -01092889 00 s 01 run-down 0 001 & 01092142 a 0000 | having the spring unwound; "a run-down watch" -01092989 00 a 01 functional 2 002 ;c 06060845 n 0000 ! 01093142 a 0101 | involving or affecting function rather than physiology; "functional deafness" -01093142 00 a 01 organic 0 004 ;c 06060845 n 0000 + 00004475 n 0101 + 05297523 n 0101 ! 01092989 a 0101 | involving or affecting physiology or bodily organs; "an organic disease" -01093323 00 a 01 rigged 0 005 ;c 00314469 n 0000 ! 01093956 a 0101 & 01093524 a 0000 & 01093631 a 0000 & 01093850 a 0000 | fitted or equipped with necessary rigging (sails and shrouds and stays etc) -01093524 00 s 02 lateen 0 lateen-rigged 0 001 & 01093323 a 0000 | rigged with a triangular (lateen) sail -01093631 00 s 01 outrigged 0 001 & 01093323 a 0000 | rigged with a structure projecting from or over the side of a boat for various purposes; to prevent capsizing or to support an oarlock or to help secure a mast etc -01093850 00 s 01 square-rigged 0 001 & 01093323 a 0000 | rigged with square sails as the principal ones -01093956 00 a 01 unrigged 0 002 ;c 00314469 n 0000 ! 01093323 a 0101 | stripped of rigging -01094049 00 a 02 equipped 0 equipt 0 008 ! 01095555 a 0101 & 01094398 a 0000 & 01094647 a 0000 & 01094767 a 0000 & 01094855 a 0000 & 01095085 a 0000 & 01095277 a 0000 & 01095406 a 0000 | provided or fitted out with what is necessary or useful or appropriate; "a well equipped playground"; "a ship equipped with every mechanical aid to navigation" -01094398 00 s 02 accoutered 0 accoutred 0 002 & 01094049 a 0000 ;c 08199025 n 0000 | provided with necessary articles of equipment for a specialized purpose (especially military); "troops accoutered for battle"; "properly accoutered for the trip" -01094647 00 s 02 armored 0 panoplied 0 001 & 01094049 a 0000 | equipped with the complete arms and armor of a warrior -01094767 00 s 01 helmeted 0 001 & 01094049 a 0000 | equipped with or wearing a helmet -01094855 00 s 01 outfitted 0 001 & 01094049 a 0000 | equipped with appropriate wearing apparel and accessories; "children properly outfitted for school"; "equipt in the...national dress of the Scottish people"- Sir Walter Scott -01095085 00 s 01 prepared 0 001 & 01094049 a 0000 | equipped or prepared with necessary intellectual resources; "graduates well equipped to handle such problems"; "equipped to be a scholar" -01095277 00 s 02 transistorized 0 transistorised 0 001 & 01094049 a 0000 | (of an electronic device) equipped with transistors -01095406 00 s 01 visored 0 001 & 01094049 a 0000 | having or provided with a visor or a visor of a particular kind; "their spic, red-visored caps" -01095555 00 a 01 unequipped 0 002 ! 01094049 a 0101 & 01095785 a 0000 | without necessary physical or intellectual equipment; "guerrillas unequipped for a pitched battle"; "unequipped for jobs in a modern technological society" -01095785 00 s 01 ill-equipped 0 001 & 01095555 a 0000 | poorly supplied with physical equipment; "the school was ill-equipped" -01095914 00 a 02 fledged 0 mature 4 005 + 14424780 n 0201 + 14424780 n 0202 ! 01096471 a 0101 & 01096123 a 0000 & 01096308 a 0000 | (of birds) having developed feathers or plumage; often used in combination -01096123 00 s 02 fledgling(a) 0 fledgeling(a) 0 003 & 01095914 a 0000 + 01504179 n 0202 + 01504179 n 0101 | (of a young bird) having acquired its flight feathers; "a fledgling robin" -01096308 00 s 02 full-fledged 0 fully_fledged 0 001 & 01095914 a 0000 | (of a bird) having reached full development with fully grown adult plumage; ready to fly -01096471 00 a 02 unfledged 0 immature 4 002 ! 01095914 a 0101 & 01096648 a 0000 | (of birds) not yet having developed feathers; "a small unfledged sparrow on the window sill" -01096648 00 s 01 unfeathered 0 001 & 01096471 a 0000 | not having feathers; "the unfeathered brood" -01096750 00 a 01 framed 0 001 ! 01096889 a 0101 | provided with a frame; "there were framed snapshots of family and friends on her desk" -01096889 00 a 01 unframed 0 001 ! 01096750 a 0101 | not provided with a frame; "unframed pictures" -01096990 00 a 02 furnished 0 equipped 2 007 ;c 03405725 n 0000 ! 01098154 a 0101 & 01097315 a 0000 & 01097484 a 0000 & 01097690 a 0000 & 01097847 a 0000 & 01097966 a 0000 | provided with whatever is necessary for a purpose (as furniture or equipment or authority); "a furnished apartment"; "a completely furnished toolbox" -01097315 00 s 01 appointed 0 001 & 01096990 a 0000 | provided with furnishing and accessories (especially of a tasteful kind); "a house that is beautifully appointed" -01097484 00 s 02 fitted_out 0 outfitted 0 001 & 01096990 a 0000 | furnished with essential equipment for a particular occupation or undertaking occupation; "a well outfitted expedition to the South Pole" -01097690 00 s 02 stocked 0 stocked_with 0 001 & 01096990 a 0000 | furnished with more than enough; "rivers well stocked with fish"; "a well-stocked store" -01097847 00 s 01 volumed 0 001 & 01096990 a 0000 | furnished with volumes; "a large room volumed with ancient books" -01097966 00 s 02 well-appointed 0 well-found 0 001 & 01096990 a 0000 | having a full array of suitable equipment or furnishings; "a well-appointed kitchen"; "a well-appointed apartment" -01098154 00 a 01 unfurnished 0 001 ! 01096990 a 0101 | not equipped with what is needed especially furniture; "an unfurnished apartment" -01098293 00 a 01 funded 0 001 ! 01098390 a 0101 | furnished with funds; "well-funded research" -01098390 00 a 01 unfunded 0 001 ! 01098293 a 0101 | not furnished with funds; "an unfunded project" -01098492 00 a 01 fueled 0 006 ! 01099235 a 0101 & 01098678 a 0000 & 01098826 a 0000 & 01098941 a 0000 & 01099051 a 0000 & 01099134 a 0000 | heated, driven, or produced by burning fuel -01098678 00 s 01 clean-burning 0 001 & 01098492 a 0000 | leaving little contamination while consuming fuel; "natural gas is a clean-burning fuel" -01098826 00 s 02 coal-fired 0 coal-burning 0 001 & 01098492 a 0000 | fueled by burning coal; "a coal-fired ship" -01098941 00 s 02 wood-fired 0 wood-burning 0 001 & 01098492 a 0000 | fueled by wood; "a wood-burning stove' -01099051 00 s 01 liquid-fueled 0 001 & 01098492 a 0000 | fueled by a liquid fuel -01099134 00 s 01 oil-fired 0 001 & 01098492 a 0000 | fueled by burning oil; "an oil-fired furnace" -01099235 00 a 01 unfueled 0 003 ! 01098492 a 0101 & 01099348 a 0000 & 01099435 a 0000 | not provided with fuel -01099348 00 s 01 self-sustained 0 001 & 01099235 a 0000 | needing no outside support -01099435 00 s 01 unfed 0 001 & 01099235 a 0000 | not given support; "a grudge that remained unfed" -01099536 00 a 01 specified 0 004 ! 01100082 a 0101 & 01099707 a 0000 & 01099810 a 0000 & 01099951 a 0000 | clearly and explicitly stated; "meals are at specified times" -01099707 00 s 01 mere(a) 0 001 & 01099536 a 0000 | being nothing more than specified; "a mere child" -01099810 00 s 02 nominative 0 nominal 2 001 & 01099536 a 0000 | named; bearing the name of a specific person; "nominative shares of stock" -01099951 00 s 01 specific 0 002 & 01099536 a 0000 + 04762915 n 0101 | stated explicitly or in detail; "needed a specific amount" -01100082 00 a 01 unspecified 0 001 ! 01099536 a 0101 | not stated explicitly or in detail; "threatened unspecified reprisals" -01100210 00 a 01 geared 0 005 ! 01101118 a 0101 & 01100394 a 0000 & 01100595 a 0000 & 01100817 a 0000 & 01101022 a 0000 | equipped with or connected by gears or having gears engaged -01100394 00 s 02 back-geared 0 double-geared 2 001 & 01100210 a 0000 | (of a lathe) equipped with gearing for reducing the speed of the spindle from that of the driving pulley; "a back-geared lathe" -01100595 00 s 01 double-geared 0 001 & 01100210 a 0000 | equipped with compound gearing consisting of 2 pinions and 2 wheels in mesh to increase the mechanical advantage; "the double-geared lifting mechanism of a crane" -01100817 00 s 03 engaged 0 meshed 0 intermeshed 0 001 & 01100210 a 0000 | (used of toothed parts or gears) interlocked and interacting; "the gears are engaged"; "meshed gears"; "intermeshed twin rotors" -01101022 00 s 01 in_gear 0 001 & 01100210 a 0000 | having gears engaged; "the car is in gear" -01101118 00 a 01 ungeared 0 002 ! 01100210 a 0101 & 01101264 a 0000 | having gears not engaged or disconnected; "the machine's ungeared pinion" -01101264 00 s 01 out_of_gear(p) 0 001 & 01101118 a 0000 | not having gears engaged; "threw the machine's pinion out of gear" -01101391 00 a 01 general 0 016 ^ 00525453 a 0000 ^ 01839417 a 0000 ^ 00773759 a 0000 ^ 02278337 a 0000 = 04764412 n 0000 + 05818388 n 0101 + 04764412 n 0101 ! 01103021 a 0101 & 01101891 a 0000 & 01102058 a 0000 & 01102164 a 0000 & 01102308 a 0000 & 01102451 a 0000 & 01102568 a 0000 & 01102674 a 0000 & 01102876 a 0000 | applying to all or most members of a category or group; "the general public"; "general assistance"; "a general rule"; "in general terms"; "comprehensible to the general reader" -01101891 00 s 02 broad 0 unspecific 0 001 & 01101391 a 0000 | not detailed or specific; "a broad rule"; "the broad outlines of the plan"; "felt an unspecific dread" -01102058 00 s 02 general-purpose 0 all-purpose 0 001 & 01101391 a 0000 | not limited in use or function -01102164 00 s 01 generic 0 002 & 01101391 a 0000 + 05845013 n 0101 | applicable to an entire class or group; "is there a generic Asian mind?" -01102308 00 s 01 gross 0 001 & 01101391 a 0000 | lacking fine distinctions or detail; "the gross details of the structure appear reasonable" -01102451 00 s 01 overall 0 001 & 01101391 a 0000 | involving only main features; "the overall pattern of his life" -01102568 00 s 01 pandemic 0 001 & 01101391 a 0000 | existing everywhere; "pandemic fear of nuclear war" -01102674 00 s 01 universal 0 001 & 01101391 a 0000 | applicable to or common to all members of a group or set; "the play opened to universal acclaim"; "rap enjoys universal appeal among teenage boys" -01102876 00 s 01 widespread 0 001 & 01101391 a 0000 | widely circulated or diffused; "a widespread doctrine"; "widespread fear of nuclear war" -01103021 00 a 01 specific 0 013 ^ 01837744 a 0000 ^ 02277607 a 0000 = 04764412 n 0000 ! 01101391 a 0101 & 01103529 a 0000 & 01103676 a 0000 & 01103844 a 0000 & 01104026 a 0000 & 01104460 a 0000 & 01104709 a 0000 & 01104889 a 0000 & 01105042 a 0000 ! 01105620 a 0101 | (sometimes followed by `to') applying to or characterized by or distinguishing something particular or special or unique; "rules with specific application"; "demands specific to the job"; "a specific and detailed account of the accident" -01103529 00 s 01 ad_hoc 0 001 & 01103021 a 0000 | for or concerned with one specific purpose; "a coordinated policy instead of ad hoc decisions" -01103676 00 s 01 circumstantial 0 002 & 01103021 a 0000 + 14512817 n 0102 | fully detailed and specific about particulars; "a circumstantial report about the debate" -01103844 00 s 02 limited 0 special 0 003 & 01103021 a 0000 + 04763925 n 0202 + 05159225 n 0206 | having a specific function or scope; "a special (or specific) role in the mission" -01104026 00 s 03 particular(a) 0 peculiar(a) 0 special(a) 1 003 & 01103021 a 0000 + 04763925 n 0302 + 04762633 n 0101 | unique or specific to a person or thing or category; "the particular demands of the job"; "has a particular preference for Chinese art"; "a peculiar bond of sympathy between them"; "an expression peculiar to Canadians"; "rights peculiar to the rich"; "the special features of a computer"; "my own special chair" -01104460 00 s 01 particular(a) 2 002 & 01103021 a 0000 + 04762633 n 0101 | separate and distinct from others of the same group or category; "interested in one particular artist"; "a man who wishes to make a particular woman fall in love with him" -01104709 00 s 02 particularized 0 particularised 0 001 & 01103021 a 0000 | directed toward a specific object; "particularized thinking as distinct from stereotyped sloganeering" -01104889 00 s 01 proper(ip) 0 001 & 01103021 a 0000 | limited to the thing specified; "the city proper"; "his claim is connected with the deed proper" -01105042 00 s 01 unique(p) 0 002 & 01103021 a 0000 + 04763650 n 0102 | (followed by `to') applying exclusively to a given category or condition or locality; "a species unique to Australia" -01105233 00 a 01 specific 2 003 ;c 06043075 n 0000 ;c 06060845 n 0000 ! 01105620 a 0101 | being or affecting a disease produced by a particular microorganism or condition; used also of stains or dyes used in making microscope slides; "quinine is highly specific for malaria"; "a specific remedy"; "a specific stain is one having a specific affinity for particular structural elements" -01105620 00 a 01 nonspecific 0 004 ;c 06043075 n 0000 ;c 06060845 n 0000 ! 01103021 a 0101 ! 01105233 a 0101 | not caused by a specific agent; used also of staining in making microscope slides; "nonspecific enteritis" -01105840 00 a 01 national 1 003 + 07949463 n 0101 ! 01106405 a 0101 & 01106129 a 0000 | concerned with or applicable to or belonging to an entire nation or country; "the national government"; "national elections"; "of national concern"; "the national highway system"; "national forests" -01106129 00 s 01 federal 0 001 & 01105840 a 0000 | national; especially in reference to the government of the United States as distinct from that of its member units; "the Federal Bureau of Investigation"; "federal courts"; "the federal highway program"; "federal property" -01106405 00 a 01 local 1 001 ! 01105840 a 0101 | relating to or applicable to or concerned with the administration of a city or town or district rather than a larger area; "local taxes"; "local authorities" -01106614 00 a 02 cosmopolitan 0 widely_distributed 2 002 ;c 06070929 n 0000 ! 01106815 a 0101 | growing or occurring in many parts of the world; "a cosmopolitan herb"; "cosmopolitan in distribution" -01106815 00 a 01 endemic 2 002 ;c 06070929 n 0000 ! 01106614 a 0101 | native to or confined to a certain region; "the islands have a number of interesting endemic species" -01106989 00 a 02 branchiate 0 gilled 0 001 ! 01107094 a 0101 | provided with gills; "a gilled tadpole" -01107094 00 a 04 abranchiate 0 abranchial 0 abranchious 0 gill-less 0 001 ! 01106989 a 0101 | having no gills -01107206 00 a 01 federal 0 002 ;c 01124794 n 0000 ! 01107521 a 0101 | characterized by or constituting a form of government in which power is divided between one central and several regional authorities; "a federal system like that of the United States"; "federal governments often evolved out of confederations" -01107521 00 a 01 unitary 0 002 ;c 01124794 n 0000 ! 01107206 a 0101 | characterized by or constituting a form of government in which power is held by one central authority; "a unitary as opposed to a federal form of government" -01107751 00 a 02 centralized 0 centralised 0 001 ! 01107973 a 0101 | drawn toward a center or brought under the control of a central authority; "centralized control of emergency relief efforts"; "centralized government" -01107973 00 a 02 decentralized 0 decentralised 0 004 ! 01107751 a 0101 & 01108276 a 0000 & 01108427 a 0000 & 01108586 a 0000 | withdrawn from a center or place of concentration; especially having power or function dispersed from a central to local authorities; "a decentralized school administration" -01108276 00 s 02 localized 0 localised 0 001 & 01107973 a 0000 | made local or oriented locally; "a decentralized and localized political authority" -01108427 00 s 01 redistributed 0 001 & 01107973 a 0000 | having population and industries relocated from urban to outlying areas; "redistributed industries" -01108586 00 s 02 suburbanized 0 suburbanised 0 001 & 01107973 a 0000 | surrounded by many suburbs; "a highly suburbanized city" -01108716 00 a 01 technical 0 001 ! 01109096 a 0101 | characterizing or showing skill in or specialized knowledge of applied arts and sciences; "a technical problem"; "highly technical matters hardly suitable for the general public"; "a technical report"; "producing the A-bomb was a challenge to the technical people of this country"; "technical training"; "technical language" -01109096 00 a 02 nontechnical 0 untechnical 0 001 ! 01108716 a 0101 | not characteristic of or skilled in applied arts and sciences; "nontechnical aspects of the job"; "nontechnical training"; "an untechnical reader"; "in clear effective nontechnical language" -01109359 00 a 01 nonproprietary 0 003 ! 01109914 a 0101 & 01109599 a 0000 & 01109782 a 0000 | not protected by trademark or patent or copyright; "nonproprietary products are in the public domain and anyone can produce or distribute them" -01109599 00 s 01 generic 0 002 & 01109359 a 0000 ;c 03247620 n 0000 | (of drugs) not protected by trademark; "`Acetaminophen' is the generic form of the proprietary drug `Tylenol'" -01109782 00 s 01 unpatented 0 001 & 01109359 a 0000 | (of devices and processes) not protected by patent; "unpatented inventions" -01109914 00 a 01 proprietary 0 006 + 10388924 n 0102 ! 01109359 a 0101 & 01110251 a 0000 & 01110470 a 0000 & 01110686 a 0000 & 01110819 a 0000 | protected by trademark or patent or copyright; made or produced or distributed by one having exclusive rights; "`Tylenol' is a proprietary drug of which `acetaminophen' is the generic form" -01110251 00 s 01 branded 0 001 & 01109914 a 0000 | (of goods and merchandise) marked or labeled by a distinctive word or symbol indicating exclusive rights; "branded merchandise is that bearing a standard brand name" -01110470 00 s 01 copyrighted 0 003 & 01109914 a 0000 ;c 06364641 n 0000 ;c 07020895 n 0000 | (of literary or musical or dramatic or artistic work) protected by copyright; "permission to publish copyright material" -01110686 00 s 01 patented 0 001 & 01109914 a 0000 | (of devices and processes) protected by patent; "they are patented inventions" -01110819 00 s 01 trademarked 0 001 & 01109914 a 0000 | (of goods and merchandise) labeled with proprietary (and legally registered) identification guaranteeing exclusive use; "trademarked goods" -01111016 00 a 01 generous 1 011 ^ 00359459 a 0000 ^ 01114434 a 0000 ^ 02099019 a 0000 = 04831727 n 0000 + 04831727 n 0102 + 01085937 n 0101 ! 01112573 a 0101 & 01111312 a 0000 & 01111418 a 0000 & 01111965 a 0000 & 01112471 a 0000 | willing to give and share unstintingly; "a generous donation" -01111312 00 s 02 benevolent 0 freehearted 0 001 & 01111016 a 0000 | generous in providing aid to others -01111418 00 s 09 big 0 bighearted 0 bounteous 0 bountiful 0 freehanded 0 handsome 0 giving 0 liberal 0 openhanded 0 008 & 01111016 a 0000 + 04832716 n 0905 + 04832518 n 0802 + 04832518 n 0801 + 05115418 n 0402 + 04832244 n 0301 + 04832244 n 0302 + 04832401 n 0201 | given or giving freely; "was a big tipper"; "the bounteous goodness of God"; "bountiful compliments"; "a freehanded host"; "a handsome allowance"; "Saturday's child is loving and giving"; "a liberal backer of the arts"; "a munificent gift"; "her fond and openhanded grandfather" -01111965 00 s 07 lavish 0 munificent 0 overgenerous 0 too-generous 0 unsparing 0 unstinted 0 unstinting 0 004 & 01111016 a 0000 + 04832716 n 0201 + 05146471 n 0101 + 00743641 n 0103 | very generous; "distributed gifts with a lavish hand"; "the critics were lavish in their praise"; "a munificent gift"; "his father gave him a half-dollar and his mother a quarter and he thought them munificent"; "prodigal praise"; "unsparing generosity"; "his unstinted devotion"; "called for unstinting aid to Britain" -01112471 00 s 01 unselfish 0 003 & 01111016 a 0000 + 04832951 n 0101 + 01085937 n 0102 | not greedy -01112573 00 a 02 stingy 0 ungenerous 4 013 ^ 02098325 a 0000 ^ 00359862 a 0000 ^ 01115081 a 0000 = 04831727 n 0000 + 04833458 n 0101 ! 01111016 a 0101 & 01112969 a 0000 & 01113114 a 0000 & 01113225 a 0000 & 01113505 a 0000 & 01113636 a 0000 & 01113807 a 0000 & 01114116 a 0000 | unwilling to spend; "she practices economy without being stingy"; "an ungenerous response to the appeal for funds" -01112969 00 s 02 beggarly 0 mean 1 002 & 01112573 a 0000 + 04833687 n 0201 | (used of sums of money) so small in amount as to deserve contempt -01113114 00 s 03 cheap 0 chinchy 0 chintzy 0 002 & 01112573 a 0000 + 04818460 n 0101 | embarrassingly stingy -01113225 00 s 05 cheeseparing 0 close 0 near 0 penny-pinching 0 skinny 0 003 & 01112573 a 0000 + 04893525 n 0404 + 04833687 n 0209 | giving or spending with reluctance; "our cheeseparing administration"; "very close (or near) with his money"; "a penny-pinching miserly old man" -01113505 00 s 03 closefisted 0 hardfisted 0 tightfisted 0 002 & 01112573 a 0000 + 04833687 n 0308 | unwilling to part with money -01113636 00 s 03 grudging 0 niggardly 0 scrimy 0 003 & 01112573 a 0000 + 10357737 n 0201 + 04833687 n 0203 | petty or reluctant in giving or spending; "a niggardly tip" -01113807 00 s 04 mean 2 mingy 0 miserly 0 tight 0 007 & 01112573 a 0000 + 04833687 n 0407 + 10322084 n 0301 + 04834228 n 0301 + 04833687 n 0202 + 04833687 n 0101 + 04845684 n 0102 | (used of persons or behavior) characterized by or indicative of lack of generosity; "a mean person"; "he left a miserly tip" -01114116 00 s 02 parsimonious 0 penurious 0 006 & 01112573 a 0000 + 04834339 n 0201 + 04833687 n 0105 + 04893525 n 0101 + 04833687 n 0106 + 04893525 n 0102 | excessively unwilling to spend; "parsimonious thrift relieved by few generous impulses"; "lived in a most penurious manner--denying himself every indulgence" -01114434 00 a 01 generous 2 006 ^ 01111016 a 0000 + 04831727 n 0102 + 04831727 n 0101 ! 01115081 a 0101 & 01114658 a 0000 & 01114973 a 0000 | not petty in character and mind; "unusually generous in his judgment of people" -01114658 00 s 03 big 0 large 0 magnanimous 0 003 & 01114434 a 0000 + 04870340 n 0303 + 04832716 n 0304 | generous and understanding and tolerant; "a heart big enough to hold no grudges"; "that's very big of you to be so forgiving"; "a large and generous spirit"; "a large heart"; "magnanimous toward his enemies" -01114973 00 s 01 ungrudging 0 001 & 01114434 a 0000 | without envy or reluctance; "ungrudging admiration" -01115081 00 a 02 ungenerous 0 meanspirited 2 002 ^ 01112573 a 0000 ! 01114434 a 0101 | lacking in magnanimity; "it seems ungenerous to end this review of a splendid work of scholarship on a critical note"- Times Litt. Sup.; "a meanspirited man unwilling to forgive" -01115349 00 a 02 genuine 0 echt 0 010 ^ 01222360 a 0000 ^ 01932973 a 0000 ^ 02179279 a 0000 ^ 02460502 a 0000 + 04783247 n 0102 ! 01116380 a 0101 & 01115635 a 0000 & 01115920 a 0000 & 01116026 a 0000 & 01116118 a 0000 | not fake or counterfeit; "a genuine Picasso"; "genuine leather" -01115635 00 s 04 authentic 0 bona_fide 0 unquestionable 0 veritable 0 003 & 01115349 a 0000 + 04754862 n 0304 + 04783247 n 0101 | not counterfeit or copied; "an authentic signature"; "a bona fide manuscript"; "an unquestionable antique"; "photographs taken in a veritable bull ring" -01115920 00 s 03 attested 0 authenticated 0 documented 0 001 & 01115349 a 0000 | established as genuine -01116026 00 s 02 good 0 honest 0 001 & 01115349 a 0000 | not forged; "a good dollar bill" -01116118 00 s 04 honest-to-god 0 honest-to-goodness 0 old(a) 0 sure-enough(a) 0 001 & 01115349 a 0000 | (used informally especially for emphasis); "a real honest-to-god live cowboy"; "had us a high old time"; "went upriver to look at a sure-enough fish wheel" -01116380 00 a 02 counterfeit 0 imitative 4 016 ^ 01571363 a 0000 ^ 02461723 a 0000 ^ 02180797 a 0000 ^ 01934554 a 0000 + 01694263 v 0201 ! 01115349 a 0101 & 01116857 a 0000 & 01117226 a 0000 & 01117362 a 0000 & 01117477 a 0000 & 01117677 a 0000 & 01117823 a 0000 & 01117942 a 0000 & 01118118 a 0000 & 01118232 a 0000 & 01118409 a 0000 | not genuine; imitating something superior; "counterfeit emotion"; "counterfeit money"; "counterfeit works of art"; "a counterfeit prince" -01116857 00 s 07 assumed 0 false 0 fictitious 0 fictive 0 pretended 0 put_on 0 sham 0 005 & 01116380 a 0000 + 10201535 n 0707 + 03318438 n 0702 + 06757891 n 0302 + 04867871 n 0202 | adopted in order to deceive; "an assumed name"; "an assumed cheerfulness"; "a fictitious address"; "fictive sympathy"; "a pretended interest"; "a put-on childish voice"; "sham modesty" -01117226 00 s 02 bad 0 forged 0 001 & 01116380 a 0000 | reproduced fraudulently; "like a bad penny..."; "a forged twenty dollar bill" -01117362 00 s 01 base 0 001 & 01116380 a 0000 | debased; not genuine; "an attempt to eliminate the base coinage" -01117477 00 s 05 bogus 0 fake 0 phony 0 phoney 0 bastard 0 005 & 01116380 a 0000 + 02804772 n 0501 + 10195593 n 0405 + 10195593 n 0304 + 10201535 n 0204 | fraudulent; having a misleading appearance -01117677 00 s 03 inauthentic 0 unauthentic 0 spurious 0 002 & 01116380 a 0000 + 13960833 n 0301 | intended to deceive; "a spurious work of art" -01117823 00 s 01 mock 0 001 & 01116380 a 0000 | constituting a copy or imitation of something; "boys in mock battle" -01117942 00 s 02 ostensible 0 ostensive 0 001 & 01116380 a 0000 | represented or appearing as such; pretended; "His ostensible purpose was charity, his real goal popularity" -01118118 00 s 01 pinchbeck 0 001 & 01116380 a 0000 | serving as an imitation or substitute; "pinchbeck heroism" -01118232 00 s 01 pseudo 0 002 & 01116380 a 0000 ;u 06307152 n 0000 | (often used in combination) not genuine but having the appearance of; "a pseudo esthete"; "pseudoclassic" -01118409 00 s 01 synthetic 0 001 & 01116380 a 0000 | not genuine or natural; "counterfeit rhetoric that flourishes when passions are synthetic"- George Will -01118568 00 a 01 geocentric 0 002 ! 01118928 a 0101 & 01118673 a 0000 | having the earth as the center -01118673 00 s 01 Ptolemaic 0 001 & 01118568 a 0000 | of or relating to the geocentric Ptolemaic system; "in the Ptolemaic system of planetary motion the earth is fixed as the center of the universe with the sun and moon and planets revolving around it" -01118928 00 a 01 heliocentric 0 002 ! 01118568 a 0101 & 01119033 a 0000 | having the sun as the center -01119033 00 s 01 Copernican 0 001 & 01118928 a 0000 | according to Copernicus; "in the Copernican system the earth and other planets revolve around the sun" -01119192 00 a 02 talented 0 gifted 0 001 ! 01119305 a 0101 | endowed with talent or talents; "a gifted writer" -01119305 00 a 02 untalented 0 talentless 0 002 + 05647772 n 0201 ! 01119192 a 0101 | devoid of talent; not gifted -01119421 00 a 02 glazed 0 shiny 4 007 + 04953954 n 0203 + 04954683 n 0201 ! 01120398 a 0101 & 01119661 a 0000 & 01119937 a 0000 & 01120010 a 0000 & 01120242 a 0000 | having a shiny surface or coating; "glazed fabrics"; "glazed doughnuts" -01119661 00 s 03 glassy 0 vitreous 0 vitrified 0 002 & 01119421 a 0000 ;c 00935247 n 0000 | (of ceramics) having the surface made shiny and nonporous by fusing a vitreous solution to it; "glazed pottery"; "glassy porcelain"; "hard vitreous china used for plumbing fixtures" -01119937 00 s 01 glass-like 0 001 & 01119421 a 0000 | resembling glass -01120010 00 s 02 glossy 0 calendered 0 002 & 01119421 a 0000 + 04955160 n 0103 | (of paper and fabric and leather) having a surface made smooth and glossy especially by pressing between rollers; "calendered paper"; "glossy paper" -01120242 00 s 01 icy 0 002 & 01119421 a 0000 + 05015463 n 0102 | shiny and slick as with a thin coating of ice; "roads and trees glazed with an icy film" -01120398 00 a 01 unglazed 0 002 ! 01119421 a 0101 & 01120515 a 0000 | not having a shiny coating; "unglazed paper" -01120515 00 s 01 unvitrified 0 002 & 01120398 a 0000 ;c 00935247 n 0000 | (of ceramics) lacking a vitreous finish; "unvitrified pottery" -01120654 00 a 02 glazed 1 glassed 0 001 ! 01120766 a 0101 | fitted or covered with glass; "four glazed walls" -01120766 00 a 02 unglazed 1 glassless 0 001 ! 01120654 a 0101 | not furnished with glass; "windows were unglazed to admit as much light and air as possible" -01120925 00 a 01 glorious 0 010 ^ 01375174 a 0000 + 14437134 n 0101 ! 01122411 a 0101 & 01121238 a 0000 & 01121402 a 0000 & 01121507 a 0000 & 01121757 a 0000 & 01121989 a 0000 & 01122121 a 0000 & 01122269 a 0000 | having or deserving or conferring glory; "a long and glorious career"; "our glorious literature" -01121238 00 s 01 bright 0 001 & 01120925 a 0000 | splendid; "the bright stars of stage and screen"; "a bright moment in history"; "the bright pageantry of court" -01121402 00 s 03 celebrated 0 historied 0 storied 0 001 & 01120925 a 0000 | having an illustrious past -01121507 00 s 03 divine 0 elysian 0 inspired 0 001 & 01120925 a 0000 | being of such surpassing excellence as to suggest inspiration by the gods; "her pies were simply divine"; "the divine Shakespeare"; "an elysian meal"; "an inspired performance" -01121757 00 s 03 empyreal 0 empyrean 0 sublime 0 001 & 01120925 a 0000 | inspiring awe; "well-meaning ineptitude that rises to empyreal absurdity"- M.S.Dworkin; "empyrean aplomb"- Hamilton Basso; "the sublime beauty of the night" -01121989 00 s 01 illustrious 0 002 & 01120925 a 0000 + 05169601 n 0102 | having or conferring glory; "an illustrious achievement" -01122121 00 s 01 incandescent 0 001 & 01120925 a 0000 | characterized by ardent emotion or intensity or brilliance; "an incandescent performance" -01122269 00 s 01 lustrous 0 001 & 01120925 a 0000 | brilliant; "set a lustrous example for others to follow"; "lustrous actors of the time" -01122411 00 a 01 inglorious 0 004 ^ 01227137 a 0000 ^ 01376894 a 0000 ! 01120925 a 0101 & 01122595 a 0000 | not bringing honor and glory; "some mute inglorious Milton here may rest" -01122595 00 s 03 obscure 0 unknown 0 unsung 0 003 & 01122411 a 0000 + 14436029 n 0101 + 14436438 n 0103 | not famous or acclaimed; "an obscure family"; "unsung heroes of the war" -01122776 00 a 01 go 0 002 ! 01123002 a 0101 & 01122907 a 0000 | functioning correctly and ready for action; "all systems are go" -01122907 00 s 02 a-ok(p) 0 a-okay(p) 0 001 & 01122776 a 0000 | in perfect condition or order -01123002 00 a 01 no-go 0 001 ! 01122776 a 0101 | not functioning properly or in suitable condition for proceeding; "the space launch was no-go" -01123148 00 a 01 good 1 018 ^ 00227507 a 0000 ^ 00230335 a 0000 ^ 00995775 a 0000 ^ 01129977 a 0000 ^ 01612053 a 0000 ^ 01993140 a 0000 = 04723816 n 0000 + 05142180 n 0102 ! 01125429 a 0101 & 01123879 a 0000 & 01124192 a 0000 & 01124342 a 0000 & 01124441 a 0000 & 01124574 a 0000 & 01124768 a 0000 & 01125006 a 0000 & 01125154 a 0000 & 01125241 a 0000 | having desirable or positive qualities especially those suitable for a thing specified; "good news from the hospital"; "a good report card"; "when she was good she was very very good"; "a good knife is one good for cutting"; "this stump will make a good picnic table"; "a good check"; "a good joke"; "a good exterior paint"; "a good secretary"; "a good dress for the office" -01123879 00 s 0f bang-up 0 bully 0 corking 0 cracking 0 dandy 0 great 0 groovy 0 keen 0 neat 0 nifty 0 not_bad(p) 0 peachy 0 slap-up 0 swell 0 smashing 0 002 & 01123148 a 0000 ;u 07075172 n 0000 | very good; "he did a bully job"; "a neat sports car"; "had a great time at the party"; "you look simply smashing" -01124192 00 s 01 good_enough 0 001 & 01123148 a 0000 | adequately good for the circumstances; "if it's good enough for you it's good enough for me" -01124342 00 s 01 goodish 0 001 & 01123148 a 0000 | moderately good of its kind; "a goodish wine" -01124441 00 s 01 hot 0 001 & 01123148 a 0000 | very good; often used in the negative; "he's hot at math but not so hot at history" -01124574 00 s 01 redeeming(a) 0 001 & 01123148 a 0000 | compensating for some fault or defect; "the redeeming feature of the plan is its simplicity"; "his saving grace was his sense of humor" -01124768 00 s 02 satisfactory 0 acceptable 0 007 & 01123148 a 0000 + 02209936 v 0202 + 04792679 n 0201 + 04792679 n 0202 + 04792127 n 0101 + 02671880 v 0101 + 01183573 v 0102 | meeting requirements; "the step makes a satisfactory seat" -01125006 00 s 01 solid 0 002 & 01123148 a 0000 + 04671075 n 0102 | characterized by good substantial quality; "solid comfort"; "a solid base hit" -01125154 00 s 01 superb 0 001 & 01123148 a 0000 | surpassingly good; "a superb meal" -01125241 00 s 02 well-behaved 0 well_behaved 0 001 & 01123148 a 0000 | (usually of children) someone who behaves in a manner that the speaker believes is correct; "a well-behaved child" -01125429 00 a 01 bad 0 029 ^ 01613463 a 0000 ^ 01131043 a 0000 ^ 00996448 a 0000 ^ 00231252 a 0000 ^ 00229630 a 0000 = 04723816 n 0000 + 05144079 n 0102 ! 01123148 a 0101 & 01126291 a 0000 & 01126683 a 0000 & 01126841 a 0000 & 01127147 a 0000 & 01127302 a 0000 & 01127440 a 0000 & 01127661 a 0000 & 01127782 a 0000 & 01128010 a 0000 & 01128103 a 0000 & 01128253 a 0000 & 01128406 a 0000 & 01128508 a 0000 & 01128719 a 0000 & 01128871 a 0000 & 01129021 a 0000 & 01129185 a 0000 & 01129371 a 0000 & 01129533 a 0000 & 01129644 a 0000 & 01129823 a 0000 | having undesirable or negative qualities; "a bad report card"; "his sloppy appearance made a bad impression"; "a bad little boy"; "clothes in bad shape"; "a bad cut"; "bad luck"; "the news was very bad"; "the reviews were bad"; "the pay is bad"; "it was a bad light for reading"; "the movie was a bad choice" -01126291 00 s 07 atrocious 0 abominable 0 awful 0 dreadful 0 painful 0 terrible 1 unspeakable 0 004 & 01125429 a 0000 + 04782116 n 0604 + 04782116 n 0402 + 04782116 n 0301 | exceptionally bad or displeasing; "atrocious taste"; "abominable workmanship"; "an awful voice"; "dreadful manners"; "a painful performance"; "terrible handwriting"; "an unspeakable odor came sweeping into the room" -01126683 00 s 02 corked 0 corky 0 002 & 01125429 a 0000 + 03108853 n 0201 | (of wine) tainted in flavor by a cork containing excess tannin; "a corked port" -01126841 00 s 06 deplorable 0 distressing 0 lamentable 0 pitiful 0 sad 0 sorry 0 004 & 01125429 a 0000 + 05140278 n 0602 + 04631470 n 0503 + 00911350 v 0302 | bad; unfortunate; "my finances were in a deplorable state"; "a lamentable decision"; "her clothes were in sad shape"; "a sorry state of affairs" -01127147 00 s 02 fearful 0 frightful 0 002 & 01125429 a 0000 + 04782466 n 0201 | extremely distressing; "fearful slum conditions"; "a frightful mistake" -01127302 00 s 02 hard 0 tough 0 002 & 01125429 a 0000 + 04639732 n 0109 | unfortunate or hard to bear; "had hard luck"; "a tough break" -01127440 00 s 01 hopeless 1 002 & 01125429 a 0000 ;u 07075172 n 0000 | (informal to emphasize how bad it is) beyond hope of management or reform; "she handed me a hopeless jumble of papers"; "he is a hopeless romantic" -01127661 00 s 01 horrid 0 002 & 01125429 a 0000 + 04782116 n 0103 | exceedingly bad; "when she was bad she was horrid" -01127782 00 s 07 icky 0 crappy 0 lousy 0 rotten 3 shitty 0 stinking 0 stinky 0 005 & 01125429 a 0000 ;u 07075172 n 0000 + 05140793 n 0505 + 04781349 n 0305 + 06611376 n 0206 | very bad; "a lousy play"; "it's a stinking world" -01128010 00 s 01 ill 0 001 & 01125429 a 0000 | distressing; "ill manners"; "of ill repute" -01128103 00 s 02 incompetent 0 unskilled 0 003 & 01125429 a 0000 + 05154241 n 0102 + 05154241 n 0101 | not doing a good job; "incompetent at chess" -01128253 00 s 01 mediocre 0 002 & 01125429 a 0000 + 10569179 n 0102 | poor to middling in quality; "there have been good and mediocre and bad artists" -01128406 00 s 01 naughty 0 002 & 01125429 a 0000 + 04909563 n 0101 | badly behaved; "a naughty boy" -01128508 00 s 01 negative 0 002 & 01125429 a 0000 + 05167618 n 0102 | having the quality of something harmful or unpleasant; "ran a negative campaign"; "delinquents retarded by their negative outlook on life" -01128719 00 s 01 poor 0 002 & 01125429 a 0000 + 04730797 n 0101 | unsatisfactory; "a poor light for reading"; "poor morale"; "expectations were poor" -01128871 00 s 01 pretty 0 002 & 01125429 a 0000 ;u 07106246 n 0000 | (used ironically) unexpectedly bad; "a pretty mess"; "a pretty kettle of fish" -01129021 00 s 02 rubber 0 no-good 0 003 & 01125429 a 0000 ;u 07075172 n 0000 ;c 01100273 n 0000 | returned for lack of funds; "a rubber check"; "a no-good check" -01129185 00 s 01 severe 1 003 & 01125429 a 0000 + 05036715 n 0103 + 05036715 n 0102 | very bad in degree or extent; "a severe worldwide depression"; "the house suffered severe damage" -01129371 00 s 01 swingeing 0 002 & 01125429 a 0000 ;r 08860123 n 0000 | severe; punishingly bad; "swingeing taxation"; "swingeing damages awarded by the judge" -01129533 00 s 01 uncool 0 002 & 01125429 a 0000 ;u 07157273 n 0000 | (spoken slang) unfashionable and boring -01129644 00 s 02 unfavorable 0 unfavourable 0 003 & 01125429 a 0000 + 05161967 n 0202 + 05161967 n 0101 | not favorable; "made an unfavorable impression"; "unfavorable reviews" -01129823 00 s 01 unsuitable 0 002 & 01125429 a 0000 + 04721058 n 0102 | not conducive to good moral development; "the movie is unsuitable for children" -01129977 00 a 01 good 2 013 ^ 01123148 a 0000 ^ 01548193 a 0000 ^ 02034828 a 0000 ^ 02036578 a 0000 ^ 02513269 a 0000 ^ 02584981 a 0000 = 04849241 n 0000 + 04849241 n 0102 ! 01131043 a 0101 & 01130261 a 0000 & 01130614 a 0000 & 01130733 a 0000 & 01130932 a 0000 | morally admirable -01130261 00 s 06 angelic 0 angelical 0 beatific 0 saintlike 0 saintly 0 sainted 0 005 & 01129977 a 0000 + 10547145 n 0501 + 10546850 n 0501 + 04848383 n 0501 + 10546850 n 0204 | marked by utter benignity; resembling or befitting an angel or saint; "angelic beneficence"; "a beatific smile"; "a saintly concern for his fellow men"; "my sainted mother" -01130614 00 s 01 goody-goody 0 002 & 01129977 a 0000 + 10139206 n 0101 | affectedly or smugly good or self-righteous -01130733 00 s 03 redemptive 0 redeeming(a) 1 saving(a) 0 002 & 01129977 a 0000 + 02551602 v 0102 | bringing about salvation or redemption from sin; "saving faith"; "redemptive (or redeeming) love" -01130932 00 s 01 white 0 001 & 01129977 a 0000 | benevolent; without malicious intent; "that's white of you" -01131043 00 a 01 evil 0 017 ^ 01125429 a 0000 ^ 01549291 a 0000 ^ 01624633 a 0000 ^ 02037272 a 0000 ^ 02513740 a 0000 ^ 02035337 a 0000 = 04852088 n 0000 + 04852088 n 0102 ! 01129977 a 0101 & 01131454 a 0000 & 01131803 a 0000 & 01131935 a 0000 & 01132366 a 0000 & 01132515 a 0000 & 01133017 a 0000 & 01133374 a 0000 & 01133784 a 0000 | morally bad or wrong; "evil purposes"; "an evil influence"; "evil deeds" -01131454 00 s 04 atrocious 0 flagitious 0 grievous 0 monstrous 0 006 & 01131043 a 0000 + 10329945 n 0401 + 07367231 n 0401 + 04830343 n 0101 + 00424767 n 0101 + 04830343 n 0102 | shockingly brutal or cruel; "murder is an atrocious crime"; "a grievous offense against morality"; "a grievous crime"; "no excess was too monstrous for them to commit" -01131803 00 s 01 bad 0 002 & 01131043 a 0000 + 05144079 n 0102 | characterized by wickedness or immorality; "led a very bad life" -01131935 00 s 03 black 0 dark 0 sinister 0 003 & 01131043 a 0000 + 14563564 n 0204 + 14563564 n 0203 | stemming from evil characteristics or forces; wicked or dishonorable; "black deeds"; "a black lie"; "his black heart has concocted yet another black deed"; "Darth Vader of the dark side"; "a dark purpose"; "dark undercurrents of ethnic hostility"; "the scheme of some sinister intelligence bent on punishing him"-Thomas Hardy -01132366 00 s 03 corruptive 0 perversive 0 pestiferous 0 003 & 01131043 a 0000 + 02579447 v 0202 + 02579447 v 0101 | tending to corrupt or pervert -01132515 00 s 08 demonic 0 diabolic 0 diabolical 0 fiendish 0 hellish 0 infernal 0 satanic 0 unholy 0 004 & 01131043 a 0000 + 04855840 n 0801 + 10329945 n 0203 + 10329945 n 0104 | extremely evil or cruel; expressive of cruelty or befitting hell; "something demonic in him--something that could be cruel"; "fires lit up a diabolic scene"; "diabolical sorcerers under the influence of devils"; "a fiendish despot"; "hellish torture"; "infernal instruments of war"; "satanic cruelty"; "unholy grimaces" -01133017 00 s 07 despicable 0 ugly 0 vile 0 slimy 0 unworthy 0 worthless 0 wretched 0 006 & 01131043 a 0000 + 04807776 n 0501 + 04781349 n 0403 + 04852750 n 0204 + 04807971 n 0104 + 04807971 n 0105 | morally reprehensible; "would do something as despicable as murder"; "ugly crimes"; "the vile development of slavery appalled them"; "a slimy little liar" -01133374 00 s 05 devilish 0 diabolic 2 diabolical 2 mephistophelian 0 mephistophelean 0 005 & 01131043 a 0000 + 09601769 n 0501 + 09601769 n 0401 + 10169419 n 0203 + 10329945 n 0203 | showing the cunning or ingenuity or wickedness typical of a devil; "devilish schemes"; "the cold calculation and diabolic art of some statesmen"; "the diabolical expression on his face"; "a mephistophelian glint in his eye" -01133784 00 s 01 evil-minded 0 001 & 01131043 a 0000 | having evil thoughts or intentions -01133876 00 a 01 good-natured 0 008 ^ 01372049 a 0000 ^ 01800349 a 0000 ^ 00089051 a 0000 = 04623113 n 0000 + 04631067 n 0104 ! 01134769 a 0101 & 01134232 a 0000 & 01134486 a 0000 | having an easygoing and cheerful disposition; "too good-natured to resent a little criticism"; "the good-natured policeman on our block"; "the sounds of good-natured play" -01134232 00 s 03 amiable 0 good-humored 0 good-humoured 0 006 & 01133876 a 0000 + 04631067 n 0303 + 04631067 n 0202 + 07551691 n 0104 + 04654652 n 0103 + 04654652 n 0104 | disposed to please; "an amiable villain with a cocky sidelong grin"- Hal Hinson -01134486 00 s 04 equable 0 even-tempered 0 good-tempered 0 placid 0 004 & 01133876 a 0000 + 04904352 n 0403 + 07515169 n 0402 + 04631067 n 0301 | not easily irritated; "an equable temper"; "not everyone shared his placid temperament"; "remained placid despite the repeated delays" -01134769 00 a 01 ill-natured 0 023 ^ 01801600 a 0000 = 04623113 n 0000 ! 01133876 a 0101 & 01135269 a 0000 & 01135420 a 0000 & 01135673 a 0000 & 01135914 a 0000 & 01136127 a 0000 & 01136248 a 0000 & 01136541 a 0000 & 01137000 a 0000 & 01137289 a 0000 & 01137378 a 0000 & 01137882 a 0000 & 01137994 a 0000 & 01138161 a 0000 & 01138316 a 0000 & 01138450 a 0000 & 01138610 a 0000 & 01138770 a 0000 & 01138902 a 0000 & 01139067 a 0000 & 01139245 a 0000 | having an irritable and unpleasant disposition -01135269 00 s 04 atrabilious 0 bilious 0 dyspeptic 0 liverish 0 002 & 01134769 a 0000 + 14062565 n 0201 | irritable as if suffering from indigestion -01135420 00 s 04 bristly 0 prickly 0 splenetic 0 waspish 0 002 & 01134769 a 0000 + 07552549 n 0303 | very irritable; "bristly exchanges between the White House and the press"; "he became prickly and spiteful"; "witty and waspish about his colleagues" -01135673 00 s 03 cantankerous 0 crotchety 0 ornery 0 004 & 01134769 a 0000 + 04909270 n 0302 + 04797824 n 0205 + 04641869 n 0202 | having a difficult and contrary disposition; "a cantankerous and venomous-tongued old lady"- Dorothy Sayers -01135914 00 s 06 choleric 0 irascible 0 hotheaded 0 hot-tempered 0 quick-tempered 0 short-tempered 0 003 & 01134769 a 0000 + 07552549 n 0201 + 07516354 n 0102 | quickly aroused to anger; "a hotheaded commander" -01136127 00 s 01 churlish 0 001 & 01134769 a 0000 | having a bad disposition; surly; "churlish as a bear"- Shakespeare -01136248 00 s 08 crabbed 0 crabby 0 cross 0 fussy 0 grouchy 0 grumpy 0 bad-tempered 0 ill-tempered 0 009 & 01134769 a 0000 + 10148305 n 0602 + 04641869 n 0604 + 10148305 n 0501 + 07552729 n 0404 + 04641700 n 0303 + 09974054 n 0201 + 04641700 n 0201 + 04641700 n 0102 | annoyed and irritable -01136541 00 s 0c cranky 0 fractious 0 irritable 0 nettlesome 0 peevish 0 peckish 0 pettish 0 petulant 0 scratchy 0 testy 0 tetchy 0 techy 0 011 & 01134769 a 0000 + 07553016 n 0b03 + 07553016 n 0a01 + 07552729 n 0806 + 04642258 n 0705 + 07552729 n 0505 + 07552729 n 0301 + 04642258 n 0303 + 04908396 n 0202 + 10148305 n 0103 + 04641869 n 0101 | easily irritated or annoyed; "an incorrigibly fractious young man"; "not the least nettlesome of his countrymen" -01137000 00 s 05 crusty 0 curmudgeonly 0 gruff 0 ill-humored 0 ill-humoured 0 004 & 01134769 a 0000 + 04915462 n 0304 + 09984047 n 0201 + 04915866 n 0101 | brusque and surly and forbidding; "crusty remarks"; "a crusty old man"; "his curmudgeonly temper"; "gruff manner"; "a gruff reply" -01137289 00 s 01 currish 0 001 & 01134769 a 0000 | resembling a cur; snarling and rude -01137378 00 s 09 dark 0 dour 0 glowering 0 glum 0 moody 0 morose 0 saturnine 0 sour 0 sullen 0 007 & 01134769 a 0000 + 04642057 n 0902 + 04642057 n 0804 + 07552367 n 0601 + 04642057 n 0603 + 07552252 n 0501 + 07552367 n 0402 | showing a brooding ill humor; "a dark scowl"; "the proverbially dour New England Puritan"; "a glum, hopeless shrug"; "he sat in moody silence"; "a morose and unsociable manner"; "a saturnine, almost misanthropic young genius"- Bruce Bliven; "a sour temper"; "a sullen crowd" -01137882 00 s 01 disagreeable 0 001 & 01134769 a 0000 | unpleasant to interact with; "a disagreeable old man" -01137994 00 s 02 huffish 0 sulky 0 006 & 01134769 a 0000 + 07551498 n 0201 + 07551498 n 0202 + 07549401 n 0201 + 04642057 n 0201 + 07549401 n 0102 | sullen or moody -01138161 00 s 02 misanthropic 0 misanthropical 0 004 & 01134769 a 0000 + 10321882 n 0201 + 07546844 n 0201 + 07546844 n 0101 | hating mankind in general -01138316 00 s 02 misogynous 0 misogynistic 0 003 & 01134769 a 0000 + 10322648 n 0201 + 07547064 n 0101 | hating women in particular -01138450 00 s 02 shirty 0 snorty 0 004 & 01134769 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 07128060 n 0202 | (British informal) ill-tempered or annoyed -01138610 00 s 02 shrewish 0 nagging 0 002 & 01134769 a 0000 + 04642866 n 0101 | continually complaining or faultfinding; "a shrewish wife"; "nagging parents" -01138770 00 s 02 snappish 0 snappy 0 002 & 01134769 a 0000 + 04642258 n 0106 | apt to speak irritably; "a snappish tone of voice" -01138902 00 s 02 spoiled 0 spoilt 0 001 & 01134769 a 0000 | having the character or disposition harmed by pampering or oversolicitous attention; "a spoiled child" -01139067 00 s 02 surly 0 ugly 0 002 & 01134769 a 0000 + 04642258 n 0107 | inclined to anger or bad feelings with overtones of menace; "a surly waiter"; "an ugly frame of mind" -01139245 00 s 02 vinegary 0 vinegarish 0 001 & 01134769 a 0000 | having a sour disposition; ill-tempered -01139352 00 a 01 graceful 0 009 ^ 00217728 a 0000 ^ 00849357 a 0000 + 05003423 n 0101 ! 01140514 a 0101 & 01139613 a 0000 & 01139832 a 0000 & 01140054 a 0000 & 01140188 a 0000 & 01140290 a 0000 | characterized by beauty of movement, style, form, or execution -01139613 00 s 01 elegant 0 002 & 01139352 a 0000 + 04812636 n 0101 | displaying effortless beauty and simplicity in movement or execution; "an elegant dancer"; "an elegant mathematical solution -- simple and precise" -01139832 00 s 04 fluent 1 fluid 0 liquid 0 smooth 0 002 & 01139352 a 0000 + 04709011 n 0401 | smooth and unconstrained in movement; "a long, smooth stride"; "the fluid motion of a cat"; "the liquid grace of a ballerina" -01140054 00 s 01 gainly 0 001 & 01139352 a 0000 | graceful and pleasing; "gainly conduct"; "a gainly youth with dark hair and eyes" -01140188 00 s 02 gracile 0 willowy 0 002 & 01139352 a 0000 + 05003590 n 0102 | slender and graceful -01140290 00 s 08 lissome 0 lissom 0 lithe 0 lithesome 0 slender 0 supple 0 svelte 0 sylphlike 0 005 & 01139352 a 0000 + 05004091 n 0603 + 05002155 n 0501 + 05004091 n 0302 + 05004091 n 0101 | moving and bending with ease -01140514 00 a 01 awkward 0 008 ^ 00063277 a 0000 ^ 00220956 a 0000 + 05648459 n 0101 ! 01139352 a 0101 & 01140896 a 0000 & 01141242 a 0000 & 01141468 a 0000 & 01141595 a 0000 | lacking grace or skill in manner or movement or performance; "an awkward dancer"; "an awkward gesture"; "too awkward with a needle to make her own clothes"; "his clumsy fingers produced an awkward knot" -01140896 00 s 05 gawky 0 clumsy 0 clunky 0 ungainly 0 unwieldy 0 005 & 01140514 a 0000 + 05004700 n 0402 + 05004294 n 0202 + 10274639 n 0109 + 05004700 n 0101 | lacking grace in movement or posture; "a gawky lad with long ungainly legs"; "clumsy fingers"; "what an ungainly creature a giraffe is"; "heaved his unwieldy figure out of his chair" -01141242 00 s 02 graceless 0 ungraceful 0 003 & 01140514 a 0000 + 05004532 n 0202 + 04815624 n 0103 | lacking grace; clumsy; "a graceless production of the play"; "his stature low...his bearing ungraceful"- Sir Walter Scott -01141468 00 s 03 labored 0 laboured 0 strained 0 001 & 01140514 a 0000 | lacking natural ease; "a labored style of debating" -01141595 00 s 01 wooden 0 002 & 01140514 a 0000 + 04815916 n 0101 | lacking ease or grace; "the actor's performance was wooden"; "a wooden smile" -01141743 00 a 01 gracious 0 007 ^ 01074650 a 0000 ^ 01947266 a 0000 + 05003590 n 0101 + 04913568 n 0101 ! 01142349 a 0101 & 01142069 a 0000 & 01142196 a 0000 | characterized by charm, good taste, and generosity of spirit; "gracious even to unexpected visitors"; "gracious living"; "he bears insult with gracious good humor" -01142069 00 s 03 elegant 0 graceful 0 refined 0 002 & 01141743 a 0000 + 04812268 n 0101 | suggesting taste, ease, and wealth -01142196 00 s 01 merciful 0 002 & 01141743 a 0000 + 04829282 n 0101 | (used conventionally of royalty and high nobility) gracious; "our merciful king" -01142349 00 a 01 ungracious 0 004 ^ 01949149 a 0000 ! 01141743 a 0101 & 01142595 a 0000 & 01142666 a 0000 | lacking charm and good taste; "an ungracious industrial city"; "this curt summary is not meant to be ungracious"; "ungracious behavior" -01142595 00 s 01 churlish 0 001 & 01142349 a 0000 | rude and boorish -01142666 00 s 02 graceless 0 unpleasing 0 002 & 01142349 a 0000 + 04690933 n 0201 | lacking graciousness; "a totally graceless hostess" -01142804 00 a 01 gradual 1 006 ^ 00980527 a 0000 + 05061805 n 0102 + 05061805 n 0101 ! 01143279 a 0101 & 01143006 a 0000 & 01143138 a 0000 | proceeding in small stages; "a gradual increase in prices" -01143006 00 s 05 bit-by-bit 0 in_small_stages 0 piecemeal 0 step-by-step 0 stepwise 0 001 & 01142804 a 0000 | one thing at a time -01143138 00 s 03 gradational 0 gradatory 0 graduated 0 003 & 01142804 a 0000 + 14429608 n 0101 + 01003729 n 0101 | taking place by degrees -01143279 00 a 01 sudden 0 009 ^ 00976508 a 0000 + 05060476 n 0106 ! 01142804 a 0101 & 01143585 a 0000 & 01143750 a 0000 & 01143855 a 0000 & 01144009 a 0000 & 01144102 a 0000 & 01144230 a 0000 | happening without warning or in a short space of time; "a sudden storm"; "a sudden decision"; "a sudden cure" -01143585 00 s 01 abrupt 0 002 & 01143279 a 0000 + 05060476 n 0101 | exceedingly sudden and unexpected; "came to an abrupt stop"; "an abrupt change in the weather" -01143750 00 s 02 choppy 0 jerky 0 001 & 01143279 a 0000 | marked by abrupt transitions; "choppy prose" -01143855 00 s 01 emergent 0 002 & 01143279 a 0000 + 07417405 n 0101 | occurring unexpectedly and requiring urgent action; "emergent repair of an aorta" -01144009 00 s 01 explosive 0 001 & 01143279 a 0000 | sudden and loud; "an explosive laugh" -01144102 00 s 01 fulminant 0 002 & 01143279 a 0000 + 00425381 v 0101 | sudden and severe; "fulminant pain"; "fulminant fever" -01144230 00 s 01 sharp 0 001 & 01143279 a 0000 | very sudden and in great amount or degree; "a sharp drop in the stock market" -01144359 00 a 01 gradual 2 006 ^ 01234167 a 0000 + 05068716 n 0101 + 05069853 n 0101 ! 01144887 a 0101 & 01144571 a 0000 & 01144730 a 0000 | (of a topographical gradient) not steep or abrupt; "a gradual slope" -01144571 00 s 02 easy 0 gentle 0 003 & 01144359 a 0000 + 05069853 n 0202 + 04708113 n 0102 | marked by moderate steepness; "an easy climb"; "a gentle slope" -01144730 00 s 01 sloping 0 001 & 01144359 a 0000 | having a slanting form or direction; "an area of gently sloping hills"; "a room with a sloping ceiling" -01144887 00 a 01 steep 0 009 ^ 01233347 a 0000 + 05069624 n 0103 ! 01144359 a 0101 & 01145151 a 0000 & 01145422 a 0000 & 01145639 a 0000 & 01145724 a 0000 & 01145862 a 0000 & 01145931 a 0000 | having a sharp inclination; "the steep attic stairs"; "steep cliffs" -01145151 00 s 03 abrupt 0 precipitous 0 sharp 0 004 & 01144887 a 0000 + 05069624 n 0202 + 09398677 n 0201 + 05069624 n 0101 | extremely steep; "an abrupt canyon"; "the precipitous rapids of the upper river"; "the precipitous hills of Chinese paintings"; "a sharp drop" -01145422 00 s 03 bluff 0 bold 0 sheer 0 001 & 01144887 a 0000 | very steep; having a prominent and almost vertical front; "a bluff headland"; "where the bold chalk cliffs of England rise"; "a sheer descent of rock" -01145639 00 s 01 heavy 0 001 & 01144887 a 0000 | sharply inclined; "a heavy grade" -01145724 00 s 01 perpendicular 0 002 & 01144887 a 0000 + 03917973 n 0101 | extremely steep; "the great perpendicular face of the cliff" -01145862 00 s 01 steepish 0 001 & 01144887 a 0000 | somewhat steep -01145931 00 s 01 steep-sided 0 001 & 01144887 a 0000 | having very steep sides -01146012 00 a 02 grammatical 0 well-formed 4 002 + 06174404 n 0101 ! 01146207 a 0101 | conforming to the rules of grammar or usage accepted by native speakers; "spoke in grammatical sentences" -01146207 00 a 02 ungrammatical 0 ill-formed 4 002 ! 01146012 a 0101 & 01146371 a 0000 | not grammatical; not conforming to the rules of grammar or accepted usage -01146371 00 s 01 incorrect 0 001 & 01146207 a 0000 | (of a word or expression) not agreeing with grammatical principles -01146493 00 a 02 grateful 0 thankful 0 005 + 07504529 n 0202 + 07504529 n 0101 ! 01147044 a 0101 & 01146732 a 0000 & 01146920 a 0000 | feeling or showing gratitude; "a grateful heart"; "grateful for the tree's shade"; "a thankful smile" -01146732 00 s 01 appreciative 0 003 & 01146493 a 0000 + 01805982 v 0101 + 07504529 n 0103 | feeling or expressive of gratitude; "was appreciative of his efforts"; "an appreciative word" -01146920 00 s 01 glad 0 002 & 01146493 a 0000 + 07527167 n 0101 | feeling happy appreciation; "glad of the fire's warmth" -01147044 00 a 03 ungrateful 0 thankless 0 unthankful 0 003 + 07504711 n 0102 ! 01146493 a 0101 & 01147300 a 0000 | not feeling or showing gratitude; "ungrateful heirs"; "How sharper than a serpent's tooth it is / To have a thankless child!"- Shakespeare -01147300 00 s 01 unappreciative 0 001 & 01147044 a 0000 | not feeling or expressing gratitude; "unappreciative of nature's bounty" -01147433 00 a 03 haploid 0 haploidic 0 monoploid 0 004 ;c 06075527 n 0000 + 01320314 n 0101 ! 01147622 a 0101 ! 01147836 a 0101 | of a cell or organism having a single set of chromosomes -01147622 00 a 01 diploid 0 004 ;c 06075527 n 0000 + 01320093 n 0101 ! 01147836 a 0101 ! 01147433 a 0101 | of a cell or organism having two sets of chromosomes or twice the haploid number; "diploid somatic cells" -01147836 00 a 01 polyploid 0 005 ;c 06075527 n 0000 + 01320692 n 0101 ! 01147433 a 0101 ! 01147622 a 0101 & 01148086 a 0000 | of a cell or organism having more than twice the haploid number of chromosomes; "a polyploid cell"; "a polyploid species" -01148086 00 s 01 triploid 0 002 & 01147836 a 0000 ;c 06075527 n 0000 | of a cell or organism having three complete sets of chromosomes; "human triploid fetuses are usually spontaneously aborted" -01148283 00 a 01 happy 0 018 ^ 00362467 a 0000 ^ 00588797 a 0000 ^ 01361414 a 0000 ^ 00704609 a 0000 ^ 00908929 a 0000 ^ 00999817 a 0000 ^ 01363613 a 0000 ^ 01366718 a 0000 = 13987423 n 0000 = 07526757 n 0000 + 13987423 n 0101 ! 01149494 a 0101 & 01148764 a 0000 & 01148897 a 0000 & 01149050 a 0000 & 01149195 a 0000 & 01149358 a 0000 + 07526757 n 0101 | enjoying or showing or marked by joy or pleasure; "a happy smile"; "spent many happy days on the beach"; "a happy marriage" -01148764 00 s 01 blessed 0 002 & 01148283 a 0000 + 13987719 n 0101 | characterized by happiness and good fortune; "a blessed time" -01148897 00 s 01 blissful 0 002 & 01148283 a 0000 + 13987905 n 0102 | completely happy and contented; "blissful young lovers"; "in blissful ignorance" -01149050 00 s 01 bright 0 001 & 01148283 a 0000 | characterized by happiness or gladness; "bright faces"; "all the world seems bright and gay" -01149195 00 s 03 golden 0 halcyon 0 prosperous 0 001 & 01148283 a 0000 | marked by peace and prosperity; "a golden era"; "the halcyon days of the clipper trade" -01149358 00 s 02 laughing(a) 0 riant 0 001 & 01148283 a 0000 | showing or feeling mirth or pleasure or happiness; "laughing children" -01149494 00 a 01 unhappy 0 015 ^ 00703109 a 0000 ^ 00589624 a 0000 ^ 00909363 a 0000 ^ 01000881 a 0000 ^ 01368192 a 0000 ^ 01361863 a 0000 ^ 01364008 a 0000 ^ 00364479 a 0000 = 13987423 n 0000 = 07526757 n 0000 + 13988663 n 0101 + 07532440 n 0102 ! 01148283 a 0101 & 01150063 a 0000 & 01150205 a 0000 | experiencing or marked by or causing sadness or sorrow or discontent; "unhappy over her departure"; "unhappy with her raise"; "after the argument they lapsed into an unhappy silence"; "had an unhappy time at school"; "the unhappy (or sad) news"; "he looks so sad" -01150063 00 s 01 lovesick 0 002 & 01149494 a 0000 + 07487493 n 0101 | languishing because of love; "strong men behaving like lovesick boys" -01150205 00 s 03 miserable 0 suffering 0 wretched 0 003 & 01149494 a 0000 + 14448333 n 0302 + 14448333 n 0103 | very unhappy; full of misery; "he felt depressed and miserable"; "a message of hope for suffering humanity"; "wretched prisoners huddled in stinking cages" -01150475 00 a 03 regretful 0 sorry 2 bad 9 002 ^ 01743217 a 0000 ! 01150771 a 0101 | feeling or expressing regret or sorrow or a sense of loss over something done or undone; "felt regretful over his vanished youth"; "regretful over mistakes she had made"; "he felt bad about breaking the vase" -01150771 00 a 02 unregretful 0 unregretting 0 001 ! 01150475 a 0101 | feeling no regret; "was completely unregretful about what had happened" -01150915 00 a 01 hard 1 015 = 04937848 n 0000 ! 01152746 a 0101 & 01151246 a 0000 & 01151335 a 0000 & 01151452 a 0000 & 01151592 a 0000 & 01151740 a 0000 & 01151951 a 0000 & 01152091 a 0000 & 01152189 a 0000 & 01152320 a 0000 & 01152453 a 0000 & 01152521 a 0000 & 01152620 a 0000 + 04937848 n 0101 | resisting weight or pressure -01151246 00 s 01 adamantine 0 001 & 01150915 a 0000 | having the hardness of a diamond -01151335 00 s 01 al_dente 0 002 & 01150915 a 0000 ;r 08801678 n 0000 | of pasta cooked so as to be firm when eaten -01151452 00 s 03 corneous 0 hornlike 0 horny 0 002 & 01150915 a 0000 + 14758027 n 0301 | made of horn (or of a substance resembling horn) -01151592 00 s 02 tumid 0 erect 0 004 & 01150915 a 0000 ;c 06080522 n 0000 + 14318360 n 0102 + 14318360 n 0101 | of sexual organs; stiff and rigid -01151740 00 s 02 firm 0 solid 0 004 & 01150915 a 0000 + 04941124 n 0202 + 04941124 n 0201 + 04938110 n 0101 | not soft or yielding to pressure; "a firm mattress"; "the snow was firm underfoot"; "solid ground" -01151951 00 s 04 granitic 0 granitelike 0 rocklike 0 stony 0 002 & 01150915 a 0000 + 14890286 n 0101 | hard as granite; "a granitic fist" -01152091 00 s 02 hardened 2 set 0 001 & 01150915 a 0000 | converted to solid form (as concrete) -01152189 00 s 01 woody 0 001 & 01150915 a 0000 | made hard like wood as the result of the deposition of lignin in the cell walls -01152320 00 s 02 petrous 0 stonelike 0 001 & 01150915 a 0000 | (of bone especially the temporal bone) resembling stone in hardness -01152453 00 s 01 semihard 0 001 & 01150915 a 0000 | somewhat hard -01152521 00 s 01 steely 0 002 & 01150915 a 0000 + 14802450 n 0101 | resembling steel in hardness -01152620 00 s 01 unyielding 0 001 & 01150915 a 0000 | resistant to physical force or pressure; "an unyielding head support" -01152746 00 a 01 soft 1 018 = 04937848 n 0000 + 04938228 n 0101 ! 01150915 a 0101 & 01153141 a 0000 & 01153346 a 0000 & 01153435 a 0000 & 01153595 a 0000 & 01153703 a 0000 & 01153844 a 0000 & 01154030 a 0000 & 01154229 a 0000 & 01154351 a 0000 & 01154500 a 0000 & 01154639 a 0000 & 01154775 a 0000 & 01154886 a 0000 & 01154964 a 0000 & 01155206 a 0000 | yielding readily to pressure or weight -01153141 00 s 03 brushed 0 fleecy 0 napped 0 002 & 01152746 a 0000 + 03362639 n 0201 | (of fabrics) having soft nap produced by brushing; "a dress of brushed cotton"; "a fleecy lining"; "napped fabrics" -01153346 00 s 01 cheeselike 0 001 & 01152746 a 0000 | having the consistency of cheese -01153435 00 s 02 compressible 0 squeezable 0 004 & 01152746 a 0000 + 04938474 n 0202 + 01387786 v 0101 + 04938474 n 0101 | capable of being easily compressed -01153595 00 s 01 cottony 0 002 & 01152746 a 0000 + 14870078 n 0101 | resembling cotton; as soft as cotton -01153703 00 s 03 cushioned 0 cushiony 0 padded 0 002 & 01152746 a 0000 + 03151500 n 0201 | softened by the addition of cushions or padding -01153844 00 s 04 demulcent 0 emollient 0 salving 0 softening 0 003 & 01152746 a 0000 + 03128519 n 0203 + 03174829 n 0101 | having a softening or soothing effect especially to the skin -01154030 00 s 04 downy 0 downlike 0 flossy 0 fluffy 0 006 & 01152746 a 0000 + 14757754 n 0401 + 04938838 n 0403 + 03367545 n 0301 + 01896561 n 0101 + 04938838 n 0101 | like down or as soft as down -01154229 00 s 01 flaccid 0 001 & 01152746 a 0000 | drooping without elasticity; wanting in stiffness; "a flaccid penis" -01154351 00 s 03 flocculent 0 woolly 0 wooly 0 003 & 01152746 a 0000 + 02626095 v 0101 + 02625916 v 0101 | having a fluffy character or appearance -01154500 00 s 01 yielding 0 001 & 01152746 a 0000 | lacking stiffness and giving way to pressure; "a deep yielding layer of foam rubber" -01154639 00 s 01 mushy 0 004 & 01152746 a 0000 + 09400826 n 0102 + 07703333 n 0101 + 04939198 n 0101 | having the consistency of mush -01154775 00 s 01 overstuffed 0 001 & 01152746 a 0000 | upholstered thickly and deeply; "an overstuffed sofa" -01154886 00 s 02 softish 0 semisoft 0 001 & 01152746 a 0000 | somewhat soft -01154964 00 s 04 spongy 0 squashy 0 squishy 0 spongelike 0 004 & 01152746 a 0000 + 01906749 n 0101 + 04938474 n 0103 + 04940379 n 0101 | easily squashed; resembling a sponge in having soft porous texture and compressibility; "spongy bread" -01155206 00 s 02 velvet 0 velvety 0 003 & 01152746 a 0000 + 04525038 n 0201 + 04525038 n 0101 | resembling velvet in having a smooth soft surface -01155354 00 a 01 hard 2 009 ^ 00744916 a 0000 ^ 02106761 a 0000 ^ 01507402 a 0000 ^ 02448437 a 0000 + 04844625 n 0104 ! 01156112 a 0101 & 01155603 a 0000 & 01155815 a 0000 & 01155968 a 0000 | dispassionate; "took a hard look"; "a hard bargainer"; -01155603 00 s 05 calculating 0 calculative 0 conniving 0 scheming 0 shrewd 0 003 & 01155354 a 0000 + 05621439 n 0501 + 00926472 v 0202 | used of persons; "the most calculating and selfish men in the community" -01155815 00 s 03 case-hardened 0 hardened 5 hard-boiled 0 001 & 01155354 a 0000 | used of persons; emotionally hardened; "faced a case-hardened judge" -01155968 00 s 01 steely 0 001 & 01155354 a 0000 | resembling steel as in hardness; "steely eyes"; "steely nerves like those of a steeplejack" -01156112 00 a 01 soft 2 005 ^ 02448889 a 0000 ^ 02533313 a 0000 + 04910973 n 0102 ! 01155354 a 0101 & 01156302 a 0000 | compassionate and kind; conciliatory; "he was soft on his children" -01156302 00 s 01 mellow 0 003 & 01156112 a 0000 + 04958302 n 0101 + 04989015 n 0102 | having attained to kindliness or gentleness through age and experience; "mellow wisdom"; "the peace of mellow age" -01156505 00 a 01 hard 3 002 ! 01156925 a 0101 & 01156750 a 0000 | (of speech sounds); produced with the back of the tongue raised toward or touching the velum; "Russian distinguished between hard consonants and palatalized or soft consonants" -01156750 00 s 01 velar 0 001 & 01156505 a 0000 | produced with the back of the tongue touching or near the soft palate (as `k' in `cat' and `g' in `gun' and `ng' in `sing') -01156925 00 a 01 soft 3 004 + 04990877 n 0101 ! 01156505 a 0101 & 01157179 a 0000 & 01157494 a 0000 | (of speech sounds); produced with the back of the tongue raised toward the hard palate; characterized by a hissing or hushing sound (as `s' and `sh') -01157179 00 s 05 fricative 0 continuant 0 sibilant 0 spirant 0 strident 0 006 & 01156925 a 0000 + 07118747 n 0301 + 01055404 v 0301 + 01054399 v 0301 + 01053771 v 0304 + 15133488 n 0202 | of speech sounds produced by forcing air through a constricted passage (as `f', `s', `z', or `th' in both `thin' and `then') -01157494 00 s 03 palatal 0 palatalized 0 palatalised 0 002 & 01156925 a 0000 + 07114535 n 0101 | produced with the front of the tongue near or touching the hard palate (as `y') or with the blade of the tongue near the hard palate (as `ch' in `chin' or `j' in `gin') -01157762 00 a 02 hard 5 concentrated 1 001 ! 01157887 a 0101 | (of light) transmitted directly from a pointed light source -01157887 00 a 03 soft 5 diffuse 0 diffused 0 001 ! 01157762 a 0101 | (of light) transmitted from a broad light source or reflected -01158020 00 a 02 hardhearted 0 heartless 2 004 + 07506149 n 0201 + 07506149 n 0103 ! 01158453 a 0101 & 01158180 a 0000 | lacking in feeling or pity or warmth -01158180 00 s 05 flinty 0 flint 0 granitic 0 obdurate 0 stony 0 004 & 01158020 a 0000 + 11684739 n 0501 + 04629958 n 0501 + 04778114 n 0301 | showing unfeeling resistance to tender feelings; "his flinty gaze"; "the child's misery would move even the most obdurate heart" -01158453 00 a 02 softhearted 0 soft-boiled 0 002 + 07505347 n 0101 ! 01158020 a 0101 | easily moved to pity or sorrow; "a softhearted judge" -01158596 00 a 01 alcoholic 0 008 + 14708720 n 0101 + 07884567 n 0101 ! 01159531 a 0101 & 01158837 a 0000 & 01158974 a 0000 & 01159119 a 0000 & 01159217 a 0000 & 01159405 a 0000 | characteristic of or containing alcohol; "alcoholic drinks" -01158837 00 s 01 dry 0 001 & 01158596 a 0000 | having a large proportion of strong liquor; "a very dry martini is almost straight gin" -01158974 00 s 02 hard 0 strong 0 001 & 01158596 a 0000 | being distilled rather than fermented; having a high alcoholic content; "hard liquor" -01159119 00 s 02 intoxicant 0 intoxicating 0 002 & 01158596 a 0000 + 00088532 v 0101 | causing -01159217 00 s 02 spirituous 0 spiritous 0 003 & 01158596 a 0000 + 07901587 n 0202 + 07901587 n 0102 | containing or of the nature of alcohol; "spiritous beverages"; "spirituous liquors" -01159405 00 s 01 wet 0 001 & 01158596 a 0000 | consisting of or trading in alcoholic liquor; "a wet cargo"; "a wet canteen" -01159531 00 a 01 nonalcoholic 0 001 ! 01158596 a 0101 | characterized by the absence of alcohol; "nonalcoholic beverages" -01159655 00 a 01 harmless 0 007 ^ 00226618 a 0000 ^ 01611839 a 0000 ^ 02450640 a 0000 ^ 01713095 a 0000 ^ 02057829 a 0000 ! 01160031 a 0101 & 01159907 a 0000 | not causing or capable of causing harm; "harmless bacteria"; "rendered the bomb harmless" -01159907 00 s 02 innocent 0 innocuous 0 001 & 01159655 a 0000 | lacking intent or capacity to injure; "an innocent prank" -01160031 00 a 01 harmful 0 023 ^ 00586183 a 0000 ^ 00065488 a 0000 ^ 00227003 a 0000 ^ 01611067 a 0000 ^ 01628302 a 0000 ^ 01711071 a 0000 ^ 02449430 a 0000 ^ 02559180 a 0000 + 05166072 n 0101 ! 01159655 a 0101 & 01160584 a 0000 & 01160775 a 0000 & 01160880 a 0000 & 01161059 a 0000 & 01161233 a 0000 & 01161635 a 0000 & 01161877 a 0000 & 01161984 a 0000 & 01162267 a 0000 & 01162406 a 0000 & 01162633 a 0000 & 01162817 a 0000 & 01162901 a 0000 | causing or capable of causing harm; "too much sun is harmful to the skin"; "harmful effects of smoking" -01160584 00 s 01 abusive 0 002 & 01160031 a 0000 + 02516594 v 0103 | characterized by physical or psychological maltreatment; "abusive punishment"; "argued...that foster homes are abusive" -01160775 00 s 01 bad 0 001 & 01160031 a 0000 | capable of harming; "bad air"; "smoking is bad for you" -01160880 00 s 01 bruising 0 001 & 01160031 a 0000 | causing mental or emotional injury; "a bruising experience"; "protected from the bruising facts of battle"- John Mason Brown -01161059 00 s 03 deleterious 0 hurtful 0 injurious 0 003 & 01160031 a 0000 + 14285662 n 0301 + 05166072 n 0302 | harmful to living things; "deleterious chemical additives" -01161233 00 s 09 calumniatory 0 calumnious 0 defamatory 0 denigrative 0 denigrating 0 denigratory 0 libellous 0 libelous 0 slanderous 0 010 & 01160031 a 0000 + 06720600 n 0901 + 01220336 n 0903 + 06720371 n 0801 + 06720371 n 0701 + 00846509 v 0605 + 00864475 v 0403 + 00846509 v 0301 + 06719579 n 0202 + 01220336 n 0202 | (used of statements) harmful and often untrue; tending to discredit or malign -01161635 00 s 02 catastrophic 2 ruinous 0 003 & 01160031 a 0000 + 14562324 n 0201 + 07335243 n 0201 | extremely harmful; bringing physical or financial ruin; "a catastrophic depression"; "catastrophic illness"; "a ruinous course of action" -01161877 00 s 01 counterproductive 0 001 & 01160031 a 0000 | tending to hinder the achievement of a goal -01161984 00 s 04 damaging 0 detrimental 0 prejudicial 0 prejudicious 0 002 & 01160031 a 0000 + 07420538 n 0201 | (sometimes followed by `to') causing harm or injury; "damaging to career and reputation"; "the reporter's coverage resulted in prejudicial publicity for the defendant" -01162267 00 s 01 ill 0 001 & 01160031 a 0000 | resulting in suffering or adversity; "ill effects"; "it's an ill wind that blows no good" -01162406 00 s 03 insidious 0 pernicious 0 subtle 0 003 & 01160031 a 0000 + 04790942 n 0201 + 05166260 n 0101 | working or spreading in a hidden and usually injurious way; "glaucoma is an insidious disease"; "a subtle poison" -01162633 00 s 01 mischievous 0 004 & 01160031 a 0000 + 04846533 n 0102 + 00736375 n 0103 + 00736375 n 0101 | deliberately causing harm or damage; "mischievous rumors and falsehoods" -01162817 00 s 01 nocent 0 001 & 01160031 a 0000 | having a tendency to cause harm -01162901 00 s 02 stabbing 0 wounding 0 001 & 01160031 a 0000 | causing physical or especially psychological injury; "a stabbing remark"; "wounding and false charges of disloyalty" -01163083 00 a 01 harmonious 0 010 ^ 00507464 a 0000 + 07027180 n 0101 + 04984180 n 0101 + 04984351 n 0102 ! 01164072 a 0101 & 01163320 a 0000 & 01163589 a 0000 & 01163759 a 0000 & 01163860 a 0000 & 01163941 a 0000 | musically pleasing -01163320 00 s 05 consonant 0 harmonic 1 harmonical 0 harmonized 0 harmonised 0 008 & 01163083 a 0000 + 13969243 n 0301 + 07027180 n 0301 + 07180183 n 0301 + 04713118 n 0301 + 04984180 n 0301 + 13969243 n 0201 + 04984351 n 0101 | involving or characterized by harmony -01163589 00 s 02 harmonic 2 sympathetic 0 001 & 01163083 a 0000 | relating to vibrations that occur as a result of vibrations in a nearby body; "sympathetic vibration" -01163759 00 s 02 on-key 0 true 0 001 & 01163083 a 0000 | in tune; accurate in pitch; "a true note" -01163860 00 s 01 pure 0 001 & 01163083 a 0000 | free from discordant qualities -01163941 00 s 02 symphonic 0 symphonious 0 001 & 01163083 a 0000 | harmonious in sound; "the symphonic hum of a million insects" -01164072 00 a 02 inharmonious 0 unharmonious 2 006 ^ 00508192 a 0000 + 04984809 n 0102 ! 01163083 a 0101 & 01164250 a 0000 & 01164420 a 0000 & 01164561 a 0000 | not in harmony -01164250 00 s 04 discordant 0 disharmonious 0 dissonant 1 inharmonic 0 004 & 01164072 a 0000 + 04984514 n 0301 + 02718543 v 0103 + 04984698 n 0101 | lacking in harmony -01164420 00 s 03 false 0 off-key 0 sour 0 001 & 01164072 a 0000 | inaccurate in pitch; "a false (or sour) note"; "her singing was off key" -01164561 00 s 02 unresolved 0 dissonant 2 005 & 01164072 a 0000 ;c 07020895 n 0000 + 02135328 v 0201 + 00567604 v 0202 + 05720248 n 0202 | characterized by musical dissonance; harmonically unresolved -01164763 00 a 01 healthful 0 016 ^ 02115324 a 0000 ^ 02557357 a 0000 + 04790070 n 0101 ! 01167817 a 0101 & 01165266 a 0000 & 01165474 a 0000 & 01165665 a 0000 & 01165830 a 0000 & 01165943 a 0000 & 01166314 a 0000 & 01166413 a 0000 & 01166656 a 0000 & 01166875 a 0000 & 01166993 a 0000 & 01167269 a 0000 & 01167540 a 0000 | conducive to good health of body or mind; "a healthful climate"; "a healthful environment"; "healthful nutrition"; "healthful sleep"; "Dickens's relatively healthful exuberance" -01165266 00 s 04 anthelmintic 0 anthelminthic 0 helminthic 0 parasiticidal 0 004 & 01164763 a 0000 + 04528630 n 0304 + 04528630 n 0203 + 04528630 n 0102 | capable of expelling or destroying parasitic worms -01165474 00 s 02 antimicrobial 0 antimicrobic 0 003 & 01164763 a 0000 + 03208229 n 0203 + 03208229 n 0104 | capable of destroying or inhibiting the growth of disease-causing microorganisms -01165665 00 s 02 carminative 0 flatus-relieving 0 002 & 01164763 a 0000 + 02965617 n 0101 | relieving gas in the alimentary tract (colic or flatulence or griping) -01165830 00 s 02 cathartic 2 psychotherapeutic 0 002 & 01164763 a 0000 + 00253395 n 0101 | emotionally purging -01165943 00 s 06 curative 0 healing(p) 0 alterative 0 remedial 0 sanative 0 therapeutic 0 003 & 01164763 a 0000 + 04074482 n 0401 + 00081725 v 0102 | tending to cure or restore to health; "curative powers of herbal remedies"; "her gentle healing hand"; "remedial surgery"; "a sanative environment of mountains and fresh air"; "a therapeutic agent"; "therapeutic diets" -01166314 00 s 01 drugless 0 001 & 01164763 a 0000 | without the use of drugs; "drugless therapy" -01166413 00 s 02 good 0 salutary 0 002 & 01164763 a 0000 + 05142180 n 0102 | tending to promote physical well-being; beneficial to health; "beneficial effects of a balanced diet"; "a good night's sleep"; "the salutary influence of pure air" -01166656 00 s 02 medicative 0 medicinal 0 004 & 01164763 a 0000 + 03740161 n 0201 + 00084562 v 0101 + 00084230 v 0101 | having the properties of medicine; "medicative drugs"; "medicinal herbs"; "medicinal properties" -01166875 00 s 01 organic 0 001 & 01164763 a 0000 | simple and healthful and close to nature; "an organic lifestyle" -01166993 00 s 01 orthomolecular 0 001 & 01164763 a 0000 | designating or relating to a form of treatment of mental disorders that seeks to restore biochemical balance in the body with large doses of vitamins and minerals; "orthomolecular medicine"; "orthomolecular therapy" -01167269 00 s 03 preventive 0 preventative 0 prophylactic 0 004 & 01164763 a 0000 + 04002026 n 0303 + 01079295 n 0301 + 04002026 n 0101 | preventing or contributing to the prevention of disease; "preventive medicine"; "vaccines are prophylactic"; "a prophylactic drug" -01167540 00 s 02 recuperative 0 restorative 0 006 & 01164763 a 0000 + 04451473 n 0202 + 03111899 n 0202 + 00168588 v 0202 + 00093163 v 0101 + 00092690 v 0101 | promoting recuperation; "recuperative powers"; "strongly recuperative remedies"; "restorative effects of exercise" -01167817 00 a 01 unhealthful 0 010 ^ 02113827 a 0000 ^ 02449430 a 0000 ^ 02559180 a 0000 + 04791740 n 0101 ! 01164763 a 0101 & 01168166 a 0000 & 01168315 a 0000 & 01168434 a 0000 & 01168632 a 0000 & 01168845 a 0000 | detrimental to good health; "unhealthful air pollution"; "unhealthful conditions in old apartments with peeling lead-based paint" -01168166 00 s 03 crippling 0 disabling 0 incapacitating 0 001 & 01167817 a 0000 | that cripples or disables or incapacitates; "a crippling injury" -01168315 00 s 01 cytopathogenic 0 001 & 01167817 a 0000 | of or relating to or causing pathological changes in cells -01168434 00 s 03 infective 0 morbific 0 pathogenic 0 004 & 01167817 a 0000 + 01386007 n 0301 + 00089750 v 0101 + 00088713 v 0101 | able to cause disease; "infective agents"; "pathogenic bacteria" -01168632 00 s 04 unmedicinal 0 unmedicative 0 unmedical 0 nonmedicinal 0 001 & 01167817 a 0000 | not having a medicinal effect or not medically prescribed; "he took mind-altering drugs for nonmedicinal reasons" -01168845 00 s 01 unhealthy 0 001 & 01167817 a 0000 | not conducive to good health; "an unhealthy diet of fast foods"; "an unhealthy climate" -01168988 00 a 01 medical 0 002 + 06043075 n 0101 ! 01169194 a 0101 | requiring or amenable to treatment by medicine especially as opposed to surgery; "medical treatment"; "pneumonia is a medical disease" -01169194 00 a 02 surgical 0 operative 4 007 + 00083809 v 0202 + 00671351 n 0201 + 06063588 n 0101 + 00671351 n 0102 ! 01168988 a 0101 & 01169533 a 0000 & 01169660 a 0000 | relating to or requiring or amenable to treatment by surgery especially as opposed to medicine; "a surgical appendix"; "a surgical procedure"; "operative dentistry" -01169533 00 s 01 preoperative 0 001 & 01169194 a 0000 | happening or done before and in preparation for a surgical operation -01169660 00 s 01 postoperative 0 001 & 01169194 a 0000 | happening or done after a surgical operation; "postoperative complications"; "postoperative care" -01169817 00 a 01 operable 0 001 ! 01169940 a 0101 | capable of being treated by surgical operation; "an operable cancer" -01169940 00 a 01 inoperable 0 001 ! 01169817 a 0101 | not suitable for surgery; "metastasis has rendered the tumor inoperable" -01170069 00 a 01 pyretic 0 001 ! 01170136 a 0101 | causing fever -01170136 00 a 01 antipyretic 0 002 + 02723595 n 0101 ! 01170069 a 0101 | preventing or alleviating fever -01170243 00 a 01 healthy 0 023 ^ 01017161 a 0000 ^ 02037708 a 0000 ^ 02540578 a 0000 ^ 02557357 a 0000 = 14447908 n 0000 + 13923779 n 0101 + 14447908 n 0101 + 14049711 n 0102 ! 01172889 a 0101 & 01170823 a 0000 & 01170984 a 0000 & 01171076 a 0000 & 01171213 a 0000 & 01171396 a 0000 & 01171606 a 0000 & 01171746 a 0000 & 01171955 a 0000 & 01172035 a 0000 & 01172139 a 0000 & 01172394 a 0000 & 01172493 a 0000 & 01172594 a 0000 & 01172692 a 0000 | having or indicating good health in body or mind; free from infirmity or disease; "a rosy healthy baby"; "staying fit and healthy" -01170823 00 s 04 flushed 0 rose-cheeked 0 rosy 0 rosy-cheeked 0 003 & 01170243 a 0000 + 14050871 n 0304 + 04977412 n 0302 | having the pinkish flush of health -01170984 00 s 01 bouncing 0 001 & 01170243 a 0000 | vigorously healthy; "a bouncing baby" -01171076 00 s 01 firm 0 002 & 01170243 a 0000 + 05031849 n 0101 | possessing the tone and resiliency of healthy tissue; "firm muscles" -01171213 00 s 02 good 0 sound 0 002 & 01170243 a 0000 + 05031849 n 0202 | in excellent physical condition; "good teeth"; "I still have one good leg"; "a sound mind in a sound body" -01171396 00 s 02 hale 0 whole 0 003 & 01170243 a 0000 + 14050011 n 0201 + 14050011 n 0102 | exhibiting or restored to vigorous good health; "hale and hearty"; "whole in mind and body"; "a whole person again" -01171606 00 s 01 hearty 1 002 & 01170243 a 0000 + 05030806 n 0104 | consuming abundantly and with gusto; "a hearty (or healthy) appetite" -01171746 00 s 04 hearty 2 full-blooded 0 lusty 0 red-blooded 0 003 & 01170243 a 0000 + 05031012 n 0303 + 05030806 n 0104 | endowed with or exhibiting great bodily or mental health; "a hearty glow of health" -01171955 00 s 01 anicteric 0 001 & 01170243 a 0000 | not affected by jaundice -01172035 00 s 01 rock-loving 0 001 & 01170243 a 0000 | of plants that flourish in a rocky environment -01172139 00 s 04 rubicund 0 ruddy 0 florid 0 sanguine 0 002 & 01170243 a 0000 + 04977412 n 0201 | inclined to a healthy reddish color often associated with outdoor life; "a ruddy complexion"; "Santa's rubicund cheeks"; "a fresh and sanguine complexion" -01172394 00 s 01 sun-loving 0 001 & 01170243 a 0000 | (of plants) flourishing in strong sunlight -01172493 00 s 01 water-loving 0 001 & 01170243 a 0000 | (of plants) flourishing with lots of water -01172594 00 s 01 well-preserved 0 001 & 01170243 a 0000 | used of older persons who are healthy -01172692 00 s 01 wholesome 0 002 & 01170243 a 0000 + 04789689 n 0101 | sound or exhibiting soundness in body or mind; "exercise develops wholesome appetites"; "a grin on his ugly wholesome face" -01172889 00 a 01 unhealthy 0 039 ^ 02040049 a 0000 ^ 02541302 a 0000 ^ 01017738 a 0000 ^ 02559180 a 0000 = 14447908 n 0000 + 14052046 n 0102 ! 01170243 a 0101 & 01173697 a 0000 & 01173795 a 0000 & 01174048 a 0000 & 01174222 a 0000 & 01174438 a 0000 & 01174565 a 0000 & 01175007 a 0000 & 01175158 a 0000 & 01175298 a 0000 & 01175427 a 0000 & 01175541 a 0000 & 01175636 a 0000 & 01175741 a 0000 & 01175939 a 0000 & 01176057 a 0000 & 01176246 a 0000 & 01176544 a 0000 & 01176695 a 0000 & 01176787 a 0000 & 01176973 a 0000 & 01177105 a 0000 & 01177246 a 0000 & 01177435 a 0000 & 01177556 a 0000 & 01177704 a 0000 & 01177899 a 0000 & 01178024 a 0000 & 01178134 a 0000 & 01178231 a 0000 & 01178345 a 0000 & 01178458 a 0000 & 01178577 a 0000 | not in or exhibiting good health in body or mind; "unhealthy ulcers" -01173697 00 s 01 angry 0 001 & 01172889 a 0000 | severely inflamed and painful; "an angry sore" -01173795 00 s 05 arthritic 0 creaky 0 rheumatic 0 rheumatoid 0 rheumy 0 005 & 01172889 a 0000 + 10527915 n 0301 + 14186738 n 0303 + 14080210 n 0301 + 14186541 n 0101 | of or pertaining to arthritis; "my creaky old joints"; "rheumy with age and grief" -01174048 00 s 03 asthmatic 0 wheezing 0 wheezy 0 004 & 01172889 a 0000 + 00836407 n 0301 + 14372855 n 0301 + 14145911 n 0101 | relating to breathing with a whistling sound -01174222 00 s 03 bad 0 unfit 0 unsound 0 003 & 01172889 a 0000 + 05160173 n 0301 + 14547369 n 0201 | physically unsound or diseased; "has a bad back"; "a bad heart"; "bad teeth"; "an unsound limb"; "unsound teeth" -01174438 00 s 02 blebby 0 blistery 0 003 & 01172889 a 0000 + 05517837 n 0201 + 05517837 n 0103 | covered with small blisters -01174565 00 s 05 puffy 0 intumescent 0 tumescent 0 tumid 0 turgid 0 008 & 01172889 a 0000 + 14318360 n 0402 + 14318360 n 0401 + 14318210 n 0301 + 00256507 v 0305 + 14317720 n 0202 + 14317720 n 0201 + 14315192 n 0102 | abnormally distended especially by fluids or gas; "hungry children with bloated stomachs"; "he had a grossly distended stomach"; "eyes with puffed (or puffy) lids"; "swollen hands"; "tumescent tissue"; "puffy tumid flesh" -01175007 00 s 01 bloodshot 0 001 & 01172889 a 0000 | (of an eye) reddened as a result of locally congested blood vessels; inflamed; "bloodshot eyes" -01175158 00 s 03 cankerous 0 ulcerated 0 ulcerous 0 003 & 01172889 a 0000 + 14211609 n 0301 + 14212759 n 0101 | having an ulcer or canker -01175298 00 s 02 carbuncled 0 carbuncular 0 002 & 01172889 a 0000 + 14183774 n 0201 | afflicted with or resembling a carbuncle -01175427 00 s 01 carious 0 002 & 01172889 a 0000 + 13444513 n 0102 | (of teeth) affected with cavities or decay -01175541 00 s 01 caseous 0 001 & 01172889 a 0000 | of damaged or necrotic tissue; cheeselike -01175636 00 s 01 chilblained 0 001 & 01172889 a 0000 | having chilblains; "her poor chilblained hands" -01175741 00 s 03 colicky 0 flatulent 0 gassy 0 005 & 01172889 a 0000 + 14035695 n 0303 + 14035695 n 0202 + 14035695 n 0201 + 14325732 n 0101 | suffering from excessive gas in the alimentary canal -01175939 00 s 01 cytomegalic 0 001 & 01172889 a 0000 | of or relating to or characterized by greatly enlarged cells -01176057 00 s 01 dehydrated 0 001 & 01172889 a 0000 | suffering from excessive loss of water from the body; "fever resulted from becoming dehydrated"; "was dehydrated after the marathon" -01176246 00 s 04 diseased 0 morbid 0 pathologic 0 pathological 0 004 & 01172889 a 0000 + 14204950 n 0401 + 14204950 n 0301 + 04790449 n 0203 | caused by or altered by or manifesting disease or pathology; "diseased tonsils"; "a morbid growth"; "pathologic tissue"; "pathological bodily processes" -01176544 00 s 02 edematous 0 dropsical 0 003 & 01172889 a 0000 + 14316714 n 0204 + 14316714 n 0101 | swollen with an excessive accumulation of fluid -01176695 00 s 01 enlarged 0 001 & 01172889 a 0000 | larger than normal; "enlarged joints" -01176787 00 s 03 foaming 0 foamy 0 frothing 0 001 & 01172889 a 0000 | producing or covered with lathery sweat or saliva from exhaustion or disease; "the rabid animal's frothing mouth" -01176973 00 s 02 gangrenous 0 mortified 0 003 & 01172889 a 0000 + 14313440 n 0101 + 11486708 n 0103 | suffering from tissue death -01177105 00 s 01 inflamed 0 001 & 01172889 a 0000 | resulting from inflammation; hot and swollen and reddened; "eyes inflamed with crying" -01177246 00 s 01 inflammatory 0 003 & 01172889 a 0000 + 00063724 v 0101 + 00063557 v 0101 | characterized or caused by inflammation; "an inflammatory process"; "an inflammatory response" -01177435 00 s 02 ingrowing 0 ingrown 0 001 & 01172889 a 0000 | growing abnormally into the flesh; "an ingrown toenail" -01177556 00 s 03 jaundiced 0 icteric 0 yellow 0 002 & 01172889 a 0000 + 14319684 n 0202 | affected by jaundice which causes yellowing of skin etc -01177704 00 s 02 membranous 0 membrane-forming 0 002 & 01172889 a 0000 + 05426243 n 0101 | characterized by formation of a membrane (or something resembling a membrane); "membranous gastritis" -01177899 00 s 01 mental 0 001 & 01172889 a 0000 | affected by a disorder of the mind; "a mental patient"; "mental illness" -01178024 00 s 02 proinflammatory 0 pro-inflammatory 0 001 & 01172889 a 0000 | tending to cause inflammation -01178134 00 s 02 sallow 0 sickly 0 002 & 01172889 a 0000 + 04977946 n 0101 | unhealthy looking -01178231 00 s 01 sore-eyed 0 001 & 01172889 a 0000 | having sore eyes; suffering from pinkeye or conjunctivitis -01178345 00 s 02 sunburned 0 sunburnt 0 001 & 01172889 a 0000 | suffering from overexposure to direct sunlight -01178458 00 s 01 varicose 0 002 & 01172889 a 0000 + 14573553 n 0101 | abnormally swollen or knotty; "varicose veins" -01178577 00 s 02 windburned 0 windburnt 0 001 & 01172889 a 0000 | suffering from windburn -01178669 00 a 01 dry 6 002 + 14536438 n 0101 ! 01178856 a 0101 | without a mucous or watery discharge; "a dry cough"; "that rare thing in the wintertime; a small child with a dry nose" -01178856 00 a 01 phlegmy 0 002 + 05415815 n 0101 ! 01178669 a 0101 | characterized by phlegm; "a phlegmy discharge" -01178974 00 a 01 heavenly 0 011 ^ 01557903 a 0000 ^ 02055062 a 0000 ^ 01304374 a 0000 ! 01180695 a 0101 & 01179241 a 0000 & 01179345 a 0000 & 01179547 a 0000 & 01179767 a 0000 & 01180084 a 0000 & 01180363 a 0000 & 01180549 a 0000 | of or belonging to heaven or god -01179241 00 s 02 ambrosial 0 ambrosian 0 002 & 01178974 a 0000 + 07610295 n 0101 | worthy of the gods -01179345 00 s 03 celestial 0 ethereal 0 supernal 0 002 & 01178974 a 0000 + 14847103 n 0202 | of heaven or the spirit; "celestial peace"; "ethereal melodies"; "the supernal happiness of a quiet death" -01179547 00 s 02 divine 0 godly 0 003 & 01178974 a 0000 + 09536058 n 0201 + 04827503 n 0201 | emanating from God; "divine judgment"; "divine guidance"; "everything is black or white...satanic or godly"-Saturday Review -01179767 00 s 02 divine 2 godlike 0 002 & 01178974 a 0000 + 09505418 n 0102 | being or having the nature of a god; "the custom of killing the divine king upon any serious failure of his...powers"-J.G.Frazier; "the divine will"; "the divine capacity for love"; "'Tis wise to learn; 'tis God-like to create"-J.G.Saxe -01180084 00 s 05 paradisiacal 0 paradisiac 0 paradisaical 0 paradisaic 0 paradisal 0 005 & 01178974 a 0000 + 05628939 n 0501 + 08565506 n 0502 + 08565506 n 0102 + 05628939 n 0101 | relating to or befitting Paradise; "together in that paradisal place"; "paradisiacal innocence" -01180363 00 s 02 providential 0 divine 3 003 & 01178974 a 0000 + 14473917 n 0101 + 01132327 n 0101 | resulting from divine providence; "providential care"; "a providential visitation" -01180549 00 s 04 translunar 0 translunary 0 superlunar 0 superlunary 0 001 & 01178974 a 0000 | unworldly or ethereal; "high translunary dreams" -01180695 00 a 01 earthly 0 011 ^ 01557614 a 0000 ^ 02056880 a 0000 ^ 02577061 a 0000 + 08562067 n 0101 ! 01178974 a 0101 & 01181116 a 0000 & 01181251 a 0000 & 01181329 a 0000 & 01181446 a 0000 & 01181661 a 0000 & 01181904 a 0000 | of or belonging to or characteristic of this earth as distinguished from heaven; "earthly beings"; "believed that our earthly life is all that matters"; "earthly love"; "our earthly home" -01181116 00 s 01 earthborn 0 001 & 01180695 a 0000 | connected with earthly life; of earthly origin; "earthborn cares and pleasures" -01181251 00 s 01 earthbound 0 001 & 01180695 a 0000 | confined to the earth -01181329 00 s 01 earthlike 0 001 & 01180695 a 0000 | resembling or characteristic of earth; "earthlike atmosphere" -01181446 00 s 02 mundane 0 terrene 0 001 & 01180695 a 0000 | belonging to this earth or world; not ideal or heavenly; "not a fairy palace; yet a mundane wonder of unimagined kind"; "so terrene a being as himself" -01181661 00 s 03 sublunar 0 sublunary 0 terrestrial 0 001 & 01180695 a 0000 | of this earth; "transcendental motives for sublunary actions"; "fleeting sublunary pleasures"; "the nearest to an angelic being that treads this terrestrial ball" -01181904 00 s 01 temporal 0 001 & 01180695 a 0000 | of this earth or world; "temporal joys"; "our temporal existence" -01182024 00 a 01 digestible 0 009 ^ 00828779 a 0000 + 01197338 v 0101 + 00481555 v 0101 + 04997645 n 0102 + 04997645 n 0101 ! 01182747 a 0101 & 01182302 a 0000 & 01182414 a 0000 & 01182554 a 0000 | capable of being converted into assimilable condition in the alimentary canal -01182302 00 s 01 assimilable 0 001 & 01182024 a 0000 | able to be absorbed and incorporated into body tissues -01182414 00 s 01 light 0 001 & 01182024 a 0000 | easily assimilated in the alimentary canal; not rich or heavily seasoned; "a light diet" -01182554 00 s 01 predigested 0 001 & 01182024 a 0000 | artificially partially digested as by enzymatic action; "predigested foods are a boon for those who are ill or have impaired digestion" -01182747 00 a 01 indigestible 0 009 ^ 00829496 a 0000 + 04997812 n 0102 + 04997812 n 0101 ! 01182024 a 0101 & 01182974 a 0000 & 01183114 a 0000 & 01183274 a 0000 & 01183348 a 0000 & 01183436 a 0000 | digested with difficulty -01182974 00 s 01 flatulent 0 003 & 01182747 a 0000 + 14035695 n 0102 + 14035695 n 0101 | generating excessive gas in the alimentary canal -01183114 00 s 01 heavy 0 001 & 01182747 a 0000 | dense or inadequately leavened and hence likely to cause distress in the alimentary canal; "a heavy pudding" -01183274 00 s 01 nondigestible 0 001 & 01182747 a 0000 | not digestible -01183348 00 s 01 undigested 0 001 & 01182747 a 0000 | not digested; "undigested food" -01183436 00 s 01 stodgy 0 001 & 01182747 a 0000 | heavy and starchy and hard to digest; "stodgy food"; "a stodgy pudding served up when everyone was already full" -01183601 00 a 01 headed 1 005 ! 01184261 a 0101 & 01183892 a 0000 & 01183966 a 0000 & 01184085 a 0000 & 01184183 a 0000 | having a head of a specified kind or anything that serves as a head; often used in combination; "headed bolts"; "three-headed Cerberus"; "a cool-headed fighter pilot" -01183892 00 s 01 bicephalous 0 001 & 01183601 a 0000 | having two heads -01183966 00 s 01 burr-headed 0 001 & 01183601 a 0000 | having a head of straight hair cut very short (hence bristly) -01184085 00 s 01 headlike 0 001 & 01183601 a 0000 | having a protuberance that resembles a head -01184183 00 s 01 large-headed 0 001 & 01183601 a 0000 | having a large head -01184261 00 a 01 headless 0 003 ! 01183601 a 0101 & 01184448 a 0000 & 01184584 a 0000 | not having a head or formed without a head ; "the headless horseman"; "brads are headless nails" -01184448 00 s 01 acephalous 0 002 & 01184261 a 0000 ;c 06037666 n 0000 | lacking a head or a clearly defined head; "acephalous worms" -01184584 00 s 02 beheaded 0 decapitated 0 001 & 01184261 a 0000 | having had the head cut off; "the beheaded prisoners" -01184706 00 a 01 headed 2 001 ! 01184825 a 0101 | having a heading or caption; "a headed column"; "headed notepaper" -01184825 00 a 01 unheaded 0 001 ! 01184706 a 0101 | not having a heading or caption; "unheaded sections" -01184932 00 a 01 heavy 1 010 = 05026843 n 0000 + 05027529 n 0101 ! 01186408 a 0101 & 01185264 a 0000 & 01185417 a 0000 & 01185636 a 0000 & 01185775 a 0000 & 01185916 a 0000 & 01186107 a 0000 & 01186207 a 0000 | of comparatively great physical weight or density; "a heavy load"; "lead is a heavy metal"; "heavy mahogany furniture" -01185264 00 s 01 dense 0 003 & 01184932 a 0000 + 04941453 n 0102 + 04941453 n 0101 | having high relative density or specific gravity; "dense as lead" -01185417 00 s 02 doughy 0 soggy 0 003 & 01184932 a 0000 + 14536331 n 0201 + 07860988 n 0101 | having the consistency of dough because of insufficient leavening or improper cooking; "the cake fell; it's a doughy mess" -01185636 00 s 01 heavier-than-air 0 002 & 01184932 a 0000 ;c 02686568 n 0000 | relating to an aircraft heavier than the air it displaces -01185775 00 s 01 hefty 0 003 & 01184932 a 0000 + 05027837 n 0101 + 05027837 n 0102 | of considerable weight and size; "a hefty dictionary" -01185916 00 s 01 massive 0 002 & 01184932 a 0000 + 05027837 n 0103 | consisting of great mass; containing a great quantity of matter; "Earth is the most massive of the terrestrial planets" -01186107 00 s 01 non-buoyant 0 001 & 01184932 a 0000 | tending to sink in a liquid or fall in air -01186207 00 s 01 ponderous 0 003 & 01184932 a 0000 + 05027837 n 0104 + 05027837 n 0105 | having great mass and weight and unwieldiness; "a ponderous stone"; "a ponderous burden"; "ponderous weapons" -01186408 00 a 01 light 1 008 = 05026843 n 0000 + 05028700 n 0101 ! 01184932 a 0101 & 01186733 a 0000 & 01186913 a 0000 & 01187072 a 0000 & 01187322 a 0000 & 01187503 a 0000 | of comparatively little physical weight or density; "a light load"; "magnesium is a light metal--having a specific gravity of 1.74 at 20 degrees C" -01186733 00 s 01 lightweight 0 001 & 01186408 a 0000 | weighing relatively little compared with another item or object of similar use; "a lightweight fabric"; "lightweight wood" -01186913 00 s 01 airy 0 002 & 01186408 a 0000 + 05028963 n 0101 | having little or no perceptible weight; so light as to resemble air; "airy gauze curtains" -01187072 00 s 02 buoyant 0 floaty 0 005 & 01186408 a 0000 + 03364340 n 0201 + 05028963 n 0102 + 01904795 v 0101 + 01218512 v 0101 | tending to float on a liquid or rise in air or gas; "buoyant balloons"; "buoyant balsawood boats"; "a floaty scarf" -01187322 00 s 01 lighter-than-air 0 002 & 01186408 a 0000 ;c 02686568 n 0000 | relating to a balloon or other aircraft that flies because it weighs less than the air it displaces -01187503 00 s 01 low-density(p) 0 001 & 01186408 a 0000 | having low relative density or specific gravity -01187611 00 a 01 weighty 0 003 + 05027529 n 0102 + 05026843 n 0101 ! 01187777 a 0101 | having relatively great weight; heavy; "a weighty load"; "a weighty package" -01187777 00 a 01 weightless 0 002 + 05028700 n 0102 ! 01187611 a 0101 | having little or no weight or apparent gravitational pull; light; "floating freely in a weightless condition"; "a baby bat...fluffy and weightless as a moth"; "jackets made of a weightless polyester fabric" -01188058 00 a 01 light-duty 0 002 ! 01188328 a 0101 & 01188186 a 0000 | not designed for heavy work; "a light-duty detergent" -01188186 00 s 01 light 0 001 & 01188058 a 0000 | designed for ease of movement or to carry little weight; "light aircraft"; "a light truck" -01188328 00 a 01 heavy-duty 0 003 ! 01188058 a 0101 & 01188491 a 0000 & 01188648 a 0000 | designed for heavy work; "a heavy-duty detergent"; "heavy-duty gloves" -01188491 00 s 01 heavy 0 001 & 01188328 a 0000 | large and powerful; especially designed for heavy loads or rough work; "a heavy truck"; "heavy machinery" -01188648 00 s 01 industrial 0 001 & 01188328 a 0000 | suitable to stand up to hard wear; "industrial carpeting" -01188762 00 a 01 heavy 2 007 + 07532945 n 0101 ! 01190316 a 0101 & 01189109 a 0000 & 01189386 a 0000 & 01189853 a 0000 & 01189998 a 0000 & 01190168 a 0000 | marked by great psychological weight; weighted down especially with sadness or troubles or weariness; "a heavy heart"; "a heavy schedule"; "heavy news"; "a heavy silence"; "heavy eyelids" -01189109 00 s 03 burdensome 0 onerous 0 taxing 0 003 & 01188762 a 0000 + 04711031 n 0203 + 04711031 n 0101 | not easily borne; wearing; "the burdensome task of preparing the income tax return"; "my duties weren't onerous; I only had to greet the guests"; "a taxing schedule" -01189386 00 s 07 distressing 0 distressful 0 disturbing 0 perturbing 0 troubling 0 worrisome 0 worrying 0 002 & 01188762 a 0000 + 05037197 n 0202 | causing distress or worry or anxiety; "distressing (or disturbing) news"; "lived in heroic if something distressful isolation"; "a disturbing amount of crime"; "a revelation that was most perturbing"; "a new and troubling thought"; "in a particularly worrisome predicament"; "a worrying situation"; "a worrying time" -01189853 00 s 02 leaden 0 weighted 0 001 & 01188762 a 0000 | made heavy or weighted down with weariness; "his leaden arms"; "weighted eyelids" -01189998 00 s 01 oppressive 0 002 & 01188762 a 0000 + 04711031 n 0104 | weighing heavily on the senses or spirit; "the atmosphere was oppressive"; "oppressive sorrows" -01190168 00 s 01 weighty 0 002 & 01188762 a 0000 + 07538812 n 0101 | weighing heavily on the spirit; causing anxiety or worry; "weighty problems" -01190316 00 a 01 light 2 003 + 07527656 n 0103 ! 01188762 a 0101 & 01190484 a 0000 | psychologically light; especially free from sadness or troubles; "a light heart" -01190484 00 s 02 fooling 0 casual 2 002 & 01190316 a 0000 + 04912240 n 0201 | characterized by a feeling of irresponsibility; "a broken back is nothing to be casual about; it is no fooling matter" -01190683 00 a 01 heavy 3 003 + 04711031 n 0102 ! 01190993 a 0101 & 01190916 a 0000 | unusually great in degree or quantity or number; "heavy taxes"; "a heavy fine"; "heavy casualties"; "heavy losses"; "heavy rain"; "heavy traffic" -01190916 00 s 01 harsh 0 001 & 01190683 a 0000 | severe; "a harsh penalty" -01190993 00 a 01 light 3 001 ! 01190683 a 0101 | not great in degree or quantity or number; "a light sentence"; "a light accent"; "casualties were light"; "light snow was falling"; "light misty rain"; "light smoke from the chimney" -01191227 00 a 01 heavy 7 003 ;c 06084469 n 0000 + 05027529 n 0101 ! 01191448 a 0101 | (physics, chemistry) being or containing an isotope with greater than average atomic mass or weight; "heavy hydrogen"; "heavy water" -01191448 00 a 01 light 7 002 ;c 06084469 n 0000 ! 01191227 a 0101 | (physics, chemistry) not having atomic weight greater than average; "light water is ordinary water" -01191618 00 a 01 heavy 8 002 ! 01191876 a 0101 & 01191780 a 0000 | of great intensity or power or force; "a heavy blow"; "the fighting was heavy"; "heavy seas" -01191780 00 s 01 big 0 001 & 01191618 a 0000 | marked by intense physical force; "a big wind" -01191876 00 a 01 light 8 002 ! 01191618 a 0101 & 01192035 a 0000 | of little intensity or power or force; "the light touch of her fingers"; "a light breeze" -01192035 00 s 03 easy 0 gentle 0 soft 0 002 & 01191876 a 0000 + 04910973 n 0201 | having little impact; "an easy pat on the shoulder"; "gentle rain"; "a gentle breeze"; "a soft (or light) tapping at the window" -01192248 00 a 01 light-footed 0 002 ! 01192639 a 0101 & 01192393 a 0000 | (of movement) having a light and springy step; "a light-footed girl" -01192393 00 s 03 light 0 lightsome 0 tripping 0 003 & 01192248 a 0000 + 05003850 n 0204 + 05003850 n 0103 | moving easily and quickly; nimble; "the dancer was light and graceful"; "a lightsome buoyant step"; "walked with a light tripping step" -01192639 00 a 01 heavy-footed 0 002 ! 01192248 a 0101 & 01192786 a 0000 | (of movement) lacking ease or lightness; "his tired heavy-footed walk" -01192786 00 s 03 heavy 0 lumbering 0 ponderous 0 002 & 01192639 a 0000 + 05027837 n 0304 | slow and laborious because of weight; "the heavy tread of tired troops"; "moved with a lumbering sag-bellied trot"; "ponderous prehistoric beasts"; "a ponderous yawn" -01193046 00 a 01 light 4 002 ! 01193373 a 0101 & 01193275 a 0000 | of the military or industry; using (or being) relatively small or light arms or equipment; "light infantry"; "light cavalry"; "light industry"; "light weapons" -01193275 00 s 02 light-armed 0 lightly-armed 0 001 & 01193046 a 0000 | armed with light weapons -01193373 00 a 01 heavy 4 001 ! 01193046 a 0101 | of the military or industry; using (or being) the heaviest and most powerful armaments or weapons or equipment; "heavy artillery"; "heavy infantry"; "a heavy cruiser"; "heavy guns"; "heavy industry involves large-scale production of basic products (such as steel) used by other industries" -01193714 00 a 02 heedless 0 unheeding 0 006 = 05702726 n 0000 + 05706375 n 0102 + 04894204 n 0101 ! 01194483 a 0101 & 01194099 a 0000 & 01194328 a 0000 | marked by or paying little heed or attention; "We have always known that heedless self-interest was bad morals; we know now that it is bad economics"--Franklin D. Roosevelt; "heedless of danger"; "heedless of the child's crying" -01194099 00 s 02 careless(p) 1 regardless 0 002 & 01193714 a 0000 + 04664964 n 0101 | (usually followed by `of') without due thought or consideration; "careless of the consequences"; "crushing the blooms with regardless tread" -01194328 00 s 02 deaf(p) 1 indifferent(p) 0 001 & 01193714 a 0000 | (usually followed by `to') unwilling or refusing to pay heed; "deaf to her warnings" -01194483 00 a 04 heedful 0 attentive 4 thoughtful 4 paying_attention 0 006 = 05702726 n 0000 + 04660536 n 0301 + 02170427 v 0201 + 04662951 n 0201 + 04663763 n 0102 ! 01193714 a 0101 | taking heed; giving close and thoughtful attention; "heedful of the warnings"; "so heedful a writer"; "heedful of what they were doing" -01194806 00 a 01 enabling 0 003 ! 01195341 a 0101 & 01194974 a 0000 & 01195128 a 0000 | providing legal power or sanction; "an enabling resolution"; "enabling power" -01194974 00 s 01 facultative 0 001 & 01194806 a 0000 | granting a privilege or permission or power to do or not do something; "a facultative enactment" -01195128 00 s 02 sanctionative 0 sanctioning 0 002 & 01194806 a 0000 + 02479154 v 0101 | implying sanction or serving to sanction; "the guardian's duties were primarily sanctionative rather than administrative" -01195341 00 a 02 disabling 0 disqualifying 0 001 ! 01194806 a 0101 | depriving of legal right; rendering legally disqualified; "certain disabling restrictions disqualified him for citizenship" -01195536 00 a 01 helpful 0 019 ^ 00020787 a 0000 ^ 00619972 a 0000 ^ 00866471 a 0000 ^ 02495922 a 0000 + 05149695 n 0101 ! 01198019 a 0101 & 01195963 a 0000 & 01196098 a 0000 & 01196276 a 0000 & 01196367 a 0000 & 01196484 a 0000 & 01196648 a 0000 & 01196775 a 0000 & 01197024 a 0000 & 01197207 a 0000 & 01197386 a 0000 & 01197634 a 0000 & 01197737 a 0000 & 01197899 a 0000 | providing assistance or serving a useful function -01195963 00 s 01 accommodating 0 001 & 01195536 a 0000 | obliging; willing to do favors; "made a special effort to be accommodating" -01196098 00 s 01 adjuvant 0 003 & 01195536 a 0000 ;c 06054892 n 0000 + 02680947 n 0101 | enhancing the action of a medical treatment; "the adjuvant action of certain bacteria" -01196276 00 s 01 assistive 0 002 & 01195536 a 0000 + 02547586 v 0102 | giving assistance -01196367 00 s 01 face-saving 0 001 & 01195536 a 0000 | maintaining dignity or prestige; "a face-saving compromise" -01196484 00 s 01 facilitative 0 002 & 01195536 a 0000 + 00518395 v 0101 | freeing from difficulty or impediment; "facilitative changes in the economic structure" -01196648 00 s 01 facilitatory 0 002 & 01195536 a 0000 + 01757338 v 0101 | inducing or aiding in facilitating neural activity -01196775 00 s 03 implemental 0 instrumental 0 subservient 0 006 & 01195536 a 0000 + 02548588 v 0301 + 00173761 n 0201 + 05150458 n 0201 + 03575240 n 0201 + 03563967 n 0101 | serving or acting as a means or aid; "instrumental in solving the crime" -01197024 00 s 02 laborsaving 0 laboursaving 0 001 & 01195536 a 0000 | designed to replace or conserve human and especially manual labor; "laborsaving devices like washing machines" -01197207 00 s 01 ministrant 0 002 & 01195536 a 0000 + 02549392 v 0101 | giving practical help to; "a ministering angel"; "the angels ministrant sang"; "the attending physician" -01197386 00 s 02 reformative 0 reformatory 0 006 & 01195536 a 0000 + 04069777 n 0201 + 00384620 v 0201 + 00167934 v 0201 + 00384620 v 0101 + 00265386 v 0101 | tending to reform; "reformative and rehabilitative agencies"; "reformatory punishment" -01197634 00 s 01 right-hand 0 001 & 01195536 a 0000 | most helpful and reliable; "my right-hand man" -01197737 00 s 02 stabilizing 0 stabilising 0 001 & 01195536 a 0000 | causing to become stable; "the family is one of the great stabilizing elements in society" -01197899 00 s 01 steadying 0 001 & 01195536 a 0000 | causing to become steady; "had a steadying effect on her nerves" -01198019 00 a 01 unhelpful 0 006 ^ 00867213 a 0000 ^ 00620585 a 0000 + 04845863 n 0101 ! 01195536 a 0101 & 01198188 a 0000 & 01198356 a 0000 | providing no assistance -01198188 00 s 01 unaccommodating 0 001 & 01198019 a 0000 | offering no assistance; "rudely unaccommodating to the customers"; "icily neutral, disagreeably unhelpful" -01198356 00 s 01 unconstructive 0 001 & 01198019 a 0000 | not constructive -01198433 00 a 01 heterodactyl 0 001 ! 01198586 a 0101 | (of bird feet) having the first and second toes directed backward the third and fourth forward -01198586 00 a 01 zygodactyl 0 001 ! 01198433 a 0101 | (of bird feet) having the first and fourth toes directed backward the second and third forward -01198737 00 a 02 heterogeneous 0 heterogenous 1 009 ^ 02064745 a 0000 ^ 00783129 a 0000 ^ 02506555 a 0000 + 04751098 n 0102 + 04751098 n 0101 ! 01199751 a 0101 & 01199083 a 0000 & 01199476 a 0000 & 01199663 a 0000 | consisting of elements that are not of the same kind or nature; "the population of the United States is vast and heterogeneous" -01199083 00 s 05 assorted 0 miscellaneous 0 mixed 0 motley 0 sundry(a) 0 002 & 01198737 a 0000 + 08398773 n 040a | consisting of a haphazard assortment of different kinds; "an arrangement of assorted spring flowers"; "assorted sizes"; "miscellaneous accessories"; "a mixed program of baroque and contemporary music"; "a motley crew"; "sundry sciences commonly known as social"- I.A.Richards -01199476 00 s 01 disparate 0 003 & 01198737 a 0000 + 04750414 n 0101 + 04752530 n 0101 | including markedly dissimilar elements; "a disparate aggregate of creeds and songs and prayers" -01199663 00 s 02 inhomogeneous 0 nonuniform 0 001 & 01198737 a 0000 | not homogeneous -01199751 00 a 02 homogeneous 0 homogenous 0 012 ^ 02062670 a 0000 ^ 00783675 a 0000 ^ 01966488 a 0000 + 04744161 n 0201 + 04744161 n 0101 + 04745679 n 0102 + 04745679 n 0101 ! 01198737 a 0101 & 01200095 a 0000 & 01200339 a 0000 & 01200491 a 0000 & 01200617 a 0000 | all of the same or similar kind or nature; "a close-knit homogeneous group" -01200095 00 s 02 consistent 0 uniform 0 004 & 01199751 a 0000 + 04745370 n 0202 + 04769049 n 0201 + 04745370 n 0201 | the same throughout in structure or composition; "bituminous coal is often treated as a consistent and homogeneous product" -01200339 00 s 01 solid 0 002 & 01199751 a 0000 + 04761212 n 0103 | of one substance or character throughout; "solid gold"; "carved out of solid rock" -01200491 00 s 03 solid 3 self-colored 0 self-coloured 0 001 & 01199751 a 0000 | of the same color throughout; "solid color" -01200617 00 s 02 homogenized 0 homogenised 0 001 & 01199751 a 0000 | made homogeneous -01200705 00 a 01 homozygous 0 003 ;c 06075527 n 0000 + 14569337 n 0101 ! 01200915 a 0101 | having identical alleles at corresponding chromosomal loci; "these two fruit flies are homozygous for red eye color" -01200915 00 a 01 heterozygous 0 003 ;c 06075527 n 0000 + 14569508 n 0101 ! 01200705 a 0101 | having dissimilar alleles at corresponding chromosomal loci; "heterozygous for eye color" -01201100 00 a 01 heterosexual 0 006 = 00844254 n 0000 + 10173895 n 0101 + 00857664 n 0101 ! 01201422 a 0101 ! 01203147 a 0101 & 01201298 a 0000 | sexually attracted to members of the opposite sex -01201298 00 s 01 straight 0 004 & 01201100 a 0000 ;u 07075172 n 0000 + 10173895 n 0104 + 00857664 n 0103 | not homosexual -01201422 00 a 01 homosexual 0 014 = 00844254 n 0000 + 10182913 n 0101 + 00856847 n 0101 ! 01203147 a 0101 ! 01201100 a 0101 & 01201758 a 0000 & 01201937 a 0000 & 01202105 a 0000 & 01202212 a 0000 & 01202367 a 0000 & 01202514 a 0000 & 01202634 a 0000 & 01202813 a 0000 & 01202994 a 0000 | sexually attracted to members of your own sex -01201758 00 s 01 butch 0 003 & 01201422 a 0000 ;u 07157273 n 0000 + 09883947 n 0101 | (of male or female homosexuals) characterized by stereotypically male traits or appearance -01201937 00 s 03 gay 0 queer 0 homophile(a) 0 004 & 01201422 a 0000 + 00856847 n 0204 + 10182913 n 0104 + 00856847 n 0105 | homosexual or arousing homosexual desires -01202105 00 s 01 homoerotic 0 002 & 01201422 a 0000 + 00856847 n 0103 | of or concerning homosexual love -01202212 00 s 02 lesbian 0 sapphic 0 002 & 01201422 a 0000 + 10254965 n 0101 | of or relating to or characterized by homosexual relations between woman -01202367 00 s 02 pederastic 0 paederastic 0 003 & 01201422 a 0000 + 10411867 n 0202 + 10411867 n 0101 | of homosexuality between a man and a boy -01202514 00 s 02 transgender 0 transgendered 0 001 & 01201422 a 0000 | involving a partial or full reversal of gender -01202634 00 s 01 transsexual(a) 0 003 & 01201422 a 0000 + 10725893 n 0101 + 10725734 n 0101 | overwhelmingly desirous of being, or completely identifying with, the opposite sex -01202813 00 s 02 transvestic 0 transvestite 0 003 & 01201422 a 0000 + 10726031 n 0201 + 10726031 n 0101 | receiving sexual gratification from wearing clothing of the opposite sex -01202994 00 s 01 tribadistic 0 002 & 01201422 a 0000 + 00857530 n 0101 | of female homosexual behavior that attempts to simulate heterosexual behavior -01203147 00 a 01 bisexual 0 004 + 09857007 n 0101 + 00857160 n 0101 ! 01201100 a 0101 ! 01201422 a 0101 | sexually attracted to both sexes -01203288 00 a 03 hierarchical 0 hierarchal 0 hierarchic 0 006 + 08377806 n 0101 ! 01204318 a 0101 & 01203703 a 0000 & 01203873 a 0000 & 01203986 a 0000 & 01204142 a 0000 | classified according to various criteria into successive levels or layers; "it has been said that only a hierarchical society with a leisure class at the top can produce works of art"; "in her hierarchical set of values honesty comes first" -01203703 00 s 02 class-conscious 0 stratified 0 001 & 01203288 a 0000 | (used of society) socially hierarchical; "American society is becoming increasingly stratified" -01203873 00 s 01 gradable 0 001 & 01203288 a 0000 | capable of being graded (for quality or rank or size etc.) -01203986 00 s 03 graded 0 ranked 0 stratified 2 001 & 01203288 a 0000 | arranged in a sequence of grades or ranks; "stratified areas of the distribution" -01204142 00 s 01 vertical 0 001 & 01203288 a 0000 | of or relating to different levels in a hierarchy (as levels of social class or income group); "vertical social mobility" -01204318 00 a 02 nonhierarchical 0 nonhierarchic 0 002 ! 01203288 a 0101 & 01204443 a 0000 | not classified hierarchically -01204443 00 s 03 ungraded 0 unordered 0 unranked 0 001 & 01204318 a 0000 | not arranged in order hierarchically -01204557 00 a 01 high 1 016 ^ 02385102 a 0000 ^ 02439949 a 0000 ^ 02490170 a 0000 = 05137165 n 0000 + 08584618 n 0101 + 05097536 n 0101 + 05137402 n 0101 ! 01206474 a 0101 & 01205131 a 0000 & 01205232 a 0000 & 01205473 a 0000 & 01205746 a 0000 & 01205886 a 0000 & 01206046 a 0000 & 01206164 a 0000 & 01206318 a 0000 | (literal meaning) being at or having a relatively great or specific elevation or upward extension (sometimes used in combinations like `knee-high'); "a high mountain"; "high ceilings"; "high buildings"; "a high forehead"; "a high incline"; "a foot high" -01205131 00 s 01 altitudinous 0 002 & 01204557 a 0000 + 05131647 n 0101 | indefinitely high; lofty -01205232 00 s 03 commanding 0 dominating 0 overlooking 0 001 & 01204557 a 0000 | used of a height or viewpoint; "a commanding view of the ocean"; "looked up at the castle dominating the countryside"; "the balcony overlooking the ballroom" -01205473 00 s 04 eminent 0 lofty 0 soaring 0 towering 0 003 & 01204557 a 0000 + 04729984 n 0203 + 05137402 n 0202 | of imposing height; especially standing out above others; "an eminent peak"; "lofty mountains"; "the soaring spires of the cathedral"; "towering icebergs" -01205746 00 s 02 high-level 0 high-altitude 0 001 & 01204557 a 0000 | occurring at or from a relative high altitude; "high-level bombing" -01205886 00 s 02 high-stepped 0 high-stepping 0 001 & 01204557 a 0000 | having or moving with a high step; "his high-stepped stride"; "a high-stepping horse" -01206046 00 s 02 high-top 0 high-topped 0 001 & 01204557 a 0000 | (of shoes or boots) having relatively high uppers -01206164 00 s 01 steep 0 002 & 01204557 a 0000 + 05069624 n 0103 | of a slope; set at a high angle; "note the steep incline"; "a steep roof sheds snow" -01206318 00 s 01 upper 0 001 & 01204557 a 0000 | higher in place or position; "the upper bunk"; "in the upper center of the picture"; "the upper stories" -01206474 00 a 01 low 1 013 ^ 02491961 a 0000 ^ 02340213 a 0000 ^ 02386612 a 0000 = 05137165 n 0000 + 05137557 n 0101 ! 01204557 a 0101 & 01206916 a 0000 & 01207007 a 0000 & 01207145 a 0000 & 01207282 a 0000 & 01207423 a 0000 & 01207546 a 0000 & 01207697 a 0000 | literal meanings; being at or having a relatively small elevation or upward extension; "low ceilings"; "low clouds"; "low hills"; "the sun is low"; "low furniture"; "a low bow" -01206916 00 s 01 deep 0 001 & 01206474 a 0000 | with head or back bent low; "a deep bow" -01207007 00 s 03 low-growing 0 flat-growing 0 ground-hugging 0 001 & 01206474 a 0000 | of plants that grow relatively low to the ground -01207145 00 s 02 low-level 0 low-altitude 0 001 & 01206474 a 0000 | occurring at a relatively low altitude; "a low-level strafing run" -01207282 00 s 01 low-lying 0 001 & 01206474 a 0000 | having a small elevation above the ground or horizon or sea level; "low-lying clouds" -01207423 00 s 02 lowset 0 low-set 0 001 & 01206474 a 0000 | lower than average; "lowset ears"; "a stocky low-set animal" -01207546 00 s 02 nether 0 under 0 001 & 01206474 a 0000 | located below or beneath something else; "nether garments"; "the under parts of a machine" -01207697 00 s 02 squat 0 underslung 0 002 & 01206474 a 0000 + 05137778 n 0101 | having a low center of gravity; built low to the ground -01207835 00 a 01 raised 0 004 ! 01208352 a 0101 & 01208044 a 0000 & 01208146 a 0000 & 01208221 a 0000 | located or moved above the surround or above the normal position; "a raised design"; "raised eyebrows" -01208044 00 s 01 elevated 0 001 & 01207835 a 0000 | raised above the ground; "an elevated platform" -01208146 00 s 01 up 0 001 & 01207835 a 0000 | open; "the windows are up" -01208221 00 s 02 upraised 0 lifted 0 001 & 01207835 a 0000 | held up in the air; "stood with arms upraised"; "her upraised flag" -01208352 00 a 01 lowered 0 002 ! 01207835 a 0101 & 01208492 a 0000 | below the surround or below the normal position; "with lowered eyes" -01208492 00 s 01 down 0 001 & 01208352 a 0000 | shut; "the shades were down" -01208571 00 a 02 high-tech 0 hi-tech 0 003 + 00950858 n 0101 ! 01208919 a 0101 & 01208738 a 0000 | resembling or making use of highly advanced technology or devices -01208738 00 s 02 advanced 0 sophisticated 0 001 & 01208571 a 0000 | ahead in development; complex or intricate; "advanced technology"; "a sophisticated electronic control system" -01208919 00 a 01 low-tech 0 001 ! 01208571 a 0101 | not involving high technology -01209003 00 a 01 necked 0 005 ! 01209679 a 0101 & 01209210 a 0000 & 01209351 a 0000 & 01209470 a 0000 & 01209542 a 0000 | having a neck or having a neck especially as specified (often used in combination) -01209210 00 s 03 decollete 0 low-cut 0 low-necked 0 001 & 01209003 a 0000 | (of a garment) having a low-cut neckline; "a low-cut neckline" -01209351 00 s 01 high-necked 0 001 & 01209003 a 0000 | (of a garment) having a high neckline; "a high-necked blouse" -01209470 00 s 01 necklike 0 001 & 01209003 a 0000 | resembling a neck -01209542 00 s 01 throated 0 002 & 01209003 a 0000 ;u 06307152 n 0000 | having a throat as specified; "deep-throated"; "white-throated" -01209679 00 a 01 neckless 0 001 ! 01209003 a 0101 | lacking or apparently lacking a neck -01209770 00 a 01 ceilinged 0 004 ! 01210300 a 0101 & 01209984 a 0000 & 01210080 a 0000 & 01210174 a 0000 | provided with a ceiling especially the overhead interior surface; "the large beam-ceilinged living room" -01209984 00 s 01 high-ceilinged 0 001 & 01209770 a 0000 | having a higher than normal ceiling -01210080 00 s 01 low-ceilinged 0 001 & 01209770 a 0000 | having a lower than normal ceiling -01210174 00 s 01 raftered 0 001 & 01209770 a 0000 | having the rafters especially having them visible; "a raftered ceiling" -01210300 00 a 01 floored 0 001 ! 01209770 a 0101 | provided with a floor -01210375 00 a 01 low-sudsing 0 001 ! 01210477 a 0101 | (used of e.g. detergents) producing few suds -01210477 00 a 01 high-sudsing 0 001 ! 01210375 a 0101 | (used of e.g. detergents) producing many suds -01210581 00 a 01 low-interest 0 001 ! 01210717 a 0101 | (used of loans) charging a relatively small percentage of the amount borrowed -01210717 00 a 01 high-interest 0 001 ! 01210581 a 0101 | (used of loans) charging a relatively large percentage of the amount borrowed -01210854 00 a 01 high 2 011 ^ 02338615 a 0000 = 05093890 n 0000 + 05097361 n 0101 ! 01212469 a 0101 & 01211296 a 0000 & 01211531 a 0000 & 01211665 a 0000 & 01211828 a 0000 & 01211962 a 0000 & 01212095 a 0000 & 01212346 a 0000 | greater than normal in degree or intensity or amount; "a high temperature"; "a high price"; "the high point of his career"; "high risks"; "has high hopes"; "the river is high"; "he has a high opinion of himself" -01211296 00 s 01 advanced 2 001 & 01210854 a 0000 | at a higher level in training or knowledge or skill; "an advanced degree"; "an advanced text in physics"; "special seminars for small groups of advanced students at the University" -01211531 00 s 02 broad(a) 0 full(a) 0 001 & 01210854 a 0000 | being at a peak or culminating point; "broad daylight"; "full summer" -01211665 00 s 02 graduate(a) 0 postgraduate 0 002 & 01210854 a 0000 + 10141109 n 0203 | of or relating to studies beyond a bachelor's degree; "graduate courses" -01211828 00 s 01 higher(a) 1 001 & 01210854 a 0000 | of education beyond the secondary level; "higher education"; "higher learning" -01211962 00 s 01 higher(a) 2 001 & 01210854 a 0000 | advanced in complexity or elaboration; "higher finance"; "higher mathematics" -01212095 00 s 02 last 0 utmost 0 002 & 01210854 a 0000 + 05124928 n 0201 | highest in extent or degree; "to the last measure of human endurance"; "whether they were accomplices in the last degree or a lesser one was...to be determined individually" -01212346 00 s 01 soaring 0 001 & 01210854 a 0000 | ascending to a level markedly higher than the usual; "soaring prices" -01212469 00 a 01 low 2 008 ^ 02340213 a 0000 = 05093890 n 0000 + 05097845 n 0101 ! 01210854 a 0101 & 01212732 a 0000 & 01212867 a 0000 & 01213000 a 0000 & 01213090 a 0000 | less than normal in degree or intensity or amount; "low prices"; "the reservoir is low" -01212732 00 s 03 debased 0 devalued 0 degraded 0 001 & 01212469 a 0000 | lowered in value; "the dollar is low"; "a debased currency" -01212867 00 s 02 depressed 0 down(p) 0 001 & 01212469 a 0000 | lower than previously; "the market is depressed"; "prices are down" -01213000 00 s 01 low-level 0 001 & 01212469 a 0000 | not intense; "low-level radiation" -01213090 00 s 02 reduced 0 rock-bottom 0 001 & 01212469 a 0000 | well below normal (especially in price) -01213197 00 a 02 high 3 high-pitched 0 014 = 04985198 n 0000 ! 01215421 a 0101 & 01213550 a 0000 & 01213721 a 0000 & 01213786 a 0000 & 01213961 a 0000 & 01214115 a 0000 & 01214255 a 0000 & 01214430 a 0000 & 01214606 a 0000 & 01214842 a 0000 & 01215028 a 0000 & 01215136 a 0000 & 01215263 a 0000 | used of sounds and voices; high in pitch or frequency -01213550 00 s 03 adenoidal 0 pinched 0 nasal 0 003 & 01213197 a 0000 + 07119211 n 0302 + 04989362 n 0301 | sounding as if the nose were pinched; "a whining nasal voice" -01213721 00 s 01 altissimo 0 001 & 01213197 a 0000 | very high -01213786 00 s 01 alto 1 003 & 01213197 a 0000 ;c 07020895 n 0000 + 04986637 n 0101 | (of a musical instrument) second highest member of a group; "alto clarinet or recorder" -01213961 00 s 02 countertenor 0 alto 2 002 & 01213197 a 0000 + 06872785 n 0202 | of or being the highest male voice; having a range above that of tenor -01214115 00 s 01 falsetto 0 002 & 01213197 a 0000 + 05127357 n 0101 | artificially high; above the normal voice range; "a falsetto voice" -01214255 00 s 02 peaky 0 spiky 0 002 & 01213197 a 0000 + 13653902 n 0102 | having or as if having especially high-pitched spots; "absence of peaky highs and beefed-up bass" -01214430 00 s 02 shrill 0 sharp 0 002 & 01213197 a 0000 + 04990021 n 0101 | having or emitting a high-pitched and sharp tone or tones ; "a shrill whistle"; "a shrill gaiety" -01214606 00 s 05 screaky 0 screechy 0 squeaking 0 squeaky 0 squealing 0 004 & 01213197 a 0000 + 07395623 n 0401 + 07393161 n 0201 + 07123012 n 0205 | having or making a high-pitched sound such as that made by a mouse or a rusty hinge -01214842 00 s 02 soprano 0 treble 0 001 & 01213197 a 0000 | having or denoting a high range; "soprano voice"; "soprano sax"; "the boy still had a fine treble voice"; "the treble clef" -01215028 00 s 01 sopranino 0 001 & 01213197 a 0000 | higher in range than soprano; "a sopranino recorder" -01215136 00 s 01 tenor 0 001 & 01213197 a 0000 | of or close in range to the highest natural adult male voice; "tenor voice" -01215263 00 s 01 tenor 2 002 & 01213197 a 0000 ;c 07020895 n 0000 | (of a musical instrument) intermediate between alto and baritone or bass; "a tenor sax" -01215421 00 a 02 low 3 low-pitched 0 008 = 04985198 n 0000 + 05097845 n 0101 ! 01213197 a 0101 & 01215663 a 0000 & 01215797 a 0000 & 01215935 a 0000 & 01216145 a 0000 & 01216317 a 0000 | used of sounds and voices; low in pitch or frequency -01215663 00 s 02 alto 3 contralto 0 003 & 01215421 a 0000 + 04986526 n 0101 + 06872905 n 0102 | of or being the lowest female voice -01215797 00 s 01 baritone 0 001 & 01215421 a 0000 | lower in range than tenor and higher than bass; "a baritone voice"; "baritone oboe" -01215935 00 s 02 bass 0 deep 0 002 & 01215421 a 0000 + 04986414 n 0201 | having or denoting a low vocal or instrumental range; "a deep voice"; "a bass voice is lower than a baritone voice"; "a bass clarinet" -01216145 00 s 02 contrabass 0 double-bass 0 001 & 01215421 a 0000 | pitched an octave below normal bass instrumental or vocal range; "contrabass or double-bass clarinet" -01216317 00 s 01 throaty 0 002 & 01215421 a 0000 + 05547508 n 0101 | sounding as if pronounced low in the throat; "a rich throaty voice" -01216456 00 a 01 imitative 0 007 + 01742886 v 0101 ! 01217485 a 0101 & 01216710 a 0000 & 01216807 a 0000 & 01216981 a 0000 & 01217134 a 0000 & 01217338 a 0000 | marked by or given to imitation; "acting is an imitative art"; "man is an imitative being" -01216710 00 s 02 apish 0 apelike 0 001 & 01216456 a 0000 | being or given to servile imitation -01216807 00 s 01 mimetic 0 002 & 01216456 a 0000 + 06613448 n 0101 | exhibiting mimicry; "mimetic coloring of a butterfly"; "the mimetic tendency of infancy"- R.W.Hamilton -01216981 00 s 01 mimic 0 002 & 01216456 a 0000 + 00550016 n 0101 | constituting an imitation; "the mimic warfare of the opera stage"- Archibald Alison -01217134 00 s 01 parrotlike 0 001 & 01216456 a 0000 | mechanically imitated or repeated without thought or understanding; "a mere parrotlike word-calling process"; "a voice quality sounding parrotlike" -01217338 00 s 01 simulated 0 001 & 01216456 a 0000 | reproduced or made to resemble; imitative in character; "under simulated combat conditions" -01217485 00 a 01 nonimitative 0 001 ! 01216456 a 0101 | not marked by or given to imitation -01217579 00 a 05 echoic 0 imitative 2 onomatopoeic 0 onomatopoeical 0 onomatopoetic 0 003 + 07104574 n 0501 + 07104574 n 0401 ! 01217919 a 0101 | (of words) formed in imitation of a natural sound; "onomatopoeic words are imitative of noises"; "it was independently developed in more than one place as an onomatopoetic term"- Harry Hoijer -01217919 00 a 01 nonechoic 0 001 ! 01217579 a 0101 | not echoic or imitative of sound -01218007 00 a 01 high-resolution 0 001 ! 01218207 a 0101 | producing images that are sharp and finely detailed; "high-resolution photography"; "a high-resolution lens"; "high-resolution television" -01218207 00 a 01 low-resolution 0 001 ! 01218007 a 0101 | of computer output devices; producing images that are not sharply defined -01218341 00 a 01 high-rise 0 003 ! 01218797 a 0101 & 01218548 a 0000 & 01218660 a 0000 | used of buildings of many stories equipped with elevators; tall; "avenues lined with high-rise apartment buildings" -01218548 00 s 03 multistory 0 multistorey 0 multistoried 0 001 & 01218341 a 0000 | having more than one story -01218660 00 s 02 storied 0 storeyed 0 002 & 01218341 a 0000 ;u 06307152 n 0000 | having stories as indicated; "a six-storied building" -01218797 00 a 01 low-rise 0 002 ! 01218341 a 0101 & 01219007 a 0000 | used of buildings of one or only a few stories and usually no elevator; low; "looking out over the roofs of low-rise apartment buildings" -01219007 00 s 01 walk-up 0 001 & 01218797 a 0000 | a building with no elevator; "a walk-up apartment" -01219111 00 a 02 upland 0 highland(a) 4 005 + 09302616 n 0201 ! 01219603 a 0101 & 01219279 a 0000 & 01219373 a 0000 & 01219502 a 0000 | used of high or hilly country -01219279 00 s 02 alpestrine 0 subalpine 0 001 & 01219111 a 0000 | growing at high altitudes -01219373 00 s 01 alpine 0 002 & 01219111 a 0000 ;c 06037666 n 0000 | living or growing above the timber line; "alpine flowers" -01219502 00 s 01 mountainous 0 002 & 01219111 a 0000 + 09359803 n 0101 | containing many mountains -01219603 00 a 01 lowland 0 002 ! 01219111 a 0101 & 01219709 a 0000 | of relatively low or level country -01219709 00 s 02 low-lying 0 sea-level 0 001 & 01219603 a 0000 | lying below the normal level; "a low-lying desert" -01219827 00 a 01 home(a) 0 002 ;c 00523513 n 0000 ! 01219938 a 0101 | used of your own ground; "a home game" -01219938 00 a 01 away 0 002 ;c 00523513 n 0000 ! 01219827 a 0101 | used of an opponent's ground; "an away game" -01220052 00 a 01 homologous 1 003 + 04744319 n 0101 ! 01220311 a 0101 ! 01220487 a 0101 | corresponding or similar in position or structure or function or characteristics; especially derived from an organism of the same species; "a homologous tissue graft" -01220311 00 a 01 heterologous 1 003 + 04750547 n 0101 ! 01220487 a 0101 ! 01220052 a 0101 | derived from organisms of a different but related species; "a heterologous graft" -01220487 00 a 01 autologous 0 002 ! 01220052 a 0101 ! 01220311 a 0101 | derived from organisms of the selfsame individual; "autologous blood donation" -01220640 00 a 01 homologous 2 004 ;c 06037666 n 0000 ! 01221290 a 0101 ! 01221057 a 0101 & 01220882 a 0000 | having the same evolutionary origin but not necessarily the same function; "the wing of a bat and the arm of a man are homologous" -01220882 00 s 02 homologic 0 homological 0 004 & 01220640 a 0000 ;c 06037666 n 0000 + 04744319 n 0201 + 04744319 n 0101 | similar in evolutionary origin but not in function -01221057 00 a 03 heterologous 2 heterologic 0 heterological 0 006 ;c 06037666 n 0000 + 04750547 n 0301 + 04750547 n 0201 + 04750547 n 0101 ! 01221290 a 0101 ! 01220640 a 0101 | not corresponding in structure or evolutionary origin -01221290 00 a 01 analogous 0 003 ;c 06037666 n 0000 ! 01220640 a 0101 ! 01221057 a 0101 | corresponding in function but not in evolutionary origin; "the wings of a bee and those of a hummingbird are analogous" -01221502 00 a 01 gabled 0 001 ! 01221719 a 0101 | (of a roof) constructed with a single slope on each side of the ridge supported at the end by a gable or vertical triangular portion of an end wall; "a gabled roof" -01221719 00 a 01 hipped 2 002 ! 01221502 a 0101 & 01221875 a 0000 | (of a roof) sloping on all sides; "a hipped roof has sloping ends rather than gables" -01221875 00 s 01 mansard 0 002 & 01221719 a 0000 + 03718789 n 0101 | (of a roof) having two slopes on all sides with the lower slope steeper than the upper; "the story formed by a mansard roof is usually called the garret" -01222100 00 a 01 hipped 0 002 ;u 06307152 n 0000 ! 01222253 a 0101 | having hips; or having hips as specified (usually in combination); "broad-hipped" -01222253 00 a 01 hipless 0 001 ! 01222100 a 0101 | having or seeming to have no hips; "slim and hipless" -01222360 00 a 02 honest 0 honorable 4 012 ^ 00763901 a 0000 ^ 01115349 a 0000 ^ 01226240 a 0000 ^ 01309991 a 0000 ^ 02179279 a 0000 ^ 02318464 a 0000 ^ 02460502 a 0000 ^ 02464693 a 0000 + 04868748 n 0201 + 04871374 n 0102 ! 01222884 a 0101 & 01222722 a 0000 | not disposed to cheat or defraud; not deceptive or fraudulent; "honest lawyers"; "honest reporting" -01222722 00 s 01 downright 0 002 & 01222360 a 0000 + 04918498 n 0101 | characterized by plain blunt honesty; "a downright answer"; "a downright kind of person" -01222884 00 a 02 dishonest 0 dishonorable 4 015 ^ 02319129 a 0000 ^ 01227137 a 0000 ^ 02461723 a 0000 ^ 02180797 a 0000 ^ 02466111 a 0000 + 04873550 n 0201 ! 01222360 a 0101 & 01223271 a 0000 & 01223781 a 0000 & 01223941 a 0000 & 01224253 a 0000 & 01224650 a 0000 & 01224755 a 0000 & 01224964 a 0000 & 01225294 a 0000 | deceptive or fraudulent; disposed to cheat or defraud or deceive -01223271 00 s 08 ambidextrous 0 deceitful 1 double-dealing 0 duplicitous 0 Janus-faced 0 two-faced 0 double-faced 0 double-tongued 0 005 & 01222884 a 0000 + 06760969 n 0402 + 00753240 n 0401 + 00753240 n 0302 + 04876561 n 0202 | marked by deliberate deceptiveness especially by pretending one set of feelings and acting under the influence of another; "she was a deceitful scheming little thing"- Israel Zangwill; "a double-dealing double agent"; "a double-faced infernal traitor and schemer"- W.M.Thackeray -01223781 00 s 01 beguiling 0 001 & 01222884 a 0000 | misleading by means of pleasant or alluring methods; "taken in by beguiling tales of overnight fortunes" -01223941 00 s 03 deceitful 2 fallacious 0 fraudulent 0 004 & 01222884 a 0000 + 04875352 n 0301 + 00753685 n 0302 + 04876561 n 0102 | intended to deceive; "deceitful advertising"; "fallacious testimony"; "smooth, shining, and deceitful as thin ice" - S.T.Coleridge; "a fraudulent scheme to escape paying taxes" -01224253 00 s 03 deceptive 0 misleading 0 shoddy 0 004 & 01222884 a 0000 + 02575082 v 0101 + 00854420 v 0101 + 04874939 n 0101 | designed to deceive or mislead either deliberately or inadvertently; "the deceptive calm in the eye of the storm"; "deliberately deceptive packaging"; "a misleading similarity"; "statistics can be presented in ways that are misleading"; "shoddy business practices" -01224650 00 s 01 false 0 001 & 01222884 a 0000 | designed to deceive; "a suitcase with a false bottom" -01224755 00 s 01 picaresque 0 001 & 01222884 a 0000 | involving clever rogues or adventurers especially as in a type of fiction; "picaresque novels"; "waifs of the picaresque tradition"; "a picaresque hero" -01224964 00 s 04 rascally 0 roguish 0 scoundrelly 0 blackguardly 0 005 & 01222884 a 0000 + 09886220 n 0403 + 10753546 n 0302 + 00736375 n 0209 + 10536728 n 0103 | lacking principles or scruples; "the rascally rabble"; "the tyranny of a scoundrelly aristocracy" - W.M. Thackaray; "the captain was set adrift by his roguish crew" -01225294 00 s 02 thieving(a) 0 thievish 0 002 & 01222884 a 0000 + 04875935 n 0201 | given to thievery -01225398 00 a 02 truthful 0 true 4 005 ^ 01222360 a 0000 + 04872236 n 0101 ! 01225898 a 0101 & 01225643 a 0000 & 01225772 a 0000 | expressing or given to expressing the truth; "a true statement"; "gave truthful testimony"; "a truthful person" -01225643 00 s 01 honest 0 002 & 01225398 a 0000 + 04871374 n 0102 | marked by truth; "gave honest answers"; "honest reporting" -01225772 00 s 01 veracious 0 002 & 01225398 a 0000 + 04872414 n 0101 | habitually speaking the truth; "a veracious witness" -01225898 00 a 01 untruthful 0 004 ^ 01222884 a 0000 + 04876053 n 0101 ! 01225398 a 0101 & 01226129 a 0000 | not expressing or given to expressing the truth; "the statement given under oath was untruthful"; "an untruthful person" -01226129 00 s 01 mendacious 0 002 & 01225898 a 0000 + 04876235 n 0101 | given to lying; "a mendacious child" -01226240 00 a 02 honorable 0 honourable 0 013 ^ 01222360 a 0000 ^ 01369663 a 0000 ^ 01548193 a 0000 ^ 01588172 a 0000 ^ 01982646 a 0000 ^ 02584981 a 0000 = 04868748 n 0000 + 04868748 n 0202 + 04868748 n 0101 ! 01227137 a 0101 & 01226660 a 0000 & 01226809 a 0000 & 01226997 a 0000 | worthy of being honored; entitled to honor and respect; "an honorable man"; "led an honorable life"; "honorable service to his country" -01226660 00 s 03 august 0 revered 0 venerable 0 003 & 01226240 a 0000 + 04869405 n 0302 + 04869405 n 0301 | profoundly honored; "revered holy men" -01226809 00 s 01 laureate 0 001 & 01226240 a 0000 | worthy of the greatest honor or distinction; "The nation's pediatrician laureate is preparing to lay down his black bag"- James Traub -01226997 00 s 02 time-honored 0 time-honoured 0 001 & 01226240 a 0000 | honored because of age or long usage; "time-honored institutions" -01227137 00 a 02 dishonorable 0 dishonourable 0 015 ^ 01222884 a 0000 ^ 01983797 a 0000 ^ 01589217 a 0000 ^ 01122411 a 0000 ^ 01370590 a 0000 ^ 02588099 a 0000 = 04868748 n 0000 + 04873550 n 0202 + 04873550 n 0101 ! 01226240 a 0101 & 01227546 a 0000 & 01228050 a 0000 & 01228159 a 0000 & 01228282 a 0000 & 01228370 a 0000 | lacking honor or integrity; deserving dishonor; "dishonorable in thought and deed" -01227546 00 s 06 black 0 disgraceful 0 ignominious 0 inglorious 0 opprobrious 0 shameful 0 006 & 01227137 a 0000 + 04808281 n 0601 + 14441230 n 0502 + 14440137 n 0303 + 04808281 n 0303 + 04808281 n 0202 | (used of conduct or character) deserving or bringing disgrace or shame; "Man...has written one of his blackest records as a destroyer on the oceanic islands"- Rachel Carson; "an ignominious retreat"; "inglorious defeat"; "an opprobrious monument to human greed"; "a shameful display of cowardice" -01228050 00 s 02 debasing 0 degrading 0 001 & 01227137 a 0000 | used of conduct; characterized by dishonor -01228159 00 s 01 shabby 0 002 & 01227137 a 0000 + 00744616 n 0104 | mean and unworthy and despicable; "shabby treatment" -01228282 00 s 01 unprincipled 0 001 & 01227137 a 0000 | having little or no integrity -01228370 00 s 01 yellow 0 001 & 01227137 a 0000 | cowardly or treacherous; "the little yellow stain of treason"-M.W.Straight; "too yellow to stand and fight" -01228530 00 a 01 hopeful 0 006 ^ 00866471 a 0000 ^ 01663571 a 0000 + 09801533 n 0103 + 07541316 n 0101 ! 01229020 a 0101 & 01228797 a 0000 | having or manifesting hope; "a line of people hopeful of obtaining tickets"; "found a hopeful way of attacking the problem" -01228797 00 s 03 anticipant 0 anticipative 0 expectant 0 006 & 01228530 a 0000 + 07511080 n 0302 + 00720063 v 0301 + 00719734 v 0301 + 01804961 v 0201 + 09797113 n 0102 | marked by eager anticipation; "an expectant hush" -01229020 00 a 01 hopeless 0 013 ^ 00867213 a 0000 ^ 01823092 a 0000 ^ 01664581 a 0000 + 07542249 n 0101 ! 01228530 a 0101 & 01229435 a 0000 & 01229561 a 0000 & 01229826 a 0000 & 01230153 a 0000 & 01230387 a 0000 & 01230521 a 0000 & 01230616 a 0000 & 01230728 a 0000 | without hope because there seems to be no possibility of comfort or success; "in an agony of hopeless grief"; "with a hopeless sigh he sat down" -01229435 00 s 02 abject 0 unhopeful 0 001 & 01229020 a 0000 | showing utter resignation or hopelessness; "abject surrender" -01229561 00 s 03 black 0 bleak 0 dim 0 002 & 01229020 a 0000 + 14525548 n 0201 | offering little or no hope; "the future looked black"; "prospects were bleak"; "Life in the Aran Islands has always been bleak and difficult"- J.M.Synge; "took a dim view of things" -01229826 00 s 02 despairing 0 desperate 0 001 & 01229020 a 0000 | arising from or marked by despair or loss of hope; "a despairing view of the world situation"; "the last despairing plea of the condemned criminal"; "a desperate cry for help"; "helpless and desperate--as if at the end of his tether"; "her desperate screams" -01230153 00 s 02 despondent 0 heartsick 0 005 & 01229020 a 0000 + 07538395 n 0203 + 07538395 n 0101 + 07538395 n 0102 + 01811172 v 0101 | without or almost without hope; "despondent about his failure"; "too heartsick to fight back" -01230387 00 s 01 forlorn 0 001 & 01229020 a 0000 | marked by or showing hopelessness; "the last forlorn attempt"; "a forlorn cause" -01230521 00 s 01 futureless 0 001 & 01229020 a 0000 | having no prospect or hope of a future -01230616 00 s 02 helpless 0 lost 0 002 & 01229020 a 0000 + 07538142 n 0101 | unable to function; without help -01230728 00 s 01 insoluble 0 002 & 01229020 a 0000 + 05215699 n 0102 | without hope of solution; "an insoluble problem" -01230850 00 a 02 institutionalized 0 institutionalised 0 001 ! 01231070 a 0101 | officially placed in or committed to a specialized institution; "had hopes of rehabilitating the institutionalized juvenile delinquents" -01231070 00 a 02 noninstitutionalized 0 noninstitutionalised 0 001 ! 01230850 a 0101 | not committed to an institution -01231191 00 a 01 institutional 0 004 + 08053576 n 0101 ! 01231837 a 0101 & 01231369 a 0000 & 01231638 a 0000 | organized as or forming an institution; "institutional religion" -01231369 00 s 02 institutionalized 0 institutionalised 0 001 & 01231191 a 0000 | given the character of an institution or incorporated into a structured and usually well-established system; "institutionalized graft"; "institutionalized suicide as practiced in Japan" -01231638 00 s 01 uninteresting 0 002 & 01231191 a 0000 + 05205340 n 0101 | characteristic or suggestive of an institution especially in being uniform or dull or unimaginative; "institutional food" -01231837 00 a 01 noninstitutional 0 001 ! 01231191 a 0101 | not institutional -01231917 00 a 01 iodinating 0 002 ;c 06084469 n 0000 ! 01232105 a 0101 | combining or causing to combine with iodine; "the active iodinating species"; "the in vivo iodinating mechanism" -01232105 00 a 01 de-iodinating 0 002 ;c 06084469 n 0000 ! 01231917 a 0101 | removing iodine from -01232204 00 a 01 consolable 0 002 + 01814815 v 0103 ! 01232298 a 0101 | able to be consoled -01232298 00 a 03 inconsolable 0 disconsolate 4 unconsolable 0 003 + 07538395 n 0204 ! 01232204 a 0101 & 01232507 a 0000 | sad beyond comforting; incapable of being consoled; "inconsolable when her son died" -01232507 00 s 01 desolate 0 001 & 01232298 a 0000 | crushed by grief; "depressed and desolate of soul"; "a low desolate wail" -01232635 00 a 01 horizontal 0 009 = 13828075 n 0000 + 13828681 n 0101 + 05079474 n 0101 ! 01233347 a 0101 ! 01234167 a 0101 & 01232917 a 0000 & 01233020 a 0000 & 01233104 a 0000 & 01233225 a 0000 | parallel to or in the plane of the horizon or a base line; "a horizontal surface" -01232917 00 s 01 crosswise 0 001 & 01232635 a 0000 | in the shape of (a horizontal piece on) a cross -01233020 00 s 01 flat 0 001 & 01232635 a 0000 | horizontally level; "a flat roof" -01233104 00 s 01 level 0 001 & 01232635 a 0000 | being on a precise horizontal plane; "a billiard table must be level" -01233225 00 s 02 naiant 0 swimming 0 002 & 01232635 a 0000 ;c 05801594 n 0000 | applied to a fish depicted horizontally -01233347 00 a 02 vertical 0 perpendicular 4 014 ^ 01144887 a 0000 ^ 02310895 a 0000 = 13828075 n 0000 + 13829047 n 0202 + 05072208 n 0201 + 13828795 n 0101 + 04515129 n 0102 + 05079638 n 0102 + 05079638 n 0101 ! 01234167 a 0101 ! 01232635 a 0101 & 01233851 a 0000 & 01233960 a 0000 & 01234030 a 0000 | at right angles to the plane of the horizon or a base line; "a vertical camera angle"; "the monument consists of two vertical pillars supporting a horizontal slab"; "measure the perpendicular height" -01233851 00 s 01 plumb 0 001 & 01233347 a 0000 | exactly vertical; "the tower of Pisa is far out of plumb" -01233960 00 s 01 upended 0 001 & 01233347 a 0000 | turned up on end -01234030 00 s 02 upright 0 unsloped 0 002 & 01233347 a 0000 + 05079638 n 0104 | in a vertical position; not sloping; "an upright post" -01234167 00 a 01 inclined 1 014 ^ 01144359 a 0000 ^ 01718867 a 0000 = 13828075 n 0000 ! 01232635 a 0101 ! 01233347 a 0101 & 01234527 a 0000 & 01234747 a 0000 & 01234952 a 0000 & 01235071 a 0000 & 01235178 a 0000 & 01235334 a 0000 & 01235439 a 0000 & 01235568 a 0000 & 01235706 a 0000 | at an angle to the horizontal or vertical position; "an inclined plane" -01234527 00 s 05 atilt 0 canted 0 leaning 0 tilted 0 tipped 0 001 & 01234167 a 0000 | departing or being caused to depart from the true vertical or horizontal; "the leaning tower of Pisa"; "the headstones were tilted" -01234747 00 s 07 aslant 0 aslope 0 diagonal 0 slanted 0 slanting 0 sloped 0 sloping 0 004 & 01234167 a 0000 + 13904164 n 0301 + 08268321 n 0301 + 08270417 n 0301 | having an oblique or slanted direction -01234952 00 s 01 high-pitched 0 001 & 01234167 a 0000 | set at a sharp or high angle or slant; "a high-pitched roof" -01235071 00 s 01 low-pitched 0 001 & 01234167 a 0000 | set at a low angle or slant; "a low-pitched roof" -01235178 00 s 01 monoclinal 0 002 & 01234167 a 0000 ;c 06115701 n 0000 | of a geological structure in which all strata are inclined in the same direction -01235334 00 s 01 pitched 0 001 & 01234167 a 0000 | set at a slant; "a pitched rather than a flat roof" -01235439 00 s 01 salient(ip) 0 002 & 01234167 a 0000 ;c 05801594 n 0000 | represented as leaping (rampant but leaning forward) -01235568 00 s 01 sidelong 0 001 & 01234167 a 0000 | inclining or directed to one side; "moved downward in a sidelong way" - Bram Stoker -01235706 00 s 02 skew 0 skewed 0 002 & 01234167 a 0000 + 05066195 n 0102 | having an oblique or slanting direction or position; "the picture was skew" -01235859 00 a 03 erect 0 vertical 2 upright 2 019 = 05079866 n 0000 + 05083054 n 0302 + 04515129 n 0202 + 05079638 n 0202 + 05079638 n 0103 + 05083054 n 0101 ! 01237897 a 0101 & 01236443 a 0000 & 01236565 a 0000 & 01236716 a 0000 & 01236842 a 0000 & 01236964 a 0000 & 01237162 a 0000 & 01237254 a 0000 & 01237342 a 0000 & 01237433 a 0000 & 01237534 a 0000 & 01237656 a 0000 & 01237754 a 0000 | upright in position or posture; "an erect stature"; "erect flower stalks"; "for a dog, an erect tail indicates aggression"; "a column still vertical amid the ruins"; "he sat bolt upright" -01236443 00 s 01 erectile 0 001 & 01235859 a 0000 | capable of being raised to an upright position; "erectile feathers" -01236565 00 s 01 fastigiate 0 002 & 01235859 a 0000 ;c 06066555 n 0000 | having clusters of erect branches (often appearing to form a single column) -01236716 00 s 01 orthostatic 0 001 & 01235859 a 0000 | pertaining to an upright standing posture; "orthostatic hypotension" -01236842 00 s 01 passant(ip) 0 002 & 01235859 a 0000 ;c 05801594 n 0000 | in walking position with right foreleg raised -01236964 00 s 02 rampant(ip) 0 rearing 0 003 & 01235859 a 0000 ;c 05801594 n 0000 + 02143124 v 0101 | rearing on left hind leg with forelegs elevated and head usually in profile; "a lion rampant" -01237162 00 s 01 semi-climbing 0 001 & 01235859 a 0000 | of plants that are semi-climbers -01237254 00 s 01 semi-erect 0 001 & 01235859 a 0000 | of plants that are partly erect -01237342 00 s 01 semi-upright 0 001 & 01235859 a 0000 | of animals that are partly erect -01237433 00 s 01 standing(a) 0 001 & 01235859 a 0000 | having a supporting base; "a standing lamp" -01237534 00 s 01 stand-up 0 001 & 01235859 a 0000 | requiring a standing position; "a stand-up bar"; "a stand-up comic" -01237656 00 s 01 statant(ip) 0 002 & 01235859 a 0000 ;c 05801594 n 0000 | standing on four feet -01237754 00 s 03 straight 0 unbent 0 unbowed 0 001 & 01235859 a 0000 | erect in posture; "sit straight"; "stood defiantly with unbowed back" -01237897 00 a 01 unerect 0 013 = 05079866 n 0000 ! 01235859 a 0101 & 01238201 a 0000 & 01238343 a 0000 & 01238486 a 0000 & 01238773 a 0000 & 01238914 a 0000 & 01239040 a 0000 & 01239199 a 0000 & 01239410 a 0000 & 01239534 a 0000 & 01239617 a 0000 & 01239781 a 0000 | not upright in position or posture -01238201 00 s 03 accumbent 0 decumbent 0 recumbent 0 002 & 01237897 a 0000 + 01547390 v 0301 | lying down; in a position of comfort or rest -01238343 00 s 02 bended 0 bent 2 001 & 01237897 a 0000 | used of the back and knees; stooped; "on bended knee"; "with bent (or bended) back" -01238486 00 s 05 cernuous 0 drooping 0 nodding 0 pendulous 0 weeping 0 002 & 01237897 a 0000 ;c 06037666 n 0000 | having branches or flower heads that bend downward; "nodding daffodils"; "the pendulous branches of a weeping willow"; "lilacs with drooping panicles of fragrant flowers" -01238773 00 s 01 couchant(ip) 0 002 & 01237897 a 0000 ;c 05801594 n 0000 | lying on the stomach with head raised with legs pointed forward -01238914 00 s 02 dormant(ip) 0 sleeping 0 002 & 01237897 a 0000 ;c 05801594 n 0000 | lying with head on paws as if sleeping -01239040 00 s 02 flat 0 prostrate 1 001 & 01237897 a 0000 | stretched out and lying at full length along the ground; "found himself lying flat on the floor" -01239199 00 s 06 hunched 0 round-backed 0 round-shouldered 0 stooped 0 stooping 0 crooked 0 001 & 01237897 a 0000 | having the back and shoulders rounded; not erect; "a little oldish misshapen stooping woman" -01239410 00 s 01 procumbent 0 001 & 01237897 a 0000 | having stems that trail along the ground without putting down roots -01239534 00 s 02 prone 0 prostrate 2 001 & 01237897 a 0000 | lying face downward -01239617 00 s 01 semi-prostrate 0 001 & 01237897 a 0000 | imperfectly prostrate; prostrate for part of its length; "the semi-prostrate evergreen, purple heather" -01239781 00 s 02 supine 0 resupine 0 001 & 01237897 a 0000 | lying face upward -01239862 00 a 01 standing 0 001 ! 01240029 a 0101 | (of persons) on the feet; having the torso in an erect position supported by straight legs; "standing room only" -01240029 00 a 02 seated 0 sitting 2 001 ! 01239862 a 0101 | (of persons) having the torso erect and legs bent with the body supported on the buttocks; "the seated Madonna"; "the audience remained seated" -01240235 00 a 01 standing(a) 1 001 ! 01240413 a 0101 | executed in or initiated from a standing position; "race from a standing start"; "a standing jump"; "a standing ovation" -01240413 00 a 01 running(a) 1 001 ! 01240235 a 0101 | executed or initiated by running; "running plays worked better than pass plays"; "took a running jump"; "a running start" -01240591 00 a 01 running(a) 2 003 ! 01241065 a 0101 & 01240805 a 0000 & 01240931 a 0000 | (of fluids) moving or issuing in a stream; "as mountain stream with freely running water"; "hovels without running water" -01240805 00 s 02 gushing 0 pouring 0 001 & 01240591 a 0000 | flowing profusely; "a gushing hydrant"; "pouring flood waters" -01240931 00 s 04 jetting 0 spouting 0 spurting 0 squirting 0 001 & 01240591 a 0000 | propelled violently in a usually narrow stream -01241065 00 a 01 standing(a) 2 004 ! 01240591 a 0101 & 01241248 a 0000 & 01241455 a 0000 & 01241600 a 0000 | (of fluids) not moving or flowing; "mosquitoes breed in standing water" -01241248 00 s 02 dead(a) 0 stagnant 0 005 & 01241065 a 0000 + 14013005 n 0202 + 02725067 v 0201 + 02724835 v 0201 + 05006519 n 0101 | not circulating or flowing; "dead air"; "dead water"; "stagnant water" -01241455 00 s 01 slack 0 002 & 01241065 a 0000 + 09436906 n 0101 | flowing with little speed as e.g. at the turning of the tide; "slack water" -01241600 00 s 01 still 2 003 & 01241065 a 0000 + 14006179 n 0102 + 14522809 n 0101 | free from noticeable current; "a still pond"; "still waters run deep" -01241757 00 a 01 running(a) 0 002 ;c 00468480 n 0000 ! 01241927 a 0101 | of advancing the ball by running; "the team's running plays worked better than its pass plays" -01241927 00 a 02 passing(a) 0 pass(a) 0 002 ;c 00468480 n 0000 ! 01241757 a 0101 | of advancing the ball by throwing it; "a team with a good passing attack"; "a pass play" -01242101 00 a 01 hospitable 0 002 ! 01242489 a 0101 & 01242282 a 0000 | favorable to life and growth; "soil sufficiently hospitable for forest growth"; "a hospitable environment" -01242282 00 s 02 kind 0 genial 0 001 & 01242101 a 0000 | agreeable, conducive to comfort; "a dry climate kind to asthmatics"; "the genial sunshine";"hot summer pavements are anything but kind to the feet" -01242489 00 a 01 inhospitable 0 007 + 14519942 n 0101 ! 01242101 a 0101 & 01242750 a 0000 & 01243102 a 0000 & 01243373 a 0000 & 01243609 a 0000 & 01243722 a 0000 | unfavorable to life or growth; "the barren inhospitable desert"; "inhospitable mountain areas" -01242750 00 s 05 bare 0 barren 0 bleak 0 desolate 0 stark 0 006 & 01242489 a 0000 + 04697819 n 0502 + 14525548 n 0301 + 08504594 n 0201 + 05148186 n 0203 + 04697819 n 0101 | providing no shelter or sustenance; "bare rocky hills"; "barren lands"; "the bleak treeless regions of the high Andes"; "the desolate surface of the moon"; "a stark landscape" -01243102 00 s 03 godforsaken 0 waste 0 wild 0 004 & 01242489 a 0000 + 08683548 n 0302 + 08683548 n 0301 + 08504594 n 0202 | located in a dismal or remote area; desolate; "a desert island"; "a godforsaken wilderness crossroads"; "a wild stretch of land"; "waste places" -01243373 00 s 03 hostile 0 uncongenial 0 unfriendly 0 001 & 01242489 a 0000 | very unfavorable to life or growth; "a hostile climate"; "an uncongenial atmosphere"; "an uncongenial soil"; "the unfriendly environment at high altitudes" -01243609 00 s 01 water-washed 0 001 & 01242489 a 0000 | washed or swept with water especially waves of the sea -01243722 00 s 01 windswept 0 001 & 01242489 a 0000 | open to or swept by wind; "windswept headlands" -01243825 00 a 01 hospitable 2 005 ^ 01074650 a 0000 + 04656282 n 0101 + 06631506 n 0102 ! 01244195 a 0101 & 01244106 a 0000 | disposed to treat guests and strangers with cordiality and generosity; "a good-natured and hospitable man"; "a hospitable act"; "hospitable invitations" -01244106 00 s 01 welcoming 1 001 & 01243825 a 0000 | very cordial; "a welcoming smile" -01244195 00 a 01 inhospitable 2 004 ^ 01076793 a 0000 + 04658942 n 0101 + 06631661 n 0101 ! 01243825 a 0101 | not hospitable; "they are extremely inhospitable these days"; "her greeting was cold and inhospitable" -01244410 00 a 01 hostile 1 017 ^ 00082241 a 0000 ^ 01460421 a 0000 ^ 01628946 a 0000 ^ 01076793 a 0000 ^ 01742296 a 0000 ^ 02510879 a 0000 + 07547805 n 0101 ! 01246579 a 0101 & 01244846 a 0000 & 01245138 a 0000 & 01245441 a 0000 & 01245610 a 0000 & 01245778 a 0000 & 01245889 a 0000 & 01246004 a 0000 & 01246148 a 0000 & 01246388 a 0000 | characterized by enmity or ill will; "a hostile nation"; "a hostile remark"; "hostile actions" -01244846 00 s 02 aggressive 0 belligerent 0 007 & 01244410 a 0000 + 09939313 n 0203 + 07548695 n 0202 + 07548695 n 0201 + 04643662 n 0202 + 01118449 v 0102 + 04643662 n 0101 | characteristic of an enemy or one eager to fight; "aggressive acts against another country"; "a belligerent tone" -01245138 00 s 03 antagonistic 0 antipathetic 0 antipathetical 0 006 & 01244410 a 0000 + 07502669 n 0301 + 07502669 n 0201 + 05811466 n 0201 + 13980288 n 0103 + 13860548 n 0101 | characterized by antagonism or antipathy; "slaves antagonistic to their masters"; "antipathetic factions within the party" -01245441 00 s 01 at_loggerheads 0 001 & 01244410 a 0000 | in a dispute or confrontation; "Sam and his parents were at loggerheads over the question of car privileges" -01245610 00 s 01 bitter 0 002 & 01244410 a 0000 + 07548978 n 0102 | proceeding from or exhibiting great hostility or animosity; "a bitter struggle"; "bitter enemies" -01245778 00 s 01 dirty 0 001 & 01244410 a 0000 | expressing or revealing hostility or dislike; "dirty looks" -01245889 00 s 01 head-on 0 001 & 01244410 a 0000 | characterized by direct opposition; "a head-on confrontation" -01246004 00 s 01 ill 0 001 & 01244410 a 0000 | indicating hostility or enmity; "you certainly did me an ill turn"; "ill feelings"; "ill will" -01246148 00 s 02 opponent 0 opposing 0 007 & 01244410 a 0000 + 09773245 n 0103 + 02378623 v 0102 + 01091427 v 0102 + 01081152 v 0102 + 00775831 v 0101 + 00776059 v 0101 | characterized by active hostility; "opponent (or opposing) armies" -01246388 00 s 02 unfriendly 1 inimical 0 004 & 01244410 a 0000 + 13980288 n 0202 + 07547805 n 0202 + 07502241 n 0101 | not friendly; "an unfriendly act of aggression"; "an inimical critic" -01246579 00 a 01 amicable 0 008 ^ 01074650 a 0000 ^ 01459422 a 0000 ^ 01740892 a 0000 + 04654998 n 0101 + 04654998 n 0102 ! 01244410 a 0101 & 01246801 a 0000 & 01247025 a 0000 | characterized by friendship and good will -01246801 00 s 03 friendly 0 favorable 0 well-disposed 0 002 & 01246579 a 0000 + 07499615 n 0101 | inclined to help or support; not antagonistic or hostile; "a government friendly to our interests"; "an amicable agreement" -01247025 00 s 02 well-meaning 0 unthreatening 0 001 & 01246579 a 0000 | not unfriendly or threatening; "her well-meaning words were received in silence"; "the exasperation of a...well-meaning cow worried by dogs" -01247240 00 a 01 hot 1 025 ^ 02529264 a 0000 = 05011790 n 0000 + 05016171 n 0101 ! 01251128 a 0101 & 01247975 a 0000 & 01248064 a 0000 & 01248198 a 0000 & 01248358 a 0000 & 01248477 a 0000 & 01248605 a 0000 & 01248713 a 0000 & 01248958 a 0000 & 01249137 a 0000 & 01249309 a 0000 & 01249555 a 0000 & 01249621 a 0000 & 01249768 a 0000 & 01249843 a 0000 & 01249962 a 0000 & 01250121 a 0000 & 01250393 a 0000 & 01250565 a 0000 & 01250694 a 0000 & 01250835 a 0000 & 01250991 a 0000 | used of physical heat; having a high or higher than desirable temperature or giving off heat or feeling or causing a sensation of heat or burning; "hot stove"; "hot water"; "a hot August day"; "a hot stuffy room"; "she's hot and tired"; "a hot forehead" -01247975 00 s 02 baking 0 baking_hot 0 001 & 01247240 a 0000 | as hot as if in an oven -01248064 00 s 02 blistering 0 blistery 0 001 & 01247240 a 0000 | hot enough to raise (or as if to raise) blisters; "blistering sun" -01248198 00 s 02 calefacient 0 warming 0 001 & 01247240 a 0000 | producing the sensation of heat when applied to the body; "a mustard plaster is calefacient" -01248358 00 s 02 calefactory 0 calefactive 0 001 & 01247240 a 0000 | serving to heat; "a heating pad is calefactory" -01248477 00 s 01 calorifacient 0 001 & 01247240 a 0000 | producing heat; usually used of foods; "calorifacient chili peppers" -01248605 00 s 01 calorific 0 001 & 01247240 a 0000 | heat-generating; "the calorific properties of fuels" -01248713 00 s 02 fervent 0 fervid 0 001 & 01247240 a 0000 | extremely hot; "the fervent heat...merely communicated a genial warmth to their half-torpid systems"- Nathaniel Hawthorne; "set out...when the fervid heat subsides"- Frances Trollope -01248958 00 s 02 fiery 0 igneous 0 003 & 01247240 a 0000 + 13480848 n 0101 + 05016553 n 0101 | like or suggestive of fire; "a fiery desert wind"; "an igneous desert atmosphere" -01249137 00 s 01 heatable 0 004 & 01247240 a 0000 + 02333358 v 0101 + 00371264 v 0101 + 00372665 v 0101 | capable of becoming hot; "the heatable tip of a soldering iron" -01249309 00 s 04 heated 0 heated_up 0 het 0 het_up 0 001 & 01247240 a 0000 | made warm or hot (`het' is a dialectal variant of `heated'); "a heated swimming pool"; "wiped his heated-up face with a large bandana"; "he was all het up and sweaty" -01249555 00 s 01 hottish 0 001 & 01247240 a 0000 | somewhat hot -01249621 00 s 01 overheated 0 001 & 01247240 a 0000 | heated beyond a safe or desirable point; "the child became overheated"; "overheated metal" -01249768 00 s 01 red-hot 0 001 & 01247240 a 0000 | glowing red with heat -01249843 00 s 01 scorching 1 001 & 01247240 a 0000 | hot and dry enough to burn or parch a surface; "scorching heat" -01249962 00 s 01 sizzling 0 001 & 01247240 a 0000 | hot enough to burn with or as if with a hissing sound; "a sizzling steak"; "a sizzling spell of weather" -01250121 00 s 04 sultry 0 stifling 0 sulfurous 0 sulphurous 0 002 & 01247240 a 0000 + 11466909 n 0101 | characterized by oppressive heat and humidity; "the summer was sultry and oppressive"; "the stifling atmosphere"; "the sulfurous atmosphere preceding a thunderstorm" -01250393 00 s 02 sweltering 0 sweltry 0 001 & 01247240 a 0000 | excessively hot and humid or marked by sweating and faintness; "a sweltering room"; "sweltering athletes" -01250565 00 s 01 thermal 0 001 & 01247240 a 0000 | caused by or designed to retain heat; "a thermal burn"; "thermal underwear" -01250694 00 s 01 torrid 0 002 & 01247240 a 0000 + 05016667 n 0101 | extremely hot; "the torrid noonday sun"; "sultry sands of the dessert" -01250835 00 s 02 tropical 0 tropic 0 002 & 01247240 a 0000 + 08675145 n 0101 | of weather or climate; hot and humid as in the tropics; "tropical weather" -01250991 00 s 02 white 0 white-hot 0 001 & 01247240 a 0000 | glowing white with heat; "white flames"; "a white-hot center of the fire" -01251128 00 a 01 cold 1 023 ^ 02529945 a 0000 ^ 01078302 a 0000 = 05011790 n 0000 + 05725676 n 0101 + 05015117 n 0102 + 05725676 n 0102 ! 01247240 a 0101 & 01251830 a 0000 & 01251958 a 0000 & 01252151 a 0000 & 01252399 a 0000 & 01252566 a 0000 & 01252714 a 0000 & 01253022 a 0000 & 01253112 a 0000 & 01253254 a 0000 & 01253469 a 0000 & 01253592 a 0000 & 01253661 a 0000 & 01253879 a 0000 & 01254026 a 0000 & 01254165 a 0000 & 01254296 a 0000 | having a low or inadequate temperature or feeling a sensation of coldness or having been made cold by e.g. ice or refrigeration; "a cold climate"; "a cold room"; "dinner has gotten cold"; "cold fingers"; "if you are cold, turn up the heat"; "a cold beer" -01251830 00 s 01 acold 0 002 & 01251128 a 0000 ;u 07073447 n 0000 | of persons; feeling cold; "Poor Tom's acold"- Shakespeare -01251958 00 s 01 algid 0 003 & 01251128 a 0000 ;c 06043075 n 0000 + 14204441 n 0101 | chilly; "a person who is algid is marked by prostration and has cold clammy skin and low blood pressure" -01252151 00 s 06 arctic 0 frigid 0 gelid 0 glacial 0 icy 0 polar 0 002 & 01251128 a 0000 + 05015463 n 0303 | extremely cold; "an arctic climate"; "a frigid day"; "gelid waters of the North Atlantic"; "glacial winds"; "icy hands"; "polar weather" -01252399 00 s 03 bleak 0 cutting 0 raw 0 003 & 01251128 a 0000 + 14536207 n 0301 + 14525548 n 0101 | unpleasantly cold and damp; "bleak winds of the North Atlantic" -01252566 00 s 02 chilly 0 parky 0 004 & 01251128 a 0000 ;u 08860123 n 0204 + 05015463 n 0101 + 05015678 n 0101 | appreciably or disagreeably cold -01252714 00 s 05 crisp 0 frosty 1 nipping 0 nippy 0 snappy 0 006 & 01251128 a 0000 + 15299097 n 0501 + 00344699 n 0501 + 05015678 n 0403 + 11440521 n 0202 + 05015878 n 0201 | pleasantly cold and invigorating; "crisp clear nights and frosty mornings"; "a nipping wind"; "a nippy fall day"; "snappy weather" -01253022 00 s 01 frigorific 0 001 & 01251128 a 0000 | causing cold; cooling or chilling -01253112 00 s 01 frore 0 002 & 01251128 a 0000 ;u 07073447 n 0000 | very cold; "whatever the evenings be--frosty and frore or warm and wet" -01253254 00 s 03 frosty 2 rimed 0 rimy 0 004 & 01251128 a 0000 + 14915622 n 0101 + 13485270 n 0101 + 05015878 n 0101 | covered with frost; "a frosty glass"; "hedgerows were rimed and stiff with frost"-Wm.Faulkner -01253469 00 s 01 heatless 0 001 & 01251128 a 0000 | without generating heat; "luminescent organisms emit heatless light" -01253592 00 s 01 ice-cold 0 001 & 01251128 a 0000 | as cold as ice -01253661 00 s 02 refrigerant 0 refrigerating 0 004 & 01251128 a 0000 + 15003797 n 0101 + 00371955 v 0101 + 00371051 v 0101 | causing cooling or freezing; "a refrigerant substance such as ice or solid carbon dioxide" -01253879 00 s 01 refrigerated 0 001 & 01251128 a 0000 | made or kept cold by refrigeration; "keep the milk refrigerated"; "a refrigerated truck" -01254026 00 s 01 shivery 0 002 & 01251128 a 0000 + 00867983 n 0102 | cold enough to cause shivers; "felt all shivery"; "shivery weather" -01254165 00 s 01 stone-cold 0 001 & 01251128 a 0000 | completely cold; "by the time he got back to his coffee it was stone-cold" -01254296 00 s 02 unheated 0 unwarmed 0 001 & 01251128 a 0000 | not having been heated or warmed; "an unheated room"; "unwarmed rolls" -01254432 00 a 01 vernal 0 004 ! 01254784 a 0101 ! 01255296 a 0101 ! 01255807 a 0101 & 01254607 a 0000 | of or characteristic of or occurring in spring; "the vernal equinox" -01254607 00 s 05 spring-flowering 0 early-flowering 0 spring-blooming 0 early-blooming 0 late-spring-blooming 0 001 & 01254432 a 0000 | of plants that bloom during the spring -01254784 00 a 01 summery 0 006 + 15237250 n 0101 ! 01255296 a 0101 ! 01255807 a 0101 ! 01254432 a 0101 & 01255022 a 0000 & 01255177 a 0000 | belonging to or characteristic of or occurring in summer; "summery weather"; "summery dresses" -01255022 00 s 02 aestival 0 estival 0 001 & 01254784 a 0000 | (rare) of or occurring in summer; "the sky was a burnished aestival blue"; "estival winds" -01255177 00 s 02 summer-flowering 0 summer-blooming 0 001 & 01254784 a 0000 | of plants that bloom during the summer -01255296 00 a 01 autumnal 0 006 + 15236859 n 0102 ! 01255807 a 0101 ! 01254432 a 0101 ! 01254784 a 0101 & 01255530 a 0000 & 01255715 a 0000 | of or characteristic of or occurring in autumn; "the autumnal equinox"; "autumnal fruits" -01255530 00 s 06 autumn-flowering 0 autumn-blooming 0 fall-flowering 0 fall-blooming 0 late-flowering 0 late-blooming 0 001 & 01255296 a 0000 | of plants that bloom during the autumn -01255715 00 s 01 late-ripening 0 001 & 01255296 a 0000 | of plants that ripen in the fall -01255807 00 a 02 wintry 0 wintery 0 007 + 15237782 n 0201 + 15237782 n 0101 ! 01254432 a 0101 ! 01254784 a 0101 ! 01255296 a 0101 & 01256076 a 0000 & 01256213 a 0000 | characteristic of or occurring in winter; "suffered severe wintry weather"; "brown wintry grasses" -01256076 00 s 03 brumal 0 hibernal 0 hiemal 0 001 & 01255807 a 0000 | characteristic of or relating to winter; "bears in brumal sleep" -01256213 00 s 02 winter-blooming 0 winter-flowering 0 001 & 01255807 a 0000 | of plants that bloom during the winter -01256332 00 a 01 hot 2 009 ^ 01725712 a 0000 = 04626280 n 0000 ! 01257612 a 0101 & 01256735 a 0000 & 01256865 a 0000 & 01256973 a 0000 & 01257145 a 0000 & 01257330 a 0000 & 01257501 a 0000 | extended meanings; especially of psychological heat; marked by intensity or vehemence especially of passion or enthusiasm; "a hot temper"; "a hot topic"; "a hot new book"; "a hot love affair"; "a hot argument" -01256735 00 s 02 fiery 0 flaming 0 002 & 01256332 a 0000 + 04628336 n 0101 | very intense; "a fiery temper"; "flaming passions" -01256865 00 s 01 heated 0 001 & 01256332 a 0000 | marked by emotional heat; vehement; "a heated argument" -01256973 00 s 02 red-hot 2 sizzling 2 001 & 01256332 a 0000 | characterized by intense emotion or interest or excitement; "a red-hot speech"; "sizzling political issues" -01257145 00 s 02 sensual 0 sultry 0 003 & 01256332 a 0000 + 04687119 n 0201 + 07488875 n 0102 | sexually exciting or gratifying; "sensual excesses"; "a sultry look"; "a sultry dance" -01257330 00 s 01 torrid 0 001 & 01256332 a 0000 | emotionally charged and vigorously energetic; "a torrid dance"; "torrid jazz bands"; "hot trumpets and torrid rhythms" -01257501 00 s 01 white-hot 0 001 & 01256332 a 0000 | intensely zealous or fervid; "fierce white-hot loyalty" -01257612 00 a 01 cold 2 007 ^ 02531422 a 0000 ^ 01727439 a 0000 = 04626280 n 0000 + 04629604 n 0101 ! 01256332 a 0101 & 01257990 a 0000 & 01258264 a 0000 | extended meanings; especially of psychological coldness; without human warmth or emotion; "a cold unfriendly nod"; "a cold and unaffectionate person"; "a cold impersonal manner"; "cold logic"; "the concert left me cold" -01257990 00 s 02 emotionless 0 passionless 0 003 & 01257612 a 0000 + 07483782 n 0101 + 04629194 n 0102 | unmoved by feeling; "he kept his emotionless objectivity and faith in the cause he served"; "this passionless girl was like an icicle in the sunshine"-Margaret Deland -01258264 00 s 06 frigid 0 frosty 0 frozen 0 glacial 0 icy 0 wintry 0 004 & 01257612 a 0000 + 04629604 n 0505 + 04629604 n 0104 + 04629604 n 0103 | devoid of warmth and cordiality; expressive of unfriendliness or disdain; "a frigid greeting"; "got a frosty reception"; "a frozen look on their faces"; "a glacial handshake"; "icy stare"; "wintry smile" -01258617 00 a 01 human 0 012 = 04726938 n 0000 + 02472293 n 0104 + 04726938 n 0101 + 04726938 n 0102 ! 01260023 a 0101 & 01259015 a 0000 & 01259123 a 0000 & 01259280 a 0000 & 01259391 a 0000 & 01259644 a 0000 & 01259746 a 0000 & 01259941 a 0000 | having human form or attributes as opposed to those of animals or divine beings; "human beings"; "the human body"; "human kindness"; "human frailty" -01259015 00 s 02 anthropoid 1 manlike 0 002 & 01258617 a 0000 + 02470709 n 0101 | resembling human beings -01259123 00 s 03 anthropomorphic 0 anthropomorphous 0 humanlike 0 001 & 01258617 a 0000 | suggesting human characteristics for animals or inanimate things -01259280 00 s 01 earthborn 0 001 & 01258617 a 0000 | springing from or born on the earth; "earthborn beings" -01259391 00 s 04 fallible 0 frail 0 imperfect 0 weak 0 002 & 01258617 a 0000 + 14462666 n 0302 | wanting in moral strength, courage, or will; having the attributes of man as opposed to e.g. divine beings; "I'm only a fallible human"; "frail humanity" -01259644 00 s 01 hominal 0 001 & 01258617 a 0000 | of humankind as a species; "the hominal kingdom" -01259746 00 s 02 hominian 0 hominid 0 002 & 01258617 a 0000 + 02471762 n 0201 | characterizing the family Hominidae, which includes Homo sapiens as well as extinct species of manlike creatures -01259941 00 s 01 hominine 0 001 & 01258617 a 0000 | characteristic of humankind -01260023 00 a 01 nonhuman 0 006 = 04726938 n 0000 ! 01258617 a 0101 & 01260282 a 0000 & 01260451 a 0000 & 01260584 a 0000 & 01260707 a 0000 | not human; not belonging to or produced by or appropriate to human beings; "nonhuman primates such as chimpanzees" -01260282 00 s 03 anthropoid 2 anthropoidal 0 apelike 0 005 & 01260023 a 0000 + 09796185 n 0201 + 02470709 n 0201 + 09796185 n 0101 + 02470709 n 0101 | resembling apes -01260451 00 s 01 bloodless 0 001 & 01260023 a 0000 | devoid of human emotion or feeling; "charts of bloodless economic indicators" -01260584 00 s 03 dehumanized 0 dehumanised 0 unhuman 0 001 & 01260023 a 0000 | divested of human qualities or attributes -01260707 00 s 01 inhuman 0 001 & 01260023 a 0000 | belonging to or resembling something nonhuman; "something dark and inhuman in form"; "a babel of inhuman noises" -01260873 00 a 01 superhuman 0 003 ! 01261528 a 0101 & 01261127 a 0000 & 01261363 a 0000 | above or beyond the human or demanding more than human power or endurance; "superhuman beings"; "superhuman strength"; "soldiers driven mad by superhuman misery" -01261127 00 s 02 divine 0 godlike 0 001 & 01260873 a 0000 | appropriate to or befitting a god; "the divine strength of Achilles"; "a man of godlike sagacity"; "man must play God for he has acquired certain godlike powers"-R.H.Roveref -01261363 00 s 02 herculean 0 powerful 0 003 & 01260873 a 0000 + 05190804 n 0202 + 09578005 n 0101 | displaying superhuman strength or power; "herculean exertions" -01261528 00 a 01 subhuman 0 002 ! 01260873 a 0101 & 01261727 a 0000 | less than human or not worthy of a human being; "treated natives as subhuman"; "a subhuman spectacle"; "the subhuman primates" -01261727 00 s 01 infrahuman 0 001 & 01261528 a 0000 | belonging to a group below humans in evolutionary development; "infrahuman animals" -01261867 00 a 01 humane 0 009 ^ 00411886 a 0000 ^ 00506299 a 0000 ^ 01258617 a 0000 ^ 01507134 a 0000 = 04828925 n 0000 + 04828925 n 0101 ! 01262611 a 0101 & 01262128 a 0000 & 01262284 a 0000 | marked or motivated by concern with the alleviation of suffering -01262128 00 s 01 child-centered 0 001 & 01261867 a 0000 | designed to promote a child's personal qualities rather than to provide training or information -01262284 00 s 05 human-centered 0 human-centred 0 humanist 0 humanistic 0 humanitarian 0 002 & 01261867 a 0000 + 05967402 n 0402 | marked by humanistic values and devotion to human welfare; "a humane physician"; "released the prisoner for humanitarian reasons"; "respect and humanistic regard for all members of our species" -01262611 00 a 01 inhumane 0 009 ^ 01711071 a 0000 = 04828925 n 0000 + 04830102 n 0101 ! 01261867 a 0101 & 01263013 a 0000 & 01263445 a 0000 & 01263832 a 0000 & 01263971 a 0000 & 01264179 a 0000 | lacking and reflecting lack of pity or compassion; "humans are innately inhumane; this explains much of the misery and suffering in the world"; "biological weapons are considered too inhumane to be used" -01263013 00 s 07 barbarous 0 brutal 1 cruel 1 fell 0 roughshod 0 savage 0 vicious 0 007 & 01262611 a 0000 + 04830689 n 0703 + 09845589 n 0603 + 05038251 n 0601 + 04845475 n 0302 + 04830689 n 0202 + 04830343 n 0104 | (of persons or their actions) able or disposed to inflict pain or suffering; "a barbarous crime"; "brutal beatings"; "cruel tortures"; "Stalin's roughshod treatment of the kulaks"; "a savage slap"; "vicious kicks" -01263445 00 s 05 beastly 0 bestial 0 brute(a) 0 brutish 0 brutal 0 008 & 01262611 a 0000 + 00114052 v 0501 + 00113853 v 0501 + 00410244 v 0201 + 00015388 n 0203 + 04830578 n 0201 + 00015388 n 0103 + 04845684 n 0101 | resembling a beast; showing lack of human sensibility; "beastly desires"; "a bestial nature"; "brute force"; "a dull and brutish man"; "bestial treatment of prisoners" -01263832 00 s 01 cannibalic 0 002 & 01262611 a 0000 + 09891079 n 0101 | marked by barbarity suggestive of a cannibal; rapaciously savage -01263971 00 s 04 cold 0 cold-blooded 0 inhuman 0 insensate 0 002 & 01262611 a 0000 + 04830102 n 0302 | without compunction or human feeling; "in cold blood"; "cold-blooded killing"; "insensate destruction" -01264179 00 s 02 pitiless 0 unkind 0 004 & 01262611 a 0000 + 04845312 n 0201 + 07506382 n 0103 + 04831264 n 0101 | deficient in humane and kindly feelings -01264336 00 a 02 humorous 0 humourous 0 024 ^ 01807219 a 0000 + 06776138 n 0203 + 04650201 n 0202 + 05211044 n 0202 + 06776138 n 0102 + 04650201 n 0101 + 05211044 n 0101 + 04649051 n 0104 ! 01268426 a 0101 & 01264913 a 0000 & 01265108 a 0000 & 01265308 a 0000 & 01265938 a 0000 & 01266092 a 0000 & 01266397 a 0000 & 01266649 a 0000 & 01266841 a 0000 & 01267076 a 0000 & 01267339 a 0000 & 01267480 a 0000 & 01267632 a 0000 & 01267762 a 0000 & 01268002 a 0000 & 01268194 a 0000 | full of or characterized by humor; "humorous stories"; "humorous cartoons"; "in a humorous vein" -01264913 00 s 03 bantering 0 facetious 0 tongue-in-cheek 0 002 & 01264336 a 0000 + 04649560 n 0201 | cleverly amusing in tone; "a bantering tone"; "facetious remarks"; "tongue-in-cheek advice" -01265108 00 s 04 buffoonish 0 clownish 0 clownlike 0 zany 0 003 & 01264336 a 0000 + 10157744 n 0409 + 10805113 n 0401 | like a clown; "a buffoonish walk"; "a clownish face"; "a zany sense of humor" -01265308 00 s 07 amusing 0 comic 0 comical 0 funny 0 laughable 0 mirthful 0 risible 0 011 & 01264336 a 0000 + 04640830 n 0701 + 07529377 n 0603 + 00031820 v 0501 + 00429949 n 0401 + 06781383 n 0404 + 05210717 n 0301 + 06781383 n 0303 + 07015510 n 0301 + 09940146 n 0202 + 06781383 n 0203 | arousing or provoking laughter; "an amusing film with a steady stream of pranks and pratfalls"; "an amusing fellow"; "a comic hat"; "a comical look of surprise"; "funny stories that made everybody laugh"; "a very funny writer"; "it would have been laughable if it hadn't hurt so much"; "a mirthful experience"; "risible courtroom antics" -01265938 00 s 01 droll 0 001 & 01264336 a 0000 | comical in an odd or whimsical manner; "a droll little man with a quiet tongue-in-cheek kind of humor" -01266092 00 s 04 dry 0 ironic 0 ironical 0 wry 0 004 & 01264336 a 0000 + 06777164 n 0302 + 06777164 n 0202 + 04630137 n 0103 | humorously sarcastic or mocking; "dry humor"; "an ironic remark often conveys an intended meaning obliquely"; "an ironic novel"; "an ironical smile"; "with a wry Scottish wit" -01266397 00 s 03 farcical 0 ludicrous 0 ridiculous 0 004 & 01264336 a 0000 + 06715786 n 0301 + 06607809 n 0303 + 07016250 n 0101 | broadly or extravagantly humorous; resembling farce; "the wild farcical exuberance of a clown"; "ludicrous green hair" -01266649 00 s 01 Gilbertian 0 001 & 01264336 a 0000 | wildly comic and improbable as in Gilbert and Sullivan operas; "a Gilbertian world people with foundlings and changelings"- T.C.Worsley -01266841 00 s 03 hilarious 0 screaming(a) 0 uproarious 0 002 & 01264336 a 0000 + 07529377 n 0101 | marked by or causing boisterous merriment or convulsive laughter; "hilarious broad comedy"; "a screaming farce"; "uproarious stories" -01267076 00 s 04 jesting 0 jocose 0 jocular 0 joking 0 009 & 01264336 a 0000 + 06778102 n 0301 + 00431005 n 0302 + 07529683 n 0302 + 06781151 n 0302 + 00431005 n 0303 + 04649051 n 0201 + 06781151 n 0201 + 04649051 n 0202 | characterized by jokes and good humor -01267339 00 s 02 killing 0 sidesplitting 0 002 & 01264336 a 0000 ;u 07075172 n 0000 | very funny; "a killing joke"; "sidesplitting antics" -01267480 00 s 02 seriocomic 0 seriocomical 0 001 & 01264336 a 0000 | mixing the serious with the comic with comic predominating; "a seriocomic novel" -01267632 00 s 01 slapstick 0 001 & 01264336 a 0000 | characterized by horseplay and physical action; "slapstick style of humor" -01267762 00 s 02 tragicomic 0 tragicomical 0 003 & 01264336 a 0000 + 07016797 n 0202 + 07017161 n 0201 | having pathetic as well as ludicrous characteristics; "her life...presented itself to me as a tragicomical adventure"--Joseph Conrad -01268002 00 s 01 waggish 0 002 & 01264336 a 0000 + 06781281 n 0102 | witty or joking; "Muskrat Castle as the house has been facetiously named by some waggish officer"- James Fenimore Cooper -01268194 00 s 01 witty 0 004 & 01264336 a 0000 + 10762342 n 0102 + 06776138 n 0101 + 06776138 n 0105 | combining clever conception and facetious expression; "his sermons were unpredictably witty and satirical as well as eloquent" -01268426 00 a 03 humorless 0 humourless 0 unhumorous 0 004 ! 01264336 a 0101 & 01268636 a 0000 & 01268837 a 0000 & 01268937 a 0000 | lacking humor; "it was a humorless wink; a wink of warning"- Truman Capote -01268636 00 s 01 sobersided 0 001 & 01268426 a 0000 | completely lacking in humor or lightness of touch; "choreography that was sobersided and sententious"; "a play with a sobersided social message" -01268837 00 s 01 po-faced 0 002 & 01268426 a 0000 ;r 08860123 n 0000 | humorless and disapproving -01268937 00 s 01 unfunny 0 001 & 01268426 a 0000 | not funny; especially failing to achieve the intended humor; "a very unfunny joke" -01269073 00 a 01 hungry 0 007 + 14039534 n 0101 + 14039534 n 0102 ! 01270004 a 0101 & 01269319 a 0000 & 01269506 a 0000 & 01269819 a 0000 & 01269907 a 0000 | feeling hunger; feeling a need or desire to eat food; "a world full of hungry people" -01269319 00 s 02 empty 0 empty-bellied 0 002 & 01269073 a 0000 + 14039974 n 0101 | needing nourishment; "after skipped lunch the men were empty by suppertime"; "empty-bellied children" -01269506 00 s 05 famished 0 ravenous 0 sharp-set 0 starved 0 esurient 0 003 & 01269073 a 0000 + 14040071 n 0502 + 14040071 n 0203 | extremely hungry; "they were tired and famished for food and sleep"; "a ravenous boy"; "the family was starved and ragged"; "fell into the esurient embrance of a predatory enemy" -01269819 00 s 01 peckish 0 002 & 01269073 a 0000 ;r 08860123 n 0000 | somewhat hungry -01269907 00 s 01 supperless 0 001 & 01269073 a 0000 | without supper; "went to bed supperless" -01270004 00 a 01 thirsty 0 003 + 14040660 n 0102 + 14040660 n 0101 ! 01269073 a 0101 | feeling a need or desire to drink; "after playing hard the children were thirsty" -01270175 00 a 01 hurried 0 008 ^ 00976508 a 0000 + 05060189 n 0104 ! 01271700 a 0101 & 01270486 a 0000 & 01270704 a 0000 & 01270868 a 0000 & 01271410 a 0000 & 01271604 a 0000 | moving rapidly or performed quickly or in great haste; "a hurried trip to the store"; "the hurried life of a city"; "a hurried job" -01270486 00 s 03 flying 0 quick 0 fast 0 003 & 01270175 a 0000 + 05058140 n 0303 + 05059132 n 0202 | hurried and brief; "paid a flying visit"; "took a flying glance at the book"; "a quick inspection"; "a fast visit" -01270704 00 s 02 hasty 0 headlong 1 003 & 01270175 a 0000 + 05060189 n 0101 + 04662858 n 0101 | excessively quick; "made a hasty exit"; "a headlong rush to sell" -01270868 00 s 05 hasty 2 overhasty 0 precipitate 0 precipitant 0 precipitous 0 008 & 01270175 a 0000 + 05060476 n 0503 + 05060476 n 0404 + 05060476 n 0405 + 01644339 v 0401 + 05060476 n 0302 + 05060189 n 0101 + 05060189 n 0102 | done with very great haste and without due deliberation; "hasty marriage seldom proveth well"- Shakespeare; "hasty makeshifts take the place of planning"- Arthur Geddes; "rejected what was regarded as an overhasty plan for reconversion"; "wondered whether they had been rather precipitate in deposing the king" -01271410 00 s 02 helter-skelter 0 pell-mell 0 001 & 01270175 a 0000 | with undue hurry and confusion; "a helter-skelter kind of existence with never a pause"; "a pell-mell dash for the train" -01271604 00 s 02 rush(a) 0 rushed 0 001 & 01270175 a 0000 | done under pressure; "a rush job" -01271700 00 a 01 unhurried 0 004 + 05061977 n 0104 ! 01270175 a 0101 & 01271961 a 0000 & 01272176 a 0000 | relaxed and leisurely; without hurry or haste; "people strolling about in an unhurried way"; "an unhurried walk"; "spoke in a calm and unhurried voice" -01271961 00 s 03 careful 0 deliberate 0 measured 0 003 & 01271700 a 0000 + 05061977 n 0203 + 04663494 n 0101 | unhurried and with care and dignity; "walking at the same measured pace"; "with all deliberate speed" -01272176 00 s 03 easy 0 easygoing 0 leisurely 0 004 & 01271700 a 0000 + 15137676 n 0301 + 05062255 n 0301 + 04708113 n 0102 | not hurried or forced; "an easy walk around the block"; "at a leisurely (or easygoing) pace" -01272397 00 a 01 identifiable 0 008 + 00652346 v 0101 + 00618878 v 0101 ! 01273143 a 0101 & 01272609 a 0000 & 01272718 a 0000 & 01272836 a 0000 & 01272920 a 0000 & 01273033 a 0000 | capable of being identified -01272609 00 s 01 acknowledgeable 0 002 & 01272397 a 0000 + 00817311 v 0102 | capable of being acknowledged -01272718 00 s 02 classifiable 0 distinctive 0 002 & 01272397 a 0000 + 04763925 n 0205 | capable of being classified -01272836 00 s 01 diagnosable 0 001 & 01272397 a 0000 | capable of being diagnosed -01272920 00 s 03 recognizable 0 recognisable 0 placeable 0 001 & 01272397 a 0000 | capable of being recognized -01273033 00 s 01 specifiable 0 001 & 01272397 a 0000 | capable of being specified; "specifiable complaints" -01273143 00 a 01 unidentifiable 0 006 ! 01272397 a 0101 & 01273316 a 0000 & 01273454 a 0000 & 01273604 a 0000 & 01273689 a 0000 & 01273773 a 0000 | impossible to identify -01273316 00 s 01 elusive 0 003 & 01273143 a 0000 + 02723232 v 0101 + 04824118 n 0101 | difficult to describe; "a haunting elusive odor" -01273454 00 s 01 intangible 0 002 & 01273143 a 0000 + 04760296 n 0102 | hard to pin down or identify; "an intangible feeling of impending disaster" -01273604 00 s 01 unclassifiable 0 001 & 01273143 a 0000 | not possible to classify -01273689 00 s 01 undiagnosable 0 001 & 01273143 a 0000 | not possible to diagnose -01273773 00 s 02 unrecognizable 0 unrecognisable 0 001 & 01273143 a 0000 | defying recognition as e.g. because of damage or alteration -01273910 00 a 02 immanent 0 subjective 1 004 ;c 06158346 n 0000 + 04892544 n 0202 + 04892544 n 0201 ! 01274125 a 0101 | of a mental act performed entirely within the mind; "a cognition is an immanent act of mind" -01274125 00 a 02 transeunt 0 transient 0 002 ;c 06158346 n 0000 ! 01273910 a 0101 | of a mental act; causing effects outside the mind -01274261 00 a 01 impaired 0 009 ^ 00679147 a 0000 ^ 01317954 a 0000 ! 01275395 a 0101 & 01274524 a 0000 & 01274626 a 0000 & 01274741 a 0000 & 01274945 a 0000 & 01275057 a 0000 & 01275195 a 0000 | diminished in strength, quality, or utility; "impaired eyesight" -01274524 00 s 01 anosmic 0 002 & 01274261 a 0000 + 14552477 n 0101 | having impaired sense of smell -01274626 00 s 01 broken 0 001 & 01274261 a 0000 | weakened and infirm; "broken health resulting from alcoholism" -01274741 00 s 02 dicky 0 dickey 0 005 & 01274261 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 03191561 n 0201 + 03191561 n 0103 | (British informal) faulty; "I've got this dicky heart"- John le Carre -01274945 00 s 04 diminished 0 lessened 0 vitiated 0 weakened 0 001 & 01274261 a 0000 | impaired by diminution -01275057 00 s 01 dysfunctional 0 002 & 01274261 a 0000 + 14557898 n 0101 | impaired in function; especially of a bodily system or organ -01275195 00 s 02 dyslectic 0 dyslexic 0 003 & 01274261 a 0000 + 14099643 n 0201 + 14099643 n 0101 | having impaired ability to comprehend written words usually associated with a neurologic disorder -01275395 00 a 01 unimpaired 0 003 ^ 00681094 a 0000 ^ 01319182 a 0000 ! 01274261 a 0101 | not damaged or diminished in any respect; "his speech remained unimpaired" -01275562 00 a 02 important 0 of_import 0 025 ^ 00900616 a 0000 ^ 02161432 a 0000 ^ 02500884 a 0000 = 05168261 n 0000 + 05168261 n 0101 ! 01279978 a 0101 & 01276150 a 0000 & 01276482 a 0000 & 01276693 a 0000 & 01276872 a 0000 & 01276992 a 0000 & 01277097 a 0000 & 01277426 a 0000 & 01277753 a 0000 & 01277952 a 0000 & 01278080 a 0000 & 01278251 a 0000 & 01278423 a 0000 & 01278818 a 0000 & 01279028 a 0000 & 01279183 a 0000 & 01279310 a 0000 & 01279431 a 0000 & 01279611 a 0000 & 01279735 a 0000 | of great significance or value; "important people"; "the important questions of the day" -01276150 00 s 05 all-important(a) 0 all_important(p) 0 crucial 0 essential 0 of_the_essence(p) 0 005 & 01275562 a 0000 + 05921123 n 0406 + 05171045 n 0402 + 05171045 n 0401 + 14451672 n 0303 | of the greatest importance; "the all-important subject of disarmament"; "crucial information"; "in chess cool nerves are of the essence" -01276482 00 s 01 alpha 0 002 & 01275562 a 0000 + 07329169 n 0101 | first in order of importance; "the alpha male in the group of chimpanzees"; "the alpha star in a constellation is the brightest or main star" -01276693 00 s 01 beta 0 001 & 01275562 a 0000 | second in order of importance; "the candidate, considered a beta male, was perceived to be unable to lead his party to victory" -01276872 00 s 01 big 0 002 & 01275562 a 0000 ;u 07075172 n 0000 | significant; "graduation was a big day in his life" -01276992 00 s 01 burning(a) 0 001 & 01275562 a 0000 | of immediate import; "burning issues of the day" -01277097 00 s 05 cardinal 0 central 0 fundamental 0 key 0 primal 0 003 & 01275562 a 0000 + 05812038 n 0201 + 05921123 n 0204 | serving as an essential component; "a cardinal rule"; "the central cause of the problem"; "an example that was fundamental to the argument"; "computers are fundamental to modern industrial structure" -01277426 00 s 05 chief(a) 2 main(a) 0 primary(a) 0 principal(a) 0 master(a) 0 001 & 01275562 a 0000 | most important element; "the chief aim of living"; "the main doors were of solid glass"; "the principal rivers of America"; "the principal example"; "policemen were primary targets"; "the master bedroom"; "a master switch" -01277753 00 s 02 consequential 0 eventful 0 002 & 01275562 a 0000 + 05170574 n 0101 | having important issues or results; "the year's only really consequential legislation"; "an eventful decision" -01277952 00 s 01 Copernican 0 001 & 01275562 a 0000 | of radical or major importance; "a Copernican revolution in modern art" -01278080 00 s 01 distinguished 0 001 & 01275562 a 0000 | (used of persons) standing above others in character or attainment or reputation; "our distinguished professor" -01278251 00 s 01 grand 0 003 & 01275562 a 0000 + 14434681 n 0102 + 04729328 n 0102 | the most important and magnificent in adornment; "grand ballroom"; "grand staircase" -01278423 00 s 04 grave 0 grievous 0 heavy 0 weighty 0 005 & 01275562 a 0000 + 05172322 n 0402 + 05172322 n 0401 + 04647478 n 0101 + 04647478 n 0102 | of great gravity or crucial import; requiring serious thought; "grave responsibilities"; "faced a grave decision in a time of crisis"; "a grievous fault"; "heavy matters of state"; "the weighty matters to be discussed at the peace conference" -01278818 00 s 02 great 1 outstanding 0 002 & 01275562 a 0000 + 05169601 n 0101 | of major significance or importance; "a great work of art"; "Einstein was one of the outstanding figures of the 20th centurey" -01279028 00 s 01 historic 0 003 & 01275562 a 0000 + 06514093 n 0101 + 06155567 n 0101 | important in history; "the historic first voyage to outer space" -01279183 00 s 01 in-chief(ip) 0 002 & 01275562 a 0000 ;u 06307152 n 0000 | indicating the head of a staff; "editor-in-chief" -01279310 00 s 01 measurable 0 001 & 01275562 a 0000 | of distinguished importance; "a measurable figure in literature" -01279431 00 s 01 most-valuable 0 002 & 01275562 a 0000 ;c 00523513 n 0000 | designating the player judged to be the most important to the sport; "the most-valuable player award" -01279611 00 s 01 serious 0 002 & 01275562 a 0000 + 04646548 n 0101 | of great consequence; "marriage is a serious matter" -01279735 00 s 01 strategic 0 002 & 01275562 a 0000 + 06249177 n 0101 | highly important to or an integral part of a strategy or plan of action especially in war; "a strategic chess move"; "strategic withdrawal"; "strategic bombing missions" -01279978 00 a 01 unimportant 0 013 ^ 01497736 a 0000 ^ 00902652 a 0000 ^ 02164402 a 0000 = 05168261 n 0000 + 14436438 n 0102 + 05172596 n 0101 ! 01275562 a 0101 & 01280349 a 0000 & 01280576 a 0000 & 01280908 a 0000 & 01281559 a 0000 & 01281695 a 0000 & 01281874 a 0000 | not important; "a relatively unimportant feature of the system"; "the question seems unimportant" -01280349 00 s 02 inconsequent 0 inconsequential 0 002 & 01279978 a 0000 + 05174517 n 0101 | lacking worth or importance; "his work seems trivial and inconsequential"; "the quite inconsequent fellow was managed like a puppet" -01280576 00 s 02 immaterial 0 indifferent 0 003 & 01279978 a 0000 + 07505676 n 0201 + 13796216 n 0101 | (often followed by `to') lacking importance; not mattering one way or the other; "whether you choose to do it or not is a matter that is quite immaterial (or indifferent)"; "what others think is altogether indifferent to him" -01280908 00 s 0a fiddling 0 footling 0 lilliputian 0 little 0 niggling 0 piddling 0 piffling 0 petty 0 picayune 0 trivial 0 007 & 01279978 a 0000 ;u 07075172 n 0000 + 00840413 v 0a01 + 04486445 n 0a02 + 05173205 n 0a02 + 04834073 n 0801 + 04834073 n 0402 | (informal) small and of little importance; "a fiddling sum of money"; "a footling gesture"; "our worries are lilliputian compared with those of countries that are at war"; "a little (or small) matter"; "a dispute over niggling details"; "limited to petty enterprises"; "piffling efforts"; "giving a police officer a free meal may be against the law, but it seems to be a picayune infraction" -01281559 00 s 01 lightweight 0 002 & 01279978 a 0000 + 10776987 n 0103 | having no importance or influence; "a lightweight intellect" -01281695 00 s 02 nickel-and-dime 0 small-time 0 001 & 01279978 a 0000 | of minor importance; "a nickel-and-dime operation run out of a single rented room"; "a small-time actor" -01281874 00 s 01 potty 0 003 & 01279978 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) trivial; "potty little details" -01282014 00 a 01 impressive 0 022 ^ 01560513 a 0000 + 04719502 n 0101 + 04729328 n 0101 + 01767949 v 0102 + 01769902 v 0101 ! 01286539 a 0101 & 01282510 a 0000 & 01282921 a 0000 & 01283155 a 0000 & 01283508 a 0000 & 01283787 a 0000 & 01284212 a 0000 & 01284544 a 0000 & 01284836 a 0000 & 01285136 a 0000 & 01285376 a 0000 & 01285713 a 0000 & 01285850 a 0000 & 01285938 a 0000 & 01286093 a 0000 & 01286239 a 0000 & 01286375 a 0000 | making a strong or vivid impression; "an impressive ceremony" -01282510 00 s 05 amazing 0 awe-inspiring 0 awesome 0 awful 0 awing 0 001 & 01282014 a 0000 | inspiring awe or admiration or wonder; "New York is an amazing city"; "the Grand Canyon is an awe-inspiring sight"; "the awesome complexity of the universe"; "this sea, whose gently awful stirrings seem to speak of some hidden soul beneath"- Melville; "Westminster Hall's awing majesty, so vast, so high, so silent" -01282921 00 s 03 arresting 0 sensational 0 stunning 0 001 & 01282014 a 0000 | commanding attention; "an arresting drawing of people turning into animals"; "a sensational concert--one never to be forgotten"; "a stunning performance" -01283155 00 s 04 astonishing 0 astounding 0 staggering 0 stupefying 1 001 & 01282014 a 0000 | so surprisingly impressive as to stun or overwhelm; "such an enormous response was astonishing"; "an astounding achievement"; "the amount of money required was staggering"; "suffered a staggering defeat"; "the figure inside the boucle dress was stupefying" -01283508 00 s 04 baronial 0 imposing 0 noble 0 stately 0 003 & 01282014 a 0000 + 04729984 n 0401 + 09840520 n 0101 | impressive in appearance; "a baronial mansion"; "an imposing residence"; "a noble tree"; "severe-looking policemen sat astride noble horses"; "stately columns" -01283787 00 s 04 dazzling 1 eye-popping 0 fulgurant 0 fulgurous 0 001 & 01282014 a 0000 | amazingly impressive; suggestive of the flashing of lightning; "the skater's dazzling virtuosic leaps"; "these great best canvases still look as astonishing and as invitingly new as they did...when...his fulgurant popularity was in full growth"- Janet Flanner; "adventures related...in a style both vivid and fulgurous"- Idwal Jones -01284212 00 s 03 dramatic 0 spectacular 0 striking 0 003 & 01282014 a 0000 + 04707252 n 0302 + 07290278 n 0101 | sensational in appearance or thrilling in effect; "a dramatic sunset"; "a dramatic pause"; "a spectacular display of northern lights"; "it was a spectacular play"; "his striking good looks always created a sensation" -01284544 00 s 03 expansive 0 grand 0 heroic 0 004 & 01282014 a 0000 + 05104548 n 0202 + 04729710 n 0102 + 04729710 n 0101 | of behavior that is impressive and ambitious in scale or scope; "an expansive lifestyle"; "in the grand manner"; "collecting on a grand scale"; "heroic undertakings" -01284836 00 s 01 formidable 1 002 & 01282014 a 0000 + 04710866 n 0101 | extremely impressive in strength or excellence; "a formidable opponent"; "the challenge was formidable"; "had a formidable array of compositions to his credit"; "the formidable army of brains at the Prime Minister's disposal" -01285136 00 s 04 gallant 0 lofty 0 majestic 0 proud 0 003 & 01282014 a 0000 + 04729984 n 0302 + 04729984 n 0203 | having or displaying great dignity or nobility; "a gallant pageant"; "lofty ships"; "majestic cities"; "proud alpine peaks" -01285376 00 s 04 brilliant 0 glorious 0 magnificent 0 splendid 0 006 & 01282014 a 0000 + 04729328 n 0303 + 04814238 n 0301 + 04684358 n 0201 + 04954920 n 0103 + 04814238 n 0102 | characterized by grandeur; "the brilliant court life at Versailles"; "a glorious work of art"; "magnificent cathedrals"; "the splendid coronation ceremony" -01285713 00 s 01 grandiose 0 001 & 01282014 a 0000 | impressive because of unnecessary largeness or grandeur; used to show disapproval -01285850 00 s 01 important-looking 0 001 & 01282014 a 0000 | impressive in appearance -01285938 00 s 01 mind-boggling 0 001 & 01282014 a 0000 | intellectually or emotionally overwhelming; "a mind-boggling display"; "a mind-boggling puzzle" -01286093 00 s 01 palatial 0 002 & 01282014 a 0000 + 03878066 n 0101 | suitable for or like a palace; "palatial furnishings"; "a palatial yacht" -01286239 00 s 01 signal 0 001 & 01282014 a 0000 | notably out of the ordinary; "the year saw one signal triumph for the Labour party" -01286375 00 s 01 thundering 0 001 & 01282014 a 0000 | extraordinarily big or impressive; "a thundering success"; "the thundering silence of what was left unsaid" -01286539 00 a 01 unimpressive 0 003 ^ 01892953 a 0000 ! 01282014 a 0101 & 01286659 a 0000 | not capable of impressing -01286659 00 s 01 unimposing 0 001 & 01286539 a 0000 | lacking in impressiveness; "on the whole the results of this system are unimposing" -01286799 00 a 01 noticeable 0 009 = 04706290 n 0000 + 04706290 n 0103 + 02118476 v 0101 ! 01288091 a 0101 & 01287160 a 0000 & 01287282 a 0000 & 01287486 a 0000 & 01287808 a 0000 & 01287972 a 0000 | capable or worthy of being perceived; "noticeable shadows under her eyes"; "noticeable for its vivid historical background"; "a noticeable lack of friendliness" -01287160 00 s 01 broad 0 001 & 01286799 a 0000 | (of speech) heavily and noticeably regional; "a broad southern accent" -01287282 00 s 02 detectable 0 perceptible 0 003 & 01286799 a 0000 + 02106506 v 0201 + 05017230 n 0201 | easily seen or detected; "a detectable note of sarcasm"; "he continued after a perceptible pause" -01287486 00 s 03 discernible 0 evident 0 observable 0 006 & 01286799 a 0000 + 02154508 v 0302 + 02118933 v 0303 + 02169352 v 0301 + 06643408 n 0201 + 02193194 v 0105 | capable of being seen or noticed; "a discernible change in attitude"; "a clearly evident erasure in the manuscript"; "an observable change in behavior" -01287808 00 s 02 marked 0 pronounced 0 001 & 01286799 a 0000 | strongly marked; easily noticeable; "walked with a marked limp"; "a pronounced flavor of cinnamon" -01287972 00 s 01 noted 0 001 & 01286799 a 0000 | worthy of notice or attention; "a noted increase in the crime rate" -01288091 00 a 01 unnoticeable 0 004 = 04706290 n 0000 + 04707808 n 0101 ! 01286799 a 0101 & 01288298 a 0000 | not noticeable; not drawing attention; "her clothes were simple and unnoticeable"- J.G.Cozzens -01288298 00 s 02 insignificant 0 undistinguished 0 001 & 01288091 a 0000 | not worthy of notice -01288396 00 a 01 improved 0 004 ! 01289229 a 0101 & 01288690 a 0000 & 01288895 a 0000 & 01289083 a 0000 | made more desirable or valuable or profitable; especially made ready for use or marketing; "new houses are springing up on an improved tract of land near the river"; "an improved breed" -01288690 00 s 02 built 0 reinforced 0 001 & 01288396 a 0000 | (used of soaps or cleaning agents) having a substance (an abrasive or filler) added to increase effectiveness; "the built liquid detergents" -01288895 00 s 01 developed 0 001 & 01288396 a 0000 | (of real estate) made more useful and profitable as by building or laying out roads; "condominiums were built on the developed site" -01289083 00 s 01 landscaped 0 001 & 01288396 a 0000 | (of land) improved by gardening or landscape architecture; "carefully landscaped gardens" -01289229 00 a 01 unimproved 0 003 ! 01288396 a 0101 & 01289480 a 0000 & 01289607 a 0000 | not made more desirable or valuable or profitable; especially not made ready for use or marketing; "taxes on unimproved land are low"; "unimproved dirt roads" -01289480 00 s 02 dirt 0 ungraded 0 001 & 01289229 a 0000 | (of roads) not leveled or drained; unsuitable for all year travel -01289607 00 s 01 scrub 0 001 & 01289229 a 0000 | (of domestic animals) not selectively bred -01289701 00 a 01 cleared 0 004 ^ 02575008 a 0000 ! 01290333 a 0101 & 01290028 a 0000 & 01290174 a 0000 | rid of objects or obstructions such as e.g. trees and brush; "cleared land"; "cleared streets free of fallen trees and debris"; "a cleared passage through the underbrush"; "played poker on the cleared dining room table" -01290028 00 s 01 clear-cut 0 001 & 01289701 a 0000 | having had all the trees removed at one time; "clear-cut hillsides are subject to erosion" -01290174 00 s 01 improved 0 001 & 01289701 a 0000 | (of land) made ready for development or agriculture by clearing of trees and brush; "improved farmlands" -01290333 00 a 01 uncleared 0 003 ^ 02572823 a 0000 ! 01289701 a 0101 & 01290547 a 0000 | not cleared; not rid of objects or obstructions; "uncleared land"; "many cars were stuck in the snow on uncleared streets" -01290547 00 s 01 unimproved 1 001 & 01290333 a 0000 | (of land) not cleared of trees and brush; in the wild or natural state; "a farm with 50 acres of unimproved and 68 acres of improved land"; "unimproved woodlands" -01290766 00 a 01 inaugural 0 001 ! 01290947 a 0101 | occurring at or characteristic of a formal investiture or induction; "the President's inaugural address"; "an inaugural ball" -01290947 00 a 01 exaugural 0 002 ! 01290766 a 0101 & 01291098 a 0000 | occurring at or marking the close of a term of office; "an exaugural message" -01291098 00 s 01 valedictory 0 002 & 01290947 a 0000 + 07243565 n 0104 | of a speech expressing leave-taking; "a valedictory address" -01291234 00 a 01 inboard 0 001 ! 01291391 a 0101 | located within the hull or nearest the midline of a vessel or aircraft; "the inboard flaps on the wing" -01291391 00 a 01 outboard 0 003 + 03859000 n 0102 ! 01291234 a 0101 & 01291589 a 0000 | located away from the midline of a vessel or aircraft; "the outboard section of a wing"; "outboard rigging" -01291589 00 s 01 portable 0 002 & 01291391 a 0000 + 03985069 n 0101 | of a motor designed to be attached to the outside of a boat's hull; "a portable outboard motor" -01291757 00 a 01 inbred 0 002 ! 01291937 a 0101 & 01291850 a 0000 | produced by inbreeding -01291850 00 s 01 interbred 1 001 & 01291757 a 0000 | bred of closely related parents -01291937 00 a 01 outbred 0 004 ^ 01904156 a 0000 ^ 00871255 a 0000 ;c 06143546 n 0000 ! 01291757 a 0101 | bred of parents not closely related; having parents of different classes or tribes -01292128 00 a 01 inclined(p) 2 006 ^ 02564986 a 0000 ! 01293158 a 0101 & 01292411 a 0000 & 01292683 a 0000 & 01292884 a 0000 & 01293049 a 0000 | (often followed by `to') having a preference, disposition, or tendency; "wasn't inclined to believe the excuse"; "inclined to be moody" -01292411 00 s 05 apt(p) 0 disposed(p) 0 given(p) 0 minded(p) 1 tending(p) 0 002 & 01292128 a 0000 + 04943154 n 0101 | (usually followed by `to') naturally disposed toward; "he is apt to ignore matters he considers unimportant"; "I am not minded to answer any questions" -01292683 00 s 02 fond(p) 0 partial(p) 0 002 & 01292128 a 0000 + 07497797 n 0101 | (followed by `of' or `to') having a strong preference or liking for; "fond of chocolate"; "partial to horror movies" -01292884 00 s 01 prone 0 002 & 01292128 a 0000 + 04943578 n 0101 | having a tendency (to); often used in combination; "a child prone to mischief"; "failure-prone" -01293049 00 s 01 accident-prone 0 001 & 01292128 a 0000 | having more than the average number of accidents -01293158 00 a 01 disinclined 0 006 ^ 00075515 a 0000 ^ 02566015 a 0000 ! 01292128 a 0101 & 01293396 a 0000 & 01293542 a 0000 & 01293882 a 0000 | unwilling because of mild dislike or disapproval; "disinclined to say anything to anybody" -01293396 00 s 01 afraid 0 001 & 01293158 a 0000 | having feelings of aversion or unwillingness; "afraid of hard work"; "afraid to show emotion" -01293542 00 s 06 antipathetic 0 antipathetical 0 averse(p) 0 indisposed(p) 0 loath(p) 0 loth(p) 0 003 & 01293158 a 0000 + 07502669 n 0101 + 05811466 n 0101 | (usually followed by `to') strongly opposed; "antipathetic to new ideas"; "averse to taking risks"; "loath to go on such short notice"; "clearly indisposed to grant their request" -01293882 00 s 01 reluctant 0 002 & 01293158 a 0000 + 04645943 n 0101 | disinclined to become involved; "they were usually reluctant to socialize"; "reluctant to help" -01294051 00 a 01 incoming 1 001 ! 01294185 a 0101 | entering upon a position of office vacated by another; "the incoming president" -01294185 00 a 01 outgoing 1 001 ! 01294051 a 0101 | retiring from a position or office; "the outgoing president" -01294300 00 a 01 incoming 0 010 ^ 01732270 a 0000 = 13827426 n 0000 ! 01295443 a 0101 & 01294583 a 0000 & 01294756 a 0000 & 01294857 a 0000 & 01294975 a 0000 & 01295143 a 0000 & 01295255 a 0000 & 01295337 a 0000 | arriving at a place or position; "incoming class"; "incoming mail" -01294583 00 s 02 inbound 0 inward 0 002 & 01294300 a 0000 + 05078894 n 0201 | directed or moving inward or toward a center; "the inbound train"; "inward flood of capital" -01294756 00 s 01 designate(ip) 0 001 & 01294300 a 0000 | appointed but not yet installed in office -01294857 00 s 01 elect(ip) 0 001 & 01294300 a 0000 | elected but not yet installed in office; "the president elect" -01294975 00 s 03 future(a) 0 next 0 succeeding(a) 0 002 & 01294300 a 0000 + 05049930 n 0101 | (of elected officers) elected but not yet serving; "our next president" -01295143 00 s 01 in(a) 0 001 & 01294300 a 0000 | directed or bound inward; "took the in bus"; "the in basket" -01295255 00 s 02 inflowing 0 influent 0 001 & 01294300 a 0000 | flowing inward -01295337 00 s 01 inpouring 0 001 & 01294300 a 0000 | pouring inward; "inpouring throngs of immigrants" -01295443 00 a 01 outgoing 0 007 ^ 01727926 a 0000 = 13827426 n 0000 ! 01294300 a 0101 & 01295660 a 0000 & 01295837 a 0000 & 01295946 a 0000 & 01296091 a 0000 | leaving a place or a position; "an outgoing steamship" -01295660 00 s 03 outbound 0 outward 0 outward-bound 0 001 & 01295443 a 0000 | that is going out or leaving; "the departing train"; "an outward journey"; "outward-bound ships" -01295837 00 s 02 effluent 0 outflowing 0 002 & 01295443 a 0000 + 13529295 n 0102 | that is flowing outward -01295946 00 s 01 out(a) 0 001 & 01295443 a 0000 | directed outward or serving to direct something outward; "the out doorway"; "the out basket" -01296091 00 s 03 past(a) 0 preceding(a) 0 retiring(a) 0 001 & 01295443 a 0000 | of a person who has held and relinquished a position or office; "a retiring member of the board" -01296270 00 a 01 inductive 0 004 ^ 00139126 a 0000 ^ 00111129 a 0000 ;c 06163751 n 0000 ! 01296474 a 0101 | of reasoning; proceeding from particular facts to a general conclusion; "inductive reasoning" -01296474 00 a 01 deductive 0 009 ^ 00138912 a 0000 ^ 00110853 a 0000 + 00944924 v 0101 + 00636574 v 0101 ! 01296270 a 0101 & 01296718 a 0000 & 01296816 a 0000 & 01296961 a 0000 & 01297152 a 0000 | involving inferences from general principles -01296718 00 s 01 deducible 0 002 & 01296474 a 0000 + 00944924 v 0101 | capable of being deduced -01296816 00 s 01 illative 0 002 & 01296474 a 0000 ;c 06174404 n 0000 | expressing or preceding an inference; "`therefore' is an illative word" -01296961 00 s 02 illative 2 inferential 2 002 & 01296474 a 0000 + 05774614 n 0201 | resembling or dependent on or arrived at by inference; "an illative conclusion"; "inferential reasoning" -01297152 00 s 01 inferential 1 002 & 01296474 a 0000 ;c 06163751 n 0000 | of reasoning; proceeding from general premisses to a necessary and specific conclusion -01297315 00 a 01 indulgent 0 012 ^ 00009978 a 0000 + 04638585 n 0101 ! 01299888 a 0101 & 01297658 a 0000 & 01297946 a 0000 & 01298239 a 0000 & 01298708 a 0000 & 01298884 a 0000 & 01299173 a 0000 & 01299385 a 0000 & 01299484 a 0000 & 01299687 a 0000 | characterized by or given to yielding to the wishes of someone ; "indulgent grandparents" -01297658 00 s 02 decadent 0 effete 0 004 & 01297315 a 0000 + 09997939 n 0101 + 14440875 n 0104 + 14440875 n 0103 | marked by excessive self-indulgence and moral decay; "a decadent life of excessive money and no sense of responsibility"; "a group of effete self-professed intellectuals" -01297946 00 s 04 dissipated 0 betting 0 card-playing 0 sporting 0 001 & 01297315 a 0000 | preoccupied with the pursuit of pleasure and especially games of chance; "led a dissipated life"; "a betting man"; "a card-playing son of a bitch"; "a gambling fool"; "sporting gents and their ladies" -01298239 00 s 06 epicurean 0 luxurious 0 luxuriant 0 sybaritic 0 voluptuary 0 voluptuous 0 005 & 01297315 a 0000 + 05116243 n 0603 + 10759543 n 0501 + 10759543 n 0402 + 14492373 n 0202 | displaying luxury and furnishing gratification to the senses; "an epicurean banquet"; "enjoyed a luxurious suite with a crystal chandelier and thick oriental rugs"; "Lucullus spent the remainder of his days in voluptuous magnificence"; "a chinchilla robe of sybaritic lavishness" -01298708 00 s 01 gay 0 001 & 01297315 a 0000 | given to social pleasures often including dissipation; "led a gay Bohemian life"; "a gay old rogue with an eye for the ladies" -01298884 00 s 03 hedonic 0 hedonistic 0 epicurean 2 007 & 01297315 a 0000 + 10061656 n 0305 + 10061656 n 0301 + 09183971 n 0201 + 06160596 n 0201 + 09183971 n 0101 + 06160596 n 0101 | devoted to pleasure; "a hedonic thrill"; "lives of unending hedonistic delight"; "epicurean pleasures" -01299173 00 s 03 intemperate 0 hard 0 heavy 0 003 & 01297315 a 0000 + 00748011 n 0102 + 00747671 n 0102 | given to excessive indulgence of bodily appetites especially for intoxicating liquors; "a hard drinker" -01299385 00 s 01 overindulgent 0 002 & 01297315 a 0000 + 01073655 n 0101 | excessively indulgent -01299484 00 s 01 pampering(a) 0 002 & 01297315 a 0000 + 01073241 n 0103 | gratifying tastes, appetites, or desires; "pampering parents often have spoilt children"; "a very pampering cruise experience" -01299687 00 s 01 self-indulgent 0 003 & 01297315 a 0000 + 04884627 n 0102 + 00747671 n 0103 | indulgent of your own appetites and desires; "a self-indulgent...way of looking at life"- Havelock Ellis -01299888 00 a 02 nonindulgent 0 strict 0 011 ^ 00009046 a 0000 + 04639371 n 0202 + 04881998 n 0103 ! 01297315 a 0101 & 01300187 a 0000 & 01300370 a 0000 & 01300661 a 0000 & 01300961 a 0000 & 01301056 a 0000 & 01301206 a 0000 & 01301316 a 0000 | characterized by strictness, severity, or restraint -01300187 00 s 02 austere 0 stern 0 002 & 01299888 a 0000 + 04697666 n 0101 | of a stern or strict bearing or demeanor; forbidding in aspect; "an austere expression"; "a stern face" -01300370 00 s 03 blue(a) 0 puritanic 0 puritanical 0 005 & 01299888 a 0000 + 10494195 n 0301 + 04639591 n 0301 + 10487026 n 0202 + 10494195 n 0201 | morally rigorous and strict; "the puritan work ethic"; "puritanic distaste for alcohol"; "she was anything but puritanical in her behavior" -01300661 00 s 03 corrective 0 disciplinary 0 disciplinal 0 004 & 01299888 a 0000 + 00893836 n 0201 + 02553428 v 0102 + 00824292 v 0105 | designed to promote discipline; "the teacher's action was corrective rather than instructional"; "disciplinal measures"; "the mother was stern and disciplinary" -01300961 00 s 01 monkish 0 001 & 01299888 a 0000 | befitting a monk; inclined to self-denial -01301056 00 s 04 renunciant 0 renunciative 0 self-abnegating 0 self-denying 0 002 & 01299888 a 0000 + 02227487 v 0102 | used especially of behavior -01301206 00 s 02 self-disciplined 0 self-restraining 0 001 & 01299888 a 0000 | used of nonindulgent persons -01301316 00 s 02 severe 2 spartan 0 003 & 01299888 a 0000 + 04639732 n 0102 + 04639732 n 0101 | unsparing and uncompromising in discipline or judgment; "a parent severe to the pitch of hostility"- H.G.Wells; "a hefty six-footer with a rather severe mien"; "a strict disciplinarian"; "a Spartan upbringing" -01301624 00 a 01 industrial 0 005 ^ 01876006 a 0000 ! 01302368 a 0101 & 01301840 a 0000 & 01301992 a 0000 & 01302137 a 0000 | having highly developed industries; "the industrial revolution"; "an industrial nation" -01301840 00 s 02 developed 0 highly-developed 0 001 & 01301624 a 0000 | (used of societies) having high industrial development; "developed countries" -01301992 00 s 02 industrialized 0 industrialised 0 001 & 01301624 a 0000 | made industrial; converted to industrialism; "industrialized areas" -01302137 00 s 01 postindustrial 0 001 & 01301624 a 0000 | of or relating to a society or economy marked by a lessened importance of manufacturing and an increase of services, information, and research; "postindustrial countries" -01302368 00 a 01 nonindustrial 0 003 ! 01301624 a 0101 & 01302544 a 0000 & 01302699 a 0000 | not having highly developed manufacturing enterprises; "a nonindustrial society" -01302544 00 s 02 developing 0 underdeveloped 0 001 & 01302368 a 0000 | relating to societies in which capital needed to industrialize is in short supply -01302699 00 s 02 unindustrialized 0 unindustrialised 0 001 & 01302368 a 0000 | not converted to industrialism -01302811 00 a 01 infectious 0 005 + 06282383 n 0102 ! 01303544 a 0101 & 01303042 a 0000 & 01303298 a 0000 & 01303449 a 0000 | easily spread; "fear is exceedingly infectious; children catch it from their elders"- Bertrand Russell -01303042 00 s 06 catching 1 communicable 0 contagious 1 contractable 0 transmissible 0 transmittable 0 005 & 01302811 a 0000 + 02231661 v 0502 + 14122235 n 0302 + 07360647 n 0302 + 00077981 n 0101 | (of disease) capable of being transmitted by infection -01303298 00 s 01 contagious 2 002 & 01302811 a 0000 + 06282383 n 0101 | easily diffused or spread as from one person to another; "a contagious grin" -01303449 00 s 02 corrupting 0 contaminating 0 001 & 01302811 a 0000 | that infects or taints -01303544 00 a 01 noninfectious 0 002 ! 01302811 a 0101 & 01303636 a 0000 | not infectious -01303636 00 s 03 noncommunicable 0 noncontagious 0 nontransmissible 0 001 & 01303544 a 0000 | (of disease) not capable of being passed on -01303776 00 a 01 infernal 0 005 ^ 01131043 a 0000 ! 01304374 a 0101 & 01303946 a 0000 & 01304081 a 0000 & 01304250 a 0000 | being of the underworld; "infernal regions" -01303946 00 s 03 chthonian 0 chthonic 0 nether 0 001 & 01303776 a 0000 | dwelling beneath the surface of the earth; "nether regions" -01304081 00 s 03 Hadean 0 Plutonian 0 Tartarean 0 003 & 01303776 a 0000 + 05630277 n 0302 + 09570298 n 0102 | of or relating to or characteristic of Hades or Tartarus -01304250 00 s 01 Stygian 0 001 & 01303776 a 0000 | hellish; "Hence loathed Melancholy.../In Stygian cave forlorn"- Milton -01304374 00 a 01 supernal 0 002 ^ 01178974 a 0000 ! 01303776 a 0101 | being or coming from on high; "interpret the plague as a visitation from heaven, a supernal punishment for the sins of men" -01304570 00 a 02 informative 0 informatory 0 008 ^ 01323449 a 0000 + 00831651 v 0201 + 00831651 v 0101 ! 01305607 a 0101 & 01304802 a 0000 & 01305123 a 0000 & 01305244 a 0000 & 01305344 a 0000 | providing or conveying information -01304802 00 s 04 advisory 0 consultative 0 consultatory 0 consultive 0 009 & 01304570 a 0000 + 00877559 v 0401 + 00876442 v 0401 + 00877559 v 0301 + 00876442 v 0301 + 00877559 v 0201 + 00876442 v 0201 + 00872886 v 0102 + 06747008 n 0101 | giving advice; "an advisory memorandum", "his function was purely consultative" -01305123 00 s 02 exemplifying 0 illustrative 0 002 & 01304570 a 0000 + 01021128 v 0202 | clarifying by use of examples -01305244 00 s 01 newsy 0 002 & 01304570 a 0000 + 06642356 n 0101 | full of news; "a newsy letter" -01305344 00 s 03 revealing 0 telling 0 telltale(a) 0 003 & 01304570 a 0000 + 10692696 n 0305 + 06805297 n 0203 | disclosing unintentionally; "a telling smile"; "a telltale panel of lights"; "a telltale patch of oil on the water marked where the boat went down" -01305607 00 a 01 uninformative 0 002 ! 01304570 a 0101 & 01305704 a 0000 | lacking information -01305704 00 s 01 newsless 0 001 & 01305607 a 0000 | not providing news or information -01305792 00 a 01 gnostic 0 002 + 05708030 n 0101 ! 01305929 a 0101 | possessing intellectual or esoteric knowledge of spiritual things -01305929 00 a 02 agnostic 0 agnostical 0 004 + 09779124 n 0201 + 09778927 n 0201 ! 01305792 a 0101 & 01306087 a 0000 | uncertain of all claims to knowledge -01306087 00 s 02 nescient 0 unbelieving 0 001 & 01305929 a 0000 | holding that only material phenomena can be known and knowledge of spiritual matters or ultimate causes is impossible -01306273 00 a 01 informed 0 013 ^ 00829745 a 0000 ^ 00884007 a 0000 ^ 02270342 a 0000 ! 01308425 a 0101 & 01306645 a 0000 & 01306967 a 0000 & 01307067 a 0000 & 01307375 a 0000 & 01307571 a 0000 & 01307690 a 0000 & 01307850 a 0000 & 01308089 a 0000 & 01308259 a 0000 | having much knowledge or education; "an informed public"; "informed opinion"; "the informed customer" -01306645 00 s 04 abreast(p) 0 au_courant 0 au_fait 0 up_on(p) 0 001 & 01306273 a 0000 | being up to particular standard or level especially in being up to date in knowledge; "kept abreast of the latest developments"; "constant revision keeps the book au courant"; "always au fait on the latest events"; "up on the news" -01306967 00 s 01 advised 0 001 & 01306273 a 0000 | having received information; "be kept advised" -01307067 00 s 02 conversant(p) 0 familiar(p) 0 004 & 01306273 a 0000 + 05817145 n 0202 + 05817145 n 0104 + 05817145 n 0103 | (usually followed by `with') well informed about or knowing thoroughly; "conversant with business trends"; "familiar with the complex machinery"; "he was familiar with those roads" -01307375 00 s 02 educated 0 enlightened 0 002 & 01306273 a 0000 + 07948518 n 0202 | characterized by full comprehension of the problem involved; "an educated guess"; "an enlightened electorate" -01307571 00 s 03 hep 0 hip 0 hip_to(p) 0 002 & 01306273 a 0000 ;u 07075172 n 0000 | informed about the latest trends -01307690 00 s 03 knowing 0 wise(p) 0 wise_to(p) 0 003 & 01306273 a 0000 + 05621946 n 0101 + 05675905 n 0105 | evidencing the possession of inside information -01307850 00 s 02 knowledgeable 0 knowing 2 004 & 01306273 a 0000 + 05675905 n 0205 + 04890546 n 0102 + 04890546 n 0101 | alert and fully informed; "a knowing collector of rare books"; "surprisingly knowledgeable about what was going on" -01308089 00 s 01 privy(p) 0 001 & 01306273 a 0000 | (followed by `to') informed about something secret or not generally known; "privy to the details of the conspiracy" -01308259 00 s 01 well-read 0 001 & 01306273 a 0000 | well informed or deeply versed through reading; "respect for a well-read man"; "well-read in medieval history" -01308425 00 a 01 uninformed 0 011 ^ 02271544 a 0000 ^ 00830717 a 0000 ^ 00884286 a 0000 ! 01306273 a 0101 & 01308736 a 0000 & 01308894 a 0000 & 01309220 a 0000 & 01309428 a 0000 & 01309526 a 0000 & 01309657 a 0000 & 01309835 a 0000 | not informed; lacking in knowledge or information; "the uninformed public" -01308736 00 s 01 clueless 0 001 & 01308425 a 0000 | totally uninformed about what is going on; not having even a clue from which to infer what is occurring -01308894 00 s 04 ignorant 0 unknowledgeable 0 unknowing 0 unwitting 0 004 & 01308425 a 0000 + 05988743 n 0303 + 05988743 n 0304 + 05988282 n 0101 | unaware because of a lack of relevant information or knowledge; "he was completely ignorant of the circumstances"; "an unknowledgeable assistant"; "his rudeness was unwitting" -01309220 00 s 02 innocent(p) 0 unacquainted(p) 0 001 & 01308425 a 0000 | not knowledgeable about something specified; "American tourists wholly innocent of French"; "a person unacquainted with our customs" -01309428 00 s 01 newsless 0 001 & 01308425 a 0000 | not having or receiving news or information -01309526 00 s 01 unadvised 0 001 & 01308425 a 0000 | having received no information; "a defendant unadvised of her legal rights" -01309657 00 s 03 uninstructed 0 unenlightened 0 naive 0 002 & 01308425 a 0000 + 04880573 n 0303 | lacking information or instruction; "lamentably unenlightened as to the laws" -01309835 00 s 01 unread 0 001 & 01308425 a 0000 | not informed through reading; "he seems to have been wholly unread in political theory"- V.L.Parrington -01309991 00 a 02 ingenuous 0 artless 2 007 ^ 02271544 a 0000 ^ 02179279 a 0000 + 04880830 n 0201 + 04872531 n 0101 ! 01310685 a 0101 & 01310273 a 0000 & 01310545 a 0000 | characterized by an inability to mask your feelings; not devious; "an ingenuous admission of responsibility" -01310273 00 s 03 candid 0 open 0 heart-to-heart 0 004 & 01309991 a 0000 + 07136315 n 0301 + 04654066 n 0201 + 04871720 n 0103 | openly straightforward and direct without reserve or secretiveness; "his candid eyes"; "an open and trusting nature"; "a heart-to-heart talk" -01310545 00 s 01 undistorted 0 001 & 01309991 a 0000 | without alteration or misrepresentation; "his judgment was undistorted by emotion" -01310685 00 a 02 disingenuous 0 artful 2 005 ^ 02180797 a 0000 + 04876705 n 0201 + 04876374 n 0101 ! 01309991 a 0101 & 01311067 a 0000 | not straightforward or candid; giving a false appearance of frankness; "an ambitious, disingenuous, philistine, and hypocritical operator, who...exemplified...the most disagreeable traits of his time"- David Cannadine; "a disingenuous excuse" -01311067 00 s 04 distorted 0 misrepresented 0 perverted 0 twisted 0 001 & 01310685 a 0000 | having an intended meaning altered or misrepresented; "many of the facts seemed twisted out of any semblance to reality"; "a perverted translation of the poem" -01311321 00 a 01 inhabited 0 010 ! 01312739 a 0101 & 01311605 a 0000 & 01311705 a 0000 & 01311814 a 0000 & 01311973 a 0000 & 01312105 a 0000 & 01312215 a 0000 & 01312376 a 0000 & 01312466 a 0000 & 01312567 a 0000 | having inhabitants; lived in; "the inhabited regions of the earth" -01311605 00 s 03 colonized 0 colonised 0 settled 0 001 & 01311321 a 0000 | inhabited by colonists -01311705 00 s 01 haunted 0 001 & 01311321 a 0000 | inhabited by or as if by apparitions; "a haunted house" -01311814 00 s 02 occupied 0 tenanted 0 001 & 01311321 a 0000 | resided in; having tenants; "not all the occupied (or tenanted) apartments were well kept up" -01311973 00 s 01 owner-occupied 0 001 & 01311321 a 0000 | lived in by the owner; "one owner-occupied and three rental apartments" -01312105 00 s 01 peopled 0 001 & 01311321 a 0000 | furnished with people; "sparsely peopled arctic regions" -01312215 00 s 01 populated 0 001 & 01311321 a 0000 | furnished with inhabitants; "the area is well populated"; "forests populated with all kinds of wild life" -01312376 00 s 02 populous 0 thickly_settled 0 001 & 01311321 a 0000 | densely populated -01312466 00 s 01 rock-inhabiting 0 001 & 01311321 a 0000 | of ferns and lichens that grow on rocks -01312567 00 s 01 underpopulated 0 001 & 01311321 a 0000 | having a lower population density than normal or desirable; "the richly endowed but underpopulated Ivory Coast" -01312739 00 a 01 uninhabited 0 007 ! 01311321 a 0101 & 01313004 a 0000 & 01313178 a 0000 & 01313346 a 0000 & 01313525 a 0000 & 01313649 a 0000 & 01313835 a 0000 | not having inhabitants; not lived in; "an uninhabited island"; "gaping doors of uninhabited houses" -01313004 00 s 03 abandoned 0 derelict 0 deserted 0 002 & 01312739 a 0000 + 02666501 n 0202 | forsaken by owner or inhabitants ; "weed-grown yard of an abandoned farmhouse" -01313178 00 s 01 depopulated 0 001 & 01312739 a 0000 | having lost inhabitants as by war or disease; "the 15th century plagues left vast areas of Europe depopulated" -01313346 00 s 02 unoccupied 0 untenanted 0 001 & 01312739 a 0000 | not leased to or occupied by a tenant; "an unoccupied apartment"; "very little unclaimed and untenanted land" -01313525 00 s 02 unpeopled 0 unpopulated 0 001 & 01312739 a 0000 | with no people living there; "vast unpopulated plains" -01313649 00 s 03 lonely 0 solitary 0 unfrequented 0 001 & 01312739 a 0000 | devoid of creatures; "a lonely crossroads"; "a solitary retreat"; "a trail leading to an unfrequented lake" -01313835 00 s 01 unsettled 0 001 & 01312739 a 0000 | not yet settled; "unsettled territory" -01313929 00 a 02 inheritable 0 heritable 0 007 ! 01315507 a 0101 & 01314197 a 0000 & 01314537 a 0000 & 01314863 a 0000 & 01315025 a 0000 & 01315249 a 0000 & 01315339 a 0000 | capable of being inherited; "inheritable traits such as eye color"; "an inheritable title" -01314197 00 s 04 ancestral 0 hereditary 2 patrimonial 0 transmissible 2 004 & 01313929 a 0000 ;c 08441203 n 0000 + 13263920 n 0302 + 09792555 n 0101 | inherited or inheritable by established rules (usually legal rules) of descent; "ancestral home"; "ancestral lore"; "hereditary monarchy"; "patrimonial estate"; "transmissible tradition" -01314537 00 s 06 familial 0 genetic 0 hereditary 1 inherited 0 transmitted 1 transmissible 1 005 & 01313929 a 0000 + 02231661 v 0602 + 04920867 n 0301 + 13493399 n 0301 + 10236304 n 0103 | occurring among members of a family usually by heredity; "an inherited disease"; "familial traits"; "genetically transmitted features" -01314863 00 s 01 monogenic 0 002 & 01313929 a 0000 ;c 06075527 n 0000 | of or relating to an inheritable character that is controlled by a single pair of genes -01315025 00 s 01 polygenic 0 003 & 01313929 a 0000 ;c 06075527 n 0000 + 05440555 n 0101 | of or relating to an inheritable character that is controlled by several genes at once; of or related to or determined by polygenes -01315249 00 s 01 inheriting 0 001 & 01313929 a 0000 | having the legal right to inherit -01315339 00 s 01 nee 0 001 & 01313929 a 0000 | (meaning literally `born') used to indicate the maiden or family name of a married woman; "Hillary Clinton nee Rodham" -01315507 00 a 02 noninheritable 0 nonheritable 0 005 ! 01313929 a 0101 & 01315670 a 0000 & 01315844 a 0000 & 01316019 a 0000 & 01316127 a 0000 | not inheritable -01315670 00 s 01 acquired 0 001 & 01315507 a 0000 | gotten through environmental forces; "acquired characteristics (such as a suntan or a broken nose) cannot be passed on" -01315844 00 s 03 congenital 0 inborn 0 innate 0 002 & 01315507 a 0000 + 04739630 n 0301 | present at birth but not necessarily hereditary; acquired during fetal development -01316019 00 s 02 nonhereditary 0 nontransmissible 0 001 & 01315507 a 0000 | not acquirable by inheritance -01316127 00 s 01 nurtural 0 002 & 01315507 a 0000 + 01129532 n 0105 | resulting from nurture -01316222 00 a 01 inhibited 0 005 ^ 01987341 a 0000 ^ 02000118 a 0000 ! 01317012 a 0101 & 01316467 a 0000 & 01316808 a 0000 | held back or restrained or prevented; "in certain conditions previously inhibited conditioned reactions can reappear" -01316467 00 s 02 pent-up 0 repressed 0 001 & 01316222 a 0000 | characterized by or showing the suppression of impulses or emotions; "her severe upbringing had left her inhibited"; "a very inhibited young man, anxious and ill at ease"; "their reactions were partly the product of pent-up emotions"; "repressed rage turned his face scarlet" -01316808 00 s 04 smothered 0 stifled 0 strangled 0 suppressed 1 001 & 01316222 a 0000 | held in check with difficulty; "a smothered cough"; "a stifled yawn"; "a strangled scream"; "suppressed laughter" -01317012 00 a 01 uninhibited 0 007 ^ 01988166 a 0000 ^ 02000680 a 0000 ! 01316222 a 0101 & 01317231 a 0000 & 01317362 a 0000 & 01317462 a 0000 & 01317560 a 0000 | not inhibited or restrained; "uninhibited exuberance" -01317231 00 s 01 abandoned 0 001 & 01317012 a 0000 | free from constraint; "an abandoned sadness born of grief"- Liam O'Flaherty -01317362 00 s 01 earthy 0 001 & 01317012 a 0000 | hearty and lusty; "an earthy enjoyment of life" -01317462 00 s 01 unrepressed 0 001 & 01317012 a 0000 | not repressed; "unrepressed hostilities" -01317560 00 s 01 unsuppressed 0 001 & 01317012 a 0000 | given vent to; "unsuppressed rage"; "unsuppressed feelings" -01317678 00 a 01 injectable 0 004 ;c 03247620 n 0000 + 01585523 v 0101 + 00086320 v 0101 ! 01317831 a 0101 | (used of drugs) capable of being injected -01317831 00 a 01 uninjectable 0 002 ;c 03247620 n 0000 ! 01317678 a 0101 | (used of drugs) not capable of being injected -01317954 00 a 01 injured 0 012 ^ 00289082 a 0000 ^ 00679147 a 0000 ^ 01274261 a 0000 ^ 02274253 a 0000 ! 01319182 a 0101 & 01318252 a 0000 & 01318330 a 0000 & 01318510 a 0000 & 01318659 a 0000 & 01318741 a 0000 & 01318937 a 0000 & 01319061 a 0000 | harmed; "injured soldiers"; "injured feelings" -01318252 00 s 01 battle-scarred 0 001 & 01317954 a 0000 | scarred by battle -01318330 00 s 02 black-and-blue 0 livid 0 002 & 01317954 a 0000 + 04977561 n 0201 | discolored by coagulation of blood beneath the skin; "beaten black and blue"; "livid bruises" -01318510 00 s 03 disjointed 0 dislocated 0 separated 0 001 & 01317954 a 0000 | separated at the joint; "a dislocated knee"; "a separated shoulder" -01318659 00 s 01 eviscerate 0 001 & 01317954 a 0000 | having been disembowelled -01318741 00 s 02 hurt 1 wounded 1 001 & 01317954 a 0000 | suffering from physical injury especially that suffered in battle; "nursing his wounded arm"; "ambulances...for the hurt men and women" -01318937 00 s 04 lacerate 0 lacerated 0 mangled 0 torn 0 001 & 01317954 a 0000 | having edges that are jagged from injury -01319061 00 s 01 raw 0 002 & 01317954 a 0000 + 14332617 n 0103 | having the surface exposed and painful; "a raw wound" -01319182 00 a 01 uninjured 0 010 ^ 02057829 a 0000 ^ 02273326 a 0000 ^ 00289365 a 0000 ^ 00681094 a 0000 ^ 01275395 a 0000 ! 01317954 a 0101 & 01319434 a 0000 & 01319583 a 0000 & 01319712 a 0000 & 01319807 a 0000 | not injured physically or mentally -01319434 00 s 02 intact 0 inviolate 0 002 & 01319182 a 0000 + 14460407 n 0101 | (of a woman) having the hymen unbroken; "she was intact, virginal" -01319583 00 s 01 uncut 0 001 & 01319182 a 0000 | not cut; "glad to get out of the house with my throat uncut"- Tobias Smollett -01319712 00 s 04 unharmed 0 unhurt 0 unscathed 0 whole 0 001 & 01319182 a 0000 | not injured -01319807 00 s 01 unwounded 0 001 & 01319182 a 0000 | not wounded -01319874 00 a 03 innocent 0 guiltless 0 clean-handed 0 008 ^ 00923321 a 0000 ^ 02036578 a 0000 + 13989863 n 0204 + 13989627 n 0101 ! 01320988 a 0101 & 01320184 a 0000 & 01320474 a 0000 & 01320705 a 0000 | free from evil or guilt; "an innocent child"; "the principle that one is innocent until proved guilty" -01320184 00 s 06 absolved 0 clear 0 cleared 0 exculpated 0 exonerated 0 vindicated 0 003 & 01319874 a 0000 + 13990502 n 0201 + 04820258 n 0205 | freed from any question of guilt; "is absolved from all blame"; "was now clear of the charge of cowardice"; "his official honor is vindicated" -01320474 00 s 02 acquitted 0 not_guilty 0 001 & 01319874 a 0000 | declared not guilty of a specific offense or crime; legally blameless; "he stands acquitted on all charges"; "the jury found him not guilty by reason of insanity" -01320705 00 s 04 blameless 0 inculpable 0 irreproachable 0 unimpeachable 0 004 & 01319874 a 0000 + 13989863 n 0203 + 13989863 n 0202 + 13989863 n 0101 | free of guilt; not subject to blame; "has lived a blameless life"; "of irreproachable character"; "an unimpeachable reputation" -01320988 00 a 01 guilty 0 016 ^ 00923993 a 0000 ^ 02037272 a 0000 + 13990675 n 0101 + 13990675 n 0102 ! 01319874 a 0101 & 01321429 a 0000 & 01321529 a 0000 & 01321939 a 0000 & 01322044 a 0000 & 01322236 a 0000 & 01322323 a 0000 & 01322488 a 0000 & 01322621 a 0000 & 01322702 a 0000 & 01322846 a 0000 & 01322959 a 0000 | responsible for or chargeable with a reprehensible act; "guilty of murder"; "the guilty person"; "secret guilty deeds" -01321429 00 s 01 at_fault 0 001 & 01320988 a 0000 | deserving blame; "admitted to being at fault" -01321529 00 s 06 blameworthy 0 blamable 0 blameable 0 blameful 0 censurable 0 culpable 0 009 & 01320988 a 0000 + 13990960 n 0603 + 13990960 n 0602 + 00842538 v 0301 + 00727991 v 0301 + 00842538 v 0201 + 00727991 v 0201 + 06713752 n 0101 + 13990960 n 0101 | deserving blame or censure as being wrong or evil or injurious; "blameworthy if not criminal behavior"; "censurable misconduct"; "culpable negligence" -01321939 00 s 01 bloodguilty 0 002 & 01320988 a 0000 + 13991121 n 0101 | guilty of murder or bloodshed -01322044 00 s 02 chargeable 0 indictable 0 002 & 01320988 a 0000 + 13991688 n 0202 | liable to be accused, or cause for such liability; "the suspect was chargeable"; "an indictable offense" -01322236 00 s 01 conscience-smitten 0 001 & 01320988 a 0000 | affected by conscience -01322323 00 s 01 criminal 0 003 & 01320988 a 0000 + 13991346 n 0103 + 13991346 n 0102 | guilty of crime or serious offense; "criminal in the sight of God and man" -01322488 00 s 01 delinquent 0 003 & 01320988 a 0000 + 10000945 n 0101 + 04666083 n 0101 | guilty of a misdeed; "delinquent minors" -01322621 00 s 02 finable 0 fineable 0 001 & 01320988 a 0000 | liable to a fine -01322702 00 s 01 guilt-ridden 0 001 & 01320988 a 0000 | feeling or revealing a sense of guilt; "so guilt-ridden he could not face his father" -01322846 00 s 01 punishable 0 001 & 01320988 a 0000 | liable to or deserving punishment; "punishable offenses" -01322959 00 s 01 red-handed 0 001 & 01320988 a 0000 | in the act of committing a crime or other reprehensible act; "caught red-handed" -01323096 00 a 01 inspiring 0 002 ! 01323334 a 0101 & 01323207 a 0000 | stimulating or exalting to the spirit -01323207 00 s 02 ennobling 0 exalting 0 001 & 01323096 a 0000 | tending to exalt; "an exalting eulogy"; "ennobling thoughts" -01323334 00 a 01 uninspiring 0 001 ! 01323096 a 0101 | depressing to the spirit; "a villa of uninspiring design" -01323449 00 a 02 instructive 0 informative 4 015 ^ 01304570 a 0000 + 00831651 v 0201 + 00829107 v 0103 ! 01325372 a 0101 & 01323815 a 0000 & 01323962 a 0000 & 01324131 a 0000 & 01324271 a 0000 & 01324424 a 0000 & 01324565 a 0000 & 01324683 a 0000 & 01324870 a 0000 & 01325017 a 0000 & 01325193 a 0000 & 01325273 a 0000 | serving to instruct or enlighten or inform -01323815 00 s 02 clarifying 0 elucidative 0 003 & 01323449 a 0000 + 00939857 v 0203 + 00621058 v 020c | that makes clear; "a clarifying example" -01323962 00 s 02 demonstrative 0 illustrative 0 005 & 01323449 a 0000 + 01687401 v 0201 + 06325678 n 0102 + 00820976 v 0104 + 00664788 v 0102 | serving to demonstrate -01324131 00 s 02 didactic 0 didactical 0 003 & 01323449 a 0000 + 06600421 n 0201 + 00883297 n 0205 | instructive (especially excessively) -01324271 00 s 01 doctrinaire 0 002 & 01323449 a 0000 + 10023656 n 0102 | stubbornly insistent on theory without regard for practicality or suitability -01324424 00 s 01 educative 0 003 & 01323449 a 0000 + 02387486 v 0101 + 00603298 v 0104 | resulting in education; "an educative experience" -01324565 00 s 01 educational 0 002 & 01323449 a 0000 + 00883297 n 0101 | providing knowledge; "an educational film" -01324683 00 s 01 explanatory 0 003 & 01323449 a 0000 + 01065456 v 0101 + 00939277 v 0101 | serving or intended to explain or make clear; "explanatory notes"; "an explanatory paragraph" -01324870 00 s 02 expository 0 expositive 0 002 & 01323449 a 0000 + 00955601 v 0108 | serving to expound or set forth; "clean expository writing" -01325017 00 s 02 interpretative 0 interpretive 0 005 & 01323449 a 0000 + 01732172 v 0201 + 00938247 v 0202 + 01732172 v 0101 + 00938247 v 0102 | that provides interpretation -01325193 00 s 01 ostensive 0 001 & 01323449 a 0000 | manifestly demonstrative -01325273 00 s 01 preachy 0 001 & 01323449 a 0000 | inclined to or marked by tedious moralization -01325372 00 a 01 uninstructive 0 001 ! 01323449 a 0101 | failing to instruct -01325451 00 a 02 edifying 0 enlightening 4 001 ! 01325691 a 0101 | enlightening or uplifting so as to encourage intellectual or moral improvement; "the paintings in the church served an edifying purpose even for those who could not read" -01325691 00 a 02 unedifying 0 unenlightening 4 001 ! 01325451 a 0101 | not edifying -01325777 00 a 03 enlightening 0 informative 2 illuminating 0 002 + 00831651 v 0201 ! 01326013 a 0101 | tending to increase knowledge or dissipate ignorance; "an enlightening glimpse of government in action"; "an illuminating lecture" -01326013 00 a 02 unenlightening 0 unilluminating 0 001 ! 01325777 a 0101 | failing to inform or clarify; "an unenlightening comment" -01326148 00 a 01 integrated 0 008 ^ 01330986 a 0000 ^ 02111684 a 0000 ^ 02475855 a 0000 ! 01326917 a 0101 & 01326415 a 0000 & 01326516 a 0000 & 01326652 a 0000 & 01326805 a 0000 | not segregated; designated as available to all races or groups; "integrated schools" -01326415 00 s 02 co-ed 0 coeducational 0 001 & 01326148 a 0000 | attended by members of both sexes -01326516 00 s 03 desegrated 0 nonsegregated 0 unsegregated 0 001 & 01326148 a 0000 | rid of segregation; having had segregation ended -01326652 00 s 02 interracial 0 mixed 0 001 & 01326148 a 0000 | involving or composed of different races; "interracial schools"; "a mixed neighborhood" -01326805 00 s 01 mainstreamed 0 001 & 01326148 a 0000 | (of the handicapped) placed in regular school classes -01326917 00 a 02 segregated 0 unintegrated 1 007 ^ 02478749 a 0000 ^ 02109678 a 0000 ! 01326148 a 0101 & 01327205 a 0000 & 01327371 a 0000 & 01327574 a 0000 & 01327680 a 0000 | separated or isolated from others or a main group; "a segregated school system"; "a segregated neighborhood" -01327205 00 s 02 isolated 0 quarantined 0 001 & 01326917 a 0000 | under forced isolation especially for health reasons; "a quarantined animal"; "isolated patients" -01327371 00 s 01 separate 2 003 & 01326917 a 0000 + 14414503 n 0103 + 04742766 n 0103 | separated according to race, sex, class, or religion; "separate but equal"; "girls and boys in separate classes" -01327574 00 s 01 sequestered 0 001 & 01326917 a 0000 | kept separate and secluded; "a sequestered jury" -01327680 00 s 02 white 0 lily-white 0 001 & 01326917 a 0000 | restricted to whites only; "under segregation there were even white restrooms and white drinking fountains"; "a lily-white movement which would expel Negroes from the organization" -01327925 00 a 01 integrated 2 006 ! 01329007 a 0101 & 01328229 a 0000 & 01328419 a 0000 & 01328604 a 0000 & 01328753 a 0000 & 01328877 a 0000 | formed into a whole or introduced into another entity; "a more closely integrated economic and political system"- Dwight D.Eisenhower; "an integrated Europe" -01328229 00 s 04 coordinated 0 co-ordinated 0 interconnected 0 unified 0 002 & 01327925 a 0000 + 14420240 n 0302 | operating as a unit; "a unified utility system"; "a coordinated program" -01328419 00 s 01 embedded 0 001 & 01327925 a 0000 | inserted as an integral part of a surrounding whole; "confused by the embedded Latin quotations"; "an embedded subordinate clause" -01328604 00 s 01 incorporated 0 001 & 01327925 a 0000 | introduced into as a part of the whole; "the ideas incorporated in his revised manuscript" -01328753 00 s 01 introjected 0 002 & 01327925 a 0000 ;c 06136258 n 0000 | incorporated unconsciously into your own psyche -01328877 00 s 02 tight-knit 0 tightly_knit 0 001 & 01327925 a 0000 | closely and firmly integrated; "a tight-knit organization" -01329007 00 a 02 nonintegrated 0 unintegrated 2 001 ! 01327925 a 0101 | not integrated; not taken into or made a part of a whole -01329138 00 a 01 blended 0 003 ! 01329616 a 0101 & 01329306 a 0000 & 01329413 a 0000 | combined or mixed together so that the constituent parts are indistinguishable -01329306 00 s 01 alloyed 0 001 & 01329138 a 0000 | (used of metals) blended to obtain a desired property -01329413 00 s 02 homogenized 0 homogenised 0 001 & 01329138 a 0000 | formed by blending unlike elements especially by reducing one element to particles and dispersing them throughout another substance -01329616 00 a 01 unblended 0 002 ! 01329138 a 0101 & 01329719 a 0000 | not blended or mixed together -01329719 00 s 02 unhomogenized 0 unhomogenised 0 001 & 01329616 a 0000 | not having undergone homogenization -01329830 00 a 01 combined 0 006 ! 01330786 a 0101 & 01330008 a 0000 & 01330114 a 0000 & 01330307 a 0000 & 01330506 a 0000 & 01330662 a 0000 | made or joined or united into one -01330008 00 s 01 compounded 0 001 & 01329830 a 0000 | combined into or constituting a chemical compound -01330114 00 s 01 conglomerate 0 003 & 01329830 a 0000 + 14863031 n 0102 + 08058937 n 0101 | composed of heterogeneous elements gathered into a mass; "the conglomerate peoples of New England" -01330307 00 s 02 occluded 0 sorbed 0 001 & 01329830 a 0000 | (of a substance) taken into and retained in another substance; "the sorbed oil mass"; "large volumes of occluded hydrogen in palladium" -01330506 00 s 01 one 0 001 & 01329830 a 0000 | being a single entity made by combining separate components; "three chemicals combining into one solution" -01330662 00 s 01 rolled_into_one(p) 0 001 & 01329830 a 0000 | made up of several components combined into a single entity -01330786 00 a 01 uncombined 0 002 ! 01329830 a 0101 & 01330890 a 0000 | not joined or united into one -01330890 00 s 02 uncompounded 0 unmixed 0 001 & 01330786 a 0000 | not constituting a compound -01330986 00 a 01 integrative 0 009 ^ 00466808 a 0000 ^ 00472336 a 0000 ^ 01326148 a 0000 + 00466651 v 0101 ! 01331878 a 0101 & 01331244 a 0000 & 01331459 a 0000 & 01331540 a 0000 & 01331675 a 0000 | combining and coordinating diverse elements into a whole -01331244 00 s 03 combinative 0 combinatory 0 combinatorial 0 006 & 01330986 a 0000 + 07964495 n 0301 + 08373544 n 0301 + 08272961 n 0301 + 00378985 n 0301 + 01461328 v 0102 | relating to or involving combinations -01331459 00 s 01 compositional 0 001 & 01330986 a 0000 | arranging or grouping -01331540 00 s 02 consolidative 0 unifying 0 003 & 01330986 a 0000 + 00242747 v 0101 + 00242580 v 0101 | combining into a single unit -01331675 00 s 02 endogenic 0 endogenetic 0 003 & 01330986 a 0000 ;c 06115701 n 0000 + 11418011 n 0201 | of rocks formed or occurring beneath the surface of the earth; "endogenic rocks are not clastic" -01331878 00 a 01 disintegrative 0 005 + 00399368 v 0101 + 00397576 v 0101 ! 01330986 a 0101 & 01332070 a 0000 & 01332285 a 0000 | tending to cause breakup into constituent elements or parts -01332070 00 s 01 clastic 0 004 & 01331878 a 0000 ;c 06115701 n 0000 + 09246292 n 0101 + 09246134 n 0101 | of or belonging to or being a rock composed of fragments of older rocks (e.g., conglomerates or sandstone) -01332285 00 s 01 decompositional 0 002 & 01331878 a 0000 + 11444643 n 0102 | causing organic decay -01332386 00 a 01 intellectual 0 010 ^ 00829745 a 0000 ^ 01779986 a 0000 ^ 02083615 a 0000 = 05618849 n 0000 ! 01333718 a 0101 & 01332907 a 0000 & 01333118 a 0000 & 01333331 a 0000 & 01333477 a 0000 & 01333609 a 0000 | appealing to or using the intellect; "satire is an intellectual weapon"; "intellectual workers engaged in creative literary or artistic or scientific labor"; "has tremendous intellectual sympathy for oppressed people"; "coldly intellectual"; "sort of the intellectual type"; "intellectual literature" -01332907 00 s 02 highbrow 0 highbrowed 0 003 & 01332386 a 0000 ;u 07075172 n 0000 + 10174330 n 0101 | highly cultured or educated; "highbrow events such as the ballet or opera"; "a highbrowed literary critic" -01333118 00 s 01 rational 0 003 & 01332386 a 0000 + 04784978 n 0102 + 04784978 n 0101 | having its source in or being guided by the intellect (as distinguished from experience or emotion); "a rational analysis" -01333331 00 s 01 reflective 0 003 & 01332386 a 0000 + 04661546 n 0102 + 00630380 v 0108 | devoted to matters of the mind; "the reflective type" -01333477 00 s 02 good 0 serious 0 002 & 01332386 a 0000 + 05142180 n 0102 | appealing to the mind; "good music"; "a serious book" -01333609 00 s 01 sophisticated 0 001 & 01332386 a 0000 | intellectually appealing; "a sophisticated drama" -01333718 00 a 01 nonintellectual 0 006 ^ 02084538 a 0000 = 05618849 n 0000 ! 01332386 a 0101 & 01333886 a 0000 & 01334075 a 0000 & 01334277 a 0000 | not intellectual -01333886 00 s 02 anti-intellectual 0 philistine 0 003 & 01333718 a 0000 + 10423031 n 0201 + 10423031 n 0102 | smug and ignorant and indifferent or hostile to artistic and cultural values -01334075 00 s 03 lowbrow 0 lowbrowed 0 uncultivated 0 002 & 01333718 a 0000 + 10423031 n 0103 | characteristic of a person who is not cultivated or does not have intellectual tastes; "lowbrow tastes" -01334277 00 s 01 mindless 0 002 & 01333718 a 0000 + 05174023 n 0103 | requiring little mental effort; "mindless tasks" -01334398 00 a 01 intelligent 0 014 ^ 01839829 a 0000 ^ 00438707 a 0000 = 05617606 n 0000 + 05617606 n 0101 ! 01336587 a 0101 & 01334833 a 0000 & 01334958 a 0000 & 01335156 a 0000 & 01335458 a 0000 & 01335708 a 0000 & 01335903 a 0000 & 01336084 a 0000 & 01336231 a 0000 & 01336371 a 0000 | having the capacity for thought and reason especially to a high degree; "is there intelligent life in the universe?"; "an intelligent question" -01334833 00 s 02 agile 0 nimble 0 002 & 01334398 a 0000 + 05619553 n 0201 | mentally quick; "an agile mind"; "nimble wits" -01334958 00 s 02 apt 0 clever 0 002 & 01334398 a 0000 + 05620955 n 0202 | mentally quick and resourceful; "an apt pupil"; "you are a clever man...you reason well and your wit is bold"-Bram Stoker -01335156 00 s 03 brainy 0 brilliant 0 smart_as_a_whip 0 005 & 01334398 a 0000 + 04954920 n 0203 + 05619743 n 0201 + 10126926 n 0103 + 05618056 n 0101 | having or marked by unusual and impressive intelligence; "some men dislike brainy women"; "a brilliant mind"; "a brilliant solution to the problem" -01335458 00 s 02 bright 0 smart 0 003 & 01334398 a 0000 + 05620955 n 0203 + 05620955 n 0101 | characterized by quickness and ease in learning; "some children are brighter in one subject than another"; "smart children talk earlier than the average" -01335708 00 s 03 natural 0 born(p) 0 innate(p) 0 002 & 01334398 a 0000 + 04739630 n 0301 | being talented through inherited qualities; "a natural leader"; "a born musician"; "an innate talent" -01335903 00 s 02 quick 0 ready 0 003 & 01334398 a 0000 + 04708796 n 0202 + 05619345 n 0102 | apprehending and responding with speed and sensitivity; "a quick mind"; "a ready wit" -01336084 00 s 01 prehensile 0 001 & 01334398 a 0000 | having a keen intellect; "poets--those gifted strangely prehensile men"- A.T.Quiller-Couch -01336231 00 s 01 scintillating 0 001 & 01334398 a 0000 | brilliantly clever; "scintillating wit"; "a play full of scintillating dialogue" -01336371 00 s 02 searching 0 trenchant 0 002 & 01334398 a 0000 + 05199680 n 0202 | having keenness and forcefulness and penetration in thought, expression, or intellect; "searching insights"; "trenchant criticism" -01336587 00 a 02 unintelligent 0 stupid 2 007 ^ 01840366 a 0000 ^ 00439588 a 0000 = 05617606 n 0000 + 10667187 n 0201 + 05645597 n 0201 ! 01334398 a 0101 & 01336837 a 0000 | lacking intelligence; "a dull job with lazy and unintelligent co-workers" -01336837 00 s 02 brainless 0 headless 0 001 & 01336587 a 0000 | not using intelligence -01336926 00 a 01 intelligible 0 003 ^ 00532892 a 0000 + 04819496 n 0101 ! 01337121 a 0101 | well articulated or enunciated, and loud enough to be heard distinctly; "intelligible pronunciation" -01337121 00 a 01 unintelligible 0 004 ^ 00533851 a 0000 + 04823706 n 0101 ! 01336926 a 0101 & 01337314 a 0000 | poorly articulated or enunciated, or drowned by noise; "unintelligible speech" -01337314 00 s 02 slurred 0 thick 0 002 & 01337121 a 0000 + 07133143 n 0201 | spoken as if with a thick tongue; "the thick speech of a drunkard"; "his words were slurred" -01337486 00 a 01 intended 0 009 ^ 01558385 a 0000 ^ 01797148 a 0000 ^ 01842763 a 0000 = 04661389 n 0000 ! 01338730 a 0101 & 01337767 a 0000 & 01337939 a 0000 & 01338116 a 0000 & 01338363 a 0000 | resulting from one's intentions; "your intended trip abroad"; "an intended insult" -01337767 00 s 02 conscious 0 witting 0 002 & 01337486 a 0000 + 05675130 n 0101 | intentionally conceived; "a conscious effort to speak more slowly"; "a conscious policy" -01337939 00 s 03 deliberate 0 calculated 0 measured 0 002 & 01337486 a 0000 + 04661151 n 0102 | carefully thought out in advance; "a calculated insult"; "with measured irony" -01338116 00 s 02 intentional 0 knowing 0 004 & 01337486 a 0000 + 05621946 n 0201 + 05982720 n 0101 + 04661389 n 0101 | characterized by conscious design or purpose; "intentional damage"; "a knowing attempt to defraud"; "a willful waste of time" -01338363 00 s 03 well-intentioned 0 well-meaning 0 well-meant 0 001 & 01337486 a 0000 | marked by good intentions though often producing unfortunate results; "a well-intentioned but clumsy waiter"; "a well-meaning but tactless fellow"; "the son's well-meaning efforts threw a singular chill upon the father's admirers"- S.W.Maughm; "blunt but well-meant criticism" -01338730 00 a 01 unintended 0 007 ^ 01558912 a 0000 ^ 01797862 a 0000 = 04661389 n 0000 ! 01337486 a 0101 & 01338909 a 0000 & 01339203 a 0000 & 01339492 a 0000 | not deliberate -01338909 00 s 02 accidental 0 inadvertent 0 004 & 01338730 a 0000 + 04665543 n 0204 + 04665543 n 0203 + 07300960 n 0101 | happening by chance or unexpectedly or unintentionally ; "with an inadvertent gesture she swept the vase off the table"; "accidental poisoning"; "an accidental shooting" -01339203 00 s 03 causeless 0 fortuitous 0 uncaused 0 002 & 01338730 a 0000 + 04758980 n 0201 | having no cause or apparent cause; "a causeless miracle"; "fortuitous encounters--strange accidents of fortune"; "we cannot regard artistic invention as...uncaused and unrelated to the times" -01339492 00 s 03 unintentional 0 unplanned 0 unwitting 0 001 & 01338730 a 0000 | not done with purpose or intent; "an unintended slight"; "an unintentional pun"; "the offense was unintentional"; "an unwitting mistake may be overlooked" -01339730 00 a 02 designed 0 intentional 4 003 + 04661389 n 0201 ! 01340147 a 0101 & 01340016 a 0000 | done or made or performed with purpose and intent; "style...is more than the deliberate and designed creation"- Havelock Ellis; "games designed for all ages"; "well-designed houses" -01340016 00 s 01 fashioned 0 001 & 01339730 a 0000 | planned and made or fashioned artistically; "beautifully fashioned dresses" -01340147 00 a 01 undesigned 0 001 ! 01339730 a 0101 | not done or made or performed with purpose or intent -01340256 00 a 01 intensifying 0 005 ! 01340990 a 0101 & 01340422 a 0000 & 01340522 a 0000 & 01340691 a 0000 & 01340875 a 0000 | increasing in strength or intensity -01340422 00 s 03 aggravating 0 exacerbating 0 exasperating 0 001 & 01340256 a 0000 | making worse -01340522 00 s 02 augmentative 0 enhancive 0 004 & 01340256 a 0000 + 00229605 v 0201 + 00154388 v 0101 + 00157950 v 0101 | intensifying by augmentation and enhancement -01340691 00 s 02 deepening(a) 0 thickening(a) 0 001 & 01340256 a 0000 | accumulating and becoming more intense; "the deepening gloom"; "felt a deepening love"; "the thickening dusk" -01340875 00 s 01 heightening(a) 0 001 & 01340256 a 0000 | reaching a higher intensity; "their heightening fears" -01340990 00 a 01 moderating 0 005 ! 01340256 a 0101 & 01341153 a 0000 & 01341490 a 0000 & 01341731 a 0000 & 01341822 a 0000 | lessening in intensity or strength -01341153 00 s 06 alleviative 0 alleviatory 0 lenitive 0 mitigative 0 mitigatory 0 palliative 0 010 & 01340990 a 0000 + 03879854 n 0601 + 00064095 v 0603 + 00906037 v 0503 + 00198850 v 0501 + 00906037 v 0403 + 00198850 v 0401 + 03656374 n 0301 + 00064095 v 0202 + 00064095 v 0102 | moderating pain or sorrow by making it easier to bear -01341490 00 s 03 analgesic 0 analgetic 0 anodyne 0 005 & 01340990 a 0000 + 02707683 n 0302 + 14552205 n 0201 + 02707683 n 0101 + 14552205 n 0101 | capable of relieving pain; "the anodyne properties of certain drugs"; "an analgesic effect" -01341731 00 s 01 tempering 0 001 & 01340990 a 0000 | moderating by making more temperate -01341822 00 s 01 weakening 0 001 & 01340990 a 0000 | moderating by making pain or sorrow weaker -01341920 00 a 02 interspecies 0 interspecific 0 001 ! 01342058 a 0101 | arising or occurring between species; "an interspecific hybrid" -01342058 00 a 02 intraspecies 0 intraspecific 0 001 ! 01341920 a 0101 | arising or occurring within a species; involving the members of one species; "intraspecific competition" -01342237 00 a 01 interested 0 003 + 05671217 n 0101 ! 01342759 a 0101 & 01342572 a 0000 | having or showing interest; especially curiosity or fascination or concern; "an interested audience"; "interested in sports"; "was interested to hear about her family"; "interested in knowing who was on the telephone"; "interested spectators" -01342572 00 s 01 curious 0 003 & 01342237 a 0000 + 05683197 n 0101 + 05682570 n 0101 | having curiosity aroused; eagerly interested in learning more; "a trap door that made me curious" -01342759 00 a 01 uninterested 0 005 ! 01342237 a 0101 & 01342949 a 0000 & 01343200 a 0000 & 01343411 a 0000 & 01343679 a 0000 | not having or showing interest; "an uninterested spectator" -01342949 00 s 02 apathetic 0 indifferent 0 004 & 01342759 a 0000 + 04636610 n 0202 + 07483622 n 0101 + 04636610 n 0101 | marked by a lack of interest; "an apathetic audience"; "the universe is neither hostile nor friendly; it is simply indifferent" -01343200 00 s 02 blase 0 bored 0 001 & 01342759 a 0000 | uninterested because of frequent exposure or indulgence; "his blase indifference"; "a petulant blase air"; "the bored gaze of the successful film star" -01343411 00 s 01 dismissive 0 002 & 01342759 a 0000 + 00800930 v 0101 | showing indifference or disregard; "a dismissive shrug"; "the firm is dismissive of the competitor's product"; "'chronic fatigue syndrome' was known by the dismissive term 'housewife syndrome'" -01343679 00 s 02 dulled 0 benumbed 0 001 & 01342759 a 0000 | having lost or been caused to lose interest because of overexposure; "the mind of the audience is becoming dulled"; "the benumbed intellectual faculties can no longer respond" -01343918 00 a 01 interesting 0 010 ^ 00921014 a 0000 ^ 02306288 a 0000 = 05192451 n 0000 + 05192451 n 0102 ! 01344963 a 0101 & 01344171 a 0000 & 01344344 a 0000 & 01344485 a 0000 & 01344684 a 0000 & 01344834 a 0000 | arousing or holding the attention -01344171 00 s 05 absorbing 0 engrossing 0 fascinating 0 gripping 0 riveting 0 001 & 01343918 a 0000 | capable of arousing and holding the attention; "a fascinating story" -01344344 00 s 01 entertaining 0 001 & 01343918 a 0000 | agreeably diverting; "an entertaining puppet show"; "films should be entertaining" -01344485 00 s 03 amusing 0 amusive 0 diverting 0 003 & 01343918 a 0000 + 02492362 v 0201 + 00859758 v 0201 | providing enjoyment; pleasantly entertaining; "an amusing speaker"; "a diverting story" -01344684 00 s 01 intriguing 0 001 & 01343918 a 0000 | capable of arousing interest or curiosity; "our team came up with some most intriguing finds" -01344834 00 s 01 newsworthy 0 002 & 01343918 a 0000 + 05192897 n 0101 | sufficiently interesting to be reported in a newspaper -01344963 00 a 01 uninteresting 0 011 ^ 00922594 a 0000 ^ 02307367 a 0000 = 05192451 n 0000 + 05205340 n 0101 ! 01343918 a 0101 & 01345307 a 0000 & 01345997 a 0000 & 01346198 a 0000 & 01346343 a 0000 & 01346538 a 0000 & 01346650 a 0000 | arousing no interest or attention or curiosity or excitement; "a very uninteresting account of her trip" -01345307 00 s 09 boring 0 deadening 0 dull 1 ho-hum 0 irksome 0 slow 0 tedious 0 tiresome 0 wearisome 0 007 & 01344963 a 0000 + 05206237 n 0803 + 07539790 n 0703 + 05206237 n 0702 + 05206237 n 0701 + 05205739 n 0301 + 05206006 n 0101 | so lacking in interest as to cause mental weariness; "a boring evening with uninteresting people"; "the deadening effect of some routine tasks"; "a dull play"; "his competent but dull performance"; "a ho-hum speaker who couldn't capture their attention"; "what an irksome task the writing of long letters is"- Edmund Burke; "tedious days on the train"; "the tiresome chirping of a cricket"- Mark Twain; "other people's dreams are dreadfully wearisome" -01345997 00 s 02 insipid 0 jejune 0 004 & 01344963 a 0000 + 05206573 n 0202 + 05206573 n 0201 + 05206006 n 0103 | lacking interest or significance or impact; "an insipid personality"; "jejune novel" -01346198 00 s 03 narcotic 0 soporiferous 0 soporific 0 002 & 01344963 a 0000 + 04260934 n 0301 | inducing mental lethargy; "a narcotic speech" -01346343 00 s 04 pedestrian 0 prosaic 0 prosy 0 earthbound 0 004 & 01344963 a 0000 + 04795878 n 0301 + 07072434 n 0201 + 04795878 n 0202 | lacking wit or imagination; "a pedestrian movie plot" -01346538 00 s 01 ponderous 0 002 & 01344963 a 0000 + 05206829 n 0101 | labored and dull; "a ponderous speech" -01346650 00 s 01 putdownable 0 001 & 01344963 a 0000 | (of a book) poorly written and not entertaining -01346755 00 a 01 intramural 0 002 ! 01347138 a 0101 & 01346978 a 0000 | carried on within the bounds of an institution or community; "most of the students participated actively in the college's intramural sports program" -01346978 00 s 02 internal 0 intragroup 0 001 & 01346755 a 0000 | occurring within an institution or community; "intragroup squabbling within the corporation" -01347138 00 a 01 extramural 0 005 ! 01346755 a 0101 & 01347348 a 0000 & 01347492 a 0000 & 01347613 a 0000 & 01347749 a 0000 | carried on outside the bounds of an institution or community; "extramural sports" -01347348 00 s 01 intercollegiate 0 001 & 01347138 a 0000 | used of competition between colleges or universities; "intercollegiate basketball" -01347492 00 s 01 intermural 0 001 & 01347138 a 0000 | between two or more institutions etc; "an intermural track meet" -01347613 00 s 02 interscholastic 0 interschool 0 001 & 01347138 a 0000 | used of competition or cooperation between secondary schools -01347749 00 s 01 outside 0 001 & 01347138 a 0000 | functioning outside the boundaries or precincts of an organized unit; "extramural hospital care and treatment"; "extramural studies" -01347935 00 a 01 intra_vires 0 002 ;c 08441203 n 0000 ! 01348083 a 0101 | within the legal power or authority or a person or official or body etc -01348083 00 a 01 ultra_vires 0 002 ;c 08441203 n 0000 ! 01347935 a 0101 | beyond the legal power or authority of a person or official or body etc; "an ultra vires contract" -01348258 00 a 02 intrinsic 0 intrinsical 0 005 ^ 00900616 a 0000 ^ 00093810 a 0000 ! 01349041 a 0101 & 01348528 a 0000 & 01348835 a 0000 | belonging to a thing by its very nature; "form was treated as something intrinsic, as the very essence of the thing"- John Dewey -01348528 00 s 05 built-in 0 constitutional 0 inbuilt 0 inherent 0 integral 0 003 & 01348258 a 0000 + 13958138 n 0401 + 02653564 v 0401 | existing as an essential constituent or characteristic; "the Ptolemaic system with its built-in concept of periodicity"; "a constitutional inability to tell the truth" -01348835 00 s 03 inner 0 internal 0 intimate 0 001 & 01348258 a 0000 | innermost or essential; "the inner logic of Cubism"; "the internal contradictions of the theory"; "the intimate structure of matter" -01349041 00 a 01 extrinsic 0 007 ^ 00902652 a 0000 ! 01348258 a 0101 & 01349435 a 0000 & 01349760 a 0000 & 01349927 a 0000 & 01350225 a 0000 & 01350494 a 0000 | not forming an essential part of a thing or arising or originating from the outside; "extrinsic evidence"; "an extrinsic feature of the new building"; "that style is something extrinsic to the subject"; "looking for extrinsic aid" -01349435 00 s 01 adventitious 0 001 & 01349041 a 0000 | associated by chance and not an integral part; "poetry is something to which words are the accidental, not by any means the essential form"- Frederick W. Robertson; "they had to decide whether his misconduct was adventitious or the result of a flaw in his character" -01349760 00 s 01 adscititious 0 001 & 01349041 a 0000 | added or derived from something outside; not inherent; "an adscititious habit rather than an inherent taste" -01349927 00 s 02 alien 0 foreign 0 002 & 01349041 a 0000 + 04799344 n 0201 | not contained in or deriving from the essential nature of something; "an economic theory alien to the spirit of capitalism"; "the mysticism so foreign to the French mind and temper"; "jealousy is foreign to her nature" -01350225 00 s 03 external 0 extraneous 1 outside 0 003 & 01349041 a 0000 + 13796585 n 0201 + 05078623 n 0102 | coming from the outside; "extraneous light in the camera spoiled the photograph"; "relying upon an extraneous income"; "disdaining outside pressure groups" -01350494 00 s 01 extraneous 2 002 & 01349041 a 0000 + 13796585 n 0101 | not essential; "the ballet struck me as extraneous and somewhat out of keeping with the rest of the play" -01350674 00 a 03 introspective 0 introverted 4 self-examining 0 004 = 04660981 n 0000 + 04660981 n 0101 + 00631591 v 0101 ! 01350876 a 0101 | given to examining own sensory and perceptual experiences -01350876 00 a 02 extrospective 0 extroverted 4 002 = 04660981 n 0000 ! 01350674 a 0101 | not introspective; examining what is outside yourself -01351021 00 a 02 introversive 0 introvertive 0 008 ^ 02258600 a 0000 = 04621963 n 0000 ;c 06136258 n 0000 + 00533897 v 0201 + 00533897 v 0101 ! 01351391 a 0101 ! 01351922 a 0101 & 01351302 a 0000 | directed inward; marked by interest in yourself or concerned with inner feelings -01351302 00 s 02 introvertish 0 shut-in 0 001 & 01351021 a 0000 | somewhat introverted -01351391 00 a 02 extroversive 0 extraversive 0 006 ^ 02257141 a 0000 ;c 06136258 n 0000 ! 01351922 a 0101 ! 01351021 a 0101 & 01351637 a 0000 & 01351837 a 0000 | directed outward; marked by interest in others or concerned with external reality -01351637 00 s 06 extrovert 0 extravert 0 extroverted 0 extraverted 0 extrovertive 0 extravertive 0 002 & 01351391 a 0000 + 10074841 n 0202 | being concerned with the social and physical environment -01351837 00 s 01 extrovertish 0 001 & 01351391 a 0000 | being somewhat extroverted -01351922 00 a 01 ambiversive 0 003 ;c 06136258 n 0000 ! 01351021 a 0101 ! 01351391 a 0101 | intermediate between introversive and extroversive -01352067 00 a 01 intrusive 1 007 = 04837931 n 0000 + 04837931 n 0101 + 02018524 v 0101 + 00747757 v 0101 ! 01352895 a 0101 & 01352320 a 0000 & 01352561 a 0000 | tending to intrude (especially upon privacy); "she felt her presence there was intrusive" -01352320 00 s 03 encroaching(a) 0 invasive 0 trespassing(a) 0 002 & 01352067 a 0000 + 02019716 v 0202 | gradually intrusive without right or permission; "we moved back from the encroaching tide"; "invasive tourists"; "trespassing hunters" -01352561 00 s 06 interfering 0 meddlesome 0 meddling 0 officious 0 busy 0 busybodied 0 003 & 01352067 a 0000 + 04837931 n 0403 + 04837931 n 0202 | intrusive in a meddling or offensive manner; "an interfering old woman"; "bustling about self-importantly making an officious nuisance of himself"; "busy about other people's business" -01352895 00 a 02 unintrusive 0 not_intrusive 0 002 = 04837931 n 0000 ! 01352067 a 0101 | not interfering or meddling -01353014 00 a 01 intrusive 2 003 ^ 00535452 a 0000 ! 01353226 a 0101 & 01353153 a 0000 | thrusting inward; "an intrusive arm of the sea" -01353153 00 s 01 intruding 0 001 & 01353014 a 0000 | projecting inward -01353226 00 a 01 protrusive 0 013 ^ 00537339 a 0000 + 02713372 v 0102 + 02081946 v 0102 + 00263231 v 0103 ! 01353014 a 0101 & 01353516 a 0000 & 01353618 a 0000 & 01353866 a 0000 & 01353982 a 0000 & 01354308 a 0000 & 01354430 a 0000 & 01354581 a 0000 & 01354750 a 0000 | thrusting outward -01353516 00 s 02 beetle 0 beetling 0 001 & 01353226 a 0000 | jutting or overhanging; "beetle brows" -01353618 00 s 06 bellied 0 bellying 0 bulbous 0 bulging 0 bulgy 0 protuberant 0 008 & 01353226 a 0000 + 14087321 n 0601 + 13894434 n 0609 + 02714731 v 0601 + 02714541 v 0601 + 13894434 n 0501 + 05070453 n 0502 + 05227079 n 0301 | curving outward -01353866 00 s 01 obtrusive 0 003 & 01353226 a 0000 + 04707110 n 0101 + 01873157 v 0102 | sticking out; protruding -01353982 00 s 07 jutting 2 projected 0 projecting 0 protruding 0 relieved 0 sticking(p) 0 sticking_out(p) 0 001 & 01353226 a 0000 | extending out above or beyond a surface or boundary; "the jutting limb of a tree"; "massive projected buttresses"; "his protruding ribs"; "a pile of boards sticking over the end of his truck" -01354308 00 s 01 overshot 0 001 & 01353226 a 0000 | having an upper part projecting beyond the lower; "an overshot jaw" -01354430 00 s 01 starting 0 001 & 01353226 a 0000 | (especially of eyes) bulging or protruding as with fear; "with eyes starting from their sockets" -01354581 00 s 03 underhung 0 undershot 0 underslung 0 001 & 01353226 a 0000 | having a lower part projecting beyond the upper; "an underhung jaw"; "undershot bulldog" -01354750 00 s 02 ventricose 0 ventricous 0 003 & 01353226 a 0000 ;c 06037666 n 0000 ;c 06057539 n 0000 | having a swelling on one side; "the ventricose gullet of an insect" -01354925 00 a 02 igneous 0 eruptive 0 002 ;c 06115701 n 0000 ! 01355089 a 0101 | produced by the action of fire or intense heat; "rocks formed by igneous agents" -01355089 00 a 02 aqueous 0 sedimentary 0 002 ;c 06115701 n 0000 ! 01354925 a 0101 | produced by the action of water -01355207 00 a 01 intrusive 3 003 ;c 06115701 n 0000 ! 01355556 a 0101 & 01355378 a 0000 | of rock material; forced while molten into cracks between layers of other rock -01355378 00 s 02 irruptive 0 plutonic 0 002 & 01355207 a 0000 + 14932303 n 0203 | of igneous rock that has solidified beneath the earth's surface; granite or diorite or gabbro -01355556 00 a 01 extrusive 0 004 ;c 06115701 n 0000 + 01675780 v 0101 ! 01355207 a 0101 & 01355746 a 0000 | of rock material; forced out while molten through cracks in the earth's surface -01355746 00 s 01 volcanic 0 001 & 01355556 a 0000 | igneous rock produced by eruption and solidified on or near the earth's surface; rhyolite or andesite or basalt; "volcanic rock includes the volcanic glass obsidian" -01355966 00 a 01 invasive 0 003 + 01227488 v 0101 ! 01356283 a 0101 & 01356143 a 0000 | marked by a tendency to spread especially into healthy tissue; "invasive cancer cells" -01356143 00 s 03 aggressive 0 fast-growing(a) 0 strong-growing 0 001 & 01355966 a 0000 | tending to spread quickly; "an aggressive tumor" -01356283 00 a 01 confined 1 001 ! 01355966 a 0101 | not invading healthy tissue -01356365 00 a 01 invasive 1 002 ;c 06043075 n 0000 ! 01356515 a 0101 | relating to a technique in which the body is entered by puncture or incision -01356515 00 a 01 noninvasive 0 002 ;c 06043075 n 0000 ! 01356365 a 0101 | relating to a technique that does not involve puncturing the skin or entering a body cavity -01356683 00 a 01 invigorating 0 008 ^ 02306288 a 0000 ! 01357966 a 0101 & 01356932 a 0000 & 01357027 a 0000 & 01357206 a 0000 & 01357342 a 0000 & 01357484 a 0000 & 01357742 a 0000 | imparting strength and vitality; "the invigorating mountain air" -01356932 00 s 02 animating 0 enlivening 0 001 & 01356683 a 0000 | giving spirit and vivacity -01357027 00 s 06 bracing 0 brisk 0 fresh 0 refreshing 0 refreshful 0 tonic 0 002 & 01356683 a 0000 + 04926728 n 0301 | imparting vitality and energy; "the bracing mountain air" -01357206 00 s 01 corroborant 0 003 & 01356683 a 0000 ;c 06043075 n 0000 ;u 07073447 n 0000 | used of a medicine that is strengthening -01357342 00 s 02 exhilarating 0 stimulating 0 001 & 01356683 a 0000 | making lively and cheerful; "the exhilarating effect of mountain air" -01357484 00 s 02 life-giving 0 vitalizing 0 001 & 01356683 a 0000 | giving or having the power to give life and spirit; "returning the life-giving humus to the land"- Louis Bromfield; "life-giving love and praise"; "the vitalizing rays of the warming sun" -01357742 00 s 05 renewing 0 restorative 0 reviving 0 revitalizing 0 revitalising 0 003 & 01356683 a 0000 + 04451473 n 0202 + 00168588 v 0202 | tending to impart new life and vigor to; "the renewing warmth of the sunshine" -01357966 00 a 01 debilitating 0 003 ! 01356683 a 0101 & 01358096 a 0000 & 01358231 a 0000 | impairing the strength and vitality -01358096 00 s 04 debilitative 0 enervating 0 enfeebling 0 weakening 0 002 & 01357966 a 0000 + 00389638 v 0102 | causing debilitation -01358231 00 s 02 draining 0 exhausting 0 001 & 01357966 a 0000 | having a debilitating effect; "an exhausting job in the hot sun" -01358363 00 a 01 inviting 0 005 ^ 00166146 a 0000 ! 01359035 a 0101 & 01358534 a 0000 & 01358695 a 0000 & 01358846 a 0000 | attractive and tempting; "an inviting offer" -01358534 00 s 01 invitatory 0 004 & 01358363 a 0000 + 02384940 v 0101 + 02384686 v 0101 + 01063695 v 0101 | conveying an invitation; "a brief invitatory note" -01358695 00 s 03 tantalizing 1 tantalising 1 tempting 0 001 & 01358363 a 0000 | very pleasantly inviting; "a tantalizing aroma"; "a tempting repast" -01358846 00 s 02 tantalizing 2 tantalising 2 001 & 01358363 a 0000 | arousing desire or expectation for something unattainable or mockingly out of reach; "a tantalizing taste of success" -01359035 00 a 01 uninviting 0 003 ^ 00169164 a 0000 ! 01358363 a 0101 & 01359159 a 0000 | neither attractive nor tempting -01359159 00 s 02 unattractive 0 untempting 0 001 & 01359035 a 0000 | not appealing to the senses; "untempting food" -01359277 00 a 02 in_vitro 0 ex_vivo 0 001 ! 01359424 a 0101 | in an artificial environment outside the living organism; "in vitro fertilization" -01359424 00 a 01 in_vivo 0 002 ;c 06037666 n 0000 ! 01359277 a 0101 | within a living organism; "in vivo techniques" -01359543 00 a 01 ironed 0 004 ^ 02236842 a 0000 ! 01359861 a 0101 & 01359697 a 0000 & 01359771 a 0000 | (of linens or clothes) smoothed with a hot iron -01359697 00 s 01 pressed 0 001 & 01359543 a 0000 | compacted by ironing -01359771 00 s 02 smoothed 0 smoothened 0 001 & 01359543 a 0000 | made smooth by ironing -01359861 00 a 02 unironed 0 wrinkled 2 005 ^ 02238462 a 0000 ! 01359543 a 0101 & 01360085 a 0000 & 01360231 a 0000 & 01360321 a 0000 | (of linens or clothes) not ironed; "a pile of unironed laundry"; "wore unironed jeans" -01360085 00 s 02 drip-dry 0 permanent-press 0 001 & 01359861 a 0000 | used of fabrics that do not require ironing; "drip-dry shirts for travel" -01360231 00 s 01 roughdried 0 001 & 01359861 a 0000 | (of laundry) dried but not ironed -01360321 00 s 01 unpressed 0 001 & 01359861 a 0000 | (of clothing) not smoothed with heat -01360413 00 a 02 wrinkled 0 wrinkly 0 003 ^ 02243806 a 0000 ! 01360692 a 0101 & 01360571 a 0000 | marked by wrinkles; "tired travelers in wrinkled clothes" -01360571 00 s 01 unsmoothed 0 001 & 01360413 a 0000 | not having been made smooth by having hands run over the surface -01360692 00 a 02 unwrinkled 0 wrinkleless 0 002 ^ 02244472 a 0000 ! 01360413 a 0101 | not wrinkled or creased -01360804 00 a 02 isotropic 0 isotropous 0 004 + 04917439 n 0201 + 04917439 n 0101 ! 01361107 a 0101 & 01360962 a 0000 | invariant with respect to direction -01360962 00 s 01 identical 0 003 & 01360804 a 0000 ;c 06090869 n 0000 + 04743024 n 0102 | having properties with uniform values along all axes -01361107 00 a 01 anisotropic 0 003 + 04917680 n 0101 ! 01360804 a 0101 & 01361264 a 0000 | not invariant with respect to direction; "anisotropic crystals" -01361264 00 s 02 aeolotropic 0 eolotropic 0 002 & 01361107 a 0000 ;c 06090869 n 0000 | having properties with different values along different axes -01361414 00 a 01 glad 0 004 ^ 00362467 a 0000 + 07527167 n 0101 ! 01361863 a 0101 & 01361705 a 0000 | showing or causing joy and pleasure; especially made happy; "glad you are here"; "glad that they succeeded"; "gave a glad shout"; "a glad smile"; "heard the glad news"; "a glad occasion" -01361705 00 s 01 gladsome 0 002 & 01361414 a 0000 + 07527167 n 0103 | experiencing or expressing gladness or joy; "a gladsome smile"; "a gladsome occasion" -01361863 00 a 01 sad 0 010 + 13989051 n 0101 + 07532440 n 0101 ! 01361414 a 0101 & 01362273 a 0000 & 01362387 a 0000 & 01362598 a 0000 & 01362684 a 0000 & 01362950 a 0000 & 01363153 a 0000 & 01363370 a 0000 | experiencing or showing sorrow or unhappiness; "feeling sad because his dog had died"; "Better by far that you should forget and smile / Than that you should remember and be sad"- Christina Rossetti -01362273 00 s 01 bittersweet 0 001 & 01361863 a 0000 | tinged with sadness; "a movie with a bittersweet ending" -01362387 00 s 02 doleful 0 mournful 0 003 & 01361863 a 0000 + 07535209 n 0201 + 07532832 n 0101 | filled with or evoking sadness; "the child's doleful expression"; "stared with mournful eyes"; "mournful news" -01362598 00 s 01 heavyhearted 0 002 & 01361863 a 0000 + 07533492 n 0101 | depressed -01362684 00 s 02 melancholy 0 melancholic 0 003 & 01361863 a 0000 + 10306595 n 0201 + 14392491 n 0201 | characterized by or causing or expressing sadness; "growing more melancholy every hour"; "her melancholic smile"; "we acquainted him with the melancholy truth" -01362950 00 s 02 pensive 0 wistful 1 003 & 01361863 a 0000 + 07487276 n 0201 + 04660805 n 0101 | showing pensive sadness; "the sensitive and wistful response of a poet to the gentler phases of beauty" -01363153 00 s 02 tragic 0 tragical 0 003 & 01361863 a 0000 + 07314838 n 0204 + 07314838 n 0104 | very sad; especially involving grief or death or destruction; "a tragic face"; "a tragic plight"; "a tragic accident" -01363370 00 s 02 tragicomic 0 tragicomical 0 003 & 01361863 a 0000 + 07016797 n 0202 + 07017161 n 0201 | manifesting both tragic and comic aspects; "the tragicomic disparity...between's man's aspirations and his accomplishments"- B.R.Redman -01363613 00 a 01 joyful 0 006 ^ 01148283 a 0000 ^ 01366718 a 0000 + 07527352 n 0103 ! 01364008 a 0101 & 01363824 a 0000 & 01363936 a 0000 | full of or producing joy; "make a joyful noise"; "a joyful occasion" -01363824 00 s 01 beatific 0 001 & 01363613 a 0000 | experiencing or bestowing celestial joy; "beatific peace" -01363936 00 s 01 overjoyed 0 001 & 01363613 a 0000 | extremely joyful -01364008 00 a 01 sorrowful 0 017 ^ 01368192 a 0000 ^ 01149494 a 0000 + 13989051 n 0103 + 07535209 n 0102 ! 01363613 a 0101 & 01364585 a 0000 & 01364817 a 0000 & 01364993 a 0000 & 01365103 a 0000 & 01365239 a 0000 & 01365407 a 0000 & 01365544 a 0000 & 01365785 a 0000 & 01366062 a 0000 & 01366157 a 0000 & 01366277 a 0000 & 01366525 a 0000 | experiencing or marked by or expressing sorrow especially that associated with irreparable loss; "sorrowful widows"; "a sorrowful tale of death and despair"; "sorrowful news"; "even in laughter the heart is sorrowful"- Proverbs 14:13 -01364585 00 s 03 anguished 0 tormented 0 tortured 0 001 & 01364008 a 0000 | experiencing intense pain especially mental pain; "an anguished conscience"; "a small tormented schoolboy"; "a tortured witness to another's humiliation" -01364817 00 s 06 bereaved 0 bereft 0 grief-stricken 0 grieving 0 mourning(a) 0 sorrowing(a) 0 001 & 01364008 a 0000 | sorrowful through loss or deprivation; "bereft of hope" -01364993 00 s 01 bitter 0 001 & 01364008 a 0000 | expressive of severe grief or regret; "shed bitter tears" -01365103 00 s 03 brokenhearted 0 heartbroken 0 heartsick 0 003 & 01364008 a 0000 + 07538395 n 0303 + 07535010 n 0104 | full of sorrow -01365239 00 s 05 dolorous 0 dolourous 0 lachrymose 0 tearful 0 weeping 0 004 & 01364008 a 0000 + 07534278 n 0402 + 07535532 n 0201 + 07535532 n 0101 | showing sorrow -01365407 00 s 01 elegiac 0 001 & 01364008 a 0000 | expressing sorrow often for something past; "an elegiac lament for youthful ideals" -01365544 00 s 03 grievous 0 heartbreaking 0 heartrending 0 001 & 01364008 a 0000 | causing or marked by grief or anguish; "a grievous loss"; "a grievous cry"; "her sigh was heartbreaking"; "the heartrending words of Rabin's granddaughter" -01365785 00 s 03 lamenting 0 wailing 0 wailful 0 001 & 01364008 a 0000 | vocally expressing grief or sorrow or resembling such expression; "lamenting sinners"; "wailing mourners"; "the wailing wind"; "wailful bagpipes"; "tangle her desires with wailful sonnets"- Shakespeare -01366062 00 s 01 lugubrious 0 002 & 01364008 a 0000 + 04631470 n 0102 | excessively mournful -01366157 00 s 02 mournful 1 plaintive 0 003 & 01364008 a 0000 + 07535430 n 0201 + 07535209 n 0101 | expressing sorrow -01366277 00 s 01 sad 0 002 & 01364008 a 0000 + 04631470 n 0103 | of things that make you feel sad; "sad news"; "she doesn't like sad movies"; "it was a very sad story"; "When I am dead, my dearest, / Sing no sad songs for me"- Christina Rossetti -01366525 00 s 02 woebegone 0 woeful 0 002 & 01364008 a 0000 + 07533877 n 0202 | affected by or full of grief or woe; "his sorrow...made him look...haggard and...woebegone"- George du Maurier -01366718 00 a 01 joyous 0 010 ^ 00704609 a 0000 ^ 01148283 a 0000 ^ 01363613 a 0000 + 07527352 n 0101 + 07527352 n 0102 ! 01368192 a 0101 & 01367008 a 0000 & 01367211 a 0000 & 01367431 a 0000 & 01367651 a 0000 | full of or characterized by joy; "felt a joyous abandon"; "joyous laughter" -01367008 00 s 05 ecstatic 0 enraptured 0 rapturous 0 rapt 0 rhapsodic 0 005 & 01366718 a 0000 + 13988101 n 0302 + 13986372 n 0302 + 13988101 n 0101 + 13986372 n 0101 | feeling great rapture or delight -01367211 00 s 04 elated 0 gleeful 0 joyful 0 jubilant 0 006 & 01366718 a 0000 + 07527817 n 0403 + 00857923 v 0405 + 07527817 n 0402 + 07527352 n 0303 + 07529377 n 0205 | full of high-spirited delight; "a joyful heart" -01367431 00 s 04 gay 0 festal 0 festive 0 merry 1 003 & 01366718 a 0000 + 04649051 n 0403 + 00428000 n 0302 | offering fun and gaiety; "a festive (or festal) occasion"; "gay and exciting night life"; "a merry evening" -01367651 00 s 06 gay 2 jocund 0 jolly 0 jovial 0 merry 2 mirthful 0 009 & 01366718 a 0000 + 07529377 n 0603 + 04649051 n 0503 + 07551890 n 0403 + 04653357 n 0402 + 07450343 n 0301 + 07551890 n 0302 + 07551890 n 0301 + 07529683 n 0201 | full of or showing high-spirited merriment; "when hearts were young and gay"; "a poet could not but be gay, in such a jocund company"- Wordsworth; "the jolly crowd at the reunion"; "jolly old Saint Nick"; "a jovial old gentleman"; "have a merry Christmas"; "peals of merry laughter"; "a mirthful laugh" -01368192 00 a 01 joyless 0 008 ^ 00364479 a 0000 ^ 01364008 a 0000 ^ 01149494 a 0000 + 07537376 n 0101 ! 01366718 a 0101 & 01368464 a 0000 & 01368657 a 0000 & 01368726 a 0000 | not experiencing or inspiring joy; "a joyless man"; "a joyless occasion"; "joyless evenings" -01368464 00 s 02 funereal 0 sepulchral 0 003 & 01368192 a 0000 + 02921884 n 0203 + 07451463 n 0101 | suited to or suggestive of a grave or burial; "funereal gloom"; "hollow sepulchral tones" -01368657 00 s 01 mirthless 0 001 & 01368192 a 0000 | lacking mirth -01368726 00 s 01 unsmiling 0 001 & 01368192 a 0000 | not smiling -01368793 00 a 01 juicy 0 006 + 07923748 n 0101 + 04996215 n 0103 ! 01369404 a 0101 & 01368948 a 0000 & 01369078 a 0000 & 01369274 a 0000 | full of juice -01368948 00 s 01 au_jus 0 002 & 01368793 a 0000 ;c 07649854 n 0000 | served in its natural juices or gravy; "roast beef au jus" -01369078 00 s 02 lush 0 succulent 0 003 & 01368793 a 0000 + 13084184 n 0201 + 04996215 n 0201 | full of juice; "lush fruits"; "succulent roast beef"; "succulent plants with thick fleshy leaves" -01369274 00 s 01 sappy 0 002 & 01368793 a 0000 + 15038127 n 0101 | abounding in sap; "sappy maple trees"; "sappy kindling wood" -01369404 00 a 01 juiceless 0 002 ! 01368793 a 0101 & 01369491 a 0000 | lacking juice -01369491 00 s 01 sapless 0 001 & 01369404 a 0000 | destitute of sap and other vital juices; dry; "the rats and roaches scurrying along the sapless planks"- Norman Mailer -01369663 00 a 01 just 0 010 ^ 00956131 a 0000 ^ 01226240 a 0000 ^ 02034828 a 0000 ^ 02036578 a 0000 + 04850117 n 0102 ! 01370590 a 0101 & 01370053 a 0000 & 01370141 a 0000 & 01370305 a 0000 & 01370475 a 0000 | used especially of what is legally or ethically right or proper or fitting; "a just and lasting peace"- A.Lincoln; "a kind and just man"; "a just reward"; "his just inheritance" -01370053 00 s 01 conscionable 0 001 & 01369663 a 0000 | acceptable to your conscience -01370141 00 s 02 fitting 0 meet 0 002 & 01369663 a 0000 + 04716864 n 0102 | being precisely fitting and right; "it is only meet that she should be seated first" -01370305 00 s 03 retributive 0 retributory 0 vindicatory 0 001 & 01369663 a 0000 | given or inflicted in requital according to merits or deserts; "retributive justice" -01370475 00 s 01 rightful(a) 0 002 & 01369663 a 0000 + 04850341 n 0102 | legally valid; "a rightful inheritance" -01370590 00 a 01 unjust 0 008 ^ 01227137 a 0000 ^ 00957176 a 0000 ^ 02037272 a 0000 ^ 02035337 a 0000 + 04854389 n 0102 ! 01369663 a 0101 & 01370864 a 0000 & 01371009 a 0000 | violating principles of justice; "unjust punishment"; "an unjust judge"; "an unjust accusation" -01370864 00 s 01 actionable 0 002 & 01370590 a 0000 + 02582042 v 0101 | affording grounds for legal action; "slander is an actionable offense" -01371009 00 s 01 wrongful 0 002 & 01370590 a 0000 + 04854604 n 0102 | not just or fair; "a wrongful act"; "a wrongful charge" -01371137 00 a 02 merited 0 deserved 0 002 ! 01371397 a 0101 & 01371258 a 0000 | properly deserved; "a merited success" -01371258 00 s 01 condign 0 001 & 01371137 a 0000 | fitting or appropriate and deserved; used especially of punishment; "condign censure" -01371397 00 a 01 unmerited 0 003 ! 01371137 a 0101 & 01371553 a 0000 & 01371646 a 0000 | not merited or deserved; "received an unmerited honorary degree" -01371553 00 s 01 gratuitous 0 001 & 01371397 a 0000 | without cause; "a gratuitous insult" -01371646 00 s 01 undeserved 0 001 & 01371397 a 0000 | not deserved or earned; "has an undeserved reputation as a coward" -01371769 00 a 01 keyed 0 001 ! 01371911 a 0101 | fitted with or secured by a key; "a keyed instrument"; "the locks have not yet been keyed" -01371911 00 a 01 keyless 0 001 ! 01371769 a 0101 | lacking or not requiring a key; "a keyless lock operated by a series of pushbuttons" -01372049 00 a 01 kind 0 014 ^ 00638981 a 0000 ^ 00226618 a 0000 ^ 01133876 a 0000 ^ 01507134 a 0000 ^ 01156112 a 0000 = 04840011 n 0000 + 04840011 n 0101 + 00034574 n 0101 ! 01373728 a 0101 & 01372568 a 0000 & 01372773 a 0000 & 01372948 a 0000 & 01373314 a 0000 & 01373545 a 0000 | having or showing a tender and considerate and helpful nature; used especially of persons and their behavior; "kind to sick patients"; "a kind master"; "kind words showing understanding and sympathy"; "thanked her for her kind letter" -01372568 00 s 02 benignant 0 gracious 0 003 & 01372049 a 0000 + 04640356 n 0201 + 04840981 n 0203 | characterized by kindness and warm courtesy especially of a king to his subjects; "our benignant king" -01372773 00 s 01 benign 0 003 & 01372049 a 0000 + 04840981 n 0101 + 04840981 n 0102 | kindness of disposition or manner; "the benign ruler of millions"; "benign intentions" -01372948 00 s 07 charitable 0 benevolent 0 kindly 0 sympathetic 0 good-hearted 0 openhearted 0 large-hearted 0 003 & 01372049 a 0000 + 04841664 n 0301 + 04832050 n 0101 | showing or motivated by sympathy and understanding and generosity; "was charitable in his opinions of others"; "kindly criticism"; "a kindly act"; "sympathetic words"; "a large-hearted mentor" -01373314 00 s 01 gentle 1 002 & 01372049 a 0000 + 04910973 n 0101 | having or showing a kindly or tender nature; "the gentle touch of her hand"; "her gentle manner was comforting"; "a gentle sensitive nature"; "gentle blue eyes" -01373545 00 s 02 kindhearted 0 kind-hearted 0 002 & 01372049 a 0000 + 07553590 n 0101 | having or proceeding from an innately kind disposition; "a generous and kindhearted teacher" -01373728 00 a 01 unkind 0 009 ^ 00227003 a 0000 ^ 01507402 a 0000 = 04840011 n 0000 + 04845312 n 0101 ! 01372049 a 0101 & 01374004 a 0000 & 01374183 a 0000 & 01374361 a 0000 & 01374461 a 0000 | lacking kindness; "a thoughtless and unkind remark"; "the unkindest cut of all" -01374004 00 s 03 cutting 0 edged 0 stinging 0 001 & 01373728 a 0000 | (of speech) harsh or hurtful in tone or character; "cutting remarks"; "edged satire"; "a stinging comment" -01374183 00 s 02 harsh 0 rough 0 002 & 01373728 a 0000 + 04845475 n 0103 | unkind or cruel or uncivil; "had harsh words"; "a harsh and unlovable old tyrant"; "a rough answer" -01374361 00 s 01 hurtful 0 001 & 01373728 a 0000 | causing hurt; "her hurtful unconsidered words" -01374461 00 s 02 unkindly 0 unsympathetic 0 001 & 01373728 a 0000 | lacking in sympathy and kindness; "unkindly ancts" -01374582 00 a 04 knowable 0 cognizable 0 cognisable 0 cognoscible 0 006 + 00596132 v 0101 + 00608502 v 0101 + 00596644 v 0101 + 00595630 v 0101 + 00594621 v 0101 ! 01374789 a 0101 | capable of being known -01374789 00 a 01 unknowable 0 002 ! 01374582 a 0101 & 01374912 a 0000 | not knowable; "the unknowable mysteries of life" -01374912 00 s 01 transcendent 0 005 & 01374789 a 0000 + 13963565 n 0102 + 13963565 n 0101 + 02669081 v 0102 + 02669477 v 0102 | beyond and outside the ordinary range of human experience or understanding; "the notion of any transcendent reality beyond thought" -01375174 00 a 01 known 0 011 ^ 00027247 a 0000 ^ 00965606 a 0000 ^ 01120925 a 0000 ! 01376894 a 0101 & 01375546 a 0000 & 01375689 a 0000 & 01375831 a 0000 & 01376208 a 0000 & 01376355 a 0000 & 01376522 a 0000 & 01376705 a 0000 | apprehended with certainty; "a known quantity"; "the limits of the known world"; "a musician known throughout the world"; "a known criminal" -01375546 00 s 01 best-known 0 001 & 01375174 a 0000 | most familiar or renowned; "Stevenson's best-known work is probably `Treasure Island'" -01375689 00 s 01 better-known 0 001 & 01375174 a 0000 | more familiar or renowned than the other of two; "the better-known book of the two" -01375831 00 s 08 celebrated 0 famed 0 far-famed 0 famous 0 illustrious 0 notable 0 noted 0 renowned 0 006 & 01375174 a 0000 + 10276238 n 0604 + 10276238 n 0605 + 05169601 n 0502 + 14438898 n 0401 + 14437386 n 0401 | widely known and esteemed; "a famous actor"; "a celebrated musician"; "a famed scientist"; "an illustrious judge"; "a notable historian"; "a renowned painter" -01376208 00 s 01 identified 0 001 & 01375174 a 0000 | having the identity known or established; "the identified bodies were released for burial" -01376355 00 s 01 legendary 0 001 & 01375174 a 0000 | so celebrated as to having taken on the nature of a legend; "the legendary exploits of the arctic trailblazers" -01376522 00 s 01 proverbial 0 001 & 01375174 a 0000 | widely known and spoken of; "her proverbial lateness"; "the proverbial absentminded professor"; "your proverbial dizzy blonde" -01376705 00 s 01 well-known 0 001 & 01375174 a 0000 | widely or fully known; "a well-known politician"; "well-known facts"; "a politician who is well known"; "these facts are well known" -01376894 00 a 01 unknown 0 013 ^ 01122411 a 0000 ^ 00028672 a 0000 ^ 00966477 a 0000 + 10661002 n 0103 + 07271648 n 0101 ! 01375174 a 0101 & 01377257 a 0000 & 01377407 a 0000 & 01377488 a 0000 & 01377721 a 0000 & 01377819 a 0000 & 01377933 a 0000 & 01378088 a 0000 | not known; "an unknown amount"; "an unknown island"; "an unknown writer"; "an unknown source" -01377257 00 s 03 chartless 0 uncharted 0 unmapped 0 001 & 01376894 a 0000 | (of unknown regions) not yet surveyed or investigated; "uncharted seas" -01377407 00 s 01 little-known 0 001 & 01376894 a 0000 | unknown to most people -01377488 00 s 02 unbeknown(p) 0 unbeknownst(p) 0 001 & 01376894 a 0000 | (usually used with `to') occurring or existing without the knowledge of; "a crisis unbeknown to me"; "she had been ill for months, unbeknownst to the family" -01377721 00 s 01 undiagnosed 0 001 & 01376894 a 0000 | eluding diagnosis; "undiagnosed disease" -01377819 00 s 02 undiscovered 0 unexplored 0 001 & 01376894 a 0000 | not yet discovered; "undiscovered islands" -01377933 00 s 01 unheard-of 0 001 & 01376894 a 0000 | previously unknown; "a first novel by an unheard of writer"; "developments on an unheard-of scale" -01378088 00 s 01 unidentified 0 001 & 01376894 a 0000 | not yet identified; "an unidentified species"; "an unidentified witness" -01378219 00 a 01 understood 0 003 ! 01378878 a 0101 & 01378429 a 0000 & 01378671 a 0000 | fully apprehended as to purport or meaning or explanation; "the understood conditions of troop withdrawal were clear" -01378429 00 s 03 appreciated 0 apprehended 0 comprehended 0 001 & 01378219 a 0000 | fully understood or grasped; "dangers not yet appreciated"; "these apprehended truths"; "a thing comprehended is a thing known as fully as it can be known" -01378671 00 s 02 interpreted 0 taken 0 001 & 01378219 a 0000 | understood in a certain way; made sense of; "a word taken literally"; "a smile taken as consent"; "an open door interpreted as an invitation" -01378878 00 a 01 ununderstood 0 005 ! 01378219 a 0101 & 01379116 a 0000 & 01379251 a 0000 & 01379361 a 0000 & 01379562 a 0000 | not understood; "should not tamely submit to the unpredictable and ununderstood cycles of wars"- Psychiatry -01379116 00 s 01 misunderstood 0 001 & 01378878 a 0000 | wrongly understood; "a misunderstood criticism"; "a misunderstood question" -01379251 00 s 01 uncomprehended 0 001 & 01378878 a 0000 | not fully understood; "an uncomprehended mystery" -01379361 00 s 01 undigested 0 001 & 01378878 a 0000 | not thought over and arranged systematically in the mind; not absorbed or assimilated mentally; "an undigested mass of facts gathered at random" -01379562 00 s 01 ungrasped 0 001 & 01378878 a 0000 | not fully apprehended; "the ungrasped infinite ground of all being"- Philip Wheelwright -01379705 00 a 03 labeled 0 labelled 0 tagged 0 001 ! 01379844 a 0101 | bearing or marked with a label or tag; "properly labeled luggage" -01379844 00 a 03 unlabeled 0 unlabelled 0 untagged 0 001 ! 01379705 a 0101 | lacking a label or tag; "unlabeled luggage is liable to be lost" -01379988 00 a 01 lamented 0 001 ! 01380127 a 0101 | mourned or grieved for; "the imprint of our wise and lamented friend"- A.E.Stevenson -01380127 00 a 02 unlamented 0 unmourned 0 001 ! 01379988 a 0101 | not grieved for; causing no mourning; "interred in an unlamented grave" -01380267 00 a 01 aerial 0 003 ;c 06066555 n 0000 + 08653314 n 0101 & 01380571 a 0000 | existing or living or growing or operating in the air; "aerial roots of a philodendron"; "aerial particles"; "small aerial creatures such as butterflies"; "aerial warfare"; "aerial photography"; "aerial cable cars" -01380571 00 s 01 free-flying 0 001 & 01380267 a 0000 | able to fly through the air (as a bird); "three chicks were raised to the free-flying stage" -01380721 00 a 01 marine 0 006 & 01380926 a 0000 & 01381074 a 0000 & 01381196 a 0000 & 01381340 a 0000 & 01381473 a 0000 & 01381615 a 0000 | relating to or characteristic of or occurring on or in the sea -01380926 00 s 01 deep-sea 0 001 & 01380721 a 0000 | of or taking place in the deeper parts of the sea; "deep-sea fishing"; "deep-sea exploration" -01381074 00 s 03 oceangoing 0 seafaring 0 seagoing 0 001 & 01380721 a 0000 | used on the high seas; "seafaring vessels" -01381196 00 s 01 oceanic 0 002 & 01380721 a 0000 + 09376198 n 0101 | constituting or living in the open sea; "oceanic waters"; "oceanic life" -01381340 00 s 01 offshore 0 001 & 01380721 a 0000 | at some distance from the shore; "offshore oil reserves"; "an offshore island" -01381473 00 s 02 oversea 0 overseas 0 001 & 01380721 a 0000 | being or passing over or across the sea; "some overseas trade in grain arose" -01381615 00 s 02 suboceanic 0 subocean 0 001 & 01380721 a 0000 | formed or situated or occurring beneath the ocean or the ocean bed; "suboceanic oil resources" -01381777 00 a 03 laureled 0 laurelled 0 crowned 4 001 ! 01381907 a 0101 | crowned with or as if with laurel symbolizing victory -01381907 00 a 02 unlaureled 0 unlaurelled 0 001 ! 01381777 a 0101 | not crowned with laurel; having no acclaim or reward; "the unlaureled heroism of endurance"- Francis Parkman -01382086 00 a 02 large 0 big 1 054 = 05098942 n 0000 + 05103946 n 0202 ! 01391351 a 0202 + 05096191 n 0101 + 05103946 n 0101 ! 01391351 a 0101 & 01383394 a 0000 & 01383582 a 0000 & 01383684 a 0000 & 01383756 a 0000 & 01383857 a 0000 & 01383935 a 0000 & 01384081 a 0000 & 01384212 a 0000 & 01384438 a 0000 & 01384572 a 0000 & 01384730 a 0000 & 01385046 a 0000 & 01385149 a 0000 & 01385255 a 0000 & 01385663 a 0000 & 01385773 a 0000 & 01386010 a 0000 & 01386234 a 0000 & 01386538 a 0000 & 01386883 a 0000 & 01387149 a 0000 & 01387319 a 0000 & 01387902 a 0000 & 01388062 a 0000 & 01388228 a 0000 & 01388327 a 0000 & 01388418 a 0000 & 01388542 a 0000 & 01388655 a 0000 & 01388809 a 0000 & 01388928 a 0000 & 01389022 a 0000 & 01389170 a 0000 & 01389451 a 0000 & 01389634 a 0000 & 01389738 a 0000 & 01389846 a 0000 & 01389993 a 0000 & 01390130 a 0000 & 01390215 a 0000 & 01390344 a 0000 & 01390487 a 0000 & 01390588 a 0000 & 01390683 a 0000 & 01390778 a 0000 & 01390900 a 0000 & 01391074 a 0000 & 01391237 a 0000 | above average in size or number or quantity or magnitude or extent; "a large city"; "set out for the big city"; "a large sum"; "a big (or large) barn"; "a large family"; "big businesses"; "a big expenditure"; "a large number of newspapers"; "a big group of scientists"; "large areas of the world" -01383394 00 s 03 ample 0 sizable 0 sizeable 0 003 & 01382086 a 0000 + 05104548 n 0306 + 05104256 n 0101 | fairly large; "a sizable fortune"; "an ample waistline"; "of ample proportions" -01383582 00 s 03 astronomic 0 astronomical 0 galactic 0 001 & 01382086 a 0000 | inconceivably large -01383684 00 s 01 bear-sized 0 001 & 01382086 a 0000 | large as a bear -01383756 00 s 02 bigger 0 larger 0 001 & 01382086 a 0000 | large or big relative to something else -01383857 00 s 02 biggish 0 largish 0 001 & 01382086 a 0000 | somewhat large -01383935 00 s 02 blown-up 0 enlarged 0 001 & 01382086 a 0000 | as of a photograph; made larger; "the enlarged photograph revealed many details" -01384081 00 s 02 bouffant 0 puffy 0 001 & 01382086 a 0000 | being puffed out; used of hair style or clothing; "a bouffant skirt" -01384212 00 s 03 broad 0 spacious 0 wide 0 004 & 01382086 a 0000 + 05104548 n 0308 + 05105265 n 0203 + 05136343 n 0102 | very large in expanse or scope; "a broad lawn"; "the wide plains"; "a spacious view"; "spacious skies" -01384438 00 s 01 bulky 0 004 & 01382086 a 0000 + 05025413 n 0101 + 05099389 n 0101 + 05104421 n 0101 | of large size for its weight -01384572 00 s 01 capacious 0 004 & 01382086 a 0000 + 13755053 n 0101 + 13779374 n 0101 + 05105265 n 0101 | large in capacity; "she carried a capacious bag" -01384730 00 s 03 colossal 1 prodigious 0 stupendous 0 003 & 01382086 a 0000 + 05939244 n 0201 + 10128909 n 0105 | so great in size or force or extent as to elicit awe; "colossal crumbling ruins of an ancient temple"; "has a colossal nerve"; "a prodigious storm"; "a stupendous field of grass"; "stupendous demand" -01385046 00 s 01 deep 0 001 & 01382086 a 0000 | large in quantity or size; "deep cuts in the budget" -01385149 00 s 01 double 0 001 & 01382086 a 0000 | large enough for two; "a double bed"; "a double room" -01385255 00 s 02 enormous 0 tremendous 0 003 & 01382086 a 0000 + 05104548 n 0101 + 05105009 n 0101 | extraordinarily large in size or extent or amount or power or degree; "an enormous boulder"; "enormous expenses"; "tremendous sweeping plains"; "a tremendous fact in human experience; that a whole civilization should be dependent on technology"- Walter Lippman; "a plane took off with a tremendous noise" -01385663 00 s 01 cosmic 0 002 & 01382086 a 0000 + 09466280 n 0105 | inconceivably extended in space or time -01385773 00 s 04 elephantine 0 gargantuan 0 giant 0 jumbo 0 006 & 01382086 a 0000 + 10129133 n 0301 + 09488711 n 0301 + 10128909 n 0301 + 01323781 n 0301 + 09488448 n 0201 | of great mass; huge and bulky; "a jumbo jet"; "jumbo shrimp" -01386010 00 s 03 epic 0 heroic 0 larger-than-life 0 001 & 01382086 a 0000 | very imposing or impressive; surpassing the ordinary (especially in size or scale); "an epic voyage"; "of heroic proportions"; "heroic sculpture" -01386234 00 s 02 extensive 0 extended 0 003 & 01382086 a 0000 + 05106317 n 0102 + 00540235 v 0103 | large in spatial extent or range or scope or quantity; "an extensive Roman settlement in northwest England"; "extended farm lands"; "surgeons with extended experience"; "they suffered extensive damage" -01386538 00 s 02 gigantic 1 mammoth 1 007 & 01382086 a 0000 + 02504770 n 0201 + 10129133 n 0101 + 09488711 n 0101 + 10128909 n 0101 + 08056471 n 0101 + 01323781 n 0101 | so exceedingly large or extensive as to suggest a giant or mammoth; "a gigantic redwood"; "gigantic disappointment"; "a mammoth ship"; "a mammoth multinational corporation" -01386883 00 s 01 great 1 002 & 01382086 a 0000 + 05104548 n 0103 | relatively large in size or number or extent; larger than others of its kind; "a great juicy steak"; "a great multitude"; "the great auk"; "a great old oak"; "a great ocean liner"; "a great delay" -01387149 00 s 01 grand 0 003 & 01382086 a 0000 + 04729328 n 0102 + 05104548 n 0102 | large and impressive in physical size or extent; "the bridge is a grand structure" -01387319 00 s 04 huge 1 immense 1 vast 0 Brobdingnagian 0 004 & 01382086 a 0000 + 05104548 n 0307 + 05104548 n 0204 + 05104548 n 0205 | unusually great in size or amount or degree or especially extent or scope; "huge government spending"; "huge country estates"; "huge popular demand for higher education"; "a huge wave"; "the Los Angeles aqueduct winds like an immense snake along the base of the mountains"; "immense numbers of birds"; "at vast (or immense) expense"; "the vast reaches of outer space"; "the vast accumulation of knowledge...which we call civilization"- W.R.Inge -01387902 00 s 02 hulking 0 hulky 0 002 & 01382086 a 0000 + 10129133 n 0202 | of great size and bulk; "a hulking figure of a man"; "three hulking battleships" -01388062 00 s 05 humongous 0 banging 0 thumping 0 whopping 0 walloping 0 002 & 01382086 a 0000 ;u 07075172 n 0000 | (used informally) very large; "a thumping loss" -01388228 00 s 02 king-size 0 king-sized 0 001 & 01382086 a 0000 | extra large; "a king-size bed" -01388327 00 s 01 large-mouthed 0 001 & 01382086 a 0000 | having a relatively large mouth -01388418 00 s 01 large-scale 0 001 & 01382086 a 0000 | unusually large in scope; "a large-scale attack on AIDS is needed" -01388542 00 s 01 large-scale 2 001 & 01382086 a 0000 | constructed or drawn to a big scale; "large-scale maps" -01388655 00 s 04 life-size 0 lifesize 0 life-sized 0 full-size 0 001 & 01382086 a 0000 | being of the same size as an original; "a life-size sculpture" -01388809 00 s 02 macroscopic 0 macroscopical 0 001 & 01382086 a 0000 | large enough to be visible with the naked eye -01388928 00 s 01 macro 0 001 & 01382086 a 0000 | very large in scale or scope or capability -01389022 00 s 01 man-sized 0 002 & 01382086 a 0000 ;u 07075172 n 0000 | very large; appropriate to the size of a man; "a man-sized piece of cake" -01389170 00 s 03 massive 0 monolithic 0 monumental 0 003 & 01382086 a 0000 + 05027837 n 0103 + 05104421 n 0102 | imposing in size or bulk or solidity; "massive oak doors"; "Moore's massive sculptures"; "the monolithic proportions of Stalinist architecture"; "a monumental scale" -01389451 00 s 01 massive 2 001 & 01382086 a 0000 | imposing in scale or scope or degree or power; "massive retaliatory power"; "a massive increase in oil prices"; "massive changes" -01389634 00 s 01 medium-large 0 001 & 01382086 a 0000 | of anything that is large but not the largest -01389738 00 s 01 monstrous 0 003 & 01382086 a 0000 + 10128909 n 0104 + 10109443 n 0103 | abnormally large -01389846 00 s 01 mountainous 0 001 & 01382086 a 0000 | like a mountain in size and impressiveness; "mountainous waves"; "a mountainous dark man" -01389993 00 s 04 outsize 0 outsized 0 oversize 0 oversized 0 002 & 01382086 a 0000 + 05096577 n 0101 | larger than normal for its kind -01390130 00 s 02 overlarge 0 too_large 0 001 & 01382086 a 0000 | excessively large -01390215 00 s 01 plumping 0 001 & 01382086 a 0000 | very large; of exceptional size for its kind; "won by a plumping majority" -01390344 00 s 02 queen-size 0 queen-sized 0 001 & 01382086 a 0000 | (used especially of beds) not as large as king-size; "a queen-sized bed" -01390487 00 s 01 rangy 0 002 & 01382086 a 0000 + 08629199 n 0101 | allowing ample room for ranging -01390588 00 s 01 super 0 001 & 01382086 a 0000 | extremely large; "another super skyscraper" -01390683 00 s 01 titanic 0 002 & 01382086 a 0000 + 09938991 n 0105 | of great force or power -01390778 00 s 01 volumed 0 001 & 01382086 a 0000 | formed or rising in rounded masses; "gasping with the volumed smoke" -01390900 00 s 01 voluminous 0 005 & 01382086 a 0000 + 05106024 n 0103 + 13779032 n 0101 + 05099389 n 0103 + 05106024 n 0102 | large in volume or bulk; "a voluminous skirt" -01391074 00 s 01 whacking 0 003 & 01382086 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) enormous; "a whacking phone bill"; "a whacking lie" -01391237 00 s 01 wide-ranging 0 001 & 01382086 a 0000 | including much; "the pianist's wide-ranging repertoire" -01391351 00 a 02 small 0 little 1 029 = 05098942 n 0000 + 05106633 n 0202 ! 01382086 a 0202 + 05110583 n 0101 + 05106633 n 0101 ! 01382086 a 0101 & 01392071 a 0000 & 01392160 a 0000 & 01392249 a 0000 & 01392633 a 0000 & 01392896 a 0000 & 01393024 a 0000 & 01393141 a 0000 & 01393311 a 0000 & 01393397 a 0000 & 01393483 a 0000 & 01393681 a 0000 & 01393822 a 0000 & 01393976 a 0000 & 01394075 a 0000 & 01394180 a 0000 & 01394316 a 0000 & 01394400 a 0000 & 01394558 a 0000 & 01394744 a 0000 & 01394922 a 0000 & 01395028 a 0000 & 01395095 a 0000 & 01395229 a 0000 | limited or below average in number or quantity or magnitude or extent; "a little dining room"; "a little house"; "a small car"; "a little (or small) group" -01392071 00 s 01 atomic 0 002 & 01391351 a 0000 + 14585519 n 0101 | immeasurably small -01392160 00 s 01 subatomic 0 001 & 01391351 a 0000 | of smaller than atomic dimensions -01392249 00 s 07 bantam 0 diminutive 0 lilliputian 0 midget 0 petite 0 tiny 0 flyspeck 0 007 & 01391351 a 0000 + 05106928 n 0604 + 05096708 n 0501 + 05106928 n 0503 + 10262880 n 0301 + 06290246 n 0201 + 05106928 n 0201 | very small; "diminutive in stature"; "a lilliputian chest of drawers"; "her petite figure"; "tiny feet"; "the flyspeck nation of Bahrain moved toward democracy" -01392633 00 s 0c bitty 0 bittie 0 teensy 0 teentsy 0 teeny 0 wee 0 weeny 0 weensy 0 teensy-weensy 0 teeny-weeny 0 itty-bitty 0 itsy-bitsy 0 004 & 01391351 a 0000 ;u 07075172 n 0000 + 05106928 n 0605 + 13761407 n 0102 | (used informally) very small; "a wee tot" -01392896 00 s 01 dinky 0 002 & 01391351 a 0000 ;u 07075172 n 0000 | small and insignificant; "we stayed in a dinky old hotel" -01393024 00 s 01 dwarfish 0 002 & 01391351 a 0000 + 05107668 n 0101 | atypically small; "dwarf tree"; "dwarf star" -01393141 00 s 02 elfin 0 elflike 0 001 & 01391351 a 0000 | small and delicate; "she was an elfin creature--graceful and delicate"; "obsessed by things elfin and small" -01393311 00 s 01 gnomish 0 001 & 01391351 a 0000 | used of small deformed creatures -01393397 00 s 01 half-size 0 001 & 01391351 a 0000 | half the usual or regular size -01393483 00 s 02 infinitesimal 0 minute 0 002 & 01391351 a 0000 + 05106928 n 0202 | infinitely or immeasurably small; "two minute whiplike threads of protoplasm"; "reduced to a microscopic scale" -01393681 00 s 01 lesser 0 001 & 01391351 a 0000 | smaller in size or amount or value; "the lesser powers of Europe"; "the lesser anteater" -01393822 00 s 02 microscopic 0 microscopical 0 001 & 01391351 a 0000 | so small as to be invisible without a microscope; "differences were microscopic" -01393976 00 s 01 micro 0 001 & 01391351 a 0000 | extremely small in scale or scope or capability -01394075 00 s 01 miniature 0 001 & 01391351 a 0000 | being on a very small scale; "a miniature camera" -01394180 00 s 02 minuscule 0 miniscule 0 001 & 01391351 a 0000 | very small; "a minuscule kitchen"; "a minuscule amount of rain fell" -01394316 00 s 01 olive-sized 0 001 & 01391351 a 0000 | about the size of an olive -01394400 00 s 03 pocket-size 0 pocket-sized 0 pocketable 0 001 & 01391351 a 0000 | small enough to be carried in a garment pocket; "pocket-size paperbacks" -01394558 00 s 03 puny 0 runty 0 shrimpy 0 005 & 01391351 a 0000 + 10543544 n 0302 + 10543544 n 0201 + 05107495 n 0202 + 05107495 n 0101 | (used especially of persons) of inferior size -01394744 00 s 02 slender 0 slim 0 003 & 01391351 a 0000 + 05121095 n 0203 + 05117406 n 0101 | small in quantity; "slender wages"; "a slim chance of winning"; "a small surplus" -01394922 00 s 02 smaller 0 littler 0 001 & 01391351 a 0000 | small or little relative to something else -01395028 00 s 01 smallish 0 001 & 01391351 a 0000 | rather small -01395095 00 s 01 small-scale 0 001 & 01391351 a 0000 | created or drawn on a small scale; "small-scale maps"; "a small-scale model" -01395229 00 s 02 undersize 0 undersized 0 001 & 01391351 a 0000 | smaller than normal for its kind -01395330 00 a 01 greater 0 001 ! 01395488 a 0101 | greater in size or importance or degree; "for the greater good of the community"; "the greater Antilles" -01395488 00 a 01 lesser 0 001 ! 01395330 a 0101 | of less size or importance; "the lesser anteater"; "the lesser of two evils" -01395617 00 a 01 lawful 0 006 ^ 01400562 a 0000 ^ 02318464 a 0000 = 04809784 n 0000 + 04809784 n 0101 ! 01396047 a 0101 & 01395821 a 0000 | conformable to or allowed by law; "lawful methods of dissent" -01395821 00 s 02 law-abiding 0 observant 0 003 & 01395617 a 0000 + 01204419 n 0202 + 02578510 v 0201 | (of individuals) adhering strictly to laws and rules and customs; "law-abiding citizens"; "observant of the speed limit" -01396047 00 a 01 unlawful 0 008 ^ 02319129 a 0000 ^ 01401854 a 0000 = 04809784 n 0000 + 04810865 n 0101 ! 01395617 a 0101 & 01396333 a 0000 & 01396503 a 0000 & 01396628 a 0000 | contrary to or prohibited by or defiant of law; "unlawful measures"; "unlawful money"; "unlawful hunters" -01396333 00 s 02 lawless 0 outlaw(a) 0 003 & 01396047 a 0000 + 09977660 n 0204 + 04811126 n 0101 | disobedient to or defiant of law; "lawless bands roaming the plains" -01396503 00 s 02 wide-open 0 lawless 2 002 & 01396047 a 0000 + 13973059 n 0202 | lax in enforcing laws; "a wide-open town" -01396628 00 s 01 wrongful 0 002 & 01396047 a 0000 + 04854604 n 0102 | unlawfully violating the rights of others; "wrongful death"; "a wrongful diversion of trust income" -01396800 00 a 01 leaded 0 002 ! 01397125 a 0101 & 01396931 a 0000 | treated or mixed with lead; "leaded gasoline"; "leaded zinc" -01396931 00 s 02 antiknock 0 antiknocking 0 002 & 01396800 a 0000 + 14585223 n 0101 | suppressing or eliminating engine knock in combustion engines; "antiknock properties"; "antiknock rating" -01397125 00 a 02 unleaded 0 leadless 0 002 ! 01396800 a 0101 & 01397251 a 0000 | not treated with lead; "unleaded gasoline" -01397251 00 s 02 lead-free 0 nonleaded 0 001 & 01397125 a 0000 | (of gasoline) not containing tetraethyl lead; "lead-free gasoline" -01397385 00 a 01 leaky 0 009 ^ 01772032 a 0000 ^ 02088086 a 0000 + 07436661 n 0102 + 14577872 n 0101 ! 01398199 a 0101 & 01397674 a 0000 & 01397786 a 0000 & 01397892 a 0000 & 01397998 a 0000 | permitting the unwanted passage of fluids or gases ; "a leaky roof"; "a leaky defense system" -01397674 00 s 02 drafty 0 draughty 0 003 & 01397385 a 0000 + 11522448 n 0202 + 11522448 n 0101 | not airtight -01397786 00 s 01 drippy 0 002 & 01397385 a 0000 + 07432559 n 0101 | leaking in drops; "a drippy faucet" -01397892 00 s 03 oozing 0 oozy 0 seeping 0 002 & 01397385 a 0000 + 07432119 n 0202 | leaking out slowly -01397998 00 s 02 holey 0 porous 0 003 & 01397385 a 0000 + 13912115 n 0201 + 09304465 n 0101 | allowing passage in and out; "our unfenced and largely unpoliced border inevitably has been very porous" -01398199 00 a 01 tight 2 011 ^ 01772609 a 0000 ^ 02087956 a 0000 ^ 01447302 a 0000 ! 01397385 a 0101 & 01398528 a 0000 & 01398648 a 0000 & 01398772 a 0000 & 01398865 a 0000 & 01398941 a 0000 & 01399096 a 0000 & 01399235 a 0000 | of such close construction as to be impermeable; "a tight roof"; "warm in our tight little house" -01398528 00 s 03 airtight 0 air-tight 0 gas-tight 0 001 & 01398199 a 0000 | not allowing air or gas to pass in or out -01398648 00 s 01 dripless 0 001 & 01398199 a 0000 | designed to prevent dripping; "a dripless faucet"; "dripless candles" -01398772 00 s 01 hermetic 0 001 & 01398199 a 0000 | completely sealed; completely airtight -01398865 00 s 01 leakproof 0 001 & 01398199 a 0000 | not subject to leaks -01398941 00 s 03 rainproof 0 waterproof 0 waterproofed 0 003 & 01398199 a 0000 + 04561734 n 0201 + 04049405 n 0202 | not permitting the passage of water -01399096 00 s 01 snug 0 002 & 01398199 a 0000 + 03144365 n 0104 | well and tightly constructed; "a snug house"; "a snug little sailboat" -01399235 00 s 01 watertight 0 001 & 01398199 a 0000 | not allowing water to pass in or out -01399328 00 a 01 caulked 0 003 ! 01399671 a 0101 & 01399469 a 0000 & 01399564 a 0000 | having cracks and crevices stopped up with a filler -01399469 00 s 02 chinked 0 stopped-up 0 001 & 01399328 a 0000 | having narrow opening filled -01399564 00 s 01 weather-stripped 0 001 & 01399328 a 0000 | having cracks blocked with weather stripping -01399671 00 a 01 uncaulked 0 001 ! 01399328 a 0101 | not caulked or sealed -01399748 00 a 01 leavened 0 001 ! 01399949 a 0101 | made light by aerating, as with yeast or baking powder; often used as a combining form; "leavened bread"; "well-leavened"; "yeast-leavened breads" -01399949 00 a 02 unleavened 0 unraised 0 001 ! 01399748 a 0101 | made without leavening; "unleavened bread is often simply flour mixed with water" -01400098 00 a 01 leeward 0 002 ! 01400336 a 0101 & 01400237 a 0000 | on the side away from the wind; "on the leeward side of the island" -01400237 00 s 02 downwind 0 lee(a) 0 001 & 01400098 a 0000 | towards the side away from the wind -01400336 00 a 01 windward 0 002 ! 01400098 a 0101 & 01400464 a 0000 | on the side exposed to the wind; "the windward islands" -01400464 00 s 02 upwind 0 weather(a) 0 001 & 01400336 a 0000 | towards the side exposed to wind -01400562 00 a 01 legal 0 012 ^ 01395617 a 0000 ^ 01406640 a 0000 = 04809237 n 0000 + 04809237 n 0101 ! 01401854 a 0101 & 01400876 a 0000 & 01400961 a 0000 & 01401105 a 0000 & 01401224 a 0000 & 01401413 a 0000 & 01401532 a 0000 & 01401734 a 0000 | established by or founded upon law or official or accepted rules -01400876 00 s 01 court-ordered 0 001 & 01400562 a 0000 | ordered by a court of law -01400961 00 s 01 judicial 0 002 & 01400562 a 0000 + 10225219 n 0101 | decreed by or proceeding from a court of justice; "a judicial decision" -01401105 00 s 02 jural 0 juristic 0 001 & 01400562 a 0000 | of or relating to law or to legal rights and obligations -01401224 00 s 03 lawful 0 legitimate 0 licit 0 003 & 01400562 a 0000 + 04810194 n 0301 + 04809784 n 0101 | authorized, sanctioned by, or in accordance with law; "a legitimate government" -01401413 00 s 02 ratified 0 sanctioned 0 001 & 01400562 a 0000 | formally approved and invested with legal authority -01401532 00 s 01 statutory 0 001 & 01400562 a 0000 | prescribed or authorized by or punishable under a statute; "statutory restrictions"; "a statutory age limit"; "statutory crimes"; "statutory rape" -01401734 00 s 01 sub_judice 0 001 & 01400562 a 0000 | before a judge or court of law; awaiting judicial determination -01401854 00 a 01 illegal 0 021 ^ 01407465 a 0000 ^ 01960656 a 0000 ^ 01396047 a 0000 = 04809237 n 0000 + 04810327 n 0101 ! 01400562 a 0101 & 01402343 a 0000 & 01402498 a 0000 & 01402580 a 0000 & 01402763 a 0000 & 01403012 a 0000 & 01403151 a 0000 & 01403316 a 0000 & 01403469 a 0000 & 01403632 a 0000 & 01403760 a 0000 & 01404042 a 0000 & 01404195 a 0000 & 01404370 a 0000 & 01404482 a 0000 & 01404582 a 0000 | prohibited by law or by official or accepted rules; "an illegal chess move" -01402343 00 s 01 amerciable 0 003 & 01401854 a 0000 + 02498987 v 0101 + 02500265 v 0101 | of a crime or misdemeanor; punishable by a fine set by a judge -01402498 00 s 02 banned 0 prohibited 0 001 & 01401854 a 0000 | forbidden by law -01402580 00 s 05 bootleg 0 black 0 black-market 0 contraband 0 smuggled 0 002 & 01401854 a 0000 + 03096273 n 0401 | distributed or sold illicitly; "the black economy pays no taxes" -01402763 00 s 02 criminal 0 felonious 0 005 & 01401854 a 0000 + 00768701 n 0201 + 00767477 n 0101 + 00766234 n 0101 + 13991346 n 0103 | involving or being or having the nature of a crime; "a criminal offense"; "criminal abuse"; "felonious intent" -01403012 00 s 02 dirty 0 ill-gotten 0 001 & 01401854 a 0000 | obtained illegally or by improper means; "dirty money"; "ill-gotten gains" -01403151 00 s 02 embezzled 0 misappropriated 0 001 & 01401854 a 0000 | taken for your own use in violation of a trust; "the banker absconded with embezzled funds" -01403316 00 s 01 extrajudicial 0 001 & 01401854 a 0000 | beyond the usual course of legal proceedings; legally unwarranted; "an extrajudicial penalty" -01403469 00 s 02 extralegal 0 nonlegal 0 001 & 01401854 a 0000 | not regulated or sanctioned by law; "there were only extralegal recourses for their grievances" -01403632 00 s 01 hot 0 002 & 01401854 a 0000 ;u 07075172 n 0000 | recently stolen or smuggled; "hot merchandise"; "a hot car" -01403760 00 s 05 illegitimate 0 illicit 0 outlaw(a) 0 outlawed 0 unlawful 0 004 & 01401854 a 0000 + 04810865 n 0501 + 09977660 n 0304 + 04811628 n 0201 | contrary to or forbidden by law; "an illegitimate seizure of power"; "illicit trade"; "an outlaw strike"; "unlawful measures" -01404042 00 s 01 ineligible 0 003 & 01401854 a 0000 ;c 00523513 n 0000 + 04718134 n 0101 | prohibited by official rules; "an ineligible pass receiver" -01404195 00 s 02 misbranded 0 mislabeled 0 001 & 01401854 a 0000 | branded or labeled falsely and in violation of statutory requirements; "confiscated the misbranded drugs" -01404370 00 s 02 penal 0 punishable 0 001 & 01401854 a 0000 | subject to punishment by law; "a penal offense" -01404482 00 s 01 under-the-counter 0 001 & 01401854 a 0000 | done or sold illicitly and secretly; -01404582 00 s 01 unratified 0 001 & 01401854 a 0000 | lacking legal authority; "the unratified Equal Right Amendment" -01404702 00 a 01 legible 0 004 + 04819285 n 0101 ! 01405214 a 0101 & 01404898 a 0000 & 01405047 a 0000 | (of handwriting, print, etc.) capable of being read or deciphered; "legible handwriting" -01404898 00 s 02 clean 0 fair 0 001 & 01404702 a 0000 | (of a manuscript) having few alterations or corrections; "fair copy"; "a clean manuscript" -01405047 00 s 03 clear 0 decipherable 0 readable 0 005 & 01404702 a 0000 + 04819285 n 0302 + 04819953 n 0301 + 04820258 n 0101 + 04820258 n 0105 | easily deciphered -01405214 00 a 01 illegible 0 004 + 04822685 n 0101 ! 01404702 a 0101 & 01405390 a 0000 & 01405523 a 0000 | (of handwriting, print, etc.) not legible; "illegible handwriting" -01405390 00 s 03 dirty 0 foul 0 marked-up 0 001 & 01405214 a 0000 | (of a manuscript) defaced with changes; "foul (or dirty) copy" -01405523 00 s 04 indecipherable 0 unclear 0 undecipherable 0 unreadable 0 002 & 01405214 a 0000 + 04823866 n 0201 | not easily deciphered; "indecipherable handwriting" -01405693 00 a 01 deciphered 0 001 ! 01405797 a 0101 | converted from cryptic to intelligible language -01405797 00 a 01 undeciphered 0 001 ! 01405693 a 0101 | not deciphered; "Linear A is still undeciphered" -01405904 00 a 01 biological 0 003 ! 01406263 a 0101 & 01406058 a 0000 & 01406180 a 0000 | of parents and children; related by blood; "biological child" -01406058 00 s 01 begotten 0 001 & 01405904 a 0000 | (of offspring) generated by procreation; "naturally begotten child" -01406180 00 s 01 natural 0 001 & 01405904 a 0000 | related by blood; not adopted -01406263 00 a 01 adoptive 0 003 + 00413195 v 0101 ! 01405904 a 0101 & 01406418 a 0000 | of parents and children; related by adoption; "adoptive parents" -01406418 00 s 02 foster 0 surrogate 0 001 & 01406263 a 0000 | providing or receiving nurture or parental care though not related by blood or legal ties; "foster parent"; "foster child"; "foster home"; "surrogate father" -01406640 00 a 01 legitimate 0 007 ^ 00178575 a 0000 ^ 01400562 a 0000 ^ 02498708 a 0000 ! 01407465 a 0101 & 01406853 a 0000 & 01406961 a 0000 & 01407267 a 0000 | of marriages and offspring; recognized as lawful -01406853 00 s 01 lawfully-begotten 0 001 & 01406640 a 0000 | born in wedlock; enjoying full filial rights -01406961 00 s 02 morganatic 0 left-handed 1 001 & 01406640 a 0000 | (of marriages) of a marriage between one of royal or noble birth and one of lower rank; valid but with the understanding that the rank of the inferior remains unchanged and offspring do not succeed to titles or property of the superior -01407267 00 s 03 true(a) 0 lawful 0 rightful(a) 0 003 & 01406640 a 0000 + 04850341 n 0302 + 04809784 n 0201 | having a legally established claim; "the legitimate heir"; "the true and lawful king" -01407465 00 a 01 illegitimate 0 010 ^ 01401854 a 0000 ^ 02499750 a 0000 ^ 00179486 a 0000 ! 01406640 a 0101 & 01407738 a 0000 & 01407816 a 0000 & 01407909 a 0000 & 01408135 a 0000 & 01408240 a 0000 & 01408421 a 0000 | of marriages and offspring; not recognized as lawful -01407738 00 s 01 adulterine 0 001 & 01407465 a 0000 | conceived in adultery -01407816 00 s 02 base 0 baseborn 0 002 & 01407465 a 0000 ;u 07073447 n 0000 | illegitimate -01407909 00 s 04 bastardly 0 misbegot 0 misbegotten 0 spurious 0 002 & 01407465 a 0000 + 09842823 n 0101 | born out of wedlock; "the dominions of both rulers passed away to their spurious or doubtful offspring"- E.A.Freeman -01408135 00 s 01 fatherless 0 001 & 01407465 a 0000 | not having a known or legally responsible father -01408240 00 s 01 left-handed 2 001 & 01407465 a 0000 | (of marriages) illicit or informal; "in Colonial America left-handed marriages between Frenchmen and Indians were frequent" -01408421 00 s 02 unlawful 0 wrongful 0 003 & 01407465 a 0000 + 04854604 n 0202 + 04810865 n 0101 | having no legally established claim; "the wrongful heir to the throne" -01408593 00 a 04 leptorrhine 0 leptorhine 0 leptorrhinian 0 leptorrhinic 0 002 ! 01408738 a 0101 ! 01408929 a 0101 | having a long narrow nose -01408738 00 a 02 catarrhine 0 catarrhinian 0 003 + 02484473 n 0202 ! 01408593 a 0101 ! 01408929 a 0101 | of or related to Old World monkeys that have nostrils together and opening downward -01408929 00 a 06 platyrrhine 0 platyrrhinian 0 platyrhine 0 platyrhinian 0 platyrrhinic 0 broadnosed 0 005 + 02489589 n 0502 + 02489589 n 0402 + 02489589 n 0202 ! 01408738 a 0101 ! 01408593 a 0101 | of or related to New World monkeys having nostrils far apart or to people with broad noses -01409221 00 a 01 leptosporangiate 0 001 ! 01409379 a 0101 | (of ferns) having each sporangium formed from a single epidermal cell; "leptosporangiate ferns" -01409379 00 a 01 eusporangiate 0 001 ! 01409221 a 0101 | (of ferns) having sporangia that arise from a group of epidermal cells; "eusporangiate ferns of the families Ophioglossaceae and Marattiaceae" -01409581 00 a 02 like 0 similar 2 007 ^ 02062670 a 0000 + 04743605 n 0201 + 04744814 n 0101 ! 01410363 a 0101 & 01410036 a 0000 & 01410118 a 0000 & 01410222 a 0000 | resembling or similar; having the same or some of the same characteristics; often used in combination; "suits of like design"; "a limited circle of like minds"; "members of the cat family have like dispositions"; "as like as two peas in a pod"; "doglike devotion"; "a dreamlike quality" -01410036 00 s 01 like-minded 0 001 & 01409581 a 0000 | of the same turn of mind -01410118 00 s 01 look-alike 0 001 & 01409581 a 0000 | resembling closely; "they have look-alike cars" -01410222 00 s 01 suchlike 0 001 & 01409581 a 0000 | of the same kind; "a locker that usually contained paper, ink, and suchlike equipment" -01410363 00 a 03 unlike 0 dissimilar 2 different 2 005 + 04748836 n 0301 + 02666239 v 0301 + 04750164 n 0201 + 04750764 n 0101 ! 01409581 a 0101 | marked by dissimilarity; "for twins they are very unlike"; "people are profoundly different" -01410606 00 a 03 alike(p) 0 similar 4 like 4 005 = 04744814 n 0000 + 04744814 n 0301 + 04743605 n 0201 + 04744814 n 0102 ! 01410905 a 0101 | having the same or similar characteristics; "all politicians are alike"; "they looked utterly alike"; "friends are generally alike in background and taste" -01410905 00 a 02 unalike 0 dissimilar 4 003 = 04744814 n 0000 + 04750164 n 0201 ! 01410606 a 0101 | not alike or similar; "as unalike as two people could be" -01411065 00 a 02 like 2 same 4 002 ^ 00889831 a 0000 ! 01411291 a 0101 | equal in amount or value; "like amounts"; "equivalent amounts"; "the same amount"; "gave one six blows and the other a like number"; "the same number" -01411291 00 a 01 unlike 2 002 ^ 00892379 a 0000 ! 01411065 a 0101 | not equal in amount; "they distributed unlike (or unequal) sums to the various charities" -01411451 00 a 01 likely 0 007 ^ 01821266 a 0000 = 04756635 n 0000 + 04756635 n 0102 ! 01412415 a 0101 & 01411919 a 0000 & 01412134 a 0000 & 01412286 a 0000 | has a good chance of being the case or of coming about; "these services are likely to be available to us all before long"; "she is likely to forget"; "a likely place for a restaurant"; "the broken limb is likely to fall"; "rain is likely"; "a likely topic for investigation"; "likely candidates for the job" -01411919 00 s 02 apt(p) 0 liable(p) 0 003 & 01411451 a 0000 + 05161436 n 0201 + 04943154 n 0101 | at risk of or subject to experiencing something usually unpleasant; "he is apt to lose"; "she is liable to forget" -01412134 00 s 01 probable 0 002 & 01411451 a 0000 + 04756172 n 0101 | apparently destined; "the probable consequences of going ahead with the scheme" -01412286 00 s 01 promising 0 001 & 01411451 a 0000 | showing possibility of achievement or excellence; "a promising young man" -01412415 00 a 01 unlikely 0 006 = 04756635 n 0000 + 04758776 n 0102 ! 01411451 a 0101 & 01412721 a 0000 & 01412912 a 0000 & 01413084 a 0000 | has little chance of being the case or coming about; "an unlikely story"; "an unlikely candidate for reelection"; "a butcher is unlikely to preach vegetarianism" -01412721 00 s 02 farfetched 0 implausible 0 003 & 01412415 a 0000 + 04784322 n 0202 + 04784322 n 0201 | highly imaginative but unlikely; "a farfetched excuse"; "an implausible explanation" -01412912 00 s 01 last 0 001 & 01412415 a 0000 | most unlikely or unsuitable; "the last person we would have suspected"; "the last man they would have chosen for the job" -01413084 00 s 02 outside 0 remote 0 002 & 01412415 a 0000 + 05085165 n 0202 | very unlikely; "an outside chance"; "a remote possibility"; "a remote contingency" -01413247 00 a 02 probable 0 likely 4 006 + 04756635 n 0202 + 05091770 n 0101 ! 01413871 a 0101 & 01413501 a 0000 & 01413576 a 0000 & 01413763 a 0000 | likely but not certain to be or become true or real; "a likely result"; "he foresaw a probable loss" -01413501 00 s 01 equiprobable 0 001 & 01413247 a 0000 | equally probable -01413576 00 s 01 presumptive 0 003 & 01413247 a 0000 + 01015677 v 0101 + 00632236 v 0102 | having a reasonable basis for belief or acceptance; "the presumptive heir (or heir apparent)" -01413763 00 s 01 verisimilar 0 001 & 01413247 a 0000 | appearing to be true or real; "a verisimilar tale" -01413871 00 a 02 improbable 0 unlikely 4 005 + 04758776 n 0202 + 04758452 n 0102 + 04758452 n 0101 ! 01413247 a 0101 & 01414137 a 0000 | not likely to be true or to occur or to have occurred; "legislation on the question is highly unlikely"; "an improbable event" -01414137 00 s 01 supposed(a) 2 001 & 01413871 a 0000 | mistakenly believed; "the supposed existence of ghosts" -01414250 00 a 01 limbed 0 005 ! 01414817 a 0101 & 01414488 a 0000 & 01414566 a 0000 & 01414663 a 0000 & 01414740 a 0000 | having or as if having limbs, especially limbs of a specified kind (usually used in combination); "strong-limbed" -01414488 00 s 01 boughed 4 001 & 01414250 a 0000 | having boughs (of trees) -01414566 00 s 01 flipper-like 0 001 & 01414250 a 0000 | having limbs that are used as flippers -01414663 00 s 01 heavy-limbed 0 001 & 01414250 a 0000 | having heavy limbs -01414740 00 s 01 sharp-limbed 0 001 & 01414250 a 0000 | having sharp limbs -01414817 00 a 01 limbless 0 002 ! 01414250 a 0101 & 01414938 a 0000 | having no limbs; "a snake is a limbless reptile" -01414938 00 s 01 boughless 4 001 & 01414817 a 0000 | having no boughs (of trees) -01415021 00 a 01 limited 0 004 ^ 02561888 a 0000 ! 01415605 a 0101 & 01415219 a 0000 & 01415480 a 0000 | small in range or scope; "limited war"; "a limited success"; "a limited circle of friends" -01415219 00 s 06 minor 0 modest 0 small 0 small-scale 0 pocket-size 0 pocket-sized 0 002 & 01415021 a 0000 + 05106633 n 0301 | limited in size or scope; "a small business"; "a newspaper with a modest circulation"; "small-scale plans"; "a pocket-size country" -01415480 00 s 01 narrow 0 002 & 01415021 a 0000 + 05846626 n 0101 | limited in size or scope; "the narrow sense of a word" -01415605 00 a 02 unlimited 0 limitless 4 005 + 05209324 n 0205 ! 01415021 a 0101 & 01415917 a 0000 & 01416081 a 0000 & 01416255 a 0000 | having no limits in range or scope; "to start with a theory of unlimited freedom is to end up with unlimited despotism"- Philip Rahv; "the limitless reaches of outer space" -01415917 00 s 01 bottomless 0 002 & 01415605 a 0000 + 05135582 n 0101 | having no apparent limits or bounds; "a bottomless supply of money"; "bottomless pockets" -01416081 00 s 01 oceanic 0 002 & 01415605 a 0000 + 13776971 n 0101 | resembling the ocean in apparent limitlessness in extent or degree; "the oceanic violence of his rage" -01416255 00 s 02 untrammeled 0 untrammelled 0 001 & 01415605 a 0000 | not confined or limited; "the gift of a fresh eye and an untrammeled curiosity"- Russell Lord; "the untrammeled rush that the snows had shown in the first spring sun"- Farley Mowat -01416508 00 a 02 lineal 0 direct 4 006 ^ 01971237 a 0000 + 08101937 n 0102 ! 01417228 a 0101 & 01416809 a 0000 & 01416959 a 0000 & 01417105 a 0000 | in a straight unbroken line of descent from parent to child; "lineal ancestors"; "lineal heirs"; "a direct descendant of the king"; "direct heredity" -01416809 00 s 02 matrilineal 0 matrilinear 0 001 & 01416508 a 0000 | based on or tracing descent through the female line; "matrilineal inheritance" -01416959 00 s 02 patrilineal 0 patrilinear 0 001 & 01416508 a 0000 | based on or tracing descent through the male line; "a patrilineal society" -01417105 00 s 01 unilateral 0 001 & 01416508 a 0000 | tracing descent from either the paternal or the maternal line only -01417228 00 a 02 collateral 0 indirect 4 002 ^ 01971237 a 0000 ! 01416508 a 0101 | descended from a common ancestor but through different lines; "cousins are collateral relatives"; "an indirect descendant of the Stuarts" -01417451 00 a 02 linear 2 additive 4 006 ;c 06000644 n 0000 + 00949288 v 0208 + 00182406 v 0201 + 05063218 n 0102 ! 01417790 a 0101 & 01417678 a 0000 | designating or involving an equation whose terms are of the first degree -01417678 00 s 01 bilinear 0 001 & 01417451 a 0000 | linear with respect to each of two variables or positions -01417790 00 a 01 nonlinear 0 002 ;c 06000644 n 0000 ! 01417451 a 0101 | designating or involving an equation whose terms are not of the first degree -01417941 00 a 01 lined 0 002 ! 01418181 a 0101 & 01418104 a 0000 | having a lining or a liner; often used in combination; "a lined skirt"; "a silk-lined jacket" -01418104 00 s 01 silk-lined 0 001 & 01417941 a 0000 | having a silk lining -01418181 00 a 01 unlined 0 001 ! 01417941 a 0101 | not having a lining or liner; "a thin unlined jacket" -01418288 00 a 01 listed 0 001 ! 01418350 a 0101 | on a list -01418350 00 a 01 unlisted 0 003 ! 01418288 a 0101 & 01418486 a 0000 & 01418647 a 0000 | not on a list; "an unlisted telephone number" -01418486 00 s 01 ex-directory 0 001 & 01418350 a 0000 | (of telephone numbers) not listed in the telephone directory; "an ex-directory number" (British usage) -01418647 00 s 02 over-the-counter 0 otc 0 001 & 01418350 a 0000 | (of securities) not traded on a stock exchange; "over-the-counter stocks" -01418789 00 a 01 literal 0 005 ^ 00914421 a 0000 ^ 02018486 a 0000 + 04760611 n 0101 ! 01419149 a 0101 & 01418989 a 0000 | limited to the explicit meaning of a word or text; "a literal translation" -01418989 00 s 02 denotative 0 explicit 0 003 & 01418789 a 0000 + 04822032 n 0201 + 00931467 v 0101 | in accordance with fact or the primary meaning of a term -01419149 00 a 02 figurative 0 nonliteral 0 009 ^ 02016535 a 0000 ! 01418789 a 0101 & 01419462 a 0000 & 01419638 a 0000 & 01419784 a 0000 & 01419999 a 0000 & 01420337 a 0000 & 01420488 a 0000 & 01420899 a 0000 | (used of the meanings of words or text) not literal; using figures of speech; "figurative language" -01419462 00 s 01 analogical 0 003 & 01419149 a 0000 + 05780339 n 0101 + 00651176 n 0101 | expressing, composed of, or based on an analogy; "the analogical use of a metaphor" -01419638 00 s 01 extended 0 001 & 01419149 a 0000 | beyond the literal or primary sense; "`hot off the press' shows an extended sense of `hot'" -01419784 00 s 02 metaphorical 0 metaphoric 0 003 & 01419149 a 0000 + 07106800 n 0201 + 07106800 n 0101 | expressing one thing in terms normally denoting another; "a metaphorical expression"; "metaphoric language" -01419999 00 s 02 metonymic 0 metonymical 0 004 & 01419149 a 0000 + 07107676 n 0201 + 06293898 n 0201 + 06293898 n 0101 | using the name of one thing for that of another with which it is closely associated; "to say `he spent the evening reading Shakespeare' is metonymic because it substitutes the author himself for the author's works" -01420337 00 s 01 poetic 0 002 & 01419149 a 0000 + 07093273 n 0101 | characterized by romantic imagery; "Turner's vision of the rainbow...was poetic" -01420488 00 s 02 synecdochic 0 synecdochical 0 003 & 01419149 a 0000 + 07108453 n 0201 + 07108453 n 0101 | using the name of a part for that of the whole or the whole for the part; or the special for the general or the general for the special; or the material for the thing made of it; "to use `hand' for `worker' or `ten sail' for `ten ships' or `steel' for `sword' is to use a synecdochic figure of speech" -01420899 00 s 01 tropical 0 003 & 01419149 a 0000 ;c 06170498 n 0000 + 07105475 n 0101 | characterized by or of the nature of a trope or tropes; changed from its literal sense -01421077 00 a 01 literate 1 005 ^ 00829745 a 0000 ^ 02270342 a 0000 ! 01421491 a 0101 & 01421249 a 0000 & 01421368 a 0000 | versed in literature; dealing with literature -01421249 00 s 01 belletristic 0 001 & 01421077 a 0000 | written and regarded for aesthetic value rather than content -01421368 00 s 01 literary 0 002 & 01421077 a 0000 + 06169488 n 0101 | knowledgeable about literature; "a literary style" -01421491 00 a 01 illiterate 1 001 ! 01421077 a 0101 | lacking culture, especially in language and literature -01421602 00 a 01 literate 0 001 ! 01421679 a 0101 | able to read and write -01421679 00 a 01 illiterate 0 008 ^ 00830717 a 0000 = 05638486 n 0000 ! 01421602 a 0101 & 01421887 a 0000 & 01422098 a 0000 & 01422243 a 0000 & 01422354 a 0000 & 01422468 a 0000 | not able to read or write -01421887 00 s 02 analphabetic 0 unlettered 0 003 & 01421679 a 0000 + 09790047 n 0102 + 05649256 n 0102 | having little acquaintance with writing; "special tutorials to assist the unlettered sector of society" -01422098 00 s 01 functionally_illiterate 0 001 & 01421679 a 0000 | having reading and writing skills insufficient for ordinary practical needs -01422243 00 s 01 preliterate 0 001 & 01421679 a 0000 | not yet having acquired the ability to read and write -01422354 00 s 01 semiliterate 1 001 & 01421679 a 0000 | barely able to read and write; "an semiliterate scrawl" -01422468 00 s 01 semiliterate 2 001 & 01421679 a 0000 | able to read but not to write -01422556 00 a 02 live 2 unrecorded 4 002 ! 01422956 a 0101 & 01422863 a 0000 | actually being performed at the time of hearing or viewing; "a live television program"; "brought to you live from Lincoln Center"; "live entertainment involves performers actually in the physical presence of a live audience" -01422863 00 s 02 unfilmed 0 untaped 0 001 & 01422556 a 0000 | not recorded on film or tape -01422956 00 a 01 recorded 0 005 ! 01422556 a 0101 & 01423187 a 0000 & 01423344 a 0000 & 01423491 a 0000 & 01423592 a 0000 | set down or registered in a permanent form especially on film or tape for reproduction; "recorded music" -01423187 00 s 02 canned 0 transcribed 0 002 & 01422956 a 0000 ;u 07075172 n 0000 | recorded for broadcast; "a transcribed announcement"; "canned laughter" -01423344 00 s 01 filmed 0 001 & 01422956 a 0000 | recorded on film; made into a movie; "a filmed documentary"; "the filmed version of the novel" -01423491 00 s 01 prerecorded 0 001 & 01422956 a 0000 | recorded at one time for transmission later -01423592 00 s 02 taped 0 tape-recorded 0 001 & 01422956 a 0000 | recorded on tape -01423676 00 a 02 livable 0 liveable 0 004 + 02649830 v 0203 + 02649830 v 0103 ! 01423998 a 0101 & 01423851 a 0000 | fit or suitable to live in or with; "livable conditions" -01423851 00 s 02 habitable 0 inhabitable 0 003 & 01423676 a 0000 + 04722231 n 0102 + 04722231 n 0101 | fit for habitation; "the habitable world" -01423998 00 a 02 unlivable 0 unliveable 0 002 ! 01423676 a 0101 & 01424156 a 0000 | unfit or unsuitable to live in or with; "unlivable substandard housing" -01424156 00 s 01 uninhabitable 0 001 & 01423998 a 0000 | not fit for habitation -01424238 00 a 01 liveried 0 001 ! 01424353 a 0101 | wearing livery; "liveried footmen stood on the palace steps" -01424353 00 a 01 unliveried 0 001 ! 01424238 a 0101 | not wearing livery; "an unliveried chauffeur" -01424455 00 a 01 loaded 0 003 ! 01424868 a 0101 & 01424596 a 0000 & 01424706 a 0000 | (of weapons) charged with ammunition; "a loaded gun" -01424596 00 s 01 live 0 001 & 01424455 a 0000 | charged with an explosive; "live ammunition"; "a live bomb" -01424706 00 s 02 undischarged 0 unexploded 0 001 & 01424455 a 0000 | still capable of exploding or being fired; "undischarged ammunition"; "an unexploded bomb" -01424868 00 a 01 unloaded 0 003 ! 01424455 a 0101 & 01425056 a 0000 & 01425154 a 0000 | (of weapons) not charged with ammunition; "many people are killed by guns thought to be unloaded" -01425056 00 s 01 blank 0 001 & 01424868 a 0000 | not charged with a bullet; "a blank cartridge" -01425154 00 s 01 dud 0 001 & 01424868 a 0000 | failing to detonate; especially not charged with an active explosive; "he stepped on a dud mine" -01425300 00 a 01 loamy 0 002 + 14942223 n 0101 ! 01425435 a 0101 | consisting of or having the character of loam; "richy loamy soil" -01425435 00 a 01 loamless 0 001 ! 01425300 a 0101 | having no loam; "a stony loamless yard" -01425529 00 a 01 local 2 004 ;c 06043075 n 0000 ! 01426077 a 0101 & 01425708 a 0000 & 01425895 a 0000 | affecting only a restricted part or area of the body; "local anesthesia" -01425708 00 s 02 localized 0 localised 0 002 & 01425529 a 0000 ;c 06043075 n 0000 | confined or restricted to a particular location; "the localized infection formed a definite abscess" -01425895 00 s 01 topical 0 002 & 01425529 a 0000 ;c 06043075 n 0000 | pertaining to the surface of a body part; "a drug for topical (or local) application"; "a topical anesthesia" -01426077 00 a 01 general 2 005 ;c 06043075 n 0000 + 05913275 n 0103 + 04764412 n 0101 ! 01425529 a 0101 & 01426273 a 0000 | affecting the entire body; "a general anesthetic"; "general symptoms" -01426273 00 s 01 systemic 0 001 & 01426077 a 0000 | affecting an entire system; "a systemic poison" -01426375 00 a 01 epidemic 0 008 ;c 06043075 n 0000 + 07435533 n 0101 ! 01427757 a 0101 ! 01427602 a 0101 & 01426749 a 0000 & 01427010 a 0000 & 01427188 a 0000 & 01427333 a 0000 | (especially of medicine) of disease or anything resembling a disease; attacking or affecting many individuals in a community or a population simultaneously; "an epidemic outbreak of influenza" -01426749 00 s 01 epiphytotic 0 002 & 01426375 a 0000 ;c 00017222 n 0000 | (of plants) epidemic among plants of a single kind especially over a wide area; "an epiphytotic blight of potatoes"; "epiphytotic conditions associated with a single-plant agriculture" -01427010 00 s 01 epizootic 0 002 & 01426375 a 0000 ;c 00015388 n 0000 | (of animals) epidemic among animals of a single kind within a particular region; "an epizootic disease" -01427188 00 s 01 pandemic 0 002 & 01426375 a 0000 + 07435713 n 0101 | epidemic over a wide geographical area; "a pandemic outbreak of malaria" -01427333 00 s 04 pestilent 0 pestilential 0 pestiferous 0 plaguey 0 004 & 01426375 a 0000 + 14076479 n 0401 + 14076479 n 0202 + 14076479 n 0102 | likely to spread and cause an epidemic disease; "a pestilential malignancy in the air"- Jonathan Swift; "plaguey fevers" -01427602 00 a 01 ecdemic 0 002 ! 01427757 a 0101 ! 01426375 a 0101 | of or relating to a disease that originates outside the locality in which it occurs -01427757 00 a 02 endemic 0 endemical 0 003 ! 01426375 a 0101 ! 01427602 a 0101 & 01428122 a 0000 | of or relating to a disease (or anything resembling a disease) constantly present to greater or lesser extent in a particular locality; "diseases endemic to the tropics"; "endemic malaria"; "food shortages and starvation are endemic in certain parts of the world" -01428122 00 s 01 enzootic 0 001 & 01427757 a 0000 | of a disease that is constantly present in an animal community but only occurs in a small number of cases -01428282 00 a 01 gloved 0 002 ! 01428509 a 0101 & 01428389 a 0000 | having the hands covered with gloves -01428389 00 s 01 gauntleted 0 001 & 01428282 a 0000 | wearing a protective glove; "gestured with his gauntleted hand" -01428509 00 a 01 gloveless 0 001 ! 01428282 a 0101 | devoid of gloves -01428581 00 a 01 hatted 0 002 ! 01428838 a 0101 & 01428767 a 0000 | wearing a hat or a hat of a particular kind; "two old ladies, neatly hatted and gloved"; "a bearskin-hatted sentry" -01428767 00 s 01 turbaned 0 001 & 01428581 a 0000 | wearing a turban -01428838 00 a 01 hatless 0 001 ! 01428581 a 0101 | not wearing a hat; "stood hatless in the rain with water dripping down his neck" -01428972 00 a 01 guided 0 003 ! 01429359 a 0101 & 01429138 a 0000 & 01429260 a 0000 | subject to guidance or control especially after launching; "a guided missile" -01429138 00 s 01 radio-controlled 0 001 & 01428972 a 0000 | operated and guided by radio; "a radio-controlled airplane" -01429260 00 s 01 target-hunting 0 001 & 01428972 a 0000 | guided automatically toward the target -01429359 00 a 01 unguided 0 001 ! 01428972 a 0101 | not subject to guidance or control after launching; "unguided missiles" -01429485 00 a 01 legged 0 004 ! 01430009 a 0101 & 01429676 a 0000 & 01429788 a 0000 & 01429870 a 0000 | having legs of a specified kind or number; "four-legged animals"; "a peg-legged man" -01429676 00 s 01 leglike 0 001 & 01429485 a 0000 | resembling or functioning like a leg; "leglike appendages" -01429788 00 s 01 straight-legged 0 001 & 01429485 a 0000 | having straight legs -01429870 00 s 01 three-legged 0 001 & 01429485 a 0000 | having or as if having three legs; "a three-legged stool"; "a three-legged race" -01430009 00 a 01 legless 0 001 ! 01429485 a 0101 | not having legs; "a legless man in a wheelchair" -01430111 00 a 01 logical 0 012 ^ 00110853 a 0000 ^ 00464513 a 0000 ^ 00111129 a 0000 ^ 01925372 a 0000 ^ 01943406 a 0000 = 04784664 n 0000 + 04784664 n 0102 + 04784664 n 0101 ! 01430847 a 0101 & 01430452 a 0000 & 01430628 a 0000 & 01430716 a 0000 | capable of or reflecting the capability for correct and valid reasoning; "a logical mind" -01430452 00 s 02 dianoetic 0 discursive 0 003 & 01430111 a 0000 ;c 06158346 n 0000 + 04919872 n 0201 | proceeding to a conclusion by reason or argument rather than intuition -01430628 00 s 01 formal 0 001 & 01430111 a 0000 | logically deductive; "formal proof" -01430716 00 s 01 ratiocinative 0 002 & 01430111 a 0000 + 00633265 v 0101 | based on exact thinking; "one's ratiocinative powers" -01430847 00 a 02 illogical 0 unlogical 4 010 ^ 00464962 a 0000 ^ 01926376 a 0000 ^ 01944660 a 0000 = 04784664 n 0000 + 04785669 n 0102 + 04785669 n 0101 ! 01430111 a 0101 & 01431112 a 0000 & 01431369 a 0000 & 01431471 a 0000 | lacking in correct logical relation -01431112 00 s 01 absurd 0 003 & 01430847 a 0000 + 06607809 n 0101 + 06607809 n 0102 | inconsistent with reason or logic or common sense; "the absurd predicament of seeming to argue that virtue is highly desirable but intensely unpleasant"- Walter Lippman -01431369 00 s 01 inconsequential 0 001 & 01430847 a 0000 | not following logically as a consequence -01431471 00 s 03 intuitive 0 nonrational 0 visceral 0 002 & 01430847 a 0000 + 00590761 v 0101 | obtained through intuition rather than from reasoning or observation -01431638 00 a 01 extended 0 006 ! 01432605 a 0101 & 01431938 a 0000 & 01432070 a 0000 & 01432202 a 0000 & 01432318 a 0000 & 01432452 a 0000 | fully extended or stretched forth; "an extended telescope"; "his extended legs reached almost across the small room"; "refused to accept the extended hand" -01431938 00 s 02 outspread 0 spread 0 001 & 01431638 a 0000 | fully extended in width; "outspread wings"; "with arms spread wide" -01432070 00 s 01 outstretched 0 001 & 01431638 a 0000 | fully extended especially in length; "a kitten with one paw outstretched" -01432202 00 s 01 sprawly 0 002 & 01431638 a 0000 + 05082337 n 0101 | spread out irregularly; "a big sprawly city" -01432318 00 s 01 spread-eagle 0 001 & 01431638 a 0000 | with arms and legs stretched out and apart; "lay spread-eagle on the floor" -01432452 00 s 01 stretched 2 001 & 01431638 a 0000 | extended or spread over a wide area or distance; "broad fields lay stretched on both sides of us" -01432605 00 a 01 unextended 0 001 ! 01431638 a 0101 | not extended or stretched out; "an unextended arm" -01432712 00 a 01 mini 0 003 ;u 06307152 n 0000 ! 01432894 a 0101 ! 01433081 a 0101 | used of women's clothing; very short with hemline above the knee; "a mini dress"; "miniskirts" -01432894 00 a 01 midi 0 003 ;u 06307152 n 0000 ! 01433081 a 0101 ! 01432712 a 0101 | used of women's clothing having a hemline at mid-calf; "midiskirts"; "wore her dresses midi length" -01433081 00 a 01 maxi 0 003 ;u 06307152 n 0000 ! 01432712 a 0101 ! 01432894 a 0101 | used of women's clothing having a hemline at the ankle; "wanted a maxi-length coat"; "a maxidress" -01433267 00 a 01 lossy 0 002 + 13509196 n 0101 ! 01433386 a 0101 | characterized by or causing dissipation of energy -01433386 00 a 01 lossless 0 001 ! 01433267 a 0101 | characterized by or causing no dissipation of energy -01433493 00 a 01 long 1 016 = 05129201 n 0000 + 05133287 n 0101 ! 01436003 a 0101 & 01434007 a 0000 & 01434218 a 0000 & 01434530 a 0000 & 01434717 a 0000 & 01434841 a 0000 & 01434966 a 0000 & 01435060 a 0000 & 01435189 a 0000 & 01435290 a 0000 & 01435399 a 0000 & 01435507 a 0000 & 01435675 a 0000 & 01435891 a 0000 | primarily spatial sense; of relatively great or greater than average spatial extension or extension as specified; "a long road"; "a long distance"; "contained many long words"; "ten miles long" -01434007 00 s 02 elongate 0 elongated 0 001 & 01433493 a 0000 | having notably more length than width; being long and slender; "an elongate tail tapering to a point"; "the old man's gaunt and elongated frame" -01434218 00 s 04 elongated 2 extended 0 lengthened 0 prolonged 0 001 & 01433493 a 0000 | drawn out or made longer spatially; "Picasso's elongated Don Quixote"; "lengthened skirts are fashionable this year"; "the extended airport runways can accommodate larger planes"; "a prolonged black line across the page" -01434530 00 s 02 extendible 0 extendable 0 006 & 01433493 a 0000 + 02690093 v 0101 + 01368863 v 0101 + 00318326 v 0101 + 00317888 v 0103 + 00027705 v 0104 | capable of being lengthened -01434717 00 s 01 far 0 002 & 01433493 a 0000 + 05085165 n 0101 | being of a considerable distance or length; "a far trek" -01434841 00 s 01 lank 0 001 & 01433493 a 0000 | long and thin and often limp; "grown lank with fasting"; "lank mousy hair" -01434966 00 s 02 long-handled 0 pole-handled 0 001 & 01433493 a 0000 | having a long handle -01435060 00 s 01 long-range 0 001 & 01433493 a 0000 | suitable for or reaching long distances; "long-range nuclear capability" -01435189 00 s 01 long-snouted 0 001 & 01433493 a 0000 | having a snout that is longer than average -01435290 00 s 01 long-staple 0 001 & 01433493 a 0000 | having relatively long fibers; "long-staple cotton" -01435399 00 s 02 long-wool 0 long-wooled 0 001 & 01433493 a 0000 | (of sheep) having relatively long wool -01435507 00 s 01 oblong 0 003 & 01433493 a 0000 + 13873361 n 0101 + 05071869 n 0102 | deviating from a square or circle or sphere by being elongated in one direction -01435675 00 s 02 polysyllabic 0 sesquipedalian 0 004 & 01433493 a 0000 + 06305474 n 0201 + 07087940 n 0201 + 06302083 n 0101 | (of words) long and ponderous; having many syllables; "sesquipedalian technical terms" -01435891 00 s 01 stretch(a) 0 001 & 01433493 a 0000 | having an elongated seating area; "a stretch limousine" -01436003 00 a 01 short 1 014 = 05129201 n 0000 + 05133944 n 0101 ! 01433493 a 0101 & 01436432 a 0000 & 01436567 a 0000 & 01436671 a 0000 & 01436791 a 0000 & 01436968 a 0000 & 01437037 a 0000 & 01437165 a 0000 & 01437268 a 0000 & 01437349 a 0000 & 01437472 a 0000 & 01437752 a 0000 | (primarily spatial sense) having little length or lacking in length; "short skirts"; "short hair"; "the board was a foot short"; "a short toss" -01436432 00 s 02 abbreviated 0 brief 0 001 & 01436003 a 0000 | (of clothing) very short; "an abbreviated swimsuit"; "a brief bikini" -01436567 00 s 01 close 0 001 & 01436003 a 0000 | used of hair or haircuts; "a close military haircut" -01436671 00 s 01 curtal 0 002 & 01436003 a 0000 ;u 07073447 n 0000 | (obsolete) cut short; "a dog with a curtal tail" -01436791 00 s 03 sawed-off 0 sawn-off 0 shortened 1 001 & 01436003 a 0000 | cut short; "a sawed-off shotgun"; "a sawed-off broomstick"; "the shortened rope was easier to use" -01436968 00 s 01 shortish 0 001 & 01436003 a 0000 | somewhat short -01437037 00 s 01 short-range 0 001 & 01436003 a 0000 | limited to short distances; "short-range planes"; "a short-range shot" -01437165 00 s 01 short-snouted 0 001 & 01436003 a 0000 | having a snout that is shorter than average -01437268 00 s 01 snub 0 001 & 01436003 a 0000 | unusually short; "a snub nose" -01437349 00 s 01 stubby 0 002 & 01436003 a 0000 + 05137778 n 0102 | short and blunt; "stubby fingers"; "a stubby pencil" -01437472 00 s 02 telescoped 0 shortened 2 001 & 01436003 a 0000 | shortened by or as if by means of parts that slide one within another or are crushed one into another; "a miracle that anyone survived in the telescoped cars"; "years that seemed telescoped like time in a dream" -01437752 00 s 02 truncate 1 truncated 0 001 & 01436003 a 0000 | terminating abruptly by having or as if having an end or point cut off; "a truncate leaf"; "truncated volcanic mountains"; "a truncated pyramid" -01437963 00 a 01 long 2 027 = 05051249 n 0000 + 05051601 n 0101 ! 01442186 a 0101 & 01438743 a 0000 & 01438853 a 0000 & 01438963 a 0000 & 01439072 a 0000 & 01439155 a 0000 & 01439496 a 0000 & 01439706 a 0000 & 01439784 a 0000 & 01440058 a 0000 & 01440159 a 0000 & 01440331 a 0000 & 01440422 a 0000 & 01440574 a 0000 & 01440641 a 0000 & 01440776 a 0000 & 01440889 a 0000 & 01441000 a 0000 & 01441271 a 0000 & 01441418 a 0000 & 01441530 a 0000 & 01441729 a 0000 & 01441866 a 0000 & 01441965 a 0000 & 01442079 a 0000 | primarily temporal sense; being or indicating a relatively great or greater than average duration or passage of time or a duration as specified; "a long life"; "a long boring speech"; "a long time"; "a long friendship"; "a long game"; "long ago"; "an hour long" -01438743 00 s 01 agelong 0 001 & 01437963 a 0000 | lasting through all time; "agelong struggle for freedom" -01438853 00 s 01 bimestrial 0 002 & 01437963 a 0000 + 15204609 n 0101 | two months long; lasting two months -01438963 00 s 02 chronic 0 continuing 0 001 & 01437963 a 0000 | of long duration; "chronic money problems" -01439072 00 s 01 daylong 0 001 & 01437963 a 0000 | lasting through an entire day -01439155 00 s 05 drawn-out 0 extended 0 lengthy 0 prolonged 0 protracted 0 003 & 01437963 a 0000 + 05051249 n 0302 + 05051896 n 0301 | relatively long in duration; tediously protracted; "a drawn-out argument"; "an extended discussion"; "a lengthy visit from her mother-in-law"; "a prolonged and bitter struggle"; "protracted negotiations" -01439496 00 s 04 durable 0 lasting 0 long-lasting 0 long-lived 0 003 & 01437963 a 0000 + 05053688 n 0201 + 05053688 n 0102 | existing for a long time; "hopes for a durable peace"; "a long-lasting friendship" -01439706 00 s 01 eight-day 0 001 & 01437963 a 0000 | lasting for eight days -01439784 00 s 03 endless 0 eternal 0 interminable 0 003 & 01437963 a 0000 + 15273406 n 0201 + 05052387 n 0101 | tiresomely long; seemingly without end; "endless debates"; "an endless conversation"; "the wait seemed eternal"; "eternal quarreling"; "an interminable sermon" -01440058 00 s 01 hourlong 0 001 & 01437963 a 0000 | lasting for an hour; "an hourlong examination" -01440159 00 s 02 lifelong 0 womb-to-tomb 0 001 & 01437963 a 0000 | continuing through life; "a lifelong friend"; "from lifelong habit"; "his lifelong study of Greek art" -01440331 00 s 01 long-acting 0 001 & 01437963 a 0000 | active over a long period of time -01440422 00 s 01 long-dated 0 002 & 01437963 a 0000 ;r 08860123 n 0000 | of a gilt-edged security; having more than 15 years to run before redemption -01440574 00 s 01 longish 0 001 & 01437963 a 0000 | somewhat long -01440641 00 s 01 long-life 0 001 & 01437963 a 0000 | (of perishable goods) treated to stay fresh longer than usual; "long-life milk" -01440776 00 s 01 longitudinal 0 001 & 01437963 a 0000 | over an extended time; "a longitudinal study of twins" -01440889 00 s 01 long-range 0 001 & 01437963 a 0000 | involving an extended span of time; "long-range goals" -01441000 00 s 03 long-run 0 long-term 0 semipermanent 0 001 & 01437963 a 0000 | relating to or extending over a relatively long time; "the long-run significance of the elections"; "the long-term reconstruction of countries damaged by the war"; "a long-term investment" -01441271 00 s 01 longstanding 0 001 & 01437963 a 0000 | having existed for a long time; "a longstanding friendship"; "the longstanding conflict" -01441418 00 s 01 monthlong 0 001 & 01437963 a 0000 | last through a month; "a monthlong stay in the hospital" -01441530 00 s 03 nightlong 0 all-night 0 overnight 0 001 & 01437963 a 0000 | lasting, open, or operating through the whole night; "a nightlong vigil"; "an all-night drugstore"; "an overnight trip" -01441729 00 s 01 perennial 0 001 & 01437963 a 0000 | lasting an indefinitely long time; suggesting self-renewal; "perennial happiness" -01441866 00 s 01 time-consuming 0 001 & 01437963 a 0000 | of a task that takes time and patience -01441965 00 s 02 weeklong 0 seven-day 0 001 & 01437963 a 0000 | lasting through a week; "her weeklong vacation" -01442079 00 s 01 yearlong 0 001 & 01437963 a 0000 | lasting through a year; "attending yearlong courses" -01442186 00 a 01 short 2 011 = 05051249 n 0000 + 05052832 n 0101 ! 01437963 a 0101 & 01442597 a 0000 & 01442826 a 0000 & 01442974 a 0000 & 01443097 a 0000 & 01443402 a 0000 & 01443581 a 0000 & 01443733 a 0000 & 01443842 a 0000 | primarily temporal sense; indicating or being or seeming to be limited in duration; "a short life"; "a short flight"; "a short holiday"; "a short story"; "only a few short months" -01442597 00 s 03 abbreviated 0 shortened 0 truncated 0 001 & 01442186 a 0000 | cut short in duration; "the abbreviated speech"; "her shortened life was clearly the result of smoking"; "an unsatisfactory truncated conversation" -01442826 00 s 01 brief 0 003 & 01442186 a 0000 + 05053042 n 0101 + 05134238 n 0101 | of short duration or distance; "a brief stay in the country" -01442974 00 s 01 clipped 0 001 & 01442186 a 0000 | (of speech) having quick short sounds; "a clipped upper-class accent" -01443097 00 s 04 fleeting 0 fugitive 0 momentaneous 0 momentary 0 004 & 01442186 a 0000 + 15246853 n 0401 + 15246853 n 0301 + 05055689 n 0103 | lasting for a markedly brief time; "a fleeting glance"; "fugitive hours"; "rapid momentaneous association of things that meet and pass"; "a momentary glimpse" -01443402 00 s 01 short_and_sweet(p) 0 001 & 01442186 a 0000 | dealt with very quickly; to the point; "the conference was short and sweet"; "make your statement short and sweet" -01443581 00 s 01 short-dated 0 002 & 01442186 a 0000 ;r 08860123 n 0000 | of a gilt-edged security; having less than 5 years to run before redemption -01443733 00 s 01 short-range 0 001 & 01442186 a 0000 | relating to the near future; "a short-range policy" -01443842 00 s 02 short-run 0 short-term 0 001 & 01442186 a 0000 | relating to or extending over a limited period; "short-run planning"; "a short-term lease"; "short-term credit" -01444022 00 a 01 long 4 002 ;c 06177033 n 0000 ! 01444230 a 0101 | (of speech sounds or syllables) of relatively long duration; "the English vowel sounds in `bate', `beat', `bite', `boat', `boot' are long" -01444230 00 a 01 short 4 002 ;c 06177033 n 0000 ! 01444022 a 0101 | of speech sounds or syllables of relatively short duration; "the English vowel sounds in `pat', `pet', `pit', `pot', putt' are short" -01444434 00 a 01 long 5 002 ;c 06150633 n 0000 ! 01444620 a 0101 | holding securities or commodities in expectation of a rise in prices; "is long on coffee"; "a long position in gold" -01444620 00 a 01 short 5 002 ;c 06150633 n 0000 ! 01444434 a 0101 | not holding securities or commodities that one sells in expectation of a fall in prices; "a short sale"; "short in cotton" -01444813 00 a 02 lengthwise 0 lengthways 0 006 ! 01445705 a 0101 & 01445063 a 0000 & 01445184 a 0000 & 01445320 a 0000 & 01445438 a 0000 & 01445558 a 0000 | running or extending in the direction of the length of a thing; "the lengthwise dimension" -01445063 00 s 01 axial 0 002 & 01444813 a 0000 + 06008609 n 0101 | situated on or along or in the direction of an axis -01445184 00 s 01 end-to-end 0 001 & 01444813 a 0000 | with the end of one object in contact lengthwise with the end of another object -01445320 00 s 01 fore-and-aft 0 002 & 01444813 a 0000 ;c 00314469 n 0000 | parallel with the keel of a boat or ship -01445438 00 s 02 linear 0 running(a) 0 001 & 01444813 a 0000 | measured lengthwise; "cost of lumber per running foot" -01445558 00 s 01 longitudinal 0 001 & 01444813 a 0000 | running lengthwise; "a thin longitudinal strip"; "longitudinal measurements of the hull" -01445705 00 a 01 crosswise 0 003 ! 01444813 a 0101 & 01445917 a 0000 & 01446240 a 0000 | lying or extending across the length of a thing or in a cross direction; "a crosswise street"; "the crosswise dimension" -01445917 00 s 04 cross(a) 0 transverse 0 transversal 0 thwartwise 0 001 & 01445705 a 0000 | extending or lying across; in a crosswise direction; at right angles to the long axis; "cross members should be all steel"; "from the transverse hall the stairway ascends gracefully"; "transversal vibrations"; "transverse colon" -01446240 00 s 02 cross-section(a) 0 cross-sectional 0 002 & 01445705 a 0000 + 08548065 n 0201 | representing a plane made by cutting across something at right angles to its length; "cross-section views of the neck" -01446457 00 a 01 lidded 0 001 ! 01446632 a 0101 | having or covered with a lid or lids; often used in combination; "milk is left in a large lidded mug"; "heavy-lidded eyes" -01446632 00 a 01 lidless 0 001 ! 01446457 a 0101 | not having or covered with a lid or lids; "a lidless container" -01446749 00 a 01 loose 1 005 ^ 02403671 a 0000 + 04777421 n 0101 ! 01447302 a 0101 & 01446991 a 0000 & 01447178 a 0000 | not tight; not closely constrained or constricted or constricting; "loose clothing"; "the large shoes were very loose" -01446991 00 s 03 baggy 0 loose-fitting 0 sloppy 0 001 & 01446749 a 0000 | not fitting closely; hanging loosely; "baggy trousers"; "a loose-fitting blouse is comfortable in hot weather" -01447178 00 s 01 flyaway 0 001 & 01446749 a 0000 | (of hair or clothing) worn loose; "her flyaway hair"; "a flyaway coat" -01447302 00 a 01 tight 1 010 ^ 02403206 a 0000 ^ 01398199 a 0000 + 05721728 n 0102 ! 01446749 a 0101 & 01447683 a 0000 & 01447781 a 0000 & 01447937 a 0000 & 01448058 a 0000 & 01448178 a 0000 & 01448362 a 0000 | closely constrained or constricted or constricting; "tight skirts"; "he hated tight starched collars"; "fingers closed in a tight fist"; "a tight feeling in his chest" -01447683 00 s 01 choky 0 001 & 01447302 a 0000 | so tight as to tend to choke; "a choky collar" -01447781 00 s 02 clenched 0 clinched 0 001 & 01447302 a 0000 | closed or squeezed together tightly; "a clenched fist"; "his clenched (or clinched) teeth" -01447937 00 s 03 close 0 snug 0 close-fitting 0 001 & 01447302 a 0000 | fitting closely but comfortably; "a close fit" -01448058 00 s 02 skintight 0 skin-tight 0 001 & 01447302 a 0000 | so tight as to cling to the skin; "skintight jeans" -01448178 00 s 05 tight-fitting 0 tightfitting 0 tight_fitting 0 tightly_fitting 0 skinny 0 001 & 01447302 a 0000 | fitting snugly; "a tightly-fitting cover"; "tight-fitting clothes" -01448362 00 s 01 viselike 0 001 & 01447302 a 0000 | clamped as in a vise; "a viselike grip" -01448456 00 a 01 constricted 0 004 ! 01449184 a 0101 & 01448697 a 0000 & 01448861 a 0000 & 01449007 a 0000 | drawn together or squeezed physically or by extension psychologically; "a constricted blood vessel"; "a constricted view of life" -01448697 00 s 01 narrowed 0 001 & 01448456 a 0000 | made narrow; limited in breadth; "narrowed arteries impair blood circulation"; "a narrowed view of the world" -01448861 00 s 01 pinched 0 001 & 01448456 a 0000 | as if squeezed uncomfortably tight; "her pinched toes in her pointed shoes were killing her" -01449007 00 s 02 stenosed 0 stenotic 0 003 & 01448456 a 0000 ;c 06060845 n 0000 + 14107374 n 0201 | abnormally constricted body canal or passage; "a stenosed coronary artery" -01449184 00 a 01 unconstricted 0 002 ! 01448456 a 0101 & 01449354 a 0000 | not constricted physically or by extension psychologically; "healthy unconstricted arteries" -01449354 00 s 01 open 0 002 & 01449184 a 0000 + 04645020 n 0103 | without undue constriction as from e.g. tenseness or inhibition; "the clarity and resonance of an open tone"; "her natural and open response" -01449564 00 a 01 lost 1 008 ^ 01450969 a 0000 ! 01450713 a 0101 & 01449884 a 0000 & 01450084 a 0000 & 01450178 a 0000 & 01450293 a 0000 & 01450443 a 0000 & 01450607 a 0000 | no longer in your possession or control; unable to be found or recovered; "a lost child"; "lost friends"; "his lost book"; "lost opportunities" -01449884 00 s 02 mislaid 0 misplaced 0 001 & 01449564 a 0000 | lost temporarily; as especially put in an unaccustomed or forgotten place; "the mislaid hat turned up eventually"; "misplaced tickets" -01450084 00 s 01 gone(p) 0 001 & 01449564 a 0000 | no longer retained; "gone with the wind" -01450178 00 s 01 missing 0 001 & 01449564 a 0000 | not able to be found; "missing in action"; "a missing person" -01450293 00 s 02 squandered 0 wasted 0 001 & 01449564 a 0000 | not used to good advantage; "squandered money cannot be replaced"; "a wasted effort" -01450443 00 s 01 stray 0 002 & 01449564 a 0000 + 02122580 n 0101 | (of an animal) having no home or having wandered away from home; "a stray calf"; "a stray dog" -01450607 00 s 01 straying 0 001 & 01449564 a 0000 | unable to find your way; "found the straying sheep" -01450713 00 a 01 found 0 003 ^ 01451498 a 0000 ! 01449564 a 0101 & 01450888 a 0000 | come upon unexpectedly or after searching; "found art"; "the lost-and-found department" -01450888 00 s 01 recovered(p) 0 001 & 01450713 a 0000 | found after being lost -01450969 00 a 01 lost 2 006 ^ 00669478 a 0000 ^ 01449564 a 0000 ^ 01957454 a 0000 ! 01451498 a 0101 & 01451225 a 0000 & 01451402 a 0000 | spiritually or physically doomed or destroyed; "lost souls"; "a lost generation"; "a lost ship"; "the lost platoon" -01451225 00 s 05 cursed 0 damned 0 doomed 0 unredeemed 0 unsaved 0 002 & 01450969 a 0000 ;c 06226057 n 0000 | in danger of the eternal punishment of Hell; "poor damned souls" -01451402 00 s 02 destroyed 0 ruined 0 001 & 01450969 a 0000 | destroyed physically or morally -01451498 00 a 01 saved 0 009 ^ 00670741 a 0000 ^ 01450713 a 0000 ^ 01956964 a 0000 ! 01450969 a 0101 & 01451768 a 0000 & 01451850 a 0000 & 01451937 a 0000 & 01452024 a 0000 & 01452138 a 0000 | rescued; especially from the power and consequences of sin; "a saved soul" -01451768 00 s 01 blessed 0 001 & 01451498 a 0000 | enjoying the bliss of heaven -01451850 00 s 01 ransomed 1 001 & 01451498 a 0000 | reclaimed by payment of a ransom -01451937 00 s 02 rescued 0 reclaimed 0 001 & 01451498 a 0000 | delivered from danger -01452024 00 s 02 ransomed 2 redeemed 0 002 & 01451498 a 0000 ;c 06226057 n 0000 | saved from the bondage of sin -01452138 00 s 01 salvageable 0 001 & 01451498 a 0000 | capable of being saved from ruin; "their marriage was not salvageable" -01452266 00 a 01 lost 3 002 ! 01452488 a 0101 & 01452385 a 0000 | not gained or won; "a lost battle"; "a lost prize" -01452385 00 s 03 confiscate 0 forfeit 0 forfeited 0 001 & 01452266 a 0000 | surrendered as a penalty -01452488 00 a 01 won 0 001 ! 01452266 a 0101 | not subject to defeat; "with that move it's a won game" -01452593 00 a 01 loud 0 017 ^ 00173764 a 0000 ^ 01919931 a 0000 = 04990220 n 0000 + 04990220 n 0102 ! 01454636 a 0101 & 01453084 a 0000 & 01453187 a 0000 & 01453381 a 0000 & 01453467 a 0000 & 01453625 a 0000 & 01453719 a 0000 & 01453809 a 0000 & 01453896 a 0000 & 01453984 a 0000 & 01454244 a 0000 & 01454402 a 0000 & 01454494 a 0000 | characterized by or producing sound of great volume or intensity; "a group of loud children"; "loud thunder"; "her voice was too loud"; "loud trombones" -01453084 00 s 01 big 0 001 & 01452593 a 0000 | loud and firm; "a big voice"; "big bold piano sounds" -01453187 00 s 02 blaring 0 blasting 0 001 & 01452593 a 0000 | unpleasantly loud and penetrating; "the blaring noise of trumpets"; "shut our ears against the blasting music from his car radio" -01453381 00 s 01 clarion 0 001 & 01452593 a 0000 | loud and clear; "a clarion call" -01453467 00 s 04 deafening 0 earsplitting 0 thunderous 0 thundery 0 002 & 01452593 a 0000 + 07377682 n 0304 | loud enough to cause (temporary) hearing loss -01453625 00 s 01 earthshaking 0 001 & 01452593 a 0000 | loud enough to shake the very earth -01453719 00 s 01 harsh-voiced 0 001 & 01452593 a 0000 | having an unusually harsh sound -01453809 00 s 01 loud-mouthed 0 001 & 01452593 a 0000 | given to loud offensive talk -01453896 00 s 01 loud-voiced 0 001 & 01452593 a 0000 | having an unusually loud voice -01453984 00 s 01 shattering 0 001 & 01452593 a 0000 | seemingly loud enough to break something; violently rattling or clattering; "shattering rain striking the windowpanes"; "the shattering tones of the enormous carillon"; "the shattering peal of artillery" -01454244 00 s 02 shouted 0 yelled 0 001 & 01452593 a 0000 | in a vehement outcry; "his shouted words of encouragement could be heard over the crowd noises" -01454402 00 s 01 trumpet-like 0 001 & 01452593 a 0000 | resembling the sound of a trumpet -01454494 00 s 01 vocal 0 001 & 01452593 a 0000 | full of the sound of voices; "a playground vocal with the shouts and laughter of children" -01454636 00 a 01 soft 4 014 ^ 01918984 a 0000 = 04990220 n 0000 + 04990877 n 0101 ! 01452593 a 0101 & 01454985 a 0000 & 01455221 a 0000 & 01455412 a 0000 & 01455540 a 0000 & 01455732 a 0000 & 01455888 a 0000 & 01456038 a 0000 & 01456221 a 0000 & 01456487 a 0000 & 01456572 a 0000 | (of sound) relatively low in volume; "soft voices"; "soft music" -01454985 00 s 04 dull 0 muffled 0 muted 0 softened 0 001 & 01454636 a 0000 | being or made softer or less loud or clear; "the dull boom of distant breaking waves"; "muffled drums"; "the muffled noises of the street"; "muted trumpets" -01455221 00 s 01 euphonious 0 003 & 01454636 a 0000 ;u 07155661 n 0000 + 05718556 n 0102 | (of speech or dialect) pleasing in sound; not harsh or strident; "her euphonious Southern speech" -01455412 00 s 01 gentle 0 002 & 01454636 a 0000 + 04910973 n 0101 | quiet and soothing; "a gentle voice"; "a gentle nocturne" -01455540 00 s 04 hushed 0 muted 2 subdued 0 quiet 0 002 & 01454636 a 0000 + 04955907 n 0302 | in a softened tone; "hushed voices"; "muted trumpets"; "a subdued whisper"; "a quiet reprimand" -01455732 00 s 02 little 0 small 0 003 & 01454636 a 0000 + 05031367 n 0201 + 05031367 n 0102 | (of a voice) faint; "a little voice"; "a still small voice" -01455888 00 s 02 low 0 low-toned 0 002 & 01454636 a 0000 + 05097845 n 0101 | very low in volume; "a low murmur"; "the low-toned murmur of the surf" -01456038 00 s 03 murmuring 0 susurrant 0 whispering 0 002 & 01454636 a 0000 + 01044377 v 0201 | making a low continuous indistinct sound; "like murmuring waves"; "susurrant voices" -01456221 00 s 04 murmurous 0 rustling 0 soughing 0 susurrous 0 002 & 01454636 a 0000 + 07386920 n 0103 | characterized by soft sounds; "a murmurous brook"; "a soughing wind in the pines"; "a slow sad susurrous rustle like the wind fingering the pines"- R.P.Warren -01456487 00 s 01 soft-footed 0 001 & 01454636 a 0000 | sound of quiet gentle steps -01456572 00 s 01 soft-spoken 0 001 & 01454636 a 0000 | having a speaking manner that is not loud or harsh; "she was always soft-spoken" -01456710 00 a 01 full 1 009 + 04989015 n 0101 ! 01458054 a 0101 & 01456977 a 0000 & 01457079 a 0000 & 01457234 a 0000 & 01457369 a 0000 & 01457486 a 0000 & 01457692 a 0000 & 01457871 a 0000 | (of sound) having marked deepness and body; "full tones"; "a full voice" -01456977 00 s 02 booming 0 stentorian 0 002 & 01456710 a 0000 + 10654211 n 0201 | used of the voice -01457079 00 s 02 grumbling 0 rumbling 0 001 & 01456710 a 0000 | continuous full and low-pitched throbbing sound; "the rumbling rolling sound of thunder" -01457234 00 s 01 plangent 0 002 & 01456710 a 0000 + 04989657 n 0101 | loud and resounding; "plangent bells"; "the plangent minority" -01457369 00 s 01 rich 0 002 & 01456710 a 0000 + 04989015 n 0103 | pleasantly full and mellow; "a rich tenor voice" -01457486 00 s 04 orotund 0 rotund 0 round 0 pear-shaped 0 002 & 01456710 a 0000 + 07082972 n 0301 | (of sounds) full and rich; "orotund tones"; "the rotund and reverberating phrase"; "pear-shaped vowels" -01457692 00 s 02 heavy 0 sonorous 0 003 & 01456710 a 0000 + 04989657 n 0205 + 04989657 n 0206 | full and loud and deep; "heavy sounds"; "a herald chosen for his sonorous voice" -01457871 00 s 01 sounding 0 001 & 01456710 a 0000 | having volume or deepness; "sounding brass and a tinkling cymbal"; "the sounding cataract haunted me like a passion"- Wordsworth -01458054 00 a 01 thin 4 003 + 05114781 n 0104 ! 01456710 a 0101 & 01458200 a 0000 | (of sound) lacking resonance or volume; "a thin feeble cry" -01458200 00 s 01 pale 0 001 & 01458054 a 0000 | not full or rich; "high, pale, pure and lovely song" -01458303 00 a 02 piano 0 soft 7 003 ! 01458736 a 0101 & 01458490 a 0000 & 01458619 a 0000 | used chiefly as a direction or description in music; "the piano passages in the composition" -01458490 00 s 01 pianissimo 0 002 & 01458303 a 0000 + 04991389 n 0102 | chiefly a direction or description in music; very soft -01458619 00 s 01 pianissimo_assai 0 001 & 01458303 a 0000 | chiefly a direction or description in music; very soft -01458736 00 a 02 forte 0 loud 2 004 + 04990220 n 0202 ! 01458303 a 0101 & 01458941 a 0000 & 01459058 a 0000 | used chiefly as a direction or description in music; "the forte passages in the composition" -01458941 00 s 01 fortemente 0 001 & 01458736 a 0000 | chiefly a direction or description in music; loud and strong -01459058 00 s 01 fortissimo 0 001 & 01458736 a 0000 | chiefly a direction or description in music -01459158 00 a 01 hardened 6 001 ! 01459295 a 0101 | protected against attack (especially by nuclear weapons); "hardened missile silos" -01459295 00 a 01 soft 6 001 ! 01459158 a 0101 | not protected against attack (especially by nuclear weapons); "soft targets" -01459422 00 a 02 lovable 0 loveable 0 011 ^ 01246579 a 0000 ^ 00732960 a 0000 ^ 01463965 a 0000 + 01775535 v 0201 + 01775164 v 0201 + 01775535 v 0101 + 01775164 v 0101 ! 01460421 a 0101 & 01459755 a 0000 & 01459949 a 0000 & 01460266 a 0000 | having characteristics that attract love or affection; "a mischievous but lovable child" -01459755 00 s 03 adorable 0 endearing 0 lovely 0 005 & 01459422 a 0000 + 04685396 n 0303 + 01777817 v 0101 + 04686257 n 0101 + 04686257 n 0102 | lovable especially in a childlike or naive way -01459949 00 s 05 angelic 0 angelical 0 cherubic 0 seraphic 0 sweet 0 005 & 01459422 a 0000 + 04778630 n 0502 + 09539872 n 0401 + 10546850 n 0204 + 09538915 n 0201 | having a sweet nature befitting an angel or cherub; "an angelic smile"; "a cherubic face"; "looking so seraphic when he slept"; "a sweet disposition" -01460266 00 s 02 cuddlesome 0 cuddly 0 002 & 01459422 a 0000 + 00417643 n 0201 | inviting cuddling or hugging; "a cuddlesome baby"; "a cuddly teddybear" -01460421 00 a 01 hateful 0 007 ^ 01244410 a 0000 ^ 01624633 a 0000 ^ 00733905 a 0000 + 04781755 n 0101 ! 01459422 a 0101 & 01460679 a 0000 & 01460982 a 0000 | evoking or deserving hatred; "no vice is universally as hateful as ingratitude"- Joseph Priestly -01460679 00 s 04 abominable 0 detestable 0 execrable 0 odious 0 004 & 01460421 a 0000 + 07503430 n 0406 + 04780958 n 0402 + 01774426 v 0103 | unequivocally detestable; "abominable treatment of prisoners"; "detestable vices"; "execrable crimes"; "consequences odious to those you govern"- Edmund Burke -01460982 00 s 01 unlovable 0 001 & 01460421 a 0000 | incapable of inspiring love or affection; "she was in some mysterious way...unlovable"-Joseph Conrad -01461138 00 a 01 liked 0 002 ! 01461455 a 0101 & 01461292 a 0000 | found pleasant or attractive; often used as a combining form; "a well-liked teacher" -01461292 00 s 02 likable 0 likeable 0 003 & 01461138 a 0000 + 01776952 v 0201 + 01776952 v 0101 | easy to like; agreeable; "an attractive and likable young man" -01461455 00 a 01 disliked 0 003 ! 01461138 a 0101 & 01461597 a 0000 & 01461680 a 0000 | regarded with aversion; "he was intensely disliked" -01461597 00 s 01 dislikable 0 001 & 01461455 a 0000 | such as to provoke dislike -01461680 00 s 02 unlikable 0 unlikeable 0 001 & 01461455 a 0000 | difficult or impossible to like; "a disagreeable and unlikable old woman" -01461822 00 a 01 loved 0 008 ^ 02526925 a 0000 ! 01463137 a 0101 & 01462046 a 0000 & 01462124 a 0000 & 01462324 a 0000 & 01462461 a 0000 & 01462625 a 0000 & 01462882 a 0000 | held dear; "his loved companion of many years" -01462046 00 s 01 admired 0 001 & 01461822 a 0000 | regarded with admiration -01462124 00 s 04 adored 0 idolized 0 idolised 0 worshipped(a) 0 001 & 01461822 a 0000 | regarded with deep or rapturous love (especially as if for a god); "adored grandchildren"; "an idolized wife" -01462324 00 s 03 beloved 0 darling 0 dear 0 004 & 01461822 a 0000 + 09849598 n 0302 + 09991867 n 0201 + 09849598 n 0101 | dearly loved -01462461 00 s 03 blue-eyed(a) 0 fair-haired(a) 0 white-haired(a) 0 002 & 01461822 a 0000 ;u 07075172 n 0000 | favorite; "the fair-haired boy of the literary set" -01462625 00 s 04 cherished 0 precious 0 treasured 0 wanted 0 002 & 01461822 a 0000 + 05141222 n 0202 | characterized by feeling or showing fond affection for; "a cherished friend"; "children are precious"; "a treasured heirloom"; "so good to feel wanted" -01462882 00 s 07 favored 0 favorite(a) 0 favourite(a) 0 best-loved 0 pet 0 preferred 0 preferent 0 004 & 01461822 a 0000 + 06200344 n 0702 + 09991867 n 0303 + 05790758 n 0201 | preferred above all others and treated with partiality; "the favored child" -01463137 00 a 01 unloved 0 008 ^ 02527734 a 0000 ! 01461822 a 0101 & 01463326 a 0000 & 01463414 a 0000 & 01463537 a 0000 & 01463642 a 0000 & 01463735 a 0000 & 01463869 a 0000 | not loved -01463326 00 s 02 alienated 0 estranged 0 001 & 01463137 a 0000 | caused to be unloved -01463414 00 s 03 bereft 0 lovelorn 0 unbeloved 0 001 & 01463137 a 0000 | unhappy in love; suffering from unrequited love -01463537 00 s 04 despised 0 detested 0 hated 0 scorned 0 001 & 01463137 a 0000 | treated with contempt -01463642 00 s 01 disinherited 0 001 & 01463137 a 0000 | deprived of your rightful heritage -01463735 00 s 03 jilted 0 rejected 0 spurned 0 001 & 01463137 a 0000 | rebuffed (by a lover) without warning; "jilted at the altar" -01463869 00 s 01 loveless 0 001 & 01463137 a 0000 | receiving no love; "a loveless childhood" -01463965 00 a 01 loving 0 020 ^ 00157925 a 0000 ^ 01459422 a 0000 ^ 01725712 a 0000 ^ 02533313 a 0000 + 07546125 n 0101 + 04627000 n 0103 ! 01466593 a 0101 & 01464433 a 0000 & 01464700 a 0000 & 01465061 a 0000 & 01465214 a 0000 & 01465468 a 0000 & 01465583 a 0000 & 01465668 a 0000 & 01465922 a 0000 & 01466038 a 0000 & 01466136 a 0000 & 01466207 a 0000 & 01466305 a 0000 & 01466476 a 0000 | feeling or showing love and affection; "loving parents"; "loving glances" -01464433 00 s 03 adoring 0 doting 0 fond 1 002 & 01463965 a 0000 + 04627000 n 0302 | extravagantly or foolishly loving and indulgent; "adoring grandparents"; "deceiving her preoccupied and doting husband with a young captain"; "hopelessly spoiled by a fond mother" -01464700 00 s 05 affectionate 0 fond 2 lovesome 0 tender 0 warm 0 008 & 01463965 a 0000 + 07544647 n 0506 + 07544647 n 0404 + 04627241 n 0401 + 07544647 n 0203 + 07544647 n 0101 + 07544647 n 0102 + 04627000 n 0101 | having or displaying warmth or affection; "affectionate children"; "a fond embrace"; "fond of his nephew"; "a tender glance"; "a warm embrace" -01465061 00 s 02 amative 0 amorous 1 003 & 01463965 a 0000 + 07544213 n 0201 + 07489059 n 0105 | inclined toward or displaying love; "feeling amorous" -01465214 00 s 03 amatory 0 amorous 2 romantic 1 003 & 01463965 a 0000 + 13931436 n 0302 + 07489059 n 0201 | expressive of or exciting sexual love or romance; "her amatory affairs"; "amorous glances"; "a romantic adventure"; "a romantic moonlight ride" -01465468 00 s 01 attached 0 001 & 01463965 a 0000 | fond and affectionate; "she was very attached to her father" -01465583 00 s 02 captivated 0 charmed 0 001 & 01463965 a 0000 | strongly attracted -01465668 00 s 07 enamored 0 infatuated 0 in_love 0 potty 0 smitten 0 soft_on(p) 0 taken_with(p) 0 002 & 01463965 a 0000 + 07544213 n 0102 | marked by foolish or unreasoning fondness; "gaga over the rock group's new album"; "he was infatuated with her" -01465922 00 s 01 idolatrous 0 002 & 01463965 a 0000 + 01044448 n 0101 | blindly or excessively devoted or adoring -01466038 00 s 02 loverlike 0 loverly 0 001 & 01463965 a 0000 | like or in the manner of a lover -01466136 00 s 01 overfond 0 001 & 01463965 a 0000 | excessively fond -01466207 00 s 01 tenderhearted 0 002 & 01463965 a 0000 + 07554342 n 0102 | easily moved to love -01466305 00 s 01 touchy-feely 0 002 & 01463965 a 0000 ;u 06717170 n 0000 | (often derogatory) openly expressing love and affection (especially through physical contact) -01466476 00 s 01 uxorious 0 002 & 01463965 a 0000 + 04627367 n 0101 | foolishly fond of or submissive to your wife -01466593 00 a 01 unloving 0 006 ^ 02533540 a 0000 ! 01463965 a 0101 & 01466775 a 0000 & 01466956 a 0000 & 01467046 a 0000 & 01467184 a 0000 | not giving or reciprocating affection -01466775 00 s 02 cold 0 frigid 0 004 & 01466593 a 0000 + 05213693 n 0202 + 05213693 n 0201 + 04629604 n 0101 | sexually unresponsive; "was cold to his advances"; "a frigid woman" -01466956 00 s 01 loveless 0 001 & 01466593 a 0000 | without love; "a loveless marriage" -01467046 00 s 03 detached 0 unaffectionate 0 uncaring 0 001 & 01466593 a 0000 | lacking affection or warm feeling; "an uncaring person" -01467184 00 s 01 unromantic 0 001 & 01466593 a 0000 | neither expressive of nor exciting sexual love or romance -01467298 00 a 01 lowercase 0 003 ^ 01474324 a 0000 ! 01467700 a 0101 & 01467534 a 0000 | relating to small (not capitalized) letters that were kept in the lower half of a compositor's type case; "lowercase letters; a and b and c etc" -01467534 00 s 03 little 0 minuscule 0 small 0 001 & 01467298 a 0000 | lowercase; "little a"; "small a"; "e.e.cummings's poetry is written all in minuscule letters" -01467700 00 a 01 uppercase 0 003 ^ 01473996 a 0000 ! 01467298 a 0101 & 01467919 a 0000 | relating to capital letters which were kept in the top half of a compositor's type case; "uppercase letters; X and Y and Z etc" -01467919 00 s 03 capital 0 great 0 majuscule 0 002 & 01467700 a 0000 + 06824227 n 0101 | uppercase; "capital A"; "great A"; "many medieval manuscripts are in majuscule script" -01468097 00 a 01 lucky 0 007 ^ 01047874 a 0000 + 11418460 n 0101 + 14473655 n 0102 ! 01468682 a 0101 & 01468319 a 0000 & 01468420 a 0000 & 01468552 a 0000 | having or bringing good fortune; "my lucky day"; "a lucky man" -01468319 00 s 01 apotropaic 0 001 & 01468097 a 0000 | having the power to prevent evil or bad luck -01468420 00 s 01 hot 0 001 & 01468097 a 0000 | having or bringing unusually good luck; "hot at craps"; "the dice are hot tonight" -01468552 00 s 01 serendipitous 0 002 & 01468097 a 0000 + 11463895 n 0101 | lucky in making unexpected and fortunate discoveries -01468682 00 a 02 unlucky 0 luckless 0 003 ^ 01049462 a 0000 ! 01468097 a 0101 & 01468850 a 0000 | having or bringing misfortune; "Friday the 13th is an unlucky date" -01468850 00 s 02 hexed 0 jinxed 0 002 & 01468682 a 0000 ;u 07075172 n 0000 | (usually used colloquially) causing or accompanied by misfortune -01468994 00 a 01 lyric 0 002 ;c 07020895 n 0000 ! 01469161 a 0101 | used of a singer or singing voice that is light in volume and modest in range; "a lyric soprano" -01469161 00 a 01 dramatic 2 002 ;c 07020895 n 0000 ! 01468994 a 0101 | used of a singer or singing voice that is marked by power and expressiveness and a histrionic or theatrical style; "a dramatic tenor"; "a dramatic soprano" -01469390 00 a 01 made 0 001 ! 01469516 a 0101 | (of a bed) having the sheets and blankets set in order; "a neatly made bed" -01469516 00 a 01 unmade 0 001 ! 01469390 a 0101 | (of a bed) not having the sheets and blankets set in order; "an unmade bed with tangled sheets and blankets" -01469677 00 a 03 magnetic 0 magnetized 0 magnetised 0 003 + 03705379 n 0101 ! 01470141 a 0101 & 01469927 a 0000 | having the properties of a magnet; i.e. of attracting iron or steel; "the hard disk is covered with a thin coat of magnetic material" -01469927 00 s 01 attractable 0 002 & 01469677 a 0000 + 01350025 v 0101 | capable of being magnetized or attracted by a magnet; "the magnetic chips of steel produced by a cutting tool are attractable by a magnet" -01470141 00 a 01 antimagnetic 0 001 ! 01469677 a 0101 | impervious to the effects of a magnetic field; resistant to magnetization; "an antimagnetic watch" -01470298 00 a 01 magnetic 1 002 + 03705379 n 0101 ! 01470496 a 0101 | determined by earth's magnetic fields; "magnetic north"; "the needle of a magnetic compass points to the magnetic north pole" -01470496 00 a 02 geographic 0 geographical 0 002 ! 01470298 a 0101 & 01470649 a 0000 | determined by geography; "the north and south geographic poles" -01470649 00 s 01 true(a) 0 001 & 01470496 a 0000 | determined with reference to the earth's axis rather than the magnetic poles; "true north is geographic north" -01470813 00 a 01 magnetic 3 002 + 03705379 n 0101 ! 01470913 a 0101 | capable of being magnetized -01470913 00 a 01 nonmagnetic 0 001 ! 01470813 a 0101 | not capable of being magnetized -01471002 00 a 01 major 1 005 = 05122557 n 0000 + 13581067 n 0101 + 05122557 n 0101 ! 01471368 a 0101 & 01471260 a 0000 | greater in number or size or amount; "a major portion (a majority) of the population"; "Ursa Major"; "a major portion of the winnings" -01471260 00 s 01 better 0 001 & 01471002 a 0000 | more than half; "argued for the better part of an hour" -01471368 00 a 01 minor 1 003 = 05122850 n 0000 + 05122850 n 0101 ! 01471002 a 0101 | inferior in number or size or amount; "a minor share of the profits"; "Ursa Minor" -01471538 00 a 01 major 2 001 ! 01471723 a 0101 | greater in scope or effect; "a major contribution"; "a major improvement"; "a major break with tradition"; "a major misunderstanding" -01471723 00 a 01 minor 2 001 ! 01471538 a 0101 | lesser in scope or effect; "had minor differences"; "a minor disturbance" -01471848 00 a 01 major 3 003 ;c 08441203 n 0000 + 15152062 n 0101 ! 01471954 a 0101 | of full legal age -01471954 00 a 03 minor 3 nonaged 0 underage 0 003 ;c 08441203 n 0000 + 15152261 n 0101 ! 01471848 a 0101 | not of legal age; "minor children" -01472098 00 a 01 major 4 002 ;c 07020895 n 0000 ! 01472225 a 0101 | of a scale or mode; "major scales"; "the key of D major" -01472225 00 a 01 minor 4 002 ;c 07020895 n 0000 ! 01472098 a 0101 | of a scale or mode; "the minor keys"; "in B flat minor" -01472351 00 a 01 major 5 001 ! 01472509 a 0101 | of the field of academic study in which one concentrates or specializes; "his major field was mathematics" -01472509 00 a 01 minor 5 001 ! 01472351 a 0101 | of your secondary field of academic concentration or specialization -01472628 00 a 01 major 6 002 ! 01473083 a 0101 & 01472790 a 0000 | of greater importance or stature or rank; "a major artist"; "a major role"; "major highways" -01472790 00 s 05 leading(p) 2 prima(p) 0 star(p) 0 starring(p) 0 stellar(a) 0 001 & 01472628 a 0000 | indicating the most important performer or role; "the leading man"; "prima ballerina"; "prima donna"; "a star figure skater"; "the starring role"; "a stellar role"; "a stellar performance" -01473083 00 a 01 minor 6 003 ! 01472628 a 0101 & 01473353 a 0000 & 01473558 a 0000 | of lesser importance or stature or rank; "a minor poet"; "had a minor part in the play"; "a minor official"; "many of these hardy adventurers were minor noblemen"; "minor back roads" -01473353 00 s 02 insignificant 0 peanut 0 002 & 01473083 a 0000 + 05173579 n 0101 | of little importance or influence or power; of minor status; "a minor, insignificant bureaucrat"; "peanut politicians" -01473558 00 s 01 secondary 0 001 & 01473083 a 0000 | not of major importance; "played a secondary role in world events" -01473680 00 a 01 major 7 001 ! 01473826 a 0101 | of greater seriousness or danger; "a major earthquake"; "a major hurricane"; "a major illness" -01473826 00 a 01 minor 7 001 ! 01473680 a 0101 | of lesser seriousness or danger; "suffered only minor injuries"; "some minor flooding"; "a minor tropical disturbance" -01473996 00 a 01 majuscule 0 003 ^ 01467700 a 0000 ! 01474324 a 0101 & 01474196 a 0000 | of or relating to a style of writing characterized by somewhat rounded capital letters; 4th to 8th centuries -01474196 00 s 01 majuscular 0 002 & 01473996 a 0000 + 06824227 n 0105 | of the nature of a majuscule or written in majuscules -01474324 00 a 02 minuscule 0 minuscular 0 003 ^ 01467298 a 0000 + 06350592 n 0201 ! 01473996 a 0101 | of or relating to a small cursive script developed from uncial; 7th to 9th centuries -01474513 00 a 01 manageable 0 012 ^ 00696518 a 0000 ^ 01612053 a 0000 ^ 02451113 a 0000 + 04905546 n 0102 + 04905546 n 0101 + 02443049 v 0104 + 02436349 v 0101 ! 01475282 a 0101 & 01474806 a 0000 & 01474942 a 0000 & 01475041 a 0000 & 01475160 a 0000 | capable of being managed or controlled -01474806 00 s 01 administrable 0 003 & 01474513 a 0000 + 02431971 v 0102 + 02431971 v 0101 | capable of being administered or managed -01474942 00 s 02 controllable 0 governable 0 001 & 01474513 a 0000 | capable of being controlled -01475041 00 s 01 directed 0 001 & 01474513 a 0000 | manageable by a supervising agent; "a directed program of study" -01475160 00 s 02 steerable 0 dirigible 0 002 & 01474513 a 0000 + 02692877 n 0202 | capable of being steered or directed -01475282 00 a 02 unmanageable 0 difficult 1 007 ^ 00695523 a 0000 ^ 01613463 a 0000 ^ 02451951 a 0000 + 04907575 n 0102 ! 01474513 a 0101 & 01475526 a 0000 & 01475733 a 0000 | hard to control; "a difficult child", "an unmanageable situation" -01475526 00 s 04 indocile 0 uncontrollable 0 ungovernable 0 unruly 0 002 & 01475282 a 0000 + 04908396 n 0401 | of persons; "the little boy's parents think he is spirited, but his teacher finds him unruly" -01475733 00 s 01 uncheckable 0 001 & 01475282 a 0000 | incapable of being checked or restrained -01475831 00 a 03 manly 0 manful 0 manlike 0 007 ^ 01483324 a 0000 + 04666837 n 0201 + 10288763 n 0101 + 10287213 n 0101 + 04666837 n 0102 ! 01476154 a 0101 & 01476046 a 0000 | possessing qualities befitting a man -01476046 00 s 01 man-sized 0 001 & 01475831 a 0000 | calling for the strength of a man; "a man-sized job" -01476154 00 a 03 unmanly 0 unmanful 0 unmanlike 0 004 + 04668139 n 0106 ! 01475831 a 0101 & 01476325 a 0000 & 01476516 a 0000 | not possessing qualities befitting a man -01476325 00 s 07 effeminate 0 emasculate 0 epicene 0 cissy 0 sissified 0 sissyish 0 sissy 0 003 & 01476154 a 0000 + 04668139 n 0703 + 04668139 n 0102 | having unsuitable feminine qualities -01476516 00 s 01 womanish 0 002 & 01476154 a 0000 + 04668139 n 0105 | having characteristics associated with women and considered undesirable in men; "womanish tears" -01476685 00 a 01 male 0 011 ^ 01483324 a 0000 = 05006898 n 0000 ;c 06037666 n 0000 + 05008227 n 0101 ! 01477806 a 0101 ! 01478626 a 0101 & 01477077 a 0000 & 01477251 a 0000 & 01477391 a 0000 & 01477564 a 0000 & 01477711 a 0000 | being the sex (of plant or animal) that produces gametes (spermatozoa) that perform the fertilizing function in generation; "a male infant"; "a male holly tree" -01477077 00 s 01 male 1 003 & 01476685 a 0000 + 09624168 n 0101 + 05008227 n 0101 | for or pertaining to or composed of men or boys; "the male lead"; "the male population" -01477251 00 s 02 antheral 0 staminate 0 003 & 01476685 a 0000 ;c 06066555 n 0000 + 11675245 n 0101 | capable of fertilizing female organs -01477391 00 s 02 phallic 0 priapic 0 002 & 01476685 a 0000 + 05526384 n 0102 | resembling or being a phallus; "a phallic symbol"; "phallic eroticism"; "priapic figurines" -01477564 00 s 01 priapic 2 001 & 01476685 a 0000 | overly concerned with masculinity and male sexuality; "priapic episodes"; "priapic victories" -01477711 00 s 01 young-begetting(a) 0 001 & 01476685 a 0000 | capable of fathering offspring -01477806 00 a 01 female 0 010 ^ 01484083 a 0000 = 05006898 n 0000 ;c 06037666 n 0000 + 01320872 n 0101 + 05008943 n 0101 ! 01478626 a 0101 ! 01476685 a 0101 & 01478182 a 0000 & 01478353 a 0000 & 01478482 a 0000 | being the sex (of plant or animal) that produces fertilizable gametes (ova) from which offspring develop; "a female heir"; "female holly trees bear the berries" -01478182 00 s 01 female 1 002 & 01477806 a 0000 + 05008943 n 0101 | for or pertaining to or composed of women or girls; "the female lead in the play"; "a female chorus" -01478353 00 s 02 egg-producing(a) 0 young-bearing(a) 0 001 & 01477806 a 0000 | capable of producing eggs and bearing offspring -01478482 00 s 01 pistillate 0 002 & 01477806 a 0000 ;c 06066555 n 0000 | having gynoecia, or pistils, the ovule-bearing organ of a seed plant -01478626 00 a 01 androgynous 0 011 = 05006898 n 0000 + 10172080 n 0104 + 05008746 n 0101 ! 01476685 a 0101 ! 01477806 a 0101 & 01478907 a 0000 & 01479025 a 0000 & 01479181 a 0000 & 01479376 a 0000 & 01479509 a 0000 & 01479715 a 0000 | having both male and female characteristics -01478907 00 s 02 bisexual 0 epicene 0 002 & 01478626 a 0000 + 05008746 n 0103 | having an ambiguous sexual identity -01479025 00 s 02 gynandromorphic 0 gynandromorphous 0 002 & 01478626 a 0000 + 10172080 n 0203 | having both male and female morphological characteristics -01479181 00 s 02 hermaphroditic 0 hermaphrodite 0 004 & 01478626 a 0000 ;c 06037666 n 0000 + 10172080 n 0201 + 10172080 n 0101 | of animal or plant; having both male female reproductive organs -01479376 00 s 01 intersexual 0 001 & 01478626 a 0000 | having sexual characteristics intermediate between those of male and female -01479509 00 s 02 pseudohermaphroditic 0 pseudohermaphrodite 0 002 & 01478626 a 0000 + 10487710 n 0101 | having internal reproductive organs of one sex and external sexual characteristics of the other sex -01479715 00 s 01 unisex 0 001 & 01478626 a 0000 | not distinguished on the basis of sex -01479805 00 a 01 manned 0 001 ! 01479940 a 0101 | having a crew; "a manned earth satellite was considered a necessary research step" -01479940 00 a 02 unmanned 0 remote-controlled 0 002 ! 01479805 a 0101 & 01480080 a 0000 | lacking a crew; "an unmanned satellite to Mars" -01480080 00 s 01 pilotless 0 001 & 01479940 a 0000 | lacking a pilot; "a drone is a pilotless aircraft" -01480186 00 a 01 marked 0 006 ! 01481135 a 0101 & 01480492 a 0000 & 01480603 a 0000 & 01480684 a 0000 & 01480916 a 0000 & 01481014 a 0000 | having or as if having an identifying mark or a mark as specified; often used in combination; "played with marked cards"; "a scar-marked face"; "well-marked roads" -01480492 00 s 02 asterisked 0 starred 0 001 & 01480186 a 0000 | marked with an asterisk; "the starred items" -01480603 00 s 01 barred 0 001 & 01480186 a 0000 | marked with stripes or bands -01480684 00 s 01 scarred 0 001 & 01480186 a 0000 | deeply affected or marked by mental or physical pain or injury; "Could her scarred mind ever be free of fear?"; "a face scarred by anxiety"; "the fire left her arm badly scarred" -01480916 00 s 01 well-marked 0 001 & 01480186 a 0000 | clearly indicated; "a well-marked route" -01481014 00 s 01 masked 0 001 & 01480186 a 0000 | having markings suggestive of a mask; "the masked face of a raccoon" -01481135 00 a 01 unmarked 0 002 ! 01480186 a 0101 & 01481282 a 0000 | not having an identifying mark; "unmarked cards"; "an unmarked police car" -01481282 00 s 02 unasterisked 0 unstarred 0 001 & 01481135 a 0000 | not marked with an asterisk; "unasterisked items" -01481402 00 a 01 branded 0 001 ! 01481513 a 0101 | marked with a brand; "branded cattle"; "branded criminal" -01481513 00 a 01 unbranded 0 001 ! 01481402 a 0101 | not marked with a brand; "unbranded cattle" -01481612 00 a 01 married 0 006 ^ 01482956 a 0000 ! 01482228 a 0101 & 01481812 a 0000 & 01481932 a 0000 & 01482020 a 0000 & 01482140 a 0000 | joined in matrimony; "a married man"; "a married couple" -01481812 00 s 02 joined 0 united 0 001 & 01481612 a 0000 | of or relating to two people who are married to each other -01481932 00 s 01 mated 0 001 & 01481612 a 0000 | of or relating to a marriage partner -01482020 00 s 01 ringed 0 001 & 01481612 a 0000 | wearing a wedding ring; lawfully married; "a ringed wife"- Tennyson -01482140 00 s 02 wed 0 wedded 0 001 & 01481612 a 0000 | having been taken in marriage -01482228 00 a 02 unmarried 0 single 2 006 ^ 01483143 a 0000 ! 01481612 a 0101 & 01482551 a 0000 & 01482658 a 0000 & 01482751 a 0000 & 01482865 a 0000 | not married or related to the unmarried state; "unmarried men and women"; "unmarried life"; "sex and the single girl"; "single parenthood"; "are you married or single?" -01482551 00 s 01 divorced 0 001 & 01482228 a 0000 | of someone whose marriage has been legally dissolved -01482658 00 s 01 mateless 0 001 & 01482228 a 0000 | of someone who has no marriage partner -01482751 00 s 02 unwed 0 unwedded 0 001 & 01482228 a 0000 | of someone who has not been married; "unwed mother" -01482865 00 s 01 widowed 0 001 & 01482228 a 0000 | single because of death of the spouse -01482956 00 a 01 mated 0 004 ^ 01481612 a 0000 ^ 01486489 a 0000 ! 01483143 a 0101 & 01483076 a 0000 | mated sexually -01483076 00 s 01 paired 0 001 & 01482956 a 0000 | mated sexually -01483143 00 a 01 unmated 0 003 ^ 01482228 a 0000 ! 01482956 a 0101 & 01483251 a 0000 | not mated sexually -01483251 00 s 01 mateless 0 001 & 01483143 a 0000 | not mated sexually -01483324 00 a 01 masculine 1 009 ^ 01476685 a 0000 ^ 01475831 a 0000 ^ 01486084 a 0000 + 04666615 n 0101 + 05008227 n 0102 ! 01484083 a 0101 & 01483562 a 0000 & 01483677 a 0000 & 01483950 a 0000 | associated with men and not with women -01483562 00 s 02 butch 0 macho 0 001 & 01483324 a 0000 | used of men; markedly masculine in appearance or manner -01483677 00 s 05 male 2 manful 0 manlike 0 manly 0 virile 0 008 & 01483324 a 0000 + 04666837 n 0503 + 10288763 n 0401 + 10287213 n 0401 + 04666837 n 0402 + 04666837 n 0201 + 09624168 n 0101 + 05008227 n 0101 | characteristic of a man; "a deep male voice"; "manly sports" -01483950 00 s 01 mannish 0 001 & 01483324 a 0000 | characteristic of a man as distinguished from a woman; "true mannish arrogance" -01484083 00 a 01 feminine 1 009 ^ 01477806 a 0000 ^ 01486197 a 0000 + 05008943 n 0102 + 04667406 n 0101 ! 01483324 a 0101 & 01484342 a 0000 & 01484451 a 0000 & 01484651 a 0000 & 01484814 a 0000 | associated with women and not with men; "feminine intuition" -01484342 00 s 01 fair(a) 0 002 & 01484083 a 0000 + 04685396 n 0102 | attractively feminine; "the fair sex" -01484451 00 s 02 female 2 distaff 0 004 & 01484083 a 0000 + 14514392 n 0201 + 09619168 n 0101 + 05008943 n 0101 | characteristic of or peculiar to a woman; "female sensitiveness"; "female suffrage" -01484651 00 s 02 maidenlike 0 maidenly 0 003 & 01484083 a 0000 + 10282482 n 0202 + 04667923 n 0201 | befitting or characteristic of a maiden; "a maidenly blush" -01484814 00 s 01 powder-puff 0 001 & 01484083 a 0000 | used of competitive activities in which only women take part; "powder-puff baseball"; "a powder-puff football game" -01484987 00 a 02 womanly 0 feminine 4 006 + 05008943 n 0202 + 10787470 n 0101 + 04667660 n 0101 ! 01485502 a 0101 & 01485254 a 0000 & 01485401 a 0000 | befitting or characteristic of a woman especially a mature woman; "womanly virtues of gentleness and compassion" -01485254 00 s 01 matronly 0 002 & 01484987 a 0000 + 10303037 n 0101 | befitting or characteristic of a fully mature woman; "her matronly figure" -01485401 00 s 01 womanlike 0 001 & 01484987 a 0000 | resembling a woman; "a womanlike stone image" -01485502 00 a 01 unwomanly 0 004 ! 01484987 a 0101 & 01485708 a 0000 & 01485828 a 0000 & 01485971 a 0000 | not womanly; "the logical clearness of her arguments...condemned her as eccentric and unwomanly" -01485708 00 s 02 hoydenish 0 tomboyish 0 002 & 01485502 a 0000 + 04667258 n 0202 | used of girls; wild and boisterous -01485828 00 s 01 mannish 0 001 & 01485502 a 0000 | resembling or imitative of or suggestive of a man rather than a woman; "a mannish stride" -01485971 00 s 01 unfeminine 0 001 & 01485502 a 0000 | not suitable for a woman; "an unfeminine depth of voice" -01486084 00 a 01 masculine 2 003 ^ 01483324 a 0000 ! 01486197 a 0101 ! 01486327 a 0101 | of grammatical gender -01486197 00 a 01 feminine 2 004 ^ 01484083 a 0000 + 06328996 n 0101 ! 01486327 a 0101 ! 01486084 a 0101 | of grammatical gender -01486327 00 a 01 neuter 0 003 + 06329313 n 0101 ! 01486084 a 0101 ! 01486197 a 0101 | of grammatical gender; "`it' is the third-person singular neuter pronoun" -01486489 00 a 01 matched 0 007 ^ 00507464 a 0000 ^ 01482956 a 0000 ! 01487201 a 0101 & 01486704 a 0000 & 01486854 a 0000 & 01486960 a 0000 & 01487048 a 0000 | going well together; possessing harmonizing qualities -01486704 00 s 03 coordinated 0 co-ordinated 0 matching 1 001 & 01486489 a 0000 | intentionally matched; "curtains and walls were color coordinated" -01486854 00 s 04 duplicate 0 matching 2 twin(a) 0 twinned 0 001 & 01486489 a 0000 | being two identical -01486960 00 s 02 mated 0 paired 0 001 & 01486489 a 0000 | used of gloves, socks, etc. -01487048 00 s 01 one-to-one 0 001 & 01486489 a 0000 | used of relations such that each member of one set is associated with one member of a second set -01487201 00 a 01 mismatched 0 004 ^ 00508192 a 0000 ! 01486489 a 0101 & 01487352 a 0000 & 01487496 a 0000 | either not matched or unsuitably matched -01487352 00 s 04 ill-sorted 0 incompatible 0 mismated 0 unsuited 0 002 & 01487201 a 0000 + 04714440 n 0201 | not easy to combine harmoniously -01487496 00 s 04 odd 0 unmatched 0 unmated 0 unpaired 0 001 & 01487201 a 0000 | of the remaining member of a pair, of socks e.g. -01487627 00 a 01 material 2 003 + 13794658 n 0101 ! 01488066 a 0101 & 01487943 a 0000 | directly relevant to a matter especially a law case; "his support made a material difference"; "evidence material to the issue at hand"; "facts likely to influence the judgment are called material facts"; "a material witness" -01487943 00 s 01 crucial 0 001 & 01487627 a 0000 | having crucial relevance; "crucial to the case"; "relevant testimony" -01488066 00 a 01 immaterial 2 002 + 13796216 n 0101 ! 01487627 a 0101 | of no importance or relevance especially to a law case; "an objection that is immaterial after the fact" -01488245 00 a 01 mature 1 015 ^ 01643620 a 0000 = 14424780 n 0000 = 04924103 n 0000 + 15152817 n 0102 + 14424780 n 0101 + 14424780 n 0102 ! 01489722 a 0101 & 01488616 a 0000 & 01488856 a 0000 & 01489006 a 0000 & 01489085 a 0000 & 01489207 a 0000 & 01489325 a 0000 & 01489454 a 0000 & 01489557 a 0000 | having reached full natural growth or development; "a mature cell" -01488616 00 s 06 adult 0 big 0 full-grown 0 fully_grown 0 grown 0 grownup 0 005 & 01488245 a 0000 ;c 00015388 n 0000 + 09605289 n 0602 + 09605289 n 0101 + 01321456 n 0101 | (of animals) fully developed; "an adult animal"; "a grown woman" -01488856 00 s 02 abloom 0 efflorescent 0 003 & 01488245 a 0000 + 13439570 n 0206 + 00294522 v 0201 | bursting into flower; "flowering spring trees" -01489006 00 s 01 fruiting 0 001 & 01488245 a 0000 | capable of bearing fruit -01489085 00 s 02 full-blown 0 matured 0 001 & 01488245 a 0000 | fully ripe; at the height of bloom; "a full-blown rose" -01489207 00 s 01 headed 0 001 & 01488245 a 0000 | of leafy vegetables; having formed into a head; "headed cabbages" -01489325 00 s 02 marriageable 0 nubile 0 002 & 01488245 a 0000 + 04718030 n 0101 | of girls or women who are eligible to marry -01489454 00 s 01 overblown 0 001 & 01488245 a 0000 | past the stage of full bloom; "overblown roses" -01489557 00 s 02 prime 0 meridian 0 002 & 01488245 a 0000 + 13940456 n 0208 | being at the best stage of development; "our manhood's prime vigor"- Robert Browning -01489722 00 a 01 immature 1 016 ^ 01495535 a 0000 ^ 01646941 a 0000 = 14424780 n 0000 = 04924103 n 0000 + 14425974 n 0102 + 14425974 n 0101 ! 01488245 a 0101 & 01490061 a 0000 & 01490257 a 0000 & 01490505 a 0000 & 01490603 a 0000 & 01490855 a 0000 & 01491067 a 0000 & 01491240 a 0000 & 01491541 a 0000 & 01491691 a 0000 | not yet mature -01490061 00 s 01 adolescent 0 004 & 01489722 a 0000 + 09772029 n 0101 + 15147850 n 0101 + 00252710 v 0101 | in the state of development between puberty and maturity; "adolescent boys and girls" -01490257 00 s 03 embryonic 0 embryologic 0 embryonal 0 005 & 01489722 a 0000 + 01458842 n 0301 + 06071426 n 0201 + 06071426 n 0101 + 01458842 n 0101 | of an organism prior to birth or hatching; "in the embryonic stage"; "embryologic development" -01490505 00 s 01 inchoative 0 001 & 01489722 a 0000 | beginning to develop; "inchoative stages" -01490603 00 s 01 larval 0 002 & 01489722 a 0000 + 02311060 n 0101 | immature of its kind; especially being or characteristic of immature insects in the newly hatched wormlike feeding stage; "larval societies"; "larval crayfishes"; "the larval stage" -01490855 00 s 02 prepubescent 0 prepubertal 0 003 & 01489722 a 0000 ;c 02472293 n 0000 + 15148081 n 0201 | (especially of human beings) at the age immediately before puberty; often marked by accelerated growth -01491067 00 s 01 prepupal 0 001 & 01489722 a 0000 | of an inactive stage in the development of some insects, between the larval and the pupal stages; "the prepupal stage" -01491240 00 s 01 pubescent 0 002 & 01489722 a 0000 + 15148295 n 0102 | (of animals especially human beings) having arrived at the onset of puberty (the age at which sex glands become functional) but not yet fully mature; "the budding breasts of a pubescent girl and the downy chin of pubescent boy" -01491541 00 s 01 pupal 0 002 & 01489722 a 0000 + 02312427 n 0101 | of the insects in the chrysalis (cocoon) or post larval stage; "the pupal stage" -01491691 00 s 01 underdeveloped 0 001 & 01489722 a 0000 | not yet fully developed -01491775 00 a 01 mature 2 004 ! 01492394 a 0101 & 01491930 a 0000 & 01492061 a 0000 & 01492257 a 0000 | characteristic of maturity; "mature for her age" -01491930 00 s 01 autumnal 0 001 & 01491775 a 0000 | characteristic of late maturity verging on decline; "a serene autumnal mood" -01492061 00 s 02 mellow 0 mellowed 0 002 & 01491775 a 0000 + 07554224 n 0101 | having attained to kindliness or gentleness through age and experience; "mellow wisdom"; "the peace of mellow age" -01492257 00 s 01 ripe 0 001 & 01491775 a 0000 | at the highest point of development especially in judgment or knowledge; "a ripe mind" -01492394 00 a 01 immature 2 006 + 14425974 n 0102 + 14425974 n 0101 ! 01491775 a 0101 & 01492596 a 0000 & 01492907 a 0000 & 01493016 a 0000 | characteristic of a lack of maturity; "immature behavior" -01492596 00 s 04 adolescent 0 jejune 0 juvenile 0 puerile 0 005 & 01492394 a 0000 + 14427065 n 0402 + 14426568 n 0303 + 14426568 n 0202 + 05206573 n 0201 | displaying or suggesting a lack of maturity; "adolescent insecurity"; "jejune responses to our problems"; "their behavior was juvenile"; "puerile jokes" -01492907 00 s 01 babyish 0 001 & 01492394 a 0000 | characteristic of a baby; "babyish tears and petulance" -01493016 00 s 02 childish 0 infantile 0 002 & 01492394 a 0000 + 04928760 n 0101 | indicating a lack of maturity; "childish tantrums"; "infantile behavior" -01493173 00 a 02 ripe 0 mature 6 006 + 14424780 n 0202 + 14425601 n 0101 ! 01493897 a 0101 & 01493423 a 0000 & 01493636 a 0000 & 01493807 a 0000 | fully developed or matured and ready to be eaten or used; "ripe peaches"; "full-bodied mature wines" -01493423 00 s 02 aged 0 ripened 0 002 & 01493173 a 0000 + 04927632 n 0101 | of wines, fruit, cheeses; having reached a desired or final condition; (`aged' pronounced as one syllable); "mature well-aged cheeses" -01493636 00 s 02 mellow 0 mellowed 0 002 & 01493173 a 0000 + 05718118 n 0101 | having a full and pleasing flavor through proper aging; "a mellow port"; "mellowed fruit" -01493807 00 s 01 overripe 0 001 & 01493173 a 0000 | too ripe and beginning to turn soft -01493897 00 a 04 green 0 unripe 0 unripened 0 immature 6 005 + 14425974 n 0402 + 14425974 n 0401 + 14426449 n 0101 ! 01493173 a 0101 & 01494146 a 0000 | not fully developed or mature; not ripe; "unripe fruit"; "fried green tomatoes"; "green wood" -01494146 00 s 01 unaged 0 001 & 01493897 a 0000 | not subjected to an aging process; "vodka is an unaged liquor from Russia" -01494273 00 a 01 seasonal 0 001 ! 01494429 a 0101 | occurring at or dependent on a particular season; "seasonal labor"; "a seasonal rise in unemployment" -01494429 00 a 02 year-round 0 year-around 0 001 ! 01494273 a 0101 | operating or continuing throughout the year; "a year-round resort"; "a year-round job" -01494586 00 a 01 seasonable 0 002 + 05049253 n 0101 ! 01494740 a 0101 | in keeping with the season; "a hard but seasonable frost"; "seasonable clothes" -01494740 00 a 01 unseasonable 0 002 + 05049458 n 0101 ! 01494586 a 0101 | not in keeping with (and usually undesirable for) the season; "a sudden unseasonable blizzard"; "unseasonable bright blue weather in November" -01494959 00 a 01 seasoned 0 002 ! 01495181 a 0101 & 01495066 a 0000 | aged or processed; "seasoned wood" -01495066 00 s 01 cured 0 001 & 01494959 a 0000 | (used of concrete or mortar) kept moist to assist the hardening -01495181 00 a 01 unseasoned 0 002 ! 01494959 a 0101 & 01495298 a 0000 | not aged or processed; "unseasoned timber" -01495298 00 s 01 uncured 0 001 & 01495181 a 0000 | not seasoned; "uncured pelts" -01495381 00 a 01 full-term 0 002 ^ 01488245 a 0000 ! 01495535 a 0101 | gestated for the entire duration of normal pregnancy; "a healthy full-term baby" -01495535 00 a 01 premature 0 004 ^ 01489722 a 0000 + 14426736 n 0102 + 14426736 n 0101 ! 01495381 a 0101 | born after a gestation period of less than the normal time; "a premature infant" -01495725 00 a 02 maximal 0 maximum 0 003 ! 01496021 a 0202 ! 01496021 a 0101 & 01495912 a 0000 | the greatest or most complete or best possible; "maximal expansion"; "maximum pressure" -01495912 00 s 01 supreme 0 001 & 01495725 a 0000 | greatest or maximal in degree; extreme; "supreme folly" -01496021 00 a 02 minimal 0 minimum 0 006 ! 01495725 a 0202 ! 01495725 a 0101 & 01496311 a 0000 & 01496462 a 0000 & 01496592 a 0000 & 01496816 a 0000 | the least possible; "needed to enforce minimal standards"; "her grades were minimal"; "minimum wage"; "a minimal charge for the service" -01496311 00 s 02 borderline 0 marginal 0 001 & 01496021 a 0000 | of questionable or minimal quality; "borderline grades"; "marginal writing ability" -01496462 00 s 01 negligible 0 001 & 01496021 a 0000 | so small as to be meaningless; insignificant; "the effect was negligible" -01496592 00 s 03 nominal 0 token(a) 0 tokenish 0 001 & 01496021 a 0000 | insignificantly small; a matter of form only (`tokenish' is informal); "the fee was nominal"; "a token gesture of resistance"; "a toknenish gesture" -01496816 00 s 02 stripped 0 stripped-down 0 001 & 01496021 a 0000 | having only essential or minimal features; "a stripped new car"; "a stripped-down budget" -01496976 00 a 01 meaningful 0 007 ^ 01909890 a 0000 ^ 02161432 a 0000 + 05170236 n 0101 ! 01497736 a 0101 & 01497245 a 0000 & 01497387 a 0000 & 01497594 a 0000 | having a meaning or purpose; "a meaningful explanation"; "a meaningful discussion"; "a meaningful pause" -01497245 00 s 02 meaty 0 substantive 0 002 & 01496976 a 0000 + 05921123 n 010c | being on topic and prompting thought; "a meaty discussion" -01497387 00 s 03 meaning(a) 0 pregnant 0 significant 0 005 & 01496976 a 0000 + 06601327 n 0302 + 05920791 n 0301 + 01039854 v 0301 + 00932324 v 0301 | rich in significance or implication; "a meaning look" -01497594 00 s 01 purposeful 0 002 & 01496976 a 0000 + 05170400 n 0101 | having meaning through having an aim; "led a happy purposeful life" -01497736 00 a 02 meaningless 0 nonmeaningful 0 009 ^ 02164402 a 0000 ^ 01910488 a 0000 ^ 01279978 a 0000 + 06607339 n 0104 ! 01496976 a 0101 & 01498084 a 0000 & 01498298 a 0000 & 01498418 a 0000 & 01498594 a 0000 | having no meaning or direction or purpose; "a meaningless endeavor"; "a meaningless life"; "a verbose but meaningless explanation" -01498084 00 s 03 empty 0 hollow 0 vacuous 0 004 & 01497736 a 0000 + 05174023 n 0304 + 04867871 n 0203 + 05141040 n 0102 | devoid of significance or point; "empty promises"; "a hollow victory"; "vacuous comments" -01498298 00 s 01 insignificant 0 002 & 01497736 a 0000 + 05173579 n 0101 | signifying nothing; "insignificant sounds" -01498418 00 s 01 mindless 0 002 & 01497736 a 0000 + 05174023 n 0103 | lacking the thinking capacity characteristic of a conscious being; "the shrieking of the mindless wind" -01498594 00 s 02 nonsense(a) 0 nonsensical 0 002 & 01497736 a 0000 + 06607339 n 0203 | having no intelligible meaning; "nonsense syllables"; "a nonsensical jumble of words" -01498769 00 a 02 measurable 0 mensurable 0 005 = 05090441 n 0000 + 05209822 n 0102 + 00647094 v 0101 + 00489837 v 0102 ! 01498957 a 0101 | capable of being measured; "measurable depths" -01498957 00 a 04 immeasurable 0 unmeasurable 0 immensurable 0 unmeasured 0 003 ! 01498769 a 0101 & 01499155 a 0000 & 01499269 a 0000 | impossible to measure; "unmeasurable reaches of outer space" -01499155 00 s 01 abysmal 0 001 & 01498957 a 0000 | very great; limitless; "abysmal misery"; "abysmal stupidity" -01499269 00 s 03 illimitable 0 limitless 0 measureless 0 002 & 01498957 a 0000 + 05209324 n 0205 | without limits in extent or size or quantity; "limitless vastness of our solar system" -01499457 00 a 01 meaty 0 002 + 07649854 n 0101 ! 01499602 a 0101 | like or containing meat; "enough of vegetarianism; let's have a meaty meal" -01499602 00 a 01 meatless 0 001 ! 01499457 a 0101 | lacking meat; "meatless days" -01499686 00 a 01 mechanical 0 008 + 03738472 n 0101 + 00098385 n 0102 ! 01500766 a 0101 & 01499999 a 0000 & 01500247 a 0000 & 01500416 a 0000 & 01500555 a 0000 & 01500672 a 0000 | using (or as if using) mechanisms or tools or devices; "a mechanical process"; "his smile was very mechanical"; "a mechanical toy" -01499999 00 s 05 automatic 0 automatonlike 0 machinelike 0 robotlike 0 robotic 0 003 & 01499686 a 0000 + 00480221 v 0101 + 09825519 n 0101 | resembling the unthinking functioning of a machine; "an automatic `thank you'"; "machinelike efficiency" -01500247 00 s 01 mechanic 0 001 & 01499686 a 0000 | resembling the action of a machine; "from blank to blank a threadless way I pushed mechanic feet"- Emily Dickenson -01500416 00 s 01 mechanistic 0 002 & 01499686 a 0000 + 09349797 n 0101 | explained in terms of physical forces; "a mechanistic universe" -01500555 00 s 02 mechanized 0 mechanised 0 001 & 01499686 a 0000 | equipped with machinery; "a mechanized factory" -01500672 00 s 01 windup(a) 0 001 & 01499686 a 0000 | operated by a mechanism; "windup toys" -01500766 00 a 01 nonmechanical 0 003 ! 01499686 a 0101 & 01500876 a 0000 & 01500952 a 0000 | not mechanical -01500876 00 s 01 nonmechanistic 0 001 & 01500766 a 0000 | not mechanistic -01500952 00 s 02 unmechanized 0 unmechanised 0 001 & 01500766 a 0000 | not mechanized; "production of furniture remained largely unmechanized"- Gordon Russell -01501113 00 a 03 melodious 0 melodic 4 musical 4 013 + 07019172 n 0301 + 05718556 n 0301 + 04983402 n 0301 + 04983402 n 0302 + 07028373 n 0102 + 05711915 n 0101 + 04983848 n 0101 ! 01502099 a 0101 & 01501505 a 0000 & 01501619 a 0000 & 01501718 a 0000 & 01501821 a 0000 & 01501990 a 0000 | containing or constituting or characterized by pleasing melody; "the melodious song of a meadowlark" -01501505 00 s 02 ariose 0 songlike 0 001 & 01501113 a 0000 | having a melody (as distinguished from recitative) -01501619 00 s 02 canorous 0 songful 0 002 & 01501113 a 0000 + 04983688 n 0203 | richly melodious -01501718 00 s 02 cantabile 0 singing 0 002 & 01501113 a 0000 ;c 07020895 n 0000 | smooth and flowing -01501821 00 s 05 dulcet 0 honeyed 0 mellifluous 0 mellisonant 0 sweet 0 002 & 01501113 a 0000 + 04778630 n 0502 | pleasing to the ear; "the dulcet tones of the cello" -01501990 00 s 01 lyrical 0 002 & 01501113 a 0000 + 04983688 n 0101 | suitable for or suggestive of singing -01502099 00 a 03 unmelodious 0 unmelodic 4 unmusical 4 001 ! 01501113 a 0101 | lacking melody -01502195 00 a 02 tuneful 0 melodious 4 005 + 07028373 n 0202 + 05711915 n 0201 + 04983848 n 0201 + 04983848 n 0102 ! 01502383 a 0101 | having a musical sound; especially a pleasing tune -01502383 00 a 03 tuneless 0 untuneful 0 unmelodious 4 001 ! 01502195 a 0101 | not having a musical sound or pleasing tune -01502507 00 a 01 membered 0 010 ;c 06084469 n 0000 ! 01503886 a 0101 & 01502796 a 0000 & 01502925 a 0000 & 01503052 a 0000 & 01503179 a 0000 & 01503375 a 0000 & 01503504 a 0000 & 01503633 a 0000 & 01503760 a 0000 | having members; normally used in chemistry in combination with a number -01502796 00 s 02 three-membered 0 3-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with three members -01502925 00 s 02 four-membered 0 4-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with four members -01503052 00 s 02 five-membered 0 5-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with five members -01503179 00 s 02 six-membered 0 6-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with six members; "having three carbon and three nitrogen atoms in a six-membered ring" -01503375 00 s 02 seven-membered 0 7-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with seven members -01503504 00 s 02 eight-membered 0 8-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with eight members -01503633 00 s 02 nine-membered 0 9-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with nine members -01503760 00 s 02 ten-membered 0 10-membered 0 001 & 01502507 a 0000 | of a chemical compound having a ring with ten members -01503886 00 a 01 memberless 0 001 ! 01502507 a 0101 | of a group or set having no members -01503978 00 a 01 mined 0 004 ! 01504531 a 0101 & 01504147 a 0000 & 01504282 a 0000 & 01504430 a 0000 | extracted from a source of supply as of minerals from the earth -01504147 00 s 01 deep-mined 0 001 & 01503978 a 0000 | of coal, as contrasted with coal obtained from a strip mine; "deep-mined coal" -01504282 00 s 01 well-mined 0 001 & 01503978 a 0000 | well known and commonly used; "Shakespeare exploited many well-mined sources for his plays" -01504430 00 s 01 strip-mined 0 001 & 01503978 a 0000 | mined near the earth's surface by stripping -01504531 00 a 01 unmined 0 001 ! 01503978 a 0101 | not mined; "deposits of unmined uranium" -01504625 00 a 01 musical 1 009 = 04983402 n 0000 + 07019172 n 0101 + 05718935 n 0101 + 04983402 n 0101 + 04983402 n 0102 ! 01505318 a 0101 & 01504926 a 0000 & 01505041 a 0000 & 01505181 a 0000 | characteristic of or resembling or accompanied by music; "a musical speaking voice"; "a musical comedy" -01504926 00 s 01 chanted 0 001 & 01504625 a 0000 | sung or uttered rhythmically in a monotone; "a chanted psalm" -01505041 00 s 01 liquid 0 001 & 01504625 a 0000 | smooth and flowing in quality; entirely free of harshness; "the liquid song of a robin" -01505181 00 s 01 singable 0 001 & 01504625 a 0000 | suitable for singing; "singable melody is the essence of music"- Winthrop Sargeant -01505318 00 a 02 unmusical 1 nonmusical 1 002 = 04983402 n 0000 ! 01504625 a 0101 | not musical in nature; "the unmusical cry of the bluejay" -01505462 00 a 01 musical 2 003 + 00543233 n 0101 ! 01505786 a 0101 & 01505619 a 0000 | talented in or devoted to music; "comes from a very musical family" -01505619 00 s 01 philharmonic 0 001 & 01505462 a 0000 | devoted to or appreciative of music; "the most philharmonic ear is at times deeply affected by a simple air" -01505786 00 a 02 unmusical 2 nonmusical 2 001 ! 01505462 a 0101 | lacking interest in or talent for music; "too unmusical to care for concerts"; "it is unfortunate that her children were all nonmusical" -01505991 00 a 03 melted 0 liquid 4 liquified 4 007 ^ 01079683 a 0000 + 14480420 n 0202 ! 01506770 a 0101 & 01506258 a 0000 & 01506385 a 0000 & 01506526 a 0000 & 01506661 a 0000 | changed from a solid to a liquid state; "rivers filled to overflowing by melted snow" -01506258 00 s 01 dissolved 0 001 & 01505991 a 0000 | (of solid matter) reduced to a liquid form; "add the dissolved gelatin" -01506385 00 s 01 fusible 0 004 & 01505991 a 0000 + 00397192 v 0101 + 00396997 v 0101 + 00394813 v 0107 | capable of being melted and fused -01506526 00 s 03 molten 0 liquefied 2 liquified 2 001 & 01505991 a 0000 | reduced to liquid form by heating; "a mass of molten rock" -01506661 00 s 01 thawed 0 001 & 01505991 a 0000 | no longer frozen solid; "the thawed ice was treacherous" -01506770 00 a 01 unmelted 0 004 ^ 01078302 a 0000 ! 01505991 a 0101 & 01506945 a 0000 & 01507008 a 0000 | not melted; "streets unpassable because of piles of unmelted snow" -01506945 00 s 01 frozen 0 001 & 01506770 a 0000 | not thawed -01507008 00 s 01 undissolved 0 001 & 01506770 a 0000 | retaining a solid form; "undissolved sugar in the bottom of the cup" -01507134 00 a 01 merciful 0 008 ^ 00437539 a 0000 ^ 00506299 a 0000 ^ 01261867 a 0000 ^ 01372049 a 0000 ^ 01156112 a 0000 + 07554500 n 0101 + 01071411 n 0102 ! 01507402 a 0101 | showing or giving mercy; "sought merciful treatment for the captives"; "a merciful god" -01507402 00 a 02 merciless 0 unmerciful 4 014 ^ 00247439 a 0000 ^ 01155354 a 0000 ^ 00437852 a 0000 ^ 01785180 a 0000 ^ 00507053 a 0000 ^ 01373728 a 0000 + 04831031 n 0202 + 07506382 n 0102 + 04831031 n 0101 ! 01507134 a 0101 & 01507808 a 0000 & 01507992 a 0000 & 01508086 a 0000 & 01508320 a 0000 | having or showing no mercy; "the merciless enemy"; "a merciless critic"; "gave him a merciless beating" -01507808 00 s 03 cutthroat 0 fierce 0 bowelless 0 002 & 01507402 a 0000 + 05037813 n 0202 | ruthless in competition; "cutthroat competition"; "bowelless readiness to take advantage" -01507992 00 s 01 mortal(a) 0 001 & 01507402 a 0000 | unrelenting and deadly; "mortal enemy" -01508086 00 s 04 pitiless 0 remorseless 0 ruthless 0 unpitying 0 004 & 01507402 a 0000 + 07506382 n 0304 + 04831264 n 0302 + 04831264 n 0101 | without mercy or pity; "an act of ruthless ferocity"; "a monster of remorseless cruelty" -01508320 00 s 01 tigerish 0 001 & 01507402 a 0000 | resembling a tiger in fierceness and lack of mercy; "a tigerish fury" -01508444 00 a 02 metabolic 0 metabolous 0 004 ;c 06083243 n 0000 + 13514880 n 0202 + 13514880 n 0102 ! 01508592 a 0101 | undergoing metamorphosis -01508592 00 a 02 ametabolic 0 ametabolous 0 002 ;c 06083243 n 0000 ! 01508444 a 0101 | undergoing slight or no metamorphosis -01508719 00 a 01 mild 0 008 ^ 01531375 a 0000 ^ 02401590 a 0000 = 05093890 n 0000 + 04910973 n 0103 ! 01509527 a 0101 & 01509066 a 0000 & 01509262 a 0000 & 01509367 a 0000 | moderate in type or degree or effect or force; far from extreme; "a mild winter storm"; "a mild fever"; "fortunately the pain was mild"; "a mild rebuke"; "mild criticism" -01509066 00 s 02 gentle 0 soft 0 002 & 01508719 a 0000 + 04910973 n 0101 | soft and mild; not harsh or stern or severe; "a gentle reprimand"; "a vein of gentle irony"; "poked gentle fun at him" -01509262 00 s 01 mild-mannered 0 001 & 01508719 a 0000 | behaving in or having a mild or gentle manner -01509367 00 s 02 moderate 0 temperate 0 002 & 01508719 a 0000 + 05117660 n 0102 | not extreme; "a moderate penalty"; "temperate in his response to criticism" -01509527 00 a 01 intense 0 030 ^ 01533120 a 0000 ^ 02402268 a 0000 ^ 01872745 a 0000 = 05093890 n 0000 + 05036394 n 0101 ! 01508719 a 0101 & 01510320 a 0000 & 01510444 a 0000 & 01510628 a 0000 & 01510798 a 0000 & 01510914 a 0000 & 01511031 a 0000 & 01511152 a 0000 & 01511292 a 0000 & 01511387 a 0000 & 01511520 a 0000 & 01511854 a 0000 & 01512142 a 0000 & 01512275 a 0000 & 01512527 a 0000 & 01512645 a 0000 & 01512804 a 0000 & 01512909 a 0000 & 01513050 a 0000 & 01513376 a 0000 & 01513512 a 0000 & 01513619 a 0000 & 01513776 a 0000 & 01513951 a 0000 & 01514141 a 0000 | possessing or displaying a distinctive feature to a heightened degree; "intense heat"; "intense anxiety"; "intense desire"; "intense emotion"; "the skunk's intense acrid odor"; "intense pain"; "enemy fire was intense" -01510320 00 s 01 aggravated 0 001 & 01509527 a 0000 | made more severe or intense especially in law; "aggravated assault" -01510444 00 s 02 bad 0 big 0 002 & 01509527 a 0000 + 05036715 n 0101 | very intense; "a bad headache"; "in a big rage"; "had a big (or bad) shock"; "a bad earthquake"; "a bad storm" -01510628 00 s 01 blood-and-guts 0 002 & 01509527 a 0000 ;u 07075172 n 0000 | marked by great zeal or violence; "real blood-and-guts fiction"; "blood-and-guts football" -01510798 00 s 02 brutal 0 unrelenting 0 001 & 01509527 a 0000 | harsh; "the brutal summer sun"; "a brutal winter" -01510914 00 s 01 cold 0 001 & 01509527 a 0000 | so intense as to be almost uncontrollable; "cold fury gripped him" -01511031 00 s 01 concentrated 0 001 & 01509527 a 0000 | intensely focused; "her concentrated passion held them at bay" -01511152 00 s 02 consuming 0 overwhelming 0 001 & 01509527 a 0000 | very intense; "politics is his consuming passion"; "overwhelming joy" -01511292 00 s 01 deep 0 001 & 01509527 a 0000 | extreme; "in deep trouble"; "deep happiness" -01511387 00 s 02 exquisite 0 keen 0 001 & 01509527 a 0000 | intense or sharp; "suffered exquisite pain"; "felt exquisite pleasure" -01511520 00 s 03 extreme 0 utmost(a) 0 uttermost(a) 0 005 & 01509527 a 0000 + 05124928 n 0302 + 05124928 n 0201 + 14476521 n 0101 + 13942405 n 0101 | of the greatest possible degree or extent or intensity; "extreme cold"; "extreme caution"; "extreme pleasure"; "utmost contempt"; "to the utmost degree"; "in the uttermost distress" -01511854 00 s 05 fierce 0 tearing 0 vehement 0 violent 1 trigger-happy 0 002 & 01509527 a 0000 + 05037813 n 0102 | marked by extreme intensity of emotions or convictions; inclined to react violently; fervid; "fierce loyalty"; "in a tearing rage"; "vehement dislike"; "violent passions" -01512142 00 s 01 intensified 0 001 & 01509527 a 0000 | made more intense; "the intensified scrutiny of the candidate's background" -01512275 00 s 01 intensive 0 002 & 01509527 a 0000 + 05036394 n 0102 | characterized by a high degree or intensity; often used as a combining form; "the questioning was intensive"; "intensive care"; "research-intensive"; "a labor-intensive industry" -01512527 00 s 01 main(a) 0 001 & 01509527 a 0000 | of force; of the greatest possible intensity; "by main strength" -01512645 00 s 01 profound 0 002 & 01509527 a 0000 + 13942554 n 0101 | of the greatest intensity; complete; "a profound silence"; "a state of profound shock" -01512804 00 s 01 raging 0 001 & 01509527 a 0000 | very severe; "a raging thirst"; "a raging toothache" -01512909 00 s 01 screaming(a) 0 001 & 01509527 a 0000 | so extremely intense as to evoke screams; "in screaming agony"; "a screaming rage" -01513050 00 s 03 severe 0 terrible 0 wicked 0 005 & 01509527 a 0000 + 04782116 n 0204 + 05036715 n 0103 + 04710127 n 0107 + 05036715 n 0102 | intensely or extremely bad or unpleasant in degree or quality; "severe pain"; "a severe case of flu"; "a terrible cough"; "under wicked fire from the enemy's guns"; "a wicked cough" -01513376 00 s 01 smart 0 003 & 01509527 a 0000 + 14331873 n 0101 + 14331873 n 0103 | painfully severe; "he gave the dog a smart blow" -01513512 00 s 01 strong 0 001 & 01509527 a 0000 | not faint or feeble; "a strong odor of burning rubber" -01513619 00 s 01 terrific 0 001 & 01509527 a 0000 | very great or intense; "a terrific noise"; "a terrific thunderstorm storm"; "fought a terrific battle" -01513776 00 s 02 thick 0 deep 1 002 & 01509527 a 0000 + 15267373 n 0201 | (of darkness) very intense; "thick night"; "thick darkness"; "a face in deep shadow"; "deep night" -01513951 00 s 01 unabated 0 001 & 01509527 a 0000 | continuing at full strength or intensity; "the winds are unabated"; "the popularity of his books among young people continued unabated" -01514141 00 s 02 violent 3 wild 0 002 & 01509527 a 0000 + 05037813 n 0207 | (of colors or sounds) intensely vivid or loud; "a violent clash of colors"; "her dress was a violent red"; "a violent noise"; "wild colors"; "wild shouts" -01514374 00 a 01 intensive 0 002 + 05036394 n 0102 ! 01514598 a 0101 | of agriculture; intended to increase productivity of a fixed area by expending more capital and labor; "intensive agriculture"; "intensive conditions" -01514598 00 a 01 extensive 0 001 ! 01514374 a 0101 | of agriculture; increasing productivity by using large areas with minimal outlay and labor; "producing wheat under extensive conditions"; "agriculture of the extensive type" -01514827 00 a 01 involved 0 008 ! 01516832 a 0101 & 01515280 a 0000 & 01515525 a 0000 & 01515692 a 0000 & 01516014 a 0000 & 01516207 a 0000 & 01516346 a 0000 & 01516605 a 0000 | connected by participation or association or use; "we accomplished nothing, simply because of the large number of people involved"; "the problems involved"; "the involved muscles"; "I don't want to get involved"; "everyone involved in the bribery case has been identified" -01515280 00 s 02 active 0 participating 0 004 & 01514827 a 0000 + 09764900 n 0101 + 14006945 n 0103 + 00407535 n 0101 | taking part in an activity; "an active member of the club"; "he was politically active"; "the participating organizations" -01515525 00 s 01 caught_up(p) 0 001 & 01514827 a 0000 | having become involved involuntarily; "caught up in the excitement of the crowd"; "caught up in the scandal" -01515692 00 s 02 concerned 0 interested 0 001 & 01514827 a 0000 | involved in or affected by or having a claim to or share in; "a memorandum to those concerned"; "an enterprise in which three men are concerned"; "factors concerned in the rise and fall of epidemics"; "the interested parties met to discuss the business" -01516014 00 s 02 embroiled 0 entangled 0 001 & 01514827 a 0000 | deeply involved especially in something complicated; "embroiled in the conflict"; "felt unwilling entangled in their affairs" -01516207 00 s 01 engaged 0 001 & 01514827 a 0000 | involved in military hostilities; "the desperately engaged ships continued the fight" -01516346 00 s 02 implicated 0 concerned 1 001 & 01514827 a 0000 | culpably involved; "all those concerned in the bribery case have been identified"; "named three officials implicated in the plot"; "an innocent person implicated by circumstances in a crime" -01516605 00 s 07 neck-deep 0 up_to_my_neck 0 up_to_your_neck 0 up_to_her_neck 0 up_to_his_neck 0 up_to_our_necks 0 up_to_their_necks 0 001 & 01514827 a 0000 | deeply involved; "neck-deep in work"; "up to their necks in debt" -01516832 00 a 01 uninvolved 0 002 ! 01514827 a 0101 & 01516961 a 0000 | not involved; "being uninvolved he remained objective" -01516961 00 s 01 unconcerned 0 001 & 01516832 a 0000 | not occupied or engaged with; "readers unconcerned with style" -01517081 00 a 01 military 1 005 ! 01517921 a 0101 & 01517317 a 0000 & 01517526 a 0000 & 01517632 a 0000 & 01517755 a 0000 | associated with or performed by members of the armed services as contrasted with civilians; "military police" -01517317 00 s 01 expeditionary 0 003 & 01517081 a 0000 ;c 08199025 n 0000 + 00968479 n 0101 | (used of military forces) designed for military operations abroad; "the French expeditionary force in Indochina" -01517526 00 s 01 martial(a) 0 001 & 01517081 a 0000 | of or relating to the armed forces; "martial law" -01517632 00 s 01 combatant 0 003 & 01517081 a 0000 + 09939313 n 0101 + 01092366 v 0102 | engaging in or ready for combat -01517755 00 s 01 noncombatant 1 002 & 01517081 a 0000 + 10360578 n 0101 | member of armed forces whose duties do not include fighting as e.g. a chaplain or surgeon -01517921 00 a 01 civilian 0 004 + 09924742 n 0101 ! 01517081 a 0101 & 01518161 a 0000 & 01518295 a 0000 | associated with civil life or performed by persons who are not active members of the military; "civilian clothing"; "civilian life" -01518161 00 s 01 civil 0 001 & 01517921 a 0000 | applying to ordinary citizens as contrasted with the military; "civil authorities" -01518295 00 s 01 noncombatant 2 001 & 01517921 a 0000 | used of civilians in time of war -01518386 00 a 01 military 2 004 ! 01518955 a 0101 & 01518577 a 0000 & 01518694 a 0000 & 01518860 a 0000 | characteristic of or associated with soldiers or the military; "military uniforms" -01518577 00 s 01 militaristic 0 003 & 01518386 a 0000 + 08199025 n 0101 + 06221974 n 0101 | imbued with militarism -01518694 00 s 04 soldierly 0 soldierlike 0 warriorlike 0 martial 2 002 & 01518386 a 0000 + 10622053 n 0101 | (of persons) befitting a warrior; "a military bearing" -01518860 00 s 02 warlike 0 martial 0 001 & 01518386 a 0000 | suggesting war or military life -01518955 00 a 02 unmilitary 0 nonmilitary 0 002 ! 01518386 a 0101 & 01519167 a 0000 | not associated with soldiers or the military; "unmilitary circles of government"; "fatigue duty involves nonmilitary labor" -01519167 00 s 01 unsoldierly 0 001 & 01518955 a 0000 | not conforming to military standards; "unsoldierly posture" -01519284 00 a 01 mitigated 0 004 ! 01519803 a 0101 & 01519465 a 0000 & 01519580 a 0000 & 01519673 a 0000 | made less severe or intense; "he gladly accepted the mitigated penalty" -01519465 00 s 03 alleviated 0 eased 0 relieved 0 001 & 01519284 a 0000 | (of pain or sorrow) made easier to bear -01519580 00 s 01 lessened 0 001 & 01519284 a 0000 | decreased in severity; made less harsh -01519673 00 s 03 quenched 0 satisfied 0 slaked 0 001 & 01519284 a 0000 | allayed; "his thirst quenched he was able to continue" -01519803 00 a 01 unmitigated 0 005 ! 01519284 a 0101 & 01520091 a 0000 & 01520655 a 0000 & 01520908 a 0000 & 01521017 a 0000 | not diminished or moderated in intensity or severity; sometimes used as an intensifier; "unmitigated suffering"; "an unmitigated horror"; "an unmitigated lie" -01520091 00 s 0e arrant(a) 0 complete(a) 0 consummate(a) 0 double-dyed(a) 0 everlasting(a) 0 gross(a) 0 perfect(a) 0 pure(a) 0 sodding(a) 0 stark(a) 0 staring(a) 0 thoroughgoing(a) 0 utter(a) 0 unadulterated 0 001 & 01519803 a 0000 | without qualification; used informally as (often pejorative) intensifiers; "an arrant fool"; "a complete coward"; "a consummate fool"; "a double-dyed villain"; "gross negligence"; "a perfect idiot"; "pure folly"; "what a sodding mess"; "stark staring mad"; "a thoroughgoing villain"; "utter nonsense"; "the unadulterated truth" -01520655 00 s 07 bally(a) 0 blinking(a) 0 bloody(a) 0 blooming(a) 0 crashing(a) 0 flaming(a) 0 fucking(a) 0 001 & 01519803 a 0000 | informal intensifiers; "what a bally (or blinking) nuisance"; "a bloody fool"; "a crashing bore"; "you flaming idiot" -01520908 00 s 01 bodacious 0 002 & 01519803 a 0000 ;u 07075172 n 0000 | incorrigible; "a bodacious gossip" -01521017 00 s 02 undiminished 0 unrelieved 0 001 & 01519803 a 0000 | not lessened or diminished; "unrelieved suffering" -01521139 00 a 01 tempered 1 001 ! 01521293 a 0101 | adjusted or attuned by adding a counterbalancing element; "criticism tempered with kindly sympathy" -01521293 00 a 01 untempered 1 002 ! 01521139 a 0101 & 01521427 a 0000 | not moderated or controlled; "his untempered individualism" -01521427 00 s 01 unmoderated 0 001 & 01521293 a 0000 | not made less extreme; "spoke with unmoderated harshness" -01521542 00 a 04 tempered 2 treated 4 hardened 4 toughened 4 003 ! 01522038 a 0101 & 01521776 a 0000 & 01521905 a 0000 | made hard or flexible or resilient especially by heat treatment; "a sword of tempered steel"; "tempered glass" -01521776 00 s 01 curable 0 002 & 01521542 a 0000 + 00527935 v 0101 | capable of being hardened by some additive or other agent -01521905 00 s 01 sunbaked 0 001 & 01521542 a 0000 | baked or hardened by exposure to sunlight; not burned; "sunbaked adobe bricks" -01522038 00 a 02 untempered 2 unhardened 4 002 ! 01521542 a 0101 & 01522214 a 0000 | not brought to a proper consistency or hardness; "untempered mortar"; "untempered steel" -01522214 00 s 02 brittle 0 unannealed 0 002 & 01522038 a 0000 + 04939547 n 0101 | (of metal or glass) not annealed and consequently easily cracked or fractured -01522376 00 a 01 mobile 0 019 ^ 01561771 a 0000 + 04773351 n 0101 ! 01525116 a 0101 & 01522895 a 0000 & 01522985 a 0000 & 01523136 a 0000 & 01523249 a 0000 & 01523450 a 0000 & 01523567 a 0000 & 01523724 a 0000 & 01523968 a 0000 & 01524102 a 0000 & 01524215 a 0000 & 01524344 a 0000 & 01524445 a 0000 & 01524562 a 0000 & 01524632 a 0000 & 01524722 a 0000 & 01525017 a 0000 | moving or capable of moving readily (especially from place to place); "a mobile missile system"; "the tongue is...the most mobile articulator" -01522895 00 s 01 airborne 0 001 & 01522376 a 0000 | moved or conveyed by or through air -01522985 00 s 02 ambulant 0 ambulatory 0 003 & 01522376 a 0000 + 01911698 v 0201 + 01911698 v 0101 | able to walk about; "the patient is ambulatory" -01523136 00 s 01 floating 0 001 & 01522376 a 0000 | inclined to move or be moved about; "a floating crap game" -01523249 00 s 02 maneuverable 0 manoeuvrable 0 004 & 01522376 a 0000 + 04774198 n 0202 + 04774198 n 0101 + 01931768 v 0102 | capable of maneuvering or changing position; "a highly maneuverable ship" -01523450 00 s 03 mechanized 0 mechanised 0 motorized 0 001 & 01522376 a 0000 | using vehicles; "motorized warfare" -01523567 00 s 01 motile 0 004 & 01522376 a 0000 ;c 01326291 n 0000 + 10165808 n 0101 + 04773761 n 0101 | (of spores or microorganisms) capable of movement -01523724 00 s 05 movable 0 moveable 0 transferable 0 transferrable 0 transportable 0 005 & 01522376 a 0000 + 01850315 v 0201 + 04773899 n 0101 + 04773899 n 0102 + 01850315 v 0101 | capable of being moved or conveyed from one place to another -01523968 00 s 01 perambulating 0 001 & 01522376 a 0000 | strolling or walking around; "perambulating nursemaids with their charges" -01524102 00 s 01 racy 0 002 & 01522376 a 0000 + 07458453 n 0101 | designed or suitable for competing in a race -01524215 00 s 02 raisable 0 raiseable 0 001 & 01522376 a 0000 | capable of being raised; "the roadster had a raisable sunroof" -01524344 00 s 01 rangy 0 002 & 01522376 a 0000 + 08629199 n 0101 | adapted to wandering or roaming -01524445 00 s 01 rotatable 0 001 & 01522376 a 0000 | capable of being rotated; "the theater had a rotatable stage" -01524562 00 s 01 seaborne 0 001 & 01522376 a 0000 | conveyed by sea -01524632 00 s 01 transplantable 0 001 & 01522376 a 0000 | capable of being transplanted -01524722 00 s 01 versatile 0 002 & 01522376 a 0000 ;c 06037666 n 0000 | able to move freely in all directions; "an owl's versatile toe can move backward and forward"; "an insect's versatile antennae can move up and down or laterally"; "a versatile anther of a flower moves freely in the wind" -01525017 00 s 01 waterborne 0 001 & 01522376 a 0000 | transported by water; "waterborne freight" -01525116 00 a 01 immobile 0 007 ^ 01564073 a 0000 + 01207149 v 0103 + 00269140 v 0101 ! 01522376 a 0101 & 01525320 a 0000 & 01525502 a 0000 & 01525659 a 0000 | not capable of movement or of being moved -01525320 00 s 04 immovable 0 immoveable 0 stabile 0 unmovable 0 003 & 01525116 a 0000 + 04776699 n 0102 + 04776699 n 0101 | not able or intended to be moved; "the immovable hills" -01525502 00 s 02 nonmotile 0 immotile 0 003 & 01525116 a 0000 ;c 01326291 n 0000 + 04776453 n 0201 | (of spores or microorganisms) not capable of movement -01525659 00 s 01 stiff 0 002 & 01525116 a 0000 + 05023591 n 0101 | not moving or operating freely; "a stiff hinge" -01525776 00 a 01 portable 0 006 + 03985069 n 0101 + 04776176 n 0101 ! 01526480 a 0101 & 01525984 a 0000 & 01526062 a 0000 & 01526262 a 0000 | easily or conveniently transported; "a portable television set" -01525984 00 s 01 man-portable 0 001 & 01525776 a 0000 | portable by one man -01526062 00 s 01 movable 0 003 & 01525776 a 0000 + 04773899 n 0102 + 01850315 v 0101 | (of personal property as opposed to real estate) can be moved from place to place (especially carried by hand) -01526262 00 s 02 takeout 0 take-away 0 002 & 01525776 a 0000 ;r 08860123 n 0000 | of or involving food to be taken and eaten off the premises; "takeout pizza"; "the takeout counter"; "`take-away' is chiefly British" -01526480 00 a 01 unportable 0 001 ! 01525776 a 0101 | not portable; not easily moved or transported -01526582 00 a 01 removable 0 003 ! 01527075 a 0101 & 01526769 a 0000 & 01526905 a 0000 | capable of being removed or taken away or dismissed; "a removable cord"; "removable partitions" -01526769 00 s 01 dismissible 0 002 & 01526582 a 0000 + 02402825 v 0105 | subject to dismissal; "appointed and removable by the mayor" -01526905 00 s 02 extractable 0 extractible 0 005 & 01526582 a 0000 + 01459392 v 0201 + 01351754 v 0203 + 01351170 v 0201 + 00229280 v 0202 | capable of being extracted -01527075 00 a 01 irremovable 0 002 ! 01526582 a 0101 & 01527245 a 0000 | incapable of being removed or away or dismiss; "irremovable boulders"; "irremovable obstacles" -01527245 00 s 01 tenured 0 001 & 01527075 a 0000 | appointed for life and not subject to dismissal except for a grave crime; "an irremovable officer"; "a tenured professor" -01527420 00 a 02 metallic 0 metal(a) 0 014 + 14586769 n 0102 + 14625458 n 0102 ! 01529293 a 0101 & 01527930 a 0000 & 01528039 a 0000 & 01528126 a 0000 & 01528239 a 0000 & 01528349 a 0000 & 01528463 a 0000 & 01528644 a 0000 & 01528730 a 0000 & 01528946 a 0000 & 01529053 a 0000 & 01529167 a 0000 | containing or made of or resembling or characteristic of a metal; "a metallic compound"; "metallic luster"; "the strange metallic note of the meadow lark, suggesting the clash of vibrant blades"- Ambrose Bierce -01527930 00 s 01 all-metal 0 001 & 01527420 a 0000 | consisting completely of metal; "all-metal airplanes" -01528039 00 s 01 aluminiferous 0 001 & 01527420 a 0000 | containing alum or aluminum -01528126 00 s 01 antimonial 0 002 & 01527420 a 0000 + 14628668 n 0101 | containing antimony; "antimonial lead" -01528239 00 s 01 argentiferous 0 001 & 01527420 a 0000 | containing or yielding silver; "argentiferous ore" -01528349 00 s 02 auriferous 0 gold-bearing 0 001 & 01527420 a 0000 | containing gold; "auriferous quartz veins" -01528463 00 s 02 bimetal 0 bimetallic 0 003 & 01527420 a 0000 + 14776237 n 0201 + 14776237 n 0101 | formed of two different metals or alloys; especially in sheets bonded together -01528644 00 s 01 bronze 0 001 & 01527420 a 0000 | made from or consisting of bronze -01528730 00 s 03 gold 0 golden 0 gilded 0 003 & 01527420 a 0000 + 14638799 n 0101 + 13371760 n 0101 | made from or covered with gold; "gold coins"; "the gold dome of the Capitol"; "the golden calf"; "gilded icons" -01528946 00 s 03 metallike 0 metal-looking 0 metallic-looking 0 001 & 01527420 a 0000 | resembling metal -01529053 00 s 01 silver 0 001 & 01527420 a 0000 | made from or largely consisting of silver; "silver bracelets" -01529167 00 s 01 tinny 0 001 & 01527420 a 0000 | thin and metallic in sound; lacking resonance; "an unpleasant tinny voice" -01529293 00 a 02 nonmetallic 0 nonmetal 0 003 + 14627246 n 0201 ! 01527420 a 0101 & 01529479 a 0000 | not containing or resembling or characteristic of a metal; "nonmetallic elements" -01529479 00 s 01 metalloid 0 001 & 01529293 a 0000 | of or being a nonmetallic element that has some of the properties of metal; "arsenic is a metalloid element" -01529643 00 a 01 metamorphic 0 008 + 13514880 n 0101 ! 01531180 a 0101 & 01529897 a 0000 & 01530076 a 0000 & 01530378 a 0000 & 01530622 a 0000 & 01530801 a 0000 & 01531019 a 0000 | characterized by metamorphosis or change in physical form or substance -01529897 00 s 01 epimorphic 0 002 & 01529643 a 0000 ;c 06037666 n 0000 | characterized by incomplete metamorphosis; having the same number of body segments in successive stages -01530076 00 s 04 hemimetabolous 0 hemimetabolic 0 hemimetamorphous 0 hemimetamorphic 0 005 & 01529643 a 0000 + 13492789 n 0301 + 13492789 n 0202 + 13492789 n 0203 + 13492789 n 0102 | (of an insect with aquatic young) undergoing incomplete metamorphosis in which the young does not resemble the adult -01530378 00 s 02 heterometabolous 0 heterometabolic 0 003 & 01529643 a 0000 + 13493003 n 0202 + 13493003 n 0201 | (of an insect) undergoing incomplete metamorphosis in which the nymph is essentially like the adult and there is no pupal stage -01530622 00 s 02 holometabolic 0 holometabolous 0 004 & 01529643 a 0000 + 13493692 n 0202 + 13493692 n 0201 + 13493692 n 0101 | (of an insect) undergoing complete metamorphosis -01530801 00 s 01 metamorphous 0 003 & 01529643 a 0000 ;c 06037666 n 0000 + 00402128 n 0101 | produced by metamorphosis; "most insects are metamorphic as witness the stages as a butterfly develops from a caterpillar" -01531019 00 s 01 changed 0 002 & 01529643 a 0000 ;c 06115701 n 0000 | changed in constitution or structure or composition by metamorphism; "metamorphic rocks" -01531180 00 a 01 nonmetamorphic 0 002 ! 01529643 a 0101 & 01531274 a 0000 | not metamorphic -01531274 00 s 01 ametabolic 0 001 & 01531180 a 0000 | undergoing no (or only slight) metamorphosis -01531375 00 a 01 moderate 0 014 ^ 01508719 a 0000 ^ 02401590 a 0000 = 05117660 n 0000 + 05146904 n 0102 + 05117660 n 0102 ! 01533120 a 0101 & 01531957 a 0000 & 01532149 a 0000 & 01532261 a 0000 & 01532454 a 0000 & 01532586 a 0000 & 01532653 a 0000 & 01532760 a 0000 & 01532912 a 0000 | being within reasonable or average limits; not excessive or extreme; "moderate prices"; "a moderate income"; "a moderate fine"; "moderate demands"; "a moderate estimate"; "a moderate eater"; "moderate success"; "a kitchen of moderate size"; "the X-ray showed moderate enlargement of the heart" -01531957 00 s 03 average 0 intermediate 0 medium 0 001 & 01531375 a 0000 | around the middle of a scale of evaluation; "an orange of average size"; "intermediate capacity"; "medium bombers" -01532149 00 s 02 cautious 0 conservative 0 001 & 01531375 a 0000 | avoiding excess; "a conservative estimate" -01532261 00 s 03 fair 0 fairish 0 reasonable 0 004 & 01531375 a 0000 + 05146904 n 0301 + 05118062 n 0301 + 04839154 n 0101 | not excessive or extreme; "a fairish income"; "reasonable prices" -01532454 00 s 01 indifferent 0 001 & 01531375 a 0000 | neither too great nor too little; "a couple of indifferent hills to climb" -01532586 00 s 01 limited 0 001 & 01531375 a 0000 | not excessive -01532653 00 s 01 middle-of-the-road 0 001 & 01531375 a 0000 | not extreme, especially in political views -01532760 00 s 01 minimalist 0 003 & 01531375 a 0000 ;c 01124794 n 0000 ;c 06148148 n 0000 | advocating minimal reforms (as in government or politics) -01532912 00 s 02 modest 0 small 0 003 & 01531375 a 0000 + 05110583 n 0201 + 05146904 n 0103 | not large but sufficient in size or amount; "a modest salary"; "modest inflation"; "helped in my own small way" -01533120 00 a 01 immoderate 0 017 ^ 02402268 a 0000 ^ 01509527 a 0000 ^ 01944660 a 0000 = 05117660 n 0000 + 05118251 n 0102 ! 01531375 a 0101 & 01533535 a 0000 & 01533659 a 0000 & 01533806 a 0000 & 01533974 a 0000 & 01534282 a 0000 & 01534648 a 0000 & 01534858 a 0000 & 01535082 a 0000 & 01535270 a 0000 & 01535481 a 0000 & 01535583 a 0000 | beyond reasonable limits; "immoderate laughter"; "immoderate spending" -01533535 00 s 01 abnormal 0 001 & 01533120 a 0000 | much greater than the normal; "abnormal profits"; "abnormal ambition" -01533659 00 s 01 all-fired 0 002 & 01533120 a 0000 ;u 07075172 n 0000 | extreme; used as an intensifier; "why is he in such an all-fired hurry?" -01533806 00 s 03 exaggerated 0 overdone 0 overstated 0 001 & 01533120 a 0000 | represented as greater than is true or reasonable; "an exaggerated opinion of oneself" -01533974 00 s 04 excessive 0 inordinate 0 undue 0 unreasonable 0 005 & 01533120 a 0000 + 05118437 n 0203 + 02669081 v 0101 + 01105639 v 0105 + 05118437 n 0102 | beyond normal limits; "excessive charges"; "a book of inordinate length"; "his dress stops just short of undue elegance"; "unreasonable demands" -01534282 00 s 06 exorbitant 0 extortionate 0 outrageous 0 steep 0 unconscionable 0 usurious 0 004 & 01533120 a 0000 + 13320045 n 0601 + 05119096 n 0302 + 05119096 n 0101 | greatly exceeding bounds of reason or moderation; "exorbitant rent"; "extortionate prices"; "spends an outrageous amount on entertainment"; "usurious interest rate"; "unconscionable spending" -01534648 00 s 03 extraordinary 0 over-the-top 0 sinful 0 002 & 01533120 a 0000 + 04796490 n 0101 | far more than usual or expected; "an extraordinary desire for approval"; "it was an over-the-top experience" -01534858 00 s 01 extreme 0 003 & 01533120 a 0000 + 14476521 n 0101 + 13942405 n 0101 | far beyond a norm in quantity or amount or degree; to an utmost degree; "an extreme example"; "extreme temperatures"; "extreme danger" -01535082 00 s 01 extreme 1 001 & 01533120 a 0000 | beyond a norm in views or actions; "an extreme conservative"; "an extreme liberal"; "extreme views on integration"; "extreme opinions" -01535270 00 s 03 extremist 0 radical 0 ultra 0 001 & 01533120 a 0000 | (used of opinions and actions) far beyond the norm; "extremist political views"; "radical opinions on education"; "an ultra conservative" -01535481 00 s 01 far 0 001 & 01533120 a 0000 | beyond a norm in opinion or actions; "the far right" -01535583 00 s 01 stark 0 002 & 01533120 a 0000 + 05124534 n 0101 | complete or extreme; "stark poverty"; "a stark contrast" -01535709 00 a 01 modern 0 011 ^ 00666058 a 0000 ^ 00816481 a 0000 ^ 01640850 a 0000 = 05050668 n 0000 + 05050668 n 0101 ! 01536911 a 0101 & 01536094 a 0000 & 01536276 a 0000 & 01536445 a 0000 & 01536641 a 0000 & 01536745 a 0000 | belonging to the modern era; since the Middle Ages; "modern art"; "modern furniture"; "modern history"; "totem poles are modern rather than prehistoric" -01536094 00 s 02 contemporary 0 modern-day 0 001 & 01535709 a 0000 | characteristic of the present; "contemporary trends in design"; "the role of computers in modern-day medicine" -01536276 00 s 01 neo 0 002 & 01535709 a 0000 ;u 06307152 n 0000 | (used as a combining form) recent or new; "`neo' is a combining form in words like `neocolonialism'" -01536445 00 s 02 red-brick 0 redbrick 0 003 & 01535709 a 0000 ;r 08860123 n 0000 ;c 04511002 n 0000 | of or relating to British universities founded in the late 19th century or the 20th century -01536641 00 s 01 ultramodern 0 001 & 01535709 a 0000 | extremely modern; "Dadism and ultramodern art" -01536745 00 s 01 moderne 0 002 & 01535709 a 0000 ;c 00933420 n 0000 | of or relating to a popularization of art deco that used bright colors and rectangular shapes -01536911 00 a 01 nonmodern 0 008 ^ 01638438 a 0000 ^ 01727926 a 0000 ! 01535709 a 0101 & 01537144 a 0000 & 01537269 a 0000 & 01537448 a 0000 & 01537628 a 0000 & 01537759 a 0000 | not modern; of or characteristic of an earlier time -01537144 00 s 01 antebellum 0 001 & 01536911 a 0000 | belonging to a period before a war especially the American Civil War -01537269 00 s 01 horse-and-buggy 0 001 & 01536911 a 0000 | relating to the time before automobiles (and other inventions) changed the way people lived in industrialized nations -01537448 00 s 03 medieval 0 mediaeval 0 gothic 0 001 & 01536911 a 0000 | as if belonging to the Middle Ages; old-fashioned and unenlightened; "a medieval attitude toward dating" -01537628 00 s 01 old-world 0 001 & 01536911 a 0000 | characteristic of former times especially in Europe; "an old-world cottage" -01537759 00 s 01 Victorian 0 001 & 01536911 a 0000 | typical of the moral standards or conduct of the age of Queen Victoria -01537885 00 a 01 modest 1 008 ^ 00682932 a 0000 = 04900947 n 0000 + 04900947 n 0102 ! 01538858 a 0101 & 01538118 a 0000 & 01538311 a 0000 & 01538583 a 0000 & 01538690 a 0000 | not offensive to sexual mores in conduct or appearance -01538118 00 s 03 coy 0 demure 0 overmodest 0 004 & 01537885 a 0000 + 04788159 n 0202 + 04900236 n 0201 + 04788159 n 0101 | affectedly modest or shy especially in a playful or provocative way -01538311 00 s 01 decent 0 002 & 01537885 a 0000 + 04900739 n 0101 | observing conventional sexual mores in speech or behavior or dress; "a modest neckline in her dress"; "though one of her shoulder straps had slipped down, she was perfectly decent by current standards" -01538583 00 s 01 decent 2 002 & 01537885 a 0000 ;u 07075172 n 0000 | decently clothed; "are you decent?" -01538690 00 s 01 shamefaced 0 002 & 01537885 a 0000 + 07507560 n 0101 | extremely modest or shy; "cheerfully bearing reproaches but shamefaced at praise"- H.O.Taylor -01538858 00 a 01 immodest 1 004 ^ 00683185 a 0000 = 04900947 n 0000 ! 01537885 a 0101 & 01539022 a 0000 | offending against sexual mores in conduct or appearance -01539022 00 s 01 indecent 0 003 & 01538858 a 0000 + 04902925 n 0101 + 00737536 n 0101 | offending against sexual mores in conduct or appearance; "a bathing suit considered indecent by local standards" -01539225 00 a 01 modest 2 004 ^ 01892953 a 0000 + 04900947 n 0102 ! 01539642 a 0101 & 01539444 a 0000 | marked by simplicity; having a humble opinion of yourself; "a modest apartment"; "too modest to wear his medals" -01539444 00 s 02 retiring 0 unassuming 0 002 & 01539225 a 0000 + 04786595 n 0202 | not arrogant or presuming; "unassuming to a fault, skeptical about the value of his work"; "a shy retiring girl" -01539642 00 a 01 immodest 2 006 ^ 01994602 a 0000 ^ 00787136 a 0000 ^ 01889256 a 0000 ! 01539225 a 0101 & 01539887 a 0000 & 01540102 a 0000 | having or showing an exaggerated opinion of your importance, ability, etc; "brash immodest boasting" -01539887 00 s 01 important 0 001 & 01539642 a 0000 | having or suggesting a consciousness of high position; "recited the decree with an important air"; "took long important strides in the direction of his office" -01540102 00 s 02 overweening 0 uppity 0 002 & 01539642 a 0000 + 04839009 n 0201 | presumptuously arrogant; "had a witty but overweening manner"; "no idea how overweening he would be"- S.V.Benet; "getting a little uppity and needed to be slapped down"- NY Times -01540365 00 a 01 modified 0 005 ^ 01913200 a 0000 ^ 02506555 a 0000 ! 01541013 a 0101 & 01540637 a 0000 & 01540871 a 0000 | changed in form or character; "their modified stand made the issue more acceptable"; "the performance of the modified aircraft was much improved" -01540637 00 s 02 adapted 0 altered 0 001 & 01540365 a 0000 | changed in order to improve or made more fit for a particular purpose; "seeds precisely adapted to the area"; "instructions altered to suit the children's different ages" -01540871 00 s 02 restricted 0 qualified 0 002 & 01540365 a 0000 ;c 06174404 n 0000 | restricted in meaning; (as e.g. `man' in `a tall man') -01541013 00 a 01 unmodified 0 004 ^ 01913715 a 0000 ! 01540365 a 0101 & 01541156 a 0000 & 01541258 a 0000 | not changed in form or character -01541156 00 s 01 unadapted 0 001 & 01541013 a 0000 | not changed in form or character for a purpose -01541258 00 s 01 unrestricted 0 002 & 01541013 a 0000 ;c 06174404 n 0000 | not restricted or modified in meaning; "unrestricted verbs are usually stronger than those qualified by adverbs" -01541448 00 a 01 modulated 0 002 ! 01541632 a 0101 & 01541567 a 0000 | changed or adjusted in pitch, tone, or volume -01541567 00 s 01 softened 0 001 & 01541448 a 0000 | toned down -01541632 00 a 01 unmodulated 0 002 ! 01541448 a 0101 & 01541828 a 0000 | characterized by lack of variation in pitch, tone, or volume; "he lectured in an unmodulated voice edged with hysteria" -01541828 00 s 04 flat 0 monotone 0 monotonic 0 monotonous 0 005 & 01541632 a 0000 + 07084747 n 0301 + 07084560 n 0301 + 07084560 n 0201 + 07069747 n 0101 | sounded or spoken in a tone unvarying in pitch; "the owl's faint monotonous hooting" -01542071 00 a 01 molar(a) 0 002 ;c 06136258 n 0000 ! 01542252 a 0101 | pertaining to large units of behavior; "such molar problems of personality as the ego functions"--R.R. Hunt -01542252 00 a 01 molecular(a) 0 003 ;c 06136258 n 0000 + 14585519 n 0102 ! 01542071 a 0101 | relating to simple or elementary organization; "proceed by more and more detailed analysis to the molecular facts of perception"--G.A. Miller -01542489 00 a 01 monoclinous 0 003 ;c 06066555 n 0000 ! 01542744 a 0101 & 01542629 a 0000 | having pistils and stamens in the same flower -01542629 00 s 01 hermaphroditic 0 002 & 01542489 a 0000 + 10172080 n 0101 | of or relating to monoclinous plants -01542744 00 a 01 diclinous 0 002 ;c 06066555 n 0000 ! 01542489 a 0101 | having pistils and stamens in separate flowers -01542865 00 a 03 monoecious 0 monecious 0 monoicous 0 005 ! 01543633 a 0101 & 01543088 a 0000 & 01543225 a 0000 & 01543361 a 0000 & 01543502 a 0000 | having male and female reproductive organs in the same plant or animal -01543088 00 s 01 autoicous 0 001 & 01542865 a 0000 | having male and female reproductive organs in separate clusters on the same plant -01543225 00 s 03 heteroicous 0 polyoicous 0 polygamous 0 001 & 01542865 a 0000 | having several forms of gametoecia on the same plant -01543361 00 s 02 synoicous 0 synoecious 0 001 & 01542865 a 0000 | having male and female reproductive organs mixed in the same gametoecium -01543502 00 s 01 paroicous 0 001 & 01542865 a 0000 | having male and female reproductive organs separate in a single gametoecium -01543633 00 a 02 dioecious 0 dioecian 0 001 ! 01542865 a 0101 | having male and female reproductive organs in separate plants or animals -01543772 00 a 01 monophonic 0 005 ;c 07020895 n 0000 + 07024705 n 0101 ! 01544169 a 0101 & 01543937 a 0000 & 01544059 a 0000 | consisting of a single melodic line -01543937 00 s 01 homophonic 0 002 & 01543772 a 0000 + 07031144 n 0101 | having a single melodic line with accompaniment -01544059 00 s 02 monodic 0 monodical 0 002 & 01543772 a 0000 + 07024705 n 0203 | having a single vocal part -01544169 00 a 02 polyphonic 0 contrapuntal 0 002 ;c 07020895 n 0000 ! 01543772 a 0101 | having two or more independent but harmonically related melodic parts sounding together -01544347 00 a 01 monogamous 0 005 + 13966007 n 0101 + 13966007 n 0102 ! 01544856 a 0101 & 01544580 a 0000 & 01544688 a 0000 | (used of relationships and of individuals) having one mate; "monogamous marriage"; "monogamous for life" -01544580 00 s 01 monandrous 0 002 & 01544347 a 0000 + 13965888 n 0101 | having only one husband at a time -01544688 00 s 02 monogynous 0 monogynic 0 003 & 01544347 a 0000 + 13966201 n 0201 + 13966201 n 0101 | having one head or chief wife at a time (along with concubines) -01544856 00 a 01 polygamous 0 005 + 13966925 n 0101 ! 01544347 a 0101 & 01545059 a 0000 & 01545203 a 0000 & 01545317 a 0000 | having more than one mate at a time; used of relationships and individuals -01545059 00 s 01 bigamous 0 002 & 01544856 a 0000 + 00775095 n 0101 | of illegal marriage to a second person while legally married to a first -01545203 00 s 01 polyandrous 0 002 & 01544856 a 0000 + 13966795 n 0101 | having more than one husband at a time -01545317 00 s 01 polygynous 0 002 & 01544856 a 0000 + 13967089 n 0101 | having more than one wife at a time -01545427 00 a 01 monolingual 0 001 ! 01545571 a 0101 | using or knowing only one language; "monolingual speakers"; "a monolingual dictionary" -01545571 00 a 01 multilingual 0 004 ! 01545427 a 0101 & 01545777 a 0000 & 01545904 a 0000 & 01546110 a 0000 | using or knowing more than one language; "a multilingual translator"; "a multilingual nation" -01545777 00 s 01 bilingual 0 002 & 01545571 a 0000 + 09854290 n 0101 | using or knowing two languages; "bilingual education" -01545904 00 s 01 polyglot 0 002 & 01545571 a 0000 + 10264219 n 0102 | having a command of or composed in many languages; "a polyglot traveler"; "a polyglot Bible contains versions in different languages" -01546110 00 s 01 trilingual 0 001 & 01545571 a 0000 | using or knowing three languages; "trilingual speakers" -01546222 00 a 02 monovalent 1 univalent 4 003 = 05034473 n 0000 ;c 06084469 n 0000 ! 01546349 a 0101 | having a valence of 1 -01546349 00 a 02 polyvalent 1 multivalent 4 007 = 05034473 n 0000 ;c 06084469 n 0000 + 14570330 n 0204 + 14570330 n 0203 + 14570330 n 0102 + 14570330 n 0101 ! 01546222 a 0101 | having more than one valence, or having a valence of 3 or higher -01546593 00 a 01 univalent 2 004 = 05034989 n 0000 ;c 06075527 n 0000 ! 01546826 a 0101 ! 01547007 a 0101 | used of a chromosome that is not paired or united with its homologous chromosome during synapsis; "a univalent chromosome" -01546826 00 a 02 bivalent 2 double 0 004 = 05034989 n 0000 ;c 06075527 n 0000 ! 01547007 a 0101 ! 01546593 a 0101 | used of homologous chromosomes associated in pairs in synapsis -01547007 00 a 01 multivalent 0 004 = 05034989 n 0000 ;c 06075527 n 0000 ! 01546593 a 0101 ! 01546826 a 0101 | used of the association of three or more homologous chromosomes during the first division of meiosis -01547220 00 a 02 monotonic 0 monotone 4 004 ;c 06000644 n 0000 ! 01547721 a 0101 & 01547470 a 0000 & 01547595 a 0000 | of a sequence or function; consistently increasing and never decreasing or consistently decreasing and never increasing in value -01547470 00 s 01 decreasing_monotonic 0 001 & 01547220 a 0000 | consistently decreasing; "a decreasing monotonic function" -01547595 00 s 01 increasing_monotonic 0 001 & 01547220 a 0000 | consistently increasing; "an increasing monotonic function" -01547721 00 a 01 nonmonotonic 0 003 ;c 06000644 n 0000 ;c 06163751 n 0000 ! 01547220 a 0101 | not monotonic -01547831 00 a 01 monovalent 2 003 = 05034989 n 0000 ;c 06051542 n 0000 ! 01547961 a 0101 | containing only one kind of antibody -01547961 00 a 01 polyvalent 2 005 = 05034989 n 0000 ;c 06051542 n 0000 + 14570091 n 0102 + 14570091 n 0101 ! 01547831 a 0101 | containing several antibodies each capable of counteracting a specific antigen; "a polyvalent vaccine" -01548193 00 a 01 moral 0 013 ^ 00360650 a 0000 ^ 01129977 a 0000 ^ 01226240 a 0000 ^ 02036578 a 0000 ^ 02513269 a 0000 = 04846770 n 0000 + 04846770 n 0101 ! 01549291 a 0101 & 01548694 a 0000 & 01548808 a 0000 & 01548925 a 0000 & 01549087 a 0000 & 01549185 a 0000 | concerned with principles of right and wrong or conforming to standards of behavior and character based on those principles; "moral sense"; "a moral scrutiny"; "a moral lesson"; "a moral quandary"; "moral convictions"; "a moral life" -01548694 00 s 01 chaste 0 002 & 01548193 a 0000 + 01069125 n 0101 | abstaining from unlawful sexual intercourse -01548808 00 s 02 clean 0 clean-living 0 002 & 01548193 a 0000 + 13990389 n 0101 | morally pure; "led a clean life" -01548925 00 s 01 moralistic 0 005 & 01548193 a 0000 + 09183693 n 0104 + 04846770 n 0101 + 07153641 n 0101 + 00876062 n 0101 | narrowly and conventionally moral -01549087 00 s 01 righteous 0 001 & 01548193 a 0000 | morally justified; "righteous indignation" -01549185 00 s 01 incorrupt 0 002 & 01548193 a 0000 + 04870040 n 0101 | free of corruption or immorality -01549291 00 a 01 immoral 0 010 ^ 01131043 a 0000 ^ 00361509 a 0000 ^ 02037272 a 0000 ^ 02513740 a 0000 = 04846770 n 0000 + 04850589 n 0101 ! 01548193 a 0101 & 01549568 a 0000 & 01549964 a 0000 & 01550304 a 0000 | deliberately violating accepted principles of right and wrong -01549568 00 s 09 debauched 0 degenerate 0 degraded 0 dissipated 0 dissolute 0 libertine 0 profligate 0 riotous 0 fast 0 006 & 01549291 a 0000 + 00511212 n 0805 + 10505942 n 0703 + 10257647 n 0601 + 04884817 n 0501 + 10419047 n 0204 | unrestrained by convention or morality; "Congreve draws a debauched aristocratic society"; "deplorably dissipated and degraded"; "riotous living"; "fast women" -01549964 00 s 04 disgraceful 0 scandalous 0 shameful 0 shocking 0 004 & 01549291 a 0000 + 04808281 n 0301 + 07306252 n 0201 + 04808516 n 0201 | giving offense to moral sensibilities and injurious to reputation; "scandalous behavior"; "the wicked rascally shameful conduct of the bankrupt"- Thackeray; "the most shocking book of its time" -01550304 00 s 01 scrofulous 0 001 & 01549291 a 0000 | morally contaminated; "denounce the scrofulous wealth of the times"- J.D.Hart -01550438 00 a 01 licit 0 001 ! 01550572 a 0101 | sanctioned by custom or morality especially sexual morality; "a wife's licit love" -01550572 00 a 01 illicit 0 003 ! 01550438 a 0101 & 01550779 a 0000 & 01551026 a 0000 | contrary to accepted morality (especially sexual morality) or convention; "an illicit association with his secretary" -01550779 00 s 03 adulterous 0 extramarital 0 extracurricular 0 002 & 01550572 a 0000 + 00848466 n 0101 | characterized by adultery; "an adulterous relationship"; "extramarital affairs"; "the extracurricular activities of a philandering husband" -01551026 00 s 01 unlawful 0 001 & 01550572 a 0000 | not morally right or permissible; "unlawful love" -01551130 00 a 01 principled 0 003 ^ 02085449 a 0000 ! 01551461 a 0101 & 01551377 a 0000 | based on or manifesting objectively defined standards of rightness or morality; "principled pragmatism and unprincipled expediency"; "a principled person" -01551377 00 s 01 high-principled 0 001 & 01551130 a 0000 | having high principles -01551461 00 a 01 unprincipled 0 002 ^ 02085898 a 0000 ! 01551130 a 0101 | lacking principles or moral scruples; "freedom from coarse unprincipled calumny"- A.E.Stevenson -01551633 00 a 01 many 0 009 ^ 01556355 a 0000 ^ 02267308 a 0000 = 05121908 n 0000 ! 01552885 a 0101 & 01552162 a 0000 & 01552255 a 0000 & 01552419 a 0000 & 01552634 a 0000 & 01552802 a 0000 | a quantifier that can be used with count nouns and is often preceded by `as' or `too' or `so' or `that'; amounting to a large but indefinite number; "many temptations"; "the temptations are many"; "a good many"; "a great many"; "many directions"; "take as many apples as you like"; "too many clouds to see"; "never saw so many people" -01552162 00 s 01 galore(ip) 0 001 & 01551633 a 0000 | in great numbers; "daffodils galore" -01552255 00 s 03 many_a(a) 0 many_an(a) 0 many_another(a) 0 001 & 01551633 a 0000 | each of a large indefinite number; "many a man"; "many another day will come" -01552419 00 s 02 numerous 0 legion(p) 0 003 & 01551633 a 0000 + 05121908 n 0102 + 05121908 n 0101 | amounting to a large indefinite number; "numerous times"; "the family was numerous"; "Palomar's fans are legion" -01552634 00 s 01 some(a) 0 001 & 01551633 a 0000 | relatively many but unspecified in number; "they were here for some weeks"; "we did not meet again for some years" -01552802 00 s 02 umpteen 0 umteen 0 001 & 01551633 a 0000 | innumerable but many -01552885 00 a 01 few 0 008 ^ 01556616 a 0000 ^ 02267308 a 0000 = 05121908 n 0000 + 08388074 n 0101 + 05123098 n 0101 ! 01551633 a 0101 & 01553340 a 0000 & 01553494 a 0000 | a quantifier that can be used with count nouns and is often preceded by `a'; a small but indefinite number; "a few weeks ago"; "a few more wagons than usual"; "an invalid's pleasures are few and far between"; "few roses were still blooming"; "few women have led troops in battle" -01553340 00 s 02 a_few(a) 0 a_couple_of(a) 0 001 & 01552885 a 0000 | more than one but indefinitely small in number; "a few roses"; "a couple of roses" -01553494 00 s 01 hardly_a(a) 0 001 & 01552885 a 0000 | very few; "hardly a man is now alive who remembers that famous date and year" -01553629 00 a 01 much(a) 0 007 ^ 01555133 a 0000 + 05099662 n 0101 ! 01554510 a 0101 & 01553925 a 0000 & 01554063 a 0000 & 01554230 a 0000 & 01554412 a 0000 | (quantifier used with mass nouns) great in quantity or degree or extent; "not much rain"; "much affection"; "much grain is in storage" -01553925 00 s 01 overmuch 0 002 & 01553629 a 0000 + 05119367 n 0103 | very great in quantity; overabundant; "showed overmuch affection" -01554063 00 s 01 some(a) 0 001 & 01553629 a 0000 | relatively much but unspecified in amount or extent; "we talked for some time"; "he was still some distance away" -01554230 00 s 01 such(a) 0 001 & 01553629 a 0000 | of so extreme a degree or extent; "such weeping"; "so much weeping"; "such a help"; "such grief"; "never dreamed of such beauty" -01554412 00 s 01 untold 0 001 & 01553629 a 0000 | of an incalculable amount; "untold suffering" -01554510 00 a 02 little(a) 3 slight 0 003 ^ 01555416 a 0000 ! 01553629 a 0101 & 01554940 a 0000 | (quantifier used with mass nouns) small in quantity or degree; not much or almost none or (with `a') at least some; "little rain fell in May"; "gave it little thought"; "little time is left"; "we still have little money"; "a little hope remained"; "there's slight chance that it will work"; "there's a slight chance it will work" -01554940 00 s 01 small(a) 0 002 & 01554510 a 0000 ;u 07073447 n 0000 | slight or limited; especially in degree or intensity or scope; "a series of death struggles with small time in between" -01555133 00 a 02 more(a) 1 more_than 0 003 ^ 01553629 a 0000 ;u 06322693 n 0000 ! 01555416 a 0101 | (comparative of `much' used with mass nouns) a quantifier meaning greater in size or amount or extent or degree; "more land"; "more support"; "more rain fell"; "more than a gallon" -01555416 00 a 01 less(a) 0 003 ^ 01554510 a 0000 ;u 06322693 n 0000 ! 01555133 a 0101 | (comparative of `little' usually used with mass nouns) a quantifier meaning not as great in amount or degree; "of less importance"; "less time to spend with the family"; "a shower uses less water"; "less than three years old" -01555732 00 a 01 most(a) 1 002 ;u 06693870 n 0000 ! 01556061 a 0101 | the superlative of `much' that can be used with mass nouns and is usually preceded by `the'; a quantifier meaning the greatest in amount or extent or degree; "made the most money he could"; "what attracts the most attention?"; "made the most of a bad deal" -01556061 00 a 01 least(a) 0 002 ;u 06693870 n 0000 ! 01555732 a 0101 | the superlative of `little' that can be used with mass nouns and is usually preceded by `the'; a quantifier meaning smallest in amount or extent or degree; "didn't care the least bit"; "he has the least talent of anyone" -01556355 00 a 01 more(a) 2 004 ^ 01551633 a 0000 ^ 01555133 a 0000 ;u 06322693 n 0000 ! 01556616 a 0101 | (comparative of `many' used with count nouns) quantifier meaning greater in number; "a hall with more seats"; "we have no more bananas"; "more than one" -01556616 00 a 01 fewer 0 005 ^ 01552885 a 0000 ^ 01555416 a 0000 ;u 06322693 n 0000 ! 01556355 a 0101 & 01556913 a 0000 | (comparative of `few' used with count nouns) quantifier meaning a smaller number of; "fewer birds came this year"; "the birds are fewer this year"; "fewer trains were late" -01556913 00 s 01 less 0 001 & 01556616 a 0000 | (nonstandard in some uses but often idiomatic with measure phrases) fewer; "less than three weeks"; "no less than 50 people attended"; "in 25 words or less" -01557120 00 a 01 most(a) 2 002 ;u 06693870 n 0000 ! 01557386 a 0101 | (superlative of `many' used with count nouns and often preceded by `the') quantifier meaning the greatest in number; "who has the most apples?"; "most people like eggs"; "most fishes have fins" -01557386 00 a 01 fewest(a) 0 002 ;u 06693870 n 0000 ! 01557120 a 0101 | (superlative of `few' used with count nouns and usually preceded by `the') quantifier meaning the smallest in number; "the fewest birds in recent memory" -01557614 00 a 01 mortal 0 006 ^ 01180695 a 0000 ^ 01006566 a 0000 + 00007846 n 0105 + 05055974 n 0101 ! 01557903 a 0101 & 01557790 a 0000 | subject to death; "mortal beings" -01557790 00 s 01 earthborn 0 001 & 01557614 a 0000 | of earthly origin (as mortals are); "earthborn existence" -01557903 00 a 01 immortal 0 007 ^ 01178974 a 0000 ^ 01007354 a 0000 + 05056102 n 0101 ! 01557614 a 0101 & 01558086 a 0000 & 01558194 a 0000 & 01558291 a 0000 | not subject to death -01558086 00 s 02 amaranthine 0 unfading 0 001 & 01557903 a 0000 | of an imaginary flower that never fades -01558194 00 s 02 deathless 0 undying 0 001 & 01557903 a 0000 | never dying; "his undying fame" -01558291 00 s 01 deific 0 001 & 01557903 a 0000 | characterized by divine or godlike nature -01558385 00 a 01 motivated 0 004 ^ 01337486 a 0000 ! 01558912 a 0101 & 01558641 a 0000 & 01558749 a 0000 | provided with a motive or given incentive for action; "a highly motivated child can learn almost anything"; "a group of politically motivated men" -01558641 00 s 01 actuated 0 001 & 01558385 a 0000 | moved to action; "a man actuated by unworthy desired" -01558749 00 s 02 driven 0 impelled 0 001 & 01558385 a 0000 | urged or forced to action through moral pressure; "felt impelled to take a stand against the issue" -01558912 00 a 01 unmotivated 0 004 ^ 01338730 a 0000 ! 01558385 a 0101 & 01559042 a 0000 & 01559270 a 0000 | without motivation -01559042 00 s 02 causeless 0 reasonless 0 001 & 01558912 a 0000 | having no justifying cause or reason; "a senseless, causeless murder"; "a causeless war that never had an aim"; "an apparently arbitrary and reasonless change" -01559270 00 s 03 motiveless 0 unprovoked 0 wanton 0 002 & 01558912 a 0000 + 04885398 n 0302 | occurring without motivation or provocation; "motiveless malignity"; "unprovoked and dastardly attack"- F.D.Roosevelt -01559484 00 a 03 motorized 0 motorised 0 motored 0 003 ! 01559804 a 0101 & 01559655 a 0000 & 01559728 a 0000 | equipped with a motor or motors; "a motorized wheelchair" -01559655 00 s 01 bimotored 0 001 & 01559484 a 0000 | having two motors -01559728 00 s 01 trimotored 0 001 & 01559484 a 0000 | having three motors -01559804 00 a 03 unmotorized 0 unmotorised 0 motorless 0 001 ! 01559484 a 0101 | having no motor -01559903 00 a 04 moved(p) 0 affected 2 stirred 0 touched 1 004 ^ 00070939 a 0000 ^ 00853776 a 0000 ! 01560320 a 0101 & 01560165 a 0000 | being excited or provoked to the expression of an emotion; "too moved to speak"; "very touched by the stranger's kindness" -01560165 00 s 01 sick 0 001 & 01559903 a 0000 | deeply affected by a strong feeling; "sat completely still, sick with envy"; "she was sick with longing" -01560320 00 a 03 unmoved(p) 0 unaffected 2 untouched 1 003 ^ 00071992 a 0000 ^ 00856860 a 0000 ! 01559903 a 0101 | emotionally unmoved; "always appeared completely unmoved and imperturbable" -01560513 00 a 01 moving 1 008 ^ 00853776 a 0000 ^ 01282014 a 0000 ^ 02306288 a 0000 ! 01561564 a 0101 & 01560821 a 0000 & 01561079 a 0000 & 01561280 a 0000 & 01561429 a 0000 | arousing or capable of arousing deep emotion; "she laid her case of destitution before him in a very moving letter"- N. Hawthorne -01560821 00 s 03 affecting 0 poignant 0 touching 0 002 & 01560513 a 0000 + 05211254 n 0202 | arousing affect; "the homecoming of the released hostages was an affecting scene"; "poignant grief cannot endure forever"; "his gratitude was simple and touching" -01561079 00 s 01 haunting 0 001 & 01560513 a 0000 | having a deeply disquieting or disturbing effect; "from two handsome and talented young men to two haunting horrors of disintegration"-Charles Lee -01561280 00 s 01 heartwarming 0 001 & 01560513 a 0000 | causing gladness and pleasure; "Is there a sight more heartwarming than a family reunion?" -01561429 00 s 02 stirring 0 soul-stirring 0 001 & 01560513 a 0000 | exciting strong but not unpleasant emotions; "a stirring speech" -01561564 00 a 01 unmoving 0 004 ^ 00856860 a 0000 ^ 02307367 a 0000 ! 01560513 a 0101 & 01561694 a 0000 | not arousing emotions -01561694 00 s 01 unaffecting 0 001 & 01561564 a 0000 | not arousing affect -01561771 00 a 01 moving 2 016 ^ 01522376 a 0000 = 14004317 n 0000 ! 01564073 a 0101 & 01562167 a 0000 & 01562284 a 0000 & 01562416 a 0000 & 01562488 a 0000 & 01562668 a 0000 & 01562809 a 0000 & 01562992 a 0000 & 01563147 a 0000 & 01563349 a 0000 & 01563494 a 0000 & 01563578 a 0000 & 01563713 a 0000 & 01563923 a 0000 | in motion; "a constantly moving crowd"; "the moving parts of the machine" -01562167 00 s 01 afoot(p) 0 001 & 01561771 a 0000 | traveling by foot; "she was afoot when I saw her this morning" -01562284 00 s 02 ahorse(p) 0 ahorseback(p) 0 001 & 01561771 a 0000 | traveling on horseback; "a file of men ahorseback passed by" -01562416 00 s 01 oncoming 0 001 & 01561771 a 0000 | moving toward one -01562488 00 s 03 automotive 0 self-propelled 0 self-propelling 0 001 & 01561771 a 0000 | containing within itself the means of propulsion or movement; "a self-propelled vehicle" -01562668 00 s 01 awheel 0 001 & 01561771 a 0000 | traveling by wheeled vehicle such as bicycle or automobile e.g.; "the public was awheel" -01562809 00 s 01 blown 0 001 & 01561771 a 0000 | being moved or acted upon by moving air or vapor; "blown clouds of dust choked the riders"; "blown soil mounded on the window sill" -01562992 00 s 02 fast-flying 0 flying 0 001 & 01561771 a 0000 | moving swiftly; "fast-flying planes"; "played the difficult passage with flying fingers" -01563147 00 s 02 aflare 0 flaring 0 001 & 01561771 a 0000 | streaming or flapping or spreading wide as if in a current of air; "ran quickly, her flaring coat behind her"; "flags aflare in the breeze" -01563349 00 s 01 kinetic 0 002 & 01561771 a 0000 + 00863222 n 0101 | characterized by motion; "modern dance has been called kinetic pantomime" -01563494 00 s 01 mobile 0 001 & 01561771 a 0000 | having transportation available -01563578 00 s 01 restless 0 002 & 01561771 a 0000 + 04774743 n 0101 | ceaselessly in motion; "the restless sea"; "the restless wind" -01563713 00 s 04 wiggly 0 wriggling 0 wriggly 0 writhing 0 004 & 01561771 a 0000 + 00349705 n 0302 + 00349705 n 0101 + 04775185 n 0101 | moving in a twisting or snake-like or wormlike fashion; "wiggly worms" -01563923 00 s 01 vibratory 0 002 & 01561771 a 0000 + 02175958 v 0102 | moving very rapidly to and fro or up and down; "the vibrating piano strings" -01564073 00 a 02 nonmoving 0 unmoving 2 010 ^ 01525116 a 0000 = 14004317 n 0000 ! 01561771 a 0101 & 01564315 a 0000 & 01564512 a 0000 & 01564603 a 0000 & 01564881 a 0000 & 01565038 a 0000 & 01565139 a 0000 & 01565252 a 0000 | not in motion -01564315 00 s 04 inactive 0 motionless 0 static 0 still 1 004 & 01564073 a 0000 + 14006179 n 0402 + 14006179 n 0201 + 14010148 n 0102 | not in physical motion; "the inertia of an object at rest" -01564512 00 s 01 becalmed 0 001 & 01564073 a 0000 | rendered motionless for lack of wind -01564603 00 s 03 fixed 0 set 0 rigid 0 004 & 01564073 a 0000 + 05023741 n 0302 + 14006490 n 0103 + 04777098 n 0103 | fixed and unmoving; "with eyes set in a fixed glassy stare"; "his bearded face already has a set hollow look"- Connor Cruise O'Brien; "a face rigid with pain" -01564881 00 s 03 frozen(p) 0 rooted(p) 0 stock-still 0 001 & 01564073 a 0000 | absolutely still; "frozen with horror"; "they stood rooted in astonishment" -01565038 00 s 01 inert 0 002 & 01564073 a 0000 + 04776572 n 0101 | unable to move or resist motion -01565139 00 s 01 sitting 0 001 & 01564073 a 0000 | not moving and therefore easy to attack; "a sitting target" -01565252 00 s 01 stationary 0 002 & 01564073 a 0000 + 14006490 n 0101 | standing still; "the car remained stationary with the engine running" -01565396 00 a 01 moving 3 002 ! 01565751 a 0101 & 01565608 a 0000 | used of a series of photographs presented so as to create the illusion of motion; "Her ambition was to be in moving pictures or `the movies'" -01565608 00 s 01 animated 0 001 & 01565396 a 0000 | made to appear to move as living creatures do; "an animated cartoon"; "animated puppets" -01565751 00 a 01 still 3 002 + 14006179 n 0102 ! 01565396 a 0101 | used of pictures; of a single or static photograph not presented so as to create the illusion of motion; or representing objects not capable of motion; "a still photograph"; "Cezanne's still life of apples" -01566027 00 a 02 mown 0 cut 4 003 ;c 08436759 n 0000 ! 01566288 a 0101 & 01566223 a 0000 | (used of grass or vegetation) cut down with a hand implement or machine; "the smell of newly mown hay" -01566223 00 s 01 new-mown 0 001 & 01566027 a 0000 | newly mown -01566288 00 a 02 unmown 0 uncut 4 002 ;c 08436759 n 0000 ! 01566027 a 0101 | (used of grass or vegetation) not cut down with a hand implement or machine; "uncut grass"; "an unmown lawn" -01566476 00 a 02 seamanlike 0 seamanly 0 002 + 10294602 n 0202 ! 01566634 a 0101 | characteristic of or befitting a seaman; indicating competent seamanship -01566634 00 a 01 unseamanlike 0 002 ! 01566476 a 0101 & 01566725 a 0000 | not seamanlike -01566725 00 s 02 lubberly 0 landlubberly 0 004 & 01566634 a 0000 + 10245507 n 0201 + 10245341 n 0201 + 10245341 n 0102 | inexperienced in seamanship; "of all landlubbers the most lubberly" -01566916 00 a 01 continental 0 004 + 09254614 n 0101 ! 01567500 a 0101 & 01567203 a 0000 & 01567294 a 0000 | being or concerning or limited to a continent especially the continents of North America or Europe; "the continental United States"; "continental Europe"; "continental waters" -01567203 00 s 01 continent-wide 0 001 & 01566916 a 0000 | involving the entire continent -01567294 00 s 01 transcontinental 0 001 & 01566916 a 0000 | spanning or crossing or on the farther side of a continent; "transcontinental railway"; "transcontinental travelers"; "a transcontinental city" -01567500 00 a 01 intercontinental 0 002 ! 01566916 a 0101 & 01567694 a 0000 | extending or taking place between or among continents; "intercontinental exploration"; "intercontinental flights" -01567694 00 s 02 worldwide 0 world-wide 0 001 & 01567500 a 0000 | spanning or extending throughout the entire world; "worldwide distribution"; "a worldwide epidemic" -01567862 00 a 01 national 0 004 ^ 01038102 a 0000 + 07949463 n 0101 ! 01568375 a 0101 & 01568092 a 0000 | limited to or in the interests of a particular nation; "national interests"; "isolationism is a strictly national policy" -01568092 00 s 02 nationalist 0 nationalistic 0 002 & 01567862 a 0000 + 10407310 n 0102 | devotion to the interests or culture of a particular nation including promoting the interests of one country over those of others; "nationalist aspirations"; "minor nationalistic differences" -01568375 00 a 01 international 0 007 ^ 01037540 a 0000 + 05126611 n 0101 ! 01567862 a 0101 & 01568684 a 0000 & 01569002 a 0000 & 01569166 a 0000 & 01569366 a 0000 | concerning or belonging to all or at least two or more nations; "international affairs"; "an international agreement"; "international waters" -01568684 00 s 05 global 0 planetary 0 world(a) 0 worldwide 0 world-wide 0 002 & 01568375 a 0000 + 09270894 n 0104 | involving the entire earth; not limited or provincial in scope; "global war"; "global monetary policy"; "neither national nor continental but planetary"; "a world crisis"; "of worldwide significance" -01569002 00 s 02 internationalist 0 internationalistic 0 003 & 01568375 a 0000 + 05963494 n 0201 + 05126611 n 0202 | influenced by or advocating internationalism -01569166 00 s 02 multinational 0 transnational 0 001 & 01568375 a 0000 | involving or operating in several nations or nationalities; "multinational corporations"; "transnational terrorist networks" -01569366 00 s 01 supranational 0 001 & 01568375 a 0000 | transcending established national boundaries or spheres of interest; "a supranational economy"; "supranational federations" -01569549 00 a 01 interstate 0 001 ! 01569807 a 0101 | involving and relating to the mutual relations of states especially of the United States; "Interstate Highway Commission"; "interstate highways"; "Interstate Commerce Commission"; "interstate commerce" -01569807 00 a 01 intrastate 0 001 ! 01569549 a 0101 | relating to or existing within the boundaries of a state; "intrastate as well as interstate commerce" -01569965 00 a 01 natural 1 005 ^ 01570892 a 0000 ^ 01574036 a 0000 = 04785908 n 0000 ! 01570470 a 0101 & 01570286 a 0000 | in accordance with nature; relating to or concerning nature; "a very natural development"; "our natural environment"; "natural science"; "natural resources"; "natural cliffs"; "natural phenomena" -01570286 00 s 01 earthy 0 001 & 01569965 a 0000 | not far removed from or suggestive of nature; "the earthy taste of warm milk fresh from the cow"; "earthy smells of new-mown grass" -01570470 00 a 01 unnatural 0 006 ^ 00070939 a 0000 ^ 01599532 a 0000 ^ 01574446 a 0000 = 04785908 n 0000 ! 01569965 a 0101 & 01570747 a 0000 | not in accordance with or determined by nature; contrary to nature; "an unnatural death"; "the child's unnatural interest in death" -01570747 00 s 01 violent 0 002 & 01570470 a 0000 + 00965404 n 0101 | effected by force or injury rather than natural causes; "a violent death" -01570892 00 a 01 natural 2 004 ^ 01569965 a 0000 + 04747246 n 0101 ! 01571363 a 0101 & 01571181 a 0000 | existing in or produced by nature; not artificial or imitation; "a natural pearl"; "natural gas"; "natural silk"; "natural blonde hair"; "a natural sweetener"; "natural fertilizers" -01571181 00 s 03 unbleached 0 uncolored 0 undyed 0 001 & 01570892 a 0000 | not artificially colored or bleached; "unbleached blonde hair"; "her hair is uncolored"; "undyed cotton" -01571363 00 a 02 artificial 0 unreal 4 017 ^ 01116380 a 0000 ^ 01934554 a 0000 + 04788494 n 0101 ! 01570892 a 0101 & 01571869 a 0000 & 01572009 a 0000 & 01572171 a 0000 & 01572325 a 0000 & 01572458 a 0000 & 01572604 a 0000 & 01572831 a 0000 & 01572974 a 0000 & 01573101 a 0000 & 01573238 a 0000 & 01573568 a 0000 & 01573762 a 0000 & 01573889 a 0000 | contrived by art rather than nature; "artificial flowers"; "artificial flavoring"; "an artificial diamond"; "artificial fibers"; "artificial sweeteners" -01571869 00 s 02 arranged 0 staged 0 001 & 01571363 a 0000 | deliberately arranged for effect; "one of those artfully staged photographs" -01572009 00 s 01 bionic 0 001 & 01571363 a 0000 | having particular physiological functions augmented or replaced by electronic or electromechanical components -01572171 00 s 04 bleached 0 colored 0 coloured 0 dyed 0 001 & 01571363 a 0000 | (used of color) artificially produced; not natural; "a bleached blonde" -01572325 00 s 02 cardboard 0 unlifelike 0 001 & 01571363 a 0000 | without substance; "cardboard caricatures of historical figures" -01572458 00 s 02 celluloid 0 synthetic 1 001 & 01571363 a 0000 | artificial as if portrayed in a film; "a novel with flat celluloid characters" -01572604 00 s 04 conventionalized 0 conventionalised 0 stylized 0 stylised 0 001 & 01571363 a 0000 | using artistic forms and conventions to create effects; not natural or spontaneous; "a stylized mode of theater production" -01572831 00 s 01 dummy 0 001 & 01571363 a 0000 | having the appearance of being real but lacking capacity to function; "a dummy corporation" -01572974 00 s 02 ersatz 0 substitute 0 001 & 01571363 a 0000 | artificial and inferior; "ersatz coffee"; "substitute coffee" -01573101 00 s 01 factitious 0 001 & 01571363 a 0000 | not produced by natural forces; "brokers created a factitious demand for stocks" -01573238 00 s 05 fake 0 false 0 faux 0 imitation 2 simulated 0 002 & 01571363 a 0000 + 03318438 n 0101 | not genuine or real; being an imitation of the genuine article; "it isn't fake anything; it's real synthetic fur"; "faux pearls"; "false teeth"; "decorated with imitation palm leaves"; "a purse of simulated alligator hide" -01573568 00 s 03 man-made 0 semisynthetic 0 synthetic 0 002 & 01571363 a 0000 ;c 06084469 n 0000 | not of natural origin; prepared or made artificially; "man-made fibers"; "synthetic leather" -01573762 00 s 01 near 0 001 & 01571363 a 0000 | closely resembling the genuine article; "near beer"; "a dress of near satin" -01573889 00 s 01 painted 0 001 & 01571363 a 0000 | lacking substance or vitality as if produced by painting; "in public he wore a painted smile" -01574036 00 a 01 natural 3 003 + 04785908 n 0101 ! 01574446 a 0101 & 01574259 a 0000 | existing in or in conformity with nature or the observable world; neither supernatural nor magical; "a perfectly natural explanation" -01574259 00 s 01 physical 0 001 & 01574036 a 0000 | according with material things or natural laws (other than those peculiar to living matter); "a reflex response to physical stimuli" -01574446 00 a 01 supernatural 0 016 ^ 01934554 a 0000 + 09503877 n 0101 + 04789406 n 0102 ! 01574036 a 0101 & 01574925 a 0000 & 01575299 a 0000 & 01575424 a 0000 & 01575810 a 0000 & 01576071 a 0000 & 01576551 a 0000 & 01576729 a 0000 & 01576845 a 0000 & 01577086 a 0000 & 01577327 a 0000 & 01577498 a 0000 & 01577672 a 0000 | not existing in nature or subject to explanation according to natural laws; not physical or material; "supernatural forces and occurrences and beings" -01574925 00 s 06 apparitional 0 ghostlike 0 ghostly 0 phantasmal 0 spectral 0 spiritual 0 006 & 01574446 a 0000 + 09545324 n 0601 + 09547111 n 0404 + 05897553 n 0404 + 09545976 n 0301 + 04798020 n 0302 | resembling or characteristic of a phantom; "a ghostly face at the window"; "a phantasmal presence in the room"; "spectral emanations"; "spiritual tappings at a seance" -01575299 00 s 01 eerie 0 001 & 01574446 a 0000 | suggestive of the supernatural; mysterious; "an eerie feeling of deja vu" -01575424 00 s 04 eldritch 0 weird 0 uncanny 0 unearthly 0 002 & 01574446 a 0000 + 04798511 n 0203 | suggesting the operation of supernatural influences; "an eldritch screech"; "the three weird sisters"; "stumps...had uncanny shapes as of monstrous creatures"- John Galsworthy; "an unearthly light"; "he could hear the unearthly scream of some curlew piercing the din"- Henry Kingsley -01575810 00 s 02 elfin 0 fey 0 001 & 01574446 a 0000 | suggestive of an elf in strangeness and otherworldliness; "thunderbolts quivered with elfin flares of heat lightning"; "the fey quality was there, the ability to see the moon at midday"- John Mason Brown -01576071 00 s 07 charming 0 magic 0 magical 0 sorcerous 0 witching(a) 0 wizard(a) 0 wizardly 0 006 & 01574446 a 0000 + 10625860 n 0703 + 10625860 n 0603 + 05978812 n 0401 + 05967977 n 0301 + 00099951 n 0304 | possessing or using or characteristic of or appropriate to supernatural powers; "charming incantations"; "magic signs that protect against adverse influence"; "a magical spell"; "'tis now the very witching time of night"- Shakespeare; "wizard wands"; "wizardly powers" -01576551 00 s 03 marvelous 0 marvellous 0 miraculous 0 004 & 01574446 a 0000 + 07289481 n 0301 + 07289588 n 0202 + 07289588 n 0102 | being or having the character of a miracle -01576729 00 s 01 metaphysical 0 001 & 01574446 a 0000 | without material form or substance; "metaphysical forces" -01576845 00 s 01 necromantic 0 002 & 01574446 a 0000 + 05777439 n 0101 | given to or produced by or used in the art of conjuring up the dead; "a necromantic sorcerer"; "necromantic delusions"; "necromantic powders and other weird objects" -01577086 00 s 04 nonnatural 0 otherworldly 0 preternatural 0 transcendental 0 002 & 01574446 a 0000 + 04621314 n 0204 | existing outside of or not in accordance with nature; "find transcendental motives for sublunary action"-Aldous Huxley -01577327 00 s 01 talismanic 0 002 & 01574446 a 0000 + 02706586 n 0102 | possessing or believed to possess magic power especially protective power; "a talismanic amulet" -01577498 00 s 01 transmundane 0 001 & 01574446 a 0000 | existing or extending beyond the physical world; "whatever of transmundane...insight...we may carry"- William James -01577672 00 s 01 witchlike 0 001 & 01574446 a 0000 | being or having the character of witchcraft -01577771 00 a 01 natural 4 003 ;c 07020895 n 0000 ! 01577973 a 0101 ! 01578152 a 0101 | (of a musical note) being neither raised nor lowered by one chromatic semitone; "a natural scale"; "B natural" -01577973 00 a 01 sharp 3 004 ;c 07020895 n 0000 + 06866599 n 0101 ! 01578152 a 0101 ! 01577771 a 0101 | (of a musical note) raised in pitch by one chromatic semitone; "C sharp" -01578152 00 a 01 flat 0 003 ;c 07020895 n 0000 ! 01577771 a 0101 ! 01577973 a 0101 | (of a musical note) lowered in pitch by one chromatic semitone; "B flat" -01578312 00 a 01 ultimate 0 008 = 13942104 n 0000 + 13942104 n 0102 ! 01579608 a 0101 & 01578683 a 0000 & 01578856 a 0000 & 01579128 a 0000 & 01579304 a 0000 & 01579467 a 0000 | furthest or highest in degree or order; utmost or extreme; "the ultimate achievement"; "the ultimate question"; "man's ultimate destiny"; "the ultimate insult"; "one's ultimate goal in life" -01578683 00 s 01 crowning(a) 0 001 & 01578312 a 0000 | representing a level of the highest possible achievement or attainment; "the crowning accomplishment of his career" -01578856 00 s 01 eventual(a) 0 001 & 01578312 a 0000 | expected to follow in the indefinite future from causes already operating; "hope of eventual (or ultimate) rescue"; "if this trend continues it is not reasonable to expect the eventual collapse of the stock market" -01579128 00 s 03 final 0 last 0 net 0 002 & 01578312 a 0000 + 04754440 n 0101 | conclusive in a process or progression; "the final answer"; "a last resort"; "the net result" -01579304 00 s 01 last-ditch 0 001 & 01578312 a 0000 | of something done as a final recourse (especially to prevent a crisis or disaster); "a last-ditch attempt" -01579467 00 s 01 supreme 0 001 & 01578312 a 0000 | final or last in your life or progress; "the supreme sacrifice"; "the supreme judgment" -01579608 00 a 01 proximate 0 002 ! 01578312 a 0101 & 01579853 a 0000 | closest in degree or order (space or time) especially in a chain of causes and effects; "news of his proximate arrival"; "interest in proximate rather than ultimate goals" -01579853 00 s 01 immediate 0 002 & 01579608 a 0000 + 05059525 n 0102 | immediately before or after as in a chain of cause and effect; "the immediate result"; "the immediate cause of the trouble" -01580050 00 a 01 necessary 0 011 ^ 00900616 a 0000 ^ 00903668 a 0000 ^ 00848074 a 0000 = 14450691 n 0000 + 14450691 n 0101 + 09367203 n 0101 ! 01581115 a 0101 & 01580306 a 0000 & 01580601 a 0000 & 01580775 a 0000 & 01580968 a 0000 | absolutely essential -01580306 00 s 02 essential 0 indispensable 0 005 & 01580050 a 0000 + 05171491 n 0202 + 05171491 n 0201 + 09367203 n 0102 + 05171045 n 0102 | absolutely necessary; vitally necessary; "essential tools and materials"; "funds essential to the completion of the project"; "an indispensable worker" -01580601 00 s 01 incumbent 0 001 & 01580050 a 0000 | necessary (for someone) as a duty or responsibility; morally binding; "it is incumbent on them to pay their own debts" -01580775 00 s 04 needed 0 needful 0 required 0 requisite 0 003 & 01580050 a 0000 + 09367203 n 0404 + 14450904 n 0401 | necessary for relief or supply; "provided them with all things needful" -01580968 00 s 01 obligatory 0 001 & 01580050 a 0000 | required by obligation or compulsion or convention; "he made all the obligatory apologies" -01581115 00 a 02 unnecessary 0 unneeded 0 007 ^ 00902652 a 0000 = 14450691 n 0000 ! 01580050 a 0101 & 01581305 a 0000 & 01582049 a 0000 & 01582224 a 0000 & 01582306 a 0000 | not necessary -01581305 00 s 08 excess 0 extra 0 redundant 0 spare 1 supererogatory 0 superfluous 0 supernumerary 0 surplus 0 008 & 01581115 a 0000 + 10676682 n 0701 + 05120116 n 0603 + 05120310 n 0302 + 07090938 n 0301 + 05730163 n 0301 + 05120310 n 0301 + 01019248 n 0301 | more than is needed, desired, or required; "trying to lose excess weight"; "found some extra change lying on the dresser"; "yet another book on heraldry might be thought redundant"; "skills made redundant by technological advance"; "sleeping in the spare room"; "supernumerary ornamentation"; "it was supererogatory of her to gloat"; "delete superfluous (or unnecessary) words"; "extra ribs as well as other supernumerary internal parts"; "surplus cheese distributed to the needy" -01582049 00 s 03 gratuitous 0 needless 0 uncalled-for 0 001 & 01581115 a 0000 | unnecessary and unwarranted; "a strikers' tent camp...was burned with needless loss of life" -01582224 00 s 01 inessential 0 001 & 01581115 a 0000 | not absolutely necessary -01582306 00 s 01 spare 2 001 & 01581115 a 0000 | kept in reserve especially for emergency use; "a reserve supply of food"; "a spare tire"; "spare parts" -01582461 00 a 02 net 0 nett 0 003 ! 01582821 a 0101 & 01582598 a 0000 & 01582698 a 0000 | remaining after all deductions; "net profit" -01582598 00 s 01 clear 0 001 & 01582461 a 0000 | clear of charges or deductions; "a clear profit" -01582698 00 s 01 take-home 0 001 & 01582461 a 0000 | (of salary or wages) remaining after all deductions including taxes -01582821 00 a 01 gross 0 003 + 13256691 n 0101 ! 01582461 a 0101 & 01582946 a 0000 | before any deductions; "gross income" -01582946 00 s 01 overall 0 001 & 01582821 a 0000 | including everything; "the overall cost" -01583040 00 a 02 neurotic 0 psychoneurotic 0 020 + 10354898 n 0202 + 14393161 n 0203 + 10354898 n 0101 + 14393161 n 0101 ! 01586009 a 0101 & 01583486 a 0000 & 01583659 a 0000 & 01583880 a 0000 & 01584017 a 0000 & 01584164 a 0000 & 01584287 a 0000 & 01584569 a 0000 & 01584724 a 0000 & 01584857 a 0000 & 01585022 a 0000 & 01585312 a 0000 & 01585491 a 0000 & 01585679 a 0000 & 01585781 a 0000 & 01585892 a 0000 | affected with emotional disorder -01583486 00 s 02 abulic 0 aboulic 0 003 & 01583040 a 0000 + 14026166 n 0202 + 14026166 n 0101 | suffering from abulia; showing abnormal inability to act or make decisions -01583659 00 s 01 compulsive 0 006 & 01583040 a 0000 + 09950457 n 0101 + 09181330 n 0101 + 09183255 n 0101 + 04625882 n 0101 + 04625882 n 0102 | caused by or suggestive of psychological compulsion; "compulsive drinking" -01583880 00 s 01 delusional 0 003 & 01583040 a 0000 + 14376855 n 0101 + 05896733 n 0101 | suffering from or characterized by delusions -01584017 00 s 02 disturbed 0 maladjusted 0 001 & 01583040 a 0000 | emotionally unstable and having difficulty coping with personal relationships -01584164 00 s 02 hypochondriac 0 hypochondriacal 0 002 & 01583040 a 0000 + 14375005 n 0201 | suffering from hypochondria -01584287 00 s 02 hysteric 0 hysterical 0 003 & 01583040 a 0000 + 14393438 n 0201 + 14393438 n 0101 | characterized by or arising from psychoneurotic hysteria; "during hysterical conditions various functions of the human body are disordered"- Morris Fishbein; "hysterical amnesia" -01584569 00 s 02 megalomaniacal 0 megalomanic 0 004 & 01583040 a 0000 + 14392318 n 0201 + 10306496 n 0101 + 14392318 n 0101 | suffering from megalomania -01584724 00 s 01 monomaniacal 0 003 & 01583040 a 0000 + 10329143 n 0101 + 09182524 n 0101 | obsessed with a single subject or idea -01584857 00 s 02 nymphomaniacal 0 nymphomaniac 0 003 & 01583040 a 0000 + 10368798 n 0201 + 07489925 n 0101 | (used of women) affected with excessive sexual desire -01585022 00 s 02 obsessional 0 obsessive 0 007 & 01583040 a 0000 + 04626062 n 0202 + 04626062 n 0201 + 10348989 n 0201 + 01831143 v 0201 + 09183255 n 0102 + 05700401 n 0101 | characterized by or constituting an obsession; "the obsessional character of his response"; "obsessive gambling" -01585312 00 s 01 obsessive-compulsive 0 003 & 01583040 a 0000 + 14381017 n 0101 + 10349090 n 0101 | characterized by obsessions and compulsions; "obsessive-compulsive neurosis" -01585491 00 s 01 pathological 0 002 & 01583040 a 0000 + 14204950 n 0101 | caused by or evidencing a mentally disturbed condition; "a pathological liar"; "a pathological urge to succeed" -01585679 00 s 01 phobic 0 002 & 01583040 a 0000 + 14381416 n 0101 | suffering from irrational fears -01585781 00 s 01 psychosomatic 0 001 & 01583040 a 0000 | used of illness or symptoms resulting from neurosis -01585892 00 s 01 schizoid 0 001 & 01583040 a 0000 | marked by withdrawal and inability to form close relationships -01586009 00 a 01 unneurotic 0 002 ! 01583040 a 0101 & 01586194 a 0000 | not neurotic; "successful mothers--mothers with unneurotic children"; "he's the most unneurotic person I know" -01586194 00 s 01 together 0 003 & 01586009 a 0000 ;u 07075172 n 0000 + 07530322 n 0101 | mentally and emotionally stable; "she's really together" -01586342 00 a 01 nice 0 006 ^ 01800349 a 0000 = 04779521 n 0000 + 04779521 n 0101 ! 01587077 a 0101 & 01586752 a 0000 & 01586866 a 0000 | pleasant or pleasing or agreeable in nature or appearance; "what a nice fellow you are and we all thought you so nasty"- George Meredith; "nice manners"; "a nice dress"; "a nice face"; "a nice day"; "had a nice time at the party"; "the corn and tomatoes are nice today" -01586752 00 s 01 good 0 001 & 01586342 a 0000 | agreeable or pleasing; "we all had a good time"; "good manners" -01586866 00 s 01 pleasant 0 003 & 01586342 a 0000 + 07492170 n 0101 + 01816054 v 0101 | (of persons) having pleasing manners or behavior; "I didn't enjoy it and probably wasn't a pleasant person to be around" -01587077 00 a 02 nasty 0 awful 2 009 ^ 01801600 a 0000 = 04780755 n 0000 + 04782116 n 0201 + 04842515 n 0105 + 04780755 n 0101 ! 01586342 a 0101 & 01587474 a 0000 & 01587643 a 0000 & 01587787 a 0000 | offensive or even (of persons) malicious; "in a nasty mood"; "a nasty accident"; "a nasty shock"; "a nasty smell"; "a nasty trick to pull"; "Will he say nasty things at my funeral?"- Ezra Pound -01587474 00 s 03 dirty 0 filthy 0 lousy 0 003 & 01587077 a 0000 + 04781349 n 0305 + 04852962 n 0201 | vile; despicable; "a dirty (or lousy) trick"; "a filthy traitor" -01587643 00 s 01 grotty 0 003 & 01587077 a 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | very unpleasant or offensive ; "a grotty little play" -01587787 00 s 02 hateful 0 mean 0 003 & 01587077 a 0000 + 04845684 n 0202 + 04781755 n 0101 | characterized by malice; "a hateful thing to do"; "in a mean mood" -01587950 00 a 01 nidicolous 0 001 ! 01588065 a 0101 | (of birds) remaining in the nest for a time after hatching -01588065 00 a 01 nidifugous 0 001 ! 01587950 a 0101 | (of birds) leaving the nest shortly after hatching -01588172 00 a 01 noble 1 007 ^ 01226240 a 0000 = 04870340 n 0000 + 04870340 n 0101 ! 01589217 a 0101 & 01588426 a 0000 & 01588619 a 0000 & 01589045 a 0000 | having or showing or indicative of high or elevated character; "a noble spirit"; "noble deeds" -01588426 00 s 02 dignifying 0 ennobling 0 001 & 01588172 a 0000 | investing with dignity or honor; "the dignifying effect of his presence"; "the ennobling influence of cultural surroundings" -01588619 00 s 0b exalted 0 elevated 0 sublime 0 grand 0 high-flown 0 high-minded 0 lofty 0 rarefied 0 rarified 0 idealistic 0 noble-minded 0 005 & 01588172 a 0000 + 04870643 n 0b03 + 04870643 n 0a02 + 04870643 n 0601 + 04814238 n 0406 | of high moral or intellectual value; elevated in nature or style; "an exalted ideal"; "argue in terms of high-flown ideals"- Oliver Franks; "a noble and lofty concept"; "a grand purpose" -01589045 00 s 02 greathearted 0 magnanimous 0 002 & 01588172 a 0000 + 04870340 n 0203 | noble and generous in spirit; "a greathearted general"; "a magnanimous conqueror" -01589217 00 a 01 ignoble 1 008 ^ 00904548 a 0000 ^ 00264776 a 0000 ^ 01227137 a 0000 = 04870340 n 0000 + 04873804 n 0101 ! 01588172 a 0101 & 01589650 a 0000 & 01590044 a 0000 | completely lacking nobility in character or quality or purpose; "something cowardly and ignoble in his attitude"; "I think it a less evil that some criminals should escape than that the government should play an ignoble part"- Oliver Wendell Holmes, Jr. -01589650 00 s 03 base 0 mean 0 meanspirited 0 003 & 01589217 a 0000 + 04845684 n 0202 + 04807971 n 0101 | having or showing an ignoble lack of honor or morality; "that liberal obedience without which your army would be a base rabble"- Edmund Burke; "taking a mean advantage"; "chok'd with ambition of the meaner sort"- Shakespeare; "something essentially vulgar and meanspirited in politics" -01590044 00 s 01 currish 0 001 & 01589217 a 0000 | base and cowardly -01590115 00 a 01 noble 2 012 + 14432032 n 0101 + 08388207 n 0101 ! 01592642 a 0101 & 01590484 a 0000 & 01591050 a 0000 & 01591227 a 0000 & 01591394 a 0000 & 01591699 a 0000 & 01591895 a 0000 & 01592108 a 0000 & 01592262 a 0000 & 01592509 a 0000 | of or belonging to or constituting the hereditary aristocracy especially as derived from feudal times; "of noble birth" -01590484 00 s 06 aristocratic 1 aristocratical 0 blue 0 blue-blooded 0 gentle 0 patrician 0 007 & 01590115 a 0000 + 10407105 n 0601 + 09807754 n 0603 + 04813540 n 0503 + 09807754 n 0201 + 08387213 n 0102 + 08388207 n 0102 | belonging to or characteristic of the nobility or aristocracy; "an aristocratic family"; "aristocratic Bostonians"; "aristocratic government"; "a blue family"; "blue blood"; "the blue-blooded aristocracy"; "of gentle blood"; "patrician landholders of the American South"; "aristocratic bearing"; "aristocratic features"; "patrician tastes" -01591050 00 s 03 august 0 grand 0 lordly 0 003 & 01590115 a 0000 + 10271677 n 0301 + 04910684 n 0302 | of or befitting a lord; "heir to a lordly fortune"; "of august lineage" -01591227 00 s 03 coroneted 0 highborn 0 titled 0 001 & 01590115 a 0000 | belonging to the peerage; "the princess and her coroneted companions"; "the titled classes" -01591394 00 s 05 imperial 0 majestic 0 purple 0 regal 0 royal 2 003 & 01590115 a 0000 + 14432271 n 0301 + 10053004 n 0101 | belonging to or befitting a supreme ruler; "golden age of imperial splendor"; "purple tyrant"; "regal attire"; "treated with royal acclaim"; "the royal carriage of a stag's head" -01591699 00 s 02 kingly 0 kinglike 1 002 & 01590115 a 0000 + 10231515 n 0101 | having the rank of or resembling or befitting a king; "symbolizing kingly power"; "the murder of his kingly guest" -01591895 00 s 02 monarchal 0 monarchical 0 003 & 01590115 a 0000 + 10628644 n 0203 + 10628644 n 0103 | having the characteristics of or befitting or worthy of a monarch; "monarchical gestures"; "monarchal pomp" -01592108 00 s 01 princely 0 002 & 01590115 a 0000 + 10472799 n 0101 | having the rank of or befitting a prince; "a princely bearing"; "princely manner" -01592262 00 s 02 queenly 0 queenlike 0 003 & 01590115 a 0000 + 10499857 n 0101 + 10499355 n 0101 | having the rank of or resembling or befitting a queen; "queenly propriety"; "clad in her queenly raiment"; "Rosetti's queenly portraits of women" -01592509 00 s 01 royal 0 001 & 01590115 a 0000 | being of the rank of a monarch; "of royal ancestry"; "princes of the blood royal" -01592642 00 a 01 lowborn 0 005 ^ 00259568 a 0000 ! 01590115 a 0101 & 01592857 a 0000 & 01593079 a 0000 & 01593480 a 0000 | of humble birth or origins; "a topsy-turvy society of lowborn rich and blue-blooded poor" -01592857 00 s 04 base 0 baseborn 0 humble 0 lowly 0 002 & 01592642 a 0000 + 14436438 n 0301 | of low birth or station (`base' is archaic in this sense); "baseborn wretches with dirty faces"; "of humble (or lowly) birth" -01593079 00 s 04 common 0 plebeian 0 vulgar 0 unwashed 0 006 & 01592642 a 0000 + 00970215 v 0303 + 10441251 n 0201 + 10441251 n 0202 + 04764741 n 0102 + 08181930 n 0102 | of or associated with the great masses of people; "the common people in those days suffered greatly"; "behavior that branded him as common"; "his square plebeian nose"; "a vulgar and objectionable person"; "the unwashed masses" -01593480 00 s 03 ignoble 0 ungentle 0 untitled 0 002 & 01592642 a 0000 + 04873804 n 0101 | not of the nobility; "of ignoble (or ungentle) birth"; "untitled civilians" -01593649 00 a 01 normal 1 011 ^ 02073443 a 0000 ^ 02295998 a 0000 = 14500908 n 0000 + 04714058 n 0101 ! 01595596 a 0101 & 01594146 a 0000 & 01594472 a 0000 & 01594811 a 0000 & 01595050 a 0000 & 01595312 a 0000 & 01595440 a 0000 | conforming with or constituting a norm or standard or level or type or social norm; not abnormal; "serve wine at normal room temperature"; "normal diplomatic relations"; "normal working hours"; "normal word order"; "normal curiosity"; "the normal course of events" -01594146 00 s 02 average 2 mean(a) 0 005 & 01593649 a 0000 ;c 06018465 n 0000 + 06023969 n 0201 + 06021761 n 0101 + 14501172 n 0101 | approximating the statistical norm or average or expected value; "the average income in New England is below that of the nation"; "of average height for his age"; "the mean annual rainfall" -01594472 00 s 02 median(a) 0 average 1 003 & 01593649 a 0000 ;c 06018465 n 0000 + 06023821 n 0101 | relating to or constituting the middle value of an ordered set of values (or the average of the middle two in a set with an even number of values); "the median value of 17, 20, and 36 is 20"; "the median income for the year was $15,000" -01594811 00 s 02 modal(a) 0 average 3 003 & 01593649 a 0000 ;c 06018465 n 0000 + 06023675 n 0101 | relating to or constituting the most frequent value in a distribution; "the modal age at which American novelists reach their peak is 30" -01595050 00 s 01 natural 0 002 & 01593649 a 0000 ;c 06037666 n 0000 | functioning or occurring in a normal way; lacking abnormalities or deficiencies; "it's the natural thing to happen"; "natural immunity"; "a grandparent's natural affection for a grandchild" -01595312 00 s 01 regular 0 002 & 01593649 a 0000 + 04767347 n 0101 | not deviating from what is normal; "her regular bedtime" -01595440 00 s 01 typical 0 002 & 01593649 a 0000 + 14501545 n 0101 | conforming to a type; "the typical (or normal) American"; "typical teenage behavior" -01595596 00 a 02 abnormal 0 unnatural 3 016 ^ 02074092 a 0000 = 14500908 n 0000 + 14501726 n 0101 + 00737188 n 0101 ! 01593649 a 0101 & 01596122 a 0000 & 01596455 a 0000 & 01596674 a 0000 & 01596809 a 0000 & 01597105 a 0000 & 01597240 a 0000 & 01597387 a 0000 & 01597509 a 0000 & 01597702 a 0000 & 01597928 a 0000 & 01598125 a 0000 | not normal; not typical or usual or regular or conforming to a norm; "abnormal powers of concentration"; "abnormal amounts of rain"; "abnormal circumstances"; "an abnormal interest in food" -01596122 00 s 03 aberrant 0 deviant 0 deviate 0 011 & 01595596 a 0000 + 02661252 v 0301 + 14503665 n 0304 + 00737399 n 0302 + 10419047 n 0202 + 02661252 v 0201 + 14503665 n 0204 + 00737399 n 0202 + 09755893 n 0101 + 14503665 n 0102 + 14503665 n 0101 | markedly different from an accepted norm; "aberrant behavior"; "deviant ideas" -01596455 00 s 01 anomalous 0 004 & 01595596 a 0000 + 14505821 n 0101 + 09606527 n 0101 + 14505821 n 0102 | deviating from the general or common order or type; "advanced forms of life may be anomalous in the universe" -01596674 00 s 01 antidromic 0 002 & 01595596 a 0000 ;c 06080522 n 0000 | conducting nerve impulses in a direction opposite to normal -01596809 00 s 02 atypical 0 irregular 0 003 & 01595596 a 0000 + 00737188 n 0202 + 14503060 n 0101 | deviating from normal expectations; somewhat odd, strange, or abnormal; "these days large families are atypical"; "atypical clinical findings"; "atypical pneumonia"; "highly irregular behavior" -01597105 00 s 02 brachydactylic 0 brachydactylous 0 002 & 01595596 a 0000 + 14092114 n 0101 | having abnormally short finger or toes -01597240 00 s 01 defective 0 001 & 01595596 a 0000 | markedly subnormal in structure or function or intelligence or behavior; "defective speech" -01597387 00 s 01 freakish 0 002 & 01595596 a 0000 + 04798185 n 0102 | characteristic of a freak; "a freakish extra toe" -01597509 00 s 02 kinky 0 perverted 0 002 & 01595596 a 0000 + 10236842 n 0101 | (used of sexual behavior) showing or appealing to bizarre or deviant tastes; "kinky sex"; "perverted practices" -01597702 00 s 01 subnormal 0 005 & 01595596 a 0000 ;c 06018465 n 0000 + 10669876 n 0101 + 14505667 n 0101 + 05646218 n 0105 | below normal or average; "after the floods the harvests were subnormal"; "subnormal intelligence" -01597928 00 s 01 supernormal 0 002 & 01595596 a 0000 ;c 06018465 n 0000 | exceeding the normal or average; "years of supernormal employment during the war"; "a phase of supernormal excitability" -01598125 00 s 01 vicarious 0 002 & 01595596 a 0000 ;c 06043075 n 0000 | occurring in an abnormal part of the body instead of the usual site involved in that function; "vicarious menstruation" -01598319 00 a 01 normal 3 003 ;c 06136258 n 0000 + 14500908 n 0101 ! 01598592 a 0101 | being approximately average or within certain limits in e.g. intelligence and development; "a perfectly normal child"; "of normal intelligence"; "the most normal person I've ever met" -01598592 00 a 01 abnormal 3 004 ;c 06136258 n 0000 + 05646535 n 0101 ! 01598319 a 0101 & 01598859 a 0000 | departing from the normal in e.g. intelligence and development; "they were heartbroken when they learned their child was abnormal"; "an abnormal personality" -01598859 00 s 01 exceptional(a) 0 002 & 01598592 a 0000 ;c 06136258 n 0000 | deviating widely from a norm of physical or mental ability; used especially of children below normal in intelligence; "special educational provisions for exceptional children" -01599114 00 a 01 hypertensive 0 002 ! 01599228 a 0101 ! 01599340 a 0101 | having abnormally high blood pressure -01599228 00 a 01 hypotensive 0 002 ! 01599340 a 0101 ! 01599114 a 0101 | having abnormally low blood pressure -01599340 00 a 01 normotensive 0 002 ! 01599114 a 0101 ! 01599228 a 0101 | having normal blood pressure -01599445 00 a 01 normal 2 001 ! 01599532 a 0101 | in accordance with scientific laws -01599532 00 a 01 paranormal 0 007 ^ 02108827 a 0000 ^ 01570470 a 0000 ! 01599445 a 0101 & 01599782 a 0000 & 01599898 a 0000 & 01600041 a 0000 & 01600174 a 0000 | not in accordance with scientific laws; "what seemed to be paranormal manifestations" -01599782 00 s 01 parapsychological 0 002 & 01599532 a 0000 + 07256375 n 0103 | beyond normal physical explanation -01599898 00 s 02 psychic 0 psychical 0 002 & 01599532 a 0000 + 10488309 n 0101 | outside the sphere of physical science; "psychic phenomena" -01600041 00 s 01 psychokinetic 0 002 & 01599532 a 0000 + 07257045 n 0102 | moving an object without apparent use of physical means -01600174 00 s 02 supernormal 0 supranormal 0 001 & 01599532 a 0000 | beyond the range of the normal or scientifically explainable; "supernormal intimations" -01600333 00 a 01 north 0 013 = 08561081 n 0000 ! 01602330 a 0101 & 01600713 a 0000 & 01600888 a 0000 & 01601069 a 0000 & 01601297 a 0000 & 01601462 a 0000 & 01601592 a 0000 & 01601763 a 0000 & 01601901 a 0000 & 01601981 a 0000 & 01602112 a 0000 & 01602250 a 0000 | situated in or facing or moving toward or coming from the north; "artists like north light"; "the north portico" -01600713 00 s 02 northbound 0 northward 0 001 & 01600333 a 0000 | moving toward the north; "the northbound lane"; "we took the north train"; "the northward flow of traffic" -01600888 00 s 01 north-central 0 001 & 01600333 a 0000 | situated in the northern part of a centrally located area in some geographical region; "the north-central part of Russia" -01601069 00 s 02 northerly 1 northern 1 003 & 01600333 a 0000 + 05079180 n 0201 + 11487950 n 0103 | coming from the north; used especially of wind; "the north wind doth blow"; "a northern snowstorm"; "the winds are northerly" -01601297 00 s 02 northerly 2 northern 2 001 & 01600333 a 0000 | situated in or oriented toward the north; "the northern suburbs"; "going in a northerly direction" -01601462 00 s 02 northernmost 0 northmost 0 001 & 01600333 a 0000 | situated farthest north; "Alaska is our northernmost state" -01601592 00 s 03 northeastern 0 northeasterly 1 northeast 1 001 & 01600333 a 0000 | situated in or oriented toward the northeast; "the northeasterly part of the island" -01601763 00 s 02 northeasterly 2 northeast 2 002 & 01600333 a 0000 + 11462951 n 0101 | coming from the northeast; "northeasterly winds" -01601901 00 s 01 northeastward 0 001 & 01600333 a 0000 | toward the northeast -01601981 00 s 03 northwestern 0 northwesterly 1 northwest 1 001 & 01600333 a 0000 | situated in or oriented toward the northwest -01602112 00 s 02 northwesterly 2 northwest 2 002 & 01600333 a 0000 + 11448475 n 0102 | coming from the northwest; "northwesterly winds" -01602250 00 s 01 northwestward 0 001 & 01600333 a 0000 | toward the northwest -01602330 00 a 01 south 0 013 = 09050244 n 0000 ! 01600333 a 0101 & 01602683 a 0000 & 01602797 a 0000 & 01602966 a 0000 & 01603179 a 0000 & 01603354 a 0000 & 01603518 a 0000 & 01603649 a 0000 & 01603789 a 0000 & 01603869 a 0000 & 01604000 a 0000 & 01604146 a 0000 | situated in or facing or moving toward or coming from the south; "the south entrance" -01602683 00 s 02 southbound 0 southward 0 001 & 01602330 a 0000 | moving toward the south; "a southbound train" -01602797 00 s 01 south-central 0 001 & 01602330 a 0000 | situated in the southern part of a centrally located area in some geographical region; "south-central London" -01602966 00 s 02 southerly 1 southern 1 003 & 01602330 a 0000 + 05079309 n 0201 + 11511405 n 0102 | from the south; used especially of wind; "a hot southerly wind"; "southern breezes"; "the winds are southerly" -01603179 00 s 02 southerly 2 southern 2 002 & 01602330 a 0000 + 05079309 n 0201 | situated in or oriented toward the south; "a southern exposure"; "took a southerly course" -01603354 00 s 02 southernmost 0 southmost 0 001 & 01602330 a 0000 | situated farthest south; "Key West is the southernmost city in the continental United States" -01603518 00 s 03 southeast 1 southeastern 0 southeasterly 1 001 & 01602330 a 0000 | situated in or oriented toward the southeast -01603649 00 s 02 southeasterly 2 southeast 2 002 & 01602330 a 0000 + 11448714 n 0101 | coming from the southeast; "southeasterly breezes" -01603789 00 s 01 southeastward 0 001 & 01602330 a 0000 | toward the southeast -01603869 00 s 03 southwest 1 southwestern 0 southwesterly 1 001 & 01602330 a 0000 | situated in or oriented toward the southwest -01604000 00 s 02 southwesterly 2 southwest 2 002 & 01602330 a 0000 + 11448593 n 0101 | coming from the southwest; "the winds are southwesterly" -01604146 00 s 01 southwestward 0 001 & 01602330 a 0000 | toward the southwest -01604226 00 a 01 northern 1 005 = 08561081 n 0000 ! 01605081 a 0101 & 01604453 a 0000 & 01604566 a 0000 & 01604945 a 0000 | situated in or coming from regions of the north; "the northern hemisphere"; "northern autumn colors" -01604453 00 s 02 boreal 0 circumboreal 0 001 & 01604226 a 0000 | comprising or throughout far northern regions -01604566 00 s 01 north-central 0 001 & 01604226 a 0000 | being in or of a region of the United States generally including states of the upper Mississippi valley and Great Lakes region lying north of the Ohio River and the southern boundaries of Kansas and Missouri and between the western boundary of Pennsylvania and the eastern boundaries of Montana and Wyoming and Colorado -01604945 00 s 01 septrional 0 001 & 01604226 a 0000 | of northern regions; from the seven stars (or seven plowing oxen) of Ursa Major -01605081 00 a 01 southern 1 006 = 08561583 n 0000 + 05079309 n 0101 ! 01604226 a 0101 & 01605327 a 0000 & 01605445 a 0000 & 01605569 a 0000 | situated in or coming from regions of the south; "the southern hemisphere"; "southern constellations" -01605327 00 s 01 austral 0 001 & 01605081 a 0000 | of the south or coming from the south; "sailed the austral seas" -01605445 00 s 01 meridional 0 001 & 01605081 a 0000 | located in the south or characteristic of southern people or places -01605569 00 s 01 south-central 0 001 & 01605081 a 0000 | being in or of a region of the United States including the states of the lower Mississippi valley and east of the Rio Grande -01605753 00 a 01 northern 2 006 = 09052314 n 0000 = 09052652 n 0000 ! 01606648 a 0101 & 01606058 a 0000 & 01606214 a 0000 & 01606470 a 0000 | in or characteristic of a region of the United States north of (approximately) the Mason-Dixon line; "Northern liberals"; "northern industry"; "northern cities" -01606058 00 s 01 blue 0 001 & 01605753 a 0000 | used to signify the Union forces in the American Civil War (who wore blue uniforms); "a ragged blue line" -01606214 00 s 02 Union 0 Federal 0 002 & 01605753 a 0000 + 10373639 n 0201 | being of or having to do with the northern United States and those loyal to the Union during the American Civil War; "Union soldiers"; "Federal forces"; "a Federal infantryman" -01606470 00 s 01 Yankee 0 002 & 01605753 a 0000 + 10802283 n 0101 | used by Southerners for an inhabitant of a northern state in the United States (especially a Union soldier) -01606648 00 a 01 southern 2 005 = 09050730 n 0000 = 09050244 n 0000 ! 01605753 a 0101 & 01606942 a 0000 & 01607120 a 0000 | in or characteristic of a region of the United States south of (approximately) the Mason-Dixon line; "southern hospitality"; "southern cooking"; "southern plantations" -01606942 00 s 01 Confederate 0 002 & 01606648 a 0000 + 09953615 n 0101 | of or having to do with the southern Confederacy during the American Civil War; "Confederate soldiers" -01607120 00 s 02 grey 0 gray 0 001 & 01606648 a 0000 | used to signify the Confederate forces in the American Civil War (who wore grey uniforms); "a stalwart grey figure" -01607293 00 a 01 nosed 0 005 ! 01607909 a 0101 & 01607492 a 0000 & 01607572 a 0000 & 01607744 a 0000 & 01607831 a 0000 | having a nose (either literal or metaphoric) especially of a specified kind -01607492 00 s 01 hook-nosed 0 001 & 01607293 a 0000 | having an aquiline nose -01607572 00 s 04 pug-nosed 0 pug-nose 0 short-nosed 0 snub-nosed 0 001 & 01607293 a 0000 | having a blunt nose; "a pug-nosed boy with freckles"; "a snub-nosed automatic" -01607744 00 s 01 sharp-nosed 0 001 & 01607293 a 0000 | having a sharply pointed nose -01607831 00 s 01 tube-nosed 0 001 & 01607293 a 0000 | having a tubular nose -01607909 00 a 01 noseless 0 001 ! 01607293 a 0101 | having no nose -01607978 00 a 01 noticed 0 002 ! 01608264 a 0101 & 01608127 a 0000 | being perceived or observed; "an easily noticed effect on the rate of growth" -01608127 00 s 01 detected 0 001 & 01607978 a 0000 | perceived with the mind; "he winced at the detected flicker of irony in her voice" -01608264 00 a 01 unnoticed 0 006 ! 01607978 a 0101 & 01608465 a 0000 & 01608656 a 0000 & 01608848 a 0000 & 01608997 a 0000 & 01609101 a 0000 | not noticed; "hoped his departure had passed unnoticed" -01608465 00 s 02 disregarded 0 forgotten 0 001 & 01608264 a 0000 | not noticed inadvertently; "her aching muscles forgotten she danced all night"; "he was scolded for his forgotten chores" -01608656 00 s 03 ignored 0 neglected 0 unheeded 0 001 & 01608264 a 0000 | disregarded; "his cries were unheeded"; "Shaw's neglected one-act comedy, `A Village Wooing'"; "her ignored advice" -01608848 00 s 03 overlooked 0 unmarked 0 unnoted 0 001 & 01608264 a 0000 | not taken into account; "his retirement was not allowed to go unmarked" -01608997 00 s 01 unobserved 0 001 & 01608264 a 0000 | not observed; "managed to slip away unobserved" -01609101 00 s 02 unperceived 0 unremarked 0 001 & 01608264 a 0000 | not perceived or commented on -01609201 00 a 01 detected 0 004 ! 01609900 a 0101 & 01609373 a 0000 & 01609501 a 0000 & 01609762 a 0000 | perceived or discerned; "the detected micrometeoritic material" -01609373 00 s 01 perceived 1 001 & 01609201 a 0000 | detected by means of the senses; "a perceived difference in temperature" -01609501 00 s 02 sensed 0 perceived 2 001 & 01609201 a 0000 | detected by instinct or inference rather than by recognized perceptual cues; "the felt presence of an intruder"; "a sensed presence in the room raised goosebumps on her arms"; "a perceived threat" -01609762 00 s 01 heard 0 001 & 01609201 a 0000 | detected or perceived by the sense of hearing; "a conversation heard through the wall" -01609900 00 a 01 undetected 0 003 ! 01609201 a 0101 & 01610126 a 0000 & 01610261 a 0000 | not perceived or discerned; "they feared some undetected trace of poison"; "she looked around to be sure her faux pas was undetected" -01610126 00 s 01 undiscovered 0 001 & 01609900 a 0000 | not discovered; "with earth-based telescopes many stars remain undiscovered" -01610261 00 s 02 unobserved 0 unseen 0 001 & 01609900 a 0000 | not observed -01610339 00 a 01 determined 0 002 ! 01610803 a 0101 & 01610484 a 0000 | having been learned or found or determined especially by investigation -01610484 00 s 03 ascertained 0 discovered 0 observed 0 001 & 01610339 a 0000 | discovered or determined by scientific observation; "variation in the ascertained flux depends on a number of factors"; "the discovered behavior norms"; "discovered differences in achievement"; "no explanation for the observed phenomena" -01610803 00 a 01 undetermined 0 002 ! 01610339 a 0101 & 01610952 a 0000 | not yet having been ascertained or determined; "of undetermined species" -01610952 00 s 01 unexplained 0 001 & 01610803 a 0000 | not explained; "accomplished by some unexplained process" -01611067 00 a 01 noxious 0 008 ^ 01160031 a 0000 ^ 02449430 a 0000 ^ 02559180 a 0000 + 04790774 n 0103 ! 01611839 a 0101 & 01611329 a 0000 & 01611490 a 0000 & 01611683 a 0000 | injurious to physical or mental health; "noxious chemical wastes"; "noxious ideas" -01611329 00 s 04 baneful 0 deadly 0 pernicious 0 pestilent 0 004 & 01611067 a 0000 + 05693669 n 0401 + 04790942 n 0301 + 04791081 n 0201 | exceedingly harmful -01611490 00 s 02 corrupting 0 degrading 0 001 & 01611067 a 0000 | harmful to the mind or morals; "corrupt judges and their corrupting influence"; "the vicious and degrading cult of violence" -01611683 00 s 02 vesicatory 0 vesicant 0 005 & 01611067 a 0000 + 15112239 n 0201 + 00379774 v 0202 + 15112239 n 0102 + 00379774 v 0102 | causing blisters -01611839 00 a 01 innocuous 0 003 ^ 01159655 a 0000 ! 01611067 a 0101 & 01611973 a 0000 | not injurious to physical or mental health -01611973 00 s 01 innoxious 0 001 & 01611839 a 0000 | having no adverse effect -01612053 00 a 01 obedient 0 016 ^ 00696518 a 0000 ^ 02328659 a 0000 ^ 01123148 a 0000 ^ 01474513 a 0000 ^ 00788821 a 0000 ^ 02451113 a 0000 = 04906273 n 0000 + 04906273 n 0101 + 01132864 n 0101 + 01167146 n 0101 + 02542795 v 0101 ! 01613463 a 0101 & 01612627 a 0000 & 01612878 a 0000 & 01613047 a 0000 & 01613309 a 0000 | dutifully complying with the commands or instructions of those in authority; "an obedient soldier"; "obedient children"; "a little man obedient to his wife"; "the obedient colonies...are heavily taxed; the refractory remain unburdened"- Edmund Burke -01612627 00 s 02 acquiescent 0 biddable 0 005 & 01612053 a 0000 + 00759657 v 0201 + 00793580 v 0202 + 07175575 n 0102 + 00804139 v 0103 | willing to carry out the orders or wishes of another without protest; "too acquiescent to challenge authority" -01612878 00 s 01 conformable 0 001 & 01612053 a 0000 | quick to comply; "I have been to you a true and humble wife, at all times to your will conformable"-Shakespeare -01613047 00 s 02 dutiful 0 duteous 0 004 & 01612053 a 0000 + 00719494 n 0201 + 01129920 n 0201 + 04827392 n 0101 | willingly obedient out of a sense of duty and respect; "a dutiful child"; "a dutiful citizen"; "Patient Griselda was a chaste and duteous wife"; -01613309 00 s 01 Y2K_compliant 0 001 & 01612053 a 0000 | prepared to accurately process date and time data between and into the 20th and 21st centuries -01613463 00 a 01 disobedient 0 014 ^ 01125429 a 0000 ^ 00695523 a 0000 ^ 00635456 a 0000 ^ 02451951 a 0000 ^ 02326695 a 0000 ^ 01475282 a 0000 = 04906273 n 0000 + 01179707 n 0101 + 02543181 v 0101 ! 01612053 a 0101 & 01613839 a 0000 & 01614127 a 0000 & 01614372 a 0000 & 01614558 a 0000 | not obeying or complying with commands of those in authority; "disobedient children" -01613839 00 s 04 contrary 0 obstinate 0 perverse 0 wayward 0 004 & 01613463 a 0000 + 04909018 n 0303 + 04909018 n 0302 + 04909018 n 0101 | resistant to guidance or discipline; "Mary Mary quite contrary"; "an obstinate child with a violent temper"; "a perverse mood"; "wayward behavior" -01614127 00 s 03 fractious 0 refractory 0 recalcitrant 0 003 & 01613463 a 0000 + 04907575 n 0201 + 04908396 n 0102 | stubbornly resistant to authority or control; "a fractious animal that would not submit to the harness"; "a refractory child" -01614372 00 s 05 froward 0 headstrong 0 self-willed 0 willful 0 wilful 0 003 & 01613463 a 0000 + 04908396 n 0504 + 04908396 n 0403 | habitually disposed to disobedience and opposition -01614558 00 s 01 recusant 0 004 & 01613463 a 0000 + 00972867 v 0101 + 09957834 n 0102 + 01243453 n 0101 | refusing to submit to authority; "the recusant electors...cooperated in electing a new Senate"- Mary W.Williams -01614778 00 a 02 obtrusive 0 noticeable 4 003 + 04706290 n 0203 + 04707110 n 0101 ! 01614988 a 0101 | undesirably noticeable; "the obtrusive behavior of a spoiled child"; "equally obtrusive was the graffiti" -01614988 00 a 02 unobtrusive 0 unnoticeable 4 003 + 04707808 n 0201 + 04707964 n 0101 ! 01614778 a 0101 | not obtrusive or undesirably noticeable; "a quiet, unobtrusive life of self-denial" -01615180 00 a 02 objective 0 nonsubjective 4 006 + 04892344 n 0101 + 04892344 n 0102 ! 01615925 a 0101 & 01615460 a 0000 & 01615625 a 0000 & 01615785 a 0000 | undistorted by emotion or personal bias; based on observable phenomena; "an objective appraisal"; "objective evidence" -01615460 00 s 01 clinical 0 001 & 01615180 a 0000 | scientifically detached; unemotional; "he spoke in the clipped clinical monotones typical of police testimony" -01615625 00 s 02 impersonal 0 neutral 0 002 & 01615180 a 0000 + 06205018 n 0202 | having no personal preference; "impersonal criticism"; "a neutral observer" -01615785 00 s 01 verifiable 0 002 & 01615180 a 0000 + 00664483 v 0101 | capable of being verified; "a verifiable account of the incident" -01615925 00 a 01 subjective 0 006 + 04892544 n 0102 + 04892544 n 0101 ! 01615180 a 0101 & 01616157 a 0000 & 01616244 a 0000 & 01616350 a 0000 | taking place within the mind and modified by individual bias; "a subjective judgment" -01616157 00 s 01 personal 0 001 & 01615925 a 0000 | particular to a given individual -01616244 00 s 01 prejudiced 0 001 & 01615925 a 0000 | emanating from a person's emotions and prejudices -01616350 00 s 02 unobjective 0 unverifiable 0 001 & 01615925 a 0000 | (of e.g. evidence) not objective or easily verified -01616474 00 a 01 obligated(p) 0 008 ^ 01996377 a 0000 ! 01617502 a 0101 & 01616798 a 0000 & 01616891 a 0000 & 01617004 a 0000 & 01617144 a 0000 & 01617255 a 0000 & 01617410 a 0000 | caused by law or conscience to follow a certain course; "felt obligated to repay the kindness"; "was obligated to pay off the student loan" -01616798 00 s 01 beholden(p) 0 001 & 01616474 a 0000 | under a moral obligation to someone -01616891 00 s 02 duty-bound(p) 0 obliged(p) 0 001 & 01616474 a 0000 | under a moral obligation to do something -01617004 00 s 01 indebted(p) 1 002 & 01616474 a 0000 + 13782033 n 0102 | owing gratitude or recognition to another for help or favors etc -01617144 00 s 01 indebted(p) 2 002 & 01616474 a 0000 + 14490319 n 0101 | under a legal obligation to someone -01617255 00 s 01 supposed(p) 0 001 & 01616474 a 0000 | required or under orders; "I'm supposed to be there at ten"; "he was supposed to go to the store" -01617410 00 s 01 tributary 0 001 & 01616474 a 0000 | paying tribute; "a tributary colony" -01617502 00 a 01 unobligated 0 002 ! 01616474 a 0101 & 01617591 a 0000 | not obligated -01617591 00 s 01 unbeholden(p) 0 001 & 01617502 a 0000 | free of moral obligation -01617675 00 a 01 obligate 0 002 ;c 06037666 n 0000 ! 01617859 a 0101 | restricted to a particular condition of life; "an obligate anaerobe can survive only in the absence of oxygen" -01617859 00 a 01 facultative 0 002 ;c 06037666 n 0000 ! 01617675 a 0101 | able to exist under more than one set of conditions; "a facultative parasite can exist as a parasite or a saprophyte" -01618053 00 a 01 obvious 0 012 ^ 01704761 a 0000 = 04706290 n 0000 + 04706290 n 0101 ! 01620052 a 0101 & 01618376 a 0000 & 01618895 a 0000 & 01619105 a 0000 & 01619379 a 0000 & 01619475 a 0000 & 01619604 a 0000 & 01619689 a 0000 & 01619880 a 0000 | easily perceived by the senses or grasped by the mind; "obvious errors" -01618376 00 s 06 apparent 0 evident 0 manifest 0 patent 0 plain 0 unmistakable 0 008 & 01618053 a 0000 + 04821615 n 0503 + 04706290 n 0404 + 05823932 n 0201 + 04706727 n 0102 + 02134672 v 0101 + 00422090 v 0101 + 04706727 n 0101 | clearly revealed to the mind or the senses or judgment; "the effects of the drought are apparent to anyone who sees the parched fields"; "evident hostility"; "manifest disapproval"; "patent advantages"; "made his meaning plain"; "it is plain that he is no reactionary"; "in plain view" -01618895 00 s 03 axiomatic 0 self-evident 0 taken_for_granted(p) 0 002 & 01618053 a 0000 + 06753550 n 0101 | evident without proof or argument; "an axiomatic truth"; "we hold these truths to be self-evident" -01619105 00 s 02 demonstrable 0 provable 0 003 & 01618053 a 0000 + 04755466 n 0202 + 04755466 n 0101 | capable of being demonstrated or proved; "obvious lies"; "a demonstrable lack of concern for the general welfare"; "practical truth provable to all men"- Walter Bagehot -01619379 00 s 01 frank 0 001 & 01618053 a 0000 | clearly manifest; evident; "frank enjoyment" -01619475 00 s 01 open-and-shut 0 001 & 01618053 a 0000 | so obvious as to be easily solved or decided; "an open-and-shut case" -01619604 00 s 01 self-explanatory 0 001 & 01618053 a 0000 | needing no explanation -01619689 00 s 01 transparent 0 002 & 01618053 a 0000 + 04702127 n 0101 | easily understood or seen through (because of a lack of subtlety); "a transparent explanation"; "a transparent lie" -01619880 00 s 01 writ_large 0 001 & 01618053 a 0000 | made more obvious or prominent; "the effect of...his irregular life could be seen writ large on his gaunt features" -01620052 00 a 01 unobvious 0 004 = 04706290 n 0000 ! 01618053 a 0101 & 01620286 a 0000 & 01620401 a 0000 | not immediately apparent; "in mathematical science connections are exhibited which...are extremely unobvious"- A.N.Whitehead -01620286 00 s 01 unapparent 0 001 & 01620052 a 0000 | not readily apparent; "the answer was at first unapparent" -01620401 00 s 01 unprovable 0 001 & 01620052 a 0000 | not provable; "it was both unproved and unprovable" -01620509 00 a 01 obstructed 0 011 ^ 01653538 a 0000 ! 01622302 a 0101 & 01620893 a 0000 & 01621080 a 0000 & 01621268 a 0000 & 01621424 a 0000 & 01621680 a 0000 & 01621807 a 0000 & 01621894 a 0000 & 01622033 a 0000 & 01622188 a 0000 | shut off to passage or view or hindered from action; "a partially obstructed passageway"; "an obstructed view"; "justice obstructed is not justice" -01620893 00 s 03 barricaded 0 barred 0 blockaded 0 001 & 01620509 a 0000 | preventing entry or exit or a course of action; "a barricaded street"; "barred doors"; "the blockaded harbor" -01621080 00 s 02 blocked 1 plugged 0 001 & 01620509 a 0000 | completely obstructed or closed off; "the storm was responsible for many blocked roads and bridges"; "the drain was plugged" -01621268 00 s 02 choked 0 clogged 0 001 & 01620509 a 0000 | stopped up; clogged up; "clogged pipes"; "clogged up freeways"; "streets choked with traffic" -01621424 00 s 02 deadlocked 0 stalemated 0 001 & 01620509 a 0000 | at a complete standstill because of opposition of two unrelenting forces or factions; "the chess game ended with white stalemated"; "the two factions are deadlocked over fringe benefits" -01621680 00 s 01 impeded 0 001 & 01620509 a 0000 | made difficult or slow; "we blamed our impeded progress on lack of money" -01621807 00 s 01 occluded 0 001 & 01620509 a 0000 | closed off; "an occluded artery" -01621894 00 s 03 stopped 0 stopped-up(a) 0 stopped_up(p) 0 001 & 01620509 a 0000 | (of a nose) blocked; "a stopped (or stopped-up) nose" -01622033 00 s 01 stuffy 0 002 & 01620509 a 0000 + 14321333 n 0101 | affected with a sensation of stoppage or obstruction; "a stuffy feeling in my chest" -01622188 00 s 01 thrombosed 0 001 & 01620509 a 0000 | affected with or obstructed by a clot of coagulated blood -01622302 00 a 01 unobstructed 0 005 ! 01620509 a 0101 & 01622505 a 0000 & 01622748 a 0000 & 01622908 a 0000 & 01623088 a 0000 | free from impediment or obstruction or hindrance; "an unobstructed view" -01622505 00 s 02 clear 0 open 0 005 & 01622302 a 0000 + 08632423 n 0201 + 05083905 n 0201 + 08632423 n 0102 + 04701460 n 0102 | affording free passage or view; "a clear view"; "a clear path to victory"; "open waters"; "the open countryside" -01622748 00 s 01 patent 0 002 & 01622302 a 0000 + 05084067 n 0101 | (of a bodily tube or passageway) open; affording free passage; "patent ductus arteriosus" -01622908 00 s 01 unimpeded 0 001 & 01622302 a 0000 | not slowed or prevented; "a time of unimpeded growth"; "an unimpeded sweep of meadows and hills afforded a peaceful setting" -01623088 00 s 01 unclogged 0 001 & 01622302 a 0000 | freed of obstructions; "an unclogged drain" -01623187 00 a 01 occupied 0 003 ! 01623836 a 0101 & 01623360 a 0000 & 01623744 a 0000 | held or filled or in use; "she keeps her time well occupied"; "the wc is occupied" -01623360 00 s 03 busy 0 engaged 0 in_use(p) 0 002 & 01623187 a 0000 + 14008050 n 0101 | (of facilities such as telephones or lavatories) unavailable for use by anyone else or indicating unavailability; (`engaged' is a British term for a busy telephone line); "her line is busy"; "receptionists' telephones are always engaged"; "the lavatory is in use"; "kept getting a busy signal" -01623744 00 s 01 filled 0 001 & 01623187 a 0000 | (of time) taken up; "well-filled hours" -01623836 00 a 01 unoccupied 0 003 ! 01623187 a 0101 & 01624010 a 0000 & 01624115 a 0000 | not held or filled or in use; "an unoccupied telephone booth"; "unoccupied hours" -01624010 00 s 01 free 2 001 & 01623836 a 0000 | not occupied or in use; "a free locker"; "a free lane" -01624115 00 s 02 spare 0 free 1 001 & 01623836 a 0000 | not taken up by scheduled activities; "a free hour between classes"; "spare time on my hands" -01624267 00 a 01 occupied 2 001 ! 01624403 a 0101 | seized and controlled as by military invasion; "the occupied countries of Europe" -01624403 00 a 01 unoccupied 2 002 ! 01624267 a 0101 & 01624533 a 0000 | not seized and controlled; "unoccupied areas of France" -01624533 00 s 01 relinquished 0 001 & 01624403 a 0000 | that has been withdrawn or retreated from -01624633 00 a 01 offensive 1 018 ^ 01131043 a 0000 ^ 01460421 a 0000 ^ 01716491 a 0000 ^ 01801600 a 0000 = 04780958 n 0000 + 04780958 n 0101 + 01810447 v 0102 ! 01627459 a 0101 & 01625063 a 0000 & 01625492 a 0000 & 01625760 a 0000 & 01625893 a 0000 & 01626440 a 0000 & 01626562 a 0000 & 01626874 a 0000 & 01627049 a 0000 & 01627166 a 0000 & 01627315 a 0000 | unpleasant or disgusting especially to the senses; "offensive odors" -01625063 00 s 05 abhorrent 0 detestable 0 obscene 0 repugnant 0 repulsive 0 009 & 01624633 a 0000 + 04781349 n 0502 + 02194913 v 0504 + 01808769 v 0501 + 07503987 n 0401 + 07124340 n 0301 + 00738697 n 0301 + 07503430 n 0101 + 01774426 v 0101 | offensive to the mind; "an abhorrent deed"; "the obscene massacre at Wounded Knee"; "morally repugnant customs"; "repulsive behavior"; "the most repulsive character in recent novels" -01625492 00 s 03 charnel 0 ghastly 0 sepulchral 0 002 & 01624633 a 0000 + 04782610 n 0201 | gruesomely indicative of death or the dead; "a charnel smell came from the chest filled with dead men's bones"; "ghastly shrieks"; "the sepulchral darkness of the catacombs" -01625760 00 s 01 creepy 0 002 & 01624633 a 0000 + 09976917 n 0101 | annoying and unpleasant; "some creepy kids were bothering her" -01625893 00 s 0d disgusting 0 disgustful 0 distasteful 0 foul 0 loathly 0 loathsome 0 repellent 0 repellant 0 repelling 0 revolting 0 skanky 0 wicked 0 yucky 0 010 & 01624633 a 0000 + 04781349 n 0c06 + 14856752 n 0b03 + 02194913 v 0804 + 01808769 v 0801 + 02194913 v 0704 + 01808769 v 0701 + 04781349 n 0601 + 04780958 n 0303 + 04996571 n 0101 | highly offensive; arousing aversion or disgust; "a disgusting smell"; "distasteful language"; "a loathsome disease"; "the idea of eating meat is repellent to me"; "revolting food"; "a wicked stench" -01626440 00 s 02 ghoulish 0 morbid 0 001 & 01624633 a 0000 | suggesting the horror of death and decay; "morbid details" -01626562 00 s 04 hideous 0 horrid 0 horrific 0 outrageous 0 004 & 01624633 a 0000 + 07306252 n 0402 + 04903247 n 0401 + 04782116 n 0203 | grossly offensive to decency or morality; causing horror; "subjected to outrageous cruelty"; "a hideous pattern of injustice"; "horrific conditions in the mining industry" -01626874 00 s 02 objectionable 0 obnoxious 0 003 & 01624633 a 0000 + 04781755 n 0202 + 04781755 n 0103 | causing disapproval or protest; "a vulgar and objectionable person" -01627049 00 s 01 rank 0 002 & 01624633 a 0000 + 04980656 n 0104 | very offensive in smell or taste; "a rank cigar" -01627166 00 s 01 scrimy 0 001 & 01624633 a 0000 | dirty and disgusting; "worry about the gossip and secretiveness and other scrimy sides"- Al Hine -01627315 00 s 01 verminous 0 003 & 01624633 a 0000 + 10748506 n 0101 + 01315980 n 0101 | of the nature of vermin; very offensive or repulsive -01627459 00 a 01 inoffensive 1 003 = 04780958 n 0000 ! 01624633 a 0101 & 01627635 a 0000 | giving no offense; "a quiet inoffensive man"; "a refreshing inoffensive stimulant" -01627635 00 s 02 innocuous 0 unobjectionable 0 001 & 01627459 a 0000 | not causing disapproval; "it was an innocuous remark"; "confined himself to innocuous generalities"; "unobjectionable behavior" -01627836 00 a 02 savory 0 savoury 4 001 ! 01627965 a 0101 | morally wholesome or acceptable; "a past that was scarcely savory" -01627965 00 a 03 unsavory 0 unsavoury 4 offensive 4 006 + 04780958 n 0301 + 02566528 v 0302 + 01810447 v 0302 + 04780605 n 0102 ! 01627836 a 0101 & 01628200 a 0000 | morally offensive; "an unsavory reputation"; "an unsavory scandal" -01628200 00 s 01 odoriferous 0 001 & 01627965 a 0000 | morally offensive; "odoriferous legislation" -01628302 00 a 01 offensive 2 008 ^ 01994602 a 0000 ^ 01160031 a 0000 = 04780958 n 0000 + 04780958 n 0101 + 01789270 v 0102 + 01793177 v 0105 ! 01628677 a 0101 & 01628531 a 0000 | causing anger or annoyance; "offensive remarks" -01628531 00 s 03 abusive 0 opprobrious 0 scurrilous 0 003 & 01628302 a 0000 + 06721342 n 0301 + 00845299 v 0101 | expressing offensive reproach -01628677 00 a 02 inoffensive 2 unoffending 2 003 = 04780958 n 0000 ! 01628302 a 0101 & 01628839 a 0000 | not causing anger or annoyance; "inoffensive behavior" -01628839 00 s 02 offenseless 0 offenceless 0 001 & 01628677 a 0000 | incapable of offending or attacking -01628946 00 a 01 offensive 3 009 ^ 00082241 a 0000 ^ 01244410 a 0000 ! 01630117 a 0101 & 01629212 a 0000 & 01629349 a 0000 & 01629493 a 0000 & 01629681 a 0000 & 01629832 a 0000 & 01630033 a 0000 | for the purpose of attack rather than defense; "offensive weapons" -01629212 00 s 01 antipersonnel 0 001 & 01628946 a 0000 | designed to inflict death or personal injury rather than material destruction -01629349 00 s 02 assaultive 0 attacking(a) 0 004 & 01628946 a 0000 + 02567519 v 0104 + 01120069 v 0102 + 00862683 v 0106 | disposed to attack -01629493 00 s 02 hit-and-run 0 tip-and-run 0 001 & 01628946 a 0000 | designed for or consisting of a brief attack followed by a quick escape; "hit-and-run units"; "tip-and-run assaults" -01629681 00 s 03 incursive 0 invading 0 invasive 0 002 & 01628946 a 0000 + 01126360 v 0301 | involving invasion or aggressive attack; "invasive war" -01629832 00 s 03 marauding 0 predatory 0 raiding 0 001 & 01628946 a 0000 | characterized by plundering or pillaging or marauding; "bands of marauding Indians"; "predatory warfare"; "a raiding party" -01630033 00 s 01 on_the_offensive(p) 0 001 & 01628946 a 0000 | actively attacking -01630117 00 a 01 defensive 0 009 ^ 01887076 a 0000 + 01129876 v 0101 + 01127795 v 0101 ! 01628946 a 0101 & 01630439 a 0000 & 01630579 a 0000 & 01630673 a 0000 & 01630773 a 0000 & 01630939 a 0000 | intended or appropriate for defending against or deterring aggression or attack; "defensive weapons"; "a defensive stance" -01630439 00 s 01 antiaircraft 0 002 & 01630117 a 0000 + 02715712 n 0101 | designed for defense from a surface position against air attack -01630579 00 s 01 antisubmarine 0 001 & 01630117 a 0000 | defensive against enemy submarines -01630673 00 s 01 antitank 0 001 & 01630117 a 0000 | designed for defense against armored vehicles -01630773 00 s 01 defending 0 003 & 01630117 a 0000 ;c 00455599 n 0000 ;c 00523513 n 0000 | attempting to or designed to prevent an opponent from winning or scoring -01630939 00 s 01 en_garde 0 001 & 01630117 a 0000 | (fencing) in a defensive stance -01631025 00 a 01 offending 0 003 ! 01631703 a 0101 & 01631217 a 0000 & 01631386 a 0000 | offending against or breaking a law or rule; "contracts offending against the statute were canceled" -01631217 00 s 01 sinning 0 001 & 01631025 a 0000 | transgressing a moral or divine law; "if it be a sin to covet honor, I am the most sinning soul alive"- Shakespeare -01631386 00 s 02 offensive 0 violative 0 006 & 01631025 a 0000 + 02668523 v 0201 + 02568065 v 0204 + 02566528 v 0204 + 04780958 n 0101 + 02566528 v 0102 | violating or tending to violate or offend against; "violative of the principles of liberty"; "considered such depravity offensive against all laws of humanity" -01631703 00 a 01 unoffending 0 001 ! 01631025 a 0101 | not offending; "an unoffending motorist should not have been stopped" -01631830 00 a 02 apologetic 0 excusatory 0 006 + 00894738 v 0203 + 06740919 n 0101 + 06633363 n 0101 ! 01632411 a 0101 & 01632066 a 0000 & 01632314 a 0000 | offering or expressing apology; "an apologetic note"; "an apologetic manner" -01632066 00 s 03 defensive 0 justificative 0 justificatory 0 007 & 01631830 a 0000 + 00894738 v 0304 + 00894738 v 0204 + 00896141 v 0201 + 06195249 n 0101 + 01091427 v 0105 + 01017643 v 0102 | attempting to justify or defend in speech or writing -01632314 00 s 01 self-deprecating 0 001 & 01631830 a 0000 | conscious of your own shortcomings -01632411 00 a 01 unapologetic 0 001 ! 01631830 a 0101 | unwilling to make or express an apology; "an unapologetic believer" -01632537 00 a 01 official 0 008 ^ 00178575 a 0000 + 13945102 n 0101 ! 01633591 a 0101 & 01632808 a 0000 & 01632988 a 0000 & 01633153 a 0000 & 01633316 a 0000 & 01633490 a 0000 | having official authority or sanction; "official permission"; "an official representative" -01632808 00 s 03 authoritative 0 authorized 0 authorised 0 001 & 01632537 a 0000 | sanctioned by established authority; "an authoritative communique"; "the authorized biography" -01632988 00 s 01 ex_officio 0 001 & 01632537 a 0000 | by virtue of an office or position; "the head of the department serves as an ex officio member of the board" -01633153 00 s 01 formal 0 002 & 01632537 a 0000 + 07455007 n 0101 | characteristic of or befitting a person in authority; "formal duties"; "an official banquet" -01633316 00 s 02 formalized 0 formalised 0 001 & 01632537 a 0000 | given formal standing or endorsement; made official or legitimate by the observance of proper procedures -01633490 00 s 01 semiofficial 0 001 & 01632537 a 0000 | having some official authority or sanction -01633591 00 a 01 unofficial 0 006 ^ 00179486 a 0000 ! 01632537 a 0101 & 01633880 a 0000 & 01634027 a 0000 & 01634199 a 0000 & 01634364 a 0000 | not having official authority or sanction; "a sort of unofficial mayor"; "an unofficial estimate"; "he participated in an unofficial capacity" -01633880 00 s 02 drumhead 0 summary 0 001 & 01633591 a 0000 | performed speedily and without formality; "a summary execution"; "summary justice" -01634027 00 s 02 informal 0 loose 0 001 & 01633591 a 0000 | not officially recognized or controlled; "an informal agreement"; "a loose organization of the local farmers" -01634199 00 s 03 unauthorized 0 unauthorised 0 wildcat 0 001 & 01633591 a 0000 | without official authorization; "an unauthorized strike"; "wildcat work stoppage" -01634364 00 s 01 unsanctioned 0 001 & 01633591 a 0000 | without explicit official permission; "unsanctioned use of company cars" -01634495 00 a 01 confirmed 0 002 ! 01634851 a 0101 & 01634736 a 0000 | having been established or made firm or received the rite of confirmation; "confirmed reservations"; "received confirmed reports of casualties"; "a confirmed Catholic" -01634736 00 s 01 official 0 001 & 01634495 a 0000 | verified officially; "the election returns are now official" -01634851 00 a 01 unconfirmed 0 002 ! 01634495 a 0101 & 01635018 a 0000 | not finally established or settled; "an unconfirmed letter of credit"; "unconfirmed rumors" -01635018 00 s 01 unofficial 0 001 & 01634851 a 0000 | not officially established; "the early election returns are unofficial" -01635146 00 a 02 established 0 constituted 0 008 ! 01636757 a 0101 & 01635633 a 0000 & 01635962 a 0000 & 01636090 a 0000 & 01636205 a 0000 & 01636363 a 0000 & 01636507 a 0000 & 01636636 a 0000 | brought about or set up or accepted; especially long established; "the established social order"; "distrust the constituted authority"; "a team established as a member of a major league"; "enjoyed his prestige as an established writer"; "an established precedent"; "the established Church" -01635633 00 s 05 deep-rooted 0 deep-seated 0 implanted 0 ingrained 0 planted 0 001 & 01635146 a 0000 | (used especially of ideas or principles) deeply rooted; firmly fixed or held; "deep-rooted prejudice"; "deep-seated differences of opinion"; "implanted convictions"; "ingrained habits of a lifetime"; "a deeply planted need" -01635962 00 s 01 entrenched 0 001 & 01635146 a 0000 | established firmly and securely; "the entrenched power of the nobility" -01636090 00 s 02 grooved 0 well-grooved 0 001 & 01635146 a 0000 | established as if settled into a groove or rut -01636205 00 s 01 legitimate 0 001 & 01635146 a 0000 | in accordance with recognized or accepted standards or principles; "legitimate advertising practices" -01636363 00 s 01 official 0 002 & 01635146 a 0000 ;c 01032368 n 0000 | (of a church) given official status as a national or state institution -01636507 00 s 02 recognized 0 recognised 0 001 & 01635146 a 0000 | provided with a secure reputation; "a recognized authority" -01636636 00 s 02 self-constituted 0 self-established 0 001 & 01635146 a 0000 | constituted by or established by itself -01636757 00 a 01 unestablished 0 002 ! 01635146 a 0101 & 01636887 a 0000 | not established; "a reputation as yet unestablished" -01636887 00 s 02 unrecognized 0 unrecognised 0 001 & 01636757 a 0000 | not having a secure reputation; "short stories by unrecognized writers" -01637032 00 a 02 conditioned 0 learned 2 002 ;c 06136258 n 0000 ! 01637184 a 0101 | established by conditioning or learning; "a conditioned response" -01637184 00 a 03 unconditioned 0 innate 2 unlearned 2 003 + 04739630 n 0201 ! 01637032 a 0101 & 01637371 a 0000 | not established by conditioning or learning; "an unconditioned reflex" -01637371 00 s 01 naive 0 002 & 01637184 a 0000 + 04880573 n 0103 | inexperienced -01637454 00 a 01 on-site 0 002 ! 01637766 a 0101 & 01637583 a 0000 | taking place or located at the site; "on-site inspection" -01637583 00 s 02 on-the-spot(a) 0 on-the-scene(a) 0 001 & 01637454 a 0000 | at the scene of action; "an on-the-spot reporter"; "on-the-spot inspections"; "an on-the scene newscast" -01637766 00 a 01 off-site 0 001 ! 01637454 a 0101 | taking place or located away from the site; "an off-site waste treatment operation" -01637904 00 a 01 offstage 0 001 ! 01638053 a 0101 | situated or taking place in the area of a stage not visible to the audience; "offstage noises" -01638053 00 a 01 onstage 0 001 ! 01637904 a 0101 | situated or taking place on the area of a stage visible to the audience -01638178 00 a 01 off-street 0 001 ! 01638311 a 0101 | not on the streets; "off-street parking"; "off-street unloading of vehicles" -01638311 00 a 01 on-street 0 001 ! 01638178 a 0101 | at the sides of streets; "on-street parking is prohibited at rush hour" -01638438 00 a 01 old 1 021 ^ 00668571 a 0000 ^ 01536911 a 0000 ^ 01727926 a 0000 ^ 01068726 a 0000 ^ 02580449 a 0000 = 04924103 n 0000 + 04925348 n 0101 ! 01640850 a 0101 & 01638962 a 0000 & 01639230 a 0000 & 01639446 a 0000 & 01639636 a 0000 & 01639720 a 0000 & 01639891 a 0000 & 01639973 a 0000 & 01640124 a 0000 & 01640261 a 0000 & 01640356 a 0000 & 01640482 a 0000 & 01640618 a 0000 & 01640729 a 0000 | of long duration; not new; "old tradition"; "old house"; "old wine"; "old country"; "old friendships"; "old money" -01638962 00 s 02 age-old 0 antique 1 005 & 01638438 a 0000 + 10376890 n 0205 + 02723754 n 0201 + 15253139 n 0201 + 04925756 n 0202 | belonging to or lasting from times long ago; "age-old customs"; "the antique fear that days would dwindle away to complete darkness" -01639230 00 s 03 antediluvian 0 antiquated 0 archaic 0 001 & 01638438 a 0000 | so extremely old as seeming to belong to an earlier period; "a ramshackle antediluvian tenement"; "antediluvian ideas"; "archaic laws" -01639446 00 s 01 antique 0 003 & 01638438 a 0000 + 02723754 n 0101 + 02724026 n 0101 | made in or typical of earlier times and valued for its age; "the beautiful antique French furniture" -01639636 00 s 01 auld 0 001 & 01638438 a 0000 | a Scottish word; "auld lang syne" -01639720 00 s 02 hand-me-down 1 hand-down 1 002 & 01638438 a 0000 + 03487642 n 0101 | passed on from one person to another; "not too proud to wear hand-me-down clothes" -01639891 00 s 02 hoary 0 rusty 0 001 & 01638438 a 0000 | ancient; "hoary jokes" -01639973 00 s 01 immemorial(ip) 0 001 & 01638438 a 0000 | long past; beyond the limits of memory or tradition or recorded history; "time immemorial" -01640124 00 s 01 long-ago 0 001 & 01638438 a 0000 | belonging to time long gone; "those long-ago dresses that swished along the floor" -01640261 00 s 01 longtime(a) 0 001 & 01638438 a 0000 | of long duration; "a longtime friend" -01640356 00 s 01 patched 0 001 & 01638438 a 0000 | mended usually clumsily by covering a hole with a patch; "patched jeans" -01640482 00 s 02 secondhand 0 used 0 001 & 01638438 a 0000 | previously used or owned by another; "bought a secondhand (or used) car" -01640618 00 s 01 sunset 0 001 & 01638438 a 0000 | of a declining industry or technology; "sunset industries" -01640729 00 s 02 yellow 0 yellowed 0 001 & 01638438 a 0000 | changed to a yellowish color by age; "yellowed parchment" -01640850 00 a 01 new 0 021 ^ 00666058 a 0000 ^ 01067694 a 0000 ^ 01535709 a 0000 = 04924103 n 0000 + 04926427 n 0101 ! 01638438 a 0101 & 01641460 a 0000 & 01641648 a 0000 & 01641791 a 0000 & 01641921 a 0000 & 01642081 a 0000 & 01642245 a 0000 & 01642379 a 0000 & 01642477 a 0000 & 01642657 a 0000 & 01642843 a 0000 & 01642951 a 0000 & 01643094 a 0000 & 01643260 a 0000 & 01643373 a 0000 & 01643480 a 0000 | not of long duration; having just (or relatively recently) come into being or been made or acquired or discovered; "a new law"; "new cars"; "a new comet"; "a new friend"; "a new year"; "the New World" -01641460 00 s 04 brand-new 0 bran-new 0 spic-and-span 0 spick-and-span 0 002 & 01640850 a 0000 + 04926620 n 0101 | conspicuously new; "shiny brand-new shoes"; "a spick-and-span novelty" -01641648 00 s 01 fresh 0 002 & 01640850 a 0000 + 04800596 n 0101 | (of a cycle) beginning or occurring again; "a fresh start"; "fresh ideas" -01641791 00 s 02 hot 0 red-hot 0 001 & 01640850 a 0000 | newest or most recent; "news hot off the press"; "red-hot information" -01641921 00 s 02 newborn 0 new-sprung(a) 0 001 & 01640850 a 0000 | having just or recently arisen or come into existence; "new nations"; "with newborn fears" -01642081 00 s 01 newfound 0 001 & 01640850 a 0000 | newly discovered; "his newfound aggressiveness"; "Hudson pointed his ship down the coast of the newfound sea" -01642245 00 s 02 novel 0 refreshing 0 001 & 01640850 a 0000 | pleasantly new or different; "common sense of a most refreshing sort" -01642379 00 s 02 parvenu 0 parvenue 0 001 & 01640850 a 0000 | of or characteristic of a parvenu -01642477 00 s 01 recent 0 003 & 01640850 a 0000 + 04927268 n 0101 + 04927268 n 0102 | new; "recent graduates"; "a recent addition to the house"; "recent buds on the apple trees" -01642657 00 s 02 revolutionary 0 radical 0 002 & 01640850 a 0000 + 07424109 n 0101 | markedly new or introducing radical change; "a revolutionary discovery"; "radical political views" -01642843 00 s 01 rising 0 001 & 01640850 a 0000 | newly come into prominence; "a rising young politician" -01642951 00 s 01 sunrise(a) 0 001 & 01640850 a 0000 | of an industry or technology; new and developing; "high-technology sunrise industries" -01643094 00 s 02 untested 0 untried 0 001 & 01640850 a 0000 | not yet proved or subjected to testing; "an untested drug"; "untested theory"; "an untried procedure" -01643260 00 s 01 unused 0 001 & 01640850 a 0000 | not yet put into use; "we bought an unused car for a change" -01643373 00 s 01 virgin 0 001 & 01640850 a 0000 | being used or worked for the first time; "virgin wool" -01643480 00 s 01 young 0 002 & 01640850 a 0000 + 04928416 n 0101 | being in its early stage; "a young industry"; "the day is still young" -01643620 00 a 01 old 2 023 ^ 00935500 a 0000 ^ 01488245 a 0000 ^ 02099774 a 0000 = 04924103 n 0000 + 04927445 n 0101 ! 01646941 a 0101 & 01644225 a 0000 & 01644541 a 0000 & 01644709 a 0000 & 01644847 a 0000 & 01644967 a 0000 & 01645048 a 0000 & 01645152 a 0000 & 01645296 a 0000 & 01645490 a 0000 & 01645678 a 0000 & 01646021 a 0000 & 01646120 a 0000 & 01646278 a 0000 & 01646366 a 0000 & 01646435 a 0000 & 01646646 a 0000 & 01646794 a 0000 | (used especially of persons) having lived for a relatively long time or attained a specific age; "his mother is very old"; "a ripe old age"; "how old are you?" -01644225 00 s 04 aged 1 elderly 0 older 0 senior 0 004 & 01643620 a 0000 + 04927890 n 0402 + 07943870 n 0101 + 04927632 n 0101 | advanced in years; (`aged' is pronounced as two syllables); "aged members of the society"; "elderly residents could remember the construction of the first skyscraper"; "senior citizen" -01644541 00 s 02 aged(a) 2 of_age(p) 0 001 & 01643620 a 0000 | having attained a specific age; (`aged' is pronounced as one syllable); "aged ten"; "ten years of age" -01644709 00 s 03 aging 0 ageing 0 senescent 0 004 & 01643620 a 0000 + 13429006 n 0303 + 04927632 n 0302 + 00248026 v 0301 | growing old -01644847 00 s 01 ancient 0 003 & 01643620 a 0000 + 04925756 n 0101 + 09793248 n 0101 | very old; "an ancient mariner" -01644967 00 s 01 anile 0 001 & 01643620 a 0000 | of or like a feeble old woman -01645048 00 s 01 centenarian 0 002 & 01643620 a 0000 + 09904208 n 0101 | being at least 100 years old -01645152 00 s 01 darkened 0 001 & 01643620 a 0000 | (of fabrics and paper) grown dark in color over time; "the darkened margins of the paper" -01645296 00 s 04 doddering 0 doddery 0 gaga 0 senile 0 003 & 01643620 a 0000 + 15154190 n 0403 + 04927792 n 0401 | mentally or physically infirm with age; "his mother was doddering and frail" -01645490 00 s 01 emeritus 0 001 & 01643620 a 0000 | honorably retired from assigned duties and retaining your title along with the additional title `emeritus' as in `professor emeritus' -01645678 00 s 0a grey 0 gray 0 grey-haired 0 gray-haired 0 grey-headed 0 gray-headed 0 grizzly 0 hoar 0 hoary 0 white-haired 0 004 & 01643620 a 0000 + 04961583 n 0902 + 04926308 n 0901 + 03461037 n 0701 | showing characteristics of age, especially having grey or white hair; "whose beard with age is hoar"-Coleridge; "nodded his hoary head" -01646021 00 s 01 middle-aged 0 001 & 01643620 a 0000 | being roughly between 45 and 65 years old -01646120 00 s 01 nonagenarian 0 002 & 01643620 a 0000 + 10360253 n 0101 | being from 90 to 99 years old; "the nonagenarian inhabitants of the nursing home" -01646278 00 s 01 octogenarian 0 001 & 01643620 a 0000 | being from 80 to 89 years old -01646366 00 s 01 oldish 0 001 & 01643620 a 0000 | somewhat elderly -01646435 00 s 04 overage 0 overaged 0 superannuated 1 over-the-hill 0 001 & 01643620 a 0000 | too old to be useful; "He left the house...for the support of twelve superannuated wool carders"- Anthony Trollope -01646646 00 s 01 sexagenarian 0 002 & 01643620 a 0000 + 10584617 n 0101 | being from 60 to 69 years old; "the sexagenarian population is growing" -01646794 00 s 01 venerable 0 002 & 01643620 a 0000 + 04869405 n 0102 | impressive by reason of age; "a venerable sage with white hair and beard" -01646941 00 a 02 young 0 immature 3 028 ^ 01489722 a 0000 ^ 02100709 a 0000 ^ 01640850 a 0000 = 04924103 n 0000 ;c 00004258 n 0000 + 14425974 n 0202 + 07944050 n 0101 + 04928416 n 0101 ! 01643620 a 0101 & 01647601 a 0000 & 01647675 a 0000 & 01647750 a 0000 & 01647829 a 0000 & 01647906 a 0000 & 01647983 a 0000 & 01648189 a 0000 & 01648313 a 0000 & 01648491 a 0000 & 01648617 a 0000 & 01648698 a 0000 & 01648891 a 0000 & 01649031 a 0000 & 01649184 a 0000 & 01649271 a 0000 & 01649469 a 0000 & 01649561 a 0000 & 01649651 a 0000 & 01649720 a 0000 | (used of living things especially persons) in an early period of life or development or growth; "young people" -01647601 00 s 01 one-year-old 0 001 & 01646941 a 0000 | one year of age -01647675 00 s 01 two-year-old 0 001 & 01646941 a 0000 | two years of age -01647750 00 s 01 three-year-old 0 001 & 01646941 a 0000 | three years of age -01647829 00 s 01 four-year-old 0 001 & 01646941 a 0000 | four years of age -01647906 00 s 01 five-year-old 0 001 & 01646941 a 0000 | five years of age -01647983 00 s 04 adolescent 0 teen 0 teenage 0 teenaged 0 004 & 01646941 a 0000 + 09772029 n 0101 + 15147850 n 0101 + 00252710 v 0101 | being of the age 13 through 19; "teenage mothers"; "the teen years" -01648189 00 s 01 infantile 0 001 & 01646941 a 0000 | being or befitting or characteristic of an infant; "infantile games" -01648313 00 s 03 boyish 0 boylike 0 schoolboyish 0 002 & 01646941 a 0000 + 04667076 n 0101 | befitting or characteristic of a young boy; "a boyish grin"; "schoolboyish pranks" -01648491 00 s 02 childlike 0 childly 0 002 & 01646941 a 0000 + 09917593 n 0201 | befitting a young child; "childlike charm" -01648617 00 s 01 early 0 001 & 01646941 a 0000 | very young; "at an early age" -01648698 00 s 02 girlish 0 schoolgirlish 0 002 & 01646941 a 0000 + 04668033 n 0101 | befitting or characteristic of a young girl; "girlish charm"; "a dress too schoolgirlish for office wear" -01648891 00 s 01 junior 0 001 & 01646941 a 0000 | including or intended for youthful persons; "a junior sports league"; "junior fashions" -01649031 00 s 02 little 0 small 0 001 & 01646941 a 0000 | (of children and animals) young, immature; "what a big little boy you are"; "small children" -01649184 00 s 01 newborn 0 001 & 01646941 a 0000 | recently born; "a newborn infant" -01649271 00 s 02 preteen 0 preadolescent 0 002 & 01646941 a 0000 + 09627263 n 0101 | of or relating to or designed for children between the ages of 9 and 12; "a preteen party"; "preteen clothing" -01649469 00 s 02 puppyish 0 puppylike 0 001 & 01646941 a 0000 | characteristic of a puppy -01649561 00 s 01 tender 0 001 & 01646941 a 0000 | young and immature; "at a tender age" -01649651 00 s 01 youngish 0 001 & 01646941 a 0000 | somewhat young -01649720 00 s 03 youthful 0 vernal 0 young 1 002 & 01646941 a 0000 + 04928585 n 0102 | suggestive of youth; vigorous and fresh; "he is young for his age" -01649876 00 a 01 one-piece 0 002 ! 01650037 a 0101 ! 01650193 a 0101 | (of clothing) consisting of or fashioned in a single whole piece; "a one-piece garment" -01650037 00 a 01 two-piece 0 002 ! 01650193 a 0101 ! 01649876 a 0101 | (of clothing) made in or consisting of two parts or pieces; "a two-piece swimsuit" -01650193 00 a 01 three-piece 0 002 ! 01649876 a 0101 ! 01650037 a 0101 | (of clothing) made in or consisting of three parts or pieces; "the standard three-piece business suit; jacket and trousers and vest" -01650401 00 a 02 on-line 0 online 0 003 ;c 06128570 n 0000 ! 01650752 a 0101 & 01650581 a 0000 | connected to a computer network or accessible by computer; "an on-line database" -01650581 00 s 02 machine-accessible 0 connected 2 002 & 01650401 a 0000 + 13791389 n 0203 | stored in, controlled by, or in direct communication with a central computer -01650752 00 a 01 off-line 0 002 ;c 06128570 n 0000 ! 01650401 a 0101 | not connected to a computer network; "off-line resources" -01650883 00 a 02 on-line 2 online 2 002 ;c 01105259 n 0000 ! 01651044 a 0101 | on a regular route of a railroad or bus or airline system; "on-line industries" -01651044 00 a 01 off-line 2 002 ;c 01105259 n 0000 ! 01650883 a 0101 | not on a regular route of a transportation system; "an off-line ticket office" -01651196 00 a 01 on 0 002 ! 01651469 a 0101 & 01651346 a 0000 | in operation or operational; "left the oven on"; "the switch is in the on position" -01651346 00 s 01 connected 0 001 & 01651196 a 0000 | plugged in; "first check to see whether the appliance is connected" -01651469 00 a 01 off 0 002 ! 01651196 a 0101 & 01651609 a 0000 | not in operation or operational; "the oven is off"; "the lights are off" -01651609 00 s 01 disconnected 0 001 & 01651469 a 0000 | not plugged in or connected to a power source; "the iron is disconnected" -01651741 00 a 01 on 2 001 ! 01651896 a 0101 | (of events) planned or scheduled; "the picnic is on, rain or shine"; "we have nothing on for Friday night" -01651896 00 a 02 off 2 cancelled 2 001 ! 01651741 a 0101 | (of events) no longer planned or scheduled; "the wedding is definitely off" -01652033 00 a 01 onside 0 002 ;c 00523513 n 0000 ! 01652158 a 0101 | not offside; being within the prescribed area of play -01652158 00 a 02 offside 0 offsides 0 002 ;c 00523513 n 0000 ! 01652033 a 0101 | illegally beyond a prescribed line or area or ahead of the ball or puck; "the touchdown was nullified because the left tackle was offside" -01652380 00 a 02 open 1 unfastened 4 004 ^ 01652902 a 0000 ! 01652782 a 0101 & 01652601 a 0000 & 01652689 a 0000 | affording unobstructed entrance and exit; not shut or closed; "an open door"; "they left the door open" -01652601 00 s 01 ajar(p) 0 001 & 01652380 a 0000 | slightly open; "the door was ajar" -01652689 00 s 01 wide-open 0 001 & 01652380 a 0000 | open wide; "left the doors wide-open" -01652782 00 a 03 shut 0 unopen 4 closed 4 002 ^ 01653538 a 0000 ! 01652380 a 0101 | not open; "the door slammed shut" -01652902 00 a 01 open 2 006 ^ 01652380 a 0000 ^ 02086991 a 0000 ! 01653538 a 0101 & 01653135 a 0000 & 01653231 a 0000 & 01653379 a 0000 | affording free passage or access; "open drains"; "the road is open to traffic"; "open ranks" -01653135 00 s 01 opened 0 001 & 01652902 a 0000 | made open or clear; "the newly opened road" -01653231 00 s 01 unstoppered 0 001 & 01652902 a 0000 | (of a container) having the stopper removed; "whiskey spilled from the unstoppered bottle" -01653379 00 s 01 yawning 0 001 & 01652902 a 0000 | gaping open as if threatening to engulf someone or something; "the yawning mine shaft"; "a yawning abyss" -01653538 00 a 01 closed 1 008 ^ 01620509 a 0000 ^ 02086667 a 0000 ^ 01652782 a 0000 ! 01652902 a 0101 & 01653857 a 0000 & 01653992 a 0000 & 01654162 a 0000 & 01654299 a 0000 | not open or affording passage or access; "the many closed streets made travel difficult"; "our neighbors peeped from behind closed curtains" -01653857 00 s 02 blocked 0 out_of_use(p) 0 001 & 01653538 a 0000 | closed to traffic; "the repaving results in many blocked streets" -01653992 00 s 01 drawn 0 001 & 01653538 a 0000 | having the curtains or draperies closed or pulled shut; "the drawn draperies kept direct sunlight from fading the rug" -01654162 00 s 01 stoppered 0 001 & 01653538 a 0000 | (of a container) having a stopper in the opening; "the tightly stoppered bottles" -01654299 00 s 01 nonopening 0 001 & 01653538 a 0000 | not open; not opening -01654377 00 a 02 open 8 opened 2 005 ! 01655162 a 0101 & 01654582 a 0000 & 01654769 a 0000 & 01654900 a 0000 & 01655025 a 0000 | used of mouth or eyes; "keep your eyes open"; "his mouth slightly opened" -01654582 00 s 02 agape(p) 0 gaping 0 001 & 01654377 a 0000 | with the mouth wide open as in wonder or awe; "the gaping audience"; "we stood there agape with wonder"; "with mouth agape" -01654769 00 s 02 agaze 0 staring 0 001 & 01654377 a 0000 | (used of eyes) open and fixed as if in fear or wonder; "staring eyes" -01654900 00 s 02 wide-eyed 0 wide 0 001 & 01654377 a 0000 | (used of eyes) fully open or extended; "stared with wide eyes" -01655025 00 s 01 yawning 1 001 & 01654377 a 0000 | with the mouth wide open indicating boredom or sleepiness; "a yawning congregation" -01655162 00 a 02 closed 3 shut 2 004 ! 01654377 a 0101 & 01655386 a 0000 & 01655538 a 0000 & 01655651 a 0000 | used especially of mouth or eyes; "he sat quietly with closed eyes"; "his eyes were shut against the sunlight" -01655386 00 s 02 blinking 0 winking 0 001 & 01655162 a 0000 | closing the eyes intermittently and rapidly; "he stood blinking in the bright sunlight" -01655538 00 s 02 compressed 0 tight 0 001 & 01655162 a 0000 | pressed tightly together; "with lips compressed" -01655651 00 s 02 squinched 0 squinting 0 001 & 01655162 a 0000 | having eyes half closed in order to see better; "squinched eyes" -01655783 00 a 01 spaced 0 004 ! 01656416 a 0101 & 01655972 a 0000 & 01656129 a 0000 & 01656253 a 0000 | arranged with spaces between; often used as a combining form; "widely spaced eyes" -01655972 00 s 01 double-spaced 0 001 & 01655783 a 0000 | (of type or print) having a blank line between lines of type; "manuscripts must be double-spaced" -01656129 00 s 01 leaded 0 002 & 01655783 a 0000 ;c 06677302 n 0000 | having thin strips of lead between the lines of type -01656253 00 s 01 single-spaced 0 001 & 01655783 a 0000 | (of type or print) not having a blank space between lines; "business letters are usually single-spaced" -01656416 00 a 01 unspaced 0 002 ! 01655783 a 0101 & 01656520 a 0000 | arranged without spaces between -01656520 00 s 01 unleaded 0 002 & 01656416 a 0000 ;c 06677302 n 0000 | not having leads between the lines -01656628 00 a 01 enclosed 0 014 ! 01658814 a 0101 & 01657056 a 0000 & 01657129 a 0000 & 01657233 a 0000 & 01657420 a 0000 & 01657562 a 0000 & 01657760 a 0000 & 01657867 a 0000 & 01657967 a 0000 & 01658195 a 0000 & 01658269 a 0000 & 01658386 a 0000 & 01658533 a 0000 & 01658666 a 0000 | closed in or surrounded or included within; "an enclosed porch"; "an enclosed yard"; "the enclosed check is to cover shipping and handling" -01657056 00 s 01 basined 0 001 & 01656628 a 0000 | enclosed in a basin -01657129 00 s 01 besieged 0 001 & 01656628 a 0000 | surrounded by hostile forces; "the besieged town" -01657233 00 s 03 boxed 0 boxed-in(a) 0 boxed_in(p) 0 001 & 01656628 a 0000 | enclosed in or as if in a box; "boxed cigars"; "a confining boxed-in space"; "felt boxed in by the traffic" -01657420 00 s 02 capsulate 0 capsulated 0 002 & 01656628 a 0000 ;c 06066555 n 0000 | used of seeds or spores that are enclosed in a capsule -01657562 00 s 01 clathrate 0 002 & 01656628 a 0000 ;c 06084469 n 0000 | designating or relating to a compound in which one component is physically enclosed within the crystal structure of another -01657760 00 s 02 closed 0 closed_in(p) 0 001 & 01656628 a 0000 | blocked against entry; "a closed porch" -01657867 00 s 01 coarctate 0 001 & 01656628 a 0000 | (of an insect pupa) enclosed in a rigid case -01657967 00 s 01 embedded 1 001 & 01656628 a 0000 | enclosed firmly in a surrounding mass; "found pebbles embedded in the silt"; "stone containing many embedded fossils"; "peach and plum seeds embedded in a sweet edible pulp" -01658195 00 s 01 fencelike 0 001 & 01656628 a 0000 | resembling a fence -01658269 00 s 01 included 0 001 & 01656628 a 0000 | enclosed in the same envelope or package; "the included check" -01658386 00 s 01 involved 0 001 & 01656628 a 0000 | enveloped; "a castle involved in mist"; "the difficulties in which the question is involved" -01658533 00 s 01 self-enclosed 0 001 & 01656628 a 0000 | of self-imposed enclosure or confinement; "a self-enclosed Jewish cosmos" -01658666 00 s 02 surrounded 0 encircled 2 001 & 01656628 a 0000 | confined on all sides; "a camp surrounded by enemies"; "the encircled pioneers" -01658814 00 a 01 unenclosed 0 004 ! 01656628 a 0101 & 01659014 a 0000 & 01659117 a 0000 & 01659277 a 0000 | not closed in our surrounded or included; "an unenclosed porch"; "unenclosed common land" -01659014 00 s 02 hypaethral 0 hypethral 0 001 & 01658814 a 0000 | partly or entirely open to the sky -01659117 00 s 01 open 0 002 & 01658814 a 0000 + 08613733 n 0104 | having no protecting cover or enclosure; "an open boat"; "an open fire"; "open sports cars" -01659277 00 s 01 unfenced 0 001 & 01658814 a 0000 | not enclosed by a fence -01659355 00 a 01 tanned 0 001 ! 01659447 a 0101 | converted to leather by a tanning agent -01659447 00 a 01 untanned 0 001 ! 01659355 a 0101 | not converted to leather by a tanning agent; "a whip made of untanned hide" -01659577 00 a 01 tapped 0 002 ! 01659874 a 0101 & 01659762 a 0000 | in a condition for letting out liquid drawn out as by piercing or drawing a plug; "latex from tapped rubber trees" -01659762 00 s 02 abroach 0 broached 0 001 & 01659577 a 0000 | of a cask or barrel; "the cask was set abroach" -01659874 00 a 01 untapped 0 001 ! 01659577 a 0101 | not subjected to tapping; "an untapped keg"; "an untapped sugar maple" -01659999 00 a 01 open 4 002 ;c 06000644 n 0000 ! 01660135 a 0101 | (set theory) of an interval that contains neither of its endpoints -01660135 00 a 01 closed 2 002 ;c 06000644 n 0000 ! 01659999 a 0101 | (set theory) of an interval that contains both its endpoints -01660267 00 a 01 operational 0 004 ;c 08199025 n 0000 ! 01660857 a 0101 & 01660444 a 0000 & 01660712 a 0000 | (military) of or intended for or involved in military operations -01660444 00 s 03 active 0 combat-ready 0 fighting(a) 0 004 & 01660267 a 0000 ;c 08199025 n 0000 + 14006945 n 0103 + 14006945 n 0102 | engaged in or ready for military or naval operations; "on active duty"; "the platoon is combat-ready"; "review the fighting forces" -01660712 00 s 01 effective 0 002 & 01660267 a 0000 ;c 08199025 n 0000 | ready for service; "the fort was held by about 100 effective soldiers" -01660857 00 a 02 nonoperational 0 inactive 0 002 ;c 08199025 n 0000 ! 01660267 a 0101 | (military) not involved in military operations -01660994 00 a 01 opportune 0 006 ^ 00064479 a 0000 + 14483917 n 0101 + 04718826 n 0101 ! 01661914 a 0101 & 01661289 a 0000 & 01661529 a 0000 | suitable or at a time that is suitable or advantageous especially for a particular purpose; "an opportune place to make camp"; "an opportune arrival" -01661289 00 s 03 good 0 right 0 ripe 0 002 & 01660994 a 0000 + 05142180 n 0102 | most suitable or right for a particular purpose; "a good time to plant tomatoes"; "the right time to act"; "the time is ripe for great sociological changes" -01661529 00 s 04 timely 0 seasonable 0 well-timed(a) 0 well_timed(p) 0 005 & 01660994 a 0000 + 05049253 n 0201 + 15245515 n 0101 + 05049253 n 0102 + 04718826 n 0103 | done or happening at the appropriate or proper time; "a timely warning"; "with timely treatment the patient has a good chance of recovery"; "a seasonable time for discussion"; "the book's publication was well timed" -01661914 00 a 01 inopportune 0 005 ^ 00065488 a 0000 + 04723107 n 0101 ! 01660994 a 0101 & 01662119 a 0000 & 01662384 a 0000 | not opportune; "arrived at a most inopportune hour"; "an inopportune visit" -01662119 00 s 04 ill-timed 0 unseasonable 0 untimely 0 wrong 0 003 & 01661914 a 0000 + 04723107 n 0302 + 05049458 n 0201 | badly timed; "an ill-timed intervention"; "you think my intrusion unseasonable"; "an untimely remark"; "it was the wrong moment for a joke" -01662384 00 s 01 inconvenient 0 001 & 01661914 a 0000 | not conveniently timed; "an early departure is inconvenient for us" -01662510 00 a 02 opposable 0 apposable 0 002 + 01500214 v 0201 ! 01662685 a 0101 | capable of being placed opposite to something; "the thumb is opposable to the forefinger" -01662685 00 a 01 unopposable 0 001 ! 01662510 a 0101 | not opposable -01662756 00 a 01 opposed 0 002 ! 01663049 a 0101 & 01662912 a 0000 | being in opposition or having an opponent; "two bitterly opposed schools of thought" -01662912 00 s 01 conflicting 0 001 & 01662756 a 0000 | on bad terms; "they were usually at odds over politics"; "conflicting opinions" -01663049 00 a 01 unopposed 0 001 ! 01662756 a 0101 | not having opposition or an opponent; "unopposed military forces"; "the candidate was unopposed" -01663201 00 a 02 opposite 0 paired 2 002 ;c 06066555 n 0000 ! 01663359 a 0101 | of leaves etc; growing in pairs on either side of a stem; "opposite leaves" -01663359 00 a 01 alternate 0 002 ;c 06066555 n 0000 ! 01663201 a 0101 | of leaves and branches etc; first on one side and then on the other in two ranks along an axis; not paired; "stems with alternate leaves" -01663571 00 a 01 optimistic 0 010 ^ 01228530 a 0000 ^ 01817500 a 0000 + 07541558 n 0101 + 05211793 n 0101 ! 01664581 a 0101 & 01663916 a 0000 & 01664015 a 0000 & 01664156 a 0000 & 01664310 a 0000 & 01664455 a 0000 | expecting the best in this best of all possible worlds; "in an optimistic mood"; "optimistic plans"; "took an optimistic view" -01663916 00 s 01 bullish 0 002 & 01663571 a 0000 ;c 04323026 n 0000 | expecting a rise in prices -01664015 00 s 03 cheerful 0 pollyannaish 0 upbeat 0 002 & 01663571 a 0000 + 07530478 n 0101 | pleasantly (even unrealistically) optimistic -01664156 00 s 02 rose-colored 0 rosy 0 001 & 01663571 a 0000 | reflecting optimism; "a rosy future"; "looked at the world through rose-colored glasses" -01664310 00 s 01 starry-eyed 0 001 & 01663571 a 0000 | unrealistically or naively optimistic; "a starry-eyed reformer"; "starry-eyed idealism" -01664455 00 s 01 sanguine 0 003 & 01663571 a 0000 + 07541760 n 0102 + 07541760 n 0101 | confidently optimistic and cheerful -01664581 00 a 01 pessimistic 0 007 ^ 01229020 a 0000 ^ 01818234 a 0000 + 07543033 n 0101 + 05211974 n 0101 ! 01663571 a 0101 & 01664783 a 0000 & 01664880 a 0000 | expecting the worst possible outcome -01664783 00 s 01 bearish 0 002 & 01664581 a 0000 ;c 04323026 n 0000 | expecting prices to fall -01664880 00 s 04 demoralized 0 demoralised 0 discouraged 0 disheartened 0 001 & 01664581 a 0000 | made less hopeful or enthusiastic; "desperate demoralized people looking for work"; "felt discouraged by the magnitude of the problem"; "the disheartened instructor tried vainly to arouse their interest" -01665184 00 a 01 oral 0 004 ;c 06057539 n 0000 ! 01665674 a 0101 & 01665457 a 0000 & 01665581 a 0000 | of or involving the mouth or mouth region or the surface on which the mouth is located; "the oral cavity"; "the oral mucous membrane"; "the oral surface of a starfish" -01665457 00 s 01 buccal 1 001 & 01665184 a 0000 | oriented toward the inside of the cheek; "the buccal aspect of the gum" -01665581 00 s 01 buccal 2 001 & 01665184 a 0000 | lying within the mouth; "a buccal gland" -01665674 00 a 01 aboral 0 002 ;c 06057539 n 0000 ! 01665184 a 0101 | opposite to or away from the mouth; "the aboral surface of a starfish" -01665816 00 a 01 actinal 0 002 ;c 00004475 n 0000 ! 01665972 a 0101 | (of radiate organisms) located on the surface or end on which the mouth is situated -01665972 00 a 01 abactinal 0 001 ! 01665816 a 0101 | (of radiate animals) located on the surface or end opposite to that on which the mouth is situated -01666126 00 a 01 orderly 0 002 ! 01666275 a 0101 + 04768483 n 0101 | devoid of violence or disruption; "an orderly crowd confronted the president" -01666275 00 a 01 disorderly 0 006 ! 01666126 a 0101 & 01666489 a 0000 & 01666927 a 0000 & 01667110 a 0000 & 01667271 a 0000 + 13977184 n 0104 | undisciplined and unruly; "disorderly youths"; "disorderly conduct" -01666489 00 s 05 boisterous 0 rambunctious 0 robustious 0 rumbustious 0 unruly 0 003 & 01666275 a 0000 + 04908396 n 0501 + 04985064 n 0101 | noisy and lacking in restraint or discipline; "a boisterous crowd"; "a social gathering that became rambunctious and out of hand"; "a robustious group of teenagers"; "beneath the rumbustious surface of his paintings is sympathy for the vulnerability of ordinary human beings"; "an unruly class" -01666927 00 s 02 mobbish 0 moblike 0 001 & 01666275 a 0000 | characteristic of a mob; disorderly or lawless; "fanned mounting tension into mobbish terrorizing"; "moblike mentality" -01667110 00 s 02 raucous 0 rowdy 0 002 & 01666275 a 0000 + 13977184 n 0201 | disturbing the public peace; loud and rough; "a raucous party"; "rowdy teenagers" -01667271 00 s 03 rough-and-tumble 0 bare-knuckle 0 bare-knuckled 0 001 & 01666275 a 0000 | characterized by disorderly action and disregard for rules; "a rough-and-tumble fight"; "rough-and-tumble politics"; "undisguised bare-knuckle capitalism" -01667519 00 a 01 ordered 0 003 ! 01668250 a 0101 & 01667729 a 0000 & 01668011 a 0000 | having a systematic arrangement; especially having elements succeeding in order according to rule; "an ordered sequence" -01667729 00 s 05 consecutive 0 sequent 0 sequential 0 serial 0 successive 0 008 & 01667519 a 0000 + 05044822 n 0504 + 02406585 v 0501 + 06593803 n 0402 + 06621447 n 0401 + 08457976 n 0401 + 05044822 n 0301 + 01010458 n 0302 | in regular succession without gaps; "serial concerts" -01668011 00 s 01 progressive 0 001 & 01667519 a 0000 | (of a card game or a dance) involving a series of sections for which the participants successively change place or relative position; "progressive euchre"; "progressive tournaments" -01668250 00 a 02 disordered 0 unordered 0 001 ! 01667519 a 0101 | not arranged in order -01668340 00 a 01 organized 1 004 ^ 02382934 a 0000 ! 01668858 a 0101 & 01668567 a 0000 & 01668723 a 0000 | methodical and efficient in arrangement or function; "how well organized she is"; "his life was almost too organized" -01668567 00 s 01 methodical 0 003 & 01668340 a 0000 + 05660268 n 0101 + 04768483 n 0102 | characterized by method and orderliness; "a methodical scholar" -01668723 00 s 01 well-conducted 0 001 & 01668340 a 0000 | characterized by good organization and control; "a well-conducted meeting" -01668858 00 a 02 disorganized 0 disorganised 0 008 ^ 02383151 a 0000 ! 01668340 a 0101 & 01669246 a 0000 & 01669507 a 0000 & 01669617 a 0000 & 01669774 a 0000 & 01669899 a 0000 & 01670037 a 0000 | lacking order or methodical arrangement or function; "a disorganized enterprise"; "a thousand pages of muddy and disorganized prose"; "she was too disorganized to be an agreeable roommate" -01669246 00 s 04 broken 0 confused 0 disordered 0 upset 0 001 & 01668858 a 0000 | thrown into a state of disarray or confusion; "troops fleeing in broken ranks"; "a confused mass of papers on the desk"; "the small disordered room"; "with everything so upset" -01669507 00 s 02 chaotic 0 helter-skelter 0 001 & 01668858 a 0000 | lacking a visible order or organization -01669617 00 s 02 fucked-up 0 snafu 0 002 & 01668858 a 0000 + 00075283 n 0201 | snarled or stalled in complete confusion; "situation normal--all fucked-up" -01669774 00 s 01 scrambled 0 001 & 01668858 a 0000 | thrown together in a disorderly fashion; "a scrambled plan of action" -01669899 00 s 01 unmethodical 0 001 & 01668858 a 0000 | not efficient or methodical; "the project failed through unmethodical planning" -01670037 00 s 02 unstuck 0 undone 0 001 & 01668858 a 0000 | thrown into a state of disorganization or incoherence; "price programs became unstuck because little grain was available" -01670221 00 a 01 organized 2 007 ^ 01671732 a 0000 ! 01671095 a 0101 & 01670427 a 0000 & 01670524 a 0000 & 01670669 a 0000 & 01670856 a 0000 & 01670982 a 0000 | formed into a structured or coherent whole -01670427 00 s 01 arranged 1 001 & 01670221 a 0000 | planned in advance; "an arranged marriage" -01670524 00 s 01 configured 0 001 & 01670221 a 0000 | organized so as to give configuration to; "a magnet is surrounded by a configured field" -01670669 00 s 02 corporate 0 incorporated 0 001 & 01670221 a 0000 | organized and maintained as a legal corporation; "a special agency set up in corporate form"; "an incorporated town" -01670856 00 s 01 re-formed 0 001 & 01670221 a 0000 | formed again or anew; "the re-formed scout troop has been very active" -01670982 00 s 02 reorganized 0 reorganised 0 001 & 01670221 a 0000 | organized again; "a reorganized business" -01671095 00 a 02 unorganized 0 unorganised 0 005 ^ 01671881 a 0000 ! 01670221 a 0101 & 01671336 a 0000 & 01671509 a 0000 & 01671620 a 0000 | not having or belonging to a structured whole; "unorganized territories lack a formal government" -01671336 00 s 01 uncoordinated 0 001 & 01671095 a 0000 | lacking in cooperative planning and organization ; "uncoordinated scheduling often resulted in conflicting games" -01671509 00 s 01 unformed 0 001 & 01671095 a 0000 | not formed or organized; "an as yet unformed government" -01671620 00 s 01 unincorporated 0 001 & 01671095 a 0000 | not organized and maintained as a legal corporation -01671732 00 a 01 structured 0 002 ^ 01670221 a 0000 ! 01671881 a 0101 | having definite and highly organized structure; "a structured environment" -01671881 00 a 01 unstructured 0 004 ^ 01671095 a 0000 ! 01671732 a 0101 & 01672239 a 0000 & 01672487 a 0000 | lacking definite structure or organization; "an unstructured situation with no one in authority"; "a neighborhood gang with a relatively unstructured system"; "children in an unstructured environment often feel insecure"; "unstructured inkblots" -01672239 00 s 01 ambiguous 0 003 & 01671881 a 0000 ;c 06136258 n 0000 + 06604319 n 0101 | having no intrinsic or objective meaning; not organized in conventional patterns; "an ambiguous situation with no frame of reference"; "ambiguous inkblots" -01672487 00 s 01 unregulated 0 001 & 01671881 a 0000 | without regulation or discipline; "an unregulated environment" -01672607 00 a 01 ordinary 0 014 ^ 00485711 a 0000 ^ 00489108 a 0000 = 04794751 n 0000 + 04794751 n 0101 ! 01675190 a 0101 & 01673061 a 0000 & 01673434 a 0000 & 01673590 a 0000 & 01673815 a 0000 & 01673946 a 0000 & 01674134 a 0000 & 01674242 a 0000 & 01674604 a 0000 & 01674926 a 0000 | not exceptional in any way especially in quality or ability or size or degree; "ordinary everyday objects"; "ordinary decency"; "an ordinary day"; "an ordinary wine" -01673061 00 s 04 average 0 fair 0 mediocre 0 middling 0 004 & 01672607 a 0000 + 04795061 n 0302 + 04795061 n 0101 + 14501172 n 0101 | lacking exceptional quality or ability; "a novel of average merit"; "only a fair performance of the sonata"; "in fair health"; "the caliber of the students has gone from mediocre to above average"; "the performance was middling at best" -01673434 00 s 01 banausic 0 002 & 01672607 a 0000 ;u 01204055 n 0000 | (formal) ordinary and not refined; "he felt contempt for all banausic occupations" -01673590 00 s 02 characterless 0 nondescript 0 002 & 01672607 a 0000 + 10361060 n 0201 | lacking distinct or individual characteristics; dull and uninteresting; "women dressed in nondescript clothes"; "a nondescript novel" -01673815 00 s 01 common 0 003 & 01672607 a 0000 + 14501375 n 0101 + 04764741 n 0101 | to be expected; standard; "common decency" -01673946 00 s 01 commonplace 2 002 & 01672607 a 0000 + 04795545 n 0102 | completely ordinary and unremarkable; "air travel has now become commonplace"; "commonplace everyday activities" -01674134 00 s 02 cut-and-dried 0 cut-and-dry 0 001 & 01672607 a 0000 | according to ordinary expectations -01674242 00 s 06 everyday 0 mundane 0 quotidian 0 routine 0 unremarkable 0 workaday 0 004 & 01672607 a 0000 + 04794751 n 0203 + 04794751 n 0202 + 04795545 n 0103 | found in the ordinary course of events; "a placid everyday scene"; "it was a routine day"; "there's nothing quite like a real...train conductor to add color to a quotidian commute"- Anita Diamant -01674604 00 s 02 indifferent 0 so-so(p) 0 001 & 01672607 a 0000 | being neither good nor bad; "an indifferent performance"; "a gifted painter but an indifferent actor"; "her work at the office is passable"; "a so-so golfer"; "feeling only so-so"; "prepared a tolerable dinner"; "a tolerable working knowledge of French" -01674926 00 s 04 run-of-the-mill 0 run-of-the-mine 0 mine_run 0 unexceptional 0 001 & 01672607 a 0000 | not special in any way; "run-of-the-mill boxing"; "your run-of-the-mine college graduate"; "a unexceptional an incident as can be found in a lawyer's career" -01675190 00 a 01 extraordinary 0 023 ^ 00504592 a 0000 ^ 00487653 a 0000 ^ 00490035 a 0000 ^ 02341266 a 0000 ^ 01282014 a 0000 = 04794751 n 0000 + 04796490 n 0101 ! 01672607 a 0101 & 01675931 a 0000 & 01676026 a 0000 & 01676350 a 0000 & 01676517 a 0000 & 01676993 a 0000 & 01677200 a 0000 & 01677433 a 0000 & 01677623 a 0000 & 01677733 a 0000 & 01677957 a 0000 & 01678112 a 0000 & 01678417 a 0000 & 01678586 a 0000 & 01678729 a 0000 & 01678946 a 0000 | beyond what is ordinary or usual; highly unusual or exceptional or remarkable; "extraordinary authority"; "an extraordinary achievement"; "her extraordinary beauty"; "enjoyed extraordinary popularity"; "an extraordinary capacity for work"; "an extraordinary session of the legislature" -01675931 00 s 01 bonzer 0 002 & 01675190 a 0000 ;r 08831004 n 0000 | remarkable or wonderful -01676026 00 s 05 exceeding 0 exceptional 0 olympian 0 prodigious 0 surpassing 0 002 & 01675190 a 0000 + 05821246 n 0201 | far beyond what is usual in magnitude or degree; "a night of exceeding darkness"; "an exceptional memory"; "olympian efforts to save the city from bankruptcy"; "the young Mozart's prodigious talents" -01676350 00 s 01 extraordinaire(ip) 0 001 & 01675190 a 0000 | extraordinary in a particular capacity; "a woodworker extraordinaire"; "a self-starter extraordinaire" -01676517 00 s 0a fantastic 0 grand 0 howling(a) 0 marvelous 0 marvellous 0 rattling(a) 0 terrific 0 tremendous 0 wonderful 0 wondrous 0 004 & 01675190 a 0000 + 07289588 n 0a01 + 04729127 n 0903 + 04814238 n 0206 | extraordinarily good or great ; used especially as intensifiers; "a fantastic trip to the Orient"; "the film was fantastic!"; "a howling success"; "a marvelous collection of rare books"; "had a rattling conversation about politics"; "a tremendous achievement" -01676993 00 s 01 phenomenal 0 001 & 01675190 a 0000 | exceedingly or unbelievably great; "the bomb did fantastic damage"; "Samson is supposed to have had fantastic strength"; "phenomenaRl feats of memory" -01677200 00 s 04 frightful 0 terrible 0 awful 0 tremendous 1 003 & 01675190 a 0000 ;u 07075172 n 0000 + 04782116 n 0204 | extreme in degree or extent or amount or impact; "in a frightful hurry"; "spent a frightful amount of money" -01677433 00 s 01 great 1 002 & 01675190 a 0000 + 05104548 n 0103 | remarkable or out of the ordinary in degree or magnitude or effect; "a great crisis"; "had a great stake in the outcome" -01677623 00 s 01 one(a) 0 001 & 01675190 a 0000 | used informally as an intensifier; "that is one fine dog" -01677733 00 s 02 preternatural 0 uncanny 0 001 & 01675190 a 0000 | surpassing the ordinary or normal; "Beyond his preternatural affability there is some acid and some steel" - George Will; "his uncanny sense of direction" -01677957 00 s 01 pyrotechnic 0 002 & 01675190 a 0000 + 00617692 n 0102 | suggestive of fireworks; "pyrotechnic keyboard virtuosity"; "a pyrotechnic wit" -01678112 00 s 02 rare 0 uncommon 0 003 & 01675190 a 0000 + 04797130 n 0201 + 03149951 n 0106 | marked by an uncommon quality; especially superlative or extreme of its kind; "what is so rare as a day in June"-J.R.Lowell; "a rare skill"; "an uncommon sense of humor"; "she was kind to an uncommon degree" -01678417 00 s 02 remarkable 0 singular 0 002 & 01675190 a 0000 + 04798365 n 0201 | unusual or striking; "a remarkable sight"; "such poise is singular in one so young" -01678586 00 s 01 some 0 003 & 01675190 a 0000 ;u 07075172 n 0000 ;u 07157273 n 0000 | remarkable; "that was some party"; "she is some skier" -01678729 00 s 01 special 0 002 & 01675190 a 0000 + 04763925 n 0102 | for a special service or occasion; "a special correspondent"; "a special adviser to the committee"; "had to get special permission for the event" -01678946 00 s 01 wonderworking 0 001 & 01675190 a 0000 | performing or able to perform wonders or miracles -01679055 00 a 01 organic 1 002 ;c 06084469 n 0000 ! 01679244 a 0101 | relating or belonging to the class of chemical compounds having a carbon basis; "hydrocarbons are organic compounds" -01679244 00 a 01 inorganic 1 002 ;c 06084469 n 0000 ! 01679055 a 0101 | relating or belonging to the class of compounds not having a carbon basis; "hydrochloric and sulfuric acids are called inorganic substances" -01679459 00 a 01 organic 2 005 + 14859838 n 0101 + 00004475 n 0101 ! 01680116 a 0101 & 01679744 a 0000 & 01679907 a 0000 | being or relating to or derived from or having properties characteristic of living organisms; "organic life"; "organic growth"; "organic remains found in rock" -01679744 00 s 02 integrated 0 structured 0 001 & 01679459 a 0000 | resembling a living organism in organization or development; "society as an integrated whole" -01679907 00 s 01 nonsynthetic 0 001 & 01679459 a 0000 | involving or derived from living organisms; free from chemical treatments or additives; "organic gardening is more natural"; "nonsynthetic fertilizer" -01680116 00 a 01 inorganic 2 004 ! 01679459 a 0101 & 01680283 a 0000 & 01680417 a 0000 & 01680559 a 0000 | lacking the properties characteristic of living organisms -01680283 00 s 02 amorphous 0 unstructured 0 001 & 01680116 a 0000 | lacking the system or structure characteristic of living bodies -01680417 00 s 01 artificial 0 002 & 01680116 a 0000 + 04788494 n 0101 | not arising from natural growth or characterized by vital processes -01680559 00 s 01 mineral 0 001 & 01680116 a 0000 | composed of matter other than plant or animal; "the inorganic mineral world" -01680689 00 a 01 holistic 0 002 + 06102865 n 0101 ! 01680836 a 0101 | emphasizing the organic or functional relation between parts and the whole -01680836 00 a 02 atomistic 0 atomistical 0 005 + 06138099 n 0201 + 06102476 n 0201 + 06138099 n 0101 + 06102476 n 0101 ! 01680689 a 0101 | divided into separate and often disparate elements -01681028 00 a 02 arranged 0 ordered 4 003 ! 01681607 a 0101 & 01681307 a 0000 & 01681477 a 0000 | disposed or placed in a particular kind of order; "the carefully arranged chessmen"; "haphazardly arranged interlobular septa"; "comfortable chairs arranged around the fireplace" -01681307 00 s 02 laid 0 set 0 001 & 01681028 a 0000 | set down according to a plan:"a carefully laid table with places set for four people"; "stones laid in a pattern" -01681477 00 s 01 placed 0 001 & 01681028 a 0000 | put in position in relation to other things; "end tables placed conveniently" -01681607 00 a 01 disarranged 0 004 ! 01681028 a 0101 & 01681789 a 0000 & 01681882 a 0000 & 01682073 a 0000 | having the arrangement disturbed; not in order; "her disarranged hair" -01681789 00 s 01 disarrayed 0 001 & 01681607 a 0000 | in disarray; "disarrayed bedclothes" -01681882 00 s 01 disturbed 0 001 & 01681607 a 0000 | having the place or position changed; "the disturbed books and papers on her desk"; "disturbed grass showed where the horse had passed" -01682073 00 s 01 misplaced 0 001 & 01681607 a 0000 | put in the wrong place or position; "She was penalized for a spelling mistake or a misplaced accent" -01682229 00 a 02 oriented 0 orientated 0 008 ^ 01684426 a 0000 ! 01683667 a 0101 & 01682677 a 0000 & 01682822 a 0000 & 01683061 a 0000 & 01683221 a 0000 & 01683349 a 0000 & 01683496 a 0000 | adjusted or located in relation to surroundings or circumstances; sometimes used in combination; "the house had its large windows oriented toward the ocean view"; "helping freshmen become oriented to college life"; "the book is value-oriented throughout" -01682677 00 s 03 adjusted 0 familiarized 0 familiarised 0 001 & 01682229 a 0000 | having achieved a comfortable relation with your environment -01682822 00 s 02 bound 0 destined 0 001 & 01682229 a 0000 | headed or intending to head in a certain direction; often used as a combining form as in `college-bound students'; "children bound for school"; "a flight destined for New York" -01683061 00 s 01 directed 0 001 & 01682229 a 0000 | (often used in combination) having a specified direction; "a positively directed vector"; "goal-directed" -01683221 00 s 01 headed 0 001 & 01682229 a 0000 | having a heading or course in a certain direction; "westward headed wagons" -01683349 00 s 02 homeward 0 homeward-bound 0 001 & 01682229 a 0000 | oriented toward home; "in a homeward direction"; "homeward-bound commuters" -01683496 00 s 01 minded 0 002 & 01682229 a 0000 ;u 06307152 n 0000 | (used in combination) mentally oriented toward something specified; "civic-minded"; "career-minded" -01683667 00 a 01 unoriented 0 004 ^ 01685377 a 0000 ! 01682229 a 0101 & 01683908 a 0000 & 01684133 a 0000 | not having position or goal definitely set or ascertained; "engaged in unoriented study"; "unoriented until she looked at the map" -01683908 00 s 03 alienated 0 anomic 0 disoriented 2 003 & 01683667 a 0000 + 14415898 n 0202 + 14415898 n 0201 | socially disoriented; "anomic loners musing over their fate"; "we live in an age of rootless alienated people" -01684133 00 s 03 confused 0 disoriented 0 lost 0 002 & 01683667 a 0000 + 05683582 n 0103 | having lost your bearings; confused as to time or place or personal identity; "I frequently find myself disoriented when I come up out of the subway"; "the anesthetic left her completely disoriented" -01684426 00 a 02 orienting 0 orientating 0 006 ^ 01682229 a 0000 ! 01685377 a 0101 & 01684811 a 0000 & 01684922 a 0000 & 01685131 a 0000 & 01685231 a 0000 | positioning with respect to a reference system or determining your bearings physically or intellectually; "noticed the bee's momentary orienting pause before heading back to the hive"; "an orienting program for new employees" -01684811 00 s 02 aligning 0 positioning 0 001 & 01684426 a 0000 | causing to fall into line or into position -01684922 00 s 01 dimensioning 0 001 & 01684426 a 0000 | indicating or determining size and position in space; "the ultrasonic dimensioning measurement"; "an ultrasonic dimensioning arrangement of the heart" -01685131 00 s 02 familiarizing 0 familiarising 0 001 & 01684426 a 0000 | serving to make familiar -01685231 00 s 01 homing 0 001 & 01684426 a 0000 | orienting or directing homeward or to a destination; "the homing instinct"; "a homing beacon" -01685377 00 a 01 disorienting 0 006 ^ 01683667 a 0000 ! 01684426 a 0101 & 01685706 a 0000 & 01685906 a 0000 & 01686036 a 0000 & 01686269 a 0000 | causing loss of physical or intellectual bearings; "making so many turns to the right and then the left was completely disorienting"; "a sharp blow to the head can be disorienting" -01685706 00 s 01 confusing 0 001 & 01685377 a 0000 | causing confusion or disorientation; "a confusing jumble of road signs"; "being hospitalized can be confusing and distressing for a small child" -01685906 00 s 01 estranging 0 001 & 01685377 a 0000 | making one feel out of place or alienated; "the landscape was estranging" -01686036 00 s 01 stunning 0 001 & 01685377 a 0000 | causing or capable of causing bewilderment or shock or insensibility; "laid the poor fellow senseless with one stunning blow"; "a stunning detonation with volumes of black smoke" -01686269 00 s 01 stupefying 0 001 & 01685377 a 0000 | making physically stupid or dull or insensible; "a stupefying blow to the head"; "the stupefying effects of hemp" -01686439 00 a 01 original 0 015 ^ 00643250 a 0000 ^ 01010862 a 0000 ^ 01852174 a 0000 ^ 00606602 a 0000 = 04800359 n 0000 + 03727274 n 0103 + 04800359 n 0101 ! 01688271 a 0101 & 01686906 a 0000 & 01687030 a 0000 & 01687167 a 0000 & 01687363 a 0000 & 01687586 a 0000 & 01687965 a 0000 & 01688154 a 0000 | being or productive of something fresh and unusual; or being as first made or thought of; "a truly original approach"; "with original music"; "an original mind" -01686906 00 s 02 avant-garde 0 daring 0 001 & 01686439 a 0000 | radically new or original; "an avant-garde theater piece" -01687030 00 s 02 freehand 0 freehanded 0 001 & 01686439 a 0000 | done by hand without mechanical aids or devices; "a freehand drawing" -01687167 00 s 03 fresh 0 new 0 novel 0 002 & 01686439 a 0000 + 05635055 n 0102 | original and of a kind not seen before; "the computer produced a completely novel proof of a well-known theorem" -01687363 00 s 03 germinal 0 originative 0 seminal 0 003 & 01686439 a 0000 + 02624263 v 0201 + 05834758 n 0103 | containing seeds of later development; "seminal ideas of one discipline can influence the growth of another" -01687586 00 s 03 innovative 0 innovational 0 groundbreaking 0 006 & 01686439 a 0000 + 05633385 n 0202 + 03582658 n 0202 + 00240184 n 0207 + 05634767 n 0101 + 01642437 v 0102 | being or producing something like nothing done or experienced or created before; "stylistically innovative works"; "innovative members of the artistic community"; "a mind so innovational, so original" -01687965 00 s 02 newfangled 0 new 2 001 & 01686439 a 0000 | (of a new kind or fashion) gratuitously new; "newfangled ideas"; "she buys all these new-fangled machines and never uses them" -01688154 00 s 01 underivative 0 001 & 01686439 a 0000 | not derivative or imitative; "a natural underivative poet" -01688271 00 a 01 unoriginal 0 013 ^ 00605516 a 0000 ^ 01853461 a 0000 ^ 01068726 a 0000 ^ 00644372 a 0000 = 04800359 n 0000 + 05649628 n 0101 + 04801168 n 0101 ! 01686439 a 0101 & 01688757 a 0000 & 01689223 a 0000 & 01689442 a 0000 & 01689580 a 0000 & 01689775 a 0000 | not original; not being or productive of something fresh and unusual; "the manuscript contained unoriginal emendations"; "his life had been unoriginal, conforming completely to the given pattern"- Gwethalyn Graham -01688757 00 s 0b banal 1 commonplace 0 hackneyed 0 old-hat 0 shopworn 0 stock(a) 0 threadbare 0 timeworn 0 tired 0 trite 0 well-worn 0 004 & 01688271 a 0000 + 05649785 n 0a01 + 07154046 n 0204 + 07154046 n 0103 | repeated too often; overfamiliar through overuse; "bromidic sermons"; "his remarks were trite and commonplace"; "hackneyed phrases"; "a stock answer"; "repeating threadbare jokes"; "parroting some timeworn axiom"; "the trite metaphor `hard as nails'" -01689223 00 s 04 bromidic 1 corny 0 platitudinal 0 platitudinous 0 003 & 01688271 a 0000 + 07154046 n 0401 + 04627809 n 0201 | dull and tiresome but with pretensions of significance or originality; "bromidic sermons" -01689442 00 s 02 cliched 0 ready-made 0 001 & 01688271 a 0000 | repeated regularly without thought or originality; "ready-made phrases" -01689580 00 s 04 cold 0 stale 0 dusty 0 moth-eaten 0 002 & 01688271 a 0000 + 05649785 n 0202 | lacking originality or spontaneity; no longer new; "moth-eaten theories about race"; "stale news" -01689775 00 s 01 slavish 0 001 & 01688271 a 0000 | blindly imitative; "a slavish copy of the original" -01689880 00 a 01 orthodox 0 010 ^ 00574422 a 0000 ^ 02294777 a 0000 = 04801313 n 0000 ! 01691073 a 0101 & 01690167 a 0000 & 01690244 a 0000 & 01690448 a 0000 & 01690606 a 0000 & 01690767 a 0000 & 01690987 a 0000 | adhering to what is commonly accepted; "an orthodox view of the world" -01690167 00 s 01 antiheretical 0 001 & 01689880 a 0000 | opposed to heresy -01690244 00 s 03 canonic 0 canonical 0 sanctioned 0 001 & 01689880 a 0000 | conforming to orthodox or recognized rules; "the drinking of cocktails was as canonical a rite as the mixing"- Sinclair Lewis -01690448 00 s 02 conforming 0 conformist 0 002 & 01689880 a 0000 ;c 05946687 n 0000 | adhering to established customs or doctrines (especially in religion) -01690606 00 s 02 conventional 0 established 0 002 & 01689880 a 0000 + 04801532 n 0101 | conforming with accepted standards; "a conventional view of the world" -01690767 00 s 01 traditional 0 004 & 01689880 a 0000 + 05667404 n 0102 + 05809745 n 0101 + 04801877 n 0102 | pertaining to time-honored orthodox doctrines; "the simple security of traditional assumptions has vanished" -01690987 00 s 01 unreformed 0 001 & 01689880 a 0000 | unaffected by the Reformation -01691073 00 a 01 unorthodox 0 007 = 04801313 n 0000 ! 01689880 a 0101 & 01691302 a 0000 & 01691474 a 0000 & 01691687 a 0000 & 01691826 a 0000 & 01691975 a 0000 | breaking with convention or tradition; "an unorthodox lifestyle" -01691302 00 s 02 dissentient 0 recusant 0 003 & 01691073 a 0000 + 09957834 n 0202 + 01243453 n 0201 | (of Catholics) refusing to attend services of the Church of England -01691474 00 s 03 dissident 0 heretical 0 heterodox 0 005 & 01691073 a 0000 + 06212422 n 0203 + 05980412 n 0201 + 10018021 n 0102 + 07181208 n 0101 | characterized by departure from accepted beliefs or standards -01691687 00 s 01 iconoclastic 0 002 & 01691073 a 0000 + 05980750 n 0101 | characterized by attack on established beliefs or institutions -01691826 00 s 02 nonconforming 0 nonconformist 0 001 & 01691073 a 0000 | not conforming to established customs or doctrines especially in religion -01691975 00 s 01 Reformed 0 001 & 01691073 a 0000 | of or relating to the body of Protestant Christianity arising during the Reformation; used of some Protestant churches especially Calvinist as distinct from Lutheran; "Dutch Reformed theology" -01692222 00 a 03 outdoor(a) 0 out-of-door 0 outside 4 004 ^ 00952395 a 0000 ! 01692786 a 0101 & 01692512 a 0000 & 01692640 a 0000 | located, suited for, or taking place in the open air; "outdoor clothes"; "badminton and other outdoor games"; "a beautiful outdoor setting for the wedding" -01692512 00 s 02 alfresco 0 open-air(a) 0 001 & 01692222 a 0000 | in the open air; "an alfresco lunch"; "an open-air theater" -01692640 00 s 01 outdoorsy 0 002 & 01692222 a 0000 + 08613733 n 0101 | characteristic of or suitable to outdoor life; "a rugged outdoorsy life" -01692786 00 a 01 indoor(a) 0 002 ^ 00952867 a 0000 ! 01692222 a 0101 | located, suited for, or taking place within a building; "indoor activities for a rainy day"; "an indoor pool" -01692969 00 a 01 outside 0 006 ^ 00948103 a 0000 ! 01693799 a 0101 & 01693189 a 0000 & 01693311 a 0000 & 01693425 a 0000 & 01693585 a 0000 | relating to or being on or near the outer side or limit; "an outside margin" -01693189 00 s 01 after-school(a) 0 001 & 01692969 a 0000 | outside regular school hours; "a special after-school class" -01693311 00 s 01 extracurricular 0 001 & 01692969 a 0000 | outside the regular duties of your job or profession -01693425 00 s 01 extracurricular 2 001 & 01692969 a 0000 | outside the regular academic curriculum; "sports and drama are popular extracurricular activities" -01693585 00 s 01 right(a) 0 001 & 01692969 a 0000 | (of the side of cloth or clothing) facing or intended to face outward; "the right side of the cloth showed the pattern"; "be sure your shirt is right side out" -01693799 00 a 01 inside 0 003 ^ 00948670 a 0000 ! 01692969 a 0101 & 01694081 a 0000 | relating to or being on the side closer to the center or within a defined space; "he reached into his inside jacket pocket"; "inside out"; "an inside pitch is between home plate and the batter" -01694081 00 s 01 wrong 0 001 & 01693799 a 0000 | used of the side of cloth or clothing intended to face inward; "socks worn wrong side out" -01694223 00 a 01 covered 0 026 ! 01698400 a 0101 & 01694892 a 0000 & 01695041 a 0000 & 01695160 a 0000 & 01695269 a 0000 & 01695363 a 0000 & 01695505 a 0000 & 01695749 a 0000 & 01695891 a 0000 & 01696165 a 0000 & 01696346 a 0000 & 01696502 a 0000 & 01696632 a 0000 & 01696734 a 0000 & 01696855 a 0000 & 01696999 a 0000 & 01697129 a 0000 & 01697235 a 0000 & 01697318 a 0000 & 01697425 a 0000 & 01697592 a 0000 & 01697770 a 0000 & 01697878 a 0000 & 01698000 a 0000 & 01698103 a 0000 & 01698231 a 0000 | overlaid or spread or topped with or enclosed within something; sometimes used as a combining form; "women with covered faces"; "covered wagons"; "a covered balcony" -01694892 00 s 02 ariled 0 arillate 0 002 & 01694223 a 0000 ;c 06066555 n 0000 | (of some seeds) having a fleshy and usually brightly colored cover -01695041 00 s 01 awninged 0 001 & 01694223 a 0000 | covered with an awning; "with awninged windows on the west side" -01695160 00 s 01 beaded 0 001 & 01694223 a 0000 | covered with beads of liquid; "a face beaded with sweat" -01695269 00 s 01 blanketed 0 001 & 01694223 a 0000 | covered with (or as if with) a blanket -01695363 00 s 01 canopied 0 001 & 01694223 a 0000 | covered with or as with a canopy; "a canopied bed"; "streets canopied by stately trees" -01695505 00 s 05 cloaked 0 clothed 0 draped 0 mantled 0 wrapped 0 001 & 01694223 a 0000 | covered with or as if with clothes or a wrap or cloak; "leaf-clothed trees"; "fog-cloaked meadows"; "a beam draped with cobwebs"; "cloud-wrapped peaks" -01695749 00 s 04 crusted 0 encrusted 0 crusty 0 crustlike 0 002 & 01694223 a 0000 + 09260218 n 0301 | having a hardened crust as a covering -01695891 00 s 04 dabbled 0 spattered 0 splashed 0 splattered 0 001 & 01694223 a 0000 | covered with bright patches (often used in combination); "waves dabbled with moonlight"; "a blood-spattered room"; "gardens splashed with color"; "kitchen walls splattered with grease" -01696165 00 s 02 drenched 0 drenched_in 0 001 & 01694223 a 0000 | abundantly covered or supplied with; often used in combination; "drenched in moonlight"; "moon-drenched meadows" -01696346 00 s 02 dusty 0 dust-covered 0 003 & 01694223 a 0000 + 14839846 n 0101 + 14498733 n 0101 | covered with a layer of dust; "a dusty pile of books" -01696502 00 s 01 moon-splashed 0 001 & 01694223 a 0000 | splashed or covered patchily with moonlight; "the moon-splashed world" -01696632 00 s 02 moss-grown 0 mossy 0 002 & 01694223 a 0000 + 11537506 n 0201 | overgrown with moss -01696734 00 s 01 mud-beplastered 0 001 & 01694223 a 0000 | covered with or as if with mud; "mud-beplastered arguments" -01696855 00 s 01 muffled 0 001 & 01694223 a 0000 | wrapped up especially for protection or secrecy; "children muffled almost to the eyebrows" -01696999 00 s 01 peritrichous 0 002 & 01694223 a 0000 ;c 01348530 n 0000 | covered all over with uniformly distributed flagella -01697129 00 s 02 plastered 0 sealed 2 001 & 01694223 a 0000 | (of walls) covered with a coat of plaster -01697235 00 s 01 overgrown 0 001 & 01694223 a 0000 | covered with growing plants -01697318 00 s 01 sealed 1 001 & 01694223 a 0000 | covered with a waterproof coating; "a sealed driveway" -01697425 00 s 01 smothered 0 001 & 01694223 a 0000 | completely covered; "bonnets smothered with flowers"; "smothered chicken is chicken cooked in a seasoned gravy" -01697592 00 s 03 snow-clad 0 snow-covered 0 snowy 0 002 & 01694223 a 0000 + 15043763 n 0301 | covered with snow; "snow-clad hills"; "snow-covered roads"; "a long snowy winter" -01697770 00 s 01 splashy 0 002 & 01694223 a 0000 + 04682319 n 0101 | covered with patches of bright color -01697878 00 s 01 sun-drenched 0 001 & 01694223 a 0000 | covered with sunlight; "sun-drenched beaches along the Riviera" -01698000 00 s 01 thickspread 0 001 & 01694223 a 0000 | covered thickly; "toast thickspread with jam" -01698103 00 s 01 tiled 0 001 & 01694223 a 0000 | covered or furnished with tiles; "baths with tiled walls"; "a tiled kitchen" -01698231 00 s 02 white 0 snowy 2 002 & 01694223 a 0000 + 15043763 n 0201 | marked by the presence of snow; "a white Christmas"; "the white hills of a northern winter" -01698400 00 a 01 bare 0 006 + 04697819 n 0101 ! 01694223 a 0101 & 01698610 a 0000 & 01698760 a 0000 & 01698903 a 0000 & 01699006 a 0000 | lacking its natural or customary covering; "a bare hill"; "bare feet" -01698610 00 s 03 bald 0 denuded 0 denudate 0 001 & 01698400 a 0000 | without the natural or usual covering; "a bald spot on the lawn"; "bare hills" -01698760 00 s 01 naked 0 002 & 01698400 a 0000 + 14456138 n 0101 | lacking any cover; "naked branches of the trees"; "lie on the naked rock" -01698903 00 s 01 undraped 0 001 & 01698400 a 0000 | lacking drapery or draperies; "undraped windows" -01699006 00 s 01 unroofed 0 001 & 01698400 a 0000 | having no roof; "an unroofed shed" -01699095 00 a 01 coated 0 005 ! 01699982 a 0101 & 01699410 a 0000 & 01699576 a 0000 & 01699652 a 0000 & 01699838 a 0000 | having a coating; covered with an outer layer or film; often used in combination; "coated paper has a smooth polished coating especially suitable for halftone printing"; "sugar-coated pills" -01699410 00 s 01 backed 0 002 & 01699095 a 0000 ;c 00903559 n 0000 | used of film that is coated on the side opposite the emulsion with a substance to absorb light -01699576 00 s 01 black-coated 0 001 & 01699095 a 0000 | coated with black -01699652 00 s 01 glazed 0 001 & 01699095 a 0000 | (of foods) covered with a shiny coating by applying e.g. beaten egg or a sugar or gelatin mixture; "glazed doughnuts"; "a glazed ham" -01699838 00 s 01 oily 0 003 & 01699095 a 0000 + 14966667 n 0101 + 05000116 n 0102 | coated or covered with oil; "oily puddles in the streets" -01699982 00 a 01 uncoated 0 001 ! 01699095 a 0101 | not having a coating; "uncoated paper" -01700075 00 a 01 roofed 0 002 ;u 06307152 n 0000 ! 01700293 a 0101 | covered with a roof; having a roof as specified (often used in combination); "roofed picnic areas"; "a slate-roofed house"; "palmleaf-roofed huts" -01700293 00 a 01 roofless 0 001 ! 01700075 a 0101 | not having a roof; "the hurricane left hundreds of house roofless" -01700414 00 a 01 leafy 0 024 + 13152742 n 0101 ! 01703494 a 0101 & 01700944 a 0000 & 01701017 a 0000 & 01701134 a 0000 & 01701227 a 0000 & 01701321 a 0000 & 01701411 a 0000 & 01701512 a 0000 & 01701769 a 0000 & 01702031 a 0000 & 01702140 a 0000 & 01702253 a 0000 & 01702357 a 0000 & 01702543 a 0000 & 01702627 a 0000 & 01702727 a 0000 & 01702814 a 0000 & 01702913 a 0000 & 01703012 a 0000 & 01703106 a 0000 & 01703237 a 0000 & 01703330 a 0000 & 01703417 a 0000 | having or covered with leaves; "leafy trees"; "leafy vegetables" -01700944 00 s 01 bifoliate 0 001 & 01700414 a 0000 | having two leaves -01701017 00 s 01 bowery 0 002 & 01700414 a 0000 + 02732827 n 0103 | like a bower; leafy and shady; "a bowery lane" -01701134 00 s 02 curly-leaved 0 curly-leafed 0 001 & 01700414 a 0000 | having curly leaves -01701227 00 s 02 fan-leaved 0 fan-leafed 0 001 & 01700414 a 0000 | having fan-shaped leaves -01701321 00 s 02 fine-leaved 0 fine-leafed 0 001 & 01700414 a 0000 | having fine leaves -01701411 00 s 03 foliaceous 0 foliose 0 foliaged 0 001 & 01700414 a 0000 | bearing numerous leaves -01701512 00 s 01 foliate 0 002 & 01700414 a 0000 ;c 06066555 n 0000 | (often used as a combining form) having or resembling a leaf or having a specified kind or number of leaves; "`foliate' is combined with the prefix `tri' to form the word `trifoliate'" -01701769 00 s 01 foliolate 0 002 & 01700414 a 0000 ;c 06066555 n 0000 | (often used as a combining form) having leaflets (compound leaves) or a specified kind or number of leaflets; "`foliolate' is combined with the prefix `bi' to form the word `bifoliolate'" -01702031 00 s 02 grassy-leaved 0 grassy-leafed 0 001 & 01700414 a 0000 | having leaves that resemble grass -01702140 00 s 02 ivied 0 ivy-covered 0 001 & 01700414 a 0000 | overgrown with ivy; "Harvard's ivied buildings" -01702253 00 s 02 large-leaved 0 large-leafed 0 001 & 01700414 a 0000 | having relatively large leaves -01702357 00 s 02 leafed 0 leaved 0 001 & 01700414 a 0000 | having leaves or leaves as specified; often used in combination; "a fully leafed tree"; "broad-leafed"; "four-leaved clover" -01702543 00 s 02 leaflike 0 leaf-like 0 001 & 01700414 a 0000 | resembling a leaf -01702627 00 s 02 leather-leaved 0 leather-leafed 0 001 & 01700414 a 0000 | having leathery leaves -01702727 00 s 02 petallike 0 petal-like 0 001 & 01700414 a 0000 | resembling a petal -01702814 00 s 02 pinnate-leaved 0 pinnate-leafed 0 001 & 01700414 a 0000 | having pinnate leaves -01702913 00 s 02 prickly-leaved 0 prickly-leafed 0 001 & 01700414 a 0000 | having prickly leaves -01703012 00 s 02 silky-leaved 0 silky-leafed 0 001 & 01700414 a 0000 | having glossy leaves -01703106 00 s 04 silver-leaved 0 silvery-leaved 0 silver-leafed 0 silvery-leafed 0 001 & 01700414 a 0000 | having silvery leaves -01703237 00 s 02 spiny-leaved 0 spiny-leafed 0 001 & 01700414 a 0000 | having spiny leaves -01703330 00 s 02 two-leaved 0 two-leafed 0 001 & 01700414 a 0000 | having two leaves -01703417 00 s 01 unifoliate 0 001 & 01700414 a 0000 | having a single leaf -01703494 00 a 01 leafless 0 004 ! 01700414 a 0101 & 01703619 a 0000 & 01703710 a 0000 & 01703797 a 0000 | having no leaves -01703619 00 s 01 aphyllous 0 002 & 01703494 a 0000 ;c 06066555 n 0000 | having no leaves -01703710 00 s 02 defoliate 0 defoliated 0 001 & 01703494 a 0000 | deprived of leaves -01703797 00 s 01 scapose 0 002 & 01703494 a 0000 ;c 06066555 n 0000 | resembling or consisting of a scape; having a bare leafless stalk growing directly from the ground; "tulips are scapose flowers"; "a scapose stalk"; "a scapose column"; "the scapose portion of a feather" -01704073 00 a 01 lipped 0 005 ! 01704675 a 0101 & 01704273 a 0000 & 01704420 a 0000 & 01704523 a 0000 & 01704599 a 0000 | having a lip or lips; "a lipped bowl"; "a virgin purest lipped"- John Keats -01704273 00 s 02 bilabiate 0 two-lipped 0 002 & 01704073 a 0000 ;c 06066555 n 0000 | having two lips; "the corolla of a snapdragon is bilabiate" -01704420 00 s 02 labiate 0 liplike 0 001 & 01704073 a 0000 | having lips or parts that resemble lips -01704523 00 s 01 thick-lipped 0 001 & 01704073 a 0000 | having thick lips -01704599 00 s 01 three-lipped 0 001 & 01704073 a 0000 | having three lips -01704675 00 a 02 lipless 0 unlipped 0 001 ! 01704073 a 0101 | without a lip or lips -01704761 00 a 02 overt 0 open 7 009 ^ 00940437 a 0000 ^ 02090341 a 0000 ^ 01861205 a 0000 + 04654066 n 0201 ! 01705655 a 0101 & 01705088 a 0000 & 01705195 a 0000 & 01705418 a 0000 & 01705513 a 0000 | open and observable; not secret or hidden; "an overt lie"; "overt hostility"; "overt intelligence gathering"; "open ballots" -01705088 00 s 02 bald 0 barefaced 0 001 & 01704761 a 0000 | with no effort to conceal; "a barefaced lie" -01705195 00 s 02 naked 0 raw 0 002 & 01704761 a 0000 + 04654066 n 0102 | devoid of elaboration or diminution or concealment; bare and pure; "naked ambition"; "raw fury"; "you may kill someone someday with your raw power" -01705418 00 s 01 undisguised 0 001 & 01704761 a 0000 | plain to see; "undisguised curiosity" -01705513 00 s 01 visible 0 003 & 01704761 a 0000 + 05017458 n 0102 + 05017458 n 0101 | obvious to the eye; "a visible change of expression" -01705655 00 a 01 covert 0 016 ^ 00941485 a 0000 ^ 02517265 a 0000 ^ 02088404 a 0000 + 14416349 n 0102 ! 01704761 a 0101 & 01706111 a 0000 & 01706341 a 0000 & 01706465 a 0000 & 01706986 a 0000 & 01707084 a 0000 & 01707230 a 0000 & 01707404 a 0000 & 01707531 a 0000 & 01707733 a 0000 & 01708049 a 0000 & 01708164 a 0000 | secret or hidden; not openly practiced or engaged in or shown or avowed; "covert actions by the CIA"; "covert funding for the rebels" -01706111 00 s 03 backstair 0 backstairs 0 furtive 0 002 & 01705655 a 0000 + 04657631 n 0301 | secret and sly or sordid; "backstairs gossip"; "his low backstairs cunning"- A.L.Guerard; "backstairs intimacies"; "furtive behavior" -01706341 00 s 01 black 0 001 & 01705655 a 0000 | (of intelligence operations) deliberately misleading; "black propaganda" -01706465 00 s 09 clandestine 0 cloak-and-dagger 0 hole-and-corner(a) 0 hugger-mugger 0 hush-hush 0 secret 1 surreptitious 0 undercover 0 underground 0 002 & 01705655 a 0000 + 08360672 n 0901 | conducted with or marked by hidden aims or methods; "clandestine intelligence operations"; "cloak-and-dagger activities behind enemy lines"; "hole-and-corner intrigue"; "secret missions"; "a secret agent"; "secret sales of arms"; "surreptitious mobilization of troops"; "an undercover investigation"; "underground resistance" -01706986 00 s 01 secret 2 001 & 01705655 a 0000 | indulging only covertly; "a secret alcoholic" -01707084 00 s 02 collusive 0 conniving 0 002 & 01705655 a 0000 + 00707624 v 0102 | acting together in secret toward a fraudulent or illegal end -01707230 00 s 03 cloaked 0 disguised 0 masked 0 001 & 01705655 a 0000 | having its true character concealed with the intent of misleading; "hidden agenda"; "masked threat" -01707404 00 s 01 secret 3 001 & 01705655 a 0000 | communicated covertly; "their secret signal was a wink"; "secret messages" -01707531 00 s 03 sub-rosa 0 under-the-table 0 behind-the-scenes 0 001 & 01705655 a 0000 | designed and carried out secretly or confidentially; "a sub-rosa report"; "has their under-the-table backing" -01707733 00 s 03 subterranean 0 subterraneous 0 ulterior 0 001 & 01705655 a 0000 | lying beyond what is openly revealed or avowed (especially being kept in the background or deliberately concealed); "subterranean motives for murder"; "looked too closely for an ulterior purpose in all knowledge"- Bertrand Russell -01708049 00 s 01 under_wraps(p) 0 001 & 01705655 a 0000 | kept secret; "the plan was kept carefully under wraps" -01708164 00 s 02 undisclosed 0 unrevealed 0 001 & 01705655 a 0000 | not made known -01708249 00 a 01 paid 0 010 ! 01709815 a 0101 & 01708563 a 0000 & 01708663 a 0000 & 01708898 a 0000 & 01709081 a 0000 & 01709245 a 0000 & 01709354 a 0000 & 01709437 a 0000 & 01709542 a 0000 & 01709681 a 0000 | marked by the reception of pay; "paid work"; "a paid official"; "a paid announcement"; "a paid check" -01708563 00 s 01 cashed 0 001 & 01708249 a 0000 | for which money has been paid; "a cashed check" -01708663 00 s 05 compensable 0 paying(a) 0 remunerative 0 salaried 1 stipendiary 1 002 & 01708249 a 0000 + 02249741 v 0303 | for which money is paid; "a paying job"; "remunerative work"; "salaried employment"; "stipendiary services" -01708898 00 s 04 compensated 0 remunerated 0 salaried 2 stipendiary 2 001 & 01708249 a 0000 | receiving or eligible for compensation; "salaried workers"; "a stipendiary magistrate" -01709081 00 s 03 mercenary(a) 0 free-lance(a) 0 freelance(a) 0 002 & 01708249 a 0000 + 10309614 n 0101 | serving for wages in a foreign army; "mercenary killers" -01709245 00 s 01 paid-up 0 001 & 01708249 a 0000 | paid in advance; "paid-up insurance"; "paid-up members" -01709354 00 s 01 post-free 0 002 & 01708249 a 0000 ;r 08860123 n 0000 | postpaid -01709437 00 s 02 postpaid 0 prepaid 0 001 & 01708249 a 0000 | used especially of mail; paid in advance -01709542 00 s 01 reply-paid 0 001 & 01708249 a 0000 | with cost of reply prepaid by sender; "reply-paid postcard"; "reply-paid envelope" -01709681 00 s 01 square(p) 0 002 & 01708249 a 0000 ;u 07075172 n 0000 | leaving no balance; "my account with you is now all square" -01709815 00 a 01 unpaid 0 009 ^ 00136354 a 0000 ! 01708249 a 0101 & 01710054 a 0000 & 01710260 a 0000 & 01710421 a 0000 & 01710543 a 0000 & 01710709 a 0000 & 01710809 a 0000 & 01710946 a 0000 | not paid; "unpaid wages"; "an unpaid bill" -01710054 00 s 01 buckshee 0 002 & 01709815 a 0000 ;r 08860123 n 0000 | free of charge; "if they deposit these shares in the scheme they will get further buckshee shares on a one-for-one basis"- Economist -01710260 00 s 05 complimentary 0 costless 0 free 0 gratis(p) 0 gratuitous 0 001 & 01709815 a 0000 | costing nothing; "complimentary tickets"; "free admission" -01710421 00 s 01 non-paying 0 001 & 01709815 a 0000 | paying nothing; "non-paying guests"; "non-paying bidders on eBay" -01710543 00 s 03 outstanding 0 owing(p) 0 undischarged 0 001 & 01709815 a 0000 | owed as a debt; "outstanding bills"; "the amount still owed"; "undischarged debts" -01710709 00 s 01 pro_bono 0 001 & 01709815 a 0000 | done for the public good without compensation -01710809 00 s 01 rent-free 0 001 & 01709815 a 0000 | complimentary; without payment of rent; "with the job came a rent-free apartment" -01710946 00 s 02 uncompensated 0 unsalaried 0 001 & 01709815 a 0000 | not paying a salary; "an uncompensated federal post" -01711071 00 a 01 painful 0 016 ^ 01160031 a 0000 ^ 01262611 a 0000 + 07494363 n 0102 + 04720024 n 0101 ! 01713095 a 0101 & 01711465 a 0000 & 01711614 a 0000 & 01711724 a 0000 & 01711910 a 0000 & 01712076 a 0000 & 01712174 a 0000 & 01712327 a 0000 & 01712529 a 0000 & 01712657 a 0000 & 01712753 a 0000 & 01712940 a 0000 | causing physical or psychological pain; "worked with painful slowness" -01711465 00 s 02 aching 0 achy 0 002 & 01711071 a 0000 + 14323683 n 0201 | causing a dull and steady pain; "my aching head"; "her old achy joints" -01711614 00 s 02 agonized 0 agonised 0 001 & 01711071 a 0000 | expressing pain or agony; "agonized screams" -01711724 00 s 07 agonizing 0 agonising 0 excruciating 0 harrowing 0 torturing 0 torturous 0 torturesome 0 003 & 01711071 a 0000 + 14333433 n 0601 + 07495551 n 0603 | extremely painful -01711910 00 s 02 biting 0 bitter 0 001 & 01711071 a 0000 | causing a sharply painful or stinging sensation; used especially of cold; "bitter cold"; "a biting wind" -01712076 00 s 02 chafed 0 galled 0 001 & 01711071 a 0000 | painful from having the skin abraded -01712174 00 s 01 poignant 0 003 & 01711071 a 0000 + 13989443 n 0101 + 13989443 n 0102 | keenly distressing to the mind or feelings; "poignant anxiety" -01712327 00 s 01 itchy 0 003 & 01711071 a 0000 + 05723563 n 0101 + 05723563 n 0102 | causing an irritating cutaneous sensation; being affect with an itch; "he had an itchy toe from the mosquito bite" -01712529 00 s 02 racking 0 wrenching 0 001 & 01711071 a 0000 | causing great physical or mental suffering; "a wrenching pain" -01712657 00 s 01 saddle-sore 0 001 & 01711071 a 0000 | (of a rider) sore after riding a horse -01712753 00 s 04 sensitive 0 sore 0 raw 0 tender 0 005 & 01711071 a 0000 + 14332617 n 0401 + 14332617 n 0303 + 14332617 n 0202 + 05652926 n 0101 | hurting; "the tender spot on his jaw" -01712940 00 s 01 traumatic 0 002 & 01711071 a 0000 + 14285276 n 0101 | psychologically painful;"few experiences are more traumatic than losing a child"; -01713095 00 a 01 painless 0 003 ^ 01159655 a 0000 ! 01711071 a 0101 & 01713250 a 0000 | not causing physical or psychological pain; "painless dentistry" -01713250 00 s 02 pain-free 0 unpainful 0 001 & 01713095 a 0000 | not accompanied by pain sensations; "pain-free surgery" -01713373 00 a 01 painted 0 005 ^ 01005063 a 0000 ! 01713925 a 0101 & 01713550 a 0000 & 01713713 a 0000 & 01713815 a 0000 | coated with paint; "freshly painted lawn furniture" -01713550 00 s 01 finished 0 001 & 01713373 a 0000 | having a surface coating or finish applied; "the finished bookcase costs much more than the unfinished ones" -01713713 00 s 02 stained 0 varnished 0 001 & 01713373 a 0000 | having a coating of stain or varnish -01713815 00 s 01 whitewashed 0 001 & 01713373 a 0000 | coated with whitewash; "miles of whitewashed fences" -01713925 00 a 01 unpainted 0 005 ^ 01005675 a 0000 ! 01713373 a 0101 & 01714157 a 0000 & 01714314 a 0000 & 01714406 a 0000 | not having a coat of paint or badly in need of a fresh coat; "an unpainted house"; "unpainted furniture" -01714157 00 s 02 bare 0 unfinished 0 002 & 01713925 a 0000 + 04697819 n 0101 | lacking a surface finish such as paint; "bare wood"; "unfinished furniture" -01714314 00 s 01 unoiled 0 001 & 01713925 a 0000 | not having oil rubbed into the surface -01714406 00 s 02 unstained 0 unvarnished 0 001 & 01713925 a 0000 | not having a coating of stain or varnish -01714516 00 a 01 painted 1 002 ! 01714774 a 0101 & 01714633 a 0000 | having makeup applied; "brazen painted faces" -01714633 00 s 01 rouged 0 001 & 01714516 a 0000 | marked by the use of various kinds of red makeup; "freshly rouged lips"; "rouged cheeks" -01714774 00 a 01 unpainted 1 002 ! 01714516 a 0101 & 01714896 a 0000 | not having makeup on; "her sweet unpainted face" -01714896 00 s 01 unrouged 0 001 & 01714774 a 0000 | not wearing rouge; "unrouged lips" -01714985 00 a 03 delineated 0 represented 2 delineate 0 004 ! 01715574 a 0101 & 01715157 a 0000 & 01715287 a 0000 & 01715430 a 0000 | represented accurately or precisely -01715157 00 s 03 depicted 0 pictured 0 portrayed 0 001 & 01714985 a 0000 | represented graphically by sketch or design or lines -01715287 00 s 01 described 0 001 & 01714985 a 0000 | represented in words especially with sharpness and detail; "the vividly described wars" -01715430 00 s 02 diagrammatic 0 diagrammatical 0 003 & 01714985 a 0000 + 03186399 n 0201 + 03186399 n 0101 | shown or represented by diagrams -01715574 00 a 01 undelineated 0 003 ! 01714985 a 0101 & 01715708 a 0000 & 01715790 a 0000 | not represented accurately or precisely -01715708 00 s 02 undepicted 0 unpictured 0 001 & 01715574 a 0000 | not pictured -01715790 00 s 01 undrawn 0 001 & 01715574 a 0000 | not represented in a drawing -01715872 00 a 01 paintable 0 001 ! 01716034 a 0101 | lending itself to being painted; "a highly paintable landscape"; "made of sturdy eminently paintable wood" -01716034 00 a 01 unpaintable 0 001 ! 01715872 a 0101 | not paintable especially not suitable for artistic representation on canvas; "the inexpressible, unpaintable `tick' in the unconscious" -01716227 00 a 02 palatable 0 toothsome 0 007 ^ 00133417 a 0000 ^ 00828779 a 0000 ^ 02395115 a 0000 + 04794580 n 0102 + 04995211 n 0102 + 04995211 n 0101 ! 01716491 a 0101 | acceptable to the taste or mind; "palatable food"; "a palatable solution to the problem" -01716491 00 a 01 unpalatable 0 011 ^ 00829496 a 0000 ^ 01624633 a 0000 ^ 02399399 a 0000 ^ 00133851 a 0000 ^ 01801600 a 0000 + 04780396 n 0102 + 04996355 n 0102 + 04996355 n 0101 ! 01716227 a 0101 & 01716845 a 0000 & 01716971 a 0000 | not pleasant or acceptable to the taste or mind; "an unpalatable meal"; "unpalatable truths"; "unpalatable behavior" -01716845 00 s 01 brackish 0 001 & 01716491 a 0000 | distasteful and unpleasant; spoiled by mixture; "a thin brackish gruel" -01716971 00 s 03 distasteful 0 unsavory 0 unsavoury 0 003 & 01716491 a 0000 + 04996571 n 0205 + 04996571 n 0102 | not pleasing in odor or taste -01717117 00 a 02 palpable 0 tangible 4 005 ^ 01746605 a 0000 + 04760024 n 0202 + 04760024 n 0201 ! 01717669 a 0101 & 01717471 a 0000 | capable of being perceived; especially capable of being handled or touched or felt; "a barely palpable dust"; "felt sudden anger in a palpable wave"; "the air was warm and close--palpable as cotton"; "a palpable lie" -01717471 00 s 01 perceptible 0 003 & 01717117 a 0000 + 02106506 v 0101 + 05017230 n 0101 | easily perceived by the senses or grasped by the mind; "a perceptible sense of expectation in the court" -01717669 00 a 01 impalpable 0 003 ^ 01748318 a 0000 ! 01717117 a 0101 & 01717901 a 0000 | imperceptible to the senses or the mind; "an impalpable cloud"; "impalpable shadows"; "impalpable distinctions"; "as impalpable as a dream" -01717901 00 s 02 elusive 0 subtle 0 003 & 01717669 a 0000 + 02723232 v 0101 + 04824118 n 0101 | difficult to detect or grasp by the mind or analyze; "his whole attitude had undergone a subtle change"; "a subtle difference"; "that elusive thing the soul" -01718158 00 a 01 parallel 0 007 ^ 00503982 a 0000 ^ 02371718 a 0000 ! 01720280 a 0101 ! 01718867 a 0101 & 01718470 a 0000 & 01718609 a 0000 & 01718732 a 0000 | being everywhere equidistant and not intersecting; "parallel lines never converge"; "concentric circles are parallel"; "dancers in two parallel rows" -01718470 00 s 01 antiparallel 0 001 & 01718158 a 0000 | (especially of vectors) parallel but oppositely directed; "antiparallel vectors" -01718609 00 s 01 collateral 0 001 & 01718158 a 0000 | situated or running side by side; "collateral ridges of mountains" -01718732 00 s 02 nonconvergent 0 nonintersecting 0 001 & 01718158 a 0000 | (of lines, planes, or surfaces) never meeting or crossing -01718867 00 a 01 oblique 0 013 ^ 00612114 a 0000 ^ 00612652 a 0000 ^ 01234167 a 0000 + 05557839 n 0104 + 05066333 n 0101 ! 01718158 a 0101 ! 01720280 a 0101 & 01719393 a 0000 & 01719507 a 0000 & 01719779 a 0000 & 01719870 a 0000 & 01720091 a 0000 & 01720198 a 0000 | slanting or inclined in direction or course or position--neither parallel nor perpendicular nor right-angled; "the oblique rays of the winter sun"; "acute and obtuse angles are oblique angles"; "the axis of an oblique cone is not perpendicular to its base" -01719393 00 s 01 bias 0 001 & 01718867 a 0000 | slanting diagonally across the grain of a fabric; "a bias fold" -01719507 00 s 08 catacorner 0 cata-cornered 0 catercorner 0 cater-cornered 0 catty-corner 0 catty-cornered 0 kitty-corner 0 kitty-cornered 0 001 & 01718867 a 0000 | slanted across a polygon on a diagonal line; "set off in a catty-corner direction across the vacant lot" -01719779 00 s 02 crabwise 0 sideways 0 001 & 01718867 a 0000 | (of movement) at an angle -01719870 00 s 01 diagonal 2 002 & 01718867 a 0000 + 13904325 n 0101 | connecting two nonadjacent corners of a plane figure or any two corners of a solid that are not in the same face; "a diagonal line across the page" -01720091 00 s 01 nonparallel 0 001 & 01718867 a 0000 | (of e.g. lines or paths) not parallel; converging -01720198 00 s 01 oblique-angled 0 001 & 01718867 a 0000 | having oblique angles -01720280 00 a 01 perpendicular 0 008 + 13870680 n 0101 + 13829047 n 0102 + 05072208 n 0101 ! 01718867 a 0101 ! 01718158 a 0101 & 01720549 a 0000 & 01720642 a 0000 & 01720930 a 0000 | intersecting at or forming right angles; "the axes are perpendicular to each other" -01720549 00 s 01 normal 0 002 & 01720280 a 0000 ;c 06004685 n 0000 | forming a right angle -01720642 00 s 02 orthogonal 0 rectangular 0 002 & 01720280 a 0000 + 05072078 n 0101 | having a set of mutually perpendicular axes; meeting at right angles; "wind and sea may displace the ship's center of gravity along three orthogonal axes"; "a rectangular Cartesian coordinate system" -01720930 00 s 01 right 0 002 & 01720280 a 0000 ;c 06004685 n 0000 | having the axis perpendicular to the base; "a right angle" -01721059 00 a 01 pardonable 0 004 ! 01721530 a 0101 & 01721197 a 0000 & 01721319 a 0000 & 01721401 a 0000 | admitting of being pardoned -01721197 00 s 03 excusable 0 forgivable 0 venial 1 001 & 01721059 a 0000 | easily excused or forgiven; "a venial error" -01721319 00 s 01 expiable 0 001 & 01721059 a 0000 | capable of being atoned for -01721401 00 s 02 minor 0 venial 2 002 & 01721059 a 0000 ;c 06182144 n 0000 | warranting only temporal punishment; "venial sin" -01721530 00 a 01 unpardonable 0 004 ! 01721059 a 0101 & 01721691 a 0000 & 01721867 a 0000 & 01721953 a 0000 | not admitting of pardon; "unpardonable behavior" -01721691 00 s 02 deadly 0 mortal(a) 0 003 & 01721530 a 0000 ;c 06182144 n 0000 + 04791081 n 0101 | involving loss of divine grace or spiritual death; "the seven deadly sins" -01721867 00 s 02 inexcusable 0 unforgivable 0 001 & 01721530 a 0000 | not excusable -01721953 00 s 01 inexpiable 0 001 & 01721530 a 0000 | incapable of being atoned for -01722039 00 a 01 excusable 0 002 ! 01722260 a 0101 & 01722140 a 0000 | capable of being overlooked -01722140 00 s 01 justifiable 0 003 & 01722039 a 0000 + 00894738 v 0104 + 00896803 v 0101 | capable of being justified -01722260 00 a 01 inexcusable 0 002 ! 01722039 a 0101 & 01722367 a 0000 | without excuse or justification -01722367 00 s 05 indefensible 0 insupportable 0 unjustifiable 0 unwarrantable 0 unwarranted 0 001 & 01722260 a 0000 | incapable of being justified or explained -01722529 00 a 03 parental 0 maternal 4 paternal 4 002 + 10399491 n 0101 ! 01722699 a 0101 | relating to or characteristic of or befitting a parent; "parental guidance" -01722699 00 a 01 filial 0 002 ! 01722529 a 0101 & 01722846 a 0000 | relating to or characteristic of or befitting an offspring; "filial respect" -01722846 00 s 01 daughterly 0 002 & 01722699 a 0000 + 09992837 n 0101 | befitting a daughter; "daughterly affection" -01722965 00 a 01 partial 1 004 ^ 00957176 a 0000 + 06201136 n 0101 ! 01723308 a 0101 & 01723091 a 0000 | showing favoritism -01723091 00 s 05 biased 0 colored 0 coloured 0 one-sided 0 slanted 0 001 & 01722965 a 0000 | favoring one person or side over another; "a biased account of the trial"; "a decision that was partial to the defendant" -01723308 00 a 01 impartial 0 007 ^ 00956131 a 0000 + 06202686 n 0101 ! 01722965 a 0101 & 01723543 a 0000 & 01723648 a 0000 & 01723856 a 0000 & 01724072 a 0000 | showing lack of favoritism; "the cold neutrality of an impartial judge" -01723543 00 s 01 disinterested 0 002 & 01723308 a 0000 + 06202907 n 0101 | unaffected by self-interest -01723648 00 s 02 dispassionate 0 cold-eyed 0 003 & 01723308 a 0000 + 04630137 n 0101 + 04630137 n 0102 | unaffected by strong emotion or prejudice; "a journalist should be a dispassionate reporter of fact" -01723856 00 s 03 indifferent 0 unbiased 0 unbiassed 0 002 & 01723308 a 0000 + 07505676 n 0101 | characterized by a lack of partiality; "a properly indifferent jury"; "an unbiasgoted account of her family problems" -01724072 00 s 01 indifferent 2 003 & 01723308 a 0000 + 07505676 n 0101 + 04673470 n 0103 | marked by no especial liking or dislike or preference for one thing over another; "indifferent about which book you would give them"; "was indifferent to their acceptance or rejection of her invitation" -01724368 00 a 01 particulate 0 001 ! 01724456 a 0101 | composed of distinct particles -01724456 00 a 01 nonparticulate 0 001 ! 01724368 a 0101 | not composed of distinct particles -01724551 00 a 01 passable 0 005 ! 01725273 a 0101 & 01724743 a 0000 & 01724916 a 0000 & 01725031 a 0000 & 01725129 a 0000 | able to be passed or traversed or crossed; "the road is passable" -01724743 00 s 01 navigable 0 003 & 01724551 a 0000 + 04719661 n 0101 + 01846320 v 0103 | able to be sailed on or through safely; "navigable waters"; "a navigable channel" -01724916 00 s 01 negotiable 0 001 & 01724551 a 0000 | capable of being passed or negotiated; "a negotiable road" -01725031 00 s 02 surmountable 0 climbable 0 001 & 01724551 a 0000 | capable of being surmounted -01725129 00 s 02 traversable 0 travelable 0 001 & 01724551 a 0000 | capable of being traversed; "highway crews soon had the roads travelable" -01725273 00 a 02 impassable 0 unpassable 0 004 ! 01724551 a 0101 & 01725422 a 0000 & 01725537 a 0000 & 01725624 a 0000 | incapable of being passed -01725422 00 s 02 unsurmountable 0 unclimbable 0 001 & 01725273 a 0000 | incapable of being surmounted or climbed -01725537 00 s 01 unnavigable 0 001 & 01725273 a 0000 | incapable of being navigated -01725624 00 s 01 untraversable 0 001 & 01725273 a 0000 | incapable of being traversed -01725712 00 a 01 passionate 0 013 ^ 00853776 a 0000 ^ 00885695 a 0000 ^ 01256332 a 0000 ^ 01463965 a 0000 + 07480896 n 0102 ! 01727439 a 0101 & 01726021 a 0000 & 01726235 a 0000 & 01726613 a 0000 & 01726775 a 0000 & 01726859 a 0000 & 01727133 a 0000 & 01727303 a 0000 | having or expressing strong emotions -01726021 00 s 03 ablaze 0 aflame 0 aroused 0 001 & 01725712 a 0000 | keenly excited (especially sexually) or indicating excitement; "his face all ablaze with excitement"- Bram Stoker; "he was aflame with desire" -01726235 00 s 07 ardent 0 fervent 0 fervid 0 fiery 0 impassioned 0 perfervid 0 torrid 0 005 & 01725712 a 0000 + 07481375 n 0406 + 04628336 n 0401 + 07481375 n 0307 + 07481375 n 0205 | characterized by intense emotion; "ardent love"; "an ardent lover"; "a fervent desire to change society"; "a fervent admirer"; "fiery oratory"; "an impassioned appeal"; "a torrid love affair" -01726613 00 s 01 choleric 0 002 & 01725712 a 0000 + 07516354 n 0102 | easily moved to anger; "men of the choleric type take to kicking and smashing"- H.G.Wells -01726775 00 s 01 demon-ridden 0 001 & 01725712 a 0000 | as if possessed by demons -01726859 00 s 04 fanatic 0 fanatical 0 overzealous 0 rabid 0 006 & 01725712 a 0000 + 04885784 n 0402 + 04885784 n 0403 + 10077879 n 0201 + 10077879 n 0101 + 06206334 n 0102 | marked by excessive enthusiasm for and intense devotion to a cause or idea; "rabid isolationist" -01727133 00 s 03 lustful 0 lusty 0 concupiscent 0 005 & 01725712 a 0000 + 07487955 n 0303 + 07489714 n 0202 + 00759335 n 0201 + 07489714 n 0103 | vigorously passionate -01727303 00 s 01 wild 0 002 & 01725712 a 0000 + 07481223 n 0101 | in a state of extreme emotion; "wild with anger"; "wild with grief" -01727439 00 a 01 passionless 0 006 ^ 01257612 a 0000 ^ 00856860 a 0000 ^ 00887062 a 0000 ! 01725712 a 0101 & 01727644 a 0000 & 01727741 a 0000 | not passionate; "passionless observation of human nature" -01727644 00 s 01 platonic 0 001 & 01727439 a 0000 | free from physical desire; "platonic love" -01727741 00 s 01 unimpassioned 0 001 & 01727439 a 0000 | free from emotional appeal; marked by reasonableness; "answered with an unimpassioned defense"; "the unimpassioned intellect" -01727926 00 a 01 past 0 022 ^ 00668571 a 0000 ^ 01638438 a 0000 ^ 01295443 a 0000 = 05046009 n 0000 + 05049656 n 0101 ! 01731351 a 0101 ! 01732270 a 0101 & 01728476 a 0000 & 01728614 a 0000 & 01728919 a 0000 & 01729157 a 0000 & 01729384 a 0000 & 01729566 a 0000 & 01729819 a 0000 & 01730060 a 0000 & 01730329 a 0000 & 01730444 a 0000 & 01730745 a 0000 & 01730820 a 0000 & 01730909 a 0000 & 01731108 a 0000 & 01731208 a 0000 | earlier than the present time; no longer current; "time past"; "his youth is past"; "this past Thursday"; "the past year" -01728476 00 s 02 ago 0 agone 0 001 & 01727926 a 0000 | gone by; or in the past; "two years ago"; "`agone' is an archaic word for `ago'" -01728614 00 s 01 ancient 0 003 & 01727926 a 0000 + 04925756 n 0101 + 09793141 n 0101 | belonging to times long past especially of the historical period before the fall of the Western Roman Empire; "ancient history"; "ancient civilizations such as those of the Etruscans and Sumerians"; "ancient Greece" -01728919 00 s 05 bygone 0 bypast 0 departed 0 foregone 0 gone 0 002 & 01727926 a 0000 + 15121153 n 0101 | well in the past; former; "bygone days"; "dreams of foregone times"; "sweet memories of gone summers"; "relics of a departed era" -01729157 00 s 03 chivalric 0 knightly 0 medieval 0 003 & 01727926 a 0000 + 10238375 n 0201 + 05955848 n 0101 | characteristic of the time of chivalry and knighthood in the Middle Ages; "chivalric rites"; "the knightly years" -01729384 00 s 03 early(a) 0 former(a) 0 other(a) 2 001 & 01727926 a 0000 | belonging to the distant past; "the early inhabitants of Europe"; "former generations"; "in other times" -01729566 00 s 07 erstwhile(a) 0 former(a) 1 old 3 onetime(a) 0 one-time(a) 0 quondam(a) 0 sometime(a) 0 001 & 01727926 a 0000 | belonging to some prior time; "erstwhile friend"; "our former glory"; "the once capital of the state"; "her quondam lover" -01729819 00 s 03 former(a) 2 late(a) 2 previous(a) 0 001 & 01727926 a 0000 | (used especially of persons) of the immediate past; "the former president"; "our late President is still very active"; "the previous occupant of the White House" -01730060 00 s 02 historic 0 historical 0 004 & 01727926 a 0000 + 05170088 n 0201 + 15121406 n 0101 + 06156752 n 0101 | belonging to the past; of what is important or famous in the past; "historic victories"; "historical (or historic) times"; "a historical character" -01730329 00 s 01 last(a) 0 001 & 01727926 a 0000 | immediately past; "last Thursday"; "the last chapter we read" -01730444 00 s 02 late(a) 0 recent 0 004 & 01727926 a 0000 + 04927268 n 0201 + 05049808 n 0202 + 05047059 n 0101 | of the immediate past or just previous to the present time; "a late development"; "their late quarrel"; "his recent trip to Africa"; "in recent months"; "a recent issue of the journal" -01730745 00 s 01 olden 0 001 & 01727926 a 0000 | long past; "olden days" -01730820 00 s 01 other(a) 0 001 & 01727926 a 0000 | recently past; "the other evening" -01730909 00 s 02 prehistoric 0 prehistorical 0 002 & 01727926 a 0000 + 15254550 n 0101 | belonging to or existing in times before recorded history; "prehistoric settlements"; "prehistoric peoples" -01731108 00 s 01 then(a) 0 001 & 01727926 a 0000 | at a specific prior time; "the then president" -01731208 00 s 02 ultimo 0 ult 0 001 & 01727926 a 0000 | in or of the month preceding the present one; "your letter received on the 29th ult" -01731351 00 a 01 present(a) 1 010 = 05046009 n 0000 + 15119536 n 0101 + 06329734 n 0101 + 05050115 n 0101 ! 01732270 a 0101 ! 01727926 a 0101 & 01731786 a 0000 & 01731882 a 0000 & 01732012 a 0000 & 01732131 a 0000 | temporal sense; intermediate between past and future; now existing or happening or in consideration; "the present leader"; "articles for present use"; "the present topic"; "the present system"; "present observations" -01731786 00 s 01 existing 0 001 & 01731351 a 0000 | presently existing; "the existing system" -01731882 00 s 01 immediate 0 002 & 01731351 a 0000 + 05059525 n 0102 | of the present time and place; "the immediate revisions" -01732012 00 s 02 instant 0 inst 0 001 & 01731351 a 0000 | in or of the present month; "your letter of the 10th inst" -01732131 00 s 01 latter-day 0 001 & 01731351 a 0000 | belonging to the present or recent times; "the latter-day problems of our society" -01732270 00 a 01 future 0 013 ^ 01294300 a 0000 ^ 01883898 a 0000 = 05046009 n 0000 + 15121625 n 0103 + 05049930 n 0101 ! 01727926 a 0101 ! 01731351 a 0101 & 01732601 a 0000 & 01732855 a 0000 & 01732958 a 0000 & 01733082 a 0000 & 01733189 a 0000 & 01733330 a 0000 | yet to be or coming; "some future historian will evaluate him" -01732601 00 s 04 approaching 0 coming(a) 1 forthcoming 0 upcoming 0 002 & 01732270 a 0000 + 14030820 n 0306 | of the relatively near future; "the approaching election"; "this coming Thursday"; "the forthcoming holidays"; "the upcoming spring fashions" -01732855 00 s 01 future_day 0 001 & 01732270 a 0000 | yet to come; "a future-day Gibbon of Macaulay" -01732958 00 s 01 early 1 001 & 01732270 a 0000 | expected in the near future; "look for an early end to the negotiations" -01733082 00 s 02 emerging 0 rising 0 001 & 01732270 a 0000 | coming to maturity; "the rising generation" -01733189 00 s 01 in_store(p) 0 001 & 01732270 a 0000 | in readiness; awaiting; "gave us a hint of the excitement that was in store for us" -01733330 00 s 02 proximo 0 prox 0 001 & 01732270 a 0000 | in or of the next month after the present; "scheduled for the 6th prox" -01733462 00 a 01 born 0 002 ! 01733661 a 0101 & 01733588 a 0000 | brought into existence; "he was a child born of adultery" -01733588 00 s 01 hatched 0 001 & 01733462 a 0000 | emerged from an egg -01733661 00 a 01 unborn 0 002 ! 01733462 a 0101 & 01733784 a 0000 | not yet brought into existence; "unborn generations" -01733784 00 s 01 unhatched 0 001 & 01733661 a 0000 | not yet emerged from an egg -01733867 00 a 01 parented 0 001 ! 01733982 a 0101 | having a parent or parents or cared for by parent surrogates -01733982 00 a 02 unparented 0 parentless 0 004 ! 01733867 a 0101 & 01734171 a 0000 & 01734267 a 0000 & 01734347 a 0000 | having no parent or parents or not cared for by parent surrogates -01734171 00 s 01 orphaned 0 001 & 01733982 a 0000 | deprived of parents by death or desertion -01734267 00 s 01 fatherless 0 001 & 01733982 a 0000 | having no living father -01734347 00 s 01 motherless 0 001 & 01733982 a 0000 | having no living or known mother -01734436 00 a 01 paternal 0 006 ^ 01737825 a 0000 = 04873305 n 0000 + 14578792 n 0101 ! 01734884 a 0101 & 01734607 a 0000 & 01734772 a 0000 | characteristic of a father -01734607 00 s 02 fatherly 0 fatherlike 0 003 & 01734436 a 0000 + 10080869 n 0101 + 04873305 n 0101 | like or befitting a father or fatherhood; kind and protective -01734772 00 s 01 paternalistic 0 002 & 01734436 a 0000 + 06196071 n 0101 | benevolent but sometimes intrusive -01734884 00 a 01 maternal 0 007 ^ 01738335 a 0000 = 04872958 n 0000 + 04872958 n 0104 ! 01734436 a 0101 & 01735130 a 0000 & 01735252 a 0000 & 01735346 a 0000 | characteristic of a mother; "warm maternal affection for her guest"- Dorothy Sayers -01735130 00 s 01 maternalistic 0 003 & 01734884 a 0000 + 04872958 n 0102 + 00655540 n 0101 | showing maternal instincts -01735252 00 s 01 motherlike 0 001 & 01734884 a 0000 | suggestive of or acting like a mother -01735346 00 s 01 motherly 0 003 & 01734884 a 0000 + 10332385 n 0101 + 04872958 n 0101 | befitting a mother; warm and nurturing -01735475 00 a 03 wifely 0 wifelike 0 uxorial 0 003 + 10743941 n 0301 + 10780632 n 0101 ! 01735622 a 0101 | befitting or characteristic of a wife -01735622 00 a 01 husbandly 0 002 + 10193967 n 0101 ! 01735475 a 0101 | befitting or characteristic of a husband -01735736 00 a 01 patient 0 009 ^ 02436341 a 0000 ^ 00514278 a 0000 + 04640538 n 0101 ! 01737241 a 0101 & 01736122 a 0000 & 01736384 a 0000 & 01736571 a 0000 & 01736883 a 0000 & 01737084 a 0000 | enduring trying circumstances with even temper or characterized by such endurance; "a patient smile"; "was patient with the children"; "an exact and patient scientist"; "please be patient" -01736122 00 s 02 diligent 0 persevering 0 002 & 01735736 a 0000 + 04865114 n 0101 | quietly and steadily persevering especially in detail or exactness; "a diligent (or patient) worker"; "with persevering (or patient) industry she revived the failing business" -01736384 00 s 02 enduring 0 long-suffering 0 001 & 01735736 a 0000 | patiently bearing continual wrongs or trouble; "an enduring disposition"; "a long-suffering and uncomplaining wife" -01736571 00 s 02 forbearing 0 longanimous 0 002 & 01735736 a 0000 + 04640538 n 0203 | showing patient and unruffled self-control and restraint under adversity; slow to retaliate or express resentment; "seemly and forbearing...yet strong enough to resist aggression"; "was longanimous in the face of suffering" -01736883 00 s 02 tolerant 0 patient_of 0 002 & 01735736 a 0000 + 00668099 v 0107 | showing the capacity for endurance; "injustice can make us tolerant and forgiving"; "a man patient of distractions" -01737084 00 s 01 unhurried 0 002 & 01735736 a 0000 + 05061977 n 0104 | capable of accepting delay with equanimity; "was unhurried with the small children" -01737241 00 a 01 impatient 0 006 ^ 00085264 a 0000 + 14407283 n 0102 + 04642596 n 0101 ! 01735736 a 0101 & 01737503 a 0000 & 01737698 a 0000 | restless or short-tempered under delay or opposition; "impatient with the slower students"; "impatient of criticism" -01737503 00 s 01 restive 0 001 & 01737241 a 0000 | impatient especially under restriction or delay; "the government has done nothing to ease restrictions and manufacturers are growing restive" -01737698 00 s 01 unforbearing 0 001 & 01737241 a 0000 | unwilling to endure; "she was unforbearing with the slower students" -01737825 00 a 01 patriarchal 0 006 ^ 01734436 a 0000 + 10406765 n 0101 + 07972674 n 0101 ! 01738335 a 0101 & 01738100 a 0000 & 01738252 a 0000 | characteristic of a form of social organization in which the male is the family head and title is traced through the male line -01738100 00 s 01 patriarchic 0 002 & 01737825 a 0000 + 07972674 n 0101 | (of societies) being ruled by or having descent traced through the male line -01738252 00 s 01 patricentric 0 001 & 01737825 a 0000 | centered upon the father -01738335 00 a 01 matriarchal 0 005 ^ 01734884 a 0000 + 07972888 n 0101 ! 01737825 a 0101 & 01738495 a 0000 & 01738663 a 0000 | characteristic of a matriarchy -01738495 00 s 01 matriarchic 0 001 & 01738335 a 0000 | (of societies or families) having a female as the family head or having descent traced through the female line -01738663 00 s 01 matricentric 0 001 & 01738335 a 0000 | centered upon the mother -01738746 00 a 02 patronized 0 patronised 0 001 ! 01738895 a 0101 | having patronage or clients; "street full of flourishing well-patronized shops" -01738895 00 a 03 unpatronized 0 unpatronised 0 patronless 0 002 ! 01738746 a 0101 & 01739080 a 0000 | having little patronage or few clients; "a restaurant unpatronized by the elite" -01739080 00 s 01 briefless 0 001 & 01738895 a 0000 | (of lawyers or barristers) lacking clients -01739178 00 a 01 packaged 0 002 ! 01739456 a 0101 & 01739315 a 0000 | enclosed in a package or protective covering; "packaged cereals" -01739315 00 s 02 prepackaged 0 prepacked 0 001 & 01739178 a 0000 | prepared and wrapped beforehand and ready for sale; "prepackaged foods" -01739456 00 a 01 unpackaged 0 002 ! 01739178 a 0101 & 01739582 a 0000 | not packaged or put into packets; "unpackaged nuts" -01739582 00 s 01 loose 0 001 & 01739456 a 0000 | not carefully arranged in a package; "a box of loose nails" -01739693 00 a 01 paved 0 003 ! 01739987 a 0101 & 01739808 a 0000 & 01739898 a 0000 | covered with a firm surface -01739808 00 s 01 made-up 0 002 & 01739693 a 0000 ;r 08860123 n 0000 | having been paved -01739898 00 s 01 sealed 0 002 & 01739693 a 0000 ;r 08831004 n 0000 | having been paved -01739987 00 a 01 unpaved 0 002 ! 01739693 a 0101 & 01740085 a 0000 | not having a paved surface -01740085 00 s 01 caliche-topped 0 001 & 01739987 a 0000 | covered with caliche, a hard calcium-carbonate encrusted soil -01740207 00 a 02 patriotic 0 loyal 6 004 ^ 00961392 a 0000 + 04878101 n 0101 ! 01740630 a 0101 & 01740358 a 0000 | inspired by love for your country -01740358 00 s 06 chauvinistic 0 flag-waving(a) 0 jingoistic 0 nationalistic 0 ultranationalistic 0 superpatriotic 0 007 & 01740207 a 0000 + 04878646 n 0504 + 04878101 n 0402 + 07187486 n 0302 + 04878646 n 0302 + 09911849 n 0101 + 04878646 n 0101 | fanatically patriotic -01740630 00 a 02 unpatriotic 0 disloyal 6 003 ^ 00962634 a 0000 ! 01740207 a 0101 & 01740772 a 0000 | showing lack of love for your country -01740772 00 s 01 un-American 0 001 & 01740630 a 0000 | considered contrary to the best interests of the United States -01740892 00 a 02 peaceful 0 peaceable 0 011 ^ 01246579 a 0000 ^ 02512922 a 0000 ^ 01922763 a 0000 ^ 00084956 a 0000 ! 01742296 a 0101 & 01741270 a 0000 & 01741408 a 0000 & 01741563 a 0000 & 01741669 a 0000 & 01741953 a 0000 & 01742119 a 0000 | not disturbed by strife or turmoil or war; "a peaceful nation"; "peaceful times"; "a far from peaceful Christmas"; "peaceful sleep" -01741270 00 s 01 halcyon 0 001 & 01740892 a 0000 | idyllically calm and peaceful; suggesting happy tranquillity; "a halcyon atmosphere" -01741408 00 s 01 irenic 0 001 & 01740892 a 0000 | conducive to peace; "irenic without being namby-pamby"; "an irenic attitude toward former antagonists" -01741563 00 s 01 nonbelligerent 0 001 & 01740892 a 0000 | not directly at war; "nonbelligerent nations" -01741669 00 s 02 pacific 2 peaceable 1 002 & 01740892 a 0000 + 13970584 n 0201 | disposed to peace or of a peaceful nature; "the pacific temper seeks to settle disputes on grounds of justice rather than by force"; "a quiet and peaceable person"; "in a peaceable and orderly manner" -01741953 00 s 03 pacifist(a) 0 pacifistic 0 dovish 0 005 & 01740892 a 0000 + 06221485 n 0301 + 05946406 n 0201 + 05965586 n 0201 + 10390199 n 0101 | opposed to war -01742119 00 s 02 peaceable 2 peace-loving 0 002 & 01740892 a 0000 + 13970584 n 0101 | inclined or disposed to peace; "they met in a peaceable spirit"; "peace-loving citizens" -01742296 00 a 01 unpeaceful 0 008 ^ 01244410 a 0000 ^ 00303727 a 0000 ^ 02510879 a 0000 ! 01740892 a 0101 & 01742537 a 0000 & 01742715 a 0000 & 01742912 a 0000 & 01743138 a 0000 | not peaceful; "unpeaceful times"; "an unpeaceful marriage" -01742537 00 s 04 belligerent 0 militant 1 war-ridden 0 warring 0 003 & 01742296 a 0000 + 09939313 n 0103 + 00964781 n 0102 | engaged in war; "belligerent (or warring) nations" -01742715 00 s 03 militant 0 hawkish 0 warlike 0 002 & 01742296 a 0000 + 06221790 n 0201 | disposed to warfare or hard-line policies; "militant nations"; "hawkish congressman"; "warlike policies" -01742912 00 s 02 stormy 0 tempestuous 0 005 & 01742296 a 0000 + 13979503 n 0204 + 13978344 n 0202 + 07481625 n 0101 + 13978344 n 0101 | characterized by violent emotions or behavior; "a stormy argument"; "a stormy marriage" -01743138 00 s 01 unpeaceable 0 001 & 01742296 a 0000 | not disposed to peace -01743217 00 a 02 penitent 0 repentant 0 011 ^ 00153898 a 0000 ^ 01150475 a 0000 + 07536870 n 0201 + 01796800 v 0201 + 01796582 v 0201 ! 01743909 a 0202 + 10413834 n 0101 + 07536870 n 0102 ! 01743909 a 0101 & 01743506 a 0000 & 01743704 a 0000 | feeling or expressing remorse for misdeeds -01743506 00 s 04 contrite 0 remorseful 0 rueful 0 ruthful 0 004 & 01743217 a 0000 + 07535209 n 0403 + 07535670 n 0304 + 07534700 n 0103 | feeling or expressing pain or sorrow for sins or offenses -01743704 00 s 02 penitential 0 penitentiary 0 002 & 01743217 a 0000 + 07536870 n 0102 | showing or constituting penance; "penitential tears"; "wrote a penitential letter apologizing for her hasty words" -01743909 00 a 03 impenitent 0 unrepentant 0 unremorseful 0 006 ^ 00154965 a 0000 ^ 01957454 a 0000 ! 01743217 a 0202 + 04863358 n 0102 + 04863358 n 0101 ! 01743217 a 0101 | not penitent or remorseful -01744111 00 a 01 perceptive 0 014 + 07513247 n 0102 + 05710210 n 0102 + 04843875 n 0101 + 07513247 n 0103 + 00591519 v 0101 ! 01746114 a 0101 & 01744515 a 0000 & 01745027 a 0000 & 01745191 a 0000 & 01745296 a 0000 & 01745517 a 0000 & 01745653 a 0000 & 01745846 a 0000 & 01745946 a 0000 | having the ability to perceive or understand; keen in discernment; "a perceptive eye"; "a perceptive observation" -01744515 00 s 09 acute 0 discriminating 0 incisive 0 keen 0 knifelike 0 penetrating 0 penetrative 0 piercing 0 sharp 0 006 & 01744111 a 0000 + 05620468 n 0903 + 00728954 v 0701 + 05620468 n 0404 + 05199680 n 0301 + 05620468 n 0101 | having or demonstrating ability to recognize or draw fine distinctions; "an acute observer of politics and politicians"; "incisive comments"; "icy knifelike reasoning"; "as sharp and incisive as the stroke of a fang"; "penetrating insight"; "frequent penetrative observations" -01745027 00 s 02 apprehensive 0 discerning 0 002 & 01744111 a 0000 + 00588221 v 0108 | quick to understand; "a kind and apprehensive friend"- Nathaniel Hawthorne -01745191 00 s 01 apperceptive 0 001 & 01744111 a 0000 | able to relate new percepts to past experience -01745296 00 s 01 insightful 0 002 & 01744111 a 0000 + 05621808 n 0101 | exhibiting insight or clear and deep perception; "an insightful parent"; "the chapter is insightful and suggestive of new perspectives"-R.C.Angell -01745517 00 s 02 observant 0 observing 0 002 & 01744111 a 0000 + 02154508 v 0102 | quick to notice; showing quick and keen perception -01745653 00 s 03 quick-sighted 0 sharp-sighted 0 sharp-eyed 0 002 & 01744111 a 0000 + 04664628 n 0202 | keenly perceptive or alert; "quick-sighted into the faults of the time"- Leonard Bacon -01745846 00 s 01 subtle 0 001 & 01744111 a 0000 | able to make fine distinctions; "a subtle mind" -01745946 00 s 01 understanding 0 001 & 01744111 a 0000 | characterized by understanding based on comprehension and discernment and empathy; "an understanding friend" -01746114 00 a 02 unperceptive 0 unperceiving 0 004 + 04845146 n 0101 ! 01744111 a 0101 & 01746292 a 0000 & 01746464 a 0000 | lacking perception; "as unperceptive as a boulder" -01746292 00 s 01 blind 0 001 & 01746114 a 0000 | unable or unwilling to perceive or understand; "blind to a lover's faults"; "blind to the consequences of their actions" -01746464 00 s 02 unobservant 0 unseeing 0 001 & 01746114 a 0000 | not consciously observing; "looked through him with blank unseeing eyes" -01746605 00 a 01 perceptible 0 012 ^ 00173764 a 0000 ^ 02515341 a 0000 + 00591519 v 0101 + 05017230 n 0101 ! 01748318 a 0101 & 01746995 a 0000 & 01747195 a 0000 & 01747364 a 0000 & 01747713 a 0000 & 01747849 a 0000 & 01747996 a 0000 & 01748152 a 0000 | capable of being perceived by the mind or senses; "a perceptible limp"; "easily perceptible sounds"; "perceptible changes in behavior" -01746995 00 s 02 detectable 0 noticeable 0 004 & 01746605 a 0000 + 04706290 n 0202 + 04706290 n 0203 + 02118476 v 0201 | capable of being detected; "after a noticeable pause the lecturer continued" -01747195 00 s 01 discernible 0 002 & 01746605 a 0000 + 02193194 v 0105 | capable of being perceived clearly; "an essay with a meaning that was not always discernible" -01747364 00 s 02 faint 0 weak 0 003 & 01746605 a 0000 + 04991137 n 0101 + 04704675 n 0102 | deficient in magnitude; barely perceptible; lacking clarity or brightness or loudness etc; "a faint outline"; "the wan sun cast faint shadows"; "the faint light of a distant candle"; "weak colors"; "a faint hissing sound"; "a faint aroma"; "a weak pulse" -01747713 00 s 01 palpable 0 003 & 01746605 a 0000 ;c 06043075 n 0000 + 04760024 n 0103 | can be felt by palpation; "a palpable tumor" -01747849 00 s 01 perceivable 0 001 & 01746605 a 0000 | capable of being perceived especially by sight or hearing; "perceivable through the mist" -01747996 00 s 01 recognizable 0 001 & 01746605 a 0000 | easily perceived; easy to become aware of; "this situation produces recognizable stress symptoms" -01748152 00 s 01 sensible 0 003 & 01746605 a 0000 + 02106006 v 0102 + 05652926 n 0103 | readily perceived by the senses; "the sensible universe"; "a sensible odor" -01748318 00 a 02 imperceptible 0 unperceivable 4 010 ^ 01717669 a 0000 ^ 00174379 a 0000 ^ 02517265 a 0000 + 05019339 n 0101 ! 01746605 a 0101 & 01748716 a 0000 & 01748824 a 0000 & 01748936 a 0000 & 01749125 a 0000 & 01749225 a 0000 | impossible or difficult to perceive by the mind or senses; "an imperceptible drop in temperature"; "an imperceptible nod"; "color is unperceivable to the touch" -01748716 00 s 01 impalpable 0 001 & 01748318 a 0000 | not perceptible to the touch; "an impalpable pulse" -01748824 00 s 02 incognizable 0 incognoscible 0 001 & 01748318 a 0000 | incapable of being perceived or known -01748936 00 s 03 indiscernible 0 insensible 0 undetectable 0 001 & 01748318 a 0000 | barely able to be perceived; "the transition was almost indiscernible"; "an almost insensible change" -01749125 00 s 01 subliminal 0 001 & 01748318 a 0000 | below the threshold of conscious perception -01749225 00 s 01 unobservable 0 001 & 01748318 a 0000 | not accessible to direct observation -01749320 00 a 01 perfect 0 021 ^ 00914421 a 0000 ^ 00247013 a 0000 ^ 00289365 a 0000 ^ 02497938 a 0000 = 14459422 n 0000 ! 01752167 a 0101 & 01749915 a 0000 & 01750073 a 0000 & 01750256 a 0000 & 01750386 a 0000 & 01750617 a 0000 & 01750746 a 0000 & 01750847 a 0000 & 01751080 a 0000 & 01751201 a 0000 & 01751353 a 0000 & 01751465 a 0000 & 01751609 a 0000 & 01751693 a 0000 & 01751828 a 0000 & 01751940 a 0000 | being complete of its kind and without defect or blemish; "a perfect circle"; "a perfect reproduction"; "perfect happiness"; "perfect manners"; "a perfect specimen"; "a perfect day" -01749915 00 s 01 clean 0 001 & 01749320 a 0000 | (of a record) having no marks of discredit or offense; "a clean voting record"; "a clean driver's license" -01750073 00 s 01 clear 0 002 & 01749320 a 0000 + 04701460 n 0101 | free from flaw or blemish or impurity; "a clear perfect diamond"; "the clear complexion of a healthy young woman" -01750256 00 s 01 cold 0 001 & 01749320 a 0000 | marked by errorless familiarity; "had her lines cold before rehearsals started" -01750386 00 s 02 complete 0 consummate 0 002 & 01749320 a 0000 + 14460974 n 0101 | perfect and complete in every respect; having all necessary qualities; "a complete gentleman"; "consummate happiness"; "a consummate performance" -01750617 00 s 03 down 0 down_pat(p) 0 mastered 0 001 & 01749320 a 0000 | understood perfectly; "had his algebra problems down" -01750746 00 s 01 errorless 0 001 & 01749320 a 0000 | free from error; "an errorless baseball game" -01750847 00 s 03 faultless 0 immaculate 0 impeccable 0 002 & 01749320 a 0000 + 04899573 n 0302 | without fault or error; "faultless logic"; "speaks impeccable French"; "timing and technique were immaculate"; "an immaculate record" -01751080 00 s 02 flawless 0 unflawed 0 002 & 01749320 a 0000 + 14459422 n 0102 | without a flaw; "a flawless gemstone" -01751201 00 s 01 ideal 0 002 & 01749320 a 0000 + 04855524 n 0101 | conforming to an ultimate standard of perfection or excellence; embodying an ideal -01751353 00 s 02 idealized 0 idealised 0 001 & 01749320 a 0000 | exalted to an ideal perfection or excellence -01751465 00 s 01 idyllic 0 002 & 01749320 a 0000 + 07307297 n 0101 | excellent and delightful in all respects; "an idyllic spot for a picnic" -01751609 00 s 01 mint(a) 0 001 & 01749320 a 0000 | as if new; "in mint condition" -01751693 00 s 01 perfectible 0 003 & 01749320 a 0000 + 00473572 v 0101 + 05623444 n 0101 | capable of becoming or being made perfect -01751828 00 s 01 pluperfect 0 001 & 01749320 a 0000 | more than perfect; "he spoke with pluperfect precision" -01751940 00 s 02 uncorrupted 0 undefiled 0 002 & 01749320 a 0000 ;c 06282651 n 0000 | (of language) not having its purity or excellence debased; "uncorrupted English"; "learn to speak pure English undefiled"- Van Wyck Brooks -01752167 00 a 01 imperfect 0 011 ^ 00245952 a 0000 ^ 00289082 a 0000 = 14459422 n 0000 + 14462666 n 0102 ! 01749320 a 0101 & 01752553 a 0000 & 01752692 a 0000 & 01752792 a 0000 & 01752953 a 0000 & 01753140 a 0000 & 01753249 a 0000 | not perfect; defective or inadequate; "had only an imperfect understanding of his responsibilities"; "imperfect mortals"; "drainage here is imperfect" -01752553 00 s 02 blemished 0 flawed 0 001 & 01752167 a 0000 | having a blemish or flaw; "a flawed diamond"; "an irregular pair of jeans" -01752692 00 s 01 broken 0 001 & 01752167 a 0000 | imperfectly spoken or written; "broken English" -01752792 00 s 02 corrupt 0 corrupted 0 001 & 01752167 a 0000 | containing errors or alterations; "a corrupt text"; "spoke a corrupted version of the language" -01752953 00 s 02 defective 0 faulty 0 004 & 01752167 a 0000 + 14464203 n 0202 + 14472299 n 0202 + 14472299 n 0101 | having a defect; "I returned the appliance because it was defective" -01753140 00 s 01 imperfectible 0 002 & 01752167 a 0000 + 05648011 n 0101 | capable of being made imperfect -01753249 00 s 01 irregular 0 001 & 01752167 a 0000 | falling below the manufacturer's standard; "irregular jeans" -01753365 00 a 01 perishable 0 006 ^ 00737973 a 0000 + 04793731 n 0102 + 04793731 n 0101 ! 01753922 a 0101 & 01753652 a 0000 & 01753785 a 0000 | liable to perish; subject to destruction or death or decay; "this minute and perishable planet"; "perishable foods such as butter and fruit" -01753652 00 s 01 biodegradable 0 001 & 01753365 a 0000 | capable of being decomposed by e.g. bacteria; "a biodegradable detergent" -01753785 00 s 04 decayable 0 putrescible 0 putrefiable 0 spoilable 0 001 & 01753365 a 0000 | liable to decay or spoil or become putrid -01753922 00 a 01 imperishable 0 004 + 05054537 n 0101 ! 01753365 a 0101 & 01754049 a 0000 & 01754341 a 0000 | not perishable -01754049 00 s 04 durable 0 indestructible 0 perdurable 0 undestroyable 0 003 & 01753922 a 0000 + 05054746 n 0301 + 05053688 n 0102 | very long lasting; "less durable rocks were gradually worn away to form valleys"; "the perdurable granite of the ancient Appalachian spine of the continent" -01754341 00 s 01 imputrescible 0 001 & 01753922 a 0000 | not subject to decay -01754421 00 a 02 permanent 0 lasting 4 013 ^ 00898289 a 0000 ^ 02290998 a 0000 ^ 00346991 a 0000 = 05053215 n 0000 + 05053688 n 0201 + 05260533 n 0102 + 05053215 n 0102 + 05053215 n 0101 ! 01755627 a 0101 & 01754873 a 0000 & 01755024 a 0000 & 01755418 a 0000 & 01755508 a 0000 | continuing or enduring without marked change in status or condition or place; "permanent secretary to the president"; "permanent address"; "literature of permanent value" -01754873 00 s 03 abiding 0 enduring 0 imperishable 0 002 & 01754421 a 0000 + 05053688 n 0203 | unceasing; "an abiding belief"; "imperishable truths" -01755024 00 s 08 ageless 0 aeonian 0 eonian 0 eternal 0 everlasting 0 perpetual 0 unending 0 unceasing 0 006 & 01754421 a 0000 + 05053527 n 0601 + 05054426 n 0501 + 13956905 n 0401 + 15243590 n 0301 + 04742418 n 0101 | continuing forever or indefinitely; "the ageless themes of love and revenge"; "eternal truths"; "life everlasting"; "hell's perpetual fires"; "the unending bliss of heaven" -01755418 00 s 01 indissoluble 0 001 & 01754421 a 0000 | used of decisions and contracts -01755508 00 s 01 standing(a) 0 001 & 01754421 a 0000 | not created for a particular occasion; "a standing committee" -01755627 00 a 02 impermanent 0 temporary 0 018 ^ 02291843 a 0000 = 05053215 n 0000 + 05055141 n 0201 + 05054863 n 0102 + 05054863 n 0101 ! 01754421 a 0101 & 01756166 a 0000 & 01756292 a 0000 & 01756758 a 0000 & 01756940 a 0000 & 01757082 a 0000 & 01757211 a 0000 & 01757483 a 0000 & 01757608 a 0000 & 01757782 a 0000 & 01757914 a 0000 & 01758038 a 0000 & 01758194 a 0000 | not permanent; not lasting; "politics is an impermanent factor of life"- James Thurber; "impermanent palm cottages"; "a temperary arrangement"; "temporary housing" -01756166 00 s 01 acting(a) 0 001 & 01755627 a 0000 | serving temporarily especially as a substitute; "the acting president" -01756292 00 s 06 ephemeral 0 passing 0 short-lived 0 transient 0 transitory 0 fugacious 0 011 & 01755627 a 0000 + 05055503 n 0602 + 05055503 n 0601 + 05055278 n 0503 + 10725149 n 0401 + 07347468 n 0401 + 05055278 n 0402 + 05053042 n 0403 + 15247410 n 0101 + 05055689 n 0102 + 05055689 n 0101 | lasting a very short time; "the ephemeral joys of childhood"; "a passing fancy"; "youth's transient beauty"; "love is transitory but it is eternal"; "fugacious blossoms" -01756758 00 s 01 episodic 0 001 & 01755627 a 0000 | limited in duration to a single episode; "an account concerned primarily with episodic events such as the succession of rulers" -01756940 00 s 01 evanescent 0 003 & 01755627 a 0000 + 07335917 n 0101 + 00421691 v 0101 | tending to vanish like vapor; "evanescent beauty" -01757082 00 s 01 fly-by-night 0 002 & 01755627 a 0000 + 10098388 n 0101 | ephemeral; "the symphony is no fly-by-night venture" -01757211 00 s 03 improvised 0 jury-rigged 0 makeshift 0 002 & 01755627 a 0000 + 00178551 n 0301 | done or made using whatever is available; "crossed the river on improvised bridges"; "the survivors used jury-rigged fishing gear"; "the rock served as a makeshift hammer" -01757483 00 s 01 interim 0 001 & 01755627 a 0000 | serving during an intermediate interval of time; "an interim agreement" -01757608 00 s 02 pro_tem 0 pro_tempore 0 001 & 01755627 a 0000 | for the time being; "he is the president pro tem"; "designated him to act as consul protempore"- H.H.Fiske -01757782 00 s 01 shipboard 0 001 & 01755627 a 0000 | casual or ephemeral as if taking place on board a ship; "shipboard romances" -01757914 00 s 01 temporal 0 001 & 01755627 a 0000 | not eternal; "temporal matters of but fleeting moment"- F.D.Roosevelt -01758038 00 s 01 terminable 0 001 & 01755627 a 0000 | capable of being terminated after a designated time; "terminable employees"; "a terminable annuity" -01758194 00 s 01 working(a) 0 001 & 01755627 a 0000 | adopted as a temporary basis for further work; "a working draft"; "a working hypothesis" -01758339 00 a 02 persistent 0 lasting 6 005 ;c 06037666 n 0000 + 05053688 n 0201 + 02731024 v 0101 + 02647497 v 0102 ! 01758582 a 0101 | retained; not shed; "persistent leaves remain attached past maturity"; "the persistent gills of fishes" -01758582 00 a 02 caducous 0 shed 0 003 ;c 06037666 n 0000 ! 01758339 a 0101 & 01758790 a 0000 | shed at an early stage of development; "most amphibians have caducous gills"; "the caducous calyx of a poppy" -01758790 00 s 01 deciduous 1 001 & 01758582 a 0000 | (of teeth, antlers, etc.) being shed at the end of a period of growth; "deciduous teeth" -01758934 00 a 01 reversible 0 003 ! 01759362 a 0101 & 01759092 a 0000 & 01759251 a 0000 | capable of reversing or being reversed; "reversible hypertension" -01759092 00 s 01 correctable 0 001 & 01758934 a 0000 | capable of being returned to the original condition; not necessarily permanent; "a correctable image" -01759251 00 s 01 rechargeable 0 001 & 01758934 a 0000 | capable of being recharged; "a rechargeable battery" -01759362 00 a 01 irreversible 0 003 + 04739768 n 0101 ! 01758934 a 0101 & 01759527 a 0000 | incapable of being reversed; "irreversible momentum toward revolution" -01759527 00 s 01 permanent 0 001 & 01759362 a 0000 | not capable of being reversed or returned to the original condition; "permanent brain damage" -01759676 00 a 02 reversible 2 two-sided 2 004 + 04085574 n 0101 + 00386715 v 0103 ! 01760009 a 0101 & 01759876 a 0000 | capable of being reversed or used with either side out; "a reversible jacket" -01759876 00 s 01 double-faced 0 001 & 01759676 a 0000 | (of fabrics) having faces on both sides; "damask is a double-faced fabric" -01760009 00 a 02 nonreversible 0 one-sided 2 001 ! 01759676 a 0101 | not reversible or capable of having either side out -01760132 00 a 02 revocable 0 revokable 0 003 ! 01760670 a 0101 & 01760293 a 0000 & 01760488 a 0000 | capable of being revoked or annulled; "a revocable order" -01760293 00 s 02 rescindable 0 voidable 0 003 & 01760132 a 0000 + 02478059 v 0204 + 00448440 v 0202 | capable of being rescinded or voided; "the judgment was rescindable"; "voidable contracts" -01760488 00 s 01 reversible 0 003 & 01760132 a 0000 + 00799798 v 0105 + 00138508 v 0103 | capable of being reversed; "a reversible decision is one that can be appealed or vacated" -01760670 00 a 02 irrevocable 0 irrevokable 0 002 ! 01760132 a 0101 & 01760847 a 0000 | incapable of being retracted or revoked; "firm and irrevocable is my doom"- Shakespeare -01760847 00 s 01 sealed 0 001 & 01760670 a 0000 | determined irrevocably; "his fate is sealed" -01760944 00 a 02 permissible 0 allowable 0 004 ^ 02435026 a 0000 + 00802318 v 0101 + 04793209 n 0101 ! 01761186 a 0101 | that may be permitted especially as according to rule; "permissible behavior in school"; "a permissible tax deduction" -01761186 00 a 01 impermissible 0 006 ^ 02435671 a 0000 + 04794408 n 0101 ! 01760944 a 0101 & 01761375 a 0000 & 01761609 a 0000 & 01761742 a 0000 | not permitted; "impermissible behavior" -01761375 00 s 07 forbidden 0 out(p) 0 prohibited 0 proscribed 0 taboo 0 tabu 0 verboten 0 001 & 01761186 a 0000 | excluded from use or mention; "forbidden fruit"; "in our house dancing and playing cards were out"; "a taboo subject" -01761609 00 s 01 unmentionable 0 001 & 01761186 a 0000 | unsuitable or forbidden as a topic of conversation; "unmentionable words" -01761742 00 s 01 untouchable 0 001 & 01761186 a 0000 | forbidden to the touch; "in most museums such articles are untouchable" -01761871 00 a 01 admissible 0 006 = 04793016 n 0000 + 04793016 n 0101 ! 01762582 a 0101 & 01762065 a 0000 & 01762257 a 0000 & 01762404 a 0000 | deserving to be admitted; "admissible evidence" -01762065 00 s 02 admittable 0 admittible 0 006 & 01761871 a 0000 + 02732798 v 0203 + 02671279 v 0201 + 02502536 v 0201 + 02671279 v 0101 + 02502536 v 0101 | deserving to be allowed to enter -01762257 00 s 01 allowable 0 004 & 01761871 a 0000 + 02745486 v 0102 + 00802318 v 0102 + 00723545 v 0101 | deserving to be allowed or considered -01762404 00 s 01 permissible 0 001 & 01761871 a 0000 | that may be accepted or conceded; "a kind of speculation that was permissible in cosmology but inadmissible in medicine" -01762582 00 a 01 inadmissible 0 004 = 04793016 n 0000 + 04794236 n 0101 ! 01761871 a 0101 & 01762748 a 0000 | not deserving to be admitted; "inadmissible evidence" -01762748 00 s 01 impermissible 0 002 & 01762582 a 0000 + 04794408 n 0101 | not allowable -01762839 00 a 01 permissive 1 006 = 04637923 n 0000 + 04637923 n 0101 + 00802946 v 0102 + 00802318 v 0101 ! 01763445 a 0101 & 01763159 a 0000 | granting or inclined or able to grant permission; not strict in discipline; "direct primary legislation is largely permissive rather than prescriptive"; "permissive parents" -01763159 00 s 03 indulgent 0 lenient 0 soft 0 006 & 01762839 a 0000 + 04638857 n 0301 + 04638585 n 0203 + 04829922 n 0201 + 01071213 n 0201 + 04638585 n 0101 | tolerant or lenient; "indulgent parents risk spoiling their children"; "too soft on the children"; "they are soft on crime" -01763445 00 a 01 unpermissive 0 003 = 04637923 n 0000 + 04639113 n 0101 ! 01762839 a 0101 | not inclined to grant permission; severe in discipline -01763594 00 a 01 permissive 2 002 ! 01763813 a 0101 & 01763683 a 0000 | not preventive -01763683 00 s 01 bailable 0 003 & 01763594 a 0000 + 02421749 v 0101 + 00890403 v 0101 | admitting of bail; "a bailable offense" -01763813 00 a 02 preventive 0 preventative 0 016 ^ 01887076 a 0000 + 02452885 v 0201 + 02450505 v 0201 + 03520811 n 0104 + 03096593 n 0102 + 02452885 v 0101 + 02450505 v 0101 ! 01763594 a 0101 & 01764183 a 0000 & 01764351 a 0000 & 01764543 a 0000 & 01764745 a 0000 & 01764895 a 0000 & 01765132 a 0000 & 01765237 a 0000 & 01765498 a 0000 | tending to prevent or hinder -01764183 00 s 01 blockading 0 001 & 01763813 a 0000 | blocking entrance to and exit from seaports and harbors; "the blockading ships prevented delivery of munitions" -01764351 00 s 04 clogging 0 hindering 0 impeding 0 obstructive 0 002 & 01763813 a 0000 + 01476483 v 0401 | preventing movement; "the clogging crowds of revelers overflowing into the street" -01764543 00 s 01 deterrent 0 006 & 01763813 a 0000 + 05689249 n 0103 + 09180118 n 0102 + 01076488 n 0101 + 00908099 v 0101 + 00770141 v 0102 | tending to deter; "the deterrent effects of high prices" -01764745 00 s 03 frustrating 0 frustrative 0 thwarting 0 002 & 01763813 a 0000 + 02558172 v 0207 | preventing realization or attainment of a desire -01764895 00 s 02 precautionary 0 precautional 0 002 & 01763813 a 0000 + 00822970 n 0101 | taken in advance to protect against possible danger or failure; "gave precautionary advice"; "I would take precautionary steps to keep him away" -01765132 00 s 02 preclusive 0 obviating(a) 0 002 & 01763813 a 0000 + 02629390 v 0101 | made impossible -01765237 00 s 02 preemptive 0 pre-emptive 0 005 & 01763813 a 0000 + 02301321 v 0201 + 02302454 v 0201 + 02301321 v 0101 + 02302454 v 0101 | designed or having the power to deter or prevent an anticipated situation or occurrence; "a preemptive business offer" -01765498 00 s 02 prohibitive 0 prohibitory 0 001 & 01763813 a 0000 | tending to discourage (especially of prices); "the price was prohibitive" -01765643 00 a 01 perplexed 0 008 ^ 00435492 a 0000 + 05685363 n 0101 ! 01767076 a 0101 & 01765926 a 0000 & 01766133 a 0000 & 01766550 a 0000 & 01766784 a 0000 & 01766958 a 0000 | full of difficulty or confusion or bewilderment; "perplexed language"; "perplexed state of the world" -01765926 00 s 04 at_a_loss(p) 0 nonplused 0 nonplussed 0 puzzled 0 001 & 01765643 a 0000 | filled with bewilderment; "at a loss to understand those remarks"; "puzzled that she left without saying goodbye" -01766133 00 s 0a baffled 0 befuddled 0 bemused 0 bewildered 0 confounded 0 confused 0 lost 0 mazed 0 mixed-up 0 at_sea 0 002 & 01765643 a 0000 + 05683582 n 0603 | perplexed by many conflicting situations or statements; filled with bewilderment; "obviously bemused by his questions"; "bewildered and confused"; "a cloudy and confounded philosopher"; "just a mixed-up kid"; "she felt lost on the first day of school" -01766550 00 s 05 metagrobolized 0 metagrobolised 0 metagrabolized 0 metagrabolised 0 mystified 0 001 & 01765643 a 0000 | totally perplexed and mixed up; "all this duncical nonsense has my brains metagrobolized"- Wall Street Journal -01766784 00 s 02 questioning 0 quizzical 0 001 & 01765643 a 0000 | perplexed (as if being expected to know something that you do not know); "he had a quizzical expression" -01766958 00 s 01 stuck 0 002 & 01765643 a 0000 ;u 07075172 n 0000 | baffled; "this problem has me completely stuck" -01767076 00 a 01 unperplexed 0 002 ! 01765643 a 0101 & 01767207 a 0000 | experiencing no difficulty or confusion or bewilderment -01767207 00 s 02 unbaffled 0 unconfused 0 001 & 01767076 a 0000 | not perplexed by conflicting situations or statements -01767329 00 a 01 personal 0 011 ^ 01858094 a 0000 ! 01769565 a 0101 & 01767826 a 0000 & 01767975 a 0000 & 01768086 a 0000 & 01768252 a 0000 & 01768466 a 0000 & 01768724 a 0000 & 01768969 a 0000 & 01769179 a 0000 & 01769378 a 0000 | concerning or affecting a particular person or his or her private life and personality; "a personal favor"; "for your personal use"; "personal papers"; "I have something personal to tell you"; "a personal God"; "he has his personal bank account and she has hers" -01767826 00 s 01 ad_hominem 0 001 & 01767329 a 0000 | appealing to personal considerations (rather than to fact or reason); "ad hominem arguments" -01767975 00 s 01 face-to-face 0 001 & 01767329 a 0000 | in each other's presence; "a face-to-face encounter" -01768086 00 s 02 individual(a) 0 private 0 001 & 01767329 a 0000 | concerning one person exclusively; "we all have individual cars"; "each room has a private bath" -01768252 00 s 04 individualized 0 individualised 0 personalized 1 personalised 1 001 & 01767329 a 0000 | made for or directed or adjusted to a particular individual; "personalized luggage"; "personalized advice" -01768466 00 s 02 in-person 0 in_the_flesh(p) 0 001 & 01767329 a 0000 | an appearance carried out personally in someone else's physical presence; "he carried out the negotiations in person"; "a personal appearance is an appearance by a person in the flesh" -01768724 00 s 02 own(a) 0 ain 0 001 & 01767329 a 0000 | belonging to or on behalf of a specified person (especially yourself); preceded by a possessive; "for your own use"; "do your own thing"; "she makes her own clothes"; "`ain' is Scottish" -01768969 00 s 01 personalized 2 001 & 01767329 a 0000 | pointedly referring to or concerning a person's individual personality or intimate affairs especially offensively; "unnecessarily personalized remarks" -01769179 00 s 01 person-to-person 0 001 & 01767329 a 0000 | involving direct communication or contact between persons or parties; "a person-to-person interview"; "person-to-person telephone calls" -01769378 00 s 01 private 2 003 & 01767329 a 0000 + 14416089 n 0102 + 04622932 n 0102 | concerning things deeply private and personal; "private correspondence"; "private family matters" -01769565 00 a 01 impersonal 0 002 ! 01767329 a 0101 & 01769744 a 0000 | not relating to or responsive to individual persons; "an impersonal corporation"; "an impersonal remark" -01769744 00 s 01 nonpersonal 0 001 & 01769565 a 0000 | lacking personality; "nonpersonal forces" -01769843 00 a 01 persuasive 0 009 ^ 00614990 a 0000 + 05191832 n 0101 + 00766418 v 0101 + 02586121 v 0102 ! 01770903 a 0101 & 01770177 a 0000 & 01770392 a 0000 & 01770591 a 0000 & 01770726 a 0000 | intended or having the power to induce action or belief; "persuasive eloquence"; "a most persuasive speaker"; "a persuasive argument" -01770177 00 s 02 coaxing 0 ingratiatory 0 001 & 01769843 a 0000 | pleasingly persuasive or intended to persuade; "a coaxing and obsequious voice"; "her manner is quiet and ingratiatory and a little too agreeable" -01770392 00 s 03 cogent 0 telling 0 weighty 0 003 & 01769843 a 0000 + 05172322 n 0302 + 13794793 n 0101 | powerfully persuasive; "a cogent argument"; "a telling presentation"; "a weighty argument" -01770591 00 s 01 compelling 0 001 & 01769843 a 0000 | tending to persuade by forcefulness of argument; "new and compelling evidence" -01770726 00 s 03 glib 0 glib-tongued 0 smooth-tongued 0 002 & 01769843 a 0000 + 05095324 n 0101 | artfully persuasive in speech; "a glib tongue"; "a smooth-tongued hypocrite" -01770903 00 a 01 dissuasive 0 005 ^ 00867213 a 0000 + 00770141 v 0101 ! 01769843 a 0101 & 01771124 a 0000 & 01771381 a 0000 | deterring from action; "dissuasive advice"; "made a slight dissuasive gesture with her hand" -01771124 00 s 05 admonitory 0 cautionary 0 exemplary 0 monitory 0 warning(a) 0 005 & 01770903 a 0000 + 06672752 n 0301 + 07225167 n 0201 + 00870577 v 0103 + 00871195 v 0102 | serving to warn; "shook a monitory finger at him"; "an exemplary jail sentence" -01771381 00 s 01 discouraging 0 001 & 01770903 a 0000 | expressing disapproval -01771462 00 a 01 penetrable 0 002 + 04940730 n 0101 ! 01771632 a 0101 | admitting of penetration or passage into or through; "a penetrable wall"; "penetrable defenses" -01771632 00 a 01 impenetrable 0 003 + 04942516 n 0101 ! 01771462 a 0101 & 01771839 a 0000 | not admitting of penetration or passage into or through; "an impenetrable fortress"; "impenetrable rain forests" -01771839 00 s 02 dense 0 thick 0 004 & 01771632 a 0000 + 05103072 n 0201 + 05088804 n 0103 + 05088804 n 0102 | hard to pass through because of dense growth; "dense vegetation"; "thick woods" -01772032 00 a 01 permeable 0 007 ^ 01397385 a 0000 ^ 01773234 a 0000 + 04940496 n 0101 + 04940496 n 0102 ! 01772609 a 0101 & 01772305 a 0000 & 01772512 a 0000 | allowing fluids or gases to pass or diffuse through; "permeable membranes"; "rock that is permeable by water" -01772305 00 s 01 porous 0 003 & 01772032 a 0000 + 04940146 n 0101 + 04940146 n 0102 | able to absorb fluids; "the partly porous walls of our digestive system"; "compacting the soil to make it less porous" -01772512 00 s 01 semipermeable 0 001 & 01772032 a 0000 | (of a membrane) selectively permeable -01772609 00 a 01 impermeable 0 007 ^ 01773665 a 0000 ^ 01398199 a 0000 + 04941942 n 0102 + 04941942 n 0101 ! 01772032 a 0101 & 01772914 a 0000 & 01773094 a 0000 | preventing especially liquids to pass or diffuse through; "impermeable stone"; "an impermeable layer of scum"; "a coat impermeable to rain" -01772914 00 s 01 retentive 0 003 & 01772609 a 0000 + 04942172 n 0101 + 04942172 n 0102 | having the power, capacity, or quality of retaining water; "soils retentive of moisture" -01773094 00 s 02 water-repellent 0 water-resistant 0 001 & 01772609 a 0000 | hindering the penetration of water; "a water-repellent coat" -01773234 00 a 01 pervious 0 004 ^ 01772032 a 0000 + 04940730 n 0102 ! 01773665 a 0101 & 01773420 a 0000 | admitting of passage or entrance; "pervious soil"; "a metal pervious to heat" -01773420 00 s 01 receptive 0 007 & 01773234 a 0000 + 04645020 n 0101 + 04645020 n 0102 + 02739480 v 0103 + 01470225 v 0101 + 00617095 v 0101 + 00686879 v 0101 | open to arguments, ideas, or change; "receptive to reason and the logic of facts" -01773665 00 a 02 impervious 0 imperviable 0 014 ^ 01772609 a 0000 + 04942516 n 0102 ! 01773234 a 0101 & 01774091 a 0000 & 01774191 a 0000 & 01774376 a 0000 & 01774483 a 0000 & 01774619 a 0000 & 01774720 a 0000 & 01774869 a 0000 & 01775034 a 0000 & 01775200 a 0000 & 01775280 a 0000 & 01775420 a 0000 | not admitting of passage or capable of being affected; "a material impervious to water"; "someone impervious to argument" -01774091 00 s 01 fast 0 001 & 01773665 a 0000 | resistant to destruction or fading; "fast colors" -01774191 00 s 01 acid-fast 0 001 & 01773665 a 0000 | not easily decolorized by acid solutions; pertains to micro-organisms (especially the tubercle bacillus that causes tuberculosis) -01774376 00 s 01 colorfast 0 001 & 01773665 a 0000 | having color that is resistant to fading or running -01774483 00 s 01 greaseproof 0 001 & 01773665 a 0000 | resistant to penetration by grease or oil or wax; "greaseproof wrapping paper" -01774619 00 s 02 mothproof 0 moth-resistant 0 001 & 01773665 a 0000 | resistant to damage by moths -01774720 00 s 01 proof(p) 0 001 & 01773665 a 0000 | (used in combination or as a suffix) able to withstand; "temptation-proof"; "childproof locks" -01774869 00 s 01 resistant 0 002 & 01773665 a 0000 + 04646372 n 0101 | impervious to being affected; "resistant to the effects of heat"; "resistant to persuasion" -01775034 00 s 01 corrosion-resistant 0 001 & 01773665 a 0000 | impervious to corrosion; "he was a great believer in the corrosion-resistant qualities of cast iron" -01775200 00 s 01 rot-resistant 0 001 & 01773665 a 0000 | resistant to rotting -01775280 00 s 03 runproof 0 ladder-proof 0 run-resistant 0 001 & 01773665 a 0000 | (of hosiery) resistant to runs or (in Britain) ladders -01775420 00 s 01 soundproof 0 001 & 01773665 a 0000 | impervious to, or not penetrable by, sound; "a soundproof room" -01775540 00 a 03 petalous 0 petaled 0 petalled 0 008 + 11690455 n 0101 ! 01776532 a 0101 & 01775768 a 0000 & 01775874 a 0000 & 01775980 a 0000 & 01776161 a 0000 & 01776282 a 0000 & 01776423 a 0000 | (of flowers) having petals -01775768 00 s 02 four-petaled 0 four-petalled 0 001 & 01775540 a 0000 | (of flowers) having four petals -01775874 00 s 02 five-petaled 0 five-petalled 0 001 & 01775540 a 0000 | (of flowers) having five petals -01775980 00 s 02 gamopetalous 0 sympetalous 0 001 & 01775540 a 0000 | having a corolla composed of partially or wholly fused petals forming a corolla shaped like a tube or funnel -01776161 00 s 01 polypetalous 0 001 & 01775540 a 0000 | having a corolla composed of many separated or distinct petals -01776282 00 s 01 salverform 0 001 & 01775540 a 0000 | of or concerning a gamopetalous that has a slender tube and an abruptly expanded tip -01776423 00 s 02 three-petaled 0 three-petalled 0 001 & 01775540 a 0000 | (of flowers) having three petals -01776532 00 a 02 apetalous 0 petalless 0 001 ! 01775540 a 0101 | (of flowers) having no petals -01776629 00 a 01 puncturable 0 001 ! 01776713 a 0101 | capable of being punctured -01776713 00 a 01 punctureless 0 002 ! 01776629 a 0101 & 01776845 a 0000 | being without punctures or incapable of being punctured -01776845 00 s 01 self-sealing 0 001 & 01776713 a 0000 | capable of sealing itself as after being pierced; "self-sealing tires" -01776974 00 a 02 psychoactive 0 psychotropic 0 006 ! 01778073 a 0101 & 01777212 a 0000 & 01777367 a 0000 & 01777526 a 0000 & 01777662 a 0000 & 01777822 a 0000 | affecting the mind or mood or other mental processes; "psychoactive drugs" -01777212 00 s 01 hallucinogenic 0 002 & 01776974 a 0000 + 03479647 n 0101 | capable of producing hallucinations; "LSD is a powerful hallucinogenic drug" -01777367 00 s 01 mind-altering 0 001 & 01776974 a 0000 | producing mood changes or distorted perception; "hallucinogenic drugs are mind-altering substances" -01777526 00 s 01 mind-expanding 0 001 & 01776974 a 0000 | (of hallucinogenic drugs) giving a sense of heightened or broader awareness -01777662 00 s 02 mind-bending 0 mind-blowing 0 002 & 01776974 a 0000 ;u 07075172 n 0000 | intensely affecting the mind especially in producing hallucinations -01777822 00 s 01 psychedelic 0 002 & 01776974 a 0000 + 08292298 n 0101 | producing distorted sensory perceptions and feelings or altered states of awareness or sometimes states resembling psychosis; "psychedelic drugs like psilocybin and mescaline" -01778073 00 a 01 nonpsychoactive 0 001 ! 01776974 a 0101 | not affecting the mind or mental processes; "a nonpsychoactive pain reliever" -01778212 00 a 01 physical 0 009 + 04624517 n 0102 + 04760771 n 0102 ! 01779986 a 0101 & 01778572 a 0000 & 01778935 a 0000 & 01779193 a 0000 & 01779428 a 0000 & 01779558 a 0000 & 01779792 a 0000 | involving the body as distinguished from the mind or spirit; "physical exercise"; "physical suffering"; "was sloppy about everything but her physical appearance" -01778572 00 s 04 animal(a) 0 carnal 0 fleshly 0 sensual 0 006 & 01778212 a 0000 + 07488875 n 0402 + 07488875 n 0401 + 00133978 v 0203 + 07490214 n 0204 + 04623443 n 0101 | marked by the appetites and passions of the body; "animal instincts"; "carnal knowledge"; "fleshly desire"; "a sensual delight in eating"; "music is the only sensual pleasure without vice" -01778935 00 s 04 bodily 0 corporal 0 corporeal 0 somatic 0 001 & 01778212 a 0000 | affecting or characteristic of the body as opposed to the mind or spirit; "bodily needs"; "a corporal defect"; "corporeal suffering"; "a somatic symptom or somatic illness" -01779193 00 s 01 material 0 001 & 01778212 a 0000 | concerned with or affecting physical as distinct from intellectual or psychological well-being; "material needs"; "the moral and material welfare of all good citizens"- T.Roosevelt -01779428 00 s 01 personal 0 001 & 01778212 a 0000 | intimately concerning a person's body or physical being; "personal hygiene" -01779558 00 s 02 physiologic 0 physiological 0 004 & 01778212 a 0000 + 05005064 n 0201 + 06080522 n 0101 + 05005064 n 0101 | of or consistent with an organism's normal functioning; "physiologic functions"; "physiological processes" -01779792 00 s 02 somatogenic 0 somatogenetic 0 001 & 01778212 a 0000 | of or arising from physiological causes rather than being psychogenic in origin; "somatogenic theories of schizophrenia" -01779986 00 a 01 mental 0 008 + 06195839 n 0101 + 05618056 n 0105 ! 01778212 a 0101 & 01780343 a 0000 & 01780596 a 0000 & 01780740 a 0000 & 01780937 a 0000 & 01781076 a 0000 | involving the mind or an intellectual process; "mental images of happy times"; "mental calculations"; "in a terrible mental state"; "mental suffering"; "free from mental defects" -01780343 00 s 03 intellectual 0 rational 0 noetic 0 003 & 01779986 a 0000 + 00023271 n 0303 + 04784978 n 0201 | of or associated with or requiring the use of the mind; "intellectual problems"; "the triumph of the rational over the animal side of man" -01780596 00 s 01 moral 0 001 & 01779986 a 0000 | psychological rather than physical or tangible in effect; "a moral victory"; "moral support" -01780740 00 s 02 psychic 0 psychical 0 004 & 01779986 a 0000 + 10627082 n 0202 + 05611302 n 0204 + 05611302 n 0104 | affecting or influenced by the human mind; "psychic energy"; "psychic trauma" -01780937 00 s 01 psychogenic 0 001 & 01779986 a 0000 | mental or emotional rather than physiological in origin; "a psychogenic disorder" -01781076 00 s 01 psychological 0 001 & 01779986 a 0000 | mental or emotional as opposed to physical in nature; "give psychological support"; "psychological warfare" -01781243 00 a 01 monotheistic 0 002 + 06224136 n 0101 ! 01781356 a 0101 | believing that there is only one god -01781356 00 a 01 polytheistic 0 002 + 06224305 n 0101 ! 01781243 a 0101 | worshipping or believing in more than one god -01781478 00 a 01 pious 0 011 ^ 01783158 a 0000 ^ 02055062 a 0000 ^ 02578235 a 0000 ^ 02513269 a 0000 = 04826771 n 0000 + 04826771 n 0102 ! 01782519 a 0101 & 01781781 a 0000 & 01781882 a 0000 & 01782100 a 0000 & 01782426 a 0000 | having or showing or expressing reverence for a deity; "pious readings" -01781781 00 s 01 devotional 0 001 & 01781478 a 0000 | relating to worship; "a devotional exercise" -01781882 00 s 03 godly 0 reverent 0 worshipful 0 005 & 01781478 a 0000 + 07521039 n 0202 + 01778017 v 0205 + 01778568 v 0203 + 04827503 n 0101 | showing great reverence for god; "a godly man"; "leading a godly life" -01782100 00 s 07 holier-than-thou 0 pietistic 0 pietistical 0 pharisaic 0 pharisaical 0 sanctimonious 0 self-righteous 0 007 & 01781478 a 0000 + 04868350 n 0602 + 04868350 n 0601 + 10421339 n 0501 + 10421339 n 0401 + 04827175 n 0304 + 04827175 n 0204 | excessively or hypocritically pious; "a sickening sanctimonious smile" -01782426 00 s 01 prayerful 0 001 & 01781478 a 0000 | disposed to pray or appearing to pray -01782519 00 a 01 impious 0 007 ^ 01784017 a 0000 ^ 02056880 a 0000 ^ 02513740 a 0000 = 04826771 n 0000 + 04828255 n 0102 ! 01781478 a 0101 & 01782717 a 0000 | lacking piety or reverence for a god -01782717 00 s 02 godless 0 irreverent 0 004 & 01782519 a 0000 + 06207733 n 0201 + 06223468 n 0102 + 04828754 n 0102 | not revering god -01782854 00 a 01 secular 0 001 ! 01782981 a 0101 | of or relating to clergy not bound by monastic vows; "the secular clergy" -01782981 00 a 01 religious 1 002 + 10518602 n 0101 ! 01782854 a 0101 | of or relating to clergy bound by monastic vows; "the religious or regular clergy conducts the service" -01783158 00 a 01 religious 0 008 ^ 01781478 a 0000 + 04826999 n 0102 + 05946687 n 0101 ! 01784017 a 0101 & 01783434 a 0000 & 01783522 a 0000 & 01783710 a 0000 & 01783863 a 0000 | having or showing belief in and reverence for a deity; "a religious man"; "religious attitude" -01783434 00 s 01 churchgoing 0 001 & 01783158 a 0000 | actively practicing a religion -01783522 00 s 01 churchly 0 002 & 01783158 a 0000 + 03028079 n 0101 | resembling or suggesting or appropriate to a church; "churchlike silence"; "the pure fragrance of churchly incense" -01783710 00 s 02 devout 0 god-fearing 0 002 & 01783158 a 0000 + 04826999 n 0101 | deeply religious; "a god-fearing and law-abiding people" H.L.Mencken -01783863 00 s 01 interfaith 0 001 & 01783158 a 0000 | involving persons of different religious faiths; "an interfaith marriage"; "interfaith good will" -01784017 00 a 01 irreligious 0 007 ^ 01782519 a 0000 + 04828612 n 0101 ! 01783158 a 0101 & 01784217 a 0000 & 01784401 a 0000 & 01784602 a 0000 & 01784723 a 0000 | hostile or indifferent to religion -01784217 00 s 03 atheistic 0 atheistical 0 unbelieving 0 005 & 01784017 a 0000 + 09820044 n 0201 + 09820044 n 0101 + 05980256 n 0101 + 06223468 n 0101 | rejecting any belief in gods -01784401 00 s 04 heathen 0 heathenish 0 pagan 0 ethnic 0 004 & 01784017 a 0000 + 10390902 n 0301 + 10166394 n 0302 + 10166394 n 0101 | not acknowledging the God of Christianity and Judaism and Islam -01784602 00 s 02 lapsed 0 nonchurchgoing 0 001 & 01784017 a 0000 | no longer active or practicing; "a lapsed Catholic" -01784723 00 s 01 nonobservant 0 001 & 01784017 a 0000 | failing or refusing to observe religious customs -01784830 00 a 01 placable 0 003 ! 01785180 a 0101 & 01784946 a 0000 & 01785079 a 0000 | easily calmed or pacified -01784946 00 s 02 appeasable 0 conciliable 0 003 & 01784830 a 0000 + 01765392 v 0105 + 00765213 v 0102 | capable of being pacified -01785079 00 s 01 mitigable 0 002 & 01784830 a 0000 + 00198850 v 0101 | capable of being alleviated -01785180 00 a 01 implacable 0 004 ^ 01507402 a 0000 ! 01784830 a 0101 & 01785341 a 0000 & 01785783 a 0000 | incapable of being placated; "an implacable enemy" -01785341 00 s 07 grim 0 inexorable 0 relentless 0 stern 0 unappeasable 0 unforgiving 0 unrelenting 0 006 & 01785180 a 0000 + 04639371 n 0401 + 04831437 n 0301 + 04831437 n 0203 + 04831437 n 0202 + 04710127 n 0102 | not to be placated or appeased or moved by entreaty; "grim determination"; "grim necessity"; "Russia's final hour, it seemed, approached with inexorable certainty"; "relentless persecution"; "the stern demands of parenthood" -01785783 00 s 01 unmitigable 0 001 & 01785180 a 0000 | incapable of being mitigated; "stern and unmitigable accusations" -01785906 00 a 02 plain 2 unpatterned 4 002 ! 01786133 a 0101 & 01786026 a 0000 | lacking patterns especially in color -01786026 00 s 02 solid-colored 0 solid-coloured 0 001 & 01785906 a 0000 | having the same color all over -01786133 00 a 01 patterned 0 044 ! 01785906 a 0101 & 01787009 a 0000 & 01787138 a 0000 & 01787231 a 0000 & 01787331 a 0000 & 01787408 a 0000 & 01787548 a 0000 & 01787740 a 0000 & 01787842 a 0000 & 01787941 a 0000 & 01788048 a 0000 & 01788169 a 0000 & 01788273 a 0000 & 01788369 a 0000 & 01788445 a 0000 & 01788564 a 0000 & 01788705 a 0000 & 01788843 a 0000 & 01788994 a 0000 & 01789117 a 0000 & 01789279 a 0000 & 01789359 a 0000 & 01789481 a 0000 & 01789734 a 0000 & 01789873 a 0000 & 01789954 a 0000 & 01790070 a 0000 & 01790150 a 0000 & 01790259 a 0000 & 01790348 a 0000 & 01790507 a 0000 & 01790613 a 0000 & 01790807 a 0000 & 01790938 a 0000 & 01791036 a 0000 & 01791138 a 0000 & 01791257 a 0000 & 01791349 a 0000 & 01791434 a 0000 & 01791510 a 0000 & 01791591 a 0000 & 01791670 a 0000 & 01791749 a 0000 & 01791829 a 0000 | having patterns (especially colorful patterns) -01787009 00 s 01 banded 0 001 & 01786133 a 0000 | marked with bands or strips of contrasting color or texture; "a banded rock" -01787138 00 s 01 black-and-tan 0 001 & 01786133 a 0000 | having a pattern of black and tan -01787231 00 s 01 black-barred 0 001 & 01786133 a 0000 | having a pattern consisting of black bars -01787331 00 s 01 black-marked 0 001 & 01786133 a 0000 | having black marks -01787408 00 s 03 blotched 0 blotchy 0 splotched 0 002 & 01786133 a 0000 + 04694809 n 0201 | marked with irregularly shaped spots or blots -01787548 00 s 04 brindled 0 brindle 0 brinded 0 tabby 0 001 & 01786133 a 0000 | having a grey or brown streak or a pattern or a patchy coloring; used especially of the patterned fur of cats -01787740 00 s 02 brown-speckled 0 brownish-speckled 0 001 & 01786133 a 0000 | having brown speckles -01787842 00 s 02 brown-striped 0 brownish-striped 0 001 & 01786133 a 0000 | having brown stripes -01787941 00 s 01 burled 0 001 & 01786133 a 0000 | (of wood) have a pattern from the grain of a tree burl -01788048 00 s 03 checked 0 checkered 0 chequered 0 001 & 01786133 a 0000 | patterned with alternating squares of color -01788169 00 s 01 cross-banded 0 001 & 01786133 a 0000 | (of snakes) having crossing bands on the back -01788273 00 s 02 dappled 0 mottled 0 001 & 01786133 a 0000 | having spots or patches of color -01788369 00 s 01 dark-spotted 0 001 & 01786133 a 0000 | having dark spots -01788445 00 s 05 dotted 0 flecked 0 specked 0 speckled 0 stippled 0 001 & 01786133 a 0000 | having a pattern of dots -01788564 00 s 01 figured 0 001 & 01786133 a 0000 | (of e.g. fabric design) adorned with patterns; "my dress is richly figured"- Amy Lowell -01788705 00 s 02 floral 0 flowered 0 001 & 01786133 a 0000 | resembling or made of or suggestive of flowers; "an unusual floral design" -01788843 00 s 03 freckled 0 lentiginous 0 lentiginose 0 002 & 01786133 a 0000 + 05245192 n 0202 | relating to or covered with or resembling freckles -01788994 00 s 01 laced 0 001 & 01786133 a 0000 | edged or streaked with color; "white blossoms with purple-laced petals" -01789117 00 s 03 marbled 0 marbleized 0 marbleised 0 001 & 01786133 a 0000 | patterned with veins or streaks or color resembling marble; "marbleized pink skin" -01789279 00 s 01 maroon-spotted 0 001 & 01786133 a 0000 | having maroon spots -01789359 00 s 02 moire 0 watered 0 002 & 01786133 a 0000 + 03779246 n 0101 | (of silk fabric) having a wavelike pattern -01789481 00 s 03 patched 0 spotty 0 spotted 0 001 & 01786133 a 0000 | having spots or patches (small areas of contrasting color or texture); "a field patched with ice and snow"; "the wall had a spotty speckled effect"; "a black-and-white spotted cow" -01789734 00 s 02 pointillist 0 pointillistic 0 003 & 01786133 a 0000 + 08276053 n 0201 + 10447924 n 0101 | of or relating to pointillism -01789873 00 s 01 pinstriped 0 001 & 01786133 a 0000 | having very thin stripes -01789954 00 s 01 purple-veined 0 001 & 01786133 a 0000 | (of flowers) showing purple markings that resemble veins -01790070 00 s 01 purple-spotted 0 001 & 01786133 a 0000 | having purple spots -01790150 00 s 03 red-striped 0 reddish-striped 0 red-streaked 0 001 & 01786133 a 0000 | having red stripes -01790259 00 s 01 ringed 0 001 & 01786133 a 0000 | having colored rings around the body -01790348 00 s 01 slashed 0 001 & 01786133 a 0000 | patterned by having color applied with sweeping strokes; "brown iris...slashed with yellow"- Willa Cather -01790507 00 s 01 sprigged 0 001 & 01786133 a 0000 | decorated with designs of sprigs; "sprigged muslin" -01790613 00 s 02 streaked 0 streaky 0 002 & 01786133 a 0000 + 04683136 n 0202 | marked with or as if with stripes or linear discolorations; "streaked hair"; "fat legs and dirty streaky faces" -01790807 00 s 02 striped 0 stripy 0 003 & 01786133 a 0000 + 04683136 n 0201 + 02784732 n 0203 | marked or decorated with stripes -01790938 00 s 01 tessellated 0 001 & 01786133 a 0000 | having a checkered or mottled appearance -01791036 00 s 01 tiger-striped 0 001 & 01786133 a 0000 | having stripes resembling those of a tiger -01791138 00 s 03 veined 0 venose 0 veinlike 0 001 & 01786133 a 0000 | having or showing markings that resemble veins -01791257 00 s 01 violet-streaked 0 001 & 01786133 a 0000 | having streaks of violet color -01791349 00 s 01 white-blotched 0 001 & 01786133 a 0000 | having blotches of white -01791434 00 s 01 white-ribbed 0 001 & 01786133 a 0000 | having white ribs -01791510 00 s 01 white-streaked 0 001 & 01786133 a 0000 | having white streaks -01791591 00 s 01 yellow-banded 0 001 & 01786133 a 0000 | having yellow bands -01791670 00 s 01 yellow-marked 0 001 & 01786133 a 0000 | having yellow marks -01791749 00 s 01 yellow-spotted 0 001 & 01786133 a 0000 | having yellow spots -01791829 00 s 01 yellow-striped 0 001 & 01786133 a 0000 | having yellow stripes -01791911 00 a 01 plain 1 017 ^ 02174896 a 0000 ^ 00060397 a 0000 ^ 02018486 a 0000 ^ 01851523 a 0000 ! 01794340 a 0101 & 01792387 a 0000 & 01792573 a 0000 & 01792821 a 0000 & 01792973 a 0000 & 01793106 a 0000 & 01793254 a 0000 & 01793405 a 0000 & 01793557 a 0000 & 01793674 a 0000 & 01793812 a 0000 & 01793985 a 0000 & 01794125 a 0000 | not elaborate or elaborated; simple; "plain food"; "stuck to the plain facts"; "a plain blue suit"; "a plain rectangular brick building" -01792387 00 s 04 austere 0 severe 0 stark 0 stern 0 005 & 01791911 a 0000 + 04710390 n 0401 + 04697819 n 0302 + 04697666 n 0203 + 04697666 n 0101 | severely simple; "a stark interior" -01792573 00 s 03 bare(a) 0 mere(a) 0 simple(a) 2 001 & 01791911 a 0000 | apart from anything else; without additions or modifications; "only the bare facts"; "shocked by the mere idea"; "the simple passage of time was enough"; "the simple truth" -01792821 00 s 01 chaste 0 002 & 01791911 a 0000 + 04697442 n 0101 | pure and simple in design or style; "a chaste border of conventionalized flowers" -01792973 00 s 01 dry 1 001 & 01791911 a 0000 | (of food) eaten without a spread or sauce or other garnish; "dry toast"; "dry meat" -01793106 00 s 01 dry 2 001 & 01791911 a 0000 | having no adornment or coloration; "dry facts"; "rattled off the facts in a dry mechanical manner" -01793254 00 s 01 featureless 0 001 & 01791911 a 0000 | lacking distinguishing characteristics or features; "the featureless landscape of the steppe" -01793405 00 s 01 homely 0 001 & 01791911 a 0000 | plain and unpretentious; "homely truths"; "letters to his son full of homely advice"; "homely fare" -01793557 00 s 02 inelaborate 0 unelaborate 0 001 & 01791911 a 0000 | not elaborate; lacking rich or complex detail -01793674 00 s 01 literal 0 001 & 01791911 a 0000 | avoiding embellishment or exaggeration (used for emphasis); "it's the literal truth" -01793812 00 s 01 simple 0 003 & 01791911 a 0000 + 04697442 n 0104 + 04697442 n 0103 | unornamented; "a simple country schoolhouse"; "her black dress--simple to austerity" -01793985 00 s 02 tailored 0 trim 0 001 & 01791911 a 0000 | severely simple in line or design; "a neat tailored suit"; "tailored curtains" -01794125 00 s 01 vanilla 0 001 & 01791911 a 0000 | plain and without any extras or adornments; "the most common type of bond is the straight or plain vanilla bond"; "the basic car is known as the vanilla version" -01794340 00 a 01 fancy 0 018 ^ 00056002 a 0000 ^ 02016535 a 0000 ! 01791911 a 0101 & 01794771 a 0000 & 01794995 a 0000 & 01795203 a 0000 & 01795353 a 0000 & 01795460 a 0000 & 01795610 a 0000 & 01795799 a 0000 & 01795933 a 0000 & 01796109 a 0000 & 01796304 a 0000 & 01796452 a 0000 & 01796600 a 0000 & 01796736 a 0000 & 01796844 a 0000 & 01796977 a 0000 | not plain; decorative or ornamented; "fancy handwriting"; "fancy clothes" -01794771 00 s 03 aureate 0 florid 0 flamboyant 0 004 & 01794340 a 0000 + 12494794 n 0302 + 04699936 n 0301 + 04699936 n 0202 | elaborately or excessively ornamented; "flamboyant handwriting"; "the senator's florid speech" -01794995 00 s 03 baroque 0 churrigueresque 0 churrigueresco 0 002 & 01794340 a 0000 + 04698307 n 0102 | having elaborate symmetrical ornamentation; "the building...frantically baroque"-William Dean Howells -01795203 00 s 02 busy 0 fussy 0 002 & 01794340 a 0000 + 04700199 n 0201 | overcrowded or cluttered with detail; "a busy painting"; "a fussy design" -01795353 00 s 01 dressy 0 003 & 01794340 a 0000 ;u 07075172 n 0000 + 02756098 n 0103 | in fancy clothing -01795460 00 s 01 crackle 0 001 & 01794340 a 0000 | having the surface decorated with a network of fine cracks, as in crackleware; "a crackle glaze" -01795610 00 s 01 damascene 0 002 & 01794340 a 0000 + 03160593 n 0101 | (of metals) decorated or inlaid with a wavy pattern of different (especially precious) metals; "a damascened sword" -01795799 00 s 01 damask 0 003 & 01794340 a 0000 + 03160894 n 0101 + 03160740 n 0101 | having a woven pattern; "damask table linens" -01795933 00 s 02 elaborate 0 luxuriant 0 003 & 01794340 a 0000 + 05116243 n 0201 + 04698112 n 0102 | marked by complexity and richness of detail; "an elaborate lace pattern" -01796109 00 s 04 embattled 0 battlemented 0 castled 0 castellated 0 001 & 01794340 a 0000 | having or resembling repeated square indentations like those in a battlement; "a crenelated molding" -01796304 00 s 01 fanciful 0 001 & 01794340 a 0000 | having a curiously intricate quality; "a fanciful pattern with intertwined vines and flowers" -01796452 00 s 01 fantastic 0 001 & 01794340 a 0000 | extravagantly fanciful in design, construction, appearance; "Gaudi's fantastic architecture" -01796600 00 s 02 lacy 0 lacelike 0 002 & 01794340 a 0000 + 03631177 n 0101 | made of or resembling lace; "a lacy gown"; "a lacy leaf" -01796736 00 s 02 puff 0 puffed 0 001 & 01794340 a 0000 | gathered for protruding fullness; "puff sleeves" -01796844 00 s 01 rococo 0 001 & 01794340 a 0000 | having excessive asymmetrical ornamentation; "an exquisite gilded rococo mirror" -01796977 00 s 03 vermicular 0 vermiculate 0 vermiculated 0 001 & 01794340 a 0000 | decorated with wormlike tracery or markings; "vermicular (or vermiculated) stonework" -01797148 00 a 01 planned 0 007 ^ 01337486 a 0000 ^ 01842763 a 0000 ! 01797862 a 0101 & 01797394 a 0000 & 01797528 a 0000 & 01797633 a 0000 & 01797770 a 0000 | designed or carried out according to a plan; "the planned outlays for new equipment" -01797394 00 s 01 contrived 0 001 & 01797148 a 0000 | showing effects of planning or manipulation; "a novel with a contrived ending" -01797528 00 s 01 deep-laid 0 001 & 01797148 a 0000 | secretly and carefully planned; "deep-laid plans" -01797633 00 s 02 preset 0 predetermined 0 001 & 01797148 a 0000 | set in advance; "a preset plan of action"; "at a predetermined time" -01797770 00 s 01 put-up 0 001 & 01797148 a 0000 | planned secretly; "it was a put-up job" -01797862 00 a 01 unplanned 0 006 ^ 01338730 a 0000 ! 01797148 a 0101 & 01798162 a 0000 & 01798371 a 0000 & 01798484 a 0000 & 01798697 a 0000 | without apparent forethought or prompting or planning; "an unplanned economy"; "accepts an unplanned order"; "an unplanned pregnancy"; "unplanned remarks" -01798162 00 s 02 casual 1 chance(a) 0 002 & 01797862 a 0000 + 04912240 n 0101 | occurring or appearing or singled out by chance; "seek help from casual passers-by"; "a casual meeting"; "a chance occurrence" -01798371 00 s 01 ad_hoc 0 001 & 01797862 a 0000 | often improvised or impromptu; "an ad hoc committee meeting" -01798484 00 s 01 casual 2 002 & 01797862 a 0000 + 04912240 n 0101 | without or seeming to be without plan or method; offhand; "a casual remark"; "information collected by casual methods and in their spare time" -01798697 00 s 01 unpremeditated 0 001 & 01797862 a 0000 | not prepared or planned in advance; "asked an unpremeditated question" -01798828 00 a 01 studied 0 002 ^ 00073048 a 0000 ! 01799035 a 0101 | produced or marked by conscious design or premeditation; "a studied smile"; "a note of biting irony and studied insult"- V.L.Parrington -01799035 00 a 02 unstudied 0 uncontrived 0 003 ^ 00074346 a 0000 ! 01798828 a 0101 & 01799297 a 0000 | not by design or artifice; unforced and impromptu; "an air of unstudied spontaneous utterance is apt to be painstakingly achieved"; "simple unstudied charm" -01799297 00 s 01 candid 0 001 & 01799035 a 0000 | informal or natural; especially caught off guard or unprepared; "a candid photograph"; "a candid interview" -01799457 00 a 01 plausible 0 006 ^ 00644839 a 0000 + 04783724 n 0101 + 04783724 n 0102 ! 01799957 a 0101 & 01799670 a 0000 & 01799781 a 0000 | apparently reasonable and valid, and truthful; "a plausible excuse" -01799670 00 s 01 arguable 0 002 & 01799457 a 0000 + 00772189 v 0101 | capable of being supported by argument -01799781 00 s 03 glib 0 pat 0 slick 0 003 & 01799457 a 0000 + 05095324 n 0302 + 05095324 n 0101 | having only superficial plausibility; "glib promises"; "a slick commercial" -01799957 00 a 01 implausible 0 005 ^ 00645493 a 0000 + 04784322 n 0102 + 04784322 n 0101 ! 01799457 a 0101 & 01800169 a 0000 | having a quality that provokes disbelief; "gave the teacher an implausible excuse" -01800169 00 s 04 improbable 0 unbelievable 0 unconvincing 0 unlikely 0 003 & 01799957 a 0000 + 04758776 n 0402 + 04758452 n 0102 | having a probability too low to inspire belief -01800349 00 a 01 pleasant 0 013 ^ 01133876 a 0000 ^ 01586342 a 0000 ^ 01807219 a 0000 = 04778630 n 0000 + 07490713 n 0102 + 04778630 n 0101 + 01815628 v 0101 ! 01801600 a 0101 & 01800764 a 0000 & 01800873 a 0000 & 01801029 a 0000 & 01801327 a 0000 & 01801446 a 0000 | affording pleasure; being in harmony with your taste or likings; "we had a pleasant evening together"; "a pleasant scene"; "pleasant sensations" -01800764 00 s 01 beautiful 0 001 & 01800349 a 0000 | (of weather) highly enjoyable; "what a beautiful day" -01800873 00 s 01 dulcet 0 001 & 01800349 a 0000 | extremely pleasant in a gentle way; "the most dulcet swimming on the most beautiful and remote beaches" -01801029 00 s 03 enjoyable 0 gratifying 0 pleasurable 0 002 & 01800349 a 0000 + 04779336 n 0101 | affording satisfaction or pleasure; "the company was enjoyable"; "found her praise gratifying"; "full of happiness and pleasurable excitement"; "good printing makes a book more pleasurable to read" -01801327 00 s 01 grateful 0 001 & 01800349 a 0000 | affording comfort or pleasure; "the grateful warmth of the fire" -01801446 00 s 01 idyllic 0 002 & 01800349 a 0000 + 07307297 n 0101 | suggestive of an idyll; charmingly simple and serene; "his idyllic life in Tahiti" -01801600 00 a 01 unpleasant 0 022 ^ 01808822 a 0000 ^ 01134769 a 0000 ^ 01587077 a 0000 ^ 01624633 a 0000 ^ 01716491 a 0000 = 04778630 n 0000 + 07494787 n 0101 + 04779649 n 0101 ! 01800349 a 0101 & 01802165 a 0000 & 01802774 a 0000 & 01802932 a 0000 & 01803247 a 0000 & 01803335 a 0000 & 01803583 a 0000 & 01803792 a 0000 & 01804034 a 0000 & 01804175 a 0000 & 01804422 a 0000 & 01804728 a 0000 & 01804906 a 0000 & 01805064 a 0000 | disagreeable to the senses, to the mind, or feelings ; "an unpleasant personality"; "unpleasant repercussions"; "unpleasant odors" -01802165 00 s 0b acerb 0 acerbic 0 acid 0 acrid 0 bitter 0 blistering 0 caustic 0 sulfurous 0 sulphurous 0 virulent 0 vitriolic 0 008 & 01801600 a 0000 + 06721604 n 0b03 + 04658361 n 0a02 + 04658361 n 0a01 + 04643397 n 0501 + 04780232 n 0402 + 04780232 n 0401 + 04643397 n 0203 | harsh or corrosive in tone; "an acerbic tone piercing otherwise flowery prose"; "a barrage of acid comments"; "her acrid remarks make her many enemies"; "bitter words"; "blistering criticism"; "caustic jokes about political assassination, talk-show hosts and medical ethics"; "a sulfurous denunciation"; "a vitriolic critique" -01802774 00 s 03 beastly 0 hellish 0 god-awful 0 002 & 01801600 a 0000 + 04781967 n 0101 | very unpleasant; "hellish weather"; "stop that god-awful racket" -01802932 00 s 03 dour 1 forbidding 0 grim 1 002 & 01801600 a 0000 + 04782610 n 0302 | harshly uninviting or formidable in manner or appearance; "a dour, self-sacrificing life"; "a forbidding scowl"; "a grim man loving duty more than humanity"; "undoubtedly the grimmest part of him was his iron claw"- J.M.Barrie -01803247 00 s 01 dreadful 0 002 & 01801600 a 0000 + 04782116 n 0102 | very unpleasant -01803335 00 s 02 embarrassing 0 mortifying 0 001 & 01801600 a 0000 | causing to feel shame or chagrin or vexation; "the embarrassing moment when she found her petticoat down around her ankles"; "it was mortifying to know he had heard every word" -01803583 00 s 02 harsh 1 rough 0 003 & 01801600 a 0000 + 04817564 n 0202 + 04639732 n 0103 | unpleasantly stern; "wild and harsh country full of hot sand and cactus"; "the nomad life is rough and hazardous" -01803792 00 s 01 harsh 3 002 & 01801600 a 0000 + 04988666 n 0101 | disagreeable to the senses; "the harsh cry of a blue jay"; "harsh cognac"; "the harsh white light makes you screw up your eyes"; "harsh irritating smoke filled the hallway" -01804034 00 s 01 hot 0 001 & 01801600 a 0000 | very unpleasant or even dangerous; "make it hot for him"; "in the hot seat"; "in hot water" -01804175 00 s 03 afflictive 0 painful 0 sore 0 005 & 01801600 a 0000 + 07495973 n 0302 + 07494363 n 0202 + 01797730 v 0101 + 00259927 v 0101 | causing misery or pain or distress; "it was a sore trial to him"; "the painful process of growing up" -01804422 00 s 03 rebarbative 0 repellent 0 repellant 0 007 & 01801600 a 0000 + 14920388 n 0302 + 02194913 v 0304 + 01808769 v 0301 + 14920586 n 0201 + 14920388 n 0201 + 05196054 n 0201 | serving or tending to repel; "he became rebarbative and prickly and spiteful"; "I find his obsequiousness repellent" -01804728 00 s 03 sharp 0 sharp-worded 0 tart 0 003 & 01801600 a 0000 + 04643397 n 0305 + 04643099 n 0102 | harsh; "sharp criticism"; "a sharp-worded exchange"; "a tart remark" -01804906 00 s 01 ungrateful 0 001 & 01801600 a 0000 | disagreeable; "I will not perform the ungrateful task of comparing cases of failure"- Abraham Lincoln -01805064 00 s 01 unhappy 0 001 & 01801600 a 0000 | causing discomfort; "the unhappy truth" -01805157 00 a 01 pleased 0 007 ^ 00588797 a 0000 ! 01805889 a 0101 & 01805355 a 0000 & 01805489 a 0000 & 01805618 a 0000 & 01805730 a 0000 & 01805801 a 0000 | experiencing or manifesting pleasure -01805355 00 s 03 amused 0 diverted 0 entertained 0 001 & 01805157 a 0000 | pleasantly occupied; "We are not amused" -Queen Victoria -01805489 00 s 02 bucked_up(p) 0 encouraged 0 001 & 01805157 a 0000 | inspired with confidence; "felt bucked up by his success" -01805618 00 s 01 chuffed 0 002 & 01805157 a 0000 ;r 08860123 n 0000 | very pleased; "I'm chuffed to have won" -01805730 00 s 01 delighted 0 001 & 01805157 a 0000 | greatly pleased -01805801 00 s 01 gratified 0 001 & 01805157 a 0000 | having received what was desired -01805889 00 a 01 displeased 0 007 ^ 00589624 a 0000 ! 01805157 a 0101 & 01806106 a 0000 & 01806483 a 0000 & 01806677 a 0000 & 01806992 a 0000 & 01807075 a 0000 | not pleased; experiencing or manifesting displeasure -01806106 00 s 0b annoyed 0 irritated 0 miffed 0 nettled 0 peeved 0 pissed 0 pissed_off 0 riled 0 roiled 0 steamed 0 stung 0 001 & 01805889 a 0000 | aroused to impatience or anger; "made an irritated gesture"; "feeling nettled from the constant teasing"; "peeved about being left out"; "felt really pissed at her snootiness"; "riled no end by his lies"; "roiled by the delay" -01806483 00 s 03 exasperated 0 cheesed_off 0 browned_off 0 001 & 01805889 a 0000 | greatly annoyed; out of patience; "had an exasperated look on his face"; "felt exasperated beyond endurance" -01806677 00 s 05 disgusted 0 fed_up(p) 0 sick(p) 0 sick_of(p) 0 tired_of(p) 0 001 & 01805889 a 0000 | having a strong distaste from surfeit; "grew more and more disgusted"; "fed up with their complaints"; "sick of it all"; "sick to death of flattery"; "gossip that makes one sick"; "tired of the noise and smoke" -01806992 00 s 01 frowning 0 001 & 01805889 a 0000 | showing displeasure or anger -01807075 00 s 02 offended 0 pained 0 001 & 01805889 a 0000 | hurt or upset; "she looked offended"; "face had a pained and puzzled expression" -01807219 00 a 01 pleasing 0 014 ^ 00166146 a 0000 ^ 00217728 a 0000 ^ 01264336 a 0000 ^ 01800349 a 0000 ! 01808822 a 0101 & 01807605 a 0000 & 01807799 a 0000 & 01807964 a 0000 & 01808139 a 0000 & 01808227 a 0000 & 01808329 a 0000 & 01808413 a 0000 & 01808544 a 0000 & 01808671 a 0000 | giving pleasure and satisfaction; "a pleasing piece of news"; "pleasing in manner and appearance" -01807605 00 s 01 admirable 0 003 & 01807219 a 0000 + 04729127 n 0101 + 04729127 n 0102 | inspiring admiration or approval; "among her many admirable qualities are generosity and graciousness" -01807799 00 s 01 charming 0 001 & 01807219 a 0000 | pleasing or delighting; "endowed with charming manners"; "a charming little cottage"; "a charming personality" -01807964 00 s 02 delightful 0 delicious 0 001 & 01807219 a 0000 | greatly pleasing or entertaining; "a delightful surprise"; "the comedy was delightful"; "a delicious joke" -01808139 00 s 01 easy 0 001 & 01807219 a 0000 | affording pleasure; "easy good looks" -01808227 00 s 02 fabulous 0 fab 0 001 & 01807219 a 0000 | extremely pleasing; "a fabulous vacation" -01808329 00 s 01 good 0 001 & 01807219 a 0000 | capable of pleasing; "good looks" -01808413 00 s 02 gratifying 0 sweet 1 002 & 01807219 a 0000 + 04778630 n 0202 | pleasing to the mind or feeling; "sweet revenge" -01808544 00 s 01 ingratiating 0 001 & 01807219 a 0000 | capable of winning favor; "with open arms and an ingratiating smile" -01808671 00 s 01 sweet 2 002 & 01807219 a 0000 + 04778630 n 0102 | pleasing to the senses; "the sweet song of the lark"; "the sweet face of a child" -01808822 00 a 01 displeasing 0 006 ^ 00220956 a 0000 ^ 01801600 a 0000 ! 01807219 a 0101 & 01809019 a 0000 & 01809245 a 0000 & 01809541 a 0000 | causing displeasure or lacking pleasing qualities -01809019 00 s 02 disconcerting 0 upsetting 0 001 & 01808822 a 0000 | causing an emotional disturbance; "his disconcerting habit of greeting friends ferociously and strangers charmingly"- Herb Caen; "an upsetting experience" -01809245 00 s 04 exasperating 0 infuriating 0 maddening 0 vexing 0 001 & 01808822 a 0000 | extremely annoying or displeasing; "his cavelier curtness of manner was exasperating"; "I've had an exasperating day"; "her infuriating indifference"; "the ceaseless tumult of the jukebox was maddening" -01809541 00 s 01 off-putting 0 001 & 01808822 a 0000 | causing annoyance or repugnance; "an off-putting remark" -01809655 00 a 01 pointed 0 017 ^ 02047807 a 0000 ^ 00800826 a 0000 + 05071556 n 0102 ! 01811504 a 0101 & 01810011 a 0000 & 01810189 a 0000 & 01810348 a 0000 & 01810453 a 0000 & 01810536 a 0000 & 01810613 a 0000 & 01810720 a 0000 & 01810868 a 0000 & 01810998 a 0000 & 01811172 a 0000 & 01811277 a 0000 & 01811352 a 0000 & 01811430 a 0000 | having a point -01810011 00 s 03 acanthoid 0 acanthous 0 spinous 0 005 & 01809655 a 0000 + 13912839 n 0302 + 13089631 n 0301 + 01900488 n 0301 + 13912839 n 0203 | shaped like a spine or thorn -01810189 00 s 04 acuate 0 acute 0 sharp 0 needlelike 0 004 & 01809655 a 0000 + 04184957 n 0301 + 04705324 n 0301 + 04705536 n 0201 | ending in a sharp point -01810348 00 s 02 barreled 0 barrelled 0 001 & 01809655 a 0000 | (of an arrow) tapered toward both ends -01810453 00 s 01 bristle-pointed 0 001 & 01809655 a 0000 | pointed like bristles -01810536 00 s 01 five-pointed 0 001 & 01809655 a 0000 | having five points -01810613 00 s 03 fusiform 0 spindle-shaped 0 cigar-shaped 0 001 & 01809655 a 0000 | tapering at each end -01810720 00 s 01 nibbed 0 001 & 01809655 a 0000 | (used of pens) having a writing point or nib especially of a certain kind; "a broad-nibbed pen" -01810868 00 s 01 peaked 0 001 & 01809655 a 0000 | having or rising to a peak; "the peaked ceiling"; "the island's peaked hills" -01810998 00 s 03 pyramidal 0 pyramidic 0 pyramidical 0 005 & 01809655 a 0000 + 04029125 n 0301 + 13914837 n 0301 + 04029125 n 0101 + 13914837 n 0101 | resembling a pyramid -01811172 00 s 01 sharpened 0 001 & 01809655 a 0000 | having the point made sharp; "a sharpened pencil" -01811277 00 s 01 six-pointed 0 001 & 01809655 a 0000 | having six points -01811352 00 s 01 spiked 1 001 & 01809655 a 0000 | having a long sharp point -01811430 00 s 01 spikelike 0 001 & 01809655 a 0000 | resembling a spike -01811504 00 a 02 pointless 0 unpointed 0 003 + 05071726 n 0201 ! 01809655 a 0101 & 01811683 a 0000 | not having a point especially a sharp point; "my pencils are all pointless" -01811683 00 s 01 blunt 0 002 & 01811504 a 0000 + 04705671 n 0102 | having a broad or rounded end; "thick marks made by a blunt pencil" -01811820 00 a 01 acute 2 001 ! 01811905 a 0101 | of an angle; less than 90 degrees -01811905 00 a 01 obtuse 0 001 ! 01811820 a 0101 | of an angle; between 90 and 180 degrees -01811997 00 a 01 polished 0 004 ^ 00278551 a 0000 ! 01812846 a 0101 & 01812237 a 0000 & 01812630 a 0000 | perfected or made shiny and smooth; "his polished prose"; "in a freshly ironed dress and polished shoes"; "freshly polished silver" -01812237 00 s 05 bright 0 burnished 0 lustrous 0 shining 2 shiny 0 004 & 01811997 a 0000 + 04953954 n 0503 + 04954683 n 0501 + 05018103 n 0102 | made smooth and bright by or as if by rubbing; reflecting a sheen or glow; "bright silver candlesticks"; "a burnished brass knocker"; "she brushed her hair until it fell in lustrous auburn waves"; "rows of shining glasses"; "shiny black patents" -01812630 00 s 01 finished 0 001 & 01811997 a 0000 | (of skills or the products of skills) brought to or having the greatest excellence; perfected; "a dazzling and finished piece of writing"; "a finished violinist" -01812846 00 a 01 unpolished 0 006 ^ 00283703 a 0000 ^ 01949149 a 0000 ! 01811997 a 0101 & 01813081 a 0000 & 01813183 a 0000 & 01813289 a 0000 | not carefully reworked or perfected or made smooth by polishing; "dull unpolished shoes" -01813081 00 s 01 raw 0 001 & 01812846 a 0000 | untempered and unrefined; "raw talent"; "raw beauty" -01813183 00 s 01 rough 0 001 & 01812846 a 0000 | not perfected; "a rough draft"; "a few rough sketches" -01813289 00 s 01 unburnished 0 001 & 01812846 a 0000 | of metals e.g.; not made shiny and smooth by friction -01813400 00 a 01 politic 0 004 ^ 00758459 a 0000 ! 01814085 a 0101 & 01813733 a 0000 & 01813920 a 0000 | marked by artful prudence, expedience, and shrewdness; "it is neither polite nor politic to get into other people's quarrels"; "a politic decision"; "a politic manager"; "a politic old scoundrel"; "a shrewd and politic reply" -01813733 00 s 01 expedient 0 003 & 01813400 a 0000 + 05158431 n 0102 + 05158431 n 0101 | appropriate to a purpose; practical; "in the circumstances it was expedient to express loyalty" -01813920 00 s 01 sagacious 0 003 & 01813400 a 0000 + 04890361 n 0103 + 05614175 n 0101 | skillful in statecraft or management; "an astute and sagacious statesman" -01814085 00 a 01 impolitic 0 004 ^ 02570282 a 0000 ^ 00932367 a 0000 ! 01813400 a 0101 & 01814252 a 0000 | not politic; "an impolitic approach to a sensitive issue" -01814252 00 s 02 inexpedient 0 unwise 0 003 & 01814085 a 0000 + 05165303 n 0102 + 05165303 n 0101 | not appropriate to the purpose -01814385 00 a 01 political 0 004 ! 01815129 a 0101 & 01814711 a 0000 & 01814929 a 0000 & 01815030 a 0000 | involving or characteristic of politics or parties or politicians; "calling a meeting is a political act in itself"- Daniel Goleman; "political pressure"; "a political machine"; "political office"; "political policy" -01814711 00 s 01 governmental 0 001 & 01814385 a 0000 | relating to or dealing with the affairs or structure of government or politics or the state; "governmental policy"; "public confidence and governmental morale" -01814929 00 s 01 policy-making 0 001 & 01814385 a 0000 | concerned with policy, not administration -01815030 00 s 01 semipolitical 0 001 & 01814385 a 0000 | political in some (but not all) aspects -01815129 00 a 01 nonpolitical 0 002 ! 01814385 a 0101 & 01815219 a 0000 | not political -01815219 00 s 02 apolitical 0 unpolitical 0 001 & 01815129 a 0000 | politically neutral -01815309 00 a 01 ponderable 0 002 ! 01815669 a 0101 & 01815540 a 0000 | capable of being weighed or considered; "something ponderable from the outer world--something of which we can say that its weight is so and so"- James Jeans -01815540 00 s 01 assessable 0 001 & 01815309 a 0000 | capable of being considered carefully; "the assessable qualities of art" -01815669 00 a 01 imponderable 0 001 ! 01815309 a 0101 | difficult or impossible to evaluate with precision; "such imponderable human factors as aesthetic sensibility" -01815838 00 a 01 popular 0 008 = 04808639 n 0000 + 04808639 n 0101 ! 01816956 a 0101 & 01816195 a 0000 & 01816305 a 0000 & 01816376 a 0000 & 01816525 a 0000 & 01816696 a 0000 | regarded with great favor, approval, or affection especially by the general public; "a popular tourist attraction"; "a popular girl"; "cabbage patch dolls are no longer popular" -01816195 00 s 01 best-selling(p) 0 001 & 01815838 a 0000 | selling in great numbers; "a best-selling novel" -01816305 00 s 01 fashionable 0 001 & 01815838 a 0000 | patronized by -01816376 00 s 02 favorite 0 favourite 0 002 & 01815838 a 0000 + 05790758 n 0202 | appealing to the general public; "a favorite tourist attraction" -01816525 00 s 01 hot 0 002 & 01815838 a 0000 ;u 07075172 n 0000 | very popular or successful; "one of the hot young talents"; "cabbage patch dolls were hot last season" -01816696 00 s 02 touristed 0 touristy 0 002 & 01815838 a 0000 + 10718131 n 0201 | visited by throngs of tourists; "of the three American Virgin islands St. Thomas is the most touristed"; "tourists descend in busloads...so the whole place is rather touristy" -01816956 00 a 01 unpopular 0 004 = 04808639 n 0000 + 04809089 n 0101 ! 01815838 a 0101 & 01817155 a 0000 | regarded with disfavor or lacking general approval; "unpopular ideas"; "an unpopular war" -01817155 00 s 01 less-traveled 0 001 & 01816956 a 0000 | not visited by many travelers; "the tourist's desire to visit less-traveled countries" -01817301 00 a 01 pro 0 001 ! 01817405 a 0101 | in favor of (an action or proposal etc.); "a pro vote" -01817405 00 a 01 anti 0 001 ! 01817301 a 0101 | not in favor of (an action or proposal etc.) -01817500 00 a 01 positive 1 011 ^ 00075135 a 0000 ^ 00584820 a 0000 ^ 01663571 a 0000 ^ 02354537 a 0000 = 04723816 n 0000 + 05166805 n 0101 + 05166805 n 0102 ! 01818234 a 0101 ! 01818992 a 0101 & 01817908 a 0000 & 01818077 a 0000 | characterized by or displaying affirmation or acceptance or certainty etc.; "a positive attitude"; "the reviews were all positive"; "a positive benefit"; "a positive demand" -01817908 00 s 02 affirmative 0 optimistic 0 004 & 01817500 a 0000 + 07541558 n 0201 + 05211793 n 0201 + 05167117 n 0101 | expecting the best; "an affirmative outlook" -01818077 00 s 01 constructive 0 002 & 01817500 a 0000 + 05165745 n 0101 | emphasizing what is laudable or hopeful or to the good; "constructive criticism" -01818234 00 a 01 negative 2 009 ^ 00586183 a 0000 ^ 01664581 a 0000 ^ 02356430 a 0000 = 04723816 n 0000 + 05167618 n 0101 ! 01818992 a 0101 ! 01817500 a 0101 & 01818680 a 0000 & 01818820 a 0000 | characterized by or displaying negation or denial or opposition or resistance; having no positive features; "a negative outlook on life"; "a colorless negative personality"; "a negative evaluation"; "a negative reaction to an advertising campaign" -01818680 00 s 02 antagonistic 0 counter 0 003 & 01818234 a 0000 + 09773245 n 0102 + 13860548 n 0101 | indicating opposition or resistance -01818820 00 s 01 perverse 0 002 & 01818234 a 0000 + 04909018 n 0103 | marked by a disposition to oppose and contradict; "took perverse satisfaction in foiling her plans" -01818992 00 a 01 neutral 2 004 ! 01817500 a 0101 ! 01818234 a 0101 & 01819152 a 0000 & 01819293 a 0000 | possessing no distinctive quality or characteristics -01819152 00 s 02 neutralized 0 neutralised 0 001 & 01818992 a 0000 | made neutral in some respect; deprived of distinctive characteristics -01819293 00 s 01 viewless 0 001 & 01818992 a 0000 | not having or expressing opinions or views -01819390 00 a 01 plus 0 003 ! 01819821 a 0101 & 01819592 a 0000 & 01819692 a 0000 | on the positive side or higher end of a scale; "a plus value"; "temperature of plus 5 degrees"; "a grade of C plus" -01819592 00 s 01 nonnegative 0 002 & 01819390 a 0000 ;c 06000644 n 0000 | either positive or zero -01819692 00 s 01 positive 0 003 & 01819390 a 0000 ;c 06000644 n 0000 + 05108109 n 0101 | greater than zero; "positive numbers" -01819821 00 a 01 minus 0 002 ! 01819390 a 0101 & 01819976 a 0000 | on the negative side or lower end of a scale; "minus 5 degrees"; "a grade of B minus" -01819976 00 s 01 negative 0 003 & 01819821 a 0000 ;c 06000644 n 0000 + 05108262 n 0102 | less than zero; "a negative number" -01820103 00 a 01 positive 5 001 ! 01820338 a 0101 | reckoned, situated or tending in the direction which naturally or arbitrarily is taken to indicate increase or progress or onward motion; "positive increase in graduating students" -01820338 00 a 01 negative 5 001 ! 01820103 a 0101 | reckoned in a direction opposite to that regarded as positive; "negative interest rates" -01820481 00 a 02 positive 4 confirming 2 003 ;c 06043075 n 0000 ! 01820861 a 0101 & 01820684 a 0000 | indicating existence or presence of a suspected condition or pathogen; "a positive pregnancy test" -01820684 00 s 01 Gram-positive 0 002 & 01820481 a 0000 ;c 01348530 n 0000 | (of bacteria) being or relating to a bacterium that retains the violet stain used in Gram's method -01820861 00 a 02 negative 4 disconfirming 2 003 ;c 06043075 n 0000 ! 01820481 a 0101 & 01821078 a 0000 | not indicating the presence of microorganisms or disease or a specific condition; "the HIV test was negative" -01821078 00 s 01 Gram-negative 0 002 & 01820861 a 0000 ;c 01348530 n 0000 | (of bacteria) being of or relating to a bacterium that does not retain the violet stain used in Gram's method -01821266 00 a 01 possible 0 014 ^ 01411451 a 0000 ^ 01834304 a 0000 ^ 01939984 a 0000 ^ 02417895 a 0000 = 14481929 n 0000 + 14481929 n 0101 + 14481929 n 0102 ! 01823092 a 0101 & 01821690 a 0000 & 01821920 a 0000 & 01822153 a 0000 & 01822411 a 0000 & 01822563 a 0000 & 01822933 a 0000 | capable of happening or existing; "a breakthrough may be possible next year"; "anything is possible"; "warned of possible consequences" -01821690 00 s 05 accomplishable 0 achievable 0 doable 0 manageable 0 realizable 0 004 & 01821266 a 0000 + 02526085 v 0201 + 14482444 n 0201 + 01640855 v 0102 | capable of existing or taking place or proving true; possible to do -01821920 00 s 02 affirmable 0 assertable 0 005 & 01821266 a 0000 + 01016778 v 0201 + 01011031 v 0203 + 00717045 v 0202 + 00665886 v 0106 | capable of being affirmed or asserted; "a quality affirmable of every member of the family" -01822153 00 s 02 attainable 0 come-at-able 0 004 & 01821266 a 0000 + 02526085 v 0103 + 14482444 n 0102 + 14482444 n 0103 | capable of being attained or accomplished; "choose an attainable goal"; "art is not something that is come-at-able by dint of study" -01822411 00 s 01 contingent 0 002 & 01821266 a 0000 + 07290761 n 0102 | possible but not certain to occur; "they had to plan for contingent expenses" -01822563 00 s 05 feasible 0 executable 0 practicable 0 viable 0 workable 0 012 & 01821266 a 0000 + 02436963 v 0501 + 02525447 v 0501 + 01629589 v 0502 + 01668603 v 0501 + 00634906 v 0506 + 05151576 n 0401 + 05152150 n 0302 + 05203207 n 0201 + 05152364 n 0102 + 05152364 n 0101 + 00428572 r 0102 | capable of being done with means at hand and circumstances as they are -01822933 00 s 01 mathematical 0 001 & 01821266 a 0000 | statistically possible though highly improbable; "have a mathematical chance of making the playoffs" -01823092 00 a 01 impossible 0 013 ^ 01229020 a 0000 ^ 01836350 a 0000 ^ 02357115 a 0000 ^ 01941999 a 0000 ^ 02418538 a 0000 = 14481929 n 0000 + 14483126 n 0102 + 14483126 n 0101 ! 01821266 a 0101 & 01823475 a 0000 & 01823574 a 0000 & 01823948 a 0000 & 01824081 a 0000 | not capable of occurring or being accomplished or dealt with; "an impossible dream"; "an impossible situation" -01823475 00 s 01 hopeless 2 001 & 01823092 a 0000 | certain to fail; "the situation is hopeless" -01823574 00 s 04 impracticable 0 infeasible 0 unfeasible 0 unworkable 0 005 & 01823092 a 0000 + 05153359 n 0302 + 05153359 n 0201 + 05153155 n 0102 + 05153155 n 0101 | not capable of being carried out or put into practice; "refloating the sunken ship proved impracticable because of its fragility"; "a suggested reform that was unfeasible in the prevailing circumstances" -01823948 00 s 01 out(p) 0 001 & 01823092 a 0000 | not worth considering as a possibility; "a picnic is out because of the weather" -01824081 00 s 04 unachievable 0 unattainable 0 undoable 0 unrealizable 0 002 & 01823092 a 0000 + 14483508 n 0201 | impossible to achieve; "an unattainable goal" -01824244 00 a 03 potent 0 strong 4 stiff 0 008 ^ 00834198 a 0000 ^ 01001689 a 0000 ^ 01825671 a 0000 = 05034225 n 0000 + 05034225 n 0101 ! 01824751 a 0101 & 01824563 a 0000 & 01824653 a 0000 | having a strong physiological or chemical effect; "a potent toxin"; "potent liquor"; "a potent cup of tea", "a stiff drink" -01824563 00 s 01 equipotent 0 001 & 01824244 a 0000 | having equal strength or efficacy -01824653 00 s 01 multipotent 0 001 & 01824244 a 0000 | able to many things; "multipotent drugs" -01824751 00 a 01 impotent 0 008 ^ 01827535 a 0000 ^ 01002377 a 0000 = 05034225 n 0000 + 05204637 n 0103 + 05204637 n 0102 ! 01824244 a 0101 & 01825080 a 0000 & 01825310 a 0000 | lacking power or ability; "Technology without morality is barbarous; morality without technology is impotent"- Freeman J.Dyson; "felt impotent rage" -01825080 00 s 03 ineffective 0 ineffectual 0 unable 0 004 & 01824751 a 0000 + 05207963 n 0202 + 05207963 n 0203 + 05207963 n 0101 | lacking in power or forcefulness; "an ineffectual ruler"; "like an unable phoenix in hot ashes" -01825310 00 s 01 impuissant 0 002 & 01824751 a 0000 + 05204982 n 0103 | lacking physical strength or vigor -01825419 00 a 02 potent 2 virile 0 003 + 05008449 n 0201 + 14051728 n 0101 ! 01825550 a 0101 | (of a male) capable of copulation -01825550 00 a 01 impotent 2 003 + 14044930 n 0102 + 14044930 n 0101 ! 01825419 a 0101 | (of a male) unable to copulate -01825671 00 a 01 powerful 0 015 ^ 00834198 a 0000 ^ 01824244 a 0000 ^ 02321009 a 0000 = 05190804 n 0000 + 05190804 n 0102 ! 01827535 a 0101 & 01826186 a 0000 & 01826327 a 0000 & 01826477 a 0000 & 01826575 a 0000 & 01826828 a 0000 & 01826979 a 0000 & 01827161 a 0000 & 01827261 a 0000 & 01827432 a 0000 | having great power or force or potency or effect; "the most powerful government in western Europe"; "his powerful arms"; "a powerful bomb"; "the horse's powerful kick"; "powerful drugs"; "a powerful argument" -01826186 00 s 03 almighty 0 all-powerful 0 omnipotent 0 003 & 01825671 a 0000 + 14459185 n 0301 + 09536363 n 0107 | having unlimited power -01826327 00 s 01 coercive 0 002 & 01825671 a 0000 + 02504562 v 0101 | serving or intended to coerce; "authority is directional instead of coercive" -01826477 00 s 01 compelling 0 001 & 01825671 a 0000 | driving or forcing; "compelling ambition" -01826575 00 s 01 mighty 0 003 & 01825671 a 0000 + 05030680 n 0101 + 05030680 n 0102 | having or showing great strength or force or intensity; "struck a mighty blow"; "the mighty logger Paul Bunyan"; "the pen is mightier than the sword"- Bulwer-Lytton -01826828 00 s 01 muscular 0 001 & 01825671 a 0000 | having or suggesting great physical power or force; "the muscular and passionate Fifth Symphony" -01826979 00 s 02 potent 0 strong 0 002 & 01825671 a 0000 + 05196582 n 0104 | having or wielding force or authority; "providing the ground soldier with increasingly potent weapons" -01827161 00 s 01 puissant 0 003 & 01825671 a 0000 ;u 07073447 n 0000 + 05191695 n 0101 | powerful -01827261 00 s 01 regent(ip) 0 004 & 01825671 a 0000 ;u 06307152 n 0000 + 10516117 n 0101 + 00598970 n 0101 | acting or functioning as a regent or ruler; "prince-regent" -01827432 00 s 03 regnant 0 reigning 0 ruling 0 001 & 01825671 a 0000 | exercising power or authority -01827535 00 a 01 powerless 0 010 ^ 01824751 a 0000 ^ 00835609 a 0000 ^ 02324397 a 0000 = 05190804 n 0000 + 05204637 n 0101 ! 01825671 a 0101 & 01827766 a 0000 & 01827946 a 0000 & 01828130 a 0000 & 01828242 a 0000 | lacking power -01827766 00 s 02 feeble 0 nerveless 0 002 & 01827535 a 0000 + 14547643 n 0104 | lacking strength; "a weak, nerveless fool, devoid of energy and promptitude"- Nathaniel Hawthorne -01827946 00 s 02 helpless 1 incapacitated 0 002 & 01827535 a 0000 + 05204982 n 0101 | lacking in or deprived of strength or power; "lying ill and helpless"; "helpless with laughter" -01828130 00 s 01 low-powered 0 001 & 01827535 a 0000 | having little power to do work; "a low-powered engine" -01828242 00 s 01 weak 0 002 & 01827535 a 0000 + 05204982 n 0102 | not having authority, political strength, or governing power; "a weak president" -01828391 00 a 01 powered 0 007 ! 01829505 a 0101 & 01828706 a 0000 & 01828836 a 0000 & 01828987 a 0000 & 01829149 a 0000 & 01829254 a 0000 & 01829369 a 0000 | (often used in combination) having or using or propelled by means of power or power of a specified kind; "powered flight"; "kerosine-powered jet engines" -01828706 00 s 01 battery-powered 0 001 & 01828391 a 0000 | powered by one or more electric batteries; "a battery-powered radio" -01828836 00 s 01 high-powered 0 001 & 01828391 a 0000 | (used of microscopes) capable of a high degree of magnification; "a high-powered microscope" -01828987 00 s 01 hopped-up 0 002 & 01828391 a 0000 ;c 02958343 n 0000 | (of an automobile) having the engine modified to give extra power; "a hopped-up jalopy" -01829149 00 s 01 power-driven 0 001 & 01828391 a 0000 | powered by a motor; "a power-driven hand tool" -01829254 00 s 01 steam-powered 0 001 & 01828391 a 0000 | powered by a steam engine; "a steam-powered locomotive" -01829369 00 s 01 supercharged 0 001 & 01828391 a 0000 | (of e.g. an engine) having the power increased by fitting with a supercharger -01829505 00 a 01 unpowered 0 001 ! 01828391 a 0101 | not having or using power; "an autogiro is supported in flight by unpowered rotating wings" -01829652 00 a 01 high-tension 0 003 ;c 11449907 n 0000 ! 01829980 a 0101 & 01829835 a 0000 | subjected to or capable of operating under relatively high voltage; "high-tension wire" -01829835 00 s 02 high-voltage 0 high-potential 0 001 & 01829652 a 0000 | operating on or powered by a high voltage; "a high-voltage generator" -01829980 00 a 02 low-tension 0 low-voltage 0 002 ;c 11449907 n 0000 ! 01829652 a 0101 | subjected to or capable of operating under relative low voltage -01830134 00 a 01 influential 0 007 + 11414608 n 0101 + 10461747 n 0101 + 05194151 n 0101 ! 01830871 a 0101 & 01830403 a 0000 & 01830599 a 0000 & 01830703 a 0000 | having or exercising influence or power; "an influential newspaper"; "influential leadership for peace" -01830403 00 s 02 authoritative 0 important 0 002 & 01830134 a 0000 + 14434681 n 0201 | having authority or ascendancy or influence; "an important official"; "the captain's authoritative manner" -01830599 00 s 02 potent 0 powerful 0 002 & 01830134 a 0000 + 05190804 n 0202 | having great influence -01830703 00 s 01 prestigious 0 001 & 01830134 a 0000 | exerting influence by reason of high status or prestige; "a prestigious professor at a prestigious university" -01830871 00 a 01 uninfluential 0 001 ! 01830134 a 0101 | not influential -01830946 00 a 01 placental 0 005 + 01886756 n 0101 + 11680838 n 0101 + 05520699 n 0101 ! 01831346 a 0101 & 01831203 a 0000 | pertaining to or having or occurring by means of a placenta; "all mammals except monotremes and marsupials are placental mammals" -01831203 00 s 01 transplacental 0 001 & 01830946 a 0000 | occurring through or by way of the placenta; "transplacental passage of nutrients" -01831346 00 a 01 aplacental 0 001 ! 01830946 a 0101 | having no placenta; "monotremes and marsupials are aplacental mammals" -01831473 00 a 01 planted 0 008 ! 01832604 a 0101 & 01831679 a 0000 & 01831789 a 0000 & 01831942 a 0000 & 01832108 a 0000 & 01832245 a 0000 & 01832341 a 0000 & 01832491 a 0000 | set in the soil for growth -01831679 00 s 01 cropped 0 001 & 01831473 a 0000 | (of land or soil) used for growing crops; "cropped soil" -01831789 00 s 02 naturalized 0 naturalised 0 001 & 01831473 a 0000 | planted so as to give an effect of wild growth; "drifts of naturalized daffodils" -01831942 00 s 02 potbound 0 rootbound 1 001 & 01831473 a 0000 | (of a potted plant) grown too large for its container resulting in matting or tangling of the roots -01832108 00 s 01 quickset(a) 0 001 & 01831473 a 0000 | grown from cuttings planted directly in the ground; "a quickset hawthorn hedge" -01832245 00 s 02 seeded 0 sown 0 001 & 01831473 a 0000 | sprinkled with seed; "a seeded lawn" -01832341 00 s 03 self-seeded 0 self-sown 0 self-sowed 0 001 & 01831473 a 0000 | growing from seed dispersed by natural agency such as wind or birds -01832491 00 s 01 soil-building 0 001 & 01831473 a 0000 | (of crops) planted to improve the quality of the soil -01832604 00 a 01 unplanted 0 003 ! 01831473 a 0101 & 01832707 a 0000 & 01832807 a 0000 | not planted -01832707 00 s 01 uncropped 0 001 & 01832604 a 0000 | not used for growing crops; "uncropped soil" -01832807 00 s 02 unseeded 0 unsown 0 001 & 01832604 a 0000 | (of a piece of ground) not have a crop sown on it; "farmland still unsown" -01832945 00 a 02 plowed 0 ploughed 0 002 ! 01833226 a 0101 & 01833092 a 0000 | (of farmland) broken and turned over with a plow; "plowed fields" -01833092 00 s 01 tilled 0 001 & 01832945 a 0000 | turned or stirred by plowing or harrowing or hoeing; "tilled land ready for seed" -01833226 00 a 03 unplowed 0 unploughed 0 unbroken 4 003 ! 01832945 a 0101 & 01833401 a 0000 & 01833541 a 0000 | (of farmland) not plowed; "unplowed fields"; "unbroken land" -01833401 00 s 01 fallow 0 002 & 01833226 a 0000 + 09278295 n 0101 | left unplowed and unseeded during a growing season; "fallow farmland" -01833541 00 s 01 untilled 0 001 & 01833226 a 0000 | not plowed or harrowed or hoed; "untilled land" -01833643 00 a 01 cultivated 0 001 ! 01833791 a 0101 | (of land or fields) prepared for raising crops by plowing or fertilizing; "cultivated land" -01833791 00 a 01 uncultivated 0 002 ! 01833643 a 0101 & 01833939 a 0000 | (of land or fields) not prepared for raising crops; "uncultivated land" -01833939 00 s 02 uncultivable 0 uncultivatable 0 001 & 01833791 a 0000 | not suitable for cultivation or tilling; "thickets of indigenous trees...on uncultivable land"- C.B.Palmer -01834121 00 a 01 potted 0 001 ! 01834230 a 0101 | of plants; planted or grown in a pot; "potted geraniums" -01834230 00 a 01 unpotted 0 001 ! 01834121 a 0101 | not planted in pots -01834304 00 a 01 practical 0 016 ^ 00013160 a 0000 ^ 01821266 a 0000 ^ 01939984 a 0000 ^ 02123812 a 0000 = 05151088 n 0000 + 00410247 n 0101 + 05151088 n 0101 ! 01836350 a 0101 & 01834812 a 0000 & 01835023 a 0000 & 01835276 a 0000 & 01835409 a 0000 & 01835663 a 0000 & 01835843 a 0000 & 01836025 a 0000 & 01836117 a 0000 | concerned with actual use or practice; "he is a very practical person"; "the idea had no practical application"; "a practical knowledge of Japanese"; "woodworking is a practical art" -01834812 00 s 02 applicative 0 applicatory 0 007 & 01834304 a 0000 + 02707429 v 0202 + 01158872 v 0204 + 02707429 v 0102 + 02676789 v 0101 + 02560164 v 0103 + 01158872 v 0104 | readily applicable or practical -01835023 00 s 01 functional 0 002 & 01834304 a 0000 + 05151372 n 0101 | designed for or adapted to a function or use; "functional education selects knowledge that is concrete and usable rather than abstract and theoretical"; "functional architecture" -01835276 00 s 01 interoperable 0 003 & 01834304 a 0000 ;c 06128570 n 0000 + 05200816 n 0101 | able to exchange and use information -01835409 00 s 03 matter-of-fact 0 pragmatic 0 pragmatical 0 003 & 01834304 a 0000 + 05151869 n 0302 + 05151869 n 0202 | concerned with practical matters; "a matter-of-fact (or pragmatic) approach to the problem"; "a matter-of-fact account of the trip" -01835663 00 s 02 operable 0 practicable 0 003 & 01834304 a 0000 + 05152150 n 0202 + 05152150 n 0201 | usable for a specific purpose; "an operable plan"; "a practicable solution" -01835843 00 s 01 serviceable 0 003 & 01834304 a 0000 + 05150129 n 0102 + 05150129 n 0101 | intended or able to serve a purpose without elaboration; "serviceable low-heeled shoes"; -01836025 00 s 01 unimaginative 0 001 & 01834304 a 0000 | dealing only with concrete facts -01836117 00 s 01 working 0 001 & 01834304 a 0000 | adequate for practical use; especially sufficient in strength or numbers to accomplish something; "the party has a working majority in the House"; "a working knowledge of Spanish" -01836350 00 a 01 impractical 0 009 ^ 01823092 a 0000 ^ 01941999 a 0000 = 05151088 n 0000 ! 01834304 a 0101 & 01836766 a 0000 & 01837025 a 0000 & 01837182 a 0000 & 01837487 a 0000 & 01837605 a 0000 | not practical; not workable or not given to practical matters; "refloating the ship proved impractical because of the expense"; "he is intelligent but too impractical for commercial work"; "an impractical solution" -01836766 00 s 04 crazy 0 half-baked 0 screwball 0 softheaded 0 004 & 01836350 a 0000 ;u 07075172 n 0000 + 09974496 n 0306 + 00512843 n 0104 | foolish; totally unsound; "a crazy scheme"; "half-baked ideas"; "a screwball proposal without a prayer of working" -01837025 00 s 05 meshugge 0 meshugga 0 meshuga 0 meshuggeneh 0 meshuggener 0 003 & 01836350 a 0000 ;c 06951067 n 0000 + 10310516 n 0401 | senseless; crazy -01837182 00 s 03 quixotic 0 romantic 0 wild-eyed 0 003 & 01836350 a 0000 + 05152902 n 0201 + 06369216 n 0201 | not sensible about practical matters; idealistic and unrealistic; "as quixotic as a restoration of medieval knighthood"; "a romantic disregard for money"; "a wild-eyed dream of a world state" -01837487 00 s 01 unfunctional 0 001 & 01836350 a 0000 | not related to or suitable for everyday needs or activities -01837605 00 s 01 unwieldy 0 002 & 01836350 a 0000 + 04712130 n 0101 | difficult to work or manipulate; "unwieldy rules and regulations" -01837744 00 a 01 precise 0 014 ^ 00021766 a 0000 ^ 00779374 a 0000 ^ 00914421 a 0000 ^ 01103021 a 0000 + 04821451 n 0101 ! 01839417 a 0101 & 01838151 a 0000 & 01838253 a 0000 & 01838379 a 0000 & 01838529 a 0000 & 01838772 a 0000 & 01838916 a 0000 & 01839099 a 0000 & 01839317 a 0000 | sharply exact or accurate or delimited; "a precise mind"; "specified a precise amount"; "arrived at the precise moment" -01838151 00 s 01 dead 0 001 & 01837744 a 0000 | unerringly accurate; "a dead shot"; "took dead aim" -01838253 00 s 01 fine 0 001 & 01837744 a 0000 | minutely precise especially in differences in meaning; "a fine distinction" -01838379 00 s 02 finespun 0 hairsplitting 0 002 & 01837744 a 0000 + 05749210 n 0201 | developed in excessively fine detail; "finespun distinctions" -01838529 00 s 02 meticulous 0 punctilious 0 004 & 01837744 a 0000 + 04672605 n 0203 + 04672605 n 0102 + 04672605 n 0101 | marked by precise accordance with details; "meticulous research"; "punctilious in his attention to rules of etiquette" -01838772 00 s 01 microscopic 0 001 & 01837744 a 0000 | extremely precise with great attention to details; "examined it with microscopic care" -01838916 00 s 02 nice 2 skillful 0 001 & 01837744 a 0000 | done with delicacy and skill; "a nice bit of craft"; "a job requiring nice measurements with a micrometer"; "a nice shot" -01839099 00 s 02 on_the_nose 0 on_the_button 0 001 & 01837744 a 0000 | being precise with regard to a prescribed or specified criterion; "his guess was on the nose"; "the prediction for snow was right on the button" -01839317 00 s 01 very(a) 0 001 & 01837744 a 0000 | precisely as stated; "the very center of town" -01839417 00 a 01 imprecise 0 006 ^ 01101391 a 0000 ^ 00023383 a 0000 ^ 00915787 a 0000 + 04804787 n 0101 ! 01837744 a 0101 & 01839663 a 0000 | not precise; "imprecise astronomical observations"; "the terms he used were imprecise and emotional" -01839663 00 s 01 general 0 001 & 01839417 a 0000 | somewhat indefinite; "bearing a general resemblance to the original"; "a general description of the merchandise" -01839829 00 a 01 precocious 0 005 ^ 01334398 a 0000 + 05620294 n 0101 + 05620294 n 0102 ! 01840366 a 0101 & 01840121 a 0000 | characterized by or characteristic of exceptionally early development or maturity (especially in mental aptitude); "a precocious child"; "a precocious achievement" -01840121 00 s 01 advanced 0 001 & 01839829 a 0000 | farther along in physical or mental development; "the child's skeletal age was classified as `advanced'"; "children in the advanced classes in elementary school read far above grade average" -01840366 00 a 01 retarded 0 008 ^ 01336587 a 0000 ! 01839829 a 0101 & 01840673 a 0000 & 01840880 a 0000 & 01841054 a 0000 & 01841179 a 0000 & 01841295 a 0000 & 01841390 a 0000 | relatively slow in mental or emotional or physical development; "providing a secure and sometimes happy life for the retarded" -01840673 00 s 04 backward 0 half-witted 0 slow-witted 0 feebleminded 0 005 & 01840366 a 0000 ;u 07073447 n 0000 + 05646723 n 0401 + 05645854 n 0303 + 05646218 n 0103 | retarded in intellectual development -01840880 00 s 03 imbecile 0 imbecilic 0 idiotic 0 004 & 01840366 a 0000 + 10197525 n 0301 + 10197525 n 0202 + 05647015 n 0101 | having a mental age of three to seven years -01841054 00 s 01 moronic 0 002 & 01840366 a 0000 + 10197525 n 0104 | having a mental age of between eight and twelve years -01841179 00 s 01 cretinous 0 003 & 01840366 a 0000 + 10197525 n 0103 + 14121667 n 0101 | afflicted with cretinism -01841295 00 s 01 delayed 0 001 & 01840366 a 0000 | not as far along as normal in development -01841390 00 s 03 dim-witted 0 simple 0 simple-minded 0 003 & 01840366 a 0000 + 04881369 n 0301 + 04881369 n 0202 | lacking mental capacity and subtlety -01841544 00 a 01 predictable 0 005 ^ 00340239 a 0000 + 04756025 n 0101 ! 01842001 a 0101 & 01841699 a 0000 & 01841834 a 0000 | capable of being foretold -01841699 00 s 01 foreseeable 0 001 & 01841544 a 0000 | capable of being anticipated; "foreseeable costs were well within the budget" -01841834 00 s 01 inevitable 0 003 & 01841544 a 0000 + 04754056 n 0102 + 04754056 n 0101 | invariably occurring or appearing; "the inevitable changes of the seasons" -01842001 00 a 01 unpredictable 0 007 ^ 00341405 a 0000 + 04758313 n 0101 ! 01841544 a 0101 & 01842198 a 0000 & 01842304 a 0000 & 01842468 a 0000 & 01842643 a 0000 | not capable of being foretold -01842198 00 s 01 aleatory 0 001 & 01842001 a 0000 | dependent on chance; "the aleatory element in life" -01842304 00 s 02 capricious 0 freakish 0 003 & 01842001 a 0000 + 04798185 n 0202 + 04735075 n 0101 | changeable; "a capricious summer breeze"; "freakish weather" -01842468 00 s 02 episodic 0 occasional 0 001 & 01842001 a 0000 | occurring or appearing at usually irregular intervals; "episodic in his affections"; "occasional headaches" -01842643 00 s 01 unforeseeable 0 001 & 01842001 a 0000 | incapable of being anticipated; "unforeseeable consequences" -01842763 00 a 01 premeditated 0 004 ^ 01337486 a 0000 ^ 01797148 a 0000 ! 01843092 a 0101 & 01842963 a 0000 | characterized by deliberate purpose and some degree of planning; "a premeditated crime" -01842963 00 s 03 aforethought(ip) 0 planned 0 plotted 0 001 & 01842763 a 0000 | planned in advance; "with malice aforethought" -01843092 00 a 01 unpremeditated 0 003 ^ 01797862 a 0000 ! 01842763 a 0101 & 01843205 a 0000 | not premeditated -01843205 00 s 01 impulsive 0 002 & 01843092 a 0000 + 04662504 n 0101 | without forethought; "letting him borrow her car was an impulsive act that she immediately regretted" -01843380 00 a 01 prepared 0 013 ^ 01930512 a 0000 + 14031108 n 0102 ! 01845160 a 0101 & 01843746 a 0000 & 01843906 a 0000 & 01844002 a 0000 & 01844141 a 0000 & 01844241 a 0000 & 01844441 a 0000 & 01844585 a 0000 & 01844742 a 0000 & 01844858 a 0000 & 01845002 a 0000 | made ready or fit or suitable beforehand; "a prepared statement"; "be prepared for emergencies" -01843746 00 s 01 braced 0 001 & 01843380 a 0000 | positioned so as to be ready for confrontation or danger; "he stood to attention with his shoulders braced" -01843906 00 s 01 embattled 0 001 & 01843380 a 0000 | prepared for battle; "an embattled city" -01844002 00 s 02 equipped 0 fitted_out(p) 0 001 & 01843380 a 0000 | prepared with proper equipment; "equipped for service in the Arctic" -01844141 00 s 01 oven-ready 0 001 & 01843380 a 0000 | prepared before sale and ready to be cooked -01844241 00 s 01 preconditioned 0 001 & 01843380 a 0000 | having already been put into a suitable condition; "a surface preconditioned to receive paint"; "customers preconditioned to buy a product" -01844441 00 s 01 precooked 0 001 & 01843380 a 0000 | cooked partially or completely beforehand; "frozen precooked meals from the supermarket" -01844585 00 s 01 processed 0 001 & 01843380 a 0000 | subjected to a special process or treatment; "prepared ergot"; "processed cheeses are easy to spread" -01844742 00 s 01 ready 0 001 & 01843380 a 0000 | made suitable and available for immediate use; "dinner is ready" -01844858 00 s 01 spread 0 001 & 01843380 a 0000 | prepared or arranged for a meal; especially having food set out; "a table spread with food" -01845002 00 s 01 up(p) 0 001 & 01843380 a 0000 | (usually followed by `on' or `for') in readiness; "he was up on his homework"; "had to be up for the game" -01845160 00 a 01 unprepared 0 004 ^ 01932234 a 0000 ! 01843380 a 0101 & 01845451 a 0000 & 01845921 a 0000 | without preparation; not prepared for; "unprepared remarks"; "the shock was unprepared"; "our treaty makers approached their immensely difficult problems unprepared"- R.E.Danielson -01845451 00 s 09 ad-lib 0 extemporaneous 0 extemporary 0 extempore 0 impromptu 0 offhand 0 offhanded 0 off-the-cuff 0 unrehearsed 0 001 & 01845160 a 0000 | with little or no preparation or forethought; "his ad-lib comments showed poor judgment"; "an extemporaneous piano recital"; "an extemporary lecture"; "an extempore skit"; "an impromptu speech"; "offhand excuses"; "trying to sound offhanded and reassuring"; "an off-the-cuff toast"; "a few unrehearsed comments" -01845921 00 s 01 spur-of-the-moment 0 001 & 01845160 a 0000 | in response to an unforeseen need; "a spur-of-the-moment party" -01846049 00 a 01 prescription(a) 0 002 ;c 03740161 n 0000 ! 01846204 a 0101 | available only with a doctor's written prescription; "a prescription drug" -01846204 00 a 02 nonprescription(a) 0 over-the-counter(a) 0 002 ;c 03740161 n 0000 ! 01846049 a 0101 | purchasable without a doctor's prescription; "nonprescription drugs"; "an over-the-counter cold remedy" -01846413 00 a 01 present 2 013 = 13957601 n 0000 + 13268842 n 0101 + 13957601 n 0101 + 08642632 n 0101 + 05917174 n 0101 + 01233802 n 0101 ! 01847672 a 0101 & 01846815 a 0000 & 01847022 a 0000 & 01847101 a 0000 & 01847242 a 0000 & 01847349 a 0000 & 01847515 a 0000 | being or existing in a specified place; "the murderer is present in this room"; "present at the wedding"; "present at the creation" -01846815 00 s 01 attendant 0 005 & 01846413 a 0000 + 09608002 n 0101 + 15284999 n 0101 + 08185063 n 0101 + 01233397 n 0101 | being present (at meeting or event etc.) "attendant members of the congreation" -01847022 00 s 01 ever-present 0 001 & 01846413 a 0000 | being always present -01847101 00 s 01 existing 0 001 & 01846413 a 0000 | existing in something specified; "depletion of the oxygen existing in the bloodstream" -01847242 00 s 01 here(p) 0 002 & 01846413 a 0000 + 13958672 n 0101 | being here now; "is everyone here?" -01847349 00 s 01 naturally_occurring 0 001 & 01846413 a 0000 | existing by nature and without artificial aid; "one of the 93 naturally occurring chemical elements" -01847515 00 s 02 omnipresent 0 ubiquitous 0 004 & 01846413 a 0000 + 13958456 n 0202 + 13958456 n 0201 + 13958456 n 0103 | being present everywhere at once -01847672 00 a 01 absent 0 007 = 13957601 n 0000 + 13960974 n 0101 + 01234345 n 0101 ! 01846413 a 0101 & 01847864 a 0000 & 01848056 a 0000 & 01848171 a 0000 | not being in a specified place -01847864 00 s 01 away(p) 0 002 & 01847672 a 0000 + 13961273 n 0101 | not present; having left; "he's away right now"; "you must not allow a stranger into the house when your mother is away" -01848056 00 s 01 introuvable 0 001 & 01847672 a 0000 | impossible to find; "the book is practically introuvable" -01848171 00 s 02 truant 0 awol 0 003 & 01847672 a 0000 + 09757836 n 0201 + 01234612 n 0101 | absent without permission; "truant schoolboys"; "the soldier was AWOL for almost a week" -01848355 00 a 02 ostentatious 0 pretentious 4 007 + 04817923 n 0205 + 06889330 n 0101 + 04789274 n 0101 + 04817923 n 0102 ! 01848970 a 0101 & 01848611 a 0000 & 01848701 a 0000 | intended to attract notice and impress others; "an ostentatious sable coat" -01848611 00 s 01 flaunty 0 002 & 01848355 a 0000 + 06890846 n 0101 | inclined to flaunt -01848701 00 s 03 flamboyant 0 showy 0 splashy 0 006 & 01848355 a 0000 + 13978166 n 0302 + 04817923 n 0307 + 00755277 n 0202 + 04699936 n 0204 + 04699936 n 0101 | marked by ostentation but often tasteless; "a cheap showy rhinestone bracelet"; "a splashy half-page ad" -01848970 00 a 03 unostentatious 0 unpretentious 4 unpretending 0 003 + 04787154 n 0201 ! 01848355 a 0101 & 01849170 a 0000 | not ostentatious; "his unostentatious office"; "unostentatious elegance" -01849170 00 s 02 quiet 0 restrained 0 001 & 01848970 a 0000 | not showy or obtrusive; "clothes in quiet good taste" -01849288 00 a 01 pretentious 0 013 ^ 02393401 a 0000 + 06759349 n 0101 + 04788982 n 0101 ! 01851523 a 0101 & 01849740 a 0000 & 01849844 a 0000 & 01849960 a 0000 & 01850288 a 0000 & 01850446 a 0000 & 01850742 a 0000 & 01850862 a 0000 & 01851118 a 0000 & 01851330 a 0000 | making claim to or creating an appearance of (often undeserved) importance or distinction; "a pretentious country house"; "a pretentious fraud"; "a pretentious scholarly edition" -01849740 00 s 01 arty 0 002 & 01849288 a 0000 + 02743547 n 0101 | showily imitative of art or artists -01849844 00 s 02 artsy-craftsy 0 arty-crafty 0 001 & 01849288 a 0000 | pretentiously artistic; cloyingly charming -01849960 00 s 05 grandiloquent 0 overblown 0 pompous 0 pontifical 0 portentous 0 004 & 01849288 a 0000 + 06880134 n 0302 + 04817923 n 0303 + 04817923 n 0304 | puffed up with vanity; "a grandiloquent and boastful manner"; "overblown oratory"; "a pompous speech"; "pseudo-scientific gobbledygook and pontifical hooey"- Newsweek -01850288 00 s 06 grandiose 0 hifalutin 0 highfalutin 0 highfaluting 0 hoity-toity 0 la-di-da 0 002 & 01849288 a 0000 + 07070429 n 0101 | affectedly genteel -01850446 00 s 03 high-flown 0 high-sounding 0 inflated 0 002 & 01849288 a 0000 ;u 07075172 n 0000 | pretentious (especially with regard to language or ideals); "high-flown talk of preserving the moral tone of the school"; "a high-sounding dissertation on the means to attain social revolution" -01850742 00 s 01 jumped-up 0 003 & 01849288 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) upstart -01850862 00 s 04 nouveau-riche 0 parvenu 0 parvenue 0 upstart(a) 0 003 & 01849288 a 0000 + 10740868 n 0202 + 10740868 n 0103 | characteristic of someone who has risen economically or socially but lacks the social skills appropriate for this new position -01851118 00 s 01 sententious 0 001 & 01849288 a 0000 | abounding in or given to pompous or aphoristic moralizing; "too often the significant episode deteriorates into sententious conversation"- Kathleen Barnes -01851330 00 s 01 sesquipedalian 0 002 & 01849288 a 0000 + 07087940 n 0101 | given to the overuse of long words; "sesquipedalian orators"; "this sesquipedalian way of saying one has no money" -01851523 00 a 01 unpretentious 0 007 ^ 01791911 a 0000 ^ 02392878 a 0000 + 04787154 n 0101 ! 01849288 a 0101 & 01851795 a 0000 & 01851916 a 0000 & 01852107 a 0000 | lacking pretension or affectation; "an unpretentious country church"; "her quiet unpretentious demeanor" -01851795 00 s 01 honest 0 001 & 01851523 a 0000 | without pretensions; "worked at an honest trade"; "good honest food" -01851916 00 s 01 modest 0 001 & 01851523 a 0000 | free from pomp or affectation; "comfortable but modest cottages"; "a simple rectangular brick building"; "a simple man with simple tastes" -01852107 00 s 01 unpompous 0 001 & 01851523 a 0000 | not pompous -01852174 00 a 01 primary 0 010 ^ 00900616 a 0000 ^ 01010862 a 0000 ^ 01686439 a 0000 ! 01853461 a 0101 & 01852548 a 0000 & 01852666 a 0000 & 01852812 a 0000 & 01852924 a 0000 & 01853039 a 0000 & 01853228 a 0000 | of first rank or importance or value; direct and immediate rather than secondary; "primary goals"; "a primary effect"; "primary sources"; "a primary interest" -01852548 00 s 01 capital 0 001 & 01852174 a 0000 | of primary importance; "our capital concern was to avoid defeat" -01852666 00 s 01 direct 0 002 & 01852174 a 0000 + 04918210 n 0101 | being an immediate result or consequence; "a direct result of the accident" -01852812 00 s 01 firsthand 0 001 & 01852174 a 0000 | received directly from a source; "firsthand information" -01852924 00 s 01 first-string 0 001 & 01852174 a 0000 | being a regular member of a team; "first-string players" -01853039 00 s 01 original 0 001 & 01852174 a 0000 | (of e.g. information) not secondhand or by way of something intermediary; "his work is based on only original, not secondary, sources" -01853228 00 s 02 particular 0 special 0 003 & 01852174 a 0000 + 04763925 n 0202 + 05159225 n 0206 | first and most important; "his special interest is music"; "she gets special (or particular) satisfaction from her volunteer work" -01853461 00 a 01 secondary 1 014 ^ 00902652 a 0000 ^ 01688271 a 0000 ! 01852174 a 0101 & 01853934 a 0000 & 01854129 a 0000 & 01854420 a 0000 & 01854546 a 0000 & 01854702 a 0000 & 01854935 a 0000 & 01855086 a 0000 & 01855204 a 0000 & 01855348 a 0000 & 01855446 a 0000 & 01855621 a 0000 | being of second rank or importance or value; not direct or immediate; "the stone will be hauled to a secondary crusher"; "a secondary source"; "a secondary issue"; "secondary streams" -01853934 00 s 03 alternate 0 alternative 0 substitute 0 004 & 01853461 a 0000 + 10648237 n 0302 + 05696425 n 0301 + 10680153 n 0102 | serving or used in place of another; "an alternative plan" -01854129 00 s 04 auxiliary 0 subsidiary 0 supplemental 0 supplementary 0 007 & 01853461 a 0000 + 02671421 n 0403 + 02671421 n 0303 + 10669991 n 0202 + 08003935 n 0202 + 13951984 n 0202 + 09780249 n 0102 | functioning in a supporting capacity; "the main library and its auxiliary branches" -01854420 00 s 01 collateral 0 001 & 01853461 a 0000 | accompany, concomitant; "collateral target damage from a bombing run" -01854546 00 s 01 indirect 0 002 & 01853461 a 0000 + 04919209 n 0101 | not as a direct effect or consequence; "indirect benefits"; "an indirect advantage" -01854702 00 s 01 secondhand 0 001 & 01853461 a 0000 | derived from what is primary or original; not firsthand; "a secondhand report"; "a secondhand account of a memory of something once read"; "most of our knowledge is secondhand" -01854935 00 s 01 second-string 0 001 & 01853461 a 0000 | being a replacement or substitute for a regular member of a team; "a second-string pitcher" -01855086 00 s 01 standby 0 001 & 01853461 a 0000 | ready for emergency use; "a standby generator"; "a standby crew" -01855204 00 s 01 thirdhand 0 001 & 01853461 a 0000 | derived from what is primary or original by two intermediate steps; "a thirdhand report" -01855348 00 s 01 tributary 0 001 & 01853461 a 0000 | (of a stream) flowing into a larger stream -01855446 00 s 02 utility(a) 0 substitute(a) 2 002 & 01853461 a 0000 + 10671042 n 0201 | capable of substituting in any of several positions on a team; "a utility infielder" -01855621 00 s 01 vicarious 0 001 & 01853461 a 0000 | experienced at secondhand; "read about mountain climbing and felt vicarious excitement" -01855764 00 a 01 basic 0 006 ! 01856929 a 0101 & 01856066 a 0000 & 01856238 a 0000 & 01856419 a 0000 & 01856686 a 0000 & 01856802 a 0000 | pertaining to or constituting a base or basis; "a basic fact"; "the basic ingredients"; "basic changes in public opinion occur because of changes in priorities" -01856066 00 s 02 basal 0 base 0 002 & 01855764 a 0000 + 03387016 n 0102 | serving as or forming a base; "the painter applied a base coat followed by two finishing coats" -01856238 00 s 03 elementary 0 elemental 0 primary 0 002 & 01855764 a 0000 + 03081021 n 0103 | of or being the essential or basic part; "an elementary need for love and nurturing" -01856419 00 s 03 fundamental 0 rudimentary 0 underlying 0 001 & 01855764 a 0000 | being or involving basic facts or principles; "the fundamental laws of the universe"; "a fundamental incomatibility between them"; "these rudimentary truths"; "underlying principles" -01856686 00 s 01 grassroots 0 001 & 01855764 a 0000 | fundamental; "the grassroots factor in making the decision" -01856802 00 s 01 radical 0 001 & 01855764 a 0000 | arising from or going to the root or source; "a radical flaw in the plan" -01856929 00 a 02 incidental 0 incident 0 005 ! 01855764 a 0101 & 01857410 a 0000 & 01857527 a 0000 & 01857743 a 0000 & 01857956 a 0000 | (sometimes followed by `to') minor or casual or subordinate in significance or nature or occurring as a chance concomitant or consequence; "incidental expenses"; "the road will bring other incidental advantages"; "extra duties incidental to the job"; "labor problems incidental to a rapid expansion"; "confusion incidental to a quick change" -01857410 00 s 01 omissible 0 003 & 01856929 a 0000 + 00615774 v 0105 + 00614999 v 0103 | capable of being left out -01857527 00 s 02 parenthetic 0 parenthetical 0 004 & 01856929 a 0000 + 06315873 n 0202 + 06600684 n 0205 + 06600684 n 0105 | qualifying or explaining; placed or as if placed in parentheses; "parenthetical remarks" -01857743 00 s 01 peripheral 0 001 & 01856929 a 0000 | related to the key issue but not of central importance; "a peripheral interest"; "energy is far from a peripheral issue in the economy"; "peripheral issues" -01857956 00 s 01 secondary 0 001 & 01856929 a 0000 | depending on or incidental to what is original or primary; "a secondary infection" -01858094 00 a 01 private 0 018 ^ 00898963 a 0000 ^ 01767329 a 0000 + 04622932 n 0102 ! 01861205 a 0101 & 01858740 a 0000 & 01859055 a 0000 & 01859368 a 0000 & 01859466 a 0000 & 01859571 a 0000 & 01859801 a 0000 & 01859970 a 0000 & 01860207 a 0000 & 01860328 a 0000 & 01860465 a 0000 & 01860580 a 0000 & 01860765 a 0000 & 01860890 a 0000 & 01861095 a 0000 | confined to particular persons or groups or providing privacy; "a private place"; "private discussions"; "private lessons"; "a private club"; "a private secretary"; "private property"; "the former President is now a private citizen"; "public figures struggle to maintain a private life" -01858740 00 s 05 clannish 0 cliquish 0 clubby 0 snobbish 0 snobby 0 006 & 01858094 a 0000 + 10617024 n 0501 + 04889162 n 0403 + 08227214 n 0301 + 04889337 n 0202 + 04889337 n 0101 | befitting or characteristic of those who incline to social exclusiveness and who rebuff the advances of people considered inferior -01859055 00 s 04 cloistered 0 reclusive 0 secluded 2 sequestered 0 002 & 01858094 a 0000 + 04622772 n 0201 | providing privacy or seclusion; "the cloistered academic world of books"; "sat close together in the sequestered pergola"; "sitting under the reclusive calm of a shade tree"; "a secluded romantic spot" -01859368 00 s 01 close 0 001 & 01858094 a 0000 | confined to specific persons; "a close secret" -01859466 00 s 01 closed-door 0 001 & 01858094 a 0000 | not open to the public; "a closed-door meeting" -01859571 00 s 02 confidential 2 secret 0 003 & 01858094 a 0000 + 06673435 n 0101 + 05615749 n 0101 | (of information) given in confidence or in secret; "this arrangement must be kept confidential"; "their secret communications" -01859801 00 s 01 confidential 0 002 & 01858094 a 0000 + 13929852 n 0101 | entrusted with private information and the confidence of another; "a confidential secretary" -01859970 00 s 01 insular 0 002 & 01858094 a 0000 + 14415518 n 0102 | suggestive of the isolated life of an island; "an exceedingly insular man; so deeply private as to seem inaccessible to the scrutiny of a novelist"- Leonard Michaels -01860207 00 s 01 nonpublic 0 001 & 01858094 a 0000 | not invested with or related to prominent position or status etc. -01860328 00 s 02 offstage 0 backstage 0 001 & 01858094 a 0000 | concealed from public view or attention; "offstage political meetings" -01860465 00 s 01 one-on-one 0 001 & 01858094 a 0000 | directly between two individuals; "one-on-one instruction" -01860580 00 s 03 privy 0 secluded 0 secret 2 001 & 01858094 a 0000 | hidden from general view or use; "a privy place to rest and think"; "a secluded romantic spot"; "a secret garden" -01860765 00 s 01 semiprivate 0 001 & 01858094 a 0000 | confined to a small number of hospital patients; "semiprivate room" -01860890 00 s 02 tete-a-tete 0 head-to-head 0 003 & 01858094 a 0000 + 03693474 n 0103 + 07142107 n 0101 | involving two persons; intimately private; "a tete-a-tete supper"; "a head-to-head conversation" -01861095 00 s 01 toffee-nosed 0 002 & 01858094 a 0000 ;r 08860123 n 0000 | snobbish; pretentiously superior -01861205 00 a 01 public 0 010 ^ 00900478 a 0000 ^ 01704761 a 0000 + 04720536 n 0101 ! 01858094 a 0101 & 01861648 a 0000 & 01861776 a 0000 & 01861910 a 0000 & 01862055 a 0000 & 01862161 a 0000 & 01862296 a 0000 | not private; open to or concerning the people as a whole; "the public good"; "public libraries"; "public funds"; "public parks"; "a public scandal"; "public gardens"; "performers and members of royal families are public figures" -01861648 00 s 01 in_the_public_eye(p) 0 001 & 01861205 a 0000 | of great interest to the public; "a person in the public eye" -01861776 00 s 01 national 0 001 & 01861205 a 0000 | owned or maintained for the public by the national government; "national parks" -01861910 00 s 01 open 0 002 & 01861205 a 0000 + 05612809 n 0101 | open to or in view of all; "an open protest"; "an open letter to the editor" -01862055 00 s 01 semipublic 0 001 & 01861205 a 0000 | having some of the features of public institution -01862161 00 s 01 state-supported 0 001 & 01861205 a 0000 | supported and operated by the government of a state; "a state university" -01862296 00 s 02 unexclusive 0 unrestricted 0 001 & 01861205 a 0000 | accessible to all -01862386 00 a 01 exclusive 0 008 + 00796588 v 0103 + 04889337 n 0103 ! 01863680 a 0101 & 01862697 a 0000 & 01862891 a 0000 & 01863066 a 0000 & 01863246 a 0000 & 01863442 a 0000 | excluding much or all; especially all but a particular group or minority; "exclusive clubs"; "an exclusive restaurants and shops" -01862697 00 s 02 alone(p) 0 only 0 001 & 01862386 a 0000 | exclusive of anyone or anything else; "she alone believed him"; "cannot live by bread alone"; "I'll have this car and this car only" -01862891 00 s 01 inner 0 001 & 01862386 a 0000 | exclusive to a center; especially a center of influence; "inner regions of the organization"; "inner circles of government" -01863066 00 s 03 inside 0 inner 2 privileged 0 001 & 01862386 a 0000 | confined to an exclusive group; "privy to inner knowledge"; "inside information"; "privileged information" -01863246 00 s 01 selective 0 003 & 01862386 a 0000 + 00674607 v 0103 + 05208988 n 0101 | characterized by very careful or fastidious selection; "the school was very selective in its admissions" -01863442 00 s 01 white-shoe 0 002 & 01862386 a 0000 ;u 07075172 n 0000 | denoting a company or law firm owned and run by members of the WASP elite who are generally conservative; "the politician tried to hide his white-shoe background" -01863680 00 a 01 inclusive 0 003 + 00684838 v 0101 ! 01862386 a 0101 & 01863970 a 0000 | including much or everything; and especially including stated limits; "an inclusive art form"; "an inclusive fee"; "his concept of history is modern and inclusive"; "from Monday to Friday inclusive" -01863970 00 s 01 comprehensive 0 003 & 01863680 a 0000 + 02629793 v 0103 + 05618293 n 0102 | broad in scope; "a comprehensive survey of world affairs" -01864123 00 a 01 privileged 0 004 ^ 01047874 a 0000 ^ 02021905 a 0000 ! 01864471 a 0101 & 01864279 a 0000 | blessed with privileges; "the privileged few" -01864279 00 s 01 sweetheart 0 001 & 01864123 a 0000 | privileged treatment of a favored person or corporation (sometimes unethically); "another sweetheart deal based on political influence" -01864471 00 a 01 underprivileged 0 005 ^ 02022953 a 0000 ^ 01049462 a 0000 ! 01864123 a 0101 & 01864666 a 0000 & 01865043 a 0000 | lacking the rights and advantages of other members of society -01864666 00 s 02 deprived 0 disadvantaged 0 001 & 01864471 a 0000 | marked by deprivation especially of the necessities of life or healthful environmental influences; "a childhood that was unhappy and deprived, the family living off charity"; "boys from a deprived environment, wherein the family life revealed a pattern of neglect, moral degradation, and disregard for law" -01865043 00 s 01 underclass(a) 0 001 & 01864471 a 0000 | belonging to the lowest and least privileged social stratum; "underclass mothers and children" -01865197 00 a 01 productive 0 015 ^ 00643250 a 0000 ^ 01001689 a 0000 ^ 01080297 a 0000 ^ 01870889 a 0000 ^ 02331262 a 0000 + 05147940 n 0101 + 05147940 n 0102 ! 01866535 a 0101 & 01865640 a 0000 & 01865807 a 0000 & 01865967 a 0000 & 01866129 a 0000 & 01866243 a 0000 & 01866336 a 0000 & 01866429 a 0000 | producing or capable of producing (especially abundantly); "productive farmland"; "his productive years"; "a productive collaboration" -01865640 00 s 02 amentiferous 0 amentaceous 0 003 & 01865197 a 0000 ;c 00017222 n 0000 + 11674798 n 0202 | (of plants) bearing or characterized by aments or catkins -01865807 00 s 04 arable 0 cultivable 0 cultivatable 0 tillable 0 002 & 01865197 a 0000 + 04715818 n 0101 | (of farmland) capable of being farmed productively -01865967 00 s 03 fecund 0 fertile 2 prolific 0 002 & 01865197 a 0000 + 05625066 n 0101 | intellectually productive; "a prolific writer"; "a fecund imagination" -01866129 00 s 01 fur-bearing 0 001 & 01865197 a 0000 | of animals having fur (especially of commercial quality) -01866243 00 s 01 nut-bearing 0 001 & 01865197 a 0000 | (of shrubs or trees) producing nuts -01866336 00 s 01 oil-bearing 0 001 & 01865197 a 0000 | containing oil; "oil-bearing shale" -01866429 00 s 01 rich 2 002 & 01865197 a 0000 + 05147586 n 0101 | very productive; "rich seams of coal" -01866535 00 a 01 unproductive 0 008 ^ 01002377 a 0000 ^ 00644372 a 0000 ^ 01871949 a 0000 + 05148539 n 0101 ! 01865197 a 0101 & 01866812 a 0000 & 01867052 a 0000 & 01867189 a 0000 | not producing or capable of producing; "elimination of high-cost or unproductive industries" -01866812 00 s 05 bootless 0 fruitless 0 futile 0 sleeveless 0 vain 0 002 & 01866535 a 0000 + 05148186 n 0201 | unproductive of success; "a fruitless search"; "futile years after her artistic peak"; "a sleeveless errand"; "a vain attempt" -01867052 00 s 01 dry 0 001 & 01866535 a 0000 | unproductive especially of the expected results; "a dry run"; "a mind dry of new ideas" -01867189 00 s 01 nonproductive 0 001 & 01866535 a 0000 | not directly productive; "nonproductive labor" -01867295 00 a 02 generative 0 productive 4 004 + 05147940 n 0201 + 01628197 v 0101 + 01627355 v 0101 ! 01867502 a 0101 | having the ability to produce or originate; "generative power"; "generative forces" -01867502 00 a 01 consumptive 0 004 + 01157517 v 0101 + 01156834 v 0101 ! 01867295 a 0101 & 01867768 a 0000 | tending to consume or use often wastefully; "water suitable for beneficial consumptive uses"; "duties consumptive of time and energy"; "consumptive fires" -01867768 00 s 03 exploitative 0 exploitatory 0 exploitive 0 007 & 01867502 a 0000 + 02409148 v 0302 + 01162754 v 0301 + 02409148 v 0202 + 01162754 v 0201 + 02409148 v 0102 + 01162754 v 0101 | tending to exploit or make use of -01867996 00 a 02 reproducible 0 consistent 4 003 + 04806169 n 0101 ! 01868302 a 0101 & 01868185 a 0000 | capable of being reproduced; "astonishingly reproducible results can be obtained" -01868185 00 s 02 duplicable 0 duplicatable 0 002 & 01867996 a 0000 + 04806169 n 0102 | capable of being duplicated -01868302 00 a 02 unreproducible 0 irreproducible 0 004 + 04806316 n 0201 ! 01867996 a 0101 & 01868470 a 0000 & 01868578 a 0000 | impossible to reproduce or duplicate -01868470 00 s 01 inimitable 0 001 & 01868302 a 0000 | defying imitation; matchless; "an inimitable style" -01868578 00 s 01 unrepeatable 0 001 & 01868302 a 0000 | unique; "dogs and mice and flies are as unrepeatable as men are"- Theodosius Dobzhansky -01868724 00 a 01 professional 1 003 ! 01869370 a 0101 & 01869126 a 0000 & 01869258 a 0000 | engaged in a profession or engaging in as a profession or means of livelihood; "the professional man or woman possesses distinctive qualifications"; "began her professional career after the Olympics"; "professional theater"; "professional football"; "a professional cook"; "professional actors and athletes" -01869126 00 s 02 nonrecreational 0 paid 0 001 & 01868724 a 0000 | involving gainful employment in something often done as a hobby -01869258 00 s 01 professed(a) 0 001 & 01868724 a 0000 | professing to be qualified; "a professed philosopher" -01869370 00 a 01 nonprofessional 0 003 ! 01868724 a 0101 & 01869634 a 0000 & 01869975 a 0000 | not professional; not engaged in a profession or engaging in as a profession or for gain; "the nonprofessional wives of his male colleagues"; "nonprofessional actors" -01869634 00 s 03 amateur 0 recreational 0 unpaid 0 003 & 01869370 a 0000 + 09786760 n 0101 + 09786585 n 0101 | engaged in as a pastime; "an amateur painter"; "gained valuable experience in amateur theatricals"; "recreational golfers"; "reading matter that is both recreational and mentally stimulating"; "unpaid extras in the documentary" -01869975 00 s 01 lay 0 001 & 01869370 a 0000 | not of or from a profession; "a lay opinion as to the cause of the disease" -01870100 00 a 01 professional 2 001 ! 01870321 a 0101 | characteristic of or befitting a profession or one engaged in a profession; "professional conduct"; "professional ethics"; "a thoroughly professional performance" -01870321 00 a 01 unprofessional 0 002 ! 01870100 a 0101 & 01870636 a 0000 | not characteristic of or befitting a profession or one engaged in a profession; "described in unprofessional language so that high school students could understand it"; "was censured for unprofessional conduct"; "unprofessional repairs" -01870636 00 s 04 amateurish 0 amateur 1 inexpert 0 unskilled 0 003 & 01870321 a 0000 + 09786760 n 0201 + 05649116 n 0101 | lacking professional skill or expertise; "a very amateurish job"; "inexpert but conscientious efforts"; "an unskilled painting" -01870889 00 a 01 profitable 0 011 ^ 00064479 a 0000 ^ 01865197 a 0000 ^ 02495922 a 0000 + 05157866 n 0101 + 05157866 n 0102 ! 01871949 a 0101 & 01871204 a 0000 & 01871349 a 0000 & 01871473 a 0000 & 01871565 a 0000 & 01871774 a 0000 | yielding material gain or profit; "profitable speculation on the stock market" -01871204 00 s 01 bankable 0 001 & 01870889 a 0000 | guaranteed to bring a profit; "without bankable stars the film script aroused no interest" -01871349 00 s 02 fat 0 juicy 0 002 & 01870889 a 0000 ;u 07075172 n 0000 | lucrative; "a juicy contract"; "a nice fat job" -01871473 00 s 03 gainful 0 paid 0 paying 0 001 & 01870889 a 0000 | yielding a fair profit -01871565 00 s 01 economic 0 001 & 01870889 a 0000 | financially rewarding; "it was no longer economic to keep the factory open"; "have to keep prices high enough to make it economic to continue the service" -01871774 00 s 03 lucrative 0 moneymaking 0 remunerative 0 003 & 01870889 a 0000 + 02249741 v 0303 + 00078393 n 0201 | producing a sizeable profit; "a remunerative business" -01871949 00 a 01 unprofitable 0 010 ^ 01866535 a 0000 ^ 02333453 a 0000 ^ 02497141 a 0000 + 05165533 n 0101 + 05165533 n 0102 ! 01870889 a 0101 & 01872265 a 0000 & 01872374 a 0000 & 01872486 a 0000 & 01872619 a 0000 | producing little or no profit or gain; "deposits abandoned by mining companies as unprofitable" -01872265 00 s 02 dead 0 idle 0 001 & 01871949 a 0000 | not yielding a return; "dead capital"; "idle funds" -01872374 00 s 01 lean 0 002 & 01871949 a 0000 + 05113462 n 0103 | not profitable or prosperous; "a lean year" -01872486 00 s 01 marginal 0 001 & 01871949 a 0000 | producing at a rate that barely covers production costs; "marginal industries" -01872619 00 s 01 unremunerative 0 001 & 01871949 a 0000 | not yielding profit or recompense; "an unremunerative occupation" -01872745 00 a 01 profound 0 011 ^ 01509527 a 0000 ^ 02083615 a 0000 + 13942554 n 0101 + 05613962 n 0103 + 05094863 n 0102 + 05926358 n 0105 + 05613962 n 0102 + 05094863 n 0101 ! 01873406 a 0101 & 01873163 a 0000 & 01873295 a 0000 | showing intellectual penetration or emotional depth; "the differences are profound"; "a profound insight"; "a profound book"; "a profound mind"; "profound contempt"; "profound regret" -01873163 00 s 01 deep 0 002 & 01872745 a 0000 + 05613962 n 0105 | marked by depth of thinking; "deep thoughts"; "a deep allegory" -01873295 00 s 01 thoughtful 0 001 & 01872745 a 0000 | having intellectual depth; "a deeply thoughtful essay" -01873406 00 a 01 superficial 0 012 ^ 00311663 a 0000 ^ 02120458 a 0000 ^ 00950706 a 0000 + 05095111 n 0101 ! 01872745 a 0101 & 01873985 a 0000 & 01874331 a 0000 & 01874561 a 0000 & 01874716 a 0000 & 01874886 a 0000 & 01875227 a 0000 & 01875437 a 0000 | concerned with or comprehending only what is apparent or obvious; not deep or penetrating emotionally or intellectually; "superficial similarities"; "a superficial mind"; "his thinking was superficial and fuzzy"; "superficial knowledge"; "the superficial report didn't give the true picture"; "only superficial differences" -01873985 00 s 03 apparent(a) 0 ostensible 0 seeming(a) 0 003 & 01873406 a 0000 + 02134672 v 0101 + 04706727 n 0101 | appearing as such but not necessarily so; "for all his apparent wealth he had no money to pay the rent"; "the committee investigated some apparent discrepancies"; "the ostensible truth of their theories"; "his seeming honesty" -01874331 00 s 04 dilettante 0 dilettantish 0 dilettanteish 0 sciolistic 0 003 & 01873406 a 0000 + 05095561 n 0401 + 09987696 n 0102 | showing frivolous or superficial interest; amateurish; "his dilettantish efforts at painting" -01874561 00 s 01 facile 0 001 & 01873406 a 0000 | arrived at without due care or effort; lacking depth; "too facile a solution for so complex a problem" -01874716 00 s 01 glib 0 002 & 01873406 a 0000 + 05095324 n 0101 | marked by lack of intellectual depth; "glib generalizations"; "a glib response to a complex question" -01874886 00 s 02 looking 0 sounding 0 001 & 01873406 a 0000 | appearing to be as specified; usually used as combining forms; "left their clothes dirty looking"; "a most disagreeable looking character"; "angry-looking"; "liquid-looking"; "severe-looking policemen on noble horses"; "fine-sounding phrases"; "taken in by high-sounding talk" -01875227 00 s 01 shallow 0 002 & 01873406 a 0000 + 05095111 n 0102 | lacking depth of intellect or knowledge; concerned only with what is obvious; "shallow people"; "his arguments seemed shallow and tedious" -01875437 00 s 01 skin-deep 0 001 & 01873406 a 0000 | penetrating no deeper than the skin: "her beauty is only skin-deep" -01875560 00 a 03 prognathous 0 prognathic 0 hypognathous 0 003 + 14579063 n 0201 ! 01875829 a 0101 & 01875711 a 0000 | having a projecting lower jaw -01875711 00 s 01 lantern-jawed 0 001 & 01875560 a 0000 | having a protruding jaw giving the face a gaunt appearance -01875829 00 a 01 opisthognathous 0 002 ! 01875560 a 0101 & 01875929 a 0000 | having receding jaws -01875929 00 s 01 chinless 0 001 & 01875829 a 0000 | having a receding chin -01876006 00 a 01 progressive 1 009 ^ 00203237 a 0000 ^ 01301624 a 0000 + 10256756 n 0103 + 04737743 n 0101 ! 01876957 a 0101 & 01876261 a 0000 & 01876555 a 0000 & 01876670 a 0000 & 01876780 a 0000 | favoring or promoting progress; "progressive schools" -01876261 00 s 04 advanced 0 forward-looking 0 innovative 0 modern 0 003 & 01876006 a 0000 + 05050668 n 0401 + 05634767 n 0301 | ahead of the times; "the advanced teaching methods"; "had advanced views on the subject"; "a forward-looking corporation"; "is British industry innovative enough?" -01876555 00 s 03 advancing 0 forward 0 forward-moving 0 002 & 01876006 a 0000 + 05046865 n 0201 | moving forward -01876670 00 s 02 modernized 0 modernised 0 001 & 01876006 a 0000 | brought up to date; "modernized methods" -01876780 00 s 01 state-of-the-art 0 001 & 01876006 a 0000 | the highest level of development at a particular time (especially the present time); "state-of-the-art technology" -01876957 00 a 01 regressive 1 007 ^ 00201354 a 0000 + 00249313 v 0101 ! 01876006 a 0101 & 01877182 a 0000 & 01877299 a 0000 & 01877416 a 0000 & 01877521 a 0000 | opposing progress; returning to a former less advanced state -01877182 00 s 02 atavistic 0 throwback(a) 0 002 & 01876957 a 0000 + 09819860 n 0101 | characteristic of an atavist -01877299 00 s 02 retrograde 0 retrogressive 0 002 & 01876957 a 0000 + 00249313 v 0203 | going from better to worse -01877416 00 s 02 returning 0 reverting 0 001 & 01876957 a 0000 | tending to return to an earlier state -01877521 00 s 02 unmodernized 0 unmodernised 0 001 & 01876957 a 0000 | not brought up to date -01877617 00 a 01 progressive 2 003 ;c 13308999 n 0000 ! 01877919 a 0101 & 01877792 a 0000 | (of taxes) adjusted so that the rate increases as the amount of income increases -01877792 00 s 01 degressive 0 001 & 01877617 a 0000 | (of taxes) gradually decreasing in rate on sums below a certain amount -01877919 00 a 01 regressive 2 002 ;c 13308999 n 0000 ! 01877617 a 0101 | (of taxes) adjusted so that the rate decreases as the amount of income increases -01878075 00 a 01 pronounceable 0 002 ! 01878358 a 0101 & 01878227 a 0000 | capable of being uttered or pronounced; "a pronounceable group of letters" -01878227 00 s 03 rolled 0 rolling 0 trilled 0 001 & 01878075 a 0000 | uttered with a trill; "she used rolling r's as in Spanish" -01878358 00 a 01 unpronounceable 0 001 ! 01878075 a 0101 | impossible or difficult to pronounce correctly -01878466 00 a 01 proper 0 015 ^ 00134701 a 0000 ^ 00631391 a 0000 ^ 00682932 a 0000 ^ 00688947 a 0000 ^ 02034828 a 0000 = 04898437 n 0000 + 04898437 n 0102 ! 01880531 a 0101 & 01878870 a 0000 & 01879261 a 0000 & 01879464 a 0000 & 01879667 a 0000 & 01879912 a 0000 & 01880071 a 0000 & 01880163 a 0000 | marked by suitability or rightness or appropriateness; "proper medical treatment"; "proper manners" -01878870 00 s 06 becoming 0 comely 0 comme_il_faut 0 decent 0 decorous 0 seemly 0 006 & 01878466 a 0000 + 04900357 n 0601 + 04898804 n 0501 + 04898804 n 0502 + 04871259 n 0401 + 04900597 n 0101 | according with custom or propriety; "her becoming modesty"; "comely behavior"; "it is not comme il faut for a gentleman to be constantly asking for money"; "a decent burial"; "seemly behavior" -01879261 00 s 02 correct 0 right 1 003 & 01878466 a 0000 + 04899031 n 0202 + 04899201 n 0101 | socially right or correct; "it isn't right to leave the party without saying goodbye"; "correct behavior" -01879464 00 s 02 correct 2 right 2 002 & 01878466 a 0000 + 04899201 n 0101 | in accord with accepted standards of usage or procedure; "what's the right word for this?"; "the right way to open oysters" -01879667 00 s 01 fitting 0 002 & 01878466 a 0000 + 04716864 n 0102 | in harmony with the spirit of particular persons or occasion; "We have come to dedicate a portion of that field...It is altogether fitting and proper that we should do this" -01879912 00 s 01 halal 0 002 & 01878466 a 0000 ;c 08455829 n 0000 | proper or legitimate; "the fund earns halal profits in full compliance with the Shari'a" -01880071 00 s 01 kosher 0 002 & 01878466 a 0000 ;u 07075172 n 0000 | proper or legitimate -01880163 00 s 0c priggish 0 prim 0 prissy 0 prudish 0 puritanical 0 square-toed 0 straitlaced 0 strait-laced 0 straightlaced 0 straight-laced 0 tight-laced 0 victorian 0 006 & 01878466 a 0000 + 10487026 n 0502 + 04901152 n 0402 + 04901152 n 0201 + 04899980 n 0202 + 04899980 n 0101 | exaggeratedly proper; "my straitlaced Aunt Anna doesn't approve of my miniskirts" -01880531 00 a 01 improper 0 011 ^ 00135718 a 0000 ^ 00683185 a 0000 ^ 00689471 a 0000 ^ 01021301 a 0000 ^ 02035337 a 0000 = 04898437 n 0000 + 04901326 n 0102 ! 01878466 a 0101 & 01880918 a 0000 & 01881365 a 0000 & 01881478 a 0000 | not suitable or right or appropriate; "slightly improper to dine alone with a married man"; "improper medication"; "improper attire for the golf course" -01880918 00 s 06 indecent 0 indecorous 0 unbecoming 0 uncomely 0 unseemly 0 untoward 0 006 & 01880531 a 0000 + 04902668 n 0501 + 04902797 n 0301 + 04902470 n 0202 + 04902925 n 0101 + 00737536 n 0101 | not in keeping with accepted standards of what is right or proper in polite society; "was buried with indecent haste"; "indecorous behavior"; "language unbecoming to a lady"; "unseemly to use profanity"; "moved to curb their untoward ribaldry" -01881365 00 s 01 out-of-the-way 0 001 & 01880531 a 0000 | improper or even offensive; "out-of-the-way remarks" -01881478 00 s 02 wrong 2 incorrect 0 001 & 01880531 a 0000 | not in accord with established usage or procedure; "the wrong medicine"; "the wrong way to shuck clams"; "it is incorrect for a policeman to accept gifts" -01881696 00 a 02 prophetic 0 prophetical 0 016 + 06750154 n 0201 + 05775407 n 0201 + 10483890 n 0201 + 10483890 n 0101 + 10483530 n 0101 + 06750154 n 0101 + 05775407 n 0101 ! 01883586 a 0101 & 01882162 a 0000 & 01882292 a 0000 & 01882474 a 0000 & 01882621 a 0000 & 01882754 a 0000 & 01883106 a 0000 & 01883226 a 0000 & 01883325 a 0000 | foretelling events as if by supernatural intervention; "prophetic writings"; "prophetic powers"; "words that proved prophetic" -01882162 00 s 03 adumbrative 0 foreshadowing 0 prefigurative 0 002 & 01881696 a 0000 + 00871942 v 030b | indistinctly prophetic -01882292 00 s 03 apocalyptic 0 apocalyptical 0 revelatory 0 004 & 01881696 a 0000 + 02144243 v 0301 + 07315631 n 0201 + 06447897 n 0103 | prophetic of devastation or ultimate doom -01882474 00 s 03 clairvoyant 0 precognitive 0 second-sighted 0 003 & 01881696 a 0000 + 09925953 n 0101 + 07256695 n 0101 | foreseeing the future -01882621 00 s 02 Delphic 0 oracular 0 001 & 01881696 a 0000 | obscurely prophetic; "Delphic pronouncements"; "an oracular message" -01882754 00 s 06 divinatory 0 mantic 0 sibylline 0 sibyllic 0 vatic 0 vatical 0 004 & 01881696 a 0000 + 10595551 n 0401 + 10595361 n 0401 + 02107588 v 0101 | resembling or characteristic of a prophet or prophecy; "the high priest's divinatory pronouncement"; "mantic powers"; "a kind of sibylline book with ready and infallible answers to questions" -01883106 00 s 03 fateful 0 foreboding(a) 0 portentous 0 002 & 01881696 a 0000 + 07286368 n 0302 | ominously prophetic -01883226 00 s 02 precursory 0 premonitory 0 001 & 01881696 a 0000 | warning of future misfortune -01883325 00 s 03 predictive 0 prognostic 0 prognosticative 0 007 & 01881696 a 0000 + 00917772 v 0303 + 07286368 n 0204 + 06749881 n 0201 + 00153665 n 0201 + 00871942 v 010d + 00917772 v 0101 | of or relating to prediction; having value for making predictions -01883586 00 a 01 unprophetic 0 003 ! 01881696 a 0101 & 01883719 a 0000 & 01883813 a 0000 | not prophetic; not foreseeing correctly -01883719 00 s 01 nonprognosticative 0 001 & 01883586 a 0000 | not offering prognostications -01883813 00 s 01 unpredictive 0 001 & 01883586 a 0000 | having no predictive value -01883898 00 a 01 prospective 0 004 ^ 01732270 a 0000 ! 01884539 a 0101 & 01884176 a 0000 & 01884353 a 0000 | of or concerned with or related to the future; "prospective earnings"; "a prospective mother"; "a prospective bride"; "the statute is solely prospective in operation" -01884176 00 s 02 likely 0 potential 0 004 & 01883898 a 0000 + 14482620 n 0203 + 14482620 n 0202 + 04756635 n 0102 | expected to become or be; in prospect; "potential clients" -01884353 00 s 01 future 0 003 & 01883898 a 0000 + 15121625 n 0103 + 05049930 n 0101 | effective in or looking toward the future; "he was preparing for future employment opportunities" -01884539 00 a 01 retrospective 0 005 ^ 00201354 a 0000 + 08407969 n 0101 + 00696414 v 0103 ! 01883898 a 0101 & 01884744 a 0000 | concerned with or related to the past; "retrospective self-justification" -01884744 00 s 03 ex_post_facto 0 retroactive 0 retro 0 002 & 01884539 a 0000 + 05751430 n 0301 | affecting things past; "retroactive tax increase"; "an ex-post-facto law"; "retro pay" -01884930 00 a 01 protected 0 012 ^ 02525206 a 0000 ^ 02093888 a 0000 ! 01886407 a 0101 & 01885275 a 0000 & 01885382 a 0000 & 01885532 a 0000 & 01885614 a 0000 & 01885757 a 0000 & 01885866 a 0000 & 01885991 a 0000 & 01886139 a 0000 & 01886241 a 0000 | kept safe or defended from danger or injury or loss; "the most protected spot I could find" -01885275 00 s 02 bastioned 0 fortified 0 001 & 01884930 a 0000 | secured with bastions or fortifications -01885382 00 s 01 battlemented 0 001 & 01884930 a 0000 | protected with battlements or parapets with indentations or embrasures for shooting through -01885532 00 s 01 burglarproof 0 001 & 01884930 a 0000 | secure against burglary -01885614 00 s 01 covert 0 002 & 01884930 a 0000 ;c 08441203 n 0000 | (of a wife) being under the protection of her husband; "a woman covert" -01885757 00 s 01 moated 0 001 & 01884930 a 0000 | protected by a deep wide ditch usually filled with water -01885866 00 s 01 shielded 0 001 & 01884930 a 0000 | (used especially of machinery) protected by a shield to prevent injury -01885991 00 s 01 snug 0 002 & 01884930 a 0000 + 14446298 n 0103 | offering safety; well protected or concealed; "a snug harbor"; "a snug hideout" -01886139 00 s 01 stormproof 0 001 & 01884930 a 0000 | protected against or able to withstand storms -01886241 00 s 01 weatherproof 0 001 & 01884930 a 0000 | able to withstand exposure to weather without damage; "weatherproof electric wiring"; "a weatherproof coat" -01886407 00 a 01 unprotected 0 008 ^ 02094755 a 0000 ^ 02360448 a 0000 ^ 02523275 a 0000 + 05043091 n 0103 ! 01884930 a 0101 & 01886620 a 0000 & 01886783 a 0000 & 01886963 a 0000 | lacking protection or defense -01886620 00 s 02 exposed 0 open 0 001 & 01886407 a 0000 | with no protection or shield; "the exposed northeast frontier"; "open to the weather"; "an open wound" -01886783 00 s 02 naked 0 defenseless 0 003 & 01886407 a 0000 + 05043091 n 0201 + 14456138 n 0101 | having no protecting or concealing cover; "naked to mine enemies"- Shakespeare -01886963 00 s 01 unshielded 0 001 & 01886407 a 0000 | (used especially of machinery) not protected by a shield -01887076 00 a 01 protective 0 015 ^ 01630117 a 0000 ^ 01763813 a 0000 + 04723622 n 0101 + 01129710 v 0101 + 01128193 v 0101 ! 01889173 a 0101 & 01887638 a 0000 & 01887819 a 0000 & 01888017 a 0000 & 01888284 a 0000 & 01888450 a 0000 & 01888554 a 0000 & 01888765 a 0000 & 01888941 a 0000 & 01889084 a 0000 | intended or adapted to afford protection of some kind; "a protective covering"; "the use of protective masks and equipment"; "protective coatings"; "kept the drunken sailor in protective custody"; "animals with protective coloring"; "protective tariffs" -01887638 00 s 02 cautionary 0 prophylactic 1 001 & 01887076 a 0000 | warding off; "the swastika...a very ancient prophylactic symbol occurring among all peoples"- Victor Schultze -01887819 00 s 03 contraceptive 0 prophylactic 2 antifertility 0 002 & 01887076 a 0000 + 03088164 n 0205 | capable of preventing conception or impregnation; "contraceptive devices and medications" -01888017 00 s 03 custodial 0 tutelary 0 tutelar 0 003 & 01887076 a 0000 + 09984298 n 0101 + 00818678 n 0102 | providing protective supervision; watching over or safeguarding; "daycare that is educational and not just custodial"; "a guardian angel"; "tutelary gods" -01888284 00 s 01 evasive 0 001 & 01887076 a 0000 | avoiding or escaping from difficulty or danger especially enemy fire; "pilots are taught to take evasive action" -01888450 00 s 01 overprotective 0 001 & 01887076 a 0000 | overly protective; "overprotective parents" -01888554 00 s 01 preservative 0 004 & 01887076 a 0000 + 14997529 n 0101 + 02280132 v 0102 + 00212414 v 0101 | tending or having the power to preserve; "timbers should be treated with a preservative substance" -01888765 00 s 01 protecting(a) 0 001 & 01887076 a 0000 | shielding (or designed to shield) against harm or discomfort; "the protecting blanket of snow"; "a protecting alibi" -01888941 00 s 01 restrictive 0 002 & 01887076 a 0000 + 02509287 v 0101 | (of tariff) protective of national interests by restricting imports -01889084 00 s 01 safety-related 0 001 & 01887076 a 0000 | providing or ensuring safety -01889173 00 a 01 unprotective 0 001 ! 01887076 a 0101 | not affording protection -01889256 00 a 01 proud 0 016 ^ 01539642 a 0000 = 04886646 n 0000 ! 01892953 a 0101 & 01889819 a 0000 & 01890097 a 0000 & 01890187 a 0000 & 01890382 a 0000 & 01890752 a 0000 & 01890988 a 0000 & 01891109 a 0000 & 01891773 a 0000 & 01892327 a 0000 & 01892433 a 0000 & 01892506 a 0000 & 01892683 a 0000 & 01892830 a 0000 | feeling self-respect or pleasure in something by which you measure your self-worth; or being a reason for pride; "proud parents"; "proud of his accomplishments"; "a proud moment"; "proud to serve his country"; "a proud name"; "proud princes" -01889819 00 s 03 arrogant 0 chesty 0 self-important 0 004 & 01889256 a 0000 + 07508806 n 0303 + 04887497 n 0302 + 04887912 n 0101 | having or showing feelings of unwarranted importance out of overbearing pride; "an arrogant official"; "arrogant claims"; "chesty as a peacock" -01890097 00 s 01 beaming 0 001 & 01889256 a 0000 | pleased and proud; "beaming parents" -01890187 00 s 03 big 0 swelled 0 vainglorious 0 002 & 01889256 a 0000 + 04887373 n 0302 | feeling self-importance; "too big for his britches"; "had a swelled head"; "he was swelled with pride" -01890382 00 s 08 bigheaded 0 persnickety 0 snooty 0 snot-nosed 0 snotty 0 stuck-up 0 too_big_for_one's_breeches 0 uppish 0 004 & 01889256 a 0000 + 04839009 n 0802 + 10617024 n 0503 + 10617024 n 0304 | (used colloquially) overly conceited or arrogant; "a snotty little scion of a degenerate family"-Laurent Le Sage; "they're snobs--stuck-up and uppity and persnickety" -01890752 00 s 09 boastful 0 braggart(a) 0 bragging(a) 0 braggy 0 big 2 cock-a-hoop 0 crowing 0 self-aggrandizing 0 self-aggrandising 0 003 & 01889256 a 0000 + 07229747 n 0401 + 04887373 n 0101 | exhibiting self-importance; "big talk" -01890988 00 s 03 dignified 0 self-respecting 0 self-respectful 0 001 & 01889256 a 0000 | having or showing self-esteem -01891109 00 s 09 disdainful 0 haughty 0 imperious 0 lordly 0 overbearing 0 prideful 0 sniffy 0 supercilious 0 swaggering 0 007 & 01889256 a 0000 + 04888268 n 0802 + 04888788 n 0503 + 04887912 n 0405 + 04888788 n 0301 + 04887912 n 0202 + 04888268 n 0103 | having or showing arrogant superiority to and disdain of those one views as unworthy; "some economists are disdainful of their colleagues in other social disciplines"; "haughty aristocrats"; "his lordly manners were offensive"; "walked with a prideful swagger"; "very sniffy about breaches of etiquette"; "his mother eyed my clothes with a supercilious air"; "a more swaggering mood than usual"- W.L.Shirer -01891773 00 s 07 conceited 0 egotistic 0 egotistical 0 self-conceited 0 swollen 0 swollen-headed 0 vain 0 007 & 01889256 a 0000 + 07508996 n 0704 + 05141040 n 0701 + 04887129 n 0703 + 10047459 n 0301 + 10047459 n 0201 + 07508806 n 0202 | characteristic of false pride; having an exaggerated sense of self-importance; "a conceited fool"; "an attitude of self-conceited arrogance"; "an egotistical disregard of others"; "so swollen by victory that he was unfit for normal duty"; "growing ever more swollen-headed and arbitrary"; "vain about her clothes" -01892327 00 s 01 house-proud 0 001 & 01889256 a 0000 | proud of your house or its furnishings or upkeep -01892433 00 s 01 overproud 0 001 & 01889256 a 0000 | excessively proud -01892506 00 s 02 pleased 0 proud_of(p) 0 001 & 01889256 a 0000 | feeling pleasurable satisfaction over something by which you measures your self-worth; "proud of their child" -01892683 00 s 01 purse-proud 0 001 & 01889256 a 0000 | proud or arrogant because of your wealth (especially in the absence of other distinction) -01892830 00 s 01 shabby-genteel 0 001 & 01889256 a 0000 | trying to maintain dignity and self respect despite shabbiness -01892953 00 a 01 humble 0 007 ^ 01539225 a 0000 = 04889527 n 0000 + 04889527 n 0102 + 04889527 n 0101 ! 01889256 a 0101 & 01893303 a 0000 & 01893510 a 0000 | marked by meekness or modesty; not arrogant or prideful; "a humble apology"; "essentially humble...and self-effacing, he achieved the highest formal honors and distinctions"- B.K.Malinowski -01893303 00 s 05 broken 0 crushed 0 humbled 0 humiliated 0 low 0 002 & 01892953 a 0000 + 07537668 n 0504 | subdued or brought low in condition or status; "brought low"; "a broken man"; "his broken spirit" -01893510 00 s 03 meek 0 mild 0 modest 0 003 & 01892953 a 0000 + 07509325 n 0101 + 04889779 n 0101 | humble in spirit or manner; suggesting retiring mildness or even cowed submissiveness; "meek and self-effacing" -01893724 00 a 02 proved 0 proven 0 005 ! 01894416 a 0101 & 01893939 a 0000 & 01894077 a 0000 & 01894196 a 0000 & 01894324 a 0000 | established beyond doubt; "a proven liar"; "a Soviet leader of proven shrewdness" -01893939 00 s 01 established 0 001 & 01893724 a 0000 | shown to be valid beyond a reasonable doubt; "the established facts in the case" -01894077 00 s 01 evidenced 0 001 & 01893724 a 0000 | supported by evidence; "their evidenced friendliness to the US" -01894196 00 s 03 tested 0 tried 0 well-tried 0 001 & 01893724 a 0000 | tested and proved useful or correct; "a tested method" -01894324 00 s 01 verified 0 001 & 01893724 a 0000 | proved to be true; "a verified claim" -01894416 00 a 02 unproved 0 unproven 0 003 ! 01893724 a 0101 & 01894576 a 0000 & 01894670 a 0000 | not proved; "unproved allegations"; "unproved assumptions" -01894576 00 s 01 on_trial 0 001 & 01894416 a 0000 | in the process of being tested or tried -01894670 00 s 01 unverified 0 001 & 01894416 a 0000 | lacking proof or substantiation -01894758 00 a 01 provident 0 010 ^ 02157399 a 0000 ^ 01898129 a 0000 ^ 02421158 a 0000 + 04892970 n 0101 + 00406963 v 0101 ! 01895837 a 0101 & 01895099 a 0000 & 01895296 a 0000 & 01895630 a 0000 & 01895717 a 0000 | providing carefully for the future; "wild squirrels are provident"; "a provident father plans for his children's education" -01895099 00 s 02 careful 0 thrifty 0 005 & 01894758 a 0000 + 04893525 n 0203 + 04893787 n 0202 + 04664058 n 0103 + 04663494 n 0101 | mindful of the future in spending money; "careful with money" -01895296 00 s 07 farseeing 0 farsighted 0 foresighted 0 foresightful 0 prospicient 0 long 0 longsighted 0 005 & 01894758 a 0000 + 05805277 n 0504 + 04893172 n 0403 + 04893172 n 0302 + 05805277 n 0203 | planning prudently for the future; "large goals that required farsighted policies"; "took a long view of the geopolitical issues" -01895630 00 s 01 forehanded 0 001 & 01894758 a 0000 | having provided for the future -01895717 00 s 01 forethoughtful 0 001 & 01894758 a 0000 | thoughtful of the future; "careful forethoughtful planning" -01895837 00 a 01 improvident 0 007 ^ 01899360 a 0000 ^ 02422068 a 0000 + 04894552 n 0101 ! 01894758 a 0101 & 01896046 a 0000 & 01896299 a 0000 & 01896396 a 0000 | not provident; not providing for the future -01896046 00 s 04 short 0 shortsighted 0 unforesightful 0 myopic 0 002 & 01895837 a 0000 + 04894552 n 0202 | lacking foresight or scope; "a short view of the problem"; "shortsighted policies"; "shortsighted critics derided the plan"; "myopic thinking" -01896299 00 s 01 thriftless 0 002 & 01895837 a 0000 + 04894964 n 0101 | careless of the future -01896396 00 s 01 unforethoughtful 0 001 & 01895837 a 0000 | lacking forethought -01896478 00 a 01 provocative 0 010 ^ 00921014 a 0000 + 01789514 v 010b + 01759326 v 0108 + 00794079 v 0101 ! 01897787 a 0101 & 01896925 a 0000 & 01897106 a 0000 & 01897224 a 0000 & 01897378 a 0000 & 01897607 a 0000 | serving or tending to provoke, excite, or stimulate; stimulating discussion or exciting controversy; "a provocative remark"; "a provocative smile"; "provocative Irish tunes which...compel the hearers to dance"- Anthony Trollope -01896925 00 s 03 agitative 0 agitating 0 provoking 0 002 & 01896478 a 0000 + 01762528 v 0101 | causing or tending to cause anger or resentment; "a provoking delay at the airport" -01897106 00 s 02 challenging 0 intriguing 0 001 & 01896478 a 0000 | disturbingly provocative; "an intriguing smile" -01897224 00 s 01 charged 0 001 & 01896478 a 0000 | capable of producing violent emotion or arousing controversy; "the highly charged issue of abortion" -01897378 00 s 06 incendiary 0 incitive 0 inflammatory 0 instigative 0 rabble-rousing 0 seditious 0 005 & 01896478 a 0000 + 00772813 n 0601 + 00851239 v 0402 + 01761120 v 0301 + 00851239 v 0201 | arousing to action or rebellion -01897607 00 s 01 rousing 0 001 & 01896478 a 0000 | rousing to activity or heightened action as by spurring or goading; "tossed a rousing political comment into the conversation" -01897787 00 a 02 unprovocative 0 unprovoking 4 005 ^ 02512922 a 0000 ^ 00922594 a 0000 ! 01896478 a 0101 & 01897948 a 0000 & 01898051 a 0000 | not provocative -01897948 00 s 01 disarming 0 002 & 01897787 a 0000 + 01157557 n 0101 | capable of allaying hostility -01898051 00 s 01 noninflammatory 0 001 & 01897787 a 0000 | not inflammatory -01898129 00 a 01 prudent 0 010 ^ 00309021 a 0000 ^ 01894758 a 0000 ^ 01996377 a 0000 ^ 02569130 a 0000 + 05615500 n 0104 ! 01899360 a 0101 & 01898490 a 0000 & 01898722 a 0000 & 01898974 a 0000 & 01899167 a 0000 | careful and sensible; marked by sound judgment; "a prudent manager"; "prudent rulers"; "prudent hesitation"; "more prudent to hide than to fight" -01898490 00 s 02 circumspect 0 discreet 0 002 & 01898129 a 0000 + 05615500 n 0202 | heedful of potential consequences; "circumspect actions"; "physicians are now more circumspect about recommending its use"; "a discreet investor" -01898722 00 s 03 judicious 0 wise 0 heady 0 004 & 01898129 a 0000 + 05159948 n 0202 + 05615373 n 0101 + 04890361 n 0101 | marked by the exercise of good judgment or common sense in practical matters; "judicious use of one's money"; "a wise decision" -01898974 00 s 01 provident 0 002 & 01898129 a 0000 + 04892970 n 0101 | careful in regard to your own interests; "the prudent use and development of resources"; "wild squirrels are provident" -01899167 00 s 01 prudential 0 002 & 01898129 a 0000 + 04892794 n 0101 | arising from or characterized by prudence especially in business matters; "he abstained partly for prudential reasons" -01899360 00 a 01 imprudent 0 008 ^ 00311663 a 0000 ^ 02570282 a 0000 ^ 01895837 a 0000 + 04894037 n 0101 ! 01898129 a 0101 & 01899742 a 0000 & 01899970 a 0000 & 01900188 a 0000 | not prudent or wise; "very imprudent of her mother to encourage her in such silly romantic ideas"; "would be imprudent for a noneconomist to talk about the details of economic policy"- A.M.Schlesinger -01899742 00 s 04 ill-considered 0 ill-judged 0 improvident 0 shortsighted 0 002 & 01899360 a 0000 + 04894552 n 0402 | not given careful consideration; "ill-considered actions often result in disaster"; "an ill-judged attempt" -01899970 00 s 01 injudicious 0 003 & 01899360 a 0000 + 05616092 n 0101 + 04891558 n 0102 | lacking or showing lack of judgment or discretion; unwise; "an injudicious measure"; "the result of an injudicious decision" -01900188 00 s 01 rash 0 002 & 01899360 a 0000 + 04894204 n 0103 | imprudently incurring risk; "do something rash that he will forever repent"- George Meredith -01900349 00 a 01 punctual 0 004 + 05047778 n 0101 ! 01900915 a 0101 & 01900630 a 0000 & 01900771 a 0000 | acting or arriving or performed exactly at the time appointed; "she expected guests to be punctual at meals"; "he is not a particularly punctual person"; "punctual payment" -01900630 00 s 01 prompt 0 002 & 01900349 a 0000 + 05047778 n 0102 | according to schedule or without delay; on time; "the train is prompt" -01900771 00 s 01 timely 1 002 & 01900349 a 0000 + 05049253 n 0102 | before a time limit expires; "the timely filing of his income tax return" -01900915 00 a 01 unpunctual 0 005 ! 01900349 a 0101 & 01901082 a 0000 & 01901186 a 0000 & 01901496 a 0000 & 01901649 a 0000 | not punctual; after the appointed time -01901082 00 s 01 behindhand 0 001 & 01900915 a 0000 | behind schedule; "was behindhand with the rent" -01901186 00 s 03 belated 0 late 0 tardy 0 003 & 01900915 a 0000 + 05047956 n 0301 + 05047059 n 0201 | after the expected or usual time; delayed; "a belated birthday card"; "I'm late for the plane"; "the train is late"; "tardy children are sent to the principal"; "always tardy in making dental appointments" -01901496 00 s 02 benighted 0 nighted 0 001 & 01900915 a 0000 | overtaken by night or darkness; "benighted (or nighted) travelers hurrying toward home" -01901649 00 s 01 last-minute 0 001 & 01900915 a 0000 | just before a deadline; at the last minute; "last-minute arrangements" -01901777 00 a 01 punished 0 002 ! 01902171 a 0101 & 01902003 a 0000 | subjected to a penalty (as pain or shame or restraint or loss) for an offense or fault or in order to coerce some behavior (as a confession or obedience) -01902003 00 s 01 tarred-and-feathered(a) 0 001 & 01901777 a 0000 | smeared with tar and covered with feathers as a punishment; "the poor tarred-and-feathered wretch" -01902171 00 a 01 unpunished 0 002 ! 01901777 a 0101 & 01902313 a 0000 | not punished; "would he forget the crime and let it go unpunished?" -01902313 00 s 02 uncorrected 0 undisciplined 0 001 & 01902171 a 0000 | not subjected to correction or discipline; "let her children grow up uncorrected" -01902468 00 a 02 punitive 0 punitory 0 007 + 02499629 v 0201 + 02499629 v 0101 ! 01903412 a 0101 & 01902703 a 0000 & 01902866 a 0000 & 01902980 a 0000 & 01903160 a 0000 | inflicting punishment; "punitive justice"; "punitive damages" -01902703 00 s 01 correctional 0 003 & 01902468 a 0000 + 01161821 n 0102 + 00258854 n 0101 | concerned with or providing correction; "a correctional institution" -01902866 00 s 01 penal 0 001 & 01902468 a 0000 | serving as or designed to impose punishment; "penal servitude" -01902980 00 s 01 penitentiary 0 003 & 01902468 a 0000 + 03911513 n 0101 + 07536870 n 0102 | used for punishment or reform of criminals or wrongdoers; "penitentiary institutions" -01903160 00 s 05 retaliatory 0 relatiative 0 retributive 0 retributory 0 vindicatory 0 003 & 01902468 a 0000 + 01153486 v 0103 + 01153165 v 0101 | of or relating to or having the nature of retribution; "retributive justice demands an eye for an eye" -01903412 00 a 01 rehabilitative 0 002 + 02552163 v 0101 ! 01902468 a 0101 | designed to accomplish rehabilitation; "from a penal to a rehabilitative philosophy"- J.B.Costello; "rehabilitative treatment" -01903617 00 a 01 purebred 0 005 = 04922787 n 0000 + 01323599 n 0102 ! 01904156 a 0101 & 01903813 a 0000 & 01903965 a 0000 | bred for many generations from member of a recognized breed or strain -01903813 00 s 03 full-blooded 0 full-blood 0 blooded 0 001 & 01903617 a 0000 | of unmixed ancestry; "full-blooded Native American"; "blooded Jersies" -01903965 00 s 05 pedigree(a) 0 pedigreed 0 pureblood 0 pureblooded 0 thoroughbred 0 002 & 01903617 a 0000 + 01323599 n 0303 | having a list of ancestors as proof of being a purebred animal -01904156 00 a 01 crossbred 0 007 ^ 01291937 a 0000 = 04922787 n 0000 ! 01903617 a 0101 & 01904371 a 0000 & 01904485 a 0000 & 01904596 a 0000 & 01904698 a 0000 | bred from parents of different varieties or species -01904371 00 s 01 bigeneric 0 001 & 01904156 a 0000 | resulting from a cross between species of different genera -01904485 00 s 02 hybrid 0 intercrossed 0 002 & 01904156 a 0000 + 01327322 n 0101 | produced by crossbreeding -01904596 00 s 01 underbred 0 001 & 01904156 a 0000 | of inferior or mixed breed; "an underbred dog" -01904698 00 s 03 half-blooded 0 half-bred 0 half-breed 0 002 & 01904156 a 0000 ;c 00015388 n 0000 | (of animals) having only one purebred parent -01904845 00 a 01 pure 1 007 ^ 00360650 a 0000 = 04846770 n 0000 + 13990064 n 0102 + 13990064 n 0101 ! 01905377 a 0101 & 01905140 a 0000 & 01905235 a 0000 | (used of persons or behaviors) having no faults; sinless; "I felt pure and sweet as a new baby"- Sylvia Plath; "pure as the driven snow" -01905140 00 s 02 immaculate 0 undefiled 0 001 & 01904845 a 0000 | free from stain or blemish -01905235 00 s 01 white 0 002 & 01904845 a 0000 + 13990064 n 0105 | free from moral blemish or impurity; unsullied; "in shining white armor" -01905377 00 a 01 impure 1 004 ^ 00361509 a 0000 = 04846770 n 0000 ! 01904845 a 0101 & 01905552 a 0000 | (used of persons or behaviors) immoral or obscene; "impure thoughts" -01905552 00 s 02 defiled 0 maculate 0 001 & 01905377 a 0000 | morally blemished; stained or impure -01905653 00 a 01 pure 2 018 ^ 00427331 a 0000 ^ 01951684 a 0000 = 14486767 n 0000 + 14486767 n 0102 + 14486767 n 0101 ! 01908039 a 0101 & 01906173 a 0000 & 01906320 a 0000 & 01906464 a 0000 & 01906817 a 0000 & 01906975 a 0000 & 01907103 a 0000 & 01907293 a 0000 & 01907416 a 0000 & 01907481 a 0000 & 01907595 a 0000 & 01907711 a 0000 & 01907878 a 0000 | free of extraneous elements of any kind; "pure air and water"; "pure gold"; "pure primary colors"; "the violin's pure and lovely song"; "pure tones"; "pure oxygen" -01906173 00 s 01 axenic 0 001 & 01905653 a 0000 | (used of cultures of microorganisms) completely free from other organisms; "an axenic culture" -01906320 00 s 02 clean 0 fresh 0 003 & 01905653 a 0000 + 04926728 n 0201 + 14496193 n 0101 | free from impurities; "clean water"; "fresh air" -01906464 00 s 04 clean 1 clear 1 light 0 unclouded 0 004 & 01905653 a 0000 + 04701460 n 0403 + 04701460 n 0202 + 04701460 n 0201 | (of sound or color) free from anything that dulls or dims; "efforts to obtain a clean bass in orchestral recordings"; "clear laughter like a waterfall"; "clear reds and blues"; "a light lilting voice like a silver bell" -01906817 00 s 01 fine 0 002 & 01905653 a 0000 ;c 06125698 n 0000 | free from impurities; having a high or specified degree of purity; "gold 21 carats fine" -01906975 00 s 01 native 0 002 & 01905653 a 0000 + 04799881 n 0101 | as found in nature in the elemental form; "native copper" -01907103 00 s 04 plain 0 sheer 0 unmingled 0 unmixed 0 002 & 01905653 a 0000 + 14487026 n 0101 | not mixed with extraneous elements; "plain water"; "sheer wine"; "not an unmixed blessing" -01907293 00 s 01 pristine 0 001 & 01905653 a 0000 | completely free from dirt or contamination; "pristine mountain snow" -01907416 00 s 01 sublimate 0 001 & 01905653 a 0000 | made pure -01907481 00 s 01 unadulterated 0 001 & 01905653 a 0000 | not mixed with impurities; "unadulterated maple syrup" -01907595 00 s 01 unalloyed 0 001 & 01905653 a 0000 | free from admixture; "unalloyed metal"; "unalloyed pleasure" -01907711 00 s 02 uncontaminated 1 unpolluted 0 001 & 01905653 a 0000 | free from admixture with noxious elements; clean; "unpolluted streams"; "a contaminated lake" -01907878 00 s 01 virginal 0 001 & 01905653 a 0000 | untouched or undefiled; "nor is there anything more virginal than the shimmer of young foliage"- L.P.Smith -01908039 00 a 01 impure 2 013 ^ 00427786 a 0000 ^ 01952405 a 0000 = 14486767 n 0000 + 14487184 n 0102 + 14583670 n 0101 ! 01905653 a 0101 & 01908341 a 0000 & 01908539 a 0000 & 01908641 a 0000 & 01908755 a 0000 & 01908889 a 0000 & 01909077 a 0000 & 01909421 a 0000 | combined with extraneous elements -01908341 00 s 02 technical-grade 0 technical_grade 0 002 & 01908039 a 0000 ;c 06084469 n 0000 | containing small amounts of other chemicals, hence slightly impure; "technical-grade sulfuric acid" -01908539 00 s 03 adulterate 0 adulterated 0 debased 0 001 & 01908039 a 0000 | mixed with impurities -01908641 00 s 01 alloyed 0 001 & 01908039 a 0000 | (used of metals) debased by mixture with an inferior element -01908755 00 s 02 bastardized 0 bastardised 0 002 & 01908039 a 0000 ;c 06156968 n 0000 | deriving from more than one source or style -01908889 00 s 02 contaminated 0 polluted 0 001 & 01908039 a 0000 | rendered unwholesome by contaminants and pollution; "had to boil the contaminated water"; "polluted lakes and streams" -01909077 00 s 04 dirty 0 dingy 0 muddied 0 muddy 0 004 & 01908039 a 0000 + 04703698 n 0403 + 14498567 n 0202 + 14498567 n 0201 | (of color) discolored by impurities; not bright and clear; "dirty" is often used in combination; "a dirty (or dingy) white"; "the muddied grey of the sea"; "muddy colors"; "dirty-green walls"; "dirty-blonde hair" -01909421 00 s 01 unpurified 0 001 & 01908039 a 0000 | not made pure -01909491 00 a 01 contaminated 0 002 ! 01909718 a 0101 & 01909628 a 0000 | corrupted by contact or association; "contaminated evidence" -01909628 00 s 01 mercury-contaminated 0 001 & 01909491 a 0000 | contaminated by mercury -01909718 00 a 01 uncontaminated 0 001 ! 01909491 a 0101 | not corrupted by contact or association; "there is no culture uncontaminated by contact with the outside world" -01909890 00 a 01 purposeful 0 007 ^ 01496976 a 0000 ^ 01989669 a 0000 + 05170400 n 0101 ! 01910488 a 0101 & 01910114 a 0000 & 01910249 a 0000 & 01910359 a 0000 | serving as or indicating the existence of a purpose or goal -01910114 00 s 02 businesslike 0 earnest 0 002 & 01909890 a 0000 + 04646548 n 0202 | not distracted by anything unrelated to the goal -01910249 00 s 02 goal-directed 0 purposive 0 001 & 01909890 a 0000 | having a purpose; "purposive behavior" -01910359 00 s 02 purpose-built 0 purpose-made 0 001 & 01909890 a 0000 | designed and constructed to serve a particular purpose -01910488 00 a 01 purposeless 0 005 ^ 01497736 a 0000 + 05174326 n 0101 ! 01909890 a 0101 & 01910652 a 0000 & 01910819 a 0000 | not evidencing any purpose or goal -01910652 00 s 07 adrift(p) 0 afloat(p) 0 aimless 0 directionless 0 planless 0 rudderless 0 undirected 0 002 & 01910488 a 0000 + 05174326 n 0302 | aimlessly drifting -01910819 00 s 01 desultory 0 001 & 01910488 a 0000 | marked by lack of definite plan or regularity or purpose; jumping from one thing to another; "desultory thoughts"; "the desultory conversation characteristic of cocktail parties" -01911053 00 a 01 qualified 1 004 ^ 00510050 a 0000 ^ 00851744 a 0000 ! 01911415 a 0101 & 01911296 a 0000 | meeting the proper standards and requirements and training for an office or position or task; "many qualified applicants for the job" -01911296 00 s 01 well-qualified 0 001 & 01911053 a 0000 | more than adequately qualified; "a well-qualified officer" -01911415 00 a 01 unqualified 1 004 ^ 00511214 a 0000 ^ 00852988 a 0000 ! 01911053 a 0101 & 01911589 a 0000 | not meeting the proper standards and requirements and training -01911589 00 s 01 quack(a) 0 001 & 01911415 a 0000 | medically unqualified; "a quack doctor" -01911683 00 a 01 trained 0 005 ! 01912613 a 0101 & 01911951 a 0000 & 01912145 a 0000 & 01912280 a 0000 & 01912483 a 0000 | shaped or conditioned or disciplined by training; often used as a combining form; "a trained mind"; "trained pigeons"; "well-trained servants" -01911951 00 s 01 disciplined 0 001 & 01911683 a 0000 | trained mentally or physically by instruction or exercise; "the beautiful coordination of his disciplined muscles"; "a disciplined mind" -01912145 00 s 01 drilled 0 001 & 01911683 a 0000 | trained in a skill by repetitious practice; "well-drilled in military procedures" -01912280 00 s 02 housebroken 0 house-trained 0 001 & 01911683 a 0000 | (of pets) trained to urinate and defecate outside or in a special place; "housebroken pets"; "`house-trained' is chiefly British" -01912483 00 s 03 potty-trained 0 pot-trained 0 toilet-trained 0 001 & 01911683 a 0000 | (of children) trained to use the toilet -01912613 00 a 01 untrained 0 003 ! 01911683 a 0101 & 01912858 a 0000 & 01913089 a 0000 | not disciplined or conditioned or made adept by training; "an untrained voice"; "untrained troops"; "young minds untrained in the habit of concentration" -01912858 00 s 02 primitive 0 naive 0 002 & 01912613 a 0000 ;c 06156968 n 0000 | of or created by one without formal training; simple or naive in style; "primitive art such as that by Grandma Moses is often colorful and striking" -01913089 00 s 01 undisciplined 0 001 & 01912613 a 0000 | not subjected to discipline; "undisciplined talent" -01913200 00 a 01 qualified 2 006 ^ 00555325 a 0000 ^ 01540365 a 0000 ! 01913715 a 0101 & 01913413 a 0000 & 01913514 a 0000 & 01913642 a 0000 | limited or restricted; not absolute; "gave only qualified approval" -01913413 00 s 01 conditional 0 002 & 01913200 a 0000 + 13924069 n 0101 | qualified by reservations -01913514 00 s 02 hedged 0 weasel-worded 0 001 & 01913200 a 0000 | evasively worded in order to avoid an unqualified statement -01913642 00 s 02 limited 0 modified 0 001 & 01913200 a 0000 | mediocre -01913715 00 a 01 unqualified 2 007 ^ 00556709 a 0000 ^ 01541013 a 0000 ! 01913200 a 0101 & 01913931 a 0000 & 01914108 a 0000 & 01914250 a 0000 & 01914407 a 0000 | not limited or restricted; "an unqualified denial" -01913931 00 s 04 categoric 0 categorical 0 flat 0 unconditional 0 001 & 01913715 a 0000 | not modified or restricted by reservations; "a categorical denial"; "a flat refusal" -01914108 00 s 02 clean 0 clear 0 001 & 01913715 a 0000 | free of restrictions or qualifications; "a clean bill of health"; "a clear winner" -01914250 00 s 01 cool 0 002 & 01913715 a 0000 ;u 07075172 n 0000 | (used of a number or sum) without exaggeration or qualification; "a cool million bucks" -01914407 00 s 03 outright 0 straight-out 0 unlimited 0 001 & 01913715 a 0000 | without reservation or exception -01914521 00 a 01 qualitative 0 002 ! 01914930 a 0101 & 01914767 a 0000 | involving distinctions based on qualities; "qualitative change"; "qualitative data"; "qualitative analysis determines the chemical constituents of a substance or mixture" -01914767 00 s 01 soft 0 001 & 01914521 a 0000 | using evidence not readily amenable to experimental verification or refutation; "soft data"; "the soft sciences" -01914930 00 a 01 quantitative 0 008 ! 01914521 a 0101 & 01915353 a 0000 & 01915482 a 0000 & 01915586 a 0000 & 01915745 a 0000 & 01915849 a 0000 & 01915991 a 0000 & 01916142 a 0000 | expressible as a quantity or relating to or susceptible of measurement; "export wheat without quantitative limitations"; "quantitative analysis determines the amounts and proportions of the chemical constituents of a substance or mixture" -01915353 00 s 02 decimal 1 denary 0 001 & 01914930 a 0000 | numbered or proceeding by tens; based on ten; "the decimal system" -01915482 00 s 01 duodecimal 0 001 & 01914930 a 0000 | based on twelve; "the duodecimal number system" -01915586 00 s 02 numeric 0 numerical 0 001 & 01914930 a 0000 | measured or expressed in numbers; "numerical value"; "the numerical superiority of the enemy" -01915745 00 s 01 quantifiable 0 002 & 01914930 a 0000 + 05209822 n 0101 | capable of being quantified -01915849 00 s 01 three-figure 0 001 & 01914930 a 0000 | (of numbers) written with three figures; "100 through 999 are three-figure numbers" -01915991 00 s 01 valued 0 002 & 01914930 a 0000 ;u 06307152 n 0000 | (usually used in combination) having value of a specified kind; "triple-valued" -01916142 00 s 01 vicenary 0 001 & 01914930 a 0000 | of or relating to or based on 20 -01916229 00 a 01 questionable 0 010 ^ 00590390 a 0000 ! 01918184 a 0101 & 01916555 a 0000 & 01916693 a 0000 & 01916784 a 0000 & 01916979 a 0000 & 01917370 a 0000 & 01917594 a 0000 & 01917916 a 0000 & 01918001 a 0000 | subject to question; "questionable motives"; "a questionable reputation"; "a fire of questionable origin" -01916555 00 s 03 alleged(a) 0 so-called 0 supposed 0 001 & 01916229 a 0000 | doubtful or suspect; "these so-called experts are no help" -01916693 00 s 01 apocryphal 0 001 & 01916229 a 0000 | being of questionable authenticity -01916784 00 s 03 debatable 0 problematic 0 problematical 0 002 & 01916229 a 0000 + 05687338 n 0302 | open to doubt or debate; "If you ever get married, which seems to be extremely problematic" -01916979 00 s 04 doubtful 0 dubious 0 dubitable 0 in_question(p) 0 003 & 01916229 a 0000 + 04757522 n 0202 + 04757522 n 0103 | open to doubt or suspicion; "the candidate's doubtful past"; "he has a dubious record indeed"; "what one found uncertain the other found dubious or downright false"; "it was more than dubitable whether the friend was as influential as she thought"- Karen Horney -01917370 00 s 01 equivocal 0 001 & 01916229 a 0000 | open to question; "aliens of equivocal loyalty"; "his conscience reproached him with the equivocal character of the union into which he had forced his son"-Anna Jameson -01917594 00 s 05 fishy 0 funny 0 shady 0 suspect 0 suspicious 0 003 & 01916229 a 0000 ;u 07075172 n 0000 + 04895979 n 0502 | not as expected; "there was something fishy about the accident"; "up to some funny business"; "some definitely queer goings-on"; "a shady deal"; "her motives were suspect"; "suspicious behavior" -01917916 00 s 01 impugnable 0 001 & 01916229 a 0000 | subject to being discredited -01918001 00 s 02 self-styled 0 soi-disant 0 001 & 01916229 a 0000 | as claimed by and for yourself often without justification; "the self-styled `doctor' has no degree of any kind" -01918184 00 a 01 unquestionable 0 010 ^ 00590923 a 0000 ^ 00721505 a 0000 + 04754862 n 0104 + 04754862 n 0103 ! 01916229 a 0101 & 01918464 a 0000 & 01918541 a 0000 & 01918660 a 0000 & 01918771 a 0000 & 01918873 a 0000 | incapable of being questioned; "unquestionable authority" -01918464 00 s 01 acknowledged 0 001 & 01918184 a 0000 | generally accepted -01918541 00 s 02 beyond_doubt(p) 0 indubitable 0 002 & 01918184 a 0000 + 04754862 n 0202 | too obvious to be doubted -01918660 00 s 01 for_sure 0 001 & 01918184 a 0000 | not open to doubt; "she wanted to go; that was for sure" -01918771 00 s 01 mathematical 0 001 & 01918184 a 0000 | beyond question; "a mathematical certainty" -01918873 00 s 01 unimpeachable 0 001 & 01918184 a 0000 | beyond doubt or reproach; "an unimpeachable source" -01918984 00 a 01 quiet 1 008 ^ 00174379 a 0000 ^ 01454636 a 0000 + 04982856 n 0101 ! 01919931 a 0101 & 01919282 a 0000 & 01919428 a 0000 & 01919676 a 0000 & 01919793 a 0000 | free of noise or uproar; or making little if any sound; "a quiet audience at the concert"; "the room was dark and quiet" -01919282 00 s 01 noiseless 0 002 & 01918984 a 0000 + 04983013 n 0101 | making no sound; "th' inaudible and noiseless foot of time"- Shakespeare -01919428 00 s 03 silent 0 soundless 0 still 0 005 & 01918984 a 0000 + 04982478 n 0302 + 04982856 n 0202 + 13925550 n 0101 + 04982207 n 0101 | marked by absence of sound; "a silent house"; "soundless footsteps on the grass"; "the night was still" -01919676 00 s 01 stilly 0 002 & 01918984 a 0000 ;c 07092592 n 0000 | (poetic) still or calm; "in the stilly night" -01919793 00 s 01 tiptoe 0 001 & 01918984 a 0000 | walking on the tips of ones's toes so as to make no noise; "moving with tiptoe steps" -01919931 00 a 01 noisy 0 017 ^ 00298767 a 0000 ^ 01452593 a 0000 + 04981474 n 0101 + 07122730 n 0101 ! 01918984 a 0101 & 01920367 a 0000 & 01920697 a 0000 & 01920834 a 0000 & 01921011 a 0000 & 01921171 a 0000 & 01921335 a 0000 & 01921466 a 0000 & 01921639 a 0000 & 01921752 a 0000 & 01921868 a 0000 & 01922030 a 0000 & 01922131 a 0000 | full of or characterized by loud and nonmusical sounds; "a noisy cafeteria"; "a small noisy dog" -01920367 00 s 05 blatant 0 clamant 0 clamorous 0 strident 0 vociferous 0 006 & 01919931 a 0000 + 04990021 n 0403 + 04990021 n 0402 + 07377473 n 0304 + 07122118 n 0301 + 04706882 n 0101 | conspicuously and offensively loud; given to vehement outcry; "blatant radios"; "a clamorous uproar"; "strident demands"; "a vociferous mob" -01920697 00 s 02 abuzz 0 buzzing 0 001 & 01919931 a 0000 | noisy like the sound of a bee; "the room was abuzz over the latest scandal" -01920834 00 s 02 clangorous 0 clanging 0 002 & 01919931 a 0000 + 07380144 n 0102 | having a loud resonant metallic sound; "the clangorous locomotive works"; "a clanging gong" -01921011 00 s 01 clanking 0 001 & 01919931 a 0000 | having a hard nonresonant metallic sound; "clanking chains"; "the clanking arms of the soldiers near him" -01921171 00 s 01 clattery 0 001 & 01919931 a 0000 | a rattling sound as of hard things striking together; "a clattery typewriter"; "the clattery sound of dishes" -01921335 00 s 02 creaky 0 screaky 0 002 & 01919931 a 0000 + 07381864 n 0101 | having a rasping or grating sound; "creaky stairs" -01921466 00 s 03 rackety 0 rip-roaring 0 uproarious 0 005 & 01919931 a 0000 + 13978709 n 0303 + 07385660 n 0302 + 07390945 n 0101 + 04981474 n 0102 | uncontrollably noisy -01921639 00 s 02 reedy 0 wheezy 0 002 & 01919931 a 0000 + 02817799 n 0103 | having a tone of a reed instrument -01921752 00 s 01 stertorous 0 002 & 01919931 a 0000 + 00835976 n 0103 | of breathing having a heavy snoring sound -01921868 00 s 01 swishy 0 002 & 01919931 a 0000 + 07396414 n 0101 | resembling a sustained `sh' or soft whistle; "swishing windshield wipers"; "a swishy skirt" -01922030 00 s 01 thundering 0 001 & 01919931 a 0000 | sounding like thunder; "the thundering herd" -01922131 00 s 01 whirring 0 001 & 01919931 a 0000 | like the sound of rapidly vibrating wings -01922227 00 a 03 restful 0 reposeful 0 relaxing 0 003 + 04636250 n 0101 ! 01922562 a 0101 & 01922410 a 0000 | affording physical or mental rest; "she spent a restful night at home" -01922410 00 s 02 slumberous 0 slumbrous 0 003 & 01922227 a 0000 + 14015148 n 0201 + 14015148 n 0101 | quiet and tranquil; "a slumberous June morning" -01922562 00 a 02 restless 0 uneasy 5 003 + 04625284 n 0202 + 04625284 n 0101 ! 01922227 a 0101 | lacking or not affording physical or mental rest; "a restless night"; "she fell into an uneasy sleep" -01922763 00 a 01 quiet 2 007 ^ 01740892 a 0000 ^ 02389946 a 0000 ^ 00087152 a 0000 + 07515560 n 0103 ! 01923391 a 0101 & 01923118 a 0000 & 01923286 a 0000 | characterized by an absence or near absence of agitation or activity; "a quiet life"; "a quiet throng of onlookers"; "quiet peace-loving people"; "the factions remained quiet for almost 10 years" -01923118 00 s 01 quiescent 0 003 & 01922763 a 0000 + 01064863 n 0102 + 01064863 n 0101 | marked by a state of tranquil repose; "the quiescent melancholy of the town" -01923286 00 s 01 untroubled 0 001 & 01922763 a 0000 | free from turmoil or worries; "untroubled times" -01923391 00 a 01 unquiet 0 006 ^ 00085264 a 0000 ^ 00822449 a 0000 ^ 02390335 a 0000 ! 01922763 a 0101 & 01923720 a 0000 & 01924148 a 0000 | characterized by unrest or disorder; "unquiet days of riots"; "following the assassination of Martin Luter King ours was an unquiet nation"; "spent an unquiet night tossing and turning" -01923720 00 s 05 disruptive 0 riotous 0 troubled 0 tumultuous 0 turbulent 0 006 & 01923391 a 0000 + 13979173 n 0501 + 13978709 n 0401 + 13978709 n 0402 + 01170502 n 0201 + 00554298 v 0101 | characterized by unrest or disorder or insubordination; "effects of the struggle will be violent and disruptive"; "riotous times"; "these troubled areas"; "the tumultuous years of his administration"; "a turbulent and unruly childhood" -01924148 00 s 02 squally 0 squalling 0 001 & 01923391 a 0000 | characterized by short periods of noisy commotion; "a home life that has been extraordinarily squally" -01924316 00 a 01 random 0 005 + 04771332 n 0101 ! 01925158 a 0101 & 01924585 a 0000 & 01924803 a 0000 & 01925000 a 0000 | lacking any definite plan or order or purpose; governed by or depending on chance; "a random choice"; "bombs fell at random"; "random movements" -01924585 00 s 01 ergodic 0 002 & 01924316 a 0000 ;c 06018465 n 0000 | positive recurrent aperiodic state of stochastic systems; tending in probability to a limiting form that is independent of the initial conditions -01924803 00 s 02 haphazard 0 hit-or-miss 0 002 & 01924316 a 0000 + 04771332 n 0102 | dependent upon or characterized by chance; "a haphazard plan of action"; "his judgment is rather hit-or-miss" -01925000 00 s 01 stochastic 0 002 & 01924316 a 0000 ;c 06018465 n 0000 | being or having a random variable; "a stochastic variable"; "stochastic processes" -01925158 00 a 01 nonrandom 0 002 ! 01924316 a 0101 & 01925242 a 0000 | not random -01925242 00 s 01 purposive 0 001 & 01925158 a 0000 | having or showing or acting with a purpose or design; "purposive behavior" -01925372 00 a 01 rational 0 010 ^ 01430111 a 0000 ^ 01943406 a 0000 ^ 02073443 a 0000 + 04784978 n 0102 + 14379829 n 0101 ! 01926376 a 0101 & 01925708 a 0000 & 01925979 a 0000 & 01926089 a 0000 & 01926229 a 0000 | consistent with or based on or using reason; "rational behavior"; "a process of rational inference"; "rational thought" -01925708 00 s 03 coherent 0 logical 0 lucid 0 003 & 01925372 a 0000 + 04784664 n 0202 + 04821277 n 0102 | capable of thinking and expressing yourself in a clear and consistent manner; "a lucid thinker"; "she was more coherent than she had been just after the accident" -01925979 00 s 02 demythologized 0 demythologised 0 001 & 01925372 a 0000 | having mythical elements removed -01926089 00 s 03 intelligent 0 reasoning(a) 0 thinking(a) 0 002 & 01925372 a 0000 + 05617606 n 0101 | endowed with the capacity to reason -01926229 00 s 02 reasonable 0 sane 0 003 & 01925372 a 0000 + 14379501 n 0202 + 14379829 n 0103 | marked by sound judgment; "sane nuclear policy" -01926376 00 a 01 irrational 0 009 ^ 01430847 a 0000 ^ 00464962 a 0000 ^ 01944660 a 0000 + 14397563 n 0101 ! 01925372 a 0101 & 01926654 a 0000 & 01926803 a 0000 & 01926921 a 0000 & 01927061 a 0000 | not consistent with or using reason; "irrational fears"; "irrational animals" -01926654 00 s 02 blind 0 unreasoning 0 001 & 01926376 a 0000 | not based on reason or evidence; "blind hatred"; "blind faith"; "unreasoning panic" -01926803 00 s 01 reasonless 0 001 & 01926376 a 0000 | not endowed with the capacity to reason; "a reasonless brute" -01926921 00 s 01 nonrational 0 001 & 01926376 a 0000 | not based on reason; "there is a great deal that is nonrational in modern culture" -01927061 00 s 01 superstitious 0 002 & 01926376 a 0000 + 05952678 n 0101 | showing ignorance of the laws of nature and faith in magic or chance; "finally realized that the horror he felt was superstitious in origin" -01927279 00 a 01 emotional 2 003 + 07480068 n 0101 + 04626280 n 0101 ! 01927455 a 0101 | determined or actuated by emotion rather than reason; "it was an emotional judgment" -01927455 00 a 02 cerebral 0 intellectual 5 002 + 05618849 n 0202 ! 01927279 a 0101 | involving intelligence rather than emotions or instinct; "a cerebral approach to the problem"; "cerebral drama" -01927654 00 a 01 racial 0 005 ! 01928381 a 0101 & 01927904 a 0000 & 01928019 a 0000 & 01928114 a 0000 & 01928283 a 0000 | of or characteristic of race or races or arising from differences among groups; "racial differences"; "racial discrimination" -01927904 00 s 01 biracial 0 001 & 01927654 a 0000 | consisting of or combining two races; "a biracial committee" -01928019 00 s 01 interracial 0 001 & 01927654 a 0000 | between races; "interracial conflict" -01928114 00 s 01 multiracial 0 001 & 01927654 a 0000 | made up of or involving or acting on behalf of various races; "a multiracial society"; "multiracial government" -01928283 00 s 01 racist 0 001 & 01927654 a 0000 | based on racial intolerance; "racist remarks" -01928381 00 a 01 nonracial 0 001 ! 01927654 a 0101 | not racial; having nothing to do with race or races; "his remarks were intended to be completely nonracial"; "a nonracial reason for the peremptory challenge of the juror" -01928608 00 a 01 reactive 0 010 ;c 06084469 n 0000 ;c 06090869 n 0000 + 14534457 n 0101 + 00446885 v 0101 ! 01929600 a 0101 & 01928926 a 0000 & 01929062 a 0000 & 01929202 a 0000 & 01929312 a 0000 & 01929456 a 0000 | participating readily in reactions; "sodium is a reactive metal"; "free radicals are very reactive" -01928926 00 s 02 activated 0 excited 0 002 & 01928608 a 0000 ;c 06090869 n 0000 | (of e.g. a molecule) made reactive or more reactive -01929062 00 s 01 labile 0 002 & 01928608 a 0000 ;c 06037666 n 0000 | (chemistry, physics, biology) readily undergoing change or breakdown -01929202 00 s 01 oxidizable 0 001 & 01928608 a 0000 | capable of undergoing a chemical reaction with oxygen -01929312 00 s 01 thermolabile 0 002 & 01928608 a 0000 ;c 06037666 n 0000 | (chemistry, physics, biology) readily changed or destroyed by heat -01929456 00 s 01 unstable 0 002 & 01928608 a 0000 + 04775747 n 0102 | highly or violently reactive; "sensitive and highly unstable compounds" -01929600 00 a 01 unreactive 0 007 ;c 06084469 n 0000 ;c 06090869 n 0000 ! 01928608 a 0101 & 01929802 a 0000 & 01930004 a 0000 & 01930244 a 0000 & 01930417 a 0000 | (chemistry) not reacting chemically -01929802 00 s 01 inactive 0 003 & 01929600 a 0000 ;c 06084469 n 0000 + 14010148 n 0102 | (chemistry) not participating in a chemical reaction; chemically inert; "desired amounts of inactive chlorine" -01930004 00 s 03 inert 0 indifferent 0 neutral 0 003 & 01929600 a 0000 ;c 06084469 n 0000 + 05039819 n 0301 | having only a limited ability to react chemically; chemically inactive; "inert matter"; "an indifferent chemical in a reaction" -01930244 00 s 01 noble 0 001 & 01929600 a 0000 | inert especially toward oxygen; "a noble gas such as helium or neon"; "noble metals include gold and silver and platinum" -01930417 00 s 01 stable 0 001 & 01929600 a 0000 | not taking part readily in chemical change -01930512 00 a 01 ready 0 012 ^ 01843380 a 0000 ^ 02564986 a 0000 = 14031108 n 0000 + 14031523 n 0101 + 14031108 n 0101 ! 01932234 a 0101 & 01931034 a 0000 & 01931203 a 0000 & 01931517 a 0000 & 01931676 a 0000 & 01931807 a 0000 & 01931926 a 0000 | completely prepared or in condition for immediate action or use or progress; "get ready"; "she is ready to resign"; "the bridge is ready to collapse"; "I am ready to work"; "ready for action"; "ready for use"; "the soup will be ready in a minute"; "ready to learn to read" -01931034 00 s 01 at_the_ready(p) 0 001 & 01930512 a 0000 | ready for immediate use; "soldiers with guns at the ready"; "students with pens and notebooks at the ready" -01931203 00 s 03 fit(p) 0 primed(p) 0 set(p) 0 002 & 01930512 a 0000 + 04716864 n 0101 | (usually followed by `to' or `for') on the point of or strongly disposed; "in no fit state to continue"; "fit to drop"; "laughing fit to burst"; "she was fit to scream"; "primed for a fight"; "we are set to go at any time" -01931517 00 s 01 in_order 0 001 & 01930512 a 0000 | in a state of proper readiness or preparation or arrangement; "everything is in order for their arrival" -01931676 00 s 01 prompt 0 001 & 01930512 a 0000 | ready and willing or quick to act; "she is always prompt to help her friends"; -01931807 00 s 01 ripe(p) 0 001 & 01930512 a 0000 | fully prepared or eager; "the colonists were ripe for revolution" -01931926 00 s 02 waiting 0 ready_and_waiting(p) 0 001 & 01930512 a 0000 | being and remaining ready and available for use; "waiting cars and limousines lined the curb"; "found her mother waiting for them"; "an impressive array of food ready and waiting for the guests"; "military forces ready and waiting" -01932234 00 a 01 unready 0 006 ^ 01845160 a 0000 = 14031108 n 0000 ! 01930512 a 0101 & 01932481 a 0000 & 01932633 a 0000 & 01932902 a 0000 | not prepared or in a state of readiness; slow to understand or respond; "she cursed her unready tongue" -01932481 00 s 01 flat-footed 0 001 & 01932234 a 0000 | unprepared and unable to react quickly; "the new product caught their competitors flat-footed" -01932633 00 s 07 napping 0 off-guard(a) 0 off_guard(p) 0 off_one's_guard(p) 0 off_his_guard 0 off_her_guard 0 off_your_guard 0 001 & 01932234 a 0000 | not prepared or vigilant; "the blow caught him napping"; "caught in an off-guard moment"; "found him off his guard" -01932902 00 s 01 unripe 0 001 & 01932234 a 0000 | not fully prepared -01932973 00 a 02 real 0 existent 2 015 ^ 00013160 a 0000 ^ 01115349 a 0000 ^ 01939984 a 0000 ^ 02179279 a 0000 = 13955461 n 0000 + 13954253 n 0203 + 02603699 v 0201 + 13955461 n 0102 + 13956097 n 0101 + 13955461 n 0101 ! 01934554 a 0101 & 01933520 a 0000 & 01933731 a 0000 & 01934026 a 0000 & 01934284 a 0000 | being or occurring in fact or actuality; having verified existence; not illusory; "real objects"; "real people; not ghosts"; "a film based on real life"; "a real illness"; "real humility"; "Life is real! Life is earnest!"- Longfellow -01933520 00 s 01 actual 0 003 & 01932973 a 0000 + 01644746 v 0103 + 13954818 n 0101 | taking place in reality; not pretended or imitated; "we saw the actual wedding on television"; "filmed the actual beating" -01933731 00 s 02 actual 2 factual 0 006 & 01932973 a 0000 + 04759428 n 0202 + 04759428 n 0201 + 01644746 v 0103 + 00987870 v 0101 + 13954818 n 0101 | existing in act or fact; "rocks and trees...the actual world"; "actual heroism"; "the actual things that produced the emotion you experienced" -01934026 00 s 02 objective 0 documentary 0 003 & 01932973 a 0000 + 06616806 n 0201 + 04892344 n 0101 | emphasizing or expressing things as perceived without distortion of personal feelings, insertion of fictional matter, or interpretation; "objective art" -01934284 00 s 01 historical 0 002 & 01932973 a 0000 + 13956362 n 0101 | having once lived or existed or taken place in the real world as distinct from being legendary; "the historical Jesus"; "doubt that a historical Camelot every existed"; "actual historical events" -01934554 00 a 01 unreal 0 021 ^ 01571363 a 0000 ^ 01116380 a 0000 ^ 02180797 a 0000 ^ 01574446 a 0000 ^ 01941999 a 0000 = 13955461 n 0000 + 13960117 n 0101 + 04762492 n 0101 ! 01932973 a 0101 & 01935139 a 0000 & 01935301 a 0000 & 01935581 a 0000 & 01935744 a 0000 & 01935935 a 0000 & 01936184 a 0000 & 01936528 a 0000 & 01936778 a 0000 & 01936997 a 0000 & 01937187 a 0000 & 01937390 a 0000 & 01937759 a 0000 | lacking in reality or substance or genuineness; not corresponding to acknowledged facts or criteria; "ghosts and other unreal entities"; "unreal propaganda serving as news" -01935139 00 s 01 dreamed(a) 0 001 & 01934554 a 0000 | conceived of or imagined or hoped for; "his dreamed symphony that would take the world of music by storm" -01935301 00 s 04 envisioned 0 pictured 0 visualized 0 visualised 0 001 & 01934554 a 0000 | seen in the mind as a mental image; "the glory of his envisioned future"; "the snow-covered Alps pictured in her imagination"; "the visualized scene lacked the ugly details of real life" -01935581 00 s 02 eye-deceiving 0 trompe-l'oeil(a) 0 001 & 01934554 a 0000 | creating the illusion of seeing reality; "the visual deception of trompe-l'oeil art" -01935744 00 s 02 fabled 0 legendary 0 002 & 01934554 a 0000 + 06371413 n 0201 | celebrated in fable or legend; "the fabled Paul Bunyan and his blue ox"; "legendary exploits of Jesse James" -01935935 00 s 04 fabricated 0 fancied 0 fictional 0 fictitious 0 003 & 01934554 a 0000 + 06367107 n 0401 + 06757891 n 0302 | formed or conceived by the imagination; "a fabricated excuse for his absence"; "a fancied wrong"; "a fictional character" -01936184 00 s 05 fabulous 0 mythic 0 mythical 0 mythologic 0 mythological 0 007 & 01934554 a 0000 + 07978423 n 0501 + 07978423 n 0401 + 06372680 n 0301 + 06372680 n 0201 + 06371413 n 0102 + 06372095 n 0101 | based on or told of in traditional stories; lacking factual basis or historical validity; "mythical centaurs"; "the fabulous unicorn" -01936528 00 s 03 fanciful 0 imaginary 0 notional 0 001 & 01934554 a 0000 | not based on fact; unreal; "the falsehood about some fanciful secret treaties"- F.D.Roosevelt; "a small child's imaginary friends"; "to create a notional world for oneself" -01936778 00 s 02 fantastic 0 fantastical 0 003 & 01934554 a 0000 + 05632446 n 0201 + 05632446 n 0101 | existing in fancy only; "fantastic figures with bulbous heads the circumference of a bushel"- Nathaniel Hawthorne -01936997 00 s 01 hallucinatory 0 002 & 01934554 a 0000 + 02117649 v 0101 | characterized by or characteristic of hallucination ; "the bizarre hallucinatory dreams of fever"- Jean Stafford -01937187 00 s 02 illusional 0 illusionary 0 005 & 01934554 a 0000 + 00754767 n 0202 + 05939636 n 0101 + 05896059 n 0101 + 00754767 n 0102 | marked by or producing illusion; "illusionary stage effects" -01937390 00 s 02 illusive 0 illusory 0 002 & 01934554 a 0000 + 05896059 n 0201 | based on or having the nature of an illusion; "illusive hopes of finding a better job"; "Secret activities offer presidents the alluring but often illusory promise that they can achieve foreign policy goals without the bothersome debate and open decision that are staples of democracy" -01937759 00 s 02 make-believe 0 pretend 0 003 & 01934554 a 0000 + 05769930 n 0103 + 00755500 n 0101 | imagined as in a play; "the make-believe world of theater"; "play money"; "dangling their legs in the water to catch pretend fish" -01937994 00 a 01 real(a) 2 003 ! 01938659 a 0101 & 01938322 a 0000 & 01938508 a 0000 | no less than what is stated; worthy of the name; "the real reason"; "real war"; "a real friend"; "a real woman"; "meat and potatoes--I call that a real meal"; "it's time he had a real job"; "it's no penny-ante job--he's making real money" -01938322 00 s 01 proper(a) 0 001 & 01937994 a 0000 | having all the qualities typical of the thing specified; "wanted a proper dinner; not just a snack"; "he finally has a proper job" -01938508 00 s 01 true(a) 0 001 & 01937994 a 0000 | rightly so called; "true courage"; "a spirit which true men have always admired"; "a true friend" -01938659 00 a 01 unreal 2 004 ! 01937994 a 0101 & 01938975 a 0000 & 01939226 a 0000 & 01939402 a 0000 | not actually such; being or seeming fanciful or imaginary; "this conversation is getting more and more unreal"; "the fantastically unreal world of government bureaucracy"; "the unreal world of advertising art" -01938975 00 s 02 deceptive 0 delusory 0 005 & 01938659 a 0000 + 02575082 v 0203 + 02575082 v 0101 + 00854420 v 0101 + 04874939 n 0101 | causing one to believe what is not true or fail to believe what is true; "deceptive calm"; "a delusory pleasure" -01939226 00 s 02 dreamlike 0 surreal 0 001 & 01938659 a 0000 | resembling a dream; "night invested the lake with a dreamlike quality"; "as irrational and surreal as a dream" -01939402 00 s 01 phantom 0 001 & 01938659 a 0000 | something apparently sensed but having no physical reality; "seemed to hear faint phantom bells"; "the amputee's illusion of a phantom limb" -01939596 00 a 01 real 1 002 ;c 06149484 n 0000 ! 01939784 a 0101 | of, relating to, or representing an amount that is corrected for inflation; "real prices"; "real income"; "real wages" -01939784 00 a 01 nominal 0 002 ;c 06149484 n 0000 ! 01939596 a 0101 | of, relating to, or characteristic of an amount that is not adjusted for inflation; "the nominal GDP"; "nominal interest rates" -01939984 00 a 01 realistic 0 012 ^ 01821266 a 0000 ^ 01834304 a 0000 ^ 01932973 a 0000 + 10509605 n 0101 ! 01941999 a 0101 & 01940472 a 0000 & 01940651 a 0000 & 01941026 a 0000 & 01941274 a 0000 & 01941383 a 0000 & 01941604 a 0000 & 01941814 a 0000 | aware or expressing awareness of things as they really are; "a realistic description"; "a realistic view of the possibilities"; "a realistic appraisal of our chances"; "the actors tried to create a realistic portrayal of the Africans" -01940472 00 s 02 down-to-earth 0 earthy 0 001 & 01939984 a 0000 | sensible and practical; "has a straightforward down-to-earth approach to a problem"; "her earthy common sense" -01940651 00 s 04 hardheaded 0 hard-nosed 0 practical 1 pragmatic 0 004 & 01939984 a 0000 + 05151869 n 0402 + 00410247 n 0301 + 05151088 n 0301 | guided by practical experience and observation rather than theory; "a hardheaded appraisal of our position"; "a hard-nosed labor leader"; "completely practical in his approach to business"; "not ideology but pragmatic politics" -01941026 00 s 04 graphic 0 lifelike 0 pictorial 0 vivid 0 002 & 01939984 a 0000 + 05193338 n 0403 | evoking lifelike images within the mind; "pictorial poetry and prose"; "graphic accounts of battle"; "a lifelike portrait"; "a vivid description" -01941274 00 s 01 living 0 001 & 01939984 a 0000 | true to life; lifelike; "the living image of her mother" -01941383 00 s 02 true-to-life(a) 0 true_to_life(p) 0 001 & 01939984 a 0000 | representing things or actions or conditions as they actually are; "the novel about ghetto life was true to life"; "true-to-life duck decoys" -01941604 00 s 02 veridical 0 real 2 003 & 01939984 a 0000 + 13955461 n 0202 + 13955461 n 0201 | coinciding with reality; "perceptual error...has a surprising resemblance to veridical perception"- F.A.Olafson -01941814 00 s 02 virtual(a) 0 practical(a) 2 001 & 01939984 a 0000 | being actually such in almost every respect; "a practical failure"; "the once elegant temple lay in virtual ruin" -01941999 00 a 01 unrealistic 0 009 ^ 01823092 a 0000 ^ 01836350 a 0000 ^ 01934554 a 0000 ! 01939984 a 0101 & 01942279 a 0000 & 01942507 a 0000 & 01942732 a 0000 & 01942888 a 0000 & 01943067 a 0000 | not realistic; "unrealistic expectations"; "prices at unrealistic high levels" -01942279 00 s 01 chimerical 0 002 & 01941999 a 0000 + 05769314 n 0101 | produced by a wildly fanciful imagination; "his Utopia is not a chimerical commonwealth but a practical improvement on what already exists"- Douglas Bush -01942507 00 s 02 delusive 0 false 0 004 & 01941999 a 0000 + 13960464 n 0202 + 13960464 n 0201 + 02575082 v 0103 | inappropriate to reality or facts; "delusive faith in a wonder drug"; "delusive expectations"; "false hopes" -01942732 00 s 02 fantastic 0 wild 0 002 & 01941999 a 0000 + 05632446 n 0101 | fanciful and unrealistic; foolish; "a fantastic idea of his own importance" -01942888 00 s 01 kafkaesque 0 001 & 01941999 a 0000 | characterized by surreal distortion and a sense of impending danger; "the kafkaesque terror of the endless interrogations" -01943067 00 s 04 phantasmagoric 0 phantasmagorical 0 surreal 0 surrealistic 0 004 & 01941999 a 0000 + 08470210 n 0401 + 05928840 n 0201 + 05928840 n 0101 | characterized by fantastic imagery and incongruous juxtapositions; "a great concourse of phantasmagoric shadows"--J.C.Powys; "the incongruous imagery in surreal art and literature" -01943406 00 a 02 reasonable 0 sensible 4 012 ^ 00956131 a 0000 ^ 01430111 a 0000 ^ 01925372 a 0000 ^ 02498708 a 0000 = 05160574 n 0000 + 05151701 n 0201 + 04783888 n 0101 + 05160574 n 0101 ! 01944660 a 0101 & 01943746 a 0000 & 01944088 a 0000 & 01944492 a 0000 | showing reason or sound judgment; "a sensible choice"; "a sensible person" -01943746 00 s 03 commonsense 0 commonsensible 0 commonsensical 0 002 & 01943406 a 0000 + 05614657 n 0301 | exhibiting native good judgment; "arrive home at a reasonable hour"; "commonsense scholarship on the foibles of a genius"; "unlearned and commonsensical countryfolk were capable of solving problems that beset the more sophisticated" -01944088 00 s 05 healthy 0 intelligent 0 levelheaded 0 level-headed 0 sound 0 001 & 01943406 a 0000 | exercising or showing good judgment; "healthy scepticism"; "a healthy fear of rattlesnakes"; "the healthy attitude of French laws"; "healthy relations between labor and management"; "an intelligent solution"; "a sound approach to the problem"; "sound advice"; "no sound explanation for his decision" -01944492 00 s 02 tenable 0 well-founded 0 003 & 01943406 a 0000 + 04783888 n 0103 + 04783888 n 0102 | based on sound reasoning or evidence; "well-founded suspicions" -01944660 00 a 01 unreasonable 0 009 ^ 01430847 a 0000 ^ 01533120 a 0000 ^ 01926376 a 0000 = 05160574 n 0000 ! 01943406 a 0101 & 01944904 a 0000 & 01945010 a 0000 & 01945139 a 0000 & 01945350 a 0000 | not reasonable; not showing good judgment -01944904 00 s 01 counterintuitive 0 001 & 01944660 a 0000 | contrary to what common sense would suggest -01945010 00 s 02 indefensible 0 untenable 0 001 & 01944660 a 0000 | (of theories etc) incapable of being defended or justified -01945139 00 s 03 mindless 0 reasonless 0 senseless 0 003 & 01944660 a 0000 + 05174023 n 0103 + 04894204 n 0102 | not marked by the use of reason; "mindless violence"; "reasonless hostility"; "a senseless act" -01945350 00 s 03 undue 0 unjustified 0 unwarranted 0 001 & 01944660 a 0000 | lacking justification or authorization; "desire for undue private profit"; "unwarranted limitations of personal freedom" -01945550 00 a 02 reciprocal 0 mutual 0 013 + 13843401 n 0201 + 13841863 n 0201 + 13843401 n 0202 + 13841213 n 0102 + 00040420 n 0101 + 13841213 n 0101 ! 01946911 a 0101 & 01946012 a 0000 & 01946167 a 0000 & 01946267 a 0000 & 01946439 a 0000 & 01946595 a 0000 & 01946764 a 0000 | concerning each of two or more persons or things; especially given or done in return; "reciprocal aid"; "reciprocal trade"; "mutual respect"; "reciprocal privileges at other clubs" -01946012 00 s 01 bilateral 0 001 & 01945550 a 0000 | affecting or undertaken by two parties; "a bilateral agreement between the United States and Japan" -01946167 00 s 01 trilateral 0 001 & 01945550 a 0000 | involving three parties; "trilateral talks" -01946267 00 s 01 correlative 0 003 & 01945550 a 0000 ;c 06174404 n 0000 + 13841651 n 0102 | expressing a reciprocal or complementary relation; "correlative conjunctions" -01946439 00 s 02 interactional 0 interactive 0 003 & 01945550 a 0000 + 02376958 v 0201 + 00039021 n 0101 | capable of acting on or influencing each other -01946595 00 s 02 reciprocative 0 reciprocatory 0 004 & 01945550 a 0000 + 01875820 v 0201 + 01875820 v 0101 + 02372326 v 0101 | moving alternately backward and forward -01946764 00 s 02 reciprocative 1 reciprocatory 1 003 & 01945550 a 0000 + 02372326 v 0201 + 02372326 v 0101 | given or done or owed to each other -01946911 00 a 01 nonreciprocal 0 003 ! 01945550 a 0101 & 01947021 a 0000 & 01947127 a 0000 | not reciprocal -01947021 00 s 01 nonreciprocating 0 001 & 01946911 a 0000 | not moving alternately forward and backward -01947127 00 s 03 unanswered 0 unreciprocated 0 unrequited 0 001 & 01946911 a 0000 | not returned in kind; "unrequited (unanswered) love" -01947266 00 a 01 refined 1 016 ^ 00411886 a 0000 ^ 00849357 a 0000 ^ 00983862 a 0000 ^ 01141743 a 0000 ^ 01811997 a 0000 ! 01949149 a 0101 & 01947741 a 0000 & 01948014 a 0000 & 01948092 a 0000 & 01948231 a 0000 & 01948389 a 0000 & 01948573 a 0000 & 01948721 a 0000 & 01948848 a 0000 & 01948958 a 0000 & 01949059 a 0000 | (used of persons and their behavior) cultivated and genteel; "she was delicate and refined and unused to hardship"; "refined people with refined taste" -01947741 00 s 06 civilized 0 civilised 0 cultivated 0 cultured 0 genteel 0 polite 0 002 & 01947266 a 0000 + 04813540 n 0502 | marked by refinement in taste and manners; "cultivated speech"; "cultured Bostonians"; "cultured tastes"; "a genteel old lady"; "polite society" -01948014 00 s 01 couth 0 001 & 01947266 a 0000 | (used facetiously) refined -01948092 00 s 05 dainty 0 mincing 0 niminy-piminy 0 prim 0 twee 0 002 & 01947266 a 0000 + 04901152 n 0401 | affectedly dainty or refined -01948231 00 s 04 debonair 0 debonaire 0 debonnaire 0 suave 0 002 & 01947266 a 0000 + 04913322 n 0402 | having a sophisticated charm; "a debonair gentleman" -01948389 00 s 02 finespun 0 delicate 0 001 & 01947266 a 0000 | developed with extreme delicacy and subtlety; "the satire touches with finespun ridicule every kind of human pretense" -01948573 00 s 02 gentlemanlike 0 gentlemanly 0 002 & 01947266 a 0000 + 10127273 n 0201 | befitting a man of good breeding; "gentlemanly behavior" -01948721 00 s 01 ladylike 0 002 & 01947266 a 0000 + 04667821 n 0101 | befitting a woman of good breeding; "ladylike manners" -01948848 00 s 01 patrician 0 001 & 01947266 a 0000 | befitting a person of noble origin; "a patrician nose" -01948958 00 s 02 overrefined 0 superfine 0 001 & 01947266 a 0000 | excessively delicate or refined -01949059 00 s 02 well-bred 0 well-mannered 0 001 & 01947266 a 0000 | of good upbringing -01949149 00 a 01 unrefined 1 017 ^ 00851103 a 0000 ^ 00985387 a 0000 ^ 01142349 a 0000 ^ 01812846 a 0000 ! 01947266 a 0101 & 01949611 a 0000 & 01949740 a 0000 & 01949859 a 0000 & 01950198 a 0000 & 01950711 a 0000 & 01950857 a 0000 & 01951008 a 0000 & 01951112 a 0000 & 01951197 a 0000 & 01951372 a 0000 & 01951456 a 0000 & 01951559 a 0000 | (used of persons and their behavior) not refined; uncouth; "how can a refined girl be drawn to such an unrefined man?" -01949611 00 s 01 agrestic 0 001 & 01949149 a 0000 | (of behavior) rustic and uncouth; "the agrestic behavior of a country boy" -01949740 00 s 03 artless 0 uncultivated 0 uncultured 0 001 & 01949149 a 0000 | (of persons) lacking art or knowledge -01949859 00 s 06 boorish 0 loutish 0 neanderthal 0 neandertal 0 oafish 0 swinish 0 002 & 01949149 a 0000 + 04914576 n 0101 | ill-mannered and coarse and contemptible in behavior or appearance; "was boorish and insensitive"; "the loutish manners of a bully"; "her stupid oafish husband"; "aristocratic contempt for the swinish multitude" -01950198 00 s 05 coarse 0 common 0 rough-cut 0 uncouth 0 vulgar 0 008 & 01949149 a 0000 + 00582318 v 0502 + 00011698 v 0501 + 04817280 n 0504 + 04817788 n 0402 + 04817280 n 0202 + 08181930 n 0202 + 04817280 n 0101 | lacking refinement or cultivation or taste; "he had coarse manners but a first-rate mind"; "behavior that branded him as common"; "an untutored and uncouth human being"; "an uncouth soldier--a real tough guy"; "appealing to the vulgar taste for violence"; "the vulgar display of the newly rich" -01950711 00 s 01 crass 0 002 & 01949149 a 0000 + 04844343 n 0101 | (of persons) so unrefined as to be lacking in discrimination and sensibility -01950857 00 s 06 ill-bred 0 bounderish 0 lowbred 0 rude 0 underbred 0 yokelish 0 001 & 01949149 a 0000 | (of persons) lacking in refinement or grace -01951008 00 s 01 low 0 002 & 01949149 a 0000 + 13951215 n 0102 | unrefined in character; "low comedy" -01951112 00 s 01 robust 0 001 & 01949149 a 0000 | rough and crude; "a robust tale" -01951197 00 s 01 rough 0 002 & 01949149 a 0000 + 13977184 n 0103 | (of persons or behavior) lacking refinement or finesse; "she was a diamond in the rough"; "rough manners" -01951372 00 s 01 rough-spoken 0 001 & 01949149 a 0000 | rude or uncouth in speech -01951456 00 s 02 ungentlemanly 0 ungentlemanlike 0 001 & 01949149 a 0000 | not befitting a gentleman -01951559 00 s 01 unladylike 0 001 & 01949149 a 0000 | lacking the behavior or manner or style considered proper for a lady -01951684 00 a 01 processed 0 007 ^ 01005063 a 0000 ^ 01905653 a 0000 ^ 01953635 a 0000 ! 01952405 a 0101 & 01951943 a 0000 & 01952153 a 0000 & 01952301 a 0000 | prepared or converted from a natural state by subjecting to a special process; "processed ores" -01951943 00 s 03 cured 0 vulcanized 0 vulcanised 0 001 & 01951684 a 0000 | (used of rubber) treated by a chemical or physical process to improve its properties (hardness and strength and odor and elasticity) -01952153 00 s 02 milled 0 polished 0 001 & 01951684 a 0000 | (of grains especially rice) having the husk or outer layers removed; "polished rice" -01952301 00 s 01 semi-processed 0 001 & 01951684 a 0000 | having been subjected to partial processing -01952405 00 a 01 unprocessed 0 007 ^ 01908039 a 0000 ^ 01005675 a 0000 ^ 01954781 a 0000 ! 01951684 a 0101 & 01952643 a 0000 & 01952907 a 0000 & 01953161 a 0000 | not altered from an original or natural state; "unprocessed commodities" -01952643 00 s 03 natural 0 raw(a) 0 rude(a) 0 001 & 01952405 a 0000 | (used especially of commodities) being unprocessed or manufactured using only simple or minimal processes; "natural yogurt"; "natural produce"; "raw wool"; "raw sugar"; "bales of rude cotton" -01952907 00 s 01 streaming 0 002 & 01952405 a 0000 ;c 06128570 n 0000 | (computer science) using or relating to a form of continuous tape transport; used mainly to provide backup storage of unedited data; "streaming audio"; "streaming video recording" -01953161 00 s 02 unvulcanized 0 unvulcanised 0 001 & 01952405 a 0000 | (used of rubber) not subjected to the process of vulcanization -01953297 00 a 02 refined 2 processed 2 001 ! 01953467 a 0101 | freed from impurities by processing; "refined sugar"; "refined oil"; "to gild refined gold"- Shakespeare -01953467 00 a 03 unrefined 2 unprocessed 2 crude 2 003 + 04817564 n 0301 + 14472624 n 0302 ! 01953297 a 0101 | not refined or processed; "unrefined ore"; "crude oil" -01953635 00 a 01 treated 0 008 ^ 01951684 a 0000 ! 01954781 a 0101 & 01954005 a 0000 & 01954128 a 0000 & 01954263 a 0000 & 01954418 a 0000 & 01954517 a 0000 & 01954640 a 0000 | subjected to a physical (or chemical) treatment or action or agent; "the sludge of treated sewage can be used as fertilizer"; "treated timbers resist rot"; "treated fabrics resist wrinkling" -01954005 00 s 01 activated 0 001 & 01953635 a 0000 | (of sewage) treated with aeration and bacteria to aid decomposition -01954128 00 s 01 aerated 0 001 & 01953635 a 0000 | (of a liquid) treated by having air passed or bubbled through it for purification -01954263 00 s 02 burned 0 burnt 0 001 & 01953635 a 0000 | treated by heating to a high temperature but below the melting or fusing point; "burnt sienna" -01954418 00 s 01 doped 0 001 & 01953635 a 0000 | treated or impregnated with a foreign substance -01954517 00 s 01 fumed 0 001 & 01953635 a 0000 | (of wood) darkened or colored by exposure to ammonia fumes; "fumed oak" -01954640 00 s 01 proofed 0 001 & 01953635 a 0000 | treated so as to become resistant; "rust-proofed automobiles"; "shrink-proofed fabrics" -01954781 00 a 01 untreated 0 003 ^ 01952405 a 0000 ! 01953635 a 0101 & 01954943 a 0000 | not subjected to chemical or physical treatment; "an untreated fabric" -01954943 00 s 01 raw 0 001 & 01954781 a 0000 | not processed or refined; "raw sewage" -01955031 00 a 01 oiled 0 001 ! 01955147 a 0101 | treated with oil; "oiled country roads"; "an oiled walnut table" -01955147 00 a 01 unoiled 0 001 ! 01955031 a 0101 | in need of oil treatment; "dusty unoiled roads"; "a dull unoiled table" -01955272 00 a 01 treated 2 004 ! 01955898 a 0101 & 01955494 a 0000 & 01955670 a 0000 & 01955796 a 0000 | given medical care or treatment; "a treated cold is usually gone in 14 days; if left untreated it lasts two weeks" -01955494 00 s 02 bandaged 0 bound 0 001 & 01955272 a 0000 | covered or wrapped with a bandage; "the bandaged wound on the back of his head"; "an injury bound in fresh gauze" -01955670 00 s 01 dosed 0 001 & 01955272 a 0000 | treated with some kind of application; "a mustache dosed with bear grease" -01955796 00 s 01 dressed 0 001 & 01955272 a 0000 | treated with medications and protective covering -01955898 00 a 01 untreated 2 001 ! 01955272 a 0101 | not given medical care or treatment; "an untreated disease"; "the untreated wounded lay on makeshift cots" -01956060 00 a 01 recoverable 0 003 ! 01956523 a 0101 & 01956229 a 0000 & 01956370 a 0000 | capable of being recovered or regained; "recoverable truth of a past event" -01956229 00 s 01 redeemable 0 001 & 01956060 a 0000 | recoverable upon payment or fulfilling a condition; "redeemable goods in a pawnshop" -01956370 00 s 01 retrievable 0 001 & 01956060 a 0000 | capable of being regained especially with effort; "he believed the information was retrievable" -01956523 00 a 02 unrecoverable 0 irrecoverable 0 003 ! 01956060 a 0101 & 01956675 a 0000 & 01956855 a 0000 | incapable of being recovered or regained -01956675 00 s 02 irretrievable 0 unretrievable 0 001 & 01956523 a 0000 | impossible to recover or recoup or overcome; "an irretrievable loss"; "irretrievable errors in judgment" -01956855 00 s 01 lost 0 001 & 01956523 a 0000 | incapable of being recovered or regained; "his lost honor" -01956964 00 a 01 regenerate 0 004 ^ 01451498 a 0000 ! 01957454 a 0101 & 01957177 a 0000 & 01957312 a 0000 | reformed spiritually or morally; "a regenerate sinner"; "regenerate by redemption from error or decay" -01957177 00 s 03 born-again 0 converted 0 reborn 0 001 & 01956964 a 0000 | spiritually reborn or converted; "a born-again Christian" -01957312 00 s 01 reformed 0 001 & 01956964 a 0000 | caused to abandon an evil manner of living and follow a good one; "a reformed drunkard" -01957454 00 a 02 unregenerate 0 unregenerated 0 006 ^ 01450969 a 0000 ^ 01743909 a 0000 ! 01956964 a 0101 & 01957712 a 0000 & 01957855 a 0000 & 01957942 a 0000 | not reformed morally or spiritually; "unregenerate human nature"; "unregenerate conservatism" -01957712 00 s 04 cussed 0 obdurate 0 obstinate 0 unrepentant 0 002 & 01957454 a 0000 + 04909270 n 0101 | stubbornly persistent in wrongdoing -01957855 00 s 01 impenitent 0 001 & 01957454 a 0000 | impervious to moral persuasion -01957942 00 s 02 unconverted 0 unpersuaded 0 001 & 01957454 a 0000 | not converted -01958027 00 a 01 registered 0 003 ! 01958659 a 0101 & 01958259 a 0000 & 01958512 a 0000 | listed or recorded officially; "record is made of `registered mail' at each point on its route to assure safe delivery"; "registered bonds" -01958259 00 s 02 certified 0 qualified 0 001 & 01958027 a 0000 | holding appropriate documentation and officially on record as qualified to perform a specified function or practice a specified skill; "a registered pharmacist"; "a registered hospital" -01958512 00 s 01 recorded 0 001 & 01958027 a 0000 | (of securities) having the owner's name entered in a register; "recorded holders of a stock" -01958659 00 a 01 unregistered 0 002 ! 01958027 a 0101 & 01958777 a 0000 | not registered; "an unregistered citizen" -01958777 00 s 01 unlisted 0 001 & 01958659 a 0000 | not having your name entered on a voting list; "an unlisted voter" -01958898 00 a 01 registered 2 002 ;c 00015388 n 0000 ! 01959111 a 0101 | (of animals) officially recorded with or certified by a recognized breed association; especially in a stud book; "a registered Percheron" -01959111 00 a 01 unregistered 2 002 ;c 00015388 n 0000 ! 01958898 a 0101 | (of animals) not recorded with or certified by an official breed association; "unregistered dairy cattle" -01959294 00 a 01 regular 0 014 ^ 02019021 a 0000 ^ 02371718 a 0000 ^ 02382934 a 0000 = 04767347 n 0000 + 04767347 n 0101 ! 01960656 a 0101 & 01959711 a 0000 & 01959807 a 0000 & 01959918 a 0000 & 01960076 a 0000 & 01960207 a 0000 & 01960310 a 0000 & 01960432 a 0000 & 01960557 a 0000 | in accordance with fixed order or procedure or principle; "his regular calls on his customers"; "regular meals"; "regular duties" -01959711 00 s 01 first-string 0 001 & 01959294 a 0000 | of members of a team; not substitutes -01959807 00 s 02 lawful 0 rule-governed 0 001 & 01959294 a 0000 | according to custom or rule or natural law -01959918 00 s 02 official 0 prescribed 0 002 & 01959294 a 0000 + 01033458 n 0101 | conforming to set usage, procedure, or discipline; "in prescribed order" -01960076 00 s 02 standard 0 stock 0 001 & 01959294 a 0000 | regularly and widely used or sold; "a standard size"; "a stock item" -01960207 00 s 01 timed 0 001 & 01959294 a 0000 | regularly spaced in time; "closely timed intervals" -01960310 00 s 01 uniform 0 002 & 01959294 a 0000 + 04745370 n 0101 | evenly spaced; "at regular (or uniform) intervals" -01960432 00 s 01 weak 0 002 & 01959294 a 0000 ;c 06174404 n 0000 | (used of verbs) having standard (or regular) inflection -01960557 00 s 01 well-ordered 0 001 & 01959294 a 0000 | ordered well; "well-ordered work habits" -01960656 00 a 01 irregular 0 015 ^ 02373599 a 0000 ^ 01401854 a 0000 ^ 02238462 a 0000 ^ 02021050 a 0000 ^ 02303077 a 0000 ^ 02383151 a 0000 = 04767347 n 0000 + 04770211 n 0101 + 00737188 n 0102 ! 01959294 a 0101 & 01961048 a 0000 & 01961205 a 0000 & 01961410 a 0000 & 01961666 a 0000 & 01961786 a 0000 | contrary to rule or accepted order or general practice; "irregular hiring practices" -01961048 00 s 02 asymmetrical 0 crooked 0 001 & 01960656 a 0000 | irregular in shape or outline; "asymmetrical features"; "a dress with a crooked hemline" -01961205 00 s 02 casual 0 occasional 0 002 & 01960656 a 0000 + 04912240 n 0101 | occurring from time to time; "casual employment"; "a casual correspondence with a former teacher"; "an occasional worker" -01961410 00 s 03 improper 0 unconventional 0 unlawful 0 004 & 01960656 a 0000 + 04810865 n 0301 + 04800885 n 0201 + 04901326 n 0102 | not conforming to legality, moral law, or social convention; "an unconventional marriage"; "improper banking practices" -01961666 00 s 02 randomized 0 randomised 0 001 & 01960656 a 0000 | set up or distributed in a deliberately random way -01961786 00 s 01 strong 0 002 & 01960656 a 0000 ;c 06174404 n 0000 | of verbs not having standard (or regular) inflection; "`sing' is a strong verb" -01961937 00 a 01 regular 1 001 ! 01962107 a 0101 | (of solids) having clear dimensions that can be measured; volume can be determined with a suitable geometric formula -01962107 00 a 01 irregular 1 002 + 05066012 n 0101 ! 01961937 a 0101 | (of solids) not having clear dimensions that can be measured; volume must be determined with the principle of liquid displacement -01962310 00 a 01 regulated 0 001 ! 01962492 a 0101 | controlled or governed according to rule or principle or law; "well regulated industries"; "houses with regulated temperature" -01962492 00 a 01 unregulated 0 001 ! 01962310 a 0101 | not regulated; not subject to rule or discipline; "unregulated off-shore fishing" -01962631 00 a 01 remediable 0 001 ! 01962819 a 0101 | capable of being remedied or redressed ; "remediable problems"; "a remediable setback"; "not a crime but only a remediable blunder" -01962819 00 a 01 irremediable 0 001 ! 01962631 a 0101 | impossible to remedy or correct or redress; "an irremediable error"; "irremediable defects of character" -01962982 00 a 01 renewable 0 001 ! 01963117 a 0101 | that can be renewed or extended; "a renewable lease"; "renewable subscriptions" -01963117 00 a 02 unrenewable 0 nonrenewable 0 001 ! 01962982 a 0101 | that can not be renewed; "books on that shelf are unrenewable"; "gas and oil are nonrenewable resources" -01963294 00 a 01 rentable 0 001 ! 01963378 a 0101 | that is able or fit be rented -01963378 00 a 01 unrentable 0 001 ! 01963294 a 0101 | not able or fit to be rented; "the house was unrentable in that condition" -01963509 00 a 02 reparable 0 rectifiable 0 002 ! 01963792 a 0101 & 01963688 a 0000 | capable of being repaired or rectified; "reparable damage to the car"; "rectifiable wrongs" -01963688 00 s 01 maintainable 0 002 & 01963509 a 0000 + 02681795 v 0102 | capable of being maintained -01963792 00 a 01 irreparable 0 001 ! 01963509 a 0101 | impossible to repair, rectify, or amend; "irreparable harm"; "an irreparable mistake"; "irreparable damages" -01963958 00 a 02 repeatable 0 quotable 0 003 + 04807489 n 0201 ! 01964196 a 0202 ! 01964196 a 0101 | able or fit to be repeated or quoted; "what he said was not repeatable in polite company"; "he comes up with so many quotable phrases" -01964196 00 a 02 unrepeatable 0 unquotable 0 002 ! 01963958 a 0202 ! 01963958 a 0101 | not able or fit to be repeated or quoted; "what he said was funny but unquotable" -01964367 00 a 02 repetitive 0 repetitious 0 009 + 07342049 n 0202 + 07099271 n 0201 + 01018630 n 0201 + 07090721 n 0202 + 07090721 n 0101 + 02595662 v 0101 + 00343334 v 0102 ! 01964775 a 0101 & 01964632 a 0000 | characterized by repetition; "repetitive movement" -01964632 00 s 02 iterative 0 reiterative 0 004 & 01964367 a 0000 + 00958334 v 0202 + 00958334 v 0104 + 00343600 v 0101 | marked by iteration -01964775 00 a 01 nonrepetitive 0 001 ! 01964367 a 0101 | marked by the absence of repetition; "nonrepetitive DNA sequence"; "nonrepetitive dance movements" -01964933 00 a 01 printable 0 001 ! 01965096 a 0101 | fit for publication because free of material that is morally or legally objectionable; "printable language" -01965096 00 a 01 unprintable 0 001 ! 01964933 a 0101 | unfit for print because morally or legally objectionable or offensive to good taste; "an unprintable epithet"; "unprintable pictures" -01965287 00 a 01 requested 0 001 ! 01965388 a 0101 | asked for; "the requested aid is forthcoming" -01965388 00 a 01 unrequested 0 002 ! 01965287 a 0101 & 01965512 a 0000 | not requested; "the merchandise was unrequested" -01965512 00 s 02 unasked 0 unsolicited 0 001 & 01965388 a 0000 | not asked for; "unasked advice"; "unsolicited junk mail" -01965636 00 a 03 rhymed 0 rhyming 4 riming 0 004 ! 01966315 a 0101 & 01965849 a 0000 & 01966016 a 0000 & 01966212 a 0000 | having corresponding sounds especially terminal sounds; "rhymed verse"; "rhyming words" -01965849 00 s 01 alliterative 0 002 & 01965636 a 0000 + 01702154 v 0101 | having the same consonant at the beginning of each stressed syllable; "alliterative verse" -01966016 00 s 01 assonant 0 003 & 01965636 a 0000 + 02750642 v 0101 + 07097346 n 0101 | having the same vowel sound occurring with different consonants in successive words or stressed syllables -01966212 00 s 01 end-rhymed 0 001 & 01965636 a 0000 | rhymed on the terminal syllables of the verses -01966315 00 a 04 unrhymed 0 unrimed 0 rhymeless 0 rimeless 0 001 ! 01965636 a 0101 | not having rhyme; "writing unrhymed blank verse is like playing tennis without a net" -01966488 00 a 02 uniform 0 unvarying 4 005 + 04745370 n 0102 + 04769049 n 0101 + 04745370 n 0101 ! 01966853 a 0101 & 01966740 a 0000 | always the same; showing a single form or character in all occurrences; "a street of uniform tall white buildings" -01966740 00 s 01 single(a) 0 001 & 01966488 a 0000 | having uniform application; "a single legal code for all" -01966853 00 a 01 multiform 0 002 ! 01966488 a 0101 & 01967041 a 0000 | occurring in or having many forms or shapes or appearances; "the multiform universe of nature and man"- John Dewey -01967041 00 s 02 polymorphic 0 polymorphous 0 002 & 01966853 a 0000 + 01328121 n 0101 | having or occurring in several distinct forms; "man is both polymorphic and polytypic"; "a polymorphous god" -01967240 00 a 02 periodic 0 periodical 0 023 + 06593296 n 0201 + 15289779 n 0201 + 04767805 n 0102 ! 01970464 a 0101 & 01967803 a 0000 & 01967917 a 0000 & 01968033 a 0000 & 01968165 a 0000 & 01968352 a 0000 & 01968503 a 0000 & 01968721 a 0000 & 01968811 a 0000 & 01968956 a 0000 & 01969038 a 0000 & 01969150 a 0000 & 01969348 a 0000 & 01969477 a 0000 & 01969606 a 0000 & 01969707 a 0000 & 01969881 a 0000 & 01970014 a 0000 & 01970136 a 0000 & 01970322 a 0000 | happening or recurring at regular intervals; "the periodic appearance of the seventeen-year locust" -01967803 00 s 01 cyclic 0 003 & 01967240 a 0000 + 07342495 n 0101 + 04767805 n 0101 | marked by repeated cycles -01967917 00 s 02 oscillatory 0 oscillating 0 002 & 01967240 a 0000 + 01878063 v 0101 | having periodic vibrations -01968033 00 s 01 diurnal 0 001 & 01967240 a 0000 | having a daily cycle or occurring every day; "diurnal rotation of the heavens" -01968165 00 s 04 daily 0 day-to-day 0 day-by-day 0 day-after-day 0 002 & 01967240 a 0000 + 15155220 n 0101 | of or belonging to or occurring every day; "daily routine"; "a daily paper" -01968352 00 s 01 nightly 0 002 & 01967240 a 0000 + 15167027 n 0101 | happening every night; "nightly television now goes on until 3:00 or 4:00 a.m." -01968503 00 s 03 weekly 0 hebdomadal 0 hebdomadary 0 005 & 01967240 a 0000 + 15169873 n 0302 + 15169873 n 0202 + 15169873 n 0101 + 15136147 n 0101 | of or occurring every seven days; "a weekly visit"; "weekly paper" -01968721 00 s 02 semiweekly 0 biweekly 1 001 & 01967240 a 0000 | occurring twice a week -01968811 00 s 01 hourly 0 002 & 01967240 a 0000 + 15227846 n 0101 | occurring every hour or payable by the hour; "hourly chimes"; "hourly pay" -01968956 00 s 01 half-hourly 0 001 & 01967240 a 0000 | occurring ever half hour -01969038 00 s 02 fortnightly 0 biweekly 0 002 & 01967240 a 0000 + 15170331 n 0101 | occurring every two weeks -01969150 00 s 02 annual 0 yearly 0 002 & 01967240 a 0000 + 15203791 n 0201 | occurring or payable every year; "an annual trip to Paris"; "yearly medical examinations"; "annual (or yearly) income" -01969348 00 s 04 semiannual 0 biannual 0 biyearly 1 half-yearly 0 001 & 01967240 a 0000 | occurring or payable twice each year -01969477 00 s 02 biennial 0 biyearly 2 001 & 01967240 a 0000 | occurring every second year; "they met at biennial conventions" -01969606 00 s 01 triennial 0 001 & 01967240 a 0000 | occurring every third year or lasting 3 years -01969707 00 s 01 monthly 0 003 & 01967240 a 0000 + 15209413 n 0102 + 15206296 n 0101 | of or occurring or payable every month; "monthly payments"; "the monthly newsletter" -01969881 00 s 02 bimonthly 0 bimestrial 0 002 & 01967240 a 0000 + 15204609 n 0201 | occurring every two months; "bimonthly visits" -01970014 00 s 02 semimonthly 0 bimonthly 1 001 & 01967240 a 0000 | occurring twice a month; "a semimonthly publication" -01970136 00 s 02 semestral 0 semestrial 0 004 & 01967240 a 0000 + 15204485 n 0201 + 15204485 n 0101 + 15225797 n 0101 | occurring every six months or during every period of six months -01970322 00 s 01 midweekly 0 002 & 01967240 a 0000 + 15136342 n 0101 | occurring during the middle of the week; "midweekly prayer meetings" -01970464 00 a 02 aperiodic 0 nonperiodic 0 003 ! 01967240 a 0101 & 01970604 a 0000 & 01970686 a 0000 | not recurring at regular intervals -01970604 00 s 01 noncyclic 0 001 & 01970464 a 0000 | not having repeated cycles -01970686 00 s 01 nonoscillatory 0 001 & 01970464 a 0000 | not having periodic vibrations -01970777 00 a 01 regular 2 003 ;c 08199025 n 0000 ! 01971046 a 0101 & 01970963 a 0000 | (used of the military) belonging to or engaged in by legitimate army forces; "the regular army" -01970963 00 s 01 standing 0 001 & 01970777 a 0000 | permanent; "a standing army" -01971046 00 a 01 irregular 2 002 ^ 00730731 a 0000 ! 01970777 a 0101 | (used of the military) not belonging to or engaged in by regular army forces; "irregular troops"; "irregular warfare" -01971237 00 a 01 related 1 011 ^ 01417228 a 0000 ^ 01416508 a 0000 + 13795489 n 0101 ! 01972596 a 0101 & 01971519 a 0000 & 01971671 a 0000 & 01971846 a 0000 & 01972070 a 0000 & 01972204 a 0000 & 01972349 a 0000 & 01972479 a 0000 | connected by kinship, common origin, or marriage -01971519 00 s 02 affinal 0 affine 0 004 & 01971237 a 0000 ;c 06143546 n 0000 + 13813283 n 0201 + 09776522 n 0101 | (anthropology) related by marriage -01971671 00 s 03 agnate 0 agnatic 0 paternal 0 004 & 01971237 a 0000 + 13813898 n 0302 + 10236663 n 0201 + 10236663 n 0101 | related on the father's side; "a paternal aunt" -01971846 00 s 07 akin(p) 0 blood-related 0 cognate 1 consanguine 0 consanguineous 0 consanguineal 0 kin(p) 0 005 & 01971237 a 0000 + 10236304 n 0701 + 07969695 n 0701 + 13813591 n 0401 + 10236114 n 0303 | related by blood -01972070 00 s 01 allied 0 001 & 01971237 a 0000 | related by common characteristics or ancestry; "allied species"; "allied studies" -01972204 00 s 02 descendant 0 descendent 0 002 & 01971237 a 0000 + 10006511 n 0101 | proceeding by descent from an ancestor; "descendent gene" -01972349 00 s 03 enate 0 enatic 0 maternal(p) 0 001 & 01971237 a 0000 | related on the mother's side; "my maternal grandmother" -01972479 00 s 01 kindred 0 002 & 01971237 a 0000 + 07969695 n 0104 | related by blood or marriage; "kindred clans" -01972596 00 a 01 unrelated 1 003 + 13796403 n 0101 ! 01971237 a 0101 & 01972712 a 0000 | not connected by kinship -01972712 00 s 01 unconnected 0 002 & 01972596 a 0000 + 13794226 n 0101 | not connected by birth or family -01972820 00 a 02 related 2 related_to 0 011 + 13795489 n 0101 ! 01974740 a 0101 & 01973311 a 0000 & 01973529 a 0000 & 01973655 a 0000 & 01973823 a 0000 & 01973969 a 0000 & 01974071 a 0000 & 01974298 a 0000 & 01974451 a 0000 & 01974584 a 0000 | being connected either logically or causally or by shared characteristics ; "painting and the related arts"; "school-related activities"; "related to micelle formation is the...ability of detergent actives to congregate at oil-water interfaces" -01973311 00 s 03 affiliated 0 attached 0 connected 0 002 & 01972820 a 0000 + 14419164 n 0303 | being joined in close association; "affiliated clubs"; "all art schools whether independent or attached to universities" -01973529 00 s 01 age-related 0 001 & 01972820 a 0000 | changing (increasing or decreasing) as an individual's age increases -01973655 00 s 01 bound_up 0 001 & 01972820 a 0000 | closely or inseparably connected or associated with; "his career is bound up with the fortunes of the enterprise" -01973823 00 s 01 cognate 1 003 & 01972820 a 0000 ;c 06172789 n 0000 + 06289074 n 0101 | having the same ancestral language; "cognate languages" -01973969 00 s 02 connate 0 cognate 2 001 & 01972820 a 0000 | related in nature; "connate qualities" -01974071 00 s 01 coreferent 0 002 & 01972820 a 0000 + 13799063 n 0101 | related by sharing a symbolic link to a concrete object or an abstraction; "two expressions are coreferent if they denote the same object or individual" -01974298 00 s 03 correlative 0 correlate 0 correlated 0 004 & 01972820 a 0000 + 02658979 v 0101 + 00713996 v 0101 + 13841651 n 0102 | mutually related -01974451 00 s 01 corresponding 0 001 & 01972820 a 0000 | accompanying; "all rights carry with them corresponding responsibilities" -01974584 00 s 01 side_by_side 0 001 & 01972820 a 0000 | closely related or associated; "a city in which communism and democracy had to live side by side" -01974740 00 a 01 unrelated 2 005 + 13796403 n 0101 ! 01972820 a 0101 & 01974904 a 0000 & 01974979 a 0000 & 01975059 a 0000 | lacking a logical or causal relation -01974904 00 s 01 misrelated 0 001 & 01974740 a 0000 | mistakenly related -01974979 00 s 01 orthogonal 0 001 & 01974740 a 0000 | statistically unrelated -01975059 00 s 01 uncorrelated 0 001 & 01974740 a 0000 | not varying together -01975138 00 a 01 relevant 0 006 + 13794417 n 0101 + 13794417 n 0102 ! 01976084 a 0101 & 01975448 a 0000 & 01975671 a 0000 & 01975833 a 0000 | having a bearing on or connection with the subject at issue; "the scientist corresponds with colleagues in order to learn about matters relevant to her own research" -01975448 00 s 01 applicable 0 005 & 01975138 a 0000 + 02707429 v 0102 + 02676789 v 0101 + 02561332 v 0102 + 13795180 n 0101 | capable of being applied; having relevance; "gave applicable examples to support her argument" -01975671 00 s 01 germane(p) 0 002 & 01975138 a 0000 + 13795042 n 0101 | relevant and appropriate; "he asks questions that are germane and central to the issue" -01975833 00 s 01 pertinent 0 004 & 01975138 a 0000 + 13795180 n 0103 + 13795180 n 0102 + 02653706 v 0101 | having precise or logical relevance to the matter at hand; "a list of articles pertinent to the discussion"; "remarks that were to the point" -01976084 00 a 01 irrelevant 0 007 + 13795834 n 0102 + 13795834 n 0101 ! 01975138 a 0101 & 01976360 a 0000 & 01976532 a 0000 & 01976851 a 0000 & 01977025 a 0000 | having no bearing on or connection with the subject at issue; "an irrelevant comment"; "irrelevant allegations" -01976360 00 s 02 digressive 0 tangential 0 001 & 01976084 a 0000 | of superficial relevance if any; "a digressive allusion to the day of the week"; "a tangential remark" -01976532 00 s 04 extraneous 0 immaterial 0 impertinent 0 orthogonal 0 003 & 01976084 a 0000 + 13796216 n 0201 + 13796585 n 0101 | not pertinent to the matter under consideration; "an issue extraneous to the debate"; "the price was immaterial"; "mentioned several impertinent facts before finally coming to the point" -01976851 00 s 02 inapplicable 0 unsuitable 2 003 & 01976084 a 0000 + 04721058 n 0201 + 13796053 n 0101 | not capable of being applied; "rules inapplicable to day students" -01977025 00 s 01 moot 0 002 & 01976084 a 0000 ;c 08441203 n 0000 | of no legal significance (as having been previously decided) -01977155 00 a 02 mindful 0 aware 4 007 = 04663763 n 0000 + 05675905 n 0201 + 05677952 n 0201 + 04663763 n 0101 ! 01978003 a 0101 & 01977488 a 0000 & 01977669 a 0000 | bearing in mind; attentive to; "ever mindful of her health"; "mindful of his responsibilities"; "mindful of these criticisms, I shall attempt to justify my action" -01977488 00 s 02 careful 0 heedful 0 003 & 01977155 a 0000 + 04663763 n 0202 + 04664058 n 0103 | cautiously attentive; "careful of her feelings"; "heedful of his father's advice" -01977669 00 s 05 evocative 0 redolent 0 remindful 0 reminiscent 0 resonant 0 006 & 01977155 a 0000 + 05762848 n 0401 + 05761559 n 0403 + 00611055 v 0401 + 01759326 v 0105 + 00930368 v 0102 | serving to bring to mind; "cannot forbear to close on this redolent literary note"- Wilder Hobson; "a campaign redolent of machine politics" -01978003 00 a 03 unmindful 0 forgetful 2 mindless 0 005 = 04663763 n 0000 + 05673908 n 0201 + 04665543 n 0101 ! 01977155 a 0101 & 01978237 a 0000 | not mindful or attentive; "while thus unmindful of his steps he stumbled"- G.B.Shaw -01978237 00 s 02 amnesic 0 amnesiac 0 004 & 01978003 a 0000 + 09788611 n 0202 + 09788611 n 0101 + 05672391 n 0101 | suffering from a partial loss of memory -01978395 00 a 01 replaceable 0 004 ^ 00932695 a 0000 + 04737234 n 0101 ! 01978894 a 0101 & 01978532 a 0000 | capable of being replaced -01978532 00 s 05 exchangeable 0 interchangeable 0 similar 0 standardized 0 standardised 0 004 & 01978395 a 0000 + 04743605 n 0301 + 04735929 n 0203 + 04735929 n 0202 | capable of replacing or changing places with something else; permitting mutual substitution without loss of function or suitability; "interchangeable electric outlets" "interchangeable parts" -01978894 00 a 02 irreplaceable 0 unreplaceable 0 003 ^ 00933032 a 0000 + 04741195 n 0101 ! 01978395 a 0101 | impossible to replace; "irreplaceable antiques" -01979053 00 a 01 representational 0 006 ! 01980250 a 0101 & 01979326 a 0000 & 01979501 a 0000 & 01979604 a 0000 & 01979803 a 0000 & 01979985 a 0000 | (used especially of art) depicting objects, figures,or scenes as seen; "representational art"; "representational images" -01979326 00 s 02 delineative 0 depictive 0 005 & 01979053 a 0000 + 01688256 v 0202 + 01686956 v 0202 + 02736778 v 0102 + 01689379 v 0101 | depicted in a recognizable manner -01979501 00 s 01 eidetic 0 001 & 01979053 a 0000 | of visual imagery of almost photographic accuracy -01979604 00 s 02 figural 0 figurative 0 001 & 01979053 a 0000 | consisting of or forming human or animal figures; "a figural design"; "the figurative art of the humanistic tradition"- Herbert Read -01979803 00 s 01 mimetic 0 002 & 01979053 a 0000 + 05962785 n 0101 | characterized by or of the nature of or using mimesis; "a mimetic dance"; "the mimetic presentation of images" -01979985 00 s 02 naturalistic 0 realistic 0 003 & 01979053 a 0000 + 10509389 n 0201 + 08469457 n 0101 | representing what is real; not abstract or ideal; "realistic portraiture"; "a realistic novel"; "in naturalistic colors"; "the school of naturalistic writers" -01980250 00 a 01 nonrepresentational 0 009 ^ 00011757 a 0000 ;c 00933420 n 0000 ! 01979053 a 0101 & 01980557 a 0000 & 01980796 a 0000 & 01981009 a 0000 & 01981243 a 0000 & 01981448 a 0000 & 01981583 a 0000 | of or relating to a style of art in which objects do not resemble those known in physical nature -01980557 00 s 04 abstract 0 abstractionist 0 nonfigurative 0 nonobjective 0 003 & 01980250 a 0000 + 09758424 n 0201 + 04762134 n 0101 | not representing or imitating external reality or the objects of nature; "a large abstract painting" -01980796 00 s 03 conventional 0 formal 0 schematic 0 006 & 01980250 a 0000 ;c 06156968 n 0000 + 04145578 n 0301 + 05891572 n 0303 + 05927813 n 0301 + 05891572 n 0302 | represented in simplified or symbolic form -01981009 00 s 02 geometric 0 geometrical 0 003 & 01980250 a 0000 ;c 06156968 n 0000 + 06004685 n 0201 | characterized by simple geometric forms in design and decoration; "a buffalo hide painted with red and black geometric designs" -01981243 00 s 01 hieratic 0 002 & 01980250 a 0000 ;c 06156968 n 0000 | adhering to fixed types or methods; highly restrained and formal; "the more hieratic sculptures leave the viewer curiously unmoved" -01981448 00 s 01 protogeometric 0 001 & 01980250 a 0000 | characteristic of the earliest phase of geometric art especially in Greece -01981583 00 s 01 semiabstract 0 001 & 01980250 a 0000 | characterized by stylized but recognizable subject matter -01981699 00 a 01 representative 0 005 + 00836236 v 0105 + 00988028 v 0101 ! 01982538 a 0101 & 01981916 a 0000 & 01982186 a 0000 | standing for something else; "the bald eagle is representative of the United States" -01981916 00 s 02 allegorical 0 allegoric 0 005 & 01981699 a 0000 + 06366581 n 0201 + 06880664 n 0102 + 06366581 n 0101 + 06372095 n 0103 | used in or characteristic of or containing allegory; "allegorical stories"; "an allegorical painting of Victory leading an army" -01982186 00 s 04 emblematic 0 emblematical 0 symbolic 0 symbolical 0 006 & 01981699 a 0000 + 05765415 n 0401 + 05765415 n 0301 + 06880664 n 0201 + 06880664 n 0101 + 03282591 n 0101 | serving as a visible symbol for something abstract; "a crown is emblematic of royalty"; "the spinning wheel was as symbolic of colonical Massachusetts as the codfish" -01982538 00 a 02 nonrepresentative 0 unsymbolic 0 001 ! 01981699 a 0101 | not standing for something else -01982646 00 a 01 reputable 0 010 ^ 01226240 a 0000 ^ 01993140 a 0000 = 14438125 n 0000 + 04871002 n 0102 ! 01983797 a 0101 & 01982957 a 0000 & 01983162 a 0000 & 01983432 a 0000 & 01983548 a 0000 & 01983672 a 0000 | having a good reputation; "a reputable business"; "a reputable scientist"; "a reputable wine" -01982957 00 s 03 esteemed 0 honored 0 prestigious 0 003 & 01982646 a 0000 + 14435809 n 0301 + 14435809 n 0302 | having an illustrious reputation; respected; "our esteemed leader"; "a prestigious author" -01983162 00 s 04 estimable 0 good 0 honorable 0 respectable 0 005 & 01982646 a 0000 + 04871002 n 0401 + 04868748 n 0301 + 02457233 v 0302 + 04849241 n 0202 | deserving of esteem and respect; "all respectable companies give guarantees"; "ruined the family's good name" -01983432 00 s 01 redoubtable 0 001 & 01982646 a 0000 | worthy of respect or honor; "born of a redoubtable family" -01983548 00 s 02 respected 0 well-thought-of 0 001 & 01982646 a 0000 | receiving deferential regard; "a respected family" -01983672 00 s 02 time-honored 0 time-honoured 0 001 & 01982646 a 0000 | acceptable for a long time; "time-honored customs" -01983797 00 a 01 disreputable 0 011 ^ 01227137 a 0000 ^ 01993843 a 0000 = 14438125 n 0000 + 04874409 n 0103 + 04874409 n 0102 ! 01982646 a 0101 & 01984097 a 0000 & 01984252 a 0000 & 01984411 a 0000 & 01984669 a 0000 & 01984806 a 0000 | lacking respectability in character or behavior or appearance -01984097 00 s 01 discreditable 0 001 & 01983797 a 0000 | tending to bring discredit or disrepute; blameworthy; "his marks were not at all discreditable" -01984252 00 s 02 discredited 0 damaged 0 001 & 01983797 a 0000 | being unjustly brought into disrepute; "a discredited politician"; "her damaged reputation" -01984411 00 s 03 ill-famed 0 infamous 0 notorious 0 003 & 01983797 a 0000 + 14439012 n 0201 + 14441230 n 0201 | known widely and usually unfavorably; "a notorious gangster"; "the tenderloin district was notorious for vice"; "the infamous Benedict Arnold"; -01984669 00 s 02 louche 0 shady 0 001 & 01983797 a 0000 | of questionable taste or morality; "a louche nightclub"; "a louche painting" -01984806 00 s 05 seamy 0 seedy 0 sleazy 0 sordid 0 squalid 0 004 & 01983797 a 0000 + 14499111 n 0503 + 04807971 n 0402 + 04874223 n 0301 | morally degraded; "a seedy district"; "the seamy side of life"; "sleazy characters hanging around casinos"; "sleazy storefronts with...dirt on the walls"- Seattle Weekly; "the sordid details of his orgies stank under his very nostrils"- James Joyce; "the squalid atmosphere of intrigue and betrayal" -01985247 00 a 02 receptive 0 open 0 011 + 04645020 n 0203 + 04645020 n 0101 + 04645020 n 0102 + 02739480 v 0103 + 00617095 v 0101 + 00686879 v 0101 ! 01986260 a 0101 & 01985557 a 0000 & 01985812 a 0000 & 01985976 a 0000 & 01986134 a 0000 | ready or willing to receive favorably; "receptive to the proposals" -01985557 00 s 02 acceptive 0 acceptant 0 007 & 01985247 a 0000 + 00719231 v 0201 + 00686447 v 0201 + 04638175 n 0202 + 00082525 n 0201 + 00180413 n 0202 + 00719231 v 0101 | accepting willingly; "acceptive of every new idea"; "an acceptant type of mind" -01985812 00 s 01 admissive 0 002 & 01985247 a 0000 + 02745486 v 0101 | characterized by or allowing admission; "an Elizabethan tragedy admissive of comic scenes" -01985976 00 s 01 assimilative 0 001 & 01985247 a 0000 | capable of mentally absorbing ; "assimilative processes", "assimilative capacity of the human mind" -01986134 00 s 01 hospitable 0 001 & 01985247 a 0000 | having an open mind; "hospitable to new ideas"; "open to suggestions" -01986260 00 a 01 unreceptive 0 002 ! 01985247 a 0101 & 01986349 a 0000 | not receptive -01986349 00 s 02 closed 0 unsympathetic 0 001 & 01986260 a 0000 | not having an open mind; "a closed mind unreceptive to new ideas" -01986483 00 a 01 reconcilable 0 003 ! 01986926 a 0101 & 01986654 a 0000 & 01986759 a 0000 | capable of being reconciled; "her way of thinking is reconcilable with mine" -01986654 00 s 01 harmonizable 0 001 & 01986483 a 0000 | capable of being made harmonious or consistent -01986759 00 s 01 resolvable 0 001 & 01986483 a 0000 | capable of being settled or resolved; "all disputed points are potentially resolvable"; "a resolvable quarrel" -01986926 00 a 02 irreconcilable 0 unreconcilable 0 003 ! 01986483 a 0101 & 01987093 a 0000 & 01987207 a 0000 | impossible to reconcile; "irreconcilable differences" -01987093 00 s 01 hostile 0 001 & 01986926 a 0000 | impossible to bring into friendly accord; "hostile factions" -01987207 00 s 01 inconsistent 0 001 & 01986926 a 0000 | not capable of being made consistent or harmonious; "inconsistent accounts" -01987341 00 a 01 reserved 1 008 ^ 00204077 a 0000 ^ 01316222 a 0000 ^ 02000118 a 0000 ^ 00720913 a 0000 ! 01988166 a 0101 & 01987646 a 0000 & 01987856 a 0000 & 01988024 a 0000 | marked by self-restraint and reticence; "was habitually reserved in speech, withholding her opinion"-Victoria Sackville-West -01987646 00 s 03 aloof 0 distant 0 upstage 0 003 & 01987341 a 0000 + 07505871 n 0201 + 04656996 n 0101 | remote in manner; "stood apart with aloof dignity"; "a distant smile"; "he was upstage with strangers" -01987856 00 s 01 diffident 0 002 & 01987341 a 0000 + 07523286 n 0101 | showing modest reserve; "she was diffident when offering a comment on the professor's lecture" -01988024 00 s 02 indrawn 0 withdrawn 0 002 & 01987341 a 0000 + 04656996 n 0204 | tending to reserve or introspection; "a quiet indrawn man" -01988166 00 a 01 unreserved 1 004 ^ 00720296 a 0000 ^ 01317012 a 0000 ^ 02000680 a 0000 ! 01987341 a 0101 | not cautious or reticent; "unreserved behavior" -01988324 00 a 01 reserved 2 003 ! 01988724 a 0101 & 01988468 a 0000 & 01988565 a 0000 | set aside for the use of a particular person or party -01988468 00 s 03 booked 0 engaged 0 set-aside(p) 0 001 & 01988324 a 0000 | reserved in advance -01988565 00 s 01 bookable 0 003 & 01988324 a 0000 + 02599754 v 0101 + 02498320 v 0103 | subject to being reserved or booked; "all seats bookable in advance" -01988724 00 a 01 unreserved 2 003 ! 01988324 a 0101 & 01988829 a 0000 & 01988934 a 0000 | not reserved -01988829 00 s 02 first-come-first-serve(p) 0 rush 0 001 & 01988724 a 0000 | not accepting reservations -01988934 00 s 01 unbooked 0 001 & 01988724 a 0000 | not reserved in advance -01989012 00 a 01 resistible 0 001 ! 01989175 a 0101 | capable of being resisted or withstood or frustrated; "a resistible attack"; "such resistible temptations" -01989175 00 a 02 irresistible 0 resistless 4 004 + 05192240 n 0102 + 05192240 n 0101 ! 01989012 a 0101 & 01989446 a 0000 | impossible to resist; overpowering; "irresistible (or resistless) impulses"; "what happens when an irresistible force meets an immovable object?" -01989446 00 s 02 overpowering 0 overwhelming 0 001 & 01989175 a 0000 | so strong as to be irresistible; "an overpowering need for solitude"; "the temptation to despair may become overwhelming"; "an overwhelming majority" -01989669 00 a 01 resolute 0 016 ^ 00262792 a 0000 ^ 00684480 a 0000 ^ 01909890 a 0000 + 04861486 n 0101 ! 01992149 a 0101 & 01990172 a 0000 & 01990373 a 0000 & 01990507 a 0000 & 01990653 a 0000 & 01991029 a 0000 & 01991166 a 0000 & 01991267 a 0000 & 01991462 a 0000 & 01991586 a 0000 & 01991783 a 0000 & 01991961 a 0000 | firm in purpose or belief; characterized by firmness and determination; "stood resolute against the enemy"; "faced with a resolute opposition"; "a resolute and unshakeable faith" -01990172 00 s 04 bent 0 bent_on(p) 0 dead_set(p) 0 out_to(p) 0 001 & 01989669 a 0000 | fixed in your purpose; "bent on going to the theater"; "dead set against intervening"; "out to win every event" -01990373 00 s 01 determined 0 001 & 01989669 a 0000 | characterized by great determination; "a struggle against a determined enemy" -01990507 00 s 02 desperate 0 do-or-die(a) 0 001 & 01989669 a 0000 | desperately determined; "do-or-die revolutionaries"; "a do-or-die conflict" -01990653 00 s 08 firm 0 steadfast 0 steady 0 stiff 0 unbendable 0 unfaltering 0 unshakable 0 unwavering 0 005 & 01989669 a 0000 + 04862888 n 0401 + 04862382 n 0301 + 04865016 n 0201 + 04861486 n 0102 | marked by firm determination or resolution; not shakable; "firm convictions"; "a firm mouth"; "steadfast resolve"; "a man of unbendable perseverence"; "unwavering loyalty" -01991029 00 s 01 foursquare 0 001 & 01989669 a 0000 | characterized by firm and unwavering conviction; "a foursquare refusal to yield" -01991166 00 s 01 hell-bent 0 001 & 01989669 a 0000 | recklessly determined; "hell-bent on winning" -01991267 00 s 02 single-minded 0 resolved 0 002 & 01989669 a 0000 + 04863675 n 0101 | determined; "she was firmly resolved to be a doctor"; "single-minded in his determination to stop smoking" -01991462 00 s 01 spartan 0 001 & 01989669 a 0000 | resolute in the face of pain or danger or adversity; "spartan courage" -01991586 00 s 02 stalwart 0 stout 0 003 & 01989669 a 0000 + 05031560 n 0201 + 05031560 n 0102 | dependable; "the stalwart citizens at Lexington"; "a stalwart supporter of the UN"; "stout hearts" -01991783 00 s 03 undaunted 0 undismayed 0 unshaken 0 001 & 01989669 a 0000 | unshaken in purpose; "wholly undismayed by the commercial failure of the three movies he had made" -01991961 00 s 02 undeterred 0 undiscouraged 0 001 & 01989669 a 0000 | not deterred; "pursued his own path...undeterred by lack of popular appreciation and understanding"- Osbert Sitwell -01992149 00 a 01 irresolute 0 008 ^ 00685483 a 0000 + 04866465 n 0101 ! 01989669 a 0101 & 01992418 a 0000 & 01992555 a 0000 & 01992712 a 0000 & 01992867 a 0000 & 01992996 a 0000 | uncertain how to act or proceed; "the committee was timid and mediocre and irresolute" -01992418 00 s 01 discouraged 0 001 & 01992149 a 0000 | lacking in resolution; "the accident left others discouraged about going there" -01992555 00 s 01 infirm 1 001 & 01992149 a 0000 | lacking firmness of will or character or purpose; "infirm of purpose; give me the daggers" - Shakespeare -01992712 00 s 01 unstable 0 002 & 01992149 a 0000 + 04775747 n 0102 | disposed to psychological variability; "his rather unstable religious convictions" -01992867 00 s 03 vacillant 0 vacillating 0 wavering 0 002 & 01992149 a 0000 + 02706046 v 0103 | uncertain in purpose or action -01992996 00 s 01 weak-kneed 0 001 & 01992149 a 0000 | lacking will power or resolution; "the role of the dissenter is not for the weak-kneed" -01993140 00 a 01 respectable 0 008 ^ 01123148 a 0000 ^ 01982646 a 0000 ^ 02584981 a 0000 + 04871002 n 0101 ! 01993843 a 0101 & 01993408 a 0000 & 01993598 a 0000 & 01993693 a 0000 | characterized by socially or conventionally acceptable morals; "a respectable woman" -01993408 00 s 02 decent 0 nice 0 003 & 01993140 a 0000 + 04912982 n 0202 + 04900739 n 0101 | socially or conventionally correct; refined or virtuous; "from a decent family"; "a nice girl" -01993598 00 s 01 presentable 0 001 & 01993140 a 0000 | fit to be seen; "presentable clothes" -01993693 00 s 02 upstanding 0 solid 0 002 & 01993140 a 0000 + 04671075 n 0202 | meriting respect or esteem; "an upstanding member of the community" -01993843 00 a 01 unrespectable 0 002 + 04874409 n 0101 ! 01993140 a 0101 | unworthy of respect -01993940 00 a 01 respectful 0 007 ^ 00639842 a 0000 ^ 01892953 a 0000 ^ 02011810 a 0000 + 04913839 n 0103 ! 01994602 a 0101 & 01994180 a 0000 & 01994404 a 0000 | full of or exhibiting respect; "respectful behavior"; "a respectful glance" -01994180 00 s 03 deferent 0 deferential 0 regardful 0 008 & 01993940 a 0000 + 04913839 n 0201 + 04641153 n 0205 + 01228877 n 0201 + 04913839 n 0101 + 04641153 n 0105 + 01228877 n 0101 + 00878348 v 0103 | showing deference -01994404 00 s 01 honorific 0 002 & 01993940 a 0000 + 07070883 n 0101 | conferring or showing honor or respect; "honorific social status commonly attaches to membership in a recognized profession" -01994602 00 a 01 disrespectful 0 013 ^ 01539642 a 0000 ^ 00640283 a 0000 ^ 02012504 a 0000 ^ 01628302 a 0000 ^ 02079029 a 0000 ! 01993940 a 0101 & 01995047 a 0000 & 01995288 a 0000 & 01995500 a 0000 & 01995596 a 0000 & 01995863 a 0000 & 01996051 a 0000 & 01996288 a 0000 | exhibiting lack of respect; rude and discourteous; "remarks disrespectful of the law"; "disrespectful in the presence of his parents"; "disrespectful toward his teacher" -01995047 00 s 03 annihilating 0 devastating 0 withering 0 001 & 01994602 a 0000 | making light of; "afire with annihilating invective"; "a devastating portrait of human folly"; "to compliments inflated I've a withering reply"- W.S.Gilbert -01995288 00 s 04 contemptuous 0 disdainful 0 insulting 0 scornful 0 006 & 01994602 a 0000 + 04888268 n 0203 + 07502980 n 0101 + 06715927 n 0101 + 04915687 n 0101 + 04888510 n 0101 | expressing extreme contempt -01995500 00 s 01 contumelious 0 002 & 01994602 a 0000 + 06715223 n 0104 | arrogantly insolent -01995596 00 s 05 derisive 0 gibelike 0 jeering 0 mocking 0 taunting 0 002 & 01994602 a 0000 + 00852922 v 0101 | abusing vocally; expressing contempt or ridicule; "derisive laughter"; "a jeering crowd"; "her mocking smile"; "taunting shouts of `coward' and `sissy'" -01995863 00 s 02 impious 0 undutiful 0 003 & 01994602 a 0000 + 04828485 n 0201 + 04828255 n 0102 | lacking due respect or dutifulness; "impious toward one's parents"; "an undutiful son" -01996051 00 s 04 impudent 0 insolent 0 snotty-nosed 0 flip 0 003 & 01994602 a 0000 + 04915866 n 0205 + 01224914 n 0201 | marked by casual disrespect; "a flip answer to serious question"; "the student was kept in for impudent behavior" -01996288 00 s 01 undeferential 0 001 & 01994602 a 0000 | not showing courteous respect -01996377 00 a 01 responsible 0 012 ^ 01616474 a 0000 ^ 01898129 a 0000 ^ 02464693 a 0000 = 04669247 n 0000 + 04669247 n 0102 + 04669247 n 0101 ! 01997910 a 0101 & 01996875 a 0000 & 01997221 a 0000 & 01997415 a 0000 & 01997583 a 0000 & 01997748 a 0000 | worthy of or requiring responsibility or trust; or held accountable; "a responsible adult"; "responsible journalism"; "a responsible position"; "the captain is responsible for the ship's safety"; "the cabinet is responsible to the parliament" -01996875 00 s 01 accountable 0 003 & 01996377 a 0000 + 00867644 v 0101 + 04669828 n 0101 | liable to account for one's actions; "governments must be accountable to someone beside themselves"; "fully accountable for what they did"; "the court held the parents answerable for their minor child's acts of vandalism"; "he was answerable to no one" -01997221 00 s 01 answerable 0 003 & 01996377 a 0000 + 04669828 n 0102 + 04669828 n 0103 | morally or legally responsible to a higher authority; "parents are answerable for their child's acts" -01997415 00 s 01 amenable 0 002 & 01996377 a 0000 + 04906026 n 0102 | liable to answer to a higher authority; "the president is amenable to the constitutional court" -01997583 00 s 01 liable 0 002 & 01996377 a 0000 + 14530403 n 0101 | held legally responsible; "men between the ages of 18 and 35 were liable for military service" -01997748 00 s 01 trustworthy 0 002 & 01996377 a 0000 + 04668819 n 0101 | taking responsibility for one's conduct and obligations; "trustworthy public servants" -01997910 00 a 01 irresponsible 0 011 = 04669247 n 0000 + 04670746 n 0102 + 04670746 n 0101 ! 01996377 a 0101 & 01998260 a 0000 & 01998535 a 0000 & 01998730 a 0000 & 01998835 a 0000 & 01998989 a 0000 & 01999085 a 0000 & 01999180 a 0000 | showing lack of care for consequences; "behaved like an irresponsible idiot"; "hasty and irresponsible action" -01998260 00 s 06 carefree 0 devil-may-care 0 freewheeling 0 happy-go-lucky 0 harum-scarum 0 slaphappy 0 003 & 01997910 a 0000 + 09991530 n 0506 + 07530866 n 0101 | cheerfully irresponsible; "carefree with his money"; "freewheeling urban youths"; "had a harum-scarum youth" -01998535 00 s 01 do-nothing(a) 0 002 & 01997910 a 0000 + 10197967 n 0103 | characterized by inability or unwillingness to work toward a goal or assume responsibility; "a do-nothing government" -01998730 00 s 01 feckless 0 002 & 01997910 a 0000 + 05139942 n 0101 | not fit to assume responsibility -01998835 00 s 02 idle 0 loose 0 002 & 01997910 a 0000 + 04885609 n 0201 | lacking a sense of restraint or responsibility; "idle talk"; "a loose tongue" -01998989 00 s 01 trigger-happy 0 001 & 01997910 a 0000 | irresponsible in the use of firearms -01999085 00 s 01 unaccountable 0 001 & 01997910 a 0000 | free from control or responsibility -01999180 00 s 01 unreliable 0 003 & 01997910 a 0000 + 04671394 n 0104 + 04671394 n 0103 | lacking a sense of responsibility -01999306 00 a 01 responsive 0 006 ^ 02103481 a 0000 ^ 02105990 a 0000 + 05212973 n 0101 + 00717358 v 0102 ! 01999766 a 0101 & 01999608 a 0000 | readily reacting or replying to people or events or stimuli; showing emotion; "children are often the quickest and most responsive members of the audience" -01999608 00 s 02 answering 0 respondent 0 003 & 01999306 a 0000 + 10524413 n 0201 + 00717358 v 0202 | replying; "an answering glance"; "an answering smile" -01999766 00 a 01 unresponsive 0 005 ^ 02105375 a 0000 ^ 02106761 a 0000 + 05213201 n 0101 ! 01999306 a 0101 & 01999941 a 0000 | not responding to some influence or stimulus -01999941 00 s 01 refractory 0 001 & 01999766 a 0000 | temporarily unresponsive or not fully responsive to nervous or sexual stimuli; "the refractory period of a muscle fiber" -02000118 00 a 01 restrained 0 007 ^ 00598679 a 0000 ^ 01316222 a 0000 ^ 01987341 a 0000 ! 02000680 a 0101 & 02000298 a 0000 & 02000406 a 0000 & 02000559 a 0000 | under restraint -02000298 00 s 01 close 0 001 & 02000118 a 0000 | strictly confined or guarded; "kept under close custody" -02000406 00 s 03 low-key 0 low-keyed 0 subdued 0 001 & 02000118 a 0000 | restrained in style or quality; "a little masterpiece of low-keyed eloquence" -02000559 00 s 01 unexpansive 0 001 & 02000118 a 0000 | not given to high spirits or effusiveness; "an unexpansive man" -02000680 00 a 01 unrestrained 0 011 ^ 01061489 a 0000 ^ 00599821 a 0000 ^ 01317012 a 0000 ^ 01988166 a 0000 ! 02000118 a 0101 & 02000968 a 0000 & 02001240 a 0000 & 02001406 a 0000 & 02001596 a 0000 & 02001776 a 0000 & 02001984 a 0000 | not subject to restraint; "unrestrained laughter" -02000968 00 s 04 excessive 0 extravagant 0 exuberant 0 overweening 0 003 & 02000680 a 0000 + 05118862 n 0201 + 05118437 n 0102 | unrestrained, especially with regard to feelings; "extravagant praise"; "exuberant compliments"; "overweening ambition"; "overweening greed" -02001240 00 s 01 freewheeling 0 001 & 02000680 a 0000 | free of restraints or rules; "freewheeling foolishness"; "the versatility of his poetic freewheeling style" -02001406 00 s 01 highflying(a) 0 001 & 02000680 a 0000 | extravagant or ambitious or extreme in aims or opinions; "they did not understand what had happend at the once highflying company" -02001596 00 s 04 unbridled 0 unchecked 0 uncurbed 0 ungoverned 0 001 & 02000680 a 0000 | not restrained or controlled; "unbridled rage"; "an unchecked temper"; "ungoverned rage" -02001776 00 s 02 unbuttoned 0 unlaced 0 001 & 02000680 a 0000 | not under constraint in action or expression; "this unbuttoned and disrespectful age"- Curtis Bok; "unlaced behavior in the neighborhood pub" -02001984 00 s 02 unhampered 0 unhindered 0 001 & 02000680 a 0000 | not slowed or blocked or interfered with; "an outlet for healthy and unhampered action"; "a priest unhampered by scruple"; "the new stock market was unhampered by tradition" -02002227 00 a 01 restricted 0 007 ^ 00415228 a 0000 ^ 00558373 a 0000 ^ 01064286 a 0000 ! 02002814 a 0101 & 02002470 a 0000 & 02002580 a 0000 & 02002683 a 0000 | subject to restriction or subjected to restriction; "of restricted importance" -02002470 00 s 02 circumscribed 0 limited 0 001 & 02002227 a 0000 | subject to limits or subjected to limits -02002580 00 s 01 closed 0 001 & 02002227 a 0000 | not open to the general public; "a closed meeting" -02002683 00 s 02 off-limits 0 out-of-bounds(p) 0 001 & 02002227 a 0000 | barred to a designated group; "that area is off-limits" -02002814 00 a 01 unrestricted 0 007 ^ 01061489 a 0000 ! 02002227 a 0101 & 02003023 a 0000 & 02003186 a 0000 & 02003357 a 0000 & 02003477 a 0000 & 02003604 a 0000 | not subject to or subjected to restriction -02003023 00 s 01 all-weather 0 001 & 02002814 a 0000 | usable or operative or practiced in all kinds of weather; "a good all-weather road"; "all-weather flying" -02003186 00 s 01 discretionary 0 001 & 02002814 a 0000 | (especially of funds) not earmarked; available for use as needed; "discretionary funds"; "discretionary income" -02003357 00 s 01 open 0 002 & 02002814 a 0000 + 07465159 n 0101 | accessible to all; "open season"; "an open economy" -02003477 00 s 01 open-plan 0 001 & 02002814 a 0000 | (of rooms or buildings) having large rooms with few dividing partitions -02003604 00 s 01 open-ended 0 001 & 02002814 a 0000 | without fixed limits or restrictions; "an open-ended discussion" -02003725 00 a 01 restrictive 0 010 + 04639113 n 0102 + 00236592 v 0101 + 00233335 v 0101 ! 02005245 a 0101 & 02004023 a 0000 & 02004176 a 0000 & 02004385 a 0000 & 02004685 a 0000 & 02004838 a 0000 & 02005065 a 0000 | serving to restrict; "teenagers eager to escape restrictive home environments" -02004023 00 s 05 confining 0 constraining 0 constrictive 0 limiting 1 restricting 0 001 & 02003725 a 0000 | restricting the scope or freedom of action -02004176 00 s 03 inhibitory 0 repressive 0 repressing 0 003 & 02003725 a 0000 + 02424128 v 0201 + 00462689 v 0101 | restrictive of action; "a repressive regime"; "an overly strict and inhibiting discipline" -02004385 00 s 01 limiting 0 002 & 02003725 a 0000 ;c 06174404 n 0000 | strictly limiting the reference of a modified word or phrase; "the restrictive clause in `Each made a list of the books that had influenced him' limits the books on the list to only those particular ones defined by the clause" -02004685 00 s 02 regulative 0 regulatory 0 002 & 02003725 a 0000 + 00299341 v 0201 | restricting according to rules or principles; "a regulatory gene" -02004838 00 s 01 sumptuary 0 001 & 02003725 a 0000 | regulating or controlling expenditure or personal behavior; "sumptuary laws discouraging construction of large houses on small plots"; "sumptuary laws forbidding gambling" -02005065 00 s 01 suppressive 0 003 & 02003725 a 0000 + 02424652 v 0102 + 00462092 v 0101 | tending to suppress; "the government used suppressive measures to control the protest" -02005245 00 a 01 unrestrictive 0 003 ! 02003725 a 0101 & 02005364 a 0000 & 02005460 a 0000 | not tending to restrict -02005364 00 s 01 emancipative 0 002 & 02005245 a 0000 + 02496498 v 0102 | tending to set free -02005460 00 s 01 nonrestrictive 0 002 & 02005245 a 0000 ;c 06174404 n 0000 | not limiting the reference of a modified word or phrase; "the nonrestrictive clause in `I always buy his books, which have influenced me greatly,' refers to his books generally and adds an additional fact about them" -02005756 00 a 04 retentive 0 recollective 0 long 0 tenacious 0 008 ^ 01977155 a 0000 + 04864515 n 0406 + 00607780 v 0206 + 05651399 n 0103 + 05651399 n 0104 + 02701628 v 0101 + 00610010 v 0101 ! 02006031 a 0101 | good at remembering; "a retentive mind"; "tenacious memory" -02006031 00 a 03 unretentive 0 forgetful 1 short 0 004 ^ 01978003 a 0000 + 14450339 n 0301 + 05673209 n 0201 ! 02005756 a 0101 | (of memory) deficient in retentiveness or range; "a short memory" -02006228 00 a 02 reticulate 0 reticular 0 009 + 05501485 n 0201 ! 02007413 a 0101 & 02006538 a 0000 & 02006700 a 0000 & 02006798 a 0000 & 02006933 a 0000 & 02007067 a 0000 & 02007225 a 0000 & 02007322 a 0000 | resembling or forming a network; "the reticulate veins of a leaf"; "a reticulated highway system" -02006538 00 s 03 cancellate 0 cancellated 0 clathrate 0 002 & 02006228 a 0000 ;c 06066555 n 0000 | having a latticelike structure pierced with holes or windows -02006700 00 s 02 crisscross 0 crisscrossed 0 001 & 02006228 a 0000 | marked with crossing lines -02006798 00 s 04 fretted 0 interlaced 0 latticed 0 latticelike 0 001 & 02006228 a 0000 | having a pattern of fretwork or latticework -02006933 00 s 02 interconnected 0 interrelated 0 003 & 02006228 a 0000 + 13844212 n 0203 + 14420240 n 0102 | reciprocally connected -02007067 00 s 06 lacy 0 netlike 0 netted 0 webbed 0 weblike 0 webby 0 002 & 02006228 a 0000 + 09477037 n 0601 | having open interstices or resembling a web -02007225 00 s 01 meshed 0 001 & 02006228 a 0000 | resembling a network; "a meshed road system" -02007322 00 s 01 networklike 0 001 & 02006228 a 0000 | having a network of veins or ribs -02007413 00 a 01 nonreticulate 0 001 ! 02006228 a 0101 | not resembling or forming a network -02007508 00 a 01 retractile 0 002 ! 02007775 a 0101 & 02007663 a 0000 | capable of retraction; capable of being drawn back; "cats have retractile claws" -02007663 00 s 01 retractable 0 001 & 02007508 a 0000 | capable of being retracted; "retractable landing gear" -02007775 00 a 02 nonretractile 0 nonretractable 0 001 ! 02007508 a 0101 | not capable of being retracted -02007882 00 a 01 reflective 0 005 + 05010627 n 0103 + 02765924 v 0101 ! 02008380 a 0101 & 02008082 a 0000 & 02008245 a 0000 | capable of physically reflecting light or sound; "a reflective surface" -02008082 00 s 02 mirrorlike 0 specular 0 001 & 02007882 a 0000 | capable of reflecting light like a mirror; "mirrorlike surface of the lake"; "a specular metal" -02008245 00 s 01 reflecting 0 001 & 02007882 a 0000 | causing reflection or having a device that reflects; "a reflecting microscope" -02008380 00 a 02 nonreflective 0 nonreflecting 0 002 ! 02007882 a 0101 & 02008508 a 0000 | not capable of physical reflection -02008508 00 s 01 echoless 0 001 & 02008380 a 0000 | having or producing no echo; "the echoless darkness" -02008615 00 a 01 reflected 0 003 ! 02009012 a 0101 & 02008820 a 0000 & 02008917 a 0000 | (especially of incident sound or light) bent or sent back; "reflected light"; "reflected heat"; "reflected glory" -02008820 00 s 02 echoic 0 echolike 0 001 & 02008615 a 0000 | like or characteristic of an echo -02008917 00 s 01 mirrored 0 001 & 02008615 a 0000 | like or characteristic of a mirror image -02009012 00 a 01 unreflected 0 002 ! 02008615 a 0101 & 02009166 a 0000 | (especially of incident sound or light) not turned back by physical reflection -02009166 00 s 01 absorbed 0 001 & 02009012 a 0000 | retained without reflection; "the absorbed light intensity" -02009280 00 a 01 reverberant 0 014 + 04989657 n 0103 + 02136533 v 0101 + 02136271 v 0102 + 02183787 v 0104 ! 02011142 a 0101 & 02009688 a 0000 & 02009880 a 0000 & 02009993 a 0000 & 02010127 a 0000 & 02010266 a 0000 & 02010441 a 0000 & 02010536 a 0000 & 02010831 a 0000 & 02011002 a 0000 | having a tendency to reverberate or be repeatedly reflected; "a reverberant room"; "the reverberant booms of cannon" -02009688 00 s 02 bright 0 brilliant 0 002 & 02009280 a 0000 + 04954920 n 0203 | clear and sharp and ringing; "the bright sound of the trumpet section"; "the brilliant sound of the trumpets" -02009880 00 s 01 clinking 0 001 & 02009280 a 0000 | like the light sharp ringing sound of glasses being tapped -02009993 00 s 02 echoing(a) 0 reechoing 0 001 & 02009280 a 0000 | (of sounds) repeating by reflection; "a hotel with echoing halls" -02010127 00 s 01 hollow 0 001 & 02009280 a 0000 | as if echoing in a hollow space; "the hollow sound of footsteps in the empty ballroom" -02010266 00 s 02 jingling 0 jingly 0 002 & 02009280 a 0000 + 07385998 n 0201 | having a series of high-pitched ringing sounds like many small bells; "jingling sleigh bells" -02010441 00 s 01 live(a) 0 001 & 02009280 a 0000 | highly reverberant; "a live concert hall" -02010536 00 s 05 resonant 0 resonating 0 resounding 0 reverberating 0 reverberative 0 007 & 02009280 a 0000 + 02183787 v 0504 + 11477921 n 0101 + 04989657 n 0102 + 02183787 v 0101 + 02172888 v 0102 + 04988258 n 0101 | characterized by resonance; "a resonant voice"; "hear the rolling thunder" -02010831 00 s 02 tinkling 0 tinkly 0 002 & 02009280 a 0000 + 07398097 n 0202 | like the short high ringing sound of a small bell; "sounding brass and a tinkling cymbal" -02011002 00 s 01 vibrant 0 002 & 02009280 a 0000 + 02175958 v 0102 | of sounds that are strong and resonating; "the men's vibrant voices" -02011142 00 a 02 unreverberant 0 nonresonant 0 004 ! 02009280 a 0101 & 02011320 a 0000 & 02011445 a 0000 & 02011622 a 0000 | not reverberant; lacking a tendency to reverberate -02011320 00 s 01 anechoic 0 001 & 02011142 a 0000 | not having or producing echoes; sound-absorbent; "an anechoic chamber" -02011445 00 s 01 dead 0 001 & 02011142 a 0000 | lacking acoustic resonance; "dead sounds characteristic of some compact discs"; "the dead wall surfaces of a recording studio" -02011622 00 s 02 dull 0 thudding 0 001 & 02011142 a 0000 | not clear and resonant; sounding as if striking with or against something relatively soft; "the dull thud"; "thudding bullets" -02011810 00 a 01 reverent 0 008 ^ 01993940 a 0000 + 06207561 n 0101 + 01778017 v 0105 + 01778568 v 0103 ! 02012504 a 0101 & 02012073 a 0000 & 02012157 a 0000 & 02012333 a 0000 | feeling or showing profound respect or veneration; "maintained a reverent silence" -02012073 00 s 02 adoring 0 worshipful 0 001 & 02011810 a 0000 | showing adoration -02012157 00 s 02 awed 0 awful 0 001 & 02011810 a 0000 | inspired by a feeling of fearful wonderment or reverence; "awed by the silence"; "awful worshippers with bowed heads" -02012333 00 s 03 respectful 0 reverential 0 venerating 0 004 & 02011810 a 0000 + 07521039 n 0202 + 06207561 n 0201 + 04913839 n 0103 | feeling or manifesting veneration -02012504 00 a 01 irreverent 0 005 ^ 01994602 a 0000 + 00746232 n 0101 ! 02011810 a 0101 & 02012748 a 0000 & 02013083 a 0000 | showing lack of due respect or veneration; "irreverent scholars mocking sacred things"; "noisy irreverent tourists" -02012748 00 s 03 blasphemous 0 profane 0 sacrilegious 0 005 & 02012504 a 0000 + 00746587 n 0304 + 04856182 n 0301 + 06207874 n 0201 + 00746587 n 0103 | grossly irreverent toward what is held to be sacred; "blasphemous rites of a witches' Sabbath"; "profane utterances against the Church"; "it is sacrilegious to enter with shoes on" -02013083 00 s 03 aweless 0 awless 0 disrespectful 0 001 & 02012504 a 0000 | neither feeling nor showing respect -02013197 00 a 01 revived 0 007 ! 02014308 a 0101 & 02013422 a 0000 & 02013630 a 0000 & 02013758 a 0000 & 02013864 a 0000 & 02014048 a 0000 & 02014140 a 0000 | restored to consciousness or life or vigor; "felt revived hope" -02013422 00 s 01 recrudescent 0 002 & 02013197 a 0000 + 07435891 n 0101 | the revival of an unfortunate situation after a period of abatement; "the patient presented with a case of recrudescent gastralgia" -02013630 00 s 01 redux(ip) 0 001 & 02013197 a 0000 | brought back; "the Victorian era redux"; "`Rabbit Redux' by John Updike" -02013758 00 s 01 renewed 0 001 & 02013197 a 0000 | restored to a new condition; "felt renewed strength" -02013864 00 s 02 resurgent 0 renascent 0 004 & 02013197 a 0000 + 01047803 n 0203 + 02624806 v 0101 + 01047338 n 0102 | rising again as to new life and vigor; "resurgent nationalism" -02014048 00 s 01 resuscitated 0 001 & 02013197 a 0000 | restored to life or consciousness -02014140 00 s 02 revitalized 0 revitalised 0 001 & 02013197 a 0000 | restored to new life and vigor; "a revitalized economy"; "a revitalized inner-city neighborhood" -02014308 00 a 02 unrevived 0 unrenewed 0 001 ! 02013197 a 0101 | not revived -02014387 00 a 01 awakened 0 002 ! 02014611 a 0101 & 02014514 a 0000 | aroused or activated; "an awakened interest in ballet" -02014514 00 s 01 aroused 0 001 & 02014387 a 0000 | aroused to action; "the aroused opposition" -02014611 00 a 01 unawakened 0 001 ! 02014387 a 0101 | not aroused or activated; "unawakened emotions" -02014715 00 a 03 awed 0 awestruck 0 awestricken 0 002 ! 02015055 a 0101 & 02014972 a 0000 | having or showing a feeling of mixed reverence and respect and wonder and dread; "stood in awed silence before the shrine"; "in grim despair and awestruck wonder" -02014972 00 s 01 overawed 0 001 & 02014715 a 0000 | overcome by a feeling of awe -02015055 00 a 01 unawed 0 002 ! 02014715 a 0101 & 02015134 a 0000 | not awed -02015134 00 s 02 aweless 0 awless 0 001 & 02015055 a 0000 | devoid of any feeling of awe or reverence -02015238 00 a 01 revolutionary 0 002 + 10527334 n 0102 ! 02015403 a 0101 | advocating or engaged in revolution; "revolutionary pamphlets"; "a revolutionary junta" -02015403 00 a 01 counterrevolutionary 0 001 ! 02015238 a 0101 | marked by opposition or antipathy to revolution; "ostracized for his counterrevolutionary tendencies" -02015571 00 a 01 rewarding 0 005 ^ 01807219 a 0000 ^ 01870889 a 0000 ! 02016001 a 0101 & 02015767 a 0000 & 02015891 a 0000 | providing personal satisfaction; "a rewarding career as a paramedic" -02015767 00 s 01 bountied 0 001 & 02015571 a 0000 | rewarded or able to be rewarded by a bounty; "a bountied animal pelt" -02015891 00 s 01 rewardful 0 001 & 02015571 a 0000 | offering or productive of reward; "rewardful pursuits" -02016001 00 a 01 unrewarding 0 003 ! 02015571 a 0101 & 02016145 a 0000 & 02016295 a 0000 | not rewarding; not providing personal satisfaction -02016145 00 s 03 thankless 0 unappreciated 0 ungratifying 0 001 & 02016001 a 0000 | not likely to be rewarded; "grading papers is a thankless task" -02016295 00 s 01 profitless 0 001 & 02016001 a 0000 | without profit or reward; "let us have no part in profitless quarrels"- D.D.Eisenhower; "How weary, flat, stale, and unprofitable / Seem to me all the uses of this world"- Shakespeare -02016535 00 a 01 rhetorical 0 012 ^ 01794340 a 0000 ^ 01419149 a 0000 + 06170498 n 0101 ! 02018486 a 0101 & 02016881 a 0000 & 02017141 a 0000 & 02017372 a 0000 & 02017613 a 0000 & 02017721 a 0000 & 02017933 a 0000 & 02018141 a 0000 & 02018296 a 0000 | given to rhetoric, emphasizing style at the expense of thought; "mere rhetorical frippery" -02016881 00 s 06 bombastic 0 declamatory 0 large 0 orotund 0 tumid 0 turgid 0 005 & 02016535 a 0000 + 07090573 n 0602 + 07090573 n 0601 + 04788982 n 0303 + 07087777 n 0101 | ostentatiously lofty in style; "a man given to large talk"; "tumid political prose" -02017141 00 s 02 flowery 0 ornate 0 002 & 02016535 a 0000 + 07070429 n 0203 | marked by elaborate rhetoric and elaborated with decorative details; "a flowery speech"; "ornate rhetoric taught out of the rule of Plato"-John Milton -02017372 00 s 03 empurpled 0 over-embellished 0 purple 0 001 & 02016535 a 0000 | excessively elaborate or showily expressed; "a writer of empurpled literature"; "many purple passages"; "an over-embellished story of the fish that got away" -02017613 00 s 01 forensic 0 001 & 02016535 a 0000 | of, relating to, or used in public debate or argument -02017721 00 s 03 grandiloquent 0 magniloquent 0 tall 0 003 & 02016535 a 0000 + 07070429 n 0202 + 07070429 n 0104 | lofty in style; "he engages in so much tall talk, one never really realizes what he is saying" -02017933 00 s 01 oratorical 0 003 & 02016535 a 0000 + 10380672 n 0101 + 07241205 n 0101 | characteristic of an orator or oratory; "oratorical prose"; "harangued his men in an oratorical way"- Robert Graves -02018141 00 s 02 poetic 0 poetical 0 003 & 02016535 a 0000 + 07093273 n 0201 + 07093273 n 0101 | characteristic of or befitting poetry; "poetic diction" -02018296 00 s 01 stylistic 0 004 & 02016535 a 0000 + 06789215 n 0101 + 07066659 n 0102 + 04812871 n 0105 | of or relating to style (especially in the use of language); "stylistic devices" -02018486 00 a 01 unrhetorical 0 006 ^ 01045711 a 0000 ^ 01418789 a 0000 ^ 01791911 a 0000 ! 02016535 a 0101 & 02018649 a 0000 & 02018899 a 0000 | not rhetorical -02018649 00 s 02 matter-of-fact 0 prosaic 0 003 & 02018486 a 0000 + 07072434 n 0201 + 04795878 n 0202 | not fanciful or imaginative; "local guides describe the history of various places in matter-of-fact tones"; "a prosaic and unimaginative essay" -02018899 00 s 01 plainspoken 0 001 & 02018486 a 0000 | using simple and direct language; "a plainspoken country doctor" -02019021 00 a 02 rhythmical 0 rhythmic 0 016 ^ 01959294 a 0000 + 15287830 n 0202 + 04768028 n 0201 + 04991511 n 0201 + 04768028 n 0101 ! 02021050 a 0101 & 02019470 a 0000 & 02019635 a 0000 & 02019805 a 0000 & 02019881 a 0000 & 02020011 a 0000 & 02020310 a 0000 & 02020495 a 0000 & 02020609 a 0000 & 02020810 a 0000 & 02020897 a 0000 | recurring with measured regularity; "the rhythmic chiming of church bells"- John Galsworthy; "rhythmical prose" -02019470 00 s 01 Adonic 0 001 & 02019021 a 0000 | having a rhythm consisting of a dactyl followed by a spondee or a trochee; "the verse of the laments is Adonic" -02019635 00 s 02 cadenced 0 cadent 0 003 & 02019021 a 0000 + 04991879 n 0201 + 04991879 n 0202 | marked by a rhythmical cadence; "the cadenced crunch of marching feet" -02019805 00 s 01 danceable 0 001 & 02019021 a 0000 | suitable for dancing -02019881 00 s 01 jazzy 0 003 & 02019021 a 0000 + 07060976 n 0101 + 07062697 n 0101 | resembling jazz (especially in its rhythm) -02020011 00 s 04 lilting 0 swinging 0 swingy 0 tripping 0 003 & 02019021 a 0000 + 07066042 n 0301 + 04992008 n 0302 | characterized by a buoyant rhythm; "an easy lilting stride"; "the flute broke into a light lilting air"; "a swinging pace"; "a graceful swingy walk"; "a tripping singing measure" -02020310 00 s 03 measured 0 metrical 0 metric 0 005 & 02019021 a 0000 ;c 06170025 n 0000 + 04991738 n 0301 + 07094093 n 0202 + 07094093 n 0201 | the rhythmic arrangement of syllables -02020495 00 s 01 Sapphic 0 002 & 02019021 a 0000 + 11281345 n 0101 | a meter used by Sappho and named after her -02020609 00 s 03 chantlike 0 intoned 0 singsong 0 001 & 02019021 a 0000 | uttered in a monotonous cadence or rhythm as in chanting; "their chantlike intoned prayers"; "a singsong manner of speaking" -02020810 00 s 01 syncopated 0 001 & 02019021 a 0000 | stressing a normally weak beat -02020897 00 s 01 throbbing 0 001 & 02019021 a 0000 | pounding or beating strongly or violently; "a throbbing pain"; "the throbbing engine of the boat" -02021050 00 a 02 unrhythmical 0 unrhythmic 0 005 ^ 01960656 a 0000 ! 02019021 a 0101 & 02021235 a 0000 & 02021332 a 0000 & 02021415 a 0000 | not rhythmic; irregular in beat or accent -02021235 00 s 02 arrhythmic 0 arrhythmical 0 001 & 02021050 a 0000 | without regard for rhythm -02021332 00 s 01 nonrhythmic 0 001 & 02021050 a 0000 | deliberately not rhythmic -02021415 00 s 01 unmeasured 0 001 & 02021050 a 0000 | not composed of measured syllables; not metrical; "unmeasured prose" -02021540 00 a 01 ribbed 0 003 ! 02021818 a 0101 & 02021664 a 0000 & 02021748 a 0000 | furnished or strengthened with ribs -02021664 00 s 01 costate 0 002 & 02021540 a 0000 ;c 06057539 n 0000 | having ribs -02021748 00 s 01 riblike 0 001 & 02021540 a 0000 | resembling a rib -02021818 00 a 01 ribless 0 001 ! 02021540 a 0101 | having no ribs or no visible ribs -02021905 00 a 01 rich 0 007 ^ 00013887 a 0000 ^ 01864123 a 0000 = 14488317 n 0000 + 14491625 n 0102 ! 02022953 a 0101 & 02022167 a 0000 & 02022556 a 0000 | possessing material wealth; "her father is extremely rich"; "many fond hopes are pinned on rich uncles" -02022167 00 s 05 affluent 0 flush 0 loaded 0 moneyed 0 wealthy 0 007 & 02021905 a 0000 + 14491271 n 0501 + 13353280 n 0501 + 14491271 n 0502 + 15295045 n 0208 + 09776642 n 0101 + 14491625 n 0101 | having an abundant supply of money or possessions of value; "an affluent banker"; "a speculator flush with cash"; "not merely rich but loaded"; "moneyed aristocrats"; "wealthy corporations" -02022556 00 s 08 comfortable 0 easy 0 prosperous 0 well-fixed 0 well-heeled 0 well-off 0 well-situated 0 well-to-do 0 002 & 02021905 a 0000 + 14474052 n 0301 | in fortunate circumstances financially; moderately rich; "they were comfortable or even wealthy by some standards"; "easy living"; "a prosperous family"; "his family is well-situated financially"; "well-to-do members of the community" -02022953 00 a 01 poor 0 009 ^ 01864471 a 0000 = 14488317 n 0000 + 14493145 n 0102 ! 02021905 a 0101 & 02023287 a 0000 & 02023430 a 0000 & 02023661 a 0000 & 02023914 a 0000 & 02024022 a 0000 | having little money or few possessions; "deplored the gap between rich and poor countries"; "the proverbial poor artist living in a garret" -02023287 00 s 05 broke 0 bust 0 skint 0 stone-broke 0 stony-broke 0 001 & 02022953 a 0000 | lacking funds; "`skint' is a British slang term" -02023430 00 s 06 destitute 0 impoverished 0 indigent 0 necessitous 0 needy 0 poverty-stricken 0 005 & 02022953 a 0000 + 14493426 n 0504 + 14493716 n 0502 + 09367203 n 0401 + 14493716 n 0301 | poor enough to need help from others -02023661 00 s 06 hard_up 0 impecunious 0 in_straitened_circumstances(p) 0 penniless 0 penurious 0 pinched 0 005 & 02022953 a 0000 + 14493716 n 0503 + 14494186 n 0503 + 14494186 n 0402 + 14494186 n 0201 | not having enough money to pay for necessities -02023914 00 s 01 moneyless 0 001 & 02022953 a 0000 | having no money; "virtually moneyless rural regions" -02024022 00 s 01 unprovided_for(p) 0 001 & 02022953 a 0000 | without income or means; "left his family unprovided for" -02024143 00 a 01 rich 2 003 + 05115804 n 0103 + 05147586 n 0101 ! 02024411 a 0101 | having an abundant supply of desirable qualities or substances (especially natural resources); "blessed with a land rich in minerals"; "rich in ideas"; "rich with cultural interest" -02024411 00 a 01 poor 2 004 + 05113462 n 0104 + 05148399 n 0101 ! 02024143 a 0101 & 02024658 a 0000 | lacking in specific resources, qualities or substances; "a poor land"; "the area was poor in timber and coal"; "food poor in nutritive value" -02024658 00 s 01 resourceless 0 001 & 02024411 a 0000 | lacking or deficient in natural resources -02024758 00 a 01 rich 3 004 + 04729328 n 0104 ! 02025498 a 0101 & 02024928 a 0000 & 02025274 a 0000 | suggestive of or characterized by great expense; "a rich display" -02024928 00 s 07 deluxe 0 gilded 0 grand 0 luxurious 0 opulent 0 princely 0 sumptuous 0 010 & 02024758 a 0000 + 14492373 n 0704 + 05146471 n 0704 + 05146471 n 0703 + 14492373 n 0503 + 14492373 n 0401 + 05146471 n 0402 + 05119223 n 0401 + 14492373 n 0402 + 04729328 n 0302 | rich and superior in quality; "a princely sum"; "gilded dining rooms" -02025274 00 s 05 lavish 0 lucullan 0 lush 0 plush 0 plushy 0 004 & 02024758 a 0000 + 05116243 n 0302 + 11143600 n 0201 + 05146471 n 0101 | characterized by extravagance and profusion; "a lavish buffet"; "a lucullan feast" -02025498 00 a 01 poor 3 004 + 14493145 n 0102 ! 02024758 a 0101 & 02025718 a 0000 & 02025885 a 0000 | characterized by or indicating poverty; "the country had a poor economy"; "they lived in the poor section of town" -02025718 00 s 02 beggarly 0 mean 0 002 & 02025498 a 0000 + 09847010 n 0101 | marked by poverty befitting a beggar; "a beggarly existence in the slums"; "a mean hut" -02025885 00 s 01 slummy 0 002 & 02025498 a 0000 + 08651832 n 0101 | (of housing or residential areas) indicative of poverty; "a slummy part of town"; "slum conditions" -02026055 00 a 02 moneyed 0 monied 0 001 ! 02026197 a 0101 | based on or arising from the possession of money or wealth; "moneyed interests" -02026197 00 a 01 moneyless 0 001 ! 02026055 a 0101 | not based on the possession of money; "a moneyless economy" -02026312 00 a 01 solvent 0 003 + 14478143 n 0101 + 00761454 v 0102 ! 02026442 a 0101 | capable of meeting financial obligations -02026442 00 a 01 insolvent 0 003 + 14478291 n 0101 ! 02026312 a 0101 & 02026629 a 0000 | unable to meet or discharge financial obligations; "an insolvent person"; "an insolvent estate" -02026629 00 s 02 bankrupt 0 belly-up(p) 0 002 & 02026442 a 0000 + 09838370 n 0101 | financially ruined; "a bankrupt company"; "the company went belly-up" -02026785 00 a 01 rich 4 004 ;c 06125698 n 0000 ;c 06084469 n 0000 + 05115804 n 0103 ! 02027003 a 0101 | high in mineral content; having a high proportion of fuel to air; "a rich vein of copper", "a rich gas mixture" -02027003 00 a 01 lean 0 002 + 05113462 n 0103 ! 02026785 a 0101 | lacking in mineral content or combustible material; "lean ore"; "lean fuel" -02027147 00 a 01 rimmed 0 003 ! 02027609 a 0101 & 02027319 a 0000 & 02027480 a 0000 | having a rim or a rim of a specified kind; "do you wear rimmed or rimless glasses?" -02027319 00 s 01 horn-rimmed 0 001 & 02027147 a 0000 | having the frame made of horn or tortoise shell or plastic that simulates either; "horn-rimmed glasses" -02027480 00 s 01 red-rimmed 0 001 & 02027147 a 0000 | rimmed with red; "your red-rimmed eyes reveal that you have been crying" -02027609 00 a 01 rimless 0 001 ! 02027147 a 0101 | lacking a rim or frame; "rimless glasses" -02027704 00 a 01 handed 0 004 + 05067007 n 0101 ! 02028263 a 0101 & 02027906 a 0000 & 02028046 a 0000 | having or involving the use of hands; "a handed, tree-living animal"; "a four-handed card game" -02027906 00 s 01 one-handed 0 001 & 02027704 a 0000 | having or using a single hand; "one-handed golfers"; "a one-handed backetball shot" -02028046 00 s 02 two-handed 0 bimanual 0 001 & 02027704 a 0000 | requiring two hands or designed for two people; "a two-handed sledgehammer"; "a two-handed crosscut saw"; "a machine designed for bimanual operation" -02028263 00 a 01 handless 0 001 ! 02027704 a 0101 | without a hand or hands; "a handless war veteran" -02028367 00 a 01 handled 0 001 ! 02028488 a 0101 | having a usually specified type of handle; "pearl-handled revolver" -02028488 00 a 01 handleless 0 001 ! 02028367 a 0101 | having no handle; "sleek cabinets with apparently handleless doors" -02028612 00 a 01 right-handed 0 007 ^ 00742879 a 0000 ^ 02031986 a 0000 + 05067514 n 0101 ! 02029167 a 0101 ! 02029752 a 0101 & 02028865 a 0000 & 02029047 a 0000 | using or intended for the right hand; "a right-handed batter"; "right-handed scissors" -02028865 00 s 01 dextral 0 002 & 02028612 a 0000 + 05067514 n 0102 | preferring to use right foot or hand or eye; "dextral individuals exhibit dominance of the right hand and eye" -02029047 00 s 02 right(a) 0 right-hand(a) 0 001 & 02028612 a 0000 | intended for the right hand; "a right-hand glove" -02029167 00 a 01 left-handed 0 007 ^ 00743435 a 0000 ^ 02032953 a 0000 + 05067367 n 0101 ! 02029752 a 0101 ! 02028612 a 0101 & 02029438 a 0000 & 02029568 a 0000 | using or intended for the left hand; "left-handed golfers need left-handed clubs"; "left-handed scissors" -02029438 00 s 02 left(a) 0 left-hand(a) 0 001 & 02029167 a 0000 | intended for the left hand; "I rarely lose a left-hand glove" -02029568 00 s 01 sinistral 0 002 & 02029167 a 0000 + 05067367 n 0102 | preferring to use left foot or hand or eye; "sinistral individuals exhibit dominance of the left hand and eye" -02029752 00 a 02 ambidextrous 0 two-handed 4 005 + 05067199 n 0101 + 05067199 n 0102 ! 02028612 a 0101 ! 02029167 a 0101 & 02029954 a 0000 | equally skillful with each hand; "an ambidextrous surgeon" -02029954 00 s 01 equipoised 0 001 & 02029752 a 0000 | lacking lateral dominance; being neither right-handed nor left-handed -02030080 00 a 01 right 3 008 ^ 00574422 a 0000 ! 02030935 a 0101 ! 02031624 a 0101 & 02030312 a 0000 & 02030425 a 0000 & 02030562 a 0000 & 02030704 a 0000 & 02030793 a 0000 | of or belonging to the political or intellectual right -02030312 00 s 01 conservative 0 001 & 02030080 a 0000 | having social or political views favoring conservatism -02030425 00 s 02 oldline 0 old-line 0 001 & 02030080 a 0000 | adhering to conservative or reactionary principles; "an oldline senator" -02030562 00 s 03 reactionary 0 reactionist 0 far-right 0 003 & 02030080 a 0000 + 10508475 n 0101 + 06216634 n 0101 | extremely conservative -02030704 00 s 01 rightish 0 001 & 02030080 a 0000 | tending toward the political right -02030793 00 s 02 rightist 0 right-wing 0 002 & 02030080 a 0000 + 10531227 n 0101 | believing in or supporting tenets of the political right -02030935 00 a 01 left 2 008 ^ 00575230 a 0000 ^ 00298041 a 0000 ! 02031624 a 0101 ! 02030080 a 0101 & 02031165 a 0000 & 02031248 a 0000 & 02031335 a 0000 & 02031473 a 0000 | of or belonging to the political or intellectual left -02031165 00 s 01 far_left 0 001 & 02030935 a 0000 | radical or extremely liberal -02031248 00 s 01 leftish 0 001 & 02030935 a 0000 | tending toward the political left -02031335 00 s 03 leftist 0 left-of-center 0 left-wing 0 001 & 02030935 a 0000 | believing in or supporting tenets of the political left -02031473 00 s 01 liberal 0 003 & 02030935 a 0000 + 06204820 n 0102 + 06204820 n 0101 | having political or social views favoring reform and progress -02031624 00 a 01 center 0 004 + 08416523 n 0101 ! 02030080 a 0101 ! 02030935 a 0101 & 02031810 a 0000 | of or belonging to neither the right nor the left politically or intellectually -02031810 00 s 02 centrist 0 middle-of-the-road 0 002 & 02031624 a 0000 + 09904837 n 0101 | supporting or pursuing a course of action that is neither liberal nor conservative -02031986 00 a 01 right 0 007 ^ 02028612 a 0000 = 08621598 n 0000 ! 02032953 a 0101 & 02032386 a 0000 & 02032617 a 0000 & 02032730 a 0000 & 02032850 a 0000 | being or located on or directed toward the side of the body to the east when facing north; "my right hand"; "right center field"; "a right-hand turn"; "the right bank of a river is the bank on your right side when you are facing downstream" -02032386 00 s 01 far 0 001 & 02031986 a 0000 | being the animal or vehicle on the right or being on the right side of an animal or vehicle; "the horse on the right is the far horse"; "the right side is the far side of the horse" -02032617 00 s 01 rightmost 0 001 & 02031986 a 0000 | farthest to the right; "in the rightmost line of traffic" -02032730 00 s 01 right-hand(a) 0 001 & 02031986 a 0000 | located on or directed toward the right; "a right-hand turn" -02032850 00 s 01 starboard 0 001 & 02031986 a 0000 | located on the right side of a ship or aircraft -02032953 00 a 01 left 0 007 ^ 02029167 a 0000 = 08621598 n 0000 ! 02031986 a 0101 & 02033323 a 0000 & 02033450 a 0000 & 02033556 a 0000 & 02033742 a 0000 | being or located on or directed toward the side of the body to the west when facing north; "my left hand"; "left center field"; "the left bank of a river is bank on your left side when you are facing downstream" -02033323 00 s 01 left-hand(a) 0 001 & 02032953 a 0000 | located on or directed toward the left; "a car with left-hand drive" -02033450 00 s 01 leftmost 0 001 & 02032953 a 0000 | farthest to the left; "the leftmost non-zero digit" -02033556 00 s 02 near(a) 0 nigh(a) 0 001 & 02032953 a 0000 | being on the left side; "the near or nigh horse is the one on the left"; "the animal's left side is its near or nigh side" -02033742 00 s 02 port 0 larboard 0 002 & 02032953 a 0000 + 03642928 n 0102 | located on the left side of a ship or aircraft -02033868 00 a 01 horned 0 006 ! 02034739 a 0101 & 02034179 a 0000 & 02034248 a 0000 & 02034324 a 0000 & 02034504 a 0000 & 02034592 a 0000 | having a horn or horns or hornlike parts or horns of a particular kind; "horned viper"; "great horned owl"; "the unicorn--a mythical horned beast"; "long-horned cattle" -02034179 00 s 01 antlered 0 001 & 02033868 a 0000 | having antlers -02034248 00 s 01 antler-like 0 001 & 02033868 a 0000 | resembling antlers -02034324 00 s 05 bicorn 0 bicorned 0 bicornate 0 bicornuate 0 bicornuous 0 002 & 02033868 a 0000 + 02834642 n 0101 | having two horns or horn-shaped parts; "a bicornuate uterus" -02034504 00 s 01 hollow-horned 0 001 & 02033868 a 0000 | having horns that are hollow -02034592 00 s 01 horny 0 002 & 02033868 a 0000 + 01325417 n 0101 | having horns or hornlike projections; "horny coral"; "horny (or horned) frog" -02034739 00 a 01 hornless 0 001 ! 02033868 a 0101 | having no horns; "hornless cattle" -02034828 00 a 01 right 1 008 ^ 00905386 a 0000 ^ 01129977 a 0000 ^ 01369663 a 0000 ^ 01878466 a 0000 = 04847133 n 0000 + 04847133 n 0101 ! 02035337 a 0101 & 02035086 a 0000 | in conformance with justice or law or morality; "do the right thing and confess" -02035086 00 s 03 ethical 0 honorable 0 honourable 0 004 & 02034828 a 0000 + 04868748 n 0302 + 04868748 n 0201 + 09183693 n 0102 | adhering to ethical and moral principles; "it seems ethical and right"; "followed the only honorable course of action" -02035337 00 a 01 wrong 1 014 ^ 01131043 a 0000 ^ 01880531 a 0000 ^ 01549291 a 0000 ^ 00905728 a 0000 ^ 01370590 a 0000 ^ 02513740 a 0000 = 04847133 n 0000 + 04854604 n 0101 + 00744131 n 0101 + 04851962 n 0101 ! 02034828 a 0101 & 02035765 a 0000 & 02036077 a 0000 & 02036397 a 0000 | contrary to conscience or morality or law; "it is wrong for the rich to take advantage of the poor"; "cheating is wrong"; "it is wrong to lie" -02035765 00 s 05 condemnable 0 criminal 0 deplorable 0 reprehensible 0 vicious 0 003 & 02035337 a 0000 + 00826201 v 0401 + 04853212 n 0401 | bringing or deserving severe rebuke or censure; "a criminal waste of talent"; "a deplorable act of violence"; "adultery is as reprehensible for a husband as for a wife" -02036077 00 s 02 base 0 immoral 0 003 & 02035337 a 0000 + 04850589 n 0201 + 04807971 n 0101 | not adhering to ethical or moral principles; "base and unpatriotic motives"; "a base, degrading way of life"; "cheating is dishonorable"; "they considered colonialism immoral"; "unethical practices in handling public funds" -02036397 00 s 02 misguided 0 mistaken 0 001 & 02035337 a 0000 | wrong in e.g. opinion or judgment; "well-meaning but misguided teachers"; "a mistaken belief"; "mistaken identity" -02036578 00 a 01 righteous 0 010 ^ 01129977 a 0000 ^ 01319874 a 0000 ^ 01369663 a 0000 ^ 01548193 a 0000 ^ 02513269 a 0000 ^ 02584981 a 0000 + 04826235 n 0101 ! 02037272 a 0101 & 02036934 a 0000 & 02037152 a 0000 | characterized by or proceeding from accepted standards of morality or justice; "the...prayer of a righteous man availeth much"- James 5:16 -02036934 00 s 03 good 0 just 0 upright 0 004 & 02036578 a 0000 + 04826623 n 0301 + 04713853 n 0201 + 04849241 n 0102 | of moral excellence; "a genuinely good person"; "a just cause"; "an upright and respectable man" -02037152 00 s 01 sound 0 002 & 02036578 a 0000 + 05159948 n 0103 | free from moral defect; "a man of sound character" -02037272 00 a 01 unrighteous 0 009 ^ 01131043 a 0000 ^ 01320988 a 0000 ^ 01549291 a 0000 ^ 01370590 a 0000 ^ 02588099 a 0000 ^ 02513740 a 0000 + 04827652 n 0101 ! 02036578 a 0101 & 02037531 a 0000 | not righteous; "an unrighteous man"; "an unrighteous law" -02037531 00 s 03 sinful 0 unholy 0 wicked 0 004 & 02037272 a 0000 + 04827957 n 0303 + 04855840 n 0201 + 04827957 n 0102 | having committed unrighteous acts; "a sinful person" -02037708 00 a 01 robust 0 016 ^ 01170243 a 0000 ^ 00707366 a 0000 ^ 02321009 a 0000 + 05031012 n 0101 ! 02040049 a 0101 & 02038126 a 0000 & 02038421 a 0000 & 02038555 a 0000 & 02038735 a 0000 & 02038891 a 0000 & 02038994 a 0000 & 02039304 a 0000 & 02039491 a 0000 & 02039632 a 0000 & 02039763 a 0000 & 02039845 a 0000 | sturdy and strong in form, constitution, or construction; "a robust body"; "a robust perennial" -02038126 00 s 05 beefy 0 burly 0 husky 0 strapping 0 buirdly 0 003 & 02037708 a 0000 ;r 08890097 n 0000 + 05031214 n 0301 | muscular and heavily built; "a beefy wrestler"; "had a tall burly frame"; "clothing sizes for husky boys"; "a strapping boy of eighteen"; "`buirdly' is a Scottish term" -02038421 00 s 01 big-boned 0 001 & 02037708 a 0000 | having a bone structure that is massive in contrast with the surrounding flesh -02038555 00 s 02 big-chested 0 chesty 0 002 & 02037708 a 0000 + 05552607 n 0202 | marked by a large or well-developed chest; "he was big-chested, big-shouldered and heavy-armed" -02038735 00 s 03 big-shouldered 0 broad-shouldered 0 square-shouldered 0 001 & 02037708 a 0000 | having broad shoulders; "big-shouldered and heavy-armed" -02038891 00 s 02 cast-iron 0 iron 0 001 & 02037708 a 0000 | extremely robust; "an iron constitution" -02038994 00 s 04 hardy 0 stalwart 0 stout 0 sturdy 0 004 & 02037708 a 0000 + 14051381 n 0401 + 05031560 n 0301 + 05031012 n 0102 | having rugged physical strength; inured to fatigue or hardships; "hardy explorers of northern Canada"; "proud of her tall stalwart son"; "stout seamen"; "sturdy young athletes" -02039304 00 s 01 hardy 1 001 & 02037708 a 0000 | able to survive under unfavorable weather conditions; "strawberries are hardy and easy to grow"; "camels are tough and hardy creatures" -02039491 00 s 01 half-hardy 0 002 & 02037708 a 0000 ;c 00017222 n 0000 | (of plants) requiring protection from frost; "half-hardy annuals" -02039632 00 s 01 heavy-armed 0 001 & 02037708 a 0000 | having massive arms; "he was big-chested, big-shouldered and heavy-armed" -02039763 00 s 01 square-built 0 001 & 02037708 a 0000 | broad and solidly built -02039845 00 s 01 vigorous 0 003 & 02037708 a 0000 + 05035961 n 0102 + 05030806 n 0101 | strong and active physically or mentally; "a vigorous old man who spent half of his day on horseback"- W.H.Hudson -02040049 00 a 01 frail 0 006 ^ 00705891 a 0000 ^ 02324397 a 0000 + 14547643 n 0105 ! 02037708 a 0101 & 02040233 a 0000 & 02040519 a 0000 | physically weak; "an invalid's frail body" -02040233 00 s 08 decrepit 0 debile 0 feeble 0 infirm 0 rickety 0 sapless 0 weak 0 weakly 0 005 & 02040049 a 0000 + 05040275 n 0701 + 14547643 n 0401 + 14547643 n 0304 + 14547643 n 0203 | lacking bodily or muscular strength or vitality; "a feeble old woman"; "her body looked sapless" -02040519 00 s 01 light-boned 0 001 & 02040049 a 0000 | having a bone structure that is light with respect to the surrounding flesh -02040652 00 a 02 round 0 circular 0 023 ^ 02043898 a 0000 + 00573571 v 0201 + 13873502 n 0201 + 05073559 n 0201 + 05072911 n 0101 ! 02043217 a 0101 & 02041134 a 0000 & 02041229 a 0000 & 02041711 a 0000 & 02041807 a 0000 & 02041940 a 0000 & 02042078 a 0000 & 02042183 a 0000 & 02042267 a 0000 & 02042411 a 0000 & 02042503 a 0000 & 02042599 a 0000 & 02042687 a 0000 & 02042775 a 0000 & 02042872 a 0000 & 02042970 a 0000 & 02043051 a 0000 & 02043142 a 0000 | having a circular shape -02041134 00 s 01 apple-shaped 0 001 & 02040652 a 0000 | having the general shape of an apple -02041229 00 s 07 ball-shaped 0 global 0 globose 0 globular 0 orbicular 1 spheric 0 spherical 0 013 & 02040652 a 0000 + 05073131 n 0702 + 13898899 n 0701 + 04274530 n 0701 + 13898899 n 0601 + 13899200 n 0601 + 04274530 n 0601 + 05073131 n 0601 + 13899404 n 0402 + 03440512 n 0401 + 05073131 n 0404 + 05073131 n 0303 + 13899404 n 0202 | having the shape of a sphere or ball; "a spherical object"; "nearly orbicular in shape"; "little globular houses like mud-wasp nests"- Zane Grey -02041711 00 s 01 barrel-shaped 0 001 & 02040652 a 0000 | having the general shape of a barrel -02041807 00 s 03 bulblike 0 bulbous 0 bulb-shaped 0 003 & 02040652 a 0000 + 02915480 n 0201 + 13864035 n 0101 | shaped like a bulb -02041940 00 s 01 capitate 0 003 & 02040652 a 0000 ;c 06037666 n 0000 + 05273223 n 0101 | being abruptly enlarged and globose at the tip -02042078 00 s 01 coccoid 0 001 & 02040652 a 0000 | spherical; like a coccus; "a coccoid microorganism" -02042183 00 s 01 cumuliform 0 001 & 02040652 a 0000 | shaped like a cumulus cloud -02042267 00 s 06 discoid 0 discoidal 0 disklike 0 disclike 0 disk-shaped 0 disc-shaped 0 001 & 02040652 a 0000 | having a flat circular shape -02042411 00 s 01 goblet-shaped 0 001 & 02040652 a 0000 | resembling the shape of a goblet -02042503 00 s 02 moonlike 0 moon-round 0 001 & 02040652 a 0000 | resembling the moon in shape -02042599 00 s 01 nutlike 0 001 & 02040652 a 0000 | resembling a nut in shape and size -02042687 00 s 01 pancake-like 0 001 & 02040652 a 0000 | resembling a pancake in shape -02042775 00 s 01 pear-shaped 0 001 & 02040652 a 0000 | having a round shape tapered at one end -02042872 00 s 01 pinwheel-shaped 0 001 & 02040652 a 0000 | having the round shape of a pinwheel -02042970 00 s 01 ringlike 0 001 & 02040652 a 0000 | having the shape of a ring -02043051 00 s 01 roundish 0 001 & 02040652 a 0000 | somewhat round in appearance or form -02043142 00 s 01 wheel-like 0 001 & 02040652 a 0000 | round like a wheel -02043217 00 a 01 square 0 007 ^ 02047807 a 0000 + 05072406 n 0101 ! 02040652 a 0101 & 02043499 a 0000 & 02043587 a 0000 & 02043729 a 0000 & 02043806 a 0000 | having four equal sides and four right angles or forming a right angle; "a square peg in a round hole"; "a square corner" -02043499 00 s 01 quadrate 0 001 & 02043217 a 0000 | having four sides and four angles -02043587 00 s 01 right-angled 0 001 & 02043217 a 0000 | forming a right angle or containing one or more right angles; "a right-angled bend" -02043729 00 s 01 squared 0 001 & 02043217 a 0000 | having been made square -02043806 00 s 01 squarish 0 001 & 02043217 a 0000 | somewhat square in appearance or form -02043898 00 a 01 rounded 0 034 ^ 02317327 a 0000 ^ 00986027 a 0000 ^ 02049918 a 0000 ^ 02050116 a 0000 ^ 02040652 a 0000 + 05070453 n 0101 ! 02047807 a 0101 & 02044642 a 0000 & 02044736 a 0000 & 02044860 a 0000 & 02045008 a 0000 & 02045144 a 0000 & 02045255 a 0000 & 02045345 a 0000 & 02045473 a 0000 & 02045620 a 0000 & 02045723 a 0000 & 02045894 a 0000 & 02046017 a 0000 & 02046115 a 0000 & 02046199 a 0000 & 02046446 a 0000 & 02046625 a 0000 & 02046736 a 0000 & 02046828 a 0000 & 02046916 a 0000 & 02047051 a 0000 & 02047160 a 0000 & 02047252 a 0000 & 02047335 a 0000 & 02047413 a 0000 & 02047496 a 0000 & 02047603 a 0000 & 02047726 a 0000 | curving and somewhat round in shape rather than jagged; "low rounded hills"; "rounded shoulders" -02044642 00 s 02 allantoid 0 sausage-shaped 0 001 & 02043898 a 0000 | shaped like a sausage -02044736 00 s 04 almond-shaped 0 amygdaliform 0 amygdaloid 0 amygdaloidal 0 001 & 02043898 a 0000 | shaped like an almond -02044860 00 s 07 annular 0 annulate 0 annulated 0 circinate 0 ringed 0 ring-shaped 0 doughnut-shaped 0 001 & 02043898 a 0000 | shaped like a ring -02045008 00 s 02 aspheric 0 aspherical 0 002 & 02043898 a 0000 ;c 06100778 n 0000 | varying slightly from a perfectly spherical shape -02045144 00 s 03 auriform 0 ear-shaped 0 ear-like 0 001 & 02043898 a 0000 | having a shape resembling an ear -02045255 00 s 01 bean-shaped 0 001 & 02043898 a 0000 | having a shape resembling a bean -02045345 00 s 01 bowfront 0 001 & 02043898 a 0000 | having an outward curving front; "a bowfront dresser"; "a bowfront house" -02045473 00 s 04 crescent(a) 0 crescent-shaped 0 semilunar 0 lunate 0 002 & 02043898 a 0000 + 13896217 n 0101 | resembling the new moon in shape -02045620 00 s 02 cycloid 0 cycloidal 0 002 & 02043898 a 0000 + 13908777 n 0201 | resembling a circle -02045723 00 s 02 cylindrical 0 cylindric 0 005 & 02043898 a 0000 + 13865298 n 0201 + 13899804 n 0201 + 05073403 n 0102 + 05073403 n 0101 | having the form of a cylinder -02045894 00 s 01 disciform 0 001 & 02043898 a 0000 | having a round or oval shape like a disc; "a disciform skin lesion" -02046017 00 s 02 domed 0 vaulted 0 001 & 02043898 a 0000 | having a hemispherical vault or dome -02046115 00 s 01 dome-shaped 0 001 & 02043898 a 0000 | having the shape of a dome -02046199 00 s 09 egg-shaped 0 elliptic 0 elliptical 0 oval 0 oval-shaped 0 ovate 0 oviform 0 ovoid 0 prolate 0 006 & 02043898 a 0000 + 13915023 n 0801 + 13878306 n 0402 + 13878306 n 0301 + 13878306 n 0201 + 05070622 n 0202 | rounded like an egg -02046446 00 s 03 ellipsoid 0 ellipsoidal 0 spheroidal 0 004 & 02043898 a 0000 + 13898645 n 0301 + 13897198 n 0201 + 13897198 n 0101 | having the nature or shape of an ellipsoid -02046625 00 s 01 hyperboloidal 0 002 & 02043898 a 0000 + 13896854 n 0101 | having the shape of a hyperboloid -02046736 00 s 02 lingulate 0 tongue-shaped 0 001 & 02043898 a 0000 | shaped like a tongue -02046828 00 s 02 olivelike 0 olive-like 0 001 & 02043898 a 0000 | resembling an olive -02046916 00 s 02 parabolic 0 parabolical 0 003 & 02043898 a 0000 + 13886371 n 0201 + 13886371 n 0101 | having the form of a parabola -02047051 00 s 01 paraboloidal 0 002 & 02043898 a 0000 + 13897002 n 0101 | having the shape of a paraboloid -02047160 00 s 01 pillar-shaped 0 001 & 02043898 a 0000 | shaped like a cylindrical pillar -02047252 00 s 01 pineal 0 001 & 02043898 a 0000 | having the form of a pine cone -02047335 00 s 01 plumlike 0 001 & 02043898 a 0000 | resembling a plum fruit -02047413 00 s 02 rod-shaped 0 rodlike 0 001 & 02043898 a 0000 | resembling a rod -02047496 00 s 01 rotund 0 003 & 02043898 a 0000 + 05073131 n 0106 + 05073131 n 0105 | spherical in shape -02047603 00 s 01 terete 0 002 & 02043898 a 0000 ;c 06066555 n 0000 | especially of plant parts; cylindrical and tapering -02047726 00 s 01 umbrellalike 0 001 & 02043898 a 0000 | resembling an umbrella -02047807 00 a 02 angular 0 angulate 0 020 ^ 01809655 a 0000 ^ 02043217 a 0000 + 13887509 n 0201 + 13887509 n 0101 + 13864763 n 0102 + 05070849 n 0101 ! 02043898 a 0101 & 02048247 a 0000 & 02048344 a 0000 & 02048449 a 0000 & 02048626 a 0000 & 02048794 a 0000 & 02048875 a 0000 & 02048977 a 0000 & 02049147 a 0000 & 02049243 a 0000 & 02049323 a 0000 & 02049428 a 0000 & 02049648 a 0000 & 02049812 a 0000 | having angles or an angular shape -02048247 00 s 01 angled 0 001 & 02047807 a 0000 | forming or set at an angle; "angled parking" -02048344 00 s 02 asteroid 0 star-shaped 0 002 & 02047807 a 0000 + 09208702 n 0101 | shaped like a star -02048449 00 s 02 bicuspid 0 bicuspidate 0 002 & 02047807 a 0000 + 05307358 n 0102 | having two cusps or points (especially a molar tooth); "bicuspid teeth"; "bicuspid leaves" -02048626 00 s 06 cuspate 0 cuspated 0 cusped 0 cuspidal 0 cuspidate 0 cuspidated 0 003 & 02047807 a 0000 + 03151916 n 0401 + 05307091 n 0406 | having cusps or points -02048794 00 s 01 equiangular 0 001 & 02047807 a 0000 | having all angles equal -02048875 00 s 01 isogonic 0 002 & 02047807 a 0000 + 13866515 n 0101 | having or making equal angles -02048977 00 s 01 rectangular 0 003 & 02047807 a 0000 + 13883346 n 0101 + 05071869 n 0101 | having four right angles; "a rectangular figure twice as long as it is wide" -02049147 00 s 02 sharp-cornered 0 sharp-angled 0 001 & 02047807 a 0000 | having sharp corners -02049243 00 s 01 square-shaped 0 001 & 02047807 a 0000 | shaped like a square -02049323 00 s 01 three-cornered 0 001 & 02047807 a 0000 | having three corners; "a three-cornered hat" -02049428 00 s 01 triangular 0 003 & 02047807 a 0000 + 13879320 n 0101 + 05072523 n 0101 | having three angles; forming or shaped like a triangle; "a triangular figure"; "a triangular pyrimid has a triangle for a base" -02049648 00 s 02 tricuspid 0 tricuspidate 0 001 & 02047807 a 0000 | having three cusps or points (especially a molar tooth); "tricuspid molar"; "tricuspid valve" -02049812 00 s 01 unicuspid 0 001 & 02047807 a 0000 | having a single cusp or point; "a unicuspid tooth" -02049918 00 a 02 oblate 0 pumpkin-shaped 0 003 ^ 02043898 a 0000 + 05070622 n 0101 ! 02050116 a 0101 | having the equatorial diameter greater than the polar diameter; being flattened at the poles -02050116 00 a 02 prolate 0 watermelon-shaped 0 003 ^ 02043898 a 0000 ! 02049918 a 0101 & 02050368 a 0000 | having the polar diameter greater than the equatorial diameter; "a prolate spheroid is generated by revolving an ellipse about its major axis" -02050368 00 s 01 cucumber-shaped 0 001 & 02050116 a 0000 | shaped like a cucumber -02050452 00 a 01 rural 0 011 + 04920237 n 0101 ! 02052333 a 0101 & 02050841 a 0000 & 02051013 a 0000 & 02051179 a 0000 & 02051500 a 0000 & 02051616 a 0000 & 02051788 a 0000 & 02051881 a 0000 & 02052005 a 0000 & 02052197 a 0000 | living in or characteristic of farming or country life; "rural people"; "large rural households"; "unpaved rural roads"; "an economy that is basically rural" -02050841 00 s 03 agrarian 0 agricultural 0 farming(a) 0 001 & 02050452 a 0000 | relating to rural matters; "an agrarian (or agricultural) society"; "farming communities" -02051013 00 s 02 agrestic 0 rustic 0 002 & 02050452 a 0000 + 04816125 n 0201 | characteristic of the fields or country; "agrestic simplicity"; "rustic stone walls" -02051179 00 s 03 arcadian 0 bucolic 1 pastoral 0 004 & 02050452 a 0000 + 06377275 n 0301 + 07043824 n 0302 + 09711754 n 0101 | (used with regard to idealized country life) idyllically rustic; "a country life of arcadian contentment"; "a pleasant bucolic scene"; "charming in its pastoral setting"; "rustic tranquility" -02051500 00 s 01 campestral 0 001 & 02050452 a 0000 | of fields or open country; "living in campestral seclusion" -02051616 00 s 03 countrified 0 countryfied 0 rustic 2 002 & 02050452 a 0000 + 04816125 n 0301 | characteristic of rural life; "countrified clothes"; "rustic awkwardness" -02051788 00 s 01 country-bred 0 001 & 02050452 a 0000 | rough and uncouth; "a country boy" -02051881 00 s 01 country-style 0 001 & 02050452 a 0000 | typical of the country; "country-style sausage"; "country music" -02052005 00 s 03 cracker-barrel 0 folksy 0 homespun 0 001 & 02050452 a 0000 | characteristic of country life; "cracker-barrel philosophy"; "folksy humor"; "the air of homespun country boys" -02052197 00 s 01 hobnailed 0 001 & 02050452 a 0000 | marked by the wearing of heavy boots studded with hobnails; "hobnailed laborers" -02052333 00 a 01 urban 0 007 + 00500055 v 0101 + 00499812 v 0101 + 04816302 n 0101 ! 02050452 a 0101 & 02052603 a 0000 & 02052757 a 0000 & 02052830 a 0000 | located in or characteristic of a city or city life; "urban property owners"; "urban affairs"; "urban manners" -02052603 00 s 04 citified 0 cityfied 0 city-bred 0 city-born 0 001 & 02052333 a 0000 | being or having the customs or manners or dress of a city person -02052757 00 s 01 city-like 0 001 & 02052333 a 0000 | resembling a city -02052830 00 s 02 urbanized 0 urbanised 0 001 & 02052333 a 0000 | made urban in nature; taking on urban characteristics; "the urbanized Eastern states" -02052983 00 a 01 rusted 0 002 ! 02053253 a 0101 & 02053094 a 0000 | having accumulated rust; "rusted hinges" -02053094 00 s 01 rusty 0 003 & 02052983 a 0000 + 14579365 n 0101 + 14889479 n 0101 | covered with or consisting of rust; "a rusty machine"; "rusty deposits" -02053253 00 a 01 rustless 0 005 ! 02052983 a 0101 & 02053392 a 0000 & 02053460 a 0000 & 02053553 a 0000 & 02053631 a 0000 | without rust -02053392 00 s 01 rust-free 0 001 & 02053253 a 0000 | free of rust -02053460 00 s 02 rustproof 0 rustproofed 0 001 & 02053253 a 0000 | treated against rusting -02053553 00 s 01 rust-resistant 0 001 & 02053253 a 0000 | resistant to rust -02053631 00 s 02 undercoated 0 undersealed 0 002 & 02053253 a 0000 ;c 03791235 n 0000 | (of motor vehicles) having a coating of tar or other rustproof material applied to the underside -02053818 00 a 01 holy 0 009 ^ 00573225 a 0000 ^ 02055062 a 0000 = 04855138 n 0000 + 04855138 n 0101 ! 02054779 a 0101 & 02054075 a 0000 & 02054216 a 0000 & 02054310 a 0000 & 02054610 a 0000 | belonging to or derived from or associated with a divine power -02054075 00 s 02 beatified 0 blessed 1 001 & 02053818 a 0000 | Roman Catholic; proclaimed one of the blessed and thus worthy of veneration -02054216 00 s 01 Blessed 2 001 & 02053818 a 0000 | worthy of worship; "the Blessed Trinity" -02054310 00 s 03 consecrated 0 sacred 0 sanctified 0 002 & 02053818 a 0000 + 04855332 n 0201 | made or declared or believed to be holy; devoted to a deity or some religious ceremony or use; "a consecrated church"; "the sacred mosque"; "sacred elephants"; "sacred bread and wine"; "sanctified wine" -02054610 00 s 02 hallowed 0 sacred 2 002 & 02053818 a 0000 + 04855332 n 0201 | worthy of religious veneration; "the sacred name of Jesus"; "Jerusalem's hallowed soil" -02054779 00 a 02 unholy 0 unhallowed 0 004 = 04855138 n 0000 + 04855840 n 0101 ! 02053818 a 0101 & 02054926 a 0000 | not hallowed or consecrated -02054926 00 s 03 profane 0 unconsecrated 0 unsanctified 0 001 & 02054779 a 0000 | not holy because unconsecrated or impure or defiled -02055062 00 a 01 sacred 0 015 ^ 00573225 a 0000 ^ 01178974 a 0000 ^ 01781478 a 0000 + 04855332 n 0101 ! 02056880 a 0101 & 02055460 a 0000 & 02055617 a 0000 & 02055773 a 0000 & 02055900 a 0000 & 02056001 a 0000 & 02056165 a 0000 & 02056265 a 0000 & 02056566 a 0000 & 02056663 a 0000 & 02056761 a 0000 | concerned with religion or religious purposes; "sacred texts"; "sacred rites"; "sacred music" -02055460 00 s 01 divine 0 002 & 02055062 a 0000 + 04854976 n 0101 | devoted to or in the service or worship of a deity; "divine worship"; "divine liturgy" -02055617 00 s 04 ineffable 0 unnameable 0 unspeakable 0 unutterable 0 001 & 02055062 a 0000 | too sacred to be uttered; "the ineffable name of the Deity" -02055773 00 s 01 inspirational 0 002 & 02055062 a 0000 + 05686690 n 0102 | imparting a divine influence on the mind and soul -02055900 00 s 03 inviolable 0 inviolate 0 sacrosanct 0 001 & 02055062 a 0000 | must be kept sacred -02056001 00 s 01 numinous 0 002 & 02055062 a 0000 + 10366484 n 0101 | evincing the presence of a deity; "a numinous wood"; "the most numinous moment in the Mass" -02056165 00 s 01 quasi-religious 0 001 & 02055062 a 0000 | resembling something that is religious -02056265 00 s 02 religious 0 spiritual 0 004 & 02055062 a 0000 + 04826999 n 0102 + 08081668 n 0101 + 04827175 n 0101 | concerned with sacred matters or religion or the church; "religious texts"; "a member of a religious order"; "lords temporal and spiritual"; "spiritual leaders"; "spiritual songs" -02056566 00 s 02 reverend 0 sublime 0 001 & 02055062 a 0000 | worthy of adoration or reverence -02056663 00 s 01 sacral 0 001 & 02055062 a 0000 | of or relating to sacred rites; "sacral laws" -02056761 00 s 02 taboo 0 tabu 0 001 & 02055062 a 0000 | forbidden to profane use especially in South Pacific islands -02056880 00 a 02 profane 0 secular 5 007 ^ 01180695 a 0000 ^ 01782519 a 0000 ^ 02577061 a 0000 + 06207874 n 0101 ! 02055062 a 0101 & 02057226 a 0000 & 02057444 a 0000 | not concerned with or devoted to religion; "sacred and profane music"; "secular drama"; "secular architecture", "children being brought up in an entirely profane environment" -02057226 00 s 03 laic 0 lay 0 secular 6 002 & 02056880 a 0000 + 08153102 n 0201 | characteristic of those who are not members of the clergy; "set his collar in laic rather than clerical position"; "the lay ministry" -02057444 00 s 01 profanatory 0 001 & 02056880 a 0000 | profaning or tending to desecrate -02057535 00 a 01 sadistic 0 002 + 07493830 n 0101 ! 02057681 a 0101 | deriving pleasure or sexual gratification from inflicting pain on another -02057681 00 a 01 masochistic 0 002 + 07494175 n 0101 ! 02057535 a 0101 | deriving pleasure or sexual gratification from being abused or dominated -02057829 00 a 01 safe 1 010 ^ 01159655 a 0000 ^ 02525206 a 0000 ^ 02093888 a 0000 ^ 01319182 a 0000 + 04856308 n 0101 ! 02058794 a 0101 & 02058148 a 0000 & 02058379 a 0000 & 02058529 a 0000 & 02058656 a 0000 | free from danger or the risk of harm; "a safe trip"; "you will be safe here"; "a safe place"; "a safe bet" -02058148 00 s 01 fail-safe 0 001 & 02057829 a 0000 | eliminating danger by compensating automatically for a failure or malfunction; "a fail-safe device in a nuclear weapon to deactivate it automatically in the event of accident" -02058379 00 s 01 off_the_hook(p) 0 001 & 02057829 a 0000 | freed from danger or blame or obligation; "I let him off the hook with a mild reprimand" -02058529 00 s 03 risk-free 0 riskless 0 unhazardous 0 002 & 02057829 a 0000 + 14538908 n 0201 | thought to be devoid of risk -02058656 00 s 02 safe_and_sound 0 unhurt 0 001 & 02057829 a 0000 | free from danger or injury; "the children were found safe and sound" -02058794 00 a 02 dangerous 0 unsafe 0 016 ^ 02094755 a 0000 ^ 02523275 a 0000 + 14541044 n 0101 + 08644213 n 0101 + 04856460 n 0101 ! 02057829 a 0101 & 02059280 a 0000 & 02059381 a 0000 & 02059626 a 0000 & 02059811 a 0000 & 02060106 a 0000 & 02060198 a 0000 & 02060359 a 0000 & 02060496 a 0000 & 02060912 a 0000 & 02061126 a 0000 | involving or causing danger or risk; liable to hurt or harm; "a dangerous criminal"; "a dangerous bridge"; "unemployment reached dangerous proportions" -02059280 00 s 01 breakneck 0 001 & 02058794 a 0000 | moving at very high speed; "a breakneck pace" -02059381 00 s 04 chancy 0 chanceful 0 dicey 0 dodgy 0 002 & 02058794 a 0000 + 00802629 n 0101 | of uncertain outcome; especially fraught with risk; "an extremely dicey future on a brave new world of liquid nitrogen, tar, and smog"- New Yorker -02059626 00 s 01 desperate 1 001 & 02058794 a 0000 | (of persons) dangerously reckless or violent as from urgency or despair; "a desperate criminal"; "taken hostage of desperate men" -02059811 00 s 03 hazardous 0 risky 0 wild 0 006 & 02058794 a 0000 + 14541852 n 0204 + 00802238 n 0201 + 14543552 n 0201 + 14541852 n 0101 + 14541538 n 0101 | involving risk or danger; "skydiving is a hazardous sport"; "extremely risky going out in the tide and fog"; "a wild financial scheme" -02060106 00 s 01 insidious 0 002 & 02058794 a 0000 + 04880138 n 0101 | intended to entrap -02060198 00 s 01 mordacious 0 002 & 02058794 a 0000 + 04943367 n 0101 | biting or given to biting; "they deliberately gave me a skittish and mordacious mount" -02060359 00 s 01 on_the_hook(p) 0 001 & 02058794 a 0000 | caught in a difficult or dangerous situation; "there I was back on the hook" -02060496 00 s 04 parlous 0 perilous 0 precarious 0 touch-and-go 0 006 & 02058794 a 0000 + 04856621 n 0301 + 14543552 n 0202 + 14541852 n 0203 + 00802238 n 0202 + 14541538 n 0202 | fraught with danger; "dangerous waters"; "a parlous journey on stormy seas"; "a perilous voyage across the Atlantic in a small boat"; "the precarious life of an undersea diver"; "dangerous surgery followed by a touch-and-go recovery" -02060912 00 s 02 self-destructive 0 suicidal 0 002 & 02058794 a 0000 + 00222485 n 0201 | dangerous to yourself or your interests; "suicidal impulses"; "a suicidal corporate takeover strategy"; "a kamikaze pilot" -02061126 00 s 02 treacherous 0 unreliable 0 002 & 02058794 a 0000 + 04671394 n 0204 | dangerously unstable and unpredictable; "treacherous winding roads"; "an unreliable trestle" -02061307 00 a 01 safe(p) 2 002 ;c 00471613 n 0000 ! 02061487 a 0101 | having reached a base without being put out; "the runner was called safe when the baseman dropped the ball" -02061487 00 a 01 out(p) 2 003 ;c 00471613 n 0000 ! 02061307 a 0101 & 02061678 a 0000 | not allowed to continue to bat or run; "he was tagged out at second on a close play"; "he fanned out" -02061678 00 s 01 down(p) 0 001 & 02061487 a 0000 | being put out by a strikeout; "two down in the bottom of the ninth" -02061799 00 a 02 salable 0 saleable 0 005 + 04732237 n 0102 + 04732237 n 0101 ! 02062358 a 0101 & 02061998 a 0000 & 02062133 a 0000 | capable of being sold; fit for sale; "saleable at a low price" -02061998 00 s 01 marketable 1 002 & 02061799 a 0000 + 00470386 v 0103 | being in demand by especially employers; "marketable skills" -02062133 00 s 05 marketable 2 merchantable 0 sellable 0 vendable 0 vendible 0 005 & 02061799 a 0000 + 02302817 v 0505 + 02302817 v 0405 + 02298160 v 0101 + 00470386 v 0103 | fit to be offered for sale; "marketable produce" -02062358 00 a 02 unsalable 0 unsaleable 0 003 ! 02061799 a 0101 & 02062481 a 0000 & 02062565 a 0000 | impossible to sell -02062481 00 s 01 unmarketable 1 001 & 02062358 a 0000 | not capable of being sold -02062565 00 s 03 unmarketable 2 unmerchantable 0 unvendible 0 001 & 02062358 a 0000 | not fit for sale -02062670 00 a 01 same 0 015 ^ 00889831 a 0000 ^ 01409581 a 0000 ^ 02071420 a 0000 ^ 02507968 a 0000 = 04742535 n 0000 + 04742535 n 0101 ! 02064745 a 0101 & 02063279 a 0000 & 02063554 a 0000 & 02063759 a 0000 & 02063903 a 0000 & 02064013 a 0000 & 02064127 a 0000 & 02064427 a 0000 & 02064537 a 0000 | closely similar or comparable in kind or quality or quantity or degree; "curtains the same color as the walls"; "two girls of the same age"; "mother and son have the same blue eyes"; "animals of the same species"; "the same rules as before"; "two boxes having the same dimensions"; "the same day next year" -02063279 00 s 01 assonant 0 004 & 02062670 a 0000 ;c 07096661 n 0000 + 02750642 v 0101 + 07097346 n 0101 | having the same sound (especially the same vowel sound) occurring in successive stressed syllables; "note the assonant words and syllables in `tilting at windmills'" -02063554 00 s 03 comparable 0 corresponding 0 like 0 002 & 02062670 a 0000 + 04744814 n 0301 | conforming in every respect; "boxes with corresponding dimensions"; "the like period of the preceding year" -02063759 00 s 01 cookie-cutter 0 001 & 02062670 a 0000 | having the same appearance (as if mass-produced); "a suburb of cookie-cutter houses" -02063903 00 s 01 duplicate 0 001 & 02062670 a 0000 | identically copied from an original; "a duplicate key" -02064013 00 s 01 homophonic 0 003 & 02062670 a 0000 + 07131366 n 0101 + 07131169 n 0101 | having the same sound -02064127 00 s 02 identical 0 indistinguishable 0 004 & 02062670 a 0000 + 04743024 n 0203 + 04743024 n 0101 + 04743024 n 0102 | exactly alike; incapable of being perceived as different; "rows of identical houses"; "cars identical except for their license plates"; "they wore indistinguishable hats" -02064427 00 s 01 one(a) 0 001 & 02062670 a 0000 | of the same kind or quality; "two animals of one species" -02064537 00 s 02 synoptic 0 synoptical 0 001 & 02062670 a 0000 | presenting or taking the same point of view; used especially with regard to the first three gospels of the New Testament; "synoptic sayings" -02064745 00 a 01 different 0 021 ^ 02073113 a 0000 ^ 00508192 a 0000 ^ 01410363 a 0000 ^ 02506555 a 0000 = 04748836 n 0000 + 04748836 n 0101 + 02666239 v 0101 ! 02062670 a 0101 & 02065404 a 0000 & 02065665 a 0000 & 02065958 a 0000 & 02066142 a 0000 & 02066312 a 0000 & 02066662 a 0000 & 02066836 a 0000 & 02067063 a 0000 & 02067491 a 0000 & 02067719 a 0000 & 02067913 a 0000 & 02068174 a 0000 & 02068277 a 0000 | unlike in nature or quality or form or degree; "took different approaches to the problem"; "came to a different conclusion"; "different parts of the country"; "on different sides of the issue"; "this meeting was different from the earlier one" -02065404 00 s 02 antithetic 0 antithetical 0 004 & 02064745 a 0000 + 13855230 n 0201 + 13855230 n 0101 + 07101406 n 0101 | sharply contrasted in character or purpose; "practices entirely antithetical to her professed beliefs"; "hope is antithetic to despair" -02065665 00 s 02 assorted 0 various 2 001 & 02064745 a 0000 | of many different kinds purposefully arranged but lacking any uniformity; "assorted sizes"; "his disguises are many and various"; "various experiments have failed to disprove the theory"; "cited various reasons for his behavior" -02065958 00 s 01 contrary 0 001 & 02064745 a 0000 | very opposed in nature or character or purpose; "acts contrary to our code of ethics"; "the facts point to a contrary conclusion" -02066142 00 s 02 contrasting 0 contrastive 0 002 & 02064745 a 0000 + 02666882 v 0201 | strikingly different; tending to contrast; "contrasting (or contrastive) colors" -02066312 00 s 04 diametric 2 diametrical 2 opposite 0 polar 0 004 & 02064745 a 0000 + 05950559 n 0401 + 13856110 n 0402 + 13854649 n 0302 | characterized by opposite extremes; completely opposed; "in diametric contradiction to his claims"; "diametrical (or opposite) points of view"; "opposite meanings"; "extreme and indefensible polar positions" -02066662 00 s 01 divergent 0 004 & 02064745 a 0000 + 01004072 n 0102 + 04749709 n 0103 + 02661252 v 0103 | diverging from another or from a standard; "a divergent opinion" -02066836 00 s 01 disparate 0 003 & 02064745 a 0000 + 04750414 n 0101 + 04752530 n 0101 | fundamentally different or distinct in quality or kind; "such disparate attractions as grand opera and game fishing"; "disparate ideas" -02067063 00 s 02 distinct 0 distinguishable 0 002 & 02064745 a 0000 + 04742766 n 0102 | (often followed by `from') not alike; different in nature or quality; "plants of several distinct types"; "the word `nationalism' is used in at least two distinct senses"; "gold is distinct from iron"; "a tree related to but quite distinct from the European beech"; "management had interests quite distinct from those of their employees" -02067491 00 s 02 diverse 0 various 0 002 & 02064745 a 0000 + 04751305 n 0102 | distinctly dissimilar or unlike; "celebrities as diverse as Bob Hope and Bob Dylan"; "animals as various as the jaguar and the cavy and the sloth" -02067719 00 s 02 divers(a) 0 diverse 2 003 & 02064745 a 0000 + 04751305 n 0201 + 04751305 n 0202 | many and different; "tourist offices of divers nationalities"; "a person of diverse talents" -02067913 00 s 01 opposite 2 002 & 02064745 a 0000 + 13854649 n 0102 | altogether different in nature or quality or significance; "the medicine's effect was opposite to that intended"; "it is said that opposite characters make a union happiest"- Charles Reade -02068174 00 s 01 several(p) 0 001 & 02064745 a 0000 | distinct and individual; "three several times" -02068277 00 s 01 variant 0 006 & 02064745 a 0000 + 07366627 n 0103 + 00194969 n 0102 + 02662297 v 0101 + 02661252 v 0102 + 00123170 v 0103 | differing from a norm or standard; "a variant spelling" -02068476 00 a 01 same 2 003 ! 02069355 a 0101 & 02068730 a 0000 & 02068946 a 0000 | same in identity; "the same man I saw yesterday"; "never wore the same dress twice"; "this road is the same one we were on yesterday"; "on the same side of the street" -02068730 00 s 03 aforesaid(a) 0 aforementioned(a) 0 said(a) 0 001 & 02068476 a 0000 | being the one previously mentioned or spoken of; "works of all the aforementioned authors"; "said party has denied the charges" -02068946 00 s 03 identical 0 selfsame(a) 0 very(a) 0 004 & 02068476 a 0000 + 04743486 n 0201 + 04743024 n 0101 + 04743024 n 0102 | being the exact same one; not any other:; "this is the identical room we stayed in before"; "the themes of his stories are one and the same"; "saw the selfsame quotation in two newspapers"; "on this very spot"; "the very thing he said yesterday"; "the very man I want to see" -02069355 00 a 01 other 0 011 ^ 02109678 a 0000 = 04742766 n 0000 ! 02068476 a 0101 & 02070030 a 0000 & 02070188 a 0000 & 02070342 a 0000 & 02070491 a 0000 & 02070711 a 0000 & 02070887 a 0000 & 02071139 a 0000 & 02071301 a 0000 | not the same one or ones already mentioned or implied; "today isn't any other day"- the White Queen; "the construction of highways and other public works"; "he asked for other employment"; "any other person would tell the truth"; "his other books are still in storage"; "then we looked at the other house"; "hearing was good in his other ear"; "the other sex"; "she lived on the other side of the street from me"; "went in the other direction" -02070030 00 s 01 different 0 002 & 02069355 a 0000 + 02666239 v 0101 | distinctly separate from the first; "that's another (or different) issue altogether" -02070188 00 s 02 another(a) 0 some_other 0 001 & 02069355 a 0000 | any of various alternatives; some other; "put it off to another (or some other) day" -02070342 00 s 01 different 1 002 & 02069355 a 0000 + 02666239 v 0101 | distinct or separate; "each interviewed different members of the community" -02070491 00 s 01 new(a) 0 001 & 02069355 a 0000 | other than the former one(s); different; "they now have a new leaders"; "my new car is four years old but has only 15,000 miles on it"; "ready to take a new direction" -02070711 00 s 01 opposite 0 001 & 02069355 a 0000 | the other one of a complementary pair; "the opposite sex"; "the two chess kings are set up on squares of opposite colors" -02070887 00 s 01 opposite 1 001 & 02069355 a 0000 | being directly across from each other; facing; "And I on the opposite shore will be, ready to ride and spread the alarm"- Longfellow; "we lived on opposite sides of the street"; "at opposite poles" -02071139 00 s 01 opposite 2 001 & 02069355 a 0000 | moving or facing away from each other; "looking in opposite directions"; "they went in opposite directions" -02071301 00 s 01 otherwise 0 001 & 02069355 a 0000 | other than as supposed or expected; "the outcome was otherwise" -02071420 00 a 01 similar 0 011 ^ 02062670 a 0000 = 04743605 n 0000 + 04743605 n 0101 ! 02073113 a 0101 & 02071782 a 0000 & 02071973 a 0000 & 02072341 a 0000 & 02072537 a 0000 & 02072660 a 0000 & 02072806 a 0000 & 02072923 a 0000 | marked by correspondence or resemblance; "similar food at similar prices"; "problems similar to mine"; "they wore similar coats" -02071782 00 s 02 akin(p) 0 kindred 0 001 & 02071420 a 0000 | similar in quality or character; "a feeling akin to terror"; "kindred souls"; "the amateur is closely related to the collector" -02071973 00 s 02 analogous 0 correspondent 0 008 & 02071420 a 0000 + 13817279 n 0202 + 04745240 n 0202 + 02633534 v 0202 + 02699497 v 0203 + 02657219 v 0203 + 05780339 n 0101 + 00651176 n 0101 | similar or equivalent in some respects though otherwise dissimilar; "brains and computers are often considered analogous"; "salmon roe is marketed as analogous to caviar" -02072341 00 s 02 confusable 0 mistakable 0 001 & 02071420 a 0000 | so similar as to be easily identified for another thing; "potentially confusable senses of words"; "easily mistakable signals" -02072537 00 s 01 connatural 0 001 & 02071420 a 0000 | similar in nature; "and mix with our connatural dust"- John Milton -02072660 00 s 01 corresponding 0 001 & 02071420 a 0000 | similar especially in position or purpose; "a number of corresponding diagonal points" -02072806 00 s 01 quasi(a) 0 001 & 02071420 a 0000 | having some resemblance; "a quasi success"; "a quasi contract" -02072923 00 s 01 sympathetic 0 002 & 02071420 a 0000 + 13811900 n 0101 | having similar disposition and tastes; "with their many similar tastes, he found her a most sympathetic companion" -02073113 00 a 01 dissimilar 0 003 = 04743605 n 0000 + 04750164 n 0101 ! 02071420 a 0101 | not similar; "a group of very dissimilar people"; "a pump not dissimilar to those once found on every farm"; "their understanding of the world is not so dissimilar from our own"; "took different (or dissimilar) approaches to the problem" -02073443 00 a 01 sane 0 007 ^ 01925372 a 0000 + 14379501 n 0102 + 14379501 n 0101 ! 02074092 a 0101 & 02073678 a 0000 & 02073834 a 0000 & 02073970 a 0000 | mentally healthy; free from mental disorder; "appears to be completely sane" -02073678 00 s 02 compos_mentis(p) 0 of_sound_mind(p) 0 001 & 02073443 a 0000 | of sound mind, memory, and understanding; in law, competent to go to trial -02073834 00 s 03 in_his_right_mind(p) 0 in_her_right_mind(p) 0 in_their_right_minds(p) 0 001 & 02073443 a 0000 | behaving responsibly -02073970 00 s 01 lucid 0 002 & 02073443 a 0000 + 14379703 n 0101 | having a clear mind; "a lucid moment in his madness" -02074092 00 a 01 insane 0 025 ^ 01926376 a 0000 ^ 01944660 a 0000 + 14395240 n 0103 + 14395018 n 0101 ! 02073443 a 0101 & 02074673 a 0000 & 02074929 a 0000 & 02075321 a 0000 & 02075594 a 0000 & 02075737 a 0000 & 02075847 a 0000 & 02075938 a 0000 & 02076016 a 0000 & 02076234 a 0000 & 02076416 a 0000 & 02076557 a 0000 & 02076713 a 0000 & 02076817 a 0000 & 02076988 a 0000 & 02077157 a 0000 & 02077253 a 0000 & 02077469 a 0000 & 02077625 a 0000 & 02077741 a 0000 & 02077904 a 0000 | afflicted with or characteristic of mental derangement; "was declared insane"; "insane laughter" -02074673 00 s 06 amuck 0 amok 0 berserk 0 demoniac 0 demoniacal 0 possessed(p) 0 002 & 02074092 a 0000 + 10002644 n 0401 | frenzied as if possessed by a demon; "the soldier was completely amuck"; "berserk with grief"; "a berserk worker smashing windows" -02074929 00 s 17 balmy 0 barmy 0 bats 0 batty 0 bonkers 0 buggy 0 cracked 0 crackers 0 daft 0 dotty 0 fruity 0 haywire 0 kooky 0 kookie 0 loco 0 loony 0 loopy 0 nuts 0 nutty 0 round_the_bend 0 around_the_bend 0 wacky 0 whacky 0 004 & 02074092 a 0000 + 10598904 n 1003 + 10240514 n 0d01 + 14397889 n 0902 | informal or slang terms for mentally irregular; "it used to drive my husband balmy" -02075321 00 s 08 brainsick 0 crazy 0 demented 0 disturbed 0 mad 0 sick 0 unbalanced 0 unhinged 0 006 & 02074092 a 0000 + 07950418 n 0601 + 14395240 n 0502 + 14395403 n 0302 + 14391876 n 0201 + 14397889 n 0201 | affected with madness or insanity; "a man who had gone mad" -02075594 00 s 02 certifiable 0 certified 0 002 & 02074092 a 0000 + 00822262 v 0101 | fit to be certified as insane (and treated accordingly) -02075737 00 s 02 crackbrained 0 idiotic 0 001 & 02074092 a 0000 | insanely irresponsible; "an idiotic idea" -02075847 00 s 03 crazed 0 deranged 0 half-crazed 0 001 & 02074092 a 0000 | driven insane -02075938 00 s 02 fey 0 touched(p) 0 001 & 02074092 a 0000 | slightly insane -02076016 00 s 01 hebephrenic 0 002 & 02074092 a 0000 + 14399438 n 0101 | suffering from a form of schizophrenia characterized by foolish mannerisms and senseless laughter along with delusions and regressive behavior -02076234 00 s 02 lunatic 0 moonstruck 0 004 & 02074092 a 0000 ;u 07075172 n 0000 + 14395240 n 0101 + 00512843 n 0105 | insane and believed to be affected by the phases of the moon -02076416 00 s 02 maniacal 0 maniac(p) 0 003 & 02074092 a 0000 + 10290541 n 0201 + 10276764 n 0103 | wildly disordered; "a maniacal frenzy" -02076557 00 s 01 manic-depressive 0 002 & 02074092 a 0000 + 10290684 n 0101 | suffering from a disorder characterized by alternating mania and depression -02076713 00 s 01 maniclike 0 001 & 02074092 a 0000 | resembling the mania of manic-depressive illness -02076817 00 s 03 mentally_ill 0 unsound 0 unstable 0 003 & 02074092 a 0000 + 04775747 n 0302 + 05160173 n 0201 | suffering from severe mental illness; "of unsound mind" -02076988 00 s 02 non_compos_mentis(p) 0 of_unsound_mind(p) 0 001 & 02074092 a 0000 | not of sound mind, memory, or understanding; in law, not competent to go to trial -02077157 00 s 01 paranoid 0 002 & 02074092 a 0000 + 10398370 n 0101 | suffering from paranoia -02077253 00 s 03 psychopathic 0 psychopathologic 0 psychopathological 0 005 & 02074092 a 0000 + 06055946 n 0302 + 06137759 n 0202 + 06055946 n 0202 + 14380140 n 0103 | suffering from an undiagnosed mental disorder -02077469 00 s 01 psychotic 0 004 & 02074092 a 0000 ;c 06043075 n 0000 + 10490141 n 0101 + 14398067 n 0101 | characteristic of or suffering from psychosis -02077625 00 s 02 raving_mad 0 wild 0 001 & 02074092 a 0000 | talking or behaving irrationally; "a raving lunatic" -02077741 00 s 01 schizophrenic 1 003 & 02074092 a 0000 + 10556704 n 0101 + 14398523 n 0101 | suffering from some form of schizophrenia; "schizophrenic patients" -02077904 00 s 02 screw-loose 0 screwy 0 002 & 02074092 a 0000 ;u 07075172 n 0000 | not behaving normally -02078011 00 a 02 satiate 0 satiated 0 003 ! 02078399 a 0101 & 02078153 a 0000 & 02078264 a 0000 | supplied (especially fed) to satisfaction -02078153 00 s 01 jaded 0 001 & 02078011 a 0000 | dulled by surfeit; "the amoral, jaded, bored upper classes" -02078264 00 s 02 satiable 0 satisfiable 0 001 & 02078011 a 0000 | capable of being sated; "a satiable thirst"; "a satiable appetite" -02078399 00 a 03 insatiate 0 insatiable 0 unsatiable 0 004 ! 02078011 a 0101 & 02078673 a 0000 & 02078788 a 0000 & 02078894 a 0000 | impossible to satisfy; "an insatiate appetite"; "an insatiable demand for old buildings to restore"; "his passion for work was unsatiable" -02078673 00 s 02 quenchless 0 unquenchable 0 001 & 02078399 a 0000 | impossible to quench; "unquenchable thirst" -02078788 00 s 03 unsated 0 unsatiated 0 unsatisfied 0 001 & 02078399 a 0000 | not having been satisfied -02078894 00 s 01 unsatisfiable 0 001 & 02078399 a 0000 | not capable of being satisfied; "he knew the trap of unsatisfiable longing" -02079029 00 a 01 sarcastic 0 011 ^ 00647542 a 0000 ^ 01994602 a 0000 = 06777164 n 0000 + 06777164 n 0101 ! 02080488 a 0101 & 02079313 a 0000 & 02079507 a 0000 & 02079732 a 0000 & 02079830 a 0000 & 02080110 a 0000 & 02080318 a 0000 | expressing or expressive of ridicule that wounds -02079313 00 s 05 barbed 0 biting 0 nipping 0 pungent 0 mordacious 0 002 & 02079029 a 0000 + 06776986 n 0401 | capable of wounding; "a barbed compliment"; "a biting aphorism"; "pungent satire" -02079507 00 s 03 black 0 grim 0 mordant 0 002 & 02079029 a 0000 + 04782610 n 0202 | harshly ironic or sinister; "black humor"; "a grim joke"; "grim laughter"; "fun ranging from slapstick clowning ... to savage mordant wit" -02079732 00 s 01 corrosive 0 001 & 02079029 a 0000 | spitefully sarcastic; "corrosive cristism" -02079830 00 s 01 sardonic 0 001 & 02079029 a 0000 | disdainfully or ironically humorous; scornful and mocking; "his rebellion is the bitter, sardonic laughter of all great satirists"- Frank Schoenberner; "a wry pleasure to be...reminded of all that one is missing"- Irwin Edman -02080110 00 s 02 satirical 0 satiric 0 003 & 02079029 a 0000 + 06777164 n 0203 + 06777164 n 0103 | exposing human folly to ridicule; "a persistent campaign of mockery by the satirical fortnightly magazine" -02080318 00 s 01 saturnine 0 001 & 02079029 a 0000 | bitter or scornful; "the face was saturnine and swarthy, and the sensual lips...twisted with disdain"- Oscar Wilde -02080488 00 a 01 unsarcastic 0 002 = 06777164 n 0000 ! 02079029 a 0101 | not sarcastic -02080577 00 a 01 satisfactory 0 013 ^ 00017782 a 0000 ^ 00051045 a 0000 + 04792127 n 0101 + 02671880 v 0101 + 01183573 v 0102 ! 02082218 a 0101 & 02080937 a 0000 & 02081114 a 0000 & 02081492 a 0000 & 02081563 a 0000 & 02081672 a 0000 & 02081933 a 0000 & 02082081 a 0000 | giving satisfaction; "satisfactory living conditions"; "his grades were satisfactory" -02080937 00 s 04 adequate 0 passable 0 fair_to_middling 0 tolerable 0 002 & 02080577 a 0000 + 04792357 n 0102 | about average; acceptable; "more than adequate as a secretary" -02081114 00 s 06 all_right 0 fine 0 o.k. 0 ok 0 okay 0 hunky-dory 0 002 & 02080577 a 0000 ;u 07075172 n 0000 | being satisfactory or in satisfactory condition; "an all-right movie"; "the passengers were shaken up but are all right"; "is everything all right?"; "everything's fine"; "things are okay"; "dinner and the movies had been fine"; "another minute I'd have been fine" -02081492 00 s 01 alright 0 001 & 02080577 a 0000 | nonstandard usage -02081563 00 s 03 comforting 0 cheering 0 satisfying 0 001 & 02080577 a 0000 | providing freedom from worry -02081672 00 s 04 copacetic 0 copasetic 0 copesetic 0 copesettic 0 001 & 02080577 a 0000 | completely satisfactory; "his smile said that everything was copacetic"; "You had to be a good judge of what a man was like, and the English was copacetic"- John O'Hara -02081933 00 s 01 passing(a) 0 001 & 02080577 a 0000 | allowing you to pass (e.g., an examination or inspection) satisfactorily; "a passing grade" -02082081 00 s 01 right 0 001 & 02080577 a 0000 | in or into a satisfactory condition; "things are right again now"; "put things right" -02082218 00 a 01 unsatisfactory 0 008 ^ 00051696 a 0000 ^ 00018584 a 0000 + 04793355 n 0101 ! 02080577 a 0101 & 02082611 a 0000 & 02082812 a 0000 & 02082924 a 0000 & 02083053 a 0000 | not giving satisfaction; "shops should take back unsatisfactory goods"; "her performance proved to be unsatisfactory"; "life is becoming increasingly unsatifactory"; "our discussion was very unsatisfactory" -02082611 00 s 03 disappointing 0 dissatisfactory 0 unsatisfying 0 002 & 02082218 a 0000 + 01816645 v 0201 | not up to expectations; "a disappointing performance from one who had seemed so promising" -02082812 00 s 01 failing 0 001 & 02082218 a 0000 | below acceptable in performance; "received failing grades" -02082924 00 s 01 off 0 001 & 02082218 a 0000 | below a satisfactory level; "an off year for tennis"; "his performance was off" -02083053 00 s 01 unacceptable 0 002 & 02082218 a 0000 + 04793925 n 0102 | not adequate to give satisfaction; "the coach told his players that defeat was unacceptable" -02083222 00 a 01 scalable 0 003 + 05210116 n 0101 ! 02083516 a 0101 & 02083391 a 0000 | capable of being scaled; possible to scale; "the scalable slope of a mountain" -02083391 00 s 03 ascendable 0 ascendible 0 climbable 0 002 & 02083222 a 0000 + 01969216 v 0101 | capable of being ascended -02083516 00 a 02 unscalable 0 unclimbable 0 001 ! 02083222 a 0101 | incapable of being ascended -02083615 00 a 01 scholarly 0 008 ^ 00649586 a 0000 ^ 01332386 a 0000 ^ 01872745 a 0000 + 10557854 n 0101 ! 02084538 a 0101 & 02083908 a 0000 & 02084101 a 0000 & 02084358 a 0000 | characteristic of scholars or scholarship; "scholarly pursuits"; "a scholarly treatise"; "a scholarly attitude" -02083908 00 s 03 academic 0 donnish 0 pedantic 0 003 & 02083615 a 0000 + 06890128 n 0301 + 10411356 n 0301 | marked by a narrow focus on or display of learning especially its trivial aspects -02084101 00 s 02 bookish 0 studious 0 004 & 02083615 a 0000 + 05755883 n 0201 + 04866238 n 0201 + 04866365 n 0101 | characterized by diligent study and fondness for reading; "a bookish farmer who always had a book in his pocket"; "a quiet studious child" -02084358 00 s 02 erudite 0 learned 0 003 & 02083615 a 0000 + 05985999 n 0203 + 05985999 n 0101 | having or showing profound knowledge; "a learned jurist"; "an erudite professor" -02084538 00 a 01 unscholarly 0 004 ^ 01333718 a 0000 ! 02083615 a 0101 & 02084663 a 0000 & 02084735 a 0000 | not scholarly -02084663 00 s 01 unlearned 0 001 & 02084538 a 0000 | not well learned -02084735 00 s 01 unstudious 0 001 & 02084538 a 0000 | not studious -02084804 00 a 01 scientific 0 003 = 05999540 n 0000 ! 02085132 a 0101 & 02084979 a 0000 | conforming with the principles or methods used in science; "a scientific approach" -02084979 00 s 01 technological 0 002 & 02084804 a 0000 + 06125041 n 0104 | based in scientific and industrial progress; "a technological civilization" -02085132 00 a 01 unscientific 0 003 = 05999540 n 0000 ! 02084804 a 0101 & 02085322 a 0000 | not consistent with the methods or principles of science; "an unscientific lack of objectivity" -02085322 00 s 01 pseudoscientific 0 001 & 02085132 a 0000 | based on theories and methods erroneously regarded as scientific -02085449 00 a 01 scrupulous 0 006 ^ 01551130 a 0000 + 07525555 n 0101 + 05957737 n 0101 + 04869256 n 0101 ! 02085898 a 0101 & 02085740 a 0000 | having scruples; arising from a sense of right and wrong; principled; "less scrupulous producers sent bundles that were deceptive in appearance" -02085740 00 s 01 religious 0 002 & 02085449 a 0000 + 04848866 n 0101 | extremely scrupulous and conscientious; "religious in observing the rules of health" -02085898 00 a 01 unscrupulous 0 003 ^ 01551461 a 0000 + 04874086 n 0101 ! 02085449 a 0101 | without scruples or principles; "unscrupulous politicos who would be happy to sell...their country in order to gain power" -02086115 00 a 01 conscientious 0 004 + 07506797 n 0101 + 04848492 n 0101 + 04848686 n 0101 ! 02086356 a 0101 | guided by or in accordance with conscience or sense of right and wrong; "a conscientious decision to speak out about injustice" -02086356 00 a 01 unconscientious 0 003 + 04849074 n 0101 ! 02086115 a 0101 & 02086472 a 0000 | not conscientious; -02086472 00 s 02 conscienceless 0 unconscionable 0 001 & 02086356 a 0000 | lacking a conscience; "a conscienceless villain"; "brash, unprincipled, and conscienceless"; "an unconscionable liar" -02086667 00 a 01 sealed 1 003 ^ 01653538 a 0000 ! 02086991 a 0101 & 02086879 a 0000 | closed or secured with or as if with a seal; "my lips are sealed"; "the package is still sealed"; "the premises are sealed" -02086879 00 s 01 unopened 0 001 & 02086667 a 0000 | not yet opened or unsealed; "unopened Christmas presents" -02086991 00 a 01 unsealed 1 003 ^ 01652902 a 0000 ! 02086667 a 0101 & 02087178 a 0000 | not closed or secured with or as if with a seal; "unsealed goods"; "the letter arrived unsealed" -02087178 00 s 02 open 0 opened 0 001 & 02086991 a 0000 | not sealed or having been unsealed; "the letter was already open"; "the opened package lay on the table" -02087342 00 a 02 sealed 2 certain 5 001 ! 02087450 a 0101 | established irrevocably; "his fate is sealed" -02087450 00 a 02 unsealed 2 uncertain 5 002 + 04756887 n 0202 ! 02087342 a 0101 | not established or confirmed; "his doom is as yet unsealed" -02087594 00 a 01 wrapped 0 001 ! 02087723 a 0101 | enclosed securely in a covering of paper or the like; "gaily wrapped gifts" -02087723 00 a 01 unwrapped 0 001 ! 02087594 a 0101 | not yet wrapped or having the wrapping removed; "she faced a mountainous pile of presents still unwrapped"; "the floor around the tree was littered with gifts already unwrapped" -02087956 00 a 01 seaworthy 0 004 ^ 01398199 a 0000 = 14547036 n 0000 + 14547036 n 0101 ! 02088086 a 0101 | fit for a sea voyage -02088086 00 a 01 unseaworthy 0 003 ^ 01397385 a 0000 = 14547036 n 0000 ! 02087956 a 0101 | unfit for a voyage -02088198 00 a 01 airworthy 0 003 = 14547188 n 0000 + 14547188 n 0101 ! 02088314 a 0101 | (of aircraft) fit to fly -02088314 00 a 01 unairworthy 0 002 = 14547188 n 0000 ! 02088198 a 0101 | not fit to fly -02088404 00 a 01 concealed 0 012 ^ 01705655 a 0000 ! 02090341 a 0101 & 02088760 a 0000 & 02088883 a 0000 & 02088974 a 0000 & 02089377 a 0000 & 02089514 a 0000 & 02089724 a 0000 & 02089811 a 0000 & 02089943 a 0000 & 02090069 a 0000 & 02090228 a 0000 | hidden on any grounds for any motive; "a concealed weapon"; "a concealed compartment in his briefcase" -02088760 00 s 01 bushwhacking 0 001 & 02088404 a 0000 | lying in ambush; "bushwhacking guerrillas attacking from ambush" -02088883 00 s 01 dark 0 002 & 02088404 a 0000 + 05988498 n 0102 | secret; "keep it dark" -02088974 00 s 05 furtive 0 sneak(a) 0 sneaky 0 stealthy 0 surreptitious 0 008 & 02088404 a 0000 + 01051082 n 0401 + 04657631 n 0403 + 10486679 n 0302 + 04657631 n 0302 + 10616048 n 0201 + 10486679 n 0202 + 04657631 n 0101 | marked by quiet and caution and secrecy; taking pains to avoid being observed; "a furtive manner"; "a sneak attack"; "stealthy footsteps"; "a surreptitious glance at his watch" -02089377 00 s 02 hidden 0 obscure 0 001 & 02088404 a 0000 | difficult to find; "hidden valleys"; "a hidden cave"; "an obscure retreat" -02089514 00 s 02 hidden 2 secret 2 001 & 02088404 a 0000 | designed to elude detection; "a hidden room or place of concealment such as a priest hole"; "a secret passage"; "the secret compartment in the desk" -02089724 00 s 01 incognito(p) 0 001 & 02088404 a 0000 | with your identity concealed -02089811 00 s 01 lying_in_wait 0 001 & 02088404 a 0000 | waiting in concealment; in ambush; "an army lying in wait in the forest" -02089943 00 s 01 sealed 0 001 & 02088404 a 0000 | undisclosed for the time being; "sealed orders"; "a sealed move in chess" -02090069 00 s 01 secret 0 001 & 02088404 a 0000 | not open or public; kept private or not revealed; "a secret formula"; "secret ingredients"; "secret talks" -02090228 00 s 02 sneaking(a) 0 unavowed 0 001 & 02088404 a 0000 | not openly expressed; "a sneaking suspicion" -02090341 00 a 01 unconcealed 0 004 ^ 01704761 a 0000 ! 02088404 a 0101 & 02090567 a 0000 & 02090823 a 0000 | not concealed or hidden; "her unconcealed hostility poisoned the atmosphere"; "watched with unconcealed curiosity" -02090567 00 s 03 blatant 0 blazing 0 conspicuous 0 003 & 02090341 a 0000 + 14434219 n 0301 + 04706882 n 0101 | without any attempt at concealment; completely obvious; "blatant disregard of the law"; "a blatant appeal to vanity"; "a blazing indiscretion" -02090823 00 s 01 exhibitionistic 0 003 & 02090341 a 0000 + 10070942 n 0101 + 06889701 n 0101 | compulsively attracting attention to yourself especially by public exposure or exaggerated behavior -02091020 00 a 01 concealing 0 001 ! 02091165 a 0101 | covering or hiding; "the concealing darkness"; "concealing curtains prevented discovery" -02091165 00 a 01 revealing 0 002 ! 02091020 a 0101 & 02091300 a 0000 | showing or making known; "her dress was scanty and revealing" -02091300 00 s 05 indicative 0 indicatory 0 revelatory 0 significative 0 suggestive 0 005 & 02091165 a 0000 + 00930806 v 0501 + 00921300 v 0103 + 00772640 v 0102 + 00928232 v 0101 | (usually followed by `of') pointing out or revealing clearly; "actions indicative of fear" -02091574 00 a 01 sectarian 0 005 + 10573957 n 0101 + 08149781 n 0101 ! 02092129 a 0101 & 02091851 a 0000 & 02091997 a 0000 | belonging to or characteristic of a sect; "a sectarian mind"; "the negations of sectarian ideology"- Sidney Hook; "sectarian squabbles in psychology" -02091851 00 s 01 denominational 0 001 & 02091574 a 0000 | adhering or confined to a particular sect or denomination; "denominational prejudice" -02091997 00 s 01 narrow-minded 0 002 & 02091574 a 0000 + 06205411 n 0101 | rigidly adhering to a particular sect or its doctrines -02092129 00 a 02 nonsectarian 0 unsectarian 0 005 ! 02091574 a 0101 & 02092460 a 0000 & 02092741 a 0000 & 02092987 a 0000 & 02093134 a 0000 | not restricted to one sect or school or party; "religious training in a nonsectarian atmosphere"; "nonsectarian colleges"; "a wide and unsectarian interest in religion"- Bertrand Russell -02092460 00 s 04 ecumenic 0 oecumenic 0 ecumenical 0 oecumenical 0 004 & 02092129 a 0000 + 08471949 n 0402 + 06790235 n 0301 + 06790235 n 0101 | concerned with promoting unity among churches or religions; "ecumenical thinking"; "ecumenical activities"; "the ecumenical movement" -02092741 00 s 02 interchurch 0 interdenominational 0 001 & 02092129 a 0000 | occurring between or among or common to different churches or denominations; "interchurch aid"; "interdenominational cooperation between Methodists and Presbyterians" -02092987 00 s 01 nondenominational 0 001 & 02092129 a 0000 | not restricted to a particular religious denomination; "a nondenominational church" -02093134 00 s 01 undenominational 0 001 & 02092129 a 0000 | not bound or devoted to the promotion of a particular denomination; "undenominational religious instruction" -02093305 00 a 03 secure 1 unafraid 2 untroubled 2 002 + 07526338 n 0101 ! 02093493 a 0101 | free from fear or doubt; easy in mind; "he was secure that nothing will be held against him" -02093493 00 a 01 insecure 1 005 + 14544159 n 0101 + 07524918 n 0101 ! 02093305 a 0101 & 02093703 a 0000 & 02093802 a 0000 | lacking self-confidence or assurance; "an insecure person lacking mental stability" -02093703 00 s 01 overanxious 0 001 & 02093493 a 0000 | anxious or nervous to an excessive degree -02093802 00 s 01 unassured 0 001 & 02093493 a 0000 | lacking boldness or confidence -02093888 00 a 01 secure 2 009 ^ 02525206 a 0000 ^ 01884930 a 0000 ^ 02057829 a 0000 + 14539268 n 0101 ! 02094755 a 0101 & 02094203 a 0000 & 02094388 a 0000 & 02094514 a 0000 & 02094633 a 0000 | free from danger or risk; "secure from harm"; "his fortune was secure"; "made a secure place for himself in his field" -02094203 00 s 01 assured 0 002 & 02093888 a 0000 + 04904162 n 0102 | characterized by certainty or security; "a tiny but assured income"; "we can never have completely assured lives" -02094388 00 s 01 firm 0 001 & 02093888 a 0000 | securely established; "holds a firm position as the country's leading poet" -02094514 00 s 01 fail-safe 0 001 & 02093888 a 0000 | guaranteed not to fail; "a fail-safe recipe for cheese souffle" -02094633 00 s 01 sure 0 001 & 02093888 a 0000 | physically secure or dependable; "a sure footing"; "was on sure ground" -02094755 00 a 02 insecure 2 unsafe 2 008 ^ 02058794 a 0000 ^ 01886407 a 0000 ^ 02523275 a 0000 + 14544159 n 0101 + 14541677 n 0101 ! 02093888 a 0101 & 02095037 a 0000 & 02095193 a 0000 | lacking in security or safety; "his fortune was increasingly insecure"; "an insecure future" -02095037 00 s 02 precarious 0 shaky 0 003 & 02094755 a 0000 + 04776021 n 0201 + 04756887 n 0103 | not secure; beset with difficulties; "a shaky marriage" -02095193 00 s 02 unguaranteed 0 unsecured 0 001 & 02094755 a 0000 | without financial security; "an unsecured note" -02095311 00 a 01 secure 3 005 ^ 01059400 a 0000 + 04777098 n 0105 ! 02095786 a 0101 & 02095542 a 0000 & 02095670 a 0000 | not likely to fail or give way; "the lock was secure"; "a secure foundation"; "a secure hold on her wrist" -02095542 00 s 01 steady 0 002 & 02095311 a 0000 + 04777852 n 0101 | securely in position; not shaky; "held the ladder steady" -02095670 00 s 01 tight 0 001 & 02095311 a 0000 | securely or solidly fixed in place; rigid; "the bolts are tight" -02095786 00 a 01 insecure 3 002 ^ 01060785 a 0000 ! 02095311 a 0101 | not firm or firmly fixed; likely to fail or give way; "the hinge is insecure" -02095936 00 a 01 fastened 0 002 ! 02096213 a 0101 & 02096083 a 0000 | firmly closed or secured; "found the gate fastened"; "a fastened seatbelt" -02096083 00 s 01 pegged-down 0 001 & 02095936 a 0000 | fastened by pegs; "the pegged-down branches of the plant will take root" -02096213 00 a 01 unfastened 0 003 ! 02095936 a 0101 & 02096382 a 0000 & 02096604 a 0000 | not closed or secured; "the car door was unfastened"; "unfastened seatbelts" -02096382 00 s 05 unbarred 0 unbolted 0 unlatched 0 unlocked 0 unsecured 0 001 & 02096213 a 0000 | not firmly fastened or secured; "an unbarred door"; "went through the unlatched gate into the street"; "an unlocked room" -02096604 00 s 01 undone 0 001 & 02096213 a 0000 | not fastened or tied or secured; "her blouse had come undone at the neck"; "his shoelaces were undone" -02096759 00 a 01 insured 0 002 ! 02097029 a 0101 & 02096923 a 0000 | covered by insurance; "an insured risk"; "all members of the film cast and crew are insured" -02096923 00 s 01 insurable 0 001 & 02096759 a 0000 | capable of being insured or eligible to be insured -02097029 00 a 01 uninsured 0 002 ! 02096759 a 0101 & 02097152 a 0000 | not covered by insurance; "an uninsured motorist" -02097152 00 s 01 uninsurable 0 001 & 02097029 a 0000 | not capable of being insured or not eligible to be insured -02097268 00 a 01 seductive 0 007 ^ 00166146 a 0000 ^ 02131072 a 0000 ! 02098136 a 0101 & 02097480 a 0000 & 02097796 a 0000 & 02097884 a 0000 & 02098002 a 0000 | tending to entice into a desired action or state -02097480 00 s 04 alluring 0 beguiling 0 enticing 0 tempting 0 002 & 02097268 a 0000 + 04688842 n 0403 | highly attractive and able to arouse hope or desire; "an alluring prospect"; "her alluring smile"; "the voice was low and beguiling"; "difficult to say no to an enticing advertisement"; "a tempting invitation" -02097796 00 s 01 corrupting 0 001 & 02097268 a 0000 | seducing into corrupt practices -02097884 00 s 01 insidious 0 002 & 02097268 a 0000 + 04880138 n 0101 | beguiling but harmful; "insidious pleasures" -02098002 00 s 01 teasing 0 001 & 02097268 a 0000 | arousing sexual desire without intending to satisfy it; "her lazy teasing smile" -02098136 00 a 01 unseductive 0 003 ^ 00169164 a 0000 ! 02097268 a 0101 & 02098243 a 0000 | not seductive -02098243 00 s 02 uninviting 0 untempting 0 001 & 02098136 a 0000 | not tempting -02098325 00 a 01 selfish 0 007 ^ 00101800 a 0000 ^ 00639356 a 0000 ^ 01112573 a 0000 + 04834605 n 0101 ! 02099019 a 0101 & 02098694 a 0000 & 02098918 a 0000 | concerned chiefly or only with yourself and your advantage to the exclusion of others; "Selfish men were...trying to make capital for themselves out of the sacred cause of civil rights"- Maria Weston Chapman -02098694 00 s 04 egotistic 0 egotistical 0 narcissistic 0 self-loving 0 004 & 02098325 a 0000 + 04835260 n 0303 + 10047459 n 0201 + 04887497 n 0101 | characteristic of those having an inflated idea of their own importance -02098918 00 s 02 self-serving 0 self-seeking 0 001 & 02098325 a 0000 | interested only in yourself -02099019 00 a 01 unselfish 0 010 ^ 00101609 a 0000 ^ 00638981 a 0000 ^ 01111016 a 0000 + 04832951 n 0101 + 01085937 n 0102 ! 02098325 a 0101 & 02099303 a 0000 & 02099442 a 0000 & 02099561 a 0000 & 02099651 a 0000 | disregarding your own advantages and welfare over those of others -02099303 00 s 01 public-spirited 0 001 & 02099019 a 0000 | showing unselfish interest in the public welfare; "a public-spirited citizen" -02099442 00 s 03 self-denying 0 self-giving 0 self-sacrificing 0 001 & 02099019 a 0000 | willing to deprive yourself -02099561 00 s 01 self-forgetful 0 001 & 02099019 a 0000 | showing lack of self-interest -02099651 00 s 01 sharing 0 001 & 02099019 a 0000 | unselfishly willing to share with others; "a warm and sharing friend" -02099774 00 a 01 senior 0 008 ^ 01643620 a 0000 = 13949576 n 0000 + 13949576 n 0101 ! 02100709 a 0101 & 02100031 a 0000 & 02100236 a 0000 & 02100376 a 0000 & 02100566 a 0000 | older; higher in rank; longer in length of tenure or service; "senior officer" -02100031 00 s 03 elder 0 older 0 sr. 0 002 & 02099774 a 0000 + 10048218 n 0101 | used of the older of two persons of the same name especially used to distinguish a father from his son; "Bill Adams, Sr." -02100236 00 s 01 major(ip) 0 002 & 02099774 a 0000 ;r 08860123 n 0000 | of the elder of two boys with the same family name; "Jones major" -02100376 00 s 01 precedential 0 002 & 02099774 a 0000 + 13949802 n 0101 | having precedence (especially because of longer service); "precedential treatment for senior members of the firm" -02100566 00 s 03 ranking(a) 0 superior 0 higher-ranking 0 002 & 02099774 a 0000 + 05158619 n 0201 | having a higher rank; "superior officer" -02100709 00 a 01 junior 0 009 ^ 01646941 a 0000 ^ 02329355 a 0000 = 13949576 n 0000 + 10227393 n 0101 + 10227266 n 0101 ! 02099774 a 0101 & 02100968 a 0000 & 02101240 a 0000 & 02101382 a 0000 | younger; lower in rank; shorter in length of tenure or service -02100968 00 s 06 junior-grade 0 lower-ranking 0 lowly 0 petty(a) 0 secondary 0 subaltern 0 003 & 02100709 a 0000 + 10667709 n 0601 + 05173205 n 0401 | inferior in rank or status; "the junior faculty"; "a lowly corporal"; "petty officialdom"; "a subordinate functionary" -02101240 00 s 01 minor(ip) 0 002 & 02100709 a 0000 ;r 08860123 n 0000 | of the younger of two boys with the same family name; "Jones minor" -02101382 00 s 02 younger 0 jr. 0 001 & 02100709 a 0000 | used of the younger of two persons of the same name especially used to distinguish a son from his father; "John Junior"; "John Smith, Jr." -02101580 00 a 01 sensational 0 005 = 07247602 n 0000 ! 02102321 a 0101 & 02101757 a 0000 & 02101942 a 0000 & 02102178 a 0000 | causing intense interest, curiosity, or emotion -02101757 00 s 02 lurid 0 shocking 0 003 & 02101580 a 0000 + 07088053 n 0102 + 04782610 n 0104 | glaringly vivid and graphic; marked by sensationalism; "lurid details of the accident" -02101942 00 s 03 scandalmongering 0 sensationalistic 0 yellow(a) 0 004 & 02101580 a 0000 + 07247602 n 0201 + 07088053 n 0201 + 07135627 n 0101 | typical of tabloids; "sensational journalistic reportage of the scandal"; "yellow press" -02102178 00 s 01 screaming(a) 0 001 & 02101580 a 0000 | resembling a scream in effect; "screaming headlines"; "screaming colors and designs" -02102321 00 a 01 unsensational 0 002 = 07247602 n 0000 ! 02101580 a 0101 | not of such character as to arouse intense interest, curiosity, or emotional reaction -02102484 00 a 02 sensible 0 sensitive 4 009 ^ 00190115 a 0000 ^ 00570590 a 0000 ^ 02103481 a 0000 + 05652926 n 0202 + 02106006 v 0202 + 02106006 v 0102 + 05652926 n 0103 + 05678148 n 0101 ! 02102796 a 0101 | able to feel or perceive; "even amoeba are sensible creatures"; "the more sensible parts of the skin" -02102796 00 a 01 insensible 0 008 ^ 02105375 a 0000 ^ 02106761 a 0000 ^ 00191603 a 0000 ^ 00571643 a 0000 + 05680982 n 0101 ! 02102484 a 0101 & 02103052 a 0000 & 02103333 a 0000 | incapable of physical sensation; "insensible to pain"; "insensible earth" -02103052 00 s 02 anesthetic(a) 0 anaesthetic(a) 0 005 & 02102796 a 0000 + 02710766 n 0202 + 14023491 n 0202 + 02710766 n 0101 + 14023491 n 0101 | characterized by insensibility; "the young girls are in a state of possession--blind and deaf and anesthetic"; "an anesthetic state" -02103333 00 s 03 asleep(p) 0 benumbed 0 numb 0 002 & 02102796 a 0000 + 14322528 n 0301 | lacking sensation; "my foot is asleep"; "numb with cold" -02103481 00 a 01 sensitive 1 018 ^ 01999306 a 0000 ^ 02102484 a 0000 ^ 02360448 a 0000 = 05019661 n 0000 + 05019661 n 0102 + 02155248 v 0101 + 02106006 v 0102 + 05652926 n 0101 ! 02105375 a 0101 & 02103982 a 0000 & 02104190 a 0000 & 02104277 a 0000 & 02104396 a 0000 & 02104600 a 0000 & 02104727 a 0000 & 02104890 a 0000 & 02105055 a 0000 & 02105176 a 0000 | responsive to physical stimuli; "a mimosa's leaves are sensitive to touch"; "a sensitive voltmeter"; "sensitive skin"; "sensitive to light" -02103982 00 s 01 delicate 0 001 & 02103481 a 0000 | of an instrument or device; capable of registering minute differences or changes precisely; "almost undetectable with even the most delicate instruments" -02104190 00 s 01 erogenous 0 001 & 02103481 a 0000 | sensitive to sexual stimulation -02104277 00 s 02 excitable 0 irritable 1 002 & 02103481 a 0000 ;c 06080522 n 0000 | capable of responding to stimuli -02104396 00 s 01 highly_sensitive 0 001 & 02103481 a 0000 | readily affected by various agents; "a highly sensitive explosive is easily exploded by a shock"; "a sensitive colloid is readily coagulated" -02104600 00 s 01 irritable 2 003 & 02103481 a 0000 ;c 06060845 n 0000 + 05653710 n 0102 | abnormally sensitive to a stimulus -02104727 00 s 02 light-sensitive 0 photosensitive 0 002 & 02103481 a 0000 + 05654201 n 0201 | sensitive to visible light; "photographic film is light-sensitive" -02104890 00 s 01 radiosensitive 0 002 & 02103481 a 0000 + 05654201 n 0102 | sensitive to radiation; "radiosensitive cancer cells can be treated with radiotherapy" -02105055 00 s 01 nociceptive 0 001 & 02103481 a 0000 | caused by or in response to pain; "a nociceptive spinal reflex" -02105176 00 s 02 reactive 0 responsive 0 003 & 02103481 a 0000 + 05653575 n 0102 + 00717358 v 0101 | reacting to a stimulus; "the skin of old persons is less reactive than that of younger persons" -02105375 00 a 01 insensitive 1 007 ^ 02102796 a 0000 ^ 01999766 a 0000 ^ 02363358 a 0000 = 05019661 n 0000 ! 02103481 a 0101 & 02105603 a 0000 & 02105898 a 0000 | not responsive to physical stimuli; "insensitive to radiation" -02105603 00 s 02 dead 0 deadened 0 002 & 02105375 a 0000 + 05213201 n 0102 | devoid of physical sensation; numb; "his gums were dead from the novocain"; "she felt no discomfort as the dentist drilled her deadened tooth"; "a public desensitized by continuous television coverage of atrocities" -02105898 00 s 01 unreactive 0 001 & 02105375 a 0000 | not tending to react to stimulation -02105990 00 a 01 sensitive 2 012 ^ 01999306 a 0000 = 07512465 n 0000 + 07512465 n 0102 + 04842993 n 0102 + 00589469 v 0103 + 00589309 v 0101 + 07512465 n 0101 + 04842993 n 0101 ! 02106761 a 0101 & 02106366 a 0000 & 02106509 a 0000 & 02106651 a 0000 | being susceptible to the attitudes, feelings, or circumstances of others; "sensitive to the local community and its needs" -02106366 00 s 01 alive(p) 0 002 & 02105990 a 0000 + 13961642 n 0104 | (followed by `to' or `of') aware of; "is alive to the moods of others" -02106509 00 s 04 huffy 0 thin-skinned 0 feisty 0 touchy 0 003 & 02105990 a 0000 + 07553016 n 0402 + 07517869 n 0101 | quick to take offense -02106651 00 s 01 oversensitive 0 002 & 02105990 a 0000 + 07512719 n 0101 | unduly sensitive or thin-skinned -02106761 00 a 01 insensitive 2 014 ^ 01155354 a 0000 ^ 02102796 a 0000 ^ 02448437 a 0000 ^ 01999766 a 0000 = 07512465 n 0000 + 04844024 n 0102 + 04844024 n 0101 ! 02105990 a 0101 & 02107162 a 0000 & 02107386 a 0000 & 02107634 a 0000 & 02107827 a 0000 & 02107991 a 0000 & 02108098 a 0000 | deficient in human sensibility; not mentally or morally sensitive; "insensitive to the needs of the patients" -02107162 00 s 03 callous 0 indurate 0 pachydermatous 0 003 & 02106761 a 0000 + 04844625 n 0103 + 04844625 n 0102 | emotionally hardened; "a callous indifference to suffering"; "cold-blooded and indurate to public opinion" -02107386 00 s 02 dead(p) 0 numb(p) 0 003 & 02106761 a 0000 + 04636610 n 0203 + 05213201 n 0102 | (followed by `to') not showing human feeling or sensitivity; unresponsive; "passersby were dead to our plea for help"; "numb to the cries for mercy" -02107634 00 s 01 dull 0 002 & 02106761 a 0000 + 04844891 n 0101 | blunted in responsiveness or sensibility; "a dull gaze"; "so exhausted she was dull to what went on about her"- Willa Cather -02107827 00 s 02 insensible(p) 1 unaffected(p) 1 002 & 02106761 a 0000 + 04844625 n 0105 | unaware of or indifferent to; "insensible to the suffering around him" -02107991 00 s 01 soulless 0 001 & 02106761 a 0000 | lacking sensitivity or the capacity for deep feeling -02108098 00 s 02 thick-skinned 0 tough-skinned 0 001 & 02106761 a 0000 | insensitive to criticism -02108198 00 a 02 sensitizing 0 sensitising 0 002 = 14531772 n 0000 ! 02108359 a 0101 | making susceptible or sensitive to either physical or emotional stimuli -02108359 00 a 02 desensitizing 0 desensitising 0 003 = 14531772 n 0000 ! 02108198 a 0101 & 02108547 a 0000 | making less susceptible or sensitive to either physical or emotional stimuli -02108547 00 s 01 numbing 0 001 & 02108359 a 0000 | causing numbness or insensitivity; "the numbing effect of grief" -02108665 00 a 02 sensory 0 sensorial 0 002 + 05651971 n 0201 ! 02108827 a 0101 | involving or derived from the senses; "sensory experience"; "sensory channels" -02108827 00 a 02 extrasensory 0 paranormal 2 005 ^ 01599532 a 0000 ! 02108665 a 0101 & 02109012 a 0000 & 02109162 a 0000 & 02109326 a 0000 | seemingly outside normal sensory channels -02109012 00 s 01 clairvoyant 0 003 & 02108827 a 0000 + 09925953 n 0101 + 07256695 n 0101 | perceiving things beyond the natural range of the senses -02109162 00 s 01 telegnostic 0 002 & 02108827 a 0000 + 07256230 n 0101 | obtaining knowledge of distant events allegedly without use of normal sensory mechanisms -02109326 00 s 01 telepathic 0 002 & 02108827 a 0000 + 07255998 n 0101 | communicating without apparent physical signals -02109448 00 a 01 sent 0 001 ! 02109552 a 0101 | caused or enabled to go or be conveyed or transmitted -02109552 00 a 01 unsent 0 001 ! 02109448 a 0101 | not dispatched or transmitted; "the letter remained unwritten and unsent" -02109678 00 a 01 separate 0 017 ^ 02478749 a 0000 ^ 00727564 a 0000 ^ 00493460 a 0000 ^ 02069355 a 0000 ^ 01326917 a 0000 ^ 02152848 a 0000 = 14414294 n 0000 + 14414503 n 0103 ! 02111684 a 0101 & 02110161 a 0000 & 02110317 a 0000 & 02110447 a 0000 & 02110778 a 0000 & 02110993 a 0000 & 02111095 a 0000 & 02111339 a 0000 & 02111486 a 0000 | independent; not united or joint; "a problem consisting of two separate issues"; "they went their separate ways"; "formed a separate church" -02110161 00 s 01 apart(p) 0 001 & 02109678 a 0000 | having characteristics not shared by others; "scientists felt they were a group apart"- Vannever Bush -02110317 00 s 01 asunder(p) 0 001 & 02109678 a 0000 | widely separated especially in space; "as wide asunder as pole from pole" -02110447 00 s 04 detached 0 isolated 0 separated 0 set-apart 0 001 & 02109678 a 0000 | being or feeling set or kept apart from others; "she felt detached from the group"; "could not remain the isolated figure he had been"- Sherwood Anderson; "thought of herself as alone and separated from the others"; "had a set-apart feeling" -02110778 00 s 02 discrete 0 distinct 0 003 & 02109678 a 0000 + 14414503 n 0202 + 14414503 n 0101 | constituting a separate entity or part; "a government with three discrete divisions"; "on two distinct occasions" -02110993 00 s 01 disjoint 0 002 & 02109678 a 0000 ;c 06000644 n 0000 | having no elements in common -02111095 00 s 02 disjunct 0 isolated 1 001 & 02109678 a 0000 | marked by separation of or from usually contiguous elements; "little isolated worlds, as abruptly disjunct and unexpected as a palm-shaded well in the Sahara"- Scientific Monthly -02111339 00 s 01 isolable 0 004 & 02109678 a 0000 + 00655378 v 0101 + 00496770 v 0101 + 00494269 v 0101 | capable of being isolated or disjoined -02111486 00 s 01 unaccompanied 0 001 & 02109678 a 0000 | (of a state or an event) taking place without something specified occurring at the same time; "a headache unaccompanied by other symptoms" -02111684 00 a 01 joint 0 011 ^ 00466808 a 0000 ^ 00492677 a 0000 ^ 01326148 a 0000 ^ 02152216 a 0000 ^ 02475855 a 0000 ! 02109678 a 0101 & 02111981 a 0000 & 02112108 a 0000 & 02112455 a 0000 & 02112701 a 0000 & 02112891 a 0000 | united or combined; "a joint session of Congress"; "joint owners" -02111981 00 s 01 clannish 0 001 & 02111684 a 0000 | characteristic of a clan especially in being unified; "clannish loyalty" -02112108 00 s 04 concerted 0 conjunct 0 conjunctive 0 cooperative 0 002 & 02111684 a 0000 + 02416278 v 0403 | involving the joint activity of two or more; "concerted action"; "the conjunct influence of fire and strong wind"; "the conjunctive focus of political opposition"; "a cooperative effort"; "a united effort"; "joint military activities" -02112455 00 s 02 conjoined 0 conjoint 0 001 & 02111684 a 0000 | consisting of two or more associated entities; "the interplay of these conjoined yet opposed factors"; "social order and prosperity, the conjoint aims of government"- J.K.Fairbank -02112701 00 s 02 corporate 0 collective 0 001 & 02111684 a 0000 | done by or characteristic of individuals acting together; "a joint identity"; "the collective mind"; "the corporate good" -02112891 00 s 01 cosignatory 0 001 & 02111684 a 0000 | signing jointly with others -02112976 00 a 02 sanitary 0 healthful 2 004 + 04790070 n 0201 + 14494893 n 0101 ! 02113449 a 0101 & 02113191 a 0000 | free from filth and pathogens; "sanitary conditions for preparing food"; "a sanitary washroom" -02113191 00 s 02 hygienic 0 hygienical 0 004 & 02112976 a 0000 + 14495080 n 0201 + 14495080 n 0101 + 06051380 n 0101 | tending to promote or preserve health; "hygienic habits like using disposable tissues"; "hygienic surroundings with plenty of fresh air" -02113449 00 a 03 unsanitary 0 insanitary 0 unhealthful 2 004 + 04791740 n 0301 + 14495589 n 0101 ! 02112976 a 0101 & 02113672 a 0000 | not sanitary or healthful; "unsanitary open sewers"; "grim and unsanitary conditions" -02113672 00 s 01 unhygienic 0 001 & 02113449 a 0000 | unclean and constituting a likely cause of disease; "pathetic dogs kept in small unhygienic cages" -02113827 00 a 02 septic 0 infected 0 011 ^ 02116934 a 0000 ^ 01167817 a 0000 + 14180848 n 0101 ! 02115324 a 0101 & 02114190 a 0000 & 02114296 a 0000 & 02114483 a 0000 & 02114613 a 0000 & 02114746 a 0000 & 02115034 a 0000 & 02115187 a 0000 | containing or resulting from disease-causing organisms; "a septic sore throat"; "a septic environment"; "septic sewage" -02114190 00 s 01 abscessed 0 001 & 02113827 a 0000 | infected and filled with pus; "an abscessed tooth" -02114296 00 s 02 dirty 0 pestiferous 0 002 & 02113827 a 0000 + 14497763 n 0101 | contaminated with infecting organisms; "dirty wounds"; "obliged to go into infected rooms"- Jane Austen -02114483 00 s 01 contaminative 0 003 & 02113827 a 0000 + 00493259 v 0101 + 00492706 v 0103 | making impure by contact or mixing -02114613 00 s 02 purulent 0 pussy 0 003 & 02113827 a 0000 + 14312600 n 0102 + 14312600 n 0101 | containing pus; "a purulent wound" -02114746 00 s 02 infectious 0 infective 0 004 & 02113827 a 0000 + 00089750 v 0201 + 00088713 v 0201 + 14174549 n 0101 | caused by infection or capable of causing infection; "viruses and other infective agents"; "a carrier remains infective without himself showing signs of the disease" -02115034 00 s 02 putrefactive 0 putrefacient 0 003 & 02113827 a 0000 + 00399553 v 0201 + 00399553 v 0101 | causing or promoting bacterial putrefaction -02115187 00 s 01 septicemic 0 002 & 02113827 a 0000 + 14189837 n 0102 | characteristic of septicemia; "a septicemic temperature curve" -02115324 00 a 01 antiseptic 0 011 ^ 00417413 a 0000 ^ 02116618 a 0000 ^ 01164763 a 0000 + 02724207 n 0101 + 14495230 n 0102 ! 02113827 a 0101 & 02115759 a 0000 & 02116054 a 0000 & 02116304 a 0000 & 02116397 a 0000 & 02116473 a 0000 | thoroughly clean and free of or destructive to disease-causing organisms; "doctors in antiseptic green coats"; "the antiseptic effect of alcohol"; "it is said that marjoram has antiseptic qualities" -02115759 00 s 02 aseptic 0 sterile 0 005 & 02115324 a 0000 + 14495230 n 0204 + 14495230 n 0203 + 14495230 n 0101 + 13432903 n 0102 | free of or using methods to keep free of pathological microorganisms; "a sterile operating area"; "aseptic surgical instruments"; "aseptic surgical techniques" -02116054 00 s 03 bactericidal 0 disinfectant 0 germicidal 0 006 & 02115324 a 0000 + 03208229 n 0302 + 03208229 n 0201 + 00089324 v 0201 + 14772185 n 0101 + 02716205 n 0103 | preventing infection by inhibiting the growth or action of microorganisms -02116304 00 s 02 cleansing 0 purifying 0 001 & 02115324 a 0000 | acting like an antiseptic -02116397 00 s 01 nonpurulent 0 001 & 02115324 a 0000 | not containing pus -02116473 00 s 02 uninfected 0 clean 0 002 & 02115324 a 0000 + 14496193 n 0201 | free from sepsis or infection; "a clean (or uninfected) wound" -02116618 00 a 01 germfree 0 003 ^ 02115324 a 0000 ! 02116934 a 0101 & 02116783 a 0000 | free from germs or pathogenic organisms; sterile; "a germfree environment" -02116783 00 s 01 axenic 0 001 & 02116618 a 0000 | (of experimental animals) raised under sterile conditions; "axenic conditions"; "germfree animals" -02116934 00 a 01 germy 0 004 ^ 02113827 a 0000 + 01384491 n 0103 ! 02116618 a 0101 & 02117144 a 0000 | full of germs or pathological microorganisms; "the water in New York harbor is oily and dirty and germy" -02117144 00 s 02 unsterilized 0 unsterilised 0 001 & 02116934 a 0000 | not sterilized -02117232 00 a 02 adulterating 0 adulterant 0 004 + 14616939 n 0201 + 00487748 v 0202 ! 02117694 a 0101 & 02117464 a 0000 | making impure or corrupt by adding extraneous materials; "the adulterating effect of extraneous materials" -02117464 00 s 02 extraneous 0 foreign 0 002 & 02117232 a 0000 + 13796585 n 0101 | not belonging to that in which it is contained; introduced from an outside source; "water free of extraneous matter"; "foreign particles in milk" -02117694 00 a 01 purifying 0 004 ! 02117232 a 0101 & 02117866 a 0000 & 02118047 a 0000 & 02118181 a 0000 | freeing from noxious matter; "filtration is a purifying agent" -02117866 00 s 02 ablutionary 0 cleansing 0 002 & 02117694 a 0000 + 00255450 n 0101 | cleansing the body by washing; especially ritual washing of e.g. hands; "ablutionary rituals" -02118047 00 s 01 antiseptic 0 001 & 02117694 a 0000 | freeing from error or corruption; "the antiseptic effect of sturdy criticism" -02118181 00 s 02 detergent 0 detersive 0 007 & 02117694 a 0000 + 01393038 v 0201 + 15097017 n 0101 + 03181899 n 0101 + 05149127 n 0101 + 05149127 n 0102 + 01393038 v 0101 | having cleansing power -02118379 00 a 01 serious 0 010 = 04646548 n 0000 + 04646548 n 0101 ! 02120458 a 0101 & 02118840 a 0000 & 02119213 a 0000 & 02119639 a 0000 & 02119716 a 0000 & 02119971 a 0000 & 02120150 a 0000 & 02120276 a 0000 | concerned with work or important matters rather than play or trivialities; "a serious student of history"; "a serious attempt to learn to ski"; "gave me a serious look"; "a serious young man"; "are you serious or joking?"; "Don't be so serious!" -02118840 00 s 03 earnest 0 sincere 0 solemn 1 006 & 02118379 a 0000 + 07512147 n 0302 + 04647826 n 0303 + 07512315 n 0203 + 04646548 n 0204 + 04646548 n 0102 | characterized by a firm and humorless belief in the validity of your opinions; "both sides were deeply in earnest, even passionate"; "an entirely sincere and cruel tyrant"; "a film with a solemn social message" -02119213 00 s 04 grave 0 sedate 0 sober 0 solemn 0 008 & 02118379 a 0000 + 04647826 n 0404 + 07512147 n 0402 + 04647826 n 0403 + 04647478 n 0304 + 04647826 n 0201 + 04647478 n 0101 + 04647478 n 0102 | dignified and somber in manner or character and committed to keeping promises; "a grave God-fearing man"; "a quiet sedate nature"; "as sober as a judge"; "a solemn promise"; "the judge was solemn as he pronounced sentence" -02119639 00 s 01 overserious 0 001 & 02118379 a 0000 | excessively serious -02119716 00 s 01 real 0 003 & 02118379 a 0000 + 13956097 n 0101 + 13955461 n 0101 | not to be taken lightly; "statistics demonstrate that poverty and unemployment are very real problems"; "to the man sleeping regularly in doorways homelessness is real" -02119971 00 s 02 thoughtful 0 serious-minded 0 003 & 02118379 a 0000 + 04646548 n 0203 + 01229793 n 0102 | acting with or showing thought and good sense; "a sensible young man" -02120150 00 s 01 sobering 0 001 & 02118379 a 0000 | tending to make sober or more serious; "the news had a sobering effect" -02120276 00 s 01 solid 0 002 & 02118379 a 0000 + 04671075 n 0102 | of a substantial character and not frivolous or superficial; "work of solid scholarship"; "based on solid facts" -02120458 00 a 01 frivolous 0 012 ^ 01873406 a 0000 = 04646548 n 0000 + 04648207 n 0102 + 04648207 n 0101 + 00513401 n 0104 ! 02118379 a 0101 & 02120828 a 0000 & 02121123 a 0000 & 02121290 a 0000 & 02121424 a 0000 & 02121572 a 0000 & 02121735 a 0000 | not serious in content or attitude or behavior; "a frivolous novel"; "a frivolous remark"; "a frivolous young woman" -02120828 00 s 08 airheaded 0 dizzy 0 empty-headed 0 featherbrained 0 giddy 0 light-headed 0 lightheaded 0 silly 0 004 & 02120458 a 0000 + 04648440 n 0802 + 04894444 n 0701 + 04648440 n 0501 | lacking seriousness; given to frivolity; "a dizzy blonde"; "light-headed teenagers"; "silly giggles" -02121123 00 s 04 flighty 0 flyaway 0 head-in-the-clouds 0 scatterbrained 0 002 & 02120458 a 0000 + 04671841 n 0101 | guided by whim and fancy; "flighty young girls" -02121290 00 s 02 flippant 0 light-minded 0 003 & 02120458 a 0000 + 04648866 n 0202 + 04648866 n 0101 | showing inappropriate levity -02121424 00 s 02 idle 0 light 0 002 & 02120458 a 0000 + 04648596 n 0202 | silly or trivial; "idle pleasure"; "light banter"; "light idle chatter" -02121572 00 s 01 light 2 002 & 02120458 a 0000 + 04648596 n 0102 | intended primarily as entertainment; not serious or profound; "light verse"; "a light comedy" -02121735 00 s 01 trivial 0 001 & 02120458 a 0000 | concerned with trivialities; "a trivial young woman"; "a trivial mind" -02121859 00 a 01 playful 0 009 = 04649261 n 0000 + 07512039 n 0102 ! 02123314 a 0101 & 02122132 a 0000 & 02122379 a 0000 & 02122543 a 0000 & 02122715 a 0000 & 02123007 a 0000 & 02123118 a 0000 | full of fun and high spirits; "playful children just let loose from school" -02122132 00 s 05 coltish 0 frolicsome 0 frolicky 0 rollicking 0 sportive 0 003 & 02121859 a 0000 + 04649835 n 0503 + 04649835 n 0202 | given to merry frolicking; "frolicsome students celebrated their graduation with parties and practical jokes" -02122379 00 s 03 devilish 0 rascally 0 roguish 0 003 & 02121859 a 0000 + 04909721 n 0303 + 10200047 n 0204 | playful in an appealingly bold way; "a roguish grin" -02122543 00 s 03 elfin 0 elfish 0 elvish 0 001 & 02121859 a 0000 | usually good-naturedly mischievous; "perpetrated a practical joke with elfin delight"; "elvish tricks" -02122715 00 s 08 arch 0 impish 0 implike 0 mischievous 0 pixilated 0 prankish 0 puckish 0 wicked 0 005 & 02121859 a 0000 + 04650010 n 0703 + 04909721 n 0601 + 04650010 n 0402 + 04650010 n 0201 | naughtily or annoyingly playful; "teasing and worrying with impish laughter"; "a wicked prank" -02123007 00 s 02 kittenish 0 frisky 0 002 & 02121859 a 0000 + 04649835 n 0201 | playful like a lively kitten -02123118 00 s 03 mocking 0 teasing 0 quizzical 0 001 & 02121859 a 0000 | playfully vexing (especially by ridicule); "his face wore a somewhat quizzical almost impertinent air"- Lawrence Durrell -02123314 00 a 03 unplayful 0 serious 2 sober 2 004 = 04649261 n 0000 + 04647478 n 0304 + 04646548 n 0201 ! 02121859 a 0101 | completely lacking in playfulness -02123475 00 a 01 selected 0 002 ! 02123743 a 0101 & 02123579 a 0000 | chosen in preference to another -02123579 00 s 02 elect 0 elite 0 003 & 02123475 a 0000 + 08386555 n 0201 + 08386853 n 0102 | selected as the best; "an elect circle of artists"; "elite colleges" -02123743 00 a 01 unselected 0 001 ! 02123475 a 0101 | not selected -02123812 00 a 01 serviceable 0 008 ^ 01090308 a 0000 ^ 01834304 a 0000 ^ 02495922 a 0000 + 05150129 n 0102 + 05150129 n 0101 ! 02124654 a 0101 & 02124096 a 0000 & 02124253 a 0000 | ready for service or able to give long service; "serviceable equipment"; "heavy serviceable fabrics" -02124096 00 s 02 durable 0 long-wearing 0 002 & 02123812 a 0000 + 05053688 n 0102 | capable of withstanding wear and tear and decay; "durable denim jeans" -02124253 00 s 05 functional 0 usable 0 useable 0 operable 0 operational 0 006 & 02123812 a 0000 + 05150129 n 0304 + 01158872 v 0301 + 05150129 n 0203 + 01158872 v 0201 + 05151372 n 0101 | fit or ready for use or service; "the toaster was still functional even after being dropped"; "the lawnmower is a bit rusty but still usable"; "an operational aircraft"; "the dishwasher is now in working order" -02124654 00 a 01 unserviceable 0 007 ^ 01090993 a 0000 ^ 02497141 a 0000 ! 02123812 a 0101 & 02124886 a 0000 & 02125057 a 0000 & 02125198 a 0000 & 02125294 a 0000 | not ready for service; "unserviceable equipment may be replaced" -02124886 00 s 01 broken-down 0 001 & 02124654 a 0000 | not in working order; "had to push the broken-down car"; "a broken-down tractor fit only for children to play on" -02125057 00 s 02 burned-out 0 burnt-out 0 001 & 02124654 a 0000 | inoperative as a result of heat or friction; "a burned-out picture tube" -02125198 00 s 01 inoperable 0 001 & 02124654 a 0000 | not able to perform its normal function -02125294 00 s 01 unrepaired 0 001 & 02124654 a 0000 | unserviceable because necessary repairs have not been made -02125409 00 a 01 resident 0 006 + 10523519 n 0101 + 01053920 n 0101 + 01053920 n 0102 + 02648639 v 0102 + 02650552 v 0101 ! 02125601 a 0101 | living in a particular place; "resident aliens" -02125601 00 a 01 nonresident 0 001 ! 02125409 a 0101 | not living in a particular place or owned by permanent residents; "nonresident students who commute to classes"; "nonresident real estate" -02125797 00 a 01 settled 1 006 ! 02126889 a 0101 & 02126140 a 0000 & 02126332 a 0000 & 02126430 a 0000 & 02126694 a 0000 & 02126796 a 0000 | established in a desired position or place; not moving about; "nomads...absorbed among the settled people"; "settled areas"; "I don't feel entirely settled here"; "the advent of settled civilization" -02126140 00 s 01 based 0 001 & 02125797 a 0000 | having a base of operations (often used as a combining form); "a locally based business"; "an Atlanta-based company"; "carrier-based planes" -02126332 00 s 01 built-up 0 001 & 02125797 a 0000 | peopled with settlers; "the built-up areas" -02126430 00 s 04 located 0 placed 0 set 0 situated 0 001 & 02125797 a 0000 | situated in a particular spot or position; "valuable centrally located urban land"; "strategically placed artillery"; "a house set on a hilltop"; "nicely situated on a quiet riverbank" -02126694 00 s 01 nonnomadic 0 001 & 02125797 a 0000 | not nomadic or wandering; "nonnomadic people" -02126796 00 s 02 relocated 0 resettled 0 001 & 02125797 a 0000 | settled in a new location -02126889 00 a 01 unsettled 1 010 ! 02125797 a 0101 & 02127159 a 0000 & 02127509 a 0000 & 02127693 a 0000 & 02127815 a 0000 & 02128084 a 0000 & 02128388 a 0000 & 02128566 a 0000 & 02128736 a 0000 & 02128922 a 0000 | not settled or established; "an unsettled lifestyle" -02127159 00 s 05 aimless 0 drifting 0 floating 0 vagabond 1 vagrant 0 006 & 02126889 a 0000 + 10744544 n 0501 + 13943236 n 0501 + 10744544 n 0404 + 09468237 n 0401 + 05174326 n 0102 | continually changing especially as from one abode or occupation to another; "a drifting double-dealer"; "the floating population"; "vagrant hippies of the sixties" -02127509 00 s 03 erratic 0 planetary 0 wandering 1 001 & 02126889 a 0000 | having no fixed course; "an erratic comet"; "his life followed a wandering course"; "a planetary vagabond" -02127693 00 s 02 homeless 0 stateless 0 001 & 02126889 a 0000 | without nationality or citizenship; "stateless persons" -02127815 00 s 02 migrant 0 migratory 0 004 & 02126889 a 0000 + 01857093 v 0201 + 01856626 v 0201 + 01857093 v 0101 | habitually moving from place to place especially in search of seasonal work; "appalled by the social conditions of migrant life"; "migratory workers" -02128084 00 s 05 mobile 0 nomadic 0 peregrine 0 roving 0 wandering 2 003 & 02126889 a 0000 + 01611472 n 0301 + 04773351 n 0101 | migratory; "a restless mobile society"; "the nomadic habits of the Bedouins"; "believed the profession of a peregrine typist would have a happy future"; "wandering tribes" -02128388 00 s 02 peripatetic 0 wayfaring 0 002 & 02126889 a 0000 + 09808080 n 0103 | traveling especially on foot; "peripatetic country preachers"; "a poor wayfaring stranger" -02128566 00 s 01 itinerant 0 003 & 02126889 a 0000 + 10217831 n 0101 + 02102247 v 0101 | traveling from place to place to work; "itinerant labor"; "an itinerant judge" -02128736 00 s 02 rootless 0 vagabond 2 002 & 02126889 a 0000 + 09468237 n 0201 | wandering aimlessly without ties to a place or community; "led a vagabond life"; "a rootless wanderer" -02128922 00 s 01 unlocated 0 001 & 02126889 a 0000 | lacking a particular location -02129007 00 a 01 migratory 0 002 + 01857093 v 0101 ! 02129136 a 0101 | used of animals that move seasonally; "migratory birds" -02129136 00 a 02 nonmigratory 0 resident 4 002 + 01053920 n 0201 ! 02129007 a 0101 | used of animals that do not migrate -02129259 00 a 01 settled 2 007 ! 02130514 a 0101 & 02129535 a 0000 & 02129718 a 0000 & 02129908 a 0000 & 02130137 a 0000 & 02130272 a 0000 & 02130391 a 0000 | established or decided beyond dispute or doubt; "with details of the wedding settled she could now sleep at night" -02129535 00 s 03 accomplished 0 effected 0 established 0 001 & 02129259 a 0000 | settled securely and unconditionally; "that smoking causes health problems is an accomplished fact" -02129718 00 s 04 appointed 0 decreed 0 ordained 0 prescribed 0 001 & 02129259 a 0000 | fixed or established especially by order or command; "at the time appointed (or the appointed time") -02129908 00 s 03 determined 0 dictated 0 set 0 001 & 02129259 a 0000 | determined or decided upon as by an authority; "date and place are already determined"; "the dictated terms of surrender"; "the time set for the launching" -02130137 00 s 01 deterministic 0 002 & 02129259 a 0000 + 05971086 n 0101 | an inevitable consequence of antecedent sufficient causes -02130272 00 s 01 firm 0 001 & 02129259 a 0000 | not subject to revision or change; "a firm contract"; "a firm offer" -02130391 00 s 01 preconcerted 0 001 & 02129259 a 0000 | previously arranged or agreed on; "following preconcerted plans" -02130514 00 a 01 unsettled 2 003 ! 02129259 a 0101 & 02130672 a 0000 & 02130821 a 0000 | still in doubt; "an unsettled issue"; "an unsettled state of mind" -02130672 00 s 02 doubtful 0 tentative 0 002 & 02130514 a 0000 + 05698247 n 0105 | unsettled in mind or opinion; "drew a few tentative conclusions" -02130821 00 s 04 open 0 undecided 0 undetermined 0 unresolved 0 001 & 02130514 a 0000 | not brought to a conclusion; subject to further thought; "an open question"; "our position on this bill is still undecided"; "our lawsuit is still undetermined" -02131072 00 a 01 sexy 0 024 ^ 00921014 a 0000 ^ 02097268 a 0000 + 07487695 n 0101 + 07489059 n 0104 ! 02134999 a 0101 & 02131668 a 0000 & 02131834 a 0000 & 02131958 a 0000 & 02132080 a 0000 & 02132224 a 0000 & 02132607 a 0000 & 02132735 a 0000 & 02132967 a 0000 & 02133207 a 0000 & 02133431 a 0000 & 02133653 a 0000 & 02133779 a 0000 & 02134162 a 0000 & 02134286 a 0000 & 02134397 a 0000 & 02134557 a 0000 & 02134701 a 0000 & 02134802 a 0000 & 02134896 a 0000 | marked by or tending to arouse sexual desire or interest; "feeling sexy"; "sexy clothes"; "sexy poses"; "a sexy book"; "sexy jokes" -02131668 00 s 06 aroused 0 horny 0 randy 0 ruttish 0 steamy 0 turned_on(p) 0 002 & 02131072 a 0000 + 14038027 n 0201 | feeling great sexual desire; "feeling horny" -02131834 00 s 01 autoerotic 0 002 & 02131072 a 0000 + 00855527 n 0101 | sexually satisfying yourself (as by masturbation) -02131958 00 s 02 coquettish 0 flirtatious 0 003 & 02131072 a 0000 + 09965134 n 0202 + 00512522 n 0201 | like a coquette -02132080 00 s 02 erotic 0 titillating 0 003 & 02131072 a 0000 + 09559896 n 0101 + 07487955 n 0102 | giving sexual pleasure; sexually arousing -02132224 00 s 08 blue 0 gamy 0 gamey 0 juicy 1 naughty 0 racy 0 risque 0 spicy 0 004 & 02131072 a 0000 + 04902283 n 0804 + 04902283 n 0602 + 04902283 n 0201 | suggestive of sexual impropriety; "a blue movie"; "blue jokes"; "he skips asterisks and gives you the gamy details"; "a juicy scandal"; "a naughty wink"; "naughty words"; "racy anecdotes"; "a risque story"; "spicy gossip" -02132607 00 s 01 hot 0 002 & 02131072 a 0000 + 14038027 n 0102 | sexually excited or exciting; "was hot for her"; "hot pants" -02132735 00 s 02 intimate 0 sexual 0 001 & 02131072 a 0000 | involved in a sexual relationship; "the intimate (or sexual) relations between husband and wife"; "she had been intimate with many men"; "he touched her intimate parts" -02132967 00 s 05 juicy 0 luscious 0 red-hot 0 toothsome 0 voluptuous 0 002 & 02131072 a 0000 + 05210820 n 0502 | having strong sexual appeal; "juicy barmaids"; "a red-hot mama"; "a voluptuous woman"; "a toothsome blonde in a tight dress" -02133207 00 s 04 lascivious 0 lewd 0 libidinous 0 lustful 2 004 & 02131072 a 0000 + 07489714 n 0403 + 07489548 n 0301 + 07490214 n 0103 | driven by lust; preoccupied with or exhibiting lustful desires; "libidinous orgies" -02133431 00 s 01 lecherous 0 004 & 02131072 a 0000 + 00856733 n 0101 + 10552980 n 0102 + 07489714 n 0101 | given to excessive indulgence in sexual activity; "a lecherous gleam in his eye"; "a lecherous good-for-nothing" -02133653 00 s 01 leering 0 001 & 02131072 a 0000 | (of a glance) sidelong and slyly lascivious; "leering drugstore cowboys" -02133779 00 s 04 lubricious 0 lustful 1 prurient 0 salacious 0 006 & 02131072 a 0000 + 04903368 n 0404 + 04903368 n 0405 + 07490214 n 0302 + 07490214 n 0301 + 07489714 n 0203 | characterized by lust; "eluding the lubricious embraces of her employer"; "her sensuous grace roused his lustful nature"; "prurient literature"; "prurient thoughts"; "a salacious rooster of a little man" -02134162 00 s 01 orgiastic 0 003 & 02131072 a 0000 + 00511212 n 0101 + 01030280 n 0101 | used of frenzied sexual activity -02134286 00 s 02 oversexed 0 highly-sexed 0 001 & 02131072 a 0000 | having excessive sexual desire or appeal -02134397 00 s 02 pornographic 0 adult 0 002 & 02131072 a 0000 + 00747215 n 0101 | designed to arouse lust; "pornographic films and magazines"; "adult movies" -02134557 00 s 01 provocative 0 001 & 02131072 a 0000 | exciting sexual desire; "her gestures and postures became more wanton and provocative" -02134701 00 s 01 raunchy 0 001 & 02131072 a 0000 | earthy and sexually explicit; "a raunchy novel" -02134802 00 s 01 sexed 0 001 & 02131072 a 0000 | characterized by sexuality; "highly sexed" -02134896 00 s 01 sex-starved 0 001 & 02131072 a 0000 | desiring but deprived of sexual gratification -02134999 00 a 01 unsexy 0 004 ! 02131072 a 0101 & 02135138 a 0000 & 02135213 a 0000 & 02135290 a 0000 | not sexually aroused or arousing -02135138 00 s 01 sexless 1 001 & 02134999 a 0000 | sexually unattractive -02135213 00 s 01 sexless 2 001 & 02134999 a 0000 | having no sexual desire -02135290 00 s 01 undersexed 0 001 & 02134999 a 0000 | having a subnormal degree of sexual desire -02135389 00 a 01 sexual 0 006 = 05006898 n 0000 + 00844254 n 0103 ! 02135913 a 0101 & 02135595 a 0000 & 02135692 a 0000 & 02135773 a 0000 | having or involving sex; "sexual reproduction"; "sexual spores" -02135595 00 s 01 intersexual 0 001 & 02135389 a 0000 | existing or occurring between the sexes -02135692 00 s 01 sexed 0 001 & 02135389 a 0000 | having sexual differentiation -02135773 00 s 01 unisexual 0 001 & 02135389 a 0000 | relating to only one sex or having only one type of sexual organ; not hermaphroditic -02135913 00 a 02 asexual 0 nonsexual 0 007 = 05006898 n 0000 + 05008085 n 0101 ! 02135389 a 0101 & 02136158 a 0000 & 02136423 a 0000 & 02136522 a 0000 & 02136665 a 0000 | not having or involving sex; "an asexual spore"; "asexual reproduction" -02136158 00 s 05 agamic 0 agamous 0 agamogenetic 0 apomictic 0 parthenogenetic 0 005 & 02135913 a 0000 + 13532501 n 0501 + 13433727 n 0401 + 13434120 n 0302 + 11547737 n 0101 | (of reproduction) not involving the fusion of male and female gametes in reproduction -02136423 00 s 01 fissiparous 0 002 & 02135913 a 0000 ;c 06037666 n 0000 | reproducing by fission -02136522 00 s 02 neuter 0 sexless 2 002 & 02135913 a 0000 + 05008085 n 0202 | having no or imperfectly developed or nonfunctional sex organs -02136665 00 s 02 vegetal 0 vegetative 0 002 & 02135913 a 0000 + 00055709 v 0201 | (of reproduction) characterized by asexual processes -02136802 00 a 02 castrated 0 unsexed 0 004 ! 02137305 a 0101 & 02136970 a 0000 & 02137070 a 0000 & 02137205 a 0000 | deprived of sexual capacity or sexual attributes -02136970 00 s 02 altered 0 neutered 0 001 & 02136802 a 0000 | having testicles or ovaries removed -02137070 00 s 03 cut 0 emasculated 0 gelded 0 001 & 02136802 a 0000 | (of a male animal) having the testicles removed; "a cut horse" -02137205 00 s 01 spayed 0 001 & 02136802 a 0000 | (of a female animal) having the ovaries removed -02137305 00 a 01 uncastrated 0 002 ! 02136802 a 0101 & 02137394 a 0000 | not castrated -02137394 00 s 02 entire 0 intact 0 002 & 02137305 a 0000 + 14460407 n 0201 | (used of domestic animals) sexually competent; "an entire horse" -02137538 00 a 03 aphrodisiac 0 aphrodisiacal 0 sexy 4 005 + 07487695 n 0301 + 07489059 n 0304 + 02727281 n 0201 + 02727281 n 0101 ! 02137713 a 0101 | exciting sexual desire -02137713 00 a 01 anaphrodisiac 0 001 ! 02137538 a 0101 | tending to diminish sexual desire -02137806 00 a 01 estrous 0 005 ;c 01861778 n 0000 + 14038264 n 0101 ! 02138257 a 0101 & 02138034 a 0000 & 02138138 a 0000 | (of lower mammals) showing or in a state of estrus; in heat; "the estrous state"; "the estrous cycle" -02138034 00 s 02 monestrous 0 monoestrous 0 001 & 02137806 a 0000 | having one estrous cycle per year -02138138 00 s 02 polyestrous 0 polyoestrous 0 001 & 02137806 a 0000 | having more than one period of estrus per year -02138257 00 a 01 anestrous 0 003 ;c 01861778 n 0000 ! 02137806 a 0101 & 02138428 a 0000 | (of lower mammals) not in a state of estrus; not in heat; "an anestrous bitch" -02138428 00 s 04 diestrous 0 dioestrous 0 diestrual 0 dioestrual 0 003 & 02138257 a 0000 + 14038743 n 0302 + 14038743 n 0301 | (of animals that have several estrous cycles in one breeding season) in a period of sexual inactivity -02138659 00 a 01 shapely 0 012 + 04677514 n 0102 + 04686748 n 0102 ! 02140492 a 0101 & 02138989 a 0000 & 02139403 a 0000 & 02139563 a 0000 & 02139652 a 0000 & 02139793 a 0000 & 02139884 a 0000 & 02140144 a 0000 & 02140305 a 0000 & 02140392 a 0000 | having a well-proportioned and pleasing shape; "a slim waist and shapely legs" -02138989 00 s 0b bosomy 0 busty 0 buxom 0 curvaceous 0 curvy 0 full-bosomed 0 sonsie 0 sonsy 0 stacked 0 voluptuous 0 well-endowed 0 007 & 02138659 a 0000 + 04686748 n 0a03 + 04686748 n 0401 + 05001302 n 0301 + 05551494 n 0202 + 05553486 n 0101 + 05554405 n 0102 | (of a woman's body) having a large bosom and pleasing curves; "Hollywood seems full of curvaceous blondes"; "a curvy young woman in a tight dress" -02139403 00 s 02 callipygian 0 callipygous 0 001 & 02138659 a 0000 | pertaining to or having finely developed buttocks; "the quest for the callipygian ideal" -02139563 00 s 01 clean-limbed 0 001 & 02138659 a 0000 | having well-proportioned limbs -02139652 00 s 02 full-fashioned 0 fully_fashioned 0 001 & 02138659 a 0000 | knitted to fit the shape of the body; "full-fashioned hosiery" -02139793 00 s 02 Junoesque 0 statuesque 0 001 & 02138659 a 0000 | suggestive of a statue -02139884 00 s 04 modeled 0 sculptural 0 sculptured 0 sculpturesque 0 002 & 02138659 a 0000 + 04157320 n 0201 | resembling sculpture; "her finely modeled features"; "rendered with...vivid sculptural effect"; "the sculpturesque beauty of the athletes' bodies" -02140144 00 s 03 retrousse 0 tip-tilted 0 upturned 0 001 & 02138659 a 0000 | (used of noses) turned up at the end; "a retrousse nose"; "a small upturned nose" -02140305 00 s 01 well-proportioned 0 001 & 02138659 a 0000 | of pleasing proportions -02140392 00 s 01 well-turned 0 001 & 02138659 a 0000 | of a pleasing shape; "a well-turned ankle" -02140492 00 a 01 unshapely 0 013 ^ 02373599 a 0000 ! 02138659 a 0101 & 02140834 a 0000 & 02141021 a 0000 & 02141209 a 0000 & 02141298 a 0000 & 02141644 a 0000 & 02141735 a 0000 & 02141867 a 0000 & 02142063 a 0000 & 02142139 a 0000 & 02142306 a 0000 & 02142446 a 0000 | not well-proportioned and pleasing in shape; "a stout unshapely woman" -02140834 00 s 01 acromegalic 0 002 & 02140492 a 0000 + 14368483 n 0101 | marked or affected by enlargement or hypertrophy of the extremities or the face; "a protruding acromegalic jaw" -02141021 00 s 02 chunky 0 lumpy 0 003 & 02140492 a 0000 + 09307300 n 0202 + 07961016 n 0106 | like or containing small sticky lumps; "the dumplings were chunky pieces of uncooked dough" -02141209 00 s 02 clubfooted 0 taliped 0 001 & 02140492 a 0000 | having a deformed foot -02141298 00 s 05 deformed 0 distorted 0 ill-shapen 0 malformed 0 misshapen 0 004 & 02140492 a 0000 + 14213512 n 0503 + 14213512 n 0101 + 04691178 n 0103 | so badly formed or out of shape as to be ugly; "deformed thalidomide babies"; "his poor distorted limbs"; "an ill-shapen vase"; "a limp caused by a malformed foot"; "misshapen old fingers" -02141644 00 s 01 ill-proportioned 0 001 & 02140492 a 0000 | lacking pleasing proportions -02141735 00 s 02 knobby 0 knobbly 0 003 & 02140492 a 0000 + 03626418 n 0201 + 13895986 n 0102 | having knobs; "had knobbly knees" -02141867 00 s 03 nodular 0 nodulated 0 noduled 0 004 & 02140492 a 0000 + 13088989 n 0101 + 09371941 n 0101 + 05265038 n 0101 | having nodules or occurring in the form of nodules; "nodular ores" -02142063 00 s 01 nodulose 0 001 & 02140492 a 0000 | having minute nodules -02142139 00 s 02 pigeon-breasted 0 chicken-breasted 0 001 & 02140492 a 0000 | having a chest deformity marked by a projecting breastbone caused by infantile rickets -02142306 00 s 01 shapeless 0 002 & 02140492 a 0000 + 04691861 n 0101 | lacking symmetry or attractive form; "a shapeless hat on his head" -02142446 00 s 01 torulose 0 002 & 02140492 a 0000 ;c 06066555 n 0000 | of a cylindrical or ellipsoid body; swollen and constricted at intervals -02142592 00 a 01 breasted 0 002 ! 02142983 a 0101 & 02142787 a 0000 | having a breast or breasts; or breasts as specified; used chiefly in compounds; "small-breasted"; "red-breasted sandpiper" -02142787 00 s 01 bosomed 0 001 & 02142592 a 0000 | having a bosom as specified or having something likened to a bosom; usually used in compounds; "full-bosomed women"; "the green-bosomed earth" -02142983 00 a 01 breastless 0 001 ! 02142592 a 0101 | without a breast -02143056 00 a 01 formed 0 073 ! 02151705 a 0101 & 02144436 a 0000 & 02144834 a 0000 & 02144913 a 0000 & 02144988 a 0000 & 02145135 a 0000 & 02145209 a 0000 & 02145308 a 0000 & 02145388 a 0000 & 02145464 a 0000 & 02145598 a 0000 & 02145674 a 0000 & 02145754 a 0000 & 02145832 a 0000 & 02145918 a 0000 & 02146029 a 0000 & 02146159 a 0000 & 02146235 a 0000 & 02146347 a 0000 & 02146481 a 0000 & 02146557 a 0000 & 02146645 a 0000 & 02146760 a 0000 & 02146864 a 0000 & 02146949 a 0000 & 02147033 a 0000 & 02147117 a 0000 & 02147203 a 0000 & 02147297 a 0000 & 02147387 a 0000 & 02147477 a 0000 & 02147567 a 0000 & 02147653 a 0000 & 02147739 a 0000 & 02147825 a 0000 & 02147922 a 0000 & 02148011 a 0000 & 02148109 a 0000 & 02148187 a 0000 & 02148277 a 0000 & 02148361 a 0000 & 02148450 a 0000 & 02148526 a 0000 & 02148648 a 0000 & 02148728 a 0000 & 02148805 a 0000 & 02148917 a 0000 & 02149070 a 0000 & 02149153 a 0000 & 02149245 a 0000 & 02149412 a 0000 & 02149502 a 0000 & 02149597 a 0000 & 02149695 a 0000 & 02149787 a 0000 & 02150029 a 0000 & 02150130 a 0000 & 02150220 a 0000 & 02150308 a 0000 & 02150397 a 0000 & 02150489 a 0000 & 02150569 a 0000 & 02150658 a 0000 & 02150750 a 0000 & 02150842 a 0000 & 02150960 a 0000 & 02151050 a 0000 & 02151145 a 0000 & 02151234 a 0000 & 02151320 a 0000 & 02151438 a 0000 & 02151527 a 0000 & 02151616 a 0000 | having or given a form or shape -02144436 00 s 06 ductile 0 malleable 0 pliable 0 pliant 0 tensile 0 tractile 0 006 & 02143056 a 0000 + 05023022 n 0402 + 05023022 n 0401 + 05022709 n 0302 + 05021884 n 0201 + 05022173 n 0101 | capable of being shaped or bent or drawn out; "ductile copper"; "malleable metals such as gold"; "they soaked the leather to made it pliable"; "pliant molten glass"; "made of highly tensile steel alloy" -02144834 00 s 01 acorn-shaped 0 001 & 02143056 a 0000 | shaped like an acorn -02144913 00 s 01 awl-shaped 0 001 & 02143056 a 0000 | shaped like an awl -02144988 00 s 05 bacillar 0 bacillary 0 bacilliform 0 baculiform 0 rod-shaped 0 002 & 02143056 a 0000 + 01349948 n 0201 | formed like a bacillus -02145135 00 s 01 bag-shaped 0 001 & 02143056 a 0000 | shaped like a bag -02145209 00 s 01 bar-shaped 0 001 & 02143056 a 0000 | shaped like a rigid strip of metal or wood -02145308 00 s 01 basket-shaped 0 001 & 02143056 a 0000 | shaped like a basket -02145388 00 s 01 belt-shaped 0 001 & 02143056 a 0000 | shaped like a belt -02145464 00 s 01 biform 0 001 & 02143056 a 0000 | having or combining two forms; "a biform crystal"; "the biform body of a mermaid" -02145598 00 s 01 boot-shaped 0 001 & 02143056 a 0000 | shaped like a boot -02145674 00 s 01 bottle-shaped 0 001 & 02143056 a 0000 | shaped like a bottle -02145754 00 s 01 botuliform 0 001 & 02143056 a 0000 | shaped like a sausage -02145832 00 s 01 butterfly-shaped 0 001 & 02143056 a 0000 | shaped like a butterfly -02145918 00 s 01 button-shaped 0 001 & 02143056 a 0000 | shaped like a button; "button-shaped white flowers" -02146029 00 s 02 catenulate 0 chainlike 0 001 & 02143056 a 0000 | having a chainlike form; "catenulate bacterial cell colonies" -02146159 00 s 01 claw-shaped 0 001 & 02143056 a 0000 | shaped like a claw -02146235 00 s 01 club-shaped 0 001 & 02143056 a 0000 | shaped in the form of a club that is larger at one end -02146347 00 s 01 club-shaped 1 001 & 02143056 a 0000 | shaped in the form of the black trefoil or clover leaf on some playing cards -02146481 00 s 01 cowl-shaped 0 001 & 02143056 a 0000 | shaped like a cowl -02146557 00 s 01 cross-shaped 0 001 & 02143056 a 0000 | shaped in the form of a cross -02146645 00 s 01 die-cast 0 001 & 02143056 a 0000 | formed by forcing molten metal into a die; "a die-cast seal" -02146760 00 s 02 drum-shaped 0 drum-like 0 001 & 02143056 a 0000 | shaped in a form resembling a drum -02146864 00 s 01 eel-shaped 0 001 & 02143056 a 0000 | shaped in the form of an eel -02146949 00 s 01 fan-shaped 0 001 & 02143056 a 0000 | shaped in the form of a fan -02147033 00 s 01 fig-shaped 0 001 & 02143056 a 0000 | shaped in the form of a fig -02147117 00 s 01 foot-shaped 0 001 & 02143056 a 0000 | shaped in the form of a foot -02147203 00 s 01 football-shaped 0 001 & 02143056 a 0000 | shaped in the form of a football -02147297 00 s 01 funnel-shaped 0 001 & 02143056 a 0000 | shaped in the form of a funnel -02147387 00 s 01 guitar-shaped 0 001 & 02143056 a 0000 | shaped in the form of a guitar -02147477 00 s 01 hammer-shaped 0 001 & 02143056 a 0000 | shaped in the form of a hammer -02147567 00 s 01 harp-shaped 0 001 & 02143056 a 0000 | shaped in the form of a harp -02147653 00 s 01 hook-shaped 0 001 & 02143056 a 0000 | shaped in the form of a hook -02147739 00 s 01 horn-shaped 0 001 & 02143056 a 0000 | shaped in the form of a horn -02147825 00 s 01 hourglass-shaped 0 001 & 02143056 a 0000 | shaped in the form of an hourglass -02147922 00 s 01 H-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter H -02148011 00 s 01 keel-shaped 0 001 & 02143056 a 0000 | shaped in the form of the keel of a boat -02148109 00 s 01 lance-shaped 0 001 & 02143056 a 0000 | shaped like a lance -02148187 00 s 01 lancet-shaped 0 001 & 02143056 a 0000 | shaped in the form of a lancet -02148277 00 s 01 lip-shaped 0 001 & 02143056 a 0000 | shaped in the form of a lip -02148361 00 s 01 L-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter L -02148450 00 s 01 lyre-shaped 0 001 & 02143056 a 0000 | shaped like a lyre -02148526 00 s 02 navicular 0 scaphoid 0 003 & 02143056 a 0000 ;c 06057539 n 0000 + 05272276 n 0103 | shaped like a boat -02148648 00 s 01 nutmeg-shaped 0 001 & 02143056 a 0000 | shaped like a nutmeg -02148728 00 s 01 oven-shaped 0 001 & 02143056 a 0000 | shaped like an oven -02148805 00 s 01 paddle-shaped 0 001 & 02143056 a 0000 | shaped in the form of a paddle; "paddle-shaped fins" -02148917 00 s 01 perfected 0 001 & 02143056 a 0000 | (of plans, ideas, etc.) perfectly formed; "a graceful but not yet fully perfected literary style" -02149070 00 s 01 phylliform 0 001 & 02143056 a 0000 | having the shape of a leaf -02149153 00 s 01 pitcher-shaped 0 001 & 02143056 a 0000 | shaped in the form of a pitcher -02149245 00 s 01 precast 0 001 & 02143056 a 0000 | of structural members especially of concrete; cast into form before being transported to the site of installation -02149412 00 s 01 ribbon-shaped 0 001 & 02143056 a 0000 | shaped in the form of a ribbon -02149502 00 s 01 rudder-like 0 001 & 02143056 a 0000 | formed like and serving like a rudder -02149597 00 s 01 saddle-shaped 0 001 & 02143056 a 0000 | shaped in the form of a horse's saddle -02149695 00 s 01 slipper-shaped 0 001 & 02143056 a 0000 | shaped in the form of a slipper -02149787 00 s 03 shaped 0 molded 0 wrought 0 001 & 02143056 a 0000 | shaped to fit by or as if by altering the contours of a pliable mass (as by work or effort); "a shaped handgrip"; "the molded steel plates"; "the wrought silver bracelet" -02150029 00 s 02 spade-shaped 0 spade-like 0 001 & 02143056 a 0000 | shaped in the form of a spade -02150130 00 s 01 spider-shaped 0 001 & 02143056 a 0000 | shaped in the form of a spider -02150220 00 s 01 spoon-shaped 0 001 & 02143056 a 0000 | shaped in the form of a spoon -02150308 00 s 01 s-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter S -02150397 00 s 01 stirrup-shaped 0 001 & 02143056 a 0000 | shaped in the form of a stirrup -02150489 00 s 01 tassel-shaped 0 001 & 02143056 a 0000 | shaped like a tassel -02150569 00 s 01 T-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter T -02150658 00 s 01 tadpole-shaped 0 001 & 02143056 a 0000 | shaped in the form of a tadpole -02150750 00 s 01 thimble-shaped 0 001 & 02143056 a 0000 | shaped in the form of a thimble -02150842 00 s 01 trumpet-shaped 0 001 & 02143056 a 0000 | shaped in the form of a trumpet; "trumpet-shaped flowers" -02150960 00 s 01 turnip-shaped 0 001 & 02143056 a 0000 | shaped in the form of a turnip -02151050 00 s 01 umbrella-shaped 0 001 & 02143056 a 0000 | shaped in the form of an umbrella -02151145 00 s 01 U-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter U -02151234 00 s 01 vase-shaped 0 001 & 02143056 a 0000 | shaped in the form of a vase -02151320 00 s 02 vermiform 0 worm-shaped 0 001 & 02143056 a 0000 | resembling a worm; long and thin and cylindrical -02151438 00 s 01 v-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter V -02151527 00 s 01 W-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter W -02151616 00 s 01 Y-shaped 0 001 & 02143056 a 0000 | shaped in the form of the letter Y -02151705 00 a 01 unformed 0 003 ! 02143056 a 0101 & 02151837 a 0000 & 02152078 a 0000 | not having form or shape; "unformed clay" -02151837 00 s 03 amorphous 0 formless 0 shapeless 0 002 & 02151705 a 0000 + 13909889 n 0301 | having no definite form or distinct shape; "amorphous clouds of insects"; "an aggregate of formless particles"; "a shapeless mass of protoplasm" -02152078 00 s 02 unshaped 0 unshapen 0 001 & 02151705 a 0000 | incompletely or imperfectly shaped; "unshaped dough"; "unshaped timbers" -02152216 00 a 01 shared 0 004 ^ 02111684 a 0000 ! 02152848 a 0101 & 02152473 a 0000 & 02152716 a 0000 | have in common; held or experienced in common; "two shared valence electrons forming a bond between adjacent nuclei"; "a shared interest in philately" -02152473 00 s 02 common 0 mutual 0 005 & 02152216 a 0000 + 13843401 n 0201 + 13841863 n 0201 + 04764741 n 0102 + 04764741 n 0101 | common to or shared by two or more parties; "a common friend"; "the mutual interests of management and labor" -02152716 00 s 01 joint 0 001 & 02152216 a 0000 | affecting or involving two or more; "joint income-tax return"; "joint ownership" -02152848 00 a 01 unshared 0 005 ^ 02109678 a 0000 ! 02152216 a 0101 & 02152985 a 0000 & 02153174 a 0000 & 02153359 a 0000 | not shared -02152985 00 s 02 exclusive 0 sole(a) 0 002 & 02152848 a 0000 + 00615774 v 0101 | not divided or shared with others; "they have exclusive use of the machine"; "sole rights of publication" -02153174 00 s 02 individual 0 single(a) 0 001 & 02152848 a 0000 | characteristic of or meant for a single person or thing; "an individual serving"; "single occupancy"; "a single bed" -02153359 00 s 01 undivided 0 001 & 02152848 a 0000 | not shared by or among others; "undivided responsibility" -02153472 00 a 02 shaven 0 shaved 0 003 ! 02153817 a 0101 & 02153620 a 0000 & 02153705 a 0000 | having the beard or hair cut off close to the skin -02153620 00 s 02 beardless 0 whiskerless 0 001 & 02153472 a 0000 | having no beard -02153705 00 s 03 clean-shaven 0 smooth-shaven 0 well-shaven 0 001 & 02153472 a 0000 | closely shaved recently -02153817 00 a 02 unshaven 0 unshaved 0 005 ! 02153472 a 0101 & 02153965 a 0000 & 02154118 a 0000 & 02154247 a 0000 & 02154334 a 0000 | not shaved -02153965 00 s 05 bearded 0 barbate 0 bewhiskered 0 whiskered 0 whiskery 0 002 & 02153817 a 0000 + 01901828 n 0501 | having hair on the cheeks and chin -02154118 00 s 03 bestubbled 0 stubbled 0 stubbly 0 001 & 02153817 a 0000 | having a short growth of beard; "his stubbled chin" -02154247 00 s 01 goateed 0 001 & 02153817 a 0000 | having a small pointed chin beard -02154334 00 s 02 mustachioed 0 mustached 0 001 & 02153817 a 0000 | having a moustache -02154422 00 a 02 sheared 0 shorn 0 001 ! 02154635 a 0101 | having the hair or wool cut or clipped off as if with shears or clippers; "picked up the baby's shorn curls from the floor"; "naked as a sheared sheep" -02154635 00 a 02 unsheared 0 unshorn 0 001 ! 02154422 a 0101 | not sheared; "a grizzly unshorn beard"; "unshorn sheep" -02154756 00 a 01 sheathed 0 005 ! 02155524 a 0101 & 02155054 a 0000 & 02155233 a 0000 & 02155361 a 0000 & 02155454 a 0000 | enclosed in a protective covering; sometimes used in combination; "his sheathed sword"; "the cat's sheathed claws"; "a ship's bottom sheathed in copper"; "copper-sheathed" -02155054 00 s 03 cased 0 encased 0 incased 0 001 & 02154756 a 0000 | covered or protected with or as if with a case; "knights cased in steel"; "products encased in leatherette" -02155233 00 s 01 clad 0 001 & 02154756 a 0000 | having an outer covering especially of thin metal; "steel-clad"; "armor-clad" -02155361 00 s 01 ironclad 0 001 & 02154756 a 0000 | sheathed in iron plates for protection -02155454 00 s 01 podlike 0 001 & 02154756 a 0000 | resembling a pod -02155524 00 a 02 unsheathed 0 bare 4 002 + 04697819 n 0201 ! 02154756 a 0101 | not having a protective covering; "unsheathed cables"; "a bare blade" -02155675 00 a 02 shockable 0 narrow-minded 4 001 ! 02155771 a 0101 | capable of being shocked -02155771 00 a 02 unshockable 0 broad-minded 4 002 + 06204623 n 0201 ! 02155675 a 0101 | incapable of being shocked; "he was warmhearted, sensible and unshockable" -02155936 00 a 03 shod 0 shodden 0 shoed 0 006 ! 02156579 a 0101 & 02156111 a 0000 & 02156177 a 0000 & 02156293 a 0000 & 02156421 a 0000 & 02156505 a 0000 | wearing footgear -02156111 00 s 01 booted 0 001 & 02155936 a 0000 | wearing boots -02156177 00 s 01 ironshod 0 001 & 02155936 a 0000 | shod or cased with iron; "ironshod hooves"; "ironshod wheels" -02156293 00 s 01 roughshod 0 001 & 02155936 a 0000 | (of a horse) having horseshoes with projecting nails to prevent slipping -02156421 00 s 02 sandaled 0 sandalled 0 001 & 02155936 a 0000 | shod with sandals -02156505 00 s 01 slippered 0 001 & 02155936 a 0000 | shod with slippers -02156579 00 a 02 unshod 0 unshoed 0 003 ! 02155936 a 0101 & 02156686 a 0000 & 02156822 a 0000 | not shod -02156686 00 s 03 barefoot 0 barefooted 0 shoeless 0 001 & 02156579 a 0000 | without shoes; "the barefoot boy"; "shoeless Joe Jackson" -02156822 00 s 01 stockinged 0 001 & 02156579 a 0000 | wearing stockings; "walks about in his stockinged feet" -02156934 00 a 02 calced 0 shod 4 001 ! 02157041 a 0101 | used of certain religious orders who wear shoes -02157041 00 a 03 discalced 0 discalceate 0 unshod 4 002 ;c 05946687 n 0000 ! 02156934 a 0101 | (used of certain religious orders) barefoot or wearing only sandals; "discalced friars" -02157226 00 a 03 nearsighted 0 shortsighted 0 myopic 0 004 + 14553290 n 0301 + 14553290 n 0203 + 14553290 n 0102 ! 02157399 a 0101 | unable to see distant objects clearly -02157399 00 a 02 farsighted 0 presbyopic 0 006 + 14555214 n 0201 + 14554011 n 0104 ! 02157226 a 0101 & 02157594 a 0000 & 02157747 a 0000 & 02157936 a 0000 | able to see distant objects clearly -02157594 00 s 04 eagle-eyed 0 keen-sighted 0 farseeing 0 longsighted 0 002 & 02157399 a 0000 + 14554011 n 0405 | capable of seeing to a great distance -02157747 00 s 02 hyperopic 0 hypermetropic 0 005 & 02157399 a 0000 ;c 06054446 n 0000 + 14554011 n 0203 + 14554011 n 0202 + 14554011 n 0101 | abnormal ability to focus of distant objects -02157936 00 s 01 telescopic 0 002 & 02157399 a 0000 + 04403638 n 0101 | capable of discerning distant objects; "a telescopic eye"; "telescopic vision" -02158089 00 a 01 shrinkable 0 001 ! 02158192 a 0101 | capable of being shrunk; "a shrinkable fabric" -02158192 00 a 01 unshrinkable 0 001 ! 02158089 a 0101 | incapable of being shrunk or diminished or reduced -02158301 00 a 01 sighted 0 005 + 05656537 n 0103 ! 02158826 a 0101 & 02158438 a 0000 & 02158646 a 0000 & 02158731 a 0000 | able to see -02158438 00 s 07 argus-eyed 0 hawk-eyed 0 keen-sighted 0 lynx-eyed 0 quick-sighted 0 sharp-eyed 0 sharp-sighted 0 002 & 02158301 a 0000 + 05655567 n 0703 | having very keen vision; "quick-sighted as a cat" -02158646 00 s 01 clear-sighted 0 001 & 02158301 a 0000 | having sharp clear vision -02158731 00 s 01 seeing 0 002 & 02158301 a 0000 + 05656537 n 0102 | having vision, not blind -02158826 00 a 02 blind 0 unsighted 4 013 + 14126660 n 0101 ! 02158301 a 0101 & 02159293 a 0000 & 02159364 a 0000 & 02159453 a 0000 & 02159612 a 0000 & 02159787 a 0000 & 02159969 a 0000 & 02160135 a 0000 & 02160291 a 0000 & 02160465 a 0000 & 02160622 a 0000 & 02160696 a 0000 | unable to see; "a person is blind to the extent that he must devise alternative techniques to do efficiently those things he would do with sight if he had normal vision"--Kenneth Jernigan -02159293 00 s 01 blinded 0 001 & 02158826 a 0000 | deprived of sight -02159364 00 s 02 blindfold 0 blindfolded 0 001 & 02158826 a 0000 | wearing a blindfold -02159453 00 s 02 color-blind 0 colour-blind 0 003 & 02158826 a 0000 + 14153010 n 0201 + 14153010 n 0101 | unable to distinguish one or more chromatic colors -02159612 00 s 01 dazzled 0 001 & 02158826 a 0000 | having vision overcome temporarily by or as if by intense light; "she shut her dazzled eyes against the sun's brilliance" -02159787 00 s 02 deuteranopic 0 green-blind 0 003 & 02158826 a 0000 + 14154168 n 0203 + 14154168 n 0101 | inability to see the color green or to distinguish green and purplish-red -02159969 00 s 06 dim-sighted 0 near-blind 0 purblind 0 sand-blind 0 visually_impaired 0 visually_challenged 0 001 & 02158826 a 0000 | having greatly reduced vision -02160135 00 s 03 eyeless 0 sightless 0 unseeing 0 003 & 02158826 a 0000 + 14126660 n 0202 + 14557206 n 0101 | lacking sight; "blind as an eyeless beggar" -02160291 00 s 02 protanopic 0 red-blind 0 003 & 02158826 a 0000 + 14154421 n 0202 + 14154421 n 0101 | inability to see the color red or to distinguish red and bluish-green -02160465 00 s 02 snow-blind 0 snow-blinded 0 002 & 02158826 a 0000 + 14555790 n 0101 | temporarily blinded by exposure to light reflected from snow or ice -02160622 00 s 01 stone-blind 0 001 & 02158826 a 0000 | completely blind -02160696 00 s 02 tritanopic 0 blue-blind 0 003 & 02158826 a 0000 + 14155031 n 0202 + 14155031 n 0101 | inability to see the color blue or to distinguish the colors blue and yellow -02160878 00 a 01 signed 0 003 ! 02161314 a 0101 & 02161016 a 0000 & 02161136 a 0000 | having a handwritten signature; "a signed letter" -02161016 00 s 01 autographed 0 001 & 02160878 a 0000 | bearing an autograph; "an autographed copy of his latest book" -02161136 00 s 01 subscribed 0 002 & 02160878 a 0000 ;c 06520944 n 0000 | (of a contract or will or other document) having a signature written at the end; "the subscribed will" -02161314 00 a 01 unsigned 0 001 ! 02160878 a 0101 | lacking a signature; "the message was typewritten and unsigned" -02161432 00 a 02 significant 0 important 4 017 ^ 01275562 a 0000 ^ 01496976 a 0000 = 05169813 n 0000 + 05168261 n 0201 + 05169813 n 0101 ! 02164402 a 0101 & 02161982 a 0000 & 02162179 a 0000 & 02162458 a 0000 & 02162733 a 0000 & 02162934 a 0000 & 02163307 a 0000 & 02163468 a 0000 & 02163602 a 0000 & 02163774 a 0000 & 02164050 a 0000 & 02164165 a 0000 | important in effect or meaning; "a significant change in tax laws"; "a significant change in the Constitution"; "a significant contribution"; "significant details"; "statistically significant" -02161982 00 s 01 momentous 0 003 & 02161432 a 0000 + 05170574 n 0103 + 05169412 n 0101 | of very great significance; "deciding to drop the atom bomb was a very big decision"; "a momentous event" -02162179 00 s 02 epochal 0 epoch-making 0 002 & 02161432 a 0000 + 15248564 n 0102 | highly significant or important especially bringing about or marking the beginning of a new development or era; "epochal decisions made by Roosevelt and Churchill"; "an epoch-making discovery" -02162458 00 s 03 earthshaking 0 world-shaking 0 world-shattering 0 001 & 02161432 a 0000 | sufficiently significant to affect the whole world; "earthshaking proposals"; "the contest was no world-shaking affair"; "the conversation...could hardly be called world-shattering" -02162733 00 s 02 evidential 0 evidentiary 0 003 & 02161432 a 0000 + 05823932 n 0201 + 05823932 n 0101 | serving as or based on evidence; "evidential signs of a forced entry"; "its evidentiary value" -02162934 00 s 02 fundamental 0 profound 0 002 & 02161432 a 0000 + 05926358 n 0204 | far-reaching and thoroughgoing in effect especially on the nature of something; "the fundamental revolution in human values that has occurred"; "the book underwent fundamental changes"; "committed the fundamental error of confusing spending with extravagance"; "profound social changes" -02163307 00 s 01 large 0 002 & 02161432 a 0000 + 05106317 n 0101 | fairly large or important in effect; influential; "played a large role in the negotiations" -02163468 00 s 01 monumental 0 001 & 02161432 a 0000 | of outstanding significance; "Einstein's monumental contributions to physics" -02163602 00 s 02 noteworthy 0 remarkable 0 001 & 02161432 a 0000 | worthy of notice; "a noteworthy fact is that her students rarely complain"; "a remarkable achievement" -02163774 00 s 02 probative 0 probatory 0 002 & 02161432 a 0000 + 02465297 v 0101 | tending to prove a particular proposition or to persuade you of the truth of an allegation; "evidence should only be excluded if its probative value was outweighed by its prejudicial effect" -02164050 00 s 01 operative 0 001 & 02161432 a 0000 | effective; producing a desired effect; "the operative word" -02164165 00 s 02 portentous 0 prodigious 0 003 & 02161432 a 0000 + 07286368 n 0206 + 07286368 n 0102 | of momentous or ominous significance; "such a portentous...monster raised all my curiosity"- Herman Melville; "a prodigious vision" -02164402 00 a 02 insignificant 0 unimportant 4 012 ^ 01497736 a 0000 ^ 01279978 a 0000 = 05169813 n 0000 + 14436438 n 0202 + 05172596 n 0201 + 05173579 n 0101 ! 02161432 a 0101 & 02164713 a 0000 & 02164913 a 0000 & 02165171 a 0000 & 02165318 a 0000 & 02165432 a 0000 | devoid of importance, meaning, or force -02164713 00 s 02 hole-and-corner 0 hole-in-corner 0 001 & 02164402 a 0000 | relating to the peripheral and unimportant aspects of life; "a hole-and-corner life in some obscure community"- H.G.Wells -02164913 00 s 05 flimsy 3 fragile 0 slight 0 tenuous 0 thin 1 004 & 02164402 a 0000 + 05114781 n 0504 + 05040939 n 0402 + 05173205 n 0303 | lacking substance or significance; "slight evidence"; "a tenuous argument"; "a thin plot"; a fragile claim to fame" -02165171 00 s 01 inappreciable 0 001 & 02164402 a 0000 | too small to make a significant difference; "inappreciable fluctuations in temperature" -02165318 00 s 01 light 0 001 & 02164402 a 0000 | having little importance; "losing his job was no light matter" -02165432 00 s 02 superficial 0 trivial 0 004 & 02164402 a 0000 + 00840413 v 0201 + 04486445 n 0202 + 05820462 n 0203 | of little substance or significance; "a few superficial editorial changes"; "only trivial objections" -02165655 00 a 01 significant 1 002 ;c 06018465 n 0000 ! 02165925 a 0101 | too closely correlated to be attributed to chance and therefore indicating a systematic relation; "the interaction effect is significant at the .01 level"; "no significant difference was found" -02165925 00 a 01 nonsignificant 0 002 ;c 06018465 n 0000 ! 02165655 a 0101 | attributable to chance -02166027 00 a 01 silenced 0 002 ! 02166277 a 0101 & 02166159 a 0000 | reduced to silence; "the silenced crowd waited expectantly" -02166159 00 s 01 suppressed 0 001 & 02166027 a 0000 | manifesting or subjected to suppression; "a suppressed press" -02166277 00 a 01 unsilenced 0 001 ! 02166027 a 0101 | not silenced -02166346 00 a 02 simple 1 unsubdivided 0 037 ^ 02174896 a 0000 ^ 02244619 a 0000 ;c 06066555 n 0000 + 04766059 n 0101 ! 02171024 a 0101 & 02167133 a 0000 & 02167285 a 0000 & 02167405 a 0000 & 02167513 a 0000 & 02167628 a 0000 & 02167740 a 0000 & 02167894 a 0000 & 02168014 a 0000 & 02168132 a 0000 & 02168248 a 0000 & 02168400 a 0000 & 02168549 a 0000 & 02168699 a 0000 & 02168796 a 0000 & 02168904 a 0000 & 02168991 a 0000 & 02169081 a 0000 & 02169175 a 0000 & 02169267 a 0000 & 02169359 a 0000 & 02169467 a 0000 & 02169591 a 0000 & 02169728 a 0000 & 02169844 a 0000 & 02169940 a 0000 & 02170052 a 0000 & 02170199 a 0000 & 02170411 a 0000 & 02170546 a 0000 & 02170673 a 0000 & 02170821 a 0000 & 02170957 a 0000 | (botany) of leaf shapes; of leaves having no divisions or subdivisions -02167133 00 s 04 acerate 0 acerose 0 acicular 0 needle-shaped 0 002 & 02166346 a 0000 + 09187036 n 0301 | narrow and long and pointed; as pine leaves -02167285 00 s 01 acuminate 0 002 & 02166346 a 0000 + 13089526 n 0101 | (of a leaf shape) narrowing to a slender point -02167405 00 s 01 apiculate 0 001 & 02166346 a 0000 | (of a leaf shape) having a short sharply pointed tip -02167513 00 s 01 caudate 0 001 & 02166346 a 0000 | (of a leaf shape) tapering gradually into a long taillike tip -02167628 00 s 03 cordate 0 heart-shaped 0 cordiform 0 001 & 02166346 a 0000 | (of a leaf) shaped like a heart -02167740 00 s 02 cuneate 0 wedge-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) narrowly triangular, wider at the apex and tapering toward the base -02167894 00 s 01 deltoid 0 001 & 02166346 a 0000 | triangular or suggesting a capital delta, with a point at the apex -02168014 00 s 02 dolabriform 0 dolabrate 0 001 & 02166346 a 0000 | having the shape of the head of an ax or cleaver -02168132 00 s 01 elliptic 0 002 & 02166346 a 0000 + 05070622 n 0102 | (of a leaf shape) in the form of an ellipse -02168248 00 s 04 ensiform 0 sword-shaped 0 swordlike 0 bladelike 0 001 & 02166346 a 0000 | shaped like a sword blade; "the iris has an ensiform leaf" -02168400 00 s 02 hastate 0 spearhead-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) like a spear point, with flaring pointed lobes at the base -02168549 00 s 02 lanceolate 0 lancelike 0 001 & 02166346 a 0000 | (of a leaf shape) shaped like a lance head; narrow and tapering to a pointed apex -02168699 00 s 02 linear 0 elongate 0 001 & 02166346 a 0000 | (of a leaf shape) long and narrow -02168796 00 s 01 lyrate 0 001 & 02166346 a 0000 | (of a leaf shape) having curvature suggestive of a lyre -02168904 00 s 01 needled 0 001 & 02166346 a 0000 | of trees whose leaves are acerate -02168991 00 s 01 two-needled 0 001 & 02166346 a 0000 | (of conifers) having two needles -02169081 00 s 01 three-needled 0 001 & 02166346 a 0000 | (of conifers) having three needles -02169175 00 s 01 four-needled 0 001 & 02166346 a 0000 | (of conifers) having four needles -02169267 00 s 01 five-needled 0 001 & 02166346 a 0000 | (of conifers) having five needles -02169359 00 s 01 obtuse 0 002 & 02166346 a 0000 + 04705950 n 0101 | (of a leaf shape) rounded at the apex -02169467 00 s 01 oblanceolate 0 001 & 02166346 a 0000 | (of a leaf shape) having a broad rounded apex and a tapering base -02169591 00 s 01 oblong 0 001 & 02166346 a 0000 | (of a leaf shape) having a somewhat elongated form with approximately parallel sides -02169728 00 s 01 obovate 0 001 & 02166346 a 0000 | (of a leaf shape) egg-shaped with the narrower end at the base -02169844 00 s 02 orbiculate 0 orbicular 0 001 & 02166346 a 0000 | circular or nearly circular -02169940 00 s 01 ovate 0 001 & 02166346 a 0000 | of a leaf shape; egg-shaped with the broader end at the base -02170052 00 s 03 pandurate 0 panduriform 0 fiddle-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) having rounded ends and a contracted center -02170199 00 s 02 peltate 0 shield-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) round, with the stem attached near the center of the lower surface rather than the margin (as a nasturtium leaf for example) -02170411 00 s 01 perfoliate 0 001 & 02166346 a 0000 | (of a leaf) having the base united around (and apparently pierced by) the stem -02170546 00 s 02 reniform 0 kidney-shaped 0 001 & 02166346 a 0000 | (of a leaf or bean shape) resembling the shape of kidney -02170673 00 s 03 sagittate 0 sagittiform 0 arrow-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) like an arrow head without flaring base lobes -02170821 00 s 02 spatulate 0 spatula-shaped 0 001 & 02166346 a 0000 | (of a leaf shape) having a broad rounded apex and a narrow base -02170957 00 s 01 unlobed 0 001 & 02166346 a 0000 | without lobes -02171024 00 a 01 compound 0 031 ^ 02176178 a 0000 ^ 02245403 a 0000 ^ 02244619 a 0000 ;c 06066555 n 0000 ! 02166346 a 0101 & 02171724 a 0000 & 02171836 a 0000 & 02171938 a 0000 & 02172038 a 0000 & 02172152 a 0000 & 02172255 a 0000 & 02172377 a 0000 & 02172488 a 0000 & 02172617 a 0000 & 02172770 a 0000 & 02172851 a 0000 & 02172995 a 0000 & 02173125 a 0000 & 02173264 a 0000 & 02173371 a 0000 & 02173510 a 0000 & 02173632 a 0000 & 02173773 a 0000 & 02173930 a 0000 & 02174089 a 0000 & 02174188 a 0000 & 02174305 a 0000 & 02174417 a 0000 & 02174542 a 0000 & 02174678 a 0000 & 02174781 a 0000 | composed of more than one part; "compound leaves are composed of several lobes; "compound flower heads" -02171724 00 s 03 bilobate 0 bilobated 0 bilobed 0 001 & 02171024 a 0000 | having two lobes; "a bilobate leaf" -02171836 00 s 01 binate 0 001 & 02171024 a 0000 | growing in two parts or in pairs; "binate leaves" -02171938 00 s 01 bipartite 0 001 & 02171024 a 0000 | divided into two portions almost to the base -02172038 00 s 01 bipinnate 0 001 & 02171024 a 0000 | of a leaf shape; having doubly pinnate leaflets (as ferns) -02172152 00 s 01 bipinnatifid 0 001 & 02171024 a 0000 | pinnatifid with the segments also pinnatifid -02172255 00 s 02 cleft 0 dissected 0 001 & 02171024 a 0000 | having one or more incisions reaching nearly to the midrib -02172377 00 s 01 conjugate 0 001 & 02171024 a 0000 | (of a pinnate leaflet) having only one pair of leaflets -02172488 00 s 01 decompound 0 001 & 02171024 a 0000 | of a compound leaf; consisting of divisions that are themselves compound -02172617 00 s 03 even-pinnate 0 abruptly-pinnate 0 paripinnate 0 001 & 02171024 a 0000 | (of a leaf shape) pinnate with a pair of leaflets at the apex -02172770 00 s 01 incised 0 001 & 02171024 a 0000 | sharply and deeply indented -02172851 00 s 02 lobed 0 lobate 0 001 & 02171024 a 0000 | having deeply indented margins but with lobes not entirely separate from each other -02172995 00 s 02 odd-pinnate 0 imparipinnate 0 001 & 02171024 a 0000 | (a leaf shape) pinnate with a single leaflet at the apex -02173125 00 s 02 palmate 0 palm-shaped 0 001 & 02171024 a 0000 | of a leaf shape; having leaflets or lobes radiating from a common point -02173264 00 s 01 palmatifid 0 001 & 02171024 a 0000 | of a leaf shape; palmately cleft rather than lobed -02173371 00 s 01 parted 0 001 & 02171024 a 0000 | having a margin incised almost to the base so as to create distinct divisions or lobes -02173510 00 s 01 pedate 0 001 & 02171024 a 0000 | of a leaf shape; having radiating lobes, each deeply cleft or divided -02173632 00 s 02 pinnate 0 pinnated 0 001 & 02171024 a 0000 | (of a leaf shape) featherlike; having leaflets on each side of a common axis -02173773 00 s 01 pinnatifid 0 001 & 02171024 a 0000 | (of a leaf shape) cleft nearly to the midrib in broad divisions not separated into distinct leaflets -02173930 00 s 01 pinnatisect 0 001 & 02171024 a 0000 | (of a leaf shape) cleft nearly to the midrib in narrow divisions not separated into distinct leaflets -02174089 00 s 01 quinquefoliate 0 001 & 02171024 a 0000 | (of a leaf shape) having five leaflets -02174188 00 s 01 radiate 0 001 & 02171024 a 0000 | having rays or ray-like parts as in the flower heads of daisies -02174305 00 s 01 ternate 0 001 & 02171024 a 0000 | (of a leaf shape) consisting of three leaflets or sections -02174417 00 s 03 trifoliate 0 trifoliolate 0 trifoliated 0 001 & 02171024 a 0000 | (of a leaf shape) having three leaflets -02174542 00 s 04 trilobate 0 trilobated 0 trilobed 0 three-lobed 0 001 & 02171024 a 0000 | (of a leaf shape) divided into three lobes -02174678 00 s 02 tripinnate 0 tripinnated 0 001 & 02171024 a 0000 | (of a leaf shape) thrice pinnate -02174781 00 s 01 tripinnatifid 0 001 & 02171024 a 0000 | (of a leaf shape) bipinnatifid with segments pinnatifid -02174896 00 a 01 simple 2 011 ^ 00749230 a 0000 ^ 01791911 a 0000 ^ 02166346 a 0000 = 04766275 n 0000 + 04766059 n 0102 + 04766059 n 0101 ! 02176178 a 0101 & 02175267 a 0000 & 02175487 a 0000 & 02175684 a 0000 & 02175980 a 0000 | having few parts; not complex or complicated or involved; "a simple problem"; "simple mechanisms"; "a simple design"; "a simple substance" -02175267 00 s 01 simplex 0 001 & 02174896 a 0000 | having only one part or element; "a simplex word has no affixes and is not part of a compound--like `boy' compared with `boyish' or `house' compared with `houseboat'" -02175487 00 s 01 simplistic 0 001 & 02174896 a 0000 | characterized by extreme and often misleading simplicity; "a simplistic theory of the universe"; "simplistic arguments of the ruling party" -02175684 00 s 02 unanalyzable 0 undecomposable 0 001 & 02174896 a 0000 | representing the furthest possible extent of analysis or division into parts; "a feeling is a simple and undecomposable mental state"- G.S.Brett; "this weight of evidence is something mystical and unanalyzable"-M.R.Cohen -02175980 00 s 02 uncomplicated 0 unsophisticated 0 001 & 02174896 a 0000 | lacking complexity; "small and uncomplicated cars for those really interested in motoring"; "an unsophisticated machine" -02176178 00 a 01 complex 0 020 ^ 02171024 a 0000 ^ 00744916 a 0000 = 04766275 n 0000 + 04766275 n 0102 + 04766275 n 0101 ! 02174896 a 0101 & 02176741 a 0000 & 02176841 a 0000 & 02177397 a 0000 & 02177584 a 0000 & 02177755 a 0000 & 02177872 a 0000 & 02178116 a 0000 & 02178241 a 0000 & 02178348 a 0000 & 02178500 a 0000 & 02178628 a 0000 & 02178837 a 0000 & 02179044 a 0000 & 02179167 a 0000 | complicated in structure; consisting of interconnected parts; "a complex set of variations based on a simple folk melody"; "a complex mass of diverse laws and customs" -02176741 00 s 02 analyzable 0 decomposable 0 001 & 02176178 a 0000 | capable of being partitioned -02176841 00 s 06 Byzantine 0 convoluted 0 involved 0 knotty 0 tangled 0 tortuous 0 003 & 02176178 a 0000 + 04766620 n 0604 + 04766620 n 0403 | highly complex or intricate and occasionally devious; "the Byzantine tax structure"; "Byzantine methods for holding on to his chairmanship"; "convoluted legal language"; "convoluted reasoning"; "the plot was too involved"; "a knotty problem"; "got his way by labyrinthine maneuvering"; "Oh, what a tangled web we weave"- Sir Walter Scott; "tortuous legal procedures"; "tortuous negotiations lasting for months" -02177397 00 s 02 colonial 0 compound 2 002 & 02176178 a 0000 ;c 06083243 n 0000 | composed of many distinct individuals united to form a whole or colony; "coral is a colonial organism" -02177584 00 s 01 complicated 0 002 & 02176178 a 0000 + 04766620 n 0101 | difficult to analyze or understand; "a complicated problem"; "complicated Middle East politics" -02177755 00 s 01 composite 0 002 & 02176178 a 0000 + 05870365 n 0102 | consisting of separate interconnected parts -02177872 00 s 01 compound 0 002 & 02176178 a 0000 + 05870180 n 0101 | consisting of two or more substances or ingredients or elements or parts; "soap is a compound substance"; "housetop is a compound word"; "a blackberry is a compound fruit" -02178116 00 s 01 daedal 0 001 & 02176178 a 0000 | complex and ingenious in design or function; "the daedal hand of nature" -02178241 00 s 01 Gordian 0 001 & 02176178 a 0000 | extremely intricate; usually in phrase `Gordian knot' -02178348 00 s 04 interlacing 0 interlinking 0 interlocking 0 interwoven 0 001 & 02176178 a 0000 | linked or locked closely together as by dovetailing -02178500 00 s 01 intricate 0 001 & 02176178 a 0000 | having many complexly arranged elements; elaborate; "intricate lacework" -02178628 00 s 03 labyrinthine 0 labyrinthian 0 mazy 0 003 & 02176178 a 0000 + 03733281 n 0301 + 03733281 n 0202 | resembling a labyrinth in form or complexity; "a labyrinthine network of tortuous footpaths" -02178837 00 s 01 multifactorial 0 001 & 02176178 a 0000 | involving or depending on several factors or causes (especially pertaining to a condition or disease resulting from the interaction of many genes) -02179044 00 s 01 multiplex 0 001 & 02176178 a 0000 | having many parts or aspects; "the multiplex problem of drug abuse" -02179167 00 s 01 thickening 0 001 & 02176178 a 0000 | becoming more intricate or complex; "a thickening plot" -02179279 00 a 01 sincere 0 014 ^ 01115349 a 0000 ^ 01222360 a 0000 ^ 01309991 a 0000 ^ 01932973 a 0000 ^ 02460502 a 0000 = 04867130 n 0000 + 04867130 n 0101 ! 02180797 a 0101 & 02179707 a 0000 & 02179808 a 0000 & 02179968 a 0000 & 02180157 a 0000 & 02180277 a 0000 & 02180486 a 0000 | open and genuine; not deceitful; "he was a good man, decent and sincere"; "felt sincere regret that they were leaving"; "sincere friendship" -02179707 00 s 01 bona_fide 0 001 & 02179279 a 0000 | undertaken in good faith; "a bona fide offer" -02179808 00 s 01 cordial 2 001 & 02179279 a 0000 | sincerely or intensely felt; "a cordial regard for his visitor's comfort"; "a cordial abhorrence of waste" -02179968 00 s 04 dear 0 devout 0 earnest 0 heartfelt 0 002 & 02179279 a 0000 + 07512315 n 0301 | earnest; "one's dearest wish"; "devout wishes for their success"; "heartfelt condolences" -02180157 00 s 01 honest 0 002 & 02179279 a 0000 + 04871374 n 0102 | without dissimulation; frank; "my honest opinion" -02180277 00 s 03 genuine 0 true(a) 0 unfeigned 0 002 & 02179279 a 0000 + 04783247 n 0102 | not pretended; sincerely felt or expressed; "genuine emotion"; "her interest in people was unfeigned"; "true grief" -02180486 00 s 03 heart-whole 0 wholehearted 0 whole-souled 0 003 & 02179279 a 0000 + 04645473 n 0201 + 04867539 n 0202 | with unconditional and enthusiastic devotion; "heart-whole friendship"; "gave wholehearted support to her candidacy"; "wholehearted commitment"; "demonstrated his whole-souled allegiance" -02180797 00 a 01 insincere 0 016 ^ 01116380 a 0000 ^ 01222884 a 0000 ^ 01310685 a 0000 ^ 02461723 a 0000 ^ 01934554 a 0000 = 04867130 n 0000 + 04867871 n 0101 ! 02179279 a 0101 & 02181231 a 0000 & 02181432 a 0000 & 02181926 a 0000 & 02182088 a 0000 & 02182217 a 0000 & 02182302 a 0000 & 02182562 a 0000 & 02182728 a 0000 | lacking sincerity; "a charming but thoroughly insincere woman"; "their praise was extravagant and insincere" -02181231 00 s 05 bootlicking 0 fawning 0 obsequious 0 sycophantic 0 toadyish 0 003 & 02180797 a 0000 + 10684827 n 0401 + 04906712 n 0301 | attempting to win favor from influential people by flattery -02181432 00 s 07 buttery 0 fulsome 0 oily 0 oleaginous 0 smarmy 0 soapy 0 unctuous 0 008 & 02180797 a 0000 + 04868505 n 0705 + 06696308 n 0502 + 04868505 n 0504 + 04868505 n 0403 + 04868505 n 0302 + 06696308 n 0203 + 04868505 n 0201 | unpleasantly and excessively suave or ingratiating in manner or speech; "buttery praise"; "gave him a fulsome introduction"; "an oily sycophantic press agent"; "oleaginous hypocrisy"; "smarmy self-importance"; "the unctuous Uriah Heep"; "soapy compliments" -02181926 00 s 01 dissimulative 0 002 & 02180797 a 0000 + 02147824 v 0101 | concealing under a false appearance with the intent to deceive; "dissimulative arts" -02182088 00 s 01 false 0 003 & 02180797 a 0000 + 04879092 n 0102 + 06756407 n 0102 | deliberately deceptive; "false pretenses" -02182217 00 s 01 feigned 0 001 & 02180797 a 0000 | not genuine; "feigned sympathy" -02182302 00 s 03 gilded 0 meretricious 0 specious 0 003 & 02180797 a 0000 + 04875113 n 0301 + 04875113 n 0202 | based on pretense; deceptively pleasing; "the gilded and perfumed but inwardly rotten nobility"; "meretricious praise"; "a meretricious argument" -02182562 00 s 01 hypocritical 0 003 & 02180797 a 0000 + 04868148 n 0101 + 06760076 n 0101 | professing feelings or virtues one does not have; "hypocritical praise" -02182728 00 s 01 plausible 0 001 & 02180797 a 0000 | given to or characterized by presenting specious arguments; "a plausible liar" -02182862 00 a 01 singular 0 001 ! 02182979 a 0101 | grammatical number category referring to a single item or unit -02182979 00 a 01 plural 0 003 + 14569844 n 0101 ! 02182862 a 0101 & 02183135 a 0000 | grammatical number category referring to two or more items or units -02183135 00 s 01 dual 0 002 & 02182979 a 0000 + 04920568 n 0101 | a grammatical number category referring to two items or units as opposed to one item (singular) or more than two items (plural); "ancient Greek had the dual form but it has merged with the plural form in modern Greek" -02183421 00 a 01 singular 1 001 ! 02183512 a 0101 | composed of one member, set, or kind -02183512 00 a 01 plural 1 001 ! 02183421 a 0101 | composed of more than one member, set, or kind -02183611 00 a 01 cardinal 0 134 ! 02200035 a 0101 & 02186132 a 0000 & 02186265 a 0000 & 02186338 a 0000 & 02186470 a 0000 & 02186580 a 0000 & 02186665 a 0000 & 02186750 a 0000 & 02186833 a 0000 & 02186970 a 0000 & 02187073 a 0000 & 02187161 a 0000 & 02187296 a 0000 & 02187379 a 0000 & 02187465 a 0000 & 02187606 a 0000 & 02187699 a 0000 & 02187793 a 0000 & 02187903 a 0000 & 02187995 a 0000 & 02188108 a 0000 & 02188205 a 0000 & 02188317 a 0000 & 02188431 a 0000 & 02188525 a 0000 & 02188620 a 0000 & 02188720 a 0000 & 02188817 a 0000 & 02188913 a 0000 & 02189008 a 0000 & 02189108 a 0000 & 02189209 a 0000 & 02189306 a 0000 & 02189396 a 0000 & 02189491 a 0000 & 02189587 a 0000 & 02189688 a 0000 & 02189786 a 0000 & 02189883 a 0000 & 02189979 a 0000 & 02190080 a 0000 & 02190182 a 0000 & 02190278 a 0000 & 02190377 a 0000 & 02190469 a 0000 & 02190562 a 0000 & 02190660 a 0000 & 02190755 a 0000 & 02190849 a 0000 & 02190942 a 0000 & 02191040 a 0000 & 02191139 a 0000 & 02191232 a 0000 & 02191336 a 0000 & 02191427 a 0000 & 02191519 a 0000 & 02191616 a 0000 & 02191710 a 0000 & 02191803 a 0000 & 02191895 a 0000 & 02191992 a 0000 & 02192090 a 0000 & 02192184 a 0000 & 02192284 a 0000 & 02192376 a 0000 & 02192469 a 0000 & 02192567 a 0000 & 02192662 a 0000 & 02192756 a 0000 & 02192849 a 0000 & 02192947 a 0000 & 02193046 a 0000 & 02193141 a 0000 & 02193249 a 0000 & 02193346 a 0000 & 02193444 a 0000 & 02193547 a 0000 & 02193647 a 0000 & 02193746 a 0000 & 02193844 a 0000 & 02193947 a 0000 & 02194051 a 0000 & 02194151 a 0000 & 02194255 a 0000 & 02194351 a 0000 & 02194448 a 0000 & 02194550 a 0000 & 02194649 a 0000 & 02194747 a 0000 & 02194844 a 0000 & 02194946 a 0000 & 02195049 a 0000 & 02195145 a 0000 & 02195234 a 0000 & 02195328 a 0000 & 02195423 a 0000 & 02195523 a 0000 & 02195620 a 0000 & 02195716 a 0000 & 02195811 a 0000 & 02195911 a 0000 & 02196012 a 0000 & 02196107 a 0000 & 02196211 a 0000 & 02196333 a 0000 & 02196439 a 0000 & 02196543 a 0000 & 02196657 a 0000 & 02196769 a 0000 & 02196891 a 0000 & 02197007 a 0000 & 02197130 a 0000 & 02197244 a 0000 & 02197364 a 0000 & 02197476 a 0000 & 02197595 a 0000 & 02197708 a 0000 & 02197828 a 0000 & 02197944 a 0000 & 02198069 a 0000 & 02198187 a 0000 & 02198302 a 0000 & 02198409 a 0000 & 02198520 a 0000 & 02198631 a 0000 & 02198752 a 0000 & 02198891 a 0000 & 02199005 a 0000 & 02199177 a 0000 & 02199342 a 0000 & 02199523 a 0000 & 02199699 a 0000 & 02199813 a 0000 & 02199919 a 0000 | being or denoting a numerical quantity but not order; "cardinal numbers" -02186132 00 s 02 zero 0 0 0 001 & 02183611 a 0000 | indicating the absence of any or all units under consideration; "a zero score" -02186265 00 s 01 non-zero 0 001 & 02183611 a 0000 | not involving zero -02186338 00 s 04 one 0 1 0 i 0 ane 0 001 & 02183611 a 0000 | used of a single unit or thing; not two or more; "`ane' is Scottish" -02186470 00 s 03 two 0 2 0 ii 0 001 & 02183611 a 0000 | being one more than one; "he received two messages" -02186580 00 s 03 three 0 3 0 iii 0 001 & 02183611 a 0000 | being one more than two -02186665 00 s 03 four 0 4 0 iv 0 001 & 02183611 a 0000 | being one more than three -02186750 00 s 03 five 0 5 0 v 0 001 & 02183611 a 0000 | being one more than four -02186833 00 s 05 six 0 6 0 vi 0 half_dozen 0 half-dozen 0 001 & 02183611 a 0000 | denoting a quantity consisting of six items or units -02186970 00 s 03 seven 0 7 0 vii 0 002 & 02183611 a 0000 + 13744916 n 0101 | being one more than six -02187073 00 s 03 eight 0 8 0 viii 0 001 & 02183611 a 0000 | being one more than seven -02187161 00 s 03 nine 0 9 0 ix 0 001 & 02183611 a 0000 | denoting a quantity consisting of one more than eight and one less than ten -02187296 00 s 03 ten 0 10 0 x 0 001 & 02183611 a 0000 | being one more than nine -02187379 00 s 03 eleven 0 11 0 xi 0 001 & 02183611 a 0000 | being one more than ten -02187465 00 s 04 twelve 0 12 0 xii 0 dozen 0 002 & 02183611 a 0000 + 13746785 n 0404 | denoting a quantity consisting of 12 items or units -02187606 00 s 03 thirteen 0 13 0 xiii 0 001 & 02183611 a 0000 | being one more than twelve -02187699 00 s 03 fourteen 0 14 0 xiv 0 001 & 02183611 a 0000 | being one more than thirteen -02187793 00 s 03 fifteen 0 15 0 xv 0 002 & 02183611 a 0000 + 13747469 n 0101 | being one more than fourteen -02187903 00 s 03 sixteen 0 16 0 xvi 0 001 & 02183611 a 0000 | being one more than fifteen -02187995 00 s 03 seventeen 0 17 0 xvii 0 002 & 02183611 a 0000 + 13747725 n 0101 | being one more than sixteen -02188108 00 s 03 eighteen 0 18 0 xviii 0 001 & 02183611 a 0000 | being one more than seventeen -02188205 00 s 03 nineteen 0 19 0 xix 0 002 & 02183611 a 0000 + 13747989 n 0101 | being one more than eighteen -02188317 00 s 03 twenty 0 20 0 xx 0 001 & 02183611 a 0000 | denoting a quantity consisting of 20 items or units -02188431 00 s 03 twenty-one 0 21 0 xxi 0 001 & 02183611 a 0000 | being one more than twenty -02188525 00 s 03 twenty-two 0 22 0 xxii 0 001 & 02183611 a 0000 | being two more than twenty -02188620 00 s 03 twenty-three 0 23 0 xxiii 0 001 & 02183611 a 0000 | being three more than twenty -02188720 00 s 03 twenty-four 0 24 0 xxiv 0 001 & 02183611 a 0000 | being four more than twenty -02188817 00 s 03 twenty-five 0 25 0 xxv 0 001 & 02183611 a 0000 | being five more than twenty -02188913 00 s 03 twenty-six 0 26 0 xxvi 0 001 & 02183611 a 0000 | being six more than twenty -02189008 00 s 03 twenty-seven 0 27 0 xxvii 0 001 & 02183611 a 0000 | being seven more than twenty -02189108 00 s 03 twenty-eight 0 28 0 xxviii 0 001 & 02183611 a 0000 | being eight more than twenty -02189209 00 s 03 twenty-nine 0 29 0 xxix 0 001 & 02183611 a 0000 | being nine more than twenty -02189306 00 s 03 thirty 0 30 0 xxx 0 001 & 02183611 a 0000 | being ten more than twenty -02189396 00 s 03 thirty-one 0 31 0 xxxi 0 001 & 02183611 a 0000 | being one more than thirty -02189491 00 s 03 thirty-two 0 32 0 xxxii 0 001 & 02183611 a 0000 | being two more than thirty -02189587 00 s 03 thirty-three 0 33 0 xxxiii 0 001 & 02183611 a 0000 | being three more than thirty -02189688 00 s 03 thirty-four 0 34 0 xxxiv 0 001 & 02183611 a 0000 | being four more than thirty -02189786 00 s 03 thirty-five 0 35 0 xxxv 0 001 & 02183611 a 0000 | being five more than thirty -02189883 00 s 03 thirty-six 0 36 0 xxxvi 0 001 & 02183611 a 0000 | being six more than thirty -02189979 00 s 03 thirty-seven 0 37 0 xxxvii 0 001 & 02183611 a 0000 | being seven more than thirty -02190080 00 s 03 thirty-eight 0 38 0 xxxviii 0 001 & 02183611 a 0000 | being eight more than thirty -02190182 00 s 03 thirty-nine 0 39 0 ixl 0 001 & 02183611 a 0000 | being nine more than thirty -02190278 00 s 04 forty 0 40 0 xl 0 twoscore 0 001 & 02183611 a 0000 | being ten more than thirty -02190377 00 s 03 forty-one 0 41 0 xli 0 001 & 02183611 a 0000 | being one more than forty -02190469 00 s 03 forty-two 0 42 0 xlii 0 001 & 02183611 a 0000 | being two more than forty -02190562 00 s 03 forty-three 0 43 0 xliii 0 001 & 02183611 a 0000 | being three more than forty -02190660 00 s 03 forty-four 0 44 0 xliv 0 001 & 02183611 a 0000 | being four more than forty -02190755 00 s 03 forty-five 0 45 0 xlv 0 001 & 02183611 a 0000 | being five more than forty -02190849 00 s 03 forty-six 0 46 0 xlvi 0 001 & 02183611 a 0000 | being six more than forty -02190942 00 s 03 forty-seven 0 47 0 xlvii 0 001 & 02183611 a 0000 | being seven more than forty -02191040 00 s 03 forty-eight 0 48 0 xlviii 0 001 & 02183611 a 0000 | being eight more than forty -02191139 00 s 03 forty-nine 0 49 0 il 0 001 & 02183611 a 0000 | being nine more than forty -02191232 00 s 03 fifty 0 50 0 l 0 002 & 02183611 a 0000 + 13749644 n 0101 | being ten more than forty -02191336 00 s 03 fifty-one 0 51 0 li 0 001 & 02183611 a 0000 | being one more than fifty -02191427 00 s 03 fifty-two 0 52 0 lii 0 001 & 02183611 a 0000 | being two more than fifty -02191519 00 s 03 fifty-three 0 53 0 liii 0 001 & 02183611 a 0000 | being three more than fifty -02191616 00 s 03 fifty-four 0 54 0 liv 0 001 & 02183611 a 0000 | being four more than fifty -02191710 00 s 03 fifty-five 0 55 0 lv 0 001 & 02183611 a 0000 | being five more than fifty -02191803 00 s 03 fifty-six 0 56 0 lvi 0 001 & 02183611 a 0000 | being six more than fifty -02191895 00 s 03 fifty-seven 0 57 0 lvii 0 001 & 02183611 a 0000 | being seven more than fifty -02191992 00 s 03 fifty-eight 0 58 0 lviii 0 001 & 02183611 a 0000 | being eight more than fifty -02192090 00 s 03 fifty-nine 0 59 0 ilx 0 001 & 02183611 a 0000 | being nine more than fifty -02192184 00 s 04 sixty 0 60 0 lx 0 threescore 0 001 & 02183611 a 0000 | being ten more than fifty -02192284 00 s 03 sixty-one 0 61 0 lxi 0 001 & 02183611 a 0000 | being one more than sixty -02192376 00 s 03 sixty-two 0 62 0 lxii 0 001 & 02183611 a 0000 | being two more than sixty -02192469 00 s 03 sixty-three 0 63 0 lxiii 0 001 & 02183611 a 0000 | being three more than sixty -02192567 00 s 03 sixty-four 0 64 0 lxiv 0 001 & 02183611 a 0000 | being four more than sixty -02192662 00 s 03 sixty-five 0 65 0 lxv 0 001 & 02183611 a 0000 | being five more than sixty -02192756 00 s 03 sixty-six 0 66 0 lxvi 0 001 & 02183611 a 0000 | being six more than sixty -02192849 00 s 03 sixty-seven 0 67 0 lxvii 0 001 & 02183611 a 0000 | being seven more than sixty -02192947 00 s 03 sixty-eight 0 68 0 lxviii 0 001 & 02183611 a 0000 | being eight more than sixty -02193046 00 s 03 sixty-nine 0 69 0 ilxx 0 001 & 02183611 a 0000 | being nine more than sixty -02193141 00 s 03 seventy 0 70 0 lxx 0 002 & 02183611 a 0000 + 13749894 n 0101 | being ten more than sixty -02193249 00 s 03 seventy-one 0 71 0 lxxi 0 001 & 02183611 a 0000 | being one more than seventy -02193346 00 s 03 seventy-two 0 72 0 lxxii 0 001 & 02183611 a 0000 | being two more than seventy -02193444 00 s 03 seventy-three 0 73 0 lxxiii 0 001 & 02183611 a 0000 | being three more than seventy -02193547 00 s 03 seventy-four 0 74 0 lxxiv 0 001 & 02183611 a 0000 | being four more than seventy -02193647 00 s 03 seventy-five 0 75 0 lxxv 0 001 & 02183611 a 0000 | being five more than seventy -02193746 00 s 03 seventy-six 0 76 0 lxxvi 0 001 & 02183611 a 0000 | being six more than seventy -02193844 00 s 03 seventy-seven 0 77 0 lxxvii 0 001 & 02183611 a 0000 | being seven more than seventy -02193947 00 s 03 seventy-eight 0 78 0 lxxviii 0 001 & 02183611 a 0000 | being eight more than seventy -02194051 00 s 03 seventy-nine 0 79 0 ilxxx 0 001 & 02183611 a 0000 | being nine more than seventy -02194151 00 s 04 eighty 0 80 0 lxxx 0 fourscore 0 001 & 02183611 a 0000 | being ten more than seventy -02194255 00 s 03 eighty-one 0 81 0 lxxxi 0 001 & 02183611 a 0000 | being one more than eighty -02194351 00 s 03 eighty-two 0 82 0 lxxxii 0 001 & 02183611 a 0000 | being two more than eighty -02194448 00 s 03 eighty-three 0 83 0 lxxxiii 0 001 & 02183611 a 0000 | being three more than eighty -02194550 00 s 03 eighty-four 0 84 0 lxxxiv 0 001 & 02183611 a 0000 | being four more than eighty -02194649 00 s 03 eighty-five 0 85 0 lxxxv 0 001 & 02183611 a 0000 | being five more than eighty -02194747 00 s 03 eighty-six 0 86 0 lxxxvi 0 001 & 02183611 a 0000 | being six more than eighty -02194844 00 s 03 eighty-seven 0 87 0 lxxxvii 0 001 & 02183611 a 0000 | being seven more than eighty -02194946 00 s 03 eighty-eight 0 88 0 lxxxviii 0 001 & 02183611 a 0000 | being eight more than eighty -02195049 00 s 03 eighty-nine 0 89 0 ixc 0 001 & 02183611 a 0000 | being nine more than eighty -02195145 00 s 03 ninety 0 90 0 xc 0 001 & 02183611 a 0000 | being ten more than eighty -02195234 00 s 03 ninety-one 0 91 0 xci 0 001 & 02183611 a 0000 | being one more than ninety -02195328 00 s 03 ninety-two 0 92 0 xcii 0 001 & 02183611 a 0000 | being two more than ninety -02195423 00 s 03 ninety-three 0 93 0 xciii 0 001 & 02183611 a 0000 | being three more than ninety -02195523 00 s 03 ninety-four 0 94 0 xciv 0 001 & 02183611 a 0000 | being four more than ninety -02195620 00 s 03 ninety-five 0 95 0 xcv 0 001 & 02183611 a 0000 | being five more than ninety -02195716 00 s 03 ninety-six 0 96 0 xcvi 0 001 & 02183611 a 0000 | being six more than ninety -02195811 00 s 03 ninety-seven 0 97 0 xcvii 0 001 & 02183611 a 0000 | being seven more than ninety -02195911 00 s 03 ninety-eight 0 98 0 xcviii 0 001 & 02183611 a 0000 | being eight more than ninety -02196012 00 s 03 ninety-nine 0 99 0 ic 0 001 & 02183611 a 0000 | being nine more than ninety -02196107 00 s 04 hundred 0 one_hundred 0 100 0 c 0 001 & 02183611 a 0000 | being ten more than ninety -02196211 00 s 04 hundred_and_one 0 one_hundred_one 0 101 0 ci 0 001 & 02183611 a 0000 | being one more than one hundred -02196333 00 s 03 one_hundred_five 0 105 0 cv 0 001 & 02183611 a 0000 | being five more than one hundred -02196439 00 s 03 one_hundred_ten 0 110 0 cx 0 001 & 02183611 a 0000 | being ten more than one hundred -02196543 00 s 03 one_hundred_fifteen 0 115 0 cxv 0 001 & 02183611 a 0000 | being five more than one hundred ten -02196657 00 s 03 one_hundred_twenty 0 120 0 cxx 0 001 & 02183611 a 0000 | being ten more than one hundred ten -02196769 00 s 03 one_hundred_twenty-five 0 125 0 cxxv 0 001 & 02183611 a 0000 | being five more than one hundred twenty -02196891 00 s 03 one_hundred_thirty 0 130 0 cxxx 0 001 & 02183611 a 0000 | being ten more than one hundred twenty -02197007 00 s 03 one_hundred_thirty-five 0 135 0 cxxxv 0 001 & 02183611 a 0000 | being five more than one hundred thirty -02197130 00 s 03 one_hundred_forty 0 140 0 cxl 0 001 & 02183611 a 0000 | being ten more than one hundred thirty -02197244 00 s 03 one_hundred_forty-five 0 145 0 cxlv 0 001 & 02183611 a 0000 | being five more than one hundred forty -02197364 00 s 03 one_hundred_fifty 0 150 0 cl 0 001 & 02183611 a 0000 | being ten more than one hundred forty -02197476 00 s 03 one_hundred_fifty-five 0 155 0 clv 0 001 & 02183611 a 0000 | being five more than one hundred fifty -02197595 00 s 03 one_hundred_sixty 0 160 0 clx 0 001 & 02183611 a 0000 | being ten more than one hundred fifty -02197708 00 s 03 one_hundred_sixty-five 0 165 0 clxv 0 001 & 02183611 a 0000 | being five more than one hundred sixty -02197828 00 s 03 one_hundred_seventy 0 170 0 clxx 0 001 & 02183611 a 0000 | being ten more than one hundred sixty -02197944 00 s 03 one_hundred_seventy-five 0 175 0 clxxv 0 001 & 02183611 a 0000 | being five more than one hundred seventy -02198069 00 s 03 one_hundred_eighty 0 180 0 clxxx 0 001 & 02183611 a 0000 | being ten more than one hundred seventy -02198187 00 s 03 one_hundred_ninety 0 190 0 xcl 0 001 & 02183611 a 0000 | being ten more than one hundred eighty -02198302 00 s 03 two_hundred 0 200 0 cc 0 001 & 02183611 a 0000 | being ten more than one hundred ninety -02198409 00 s 03 three_hundred 0 300 0 ccc 0 001 & 02183611 a 0000 | being one hundred more than two hundred -02198520 00 s 03 four_hundred 0 400 0 cd 0 001 & 02183611 a 0000 | being one hundred more than three hundred -02198631 00 s 03 five_hundred 0 500 0 d 0 001 & 02183611 a 0000 | denoting a quantity consisting of 500 items or units -02198752 00 s 05 thousand 0 one_thousand 0 1000 0 m 0 k 0 001 & 02183611 a 0000 | denoting a quantity consisting of 1,000 items or units -02198891 00 s 01 ten_thousand 0 001 & 02183611 a 0000 | denoting a quantity consisting of 10,000 items or units -02199005 00 s 01 hundred_thousand 0 001 & 02183611 a 0000 | (in Roman numerals, C written with a macron over it) denoting a quantity consisting of 100,000 items or units -02199177 00 s 01 million 0 001 & 02183611 a 0000 | (in Roman numerals, M written with a macron over it) denoting a quantity consisting of 1,000,000 items or units -02199342 00 s 01 billion 0 003 & 02183611 a 0000 ;r 09044862 n 0000 + 13751829 n 0101 | denoting a quantity consisting of one thousand million items or units in the United States -02199523 00 s 01 billion 1 003 & 02183611 a 0000 ;r 08860123 n 0000 + 13752172 n 0101 | denoting a quantity consisting of one million million items or units in Great Britain -02199699 00 s 01 trillion 0 002 & 02183611 a 0000 ;r 09044862 n 0000 | one million million in the United States -02199813 00 s 01 trillion 1 002 & 02183611 a 0000 ;r 08860123 n 0000 | one quintillion in Great Britain -02199919 00 s 01 zillion 0 001 & 02183611 a 0000 | very large indeterminate number; "a zillion people were there" -02200035 00 a 01 ordinal 0 095 + 13597280 n 0102 ! 02183611 a 0101 & 02201882 a 0000 & 02201970 a 0000 & 02202047 a 0000 & 02202146 a 0000 & 02202307 a 0000 & 02202443 a 0000 & 02202712 a 0000 & 02202854 a 0000 & 02202979 a 0000 & 02203123 a 0000 & 02203249 a 0000 & 02203373 a 0000 & 02203500 a 0000 & 02203629 a 0000 & 02203763 a 0000 & 02203868 a 0000 & 02203976 a 0000 & 02204131 a 0000 & 02204237 a 0000 & 02204363 a 0000 & 02204472 a 0000 & 02204580 a 0000 & 02204716 a 0000 & 02204823 a 0000 & 02204932 a 0000 & 02205045 a 0000 & 02205158 a 0000 & 02205271 a 0000 & 02205384 a 0000 & 02205496 a 0000 & 02205610 a 0000 & 02205725 a 0000 & 02205838 a 0000 & 02205947 a 0000 & 02206056 a 0000 & 02206173 a 0000 & 02206291 a 0000 & 02206409 a 0000 & 02206526 a 0000 & 02206642 a 0000 & 02206762 a 0000 & 02206881 a 0000 & 02206998 a 0000 & 02207105 a 0000 & 02207219 a 0000 & 02207334 a 0000 & 02207450 a 0000 & 02207566 a 0000 & 02207681 a 0000 & 02207795 a 0000 & 02207913 a 0000 & 02208030 a 0000 & 02208145 a 0000 & 02208270 a 0000 & 02208385 a 0000 & 02208492 a 0000 & 02208608 a 0000 & 02208723 a 0000 & 02208852 a 0000 & 02208971 a 0000 & 02209080 a 0000 & 02209197 a 0000 & 02209306 a 0000 & 02209423 a 0000 & 02209551 a 0000 & 02209678 a 0000 & 02209806 a 0000 & 02209933 a 0000 & 02210068 a 0000 & 02210202 a 0000 & 02210344 a 0000 & 02210478 a 0000 & 02210620 a 0000 & 02210752 a 0000 & 02210892 a 0000 & 02211024 a 0000 & 02211164 a 0000 & 02211296 a 0000 & 02211436 a 0000 & 02211572 a 0000 & 02211716 a 0000 & 02211850 a 0000 & 02211989 a 0000 & 02212108 a 0000 & 02212231 a 0000 & 02212352 a 0000 & 02212473 a 0000 & 02212591 a 0000 & 02212698 a 0000 & 02212805 a 0000 & 02212914 a 0000 & 02213029 a 0000 & 02213144 a 0000 | being or denoting a numerical order in a series; "ordinal numbers"; "held an ordinal rank of seventh" -02201882 00 s 01 zero 2 001 & 02200035 a 0000 | indicating an initial point or origin -02201970 00 s 01 zeroth 0 001 & 02200035 a 0000 | preceding even the first -02202047 00 s 02 first 0 1st 0 001 & 02200035 a 0000 | indicating the beginning unit in a series -02202146 00 s 03 second 0 2nd 0 2d 0 002 & 02200035 a 0000 + 13846546 n 0101 | coming next after the first in position in space or time or degree or magnitude -02202307 00 s 03 third 0 3rd 0 tertiary 0 001 & 02200035 a 0000 | coming next after the second and just before the fourth in position -02202443 00 s 03 fourth 0 4th 0 quaternary 0 001 & 02200035 a 0000 | coming next after the third and just before the fifth in position or time or degree or magnitude; "the quaternary period of geologic time extends from the end of the tertiary period to the present" -02202712 00 s 02 fifth 0 5th 0 002 & 02200035 a 0000 + 13847240 n 0101 | coming next after the fourth and just before the sixth in position -02202854 00 s 02 sixth 0 6th 0 001 & 02200035 a 0000 | coming next after the fifth and just before the seventh in position -02202979 00 s 02 seventh 0 7th 0 002 & 02200035 a 0000 + 13847498 n 0101 | coming next after the sixth and just before the eighth in position -02203123 00 s 02 eighth 0 8th 0 001 & 02200035 a 0000 | coming next after the seventh and just before the ninth in position -02203249 00 s 02 ninth 0 9th 0 001 & 02200035 a 0000 | coming next after the eighth and just before the tenth in position -02203373 00 s 02 tenth 0 10th 0 001 & 02200035 a 0000 | coming next after the ninth and just before the eleventh in position -02203500 00 s 02 eleventh 0 11th 0 001 & 02200035 a 0000 | coming next after the tenth and just before the twelfth in position -02203629 00 s 02 twelfth 0 12th 0 001 & 02200035 a 0000 | coming next after the eleventh and just before the thirteenth in position -02203763 00 s 02 thirteenth 0 13th 0 001 & 02200035 a 0000 | coming next after the twelfth in position -02203868 00 s 02 fourteenth 0 14th 0 001 & 02200035 a 0000 | coming next after the thirteenth in position -02203976 00 s 02 fifteenth 0 15th 0 002 & 02200035 a 0000 + 13848349 n 0101 | coming next after the fourteenth and just before the sixteenth in position -02204131 00 s 02 sixteenth 0 16th 0 001 & 02200035 a 0000 | coming next after the fifteenth in position -02204237 00 s 02 seventeenth 0 17th 0 002 & 02200035 a 0000 + 13848565 n 0101 | coming next after the sixteenth in position -02204363 00 s 02 eighteenth 0 18th 0 001 & 02200035 a 0000 | coming next after the seventeenth in position -02204472 00 s 02 nineteenth 0 19th 0 001 & 02200035 a 0000 | coming next after the eighteenth in position -02204580 00 s 03 umpteenth 0 umteenth 0 umptieth 0 002 & 02200035 a 0000 ;u 07075172 n 0000 | last in an indefinitely numerous series -02204716 00 s 02 twentieth 0 20th 0 001 & 02200035 a 0000 | coming next after the nineteenth in position -02204823 00 s 02 twenty-first 0 21st 0 001 & 02200035 a 0000 | coming next after the twentieth in position -02204932 00 s 02 twenty-second 0 22nd 0 001 & 02200035 a 0000 | coming next after the twenty-first in position -02205045 00 s 02 twenty-third 0 23rd 0 001 & 02200035 a 0000 | coming next after the twenty-second in position -02205158 00 s 02 twenty-fourth 0 24th 0 001 & 02200035 a 0000 | coming next after the twenty-third in position -02205271 00 s 02 twenty-fifth 0 25th 0 001 & 02200035 a 0000 | coming next after the twenty-fourth in position -02205384 00 s 02 twenty-sixth 0 26th 0 001 & 02200035 a 0000 | coming next after the twenty-fifth in position -02205496 00 s 02 twenty-seventh 0 27th 0 001 & 02200035 a 0000 | coming next after the twenty-sixth in position -02205610 00 s 02 twenty-eighth 0 28th 0 001 & 02200035 a 0000 | coming next after the twenty-seventh in position -02205725 00 s 02 twenty-ninth 0 29th 0 001 & 02200035 a 0000 | coming next after the twenty-eighth in position -02205838 00 s 02 thirtieth 0 30th 0 001 & 02200035 a 0000 | coming next after the twenty-ninth in position -02205947 00 s 02 thirty-first 0 31st 0 001 & 02200035 a 0000 | coming next after the thirtieth in position -02206056 00 s 02 thirty-second 0 32nd 0 001 & 02200035 a 0000 | the ordinal number of thirty-two in counting order -02206173 00 s 02 thirty-third 0 33rd 0 001 & 02200035 a 0000 | the ordinal number of thirty-three in counting order -02206291 00 s 02 thirty-fourth 0 34th 0 001 & 02200035 a 0000 | the ordinal number of thirty-four in counting order -02206409 00 s 02 thirty-fifth 0 35th 0 001 & 02200035 a 0000 | the ordinal number of thirty-five in counting order -02206526 00 s 02 thirty-sixth 0 36th 0 001 & 02200035 a 0000 | the ordinal number of thirty-six in counting order -02206642 00 s 02 thirty-seventh 0 37th 0 001 & 02200035 a 0000 | the ordinal number of thirty-seven in counting order -02206762 00 s 02 thirty-eighth 0 38th 0 001 & 02200035 a 0000 | the ordinal number of thirty-eight in counting order -02206881 00 s 02 thirty-ninth 0 39th 0 001 & 02200035 a 0000 | the ordinal number of thirty-nine in counting order -02206998 00 s 02 fortieth 0 40th 0 001 & 02200035 a 0000 | the ordinal number of forty in counting order -02207105 00 s 02 forty-first 0 41st 0 001 & 02200035 a 0000 | the ordinal number of forty-one in counting order -02207219 00 s 02 forty-second 0 42nd 0 001 & 02200035 a 0000 | the ordinal number of forty-two in counting order -02207334 00 s 02 forty-third 0 43rd 0 001 & 02200035 a 0000 | the ordinal number of forty-three in counting order -02207450 00 s 02 forty-fourth 0 44th 0 001 & 02200035 a 0000 | the ordinal number of forty-four in counting order -02207566 00 s 02 forty-fifth 0 45th 0 001 & 02200035 a 0000 | the ordinal number of forty-five in counting order -02207681 00 s 02 forty-sixth 0 46th 0 001 & 02200035 a 0000 | the ordinal number of forty-six in counting order -02207795 00 s 02 forty-seventh 0 47th 0 001 & 02200035 a 0000 | the ordinal number of forty-seven in counting order -02207913 00 s 02 forty-eighth 0 48th 0 001 & 02200035 a 0000 | the ordinal number of forty-eight in counting order -02208030 00 s 02 forty-ninth 0 49th 0 001 & 02200035 a 0000 | the ordinal number of forty-nine in counting order -02208145 00 s 02 fiftieth 0 50th 0 002 & 02200035 a 0000 + 13849180 n 0101 | the ordinal number of fifty in counting order -02208270 00 s 02 fifty-fifth 0 55th 0 001 & 02200035 a 0000 | the ordinal number of fifty-five in counting order -02208385 00 s 02 sixtieth 0 60th 0 001 & 02200035 a 0000 | the ordinal number of sixty in counting order -02208492 00 s 02 sixty-fourth 0 64th 0 001 & 02200035 a 0000 | the ordinal number of sixty-four in counting order -02208608 00 s 02 sixty-fifth 0 65th 0 001 & 02200035 a 0000 | the ordinal number of sixty-five in counting order -02208723 00 s 02 seventieth 0 70th 0 002 & 02200035 a 0000 + 13849394 n 0101 | the ordinal number of seventy in counting order -02208852 00 s 02 seventy-fifth 0 75th 0 001 & 02200035 a 0000 | the ordinal number of seventy-five in counting order -02208971 00 s 02 eightieth 0 80th 0 001 & 02200035 a 0000 | the ordinal number of eighty in counting order -02209080 00 s 02 eighty-fifth 0 85th 0 001 & 02200035 a 0000 | the ordinal number of eighty-five in counting order -02209197 00 s 02 ninetieth 0 90th 0 001 & 02200035 a 0000 | the ordinal number of ninety in counting order -02209306 00 s 02 ninety-fifth 0 95th 0 001 & 02200035 a 0000 | the ordinal number of ninety-five in counting order -02209423 00 s 03 hundredth 0 centesimal 0 100th 0 001 & 02200035 a 0000 | the ordinal number of one hundred in counting order -02209551 00 s 02 hundred-and-first 0 101st 0 001 & 02200035 a 0000 | the ordinal number of one hundred one in counting order -02209678 00 s 02 hundred-and-fifth 0 105th 0 001 & 02200035 a 0000 | the ordinal number of one hundred five in counting order -02209806 00 s 02 hundred-and-tenth 0 110th 0 001 & 02200035 a 0000 | the ordinal number of one hundred ten in counting order -02209933 00 s 02 hundred-and-fifteenth 0 115th 0 001 & 02200035 a 0000 | the ordinal number of one hundred fifteen in counting order -02210068 00 s 02 hundred-and-twentieth 0 120th 0 001 & 02200035 a 0000 | the ordinal number of one hundred twenty in counting order -02210202 00 s 02 hundred-and-twenty-fifth 0 125th 0 001 & 02200035 a 0000 | the ordinal number of one hundred twenty-five in counting order -02210344 00 s 02 hundred-and-thirtieth 0 130th 0 001 & 02200035 a 0000 | the ordinal number of one hundred thirty in counting order -02210478 00 s 02 hundred-and-thirty-fifth 0 135th 0 001 & 02200035 a 0000 | the ordinal number of one hundred thirty-five in counting order -02210620 00 s 02 hundred-and-fortieth 0 140th 0 001 & 02200035 a 0000 | the ordinal number of one hundred forty in counting order -02210752 00 s 02 hundred-and-forty-fifth 0 145th 0 001 & 02200035 a 0000 | the ordinal number of one hundred forty-five in counting order -02210892 00 s 02 hundred-and-fiftieth 0 150th 0 001 & 02200035 a 0000 | the ordinal number of one hundred fifty in counting order -02211024 00 s 02 hundred-and-fifty-fifth 0 155th 0 001 & 02200035 a 0000 | the ordinal number of one hundred fifty-five in counting order -02211164 00 s 02 hundred-and-sixtieth 0 160th 0 001 & 02200035 a 0000 | the ordinal number of one hundred sixty in counting order -02211296 00 s 02 hundred-and-sixty-fifth 0 165th 0 001 & 02200035 a 0000 | the ordinal number of one hundred sixty-five in counting order -02211436 00 s 02 hundred-and-seventieth 0 170th 0 001 & 02200035 a 0000 | the ordinal number of one hundred seventy in counting order -02211572 00 s 02 hundred-and-seventy-fifth 0 175th 0 001 & 02200035 a 0000 | the ordinal number of one hundred seventy-five in counting order -02211716 00 s 02 hundred-and-eightieth 0 180th 0 001 & 02200035 a 0000 | the ordinal number of one hundred eighty in counting order -02211850 00 s 02 hundred-and-ninetieth 0 190th 0 001 & 02200035 a 0000 | the ordinal number of one hundred eighty-five in counting order -02211989 00 s 02 two-hundredth 0 200th 0 001 & 02200035 a 0000 | the ordinal number of two hundred in counting order -02212108 00 s 02 three-hundredth 0 300th 0 001 & 02200035 a 0000 | the ordinal number of three hundred in counting order -02212231 00 s 02 four-hundredth 0 400th 0 001 & 02200035 a 0000 | the ordinal number of four hundred in counting order -02212352 00 s 02 five-hundredth 0 500th 0 001 & 02200035 a 0000 | the ordinal number of five hundred in counting order -02212473 00 s 02 thousandth 0 1000th 0 001 & 02200035 a 0000 | the ordinal number of one thousand in counting order -02212591 00 s 01 millionth 0 001 & 02200035 a 0000 | the ordinal number of one million in counting order -02212698 00 s 01 billionth 0 001 & 02200035 a 0000 | the ordinal number of one billion in counting order -02212805 00 s 01 trillionth 0 001 & 02200035 a 0000 | the ordinal number of one trillion in counting order -02212914 00 s 01 quadrillionth 0 001 & 02200035 a 0000 | the ordinal number of one quadrillion in counting order -02213029 00 s 01 quintillionth 0 001 & 02200035 a 0000 | the ordinal number of one quintillion in counting order -02213144 00 s 02 nth 0 n-th 0 001 & 02200035 a 0000 | last or greatest in an indefinitely large series; "to the nth degree" -02213270 00 a 02 scripted 0 written 4 001 ! 02213377 a 0101 | written as for a film or play or broadcast -02213377 00 a 01 unscripted 0 002 ! 02213270 a 0101 & 02213557 a 0000 | not furnished with or using a script; "unrehearsed and unscript spot interviews"; "unscripted talk shows" -02213557 00 s 03 ad-lib 0 spontaneous 0 unwritten 0 002 & 02213377 a 0000 + 04786763 n 0202 | said or done without having been planned or written in advance; "he made a few ad-lib remarks" -02213748 00 a 01 sinkable 0 001 ! 02213824 a 0101 | capable of being sunk -02213824 00 a 01 unsinkable 0 001 ! 02213748 a 0101 | incapable of being sunk; "they thought the Titanic was unsinkable" -02213947 00 a 01 single 5 008 ! 02215977 a 0101 & 02214366 a 0000 & 02214518 a 0000 & 02214736 a 0000 & 02215087 a 0000 & 02215382 a 0000 & 02215567 a 0000 & 02215769 a 0000 | existing alone or consisting of one entity or part or aspect or individual; "upon the hill stood a single tower"; "had but a single thought which was to escape"; "a single survivor"; "a single serving"; "a single lens"; "a single thickness" -02214366 00 s 02 azygous 0 azygos 0 002 & 02213947 a 0000 ;c 06057539 n 0000 | occurring singly; not one of a pair; "the azygous muscle of the uvula" -02214518 00 s 03 one-man(a) 0 one-person(a) 0 one-woman(a) 0 001 & 02213947 a 0000 | designed for or restricted to a single person; "a one-man show"; "a one-person tent"; "Sarah Silverman's hilarious one-woman show" -02214736 00 s 05 lone(a) 0 lonesome(a) 0 only(a) 0 sole(a) 0 solitary(a) 0 002 & 02213947 a 0000 + 04622415 n 0203 | being the only one; single and isolated from others; "the lone doctor in the entire county"; "a lonesome pine"; "an only child"; "the sole heir"; "the sole example"; "a solitary instance of cowardice"; "a solitary speck in the sky" -02215087 00 s 02 singular 0 unique 0 003 & 02213947 a 0000 + 04763650 n 0202 + 04763650 n 0101 | the single one of its kind; "a singular example"; "the unique existing example of Donne's handwriting"; "a unique copy of an ancient manuscript"; "certain types of problems have unique solutions" -02215382 00 s 01 sui_generis 0 001 & 02213947 a 0000 | constituting a class of its own; unique; "a history book sui generis"; "sui generis works like Mary Chestnut's Civil War diary" -02215567 00 s 01 unary 0 001 & 02213947 a 0000 | consisting of or involving a single element or component; "in a unary operation in a mathematical system one element is used to yield a single result" -02215769 00 s 02 uninominal 0 one-member 0 002 & 02213947 a 0000 ;c 08163273 n 0000 | based on the system of having only one member from each district (as of a legislature); "a uninominal electoral system" -02215977 00 a 01 multiple 0 023 + 05859991 n 0101 + 05098750 n 0101 ! 02213947 a 0101 & 02216694 a 0000 & 02216890 a 0000 & 02216985 a 0000 & 02217241 a 0000 & 02217452 a 0000 & 02217799 a 0000 & 02218179 a 0000 & 02218314 a 0000 & 02218547 a 0000 & 02218834 a 0000 & 02219015 a 0000 & 02219144 a 0000 & 02219287 a 0000 & 02219492 a 0000 & 02219660 a 0000 & 02219770 a 0000 & 02219876 a 0000 & 02219988 a 0000 & 02220099 a 0000 & 02220207 a 0000 | having or involving or consisting of more than one part or entity or individual; "multiple birth"; "multiple ownership"; "made multiple copies of the speech"; "his multiple achievements in public life"; "her multiple personalities"; "a pineapple is a multiple fruit" -02216694 00 s 01 aggregate 0 002 & 02215977 a 0000 ;c 06066555 n 0000 | composed of a dense cluster of separate units such as carpels or florets or drupelets; "raspberries are aggregate fruits" -02216890 00 s 01 bigeminal 0 001 & 02215977 a 0000 | occurring in pairs; "a bigeminal pulse" -02216985 00 s 01 binary 0 001 & 02215977 a 0000 | consisting of two (units or components or elements or terms); "a binary star is a system in which two stars revolve around each other"; "a binary compound"; "the binary number system has two as its base" -02217241 00 s 04 double 1 doubled 2 twofold 1 two-fold 1 003 & 02215977 a 0000 + 05860200 n 0101 + 00803394 n 0102 | twice as great or many; "ate a double portion"; "the dose is doubled"; "a twofold increase" -02217452 00 s 03 double 2 dual 0 duple 0 002 & 02215977 a 0000 + 07939880 n 0202 | consisting of or involving two parts or components usually in pairs; "an egg with a double yolk"; "a double (binary) star"; "double doors"; "dual controls for pilot and copilot"; "duple (or double) time consists of two (or a multiple of two) beats to a measure" -02217799 00 s 07 double 3 dual 2 twofold 2 two-fold 2 treble 3 threefold 2 three-fold 2 001 & 02215977 a 0000 | having more than one decidedly dissimilar aspects or qualities; "a double (or dual) role for an actor"; "the office of a clergyman is twofold; public preaching and private influence"- R.W.Emerson; "every episode has its double and treble meaning"-Frederick Harrison -02218179 00 s 01 duplex 0 001 & 02215977 a 0000 | (used technically of a device or process) having two parts; "a duplex transaction" -02218314 00 s 02 manifold 0 multiplex 0 001 & 02215977 a 0000 | many and varied; having many features or forms; "manifold reasons"; "our manifold failings"; "manifold intelligence"; "the multiplex opportunities in high technology" -02218547 00 s 04 ternary 0 treble 1 triple 0 triplex 0 001 & 02215977 a 0000 | having three units or components or elements; "a ternary operation"; "a treble row of red beads"; "overcrowding made triple sessions necessary"; "triple time has three beats per measure"; "triplex windows" -02218834 00 s 04 treble 0 threefold 1 three-fold 1 triple 1 001 & 02215977 a 0000 | three times as great or many; "a claim for treble (or triple) damages"; "a threefold increase" -02219015 00 s 01 triune 0 001 & 02215977 a 0000 | being three in one; used especially of the Christian Trinity; "a triune God" -02219144 00 s 03 quadruple 0 fourfold 1 four-fold 1 001 & 02215977 a 0000 | four times as great or many; "a fourfold increase in the dosage" -02219287 00 s 05 quadruple 2 quadruplicate 0 quadruplex 0 fourfold 0 four-fold 0 001 & 02215977 a 0000 | having four units or components; "quadruple rhythm has four beats per measure"; "quadruplex wire" -02219492 00 s 02 quaternate 0 quaternary 0 001 & 02215977 a 0000 | consisting of or especially arranged in sets of four; "quaternate leaves"; "a quaternary compound" -02219660 00 s 03 quintuple 0 fivefold 0 five-fold 0 001 & 02215977 a 0000 | having five units or components -02219770 00 s 03 sextuple 0 sixfold 0 six-fold 0 001 & 02215977 a 0000 | having six units or components -02219876 00 s 03 septuple 0 sevenfold 0 seven-fold 0 001 & 02215977 a 0000 | having seven units or components -02219988 00 s 03 octuple 0 eightfold 0 eight-fold 0 001 & 02215977 a 0000 | having eight units or components -02220099 00 s 03 nonuple 0 ninefold 0 nine-fold 0 001 & 02215977 a 0000 | having nine units or components -02220207 00 s 03 tenfold 0 ten-fold 0 denary 0 001 & 02215977 a 0000 | containing ten or ten parts -02220308 00 a 01 double 4 002 ;c 06066555 n 0000 ! 02220571 a 0101 | used of flowers having more than the usual number of petals in crowded or overlapping arrangements; "double chrysanthemums have many rows of petals and are usually spherical or hemispherical" -02220571 00 a 01 single 4 002 ;c 06066555 n 0000 ! 02220308 a 0101 | used of flowers having usually only one row or whorl of petals; "single chrysanthemums resemble daisies and may have more than one row of petals" -02220788 00 a 01 multiple-choice 0 001 ! 02221017 a 0101 | offering several alternative answers from which the correct one is to be chosen; or consisting of such questions; "multiple-choice questions"; "a multiple-choice test" -02221017 00 a 01 true-false 0 001 ! 02220788 a 0101 | offering a series of statements each of which is to be judged as true or false; "a true-false test" -02221173 00 a 01 single-lane 0 001 ! 02221362 a 0101 | (of roads) having a single lane for traffic in both directions; when vehicles meet one must pull off the road to let the other pass -02221362 00 a 01 multilane 0 005 ! 02221173 a 0101 & 02221550 a 0000 & 02221723 a 0000 & 02221821 a 0000 & 02221951 a 0000 | (of roads and highways) having two or more lanes for traffic -02221550 00 s 02 divided 0 dual-lane 0 001 & 02221362 a 0000 | having a median strip or island between lanes of traffic moving in opposite directions; "a divided highway" -02221723 00 s 01 two-lane 0 001 & 02221362 a 0000 | having a lane for traffic in each direction -02221821 00 s 01 three-lane 0 001 & 02221362 a 0000 | having a lane for traffic in each direction and a center lane for passing -02221951 00 s 01 four-lane 0 001 & 02221362 a 0000 | having two lanes for traffic in each direction -02222053 00 a 01 sized 0 026 ! 02225071 a 0101 & 02222578 a 0000 & 02222675 a 0000 & 02222773 a 0000 & 02222871 a 0000 & 02222965 a 0000 & 02223066 a 0000 & 02223165 a 0000 & 02223263 a 0000 & 02223361 a 0000 & 02223457 a 0000 & 02223559 a 0000 & 02223659 a 0000 & 02223785 a 0000 & 02223881 a 0000 & 02223977 a 0000 & 02224076 a 0000 & 02224168 a 0000 & 02224266 a 0000 & 02224362 a 0000 & 02224509 a 0000 & 02224588 a 0000 & 02224688 a 0000 & 02224790 a 0000 & 02224879 a 0000 & 02224977 a 0000 | having a specified size -02222578 00 s 01 apple-sized 0 001 & 02222053 a 0000 | having the approximate size of an apple -02222675 00 s 01 cherry-sized 0 001 & 02222053 a 0000 | having the approximate size of a cherry -02222773 00 s 01 cookie-sized 0 001 & 02222053 a 0000 | having the approximate size of a cookie -02222871 00 s 01 crow-sized 0 001 & 02222053 a 0000 | having the approximate size of a crow -02222965 00 s 01 dog-sized 0 001 & 02222053 a 0000 | having the approximate size of an average dog -02223066 00 s 01 eightpenny 0 001 & 02222053 a 0000 | used of nail size; 2 1/2 in or 6.4 cm long -02223165 00 s 01 ferret-sized 0 001 & 02222053 a 0000 | having the approximate size of a ferret -02223263 00 s 01 fourpenny 0 001 & 02222053 a 0000 | used of nail size; 1 3/8 in or 3.8 cm long -02223361 00 s 01 grape-sized 0 001 & 02222053 a 0000 | having the approximate size of a grape -02223457 00 s 01 human-sized 0 001 & 02222053 a 0000 | having the approximate size of a human being -02223559 00 s 01 kiwi-sized 0 001 & 02222053 a 0000 | having the approximate size of a kiwi fruit -02223659 00 s 04 medium-sized 0 medium-size 0 moderate-sized 0 moderate-size 0 001 & 02222053 a 0000 | intermediate in size -02223785 00 s 01 mouse-sized 0 001 & 02222053 a 0000 | having the approximate size of a mouse -02223881 00 s 01 ninepenny 0 001 & 02222053 a 0000 | used of nail size; 2 3/4 in or 7 cm long -02223977 00 s 01 orange-sized 0 001 & 02222053 a 0000 | having the approximate size of an orange -02224076 00 s 01 pig-sized 0 001 & 02222053 a 0000 | having the approximate size of a pig -02224168 00 s 01 rabbit-sized 0 001 & 02222053 a 0000 | having the approximate size of a rabbit -02224266 00 s 01 shrew-sized 0 001 & 02222053 a 0000 | having the approximate size of a shrew -02224362 00 s 01 size 0 002 & 02222053 a 0000 ;u 06307152 n 0000 | (used in combination) sized; "the economy-size package"; "average-size house" -02224509 00 s 01 sorted 0 001 & 02222053 a 0000 | arranged according to size -02224588 00 s 01 sparrow-sized 0 001 & 02222053 a 0000 | having the approximate size of a sparrow -02224688 00 s 01 squirrel-sized 0 001 & 02222053 a 0000 | having the approximate size of a squirrel -02224790 00 s 01 threepenny 0 001 & 02222053 a 0000 | used of nail size; 1 1/8 in long -02224879 00 s 01 turkey-sized 0 001 & 02222053 a 0000 | having the approximate size of a turkey -02224977 00 s 01 wolf-sized 0 001 & 02222053 a 0000 | having the approximate size of a wolf -02225071 00 a 01 unsized 0 002 ! 02222053 a 0101 & 02225202 a 0000 | not fashioned to sizes; "unsized gloves; one size fits all" -02225202 00 s 01 unsorted 0 001 & 02225071 a 0000 | not arranged according to size -02225287 00 a 01 sized 1 001 ! 02225387 a 0101 | having the surface treated or coated with sizing -02225387 00 a 01 unsized 1 001 ! 02225287 a 0101 | not having the surface treated or coated with sizing; "unsized paper" -02225510 00 a 01 skilled 0 014 ^ 00510050 a 0000 ^ 00935500 a 0000 ! 02228335 a 0101 & 02226028 a 0000 & 02226162 a 0000 & 02226661 a 0000 & 02226756 a 0000 & 02226979 a 0000 & 02227344 a 0000 & 02227485 a 0000 & 02227663 a 0000 & 02227772 a 0000 & 02227946 a 0000 & 02228163 a 0000 | having or showing or requiring special skill; "only the most skilled gymnasts make an Olympic team"; "a skilled surgeon has many years of training and experience"; "a skilled reconstruction of her damaged elbow"; "a skilled trade" -02226028 00 s 02 accomplished 0 complete 0 001 & 02225510 a 0000 | highly skilled; "an accomplished pianist"; "a complete musician" -02226162 00 s 07 adept 0 expert 0 good 0 practiced 0 proficient 0 skillful 0 skilful 0 007 & 02225510 a 0000 + 05640433 n 0601 + 05643190 n 0501 + 05154114 n 0501 + 05640729 n 0201 + 09762509 n 0102 + 05642175 n 0101 | having or showing knowledge and skill and aptitude; "adept in handicrafts"; "an adept juggler"; "an expert job"; "a good mechanic"; "a practiced marksman"; "a proficient engineer"; "a lesser-known but no less skillful composer"; "the effect was achieved by skillful retouching" -02226661 00 s 01 arch(a) 0 001 & 02225510 a 0000 | expert in skulduggery; "an arch criminal" -02226756 00 s 01 ball-hawking 0 004 & 02225510 a 0000 ;c 00471613 n 0000 ;c 00480993 n 0000 ;c 00468480 n 0000 | used of a player skilled in stealing the ball or robbing a batter of a hit; "a ball-hawking center fielder" -02226979 00 s 04 consummate 0 masterful 0 masterly 0 virtuoso(a) 0 005 & 02225510 a 0000 + 10755512 n 0401 + 09762509 n 0407 + 10298482 n 0301 + 10280130 n 0302 | having or revealing supreme mastery or skill; "a consummate artist"; "consummate skill"; "a masterful speaker"; "masterful technique"; "a masterly performance of the sonata"; "a virtuoso performance" -02227344 00 s 01 delicate 0 001 & 02225510 a 0000 | marked by great skill especially in meticulous technique; "a surgeon's delicate touch" -02227485 00 s 01 hot 0 002 & 02225510 a 0000 ;u 07075172 n 0000 | performed or performing with unusually great skill and daring and energy; "a hot drummer"; "he's hot tonight" -02227663 00 s 01 mean 0 002 & 02225510 a 0000 ;u 07157273 n 0000 | excellent; "famous for a mean backhand" -02227772 00 s 01 sure-handed 0 001 & 02225510 a 0000 | proficient and confident in performance; "promising playwrights...sure-handed enough to turn out top-drawer scripts" -02227946 00 s 02 technical 1 expert 5 002 & 02225510 a 0000 + 05640729 n 0202 | of or relating to or requiring special knowledge to be understood; "technical terminology"; "a technical report"; "technical language" -02228163 00 s 01 versatile 0 002 & 02225510 a 0000 + 05641834 n 0101 | competent in many areas and able to turn with ease from one thing to another; "a versatile writer" -02228335 00 a 01 unskilled 0 014 ^ 00511214 a 0000 ^ 00936740 a 0000 ! 02225510 a 0101 & 02228901 a 0000 & 02229000 a 0000 & 02229201 a 0000 & 02229324 a 0000 & 02229584 a 0000 & 02229812 a 0000 & 02229961 a 0000 & 02230080 a 0000 & 02230205 a 0000 & 02230324 a 0000 & 02230471 a 0000 | not having or showing or requiring special skill or proficiency; "unskilled in the art of rhetoric"; "an enthusiastic but unskillful mountain climber"; "unskilled labor"; "workers in unskilled occupations are finding fewer and fewer job opportunities"; "unskilled workmanship" -02228901 00 s 01 artless 0 001 & 02228335 a 0000 | showing lack of art; "an artless translation" -02229000 00 s 03 botchy 0 butcherly 0 unskillful 0 004 & 02228335 a 0000 + 05648247 n 0301 + 09879744 n 0208 + 00074790 n 0109 | poorly done; "a botchy piece of work"; "it was an unskillful attempt" -02229201 00 s 02 bungled 0 botched 0 001 & 02228335 a 0000 | spoiled through incompetence or clumsiness; "a bungled job" -02229324 00 s 04 bungling 0 clumsy 0 fumbling 0 incompetent 0 004 & 02228335 a 0000 + 05154241 n 0402 + 05154241 n 0401 + 05648459 n 0202 | showing lack of skill or aptitude; "a bungling workman"; "did a clumsy job"; "his fumbling attempt to put up a shelf" -02229584 00 s 02 crude 1 rough 0 003 & 02228335 a 0000 + 04817564 n 0202 + 04817564 n 0101 | not carefully or expertly made; "managed to make a crude splint"; "a crude cabin of logs with bark still on them"; "rough carpentry" -02229812 00 s 01 hopeless 3 002 & 02228335 a 0000 + 07542249 n 0101 | of a person unable to do something skillfully; "I'm hopeless at mathematics" -02229961 00 s 03 humble 0 menial 0 lowly 0 001 & 02228335 a 0000 | used of unskilled work (especially domestic work) -02230080 00 s 01 lubberly 0 002 & 02228335 a 0000 + 10274639 n 0106 | clumsy and unskilled; "a big stupid lubberly fellow" -02230205 00 s 02 out_of_practice(p) 0 rusty 0 002 & 02228335 a 0000 + 05648756 n 0201 | impaired in skill by neglect -02230324 00 s 01 semiskilled(a) 0 001 & 02228335 a 0000 | possessing or requiring limited skills; "semiskilled dockworkers"; "a semiskilled job" -02230471 00 s 01 weak 0 001 & 02228335 a 0000 | deficient or lacking in some skill; "he's weak in spelling" -02230581 00 a 01 verbal 0 001 ! 02230795 a 0101 | relating to or having facility in the use of words; "a good poet is a verbal artist"; "a merely verbal writer who sacrifices content to sound"; "verbal aptitude" -02230795 00 a 02 numerical 0 mathematical 0 001 ! 02230581 a 0101 | relating to or having ability to think in or work with numbers; "tests for rating numerical aptitude"; "a mathematical whiz" -02230990 00 a 02 coarse 0 harsh 0 010 ^ 02238462 a 0000 = 04946877 n 0000 + 04949066 n 0201 + 04948722 n 0101 ! 02232251 a 0101 & 02231355 a 0000 & 02231502 a 0000 & 02231886 a 0000 & 02231998 a 0000 & 02232112 a 0000 | of textures that are rough to the touch or substances consisting of relatively large particles; "coarse meal"; "coarse sand"; "a coarse weave" -02231355 00 s 02 coarse-grained 1 large-grained 0 001 & 02230990 a 0000 | not having a fine texture; "coarse-grained wood"; "large-grained sand" -02231502 00 s 07 farinaceous 0 coarse-grained 2 grainy 0 granular 0 granulose 0 gritty 0 mealy 0 006 & 02230990 a 0000 + 14700594 n 0601 + 09290777 n 0401 + 04949256 n 0403 + 09290777 n 0301 + 04949256 n 0302 | composed of or covered with particles resembling meal in texture or consistency; "granular sugar"; "the photographs were grainy and indistinct"; "it left a mealy residue" -02231886 00 s 01 granulated 0 001 & 02230990 a 0000 | made grainy or formed into granules; "granulated sugar" -02231998 00 s 02 plushy 0 plush-like 0 002 & 02230990 a 0000 + 03970546 n 0101 | (of textures) resembling plush -02232112 00 s 02 loose 0 open 0 001 & 02230990 a 0000 | (of textures) full of small openings or gaps; "an open texture"; "a loose weave" -02232251 00 a 01 fine 0 012 ^ 02236842 a 0000 = 04946877 n 0000 + 04948069 n 0101 ! 02230990 a 0101 & 02232739 a 0000 & 02232869 a 0000 & 02233072 a 0000 & 02233154 a 0000 & 02233282 a 0000 & 02233390 a 0000 & 02233680 a 0000 & 02233799 a 0000 | of textures that are smooth to the touch or substances consisting of relatively small particles; "wood with a fine grain"; "fine powdery snow"; "fine rain"; "batiste is a cotton fabric with a fine weave"; "covered with a fine film of dust" -02232739 00 s 02 close 0 tight 0 001 & 02232251 a 0000 | of textiles; "a close weave"; "smooth percale with a very tight weave" -02232869 00 s 02 close-grained 0 fine-grained 1 001 & 02232251 a 0000 | dense or compact in structure or texture, as a wood composed of small-diameter cells; "close-grained birch"; "fine-grained rock" -02233072 00 s 01 dustlike 0 001 & 02232251 a 0000 | as fine and powdery as dust -02233154 00 s 01 floury 0 002 & 02232251 a 0000 + 07569106 n 0101 | resembling flour in fine powdery texture; "a floury clay" -02233282 00 s 01 nongranular 0 001 & 02232251 a 0000 | not having granules; "clear nongranular cytoplasm" -02233390 00 s 06 powdered 0 powdery 0 pulverized 0 pulverised 0 small-grained 0 fine-grained 2 003 & 02232251 a 0000 + 14997012 n 0201 + 04948069 n 0202 | consisting of fine particles; "powdered cellulose"; "powdery snow"; "pulverized sugar is prepared from granulated sugar by grinding" -02233680 00 s 01 small 0 001 & 02232251 a 0000 | have fine or very small constituent particles; "a small misty rain" -02233799 00 s 01 superfine 0 001 & 02232251 a 0000 | of extremely fine size or texture; "superfine sugar"; "a superfine file" -02233927 00 a 01 smoky 0 006 + 13556893 n 0101 + 11508092 n 0101 ! 02234485 a 0101 & 02234187 a 0000 & 02234281 a 0000 & 02234388 a 0000 | marked by or emitting or filled with smoke; "smoky rafters"; "smoky chimneys"; "a smoky fireplace"; "a smoky corridor" -02234187 00 s 01 blackened 0 001 & 02233927 a 0000 | darkened by smoke; "blackened rafters" -02234281 00 s 01 smoking 0 001 & 02233927 a 0000 | emitting smoke in great volume; "a smoking fireplace" -02234388 00 s 01 smoke-filled 0 001 & 02233927 a 0000 | containing smoke; "smoke-filled rooms" -02234485 00 a 01 smokeless 0 002 ! 02233927 a 0101 & 02234673 a 0000 | emitting or containing little or no smoke; "smokeless factory stacks"; "smokeless fuel"; "a smokeless environment" -02234673 00 s 01 smoke-free 0 001 & 02234485 a 0000 | free of smoke; "smoke-free offices and restaurants" -02234781 00 a 02 slippery 0 slippy 0 012 ^ 02236842 a 0000 + 04947628 n 0204 + 00329031 n 0202 + 04947628 n 0103 ! 02236271 a 0101 & 02235188 a 0000 & 02235330 a 0000 & 02235520 a 0000 & 02235740 a 0000 & 02235826 a 0000 & 02235994 a 0000 & 02236146 a 0000 | causing or tending to cause things to slip or slide; "slippery sidewalks"; "a slippery bar of soap"; "the streets are still slippy from the rain" -02235188 00 s 01 lubricious 0 001 & 02234781 a 0000 | having a smooth or slippery quality; "the skin of cephalopods is thin and lubricious" -02235330 00 s 01 nonstick 0 001 & 02234781 a 0000 | (of surfaces especially of cooking utensils) permitting easy removal of adherent food particles; "a frying pan with a nonstick surface" -02235520 00 s 01 slick 0 002 & 02234781 a 0000 + 04947628 n 0101 | made slick by e.g. ice or grease; "sidewalks slick with ice"; "roads are slickest when rain has just started and hasn't had time to wash away the oil" -02235740 00 s 01 sliding 0 001 & 02234781 a 0000 | being a smooth continuous motion -02235826 00 s 02 slimed 0 slimy 0 003 & 02234781 a 0000 + 04935405 n 0201 + 14956661 n 0202 | covered with or resembling slime; "a slimy substance covered the rocks" -02235994 00 s 02 slipping 0 slithering 0 001 & 02234781 a 0000 | moving as on a slippery surface; "his slipping and slithering progress over the ice" -02236146 00 s 01 slithery 0 001 & 02234781 a 0000 | having a slippery surface or quality ; "slithery mud"; "slithery eels" -02236271 00 a 01 nonslippery 0 004 ^ 02238462 a 0000 ! 02234781 a 0101 & 02236423 a 0000 & 02236532 a 0000 | not slippery; not likely to slip or skid -02236423 00 s 01 nonskid 0 001 & 02236271 a 0000 | designed to reduce or prevent skidding; "nonskid tires" -02236532 00 s 01 nonslip 0 001 & 02236271 a 0000 | designed to reduce or prevent slipping; "a nonslip surface" -02236645 00 a 02 lubricated 0 greased 0 001 ! 02236757 a 0101 | smeared with oil or grease to reduce friction -02236757 00 a 02 unlubricated 0 ungreased 0 001 ! 02236645 a 0101 | not lubricated -02236842 00 a 01 smooth 0 014 ^ 00909545 a 0000 ^ 02232251 a 0000 ^ 01359543 a 0000 ^ 02234781 a 0000 + 04947186 n 0101 ! 02238462 a 0101 & 02237303 a 0000 & 02237420 a 0000 & 02237502 a 0000 & 02237644 a 0000 & 02237761 a 0000 & 02237978 a 0000 & 02238128 a 0000 & 02238310 a 0000 | having a surface free from roughness or bumps or ridges or irregularities; "smooth skin"; "a smooth tabletop"; "smooth fabric"; "a smooth road"; "water as smooth as a mirror" -02237303 00 s 02 creaseless 0 uncreased 0 001 & 02236842 a 0000 | used especially of fabrics; "uncreased trousers" -02237420 00 s 01 even-textured 0 001 & 02236842 a 0000 | having an even texture -02237502 00 s 01 fast 0 001 & 02236842 a 0000 | (of surfaces) conducive to rapid speeds; "a fast road"; "grass courts are faster than clay" -02237644 00 s 02 fine-textured 0 smooth-textured 0 001 & 02236842 a 0000 | having a smooth, fine-grained structure -02237761 00 s 01 glassy 0 002 & 02236842 a 0000 + 14881303 n 0101 | resembling glass in smoothness and shininess and slickness; "the glassy surface of the lake"; "the pavement was...glassy with water"- Willa Cather -02237978 00 s 03 seamless 0 unlined 0 unseamed 0 001 & 02236842 a 0000 | smooth, especially of skin; "his cheeks were unlined"; "his unseamed face" -02238128 00 s 04 streamlined 0 aerodynamic 0 flowing 0 sleek 1 001 & 02236842 a 0000 | designed or arranged to offer the least resistant to fluid flow; "a streamlined convertible" -02238310 00 s 03 velvet 0 velvety 0 velvet-textured 0 002 & 02236842 a 0000 + 04525038 n 0101 | smooth and soft to sight or hearing or touch or taste -02238462 00 a 02 rough 0 unsmooth 0 036 ^ 02230990 a 0000 ^ 01960656 a 0000 ^ 02236271 a 0000 ^ 00911327 a 0000 ^ 01359861 a 0000 ^ 01812846 a 0000 + 04948241 n 0101 ! 02236842 a 0101 & 02239289 a 0000 & 02239479 a 0000 & 02239607 a 0000 & 02239746 a 0000 & 02239888 a 0000 & 02240006 a 0000 & 02240129 a 0000 & 02240275 a 0000 & 02240379 a 0000 & 02240490 a 0000 & 02240668 a 0000 & 02240795 a 0000 & 02241078 a 0000 & 02241247 a 0000 & 02241443 a 0000 & 02241543 a 0000 & 02241714 a 0000 & 02241834 a 0000 & 02241988 a 0000 & 02242223 a 0000 & 02242412 a 0000 & 02242481 a 0000 & 02242582 a 0000 & 02242697 a 0000 & 02242798 a 0000 & 02242887 a 0000 & 02243086 a 0000 & 02243255 a 0000 | having or caused by an irregular surface; "trees with rough bark"; "rough ground"; "rough skin"; "rough blankets"; "his unsmooth face" -02239289 00 s 02 abrasive 0 scratchy 0 007 & 02238462 a 0000 + 04949066 n 0203 + 14286549 n 0202 + 14799244 n 0101 + 01251651 v 0102 + 01254013 v 0101 + 04949066 n 0102 | causing abrasion -02239479 00 s 02 alligatored 0 cracked 1 001 & 02238462 a 0000 | of paint or varnish; having the appearance of alligator hide -02239607 00 s 01 barky 0 002 & 02238462 a 0000 + 13162297 n 0101 | resembling the rough bark of a tree; "the rattlesnake's barky scales" -02239746 00 s 02 broken 0 rugged 0 002 & 02238462 a 0000 + 04772388 n 0201 | topographically very uneven; "broken terrain"; "rugged ground" -02239888 00 s 01 bullate 0 002 & 02238462 a 0000 ;c 06066555 n 0000 | of leaves; appearing puckered as if blistered -02240006 00 s 01 bumpy 2 002 & 02238462 a 0000 + 04949681 n 0101 | covered with or full of bumps; "a bumpy country road" -02240129 00 s 03 chapped 0 cracked 2 roughened 0 001 & 02238462 a 0000 | used of skin roughened as a result of cold or exposure; "chapped lips" -02240275 00 s 02 corded 0 twilled 0 001 & 02238462 a 0000 | of textiles; having parallel raised lines -02240379 00 s 02 costate 0 ribbed 0 001 & 02238462 a 0000 | (of the surface) having a rough, riblike texture -02240490 00 s 04 cragged 0 craggy 0 hilly 0 mountainous 0 004 & 02238462 a 0000 + 09359803 n 0401 + 09303008 n 0301 + 04772557 n 0301 | having hills and crags; "hilly terrain" -02240668 00 s 01 crushed 0 001 & 02238462 a 0000 | treated so as to have a permanently wrinkled appearance; "crushed velvet" -02240795 00 s 05 homespun(p) 0 nubby 0 nubbly 0 slubbed 0 tweedy 0 007 & 02238462 a 0000 + 04948722 n 0503 + 04502502 n 0501 + 13895622 n 0302 + 13895622 n 0201 + 04948722 n 0202 + 03529444 n 0101 | of textiles; having a rough surface; "a sweater knitted of nubbly homespun yarns" -02241078 00 s 02 imbricate 0 imbricated 0 002 & 02238462 a 0000 ;c 06066555 n 0000 | used especially of leaves or bracts; overlapping or layered as scales or shingles -02241247 00 s 05 lepidote 0 leprose 0 scabrous 0 scaly 0 scurfy 0 004 & 02238462 a 0000 ;c 06037666 n 0000 + 04948603 n 0401 + 01902877 n 0401 | rough to the touch; covered with scales or scurf -02241443 00 s 01 squamulose 0 002 & 02238462 a 0000 ;c 06066555 n 0000 | covered with tiny scales -02241543 00 s 02 lined 0 seamed 0 001 & 02238462 a 0000 | (used especially of skin) marked by lines or seams; "their lined faces were immeasurably sad"; "a seamed face" -02241714 00 s 03 pocked 0 pockmarked 0 potholed 0 001 & 02238462 a 0000 | used of paved surfaces having holes or pits -02241834 00 s 02 rock-ribbed 0 rockbound 0 001 & 02238462 a 0000 | abounding in or bordered by rocky cliffs or scarps; "the rock-ribbed coast of Maine" -02241988 00 s 04 rocky 0 bouldery 0 bouldered 0 stony 0 005 & 02238462 a 0000 + 09416076 n 0402 + 09227839 n 0201 + 04772191 n 0101 + 09416076 n 0101 | abounding in rocks or stones; "rocky fields"; "stony ground"; "bouldery beaches" -02242223 00 s 03 gravelly 0 pebbly 0 shingly 0 004 & 02238462 a 0000 + 14699574 n 0301 + 09388023 n 0201 + 14698884 n 0101 | abounding in small stones; "landed at a shingly little beach" -02242412 00 s 01 roughish 0 001 & 02238462 a 0000 | somewhat rough -02242481 00 s 01 rugose 0 002 & 02238462 a 0000 ;c 06066555 n 0000 | of leaves; ridged or wrinkled -02242582 00 s 01 sandpapery 0 002 & 02238462 a 0000 + 14849880 n 0102 | having the abrasive texture of sandpaper -02242697 00 s 01 saw-like 0 001 & 02238462 a 0000 | having rough edges that can be used for sawing -02242798 00 s 01 scabby 0 002 & 02238462 a 0000 + 05264247 n 0101 | covered with scabs -02242887 00 s 02 shagged 0 shaggy 0 003 & 02238462 a 0000 + 04183076 n 0201 + 04949560 n 0201 | having a very rough nap or covered with hanging shags; "junipers with shagged trunks"; "shaggy rugs" -02243086 00 s 03 textured 0 rough-textured 0 coarse-textured 0 001 & 02238462 a 0000 | having surface roughness; "a textured wall of stucco"; "a rough-textured tweed" -02243255 00 s 03 verrucose 0 warty 0 wartlike 0 002 & 02238462 a 0000 + 04696432 n 0201 | (of skin) covered with warts or projections that resemble warts -02243411 00 a 01 smooth 4 002 + 04709011 n 0101 ! 02243567 a 0101 | of motion that runs or flows or proceeds without jolts or turbulence; "a smooth ride" -02243567 00 a 06 rough 4 rocky 0 bumpy 0 jolty 0 jolting 0 jumpy 0 005 + 00867357 n 0602 + 00335988 n 0403 + 07338681 n 0302 + 00348008 n 0201 ! 02243411 a 0101 | causing or characterized by jolts and irregular movements; "a rough ride" -02243806 00 a 02 furrowed 0 rugged 2 004 ! 02244472 a 0101 & 02244065 a 0000 & 02244198 a 0000 & 02244361 a 0000 | having long narrow shallow depressions (as grooves or wrinkles) in the surface; "furrowed fields"; "his furrowed face lit by a warming smile" -02244065 00 s 01 canaliculate 0 001 & 02243806 a 0000 | having thin parallel channels; "canaliculate leafstalks of certain plants" -02244198 00 s 01 corrugated 0 001 & 02243806 a 0000 | shaped into alternating parallel grooves and ridges; "the surface of the ocean was rippled and corrugated" -02244361 00 s 02 rutted 0 rutty 0 002 & 02243806 a 0000 + 13894154 n 0201 | full of ruts; "rutty farm roads" -02244472 00 a 01 unfurrowed 0 001 ! 02243806 a 0101 | not marked with shallow depressions or furrows; "an unfurrowed field"; "unfurrowed cheeks" -02244619 00 a 01 smooth 2 010 ^ 02166346 a 0000 ^ 02171024 a 0000 ;c 06066555 n 0000 + 04769716 n 0101 ! 02245403 a 0101 & 02244890 a 0000 & 02245020 a 0000 & 02245108 a 0000 & 02245223 a 0000 & 02245318 a 0000 | of the margin of a leaf shape; not broken up into teeth -02244890 00 s 01 entire 0 001 & 02244619 a 0000 | (of leaves or petals) having a smooth edge; not broken up into teeth or lobes -02245020 00 s 01 repand 0 001 & 02244619 a 0000 | having a slightly undulating margin -02245108 00 s 01 sinuate 0 001 & 02244619 a 0000 | having a strongly waved margin alternately concave and convex -02245223 00 s 01 undulate 0 001 & 02244619 a 0000 | having a wavy margin and rippled surface -02245318 00 s 02 unnotched 0 untoothed 0 001 & 02244619 a 0000 | having no notches -02245403 00 a 01 rough 2 024 ^ 02166346 a 0000 ^ 02171024 a 0000 ;c 06066555 n 0000 + 04948241 n 0101 ! 02244619 a 0101 & 02245944 a 0000 & 02246056 a 0000 & 02246182 a 0000 & 02246296 a 0000 & 02246410 a 0000 & 02246539 a 0000 & 02246637 a 0000 & 02246733 a 0000 & 02246826 a 0000 & 02246903 a 0000 & 02247074 a 0000 & 02247166 a 0000 & 02247295 a 0000 & 02247422 a 0000 & 02247489 a 0000 & 02247637 a 0000 & 02247785 a 0000 & 02247938 a 0000 & 02248011 a 0000 | of the margin of a leaf shape; having the edge cut or fringed or scalloped -02245944 00 s 01 bidentate 0 001 & 02245403 a 0000 | having toothlike projections that are themselves toothed -02246056 00 s 01 biserrate 0 001 & 02245403 a 0000 | having saw-like notches with the notches themselves similarly notched -02246182 00 s 02 ciliate 0 ciliated 0 001 & 02245403 a 0000 | having a margin or fringe of hairlike projections -02246296 00 s 03 crenate 0 crenated 0 scalloped 0 001 & 02245403 a 0000 | having a margin with rounded scallops -02246410 00 s 02 crenulate 0 crenulated 0 001 & 02245403 a 0000 | having a margin with small rounded teeth; "a crenulate leaf" -02246539 00 s 01 crispate 0 001 & 02245403 a 0000 | wavy or notched and curled very irregularly -02246637 00 s 01 dentate 0 001 & 02245403 a 0000 | having toothlike projections in the margin -02246733 00 s 01 denticulate 0 001 & 02245403 a 0000 | having a very finely toothed margin -02246826 00 s 01 emarginate 0 001 & 02245403 a 0000 | having a notched tip -02246903 00 s 05 erose 0 jagged 0 jaggy 0 notched 1 toothed 1 002 & 02245403 a 0000 + 04772691 n 0201 | having an irregularly notched or toothed margin as though gnawed -02247074 00 s 01 fimbriate 0 001 & 02245403 a 0000 | having a fringe of slender processes -02247166 00 s 02 fringed 0 laciniate 0 001 & 02245403 a 0000 | having edges irregularly and finely slashed; "a laciniate leaf" -02247295 00 s 02 lacerate 0 lacerated 0 001 & 02245403 a 0000 | irregularly slashed and jagged as if torn; "lacerate leaves" -02247422 00 s 01 pectinate 0 001 & 02245403 a 0000 | like a comb -02247489 00 s 01 rimose 0 001 & 02245403 a 0000 | having a surface covered with a network of cracks and small crevices; "a tree with rimose bark" -02247637 00 s 01 runcinate 0 001 & 02245403 a 0000 | having incised margins with the lobes or teeth pointing toward the base; as dandelion leaves -02247785 00 s 05 serrate 0 serrated 0 saw-toothed 0 toothed 2 notched 2 001 & 02245403 a 0000 | notched like a saw with teeth pointing toward the apex -02247938 00 s 01 serrulate 0 001 & 02245403 a 0000 | minutely serrated -02248011 00 s 01 spinose 0 001 & 02245403 a 0000 | having spines -02248078 00 a 01 rifled 0 001 ! 02248204 a 0101 | of a firearm; having rifling or internal spiral grooves inside the barrel -02248204 00 a 02 unrifled 0 smoothbore 0 001 ! 02248078 a 0101 | of a firearm; not having rifling or internal spiral grooves inside the barrel -02248349 00 a 01 social 0 010 ^ 01074650 a 0000 ^ 02252634 a 0000 ^ 02257141 a 0000 = 04652635 n 0000 + 04652635 n 0101 ! 02249441 a 0101 & 02248693 a 0000 & 02248984 a 0000 & 02249183 a 0000 & 02249337 a 0000 | living together or enjoying life in communities or organized groups; "a human being is a social animal"; "mature social behavior" -02248693 00 s 03 cultural 0 ethnic 0 ethnical 0 004 & 02248349 a 0000 + 04799133 n 0201 + 05984936 n 0102 + 05751794 n 0101 | denoting or deriving from or distinctive of the ways of living built up by a group of people; "influenced by ethnic and cultural ties"- J.F.Kennedy; "ethnic food" -02248984 00 s 01 gregarious 0 002 & 02248349 a 0000 + 04653869 n 0101 | instinctively or temperamentally seeking and enjoying the company of others; "he is a gregarious person who avoids solitude" -02249183 00 s 01 interpersonal 0 001 & 02248349 a 0000 | occurring among or involving several people; "interpersonal situations in which speech occurs" -02249337 00 s 02 multiethnic 0 multi-ethnic 0 001 & 02248349 a 0000 | involving several ethnic groups -02249441 00 a 01 unsocial 0 009 ^ 02253065 a 0000 ^ 02258600 a 0000 = 04652635 n 0000 ! 02248349 a 0101 & 02249766 a 0000 & 02249948 a 0000 & 02250231 a 0000 & 02250430 a 0000 & 02250691 a 0000 | not seeking or given to association; being or living without companions; "the unsocial disposition to neglect one's neighbors" -02249766 00 s 01 alone(p) 0 002 & 02249441 a 0000 + 04622415 n 0101 | isolated from others; "could be alone in a crowded room"; "was alone with her thoughts"; "I want to be alone" -02249948 00 s 02 antisocial 0 asocial 2 001 & 02249441 a 0000 | hostile to or disruptive of normal standards of social behavior; "criminal behavior or conduct that violates the rights of other individuals is antisocial"; "crimes...and other asocial behavior"; "an antisocial deed" -02250231 00 s 01 asocial 0 001 & 02249441 a 0000 | given to avoiding association with others; "bears are asocial secretive animals"; "are you asocial or do you just enjoy living in the Antarctic?" -02250430 00 s 03 lone(a) 0 lonely(a) 1 solitary 1 004 & 02249441 a 0000 + 10172448 n 0303 + 04622415 n 0304 + 04622415 n 0202 | characterized by or preferring solitude; "a lone wolf"; "a lonely existence"; "a man of a solitary disposition"; "a solitary walk" -02250691 00 s 03 recluse 0 reclusive 0 withdrawn 0 004 & 02249441 a 0000 + 04656996 n 0304 + 04622772 n 0201 + 10172448 n 0102 | withdrawn from society; seeking solitude; "lived an unsocial reclusive life" -02250899 00 a 01 accompanied 0 001 ! 02251057 a 0101 | having companions or an escort; "there were lone gentlemen and gentlemen accompanied by their wives" -02251057 00 a 01 unaccompanied 0 005 ! 02250899 a 0101 & 02251212 a 0000 & 02251576 a 0000 & 02251773 a 0000 & 02251899 a 0000 | being without an escort -02251212 00 s 04 alone(p) 0 lone(a) 0 lonely(a) 0 solitary 0 004 & 02251057 a 0000 + 14415163 n 0402 + 14415163 n 0301 + 04622415 n 0101 | lacking companions or companionship; "he was alone when we met him"; "she is alone much of the time"; "the lone skier on the mountain"; "a lonely fisherman stood on a tuft of gravel"; "a lonely soul"; "a solitary traveler" -02251576 00 s 03 isolated 0 marooned 0 stranded 0 001 & 02251057 a 0000 | cut off or left behind; "an isolated pawn"; "several stranded fish in a tide pool"; "travelers marooned by the blizzard" -02251773 00 s 01 tod 0 002 & 02251057 a 0000 ;r 08860123 n 0000 | alone and on your own; "don't just sit there on your tod" -02251899 00 s 01 unattended 0 001 & 02251057 a 0000 | lacking accompaniment or a guard or escort; "unattended women"; "problems unattended with danger" -02252053 00 a 02 accompanied 1 attended 0 001 ! 02252182 a 0101 | playing or singing with instrumental or vocal accompaniment -02252182 00 a 01 unaccompanied 1 003 ! 02252053 a 0101 & 02252352 a 0000 & 02252480 a 0000 | playing or singing without accompaniment; "the soloist sang unaccompanied" -02252352 00 s 01 a_cappella 0 001 & 02252182 a 0000 | sung without instrumental accompaniment; "they sang an a cappella Mass" -02252480 00 s 01 solo 0 002 & 02252182 a 0000 ;c 07020895 n 0000 | composed or performed by a single voice or instrument; "a passage for solo clarinet" -02252634 00 a 01 gregarious 0 006 ^ 02248349 a 0000 = 04653869 n 0000 ;c 00015388 n 0000 + 04653869 n 0101 ! 02253065 a 0101 & 02252877 a 0000 | (of animals) tending to form a group with others of the same species; "gregarious bird species" -02252877 00 s 01 social 0 003 & 02252634 a 0000 ;c 00015388 n 0000 + 04652635 n 0101 | tending to move or live together in groups or colonies of the same kind; "ants are social insects" -02253065 00 a 01 ungregarious 0 004 ^ 02249441 a 0000 = 04653869 n 0000 ! 02252634 a 0101 & 02253205 a 0000 | (of animals) not gregarious -02253205 00 s 03 nongregarious 0 nonsocial 0 solitary 0 002 & 02253065 a 0000 + 14415163 n 0302 | of plants and animals; not growing or living in groups or colonies; "solitary bees" -02253389 00 a 01 gregarious 1 003 ;c 00017222 n 0000 ! 02253655 a 0101 & 02253536 a 0000 | (of plants) growing in groups that are close together -02253536 00 s 01 clustered 0 002 & 02253389 a 0000 ;c 00017222 n 0000 | growing close together but not in dense mats -02253655 00 a 01 ungregarious 1 003 ;c 00017222 n 0000 ! 02253389 a 0101 & 02253817 a 0000 | (of plants) growing together in groups that are not close together -02253817 00 s 03 caespitose 0 cespitose 0 tufted 0 002 & 02253655 a 0000 ;c 00017222 n 0000 | (of plants) growing in small dense clumps or tufts -02253964 00 a 01 seamed 0 003 ! 02254264 a 0101 & 02254088 a 0000 & 02254172 a 0000 | having or joined by a seam or seams -02254088 00 s 01 seamy 0 002 & 02253964 a 0000 + 04160372 n 0101 | showing a seam -02254172 00 s 03 sewed 0 sewn 0 stitched 0 001 & 02253964 a 0000 | fastened with stitches -02254264 00 a 01 seamless 0 004 ! 02253964 a 0101 & 02254434 a 0000 & 02254546 a 0000 & 02254669 a 0000 | not having or joined by a seam or seams; "seamless stockings" -02254434 00 s 01 broadloom 0 001 & 02254264 a 0000 | (of rugs or carpets) woven full width; "a broadloom rug" -02254546 00 s 01 circular-knit 0 001 & 02254264 a 0000 | knitted in tubular form; "circular-knit sweaters without seams" -02254669 00 s 01 unseamed 0 001 & 02254264 a 0000 | having no seams; "an unseamed garment made of plastic" -02254778 00 a 01 seeded 0 001 ! 02254971 a 0101 | (of the more skilled contestants) selectively arranged in the draw for position in a tournament so that they meet each other in later rounds -02254971 00 a 01 unseeded 0 001 ! 02254778 a 0101 | not seeded; used of players of lesser skill -02255069 00 a 01 seedy 0 010 + 13135832 n 0101 ! 02256082 a 0101 & 02255317 a 0000 & 02255394 a 0000 & 02255487 a 0000 & 02255608 a 0000 & 02255736 a 0000 & 02255840 a 0000 & 02255928 a 0000 & 02256005 a 0000 | full of seeds; "as seedy as a fig" -02255317 00 s 01 black-seeded 0 001 & 02255069 a 0000 | having black seeds -02255394 00 s 02 multi-seeded 0 several-seeded 0 001 & 02255069 a 0000 | having many seeds -02255487 00 s 01 seeded 1 001 & 02255069 a 0000 | having or supplied with seeds; "a seeded breadfruit"; "seeded rolls" -02255608 00 s 01 seeded 2 002 & 02255069 a 0000 ;u 06307152 n 0000 | having seeds as specified; "many-seeded"; "black-seeded" -02255736 00 s 03 single-seeded 0 one-seeded 0 one-seed 0 001 & 02255069 a 0000 | having a single seed -02255840 00 s 01 small-seeded 0 001 & 02255069 a 0000 | having relatively small seeds -02255928 00 s 01 three-seeded 0 001 & 02255069 a 0000 | having three seeds -02256005 00 s 01 white-seeded 0 001 & 02255069 a 0000 | having white seeds -02256082 00 a 01 seedless 0 003 ! 02255069 a 0101 & 02256209 a 0000 & 02256306 a 0000 | lacking seeds; "seedless grapefruit" -02256209 00 s 01 seeded 3 001 & 02256082 a 0000 | having the seeds extracted; "seeded raisins" -02256306 00 s 01 stoneless 0 001 & 02256082 a 0000 | (of fruits having stones) having the stone removed; "stoneless dried dates" -02256437 00 a 01 shuttered 0 002 ! 02256732 a 0101 & 02256659 a 0000 | provided with shutters or shutters as specified; often used in combination; "a church with a shuttered belfry and spire"; "green-shuttered cottages" -02256659 00 s 01 closed 0 001 & 02256437 a 0000 | with shutters closed -02256732 00 a 01 unshuttered 0 001 ! 02256437 a 0101 | not provided with shutters or having the shuttered open; "unshuttered windows" -02256868 00 a 01 sleeved 0 001 ! 02257038 a 0101 | made with sleeves or sleeves especially as specified; often used in combination; "sleeved garments"; "short-sleeved" -02257038 00 a 01 sleeveless 0 001 ! 02256868 a 0101 | having no sleeves; "sleeveless summer dresses" -02257141 00 a 01 sociable 0 014 ^ 01351391 a 0000 ^ 01074650 a 0000 ^ 02248349 a 0000 = 04652930 n 0000 + 08256369 n 0101 + 04652930 n 0102 + 04652930 n 0101 ! 02258600 a 0101 & 02257601 a 0000 & 02257731 a 0000 & 02257856 a 0000 & 02258002 a 0000 & 02258249 a 0000 & 02258360 a 0000 | inclined to or conducive to companionship with others; "a sociable occasion"; "enjoyed a sociable chat"; "a sociable conversation"; "Americans are sociable and gregarious" -02257601 00 s 02 clubbable 0 clubable 0 002 & 02257141 a 0000 ;u 07075172 n 0000 | inclined to club together; "a clubbable man" -02257731 00 s 02 clubbish 0 clubby 0 001 & 02257141 a 0000 | effusively sociable; "a clubbish set"; "we got rather clubby" -02257856 00 s 01 companionable 0 003 & 02257141 a 0000 + 04653479 n 0102 + 04653479 n 0101 | suggestive of companionship; "a companionable pet" -02258002 00 s 02 convivial 0 good-time 0 002 & 02257141 a 0000 + 04653357 n 0101 | occupied with or fond of the pleasures of good company; "a convivial atmosphere at the reunion"; "a woman of convivial nature"; "he was a real good-time Charlie" -02258249 00 s 03 extroverted 0 forthcoming 0 outgoing 0 001 & 02257141 a 0000 | at ease in talking to others -02258360 00 s 01 social 0 003 & 02257141 a 0000 + 08256369 n 0102 + 04652635 n 0101 | composed of sociable people or formed for the purpose of sociability; "a purely social club"; "the church has a large social hall"; "a social director" -02258600 00 a 01 unsociable 0 008 ^ 01076793 a 0000 ^ 02249441 a 0000 = 04652930 n 0000 + 04656748 n 0102 + 04656748 n 0101 ! 02257141 a 0101 & 02258972 a 0000 & 02259120 a 0000 | not inclined to society or companionship; "an unsociable nature...shy and reserved"; "generally unsociable except with intimate friends"; "unsociable behavior"; "an unsociable neighborhood" -02258972 00 s 01 antisocial 0 001 & 02258600 a 0000 | shunning contact with others; "standoffish and antisocial"; "he's not antisocial; just shy" -02259120 00 s 01 ungregarious 0 001 & 02258600 a 0000 | not disposed to seek company; "a lonely ungregarious person" -02259239 00 a 01 sold 0 003 ! 02259667 a 0101 & 02259380 a 0000 & 02259540 a 0000 | disposed of to a purchaser; "this merchandise is sold" -02259380 00 s 01 oversubscribed 0 001 & 02259239 a 0000 | sold in excess of available supply especially season tickets; "the opera season was oversubscribed" -02259540 00 s 01 sold-out 0 001 & 02259239 a 0000 | sold completely in advance; "had a sold-out house for both performances" -02259667 00 a 01 unsold 0 001 ! 02259239 a 0101 | not disposed of by purchase; "the house has been on the market almost a year and is still unsold" -02259817 00 a 01 soled 0 001 ! 02259966 a 0101 | having a sole or soles especially as specified; used in combination; "half-soled"; "rubber-soled" -02259966 00 a 01 soleless 0 001 ! 02259817 a 0101 | having no sole -02260035 00 a 01 solid 1 012 ^ 01150915 a 0000 = 14479615 n 0000 + 14480772 n 0102 ! 02261386 a 0101 ! 02262542 a 0101 & 02260382 a 0000 & 02260477 a 0000 & 02260570 a 0000 & 02260730 a 0000 & 02260847 a 0000 & 02261013 a 0000 & 02261162 a 0000 | of definite shape and volume; firm; neither liquid nor gaseous; "ice is water in the solid state" -02260382 00 s 02 coagulated 0 solidified 0 001 & 02260035 a 0000 | changed into a solid mass -02260477 00 s 01 concrete 0 001 & 02260035 a 0000 | formed by the coalescence of particles -02260570 00 s 03 congealed 0 jelled 0 jellied 0 001 & 02260035 a 0000 | congealed into jelly; solidified by cooling; "in Georgia they serve congealed salads" -02260730 00 s 01 dry 0 001 & 02260035 a 0000 | used of solid substances in contrast with liquid ones; "dry weight" -02260847 00 s 01 semisolid 0 001 & 02260035 a 0000 | partly solid; having a rigidity and viscosity intermediate between a solid and a liquid; "a semisolid mixture" -02261013 00 s 01 solid-state 1 002 & 02260035 a 0000 ;c 06099269 n 0000 | consisting of semiconductor materials and components and related devices -02261162 00 s 01 solid-state 2 001 & 02260035 a 0000 | characteristic of or relating to the physical properties of solid materials especially electromagnetic or thermodynamic or structural properties of crystalline solids -02261386 00 a 01 liquid 0 011 = 14479615 n 0000 + 14480420 n 0102 + 14480420 n 0103 + 04937043 n 0103 ! 02262542 a 0101 ! 02260035 a 0101 & 02261746 a 0000 & 02261985 a 0000 & 02262173 a 0000 & 02262293 a 0000 & 02262365 a 0000 | existing as or having characteristics of a liquid; especially tending to flow; "water and milk and blood are liquid substances" -02261746 00 s 02 fluid 0 runny 0 007 & 02261386 a 0000 + 07407777 n 0203 + 04937043 n 0205 + 14939900 n 0101 + 14939445 n 0101 + 04937043 n 0102 + 04937043 n 0101 | characteristic of a fluid; capable of flowing and easily changing shape -02261985 00 s 02 liquefiable 0 liquifiable 0 006 & 02261386 a 0000 + 00444309 v 0202 + 00443984 v 0203 + 02757304 v 0101 + 00444309 v 0101 + 00443984 v 0101 | capable of being liquefied -02262173 00 s 02 liquefied 0 liquified 0 001 & 02261386 a 0000 | reduced to a liquid state; "liquefied petroleum gas" -02262293 00 s 01 semiliquid 0 001 & 02261386 a 0000 | somewhat liquid -02262365 00 s 01 watery 0 003 & 02261386 a 0000 + 04937427 n 0101 + 14845743 n 0101 | relating to or resembling or consisting of water; "a watery substance"; "a watery color" -02262542 00 a 01 gaseous 0 012 = 14479615 n 0000 + 14877585 n 0101 + 14481080 n 0101 + 04733204 n 0101 ! 02260035 a 0101 ! 02261386 a 0101 & 02262879 a 0000 & 02262984 a 0000 & 02263150 a 0000 & 02263270 a 0000 & 02263407 a 0000 & 02263491 a 0000 | existing as or having characteristics of a gas; "steam is water is the gaseous state" -02262879 00 s 02 aeriform 0 airlike 0 001 & 02262542 a 0000 | resembling air or having the form of air -02262984 00 s 02 aerosolized 0 aerosolised 0 001 & 02262542 a 0000 | in the form of ultramicroscopic solid or liquid particles dispersed or suspended in air or gas -02263150 00 s 01 evaporated 0 001 & 02262542 a 0000 | drawn off in the form of vapor; "evaporated molecules boil off" -02263270 00 s 05 gasified 0 vaporized 0 vapourised 0 volatilized 0 volatilised 0 001 & 02262542 a 0000 | converted into a gas or vapor -02263407 00 s 01 gassy 0 002 & 02262542 a 0000 + 14481080 n 0101 | resembling gas -02263491 00 s 06 vaporific 0 vapourific 0 vaporish 0 vapourish 0 vaporous 0 vapourous 0 002 & 02262542 a 0000 + 15055633 n 0501 | resembling or characteristic of vapor; "vaporous clouds" -02263680 00 a 01 solid 2 005 = 14452442 n 0000 + 04941124 n 0102 + 14452442 n 0101 ! 02263982 a 0101 & 02263875 a 0000 | entirely of one substance with no holes inside; "a solid block of wood" -02263875 00 s 01 massive 0 001 & 02263680 a 0000 | being the same substance throughout; "massive silver" -02263982 00 a 01 hollow 0 011 = 14452442 n 0000 ^ 01086545 a 0000 + 13910895 n 0101 + 09305031 n 0101 + 09304750 n 0102 + 14455552 n 0101 ! 02263680 a 0101 & 02264366 a 0000 & 02264521 a 0000 & 02264657 a 0000 & 02264807 a 0000 | not solid; having a space or gap or cavity; "a hollow wall"; "a hollow tree"; "hollow cheeks"; "his face became gaunter and more hollow with each year" -02264366 00 s 01 cavernous 0 002 & 02263982 a 0000 + 09239302 n 0101 | being or suggesting a cavern; "vast cavernous chambers hollowed out of limestone" -02264521 00 s 03 deep-set 0 sunken 0 recessed 0 001 & 02263982 a 0000 | having a sunken area; "hunger gave their faces a sunken look" -02264657 00 s 03 fistular 0 fistulate 0 fistulous 0 003 & 02263982 a 0000 ;c 06060845 n 0000 + 05548032 n 0101 | hollow and tube-shaped like a reed -02264807 00 s 05 tubular 0 cannular 0 tubelike 0 tube-shaped 0 vasiform 0 003 & 02263982 a 0000 + 02951170 n 0201 + 04493505 n 0101 | constituting a tube; having hollow tubes (as for the passage of fluids) -02265015 00 a 01 soluble 1 010 + 05010314 n 0102 + 13583272 n 0101 + 05210221 n 0101 ! 02265891 a 0101 & 02265306 a 0000 & 02265386 a 0000 & 02265496 a 0000 & 02265594 a 0000 & 02265719 a 0000 & 02265815 a 0000 | (of a substance) capable of being dissolved in some solvent (usually water) -02265306 00 s 01 alcohol-soluble 0 001 & 02265015 a 0000 | soluble in alcohol -02265386 00 s 02 dissolvable 0 dissoluble 0 002 & 02265015 a 0000 + 05010314 n 0201 | capable of dissolving -02265496 00 s 01 fat-soluble 0 001 & 02265015 a 0000 | soluble in fats; "fat-soluble vitamin A" -02265594 00 s 02 meltable 0 disintegrable 0 003 & 02265015 a 0000 + 00444629 v 0101 + 00376106 v 0106 | capable of melting -02265719 00 s 01 oil-soluble 0 001 & 02265015 a 0000 | soluble in oil; "oil-soluble pigments" -02265815 00 s 01 water-soluble 0 001 & 02265015 a 0000 | soluble in water -02265891 00 a 02 insoluble 1 indissoluble 0 003 + 05210373 n 0101 ! 02265015 a 0101 & 02266043 a 0000 | (of a substance) incapable of being dissolved -02266043 00 s 02 water-insoluble 0 non-water-soluble 0 001 & 02265891 a 0000 | not soluble in water -02266145 00 a 01 soluble 2 005 ^ 00938801 a 0000 + 05215483 n 0102 ! 02266600 a 0101 & 02266351 a 0000 & 02266451 a 0000 | susceptible of solution or of being solved or explained; "the puzzle is soluble" -02266351 00 s 01 answerable 0 002 & 02266145 a 0000 + 00635523 v 0101 | capable of being answered -02266451 00 s 02 solvable 0 resolvable 0 002 & 02266145 a 0000 + 05215483 n 0101 | capable of being solved; "such problems are perfectly solvable" -02266600 00 a 01 insoluble 2 004 ^ 00939105 a 0000 + 05215699 n 0102 ! 02266145 a 0101 & 02266771 a 0000 | admitting of no solution or explanation; "an insoluble doubt" -02266771 00 s 04 insolvable 0 unsoluble 0 unsolvable 0 unresolvable 0 001 & 02266600 a 0000 | not easily solved; "an apparantly insolvable problem"; "public finance...had long presented problems unsolvable or at least unsolved"- C.L.Jones -02267012 00 a 02 solved 0 resolved 4 001 ! 02267164 a 0101 | explained or answered; "mysteries solved and unsolved; problems resolved and unresolved" -02267164 00 a 02 unsolved 0 unresolved 4 001 ! 02267012 a 0101 | not solved; "many crimes remain unsolved"; "many problems remain unresolved" -02267308 00 a 01 some(a) 0 007 ^ 01552885 a 0000 ^ 01551633 a 0000 ! 02268485 a 0101 ! 02269286 a 0101 & 02267686 a 0000 & 02268133 a 0000 & 02268268 a 0000 | quantifier; used with either mass nouns or plural count nouns to indicate an unspecified number or quantity; "have some milk"; "some roses were still blooming"; "having some friends over"; "some apples"; "some paper" -02267686 00 s 03 any(a) 0 whatever 0 whatsoever 0 001 & 02267308 a 0000 | one or some or every or all without specification; "give me any peaches you don't want"; "not any milk is left"; "any child would know that"; "pick any card"; "any day now"; "cars can be rented at almost any airport"; "at twilight or any other time"; "beyond any doubt"; "need any help we can get"; "give me whatever peaches you don't want"; "no milk whatsoever is left" -02268133 00 s 01 both(a) 0 001 & 02267308 a 0000 | (used with count nouns) two considered together; the two; "both girls are pretty" -02268268 00 s 01 several(a) 0 001 & 02267308 a 0000 | (used with count nouns) of an indefinite number more than 2 or 3 but not many; "several letters came in the mail"; "several people were injured in the accident" -02268485 00 a 01 no(a) 0 005 ! 02269286 a 0101 ! 02267308 a 0101 & 02268882 a 0000 & 02269039 a 0000 & 02269142 a 0000 | quantifier; used with either mass nouns or plural count nouns for indicating a complete or almost complete lack or zero quantity of; "we have no bananas"; "no eggs left and no money to buy any"; "have you no decency?"; "did it with no help"; "I'll get you there in no time" -02268882 00 s 01 nary(a) 0 001 & 02268485 a 0000 | (used with singular count nouns) colloquial for `not a' or `not one' or `never a'; "heard nary a sound" -02269039 00 s 01 none 0 001 & 02268485 a 0000 | not any; "thou shalt have none other gods before me" -02269142 00 s 01 zero(a) 0 001 & 02268485 a 0000 | having no measurable or otherwise determinable value; "the goal is zero population growth" -02269286 00 a 01 all(a) 0 006 ! 02267308 a 0101 ! 02268485 a 0101 & 02269635 a 0000 & 02269794 a 0000 & 02270057 a 0000 & 02270186 a 0000 | quantifier; used with either mass or count nouns to indicate the whole number or amount of or every one of a class; "we sat up all night"; "ate all the food"; "all men are mortal"; "all parties are welcome" -02269635 00 s 01 each(a) 0 001 & 02269286 a 0000 | (used of count nouns) every one considered individually; "each person is mortal"; "each party is welcome" -02269794 00 s 01 every(a) 0 001 & 02269286 a 0000 | (used of count nouns) each and all of the members of a group considered singly and without exception; "every person is mortal"; "every party is welcome"; "had every hope of success"; "every chance of winning" -02270057 00 s 01 every_last(p) 0 002 & 02269286 a 0000 ;u 06321054 n 0000 | (used as intensive) every; "every last one of you" -02270186 00 s 01 every(a) 2 001 & 02269286 a 0000 | each and all of a series of entities or intervals as specified; "every third seat"; "every two hours" -02270342 00 a 01 sophisticated 0 011 ^ 01106614 a 0000 ^ 00866047 a 0000 ^ 00849357 a 0000 ^ 01306273 a 0000 ^ 01421602 a 0000 ^ 02577061 a 0000 ! 02271544 a 0101 & 02270782 a 0000 & 02271052 a 0000 & 02271177 a 0000 & 02271437 a 0000 | having or appealing to those having worldly knowledge and refinement and savoir-faire; "sophisticated young socialites"; "a sophisticated audience"; "a sophisticated lifestyle"; "a sophisticated book" -02270782 00 s 02 blase 0 worldly 0 002 & 02270342 a 0000 + 04880273 n 0202 | very sophisticated especially because of surfeit; versed in the ways of the world; "the blase traveler refers to the ocean he has crossed as `the pond'"; "the benefits of his worldly wisdom" -02271052 00 s 02 intelligent 0 well-informed 0 001 & 02270342 a 0000 | possessing sound knowledge; "well-informed readers" -02271177 00 s 04 polished 0 refined 0 svelte 0 urbane 0 002 & 02270342 a 0000 + 04913212 n 0401 | showing a high degree of refinement and the assurance that comes from wide social experience; "his polished manner"; "maintained an urbane tone in his letters" -02271437 00 s 01 worldly-wise 0 001 & 02270342 a 0000 | experienced in and wise to the ways of the world -02271544 00 a 02 naive 0 naif 0 011 ^ 00646413 a 0000 ^ 01308425 a 0000 ^ 02578235 a 0000 + 04880573 n 0103 ! 02270342 a 0101 & 02272047 a 0000 & 02272305 a 0000 & 02272485 a 0000 & 02272670 a 0000 & 02272954 a 0000 & 02273088 a 0000 | marked by or showing unaffected simplicity and lack of guile or worldly experience; "a teenager's naive ignorance of life"; "the naive assumption that things can only get better"; "this naive simple creature with wide friendly eyes so eager to believe appearances" -02272047 00 s 05 childlike 0 wide-eyed 0 round-eyed 0 dewy-eyed 0 simple 0 003 & 02271544 a 0000 + 04881369 n 0502 + 04881369 n 0501 | exhibiting childlike simplicity and credulity; "childlike trust"; "dewy-eyed innocence"; "listened in round-eyed wonder" -02272305 00 s 01 credulous 0 003 & 02271544 a 0000 + 04881156 n 0101 + 04895558 n 0101 | showing a lack of judgment or experience; "so credulous he believes everything he reads" -02272485 00 s 03 fleeceable 0 green 0 gullible 0 002 & 02271544 a 0000 + 04881156 n 0302 | naive and easily deceived or tricked; "at that early age she had been gullible and in love" -02272670 00 s 02 innocent 0 ingenuous 0 003 & 02271544 a 0000 + 04880830 n 0203 + 04880830 n 0102 | lacking in sophistication or worldliness; "a child's innocent stare"; "his ingenuous explanation that he would not have burned the church if he had not thought the bishop was in it" -02272954 00 s 01 simple-minded 0 002 & 02271544 a 0000 + 04881369 n 0101 | lacking subtlety and insight; "a simple-minded argument" -02273088 00 s 02 unsophisticated 0 unworldly 0 001 & 02271544 a 0000 | not wise in the ways of the world; "either too unsophisticated or too honest to promise more than he could deliver"; "this helplessly unworldly woman"- Kate O'Brien -02273326 00 a 01 sound 0 012 ^ 01017161 a 0000 ^ 01170243 a 0000 ^ 00289365 a 0000 ^ 00681094 a 0000 ^ 01319182 a 0000 ^ 02557357 a 0000 + 14546844 n 0101 ! 02274253 a 0101 & 02273643 a 0000 & 02273838 a 0000 & 02273952 a 0000 & 02274089 a 0000 | financially secure and safe; "sound investments"; "a sound economy" -02273643 00 s 04 dependable 0 good 1 safe 0 secure 0 004 & 02273326 a 0000 + 13344071 n 0401 + 04856308 n 0301 + 04670022 n 0102 | financially sound; "a good investment"; "a secure investment" -02273838 00 s 01 healthy 0 001 & 02273326 a 0000 | financially secure and functioning well; "a healthy economy" -02273952 00 s 01 solid 0 002 & 02273326 a 0000 + 04671075 n 0102 | financially sound; "the bank is solid and will survive this attack" -02274089 00 s 01 stable 0 003 & 02273326 a 0000 + 04778401 n 0102 + 04778401 n 0101 | firm and dependable; subject to little fluctuation; "the economy is stable" -02274253 00 a 01 unsound 0 011 ^ 00289082 a 0000 ^ 00679147 a 0000 ^ 01317954 a 0000 ^ 01017738 a 0000 ^ 01172889 a 0000 ^ 02559180 a 0000 + 14560360 n 0101 ! 02273326 a 0101 & 02274537 a 0000 & 02274869 a 0000 & 02274959 a 0000 | not sound financially; "unsound banking practices" -02274537 00 s 04 bad 2 risky 0 high-risk 0 speculative 0 005 & 02274253 a 0000 + 14543756 n 0401 + 02272090 v 0401 + 00802238 n 0201 + 14543552 n 0201 | not financially safe or secure; "a bad investment"; "high risk investments"; "anything that promises to pay too much can't help being risky"; "speculative business enterprises" -02274869 00 s 01 long 0 001 & 02274253 a 0000 | involving substantial risk; "long odds" -02274959 00 s 01 wildcat 0 001 & 02274253 a 0000 | outside the bounds of legitimate or ethical business practices; "wildcat currency issued by irresponsible banks"; "wildcat stock speculation"; "a wildcat airline"; "wildcat life insurance schemes" -02275209 00 a 01 sound 1 003 + 14546844 n 0101 ! 02275629 a 0101 & 02275412 a 0000 | in good condition; free from defect or damage or decay; "a sound timber"; "the wall is sound"; "a sound foundation" -02275412 00 s 03 solid 0 strong 0 substantial 0 003 & 02275209 a 0000 + 04761212 n 0302 + 04761212 n 0103 | of good quality and condition; solidly built; "a solid foundation"; "several substantial timber buildings" -02275629 00 a 01 unsound 1 004 + 14560360 n 0101 ! 02275209 a 0101 & 02275803 a 0000 & 02275892 a 0000 | not in good condition; damaged or decayed; "an unsound foundation" -02275803 00 s 01 corroded 0 001 & 02275629 a 0000 | eaten away as by acid or oxidation -02275892 00 s 03 decayed 0 rotten 0 rotted 0 002 & 02275629 a 0000 + 14561102 n 0203 | damaged by decay; hence unsound and useless; "rotten floor boards"; "rotted beams"; "a decayed foundation" -02276088 00 a 01 effervescent 0 008 + 13471681 n 0101 + 04733347 n 0102 + 00519363 v 0104 ! 02276964 a 0101 & 02276305 a 0000 & 02276660 a 0000 & 02276752 a 0000 & 02276852 a 0000 | (of a liquid) giving off bubbles -02276305 00 s 07 bubbling 0 bubbly 0 foaming 0 foamy 0 frothy 0 effervescing 0 spumy 0 008 & 02276088 a 0000 + 09443641 n 0701 + 09282724 n 0502 + 04733347 n 0503 + 09282724 n 0401 + 04733539 n 0401 + 09229709 n 0201 + 04733347 n 0201 | emitting or filled with bubbles as from carbonation or fermentation; "bubbling champagne"; "foamy (or frothy) beer" -02276660 00 s 02 aerated 0 charged 0 001 & 02276088 a 0000 | supplied with carbon dioxide -02276752 00 s 02 fizzing 0 fizzy 0 002 & 02276088 a 0000 + 07919310 n 0201 | hissing and bubbling -02276852 00 s 01 carbonated 0 001 & 02276088 a 0000 | having carbonation (especially artificially carbonated) -02276964 00 a 01 noneffervescent 0 003 ! 02276088 a 0101 & 02277078 a 0000 & 02277182 a 0000 | not effervescent -02277078 00 s 01 flat 0 001 & 02276964 a 0000 | having lost effervescence; "flat beer"; "a flat cola" -02277182 00 s 02 noncarbonated 0 uncarbonated 0 001 & 02276964 a 0000 | not having carbonation -02277279 00 a 02 sparkling 0 effervescent 4 002 + 00519363 v 0204 ! 02277485 a 0101 | used of wines and waters; charged naturally or artificially with carbon dioxide; "sparkling wines"; "sparkling water" -02277485 00 a 02 still 0 noneffervescent 4 001 ! 02277279 a 0101 | not sparkling; "a still wine"; "still mineral water" -02277607 00 a 02 specialized 0 specialised 0 005 ^ 01103021 a 0000 ! 02278337 a 0101 & 02277829 a 0000 & 02278011 a 0000 & 02278195 a 0000 | developed or designed for a special activity or function; "a specialized tool" -02277829 00 s 01 differentiated 0 002 & 02277607 a 0000 ;c 06037666 n 0000 | exhibiting biological specialization; adapted during development to a specific function or environment -02278011 00 s 01 special 0 002 & 02277607 a 0000 + 04763925 n 0102 | adapted to or reserved for a particular purpose; "a special kind of paint"; "a special medication for arthritis" -02278195 00 s 01 specialistic 0 003 & 02277607 a 0000 + 10632576 n 0101 + 10631941 n 0101 | showing focused training; "specialist training" -02278337 00 a 02 unspecialized 0 unspecialised 0 003 ^ 01101391 a 0000 ! 02277607 a 0101 & 02278513 a 0000 | not specialized or modified for a particular purpose or function -02278513 00 s 02 generalized 0 generalised 0 002 & 02278337 a 0000 ;c 06037666 n 0000 | not biologically differentiated or adapted to a specific function or environment; "the hedgehog is a primitive and generalized mammal" -02278738 00 a 02 spinous 0 spiny 0 001 ! 02278842 a 0101 | having spines; "the dorsal fin is spinous" -02278842 00 a 01 spineless 0 001 ! 02278738 a 0101 | lacking spiny processes; "spineless fins" -02278939 00 a 01 spirited 0 019 ^ 00873603 a 0000 ^ 00885695 a 0000 ^ 00804695 a 0000 = 04631700 n 0000 + 04631700 n 0102 ! 02281325 a 0101 & 02279360 a 0000 & 02279523 a 0000 & 02279622 a 0000 & 02279723 a 0000 & 02279900 a 0000 & 02280090 a 0000 & 02280333 a 0000 & 02280457 a 0000 & 02280566 a 0000 & 02280680 a 0000 & 02280821 a 0000 & 02280969 a 0000 & 02281182 a 0000 | displaying animation, vigor, or liveliness -02279360 00 s 02 boisterous 0 knockabout 0 001 & 02278939 a 0000 | full of rough and exuberant animal spirits; "boisterous practical jokes"; "knockabout comedy" -02279523 00 s 01 con_brio 0 002 & 02278939 a 0000 ;c 07020895 n 0000 | with liveliness or spirit -02279622 00 s 02 dashing 0 gallant 0 001 & 02278939 a 0000 | lively and spirited; "a dashing hero" -02279723 00 s 03 ebullient 0 exuberant 0 high-spirited 0 005 & 02278939 a 0000 + 04634161 n 0301 + 00857923 v 0201 + 07555647 n 0201 + 04634540 n 0103 | joyously unrestrained -02279900 00 s 03 feisty 0 plucky 0 spunky 0 004 & 02278939 a 0000 + 04857490 n 0304 + 04859816 n 0202 + 04859816 n 0203 | showing courage; "the champion is faced with a feisty challenger" -02280090 00 s 04 impertinent 0 irreverent 0 pert 0 saucy 0 004 & 02278939 a 0000 + 04632703 n 0301 + 04649651 n 0303 + 04649651 n 0101 | characterized by a lightly pert and exuberant quality; "a certain irreverent gaiety and ease of manner" -02280333 00 s 02 lively 0 racy 0 002 & 02278939 a 0000 + 04632157 n 0101 | full of zest or vigor; "a racy literary style" -02280457 00 s 01 mettlesome 0 002 & 02278939 a 0000 + 04634415 n 0101 | having a proud and unbroken spirit -02280566 00 s 01 resilient 0 001 & 02278939 a 0000 | recovering readily from adversity, depression, or the like -02280680 00 s 02 snappy 0 whipping 0 001 & 02278939 a 0000 | smart and fashionable; "snappy conversation"; "some sharp and whipping lines" -02280821 00 s 01 sprightly 0 002 & 02278939 a 0000 + 04632157 n 0104 | full of spirit and vitality; "a sprightly young girl"; "a sprightly dance" -02280969 00 s 02 vibrant 0 vivacious 0 002 & 02278939 a 0000 + 04634299 n 0201 | vigorous and animated; "a vibrant group that challenged the system"; "a charming and vivacious hostess"; "a vivacious folk dance" -02281182 00 s 04 zestful 0 yeasty 0 zesty 0 barmy 0 003 & 02278939 a 0000 + 07491981 n 0303 + 07491981 n 0104 | marked by spirited enjoyment -02281325 00 a 01 spiritless 0 010 ^ 00806512 a 0000 ^ 00887062 a 0000 = 04631700 n 0000 + 04636610 n 0104 ! 02278939 a 0101 & 02281611 a 0000 & 02281813 a 0000 & 02281938 a 0000 & 02282171 a 0000 & 02282277 a 0000 | lacking ardor or vigor or energy; "a spiritless reply to criticism" -02281611 00 s 01 apathetic 0 003 & 02281325 a 0000 + 07483622 n 0101 + 04636610 n 0101 | showing little or no emotion or animation; "a woman who became active rather than apathetic as she grew older" -02281813 00 s 01 bloodless 0 001 & 02281325 a 0000 | without vigor or zest or energy; "an insipid and bloodless young man" -02281938 00 s 02 dispirited 0 listless 0 003 & 02281325 a 0000 + 07484109 n 0203 + 07537668 n 0105 | marked by low spirits; showing no enthusiasm; "a dispirited and divided Party"; "reacted to the crisis with listless resignation" -02282171 00 s 01 heartless 0 002 & 02281325 a 0000 ;u 07073447 n 0000 | devoid of courage or enthusiasm -02282277 00 s 01 thin 0 001 & 02281325 a 0000 | lacking spirit or sincere effort; "a thin smile" -02282376 00 a 02 spontaneous 0 self-generated 4 005 + 04786763 n 0101 ! 02283188 a 0101 & 02282651 a 0000 & 02282843 a 0000 & 02282985 a 0000 | happening or arising without apparent external cause; "spontaneous laughter"; "spontaneous combustion"; "a spontaneous abortion" -02282651 00 s 02 impulsive 0 unprompted 0 002 & 02282376 a 0000 + 04662504 n 0101 | proceeding from natural feeling or impulse without external stimulus; "an impulsive gesture of affection" -02282843 00 s 01 intuitive 0 001 & 02282376 a 0000 | spontaneously derived from or prompted by a natural tendency; "an intuitive revulsion" -02282985 00 s 02 natural 0 instinctive 0 001 & 02282376 a 0000 | unthinking; prompted by (or as if by) instinct; "a cat's natural aversion to water"; "offering to help was as instinctive as breathing" -02283188 00 a 01 induced 0 003 ! 02282376 a 0101 & 02283356 a 0000 & 02283525 a 0000 | brought about or caused; not spontaneous; "a case of steroid-induced weakness" -02283356 00 s 02 elicited 0 evoked 0 001 & 02283188 a 0000 | called forth from a latent or potential state by stimulation; "evoked potentials"; "an elicited response" -02283525 00 s 01 iatrogenic 0 002 & 02283188 a 0000 ;c 06043075 n 0000 | induced by a physician's words or therapy (used especially of a complication resulting from treatment) -02283703 00 a 01 spoken 0 006 ^ 00150202 a 0000 ! 02284578 a 0101 & 02284023 a 0000 & 02284169 a 0000 & 02284324 a 0000 & 02284423 a 0000 | uttered through the medium of speech or characterized by speech; sometimes used in combination; "a spoken message"; "the spoken language"; "a soft-spoken person"; "sharp-spoken" -02284023 00 s 04 expressed 0 uttered 0 verbalized 0 verbalised 0 001 & 02283703 a 0000 | communicated in words; "frequently uttered sentiments" -02284169 00 s 02 oral 0 unwritten 0 002 & 02283703 a 0000 + 07198846 n 0101 | using speech rather than writing; "an oral tradition"; "an oral agreement" -02284324 00 s 01 verbal 0 001 & 02283703 a 0000 | expressed in spoken words; "a verbal contract" -02284423 00 s 02 viva-voce 0 word-of-mouth 0 001 & 02283703 a 0000 | expressed orally; "a viva-voce report"; "the film had good word-of-mouth publicity" -02284578 00 a 01 written 0 012 ^ 02213270 a 0000 ! 02283703 a 0101 & 02284892 a 0000 & 02285035 a 0000 & 02285147 a 0000 & 02285278 a 0000 & 02285407 a 0000 & 02285480 a 0000 & 02285607 a 0000 & 02285739 a 0000 & 02285854 a 0000 & 02285969 a 0000 | set down in writing in any of various ways; "written evidence" -02284892 00 s 02 backhand 0 left-slanting 0 002 & 02284578 a 0000 ;c 00614730 n 0000 | (of handwriting) having the letters slanting backward -02285035 00 s 01 cursive 0 001 & 02284578 a 0000 | having successive letter joined together; "cursive script" -02285147 00 s 01 engrossed 0 001 & 02284578 a 0000 | written formally in a large clear script, as a deed or other legal document -02285278 00 s 03 graphic 0 graphical 0 in_writing(p) 0 001 & 02284578 a 0000 | written or drawn or engraved; "graphic symbols" -02285407 00 s 01 handwritten 0 001 & 02284578 a 0000 | written by hand -02285480 00 s 01 holographic 0 001 & 02284578 a 0000 | written wholly in the handwriting of the signer; "a holographic will" -02285607 00 s 01 inscribed 0 001 & 02284578 a 0000 | written (by handwriting, printing, engraving, or carving) on or in a surface -02285739 00 s 01 longhand 0 001 & 02284578 a 0000 | having words written out in full by hand; "longhand writing" -02285854 00 s 01 scrivened 0 003 & 02284578 a 0000 ;u 07073447 n 0000 ;c 07092592 n 0000 | copied in handwriting -02285969 00 s 01 shorthand 0 001 & 02284578 a 0000 | written in abbreviated or symbolic form; "shorthand notes" -02286083 00 a 03 voiced 0 sonant 0 soft 0 002 + 07120364 n 0201 ! 02286294 a 0101 | produced with vibration of the vocal cords; "a frequently voiced opinion"; "voiced consonants such as `b' and `g' and `z'"; -02286294 00 a 04 unvoiced 0 voiceless 4 surd 0 hard 0 003 + 07130341 n 0204 ! 02286083 a 0101 & 02286507 a 0000 | produced without vibration of the vocal cords; "unvoiced consonants such as `p' and `k' and `s'" -02286507 00 s 01 whispered 0 001 & 02286294 a 0000 | spoken in soft hushed tones without vibrations of the vocal cords; "a long whispered conversation" -02286661 00 a 01 written 2 002 ! 02286927 a 0101 & 02286790 a 0000 | systematically collected and written down; "written laws" -02286790 00 s 02 codified 0 statute(p) 0 001 & 02286661 a 0000 | enacted by a legislative body; "statute law"; "codified written laws" -02286927 00 a 01 unwritten 0 002 ! 02286661 a 0101 & 02287175 a 0000 | based on custom rather than documentation; "an unwritten law"; "rites...so ancient that they well might have had their unwritten origins in Aurignacian times"- J.L.T.C.Spence -02287175 00 s 01 common-law(p) 0 001 & 02286927 a 0000 | based on common law; "a common-law right" -02287276 00 a 01 vocalic 2 004 + 07114712 n 0101 + 07112550 n 0101 ! 02287636 a 0101 & 02287510 a 0000 | being or containing or characterized by vowels; "vocalic sounds"; "the Gaelic language being uncommonly vocalic"- Walter Scott -02287510 00 s 01 vowellike 0 001 & 02287276 a 0000 | having characteristics of a vowel sound; "the vowellike nature of `r'" -02287636 00 a 01 consonantal 2 002 + 07115021 n 0101 ! 02287276 a 0101 | being or marked by or containing or functioning as a consonant; "consonantal sounds"; "a consonantal Hebrew text"; "consonantal alliteration"; "a consonantal cluster" -02287878 00 a 01 stoppable 0 002 ! 02288118 a 0101 & 02288022 a 0000 | capable of being stopped; "if we pick up our pace he may be stoppable" -02288022 00 s 01 abatable 0 002 & 02287878 a 0000 + 00245289 v 0102 | capable of being abated -02288118 00 a 01 unstoppable 0 002 ! 02287878 a 0101 & 02288252 a 0000 | not capable of being stopped; "as unstoppable as the wind" -02288252 00 s 01 unbeatable 0 001 & 02288118 a 0000 | hard to defeat; "an unbeatable ball team" -02288350 00 a 01 syllabic 2 001 ! 02288490 a 0101 | (of speech sounds) forming the nucleus of a syllable; "the syllabic 'nl' in 'riddle'" -02288490 00 a 01 nonsyllabic 2 001 ! 02288350 a 0101 | (of speech sounds) not forming or capable of forming the nucleus of a syllable; "initial 'l' in 'little' is nonsyllabic" -02288668 00 a 01 syllabic 0 009 + 06304671 n 0101 ! 02289738 a 0101 & 02288904 a 0000 & 02289018 a 0000 & 02289151 a 0000 & 02289287 a 0000 & 02289405 a 0000 & 02289543 a 0000 & 02289659 a 0000 | consisting of a syllable or syllables -02288904 00 s 01 disyllabic 0 001 & 02288668 a 0000 | having or characterized by or consisting of two syllables -02289018 00 s 01 monosyllabic 0 002 & 02288668 a 0000 + 06294309 n 0101 | having or characterized by or consisting of one syllable -02289151 00 s 01 octosyllabic 0 002 & 02288668 a 0000 + 07096425 n 0101 | having or characterized by or consisting of eight syllables -02289287 00 s 01 pentasyllabic 0 001 & 02288668 a 0000 | having or characterized by or consisting of five syllables -02289405 00 s 01 polysyllabic 0 002 & 02288668 a 0000 + 06302083 n 0101 | having or characterized by words of more than three syllables -02289543 00 s 01 decasyllabic 0 001 & 02288668 a 0000 | having or characterized by or consisting of ten syllables -02289659 00 s 01 syllabled 0 001 & 02288668 a 0000 | pronounced in syllables -02289738 00 a 02 nonsyllabic 0 unsyllabic 0 002 ! 02288668 a 0101 & 02290179 a 0000 | not forming a syllable or the nucleus of a syllable; consisting of a consonant sound accompanied in the same syllable by a vowel sound or consisting of a vowel sound dominated by other vowel sounds in a syllable (as the second vowel in a falling diphthong); "the nonsyllabic `n' in `botany' when it is pronounced `botny'"; "the nonsyllabic `i' in `oi'" -02290179 00 s 01 unsyllabled 0 001 & 02289738 a 0000 | not articulated in syllables -02290265 00 a 01 syllabic 1 002 ! 02290454 a 0101 ! 02290714 a 0101 | (of verse) having lines based on number of syllables rather than on rhythmical arrangement of stresses or quantities -02290454 00 a 01 accentual 1 003 + 07085375 n 0103 ! 02290714 a 0101 ! 02290265 a 0101 | (of verse) having a metric system based on stress rather than syllables or quantity; "accentual poetry is based on the number of stresses in a line"; "accentual rhythm" -02290714 00 a 01 quantitative 1 002 ! 02290265 a 0101 ! 02290454 a 0101 | (of verse) having a metric system based on relative duration of syllables; "in typical Greek and Latin verse of the classical period the rhymic system is based on some arrangement of long and short elements" -02290998 00 a 01 stable 0 010 ^ 00583239 a 0000 ^ 01754421 a 0000 ^ 02301560 a 0000 + 04778401 n 0102 + 04738641 n 0102 ! 02291843 a 0101 & 02291336 a 0000 & 02291500 a 0000 & 02291632 a 0000 & 02291754 a 0000 | resistant to change of position or condition; "a stable ladder"; "a stable peace"; "a stable relationship"; "stable prices" -02291336 00 s 03 firm 2 steady 0 unfluctuating 0 002 & 02290998 a 0000 + 04777852 n 0102 | not liable to fluctuate or especially to fall; "stocks are still firm" -02291500 00 s 01 lasting 0 002 & 02290998 a 0000 + 05053688 n 0101 | lasting a long time without change; "a lasting relationship" -02291632 00 s 01 stabile 0 002 & 02290998 a 0000 ;c 06037666 n 0000 | (chemistry, physics, biology) resistant to change -02291754 00 s 02 stabilized 0 stabilised 0 001 & 02290998 a 0000 | made stable or firm -02291843 00 a 01 unstable 0 015 ^ 01755627 a 0000 ^ 00583990 a 0000 ^ 02303077 a 0000 + 04775747 n 0102 ! 02290998 a 0101 & 02292303 a 0000 & 02292421 a 0000 & 02292573 a 0000 & 02292797 a 0000 & 02293141 a 0000 & 02293230 a 0000 & 02293386 a 0000 & 02293497 a 0000 & 02293592 a 0000 & 02293760 a 0000 | lacking stability or fixity or firmness; "unstable political conditions"; "the tower proved to be unstable in the high wind"; "an unstable world economy" -02292303 00 s 02 coseismic 0 coseismal 0 001 & 02291843 a 0000 | being where earthquake waves arrive simultaneously -02292421 00 s 04 crank 0 cranky 0 tender 0 tippy 0 002 & 02291843 a 0000 ;c 02858304 n 0000 | (used of boats) inclined to heel over easily under sail -02292573 00 s 02 explosive 0 volatile 0 002 & 02291843 a 0000 + 04628850 n 0203 | liable to lead to sudden change or violence; "an explosive issue"; "a volatile situation with troops and rioters eager for a confrontation" -02292797 00 s 04 rickety 0 shaky 0 wobbly 0 wonky 0 005 & 02291843 a 0000 + 07364700 n 0301 + 00867983 n 0203 + 14004572 n 0202 + 04775562 n 0102 | inclined to shake as from weakness or defect; "a rickety table"; "a wobbly chair with shaky legs"; "the ladder felt a little wobbly"; "the bridge still stands though one of the arches is wonky" -02293141 00 s 01 rocky 0 001 & 02291843 a 0000 | liable to rock; "on high rocky heels" -02293230 00 s 02 seismic 0 seismal 0 003 & 02291843 a 0000 + 07428954 n 0204 + 07428954 n 0104 | subject to or caused by an earthquake or earth vibration -02293386 00 s 01 tipsy 0 001 & 02291843 a 0000 | unstable and prone to tip as if intoxicated; "a tipsy boat" -02293497 00 s 01 top-heavy 0 001 & 02291843 a 0000 | unstable by being overloaded at the top -02293592 00 s 01 tottering 0 001 & 02291843 a 0000 | (of structures or institutions) having lost stability; failing or on the point of collapse; "a tottering empire" -02293760 00 s 01 volcanic 0 001 & 02291843 a 0000 | explosively unstable; "a volcanic temper" -02293856 00 a 02 staccato 0 disconnected 2 004 ;c 07020895 n 0000 + 14417697 n 0204 ! 02294263 a 0101 & 02294122 a 0000 | (music) marked by or composed of disconnected parts or sounds; cut short crisply; "staccato applause"; "a staccato command"; "staccato notes" -02294122 00 s 02 abrupt 0 disconnected 0 001 & 02293856 a 0000 | marked by sudden changes in subject and sharp transitions; "abrupt prose" -02294263 00 a 02 legato 0 smooth 3 003 ;c 07020895 n 0000 + 04709011 n 0201 ! 02293856 a 0101 | (music) without breaks between notes; smooth and connected; "a legato passage" -02294440 00 a 01 staged 0 001 ! 02294563 a 0101 | written for or performed on the stage; "a staged version of the novel" -02294563 00 a 01 unstaged 0 002 ! 02294440 a 0101 & 02294662 a 0000 | not performed on the stage -02294662 00 s 01 unperformed 0 001 & 02294563 a 0000 | not performed; "the author of numerous unperformed plays" -02294777 00 a 01 standard 1 006 ^ 01689880 a 0000 ! 02295867 a 0101 & 02295098 a 0000 & 02295298 a 0000 & 02295511 a 0000 & 02295710 a 0000 | established or well-known or widely recognized as a model of authority or excellence; "a standard reference work"; "the classical argument between free trade and protectionism" -02295098 00 s 04 authoritative 0 classical 0 classic 0 definitive 0 001 & 02294777 a 0000 | of recognized authority or excellence; "the definitive work on Greece"; "classical methods of navigation" -02295298 00 s 03 basic 0 canonic 0 canonical 2 001 & 02294777 a 0000 | reduced to the simplest and most significant form possible without loss of generality; "a basic story line"; "a canonical syllable pattern" -02295511 00 s 02 casebook 0 textbook 0 002 & 02294777 a 0000 + 06503034 n 0101 | according to or characteristic of a casebook or textbook; typical; "a casebook schizophrenic"; "a textbook example" -02295710 00 s 02 criterial 0 criterional 0 004 & 02294777 a 0000 + 07260623 n 0202 + 07260623 n 0102 + 05924920 n 0101 | serving as a basis for evaluation -02295867 00 a 01 nonstandard 0 001 ! 02294777 a 0101 | not standard; not accepted as a model of excellence; "a nonstandard text" -02295998 00 a 01 standard 2 008 ^ 01593649 a 0000 = 00033615 n 0000 ! 02297166 a 0101 & 02296415 a 0000 & 02296632 a 0000 & 02296824 a 0000 & 02296950 a 0000 & 02297089 a 0000 | conforming to or constituting a standard of measurement or value; or of the usual or regularized or accepted kind; "windows of standard width"; "standard sizes"; "the standard fixtures"; "standard brands"; "standard operating procedure" -02296415 00 s 01 modular 0 003 & 02295998 a 0000 + 03778817 n 0101 + 03778600 n 0101 | constructed with standardized units or dimensions allowing flexibility and variety in use; "modular furniture"; "modular homes" -02296632 00 s 01 regular 0 002 & 02295998 a 0000 + 04767347 n 0101 | conforming to a standard or pattern; "following the regular procedure of the legislature"; "a regular electrical outlet" -02296824 00 s 01 regulation 0 001 & 02295998 a 0000 | prescribed by or according to regulation; "regulation army equipment" -02296950 00 s 02 standardized 0 standardised 0 001 & 02295998 a 0000 | brought into conformity with a standard; "standardized education" -02297089 00 s 01 stock 0 001 & 02295998 a 0000 | routine; "a stock answer" -02297166 00 a 01 nonstandard 2 004 = 00033615 n 0000 ! 02295998 a 0101 & 02297409 a 0000 & 02297586 a 0000 | varying from or not adhering to a standard; "nonstandard windows"; "envelopes of nonstandard sizes"; "nonstandard lengths of board" -02297409 00 s 03 deficient 0 inferior 0 substandard 0 003 & 02297166 a 0000 + 13951444 n 0201 + 14449405 n 0102 | falling short of some prescribed norm; "substandard housing" -02297586 00 s 01 nonnormative 0 001 & 02297166 a 0000 | not based on a norm -02297664 00 a 02 standard 3 received 4 004 ;c 06172789 n 0000 ! 02298285 a 0101 & 02297966 a 0000 & 02298152 a 0000 | conforming to the established language usage of educated native speakers; "standard English" (American); "received standard English is sometimes called the King's English" (British) -02297966 00 s 01 acceptable 0 004 & 02297664 a 0000 ;c 06172789 n 0000 + 04792679 n 0101 + 04792679 n 0102 | judged to be in conformity with approved usage; "acceptable English usage" -02298152 00 s 01 classical 0 001 & 02297664 a 0000 | (language) having the form used by ancient standard authors; "classical Greek -02298285 00 a 01 nonstandard 3 004 ;c 06172789 n 0000 ! 02297664 a 0101 & 02298642 a 0000 & 02298766 a 0000 | not conforming to the language usage of a prestige group within a community; "a nonstandard dialect is one used by uneducated speakers or socially disfavored groups"; "the common core of nonstandard words and phrases in folk speech"- A.R.Dunlap -02298642 00 s 01 bad 0 003 & 02298285 a 0000 ;c 06172789 n 0000 ;u 07075172 n 0000 | nonstandard; "so-called bad grammar" -02298766 00 s 02 unacceptable 0 unaccepted 0 003 & 02298285 a 0000 ;c 06172789 n 0000 + 04793925 n 0102 | not conforming to standard usage; "the following use of `access' was judged unacceptable by a panel of linguists; `You can access your cash at any of 300 automatic tellers'" -02299048 00 a 01 starchy 0 003 + 15053867 n 0101 ! 02299366 a 0101 & 02299189 a 0000 | consisting of or containing starch; "starchy foods" -02299189 00 s 05 starchlike 0 amylaceous 0 amyloid 0 amyloidal 0 farinaceous 0 004 & 02299048 a 0000 + 15054862 n 0401 + 14730105 n 0401 + 15054862 n 0301 | resembling starch -02299366 00 a 01 starchless 0 001 ! 02299048 a 0101 | lacking starch -02299437 00 a 01 starry 0 007 + 09444783 n 0101 + 09444100 n 0101 ! 02300101 a 0101 & 02299673 a 0000 & 02299748 a 0000 & 02299889 a 0000 & 02300002 a 0000 | abounding with or resembling stars; "a starry night"; "starry illumination" -02299673 00 s 01 comet-like 0 001 & 02299437 a 0000 | resembling a comet -02299748 00 s 01 sparkling 0 001 & 02299437 a 0000 | shining with brilliant points of light like stars; "sparkling snow"; "sparkling eyes" -02299889 00 s 01 starlike 0 001 & 02299437 a 0000 | resembling a star; "they saw a starlike object in the sky" -02300002 00 s 01 starlit 0 001 & 02299437 a 0000 | lighted only by stars; "the starlit darkness" -02300101 00 a 01 starless 0 001 ! 02299437 a 0101 | not starry; having no stars or starlike objects; "dark starless nights" -02300227 00 a 01 nourished 0 006 ! 02300914 a 0101 & 02300413 a 0000 & 02300501 a 0000 & 02300624 a 0000 & 02300714 a 0000 & 02300786 a 0000 | being provided with adequate nourishment -02300413 00 s 01 corn-fed 0 001 & 02300227 a 0000 | fed on corn; "corn-fed livestock" -02300501 00 s 02 full 0 replete(p) 0 001 & 02300227 a 0000 | filled to satisfaction with food or drink; "a full stomach" -02300624 00 s 02 well-fed 0 well-nourished 0 001 & 02300227 a 0000 | properly nourished -02300714 00 s 01 overfed 0 001 & 02300227 a 0000 | too well nourished -02300786 00 s 01 stall-fed 0 001 & 02300227 a 0000 | (of livestock) kept and fed in a stall in order to fatten for the market -02300914 00 a 01 malnourished 0 006 ! 02300227 a 0101 & 02301107 a 0000 & 02301180 a 0000 & 02301338 a 0000 & 02301430 a 0000 & 02301489 a 0000 | not being provided with adequate nourishment -02301107 00 s 01 foodless 0 001 & 02300914 a 0000 | being without food -02301180 00 s 03 ill-fed 0 underfed 0 undernourished 0 001 & 02300914 a 0000 | not getting adequate food; "gaunt underfed children"; "badly undernourished" -02301338 00 s 02 starved 0 starving 0 001 & 02300914 a 0000 | suffering from lack of food -02301430 00 s 01 unfed 0 001 & 02300914 a 0000 | not fed -02301489 00 s 01 unnourished 0 001 & 02300914 a 0000 | not nourished -02301560 00 a 01 steady 0 012 ^ 00909545 a 0000 ^ 02290998 a 0000 ^ 00087152 a 0000 + 04770068 n 0101 ! 02303077 a 0101 & 02301969 a 0000 & 02302187 a 0000 & 02302366 a 0000 & 02302537 a 0000 & 02302705 a 0000 & 02302822 a 0000 & 02302941 a 0000 | not subject to change or variation especially in behavior; "a steady beat"; "a steady job"; "a steady breeze"; "a steady increase"; "a good steady ballplayer" -02301969 00 s 03 dependable 0 rock-steady 0 steady-going 0 003 & 02301560 a 0000 + 04670022 n 0102 + 04670022 n 0101 | consistent in performance or behavior; "dependable in one's habits"; "a steady-going family man" -02302187 00 s 02 even 0 regular 0 003 & 02301560 a 0000 + 04767347 n 0201 + 04769456 n 0101 | occurring at fixed intervals; "a regular beat"; "the even rhythm of his breathing" -02302366 00 s 01 firm 0 001 & 02301560 a 0000 | (of especially a person's physical features) not shaking or trembling; "his voice was firm and confident"; "a firm step" -02302537 00 s 02 level 0 unwavering 0 001 & 02301560 a 0000 | not showing abrupt variations; "spoke in a level voice"; "she gave him a level look"- Louis Auchincloss -02302705 00 s 01 steadied 0 001 & 02301560 a 0000 | made steady or constant; "the noise became a steadied roaring" -02302822 00 s 01 sure 0 002 & 02301560 a 0000 + 04778267 n 0101 | certain not to fail; "a sure hand on the throttle" -02302941 00 s 03 surefooted 0 sure-footed 0 footsure 0 001 & 02301560 a 0000 | not liable to stumble or fall; "on surefooted donkeys" -02303077 00 a 01 unsteady 0 019 ^ 00085264 a 0000 ^ 01960656 a 0000 ^ 00911327 a 0000 ^ 02291843 a 0000 + 04773182 n 0101 ! 02301560 a 0101 & 02303575 a 0000 & 02303754 a 0000 & 02304035 a 0000 & 02304119 a 0000 & 02304208 a 0000 & 02304322 a 0000 & 02304565 a 0000 & 02304987 a 0000 & 02305176 a 0000 & 02305394 a 0000 & 02305484 a 0000 & 02305651 a 0000 & 02305786 a 0000 | subject to change or variation; "her unsteady walk"; "his hand was unsteady as he poured the wine"; "an unsteady voice" -02303575 00 s 03 arrhythmic 0 jerking 0 jerky 0 004 & 02303077 a 0000 + 00335988 n 0301 + 04770535 n 0302 + 14110674 n 0102 | lacking a steady rhythm; "an arrhythmic heartbeat" -02303754 00 s 03 convulsive 0 spasmodic 0 spastic 0 004 & 02303077 a 0000 + 04771738 n 0301 + 01389007 v 0101 + 01388813 v 0101 | affected by involuntary jerky muscular contractions; resembling a spasm; "convulsive motions"; "his body made a spasmodic jerk"; "spastic movements" -02304035 00 s 01 faltering 0 001 & 02303077 a 0000 | unsteady in speech or action -02304119 00 s 02 flickering 0 aflicker(p) 0 001 & 02303077 a 0000 | shining unsteadily -02304208 00 s 01 fluctuating 0 001 & 02303077 a 0000 | having unpredictable ups and downs; "fluctuating prices" -02304322 00 s 02 palpitant 0 palpitating 0 004 & 02303077 a 0000 + 01889392 v 0101 + 01889129 v 0103 + 01879928 v 0101 | having a slight and rapid trembling motion; "palpitant movements rather than violent eruptions"; "my palpitating heart" -02304565 00 s 03 shaky 0 shivering 0 trembling 0 002 & 02303077 a 0000 + 14004572 n 0102 | vibrating slightly and irregularly; as e.g. with fear or cold or like the leaves of an aspen in a breeze; "a quaking bog"; "the quaking child asked for more"; "quivering leaves of a poplar tree"; "with shaking knees"; "seemed shaky on her feet"; "sparkling light from the shivering crystals of the chandelier"; "trembling hands" -02304987 00 s 02 quavering 0 tremulous 0 001 & 02303077 a 0000 | (of the voice) quivering as from weakness or fear; "the old lady's quavering voice"; "spoke timidly in a tremulous voice" -02305176 00 s 02 shifting 0 shifty 0 003 & 02303077 a 0000 + 04734698 n 0201 + 00331655 n 0201 | changing position or direction; "he drifted into the shifting crowd"; "their nervous shifting glances"; "shifty winds" -02305394 00 s 01 shuddering 0 001 & 02303077 a 0000 | shaking convulsively or violently -02305484 00 s 02 tottering 0 tottery 0 001 & 02303077 a 0000 | unsteady in gait as from infirmity or old age; "a tottering skeleton of a horse"; "a tottery old man" -02305651 00 s 01 uneven 5 001 & 02303077 a 0000 | variable and recurring at irregular intervals ; "an uneven gait"; "uneven spacing" -02305786 00 s 01 wobbling 0 001 & 02303077 a 0000 | (of sound) fluctuating unsteadily; "a low-pitched wobbling sound" -02305906 00 a 01 stemmed 0 001 ! 02306080 a 0101 | having a stem or stems or having a stem as specified; often used in combination; "stemmed goblets"; "long-stemmed roses" -02306080 00 a 01 stemless 0 002 ! 02305906 a 0101 & 02306192 a 0000 | not having a stem; "stemless glassware" -02306192 00 s 01 stemmed 2 001 & 02306080 a 0000 | having the stem removed; "stemmed berries" -02306288 00 a 01 stimulating 0 011 ^ 00921014 a 0000 ^ 01343918 a 0000 ^ 01356683 a 0000 ^ 01560513 a 0000 ^ 02309341 a 0000 ! 02307367 a 0101 & 02306598 a 0000 & 02306763 a 0000 & 02306874 a 0000 & 02307026 a 0000 & 02307199 a 0000 | rousing or quickening activity or the senses; "a stimulating discussion" -02306598 00 s 02 challenging 0 thought-provoking 0 001 & 02306288 a 0000 | stimulating interest or thought; "a challenging hypothesis"; "a thought-provoking book" -02306763 00 s 01 exciting 0 001 & 02306288 a 0000 | stimulating interest and discussion; "an exciting novel" -02306874 00 s 02 piquant 0 salty 0 002 & 02306288 a 0000 + 07072838 n 0201 | engagingly stimulating or provocative; "a piquant wit"; "salty language" -02307026 00 s 02 rousing 0 stirring 0 001 & 02306288 a 0000 | capable of arousing enthusiasm or excitement; "a rousing sermon"; "stirring events such as wars and rescues" -02307199 00 s 01 thrilling 0 001 & 02306288 a 0000 | causing quivering or shivering as by cold or fear or electric shock; "a thrilling wind blew off the frozen lake" -02307367 00 a 02 unstimulating 0 unexciting 4 007 ^ 00922594 a 0000 ^ 01344963 a 0000 ^ 01561564 a 0000 ! 02306288 a 0101 & 02307563 a 0000 & 02307729 a 0000 & 02308001 a 0000 | not stimulating -02307563 00 s 02 bland 0 flat 0 002 & 02307367 a 0000 + 07069747 n 0201 | lacking stimulating characteristics; uninteresting; "a bland little drama"; "a flat joke" -02307729 00 s 02 dry 0 juiceless 0 001 & 02307367 a 0000 | lacking interest or stimulation; dull and lifeless; "a dry book"; "a dry lecture filled with trivial details"; "dull and juiceless as only book knowledge can be when it is unrelated to...life"- John Mason Brown -02308001 00 s 01 vapid 0 003 & 02307367 a 0000 + 05206573 n 0105 + 05206573 n 0104 | lacking significance or liveliness or spirit or zest; "a vapid conversation"; "a vapid smile"; "a bunch of vapid schoolgirls" -02308214 00 a 01 depressant 0 007 + 04166553 n 0103 + 01814396 v 0101 ! 02309341 a 0101 & 02308472 a 0000 & 02308840 a 0000 & 02309004 a 0000 & 02309187 a 0000 | capable of depressing physiological or psychological activity or response by a chemical agent -02308472 00 s 07 ataractic 0 ataraxic 0 sedative 0 tranquilizing 0 tranquillizing 0 tranquilising 0 tranquillising 0 006 & 02308214 a 0000 + 04166553 n 0301 + 00022316 v 0301 + 04904560 n 0201 + 04470232 n 0107 + 04904560 n 0101 | tending to soothe or tranquilize; "valium has a tranquilizing effect"; "took a hot drink with sedative properties before going to bed" -02308840 00 s 03 narcotic 0 narcotizing 0 narcotising 0 003 & 02308214 a 0000 + 03808564 n 0101 + 05682055 n 0101 | inducing stupor or narcosis; "narcotic drugs" -02309004 00 s 01 relaxant 0 004 & 02308214 a 0000 + 04072811 n 0101 + 00025654 v 0101 + 00026385 v 0101 | tending to relax or relieve muscular or nervous tension; "a relaxant drug" -02309187 00 s 06 soporific 0 soporiferous 0 somniferous 0 somnific 0 hypnogogic 0 hypnagogic 0 002 & 02308214 a 0000 + 04260934 n 0101 | sleep inducing -02309341 00 a 01 stimulative 0 010 ^ 02306288 a 0000 + 02116118 v 0101 + 00503164 v 0101 + 00022686 v 0101 ! 02308214 a 0101 & 02309668 a 0000 & 02309800 a 0000 & 02309971 a 0000 & 02310185 a 0000 & 02310371 a 0000 | capable of arousing or accelerating physiological or psychological activity or response by a chemical agent -02309668 00 s 02 adrenocorticotropic 0 adrenocorticotrophic 0 001 & 02309341 a 0000 | stimulating or acting on the adrenal cortex -02309800 00 s 01 analeptic 0 002 & 02309341 a 0000 + 02707547 n 0101 | stimulating the central nervous system; "an analeptic drug stimulates the central nervous system" -02309971 00 s 03 excitant 0 excitative 0 excitatory 0 006 & 02309341 a 0000 + 00559102 v 0301 + 00503164 v 0302 + 02116118 v 0102 + 01762528 v 0106 + 00503164 v 0102 | (of drugs e.g.) able to excite or stimulate -02310185 00 s 02 irritating 0 irritative 0 003 & 02309341 a 0000 + 00503715 v 0201 + 00063291 v 0201 | (used of physical stimuli) serving to stimulate or excite; "an irritative agent" -02310371 00 s 02 stimulant 0 stimulating 0 004 & 02309341 a 0000 + 02116118 v 0101 + 00794079 v 0102 + 00503164 v 0101 | that stimulates; "stimulant phenomena" -02310533 00 a 01 stomatous 0 004 ;c 06037666 n 0000 + 05246215 n 0101 ! 02310771 a 0101 & 02310679 a 0000 | having a mouth or mouthlike opening -02310679 00 s 01 mouthlike 0 001 & 02310533 a 0000 | of an opening that resembles a mouth -02310771 00 a 02 astomatous 0 mouthless 0 002 ;c 06037666 n 0000 ! 02310533 a 0101 | having no mouth or mouthlike opening -02310895 00 a 01 straight 1 008 ^ 00760916 a 0000 ^ 01233347 a 0000 = 05064037 n 0000 + 05074057 n 0101 ! 02311544 a 0101 & 02311190 a 0000 & 02311293 a 0000 & 02311442 a 0000 | having no deviations; "straight lines"; "straight roads across the desert"; "straight teeth"; "straight shoulders" -02311190 00 s 01 aligned 0 001 & 02310895 a 0000 | in a straight line; "pearly teeth evenly aligned" -02311293 00 s 01 unbent 0 001 & 02310895 a 0000 | not bent; "looking for an unbent nail"; "trees with straight unbent trunks make the best lumber" -02311442 00 s 01 untwisted 0 001 & 02310895 a 0000 | not twisted; formerly twisted but now straight -02311544 00 a 01 crooked 1 021 ^ 02317327 a 0000 ^ 00762355 a 0000 = 05064037 n 0000 + 05074218 n 0101 ! 02310895 a 0101 & 02312060 a 0000 & 02312250 a 0000 & 02312354 a 0000 & 02312450 a 0000 & 02312719 a 0000 & 02312918 a 0000 & 02313138 a 0000 & 02313235 a 0000 & 02313454 a 0000 & 02313563 a 0000 & 02313676 a 0000 & 02313784 a 0000 & 02314070 a 0000 & 02314236 a 0000 & 02314371 a 0000 & 02314451 a 0000 | having or marked by bends or angles; not straight or aligned; "crooked country roads"; "crooked teeth" -02312060 00 s 01 akimbo(ip) 0 001 & 02311544 a 0000 | (used of arms and legs) bent outward with the joint away from the body; "a tailor sitting with legs akimbo"; "stood with arms akimbo" -02312250 00 s 01 anfractuous 0 001 & 02311544 a 0000 | full of twists and turns; "anfractuous cliffs" -02312354 00 s 02 aquiline 0 hooked 0 001 & 02311544 a 0000 | curved down like an eagle's beak -02312450 00 s 06 askew 0 awry(p) 0 cockeyed 0 lopsided 0 wonky 0 skew-whiff 0 002 & 02311544 a 0000 + 05066195 n 0401 | turned or twisted toward one side; "a...youth with a gorgeous red necktie all awry"- G.K.Chesterton; "his wig was, as the British say, skew-whiff" -02312719 00 s 03 contorted 2 writhed 0 writhen 0 001 & 02311544 a 0000 | twisted (especially as in pain or struggle); "his mad contorted smile"; "writhed lips"; "my writhen features"- Walter scott -02312918 00 s 02 deflective 0 refractive 0 006 & 02311544 a 0000 + 05011568 n 0202 + 02111838 v 0201 + 00920929 v 0201 + 05011568 n 0201 + 02033805 v 0101 | capable of changing the direction (of a light or sound wave) -02313138 00 s 01 geniculate 0 002 & 02311544 a 0000 ;c 06037666 n 0000 | bent at a sharp angle -02313235 00 s 05 gnarled 0 gnarly 0 knotted 0 knotty 0 knobbed 0 002 & 02311544 a 0000 + 13885836 n 0202 | used of old persons or old trees; covered with knobs or knots; "gnarled and knotted hands"; "a knobbed stick" -02313454 00 s 01 malposed 0 001 & 02311544 a 0000 | characterized by malposition; "crooked malposed teeth" -02313563 00 s 01 reflexed 0 001 & 02311544 a 0000 | (of leaves) bent downward and outward more than 90 degrees -02313676 00 s 01 squiggly 0 003 & 02311544 a 0000 + 06404416 n 0101 + 06801033 n 0101 | wavy and twisting -02313784 00 s 05 tortuous 0 twisting 0 twisty 0 winding 0 voluminous 0 003 & 02311544 a 0000 + 13885370 n 0102 + 13885370 n 0101 | marked by repeated turns and bends; "a tortuous road up the mountain"; "winding roads are full of surprises"; "had to steer the car down a twisty track" -02314070 00 s 01 warped 0 001 & 02311544 a 0000 | used especially of timbers or boards; bent out of shape usually by moisture; "the floors were warped and cracked" -02314236 00 s 01 windblown 0 001 & 02311544 a 0000 | used especially of trees; growing in a shape determined by the prevailing winds -02314371 00 s 01 wry 0 001 & 02311544 a 0000 | bent to one side; "a wry neck" -02314451 00 s 02 zigzag 0 zig-zag 0 003 & 02311544 a 0000 + 13887319 n 0201 + 13887319 n 0101 | having short sharp turns or angles -02314584 00 a 01 straight 5 005 + 04331126 n 0102 + 05074057 n 0101 ! 02315002 a 0101 & 02314756 a 0000 & 02314919 a 0000 | free from curves or angles; "a straight line" -02314756 00 s 02 trabeated 0 trabeate 0 002 & 02314584 a 0000 ;c 06123363 n 0000 | not arcuate; having straight horizontal beams or lintels (rather than arches) -02314919 00 s 02 uncurved 0 uncurving 0 001 & 02314584 a 0000 | having no curves -02315002 00 a 02 curved 0 curving 0 015 ! 02314584 a 0101 & 02315461 a 0000 & 02315648 a 0000 & 02315808 a 0000 & 02315914 a 0000 & 02316071 a 0000 & 02316253 a 0000 & 02316366 a 0000 & 02316524 a 0000 & 02316626 a 0000 & 02316718 a 0000 & 02316820 a 0000 & 02316992 a 0000 & 02317145 a 0000 & 02317258 a 0000 | having or marked by a curve or smoothly rounded bend; "the curved tusks of a walrus"; "his curved lips suggested a smile but his eyes were hard" -02315461 00 s 06 arced 0 arched 0 arching 0 arciform 0 arcuate 0 bowed 0 003 & 02315002 a 0000 ;c 06123363 n 0000 + 13874384 n 0501 | forming or resembling an arch; "an arched ceiling" -02315648 00 s 02 curvilineal 0 curvilinear 0 001 & 02315002 a 0000 | characterized by or following a curved line; "curvilinear tracery"; "curvilinear motion" -02315808 00 s 01 eellike 0 001 & 02315002 a 0000 | resembling an eel in being long and thin and sinuous -02315914 00 s 03 falcate 0 falciform 0 sickle-shaped 0 001 & 02315002 a 0000 | curved like a sickle; "a falcate leaf"; "falcate claws"; "the falcate moon" -02316071 00 s 02 curvy 0 curvey 0 005 & 02315002 a 0000 + 05072663 n 0202 + 02829696 n 0202 + 05072663 n 0102 + 02829696 n 0102 | having curves; "a settee with only one curvy end" -02316253 00 s 01 flexuous 0 001 & 02315002 a 0000 | having turns or windings; "the flexuous bed of the stream" -02316366 00 s 02 hooklike 0 hooked 0 001 & 02315002 a 0000 | having or resembling a hook (especially in the ability to grasp and hold); "hooklike thorns"; -02316524 00 s 02 incurvate 0 incurved 0 001 & 02315002 a 0000 | bent into or having an inward curve -02316626 00 s 02 recurved 0 recurvate 0 001 & 02315002 a 0000 | curved backward or inward -02316718 00 s 01 semicircular 0 002 & 02315002 a 0000 + 13874251 n 0101 | curved into a half circle -02316820 00 s 03 serpentine 0 snaky 0 snakelike 0 002 & 02315002 a 0000 + 01726692 n 0201 | resembling a serpent in form; "a serpentine wall"; "snaky ridges in the sand" -02316992 00 s 03 sinuate 0 sinuous 0 wiggly 0 003 & 02315002 a 0000 + 13885207 n 0202 + 13885207 n 0201 | curved or curving in and out; "wiggly lines" -02317145 00 s 01 sinusoidal 0 002 & 02315002 a 0000 + 13909190 n 0102 | having a succession of waves or curves -02317258 00 s 01 upcurved 0 001 & 02315002 a 0000 | curving upward -02317327 00 a 01 coiled 0 006 ! 02318272 a 0101 & 02317598 a 0000 & 02317800 a 0000 & 02317942 a 0000 & 02318057 a 0000 & 02318207 a 0000 | curled or wound (especially in concentric rings or spirals); "a coiled snake ready to strike"; "the rope lay coiled on the deck" -02317598 00 s 08 coiling 0 helical 0 spiral 0 spiraling 0 volute 0 voluted 0 whorled 1 turbinate 0 004 & 02317327 a 0000 + 04279666 n 0502 + 03065424 n 0503 + 03065424 n 0205 | in the shape of a coil -02317800 00 s 02 convolute 0 convoluted 0 002 & 02317327 a 0000 ;c 06066555 n 0000 | rolled longitudinally upon itself; "a convolute petal" -02317942 00 s 01 involute 0 001 & 02317327 a 0000 | (of some shells) closely coiled so that the axis is obscured -02318057 00 s 02 involute 2 rolled 0 002 & 02317327 a 0000 ;c 06066555 n 0000 | especially of petals or leaves in bud; having margins rolled inward -02318207 00 s 01 wound 0 001 & 02317327 a 0000 | put in a coil -02318272 00 a 02 uncoiled 0 straight 2 002 ! 02317327 a 0101 & 02318372 a 0000 | no longer coiled -02318372 00 s 01 uncurled 0 001 & 02318272 a 0000 | not curled; "lay uncurled on the bed" -02318464 00 a 02 straight 4 square 4 008 ^ 01222360 a 0000 ^ 01395617 a 0000 = 04871374 n 0000 + 04872016 n 0102 ! 02319129 a 0101 & 02318728 a 0000 & 02318950 a 0000 & 02319034 a 0000 | characterized by honesty and fairness; "straight dealing"; "a square deal" -02318728 00 s 02 aboveboard 0 straightforward 0 002 & 02318464 a 0000 + 04918498 n 0202 | without concealment or deception; honest; "their business was open and aboveboard"; "straightforward in all his business affairs" -02318950 00 s 02 guileless 0 transparent 0 001 & 02318464 a 0000 | free of deceit -02319034 00 s 01 straightarrow(a) 0 001 & 02318464 a 0000 | conventionally moral and upright -02319129 00 a 02 crooked 2 corrupt 4 007 ^ 01222884 a 0000 ^ 01396047 a 0000 = 04871374 n 0000 + 04853948 n 0201 + 04875556 n 0101 ! 02318464 a 0101 & 02319346 a 0000 | not straight; dishonest or immoral or evasive -02319346 00 s 03 sneaky 0 underhand 0 underhanded 0 003 & 02319129 a 0000 + 10616048 n 0101 + 04657631 n 0102 | marked by deception; "achieved success in business only by underhand methods" -02319538 00 a 02 stressed 0 accented 0 003 ! 02320117 a 0101 & 02319765 a 0000 & 02319922 a 0000 | bearing a stress or accent; "an iambic foot consists of an unstressed syllable followed by a stressed syllable as in `delay'" -02319765 00 s 03 emphatic 0 emphasized 0 emphasised 0 003 & 02319538 a 0000 + 07085375 n 0102 + 05037394 n 0102 | spoken with emphasis; "an emphatic word" -02319922 00 s 01 masculine 0 002 & 02319538 a 0000 ;c 07020895 n 0000 | (music or poetry) ending on an accented beat or syllable; "a masculine cadence"; "the masculine rhyme of `annoy, enjoy'" -02320117 00 a 01 unstressed 0 004 ! 02319538 a 0101 & 02320289 a 0000 & 02320442 a 0000 & 02320680 a 0000 | not bearing a stress or accent; "short vowels are unstressed" -02320289 00 s 01 feminine 0 002 & 02320117 a 0000 ;c 07020895 n 0000 | (music or poetry) ending on an unaccented beat or syllable; "a feminine ending" -02320442 00 s 03 unaccented 0 light 0 weak 0 001 & 02320117 a 0000 | (used of vowels or syllables) pronounced with little or no stress; "a syllable that ends in a short vowel is a light syllable"; "a weak stress on the second syllable" -02320680 00 s 01 unemphatic 0 001 & 02320117 a 0000 | not emphasized -02320751 00 a 02 tonic 0 accented 4 001 ! 02320886 a 0101 | used of syllables; "a tonic syllables carries the main stress in a word" -02320886 00 a 02 atonic 0 unaccented 4 001 ! 02320751 a 0101 | used of syllables; "an atonic syllable carries no stress" -02321009 00 a 01 strong 0 023 ^ 01825671 a 0000 ^ 02037708 a 0000 ^ 00707366 a 0000 ^ 02447344 a 0000 = 05029706 n 0000 ! 02324397 a 0101 & 02321575 a 0000 & 02321702 a 0000 & 02321809 a 0000 & 02322157 a 0000 & 02322248 a 0000 & 02322391 a 0000 & 02322512 a 0000 & 02322704 a 0000 & 02322885 a 0000 & 02323072 a 0000 & 02323204 a 0000 & 02323358 a 0000 & 02323521 a 0000 & 02323726 a 0000 & 02323823 a 0000 & 02324005 a 0000 & 02324165 a 0000 | having strength or power greater than average or expected; "a strong radio signal"; "strong medicine"; "a strong man" -02321575 00 s 01 beardown(a) 0 001 & 02321009 a 0000 | with full strength; "his beardown performance in the exhibition game" -02321702 00 s 01 beefed-up 0 001 & 02321009 a 0000 | made greater or stronger; "beefed-up sales efforts" -02321809 00 s 05 brawny 0 hefty 0 muscular 0 powerful 1 sinewy 0 008 & 02321009 a 0000 + 05030418 n 0505 + 05030418 n 0303 + 05030418 n 0304 + 05027837 n 0201 + 05027837 n 0202 + 05030418 n 0101 + 05030418 n 0102 | (of a person) possessing physical strength and weight; rugged and powerful; "a hefty athlete"; "a muscular boxer"; "powerful arms" -02322157 00 s 01 bullnecked 0 001 & 02321009 a 0000 | having a thick short powerful neck -02322248 00 s 01 bullocky 0 002 & 02321009 a 0000 + 02403820 n 0101 | resembling a bullock in strength and power; "thick bullocky shoulders" -02322391 00 s 01 fortified 0 001 & 02321009 a 0000 | having something added to increase the strength; "fortified wine" -02322512 00 s 03 hard 0 knockout 0 severe 0 002 & 02321009 a 0000 + 05036715 n 0303 | very strong or vigorous; "strong winds"; "a hard left to the chin"; "a knockout punch"; "a severe blow" -02322704 00 s 02 industrial-strength 0 weapons-grade 0 001 & 02321009 a 0000 | extremely strong or concentrated or durable; "industrial-strength detergent"; "weapons-grade salsa" -02322885 00 s 01 ironlike 0 001 & 02321009 a 0000 | exhibiting strength or hardness like that of iron; "ironlike determination"; "ironlike nerves"; "ironlike discipline of the Marines" -02323072 00 s 02 knock-down(a) 0 powerful 2 001 & 02321009 a 0000 | strong enough to knock down or overwhelm; "a knock-down blow" -02323204 00 s 01 noticeable 0 004 & 02321009 a 0000 + 04706290 n 0102 + 04706290 n 0103 + 02118476 v 0101 | readily noticed; "a noticeable resemblance" -02323358 00 s 02 reinforced 0 strengthened 0 001 & 02321009 a 0000 | given added strength or support; "reinforced concrete contains steel bars or metal netting" -02323521 00 s 01 robust 0 002 & 02321009 a 0000 + 04920000 n 0101 | strong enough to withstand or overcome intellectual challenges or adversity; "the experiment yielded robust results"; "a robust faith" -02323726 00 s 01 stiff 0 001 & 02321009 a 0000 | powerful; "a stiff current"; "a stiff breeze" -02323823 00 s 01 vehement 0 002 & 02321009 a 0000 + 05037813 n 0105 | characterized by great force or energy; "vehement deluges of rain"; "vehement clapping"; "a vehement defense" -02324005 00 s 01 virile 0 001 & 02321009 a 0000 | characterized by energy and vigor; "a virile and ever stronger free society"; "a new and virile leadership" -02324165 00 s 02 well-knit 0 well-set 0 001 & 02321009 a 0000 | strongly and firmly constructed; "a well-knit argument"; "a well-knit theatrical production"; "well-knit athletes"; "a sailor short but well-set"- Alexander Hamilton -02324397 00 a 01 weak 0 017 ^ 00705891 a 0000 ^ 02448166 a 0000 ^ 01827535 a 0000 = 05029706 n 0000 + 05040275 n 0101 ! 02321009 a 0101 & 02324781 a 0000 & 02324944 a 0000 & 02325097 a 0000 & 02325304 a 0000 & 02325484 a 0000 & 02325642 a 0000 & 02325816 a 0000 & 02325984 a 0000 & 02326342 a 0000 & 02326482 a 0000 & 02326621 a 0000 | wanting in physical strength; "a weak pillar" -02324781 00 s 02 anemic 0 anaemic 0 003 & 02324397 a 0000 + 14372738 n 0202 + 14372738 n 0101 | lacking vigor or energy; "an anemic attempt to hit the baseball" -02324944 00 s 04 adynamic 0 asthenic 0 debilitated 0 enervated 0 003 & 02324397 a 0000 + 14547976 n 0201 + 14547976 n 0202 | lacking strength or vigor -02325097 00 s 02 faint 0 feeble 0 003 & 02324397 a 0000 + 05040939 n 0201 + 05041165 n 0101 | lacking strength or vigor; "damning with faint praise"; "faint resistance"; "feeble efforts"; "a feeble voice" -02325304 00 s 02 feeble 2 lame 0 003 & 02324397 a 0000 + 14472900 n 0201 + 05040939 n 0101 | pathetically lacking in force or effectiveness; "a feeble excuse"; "a lame argument" -02325484 00 s 01 flimsy 1 003 & 02324397 a 0000 + 14969254 n 0102 + 05041320 n 0101 | lacking solidity or strength; "a flimsy table"; "flimsy construction" -02325642 00 s 02 jerry-built 0 shoddy 0 003 & 02324397 a 0000 + 05140593 n 0201 + 05041320 n 0202 | of inferior workmanship and materials; "mean little jerry-built houses" -02325816 00 s 04 namby-pamby 0 gutless 0 spineless 0 wishy-washy 0 003 & 02324397 a 0000 + 04889966 n 0301 + 10344319 n 0101 | weak in willpower, courage or vitality -02325984 00 s 04 pale 0 pallid 0 wan 0 sick 0 002 & 02324397 a 0000 + 04975612 n 0101 | (of light) lacking in intensity or brightness; dim or feeble; "the pale light of a half moon"; "a pale sun"; "the late afternoon light coming through the el tracks fell in pale oblongs on the street"; "a pallid sky"; "the pale (or wan) stars"; "the wan light of dawn" -02326342 00 s 01 puny 0 002 & 02324397 a 0000 + 05173205 n 0104 | inferior in strength or significance; "a puny physique"; "puny excuses" -02326482 00 s 01 vulnerable 0 002 & 02324397 a 0000 + 14543931 n 0101 | capable of being wounded or hurt; "vulnerable parts of the body" -02326621 00 s 01 weakened 0 001 & 02324397 a 0000 | made weak or weaker -02326695 00 a 03 stubborn 0 obstinate 0 unregenerate 1 014 ^ 01613463 a 0000 ^ 02451951 a 0000 ^ 01025913 a 0000 + 04863074 n 0101 ! 02328659 a 0101 & 02327078 a 0000 & 02327315 a 0000 & 02327428 a 0000 & 02327569 a 0000 & 02328012 a 0000 & 02328108 a 0000 & 02328297 a 0000 & 02328445 a 0000 & 02328559 a 0000 | tenaciously unwilling or marked by tenacious unwillingness to yield -02327078 00 s 02 bloody-minded 0 cantankerous 0 002 & 02326695 a 0000 ;r 08860123 n 0000 | stubbornly obstructive and unwilling to cooperate; "unions...have never been as bloody-minded about demarcation as the shipbuilders"- Spectator -02327315 00 s 02 bolshy 0 stroppy 0 003 & 02326695 a 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | obstreperous -02327428 00 s 03 bullheaded 0 bullet-headed 0 pigheaded 0 003 & 02326695 a 0000 + 04863074 n 0305 + 04863074 n 0102 | obstinate and stupid -02327569 00 s 06 dogged 0 dour 0 persistent 0 pertinacious 0 tenacious 0 unyielding 0 007 & 02326695 a 0000 + 04863793 n 0603 + 04864515 n 0506 + 04864515 n 0505 + 04864515 n 0407 + 04864515 n 0303 + 04864515 n 0101 | stubbornly unyielding; "dogged persistence"; "dour determination"; "the most vocal and pertinacious of all the critics"; "a mind not gifted to discover truth but tenacious to hold it"- T.S.Eliot; "men tenacious of opinion" -02328012 00 s 02 contrarious 0 cross-grained 0 001 & 02326695 a 0000 | difficult to deal with -02328108 00 s 01 determined 0 001 & 02326695 a 0000 | devoting full strength and concentrated attention to; "made continued and determined efforts to find and destroy enemy headquarters" -02328297 00 s 02 hardheaded 0 mulish 0 002 & 02326695 a 0000 + 04908835 n 0204 | unreasonably rigid in the face of argument or entreaty or attack -02328445 00 s 01 stiff-necked 0 001 & 02326695 a 0000 | haughtily stubborn; "a stiff-necked old Boston brahmin" -02328559 00 s 02 strong-minded 0 strong-willed 0 001 & 02326695 a 0000 | having a determined will -02328659 00 a 01 docile 0 007 ^ 01612053 a 0000 ^ 02451113 a 0000 + 04905697 n 0101 ! 02326695 a 0101 & 02328916 a 0000 & 02329075 a 0000 & 02329220 a 0000 | willing to be taught or led or supervised or directed; "the docile masses of an enslaved nation" -02328916 00 s 02 meek 0 tame 0 003 & 02328659 a 0000 + 04905842 n 0201 + 07509325 n 0101 | very docile; "tame obedience"; "meek as a mouse"- Langston Hughes -02329075 00 s 02 sheeplike 0 sheepish 0 001 & 02328659 a 0000 | like or suggestive of a sheep in docility or stupidity or meekness or timidity -02329220 00 s 01 yielding 0 001 & 02328659 a 0000 | inclined to yield to argument or influence or control; "a timid yielding person" -02329355 00 a 01 subordinate 2 007 ^ 00788821 a 0000 ^ 00792991 a 0000 ! 02330336 a 0101 & 02329606 a 0000 & 02329765 a 0000 & 02329864 a 0000 & 02330064 a 0000 | subject or submissive to authority or the control of another; "a subordinate kingdom" -02329606 00 s 01 feudatory 0 001 & 02329355 a 0000 | owing feudal allegiance to or being subject to a sovereign; "it remained feudatory to India until 1365" -02329765 00 s 01 ruled 0 001 & 02329355 a 0000 | subject to a ruling authority; "the ruled mass" -02329864 00 s 02 subject 0 dependent 0 003 & 02329355 a 0000 + 08499840 n 0202 + 09625401 n 0102 | being under the power or sovereignty of another or others; "subject peoples"; "a dependent prince" -02330064 00 s 01 subservient 0 002 & 02329355 a 0000 + 13952466 n 0102 | compliant and obedient to authority; "editors and journalists who express opinions in print that are opposed to the interests of the rich are dismissed and replaced by subservient ones"-G. B. Shaw -02330336 00 a 01 insubordinate 0 006 ^ 00695523 a 0000 ! 02329355 a 0101 & 02330574 a 0000 & 02330762 a 0000 & 02330935 a 0000 & 02331088 a 0000 | not submissive to authority; "a history of insubordinate behavior"; "insubordinate boys" -02330574 00 s 01 contumacious 0 003 & 02330336 a 0000 + 01179564 n 0101 + 01180858 n 0101 | wilfully obstinate; stubbornly disobedient; "a contumaceous witness is subject to punishment" -02330762 00 s 02 disobedient 0 unruly 0 004 & 02330336 a 0000 + 04908396 n 0201 + 04909414 n 0101 + 02543181 v 0101 | unwilling to submit to authority; "unruly teenagers" -02330935 00 s 01 mutinous 0 002 & 02330336 a 0000 + 00963896 n 0101 | disposed to or in a state of mutiny; "the men became mutinous and insubordinate" -02331088 00 s 01 rebellious 0 003 & 02330336 a 0000 + 01177327 n 0101 + 01179393 n 0102 | resisting control or authority; "temperamentally rebellious"; "a rebellious crew" -02331262 00 a 01 successful 0 017 ^ 01047874 a 0000 ^ 01865197 a 0000 ^ 00695024 a 0000 = 14474894 n 0000 + 14474052 n 0102 ! 02333453 a 0101 & 02331721 a 0000 & 02331857 a 0000 & 02332204 a 0000 & 02332286 a 0000 & 02332421 a 0000 & 02332604 a 0000 & 02332704 a 0000 & 02332845 a 0000 & 02332956 a 0000 & 02333147 a 0000 & 02333314 a 0000 | having succeeded or being marked by a favorable outcome; "a successful architect"; "a successful business venture" -02331721 00 s 01 boffo 0 001 & 02331262 a 0000 | resoundingly successful and popular; "for years he was a boffo box office certainty" -02331857 00 s 07 booming 0 flourishing 0 palmy 0 prospering 0 prosperous 0 roaring 0 thriving 0 002 & 02331262 a 0000 + 14489699 n 0501 | very lively and profitable; "flourishing businesses"; "a palmy time for stockbrokers"; "a prosperous new business"; "doing a roaring trade"; "a thriving tourist center"; "did a thriving business in orchids" -02332204 00 s 01 in(p) 0 001 & 02331262 a 0000 | holding office; "the in party" -02332286 00 s 01 made 0 001 & 02331262 a 0000 | successful or assured of success; "now I am a made man forever"- Christopher Marlowe -02332421 00 s 01 no-hit 0 002 & 02331262 a 0000 ;c 00471613 n 0000 | of a game (or the pitching) in which a pitcher allows the opponent no hits; "a no-hit pitcher"; "a no-hit game" -02332604 00 s 01 productive 0 002 & 02331262 a 0000 + 05147940 n 0101 | yielding positive results -02332704 00 s 01 self-made 0 001 & 02331262 a 0000 | having achieved success or recognition by your own efforts; "a self-made millionaire" -02332845 00 s 01 sure-fire 0 001 & 02331262 a 0000 | certain to be successful; "a sure-fire way to get rich" -02332956 00 s 01 triple-crown 0 002 & 02331262 a 0000 ;c 00471613 n 0000 | unofficial championship title for player who heads the league in batting average and home runs and runs batted in -02333147 00 s 01 triple-crown 1 002 & 02331262 a 0000 ;c 00450070 n 0000 | of a horse that has won the Kentucky Derby and the Belmont Stakes and the Preakness races -02333314 00 s 02 victorious 0 winning 1 002 & 02331262 a 0000 + 07473441 n 0101 | having won; "the victorious entry"; "the winning team" -02333453 00 a 01 unsuccessful 0 018 ^ 00694608 a 0000 ^ 01049462 a 0000 ^ 01871949 a 0000 = 14474894 n 0000 ! 02331262 a 0101 & 02333880 a 0000 & 02333976 a 0000 & 02334321 a 0000 & 02334436 a 0000 & 02334561 a 0000 & 02334717 a 0000 & 02334854 a 0000 & 02334973 a 0000 & 02335119 a 0000 & 02335241 a 0000 & 02335393 a 0000 & 02335602 a 0000 & 02335708 a 0000 | not successful; having failed or having an unfavorable outcome -02333880 00 s 01 attempted 0 001 & 02333453 a 0000 | tried unsuccessfully; "attempted murder" -02333976 00 s 06 defeated 0 disappointed 0 discomfited 0 foiled 0 frustrated 0 thwarted 0 002 & 02333453 a 0000 + 07946135 n 0302 | disappointingly unsuccessful; "disappointed expectations and thwarted ambitions"; "their foiled attempt to capture Calais"; "many frustrated poets end as pipe-smoking teachers"; "his best efforts were thwarted" -02334321 00 s 05 done_for(p) 0 ruined 0 sunk 0 undone 0 washed-up 0 001 & 02333453 a 0000 | doomed to extinction -02334436 00 s 01 down-and-out 0 002 & 02333453 a 0000 + 10028402 n 0101 | lacking resources (or any prospect of resources) -02334561 00 s 02 empty-handed 0 unrewarded 0 001 & 02333453 a 0000 | having acquired or gained nothing; "the returned from the negotiations empty-handed" -02334717 00 s 01 hitless 0 002 & 02333453 a 0000 ;c 00471613 n 0000 | (of a batter) without a hit; "he went hitless for three innings" -02334854 00 s 01 no-win 0 001 & 02333453 a 0000 | certain to end in failure and disappointment; "a no-win situation" -02334973 00 s 01 out(a) 0 001 & 02333453 a 0000 | out of power; especially having been unsuccessful in an election; "now the Democrats are out" -02335119 00 s 03 scoreless 0 goalless 0 hitless 2 001 & 02333453 a 0000 | having no points scores; "a scoreless inning" -02335241 00 s 01 self-defeating 0 001 & 02333453 a 0000 | acting to defeat its own purpose; "it is self-defeating...to ignore the progress of events" -02335393 00 s 03 unfulfilled 0 unrealized 0 unrealised 0 001 & 02333453 a 0000 | of persons; marked by failure to realize full potentialities; "unfulfilled and uneasy men"; "unrealized dreams and ambitions" -02335602 00 s 01 unplaced 0 001 & 02333453 a 0000 | not one of the first three in a race or competition -02335708 00 s 01 winless 0 001 & 02333453 a 0000 | having no wins; "the team had a very disappointing winless season" -02335828 00 a 01 sufficient 0 008 ^ 00105746 a 0000 = 05108740 n 0000 + 13580415 n 0102 + 05112609 n 0101 + 02669789 v 0101 ! 02336449 a 0101 & 02336109 a 0000 & 02336338 a 0000 | of a quantity that can fulfill a need or requirement but without being abundant; "sufficient food" -02336109 00 s 03 adequate 0 decent 0 enough 0 003 & 02335828 a 0000 + 13580415 n 0301 + 04792357 n 0102 | sufficient for the purpose; "an adequate income"; "the food was adequate"; "a decent wage"; "enough food"; "food enough" -02336338 00 s 01 comfortable 0 001 & 02335828 a 0000 | sufficient to provide comfort; "a comfortable salary" -02336449 00 a 02 insufficient 0 deficient 4 010 ^ 00106456 a 0000 = 05108740 n 0000 + 05113133 n 0203 + 05113133 n 0101 ! 02335828 a 0101 & 02336759 a 0000 & 02336904 a 0000 & 02337188 a 0000 & 02337329 a 0000 & 02337558 a 0000 | of a quantity not able to fulfill a need or requirement; "insufficient funds" -02336759 00 s 02 depleted 0 low 0 002 & 02336449 a 0000 + 05097845 n 0201 | no longer sufficient; "supplies are low"; "our funds are depleted" -02336904 00 s 03 inadequate 0 poor 0 short 0 004 & 02336449 a 0000 + 14450339 n 0301 + 05113462 n 0204 + 04793555 n 0102 | not sufficient to meet a need; "an inadequate income"; "a poor salary"; "money is short"; "on short rations"; "food is in short supply"; "short on experience" -02337188 00 s 02 lean 1 skimpy 0 002 & 02336449 a 0000 + 05113462 n 0103 | containing little excess; "a lean budget"; "a skimpy allowance" -02337329 00 s 03 light 0 scant(p) 0 short 2 002 & 02336449 a 0000 + 05113462 n 0206 | less than the correct or legal or full amount often deliberately so; "a light pound"; "a scant cup of sugar"; "regularly gives short weight" -02337558 00 s 01 shy(p) 0 002 & 02336449 a 0000 ;u 07075172 n 0000 | short; "eleven is one shy of a dozen" -02337667 00 a 01 sugary 0 009 ^ 02367604 a 0000 ^ 02368336 a 0000 + 05716577 n 0103 + 04994727 n 0101 ! 02338327 a 0101 & 02337912 a 0000 & 02338037 a 0000 & 02338125 a 0000 & 02338197 a 0000 | containing sugar; "he eats too much sugary food" -02337912 00 s 02 candied 0 sugar-coated 0 001 & 02337667 a 0000 | encrusted with sugar or syrup; "candied grapefruit peel" -02338037 00 s 03 honeyed 0 honied 0 syrupy 0 001 & 02337667 a 0000 | with honey added -02338125 00 s 01 honeylike 0 001 & 02337667 a 0000 | resembling honey -02338197 00 s 04 sugared 0 sweetened 0 sweet 0 sweet-flavored 0 002 & 02337667 a 0000 + 04994413 n 0301 | with sweetening added -02338327 00 a 02 sugarless 0 nonsweet 0 004 ^ 02367785 a 0000 ! 02337667 a 0101 & 02338468 a 0000 & 02338543 a 0000 | not containing sugar -02338468 00 s 01 unsugared 0 001 & 02338327 a 0000 | with no sugar added -02338543 00 s 01 unsweetened 0 001 & 02338327 a 0000 | not made sweet -02338615 00 a 01 superior 1 011 ^ 00791227 a 0000 ^ 01210854 a 0000 + 05158619 n 0101 ! 02340213 a 0101 & 02338917 a 0000 & 02339120 a 0000 & 02339341 a 0000 & 02339577 a 0000 & 02339791 a 0000 & 02340003 a 0000 & 02340096 a 0000 | of or characteristic of high rank or importance; "a superior ruler" -02338917 00 s 04 arch 0 condescending 0 patronizing 0 patronising 0 002 & 02338615 a 0000 + 04655168 n 0202 | (used of behavior or attitude) characteristic of those who treat others with condescension -02339120 00 s 02 eminent 0 high 0 003 & 02338615 a 0000 + 05097361 n 0201 + 14435445 n 0101 | standing above others in quality or position; "people in high places"; "the high priest"; "eminent members of the community" -02339341 00 s 02 leading(a) 0 preeminent 0 002 & 02338615 a 0000 + 14435445 n 0203 | greatest in importance or degree or significance or achievement; "our greatest statesmen"; "the country's leading poet"; "a preeminent archeologist" -02339577 00 s 03 high-level 0 high-ranking 0 upper-level 0 001 & 02338615 a 0000 | at an elevated level in rank or importance; "a high-level official"; "a high-level corporate briefing"; "upper-level management" -02339791 00 s 02 majestic 0 olympian 0 001 & 02338615 a 0000 | majestic in manner or bearing; superior to mundane matters; "his majestic presence"; "olympian detachment"; "olympian beauty and serene composure" -02340003 00 s 01 superordinate 0 001 & 02338615 a 0000 | of higher rank or status or value -02340096 00 s 01 upper 0 001 & 02338615 a 0000 | superior in rank or accomplishment; "the upper half of the class" -02340213 00 a 01 inferior 1 009 ^ 01206474 a 0000 ^ 01212469 a 0000 ^ 00792991 a 0000 ! 02338615 a 0101 & 02340458 a 0000 & 02340710 a 0000 & 02340878 a 0000 & 02341014 a 0000 & 02341132 a 0000 | of or characteristic of low rank or importance -02340458 00 s 05 humble 0 low 0 lowly 0 modest 0 small 0 003 & 02340213 a 0000 + 13951215 n 0202 + 14436438 n 0101 | low or inferior in station or quality; "a humble cottage"; "a lowly parish priest"; "a modest man of the people"; "small beginnings" -02340710 00 s 01 indifferent 0 001 & 02340213 a 0000 | fairly poor to not very good; "has an indifferent singing voice"; "has indifferent qualifications for the job" -02340878 00 s 01 low-level 0 001 & 02340213 a 0000 | at a low level in rank or importance; "a low-level job"; "low-level discussions" -02341014 00 s 01 middle-level 0 001 & 02340213 a 0000 | intermediate in rank or position; "middle-level management" -02341132 00 s 01 outclassed 0 001 & 02340213 a 0000 | decisively surpassed by something else so as to appear to be of a lower class -02341266 00 a 01 superior 2 025 ^ 00227507 a 0000 = 04728068 n 0000 + 04728376 n 0101 ! 02345272 a 0101 & 02341864 a 0000 & 02342196 a 0000 & 02342309 a 0000 & 02342463 a 0000 & 02342608 a 0000 & 02342778 a 0000 & 02342899 a 0000 & 02343110 a 0000 & 02343378 a 0000 & 02343517 a 0000 & 02343636 a 0000 & 02343762 a 0000 & 02343931 a 0000 & 02344070 a 0000 & 02344241 a 0000 & 02344381 a 0000 & 02344512 a 0000 & 02344672 a 0000 & 02344793 a 0000 & 02344998 a 0000 & 02345194 a 0000 | of high or superior quality or performance; "superior wisdom derived from experience"; "superior math students" -02341864 00 s 09 ace 0 A-one 0 crack 0 first-rate 0 super 0 tiptop 0 topnotch 0 top-notch 0 tops(p) 0 002 & 02341266 a 0000 ;u 07075172 n 0000 | of the highest quality; "an ace reporter"; "a crack shot"; "a first-rate golfer"; "a super party"; "played top-notch tennis"; "an athlete in tiptop condition"; "she is absolutely tops" -02342196 00 s 01 banner 1 001 & 02341266 a 0000 | unusually good; outstanding; "a banner year for the company" -02342309 00 s 02 blue-ribbon(a) 0 select 1 001 & 02341266 a 0000 | selected or chosen for special qualifications; "the blue-ribbon event of the season" -02342463 00 s 02 boss 0 brag 0 002 & 02341266 a 0000 ;u 07075172 n 0000 | exceptionally good; "a boss hand at carpentry"; "his brag cornfield" -02342608 00 s 02 brilliant 0 superb 0 003 & 02341266 a 0000 + 04954920 n 0103 + 04814238 n 0102 | of surpassing excellence; "a brilliant performance"; "a superb actor" -02342778 00 s 01 capital 0 002 & 02341266 a 0000 ;r 08860123 n 0000 | first-rate; "a capital fellow"; "a capital idea" -02342899 00 s 05 choice 0 prime(a) 0 prize 0 quality 0 select 2 002 & 02341266 a 0000 + 04728604 n 0102 | of superior grade; "choice wines"; "prime beef"; "prize carnations"; "quality paper"; "select peaches" -02343110 00 s 04 excellent 0 first-class 1 fantabulous 0 splendid 0 004 & 02341266 a 0000 + 05851744 n 0102 + 04728786 n 0101 + 02673965 v 0101 | very good;of the highest quality; "made an excellent speech"; "the school has excellent teachers"; "a first-class mind" -02343378 00 s 01 gilt-edged 0 001 & 02341266 a 0000 | of the highest quality or value; "gilt-edged securities"; "gilt-edged credentials" -02343517 00 s 03 greatest 0 sterling(a) 0 superlative 0 002 & 02341266 a 0000 + 13940456 n 0307 | highest in quality -02343636 00 s 01 high-performance 0 001 & 02341266 a 0000 | modified to give superior performance; "a high-performance car" -02343762 00 s 01 outstanding 0 001 & 02341266 a 0000 | distinguished from others in excellence; "did outstanding work in human relations"; "an outstanding war record" -02343931 00 s 01 premium 0 001 & 02341266 a 0000 | having or reflecting superior quality or value; "premium gasoline at a premium price" -02344070 00 s 02 pukka 0 pucka 0 002 & 02341266 a 0000 ;r 08900535 n 0000 | absolutely first class and genuine; "pukka sahib"; "pukka quarters with a swarm of servants" -02344241 00 s 01 shining 0 001 & 02341266 a 0000 | marked by exceptional merit; "had shining virtues and few faults"; "a shining example" -02344381 00 s 01 spiffing 0 002 & 02341266 a 0000 ;r 08860123 n 0000 | excellent or splendid; "that's a perfectly spiffing idea" -02344512 00 s 01 supreme 0 001 & 02341266 a 0000 | highest in excellence or achievement; "supreme among musicians"; "a supreme endxxeavor"; "supreme courage" -02344672 00 s 03 top-flight 0 top-hole 0 topping 0 002 & 02341266 a 0000 ;r 08860123 n 0000 | excellent; best possible -02344793 00 s 02 transcendent 0 surpassing 0 005 & 02341266 a 0000 + 13950440 n 0102 + 13950440 n 0101 + 02669081 v 0102 + 02669477 v 0102 | exceeding or surpassing usual limits especially in excellence -02344998 00 s 01 weapons-grade 0 001 & 02341266 a 0000 | of a quality adequate for use in weapons (especially in weapons of mass destruction); "weapons-grade plutonium"; "weapons-grade anthrax" -02345194 00 s 01 well-made 0 001 & 02341266 a 0000 | skillfully constructed -02345272 00 a 01 inferior 2 021 ^ 00229630 a 0000 = 04728068 n 0000 + 04730580 n 0101 ! 02341266 a 0101 & 02345713 a 0000 & 02345859 a 0000 & 02346013 a 0000 & 02346242 a 0000 & 02346351 a 0000 & 02346557 a 0000 & 02346785 a 0000 & 02346878 a 0000 & 02347086 a 0000 & 02347371 a 0000 & 02347489 a 0000 & 02347564 a 0000 & 02347742 a 0000 & 02347915 a 0000 & 02348140 a 0000 & 02348285 a 0000 & 02348376 a 0000 | of low or inferior quality -02345713 00 s 01 bad 0 002 & 02345272 a 0000 + 05144079 n 0102 | below average in quality or performance; "a bad chess player"; "a bad recital" -02345859 00 s 01 base 0 001 & 02345272 a 0000 | (used of metals) consisting of or alloyed with inferior metal; "base coins of aluminum"; "a base metal" -02346013 00 s 08 bum 0 cheap 0 cheesy 0 chintzy 0 crummy 0 punk 0 sleazy 0 tinny 0 006 & 02345272 a 0000 ;u 07075172 n 0000 + 04816761 n 0704 + 04818460 n 0704 + 04818460 n 0201 + 10539715 n 0107 | of very poor quality; flimsy -02346242 00 s 02 bush-league 0 bush 0 001 & 02345272 a 0000 | not of the highest quality or sophistication -02346351 00 s 03 cheapjack 0 shoddy 0 tawdry 0 003 & 02345272 a 0000 + 04818700 n 0307 + 05140593 n 0201 | cheap and shoddy; "cheapjack moviemaking...that feeds on the low taste of the mob"- Judith Crist -02346557 00 s 02 coarse 0 common 0 002 & 02345272 a 0000 + 04817280 n 0202 | of low or inferior quality or value; "of what coarse metal ye are molded"- Shakespeare; "produced...the common cloths used by the poorer population" -02346785 00 s 01 coarsened 0 001 & 02345272 a 0000 | made coarse or crude by lack of skill -02346878 00 s 02 commercial 0 commercial-grade 0 002 & 02345272 a 0000 + 01090446 n 0101 | of the kind or quality used in commerce; average or inferior; "commercial grade of beef"; "commercial oxalic acid" -02347086 00 s 05 deplorable 0 execrable 0 miserable 0 woeful 0 wretched 0 003 & 02345272 a 0000 + 04731309 n 0501 + 14448333 n 0303 | of very poor quality or condition; "deplorable housing conditions in the inner city"; "woeful treatment of the accused"; "woeful errors of judgment" -02347371 00 s 01 less 0 001 & 02345272 a 0000 | (usually preceded by `no') lower in quality; "no less than perfect" -02347489 00 s 01 low-grade 0 001 & 02345272 a 0000 | of inferior quality -02347564 00 s 02 mediocre 0 second-rate 0 002 & 02345272 a 0000 + 10569179 n 0102 | moderate to inferior in quality; "they improved the quality from mediocre to above average" -02347742 00 s 02 ropey 0 ropy 0 003 & 02345272 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) very poor in quality; "ropey food"; "a ropey performance" -02347915 00 s 03 scrawny 0 scrubby 0 stunted 0 004 & 02345272 a 0000 + 05107495 n 0303 + 04730985 n 0202 + 04730985 n 0101 | inferior in size or quality; "scrawny cattle"; "scrubby cut-over pine"; "old stunted thorn trees" -02348140 00 s 01 second-class 0 001 & 02345272 a 0000 | of inferior status or quality; "a second-class citizen"; "second-class accommodations" -02348285 00 s 01 third-rate 0 001 & 02345272 a 0000 | of lesser quality than second-rate -02348376 00 s 02 utility(a) 0 utility-grade 0 001 & 02345272 a 0000 | used of beef; usable but inferior -02348482 00 a 01 superior 3 002 ;c 06095022 n 0000 ! 02348678 a 0101 | having an orbit farther from the sun than the Earth's orbit; "Mars and Jupiter are the closest in of the superior planets" -02348678 00 a 01 inferior 3 002 ;c 06095022 n 0000 ! 02348482 a 0101 | having an orbit between the sun and the Earth's orbit; "Mercury and Venus are inferior planets" -02348847 00 a 01 superjacent 0 004 ! 02349477 a 0101 & 02349003 a 0000 & 02349149 a 0000 & 02349274 a 0000 | lying immediately above or on something else -02349003 00 s 01 incumbent 0 002 & 02348847 a 0000 ;c 06115701 n 0000 | lying or leaning on something else; "an incumbent geological formation" -02349149 00 s 02 overlying 0 superimposed 0 001 & 02348847 a 0000 | placed on or over something else; "an overlying image" -02349274 00 s 01 superincumbent 0 001 & 02348847 a 0000 | lying or resting on and exerting pressure on something else; "superincumbent layers of dead plants cut off the air and arrested decomposition" -02349477 00 a 01 subjacent 0 002 ! 02348847 a 0101 & 02349604 a 0000 | lying nearby but lower; "hills and subjacent valleys" -02349604 00 s 01 underlying 0 001 & 02349477 a 0000 | located beneath or below -02349685 00 a 02 superscript 0 superior 0 003 ;c 06677302 n 0000 ! 02349852 a 0101 ! 02350035 a 0101 | written or printed above and to one side of another character -02349852 00 a 02 subscript 0 inferior 0 004 ;c 06677302 n 0000 + 06820212 n 0101 ! 02350035 a 0101 ! 02349685 a 0101 | written or printed below and to one side of another character -02350035 00 a 01 adscript 0 003 ;c 06677302 n 0000 ! 02349685 a 0101 ! 02349852 a 0101 | written or printed immediately following another character and aligned with it -02350205 00 a 01 supervised 0 001 ! 02350353 a 0101 | under observation or under the direction of a superintendent or overseer; "supervised play" -02350353 00 a 01 unsupervised 0 002 ! 02350205 a 0101 & 02350590 a 0000 | not supervised or under constant observation; "the school maintains unsupervised study halls during free periods"; "reliable workers are generally unsupervised" -02350590 00 s 01 unattended 0 001 & 02350353 a 0000 | not watched; "she dashed out leaving the bar unattended"; "a fire left unattended" -02350729 00 a 01 supported 0 009 ! 02352301 a 0101 & 02351064 a 0000 & 02351149 a 0000 & 02351246 a 0000 & 02351370 a 0000 & 02351490 a 0000 & 02351692 a 0000 & 02351988 a 0000 & 02352153 a 0000 | held up or having the weight borne especially from below; "supported joints in a railroad track have ties directly under the rail ends" -02351064 00 s 01 based 0 001 & 02350729 a 0000 | having a base; "firmly based ice" -02351149 00 s 02 braced 0 buttressed 0 001 & 02350729 a 0000 | held up by braces or buttresses -02351246 00 s 01 gimbaled 0 001 & 02350729 a 0000 | supported on gimbals and remaining steady or level when the base tips -02351370 00 s 03 pendent 0 pendant 0 dependent 0 001 & 02350729 a 0000 | held from above; "a pendant bunch of grapes" -02351490 00 s 01 supernatant 0 003 & 02350729 a 0000 ;c 06084469 n 0000 + 09451103 n 0101 | of a liquid; floating on the surface above a sediment or precipitate; "the supernatant fat was skimmed off" -02351692 00 s 01 suspended 1 001 & 02350729 a 0000 | (of undissolved particles in a fluid) supported or kept from sinking or falling by buoyancy and without apparent attachment; "suspended matter such as silt or mud..."; "dust particles suspended in the air"; "droplets in suspension in a gas" -02351988 00 s 01 underhung 0 001 & 02350729 a 0000 | supported from below especially resting on a track instead of suspended from above; "underhung sliding doors" -02352153 00 s 01 underslung 0 001 & 02350729 a 0000 | supported from above especially in a vehicle having springs attached to the axle from below -02352301 00 a 01 unsupported 0 003 ! 02350729 a 0101 & 02352472 a 0000 & 02352572 a 0000 | not held up or borne; "removal of the central post left the roof unsupported" -02352472 00 s 01 strapless 0 001 & 02352301 a 0000 | having no straps; "a strapless evening gown" -02352572 00 s 01 unbraced 0 001 & 02352301 a 0000 | without braces or props -02352650 00 a 01 supported 2 002 ! 02353026 a 0101 & 02352868 a 0000 | sustained or maintained by aid (as distinct from physical support); "a club entirely supported by membership dues"; "well-supported allegations" -02352868 00 s 02 subsidized 0 subsidised 0 001 & 02352650 a 0000 | having partial financial support from public funds; "lived in subsidized public housing" -02353026 00 a 01 unsupported 2 004 ! 02352650 a 0101 & 02353211 a 0000 & 02353488 a 0000 & 02353599 a 0000 | not sustained or maintained by nonmaterial aid; "unsupported accusations" -02353211 00 s 06 baseless 0 groundless 0 idle 0 unfounded 0 unwarranted 0 wild 0 002 & 02353026 a 0000 + 05140086 n 0302 | without a basis in reason or fact; "baseless gossip"; "the allegations proved groundless"; "idle fears"; "unfounded suspicions"; "unwarranted jealousy" -02353488 00 s 03 single-handed 0 unassisted 0 unbacked 0 001 & 02353026 a 0000 | unsupported by other people -02353599 00 s 02 uncorroborated 0 unsubstantiated 0 001 & 02353026 a 0000 | unsupported by other evidence -02353707 00 a 02 assisted 0 aided 0 003 ! 02354129 a 0101 & 02353849 a 0000 & 02354001 a 0000 | having help; often used as a combining form -02353849 00 s 01 motor-assisted 0 001 & 02353707 a 0000 | relying on an engine for propulsion in addition to muscle power; "a motor-assisted bicycle" -02354001 00 s 01 power-assisted 0 001 & 02353707 a 0000 | supplementing or replacing manual effort; "power-assisted steering" -02354129 00 a 01 unassisted 0 003 ! 02353707 a 0101 & 02354234 a 0000 & 02354403 a 0000 | lacking help -02354234 00 s 01 naked 0 001 & 02354129 a 0000 | (of the eye or ear e.g.) without the aid of an optical or acoustical device or instrument; "visible to the naked eye" -02354403 00 s 01 unaided 0 001 & 02354129 a 0000 | carried out without aid or assistance; "his first unaided walk through the park" -02354537 00 a 01 supportive 0 011 ^ 01817500 a 0000 + 02453889 v 0106 + 02556126 v 0101 + 00895304 v 0102 ! 02356430 a 0101 & 02354897 a 0000 & 02355248 a 0000 & 02355398 a 0000 & 02355521 a 0000 & 02356048 a 0000 & 02356244 a 0000 | furnishing support or assistance; "a supportive family network"; "his family was supportive of his attempts to be a writer" -02354897 00 s 06 accessory 0 adjunct 0 ancillary 0 adjuvant 0 appurtenant 0 auxiliary 0 006 & 02354537 a 0000 + 09780249 n 0602 + 02653706 v 0502 + 02671421 n 0502 + 09188229 n 0201 + 02671421 n 0101 | furnishing added support; "an ancillary pump"; "an adjuvant discipline to forms of mysticism"; "The mind and emotions are auxiliary to each other" -02355248 00 s 02 accessary 0 accessory 1 001 & 02354537 a 0000 | aiding and abetting in a crime; "he was charged with being accessory to the crime" -02355398 00 s 01 certificatory 0 002 & 02354537 a 0000 + 02444662 v 0103 | serving to certify or endorse authoritatively -02355521 00 s 0c collateral 0 confirmative 0 confirming 0 confirmatory 0 corroborative 0 corroboratory 0 substantiating 0 substantiative 0 validating 0 validatory 0 verificatory 0 verifying 0 015 & 02354537 a 0000 + 00664483 v 0b01 + 01012561 v 0a01 + 00667224 v 0a01 + 00665886 v 0804 + 02663340 v 0601 + 01012561 v 0602 + 00665886 v 0602 + 02663340 v 0501 + 01012561 v 0502 + 00665886 v 0502 + 01012073 v 0401 + 00665886 v 0401 + 00665886 v 0201 + 13352865 n 0101 | serving to support or corroborate; "collateral evidence" -02356048 00 s 01 demonstrative_of(p) 0 001 & 02354537 a 0000 | serving to prove or demonstrate; "the oath of office is...demonstrative of the legislative opinion on this subject"- John Marshall -02356244 00 s 02 encouraging 0 supporting 0 001 & 02354537 a 0000 | furnishing support and encouragement; "the anxious child needs supporting and accepting treatment from the teacher" -02356430 00 a 01 unsupportive 0 004 ^ 01818234 a 0000 ! 02354537 a 0101 & 02356579 a 0000 & 02356712 a 0000 | not furnishing support or assistance -02356579 00 s 02 confounding 0 contradictory 0 002 & 02356430 a 0000 + 02663141 v 0201 | that confounds or contradicts or confuses -02356712 00 s 02 disconfirming 0 invalidating 0 001 & 02356430 a 0000 | establishing as invalid or untrue -02356820 00 a 01 surmountable 0 003 ^ 00569090 a 0000 ! 02357115 a 0101 & 02357006 a 0000 | capable of being surmounted or overcome; "situations of measurable and surmountable danger" -02357006 00 s 02 conquerable 0 superable 0 001 & 02356820 a 0000 | capable of being surmounted or excelled -02357115 00 a 02 insurmountable 0 unsurmountable 0 004 ^ 01823092 a 0000 ^ 00569568 a 0000 ! 02356820 a 0101 & 02357322 a 0000 | not capable of being surmounted or overcome; "insurmountable disadvantages" -02357322 00 s 02 insuperable 0 unconquerable 0 001 & 02357115 a 0000 | incapable of being surmounted or excelled; "insuperable odds"; "insuperable heroes" -02357479 00 a 01 surprised 0 007 ! 02359308 a 0101 & 02357810 a 0000 & 02358277 a 0000 & 02358650 a 0000 & 02358762 a 0000 & 02358898 a 0000 & 02359051 a 0000 | taken unawares or suddenly and feeling wonder or astonishment; "surprised by her student's ingenuity"; "surprised that he remembered my name"; "a surprised expression" -02357810 00 s 05 amazed 0 astonied 0 astonished 0 astounded 0 stunned 0 001 & 02357479 a 0000 | filled with the emotional impact of overwhelming surprise or shock; "an amazed audience gave the magician a standing ovation"; "I stood enthralled, astonished by the vastness and majesty of the cathedral"; "astounded viewers wept at the pictures from the Oklahoma City bombing"; "stood in stunned silence"; "stunned scientists found not one but at least three viruses" -02358277 00 s 07 dumbfounded 0 dumfounded 0 flabbergasted 0 stupefied 0 thunderstruck 0 dumbstruck 0 dumbstricken 0 001 & 02357479 a 0000 | as if struck dumb with astonishment and surprise; "a circle of policement stood dumbfounded by her denial of having seen the accident"; "the flabbergasted aldermen were speechless"; "was thunderstruck by the news of his promotion" -02358650 00 s 01 gobsmacked 0 003 & 02357479 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | utterly astounded -02358762 00 s 03 goggle-eyed 0 openmouthed 0 popeyed 0 002 & 02357479 a 0000 ;u 07075172 n 0000 | with eyes or mouth open in surprise -02358898 00 s 01 jiggered 0 003 & 02357479 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal expletive) surprised; "Well I'm jiggered!" -02359051 00 s 01 startled 0 001 & 02357479 a 0000 | excited by sudden surprise or alarm and making a quick involuntary movement; "students startled by the teacher's quiet return"; "the sudden fluttering of the startled pigeons"; "her startled expression" -02359308 00 a 02 unsurprised 0 not_surprised 0 001 ! 02357479 a 0101 | not surprised or expressing surprise; "that unsuprised obstinate look on his face" -02359464 00 a 01 surprising 0 006 ^ 00930290 a 0000 + 04796725 n 0102 ! 02360351 a 0101 & 02359789 a 0000 & 02359958 a 0000 & 02360171 a 0000 | causing surprise or wonder or amazement; "the report shows a surprising lack of hard factual data"; "leaped up with surprising agility"; "she earned a surprising amount of money" -02359789 00 s 02 amazing 0 astonishing 0 001 & 02359464 a 0000 | surprising greatly; "she does an amazing amount of work"; "the dog was capable of astonishing tricks" -02359958 00 s 01 startling 0 001 & 02359464 a 0000 | so remarkably different or sudden as to cause momentary shock or alarm; "Sydney's startling new Opera House"; "startling news"; "startling earthquake shocks" -02360171 00 s 01 stunning 0 001 & 02359464 a 0000 | causing great astonishment and consternation; "the strike came as a stunning protest against management"; "a stunning defeat" -02360351 00 a 01 unsurprising 0 002 ^ 00929567 a 0000 ! 02359464 a 0101 | not causing surprise -02360448 00 a 01 susceptible 0 019 ^ 02103481 a 0000 ^ 01886407 a 0000 ^ 02523275 a 0000 = 14530061 n 0000 + 14530061 n 0102 + 14530061 n 0101 ! 02363358 a 0101 & 02360944 a 0000 & 02361325 a 0000 & 02361540 a 0000 & 02361848 a 0000 & 02362030 a 0000 & 02362178 a 0000 & 02362348 a 0000 & 02362499 a 0000 & 02362708 a 0000 & 02362904 a 0000 & 02363093 a 0000 & 02363166 a 0000 | (often followed by `of' or `to') yielding readily to or capable of; "susceptible to colds"; "susceptible of proof" -02360944 00 s 09 allergic 0 hypersensitive 0 hypersensitized 0 hypersensitised 0 sensitized 0 sensitised 0 supersensitive 0 supersensitized 0 supersensitised 0 004 & 02360448 a 0000 + 14533796 n 0201 + 05653475 n 0201 + 14532816 n 0101 | having an allergy or peculiar or excessive susceptibility (especially to a specific factor); "allergic children"; "hypersensitive to pollen" -02361325 00 s 01 amenable 1 001 & 02360448 a 0000 | open to being acted upon in a certain way; "an amenable hospitalization should not result in untimely death"; "the tumor was not amenable to surgical treatment" -02361540 00 s 03 capable 0 open 0 subject 0 002 & 02360448 a 0000 + 14530836 n 0101 | possibly accepting or permitting; "a passage capable of misinterpretation"; "open to interpretation"; "an issue open to question"; "the time is fixed by the director and players and therefore subject to much variation" -02361848 00 s 04 convincible 0 persuadable 0 persuasible 0 suasible 0 004 & 02360448 a 0000 + 02586121 v 0302 + 00766418 v 0301 + 00769553 v 0103 | being susceptible to persuasion -02362030 00 s 02 fictile 0 pliable 0 001 & 02360448 a 0000 | susceptible to being led or directed; "fictile masses of people ripe for propaganda" -02362178 00 s 04 liable(p) 0 nonimmune 0 nonresistant 0 unresistant 0 001 & 02360448 a 0000 | (often followed by `to') likely to be affected with; "liable to diabetes" -02362348 00 s 01 predisposed 0 001 & 02360448 a 0000 | made susceptible; "because of conditions in the mine, miners are predisposed to lung disease" -02362499 00 s 02 amenable 0 tractable 0 005 & 02360448 a 0000 + 04905188 n 0202 + 04905188 n 0201 + 04906026 n 0101 + 04906026 n 0102 | readily reacting to suggestions and influences; "a responsive student" -02362708 00 s 01 suggestible 0 005 & 02360448 a 0000 + 00927430 v 0102 + 00930806 v 0101 + 00875394 v 0102 + 14534571 n 0101 | susceptible or responsive to suggestion; "suggestible young minds" -02362904 00 s 01 temptable 0 007 & 02360448 a 0000 + 01807770 v 0101 + 01807529 v 0101 + 00782527 v 0103 + 00784184 v 0101 + 00793785 v 0101 + 00776523 v 0103 | susceptible to temptation -02363093 00 s 01 unvaccinated 0 001 & 02360448 a 0000 | not vaccinated -02363166 00 s 01 vulnerable 0 002 & 02360448 a 0000 + 14543931 n 0101 | susceptible to criticism or persuasion or temptation; "vulnerable to bribery"; "an argument vulnerable to refutation" -02363358 00 a 02 unsusceptible 0 insusceptible 0 010 ^ 02105375 a 0000 = 14530061 n 0000 + 14526764 n 0101 ! 02360448 a 0101 & 02363614 a 0000 & 02363811 a 0000 & 02363939 a 0000 & 02364066 a 0000 & 02364245 a 0000 & 02364347 a 0000 | not susceptible to -02363614 00 s 02 immune 0 resistant 0 005 & 02363358 a 0000 + 14527171 n 0202 + 05213894 n 0201 + 02755017 v 0201 + 14527171 n 0101 | relating to or conferring immunity (to disease or infection) -02363811 00 s 03 immunized 0 immunised 0 vaccinated 0 001 & 02363358 a 0000 | having been rendered unsusceptible to a disease -02363939 00 s 01 immunogenic 0 002 & 02363358 a 0000 + 14527430 n 0101 | possessing the ability to elicit an immune response -02364066 00 s 01 incapable(p) 0 002 & 02363358 a 0000 + 05207570 n 0101 | not being susceptible to or admitting of something (usually followed by `of'); "incapable of solution" -02364245 00 s 02 unpersuadable 0 unsuasible 0 001 & 02363358 a 0000 | not susceptible to persuasion -02364347 00 s 01 unresponsive 0 001 & 02363358 a 0000 | not susceptible to suggestion or influence -02364448 00 a 03 impressionable 0 waxy 0 impressible 0 006 + 01767949 v 0302 ! 02365264 a 0101 & 02364721 a 0000 & 02364834 a 0000 & 02364954 a 0000 & 02365142 a 0000 | easily impressed or influenced; "an impressionable youngster"; "an impressionable age"; "a waxy mind" -02364721 00 s 01 easy 0 001 & 02364448 a 0000 | readily exploited or tricked; "an easy victim"; "an easy mark" -02364834 00 s 01 spinnable 0 001 & 02364448 a 0000 | capable or susceptible to being influenced by biased information -02364954 00 s 02 plastic 0 pliant 0 003 & 02364448 a 0000 + 04659730 n 0203 + 04659730 n 0202 | capable of being influenced or formed; "the plastic minds of children"; "a pliant nature" -02365142 00 s 01 susceptible 0 003 & 02364448 a 0000 + 14530061 n 0102 + 14530061 n 0101 | easily impressed emotionally -02365264 00 a 01 unimpressionable 0 001 ! 02364448 a 0101 | not sensitive or susceptible to impression; "an unimpressionable mind" -02365397 00 a 01 exempt 0 004 ! 02366200 a 0101 & 02365776 a 0000 & 02365900 a 0000 & 02366078 a 0000 | (of persons) freed from or not subject to an obligation or liability (as e.g. taxes) to which others or other things are subject; "a beauty somehow exempt from the aging process"; "exempt from jury duty"; "only the very poorest citizens should be exempt from income taxes" -02365776 00 s 01 excused 0 001 & 02365397 a 0000 | granted exemption; "one of the excused jurors planned to write a book" -02365900 00 s 01 immune 0 002 & 02365397 a 0000 + 00213903 n 0102 | secure against; "immune from taxation as long as he resided in Bermuda"; "immune from criminal prosecution" -02366078 00 s 01 privileged 0 001 & 02365397 a 0000 | not subject to usual rules or penalties; "a privileged statement" -02366200 00 a 01 nonexempt 0 004 ! 02365397 a 0101 & 02366365 a 0000 & 02366474 a 0000 & 02366618 a 0000 | (of persons) not exempt from an obligation or liability -02366365 00 s 01 liable(p) 1 001 & 02366200 a 0000 | subject to legal action; "liable to criminal charges" -02366474 00 s 01 taxpaying 0 001 & 02366200 a 0000 | not exempt from paying taxes; "after training they became productive taxpaying citizens" -02366618 00 s 01 unexcused 0 001 & 02366200 a 0000 | not excused; "too many unexcused absences" -02366716 00 a 01 scheduled 0 002 ! 02367095 a 0101 & 02366927 a 0000 | planned or scheduled for some certain time or times; "the scheduled meeting"; "the scheduled flights had to be cancelled because of snow" -02366927 00 s 01 regular 0 002 & 02366716 a 0000 + 04767347 n 0101 | regularly scheduled for fixed times; "at a regular meeting of the PTA"; "regular bus departures" -02367095 00 a 01 unscheduled 0 003 ! 02366716 a 0101 & 02367319 a 0000 & 02367477 a 0000 | not scheduled or not on a regular schedule; "an unscheduled meeting"; "the plane made an unscheduled stop at Gander for refueling" -02367319 00 s 02 extra 0 special 0 001 & 02367095 a 0000 | added to a regular schedule; "a special holiday flight"; "put on special buses for the big game" -02367477 00 s 01 forced 0 001 & 02367095 a 0000 | made necessary by an unexpected situation or emergency; "a forced landing" -02367604 00 a 01 sweet 1 004 ^ 02337667 a 0000 ^ 02368336 a 0000 + 04994413 n 0101 ! 02367785 a 0101 | (used of wines) having a high residual sugar content; "sweet dessert wines" -02367785 00 a 01 dry 3 006 ^ 02368787 a 0000 ^ 02338327 a 0000 ! 02367604 a 0101 & 02368068 a 0000 & 02368147 a 0000 & 02368247 a 0000 | (of liquor) having a low residual sugar content because of decomposition of sugar during fermentation; "a dry white burgundy"; "a dry Bordeaux" -02368068 00 s 01 brut 0 001 & 02367785 a 0000 | (of champagne) extremely dry -02368147 00 s 01 medium-dry 0 001 & 02367785 a 0000 | of a wine that is dry but not extremely dry -02368247 00 s 02 sec 0 unsweet 0 001 & 02367785 a 0000 | (of champagne) moderately dry -02368336 00 a 01 sweet 2 008 ^ 02337667 a 0000 ^ 02367604 a 0000 ^ 02395115 a 0000 + 05716577 n 0102 + 04994413 n 0101 ! 02368787 a 0101 & 02368566 a 0000 & 02368718 a 0000 | having or denoting the characteristic taste of sugar -02368566 00 s 04 cloying 0 saccharine 0 syrupy 0 treacly 0 004 & 02368336 a 0000 + 07860208 n 0401 + 06775969 n 0401 + 04994614 n 0201 | overly sweet -02368718 00 s 01 sweetish 0 001 & 02368336 a 0000 | somewhat sweet -02368787 00 a 01 sour 0 010 ^ 02367785 a 0000 ^ 02369763 a 0000 ^ 02395115 a 0000 + 04993882 n 0101 ! 02368336 a 0101 & 02369027 a 0000 & 02369179 a 0000 & 02369335 a 0000 & 02369460 a 0000 & 02369683 a 0000 | having a sharp biting taste -02369027 00 s 03 acerb 0 acerbic 0 astringent 0 004 & 02368787 a 0000 + 05717549 n 0301 + 05717549 n 0302 + 04994126 n 0201 | sour or bitter in taste -02369179 00 s 04 acetose 0 acetous 0 vinegary 0 vinegarish 0 003 & 02368787 a 0000 + 04994264 n 0402 + 04994264 n 0301 | tasting or smelling like vinegar -02369335 00 s 04 acidic 0 acid 0 acidulent 0 acidulous 0 002 & 02368787 a 0000 + 05716961 n 0402 | being sour to the taste -02369460 00 s 05 lemony 0 lemonlike 0 sourish 0 tangy 0 tart 0 007 & 02368787 a 0000 + 05716744 n 0503 + 04994126 n 0502 + 05715864 n 0409 + 04993108 n 0406 + 07749582 n 0101 + 05716342 n 0101 | tasting sour like a lemon -02369683 00 s 01 subacid 0 001 & 02368787 a 0000 | slightly sour to the taste -02369763 00 a 01 soured 0 003 ^ 02368787 a 0000 ! 02369989 a 0101 & 02369869 a 0000 | having turned bad -02369869 00 s 03 off 0 sour 0 turned 0 002 & 02369763 a 0000 + 04993882 n 0201 | in an unpalatable state; "sour milk" -02369989 00 a 01 unsoured 0 002 ! 02369763 a 0101 & 02370083 a 0000 | not having turned bad -02370083 00 s 03 fresh 0 sweet 0 unfermented 0 002 & 02369989 a 0000 + 04926728 n 0101 | not soured or preserved; "sweet milk" -02370212 00 a 01 suspected 0 001 ! 02370329 a 0101 | believed likely; "a suspected thief"; "a suspected infection" -02370329 00 a 01 unsuspected 0 002 ! 02370212 a 0101 & 02370625 a 0000 | not suspected or believed likely; "remained unsuspected as the head of the spy ring"; "he was able to get into the building unspotted and unsuspected"; "unsuspected difficulties arose"; "unsuspected turnings in the road" -02370625 00 s 01 unknown 0 001 & 02370329 a 0000 | not known to exist; "things obscurely felt surged up from unknown depths" -02370752 00 a 01 swept 0 003 ! 02371215 a 0101 & 02370894 a 0000 & 02371077 a 0000 | possessing sweep; "the sleek swept wings of the plane" -02370894 00 s 01 sweptback 0 002 & 02370752 a 0000 ;c 02686568 n 0000 | (especially of aircraft wings) angled rearward from the point of attachment; "aircraft with sweptback wings" -02371077 00 s 01 sweptwing 0 002 & 02370752 a 0000 ;c 02686568 n 0000 | (of an aircraft) having sweptback wings; "a sweptwing aircraft" -02371215 00 a 01 unswept 0 001 ! 02370752 a 0101 | not swept or having sweep; "a boxy little plane with square unswept wings" -02371343 00 a 01 sworn 0 002 ! 02371583 a 0101 & 02371495 a 0000 | bound by or stated on oath; "now my sworn friend and then mine enemy"- Shakespeare -02371495 00 s 01 bound 0 001 & 02371343 a 0000 | bound by an oath; "a bound official" -02371583 00 a 01 unsworn 0 001 ! 02371343 a 0101 | not bound by or stated on oath; "the witness stands unsworn"; "unsworn testimony" -02371718 00 a 02 symmetrical 0 symmetric 0 015 ^ 01718158 a 0000 ^ 01959294 a 0000 + 13898315 n 0201 + 05064827 n 0201 + 05064827 n 0102 ! 02373599 a 0101 & 02372118 a 0000 & 02372303 a 0000 & 02372434 a 0000 & 02372520 a 0000 & 02372697 a 0000 & 02372951 a 0000 & 02373055 a 0000 & 02373309 a 0000 & 02373467 a 0000 | having similarity in size, shape, and relative position of corresponding parts -02372118 00 s 04 bilateral 0 isobilateral 0 bilaterally_symmetrical 0 bilaterally_symmetric 0 002 & 02371718 a 0000 + 05065386 n 0101 | having identical parts on each side of an axis -02372303 00 s 01 biradial 0 001 & 02371718 a 0000 | showing both bilateral and radial symmetry; "some sea anemones are biradial" -02372434 00 s 02 cruciate 0 cruciform 0 001 & 02371718 a 0000 | shaped like a cross -02372520 00 s 02 even 0 regular 0 003 & 02371718 a 0000 + 05065211 n 0201 + 04769456 n 0101 | symmetrically arranged; "even features"; "regular features"; "a regular polygon" -02372697 00 s 01 interchangeable 0 003 & 02371718 a 0000 ;c 06163751 n 0000 + 04735929 n 0103 | (mathematics, logic) such that the arguments or roles can be interchanged; "the arguments of the symmetric relation, `is a sister of,' are interchangeable" -02372951 00 s 01 isosceles 0 001 & 02371718 a 0000 | (of a triangle) having two sides of equal length -02373055 00 s 03 radial 0 stellate 0 radiate 0 001 & 02371718 a 0000 | arranged like rays or radii; radiating from a common center; "radial symmetry"; "a starlike or stellate arrangement of petals"; "many cities show a radial pattern of main highways" -02373309 00 s 02 radially_symmetrical 0 centrosymmetric 0 001 & 02371718 a 0000 | having a symmetrical arrangement of radiating parts about a central point -02373467 00 s 02 rhombohedral 0 trigonal 0 003 & 02371718 a 0000 ;c 06098876 n 0000 + 13915417 n 0101 | having threefold symmetry -02373599 00 a 02 asymmetrical 0 asymmetric 0 007 ^ 01960656 a 0000 + 05065717 n 0201 + 05065717 n 0101 ! 02371718 a 0101 & 02373868 a 0000 & 02373981 a 0000 & 02374259 a 0000 | characterized by asymmetry in the spatial arrangement or placement of parts or components -02373868 00 s 01 lopsided 0 001 & 02373599 a 0000 | having one side lower or smaller or lighter than the other -02373981 00 s 01 noninterchangeable 0 003 & 02373599 a 0000 ;c 06000644 n 0000 ;c 06163751 n 0000 | such that the terms of an expression cannot be interchanged without changing the meaning; "the arguments of the symmetric relation, `is the father of', are noninterchangeable" -02374259 00 s 02 unsymmetric 0 unsymmetrical 0 001 & 02373599 a 0000 | lacking symmetry -02374349 00 a 02 actinomorphic 0 actinomorphous 0 003 ;c 06037666 n 0000 ! 02374697 a 0101 & 02374557 a 0000 | capable of division into symmetrical halves by any longitudinal plane passing through the axis -02374557 00 s 01 actinoid 0 001 & 02374349 a 0000 | having a radial form; "starfish are actinoid--that is, they are radially symmetrical" -02374697 00 a 03 zygomorphic 0 bilaterally_symmetrical 0 zygomorphous 0 002 ;c 06037666 n 0000 ! 02374349 a 0101 | capable of division into symmetrical halves by only one longitudinal plane passing through the axis -02374914 00 a 01 sympathetic 0 009 ^ 00506299 a 0000 ^ 00560586 a 0000 ^ 01372049 a 0000 + 07553301 n 0101 + 06199142 n 0101 ! 02375828 a 0101 & 02375312 a 0000 & 02375491 a 0000 & 02375639 a 0000 | expressing or feeling or resulting from sympathy or compassion or friendly fellow feelings; disposed toward; "sympathetic to the students' cause"; "a sympathetic observer"; "a sympathetic gesture" -02375312 00 s 01 commiserative 0 002 & 02374914 a 0000 + 01822248 v 0101 | feeling or expressing sympathy; "made commiserative clicking sounds with his tongue"- Kenneth Roberts -02375491 00 s 01 condolent 0 002 & 02374914 a 0000 + 06633692 n 0101 | expressing sympathy with a person who experienced the death of a loved one -02375639 00 s 02 empathic 0 empathetic 0 002 & 02374914 a 0000 + 07554856 n 0201 | showing empathy or ready comprehension of others' states; "a sensitive and empathetic school counselor" -02375828 00 a 01 unsympathetic 0 005 ^ 00507053 a 0000 ^ 00561036 a 0000 ^ 01999766 a 0000 ! 02374914 a 0101 & 02376118 a 0000 | not sympathetic or disposed toward; "unsympathetic officialdom"; "people unsympathetic to the revolution"; "his dignity made him seem aloof and unsympathetic" -02376118 00 s 02 unsympathizing 0 unsympathising 0 001 & 02375828 a 0000 | not showing or expressing sympathy; "an uncharitable and unsympathizing attitude" -02376277 00 a 04 sympathetic 2 appealing 2 likeable 2 likable 2 005 ;c 06376154 n 0000 + 01776952 v 0401 + 01776952 v 0301 + 04687333 n 0202 ! 02376562 a 0101 | (of characters in literature or drama) evoking empathic or sympathetic feelings; "the sympathetic characters in the play" -02376562 00 a 04 unsympathetic 2 unappealing 2 unlikeable 2 unlikable 2 002 ;c 06376154 n 0000 ! 02376277 a 0101 | (of characters in literature or drama) tending to evoke antipathetic feelings; "all the characters were peculiarly unsympathetic" -02376809 00 a 01 sympatric 0 003 ;c 06037666 n 0000 + 13959463 n 0101 ! 02376995 a 0101 | (of biological species or speciation) occurring in the same or overlapping geographical areas -02376995 00 a 01 allopatric 0 003 ;c 06037666 n 0000 + 13959289 n 0101 ! 02376809 a 0101 | (of biological species or speciation) occurring in areas isolated geographically from one another -02377186 00 a 01 synchronic 0 003 ^ 02377651 a 0000 ;c 06282651 n 0000 ! 02377418 a 0101 | concerned with phenomena (especially language) at a particular period without considering historical antecedents; "synchronic linguistics" -02377418 00 a 02 diachronic 0 historical 4 004 ;c 06282651 n 0000 + 05170088 n 0201 + 06169050 n 0103 ! 02377186 a 0101 | used of the study of a phenomenon (especially language) as it changes through time; "diachronic linguistics" -02377651 00 a 03 synchronous 0 synchronal 0 synchronic 4 013 ^ 02377186 a 0000 + 13845239 n 0302 + 13845239 n 0303 + 13845239 n 0102 + 13845239 n 0104 ! 02379595 a 0101 & 02378191 a 0000 & 02378347 a 0000 & 02378496 a 0000 & 02378872 a 0000 & 02379157 a 0000 & 02379323 a 0000 & 02379455 a 0000 | occurring or existing at the same time or having the same period or phase; "recovery was synchronous with therapy"- Jour.A.M.A.; "a synchronous set of clocks"; "the synchronous action of a bird's wings in flight"; "synchronous oscillations" -02378191 00 s 03 coetaneous 0 coeval 0 contemporaneous 1 004 & 02377651 a 0000 + 05048948 n 0302 + 05048948 n 0301 + 09960417 n 0202 | of the same period -02378347 00 s 02 coexistent 0 coexisting 0 004 & 02377651 a 0000 + 13957268 n 0101 + 02604618 v 0101 + 02604477 v 0101 | existing at the same time -02378496 00 s 07 coincident 0 coincidental 0 coinciding 0 concurrent 0 co-occurrent 0 cooccurring 0 simultaneous 0 010 & 02377651 a 0000 + 05048123 n 0702 + 05048123 n 0701 + 05048301 n 0504 + 07284554 n 0504 + 05048301 n 0401 + 00345312 v 0401 + 05048301 n 0102 + 02660442 v 0101 + 00345312 v 0102 | occurring or operating at the same time; "a series of coincident events" -02378872 00 s 02 contemporaneous 2 contemporary 0 003 & 02377651 a 0000 + 05050668 n 0105 + 05048948 n 0101 | occurring in the same period of time; "a rise in interest rates is often contemporaneous with an increase in inflation"; "the composer Salieri was contemporary with Mozart" -02379157 00 s 01 parallel 0 002 & 02377651 a 0000 ;c 06128570 n 0000 | of or relating to the simultaneous performance of multiple operations; "parallel processing" -02379323 00 s 01 synchronic 2 002 & 02377651 a 0000 + 13845239 n 0103 | (of taxa) occurring in the same period of geological time -02379455 00 s 02 synchronized 0 synchronised 0 001 & 02377651 a 0000 | operating in unison; "the synchronized flapping of a bird's wings" -02379595 00 a 01 asynchronous 0 005 ! 02377651 a 0101 & 02379820 a 0000 & 02379925 a 0000 & 02380225 a 0000 & 02380358 a 0000 | not synchronous; not occurring or existing at the same time or having the same period or phase -02379820 00 s 01 allochronic 0 001 & 02379595 a 0000 | (of taxa) occurring in different geologic times -02379925 00 s 03 anachronic 0 anachronous 0 anachronistic 0 009 & 02379595 a 0000 + 15180304 n 0301 + 09606873 n 0301 + 02707036 n 0301 + 09606873 n 0201 + 02707036 n 0201 + 15180304 n 0101 + 09606873 n 0101 + 02707036 n 0101 | chronologically misplaced; "English public schools are anachronistic" -02380225 00 s 04 nonsynchronous 0 unsynchronized 0 unsynchronised 0 unsynchronous 0 001 & 02379595 a 0000 | not occurring together -02380358 00 s 03 serial 0 in_series(p) 0 nonparallel 0 003 & 02379595 a 0000 ;c 06128570 n 0000 + 13791910 n 0101 | of or relating to the sequential performance of multiple operations; "serial processing" -02380565 00 a 01 synchronous 1 001 ! 02380819 a 0101 | (digital communication) pertaining to a transmission technique that requires a common clock signal (a timing reference) between the communicating devices in order to coordinate their transmissions -02380819 00 a 01 asynchronous 1 001 ! 02380565 a 0101 | (digital communication) pertaining to a transmission technique that does not require a common clock between the communicating devices; timing signals are derived from special characters in the data stream itself -02381089 00 a 01 syndetic 0 002 ;c 06174404 n 0000 ! 02381189 a 0101 | connected by a conjunction -02381189 00 a 01 asyndetic 0 003 ;c 06174404 n 0000 + 07099135 n 0101 ! 02381089 a 0101 | lacking conjunctions -02381302 00 a 01 synonymous 0 006 + 06303682 n 0101 + 13808161 n 0103 + 13808161 n 0102 ! 02381764 a 0101 & 02381495 a 0000 & 02381613 a 0000 | (of words) meaning the same or nearly the same -02381495 00 s 01 similar 0 002 & 02381302 a 0000 + 04743605 n 0101 | (of words) expressing closely related meanings -02381613 00 s 01 substitutable 0 001 & 02381302 a 0000 | (of words) interchangeable in a given context without changing the import of the expression -02381764 00 a 01 antonymous 0 007 + 06288024 n 0101 ! 02381302 a 0101 & 02381963 a 0000 & 02382144 a 0000 & 02382396 a 0000 & 02382572 a 0000 & 02382762 a 0000 | of words: having opposite meanings -02381963 00 s 01 complementary 0 001 & 02381764 a 0000 | of words or propositions so related that each is the negation of the other; "`male' and `female' are complementary terms" -02382144 00 s 01 contradictory 0 004 & 02381764 a 0000 + 13857486 n 0101 + 02663141 v 0101 + 00823436 v 0101 | of words or propositions so related that both cannot be true and both cannot be false; "`perfect' and `imperfect' are contradictory terms" -02382396 00 s 01 contrary 0 001 & 02381764 a 0000 | of words or propositions so related that both cannot be true but both may be false; "`hot' and `cold' are contrary terms" -02382572 00 s 02 contrastive 0 incompatible 0 002 & 02381764 a 0000 + 02666882 v 0101 | of words so related that one contrasts with the other; "`rich' and `hard-up' are contrastive terms" -02382762 00 s 01 converse 0 001 & 02381764 a 0000 | of words so related that one reverses the relation denoted by the other; "`parental' and `filial' are converse terms" -02382934 00 a 01 systematic 0 004 ^ 01668340 a 0000 ^ 01959294 a 0000 + 04768657 n 0103 ! 02383151 a 0101 | characterized by order and planning; "the investigation was very systematic"; "a systematic administrator" -02383151 00 a 01 unsystematic 0 003 ^ 01668858 a 0000 ^ 01960656 a 0000 ! 02382934 a 0101 | lacking systematic arrangement or method or organization; "unsystematic and fragmentary records"; "he works in an unsystematic manner" -02383380 00 a 01 taciturn 0 006 ^ 00546646 a 0000 ^ 00500569 a 0000 + 04652438 n 0103 ! 02383831 a 0101 & 02383564 a 0000 & 02383709 a 0000 | habitually reserved and uncommunicative -02383564 00 s 01 buttoned-up 0 003 & 02383380 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British colloquial) not inclined to conversation -02383709 00 s 02 reticent 0 untalkative 0 002 & 02383380 a 0000 + 04652438 n 0102 | temperamentally disinclined to talk -02383831 00 a 01 voluble 0 005 ^ 00494907 a 0000 ^ 00548781 a 0000 + 04651195 n 0102 ! 02383380 a 0101 & 02384077 a 0000 | marked by a ready flow of speech; "she is an extremely voluble young woman who engages in soliloquies not conversations" -02384077 00 s 06 chatty 0 gabby 0 garrulous 0 loquacious 0 talkative 0 talky 0 008 & 02383831 a 0000 + 07223985 n 0601 + 04651382 n 0505 + 04651382 n 0403 + 04651382 n 0404 + 04651382 n 0302 + 04651382 n 0301 + 07135080 n 0205 | full of trivial conversation; "kept from her housework by gabby neighbors" -02384383 00 a 01 tactful 0 004 ^ 00638981 a 0000 + 04841810 n 0102 ! 02384843 a 0101 & 02384672 a 0000 | having or showing a sense of what is fitting and considerate in dealing with others; "she was tactful enough not to shatter his illusion"; "a tactful remark eased her embarrassment" -02384672 00 s 02 discerning 0 discreet 0 002 & 02384383 a 0000 + 04842029 n 0203 | unobtrusively perceptive and sympathetic; "a discerning editor"; "a discreet silence" -02384843 00 a 02 tactless 0 untactful 0 004 ^ 00639356 a 0000 ^ 00851103 a 0000 + 04846243 n 0101 ! 02384383 a 0101 | lacking or showing a lack of what is fitting and considerate in dealing with others; "in the circumstances it was tactless to ask her age" -02385102 00 a 01 tall 0 014 ^ 01382086 a 0000 ^ 01204557 a 0000 = 05002352 n 0000 + 05002540 n 0101 + 05137165 n 0102 ! 02386612 a 0101 & 02385492 a 0000 & 02385726 a 0000 & 02385851 a 0000 & 02386002 a 0000 & 02386125 a 0000 & 02386305 a 0000 & 02386418 a 0000 & 02386545 a 0000 | great in vertical dimension; high in stature; "tall people"; "tall buildings"; "tall trees"; "tall ships" -02385492 00 s 04 gangling 0 gangly 0 lanky 0 rangy 0 002 & 02385102 a 0000 + 04998700 n 0301 | tall and thin and having long slender limbs; "a gangling teenager"; "a lanky kid transformed almost overnight into a handsome young man" -02385726 00 s 01 in_height(p) 0 001 & 02385102 a 0000 | having a specified height; "five feet tall"; "five feet in height" -02385851 00 s 03 leggy 1 long-legged 0 long-shanked 0 004 & 02385102 a 0000 + 05561507 n 0101 + 05560787 n 0101 + 03654576 n 0101 | having long legs -02386002 00 s 02 leggy 2 tall-growing 0 002 & 02385102 a 0000 ;c 00017222 n 0000 | (of plants) having tall spindly stems -02386125 00 s 01 long 0 002 & 02385102 a 0000 + 05133287 n 0101 | of relatively great height; "a race of long gaunt men"- Sherwood Anderson; "looked out the long French windows" -02386305 00 s 02 long-stalked 0 tall-stalked 0 001 & 02385102 a 0000 | of plants having relatively long stalks -02386418 00 s 02 stately 0 statuesque 0 002 & 02385102 a 0000 + 04729984 n 0101 | of size and dignity suggestive of a statue -02386545 00 s 01 tallish 0 001 & 02385102 a 0000 | somewhat tall -02386612 00 a 02 short 3 little 0 011 ^ 01206474 a 0000 = 05002352 n 0000 + 05137938 n 0101 + 05002680 n 0101 ! 02385102 a 0101 & 02386962 a 0000 & 02387413 a 0000 & 02387662 a 0000 & 02387790 a 0000 & 02387970 a 0000 & 02388070 a 0000 | low in stature; not tall; "he was short and stocky"; "short in stature"; "a short smokestack"; "a little man" -02386962 00 s 06 chunky 0 dumpy 0 low-set 0 squat 0 squatty 0 stumpy 0 004 & 02386612 a 0000 + 04998816 n 0502 + 05137778 n 0401 + 04998816 n 0201 | short and thick; as e.g. having short legs and heavy musculature; "some people seem born to be square and chunky"; "a dumpy little dumpling of a woman"; "dachshunds are long lowset dogs with drooping ears"; "a little church with a squat tower"; "a squatty red smokestack"; "a stumpy ungainly figure" -02387413 00 s 05 compact 0 heavyset 1 stocky 0 thick 0 thickset 0 002 & 02386612 a 0000 + 04941325 n 0101 | having a short and solid form or stature; "a wrestler of compact build"; "he was tall and heavyset"; "stocky legs"; "a thickset young man" -02387662 00 s 01 half-length 0 001 & 02386612 a 0000 | representing only the upper half of the body; "a half-length portrait" -02387790 00 s 05 pint-size 0 pint-sized 0 runty 0 sawed-off 0 sawn-off 0 004 & 02386612 a 0000 ;u 07157273 n 0000 + 10543544 n 0301 + 05107495 n 0302 | well below average height -02387970 00 s 01 short-stalked 0 001 & 02386612 a 0000 | of plants having relatively short stalks -02388070 00 s 02 squab 0 squabby 0 001 & 02386612 a 0000 | short and fat -02388145 00 a 02 tame 1 tamed 4 009 ^ 02451113 a 0000 = 04905842 n 0000 + 04905842 n 0101 ! 02389220 a 0101 & 02388441 a 0000 & 02388596 a 0000 & 02388773 a 0000 & 02388921 a 0000 & 02389099 a 0000 | brought from wildness into a domesticated state; "tame animals"; "fields of tame blueberries" -02388441 00 s 02 broken 0 broken_in 0 001 & 02388145 a 0000 | tamed or trained to obey; "a horse broken to the saddle"; "this old nag is well broken in" -02388596 00 s 01 cultivated 0 001 & 02388145 a 0000 | no longer in the natural state; developed by human care and for human use; "cultivated roses"; "cultivated blackberries" -02388773 00 s 02 docile 0 gentle 0 002 & 02388145 a 0000 + 04905697 n 0101 | easily handled or managed; "a gentle old horse, docile and obedient" -02388921 00 s 02 domestic 0 domesticated 0 002 & 02388145 a 0000 + 05209113 n 0101 | converted or adapted to domestic use; "domestic animals"; "domesticated plants like maize" -02389099 00 s 01 tamed 0 001 & 02388145 a 0000 | brought from wildness; "the once inhospitable landscape is now tamed" -02389220 00 a 02 wild 1 untamed 4 009 ^ 02451951 a 0000 = 04907826 n 0000 + 13939353 n 0101 + 08683548 n 0101 ! 02388145 a 0101 & 02389520 a 0000 & 02389649 a 0000 & 02389719 a 0000 & 02389833 a 0000 | in a natural state; not tamed or domesticated or cultivated; "wild geese"; "edible wild plants" -02389520 00 s 03 feral 0 ferine 0 savage 0 002 & 02389220 a 0000 + 05038251 n 0301 | wild and menacing; "a pack of feral dogs" -02389649 00 s 01 semi-wild 0 001 & 02389220 a 0000 | partially wild -02389719 00 s 01 unbroken 0 001 & 02389220 a 0000 | not subdued or trained for service or use; "unbroken colts" -02389833 00 s 01 undomesticated 0 001 & 02389220 a 0000 | not domesticated; "a few undomesticated horses left" -02389946 00 a 01 tame 2 003 ^ 01922763 a 0000 ! 02390335 a 0101 & 02390194 a 0000 | very restrained or quiet; "a tame Christmas party"; "she was one of the tamest and most abject creatures imaginable with no will or power to act but as directed" -02390194 00 s 01 subdued 0 002 & 02389946 a 0000 + 04889779 n 0102 | quieted and brought under control; "children were subdued and silent" -02390335 00 a 01 wild 2 007 ^ 01923391 a 0000 + 04909887 n 0101 ! 02389946 a 0101 & 02390569 a 0000 & 02390724 a 0000 & 02391003 a 0000 & 02391342 a 0000 | marked by extreme lack of restraint or control; "wild talk"; "wild parties" -02390569 00 s 02 chaotic 0 disorderly 0 003 & 02390335 a 0000 + 14499262 n 0201 + 13976322 n 0101 | completely unordered and unpredictable and confusing -02390724 00 s 05 delirious 0 excited 0 frantic 0 mad 0 unrestrained 0 003 & 02390335 a 0000 + 04885784 n 0401 + 14391876 n 0102 | marked by uncontrolled excitement or emotion; "a crowd of delirious baseball fans"; "something frantic in their gaiety"; "a mad whirl of pleasure" -02391003 00 s 02 frenzied 0 manic 0 003 & 02390335 a 0000 + 14391660 n 0201 + 09181557 n 0201 | affected with or marked by frenzy or mania uncontrolled by reason; "a frenzied attack"; "a frenzied mob"; "the prosecutor's frenzied denunciation of the accused"- H.W.Carter; "outbursts of drunken violence and manic activity and creativity" -02391342 00 s 01 unsubdued 0 001 & 02390335 a 0000 | not brought under control; "the horse remained unsubdued" -02391455 00 a 02 tangible 0 touchable 0 005 ^ 00013160 a 0000 + 04760024 n 0102 + 04760024 n 0101 ! 02391867 a 0101 & 02391683 a 0000 | perceptible by the senses especially the sense of touch; "skin with a tangible roughness" -02391683 00 s 02 tactile 0 tactual 0 002 & 02391455 a 0000 + 05721990 n 0102 | producing a sensation of touch; "tactile qualities"; "the tactual luxury of stroking silky human hair" -02391867 00 a 02 intangible 0 impalpable 4 005 ^ 00011757 a 0000 + 04760296 n 0203 + 04760296 n 0101 + 04760296 n 0102 ! 02391455 a 0101 | incapable of being perceived by the senses especially the sense of touch; "the intangible constituent of energy"- James Jeans -02392134 00 a 01 tangible 2 004 ;c 01094725 n 0000 ! 02392654 a 0101 & 02392406 a 0000 & 02392537 a 0000 | (of especially business assets) having physical substance and intrinsic monetary value ; "tangible property like real estate"; "tangible assets such as machinery" -02392406 00 s 01 real 0 001 & 02392134 a 0000 | (of property) fixed or immovable; "real property consists of land and buildings" -02392537 00 s 01 realizable 0 001 & 02392134 a 0000 | capable of being realized; "realizable benefits of the plan" -02392654 00 a 01 intangible 2 003 ;c 01094725 n 0000 + 04760296 n 0102 ! 02392134 a 0101 | (of especially business assets) not having physical substance or intrinsic productive value; "intangible assets such as good will" -02392878 00 a 01 tasteful 2 007 ^ 00849357 a 0000 ^ 01851523 a 0000 = 05749619 n 0000 + 04813395 n 0101 ! 02393401 a 0101 & 02393086 a 0000 & 02393220 a 0000 | having or showing or conforming to good taste -02393086 00 s 03 aesthetic 0 esthetic 0 artistic 0 001 & 02392878 a 0000 | aesthetically pleasing; "an artistic flower arrangement" -02393220 00 s 03 understated 0 unostentatious 0 unpretentious 0 002 & 02392878 a 0000 + 04787154 n 0301 | exhibiting restrained good taste; "the room is pleasant and understated" -02393401 00 a 01 tasteless 2 011 ^ 00851103 a 0000 ^ 01849288 a 0000 = 05749619 n 0000 + 04818284 n 0101 ! 02392878 a 0101 & 02393670 a 0000 & 02393791 a 0000 & 02394366 a 0000 & 02394487 a 0000 & 02394793 a 0000 & 02394975 a 0000 | lacking aesthetic or social taste -02393670 00 s 01 barbaric 0 001 & 02393401 a 0000 | unrestrained and crudely rich; "barbaric use of color or ornament" -02393791 00 s 0d brassy 0 cheap 0 flash 0 flashy 0 garish 0 gaudy 0 gimcrack 0 loud 0 meretricious 0 tacky 0 tatty 0 tawdry 0 trashy 0 015 & 02393401 a 0000 + 05140593 n 0d02 + 04818700 n 0c07 + 04818460 n 0b03 + 04818460 n 0a02 + 04818700 n 0906 + 04818700 n 0804 + 02787435 n 0603 + 04818700 n 0603 + 04690769 n 0602 + 04690769 n 0501 + 04818700 n 0502 + 04818700 n 0401 + 06889330 n 0303 + 04818460 n 0201 | tastelessly showy; "a flash car"; "a flashy ring"; "garish colors"; "a gaudy costume"; "loud sport shirts"; "a meretricious yet stylish book"; "tawdry ornaments" -02394366 00 s 01 Brummagem 0 002 & 02393401 a 0000 ;r 08860123 n 0000 | cheap and showy; "a cheap Brummagem imitation" -02394487 00 s 02 camp 0 campy 0 002 & 02393401 a 0000 + 05649960 n 0201 | providing sophisticated amusement by virtue of having artificially (and vulgarly) mannered or banal or sentimental qualities; "they played up the silliness of their roles for camp effect"; "campy Hollywood musicals of the 1940's" -02394793 00 s 03 indelicate 0 off-color 0 off-colour 0 001 & 02393401 a 0000 | in violation of good taste even verging on the indecent; "an indelicate remark"; "an off-color joke" -02394975 00 s 02 ostentatious 0 pretentious 0 003 & 02393401 a 0000 + 04817923 n 0205 + 04817923 n 0102 | (of a display) tawdry or vulgar -02395115 00 a 01 tasty 0 034 ^ 00133417 a 0000 ^ 01716227 a 0000 ^ 01073822 a 0000 ^ 02368787 a 0000 ^ 02368336 a 0000 = 04992163 n 0000 + 05658226 n 0101 + 04995421 n 0102 ! 02399399 a 0101 & 02395810 a 0000 & 02395910 a 0000 & 02396098 a 0000 & 02396267 a 0000 & 02396354 a 0000 & 02396484 a 0000 & 02396578 a 0000 & 02396720 a 0000 & 02396911 a 0000 & 02397119 a 0000 & 02397234 a 0000 & 02397496 a 0000 & 02397644 a 0000 & 02397732 a 0000 & 02397903 a 0000 & 02398051 a 0000 & 02398129 a 0000 & 02398255 a 0000 & 02398378 a 0000 & 02398608 a 0000 & 02398773 a 0000 & 02398928 a 0000 & 02399014 a 0000 & 02399176 a 0000 & 02399259 a 0000 | pleasing to the sense of taste; "a tasty morsel" -02395810 00 s 02 acid-tasting 0 sour-tasting 0 001 & 02395115 a 0000 | having a sour acidic taste -02395910 00 s 03 ambrosial 0 ambrosian 0 nectarous 0 002 & 02395115 a 0000 + 07610295 n 0302 | extremely pleasing to the taste; sweet and fragrant; "a nectarous drink"; "ambrosial food" -02396098 00 s 01 bitter 0 004 & 02395115 a 0000 + 07889814 n 0101 + 05717115 n 0101 + 04994824 n 0102 | causing a sharp and acrid taste experience;"quinine is bitter" -02396267 00 s 02 bitterish 0 sharp-tasting 0 001 & 02395115 a 0000 | somewhat bitter -02396354 00 s 02 bittersweet 0 semisweet 0 001 & 02395115 a 0000 | having a taste that is a mixture of bitterness and sweetness -02396484 00 s 01 choice 0 001 & 02395115 a 0000 | appealing to refined taste; "choice wine" -02396578 00 s 01 dainty 0 002 & 02395115 a 0000 + 07557165 n 0101 | especially pleasing to the taste; "a dainty dish to set before a kind"; -02396720 00 s 07 delectable 0 delicious 0 luscious 0 pleasant-tasting 0 scrumptious 0 toothsome 0 yummy 0 002 & 02395115 a 0000 + 04995793 n 0604 | extremely pleasing to the sense of taste -02396911 00 s 08 flavorful 0 flavourful 0 flavorous 0 flavourous 0 flavorsome 0 flavoursome 0 sapid 0 saporous 0 004 & 02395115 a 0000 + 04996113 n 0702 + 05715864 n 0403 + 05715864 n 0302 | full of flavor -02397119 00 s 01 fruity 0 002 & 02395115 a 0000 + 13134947 n 0101 | tasting or smelling richly of or as of fruit -02397234 00 s 04 full-bodied 0 racy 0 rich 0 robust 0 003 & 02395115 a 0000 + 05164101 n 0301 + 04992834 n 0204 | marked by richness and fullness of flavor; "a rich ruby port"; "full-bodied wines"; "a robust claret"; "the robust flavor of fresh-brewed coffee" -02397496 00 s 01 peppery 0 002 & 02395115 a 0000 + 07815588 n 0101 | having the piquant burning taste of peppers; "corn chips with peppery salsa" -02397644 00 s 01 gingery 0 001 & 02395115 a 0000 | having a taste like that of ginger -02397732 00 s 02 hot 0 spicy 1 002 & 02395115 a 0000 + 04993312 n 0101 | producing a burning sensation on the taste nerves; "hot salsa"; "jalapeno peppers are very hot" -02397903 00 s 02 grapey 0 grapy 0 003 & 02395115 a 0000 + 07758680 n 0201 + 07758680 n 0101 | having a taste like that of grapes; "a grapey wine" -02398051 00 s 01 mild-tasting 0 001 & 02395115 a 0000 | having a mild taste -02398129 00 s 01 nippy 0 003 & 02395115 a 0000 + 05715864 n 0108 + 04993108 n 0101 | a sharp biting taste; "a nippy cheese" -02398255 00 s 02 nutty 0 nutlike 0 002 & 02395115 a 0000 + 13136556 n 0101 | having the flavor of nuts; "a nutty sherry" -02398378 00 s 05 piquant 0 savory 0 savoury 0 spicy 0 zesty 0 007 & 02395115 a 0000 + 04993108 n 0507 + 04992570 n 0401 + 07594840 n 0302 + 05715864 n 0306 + 07594840 n 0201 + 04995940 n 0203 | having an agreeably pungent taste -02398608 00 s 02 pungent 0 acrid 0 002 & 02395115 a 0000 + 04992834 n 0101 | strong and sharp;"the pungent taste of radishes"; "the acrid smell of burning rubber" -02398773 00 s 01 salty 0 003 & 02395115 a 0000 + 05717342 n 0102 + 05717342 n 0101 | one of the four basic taste sensations; like the taste of sea water -02398928 00 s 01 smoky 0 001 & 02395115 a 0000 | tasting of smoke; "smoky sausages" -02399014 00 s 01 sour 0 003 & 02395115 a 0000 + 05716744 n 0102 + 04993882 n 0101 | one of the four basic taste sensations; like the taste of vinegar or lemons -02399176 00 s 01 strong-flavored 0 001 & 02395115 a 0000 | having a strong taste -02399259 00 s 02 winy 0 winey 0 003 & 02395115 a 0000 + 07891726 n 0201 + 07891726 n 0101 | having the taste of wine; "a rich winy taste" -02399399 00 a 01 tasteless 1 008 ^ 00133851 a 0000 ^ 01716491 a 0000 = 04992163 n 0000 + 04997032 n 0105 ! 02395115 a 0101 & 02399595 a 0000 & 02400002 a 0000 & 02400125 a 0000 | lacking flavor -02399595 00 s 08 bland 0 flat 0 flavorless 0 flavourless 0 insipid 0 savorless 1 savourless 1 vapid 0 009 & 02399399 a 0000 + 04997032 n 0704 + 04997032 n 0603 + 04997282 n 0503 + 04997282 n 0502 + 04997032 n 0402 + 04997032 n 0301 + 05717953 n 0201 + 04997282 n 0101 | lacking taste or flavor or tang; "a bland diet"; "insipid hospital food"; "flavorless supermarket tomatoes"; "vapid beer"; "vapid tea" -02400002 00 s 04 unflavored 0 unflavoured 0 nonflavored 0 nonflavoured 0 001 & 02399399 a 0000 | without flavoring added -02400125 00 s 02 unsalted 0 unseasoned 0 001 & 02399399 a 0000 | without salt or seasoning -02400218 00 a 02 taxable 0 nonexempt 2 007 ^ 02366200 a 0000 + 02307547 v 0101 + 14530563 n 0101 ! 02400929 a 0101 & 02400471 a 0000 & 02400628 a 0000 & 02400724 a 0000 | (of goods or funds) subject to taxation; "taxable income"; "nonexempt property" -02400471 00 s 01 assessable 0 003 & 02400218 a 0000 + 00682230 v 0101 + 00681429 v 0104 | capable of being assessed especially for the purpose of taxation -02400628 00 s 01 dutiable 0 001 & 02400218 a 0000 | subject to import tax; "dutiable imports" -02400724 00 s 02 ratable 0 rateable 0 004 & 02400218 a 0000 ;r 08860123 n 0000 + 14530659 n 0202 + 14530659 n 0101 | liable to payment of locally assessed property taxes; "the ratable value of property" -02400929 00 a 02 nontaxable 0 exempt 2 005 ^ 02365397 a 0000 ! 02400218 a 0101 & 02401196 a 0000 & 02401288 a 0000 & 02401445 a 0000 | (of goods or funds) not subject to taxation; "the funds of nonprofit organizations are nontaxable"; "income exempt from taxation" -02401196 00 s 01 duty-free 0 001 & 02400929 a 0000 | exempt from duty; "duty-free liquor" -02401288 00 s 03 tax-exempt 0 tax-free 0 untaxed 0 001 & 02400929 a 0000 | (of goods or funds) not taxed; "tax-exempt bonds"; "an untaxed expense account" -02401445 00 s 01 unratable 0 002 & 02400929 a 0000 ;r 08860123 n 0000 | not subject to locally assessed property taxes; "unratable properties" -02401590 00 a 01 temperate 0 006 ^ 01508719 a 0000 ^ 01531375 a 0000 + 04883243 n 0102 ! 02402268 a 0101 & 02401863 a 0000 & 02402078 a 0000 | not extreme in behavior; "temperate in his habits"; "a temperate response to an insult"; "temperate in his eating and drinking" -02401863 00 s 02 abstemious 0 light(a) 0 002 & 02401590 a 0000 + 05114262 n 0101 | marked by temperance in indulgence; "abstemious with the use of adverbs"; "a light eater"; "a light smoker"; "ate a light supper" -02402078 00 s 02 moderate 0 restrained 0 002 & 02401590 a 0000 + 05117660 n 0102 | marked by avoidance of extravagance or extremes; "moderate in his demands"; "restrained in his response" -02402268 00 a 01 intemperate 0 005 ^ 01533120 a 0000 ^ 01509527 a 0000 + 00747671 n 0102 ! 02401590 a 0101 & 02402439 a 0000 | excessive in behavior; "intemperate rage" -02402439 00 s 02 big(a) 0 heavy(a) 2 001 & 02402268 a 0000 | prodigious; "big spender"; "big eater"; "heavy investor" -02402559 00 a 01 temperate 1 005 ^ 00438166 a 0000 + 11456462 n 0103 ! 02403030 a 0101 & 02402846 a 0000 & 02402943 a 0000 | (of weather or climate) free from extremes; mild; or characteristic of such weather or climate; "a temperate region"; "the temperate zones"; "temperate plants" -02402846 00 s 01 cold-temperate 0 001 & 02402559 a 0000 | the colder parts of temperate waters -02402943 00 s 01 equable 0 001 & 02402559 a 0000 | not varying; "an equable climate" -02403030 00 a 01 intemperate 1 002 ^ 00438567 a 0000 ! 02402559 a 0101 | (of weather or climate) not mild; subject to extremes; "an intemperate climate"; "intemperate zones" -02403206 00 a 01 tense 1 006 ^ 01447302 a 0000 + 14544335 n 0103 + 14544335 n 0102 ! 02403671 a 0101 & 02403401 a 0000 & 02403505 a 0000 | taut or rigid; stretched tight; "tense piano strings" -02403401 00 s 01 overstrung 0 001 & 02403206 a 0000 | too tightly strung; "an overstrung archery bow" -02403505 00 s 02 taut 0 tight 0 003 & 02403206 a 0000 + 04776940 n 0201 + 04776940 n 0102 | pulled or drawn tight; "taut sails"; "a tight drumhead"; "a tight rope" -02403671 00 a 01 lax 1 009 ^ 01446749 a 0000 + 14546042 n 0101 ! 02403206 a 0101 & 02403944 a 0000 & 02404081 a 0000 & 02404306 a 0000 & 02404421 a 0000 & 02404670 a 0000 & 02404793 a 0000 | lacking in strength or firmness or resilience; "a lax rope"; "a limp handshake" -02403944 00 s 03 drooping 0 droopy 0 sagging 0 002 & 02403671 a 0000 + 13905572 n 0202 | hanging down (as from exhaustion or weakness) -02404081 00 s 01 limp 0 002 & 02403671 a 0000 + 04939046 n 0102 | lacking in strength or firmness or resilience; "gave a limp handshake"; "a limp gesture as if waving away all desire to know" G.K.Chesterton; "a slack grip" -02404306 00 s 01 floppy 0 002 & 02403671 a 0000 + 00327510 n 0101 | hanging limply; "a spaniel with floppy ears" -02404421 00 s 02 loose 0 slack 0 005 & 02403671 a 0000 + 04775357 n 0201 + 04233556 n 0201 + 04775357 n 0202 + 04774511 n 0101 | not tense or taut; "the old man's skin hung loose and grey"; "slack and wrinkled skin"; "slack sails"; "a slack rope" -02404670 00 s 01 loose-jointed 0 001 & 02403671 a 0000 | loosely articulated or constructed; "a loose-jointed paragraph" -02404793 00 s 01 tensionless 0 001 & 02403671 a 0000 | free from tension -02404868 00 a 01 tense 2 003 ;c 06177033 n 0000 ! 02405160 a 0101 & 02405038 a 0000 | pronounced with relatively tense tongue muscles (e.g., the vowel sound in `beat') -02405038 00 s 01 constricted 0 002 & 02404868 a 0000 ;c 06177033 n 0000 | especially tense; especially in some dialects -02405160 00 a 01 lax 2 002 ;c 06177033 n 0000 ! 02404868 a 0101 | pronounced with muscles of the tongue and jaw relatively relaxed (e.g., the vowel sound in `bet') -02405326 00 a 01 tense 3 015 ^ 00085264 a 0000 ^ 00822449 a 0000 + 14376188 n 0102 ! 02407603 a 0101 & 02405677 a 0000 & 02405805 a 0000 & 02405959 a 0000 & 02406166 a 0000 & 02406370 a 0000 & 02406640 a 0000 & 02406790 a 0000 & 02406908 a 0000 & 02407041 a 0000 & 02407193 a 0000 & 02407346 a 0000 | in or of a state of physical or nervous tension -02405677 00 s 02 aroused 0 wound_up 0 001 & 02405326 a 0000 | brought to a state of great tension; "all wound up for a fight" -02405805 00 s 04 cliff-hanging 0 suspenseful 0 suspensive 0 nail-biting 0 001 & 02405326 a 0000 | (of a situation) characterized by or causing suspense -02405959 00 s 01 taut 0 002 & 02405326 a 0000 + 14544335 n 0104 | subjected to great tension; stretched tight; "the skin of his face looked drawn and tight"; "her nerves were taut as the strings of a bow" -02406166 00 s 04 antsy 0 fidgety 0 fretful 0 itchy 0 003 & 02405326 a 0000 + 07513795 n 0201 + 07513795 n 0202 | nervous and unable to relax; "a constant fretful stamping of hooves"; "a restless child" -02406370 00 s 09 edgy 0 high-strung 0 highly_strung 0 jittery 0 jumpy 0 nervy 0 overstrung 0 restive 0 uptight 0 007 & 02405326 a 0000 + 07525760 n 0804 + 04625716 n 0802 + 07525760 n 0502 + 07525760 n 0401 + 05171978 n 0101 + 07525057 n 0101 | being in a tense state -02406640 00 s 01 electric 0 002 & 02405326 a 0000 + 07514600 n 0101 | (of a situation) exceptionally tense; "an atmosphere electric with suspicion" -02406790 00 s 01 isotonic 0 002 & 02405326 a 0000 ;c 06080522 n 0000 | of two or more muscles; having equal tension -02406908 00 s 01 nervous 0 002 & 02405326 a 0000 + 04624959 n 0101 | easily agitated; "a nervous addict"; "a nervous thoroughbred" -02407041 00 s 01 strained 0 001 & 02405326 a 0000 | showing signs of mental and emotional tension; "her voice was strained as she asked the question" -02407193 00 s 01 unrelaxed 0 001 & 02405326 a 0000 | nor relaxed; "his life was drawing to a close in baffled zeal and unrelaxed strain"- U.B.Phillips -02407346 00 s 04 pumped-up(a) 0 pumped_up(p) 0 pumped(p) 0 wired 0 002 & 02405326 a 0000 ;u 07075172 n 0000 | tense with excitement and enthusiasm as from a rush of adrenaline; "we were really pumped up for the race"; "he was so pumped he couldn't sleep" -02407603 00 a 01 relaxed 0 006 ^ 00822115 a 0000 ^ 00087152 a 0000 ! 02405326 a 0101 & 02407855 a 0000 & 02408011 a 0000 & 02408140 a 0000 | without strain or anxiety; "gave the impression of being quite relaxed"; "a relaxed and informal discussion" -02407855 00 s 01 degage 0 001 & 02407603 a 0000 | free and relaxed in manner; "rather degage after the nervousness he had shown at dinner"- Edmund Wilson -02408011 00 s 02 laid-back 0 mellow 0 002 & 02407603 a 0000 + 04656448 n 0201 | unhurried and relaxed; "a mellow conversation" -02408140 00 s 01 unstrained 0 001 & 02407603 a 0000 | not placed under psychological stress; "the campaign would not leave party loyalties unstrained" -02408293 00 a 01 hypertonic 1 003 + 14576242 n 0102 + 14576242 n 0101 ! 02408470 a 0101 | (of living tissue) in a state of abnormally high tension; "hypertonic muscle tissue" -02408470 00 a 01 hypotonic 1 003 + 14576468 n 0103 + 14576468 n 0101 ! 02408293 a 0101 | (of living tissue) lacking normal tone or tension -02408611 00 a 01 territorial 0 004 ! 02409293 a 0101 & 02408793 a 0000 & 02408977 a 0000 & 02409095 a 0000 | belonging to the territory of any state or ruler; "territorial rights" -02408793 00 s 01 jurisdictional 0 002 & 02408611 a 0000 + 08590369 n 0101 | restricted to the geographic area under a particular jurisdiction; "the jurisdictional limits of a state" -02408977 00 s 01 regional 0 001 & 02408611 a 0000 | related or limited to a particular region; "a regional dialect" -02409095 00 s 01 sectional 0 001 & 02408611 a 0000 | related or limited to a distinct region or subdivision of a territory or community or group of people; "sectional tensions arose over slavery" -02409293 00 a 02 extraterritorial 0 exterritorial 0 001 ! 02408611 a 0101 | outside territorial limits or jurisdiction; "fishing in extraterritorial waters"; "enjoying exterritorial privileges and rights" -02409500 00 a 01 territorial 1 003 ;c 06037666 n 0000 + 01221464 n 0101 ! 02409712 a 0101 | displaying territoriality; defending a territory from intruders; "territorial behavior"; "strongly territorial birds" -02409712 00 a 01 nonterritorial 0 002 ;c 06037666 n 0000 ! 02409500 a 0101 | not displaying territoriality; "a nonterritorial species" -02409849 00 a 01 thermoplastic 0 002 + 14593344 n 0101 ! 02410156 a 0101 | having the property of softening or fusing when heated and of hardening and becoming rigid again when cooled; "thermoplastic materials can be remelted and cooled time after time without undergoing any appreciable chemical change" -02410156 00 a 02 thermosetting 0 thermoset 0 001 ! 02409849 a 0101 | having the property of becoming permanently hard and rigid when heated or cured; "the phenol resins and plastics were the original synthetic thermosetting materials" -02410393 00 a 01 thick 1 015 ^ 00986027 a 0000 ^ 02560548 a 0000 = 05103072 n 0000 + 05136662 n 0101 ! 02412164 a 0101 & 02410983 a 0000 & 02411116 a 0000 & 02411224 a 0000 & 02411322 a 0000 & 02411447 a 0000 & 02411559 a 0000 & 02411683 a 0000 & 02411798 a 0000 & 02411913 a 0000 & 02412059 a 0000 | not thin; of a specific thickness or of relatively great extent from one surface to the opposite usually in the smallest of the three solid dimensions; "an inch thick"; "a thick board"; "a thick sandwich"; "spread a thick layer of butter"; "thick coating of dust"; "thick warm blankets" -02410983 00 s 01 deep 0 002 & 02410393 a 0000 + 05134880 n 0101 | relatively thick from top to bottom; "deep carpets"; "deep snow" -02411116 00 s 01 deep-chested 0 001 & 02410393 a 0000 | thick in the chest; "a deep-chested breed of dog" -02411224 00 s 01 fat 0 001 & 02410393 a 0000 | having a relatively large diameter; "a fat rope" -02411322 00 s 01 four-ply 0 001 & 02410393 a 0000 | having a thickness made up of four layers or strands; "four-ply yarns" -02411447 00 s 01 heavy 0 001 & 02410393 a 0000 | made of fabric having considerable thickness; "a heavy coat" -02411559 00 s 01 heavy 4 002 & 02410393 a 0000 + 05136662 n 0102 | of relatively large extent and density; "a heavy line" -02411683 00 s 01 quilted 0 001 & 02410393 a 0000 | made of layers of fabric held together by patterned stitching -02411798 00 s 01 thickened 0 001 & 02410393 a 0000 | made or having become thick; "thickened bronchial arteries" -02411913 00 s 01 three-ply 0 001 & 02410393 a 0000 | having a thickness made up of three layers or strands; "three-ply cloth"; "three-ply yarn" -02412059 00 s 01 two-ply 0 001 & 02410393 a 0000 | having a thickness made up of two layers or strands -02412164 00 a 01 thin 1 021 ^ 02561888 a 0000 ^ 00988232 a 0000 = 05103072 n 0000 + 05103648 n 0101 ! 02410393 a 0101 & 02412732 a 0000 & 02412880 a 0000 & 02413037 a 0000 & 02413221 a 0000 & 02413390 a 0000 & 02413851 a 0000 & 02414031 a 0000 & 02414188 a 0000 & 02414323 a 0000 & 02414500 a 0000 & 02414599 a 0000 & 02414749 a 0000 & 02414908 a 0000 & 02415025 a 0000 & 02415172 a 0000 & 02415294 a 0000 | of relatively small extent from one surface to the opposite or in cross section; "thin wire"; "a thin chiffon blouse"; "a thin book"; "a thin layer of paint" -02412732 00 s 01 bladed 0 002 & 02412164 a 0000 ;c 06098876 n 0000 | composed of thin flat plates resembling a knife blade; "bladed arsenopyrite" -02412880 00 s 02 capillary 0 hairlike 0 002 & 02412164 a 0000 + 11433806 n 0101 | long and slender with a very small internal diameter; "a capillary tube" -02413037 00 s 02 compressed 0 flat 0 003 & 02412164 a 0000 ;c 06037666 n 0000 + 05063349 n 0202 | flattened laterally along the whole length (e.g., certain leafstalks or flatfishes) -02413221 00 s 01 depressed 0 002 & 02412164 a 0000 ;c 06037666 n 0000 | flattened downward as if pressed from above or flattened along the dorsal and ventral surfaces -02413390 00 s 0b diaphanous 0 filmy 0 gauzy 0 gauze-like 0 gossamer 0 see-through 0 sheer 0 transparent 0 vaporous 0 vapourous 0 cobwebby 0 006 & 02412164 a 0000 + 03059934 n 0b01 + 11520619 n 0801 + 04702127 n 0803 + 03429914 n 0301 + 03339296 n 0201 | so thin as to transmit light; "a hat with a diaphanous veil"; "filmy wings of a moth"; "gauzy clouds of dandelion down"; "gossamer cobwebs"; "sheer silk stockings"; "transparent chiffon"; "vaporous silks" -02413851 00 s 05 filamentous 0 filiform 0 filamentlike 0 threadlike 0 thready 0 003 & 02412164 a 0000 + 09409203 n 0502 + 14867858 n 0102 | thin in diameter; resembling a thread -02414031 00 s 01 fine 0 002 & 02412164 a 0000 + 05136978 n 0101 | thin in thickness or diameter; "a fine film of oil"; "fine hairs"; "read the fine print" -02414188 00 s 01 light 0 002 & 02412164 a 0000 + 05028700 n 0101 | very thin and insubstantial; "thin paper"; "light summer dresses" -02414323 00 s 01 hyperfine 0 002 & 02412164 a 0000 ;c 06090869 n 0000 | extremely fine or thin, as in a spectral line split into two or more components; "hyperfine structure" -02414500 00 s 01 paper_thin 0 001 & 02412164 a 0000 | thin as paper; "her blouse was paper thin" -02414599 00 s 01 papery 0 002 & 02412164 a 0000 + 14974264 n 0101 | thin and paperlike; "papery leaves"; "wasps that make nests of papery material" -02414749 00 s 02 ribbonlike 0 ribbony 0 003 & 02412164 a 0000 + 09409203 n 0201 + 04087899 n 0201 | long and thin; resembling a ribbon; "ribbonlike noodles" -02414908 00 s 01 sleazy 0 001 & 02412164 a 0000 | of cloth; thin and loosely woven; "the coat has a sleazy lining" -02415025 00 s 01 slender 0 002 & 02412164 a 0000 + 05103648 n 0103 | having little width in proportion to the length or height; "a slender pole" -02415172 00 s 01 tenuous 0 002 & 02412164 a 0000 + 05103648 n 0102 | very thin in gauge or diameter; "a tenuous thread" -02415294 00 s 01 wafer-thin 0 001 & 02412164 a 0000 | very thin; "wafer-thin sheets of metal" -02415390 00 a 01 thick 2 014 = 04936403 n 0000 = 04934546 n 0000 + 04936403 n 0101 ! 02417301 a 0101 & 02415764 a 0000 & 02415938 a 0000 & 02416036 a 0000 & 02416285 a 0000 & 02416390 a 0000 & 02416610 a 0000 & 02416765 a 0000 & 02416898 a 0000 & 02417028 a 0000 & 02417170 a 0000 | relatively dense in consistency; "thick cream"; "thick soup"; "thick smoke"; "thick fog" -02415764 00 s 02 clogged 0 clotted 0 001 & 02415390 a 0000 | thickened or coalesced in soft thick lumps (such as clogs or clots); "clotted blood"; "seeds clogged together" -02415938 00 s 01 coagulable 0 001 & 02415390 a 0000 | capable of coagulating and becoming thick -02416036 00 s 05 coagulate 0 coagulated 0 curdled 0 grumous 0 grumose 0 003 & 02415390 a 0000 + 14939663 n 0401 + 05402333 n 0402 | transformed from a liquid into a soft semisolid or solid mass; "coagulated blood"; "curdled milk"; "grumous blood" -02416285 00 s 01 creamy 0 003 & 02415390 a 0000 + 07847198 n 0101 + 04936690 n 0101 | thick like cream -02416390 00 s 03 dense 0 heavy 1 impenetrable 0 002 & 02415390 a 0000 + 04941453 n 0101 | permitting little if any light to pass through because of denseness of matter; "dense smoke"; "heavy fog"; "impenetrable gloom" -02416610 00 s 03 gelatinous 0 gelatinlike 0 jellylike 0 004 & 02415390 a 0000 + 14730553 n 0101 + 14730553 n 0102 + 04936213 n 0101 | thick like gelatin -02416765 00 s 04 ropy 0 ropey 0 stringy 0 thready 0 002 & 02415390 a 0000 + 04935904 n 0106 | forming viscous or glutinous threads -02416898 00 s 01 soupy 0 002 & 02415390 a 0000 + 04936690 n 0102 | having the consistency and appearance of soup; "a soupy fog" -02417028 00 s 02 syrupy 0 viscous 0 003 & 02415390 a 0000 + 04935003 n 0202 + 04935003 n 0201 | having a relatively high resistance to flow -02417170 00 s 01 thickened 0 001 & 02415390 a 0000 | made thick in consistency; "flour-thickened gravy"; "dust-thickened saliva" -02417301 00 a 01 thin 2 006 = 04936403 n 0000 = 04934546 n 0000 + 04936846 n 0101 ! 02415390 a 0101 & 02417611 a 0000 & 02417725 a 0000 | relatively thin in consistency or low in density; not viscous; "air is thin at high altitudes"; "a thin soup"; "skimmed milk is much thinner than whole milk"; "thin oil" -02417611 00 s 01 tenuous 0 002 & 02417301 a 0000 + 05089612 n 0102 | having thin consistency; "a tenuous fluid" -02417725 00 s 03 rare 0 rarefied 0 rarified 0 002 & 02417301 a 0000 + 05089612 n 0101 | having low density; "rare gasses"; "lightheaded from the rarefied mountain air" -02417895 00 a 01 thinkable 0 006 ^ 00644839 a 0000 ^ 01821266 a 0000 ! 02418538 a 0101 & 02418093 a 0000 & 02418249 a 0000 & 02418412 a 0000 | capable of being conceived or imagined or considered -02418093 00 s 02 cogitable 0 ponderable 0 001 & 02417895 a 0000 | capable of being thought about; "space flight to other galaxies becomes more cogitable" -02418249 00 s 02 conceivable 0 imaginable 0 003 & 02417895 a 0000 + 14482299 n 0101 + 14482299 n 0102 | capable of being imagined; "that is one possible answer" -02418412 00 s 03 presumable 0 supposable 0 surmisable 0 001 & 02417895 a 0000 | capable of being inferred on slight grounds -02418538 00 a 01 unthinkable 0 004 ^ 01823092 a 0000 ^ 00645493 a 0000 ! 02417895 a 0101 & 02418692 a 0000 | incapable of being conceived or considered -02418692 00 s 04 impossible 0 inconceivable 0 out_of_the_question 0 unimaginable 0 004 & 02418538 a 0000 + 14483348 n 0202 + 14483348 n 0201 + 14483126 n 0102 | totally unlikely -02418872 00 a 01 thoughtful 0 010 ^ 00638981 a 0000 = 04660536 n 0000 + 05785508 n 0106 ! 02420530 a 0101 & 02419159 a 0000 & 02419434 a 0000 & 02419933 a 0000 & 02420085 a 0000 & 02420215 a 0000 & 02420390 a 0000 | exhibiting or characterized by careful thought; "a thoughtful paper" -02419159 00 s 04 bemused 0 deep_in_thought(p) 0 lost(p) 0 preoccupied 0 002 & 02418872 a 0000 + 05700087 n 0402 | deeply absorbed in thought; "as distant and bemused as a professor listening to the prattling of his freshman class"; "lost in thought"; "a preoccupied frown" -02419434 00 s 09 brooding 0 broody 0 contemplative 0 meditative 0 musing 0 pensive 0 pondering 0 reflective 0 ruminative 0 011 & 02418872 a 0000 + 00630380 v 090b + 04661546 n 0802 + 00630380 v 0808 + 07533607 n 0601 + 04660805 n 0402 + 00704388 v 0402 + 00630380 v 0403 + 00630380 v 0306 + 00704388 v 0303 + 04660805 n 0303 | deeply or seriously thoughtful; "Byron lives on not only in his poetry, but also in his creation of the 'Byronic hero' - the persona of a brooding melancholy young man"; -02419933 00 s 01 cogitative 0 003 & 02418872 a 0000 + 00703512 v 0101 + 00628491 v 0102 | given to cogitation; "he looked at me with cogitative eyes" -02420085 00 s 01 well_thought_out(p) 0 001 & 02418872 a 0000 | resulting from careful thought; "the paper was well thought out" -02420215 00 s 01 deliberative 0 002 & 02418872 a 0000 + 00812580 v 0102 | involved in or characterized by deliberation and discussion and examination; "a deliberative body" -02420390 00 s 01 excogitative 0 002 & 02418872 a 0000 + 00630380 v 0105 | concerned with excogitating or having the power of excogitation -02420530 00 a 01 thoughtless 0 006 ^ 00639356 a 0000 = 04660536 n 0000 + 04661706 n 0102 ! 02418872 a 0101 & 02420757 a 0000 & 02421003 a 0000 | showing lack of careful thought; "the debate turned into thoughtless bickering" -02420757 00 s 02 inconsiderate 0 unconsidered 0 002 & 02420530 a 0000 + 04845967 n 0102 | without proper consideration or reflection; "slovenly inconsiderate reasoning"; "unconsidered words"; "prejudice is the holding of unconsidered opinions" -02421003 00 s 03 unreflective 0 unthinking 0 unthoughtful 0 002 & 02420530 a 0000 + 04661706 n 0301 | not exhibiting or characterized by careful thought -02421158 00 a 01 thrifty 0 007 ^ 01894758 a 0000 + 04893525 n 0103 + 04893787 n 0102 ! 02422068 a 0101 & 02421364 a 0000 & 02421833 a 0000 & 02421919 a 0000 | careful and diligent in the use of resources -02421364 00 s 05 economical 0 frugal 0 scotch 0 sparing 0 stinting 0 005 & 02421158 a 0000 ;u 07075172 n 0000 + 04893358 n 0202 + 04893358 n 0201 + 04893787 n 0101 | avoiding waste; "an economical meal"; "an economical shopper"; "a frugal farmer"; "a frugal lunch"; "a sparing father and a spending son"; "sparing in their use of heat and light"; "stinting in bestowing gifts"; "thrifty because they remember the great Depression"; "`scotch' is used only informally" -02421833 00 s 01 penny-wise 0 001 & 02421158 a 0000 | thrifty in small matters only -02421919 00 s 01 saving 0 001 & 02421158 a 0000 | characterized by thriftiness; "wealthy by inheritance but saving by constitution"- Ellen Glasgow -02422068 00 a 01 wasteful 0 006 ^ 01895837 a 0000 + 04894964 n 0103 ! 02421158 a 0101 & 02422242 a 0000 & 02422499 a 0000 & 02422592 a 0000 | tending to squander and waste -02422242 00 s 04 extravagant 0 prodigal 0 profligate 0 spendthrift 0 007 & 02422068 a 0000 + 10479561 n 0302 + 10479561 n 0201 + 00743641 n 0202 + 04894807 n 0202 + 04894807 n 0101 + 00743641 n 0101 | recklessly wasteful; "prodigal in their expenditures" -02422499 00 s 01 pound-foolish 0 001 & 02422068 a 0000 | unwise in dealing with large sums -02422592 00 s 02 uneconomical 0 uneconomic 0 001 & 02422068 a 0000 | wasteful of resources -02422685 00 a 01 tidy 0 014 ^ 00417413 a 0000 ^ 00983862 a 0000 ^ 02427087 a 0000 + 14497233 n 0101 + 04896515 n 0101 ! 02424254 a 0101 & 02423073 a 0000 & 02423284 a 0000 & 02423432 a 0000 & 02423563 a 0000 & 02423649 a 0000 & 02423865 a 0000 & 02423981 a 0000 & 02424095 a 0000 | marked by order and cleanliness in appearance or habits; "a tidy person"; "a tidy house"; "a tidy mind" -02423073 00 s 03 clean-cut 0 trig 0 trim 2 002 & 02422685 a 0000 + 14497511 n 0302 | neat and smart in appearance; "a clean-cut and well-bred young man"; "the trig corporal in his jaunty cap"; "a trim beard" -02423284 00 s 02 neat 0 orderly 0 003 & 02422685 a 0000 + 13968547 n 0201 + 04896515 n 0102 | clean or organized; "her neat dress"; "a neat room" -02423432 00 s 01 neat 3 002 & 02422685 a 0000 + 04896515 n 0102 | showing care in execution; "neat homework"; "neat handwriting" -02423563 00 s 01 ruly 0 001 & 02422685 a 0000 | neat and tidy; "a small ruly beard" -02423649 00 s 03 shipshape 0 trim 1 well-kept 0 002 & 02422685 a 0000 + 14497511 n 0202 | of places; characterized by order and neatness; free from disorder; "even the barn was shipshape"; "a trim little sailboat" -02423865 00 s 01 slicked_up 0 001 & 02422685 a 0000 | having been made especially tidy; "slicked up for visitors" -02423981 00 s 01 straight 0 001 & 02422685 a 0000 | neatly arranged; not disorderly; "the room is straight now" -02424095 00 s 02 uncluttered 0 unlittered 0 001 & 02422685 a 0000 | having nothing extraneous; "an uncluttered room"; "the unlittered shoulders of the road" -02424254 00 a 01 untidy 0 017 ^ 00419289 a 0000 ^ 00985387 a 0000 ^ 02428377 a 0000 + 14499594 n 0101 + 04897428 n 0101 ! 02422685 a 0101 & 02424716 a 0000 & 02424949 a 0000 & 02425220 a 0000 & 02425529 a 0000 & 02425749 a 0000 & 02426042 a 0000 & 02426270 a 0000 & 02426420 a 0000 & 02426550 a 0000 & 02426679 a 0000 & 02426890 a 0000 | not neat and tidy; "careless and untidy in her personal habits"; "an untidy living room"; "untidy and casual about money" -02424716 00 s 04 blowsy 0 blowzy 0 slatternly 0 sluttish 0 005 & 02424254 a 0000 + 04896995 n 0402 + 10663315 n 0307 + 10609198 n 0301 + 04896995 n 0301 | characteristic of or befitting a slut or slattern; used especially of women -02424949 00 s 02 cluttered 0 littered 0 001 & 02424254 a 0000 | filled or scattered with a disorderly accumulation of objects or rubbish; "the storm left the drivewaylittered with sticks nd debris"; "his library was a cluttered room with piles of books on every chair" -02425220 00 s 05 disheveled 0 dishevelled 0 frowzled 0 rumpled 0 tousled 0 001 & 02424254 a 0000 | in disarray; extremely disorderly; "her clothing was disheveled"; "powder-smeared and frowzled"; "a rumpled unmade bed"; "a bed with tousled sheets"; "his brown hair was tousled, thick, and curly"- Al Spiers -02425529 00 s 05 disorderly 0 higgledy-piggledy 0 hugger-mugger 0 jumbled 0 topsy-turvy 0 004 & 02424254 a 0000 + 13976322 n 0505 + 13976731 n 0301 + 04897604 n 0102 | in utter disorder; "a disorderly pile of clothes" -02425749 00 s 03 frowsy 0 frowzy 0 slovenly 0 004 & 02424254 a 0000 + 10612210 n 0302 + 14499734 n 0302 + 04896878 n 0301 | negligent of neatness especially in dress and person; habitually dirty and unkempt; "filled the door with her frowzy bulk"; "frowzy white hair"; "slovenly appearance" -02426042 00 s 02 messy 0 mussy 0 006 & 02424254 a 0000 + 14500047 n 0203 + 14500047 n 0204 + 14500047 n 0101 + 14500047 n 0102 + 04897428 n 0102 | dirty and disorderly; "a mussy fussy bedroom"; "a child's messy eating habits" -02426270 00 s 01 scraggly 0 001 & 02424254 a 0000 | lacking neatness or order; "the old man's scraggly beard"; "a scraggly little path to the door" -02426420 00 s 01 sloppy 0 002 & 02424254 a 0000 + 14499734 n 0101 | lacking neatness or order; "a sloppy room"; "sloppy habits" -02426550 00 s 01 slouchy 0 002 & 02424254 a 0000 + 05003273 n 0101 | lacking stiffness in form or posture; "a slouchy sweater" -02426679 00 s 04 sprawling 0 straggling 0 rambling 0 straggly 0 002 & 02424254 a 0000 + 07939159 n 0401 | spreading out in different directions; "sprawling handwriting"; "straggling branches"; "straggly hair" -02426890 00 s 01 unkempt 2 002 & 02424254 a 0000 + 14499734 n 0103 | not properly maintained or cared for; "an unkempt garden"; "native vistas and unkempt rambling paths"; "an ukempt appearance" -02427087 00 a 01 groomed 0 009 ^ 02422685 a 0000 ! 02428377 a 0101 & 02427412 a 0000 & 02427594 a 0000 & 02427718 a 0000 & 02427882 a 0000 & 02427981 a 0000 & 02428150 a 0000 & 02428251 a 0000 | neat and smart in appearance; well cared for; "the manager was a beautifully groomed young man"; "his horse was always groomed" -02427412 00 s 01 brushed 0 001 & 02427087 a 0000 | (of hair or clothing) groomed with a brush; "with shining hair neatly brushed"; "the freshly brushed clothes hung in the closet" -02427594 00 s 02 kempt 0 tidy 0 002 & 02427087 a 0000 + 04896515 n 0201 | (of hair) neat and tidy; "a nicely kempt beard" -02427718 00 s 02 plastered 0 slicked 0 001 & 02427087 a 0000 | (of hair) made smooth by applying a sticky or glossy substance; "black hair plastered with pomade" -02427882 00 s 01 pomaded 0 001 & 02427087 a 0000 | (of hair) groomed with pomade; "pomaded hair" -02427981 00 s 01 sleek 0 002 & 02427087 a 0000 + 04950336 n 0101 | well-groomed and neatly tailored; especially too well-groomed; "sleek figures in expensive clothes" -02428150 00 s 01 well-groomed 0 001 & 02427087 a 0000 | having your hair neatly brushed and combed -02428251 00 s 02 well-groomed 1 well-dressed 0 001 & 02427087 a 0000 | having tasteful clothing and being scrupulously neat -02428377 00 a 01 ungroomed 0 005 ^ 02424254 a 0000 ! 02427087 a 0101 & 02428610 a 0000 & 02428810 a 0000 & 02428884 a 0000 | not neat and smart in appearance; "he was wrinkled and ungroomed, with a two-day beard"; "ungroomed hair" -02428610 00 s 04 bushy 0 shaggy 0 shaggy-haired 0 shaggy-coated 0 003 & 02428377 a 0000 + 09431283 n 0201 + 14499953 n 0201 | used of hair; thick and poorly groomed; "bushy locks"; "a shaggy beard" -02428810 00 s 01 ill-dressed 0 001 & 02428377 a 0000 | not well dressed -02428884 00 s 01 unbrushed 0 001 & 02428377 a 0000 | (of hair or clothing) not brushed; "snarled unbrushed hair"; "the suit was wrinkled and unbrushed, as if it had been slept in" -02429066 00 a 01 combed 0 001 ! 02429182 a 0101 | (of hair) made tidy with a comb; "with hair combed to the side" -02429182 00 a 01 uncombed 0 003 ! 02429066 a 0101 & 02429377 a 0000 & 02429461 a 0000 | (of hair) not combed; "he was unwashed and uncombed with his clothes half buttoned"; "wild unkempt hair" -02429377 00 s 01 uncombable 0 001 & 02429182 a 0000 | not capable of being combed -02429461 00 s 01 unkempt 0 002 & 02429182 a 0000 + 14499734 n 0103 | not neatly combed; "wild unkempt hair" -02429571 00 a 01 timbered 0 003 ! 02430002 a 0101 & 02429721 a 0000 & 02429880 a 0000 | furnished with or made of wood or timbers; "timbered walls" -02429721 00 s 02 half-timber 0 half-timbered 0 001 & 02429571 a 0000 | having exposed wood framing with spaces filled with masonry, as in Tudor architecture -02429880 00 s 01 timber-framed 0 001 & 02429571 a 0000 | framed by exposed timbers; "a magnificently timbered old barn" -02430002 00 a 01 untimbered 0 001 ! 02429571 a 0101 | lacking timbers; "an untimbered boat" -02430096 00 a 01 toned 0 001 ! 02430238 a 0101 | having or distinguished by a tone; often used in combination; "full-toned"; "silver-toned" -02430238 00 a 01 toneless 0 001 ! 02430096 a 0101 | lacking in tone or expression; "his toneless mechanical voice" -02430355 00 a 01 tongued 0 002 ! 02430659 a 0101 & 02430563 a 0000 | provided with or resembling a tongue; often used in combination; "tongued shoes"; "tongued boards"; "toungued lightning"; "long-tongued" -02430563 00 s 01 tonguelike 0 001 & 02430355 a 0000 | resembling a tongue in form or function -02430659 00 a 01 tongueless 0 001 ! 02430355 a 0101 | lacking a tongue; "tongueless moccasins" -02430756 00 a 01 tipped 0 008 ;u 06307152 n 0000 ! 02431619 a 0101 & 02431024 a 0000 & 02431178 a 0000 & 02431262 a 0000 & 02431351 a 0000 & 02431440 a 0000 & 02431529 a 0000 | having a tip; or having a tip as specified (used in combination); "a rubber-tipped cane" -02431024 00 s 01 filter-tipped 0 001 & 02430756 a 0000 | of a cigar or cigarette; having a tip designed to filter the smoke; "filter-tipped cigarettes" -02431178 00 s 01 pink-tipped 0 001 & 02430756 a 0000 | of a leaf tipped with pink -02431262 00 s 01 plume-tipped 0 001 & 02430756 a 0000 | of a plant tipped with a plume -02431351 00 s 01 spine-tipped 0 001 & 02430756 a 0000 | of a plant tipped with a spine -02431440 00 s 01 thorn-tipped 0 001 & 02430756 a 0000 | of a plant tipped with a thorn -02431529 00 s 01 yellow-tipped 0 001 & 02430756 a 0000 | of a flower tipped with yellow -02431619 00 a 01 untipped 0 001 ! 02430756 a 0101 | not provided with a special tip; "untipped cigarettes" -02431728 00 a 01 tired 0 017 + 14016361 n 0103 ! 02434605 a 0101 & 02432154 a 0000 & 02432428 a 0000 & 02432562 a 0000 & 02432682 a 0000 & 02432851 a 0000 & 02433000 a 0000 & 02433365 a 0000 & 02433451 a 0000 & 02433895 a 0000 & 02433975 a 0000 & 02434115 a 0000 & 02434210 a 0000 & 02434307 a 0000 & 02434380 a 0000 & 02434473 a 0000 | depleted of strength or energy; "tired mothers with crying babies"; "too tired to eat" -02432154 00 s 04 all_in(p) 0 beat(p) 0 bushed(p) 0 dead(p) 0 002 & 02431728 a 0000 ;u 07075172 n 0000 | very tired; "was all in at the end of the day"; "so beat I could flop down and go to sleep anywhere"; "bushed after all that exercise"; "I'm dead after that long trip" -02432428 00 s 02 aweary 0 weary 0 002 & 02431728 a 0000 + 14016361 n 0202 | physically and mentally fatigued; "`aweary' is archaic" -02432562 00 s 04 bleary 0 blear 0 bleary-eyed 0 blear-eyed 0 001 & 02431728 a 0000 | tired to the point of exhaustion -02432682 00 s 02 bored 0 world-weary 0 002 & 02431728 a 0000 + 07533735 n 0201 | tired of the world; "bored with life"; "strolled through the museum with a bored air" -02432851 00 s 02 burned-out 0 burnt-out 0 001 & 02431728 a 0000 | exhausted as a result of longtime stress; "she was burned-out before she was 30" -02433000 00 s 05 careworn 0 drawn 0 haggard 0 raddled 0 worn 0 001 & 02431728 a 0000 | showing the wearing effects of overwork or care or suffering; "looking careworn as she bent over her mending"; "her face was drawn and haggard from sleeplessness"; "that raddled but still noble face"; "shocked to see the worn look of his handsome young face"- Charles Dickens -02433365 00 s 02 drooping 0 flagging 0 001 & 02431728 a 0000 | weak from exhaustion -02433451 00 s 09 exhausted 0 dog-tired 0 fagged 0 fatigued 0 played_out 0 spent 0 washed-out 0 worn-out(a) 0 worn_out(p) 0 001 & 02431728 a 0000 | drained of energy or effectiveness; extremely tired; completely exhausted; "the day's shopping left her exhausted"; "he went to bed dog-tired"; "was fagged and sweaty"; "the trembling of his played out limbs"; "felt completely washed-out"; "only worn-out horses and cattle"; "you look worn out" -02433895 00 s 01 footsore 0 001 & 02431728 a 0000 | having sore or tired feet -02433975 00 s 02 jaded 0 wearied 0 001 & 02431728 a 0000 | exhausted; "my father's words had left me jaded and depressed"- William Styron -02434115 00 s 02 knackered 0 drained 0 002 & 02431728 a 0000 ;r 08860123 n 0000 | very tired -02434210 00 s 01 ragged 0 001 & 02431728 a 0000 | worn out from stress or strain; "run ragged" -02434307 00 s 01 travel-worn 0 001 & 02431728 a 0000 | tired by travel -02434380 00 s 02 unrefreshed 0 unrested 0 001 & 02431728 a 0000 | not rested or refreshed; -02434473 00 s 01 whacked 0 003 & 02431728 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) exhausted or worn out -02434605 00 a 01 rested 0 004 ^ 00804695 a 0000 ! 02431728 a 0101 & 02434797 a 0000 & 02434929 a 0000 | not tired; refreshed as by sleeping or relaxing; "came back rested from her vacation" -02434797 00 s 04 fresh 0 invigorated 0 refreshed 0 reinvigorated 0 002 & 02434605 a 0000 + 14051056 n 0101 | with restored energy -02434929 00 s 03 untired 0 unwearied 0 unweary 0 001 & 02434605 a 0000 | with unreduced energy -02435026 00 a 01 tolerable 0 004 ^ 01760944 a 0000 ! 02435671 a 0101 & 02435206 a 0000 & 02435383 a 0000 | capable of being borne or endured; "the climate is at least tolerable" -02435206 00 s 04 bearable 0 endurable 0 sufferable 0 supportable 0 002 & 02435026 a 0000 + 00668099 v 0105 | capable of being borne though unpleasant; "sufferable punishment" -02435383 00 s 02 tolerant 0 resistant 0 001 & 02435026 a 0000 | able to tolerate environmental conditions or physiological stress; "the plant is tolerant of saltwater"; "these fish are quite tolerant as long as extremes of pH are avoided"; "the new hybrid is more resistant to drought" -02435671 00 a 03 intolerable 0 unbearable 0 unendurable 0 005 ^ 01761186 a 0000 ! 02435026 a 0101 & 02435901 a 0000 & 02436025 a 0000 & 02436245 a 0000 | incapable of being put up with; "an intolerable degree of sentimentality" -02435901 00 s 01 bitter 0 001 & 02435671 a 0000 | very difficult to accept or bear; "the bitter truth"; "a bitter sorrow" -02436025 00 s 04 impossible 0 insufferable 0 unacceptable 0 unsufferable 0 003 & 02435671 a 0000 + 04793925 n 0302 + 04793925 n 0301 | used of persons or their behavior; "impossible behavior"; "insufferable insolence" -02436245 00 s 01 unsupportable 0 001 & 02435671 a 0000 | not able to be supported or defended -02436341 00 a 01 tolerant 0 006 ^ 00359459 a 0000 ^ 01735736 a 0000 + 06204406 n 0101 + 02457585 v 0101 ! 02436622 a 0101 & 02436551 a 0000 | showing respect for the rights or opinions or practices of others -02436551 00 s 01 unbigoted 0 001 & 02436341 a 0000 | not opinionated -02436622 00 a 01 intolerant 0 005 ^ 00359862 a 0000 + 06205154 n 0101 ! 02436341 a 0101 & 02436794 a 0000 & 02436995 a 0000 | unwilling to tolerate difference of opinion -02436794 00 s 01 bigoted 0 001 & 02436622 a 0000 | blindly and obstinately attached to some creed or opinion and intolerant toward others; "a bigoted person"; "an outrageously bigoted point of view" -02436995 00 s 02 rigid 0 strict 0 004 & 02436622 a 0000 + 04639371 n 0202 + 04660261 n 0103 + 04660261 n 0102 | incapable of compromise or flexibility -02437148 00 a 01 tonal 0 010 ;c 07020895 n 0000 + 05719605 n 0101 + 04987620 n 0104 + 06863751 n 0102 ! 02438188 a 0101 & 02437462 a 0000 & 02437534 a 0000 & 02437685 a 0000 & 02437853 a 0000 & 02438043 a 0000 | having tonality; i.e. tones and chords organized in relation to one tone such as a keynote or tonic -02437462 00 s 01 keyed 0 001 & 02437148 a 0000 | set to a key or tone -02437534 00 s 01 diatonic 0 001 & 02437148 a 0000 | based on or using the five tones and two semitones of the major or minor scales of western music -02437685 00 s 01 polytonal 0 002 & 02437148 a 0000 + 07025151 n 0101 | using more than one key or tonality simultaneously; "exciting rhythms and polytonal harmonies" -02437853 00 s 01 toned 0 001 & 02437148 a 0000 | having or characterized or distinguished by tone or a specific tone; often used in combination; "full-toned"; "shrill-toned"; "deep-toned" -02438043 00 s 01 tonic 0 002 & 02437148 a 0000 + 06865345 n 0103 | relating to or being the keynote of a major or minor scale; "tonic harmony" -02438188 00 a 02 atonal 0 unkeyed 0 003 ;c 07020895 n 0000 + 06864014 n 0101 ! 02437148 a 0101 | characterized by avoidance of traditional western tonality -02438346 00 a 01 toothed 0 010 ! 02439582 a 0101 & 02438655 a 0000 & 02438749 a 0000 & 02438831 a 0000 & 02438968 a 0000 & 02439076 a 0000 & 02439225 a 0000 & 02439303 a 0000 & 02439377 a 0000 & 02439499 a 0000 | having teeth especially of a certain number or type; often used in combination; "saw-toothed" -02438655 00 s 01 buck-toothed 0 001 & 02438346 a 0000 | having protruding upper front teeth -02438749 00 s 01 cogged 0 001 & 02438346 a 0000 | having cogs; "a cogged wheel" -02438831 00 s 02 fine-toothed(a) 0 fine-tooth(a) 0 001 & 02438346 a 0000 | having fine teeth set close together; "a fine-toothed comb" -02438968 00 s 01 gap-toothed 0 001 & 02438346 a 0000 | having widely spaced teeth; "his gap-toothed grin" -02439076 00 s 03 saber-toothed 0 sabertoothed 0 sabre-toothed 0 001 & 02438346 a 0000 | having teeth that resemble sabers; "a saber-toothed tiger" -02439225 00 s 01 small-toothed 0 001 & 02438346 a 0000 | having small teeth -02439303 00 s 01 toothlike 0 001 & 02438346 a 0000 | resembling a tooth -02439377 00 s 01 toothy 0 002 & 02438346 a 0000 + 05282746 n 0101 | having or showing prominent teeth; "a toothy smile" -02439499 00 s 01 tusked 0 002 & 02438346 a 0000 + 01465713 n 0101 | having tusks -02439582 00 a 01 toothless 0 003 ! 02438346 a 0101 & 02439740 a 0000 & 02439875 a 0000 | lacking teeth; "most birds are toothless"; "a toothless old crone" -02439740 00 s 03 edental 0 edentate 0 edentulate 0 001 & 02439582 a 0000 | having few if any teeth; "anteaters are edentate animals" -02439875 00 s 01 edentulous 0 001 & 02439582 a 0000 | having lost teeth -02439949 00 a 01 top(a) 0 008 ^ 00227507 a 0000 ^ 01204557 a 0000 ! 02440691 a 0101 ! 02441215 a 0101 & 02440184 a 0000 & 02440292 a 0000 & 02440461 a 0000 & 02440617 a 0000 | situated at the top or highest position; "the top shelf" -02440184 00 s 01 apical 0 003 & 02439949 a 0000 + 08494987 n 0101 + 08677801 n 0103 | situated at an apex -02440292 00 s 01 crowning 0 001 & 02439949 a 0000 | forming or providing a crown or summit; "the crowning star on a Christmas tree"; "her hair was her crowning glory" -02440461 00 s 03 topmost 0 uppermost 0 upmost 0 001 & 02439949 a 0000 | at or nearest to the top; "the uppermost book in the pile"; "on the topmost step" -02440617 00 s 01 upper 0 001 & 02439949 a 0000 | the topmost one of two -02440691 00 a 01 bottom(a) 0 005 ! 02441215 a 0101 ! 02439949 a 0101 & 02440881 a 0000 & 02440996 a 0000 & 02441132 a 0000 | situated at the bottom or lowest position; "the bottom drawer" -02440881 00 s 03 bottommost 0 lowermost 0 nethermost 0 001 & 02440691 a 0000 | farthest down; "bottommost shelf" -02440996 00 s 01 inferior 0 002 & 02440691 a 0000 ;c 06057539 n 0000 | lower than a given reference point; "inferior alveolar artery" -02441132 00 s 01 nether 0 001 & 02440691 a 0000 | lower; "gnawed his nether lip" -02441215 00 a 01 side(a) 0 004 ! 02439949 a 0101 ! 02440691 a 0101 & 02441373 a 0000 & 02441469 a 0000 | located on a side; "side fences"; "the side porch" -02441373 00 s 01 broadside 0 001 & 02441215 a 0000 | toward a full side; "a broadside attack" -02441469 00 s 02 lateral 0 sidelong 0 001 & 02441215 a 0000 | situated at or extending to the side; "the lateral branches of a tree"; "shot out sidelong boughs"- Tennyson -02441642 00 a 01 topped 0 004 ! 02442082 a 0101 & 02441786 a 0000 & 02441895 a 0000 & 02441990 a 0000 | having a top of a specified character -02441786 00 s 02 flat-topped 0 flat-top 0 001 & 02441642 a 0000 | having a flat or flattened upper surface -02441895 00 s 01 lidded 0 001 & 02441642 a 0000 | having a lid; "milk in a heavy lidded mug" -02441990 00 s 01 screw-topped 0 001 & 02441642 a 0000 | having a lid with a spiral groove -02442082 00 a 01 topless 0 002 ! 02441642 a 0101 & 02442184 a 0000 | having no top; "a topless jar" -02442184 00 s 01 lidless 0 001 & 02442082 a 0000 | having no lid; "a lidless container" -02442274 00 a 01 bottomed 0 005 ! 02443005 a 0101 & 02442441 a 0000 & 02442604 a 0000 & 02442765 a 0000 & 02442883 a 0000 | having a bottom of a specified character -02442441 00 s 03 bell-bottomed 0 bell-bottom 0 bellbottom 0 001 & 02442274 a 0000 | (of trousers) having legs that flare at the bottom; "bell-bottomed trousers" -02442604 00 s 01 copper-bottomed 0 001 & 02442274 a 0000 | having a bottom of copper or sheathed with copper; "copper-bottomed pots"; "a copper-bottomed ship" -02442765 00 s 02 flat-bottomed 0 flat-bottom 0 001 & 02442274 a 0000 | having a flat bottom; "a flat-bottomed boat" -02442883 00 s 02 round-bottomed 0 round-bottom 0 001 & 02442274 a 0000 | having a rounded bottom; "round-bottom flasks" -02443005 00 a 01 bottomless 0 001 ! 02442274 a 0101 | having no bottom; "bottomless pajamas consisting simply of a long top opening down the front" -02443155 00 a 01 top-down 0 001 ! 02443406 a 0101 | of an approach to a problem that begins at the highest conceptual level and works down to the details; "a top-down analysis might begin by looking at macro-economic trends"; "top-down programming" -02443406 00 a 01 bottom-up 0 001 ! 02443155 a 0101 | of an approach to a problem that begins with details and works up to the highest conceptual level; "bottom-up parser"; "a bottom-up model of the reading process" -02443623 00 a 01 equatorial 0 004 + 08568719 n 0101 ! 02444147 a 0101 & 02443803 a 0000 & 02443907 a 0000 | of or existing at or near the geographic equator; "equatorial Africa" -02443803 00 s 02 pantropical 0 pantropic 0 001 & 02443623 a 0000 | distributed throughout the tropics -02443907 00 s 02 tropical 0 tropic 0 003 & 02443623 a 0000 + 08665281 n 0203 + 08675145 n 0101 | relating to or situated in or characteristic of the tropics (the region on either side of the equator); "tropical islands"; "tropical fruit" -02444147 00 a 01 polar 0 005 + 08620881 n 0101 ! 02443623 a 0101 & 02444375 a 0000 & 02444475 a 0000 & 02444627 a 0000 | of or existing at or near a geographical pole or within the Arctic or Antarctic Circles; "polar regions" -02444375 00 s 01 circumpolar 0 001 & 02444147 a 0000 | located or found throughout a polar region -02444475 00 s 02 north-polar 0 Arctic 0 003 & 02444147 a 0000 + 08496477 n 0201 + 08611836 n 0101 | of or relating to the Arctic; "the Arctic summer" -02444627 00 s 02 south-polar 0 Antarctic 0 003 & 02444147 a 0000 + 08494459 n 0201 + 08652717 n 0101 | at or near the south pole -02444758 00 a 01 testate 0 003 ;c 08441203 n 0000 + 10703336 n 0102 ! 02444894 a 0101 | having made a legally valid will before death -02444894 00 a 01 intestate 0 002 ;c 08441203 n 0000 ! 02444758 a 0101 | having made no legally valid will before death or not disposed of by a legal will; "he died intestate"; "intestate property" -02445093 00 a 01 touched 0 003 ! 02445554 a 0101 & 02445207 a 0000 & 02445394 a 0000 | having come into contact -02445207 00 s 01 brushed 0 001 & 02445093 a 0000 | touched lightly in passing; grazed against; "of all the people brushed against in a normal day on a city street I remember not a one" -02445394 00 s 01 grazed 0 001 & 02445093 a 0000 | scraped or touched lightly in passing; "his grazed and bleeding arm proved he had been in the line of fire" -02445554 00 a 01 untouched 0 001 ! 02445093 a 0101 | not having come in contact -02445636 00 a 01 tough 1 009 ^ 00829496 a 0000 + 04710866 n 0102 ! 02446651 a 0101 & 02445863 a 0000 & 02445978 a 0000 & 02446070 a 0000 & 02446239 a 0000 & 02446380 a 0000 & 02446551 a 0000 | resistant to cutting or chewing -02445863 00 s 03 cartilaginous 0 gristly 0 rubbery 0 002 & 02445636 a 0000 + 05288091 n 0202 | difficult to chew -02445978 00 s 01 chewy 0 002 & 02445636 a 0000 + 00278810 n 0101 | requiring much chewing -02446070 00 s 04 coriaceous 0 leathered 0 leatherlike 0 leathery 0 002 & 02445636 a 0000 + 14759722 n 0401 | resembling or made to resemble leather; tough but pliable -02446239 00 s 04 fibrous 1 sinewy 0 stringy 0 unchewable 1 001 & 02445636 a 0000 | (of meat) full of sinews; especially impossible to chew -02446380 00 s 02 hempen 0 fibrous 2 002 & 02445636 a 0000 + 14866889 n 0201 | having or resembling fibers especially fibers used in making cordage such as those of jute -02446551 00 s 01 tough-skinned 0 001 & 02445636 a 0000 | having a relatively tough outer covering -02446651 00 a 01 tender 1 007 ^ 00828779 a 0000 + 00514871 v 0102 ! 02445636 a 0101 & 02446846 a 0000 & 02446931 a 0000 & 02447104 a 0000 & 02447215 a 0000 | easy to cut or chew; "tender beef" -02446846 00 s 02 chewable 0 cuttable 0 001 & 02446651 a 0000 | easy to cut or chew -02446931 00 s 02 crisp 0 crispy 0 005 & 02446651 a 0000 + 07712559 n 0202 + 04939547 n 0203 + 07712559 n 0102 + 04939547 n 0102 | tender and brittle; "crisp potato chips" -02447104 00 s 02 flaky 0 flakey 0 002 & 02446651 a 0000 + 04939872 n 0101 | made of or easily forming flakes -02447215 00 s 02 tenderized 0 tenderised 0 001 & 02446651 a 0000 | made tender as by marinating or pounding; "tenderized meat" -02447344 00 a 02 tough 2 toughened 2 007 ^ 00935500 a 0000 ^ 00707366 a 0000 ^ 02321009 a 0000 ! 02448166 a 0101 & 02447569 a 0000 & 02447779 a 0000 & 02448040 a 0000 | physically toughened; "the tough bottoms of his feet" -02447569 00 s 03 calloused 0 callous 0 thickened 0 002 & 02447344 a 0000 + 14364566 n 0201 | having calluses; having skin made tough and thick through wear; "calloused skin"; "with a workman's callous hands" -02447779 00 s 03 enured 0 inured 0 hardened 0 001 & 02447344 a 0000 | made tough by habitual exposure; "hardened fishermen"; "a peasant, dark, lean-faced, wind-inured"- Robert Lynd; "our successors...may be graver, more inured and equable men"- V.S.Pritchett -02448040 00 s 01 weather-beaten 0 001 & 02447344 a 0000 | tanned and coarsened from being outdoors; "a weather-beaten face" -02448166 00 a 02 tender 2 untoughened 2 004 ^ 02324397 a 0000 + 14332617 n 0101 ! 02447344 a 0101 & 02448324 a 0000 | physically untoughened; "tender feet" -02448324 00 s 02 delicate 0 soft 0 001 & 02448166 a 0000 | easily hurt; "soft hands"; "a baby's delicate skin" -02448437 00 a 01 tough 3 005 ^ 01155354 a 0000 ^ 02106761 a 0000 ! 02448889 a 0101 & 02448623 a 0000 & 02448749 a 0000 | not given to gentleness or sentimentality; "a tough character" -02448623 00 s 03 hard-bitten 0 hard-boiled 0 pugnacious 0 001 & 02448437 a 0000 | tough and callous by virtue of experience -02448749 00 s 02 tough-minded 0 unsentimental 0 001 & 02448437 a 0000 | facing facts or difficulties realistically and with determination -02448889 00 a 01 tender 3 006 ^ 01156112 a 0000 + 07554342 n 0101 + 07505347 n 0102 ! 02448437 a 0101 & 02449177 a 0000 & 02449287 a 0000 | given to sympathy or gentleness or sentimentality; "a tender heart"; "a tender smile"; "tender loving care"; "tender memories"; "a tender mother" -02449177 00 s 01 protective 0 002 & 02448889 a 0000 + 07545303 n 0101 | showing care; "a protective mother" -02449287 00 s 01 sentimental 0 003 & 02448889 a 0000 + 07481951 n 0101 + 07482128 n 0101 | given to or marked by sentiment or sentimentality -02449430 00 a 01 toxic 0 012 ^ 01160031 a 0000 ^ 01611067 a 0000 ^ 01167817 a 0000 + 15034074 n 0101 + 13583478 n 0101 ! 02450640 a 0101 & 02449775 a 0000 & 02449952 a 0000 & 02450175 a 0000 & 02450269 a 0000 & 02450364 a 0000 & 02450512 a 0000 | of or relating to or caused by a toxin or poison; "suffering from exposure to toxic substances" -02449775 00 s 02 cyanogenetic 0 cyanogenic 0 003 & 02449430 a 0000 + 14827017 n 0201 + 14827017 n 0101 | capable of producing cyanide; "amygdalin is a cyanogenetic glucoside" -02449952 00 s 03 deadly 0 venomous 0 virulent 0 004 & 02449430 a 0000 + 05166560 n 0301 + 15036916 n 0201 + 04791081 n 0101 | extremely poisonous or injurious; producing venom; "venomous snakes"; "a virulent insect bite" -02450175 00 s 01 hepatotoxic 0 002 & 02449430 a 0000 + 15036103 n 0101 | toxic to the liver -02450269 00 s 01 nephrotoxic 0 002 & 02449430 a 0000 + 15036211 n 0101 | toxic to the kidney -02450364 00 s 01 ototoxic 0 001 & 02449430 a 0000 | toxic to the organs of hearing or balance or to the auditory nerve; "some drugs are ototoxic" -02450512 00 s 02 poisonous 0 toxicant 0 002 & 02449430 a 0000 + 05166397 n 0101 | having the qualities or effects of a poison -02450640 00 a 02 nontoxic 0 atoxic 0 005 ^ 01159655 a 0000 ! 02449430 a 0101 & 02450814 a 0000 & 02450919 a 0000 & 02451014 a 0000 | not producing or resulting from poison -02450814 00 s 01 antitoxic 0 002 & 02450640 a 0000 + 15028050 n 0101 | counteracting a toxin or poison -02450919 00 s 02 nonpoisonous 0 non-poisonous 0 001 & 02450640 a 0000 | not producing poison -02451014 00 s 01 nonvenomous 0 001 & 02450640 a 0000 | not producing venom; "nonvenomous snakes" -02451113 00 a 02 tractable 0 manipulable 0 013 ^ 00696518 a 0000 ^ 02328659 a 0000 ^ 01474513 a 0000 ^ 01612053 a 0000 ^ 02388145 a 0000 = 04905188 n 0000 + 04774365 n 0201 + 04905188 n 0102 + 04905188 n 0101 ! 02451951 a 0101 & 02451551 a 0000 & 02451634 a 0000 & 02451828 a 0000 | easily managed (controlled or taught or molded); "tractable young minds"; "the natives...being...of an intelligent tractable disposition"- Samuel Butler -02451551 00 s 02 ductile 0 malleable 0 001 & 02451113 a 0000 | easily influenced -02451634 00 s 02 docile 0 teachable 0 003 & 02451113 a 0000 + 00829107 v 0201 + 00273734 v 0201 | ready and willing to be taught; "docile pupils eager for instruction"; "teachable youngsters" -02451828 00 s 02 tamable 0 tameable 0 003 & 02451113 a 0000 + 00302130 v 0205 + 00302130 v 0105 | capable of being tamed -02451951 00 a 01 intractable 0 013 ^ 00695523 a 0000 ^ 01613463 a 0000 ^ 02326695 a 0000 ^ 01475282 a 0000 ^ 02389220 a 0000 = 04905188 n 0000 + 04907269 n 0102 + 04907269 n 0101 ! 02451113 a 0101 & 02452379 a 0000 & 02452562 a 0000 & 02452789 a 0000 & 02452919 a 0000 | not tractable; difficult to manage or mold; "an intractable disposition"; "intractable pain"; "the most intractable issue of our era"; "intractable metal" -02452379 00 s 02 balking 0 balky 0 003 & 02451951 a 0000 + 00107279 n 0201 + 04908721 n 0201 | stopping short and refusing to go on; "a balking"; "a balky mule"; "a balky customer" -02452562 00 s 02 refractory 2 stubborn 0 004 & 02451951 a 0000 ;c 06043075 n 0000 + 04908835 n 0201 + 04907575 n 0101 | not responding to treatment; "a stubborn infection"; "a refractory case of acne"; "stubborn rust stains" -02452789 00 s 02 uncontrollable 0 unmanageable 0 001 & 02451951 a 0000 | difficult to solve or alleviate; "uncontrollable pain" -02452919 00 s 01 unmalleable 0 002 & 02451951 a 0000 + 05023974 n 0101 | difficult or impossible to shape or work -02453035 00 a 02 table_d'hote 0 prix_fixe 0 001 ! 02453183 a 0101 | (of a restaurant meal) complete but with limited choices and at a fixed price -02453183 00 a 01 a_la_carte 0 001 ! 02453035 a 0101 | (of a restaurant meal) having unlimited choices with a separate price for each item -02453323 00 a 02 traceable 0 trackable 0 001 ! 02453492 a 0101 | capable of being traced or tracked; "a traceable riverbed"; "the traceable course of an ancient wall" -02453492 00 a 01 untraceable 0 001 ! 02453323 a 0101 | incapable of being traced or tracked down; "an untraceable source" -02453616 00 a 01 tracked 0 003 ! 02454081 a 0101 & 02453770 a 0000 & 02453921 a 0000 | having tracks; "new snow tracked by rabbits"; "tracked vehicles" -02453770 00 s 01 caterpillar-tracked 0 001 & 02453616 a 0000 | having caterpillar treads or tracks on the wheels; "a caterpillar-tracked earthmover" -02453921 00 s 02 half-track 0 half-tracked 0 001 & 02453616 a 0000 | having caterpillar treads on the rear and wheels in front; "half-track armored vehicles" -02454081 00 a 01 trackless 0 001 ! 02453616 a 0101 | having no tracks; "a trackless trolley"; "the trackless snowy meadow" -02454206 00 a 01 traveled 0 002 ! 02454482 a 0101 & 02454339 a 0000 | traveled over or through; sometimes used as a combining term -02454339 00 s 01 heavily_traveled 0 001 & 02454206 a 0000 | subject to much traffic or travel; "the region's most heavily traveled highways" -02454482 00 a 02 untraveled 0 untravelled 0 002 ! 02454206 a 0101 & 02454619 a 0000 | not traveled over or through; "untraveled roads" -02454619 00 s 01 untraversed 0 001 & 02454482 a 0000 | not traveled over or through; "untraveled roads"; "an untraversed region" -02454750 00 a 02 trimmed 0 cut 5 002 ! 02455069 a 0101 & 02454885 a 0000 | made neat and tidy by trimming; "his neatly trimmed hair" -02454885 00 s 01 clipped 0 001 & 02454750 a 0000 | cut or trimmed by clipping; "a handsome man with a clipped moustache"; "clipped hedges"; "close-clipped lawns"; "a clipped poodle" -02455069 00 a 02 untrimmed 0 uncut 5 002 ! 02454750 a 0101 & 02455188 a 0000 | not trimmed; "shaggy untrimmed locks" -02455188 00 s 01 unclipped 0 001 & 02455069 a 0000 | not clipped; "unclipped rosebushes"; "unclipped hair" -02455297 00 a 01 troubled 0 019 ^ 00543603 a 0000 ^ 01923391 a 0000 ! 02459109 a 0101 & 02455845 a 0000 & 02456157 a 0000 & 02456530 a 0000 & 02456698 a 0000 & 02456875 a 0000 & 02457015 a 0000 & 02457167 a 0000 & 02457558 a 0000 & 02457932 a 0000 & 02458046 a 0000 & 02458262 a 0000 & 02458408 a 0000 & 02458497 a 0000 & 02458691 a 0000 & 02458871 a 0000 & 02458973 a 0000 | characterized by or indicative of distress or affliction or danger or need; "troubled areas"; "fell into a troubled sleep"; "a troubled expression"; "troubled teenagers" -02455845 00 s 05 annoyed 0 harassed 0 harried 0 pestered 0 vexed 1 001 & 02455297 a 0000 | troubled persistently especially with petty annoyances; "harassed working mothers"; "a harried expression"; "her poor pestered father had to endure her constant interruptions"; "the vexed parents of an unruly teenager" -02456157 00 s 05 anxious 0 nervous 0 queasy 0 uneasy 0 unquiet 0 006 & 02455297 a 0000 + 04625284 n 0402 + 04625284 n 0303 + 14375576 n 0201 + 07525760 n 0203 + 07524760 n 0101 | causing or fraught with or showing anxiety; "spent an anxious night waiting for the test results"; "cast anxious glances behind her"; "those nervous moments before takeoff"; "an unquiet mind" -02456530 00 s 05 buffeted 0 storm-tossed 0 tempest-tossed 0 tempest-tost 0 tempest-swept 0 001 & 02455297 a 0000 | pounded or hit repeatedly by storms or adversities -02456698 00 s 01 careful 0 003 & 02455297 a 0000 ;u 07073447 n 0000 + 04664058 n 0103 | full of cares or anxiety; "Thou art careful and troubled about many things"-Luke 10.41 -02456875 00 s 02 care-laden 0 heavy-laden 0 001 & 02455297 a 0000 | burdened by cares; "all ye that labor and are heavy-laden"-Matt.11:28 -02457015 00 s 01 clouded 0 001 & 02455297 a 0000 | made troubled or apprehensive or distressed in appearance; "his face was clouded with unhappiness" -02457167 00 s 05 disquieted 0 distressed 1 disturbed 0 upset 0 worried 0 001 & 02455297 a 0000 | afflicted with or marked by anxious uneasiness or trouble or grief; "too upset to say anything"; "spent many disquieted moments"; "distressed about her son's leaving home"; "lapsed into disturbed sleep"; "worried parents"; "a worried frown"; "one last worried check of the sleeping children" -02457558 00 s 04 distressed 0 hard-pressed 0 hard_put 0 in_a_bad_way(p) 1 001 & 02455297 a 0000 | facing or experiencing financial trouble or difficulty; "distressed companies need loans and technical advice"; "financially hard-pressed Mexican hotels are lowering their prices"; "we were hard put to meet the mortgage payment"; "found themselves in a bad way financially" -02457932 00 s 01 fraught 0 001 & 02455297 a 0000 | marked by distress; "a fraught mother-daughter relationship" -02458046 00 s 03 hag-ridden 0 hagridden 0 tormented 0 001 & 02455297 a 0000 | tormented or harassed by nightmares or unreasonable fears; "hagridden...by visions of an imminent heaven or hell upon earth"- C.S.Lewis -02458262 00 s 01 haunted 0 001 & 02455297 a 0000 | showing emotional affliction or disquiet; "her expression became progressively more haunted" -02458408 00 s 01 mothy 0 002 & 02455297 a 0000 + 02283201 n 0101 | infested with moths -02458497 00 s 02 stressed 0 distressed 2 001 & 02455297 a 0000 | suffering severe physical strain or distress; "he dropped out of the race, clearly distressed and having difficulty breathing" -02458691 00 s 01 struggling 0 001 & 02455297 a 0000 | engaged in a struggle to overcome especially poverty or obscurity; "a financially struggling theater"; "struggling artists" -02458871 00 s 01 suffering 0 001 & 02455297 a 0000 | troubled by pain or loss; "suffering refugees" -02458973 00 s 01 troublous 0 003 & 02455297 a 0000 + 07289014 n 0101 + 05687338 n 0101 | full of trouble; "these are troublous times" -02459109 00 a 01 untroubled 0 010 ^ 01922763 a 0000 ^ 00545015 a 0000 ! 02455297 a 0101 & 02459465 a 0000 & 02459667 a 0000 & 02459862 a 0000 & 02459969 a 0000 & 02460099 a 0000 & 02460262 a 0000 & 02460404 a 0000 | not beset by troubles or disturbance or distress; "seemed untroubled by doubts of any kind"; "untroubled sleep"; "a kind untroubled face" -02459465 00 s 02 carefree 0 unworried 0 002 & 02459109 a 0000 + 04672210 n 0101 | free of trouble and worry and care; "the carefree joys of childhood"; "carefree millionaires, untroubled financially" -02459667 00 s 01 clear 0 001 & 02459109 a 0000 | characterized by freedom from troubling thoughts (especially guilt); "a clear conscience"; "regarded her questioner with clear untroubled eyes" -02459862 00 s 01 dreamless 0 001 & 02459109 a 0000 | untroubled by dreams; "a sound and dreamless sleep" -02459969 00 s 01 trouble-free 0 001 & 02459109 a 0000 | without problems or difficulties; "NASA reported a trouble-free launch" -02460099 00 s 01 unconcerned 0 001 & 02459109 a 0000 | easy in mind; not worried; "the prisoner seems entirely unconcerned as to the outcome of the examination" -02460262 00 s 01 undisturbed 0 001 & 02459109 a 0000 | untroubled by interference or disturbance; "he could pursue his studies undisturbed" -02460404 00 s 01 unmolested 0 001 & 02459109 a 0000 | not interfered with, disturbed, or harmed -02460502 00 a 01 true 0 012 ^ 00631391 a 0000 ^ 00958880 a 0000 ^ 01115349 a 0000 ^ 01222360 a 0000 ^ 02179279 a 0000 = 13956488 n 0000 + 13956488 n 0104 ! 02461723 a 0101 & 02460964 a 0000 & 02461295 a 0000 & 02461438 a 0000 & 02461586 a 0000 | consistent with fact or reality; not false; "the story is true"; "it is undesirable to believe a proposition when there is no ground whatever for supposing it true"- B. Russell; "the true meaning of the statement" -02460964 00 s 04 actual 0 genuine 0 literal 0 real 0 006 & 02460502 a 0000 + 13955461 n 0402 + 13956097 n 0401 + 13955461 n 0401 + 04760611 n 0301 + 13955341 n 0201 | being or reflecting the essential or genuine character of something; "her actual motive"; "a literal solitude like a desert"- G.K.Chesterton; "a genuine dilemma" -02461295 00 s 02 apodictic 0 apodeictic 0 002 & 02460502 a 0000 ;c 06163751 n 0000 | of a proposition; necessarily true or logically certain -02461438 00 s 01 truthful 0 001 & 02460502 a 0000 | conforming to truth; "I wouldn't have told you this if it weren't so"; "a truthful statement" -02461586 00 s 01 sure 0 002 & 02460502 a 0000 + 05697363 n 0106 | infallible or unfailing; "a sure (or true) sign of one's commitment" -02461723 00 a 01 false 0 012 ^ 01222884 a 0000 ^ 01116380 a 0000 ^ 00632438 a 0000 ^ 02180797 a 0000 = 13956488 n 0000 + 13960464 n 0102 + 06756407 n 0102 ! 02460502 a 0101 & 02462089 a 0000 & 02462210 a 0000 & 02462375 a 0000 & 02462489 a 0000 | not in accordance with the fact or reality or actuality; "gave false testimony under oath"; "false tales of bravery" -02462089 00 s 01 mendacious 0 002 & 02461723 a 0000 + 04876235 n 0101 | intentionally untrue; "a mendacious statement" -02462210 00 s 02 specious 0 spurious 0 003 & 02461723 a 0000 + 13960833 n 0201 + 04875113 n 0101 | plausible but false; "a specious claim"; "spurious inferences" -02462375 00 s 01 trumped-up(a) 0 001 & 02461723 a 0000 | concocted with intent to deceive; "trumped-up charges" -02462489 00 s 01 untrue 0 001 & 02461723 a 0000 | not according with the facts; "unfortunately the statement was simply untrue" -02462619 00 a 02 trustful 0 trusting 2 006 ^ 00646413 a 0000 + 04895246 n 0202 + 04895246 n 0103 ! 02463154 a 0101 & 02462883 a 0000 & 02463029 a 0000 | inclined to believe or confide readily; full of trust; "great brown eye, true and trustful"- Nordhoff & Hall -02462883 00 s 01 confiding 0 001 & 02462619 a 0000 | willing to entrust personal matters; "first she was suspicious, then she became confiding" -02463029 00 s 02 unsuspecting 0 unsuspicious 0 001 & 02462619 a 0000 | not suspicious; "deceiving the unsuspecting public" -02463154 00 a 01 distrustful 0 009 ^ 00647070 a 0000 + 04895773 n 0102 ! 02462619 a 0101 & 02463582 a 0000 & 02463847 a 0000 & 02464105 a 0000 & 02464277 a 0000 & 02464491 a 0000 & 02464615 a 0000 | having or showing distrust; "a man of distrustful nature"; "my experience...in other fields of law has made me distrustful of rules of thumb generally"- B.N.Cardozo; "vigilant and distrustful superintendence"- Thomas Jefferson -02463582 00 s 03 cynical 0 misanthropic 0 misanthropical 0 005 & 02463154 a 0000 + 10321882 n 0301 + 04658524 n 0301 + 04658524 n 0201 + 09986532 n 0101 | believing the worst of human nature and motives; having a sneering disbelief in e.g. selflessness of others -02463847 00 s 04 doubting 0 questioning 0 skeptical 0 sceptical 0 006 & 02463154 a 0000 + 05980051 n 0403 + 10604634 n 0402 + 10604634 n 0301 + 05980051 n 0302 + 05698982 n 0303 | marked by or given to doubt; "a skeptical attitude"; "a skeptical listener" -02464105 00 s 03 jealous 0 green-eyed 0 overjealous 0 001 & 02463154 a 0000 | suspicious or unduly suspicious or fearful of being displaced by a rival; "a jealous lover" -02464277 00 s 05 leery 0 mistrustful 0 suspicious 0 untrusting 0 wary 0 005 & 02463154 a 0000 + 04664413 n 0501 + 05698791 n 0304 + 04895979 n 0302 + 06716483 n 0102 | openly distrustful and unwilling to confide -02464491 00 s 01 misogynic 0 002 & 02463154 a 0000 + 07547064 n 0101 | (used of men) having deep-seated distrust of women -02464615 00 s 01 oversuspicious 0 001 & 02463154 a 0000 | unduly suspicious -02464693 00 a 02 trustworthy 0 trusty 0 015 ^ 00958880 a 0000 ^ 01222360 a 0000 ^ 00724081 a 0000 ^ 01996377 a 0000 + 13929852 n 0202 + 05943066 n 0202 + 04895246 n 0201 + 04668819 n 0202 + 04668819 n 0101 ! 02466111 a 0101 & 02465115 a 0000 & 02465350 a 0000 & 02465519 a 0000 & 02465909 a 0000 & 02465978 a 0000 | worthy of trust or belief; "a trustworthy report"; "an experienced and trustworthy traveling companion" -02465115 00 s 02 authentic 0 reliable 1 004 & 02464693 a 0000 + 04670022 n 0204 + 04670022 n 0203 + 04783247 n 0101 | conforming to fact and therefore worthy of belief; "an authentic account by an eyewitness"; "reliable information" -02465350 00 s 02 creditworthy 0 responsible 0 003 & 02464693 a 0000 + 04669247 n 0202 + 04669063 n 0101 | having an acceptable credit rating; "a responsible borrower" -02465519 00 s 04 dependable 0 honest 0 reliable 2 true(p) 0 007 & 02464693 a 0000 + 04877530 n 0402 + 04670022 n 0304 + 04670022 n 0303 + 04871374 n 0202 + 04670022 n 0102 + 04670022 n 0101 | worthy of being depended on; "a dependable worker"; "an honest working stiff"; "a reliable sourcSFLe of information"; "he was true to his word"; "I would be true for there are those who trust me" -02465909 00 s 01 fiducial 0 001 & 02464693 a 0000 | based on trust -02465978 00 s 02 sure 0 trusted 0 001 & 02464693 a 0000 | (of persons) worthy of trust or confidence; "a sure (or trusted) friend" -02466111 00 a 02 untrustworthy 0 untrusty 0 009 ^ 01222884 a 0000 ^ 00959731 a 0000 ^ 00724861 a 0000 + 04670531 n 0202 + 04670531 n 0101 ! 02464693 a 0101 & 02466382 a 0000 & 02466566 a 0000 & 02466734 a 0000 | not worthy of trust or belief; "an untrustworthy person" -02466382 00 s 02 devious 0 shifty 0 003 & 02466111 a 0000 + 04875728 n 0202 + 04875556 n 0102 | characterized by insincerity or deceit; evasive; "a devious character"; "shifty eyes" -02466566 00 s 02 fly-by-night 0 shady 0 003 & 02466111 a 0000 + 04811767 n 0201 + 10098388 n 0101 | (of businesses and businessmen) unscrupulous; "a shady operation" -02466734 00 s 02 slippery 0 tricky 0 003 & 02466111 a 0000 + 04875728 n 0204 + 04875728 n 0103 | not to be trusted; "how extraordinarily slippery a liar the camera is"- James Agee -02466916 00 a 01 tubed 0 001 ! 02466999 a 0101 | of a tire; having an inner tube -02466999 00 a 01 tubeless 0 002 + 04494762 n 0101 ! 02466916 a 0101 | of a tire; not needing an inner tube -02467108 00 a 01 tucked 0 001 ! 02467241 a 0101 | having tucked or being tucked; "tightly tucked blankets"; "a fancy tucked shirt" -02467241 00 a 01 untucked 0 001 ! 02467108 a 0101 | lacking tucks or not being tucked; "the sheet came untucked"; "plain untucked shirt front" -02467386 00 a 01 turned 0 006 ! 02468326 a 0101 & 02467559 a 0000 & 02467766 a 0000 & 02467982 a 0000 & 02468110 a 0000 & 02468208 a 0000 | moved around an axis or center -02467559 00 s 02 inverted 0 upside-down 0 001 & 02467386 a 0000 | being in such a position that top and bottom are reversed; "a quotation mark is sometimes called an inverted comma"; "an upside-down cake" -02467766 00 s 03 overturned 0 upset 0 upturned 0 001 & 02467386 a 0000 | having been turned so that the bottom is no longer the bottom; "an overturned car"; "the upset pitcher of milk"; "sat on an upturned bucket" -02467982 00 s 01 reversed 0 001 & 02467386 a 0000 | turned inside out and resewn; "the reversed collar looked as good as new" -02468110 00 s 02 rotated 0 revolved 0 001 & 02467386 a 0000 | turned in a circle around an axis -02468208 00 s 02 wrong-side-out(p) 0 inside-out(p) 0 001 & 02467386 a 0000 | with the inside surface on the outside -02468326 00 a 01 unturned 0 003 ! 02467386 a 0101 & 02468453 a 0000 & 02468538 a 0000 | not turned; "left no stone unturned" -02468453 00 s 01 right-side-out(p) 0 001 & 02468326 a 0000 | of fabric or clothing -02468538 00 s 01 right-side-up(p) 0 001 & 02468326 a 0000 | of objects having a top and bottom -02468635 00 a 01 typical 0 008 ^ 00356926 a 0000 = 14501545 n 0000 + 14501545 n 0101 ! 02469928 a 0101 & 02469119 a 0000 & 02469407 a 0000 & 02469577 a 0000 & 02469756 a 0000 | exhibiting the qualities or characteristics that identify a group or kind or category; "a typical American girl"; "a typical suburban community"; "the typical car owner drives 10,000 miles a year"; "a painting typical of the Impressionist school"; "a typical romantic poem"; "a typical case of arteritis" -02469119 00 s 03 emblematic 0 exemplary 0 typic 0 005 & 02468635 a 0000 + 09909060 n 0303 + 05820620 n 0201 + 06880664 n 0101 + 03282591 n 0101 | being or serving as an illustration of a type; "the free discussion that is emblematic of democracy"; "an action exemplary of his conduct"; -02469407 00 s 01 representative 0 002 & 02468635 a 0000 + 02541921 v 0101 | serving to represent or typify; "representative moviegoers"; "a representative modern play" -02469577 00 s 02 regular(a) 0 veritable(a) 0 001 & 02468635 a 0000 | often used as intensifiers; "a regular morass of details"; "a regular nincompoop"; "he's a veritable swine" -02469756 00 s 01 true 0 001 & 02468635 a 0000 | conforming to definitive criteria; "the horseshoe crab is not a true crab"; "Pythagoras was the first true mathematician" -02469928 00 a 02 atypical 0 untypical 0 007 ^ 01595596 a 0000 ^ 00357983 a 0000 = 14501545 n 0000 + 14503060 n 0202 + 14503060 n 0101 ! 02468635 a 0101 & 02470316 a 0000 | not representative of a group, class, or type; "a group that is atypical of the target audience"; "a class of atypical mosses"; "atypical behavior is not the accepted type of response that we expect from children" -02470316 00 s 01 unrepresentative 0 001 & 02469928 a 0000 | not exemplifying a class; "I soon tumbled to the fact that my weekends were atypical"; "behavior quite unrepresentative (or atypical) of the profession" -02470531 00 a 03 underhand 0 underhanded 0 underarm 0 002 ;c 00523513 n 0000 ! 02470734 a 0101 | with hand brought forward and up from below shoulder level; "an underhand pitch"; "an underhand stroke" -02470734 00 a 03 overhand 0 overhanded 0 overarm 0 003 ;c 00523513 n 0000 ! 02470531 a 0101 & 02470952 a 0000 | with hand brought forward and down from above shoulder level; "an overhand pitch"; "an overhand stroke" -02470952 00 s 01 round-arm 0 002 & 02470734 a 0000 ;c 00476389 n 0000 | with the arm swung round at shoulder height; "round-arm bowling" -02471091 00 a 01 surface 0 005 ! 02471782 a 0101 ! 02472563 a 0101 & 02471264 a 0000 & 02471466 a 0000 & 02471602 a 0000 | on the surface; "surface materials of the moon" -02471264 00 s 01 aboveground 0 001 & 02471091 a 0000 | on or above the surface of the ground; "aboveground nuclear testing"; "surface instruments for detecting oil deposits"; "surface transportation" -02471466 00 s 01 grade-constructed 0 001 & 02471091 a 0000 | constructed at ground level; "grade-constructed accesses to the freeway" -02471602 00 s 02 opencast 0 opencut 0 002 & 02471091 a 0000 ;c 00922327 n 0000 | (of mines and mining) worked from the exposed surface; "opencast mining"; "an opencut iron mine" -02471782 00 a 01 subsurface 0 006 ! 02472563 a 0101 ! 02471091 a 0101 & 02471984 a 0000 & 02472137 a 0000 & 02472252 a 0000 & 02472384 a 0000 | beneath the surface; "subsurface materials of the moon" -02471984 00 s 02 belowground 0 underground 0 001 & 02471782 a 0000 | under the level of the ground; "belowground storage areas"; "underground caverns" -02472137 00 s 02 submarine 0 undersea 0 002 & 02471782 a 0000 + 04347754 n 0101 | beneath the surface of the sea -02472252 00 s 03 submerged 1 submersed 1 underwater 0 001 & 02471782 a 0000 | beneath the surface of the water; "submerged rocks" -02472384 00 s 02 subterranean 0 subterraneous 0 001 & 02471782 a 0000 | being or operating under the surface of the earth; "subterranean passages"; "a subsurface flow of water" -02472563 00 a 01 overhead 0 002 ! 02471091 a 0101 ! 02471782 a 0101 | located or originating from above; "an overhead crossing" -02472693 00 a 02 submersible 0 submergible 0 009 + 01991472 v 0201 + 01578254 v 0201 + 00217700 v 0203 + 04348359 n 0101 + 04348184 n 0101 + 01991472 v 0101 + 01578254 v 0101 + 00217700 v 0103 ! 02473033 a 0101 | capable of being immersed in water or functioning while submerged; "a submersible pump"; "a submergible electric frying pan" -02473033 00 a 02 nonsubmersible 0 nonsubmergible 0 001 ! 02472693 a 0101 | not submersible or submergible -02473141 00 a 01 tearful 0 007 + 07534278 n 0102 ! 02473977 a 0101 & 02473371 a 0000 & 02473543 a 0000 & 02473655 a 0000 & 02473757 a 0000 & 02473886 a 0000 | filled with or marked by tears; "tearful eyes"; "tearful entreaties" -02473371 00 s 02 liquid 0 swimming 0 002 & 02473141 a 0000 + 14480420 n 0102 | filled or brimming with tears; "swimming eyes"; "sorrow made the eyes of many grow liquid" -02473543 00 s 01 misty-eyed 0 001 & 02473141 a 0000 | having eyes blurred as with tears; "sad and misty-eyed" -02473655 00 s 03 teary 0 teary-eyed 0 watery-eyed 0 001 & 02473141 a 0000 | with eyes full of tears -02473757 00 s 03 sniffly 0 snuffling 0 snuffly 0 003 & 02473141 a 0000 + 00836149 n 0301 + 00836149 n 0102 | liable to sniffle -02473886 00 s 01 weepy 0 002 & 02473141 a 0000 + 07534278 n 0101 | liable to weep easily -02473977 00 a 02 tearless 0 dry-eyed 0 002 ! 02473141 a 0101 & 02474076 a 0000 | free from tears -02474076 00 s 01 dry 0 002 & 02473977 a 0000 + 14536438 n 0101 | not shedding tears; "dry sobs"; "with dry eyes" -02474191 00 a 01 union 0 003 ! 02474674 a 0101 & 02474377 a 0000 & 02474476 a 0000 | of trade unions; "the union movement"; "union negotiations"; "a union-shop clause in the contract" -02474377 00 s 01 closed(a) 0 001 & 02474191 a 0000 | requiring union membership; "a closed shop" -02474476 00 s 04 organized 0 organised 0 unionized 0 unionised 0 001 & 02474191 a 0000 | being a member of or formed into a labor union; "organized labor"; "unionized workers"; "a unionized shop" -02474674 00 a 01 nonunion 0 003 ! 02474191 a 0101 & 02474876 a 0000 & 02475001 a 0000 | not belonging to or not allowing affiliation with a trade union; "nonunion carpenters"; "a nonunion contractor" -02474876 00 s 01 open(a) 0 001 & 02474674 a 0000 | not requiring union membership; "an open shop employs nonunion workers" -02475001 00 s 04 unorganized 0 unorganised 0 nonunionized 0 nonunionised 0 001 & 02474674 a 0000 | not affiliated in a trade union; "the workers in the plant were unorganized" -02475179 00 a 01 uniparous 0 002 ;c 06037666 n 0000 ! 02475292 a 0101 | producing only one offspring at a time -02475292 00 a 01 multiparous 0 003 ;c 06037666 n 0000 ! 02475179 a 0101 & 02475430 a 0000 | producing more than one offspring at a time -02475430 00 s 02 biparous 0 twinning 0 001 & 02475292 a 0000 | producing two offspring at a time -02475529 00 a 01 unipolar 0 001 ! 02475604 a 0101 | having a single pole -02475604 00 a 01 bipolar 0 002 ! 02475529 a 0101 & 02475692 a 0000 | having two poles -02475692 00 s 01 Janus-faced 0 001 & 02475604 a 0000 | having or concerned with polarities or contrasts; "a Janus-faced view of history"; "a Janus-faced policy" -02475855 00 a 01 united 0 020 ^ 00466808 a 0000 ^ 01326148 a 0000 ^ 02111684 a 0000 ! 02478749 a 0101 & 02476338 a 0000 & 02476485 a 0000 & 02476637 a 0000 & 02476870 a 0000 & 02477047 a 0000 & 02477211 a 0000 & 02477335 a 0000 & 02477457 a 0000 & 02477557 a 0000 & 02477691 a 0000 & 02477885 a 0000 & 02478052 a 0000 & 02478215 a 0000 & 02478383 a 0000 & 02478504 a 0000 & 02478589 a 0000 | characterized by unity; being or joined into a single entity; "presented a united front" -02476338 00 s 02 agreed 0 in_agreement(p) 0 001 & 02475855 a 0000 | united by being of the same opinion; "agreed in their distrust of authority" -02476485 00 s 03 allied 0 confederate 0 confederative 0 003 & 02475855 a 0000 + 02434541 v 0301 + 09761068 n 0202 | united in a confederacy or league -02476637 00 s 05 amalgamate 0 amalgamated 0 coalesced 0 consolidated 0 fused 0 001 & 02475855 a 0000 | joined together into a whole; "United Industries"; "the amalgamated colleges constituted a university"; "a consolidated school" -02476870 00 s 02 coalescent 0 coalescing 0 003 & 02475855 a 0000 + 00382109 n 0102 + 00382109 n 0101 | growing together, fusing; "coalescent tradititions"; "coalescent bones" -02477047 00 s 01 cohesive 0 003 & 02475855 a 0000 + 02753642 v 0101 + 14420464 n 0104 | cohering or tending to cohere; well integrated; "a cohesive organization" -02477211 00 s 03 conjugate 0 conjugated 0 coupled 0 001 & 02475855 a 0000 | joined together especially in a pair or pairs -02477335 00 s 01 conjunct 0 001 & 02475855 a 0000 | bound in close association; "conjunct influences"; "conjunct ideas" -02477457 00 s 02 federate 0 federated 0 001 & 02475855 a 0000 | united under a central government -02477557 00 s 05 incorporate 0 incorporated 0 integrated 0 merged 0 unified 0 001 & 02475855 a 0000 | formed or united into a whole -02477691 00 s 01 in_league(p) 0 001 & 02475855 a 0000 | (usually followed by `with') united in effort as if in a league; "they found out that some policemen were in league with the criminals" -02477885 00 s 02 one(a) 0 unitary 0 002 & 02475855 a 0000 + 04743370 n 0101 | having the indivisible character of a unit; "a unitary action"; "spoke with one voice" -02478052 00 s 01 suprasegmental 0 002 & 02475855 a 0000 ;c 06172789 n 0000 | pertaining to a feature of speech that extends over more than a single speech sound -02478215 00 s 01 tied 0 001 & 02475855 a 0000 | bound together by or as if by a strong rope; especially as by a bond of affection; "people tied by blood or marriage" -02478383 00 s 01 undivided 0 001 & 02475855 a 0000 | not parted by conflict of opinion; "presented an undivided front" -02478504 00 s 01 unpartitioned 0 001 & 02475855 a 0000 | not divided by partitions -02478589 00 s 02 unsegmented 0 nonsegmental 0 002 & 02475855 a 0000 ;c 06083243 n 0000 | having a body that is not divided into segments; "unsegmented worms" -02478749 00 a 01 divided 0 029 ^ 00467913 a 0000 ^ 01326917 a 0000 ^ 02109678 a 0000 ! 02475855 a 0101 & 02479361 a 0000 & 02479492 a 0000 & 02479602 a 0000 & 02480023 a 0000 & 02480151 a 0000 & 02480317 a 0000 & 02480631 a 0000 & 02480747 a 0000 & 02480861 a 0000 & 02481012 a 0000 & 02481354 a 0000 & 02481457 a 0000 & 02481608 a 0000 & 02481793 a 0000 & 02481870 a 0000 & 02481951 a 0000 & 02482159 a 0000 & 02482298 a 0000 & 02482509 a 0000 & 02482644 a 0000 & 02482790 a 0000 & 02482932 a 0000 & 02483011 a 0000 & 02483198 a 0000 & 02483311 a 0000 | separated into parts or pieces; "opinions are divided" -02479361 00 s 02 bicameral 0 two-chambered 0 001 & 02478749 a 0000 | consisting of two chambers; "the bicameral heart of a fish" -02479492 00 s 01 bifid 0 002 & 02478749 a 0000 ;c 06066555 n 0000 | divided into two lobes; "a bifid petal" -02479602 00 s 08 bifurcate 0 biramous 0 branched 0 forked 0 fork-like 0 forficate 0 pronged 2 prongy 0 002 & 02478749 a 0000 + 04010927 n 0801 | resembling a fork; divided or separated into two branches; "the biramous appendages of an arthropod"; "long branched hairs on its legson which pollen collects"; "a forked river"; "a forked tail"; "forked lightning"; "horseradish grown in poor soil may develop prongy roots" -02480023 00 s 01 bifurcated 0 001 & 02478749 a 0000 | divided into or made up of two parts; "socially bifurcated populations" -02480151 00 s 02 bilocular 0 biloculate 0 002 & 02478749 a 0000 ;c 06037666 n 0000 | divided into or containing two cells or chambers; "having a bilocular capsule" -02480317 00 s 01 black-and-white 0 001 & 02478749 a 0000 | of a situation that is sharply divided into mutually exclusive categories; "he rejected a black-and-white world"; "there are no black-and-white certainties"; "there were no grey areas, you were either for him or against him, he was all black-and-white" -02480631 00 s 01 chambered 0 001 & 02478749 a 0000 | having compartmental chambers; "a spiral chambered seashell" -02480747 00 s 02 cloven 0 bisulcate 0 001 & 02478749 a 0000 | (used of hooves) split, divided; "bisulcate hoof" -02480861 00 s 01 dichotomous 0 002 & 02478749 a 0000 + 07939880 n 0101 | divided or dividing into two sharply distinguished parts or classifications -02481012 00 s 04 disconnected 0 disunited 0 fragmented 0 split 0 002 & 02478749 a 0000 + 14417697 n 0104 | having been divided; having the unity destroyed; "Congress...gave the impression of...a confusing sum of disconnected local forces"-Samuel Lubell; "a league of disunited nations"- E.B.White; "a fragmented coalition"; "a split group" -02481354 00 s 01 disjointed 0 001 & 02478749 a 0000 | taken apart at the joints; "a disjointed fowl" -02481457 00 s 01 disjunct 0 002 & 02478749 a 0000 ;c 06083243 n 0000 | having deep constrictions separating head, thorax, and abdomen, as in insects -02481608 00 s 01 episodic 0 001 & 02478749 a 0000 | of writing or narration; divided into or composed of episodes; "the book is episodic and the incidents don't always hang together" -02481793 00 s 01 four-pronged 0 001 & 02478749 a 0000 | having four prongs -02481870 00 s 01 many-chambered 0 001 & 02478749 a 0000 | having many chambers -02481951 00 s 03 metameric 0 segmental 0 segmented 0 003 & 02478749 a 0000 ;c 06083243 n 0000 + 02665812 n 0101 | having the body divided into successive metameres or segments, as in earthworms or lobsters -02482159 00 s 01 mullioned 0 001 & 02478749 a 0000 | of windows; divided by vertical bars or piers usually of stone; "mullioned windows" -02482298 00 s 01 pentamerous 0 002 & 02478749 a 0000 ;c 06066555 n 0000 | divided into five parts; specifically, having each floral whorl consist of five (or a multiple of five) members; "pentamerous flowers" -02482509 00 s 02 pronged 0 tined 0 001 & 02478749 a 0000 | having prongs or tines; usually used in combination; "a three-tined fork" -02482644 00 s 02 sectional 0 sectioned 0 001 & 02478749 a 0000 | consisting of or divided into sections; "a sectional sofa"; "sectioned plates" -02482790 00 s 01 segmental 2 002 & 02478749 a 0000 ;c 06172789 n 0000 | divided or organized into speech segments or isolable speech sounds -02482932 00 s 01 three-pronged 0 001 & 02478749 a 0000 | having three prongs -02483011 00 s 01 torn 0 001 & 02478749 a 0000 | disrupted by the pull of contrary forces; "torn between love and hate"; "torn by conflicting loyalties"; "torn by religious dissensions" -02483198 00 s 01 trifid 0 002 & 02478749 a 0000 ;c 06066555 n 0000 | divided into three lobes; "trifid petals" -02483311 00 s 01 two-pronged 0 001 & 02478749 a 0000 | having two prongs -02483386 00 a 01 adnate 0 002 ;c 06037666 n 0000 ! 02483540 a 0101 | of unlike parts or organs; growing closely attached; "a calyx adnate to the ovary" -02483540 00 a 01 connate 0 002 ;c 06037666 n 0000 ! 02483386 a 0101 | of similar parts or organs; closely joined or united; "a connate tomato flower" -02483692 00 a 01 univalve 0 003 ;c 06083243 n 0000 ! 02483908 a 0101 & 02483839 a 0000 | used of mollusks, especially gastropods, as snails etc. -02483839 00 s 01 single-shelled 0 001 & 02483692 a 0000 | univalve -02483908 00 a 02 bivalve 0 bivalved 0 004 ;c 06083243 n 0000 + 01955933 n 0101 ! 02483692 a 0101 & 02484078 a 0000 | used of mollusks having two shells (as clams etc.) -02484078 00 s 03 lamellibranch 0 pelecypod 0 pelecypodous 0 003 & 02483908 a 0000 + 01955933 n 0302 + 01955933 n 0202 | bivalve -02484208 00 a 01 ascending(a) 0 009 ^ 02490170 a 0000 ! 02485650 a 0101 & 02484530 a 0000 & 02484638 a 0000 & 02484919 a 0000 & 02485050 a 0000 & 02485168 a 0000 & 02485319 a 0000 & 02485488 a 0000 | moving or going or growing upward; "the ascending plane"; "the ascending staircase"; "the ascending stems of chickweed" -02484530 00 s 03 acclivitous 0 rising 0 uphill 0 002 & 02484208 a 0000 + 09206985 n 0102 | sloping upward -02484638 00 s 03 ascendant 0 ascendent 0 ascensive 0 007 & 02484208 a 0000 + 01969216 v 0301 + 02037472 v 0301 + 01970348 v 0204 + 02037472 v 0201 + 01969216 v 0101 + 02037472 v 0101 | tending or directed upward; "rooted and ascendant strength like that of foliage"- John Ruskin -02484919 00 s 01 assurgent 0 002 & 02484208 a 0000 ;c 06066555 n 0000 | growing or extending upward; "an assurgent stem or leaf" -02485050 00 s 01 assurgent 2 002 & 02484208 a 0000 ;c 05801594 n 0000 | rising from the sea; "a seahorse assurgent" -02485168 00 s 01 scandent 0 001 & 02484208 a 0000 | used especially of plants; having a tendency to climb; "plants of a creeping or scandent nature" -02485319 00 s 01 highflying(a) 0 001 & 02484208 a 0000 | moving upward or along at a considerable height; "some highflying fighter pilot fired a cannon shell into it" -02485488 00 s 02 up(a) 0 upward(a) 0 001 & 02484208 a 0000 | extending or moving toward a higher place; "the up staircase"; "a general upward movement of fish" -02485650 00 a 01 descending(a) 0 010 ^ 02491961 a 0000 ! 02484208 a 0101 & 02485895 a 0000 & 02486046 a 0000 & 02486122 a 0000 & 02486248 a 0000 & 02486425 a 0000 & 02486504 a 0000 & 02486628 a 0000 & 02486797 a 0000 | coming down or downward -02485895 00 s 03 declivitous 0 downhill 0 downward-sloping 0 003 & 02485650 a 0000 + 09269472 n 0201 + 09265620 n 0102 | sloping down rather steeply -02486046 00 s 01 degressive 0 001 & 02485650 a 0000 | going down by steps -02486122 00 s 02 descendant 0 descendent 0 003 & 02485650 a 0000 + 01970826 v 0201 + 01970826 v 0101 | going or coming down -02486248 00 s 02 down(a) 0 downward(a) 0 001 & 02485650 a 0000 | extending or moving from a higher to a lower place; "the down staircase"; "the downward course of the stream" -02486425 00 s 01 downward-arching 0 001 & 02485650 a 0000 | curving downward -02486504 00 s 01 drizzling 0 001 & 02485650 a 0000 | (of rain) falling lightly in very small drops; "a raw drizzing rain" -02486628 00 s 02 dropping 0 falling 0 001 & 02485650 a 0000 | coming down freely under the influence of gravity; "the eerie whistle of dropping bombs"; "falling rain" -02486797 00 s 01 raining 0 001 & 02485650 a 0000 | falling in drops or as if falling like rain; "watched the raining apple blossoms" -02486932 00 a 01 rising 0 002 ! 02487244 a 0101 & 02487108 a 0000 | advancing or becoming higher or greater in degree or value or status; "a rising trend"; "a rising market" -02487108 00 s 02 improving 0 up 0 001 & 02486932 a 0000 | getting higher or more vigorous; "its an up market"; "an improving economy" -02487244 00 a 01 falling 0 003 ! 02486932 a 0101 & 02487414 a 0000 & 02487540 a 0000 | becoming lower or less in degree or value; "a falling market"; "falling incomes" -02487414 00 s 01 down(a) 0 001 & 02487244 a 0000 | becoming progressively lower; "the down trend in the real estate market" -02487540 00 s 01 soft 0 002 & 02487244 a 0000 + 14489859 n 0101 | (of a commodity or market or currency) falling or likely to fall in value; "the market for computers is soft" -02487718 00 a 01 climactic 0 005 + 14568516 n 0101 + 07417043 n 0101 + 06373747 n 0101 + 00062133 n 0102 ! 02487906 a 0101 | consisting of or causing a climax; "a climactic development" -02487906 00 a 01 anticlimactic 0 002 + 07427951 n 0101 ! 02487718 a 0101 | coming after the climax especially of a dramatic or narrative plot; "everything after the discovery of the murderer was anticlimactic" -02488118 00 a 01 upmarket 0 002 ! 02488445 a 0101 & 02488304 a 0000 | designed for consumers with high incomes; "he turned up in well-cut clothes...and upmarket felt hats"- New Yorker -02488304 00 s 01 upscale 0 001 & 02488118 a 0000 | appropriate for people with good incomes; "an upscale neighborhood"; "an upscale motel" -02488445 00 a 01 downmarket 0 002 ! 02488118 a 0101 & 02488553 a 0000 | designed for low-income consumers -02488553 00 s 01 downscale 0 001 & 02488445 a 0000 | intended for people with low incomes; "mass-produced downscale versions of high-priced fashions" -02488705 00 a 01 transitive 0 005 ;c 06174404 n 0000 + 00420716 v 0101 + 13798118 n 0102 + 13798118 n 0101 ! 02488907 a 0101 | designating a verb that requires a direct object to complete the meaning -02488907 00 a 01 intransitive 0 004 ;c 06174404 n 0000 + 13798301 n 0102 + 13798301 n 0101 ! 02488705 a 0101 | designating a verb that does not require or cannot take a direct object -02489092 00 a 01 translatable 0 001 ! 02489312 a 0101 | capable of being put into another form or style or language; "substances readily translatable to the American home table"; "his books are eminently translatable" -02489312 00 a 01 untranslatable 0 001 ! 02489092 a 0101 | not capable of being put into another form or style or language; "an untranslatable idiom"; "untranslatable art" -02489485 00 a 04 ungulate 0 ungulated 0 hoofed 0 hooved 0 003 + 02370806 n 0101 ! 02489745 a 0101 & 02489667 a 0000 | having or resembling hoofs; "horses and other hoofed animals" -02489667 00 s 01 solid-hoofed 0 001 & 02489485 a 0000 | having solid hooves -02489745 00 a 02 unguiculate 0 unguiculated 0 004 + 02371344 n 0101 ! 02489485 a 0101 & 02489961 a 0000 & 02490098 a 0000 | having or resembling claws or nails; "unguiculate animals"; "an unguiculate flower petal" -02489961 00 s 01 clawed 0 001 & 02489745 a 0000 | having or resembling a claw or claws; often used as a combining form; "sharp-clawed" -02490098 00 s 01 clawlike 0 001 & 02489745 a 0000 | resembling a claw -02490170 00 a 01 up 0 012 ^ 02484208 a 0000 ^ 01204557 a 0000 ! 02491961 a 0101 & 02490631 a 0000 & 02490831 a 0000 & 02490949 a 0000 & 02491171 a 0000 & 02491308 a 0000 & 02491421 a 0000 & 02491578 a 0000 & 02491708 a 0000 & 02491836 a 0000 | being or moving higher in position or greater in some value; being above a former position or level; "the anchor is up"; "the sun is up"; "he lay face up"; "he is up by a pawn"; "the market is up"; "the corn is up" -02490631 00 s 03 ahead(p) 0 in_the_lead 0 leading 0 001 & 02490170 a 0000 | having the leading position or higher score in a contest; "he is ahead by a pawn"; "the leading team in the pennant race" -02490831 00 s 01 aweigh 0 001 & 02490170 a 0000 | (used of an anchor) hanging clear of the bottom; "anchors aweigh" -02490949 00 s 02 dormie 0 dormy 0 002 & 02490170 a 0000 ;c 00464894 n 0000 | in match play a side that stands as many holes ahead as there are holes remaining to be played; "he was dormie three and still lost the match" -02491171 00 s 02 heavenward 0 skyward 0 001 & 02490170 a 0000 | directed toward heaven or the sky; "the soul in its heavenward flight" -02491308 00 s 01 risen 0 001 & 02490170 a 0000 | (of e.g. celestial bodies) above the horizon; "the risen sun" -02491421 00 s 01 sprouted 0 002 & 02490170 a 0000 ;c 08436759 n 0000 | (of growing vegetation) having just emerged from the ground; "the corn is sprouted" -02491578 00 s 01 upbound 0 001 & 02490170 a 0000 | heading in any direction that is conventionally up; "upbound shipping lanes" -02491708 00 s 01 upfield 0 002 & 02490170 a 0000 ;c 00523513 n 0000 | away from the defending teams' end of the playing field -02491836 00 s 01 upward 0 001 & 02490170 a 0000 | directed up; "the cards were face upward"; "an upward stroke of the pen" -02491961 00 a 01 down 0 012 ^ 02485650 a 0000 ^ 01206474 a 0000 ! 02490170 a 0101 & 02492383 a 0000 & 02492565 a 0000 & 02492719 a 0000 & 02492812 a 0000 & 02492981 a 0000 & 02493137 a 0000 & 02493300 a 0000 & 02493395 a 0000 & 02493574 a 0000 | being or moving lower in position or less in some value; "lay face down"; "the moon is down"; "our team is down by a run"; "down by a pawn"; "the stock market is down today" -02492383 00 s 01 behind(p) 0 001 & 02491961 a 0000 | having the lower score or lagging position in a contest; "behind by two points"; "the 8th inning found the home team trailing" -02492565 00 s 01 downbound 0 001 & 02491961 a 0000 | heading in any direction that is conventionally down; "a downbound channel"; "the downbound train" -02492719 00 s 01 downcast 0 001 & 02491961 a 0000 | directed downward; "a downcast glance" -02492812 00 s 01 downfield 0 002 & 02491961 a 0000 ;c 00523513 n 0000 | toward or in the defending team's end of the playing field; "he threw to a downfield receiver" -02492981 00 s 01 downward(ip) 0 001 & 02491961 a 0000 | on or toward a surface regarded as a base; "he lay face downward"; "the downward pull of gravity" -02493137 00 s 01 fallen 0 001 & 02491961 a 0000 | having dropped by the force of gravity; "fallen leaves covered the forest floor"; "sat on a fallen tree trunk" -02493300 00 s 01 set(p) 0 001 & 02491961 a 0000 | being below the horizon; "the moon is set" -02493395 00 s 01 thrown 0 001 & 02491961 a 0000 | caused to fall to the ground; "the thrown rider got back on his horse"; "a thrown wrestler"; "a ball player thrown for a loss" -02493574 00 s 01 weak 0 002 & 02491961 a 0000 + 14474718 n 0101 | tending downward in price; "a weak market for oil stocks" -02493700 00 a 01 upstage 0 001 ! 02493867 a 0101 | of the back half of a stage; "she crossed to the upstage chair forcing the lead to turn his back to the audience" -02493867 00 a 01 downstage 0 001 ! 02493700 a 0101 | of the front half of a stage -02493951 00 a 02 upstairs 0 upstair 0 001 ! 02494092 a 0101 | on or of upper floors of a building; "the upstairs maid"; "an upstairs room" -02494092 00 a 02 downstairs 0 downstair 0 002 ! 02493951 a 0101 & 02494253 a 0000 | on or of lower floors of a building; "the downstairs (or downstair) phone" -02494253 00 s 01 ground-floor 0 001 & 02494092 a 0000 | on the floor closest to level with the ground; "the ground-floor entrance is kept locked" -02494401 00 a 01 upstream 0 001 ! 02494499 a 0101 | in the direction against a stream's current -02494499 00 a 01 downstream 0 001 ! 02494401 a 0101 | in the direction of a stream's current -02494594 00 a 01 uptown 0 001 ! 02494716 a 0101 | of or located in the upper part of a town; "uptown residential areas" -02494716 00 a 01 downtown 0 002 + 08539072 n 0102 ! 02494594 a 0101 | of or located in the lower part of a town, or in the business center; "downtown Manhattan"; "delinquents roaming the downtown streets" -02494923 00 a 01 used 0 003 ! 02495346 a 0101 & 02495156 a 0000 & 02495270 a 0000 | employed in accomplishing something; "the principle of surprise is the most used and misused of all the principles of war"- H.H.Arnold & I.C.Eaker -02495156 00 s 01 in_use 0 001 & 02494923 a 0000 | currently being used; "robots are in use throughout industry" -02495270 00 s 02 utilized 0 utilised 0 001 & 02494923 a 0000 | put to use -02495346 00 a 01 misused 0 003 ! 02494923 a 0101 & 02495564 a 0000 & 02495687 a 0000 | used incorrectly or carelessly or for an improper purpose; "misused words are often laughable but one weeps for misused talents" -02495564 00 s 01 abused 0 001 & 02495346 a 0000 | used improperly or excessively especially drugs; "an abused substance" -02495687 00 s 06 exploited 2 ill-used 0 put-upon 0 used 2 victimized 0 victimised 0 001 & 02495346 a 0000 | of persons; taken advantage of; "after going out of his way to help his friend get the job he felt not appreciated but used" -02495922 00 a 02 useful 0 utile 2 014 ^ 00834198 a 0000 ^ 00931555 a 0000 ^ 01195536 a 0000 ^ 01870889 a 0000 ^ 02123812 a 0000 = 05148699 n 0000 + 05148699 n 0201 ! 02497141 a 0101 & 02496323 a 0000 & 02496425 a 0000 & 02496534 a 0000 & 02496674 a 0000 & 02496857 a 0000 & 02497013 a 0000 | being of use or service; "the girl felt motherly and useful"; "a useful job"; "a useful member of society" -02496323 00 s 01 multipurpose 0 001 & 02495922 a 0000 | having multiple uses; "a multipurpose tool" -02496425 00 s 03 reclaimable 0 recyclable 0 reusable 0 001 & 02495922 a 0000 | capable of being used again -02496534 00 s 01 serviceable 0 002 & 02495922 a 0000 + 05150129 n 0102 | capable of being put to good use; "a serviceable kitchen gadget" -02496674 00 s 02 useable 0 usable 0 005 & 02495922 a 0000 + 05150129 n 0203 + 01158872 v 0201 + 05150129 n 0104 + 01158872 v 0101 | capable of being put to use; "usable byproducts" -02496857 00 s 01 utilitarian 0 002 & 02495922 a 0000 + 05148699 n 0101 | having utility often to the exclusion of values; "plain utilitarian kitchenware" -02497013 00 s 01 utilizable 0 002 & 02495922 a 0000 + 01158872 v 0102 | capable of being put to a profitable or practical use -02497141 00 a 01 useless 0 009 ^ 00835609 a 0000 ^ 01871949 a 0000 ^ 02124654 a 0000 = 05148699 n 0000 + 05150588 n 0102 ! 02495922 a 0101 & 02497471 a 0000 & 02497743 a 0000 & 02497830 a 0000 | having no beneficial use or incapable of functioning usefully; "a kitchen full of useless gadgets"; "she is useless in an emergency" -02497471 00 s 04 futile 0 ineffectual 0 otiose 0 unavailing 0 004 & 02497141 a 0000 + 05207963 n 0202 + 05207963 n 0203 + 05150855 n 0101 | producing no result or effect; "a futile effort"; "the therapy was ineffectual"; "an otiose undertaking"; "an unavailing attempt" -02497743 00 s 01 inutile 0 002 & 02497141 a 0000 + 05150588 n 0101 | not worth using -02497830 00 s 03 unserviceable 0 unusable 0 unuseable 0 001 & 02497141 a 0000 | not capable of being used -02497938 00 a 01 utopian 0 005 ^ 01749320 a 0000 + 10743356 n 0101 + 13932045 n 0101 ! 02498507 a 0101 & 02498213 a 0000 | characterized by or aspiring to impracticable perfection; "the dim utopian future"; "utopian idealists"; "recognized the utopian nature of his hopes" -02498213 00 s 05 airy 0 impractical 0 visionary 0 Laputan 0 windy 0 005 & 02497938 a 0000 + 05630539 n 0401 + 10756641 n 0301 + 05768252 n 0301 + 05152518 n 0201 | not practical or realizable; speculative; "airy theories about socioeconomic improvement"; "visionary schemes for getting rich" -02498507 00 a 01 dystopian 0 002 + 13932213 n 0101 ! 02497938 a 0101 | as bad as can be; characterized by human misery; "AIDS is one of the dystopian harbingers of the global villages"- Susan Sontag -02498708 00 a 01 valid 0 010 ^ 01406640 a 0000 ^ 01943406 a 0000 + 04809453 n 0102 + 04783567 n 0102 ! 02499750 a 0101 & 02499036 a 0000 & 02499148 a 0000 & 02499301 a 0000 & 02499511 a 0000 & 02499643 a 0000 | well grounded in logic or truth or having legal force; "a valid inference"; "a valid argument"; "a valid contract" -02499036 00 s 01 binding 0 001 & 02498708 a 0000 | executed with proper legal authority; "a binding contract" -02499148 00 s 03 legal 0 sound 1 effectual 1 002 & 02498708 a 0000 + 04809237 n 0101 | having legal efficacy or force; "a sound title to the property" -02499301 00 s 02 legitimate 0 logical 0 003 & 02498708 a 0000 + 04784664 n 0202 + 04784664 n 0201 | based on known statements or events or conditions; "rain was a logical expectation, given the time of year" -02499511 00 s 03 reasoned 0 sound 2 well-grounded 0 002 & 02498708 a 0000 + 05159948 n 0203 | logically valid; "a sound argument" -02499643 00 s 01 validated 0 001 & 02498708 a 0000 | declared or made legally valid; "a validated claim" -02499750 00 a 01 invalid 0 010 ^ 01407465 a 0000 + 04810510 n 0102 + 04810510 n 0101 ! 02498708 a 0101 & 02500050 a 0000 & 02500179 a 0000 & 02500379 a 0000 & 02500497 a 0000 & 02500590 a 0000 & 02500736 a 0000 | having no cogency or legal force; "invalid reasoning"; "an invalid driver's license" -02500050 00 s 02 bad 0 uncollectible 0 001 & 02499750 a 0000 | not capable of being collected; "a bad (or uncollectible) debt" -02500179 00 s 02 fallacious 0 unsound 0 004 & 02499750 a 0000 + 05940688 n 0201 + 05893916 n 0101 + 04810727 n 0101 | containing or based on a fallacy; "fallacious reasoning"; "an unsound argument" -02500379 00 s 01 false 0 001 & 02499750 a 0000 | erroneous and usually accidental; "a false start"; "a false alarm" -02500497 00 s 02 invalidated 0 nullified 0 001 & 02499750 a 0000 | deprived of legal force -02500590 00 s 02 null 0 void 0 003 & 02499750 a 0000 ;c 08441203 n 0000 + 06532763 n 0101 | lacking any legal or binding force; "null and void" -02500736 00 s 02 sophistic 0 sophistical 0 004 & 02499750 a 0000 + 09899929 n 0202 + 09899929 n 0102 + 05895138 n 0101 | plausible but misleading -02500884 00 a 01 valuable 0 013 ^ 00933154 a 0000 ^ 01275562 a 0000 ^ 02584981 a 0000 + 13371030 n 0101 + 05141222 n 0104 + 02256109 v 0102 ! 02502163 a 0101 & 02501247 a 0000 & 02501367 a 0000 & 02501534 a 0000 & 02501693 a 0000 & 02501820 a 0000 & 02502016 a 0000 | having great material or monetary value especially for use or exchange; "a valuable diamond" -02501247 00 s 01 blue-chip 0 001 & 02500884 a 0000 | extremely valuable; "Rembrandt is considered a blue-chip artist" -02501367 00 s 02 invaluable 0 priceless 0 003 & 02500884 a 0000 + 05141222 n 0203 + 05141222 n 0101 | having incalculable monetary, intellectual, or spiritual worth -02501534 00 s 01 precious 0 002 & 02500884 a 0000 + 05146272 n 0103 | of high worth or cost; "diamonds, sapphires, rubies, and emeralds are precious stones" -02501693 00 s 01 rich 0 002 & 02500884 a 0000 + 04729328 n 0104 | of great worth or quality; "a rich collection of antiques" -02501820 00 s 01 semiprecious 0 001 & 02500884 a 0000 | used of gemstones having less commercial value than precious stones; "such semiprecious stones as amethyst, garnet, jade, and tourmaline" -02502016 00 s 01 worth(p) 0 002 & 02500884 a 0000 + 13764342 n 0101 | having a specified value; "not worth his salt"; "worth her weight in gold" -02502163 00 a 01 worthless 0 012 ^ 02588099 a 0000 + 05139561 n 0101 ! 02500884 a 0101 & 02502468 a 0000 & 02502578 a 0000 & 02502901 a 0000 & 02502994 a 0000 & 02503216 a 0000 & 02503305 a 0000 & 02503656 a 0000 & 02503900 a 0000 & 02504046 a 0000 | lacking in usefulness or value; "a worthless idler" -02502468 00 s 01 chaffy 0 001 & 02502163 a 0000 | value; "an empty chaffy book by a foolish chaffy fellow" -02502578 00 s 07 good-for-nothing 0 good-for-naught 0 meritless 0 no-account 0 no-count 0 no-good 0 sorry 0 004 & 02502163 a 0000 + 05140278 n 0702 + 10135953 n 0206 + 10135953 n 0104 | without merit; "a sorry horse"; "a sorry excuse"; "a lazy no-count, good-for-nothing goldbrick"; "the car was a no-good piece of junk" -02502901 00 s 01 manky 0 002 & 02502163 a 0000 ;r 08860123 n 0000 | inferior and worthless -02502994 00 s 03 negligible 0 paltry 0 trifling 0 002 & 02502163 a 0000 + 05140278 n 0201 | not worth considering; "he considered the prize too paltry for the lives it must cost"; "piffling efforts"; "a trifling matter" -02503216 00 s 01 nugatory 0 001 & 02502163 a 0000 | of no real value; "a nugatory law" -02503305 00 s 06 otiose 0 pointless 0 purposeless 0 senseless 0 superfluous 0 wasted 0 004 & 02502163 a 0000 + 05174023 n 0402 + 05174326 n 0301 + 05174023 n 0205 | serving no useful purpose; having no excuse for being; "otiose lines in a play"; "advice is wasted words"; "a pointless remark"; "a life essentially purposeless"; "senseless violence" -02503656 00 s 02 rubbishy 0 trashy 0 004 & 02502163 a 0000 + 14857497 n 0202 + 05140593 n 0202 + 14857497 n 0101 | cheap and inferior; of no value; "rubbishy newspapers that form almost the sole reading of the majority"; "trashy merchandise" -02503900 00 s 01 tinpot(a) 0 002 & 02502163 a 0000 ;r 08860123 n 0000 | inferior (especially of a country's leadership); "he's a tinpot Hitler" -02504046 00 s 01 valueless 0 002 & 02502163 a 0000 + 05140454 n 0101 | of no value -02504131 00 a 01 variable 0 015 ^ 00577920 a 0000 ^ 00583990 a 0000 + 09468959 n 0101 + 04735233 n 0102 + 00123170 v 0103 + 02662297 v 0101 + 04735233 n 0101 ! 02505716 a 0101 & 02504558 a 0000 & 02504830 a 0000 & 02505004 a 0000 & 02505141 a 0000 & 02505308 a 0000 & 02505415 a 0000 & 02505617 a 0000 | liable to or capable of change; "rainfall in the tropics is notoriously variable"; "variable winds"; "variable expenses" -02504558 00 s 03 changeable 0 uncertain 0 unsettled 0 003 & 02504131 a 0000 + 04733640 n 0102 + 04733640 n 0101 | subject to change; "a changeable climate"; "the weather is uncertain"; "unsettled weather with rain and hail and sunshine coming one right after the other" -02504830 00 s 01 covariant 0 002 & 02504131 a 0000 + 06025287 n 0101 | changing so that interrelations with another variable quantity or set of quantities remain unchanged -02505004 00 s 01 multivariate 0 002 & 02504131 a 0000 ;c 06018465 n 0000 | pertaining to any procedure involving two or more variables -02505141 00 s 01 protean 0 002 & 02504131 a 0000 + 09569142 n 0101 | taking on different forms; "eyes...of that baffling protean grey which is never twice the same" -02505308 00 s 01 shifting 0 001 & 02504131 a 0000 | continuously varying; "taffeta with shifting colors" -02505415 00 s 01 variant 0 006 & 02504131 a 0000 + 08111157 n 0102 + 05840650 n 0102 + 04735233 n 0103 + 02662297 v 0101 + 00436879 v 0101 | exhibiting variation and change; "letters variant in size" -02505617 00 s 01 versatile 0 001 & 02504131 a 0000 | changeable or inconstant; "versatile moods" -02505716 00 a 01 invariable 0 009 ^ 00576680 a 0000 ^ 00583239 a 0000 + 04739932 n 0102 + 04769456 n 0102 + 04739932 n 0101 ! 02504131 a 0101 & 02506029 a 0000 & 02506267 a 0000 & 02506408 a 0000 | not liable to or capable of change; "an invariable temperature"; "an invariable rule"; "his invariable courtesy" -02506029 00 s 04 changeless 0 constant 0 invariant 1 unvarying 0 004 & 02505716 a 0000 + 04739932 n 0303 + 04738641 n 0201 + 05054312 n 0101 | unvarying in nature; "maintained a constant temperature"; "principles of unvarying validity" -02506267 00 s 02 hard-and-fast 0 strict 0 002 & 02505716 a 0000 + 04673173 n 0201 | (of rules) stringently enforced; "hard-and-fast rules" -02506408 00 s 01 invariant 2 003 & 02505716 a 0000 ;c 06000644 n 0000 + 04738995 n 0101 | unaffected by a designated operation or transformation -02506555 00 a 01 varied 0 012 ^ 02064745 a 0000 ^ 01198737 a 0000 ^ 01540365 a 0000 = 04751305 n 0000 + 04735556 n 0101 ! 02507968 a 0101 & 02506922 a 0000 & 02507209 a 0000 & 02507324 a 0000 & 02507436 a 0000 & 02507515 a 0000 & 02507772 a 0000 | characterized by variety; "immigrants' varied ethnic and religious traditions"; "his work is interesting and varied" -02506922 00 s 04 many-sided 0 multifaceted 0 miscellaneous 0 multifarious 0 002 & 02506555 a 0000 + 04751305 n 0403 | having many aspects; "a many-sided subject"; "a multifaceted undertaking"; "multifarious interests"; "the multifarious noise of a great city"; "a miscellaneous crowd" -02507209 00 s 01 omnifarious 0 001 & 02506555 a 0000 | of all varieties or forms or kinds; "omnifarious reading" -02507324 00 s 03 varicolored 0 varicoloured 0 variegated 0 001 & 02506555 a 0000 | having a variety of colors -02507436 00 s 01 variform 0 001 & 02506555 a 0000 | varying in form or shape -02507515 00 s 02 varying 0 variable 0 006 & 02506555 a 0000 + 04735233 n 0202 + 02662297 v 0201 + 00436879 v 0201 + 00123170 v 0203 + 04771890 n 0202 | marked by diversity or difference; "the varying angles of roof slope"; "nature is infinitely variable" -02507772 00 s 02 versatile 0 various 2 002 & 02506555 a 0000 + 05641834 n 0101 | having great diversity or variety; "his various achievements are impressive"; "his vast and versatile erudition" -02507968 00 a 02 unvaried 0 unvarying 0 004 ^ 02062670 a 0000 = 04751305 n 0000 + 04740173 n 0101 ! 02506555 a 0101 | lacking variety -02508104 00 a 01 veiled 0 001 ! 02508277 a 0101 | having or as if having a veil or concealing cover; "a veiled dancer"; "a veiled hat"; "veiled threats"; "veiled insults" -02508277 00 a 01 unveiled 0 003 ! 02508104 a 0101 & 02508514 a 0000 & 02508669 a 0000 | revealed; especially by having a veil removed; "a new generation of unveiled women in Iran"; "applauding the unveiled statue of Winston Churchill" -02508514 00 s 01 disclosed 0 001 & 02508277 a 0000 | made known (especially something secret or concealed); "the disclosed purpose of their wicked plan" -02508669 00 s 01 undraped 0 001 & 02508277 a 0000 | stripped of drapery; "the undraped statue" -02508766 00 a 01 ventilated 0 004 ! 02509292 a 0101 & 02508917 a 0000 & 02509059 a 0000 & 02509170 a 0000 | exposed to air; "a well ventilated room" -02508917 00 s 02 aired 0 airy 0 003 & 02508766 a 0000 + 11431754 n 0204 + 05105745 n 0201 | open to or abounding in fresh air; "airy rooms" -02509059 00 s 01 louvered 0 001 & 02508766 a 0000 | supplied with louvers for ventilation; "a louvered door" -02509170 00 s 01 vented 0 001 & 02508766 a 0000 | supplied with a vent or vents for intake of air or discharge of gases -02509292 00 a 01 unventilated 0 006 ^ 00267871 a 0000 ! 02508766 a 0101 & 02509484 a 0000 & 02509710 a 0000 & 02509854 a 0000 & 02509984 a 0000 | not ventilated; "stuffy unventilated rooms" -02509484 00 s 04 airless 0 close 0 stuffy 0 unaired 0 002 & 02509292 a 0000 + 05112474 n 0301 | lacking fresh air; "a dusty airless attic"; "the dreadfully close atmosphere"; "hot and stuffy and the air was blue with smoke" -02509710 00 s 01 fuggy 0 004 & 02509292 a 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 14521954 n 0101 | (British informal) poorly ventilated -02509854 00 s 02 unaerated 0 unoxygenated 0 002 & 02509292 a 0000 ;c 06080522 n 0000 | (used of blood) not supplied with oxygen -02509984 00 s 01 unvented 0 001 & 02509292 a 0000 | not provided with vents -02510062 00 a 01 vertebrate 0 003 ;c 06083243 n 0000 + 01471682 n 0101 ! 02510273 a 0101 | having a backbone or spinal column; "fishes and amphibians and reptiles and birds and mammals are verbetrate animals" -02510273 00 a 02 invertebrate 0 spineless 1 002 ;c 06083243 n 0000 ! 02510062 a 0101 | lacking a backbone or spinal column; "worms are an example of invertebrate animals" -02510446 00 a 01 violable 0 003 + 02668523 v 0101 + 02566528 v 0104 ! 02510604 a 0101 | capable of being violated; "a violable rule"; "a violable contract" -02510604 00 a 01 inviolable 0 002 ! 02510446 a 0101 & 02510786 a 0000 | incapable of being transgressed or dishonored; "the person of the king is inviolable"; "an inviolable oath" -02510786 00 s 02 unassailable 0 untouchable 0 001 & 02510604 a 0000 | impossible to assail -02510879 00 a 01 violent 0 013 ^ 01244410 a 0000 ^ 01742296 a 0000 + 05037813 n 0106 ! 02512922 a 0101 & 02511340 a 0000 & 02511528 a 0000 & 02511800 a 0000 & 02512044 a 0000 & 02512205 a 0000 & 02512334 a 0000 & 02512470 a 0000 & 02512641 a 0000 & 02512794 a 0000 | acting with or marked by or resulting from great force or energy or emotional intensity; "a violent attack"; "a violent person"; "violent feelings"; "a violent rage"; "felt a violent dislike" -02511340 00 s 01 convulsive 0 003 & 02510879 a 0000 + 00859937 v 0101 + 00032297 v 0101 | resembling a convulsion in being sudden and violent; "a convulsive rage"; "convulsive laughter" -02511528 00 s 04 ferocious 0 fierce 0 furious 0 savage 0 006 & 02510879 a 0000 + 05038251 n 0401 + 05037813 n 0303 + 05037813 n 0202 + 04830689 n 0101 + 05037813 n 0101 | marked by extreme and violent energy; "a ferocious beating"; "fierce fighting"; "a furious battle" -02511800 00 s 02 hot 0 raging 0 001 & 02510879 a 0000 | characterized by violent and forceful activity or movement; very intense; "the fighting became hot and heavy"; "a hot engagement"; "a raging battle"; "the river became a raging torrent" -02512044 00 s 02 knockdown-dragout 0 knock-down-and-drag-out 0 002 & 02510879 a 0000 ;u 07075172 n 0000 | extremely violent; "a knock-down-and-drag-out fight" -02512205 00 s 01 lashing 0 001 & 02510879 a 0000 | violently urging on by whipping or flogging; "looked at the lashing riders" -02512334 00 s 01 lurid 0 002 & 02510879 a 0000 + 04782610 n 0104 | horrible in fierceness or savagery; "lurid crimes"; "a lurid life" -02512470 00 s 01 rampageous 0 002 & 02510879 a 0000 + 00554541 n 0101 | displaying raging violence; often destructive; "the hot rampageous horses of my will"- W.H.Auden -02512641 00 s 02 ruffianly 0 tough 0 002 & 02510879 a 0000 + 09879297 n 0104 | violent and lawless; "the more ruffianly element"; "tough street gangs" -02512794 00 s 01 slam-bang 0 002 & 02510879 a 0000 ;u 07157273 n 0000 | violent and sudden and noisy; "a slam-bang collision" -02512922 00 a 01 nonviolent 0 005 ^ 01740892 a 0000 ^ 01897787 a 0000 + 01242716 n 0103 ! 02510879 a 0101 & 02513101 a 0000 | abstaining (on principle) from the use of violence -02513101 00 s 02 passive 0 peaceful 0 003 & 02512922 a 0000 + 13970584 n 0202 + 04907020 n 0102 | peacefully resistant in response to injustice; "passive resistance" -02513269 00 a 01 virtuous 0 011 ^ 00360650 a 0000 ^ 01129977 a 0000 ^ 01548193 a 0000 ^ 01781478 a 0000 ^ 02036578 a 0000 + 04847298 n 0102 + 04847482 n 0101 ! 02513740 a 0101 & 02513521 a 0000 & 02513614 a 0000 + 04847298 n 0101 | morally excellent -02513521 00 s 01 impeccable 0 002 & 02513269 a 0000 + 04826485 n 0101 | not capable of sin -02513614 00 s 03 impeccant 0 innocent 0 sinless 0 003 & 02513269 a 0000 + 13990064 n 0303 + 13990064 n 0204 | free from sin -02513740 00 a 01 wicked 0 016 ^ 01131043 a 0000 ^ 01549291 a 0000 ^ 01782519 a 0000 ^ 02037272 a 0000 ^ 02035337 a 0000 + 14563564 n 0102 + 04852750 n 0102 + 00745637 n 0103 ! 02513269 a 0101 & 02514099 a 0000 & 02514239 a 0000 & 02514380 a 0000 & 02514543 a 0000 & 02514819 a 0000 & 02515001 a 0000 & 02515214 a 0000 | morally bad in principle or practice -02514099 00 s 02 evil 0 vicious 0 004 & 02513740 a 0000 + 04830689 n 0203 + 00747029 n 0201 + 04852088 n 0102 | having the nature of vice -02514239 00 s 01 heavy 0 001 & 02513740 a 0000 | (of an actor or role) being or playing the villain; "Iago is the heavy role in `Othello'" -02514380 00 s 02 flagitious 0 heinous 0 002 & 02513740 a 0000 + 04830343 n 0205 | extremely wicked, deeply criminal; "a flagitious crime"; "heinous accusations" -02514543 00 s 03 iniquitous 0 sinful 0 ungodly 0 004 & 02513740 a 0000 + 04828754 n 0301 + 04827957 n 0202 + 00745637 n 0104 | characterized by iniquity; wicked because it is believed to be a sin; "iniquitous deeds"; "he said it was sinful to wear lipstick"; "ungodly acts" -02514819 00 s 04 irreclaimable 0 irredeemable 0 unredeemable 0 unreformable 0 001 & 02513740 a 0000 | insusceptible of reform; "vicious irreclaimable boys"; "irredeemable sinners" -02515001 00 s 02 nefarious 0 villainous 0 004 & 02513740 a 0000 + 10753546 n 0201 + 04853361 n 0202 + 04852750 n 0101 | extremely wicked; "nefarious schemes"; "a villainous plot"; "a villainous band of thieves" -02515214 00 s 02 peccable 0 peccant 0 001 & 02513740 a 0000 | liable to sin; "a frail and peccable mortal"- Sir Walter Scott -02515341 00 a 02 visible 0 seeable 0 014 ^ 01746605 a 0000 + 05017458 n 0102 + 05017458 n 0101 ! 02517265 a 0101 & 02515808 a 0000 & 02515993 a 0000 & 02516148 a 0000 & 02516316 a 0000 & 02516435 a 0000 & 02516570 a 0000 & 02516690 a 0000 & 02516785 a 0000 & 02517002 a 0000 & 02517169 a 0000 | capable of being seen; or open to easy view; "a visible object"; "visible stars"; "mountains visible in the distance"; "a visible change of expression"; "visible files" -02515808 00 s 01 circumpolar 0 001 & 02515341 a 0000 | (of a celestial body) continually visible above the horizon during the entire 360 degrees of daily travel; "a circumpolar star" -02515993 00 s 01 in_sight 0 001 & 02515341 a 0000 | at or within a reasonable distance for seeing; "not a policeman in sight"; "kept the monkey in view" -02516148 00 s 02 ocular 0 visual 0 001 & 02515341 a 0000 | visible; "be sure of it; give me the ocular proof"- Shakespeare; "a visual presentation"; "a visual image" -02516316 00 s 02 macroscopic 0 macroscopical 0 001 & 02515341 a 0000 | visible to the naked eye; using the naked eye -02516435 00 s 02 megascopic 0 gross 0 001 & 02515341 a 0000 | visible to the naked eye (especially of rocks and anatomical features) -02516570 00 s 02 microscopic 0 microscopical 0 001 & 02515341 a 0000 | visible under a microscope; using a microscope -02516690 00 s 01 subgross 0 001 & 02515341 a 0000 | too small to be visible to the naked eye -02516785 00 s 02 panoptic 0 panoptical 0 002 & 02515341 a 0000 + 03883944 n 0201 | including everything visible in one view; "a panoptic aerial photograph of the missile base"; "a panoptic stain used in microscopy" -02517002 00 s 01 telescopic 0 003 & 02515341 a 0000 + 05636554 n 0101 + 04403638 n 0101 | visible only with a telescope; "a bright star with a telescopic companion" -02517169 00 s 01 viewable 0 002 & 02515341 a 0000 + 02150948 v 0102 | capable of being viewed -02517265 00 a 02 invisible 0 unseeable 0 014 ^ 01748318 a 0000 ^ 01705655 a 0000 + 05017909 n 0102 + 05017909 n 0101 ! 02515341 a 0101 & 02517713 a 0000 & 02517817 a 0000 & 02517999 a 0000 & 02518229 a 0000 & 02518370 a 0000 & 02518470 a 0000 & 02518601 a 0000 & 02518852 a 0000 & 02518926 a 0000 | impossible or nearly impossible to see; imperceptible by the eye; "the invisible man"; "invisible rays"; "an invisible hinge"; "invisible mending" -02517713 00 s 01 camouflaged 0 001 & 02517265 a 0000 | made invisible by means of protective coloring -02517817 00 s 03 concealed 0 hidden 0 out_of_sight 0 001 & 02517265 a 0000 | not accessible to view; "concealed (or hidden) damage"; "in stormy weather the stars are out of sight" -02517999 00 s 01 infrared 0 001 & 02517265 a 0000 | having or employing wavelengths longer than light but shorter than radio waves; lying outside the visible spectrum at its red end; "infrared radiation"; "infrared photography" -02518229 00 s 01 lightless 0 002 & 02517265 a 0000 + 13983807 n 0102 | giving no light; "lightless stars `visible' only to radio antennae" -02518370 00 s 01 nonvisual 0 001 & 02517265 a 0000 | not resulting in vision; "nonvisual stimuli" -02518470 00 s 01 occult 0 001 & 02517265 a 0000 | hidden and difficult to see; "an occult fracture"; "occult blood in the stool" -02518601 00 s 01 ultraviolet 0 002 & 02517265 a 0000 + 11521940 n 0101 | having or employing wavelengths shorter than light but longer than X-rays; lying outside the visible spectrum at its violet end; "ultraviolet radiation"; "an ultraviolet lamp" -02518852 00 s 01 undetectable 0 001 & 02517265 a 0000 | not easily seen -02518926 00 s 01 unseeyn 0 001 & 02517265 a 0000 | not seen or perceived; "unseen natural resources" -02519029 00 a 02 viviparous 0 live-bearing 0 003 ;c 06083243 n 0000 ! 02519171 a 0101 ! 02519399 a 0101 | producing living young (not eggs) -02519171 00 a 01 oviparous 0 004 ;c 06083243 n 0000 ! 02519399 a 0101 ! 02519029 a 0101 & 02519292 a 0000 | egg-laying -02519292 00 s 01 broody 0 001 & 02519171 a 0000 | physiologically ready to incubate eggs; "a broody hen" -02519399 00 a 01 ovoviviparous 0 003 ;c 06083243 n 0000 ! 02519029 a 0101 ! 02519171 a 0101 | producing living young from eggs that hatch within the body -02519555 00 a 01 volatile 0 007 ^ 00583990 a 0000 ;c 06084469 n 0000 + 15093735 n 0101 + 00552253 v 0101 + 05009921 n 0101 ! 02520077 a 0101 & 02519813 a 0000 | evaporating readily at normal temperatures and pressures; "volatile oils"; "volatile solvents" -02519813 00 s 07 evaporable 0 vaporific 0 vapourific 0 vaporizable 0 vapourisable 0 volatilizable 0 volatilisable 0 005 & 02519555 a 0000 + 00552253 v 0702 + 00552253 v 0601 + 00366858 v 0402 + 00442267 v 0402 | (used of substances) capable of being volatilized -02520077 00 a 03 nonvolatile 0 nonvolatilizable 0 nonvolatilisable 0 001 ! 02519555 a 0101 | not volatilizing readily; "a nonvolatile acid" -02520219 00 a 01 voluntary 1 010 ^ 00570590 a 0000 ^ 02564986 a 0000 ^ 01337486 a 0000 + 10759331 n 0103 ! 02521353 a 0101 & 02520693 a 0000 & 02520824 a 0000 & 02520925 a 0000 & 02521036 a 0000 & 02521183 a 0000 | of your own free will or design; done by choice; not forced or compelled; "man is a voluntary agent"; "participation was voluntary"; "voluntary manslaughter"; "voluntary generosity in times of disaster"; "voluntary social workers"; "a voluntary confession" -02520693 00 s 02 willful 0 wilful 0 001 & 02520219 a 0000 | done by design; "the insult was intentional"; "willful disobedience" -02520824 00 s 01 freewill 0 001 & 02520219 a 0000 | done of your own accord; "a freewill offering" -02520925 00 s 01 self-imposed 0 001 & 02520219 a 0000 | voluntarily assumed or endured; "self-imposed exile" -02521036 00 s 03 uncoerced 0 unforced 0 willing 0 001 & 02520219 a 0000 | not brought about by coercion or force; "the confession was uncoerced" -02521183 00 s 02 unpaid 0 volunteer(a) 0 001 & 02520219 a 0000 | without payment; "the soup kitchen was run primarily by unpaid helpers"; "a volunteer fire department" -02521353 00 a 03 involuntary 1 nonvoluntary 0 unvoluntary 0 008 ^ 00571643 a 0000 ^ 02566015 a 0000 ! 02520219 a 0101 & 02521758 a 0000 & 02521890 a 0000 & 02521998 a 0000 & 02522082 a 0000 & 02522164 a 0000 | not subject to the control of the will; "involuntary manslaughter"; "involuntary servitude"; "an involuntary shudder"; "It (becoming a hero) was involuntary. They sank my boat"- John F.Kennedy -02521758 00 s 02 driven 0 goaded 0 001 & 02521353 a 0000 | compelled forcibly by an outside agency; "mobs goaded by blind hatred" -02521890 00 s 01 forced 0 001 & 02521353 a 0000 | forced or compelled; "promised to abolish forced labor" -02521998 00 s 01 unconscious 0 001 & 02521353 a 0000 | without conscious volition -02522082 00 s 01 unwilled 0 001 & 02521353 a 0000 | without deliberate volition -02522164 00 s 01 unwilling 0 002 & 02521353 a 0000 + 04645599 n 0101 | in spite of contrary volition -02522267 00 a 01 voluntary 2 002 ;c 06080522 n 0000 ! 02522417 a 0101 | controlled by individual volition; "voluntary motions"; "voluntary muscles" -02522417 00 a 01 involuntary 2 005 ;c 06080522 n 0000 ! 02522267 a 0101 & 02522669 a 0000 & 02522938 a 0000 & 02523092 a 0000 | controlled by the autonomic nervous system; without conscious control; "involuntary muscles"; "gave an involuntary start" -02522669 00 s 03 automatic 0 reflex(a) 0 reflexive 0 003 & 02522417 a 0000 ;c 06080522 n 0000 + 00863513 n 0201 | without volition or conscious control; "the automatic shrinking of the pupils of the eye in strong light"; "a reflex knee jerk"; "sneezing is reflexive" -02522938 00 s 01 autonomic 0 002 & 02522417 a 0000 ;c 06080522 n 0000 | relating to or controlled by the autonomic nervous system; "autonomic reflexes" -02523092 00 s 01 vegetative 0 002 & 02522417 a 0000 ;c 06080522 n 0000 | relating to involuntary bodily functions; "vegetative functions such as digestion or growth or circulation" -02523275 00 a 01 vulnerable 0 017 ^ 00569090 a 0000 ^ 02058794 a 0000 ^ 02094755 a 0000 ^ 02360448 a 0000 ^ 01886407 a 0000 + 05042871 n 0101 ! 02525206 a 0101 & 02523664 a 0000 & 02523867 a 0000 & 02524032 a 0000 & 02524192 a 0000 & 02524345 a 0000 & 02524443 a 0000 & 02524563 a 0000 & 02524688 a 0000 & 02524900 a 0000 & 02525058 a 0000 | susceptible to attack; "a vulnerable bridge" -02523664 00 s 04 assailable 0 undefendable 0 undefended 0 open 0 003 & 02523275 a 0000 + 01119169 v 0102 + 05043349 n 0101 | not defended or capable of being defended; "an open city"; "open to attack" -02523867 00 s 01 compromising 0 001 & 02523275 a 0000 | vulnerable to danger especially of discredit or suspicion; "she found herself in a compromising situation" -02524032 00 s 02 defenseless 0 defenceless 0 003 & 02523275 a 0000 + 05043091 n 0202 + 05043091 n 0101 | lacking protection or support; "a defenseless child" -02524192 00 s 01 endangered 0 002 & 02523275 a 0000 ;c 00017222 n 0000 | (of flora or fauna) in imminent danger of extinction; "an endangered species" -02524345 00 s 01 indefensible 0 001 & 02523275 a 0000 | not able to be protected against attack -02524443 00 s 02 insecure 0 unsafe 0 003 & 02523275 a 0000 + 14544159 n 0101 + 14541677 n 0101 | not safe from attack -02524563 00 s 01 penetrable 0 002 & 02523275 a 0000 + 04940730 n 0101 | capable of being penetrated; "penetrable defenses" -02524688 00 s 01 threatened 0 002 & 02523275 a 0000 ;c 00017222 n 0000 | (of flora or fauna) likely in the near future to become endangered; "the spotted owl is a threatened species, not yet an endangered one" -02524900 00 s 02 under_attack(p) 0 under_fire(p) 0 001 & 02523275 a 0000 | subjected to enemy attack or censure; "an official under fire for mismanagement" -02525058 00 s 01 unguarded 0 001 & 02523275 a 0000 | lacking protection or a guard; "an unguarded gate"; "his unguarded queen was open to attack" -02525206 00 a 01 invulnerable 0 014 ^ 01884930 a 0000 ^ 02057829 a 0000 ^ 02093888 a 0000 ^ 00569568 a 0000 + 05033681 n 0101 ! 02523275 a 0101 & 02525597 a 0000 & 02525732 a 0000 & 02525876 a 0000 & 02526061 a 0000 & 02526124 a 0000 & 02526441 a 0000 & 02526611 a 0000 & 02526725 a 0000 | immune to attack; impregnable; "gunners raked the beach from invulnerable positions on the cliffs" -02525597 00 s 02 airtight 0 air-tight 0 001 & 02525206 a 0000 | having no weak points; "an airtight defense"; "an airtight argument" -02525732 00 s 02 bombproof 0 shellproof 0 001 & 02525206 a 0000 | able to resist the explosive force of bombs and shells; "bombproof shelter" -02525876 00 s 02 defendable 0 defensible 0 006 & 02525206 a 0000 + 05202954 n 0201 + 01149138 v 0202 + 01129876 v 0201 + 01127795 v 0201 + 01017643 v 0202 | capable of being defended -02526061 00 s 01 entrenched 0 001 & 02525206 a 0000 | dug in -02526124 00 s 06 impregnable 0 inviolable 0 secure 0 strong 0 unassailable 0 unattackable 0 003 & 02525206 a 0000 + 14539029 n 0102 + 14539693 n 0301 | immune to attack; incapable of being tampered with; "an impregnable fortress"; "fortifications that made the frontier inviolable"; "a secure telephone connection" -02526441 00 s 01 tight 0 002 & 02525206 a 0000 + 05088804 n 0104 | set so close together as to be invulnerable to penetration; "in tight formation"; "a tight blockade" -02526611 00 s 01 sheltered 0 001 & 02525206 a 0000 | protected from danger or bad weather; "a sheltered harbor" -02526725 00 s 01 untouchable 0 001 & 02525206 a 0000 | beyond the reach of criticism or attack or impeachment; "for the first time criticism was directed at a hitherto untouchable target"- Newsweek -02526925 00 a 01 wanted 0 008 ^ 00732960 a 0000 ^ 01461822 a 0000 ^ 02539968 a 0000 ! 02527734 a 0101 & 02527220 a 0000 & 02527402 a 0000 & 02527489 a 0000 & 02527588 a 0000 | desired or wished for or sought; "couldn't keep her eyes off the wanted toy"; "a wanted criminal"; "a wanted poster" -02527220 00 s 02 craved 0 desired 0 001 & 02526925 a 0000 | wanted intensely; "the child could no longer resist taking one of the craved cookies"; "it produced the desired effect" -02527402 00 s 01 hot 0 001 & 02526925 a 0000 | wanted by the police; "a hot suspect" -02527489 00 s 03 longed-for 0 wished-for 0 yearned-for 0 001 & 02526925 a 0000 | greatly desired -02527588 00 s 02 sought 0 sought-after(a) 0 001 & 02526925 a 0000 | being searched for; "the most sought-after item was the silver candelabrum" -02527734 00 a 01 unwanted 0 012 ^ 00733905 a 0000 ^ 01463137 a 0000 ^ 02540236 a 0000 ! 02526925 a 0101 & 02528048 a 0000 & 02528206 a 0000 & 02528440 a 0000 & 02528566 a 0000 & 02528809 a 0000 & 02528921 a 0000 & 02529047 a 0000 & 02529148 a 0000 | not wanted; not needed; "tried to give away unwanted kittens" -02528048 00 s 01 abdicable 0 002 & 02527734 a 0000 + 02379198 v 0101 | capable of being discarded or renounced or relinquished; "abdicable responsibilites" -02528206 00 s 04 cast-off(a) 0 discarded 0 throwaway(a) 0 thrown-away(a) 0 001 & 02527734 a 0000 | thrown away; "wearing someone's cast-off clothes"; "throwaway children living on the streets"; "salvaged some thrown-away furniture" -02528440 00 s 02 friendless 0 outcast 0 003 & 02527734 a 0000 + 10386312 n 0201 + 04622672 n 0101 | excluded from a society -02528566 00 s 02 outcaste 0 casteless 0 003 & 02527734 a 0000 ;r 08900535 n 0000 + 10386515 n 0101 | not belonging to or having been expelled from a caste and thus having no place or status in society; "the foreigner was a casteless person" -02528809 00 s 01 uncalled-for 0 001 & 02527734 a 0000 | not required or requested; "uncalled-for suggestions" -02528921 00 s 01 unclaimed 0 001 & 02527734 a 0000 | not claimed or called for by an owner or assignee; "unclaimed luggage" -02529047 00 s 02 undesired 0 unsought 0 001 & 02527734 a 0000 | not desired; "an undesired result" -02529148 00 s 03 unwelcome 0 unwished 0 unwished-for 0 001 & 02527734 a 0000 | not welcome; "unwelcome publicity" -02529264 00 a 01 warm 1 007 ^ 01247240 a 0000 = 05011790 n 0000 + 05016753 n 0102 ! 02529945 a 0101 & 02529581 a 0000 & 02529761 a 0000 & 02529859 a 0000 | having or producing a comfortable and agreeable degree of heat or imparting or maintaining heat; "a warm body"; "a warm room"; "a warm climate"; "a warm coat" -02529581 00 s 02 lukewarm 0 tepid 0 004 & 02529264 a 0000 + 05016936 n 0203 + 05016936 n 0202 + 05016936 n 0101 | moderately warm; "he hates lukewarm coffee"; "tepid bath water" -02529761 00 s 01 warmed 0 001 & 02529264 a 0000 | having been warmed up; "a cup of warmed milk" -02529859 00 s 01 warming 0 001 & 02529264 a 0000 | imparting heat; "a warming fire" -02529945 00 a 01 cool 1 009 ^ 01251128 a 0000 = 05011790 n 0000 + 05015678 n 0102 ! 02529264 a 0101 & 02530282 a 0000 & 02530370 a 0000 & 02530474 a 0000 & 02530620 a 0000 & 02530693 a 0000 | neither warm nor very cold; giving relief from heat; "a cool autumn day"; "a cool room"; "cool summer dresses"; "cool drinks"; "a cool breeze" -02530282 00 s 01 air-conditioned 0 001 & 02529945 a 0000 | cooled by air conditioning -02530370 00 s 01 air-cooled 0 001 & 02529945 a 0000 | cooled by a flow of air; "an air-cooled engine" -02530474 00 s 01 caller 0 001 & 02529945 a 0000 | providing coolness; "a cooling breeze"; "`caller' is a Scottish term as in `a caller breeze'" -02530620 00 s 01 precooled 0 001 & 02529945 a 0000 | cooled in advance -02530693 00 s 01 water-cooled 0 001 & 02529945 a 0000 | kept cool or designed to be kept cool by means of water especially circulating water; "a water-cooled engine" -02530861 00 a 01 warm 2 007 ^ 00853776 a 0000 ^ 01074650 a 0000 = 04626280 n 0000 + 07544647 n 0106 ! 02531422 a 0101 & 02531122 a 0000 & 02531243 a 0000 | psychologically warm; friendly and responsive; "a warm greeting"; "a warm personality"; "warm support" -02531122 00 s 01 cordial 0 002 & 02530861 a 0000 + 04655929 n 0102 | politely warm and friendly; "a cordial handshake" -02531243 00 s 01 hearty 0 003 & 02530861 a 0000 + 07544647 n 0105 + 04867539 n 0101 | showing warm and heartfelt friendliness; "gave us a cordial reception"; "a hearty welcome" -02531422 00 a 01 cool 2 008 ^ 00087152 a 0000 ^ 01257612 a 0000 ^ 00856860 a 0000 ^ 01076793 a 0000 = 04626280 n 0000 + 04629604 n 0102 ! 02530861 a 0101 & 02531775 a 0000 | psychologically cool and unenthusiastic; unfriendly or unresponsive or showing dislike; "relations were cool and polite"; "a cool reception"; "cool to the idea of higher taxes" -02531775 00 s 01 unresponsive 0 002 & 02531422 a 0000 + 05213201 n 0101 | aloof or indifferent; "was unresponsive to her passionate advances" -02531919 00 a 01 warm 3 002 ! 02532200 a 0101 & 02532114 a 0000 | (color) inducing the impression of warmth; used especially of reds and oranges and yellows; "warm reds and yellows and orange" -02532114 00 s 01 hot 0 001 & 02531919 a 0000 | (color) bold and intense; "hot pink" -02532200 00 a 01 cool 3 002 ! 02531919 a 0101 & 02532398 a 0000 | (color) inducing the impression of coolness; used especially of greens and blues and violets; "cool greens and blues and violets" -02532398 00 s 01 cold 0 001 & 02532200 a 0000 | (color) giving no sensation of warmth; "a cold bluish grey" -02532508 00 a 01 warm-blooded 0 003 ;c 06083243 n 0000 ! 02532898 a 0101 & 02532681 a 0000 | having warm blood (in animals whose body temperature is internally regulated) -02532681 00 s 03 homoiothermic 0 homeothermic 0 homothermic 0 004 & 02532508 a 0000 + 01315330 n 0303 + 01315330 n 0201 + 01315330 n 0102 | of birds and mammals; having constant and relatively high body temperature -02532898 00 a 01 cold-blooded 0 003 ;c 06083243 n 0000 ! 02532508 a 0101 & 02533075 a 0000 | having cold blood (in animals whose body temperature is not internally regulated) -02533075 00 s 04 poikilothermic 0 poikilothermous 0 heterothermic 0 ectothermic 0 003 & 02532898 a 0000 + 01315581 n 0201 + 01315581 n 0101 | of animals except birds and mammals; having body temperature that varies with the environment -02533313 00 a 01 warmhearted 0 004 ^ 01463965 a 0000 + 07546279 n 0101 + 07544647 n 0107 ! 02533540 a 0101 | marked by warmth of feeling like kindness and sympathy and generosity; "gave a warmhearted welcome to the stranger" -02533540 00 a 01 coldhearted 0 004 ^ 01466593 a 0000 + 07506149 n 0102 ! 02533313 a 0101 & 02533682 a 0000 | lacking in sympathy or feeling -02533682 00 s 01 brittle 0 001 & 02533540 a 0000 | lacking warmth and generosity of spirit; "a brittle and calculating woman" -02533810 00 a 01 washable 0 005 + 02742842 v 0101 + 01270199 v 0101 + 01535246 v 0101 ! 02534245 a 0101 & 02534042 a 0000 | capable of being washed without injury; "washable woolens"; "acrylic blankets are both warm and washable" -02534042 00 s 02 wash-and-wear 0 drip-dry 0 002 & 02533810 a 0000 + 04553561 n 0101 | treated so as to be easily or quickly washed and dried and requiring little or no ironing; "a wash-and-wear shirt" -02534245 00 a 01 nonwashable 0 001 ! 02533810 a 0101 | not washable -02534315 00 a 01 waxed 0 001 ! 02534417 a 0101 | treated with wax; "waxed floors"; "waxed mustache" -02534417 00 a 01 unwaxed 0 001 ! 02534315 a 0101 | not waxed; "the unwaxed floor" -02534501 00 a 01 waxing 0 001 ! 02534690 a 0101 | (of the moon) pertaining to the period during which the visible surface of the moon increases; "the waxing moon passes from new to full" -02534690 00 a 01 waning 0 001 ! 02534501 a 0101 | (of the Moon) pertaining to the period during which the visible surface of the moon decreases; "after full moon comes the waning moon" -02534877 00 a 01 increasing 0 011 ! 02536740 a 0101 & 02535161 a 0000 & 02535335 a 0000 & 02535533 a 0000 & 02535645 a 0000 & 02535831 a 0000 & 02536026 a 0000 & 02536123 a 0000 & 02536365 a 0000 & 02536518 a 0000 & 02536605 a 0000 | becoming greater or larger; "increasing prices" -02535161 00 s 02 accelerative 0 acceleratory 0 005 & 02534877 a 0000 + 00439343 v 0201 + 00438178 v 0201 + 00439343 v 0101 + 00438178 v 0101 | tending to increase velocity -02535335 00 s 01 accretionary 0 007 & 02534877 a 0000 + 13754565 n 0101 + 13425425 n 0101 + 13425245 n 0101 + 13425067 n 0101 + 13424865 n 0101 + 13263540 n 0101 | marked or produced by accretion -02535533 00 s 01 accretive 0 003 & 02534877 a 0000 + 00159368 v 0101 + 00396325 v 0101 | growing by accretion -02535645 00 s 01 augmentative 0 001 & 02534877 a 0000 | increasing or having the power to increase especially in size or amount or degree; "`up' is an augmentative word in `hurry up'" -02535831 00 s 01 incorporative 0 002 & 02534877 a 0000 + 01541000 v 0101 | growing by taking over and incorporating adjacent territories; "the Russian Empire was a typical incorporative state" -02536026 00 s 02 maximizing 0 maximising 0 001 & 02534877 a 0000 | making as great as possible -02536123 00 s 01 multiplicative 0 003 & 02534877 a 0000 + 00641672 v 0101 + 00247390 v 0101 | tending or having the power to multiply or increase in number or quantity or degree; "the multiplicative tendency of proportional representation" -02536365 00 s 02 profit-maximizing 0 profit-maximising 0 001 & 02534877 a 0000 | making the profit as great as possible; "the profit-maximizing price" -02536518 00 s 01 progressive 0 001 & 02534877 a 0000 | gradually advancing in extent -02536605 00 s 01 raising 0 001 & 02534877 a 0000 | increasing in quantity or value; "a cost-raising increase in the basic wage rate" -02536740 00 a 01 decreasing 0 006 ! 02534877 a 0101 & 02536911 a 0000 & 02537181 a 0000 & 02537351 a 0000 & 02537513 a 0000 & 02537636 a 0000 | becoming less or smaller -02536911 00 s 03 depreciating 0 depreciative 0 depreciatory 0 005 & 02536740 a 0000 + 00315330 v 0301 + 00315020 v 0301 + 00315330 v 0201 + 00315020 v 0201 | tending to decrease or cause a decrease in value; "a depreciating currency"; "depreciatory effects on prices" -02537181 00 s 01 detractive 0 002 & 02536740 a 0000 + 00532115 v 0102 | causing to decrease in importance or value; "detractive influences on the volume of investment" -02537351 00 s 01 diminishing 0 001 & 02536740 a 0000 | becoming smaller or less or appearing to do so; "diminishing returns"; "his diminishing respect for her" -02537513 00 s 03 dwindling 0 tapering 0 tapering_off 0 001 & 02536740 a 0000 | gradually decreasing until little remains -02537636 00 s 01 falling 0 001 & 02536740 a 0000 | decreasing in amount or degree; "falling temperature" -02537743 00 a 01 increasing 2 003 ! 02538050 a 0101 & 02537841 a 0000 & 02537946 a 0000 | music -02537841 00 s 01 accelerando 0 002 & 02537743 a 0000 + 15264726 n 0101 | gradually increasing in tempo -02537946 00 s 01 crescendo 0 002 & 02537743 a 0000 + 04990525 n 0101 | gradually increasing in volume -02538050 00 a 01 decreasing 2 005 ! 02537743 a 0101 & 02538184 a 0000 & 02538295 a 0000 & 02538389 a 0000 & 02538508 a 0000 | music -02538184 00 s 01 allargando 0 001 & 02538050 a 0000 | gradually decreasing in tempo and broadening in manner -02538295 00 s 01 calando 0 001 & 02538050 a 0000 | gradually decreasing in tempo and volume -02538389 00 s 02 decrescendo 0 diminuendo 0 002 & 02538050 a 0000 + 04991225 n 0101 | gradually decreasing in volume -02538508 00 s 04 rallentando 0 ritardando 0 ritenuto 0 rit. 0 001 & 02538050 a 0000 | gradually decreasing in tempo -02538626 00 a 01 inflationary 0 003 ;c 06149484 n 0000 + 13498828 n 0101 ! 02538803 a 0101 | associated with or tending to cause increases in inflation; "inflationary prices" -02538803 00 a 01 deflationary 0 003 ;c 06149484 n 0000 + 13459821 n 0101 ! 02538626 a 0101 | associated with or tending to cause decreases in consumer prices or increases in the purchasing power of money; "deflationary measures" -02539034 00 a 01 weaned 0 002 ;c 01861778 n 0000 ! 02539223 a 0101 | freed of dependence on something especially (for mammals) mother's milk; "the just-weaned calf bawled for its mother" -02539223 00 a 01 unweaned 0 001 ! 02539034 a 0101 | not weaned; "some children remain unweaned until their second or third birthdays" -02539359 00 a 01 wearable 0 005 + 02705132 v 0101 + 00047745 v 0101 + 00050652 v 0101 + 00052374 v 0101 ! 02539576 a 0101 | suitable for wear or able to be worn; "wearable evening clothes"; "a wearable hearing aid" -02539576 00 a 01 unwearable 0 001 ! 02539359 a 0101 | not suitable for wear or able to be worn; "shoes so dilapidated as to be unwearable" -02539717 00 a 01 weedy 0 002 + 13085113 n 0101 ! 02539877 a 0101 | abounding with or resembling weeds; "a weedy path"; "weedy plants that take over a garden" -02539877 00 a 01 weedless 0 001 ! 02539717 a 0101 | free from weeds; "a weedless garden" -02539968 00 a 01 welcome 0 003 ^ 02526925 a 0000 + 14413265 n 0101 ! 02540236 a 0101 | giving pleasure or satisfaction or received with pleasure or freely granted; "a welcome relief"; "a welcome guest"; "made the children feel welcome"; "you are welcome to join us" -02540236 00 a 01 unwelcome 0 003 ^ 02527734 a 0000 ! 02539968 a 0101 & 02540458 a 0000 | not welcome; not giving pleasure or received with pleasure; "unwelcome publicity"; "unwelcome interruptions"; "unwelcome visitors" -02540458 00 s 01 uninvited 0 001 & 02540236 a 0000 | unwelcome and unwanted; "uninvited guests"; "uninvited thoughts" -02540578 00 a 01 well 1 006 ^ 01017161 a 0000 ^ 01170243 a 0000 + 14447908 n 0102 ! 02541302 a 0101 & 02540899 a 0000 & 02541012 a 0000 | in good health especially after having suffered illness or injury; "appears to be entirely well"; "the wound is nearly well"; "a well man"; "I think I'm well; at least I feel well" -02540899 00 s 02 asymptomatic 0 symptomless 0 001 & 02540578 a 0000 | having no symptoms of illness or disease -02541012 00 s 03 cured 0 healed 0 recovered 0 001 & 02540578 a 0000 | freed from illness or injury; "the patient appears cured"; "the incision is healed"; "appears to be entirely recovered"; "when the recovered patient tries to remember what occurred during his delirium"- Normon Cameron -02541302 00 a 02 ill 1 sick 1 039 ^ 01172889 a 0000 ^ 01017738 a 0000 + 07950418 n 0201 + 14061805 n 0204 + 14061805 n 0101 ! 02540578 a 0101 & 02542148 a 0000 & 02542256 a 0000 & 02542325 a 0000 & 02542675 a 0000 & 02542878 a 0000 & 02543034 a 0000 & 02543149 a 0000 & 02543324 a 0000 & 02543436 a 0000 & 02543598 a 0000 & 02543823 a 0000 & 02543934 a 0000 & 02544048 a 0000 & 02544427 a 0000 & 02544525 a 0000 & 02544892 a 0000 & 02545023 a 0000 & 02545168 a 0000 & 02545257 a 0000 & 02545385 a 0000 & 02545484 a 0000 & 02545592 a 0000 & 02545689 a 0000 & 02545874 a 0000 & 02545989 a 0000 & 02546116 a 0000 & 02546316 a 0000 & 02546526 a 0000 & 02546624 a 0000 & 02546713 a 0000 & 02546854 a 0000 & 02547131 a 0000 & 02547217 a 0000 | affected by an impairment of normal physical or mental function; "ill from the monotony of his suffering" -02542148 00 s 02 afflicted 0 stricken 1 001 & 02541302 a 0000 | grievously affected especially by disease -02542256 00 s 01 aguish 0 001 & 02541302 a 0000 | affected by ague -02542325 00 s 08 ailing 0 indisposed 0 peaked(p) 0 poorly(p) 0 sickly 0 unwell 1 under_the_weather 0 seedy 0 002 & 02541302 a 0000 + 14061805 n 0602 | somewhat ill or prone to illness; "my poor ailing grandmother"; "feeling a bit indisposed today"; "you look a little peaked"; "feeling poorly"; "a sickly child"; "is unwell and can't come to work" -02542675 00 s 04 airsick 0 air_sick 0 carsick 0 seasick 0 006 & 02541302 a 0000 + 14203942 n 0401 + 14203813 n 0301 + 14203605 n 0202 + 14203605 n 0102 + 14203605 n 0101 | experiencing motion sickness -02542878 00 s 01 autistic 0 002 & 02541302 a 0000 + 05896998 n 0101 | characteristic of or affected with autism; "autistic behavior"; "autistic children" -02543034 00 s 04 bedfast 0 bedridden 0 bedrid 0 sick-abed 0 001 & 02541302 a 0000 | confined to bed (by illness) -02543149 00 s 03 bilious 0 liverish 0 livery 0 003 & 02541302 a 0000 + 05385534 n 0301 + 14062565 n 0101 | suffering from or suggesting a liver disorder or gastric distress -02543324 00 s 01 bronchitic 0 002 & 02541302 a 0000 + 14146273 n 0101 | suffering from or prone to bronchitis -02543436 00 s 01 consumptive 0 001 & 02541302 a 0000 | afflicted with or associated with pulmonary tuberculosis; "a consumptive patient"; "a consumptive cough" -02543598 00 s 02 convalescent 0 recovering 0 004 & 02541302 a 0000 + 09961605 n 0101 + 13452347 n 0101 + 00092690 v 0103 | returning to health after illness or debility; "convalescent children are difficult to keep in bed" -02543823 00 s 02 delirious 0 hallucinating 0 002 & 02541302 a 0000 + 14391876 n 0102 | experiencing delirium -02543934 00 s 01 diabetic 0 003 & 02541302 a 0000 + 10010977 n 0101 + 14117805 n 0101 | suffering from diabetes -02544048 00 s 04 dizzy 0 giddy 0 woozy 0 vertiginous 0 004 & 02541302 a 0000 + 14372513 n 0404 + 14372513 n 0202 + 14372513 n 0101 | having or causing a whirling sensation; liable to falling; "had a dizzy spell"; "a dizzy pinnacle"; "had a headache and felt giddy"; "a giddy precipice"; "feeling woozy from the blow on his head"; "a vertiginous climb up the face of the cliff" -02544427 00 s 01 dyspeptic 0 002 & 02541302 a 0000 + 14336317 n 0102 | suffering from dyspepsia -02544525 00 s 05 faint 0 light 0 swooning 0 light-headed 0 lightheaded 0 004 & 02541302 a 0000 + 14372513 n 0503 + 07478318 n 0101 + 07480666 n 0101 | weak and likely to lose consciousness; "suddenly felt faint from the pain"; "was sick and faint from hunger"; "felt light in the head"; "a swooning fit"; "light-headed with wine"; "light-headed from lack of sleep" -02544892 00 s 02 feverish 0 feverous 0 003 & 02541302 a 0000 + 14365356 n 0201 + 14365356 n 0105 | having or affected by a fever -02545023 00 s 01 funny 0 001 & 02541302 a 0000 | experiencing odd bodily sensations; "told the doctor about the funny sensations in her chest" -02545168 00 s 01 gouty 0 002 & 02541302 a 0000 + 14188804 n 0101 | suffering from gout -02545257 00 s 01 green 0 001 & 02541302 a 0000 | looking pale and unhealthy; "you're looking green"; "green around the gills" -02545385 00 s 02 laid_low(p) 0 stricken 2 001 & 02541302 a 0000 | put out of action (by illness) -02545484 00 s 01 laid_up(p) 0 001 & 02541302 a 0000 | ill and usually confined; "laid up with a bad cold" -02545592 00 s 01 milk-sick 0 001 & 02541302 a 0000 | affected with or related to milk sickness -02545689 00 s 05 nauseated 0 nauseous 0 queasy 0 sick 2 sickish 0 004 & 02541302 a 0000 + 14359952 n 0402 + 14360320 n 0301 + 14359952 n 0201 | feeling nausea; feeling about to vomit -02545874 00 s 01 palsied 0 001 & 02541302 a 0000 | affected with palsy or uncontrollable tremor; "palsied hands" -02545989 00 s 02 paralytic 0 paralyzed 0 003 & 02541302 a 0000 + 10398033 n 0101 + 14558226 n 0101 | affected with paralysis -02546116 00 s 01 paraplegic 0 003 & 02541302 a 0000 + 10398487 n 0101 + 14559495 n 0101 | suffering complete paralysis of the lower half of the body usually resulting from damage to the spinal cord -02546316 00 s 02 rickety 0 rachitic 0 003 & 02541302 a 0000 + 14354642 n 0201 + 14201311 n 0202 | affected with, suffering from, or characteristic of rickets; "rickety limbs and joints"; "a rachitic patient" -02546526 00 s 01 scrofulous 0 002 & 02541302 a 0000 + 14144247 n 0101 | afflicted with scrofula -02546624 00 s 01 sneezy 0 002 & 02541302 a 0000 + 14314850 n 0101 | inclined to sneeze -02546713 00 s 01 spastic 0 003 & 02541302 a 0000 + 14094653 n 0102 + 04771738 n 0101 | suffering from spastic paralysis; "a spastic child" -02546854 00 s 02 tubercular 0 tuberculous 0 004 & 02541302 a 0000 + 14211440 n 0201 + 14211440 n 0101 + 14143415 n 0101 | constituting or afflicted with or caused by tuberculosis or the tubercle bacillus; "a tubercular child"; "tuberculous patients"; "tubercular meningitis" -02547131 00 s 01 unhealed 0 001 & 02541302 a 0000 | not healed; "an unhealed wound" -02547217 00 s 01 upset 0 001 & 02541302 a 0000 | mildly physically distressed; "an upset stomach" -02547317 00 a 01 wet 1 023 = 14534696 n 0000 + 14534696 n 0101 ! 02551380 a 0101 & 02547862 a 0000 & 02547953 a 0000 & 02548066 a 0000 & 02548619 a 0000 & 02548820 a 0000 & 02549032 a 0000 & 02549234 a 0000 & 02549393 a 0000 & 02549569 a 0000 & 02549691 a 0000 & 02549857 a 0000 & 02550023 a 0000 & 02550170 a 0000 & 02550333 a 0000 & 02550517 a 0000 & 02550704 a 0000 & 02550891 a 0000 & 02551069 a 0000 & 02551141 a 0000 & 02551259 a 0000 | covered or soaked with a liquid such as water; "a wet bathing suit"; "wet sidewalks"; "wet weather" -02547862 00 s 02 bedewed 0 dewy 0 002 & 02547317 a 0000 + 14834132 n 0201 | wet with dew -02547953 00 s 01 besprent 0 001 & 02547317 a 0000 | sprinkled over; "glistening grass besprent with raindrops" -02548066 00 s 0c boggy 0 marshy 0 miry 0 mucky 0 muddy 0 quaggy 0 sloppy 0 sloughy 0 soggy 0 squashy 0 swampy 0 waterlogged 0 012 & 02547317 a 0000 + 09452395 n 0b01 + 14536331 n 0901 + 09438313 n 0801 + 14535056 n 0703 + 14956523 n 0701 + 09355850 n 0603 + 14956325 n 0501 + 14535056 n 0502 + 09355850 n 0301 + 09347779 n 0201 + 09225943 n 0101 | (of soil) soft and watery; "the ground was boggy under foot"; "a marshy coastline"; "miry roads"; "wet mucky lowland"; "muddy barnyard"; "quaggy terrain"; "the sloughy edge of the pond"; "swampy bayous" -02548619 00 s 02 clammy 0 dank 0 003 & 02547317 a 0000 + 14536085 n 0201 + 14536085 n 0102 | unpleasantly cool and humid; "a clammy handshake"; "clammy weather"; "a dank cellar"; "dank rain forests" -02548820 00 s 03 damp 0 dampish 0 moist 0 004 & 02547317 a 0000 + 14535905 n 0303 + 14535905 n 0101 + 14535905 n 0102 | slightly wet; "clothes damp with perspiration"; "a moist breeze"; "eyes moist with tears" -02549032 00 s 02 sodden 0 soppy 0 001 & 02547317 a 0000 | wet through and through; thoroughly wet; "stood at the door drenched (or soaked) by the rain"; "the speaker's sodden collar"; "soppy clothes" -02549234 00 s 02 drippy 0 drizzly 0 003 & 02547317 a 0000 + 11502322 n 0201 + 05010506 n 0101 | wet with light rain; "a sad drizzly day"; "a wet drippy day" -02549393 00 s 01 humid 0 003 & 02547317 a 0000 + 14535643 n 0102 + 14535643 n 0101 | containing or characterized by a great deal of water vapor; "humid air"; "humid weather" -02549569 00 s 01 misty 0 003 & 02547317 a 0000 + 11482706 n 0101 + 04704116 n 0102 | wet with mist; "the misty evening" -02549691 00 s 03 muggy 0 steamy 0 sticky 1 002 & 02547317 a 0000 + 14535807 n 0101 | hot or warm and humid; "muggy weather"; "the steamy tropics"; "sticky weather" -02549857 00 s 02 reeking 0 watery 1 002 & 02547317 a 0000 + 04937427 n 0201 | wet with secreted or exuded moisture such as sweat or tears; "wiped his reeking neck" -02550023 00 s 01 rheumy 0 002 & 02547317 a 0000 + 14853647 n 0101 | moist, damp, wet (especially of air); "the raw and theumy damp of night air" -02550170 00 s 01 sloppy 1 002 & 02547317 a 0000 + 14535056 n 0103 | wet or smeared with a spilled liquid or moist material; "a sloppy floor"; "a sloppy saucer" -02550333 00 s 02 showery 0 rainy 0 004 & 02547317 a 0000 + 15008607 n 0201 + 11501381 n 0201 + 11502497 n 0101 | (of weather) wet by periods of rain; "showery weather"; "rainy days" -02550517 00 s 02 steaming 0 steamy 1 002 & 02547317 a 0000 + 04704116 n 0203 | filled with steam or emitting moisture in the form of vapor or mist; "a steaming kettle"; "steamy towels" -02550704 00 s 01 sticky 2 002 & 02547317 a 0000 + 04935239 n 0101 | moist as with undried perspiration and with clothing sticking to the body; "felt sticky and chilly at the same time" -02550891 00 s 01 tacky 0 002 & 02547317 a 0000 + 04935904 n 0105 | (of a glutinous liquid such as paint) not completely dried and slightly sticky to the touch; "tacky varnish" -02551069 00 s 01 undried 0 001 & 02547317 a 0000 | still wet or moist -02551141 00 s 01 washed 0 001 & 02547317 a 0000 | wet as from washing; sometimes used in combination; "rain-washed" -02551259 00 s 01 watery 2 003 & 02547317 a 0000 + 14535056 n 0101 + 14845743 n 0101 | filled with water; "watery soil" -02551380 00 a 01 dry 1 018 = 14534696 n 0000 + 14536438 n 0101 ! 02547317 a 0101 & 02551946 a 0000 & 02552222 a 0000 & 02552315 a 0000 & 02552415 a 0000 & 02552646 a 0000 & 02552849 a 0000 & 02553017 a 0000 & 02553137 a 0000 & 02553234 a 0000 & 02553560 a 0000 & 02553725 a 0000 & 02553797 a 0000 & 02553902 a 0000 & 02554019 a 0000 & 02554140 a 0000 | free from liquid or moisture; lacking natural or normal moisture or depleted of water; or no longer wet; "dry land"; "dry clothes"; "a dry climate"; "dry splintery boards"; "a dry river bed"; "the paint is dry" -02551946 00 s 05 adust 0 baked 0 parched 0 scorched 0 sunbaked 0 001 & 02551380 a 0000 | dried out by heat or excessive exposure to sunlight; "a vast desert all adust"; "land lying baked in the heat"; "parched soil"; "the earth was scorched and bare"; "sunbaked salt flats" -02552222 00 s 01 air-dried 0 001 & 02551380 a 0000 | made dry by contact with unheated air -02552315 00 s 01 air-dry 0 001 & 02551380 a 0000 | not giving off moisture on exposure to the air -02552415 00 s 02 arid 0 waterless 0 004 & 02551380 a 0000 + 14536438 n 0202 + 14537250 n 0101 + 14537250 n 0102 | lacking sufficient water or rainfall; "an arid climate"; "a waterless well"; "miles of waterless country to cross" -02552646 00 s 02 bone-dry(a) 0 bone_dry(p) 0 001 & 02551380 a 0000 | without a trace of moisture; as dry as a weathered bone; "bone-dry leaves are a fire hazard"; "a drier to get the clothes bone dry" -02552849 00 s 02 desiccated 0 dried-out 0 001 & 02551380 a 0000 | thoroughly dried out; "old boxes of desiccated Cuban cigars"; "dried-out boards beginning to split" -02553017 00 s 01 dried 0 001 & 02551380 a 0000 | not still wet; "the ink has dried"; "a face marked with dried tears" -02553137 00 s 01 dried-up 1 001 & 02551380 a 0000 | depleted of water; "a dried-up water hole" -02553234 00 s 06 dried-up 2 sere 0 sear 0 shriveled 0 shrivelled 0 withered 0 003 & 02551380 a 0000 ;c 08436759 n 0000 + 14537472 n 0201 | (used especially of vegetation) having lost all moisture; "dried-up grass"; "the desert was edged with sere vegetation"; "shriveled leaves on the unwatered seedlings"; "withered vines" -02553560 00 s 01 dry-shod 0 001 & 02551380 a 0000 | having or keeping the feet or shoes dry; "a land bridge over which man and beasts could have crossed dry-shod" -02553725 00 s 01 kiln-dried 0 001 & 02551380 a 0000 | dried in a kiln -02553797 00 s 01 rainless 0 001 & 02551380 a 0000 | lacking rain; "a rainless month"; "rainless skies" -02553902 00 s 01 semiarid 0 001 & 02551380 a 0000 | somewhat arid; "a semiarid region with little annual rainfall" -02554019 00 s 01 semi-dry 0 001 & 02551380 a 0000 | somewhat dry; "swabbing left the deck semi-dry but still slippery" -02554140 00 s 01 thirsty 0 002 & 02551380 a 0000 + 14537250 n 0103 | needing moisture; "thirsty fields under a rainless sky" -02554267 00 a 02 wet 2 lactating 0 002 ! 02554546 a 0101 & 02554420 a 0000 | producing or secreting milk; "a wet nurse"; "a wet cow"; "lactating cows" -02554420 00 s 01 fresh 0 001 & 02554267 a 0000 | having recently calved and therefore able to give milk; "the cow is fresh" -02554546 00 a 01 dry 2 003 + 14536438 n 0101 ! 02554267 a 0101 & 02554663 a 0000 | not producing milk; "a dry cow" -02554663 00 s 01 milkless 0 001 & 02554546 a 0000 | having no milk; "milkless breasts" -02554752 00 a 01 wet 4 001 ! 02554940 a 0101 | supporting or permitting the legal production and sale of alcoholic beverages; "a wet candidate running on a wet platform"; "a wet county" -02554940 00 a 01 dry 4 001 ! 02554752 a 0101 | opposed to or prohibiting the production and sale of alcoholic beverages; "the dry vote led by preachers and bootleggers"; "a dry state" -02555126 00 a 01 wet 5 003 + 14535431 n 0102 + 14534696 n 0101 ! 02555267 a 0101 | containing moisture or volatile components; "wet paint" -02555267 00 a 01 dry 5 002 + 14536438 n 0101 ! 02555126 a 0101 | lacking moisture or volatile components; "dry paint" -02555387 00 a 02 hydrous 0 hydrated 0 002 ;c 06084469 n 0000 ! 02555550 a 0101 | containing combined water (especially water of crystallization as in a hydrate) -02555550 00 a 01 anhydrous 0 002 ;c 06084469 n 0000 ! 02555387 a 0101 | without water; especially without water of crystallization -02555683 00 a 01 wheeled 0 001 ! 02555777 a 0101 | having wheels; often used in combination -02555777 00 a 01 wheelless 0 001 ! 02555683 a 0101 | having no wheels or having no wheeled vehicles; "dragging a wheelless stoneboat filled with rocks"; "wheelless societies" -02555954 00 a 01 white-collar 0 005 ^ 02225510 a 0000 ! 02556720 a 0101 & 02556229 a 0000 & 02556402 a 0000 & 02556568 a 0000 | of or designating salaried professional or clerical work or workers; "the coal miner's son aspired to a white-collar occupation as a bookkeeper" -02556229 00 s 01 clerical 0 002 & 02555954 a 0000 + 09928451 n 0101 | appropriate for or engaged in office work; "clerical skills"; "a clerical job"; "the clerical staff" -02556402 00 s 01 professional 0 001 & 02555954 a 0000 | engaged in by members of a profession; "professional occupations include medicine and the law and teaching" -02556568 00 s 01 pink-collar 0 001 & 02555954 a 0000 | of or relating to a class of jobs once traditionally filled by women; "a pink-collar employee" -02556720 00 a 01 blue-collar 0 005 ^ 02228335 a 0000 ! 02555954 a 0101 & 02556901 a 0000 & 02557023 a 0000 & 02557145 a 0000 | of or designating manual industrial work or workers -02556901 00 s 01 industrial 0 001 & 02556720 a 0000 | employed in industry; "the industrial classes"; "industrial work" -02557023 00 s 01 manual(a) 0 001 & 02556720 a 0000 | doing or requiring physical work; "manual labor"; "manual laborer" -02557145 00 s 02 wage-earning 0 working-class 0 001 & 02556720 a 0000 | working for hourly wages rather than fixed (e.g. annual) salaries; "working-class occupations include manual as well as industrial labor" -02557357 00 a 01 wholesome 0 011 ^ 01164763 a 0000 ^ 01170243 a 0000 ^ 02273326 a 0000 + 04789689 n 0101 ! 02559180 a 0101 & 02557719 a 0000 & 02558032 a 0000 & 02558184 a 0000 & 02558528 a 0000 & 02558767 a 0000 & 02558996 a 0000 | conducive to or characteristic of physical or moral well-being; "wholesome attitude"; "wholesome appearance"; "wholesome food" -02557719 00 s 06 alimentary 0 alimental 0 nourishing 1 nutrient 0 nutritious 0 nutritive 0 009 & 02557357 a 0000 + 04789897 n 0602 + 13523661 n 0501 + 07570720 n 0503 + 04789897 n 0501 + 00021265 n 0402 + 01204191 v 0403 + 01202728 v 0401 + 07570720 n 0105 | of or providing nourishment; "good nourishing stew" -02558032 00 s 01 heart-healthy 0 001 & 02557357 a 0000 | of foods that are low in fats and sodium and other ingredients that may foster heart disease -02558184 00 s 03 healthy 0 salubrious 0 good_for_you(p) 0 003 & 02557357 a 0000 + 04790238 n 0202 + 04790238 n 0201 | promoting health; healthful; "a healthy diet"; "clean healthy air"; "plenty of healthy sleep"; "healthy and normal outlets for youthful energy"; "the salubrious mountain air and water"- C.B.Davis; "carrots are good for you" -02558528 00 s 05 hearty 0 satisfying 0 solid 0 square 0 substantial 0 002 & 02557357 a 0000 + 04761212 n 0502 | providing abundant nourishment; "a hearty meal"; "good solid food"; "ate a substantial breakfast"; "four square meals a day" -02558767 00 s 01 organic 0 002 & 02557357 a 0000 ;c 07702362 n 0000 | of or relating to foodstuff grown or raised without synthetic fertilizers or pesticides or hormones; "organic eggs"; "organic vegetables"; "organic chicken" -02558996 00 s 01 salubrious 2 002 & 02557357 a 0000 + 04790238 n 0101 | favorable to health of mind or body; "not the most salubrious campsite"; "one of the less salubrious suburbs" -02559180 00 a 01 unwholesome 0 012 ^ 01160031 a 0000 ^ 01611067 a 0000 ^ 01167817 a 0000 ^ 01172889 a 0000 ^ 02274253 a 0000 + 04790449 n 0101 ! 02557357 a 0101 & 02559534 a 0000 & 02559694 a 0000 & 02559862 a 0000 & 02560035 a 0000 & 02560402 a 0000 | detrimental to physical or moral well-being; "unwholesome food"; "unwholesome habits like smoking" -02559534 00 s 03 insalubrious 0 unhealthful 0 unhealthy 0 004 & 02559180 a 0000 + 04791740 n 0201 + 04791928 n 0102 + 04791928 n 0101 | detrimental to health -02559694 00 s 02 insubstantial 0 jejune 0 003 & 02559180 a 0000 + 04791453 n 0202 + 04791453 n 0201 | lacking in nutritive value; "the jejune diets of the very poor" -02559862 00 s 01 morbid 0 003 & 02559180 a 0000 + 05699906 n 0101 + 04790449 n 0102 | suggesting an unhealthy mental state; "morbid interest in death"; "morbid curiosity" -02560035 00 s 08 nauseating 0 nauseous 0 noisome 0 queasy 0 loathsome 0 offensive 0 sickening 0 vile 0 009 & 02559180 a 0000 + 04781349 n 0804 + 04996571 n 0704 + 04780958 n 0601 + 01810447 v 0602 + 04781349 n 0501 + 04790774 n 0302 + 07504111 n 0201 + 04996571 n 0103 | causing or able to cause nausea; "a nauseating smell"; "nauseous offal"; "a sickening stench" -02560402 00 s 01 rich 0 001 & 02559180 a 0000 | containing plenty of fat, or eggs, or sugar; "rich desserts"; "they kept gorging on rich foods" -02560548 00 a 02 wide 0 broad 4 013 ^ 00525453 a 0000 ^ 02410393 a 0000 = 05136150 n 0000 + 05136343 n 0202 + 05136343 n 0101 ! 02561888 a 0101 & 02561014 a 0000 & 02561123 a 0000 & 02561302 a 0000 & 02561391 a 0000 & 02561490 a 0000 & 02561560 a 0000 & 02561752 a 0000 | having great (or a certain) extent from one side to the other; "wide roads"; "a wide necktie"; "wide margins"; "three feet wide"; "a river two miles broad"; "broad shoulders"; "a broad river" -02561014 00 s 01 beamy 0 002 & 02560548 a 0000 + 05136546 n 0101 | broad in the beam; "a beamy cargo ship" -02561123 00 s 02 bird's-eye 0 panoramic 0 003 & 02560548 a 0000 + 05933246 n 0206 + 03884072 n 0201 | as from an altitude or distance; "a bird's-eye survey"; "a panoramic view" -02561302 00 s 01 broad-brimmed 0 001 & 02560548 a 0000 | (of hats) having a broad brim -02561391 00 s 01 deep 0 001 & 02560548 a 0000 | extending relatively far inward; "a deep border" -02561490 00 s 01 fanlike 0 001 & 02560548 a 0000 | resembling a fan -02561560 00 s 01 sweeping 0 001 & 02560548 a 0000 | taking in or moving over (or as if over) a wide area; often used in combination; "a sweeping glance"; "a wide-sweeping view of the river" -02561752 00 s 01 wide-screen(a) 0 001 & 02560548 a 0000 | (motion pictures) projected on a screen with much greater width than height -02561888 00 a 01 narrow 0 014 ^ 01415021 a 0000 ^ 00287640 a 0000 ^ 02412164 a 0000 = 05136150 n 0000 + 09365863 n 0101 + 05136788 n 0101 ! 02560548 a 0101 & 02562235 a 0000 & 02562368 a 0000 & 02562484 a 0000 & 02562566 a 0000 & 02562705 a 0000 & 02562805 a 0000 & 02562909 a 0000 | not wide; "a narrow bridge"; "a narrow line across the page" -02562235 00 s 03 constricting 0 constrictive 0 narrowing 0 001 & 02561888 a 0000 | (of circumstances) tending to constrict freedom -02562368 00 s 01 narrowed 0 001 & 02561888 a 0000 | reduced in size as by squeezing together; "his narrowed eyes" -02562484 00 s 01 narrow-mouthed 0 001 & 02561888 a 0000 | having a narrow mouth -02562566 00 s 02 slender 0 thin 0 003 & 02561888 a 0000 + 05136978 n 0202 + 05103648 n 0103 | very narrow; "a thin line across the page" -02562705 00 s 01 strait 0 002 & 02561888 a 0000 ;u 07073447 n 0000 | narrow; "strait is the gate" -02562805 00 s 01 straplike 0 001 & 02561888 a 0000 | long and narrow like a strap; "straplike leaves" -02562909 00 s 03 tapered 0 tapering 0 narrowing 2 001 & 02561888 a 0000 | becoming gradually narrower; "long tapering fingers"; "trousers with tapered legs" -02563068 00 a 01 wide 2 003 + 05104548 n 0108 ! 02563310 a 0101 & 02563194 a 0000 | great in degree; "won by a wide margin" -02563194 00 s 01 comfortable 0 001 & 02563068 a 0000 | more than adequate; "the home team had a comfortable lead" -02563310 00 a 01 narrow 2 003 + 05121095 n 0102 ! 02563068 a 0101 & 02563466 a 0000 | very limited in degree; "won by a narrow margin"; "a narrow escape" -02563466 00 s 02 bare(a) 0 marginal 0 001 & 02563310 a 0000 | just barely adequate or within a lower limit; "a bare majority"; "a marginal victory" -02563616 00 a 01 wieldy 0 001 ! 02563727 a 0101 | easy to handle or use or manage; "a large but wieldy book" -02563727 00 a 02 unwieldy 0 unmanageable 4 004 + 04711665 n 0103 ! 02563616 a 0101 & 02564023 a 0000 & 02564330 a 0000 | difficult to use or handle or manage because of size or weight or shape; "we set about towing the unwieldy structure into the shelter"; "almost dropped the unwieldy parcel" -02564023 00 s 04 awkward 0 bunglesome 0 clumsy 0 ungainly 0 002 & 02563727 a 0000 + 04711665 n 0101 | difficult to handle or manage especially because of shape; "an awkward bundle to carry"; "a load of bunglesome paraphernalia"; "clumsy wooden shoes"; "the cello, a rather ungainly instrument for a girl" -02564330 00 s 02 cumbersome 0 cumbrous 0 002 & 02563727 a 0000 + 04711665 n 0102 | difficult to handle or use especially because of size or weight; "a cumbersome piece of machinery"; "cumbrous protective clothing" -02564546 00 a 01 wigged 0 003 ! 02564915 a 0101 & 02564683 a 0000 & 02564810 a 0000 | wearing a wig; "the judges all wigged and robed" -02564683 00 s 02 peruked 0 periwigged 0 001 & 02564546 a 0000 | wearing a wig popular for men in the 17th and 18th centuries -02564810 00 s 01 toupeed 0 001 & 02564546 a 0000 | wearing a small hairpiece to cover partial baldness -02564915 00 a 01 wigless 0 001 ! 02564546 a 0101 | not wearing a wig -02564986 00 a 01 willing 0 013 ^ 00696518 a 0000 ^ 01292128 a 0000 ^ 01930512 a 0000 ^ 02520219 a 0000 = 04623612 n 0000 + 04644512 n 0101 ! 02566015 a 0101 & 02565327 a 0000 & 02565425 a 0000 & 02565583 a 0000 & 02565701 a 0000 & 02565801 a 0000 & 02565939 a 0000 | disposed or inclined toward; "a willing participant"; "willing helpers" -02565327 00 s 01 consenting 0 001 & 02564986 a 0000 | having given consent; "consenting adults" -02565425 00 s 04 disposed(p) 0 fain 0 inclined(p) 0 prepared 0 002 & 02564986 a 0000 + 14031108 n 0402 | having made preparations; "prepared to take risks" -02565583 00 s 02 glad 0 happy 0 001 & 02564986 a 0000 | eagerly disposed to act or to be of service; "glad to help" -02565701 00 s 01 ready 0 001 & 02564986 a 0000 | mentally disposed; "he was ready to believe her" -02565801 00 s 01 volitional 0 003 & 02564986 a 0000 + 05652593 n 0101 + 00163047 n 0101 | with deliberate intention; "a volitional act" -02565939 00 s 01 willing_and_able 0 001 & 02564986 a 0000 | not reluctant -02566015 00 a 01 unwilling 0 009 ^ 00695523 a 0000 ^ 01293158 a 0000 ^ 02521353 a 0000 = 04623612 n 0000 + 04645599 n 0101 ! 02564986 a 0101 & 02566299 a 0000 & 02566453 a 0000 & 02566644 a 0000 | not disposed or inclined toward; "an unwilling assistant"; "unwilling to face facts" -02566299 00 s 01 grudging 0 001 & 02566015 a 0000 | of especially an attitude; "gave grudging consent"; "grudging acceptance of his opponent's victory" -02566453 00 s 03 loath 0 loth 0 reluctant 0 002 & 02566015 a 0000 + 04645943 n 0301 | unwillingness to do something contrary to your custom; "a reluctant smile"; "loath to admit a mistake" -02566644 00 s 02 unintentional 0 unwilled 0 001 & 02566015 a 0000 | without deliberate intent; "my heart with unwilled love grew warm"- George Macdonald -02566799 00 a 01 winged 0 011 ! 02568285 a 0101 & 02567117 a 0000 & 02567281 a 0000 & 02567473 a 0000 & 02567593 a 0000 & 02567738 a 0000 & 02567815 a 0000 & 02567918 a 0000 & 02567999 a 0000 & 02568076 a 0000 & 02568192 a 0000 | having wings or as if having wings of a specified kind; "the winged feet of Mercury"; -02567117 00 s 04 alar 0 alary 0 aliform 0 wing-shaped 0 004 & 02566799 a 0000 ;c 06037666 n 0000 + 05309965 n 0201 + 02151940 n 0201 | having or resembling wings -02567281 00 s 02 alate 0 alated 0 003 & 02566799 a 0000 + 05309965 n 0101 + 02151940 n 0101 | (of seeds or insects) having winglike extensions; "alate leaves"; "alate seeds of a maple tree" -02567473 00 s 01 batwing 0 001 & 02566799 a 0000 | formed or shaped like a bat's wing; "a dress with batwing sleeves" -02567593 00 s 02 brachypterous 0 short-winged 0 001 & 02566799 a 0000 | (especially of certain insects) having very short or rudimentary wings -02567738 00 s 01 one-winged 0 001 & 02566799 a 0000 | having a single wing -02567815 00 s 01 pinioned 0 001 & 02566799 a 0000 | (of birds) especially having the flight feathers -02567918 00 s 01 slender-winged 0 001 & 02566799 a 0000 | having slender wings -02567999 00 s 01 small-winged 0 001 & 02566799 a 0000 | having small wings -02568076 00 s 01 volant(ip) 0 002 & 02566799 a 0000 ;c 05801594 n 0000 | with wings extended in a flying position -02568192 00 s 01 winglike 0 001 & 02566799 a 0000 | resembling a wing in shape or position -02568285 00 a 01 wingless 0 003 ! 02566799 a 0101 & 02568389 a 0000 & 02568480 a 0000 | lacking wings -02568389 00 s 02 apterous 0 apteral 0 001 & 02568285 a 0000 | (of insects) without wings -02568480 00 s 01 flightless 0 001 & 02568285 a 0000 | incapable of flying -02568556 00 a 01 wired 0 003 ! 02569030 a 0101 & 02568738 a 0000 & 02568884 a 0000 | equipped with wire or wires especially for electric or telephone service; "a well-wired house" -02568738 00 s 01 bugged 0 001 & 02568556 a 0000 | having hidden electronic eavesdropping devices; "wired hotel rooms"; "even the car is bugged" -02568884 00 s 01 connected 0 002 & 02568556 a 0000 + 13791389 n 0103 | wired together to an alarm system; "all the window alarms are connected" -02569030 00 a 01 wireless 0 001 ! 02568556 a 0101 | having no wires; "a wireless security system" -02569130 00 a 01 wise 0 011 ^ 00067038 a 0000 ^ 00067966 a 0000 ^ 01813400 a 0000 ^ 01898129 a 0000 + 04890112 n 0102 ! 02570282 a 0101 & 02569454 a 0000 & 02569558 a 0000 & 02569945 a 0000 & 02570046 a 0000 & 02570183 a 0000 | having or prompted by wisdom or discernment; "a wise leader"; "a wise and perceptive comment" -02569454 00 s 02 all-knowing 0 omniscient 0 002 & 02569130 a 0000 + 14458943 n 0201 | infinitely wise -02569558 00 s 03 perspicacious 0 sagacious 0 sapient 0 005 & 02569130 a 0000 + 05617107 n 0302 + 05614175 n 0202 + 05621439 n 0104 + 05621439 n 0103 | acutely insightful and wise; "much too perspicacious to be taken in by such a spurious argument"; "observant and thoughtful, he was given to asking sagacious questions"; "a source of valuable insights and sapient advice to educators" -02569945 00 s 01 owlish 0 001 & 02569130 a 0000 | resembling an owl; solemn and wise in appearance -02570046 00 s 01 sapiential 0 001 & 02569130 a 0000 | characterized by wisdom, especially the wisdom of God; "a sapiential government" -02570183 00 s 01 sage 0 001 & 02569130 a 0000 | having wisdom that comes with age and experience -02570282 00 a 01 foolish 0 014 ^ 01814085 a 0000 ^ 01899360 a 0000 ^ 00067767 a 0000 ^ 00068278 a 0000 + 05647156 n 0102 ! 02569130 a 0101 & 02570643 a 0000 & 02571277 a 0000 & 02571536 a 0000 & 02571903 a 0000 & 02572038 a 0000 & 02572267 a 0000 & 02572420 a 0000 & 02572657 a 0000 | devoid of good sense or judgment; "foolish remarks"; "a foolish decision" -02570643 00 s 09 absurd 0 cockeyed 0 derisory 0 idiotic 0 laughable 0 ludicrous 0 nonsensical 0 preposterous 0 ridiculous 0 005 & 02570282 a 0000 + 06607809 n 0903 + 00852922 v 0301 + 04891683 n 0101 + 06607809 n 0102 | incongruous;inviting ridicule; "the absurd excuse that the dog ate his homework"; "that's a cockeyed idea"; "ask a nonsensical question and get a nonsensical answer"; "a contribution so small as to be laughable"; "it is ludicrous to call a cottage a mansion"; "a preposterous attempt to turn back the pages of history"; "her conceited assumption of universal interest in her rather dull children was ridiculous" -02571277 00 s 05 asinine 0 fatuous 0 inane 0 mindless 0 vacuous 0 009 & 02570282 a 0000 + 05647451 n 0501 + 05174023 n 0504 + 05174023 n 0403 + 04894204 n 0402 + 05174023 n 0301 + 04891683 n 0203 + 04891683 n 0202 + 04891944 n 0101 | devoid of intelligence -02571536 00 s 08 cockamamie 0 cockamamy 0 goofy 0 sappy 0 silly 0 wacky 0 whacky 0 zany 0 007 & 02570282 a 0000 ;u 07075172 n 0000 + 10157744 n 0809 + 10805113 n 0801 + 04891683 n 0504 + 10157744 n 0302 + 09930876 n 0303 | ludicrous, foolish; "gave me a cockamamie reason for not going"; "wore a goofy hat"; "a silly idea"; "some wacky plan for selling more books" -02571903 00 s 01 fond 0 001 & 02570282 a 0000 | absurd or silly because unlikely; "fond hopes of becoming President"; "fond fancies" -02572038 00 s 03 harebrained 0 insane 0 mad 0 002 & 02570282 a 0000 + 05647156 n 0304 | very foolish; "harebrained ideas"; "took insane risks behind the wheel"; "a completely mad scheme to build a bridge between two mountains" -02572267 00 s 02 ill-conceived 0 misguided 0 001 & 02570282 a 0000 | poorly conceived or thought out; "an ill-conceived plan to take over the company" -02572420 00 s 04 rattlebrained 0 rattlepated 0 scatterbrained 0 scatty 0 001 & 02570282 a 0000 | lacking sense or discretion; "his rattlebrained crackpot ideas"; "how rattlepated I am! I've forgotten what I came for"- Glenway Westcott -02572657 00 s 01 unwise 0 002 & 02570282 a 0000 + 04891333 n 0103 | showing or resulting from lack of judgment or wisdom; "an unwise investor is soon impoverished" -02572823 00 a 01 wooded 0 014 ^ 01290333 a 0000 ! 02575008 a 0101 & 02573192 a 0000 & 02573443 a 0000 & 02573708 a 0000 & 02573859 a 0000 & 02573987 a 0000 & 02574092 a 0000 & 02574188 a 0000 & 02574294 a 0000 & 02574481 a 0000 & 02574614 a 0000 & 02574706 a 0000 & 02574890 a 0000 | covered with growing trees and bushes etc; "wooded land"; "a heavily wooded tract" -02573192 00 s 04 arboraceous 0 arboreous 0 woodsy 1 woody 0 004 & 02572823 a 0000 + 05216102 n 0401 + 05216102 n 0302 + 08438533 n 0303 | abounding in trees; "an arboreous landscape"; "violets in woodsy shady spots"; "a woody area near the highway" -02573443 00 s 02 bosky 0 brushy 0 003 & 02572823 a 0000 + 08437515 n 0201 + 08438840 n 0101 | covered with or consisting of bushes or thickets; "brushy undergrowth"; "`bosky' is a literary term"; "a bosky park leading to a modest yet majestic plaza"- Jack Beatty -02573708 00 s 02 braky 0 brambly 0 003 & 02572823 a 0000 + 13119870 n 0201 + 08437721 n 0101 | covered with brambles and ferns and other undergrowth -02573859 00 s 01 forested 0 001 & 02572823 a 0000 | covered with forest; "efforts to protect forested lands of the northwest" -02573987 00 s 01 jungly 0 002 & 02572823 a 0000 + 08439022 n 0101 | overgrown with tropical vegetation -02574092 00 s 01 overgrown 0 001 & 02572823 a 0000 | abounding in usually unwanted vegetation -02574188 00 s 01 rushy 0 002 & 02572823 a 0000 + 11743294 n 0101 | abounding in rushes; "a rushy marsh" -02574294 00 s 02 scrabbly 0 scrubby 0 003 & 02572823 a 0000 + 04730985 n 0202 + 08438223 n 0201 | sparsely covered with stunted trees or vegetation and underbrush; "open scrubby woods" -02574481 00 s 02 sylvan 0 silvan 0 001 & 02572823 a 0000 | relating to or characteristic of wooded regions; "a shady sylvan glade" -02574614 00 s 01 thicket-forming 0 001 & 02572823 a 0000 | tending to form dense thickets -02574706 00 s 01 timbered 0 001 & 02572823 a 0000 | covered with growing timber; "thickly timbered ridges clothed with loblolly pine and holly"; "hills timbered up to their summits" -02574890 00 s 01 woodsy 0 001 & 02572823 a 0000 | characteristic or suggestive of woods; "a fresh woodsy fragrance" -02575008 00 a 02 unwooded 0 treeless 0 004 ^ 01289701 a 0000 ! 02572823 a 0101 & 02575138 a 0000 & 02575238 a 0000 | not wooded -02575138 00 s 01 unforested 0 001 & 02575008 a 0000 | not covered with forest; "unforested lands" -02575238 00 s 01 untimbered 0 001 & 02575008 a 0000 | without trees; "an untimbered area" -02575330 00 a 01 woody 0 010 + 15098161 n 0101 ! 02576657 a 0101 & 02575653 a 0000 & 02575733 a 0000 & 02575834 a 0000 & 02575952 a 0000 & 02576058 a 0000 & 02576223 a 0000 & 02576365 a 0000 & 02576489 a 0000 | made of or containing or resembling wood; "woody plants"; "perennial herbs with woody stems"; "a woody taste" -02575653 00 s 01 ashen 0 001 & 02575330 a 0000 | made of wood of the ash tree -02575733 00 s 01 beechen 0 001 & 02575330 a 0000 | consisting of or made of wood of the beech tree -02575834 00 s 03 birch 0 birchen 0 birken 0 001 & 02575330 a 0000 | consisting of or made of wood of the birch tree -02575952 00 s 01 cedarn 0 001 & 02575330 a 0000 | consisting of or made of cedar; "carved cedarn doors" -02576058 00 s 01 ligneous 0 003 & 02575330 a 0000 ;c 06066555 n 0000 + 14935319 n 0101 | consisting of or containing lignin or xylem; "ligneous (or woody) tissue" -02576223 00 s 01 oaken 0 001 & 02575330 a 0000 | consisting of or made of wood of the oak tree; "a solid oak table"; "the old oaken bucket" -02576365 00 s 01 suffrutescent 0 001 & 02575330 a 0000 | of a plant; having a woody base that does not die down each year -02576489 00 s 01 wooden 0 001 & 02575330 a 0000 | made or consisting of (entirely or in part) or employing wood; "a wooden box"; "an ancient cart with wooden wheels" -02576657 00 a 01 nonwoody 0 003 ! 02575330 a 0101 & 02576795 a 0000 & 02576918 a 0000 | not woody; not consisting of or resembling wood -02576795 00 s 01 herbaceous 0 002 & 02576657 a 0000 ;c 06066555 n 0101 | characteristic of a nonwoody herb or plant part -02576918 00 s 02 pulpy 0 squashy 0 003 & 02576657 a 0000 + 09400826 n 0101 + 04939198 n 0102 | like a pulp or overripe; not having stiffness -02577061 00 a 03 worldly 0 secular 7 temporal 0 010 ^ 01180695 a 0000 ^ 02056880 a 0000 ^ 02270342 a 0000 + 04621524 n 0101 + 05670972 n 0103 ! 02578235 a 0101 & 02577454 a 0000 & 02577734 a 0000 & 02577907 a 0000 & 02578035 a 0000 | characteristic of or devoted to the temporal world as opposed to the spiritual world; "worldly goods and advancement"; "temporal possessions of the church" -02577454 00 s 01 economic 0 002 & 02577061 a 0000 + 00192613 n 0101 | concerned with worldly necessities of life (especially money); "he wrote the book primarily for economic reasons"; "gave up the large house for economic reasons"; "in economic terms they are very privileged" -02577734 00 s 01 material 0 001 & 02577061 a 0000 | concerned with worldly rather than spiritual interests; "material possessions"; "material wealth"; "material comforts" -02577907 00 s 03 materialistic 0 mercenary 0 worldly-minded 0 002 & 02577061 a 0000 + 14039310 n 0101 | marked by materialism -02578035 00 s 02 mundane 0 terrestrial 0 002 & 02577061 a 0000 + 04880273 n 0103 | concerned with the world or worldly matters; "mundane affairs"; "he developed an immense terrestrial practicality" -02578235 00 a 01 unworldly 0 007 ^ 02271544 a 0000 ^ 01781478 a 0000 ! 02577061 a 0101 & 02578546 a 0000 & 02578894 a 0000 & 02579136 a 0000 & 02579363 a 0000 | not concerned with the temporal world or swayed by mundane considerations; "was unworldly and did not greatly miss worldly rewards"- Sheldon Cheney -02578546 00 s 05 anchoritic 0 eremitic 0 eremitical 0 hermitic 0 hermitical 0 008 & 02578235 a 0000 + 10519126 n 0502 + 10172448 n 0501 + 10519126 n 0402 + 10172448 n 0401 + 10518945 n 0301 + 10518945 n 0201 + 10519126 n 0101 | characterized by ascetic solitude; "the eremitic element in the life of a religious colony"; "his hermitic existence" -02578894 00 s 05 cloistered 0 cloistral 0 conventual 0 monastic 0 monastical 0 005 & 02578235 a 0000 + 10112129 n 0402 + 08224413 n 0301 + 03099454 n 0301 + 04073948 n 0202 | of communal life sequestered from the world under religious vows -02579136 00 s 02 spiritual 0 unearthly 0 002 & 02578235 a 0000 + 04621314 n 0101 | concerned with or affecting the spirit or soul; "a spiritual approach to life"; "spiritual fulfillment"; "spiritual values"; "unearthly love" -02579363 00 s 01 unmercenary 0 001 & 02578235 a 0000 | not mercenary; not influenced by financial gains -02579469 00 a 01 woven 0 003 ! 02579952 a 0101 & 02579760 a 0000 & 02579864 a 0000 | made or constructed by interlacing threads or strips of material or other elements into a whole; "woven fabrics"; "woven baskets"; "the incidents woven into the story"; "folk songs woven into a symphony" -02579760 00 s 01 braided 0 001 & 02579469 a 0000 | woven by (or as if by) braiding; "braided cordage" -02579864 00 s 01 plain-woven 0 001 & 02579469 a 0000 | (of cloth) made in plain weave -02579952 00 a 01 unwoven 0 003 ! 02579469 a 0101 & 02580126 a 0000 & 02580267 a 0000 | not woven; "tapa cloth is an unwoven fabric made by pounding bark into a thin sheet" -02580126 00 s 01 felted 0 001 & 02579952 a 0000 | made by combining fibers with a binder using heat and pressure; "felt is a felted cloth" -02580267 00 s 01 knitted 0 001 & 02579952 a 0000 | made by intertwining threads in a series of connected loops rather than by weaving; "knitted garments"; "a hand-knitted sweater" -02580449 00 a 01 worn 0 025 ^ 01638438 a 0000 ! 02584699 a 0101 & 02581047 a 0000 & 02581172 a 0000 & 02581254 a 0000 & 02581365 a 0000 & 02581530 a 0000 & 02581829 a 0000 & 02582064 a 0000 & 02582163 a 0000 & 02582269 a 0000 & 02582473 a 0000 & 02582602 a 0000 & 02582697 a 0000 & 02582873 a 0000 & 02583043 a 0000 & 02583271 a 0000 & 02583467 a 0000 & 02583619 a 0000 & 02583898 a 0000 & 02584031 a 0000 & 02584203 a 0000 & 02584347 a 0000 & 02584459 a 0000 & 02584610 a 0000 | affected by wear; damaged by long use; "worn threads on the screw"; "a worn suit"; "the worn pockets on the jacket" -02581047 00 s 01 aged 0 001 & 02580449 a 0000 | at an advanced stage of erosion (pronounced as one syllable); "aged rocks" -02581172 00 s 01 attrited 0 001 & 02580449 a 0000 | worn by rubbing or friction -02581254 00 s 01 battered 0 001 & 02580449 a 0000 | damaged especially by hard usage; "his battered old hat" -02581365 00 s 01 clapped_out 0 002 & 02580449 a 0000 ;r 08860123 n 0000 | worn from age or heavy use and no longer able to operate (of cars or machines or people) -02581530 00 s 06 creaky 0 decrepit 0 derelict 0 flea-bitten 0 run-down 0 woebegone 0 001 & 02580449 a 0000 | worn and broken down by hard use; "a creaky shack"; "a decrepit bus...its seats held together with friction tape"; "a flea-bitten sofa"; "a run-down neighborhood"; "a woebegone old shack" -02581829 00 s 02 dog-eared 0 eared 0 001 & 02580449 a 0000 | worn or shabby from overuse or (of pages) from having corners turned down; "a somewhat dog-eared duke...a bit run down"-Clifton Fadiman; "an old book with dog-eared pages" -02582064 00 s 02 eroded 0 scoured 0 001 & 02580449 a 0000 | worn away as by water or ice or wind -02582163 00 s 01 frayed 1 001 & 02580449 a 0000 | worn away or tattered along the edges; "frayed cuffs" -02582269 00 s 02 mangy 0 mangey 0 004 & 02580449 a 0000 + 14274217 n 0201 + 14274217 n 0101 + 04816761 n 0103 | having many worn or threadbare spots in the nap; "a mangy carpet"; "a mangy old fur coat" -02582473 00 s 02 moth-eaten 1 mothy 0 001 & 02580449 a 0000 | worn or eaten away by (or as if by) moths; "moth-eaten blankets" -02582602 00 s 01 played_out 0 001 & 02580449 a 0000 | worn out; "a played out deck of cards" -02582697 00 s 01 ragged 1 002 & 02580449 a 0000 + 04817168 n 0101 | being or dressed in clothes that are worn or torn; "clothes as ragged as a scarecrow's"; "a ragged tramp" -02582873 00 s 02 raddled 0 worn-out 0 001 & 02580449 a 0000 | used until no longer useful; "battered trumpets and raddled radios"; "worn-out shoes with flapping soles" -02583043 00 s 04 moth-eaten 0 ratty 0 shabby 0 tatty 0 002 & 02580449 a 0000 + 04816761 n 0301 | showing signs of wear and tear; "a ratty old overcoat"; "shabby furniture"; "an old house with dirty windows and tatty curtains" -02583271 00 s 02 scruffy 0 seedy 0 002 & 02580449 a 0000 + 04816761 n 0202 | shabby and untidy; "a surge of ragged scruffy children"; "he was soiled and seedy and fragrant with gin"- Mark Twain -02583467 00 s 02 shopworn 0 shopsoiled 0 001 & 02580449 a 0000 | worn or faded from being on display in a store; "shopworn merchandise at half price" -02583619 00 s 02 tattered 1 tatterdemalion 0 002 & 02580449 a 0000 + 10504664 n 0202 | worn to shreds; or wearing torn or ragged clothing; "a man in a tattered shirt"; "the tattered flag"; "tied up in tattered brown paper"; "a tattered barefoot boy"; "a tatterdemalion prince" -02583898 00 s 01 threadbare 1 001 & 02580449 a 0000 | having the nap worn away so that the threads show through; "threadbare rugs" -02584031 00 s 01 thumbed 0 001 & 02580449 a 0000 | (of pages) worn or soiled by thumb and fingers by frequent handling or turning; "well-thumbed pages of the dictionary" -02584203 00 s 03 vermiculate 0 worm-eaten 0 wormy 0 002 & 02580449 a 0000 + 01922303 n 0301 | infested with or damaged (as if eaten) by worms -02584347 00 s 01 waterworn 0 001 & 02580449 a 0000 | (of rocks especially) worn smooth by the action of water -02584459 00 s 03 weather-beaten 0 weatherworn 0 weathered 0 001 & 02580449 a 0000 | worn by exposure to the weather; "a house of weathered shingles" -02584610 00 s 01 well-worn 0 001 & 02580449 a 0000 | showing signs of much wear or use -02584699 00 a 01 new 9 002 ! 02580449 a 0101 & 02584817 a 0000 | unaffected by use or exposure; "it looks like new" -02584817 00 s 01 unweathered 0 001 & 02584699 a 0000 | not worn by exposure to the weather; "chemical weathering was beginning to attack the unweathered bedrock" -02584981 00 a 01 worthy 0 024 ^ 00904163 a 0000 ^ 01129977 a 0000 ^ 01226240 a 0000 ^ 02036578 a 0000 ^ 02500884 a 0000 = 04806804 n 0000 + 10792506 n 0101 + 04806804 n 0101 + 05138208 n 0101 ! 02588099 a 0101 & 02585545 a 0000 & 02585919 a 0000 & 02586089 a 0000 & 02586206 a 0000 & 02586446 a 0000 & 02586608 a 0000 & 02586747 a 0000 & 02586957 a 0000 & 02587083 a 0000 & 02587261 a 0000 & 02587407 a 0000 & 02587556 a 0000 & 02587738 a 0000 & 02587936 a 0000 | having worth or merit or value; being honorable or admirable; "a worthy fellow"; "a worthy cause" -02585545 00 s 04 applaudable 0 commendable 0 laudable 0 praiseworthy 0 004 & 02584981 a 0000 + 04807342 n 0401 + 00860620 v 0301 + 00860292 v 0101 | worthy of high praise; "applaudable efforts to save the environment"; "a commendable sense of purpose"; "laudable motives of improving housing conditions"; "a significant and praiseworthy increase in computer intelligence" -02585919 00 s 01 creditable 0 001 & 02584981 a 0000 | worthy of often limited commendation; "the student's effort on the essay--though not outstanding--was creditable" -02586089 00 s 01 cum_laude 0 001 & 02584981 a 0000 | with honor; with academic distinction; "a cum laude graduate" -02586206 00 s 02 deserving 0 worth(p) 0 004 & 02584981 a 0000 ;u 07106246 n 0000 + 05138208 n 0201 + 04807050 n 0101 | worthy of being treated in a particular way; "an idea worth considering"; "the deserving poor" (often used ironically) -02586446 00 s 02 exemplary 0 model(a) 0 003 & 02584981 a 0000 + 05925366 n 0102 + 05925366 n 0101 | worthy of imitation; "exemplary behavior"; "model citizens" -02586608 00 s 01 magna_cum_laude 0 001 & 02584981 a 0000 | with high honor; with high academic distinction; "a magna cum laude graduate" -02586747 00 s 02 meritorious 0 meritable 0 004 & 02584981 a 0000 + 02646378 v 0202 + 04807050 n 0102 + 04807050 n 0103 | deserving reward or praise; "a lifetime of meritorious service"; "meritorious conduct" -02586957 00 s 02 noteworthy 0 notable 0 001 & 02584981 a 0000 | worthy of notice; "a noteworthy advance in cancer research" -02587083 00 s 01 quotable 0 002 & 02584981 a 0000 + 04807489 n 0101 | suitable for or worthy of quotation; "a quotable slogan"; "his remarks are not quotable in mixed company" -02587261 00 s 01 sacred 0 002 & 02584981 a 0000 + 04855332 n 0101 | worthy of respect or dedication; "saw motherhood as woman's sacred calling" -02587407 00 s 01 summa_cum_laude 0 001 & 02584981 a 0000 | with highest honor; with the highest academic distinction; "a summa cum laude graduate" -02587556 00 s 02 valued 0 precious 0 001 & 02584981 a 0000 | held in great esteem for admirable qualities especially of an intrinsic nature; "a valued friend"; "precious memories" -02587738 00 s 02 valuable 0 worthful 0 004 & 02584981 a 0000 + 05141222 n 0104 + 02256109 v 0102 + 00694068 v 0103 | having worth or merit or value; "a valuable friend"; "a good and worthful man" -02587936 00 s 01 worthwhile 0 002 & 02584981 a 0000 + 05139436 n 0101 | sufficiently valuable to justify the investment of time or interest; "a worthwhile book" -02588099 00 a 01 unworthy 0 010 ^ 00904548 a 0000 ^ 01227137 a 0000 ^ 02037272 a 0000 ^ 02502163 a 0000 = 04806804 n 0000 + 04807776 n 0101 ! 02584981 a 0101 & 02588421 a 0000 & 02588527 a 0000 & 02588647 a 0000 | lacking in value or merit; "dispel a student whose conduct is deemed unworthy"; "unworthy of forgiveness" -02588421 00 s 02 undeserving 0 unworthy 1 001 & 02588099 a 0000 | not deserving; "the undeserving poor" -02588527 00 s 01 unmerited 0 001 & 02588099 a 0000 | not merited; "unmerited treatment of a potentially fine subject" -02588647 00 s 01 unmeritorious 0 001 & 02588099 a 0000 | without merit; "protect...from unmeritorious criticism" -02588762 00 a 01 xeric 0 003 ! 02589086 a 0101 ! 02589551 a 0101 & 02588915 a 0000 | being deficient in moisture; "deserts provide xeric environments" -02588915 00 s 01 xerophytic 0 002 & 02588762 a 0000 + 13121104 n 0102 | adapted to a xeric (or dry) environment; "cacti are xerophytic plants"; "xerophytic adaptations" -02589086 00 a 01 hydric 0 004 ! 02589551 a 0101 ! 02588762 a 0101 & 02589258 a 0000 & 02589402 a 0000 | having or characterized by excessive moisture; "a hydric habitat" -02589258 00 s 01 hydrophytic 0 002 & 02589086 a 0000 + 13121544 n 0103 | growing wholly or partially in water; "water lilies are hydrophytic" -02589402 00 s 01 hygrophytic 0 002 & 02589086 a 0000 + 11553522 n 0101 | requiring an abundance of moisture; "some tropical ferns are hygrophytic" -02589551 00 a 01 mesic 0 003 ! 02588762 a 0101 ! 02589086 a 0101 & 02589730 a 0000 | having or characterized by moderate or a well-balanced supply of moisture; "mesic habitats" -02589730 00 s 01 mesophytic 0 002 & 02589551 a 0000 + 13121349 n 0101 | being or growing in or adapted to a moderately moist environment; "mesophytic habitats"; "mesophytic plants" -02589913 00 a 01 zonal 0 001 ! 02590057 a 0101 | associated with or divided into zones; "a zonal pattern of cell structure"; "zonal division" -02590057 00 a 01 azonal 0 002 ! 02589913 a 0101 & 02590168 a 0000 | not divided into zones; "azonal heating" -02590168 00 s 01 azonic 0 001 & 02590057 a 0000 | not restricted to any particular zone or region -02590268 00 a 01 acrocarpous 0 001 ! 02590382 a 0101 | (of mosses) having the archegonia at the top of the stem -02590382 00 a 01 pleurocarpous 0 002 + 11539467 n 0101 ! 02590268 a 0101 | (of mosses) having the archegonia on short lateral branches -02590519 00 a 01 cursorial 0 001 ! 02590614 a 0101 | (of limbs and feet) adapted for running -02590614 00 a 01 fossorial 0 001 ! 02590519 a 0101 | (of limbs and feet) adapted for digging -02590709 00 a 01 homocercal 0 002 ;c 06072912 n 0000 ! 02590891 a 0101 | possessing a symmetrical tail that extends beyond the end of the vertebral column (as in most bony fishes) -02590891 00 a 01 heterocercal 0 002 ;c 06072912 n 0000 ! 02590709 a 0101 | possessing a tail with the upper lobe larger than the lower and with the vertebral column prolonged into the upper lobe -02591088 00 a 01 webbed 0 002 ! 02591372 a 0101 & 02591239 a 0000 | (of the feet of some animals) having the digits connected by a thin fold of skin -02591239 00 s 01 palmate 0 001 & 02591088 a 0000 | (of the feet of water birds) having three toes connected by a thin fold of skin -02591372 00 a 01 unwebbed 0 001 ! 02591088 a 0101 | (of the feet of some animals) not webbed; "a primitive frog with unwebbed toes" -02591506 00 a 01 faceted 0 001 ! 02591594 a 0101 | having facets; "a faceted diamond" -02591594 00 a 01 unfaceted 0 001 ! 02591506 a 0101 | lacking facets; "an unfaceted gem" -02591684 00 a 01 ipsilateral 0 001 ! 02591787 a 0101 | on or relating to the same side (of the body) -02591787 00 a 01 contralateral 0 001 ! 02591684 a 0101 | on or relating to the opposite side (of the body) -02591896 00 a 01 salient 0 001 ! 02592015 a 0101 | (of angles) pointing outward at an angle of less than 180 degrees -02592015 00 a 02 re-entrant 0 reentrant 0 001 ! 02591896 a 0101 | (of angles) pointing inward; "a polygon with re-entrant angles" -02592147 00 a 01 proactive 0 002 ;c 06136258 n 0000 ! 02592396 a 0101 | descriptive of any event or stimulus or process that has an effect on events or stimuli or processes that occur subsequently; "proactive inhibition"; "proactive interference" -02592396 00 a 01 retroactive 0 002 ;c 06136258 n 0000 ! 02592147 a 0101 | descriptive of any event or stimulus or process that has an effect on the effects of events or stimuli or process that occurred previously -02592611 00 a 01 rh-positive 0 001 ! 02592750 a 0101 | of persons (or their blood) having the Rh factor present in their red blood cells -02592750 00 a 01 rh-negative 0 001 ! 02592611 a 0101 | of persons (or their blood) lacking the Rh factor present in their red blood cells -02592890 00 a 01 categorematic 0 005 ;c 06163751 n 0000 + 06752410 n 0102 + 06752410 n 0101 ! 02593269 a 0101 & 02593124 a 0000 | of a term or phrase capable of standing as the subject or (especially) the predicate of a proposition -02593124 00 s 01 autosemantic 0 002 & 02592890 a 0000 ;c 06172789 n 0000 | of a word or phrase meaningful in isolation, independent of context -02593269 00 a 01 syncategorematic 0 005 ;c 06163751 n 0000 + 06752695 n 0102 + 06752695 n 0101 ! 02592890 a 0101 & 02593578 a 0000 | of a term that cannot stand as the subject or (especially) the predicate of a proposition but must be used in conjunction with other terms; "`or' is a syncategorematic term" -02593578 00 s 01 synsemantic 0 002 & 02593269 a 0000 ;c 06172789 n 0000 | of a word or phrase meaningful only when it occurs in the company of other words -02593735 00 a 01 idiographic 0 002 ;c 06136258 n 0000 ! 02593861 a 0101 | relating to or involving the study of individuals -02593861 00 a 01 nomothetic 0 002 ;c 06136258 n 0000 ! 02593735 a 0101 | relating to or involving the search for abstract universal principles -02594006 00 a 01 pro-choice 0 001 ! 02594159 a 0101 | advocating a woman's right to control her own body (especially her right to an induced abortion) -02594159 00 a 01 pro-life 0 001 ! 02594006 a 0101 | advocating full legal protection of embryos and fetuses (especially opposing the legalization of induced abortions) -02594329 00 a 02 baptized 0 baptised 0 001 ! 02594443 a 0101 | having undergone the Christian ritual of baptism -02594443 00 a 02 unbaptized 0 unbaptised 0 001 ! 02594329 a 0101 | not having undergone the Christian ritual of baptism -02594565 00 a 01 benign 2 002 ;c 06060845 n 0000 ! 02594714 a 0101 | not dangerous to health; not recurrent or progressive (especially of a tumor) -02594714 00 a 01 malignant 2 005 ;c 06060845 n 0000 + 14237561 n 0101 + 14237561 n 0102 ! 02594565 a 0101 & 02594940 a 0000 | dangerous to health; characterized by progressive and uncontrolled growth (especially of a tumor) -02594940 00 s 01 cancerous 0 002 & 02594714 a 0000 + 14239918 n 0101 | relating to or affected with cancer; "a cancerous growth" -02595071 00 a 01 calcicolous 0 001 ! 02595167 a 0101 | growing or living in soil rich in lime -02595167 00 a 01 calcifugous 0 001 ! 02595071 a 0101 | growing or living in acid soil -02595255 00 a 01 invertible 0 001 ! 02595357 a 0101 | having an additive or multiplicative inverse -02595357 00 a 01 non-invertible 0 001 ! 02595255 a 0101 | not admitting an additive or multiplicative inverse -02595469 00 a 01 immunocompetent 0 002 + 13974144 n 0101 ! 02595647 a 0101 | capable of developing an immune response following exposure to an antigen; "immunocompetent cells" -02595647 00 a 01 immunodeficient 0 002 + 13974317 n 0101 ! 02595469 a 0101 | incapable of developing an immune response following exposure to an antigen; "immunodeficient rodents" -02595829 00 a 01 allogeneic 0 002 + 06051542 n 0101 ! 02596059 a 0101 | denoting or relating to cells or tissues from individuals belonging to the same species but genetically dissimilar (and hence immunologically incompatible) -02596059 00 a 01 xenogeneic 0 002 + 06051542 n 0101 ! 02595829 a 0101 | denoting or relating to cells or tissues from individuals belonging to different species -02596222 00 a 01 long-spurred 0 001 ! 02596342 a 0101 | of flowers having a long extension at the base of the corolla -02596342 00 a 01 short-spurred 0 001 ! 02596222 a 0101 | of flowers have a short extension at the base of the corolla -02596462 00 a 01 shelled 0 005 ! 02597007 a 0101 & 02596626 a 0000 & 02596728 a 0000 & 02596810 a 0000 & 02596905 a 0000 | of animals or fruits that have a shell -02596626 00 s 01 hard-shelled 0 001 & 02596462 a 0000 | of animals or plants that have a hard shell -02596728 00 s 01 smooth-shelled 0 001 & 02596462 a 0000 | having a smooth shell -02596810 00 s 01 spiral-shelled 0 001 & 02596462 a 0000 | having a shell that forms a spiral -02596905 00 s 01 thin-shelled 0 001 & 02596462 a 0000 | of animals or plants that have a thin shell -02597007 00 a 02 unshelled 0 shell-less 0 001 ! 02596462 a 0101 | of animals or fruits that have no shell -02597115 00 a 01 jawed 0 003 ! 02597418 a 0101 & 02597245 a 0000 & 02597329 a 0000 | of animals having jaws of a specified type -02597245 00 s 01 long-jawed 0 001 & 02597115 a 0000 | having relatively long jaws -02597329 00 s 01 square-jawed 0 001 & 02597115 a 0000 | having a relatively square jaw -02597418 00 a 01 jawless 0 001 ! 02597115 a 0101 | of animals having no jaw -02597496 00 a 01 skinned 0 003 ! 02597781 a 0101 & 02597617 a 0000 & 02597696 a 0000 | having skin of a specified kind -02597617 00 s 01 smooth-skinned 0 001 & 02597496 a 0000 | having smooth skin -02597696 00 s 01 velvety-skinned 0 001 & 02597496 a 0000 | having skin like velvet -02597781 00 a 01 skinless 0 001 ! 02597496 a 0101 | having no skin -02597850 00 a 01 flowering 0 001 ! 02597951 a 0101 | having a flower or bloom; "a flowering plant" -02597951 00 a 02 flowerless 0 nonflowering 0 002 ! 02597850 a 0101 & 02598110 a 0000 | without flower or bloom and not producing seeds; "a flowerless plant" -02598110 00 s 01 spore-bearing 0 001 & 02597951 a 0000 | bearing spores instead of producing seeds -02598211 00 a 03 vegetal 0 vegetational 0 vegetative 0 004 + 00232542 v 0301 + 00232388 v 0301 + 00232225 v 0301 + 08436759 n 0201 | composed of vegetation or plants; "regions rich in vegetal products"; "vegetational cover"; "the decaying vegetative layer covering a forest floor" -02598494 00 a 01 asphaltic 0 002 + 14769465 n 0101 + 14667455 n 0101 | containing asphalt; "asphaltic residues" -02598608 01 a 02 abasic 0 abatic 0 004 + 14549070 n 0201 \ 14549070 n 0201 + 14549070 n 0101 \ 14549070 n 0101 | of or relating to abasia (inability to walk) -02598768 01 a 01 abbatial 0 006 + 09754217 n 0101 + 09754404 n 0101 + 02667576 n 0101 + 02667478 n 0101 + 02667379 n 0101 \ 02667379 n 0101 | of or having to do with or belonging to an abbey or abbot, or abbess -02598981 01 a 01 abdominovesical 0 002 \ 05556943 n 0101 \ 05512337 n 0101 | of or relating to the abdomen and the urinary bladder -02599114 01 a 01 Aberdonian 0 005 + 09153570 n 0101 + 09139380 n 0101 + 09094093 n 0101 + 08892186 n 0101 \ 08892186 n 0101 | of or relating to Aberdeen -02599269 01 a 02 Abkhaz 0 Abkhazian 0 002 \ 09019355 n 0202 \ 09019355 n 0101 | of or relating to Abkazia or its people or their language -02599409 01 a 01 Abnaki 0 001 \ 09645871 n 0101 | of or relating to the Abnakis or their language -02599509 01 a 01 Aboriginal 0 003 + 09676490 n 0103 + 09676490 n 0101 \ 09676490 n 0101 | of or pertaining to members of the indigenous people of Australia; "an Aboriginal rite" -02599689 01 a 01 abient 0 004 ;c 06136258 n 0000 + 09180616 n 0101 ! 02603779 a 0101 \ 09180616 n 0101 | characterized by avoidance or withdrawal -02599837 01 a 01 abiogenetic 0 002 + 11420376 n 0101 \ 11420376 n 0101 | originating by abiogenesis -02599939 01 a 01 academic 0 004 + 09759069 n 0102 + 08280124 n 0101 + 08274923 n 0101 \ 08274923 n 0101 | associated with academia or an academy; "the academic curriculum"; "academic gowns" -02600131 01 a 01 acanthotic 0 002 + 14221741 n 0101 \ 14221741 n 0101 | of or relating to or having acanthosis -02600244 01 a 03 acapnic 0 acapnial 0 acapnotic 0 006 + 14042165 n 0302 \ 14042165 n 0302 + 14042165 n 0202 \ 14042165 n 0202 + 14042165 n 0102 \ 14042165 n 0102 | relating to or demonstrating acapnia -02600447 01 a 01 acervate 0 001 \ 11533026 n 0101 | pertaining to a growth of fungi that forms a heaped-up mass; "acervate fungous sporophores" -02600593 01 a 01 acetonic 0 002 + 14600504 n 0101 \ 14600504 n 0101 | of or relating to acetone -02600691 01 a 01 acetylenic 0 002 + 14600742 n 0101 \ 14600742 n 0101 | of or related to acetylene -02600792 01 a 01 acetylic 0 002 + 14594456 n 0101 \ 14599168 n 0101 | of or related to acetic acid -02600893 01 a 01 Achaean 0 001 \ 08782490 n 0101 | of or relating to Achaea or its ancient Greek people -02600999 01 a 01 Aeolian 1 002 + 08160697 n 0101 \ 08784104 n 0101 | of or relating to Aeolis or its ancient Greek people -02601123 01 a 01 achenial 0 002 + 12036067 n 0101 \ 12036067 n 0101 | pertaining to dry one-seeded indehiscent fruit -02601242 01 a 01 achlorhydric 0 001 \ 14912387 n 0101 | lacking hydrochloric acid -02601326 01 a 01 achondritic 0 002 + 09186928 n 0101 \ 09186928 n 0101 | of or related to an achondrite -02601432 01 a 01 aciculate 0 001 \ 09187036 n 0101 | related to plants or animals or crystals having aciculae or needlelike parts -02601564 01 a 01 acidimetric 0 002 + 00647919 n 0101 \ 00647919 n 0101 | involving or related to acidimetry -02601674 01 a 01 acidotic 0 002 + 14019600 n 0101 \ 14019600 n 0101 | having or being characterized by acidosis -02601788 01 a 01 acinar 0 002 + 13138155 n 0101 \ 13138155 n 0101 | pertaining to the individual parts making up an aggregate fruit like a blackberry -02601940 01 a 04 acinar 1 acinous 0 acinose 0 acinic 0 007 + 05516366 n 0401 \ 05516366 n 0401 \ 05516366 n 0301 + 05516366 n 0201 \ 05516366 n 0201 + 05516366 n 0101 \ 05516366 n 0101 | pertaining to one of the small sacs (as in a compound gland) -02602190 01 a 01 acneiform 0 001 \ 14222112 n 0101 | resembling acne -02602261 01 a 01 adolescent 0 003 + 14426910 n 0101 + 00252710 v 0101 \ 15147850 n 0101 | relating to or peculiar to or suggestive of an adolescent; "adolescent problems" -02602434 01 a 02 acrogenic 0 acrogenous 0 003 + 11536369 n 0201 \ 11536369 n 0201 \ 11536369 n 0101 | pertaining to flowerless plants (ferns or mosses) in which growth occurs only at the tip of the main stem -02602644 01 a 02 actinometric 0 actinometrical 0 003 \ 00998037 n 0201 + 00998037 n 0101 \ 00998037 n 0101 | of or related to actinometry -02602784 01 a 02 actinomycetal 0 actinomycetous 0 004 + 01375204 n 0201 \ 01375204 n 0201 + 01375204 n 0101 \ 01375204 n 0101 | of or belonging to the actinomycetes -02602951 01 a 01 actinomycotic 0 002 + 14254102 n 0101 \ 14254102 n 0101 | of or related to actinomycosis infection -02603069 01 a 02 aculeate 0 aculeated 0 002 \ 01901091 n 0201 \ 01901091 n 0101 | having or resembling a stinger or barb; "aculeate insects such as bees and wasps" -02603235 01 a 01 adactylous 0 001 \ 14152803 n 0101 | without fingers and/or toes -02603319 01 a 01 adamantine 0 001 \ 14834563 n 0102 | consisting of or having the hardness of adamant -02603423 01 a 01 adenocarcinomatous 0 002 + 14246710 n 0101 \ 14246710 n 0101 | of or pertaining to adenocarcinoma -02603540 01 a 01 adenoid 0 002 + 05529286 n 0102 \ 05529286 n 0102 | relating to or resembling lymphatic glands or lymphoid tissue -02603673 01 a 01 adenoidal 0 002 + 05529286 n 0102 \ 05529286 n 0102 | of or pertaining to the adenoids -02603779 01 a 01 adient 0 004 ;c 06136258 n 0000 + 09180791 n 0101 ! 02599689 a 0101 \ 09180791 n 0101 | characterized by acceptance or approach -02603926 01 a 02 adjudicative 0 adjudicatory 0 006 + 02501278 v 0202 + 00698855 v 0204 \ 00874457 n 0201 + 02501278 v 0102 + 00698855 v 0104 \ 00874457 n 0101 | concerned with adjudicating -02604117 01 a 02 adnexal 0 annexal 0 004 + 05221649 n 0201 \ 05221649 n 0202 + 05221649 n 0101 \ 05221649 n 0101 | of or pertaining to adnexa -02604261 01 a 01 Adonic 0 001 \ 09547629 n 0101 | or relating to or like Adonis -02604343 01 a 01 adrenal 0 002 + 05331171 n 0102 \ 05331171 n 0101 | of or pertaining to the adrenal glands or their secretions -02604473 01 a 01 adrenal 1 001 \ 05332802 n 0101 | near the kidneys -02604543 01 a 02 adrenergic 0 sympathomimetic 0 002 + 02682038 n 0101 \ 05408388 n 0101 | relating to epinephrine (its release or action) -02604683 01 a 01 agnostic 0 002 \ 09778927 n 0101 \ 05980051 n 0101 | of or pertaining to an agnostic or agnosticism -02604802 01 a 01 Aleutian 0 001 \ 08488411 n 0101 | of or relating to the Aleut or their language or culture -02604913 01 a 01 ancestral 0 002 + 09792555 n 0101 \ 09792555 n 0101 | of or belonging to or inherited from an ancestor -02605035 01 a 01 antheridial 0 002 + 13091312 n 0101 \ 13091312 n 0101 | relating to or characterized by an antheridium -02605157 01 a 01 antiadrenergic 0 001 \ 05408388 n 0101 | relating to blocking or reducing adrenergic effects in the body -02605281 01 a 01 antiapartheid 0 001 \ 06659168 n 0101 | opposing the policy of apartheid in South Africa; "an antiapartheid leader" -02605416 01 a 01 antidotal 0 001 \ 02719588 n 0101 | counteracting the effects of a poison -02605509 01 a 01 antiferromagnetic 0 002 + 11479640 n 0101 \ 11479640 n 0101 | relating to antiferromagnetism -02605621 01 a 01 antipollution 0 001 \ 14516743 n 0101 | intended to reduce pollution; "antipollution laws"; "antipollution devices on automobile exhaust systems" -02605786 01 a 02 antisatellite 0 ASAT 0 002 \ 04137444 n 0201 \ 04137444 n 0101 | of or relating to a system to destroy satellites in orbit; "antisatellite weapons" -02605953 01 a 01 antiviral 0 001 \ 02725367 n 0101 | inhibiting or stopping the growth and reproduction of viruses -02606070 01 a 01 adrenocortical 0 001 \ 05490983 n 0101 | of or derived from the cortex of the adrenal glands -02606182 01 a 01 advective 0 002 + 02102655 v 0101 \ 13427989 n 0101 | of or relating to advection -02606283 01 a 01 adventitial 0 002 + 05606633 n 0103 \ 05606633 n 0103 | of or pertaining to the adventitia -02606393 01 a 01 adventuristic 0 002 + 00796315 n 0101 \ 04662182 n 0101 | of or pertaining to adventurism -02606502 01 a 01 aecial 0 002 + 13063514 n 0101 \ 13063514 n 0101 | of or belonging to an aecium -02606601 01 a 01 Aeolian 0 002 + 09553490 n 0101 \ 09553490 n 0101 | of or pertaining to Aeolus, the Greek god of the winds; relating to or caused by the wind -02606762 01 a 01 aeriferous 0 001 \ 14841267 n 0101 | conveying air; as the bronchial tubes -02606856 01 a 01 aerological 0 002 + 06119226 n 0101 \ 06119226 n 0101 | of or pertaining to aerology -02606960 01 a 01 aerolitic 0 002 + 09189289 n 0101 \ 09189289 n 0101 | of or pertaining to certain stony meteorites -02607078 01 a 01 aeromechanic 0 002 + 06114351 n 0101 \ 06114351 n 0101 | of or pertaining to aerodynamics -02607187 01 a 01 aeromedical 0 002 + 06046037 n 0101 \ 06046037 n 0101 | of or relating to aviation medicine -02607298 01 a 02 aeronautical 0 aeronautic 0 004 + 06096913 n 0201 \ 06096913 n 0201 + 06096913 n 0101 \ 06096913 n 0101 | of or pertaining to aeronautics -02607455 01 a 02 aesculapian 0 medical 2 003 + 06043075 n 0201 + 09559201 n 0101 \ 09559201 n 0101 | of or belonging to Aesculapius or the healing art -02607608 01 a 01 affine 0 002 ;c 06000644 n 0000 \ 13785965 n 0101 | (mathematics) of or pertaining to the geometry of affine transformations -02607752 01 a 02 affixal 0 affixial 0 004 + 06308049 n 0201 \ 06308049 n 0201 + 06308049 n 0101 \ 06308049 n 0101 | of or pertaining to a linguistic affix -02607909 01 a 01 agential 0 006 + 14007546 n 0101 + 00172710 n 0102 + 10373801 n 0101 + 09777353 n 0101 + 09777012 n 0101 \ 09777353 n 0101 | of or relating to an agent or agency -02608090 01 a 01 agonal 0 003 + 14324274 n 0101 + 07495551 n 0101 \ 07495551 n 0101 | pertaining to or associated with agony (especially death agonies) -02608244 01 a 01 agonistic 0 002 + 09779280 n 0101 \ 00035697 n 0101 | of or relating to the athletic contests held in ancient Greece -02608380 01 a 01 agranulocytic 0 002 + 14071896 n 0101 \ 14071896 n 0101 | relating to the blood disorder of agranulocytosis -02608507 01 a 01 agraphic 0 001 \ 14095948 n 0101 | relating to or having agraphia -02608592 01 a 02 agrobiologic 0 agrobiological 0 004 + 06066072 n 0201 \ 06066072 n 0201 + 06066072 n 0101 \ 06066072 n 0101 | of or pertaining to agrobiology -02608753 01 a 02 agrologic 0 agrological 0 004 + 06066267 n 0201 \ 06066267 n 0201 + 06066267 n 0101 \ 06066267 n 0101 | of or related to agrology -02608902 01 a 02 agronomic 0 agronomical 0 004 + 06065819 n 0201 \ 06065819 n 0201 + 06065819 n 0101 \ 06065819 n 0101 | of or relating to or promoting agronomy -02609065 01 a 01 agrypnotic 0 002 + 01030033 n 0101 \ 01030033 n 0101 | of or pertaining to agrypnia -02609168 01 a 01 air-breathing 0 001 \ 00831191 n 0101 | deriving oxygen from the air; "he studied respiration in marine air-breathing vertebrates"; "large air-breathing ichthyosaurs had hydrofoils" -02609369 01 a 02 alabaster 0 alabastrine 0 002 \ 14665351 n 0201 \ 14665351 n 0101 | of or resembling alabaster; "alabaster statue" -02609503 01 a 01 Alaskan 0 004 + 09740954 n 0101 + 09055015 n 0101 \ 09055015 n 0101 \ 09740954 n 0101 | relating to or characteristic of the state or people of Alaska -02609673 01 a 01 Albigensian 0 003 + 08085159 n 0101 \ 06227708 n 0101 \ 08085159 n 0101 | of or relating to Albigenses or Albigensianism -02609813 01 a 01 Albanian 0 004 + 09689958 n 0101 + 06942252 n 0101 + 08704822 n 0101 \ 08704822 n 0101 | of or relating to Albania or its people or language or culture -02609984 01 a 04 albinal 0 albinotic 0 albinic 0 albinistic 0 009 + 09781650 n 0401 + 14152279 n 0401 \ 14152279 n 0401 + 14152279 n 0301 \ 14152279 n 0301 + 14152279 n 0201 \ 14152279 n 0201 + 14152279 n 0101 \ 14152279 n 0101 | of or pertaining to or affected by albinism -02610260 01 a 01 albitic 0 002 + 14865533 n 0101 \ 14865533 n 0101 | of or related to albite feldspar -02610364 01 a 01 albuminous 0 002 + 14731509 n 0101 \ 14731509 n 0101 | relating to or containing or resembling albumin -02610486 01 a 01 albuminuric 0 002 + 14265958 n 0101 \ 14265958 n 0101 | of or related to the state of albuminuria -02610603 01 a 02 alchemic 0 alchemical 0 004 + 05778749 n 0201 \ 05778749 n 0201 + 05778749 n 0101 \ 05778749 n 0101 | related to or concerned with alchemy -02610761 01 a 02 alchemistic 0 alchemistical 0 004 + 09781921 n 0201 \ 09781921 n 0201 + 09781921 n 0101 \ 09781921 n 0101 | of or relating to alchemists -02610917 01 a 01 aldehydic 0 001 \ 14584765 n 0101 | of or related to or containing aldehydes -02611013 01 a 01 aleuronic 0 002 + 14729953 n 0101 \ 14729953 n 0101 | of or related to aleurone -02611112 01 a 01 algoid 0 001 \ 01397114 n 0101 | of or resembling algae -02611187 01 a 01 algolagnic 0 002 + 07493682 n 0101 \ 07493682 n 0101 | of or relating to algolagnia -02611290 01 a 02 algometric 0 algometrical 0 004 + 00998196 n 0201 \ 00998196 n 0201 + 00998196 n 0101 \ 00998196 n 0101 | of or related to algometry -02611442 01 a 03 Algonquian 0 Algonkian 0 Algonquin 0 007 + 06906971 n 0302 \ 09646608 n 0301 + 09646432 n 0201 + 06908159 n 0201 \ 09646608 n 0201 + 09646608 n 0101 \ 09646608 n 0101 | of or relating to an Algonquian tribe or its people or language -02611694 01 a 01 alimentative 0 002 + 01204191 v 0102 \ 01057759 n 0102 | related to the supply of aliment -02611803 01 a 01 alkahestic 0 002 + 15048463 n 0101 \ 15048463 n 0101 | of or pertaining to the alkahest that alchemists assumed to exist -02611943 01 a 01 alkaloidal 0 002 + 14712692 n 0101 \ 14712692 n 0101 | pertaining to or consisting of alkaloids -02612058 01 a 01 alkalotic 0 002 + 14021266 n 0101 \ 14021266 n 0101 | marked by alkalosis (or a tendency toward alkalosis) -02612184 01 a 01 alkylic 0 003 ;c 06084469 n 0000 + 14617189 n 0101 \ 14617189 n 0102 | of or related to an alkyl -02612300 01 a 01 allantoic 0 001 \ 01473393 n 0101 | relating to or characterized by an allantois -02612400 01 a 02 allelic 0 allelomorphic 0 003 \ 05437785 n 0202 + 05437785 n 0101 \ 05437785 n 0101 | of or relating to alleles -02612531 01 a 01 allergenic 0 002 + 14584260 n 0101 \ 14584260 n 0101 | relating to or having the effect of an allergen -02612653 01 a 01 allergic 0 002 + 14532816 n 0101 \ 14532816 n 0101 | characterized by or caused by allergy; "an allergic reaction" -02612787 01 a 01 Allied 1 001 \ 08171210 n 0101 | of or relating to or denoting the Allies in World War I; "an allied offensive"; "the Allied powers" -02612939 01 a 01 Allied 2 001 \ 08171592 n 0101 | of or relating to or denoting the Allies in World War II; "an Allied victory"; "the Allied armies" -02613090 01 a 01 allogamous 0 002 + 07437870 n 0101 \ 07437870 n 0101 | relating to cross-fertilization in plants -02613206 01 a 01 allographic 0 001 \ 06819557 n 0101 | of or relating to an allograph -02613294 01 a 01 allomerous 0 002 + 07337935 n 0101 \ 07337935 n 0101 | pertaining to allomerism -02613393 01 a 01 allometric 0 002 + 05998356 n 0101 \ 05998356 n 0101 | relating to or marked by allometry -02613502 01 a 01 allomorphic 0 001 \ 06306606 n 0101 | pertaining to allomorphs -02613584 01 a 01 allophonic 0 002 + 07111933 n 0101 \ 07111933 n 0101 | pertaining to allophones -02613683 01 a 02 allotropic 0 allotropical 0 007 + 11409329 n 0202 + 11409329 n 0201 \ 11409329 n 0201 + 11409329 n 0101 + 11409329 n 0102 + 14624025 n 0101 \ 11409329 n 0101 | of or related to or exhibiting allotropism; "carbon and sulfur and phosphorus are allotropic elements" -02613965 01 a 01 allylic 0 003 ;c 06084469 n 0000 + 14617427 n 0101 \ 14617427 n 0102 | of or pertaining to the allyl radical -02614093 01 a 01 alopecic 0 001 \ 14457361 n 0101 | pertaining to loss of hair or wool or feathers -02614194 01 a 02 alphabetic 0 alphabetical 0 005 + 06497459 n 0201 \ 06497459 n 0201 + 06497459 n 0101 ! 02614435 a 0101 \ 06497459 n 0101 | relating to or expressed by a writing system that uses an alphabet; "alphabetical writing system" -02614435 01 a 01 analphabetic 0 002 ! 02614194 a 0101 \ 06497459 n 0101 | relating to or expressed by a writing system that is not alphabetic -02614579 01 a 04 alphanumeric 0 alphanumerical 0 alphameric 0 alphamerical 0 006 + 06500262 n 0401 \ 06500262 n 0401 \ 06500262 n 0301 + 06500262 n 0201 \ 06500262 n 0201 \ 06500262 n 0101 | of or pertaining to alphanumeric characters -02614816 01 a 01 Altaic 0 003 + 09690208 n 0101 + 06926212 n 0101 \ 06926212 n 0101 | of or pertaining to or written in Altaic -02614945 01 a 01 altitudinal 0 004 + 13897657 n 0101 + 13836550 n 0103 + 05131647 n 0101 \ 05131647 n 0101 | pertaining to altitude -02615079 01 a 01 alular 0 004 ;c 06083243 n 0000 + 02190465 n 0101 + 01897667 n 0102 \ 01897667 n 0102 | pertaining to alulae -02615207 01 a 01 aluminous 0 002 + 14627820 n 0101 \ 14627820 n 0101 | pertaining to or containing aluminum or alum -02615325 01 a 01 alveolar 0 001 \ 05528395 n 0101 | pertaining to the tiny air sacs of the lungs -02615424 01 a 01 alveolar 2 002 + 07115493 n 0103 \ 05310351 n 0101 | pertaining to the sockets of the teeth or that part of the upper jaw; "alveolar processes" -02615587 01 a 01 amalgamative 0 002 + 01462005 v 0105 \ 01238424 n 0101 | characterized by or tending toward amalgamation -02615711 01 a 01 amaranthine 0 001 \ 11823043 n 0101 | of or related to the amaranth plant -02615804 01 a 01 amaurotic 0 002 + 14096412 n 0101 \ 14096412 n 0101 | pertaining to blindness caused by amaurosis -02615921 01 a 01 amblyopic 0 002 + 14096598 n 0101 \ 14096598 n 0101 | pertaining to a kind of visual impairment without apparent organic pathology -02616071 01 a 01 Ambrosian 0 002 + 10815648 n 0101 \ 10815648 n 0101 | of or by or relating to Saint Ambrose; "Ambrosian chants" -02616202 01 a 01 ambulacral 0 003 ;c 06083243 n 0000 + 02317025 n 0101 \ 02317025 n 0101 | pertaining to the ambulacra of radial echinoderms -02616345 01 a 01 ambulatory 0 002 \ 00283951 n 0101 + 00283951 n 0101 | relating to or adapted for walking; "an ambulatory corridor" -02616480 01 a 02 ameboid 0 amoeboid 0 002 \ 01392380 n 0201 \ 01392380 n 0101 | like an amoeba (especially in having a variable irregular shape) -02616627 01 a 04 amenorrheic 0 amenorrhoeic 0 amenorrheal 0 amenorrhoeal 0 006 + 14302261 n 0402 \ 14302261 n 0401 + 14302261 n 0301 \ 14302261 n 0301 \ 14302261 n 0201 \ 14302261 n 0101 | related to the suppression of normal menstrual flow for any reason other than pregnancy -02616906 01 a 01 amethystine 0 001 \ 14722589 n 0101 | containing or resembling amethyst -02616997 01 a 01 Amharic 0 002 + 06987812 n 0101 \ 06987812 n 0101 | related to or characteristic of or written in Amharic; "the Amharic language" -02617146 01 a 02 amino 0 aminic 0 004 + 14739004 n 0201 \ 14739004 n 0201 + 14617597 n 0101 \ 14739004 n 0101 | pertaining to or containing any of a group of organic compounds of nitrogen derived from ammonia -02617357 01 a 01 amitotic 0 002 + 13430074 n 0101 \ 13430074 n 0101 | pertaining to a simple method of cell division -02617476 01 a 01 ammino 0 001 \ 14743727 n 0101 | pertaining to or characteristic of an ammine (an inorganic coordination compound of ammonia and a metallic salt) -02617641 01 a 02 ammoniac 0 ammoniacal 0 004 + 14743976 n 0201 \ 14743582 n 0201 + 14743976 n 0101 \ 14743582 n 0101 | pertaining to or containing or similar to ammonia -02617812 01 a 01 ammonitic 0 002 + 09195958 n 0101 \ 09195958 n 0101 | of or related to an order of fossil cephalopods -02617933 01 a 02 amnestic 0 amnesic 0 005 + 09788611 n 0201 + 05672391 n 0201 \ 05672391 n 0201 + 05672391 n 0101 \ 05672391 n 0101 | of or relating to or caused by amnesia -02618108 01 a 03 amniotic 0 amnionic 0 amnic 0 006 + 01472638 n 0301 \ 01472638 n 0301 + 01472638 n 0201 \ 01472638 n 0201 + 01472638 n 0101 \ 01472638 n 0101 | of or related to the amnion or characterized by developing an amnion; "amniotic membrane" -02618361 01 a 01 amoristic 0 002 + 09789304 n 0101 \ 09789304 n 0101 | of or pertaining to romantic love -02618468 01 a 02 amphitheatric 0 amphitheatrical 0 006 + 02705201 n 0202 + 02704949 n 0202 \ 02704949 n 0201 + 02705201 n 0101 + 02704949 n 0101 \ 02704949 n 0101 | of or related to an amphitheater -02618668 01 a 01 amphoric 0 001 \ 00876542 n 0101 | the sound heard in auscultation resembling the hollow sound made by blowing across the mouth of a bottle; "amphoric breathing indicates a cavity in the lung" -02618880 01 a 02 ampullar 0 ampullary 0 007 ;c 06057539 n 0000 + 05254197 n 0201 + 02706221 n 0201 \ 05254197 n 0201 + 05254197 n 0101 + 02706221 n 0101 \ 05254197 n 0101 | of or related to an ampulla -02619083 01 a 01 amygdaline 0 001 \ 07750586 n 0101 | related to or resembling an almond -02619174 01 a 01 amylolytic 0 002 + 13430391 n 0101 \ 13430391 n 0101 | of or related to the process of amylolysis -02619291 01 a 01 anabiotic 0 002 + 14063290 n 0101 \ 14063290 n 0101 | of or related to the state of anabiosis -02619404 01 a 01 anabolic 0 002 + 13430495 n 0101 \ 13430495 n 0101 | of or related to the synthetic phase of metabolism -02619527 01 a 01 anaclitic 0 001 \ 13930725 n 0101 | of or related to relationships that are characterized by the strong dependence of one person on another -02619686 01 a 01 anacoluthic 0 002 ;c 06170498 n 0000 \ 07098989 n 0102 | of or related to syntactic inconsistencies of the sort known as anacoluthons -02619839 01 a 04 anaglyphic 0 anaglyphical 0 anaglyptic 0 anaglyptical 0 010 \ 02707344 n 0401 + 02707344 n 0301 + 02707188 n 0301 + 13430786 n 0301 \ 02707188 n 0301 + 13430786 n 0201 + 02707344 n 0201 + 02707188 n 0201 \ 02707188 n 0201 \ 02707344 n 0101 | related to anaglyphs or anaglyphy -02620134 01 a 02 anagogic 0 anagogical 0 002 \ 06246241 n 0201 \ 06246241 n 0101 | based on or exemplifying anagoge -02620252 01 a 02 anagrammatic 0 anagrammatical 0 004 + 06287620 n 0201 \ 06287620 n 0201 + 06287620 n 0101 \ 06287620 n 0101 | related to anagrams or containing or making an anagram -02620436 01 a 01 anal 0 002 + 05538016 n 0101 \ 05538016 n 0101 | of or related to the anus; "anal thermometer" -02620550 01 a 01 analytic 0 003 ;c 06000644 n 0000 + 06014043 n 0101 \ 06014043 n 0101 | using or subjected to a methodology using algebra and calculus; "analytic statics" -02620724 01 a 01 anamnestic 0 003 + 06515297 n 0103 + 05761918 n 0103 \ 05761918 n 0103 | of or relating to anamnesis; aiding the memory -02620863 01 a 01 anamorphic 1 001 \ 02708885 n 0101 | pertaining to a kind of distorting optical system; "an anamorphic lense" -02620992 01 a 01 anamorphic 2 001 \ 13431221 n 0101 | pertaining to gradual evolution from one type of organism to another -02621117 01 a 01 anaphasic 0 002 + 13431380 n 0101 \ 13431380 n 0101 | of or related to the stage of mitosis known as anaphase -02621246 01 a 01 anaplastic 0 002 + 14369194 n 0101 \ 14369194 n 0101 | of or relating to anaplasia -02621348 01 a 01 anarchistic 0 003 + 09791816 n 0101 + 06213890 n 0101 \ 06213890 n 0101 | of or related to anarchism or tending toward anarchism -02621496 01 a 01 anasarcous 0 002 + 14315897 n 0101 \ 14315897 n 0101 | characterized by or affected by dropsy -02621609 01 a 02 anastigmatic 0 stigmatic 0 003 + 13938663 n 0201 \ 13938663 n 0201 \ 02709101 n 0101 | pertaining to a lens or lens system free of astigmatism (able to form point images) -02621799 01 a 01 Andalusian 0 002 + 08493261 n 0101 \ 08493261 n 0101 | in or relating to Andalusia -02621901 01 a 02 androgenetic 0 androgenous 0 006 + 10172080 n 0204 + 05008746 n 0201 + 13431722 n 0201 \ 13431722 n 0201 + 13431722 n 0101 \ 13431722 n 0101 | of or related to androgenesis -02622093 01 a 01 androgenic 0 002 + 13431722 n 0102 \ 14747587 n 0101 | of or related to the male hormone androgen -02622210 01 a 01 androgynous 1 002 + 05008746 n 0101 \ 10172080 n 0104 | relating to or exhibiting both female and male sex organs but with a predominantly female appearance -02622386 01 a 01 anemographic 0 001 \ 00998329 n 0101 | pertaining to the recording of wind measurements -02622493 01 a 02 anemometric 0 anemometrical 0 004 + 02710429 n 0201 \ 00998423 n 0201 + 02710429 n 0101 \ 00998423 n 0101 | pertaining to the measurement of wind speed and direction -02622678 01 a 02 anencephalic 0 anencephalous 0 004 + 14152617 n 0201 \ 14152617 n 0201 + 14152617 n 0101 \ 14152617 n 0101 | characterized by partial or total absence of a brain -02622859 01 a 03 anestrous 0 anestric 0 anoestrous 0 005 \ 14038482 n 0301 + 14038482 n 0203 + 14038482 n 0201 \ 14038482 n 0201 \ 14038482 n 0101 | of or relating to anestrus -02623037 01 a 03 anginal 0 anginose 0 anginous 0 005 + 14108039 n 0302 \ 14108039 n 0302 \ 14108039 n 0202 + 14108039 n 0102 \ 14108039 n 0102 | of or related to the pain of angina pectoris -02623229 01 a 02 angiocarpic 0 angiocarpous 0 003 + 11665648 n 0201 \ 11665648 n 0201 \ 11665648 n 0101 | having or being fruit enclosed in a shell or husk -02623387 01 a 01 angiomatous 0 002 + 14235928 n 0101 \ 14235928 n 0101 | of or related to or having a tumor of the kind known as an angioma -02623529 01 a 01 angiospermous 0 002 + 11665372 n 0101 \ 11665372 n 0101 | of or related to or characteristic of plants that are angiosperms -02623672 01 a 01 Anglophilic 0 002 + 07500957 n 0101 \ 07500957 n 0101 | characterized by Anglophilia -02623776 01 a 01 Anglophobic 0 002 + 07502099 n 0101 \ 07502099 n 0101 | characterized by Anglophobia -02623880 01 a 01 anguine 0 002 ;c 06083243 n 0000 \ 01726692 n 0101 | of or related to or resembling a snake -02623991 01 a 01 anicteric 0 001 \ 14319684 n 0102 | without jaundice; "anicteric hepatitis" -02624086 01 a 01 animalistic 0 003 + 05958549 n 0101 + 04624517 n 0101 \ 05958549 n 0101 | of or pertaining to animalism -02624209 01 a 01 animatistic 0 002 + 05735256 n 0101 \ 05735256 n 0101 | of or pertaining to animatism -02624314 01 a 02 animist 0 animistic 0 004 + 05958712 n 0201 \ 05958712 n 0201 + 09794668 n 0101 \ 05958712 n 0101 | of or pertaining to the doctrine of animism -02624477 01 a 01 aniseikonic 0 002 + 14097162 n 0101 \ 14097162 n 0101 | relating to or characteristic of the visual defect aniseikonia -02624615 01 a 02 anisogamic 0 anisogamous 0 003 + 13432249 n 0201 \ 13432249 n 0201 \ 13432249 n 0101 | relating to a type of sexual reproduction in which the gametes are dissimilar in some respect (as size or shape) -02624834 01 a 01 anisogametic 0 002 + 05457201 n 0101 \ 05457201 n 0101 | relating to either of a pair of dissimilar (anisogamic) gametes combining in sexual reproduction -02625007 01 a 01 anisometropic 0 002 + 14555560 n 0101 \ 14555560 n 0101 | relating to a difference in the refractive power of the two eyes -02625149 01 a 01 ankylotic 0 002 + 14022520 n 0101 \ 14022520 n 0101 | relating to or characteristic of the abnormality ankylosis -02625281 01 a 01 annalistic 0 003 + 06597617 n 0101 + 06515662 n 0101 \ 06515662 n 0101 | relating to annals; "a book with an annalistic approach" -02625430 01 a 01 Bayesian 0 001 \ 05918379 n 0101 | of or relating to statistical methods based on Bayes' theorem -02625546 01 a 01 Arminian 0 002 + 06229586 n 0101 \ 06229586 n 0101 | of or relating to Arminianism -02625648 01 a 01 Armenian 0 005 + 09690371 n 0101 + 06352117 n 0101 + 06942699 n 0101 + 09017526 n 0101 \ 09017526 n 0101 | of or pertaining to Armenia or the people or culture of Armenia -02625838 01 a 01 Biedermeier 0 001 \ 03405725 n 0101 | of or relating to a style of furniture developed in Germany in the 19th century -02625975 01 a 02 annelid 0 annelidan 0 004 ;c 06083243 n 0000 \ 01934207 n 0202 + 01934440 n 0101 \ 01934207 n 0102 | relating to or belonging to or characteristic of any worms of the phylum Annelida -02626177 01 a 01 annexational 0 003 + 00373418 n 0101 + 00078536 n 0101 \ 00078536 n 0101 | relating to annexation -02626294 01 a 01 hermeneutic 0 001 \ 06183398 n 0101 | interpretive or explanatory -02626379 01 a 01 Middle_Eastern 0 001 \ 08791167 n 0101 | of or relating to or located in the Middle East -02626487 01 a 01 annunciatory 0 003 + 00965871 v 0101 + 00974367 v 0101 \ 06726158 n 0103 | relating to the act of announcing or being announced -02626634 01 a 01 alliaceous 0 003 ;c 06066555 n 0000 + 12431128 n 0101 \ 12431128 n 0101 | of or pertaining to the botanical genus Allium; "onions, leeks, garlic, chives are alliaceous plants" -02626829 01 a 02 anodic 0 anodal 0 005 + 02714535 n 0201 + 02714315 n 0201 \ 02714315 n 0201 ! 02626995 a 0101 \ 02714315 n 0101 | of or at or relating to an anode -02626995 01 a 01 cathodic 0 002 ! 02626829 a 0101 \ 02984699 n 0101 | of or at or pertaining to a cathode; "cathodic deposition of metals" -02627136 01 a 01 anoperineal 0 002 \ 05538016 n 0101 \ 05538494 n 0101 | relating to the anus and surrounding perineum -02627257 01 a 01 anopheline 0 002 + 02201497 n 0101 \ 02201252 n 0102 | relating to or characteristic of malaria mosquitoes -02627383 01 a 01 anorectal 0 002 \ 05538016 n 0101 \ 05537806 n 0101 | pertaining to the anus and rectum considered together -02627510 01 a 01 anorthitic 0 002 + 14865667 n 0101 \ 14865667 n 0101 | characteristic of anorthite -02627612 01 a 02 anosmic 0 anosmatic 0 004 + 14552477 n 0201 \ 14552477 n 0201 + 14552477 n 0101 \ 14552477 n 0101 | relating to an impairment or loss of the sense of smell -02627787 01 a 01 anoxemic 0 002 + 14503234 n 0101 \ 14503234 n 0101 | relating to or marked by abnormally little oxygen in arterial blood -02627927 01 a 01 anoxic 0 002 + 14043243 n 0101 \ 14043243 n 0101 | relating to or marked by a severe deficiency of oxygen in tissues or organs -02628073 01 a 01 anserine 0 002 ;c 06083243 n 0000 \ 01858023 n 0102 | of or resembling a goose -02628171 01 a 01 antecubital 0 001 \ 05579944 n 0104 | of or relating to the region of the arm in front of the elbow; "blood was drawn from the antecubital region" -02628337 01 a 02 antennal 0 antennary 0 006 + 02715229 n 0201 + 02584915 n 0201 \ 02584915 n 0201 + 02715229 n 0101 + 02584915 n 0101 \ 02584915 n 0101 | of or relating to antennae; "antennal senses of insects" -02628550 01 a 01 anthracitic 0 002 + 14814921 n 0101 \ 14814921 n 0101 | relating to or resembling anthracite coal -02628667 01 a 02 anthropic 0 anthropical 0 002 \ 02472293 n 0203 \ 02472293 n 0103 | relating to mankind or the period of mankind's existence -02628811 01 a 02 anthropogenetic 0 anthropogenic 0 004 \ 13432647 n 0201 + 13432647 n 0102 + 13432647 n 0101 \ 13432647 n 0101 | of or relating to the study of the origins and development of human beings -02629017 01 a 02 anthropometric 0 anthropometrical 0 004 + 00998604 n 0201 \ 00998604 n 0201 + 00998604 n 0101 \ 00998604 n 0101 | of or relating to anthropometry -02629182 01 a 01 anthropophagous 0 002 + 09891079 n 0103 \ 09891079 n 0103 | of or relating to eaters of human flesh -02629301 01 a 01 antibiotic 0 002 + 02716866 n 0101 \ 02716866 n 0101 | of or relating to antibiotic drugs -02629410 01 a 04 anticancer 0 antineoplastic 0 antitumor 0 antitumour 0 005 \ 14235200 n 0402 \ 14235200 n 0301 + 02722458 n 0201 \ 14235200 n 0203 \ 14239918 n 0101 | used in the treatment of cancer; "anticancer drug"; "an antineoplastic effect" -02629659 01 a 02 anticlimactic 0 anticlimactical 0 003 \ 06373991 n 0201 + 06373991 n 0101 \ 06373991 n 0101 | of or relating to a sudden change from an impressive to a ludicrous style -02629846 01 a 01 anticoagulative 0 001 \ 02718259 n 0101 | of or relating to an anticoagulant -02629942 01 a 01 anticyclonic 0 003 ;c 06118563 n 0000 + 14521021 n 0101 \ 14521021 n 0101 | of or relating to or characteristic of the atmosphere around a high pressure center -02630121 01 a 01 antigenic 0 002 + 15037339 n 0101 \ 15037339 n 0101 | of or relating to antigens -02630221 01 a 02 antimonic 0 antimonious 0 004 + 14628668 n 0201 \ 14628668 n 0201 + 14628668 n 0101 \ 14628668 n 0101 | relating to or derived from antimony; "antimonious oxide" -02630402 01 a 01 antinomian 0 002 + 09797257 n 0101 \ 06187154 n 0101 | relating to or influenced by antinomianism -02630519 01 a 02 antiphonary 0 antiphonal 1 004 + 07033245 n 0201 + 07048782 n 0201 + 07033245 n 0101 + 07048782 n 0101 | relating to or resembling an antiphon or antiphony -02630695 01 a 02 antipodal 0 antipodean 0 005 + 13855100 n 0201 \ 08631750 n 0201 + 13829243 n 0101 + 08631750 n 0101 \ 08631750 n 0101 | relating to the antipodes or situated at opposite sides of the earth; "antipodean latitudes"; "antipodal regions of the earth"; "antipodal points on a sphere" -02630994 01 a 01 antistrophic 0 001 \ 06386832 n 0101 | of or relating to an antistrophe -02631085 01 a 02 antitypic 0 antitypical 0 004 \ 05927364 n 0201 + 05841029 n 0101 + 05927364 n 0101 \ 05927364 n 0101 | of or relating to an antitype -02631238 01 a 03 anuran 0 batrachian 0 salientian 0 007 ;c 06083243 n 0000 + 01639369 n 0301 \ 01639369 n 0301 + 01639765 n 0205 \ 01639369 n 0205 + 01639765 n 0104 \ 01639369 n 0103 | relating to frogs and toads -02631453 01 a 02 anuretic 0 anuric 0 003 \ 14065903 n 0201 + 14065903 n 0101 \ 14065903 n 0101 | of or relating to an inability to urinate -02631594 01 a 01 anxiolytic 0 002 + 03771443 n 0105 \ 14374432 n 0101 | anxiety relieving -02631686 01 a 01 aoristic 0 003 ;c 06174404 n 0000 + 06330037 n 0101 \ 06330037 n 0101 | of or relating to the aorist tense -02631812 01 a 02 aortal 0 aortic 0 004 + 05335971 n 0201 \ 05335971 n 0201 + 05335971 n 0101 \ 05335971 n 0101 | of or relating to the aorta -02631955 01 a 02 aphaeretic 0 apheretic 0 005 + 13433061 n 0202 + 00649992 n 0201 \ 13433061 n 0201 + 13433061 n 0101 \ 13433061 n 0101 | relating to or formed by or consisting of aphaeresis -02632148 01 a 01 aphakic 0 002 + 09798096 n 0101 \ 14097432 n 0101 | of or relating to or afflicted with aphakia -02632263 01 a 01 aphanitic 0 002 + 14726315 n 0101 \ 14726315 n 0101 | of or relating to aphanite -02632363 01 a 01 aphasic 0 003 + 09798244 n 0101 + 14097574 n 0101 \ 14097574 n 0101 | related to or affected by aphasia; "aphasic speech" -02632504 01 a 01 aphetic 0 002 + 13433283 n 0101 \ 13433283 n 0101 | produced by aphesis -02632595 01 a 01 apian 0 001 \ 02206856 n 0101 | relating to or having the characteristics of bees -02632696 01 a 01 apiarian 0 002 + 02727426 n 0101 \ 09846755 n 0102 | relating to bees or beekeeping -02632799 01 a 01 apicultural 0 002 + 00916285 n 0102 \ 00916285 n 0102 | relating to the care and breeding of bees -02632916 01 a 01 aplitic 0 002 + 14726484 n 0101 \ 14726484 n 0101 | of or related to aplite -02633011 01 a 02 apneic 0 apnoeic 0 002 \ 14369408 n 0201 \ 14369408 n 0101 | of or relating to apnea -02633115 01 a 01 apocalyptic 0 002 + 07315631 n 0101 \ 07315631 n 0101 | of or relating to an apocalypse -02633222 01 a 01 Apocryphal 0 002 + 06457952 n 0101 \ 06457952 n 0101 | of or belonging to the Apocrypha -02633329 01 a 01 apocynaceous 0 001 \ 11766609 n 0101 | of or relating to tropical plants of the family Apocynaceae -02633447 01 a 03 apogamic 0 apogametic 0 apogamous 0 006 ;c 06066555 n 0000 + 13433462 n 0301 \ 13433462 n 0301 \ 13433462 n 0201 + 13433462 n 0101 \ 13433462 n 0101 | of or relating to the development of an embryo in the absence of fertilization -02633696 01 a 01 apogean 0 002 + 08495420 n 0101 \ 08495420 n 0101 | relating to or characteristic of an apogee; "apogean tides occur when the moon is at the apogee of its orbit" -02633877 01 a 02 apomictic 0 apomictical 0 005 ;c 06066555 n 0000 + 13433727 n 0201 \ 11536567 n 0201 + 13433727 n 0101 \ 11536567 n 0101 | of or relating to a plant that reproduces by apomixis -02634073 01 a 01 aponeurotic 0 002 + 05582690 n 0101 \ 05582690 n 0101 | of or relating to an aponeurosis; "muscles attached by a flat aponeurotic membrane" -02634232 01 a 01 apophatic 0 002 + 07101649 n 0101 \ 05942104 n 0101 | of or relating to the belief that God can be known to humans only in terms of what He is not (such as `God is unknowable') -02634428 01 a 01 apophyseal 1 004 + 13088460 n 0101 + 05473104 n 0101 \ 05473104 n 0101 \ 13088460 n 0101 | of or relating to an apophysis -02634569 01 a 01 apoplectic 0 002 + 14082303 n 0102 \ 14082303 n 0102 | pertaining to or characteristic of apoplexy; "apoplectic seizure" -02634709 01 a 02 apoplectiform 0 apoplectoid 0 002 \ 14082303 n 0202 \ 14082303 n 0102 | resembling apoplexy -02634820 01 a 01 aposiopetic 0 002 + 07101778 n 0101 \ 07101778 n 0101 | relating to or characteristic of aposiopesis -02634940 01 a 01 apostrophic 0 001 \ 07101937 n 0101 | of or characteristic of apostrophe; "a passage of apostrophic grandeur" -02635069 01 a 01 apothecial 0 003 ;c 06066555 n 0000 + 11533622 n 0101 \ 11533622 n 0101 | of or relating to the apothecium of some lichens and fungi -02635221 01 a 02 apothegmatic 0 apothegmatical 0 004 + 07153130 n 0202 \ 07153130 n 0202 + 07153130 n 0102 \ 07153130 n 0102 | given to or characterized by terse apothegms -02635395 01 a 01 Appalachian 0 002 + 08493493 n 0101 \ 08493493 n 0101 | in or relating to Appalachia -02635499 01 a 01 appellative 0 001 \ 06319293 n 0101 | pertaining to or dealing with or used as a common noun -02635611 01 a 01 appendicular 0 002 + 02728968 n 0101 \ 05559908 n 0102 | relating to or consisting of an appendage or appendages; especially the limbs; "the appendicular skeleton" -02635794 01 a 01 appointive 0 003 + 02396205 v 0101 + 02475922 v 0101 \ 00163779 n 0101 | relating to the act of appointing; "appointive powers" -02635941 01 a 02 appositional 0 appositive 0 004 + 01500214 v 0201 \ 13801217 n 0201 + 13801217 n 0101 \ 13801217 n 0101 | relating to or being in apposition; "an appositive noun" -02636123 01 a 01 appropriative 0 002 + 02272549 v 0101 \ 00083975 n 0101 | of or relating to or given to the act of taking for yourself -02636261 01 a 01 apsidal 0 002 + 02731398 n 0101 \ 02731398 n 0101 | of or relating to an apse -02636358 01 a 01 aptitudinal 0 002 + 05622456 n 0101 \ 05622456 n 0101 | of or relating to aptitudes -02636461 01 a 01 aqueous 0 001 \ 14845743 n 0101 | similar to or containing or dissolved in water; "aqueous solutions" -02636582 01 a 01 aquatic 0 001 \ 14845743 n 0101 | relating to or consisting of or being in water; "an aquatic environment" -02636708 01 a 01 aquiferous 0 002 + 09201998 n 0101 \ 09201998 n 0101 | of or relating to an aquifer -02636811 01 a 05 arachnoid 0 arachnidian 0 spidery 0 spiderlike 0 spiderly 0 006 ;c 06083243 n 0000 + 01772222 n 0301 + 01768969 n 0201 \ 01768969 n 0202 + 01769347 n 0102 \ 01768969 n 0102 | relating to or resembling a member of the class Arachnida -02637063 01 a 01 Aramaic 0 002 + 06988307 n 0101 \ 06988307 n 0101 | of or relating to the ancient Aramaic languages -02637182 01 a 02 Aramean 0 Aramaean 0 004 + 09033813 n 0201 \ 09033813 n 0201 + 09033813 n 0101 \ 09033813 n 0101 | of or relating to Aram or to its inhabitants or their culture or their language -02637380 01 a 02 araneidal 0 araneidan 0 004 ;c 06083243 n 0000 \ 01771966 n 0204 + 01771966 n 0103 \ 01771966 n 0104 | relating to or resembling a spider -02637537 01 a 01 Arawakan 0 005 + 09803247 n 0102 + 09803247 n 0101 + 06917764 n 0101 \ 09803247 n 0101 \ 06917764 n 0101 | of or relating to the peoples who speak the language of the Arawak -02637730 01 a 02 arbitral 0 arbitrational 0 004 + 07150850 n 0201 + 01190884 n 0201 \ 07150850 n 0201 \ 07150850 n 0101 | relating to or resulting from arbitration; "the arbitral adjustment of the controversy"; "an arbitrational settlement" -02637973 01 a 01 arbitrative 0 002 + 00760956 v 0105 \ 07150850 n 0101 | relating to or having the authority to arbitrate; "an arbitrative board" -02638121 01 a 04 arborical 0 arboreal 0 arborary 0 arborous 0 008 + 13107891 n 0401 \ 13104059 n 0401 + 13107891 n 0301 \ 13104059 n 0301 + 13107891 n 0201 \ 13104059 n 0201 + 13107891 n 0101 \ 13104059 n 0101 | of or relating to or formed by trees; "an arborous roof" -02638392 01 a 04 archaeological 0 archeological 0 archaeologic 0 archeologic 0 008 + 06144081 n 0401 \ 06144081 n 0401 + 06144081 n 0302 \ 06144081 n 0301 + 06144081 n 0201 \ 06144081 n 0201 + 06144081 n 0102 \ 06144081 n 0101 | related to or dealing with or devoted to archaeology; "an archaeological dig"; "a dramatic archaeological discovery" -02638740 01 a 01 archaistic 0 003 + 07073447 n 0101 + 07073447 n 0102 \ 07073447 n 0101 | imitative of an archaic style or manner; "archaistic writing" -02638894 01 a 02 archangelic 0 archangelical 0 004 + 09539183 n 0201 \ 09539183 n 0201 + 09539183 n 0101 \ 09539183 n 0101 | of or relating to or resembling archangels -02639064 01 a 01 arched 0 001 \ 02733524 n 0101 | constructed with or in the form of an arch or arches; "an arched passageway" -02639193 01 a 01 archdiocesan 0 002 + 08550862 n 0101 \ 08550862 n 0101 | of or relating to an archdiocese -02639302 01 a 01 archducal 0 002 + 09804658 n 0101 \ 09804658 n 0101 | belonging to or befitting an archduke or his archduchy -02639430 01 a 02 archegonial 0 archegoniate 0 004 ;c 06066555 n 0000 \ 11689054 n 0201 + 11689054 n 0101 \ 11689054 n 0101 | of or relating to an archegonium -02639590 01 a 01 archesporial 0 004 ;c 06066555 n 0000 + 11688378 n 0102 + 11688378 n 0101 \ 11688378 n 0101 | of or relating to the cells in a sporangium that give rise to spores -02639772 01 a 01 archidiaconal 0 002 + 09804343 n 0101 \ 09804343 n 0101 | of or relating to an archdeacon or his office -02639895 01 a 02 archiepiscopal 0 archepiscopal 0 004 + 09805151 n 0201 \ 09805151 n 0201 + 09805151 n 0101 \ 09805151 n 0101 | of or associated with an archbishop; "an archiepiscopal see" -02640086 01 a 01 archipelagic 0 002 + 09203827 n 0101 \ 09203827 n 0101 | relating to or part of an archipelago; "an archipelagic war" -02640223 01 a 01 archival 0 002 + 02735086 n 0101 \ 02735086 n 0101 | of or relating to or contained in or serving as an archive -02640354 01 a 01 archosaurian 0 003 + 01695681 n 0102 + 01695681 n 0101 \ 01695259 n 0101 | of or relating to reptiles of the subclass Archosauria -02640503 01 a 01 areal 0 003 + 08497294 n 0101 + 05128519 n 0101 \ 08497294 n 0101 | of or relating to or involving an area -02640629 01 a 01 arenicolous 0 001 \ 15019030 n 0101 | growing or living or burrowing in sand; "arenicolous worms" -02640746 01 a 02 areolar 0 areolate 0 003 \ 05555017 n 0201 + 05554804 n 0101 \ 05555017 n 0101 | relating to or like or divided into areolae; "areolar tissue" -02640908 01 a 01 argentic 0 001 \ 14654954 n 0101 | relating to compounds in which silver is bivalent -02641012 01 a 01 argentous 0 001 \ 14654954 n 0101 | relating to compounds in which silver is univalent -02641118 01 a 01 armillary 0 001 \ 02887970 n 0101 | of or relating to bracelets -02641201 01 a 02 aroid 0 araceous 0 005 ;c 06066555 n 0000 + 11778534 n 0201 \ 11778534 n 0201 + 11779300 n 0102 \ 11778534 n 0101 | relating to a plant of the family Araceae -02641378 01 a 01 aromatic 0 003 ;c 06084469 n 0000 + 04980008 n 0103 \ 14610088 n 0101 | (chemistry) of or relating to or containing one or more benzene rings; "an aromatic organic compound" -02641571 01 a 01 arsenical 0 004 + 14768201 n 0101 + 14629149 n 0101 \ 14602721 n 0101 + 14602721 n 0101 | relating to or containing arsenic; "arsenic vapor" -02641731 01 a 01 arsenious 0 002 + 14629149 n 0101 \ 14629149 n 0101 | relating to compounds in which arsenic is trivalent -02641856 01 a 01 arterial 0 002 + 05333777 n 0101 \ 05333777 n 0101 | of or involving or contained in the arteries; "arterial disease"; "the arterial system"; "arterial blood" -02642034 01 a 01 venous 0 002 + 05418717 n 0101 \ 05418717 n 0101 | of or contained in or performing the function of the veins; "venous inflammation"; "venous blood as contrasted with arterial blood"; "venous circulation" -02642258 01 a 01 arteriovenous 0 002 \ 05333777 n 0101 \ 05418717 n 0101 | connecting an artery to a vein; "an arteriovenous fistula" -02642394 01 a 01 arthralgic 0 002 + 14324572 n 0101 \ 14324572 n 0101 | of or relating to arthralgia -02642497 01 a 01 arthromeric 0 002 + 05225439 n 0101 \ 05225439 n 0101 | of or relating to one of the body segments of jointed animals -02642634 01 a 03 arthropodal 0 arthropodan 0 arthropodous 0 007 ;c 06083243 n 0000 + 01767199 n 0301 \ 01767199 n 0302 \ 01767199 n 0202 + 01767199 n 0101 + 01767661 n 0101 \ 01767199 n 0102 | of or relating to invertebrates of the phylum Arthropoda -02642886 01 a 02 arthrosporic 0 arthrosporous 0 006 ;c 06066555 n 0000 + 13092548 n 0201 \ 13092385 n 0201 + 13092548 n 0101 + 13092385 n 0101 \ 13092385 n 0101 | of or relating to arthrospores -02643082 01 a 01 Arthurian 0 002 + 10824888 n 0101 \ 10824888 n 0101 | of or relating to King Arthur and the Knights of the Round Table -02643220 01 a 02 articular 0 articulary 0 004 + 05595083 n 0202 \ 05595083 n 0202 + 05595083 n 0102 \ 05595083 n 0102 | relating to or affecting the joints of the body; "the articular surfaces of bones"; "articular disease" -02643446 01 a 02 articulatory 0 articulative 0 005 + 00978369 v 0201 + 00978549 v 0202 \ 07131854 n 0201 + 00978549 v 0102 \ 07131854 n 0101 | of or relating to articulation; "articulatory features"; "articulatory phonetics" -02643673 01 a 03 artiodactyl 0 artiodactylous 0 even-toed 0 005 ;c 06083243 n 0000 \ 02394068 n 0302 + 02394068 n 0201 \ 02394068 n 0202 \ 02394068 n 0102 | of or relating to or belonging to mammals of the order Artiodactyla -02643900 01 a 01 arundinaceous 0 002 + 12148079 n 0101 \ 12148079 n 0102 | of or relating to or resembling reedlike plants of the genus Arundinaria -02644050 01 a 01 ascensional 0 004 + 07311661 n 0101 + 07445480 n 0104 + 00324384 n 0103 \ 00324384 n 0103 | tending to rise -02644177 01 a 02 ascetic 0 ascetical 0 004 + 09758173 n 0202 \ 09758173 n 0202 + 09758173 n 0102 \ 09758173 n 0102 | pertaining to or characteristic of an ascetic or the practice of rigorous self-discipline; "ascetic practices" -02644407 01 a 01 ascitic 0 002 + 14110025 n 0101 \ 14110025 n 0101 | of or relating to or resulting from an abnormal accumulation of protein and electrolyte rich fluid in the peritoneal cavity -02644602 01 a 01 asclepiadaceous 0 003 ;c 06066555 n 0000 + 13233012 n 0101 \ 13233012 n 0101 | of or relating to plants of the milkweed family -02644748 01 a 01 ascocarpous 0 003 ;c 06066555 n 0000 + 11532816 n 0101 \ 11532816 n 0101 | of or relating to ascocarps -02644870 01 a 02 ascosporic 0 ascosporous 0 005 ;c 06066555 n 0000 + 13092240 n 0201 \ 13092240 n 0201 + 13092240 n 0101 \ 13092240 n 0101 | of or relating to ascospores -02645042 01 a 01 associational 0 003 ;c 06136258 n 0000 \ 05763916 n 0101 \ 06137918 n 0101 | of or relating to associations or associationism -02645187 01 a 01 asteriated 0 001 \ 13881810 n 0101 | (of some crystals especially gemstones) exhibiting asterism -02645303 01 a 01 asterismal 0 002 + 09208496 n 0101 \ 09208496 n 0101 | relating to asterisms or constellations -02645417 01 a 01 stoloniferous 0 001 \ 13127843 n 0101 | producing stolons -02645494 01 a 02 stomatal 1 stomatous 1 004 + 11680032 n 0201 \ 11680032 n 0201 + 11680032 n 0101 \ 11680032 n 0101 | relating to or constituting plant stomata; "stomatal openings" -02645677 01 a 02 stomatal 2 stomatous 2 004 + 05246215 n 0201 \ 05246215 n 0201 + 05246215 n 0101 \ 05246215 n 0101 | relating to or of the nature of or having a mouth or mouthlike opening -02645868 01 a 01 astomatal 0 001 \ 02645494 a 0101 | lacking a stoma or stomata -02645950 01 a 01 stored-program 0 001 \ 06580219 n 0101 | of or concerning programs stored in the computer's own memory -02646072 01 a 01 astragalar 0 004 ;c 06057539 n 0000 + 05271383 n 0103 + 05271383 n 0102 \ 05271383 n 0102 | of or relating to the anklebone -02646215 01 a 01 astrocytic 0 003 ;c 06078978 n 0000 + 05467758 n 0101 \ 05467758 n 0101 | of or relating to or containing large star-shaped cells in the neuroglia -02646381 01 a 02 astronautic 0 astronautical 0 006 + 09818022 n 0201 \ 06096913 n 0202 \ 09818022 n 0201 + 09818022 n 0101 \ 06096913 n 0102 \ 09818022 n 0101 | of or belonging to astronauts or the science of astronautics -02646605 01 a 02 astronomic 0 astronomical 0 004 + 06095022 n 0201 \ 06095022 n 0201 + 06095022 n 0101 \ 06095022 n 0101 | relating or belonging to the science of astronomy; "astronomic telescope" -02646804 01 a 01 asynergic 0 003 + 14024391 n 0101 + 14024391 n 0102 \ 14024391 n 0101 | of or relating to the state of asynergy; lacking synergy -02646952 01 a 02 ataxic 0 atactic 0 004 + 14091254 n 0201 \ 14091254 n 0201 + 14091254 n 0101 \ 14091254 n 0101 | lacking motor coordination; marked or caused by ataxia -02647123 01 a 01 atherosclerotic 0 002 + 14108713 n 0101 \ 14108713 n 0101 | of or relating to atherosclerosis -02647236 01 a 01 atonalistic 0 003 ;c 07020895 n 0000 + 06864014 n 0102 \ 06864014 n 0102 | of or relating to atonalism -02647358 01 a 01 atonic 0 004 + 14545845 n 0102 + 14545845 n 0103 + 14545845 n 0101 \ 14545845 n 0101 | characterized by a lack of tonus -02647497 01 a 01 atrial 0 003 ;c 06057539 n 0000 + 05393023 n 0101 \ 05393023 n 0101 | of or relating to a cavity or chamber in the body (especially one of the upper chambers of the heart) -02647688 01 a 02 atrioventricular 0 auriculoventricular 0 004 \ 05392348 n 0201 \ 05391763 n 0201 \ 05393023 n 0101 \ 05391763 n 0101 | relating to or affecting the atria and ventricles of the heart; "atrioventricular disease" -02647917 01 a 01 attentional 0 002 ;c 06136258 n 0000 \ 05702275 n 0101 | of or relating to attention -02648021 01 a 01 attitudinal 0 001 \ 06193203 n 0101 | of or relating to attitudes -02648106 01 a 01 attritional 0 005 + 13423615 n 0102 + 11460063 n 0103 + 07356970 n 0101 + 00361795 n 0101 \ 07356970 n 0101 | relating to or caused by attrition -02648270 01 a 01 audiometric 0 003 + 06060732 n 0102 + 00998982 n 0101 \ 00998982 n 0101 | of or relating to audiometry -02648392 01 a 01 audiovisual 0 002 + 02757927 n 0101 \ 02757927 n 0102 | involving both hearing and seeing (usually relating to teaching aids); "the school's audiovisual department" -02648576 01 a 01 augitic 0 002 + 14667668 n 0101 \ 14667668 n 0101 | of or relating to or containing the mineral augite -02648698 01 a 01 aural 0 001 \ 04727214 n 0102 | relating to or characterized by an aura; "various aural effects that precede a migraine headache" -02648847 01 a 01 aural 1 001 \ 05320899 n 0101 | of or pertaining to hearing or the ear; "an animal with a very sensitive aural apparatus" -02648988 01 a 01 auricular 1 002 + 05392348 n 0101 \ 05392348 n 0101 | pertaining to an auricle of the heart; "auricular fibrillation" -02649125 01 a 01 auricular 2 002 + 05323889 n 0101 \ 05323889 n 0101 | relating to or perceived by or shaped like the organ of hearing; "my apprehension of words is auricular; I must hear what I read"- George Santayana; "an auricular confession"; "an auricular appendage" -02649399 01 a 01 autoimmune 0 002 + 14527977 n 0101 \ 00860434 n 0101 | of or relating to the immune response of the body against substance normally present in the body -02649570 01 a 01 biauricular 0 001 \ 02649125 a 0101 | relating to the two auditory openings; "the biauricular diameter of the skull" -02649706 01 a 02 auroral 1 aurorean 0 004 + 15168790 n 0204 \ 15168790 n 0201 + 15168790 n 0104 \ 15168790 n 0101 | characteristic of the dawn; "a dim auroral glow" -02649873 01 a 01 auroral 2 002 + 11427241 n 0101 \ 11427241 n 0101 | of or relating to the atmospheric phenomenon auroras; "a prominent green line in the spectrum of the auroras is called the `auroral line'" -02650083 01 a 02 aurous 0 auric 0 002 \ 14638799 n 0201 \ 14638799 n 0101 | of or relating to or containing or derived from gold -02650214 01 a 01 auscultatory 0 001 \ 00876542 n 0101 | of or relating to auscultation -02650303 01 a 01 austenitic 0 002 + 14769760 n 0101 \ 14769760 n 0101 | composed of austenite; "austenitic alloy steel" -02650425 01 a 01 Australasian 0 002 + 08836165 n 0101 \ 08836165 n 0101 | relating to or found in Australasia -02650537 01 a 01 australopithecine 0 002 + 02476219 n 0101 \ 02475821 n 0101 | of or belonging to the hominid genus Australopithecus -02650672 01 a 01 autacoidal 0 003 ;c 06080522 n 0000 + 05414534 n 0101 \ 05414534 n 0101 | of or relating to an autacoid -02650795 01 a 03 autarchic 0 autarchical 0 autarkical 0 006 + 13993356 n 0301 \ 08361001 n 0301 + 13993356 n 0202 + 08361001 n 0202 \ 08361001 n 0201 \ 08361001 n 0101 | of or relating to or characterized by autarchy -02651014 01 a 02 authorial 0 auctorial 0 005 + 10794014 n 0202 + 10126177 n 0203 \ 10794014 n 0202 + 10794014 n 0102 \ 10794014 n 0102 | of or by or typical of an author; "authorial comments"; "auctorial flights of imagination" -02651244 01 a 02 autobiographical 0 autobiographic 0 003 \ 06516087 n 0201 + 06516087 n 0101 \ 06516087 n 0101 | relating to or in the style of an autobiography; "they compiled an autobiographical history of the movement" -02651468 01 a 02 autobiographical 1 autobiographic 1 003 \ 09825296 n 0201 + 06516087 n 0101 \ 09825296 n 0101 | of or relating to or characteristic of an autobiographer; "he seldom suppressed his autobiographical tendencies" -02651696 01 a 01 autocatalytic 0 002 + 13435770 n 0101 \ 13435770 n 0101 | relating to or proceeding by autocatalysis -02651816 01 a 01 autogenetic 0 002 + 11420376 n 0102 \ 11420376 n 0102 | of or relating to autogenesis -02651921 01 a 01 autographic 0 001 \ 06407094 n 0101 | written in the author's own handwriting -02652018 01 a 01 autolytic 0 002 + 13435918 n 0101 \ 13435918 n 0101 | of or relating to self-digestion -02652124 01 a 01 autoplastic 0 003 + 05583158 n 0102 + 00667096 n 0101 \ 00667096 n 0101 | of or relating to or involved in autoplasty -02652261 01 a 01 autoradiographic 0 001 \ 13436206 n 0101 | of or relating to or produced by autoradiography -02652372 01 a 01 autotelic 0 002 + 05946089 n 0101 \ 05946089 n 0101 | of or relating to or believing in autotelism -02652490 01 a 01 autotomic 0 002 + 00394242 n 0101 \ 00394242 n 0101 | of or relating to autotomy -02652590 01 a 02 autotrophic 0 autophytic 0 005 ;c 06066555 n 0000 + 13124654 n 0201 \ 13124654 n 0201 ! 02652877 a 0101 \ 13124654 n 0103 | of or relating to organisms (as green plants) that can make complex organic nutritive compounds from simple inorganic sources by photosynthesis -02652877 01 a 01 heterotrophic 0 002 ;c 06066555 n 0000 ! 02652590 a 0101 | requiring organic compounds of carbon and nitrogen for nourishment; "most animals are heterotrophic" -02653056 01 a 01 autotypic 0 003 + 13436361 n 0101 + 03316274 n 0102 \ 13436361 n 0101 | of or relating to autotypy -02653174 01 a 01 auxetic 0 002 + 13436682 n 0101 \ 13436682 n 0101 | of or relating to growth by auxesis -02653281 01 a 01 auxinic 0 002 + 14745057 n 0101 \ 14745057 n 0101 | relating to or containing auxins -02653385 01 a 03 axiomatic 0 axiomatical 0 postulational 0 004 + 06753550 n 0201 \ 06753550 n 0201 + 06753550 n 0101 \ 06753550 n 0101 | of or relating to or derived from axioms; "axiomatic physics"; "the postulational method was applied to geometry"- S.S.Stevens -02653651 01 a 02 axiomatic 2 aphoristic 0 003 + 07153130 n 0201 + 07152948 n 0102 \ 07152948 n 0102 | containing aphorisms or maxims; "axiomatic wisdom" -02653806 01 a 02 avellan 0 avellane 0 002 \ 12289433 n 0203 \ 12289433 n 0103 | pertaining to filberts or hazelnuts -02653924 01 a 01 avian 0 002 ;c 06083243 n 0000 \ 01503061 n 0101 | pertaining to or characteristic of birds -02654035 01 a 02 avifaunal 0 avifaunistic 0 004 + 07993643 n 0201 \ 07993643 n 0201 + 07993643 n 0101 \ 07993643 n 0101 | of or relating to birds of a particular region or period -02654216 01 a 01 avionic 0 002 + 06097231 n 0101 \ 06097231 n 0101 | of or relating to avionics -02654314 01 a 01 avitaminotic 0 002 + 14198576 n 0101 \ 14198576 n 0101 | of or relating to or characteristic of avitaminosis -02654442 01 a 01 avocational 0 002 + 00432689 n 0101 \ 00432689 n 0101 | of or involved in an avocation -02654548 01 a 01 avuncular 0 002 + 10736091 n 0101 \ 10736091 n 0101 | being or relating to an uncle -02654652 01 a 01 avuncular 1 001 \ 10736259 n 0101 | resembling a uncle in kindness or indulgence -02654752 01 a 01 award-winning 0 001 \ 07354731 n 0101 | having received awards; "this award-winning bridge spans a distance of five miles" -02654894 01 a 01 axial 0 002 + 02764614 n 0101 \ 02764614 n 0101 | of or relating to or resembling an axis of rotation -02655015 01 a 02 axile 0 axial 2 004 ;c 06066555 n 0000 + 06008609 n 0201 \ 13128771 n 0201 \ 13128771 n 0101 | relating to or attached to the axis; "axial angle" -02655180 01 a 01 axillary 1 003 ;c 06057539 n 0000 + 05549576 n 0102 \ 05549576 n 0101 | of or relating to the armpit; "axillary gland" -02655318 01 a 01 axiological 0 002 + 06161606 n 0101 \ 06161606 n 0101 | of or relating to the study of values -02655431 01 a 01 axonal 0 003 ;c 06081833 n 0000 + 05468849 n 0101 \ 05468849 n 0101 | of or relating to or resembling an axon -02655560 01 a 01 Azerbaijani 0 003 + 09735542 n 0101 + 06927007 n 0101 \ 09018162 n 0101 | of or pertaining to Azerbaijan or the people or culture of Azerbaijan -02655723 01 a 01 azido 0 002 ;c 06084469 n 0000 \ 14621194 n 0101 | relating to or containing the azido group N3 -02655838 01 a 01 azimuthal 0 002 + 13893502 n 0101 \ 13893502 n 0101 | of or relating to or in azimuth -02655943 01 a 01 azo 0 001 \ 14621319 n 0101 | relating to or containing the azo radical -02656034 01 a 01 diazo 0 001 \ 14771831 n 0101 | relating to or containing diazonium -02656121 01 a 01 zoic 0 001 \ 00015388 n 0101 | pertaining to animals or animal life or action -02656218 01 a 03 azotemic 0 uremic 0 uraemic 0 005 + 14210971 n 0302 + 14210971 n 0201 \ 14210971 n 0201 + 14210971 n 0103 \ 14210971 n 0103 | of or involving excess nitrogenous waste products in the urine (usually due to kidney insufficiency) -02656464 01 a 01 baboonish 0 001 \ 02486410 n 0101 | resembling a baboon -02656539 01 a 01 Babylonian 0 002 + 08916832 n 0101 \ 08916832 n 0101 | of or relating to the city of Babylon or its people or culture; "Babylonian religion" -02656699 01 a 02 baccate 0 berrylike 0 002 \ 13137951 n 0202 \ 13137951 n 0102 | resembling a berry -02656801 01 a 01 bacchantic 0 002 + 09829798 n 0101 \ 09829798 n 0101 | of or relating to or resembling a bacchanalian reveler -02656930 01 a 02 bacillar 0 bacillary 0 004 ;c 06037666 n 0000 + 01349948 n 0201 \ 01349948 n 0201 \ 01349948 n 0101 | relating to or produced by or containing bacilli -02657100 01 a 01 back-channel 0 001 \ 06260817 n 0101 | via a back channel; "the failure of back-channel negotiations" -02657221 01 a 01 bacteremic 0 002 + 14110219 n 0101 \ 14110219 n 0101 | of or relating to or having bacteremia -02657334 01 a 01 bacteriolytic 0 002 + 13437379 n 0101 \ 13437379 n 0101 | of or relating to or causing bacteriolysis -02657454 01 a 02 bacteriophagic 0 bacteriophagous 0 004 + 01334862 n 0201 \ 01334862 n 0201 + 01334862 n 0101 \ 01334862 n 0101 | of or relating to bacteriophages -02657619 01 a 01 bacteriostatic 0 002 + 13437495 n 0101 \ 13437495 n 0101 | of or relating to or causing bacteriostasis -02657741 01 a 04 bacteroidal 0 bacteroid 0 bacterioidal 0 bacterioid 0 007 \ 01348530 n 0401 + 01348530 n 0302 \ 01348530 n 0301 + 01349735 n 0201 \ 01348530 n 0201 + 01349735 n 0101 \ 01348530 n 0101 | resembling bacteria -02657966 01 a 01 Bahai 0 001 \ 06244552 n 0101 | of or relating to Bahaism -02658043 01 a 01 balletic 0 003 + 07054336 n 0101 + 00528667 n 0101 \ 07054336 n 0101 | characteristic of or resembling or suitable for ballet -02658188 01 a 01 ballistic 0 003 + 11481487 n 0101 + 06114246 n 0101 \ 11481487 n 0101 | relating to or characteristic of the motion of objects moving under their own momentum and the force of gravity; "ballistic missile" -02658412 01 a 02 balsamic 0 balsamy 0 006 + 14896714 n 0201 \ 14896714 n 0201 + 14896714 n 0101 + 11552686 n 0101 + 02783790 n 0101 \ 14896714 n 0101 | of or relating to or containing balsam; "a balsamic fragrance" -02658629 01 a 01 baric 0 002 + 14629998 n 0101 \ 14629998 n 0101 | of or relating to or containing barium -02658737 01 a 01 barographic 0 001 \ 02794008 n 0101 | relating to or registered by a barograph -02658835 01 a 02 barometric 0 barometrical 0 004 + 02794156 n 0201 \ 02794156 n 0201 + 02794156 n 0101 \ 02794156 n 0101 | relating to atmospheric pressure or indicated by a barometer; "barometric pressure" -02659044 01 a 01 barytic 0 002 + 14630204 n 0101 \ 14630204 n 0101 | of or relating to or containing baryta -02659154 01 a 01 basaltic 0 002 + 14773022 n 0101 \ 14773022 n 0101 | of or relating to or containing basalt; "basaltic magma is fluid" -02659292 01 a 01 basidial 0 002 + 12994475 n 0101 \ 12994475 n 0101 | relating to or characterized by basidia -02659404 01 a 01 basidiomycetous 0 003 ;c 06066555 n 0000 + 12997654 n 0101 \ 12997654 n 0101 | pertaining to or characteristic of fungi of the class Basidiomycetes -02659571 01 a 01 basidiosporous 0 003 ;c 06066555 n 0000 + 11548465 n 0101 \ 11548465 n 0101 | of or relating to or characterized by spores produced by basidia -02659733 01 a 02 basilar 0 basilary 0 004 + 08511777 n 0201 \ 08511777 n 0201 + 09215315 n 0101 \ 08511777 n 0101 | of or relating to or located at the base; "the basilar membrane of the cochlea" -02659931 01 a 01 basilican 0 003 + 02801184 n 0101 + 02801047 n 0101 \ 02801047 n 0101 | of or relating to or resembling a basilica -02660065 01 a 01 basinal 0 001 \ 09215437 n 0101 | of or relating to a basin; "basinal deposits" -02660164 01 a 02 batholithic 0 batholitic 0 005 ;c 06115701 n 0000 + 14932303 n 0202 \ 14932303 n 0201 + 14932303 n 0101 \ 14932303 n 0101 | of or relating to a batholith -02660337 01 a 02 bathymetric 0 bathymetrical 0 005 + 00999089 n 0201 + 02808695 n 0201 \ 00999089 n 0201 + 00999089 n 0101 \ 00999089 n 0101 | of or relating to measurements of the depths of oceans or lakes -02660546 01 a 01 bauxitic 0 002 + 14668277 n 0101 \ 14668277 n 0101 | resembling or containing bauxite -02660651 01 a 04 behavioristic 0 behaviorist 0 behaviouristic 0 behaviourist 0 008 + 09608520 n 0402 \ 06139764 n 0401 + 06139764 n 0302 \ 06139764 n 0301 + 09608520 n 0201 \ 06139764 n 0201 + 06139764 n 0101 \ 06139764 n 0101 | of or relating to behaviorism; "behavioristic psychology" -02660940 01 a 01 Belarusian 0 003 + 06944480 n 0101 + 09011151 n 0101 \ 09011151 n 0101 | of or pertaining to Belarus or to the people or culture of Belarus -02661099 01 a 01 belemnitic 0 002 + 01973723 n 0101 \ 01973723 n 0101 | of or relating to belemnites -02661202 01 a 02 benedictory 0 benedictive 0 002 \ 07189411 n 0201 \ 07189411 n 0101 | expressing benediction -02661314 01 a 01 beneficiary 0 002 + 13248087 n 0101 \ 13248087 n 0101 | having or arising from a benefice; "a beneficiary baron" -02661446 01 a 01 benevolent 0 002 + 01226679 n 0101 \ 01226679 n 0101 | intending or showing kindness; "a benevolent society" -02661574 01 a 03 benthic 0 benthal 0 benthonic 0 006 + 08578517 n 0301 + 00005787 n 0301 \ 08578517 n 0301 + 08578517 n 0201 \ 08578517 n 0201 \ 08578517 n 0101 | of or relating to or happening on the bottom under a body of water -02661806 01 a 01 bentonitic 0 002 + 14813709 n 0101 \ 14813709 n 0101 | of or relating to or containing bentonite -02661922 01 a 01 benzenoid 0 001 \ 14774699 n 0101 | similar to benzene in structure or linkage -02662020 01 a 01 benzoic 0 002 \ 14775321 n 0101 \ 14897941 n 0101 | containing or derived from benzoic acid or benzoin -02662142 01 a 01 benzylic 0 003 ;c 06084469 n 0000 + 14622623 n 0101 \ 14622623 n 0102 | relating to benzyl -02662252 01 a 01 betulaceous 0 002 + 12280487 n 0101 \ 12280487 n 0101 | of or pertaining to or characteristic of trees of the birch family -02662394 01 a 03 biaxial 0 biaxal 0 biaxate 0 003 \ 06008609 n 0301 \ 06008609 n 0201 \ 06008609 n 0101 | having two axes; "biaxial crystals" -02662538 01 a 02 bibliographic 0 bibliographical 0 003 + 06486630 n 0201 \ 06486630 n 0201 \ 06486630 n 0101 | relating to or dealing with bibliography -02662692 01 a 01 bibliolatrous 0 002 + 01044867 n 0101 \ 01044867 n 0101 | given to Bible-worship -02662792 01 a 01 bibliomaniacal 0 002 + 04946266 n 0101 \ 04946266 n 0101 | characteristic of or characterized by or noted for bibliomania -02662933 01 a 01 bibliophilic 0 002 + 09852679 n 0101 \ 09852679 n 0101 | of or relating to bibliophiles -02663040 01 a 01 bibliopolic 0 002 + 09852826 n 0101 \ 09852826 n 0101 | of or relating to bibliopoles -02663145 01 a 02 bibliothecal 0 bibliothecarial 0 005 + 07978055 n 0201 \ 07978055 n 0201 \ 10257948 n 0201 + 07978055 n 0101 \ 07978055 n 0101 | of or relating to a library or bibliotheca or a librarian -02663351 01 a 01 bibliotic 0 002 + 05998526 n 0101 \ 05998526 n 0101 | of or relating to bibliotics -02663453 01 a 01 bicapsular 0 002 ;c 06066555 n 0000 \ 11685179 n 0101 | divided into two capsules or having a two-part capsule -02663583 01 a 01 bichromated 0 001 \ 15013764 n 0101 | treated or combined with bichromate -02663676 01 a 01 bicipital 0 002 + 05579239 n 0101 \ 05579239 n 0101 | having two heads or points of origin as a biceps -02663798 01 a 01 bignoniaceous 0 002 + 12813393 n 0101 \ 12813393 n 0101 | of or pertaining to or characteristic of plants of the family Bignoniaceae -02663950 01 a 01 biliary 0 002 + 05406570 n 0101 \ 05385161 n 0101 | relating to the bile ducts or the gallbladder -02664067 01 a 02 bilious 0 biliary 2 004 + 05406570 n 0201 \ 05406570 n 0201 + 05406570 n 0101 \ 05406570 n 0101 | relating to or containing bile -02664215 01 a 01 billiard 0 001 \ 00499924 n 0101 | of or relating to billiards; "a billiard ball"; "a billiard cue"; "a billiard table" -02664354 01 a 02 bimetallistic 0 bimetallic 2 003 \ 13373746 n 0201 + 13373746 n 0101 \ 13373746 n 0101 | pertaining to a monetary system based on two metals; "in a bimetallistic system both gold and silver can constitute legal tender" -02664592 01 a 01 bimillenial 0 002 + 15141375 n 0101 \ 15141375 n 0101 | of or relating to a bimillennium -02664700 01 a 01 binary 0 001 \ 06810020 n 0101 | of or pertaining to a number system have 2 as its base; "a binary digit" -02664825 01 a 01 biocatalytic 0 002 + 14723909 n 0101 \ 14723909 n 0101 | of or relating to biocatalysts -02664932 01 a 01 biochemical 0 002 + 06079620 n 0101 \ 06079620 n 0101 | of or relating to biochemistry; involving chemical processes in living organisms -02665088 01 a 01 bioclimatic 0 001 \ 06119496 n 0101 | of or concerned with the relations of climate and living organisms -02665212 01 a 01 biogenetic 0 002 + 00850260 n 0101 \ 00850260 n 0101 | of or relating to the production of living organisms from other living organisms -02665367 01 a 01 biogenous 0 003 + 13438817 n 0102 + 00850260 n 0101 \ 00850260 n 0101 | producing or produced by living things -02665497 01 a 01 biogenic 0 001 \ 11473488 n 0101 | produced by living organisms or biological processes; "fermentation is a biogenic process" -02665642 01 a 02 biogeographic 0 biogeographical 0 003 + 06066414 n 0201 \ 06066414 n 0201 \ 06066414 n 0101 | of or relating to or involved with biogeography -02665803 01 a 02 biological 0 biologic 0 007 + 11473488 n 0201 + 06037666 n 0201 \ 11473488 n 0201 + 11473488 n 0101 + 07993109 n 0102 + 06037666 n 0101 \ 11473488 n 0101 | pertaining to biology or to life and living things -02666029 01 a 01 biologistic 0 002 + 00411235 n 0101 \ 00411235 n 0101 | of or relating to biologism -02666132 01 a 02 sociobiologic 0 sociobiological 0 004 + 06082972 n 0201 \ 06082972 n 0201 + 06082972 n 0101 \ 06082972 n 0101 | of or relating to sociobiology -02666294 01 a 01 neurobiological 0 002 + 06078511 n 0101 \ 06078511 n 0101 | of or relating to the biological study of the nervous system -02666434 01 a 01 bionic 0 002 + 06126336 n 0101 \ 06126336 n 0101 | of or relating to bionics -02666530 01 a 01 biosynthetic 0 002 + 13438817 n 0101 \ 13438817 n 0101 | of or relating to biosynthesis -02666637 01 a 01 biosystematic 0 002 + 06152973 n 0101 \ 06152973 n 0101 | of or relating to biosystematics -02666747 01 a 01 biotitic 0 002 + 14668743 n 0101 \ 14668743 n 0101 | relating to or involving biotite -02666852 01 a 01 biotypic 0 002 + 07941574 n 0101 \ 07941574 n 0101 | of or relating to a biotype -02666952 01 a 01 black-and-white 0 001 \ 04958634 n 0104 | lacking hue or shades of grey; part white and part black; "a black-and-white cow"; "black-and-white blooms"; "black-and-white stripes" -02667148 01 a 01 blastogenetic 0 003 + 13438979 n 0101 + 05992804 n 0101 \ 13438979 n 0101 | of or relating to blastogenesis -02667275 01 a 01 bodily 1 002 + 05216365 n 0101 \ 05216365 n 0101 | of or relating to or belonging to the body; "a bodily organ"; "bodily functions" -02667426 01 a 01 Bohemian 0 002 + 08758882 n 0101 \ 08758882 n 0101 | of or relating to Bohemia or its language or people -02667550 01 a 01 bolographic 0 001 \ 02865108 n 0102 | of or relating to a bolograph -02667637 01 a 01 bolometric 0 002 + 02865214 n 0101 \ 02865214 n 0101 | of or relating to a bolometer -02667741 01 a 01 Boolean 0 002 + 10857271 n 0101 \ 10857271 n 0101 | of or relating to a combinatorial system devised by George Boole that combines propositions with the logical operators AND and OR and IF THEN and EXCEPT and NOT -02667973 01 a 01 borated 0 001 \ 14669084 n 0101 | mixed or impregnated with borax -02668058 01 a 01 boronic 0 002 + 14631871 n 0101 \ 14631871 n 0101 | of or relating to boron -02668153 01 a 01 boskopoid 0 001 \ 02475478 n 0101 | belonging or relating to or resembling Boskop man -02668258 01 a 02 botanic 0 botanical 0 004 + 06066555 n 0201 \ 06066555 n 0201 + 06066555 n 0101 \ 06066555 n 0101 | of or relating to plants or botany; "botanical garden" -02668432 01 a 03 botryoid 0 botryoidal 0 boytrose 0 003 \ 13144794 n 0301 \ 13144794 n 0201 \ 13144794 n 0101 | resembling a cluster of grapes in form -02668585 01 a 01 Botswanan 0 001 \ 08852389 n 0101 | of or pertaining to Botswana or the people of Botswana -02668695 01 a 01 bottom-dwelling 0 001 \ 01316579 n 0102 | of or relating to fish and marine life that dwell on the bottom of a body of water -02668839 01 a 01 bottom-feeding 0 001 \ 01316579 n 0101 | of or relating to fish and marine life that feed on the bottom of a body of water -02668981 01 a 01 boustrophedonic 0 002 + 06361446 n 0101 \ 06361446 n 0101 | of or relating to writing alternate lines in opposite directions -02669125 01 a 01 brachial 0 001 \ 05563770 n 0101 | of or relating to an arm; "brachial artery" -02669223 01 a 02 brachiopod 0 brachiopodous 0 003 + 02315309 n 0201 \ 02315309 n 0202 \ 02315309 n 0102 | of or belonging to the phylum Brachiopoda -02669373 01 a 01 brachyurous 0 002 + 01976477 n 0101 \ 01976477 n 0102 | of or belonging to the suborder Brachyura -02669490 01 a 01 bracteal 0 002 + 13154841 n 0101 \ 13154841 n 0101 | pertaining to or resembling or functioning as a bract -02669616 01 a 02 bracteate 0 bracted 0 003 \ 13154841 n 0201 ! 02716516 a 0101 \ 13154841 n 0101 | having bracts -02669731 01 a 01 bracteolate 0 001 \ 13155095 n 0101 | having bracteoles -02669806 01 a 02 brahminic 0 brahminical 0 008 + 09872782 n 0202 + 09872557 n 0202 + 08306959 n 0202 \ 09872782 n 0202 + 09872782 n 0102 + 09872557 n 0102 + 08306959 n 0102 \ 09872782 n 0102 | of or relating to or characteristic of a brahmin -02670050 01 a 01 branchial 0 002 + 02510769 n 0102 \ 02510769 n 0102 | of or relating to gills (or to parts of the body derived from embryonic gills) -02670202 01 a 03 branchiopod 0 branchiopodan 0 branchiopodous 0 004 + 01994176 n 0301 \ 01994176 n 0302 \ 01994176 n 0202 \ 01994176 n 0102 | of or relating to or characteristic of the subclass Branchiopoda -02670411 01 a 02 brassy 0 brasslike 0 004 \ 02891788 n 0201 + 08217135 n 0102 + 02891788 n 0101 \ 02891788 n 0101 | resembling the sound of a brass instrument -02670572 01 a 01 breech-loading 0 001 \ 02896856 n 0101 | (of guns) designed to be loaded at the breech -02670678 01 a 01 bregmatic 0 003 ;c 06057539 n 0000 + 05231769 n 0101 \ 05231769 n 0101 | of or relating to the bregma of the skull -02670812 01 a 01 brimless 0 001 \ 02902079 n 0101 | without a brim; "a brimless hat" -02670899 01 a 01 brisant 0 002 + 11412179 n 0101 \ 11412179 n 0101 | of or relating to the power (the shattering effect) of an explosive -02671038 01 a 02 broadband 0 wideband 0 002 \ 06260628 n 0201 \ 06260628 n 0101 | responding to or operating at a wide band of frequencies; "a broadband antenna" -02671202 01 a 01 broadband 1 001 \ 03820728 n 0101 | of or relating to or being a communications network in which the bandwidth can be divided and shared by multiple simultaneous signals (as for voice or data or video) -02671423 01 a 01 Brobdingnagian 0 002 + 05627083 n 0101 \ 05627083 n 0101 | huge; relating to or characteristic of the imaginary country of Brobdingnag -02671577 01 a 01 bromic 0 002 + 14632129 n 0101 \ 14632129 n 0101 | relating to or containing bromine (especially pentavalent bromine) -02671714 01 a 01 bromidic 0 001 \ 07154046 n 0105 | given to uttering bromides -02671795 01 a 01 buccal 0 001 \ 05602835 n 0101 | of or relating to or toward the cheek -02671885 01 a 01 bulimic 0 004 + 09836057 n 0101 + 14057001 n 0101 + 14039828 n 0101 \ 14039828 n 0101 | suffering from bulimia -02672015 01 a 01 burrlike 0 001 \ 12036368 n 0102 | resembling a burr; especially in being prickly -02672116 01 a 01 bursal 0 002 + 05516554 n 0101 \ 05516554 n 0101 | relating to or affecting a bursa -02672219 01 a 01 buteonine 0 002 + 01607309 n 0101 \ 01607103 n 0102 | relating to or resembling a hawk of the genus Buteo -02672344 01 a 01 butyraceous 0 002 + 07848338 n 0101 \ 14787707 n 0101 | having the qualities of butter or yielding or containing a substance like butter -02672500 01 a 01 butyric 0 001 \ 14788332 n 0101 | relating to or producing butyric acid -02672591 01 a 01 cachectic 0 003 + 14548105 n 0102 + 14548105 n 0101 \ 14548105 n 0101 | relating to or having the symptoms of cachexia -02672729 01 a 02 cacodemonic 0 cacodaemonic 0 004 + 09542541 n 0202 \ 09542541 n 0201 + 09542541 n 0101 \ 09542541 n 0101 | of or relating to evil spirits -02672886 01 a 01 cacodylic 0 004 ;c 06084469 n 0000 + 14788875 n 0101 + 14788714 n 0101 \ 14788714 n 0102 | of or relating to cacodyl -02673022 01 a 01 cadastral 0 002 + 06502192 n 0102 \ 06502192 n 0102 | of or relating to the records of a cadastre -02673139 01 a 02 cadaverous 0 cadaveric 0 004 + 05218119 n 0201 \ 05218119 n 0201 + 05218119 n 0101 \ 05218119 n 0101 | of or relating to a cadaver or corpse; "we had long anticipated his cadaverous end" -02673345 01 a 01 caducean 0 002 + 06884520 n 0101 \ 06884520 n 0101 | of or relating to a caduceus -02673446 01 a 01 caecilian 0 003 + 01655344 n 0101 + 01655116 n 0101 \ 01655116 n 0102 | of or relating to or belonging to the family Caeciliidae -02673594 01 a 01 caesural 0 003 + 15271732 n 0101 + 07085072 n 0101 \ 07085072 n 0101 | of or relating to a caesura -02673712 01 a 01 caffeinic 0 002 + 14761122 n 0102 \ 14761122 n 0102 | of or containing caffein -02673810 01 a 01 cairned 0 001 \ 07273802 n 0101 | marked by cairns -02673880 01 a 01 calcaneal 0 001 \ 05274808 n 0102 | relating to the heel bone or heel -02673969 01 a 02 calcareous 0 chalky 0 003 + 03003091 n 0201 \ 14936905 n 0201 \ 14936905 n 0101 | composed of or containing or resembling calcium carbonate or calcite or chalk -02674148 01 a 02 calceolate 0 calceiform 0 002 \ 02938218 n 0201 \ 02938218 n 0101 | of slipper-shaped blossoms; "the calceiform lip of certain orchids" -02674303 01 a 01 calcic 0 001 \ 14632648 n 0101 | derived from or containing calcium or lime -02674398 01 a 01 calciferous 0 001 \ 14632648 n 0101 | bearing or producing or containing calcium or calcium carbonate or calcite -02674530 01 a 01 calcitic 0 002 + 14935751 n 0101 \ 14935751 n 0101 | of or relating to or containing calcite -02674642 01 a 01 calculous 0 002 + 09230768 n 0101 \ 09230768 n 0101 | relating to or caused by or having a calculus or calculi -02674772 01 a 02 calendric 0 calendrical 0 005 + 02939565 n 0201 \ 15173479 n 0201 + 15173479 n 0101 + 08266849 n 0101 \ 15173479 n 0101 | relating to or characteristic of or used in a calendar or time measurement; "calendric systems"; "solstice is a time of calendric importance" -02675055 01 a 01 calico 0 001 \ 02939763 n 0101 | made of calico or resembling calico in being patterned; "calico dresses"; "a calico cat" -02675196 01 a 01 calisthenic 0 003 + 00627437 n 0101 + 00627664 n 0101 \ 00627664 n 0101 | of or relating to calisthenics -02675320 01 a 01 callithumpian 0 003 + 08428623 n 0101 + 07054122 n 0104 \ 08428623 n 0101 | of or relating to a callithump -02675446 01 a 01 caloric 2 002 + 13726562 n 0101 \ 13726562 n 0105 | of or relating to calories in food; "comparison of foods on a caloric basis"; "the caloric content of foods" -02675626 01 a 01 noncaloric 0 001 \ 13726562 n 0105 | of food have no (or few) calories; "a noncaloric drink" -02675738 01 a 01 calorimetric 0 002 + 01001814 n 0101 \ 01001814 n 0101 | of or relating to the measurement of heat -02675856 01 a 03 calyceal 0 calycine 0 calycinal 0 005 ;c 06066555 n 0000 \ 11691523 n 0301 \ 11691523 n 0201 + 11691523 n 0101 \ 11691523 n 0101 | of or relating to or resembling a calyx -02676046 01 a 02 calycular 0 calicular 0 004 + 02155448 n 0201 \ 02155448 n 0201 + 02155448 n 0101 \ 02155448 n 0101 | relating to or resembling a calyculus -02676205 01 a 02 calyculate 0 calycled 0 002 \ 02155448 n 0201 \ 02155448 n 0101 | having a calyculus -02676309 01 a 01 calyptrate 1 001 \ 11532547 n 0101 | having a calyptra -02676383 01 a 01 calyptrate 2 001 \ 02190465 n 0102 | having calypters -02676456 01 a 01 cambial 0 004 ;c 06066555 n 0000 + 13097338 n 0101 + 05286412 n 0101 \ 13097338 n 0101 | of or relating to or functioning as a cambium -02676610 01 a 03 campanulate 0 campanular 0 campanulated 0 004 \ 13886260 n 0303 + 13886260 n 0203 \ 13886260 n 0203 \ 13886260 n 0103 | shaped like a bell or campana; "campanulate flowers of the genus Campanula" -02676825 01 a 01 camphoraceous 0 002 + 14790979 n 0101 \ 14790979 n 0101 | being or having the properties of camphor; "camphoraceous odor" -02676966 01 a 01 camphoric 0 002 + 14790979 n 0101 \ 14790979 n 0101 | relating to or derived from or containing camphor; "camphoric liniments" -02677112 01 a 01 canalicular 0 002 + 05251655 n 0101 \ 05251655 n 0101 | relating to or like or having a canaliculus -02677231 01 a 01 cancroid 0 002 + 14242788 n 0101 \ 14242788 n 0101 | of or relating to a cancroid -02677332 01 a 01 canicular 0 003 + 09435965 n 0103 + 15237567 n 0102 \ 09435965 n 0103 | relating to or especially immediately preceding or following the heliacal rising of Canicula (the Dog Star); "canicular days" -02677549 01 a 01 canicular 2 002 + 15237567 n 0102 \ 15237567 n 0102 | of or relating to the dog days of summer; "the canicular heat of the Deep South" -02677703 01 a 01 canine 0 003 ;c 06083243 n 0000 + 02083346 n 0101 \ 02083038 n 0101 | of or relating to or characteristic of members of the family Canidae -02677861 01 a 02 canine 2 laniary 0 003 \ 05307091 n 0201 + 05307091 n 0101 \ 05307091 n 0101 | of or relating to a pointed conical tooth -02678001 01 a 01 capacitive 0 001 \ 11433546 n 0101 | of or relating to capacitance -02678087 01 a 01 Capetian 0 002 + 10891271 n 0101 \ 08154213 n 0101 | of or relating to the French dynasty founded by Hugh Capet -02678218 01 a 02 capitular 0 capitulary 0 002 \ 08228838 n 0201 \ 08228838 n 0101 | of or pertaining to an ecclesiastical chapter; "capitular estates" -02678371 01 a 01 Cappadocian 0 002 + 08701161 n 0101 \ 08701161 n 0101 | of or pertaining to Cappadocia or its people or culture -02678502 01 a 01 caprine 0 001 \ 02416519 n 0101 | being or pertaining to or resembling a goat or goats; "caprine creatures"; "a caprine strain of virus"; "a caprine voice" -02678677 01 a 01 capsular 0 006 ;c 06066555 n 0000 + 11685179 n 0101 + 05317191 n 0101 + 02957755 n 0101 + 02957586 n 0101 \ 11685179 n 0101 | of or relating to a capsule -02678850 01 a 01 capsular 2 002 ;c 06057539 n 0000 \ 05317191 n 0101 | resembling a capsule; "the capsular ligament is a sac surrounding the articular cavity of a freely movable joint and attached to the bones" -02679063 01 a 01 carangid 0 003 ;c 06083243 n 0000 + 02576223 n 0102 \ 02575766 n 0101 | of or relating to fish of the family Carangidae -02679202 01 a 01 carbocyclic 0 002 ;c 06084469 n 0000 \ 14633206 n 0101 | having or relating to or characterized by a ring composed of carbon atoms -02679352 01 a 01 carbolated 0 002 ;c 06084469 n 0000 \ 14796073 n 0101 | containing or treated with carbolic acid -02679468 01 a 02 carbonyl 0 carbonylic 0 005 ;c 06084469 n 0000 + 14790526 n 0201 \ 14790693 n 0201 + 14790526 n 0101 \ 14790693 n 0101 | relating to or containing the carbonyl group -02679653 01 a 02 carboxyl 0 carboxylic 0 005 ;c 06084469 n 0000 + 14790796 n 0201 \ 14790796 n 0202 + 14790796 n 0101 \ 14790796 n 0102 | relating to or containing the carboxyl group or carboxyl radical -02679858 01 a 01 carcinogenic 0 002 + 14793812 n 0101 \ 14242337 n 0101 | causing or tending to cause cancer; "the carcinogenic action of certain chemicals" -02680017 01 a 01 carcinomatous 0 002 + 14242337 n 0101 \ 14242337 n 0101 | being or relating to carcinoma; "a carcinomatous lesion" -02680151 01 a 01 cardiographic 0 001 \ 02963503 n 0101 | of or relating to a cardiograph -02680242 01 a 02 cardiopulmonary 0 cardiorespiratory 0 004 \ 05388805 n 0201 \ 00830811 n 0201 \ 05388805 n 0101 \ 05387544 n 0101 | of or pertaining to or affecting both the heart and the lungs and their functions; "cardiopulmonary resuscitation" -02680492 01 a 01 carinal 0 001 \ 05227209 n 0101 | relating to or resembling a carina -02680580 01 a 01 carnivorous 0 001 \ 02075296 n 0101 | relating to or characteristic of carnivores; "the lion and other carnivorous animals" -02680723 01 a 02 Caroline 0 Carolean 0 007 + 10892786 n 0201 + 10892564 n 0201 \ 10892564 n 0202 \ 10892786 n 0202 \ 10892564 n 0102 \ 10892786 n 0102 \ 10891981 n 0101 | of or relating to the life and times of kings Charles I or Charles II of England -02680977 01 a 01 Carolingian 0 003 + 10891981 n 0103 \ 08154363 n 0101 \ 08154363 n 0102 | of or relating to the Frankish dynasty founded by Charlemagne's father -02681141 01 a 01 carotid 0 001 \ 05339357 n 0101 | of or relating to either of the two major arteries supplying blood to the head and neck -02681282 01 a 01 carpellary 0 002 + 11677743 n 0101 \ 11677743 n 0101 | belonging to or forming or containing carpels -02681402 01 a 01 carpetbag 0 001 \ 09896973 n 0101 | following the practices or characteristic of carpetbaggers; "carpetbag adventurers"; "a carpetbag government" -02681567 01 a 01 carposporic 0 002 + 11548728 n 0101 \ 11548728 n 0101 | relating to or resembling a carpospore -02681681 01 a 01 carposporous 0 002 + 11548728 n 0101 \ 11548728 n 0101 | having carpospores -02681776 01 a 01 cartilaginous 0 002 + 05288091 n 0101 \ 05288091 n 0101 | of or relating to cartilage -02681881 01 a 02 cartographic 0 cartographical 0 003 + 00924579 n 0202 \ 00924579 n 0202 \ 00924579 n 0102 | of or relating to the making of maps or charts -02682039 01 a 01 Carthusian 0 001 \ 08149004 n 0101 | of or relating to the Carthusian order -02682134 01 a 02 caruncular 0 carunculous 0 005 + 05471181 n 0201 \ 05471181 n 0201 + 05471181 n 0102 + 05471181 n 0101 \ 05471181 n 0101 | resembling a caruncle -02682298 01 a 02 carunculate 0 carunculated 0 002 \ 05471181 n 0201 \ 05471181 n 0101 | having a caruncle -02682406 01 a 01 caryophyllaceous 0 002 + 11804604 n 0101 \ 11804604 n 0101 | of or pertaining to plants of the family Caryophyllaceae -02682543 01 a 01 cash-and-carry 0 001 \ 13386465 n 0101 | sold for cash and the customer carries it away (no delivery service); "cash-and-carry business" -02682699 01 a 02 catabolic 0 katabolic 0 004 + 13443787 n 0201 \ 13443787 n 0201 + 13443787 n 0101 \ 13443787 n 0101 | relating to or characterized by catabolism -02682863 01 a 02 catachrestic 0 catachrestical 0 004 + 07102034 n 0201 \ 07102034 n 0201 + 07102034 n 0101 \ 07102034 n 0101 | constituting or characterized by or given to catachresis -02683049 01 a 01 catalatic 0 002 + 14737639 n 0101 \ 14737639 n 0101 | of or relating to the enzyme catalase -02683160 01 a 01 cataphatic 0 001 \ 05942338 n 0101 | of or relating to the religious belief that God can be known to humans positively or affirmatively -02683315 01 a 01 cataplastic 0 002 + 07428257 n 0101 \ 07428257 n 0101 | of or relating to cataplasia -02683419 01 a 02 catapultic 0 catapultian 0 007 + 02982232 n 0201 + 02981911 n 0201 \ 02981911 n 0201 + 02982232 n 0101 + 04240097 n 0103 + 02981911 n 0101 \ 02981911 n 0101 | of or like a catapult; "a catapultic kind of action" -02683650 01 a 01 catarrhal 0 002 + 14339772 n 0101 \ 14339772 n 0101 | of or relating to a catarrh; "catarrhal fever is any of several respiratory or oral diseases of livestock such as bluetongue in horses and sheep" -02683869 01 a 01 categorial 0 003 + 07997703 n 0102 + 05838765 n 0101 \ 05838765 n 0101 | of or relating to the concept of categories -02684005 01 a 02 categorical 0 categoric 0 005 + 07997703 n 0202 \ 07997703 n 0202 + 07997703 n 0102 + 05838765 n 0101 \ 07997703 n 0102 | relating to or included in a category or categories -02684198 01 a 01 cathectic 0 003 ;c 00704305 n 0000 + 09185612 n 0101 \ 09185612 n 0101 | of or relating to cathexis -02684317 01 a 01 cathedral 0 002 + 02983904 n 0101 \ 02983904 n 0101 | relating to or containing or issuing from a bishop's office or throne; "a cathedral church" -02684482 01 a 01 catkinate 0 001 \ 11674798 n 0101 | resembling a catkin -02684557 01 a 02 catoptric 0 catoptrical 0 004 + 06101180 n 0201 \ 06101180 n 0201 + 06101180 n 0101 \ 06101180 n 0101 | of or relating to catoptrics; produced by or based on mirrors -02684742 01 a 02 cecal 0 caecal 0 004 + 05536370 n 0202 \ 05536370 n 0201 + 05536370 n 0101 \ 05536370 n 0101 | of or like a cecum -02684875 01 a 01 celebratory 0 002 + 02490877 v 0101 \ 07450651 n 0101 | used for celebrating -02684971 01 a 02 celestial 0 heavenly 0 003 + 05627785 n 0201 \ 05627785 n 0201 \ 05627785 n 0101 | relating to or inhabiting a divine heaven; "celestial beings"; "heavenly hosts" -02685153 01 a 02 celestial 1 heavenly 1 002 \ 09436708 n 0201 \ 09436708 n 0101 | of or relating to the sky; "celestial map"; "a heavenly body" -02685299 01 a 01 cellular 0 008 ;c 06037666 n 0000 + 08358594 n 0101 + 02991711 n 0101 + 02991555 n 0101 + 02991302 n 0101 + 02991048 n 0101 + 00006484 n 0101 \ 00006484 n 0101 | relating to cells; "cellular walls"; "cellular physiology" -02685539 01 a 01 extracellular 0 003 ;c 06037666 n 0000 ! 02686159 a 0101 \ 00006484 n 0101 | located or occurring outside a cell or cells; "extracellular fluid" -02685703 01 a 01 integral 0 001 \ 13728499 n 0101 | of or denoted by an integer -02685785 01 a 02 integumentary 0 integumental 0 004 + 05239243 n 0201 \ 05239243 n 0201 + 05239243 n 0101 \ 05239243 n 0101 | of or relating to the integument -02685946 01 a 01 intercellular 0 002 ;c 06037666 n 0000 \ 00006484 n 0101 | located between cells -02686046 01 a 01 interest-bearing 0 001 \ 13318584 n 0101 | of financial obligations on which interest is paid -02686159 01 a 01 intracellular 0 003 ;c 06037666 n 0000 ! 02685539 a 0101 \ 00006484 n 0101 | located or occurring within a cell or cells; "intracellular fluid" -02686322 01 a 01 cellulosid 0 001 \ 14793921 n 0101 | of or containing or made from cellulose; "cellulosic fibers" -02686439 01 a 01 cementitious 0 003 + 14704640 n 0101 + 14804175 n 0101 \ 14804175 n 0101 | like or relevant to or having the properties of cement; "the adhesion of cementitious materials" -02686630 01 a 04 cenobitic 0 coenobitic 0 cenobitical 0 coenobitical 0 009 + 10519291 n 0402 \ 10519291 n 0401 + 10519291 n 0301 \ 10519291 n 0301 + 10519291 n 0202 \ 10519291 n 0201 + 10519291 n 0101 ! 02686950 a 0101 \ 10519291 n 0101 | of or relating to or befitting cenobites or their practices of communal living -02686950 01 a 02 eremitic 0 eremitical 0 005 + 10518945 n 0201 \ 10518945 n 0201 + 10518945 n 0101 ! 02686630 a 0101 \ 10518945 n 0101 | of or relating to or befitting eremites or their practices of hermitic living; "eremitic austerities" -02687191 01 a 01 cenogenetic 0 004 ;c 06037666 n 0000 + 13444940 n 0101 ! 02687434 a 0101 \ 13444940 n 0101 | of or relating to cenogenesis -02687333 01 a 01 Cenozoic 0 001 \ 15124361 n 0101 | of or relating to or denoting the Cenozoic era -02687434 01 a 01 palingenetic 0 004 ;c 06037666 n 0000 + 13531652 n 0101 ! 02687191 a 0101 \ 13531652 n 0101 | of or relating to palingenesis -02687578 01 a 01 censorial 0 003 + 09903936 n 0101 + 09903639 n 0101 \ 09903639 n 0101 | belonging or relating to a censor or a censor's functions -02687727 01 a 01 centesimal 0 001 \ 13739051 n 0102 | relating to or divided into hundredths -02687822 01 a 01 centigrade(ip) 0 001 \ 13852600 n 0103 | of or relating to a temperature scale on which the freezing point of water is 0 degrees and the boiling point of water is 100 degrees -02688016 01 a 02 centralist 0 centralistic 0 002 \ 01237872 n 0201 \ 01237872 n 0101 | advocating centralization -02688131 01 a 01 centroidal 0 002 + 08523217 n 0101 \ 08523217 n 0101 | of or relating to (especially passing through) a centroid -02688263 01 a 01 centrosomic 0 002 + 05446767 n 0101 \ 05446767 n 0101 | of or relating to a centrosome -02688369 01 a 02 cephalopod 0 cephalopodan 0 003 \ 01968115 n 0201 + 01968315 n 0101 \ 01968115 n 0101 | relating or belonging to the class Cephalopoda -02688523 01 a 01 cercarial 0 002 + 01925916 n 0101 \ 01925916 n 0101 | of or relating to cercaria -02688623 01 a 01 cereal 0 004 + 12141495 n 0101 + 07802417 n 0103 + 07702796 n 0101 \ 12156819 n 0101 | made of grain or relating to grain or the plants that produce it; "a cereal beverage"; "cereal grasses" -02688833 01 a 01 cerebellar 0 002 + 05485554 n 0101 \ 05485554 n 0101 | relating to or associated with the cerebellum; "cerebellar artery" -02688974 01 a 01 cerebral 0 001 \ 05491993 n 0101 | of or relating to the cerebrum or brain; "cerebral hemisphere"; "cerebral activity" -02689112 01 a 01 cerebrospinal 0 002 \ 05503705 n 0101 \ 05481095 n 0101 | of or relating to the brain and spinal cord; "cerebrospinal fluid" -02689256 01 a 01 cerebrovascular 0 002 \ 05417975 n 0101 \ 05481095 n 0101 | of or relating to the brain and the blood vessels that supply it; "a cerebrovascular accident" -02689430 01 a 01 cervical 0 002 + 05546540 n 0102 \ 05546540 n 0101 | relating to or associated with the neck -02689542 01 a 01 ceric 0 001 \ 14633957 n 0101 | of or relating to or containing cerium especially with valence 4 -02689658 01 a 01 cerous 0 002 + 14633957 n 0101 \ 14633957 n 0101 | of or relating to or containing cerium with valence 3 -02689782 01 a 01 ceruminous 0 002 + 15095103 n 0101 \ 15095103 n 0101 | relating to or secreting cerumen -02689889 01 a 01 cervine 0 001 \ 02430045 n 0101 | relating to or resembling deer -02689973 01 a 02 cetacean 0 cetaceous 0 005 + 02062209 n 0201 \ 02062209 n 0201 + 02062430 n 0101 + 02062209 n 0101 \ 02062209 n 0101 | of or relating to whales and dolphins etc -02690153 01 a 01 chaetal 0 002 + 01901694 n 0101 \ 01901694 n 0101 | of or relating to chaetae (setae or bristles) -02690270 01 a 02 chaetognathan 0 chaetognathous 0 004 + 01923637 n 0201 \ 01923637 n 0201 + 01923637 n 0101 \ 01923637 n 0101 | of or relating to arrowworms -02690429 01 a 02 chaffy 0 chafflike 0 004 \ 14805899 n 0201 + 14805899 n 0101 + 02999001 n 0101 \ 14805899 n 0101 | abounding in or covered with or resembling or consisting of chaff -02690613 01 a 03 Chaldean 0 Chaldaean 0 Chaldee 0 010 + 09640327 n 0303 \ 08917881 n 0301 + 09640327 n 0202 + 08917503 n 0203 + 08917881 n 0201 \ 08917881 n 0201 + 09640327 n 0101 + 08917503 n 0103 + 08917881 n 0101 \ 08917881 n 0101 | of or relating to ancient Chaldea or its people or language or culture -02690922 01 a 01 chalybeate 0 001 \ 14642417 n 0101 | containing or impregnated with or tasting of iron -02691028 01 a 01 chancroidal 0 002 + 14212303 n 0101 \ 14212303 n 0101 | of or relating to or having chancroids -02691142 01 a 01 chancrous 0 002 + 14184067 n 0101 \ 14184067 n 0101 | of or having chancres -02691237 01 a 01 chaotic 0 003 + 06246529 n 0101 \ 06246529 n 0101 ;c 06090869 n 0101 | of or relating to a sensitive dependence on initial conditions -02691390 01 a 01 charitable 0 002 + 04832050 n 0101 \ 01089635 n 0101 | relating to or characterized by charity; "a charitable foundation" -02691531 01 a 03 chartaceous 0 papery 0 paperlike 0 004 \ 14974264 n 0301 + 14974264 n 0201 \ 14974264 n 0201 \ 14974264 n 0101 | of or like paper -02691680 01 a 01 chauvinistic 0 002 + 09912075 n 0101 \ 09911849 n 0101 | of or relating to persons convinced of the superiority of their own gender or kind -02691839 01 a 01 Chechen 0 001 \ 09004625 n 0101 | of or relating to Chechnya or its people or culture -02691944 01 a 01 chelate 1 001 \ 02156532 n 0102 | having or resembling chelae or claws -02692034 01 a 01 cheliferous 0 001 \ 02156532 n 0102 | having chelae -02692105 01 a 02 chelate 2 chelated 0 002 \ 13445831 n 0201 \ 13445831 n 0101 | relating to or characterized by chelation -02692229 01 a 02 cheliceral 0 chelicerate 0 003 \ 01768596 n 0201 + 01768596 n 0101 \ 01768596 n 0101 | of or relating to or resembling chelicerae -02692378 01 a 01 chelicerous 0 002 + 01768596 n 0101 \ 01768596 n 0101 | having chelicerae -02692471 01 a 01 chelonian 0 003 + 01662622 n 0101 + 01662274 n 0101 \ 01662274 n 0101 | of or relating to or resembling or being a turtle or tortoise -02692624 01 a 02 chemical 0 chemic 0 004 + 06084469 n 0201 \ 06084469 n 0201 + 06084469 n 0101 \ 06084469 n 0101 | relating to or used in chemistry; "chemical engineer"; "chemical balance" -02692815 01 a 01 photochemical 0 002 + 06090397 n 0101 \ 06090397 n 0101 | of or relating to or produced by the effects of light on chemical systems -02692966 01 a 01 chemical 1 003 + 14806838 n 0101 + 06084469 n 0101 \ 14806838 n 0101 | of or made from or using substances produced by or used in reactions involving atomic or molecular changes; "chemical fertilizer" -02693186 01 a 01 physicochemical 0 001 \ 06089447 n 0101 | relating to physical chemistry -02693278 01 a 01 chemiluminescent 0 002 + 11476767 n 0101 \ 11476767 n 0101 | relating to the phenomenon of chemiluminescence; "fireflies are chemiluminescent" -02693440 01 a 01 chemoreceptive 0 001 \ 05300231 n 0101 | of or relating to chemoreceptors -02693533 01 a 02 chemotherapeutic 0 chemotherapeutical 0 004 + 00662340 n 0201 \ 00662340 n 0201 + 00662340 n 0101 \ 00662340 n 0101 | of or relating to chemotherapy -02693701 01 a 01 cherty 0 002 + 14870525 n 0101 \ 14870525 n 0101 | resembling or containing chert -02693802 01 a 01 Chian 0 002 + 08782976 n 0101 \ 08782976 n 0101 | of or relating to Chios -02693895 01 a 03 chiasmal 0 chiasmic 0 chiasmatic 0 007 ;c 06057539 n 0000 + 05228496 n 0302 \ 05228496 n 0301 + 05228496 n 0202 \ 05228496 n 0201 + 05228496 n 0102 \ 05228496 n 0101 | of or relating to a chiasm -02694109 01 a 01 childbearing 0 002 + 13448334 n 0102 \ 13448334 n 0101 | relating to or suitable for childbirth; "of childbearing age" -02694247 01 a 03 chimeric 0 chimerical 0 chimeral 0 007 + 09493562 n 0301 + 05769314 n 0301 \ 09493562 n 0301 + 09493562 n 0201 \ 09493562 n 0201 + 05769314 n 0101 \ 09493562 n 0101 | being or relating to or like a chimera; "his Utopia is not as chimeric commonwealth but a practical improvement on what already exists"- Douglas Bush -02694583 01 a 01 Chippendale 0 001 \ 10896046 n 0101 | of or relating to an 18th-century style of furniture made by Thomas Chippendale; graceful outlines and Greek motifs and massive rococo carvings -02694784 01 a 01 chirpy 0 004 + 07379409 n 0101 \ 07379409 n 0101 ;c 01503061 n 0101 ;c 02159955 n 0101 | (birds or insects) characterized by or tending to chirp -02694948 01 a 01 chitinous 0 002 + 14732722 n 0101 \ 14732722 n 0101 | of or resembling chitin -02695045 01 a 01 chlamydial 0 004 + 14175579 n 0101 + 01372709 n 0101 \ 14175579 n 0101 \ 01372709 n 0101 | of or pertaining to the sexually transmitted infection or to the parasite -02695229 01 a 02 chlorophyllose 0 chlorophyllous 0 003 + 01398212 n 0201 \ 01398212 n 0201 \ 01398212 n 0101 | relating to or being or containing chlorophyll -02695389 01 a 02 chlorotic 0 greensick 0 002 \ 14166775 n 0202 \ 14166775 n 0101 | of or pertaining to or suffering from chlorosis -02695522 01 a 01 choleraic 0 002 + 14129579 n 0101 \ 14129579 n 0101 | relating to or resulting from or resembling cholera -02695647 01 a 01 choragic 0 002 + 09920106 n 0101 \ 09920106 n 0101 | pertaining to or characteristic of a choragus -02695765 01 a 01 chordal 0 002 + 06869951 n 0101 \ 06869951 n 0101 | relating to or consisting of or emphasizing chords; "chordal assonance in modern music"; "chordal rather than contrapuntal music" -02695966 01 a 01 chordate 0 002 + 01466257 n 0101 \ 01465994 n 0101 | of or relating to or characteristic of the Chordata -02696090 01 a 01 Christological 0 004 + 06187013 n 0101 + 06184574 n 0101 \ 06184574 n 0101 \ 06187013 n 0101 | of or relating to Christology -02696234 01 a 01 chromatinic 0 003 + 05436080 n 0101 ! 02696638 a 0101 \ 05436080 n 0101 | (of substance of a cell nucleus) readily colored by stains -02696386 01 a 01 Churchillian 0 002 + 10897312 n 0101 \ 10897312 n 0101 | of or relating to or suggestive of Winston Churchill -02696515 01 a 01 Wilsonian 0 002 + 11390855 n 0101 \ 11390855 n 0101 | of or relating to or suggestive of Woodrow Wilson -02696638 01 a 01 achromatinic 0 003 + 05436381 n 0101 ! 02696234 a 0101 \ 05436381 n 0101 | (of substance of a cell nucleus) not readily colored by stains -02696795 01 a 01 cinematic 0 002 + 06262567 n 0102 \ 06262567 n 0102 | of or pertaining to or characteristic of the cinema -02696920 01 a 02 civil 0 civic 2 002 \ 09923673 n 0201 \ 09923673 n 0101 | of or relating to or befitting citizens as individuals; "civil rights"; "civil liberty"; "civic duties"; "civic pride" -02697116 01 a 01 civil 1 001 \ 08168978 n 0101 | of or occurring within the state or between or among citizens of the state; "civil affairs"; "civil strife"; "civil disobedience"; "civil branches of government" -02697329 01 a 01 civic 0 001 \ 08540903 n 0101 | of or relating or belonging to a city; "civic center"; "civic problems" -02697452 01 a 01 municipal 0 002 + 08626283 n 0101 \ 08225581 n 0101 | relating or belonging to or characteristic of a municipality; "municipal government"; "municipal bonds"; "a municipal park"; "municipal transportation" -02697677 01 a 01 clamatorial 0 002 + 01547143 n 0101 \ 01547143 n 0101 | of or relating to Clamatores -02697781 01 a 02 cleistogamous 0 cleistogamic 0 002 \ 07439167 n 0201 \ 07439167 n 0101 | exhibiting or relating to cleistogamy -02697911 01 a 01 clerical 0 002 + 08152787 n 0101 \ 08152787 n 0101 | of or relating to the clergy; "clerical collar" -02698031 01 a 01 clerical 1 002 + 09928451 n 0101 \ 09928451 n 0101 | of or relating to clerks; "clerical work" -02698145 01 a 01 classical 0 001 \ 06170371 n 0101 | of or relating to the study of the literary works of ancient Greece and Rome; " a classical scholar" -02698301 01 a 01 clonal 0 001 \ 07940242 n 0101 | of or relating to a clone -02698379 01 a 01 closed-circuit 0 001 \ 03048883 n 0101 | relating to or consisting of a closed circuit; "closed-circuit television" -02698514 01 a 02 cloven-hoofed 0 cloven-footed 0 002 \ 02154264 n 0201 \ 02154264 n 0102 | of or relating to the cloven feet of ruminants or swine -02698663 01 a 01 cloze 0 001 \ 05741139 n 0101 | based on or being a test of reading skill using the cloze procedure -02698782 01 a 01 coastal 0 002 + 09428293 n 0102 \ 09428293 n 0102 | of or relating to a coast; "coastal erosion" -02698898 01 a 01 coccal 0 002 + 01350855 n 0101 \ 01350855 n 0101 | of or pertaining to or resembling a coccus -02699011 01 a 01 coccygeal 0 002 + 05274247 n 0101 \ 05274247 n 0101 | of or relating to or near the coccyx -02699121 01 a 01 coin-operated 0 001 \ 04243941 n 0102 | of devices that do not operate without the prior insertion of one or more coins; "a coin-operated telephone" -02699289 01 a 02 collagenous 0 collagenic 0 004 + 05287090 n 0201 \ 05287090 n 0201 + 05287090 n 0101 \ 05287090 n 0101 | relating to or consisting of collagen -02699451 01 a 01 collarless 0 001 \ 03068181 n 0101 | without a collar -02699524 01 a 02 collegiate 0 collegial 2 005 + 08278324 n 0201 + 08278169 n 0201 + 03069752 n 0201 \ 08278169 n 0201 \ 08278169 n 0101 | of or resembling or typical of a college or college students; "collegiate living"; "collegiate attitudes"; "collegiate clothes" -02699792 01 a 01 collegial 0 002 + 09936215 n 0101 \ 09935990 n 0101 | characterized by or having authority vested equally among colleagues; "collegial harmony"; "a tendency to turn from collegial to one-man management"- Merle Fainsod -02700029 01 a 01 colonial 0 004 + 09937688 n 0101 + 08499840 n 0101 + 08374049 n 0101 \ 08374049 n 0101 | of or relating to or characteristic of or inhabiting a colony -02700199 01 a 01 colonial 1 002 + 07995856 n 0101 \ 07995856 n 0101 | of animals who live in colonies, such as ants -02700317 01 a 01 colonic 0 003 + 00696147 n 0102 + 05535869 n 0101 \ 05535869 n 0101 | of or relating to the colon -02700434 01 a 01 colorectal 0 002 \ 05535869 n 0101 \ 05537806 n 0101 | relating to or affecting the colon and the rectum; "most colorectal cancers arise from adenomatous polyps" -02700615 01 a 02 colorimetric 0 colorimetrical 0 005 + 00647536 n 0201 \ 00647536 n 0201 + 00647536 n 0101 + 03071552 n 0101 \ 00647536 n 0101 | of or relating to colorimetry -02700792 01 a 01 commensal 0 003 ;c 06037666 n 0000 + 01386182 n 0101 \ 13842241 n 0101 | living in a state of commensalism -02700918 01 a 01 communal 2 002 + 02295979 v 0101 \ 08541609 n 0101 | relating to a small administrative district or community; "communal elections in several European countries" -02701099 01 a 01 composite 0 003 ;c 06066555 n 0000 + 11915214 n 0101 \ 11911591 n 0102 | of or relating to or belonging to the plant family Compositae -02701253 01 a 01 conceptualistic 0 002 + 05969537 n 0101 \ 05969537 n 0101 | involving or characteristic of conceptualism -02701377 01 a 01 concretistic 0 002 + 05941037 n 0101 \ 05941037 n 0101 | of or relating to concrete representations of abstractions; "a concretistic-seeming statement" -02701548 01 a 01 condylar 0 002 + 05471629 n 0101 \ 05471629 n 0101 | of or relating to or resembling a condyle -02701662 01 a 01 configurational 0 001 \ 05731779 n 0101 | of or relating to or characterized by configuration -02701775 01 a 01 confrontational 0 004 + 07181713 n 0101 + 07231728 n 0101 + 07181043 n 0101 \ 01169744 n 0101 | of or relating to confrontation -02701922 01 a 01 congregational 0 001 \ 07991364 n 0101 | relating to or conducted or participated in by a congregation; "congregational membership"; "congregational singing" -02702099 01 a 01 conjunctival 0 002 + 05315095 n 0101 \ 05315095 n 0101 | of or relating to the conjunctiva -02702209 01 a 01 consonantal 0 002 + 07115021 n 0101 \ 07115021 n 0101 | relating to or having the nature of a consonant -02702332 01 a 01 constitutional 0 001 \ 04933544 n 0101 | of benefit to or intended to benefit your physical makeup; "constitutional walk" -02702473 01 a 01 consubstantial 0 003 ;c 06184270 n 0000 + 06188292 n 0101 \ 06188292 n 0101 | regarded as the same in substance or essence (as of the three persons of the Trinity) -02702656 01 a 01 contractual 0 002 + 06520944 n 0101 \ 06520944 n 0101 | relating to or part of a binding legal agreement; "contractual obligations" -02702807 01 a 01 cosmic 0 002 + 09466280 n 0105 \ 09466280 n 0105 | of or from or pertaining to or characteristic of the cosmos or universe; "cosmic laws"; "cosmic catastrophe"; "cosmic rays" -02703001 01 a 02 cosmologic 1 cosmological 1 004 + 06163223 n 0201 \ 06163223 n 0201 + 06163223 n 0101 \ 06163223 n 0101 | pertaining to the branch of philosophy dealing with the elements and laws and especially the characteristics of the universe such as space and time and causality; "cosmologic philosophy"; "a cosmological argument is an argument that the universe demands the admission of an adequate external cause which is God" -02703438 01 a 05 cosmologic 0 cosmological 0 cosmogonic 0 cosmogonical 0 cosmogenic 0 009 \ 06098195 n 0503 + 06098195 n 0402 \ 06098195 n 0402 + 06098195 n 0302 \ 06098195 n 0302 + 06098195 n 0201 \ 06098195 n 0201 + 06098195 n 0101 \ 06098195 n 0101 | pertaining to the branch of astronomy dealing with the origin and history and structure and dynamics of the universe; "cosmologic science"; "cosmological redshift"; "cosmogonic theories of the origin of the universe" -02703911 01 a 01 cordless 0 001 \ 03106898 n 0101 | not having a cord; "cordless telephone" -02704005 01 a 02 coreferential 0 co-referent 0 002 + 13799063 n 0101 \ 13799063 n 0101 | relating to coreference -02704120 01 a 02 cormous 0 cormose 0 003 \ 13134680 n 0201 + 13134680 n 0101 \ 13134680 n 0101 | having or producing corms -02704245 01 a 01 corneal 0 002 + 05317354 n 0101 \ 05317354 n 0101 | of or related to the cornea -02704344 01 a 01 Cornish 0 001 \ 08881398 n 0101 | of or related to Cornwall or its people or the Cornish language -02704461 01 a 01 correlational 0 004 + 13841651 n 0101 + 06031248 n 0101 + 06032246 n 0103 \ 13841651 n 0101 | relating to or employing correlation -02704611 01 a 01 corymbose 0 001 \ 13131282 n 0101 | resembling a corymb -02704686 01 a 01 corinthian 0 003 + 09711320 n 0101 + 08786432 n 0101 \ 08786432 n 0101 | of or relating to or characteristic of Corinth or its inhabitants -02704844 01 a 01 costal 0 004 ;c 06057539 n 0000 + 05592126 n 0101 + 05279026 n 0102 \ 05279026 n 0101 | of or relating to or near a rib -02704983 01 a 01 intercostal 0 003 ;c 06057539 n 0000 + 05552287 n 0101 \ 05279026 n 0101 | located or occurring between the ribs; "intercostal muscles" -02705138 01 a 01 intertidal 0 001 \ 08596076 n 0101 | of or relating to the littoral area above the low-tide mark -02705254 01 a 01 covalent 0 003 + 05034761 n 0102 + 05034761 n 0101 \ 05034761 n 0101 | of or relating to or characterized by covalence; "covalent bond" -02705409 01 a 01 cross-ply 0 001 \ 03971422 n 0101 | of or relating to an older kind of automobile tire that had a flexible tread and relatively stiff sidewalls -02705572 01 a 01 cross-pollinating 0 001 \ 07438792 n 0101 | of or relating to or characteristic of cross-pollination -02705692 01 a 01 croupy 0 002 + 14174011 n 0101 \ 14174011 n 0101 | resembling or arising from or indicating croup -02705809 01 a 01 crural 0 002 + 05561390 n 0101 \ 05561390 n 0101 | of or relating the leg from the knee to the foot -02705928 01 a 01 crustal 0 001 \ 09260010 n 0101 | of or relating to or characteristic of the crust of the earth or moon -02706051 01 a 01 crustaceous 0 001 \ 09260218 n 0101 | being or having or resembling a hard crust or shell -02706160 01 a 02 crustaceous 1 crustacean 0 003 \ 01974399 n 0201 + 01974399 n 0101 \ 01974399 n 0101 | of or belonging to the class Crustacea -02706305 01 a 01 crustose 0 001 \ 09260218 n 0101 | (of lichens) having a thin crusty thallus that adheres closely to the surface on which it is growing; "crustose lichens" -02706480 01 a 01 cryogenic 0 002 + 06098687 n 0101 \ 14826328 n 0101 | of or relating to very low temperatures -02706593 01 a 01 cryonic 0 002 + 06070179 n 0101 \ 06070179 n 0101 | of or relating to cryonics -02706691 01 a 05 cryptanalytic 0 cryptographic 0 cryptographical 0 cryptologic 0 cryptological 0 010 + 06172502 n 0504 \ 06172502 n 0504 + 06172502 n 0404 \ 06172502 n 0404 + 06172502 n 0303 + 00614489 n 0301 \ 06172502 n 0303 \ 06172502 n 0203 + 06172502 n 0101 \ 06172502 n 0101 | of or relating to cryptanalysis -02707008 01 a 02 cryptogamic 0 cryptogamous 0 004 + 11552133 n 0201 \ 11552133 n 0201 + 11552133 n 0101 \ 11552133 n 0101 | of or relating to a cryptogam -02707164 01 a 01 cryptobiotic 0 002 + 14063475 n 0101 \ 14063475 n 0101 | of or related to the state of cryptobiosis -02707283 01 a 02 ctenoid 0 comb-like 0 002 \ 03074855 n 0201 \ 01918585 n 0101 | resembling a comb; having projections like the teeth of a comb -02707429 01 a 01 cubital 0 002 + 05579944 n 0104 \ 05579944 n 0104 | of or relating to the elbow -02707528 01 a 01 cucurbitaceous 0 002 + 12157276 n 0101 \ 12157276 n 0101 | of or relating to plants of the family Cucurbitaceae -02707659 01 a 01 culinary 0 001 \ 07571324 n 0101 | of or relating to or used in cooking -02707750 01 a 01 cuneiform 0 002 ;c 06057539 n 0000 \ 05281874 n 0101 | of or relating to the tarsal bones (or other wedge-shaped bones) -02707889 01 a 02 cupric 0 cuprous 0 003 \ 14635722 n 0201 + 14635722 n 0101 \ 14635722 n 0101 | of or containing divalent copper -02708020 01 a 01 curricular 0 002 + 06676416 n 0104 \ 06676416 n 0104 | of or relating to an academic course of study -02708140 01 a 01 custard-like 0 001 \ 07619004 n 0101 | resembling custard in consistency -02708232 01 a 01 cyclic 0 002 ;c 06114578 n 0000 \ 07341665 n 0101 | conforming to the Carnot cycle -02708334 01 a 02 cytoarchitectural 0 cytoarchitectonic 0 004 + 04933197 n 0201 \ 04933197 n 0202 + 04933197 n 0101 \ 04933197 n 0101 | of or relating to cytoarchitecture -02708506 01 a 01 cytolytic 0 002 + 13455086 n 0101 \ 13455086 n 0101 | of or relating to cytolysis, the dissolution or destruction of a cell -02708649 01 a 01 cytophotometric 0 001 \ 01003435 n 0101 | of or relating to the study of cells by means of a cytophotometer -02708776 01 a 02 cytoplasmic 0 cytoplasmatic 0 004 + 05432948 n 0201 \ 05432948 n 0201 + 05432948 n 0101 \ 05432948 n 0101 | of or relating to cytoplasm -02708931 01 a 01 cytoplastic 0 002 + 05432948 n 0101 \ 05433400 n 0101 | of or relating to a cytoplast -02709036 01 a 01 bicylindrical 0 001 \ 13899804 n 0101 | having two cylindrical surfaces usually with parallel axes; "certain lenses are bicylindrical" -02709190 01 a 01 cystic 0 002 + 14202996 n 0101 \ 14202996 n 0101 | of or relating to or resembling a cyst -02709299 01 a 01 cystic 1 002 + 05517578 n 0102 \ 05517578 n 0102 | of or relating to a normal cyst (as the gallbladder or urinary bladder) -02709441 01 a 02 cytogenetic 0 cytogenetical 0 004 + 06070738 n 0201 \ 06070738 n 0201 + 13454950 n 0101 \ 06070738 n 0101 | of or relating to cytogenetics -02709599 01 a 01 cytokinetic 0 001 \ 13504497 n 0101 | of or relating to the division of the cytoplasm of a cell following the division of the nucleus -02709752 01 a 02 cytological 0 cytologic 0 004 + 06070503 n 0201 \ 06070503 n 0201 + 06070503 n 0101 \ 06070503 n 0101 | of or relating to the science of cytology -02709917 01 a 01 cytotoxic 0 002 + 15035367 n 0101 \ 15035367 n 0101 | of or relating to substances that are toxic to cells -02710043 01 a 05 czarist 0 czaristic 0 tsarist 0 tsaristic 0 tzarist 0 007 \ 09987161 n 0501 + 09987239 n 0402 \ 09987161 n 0401 \ 09987161 n 0301 + 09987239 n 0201 \ 09987161 n 0201 \ 09987161 n 0101 | of or relating to or characteristic of a czar -02710294 01 a 01 deductive 0 003 + 00944924 v 0101 + 00636574 v 0101 \ 05774129 n 0101 | relating to logical deduction; "deductive reasoning" -02710438 01 a 01 deliverable 0 001 \ 00317207 n 0101 | suitable for or ready for delivery -02710530 01 a 01 Democratic 0 002 + 08361329 n 0101 \ 10002031 n 0101 | belong to or relating to the Democratic Party; "Democratic senator" -02710672 01 a 01 Demotic 1 002 + 06976833 n 0102 \ 06976833 n 0102 | of or written in or belonging to the form of modern Greek based on colloquial use -02710825 01 a 01 denominational 0 001 \ 08146782 n 0101 | relating to or characteristic of a particular religious denomination; "denominational politics" -02710981 01 a 01 denominational 1 001 \ 08006989 n 0101 | relating to the face value of a banknote, coin, or stamp -02711098 01 a 01 dental 0 001 \ 05282746 n 0101 | of or relating to the teeth; "dental floss" -02711194 01 a 01 dental 1 001 \ 06047430 n 0101 | of or relating to dentistry; "dental student" -02711292 01 a 02 despotic 0 despotical 0 004 + 10735298 n 0203 \ 10735298 n 0203 + 10735298 n 0103 \ 10735298 n 0103 | belonging to or having the characteristics of a despot -02711468 01 a 01 diagonalizable 0 002 ;c 06000644 n 0000 \ 08268962 n 0101 | capable of being transformed into a diagonal matrix -02711599 01 a 01 diamagnetic 0 002 + 11479816 n 0101 \ 11479816 n 0101 | relating to or exhibiting diamagnetism; slightly repelled by a magnet -02711744 01 a 01 diamantine 0 001 \ 14834563 n 0101 | consisting of diamonds or resembling diamonds -02711846 01 a 03 diametral 0 diametric 0 diametrical 0 009 + 13871717 n 0301 + 05101815 n 0301 \ 13871717 n 0301 + 13871717 n 0201 + 05101815 n 0201 \ 13871717 n 0201 + 13871717 n 0101 + 05101815 n 0101 \ 13871717 n 0101 | related to or along a diameter; "the diametral plane" -02712125 01 a 02 diaphoretic 0 sudorific 0 004 \ 13535261 n 0204 + 03188979 n 0101 + 13535261 n 0103 \ 13535261 n 0103 | inducing perspiration -02712270 01 a 01 diastolic 0 002 + 07401236 n 0101 \ 07401236 n 0101 | of or relating to a diastole or happening during a diastole -02712403 01 a 01 dicarboxylic 0 001 \ 14790796 n 0101 | containing two carboxyls per molecule -02712499 01 a 01 Dickensian 0 002 + 10934410 n 0101 \ 10934410 n 0101 | of or like the novels of Charles Dickens (especially with regard to poor social and economic conditions) -02712678 01 a 01 dictatorial 0 002 + 10011902 n 0101 \ 10011902 n 0101 | of or characteristic of a dictator; "dictatorial powers" -02712810 01 a 01 differentiable 0 001 \ 06014730 n 0103 | possessing a differential coefficient or derivative -02712922 01 a 01 differential 0 004 + 04749310 n 0101 + 13859307 n 0101 + 04748836 n 0101 \ 04748836 n 0101 | relating to or showing a difference; "differential treatment" -02713096 01 a 01 digital 0 002 + 05566097 n 0101 \ 05566097 n 0101 | relating to or performed with the fingers; "digital examination" -02713232 01 a 01 digital 1 001 \ 13741022 n 0101 | displaying numbers rather than scale positions; "digital clock"; "digital readout" -02713368 01 a 02 dimorphic 0 dimorphous 0 004 \ 11492643 n 0201 \ 11493083 n 0201 \ 11492643 n 0101 \ 11493083 n 0101 | occurring or existing in two different forms; "dimorphic crystals"; "dimorphous organisms" -02713581 01 a 01 Dionysian 0 003 ;c 07979425 n 0000 + 09558898 n 0101 \ 09558898 n 0101 | of or relating to or worshipping Dionysus -02713715 01 a 01 diplomatic 0 002 + 07148573 n 0101 \ 07148573 n 0101 | relating to or characteristic of diplomacy; "diplomatic immunity" -02713855 01 a 01 dipterous 0 002 + 02188065 n 0101 \ 02188065 n 0101 | of or relating to or belonging to the Diptera -02713974 01 a 01 directional 0 003 + 05066626 n 0102 ! 02714141 a 0101 \ 13827426 n 0101 | relating to or indicating directions in space; "a directional microphone" -02714141 01 a 01 omnidirectional 0 002 ! 02713974 a 0101 \ 13827426 n 0101 | not directional; "omnidirectional antenna" -02714263 01 a 01 directional 1 001 \ 01133281 n 0102 | relating to direction toward a (nonspatial) goal; "he tried to explain the directional trends of modern science" -02714433 01 a 01 discomycetous 0 002 + 13028337 n 0101 \ 13028611 n 0101 | relating to or characteristic of fungi of the subclass Discomycetes -02714578 01 a 01 distributional 0 001 \ 05087297 n 0101 | of or relating to spatial distribution; "distributional requirements" -02714708 01 a 01 dithyrambic 0 001 \ 07239428 n 0101 | of or in the manner of a dithyramb -02714800 01 a 01 dramatic 0 003 + 07007945 n 0102 + 06376154 n 0101 \ 07007945 n 0102 | pertaining to or characteristic of drama; "dramatic arts" -02714948 01 a 01 drupaceous 0 002 + 13138308 n 0101 \ 13138308 n 0101 | of or related to a drupe -02715047 01 a 01 dumpy 0 002 + 08560027 n 0101 \ 08560027 n 0101 | resembling a garbage dump -02715142 01 a 01 dural 0 002 + 05482529 n 0102 \ 05482529 n 0101 | of or relating to the dura mater -02715244 01 a 01 dynastic 0 002 + 07971582 n 0101 \ 07971582 n 0101 | of or relating to or characteristic of a dynasty -02715365 01 a 02 dysgenic 0 cacogenic 0 005 + 06042690 n 0202 \ 06042690 n 0202 + 06042690 n 0101 ! 02715949 a 0101 \ 06042690 n 0101 | pertaining to or causing degeneration in the offspring produced -02715567 01 a 01 dysplastic 0 002 + 14365950 n 0101 \ 14365950 n 0101 | relating to or evidencing dysplasia -02715677 01 a 01 Ephesian 0 001 \ 08788326 n 0101 | of or relating to ancient Ephesus or its people or language or culture -02715802 01 a 01 Eucharistic 0 002 + 01035853 n 0102 \ 01035853 n 0102 | of or relating to the sacrament of the Eucharist; "the Eucharistic cup" -02715949 01 a 01 eugenic 0 003 + 06042486 n 0101 ! 02715365 a 0101 \ 06042486 n 0101 | pertaining to or causing improvement in the offspring produced -02716101 01 a 02 Eurocentric 0 Europocentric 0 003 \ 06201778 n 0201 + 06201778 n 0101 \ 06201778 n 0101 | focussed on Europe and the Europeans -02716247 01 a 01 eutrophic 0 002 ;c 06070929 n 0101 \ 13476590 n 0101 | (ecology) of a lake or other body of water rich in nutrients and subject to eutrophication -02716412 01 a 01 Ebionite 0 001 \ 10349836 n 0102 | of or relating to the Ebionites or their religion -02716516 01 a 01 ebracteate 0 002 ! 02669616 a 0101 \ 13154841 n 0101 | without bracts -02716605 01 a 01 economic 0 002 + 08366753 n 0101 \ 06149484 n 0101 | of or relating to the science of economics; "economic theory" -02716739 01 a 02 economic 1 economical 0 004 + 08366753 n 0201 \ 08366753 n 0201 + 08366753 n 0101 \ 08366753 n 0101 | of or relating to an economy, the system of production and management of material wealth; "economic growth"; "aspects of social, political, and economical life" -02717021 01 a 01 socioeconomic 0 001 \ 02716605 a 0101 | involving social as well as economic factors; "socioeconomic status" -02717149 01 a 01 ectopic 0 003 ;c 06057539 n 0000 + 05081660 n 0101 \ 05081660 n 0101 | exhibiting ectopia -02717258 01 a 01 editorial 0 001 \ 06268567 n 0102 | of or relating to an article stating opinions or giving perspectives; "editorial column" -02717402 01 a 01 editorial 1 002 + 10044879 n 0101 \ 10044879 n 0101 | relating to or characteristic of an editor; "editorial duties" -02717538 01 a 01 electoral 0 003 + 00181781 n 0101 + 00180962 n 0101 \ 00180962 n 0101 | of or relating to elections; "electoral process" -02717678 01 a 01 electrocardiographic 0 001 \ 02963503 n 0102 | of or relating to an electrocardiograph -02717784 01 a 01 electrochemical 0 002 + 06089857 n 0101 \ 06089857 n 0101 | of or involving electrochemistry -02717896 01 a 01 electroencephalographic 0 001 \ 03275311 n 0101 | of or relating to an electroencephalograph -02718008 01 a 01 electrolytic 0 002 + 14847929 n 0101 \ 03275681 n 0102 | of or relating to or containing an electrolyte -02718131 01 a 01 electrolytic 1 002 + 13472125 n 0101 \ 13472125 n 0101 | of or concerned with or produced by electrolysis -02718256 01 a 01 electromechanical 0 001 \ 03276574 n 0101 | of or relating to or involving an electrically operated mechanical device -02718393 01 a 01 electromotive 0 001 \ 11443532 n 0102 | concerned with or producing electric current -02718497 01 a 01 electronic 0 002 + 06099269 n 0101 \ 06099269 n 0101 | of or relating to electronics; concerned with or using devices that operate on principles governing the behavior of electrons; "electronic devices" -02718719 01 a 01 electronic 1 002 + 06099269 n 0101 \ 09271904 n 0101 | of or concerned with electrons; "electronic energy" -02718845 01 a 02 electrophoretic 0 cataphoretic 0 004 + 13472518 n 0202 \ 13472518 n 0202 + 13472518 n 0101 \ 13472518 n 0101 | of or relating to electrophoresis -02719009 01 a 02 electrostatic 0 static 0 003 \ 11514462 n 0201 + 06100101 n 0101 \ 11514462 n 0101 | concerned with or producing or caused by static electricity; "an electrostatic generator produces high-voltage static electricity" -02719244 01 a 01 elegiac 0 001 \ 06379568 n 0101 | resembling or characteristic of or appropriate to an elegy; "an elegiac poem on a friend's death" -02719395 01 a 01 elemental 0 001 \ 14622893 n 0102 | relating to or being an element; "elemental sulphur" -02719503 01 a 01 elemental 2 001 \ 11525303 n 0101 | relating to severe atmospheric conditions; "a race against hail or cold rains or some other elemental catastrophe"- J.K.Howard -02719685 01 a 01 elementary 0 001 \ 08412749 n 0103 | of or pertaining to or characteristic of elementary school or elementary education; "the elementary grades"; "elementary teachers" -02719872 01 a 01 elfin 0 001 \ 09540739 n 0101 | relating to or made or done by or as if by an elf; "elfin bells"; "all the little creatures joined in the elfin dance" -02720042 01 a 02 empyrean 0 empyreal 0 003 + 08521267 n 0203 \ 08521267 n 0203 \ 08521267 n 0103 | of or relating to the sky or heavens; "the empyrean sphere" -02720203 01 a 01 emulous 0 001 \ 01021270 n 0101 | characterized by or arising from emulation or imitation -02720312 01 a 02 eonian 0 aeonian 0 004 + 15243730 n 0202 \ 15243730 n 0201 + 15243730 n 0101 \ 15243730 n 0101 | of or relating to a geological eon (longer than an era) -02720484 01 a 02 epenthetic 0 parasitic 0 002 \ 07117788 n 0201 \ 07117788 n 0101 | of or pertaining to epenthesis -02720601 01 a 02 epidural 0 extradural 0 002 \ 05482529 n 0201 \ 05482529 n 0101 | on or outside the dura mater -02720715 01 a 01 epigastric 0 002 + 05396071 n 0101 \ 05396071 n 0101 | lying on or over the stomach -02720818 01 a 01 epigastric 1 002 + 05396071 n 0101 \ 05604434 n 0101 | of or relating to the anterior walls of the abdomen; "epigastric artery" -02720965 01 a 01 epilithic 0 001 \ 14696793 n 0102 | growing on stone; "epilithic mosses" -02721057 01 a 02 episcopal 0 pontifical 0 003 \ 09857200 n 0201 + 09857200 n 0101 \ 09857200 n 0101 | denoting or governed by or relating to a bishop or bishops -02721220 01 a 01 equestrian 0 002 + 10185793 n 0102 \ 00299217 n 0102 | of or relating to or featuring horseback riding -02721342 01 a 01 equestrian 1 001 \ 10238375 n 0101 | of or relating to or composed of knights -02721439 01 a 01 equine 1 002 + 02374149 n 0101 \ 02373601 n 0101 | of or belonging to the family Equidae -02721547 01 a 01 equine 0 001 \ 02374451 n 0101 | resembling a horse -02721618 01 a 01 equinoctial 0 002 + 15223343 n 0101 \ 15223343 n 0101 | relating to an equinox (when the lengths of night and day are equal) -02721762 01 a 01 equinoctial 1 002 + 08520190 n 0104 \ 08568719 n 0101 | relating to the vicinity of the equator -02721877 01 a 01 ergonomic 0 002 + 06126523 n 0103 \ 06126523 n 0103 | of or relating to ergonomics -02721979 01 a 01 ergotic 0 002 + 12965626 n 0101 \ 12965626 n 0101 | relating to or produced by ergot -02722083 01 a 01 ergotropic 0 002 + 00861894 n 0101 \ 00861894 n 0101 | of or relating to ergotropism -02722187 01 a 01 eruptive 0 001 \ 14321469 n 0101 | producing or characterized by eruptions; "an eruptive disease" -02722304 01 a 01 erythematous 0 002 + 14226303 n 0101 \ 14226303 n 0101 | relating to or characterized by erythema -02722421 01 a 01 erythroid 0 001 \ 05454070 n 0103 | relating to erythrocytes -02722501 01 a 01 erythropoietic 0 002 + 13476111 n 0101 \ 13476111 n 0101 | of or relating to the formation of red blood cells -02722630 01 a 01 eschatological 0 002 + 06183162 n 0101 \ 06183162 n 0101 | of or relating to or dealing with or regarding the ultimate destiny of mankind and the world -02722801 01 a 01 esophageal 0 002 + 05533948 n 0101 \ 05533948 n 0101 | relating to the esophagus -02722901 01 a 01 Essene 0 001 \ 09655354 n 0101 | said of or relating to the Essenes -02722988 01 a 01 essential 0 003 + 15110096 n 0101 + 05171045 n 0102 \ 15110096 n 0101 | being or relating to or containing the essence of a plant etc; "essential oil" -02723158 01 a 01 Estonian 0 003 + 06957896 n 0101 + 09012297 n 0101 \ 09012297 n 0101 | of or pertaining to Estonia or the people or culture of Estonia -02723312 01 a 01 estrogenic 0 002 + 14749794 n 0101 \ 14749794 n 0101 | relating to or caused by estrogen -02723420 01 a 02 estuarine 0 estuarial 0 003 + 09274500 n 0201 \ 09274500 n 0201 \ 09274500 n 0101 | of or relating to or found in estuaries -02723563 01 a 01 ethical 0 002 + 06159473 n 0101 \ 06159473 n 0101 | of or relating to the philosophical study of ethics; "ethical codes"; "ethical theories" -02723723 01 a 01 evidentiary 0 003 ;c 08441203 n 0000 + 06643408 n 0101 \ 06643408 n 0101 | pertaining to or constituting evidence; "evidentiary technique"; "an evidentiary fact" -02723904 01 a 01 excrescent 0 003 + 13894434 n 010c + 05603650 n 0101 \ 14234074 n 0101 | forming an outgrowth (usually an excessive outgrowth) -02724050 01 a 01 excretory 0 002 + 00072989 v 0101 \ 13473097 n 0103 | of or relating to the process of excretion -02724166 01 a 02 exegetic 0 exegetical 0 004 + 07171940 n 0201 \ 07171940 n 0201 + 07171940 n 0101 \ 07171940 n 0101 | relating to exegesis -02724308 01 a 01 exilic 0 002 + 10071139 n 0101 \ 00207761 n 0101 | of or relating to a period of exile (especially the exile of the Jews known as the Babylonian Captivity) -02724483 01 a 01 existential 0 002 + 13954253 n 0103 \ 13954253 n 0103 | relating to or dealing with existence (especially with human existence) -02724630 01 a 01 existential 1 001 \ 05970755 n 0101 | of or as conceived by existentialism; "an existential moment of choice" -02724759 01 a 01 existentialist 0 001 \ 05970755 n 0101 | relating to or involving existentialism; "existentialist movement"; "existentialist philosophy"; "the existentialist character of his ideas" -02724960 01 a 01 extropic 0 002 + 06749267 n 0101 \ 06749267 n 0101 | of or relating to extropy -02725058 01 a 01 facial 1 002 + 08510666 n 0102 \ 08510666 n 0102 | of or pertaining to the outside surface of an object -02725181 01 a 02 factor_analytical 0 factor_analytic 0 003 \ 06030196 n 0201 + 06030196 n 0101 \ 06030196 n 0101 | of or relating to or the product of factor analysis -02725350 01 a 01 factorial 0 002 + 05859811 n 0101 \ 05859811 n 0101 | of or relating to factorials -02725452 01 a 01 facultative 0 001 \ 05650329 n 0101 | of or relating to the mental faculties -02725548 01 a 01 Fahrenheit(ip) 0 001 \ 13852820 n 0101 | of or relating to a temperature scale proposed by the inventor of the mercury thermometer; "water freezes at 32 degrees Fahrenheit under normal conditions" -02725764 01 a 01 fanged 0 001 \ 01465472 n 0101 | having fangs -02725829 01 a 01 federal 2 001 \ 08052549 n 0101 | of or relating to the central government of a federation; "a federal district is one set aside as the seat of the national government" -02726017 01 a 01 femoral 0 003 + 05573895 n 0101 \ 05573895 n 0101 \ 05562249 n 0101 | of or relating to or near the femur or thigh -02726151 01 a 01 fenestral 0 001 \ 04587648 n 0101 | of or relating to windows -02726232 01 a 01 fenestral 1 002 ;c 06057539 n 0000 \ 05325378 n 0101 | of or relating to or having a fenestra -02726345 01 a 01 fermentable 0 001 \ 13575433 n 0103 | capable of being fermented -02726429 01 a 02 ferric 0 ferrous 0 002 \ 14642417 n 0201 \ 14642417 n 0101 | of or relating to or containing iron -02726546 01 a 02 feudal 0 feudalistic 0 004 + 07972425 n 0201 \ 07972425 n 0201 + 07972425 n 0101 \ 07972425 n 0101 | of or relating to or characteristic of feudalism -02726715 01 a 02 febrile 0 feverish 0 004 + 14365356 n 0205 \ 14365356 n 0201 ! 02726921 a 0101 \ 14365356 n 0101 | of or relating to or characterized by fever; "a febrile reaction caused by an allergen" -02726921 01 a 01 afebrile 0 002 ! 02726715 a 0101 \ 14365356 n 0101 | having no fever -02727009 01 a 04 fiber-optic 0 fiberoptic 0 fibre-optic 0 fibreoptic 0 008 + 06280816 n 0404 \ 06280816 n 0404 + 06280816 n 0301 \ 06280816 n 0303 + 06280816 n 0202 \ 06280816 n 0202 + 06280816 n 0101 \ 06280816 n 0101 | of or relating to fiber optics -02727263 01 a 01 fibrillose 0 001 \ 14867858 n 0101 | covered with fibrils more or less evenly disposed -02727369 01 a 01 fibrinous 0 002 + 14733941 n 0101 \ 14733941 n 0101 | characterized by the presence of fibrin -02727482 01 a 01 fibrocartilaginous 0 001 \ 05288593 n 0101 | of or relating to fibrocartilage -02727579 01 a 01 fictile 0 001 \ 00609868 n 0101 | of or relating to the craft of pottery; "the fictile art"; "fictile ware" -02727706 01 a 01 fictional 0 003 + 06367107 n 0101 ! 02727912 a 0101 \ 06367107 n 0101 | related to or involving literary fiction; "clever fictional devices"; "a fictional treatment of the train robbery" -02727912 01 a 01 nonfictional 0 002 ! 02727706 a 0101 \ 06367571 n 0101 | not fictional -02728002 01 a 01 field-crop 0 001 \ 13086556 n 0101 | of or relating to field crops; "field-crop management" -02728113 01 a 01 filar 0 002 + 05229468 n 0102 \ 14867858 n 0102 | related to or having filaments (especially across a field of view as in the eyepiece of a telescope); "a filar eyepiece" -02728303 01 a 01 bifilar 0 001 \ 02728113 a 0101 | having or using two filaments; "a bifilar suspension of a waving part of an instrument" -02728444 01 a 01 unifilar 0 001 \ 02728113 a 0101 | having or using only one filament -02728532 01 a 01 filarial 0 002 + 01933478 n 0101 \ 01933478 n 0101 | related to or infested with or transmitting parasitic worms especially filaria -02728683 01 a 01 filariid 0 002 ;c 06083243 n 0000 \ 01933342 n 0102 | of or relating to or belonging to the family Filariidae -02728812 01 a 02 fisheye 0 wide-angle 0 002 \ 04583212 n 0201 \ 04583212 n 0102 | of or relating to a fisheye lens -02728929 01 a 01 fishy 0 002 + 02512053 n 0101 \ 02512053 n 0101 | of or relating to or resembling fish; "the soup had a fishy smell" -02729065 01 a 01 fistulous 0 002 + 05548032 n 0101 \ 05548032 n 0101 | of or pertaining to or resembling a fistula -02729182 01 a 02 flaky 0 flakey 0 004 + 09222051 n 0203 \ 09222051 n 0203 + 09222051 n 0103 \ 09222051 n 0103 | made of or resembling flakes; "flaky soap" -02729339 01 a 02 fleshy 0 sarcoid 0 002 + 05268112 n 0101 \ 05268112 n 0101 | of or relating to or resembling flesh -02729457 01 a 01 flinty 0 002 + 14871078 n 0101 \ 14871078 n 0101 | containing flint -02729544 01 a 01 floricultural 0 002 + 00921399 n 0102 \ 00921399 n 0102 | of or relating to or involving floriculture -02729665 01 a 01 flowery 0 002 + 11669921 n 0101 \ 11669921 n 0101 | of or relating to or suggestive of flowers; "a flowery hat"; "flowery wine" -02729812 01 a 01 fluvial 0 001 \ 09411430 n 0101 | of or relating to or happening in a river; "fluvial deposits" -02729927 01 a 02 foliate 2 foliated 0 003 ;c 06123363 n 0000 \ 13152742 n 0203 \ 13152742 n 0103 | ornamented with foliage or foils; "foliate tracery"; "a foliated capital" -02730102 01 a 01 foliaceous 0 001 \ 13152742 n 0101 | of or pertaining to or resembling the leaf of a plant -02730212 01 a 01 forcipate 0 001 \ 03381231 n 0101 | shaped like a forceps; deeply forked -02730304 01 a 03 formalistic 0 formalized 0 formalised 0 008 ;c 05946687 n 0000 ;c 00933420 n 0000 \ 00411717 n 0301 \ 00411717 n 0201 + 05961867 n 0101 + 05971621 n 0101 + 00411717 n 0101 \ 00411717 n 0101 | concerned with or characterized by rigorous adherence to recognized forms (especially in religion or art); "highly formalized plays like `Waiting for Godot'" -02730673 01 a 01 formic 0 001 \ 14873344 n 0101 | of or containing or derived from formic acid -02730770 01 a 01 formic 1 001 \ 02219486 n 0101 | of or relating to or derived from ants -02730861 01 a 01 formulary 0 002 + 06816935 n 0101 \ 06816935 n 0101 | of or relating to or of the nature of a formula -02730982 01 a 01 fossil 0 001 \ 09284589 n 0101 | characteristic of a fossil -02731061 01 a 01 fossiliferous 0 001 \ 09284589 n 0101 | bearing or containing fossils; "fossiliferous strata" -02731174 01 a 02 three-wheel 0 three-wheeled 0 002 \ 04574999 n 0201 \ 04574999 n 0101 | of or relating to vehicles having three wheels; "a three-wheel bike" -02731334 01 a 01 fourhanded 0 002 ;c 00488225 n 0000 \ 00488225 n 0101 | (of card games) involving or requiring four players -02731461 01 a 02 four-wheel 0 four-wheeled 0 002 \ 04574999 n 0201 \ 04574999 n 0101 | of or relating to vehicles with four wheels; "a four-wheel drive" -02731616 01 a 01 Frankish 0 001 \ 09688804 n 0101 | of or relating to the Franks -02731699 01 a 01 fraternal 1 002 + 08229467 n 0101 \ 08075388 n 0101 | of or relating to a fraternity or society of usually men; "a fraternal order" -02731850 01 a 01 fretted 0 003 ;c 07020895 n 0000 ! 02731953 a 0101 \ 03396074 n 0101 | having frets -02731953 01 a 01 unfretted 0 003 ;c 07020895 n 0000 ! 02731850 a 0101 \ 03396074 n 0101 | without frets -02732059 01 a 01 frictional 0 003 + 11459538 n 0101 + 00712031 n 0101 \ 11459538 n 0101 | pertaining to or worked or produced by friction; "frictional electricity"; "frictional heat"; "frictional gearing" -02732266 01 a 01 frictionless 0 001 \ 11459538 n 0101 | lacking all friction; "a perpetual motion machine would have to be frictionless" -02732405 01 a 01 Frisian 0 003 + 08951777 n 0101 \ 08951385 n 0101 \ 08951777 n 0101 | of or relating to the people or culture or language of Friesland or Frisia -02732569 01 a 02 Galilean 0 Galilaean 0 008 + 10117957 n 0202 + 08793914 n 0201 \ 10117957 n 0201 \ 08793914 n 0201 + 10117957 n 0101 + 08793914 n 0101 \ 10117957 n 0101 \ 08793914 n 0101 | of or relating to Galilee or its inhabitants -02732806 01 a 01 Galilean 1 003 + 10987724 n 0101 + 08793914 n 0101 \ 10987724 n 0101 | of or relating to Galileo or his works -02732935 01 a 01 Gallican 0 001 \ 08475070 n 0101 | relating to or characteristic of Gallicanism -02733034 01 a 01 garlicky 0 003 + 12434775 n 0101 + 07818277 n 0101 \ 07818277 n 0101 | relating to or tasting or smelling of garlic; "garlicky sauce" -02733187 01 a 03 gastric 0 stomachic 0 stomachal 0 005 + 05556943 n 0303 \ 05395690 n 0301 + 05395690 n 0201 \ 05395690 n 0201 \ 05395690 n 0101 | relating to or involving the stomach; "gastric ulcer" -02733390 01 a 01 gastroduodenal 0 002 \ 05395690 n 0101 \ 05534955 n 0101 | of or relating to the stomach and the duodenum -02733515 01 a 01 gastroesophageal 0 002 \ 05395690 n 0101 \ 05533948 n 0101 | of or relating to or involving the stomach and esophagus -02733652 01 a 01 pneumogastric 0 002 \ 05387544 n 0101 \ 05395690 n 0101 | of or relating to or involving the lungs and stomach -02733782 01 a 01 gemmiferous 0 001 \ 11682659 n 0101 | bearing or reproducing by a gemma -02733873 01 a 01 generational 0 004 + 15290930 n 0101 + 08369406 n 0103 + 08368907 n 0101 \ 08369406 n 0103 | of or relating to a generation -02734016 01 a 01 generic 0 003 ;c 06037666 n 0000 + 08108972 n 0101 \ 08108972 n 0101 | relating to or common to or descriptive of all members of a genus; "the generic name" -02734192 01 a 02 genetic 0 genetical 0 005 + 05436752 n 0201 + 06075527 n 0201 + 06075527 n 0101 + 05436752 n 0101 \ 06075527 n 0101 | of or relating to the science of genetics; "genetic research" -02734391 01 a 01 genetic 1 001 \ 07323922 n 0101 | pertaining to or referring to origin; "genetic history reconstructs the origins of a literary work" -02734544 01 a 03 genic 0 genetic 2 genetical 2 005 + 05436752 n 0301 \ 05436752 n 0301 \ 05436752 n 0201 + 05436752 n 0101 \ 05436752 n 0101 | of or relating to or produced by or being a gene; "genic combinations"; "genetic code" -02734776 01 a 02 genial 0 mental 4 002 \ 05277100 n 0201 \ 05599617 n 0101 | of or relating to the chin or median part of the lower jaw -02734914 01 a 01 mental 3 002 ;c 06037666 n 0000 \ 05277100 n 0101 | of or relating to the chin- or liplike structure in insects and certain mollusks -02735066 01 a 01 gentile 0 003 + 10166394 n 0103 + 09679028 n 0101 \ 09679028 n 0101 | belonging to or characteristic of non-Jewish peoples -02735208 01 a 02 geometric 0 geometrical 0 004 + 06004685 n 0201 \ 06004685 n 0201 + 06004685 n 0101 \ 06004685 n 0101 | of or relating to or determined by geometry -02735375 01 a 01 geophytic 0 002 + 13120958 n 0101 \ 13120958 n 0101 | of or relating to geophytes -02735476 01 a 01 geostrategic 0 002 + 06148915 n 0101 \ 06148915 n 0101 | of or relating to geostrategy; "Pakistan became a country of paramount geostrategic importance to the United States" -02735669 01 a 02 geothermal 0 geothermic 0 002 \ 11466043 n 0201 \ 11466043 n 0101 | of or relating to the heat in the interior of the earth -02735812 01 a 01 gingival 0 002 + 05304932 n 0101 \ 05304932 n 0101 | of or relating to the gums -02735911 01 a 01 glabellar 0 002 + 05232691 n 0101 \ 05232691 n 0101 | of or relating to the glabella -02736015 01 a 01 glacial 0 004 + 14519673 n 0101 + 13487409 n 0101 + 09289331 n 0101 \ 09289331 n 0101 | relating to or derived from a glacier; "glacial deposit" -02736179 01 a 01 glial 0 002 + 05467054 n 0102 \ 05467054 n 0102 | of or relating to neuroglia -02736276 01 a 01 gluteal 0 002 + 05570129 n 0101 \ 05570129 n 0101 | of or relating to or near the gluteus muscles -02736393 01 a 01 glycogenic 0 002 + 14795749 n 0101 \ 14795749 n 0101 | of or relating to or involving glycogen -02736507 01 a 01 granuliferous 0 001 \ 09291513 n 0101 | producing or full of granules -02736596 01 a 01 granulomatous 0 002 + 14238639 n 0101 \ 14238639 n 0101 | relating to or characterized by granulomas -02736716 01 a 01 grapelike 0 001 \ 07758680 n 0101 | resembling the fruit of a grape vine -02736808 01 a 02 graphic 0 graphical 0 003 + 07000195 n 0201 \ 07000195 n 0201 \ 07000195 n 0101 | relating to or presented by a graph; "a graphic presentation of the data" -02736983 01 a 01 graphic 1 001 \ 03453985 n 0101 | of or relating to the graphic arts; "the etchings, drypoints, lithographs, and engravings which together form his graphic work"- British Book News -02737183 01 a 02 gravitational 0 gravitative 0 005 + 01835280 v 0201 \ 11464143 n 0201 + 11464143 n 0102 + 07362830 n 0101 \ 11464143 n 0102 | of or relating to or caused by gravitation -02737371 01 a 01 grubby 0 002 + 02312006 n 0101 \ 02312006 n 0101 | infested with grubs -02737461 01 a 01 guttural 0 002 + 07120176 n 0101 \ 05547508 n 0101 | relating to or articulated in the throat; "the glottal stop and uvular `r' and `ch' in German `Bach' are guttural sounds" -02737655 01 a 02 hair-shirt 0 hair-shirted 0 002 \ 03476542 n 0201 \ 03476542 n 0101 | self-sacrificing or austere -02737772 01 a 01 harmonic 0 003 + 04984180 n 0101 ! 02737981 a 0101 \ 07027180 n 0101 | of or relating to harmony as distinct from melody and rhythm; "subtleties of harmonic change and tonality"- Ralph Hill -02737981 01 a 01 nonharmonic 0 002 ! 02737772 a 0101 \ 07027180 n 0101 | not harmonic; "a nonharmonic note" -02738091 01 a 01 harmonic 1 002 + 07027180 n 0101 \ 06111253 n 0101 | of or relating to the branch of acoustics that studies the composition of musical sounds; "the sound of the resonating cavity cannot be the only determinant of the harmonic response" -02738346 01 a 01 harmonic 2 003 + 05719804 n 0101 + 04988078 n 0101 \ 04988078 n 0101 | of or relating to harmonics -02738464 01 a 04 Hasidic 0 Hassidic 0 Chasidic 0 Chassidic 0 008 \ 06234257 n 0404 \ 08094866 n 0405 \ 06234257 n 0303 \ 08094866 n 0304 \ 06234257 n 0202 \ 08094866 n 0202 \ 06234257 n 0101 \ 08094866 n 0101 | of or relating to the Jewish Hasidim or its members or their beliefs and practices -02738760 01 a 01 Hawaiian 0 006 + 09742569 n 0101 + 06938493 n 0101 + 09079505 n 0101 + 09078231 n 0101 \ 09078231 n 0101 \ 09079505 n 0101 | of or relating to or characteristic of the state or island of Hawaii or to the people or culture or language -02739013 01 a 01 heathlike 0 001 \ 12226932 n 0101 | resembling heath -02739085 01 a 01 Hebridean 0 002 + 08893223 n 0101 \ 08893223 n 0101 | of or relating to the Hebrides -02739189 01 a 02 heliacal 0 heliac 0 002 \ 09450163 n 0201 \ 09450163 n 0101 | pertaining to or near the sun; especially the first rising of a star after and last setting before its invisibility owing to its conjunction with the sun; "the heliacal rising of the Dog Star"; "the heliacal or Sothic year is determined by the heliacal rising of Sothis (the Egyptian name for the Dog Star)" -02739578 01 a 06 hematopoietic 0 haematopoietic 0 hemopoietic 0 haemopoietic 0 hematogenic 0 haematogenic 0 010 \ 13492453 n 0608 \ 13492453 n 0507 + 13492453 n 0404 \ 13492453 n 0404 + 13492453 n 0303 \ 13492453 n 0303 + 13492453 n 0202 \ 13492453 n 0202 + 13492453 n 0101 \ 13492453 n 0101 | pertaining to the formation of blood or blood cells; "hemopoietic stem cells in bone marrow" -02739967 01 a 01 hemodynamic 0 001 \ 06082310 n 0101 | or of relating to or involved in hemodynamics -02740070 01 a 01 hemispherical 0 004 + 13899109 n 0101 + 08583095 n 0101 + 05476915 n 0101 \ 13899109 n 0101 | of or relating to or being a hemisphere -02740223 01 a 02 hemorrhagic 0 haemorrhagic 0 004 + 14288235 n 0203 \ 14288235 n 0203 + 14288235 n 0102 \ 14288235 n 0102 | of or relating to a hemorrhage -02740380 01 a 01 hepatic 0 001 \ 05385534 n 0101 | pertaining to or affecting the liver; "hepatic ducts"; "hepatic cirrhosis" -02740508 01 a 01 heroic 0 001 \ 10173086 n 0101 | relating to or characteristic of heroes of antiquity; "heroic legends"; "the heroic age" -02740649 01 a 01 heterodyne 0 002 ;c 06099269 n 0000 \ 11477710 n 0101 | of or relating to the beat produced by heterodyning two oscillations -02740793 01 a 01 heterosporous 0 002 + 13493566 n 0101 \ 13493566 n 0101 | characterized by heterospory -02740899 01 a 01 Hollywood 0 001 \ 08068597 n 0101 | of or relating to the film industry in the United States; "a Hollywood actor" -02741032 01 a 01 homeostatic 0 002 + 14003167 n 0101 \ 14003167 n 0101 | related to or characterized by homeostasis -02741150 01 a 02 homonymic 0 homonymous 0 002 \ 06292649 n 0201 \ 06292649 n 0101 | of or related to or being homonyms -02741271 01 a 01 homosporous 0 002 + 13493874 n 0101 \ 13493874 n 0101 | characterized by homospory -02741373 01 a 03 homostylous 0 homostylic 0 homostyled 0 004 ;c 06066555 n 0000 \ 11677259 n 0301 \ 11677259 n 0201 \ 11677259 n 0101 | (botany) having styles all of the same length -02741557 01 a 01 horse-drawn 0 001 \ 02374451 n 0101 | pulled by a horse; "a horse-drawn carriage" -02741658 01 a 02 hexadecimal 0 hex 0 002 \ 06811419 n 0201 \ 06811419 n 0101 | of or pertaining to a number system having 16 as its base -02741797 01 a 02 hexangular 0 hexagonal 0 003 + 13882276 n 0201 \ 13882276 n 0201 \ 13882276 n 0101 | having six sides or divided into hexagons -02741943 01 a 01 hidrotic 0 002 + 13535261 n 0105 \ 05405751 n 0102 | of or relating to sweat -02742039 01 a 01 hieratic 0 002 + 06362260 n 0101 \ 06362260 n 0101 | written or belonging to a cursive form of ancient Egyptian writing; "hieratic Egyptian script" -02742206 01 a 02 hieroglyphic 0 hieroglyphical 0 004 + 06362441 n 0201 \ 06362441 n 0201 + 06362441 n 0102 \ 06362441 n 0101 | written in or belonging to a writing system using pictorial symbols -02742403 01 a 02 hieroglyphic 1 hieroglyphical 1 004 + 06403679 n 0201 \ 06403679 n 0201 + 06403679 n 0102 \ 06403679 n 0101 | resembling hieroglyphic writing -02742564 01 a 01 high-energy 0 001 \ 11452218 n 0101 | of or relating to elementary particles having energies of hundreds of thousands of electron volts -02742719 01 a 01 hircine 0 001 \ 02416519 n 0101 | of or pertaining to or suggestive of a goat (especially in strong odor) -02742844 01 a 01 home 0 001 \ 08490199 n 0101 | relating to or being where one lives or where one's roots are; "my home town" -02742972 01 a 01 hooflike 0 001 \ 02153959 n 0101 | resembling a hoof; especially having the horny texture of a hoof; "hooflike calluses" -02743112 01 a 01 horary 0 004 ;u 07073447 n 0000 + 15228378 n 0101 + 15227846 n 0101 \ 15227846 n 0101 | relating to the hours; "the horary cycle" -02743261 01 a 01 human 0 003 + 02472293 n 0104 + 04726938 n 0101 \ 04726938 n 0102 | characteristic of humanity; "human nature" -02743391 01 a 01 human 1 002 + 04726938 n 0101 + 04726938 n 0102 | relating to a person; "the experiment was conducted on 6 monkeys and 2 human subjects" -02743547 01 a 03 humanist 0 humanistic 0 humane 1 003 \ 06153846 n 0302 \ 06153846 n 0202 \ 06153846 n 0102 | pertaining to or concerned with the humanities; "humanistic studies"; "a humane education" -02743750 01 a 02 humanistic 3 humanist 3 003 \ 08476829 n 0201 + 08476829 n 0101 \ 08476829 n 0101 | of or pertaining to Renaissance humanism; "the humanistic revival of learning" -02743932 01 a 02 humanist 2 humanistic 2 002 \ 05967191 n 0201 \ 05967191 n 0101 | of or pertaining to a philosophy asserting human dignity and man's capacity for fulfillment through reason and scientific method and often rejecting religion; "the humanist belief in continuous emergent evolution"- Wendell Thomas -02744247 01 a 01 humic 0 002 + 14908822 n 0101 \ 14908822 n 0101 | of or relating to or derived from humus; "humic acid" -02744370 01 a 01 humified 0 001 \ 14908822 n 0101 | converted to humus; "humified soil" -02744460 01 a 01 hyaloplasmic 0 002 + 05434053 n 0101 \ 05434053 n 0101 | of or relating to hyaloplasm -02744565 01 a 01 hydrocephalic 0 003 + 14465768 n 0102 + 14465768 n 0101 \ 14465768 n 0101 | relating to or characterized by or evidencing hydrocephalus -02744720 01 a 02 hydrographic 0 hydrographical 0 003 + 06120111 n 0201 \ 06120111 n 0201 \ 06120111 n 0101 | of or relating to the science of hydrography -02744876 01 a 01 hydrolyzable 0 002 + 00564151 v 0101 \ 13494919 n 0101 | capable of undergoing hydrolysis -02744985 01 a 01 hydroxy 0 001 \ 14914775 n 0101 | being or containing a hydroxyl group -02745075 01 a 01 hymenopterous 0 002 + 02205896 n 0101 \ 02205896 n 0101 | of or relating to insects of the order Hymenoptera -02745203 01 a 01 hypnotic 0 001 \ 14026592 n 0101 | of or relating to hypnosis -02745284 01 a 02 ideal 0 idealistic 0 003 + 05972103 n 0201 \ 05972103 n 0201 \ 05972103 n 0101 | of or relating to the philosophical doctrine of the reality of ideas -02745453 01 a 01 ideographic 0 001 \ 06840648 n 0102 | of or relating to or consisting of ideograms -02745555 01 a 01 ideological 0 002 \ 06212839 n 0102 + 06212839 n 0102 | of or pertaining to or characteristic of an orientation that characterizes the thinking of a group or nation -02745739 01 a 01 idiopathic 0 001 \ 14074715 n 0103 | (of diseases) arising from an unknown cause; "idiopathic epilepsy" -02745862 01 a 01 immune 0 002 + 14527171 n 0101 \ 14526764 n 0102 | relating to the condition of immunity; "the immune system" -02745991 01 a 01 immunochemical 0 002 + 06051925 n 0101 \ 06051925 n 0101 | of or relating to immunochemistry -02746103 01 a 01 immunocompromised 0 001 \ 13973990 n 0101 | unable to develop a normal immune response usually because of malnutrition or immunodeficiency or immunosuppressive therapy -02746290 01 a 02 immunological 0 immunologic 0 004 + 06051542 n 0201 \ 06051542 n 0201 + 06051542 n 0101 \ 06051542 n 0101 | of or relating to immunology -02746446 01 a 01 immunosuppressed 0 001 \ 13974620 n 0101 | of persons whose immune response is inadequate -02746555 01 a 01 immunosuppressive 0 001 \ 13974620 n 0101 | of or relating to a substance that lowers the body's normal immune response and induces immunosuppression -02746724 01 a 01 immunotherapeutic 0 001 \ 00663333 n 0101 | of or relating to immunotherapy; "various immunotherapeutic techniques have been employed with AIDS patients" -02746897 01 a 01 imperial 0 002 + 08557482 n 0101 \ 10053004 n 0101 | befitting or belonging to an emperor or empress; "imperial palace" -02747036 01 a 01 imperial 1 002 + 08405723 n 0101 \ 08405723 n 0101 | relating to or associated with an empire; "imperial colony"; "the imperial gallon was standardized legally throughout the British Empire" -02747246 01 a 01 imperial 2 001 \ 13577731 n 0101 | of or belonging to the British Imperial System of weights and measures -02747371 01 a 01 impetiginous 0 001 \ 14227613 n 0101 | of or relating to or having impetigo -02747466 01 a 02 impressionist 0 impressionistic 0 004 + 03565051 n 0201 + 00549106 n 0201 \ 03565051 n 0201 \ 03565051 n 0101 | relating to or characteristic of Impressionism; "impressionist music" -02747667 01 a 01 impressionistic 1 004 + 05916739 n 0101 + 04675314 n 0101 + 00549106 n 0101 \ 05916739 n 0101 | of or relating to or based on an impression rather than on facts or reasoning; "a surprisingly impressionistic review bearing marks of hasty composition"; "she had impressionistic memories of her childhood" -02747989 01 a 01 Incan 0 001 \ 08488833 n 0101 | of or pertaining to the Incas or their culture or empire -02748097 01 a 01 incendiary 0 001 \ 00378296 n 0101 | involving deliberate burning of property; "an incendiary fire" -02748216 01 a 01 incestuous 0 002 + 00848891 n 0101 \ 00848891 n 0101 | relating to or involving incest -02748322 01 a 01 incestuous 1 001 \ 04655442 n 0102 | resembling incest as by excessive intimacy -02748421 01 a 01 inductive 0 002 ;c 11449907 n 0000 \ 11468172 n 0102 | arising from inductance; "inductive reactance" -02748542 01 a 01 indusial 0 001 \ 13094381 n 0101 | of or relating to or being an indusium -02748635 01 a 01 industrial 0 001 \ 00923444 n 0101 | of or relating to or resulting from industry; "industrial output" -02748757 01 a 01 inertial 0 001 \ 11468763 n 0101 | of or relating to inertia -02748837 01 a 01 infantile 0 001 \ 15145586 n 0101 | of or relating to infants or infancy; "infantile paralysis" -02748952 01 a 02 inferential 0 illative 0 003 \ 05774614 n 0201 + 05774614 n 0101 \ 05774614 n 0101 | relating to or having the nature of illation or inference; "the illative faculty of the mind" -02749150 01 a 01 informational 0 001 \ 05816287 n 0101 | relating to or having the nature of information -02749257 01 a 01 inguinal 0 002 + 05597734 n 0102 \ 05597734 n 0102 | of or relating to or near the groin -02749365 01 a 01 inhalant 0 003 + 01198779 v 0101 + 00005041 v 0101 \ 00836788 n 0101 | inhaling or serving for inhalation; "an inhalant pore" -02749510 01 a 01 ink-jet 0 001 \ 03571942 n 0101 | of or relating to an ink-jet printer -02749600 01 a 01 inscriptive 0 001 \ 06405699 n 0101 | of or relating to an inscription -02749690 01 a 01 insecticidal 0 001 \ 14919948 n 0101 | of or relating to insecticide -02749778 01 a 01 institutional 0 004 + 08053576 n 0101 + 03746574 n 0104 + 03574555 n 0101 \ 08053576 n 0101 | relating to or constituting or involving an institution; "institutional policy" -02749971 01 a 02 interlinear 0 interlineal 0 002 \ 07012534 n 0201 \ 07012534 n 0101 | written between lines of text -02750090 01 a 01 intracerebral 0 001 \ 05491993 n 0101 | within the brain -02750166 01 a 01 intracranial 0 001 \ 02844273 a 0101 | within the skull -02750241 01 a 01 intraventricular 0 001 \ 05502556 n 0101 | within the system of ventricles in the brain; "intraventricular pressure" -02750377 01 a 01 intervertebral 0 001 \ 05284333 n 0101 | pertaining to the space between two vertebrae -02750483 01 a 01 insular 0 002 + 14415518 n 0102 \ 09316454 n 0101 | relating to or characteristic of or situated on an island; "insular territories"; "Hawaii's insular culture" -02750663 01 a 01 intuitionist 0 001 \ 05972264 n 0101 | of or relating to intuitionism -02750752 01 a 01 ionic 0 003 + 09315159 n 0101 ! 02751367 a 0101 \ 09315159 n 0101 | containing or involving or occurring in the form of ions; "ionic charge"; "ionic crystals"; "ionic hydrogen" -02750948 01 a 01 Ionic 1 001 \ 09042924 n 0101 | of or relating to Ionia or its inhabitants or its language -02751058 01 a 01 Ionic 2 001 \ 04699157 n 0101 | of or pertaining to the Ionic order of classical Greek architecture -02751177 01 a 01 Ionian 0 001 \ 08786283 n 0101 | of or pertaining to the ancient Ionians who lived in Attica and related territories, to their Ionic dialect of Greek, or to their culture -02751367 01 a 02 nonionic 0 nonpolar 0 002 ! 02750752 a 0101 \ 09315159 n 0101 | not ionic; "a nonionic substance" -02751484 01 a 01 iridaceous 0 002 + 12411084 n 0101 \ 12411084 n 0101 | of or pertaining to or characteristic of plants of the family Iridaceae -02751630 01 a 01 iritic 0 001 \ 05319936 n 0101 | of or relating to located near the iris of the eye -02751733 01 a 02 ischemic 0 ischaemic 0 004 + 14166118 n 0202 \ 14166118 n 0202 + 14166118 n 0101 \ 14166118 n 0101 | relating to or affected by ischemia -02751889 01 a 01 isentropic 0 001 \ 05012585 n 0102 | with unchanging entropy; at constant entropy -02751990 01 a 01 Ismaili 0 001 \ 06236492 n 0101 | of or relating to a branch of Shiism that is noted for its esoteric philosophy -02752122 01 a 01 isthmian 0 002 + 09319604 n 0101 \ 09319604 n 0101 | of or relating to or forming an isthmus -02752234 01 a 01 Jamesian 0 001 \ 11079252 n 0101 | of or relating to or characteristic of Henry James or his writing -02752354 01 a 01 Jamesian 1 001 \ 11079392 n 0101 | of or relating to or characteristic of William James or his philosophy or his teachings -02752496 01 a 01 Jeffersonian 0 002 + 11081828 n 0101 \ 11081828 n 0101 | relating to or characteristic of Thomas Jefferson or his principles or theories; "Jeffersonian democracy" -02752678 01 a 01 jet-propelled 0 001 \ 11470008 n 0101 | propelled by (or as if propelled by) a jet engine -02752787 01 a 01 jihadi 0 001 \ 00996513 n 0101 | of or relating to a jihad -02752865 01 a 01 jittery 0 002 + 07345960 n 0101 \ 07345960 n 0101 | characterized by jerky movements; "a jittery ride" -02752987 01 a 03 judicial 0 juridical 0 juridic 0 004 \ 04850117 n 0301 \ 04850117 n 0201 + 10225219 n 0101 \ 04850117 n 0101 | relating to the administration of justice or the function of a judge; "judicial system" -02753205 01 a 01 judicial 2 002 + 10225219 n 0101 \ 10225219 n 0101 | belonging or appropriate to the office of a judge; "judicial robes" -02753345 01 a 01 jumentous 0 002 + 01317089 n 0102 \ 01317089 n 0102 | smelling strongly like a beast of burden; "jumentous urine" -02753478 01 a 01 Jurassic 0 001 \ 15126595 n 0101 | of or relating to or denoting the second period of the Mesozoic era -02753600 01 a 01 pre-Jurassic 0 001 \ 15126595 n 0101 | of or relating to or denoting the time before the Jurassic period -02753724 01 a 02 juridical 2 juridic 2 002 \ 06161718 n 0202 \ 06161718 n 0102 | of or relating to the law or jurisprudence; "juridical days" -02753868 01 a 01 jurisprudential 0 002 + 06161718 n 0101 \ 06161718 n 0101 | relating to the science or philosophy of law or a system of laws -02754012 01 a 01 leaden 0 001 \ 14643467 n 0101 | made of lead; "a leaden weight" -02754096 01 a 01 legal 0 001 \ 08441203 n 0101 | of or relating to jurisprudence; "legal loophole" -02754197 01 a 01 legal 1 001 \ 00611143 n 0101 | relating to or characteristic of the profession of law; "the legal profession" -02754327 01 a 01 labial 0 001 \ 05522456 n 0101 | relating to or near the female labium -02754417 01 a 01 labial 1 002 + 07117007 n 0102 \ 05305806 n 0101 | of or relating to the lips of the mouth; "labial stops" -02754543 01 a 01 lactogenic 0 001 \ 14929350 n 0101 | inducing lactation -02754618 01 a 03 large-capitalization 0 large-capitalisation 0 large-cap 0 003 \ 00952386 n 0301 \ 00952386 n 0202 \ 00952386 n 0101 | of stocks of companies with a market capitalization of five billion dollars or more -02754839 01 a 02 lathery 0 sudsy 0 004 \ 09439213 n 0202 + 09439213 n 0103 \ 09439213 n 0103 \ 09336555 n 0101 | resembling lather or covered with lather -02754995 01 a 01 Latin-American 0 002 + 09022831 n 0101 \ 09022831 n 0101 | of or relating to the countries of Latin America or their people; "Latin-American countries"; "Latin-American music" -02755190 01 a 01 leguminous 0 002 + 11747468 n 0101 \ 11747468 n 0101 | relating to or consisting of legumes -02755301 01 a 01 leonine 0 001 \ 02129165 n 0101 | of or characteristic of or resembling a lion -02755399 01 a 01 Levitical 0 002 + 06433035 n 0101 \ 06433035 n 0101 | of or relating to the book of Leviticus in the Bible -02755525 01 a 02 lexicalized 0 lexicalised 0 002 \ 13507472 n 0201 \ 13507472 n 0101 | expressed by a word -02755634 01 a 01 life-support 0 002 \ 03663910 n 0101 \ 03664159 n 0101 | of or pertaining to equipment or methods used to sustain life -02755772 01 a 01 liliaceous 0 002 + 12423565 n 0101 \ 12423565 n 0101 | of or pertaining to or characteristic of plants of the family Liliaceae -02755918 01 a 02 limacine 0 limacoid 0 002 \ 01945685 n 0201 \ 01945685 n 0101 | of or resembling a slug -02756025 01 a 01 limnological 0 002 + 06120317 n 0101 \ 06120317 n 0101 | of or relating to limnology -02756129 01 a 01 living 0 001 \ 07945818 n 0101 | pertaining to living persons; "within living memory" -02756234 01 a 01 lobeliaceous 0 002 + 12168126 n 0101 \ 12168126 n 0101 | belonging to the family Lobeliaceae -02756346 01 a 01 local 1 002 + 08641113 n 0102 \ 08641113 n 0102 | of or belonging to or characteristic of a particular locality or neighborhood; "local customs"; "local schools"; "the local citizens"; "a local point of view"; "local outbreaks of flu"; "a local bus line" -02756620 01 a 01 locker-room 0 001 \ 03683708 n 0101 | relating to or appropriate for a locker room; "locker-room humor" -02756743 01 a 02 logogrammatic 0 logographic 0 003 \ 06840890 n 0202 + 06840890 n 0101 \ 06840890 n 0101 | of or relating to logograms or logographs -02756894 01 a 01 long-distance 0 001 \ 06274092 n 0101 | of or relating to or being a long-distance telephone call; "a long-distance call"; "a long-distance transmission line"; "a long-distance operator" -02757100 01 a 01 loopy 0 002 + 13875571 n 0101 \ 13875571 n 0101 | consisting of or covered with or having loops -02757215 01 a 02 lucifugous 0 lucifugal 0 002 \ 00862399 n 0201 \ 00862399 n 0101 | light-avoiding -02757316 01 a 01 lunar 0 001 \ 09358358 n 0101 | of or relating to or associated with the moon; "lunar surface"; "lunar module" -02757446 01 a 03 sublunar 0 sublunary 0 cislunar 0 003 \ 09358358 n 0301 \ 09358358 n 0201 \ 09358358 n 0101 | situated between the earth and the moon -02757599 01 a 04 translunar 0 translunary 0 superlunar 0 superlunary 0 004 \ 09358358 n 0401 \ 09358358 n 0301 \ 09358358 n 0201 \ 09358358 n 0101 | situated beyond the moon or its orbit around the earth; "who can imagine a translunary visitor in Times Square?" -02757863 01 a 01 lung-like 0 001 \ 05387544 n 0101 | performing functions similar to those performed by lungs -02757975 01 a 01 lunisolar 0 002 \ 09358358 n 0101 \ 09450163 n 0101 | relating to or attributed to the moon and the sun or their mutual relations -02758124 01 a 01 lupine 0 001 \ 02114100 n 0101 | of or relating to or characteristic of wolves -02758222 01 a 01 luteal 0 002 + 05518614 n 0101 \ 05518614 n 0101 | of or relating to the corpus luteum -02758328 01 a 01 macaronic 0 002 \ 06962600 n 0101 \ 07157123 n 0101 | of or containing a mixture of Latin words and vernacular words jumbled together; "macaronic verse" -02758500 01 a 01 macroeconomic 0 002 + 06150933 n 0101 \ 06150933 n 0101 | of or relating to macroeconomics -02758610 01 a 01 Malayo-Polynesian 0 001 \ 06937768 n 0101 | of or relating to the Malayo-Polynesian branch of the Austronesian languages -02758750 01 a 02 Mandaean 0 Mandean 0 004 \ 10290223 n 0202 \ 06988808 n 0202 \ 10290223 n 0101 \ 06988808 n 0101 | of or relating to the Mandaean people or their language or culture -02758935 01 a 01 mandibulate 0 001 \ 05275905 n 0102 | having mandibles -02759009 01 a 03 Manichaean 0 Manichean 0 Manichee 0 005 \ 06243575 n 0301 + 06243575 n 0201 \ 06243575 n 0201 + 06243575 n 0101 \ 06243575 n 0101 | of or relating to Manichaeism -02759190 01 a 01 manual 0 001 \ 05564590 n 0101 | of or relating to the hands; "manual dexterity" -02759290 01 a 01 Maoist 0 001 \ 06215495 n 0101 | of or relating to Maoism -02759367 01 a 01 maternal 0 001 \ 10332385 n 0101 | relating to or derived from one's mother; "maternal genes" -02759480 01 a 01 matutinal 0 001 \ 15165289 n 0101 | pertaining to or occurring in the morning; "took his matutinal walk" -02759604 01 a 01 paternal 0 001 \ 10080869 n 0101 | belonging to or inherited from one's father; "spent his childhood on the paternal farm"; "paternal traits" -02759765 01 a 01 patriarchal 0 002 + 10406266 n 0101 \ 10406266 n 0101 | relating to or characteristic of a man who is older or higher in rank -02759910 01 a 01 mealy 0 002 + 07567707 n 0101 \ 07567707 n 0101 | containing meal or made of meal -02760011 01 a 01 mecopterous 0 002 + 02161944 n 0101 \ 02162235 n 0101 | of or relating to mecopterans -02760116 01 a 01 medical 0 003 + 00142361 n 0105 + 00612160 n 0101 \ 00612160 n 0101 | relating to the study or practice of medicine; "the medical profession"; "a medical student"; "medical school" -02760316 01 a 01 biomedical 0 002 + 06047096 n 0101 \ 06047096 n 0101 | relating to the activities and applications of science to clinical medicine; "biomedical research laboratory" -02760500 01 a 01 premedical 0 001 \ 00612160 n 0101 | preparing for the study of medicine; "premedical students" -02760615 01 a 01 medicolegal 0 002 \ 00612160 n 0101 \ 08441203 n 0101 | pertaining to legal aspects of the practice of medicine (as malpractice or patient consent for operations or patient information) -02760820 01 a 01 medullary 0 002 + 05490799 n 0101 \ 05490799 n 0101 | of or relating to the medulla of any body part -02760940 01 a 01 medullary 2 002 + 05495172 n 0102 \ 05495172 n 0102 | of or relating to the medulla oblongata -02761053 01 a 01 medullary 1 001 \ 05285623 n 0101 | containing or consisting of or resembling bone marrow -02761162 01 a 01 medusoid 0 001 \ 01910252 n 0101 | relating to or resembling a medusa -02761251 01 a 01 meningeal 0 002 + 05326900 n 0102 \ 05326900 n 0102 | relating to the meninges -02761349 01 a 01 menopausal 0 002 + 15154462 n 0101 \ 15154462 n 0101 | of or relating to the menopause -02761455 01 a 01 Merovingian 0 001 \ 08156200 n 0101 | of or relating to the Merovingian dynasty or its members -02761569 01 a 01 Prakritic 0 003 + 06973505 n 0101 + 06973092 n 0101 \ 06973092 n 0101 | of or relating to Prakrit -02761686 01 a 01 Procrustean 0 001 \ 09569709 n 0101 | of or relating to the mythical giant Procrustes or the mode of torture practiced by him -02761831 01 a 01 provencal 0 001 \ 08944960 n 0101 | of or relating to Provence or its people or their culture -02761944 01 a 01 pre-Christian 0 001 \ 15249096 n 0101 | of or relating to or being the time before the beginning of the Christian era -02762081 01 a 02 prejudicial 0 prejudicious 0 004 + 06201908 n 0202 \ 06201908 n 0202 + 06201908 n 0102 \ 06201908 n 0102 | tending to favor preconceived ideas; "the presence of discriminatory or prejudicial attitudes in the white population" -02762326 01 a 01 premenopausal 0 001 \ 15154462 n 0101 | prior to menopause -02762404 01 a 02 presocratic 0 pre-Socratic 0 002 \ 11307422 n 0201 \ 11307422 n 0101 | before the time of Socrates -02762522 01 a 01 postdiluvian 0 001 \ 11455386 n 0102 | existing or occurring after Noah's flood -02762621 01 a 01 postdoctoral 0 001 \ 10456696 n 0101 | of or relating to study or research that is done after work for the doctoral degree has been completed -02762782 01 a 01 postexilic 0 001 \ 00208141 n 0101 | of or relating to the period in Jewish history after 539 BC (after the Babylonian Captivity) -02762931 01 a 01 postglacial 0 001 \ 15255195 n 0102 | relating to or occurring during the time following a glacial period -02763056 01 a 01 postmenopausal 0 001 \ 15154462 n 0101 | subsequent to menopause -02763140 01 a 01 postpositive 0 001 \ 06483702 n 0101 | (of a modifier) placed after another word -02763240 01 a 01 pouched 0 001 \ 05516848 n 0101 | having a pouch -02763308 01 a 01 pteridological 0 002 + 06074613 n 0101 \ 06074613 n 0101 | of or relating to the study of ferns -02763423 01 a 01 meiotic 0 002 + 13512725 n 0101 \ 13512725 n 0101 | of or relating to meiosis -02763520 01 a 02 mercuric 0 mercurous 0 005 ;c 06084469 n 0000 + 14645346 n 0201 \ 14645346 n 0201 + 14645346 n 0101 \ 14645346 n 0101 | of or containing mercury -02763684 01 a 01 meretricious 0 002 ;u 07073447 n 0000 \ 10485440 n 0101 | like or relating to a prostitute; "meretricious relationships" -02763824 01 a 01 meridional 0 002 + 08598823 n 0101 \ 08598823 n 0101 | of or relating to a meridian -02763927 01 a 01 metrological 0 002 + 06135806 n 0101 \ 06135806 n 0101 | of or relating to metrology -02764031 01 a 01 micaceous 0 002 + 14681555 n 0101 \ 14681555 n 0101 | hydrous silicates of or relating to or resembling mica -02764159 01 a 01 microeconomic 0 001 \ 06151108 n 0101 | of or relating to microeconomics -02764251 01 a 01 military 0 001 \ 06248043 n 0101 | of or relating to the study of the principles of warfare; "military law" -02764378 01 a 01 paramilitary 0 002 + 08207209 n 0101 \ 08207209 n 0101 | of or relating to a group of civilians organized to function like or to assist a military unit -02764549 01 a 01 minimalist 0 001 \ 08469233 n 0101 | of or relating to artistic minimalism -02764643 01 a 01 ministerial 1 004 + 10320863 n 0101 + 10320695 n 0101 + 00585810 n 0101 \ 10320695 n 0101 | of or relating to a government minister or ministry; "ministerial decree" -02764828 01 a 01 ministerial 2 002 + 09983572 n 0103 \ 09983572 n 0103 | of or relating to a minister of religion or the minister's office; "ministerial duties" -02764991 01 a 01 minty 0 001 \ 07606278 n 0101 | relating to or suggestive of mint -02765076 01 a 01 Mishnaic 0 001 \ 06462807 n 0101 | of or relating to the Mishna (the first part of the Talmud) -02765190 01 a 01 omissive 0 002 + 00614999 v 0103 \ 05706954 n 0101 | characterized by omissions; "omissive crimes" -02765308 01 a 02 miotic 0 myotic 0 004 + 00865808 n 0204 \ 03772881 n 0202 + 00865808 n 0103 \ 03772881 n 0101 | of or relating to or causing constriction of the pupil of the eye; "a miotic drug" -02765506 01 a 02 missionary 0 missional 0 002 \ 08403225 n 0201 \ 08403225 n 0101 | relating to or connected to a religious mission -02765640 01 a 01 monocarboxylic 0 001 \ 14790796 n 0101 | containing one carboxyl group -02765730 01 a 01 monoclonal 0 001 \ 07940242 n 0101 | forming or derived from a single clone -02765825 01 a 02 Monophysite 0 Monophysitic 0 003 + 06189776 n 0201 \ 06189776 n 0201 \ 06189776 n 0101 | of or relating to Monophysitism -02765965 01 a 01 monotypic 0 003 ;c 06037666 n 0000 + 08109772 n 0101 \ 08109772 n 0101 | consisting of only one type -02766085 01 a 01 moraceous 0 002 + 12398682 n 0101 \ 12398682 n 0101 | of or pertaining to or characteristic of plants of the family Moraceae -02766229 01 a 01 morbilliform 0 001 \ 14123044 n 0103 | of a rash that resembles that of measles -02766328 01 a 01 motivational 0 004 + 14578471 n 0101 + 00070641 n 0101 + 00023773 n 0101 \ 00023773 n 0101 | of or relating to motivation -02766469 01 a 02 mousy 0 mousey 0 004 + 02330245 n 0201 \ 02330245 n 0201 + 02330245 n 0101 \ 02330245 n 0101 | infested with mice -02766602 01 a 01 myalgic 0 002 + 14329040 n 0101 \ 14329040 n 0101 | of or relating to myalgia -02766699 01 a 02 myelinated 0 medullated 0 003 \ 14957893 n 0203 \ 14957893 n 0101 ! 02766848 a 0101 | (of neurons) covered with a layer of myelin -02766848 01 a 01 unmyelinated 0 002 ! 02766699 a 0101 \ 14957893 n 0101 | (of neurons) not myelinated -02766952 01 a 01 myopathic 0 002 + 14209201 n 0101 \ 14209201 n 0101 | of or relating to any disease of the muscles that is not caused by nerve dysfunction -02767110 01 a 01 narcoleptic 0 004 + 10345556 n 0101 + 03808424 n 0101 + 14307468 n 0101 \ 14307468 n 0101 | of or relating to narcolepsy -02767250 01 a 01 nasopharyngeal 0 002 + 05528854 n 0101 \ 05528854 n 0101 | of or relating to or located near the nasopharynx -02767378 01 a 01 natal 0 001 \ 07320302 n 0101 | relating to or accompanying birth; "natal injuries"; "natal day"; "natal influences" -02767514 01 a 01 natal 1 001 \ 05559256 n 0102 | of or relating to the buttocks -02767596 01 a 01 natriuretic 0 002 + 14270241 n 0101 \ 14270241 n 0101 | of or relating to natriuresis -02767701 01 a 01 naval 0 002 + 08191701 n 0101 \ 08191701 n 0101 | connected with or belonging to or used in a navy; "naval history"; "naval commander"; "naval vessels" -02767872 01 a 01 Nazarene 0 002 \ 08794193 n 0101 \ 10349670 n 0101 | of or relating to the town of Nazareth or its inhabitants -02768002 01 a 01 Nazarene 1 001 \ 10349836 n 0101 | of or relating to the Nazarenes or their religion -02768106 01 a 01 neonatal 0 001 \ 10353016 n 0101 | relating to or affecting the infant during the first month after birth; "neonatal care"; "the neonatal period" -02768271 01 a 01 neoplastic 0 002 + 14235200 n 0103 \ 14235200 n 0103 | of or related to or having the properties of a neoplasm; "neoplastic cells" -02768421 01 a 02 neotenic 0 neotenous 0 004 + 14569683 n 0201 \ 06198083 n 0201 + 06198083 n 0101 \ 06198083 n 0101 | of or relating to or characterized by neoteny; "neotenic development" -02768611 01 a 01 Nestorian 0 003 + 11204409 n 0101 \ 11204409 n 0101 \ 06190305 n 0101 | relating to Nestorius or Nestorianism -02768740 01 a 01 New_Caledonian 0 002 + 08844108 n 0101 \ 08844108 n 0101 | of or relating to New Caledonia -02768850 01 a 01 Noachian 0 001 \ 11208431 n 0101 | of or relating to Noah or his time; "Noachian deluge" -02768958 01 a 01 nominal 0 002 ;c 06174404 n 0000 \ 06317862 n 0101 | pertaining to a noun or to a word group that functions as a noun; "nominal phrase"; "noun phrase" -02769128 01 a 01 nominal 1 001 \ 06333653 n 0101 | relating to or constituting or bearing or giving a name; "the Russian system of nominal brevity"; "a nominal lists of priests"; "taxable males as revealed by the nominal rolls" -02769358 01 a 01 nominalistic 0 002 + 05974156 n 0101 \ 05974156 n 0101 | of or relating to nominalism -02769463 01 a 01 nominative 0 002 ;c 06174404 n 0000 \ 06311160 n 0101 | serving as or indicating the subject of a verb and words identified with the subject of a copular verb; "nominative noun endings"; "predicate nominative" -02769692 01 a 01 North_Vietnamese 0 001 \ 09163584 n 0101 | of or relating to North Vietnam or its people or culture -02769811 01 a 01 nosocomial 0 001 \ 03540595 n 0101 | taking place or originating in a hospital; "nosocomial infection" -02769933 01 a 03 numeral 0 numerical 0 numeric 0 004 \ 13582013 n 0301 + 13582013 n 0201 \ 13582013 n 0201 \ 13582013 n 0101 | of or relating to or denoting numbers; "a numeral adjective" -02770123 01 a 01 numerological 0 002 + 06248530 n 0101 \ 06248530 n 0101 | of or relating to numerology -02770229 01 a 01 Numidian 0 002 + 08707710 n 0101 \ 08707710 n 0101 | of or relating to ancient Numidia or its people or culture -02770360 01 a 01 numinous 0 002 + 10366484 n 0101 \ 10366484 n 0101 | of or relating to or characteristic of a numen -02770479 01 a 01 oleaceous 0 002 + 12299988 n 0101 \ 12299988 n 0101 | of or pertaining to or characteristic of trees or shrubs of the olive family -02770629 01 a 02 olfactory 0 olfactive 0 002 \ 05658603 n 0201 \ 05658603 n 0101 | of or relating to olfaction -02770742 01 a 02 oligarchic 0 oligarchical 0 005 + 08362455 n 0201 \ 08362455 n 0201 + 08362455 n 0101 + 10377185 n 0101 \ 08362455 n 0101 | of or relating to or supporting or characteristic of an oligarchy -02770951 01 a 02 one-humped 0 single-humped 0 002 \ 13894434 n 0203 \ 13894434 n 0103 | having one hump; "a one-humped camel" -02771079 01 a 01 oneiric 0 001 \ 05768553 n 0101 | of or relating to or suggestive of dreams -02771174 01 a 01 onomastic 0 002 + 06178995 n 0101 \ 06178995 n 0101 | of or related to onomastics; "he published a collection of his onomastic essays" -02771328 01 a 01 on-the-job 0 001 \ 00582388 n 0103 | relating to or associated with a job or employment; "on-the-job training"; "on-the-job requirements" -02771485 01 a 01 oral 0 001 \ 05302499 n 0101 | of or relating to or affecting or for use in the mouth; "oral hygiene"; "an oral thermometer"; "an oral vaccine" -02771648 01 a 01 orb-weaving 0 001 \ 01772782 n 0103 | of spiders who weave circular webs -02771740 01 a 01 oropharyngeal 0 002 + 05529012 n 0101 \ 05529012 n 0101 | of or relating to or located near the oropharynx -02771866 01 a 01 Orphic 0 002 + 09571914 n 0101 \ 09571914 n 0101 | ascribed to Orpheus or characteristic of ideas in works ascribed to Orpheus -02772012 01 a 01 Orwellian 0 002 + 11217479 n 0101 \ 11217479 n 0101 | of or relating to the works of George Orwell (especially his picture of a future totalitarian state) -02772186 01 a 04 pachydermatous 0 pachydermal 0 pachydermic 0 pachydermous 0 008 + 02453108 n 0401 \ 02453108 n 0401 + 02453108 n 0301 \ 02453108 n 0301 + 02453108 n 0201 \ 02453108 n 0201 + 02453108 n 0101 \ 02453108 n 0101 | of or relating to or characteristic of pachyderms -02772465 01 a 01 packable 0 001 \ 03870546 n 0101 | capable of being packed -02772543 01 a 01 palatoglossal 0 002 \ 05309725 n 0101 \ 05301072 n 0103 | relating to the palate and tongue -02772654 01 a 02 paleontological 0 palaeontological 0 004 + 06073888 n 0202 \ 06073888 n 0202 + 06073888 n 0101 \ 06073888 n 0101 | of or relating to paleontology -02772819 01 a 01 Palladian 0 002 + 11221495 n 0101 \ 11221495 n 0101 | referring to or relating to or having the style of architecture created by Andrea Palladio; "the much imitated arch and column compositions known as the Palladian motif" -02773062 01 a 02 palmar 0 volar 0 005 \ 05565696 n 0201 \ 05577190 n 0201 + 05565696 n 0101 \ 05565696 n 0101 \ 05577190 n 0101 | relating to the palm of the hand or the sole of the foot; "the volar surface"; "the palmar muscle" -02773293 01 a 01 palpatory 0 002 + 01210352 v 0101 \ 00143885 n 0101 | relating to or involving palpation -02773401 01 a 01 palpebrate 0 001 \ 05313822 n 0103 | having eyelids -02773472 01 a 01 panicled 0 002 ;c 06066555 n 0000 \ 13132656 n 0101 | having panicles; occurring in panicles; "a panicled inflorescence" -02773612 01 a 01 papilliform 0 001 \ 05473735 n 0101 | shaped like a papilla -02773691 01 a 01 paradigmatic 2 003 + 06309684 n 0102 ! 02808653 a 0101 \ 06309684 n 0102 | related as members of a substitution class; "paradigmatic word associations" -02773862 01 a 01 paramedical 0 002 + 10398176 n 0102 + 10398176 n 0101 | of or denoting a person who assists physicians and nurses or is trained physicians and nurses in their activities; "ambulance drivers are paramedical to give emergency medical aid; "ambulance drivers are paramedical personnel" -02774164 01 a 01 paranasal 0 001 \ 05528604 n 0101 | adjacent to the nasal cavities; "paranasal sinus" -02774269 01 a 02 parhelic 0 parheliacal 0 003 \ 11487732 n 0201 + 11487732 n 0101 \ 11487732 n 0101 | relating to or resembling a parhelion -02774411 01 a 01 parliamentary 0 002 + 08319198 n 0101 \ 08319198 n 0101 | relating to or having the nature of a parliament; "parliamentary reform"; "a parliamentary body" -02774585 01 a 01 parous 0 002 + 14047171 n 0102 \ 14047171 n 0101 | having given birth to one or more viable children -02774705 01 a 01 parotid 0 001 \ 05533212 n 0101 | relating to or located near the parotid gland -02774804 01 a 01 paroxysmal 0 002 + 14082788 n 0101 \ 14082788 n 0101 | accompanied by or of the nature of paroxysms -02774923 01 a 01 paschal 0 001 \ 15191401 n 0101 | of or relating to Passover or Easter; "paschal lamb" -02775029 01 a 01 passerine 0 003 + 01524359 n 0101 ! 02775175 a 0101 \ 01524359 n 0101 | relating to or characteristic of the passeriform birds -02775175 01 a 01 nonpasserine 0 002 ! 02775029 a 0101 \ 01524359 n 0101 | relating to or characteristic of birds that are not perching birds -02775318 01 a 01 Pauline 0 001 \ 11225661 n 0101 | relating to Paul the Apostle or his doctrines -02775417 01 a 01 peacekeeping 0 001 \ 00980904 n 0101 | of or relating to the preservation of peace between hostile groups by international military forces; "a peacekeeping force" -02775599 01 a 01 peaty 0 002 + 14689493 n 0101 \ 14689493 n 0101 | of or pertaining to or of the nature of peat -02775713 01 a 01 perigonal 0 001 \ 11692265 n 0104 | of or relating to a perigone -02775797 01 a 01 perithelial 0 002 + 05327652 n 0101 \ 05327652 n 0101 | of or relating to the tissue layer around small blood vessels -02775934 01 a 02 monetary 0 pecuniary 0 004 \ 13384557 n 0201 + 13384877 n 0101 + 13384557 n 0101 \ 13384557 n 0101 | relating to or involving money; "monetary rewards"; "he received thanks but no pecuniary compensation for his services" -02776174 01 a 01 pedal 0 001 \ 05563034 n 0101 | of or relating to the feet; "the word for a pedal extremity is `foot'" -02776296 01 a 01 pectineal 0 001 \ 05278714 n 0101 | of or relating to the pubis -02776379 01 a 01 pemphigous 0 002 + 14230800 n 0101 \ 14230800 n 0101 | of or relating to or manifesting pemphigus -02776496 01 a 01 petaloid 0 001 \ 11690455 n 0101 | resembling a flower petal -02776576 01 a 01 phagocytic 0 002 + 05450888 n 0101 \ 05450888 n 0101 | capable of functioning as a phagocyte -02776688 01 a 01 phalangeal 0 002 + 05278584 n 0101 \ 05278584 n 0101 | of or relating to the bones of the fingers or toes -02776813 01 a 01 Pharaonic 0 002 + 10421016 n 0101 \ 10421016 n 0101 | of or relating to the ancient Egyptian kings -02776931 01 a 01 Phoenician 0 001 \ 08919693 n 0101 | of or relating to or characteristic of Phoenicia or its inhabitants -02777055 01 a 01 phonogramic 0 002 + 06821889 n 0101 \ 06821889 n 0101 | of or relating to a phonogram -02777160 01 a 02 phonological 0 phonologic 0 004 + 06177450 n 0201 \ 06177450 n 0201 + 06177450 n 0101 \ 06177450 n 0101 | of or relating to phonology; "the phonological component of language" -02777355 01 a 01 photomechanical 0 003 + 13537176 n 0101 + 05666530 n 0101 \ 13537176 n 0101 | of or relating to or involving various methods of using photography to make plates for printing -02777548 01 a 02 photometric 0 photometrical 0 003 + 01003272 n 0201 \ 01003272 n 0201 \ 01003272 n 0101 | of or relating to photometry -02777686 01 a 01 photosynthetic 0 003 + 13537429 n 0101 ! 02777831 a 0101 \ 13537429 n 0101 | relating to or using or formed by photosynthesis -02777831 01 a 01 nonphotosynthetic 0 002 ! 02777686 a 0101 \ 13537429 n 0101 | not photosynthetic -02777931 01 a 01 phreatic 0 001 \ 14847503 n 0101 | of or relating to ground water -02778016 01 a 01 phrenological 0 002 + 06045847 n 0101 \ 06045847 n 0101 | of or relating to phrenology -02778122 01 a 01 pictographic 0 002 + 06840530 n 0101 \ 06840530 n 0101 | consisting of or characterized by the use of pictographs; "a pictographic script"; "pictographic stage in the development of writing" -02778332 01 a 01 plagioclastic 0 002 + 14865316 n 0101 \ 14865316 n 0101 | of or relating to plagioclase -02778439 01 a 01 pilar 0 002 + 05254393 n 0102 \ 05254393 n 0102 | of or relating to a hair -02778533 01 a 01 pilosebaceous 0 002 \ 05518257 n 0101 \ 05328232 n 0101 | of or relating to a hair follicle and its sebaceous gland -02778668 01 a 02 planetal 0 planetary 0 005 + 09394007 n 0201 \ 09394007 n 0201 + 09394646 n 0101 + 09394007 n 0101 \ 09394007 n 0101 | of or relating to or resembling the physical or orbital characteristics of a planet or the planets; "planetary motion"; "planetary year" -02778943 01 a 01 planktonic 0 002 + 01383638 n 0101 \ 01383638 n 0101 | of or relating to plankton -02779044 01 a 01 planographic 0 002 + 06679457 n 0102 \ 06679457 n 0102 | of or relating to or involving planography -02779163 01 a 01 plantar 0 001 \ 05577190 n 0101 | relating to or occurring on the undersurface of the foot; "plantar warts can be very painful" -02779310 01 a 01 interplanetary 0 001 \ 09394007 n 0101 | between or among planets; "interplanetary travel" -02779420 01 a 01 penal 0 001 \ 01160342 n 0101 | of or relating to punishment; "penal reform"; "penal code" -02779530 01 a 01 penicillin-resistant 0 001 \ 03910033 n 0101 | unaffected by penicillin; "penicillin-resistant bacteria" -02779654 01 a 01 penumbral 0 001 \ 13985219 n 0101 | of or pertaining to the region of partial shadow around an umbra -02779774 01 a 01 physical 0 002 + 06090869 n 0101 \ 06090869 n 0101 | relating to the sciences dealing with matter and energy; especially physics; "physical sciences"; "physical laws" -02779960 01 a 01 plane-polarized 0 001 \ 11492014 n 0101 | (of a moving wave) vibrating in a single plane; "plane-polarized light" -02780093 01 a 02 planetary 2 terrestrial 2 002 \ 09270894 n 0201 \ 09270894 n 0101 | of or relating to or characteristic of the planet Earth or its inhabitants; "planetary rumblings and eructations"- L.C.Eiseley ; "the planetary tilt"; "this terrestrial ball" -02780355 01 a 01 extraterrestrial 0 002 + 09484465 n 0102 \ 09270894 n 0101 | originating or located or occurring outside Earth or its atmosphere; "is there extraterrestrial life?" -02780538 01 a 01 Platonistic 0 002 + 05974564 n 0101 \ 05974564 n 0101 | pertaining to or characteristic of or in accordance with Platonism -02780680 01 a 01 Platonic 0 002 + 11239271 n 0101 \ 11239271 n 0101 | of or relating to or characteristic of Plato or his philosophy; "Platonic dialogues" -02780837 01 a 01 pleomorphic 0 003 + 11492833 n 0102 + 11491816 n 0101 \ 11491816 n 0101 | relating to or characterized by pleomorphism -02780975 01 a 01 plumbaginaceous 0 002 + 12097927 n 0101 \ 12097927 n 0101 | of or pertaining to or characteristic of plants of the family Plumbaginaceae -02781131 01 a 02 plumbic 0 plumbous 0 002 \ 14643467 n 0201 \ 14643467 n 0101 | relating to or consisting of lead -02781247 01 a 02 plutocratic 0 plutocratical 0 004 + 08362775 n 0201 \ 10443955 n 0201 + 08362775 n 0101 \ 10443955 n 0101 | of or relating to or characteristic of a plutocrat -02781425 01 a 01 polarographic 0 002 + 00647147 n 0101 \ 00647147 n 0101 | of or involving polarography -02781531 01 a 01 polemoniaceous 0 002 + 12808933 n 0101 \ 12808933 n 0102 | of or pertaining to or characteristic of plants of the family Polemoniaceae -02781685 01 a 01 politically_correct 0 001 \ 04899713 n 0101 | exhibiting political correctness -02781783 01 a 01 politically_incorrect 0 001 \ 04901754 n 0101 | exhibiting political incorrectness -02781885 01 a 02 polydactyl 0 polydactylous 0 004 ;c 06037666 n 0000 + 14471724 n 0201 \ 05566097 n 0202 \ 05566097 n 0102 | of or relating to a person (or other vertebrate) having more than the normal number of digits -02782106 01 a 01 polyhedral 0 002 + 13883885 n 0101 \ 13883885 n 0101 | of or relating to or resembling a polyhedron -02782225 01 a 01 polymeric 0 002 + 14994328 n 0101 \ 14994328 n 0101 | of or relating to or consisting of a polymer; "a polymeric compound" -02782367 01 a 02 pompous 0 ceremonious 0 003 \ 01026897 n 0201 + 04815002 n 0101 \ 04815002 n 0101 | characterized by pomp and ceremony and stately display -02782525 01 a 01 popliteal 0 001 \ 05573602 n 0101 | of or relating to the area behind the knee joint -02782629 01 a 01 positionable 0 001 \ 01051331 n 0104 | capable of being positioned -02782715 01 a 01 positional 0 001 \ 08621598 n 0101 | of or relating to or determined by position -02782815 01 a 03 positivist 0 positivistic 0 positive 0 006 + 05166805 n 0302 \ 05993367 n 0301 + 05993367 n 0201 \ 05993367 n 0201 + 10456138 n 0101 \ 05993367 n 0101 | of or relating to positivism; "positivist thinkers"; "positivist doctrine"; "positive philosophy" -02783085 01 a 02 pragmatic 0 pragmatical 0 004 + 05974798 n 0201 \ 05974798 n 0201 + 05974798 n 0101 \ 05974798 n 0101 | of or concerning the theory of pragmatism -02783250 01 a 01 prandial 0 001 \ 07573696 n 0101 | of or relating to a meal -02783329 01 a 01 preanal 0 001 \ 05538016 n 0101 | situated in front of the anus -02783412 01 a 02 preclinical 0 presymptomatic 0 002 \ 00153105 n 0201 \ 00153105 n 0101 | of or relating to the early phases of a disease when accurate diagnosis is not possible because symptoms of the disease have not yet appeared -02783646 01 a 01 precancerous 0 001 \ 14239918 n 0101 | of or relating to a growth that is not malignant but is likely to become so if not treated -02783795 01 a 01 precordial 0 002 + 05493002 n 0101 \ 05493002 n 0101 | in front of the heart; involving the precordium -02783917 01 a 01 predestinarian 0 002 + 05966129 n 0101 \ 05966129 n 0101 | of or relating to predestination; holding the doctrine of predestination -02784068 01 a 01 prelapsarian 0 001 \ 07362386 n 0102 | of or relating to the time before the Fall of Adam and Eve -02784185 01 a 01 premenstrual 0 001 \ 13513747 n 0101 | of or relating to or occurring during the period just before menstruation -02784317 01 a 01 presentational 0 003 ;c 06136258 n 0000 ;c 06158346 n 0000 \ 06891022 n 0101 | of or relating to a presentation (especially in psychology or philosophy); "what Whitehead calls `perception in the presentational immediacy'" -02784558 01 a 01 pressor 0 002 ;c 06080522 n 0000 \ 11429968 n 0101 | increasing (or tending to increase) blood pressure; "pressor reflexes" -02784701 01 a 02 prodromal 0 prodromic 0 004 + 14303877 n 0201 \ 14303877 n 0201 + 14303877 n 0101 \ 14303877 n 0101 | symptomatic of the onset of an attack or a disease -02784873 01 a 01 professorial 0 002 + 10480730 n 0101 \ 10480730 n 0101 | relating to or characteristic of professors; "professorial demeanor" -02785018 01 a 01 prolusory 0 001 \ 06397903 n 0103 | of or relating to or having the character of a prolusion -02785130 01 a 01 propagative 0 003 + 00055871 v 0101 + 00055539 v 0101 \ 00849982 n 0103 | characterized by propagation or relating to propagation -02785279 01 a 02 prostate 0 prostatic 0 003 + 05331404 n 0202 \ 05331404 n 0201 \ 05331404 n 0101 | relating to the prostate gland -02785412 01 a 01 prosthetic 0 002 + 04013729 n 0101 \ 04013729 n 0101 | relating to or serving as a prosthesis -02785525 01 a 01 prosthetic 1 003 + 06049091 n 0101 + 04013729 n 0101 \ 06049091 n 0101 | of or relating to prosthetics -02785647 01 a 01 prosthodontic 0 002 + 06049250 n 0101 \ 06049250 n 0101 | of or relating to prosthodontics -02785757 01 a 01 proteinaceous 0 002 + 14728724 n 0101 \ 14728724 n 0101 | relating to or of the nature of protein -02785874 01 a 01 provincial 0 002 + 08654360 n 0102 \ 08654360 n 0102 | of or associated with a province; "provincial government" -02786006 01 a 01 pubertal 0 002 + 15148295 n 0101 \ 15148295 n 0101 | of or related to puberty -02786103 01 a 01 pupillary 0 002 + 05320183 n 0101 \ 05320183 n 0101 | of or relating to the pupil of the eye -02786215 01 a 01 Puranic 0 002 + 06463786 n 0101 \ 06463786 n 0101 | of or relating to the Purana -02786315 01 a 01 putrid 0 003 + 14561102 n 0102 + 14488200 n 0101 \ 14560926 n 0101 | of or relating to or attended by putrefaction; "putrid decomposition" -02786473 01 a 01 rabid 0 001 \ 14271667 n 0101 | of or infected by rabies -02786549 01 a 01 radial-ply 0 001 \ 03971422 n 0101 | of or relating to automobile tires that have a strip under the tread and relatively little stiffening in the sidewalls; "radial-ply tires" -02786744 01 a 01 radiological 0 003 + 06062407 n 0101 + 00903309 n 0102 \ 00903309 n 0102 | of or relating to radiology -02786866 01 a 02 radiotelephonic 0 radiophonic 0 006 + 04044498 n 0202 \ 06276501 n 0202 + 06276501 n 0102 + 06276501 n 0101 + 04044498 n 0101 \ 06276501 n 0102 | relating to or by means of radiotelephony -02787073 01 a 01 rationalistic 0 002 + 05975473 n 0101 \ 05975473 n 0101 | of or relating to the philosophical doctrine of rationalism -02787210 01 a 01 ratty 0 001 \ 02331046 n 0101 | of or characteristic of rats -02787290 01 a 01 realistic 0 002 + 10509161 n 0101 \ 05975659 n 0101 | of or relating to the philosophical doctrine of realism; "a realistic system of thought" -02787452 01 a 01 real-time 0 002 ;c 06128570 n 0000 \ 15298695 n 0101 | of or relating to computer systems that update information at the same rate they receive information -02787627 01 a 01 recoilless 0 001 \ 07350754 n 0101 | of or being a weapon that is designed to minimize recoil -02787740 01 a 01 recombinant 0 001 \ 14831479 n 0102 | of or relating to recombinant DNA -02787831 01 a 01 recreational 0 003 + 00401783 n 0102 + 00426928 n 0102 \ 00426928 n 0102 | of or relating to recreation; "a recreational area with a pool and ball fields" -02788005 01 a 02 refractive 0 refractile 0 006 \ 11503287 n 0201 + 05011568 n 0102 + 02111838 v 0101 + 00920929 v 0101 + 05011568 n 0101 \ 11503287 n 0101 | of or relating to or capable of refraction; "the refractive characteristics of the eye" -02788252 01 a 01 refractory-lined 0 001 \ 03404900 n 0102 | (of furnaces) lined with material that has a high melting point -02788378 01 a 01 republican 1 002 + 10522633 n 0101 \ 08263113 n 0101 | relating to or belonging to the Republican Party; "a Republican senator"; "Republican party politics" -02788554 01 a 01 resinlike 0 001 \ 14894140 n 0101 | resembling resin in properties or texture -02788651 01 a 01 revenant 0 001 \ 10526441 n 0101 | of or relating to or typical of a revenant; "revenant shrieks and groans" -02788779 01 a 01 Rhodesian 0 002 + 09167101 n 0103 \ 09167101 n 0103 | of or relating to the former country of Rhodesia (now Zimbabwe) -02788916 01 a 01 rocket-propelled 0 001 \ 11498679 n 0101 | propelled by (or as if propelled by) a rocket engine -02789031 01 a 02 Romansh 0 Rumansh 0 002 \ 06968174 n 0202 \ 06968174 n 0101 | of or relating to the Romansh language -02789151 01 a 03 romantic 0 romanticist 0 romanticistic 0 005 + 06155075 n 0301 \ 06155075 n 0301 \ 06155075 n 0201 + 06155075 n 0101 \ 06155075 n 0101 | belonging to or characteristic of Romanticism or the Romantic Movement in the arts; "romantic poetry" -02789409 01 a 02 ropy 0 ropey 0 004 + 04108268 n 0201 \ 04108268 n 0201 + 04108268 n 0101 \ 04108268 n 0101 | of or resembling rope (or ropes) in being long and strong -02789579 01 a 01 royal 0 001 \ 10628644 n 0103 | of or relating to or indicative of or issued or performed by a king or queen or other monarch; "the royal party"; "the royal crest"; "by royal decree"; "a royal visit" -02789798 01 a 01 royal 1 001 \ 08153437 n 0101 | established or chartered or authorized by royalty; "the Royal Society" -02789920 01 a 01 ruminant 0 003 + 01174555 v 0101 ! 02790134 a 0101 \ 02398732 n 0101 | related to or characteristic of animals of the suborder Ruminantia or any other animal that chews a cud; "ruminant mammals" -02790134 01 a 01 nonruminant 0 002 ! 02789920 a 0101 \ 02398732 n 0101 | not ruminant -02790222 01 a 01 agricultural 0 001 \ 00916464 n 0102 | relating to or used in or promoting agriculture or farming; "agricultural engineering"; "modern agricultural (or farming) methods"; "agricultural (or farm) equipment"; "an agricultural college" -02790474 01 a 03 aquicultural 0 aquacultural 0 hydroponic 0 006 + 00918976 n 0301 \ 00918976 n 0302 + 00916147 n 0201 \ 00918976 n 0202 + 00918976 n 0102 \ 00918976 n 0102 | of or relating to aquiculture; "aquacultural methods"; "hydroponic lettuce" -02790726 01 a 01 rural 1 002 + 04920237 n 0101 \ 08644722 n 0101 | of or relating to the countryside as opposed to the city; "rural electrification"; "rural free delivery" -02790900 01 a 01 Ruritanian 0 002 + 05631681 n 0101 \ 05631681 n 0101 | of or pertaining to or characteristic of Ruritania (or any other imaginary country) -02791058 01 a 01 Sabine 0 001 \ 09717233 n 0101 | of or relating to or characteristic of the Sabines -02791161 01 a 01 saccadic 0 002 + 00338271 n 0101 \ 00338271 n 0101 | of or related to the rapid movement of the eyes between points of fixation -02791308 01 a 02 sacculated 0 sacculate 0 002 \ 05322570 n 0201 \ 05322570 n 0101 | formed with or having saclike expansions; "the alimentary tract is partially sacculated" -02791483 01 a 01 sadomasochistic 0 002 + 07494018 n 0101 \ 07494018 n 0101 | of or relating to sadomasochism; "sadomasochistic sexual practices" -02791630 01 a 01 Sadducean 0 002 + 10545524 n 0101 \ 10545524 n 0101 | of or relating to the Sadducees -02791735 01 a 01 Saharan 0 001 \ 09172283 n 0101 | of or relating to or located in the Sahara Desert -02791838 01 a 01 sapiens 0 001 \ 02474777 n 0101 | of or relating to or characteristic of Homo sapiens -02791943 01 a 02 sarcolemmic 0 sarcolemnous 0 003 \ 05427570 n 0201 + 05427570 n 0101 \ 05427570 n 0101 | of or relating to sarcolemma -02792080 01 a 01 sartorial 0 003 + 10689564 n 0103 \ 10689564 n 0101 \ 00618436 n 0101 | of or relating to a tailor or to tailoring -02792214 01 a 01 sartorial 1 002 + 05589896 n 0101 \ 05589896 n 0101 | of or relating to the sartorius muscle -02792326 01 a 01 scalene 1 001 \ 05590144 n 0102 | of or relating to any of the scalene muscles -02792424 01 a 01 scalene 2 002 ;c 06000644 n 0000 \ 13880704 n 0101 | of a triangle having three sides of different lengths -02792550 01 a 01 scapular 0 002 + 05279688 n 0101 \ 05279688 n 0101 | relating to or near the shoulder blade -02792661 01 a 01 scapulohumeral 0 002 \ 05279688 n 0101 \ 05593181 n 0101 | relating to the shoulder blade and upper arm bone -02792789 01 a 01 scenic 0 001 \ 04145056 n 0101 | of or relating to the stage or stage scenery; "scenic design" -02792903 01 a 01 scholastic 0 006 + 15203229 n 0101 + 08277393 n 0101 + 08276720 n 0101 + 05757536 n 0101 + 04146050 n 0101 \ 08276720 n 0101 | of or relating to schools; "scholastic year" -02793094 01 a 01 scholastic 1 003 + 10558896 n 0101 + 05976065 n 0101 \ 05976065 n 0101 | of or relating to the philosophical doctrine of scholasticism; "scholastic philosophy" -02793273 01 a 01 scientific 0 001 \ 05999540 n 0101 | of or relating to the practice of science; "scientific journals" -02793394 01 a 01 sclerotic 0 001 \ 05447218 n 0101 | of or relating to the sclera of the eyeball; "sclerotic tissue" -02793513 01 a 02 sclerotic 1 sclerosed 0 003 \ 14110411 n 0201 + 14110411 n 0101 \ 14110411 n 0101 | relating to or having sclerosis; hardened; "a sclerotic patient" -02793681 01 a 01 scurfy 0 002 + 09426621 n 0101 \ 09426621 n 0101 | having or producing or covered with scurf -02793793 01 a 01 Scythian 0 005 + 10566966 n 0101 + 06975469 n 0101 + 09177647 n 0101 \ 10566966 n 0101 \ 06975469 n 0101 | of or relating to the ancient Scythians or their culture or language -02793988 01 a 01 secular 0 001 \ 05968835 n 0101 | of or relating to the doctrine that rejects religion and religious considerations -02794123 01 a 01 secretarial 0 002 + 10569744 n 0101 \ 10569744 n 0101 | of or relating to a secretary or to a secretary's work -02794253 01 a 01 secretory 0 001 \ 05404728 n 0101 | of or relating to or producing a secretion; " a secretory cell" -02794372 01 a 01 sectarian 1 003 + 10573957 n 0101 + 08149781 n 0101 \ 08251877 n 0102 | of or relating to or characteristic of a sect or sects; "sectarian differences" -02794543 01 a 01 sectorial 0 002 + 13875027 n 0101 \ 13875027 n 0101 | relating to or resembling a sector; "a sectorial box" -02794670 01 a 01 self 0 001 \ 09604981 n 0101 | (used as a combining form) relating to--of or by or to or from or for--the self; "self-knowledge"; "self-proclaimed"; "self-induced" -02794853 01 a 02 self-aggrandizing 0 self-aggrandising 0 002 \ 00373862 n 0202 \ 00373862 n 0101 | of or relating to or characteristic of self-aggrandizement -02795013 01 a 01 self-induced 0 001 \ 11468578 n 0101 | produced by electrical self-induction -02795109 01 a 01 self-limited 0 002 ;c 06043075 n 0000 \ 15268857 n 0103 | relating to a disease that tends to run a definite course without treatment -02795262 01 a 01 self-pollinating 0 002 ;c 06066555 n 0000 \ 07438983 n 0101 | of or relating to or characteristic of self-pollination -02795399 01 a 01 self-renewing 0 001 \ 01248961 n 0101 | of or relating to self-renewal -02795489 01 a 01 self-service 0 001 \ 00098939 n 0101 | of or denoting an establishment (a restaurant or shop etc.) where customers serve themselves -02795640 01 a 01 semiautobiographical 0 001 \ 06516087 n 0101 | of or relating to a work that combines autobiography and fiction; "a semiautobiographical novel" -02795804 01 a 01 seminal 0 001 \ 05404336 n 0101 | pertaining to or containing or consisting of semen; "seminal fluid" -02795925 01 a 01 seminiferous 0 001 \ 05404336 n 0101 | bearing or producing seed or semen; "seminiferous tubules" -02796042 01 a 02 semiotic 0 semiotical 0 003 + 05976257 n 0201 + 05976257 n 0101 \ 05976257 n 0101 | of or relating to semiotics; "semiotic analysis" -02796194 01 a 01 semiparasitic 0 001 \ 13120775 n 0102 | of or relating to plants that are semiparasites -02796301 01 a 01 senatorial 0 002 + 10578471 n 0101 \ 10578471 n 0101 | of or relating to senators; "senatorial election" -02796425 01 a 02 sensational 0 sensory 0 002 \ 05712076 n 0201 \ 05712076 n 0101 | relating to or concerned in sensation; "the sensory cortex"; "sensory organs" -02796588 01 a 02 sepaloid 0 sepaline 0 002 \ 11690612 n 0201 \ 11690612 n 0101 | resembling or characteristic of a sepal -02796711 01 a 02 septal 0 septate 0 004 \ 05222940 n 0201 + 11683443 n 0101 + 05222940 n 0101 \ 05222940 n 0101 | of or relating to a septum -02796854 01 a 01 sepulchral 0 002 + 02921884 n 0103 \ 02921884 n 0103 | of or relating to a sepulchre; "sepulchral inscriptions"; "sepulchral monuments in churches" -02797021 01 a 01 serial 0 004 + 06593803 n 0102 + 06621447 n 0101 + 08457976 n 0101 \ 08457976 n 0101 | pertaining to or occurring in or producing a series; "serial monogamy"; "serial killing"; "a serial killer"; "serial publication" -02797257 01 a 01 serial 2 003 ;c 07020895 n 0000 + 08457976 n 0101 \ 07057196 n 0101 | pertaining to or composed in serial technique; "serial music" -02797408 01 a 01 sidereal 0 001 \ 09252970 n 0101 | of or relating to the stars or constellations; "sidereal bodies"; "the sidereal system" -02797550 01 a 01 Sikh 0 003 ;c 06239931 n 0000 + 10598349 n 0101 \ 06239931 n 0101 | of or relating to the Sikhs or their religious beliefs and customs -02797704 01 a 02 siliceous 0 silicious 0 004 + 15041277 n 0201 \ 15041277 n 0201 + 15041277 n 0101 \ 15041277 n 0101 | relating to or containing or resembling silica; "gritrock is siliceous sandstone" -02797907 01 a 01 single-stranded 0 001 \ 14867858 n 0103 | having a single strand; "single-stranded RNA" -02798014 01 a 01 Siouan 0 003 + 09669125 n 0101 \ 09669125 n 0101 \ 06920129 n 0101 | of or relating to the Sioux people or their language and culture -02798167 01 a 01 Sisyphean 0 002 + 09498697 n 0101 \ 09498697 n 0101 | of or relating to Sisyphus -02798267 01 a 01 snow-capped 0 001 \ 09438844 n 0101 | (of mountains) capped with a covering of snow -02798370 01 a 02 social 0 societal 0 003 + 07966140 n 0201 \ 07966140 n 0201 \ 07966140 n 0101 | relating to human society and its members; "social institutions"; "societal evolution"; "societal forces"; "social legislation" -02798597 01 a 01 social 2 001 \ 08387930 n 0101 | relating to or belonging to or characteristic of high society; "made fun of her being so social and high-toned"; "a social gossip colum"; "the society page" -02798806 01 a 01 soft-finned 0 001 \ 01428580 n 0101 | of or relating to fish with soft fins -02798901 01 a 01 soft-nosed 0 001 \ 02916350 n 0101 | (of a bullet) made of soft material that expands on impact -02799016 01 a 01 solar 0 001 \ 09450163 n 0101 | relating to or derived from the sun or utilizing the energies of the sun; "solar eclipse"; "solar energy" -02799173 01 a 01 sociopathic 0 002 + 10489564 n 0101 \ 14388139 n 0102 | of or relating to a sociopathic personality disorder -02799301 01 a 01 solanaceous 0 002 + 12892226 n 0101 \ 12892226 n 0101 | of or relating to plants of the family Solanaceae (the potato family) -02799446 01 a 01 Solomonic 0 002 + 11307759 n 0101 \ 11307759 n 0101 | exhibiting or requiring the wisdom of Solomon in making difficult decisions -02799595 01 a 01 somatosensory 0 001 \ 05654873 n 0101 | of or relating to the somatosenses -02799689 01 a 01 soteriological 0 002 + 06191687 n 0101 \ 06191687 n 0101 | of or relating to soteriology -02799797 01 a 01 squint-eyed 0 001 \ 14557415 n 0102 | affected by strabismus -02799877 01 a 01 squinty 0 001 \ 00878328 n 0101 | characterized by squinting; "he looked with squinty eyes" -02799988 01 a 01 specialistic 0 003 + 10632576 n 0101 + 10631941 n 0101 \ 10631941 n 0101 | of or related to or characteristic of specialists -02800132 01 a 01 spectral 0 003 + 11420831 n 0101 + 05128219 n 0101 \ 11420831 n 0101 | of or relating to a spectrum; "spectral colors"; "spectral analysis" -02800291 01 a 01 spectrographic 0 003 + 04272638 n 0102 + 04272782 n 0101 \ 04272782 n 0101 | relating to or employing a spectrograph -02800427 01 a 01 spermicidal 0 002 + 04274396 n 0101 \ 04274396 n 0101 | destructive to spermatozoa -02800529 01 a 02 spermous 0 spermatic 0 004 + 05457469 n 0201 \ 05457469 n 0201 + 05457469 n 0101 \ 05457469 n 0101 | consisting of or resembling spermatozoa -02800689 01 a 01 spherical 0 003 + 04274530 n 0101 ! 02800851 a 0101 \ 13899200 n 0101 | of or relating to spheres or resembling a sphere; "spherical geometry" -02800851 01 a 01 nonspherical 0 002 ! 02800689 a 0101 \ 13899200 n 0101 | not spherical -02800941 01 a 01 sphingine 0 001 \ 04274807 n 0101 | resembling a sphinx; "a sphingine smile" -02801037 01 a 01 splashy 0 002 + 07395104 n 0101 \ 07395104 n 0101 | characterized by water flying about haphazardly -02801156 01 a 03 splenic 0 splenetic 0 lienal 0 006 + 05333467 n 0302 \ 05333467 n 0302 + 05333467 n 0201 \ 05333467 n 0201 + 05333467 n 0101 \ 05333467 n 0101 | of or relating to the spleen -02801349 01 a 02 splintery 0 slivery 0 005 + 09442838 n 0202 + 09385137 n 0202 \ 09385137 n 0202 + 09442838 n 0101 \ 09442838 n 0101 | resembling or consisting of or embedded with long slender fragments of (especially) wood having sharp points; "a rough splintery floor of old pine boards" -02801641 01 a 01 sporogenous 0 001 \ 11547855 n 0101 | producing spores or reproducing by means of spores -02801749 01 a 01 sportive 0 001 \ 00523513 n 0101 | relating to or interested in sports -02801839 01 a 01 sporting 0 001 \ 00523513 n 0101 | relating to or used in sports; "sporting events"; "sporting equipment" -02801964 01 a 01 spousal 0 002 + 10640620 n 0101 \ 10640620 n 0101 | relating to a spouse; "a fitting symbol of spousal love" -02802092 01 a 01 spring-loaded 0 001 \ 04288272 n 0101 | containing a compressed spring that presses one part against another -02802220 01 a 01 stagflationary 0 002 + 13560738 n 0101 \ 13560738 n 0101 | characteristic of or promoting stagflation -02802341 01 a 01 stainable 0 002 + 04944710 n 0101 \ 04944710 n 0101 | capable of being stained (especially of cells and cell parts) -02802476 01 a 01 Stalinist 0 001 \ 11312120 n 0101 | of or relating to Joseph Stalin or his times -02802576 01 a 02 stannic 0 stannous 0 002 \ 14658855 n 0201 \ 14658855 n 0101 | of or relating to or containing tin -02802694 01 a 01 staphylococcal 0 002 + 01379389 n 0101 \ 01379389 n 0101 | of or relating to the staphylococcus bacteria; "a staphylococcal infection" -02802848 01 a 01 statutory 0 001 \ 06564387 n 0102 | relating to or created by statutes; "statutory matters"; "statutory law" -02802976 01 a 02 stellar 0 astral 0 002 \ 09444100 n 0201 \ 09444100 n 0101 | being or relating to or resembling or emanating from stars; "an astral body"; "stellar light" -02803150 01 a 01 interstellar 0 001 \ 09444100 n 0101 | between or among stars; "the density of hydrogen in interplanetary and interstellar space" -02803299 01 a 01 stemmatic 0 001 \ 13912540 n 0101 | of or relating to a textual stemma -02803389 01 a 02 stenographic 0 stenographical 0 005 + 06350127 n 0202 + 00615462 n 0201 \ 06350127 n 0202 + 00615462 n 0101 \ 06350127 n 0102 | of or relating to or employing stenography -02803579 01 a 01 steroidal 0 004 + 14745635 n 0102 + 15057744 n 0101 ! 02803740 a 0101 \ 14745635 n 0101 | of or relating to steroid hormones or their effects -02803740 01 a 01 nonsteroidal 0 002 ! 02803579 a 0101 \ 15058023 n 0101 | not steroidal or not having the effects of steroid hormones -02803876 01 a 01 stoichiometric 0 002 + 13825840 n 0101 \ 13825840 n 0101 | of or relating to stoichiometry -02803986 01 a 01 stovepiped 0 002 ;c 06128570 n 0000 \ 13551117 n 0101 | of or relating to data stored in separate databases; "stovepiped information" -02804139 01 a 01 subarctic 0 001 \ 08496798 n 0101 | of or relating to latitudes just south of the Arctic Circle -02804254 01 a 01 subcortical 0 001 \ 05486510 n 0104 | of or relating to or being or involving nerve centers below the cerebral cortex -02804391 01 a 01 subdural 0 001 \ 05482529 n 0101 | below the dura mater but above the arachnoid membrane of the meninges -02804515 01 a 01 sublingual 0 001 \ 05301072 n 0101 | beneath the tongue -02804590 01 a 01 suburban 0 004 + 00123018 v 0101 + 00122853 v 0101 + 08554440 n 0102 \ 08554440 n 0101 | relating to or characteristic of or situated in suburbs; "suburban population" -02804777 01 a 01 sub-Saharan 0 001 \ 09172283 n 0101 | of or relating to or situated in the region south of the Sahara Desert -02804905 01 a 01 suctorial 0 003 + 11517494 n 0101 + 00842692 n 0103 \ 00842692 n 0103 | adapted for sucking or clinging by suction -02805039 01 a 01 Sufi 0 002 \ 05949266 n 0101 \ 10672371 n 0101 | of or relating to the Sufis or to Sufism -02805148 01 a 02 sulfurous 0 sulphurous 0 004 + 14656219 n 0203 \ 14656219 n 0203 + 14656219 n 0101 \ 14656219 n 0101 | of or related to or containing sulfur or derived from sulfur -02805331 01 a 01 Sumerian 0 004 + 10674471 n 0101 + 08918248 n 0101 \ 08918248 n 0101 \ 10674471 n 0101 | of or relating to ancient Sumer or its inhabitants -02805490 01 a 01 superficial 0 004 + 04677113 n 0101 + 04358381 n 0101 + 05135951 n 0101 \ 08660339 n 0101 | of, affecting, or being on or near the surface; "superficial measurements"; "the superficial area of the wall"; "a superficial wound" -02805735 01 a 01 suppurative 0 003 + 00096766 v 0103 ! 02805872 a 0101 \ 13479889 n 0102 | relating to or characterized by suppuration -02805872 01 a 01 nonsuppurative 0 002 ! 02805735 a 0101 \ 13479889 n 0102 | not suppurative -02805966 01 a 02 supraorbital 0 supraocular 0 002 \ 05285275 n 0201 \ 05285275 n 0101 | located or occurring above the eye socket -02806098 01 a 01 surficial 0 002 + 09451517 n 0101 \ 09451517 n 0101 | pertaining to or occurring on or near the earth's surface; "a surficial geologic deposit" -02806261 01 a 01 sustainable 0 006 + 02679530 v 0102 + 01202728 v 0103 + 00818422 v 0101 + 00665886 v 0103 + 05029594 n 0101 \ 05029594 n 0101 | capable of being sustained -02806435 01 a 01 sustentacular 0 002 + 01216191 n 0102 \ 01216191 n 0103 | serving to sustain or support; "sustentacular cells" -02806565 01 a 01 syllabic 0 001 \ 06361770 n 0101 | consisting of or using a syllabary; "eskimos of the eastern Arctic have a system of syllabic writing" -02806721 01 a 01 syllabic 1 003 + 06304671 n 0101 + 07113491 n 0101 \ 06304671 n 0101 | of or relating to syllables; "syllabic accent"; "syllabic characters each represent a syllable" -02806907 01 a 02 symbolic 0 symbolical 0 005 + 06806469 n 0201 + 05765415 n 0201 \ 06806469 n 0201 + 06806469 n 0101 \ 06806469 n 0101 | relating to or using or proceeding by means of symbols; "symbolic logic"; "symbolic operations"; "symbolic thinking" -02807163 01 a 01 symbolic 1 001 \ 06807849 n 0101 | using symbolism; "symbolic art" -02807249 01 a 01 symptomatic 0 002 + 14299637 n 0101 \ 14299637 n 0101 | relating to or according to or affecting a symptom or symptoms; "symptomatic relief"; "symptomatic treatment"; "a symptomatic classification of diseases" -02807478 01 a 04 syncretic 0 syncretical 0 syncretistic 0 syncretistical 0 010 + 14421724 n 0401 + 13564215 n 0401 \ 14421724 n 0401 + 14421724 n 0301 \ 14421724 n 0301 + 14421724 n 0201 + 13564215 n 0201 \ 14421724 n 0201 + 14421724 n 0101 \ 14421724 n 0101 | of or characterized by syncretism -02807775 01 a 04 syncretic 1 syncretical 1 syncretistic 1 syncretistical 1 008 + 13564215 n 0401 \ 13564215 n 0401 + 13564215 n 0301 \ 13564215 n 0301 + 13564215 n 0201 \ 13564215 n 0201 + 13564215 n 0101 \ 13564215 n 0101 | relating to a historical tendency for a language to reduce its use of inflections; "modern English is a syncretic language" -02808126 01 a 02 synesthetic 0 synaesthetic 0 004 + 05720602 n 0202 \ 05720602 n 0201 + 05720602 n 0101 \ 05720602 n 0101 | relating to or experiencing synesthesia; involving more than one sense; "synesthetic response to music"; "synesthetic metaphor" -02808380 01 a 01 synoptic 0 002 + 06468951 n 0102 \ 06468951 n 0102 | presenting a summary or general view of a whole; "a synoptic presentation of a physical theory" -02808548 01 a 01 synovial 0 002 + 05415200 n 0101 \ 05415200 n 0101 | relating to or secreting synovia -02808653 01 a 01 syntagmatic 0 004 + 06313457 n 0101 + 06313457 n 0102 ! 02773691 a 0101 \ 06313457 n 0101 | related as members of a syntagma; "syntagmatic word associations" -02808830 01 a 01 tangential 0 003 + 13871134 n 0101 + 13788035 n 0101 \ 13871134 n 0101 | of or relating to or acting along or in the direction of a tangent; "tangential forces" -02809010 01 a 01 Tasmanian 0 003 + 08834123 n 0101 + 08833981 n 0101 \ 08834123 n 0101 | of or relating to Tasmania -02809128 01 a 01 taurine 0 001 \ 02403325 n 0101 | of or relating to or resembling a bull -02809220 01 a 02 technical 0 proficient 0 004 \ 05643190 n 0201 + 05643190 n 0102 \ 05665146 n 0101 + 05820462 n 0101 | of or relating to technique or proficiency in a practical skill; "his technical innovation was his brushwork"; "the technical dazzle of her dancing" -02809492 01 a 01 technophilic 0 001 \ 07555775 n 0101 | of or relating to or showing technophilia -02809592 01 a 01 technophobic 0 001 \ 07504258 n 0101 | of or relating to or showing technophobia -02809692 01 a 02 technical 3 technological 0 004 + 06125041 n 0204 + 00949619 n 0201 \ 06125041 n 0204 \ 06125041 n 0104 | of or relating to a practical subject that is organized according to scientific principles; "technical college"; "technological development" -02809958 01 a 01 telemetered 0 001 \ 01116206 n 0101 | of or pertaining to telemetry; "the telemetered information was recorded and analyzed" -02810102 01 a 04 tellurian 0 telluric 0 terrestrial 0 terrene 0 004 \ 09334396 n 0403 \ 09334396 n 0303 \ 09334396 n 0203 \ 09334396 n 0103 | of or relating to or inhabiting the land as opposed to the sea or air -02810316 01 a 01 semiterrestrial 0 001 \ 09334396 n 0103 | chiefly but not exclusively terrestrial -02810417 01 a 01 telluric 1 002 + 14657228 n 0101 \ 14657228 n 0101 | of or relating to or containing the chemical element tellurium -02810552 01 a 01 temperamental 0 002 + 04623612 n 0102 \ 04623612 n 0102 | relating to or caused by temperament; "temperamental indifference to neatness"; "temperamental peculiarities" -02810739 01 a 01 temporal 0 001 \ 05602683 n 0101 | of or relating to the temples (the sides of the skull behind the orbit); "temporal bone" -02810882 01 a 01 temporal 1 001 \ 00028270 n 0101 | of or relating to or limited by time; "temporal processing"; "temporal dimensions"; "temporal and spacial boundaries"; "music is a temporal art" -02811081 01 a 01 spatiotemporal 0 001 \ 06010737 n 0101 | of or relating to space and time together (having both spatial extension and temporal duration); "spatiotemporal coherence" -02811265 01 a 02 tendinous 0 sinewy 0 004 + 05296253 n 0202 \ 05296253 n 0202 + 05296253 n 0101 \ 05296253 n 0101 | consisting of tendons or resembling a tendon -02811428 01 a 01 tendril-climbing 0 001 \ 13102775 n 0101 | of or relating to plants that climb by means of tendrils -02811547 01 a 01 tensile 0 001 \ 11515051 n 0101 | of or relating to tension; "tensile stress"; "tensile pull" -02811660 01 a 01 tensional 0 002 + 13980596 n 0102 \ 14002481 n 0101 | of or relating to or produced by tension -02811774 01 a 01 tentacular 0 003 + 05195175 n 0101 + 02584643 n 0101 \ 02584643 n 0101 | of or relating to or resembling tentacles -02811908 01 a 01 tentacled 0 001 \ 02584643 n 0101 | having tentacles -02811980 01 a 01 teratogenic 0 002 + 09455998 n 0101 \ 09455998 n 0101 | of or relating to substances or agents that can interfere with normal embryonic development -02812147 01 a 01 terminal 0 001 \ 15224486 n 0101 | relating to or occurring in a term or fixed period of time; "terminal examinations"; "terminal payments" -02812306 01 a 01 terminal 1 001 \ 04413631 n 0101 | of or relating to or situated at the ends of a delivery route; "freight pickup is a terminal service"; "terminal charges" -02812482 01 a 01 territorial 0 003 + 08493064 n 0101 + 08552138 n 0102 \ 08552138 n 0102 | of or relating to a territory; "the territorial government of the Virgin Islands"; "territorial claims made by a country" -02812697 01 a 01 testaceous 0 002 + 11682349 n 0101 \ 11682349 n 0101 | relating to or possessing a testa or hard shell; "testaceous fish" -02812838 01 a 01 testamentary 0 002 + 06544142 n 0102 \ 06544142 n 0102 | of or relating to a will or testament or bequeathed by a will or testament -02812989 01 a 01 testimonial 0 005 + 06648207 n 0102 + 06648207 n 0101 + 06732710 n 0101 + 06734467 n 0101 \ 06734467 n 0101 | of or relating to or constituting testimony -02813162 01 a 01 testimonial 1 003 + 06697195 n 0102 + 06694540 n 0102 \ 06697195 n 0102 | expressing admiration or appreciation; "testimonial dinner" -02813315 01 a 01 theatrical 0 003 + 07006119 n 0104 + 04788693 n 0102 \ 07006119 n 0104 | of or relating to the theater -02813437 01 a 01 Theban 0 001 \ 08789076 n 0101 | of or relating to the Greek city of Thebes or its people or culture -02813557 01 a 01 Theban 1 001 \ 08899776 n 0101 | of or relating to the Egyptian city of Thebes or its people or culture -02813680 01 a 01 thematic 0 003 + 06599788 n 0103 + 05920272 n 0101 \ 06599788 n 0103 | relating to or constituting a topic of discourse -02813819 01 a 01 unthematic 0 002 ! 02813978 a 0101 \ 06599788 n 0103 | not relating to a melodic subject; "there is nothing unthematic in this composition" -02813978 01 a 01 thematic 1 003 + 07029247 n 0101 ! 02813819 a 0101 \ 07029247 n 0101 | of or relating to a melodic subject -02814104 01 a 02 thenal 0 thenar 0 007 + 05565937 n 0201 + 05565696 n 0202 \ 05565696 n 0202 + 05565937 n 0101 + 05565696 n 0102 \ 05565696 n 0102 \ 05565937 n 0101 | of or relating to the palm of the hand or to the area at the base of the thumb -02814352 01 a 01 thermal 1 001 \ 09305898 n 0101 | of or relating to a hot spring; "thermal water" -02814453 01 a 03 thermal 0 thermic 0 caloric 0 006 + 13726296 n 0301 \ 11466043 n 0301 \ 11466043 n 0201 + 11518645 n 0101 ! 02814758 a 0101 \ 11466043 n 0101 | relating to or associated with heat; "thermal movements of molecules"; "thermal capacity"; "thermic energy"; "the caloric effect of sunlight" -02814758 01 a 01 nonthermal 0 002 ! 02814453 a 0101 \ 11466043 n 0101 | not involving heat; "nonthermal luminescence" -02814878 01 a 02 thermoelectric 0 thermoelectrical 0 003 \ 11514672 n 0201 + 11514672 n 0101 \ 11514672 n 0101 | involving or resulting from thermoelectricity -02815039 01 a 01 threaded 0 001 \ 04154938 n 0101 | (of bolts or screws) having screw threads -02815135 01 a 01 tibial 0 002 + 05594367 n 0101 \ 05594367 n 0101 | relating to or located near a tibia -02815241 01 a 01 tidal 0 002 + 07402519 n 0101 \ 07402519 n 0101 | of or relating to or caused by tides; "tidal wave" -02815361 01 a 01 tiered 0 001 \ 04433905 n 0101 | having or arranged in tiers; "a tiered mound" -02815459 01 a 01 time-release 0 001 \ 13549672 n 0101 | of or relating to a preparation that gradually releases an active substance (especially a drug) over a period of time -02815635 01 a 01 Timorese 0 001 \ 08908739 n 0101 | of or relating to or characteristic of Timor or its inhabitants -02815753 01 a 01 tinny 0 002 + 14658855 n 0101 \ 14658855 n 0101 | of or containing tin -02815843 01 a 01 titular 0 002 + 06343117 n 0101 \ 06343117 n 0101 | of or associated with or bearing a title signifying nobility; "titular dignitaries" -02815998 01 a 01 titular 1 002 + 06343520 n 0101 \ 06343520 n 0101 | of or pertaining to the title of a work of art; "performed well in the titular (or title) role"; "the titular theme of the book" -02816198 01 a 01 titular 2 002 + 06339416 n 0101 \ 06339416 n 0101 | of or bearing a title signifying status or function; "of titular rank" -02816340 01 a 02 titular 3 titulary 0 004 + 05181199 n 0201 \ 05181199 n 0201 + 05181199 n 0101 \ 05181199 n 0101 | of or relating to a legal title to something; "titulary rights" -02816522 01 a 01 toll-free 0 001 \ 13323749 n 0101 | having no toll levied for its use; "a toll-free road"; "a toll-free telephone number" -02816663 01 a 02 tonic 1 tonal 0 004 + 04986883 n 0201 \ 04986883 n 0201 + 04986883 n 0101 \ 04986883 n 0101 | employing variations in pitch to distinguish meanings of otherwise similar words; "Chinese is a tonal language" -02816888 01 a 01 tonic 2 004 ;c 06080522 n 0000 + 14544672 n 0103 + 14544672 n 0101 \ 14544672 n 0102 | of or relating to or producing normal tone or tonus in muscles or tissue; "a tonic reflex"; "tonic muscle contraction" -02817113 01 a 01 clonic 0 003 ;c 06043075 n 0000 + 14083061 n 0101 \ 14083061 n 0101 | of or relating to abnormal neuromuscular activity characterized by rapidly alternating muscle contraction and relaxation; "clonic spasm" -02817339 01 a 01 topical 0 003 + 06599788 n 0102 + 05814291 n 0101 \ 05814291 n 0101 | of or relating to or arranged by topics; "a detailed record on both a chronological and a topical basis" -02817533 01 a 02 topological 0 topologic 0 002 \ 06017594 n 0201 \ 06017594 n 0101 | of or relating to topology -02817647 01 a 01 toroidal 0 003 + 13900287 n 0101 + 13900088 n 0102 \ 13900287 n 0101 | of or relating to or shaped like a toroid; doughnut shaped -02817796 01 a 01 torrential 0 002 + 07407593 n 0101 \ 07407593 n 0101 | relating to or resulting from the action of a torrent; "torrential erosion"; "torrential adaptations seen in some aquatic forms" -02817999 01 a 01 tortious 0 001 \ 00733883 n 0101 | of or pertaining to the nature of a tort; "tortious acts" -02818111 01 a 02 totalitarian 0 totalistic 0 003 + 06213688 n 0203 \ 06213688 n 0203 \ 06213688 n 0102 | of or relating to the principles of totalitarianism according to which the state regulates every realm of life; "totalitarian theory and practice"; "operating in a totalistic fashion" -02818402 01 a 01 totipotent 0 004 ;c 00006484 n 0000 + 05214976 n 0101 + 05214976 n 0102 \ 05214976 n 0101 | having the ability to give rise to unlike cells; "embryonic stem cells are totipotent" -02818600 01 a 01 tubercular 0 002 + 14143415 n 0101 \ 14143415 n 0101 | relating to tuberculosis or those suffering from it; "a tubercular hospital" -02818751 01 a 01 tubercular 1 002 + 05542686 n 0102 \ 05542686 n 0101 | pertaining to or of the nature of a normal tuberosity or tubercle; "a tubercular process for the attachment of a ligament or muscle" -02818958 01 a 01 tubercular 2 003 + 14211440 n 0101 + 14143415 n 0101 \ 14211440 n 0101 | characterized by the presence of tuberculosis lesions or tubercles; "tubercular leprosy" -02819139 01 a 01 tuberculate 0 001 \ 13088989 n 0102 | covered with tubercles -02819219 01 a 01 tuberculoid 0 001 \ 14143415 n 0101 | resembling tuberculosis; "tuberculoid lesions"; "tuberculoid leprosy" -02819346 01 a 01 turbinate 0 001 \ 05283816 n 0101 | of or relating to the scroll-shaped turbinate bones in the nasal passages -02819475 01 a 02 two-humped 0 double-humped 0 002 \ 13894434 n 0203 \ 13894434 n 0103 | having two humps -02819582 01 a 02 two-wheel 0 two-wheeled 0 002 \ 04574999 n 0201 \ 04574999 n 0101 | of or relating to vehicles with two wheels; "a two-wheeled cart" -02819734 01 a 01 umbelliform 0 002 ;c 06066555 n 0000 \ 13131028 n 0101 | resembling or in the form of an umbel -02819848 01 a 01 umbelliferous 0 002 ;c 06066555 n 0000 \ 12930044 n 0101 | relating to or belonging to plants of the family Umbelliferae -02819988 01 a 01 uncial 0 002 + 06353225 n 0101 \ 06353225 n 0101 | relating to or written in majuscule letters (which resemble modern capitals); "uncial letters" -02820153 01 a 01 Uniate 0 001 \ 08086987 n 0102 | of or relating to former Eastern Christian or Orthodox churches that have been received under the jurisdiction of the Church of Rome but retain their own rituals and practices and canon law -02820395 01 a 01 unicellular 0 001 \ 00006484 n 0101 | having or consisting of a single cell -02820490 01 a 02 uniovular 0 uniovulate 0 002 \ 11678768 n 0201 \ 11678768 n 0101 | having a single ovule -02820598 01 a 01 unitary 1 001 \ 09465459 n 0101 | of or pertaining to or involving the use of units; "a unitary method was applied"; "established a unitary distance on which to base subsequent calculations" -02820808 01 a 01 unitary 2 001 \ 14460565 n 0102 | relating to or characterized by or aiming toward unity; "the unitary principles of nationalism"; "a unitary movement in politics" -02820991 01 a 01 unpigmented 0 001 \ 04976319 n 0101 | having no pigmentation -02821071 01 a 01 urban 0 002 + 04816302 n 0101 \ 08524735 n 0101 | relating to or concerned with a city or densely populated area; "urban sociology"; "urban development" -02821243 01 a 01 urceolate 0 002 ;c 06037666 n 0000 \ 04515890 n 0101 | urn-shaped; large below and contracted toward the mouth -02821373 01 a 01 urethral 0 002 + 05513020 n 0101 \ 05513020 n 0101 | of or relating to the urethra -02821475 01 a 01 urogenital 0 001 \ 05509452 n 0101 | of or relating to the urinary and reproductive systems -02821586 01 a 01 usufructuary 0 003 + 10742269 n 0101 + 05190356 n 0101 \ 05190356 n 0101 | of or relating to the nature of a usufruct -02821723 01 a 02 uveal 0 uveous 0 004 + 05317960 n 0201 \ 05317960 n 0201 + 05317960 n 0101 \ 05317960 n 0101 | of or relating to the uvea of the eye -02821875 01 a 02 vacuolate 0 vacuolated 0 002 \ 05447087 n 0201 \ 05447087 n 0101 | formed into or containing one or more vacuoles or small membrane-bound cavities within a cell -02822055 01 a 02 vagal 0 pneumogastric 1 005 ;c 06078978 n 0000 + 05480076 n 0204 \ 05480076 n 0204 + 05480076 n 0101 \ 05480076 n 0101 | of or relating to the vagus nerve -02822229 01 a 01 valedictory 0 002 + 07243565 n 0104 \ 00053525 n 0101 | of or relating to an occasion or expression of farewell; "a valedictory address"; "valedictory praise for his uniformly manly course"; "a suitable valedictory gesture" -02822472 01 a 01 apopemptic 0 002 ;u 07073447 n 0000 \ 00053097 n 0101 | addressed to one who is departing; "apopemptic hymns" -02822601 01 a 01 valent 0 003 ;c 06084469 n 0000 + 05034473 n 0102 \ 05034473 n 0101 | (chemistry) having valence; usually used in combination -02822746 01 a 02 valetudinarian 0 valetudinary 0 003 \ 10745613 n 0201 + 10745613 n 0101 \ 10745613 n 0101 | of or relating to or characteristic of a person who is a valetudinarian -02822929 01 a 01 valved 0 001 \ 04519536 n 0101 | (of brass instruments) having valves -02823018 01 a 01 vanilla 0 001 \ 07828807 n 0101 | flavored with vanilla extract; "he liked vanilla ice cream" -02823131 01 a 03 variolar 0 variolic 0 variolous 0 003 \ 14124423 n 0302 \ 14124423 n 0202 \ 14124423 n 0102 | relating to small pox -02823266 01 a 01 Vedic 0 001 \ 06464419 n 0102 | of or relating to the Vedas or to the ancient Sanskrit in which they were written; "the Vedic literature" -02823423 01 a 01 ventilatory 0 002 + 00581891 v 0101 \ 00266645 n 0101 | provided with ventilation or involving pulmonary ventilation -02823559 01 a 01 ventricular 1 004 + 05502556 n 0101 + 05391763 n 0101 \ 05391763 n 0101 \ 05502556 n 0101 | of or relating to a ventricle (of the heart or brain) -02823724 01 a 01 verbal 0 003 + 06318062 n 0101 + 06320569 n 0101 \ 06318062 n 0101 | of or relating to or formed from a verb; "verbal adjectives like `running' in `hot and cold running water'" -02823920 01 a 01 verbal 1 001 \ 06286395 n 0101 | of or relating to or formed from words in general; "verbal ability" -02824040 01 a 01 vertical 0 002 + 01238607 n 0101 \ 01238607 n 0101 | relating to or involving all stages of a business from production to distribution -02824194 01 a 01 viatical 0 003 + 00082347 n 0102 + 00082347 n 0101 \ 00082347 n 0101 | pertaining to the purchase of insurance policies from terminally ill policy holders; "viatical business"; "viatical companies"; "National Viatical Association" -02824444 01 a 01 vibrational 0 003 + 14004572 n 0106 + 00345926 n 0101 \ 07345166 n 0102 | of or relating to or characterized by vibration -02824585 01 a 01 vicarial 0 004 + 10750365 n 0101 + 10750188 n 0101 + 10750031 n 0101 \ 10750031 n 0101 | of or relating to or characteristic of a vicar -02824740 01 a 01 vicennial 0 001 \ 13748128 n 0101 | occurring once every 20 years -02824825 01 a 01 vigesimal 0 001 \ 13748128 n 0101 | relating to or based on the number twenty -02824922 01 a 01 virginal 0 002 + 10755257 n 0101 \ 13967581 n 0101 | characteristic of a virgin or virginity; "virginal white dresses" -02825060 01 a 01 vitreous 0 001 \ 14881303 n 0101 | relating to or resembling or derived from or containing glass; "vitreous rocks"; "vitreous silica" -02825213 01 a 01 vitreous 1 001 \ 05318407 n 0101 | of or relating to or constituting the vitreous humor of the eye; "the vitreous chamber" -02825355 01 a 01 vocal 0 002 + 00745187 v 0101 \ 07110615 n 0101 | having or using the power to produce speech or sound; "vocal organs"; "all vocal beings hymned their praise" -02825533 01 a 01 vocal 2 003 + 01704236 v 0101 ! 02825770 a 0101 \ 07110615 n 0101 | relating to or designed for or using the singing voice; "vocal technique"; "the vocal repertoire"; "organized a vocal group to sing his compositions" -02825770 01 a 01 instrumental 0 003 + 03800933 n 0102 ! 02825533 a 0101 \ 03800933 n 0101 | relating to or designed for or performed on musical instruments; "instrumental compositions"; "an instrumental ensemble" -02825985 01 a 01 vocalic 0 003 + 07114712 n 0101 + 07112550 n 0101 \ 07112550 n 0101 | relating to or associated with or containing a vowel; "vocalic segments"; "the vocalic ablaut" -02826169 01 a 01 volcanic 0 002 + 09472597 n 0101 \ 09472597 n 0101 | relating to or produced by or consisting of volcanoes; "volcanic steam"; "volcanic islands such as Iceland"; "a volcanic cone is a conical mountain or hill built up of material from volcanic eruptions" -02826443 01 a 03 atheist 0 atheistic 0 atheistical 0 007 + 09820044 n 0301 + 09820044 n 0201 + 05980256 n 0201 + 06223468 n 0201 \ 06223468 n 0201 + 09820044 n 0101 \ 06223468 n 0101 | related to or characterized by or given to atheism; "atheist leanings" -02826701 01 a 01 electrical 0 001 \ 11449907 n 0101 | relating to or concerned with electricity; "an electrical engineer"; "electrical and mechanical engineering industries" -02826877 01 a 02 electric 0 electrical 1 004 \ 11449907 n 0201 + 11450566 n 0101 + 11449907 n 0101 \ 11449907 n 0101 | using or providing or producing or transmitting or operated by electricity; "electric current"; "electric wiring"; "electrical appliances"; "an electrical storm" -02827160 01 a 02 voltaic 0 galvanic 0 005 ;c 11449907 n 0000 + 11450453 n 0201 \ 11450453 n 0201 + 13643276 n 0101 \ 11523538 n 0101 | pertaining to or producing electric current by chemical action; "a galvanic cell"; "a voltaic (or galvanic) couple" -02827413 01 a 01 photoconductive 0 002 + 11409689 n 0101 \ 11409689 n 0101 | of or relating to photoconductivity; "selenium is a photoconductive substance" -02827571 01 a 01 photoemissive 0 001 \ 11410172 n 0101 | of or relating to photoemission -02827662 01 a 01 photovoltaic 0 001 \ 11523538 n 0101 | producing a voltage when exposed to radiant energy (especially light) -02827790 01 a 02 photoelectric 0 photoelectrical 0 002 \ 11491194 n 0201 \ 11449907 n 0101 | of or pertaining to photoelectricity; "the photoelectric effect" -02827950 01 a 01 hydroelectric 0 002 + 11467202 n 0101 \ 11467202 n 0101 | of or relating to or used in the production of electricity by waterpower; "hydroelectric power" -02828123 01 a 01 hydrostatic 0 003 + 06113415 n 0101 ! 02828310 a 0101 \ 06113415 n 0101 | relating to fluids at rest or to the pressures they exert or transmit; "hydrostatic pressure" -02828310 01 a 01 hydrokinetic 0 003 + 06113914 n 0102 ! 02828123 a 0101 \ 06113914 n 0102 | relating to fluids in motion or the forces that produce or affect such motion -02828482 01 a 01 interlocutory 0 001 \ 07136206 n 0101 | consisting of dialogue -02828564 01 a 01 interstitial 0 003 + 05230171 n 0101 + 03581531 n 0101 \ 03581531 n 0101 | of or relating to interstices -02828688 01 a 01 isomeric 0 002 + 14924188 n 0101 \ 13939734 n 0101 | of or relating to or exhibiting isomerism -02828802 01 a 01 isometric 0 003 ;c 06000644 n 0000 + 13786187 n 0101 \ 13786187 n 0101 | related by an isometry -02828917 01 a 02 isomorphous 0 isomorphic 0 004 ;c 06037666 n 0000 \ 04744645 n 0201 + 04744645 n 0102 \ 04744645 n 0101 | having similar appearance but genetically different -02829094 01 a 01 isotonic 0 001 \ 06859056 n 0101 | relating to or characterized by the equal intervals of a musical scale; "isotonic tuning" -02829238 01 a 01 lapidary 0 001 \ 14699752 n 0102 | of or relating to precious stones or the art of working with them; "the ring is of no lapidary value"- Lord Byron; "lapidary art" -02829422 01 a 01 legislative 0 002 + 02466670 v 0101 \ 06535222 n 0101 | of or relating to or created by legislation; "legislative proposal" -02829565 01 a 01 legislative 1 001 \ 08163273 n 0101 | relating to a legislature or composed of members of a legislature; "legislative council" -02829711 01 a 01 leprous 0 002 + 14136187 n 0101 \ 14136187 n 0101 | relating to or resembling or having leprosy -02829826 01 a 01 lingual 1 002 + 05301072 n 0102 \ 05301072 n 0101 | pertaining to or resembling or lying near the tongue; "lingual inflammation"; "the lingual surface of the teeth" -02830010 01 a 02 Linnaean 0 Linnean 0 004 + 11133551 n 0201 \ 11133551 n 0201 + 11133551 n 0101 \ 11133551 n 0101 | of or relating to Linnaeus or to the system of taxonomic classification that Linnaeus proposed -02830223 01 a 01 long-chain 0 001 \ 09343266 n 0101 | of molecules having relatively long chains of atoms in a molecule -02830345 01 a 01 longitudinal 0 002 + 08596668 n 0101 \ 08596668 n 0101 | of or relating to lines of longitude; "longitudinal reckoning by the navigator" -02830501 01 a 01 literary 0 002 + 06364641 n 0101 \ 06364641 n 0101 | of or relating to or characteristic of literature; "literary criticism" -02830645 01 a 01 critical 0 005 + 06374587 n 0101 + 09979072 n 0101 + 09979321 n 0101 + 09979589 n 0101 \ 05734018 n 0101 | of or involving or characteristic of critics or criticism; "critical acclaim" -02830849 01 a 01 lithic 0 001 \ 14696793 n 0102 | relating to or composed of stone; "lithic sandstone" -02830954 01 a 01 lithic 1 001 \ 14643793 n 0101 | of or containing lithium -02831031 01 a 01 lymphatic 0 002 + 05404074 n 0101 \ 05404074 n 0101 | of or relating to or produced by lymph -02831143 01 a 01 lymphocytic 0 002 + 05451384 n 0101 \ 05451384 n 0101 | of or relating to lymphocytes; "lymphocytic leukemia" -02831272 01 a 01 lymphoid 0 001 \ 05404074 n 0101 | resembling lymph or lymphatic tissues -02831364 01 a 01 lysogenic 0 002 + 14194345 n 0102 \ 13509528 n 0101 | capable of producing or undergoing lysis -02831478 01 a 01 lysogenic 1 003 + 14194345 n 0101 + 14194345 n 0102 \ 14194345 n 0101 | of or relating to lysogeny -02831596 01 a 01 magisterial 0 002 + 10280945 n 0101 \ 10280945 n 0101 | of or relating to a magistrate; "official magisterial functions" -02831736 01 a 02 atmospheric 0 atmospherical 0 007 + 09210604 n 0201 + 08499057 n 0201 \ 08499057 n 0201 + 14520278 n 0101 + 09210604 n 0101 + 08499057 n 0101 \ 08499057 n 0101 | relating to or located in the atmosphere; "atmospheric tests" -02831979 01 a 02 amphibious 0 amphibian 0 004 + 01627424 n 0201 \ 01625747 n 0201 + 01625747 n 0101 \ 01625747 n 0101 | relating to or characteristic of animals of the class Amphibia -02832164 01 a 01 insectan 0 002 + 02159955 n 0101 \ 02159955 n 0101 | of or relating to the class Insecta -02832272 01 a 01 mammalian 0 002 + 01861778 n 0102 \ 01861465 n 0101 | of or relating to the class Mammalia -02832382 01 a 01 piscine 0 001 \ 02512053 n 0101 | of or relating to fish -02832458 01 a 01 reptilian 0 003 + 01661091 n 0102 + 01660719 n 0101 \ 01660719 n 0101 | of or relating to the class Reptilia -02832586 01 a 01 algal 0 002 + 01397114 n 0101 \ 01397114 n 0101 | of or relating to alga -02832678 01 a 02 fungal 0 fungous 0 004 + 12992868 n 0201 \ 12992868 n 0201 + 12992868 n 0101 \ 12992868 n 0101 | of or relating to fungi -02832818 01 a 02 fungicidal 0 antifungal 0 004 + 02720201 n 0201 \ 02720201 n 0201 + 02720201 n 0103 \ 02720201 n 0103 | capable of destroying fungi -02832969 01 a 02 fungoid 0 funguslike 0 002 \ 12992868 n 0201 \ 12992868 n 0101 | resembling fungi -02833070 01 a 01 infectious 0 003 + 14174549 n 0101 + 13498404 n 0101 \ 14174549 n 0101 | of or relating to infection; "infectious hospital"; "infectious disease" -02833235 01 a 01 plantal 0 002 + 00017222 n 0101 \ 00017222 n 0101 | of or relating to plants -02833331 01 a 02 vegetative 1 vegetive 1 004 \ 01065057 n 0201 + 02615580 v 0101 + 00026734 v 0102 \ 01065057 n 0101 | of or relating to an activity that is passive and monotonous; "a dull vegetative lifestyle" -02833544 01 a 01 bacterial 0 003 + 01348530 n 0101 + 01348530 n 0102 \ 01348530 n 0101 | relating to or caused by bacteria; "bacterial infection" -02833692 01 a 02 parasitic 1 parasitical 0 004 + 01384687 n 0201 \ 01384687 n 0201 + 01384687 n 0101 \ 01384687 n 0101 | relating to or caused by parasites; "parasitic infection" -02833873 01 a 01 antibacterial 0 001 \ 02833544 a 0101 | destroying bacteria or inhibiting their growth -02833979 01 a 02 cyanobacterial 0 cyanophyte 0 003 \ 01357707 n 0201 + 01358572 n 0101 \ 01358259 n 0102 | relating to or caused by photosynthetic bacteria of the class Cyanobacteria -02834164 01 a 01 moneran 0 001 \ 01341876 n 0101 | of or relating to the Monera -02834246 01 a 01 triangulate 0 001 \ 13879320 n 0101 | composed of or marked with triangles -02834340 01 a 01 quadrangular 0 003 + 13879126 n 0102 + 04030518 n 0102 \ 13879126 n 0102 | of or relating to or shaped like a quadrangle -02834480 01 a 01 tetragonal 0 002 + 13879126 n 0103 \ 13879126 n 0103 | of or relating to or shaped like a quadrilateral -02834603 01 a 01 tetrametric 0 002 + 07096029 n 0101 \ 07096029 n 0101 | of or relating to verse lines written in tetrameter -02834730 01 a 02 pentangular 0 pentagonal 0 002 \ 13882201 n 0201 \ 13882201 n 0101 | of or relating to or shaped like a pentagon -02834862 01 a 02 octangular 0 octagonal 0 002 \ 13882563 n 0201 \ 13882563 n 0101 | of or relating to or shaped like an octagon -02834992 01 a 02 neoclassicist 0 neoclassicistic 0 003 + 06154464 n 0201 \ 06154464 n 0201 \ 06154464 n 0101 | relating to or advocating neoclassicism -02835145 01 a 02 expressionist 0 expressionistic 0 004 + 08467258 n 0201 \ 08467258 n 0201 + 10073851 n 0101 \ 08467258 n 0101 | of or relating to expressionism; "expressionist art" -02835329 01 a 02 postmodernist 0 postmodern 0 002 \ 03990025 n 0201 \ 03990025 n 0101 | of or relating to postmodernism; "postmodernist architecture" -02835481 01 a 01 revolutionary 0 002 + 00962722 n 0101 \ 00962722 n 0101 | relating to or having the nature of a revolution; "revolutionary wars"; "the Revolutionary era" -02835654 01 a 02 residual 0 residuary 0 007 + 15004501 n 0201 + 13810818 n 0204 \ 15004501 n 0201 + 13810818 n 0103 + 15004501 n 0101 + 13810818 n 0104 \ 15004501 n 0101 | relating to or indicating a remainder; "residual quantity" -02835887 01 a 01 relativistic 0 003 ;c 06090869 n 0000 + 06106502 n 0101 \ 06106502 n 0101 | relating or subject to the special or the general theory of relativity; "relativistic quantum mechanics"; "relativistic increase in mass"; "radiation from relativistic particles" -02836161 01 a 01 relativistic 1 003 + 05212609 n 0101 + 05975846 n 0101 \ 05975846 n 0101 | of or relating to the philosophical doctrine of relativism -02836314 01 a 01 raptorial 0 002 + 01604330 n 0102 \ 01604330 n 0102 | relating to or characteristic of birds of prey; "raptorial claws and bill for seizing prey" -02836479 01 a 01 radical 1 002 ;c 06172789 n 0000 \ 06300193 n 0101 | of or relating to or constituting a linguistic root; "a radical verb form" -02836626 01 a 01 radial 2 001 \ 11428023 n 0104 | issuing in rays from a common center; relating to rays of light; "radial heat" -02836757 01 a 01 radial 0 002 + 13871538 n 0101 \ 13871538 n 0101 | relating to or moving along or having the direction of a radius; "radial velocity" -02836910 01 a 01 radial 1 002 + 05593318 n 0101 \ 05593318 n 0101 | relating to or near the radius; "the radial aspect of the forearm" -02837047 01 a 01 ulnar 0 002 + 05593476 n 0101 \ 05593476 n 0101 | relating to or near the ulna -02837145 01 a 01 radiographic 0 003 + 13545382 n 0101 + 00904428 n 0101 \ 00904428 n 0101 | relating to or produced by radiography -02837278 01 a 01 birefringent 0 002 + 11503482 n 0102 \ 11503482 n 0102 | relating to or characterized by double refraction -02837404 01 a 01 bisectional 0 001 \ 00386450 n 0101 | of or relating to bisection -02837489 01 a 01 bismuthal 0 002 + 14631502 n 0101 \ 14631502 n 0101 | of or relating to bismuth -02837588 01 a 01 bismuthic 0 001 \ 14631502 n 0101 | containing bismuth (especially in the pentavalent state) -02837700 01 a 01 bisontine 0 001 \ 02410509 n 0101 | relating to or characteristic of bison -02837794 01 a 02 bistered 0 bistred 0 002 \ 14843640 n 0201 \ 14843640 n 0101 | colored with or as if with bister -02837910 01 a 01 bistroic 0 001 \ 02844214 n 0101 | of or relating to or resembling a bistro -02838005 01 a 01 polar 0 002 + 08620881 n 0101 \ 08620881 n 0101 | located at or near or coming from the earth's poles; "polar diameter"; "polar zone"; "a polar air mass"; "Antarctica is the only polar continent" -02838220 01 a 01 bipolar 0 001 \ 02838005 a 0101 | of, pertaining to, or occurring in both polar regions; "the bipolar distribution of certain species" -02838374 01 a 01 bipolar 1 001 \ 14392639 n 0103 | of or relating to manic depressive illness -02838470 01 a 01 transpolar 0 001 \ 08620881 n 0101 | extending across or crossing either pole; "transpolar air routes" -02838592 01 a 01 photographic 0 005 + 13536794 n 0101 + 00620554 n 0101 + 00903559 n 0101 + 03925226 n 0101 \ 00903559 n 0101 | relating to photography or obtained by using photography; "photographic equipment" -02838805 01 a 01 photic 0 001 \ 11473954 n 0101 | of or relating to or caused by light -02838894 01 a 01 pneumatic 0 001 \ 14841267 n 0101 | of or relating to or using air (or a similar gas); "pneumatic drill"; "pneumatic tire" -02839036 01 a 01 pneumococcal 0 002 + 01380754 n 0101 \ 01380754 n 0101 | of or derived from or caused by bacteria of the genus pneumococcus -02839179 01 a 01 phallic 0 002 + 05526384 n 0102 \ 05526384 n 0102 | relating to a phallus especially as an embodiment of generative power; "a phallic cult"; "phallic worship" -02839357 01 a 01 feminist 0 002 + 10084635 n 0101 \ 00800421 n 0102 | of or relating to or advocating equal rights for women; "feminist critique" -02839505 01 a 01 professional 0 001 \ 00609953 n 0101 | of or relating to a profession; "we need professional advice"; "professional training"; "professional equipment for his new office" -02839695 01 a 01 professional 1 001 \ 08112096 n 0101 | of or relating to or suitable as a profession; "professional organizations"; "a professional field such as law" -02839865 01 a 02 vulpine 0 vulpecular 0 002 \ 02118333 n 0201 \ 02118333 n 0101 | resembling or characteristic of a fox; "vulpine cunning" -02840006 01 a 02 wolflike 0 wolfish 0 002 \ 02114100 n 0201 \ 02114100 n 0101 | resembling or characteristic (or considered characteristic) of a wolf; "ran in wolflike packs"; "wolfish rapacity" -02840203 01 a 02 vulvar 0 vulval 0 003 + 05521636 n 0201 \ 05521636 n 0201 \ 05521636 n 0101 | of or relating to the vulva -02840328 01 a 02 clitoral 0 clitoric 0 004 + 05523420 n 0201 \ 05523420 n 0201 + 05523420 n 0101 \ 05523420 n 0101 | of or relating to the clitoris -02840478 01 a 01 vocational 0 001 \ 00583246 n 0103 | of or relating to a vocation or occupation; especially providing or undergoing training in special skills; "vocational school"; "vocational students learning to repair a motor" -02840711 01 a 01 ungual 1 003 \ 05581693 n 0101 \ 02156140 n 0101 \ 02153959 n 0101 | of or relating to a nail or claw or hoof -02840840 01 a 01 succinic 0 001 \ 14894880 n 0101 | of or relating to or obtained from amber -02840935 01 a 01 umbilical 0 002 + 05556595 n 0102 \ 05556595 n 0102 | relating to or resembling the umbilicus; "umbilical cord" -02841066 01 a 02 spatial 0 spacial 0 006 + 00028651 n 0201 \ 00028651 n 0201 + 00028651 n 0101 + 05062748 n 0102 ! 02841422 a 0101 \ 00028651 n 0101 | pertaining to or involving or having the nature of space; "the first dimension to concentrate on is the spatial one"; "spatial ability"; "spatial awareness"; "the spatial distribution of the population" -02841422 01 a 01 nonspatial 0 002 ! 02841066 a 0101 \ 00028651 n 0101 | not spatial; "a nonspatial continuum" -02841534 01 a 02 sigmoid 0 sigmoidal 0 002 \ 05537417 n 0202 \ 05537417 n 0102 | of or relating to the sigmoid flexure in the large intestine -02841678 01 a 01 sigmoid 1 001 \ 13867641 n 0101 | curved in two directions (like the letter S) -02841776 01 a 01 sciatic 0 001 \ 05596004 n 0101 | of or relating to the ischium (or the part of the hipbone containing it); "sciatic nerve" -02841919 01 a 01 sciatic 1 002 + 14330727 n 0101 \ 14330727 n 0101 | relating to or caused by or afflicted with sciatica -02842042 01 a 01 semantic 0 002 + 06179792 n 0101 \ 06179792 n 0101 | of or relating to meaning or the study of meaning; "semantic analysis" -02842185 01 a 02 bovine 0 bovid 0 002 \ 02401661 n 0202 \ 02401661 n 0102 | of or relating to or belonging to the genus Bos (cattle) -02842320 01 a 01 crinoid 0 002 + 02320127 n 0101 \ 02319967 n 0101 | of or relating to or belonging to the class Crinoidea -02842445 01 a 02 linguistic 0 lingual 0 006 + 05301072 n 0202 \ 06282651 n 0201 + 06171040 n 0101 ! 02842704 a 0101 \ 06282651 n 0101 + 10264219 n 0101 | consisting of or related to language; "linguistic behavior"; "a linguistic atlas"; "lingual diversity" -02842704 01 a 01 nonlinguistic 0 002 ! 02842445 a 0101 \ 06282651 n 0101 | not consisting of or related to language; "depended on his nonlinguistic skills" -02842862 01 a 01 intralinguistic 0 001 \ 06282651 n 0101 | within a particular language; "intralinguistic variation" -02842981 01 a 01 sociolinguistic 0 002 + 06181123 n 0101 \ 06181123 n 0101 | of or relating to sociolinguistics -02843095 01 a 01 cross-linguistic 0 001 \ 06282651 n 0101 | relating to different languages; "cross-linguistic evidence" -02843218 01 a 01 linguistic 1 003 + 06172789 n 0101 \ 06172789 n 0101 + 10264437 n 0101 | of or relating to the scientific study of language; "linguistic theory" -02843382 01 a 01 bridal 0 002 + 09874725 n 0101 \ 09874725 n 0101 | of or pertaining to a bride; "bridal gown" -02843495 01 a 03 bridal 1 nuptial 0 spousal 1 003 \ 07452074 n 0301 \ 07452074 n 0201 \ 01037469 n 0101 | of or relating to a wedding; "bridal procession"; "nuptial day"; "spousal rites"; "wedding cake"; "marriage vows" -02843717 01 a 01 cardiac 0 001 \ 05388805 n 0101 | of or relating to the heart; "cardiac arrest" -02843816 01 a 01 caudal 0 003 + 05228264 n 0101 ! 02844174 a 0101 \ 02157557 n 0101 | constituting or relating to a tail; "caudal appendage" -02843959 01 a 02 Caucasian 0 Caucasic 0 005 + 09238674 n 0201 + 08519624 n 0202 \ 08519624 n 0202 + 08519624 n 0101 \ 08519624 n 0102 | of or relating to the geographical region of Caucasia; "Caucasian languages" -02844174 01 a 01 cephalic 0 002 ! 02843816 a 0101 \ 05538625 n 0101 | of or relating to the head -02844273 01 a 01 cranial 0 002 + 05540513 n 0101 \ 05540513 n 0101 | of or relating to the cranium which encloses the brain; "cranial pressure" -02844419 01 a 02 craniometric 0 craniometrical 0 004 + 06147308 n 0201 \ 06147308 n 0201 + 06147308 n 0101 \ 06147308 n 0101 | of or relating to craniometry -02844578 01 a 01 comatose 0 002 + 05680193 n 0102 \ 05680193 n 0101 | relating to or associated with a coma; "comatose breathing"; "comatose state" -02844728 01 a 04 conic 0 conical 0 conelike 0 cone-shaped 0 010 \ 13872592 n 0401 \ 13872592 n 0301 + 13872592 n 0201 + 11682842 n 0201 + 03089348 n 0201 \ 13872592 n 0201 + 13872975 n 0102 + 13872592 n 0101 + 03089348 n 0101 \ 13872592 n 0101 | relating to or resembling a cone; "conical mountains"; "conelike fruit" -02845048 01 a 01 corinthian 2 001 \ 04699298 n 0101 | or pertaining to the Corinthian style of architecture -02845158 01 a 01 corvine 0 001 \ 01579028 n 0101 | relating to or resembling a crow -02845244 01 a 02 ciliary 2 ciliate 0 003 \ 05314919 n 0203 + 05314919 n 0103 \ 05314919 n 0103 | of or relating to the human eyelash -02845379 01 a 03 ciliary 1 ciliate 1 cilial 0 005 + 01458105 n 0301 \ 01458105 n 0301 \ 01458105 n 0201 + 01458105 n 0101 \ 01458105 n 0101 | of or relating to cilia projecting from the surface of a cell -02845585 01 a 01 ciliary 0 001 \ 05313344 n 0101 | relating to the ciliary body and associated structures of the eye -02845704 01 a 01 counterinsurgent 0 002 + 00963749 n 0102 \ 00963749 n 0102 | of or relating or characteristic of actions taken by a government to defeat insurgency -02845871 01 a 01 counterrevolutionary 0 002 + 00963057 n 0101 \ 00963057 n 0101 | relating to or being a counterrevolution -02845996 01 a 02 counterterror 0 counterterrorist 0 002 \ 05906734 n 0201 \ 05906734 n 0101 | intended to prevent terrorism; "the government took counterterror measures" -02846168 01 a 02 cyprinid 0 cyprinoid 0 003 \ 01438720 n 0201 + 01439121 n 0101 \ 01438720 n 0101 | of or relating to members of fish family Cyprinidae -02846322 01 a 03 dietary 0 dietetic 0 dietetical 0 011 + 07560903 n 0301 + 07561112 n 0301 \ 07561112 n 0301 + 07560903 n 0201 + 07561112 n 0201 \ 07561112 n 0201 + 07561590 n 0101 + 07560903 n 0101 + 07561112 n 0101 + 01070187 n 0101 \ 07561112 n 0101 | of or relating to the diet; "dietary restrictions" -02846630 01 a 02 diluvian 0 diluvial 0 002 \ 11502102 n 0203 \ 11502102 n 0103 | of or connected with a deluge -02846743 01 a 02 antediluvian 0 antediluvial 0 003 + 09795894 n 0201 \ 02846630 a 0202 \ 02846630 a 0102 | of or relating to the period before the biblical flood; "antediluvian man" -02846927 01 a 01 dominical 0 001 \ 15163797 n 0101 | of or relating to Sunday as the Lord's Day -02847025 01 a 01 dominical 1 001 \ 11083656 n 0101 | of or relating to or coming from Jesus Christ -02847126 01 a 01 Donatist 0 001 \ 06228086 n 0101 | of or relating to Donatism -02847207 01 a 01 Dorian 0 001 \ 08783444 n 0101 | of or relating to the ancient Greek inhabitants of Doris, to their Doric dialect of Greek, or to their culture -02847370 01 a 01 doric 0 001 \ 04698998 n 0101 | of or pertaining to the Doric style of architecture -02847473 01 a 01 dot-com 0 002 + 08002384 n 0101 \ 08002384 n 0101 | of or relating to an internet company; "a dot-com outfit in San Francisco" -02847619 01 a 01 floral 0 002 + 00017222 n 0102 \ 08436759 n 0102 | of or relating to the plant life in a particular region; "characteristic alpine floral elements" -02847786 01 a 01 floral 1 001 \ 11669921 n 0101 | relating to or associated with flowers; "floral organs" -02847894 01 a 02 fiscal 0 financial 0 007 + 06150633 n 0201 + 01134037 n 0201 + 01098698 n 0201 ! 02848119 a 0201 \ 01098698 n 0201 + 13358360 n 0101 \ 01098698 n 0101 | involving financial matters; "fiscal responsibility" -02848119 01 a 01 nonfinancial 0 002 ! 02847894 a 0102 \ 01098698 n 0101 | not involving financial matters -02848227 01 a 01 fiducial 1 002 ;c 06090869 n 0000 \ 07260623 n 0101 | used as a fixed standard of reference for comparison or measurement; "a fiducial point" -02848388 01 a 02 fiduciary 0 fiducial 0 003 \ 13360498 n 0201 + 10086074 n 0101 \ 13360498 n 0101 | relating to or of the nature of a legal trust (i.e. the holding of something in trust for another); "a fiduciary contract"; "in a fiduciary capacity"; "fiducial power" -02848658 01 a 01 funicular 0 002 + 02934641 n 0102 \ 02933842 n 0101 | relating to or operated by a cable; "funicular railway" -02848787 01 a 01 lactic 0 001 \ 07844042 n 0101 | of or relating to or obtained from milk (especially sour milk or whey); "lactic acid"; "lactic fermentation" -02848948 01 a 01 lacteal 0 001 \ 05399034 n 0101 | relating to or consisting of or producing or resembling milk; "lacteal fluids"; "lacteal organs" -02849098 01 a 01 galactic 0 002 + 08271042 n 0101 \ 08271042 n 0101 | of or relating to a galaxy (especially our galaxy the Milky Way); "the galactic plane" -02849257 01 a 01 extragalactic 0 001 \ 08271042 n 0101 | outside or beyond a galaxy; "extragalactic nebula" -02849367 01 a 01 intergalactic 0 001 \ 08271042 n 0101 | between or among galaxies; "intergalactic space" -02849475 01 a 01 gnomic 0 002 + 09541125 n 0101 \ 07153385 n 0101 | relating to or containing gnomes; "gnomic verse" -02849594 01 a 01 Gnostic 0 003 + 10133210 n 0101 + 05708030 n 0101 \ 06222959 n 0101 | of or relating to Gnosticism; "Gnostic writings" -02849732 01 a 01 gymnastic 0 002 + 00433802 n 0101 \ 00433802 n 0101 | of or relating to or used in exercises intended to develop strength and agility; "gymnastic horse" -02849904 01 a 01 gyral 0 001 \ 05492426 n 0101 | relating to or associated with or comprising a convolution of the brain; "the gyral sulcus" -02850047 01 a 01 alvine 0 001 \ 05534333 n 0101 | of or relating to the intestines -02850132 01 a 02 epistemic 0 epistemological 0 004 + 06166748 n 0201 \ 06166748 n 0201 + 05612358 n 0101 \ 06166748 n 0101 | of or relating to epistemology; "epistemic modal" -02850309 01 a 04 hemal 0 haemal 0 hematal 0 haematal 0 004 \ 05417975 n 0401 \ 05417975 n 0301 \ 05417975 n 0201 \ 05417975 n 0101 | relating to the blood vessels or blood -02850483 01 a 04 hemic 0 haemic 0 hematic 0 haematic 0 004 \ 05399847 n 0401 \ 05399847 n 0301 \ 05399847 n 0201 \ 05399847 n 0101 | relating to or containing or affecting blood; "a hematic cyst"; "a hematic crisis" -02850701 01 a 01 hemiparasitic 0 002 + 13120775 n 0101 \ 13120775 n 0101 | of or relating to plants that are hemiparasites -02850826 01 a 02 haemophilic 0 hemophilic 0 005 + 10170989 n 0204 \ 14170337 n 0201 + 14170337 n 0102 + 10170989 n 0105 \ 14170337 n 0101 | relating to or having hemophilia -02851001 01 a 01 humoral 0 003 + 05604535 n 0101 + 05397468 n 0104 \ 05397468 n 0104 | of or relating to bodily fluids -02851122 01 a 02 chylaceous 0 chylous 0 004 + 05403849 n 0201 \ 05403849 n 0201 + 05403849 n 0101 \ 05403849 n 0101 | consisting of chyle or having the properties of chyle -02851296 01 a 03 chylific 0 chylifactive 0 chylifactory 0 003 \ 05403849 n 0301 \ 05403849 n 0201 \ 05403849 n 0101 | producing or converting into chyle -02851451 01 a 01 chyliferous 0 001 \ 05403849 n 0101 | transmitting chyle; "chyliferous vessels" -02851550 01 a 01 iconic 0 004 + 07269916 n 0101 + 03558971 n 0101 + 03931044 n 0103 \ 03558971 n 0101 | relating to or having the characteristics on an icon -02851709 01 a 02 ichorous 0 sanious 0 004 + 05417472 n 0205 \ 05417472 n 0205 + 05417472 n 0104 \ 05417472 n 0104 | of or resembling or characterized by ichor or sanies; "an ichorous discharge"; "the sanious discharge from an ulcer" -02851944 01 a 01 icosahedral 0 002 + 13915883 n 0101 \ 13915883 n 0101 | of or relating to an icosahedron -02852052 01 a 01 icterogenic 0 001 \ 14319684 n 0102 | producing jaundice -02852128 01 a 02 ictal 0 ictic 0 003 \ 14081941 n 0202 + 14081941 n 0102 \ 14081941 n 0102 | of or relating to a seizure or convulsion -02852265 01 a 03 igneous 1 pyrogenic 0 pyrogenous 0 003 \ 05016171 n 0302 \ 05016171 n 0202 \ 05016171 n 0102 | produced under conditions involving intense heat; "igneous rock is rock formed by solidification from a molten state; especially from molten magma"; "igneous fusion is fusion by heat alone"; "pyrogenic strata" -02852589 01 a 01 iridic 0 001 \ 05319936 n 0101 | of or relating to the iris of the eye -02852679 01 a 01 iridic 1 001 \ 14642219 n 0101 | of or containing iridium -02852756 01 a 01 jugular 0 003 + 05042573 n 0101 + 05370918 n 0101 \ 05546540 n 0101 | relating to or located in the region of the neck or throat; "jugular vein" -02852920 01 a 03 marital 0 matrimonial 0 married 0 004 \ 13963970 n 0301 + 13963970 n 0202 \ 13963970 n 0201 \ 13963970 n 0101 | of or relating to the state of marriage; "marital status"; "marital fidelity"; "married bliss" -02853146 01 a 01 resinated 0 001 \ 14894140 n 0101 | impregnated or flavored with resin; "resinated wine" -02853254 01 a 03 sulphuretted 0 sulfurized 1 sulfuretted 0 003 \ 14656219 n 0301 \ 14656219 n 0201 \ 14656219 n 0101 | treated or impregnated with sulfur; "sulfuretted hydrogen" -02853434 01 a 02 mastoid 0 mastoidal 1 001 \ 05554653 n 0101 | relating to or resembling a nipple -02853534 01 a 01 mastoid 1 002 + 05542193 n 0101 \ 05542193 n 0101 | of or relating to or in the region of the mastoid process -02853663 01 a 01 phocine 0 001 \ 02076196 n 0101 | of or relating to seals -02853740 01 a 02 saurian 0 lacertilian 0 005 + 01673668 n 0203 \ 01674464 n 0201 + 01674216 n 0101 + 01673668 n 0101 \ 01674464 n 0101 | of or relating to lizards -02853905 01 a 01 stearic 0 002 + 15057103 n 0101 \ 14864360 n 0101 | of or relating to or composed of fat -02854013 01 a 02 vinous 0 vinaceous 0 004 + 07891726 n 0201 \ 07891726 n 0201 + 07891726 n 0101 \ 07891726 n 0101 | of or relating to wine -02854154 01 a 01 tegular 0 001 \ 15074568 n 0101 | of or relating to or resembling a series of tiles -02854257 01 a 01 dyadic 0 001 \ 13743605 n 010c | of or relating to a dyad or based on two -02854350 01 a 02 algebraic 0 algebraical 0 004 + 06012726 n 0201 \ 06012726 n 0201 + 06012726 n 0101 \ 06012726 n 0101 | of or relating to algebra; "algebraic geometry" -02854521 01 a 02 biblical 0 scriptural 0 004 + 06431740 n 0207 \ 06431740 n 0207 + 06431740 n 0101 \ 06431740 n 0101 | of or pertaining to or contained in or in accordance with the Bible; "biblical names"; "biblical Hebrew" -02854747 01 a 01 biblical 2 002 + 06431740 n 0101 \ 06431740 n 0101 | in keeping with the nature of the Bible or its times or people; "biblical styles in writing"; "a beard of biblical proportions"; "biblical costumes" -02854968 01 a 01 postbiblical 0 001 \ 06431740 n 0101 | subsequent to biblical times -02855055 01 a 01 Koranic 0 002 + 06461609 n 0101 \ 06461609 n 0101 | of or related to the sacred texts of Islam; "Koranic laws" -02855185 01 a 02 polymorphic 0 polymorphous 0 006 ;c 06037666 n 0000 + 11492388 n 0201 \ 11492388 n 0201 + 11492388 n 0101 + 01328121 n 0101 \ 11492388 n 0101 | relating to the occurrence of more than one kind of individual (independent of sexual differences) in an interbreeding population; "a polymorphic species" -02855503 01 a 02 polymorphous 1 polymorphic 1 005 ;c 06084469 n 0000 + 11492833 n 0201 \ 11492833 n 0201 + 11492833 n 0101 \ 11492833 n 0101 | relating to the crystallization of a compound in two or more different forms; "polymorphous crystallization" -02855757 01 a 02 polyphonic 0 polyphonous 0 004 ;c 07020895 n 0000 + 07024929 n 0201 \ 07024929 n 0201 \ 07024929 n 0101 | of or relating to or characterized by polyphony; "polyphonic traditions of the baroque" -02855970 01 a 01 contrapuntal 0 001 \ 07025419 n 0101 | relating to or characteristic of or according to the rules of counterpoint; "contrapuntal base" -02856124 01 a 01 polyphonic 1 003 ;c 06172789 n 0000 + 06839411 n 0101 \ 06839411 n 0101 | having two or more phonetic values; "polyphonic letters such as `a'" -02856286 01 a 01 lyric 1 002 ;c 07092592 n 0000 \ 06380726 n 0101 | of or relating to a category of poetry that expresses emotion (often in a songlike way); "lyric poetry" -02856460 01 a 01 lyric 2 002 ;c 07020895 n 0000 \ 07026352 n 0101 | relating to or being musical drama; "the lyric stage" -02856584 01 a 01 perianal 0 001 \ 05538016 n 0101 | around the anus -02856654 01 a 02 pericardial 0 pericardiac 0 003 \ 05428473 n 0201 + 05428473 n 0101 \ 05428473 n 0101 | located around the heart or relating to or affecting the pericardium; "pericardial space" -02856851 01 a 01 perineal 0 002 + 05538494 n 0101 \ 05538494 n 0101 | of or relating to the perineum; "perineal pains" -02856972 01 a 01 peroneal 0 001 \ 05594201 n 0101 | of or relating to the fibula or the outer part of the leg below the knee -02857099 01 a 02 poetic 0 poetical 0 005 + 07093273 n 0201 + 07092592 n 0201 \ 07092592 n 0201 + 07093273 n 0101 \ 07092592 n 0101 | of or relating to poetry; "poetic works"; "a poetic romance" -02857295 01 a 01 poetic 1 002 + 10444194 n 0101 \ 10444194 n 0101 | of or relating to poets; "poetic insight" -02857407 01 a 01 political 1 002 + 06149192 n 0101 \ 06149192 n 0101 | of or relating to your views about social relationships involving authority or power; "political opinions" -02857587 01 a 01 political 2 002 + 00611972 n 0101 \ 00611972 n 0101 | of or relating to the profession of governing; "political career" -02857726 01 a 01 phonetic 0 003 + 06177033 n 0101 + 07111047 n 0101 \ 06177033 n 0101 | of or relating to the scientific study of speech sounds; "phonetic analysis" -02857893 01 a 02 phonetic 1 phonic 0 005 + 07111047 n 0201 \ 07111047 n 0201 + 06177033 n 0101 + 07111047 n 0101 \ 07111047 n 0101 | of or relating to speech sounds; "phonetic transcription" -02858086 01 a 01 phonemic 0 002 + 07111711 n 0101 \ 07111711 n 0101 | of or relating to phonemes of a particular language; "phonemic analysis" -02858231 01 a 02 philosophic 0 philosophical 0 007 + 05944686 n 0201 + 05943300 n 0202 + 06158346 n 0201 \ 06158346 n 0201 + 06158346 n 0101 + 10423589 n 0101 \ 06158346 n 0101 | of or relating to philosophy or philosophers; "philosophical writing"; "a considerable knowledge of philosophical terminology" -02858539 01 a 01 Rousseauan 0 002 + 11272689 n 0101 \ 11272689 n 0101 | of or pertaining to or characteristic of French philosopher Jean-Jacques Rousseau (1712-1778) -02858707 01 a 01 personal 0 001 \ 06326797 n 0101 | indicating grammatical person; "personal verb endings" -02858816 01 a 01 personal 1 002 + 04617562 n 0101 \ 04617562 n 0101 | of or arising from personality; "personal magnetism" -02858941 01 a 01 intensive 1 001 \ 06321054 n 0101 | tending to give force or emphasis; "an intensive adverb" -02859053 01 a 01 infernal 0 003 + 05629682 n 0103 + 08582837 n 0106 \ 08582837 n 0106 | characteristic of or resembling Hell; "infernal noise"; "infernal punishment" -02859221 01 a 01 litigious 0 003 + 01186810 n 0101 + 04644306 n 0101 \ 01186810 n 0101 | of or relating to litigation -02859341 01 a 02 acronymic 0 acronymous 0 004 + 07091902 n 0201 \ 07091902 n 0201 + 07091902 n 0101 \ 07091902 n 0101 | characterized by the use of acronyms -02859500 01 a 02 apostolic 0 apostolical 0 005 + 09798811 n 0201 \ 09798811 n 0201 + 09799213 n 0101 + 09798811 n 0101 \ 09798811 n 0101 | of or relating to or deriving from the Apostles or their teachings -02859708 01 a 01 phenomenal 0 001 \ 00034213 n 0101 | of or relating to a phenomenon; "phenomenal science" -02859817 01 a 02 eudemonic 0 eudaemonic 0 004 + 09542697 n 0202 \ 06160418 n 0201 + 09542697 n 0101 \ 06160418 n 0101 | producing happiness and well-being -02859974 01 a 02 eukaryotic 0 eucaryotic 0 006 + 01415626 n 0202 ! 02860183 a 0202 \ 01415626 n 0201 + 01415626 n 0101 ! 02860183 a 0101 \ 01415626 n 0101 | having cells with `good' or membrane-bound nuclei -02860183 01 a 02 prokaryotic 0 procaryotic 0 006 + 01415920 n 0202 ! 02859974 a 0202 \ 01415920 n 0201 + 01415920 n 0101 ! 02859974 a 0101 \ 01415920 n 0101 | having cells that lack membrane-bound nuclei -02860389 01 a 02 pectoral 0 thoracic 0 004 \ 05552607 n 0202 + 05551711 n 0101 + 03903290 n 0101 \ 05552607 n 0102 | of or relating to the chest or thorax; "pectoral organ" -02860564 01 a 01 pastoral 0 003 + 06625850 n 0101 + 09983572 n 0105 \ 09983572 n 0105 | of or relating to a pastor; "pastoral work"; "a pastoral letter" -02860719 01 a 01 particularistic 0 002 + 05705075 n 0101 \ 05705075 n 0101 | relating to particularism (exclusive interest in one group or class or sect etc.); "a particularistic-seeming statement" -02860919 01 a 01 parturient 0 002 + 14048441 n 0101 \ 13532886 n 0101 | of or relating to or giving birth; "parturient pangs"; "the parturient uterus" -02861072 01 a 01 patellar 0 002 + 05278395 n 0101 \ 05278395 n 0101 | near or relating to the patella or kneecap; "patellar tendon" -02861206 01 a 02 pathological 0 pathologic 0 004 + 06060845 n 0201 \ 06060845 n 0201 + 06060845 n 0101 \ 06060845 n 0101 | of or relating to the practice of pathology; "pathological laboratory" -02861402 01 a 01 palatine 0 001 \ 03877845 n 0101 | of or relating to a palace -02861483 01 a 01 palatine 1 002 + 10394141 n 0101 \ 10394141 n 0101 | of or relating to a count palatine and his royal prerogatives -02861617 01 a 02 pictorial 0 pictural 0 006 + 06999436 n 0201 + 03876519 n 0202 + 03931044 n 0201 \ 06999436 n 0201 + 06593668 n 0101 \ 06999436 n 0101 | pertaining to or consisting of pictures; "pictorial perspective"; "pictorial records" -02861859 01 a 01 optical 1 002 + 06100778 n 0101 \ 06100778 n 0101 | of or relating to or involving light or optics; "optical supplies" -02861997 01 a 02 objective 0 accusative 0 003 ;c 06174404 n 0000 \ 06311557 n 0202 \ 06311557 n 0103 | serving as or indicating the object of a verb or of certain prepositions and used for certain other purposes; "objective case"; "accusative endings" -02862251 01 a 02 possessive 0 genitive 0 003 ;c 06174404 n 0000 \ 06311852 n 0202 \ 06311852 n 0104 | serving to express or indicate possession; "possessive pronouns"; "the genitive endings" -02862444 01 a 01 nuclear 1 002 ;c 06090869 n 0000 \ 09375085 n 0101 | of or relating to or constituting the nucleus of an atom; "nuclear physics"; "nuclear fission"; "nuclear forces" -02862629 01 a 01 nuclear 2 002 ;c 06037666 n 0000 \ 05434927 n 0101 | of or relating to or constituting the nucleus of a cell; "nuclear membrane"; "nuclear division" -02862797 01 a 02 nucleated 0 nucleate 0 003 ;c 06037666 n 0000 \ 05434927 n 0201 \ 05434927 n 0101 | having a nucleus or occurring in the nucleus; "nucleated cells" -02862964 01 a 02 visceral 0 splanchnic 0 001 \ 05298988 n 0101 | relating to or affecting the viscera; "visceral bleeding"; "a splanchnic nerve" -02863111 01 a 01 narcotic 0 001 \ 03808564 n 0101 | of or relating to or designating narcotics; "narcotic addicts"; "narcotic stupor" -02863247 01 a 02 mystic 0 mystical 0 006 + 10343554 n 0201 + 05784560 n 0201 + 05948857 n 0201 \ 05948857 n 0201 + 05948857 n 0101 \ 05948857 n 0101 | relating to or characteristic of mysticism; "mystical religion" -02863464 01 a 02 mystic 1 mystical 1 006 + 10343554 n 0201 + 05784560 n 0201 + 05948857 n 0201 \ 05784560 n 0201 + 05784560 n 0101 \ 05784560 n 0101 | relating to or resembling mysticism; "mystical intuition"; "mystical theories about the securities market" -02863724 01 a 04 carbonaceous 0 carbonous 0 carbonic 0 carboniferous 0 006 \ 14633206 n 0401 + 00369628 v 0301 + 14633206 n 0301 \ 14633206 n 0301 \ 14633206 n 0201 \ 14633206 n 0101 | relating to or consisting of or yielding carbon -02863959 01 a 01 Melanesian 0 001 \ 08836630 n 0101 | of or relating to Melanesia or its people or culture -02864068 01 a 01 melodic 0 001 \ 07028373 n 0102 | of or relating to melody; "melodic harmony" -02864165 01 a 01 monumental 0 004 + 08600443 n 0101 + 04076713 n 0102 + 03743902 n 0102 \ 03743902 n 0102 | relating or belonging to or serving as a monument; "the use of the arch in monumental architecture"; "monumental sculptures" -02864400 01 a 01 modal 0 003 + 13801424 n 0102 + 13801424 n 0103 \ 13801424 n 0102 | relating to or expressing the mood of a verb; "modal auxiliary" -02864551 01 a 01 modal 1 002 + 06861630 n 0101 \ 06861630 n 0101 | of or relating to a musical mode; especially written in an ecclesiastical mode -02864699 01 a 01 millenary 0 003 + 15252146 n 0101 + 15141213 n 0101 \ 13750844 n 0101 | relating to or consisting of 1000 -02864824 01 a 02 millennial 0 millennian 0 005 + 15141213 n 0201 \ 15141213 n 0201 + 15252146 n 0101 + 15141213 n 0101 \ 15141213 n 0101 | relating to a millennium or span of a thousand years -02865018 01 a 02 millenarian 0 chiliastic 0 002 + 06189551 n 0204 \ 15141213 n 0101 | relating to or believing in the millennium of peace and happiness -02865172 01 a 01 metropolitan 0 002 + 08524735 n 0102 \ 08226335 n 0102 | relating to or characteristic of a metropolis; "metropolitan area" -02865315 01 a 01 meteoric 0 002 + 09353109 n 0102 \ 09353109 n 0101 | pertaining to or consisting of meteors or meteoroids; "meteoric shower"; "meteoric impacts" -02865479 01 a 03 meteorologic 0 meteorological 0 meteoric 2 005 \ 06118563 n 0301 + 06118563 n 0201 \ 06118563 n 0201 + 06118563 n 0101 \ 06118563 n 0101 | of or pertaining to atmospheric phenomena, especially weather and weather conditions; "meteorological factors"; "meteorological chart"; "meteoric (or meteorological) phenomena" -02865814 01 a 01 metaphysical 0 002 + 06162653 n 0101 \ 06162653 n 0101 | pertaining to or of the nature of metaphysics; "metaphysical philosophy" -02865963 01 a 01 metastable 0 002 ;c 06090869 n 0000 \ 04739262 n 0101 | (of physical systems) continuing in its present state of equilibrium unless sufficiently disturbed to pass to a more stable state of equilibrium -02866183 01 a 01 meridian 0 001 \ 15165490 n 0101 | of or happening at noon; "meridian hour" -02866278 01 a 01 mercurial 0 002 + 14645346 n 0101 \ 14645346 n 0101 | relating to or containing or caused by mercury; "mercurial preparations"; "mercurial sore mouth" -02866448 01 a 01 Mercurial 1 002 + 09562704 n 0101 \ 09562704 n 0101 | relating to or having characteristics (eloquence, shrewdness, swiftness, thievishness) attributed to the god Mercury; "more than Mercurial thievishness" -02866674 01 a 01 Mercurial 2 001 \ 09351408 n 0101 | relating to or under the (astrological) influence of the planet Mercury; "the Mercurial canals" -02866825 01 a 01 Mesoamerican 0 002 + 08735564 n 0101 \ 10310783 n 0101 | of or relating to the people of Mesoamerica or their languages or cultures -02866976 01 a 02 mesoblastic 0 mesodermal 0 004 + 01464077 n 0201 \ 01464077 n 0201 + 01464077 n 0102 \ 01464077 n 0101 | relating to or derived from the mesoderm -02867141 01 a 01 Mesozoic 0 001 \ 15126175 n 0101 | of or relating to or denoting the Mesozoic era -02867242 01 a 01 messianic 0 004 + 09537502 n 0101 + 09537325 n 0101 + 09537660 n 0101 \ 09537660 n 0101 | of or relating to a messiah promising deliverance; "messianic cult" -02867419 01 a 01 muciferous 0 001 \ 05415395 n 0101 | containing or secreting mucus -02867505 01 a 01 mucosal 0 002 + 05327134 n 0102 \ 05327134 n 0102 | of or relating to mucous membranes -02867611 01 a 01 murine 0 002 + 02331842 n 0101 \ 02331479 n 0102 | of or relating to or transmitted by a member of the family Muridae (rats and mice); "a murine plague" -02867783 01 a 01 musical 0 002 + 04983402 n 0102 \ 07020895 n 0101 | characterized by or capable of producing music; "a musical evening"; "musical instruments" -02867945 01 a 01 musicological 0 002 + 06171388 n 0101 \ 06171388 n 0101 | of or relating to musicology -02868051 01 a 01 exteroceptive 0 001 \ 05653848 n 0101 | of or relating to exteroception -02868142 01 a 01 proprioceptive 0 001 \ 05659621 n 0101 | of or relating to proprioception -02868235 01 a 01 interoceptive 0 001 \ 05654052 n 0101 | of or relating to interoception -02868326 01 a 01 perceptive 0 004 + 07513247 n 0102 + 05749619 n 0104 + 02106506 v 0101 \ 00876874 n 0102 | of or relating to perception; "perceptive faculties" -02868489 01 a 02 acoustic 0 acoustical 0 005 + 06094774 n 0201 \ 06094774 n 0201 + 02675987 n 0101 + 06094774 n 0101 \ 06094774 n 0101 | of or relating to the science of acoustics; "acoustic properties of a hall" -02868704 01 a 03 auditory 0 audile 0 auditive 0 004 \ 05657718 n 0301 + 10165673 n 0201 \ 05657718 n 0201 \ 05657718 n 0101 | of or relating to the process of hearing; "auditory processing"; "an audile person" -02868916 01 a 03 gustatory 0 gustative 0 gustatorial 0 005 + 05658226 n 0302 \ 05715283 n 0301 \ 05715283 n 0201 + 05658226 n 0102 \ 05715283 n 0101 | of or relating to gustation -02869097 01 a 03 haptic 0 tactile 0 tactual 0 007 \ 05655119 n 0301 \ 05722427 n 0301 + 05721990 n 0202 \ 05655119 n 0201 \ 05722427 n 0201 \ 05655119 n 0101 \ 05722427 n 0101 | of or relating to or proceeding from the sense of touch; "haptic data"; "a tactile reflex" -02869368 01 a 01 ocellated 0 001 \ 04681621 n 0102 | having ocelli -02869437 01 a 01 octal 0 001 \ 06810238 n 0101 | of or pertaining to a number system having 8 as its base; "an octal digit" -02869563 01 a 04 ocular 4 optic 4 optical 4 visual 4 005 \ 05654362 n 0401 \ 05654362 n 0301 + 05311054 n 0203 \ 05654362 n 0201 \ 05654362 n 0101 | relating to or using sight; "ocular inspection"; "an optical illusion"; "visual powers"; "visual navigation" -02869823 01 a 04 ocular 0 optic 0 optical 0 opthalmic 0 004 \ 05311054 n 0401 \ 05311054 n 0301 \ 05311054 n 0201 \ 05311054 n 0101 | of or relating to or resembling the eye; "ocular muscles"; "an ocular organ"; "ocular diseases"; "the optic (or optical) axis of the eye"; "an ocular spot is a pigmented organ or part believed to be sensitive to light" -02870178 01 a 01 orbital 2 002 + 05285275 n 0102 \ 05285275 n 0102 | of or relating to the eye socket; "orbital scale"; "orbital arch" -02870315 01 a 02 suborbital 2 subocular 0 001 \ 05285275 n 0102 | situated on or below the floor of the eye socket; "a suborbital bone" -02870453 01 a 02 kinesthetic 0 kinaesthetic 0 007 + 05658985 n 0204 + 05722208 n 0202 \ 05658985 n 0201 + 05658985 n 0103 + 05722208 n 0101 + 05658985 n 0101 \ 05658985 n 0101 | of or relating to kinesthesis -02870663 01 a 02 angelic 0 angelical 0 005 + 10546850 n 0204 + 09538915 n 0201 \ 09538915 n 0201 + 09538915 n 0101 \ 09538915 n 0101 | of or relating to angels; "angelic messenger" -02870846 01 a 02 seraphic 0 seraphical 0 004 + 09539872 n 0201 \ 09539872 n 0201 + 09539872 n 0101 \ 09539872 n 0101 | of or relating to an angel of the first order; "he imagined a seraphic presence in the room" -02871060 01 a 01 ethereal 0 004 ;c 06084469 n 0000 + 14709102 n 0101 + 03299929 n 0101 \ 03299929 n 0101 | of or containing or dissolved in ether; "ethereal solution" -02871229 01 a 01 firmamental 0 002 + 08521267 n 0104 \ 08521267 n 0104 | relating to the firmament or upper regions -02871347 01 a 01 elysian 0 002 + 05628403 n 0101 \ 05628403 n 0101 | relating to the Elysian Fields -02871449 01 a 01 diocesan 0 003 + 10013811 n 0101 + 08550966 n 0101 \ 08550966 n 0101 | belonging to or governing a diocese -02871575 01 a 01 eparchial 0 003 + 08654260 n 0101 + 08551296 n 0101 \ 08551296 n 0101 | of or relating to an eparchy -02871695 01 a 01 parochial 0 003 + 08615001 n 0101 + 08223688 n 0101 \ 08615001 n 0101 | relating to or supported by or located in a parish; "parochial schools" -02871858 01 a 01 regional 0 001 \ 08630985 n 0101 | characteristic of a region; "regional flora" -02871957 01 a 01 vicinal 0 002 + 08641113 n 0101 \ 08641113 n 0101 | belonging to or limited to a vicinity -02872066 01 a 02 conjugal 0 connubial 0 002 \ 13963970 n 0201 \ 13963970 n 0101 | of or relating to marriage or to the relationship between a wife and husband; "connubial bliss"; "conjugal visits" -02872265 01 a 01 binocular 0 001 \ 05311054 n 0101 | relating to both eyes; "binocular vision" -02872362 01 a 01 cultural 2 002 + 00917759 n 0101 \ 00917759 n 0101 | relating to the raising of plants or animals; "a cultural variety" -02872501 01 a 01 cultural 0 002 + 05984936 n 0102 \ 05984936 n 0102 | of or relating to the shared knowledge and values of a society; "cultural roots" -02872654 01 a 01 sociocultural 0 002 \ 07966140 n 0101 \ 05984936 n 0102 | relating to both social and cultural matters -02872776 01 a 01 multicultural 0 001 \ 05964805 n 0101 | of or relating to or including several cultures; "a multicultural event" -02872908 01 a 01 cross-cultural 0 001 \ 08287844 n 0101 | dealing with or comparing two or more cultures; "a cross-cultural survey" -02873042 01 a 01 transcultural 0 001 \ 08287844 n 0101 | extending through all human cultures; "a transcultural ideal of freedom embracing all the peoples of the world" -02873213 01 a 01 transactinide 0 002 + 14627373 n 0101 \ 14627373 n 0101 | of or belonging to the elements with atomic numbers greater than 103 -02873359 01 a 01 transcendental 0 002 + 06192186 n 0101 \ 06192186 n 0101 | of or characteristic of a system of philosophy emphasizing the intuitive and spiritual above the empirical and material -02873557 01 a 01 transuranic 0 001 \ 14660443 n 0101 | having an atomic number greater than 92 -02873654 01 a 01 burlesque 0 003 + 06780309 n 0107 + 07017999 n 0101 \ 07017999 n 0101 | relating to or characteristic of a burlesque; "burlesque theater" -02873811 01 a 01 vascular 0 005 + 00581671 v 0101 + 00122097 v 0101 + 05214469 n 0101 \ 05397333 n 0101 ! 02874053 a 0101 | of or relating to or having vessels that conduct and circulate fluids; "vascular constriction"; "a vascular bundle" -02874053 01 a 01 avascular 0 001 ! 02873811 a 0101 | without blood vessels -02874130 01 a 01 cardiovascular 0 001 \ 05417975 n 0101 | of or pertaining to or involving the heart and blood vessels; "cardiovascular conditioning" -02874282 01 a 01 choral 1 007 + 08188814 n 0101 + 08188638 n 0101 + 08188449 n 0101 + 08187837 n 0101 + 07379695 n 0101 + 07050177 n 0102 \ 08187837 n 0101 | related to or written for or performed by a chorus or choir; "choral composition"; "choral ensemble" -02874543 01 a 01 choric 0 002 + 08187988 n 0101 \ 08187988 n 0101 | relating to or written for or in the style of a Greek chorus; "a choric Greek tragedy" -02874700 01 a 01 chorionic 0 002 + 01472939 n 0101 \ 01472939 n 0101 | of or relating to a chorion; "a chorionic villus is a minute vascular projection on the fetal chorion" -02874876 01 a 02 communist 0 communistic 0 004 + 08365855 n 0201 + 06214744 n 0201 \ 06214744 n 0201 \ 06214744 n 0101 | relating to or marked by communism; "Communist Party"; "communist governments"; "communistic propaganda" -02875104 01 a 01 post-communist 0 001 \ 06214744 n 0101 | no longer communist; subsequent to being communistic; "the bank announced its first loan to a post-communist country" -02875282 01 a 01 Marxist 0 001 \ 06215618 n 0101 | following the ideas of Marx and Engels -02875374 01 a 01 Marxist-Leninist 0 001 \ 06215152 n 0101 | following the ideas of Marx expanded to include those of Lenin -02875499 01 a 03 Bolshevik 0 Bolshevist 0 Bolshevistic 0 005 + 09863936 n 0302 + 08368308 n 0301 \ 08368308 n 0301 \ 08368308 n 0201 \ 08368308 n 0101 | of or relating to Bolshevism; "Bolshevik Revolution" -02875707 01 a 03 cutaneous 0 cutaneal 0 dermal 2 004 \ 05238282 n 0303 + 05238282 n 0203 \ 05238282 n 0203 \ 05238282 n 0103 | relating to or existing on or affecting the skin; "cutaneous nerves"; "a cutaneous infection" -02875930 01 a 02 dermal 0 dermic 0 004 + 05243879 n 0201 \ 05243879 n 0201 + 05243879 n 0101 \ 05243879 n 0101 | of or relating to or located in the dermis -02876088 01 a 04 cuticular 0 epidermal 0 epidermic 0 dermal 1 009 \ 05240211 n 0402 + 05240211 n 0301 \ 05240211 n 0302 + 05240211 n 0201 \ 05240211 n 0202 + 01895630 n 0101 + 01903756 n 0103 \ 05240211 n 0102 \ 01895630 n 0101 | of or relating to a cuticle or cuticula -02876360 01 a 02 ectodermal 0 ectodermic 0 004 + 01463739 n 0201 \ 01463739 n 0201 + 01463739 n 0101 \ 01463739 n 0101 | of or relating to the ectoderm -02876514 01 a 01 encysted 0 001 \ 14202996 n 0101 | enclosed in (or as if in) a cyst -02876601 01 a 02 endermic 0 endermatic 0 002 \ 05238282 n 0201 \ 05238282 n 0101 | acting by absorption through the skin; "endermic ointment" -02876745 01 a 01 endogenous 0 001 \ 11668117 n 0104 | of or resembling an endogen -02876829 01 a 01 hypodermal 0 002 + 01895850 n 0101 \ 01895850 n 0101 | of or relating to the hypodermis -02876936 01 a 02 hypodermic 0 subcutaneous 0 003 \ 05238282 n 0201 + 01895850 n 0101 \ 05238282 n 0101 | relating to or located below the epidermis; "hypodermic needle"; "subcutaneous implant" -02877131 01 a 02 hypoglycemic 0 hypoglycaemic 0 004 + 14319454 n 0202 \ 14319454 n 0202 + 14319454 n 0101 \ 14319454 n 0101 | of or relating to hypoglycemia; "hypoglycemic agents" -02877313 01 a 02 hypovolemic 0 hypovolaemic 0 004 + 14195112 n 0202 \ 14195112 n 0202 + 14195112 n 0101 \ 14195112 n 0101 | of or relating to a decrease in the volume of circulating blood -02877503 01 a 03 intradermal 0 intradermic 0 intracutaneous 0 003 \ 05238282 n 0301 \ 05238282 n 0201 \ 05238282 n 0101 | relating to areas between the layers of the skin; "an intradermal injection" -02877704 01 a 01 facial 0 005 + 05479314 n 0101 + 00665781 n 0101 + 05601198 n 0101 + 05600637 n 0101 \ 05600637 n 0101 | of or concerning the face; "a facial massage"; "facial hair"; "facial expression" -02877910 01 a 02 mandibular 0 inframaxillary 0 003 \ 05275905 n 0202 + 05275905 n 0102 \ 05275905 n 0102 | relating to the lower jaw -02878045 01 a 01 mandibulofacial 0 001 \ 05600637 n 0101 | of or relating to the lower jaw and face -02878147 01 a 01 maxillary 0 002 + 05284132 n 0103 \ 05284132 n 0103 | of or relating to the upper jaw -02878252 01 a 01 maxillodental 0 001 \ 05284132 n 0103 | of or relating to the upper jaw and its associated teeth -02878368 01 a 01 maxillofacial 0 002 ;c 06063588 n 0000 \ 05600637 n 0101 | of or relating to the upper jaw and face (particularly with reference to specialized surgery of the maxilla); "maxillofacial surgery" -02878580 01 a 01 maxillomandibular 0 001 \ 05546040 n 0101 | relating to the upper and lower jaws -02878680 01 a 01 interfacial 0 002 + 03578435 n 0101 \ 03578435 n 0101 | relating to or situated at an interface; "an interfacial layer"; "interfacial tension is the surface tension at the interface between two liquids" -02878902 01 a 02 lacrimal 1 lachrymal 1 002 \ 05331653 n 0201 \ 05331653 n 0101 | relating to or located near the organ that produces tears -02879044 01 a 02 lacrimal 0 lachrymal 0 002 \ 05405324 n 0201 \ 05405324 n 0101 | of or relating to tears -02879152 01 a 02 lacrimatory 0 lachrymatory 0 002 \ 05405324 n 0201 \ 05405324 n 0101 | relating to or prompting tears -02879273 01 a 02 menstrual 0 catamenial 0 002 + 13513747 n 0204 \ 13513747 n 0101 | of or relating to menstruation or the menses; "menstrual period" -02879424 01 a 01 mural 0 002 + 03799710 n 0101 \ 04546855 n 0101 | of or relating to walls; "mural painting" -02879535 01 a 01 extralinguistic 0 001 \ 06282651 n 0101 | not included within the realm of language -02879638 01 a 04 papal 0 apostolic 1 apostolical 1 pontifical 1 006 + 10453533 n 0404 \ 10453533 n 0401 \ 10453533 n 0301 \ 10453533 n 0201 + 10453533 n 0101 \ 10453533 n 0101 | proceeding from or ordered by or subject to a pope or the papacy regarded as the successor of the Apostles; "papal dispensation" -02879947 01 a 01 Peloponnesian 0 002 + 08790495 n 0102 \ 08790495 n 0102 | of or relating to Peloponnesus; "Peloponnesian War" -02880076 01 a 01 pubic 0 002 + 05278714 n 0101 \ 05278714 n 0101 | relating or near the pubis; "pubic bones"; "pubic hair" -02880201 01 a 01 viral 0 002 + 01328702 n 0101 \ 01328702 n 0101 | relating to or caused by a virus; "viral infection" -02880322 01 a 02 grammatical 0 grammatic 0 004 + 06174404 n 0201 \ 06174404 n 0201 + 06174404 n 0101 \ 06174404 n 0101 | of or pertaining to grammar; "the grammatic structure of a sentence"; "grammatical rules"; "grammatical gender" -02880557 01 a 02 syntactic 0 syntactical 0 006 + 06176107 n 0201 + 06176322 n 0201 \ 06176322 n 0201 + 06176107 n 0101 + 06176322 n 0101 \ 06176322 n 0101 | of or relating to or conforming to the rules of syntax; "the syntactic rules of a language" -02880808 01 a 01 glossopharyngeal 0 002 \ 05301072 n 0101 \ 05547508 n 0101 | pertaining to the tongue and throat -02880924 01 a 01 glottal 0 002 + 05301526 n 0101 \ 05301526 n 0101 | of or relating to or produced by the glottis; "glottal stops" -02881057 01 a 01 glottochronological 0 002 + 06156521 n 0101 \ 06156521 n 0101 | pertaining to the study of the evolution of languages from a common source; "glottochronological studies" -02881246 01 a 01 lexicostatistic 0 002 + 06179574 n 0101 \ 06179574 n 0101 | pertaining to statistical methods used in studying the relations between languages; "lexicostatistic techniques" -02881438 01 a 01 focal 0 003 + 11455695 n 0101 + 08572335 n 0101 \ 11455695 n 0101 | of or relating to a focus; "focal length" -02881567 01 a 02 genital 0 venereal 0 001 \ 05514081 n 0103 | of or relating to the external sex organs; "genital herpes"; "venereal disease" -02881711 01 a 02 genitourinary 0 GU 0 002 \ 05514081 n 0102 \ 05333259 n 0102 | of or related to the genital and urinary organs or their functions; "genitourinary infections" -02881888 01 a 01 feline 0 002 + 02120997 n 0101 \ 02121620 n 0101 | of or relating to cats; "feline fur" -02881995 01 a 01 laryngeal 0 002 + 05529729 n 0101 \ 05529729 n 0101 | of or relating to or situated in the larynx; "laryngeal infection" -02882135 01 a 01 laryngopharyngeal 0 003 + 05529159 n 0101 \ 05529729 n 0101 \ 05547508 n 0102 | of or relating to the larynx and pharynx -02882275 01 a 01 zygotic 0 002 + 05431926 n 0101 \ 05431926 n 0101 | of or relating to a zygote -02882373 01 a 01 uninucleate 0 002 ! 02882467 a 0101 \ 05434927 n 0101 | having one nucleus -02882467 01 a 01 multinucleate 0 002 ! 02882373 a 0101 \ 05434927 n 0101 | having two or more nuclei -02882570 01 a 01 muscular 0 003 + 05289057 n 0101 + 14044719 n 0101 \ 05289297 n 0101 | of or relating to or consisting of muscle; "muscular contraction" -02882726 01 a 01 musculoskeletal 0 002 \ 05289297 n 0101 \ 05585383 n 0102 | relating to muscles and skeleton -02882838 01 a 01 intramuscular 0 001 \ 05289297 n 0101 | within a muscle; "an intramuscular injection" -02882943 01 a 01 neuroendocrine 0 002 \ 05462315 n 0101 \ 05329533 n 0101 | of or relating to the nervous and endocrine systems (especially as they function together) -02883112 01 a 01 neurogenic 0 001 \ 05296775 n 0101 | arising in or stimulated by nerve tissues -02883210 01 a 01 neuroglial 0 002 + 05467054 n 0101 \ 05467054 n 0101 | relating to or consisting of neuroglia; "neuroglial tissue" -02883344 01 a 01 neuromatous 0 002 + 14249262 n 0101 \ 14249262 n 0101 | of or relating to or caused by neuromas -02883459 01 a 01 neuromuscular 0 002 \ 05289297 n 0101 \ 05474346 n 0101 | affecting or characteristic of both neural and muscular tissue -02883599 01 a 02 nephritic 0 renal 0 002 \ 05332802 n 0201 \ 05332802 n 0101 | of or relating to the kidneys -02883710 01 a 01 nephritic 1 002 + 14113798 n 0101 \ 14113798 n 0101 | affected by nephritis -02883805 01 a 01 neurotoxic 0 002 + 15036321 n 0101 \ 15036321 n 0101 | poisonous to nerves or nerve cells -02883914 01 a 01 neurotropic 0 002 ;c 06043075 n 0000 \ 00862310 n 0101 | (of a virus, toxin, or chemical) tending to attack or affect the nervous system preferentially -02884085 01 a 01 parental 0 004 ;c 06075527 n 0000 + 10399491 n 0101 ! 02884275 a 0101 \ 10399491 n 0101 | designating the generation of organisms from which hybrid offspring are produced -02884275 01 a 01 filial 0 003 ;c 06075527 n 0000 ! 02884085 a 0101 \ 10373998 n 0101 | designating the generation or the sequence of generations following the parental generation -02884456 01 a 01 spinal 0 003 + 05588174 n 0103 + 01900488 n 0101 \ 05588174 n 0103 | of or relating to the spine or spinal cord; "spinal cord"; "spinal injury" -02884619 01 a 01 atomic 0 002 + 14619225 n 0101 \ 14619225 n 0101 | of or relating to or comprising atoms; "atomic structure"; "atomic hydrogen" -02884766 01 a 02 monatomic 0 monoatomic 0 002 \ 14619225 n 0201 \ 14619225 n 0101 | of or relating to an element consisting of a single atom; "helium and argon are monatomic gases" -02884949 01 a 01 diatomic 0 001 \ 14619225 n 0101 | of or relating to a molecule made up of two atoms; "a diatomic molecule" -02885076 01 a 01 polyatomic 0 001 \ 14619225 n 0101 | of or relating to a molecule made up of more than two atoms -02885192 01 a 01 subatomic 0 001 \ 14619225 n 0101 | of or relating to constituents of the atom or forces within the atom; "subatomic particles"; "harnessing subatomic energy" -02885370 01 a 01 client-server 0 001 \ 03085915 n 0101 | relating to a computer system in which a central server supports a number of networked workstations -02885529 01 a 01 clinical 0 004 + 08054076 n 0101 + 07146300 n 0101 + 03043274 n 0101 \ 08054076 n 0101 | relating to a clinic or conducted in or as if in a clinic and depending on direct observation of patients; "clinical observation"; "clinical case study" -02885790 01 a 01 subclinical 0 001 \ 02885529 a 0101 | relating to the stage in the development of a disease before the symptoms are observed -02885934 01 a 01 postal 0 003 + 06264398 n 0104 + 00318186 n 0101 \ 06264398 n 0104 | of or relating to the system for delivering mail; "postal delivery" -02886090 01 a 01 continental 0 002 + 09254614 n 0101 \ 09254614 n 0101 | of or relating to or characteristic of a continent; "the continental divide"; "continental drift" -02886263 01 a 01 Continental 1 002 + 08696737 n 0101 \ 08696737 n 0101 | of or pertaining to or typical of Europe; "a Continental breakfast" -02886406 01 a 01 continental 2 001 \ 09048460 n 0101 | of or relating to or concerning the American colonies during and immediately after the American Revolutionary War; "the Continental Army"; "the Continental Congress" -02886629 01 a 01 lexical 0 003 + 05651068 n 0101 + 05651242 n 0102 \ 06286395 n 0101 | of or relating to words; "lexical decision task" -02886767 01 a 01 nonlexical 0 001 \ 06286395 n 0101 | not relating to words; "nonlexical morphemes" -02886869 01 a 01 lexical 1 002 + 06418901 n 0102 \ 06418901 n 0102 | of or relating to dictionaries -02886971 01 a 01 psychosexual 0 002 + 05930010 n 0101 \ 05930010 n 0101 | of or relating to the mental or emotional attitudes about sexuality -02887115 01 a 01 sexagesimal 0 001 \ 13738840 n 0101 | of or relating to or reckoning in sixtieths; "the sexagesimal divisions of hours and degrees" -02887266 01 a 01 sex-limited 0 001 \ 05007280 n 0101 | relating to characteristics that are expressed differently in the two sexes -02887399 01 a 01 sex-linked 0 001 \ 11506549 n 0101 | concerning characteristics that are determined by genes carried on the sex chromosomes (on the X chromosome in particular) -02887578 01 a 01 sexual 1 002 + 05006898 n 0103 \ 05006898 n 0101 | of or relating to or characterized by sexuality; "sexual orientation"; "sexual distinctions" -02887741 01 a 02 coital 0 copulatory 0 004 + 01428853 v 0201 \ 00845523 n 0204 + 00845523 n 0105 \ 00845523 n 0105 | of or relating to coitus or copulation -02887899 01 a 01 marine 0 001 \ 09426788 n 0101 | of or relating to the sea; "marine explorations" -02888000 01 a 01 marine 1 002 ;r 09044862 n 0000 \ 08192970 n 0103 | of or relating to military personnel who serve both on land and at sea (specifically the U.S. Marine Corps); "marine barracks" -02888198 01 a 01 multilevel 0 001 \ 03365991 n 0101 | of a building having more than one level -02888295 01 a 02 multiphase 0 polyphase 0 003 ;c 11449907 n 0000 \ 15290132 n 0201 \ 15290132 n 0101 | of an electrical system that uses or generates two or more alternating voltages of the same frequency but differing in phase angle -02888531 01 a 01 muzzle-loading 0 001 \ 03469687 n 0101 | (of firearms) taking the projectile or cartridge through the muzzle -02888659 01 a 01 littoral 0 001 \ 08596076 n 0101 | of or relating to a coastal or shore region -02888757 01 a 01 sublittoral 0 001 \ 09255207 n 0101 | of or relating to the region of the continental shelf (between the seashore and the edge of the continental shelf) or the marine organisms situated there -02888968 01 a 01 surgical 0 003 + 06063588 n 0101 ! 02889157 a 0101 \ 00671351 n 0102 | of or relating to or involving or used in surgery; "surgical instruments"; "surgical intervention" -02889157 01 a 01 nonsurgical 0 002 ! 02888968 a 0101 \ 00671351 n 0102 | not surgical; "nonsurgical techniques" -02889271 01 a 01 open-hearth 0 001 \ 03848537 n 0101 | of or relating to or produced by the open-hearth process; "open-hearth steel" -02889406 01 a 01 ophthalmic 0 001 \ 06054446 n 0101 | of or relating to ophthalmology; "ophthalmic surgery" -02889516 01 a 01 ophthalmic 1 001 \ 05311054 n 0101 | of or relating to the eye; "ophthalmic defect" -02889619 01 a 01 physiotherapeutic 0 002 + 00700000 n 0102 \ 00700000 n 0102 | of or relating to or used in physical therapy -02889746 01 a 03 nautical 2 maritime 0 marine 2 003 \ 01105737 n 0301 \ 01105737 n 0201 \ 01105737 n 0101 | relating to or involving ships or shipping or navigation or seamen; "nautical charts"; "maritime law"; "marine insurance" -02889978 01 a 01 thalassic 0 001 \ 09426788 n 0101 | relating to the seas, especially smaller or inland seas; "deposits of sediment in gulfs and seas rather than in the ocean proper are known as thalassic deposits"- Scientific American -02890216 01 a 02 oceanic 0 pelagic 0 003 \ 09426788 n 0201 + 09376198 n 0101 \ 09376198 n 0101 | relating to or occurring or living in or frequenting the open ocean; "oceanic islands like Bermuda"; "oceanic currents"; "oceanic birds"; "pelagic organisms"; "pelagic whaling" -02890492 01 a 01 transoceanic 0 001 \ 09376198 n 0101 | on or from the other side of an ocean; "transoceanic crossing" -02890613 01 a 01 ursine 0 001 \ 02131653 n 0101 | of or relating to or similar to bears -02890703 01 a 02 intravenous 0 endovenous 0 002 \ 05418717 n 0201 \ 05418717 n 0101 | within or by means of a vein; "an intravenous inflammation"; "intravenous feeding" -02890874 01 a 01 montane 0 001 \ 09359803 n 0101 | of or inhabiting mountainous regions; "montane flowers" -02890983 01 a 01 mechanical 0 003 + 00098385 n 0102 + 06100236 n 0101 \ 06100236 n 0101 | relating to or governed by or in accordance with mechanics; "a belief that the universe is a mechanical contrivance"; "the mechanical pressure of a strong wind" -02891236 01 a 02 mechanical 1 mechanically_skillful 0 002 \ 03701640 n 0201 \ 03701640 n 0101 | relating to or concerned with machinery or tools; "mechanical arts"; "mechanical design"; "mechanical skills" -02891444 01 a 01 zoological 0 001 \ 00015388 n 0101 | of or relating to animals or animal groups; "zoological garden" -02891564 01 a 01 zoological 1 002 + 06083243 n 0101 \ 06083243 n 0101 | concerning the study of animals and their classification and properties; "zoological research" -02891733 01 a 01 protozoological 0 002 + 06073748 n 0101 \ 02891444 a 0101 | concerning the branch of zoology that studies protozoans -02891869 01 a 03 protozoal 0 protozoan 0 protozoic 0 004 \ 01389188 n 0302 + 01389507 n 0202 \ 01389188 n 0202 \ 01389188 n 0102 | of or relating to the Protozoa -02892033 01 a 01 rental 0 002 + 13295657 n 0101 \ 13295657 n 0101 | of or relating to rent; "rental agreement"; "rental charges" -02892164 01 a 01 rental 1 002 + 13248393 n 0102 \ 13248393 n 0102 | available to rent or lease; "a rental car" -02892277 01 a 01 rickettsial 0 002 + 01371483 n 0101 \ 01371483 n 0101 | relating to or caused by rickettsias -02892389 01 a 01 ritual 0 004 + 00414790 n 0101 + 01027859 n 0101 + 01027859 n 0102 \ 01027859 n 0102 | of or relating to or employed in social rites or rituals; "a ritual dance of Haiti"; "sedate little colonial tribe with its ritual tea parties"- Nadine Gordimer -02892656 01 a 01 ritual 2 003 + 01030820 n 0101 + 01029406 n 0101 \ 01029406 n 0102 | of or relating to or characteristic of religious rituals; "ritual killing" -02892819 01 a 02 fetal 0 foetal 0 004 + 01459791 n 0202 \ 01459791 n 0201 + 01459791 n 0101 \ 01459791 n 0101 | of or relating to a fetus; "fetal development" -02892980 01 a 01 juvenile 0 003 + 09622049 n 0101 + 04928585 n 0103 \ 15147713 n 0101 | of or relating to or characteristic of or appropriate for children or young people; "juvenile diabetes"; "juvenile fashions" -02893195 01 a 01 herbal 0 003 + 12205694 n 0101 + 07811416 n 0101 \ 07811416 n 0101 | of or relating to herbs; "herbal tea, herbal medicine" -02893338 01 a 02 doctoral 0 doctorial 0 009 + 06702458 n 0202 + 10021892 n 0201 + 10020890 n 0201 \ 10021892 n 0201 \ 06702458 n 0202 + 06702458 n 0102 + 10021892 n 0101 \ 10021892 n 0101 \ 06702458 n 0102 | of or relating to a doctor or doctorate; "doctoral dissertation"; "doctorial candidates" -02893637 01 a 02 pediatric 0 paediatric 0 004 + 06061631 n 0202 \ 06061631 n 0202 + 06061631 n 0101 \ 06061631 n 0101 | of or relating to the medical care of children; "pediatric dentist" -02893827 01 a 01 kinetic 0 002 + 00863222 n 0101 \ 06113597 n 0102 | relating to the motion of material bodies and the forces associated therewith; "kinetic energy" -02893994 01 a 01 mammary 0 002 + 05554189 n 0102 \ 05554189 n 0102 | of or relating to the milk-giving gland of the female -02894119 01 a 03 neural 0 neuronal 0 neuronic 0 006 + 05465567 n 0302 \ 05465567 n 0302 + 05465567 n 0202 \ 05465567 n 0202 + 05465567 n 0102 \ 05465567 n 0102 | of or relating to neurons; "neural network" -02894327 01 a 01 sensorineural 0 001 \ 02894119 a 0101 | of or relating to the neural process of sensation -02894436 01 a 01 sensorimotor 0 001 \ 00859001 n 0101 | of or relating to the sensory and motor coordination of an organism or to the controlling nerves -02894591 01 a 01 occupational 0 001 \ 00582388 n 0101 | of or relating to the activity or business for which you are trained; "occupational hazard" -02894741 01 a 01 pelvic 0 002 + 05596651 n 0101 \ 05596651 n 0101 | of or relating to the pelvis; "pelvic exam"; "pelvic inflammation" -02894878 01 a 01 frontal 2 003 ;c 06118563 n 0000 + 11460488 n 0101 \ 11460488 n 0101 | of or relating to the front of an advancing mass of air; "frontal rainfall" -02895044 01 a 02 bucolic 0 pastoral 2 002 \ 10587605 n 0202 \ 10587605 n 0102 | relating to shepherds or herdsmen or devoted to raising sheep or cattle; "pastoral seminomadic people"; "pastoral land"; "a pastoral economy" -02895268 01 a 01 Masonic 0 003 + 10111144 n 0102 \ 10111144 n 0102 \ 08235513 n 0102 | of or relating to Freemasons or Freemasonry; "Masonic lodge" -02895418 01 a 01 masonic 1 003 + 10297531 n 0101 \ 10297531 n 0101 \ 00608896 n 0101 | of or relating to stonemasons or masonry; "masonic tools" -02895565 01 a 01 Masoretic 0 002 + 06375624 n 0101 \ 06375624 n 0101 | of or relating to the Masorah -02895668 01 a 01 masted 0 001 \ 03726760 n 0101 | having or furnished with a mast; often used in combination; "probably was so masted when she set forth"- S.E.Morrison; "a three-masted bark" -02895861 01 a 01 migrational 0 005 + 07312616 n 0101 + 01123095 n 0101 \ 01123095 n 0101 \ 07312616 n 0101 \ 07312829 n 0101 | of or related to migration -02896017 01 a 03 mnemonic 0 mnemotechnic 0 mnemotechnical 0 003 \ 05661551 n 0301 \ 05661551 n 0201 \ 05661551 n 0101 | of or relating to or involved the practice of aiding the memory; "mnemonic device" -02896222 01 a 01 parietal 0 002 ;c 06057539 n 0000 \ 05541645 n 0101 | of or relating to or associated with the parietal bones in the cranium; "parietal lobe" -02896383 01 a 01 statuary 0 002 + 04306847 n 0101 \ 04306847 n 0101 | of or relating to or suitable for statues -02896497 01 a 01 tubal 0 002 + 05246511 n 0101 \ 05246511 n 0101 | of or relating to occurring in a tube such as e.g. the Fallopian tube or Eustachian tube; "tubal ligation"; "tubal pregnancy" -02896692 01 a 01 velar 0 002 + 05309392 n 0102 \ 05309392 n 0102 | of or relating to the velum -02896789 01 a 02 documentary 0 documental 0 008 + 06470073 n 0201 + 03217458 n 0201 \ 06470073 n 0201 + 13403331 n 0101 + 06510977 n 0102 + 06470073 n 0101 + 03217458 n 0101 \ 06470073 n 0101 | relating to or consisting of or derived from documents -02897040 01 a 01 iambic 0 002 ;c 06170025 n 0000 \ 07095280 n 0101 | of or consisting of iambs; "iambic pentameter" -02897158 01 a 01 structural 0 001 \ 04931965 n 0101 | relating to or having or characterized by structure; "structural engineer"; "structural errors"; "structural simplicity" -02897335 01 a 01 structural 1 001 \ 05726345 n 0101 | relating to or caused by structure, especially political or economic structure; "structural unemployment in a technological society" -02897524 01 a 02 anatomic 0 anatomical 0 005 + 07151892 n 0202 + 05217168 n 0208 \ 05217168 n 0208 + 05217168 n 0108 \ 05217168 n 0108 | of or relating to the structure of the body; "anatomical features" -02897730 01 a 02 anatomic 1 anatomical 1 004 + 06057539 n 0201 \ 06057539 n 0201 + 06057539 n 0101 \ 06057539 n 0101 | of or relating to the branch of morphology that studies the structure of organisms; "anatomical research" -02897957 01 a 01 architectural 0 001 \ 06123363 n 0101 | of or pertaining to the art and science of architecture; "architectural history"; "architectural design" -02898121 01 a 02 tectonic 1 architectonic 0 003 + 06124395 n 0201 \ 06124395 n 0202 \ 06124395 n 0102 | of or pertaining to construction or architecture -02898276 01 a 02 organizational 0 organisational 0 002 \ 05726596 n 0203 \ 05726596 n 0102 | of or relating to an organization; "organizational structure" -02898433 01 a 01 cogitative 0 002 + 00628491 v 0102 \ 05784242 n 0101 | of or relating to having capacities for cogitation; "the cogitative faculty" -02898584 01 a 01 cognitive 0 002 + 00594621 v 0102 \ 00023271 n 0101 | of or being or relating to or involving cognition; "cognitive psychology"; "cognitive style" -02898750 01 a 01 mental 0 003 + 06195839 n 0101 + 05618056 n 0105 \ 05611302 n 0101 | of or relating to the mind; "mental powers"; "mental development"; "mental hygiene" -02898922 01 a 01 cultural 1 002 + 05751794 n 0101 \ 05751794 n 0101 | of or relating to the arts and manners that a group favors; "cultural events"; "a person of broad cultural interests" -02899112 01 a 01 factual 0 003 + 04759428 n 0102 + 04759428 n 0101 \ 05817396 n 0101 | of or relating to or characterized by facts; "factual considerations" -02899271 01 a 01 achondroplastic 0 002 + 14121804 n 0101 \ 14121804 n 0101 | of or relating to achondroplasia -02899383 01 a 01 ateleiotic 0 002 + 14508799 n 0101 \ 14508799 n 0101 | of or relating to ateleiosis -02899486 01 a 02 ecclesiastical 0 ecclesiastic 0 002 \ 08082602 n 0201 \ 08082602 n 0101 | of or associated with a church (especially a Christian Church); "ecclesiastic history" -02899666 01 a 04 priestly 0 hieratic 1 hieratical 1 sacerdotal 0 004 \ 08113443 n 0401 \ 08113443 n 0301 \ 08113443 n 0201 \ 08113443 n 0101 | associated with the priesthood or priests; "priestly (or sacerdotal) vestments"; "hieratic gestures" -02899912 01 a 01 sacerdotal 2 002 + 05951820 n 0101 \ 05951820 n 0101 | of or relating to a belief in sacerdotalism; "sacerdotal emphasis on the authority of priests" -02900081 01 a 01 molar 0 003 + 13724081 n 0102 + 05040081 n 0101 \ 13724081 n 0102 | containing one mole of a substance; "molar weight" -02900219 01 a 01 molar 2 003 + 13724081 n 0102 + 05040081 n 0101 \ 13724081 n 0102 | designating a solution containing one mole of solute per liter of solution -02900381 01 a 01 molal 0 003 + 13724081 n 0102 + 05039907 n 0101 \ 13724081 n 0102 | designating a solution containing one mole of solute per kilogram of solvent -02900545 01 a 01 molar 3 002 + 05307773 n 0101 \ 05307773 n 0101 | of or pertaining to the grinding teeth in the back of a mammal's mouth; "molar teeth" -02900700 01 a 01 molecular 0 002 + 14682133 n 0101 \ 14682133 n 0101 | relating to or produced by or consisting of molecules; "molecular structure"; "molecular oxygen"; "molecular weight is the sum of all the atoms in a molecule" -02900932 01 a 01 bimolecular 0 001 \ 14682133 n 0101 | relating to or affecting two molecules -02901028 01 a 01 intramolecular 0 001 \ 14682133 n 0101 | within the molecule; occurring by a reaction between different parts of the same molecule -02901178 01 a 01 intermolecular 0 001 \ 14682133 n 0101 | existing or acting between molecules; "intermolecular forces"; "intermolecular condensation" -02901331 01 a 01 macerative 0 002 + 00398741 v 0101 \ 13510152 n 0101 | accompanied by or characterized by maceration; "macerative degeneration of the liver" -02901491 01 a 02 macrencephalic 0 macrencephalous 0 004 + 14152492 n 0201 \ 14152492 n 0201 + 14152492 n 0101 \ 14152492 n 0101 | having a large brain case -02901649 01 a 02 macrocephalic 0 macrocephalous 0 003 \ 14508974 n 0201 + 14508974 n 0101 \ 14508974 n 0101 | having an exceptionally large head and brain -02901806 01 a 03 microcephalic 0 microcephalous 0 nanocephalic 0 006 + 14509299 n 0303 \ 14509299 n 0303 + 14509299 n 0201 \ 14509299 n 0201 + 14509299 n 0101 \ 14509299 n 0101 | having an abnormally small head and underdeveloped brain; "a nanocephalic dwarf" -02902068 01 a 01 microelectronic 0 002 + 06115179 n 0101 \ 06115179 n 0101 | of or relating to or consisting of miniature electronic components -02902214 01 a 02 machine_readable 0 computer_readable 0 002 ;c 06128570 n 0000 \ 06357985 n 0101 | suitable for feeding directly into a computer -02902361 01 a 01 macromolecular 0 002 + 14944888 n 0101 \ 14944888 n 0101 | relating to or consisting of or characterized by macromolecules; "macromolecular compounds" -02902531 01 a 01 isotopic 0 002 + 14619658 n 0101 \ 14619658 n 0101 | of or relating to or having the relation of an isotope -02902658 01 a 01 isothermic 0 001 \ 08590172 n 0101 | of or relating to an isotherm -02902744 01 a 01 microcosmic 0 001 \ 05938314 n 0101 | relating to or characteristic of a microcosm; "the microcosmic world of business" -02902883 01 a 01 micrometeoric 0 001 \ 09353918 n 0101 | of or relating to micrometeorites -02902976 01 a 01 micropylar 0 001 \ 11679378 n 0101 | of or relating to a micropyle -02903062 01 a 01 macrocosmic 0 002 + 09466280 n 0106 \ 09466280 n 0106 | relating to or constituting a macrocosm -02903177 01 a 01 mucinous 0 002 + 14730955 n 0101 \ 14730955 n 0101 | relating to or containing mucin -02903281 01 a 01 mucinoid 0 001 \ 14730955 n 0101 | resembling mucin -02903352 01 a 01 mucocutaneous 0 002 \ 05327134 n 0101 \ 05238282 n 0101 | of or relating to the mucous membranes and skin -02903477 01 a 01 mucopurulent 0 002 \ 05415395 n 0101 \ 05417472 n 0101 | containing or composed of mucus and pus -02903593 01 a 02 mucous 0 mucose 0 003 \ 05415395 n 0201 + 05415395 n 0101 \ 05415395 n 0101 | of or secreting or covered with or resembling mucus; "mucous tissue"; "mucous glands of the intestine" -02903793 01 a 02 mucoid 0 mucoidal 0 003 \ 05415395 n 0201 + 14956027 n 0101 \ 05415395 n 0101 | relating to or resembling mucus; "a mucoid substance" -02903946 01 a 01 colloidal 0 002 + 14588219 n 0101 \ 14588219 n 0101 | of or relating to or having the properties of a colloid -02904075 01 a 01 administrative 0 003 + 02431971 v 0102 + 02431971 v 0101 \ 08164585 n 0101 | of or relating to or responsible for administration -02904223 01 a 01 managerial 0 002 + 10014939 n 0102 \ 01133281 n 0101 | of or relating to the function or responsibility or activity of management -02904372 01 a 01 supervisory 0 002 + 02443049 v 0102 \ 10676877 n 0101 | of or limited to or involving supervision; "in a supervisory capacity" -02904518 01 a 02 nervous 0 neural 1 003 \ 05462315 n 0201 + 05474346 n 0101 \ 05462315 n 0101 | of or relating to the nervous system; "nervous disease"; "neural disorder" -02904691 01 a 01 latinate 0 001 \ 06962600 n 0101 | derived from or imitative of Latin -02904780 01 a 01 latitudinal 0 003 + 08595720 n 0101 + 08595531 n 0101 \ 08595531 n 0101 | of or relating to latitudes north or south -02904916 01 a 01 Florentine 0 001 \ 08812166 n 0102 | of or relating to or characteristic of the city of Florence; "Florentine art" -02905050 01 a 01 earthen 0 001 \ 14842992 n 0101 | made of earth (or baked clay); "an earthen pot" -02905151 01 a 01 earthy 0 002 + 14842992 n 0101 \ 14842992 n 0101 | of or consisting of or resembling earth; "it had an earthy smell"; "only a little earthy bank separates me from the edge of the ocean" -02905356 01 a 01 monometallic 0 001 \ 14625458 n 0102 | containing one atom of metal in the molecule; "monometallic carbonyls" -02905485 01 a 01 brazen 0 001 \ 14716997 n 0101 | made of or resembling brass (as in color or hardness) -02905591 01 a 02 geological 0 geologic 0 004 + 06115701 n 0201 \ 06115701 n 0201 + 06115701 n 0101 \ 06115701 n 0101 | of or relating to or based on geology; "geological formations"; "geologic forces" -02905794 01 a 01 psychological 0 002 + 06136258 n 0101 \ 06136258 n 0101 | of or relating to or determined by psychology; "psychological theories" -02905943 01 a 01 psychogenetic 0 001 \ 13543093 n 0101 | of or relating to the origin and development of the mind -02906059 01 a 02 psychogenetic 1 psychogenic 0 002 \ 13543231 n 0201 \ 13543231 n 0101 | of or relating to the psychological cause of a disorder -02906206 01 a 01 sociological 0 002 + 06151693 n 0101 \ 06151693 n 0101 | of or relating to or determined by sociology; "sociological studies" -02906351 01 a 01 demographic 0 002 + 06022076 n 0101 \ 06152125 n 0101 | of or relating to demography; "demographic surveys" -02906478 01 a 04 ecological 0 ecologic 0 bionomical 0 bionomic 0 009 ;c 06037666 n 0000 + 06070929 n 0402 \ 06070929 n 0402 + 06070929 n 0302 \ 06070929 n 0302 + 06070929 n 0201 \ 06070929 n 0201 + 06070929 n 0101 \ 06070929 n 0101 | of or relating to the science of ecology; "ecological research" -02906778 01 a 02 ecological 1 ecologic 1 004 + 14513062 n 0201 \ 14513062 n 0201 + 14513062 n 0101 \ 14513062 n 0101 | characterized by the interdependence of living organisms in an environment; "an ecological disaster" -02907000 01 a 01 theological 0 004 + 06182144 n 0101 + 06183899 n 0101 + 00613973 n 0101 \ 06183899 n 0101 | of or relating to or concerning theology; "theological seminar" -02907175 01 a 01 anthropological 0 002 + 06143546 n 0101 \ 06143546 n 0101 | of or concerned with the science of anthropology; "anthropological studies" -02907330 01 a 01 paleoanthropological 0 002 + 06074189 n 0101 \ 06074189 n 0101 | of or concerned with the scientific study of human fossils -02907473 01 a 01 computational 0 004 + 05802185 n 0102 + 00868910 n 0102 \ 00868910 n 0102 \ 03082979 n 0101 | of or involving computation or computers; "computational linguistics" -02907656 01 a 01 athletic 0 002 + 09820263 n 0101 \ 00523513 n 0102 | relating to or befitting athletics or athletes; "athletic facilities" -02907798 01 a 01 astrophysical 0 002 + 06097775 n 0101 \ 06097775 n 0101 | of or concerned with astrophysics; "astrophysical sciences" -02907935 01 a 01 geopolitical 0 002 + 06148748 n 0101 \ 06148748 n 0101 | of or relating to geopolitics -02908041 01 a 02 thermodynamic 0 thermodynamical 0 004 + 06114578 n 0201 \ 06114578 n 0201 + 06114578 n 0101 \ 06114578 n 0101 | of or concerned with thermodynamics; "the thermodynamic limit" -02908235 01 a 01 geophysical 0 002 + 06117562 n 0101 \ 06117562 n 0101 | of or concerned with geophysics; "geophysical sciences" -02908366 01 a 02 seismological 0 seismologic 0 004 + 06120496 n 0201 \ 06120496 n 0201 + 06120496 n 0101 \ 06120496 n 0101 | of or concerned with seismology -02908525 01 a 01 peptic 0 002 + 14978729 n 0101 \ 13465809 n 0101 | relating to or promoting digestion; "peptic juices" -02908647 01 a 01 duodenal 0 002 + 05534955 n 0101 \ 05534955 n 0101 | in or relating to the duodenum; "duodenal ulcer" -02908768 01 a 01 neuropsychological 0 002 + 06140799 n 0102 \ 06140799 n 0102 | of or concerned with neuropsychology -02908887 01 a 01 neurophysiological 0 002 + 06081602 n 0101 \ 06081602 n 0101 | of or concerned with neurophysiology -02909006 01 a 01 navigational 0 004 + 01105737 n 0101 + 00314469 n 0102 + 00815801 n 0101 \ 00815801 n 0101 | of or relating to navigation; "navigational aids" -02909168 01 a 01 differential 1 003 ;c 06000644 n 0000 + 06014730 n 0104 \ 00870640 n 0101 | involving or containing one or more derivatives; "differential equation" -02909336 01 a 01 deconstructionist 0 001 \ 05970012 n 0102 | of or concerned with the philosophical theory of literature known as deconstructionism; "deconstructionist criticism" -02909517 01 a 01 rationalist 0 001 \ 05975473 n 0101 | of or relating to or characteristic of rationalism; "rationalist philosophy" -02909651 01 a 02 calligraphic 0 calligraphical 0 003 + 06403969 n 0201 \ 06403969 n 0201 \ 06403969 n 0101 | of or relating to or expressed in calligraphy -02909808 01 a 02 lexicographic 0 lexicographical 0 003 + 00931721 n 0201 \ 00931721 n 0201 \ 00931721 n 0101 | of or relating to lexicography -02909952 01 a 01 orthographic 0 002 + 06351202 n 0101 \ 06351202 n 0101 | of or relating to or expressed in orthography -02910074 01 a 01 telegraphic 0 002 + 04400499 n 0101 \ 04400499 n 0101 | of or relating to or transmitted by telegraph; "a telegraphic machine"; "telegraphic news reports" -02910248 01 a 02 typographic 0 typographical 0 006 + 06677974 n 0201 + 01103000 n 0201 \ 01103000 n 0201 + 06677974 n 0101 + 01103000 n 0101 \ 01103000 n 0101 | relating to or occurring or used in typography; "the typographic art"; "a typographical error" -02910506 01 a 01 astrological 0 002 + 05778131 n 0101 \ 05778131 n 0101 | relating to or concerned with astrology; "astrological chart" -02910644 01 a 01 syllogistic 0 002 + 05779116 n 0101 \ 05779116 n 0101 | of or relating to or consisting of syllogism; "syllogistic reasoning" -02910789 01 a 02 necromantic 0 necromantical 0 005 + 05978812 n 0204 + 05777439 n 0201 \ 05777439 n 0201 + 05978812 n 0104 \ 05777439 n 0101 | relating to or associated with necromancy; "mysterious necromantic rites" -02911008 01 a 01 lithomantic 0 002 + 05777298 n 0101 \ 05777298 n 0101 | of or relating to lithomancy -02911112 01 a 01 mechanistic 0 002 + 05972781 n 0101 \ 05972781 n 0101 | of or relating to the philosophical theory of mechanism -02911243 01 a 01 chiromantic 0 002 + 05777830 n 0103 \ 05777830 n 0103 | of or relating to palmistry -02911346 01 a 01 parametric 0 002 + 05859071 n 0101 \ 05859071 n 0101 | of or relating to or in terms of a parameter; "parametric equation" -02911488 01 a 01 nonparametric 0 002 ;c 06018465 n 0000 \ 06022727 n 0101 | not involving an estimation of the parameters of a statistic -02911627 01 a 01 statistical 0 002 + 06018465 n 0101 \ 06018465 n 0101 | of or relating to statistics; "statistical population" -02911757 01 a 01 nihilistic 0 003 + 13973320 n 0101 + 05965388 n 0101 \ 05965388 n 0101 | of or relating to nihilism -02911876 01 a 02 spiritualistic 0 spiritualist 0 004 \ 05951969 n 0201 + 05976805 n 0101 + 05951969 n 0101 \ 05951969 n 0101 | of or relating to or connected with spiritualism -02912054 01 a 02 supernaturalist 0 supernaturalistic 0 004 + 05952490 n 0201 + 04789406 n 0201 \ 05952490 n 0201 \ 05952490 n 0101 | of or relating to supernaturalism; "supernaturalist beliefs" -02912250 01 a 01 operationalist 0 001 \ 05974363 n 0101 | of or relating to or espousing operationalism; "operationalist doctrine" -02912383 01 a 01 operatic 0 003 + 07026352 n 0101 + 03849814 n 0101 \ 07026352 n 0101 | of or relating to or characteristic of opera -02912518 01 a 01 trigonometric 0 002 + 06012513 n 0101 \ 06012513 n 0101 | of or relating to or according to the principles of trigonometry; "trigonometric function" -02912686 01 a 02 pharmacological 0 pharmacologic 0 004 + 06054892 n 0201 \ 06054892 n 0201 + 06054892 n 0101 \ 06054892 n 0101 | of or relating to pharmacology -02912848 01 a 02 toxicological 0 toxicologic 0 004 + 06064462 n 0201 \ 06064462 n 0201 + 06064462 n 0101 \ 06064462 n 0101 | of or relating to toxicology -02913004 01 a 02 psychiatric 0 psychiatrical 0 004 + 06055946 n 0201 \ 06055946 n 0201 + 06055946 n 0101 \ 06055946 n 0101 | relating to or used in or engaged in the practice of psychiatry; "psychiatric disorder"; "psychiatric hospital" -02913243 01 a 02 oncological 0 oncologic 0 004 + 06054266 n 0201 \ 06054266 n 0201 + 06054266 n 0101 \ 06054266 n 0101 | of or relating to or practicing oncology; "oncological nurse" -02913428 01 a 02 psychoanalytical 0 psychoanalytic 0 004 + 00704305 n 0201 \ 00704305 n 0201 + 00704305 n 0101 \ 00704305 n 0101 | of or relating to or incorporating the methods and theory of psychiatric treatment originated by Sigmund Freud; "Freud's psychoanalytical theories"; "psychoanalytic treatment" -02913737 01 a 01 psychometric 0 002 + 06141023 n 0101 \ 06141023 n 0101 | of or relating to psychometrics; "psychometric journals" -02913870 01 a 01 psychomotor 0 002 \ 05833840 n 0101 \ 00859001 n 0101 | of or relating to or characterizing mental events that have motor consequences or vice versa -02914038 01 a 01 psychotherapeutic 0 003 + 06056923 n 0101 + 00700652 n 0101 \ 06056923 n 0101 | of or relating to or practicing psychotherapy; "psychotherapeutic sessions" -02914213 01 a 02 therapeutic 0 therapeutical 0 004 + 00661091 n 0201 \ 00661091 n 0201 + 00661091 n 0101 \ 00661091 n 0101 | relating to or involved in therapy; "therapeutic approach to criminality" -02914414 01 a 02 neuroanatomic 0 neuroanatomical 0 004 + 06060208 n 0201 \ 06060208 n 0201 + 06060208 n 0101 \ 06060208 n 0101 | of or relating to neural tissue or the nervous system -02914599 01 a 01 virological 0 002 + 06065640 n 0101 \ 06065640 n 0101 | of or relating to the science of virology; "virological research" -02914740 01 a 02 bacteriological 0 bacteriologic 0 004 + 06046692 n 0201 \ 06046692 n 0201 + 06046692 n 0101 \ 06046692 n 0101 | of or relating to bacteriology -02914902 01 a 01 cardiologic 0 002 + 06047275 n 0101 \ 06047275 n 0101 | of or relating to or used in or practicing cardiology; "cardiologic evidence" -02915055 01 a 02 endocrine 0 endocrinal 0 005 + 05329735 n 0202 + 05407119 n 0202 \ 05329735 n 0201 ! 02915381 a 0101 \ 05329735 n 0101 | of or belonging to endocrine glands or their secretions; "endocrine system" -02915271 01 a 01 enolic 0 002 + 14605590 n 0101 \ 14605590 n 0101 | of or relating to or consisting of enol -02915381 01 a 01 exocrine 0 002 ! 02915055 a 0101 \ 05328867 n 0101 | of or relating to exocrine glands or their secretions -02915507 01 a 01 endodontic 0 002 + 06048184 n 0101 \ 06048184 n 0101 | of or relating to or involving or practicing endodontics; "an endodontic specialist" -02915666 01 a 01 endoparasitic 0 002 + 01385017 n 0101 \ 01385017 n 0101 | of or relating to parasites that live in the internal organs of animals -02915815 01 a 01 orthodontic 0 004 + 06048552 n 0103 + 06048552 n 0101 + 06048552 n 0102 \ 06048552 n 0101 | of or relating to or involving or practicing orthodontics; "orthodontic braces" -02916006 01 a 02 periodontic 0 periodontal 0 005 + 06048851 n 0201 + 06048851 n 0202 \ 06048851 n 0201 + 06048851 n 0101 \ 06048851 n 0101 | of or relating to or involving or practicing periodontics; "periodontal disease" -02916230 01 a 02 dermatologic 0 dermatological 0 004 + 06049500 n 0201 \ 06049500 n 0201 + 06049500 n 0101 \ 06049500 n 0101 | of or relating to or practicing dermatology -02916403 01 a 01 exodontic 0 002 + 06048373 n 0101 \ 06048373 n 0101 | of or relating to or involving exodontics; "exodontic surgeon" -02916539 01 a 02 geriatric 0 gerontological 0 004 + 06050650 n 0202 \ 06050650 n 0201 + 06050650 n 0101 \ 06050650 n 0101 | of or relating to or practicing geriatrics; "geriatric hospital" -02916730 01 a 01 geriatric 1 002 + 06050650 n 0101 \ 07943870 n 0101 | of or relating to the aged; "geriatric disorder" -02916852 01 a 01 German-American 0 001 \ 09742315 n 0101 | of or relating to or characteristic of German Americans -02916969 01 a 03 gynecological 0 gynaecological 0 gynecologic 0 006 + 06050901 n 0301 \ 06050901 n 0301 + 06050901 n 0202 \ 06050901 n 0201 + 06050901 n 0101 \ 06050901 n 0101 | of or relating to or practicing gynecology; "gynecological examination" -02917221 01 a 01 gymnosophical 0 002 + 05962414 n 0101 \ 05962414 n 0101 | of or relating to gymnosophy -02917327 01 a 01 gymnospermous 0 002 + 11596108 n 0101 \ 11595312 n 0101 | relating to or characteristic of plants of the class Gymnospermae -02917470 01 a 03 hematologic 0 haematological 0 hematological 0 006 + 06051134 n 0301 \ 06051134 n 0301 + 06051134 n 0202 \ 06051134 n 0201 + 06051134 n 0101 \ 06051134 n 0101 | of or relating to or involved in hematology -02917694 01 a 02 obstetric 0 obstetrical 0 004 + 06053439 n 0201 \ 06053439 n 0201 + 06053439 n 0101 \ 06053439 n 0101 | of or relating to or used in or practicing obstetrics; "obstetric hospital" -02917893 01 a 02 neurological 0 neurologic 0 006 + 06052864 n 0201 + 06078978 n 0201 \ 06052864 n 0201 + 06052864 n 0101 + 06078978 n 0101 \ 06052864 n 0101 | of or relating to or used in or practicing neurology; "neurological evidence" -02918132 01 a 01 spectrometric 0 003 + 00649482 n 0102 + 03726516 n 0102 \ 00649482 n 0102 | of or relating to or involving spectrometry -02918271 01 a 02 spectroscopic 0 spectroscopical 0 005 + 00649482 n 0201 \ 00649482 n 0201 + 00649482 n 0101 + 04273064 n 0101 \ 00649482 n 0101 | of or relating to or involving spectroscopy; "spectroscopic analysis" -02918490 01 a 01 mass_spectroscopic 0 002 + 00650743 n 0101 \ 00650743 n 0101 | relating to or involving mass spectroscopy -02918615 01 a 01 mass-spectrometric 0 001 \ 03726516 n 0101 | relating to or involving a mass spectrometer -02918724 01 a 01 electron_microscopic 0 001 \ 00641109 n 0101 | of or relating to or involving an electron microscope -02918844 01 a 02 microscopic 0 microscopical 0 006 + 00640889 n 0201 + 03760671 n 0201 \ 00640889 n 0201 + 00640889 n 0101 + 03760671 n 0101 \ 00640889 n 0101 | of or relating to or used in microscopy; "microscopic analysis"; "microscopical examination" -02919100 01 a 02 insurrectional 0 insurrectionary 0 004 + 00962129 n 0202 \ 00962129 n 0202 + 00962129 n 0102 \ 00962129 n 0102 | of or relating to or given to insurrection -02919275 01 a 02 conspiratorial 0 conspirative 0 007 + 00707624 v 0201 + 00706975 v 0201 \ 05908882 n 0201 + 08251303 n 0101 + 06524935 n 0101 + 09958892 n 0101 \ 05908882 n 0101 | relating to or characteristic of conspiracy or conspirators; "a conspiratorial whisper"; "the discovery of possible conspirative codes" -02919594 01 a 01 domestic 0 002 + 00409075 n 0101 \ 03259505 n 0102 | of or relating to the home; "domestic servant"; "domestic science" -02919733 01 a 01 econometric 0 002 + 06150449 n 0101 \ 06150449 n 0101 | of or relating to econometrics; "econometric theories" -02919863 01 a 01 criminological 0 002 + 06151942 n 0101 \ 06151942 n 0101 | of or relating to or involved in criminology -02919986 01 a 01 classicistic 0 002 + 06154724 n 0101 \ 06154724 n 0101 | of or relating to classicism; "the classicistic tradition" -02920121 01 a 01 historical 0 004 + 06155567 n 0101 + 05170088 n 0101 ! 02920321 a 0101 \ 06155567 n 0101 | of or relating to the study of history; "historical scholars"; "a historical perspective" -02920321 01 a 01 ahistorical 0 001 ! 02920121 a 0101 | unconcerned with or unrelated to history or to historical development or to tradition -02920464 01 a 01 ontological 0 002 + 06162847 n 0101 \ 06162847 n 0101 | of or relating to ontology; "ontological speculations" -02920594 01 a 02 pietistic 0 pietistical 0 004 + 08475722 n 0201 \ 08475722 n 0201 + 08475722 n 0101 \ 08475722 n 0101 | of or relating to Pietism; "the Pietistic movement" -02920769 01 a 02 fascist 0 fascistic 0 004 + 06217944 n 0201 \ 06217944 n 0201 + 10079893 n 0101 \ 06217944 n 0101 | relating to or characteristic of fascism; "fascist propaganda" -02920951 01 a 01 Catholic 0 003 + 09679925 n 0101 + 06227263 n 0101 \ 06227263 n 0101 | of or relating to or supporting Catholicism; "the Catholic Church" -02921108 01 a 01 Anglo-catholic 0 001 \ 08087981 n 0101 | supporting the Anglican Church -02921199 01 a 01 Anglo-Indian 0 002 + 09702541 n 0101 \ 08900535 n 0101 | relating to British India or the English in India -02921325 01 a 02 Roman 1 Romanic 0 005 ;r 08806897 n 0000 ;c 15253139 n 0000 + 06827503 n 0201 + 09717047 n 0201 \ 08806897 n 0101 | of or relating to or derived from Rome (especially ancient Rome); "Roman architecture"; "the old Roman wall" -02921569 01 a 01 Roman 2 002 + 09716933 n 0101 \ 09716933 n 0101 | relating to or characteristic of people of Rome; "Roman virtues"; "his Roman bearing in adversity"; "a Roman nose" -02921753 01 a 09 Roman 0 R.C. 0 Romanist 0 romish 0 Roman_Catholic 0 popish 0 papist 0 papistic 0 papistical 0 008 + 09680657 n 0901 + 09680657 n 0801 + 09680657 n 0701 \ 06227562 n 0501 \ 06227562 n 0401 \ 06227562 n 0301 \ 06227562 n 0201 \ 06227562 n 0101 | of or relating to or supporting Romanism; "the Roman Catholic Church" -02922086 01 a 01 Roman 3 002 + 06827503 n 0101 \ 06827503 n 0101 | characteristic of the modern type that most directly represents the type used in ancient Roman inscriptions -02922263 01 a 02 Jewish 1 Judaic 1 003 + 09681351 n 0201 \ 09681351 n 0201 \ 09681351 n 0101 | of or relating to Jews or their culture or religion; "He is Jewish"; "a Jewish wedding" -02922448 01 a 02 Judaic 0 Judaical 0 005 + 08094013 n 0201 + 06232880 n 0201 \ 06232880 n 0201 + 09681351 n 0101 \ 06232880 n 0101 | of or relating to or characteristic of the Jews or their culture or religion; "the Judaic idea of justice" -02922690 01 a 01 Anglo-Jewish 0 001 \ 09681351 n 0101 | of English-speaking Jews and their culture; "Anglo-Jewish papers" -02922814 01 a 01 evangelical 0 002 + 06455138 n 0103 \ 06455138 n 0101 | of or pertaining to or in keeping with the Christian gospel especially as in the first 4 books of the New Testament -02923005 01 a 01 evangelical 1 002 + 06455138 n 0103 \ 06231030 n 0101 | relating to or being a Christian church believing in personal conversion and the inerrancy of the Bible especially the 4 Gospels; "evangelical Christianity"; "an ultraconservative evangelical message" -02923281 01 a 01 evangelistic 0 002 + 10067011 n 0101 \ 07244613 n 0101 | relating to or promoting the preaching and dissemination of the Christian gospel; "evangelistic fervor"; "the evangelistic concerns of the early church" -02923510 01 a 03 Muslim 0 Moslem 0 Islamic 0 007 + 08095647 n 0301 + 06234825 n 0301 \ 06234825 n 0302 + 09682291 n 0202 \ 06234825 n 0202 + 09682291 n 0101 \ 06234825 n 0102 | of or relating to or supporting Islamism; "Islamic art" -02923745 01 a 03 Hindu 0 Hindi 0 Hindoo 0 007 + 09684609 n 0302 + 09713501 n 0302 \ 06236802 n 0301 + 06970103 n 0201 \ 06236802 n 0201 + 09684609 n 0101 \ 06236802 n 0101 | of or relating to or supporting Hinduism; "the Hindu faith" -02923981 01 a 01 Hmong 0 001 \ 09713764 n 0101 | of or related to the Hmong people or their language or their culture -02924102 01 a 02 Buddhist 0 Buddhistic 0 004 + 08098708 n 0201 + 06240244 n 0201 \ 06240244 n 0201 \ 06240244 n 0101 | of or relating to or supporting Buddhism; "Buddhist sculpture" -02924286 01 a 01 sculptural 0 002 + 04157320 n 0101 \ 04157320 n 0101 | relating to or consisting of sculpture; "sculptural embellishments" -02924428 01 a 01 evaporative 0 003 + 00575970 v 0101 + 00575720 v 0101 \ 13572436 n 0105 | relating to or causing or being caused by evaporation; "an evaporative cooler" -02924600 01 a 01 Confucian 0 002 + 10906822 n 0101 \ 05969758 n 0101 | relating to or characteristic of Confucianism; "Confucian ethics" -02924739 01 a 03 Shinto 0 Shintoist 0 Shintoistic 0 004 + 06243347 n 0302 \ 06243347 n 0302 \ 06243347 n 0202 \ 06243347 n 0102 | relating to or characteristic of Shintoism; "Shinto temples" -02924932 01 a 01 Kokka 0 002 + 08100481 n 0102 \ 08100481 n 0101 | of or pertaining to the branch of Shinto recognized as the state religion of Japan -02925084 01 a 01 Shuha 0 001 \ 08100656 n 0101 | of or pertaining to any Shinto sect other than Kokka Shinto -02925195 01 a 01 Rastafarian 0 002 + 09685922 n 0102 \ 06225855 n 0101 | of or pertaining to or characteristic of Rastafarianism or Rastafarians -02925342 01 a 02 Jain 0 Jainist 0 003 + 09685085 n 0201 \ 06239655 n 0201 \ 06239655 n 0101 | relating to or characteristic of Jainism; "Jain gods" -02925492 01 a 01 Taoist 1 001 \ 05977340 n 0101 | of or relating to the philosophical system developed by Lao-tzu and Chuang-tzu advocating a simple honest life -02925655 01 a 01 Taoist 2 001 \ 06243096 n 0101 | of or relating to the popular Chinese religious system based on the teachings of Lao-tzu but including a pantheon of gods along with divination and magic; "Taoist temples" -02925879 01 a 01 textual 0 003 + 06388579 n 0101 + 06387980 n 0101 \ 06387980 n 0101 | of or relating to or based on a text; "textual analysis" -02926025 01 a 02 Tantric 0 Tantrik 0 004 \ 06242427 n 0202 + 08099647 n 0101 + 06242427 n 0102 \ 06242427 n 0102 | of or relating to Tantrism; "Tantric rituals" -02926188 01 a 01 magnetic 0 002 + 03705379 n 0101 \ 11479058 n 0101 | of or relating to or caused by magnetism; "magnetic forces" -02926320 01 a 01 electromagnetic 0 003 + 11479368 n 0101 + 06099107 n 0101 \ 11479368 n 0101 | pertaining to or exhibiting magnetism produced by electric charge in motion; "electromagnetic energy" -02926519 01 a 01 Avestan 0 005 ;c 06244149 n 0000 + 06352301 n 0101 + 06973941 n 0101 + 06430996 n 0101 \ 06430996 n 0101 | of or pertaining to the Avesta (sacred text of Zoroastrianism) -02926708 01 a 01 Zoroastrian 0 003 + 09686146 n 0101 + 11407715 n 0101 \ 11407715 n 0101 | of or pertaining to Zoroaster or the religion he founded -02926858 01 a 01 capillary 0 001 \ 05254795 n 0101 | of or relating to hair -02926936 01 a 01 automotive 0 001 \ 02958343 n 0103 | of or relating to motor vehicles; "automotive supplies" -02927048 01 a 01 horticultural 0 002 + 00918383 n 0102 \ 00918383 n 0102 | of or relating to the cultivation of plants -02927169 01 a 01 cervical 1 002 + 05303232 n 0101 \ 05303232 n 0101 | of or relating to the cervix of the uterus; "cervical cancer" -02927303 01 a 01 American 0 002 + 09195615 n 0101 \ 09195615 n 0101 | of or relating to or characteristic of the continents and islands of the Americas; "the American hemisphere"; "American flora and fauna" -02927512 01 a 01 American 1 006 + 00410406 v 0101 + 00409643 v 0101 + 09738708 n 0101 + 06947479 n 0103 + 09044862 n 0103 \ 09044862 n 0103 | of or relating to the United States of America or its people or language or culture; "American citizens"; "American English"; "the American dream" -02927803 01 a 01 anti-American 0 003 ! 02927944 a 0101 + 09796974 n 0101 \ 09044862 n 0103 | opposed to the United States and its policies -02927944 01 a 01 pro-American 0 002 ! 02927803 a 0101 \ 09044862 n 0103 | supporting the United States and its policies -02928066 01 a 04 Indian 1 Amerind 0 Amerindic 0 Native_American 0 005 \ 09645091 n 0402 \ 09645091 n 0302 + 06906439 n 0201 \ 09645091 n 0202 \ 09645091 n 0102 | of or pertaining to American Indians or their culture or languages; "Native American religions"; "Indian arrowheads" -02928347 01 a 01 Indian 0 002 + 08900535 n 0101 \ 08900535 n 0101 | of or relating to or characteristic of India or the East Indies or their peoples or languages or cultures; "the Indian subcontinent"; "Indian saris" -02928566 01 a 01 North_American 0 001 \ 09372504 n 0101 | of or pertaining to or characteristic of the continent or countries of North America or their peoples -02928728 01 a 01 South_American 0 003 + 09440400 n 0101 + 08173289 n 0101 \ 09440400 n 0101 | of or pertaining to or characteristic of the continent or countries of South America or their peoples -02928926 01 a 01 South_African 0 002 + 08999482 n 0101 \ 08999482 n 0101 | of or pertaining to or characteristic of South Africa or its people -02929071 01 a 01 asymptotic 0 002 + 13870935 n 0101 \ 13870935 n 0101 | relating to or of the nature of an asymptote; "an asymptotic function" -02929216 01 a 04 subtropical 0 subtropic 0 semitropical 0 semitropic 0 003 + 08674344 n 0201 \ 08674344 n 0201 \ 08674344 n 0101 | of or relating to or characteristic of conditions in the subtropics; "even near the equator vegetation at 5000 ft is subtropical rather than tropical" -02929500 01 a 01 tropical 0 002 + 08675145 n 0101 \ 08675145 n 0101 | of or relating to the tropics, or either tropic; "tropical year" -02929637 01 a 01 equatorial 0 001 \ 08568719 n 0101 | of or relating to conditions at the geographical equator; "equatorial heat" -02929769 01 a 01 equatorial 2 002 + 13874073 n 0101 \ 13874073 n 0101 | of or relating to or at an equator; "equatorial diameter" -02929901 01 a 01 rational 0 004 ;c 06000644 n 0000 + 04784978 n 0102 ! 02930083 a 0101 \ 13819207 n 0101 | capable of being expressed as a quotient of integers; "rational numbers" -02930083 01 a 01 irrational 0 003 ;c 06000644 n 0000 ! 02929901 a 0101 \ 13819207 n 0101 | real but not expressible as the quotient of two integers; "irrational numbers" -02930255 01 a 01 anionic 0 004 + 14618050 n 0102 + 09197815 n 0101 ! 02930387 a 0101 \ 09197815 n 0101 | of or relating to anions -02930387 01 a 01 cationic 0 003 + 09238294 n 0101 ! 02930255 a 0101 \ 09238294 n 0101 | of or relating to cations -02930503 01 a 01 Satanic 0 002 + 09543353 n 0101 \ 09543353 n 0101 | of or relating to Satan; "Satanic verses" -02930616 01 a 01 angular 0 002 + 13887509 n 0101 \ 13887509 n 0101 | measured by an angle or by the rate of change of an angle; "angular momentum" -02930765 01 a 02 rabbinical 0 rabbinic 0 006 + 06341609 n 0201 + 10502329 n 0201 \ 10502329 n 0201 + 06341609 n 0101 + 10502329 n 0101 \ 10502329 n 0101 | of or relating to rabbis or their teachings; "rabbinical school" -02930987 01 a 01 arteriosclerotic 0 002 + 14108324 n 0101 \ 14108324 n 0101 | affected by arteriosclerosis -02931096 01 a 01 idolatrous 0 002 + 01044084 n 0101 \ 01044084 n 0101 | relating to or practicing idolatry; "idolatrous worship" -02931227 01 a 01 sacramental 0 002 + 01034925 n 0101 \ 01034925 n 0101 | of or relating to or involving a sacrament -02931345 01 a 03 theist 0 theistical 0 theistic 0 007 + 06223669 n 0301 \ 06223669 n 0301 + 06223669 n 0201 + 09848110 n 0201 \ 06223669 n 0201 + 09848110 n 0101 \ 06223669 n 0101 | of or relating to theism -02931554 01 a 02 deist 0 deistic 0 003 + 06223922 n 0201 \ 06223922 n 0201 \ 06223922 n 0101 | of or relating to deism -02931675 01 a 02 pantheist 0 pantheistic 0 004 + 06225235 n 0201 + 06224975 n 0201 \ 06224975 n 0201 \ 06224975 n 0101 | of or relating to pantheism -02931826 01 a 01 nocturnal 1 001 \ 15167027 n 0101 | of or relating to or occurring in the night; "nocturnal darkness" -02931947 01 a 03 mensural 0 measured 0 mensurable 0 002 ;c 07020895 n 0000 \ 06864725 n 0101 | having notes of fixed rhythmic value -02932081 01 a 01 mensural 1 001 \ 00033615 n 0101 | of or relating to measure -02932161 01 a 01 mensal 0 001 \ 03201208 n 0101 | the dining table -02932231 01 a 01 epicarpal 0 002 + 11684499 n 0101 \ 11684499 n 0101 | of or relating to the epicarp -02932334 01 a 01 epithelial 0 002 + 05239808 n 0101 \ 05239808 n 0101 | of or belonging to the epithelium; "epithelial layer" -02932462 01 a 01 epitheliod 0 001 \ 05239808 n 0101 | resembling epithelium; "epithelial tissue" -02932561 01 a 01 pancreatic 0 002 + 05387167 n 0101 \ 05387167 n 0101 | of or involving the pancreas; "pancreatic cancer" -02932685 01 a 01 ovarian 0 002 + 05515287 n 0101 \ 05515287 n 0101 | of or involving the ovaries; "ovarian cancer" -02932802 01 a 01 ovine 0 001 \ 02411705 n 0101 | of or pertaining to or of the nature of or characteristic of a sheep or sheep -02932931 01 a 01 ovular 1 002 + 05458300 n 0101 \ 05457973 n 0101 | of or relating to an ovum -02933027 01 a 01 ovular 2 002 + 11678768 n 0101 \ 11678768 n 0101 | being or of the nature of an ovule -02933132 01 a 01 uterine 0 001 \ 05519085 n 0101 | of or involving the uterus; "uterine cancer" -02933230 01 a 01 intrauterine 0 001 \ 02933132 a 0101 | within the womb -02933304 01 a 01 testicular 0 002 + 05524615 n 0102 \ 05524615 n 0101 | of or involving the testes; "testicular cancer" -02933426 01 a 01 rectal 0 002 + 05537806 n 0101 \ 05537806 n 0101 | of or involving the rectum; "rectal cancer" -02933540 01 a 01 rectosigmoid 0 002 \ 05537417 n 0101 \ 05537806 n 0101 | of or related to or near the sigmoid colon and the upper part of the rectum -02933692 01 a 01 monozygotic 0 001 \ 02882275 a 0101 | derived from a single fertilized egg; "monozygotic twins" -02933807 01 a 02 dizygotic 0 dizygous 0 002 \ 02882275 a 0201 \ 02882275 a 0101 | derived from two separately fertilized eggs; "dizygotic twins" -02933954 01 a 01 synaptic 0 002 + 05473928 n 0101 \ 05473928 n 0101 | (neuroscience) of or involving synapses -02934066 01 a 01 dendritic 0 002 + 05469861 n 0101 \ 05469861 n 0101 | (neuroscience) of or relating to or resembling a dendrite; "dendritic fiber" -02934216 01 a 01 iliac 0 002 ;c 06057539 n 0000 \ 05275315 n 0101 | of or relating to the ilium -02934314 01 a 01 lobar 0 003 + 05493303 n 0101 + 03680734 n 0101 \ 05493303 n 0101 | of or relating to or affecting a lobe; "lobar pneumonia" -02934458 01 a 02 lobate 0 lobated 0 002 \ 05493303 n 0201 \ 05493303 n 0101 | having or resembling a lobe or lobes; "a lobate tongue" -02934594 01 a 01 abdominal 0 003 + 05558345 n 0102 + 05556943 n 0101 \ 05556943 n 0101 | of or relating to or near the abdomen; "abdominal muscles" -02934744 01 a 01 hormonal 0 002 + 05407119 n 0101 \ 05407119 n 0101 | of or relating to or caused by hormones; "hormonal changes" -02934876 01 a 01 hemispheric 0 002 + 05476915 n 0101 \ 05476915 n 0101 | of or relating to the cerebral hemispheres -02934994 01 a 01 occipital 0 002 + 05540976 n 0101 \ 05540976 n 0101 | of or relating to the occiput; "occipital bone" -02935115 01 a 03 pneumonic 0 pulmonary 0 pulmonic 0 003 \ 05387544 n 0301 \ 05387544 n 0201 \ 05387544 n 0101 | relating to or affecting the lungs; "pulmonary disease" -02935285 01 a 01 pneumonic 1 002 + 14147627 n 0101 \ 14147627 n 0101 | pertaining to or characterized by or affected by pneumonia; "pneumonic plague" -02935437 01 a 01 intrapulmonary 0 001 \ 05387544 n 0101 | being or occurring within a lung -02935530 01 a 03 intestinal 0 enteric 1 enteral 1 004 \ 05534333 n 0301 \ 05534333 n 0201 + 05534333 n 0101 \ 05534333 n 0101 | of or relating to or inside the intestines; "intestinal disease" -02935725 01 a 01 skeletal 0 002 + 05585383 n 0102 \ 05585383 n 0102 | of or relating to or forming or attached to a skeleton; "the skeletal system"; "skeletal bones"; "skeletal muscles" -02935913 01 a 01 skinny 0 002 + 05238282 n 0101 \ 05238282 n 0101 | of or relating to or resembling skin -02936020 01 a 02 adjectival 0 adjective 0 004 \ 06319029 n 0201 + 06319029 n 0101 + 06321702 n 0101 \ 06319029 n 0101 | of or relating to or functioning as an adjective; "adjectival syntax"; "an adjective clause" -02936235 01 a 01 adverbial 0 004 + 06324355 n 0101 + 06319157 n 0101 + 06323612 n 0101 \ 06319157 n 0101 | of or relating to or functioning as an adverb; "adverbial syntax" -02936410 01 a 01 morphemic 0 002 + 06306233 n 0101 \ 06306233 n 0101 | of or relating to morphemes -02936511 01 a 01 bimorphemic 0 001 \ 02936410 a 0101 | consisting of two morphemes; "the bimorphemic word `rays'" -02936627 01 a 01 monomorphemic 0 001 \ 02936410 a 0101 | consisting of only one morpheme; "`raise' is monomorphemic but `rays' is not" -02936764 01 a 01 polymorphemic 0 001 \ 02936410 a 0101 | consisting of two or more morphemes -02936859 01 a 01 morphophonemic 0 002 + 07111510 n 0101 \ 06178660 n 0101 | of or relating to morphophonemics -02936971 01 a 01 clausal 0 002 + 06314144 n 0101 \ 06314144 n 0101 | of or relating to or functioning as a clause; "clausal structure" -02937108 01 a 01 phrasal 0 005 + 07154330 n 0105 + 07045353 n 0101 + 00527061 n 0101 + 06316048 n 0101 \ 06316048 n 0101 | of or relating to or functioning as a phrase; "phrasal verb" -02937294 01 a 01 infinitival 0 002 + 06318904 n 0101 \ 06318904 n 0101 | relating to or formed with the infinitive; "infinitival clause" -02937433 01 a 01 pronominal 0 001 \ 06325370 n 0101 | relating to pronouns; "pronominal reference" -02937534 01 a 01 indexical 0 002 + 06491786 n 0101 \ 06639674 n 0101 | of or relating to or serving as an index -02937648 01 a 01 indexless 0 001 \ 06491786 n 0101 | lacking an index -02937720 01 a 01 cruciferous 0 003 ;c 06066555 n 0000 + 11867525 n 0101 \ 11867525 n 0101 | of or relating to or belonging to the plant family Cruciferae -02937876 01 a 01 mathematical 0 002 + 06000644 n 0101 \ 06000644 n 0101 | of or pertaining to or of the nature of mathematics; "a mathematical textbook"; "slide rules and other mathematical instruments"; "a mathematical solution to a problem"; "mathematical proof" -02938143 01 a 01 choreographic 0 001 \ 07020763 n 0101 | of or concerned with choreography -02938236 01 a 01 runic 0 002 + 06840187 n 0101 \ 06840187 n 0101 | relating to or consisting of runes; "runic inscription" -02938361 01 a 01 scriptural 2 003 ;u 07073447 n 0000 + 06403393 n 0103 \ 06351613 n 0101 | written or relating to writing -02938485 01 a 01 pentatonic 0 002 + 06861435 n 0102 \ 06861435 n 0101 | relating to a pentatonic scale -02938590 01 a 01 anaphoric 0 001 \ 07100815 n 0101 | relating to anaphora; "anaphoric reference" -02938689 01 a 02 anapestic 0 anapaestic 0 002 \ 07095390 n 0202 \ 07095390 n 0101 | (of a metric foot) characterized by two short syllables followed by a long one -02938854 01 a 01 rhetorical 0 002 + 06170498 n 0101 \ 07072698 n 0101 | of or relating to rhetoric; "accepted two or three verbal and rhetorical changes I suggested"- W.A.White; "the rhetorical sin of the meaningless variation"- Lewis Mumford -02939099 01 a 01 tectonic 0 002 ;c 06115701 n 0000 \ 06118370 n 0101 | pertaining to the structure or movement of the earth's crust; "tectonic plates"; "tectonic valleys" -02939272 01 a 01 riparian 0 001 \ 09415584 n 0101 | of or relating to or located on the banks of a river or stream; "riparian land" -02939406 01 a 01 Martian 0 002 + 09347445 n 0101 \ 09347445 n 0101 | of or relating to the planet Mars (or its fictional inhabitants) -02939542 01 a 01 actuarial 0 002 + 10652954 n 0102 \ 10652954 n 0102 | of or relating to the work of an actuary -02939656 01 a 01 psycholinguistic 0 002 + 06140587 n 0101 \ 06140587 n 0101 | of or relating to the psychology of language -02939781 01 a 01 robotic 0 001 \ 02761392 n 0102 | of or relating to mechanical robots; "among our robotic devices is a vacuum cleaner" -02939919 01 a 02 rotatory 0 revolutionary 2 004 + 07440979 n 0202 \ 07440979 n 0202 + 02045790 v 0101 \ 07440979 n 0101 | of or relating to or characteristic or causing an axial or orbital turn -02940115 01 a 02 epicyclic 0 epicyclical 0 004 + 13909296 n 0201 \ 13909296 n 0201 + 13909296 n 0101 \ 13909296 n 0101 | of or relating to an epicycle; "epicyclic gear train" -02940292 01 a 01 expansionist 0 001 \ 05961608 n 0101 | of or involving or guided by expansionism -02940392 01 a 01 experimental 0 001 \ 05798043 n 0101 | relating to or based on experiment; "experimental physics" -02940509 01 a 03 expiatory 0 expiative 0 propitiatory 0 004 + 02520509 v 0201 \ 00095121 n 0201 + 02520509 v 0101 \ 00095121 n 0101 | having power to atone for or offered by way of expiation or propitiation; "expiatory (or propitiatory) sacrifice" -02940759 01 a 01 familial 0 002 + 07970406 n 0101 \ 07970406 n 0101 | relating to or having the characteristics of a family; "children of the same familial background"; "familial aggregation" -02940953 01 a 04 etiological 0 etiologic 0 aetiological 0 aetiologic 0 008 + 07327608 n 0402 \ 07327608 n 0401 + 07327608 n 0302 \ 07327608 n 0301 + 07327608 n 0201 \ 07327608 n 0201 + 07327608 n 0101 \ 07327608 n 0101 | relating to the etiology of a disease; "etiological agent" -02941235 01 a 04 etiological 1 etiologic 1 aetiological 1 aetiologic 1 008 + 06161048 n 0402 \ 06161048 n 0401 + 06161048 n 0302 \ 06161048 n 0301 + 06161048 n 0201 \ 06161048 n 0201 + 06161048 n 0101 \ 06161048 n 0101 | of or relating to the philosophical study of causation -02941513 01 a 01 exuvial 0 002 + 05240076 n 0101 \ 05240076 n 0101 | of or relating to the cast-off skins or cuticles of various animals -02941652 01 a 02 behavioral 0 behavioural 0 002 \ 01220984 n 0201 \ 01220984 n 0101 | of or relating to behavior; "behavioral sciences" -02941790 01 a 01 African 0 003 + 09634494 n 0101 + 09189411 n 0101 \ 09189411 n 0101 | of or relating to the nations of Africa or their peoples; "African languages" -02941957 01 a 01 East_African 0 002 + 08699426 n 0101 \ 08699426 n 0101 | of or relating to or located in East Africa -02942077 01 a 01 East_Indian 0 002 + 08841956 n 0103 \ 08841956 n 0102 | of or relating to or located in the East Indies -02942200 01 a 01 Afro-Asian 0 001 \ 09207288 n 0101 | of or relating to the nations of Africa and Asia or their peoples; "Afro-Asian population" -02942347 01 a 02 phenotypical 0 phenotypic 0 004 + 04933852 n 0201 \ 04933852 n 0201 + 04933852 n 0101 \ 04933852 n 0101 | of or relating to or constituting a phenotype; "phenotypical profile" -02942542 01 a 02 genotypical 0 genotypic 0 006 + 07941405 n 0201 + 04934043 n 0201 \ 04934043 n 0201 + 07941405 n 0101 + 04934043 n 0101 \ 04934043 n 0101 | of or relating to or constituting a genotype; "genotypical pattern" -02942769 01 a 01 ontogenetic 0 003 + 13489037 n 0105 + 13489037 n 0106 \ 13489037 n 0105 | of or relating to the origin and development of individual organisms; "ontogenetic development" -02942958 01 a 02 phylogenetic 0 phyletic 0 003 \ 13477023 n 0203 + 13477023 n 0104 \ 13477023 n 0103 | of or relating to the evolutionary development of organisms; "phylogenetic development" -02943151 01 a 01 environmental 0 001 \ 06070929 n 0101 | concerned with the ecological effects of altering the environment; "environmental pollution" -02943303 01 a 01 environmental 1 002 + 13934596 n 0101 \ 13934596 n 0101 | of or relating to the external conditions or surroundings; "environmental factors" -02943463 01 a 01 methodological 0 003 + 06166898 n 0101 + 05661400 n 0101 \ 05661400 n 0101 | relating to the methodology of some discipline; "methodological errors" -02943631 01 a 01 cross-sectional 0 002 + 05822085 n 0101 \ 08548065 n 0101 | of or relating to a cross section; "a cross-sectional slice" -02943771 01 a 01 sectional 0 001 \ 08648153 n 0101 | relating to or based upon a section (i.e. as if cut through by an intersecting plane); "a sectional view"; "sectional drawings" -02943954 01 a 02 trabecular 0 trabeculate 0 003 \ 05295160 n 0201 + 05295160 n 0101 \ 05295160 n 0101 | of or relating to trabeculae -02944089 01 a 01 tracheal 0 003 + 05532050 n 0101 + 05531814 n 0101 \ 05531814 n 0101 | relating to or resembling or functioning like a trachea -02944235 01 a 01 tractive 0 001 \ 11460281 n 0102 | exerting traction and serving to pull -02944327 01 a 04 transdermal 0 transdermic 0 percutaneous 0 transcutaneous 0 005 ;c 06054892 n 0000 \ 05238282 n 0401 \ 05238282 n 0301 \ 05243879 n 0201 \ 05243879 n 0101 | through the unbroken skin; refers to medications applied directly to the skin (creams or ointments) or in time-release forms (skin patches); "transdermal estrogen"; "percutaneous absorption" -02944694 01 a 01 transitional 0 001 \ 07415730 n 0102 | of or relating to or characterized by transition; "adolescence is a transitional stage between childhood and adulthood" -02944872 01 a 01 traumatic 0 002 + 14285662 n 0104 \ 14285662 n 0104 | of or relating to a physical injury or wound to the body -02945002 01 a 01 trophic 0 001 \ 13523661 n 0101 | of or relating to nutrition; "a trophic level on the food chain" -02945120 01 a 01 tympanic 0 001 \ 05318831 n 0102 | associated with the eardrum -02945202 01 a 01 tympanic 1 002 + 03612965 n 0104 \ 03612965 n 0104 | resembling a drum -02945292 01 a 01 tympanitic 0 001 \ 14063877 n 0101 | of or relating to tympanites -02945377 01 a 01 perceptual 0 002 + 00876874 n 0102 \ 00876874 n 0102 | of or relating to the act of perceiving; "perceptual stimulus" -02945514 01 a 01 libidinal 0 002 + 07489548 n 0101 \ 07489548 n 0101 | belonging to the libido; "libidinal impulses"; "libidinal gratification" -02945660 01 a 01 epileptic 0 003 + 10062176 n 0101 + 14086143 n 0101 \ 14086143 n 0101 | of or relating to or characteristic of epilepsy; "epileptic seizure" -02945820 01 a 01 developmental 0 002 + 13489037 n 0104 \ 13489037 n 0104 | of or relating to or constituting development; "developmental psychology" -02945971 01 a 02 pedagogical 0 pedagogic 0 008 + 05660937 n 0203 + 00883297 n 0204 + 00887081 n 0203 \ 00887081 n 0203 + 05660937 n 0103 + 00883297 n 0104 + 00887081 n 0103 \ 00887081 n 0103 | of or relating to pedagogy; "pedagogical significance" -02946221 01 a 01 educational 0 002 + 05753564 n 0101 \ 05753564 n 0101 | relating to the process of education; "educational psychology" -02946359 01 a 01 prehistoric 0 002 + 15254550 n 0101 \ 15254550 n 0101 | of or relating to times before written history; "prehistoric archeology" -02946507 01 a 01 Atlantic 0 002 + 09209263 n 0101 \ 09209263 n 0101 | relating to or bordering the Atlantic Ocean; "Atlantic currents" -02946644 01 a 01 Pacific 0 002 + 09382990 n 0101 \ 09382990 n 0101 | relating to or bordering the Pacific Ocean; "Pacific islands" -02946777 01 a 01 transatlantic 0 001 \ 02946507 a 0101 | crossing the Atlantic Ocean; "transatlantic flight" -02946888 01 a 01 synergistic 0 002 + 06191854 n 0101 \ 06191854 n 0101 | of or relating to the theological doctrine of synergism -02947019 01 a 01 monistic 0 002 + 05964643 n 0101 \ 05964643 n 0101 | of or relating to the philosophical doctrine of monism; "the monistic school would regard national law and international law as an integrated whole"- J.S.Roucek -02947252 01 a 02 dualistic 0 Manichaean 1 004 + 06243575 n 0201 \ 05960698 n 0201 + 05960698 n 0101 \ 05960698 n 0101 | of or relating to the philosophical doctrine of dualism; "a Manichaean conflict between good and evil" -02947477 01 a 01 pluralistic 0 003 + 08367683 n 0101 + 05965749 n 0101 \ 05965749 n 0101 | of or relating to the philosophical doctrine of pluralism; "a pluralistic culture" -02947653 01 a 01 pleural 0 002 + 05388115 n 0101 \ 05388115 n 0101 | of or relating to the pleura or the walls of the thorax; "pleural muscles" -02947799 01 a 01 hilar 0 003 + 11678493 n 0101 + 05224755 n 0102 \ 05224755 n 0102 | of or relating to or located near a hilum -02947928 01 a 01 labyrinthine 0 001 \ 05321307 n 0103 | relating to or affecting or originating in the inner ear; "labyrinthine deafness" -02948068 01 a 01 lobular 0 003 + 05493650 n 0101 + 05064722 n 0101 \ 05493650 n 0101 | of or relating to or resembling a lobule -02948198 01 a 01 interlobular 0 001 \ 02948068 a 0101 | between lobes or lobules -02948281 01 a 01 intralobular 0 001 \ 02948068 a 0101 | inside lobes or lobules -02948363 01 a 01 anastomotic 0 002 + 05249420 n 0101 \ 05249420 n 0101 | of or relating to or exhibiting anastomosis -02948482 01 a 01 bronchial 0 002 + 05531511 n 0101 \ 05531511 n 0101 | relating to or associated with the bronchi; "bronchial tubes"; "bronchial pneumonia" -02948640 01 a 01 arteriolar 0 003 + 05337301 n 0102 + 05337301 n 0101 \ 05337301 n 0101 | of or relating to or involving arterioles -02948774 01 a 01 bronchiolar 0 002 + 05531666 n 0101 \ 05531666 n 0101 | of or relating to or involving bronchioles -02948892 01 a 01 rhombic 0 002 + 13882961 n 0101 \ 13882961 n 0101 | resembling a rhombus -02948984 01 a 01 trapezoidal 0 002 + 13881512 n 0101 \ 13881512 n 0101 | resembling a trapezoid -02949082 01 a 01 physiological 0 002 + 05005064 n 0101 \ 06080522 n 0101 | of or relating to the biological study of physiology; "physiological psychology"; "Pavlov's physiological theories" -02949275 01 a 03 morphologic 0 morphological 0 structural 2 004 + 06078327 n 0201 \ 06078327 n 0201 + 06078327 n 0101 \ 06078327 n 0101 | relating to or concerned with the morphology of plants and animals; "morphological differences" -02949511 01 a 05 geomorphologic 0 geomorphological 0 morphologic 2 morphological 2 structural 3 007 ;c 06115701 n 0000 + 06117855 n 0401 + 06117855 n 0301 + 06117855 n 0202 \ 06117855 n 0202 + 06117855 n 0102 \ 06117855 n 0102 | pertaining to geological structure; "geomorphological features of the Black Hills"; "morphological features of granite"; "structural effects of folding and faulting of the earth's surface" -02949931 01 a 02 morphologic 1 morphological 1 005 + 06178042 n 0201 \ 06178042 n 0201 + 06177729 n 0101 + 06178042 n 0101 \ 06178042 n 0101 | relating to or concerned with the formation of admissible words in a language -02950154 01 a 01 occlusive 0 003 + 07115914 n 0103 + 01476483 v 0104 \ 14100769 n 0101 | tending to occlude -02950264 01 a 01 ohmic 0 002 + 13646816 n 0101 \ 13646816 n 0101 | of or relating to or measured in ohms -02950371 01 a 01 mortuary 0 002 + 03785499 n 0102 \ 07451463 n 0101 | of or relating to a funeral -02950471 01 a 01 mortuary 1 002 + 03785499 n 0102 \ 11444117 n 0101 | of or relating to or characteristic of death -02950588 01 a 01 funerary 0 002 + 07451463 n 0101 \ 07451463 n 0101 | of or for or relating to a funeral; "funerary urn" -02950711 01 a 02 strategic 0 strategical 0 006 + 06249177 n 0201 + 05905348 n 0202 \ 05905348 n 0202 + 06249177 n 0101 + 05905348 n 0102 \ 05905348 n 0102 | relating to or concerned with strategy; "strategic weapon"; "the islands are of strategic importance"; "strategic considerations" -02951000 01 a 01 tactical 0 005 + 05905152 n 0101 + 06248968 n 0101 + 05905152 n 0102 \ 05905152 n 0101 \ 06248968 n 0101 | of or pertaining to tactic or tactics; "a tactical error" -02951184 01 a 01 cinerary 0 001 \ 03073694 n 0102 | containing or used for ashes of the cremated dead; "a cinerary urn" -02951306 01 a 01 circulatory 1 001 \ 05511618 n 0101 | relating to circulatory system or to circulation of the blood -02951425 01 a 01 veinal 0 002 + 13098186 n 0101 \ 13098186 n 0101 | relating to the veins of plants; "leaves affected with veinal mosaic" -02951565 01 a 02 circulative 0 circulatory 2 003 \ 07312221 n 0201 + 02042404 v 0101 \ 07312221 n 0101 | of or relating to circulation -02951702 01 a 02 euphonic 0 euphonical 0 004 + 05718556 n 0202 \ 05718556 n 0202 + 05718556 n 0102 \ 05718556 n 0102 | of or relating to or characterized by euphony -02951869 01 a 02 metamorphic 0 metamorphous 0 003 + 00402128 n 0201 \ 13514880 n 0201 \ 13514880 n 0101 | of or relating to metamorphosis (especially of rocks); "metamorphic stage"; "marble is a metamorphic rock that takes a high polish" -02952109 01 a 01 sedimentary 0 002 + 09428967 n 0101 \ 09428967 n 0101 | resembling or containing or formed by the accumulation of sediment; "sedimentary deposits" -02952275 01 a 01 Christian 0 004 ;c 05946687 n 0000 + 11083656 n 0105 + 08082236 n 0102 \ 06226057 n 0101 | relating to or characteristic of Christianity; "Christian rites" -02952450 01 a 01 Judeo-Christian 0 002 \ 06232880 n 0101 \ 06226057 n 0101 | being historically related to both Judaism and Christianity; "the Judeo-Christian tradition" -02952622 01 a 01 Protestant 0 003 ;c 05946687 n 0000 \ 09679316 n 0101 \ 06228549 n 0101 | of or relating to Protestants or Protestantism; "Protestant churches"; "a Protestant denomination" -02952814 01 a 02 universalistic 0 universalist 0 003 ;c 06182144 n 0000 \ 06192665 n 0201 \ 06192665 n 0101 | of or relating to or tending toward universalism -02952975 01 a 03 Calvinist 0 Calvinistic 0 Calvinistical 0 007 ;c 05946687 n 0000 + 09889346 n 0301 \ 06229853 n 0301 + 06229853 n 0201 \ 06229853 n 0201 + 09889346 n 0101 \ 06229853 n 0101 | of or relating to or characteristic of Calvinism or its adherents -02953235 01 a 02 fundamentalist 0 fundamentalistic 0 004 ;c 06182144 n 0000 + 06231328 n 0201 \ 06231328 n 0201 \ 06231328 n 0101 | of or relating to or tending toward fundamentalism -02953420 01 a 02 Orthodox 0 Jewish-Orthodox 0 003 ;c 05946687 n 0000 \ 06232880 n 0201 \ 06232880 n 0101 | of or pertaining to or characteristic of Judaism; "Orthodox Judaism" -02953598 01 a 04 Orthodox 1 Eastern_Orthodox 0 Russian_Orthodox 0 Greek_Orthodox 0 005 ;c 05946687 n 0000 \ 08086356 n 0401 \ 08086356 n 0301 \ 08086356 n 0201 \ 08086356 n 0101 | of or relating to or characteristic of the Eastern Orthodox Church -02953847 01 a 01 radio 0 002 ;u 06307152 n 0000 \ 11499091 n 0101 | indicating radiation or radioactivity; "radiochemistry" -02953973 01 a 01 dipolar 0 001 \ 09266946 n 0101 | having equal and opposite electric charges or magnetic poles having opposite signs and separated by a small distance -02954143 01 a 01 deformational 0 003 + 07358060 n 0101 + 00404726 n 0102 \ 07358060 n 0101 | relating to or causing change in either shape or size of a material body or geometric figure -02954331 01 a 01 totemic 0 003 + 05954672 n 0101 + 04458409 n 0101 \ 05954672 n 0101 | relating to totemism; "totemic object" -02954459 01 a 01 Anglican 0 003 ;c 05946687 n 0000 + 09958292 n 0101 \ 08087981 n 0101 | of or pertaining to or characteristic of the Anglican church; "an Anglican bishop" -02954633 01 a 01 Baptistic 0 002 + 09838701 n 0101 \ 08089420 n 0101 | of or pertaining to or characteristic of the Baptist church; "Baptistis baptismal practices" -02954799 01 a 02 Congregational 2 Congregationalist 0 003 ;c 05946687 n 0000 \ 08090973 n 0201 \ 08090973 n 0101 | of or pertaining to or characteristic of a Congregational church -02954981 01 a 02 Episcopal 1 Episcopalian 0 003 ;c 05946687 n 0000 \ 08088472 n 0201 \ 08088472 n 0101 | of or pertaining to or characteristic of the Episcopal church; "the Episcopal hierarchy"; "married by an Episcopalian minister" -02955216 01 a 01 revivalistic 0 003 ;c 05946687 n 0000 + 06231191 n 0101 \ 06231191 n 0101 | of or relating to or characterizing revivalism -02955358 01 a 01 Lutheran 2 002 ;c 05946687 n 0000 \ 08091744 n 0101 | of or pertaining to or characteristic of the branch of the Protestant Church adhering to the views of Luther; "Lutheran doctrines" -02955562 01 a 02 Methodist 0 Wesleyan 0 004 ;c 05946687 n 0000 + 10312773 n 0201 + 11381824 n 0201 \ 08092340 n 0101 | of or pertaining to or characteristic of the branch of Protestantism adhering to the views of Wesley; "Methodist theology" -02955806 01 a 01 Mormon 0 002 ;c 05946687 n 0000 \ 08089205 n 0102 | of or pertaining to or characteristic of the Mormon Church; "Mormon leaders"; "the former Mormon practice of polygamy" -02955996 01 a 01 Unitarian 0 003 ;c 05946687 n 0000 + 10738670 n 0101 \ 06230358 n 0101 | of or relating to or characterizing Unitarianism -02956137 01 a 01 orchestral 0 002 + 08248157 n 0101 \ 08248157 n 0101 | relating to or composed for an orchestra; "orchestral score" -02956272 01 a 01 orchestrated 0 001 \ 08248157 n 0101 | arranged for performance by an orchestra -02956371 01 a 01 communicative 0 002 + 00742320 v 0101 \ 00033020 n 0101 | of or relating to communication; "communicative arts" -02956502 01 a 01 autosomal 0 002 + 05443966 n 0101 \ 05443966 n 0101 | of or relating to an autosome; "autosomal gene" -02956623 01 a 01 chromatic 0 001 \ 04956594 n 0101 | able to refract light without spectral color separation; "chromatic lens" -02956752 01 a 01 chromosomal 0 002 + 05442131 n 0101 \ 05442131 n 0101 | of or relating to a chromosome; "chromosomal defect" -02956880 01 a 01 chronological 0 004 + 13845114 n 0101 + 06503224 n 0101 + 06156346 n 0101 \ 06503224 n 0101 | relating to or arranged according to temporal order; "chronological age" -02957066 01 a 01 Italian 0 004 + 09716047 n 0101 + 06964247 n 0101 + 08801678 n 0101 \ 08801678 n 0101 | of or pertaining to or characteristic of Italy or its people or culture or language; "Italian cooking" -02957276 01 a 01 Russian 0 003 + 09006413 n 0101 + 09002814 n 0101 \ 09003284 n 0102 | of or pertaining to or characteristic of Russia or its people or culture or language; "Russian dancing" -02957469 01 a 01 German 0 003 + 09747722 n 0101 + 06950528 n 0101 \ 08766988 n 0101 | of or pertaining to or characteristic of Germany or its people or language; "German philosophers"; "German universities"; "German literature" -02957699 01 a 01 East_German 0 001 \ 08768647 n 0101 | relating to or characteristic of East Germany; "East German spies" -02957823 01 a 02 Celtic 0 Gaelic 0 006 + 06960566 n 0201 + 09688233 n 0201 \ 09688008 n 0201 + 06960298 n 0101 + 09688008 n 0101 \ 09688008 n 0101 | relating to or characteristic of the Celts -02958017 01 a 01 Britannic 0 002 + 08860123 n 0104 \ 09732544 n 0101 | of Britain; "Her Britannic Majesty" -02958126 01 a 02 Teutonic 0 Germanic 2 004 + 06946497 n 0201 + 06950528 n 0201 \ 09689152 n 0201 \ 09689152 n 0101 | of or pertaining to the ancient Teutons or their languages; "Teutonic peoples such as Germans and Scandinavians and British"; "Germanic mythology" -02958392 01 a 02 French 0 Gallic 1 003 + 09708648 n 0202 \ 08929922 n 0201 \ 08929922 n 0101 | of or pertaining to France or the people of France; "French cooking"; "a Gallic shrug" -02958576 01 a 01 Spanish 0 001 \ 09023321 n 0101 | of or relating to or characteristic of Spain or the people of Spain; "Spanish music" -02958714 01 a 01 Iberian 0 002 + 08984567 n 0102 \ 08984567 n 0102 | of or relating to the Iberian Peninsula or its inhabitants -02958844 01 a 01 Lusitanian 0 002 + 09166304 n 0101 \ 09166304 n 0101 | of or relating to or characteristic of the region of Lusitania or its people or language -02959007 01 a 02 Portuguese 0 Lusitanian 1 003 + 09728009 n 0101 + 06966310 n 0101 \ 08984788 n 0101 | of or relating to or characteristic of Portugal or the people of Portugal or their language; "Portuguese wines" -02959224 01 a 01 Sicilian 0 003 + 09717566 n 0101 + 08810999 n 0101 \ 08811215 n 0101 | of or relating to or characteristic of Sicily or the people of Sicily; "the Sicilian Mafia" -02959406 01 a 01 Soviet 0 001 \ 09003284 n 0101 | of or relating to or characteristic of the former Soviet Union or its people; "Soviet leaders" -02959553 01 a 01 Finnish 0 002 + 06958255 n 0101 \ 08779504 n 0101 | of or relating to or characteristic of Finland or the people of Finland; "Finnish architecture" -02959720 01 a 01 Swedish 0 001 \ 08765890 n 0101 | of or relating to or characteristic of Sweden or its people or culture or language; "the Swedish King"; "Swedish punch"; "Swedish umlauts" -02959912 01 a 02 Norwegian 0 Norse 0 005 \ 08764107 n 0201 + 09725402 n 0101 + 06954303 n 0101 + 08764107 n 0101 \ 08764107 n 0101 | of or relating to Norway or its people or culture or language; "Norwegian herring" -02960130 01 a 02 Scandinavian 2 Norse 1 004 + 09730204 n 0101 + 08760856 n 0101 + 08760510 n 0101 \ 08760510 n 0101 | of or relating to Scandinavia or its peoples or cultures; "Norse sagas"; "Norse nomads" -02960338 01 a 01 Danish 0 002 + 06954048 n 0101 \ 08761244 n 0101 | of or relating to or characteristic of Denmark or the Danes or their language ; "Danish furniture" -02960507 01 a 01 Belgian 0 003 + 09694109 n 0101 + 08849753 n 0101 \ 08849753 n 0101 | of or relating to or characteristic of Belgium or the Belgian people; "the Belgian Queen" -02960686 01 a 01 Dutch 0 001 \ 08949093 n 0101 | of or relating to the Netherlands or its people or culture; "Dutch painting"; "Dutch painters" -02960832 01 a 01 Luxembourgian 0 002 + 08960987 n 0101 \ 08960987 n 0101 | relating to or characteristic of Luxembourg; "Luxembourgian food" -02960975 01 a 01 Swiss 0 001 \ 09031653 n 0101 | of or relating to Switzerland or its people or culture; "the Swiss army" -02961099 01 a 01 Austrian 0 003 + 09691604 n 0101 + 08845555 n 0101 \ 08845555 n 0101 | of or relating to Austria or its people or culture; "Austrian music" -02961258 01 a 01 Polish 0 002 + 06944720 n 0101 \ 08982587 n 0101 | of or relating to Poland or its people or culture; "Polish sausage" -02961396 01 a 01 Polynesian 0 001 \ 08841667 n 0101 | of or relating to Polynesia or its people or culture -02961505 01 a 02 Hungarian 0 Magyar 0 004 + 09713985 n 0202 + 06958836 n 0202 + 08952190 n 0101 \ 08952190 n 0101 | relating to or characteristic of Hungary; "Hungarian folk music" -02961688 01 a 02 Czech 0 Czechoslovakian 0 007 + 09699200 n 0201 + 08757569 n 0201 \ 08757569 n 0201 + 09699403 n 0101 + 09699200 n 0103 + 06944911 n 0101 \ 08757569 n 0101 | of or relating to Czechoslovakia or its people or their language; "The Czech border"; "Czechoslovak nationalists"; "The Czechoslovakian population" -02962013 01 a 02 Yugoslavian 0 Yugoslav 0 005 + 09750891 n 0201 \ 08816236 n 0203 + 09750891 n 0103 + 08816236 n 0103 \ 08816236 n 0103 | of or relating to or characteristic of the former country of Yugoslavia or its people or languages; "Yugoslavian wine" -02962272 01 a 03 Romanian 0 Rumanian 0 Roumanian 0 006 + 08813978 n 0302 \ 08813978 n 0301 + 08813978 n 0203 \ 08813978 n 0201 + 08813978 n 0101 \ 08813978 n 0101 | of or relating to or characteristic of the country of Romania or its people or languages; "Romanian folk music" -02962551 01 a 01 Baltic 0 001 \ 09213254 n 0102 | of or near or on the Baltic Sea; "The Baltic republics" -02962659 01 a 01 Baltic 1 002 + 06945679 n 0101 \ 09012101 n 0101 | of or pertaining to or characteristic of the Baltic States or their peoples or languages -02962818 01 a 01 Latvian 0 002 + 09013074 n 0101 \ 09013074 n 0101 | of or relating to or characteristic of Latvia or its people or language -02962961 01 a 01 Lithuanian 0 003 + 06946199 n 0101 + 09013830 n 0101 \ 09013830 n 0101 | of or relating to or characteristic of Lithuania or its people or language -02963128 01 a 01 Moldovan 0 002 + 09014586 n 0101 \ 09014586 n 0101 | of or relating to or characteristic of Moldova or its people or culture -02963272 01 a 01 Kyrgyzstani 0 001 \ 09020440 n 0101 | of or relating to or characteristic of Kyrgyzstan or its people or culture -02963404 01 a 01 Tajikistani 0 001 \ 09020961 n 0101 | of or relating to or characteristic of Tajikistan or it people or culture -02963535 01 a 01 Turkmen 0 001 \ 09021503 n 0101 | of or relating to or characteristic of Turkmenistan or its people or culture -02963665 01 a 01 Ukrainian 0 002 + 09014979 n 0101 \ 09014979 n 0101 | of or relating to or characteristic of Ukraine or its people or culture -02963810 01 a 01 Uzbekistani 0 001 \ 09022265 n 0101 | of or relating to or characteristic of Uzbekistan or its people or culture -02963942 01 a 01 Serbian 0 003 + 08816969 n 0101 \ 08816969 n 0101 \ 09751076 n 0101 | of or relating to the people or language or culture of the region of Serbia -02964107 01 a 01 Croatian 0 003 + 09751256 n 0101 + 08815858 n 0101 \ 08815858 n 0101 | of or relating to or characteristic of Croatia or its people or language; "Croatian villages" -02964291 01 a 01 Slovenian 0 003 + 09749753 n 0101 + 08818444 n 0101 \ 08818444 n 0101 | of or relating to or characteristic of Slovenia or its people or language; "Slovenian independence" -02964482 01 a 01 Slovakian 0 002 + 08759013 n 0101 \ 08759013 n 0101 | of or relating to or characteristic of Slovakia or its people or language -02964629 01 a 01 Bosnian 0 002 + 08817630 n 0105 \ 08817630 n 0104 | of or relating to or characteristic of Bosnia-Herzegovina or the people of Bosnia -02964782 01 a 01 Chinese 0 001 \ 08730550 n 0102 | of or pertaining to China or its peoples or cultures; "Chinese food" -02964904 01 a 01 Sinitic 0 001 \ 09698108 n 0101 | of or relating to the Chinese people or their language or culture; "Sinitic dialects" -02965043 01 a 02 Japanese 0 Nipponese 0 003 + 09718217 n 0202 + 09718217 n 0101 \ 08921850 n 0101 | of or relating to or characteristic of Japan or its people or their culture or language; "the Japanese Emperor"; "Japanese cars" -02965274 01 a 01 exponential 0 003 + 13789462 n 0101 + 06812417 n 0101 \ 06812417 n 0101 | of or involving exponents; "exponential growth" -02965415 01 a 01 paradigmatic 0 002 + 05937524 n 0102 \ 05937524 n 0102 | of or relating to a typical example; "paradigmatic learning" -02965552 01 a 01 paradigmatic 1 002 + 13804375 n 0101 \ 13804375 n 0101 | of or relating to a grammatical paradigm; "paradigmatic inflection" -02965696 01 a 01 Tibetan 0 002 + 08906952 n 0101 \ 08906952 n 0101 | of or relating to or characteristic of Tibet or its people or their language; "Tibetan monks" -02965861 01 a 01 Himalayan 0 002 + 09303647 n 0101 \ 09303647 n 0101 | of or relating to the Himalayas; "Himalayan peaks" -02965985 01 a 01 Chilean 0 003 + 09697986 n 0101 + 08720481 n 0101 \ 08720481 n 0101 | of or relating to or characteristic of Chile or its people; "Chilean volcanoes" -02966154 01 a 01 Peruvian 0 003 + 09726499 n 0101 + 08979054 n 0101 \ 08979054 n 0101 | of or relating to or characteristic of Peru or its people; "Peruvian artifacts" -02966324 01 a 01 Ecuadorian 0 002 + 08776687 n 0101 \ 08776687 n 0101 | of or relating to or characteristic of Ecuador or its people; "Ecuadorian folklore" -02966482 01 a 01 Panamanian 0 003 + 09726120 n 0101 + 08739206 n 0101 \ 08739206 n 0101 | of or relating to or characteristic of Panama or its people; "Panamanian economy" -02966656 01 a 01 Venezuelan 0 003 + 09747062 n 0101 + 09161803 n 0101 \ 09161803 n 0101 | of or relating to or characteristic of Venezuela or its people; "Venezuelan oil" -02966829 01 a 01 Brazilian 0 002 + 08853741 n 0101 \ 08853741 n 0101 | of or relating to or characteristic of Brazil or the people of Brazil -02966972 01 a 02 Argentine 0 Argentinian 0 004 + 09691149 n 0201 + 08711974 n 0201 \ 08711974 n 0201 \ 08711974 n 0101 | of or relating to or characteristic of Argentina or its people; "Argentinian tango" -02967179 01 a 01 Paraguayan 0 003 + 09726246 n 0101 + 08978343 n 0101 \ 08978343 n 0101 | of or relating to or characteristic of Paraguay or its people -02967333 01 a 01 Uruguayan 0 003 + 09746936 n 0101 + 09160295 n 0101 \ 09160295 n 0101 | of or relating to or characteristic of Uruguay or its people -02967485 01 a 01 Bolivian 0 002 + 08852843 n 0101 \ 08852843 n 0101 | of or relating to or characteristic of Bolivia or its people -02967618 01 a 01 Colombian 0 003 + 09698517 n 0101 + 08732116 n 0101 \ 08732116 n 0101 | of or relating to or characteristic of Colombia or its people; "Colombian coffee" -02967791 01 a 01 Korean 0 004 + 09718936 n 0101 + 06929171 n 0101 + 08954611 n 0101 \ 08954611 n 0101 | of or relating to or characteristic of Korea or its people or language; "Korean handicrafts" -02967990 01 a 01 North_Korean 0 003 + 09719105 n 0101 + 08955082 n 0101 \ 08955082 n 0101 | of or relating to or characteristic of North Korea or its people or their culture -02968166 01 a 01 South_Korean 0 003 + 09719207 n 0101 + 08955626 n 0101 \ 08955626 n 0101 | of or relating to or characteristic of South Korea or its people -02968325 01 a 01 European 0 004 + 09275473 n 0101 + 08172695 n 0101 + 08173515 n 0108 \ 09275473 n 0101 | of or relating to or characteristic of Europe or the people of Europe; "European Community" -02968525 01 a 02 Asian 0 Asiatic 0 008 + 09641757 n 0202 + 09207288 n 0201 + 08172877 n 0201 \ 09207288 n 0201 + 09641757 n 0101 + 09207288 n 0101 + 08172877 n 0101 \ 09207288 n 0101 | of or relating to or characteristic of Asia or the peoples of Asia or their languages or culture; "Asian countries" -02968828 01 a 02 Cambodian 0 Kampuchean 0 006 + 09696280 n 0202 + 08716738 n 0203 \ 08716738 n 0201 + 09696280 n 0101 + 08716738 n 0101 \ 08716738 n 0101 | of or relating to or characteristic of Cambodia or its people or language -02969060 01 a 01 Manchurian 0 002 + 08722844 n 0101 \ 08722844 n 0101 | of or relating to or characteristic of Manchuria or its people or their culture; "the Manchurian invasion" -02969241 01 a 01 Honduran 0 002 + 09712570 n 0101 \ 08737716 n 0101 | of or relating to or characteristic of Honduras or its people -02969375 01 a 02 Salvadoran 0 Salvadorean 0 003 + 08738272 n 0201 \ 08738272 n 0201 \ 08738272 n 0101 | of or relating to or characteristic of El Salvador or its people; "Salvadoran coffee"; "Salvadoran guerillas" -02969591 01 a 01 Cuban 0 004 + 09698901 n 0101 + 08750151 n 0101 + 08750334 n 0101 \ 08750334 n 0101 | of or relating to or characteristic of Cuba or the people of Cuba; "Cuban rum" -02969775 01 a 01 Bavarian 0 002 + 08771596 n 0101 \ 08771596 n 0101 | of or relating to or characteristic of Bavaria or its people; "Bavarian beer" -02969925 01 a 01 Byzantine 0 001 \ 08800676 n 0101 | of or relating to or characteristic of the Byzantine Empire or the ancient city of Byzantium -02970073 01 a 01 Byzantine 1 001 \ 08086356 n 0103 | of or relating to the Eastern Orthodox Church or the rites performed in it; "Byzantine monks"; "Byzantine rites" -02970241 01 a 01 Ottoman 0 001 \ 09038597 n 0101 | of or relating to the Ottoman Empire or its people or its culture -02970360 01 a 01 Seljuk 0 001 \ 08158089 n 0101 | of or relating to the Seljuks -02970442 01 a 01 Neapolitan 0 002 + 08805565 n 0101 \ 08805565 n 0101 | of or relating to or characteristic of Naples or its people -02970576 01 a 01 Milanese 0 001 \ 08809165 n 0101 | of or relating to or characteristic of Milan or its people -02970689 01 a 01 Tuscan 0 002 + 08811982 n 0101 \ 08811982 n 0101 | of or relating to or characteristic of Tuscany or its people -02970820 01 a 01 Venetian 0 003 + 09717454 n 0101 + 08813264 n 0101 \ 08813264 n 0101 | of or relating to or characteristic of Venice or its people; "Venetian glass"; "Venetian canals" -02971007 01 a 02 Tyrolean 0 Tyrolese 0 003 \ 08846135 n 0201 + 08846135 n 0101 \ 08846135 n 0101 | of or relating to or characteristic of the Tyrol or its people; "Tyrolean yodeling" -02971192 01 a 01 Viennese 0 001 \ 08846324 n 0101 | of or relating to or characteristic of Vienna or its inhabitants -02971311 01 a 01 Glaswegian 0 003 + 09749142 n 0101 + 08892971 n 0101 \ 08892971 n 0101 | of or relating to or characteristic of Glasgow or its inhabitants -02971469 01 a 01 Egyptian 0 005 + 09700492 n 0101 + 06990000 n 0101 + 08896831 n 0102 + 08897065 n 0101 \ 08897065 n 0101 | of or relating to or characteristic of Egypt or its people or their language -02971672 01 a 01 Hindustani 0 003 + 09713501 n 0103 + 06970373 n 0101 \ 08902422 n 0101 | of or relating to or characteristic of Hindustan or its people or language -02971839 01 a 02 Nepalese 0 Nepali 0 005 + 09724066 n 0202 + 06972985 n 0201 \ 08906374 n 0201 + 09724066 n 0101 \ 08906374 n 0101 | of or pertaining to or characteristic of Nepal or its people or language or culture; "Nepalese troops massed at the border"; "Nepali mountains are among the highest in the world"; "the different Nepali words for `rice'" -02972194 01 a 01 Indonesian 0 002 + 08907606 n 0101 \ 08907606 n 0101 | of or relating to or characteristic of Indonesia or its people or languages -02972344 01 a 01 Alsatian 0 003 + 09785786 n 0101 + 08940209 n 0101 \ 08940209 n 0101 | of or relating to or characteristic of Alsace or its inhabitants -02972499 01 a 01 Athenian 0 005 + 09711132 n 0101 + 09130599 n 0101 + 09076982 n 0101 + 08785343 n 0101 \ 08785343 n 0101 | of or relating to or characteristic of Athens or its inhabitants -02972690 01 a 01 Spartan 0 002 + 08787240 n 0101 \ 08787240 n 0101 | of or relating to or characteristic of Sparta or its people -02972821 01 a 01 Thracian 0 001 \ 08915784 n 0101 | of or relating to Thrace or its people or culture -02972925 01 a 01 Israeli 0 002 + 09715833 n 0101 \ 08792548 n 0101 | of or relating to or characteristic of Israel or its people -02973056 01 a 02 Genoese 0 Genovese 0 002 \ 08808452 n 0201 \ 08808452 n 0101 | of or relating to or characteristic of Genoa or its inhabitants; "the Genoese sailor we call Columbus" -02973241 01 a 01 tragic 0 003 ;c 06376154 n 0000 + 07016948 n 0101 \ 07016948 n 0101 | of or relating to or characteristic of tragedy; "tragic hero" -02973392 01 a 01 comic 0 003 ;c 06376154 n 0000 + 07015510 n 0101 \ 07015510 n 0101 | of or relating to or characteristic of comedy; "comic hero" -02973540 01 a 01 tragicomic 0 003 ;c 06376154 n 0000 + 07017161 n 0101 \ 07017161 n 0101 | of or relating to or characteristic of tragicomedy; "a playwright specializing in tragicomic drama" -02973733 01 a 01 abyssal 0 001 \ 09186592 n 0101 | relating to ocean depths from 2000 to 5000 meters -02973836 01 a 01 neritic 0 001 \ 09369039 n 0101 | of or relating to the region of the sea over the continental shelf which is less than 200 meters deep; "neritic fauna"; "neritic oil" -02974023 01 a 02 baroque 0 Baroque 0 002 \ 15259076 n 0201 \ 15259076 n 0101 | of or relating to or characteristic of the elaborately ornamented style of architecture, art, and music popular in Europe between 1600 and 1750 -02974248 01 a 01 bathyal 0 001 \ 09255343 n 0102 | relating to ocean depths between 200 and 2000 meters (corresponds to the continental slope) -02974393 01 a 01 hadal 0 001 \ 09376526 n 0104 | relating to the deepest parts of the ocean (below 6000 meters) -02974507 01 a 02 operculate 0 operculated 0 002 \ 01902368 n 0201 \ 01902368 n 0101 | having an operculum -02974615 01 a 01 Palestinian 0 004 + 09713357 n 0101 + 08798771 n 0101 + 08798382 n 0101 \ 08798771 n 0101 | of or relating to the area of Palestine and its inhabitants; "Palestinian guerrillas" -02974812 01 a 01 infernal 1 002 + 07303697 n 0102 \ 07303697 n 0102 | of or pertaining to or characteristic of a very uncontrolled and intense fire; "infernal heat" -02974979 01 a 01 cortical 0 003 + 05486510 n 0104 + 05490578 n 0101 \ 05490578 n 0101 | of or relating to a cortex -02975096 01 a 01 metabolic 0 002 + 13514314 n 0101 \ 13514314 n 0101 | of or relating to metabolism; "metabolic rate" -02975216 01 a 01 metastatic 0 002 + 13515353 n 0101 \ 13515353 n 0101 | relating to or affected by metastasis; "metastatic growth" -02975349 01 a 01 gonadal 0 002 + 05524430 n 0101 \ 05524430 n 0101 | of or relating to the gonads; "gonadal hormones" -02975469 01 a 01 agonadal 0 001 \ 05524430 n 0101 | lacking gonads -02975538 01 a 01 diagnostic 0 002 + 00152727 n 0101 \ 00152727 n 0101 | concerned with diagnosis; used for furthering diagnosis; "a diagnostic reading test" -02975697 01 a 02 gastrointestinal 0 GI 0 001 \ 05532225 n 0105 | of or relating to the stomach and intestines; "a gastrointestinal disorder" -02975840 01 a 02 gastronomic 0 gastronomical 0 005 + 00936296 n 0201 \ 07572206 n 0201 + 07572206 n 0101 + 00936296 n 0101 \ 07572206 n 0101 | of or relating to gastronomy; "gastronomic adventures" -02976040 01 a 01 carnal 0 002 + 00727012 v 0102 \ 05268112 n 0101 | of or relating to the body or flesh; "carnal remains" -02976164 01 a 01 cross-modal 0 001 \ 05652396 n 0101 | relating to different sense modalities -02976260 01 a 01 functional 1 001 \ 05149325 n 0101 | relating to or based on function especially as opposed to structure; "the problem now is not a constitutional one; it is a functional one"; "delegates elected on a functional rather than a geographical basis" -02976525 01 a 01 neurotic 0 002 + 14393161 n 0101 \ 14393161 n 0101 | characteristic of or affected by neurosis; "neurotic disorder"; "neurotic symptoms" -02976681 01 a 02 epidemiologic 0 epidemiological 0 004 + 06050024 n 0201 \ 06050024 n 0201 + 06050024 n 0101 \ 06050024 n 0101 | of or relating to epidemiology; "epidemiological studies" -02976870 01 a 01 qualitative 0 001 \ 00646833 n 0102 | relating to or involving comparisons based on qualities -02976983 01 a 02 quantal 0 quantized 0 005 ;c 06090869 n 0000 \ 05855517 n 0201 + 05855748 n 0101 + 05855517 n 0101 \ 05855517 n 0101 | of or relating to a quantum or capable of existing in only one of two states -02977198 01 a 01 quantitative 0 001 \ 05108740 n 0101 | relating to the measurement of quantity; "quantitative studies" -02977320 01 a 01 Quebecois 0 001 \ 08829071 n 0101 | of or relating to Quebec (especially to the French speaking inhabitants or their culture) -02977465 01 a 01 Assamese 0 003 + 09673779 n 0101 + 06970784 n 0101 \ 08902097 n 0101 | of or relating to or characteristic of Assam or its people or culture or language -02977638 01 a 01 Austronesian 0 004 + 09691435 n 0101 + 06937531 n 0101 + 08836329 n 0101 \ 08836329 n 0101 | of or relating to or characteristic of Austronesia or its people or culture -02977826 01 a 01 Algerian 0 003 + 09690083 n 0101 + 08705397 n 0101 \ 08705397 n 0101 | of or relating to or characteristic of Algeria or its inhabitants; "Algerian towns" -02978000 01 a 01 Andorran 0 002 + 09690496 n 0101 \ 09023118 n 0101 | of or relating to or characteristic of Andorra or its people; "the Andorran hills" -02978155 01 a 02 Monacan 0 Monegasque 0 004 + 10327987 n 0201 \ 08967868 n 0201 + 08967868 n 0101 \ 08967868 n 0101 | of or relating to or characteristic of Monaco or its people -02978335 01 a 01 Galwegian 0 002 + 08892058 n 0101 \ 08892058 n 0101 | of or relating to or characteristic of the Scottish district of Galloway or its people -02978495 01 a 01 Calcuttan 0 002 + 08903636 n 0102 \ 08903636 n 0102 | of or relating to or characteristic of Calcutta or its inhabitants -02978635 01 a 01 circadian 0 001 \ 15155220 n 0101 | of or relating to biological processes occurring at 24-hour intervals; "circadian rhythms" -02978781 01 a 02 rhinal 0 nasal 0 003 + 05277532 n 0201 \ 05598147 n 0201 \ 05598147 n 0101 | of or in or relating to the nose; "nasal passages" -02978928 01 a 02 perinasal 0 perirhinal 0 002 \ 05598147 n 0201 \ 05598147 n 0101 | near the nose -02979028 01 a 02 otic 0 auricular 0 002 \ 05323889 n 0201 \ 05320899 n 0101 | of or relating to near the ear -02979139 01 a 01 retinal 0 003 + 15005386 n 0102 + 05426989 n 0101 \ 05426989 n 0101 | in or relating to the retina of the eye; "retinal cells" -02979285 01 a 01 orbital 0 003 + 08612340 n 0101 + 08612049 n 0101 \ 08612049 n 0101 | of or relating to an orbit; "orbital revolution"; "orbital velocity" -02979443 01 a 01 suborbital 0 001 \ 08612049 n 0101 | having or involving a trajectory of less than one orbit; "the first manned suborbital flight" -02979593 01 a 01 reductionist 0 001 \ 05782563 n 0101 | of or relating to the theory of reductionism; "reductionist arguments" -02979722 01 a 01 maturational 0 003 + 13512238 n 0101 + 13489037 n 0103 \ 13489037 n 0103 | relating to or involved in maturation; "maturational process" -02979878 01 a 01 dynamic 2 003 ;c 06090869 n 0000 + 06113597 n 0101 \ 06113597 n 0101 | of or relating to dynamics -02979995 01 a 01 hydrodynamic 0 003 ;c 06090869 n 0000 + 06113914 n 0101 \ 06113914 n 0101 | of or relating to hydrodynamics -02980122 01 a 01 aerodynamic 0 003 ;c 06090869 n 0000 + 06114351 n 0102 \ 06114351 n 0102 | of or relating to aerodynamics -02980247 01 a 02 rheologic 0 rheological 0 005 ;c 06090869 n 0000 + 06102316 n 0201 \ 06102316 n 0201 + 06102316 n 0101 \ 06102316 n 0101 | of or relating to rheology -02980416 01 a 02 meteoritic 0 meteoritical 0 004 + 09352849 n 0201 \ 09352849 n 0201 + 09352849 n 0101 \ 09352849 n 0101 | of or relating to or caused by meteorites -02980583 01 a 01 micrometeoritic 0 002 + 09353918 n 0101 \ 09353918 n 0101 | of or relating to micrometeorites -02980696 01 a 02 cometary 0 cometic 0 004 + 09251407 n 0201 \ 09251407 n 0201 + 09251407 n 0101 \ 09251407 n 0101 | of or relating to or resembling a comet -02980854 01 a 01 asteroidal 0 002 + 09208702 n 0101 \ 09208702 n 0101 | of or relating to or resembling an asteroid -02980972 01 a 01 piezoelectric 0 002 + 11491308 n 0101 \ 11491308 n 0101 | relating to or involving piezoelectricity; "piezoelectric plates" -02981115 01 a 01 thyroid 0 001 \ 05330244 n 0101 | suggestive of a thyroid disorder; "thyroid personality" -02981224 01 a 01 thyrotoxic 0 001 \ 14120767 n 0102 | of or relating to or affected by hyperthyroidism -02981329 01 a 02 thyroid 1 thyroidal 0 003 + 05330244 n 0202 \ 05330244 n 0201 \ 05330244 n 0101 | of or relating to the thyroid gland; "thyroid deficiency"; "thyroidal uptake" -02981508 01 a 01 antithyroid 0 001 \ 02981329 a 0101 | having the effect of counteracting excessive thyroid activity; "antithyroid drugs" -02981648 01 a 01 congressional 0 001 \ 08318691 n 0101 | of or relating to congress; "congressional hearing" -02981759 01 a 01 instructional 0 004 + 06786629 n 0102 + 00883297 n 0102 + 00887081 n 0102 \ 00887081 n 0102 | of or relating to or used in instruction; "instructional aids" -02981935 01 a 01 catechismal 0 003 ;c 05946687 n 0000 + 06412771 n 0101 \ 06412771 n 0101 | of or relating to a catechism summarizing the principles of Christianity -02982102 01 a 02 catechetical 0 catechetic 1 005 ;c 06182144 n 0000 + 00887882 n 0201 \ 00887882 n 0201 + 00887882 n 0101 \ 00887882 n 0101 | of or relating to or involving catechesis -02982288 01 a 02 catechistic 0 catechetic 0 003 \ 07194293 n 0201 + 06412771 n 0101 \ 07194293 n 0101 | of or relating to or resembling a rigorous catechism; "the catechistic method" -02982473 01 a 01 Canadian 0 003 + 09696585 n 0101 + 08820121 n 0101 \ 08820121 n 0101 | of or relating to Canada or its people -02982602 01 a 01 necrotic 0 002 + 11486708 n 0101 \ 11486708 n 0101 | relating to or affected by necrosis; "necrotic tissue" -02982729 01 a 01 hypothalamic 0 002 + 05499379 n 0101 \ 05499379 n 0101 | of or relating to the hypothalamus -02982840 01 a 01 cortico-hypothalamic 0 001 \ 02982729 a 0101 | of or relating to the cortex and the hypothalamus -02982956 01 a 01 thalamocortical 0 001 \ 02974979 a 0101 | relating to or connecting the cortex and thalamus; "the thalamocortical system" -02983097 01 a 01 gestational 0 004 + 15226214 n 0101 + 14046202 n 0102 + 05772215 n 0101 \ 14046202 n 0102 | of or relating to gestation -02983236 01 a 01 progestational 0 001 \ 14046202 n 0102 | preceding and favoring gestation; of or relating to physiological changes associated with ovulation and formation of the corpus luteum -02983431 01 a 01 progestational 1 001 \ 14746048 n 0101 | of or relating to progesterone (or to a drug with effects like those of progesterone) -02983577 01 a 01 emotional 0 003 + 07480068 n 0101 + 04626280 n 0101 \ 07480068 n 0101 | of or pertaining to emotion; "emotional health"; "an emotional crisis" -02983739 01 a 01 macrobiotic 0 002 + 06042312 n 0101 \ 06042312 n 0101 | of or relating to the theory or practice of macrobiotics; "macrobiotic diet" -02983891 01 a 01 biotic 0 001 \ 11473291 n 0101 | of or relating to living organisms -02983978 01 a 01 gubernatorial 0 002 + 10140314 n 0101 \ 10140314 n 0101 | relating to a governor; "gubernatorial election" -02984104 01 a 01 presidential 0 006 + 10467395 n 0103 + 00596807 n 0101 + 10468750 n 0101 + 10468559 n 0101 + 10467179 n 0101 \ 10467179 n 0101 | relating to a president or presidency; "presidential aides"; "presidential veto" -02984333 01 a 01 vice-presidential 0 002 + 10751265 n 0101 \ 10751265 n 0101 | relating to a vice president or vice-presidency; "Vice-presidential debates" -02984491 01 a 01 copular 0 002 + 06472824 n 0101 \ 06472824 n 0101 | of or relating to a copula; "a copular verb" -02984607 01 a 01 coronary 0 002 + 05607126 n 0101 \ 05607126 n 0101 | surrounding like a crown (especially of the blood vessels surrounding the heart); "coronary arteries" -02984781 01 a 01 corporate 0 001 \ 08059412 n 0101 | of or belonging to a corporation; "corporate rates"; "corporate structure" -02984911 01 a 01 corporatist 0 001 \ 05197043 n 0101 | of or relating to corporatism -02984998 01 a 01 corpuscular 0 002 + 05449268 n 0103 \ 05449268 n 0103 | of or relating to corpuscles -02985102 01 a 01 dimensional 0 002 + 05062993 n 0101 \ 05093581 n 0101 | of or relating to dimensions -02985206 01 a 01 volumed 0 002 ;u 06307152 n 0000 \ 06413666 n 0101 | (often used in combination) consisting of or having a given number or kind of volumes; "the poet's volumed works"; "a two-volumed history"; "multi-volumed encyclopedias"; "large-volumed editions" -02985474 01 a 02 volumetric 0 volumetrical 0 004 + 04541475 n 0201 \ 04541475 n 0201 + 04541475 n 0101 \ 04541475 n 0101 | of or relating to measurement by volume; "volumetric analysis" -02985662 01 a 01 hypothermic 0 002 + 14044454 n 0101 \ 14044454 n 0101 | of or relating to or affected by hypothermia -02985782 01 a 01 hyperthermal 0 002 + 14044454 n 0101 \ 14044174 n 0101 | of or relating to or affected by hyperthermia -02985904 01 a 02 yogistic 0 yogic 0 006 + 06239361 n 0201 + 00630960 n 0201 \ 06239361 n 0201 + 06239361 n 0101 + 00630960 n 0101 \ 06239361 n 0101 | of or relating to yoga; "yogic exercises" -02986098 01 a 01 botulinal 0 002 + 15035123 n 0101 \ 01357328 n 0101 | of or relating to or produced by the botulinus -02986218 01 a 02 logistic 0 logistical 0 004 + 01060745 n 0201 \ 01060745 n 0201 + 01060745 n 0101 \ 01060745 n 0101 | of or relating to logistics; "logistic requirements" -02986392 01 a 01 organicistic 0 002 + 05994706 n 0101 \ 05994706 n 0101 | relating to or tending toward organicism -02986509 01 a 02 organismal 0 organismic 0 004 + 00004475 n 0201 \ 08436036 n 0201 + 08436036 n 0101 \ 08436036 n 0101 | of or relating to or belonging to an organism (considered as a whole); "the organismic theory of the state" -02986740 01 a 02 artifactual 0 artefactual 0 004 + 00021939 n 0202 \ 00021939 n 0202 + 00021939 n 0101 \ 00021939 n 0102 | of or relating to artifacts -02986893 01 a 01 mutafacient 0 001 \ 09364086 n 0101 | capable of inducing mutation (used mainly of intracellular agents) -02987017 01 a 01 mutagenic 0 001 \ 09364086 n 0101 | capable of inducing mutation (used mainly of extracellular factors such as X-rays or chemical pollution) -02987177 01 a 01 mutational 0 004 + 10341660 n 0102 + 07297811 n 0101 + 07425011 n 0101 \ 07425011 n 0101 | of or relating to or resulting from mutation -02987332 01 a 01 mutative 0 002 + 00119873 v 0101 \ 07425011 n 0101 | of or pertaining to or marked by genetic mutation -02987454 01 a 01 mutant 0 004 + 10341660 n 0101 + 01324305 n 0101 + 00119873 v 0101 \ 07425011 n 0101 | tending to undergo or resulting from mutation; "a mutant gene" -02987623 01 a 01 incident 0 002 + 11467996 n 0101 \ 11467996 n 0101 | falling or striking of light rays on something; "incident light" -02987760 01 a 02 serologic 0 serological 0 004 + 06063072 n 0201 \ 06063072 n 0201 + 06063072 n 0101 \ 06063072 n 0101 | of or relating to serology -02987910 01 a 02 chromatographic 0 chromatographical 0 003 + 13448778 n 0201 \ 13448778 n 0201 \ 13448778 n 0101 | of or relating to chromatography -02988060 01 a 01 national 0 004 + 09625401 n 0101 + 13953787 n 0101 + 07949463 n 0101 \ 08168978 n 0102 | of or relating to or belonging to a nation or country; "national hero"; "national anthem"; "a national landmark" -02988281 01 a 01 national 1 002 + 07949463 n 0101 \ 13953787 n 0101 | of or relating to nationality; "national origin" -02988402 01 a 01 national 2 002 + 07949463 n 0101 \ 08166552 n 0101 | characteristic of or peculiar to the people of a nation; "a national trait" -02988550 01 a 02 nativist 0 nativistic 0 003 + 05973198 n 0201 \ 05973198 n 0201 \ 05973198 n 0101 | of or relating to or advocating nativism; "nativist theories"; "the traditional controversy between the nativistic and empiristic theories" -02988793 01 a 02 nativist 1 nativistic 1 003 + 06660668 n 0201 \ 06660668 n 0201 \ 06660668 n 0101 | advocating the perpetuation of native societies; "the old nativist prejudice against the foreign businessman"; "the nativistic faith preaches the old values"- C.K.Kluckhohn -02989069 01 a 01 naturistic 0 002 + 01031563 n 0102 \ 01031563 n 0102 | in accord with naturism -02989167 01 a 03 congeneric 0 congenerical 0 congenerous 0 003 \ 01328302 n 0302 \ 01328302 n 0202 \ 01328302 n 0102 | belonging to the same genus -02989316 01 a 01 specific 0 001 \ 08110373 n 0101 | relating to or distinguishing or constituting a taxonomic species; "specific characters" -02989459 01 a 01 conspecific 0 001 \ 08110373 n 0101 | belonging to the same species; "cultivated cabbage and wild cabbage are conspecific" -02989601 01 a 01 experiential 0 002 + 05984584 n 0101 \ 05984584 n 0101 | relating to or resulting from experience; "a personal, experiential reality" -02989754 01 a 02 medieval 0 mediaeval 0 002 \ 15259284 n 0201 \ 15259284 n 0101 | relating to or belonging to the Middle Ages; "Medieval scholars"; "Medieval times" -02989921 01 a 01 mediatorial 0 001 \ 09624559 n 0101 | of or relating to a mediator or the duties of a mediator -02990035 01 a 01 mediatory 0 002 \ 07150644 n 0101 \ 01240432 n 0101 | of or related to or directed toward mediation -02990154 01 a 01 curatorial 0 002 + 09983889 n 0101 \ 09983889 n 0101 | of or relating to a curator or the duties of a curator; "curatorial duties" -02990304 01 a 01 proverbial 0 002 + 07153838 n 0101 \ 07153838 n 0101 | of or relating to or resembling or expressed in a proverb; "he kicked the proverbial bucket"; "the proverbial grasshopper" -02990501 01 a 02 epiphyseal 0 epiphysial 0 004 + 05592504 n 0201 \ 05592504 n 0201 + 05592504 n 0101 \ 05592504 n 0101 | relating to the epiphysis of a bone -02990660 01 a 02 diaphyseal 0 diaphysial 0 004 + 05592733 n 0201 \ 05592733 n 0201 + 05592733 n 0101 \ 05592733 n 0101 | relating to the diaphysis of a bone -02990819 01 a 01 theocratic 0 002 + 08363428 n 0101 \ 08363428 n 0101 | of or relating to or being a theocracy; "a theocratic state" -02990954 01 a 01 comparative 0 003 + 06322693 n 0101 + 00653620 v 0101 \ 13853808 n 0101 | relating to or based on or involving comparison; "comparative linguistics" -02991122 01 a 01 artistic 0 003 + 09812338 n 0101 + 02743547 n 0101 \ 09812338 n 0101 | relating to or characteristic of art or artists; "his artistic background" -02991287 01 a 02 aesthetic 0 esthetic 0 003 \ 06161223 n 0202 + 05968971 n 0101 \ 06161223 n 0101 | relating to or dealing with the subject of aesthetics; "aesthetic values" -02991463 01 a 01 official 0 002 + 08337324 n 0105 \ 08337324 n 0105 | of or relating to an office; "official privileges" -02991586 01 a 01 teleological 0 002 + 05977619 n 0101 \ 05977619 n 0101 | of or relating to teleology -02991690 01 a 01 sentential 0 002 + 06285090 n 0101 \ 06285090 n 0101 | of or relating to a sentence; "the sentential subject" -02991819 01 a 01 intrasentential 0 001 \ 02991690 a 0101 | of or relating to constituents within a sentence; "intrasentential co-occurrence" -02991962 01 a 01 cross-sentential 0 001 \ 02991690 a 0101 | of or relating to relations between sentences -02992070 01 a 01 scopal 0 005 ;c 06163751 n 0000 ;c 06174404 n 0000 + 14513259 n 0103 + 05125377 n 0101 \ 05125377 n 0101 | of or relating to scope; "scopal dependency" -02992241 01 a 01 simian 0 002 + 02470238 n 0101 \ 02470325 n 0101 | relating to or resembling an ape; "simian features" -02992363 01 a 01 bubaline 0 001 \ 02410702 n 0103 | relating to or resembling a buffalo -02992453 01 a 01 embolic 0 004 + 14373407 n 0101 + 14101083 n 0101 \ 14101083 n 0101 \ 14373407 n 0101 | of or relating to an embolism or embolus -02992601 01 a 01 falconine 0 001 \ 01610955 n 0101 | relating to or resembling a falcon -02992691 01 a 01 ferial 0 002 + 15163408 n 0101 \ 15163408 n 0101 | of or relating to or being a feria -02992796 01 a 01 faucal 0 003 ;c 06057539 n 0000 + 05547904 n 0101 \ 05547904 n 0101 | of or relating to the fauces -02992914 01 a 01 future 0 002 ;c 06174404 n 0000 \ 06330401 n 0101 | a verb tense or other formation referring to events or states that have not yet happened; "future auxiliary" -02993094 01 a 02 futuristic 0 futurist 0 004 \ 08468084 n 0201 + 08468084 n 0101 + 06209242 n 0101 \ 08468084 n 0101 | of or relating to futurism; "futurist art" -02993258 01 a 01 gallinaceous 0 001 \ 01789386 n 0102 | of or relating to or resembling a gallinacean -02993362 01 a 03 geodetic 0 geodesic 0 geodesical 0 007 + 06120881 n 0301 \ 06120881 n 0301 + 13870414 n 0201 + 06120881 n 0201 \ 06120881 n 0201 + 06120881 n 0101 \ 06120881 n 0101 | of or relating to or determined by geodesy -02993591 01 a 02 heraldic 0 heraldist 0 002 \ 03515338 n 0201 \ 03515338 n 0101 | of or relating to heraldry -02993702 01 a 01 humanitarian 0 002 + 04829182 n 0101 \ 05967402 n 0101 | of or relating to or characteristic of humanitarianism; "humanitarian aid" -02993853 01 a 01 homophonous 0 003 ;c 06172789 n 0000 + 07131366 n 0101 \ 07131169 n 0101 | characteristic of the phenomenon of words of different origins that are pronounced the same way; "'horse' and 'hoarse' are homophonous words" -02994089 01 a 01 hyperbolic 0 002 + 13886575 n 0101 \ 13886575 n 0101 | of or relating to a hyperbola; "hyperbolic functions" -02994217 01 a 01 lacustrine 0 001 \ 09328904 n 0101 | of or relating to or living near lakes -02994312 01 a 01 liturgical 0 003 + 01035853 n 0105 + 01033184 n 0101 \ 01033184 n 0101 | of or relating to or in accord with liturgy -02994448 01 a 02 locomotive 0 locomotor 0 005 \ 00283127 n 0201 + 04773596 n 0101 + 00283127 n 0101 + 01835496 v 0104 \ 00283127 n 0101 | of or relating to locomotion -02994617 01 a 01 logarithmic 0 002 + 06812631 n 0101 \ 06812631 n 0101 | of or relating to or using logarithms; "logarithmic function" -02994754 01 a 01 Markovian 0 002 + 11157275 n 0101 \ 13511507 n 0101 | relating to or generated by a Markov process -02994872 01 a 02 marmorean 0 marmoreal 0 004 + 14947807 n 0201 \ 14947807 n 0201 + 14947807 n 0101 \ 14947807 n 0101 | of or relating to or characteristic of marble -02995039 01 a 01 marly 0 002 + 14681249 n 0101 \ 14681249 n 0101 | of or relating to or resembling or abounding in marl -02995161 01 a 02 mesonic 0 mesic 0 005 ;c 06090869 n 0000 + 09352282 n 0201 \ 09352282 n 0201 + 09352282 n 0101 \ 09352282 n 0101 | of or pertaining to a meson; "the radii of the mesic orbits"- Lawrence Wilets -02995373 01 a 01 marsupial 0 001 \ 05517268 n 0101 | of or relating to the marsupials; "marsupial animals" -02995482 01 a 01 mercantile 0 001 \ 08367339 n 0101 | of or relating to the economic system of mercantilism; "mercantile theories"; "mercantile system" -02995636 01 a 02 metric 0 metrical 0 005 + 13659162 n 0202 + 13659162 n 0201 \ 13659162 n 0201 + 13659162 n 0101 \ 13659162 n 0101 | based on the meter as a standard of measurement; "the metric system"; "metrical equivalents" -02995864 01 a 01 non-metric 0 001 \ 13659162 n 0101 | not based on the meter as a standard of measurement -02995972 01 a 01 mythic 0 002 + 06372680 n 0101 \ 06372680 n 0101 | relating to or having the nature of myth; "a novel of almost mythic consequence" -02996123 01 a 01 nacreous 0 002 + 14758706 n 0102 \ 14758706 n 0102 | consisting of or resembling mother-of-pearl -02996239 01 a 01 normative 0 001 \ 13854488 n 0101 | relating to or dealing with norms; "normative discipline"; "normative samples" -02996373 01 a 01 North_African 0 001 \ 09178141 n 0101 | of or relating to northern Africa -02996466 01 a 01 ordinal 0 001 \ 08106934 n 0101 | of or relating to a taxonomic order; "family and ordinal names of animals and plants" -02996605 01 a 02 palatal 0 palatine 2 004 + 05278152 n 0201 \ 05309725 n 0201 + 05309725 n 0101 \ 05309725 n 0101 | relating to or lying near the palate; "palatal index"; "the palatine tonsils" -02996801 01 a 01 Paleozoic 0 001 \ 15126931 n 0101 | of or relating to or denoting the Paleozoic era -02996904 01 a 02 parabolic 0 parabolical 0 006 + 06373090 n 0201 + 06372095 n 0202 \ 06372095 n 0202 + 06373090 n 0101 + 06372095 n 0102 \ 06372095 n 0102 | resembling or expressed by parables -02997099 01 a 01 pharyngeal 0 002 + 05547508 n 0102 \ 05547508 n 0102 | of or relating to the throat; "pharyngeal fricatives" -02997227 01 a 01 phrenic 0 001 \ 05318606 n 0101 | of or relating to the diaphragm; "phrenic nerve" -02997329 01 a 01 prosodic 0 001 \ 07083732 n 0101 | of or relating to the rhythmic aspect of language or to the suprasegmental phonemes of pitch and stress and juncture and nasalization and voicing -02997529 01 a 01 appetitive 0 001 \ 07485626 n 0101 | of or relating to appetite; "appetitive needs" -02997632 01 a 01 aversive 0 001 \ 07502669 n 0102 | tending to repel or dissuade; "aversive conditioning" -02997740 01 a 01 promissory 0 003 + 00884317 v 0101 + 00884011 v 0101 \ 07226545 n 0101 | relating to or having the character of a promise; "promissory note" -02997900 01 a 01 quartan 0 001 \ 15113229 n 0101 | occurring every fourth day (especially the fever and weakness of malaria); "quartan malaria" -02998046 01 a 01 quarterly 0 002 + 15206590 n 0101 \ 15206590 n 0101 | of or relating to or consisting of a quarter; "quarterly report" -02998184 01 a 01 quartzose 0 001 \ 14693733 n 0101 | relating to or made of quartz -02998269 01 a 01 quintessential 0 004 + 14847103 n 0101 + 05821646 n 0101 + 05922175 n 0101 \ 05821646 n 0101 | representing the perfect example of a class or quality -02998438 01 a 01 roentgenographic 0 002 + 00904623 n 0101 \ 00904623 n 0101 | relating to or produced by roentgenography -02998561 01 a 01 rotary 0 001 \ 07440979 n 0101 | relating to or characterized by rotation; "rotary dial" -02998669 01 a 01 septic 0 002 + 14180848 n 0101 \ 13458019 n 0101 | of or relating to or caused by putrefaction; "the septic action occurs at the bottom of the septic tank" -02998844 01 a 02 semicentennial 0 semicentenary 0 002 \ 15251212 n 0202 \ 15251212 n 0101 | of or relating to or marking the 50th anniversary -02998988 01 a 02 centennial 0 centenary 0 004 + 15251336 n 0202 \ 15205532 n 0201 + 15251336 n 0101 \ 15205532 n 0101 | of or relating to or completing a period of 100 years; "centennial celebration" -02999190 01 a 02 bicentennial 0 bicentenary 0 004 + 15251600 n 0202 \ 15251600 n 0202 + 15251600 n 0101 \ 15251600 n 0101 | of or relating to or completing a period of 200 years; "bicentennial celebration" -02999398 01 a 02 tricentenary 0 tricentennial 0 006 \ 15251757 n 0201 \ 15251757 n 0202 \ 15251757 n 0203 \ 15251757 n 0101 \ 15251757 n 0102 \ 15251757 n 0103 | of or relating to or completing a period of 300 years -02999616 01 a 01 sophistic 0 002 + 10625099 n 0101 \ 09899929 n 0102 | of or pertaining to sophists -02999718 01 a 02 national_socialist 0 Nazi 0 002 \ 08366202 n 0201 \ 08366202 n 0101 | relating to a form of socialism; "the national socialist party came to power in Germany in 1933" -02999904 01 a 01 Nazi 2 001 \ 08366440 n 0101 | relating to or consistent with or typical of the ideology and practice of Nazism or the Nazis; "the total Nazi crime"; "the Nazi interpretation of history" -03000110 01 a 02 capitalist 0 capitalistic 0 004 + 08364143 n 0201 \ 08364143 n 0201 + 09892262 n 0101 \ 08364143 n 0101 | of or relating to capitalism or capitalists; "a capitalist nation"; "capitalistic methods and incentives" -03000341 01 a 01 zymotic 0 002 + 13575226 n 0101 \ 13575226 n 0101 | relating to or caused by infection -03000447 01 a 02 zymotic 1 zymolytic 0 004 + 13575433 n 0202 \ 13575433 n 0201 + 13575433 n 0101 \ 13575433 n 0101 | of or relating to or causing fermentation -03000608 01 a 01 osmotic 0 002 + 13528100 n 0101 \ 13528100 n 0101 | of or relating to osmosis; "osmotic pressure" -03000725 01 a 01 evolutionary 0 002 + 13477023 n 0101 \ 13477023 n 0101 | of or relating to or produced by evolution; "evolutionary biology" -03000868 01 a 01 oracular 0 002 + 06750339 n 0101 \ 06750339 n 0101 | of or relating to an oracle; "able by oracular means to expose a witch" -03001012 01 a 01 peritoneal 0 002 + 05427739 n 0101 \ 05427739 n 0101 | of or relating to or affecting the peritoneum; "peritoneal cancer" -03001153 01 a 01 Epicurean 0 002 \ 10959479 n 0101 \ 05961141 n 0101 | of Epicurus or epicureanism; "Epicurean philosophy" -03001278 01 a 02 holographic 0 holographical 0 002 \ 06407221 n 0202 \ 06407221 n 0102 | written entirely in one's own hand; "holographic document" -03001428 01 a 01 holographic 2 001 \ 06101333 n 0101 | of or relating to holography or holograms -03001527 01 a 02 canonic 0 canonical 0 002 \ 08453299 n 0201 \ 08453299 n 0101 | of or relating to or required by canon law -03001653 01 a 02 canonic 2 canonical 2 004 + 06430537 n 0201 \ 06664594 n 0201 + 06430537 n 0101 \ 06664594 n 0101 | appearing in a biblical canon; "a canonical book of the Christian New Testament" -03001853 01 a 01 canonist 0 002 + 09891730 n 0101 \ 06664594 n 0101 | pertaining to or characteristic of a body of rules and principles accepted as axiomatic; e.g. "canonist communism" -03002040 01 a 01 symphonic 0 002 + 07044760 n 0101 \ 07044760 n 0101 | relating to or characteristic or suggestive of a symphony; "symphonic choir" -03002190 01 a 01 contextual 0 003 + 14512817 n 0101 + 06284898 n 0101 \ 06284898 n 0101 | relating to or determined by or in context; "contextual information" -03002351 01 a 02 nutritional 0 nutritionary 0 008 + 13523661 n 0201 + 07570720 n 0203 + 06135915 n 0201 \ 13523661 n 0201 + 13523661 n 0101 + 07570720 n 0103 + 06135915 n 0101 \ 13523661 n 0101 | of or relating to or providing nutrition; "nutritional information" -03002617 01 a 01 paramagnetic 0 002 + 03889208 n 0101 \ 03889208 n 0101 | of or relating to a paramagnet -03002724 01 a 01 motional 0 002 + 00279835 n 0101 \ 07309781 n 0102 | of or relating to or characterized by motion -03002841 01 a 02 hydrometric 0 gravimetric 0 006 + 01002413 n 0202 + 03553486 n 0202 \ 01002413 n 0201 + 01002413 n 0101 + 03553486 n 0101 \ 01002413 n 0101 | of or relating to hydrometry -03003031 01 a 02 thermohydrometric 0 thermogravimetric 0 005 + 01116466 n 0201 + 04421582 n 0202 \ 03002841 a 0201 + 04421582 n 0101 \ 03002841 a 0101 | of or relating to thermal hydrometry -03003223 01 a 01 ferromagnetic 0 002 + 11480284 n 0101 \ 11480284 n 0101 | relating to or demonstrating ferromagnetism -03003344 01 a 01 English 0 005 + 00300317 v 0102 + 09732668 n 0101 + 06947032 n 0101 + 08871007 n 0101 \ 08871007 n 0101 | of or relating to or characteristic of England or its culture or people; "English history"; "the English landed aristocracy"; "English literature" -03003616 01 a 01 English 1 003 + 06947032 n 0101 + 06155432 n 0101 \ 06947032 n 0101 | of or relating to the English language -03003744 01 a 01 Irish 0 005 + 09732778 n 0101 + 07907161 n 0101 + 06960778 n 0101 + 08859173 n 0101 \ 08859173 n 0101 | of or relating to or characteristic of Ireland or its people -03003928 01 a 03 Afghani 0 Afghan 0 Afghanistani 0 008 + 09689435 n 0302 \ 08703454 n 0301 + 09689435 n 0201 + 06975132 n 0205 + 08703454 n 0201 \ 08703454 n 0201 + 06975132 n 0104 \ 08703454 n 0101 | of or relating to or characteristic of Afghanistan or its people -03004196 01 a 01 Central_American 0 002 + 09697401 n 0101 \ 08735705 n 0101 | of or relating to or characteristic of Central America or its people or languages -03004358 01 a 02 idiomatic 0 idiomatical 0 005 + 07081177 n 0202 \ 07081177 n 0202 + 07081177 n 0102 + 07154330 n 0101 \ 07081177 n 0102 | of or relating to or conforming to idiom; "idiomatic English" -03004561 01 a 01 dialectal 0 002 + 07155661 n 0101 \ 07155661 n 0101 | belonging to or characteristic of a dialect; "dialectal variation" -03004701 01 a 01 percussive 0 002 + 01248023 v 0101 \ 00545059 n 0101 | involving percussion or featuring percussive instruments; "percussive music" -03004852 01 a 02 waxen 0 waxy 0 004 + 05216240 n 0201 + 15094294 n 0201 \ 15094294 n 0201 \ 15094294 n 0101 | made of or covered with wax; "waxen candles"; "careful, the floor is waxy" -03005039 01 a 01 enzymatic 0 002 + 14732946 n 0101 \ 14732946 n 0101 | of or relating to or produced by an enzyme -03005155 01 a 01 nonenzymatic 0 001 \ 14732946 n 0101 | not relating to or produced by enzymes; "nonenzymatic systems" -03005276 01 a 03 iodinated 0 iodized 0 iodised 0 003 \ 14641397 n 0301 \ 14641397 n 0201 \ 14641397 n 0101 | treated with iodine; "iodized salt" -03005423 01 a 02 dramaturgic 0 dramaturgical 0 004 + 07006119 n 0201 \ 07006119 n 0201 + 07006119 n 0101 \ 07006119 n 0101 | relating to the technical aspects of drama -03005593 01 a 01 autodidactic 0 002 + 09825413 n 0101 \ 09825413 n 0101 | relating to or having the characteristics of an autodidact -03005728 01 a 01 aneuploid 0 001 \ 14022661 n 0101 | having a chromosome number that is not an exact multiple of the haploid number -03005862 01 a 04 aneurysmal 0 aneurismal 0 aneurysmatic 0 aneurismatic 0 008 + 14106025 n 0402 \ 14106025 n 0401 + 14106025 n 0301 \ 14106025 n 0301 + 14106025 n 0202 \ 14106025 n 0201 + 14106025 n 0101 \ 14106025 n 0101 | relating to or affected by an aneurysm -03006126 01 a 01 alluvial 0 002 + 09193282 n 0103 \ 09193282 n 0103 | of or relating to alluvium -03006225 01 a 01 doctrinal 0 002 + 05943300 n 0101 \ 05943300 n 0101 | relating to or involving or preoccupied with doctrine; "quibbling over doctrinal minutiae" -03006389 01 a 01 dogmatic 0 002 + 05960464 n 0101 \ 06790042 n 0101 | relating to or involving dogma; "dogmatic writings" -03006513 01 a 01 providential 0 001 \ 14473917 n 0101 | relating to or characteristic of providence; "assumption that nature operates only according to a providential plan"- M.R.Cohen -03006699 01 a 01 philanthropic 0 002 + 01089483 n 0101 \ 01089483 n 0101 | of or relating to or characterized by philanthropy; "a philanthropic society" -03006854 01 a 02 philatelic 0 philatelical 0 004 + 01016420 n 0201 \ 01016420 n 0201 + 01016420 n 0101 \ 01016420 n 0101 | of or relating to philately or of interest to philatelists -03007038 01 a 01 aerophilatelic 0 002 + 01016628 n 0101 \ 01016628 n 0101 | of or relating to airmail stamps -03007149 01 a 01 pleochroic 0 001 \ 11491619 n 0101 | of or relating to or having pleochroism -03007245 01 a 01 sternal 0 002 + 05281189 n 0101 \ 05281189 n 0101 | of or relating to or near the sternum -03007354 01 a 01 congestive 0 002 + 01478603 v 0105 \ 14320394 n 0101 | relating to or affected by an abnormal collection of blood or other fluid; "congestive heart disease" -03007530 01 a 02 hemolytic 0 haemolytic 0 004 + 13493213 n 0202 \ 13493213 n 0201 + 13493213 n 0101 \ 13493213 n 0101 | relating to or involving or causing hemolysis; "hemolytic anemia" -03007718 01 a 01 sarcolemmal 0 002 + 05427570 n 0101 \ 05427570 n 0101 | of or relating to the sarcolemma -03007826 01 a 01 sarcosomal 0 002 + 05445546 n 0101 \ 05445546 n 0101 | of or relating to sarcosomes -03007929 01 a 01 sternutatory 0 001 \ 15057558 n 0101 | tending to cause sneezing -03008013 01 a 01 sympathetic 0 003 ;c 06080522 n 0000 ;c 06057539 n 0000 \ 05505131 n 0101 | of or relating to the sympathetic nervous system; "sympathetic neurons"; "sympathetic stimulation" -03008207 01 a 01 urinary 0 002 + 14855724 n 0101 \ 14855724 n 0101 | of or relating to the function or production or secretion of urine -03008345 01 a 01 urinary 1 001 \ 05509452 n 0103 | of or relating to the urinary system of the body -03008447 01 a 02 atheromatous 0 atheromatic 0 004 + 05269495 n 0201 \ 05269495 n 0201 + 05269495 n 0101 \ 05269495 n 0101 | of or relating to or resembling atheroma; "atheromatous degeneration of the arteries" -03008659 01 a 01 basophilic 0 003 ;c 06037666 n 0000 + 04944910 n 0101 \ 04944910 n 0101 | staining readily with basic dyes -03008785 01 a 01 intimal 0 002 + 05319760 n 0101 \ 05319760 n 0101 | of or relating to the intima -03008885 01 a 02 coeliac 0 celiac 0 002 \ 05558345 n 0201 \ 05558345 n 0101 | of or in or belonging to the cavity of the abdomen -03009016 01 a 01 celiac 1 001 \ 14057828 n 0101 | belonging to or prescribed for celiac disease; "a celiac diet" -03009131 01 a 01 emphysematous 0 002 + 14147380 n 0101 \ 14147380 n 0101 | relating to or resembling or being emphysema -03009253 01 a 01 granulocytic 0 002 + 05453145 n 0101 \ 05453145 n 0101 | of or relating to granulocytes -03009360 01 a 01 atrophic 0 001 \ 14365741 n 0101 | relating to or characterized by atrophy; "atrophic arthritis" -03009476 01 a 01 mesenteric 0 002 + 05429195 n 0101 \ 05429195 n 0101 | of or relating to or located in a mesentery -03009594 01 a 01 glomerular 0 002 + 05247804 n 0101 \ 05247804 n 0101 | of or relating to glomeruli -03009696 01 a 01 calcific 0 001 \ 14364980 n 0101 | involving or resulting from calcification -03009792 01 a 01 fibrocalcific 0 001 \ 03009696 a 0101 | involving or resulting from calcification of fibrous tissue -03009911 01 a 02 pyknotic 0 pycnotic 0 004 + 14076667 n 0201 \ 14076667 n 0202 + 14076667 n 0102 \ 14076667 n 0102 | of or relating to or exhibiting pyknosis -03010071 01 a 01 eosinophilic 0 002 + 05453943 n 0101 \ 05453943 n 0101 | of or relating to eosinophil -03010176 01 a 02 papillary 0 papillose 0 004 \ 05473735 n 0201 + 05473735 n 0101 + 05473593 n 0101 \ 05473735 n 0101 | of or relating to or resembling papilla -03010337 01 a 01 papillate 0 001 \ 05473593 n 0101 | resembling or covered with papillae -03010428 01 a 01 vesicular 0 001 \ 05517578 n 0101 | of or relating to or involving vesicles; "normal vesicular breathing" -03010553 01 a 01 vestibular 0 002 + 05304603 n 0101 \ 05659365 n 0103 | relating to the sense of equilibrium -03010664 01 a 01 vertebral 0 002 + 05284333 n 0101 \ 05284333 n 0101 | of or relating to or constituting vertebrae -03010781 01 a 01 neocortical 0 002 + 05481746 n 0102 \ 05481746 n 0102 | of or relating to the neocortex of the cerebrum -03010904 01 a 01 paleocortical 0 002 + 05481870 n 0102 \ 05481870 n 0102 | of or relating to the olfactory cortex of the cerebrum -03011036 01 a 01 limbic 0 001 \ 05235745 n 0101 | of or relating to or forming a limbus -03011126 01 a 01 fugal 0 002 + 14030291 n 0101 \ 07043675 n 0101 | of or relating to or in the style of a musical fugue -03011248 01 a 01 parasympathetic 0 002 + 05505679 n 0102 \ 05505679 n 0101 | of or relating to the parasympathetic nervous system -03011380 01 a 01 parasympathomimetic 0 001 \ 05505679 n 0101 | having an effect similar to that resulting from stimulation of the parasympathetic nervous system; "parasympathomimetic drugs slow the heart rate" -03011592 01 a 02 hypophyseal 0 hypophysial 0 004 + 05483890 n 0204 \ 05483890 n 0204 + 05483890 n 0104 \ 05483890 n 0104 | of or relating to the hypophysis -03011750 01 a 01 hyperemic 0 002 + 14320984 n 0101 \ 14320984 n 0101 | relating to or caused by hyperemia -03011858 01 a 01 neuropsychiatric 0 002 + 06053101 n 0101 \ 06053101 n 0101 | of or relating to neuropsychiatry -03011972 01 a 01 psychopharmacological 0 002 + 06055824 n 0101 \ 06055824 n 0101 | of or relating to psychopharmacology -03012094 01 a 01 salivary 0 002 + 05416198 n 0101 \ 05416198 n 0101 | of or relating to saliva; "salivary gland" -03012209 01 a 01 prime 0 002 ;c 06000644 n 0000 \ 13594302 n 0101 | of or relating to or being an integer that cannot be factored into other integers; "prime number" -03012377 01 a 01 nilpotent 0 001 \ 13742358 n 0101 | equal to zero when raised to a certain power -03012477 01 a 01 megakaryocytic 0 002 + 05448928 n 0101 \ 05448928 n 0101 | of or pertaining to large bone marrow cells -03012599 01 a 01 megaloblastic 0 002 + 05449797 n 0101 \ 05449797 n 0101 | of or relating to megaloblasts -03012707 01 a 01 myelic 0 001 \ 05503705 n 0101 | of or relating to the spinal cord -03012793 01 a 01 myelinic 0 002 + 14957893 n 0101 \ 14957893 n 0101 | of or relating to the substance that forms a sheath around the axon of some nerve fibers -03012954 01 a 01 myeloid 0 001 \ 05285623 n 0102 | of or relating to bone marrow -03013037 01 a 01 myeloid 1 001 \ 05503705 n 0101 | of or relating to the spinal cord -03013124 01 a 01 myocardial 0 002 + 05391000 n 0101 \ 05391000 n 0101 | of or relating to the myocardium -03013231 01 a 01 myoid 0 001 \ 05289057 n 0101 | resembling muscle -03013300 01 a 01 myotonic 0 002 + 14545353 n 0101 \ 14545353 n 0101 | of or relating to or caused by myotonia -03013412 01 a 01 triumphal 0 001 \ 07473441 n 0102 | relating to or celebrating a triumph; "a triumphal procession"; "a triumphal arch" -03013550 01 a 01 Darwinian 0 003 + 09992331 n 0101 + 10923313 n 0101 \ 06110091 n 0101 | of or relating to Charles Darwin's theory of organic evolution; "Darwinian theories" -03013726 01 a 01 neo-Darwinian 0 002 + 06110267 n 0101 \ 06110267 n 0101 | of or relating to Darwin's theories as modified by modern genetic findings; "Neo-Darwinian theories" -03013904 01 a 01 Lamarckian 0 002 + 11114791 n 0101 \ 06110426 n 0101 | of or relating to Lamarckism; "Lamarckian theories" -03014030 01 a 01 neo-Lamarckian 0 001 \ 06110598 n 0101 | of or relating to a modern version of Lamarckism; "Neo-Lamarckian theories" -03014166 01 a 01 larval 0 002 + 02311060 n 0101 \ 02311060 n 0101 | relating to or typical of a larva; "the larval eye" -03014288 01 a 01 operational 0 001 \ 00577068 n 0101 | pertaining to a process or series of actions for achieving a result; "operational difficulties"; "they assumed their operational positions" -03014485 01 a 02 microbial 0 microbic 0 003 \ 01384491 n 0201 + 01384491 n 0101 \ 01384491 n 0101 | of or involving or caused by or being microbes; "microbial warfare" -03014655 01 a 01 cochlear 0 001 \ 05326624 n 0101 | of or relating to the cochlea of the ear; "cochlear implant" -03014770 01 a 01 lumbar 0 002 + 02463403 n 0102 \ 02463403 n 0101 | of or relating to or near the part of the back between the ribs and the hipbones; "lumbar vertebrae" -03014941 01 a 01 lumbosacral 0 002 \ 03014770 a 0101 \ 03113164 a 0101 | of or relating to or near the small of the back and the back part of the pelvis between the hips -03015113 01 a 04 flagellate 0 flagellated 0 whiplike 0 lash-like 0 005 \ 03643907 n 0401 \ 04577769 n 0301 \ 01458302 n 0201 + 01416585 n 0101 \ 01458302 n 0101 | having or resembling a lash or whip (as does a flagellum) -03015336 01 a 01 biflagellate 0 001 \ 03015113 a 0101 | having two flagella; "a biflagellate zoospore" -03015441 01 a 01 ceramic 0 003 + 02997391 n 0101 + 00935247 n 0101 \ 02997391 n 0101 | of or relating to or made from a ceramic; "a ceramic dish" -03015589 01 a 02 epic 0 epical 0 005 + 06379721 n 0203 \ 06379721 n 0203 + 06379721 n 0103 + 06379721 n 0104 \ 06379721 n 0103 | constituting or having to do with or suggestive of a literary epic; "epic tradition" -03015805 01 a 03 Hellenic 0 Hellenistic 0 Hellenistical 0 005 + 05956489 n 0301 \ 05956489 n 0301 + 05956489 n 0201 \ 05956489 n 0201 \ 05956489 n 0101 | relating to or characteristic of the classical Greek civilization -03016027 01 a 02 Panhellenic 0 Pan-Hellenic 0 002 \ 05956489 n 0201 \ 05956489 n 0101 | of or relating to all the Greeks; "the Olympic Games were a Panhellenic celebration" -03016202 01 a 03 Greek 1 Grecian 0 Hellenic 1 008 + 06976392 n 0302 + 09710164 n 0302 \ 08780881 n 0301 + 09710164 n 0201 \ 08780881 n 0201 + 09710164 n 0101 + 06976392 n 0101 \ 08780881 n 0101 | of or relating to or characteristic of Greece or the Greeks or the Greek language; "Greek mythology"; "a Grecian robe" -03016519 01 a 01 Syrian 0 002 + 09033333 n 0101 \ 09033333 n 0101 | of or relating to or characteristic of Syria or its people or culture; "the Syrian government" -03016684 01 a 01 Minoan 0 002 + 09564680 n 0101 \ 08290763 n 0101 | of or relating to or characteristic of the Bronze Age culture of Crete; "the Minoan palace at Knossos" -03016857 01 a 01 Mycenaean 0 002 + 08787049 n 0101 \ 08787049 n 0101 | of or relating to or characteristic of ancient Mycenae or its inhabitants; "Mycenaean bronzes" -03017025 01 a 01 Aegean 0 002 + 09188609 n 0101 \ 09188609 n 0101 | of or relating to or bordering the Aegean Sea; "Aegean islands" -03017159 01 a 01 Aegean 1 001 \ 08290156 n 0101 | of or relating to or characteristic of the prehistoric Aegean civilization -03017286 01 a 01 Attic 0 002 + 06977610 n 0101 \ 08786283 n 0101 | of or relating to Attica or its inhabitants or to the dialect spoken in Athens in classical times; "Attic Greek" -03017468 01 a 01 Boeotian 0 002 + 08789243 n 0101 \ 08789243 n 0101 | of or relating to ancient Boeotia or its people or to the dialect spoken there in classical times; "Boeotian dialects" -03017659 01 a 01 Dipylon 0 002 + 08785958 n 0102 \ 08785958 n 0101 | of or relating to a gateway on the west of ancient Athens -03017788 01 a 01 Argive 0 002 \ 08786660 n 0101 + 08786660 n 0101 | of or relating to the ancient Greek city of Argos or its people -03017922 01 a 01 executive 0 004 + 02563327 v 0102 + 02563860 v 0101 + 01640855 v 0103 \ 01127379 n 0101 | having the function of carrying out plans or orders etc.; "the executive branch" -03018112 01 a 02 topographical 0 topographic 0 006 + 06122578 n 0201 + 05064541 n 0201 \ 06122578 n 0201 + 06122578 n 0101 + 05064541 n 0101 \ 06122578 n 0101 | concerned with topography; "a topographical engineer"; "a topographical survey"; "topographic maps" -03018375 01 a 01 endothelial 0 002 + 05240522 n 0101 \ 05240522 n 0101 | of or relating to or located in the endothelium -03018498 01 a 03 taxonomic 0 taxonomical 0 systematic 0 009 ;c 06037666 n 0000 + 08378356 n 0201 + 06153186 n 0201 + 01013770 n 0201 \ 01013770 n 0201 + 08378356 n 0101 + 06153186 n 0101 + 01013770 n 0101 \ 01013770 n 0101 | of or relating to taxonomy; "taxonomic relations"; "a taxonomic designation" -03018802 01 a 01 classificatory 0 003 + 00739662 v 0102 + 00654625 v 0101 \ 01012712 n 0103 | relating to or involving classification:"classificatory criteria" -03018964 01 a 01 eutherian 0 002 + 01886220 n 0101 \ 01886220 n 0101 | of or relating to or belonging to the subclass Eutheria; "eutherian mammals" -03019114 01 a 01 proteolytic 0 002 + 13542688 n 0101 \ 13542688 n 0101 | of or relating to proteolysis -03019219 01 a 01 microsomal 0 002 + 05434361 n 0101 \ 05434361 n 0101 | of or relating to microsomes -03019322 01 a 02 mithraic 0 mithraistic 0 004 + 09531826 n 0201 + 06243963 n 0201 \ 06243963 n 0201 \ 06243963 n 0101 | of or relating to Mithraism or its god -03019483 01 a 01 mitotic 0 001 \ 13516597 n 0101 | of or relating to or undergoing mitosis -03019576 01 a 01 mitral 0 001 \ 05393813 n 0101 | of or relating to or located in or near the mitral valve; "mitral insufficiency" -03019709 01 a 01 mitral 1 002 + 03773970 n 0101 \ 03773970 n 0101 | relating to or resembling the miter worn by some clerics -03019836 01 a 01 follicular 0 002 + 05518094 n 0101 \ 05518094 n 0101 | of or relating to or constituting a follicle -03019955 01 a 01 philological 0 002 + 06171040 n 0102 \ 06171040 n 0102 | of or relating to or dealing with philology -03020075 01 a 01 dystopian 0 002 + 13932213 n 0101 \ 13932213 n 0101 | of or pertaining to or resembling a dystopia -03020193 01 a 02 utopian 0 Utopian 0 003 + 07283198 n 0201 \ 07283198 n 0201 \ 13932045 n 0101 | of or pertaining to or resembling a utopia; "a Utopian novel" -03020354 01 a 01 Stoic 0 002 + 10658676 n 0101 \ 05976948 n 0101 | pertaining to Stoicism or its followers -03020463 01 a 02 patristic 0 patristical 0 005 + 06364004 n 0201 \ 09921792 n 0201 + 06364004 n 0101 + 06185302 n 0101 \ 09921792 n 0101 | of or relating to the writings of the early church fathers -03020663 01 a 01 sapphirine 0 001 \ 15019483 n 0101 | made of or resembling sapphire -03020750 01 a 01 saprophytic 0 002 + 13124164 n 0101 \ 13124164 n 0101 | obtaining food osmotically from dissolved organic material -03020884 01 a 01 saprobic 0 003 ;c 06037666 n 0000 + 13124358 n 0101 \ 13124358 n 0101 | living in or being an environment rich in organic matter but lacking oxygen -03021051 01 a 01 katharobic 0 002 ;c 06037666 n 0000 \ 13124529 n 0101 | of living being in an oxygenated environment lacking organic matter -03021194 01 a 02 cubist 0 cubistic 0 003 + 08466175 n 0201 \ 08466175 n 0201 \ 08466175 n 0101 | relating to or characteristic of cubism; "cubist art" -03021347 01 a 01 tomentose 0 002 ;c 06066555 n 0000 \ 13090091 n 0103 | covered with densely matted filaments -03021459 01 a 01 hyoid 0 001 \ 05275162 n 0102 | of or relating to the hyoid bone -03021543 01 a 02 geographic 0 geographical 0 003 + 06122178 n 0201 \ 06122178 n 0201 \ 06122178 n 0101 | of or relating to the science of geography -03021693 01 a 01 shouldered 0 001 \ 05548840 n 0101 | having shoulders or shoulders as specified; usually used as a combining form; "stoop-shouldered"; "broad-shouldered" -03021866 01 a 03 shrubby 0 fruticose 0 fruticulose 0 002 + 13112664 n 0101 \ 13112664 n 0101 | of or relating to or resembling a shrub -03022003 01 a 01 etymological 0 003 + 06514621 n 0101 + 06168855 n 0101 \ 06514621 n 0101 | based on or belonging to etymology; "I merely drew an etymological distinction" -03022177 01 a 01 British 0 002 + 09732544 n 0101 \ 08858942 n 0101 | of or relating to or characteristic of Great Britain or its people or culture; "his wife is British" -03022349 01 a 01 epiphytic 0 003 ;c 06066555 n 0000 + 13122985 n 0102 \ 13122985 n 0102 | of or relating to epiphytes -03022469 01 a 01 lithophytic 0 003 ;c 06066555 n 0000 + 13123841 n 0101 \ 13123841 n 0101 | of or relating to lithophytes -03022593 01 a 01 budgetary 0 003 + 13421462 n 0101 + 13421832 n 0101 \ 13421832 n 0101 | of or relating to a budget; "budgetary considerations" -03022739 01 a 02 propagandist 0 propagandistic 0 004 + 06674542 n 0201 \ 10482921 n 0201 + 10482921 n 0101 \ 10482921 n 0101 | of or relating to or characterized by propaganda -03022917 01 a 02 isolationist 0 isolationistic 0 004 + 06662193 n 0201 \ 06662193 n 0201 + 10217684 n 0101 \ 06662193 n 0101 | of or relating to isolationism -03023077 01 a 01 ascomycetous 0 002 + 13024012 n 0101 \ 13024012 n 0101 | related to or characteristic of fungi of the class Ascomycetes -03023216 01 a 01 pianistic 0 002 + 03928116 n 0101 \ 10430665 n 0101 | skilled at or adapted for the piano; "pianistic abilities" -03023348 01 a 01 pianistic 1 002 + 03928116 n 0101 \ 03928116 n 0101 | of or relating to the piano -03023449 01 a 01 Parisian 0 003 + 09708750 n 0101 + 08932568 n 0101 \ 08932568 n 0101 | of or relating to or characteristic of Paris or its inhabitants; "Parisian restaurants can be expensive" -03023644 01 a 02 dialectic 0 dialectical 0 005 + 13857804 n 0201 + 06163548 n 0201 \ 06163548 n 0201 + 06163548 n 0101 \ 06163548 n 0101 | of or relating to or employing dialectic; "the dialectical method" -03023852 01 a 01 Turkish 0 001 \ 09039411 n 0101 | of or relating to or characteristic of Turkey or its people or language; "Turkish towels" -03023995 01 a 01 Eurafrican 0 003 + 09686262 n 0101 \ 09275473 n 0101 \ 09189411 n 0101 | relating to or coming from Europe and Africa -03024132 01 a 02 Eurasian 0 Eurasiatic 0 005 + 09275016 n 0201 \ 09275016 n 0201 + 09686401 n 0101 + 09275016 n 0101 \ 09275016 n 0101 | relating to, or coming from, Europe and Asia; "His mother was Eurasian, and his father Chinese"; "the Eurasian landmass is the largest in the world" -03024420 01 a 02 Moroccan 0 Maroc 0 004 \ 08969291 n 0201 + 09723564 n 0101 + 08969291 n 0101 \ 08969291 n 0101 | of or relating to or characteristic of Morocco or its people; "Moroccan mosques cannot be entered by infidels" -03024647 01 a 03 Scots 0 Scottish 0 Scotch 0 005 \ 08890097 n 0301 + 06950209 n 0201 \ 08890097 n 0201 + 06950209 n 0102 \ 08890097 n 0101 | of or relating to or characteristic of Scotland or its people or culture or its English dialect or Gaelic language; "Scots Gaelic"; "the Scots community in New York"; "`Scottish' tends to be the more formal term as in `The Scottish Symphony' or `Scottish authors' or `Scottish mountains'"; "`Scotch' is in disfavor with Scottish people and is used primarily outside Scotland except in such frozen phrases as `Scotch broth' or `Scotch whiskey' or `Scotch plaid'" -03025252 01 a 01 Corsican 0 003 + 08942091 n 0102 + 08941895 n 0102 \ 08941895 n 0102 | of or relating to or characteristic of Corsica or its people -03025403 01 a 01 Sardinian 0 004 + 10552285 n 0101 + 06964600 n 0101 + 08810631 n 0101 \ 08810786 n 0101 | of or relating to or characteristic of Sardinia or its people or its language -03025590 01 a 01 Alpine 0 001 \ 09194357 n 0101 | relating to the Alps and their inhabitants; "Alpine countries, Switzerland, Italy, France, and Germany" -03025746 01 a 01 alpine 1 001 \ 09193705 n 0101 | relating to or characteristic of alps; "alpine sports" -03025853 01 a 01 Andean 0 002 + 09196611 n 0101 \ 09196611 n 0101 | relating to the Andes and their inhabitants -03025967 01 a 01 myrmecophytic 0 003 ;c 06066555 n 0000 + 13179056 n 0101 \ 13179056 n 0101 | of or relating to myrmecophytes -03026095 01 a 01 tuberous 0 003 + 13128365 n 0101 + 05542686 n 0101 \ 13128365 n 0101 | of or relating to or resembling a tuber; "a tuberous root" -03026244 01 a 01 semi-tuberous 0 001 \ 13128365 n 0101 | partly tuberous -03026319 01 a 02 saponaceous 0 soapy 0 004 + 04947888 n 0201 + 04253437 n 0201 \ 04253437 n 0201 \ 04253437 n 0101 | resembling or having the qualities of soap; "a soapy consistency" -03026504 01 a 02 umbellate 0 umbellar 0 003 + 13131028 n 0201 \ 13131028 n 0201 \ 13131028 n 0101 | bearing or consisting of or resembling umbels -03026652 01 a 01 narial 0 002 + 05600431 n 0101 \ 05600431 n 0101 | of or relating to or near the nares -03026758 01 a 01 Cartesian 0 002 + 10931854 n 0101 \ 10931854 n 0101 | of or relating to Rene Descartes or his works; "Cartesian linguistics" -03026902 01 a 01 Mexican 0 002 + 08740875 n 0101 \ 08740875 n 0101 | of or relating to Mexico or its inhabitants; "Mexican food is hot" -03027040 01 a 01 Tudor 0 001 \ 08159031 n 0101 | of or relating to a style of architecture in England in the 15th century; "half-timbered Tudor houses"; "Tudor furniture" -03027213 01 a 01 Shavian 0 002 + 11295936 n 0101 \ 11295936 n 0101 | of or relating to George Bernard Shaw or his works -03027335 01 a 02 Shakespearian 0 Shakespearean 0 004 + 11295196 n 0201 \ 11295196 n 0201 + 11295196 n 0101 \ 11295196 n 0101 | of or relating to William Shakespeare or his works; "Shakespearean plays" -03027538 01 a 01 Skinnerian 0 003 + 10605608 n 0101 + 11304461 n 0101 \ 11304461 n 0101 | of or relating to B. F. Skinner or his behaviorist psychology -03027692 01 a 01 Falstaffian 0 002 + 09598750 n 0101 \ 09598750 n 0101 | of or resembling Falstaff -03027793 01 a 01 Victorian 0 004 + 10753061 n 0101 + 11365857 n 0101 \ 11365857 n 0101 \ 15122853 n 0101 | of or relating to Queen Victoria of Great Britain or to the age in which she ruled; "Victorian morals" -03028005 01 a 01 Gaussian 0 002 + 10992675 n 0101 \ 10992675 n 0101 | of or relating to Karl Gauss or his mathematical theories of magnetics or electricity or astronomy or probability; "Gaussian distribution" -03028216 01 a 01 Aeschylean 0 002 + 10809086 n 0101 \ 10809086 n 0101 | of or relating to or in the manner of Aeschylus -03028338 01 a 01 Alexandrian 0 002 + 10812360 n 0101 \ 10812360 n 0101 | of or relating to Alexander the Great or his empire -03028465 01 a 04 Aristotelian 0 Aristotelean 0 Aristotelic 0 peripatetic 0 009 + 09808080 n 0403 \ 10822338 n 0401 \ 10822338 n 0301 + 09808080 n 0202 + 10822338 n 0201 \ 10822338 n 0201 + 09808080 n 0101 + 10822338 n 0101 \ 10822338 n 0101 | of or relating to Aristotle or his philosophy; "Aristotelean logic" -03028778 01 a 01 Audenesque 0 001 \ 10828233 n 0101 | in the manner of W. H. Auden -03028863 01 a 01 Balzacian 0 002 + 10833111 n 0101 \ 10833111 n 0101 | of or relating to Honore de Balzac or his writings -03028987 01 a 01 Beethovenian 0 003 + 10841405 n 0101 + 07278014 n 0101 \ 10841405 n 0101 | of or relating to Ludwig van Beethoven or his music -03029133 01 a 01 Bismarckian 0 002 + 10851599 n 0101 \ 10851599 n 0101 | of or relating to Prince Otto von Bismarck or his accomplishments -03029274 01 a 01 Bogartian 0 002 + 10855047 n 0101 \ 10855047 n 0101 | of or relating to or in the style of Humphrey Bogart -03029400 01 a 02 Caesarian 1 Caesarean 1 004 + 10878161 n 0201 \ 10878161 n 0201 + 10878161 n 0101 \ 10878161 n 0101 | of or relating to or in the manner of Julius Caesar -03029573 01 a 04 cesarean 0 cesarian 0 caesarean 0 caesarian 0 007 \ 00185778 n 040b + 00185778 n 030b \ 00185778 n 030b + 00185778 n 020a \ 00185778 n 020a + 00185778 n 0109 \ 00185778 n 0109 | relating to abdominal delivery -03029801 01 a 02 Coleridgian 0 Coleridgean 0 004 + 10904821 n 0201 \ 10904821 n 0201 + 10904821 n 0101 \ 10904821 n 0101 | of or relating to Samuel Taylor Coleridge or his writings -03029984 01 a 01 Columbian 0 002 + 10905315 n 0101 \ 10905315 n 0101 | of or relating to Christopher Columbus -03030096 01 a 01 pre-Columbian 0 001 \ 03029984 a 0101 | of or relating to or originating in the Americas before the arrival of Columbus -03030235 01 a 01 Cromwellian 0 002 + 10916105 n 0101 \ 10916105 n 0101 | of or relating to or in the manner of Oliver Cromwell -03030364 01 a 02 Dantean 0 Dantesque 0 003 \ 10922239 n 0201 + 10922239 n 0101 \ 10922239 n 0101 | of or relating to Dante Alighieri or his writings -03030515 01 a 01 Demosthenic 0 002 + 10930428 n 0101 \ 10930428 n 0101 | of or relating to Demosthenes or his oratory -03030635 01 a 01 Deweyan 0 002 + 10932898 n 0101 \ 10932898 n 0101 | of or relating to John Dewey or his philosophy -03030753 01 a 02 Donnean 0 Donnian 0 004 + 10939856 n 0201 \ 10939856 n 0201 + 10939856 n 0101 \ 10939856 n 0101 | of or relating to or in the manner of John Donne -03030919 01 a 02 Dostoevskian 0 Dostoyevskian 0 004 + 10940669 n 0201 \ 10940669 n 0202 + 10940669 n 0102 \ 10940669 n 0102 | of or relating to or in the style of Feodor Dostoevski -03031102 01 a 01 Draconian 0 002 + 10942675 n 0101 \ 10942675 n 0101 | of or relating to Draco or his harsh code of laws; "Draconian measures" -03031247 01 a 01 Einsteinian 0 002 + 10954498 n 0101 \ 10954498 n 0101 | of or relating to Albert Einstein or his theories; "the Einsteinian universe" -03031400 01 a 01 Elizabethan 0 004 + 10050712 n 0101 + 10957330 n 0102 \ 10957330 n 0101 \ 15122648 n 0101 | of or relating to Elizabeth I of England or to the age in which she ruled as queen; "Elizabethan music" -03031615 01 a 01 Erasmian 0 002 + 10959857 n 0101 \ 10959857 n 0101 | of or relating to or in the manner of Erasmus -03031733 01 a 01 Freudian 0 002 + 10982127 n 0101 \ 10982127 n 0101 | of or relating to Sigmund Freud or his psychoanalytic ideas; "Freudian theories" -03031886 01 a 01 Frostian 0 002 + 10983931 n 0101 \ 10983931 n 0101 | of or relating to or in the manner of Robert Frost -03032009 01 a 01 Gandhian 0 002 + 10989339 n 0101 \ 10989339 n 0101 | of or relating to Mahatma Gandhi or his teachings -03032131 01 a 01 Gauguinesque 0 001 \ 10992528 n 0101 | in the manner of Paul Gauguin -03032219 01 a 02 Goethean 0 Goethian 0 004 + 11004106 n 0201 \ 11004106 n 0201 + 11004106 n 0101 \ 11004106 n 0101 | of or relating to or in the manner of Goethe -03032383 01 a 01 Handelian 0 002 + 11027631 n 0101 \ 11027631 n 0101 | of or relating to or in the manner of George Frederick Handel -03032518 01 a 01 Hegelian 0 002 + 11038084 n 0101 \ 11038084 n 0101 | of or relating to Hegel or his dialectic philosophy -03032642 01 a 01 Hemingwayesque 0 001 \ 11039860 n 0101 | in the manner of Ernest Hemingway -03032736 01 a 01 Hitlerian 0 002 + 11052672 n 0101 \ 11052672 n 0101 | of or relating to or suggestive of Adolf Hitler or his Nazi regime in Germany -03032887 01 a 01 Hittite 0 002 \ 10178464 n 0101 \ 06975902 n 0101 | of or relating to the Hittite people or their language or culture -03033024 01 a 01 Hugoesque 0 001 \ 11065345 n 0101 | in the manner of Victor Hugo -03033108 01 a 02 Huxleyan 0 Huxleian 0 004 + 11069534 n 0201 \ 11069534 n 0201 + 11069534 n 0101 \ 11069534 n 0101 | of or relating to Thomas Huxley -03033259 01 a 01 Ibsenian 0 002 + 11070644 n 0101 \ 11070644 n 0101 | of or relating to or in the manner of the playwright Henrik Ibsen -03033397 01 a 01 Proustian 0 002 + 11247298 n 0101 \ 11247298 n 0101 | of or relating to or in the manner of Marcel Proust -03033522 01 a 01 Ptolemaic 0 002 + 11247413 n 0101 \ 11247413 n 0101 | of or relating to the astronomer Ptolemy -03033636 01 a 01 Socratic 0 002 + 11307422 n 0101 \ 11307422 n 0101 | of or relating to Socrates or to his method of teaching; "Socratic teaching" -03033785 01 a 01 Jungian 0 002 + 11094611 n 0101 \ 11094611 n 0101 | of or relating to Carl Jung or his psychological theories -03033914 01 a 01 Kantian 0 002 + 11096508 n 0101 \ 11096508 n 0101 | of or relating to Immanuel Kant or his philosophy -03034035 01 a 01 Keynesian 0 003 + 11103397 n 0101 \ 11103397 n 0101 \ 05995355 n 0101 | of or relating to John Maynard Keynes or to his economic theories -03034192 01 a 01 Kiplingesque 0 001 \ 11105778 n 0101 | in the manner of Rudyard Kipling -03034283 01 a 02 Leibnizian 0 Leibnitzian 0 004 + 11125193 n 0202 \ 11125193 n 0202 + 11125193 n 0101 \ 11125193 n 0101 | of or relating to Gottfried Wilhelm Leibniz or to his mathematics or philosophy -03034487 01 a 01 Leonardesque 0 001 \ 11128394 n 0101 | in the manner of Leonardo da Vinci -03034580 01 a 02 Lincolnesque 0 Lincolnian 0 003 + 11132462 n 0201 \ 11132462 n 0201 \ 11132462 n 0101 | of or relating to or in the manner of Abraham Lincoln -03034741 01 a 01 Lutheran 0 001 \ 11145364 n 0101 | of or pertaining to Martin Luther or his teachings; "the Lutheran doctrine of justification by faith alone" -03034903 01 a 01 Marian 0 002 + 11161412 n 0101 \ 11161412 n 0101 | of or relating to or venerating the Virgin Mary -03035021 01 a 01 Michelangelesque 0 001 \ 11178161 n 0101 | in the manner of Michelangelo -03035113 01 a 02 Muhammadan 0 Mohammedan 0 004 + 10327002 n 0201 \ 11184092 n 0201 + 10327002 n 0103 \ 11184092 n 0103 | of or relating to the Arabian prophet Muhammad or to the religion he founded -03035313 01 a 01 Mosaic 0 001 \ 11193392 n 0101 | of or relating to Moses or the laws and writings attributed to him; "Mosaic Law" -03035446 01 a 01 most-favored-nation 0 001 \ 06773857 n 0101 | of or relating to a commercial treaty where two nations agree to accord each other the same favorable terms that would be offered in treaties with any other nation -03035675 01 a 02 Mozartian 0 Mozartean 0 005 + 11194355 n 0201 + 07278652 n 0201 \ 11194355 n 0201 + 11194355 n 0101 \ 11194355 n 0101 | of or relating to or in the manner of Wolfgang Amadeus Mozart -03035876 01 a 01 Napoleonic 0 002 + 11200276 n 0101 \ 11200276 n 0101 | of or relating to or like Napoleon Bonaparte; "Napoleonic Wars" -03036014 01 a 01 Newtonian 0 003 + 10357012 n 0101 + 11205375 n 0101 \ 11205375 n 0101 | of or relating to or inspired by Sir Isaac Newton or his science; "Newtonian physics" -03036191 01 a 01 Pasteurian 0 002 + 11224877 n 0101 \ 11224877 n 0101 | of or relating to Louis Pasteur or his experiments -03036316 01 a 01 Pavlovian 0 002 + 11227206 n 0101 \ 11227206 n 0101 | of or relating to Ivan Pavlov or his experiments; "Pavlovian conditioning" -03036464 01 a 01 Piagetian 0 002 + 11234292 n 0101 \ 11234292 n 0101 | of or relating to or like or in the manner of Jean Piaget -03036595 01 a 02 eponymous 0 eponymic 0 006 + 06334985 n 0201 + 06334778 n 0201 \ 06334778 n 0201 + 06334985 n 0101 + 06334778 n 0101 \ 06334778 n 0101 | being or relating to or bearing the name of an eponym -03036805 01 a 01 Pythagorean 0 002 + 11250056 n 0101 \ 11250056 n 0101 | of or relating to Pythagoras or his geometry; "Pythagorean philosophy"; "Pythagorean theorem" -03036974 01 a 01 Wagnerian 0 002 + 11369834 n 0101 \ 11369834 n 0101 | of or relating to Richard Wagner or his music -03037093 01 a 01 Washingtonian 0 003 + 09746189 n 0101 + 09152944 n 0101 \ 09152944 n 0101 | of or relating to or in the state of Washington -03037236 01 a 01 Washingtonian 1 003 + 09746314 n 0101 + 09070793 n 0101 \ 09070793 n 0101 | of or relating to the capital of the United States; "Washingtonian museums" -03037407 01 a 01 Washingtonian 2 002 + 08357129 n 0102 \ 08357129 n 0102 | of or relating to the people who run the federal government; "Washingtonian politics as usual" -03037579 01 a 01 Washingtonian 3 002 + 11375418 n 0101 \ 11375418 n 0101 | of or relating to or in the manner of George Washington -03037712 01 a 01 Rembrandtesque 0 001 \ 11257932 n 0101 | in the manner of Rembrandt -03037799 01 a 01 Riemannian 0 002 + 11262168 n 0101 \ 11262168 n 0101 | of or relating to Riemann's non-Euclidean geometry -03037924 01 a 01 Rooseveltian 0 002 + 11270023 n 0101 \ 11270023 n 0101 | of or relating to or like or in the manner of Franklin Roosevelt -03038065 01 a 01 Senecan 0 002 + 11292391 n 0101 \ 11292391 n 0101 | of or relating to or like or in the manner of the Roman Seneca -03038199 01 a 02 Stravinskyan 0 Stravinskian 0 005 + 11321841 n 0201 \ 11321841 n 0201 + 11321841 n 0101 + 07278775 n 0101 \ 11321841 n 0101 | of or relating to or like or in the manner of Stravinsky -03038401 01 a 01 Thoreauvian 0 002 + 11340992 n 0101 \ 11340992 n 0101 | relating to or like or in the manner of Henry David Thoreau -03038536 01 a 02 Voltarian 0 Voltarean 0 004 + 11368638 n 0201 \ 11368638 n 0201 + 11368638 n 0101 \ 11368638 n 0101 | in the manner of Voltaire -03038683 01 a 01 Wordsworthian 0 002 + 11397657 n 0101 \ 11397657 n 0101 | in the manner of William Wordsworth -03038796 01 a 01 Wittgensteinian 0 001 \ 11393828 n 0101 | in the manner of Ludwig Wittgenstein -03038894 01 a 01 Yeatsian 0 002 + 11402463 n 0101 \ 11402463 n 0101 | in the manner of William Butler Yeats -03039004 01 a 01 Zolaesque 0 001 \ 11407591 n 0101 | in the manner of Emile Zola -03039087 01 a 03 Hebraic 0 Hebraical 0 Hebrew 0 006 + 06987124 n 0301 \ 06987124 n 0301 + 09681351 n 0202 \ 06987124 n 0201 + 06987124 n 0101 \ 06987124 n 0101 | of or relating to the language of the Hebrews; "Hebrew vowels" -03039314 01 a 03 Hebraic 1 Hebraical 1 Hebrew 1 006 + 09681351 n 0302 \ 09681351 n 0302 + 09681351 n 0202 \ 09681351 n 0202 + 09681351 n 0102 \ 09681351 n 0102 | of or relating to or characteristic of the Hebrews; "the old Hebrew prophets" -03039556 01 a 01 monocarpic 0 001 \ 11686780 n 0101 | dying after bearing fruit only once -03039648 01 a 01 puerperal 0 005 + 15142568 n 0101 + 10492086 n 0101 \ 13448334 n 0101 \ 15142568 n 0101 \ 10492086 n 0101 | relating to or connected with or occurring at the time of childbirth or shortly following, or to the woman who has just given birth -03039907 01 a 01 acetic 0 001 \ 14599168 n 0101 | relating to or containing acetic acid -03039997 01 a 01 actinic 0 002 + 04917292 n 0101 \ 04917292 n 0101 | relating to or exhibiting actinism -03040103 01 a 02 aldermanic 0 aldermanly 0 004 + 09782397 n 0201 \ 09782397 n 0201 + 09782397 n 0101 \ 09782397 n 0101 | of or relating to or like an alderman -03040264 01 a 02 alexic 0 word-blind 0 003 \ 14099050 n 0203 + 09782855 n 0101 \ 14099050 n 0102 | of or relating to or symptomatic of alexia -03040408 01 a 01 dyslexic 0 002 + 14099643 n 0101 \ 14099643 n 0101 | of or relating to or symptomatic of dyslexia -03040525 01 a 01 monochromatic 0 002 + 14155274 n 0102 \ 14155274 n 0102 | of or relating to monochromatism -03040635 01 a 01 Moravian 0 001 \ 08758679 n 0101 | of or relating to the people or culture of Moravia -03040740 01 a 01 dichromatic 0 002 + 14153616 n 0102 \ 14153616 n 0102 | of or relating to dichromatism -03040846 01 a 01 ambassadorial 0 002 + 09787534 n 0101 \ 09787534 n 0101 | of or relating to or characteristic of ambassadors -03040974 01 a 06 amoebic 0 amebic 0 amoeban 0 ameban 0 amoebous 0 amebous 0 012 + 01392380 n 0601 \ 01392380 n 0602 + 01392380 n 0502 \ 01392380 n 0502 + 01392380 n 0401 \ 01392380 n 0402 + 01392380 n 0302 \ 01392380 n 0302 + 01392380 n 0201 \ 01392380 n 0202 + 01392380 n 0102 \ 01392380 n 0102 | pertaining to or resembling amoebae; "amoebic dysentery" -03041331 01 a 02 anemic 0 anaemic 0 004 + 14195315 n 0202 \ 14195315 n 0201 + 14195315 n 0101 \ 14195315 n 0101 | relating to anemia or suffering from anemia -03041491 01 a 02 anaesthetic 0 anesthetic 0 003 \ 14023491 n 0201 + 00021065 v 0102 \ 14023491 n 0102 | relating to or producing insensibility -03041636 01 a 01 ablative 0 002 ;c 06172789 n 0000 \ 06312418 n 0101 | relating to the ablative case -03041739 01 a 01 accusatorial 0 004 + 06730780 n 0101 + 07234230 n 0101 ! 03042005 a 0101 \ 09762385 n 0101 | specifically indicating a form of prosecution in which one is publicly accused of and tried for a crime and in which the judge is not also the prosecutor -03042005 01 a 01 inquisitorial 0 003 + 10208287 n 0101 ! 03041739 a 0101 \ 10208287 n 0101 | especially indicating a form of prosecution in which proceedings are secret and the accused is questioned by a prosecutor who acts also as the judge -03042249 01 a 01 West_African 0 002 + 06996309 n 0101 \ 09178310 n 0101 | of or relating to the countries or cultures or people of West Africa -03042394 01 a 02 Afrikaans 0 Afrikaner 0 004 + 09635635 n 0201 \ 08999482 n 0201 + 06952861 n 0101 \ 08999482 n 0101 | belonging or relating to white people of South Africa whose ancestors were Dutch or to their language; "an Afrikaans couple"; "Afrikaner support" -03042661 01 a 01 aneroid 0 002 + 02710600 n 0102 \ 02710600 n 0102 | containing no liquid or actuated without the use of liquid; "aneroid barometer" -03042812 01 a 01 Angolan 0 003 + 09690621 n 0101 + 08707917 n 0101 \ 08707917 n 0101 | of or relating to or characteristic of Angola or its people; "the Angolan Civil War" -03042986 01 a 01 Anguillan 1 003 + 09690864 n 0101 + 08708742 n 0101 \ 08708742 n 0101 | of or relating to or characteristic of Anguilla or its people; "Anguillan sea food specialties" -03043173 01 a 03 prenuptial 0 premarital 0 antenuptial 0 004 \ 07452074 n 0301 \ 07452074 n 0201 ! 03043371 a 0101 \ 07452074 n 0101 | relating to events before a marriage; "prenuptial agreement" -03043371 01 a 01 postnuptial 0 002 ! 03043173 a 0101 \ 07452074 n 0101 | relating to events after a marriage -03043482 01 a 02 anti-semitic 0 antisemitic 0 004 + 06203956 n 0202 \ 06203956 n 0202 + 06203956 n 0101 \ 06203956 n 0101 | relating to or characterized by anti-Semitism; hating Jews -03043667 01 a 01 Antiguan 1 003 + 09691024 n 0101 + 08709945 n 0101 \ 08709945 n 0101 | of or relating to or characteristic of Antigua or its people; "Antiguan islands" -03043838 01 a 01 antiquarian 0 001 \ 02723754 n 0101 | of or relating to antiques or antiquities -03043937 01 a 01 antiquarian 1 002 + 09797606 n 0102 \ 09797606 n 0102 | of or relating to persons who study or deal in antiques or antiquities -03044083 01 a 02 appellate 0 appellant 0 006 ;c 08441203 n 0000 + 09800469 n 0201 + 02497824 v 0201 + 02497586 v 0201 \ 01185611 n 0201 \ 01185611 n 0101 | of or relating to or taking account of appeals (usually legal appeals); "appellate court" -03044331 01 a 01 anecdotal 0 002 + 07220586 n 0101 \ 07220586 n 0101 | having the character of an anecdote; "anecdotal evidence" -03044462 01 a 01 Arabian 0 002 + 02379908 n 0101 \ 02379908 n 0102 | of or relating to Arabian horses -03044566 01 a 01 Arabian 1 003 + 09729530 n 0102 + 08847694 n 0102 \ 08847694 n 0102 | relating to or associated with Arabia or its people; "Arabian Nights"; "Arabian Sea" -03044740 01 a 01 Arabic 0 002 + 06988057 n 0101 \ 09729530 n 0101 | relating to or characteristic of Arabs; "Arabic languages" -03044869 01 a 02 arithmetical 0 arithmetic 0 004 + 06004067 n 0201 \ 06004067 n 0201 + 06004067 n 0101 \ 06004067 n 0101 | relating to or involving arithmetic; "arithmetical computations" -03045059 01 a 01 armorial 0 002 ;c 05801594 n 0000 \ 03058726 n 0102 | of or relating to heraldry or heraldic arms; "armorial bearing" -03045196 01 a 01 aspectual 0 003 ;c 06172789 n 0000 + 13804669 n 0101 \ 13804669 n 0101 | of or belonging to an aspect (as an aspect of the verb); "the aspectual system of Greek" -03045377 01 a 01 asphyxiated 0 001 \ 14042423 n 0101 | in a state of asphyxia -03045457 01 a 01 audio-lingual 0 000 | of or relating to a method of teaching language that focuses on listening and speaking -03045585 01 a 01 Augustan 0 002 + 10828990 n 0101 \ 10828990 n 0101 | relating to or characteristic of the times of the Roman Emperor Augustus; "the Augustan Age" -03045750 01 a 01 Australian 0 004 + 09691279 n 0101 + 06940290 n 0101 + 08831004 n 0101 \ 09211266 n 0101 | of or relating to or characteristic of Australia or its inhabitants or its languages; "Australian deserts"; "Australian aborigines" -03045992 01 a 01 Bahamian 0 003 + 09691729 n 0101 + 08847268 n 0101 \ 08847268 n 0101 | of or relating to or characteristic of the Bahama Islands or their inhabitants; "Bahamian population" -03046184 01 a 01 Bahraini 0 002 + 09691858 n 0101 \ 08848421 n 0101 | of or relating to or characteristic of Bahrain or its people or language; "Bahraini beaches" -03046349 01 a 02 Bangladeshi 0 East_Pakistani 0 003 \ 08848731 n 0201 + 09691994 n 0101 \ 08848731 n 0101 | of or relating to or characteristic of Bangladesh or its people or language; "Bangladeshi dialects" -03046559 01 a 01 Bantoid 0 001 \ 06991980 n 0101 | relating to or designating languages that possess characteristics of Bantu; "Bantoid languages" -03046708 01 a 01 Bantu 0 003 + 09692624 n 0101 + 06991980 n 0101 \ 09692624 n 0101 | of or relating to the African people who speak one of the Bantoid languages or to their culture; "the Bantu population of Sierra Leone" -03046931 01 a 01 Bantu-speaking 0 001 \ 06991980 n 0101 | of or relating to people who speak Bantu; "the Bantu-speaking people of Africa" -03047071 01 a 01 baptismal 0 002 + 01037819 n 0101 \ 01037819 n 0101 | of or relating to baptism; "baptismal font" -03047188 01 a 01 Barbadian 0 004 + 09693982 n 0101 + 08755436 n 0101 + 08755214 n 0101 \ 08755214 n 0101 | of or relating to or characteristic of Barbados or its inhabitants; "a Barbadian vacation" -03047388 01 a 01 bardic 0 001 \ 09839022 n 0101 | being a bard or relating to a bard's poetry; "bardic poetry" -03047501 01 a 01 Benedictine 0 002 + 10112434 n 0101 \ 10112434 n 0101 | of or relating to the Benedictines -03047611 01 a 01 Benedictine 1 001 \ 10843858 n 0101 | of or relating to Saint Benedict or his works -03047714 01 a 01 Bengali 0 004 + 09692430 n 0101 + 08483353 n 0101 + 06970946 n 0101 \ 08710535 n 0101 | of or relating to or characteristic of Bengal or its people; "Bengali hills" -03047898 01 a 01 Beninese 0 002 + 09694269 n 0101 \ 08759420 n 0101 | of or relating to or characteristic of Benin or its people; "Benin bronzes" -03048046 01 a 01 Bermudan 0 002 + 09694392 n 0101 \ 08710678 n 0101 | of or relating to or characteristic of Bermuda or its inhabitants; "Bermudan beaches" -03048204 01 a 01 Bhutanese 0 002 + 09694529 n 0101 \ 08852209 n 0101 | of or pertaining to or characteristic of Bhutan or its people or culture or language; "Bhutanese Buddhists" -03048385 01 a 01 bilabial 0 002 + 07117333 n 0101 \ 02754417 a 0101 | of or relating to or being a speech sound that is articulated using both lips; "bilabial fricatives" -03048558 01 a 01 binomial 0 001 + 06036506 n 0101 | of or relating to or consisting of two terms; "binomial expression" -03048680 01 a 02 biographic 0 biographical 0 003 + 06515827 n 0201 \ 06515827 n 0201 \ 06515827 n 0101 | of or relating to or being biography; "biographical data" -03048845 01 a 01 bituminous 0 002 + 14911530 n 0101 \ 14911530 n 0101 | resembling or containing bitumen; "bituminous coal" -03048971 01 a 02 bituminoid 0 bitumenoid 0 002 \ 14911530 n 0201 \ 14911530 n 0101 | like bitumen -03049071 01 a 02 bivalent 1 divalent 0 003 ;c 06084469 n 0000 \ 05034473 n 0201 \ 05034473 n 0101 | having a valence of two or having two valences -03049220 01 a 01 bivariate 0 002 ;c 06000644 n 0000 \ 05857459 n 0101 | having two variables; "bivariate binomial distribution" -03049350 01 a 02 bladdery 0 bladderlike 0 003 \ 02848118 n 0201 + 05512139 n 0101 \ 02848118 n 0101 | resembling a bladder -03049475 01 a 01 bladed 1 001 \ 04373894 n 0102 | bearing or characterized by a blade or sword; often used in combination; "he fought on, broken-bladed but unbowed" -03049642 01 a 01 bladed 2 002 ;c 06066555 n 0000 \ 13131883 n 0101 | having a blade or blades; often used in combination; "a single-bladed leaf"; "narrow-bladed grass" -03049812 01 a 03 blastemal 0 blastematic 0 blastemic 0 006 + 05431402 n 0301 \ 05431402 n 0301 + 05431402 n 0201 \ 05431402 n 0201 + 05431402 n 0101 \ 05431402 n 0101 | of or relating to blastemata -03050012 01 a 01 blastocoelic 0 004 + 01459242 n 0102 + 01459242 n 0101 + 01459242 n 0103 \ 01459242 n 0101 | of or relating to a segmentation cavity -03050164 01 a 02 blastodermatic 0 blastodermic 0 004 + 01459480 n 0201 \ 01459480 n 0201 + 01459480 n 0101 \ 01459480 n 0101 | of or relating to a blastoderm -03050324 01 a 01 blastomeric 0 002 + 01459664 n 0101 \ 01459664 n 0101 | of or relating to a blastomere -03050430 01 a 01 blastomycotic 0 002 + 14125159 n 0101 \ 14125159 n 0101 | of or relating to or characteristic of blastomycosis -03050560 01 a 02 blastoporal 0 blastoporic 0 004 + 01463115 n 0201 \ 01463115 n 0201 + 01463115 n 0101 \ 01463115 n 0101 | of or relating to a blastopore -03050716 01 a 02 blastospheric 0 blastular 0 004 + 01461646 n 0201 \ 01461646 n 0201 + 01461646 n 0102 \ 01461646 n 0102 | of or relating to a blastula -03050870 01 a 02 boric 0 boracic 0 003 \ 14631871 n 0201 + 14631871 n 0101 \ 14631871 n 0101 | of or relating to or derived from or containing boron; "boric acid" -03051035 01 a 01 Bruneian 0 002 + 08896092 n 0101 \ 08896092 n 0101 | of or relating to or characteristic of Brunei or its people; "Bruneian oil production" -03051194 01 a 01 bubonic 0 002 + 14315722 n 0101 \ 14315722 n 0101 | of or evidencing buboes; "bubonic plague" -03051307 01 a 01 Bulgarian 0 004 + 09695620 n 0101 + 06945569 n 0101 + 08714132 n 0101 \ 08714132 n 0101 | of or relating to or characteristic of Bulgaria or its people; "the Bulgarian capital is Sofia" -03051512 01 a 01 bungaloid 0 001 \ 02919792 n 0101 | characterized by bungalows; "the bungaloid suburbs" -03051619 01 a 01 bureaucratic 0 005 + 08009659 n 0101 + 08051565 n 0101 + 08456727 n 0101 \ 09880427 n 0101 \ 08456727 n 0101 | of or relating to or resembling a bureaucrat or bureaucracy; "his bureaucratic behavior annoyed his colleagues"; "a bureaucratic nightmare" -03051889 01 a 01 burglarious 0 002 + 00785045 n 0101 \ 00785045 n 0101 | involving or resembling burglary; "burglarious tools" -03052018 01 a 01 Burmese 0 003 + 09695747 n 0101 + 06932435 n 0101 \ 08715390 n 0101 | of or relating to or characteristic of Myanmar or its people; "the Burmese capital"; "Burmese tonal languages" -03052218 01 a 02 Burundi 0 Burundian 0 003 + 08716219 n 0201 \ 08716219 n 0201 \ 08716219 n 0101 | of or relating to or characteristic of Burundi or its people; "the Burundi capital" -03052403 01 a 01 Californian 0 003 + 09741612 n 0101 + 09060768 n 0101 \ 09060768 n 0101 | of or relating to or characteristic of California or its inhabitants; "Californian beaches" -03052588 01 a 01 Cameroonian 0 003 + 09696456 n 0101 + 08717209 n 0101 \ 08717209 n 0101 | of or relating to or characteristic of Cameroon or its people; "the Cameroonian capital" -03052770 01 a 01 cannibalistic 0 004 + 00412839 n 0101 + 09891079 n 0101 \ 09891079 n 0101 \ 00412839 n 0101 | characteristic of cannibals or exhibiting cannibalism; "cannibalistic behavior" -03052963 01 a 01 cantonal 0 001 \ 08725454 n 0104 | of or relating to a canton -03053044 01 a 01 carboniferous 2 002 + 15127307 n 0101 \ 15127307 n 0101 | of or relating to the Carboniferous geologic era; "carboniferous rock system" -03053199 01 a 01 Carmelite 0 002 + 10778148 n 0101 \ 10778148 n 0101 | of or relating to the Carmelite friars; "Carmelite monasteries" -03053336 01 a 01 carpal 0 002 + 05584928 n 0102 \ 05584928 n 0102 | of or relating to the wrist; "Carpal tunnel syndrome" -03053460 01 a 02 casuistic 0 casuistical 0 004 + 09899929 n 0201 \ 06160055 n 0201 + 06160055 n 0101 \ 06160055 n 0101 | of or relating to the use of ethical principles to resolve moral problems -03053657 01 a 02 casuistic 1 casuistical 1 004 + 09899929 n 0201 \ 06160244 n 0201 + 06160244 n 0101 \ 06160244 n 0101 | of or relating to or practicing casuistry; "overly subtle casuistic reasoning" -03053859 01 a 01 Catalan 0 003 + 06967529 n 0101 + 09028062 n 0101 \ 06967529 n 0101 | relating to or characteristic of the Catalan language; "Catalan poetry" -03054020 01 a 01 Catalan 1 003 + 09900284 n 0101 + 09028062 n 0101 \ 09028062 n 0101 | relating to or denoting or characteristic of Catalonia or its inhabitants; "Catalan independence movement" -03054216 01 a 01 cataleptic 0 003 + 09900391 n 0101 + 14070206 n 0101 \ 14070206 n 0101 | of or having characteristics of or affected with catalepsy; "cataleptic persons"; "cataleptic state" -03054409 01 a 01 catalytic 0 002 + 13444131 n 0101 \ 13444131 n 0101 | relating to or causing or involving catalysis; "catalytic reactions" -03054551 01 a 01 catatonic 0 004 ;c 06043075 n 0000 + 14545045 n 0101 + 14399116 n 0103 \ 14545045 n 0101 | characterized by catatonia especially either rigidity or extreme laxness of limbs -03054743 01 a 01 Chadian 0 003 + 09697650 n 0101 + 08720037 n 0101 \ 08720037 n 0101 | of or relating to or characteristic of the Republic of Chad or its people or language; "the Chadian desert"; "Chad soldiers"; "Chadian folktales" -03054978 01 a 01 citric 0 001 \ 14812872 n 0101 | of or related to citric acid -03055059 01 a 01 citrous 0 002 + 07747055 n 0101 \ 07747055 n 0101 | of or relating to or producing fruit of the plants of the genus Citrus; "the citrus production of Florida" -03055237 01 a 01 citrous 1 002 + 12707781 n 0101 \ 12707781 n 0101 | of or relating to plants of the genus Citrus; "a citrous disease" -03055374 01 a 02 climatic 0 climatical 0 004 + 14519366 n 0201 \ 14519366 n 0201 + 14519366 n 0101 \ 14519366 n 0101 | of or relating to a climate; "climatic changes" -03055543 01 a 01 Cockney 0 001 \ 09704770 n 0101 | relating to or resembling a cockney; "Cockney street urchins" -03055658 01 a 01 cockney 1 003 + 09704770 n 0101 + 06948017 n 0101 \ 06948017 n 0101 | characteristic of Cockneys or their dialect; "cockney vowels" -03055809 01 a 02 commemorative 0 commemorating 0 005 \ 07452841 n 0201 + 00612612 v 0101 + 00612042 v 0101 + 00611481 v 0101 \ 07452841 n 0101 | intended as a commemoration; "a commemorative plaque" -03056010 01 a 01 concessive 0 002 + 00806049 v 0101 \ 07216412 n 0101 | of or pertaining to concession -03056115 01 a 01 Congolese 0 002 + 09698644 n 0101 \ 08734385 n 0101 | of or relating to or characteristic of the Congo region or its people; "Congolese rulers"; "the Congolese republic" -03056304 01 a 01 consular 0 004 + 03093427 n 0101 + 09959797 n 0101 \ 09959797 n 0101 \ 03093427 n 0101 | having to do with a consul or his office or duties -03056463 01 a 01 Coptic 0 004 + 06990371 n 0101 + 09700706 n 0101 + 09681234 n 0101 \ 09681234 n 0101 | of or relating to the Copts or their church or language or art; "the distinctive Coptic art of 6th-century Christian Egypt" -03056693 01 a 01 Costa_Rican 0 002 + 08736107 n 0101 \ 08736107 n 0101 | of or relating to Costa Rica or its people; "the Costa Rican rain forest"; "our Costa Rican neighbors" -03056871 01 a 04 creaseproof 0 wrinkleproof 0 crease-resistant 0 wrinkle-resistant 0 004 \ 13905792 n 0401 \ 13905792 n 0303 \ 13905792 n 0201 \ 13905792 n 0103 | of fabric that does not wrinkle easily -03057075 01 a 02 creedal 0 credal 0 006 + 06789411 n 0204 + 05959954 n 0201 \ 06789411 n 0204 + 06789411 n 0104 + 05959954 n 0101 \ 06789411 n 0104 | of or relating to a creed -03057253 01 a 01 Creole 1 001 \ 09709531 n 0101 | of or relating to or characteristic of native-born persons of French descent in Louisiana; "Creole cooking" -03057413 01 a 01 Creole 2 001 \ 06905358 n 0101 | of or relating to a language that arises from contact between two other languages and has features of both; "Creole grammars" -03057591 01 a 01 Cretaceous 0 002 + 15126361 n 0101 \ 15126361 n 0101 | of or relating to or denoting the third period of the Mesozoic era -03057732 01 a 01 cretaceous 1 001 \ 14806598 n 0101 | abounding in chalk -03057807 01 a 01 cybernetic 0 002 + 06142598 n 0101 \ 06142598 n 0101 | of or relating the principles of cybernetics; "cybernetic research" -03057949 01 a 03 cyclonic 0 cyclonal 0 cyclonical 0 007 + 11443721 n 0301 \ 11443721 n 0301 + 11443721 n 0201 \ 11443721 n 0201 + 14521302 n 0101 + 11443721 n 0101 \ 11443721 n 0101 | of or relating to or characteristic of a violent tropical storm; "cyclonic destruction" -03058223 01 a 03 cyclonic 1 cyclonal 1 cyclonical 1 006 ;c 06118563 n 0000 + 14521302 n 0301 + 14521302 n 0201 + 14521302 n 0101 + 11443721 n 0101 \ 14521302 n 0101 | of or relating to or characteristic of the atmosphere around a low pressure center; "cyclonic cloud pattern" -03058501 01 a 01 cyclopean 0 002 + 09490572 n 0101 \ 09490572 n 0101 | of or relating to or resembling the Cyclops; "Cyclopean eye" -03058635 01 a 01 cyclothymic 0 002 + 14392862 n 0101 \ 14392862 n 0101 | of or relating to or exhibiting cyclothymia -03058754 01 a 03 Cyprian 0 Cypriote 0 Cypriot 0 007 + 09699020 n 0301 \ 08756735 n 0301 + 09699020 n 0202 \ 08756735 n 0201 + 09699020 n 0103 + 08756884 n 0101 \ 08756735 n 0101 | of or relating to Cyprus or its people or culture; "Cypriot expatriates"; "Cypriote monasteries" -03059033 01 a 01 Cyrillic 0 002 + 06499796 n 0102 \ 06499796 n 0102 | relating to or written in the alphabet used for writing Slavic languages; "Cyrillic writing" -03059198 01 a 01 dacitic 0 002 + 14726823 n 0101 \ 14726823 n 0101 | relating to or consisting of dacite; "dacitic magma is highly viscous" -03059340 01 a 01 dactylic 0 003 ;c 06170025 n 0000 + 07095148 n 0101 \ 07095148 n 0101 | of or consisting of dactyls; "dactylic meter" -03059477 01 a 01 daisylike 0 001 \ 11939491 n 0101 | resembling a daisy -03059551 01 a 01 Dalmatian 0 003 + 09988918 n 0101 + 08819223 n 0101 \ 08819223 n 0101 | of or relating to Dalmatia or its inhabitants -03059688 01 a 01 damascene 0 002 + 09733580 n 0101 \ 09033936 n 0102 | of or relating to or characteristic of Damascus or its people; "damascene city gates" -03059847 01 a 01 defervescent 0 002 + 07368482 n 0101 \ 07368482 n 0101 | of or relating to the reduction of a fever -03059966 01 a 01 departmental 0 003 + 08548733 n 0101 + 08114861 n 0101 \ 08114861 n 0101 | of or relating to a department; "departmental policy" -03060114 01 a 01 interdepartmental 0 002 ! 03060257 a 0101 \ 08114861 n 0101 | between or among departments; "interdepartmental competition" -03060257 01 a 01 intradepartmental 0 002 ! 03060114 a 0101 \ 08114861 n 0101 | within a department; "intradepartmental memos" -03060385 01 a 01 digestive 0 003 + 01197338 v 0101 + 00481555 v 0101 \ 13465809 n 0101 | relating to or having the power to cause or promote digestion; "digestive juices"; "a digestive enzyme"; "digestive ferment" -03060601 01 a 02 Delphic 0 Delphian 0 003 + 08786855 n 0201 \ 08786855 n 0201 \ 08786855 n 0101 | of or relating to Delphi or to the oracles of Apollo at Delphi; "Delphic oracle" -03060782 01 a 02 demagogic 0 demagogical 0 004 + 07187297 n 0202 \ 10001481 n 0201 + 07187297 n 0102 \ 10001481 n 0101 | characteristic of or resembling a demagogue; "demagogic speeches" -03060971 01 a 01 diabetic 0 002 + 14117805 n 0101 \ 14117805 n 0101 | of or relating to or causing diabetes -03061081 01 a 01 disciplinary 0 002 + 05996646 n 0101 \ 05996646 n 0101 | relating to a specific field of academic study; "economics in its modern disciplinary sense" -03061250 01 a 01 interdisciplinary 0 001 \ 05996646 n 0101 | drawing from or characterized by participation of two or more fields of study; "interdisciplinary studies"; "an interdisciplinary conference" -03061455 01 a 01 disciplinary 1 003 + 04881623 n 0101 + 01161821 n 0101 \ 04881623 n 0101 | relating to discipline in behavior; "disciplinary problems in the classroom" -03061626 01 a 01 divisional 0 002 + 08213205 n 0101 \ 08213205 n 0101 | of or relating to a military division; "divisional artillery" -03061762 01 a 01 Djiboutian 0 003 + 09700125 n 0101 + 08762495 n 0101 \ 08762495 n 0101 | of or relating to Djibouti or its people or culture; "Djiboutian landscape"; "Djiboutian merchants"; "a Djiboutian storyteller" -03061982 01 a 01 dogmatic 1 002 + 05960464 n 0101 \ 05960464 n 0101 | of or pertaining to or characteristic of a doctrine or code of beliefs accepted as authoritative -03062151 01 a 01 dolomitic 0 003 + 14673747 n 0101 + 14838055 n 0101 \ 14838055 n 0101 | relating to or consisting of dolomite -03062280 01 a 01 domiciliary 0 003 + 08559155 n 0101 + 03259505 n 0103 \ 03259505 n 0103 | of or relating to or provided in a domicile; "domiciliary medical care"; "domiciliary caves" -03062466 01 a 01 Dominican 0 001 \ 10778345 n 0101 | of or relating to Saint Dominic or the Dominican order; "Dominican monks" -03062595 01 a 01 Dominican 1 001 \ 08752021 n 0101 | of or relating to or characteristic of the Dominican Republic or its people; "the Dominican population" -03062754 01 a 01 ducal 0 003 + 10038778 n 0101 + 10038620 n 0101 \ 10038778 n 0101 | of or belonging to or suitable for a duke; "ducal palace" -03062899 01 a 01 ductless 0 001 \ 05250659 n 0101 | not having a duct; "ductless glands" -03062990 01 a 01 Edwardian 0 003 + 10046387 n 0101 + 10951459 n 0101 \ 10951459 n 0102 | of or relating to or characteristic of the era of Edward VII in England; "Edwardian furniture" -03063176 01 a 01 elocutionary 0 002 + 07083246 n 0101 \ 07083246 n 0101 | of or relating to elocution; "elocutionary recitals" -03063305 01 a 02 empiric 0 empirical 0 005 ;u 07073447 n 0000 + 00633108 n 0202 \ 00633108 n 0201 + 00633108 n 0102 \ 00633108 n 0101 | relying on medical quackery; "empiric treatment" -03063492 01 a 01 endometrial 0 002 + 05519820 n 0101 \ 05519820 n 0101 | of or relating to the endometrium -03063601 01 a 01 endoscopic 0 003 + 00642045 n 0101 + 03286572 n 0101 \ 00642045 n 0101 | of or relating to endoscopy -03063721 01 a 02 enteric 0 enteral 0 004 + 05532641 n 0201 \ 05532641 n 0201 + 05532641 n 0101 \ 05532641 n 0101 | of or relating to the enteron -03063868 01 a 02 entomological 0 entomologic 0 004 + 06072275 n 0201 \ 06072275 n 0201 + 06072275 n 0101 \ 06072275 n 0101 | of or relating to the biological science of entomology; "entomological research" -03064076 01 a 02 entozoan 0 endozoan 0 005 + 01385017 n 0205 \ 01385017 n 0205 + 01385017 n 0103 + 01385017 n 0104 \ 01385017 n 0104 | of or relating to entozoa -03064239 01 a 02 epizoan 0 ectozoan 0 004 + 01385330 n 0203 \ 01385330 n 0203 + 01385330 n 0105 \ 01385330 n 0105 | of or relating to epizoa -03064382 01 a 01 entrepreneurial 0 002 + 10060352 n 0101 \ 10060352 n 0101 | of or relating to an entrepreneur; "entrepreneurial risks" -03064520 01 a 01 Eritrean 0 003 + 09705784 n 0101 + 08777544 n 0101 \ 08777544 n 0101 | of or relating to or characteristic of Eritrea or its people; "Eritrean civil war" -03064693 01 a 01 Ethiopian 0 003 + 09705124 n 0101 + 08778061 n 0101 \ 08778061 n 0101 | of or relating to or characteristic of Ethiopia or its people or languages; "Ethiopian immigrants" -03064883 01 a 02 ethnographic 0 ethnographical 0 003 + 06146546 n 0201 \ 06146546 n 0201 \ 06146546 n 0101 | of or relating to ethnography; "ethnographical data" -03065047 01 a 02 ethnological 0 ethnologic 0 004 + 06146880 n 0201 \ 06146880 n 0201 + 06146880 n 0101 \ 06146880 n 0101 | of or relating to ethnology; "ethnological field work" -03065227 01 a 02 euclidian 0 euclidean 0 004 + 10962302 n 0201 \ 10962302 n 0201 + 10962302 n 0101 \ 10962302 n 0101 | relating to geometry as developed by Euclid; "Euclidian geometry" -03065414 01 a 01 Fabian 0 001 \ 06220819 n 0101 | of or relating to Fabianism; "the Fabian society" -03065516 01 a 02 fatalist 0 fatalistic 0 004 + 05971394 n 0201 \ 05971394 n 0201 + 10080508 n 0101 \ 05971394 n 0101 | of or relating to fatalism; "a fatalist person" -03065685 01 a 02 faecal 0 fecal 0 002 + 14854262 n 0204 + 14854262 n 0103 | of or relating to feces; "fecal matter" -03065804 01 a 01 feudatory 0 002 + 10746581 n 0105 \ 04877938 n 0102 | of or pertaining to the relation of a feudal vassal to his lord; "a feudatory relationship" -03065969 01 a 01 Fijian 0 004 + 09705909 n 0101 + 06938623 n 0101 + 08779149 n 0101 \ 08779149 n 0101 | of or relating to Fiji or its people or language or culture; "the Fijian population"; "Fijian folktales" -03066180 01 a 02 Filipino 0 Philippine 0 005 + 06939756 n 0201 \ 08981244 n 0201 + 09727440 n 0101 + 06939756 n 0102 \ 08981244 n 0101 | of or relating to or characteristic of the Philippines or its people or customs; "the Philippine President"; "our Filipino cook" -03066448 01 a 01 Flemish 0 003 + 08483788 n 0101 + 06952705 n 0101 \ 08849549 n 0101 | of or relating to Flanders or its people or language or culture; "the Flemish population of Belgium"; "Flemish painters" -03066658 01 a 01 Franciscan 0 002 + 10978098 n 0105 \ 10978098 n 0101 | of or relating to Saint Francis of Assisi or to the order founded by him; "Franciscan monks" -03066825 01 a 01 Gabonese 0 002 + 09710041 n 0101 \ 08945529 n 0101 | of or relating to Gabon or its inhabitants; "Gabonese hills"; "Gabonese writers" -03066978 01 a 01 Gallic 0 002 + 09688487 n 0101 \ 08929722 n 0101 | of or pertaining to Gaul or the Gauls; "Ancient Gallic dialects"; "Gallic migrations"; "the Gallic Wars" -03067153 01 a 01 Gambian 0 003 + 09747495 n 0101 + 08945821 n 0101 \ 08945821 n 0101 | of or relating to or characteristic of Gambia or its inhabitants; "Gambian game parks" -03067329 01 a 02 genealogic 0 genealogical 0 004 + 08102402 n 0201 \ 08102402 n 0201 + 05998225 n 0101 \ 08102402 n 0101 | of or relating to genealogy; "genealogical records" -03067506 01 a 01 Georgian 0 005 + 10995592 n 0101 + 10995292 n 0101 + 10995115 n 0101 + 10994906 n 0101 \ 10996285 n 0101 | of or relating to the Hanoverian kings of England; "the first Georgian monarch" -03067712 01 a 01 Georgian 4 003 + 09742443 n 0101 + 09075842 n 0101 \ 09075842 n 0101 | of or relating to or characteristic of the American state of Georgia or its inhabitants; "the Georgian state capital is Atlanta"; "Georgian peach farmers" -03067957 01 a 01 Georgian 5 002 + 09018848 n 0101 \ 09018848 n 0101 | of or relating to or characteristic of the Asian republic of Georgia or its people or language; "the Georgian capital is Tbilisi"; "Georgian farmers"; "Georgian vowels" -03068198 01 a 01 Georgian 6 001 \ 09076421 n 0101 | of or relating to the former British colony of Georgia; "the Georgian colony" -03068330 01 a 01 Germanic 0 002 + 06950528 n 0101 \ 06946497 n 0101 | of or relating to the language of Germans; "the Germanic sound shifts" -03068473 01 a 03 Ghanaian 0 Ghanese 0 Ghanian 0 006 + 09748889 n 0301 + 08946187 n 0301 \ 08946187 n 0301 \ 08946187 n 0201 + 08946187 n 0101 \ 08946187 n 0101 | of or relating to or characteristic of Ghana or its people or language; "Ghanaian cocoa production" -03068737 01 a 01 Gibraltarian 0 003 + 09749011 n 0101 + 09028841 n 0101 \ 09028841 n 0101 | of or relating to Gibraltar or its inhabitants; "Gibraltarian customs office" -03068909 01 a 01 Gilbertian 0 002 + 10999584 n 0101 \ 10999048 n 0101 | of or pertaining to or characteristic of the style of William S. Gilbert; "Gilbertian libretti" -03069079 01 a 01 gladiatorial 0 002 + 10131815 n 0101 \ 10131815 n 0101 | of or relating to or resembling gladiators or their combat; "gladiatorial combats" -03069238 01 a 01 glandular 0 002 + 05327767 n 0101 \ 05327767 n 0101 | relating to or affecting or functioning as a gland; "glandular malfunctions" -03069388 01 a 02 gonadotropic 0 gonadotrophic 0 003 \ 05410315 n 0202 + 05410315 n 0101 \ 05410315 n 0101 | of or relating to or involving gonadotropin -03069542 01 a 01 Gothic 0 001 \ 10139774 n 0101 | of or relating to the Goths; "Gothic migrations" -03069643 01 a 01 Gothic 1 002 + 06955706 n 0101 \ 06955706 n 0101 | of or relating to the language of the ancient Goths; "the Gothic Bible translation" -03069797 01 a 01 Gothic 2 002 + 06826589 n 0101 \ 06826589 n 0101 | characteristic of the style of type commonly used for printing German -03069937 01 a 01 green 0 002 + 10060904 n 0101 \ 08260386 n 0101 | concerned with or supporting or in conformity with the political principles of the Green Party -03070101 01 a 01 greenhouse 0 001 \ 11461268 n 0101 | of or relating to or caused by the greenhouse effect; "greenhouse gases" -03070230 01 a 01 greenside 0 002 ;c 00464894 n 0000 \ 08579780 n 0101 | adjacent to a putting green; "greenside bunker" -03070352 01 a 01 Gregorian 2 003 + 11014652 n 0101 \ 11014652 n 0102 \ 15174218 n 0101 | of or relating to Pope Gregory XIII or the calendar he introduced in 1582 -03070517 01 a 01 Gregorian 1 003 + 11013876 n 0101 \ 11013876 n 0102 \ 07035153 n 0103 | of or relating to Pope Gregory I or to the plainsong chants of the Roman Catholic Church -03070697 01 a 01 Grenadian 0 003 + 09749260 n 0101 + 08946909 n 0101 \ 08946909 n 0101 | of or relating to or characteristic of Grenada or its inhabitants; "the Grenadian capital" -03070879 01 a 01 growing 0 001 \ 13489037 n 0101 | relating to or suitable for growth; "the growing season for corn"; "good growing weather" -03071022 01 a 01 Guatemalan 0 003 + 09712195 n 0101 + 08737041 n 0101 \ 08737041 n 0101 | of or relating to or characteristic of Guatemala or its residents; "Guatemalan coffee" -03071201 01 a 01 Guinean 0 003 + 09749386 n 0101 + 08947319 n 0101 \ 08947319 n 0101 | of or relating to or characteristic of Guinea or its inhabitants; "Guinean borders" -03071374 01 a 01 Guyanese 0 002 + 09712324 n 0101 \ 08948346 n 0101 | of or relating to or characteristic of Guyana or its inhabitants; "the Guyanese capital" -03071535 01 a 01 gyroscopic 0 002 + 03473227 n 0101 \ 03473227 n 0101 | having the characteristics of a gyroscope -03071651 01 a 01 Haitian 0 003 + 09712448 n 0101 + 08751494 n 0101 \ 08751494 n 0101 | of or relating to or characteristic of the republic of Haiti or its people; "Haitian shantytowns" -03071838 01 a 01 Hanoverian 0 004 + 09704368 n 0101 + 10159852 n 0101 + 08154960 n 0101 \ 08154960 n 0101 | of or relating to the former English royal House of Hanover or their supporters -03072028 01 a 01 Hispaniolan 0 002 + 08751317 n 0101 \ 08751317 n 0102 | of or relating to the West Indian island of Hispaniola -03072158 01 a 02 Hispanic 0 Latino 0 003 \ 10629647 n 0203 + 10629647 n 0103 \ 10629647 n 0103 | related to a Spanish-speaking people or culture; "the Hispanic population of California is growing rapidly" -03072365 01 a 02 histological 0 histologic 0 004 + 06077413 n 0201 \ 06077413 n 0201 + 06077413 n 0101 \ 06077413 n 0101 | of or relating to histology -03072518 01 a 01 Hertzian 0 002 + 11046934 n 0101 \ 11046722 n 0101 | of or relating to the physicist Heinrich Hertz or his work; "Hertzian discoveries" -03072673 01 a 02 hiplength 0 hip-length 0 002 \ 08583554 n 0101 \ 08583682 n 0101 | extending to or just over the hips; "a hiplength jacket" -03072816 01 a 01 Hippocratic 0 002 + 11051632 n 0101 \ 11051632 n 0101 | of or relating to Hippocrates or the school of medicine that took his name -03072966 01 a 01 homeopathic 0 002 ! 03073110 a 0101 \ 00710889 n 0101 | of or relating to the practice of homeopathy; "homeopathic medicine" -03073110 01 a 01 allopathic 0 002 ! 03072966 a 0101 \ 00710692 n 0101 | of or relating to the practice of allopathy; "allopathic remedies" -03073251 01 a 01 Homeric 0 002 + 11057381 n 0101 \ 11057381 n 0101 | relating to or characteristic of Homer or his age or the works attributed to him; "Homeric Greek" -03073420 01 a 02 homiletic 0 homiletical 0 003 \ 05635764 n 0201 + 07244949 n 0101 \ 05635764 n 0101 | of or relating to homiletics; "homiletic speech" -03073574 01 a 02 homiletic 1 homiletical 1 005 + 06183518 n 0201 + 07244949 n 0201 \ 07244949 n 0201 + 07244949 n 0101 \ 07244949 n 0101 | of the nature of a homily or sermon -03073751 01 a 01 hydraulic 0 002 + 06113009 n 0102 \ 06113009 n 0102 | of or relating to the study of hydraulics; "hydraulic engineer" -03073888 01 a 01 hydraulic 1 001 \ 14845743 n 0101 | moved or operated or effected by liquid (water or oil); "hydraulic erosion"; "hydraulic brakes" -03074039 01 a 01 hydropathic 0 001 \ 00711127 n 0101 | of or relating to hydropathy or its administration; "hydropathic treatments" -03074173 01 a 01 Icelandic 0 001 \ 08953324 n 0101 | of or relating to Iceland or its people or culture and language; "Icelandic ports"; "the Icelandic president is a woman"; "Icelandic sagas" -03074368 01 a 02 imperialistic 0 imperialist 0 005 \ 00804909 n 0201 + 06661396 n 0101 + 06218308 n 0101 + 00804909 n 0101 \ 00804909 n 0101 | of or relating to imperialism; "imperialistic wars" -03074565 01 a 03 Indo-European 0 Indo-Aryan 0 Aryan 0 004 + 09635823 n 0301 \ 09635823 n 0302 \ 09635823 n 0202 \ 09635823 n 0102 | of or relating to the former Indo-European people; "Indo-European migrations" -03074777 01 a 02 Indo-European 1 Indo-Germanic 0 002 \ 06941644 n 0201 \ 06941644 n 0101 | of or relating to the Indo-European language family -03074922 01 a 01 tribal 0 004 + 07969695 n 0106 + 08168531 n 0101 + 08372411 n 0101 \ 08372411 n 0101 | relating to or characteristic of a tribe; "tribal customs" -03075087 01 a 01 intertribal 0 001 \ 08372411 n 0101 | between or among tribes; "intertribal warfare" -03075191 01 a 02 Iranian 0 Persian 0 007 + 09714429 n 0203 + 06974127 n 0201 + 08910668 n 0203 + 09714429 n 0102 + 06973610 n 0101 + 08910668 n 0101 \ 08910668 n 0101 | of or relating to Iran or its people or language or culture; "Iranian mountains"; "Iranian security police" -03075470 01 a 02 Iraqi 0 Iraki 0 004 + 09714694 n 0202 \ 08913434 n 0201 + 09714694 n 0101 \ 08913434 n 0101 | of or relating to Iraq or its people or culture; "Iraqi oil"; "Iraqi refugees" -03075662 01 a 01 Italic 0 002 + 06961853 n 0101 \ 06961853 n 0101 | of or relating to the Italic languages; "ancient Italic dialects" -03075798 01 a 01 italic 1 003 + 06350918 n 0101 + 06827344 n 0101 \ 06827344 n 0101 | characterized by slanting characters; "italic characters" -03075944 01 a 01 Jacksonian 0 002 + 11075823 n 0101 \ 11075823 n 0102 | of or pertaining to Andrew Jackson or his presidency or his concepts of popular democracy -03076108 01 a 01 Jacobean 0 001 \ 11079802 n 0102 | of or relating to James I or his reign or times; "Jacobean writers" -03076230 01 a 02 Jacobinic 0 Jacobinical 0 004 + 10218802 n 0201 \ 10218802 n 0201 + 10218802 n 0101 \ 10218802 n 0101 | of or relating to the Jacobins of the French Revolution; "Jacobinic terrorism" -03076432 01 a 01 Jamaican 0 004 + 09718092 n 0101 + 08753729 n 0101 + 08753933 n 0101 \ 08753933 n 0101 | of or relating to Jamaica (the island or the country) or to its inhabitants; "Jamaican rum"; "the Jamaican Prime Minister" -03076663 01 a 02 Javanese 0 Javan 0 006 + 10220080 n 0202 + 08908248 n 0201 \ 08908248 n 0201 + 10220080 n 0101 + 06939431 n 0101 \ 08908248 n 0101 | of or relating to or characteristic of Java or its inhabitants or its language; "Javanese temples"; "Javanese dialects" -03076935 01 a 03 Jesuitical 0 Jesuitic 0 Jesuit 0 009 \ 10221520 n 0301 \ 06185138 n 0301 + 06185138 n 0201 + 10221520 n 0201 \ 10221520 n 0201 \ 06185138 n 0201 + 10221520 n 0101 \ 10221520 n 0101 \ 06185138 n 0101 | having qualities characteristic of Jesuits or Jesuitism; "Jesuitical education" -03077235 01 a 01 Jordanian 0 003 + 09718811 n 0101 + 08927186 n 0101 \ 08927186 n 0101 | of or relating to or characteristic of Jordan or its people; "Jordanian archeological sites" -03077419 01 a 01 journalistic 0 003 + 06266417 n 0101 + 00611674 n 0101 \ 06266417 n 0101 | of or relating to or having the characteristics of journalism; "journalistic writing" -03077599 01 a 01 Jovian 1 002 + 09573966 n 0101 \ 09573966 n 0101 | of or pertaining to or befitting the Roman deity Jupiter; "Jovian thunderbolts"; "Jovian wrath" -03077765 01 a 01 Jovian 2 002 + 09322454 n 0101 \ 09322454 n 0101 | of or pertaining to or characteristic of or resembling the planet Jupiter; "Jovian satellites" -03077930 01 a 01 Julian 0 002 + 10878161 n 0102 \ 10878161 n 0102 | of or relating to or characteristic of Julius Caesar; "the Julian calendar" -03078076 01 a 01 karyokinetic 0 002 + 13504739 n 0101 \ 13504739 n 0101 | of or relating to the division of the nucleus of a cell during mitosis or meiosis -03078234 01 a 01 Kashmiri 0 003 + 09676021 n 0101 + 06972874 n 0101 \ 08975617 n 0101 | of or relating to or characteristic of Kashmir or its people or culture; "the Kashmiri mountains"; "Kashmiri love poems" -03078445 01 a 01 Kazakhstani 0 002 + 09736181 n 0101 \ 09019726 n 0101 | of or pertaining to Kazakhstan or to the Kazakhs or their culture -03078586 01 a 01 Kenyan 0 003 + 09719309 n 0101 + 08928193 n 0101 \ 08928193 n 0101 | of or relating to or characteristic of Kenya or its people; "Kenyan mountains" -03078753 01 a 01 knee-length 0 001 \ 05573602 n 0101 | extending to the knee -03078832 01 a 01 Kurdish 0 001 \ 09038990 n 0101 | of or relating to Kurdistan or the Kurds or their language and culture; "Kurdish Moslems" -03078975 01 a 01 Kuwaiti 0 002 + 09719653 n 0101 \ 08929555 n 0101 | of or relating to the capital of Kuwait or its residents; "Kuwaiti streets are lined with luxury stores" -03079151 01 a 01 Kuwaiti 1 002 + 09719653 n 0101 \ 08929243 n 0101 | of or relating to the kingdom of Kuwait or its people; "Kuwaiti ports" -03079293 01 a 01 Lancastrian 2 002 + 08873269 n 0101 \ 08873269 n 0101 | of or relating to the English city of Lancaster or its residents; "Lancastrian city center" -03079460 01 a 01 Lancastrian 3 002 + 08155765 n 0101 \ 08155765 n 0101 | of or relating to the former English royal house or their supporters; "Lancastrian royalty" -03079627 01 a 01 Laotian 0 003 + 09719794 n 0102 + 08956760 n 0101 \ 08956760 n 0101 | of or relating to Laos or its people; "the Laotian Prime Minister"; "Laotian refugees" -03079803 01 a 01 Lao 0 001 \ 09719794 n 0101 | of or relating to a member of the Buddhist people inhabiting the Mekong river in Laos and Thailand -03079951 01 a 01 Laputan 0 002 + 05630539 n 0101 \ 05630539 n 0101 | relating to or characteristic of the imaginary country of Laputa or its people -03080101 01 a 01 Latin 0 001 \ 06962600 n 0101 | of or relating to the ancient Latins or the Latin language; "Latin verb conjugations" -03080238 01 a 01 Latin 1 001 \ 08806735 n 0101 | of or relating to the ancient region of Latium; "Latin towns" -03080351 01 a 02 Romance 0 Latin 2 002 \ 06963951 n 0201 \ 06963951 n 0101 | relating to languages derived from Latin; "Romance languages" -03080492 01 a 01 Latin 3 001 \ 03080351 a 0101 | relating to people or countries speaking Romance languages; "Latin America" -03080619 01 a 01 Lebanese 0 001 \ 08957381 n 0101 | of or relating to or characteristic of Lebanon or its people; "Lebanese mountains" -03080756 01 a 01 lenten 0 001 \ 15242029 n 0101 | of or relating to or suitable for Lent; "lenten food" -03080862 01 a 01 Levantine 0 002 + 09720702 n 0101 \ 08915159 n 0101 | of or relating to the Levant or its inhabitants; "the Levantine coast" -03081006 01 a 01 Liberian 0 003 + 09720842 n 0101 + 08959254 n 0101 \ 08959254 n 0101 | of or relating to Liberia or its people; "Liberian ship owners" -03081160 01 a 01 Libyan 0 003 + 09720967 n 0101 + 08959683 n 0101 \ 08959683 n 0101 | of or relating to Libya or its people; "the Libyan desert"; "Libyan terrorists" -03081328 01 a 01 Liechtensteiner 0 002 + 09721088 n 0101 \ 08960548 n 0101 | of or relating to Liechtenstein or its inhabitants; "Liechtensteiner castles" -03081485 01 a 01 Lilliputian 0 003 + 09601429 n 0101 + 05630734 n 0101 \ 05630734 n 0101 | tiny; relating to or characteristic of the imaginary country of Lilliput; "the Lilliputian population" -03081681 01 a 01 lithographic 0 001 \ 06680002 n 0101 | of or produced by or involved in lithography; "lithographic reproduction" -03081813 01 a 01 Liverpudlian 0 002 + 08877382 n 0101 \ 08877382 n 0101 | of or relating to Liverpool or its people; "Liverpudlian streets"; "Liverpudlian street urchins" -03081986 01 a 01 Luxemburger 0 001 \ 08960987 n 0103 | of or relating to or characteristic of the grand duchy of Luxemburg or its people -03082125 01 a 01 Luxemburger 2 001 \ 08961402 n 0103 | of or relating to the capital city of Luxemburg; "Luxemburger streets" -03082253 01 a 01 Macedonian 0 002 + 08961630 n 0101 \ 08961630 n 0101 | of or relating to Macedonia or its inhabitants; "Macedonian hills" -03082394 01 a 01 Machiavellian 0 003 + 11147729 n 0101 \ 11147729 n 0101 \ 06214164 n 0101 | of or relating to Machiavelli or the principles of conduct he recommended; "Machiavellian thinking" -03082589 01 a 01 Madagascan 0 003 + 08961970 n 0101 + 08962187 n 0101 \ 08962187 n 0101 | of or relating to Madagascar or its people; "Madagascan pepper" -03082745 01 a 01 malarial 0 002 + 14077830 n 0101 \ 14077830 n 0101 | of or infected by or resembling malaria; "malarial fever" -03082875 01 a 01 Malawian 0 003 + 09721759 n 0101 + 08962610 n 0101 \ 08962610 n 0101 | relating to or characteristic of Malawi or its people or culture; "Malawian hills"; "Malawian soldiers" -03083069 01 a 02 Malay 0 Malayan 0 006 + 09712696 n 0202 + 08963369 n 0201 \ 09712696 n 0201 + 09712696 n 0101 + 06938887 n 0101 \ 09712696 n 0101 | of or relating to or characteristic of the people or language of Malaysia and the northern Malay Peninsula and parts of the western Malay Archipelago; "Malay peoples"; "Malayan syllable structure" -03083417 01 a 02 Malaysian 0 Malayan 1 005 + 08963369 n 0201 \ 08963369 n 0202 + 09721883 n 0101 + 08963369 n 0101 \ 08963369 n 0101 | of or relating to or characteristic of Malaysia; "Malaysian police crack down hard on drug smugglers"; "Malayan crocodiles" -03083678 01 a 01 Malian 0 003 + 09722279 n 0101 + 08965598 n 0101 \ 08965598 n 0101 | of or relating to or characteristic of Mali or its people; "Malian deserts" -03083842 01 a 01 Maltese 0 002 \ 08966408 n 0101 \ 08966239 n 0101 | of or relating to the island or republic of Malta or its inhabitants; "Maltese customs officers" -03084010 01 a 01 Malthusian 0 004 + 10286749 n 0101 + 11152856 n 0101 \ 11152856 n 0101 \ 05995726 n 0101 | of or relating to Thomas Malthus or to Malthusianism; "Malthusian theories" -03084196 01 a 01 Mancunian 0 003 + 09704876 n 0101 + 08876975 n 0101 \ 08876975 n 0101 | of or relating to or characteristic of the English city of Manchester or its residents; "Mancunian merchants" -03084397 01 a 01 manorial 0 003 + 13252168 n 0101 + 03718458 n 0101 \ 03718458 n 0101 | of or relating to or based on the manor; "manorial accounts" -03084548 01 a 01 Manx 0 002 + 06961221 n 0101 \ 08887716 n 0101 | of or relating to the Isle of Man or its inhabitants or their language; "the Manx fishing industry"; "there are few Manx speakers alive today" -03084759 01 a 02 Mauritanian 0 Mauritian 1 009 + 09722530 n 0201 + 08967329 n 0201 + 08967484 n 0201 \ 08967329 n 0201 \ 08967484 n 0201 + 09722399 n 0101 + 08966820 n 0101 \ 08967329 n 0101 \ 08967484 n 0101 | of or related to the island or country of Mauritius or its inhabitants; "Mauritanian tropical fish" -03085072 01 a 01 mayoral 0 002 + 10303814 n 0101 \ 10303814 n 0101 | of or relating to a mayor or the office of mayor; "mayoral elections" -03085213 01 a 01 Mediterranean 0 002 + 09350045 n 0101 \ 09350045 n 0101 | of or relating to or characteristic of or located near the Mediterranean Sea; "Mediterranean countries" -03085394 01 a 01 megalithic 0 002 + 03743016 n 0101 \ 03743016 n 0101 | of or relating to megaliths or the people who erected megaliths; "megalithic monuments like Stonehenge" -03085572 01 a 01 membranous 0 002 + 03743761 n 0101 \ 05426243 n 0101 | relating to or made of or similar to a membrane; "membranous lining" -03085715 01 a 01 Mendelian 0 002 + 11173199 n 0101 \ 11173199 n 0101 | of or relating to Gregor Mendel or in accord with Mendel's laws; "Mendelian inheritance" -03085877 01 a 01 mentholated 0 001 \ 14950394 n 0101 | containing, or impregnated with, menthol; "mentholated cough syrup" -03086002 01 a 01 meritocratic 0 003 + 07973088 n 0101 + 06218824 n 0101 \ 07973088 n 0101 | relating to or characteristic of a meritocracy; "meritocratic society" -03086167 01 a 01 metacarpal 0 002 + 05593871 n 0101 \ 05593871 n 0101 | of or relating to the metacarpus; "metacarpal bones" -03086294 01 a 02 metallurgical 0 metallurgic 0 004 + 06125698 n 0201 \ 06125698 n 0201 + 06125698 n 0101 \ 06125698 n 0101 | of or relating to metallurgy; "metallurgical engineer" -03086476 01 a 01 metatarsal 0 002 + 05594568 n 0101 \ 05594568 n 0101 | of or relating to the metatarsus; "metatarsal bones" -03086603 01 a 01 methylated 0 001 \ 14952122 n 0101 | having received a methyl group; "methylated alcohol" -03086712 01 a 01 milch 0 001 \ 05399034 n 0101 | giving milk; bred or suitable primarily for milk production; "milch goats, milch camels" -03086852 01 a 01 millenary 1 002 + 15263283 n 0101 \ 15263283 n 0101 | of or relating to the doctrine of the millennium -03086974 01 a 01 mineral 1 001 \ 14662574 n 0101 | relating to minerals; "mineral elements"; "mineral deposits" -03087088 01 a 02 Mongol 0 Mongolian 1 006 + 09644152 n 0202 + 06928839 n 0201 + 08968677 n 0201 \ 08968677 n 0201 + 09644152 n 0101 \ 08968677 n 0101 | of or relating to the region of Mongolia or its people or their languages or cultures; "the Mongol invaders"; "a Mongolian pony"; "Mongolian syntax strongly resembles Korean syntax" -03087424 01 a 01 Mongolian 2 002 + 08968879 n 0101 \ 08968879 n 0101 | of or relating to the modern Mongolian People's Republic; "the Mongolian embassy" -03087579 01 a 01 mongoloid 0 001 \ 14159623 n 0101 | of or relating to or suffering from Down syndrome; -03087685 01 a 01 Mongoloid 1 002 ;c 06143546 n 0000 \ 08968677 n 0101 | of or pertaining to or characteristic of one of the traditional racial division of humankind including especially peoples of central and eastern Asia -03087909 01 a 01 mongoloid 2 001 \ 09644152 n 0101 | characteristic of or resembling a Mongol; "the mongoloid epicanthic fold" -03088038 01 a 01 Montserratian 0 003 + 09723228 n 0101 + 08711300 n 0101 \ 09723228 n 0101 | of or relating to Montserrat or the inhabitants of Montserrat; "Montserratian natives" -03088220 01 a 02 Moorish 0 Moresque 0 003 \ 09723361 n 0201 + 05843687 n 0101 \ 09723361 n 0101 | relating to or characteristic of the Moors; "Moorish courtyard" -03088384 01 a 01 Mozambican 0 003 + 09723689 n 0101 + 08971025 n 0101 \ 09723689 n 0101 | of or relating to the people of Mozambique; "Mozambican troops are at the border" -03088558 01 a 01 Mozambican 1 002 + 08971025 n 0101 \ 08971025 n 0101 | of or relating to or located in Mozambique; "Mozambican towns" -03088695 01 a 01 Muscovite 0 002 + 09729062 n 0101 \ 09729062 n 0101 | of or relating to the residents of Moscow; "Muscovite street dealers" -03088838 01 a 01 Namibian 0 003 + 09723819 n 0101 + 08699654 n 0101 \ 08699654 n 0101 | of or relating to Namibia or its people -03088968 01 a 01 Nauruan 0 003 + 09723944 n 0101 + 08841209 n 0101 \ 08841483 n 0101 | of or relating to the island republic of Nauru or its residents -03089121 01 a 03 Neanderthal 0 Neanderthalian 0 Neandertal 0 006 + 02475078 n 0303 \ 02475078 n 0302 + 02475078 n 0204 \ 02475078 n 0202 + 02475078 n 0104 \ 02475078 n 0102 | relating to or belonging to or resembling Neanderthal man; "Neanderthal skull" -03089377 01 a 02 nebular 0 nebulous 0 005 ;c 06095022 n 0000 + 09366940 n 0201 \ 09366940 n 0201 + 09366940 n 0101 \ 09366940 n 0101 | of or relating to or resembling a nebula; "the nebular hypothesis of the origin of the solar system" -03089615 01 a 01 nectariferous 0 002 + 11683838 n 0101 \ 11683838 n 0101 | possessing nectaries -03089713 01 a 01 nectar-rich 0 001 \ 14846779 n 0101 | of plants that are rich in nectar -03089804 01 a 01 eolithic 0 001 \ 15232236 n 0101 | of or relating to the earliest period of the Stone Age (characterized by the use of eoliths) -03089951 01 a 01 mesolithic 0 001 \ 15233239 n 0101 | of or relating to a middle period of the Stone Age (following the paleolithic) -03090086 01 a 01 neolithic 0 001 \ 15233411 n 0101 | of or relating to the most recent period of the Stone Age (following the mesolithic); "evidence of neolithic settlements" -03090263 01 a 02 paleolithic 0 palaeolithic 0 002 \ 15231964 n 0201 \ 15232406 n 0101 | of or relating to the second period of the Stone Age (following the eolithic); "paleolithic artifacts" -03090456 01 a 01 neuralgic 0 003 + 14329262 n 0102 + 14329262 n 0101 \ 14329262 n 0101 | of or relating to or suffering from neuralgia; "neuralgic pains" -03090612 01 a 01 neurasthenic 0 003 + 10353813 n 0101 + 14066959 n 0101 \ 14066959 n 0101 | of or relating to or suffering from neurasthenia; "neurasthenic tendencies" -03090782 01 a 02 Nicaean 0 Nicene 0 003 \ 08504151 n 0201 + 08504151 n 0101 \ 08504151 n 0101 | of or relating to the ancient city of Nicaea in Asia Minor -03090939 01 a 01 Nicaraguan 0 002 + 08738820 n 0101 \ 08738820 n 0101 | of or relating to Nicaragua or is people; "Nicaraguan earthquakes" -03091080 01 a 02 Nigerian 0 Nigerien 0 004 \ 09724785 n 0201 + 09724785 n 0101 + 08973330 n 0101 \ 09724785 n 0101 | of or relating to the people of Nigeria; "a Nigerian novelist won the Nobel Prize for literature this year" -03091307 01 a 01 Nigerian 1 003 + 09724785 n 0101 + 08973330 n 0101 \ 08973776 n 0101 | of or relating to Nigeria; "the Nigerian capital used to be Lagos" -03091464 01 a 01 Nilotic 0 002 + 06998108 n 0101 \ 06998108 n 0101 | of or relating to or constituting the Nilotic group of languages; "Nilotic syntax" -03091618 01 a 01 Nilotic 1 002 + 09371360 n 0101 \ 09371360 n 0101 | of or relating to the Nile River or the people living near it -03091751 01 a 01 nitrogen-fixing 0 001 \ 13522305 n 0101 | contributing to the process of nitrogen fixation -03091861 01 a 02 nitrogenous 0 nitrogen-bearing 0 002 + 14647235 n 0101 \ 14647235 n 0101 | of or relating to or containing nitrogen -03091996 01 a 03 azotic 0 nitric 0 nitrous 0 006 + 14861355 n 0305 \ 14647235 n 0301 + 14861355 n 0205 \ 14647235 n 0201 + 14647623 n 0101 \ 14647623 n 0101 | of or containing nitrogen; "nitric acid" -03092198 01 a 01 nodular 0 004 + 13088989 n 0101 + 09371941 n 0101 + 05265038 n 0101 \ 05265038 n 0101 | relating to or characterized by or having nodules; "Nodular vaginitis" -03092376 01 a 01 nontranslational 0 002 ! 03125925 a 0101 \ 07446404 n 0101 | of or relating to movement that is not uniform or not without rotation -03092527 01 a 01 Nordic 0 001 \ 08760393 n 0101 | relating to Germany and Scandinavia; "Hitler wanted Nordic people to rule Europe" -03092661 01 a 01 Nordic 1 001 \ 06953731 n 0101 | of or relating to or constituting the Scandinavian group of languages; "Nordic languages have a gender system" -03092824 01 a 01 Norman 0 001 \ 09713260 n 0101 | of or relating to or characteristic of the Normans; "the Norman Invasion in 1066" -03092958 01 a 01 Norman 1 001 \ 08944561 n 0102 | of or relating to or characteristic of Normandy; "Norman beaches" -03093076 01 a 01 Olympic 0 001 \ 07457126 n 0101 | of or relating to the Olympic Games; "Olympic winners" -03093184 01 a 01 Olympian 0 003 + 09378529 n 0101 \ 09378529 n 0102 + 09553347 n 0101 | of or pertaining to the greater gods of ancient Greece whose abode was Mount Olympus; "Olympian deities" -03093379 01 a 02 Olympian 1 Olympic 1 003 + 08790953 n 0201 \ 08790953 n 0201 \ 08790953 n 0101 | of the region of Olympia in Greece or its inhabitants; "Olympian plain" -03093551 01 a 01 Omani 0 002 + 09725653 n 0101 \ 08975106 n 0101 | of or relating to Oman or its people; "Omani oil producers"; "Omani ports" -03093695 01 a 01 open-source 0 002 ;c 06128570 n 0000 \ 06358513 n 0101 | of or relating to or being computer software for which the source code is freely available -03093862 01 a 01 optative 0 002 ;c 06174404 n 0000 \ 13802098 n 0101 | relating to a mood of verbs in some languages; "optative verb endings" -03094006 01 a 01 optative 1 002 + 00679389 v 0103 \ 05790944 n 0101 | indicating an option or wish -03094107 01 a 01 subjunctive 0 002 ;c 06174404 n 0000 \ 13801937 n 0101 | relating to a mood of verbs; "subjunctive verb endings" -03094239 01 a 01 implicational 0 002 + 13860281 n 0101 \ 13860281 n 0101 | relating to or concerned with logical implication; " implicational language universals" -03094404 01 a 01 imperative 0 002 ;c 06174404 n 0000 \ 13802306 n 0101 | relating to verbs in the imperative mood -03094520 01 a 02 indicative 0 declarative 0 004 ;c 06174404 n 0000 + 13801700 n 0204 \ 13801700 n 0203 \ 13801700 n 0101 | relating to the mood of verbs that is used simple in declarative statements; "indicative mood" -03094740 01 a 01 interrogative 0 002 ;c 06174404 n 0000 \ 13802485 n 0101 | relating to verbs in the so-called interrogative mood; "not all questions have an interrogative construction" -03094928 01 a 01 ornithological 0 002 + 06073494 n 0101 \ 06073494 n 0101 | of or relating to ornithology; "her ornithological interests" -03095068 01 a 03 orthopedic 0 orthopaedic 0 orthopedical 0 004 + 06064106 n 0301 \ 06064106 n 0301 \ 06064106 n 0201 \ 06064106 n 0101 | of or relating to orthopedics; "orthopedic shoes" -03095257 01 a 01 orthoptic 0 002 + 00708957 n 0101 \ 05656042 n 0101 | of or relating to normal binocular vision -03095372 01 a 01 outdoor 0 001 \ 08613733 n 0101 | pertaining to or concerning the outdoors or outdoor activities; "outdoor education is the area of teacher training concerned with training for outdoor activities" -03095588 01 a 01 Oxonian 0 003 + 09705003 n 0101 + 08877807 n 0101 \ 08877807 n 0101 | of or pertaining to or characteristic of the city of Oxford, England, or its inhabitants; "his Oxonian neighbors"; "Oxonian bookstores" -03095813 01 a 01 Oxonian 1 002 + 03868509 n 0102 \ 03868509 n 0102 | of or pertaining to or characteristic of Oxford University; "Oxonian education" -03095964 01 a 01 Pakistani 0 002 + 09725772 n 0101 \ 08975902 n 0101 | of or relating to Pakistan or its people or language; "Pakistani mountain passes"; "Pakistani soldiers" -03096141 01 a 01 palatial 0 002 + 03877845 n 0101 \ 03877845 n 0101 | relating to or being a palace; "the palatial residence" -03096269 01 a 01 Papuan 0 003 + 06941115 n 0101 + 08844923 n 0101 \ 08844923 n 0101 | of or relating to Papua or its people or language; "Papuan native crafts"; "Papuan vowels" -03096448 01 a 02 paralytic 0 paralytical 0 004 + 14558226 n 0201 \ 14558226 n 0201 + 14558226 n 0101 \ 14558226 n 0101 | relating to or of the nature of paralysis; "paralytic symptoms" -03096635 01 a 01 parenteral 0 002 ;c 06080522 n 0000 \ 05532225 n 0101 | located outside the alimentary tract -03096747 01 a 01 parenteral 1 002 ;c 06043075 n 0000 \ 03096635 a 0101 | administered by means other than through the alimentary tract (as by intramuscular or intravenous injection) -03096931 01 a 01 Parthian 0 003 + 09726374 n 0101 + 08978821 n 0101 \ 08978821 n 0101 | pertaining to Parthia or its people or language or culture; "Parthian archeology" -03097103 01 a 01 participial 0 004 ;c 06174404 n 0000 + 06330528 n 0102 + 06330528 n 0101 \ 06330528 n 0101 | of or relating to or consisting of participles; "participial inflections" -03097289 01 a 01 partitive 0 003 + 06301792 n 0101 + 01557774 v 0103 \ 00397953 n 0102 | indicating or characterized by or serving to create partition or division into parts; "partitive tendencies in education" -03097502 01 a 01 partitive 2 001 \ 13809207 n 0101 | (Romance languages) relating to or denoting a part of a whole or a quantity that is less than the whole; "a partitive construction" -03097689 01 a 01 patronymic 0 003 + 06335832 n 0101 + 06335832 n 0102 \ 06335832 n 0101 | of or derived from a personal or family name -03097826 01 a 01 pectic 0 002 + 14978232 n 0101 \ 14978232 n 0101 | of or relating to or derived from pectin; "pectic acid" -03097952 01 a 02 penile 0 penial 0 003 + 05526384 n 0201 \ 05526384 n 0201 \ 05526384 n 0101 | of or relating to the penis; "penile erection" -03098096 01 a 01 scrotal 0 002 + 05517406 n 0101 \ 05517406 n 0101 | relating to or having or lying within a scrotum; "scrotal mammals"; "scrotal testes" -03098252 01 a 01 peninsular 0 002 + 09388848 n 0101 \ 09388848 n 0101 | of or forming or resembling a peninsula; "peninsular isolation" -03098390 01 a 01 pentavalent 0 002 ;c 06084469 n 0000 \ 05034473 n 0101 | having a valence of five -03098491 01 a 01 pentecostal 0 003 + 15197042 n 0105 + 15242209 n 0101 \ 15242209 n 0101 | of or relating to or occurring at Pentecost -03098628 01 a 01 pentecostal 1 002 + 10414865 n 0101 \ 08087319 n 0101 | of or relating to or characteristic of any of various Pentecostal religious bodies or their members -03098803 01 a 02 pharmaceutical 0 pharmaceutic 0 011 + 06055300 n 0201 + 03249342 n 0205 + 10421470 n 0201 + 06055300 n 0202 \ 06055300 n 0202 \ 10421470 n 0201 + 06055300 n 0102 + 06055300 n 0101 + 03249342 n 0105 \ 06055300 n 0102 \ 10421470 n 0101 | of or relating to pharmacy or pharmacists; "the pharmaceutical industry" -03099131 01 a 01 pharmaceutical 1 002 + 03920989 n 0101 \ 03920989 n 0101 | of or relating to drugs used in medical treatment -03099259 01 a 01 philharmonic 0 001 \ 08248157 n 0101 | composing or characteristic of an orchestral group; "philharmonic players" -03099392 01 a 01 Philistine 0 003 + 10422871 n 0101 \ 10422871 n 0101 \ 08799706 n 0101 | of or relating to ancient Philistia or its culture or its people -03099549 01 a 01 phonic 1 002 + 07111047 n 0101 \ 05650820 n 0102 | relating to speech -03099638 01 a 01 phonic 2 001 \ 00888409 n 0101 | pertaining to the phonic method of teaching reading -03099742 01 a 02 phosphorous 0 phosphoric 0 004 + 14649197 n 0201 \ 14649197 n 0201 + 14649197 n 0101 \ 14649197 n 0101 | containing or characteristic of phosphorus; "phosphoric acid" -03099928 01 a 01 pineal 0 001 \ 05485098 n 0102 | relating to the pineal body; "pineal hormone" -03100026 01 a 01 piratical 0 004 + 10437262 n 0105 + 10435367 n 0101 + 03947888 n 0101 \ 10435367 n 0101 | characteristic of pirates; "piratical attackers" -03100184 01 a 01 piratical 1 002 + 00750405 n 0104 \ 00750405 n 0104 | characteristic of piracy; "piratical editions of my book" -03100315 01 a 02 piscatorial 0 piscatory 0 002 \ 00454121 n 0201 \ 00454121 n 0101 | relating to or characteristic of the activity of fishing; "a piscatory life" -03100479 01 a 01 pituitary 0 002 + 05483890 n 0101 \ 05483890 n 0101 | of or relating to the pituitary gland; "pituitary hormone" -03100611 01 a 01 polygonal 0 001 \ 13866144 n 0101 | having many sides or relating to a surface marked by polygons; "polygonal structure" -03100751 01 a 02 polynomial 0 multinomial 0 003 \ 05861855 n 0202 + 05861855 n 0101 \ 05861855 n 0101 | having the character of a polynomial; "a polynomial expression" -03100921 01 a 01 porcine 0 001 \ 02395003 n 0101 | relating to or suggesting swine; "comparison between human and porcine pleasures" -03101056 01 a 01 porphyritic 0 002 + 14996395 n 0101 \ 14996395 n 0101 | (of rocks) consisting of porphyry or containing large crystals in a fine groundmass of minerals -03101227 01 a 01 postganglionic 0 001 \ 05296968 n 0101 | beyond or distal to a ganglion (referring especially to the unmyelinated fibers that originate from cells in autonomic ganglia) -03101415 01 a 01 postictal 0 001 \ 14081941 n 0102 | pertaining to the period following a seizure or convulsion; "postictal drowsiness" -03101553 01 a 01 postmillennial 0 001 \ 15263283 n 0101 | of or relating to the period following the millennium -03101667 01 a 01 postural 0 003 + 05002822 n 0103 + 05079866 n 0102 \ 05002822 n 0103 | of or relating to or involving posture; "postural exercises" -03101818 01 a 04 praetorian 0 praetorial 0 pretorian 0 pretorial 0 009 + 10463028 n 0401 \ 10463028 n 0401 + 10463028 n 0302 + 10463028 n 0301 \ 10463028 n 0301 + 10463028 n 0201 \ 10463028 n 0201 + 10463028 n 0101 \ 10463028 n 0101 | of or relating to a Roman praetor; "praetorial powers" -03102110 01 a 01 Pre-Raphaelite 0 002 + 10465248 n 0101 \ 10465248 n 0101 | of or relating to or characteristic of the Pre-Raphaelites; "the Pre-Raphaelite painters" -03102278 01 a 01 prepositional 0 002 ;c 06172789 n 0000 \ 06325145 n 0101 | of or relating to or formed with a preposition; "prepositional phrase" -03102427 01 a 01 primiparous 0 002 + 10472274 n 0101 \ 10472274 n 0101 | of or relating to a woman who has given birth only once -03102558 01 a 01 prismatic 0 003 + 13884511 n 0101 + 04005340 n 0101 \ 04005340 n 0101 | of or relating to or resembling or constituting a prism; "prismatic form" -03102723 01 a 01 prefectural 0 003 + 08626947 n 0101 + 00596496 n 0101 \ 08626947 n 0101 | of or relating to a prefecture; "a prefectural museum" -03102871 01 a 01 probabilistic 0 004 + 05091770 n 0101 + 04756172 n 0101 + 05975258 n 0101 \ 05091770 n 0101 | of or relating to or based on probability; "probabilistic quantum theory" -03103058 01 a 01 probabilistic 1 002 + 06160781 n 0101 \ 06160781 n 0101 | of or relating to the Roman Catholic philosophy of probabilism -03103198 01 a 01 procedural 0 005 + 06582403 n 0104 + 00577068 n 0102 + 01023636 n 0101 + 01023820 n 0101 \ 01023636 n 0101 | of or relating to procedure; "a procedural violation" -03103380 01 a 01 processional 0 001 \ 00296585 n 0101 | of or relating to or characteristic of a procession; "in good processional order" -03103520 01 a 01 processional 1 001 \ 00296585 n 0101 | intended for use in a procession; "processional music"; "processional cross" -03103655 01 a 01 proconsular 0 003 + 10478462 n 0101 + 10478293 n 0101 \ 10478462 n 0101 | of or relating to or typical of a proconsul; "proconsular offices" -03103815 01 a 01 promotional 0 001 \ 07247071 n 0101 | of or relating to serving as publicity; "promotional fares" -03103932 01 a 01 promotional 1 001 \ 07251984 n 0101 | of or relating to advancement; "promotional exams" -03104040 01 a 01 propulsive 0 001 \ 11497777 n 0101 | having the power to propel; "propulsive coefficient" -03104149 01 a 01 Prussian 0 002 + 08775784 n 0101 \ 08775784 n 0101 | of or relating to or characteristic of Prussia or its inhabitants; "Prussian officers"; "Prussian aristocracy" -03104332 01 a 01 pudendal 0 002 + 05514272 n 0101 \ 05514272 n 0101 | of or relating to or near the pudendum; "pudendal nerve" -03104461 01 a 01 puerile 0 002 + 04928760 n 0102 \ 09918248 n 0101 | of or characteristic of a child; "puerile breathing" -03104585 01 a 01 pugilistic 0 003 + 00445802 n 0102 \ 00445802 n 0102 \ 09870208 n 0102 | of or relating to pugilism or pugilists; "a pugilistic career" -03104740 01 a 02 Carthaginian 0 Punic 0 004 + 06989657 n 0201 + 09697070 n 0101 + 08919949 n 0101 \ 08919949 n 0101 | of or relating to or characteristic of ancient Carthage or its people or their language; "the Punic Wars"; "Carthaginian peace" -03104988 01 a 01 purgatorial 0 003 + 13937406 n 0101 + 05631449 n 0101 \ 05631449 n 0101 | of or resembling purgatory; "purgatorial fires" -03105129 01 a 03 purgatorial 1 purging 1 purifying 0 003 \ 00252662 n 0303 \ 00252662 n 0203 \ 00252662 n 0103 | serving to purge or rid of sin; "purgatorial rites" -03105296 01 a 01 puritanical 0 003 + 04639591 n 0101 \ 10494195 n 0101 \ 06232635 n 0101 | of or relating to Puritans or Puritanism -03105430 01 a 02 pyemic 0 pyaemic 0 004 + 14190736 n 0202 \ 14190736 n 0202 + 14190736 n 0101 \ 14190736 n 0101 | of or relating to pyemia -03105571 01 a 01 pyloric 0 002 + 05535095 n 0101 \ 05535095 n 0101 | relating to or near the pylorus -03105674 01 a 01 pyogenic 0 001 \ 14210888 n 0101 | producing pus -03105742 01 a 01 pyrectic 0 003 + 14584502 n 0102 + 14365356 n 0104 \ 14584502 n 0101 | having or causing fever -03105856 01 a 01 pyrochemical 0 002 + 13544279 n 0102 \ 14806838 n 0101 | of or relating to or produced by chemical reactions at high temperatures -03106005 01 a 02 pyroelectric 0 pyroelectrical 0 004 + 11435661 n 0201 \ 11435661 n 0201 + 11435661 n 0101 \ 11435661 n 0101 | relating to or exhibiting pyroelectricity -03106176 01 a 01 pyrogallic 0 002 + 14615400 n 0101 \ 14615400 n 0101 | of or relating to pyrogallol -03106279 01 a 03 pyrogenic 1 pyrogenous 1 pyrogenetic 1 004 \ 14584502 n 0301 + 14584502 n 0201 \ 14584502 n 0201 \ 14584502 n 0101 | produced by or producing fever -03106446 01 a 01 pyrographic 0 002 + 00938240 n 0101 \ 00938240 n 0101 | of or relating to or produced by pyrography -03106565 01 a 02 pyroligneous 0 pyrolignic 0 002 \ 07360077 n 0201 \ 07360077 n 0101 | of a substance produced by the effect of heat on wood, especially by destructive distillation -03106748 01 a 01 pyrolytic 0 002 + 07360077 n 0101 \ 07360077 n 0101 | resulting from pyrolysis -03106846 01 a 02 pyrotechnic 0 pyrotechnical 0 005 + 00617692 n 0201 + 00617692 n 0202 \ 00617692 n 0201 + 00617692 n 0102 \ 00617692 n 0101 | of or relating to the craft of making fireworks; "pyrotechnic smokes" -03107061 01 a 01 pyrrhic 0 002 + 11249890 n 0101 \ 11249890 n 0101 | of or relating to or resembling Pyrrhus or his exploits (especially his sustaining staggering losses in order to defeat the Romans); "a Pyrrhic victory" -03107285 01 a 01 pyrrhic 1 002 + 07095895 n 0101 \ 07095895 n 0101 | of or relating to or containing a metrical foot of two unstressed syllables; "pyrrhic verses" -03107450 01 a 01 pyrrhic 2 002 + 00542584 n 0101 \ 00542584 n 0101 | of or relating to a war dance of ancient Greece; "pyrrhic dance movements" -03107596 01 a 02 Qatari 0 Katari 0 004 + 09728137 n 0202 \ 08986905 n 0201 + 09728137 n 0101 \ 08986905 n 0101 | of or concerning Qatar or its inhabitants; "the Qatari ruling family"; "Qatari oil wells" -03107801 01 a 01 quadratic 0 001 \ 13731021 n 0101 | of or relating to the second power; "quadratic equation" -03107913 01 a 01 biquadratic 0 005 + 13731356 n 0102 + 06670390 n 0102 + 05862113 n 0101 + 13731356 n 0101 \ 13731356 n 0103 | of or relating to the fourth power -03108077 01 a 01 quadratic 1 001 \ 13878634 n 0101 | of or relating to or resembling a square; "quadratic shapes" -03108193 01 a 04 quadraphonic 0 quadriphonic 0 quadrasonic 0 quadrisonic 0 005 \ 04030965 n 0401 \ 04030965 n 0301 \ 04030965 n 0201 + 04030965 n 0101 \ 04030965 n 0101 | of or relating to quadraphony; "his quadraphonic sound system" -03108429 01 a 02 quincentennial 0 quincentenary 0 002 \ 15252021 n 0202 \ 15252021 n 0101 | of or relating to a 500th anniversary; "the quincentennial celebration of the founding of the city" -03108623 01 a 02 Quechuan 0 Kechuan 0 008 + 06917083 n 0205 + 09726970 n 0202 \ 09726970 n 0201 \ 06917083 n 0201 + 09726970 n 0101 + 06917083 n 0101 \ 09726970 n 0101 \ 06917083 n 0101 | of or relating to the Quechua or their language -03108861 01 a 01 Rabelaisian 0 002 + 11251225 n 0101 \ 11251225 n 0101 | of or relating to or characteristic of Francois Rabelais or his works; "Rabelaisian characters" -03109032 01 a 01 rayless 0 001 \ 13131516 n 0101 | having no parts resembling rays; not having ray flowers -03109141 01 a 02 recessionary 0 recessive 0 002 \ 14013368 n 0201 \ 14013368 n 0101 | of or pertaining to a recession -03109261 01 a 01 recessional 0 004 + 08429556 n 0102 + 07037232 n 0101 + 00057486 n 0102 \ 00057486 n 0102 | of or relating to receding -03109399 01 a 03 redemptive 0 redemptional 0 redemptory 0 006 + 02551602 v 0302 \ 00094001 n 0301 + 00094001 n 0201 \ 00094001 n 0201 + 02551602 v 0102 \ 00094001 n 0101 | of or relating to or resulting in redemption; "a redemptive theory about life"- E.K.Brown -03109663 01 a 01 regimental 0 002 + 08213817 n 0101 \ 08213817 n 0101 | belonging to or concerning a regiment; "regimental units" -03109795 01 a 01 residential 0 002 + 01053920 n 0102 \ 01053920 n 0102 | of or relating to or connected with residence; "a residential requirement for the doctorate" -03109963 01 a 01 residuary 1 002 ;c 08441203 n 0000 \ 13810818 n 0105 | entitled to the residue of an estate (after payment of debts and specific gifts); "the residuary part of the estate"; "the residuary beneficiary" -03110183 01 a 01 resistive 0 002 + 11503968 n 0105 \ 11503968 n 0104 | exhibiting or relating to electrical resistance; "resistive load" -03110322 01 a 01 respiratory 0 004 + 00002573 v 0101 + 00002325 v 0101 + 00001740 v 0103 \ 00830811 n 0101 | pertaining to respiration; "respiratory assistance" -03110485 01 a 01 inspiratory 0 002 + 00005041 v 0102 \ 00836788 n 0101 | pertaining to the drawing in phase of respiration -03110610 01 a 01 expiratory 0 002 + 00004227 v 0102 \ 00835267 n 0102 | of or relating to the breathing out phase of respiration -03110741 01 a 02 responsive 0 antiphonal 0 004 + 07034516 n 0202 + 07033245 n 0201 \ 07033245 n 0201 \ 06385582 n 0101 | containing or using responses; alternating; "responsive reading"; "antiphonal laughter" -03110952 01 a 01 retentive 0 002 + 04946400 n 0101 \ 00810598 n 0101 | having the capacity to retain something -03111065 01 a 01 reversionary 0 003 ;c 08441203 n 0000 + 13341350 n 0101 \ 13341350 n 0101 | of or relating to or involving a reversion (especially a legal reversion); "reversionary annuity"; "reversionary interest" -03111283 01 a 01 Rhenish 0 002 + 07897200 n 0102 \ 09408540 n 0101 | of or relating to the Rhine River and the lands adjacent to it; "Rhenish wines tend to be sweet" -03111451 01 a 01 rhizomatous 0 002 + 13128582 n 0101 \ 13128582 n 0101 | producing or possessing or resembling rhizomes -03111573 01 a 01 rhizoidal 0 001 \ 12974826 n 0101 | of or relating to a rhizoid -03111656 01 a 02 rhomboid 0 rhomboidal 0 004 + 13883133 n 0201 \ 13883133 n 0201 + 13883133 n 0101 \ 13883133 n 0101 | shaped like a rhombus or rhomboid; "rhomboidal shapes" -03111832 01 a 01 ritualistic 0 003 + 06148002 n 0101 + 01031023 n 0101 \ 01031023 n 0101 | of or characterized by or adhering to ritualism; "a feudal or ritualistic society"; "the ritualistic killing of a sheep" -03112046 01 a 01 romaic 0 002 + 06976833 n 0101 \ 08780881 n 0101 | relating to modern Greece or its inhabitants or its language -03112177 01 a 02 Romany 0 Romani 0 002 \ 10154186 n 0201 \ 10154186 n 0101 | of or relating to the Gypsies or their language or culture; "Romani nomads"; "Romany folk songs"; "a Gypsy fortune-teller" -03112379 01 a 01 rotational 0 001 \ 00342028 n 0101 | of or pertaining to rotation; "rotational inertia" -03112486 01 a 02 Rwandan 0 Ruandan 0 002 \ 08815046 n 0201 \ 08815046 n 0101 | of or pertaining to Rwanda; "Rwandan mountains" -03112615 01 a 01 Sabahan 0 002 + 08964288 n 0101 \ 08964288 n 0101 | of or pertaining to Sabah or its people; "Sabahan tribesmen" -03112747 01 a 01 Sabbatarian 0 002 + 15164750 n 0101 \ 15164750 n 0101 | pertaining to the Sabbath and its observance -03112867 01 a 01 sabbatical 0 001 \ 15139849 n 0102 | of or relating to sabbatical leave; "sabbatical research project" -03112989 01 a 02 sabbatical 1 sabbatic 0 003 \ 15164750 n 0201 + 15164750 n 0101 \ 15164750 n 0101 | of or relating to the Sabbath; "Friday is a sabbatical day for Muslims" -03113164 01 a 01 sacral 0 002 + 05279407 n 0101 \ 05279407 n 0101 | of or relating to or near the sacrum -03113271 01 a 01 sacrificial 0 002 + 00227595 n 0101 \ 00227595 n 0101 | used in or connected with a sacrifice; "sacrificial lamb" -03113404 01 a 01 Samoan 0 002 + 08991491 n 0101 \ 08991491 n 0101 | of or relating to Samoa or its people or language or culture; "Samoan fishing industry" -03113562 01 a 01 San_Marinese 0 002 + 09729945 n 0101 \ 08992181 n 0101 | of or relating to San Marino or its people; "San Marinese castles" -03113705 01 a 01 Sarawakian 0 003 + 09730077 n 0101 + 08964474 n 0101 \ 08964474 n 0101 | of or relating to Sarawak or its people; "Sarawakian beaches"; "Sarawakian natives" -03113881 01 a 02 satyric 0 satyrical 0 006 + 10552980 n 0201 + 09548111 n 0201 \ 09548111 n 0201 + 10552980 n 0101 + 09548111 n 0101 \ 09548111 n 0101 | of or relating to or having the characteristics of a satyr; "this satyric old man pursues young girls" -03114139 01 a 02 Saudi-Arabian 0 Saudi 0 004 + 09729387 n 0201 \ 08993288 n 0201 + 08993288 n 0101 \ 08993288 n 0101 | of or relating to Saudi Arabia or its people; "the Saudi-Arabian desert"; "the Saudi royal family" -03114359 01 a 03 saxicolous 0 saxatile 0 saxicoline 0 003 \ 13124019 n 0304 \ 13124019 n 0204 \ 13124019 n 0104 | growing on or living among rocks -03114508 01 a 01 Saxon 0 003 ;r 08871007 n 0000 + 09702836 n 0101 \ 09702836 n 0101 | of or relating to or characteristic of the early Saxons or Anglo-Saxons and their descendents (especially the English or Lowland Scots) and their language; "Saxon princes"; "for greater clarity choose a plain Saxon term instead of a latinate one" -03114843 01 a 01 Anglo-Saxon 0 003 + 09701977 n 0101 + 06949591 n 0102 \ 09701977 n 0101 | of or relating to the Anglo-Saxons or their language; "Anglo-Saxon poetry"; "The Anglo-Saxon population of Scotland" -03115053 01 a 02 schismatic 0 schismatical 0 005 + 00386676 n 0201 \ 00386676 n 0201 + 07314078 n 0101 + 00386676 n 0101 \ 00386676 n 0101 | of or relating to or involved in or characteristic of schism; "schismatic sects" -03115277 01 a 02 schizoid 0 schizophrenic 0 003 + 14398523 n 0201 \ 14398523 n 0201 \ 14398523 n 0101 | of or relating to or characteristic of schizophrenia -03115436 01 a 01 scorbutic 0 003 + 14201520 n 0101 + 14201520 n 0102 \ 14201520 n 0101 | of or relating to or having or resembling scurvy; "scorbutic symptoms" -03115598 01 a 01 scotomatous 0 002 + 14556203 n 0101 \ 14556203 n 0101 | relating to scotoma -03115693 01 a 02 Semite 0 Semitic 0 004 + 09639919 n 0201 \ 09639919 n 0201 + 09639919 n 0101 \ 09639919 n 0101 | of or relating to or characteristic of Semites; "Semite peoples" -03115874 01 a 01 Semitic 1 002 + 06986894 n 0101 \ 06986894 n 0101 | of or relating to the group of Semitic languages; "Semitic tongues have a complicated morphology" -03116043 01 a 01 Senegalese 0 002 + 09730824 n 0101 \ 08995862 n 0101 | of or relating to or characteristic of Senegal or its people; "Senegalese villages"; "Senegalese herdsmen" -03116224 01 a 01 sericultural 0 004 + 13555101 n 0101 + 00923303 n 0101 \ 13555101 n 0101 \ 00923303 n 0101 | of or relating to sericulture; "sericultural industry" -03116391 01 a 01 serous 0 002 + 05403149 n 0101 \ 05403149 n 0101 | of or producing or containing serum; "a serous exudate" -03116517 01 a 01 Seychellois 0 002 + 09730951 n 0101 \ 08996483 n 0101 | of the Seychelles or their people; "Seychellois fishermen" -03116651 01 a 03 Thai 0 Tai 0 Siamese 0 003 \ 09036452 n 0303 \ 09036452 n 0201 \ 09036452 n 0101 | of or relating to Thailand; "the Thai border with Laos" -03116809 01 a 03 Thai 1 Tai 1 Siamese 1 005 + 06936149 n 0302 \ 06936149 n 0301 \ 06936149 n 0201 + 06936149 n 0101 \ 06936149 n 0101 | of or relating to the languages of the Thai people; "Thai tones" -03117012 01 a 03 Thai 2 Tai 2 Siamese 2 005 + 09734294 n 0303 \ 09734294 n 0303 \ 09734294 n 0202 + 09734294 n 0101 \ 09734294 n 0101 | of or relating to or characteristic of Thailand or its people; "Siamese kings"; "different Thai tribes live in the north" -03117272 01 a 01 Siberian 0 003 + 09731082 n 0101 + 09005712 n 0101 \ 09005712 n 0101 | of or relating to or characteristic of Siberia or the Siberians; "Siberian natural resources"; "Siberian coal miners"; "the Siberian tundra" -03117503 01 a 01 Sierra_Leonean 0 002 + 08996871 n 0101 \ 08996871 n 0101 | of or relating to Sierra Leone or its people; "Sierra Leonean politics" -03117653 01 a 01 Singaporean 1 004 + 09749614 n 0101 + 08997801 n 0101 + 08997487 n 0101 \ 08997801 n 0101 | of or relating to the city of Singapore; "the Singaporean main street" -03117835 01 a 01 Singaporean 2 005 + 09749614 n 0101 + 08997310 n 0101 + 08997487 n 0101 \ 08997487 n 0101 \ 08997310 n 0101 | of or relating to the island nation of Singapore and its people; "Singaporean rubber" -03118050 01 a 02 Singhalese 0 Sinhalese 0 002 \ 09732047 n 0201 \ 09732047 n 0101 | of or relating to the Sinhalese people; "Sinhalese rebels fighting the Tamils" -03118215 01 a 03 Sinhala 0 Singhalese 1 Sinhalese 1 003 \ 06971741 n 0301 \ 06971741 n 0201 \ 06971741 n 0101 | of or relating to the Sinhalese languages; "the Sinhalese versions of the Ramayana" -03118413 01 a 02 Sri_Lankan 0 Ceylonese 0 003 \ 08718962 n 0201 + 08719100 n 0101 \ 08718962 n 0101 | of or relating to Sri Lanka (formerly Ceylon) or its people or culture; "Sri Lankan beaches"; "Sri Lankan forces fighting the Sinhalese rebels" -03118661 01 a 01 Slav 0 002 + 09676884 n 0101 \ 09676884 n 0101 | speaking a Slavic language; "the Slav population of Georgia" -03118790 01 a 02 Slavonic 0 Slavic 0 005 + 06943771 n 0201 + 09676884 n 0201 \ 06943771 n 0203 + 09676884 n 0101 \ 06943771 n 0103 | of or relating to Slavic languages -03118960 01 a 03 small-capitalization 0 small-capitalisation 0 small-cap 0 003 \ 00952386 n 0301 \ 00952386 n 0202 \ 00952386 n 0101 | of stocks of companies with a market capitalization of less than one billion dollars -03119182 01 a 02 Somalian 0 Somali 0 005 + 09749880 n 0202 + 06991004 n 0201 \ 08998560 n 0201 + 08998560 n 0101 \ 08998560 n 0101 | of or relating to the African republic of Somalia or its people or their language and culture; "Somali coffee is excellent" -03119441 01 a 01 Sotho 0 003 + 09693372 n 0101 + 06995222 n 0101 \ 06995222 n 0101 | of or relating to any of the group of Sotho languages; "Sotho noun classifiers" -03119608 01 a 01 spastic 0 003 + 14094653 n 0102 + 04771738 n 0101 \ 14360459 n 0101 | relating to or characterized by spasm; "a spastic colon"; "spastic paralysis is a spastic form of cerebral palsy" -03119811 01 a 01 spicate 0 002 ;c 06066555 n 0000 \ 13133438 n 0101 | having or relating to spikes; "spicate inflorescence" -03119937 01 a 01 spiny-finned 0 001 \ 02552171 n 0101 | of or relating to fish with spiny fins -03120034 01 a 01 spondaic 0 003 ;c 06170025 n 0000 + 07095775 n 0101 \ 07095775 n 0101 | of or consisting of spondees; "spondaic hexameter" -03120176 01 a 01 stereoscopic 0 003 + 05657515 n 0102 + 04316498 n 0101 \ 05657515 n 0102 | of or relating to stereoscopy; "stereoscopic vision" -03120323 01 a 01 stereoscopic 1 002 + 04316498 n 0101 \ 04316498 n 0101 | of or relating to a stereoscope; "stereoscopic lenses" -03120454 01 a 01 stigmatic 1 004 + 10656488 n 0101 + 14571930 n 0101 + 06794666 n 0102 \ 06794666 n 0102 | pertaining to or resembling or having stigmata -03120610 01 a 01 stingless 0 001 \ 14332085 n 0101 | without a sting -03120681 01 a 01 stipendiary 0 002 + 13294135 n 0101 \ 13294135 n 0101 | pertaining to or of the nature of a stipend or allowance; "stipendiary funds" -03120834 01 a 01 substantival 0 003 ;c 06174404 n 0000 + 06303540 n 0101 \ 06303540 n 0101 | of or relating to or having the nature or function of a substantive (i.e. a noun or noun equivalent); "a substantival constituent" -03121060 01 a 01 gerundial 0 003 ;c 06174404 n 0000 + 06318352 n 0101 \ 06318352 n 0101 | relating to or like a gerund; "the gerundial suffix `-ing'" -03121212 01 a 01 Sudanese 0 002 + 09732170 n 0101 \ 09029457 n 0101 | of or relating to or characteristic of the African Republic of the Sudan or its people; "the Sudanese desert" -03121394 01 a 02 sulphuric 0 sulfuric 0 004 + 14656219 n 0201 \ 14656219 n 0201 + 14656219 n 0103 \ 14656219 n 0101 | of or relating to or containing sulfur; "sulphuric esters" -03121573 01 a 01 Sumatran 0 002 + 09750157 n 0101 \ 08908954 n 0101 | of or relating to the island of Sumatra or its inhabitants; "Sumatran cigars" -03121723 01 a 01 Swazi 2 001 \ 09031233 n 0101 | of or relating to or characteristic of Swaziland or its people or their language -03121855 01 a 01 syphilitic 0 002 + 14133985 n 0101 \ 14133985 n 0101 | of or relating to or infected with syphilis; "syphilitic symptoms" -03121996 01 a 01 systolic 0 001 \ 07401409 n 0101 | of or relating to a systole or happening during a systole -03122108 01 a 01 extrasystolic 0 001 \ 07401604 n 0101 | of or relating to or happening during an extrasystole -03122221 01 a 01 Tahitian 0 002 + 08989941 n 0101 \ 08989941 n 0101 | of or relating to or characteristic of the island of Tahiti or its residents or their language and culture -03122400 01 a 03 Taiwanese 0 Chinese 1 Formosan 0 002 + 08730354 n 0302 \ 08730550 n 0101 | of or relating to or characteristic of the island republic on Taiwan or its residents or their language; "the Taiwanese capital is Taipeh" -03122633 01 a 01 tabular 0 002 + 08266235 n 0101 \ 08266235 n 0101 | of or pertaining to or arranged in table form -03122750 01 a 01 Tamil 0 002 \ 09675393 n 0101 \ 06980315 n 0101 | of or relating to a speaker of the Tamil language or the language itself; "Tamil agglutinative phrases" -03122923 01 a 01 tannic 0 002 + 15067025 n 0101 \ 15067025 n 0101 | derived from tannin -03123013 01 a 01 Tanzanian 0 002 + 09034550 n 0101 \ 09034550 n 0101 | of or relating to the republic of Tanzania or its people -03123143 01 a 01 tarsal 0 003 + 05281874 n 0101 + 05594822 n 0101 \ 05594822 n 0101 | of or relating to or near the tarsus of the foot; "tarsal bones" -03123296 01 a 01 tartaric 0 002 + 15013269 n 0102 \ 15013269 n 0102 | relating to or derived from or resembling tartar; "tartaric acid" -03123434 01 a 01 telephonic 0 002 + 06272290 n 0102 \ 06272290 n 0101 | of or relating to telephony; "telephonic connection" -03123561 01 a 01 terminological 0 002 + 06304059 n 0101 \ 06304059 n 0101 | of or concerning terminology; "terminological disputes" -03123695 01 a 01 terpsichorean 0 002 + 00428270 n 0103 \ 00428270 n 0103 | of or relating to dancing; "her terpsichorean activities" -03123830 01 a 01 tertian 1 001 \ 06859504 n 0101 | of or relating to a tonal system based on major thirds; "a tertian tonal system" -03123964 01 a 01 tertian 0 001 \ 07342495 n 0101 | relating to symptoms (especially malarial fever) that appear every other day; "tertian fever" -03124111 01 a 01 tetanic 0 001 \ 14185803 n 0101 | of or relating to or causing tetanus -03124201 01 a 01 tetanic 1 001 \ 14310504 n 0101 | of or relating to or causing tetany -03124290 01 a 01 tetravalent 0 002 ;c 06084469 n 0000 \ 05034473 n 0101 | haveing a valence of four -03124392 01 a 01 Texan 0 003 + 09745834 n 0101 + 09141526 n 0101 \ 09141526 n 0101 | of or relating to or characteristic of Texas or its residents -03124541 01 a 01 textile 0 001 \ 03309808 n 0101 | of or relating to fabrics or fabric making; "textile research" -03124657 01 a 01 theosophical 0 002 + 05953614 n 0101 \ 05953614 n 0101 | of or relating to theosophy; "theosophical writings" -03124786 01 a 01 thermionic 0 002 + 09457199 n 0101 \ 09457199 n 0101 | of or relating to or characteristic of thermions; "thermionic cathode" -03124931 01 a 01 thermometric 0 003 + 01116360 n 0101 + 04421872 n 0101 \ 01116360 n 0101 | of or relating to thermometry; "helium gas was the thermometric fluid" -03125096 01 a 01 thermostatic 0 002 + 04422875 n 0101 \ 04422875 n 0101 | of or relating to a thermostat; "thermostatic control" -03125227 01 a 01 thespian 0 002 + 09765278 n 0104 \ 07007945 n 0102 | of or relating to drama; "the movie director had thespian cooperation" -03125370 01 a 01 Tobagonian 0 002 + 08756052 n 0101 \ 08756052 n 0101 | of or relating to Tobago or its people; "Tobagonian beaches" -03125505 01 a 01 Togolese 0 001 \ 08759986 n 0101 | of or relating to the African country of Togo or its people; "the Togolese capital" -03125643 01 a 01 Tongan 1 002 + 09037133 n 0101 \ 09037133 n 0101 | of or relating to the island monarchy of Tonga or its people; "Tongan beaches" -03125792 01 a 01 tonsorial 0 001 \ 09838895 n 0101 | of or relating to barbers and barbering; "tonsorial work"; "tonsorial parlor" -03125925 01 a 01 translational 0 002 ! 03092376 a 0101 \ 07446404 n 0101 | of or relating to uniform movement without rotation -03126054 01 a 01 Triassic 0 001 \ 15126750 n 0101 | of or relating to or denoting the first period of the Mesozoic era -03126175 01 a 01 Trinidadian 0 002 + 08755852 n 0101 \ 08755852 n 0101 | of or relating to the island of Trinidad; "Trinidadian rum" -03126310 01 a 01 trihydroxy 0 001 \ 14914775 n 0101 | containing three hydroxyl groups -03126399 01 a 01 trivalent 0 002 ;c 06084469 n 0000 \ 05034473 n 0101 | having a valence of three -03126499 01 a 01 trochaic 0 003 ;c 06170025 n 0000 + 07095653 n 0101 \ 07095653 n 0101 | of or consisting of trochees; "trochaic dactyl" -03126638 01 a 01 Trojan 0 002 + 08788887 n 0101 \ 08788887 n 0101 | of or relating to the ancient city of Troy or its inhabitants; "Trojan cities" -03126787 01 a 01 trophoblastic 0 002 + 01462209 n 0101 \ 01462209 n 0101 | of or relating to the trophoblast; "trophoblastic cancer" -03126922 01 a 01 trophotropic 0 002 + 00862488 n 0101 \ 00862488 n 0101 | of or relating to trophotropism -03127030 01 a 01 Tunisian 1 003 + 09734760 n 0101 + 09037394 n 0101 \ 09037394 n 0101 | of or relating to Tunisia or its inhabitants; "Tunisian archeological sites" -03127197 01 a 01 Tunisian 2 001 \ 09037838 n 0101 | of or relating to the city of Tunis or its residents; "Tunisian markets" -03127324 01 a 01 Turkic 0 001 \ 06926458 n 0101 | of or relating to the people who speak the Turkic language -03127435 01 a 01 tutorial 0 003 + 07148022 n 0101 + 09931418 n 0103 \ 09931418 n 0103 | of or relating to tutors or tutoring; "tutorial sessions" -03127583 01 a 01 Ugandan 0 001 \ 09043052 n 0101 | of or relating to or characteristic of Uganda or its people; "Ugandan game parks" -03127718 01 a 01 uric 0 001 \ 14855724 n 0101 | in or relating to or obtained from urine; "uric acid" -03127822 01 a 01 uricosuric 0 001 \ 14855724 n 0101 | acting to increase the excretion of uric acid in the urine -03127937 01 a 01 uvular 0 002 + 05309245 n 0101 \ 05309245 n 0101 | of or relating to or associated with the uvula; "the uvular r" -03128070 01 a 01 vaginal 0 002 + 05521111 n 0101 \ 05521111 n 0101 | of or relating to the vagina; "vaginal suppository" -03128193 01 a 01 valvular 0 003 + 05395286 n 0101 + 04519153 n 0101 \ 04519153 n 0101 | relating to or operating by means of valves -03128327 01 a 01 vehicular 0 002 + 04524313 n 0101 \ 04524313 n 0101 | of or relating to or intended for (motor) vehicles; "vehicular traffic" -03128472 01 a 01 vestal 0 002 + 09471224 n 0101 \ 09564177 n 0101 | of or relating to Vesta; "vestal virgin" -03128583 01 a 01 vestiary 0 002 + 03051540 n 0103 \ 03051540 n 0101 | relating to clothing (especially vestments) -03128699 01 a 01 vestmental 0 002 + 04532106 n 0101 \ 04532106 n 0101 | of or relating to or resembling a vestment -03128816 01 a 01 veterinary 0 003 + 10749715 n 0102 \ 10749715 n 0101 \ 06065423 n 0101 | of or relating to veterinarians or veterinary medicine -03128963 01 a 01 vibrionic 0 002 + 01364162 n 0101 \ 01364008 n 0101 | caused by bacteria of the genus Vibrio; "vibrionic dysentery" -03129098 01 a 01 viceregal 0 002 + 10751785 n 0101 \ 10751785 n 0101 | of or relating to a viceroy; "the viceregal visit" -03129222 01 a 01 Vietnamese 0 004 \ 09163192 n 0101 \ 06937229 n 0101 + 09747191 n 0101 \ 09747191 n 0101 | of or relating to or characteristic of Vietnam or its people or its language ; "the Vietnamese countryside"; the Vietnamese tones"; "Vietnamese boat people" -03129490 01 a 01 vocative 0 003 ;c 06172789 n 0000 + 06312237 n 0101 \ 06312237 n 0101 | relating to a case used in some languages; "vocative verb endings" -03129648 01 a 02 voyeuristic 0 voyeuristical 0 008 + 10761326 n 0201 + 00738372 n 0201 \ 00738372 n 0201 \ 10761326 n 0201 + 00738372 n 0101 + 10761326 n 0101 \ 00738372 n 0101 \ 10761326 n 0101 | of or relating to voyeurs or voyeurism; "his voyeuristic pleasures" -03129915 01 a 01 weatherly 0 003 ;c 04128837 n 0000 + 04774901 n 0101 \ 04774901 n 0101 | (of a sailing vessel) making very little leeway when close-hauled -03130073 01 a 02 Welsh 0 Cambrian 0 006 + 09747329 n 0203 + 08894456 n 0203 \ 08894456 n 0203 + 09747329 n 0102 + 06961557 n 0101 \ 08894456 n 0101 | of or relating to or characteristic of Wales or its people or their language; "the Welsh coast"; "Welsh syntax" -03130337 01 a 03 wheaten 0 whole-wheat 0 wholemeal 0 003 \ 07803545 n 0301 \ 07803545 n 0201 \ 07803545 n 0101 | of or relating to or derived from wheat; "wheaten bread" -03130509 01 a 01 Wiccan 0 001 \ 06245462 n 0101 | of or relating to Wicca -03130585 01 a 01 oaten 0 001 \ 07804152 n 0101 | of or related to or derived from oats; "oaten bread" -03130689 01 a 02 woolen 0 woollen 0 004 + 04599235 n 0203 \ 04599235 n 0201 + 04599235 n 0102 \ 04599235 n 0101 | of or related to or made of wool; "a woolen sweater" -03130858 01 a 01 xerographic 0 002 + 00904904 n 0101 \ 00904904 n 0101 | of or relating to xerography -03130962 01 a 01 Yemeni 0 002 + 09750770 n 0101 \ 09164561 n 0101 | of or relating to or characteristic of Yemen or its inhabitants; "Yemeni mountains" -03131116 01 a 02 Zairean 0 Zairese 0 005 + 09751622 n 0201 \ 08734385 n 0203 + 09751622 n 0102 + 08734385 n 0103 \ 08734385 n 0103 | of or relating to or characteristic of Zaire or its people; "Zairean elections" -03131331 01 a 01 Zambian 0 003 + 09751772 n 0101 + 09165613 n 0101 \ 09165613 n 0101 | of or relating to or characteristic of Zambia or its people -03131480 01 a 01 New_Zealander 0 001 \ 08971914 n 0101 | of or relating to or characteristic of New Zealand or its people; "New Zealander sheep farms" -03131633 01 a 01 zenithal 0 002 + 08684769 n 0101 \ 08684769 n 0101 | relating to or located at or near the zenith -03131750 01 a 01 Zimbabwean 0 003 + 09751895 n 0101 + 09167101 n 0101 \ 09167101 n 0101 | of or relating to or characteristic of Zimbabwe or its people -03131904 01 a 01 Zionist 0 002 + 10805501 n 0101 \ 10805501 n 0101 | relating to or characteristic of a supporter of Zionism; "the Zionist leader Theodor Herzl" -03132067 01 a 01 Zionist 1 001 \ 06663463 n 0101 | relating to or characteristic of Zionism; "the Zionist movement" -03132185 01 a 02 zonal 0 zonary 0 004 + 08541841 n 0201 + 08509442 n 0201 + 08688247 n 0201 \ 05611062 n 0101 | relating to or of the nature of a zone; "the zonal frontier" -03132360 01 a 01 bizonal 0 001 \ 08509442 n 0101 | relating to or concerned with the combined affairs of two administrative zones; "Bizonal currency was used in occupied Germany after World War II" -03132560 01 a 01 zodiacal 0 003 + 08685188 n 0101 + 04615456 n 0101 \ 08685188 n 0101 | relating to or included in the zodiac; "zodiacal constellations" -03132715 01 a 01 ammoniated 0 001 \ 14744120 n 0101 | combined or treated with ammonia; "ammoniated mercury" -03132826 01 a 01 Briton 0 002 + 09700964 n 0102 \ 09688366 n 0101 | characteristic of or associated with the Britons; "the Briton inhabitants of England" -03132982 01 a 01 carroty 0 002 + 12937678 n 0101 \ 07730207 n 0101 | resembling the bright orange of the root of the carrot plant; "a boy with carroty hair" -03133141 01 a 04 philhellenic 0 philhellene 0 Graecophile 0 Graecophilic 0 006 + 10422540 n 0403 + 10422540 n 0303 + 10422540 n 0201 \ 10422540 n 0201 + 10422540 n 0101 \ 10422540 n 0101 | characterized by a love of Greece and Grecian things; "the Philhellenic Society" -03133413 01 a 01 boreal 0 001 \ 13831176 n 0101 | toward or located in the north; "the boreal signs of the Zodiac" -03133530 01 a 01 boreal 1 002 + 11487950 n 0104 \ 11487950 n 0101 | relating to or marked by qualities associated with the north wind -03133666 01 a 02 axillary 2 alar 0 003 ;c 06066555 n 0000 + 13130423 n 0101 \ 13130423 n 0101 | of or relating to the axil -03133791 01 a 01 paniculate 0 002 ;c 06066555 n 0000 \ 13132656 n 0101 | having a panicle -03133883 01 a 01 phyllodial 0 003 ;c 06066555 n 0000 + 13131752 n 0101 \ 13131752 n 0101 | having a phyllode -03133994 01 a 02 rupestral 0 rupicolous 0 002 \ 14696793 n 0201 \ 14696793 n 0101 | composed of or inscribed on rock; "rupestral drawings in the caves of Northern Spain" -03134166 01 a 01 Kafkaesque 0 001 \ 11095731 n 0101 | relating to or in the manner of Franz Kafka or his writings -03134282 01 a 01 Faustian 0 002 + 09599023 n 0101 \ 09599023 n 0101 | pertaining to or resembling or befitting Faust or Faustus especially in insatiably striving for worldly knowledge and power even at the price of spiritual values; "a Faustian pact with the Devil" -03134550 01 a 01 invitational 0 002 + 07186148 n 0101 \ 07186148 n 0101 | pertaining to or characteristic of an invitation -03134675 01 a 01 involucrate 0 002 ;c 06066555 n 0000 \ 13155305 n 0101 | having an involucre -03134771 01 a 01 scalar 0 002 + 05864351 n 0101 \ 13815342 n 0101 | of or relating to a directionless magnitude (such as mass or speed etc.) that is completely specified by its magnitude; "scalar quantity" -03134979 01 a 01 scalar 1 002 + 06856568 n 0101 \ 06856568 n 0101 | of or relating to a musical scale; "he played some basic scalar patterns on his guitar" -03135137 01 a 01 anthropocentric 0 003 + 06201476 n 0101 + 06201476 n 0102 \ 06201476 n 0101 | human-centered; "our anthropocentric view of the world" -03135290 01 a 01 ethnocentric 0 001 \ 06201667 n 0101 | centered on a specific ethnic group, usually one's own -03135403 01 a 01 deictic 0 003 + 06289693 n 0101 + 06179985 n 0101 \ 06179985 n 0101 | relating to or characteristic of a word whose reference depends on the circumstances of its use; "deictic pronouns" -03135608 01 a 02 shallow-draft 0 shallow-draught 0 002 \ 05135155 n 0201 \ 05135155 n 0101 | of vessels whose keel is not far below the waterline; "a shallow-draft river boat" -03135786 01 a 02 shamanist 0 shamanistic 0 004 + 06245084 n 0201 + 06244852 n 0201 \ 06244852 n 0201 \ 06244852 n 0101 | of or relating to shamanism -03135937 01 a 01 shambolic 0 001 \ 14497679 n 0101 | (British slang) disorderly or chaotic; "it's a shambolic system" -03136057 01 a 01 shaped 0 001 \ 00027807 n 0101 | having the shape of; "a square shaped playing field" -03136162 01 a 01 sharp-pointed 0 001 \ 03974215 n 0101 | having a sharp point -03136242 01 a 01 shelflike 0 001 \ 04190052 n 0101 | resembling a shelf (or considered to resemble a shelf); "shelflike table" -03136371 01 a 01 Shona 0 001 \ 10591239 n 0101 | of or relating to or characteristic of the culture of the Shonas -03136487 01 a 01 short-handled 0 001 \ 03485997 n 0101 | having a short handle -03136568 01 a 01 short-order 0 001 \ 07279968 n 0101 | of or relating to food that can be prepared quickly; "a short-order cook" -03136699 01 a 01 side-to-side 0 001 \ 05551318 n 0101 | alternately left and right with respect to a central point; "the side-to-side motion of the boat" -03136855 01 a 01 striate 0 001 \ 13908348 n 0101 | marked with stria or striations -03136940 01 a 01 sulcate 0 001 \ 05223550 n 0101 | having deep narrow furrows or grooves -03137031 01 a 01 hymenal 0 002 + 05521934 n 0101 \ 05521934 n 0101 | of or relating to the hymen -03137130 01 a 01 hymeneal 0 002 \ 01036996 n 0102 \ 01036996 n 0101 | of or relating to a wedding or marriage; "hymeneal rites" -03137260 01 a 02 servomechanical 0 servo 0 003 + 04176295 n 0201 \ 04176295 n 0202 \ 04176295 n 0102 | of or involving servomechanisms -03137397 01 a 02 onomatopoeic 0 onomatopoetic 0 003 + 07104574 n 0201 \ 07104574 n 0201 \ 07104574 n 0101 | of or relating to or characterized by onomatopoeia -03137558 01 a 01 commercial 0 002 + 01090446 n 0101 \ 01090446 n 0101 | of or relating to commercialism; "a commercial attache"; "commercial paper"; "commercial law" -03137726 01 a 01 dictyopteran 0 001 \ 02232606 n 0101 | of or relating to or belonging to the order Dictyoptera -03137840 01 a 01 isopteran 0 001 \ 02222718 n 0101 | relating to or characteristic of insects of the order Isoptera -03137958 01 a 01 obligational 0 001 \ 06773150 n 0101 | relating or constituting or qualified to create a legal or financial obligation; "obligational authority" -03138122 01 a 01 oscine 0 002 + 01525720 n 0101 \ 01525720 n 0102 | of or relating to the songbirds -03138224 01 a 03 osseous 0 osteal 0 bony 0 004 + 05269901 n 0301 \ 14757848 n 0301 \ 14757848 n 0201 \ 14757848 n 0101 | composed of or containing bone; "osseous tissue" -03138396 01 a 02 ossicular 0 ossiculate 0 003 \ 05277728 n 0201 + 05277728 n 0101 \ 05277728 n 0101 | pertaining to the ossicles in the middle ear -03138545 01 a 01 ossiferous 0 001 \ 05269901 n 0101 | containing bones (especially fossil bones); "ossiferous caves" -03138664 01 a 01 osteal 1 001 \ 05269901 n 0101 | relating to bone or to the skeleton -03138752 01 a 01 abolitionary 0 002 + 00228283 n 0101 \ 00228283 n 0101 | relating to or favoring abolition, especially abolition of slavery -03138895 01 a 01 abomasal 0 002 + 02399942 n 0101 \ 02399942 n 0101 | relating to the abomasum (the fourth compartment of the stomach of ruminants) -03139045 01 a 02 absolutist 0 absolutistic 0 005 + 08440630 n 0202 + 06213688 n 0201 \ 06213688 n 0201 + 09755398 n 0101 \ 06213688 n 0101 | pertaining to the principle of totalitarianism -03139235 01 a 01 accentual 0 003 + 06822198 n 0101 + 07085375 n 0103 \ 07085375 n 0103 | of or pertaining to accent or stress -03139363 01 a 01 accessional 0 001 \ 13253423 n 0101 | of or constituting an accession -03139452 01 a 01 accipitrine 0 001 \ 01606335 n 0101 | of or relating to or belonging to the genus Accipiter (or to typical hawks) -03139585 01 a 01 accommodational 0 002 + 00193225 n 0101 \ 00193225 n 0101 | of or relating to the accommodation of the lens of the eye; "accommodational strain" -03139749 01 a 02 acculturational 0 acculturative 0 005 + 00159880 v 0201 \ 05757049 n 0201 + 05757049 n 0101 + 01128984 n 0103 \ 05757049 n 0101 | of or relating to acculturation -03139930 01 a 01 centromeric 0 002 + 05444324 n 0101 \ 05444324 n 0101 | pertaining to the dense specialized portion of a chromosome to which the spindle attaches during mitosis -03140110 01 a 01 acentric 0 001 \ 05444324 n 0101 | lacking a centromere; "an acentric chromosome fragment" -03140220 01 a 01 acrocentric 0 001 \ 05444324 n 0101 | having a subterminal centromere; "an acrocentric chromosome" -03140338 01 a 01 metacentric 0 001 \ 05444324 n 0101 | having two equal arms because of the median position of the centromere; "a metacentric chromosome" -03140494 01 a 01 metacentric 1 003 ;c 00912822 n 0000 + 05866822 n 0101 \ 05866822 n 0101 | of or relating to the metacenter -03140621 01 a 01 mud-brick 0 001 \ 03796522 n 0101 | of or incorporating mud bricks -03140707 01 a 01 telocentric 0 001 \ 05444324 n 0101 | having the form of a straight rod because the centromere is in a terminal position; "a telocentric chromosome" -03140875 01 a 01 anaphylactic 0 002 + 14533547 n 0101 \ 14533547 n 0101 | related to the hypersensitivity known as anaphylaxis; "anaphylactic shock" -03141026 01 a 01 bronchoscopic 0 002 + 02905886 n 0101 \ 02905886 n 0101 | of or relating to an instrument for examining the interior of the bronchi -03141177 01 a 01 bryophytic 0 003 ;c 06066555 n 0000 + 11536778 n 0101 \ 11537327 n 0101 | relating to plants of the division Bryophyta -03141315 01 a 01 bulbaceous 0 002 + 13134059 n 0101 \ 13134059 n 0101 | producing or growing from bulbs -03141421 01 a 01 bulbed 0 001 \ 13134059 n 0101 | having a bulb -03141487 01 a 01 bulbar 0 002 + 05495172 n 0103 \ 05495172 n 0103 | involving the medulla oblongata; "bulbar paralysis" -03141609 01 a 01 racial 0 002 + 07967982 n 0101 \ 07967982 n 0101 | of or related to genetically distinguished groups of people; "racial groups" -03141756 01 a 01 scalic 0 002 + 06856568 n 0101 \ 06856568 n 0101 | of or related to a musical scale; "scalic patterns" -03141878 01 a 01 rosaceous 0 002 + 12619306 n 0101 \ 12619306 n 0101 | of or pertaining to or characteristic of plants of the family Rosaceae -03142022 01 a 01 Rosicrucian 0 001 \ 10539462 n 0101 | of or relating to the Rosicrucians -03142114 01 a 03 streptococcal 0 streptococcic 0 strep 0 005 + 01381044 n 0303 \ 01381044 n 0301 \ 01381044 n 0201 + 01381044 n 0101 \ 01381044 n 0101 | of or relating to or caused by streptococci -03142313 01 a 01 subclavian 0 001 \ 05274105 n 0101 | situated beneath the clavicle -03142399 01 a 01 thalloid 0 001 \ 11532017 n 0101 | of or relating to or resembling or consisting of a thallus -03142512 01 a 01 thallophytic 0 002 + 11531701 n 0101 \ 11531701 n 0101 | pertaining to or characteristic of thallophytes -03142636 01 a 01 ulcerative 0 003 + 00537153 v 0101 + 00019982 v 0101 \ 14211609 n 0102 | of or relating to or characterized by ulceration; "ulcerative colitis" -03142799 01 a 01 ultramicroscopic 0 002 + 04506688 n 0101 \ 04506688 n 0101 | too small to be seen without an ultramicroscope -03142927 01 a 01 ultramontane 0 001 \ 05987650 n 0101 | of or relating to ultramontanism -03143018 01 a 01 undescended 0 001 \ 05525391 n 0102 | (of the testis) remaining in the abdomen instead of descending into the scrotum -03143155 01 a 02 undulatory 0 undulant 0 002 \ 07352048 n 0201 \ 07352048 n 0101 | resembling waves in form or outline or motion -03143286 01 a 01 universalistic 1 001 \ 05869584 n 0101 | of or relating to the whole -03143374 01 a 01 point-of-sale 0 001 \ 08620061 n 0101 | of or relating to or being the location where something is purchased -03143502 01 a 01 vasomotor 0 002 \ 01150096 n 0101 \ 00366207 n 0101 | relating to the nerves and muscles that cause the blood vessels to constrict or dilate -03143662 01 a 01 vesical 0 002 + 05512139 n 0102 \ 05512139 n 0102 | of or relating to a bladder (especially the urinary bladder) -03143794 01 a 02 viscometric 0 viscosimetric 0 006 + 01117318 n 0202 + 04538249 n 0202 \ 04538249 n 0202 + 01117318 n 0101 + 04538249 n 0101 \ 04538249 n 0101 | of or relating to the measurement of viscosity -03144004 01 a 02 viricidal 0 virucidal 0 004 + 15048293 n 0202 \ 15048293 n 0202 + 15048293 n 0101 \ 15048293 n 0101 | tending to destroy viruses -03144152 01 a 01 vitiliginous 0 002 + 14232945 n 0101 \ 14232945 n 0101 | of or relating to or having vitiligo -03144265 01 a 01 ratlike 0 001 \ 02331046 n 0101 | resembling or characteristic of a rat -03144356 01 a 01 salamandriform 0 001 \ 01629276 n 0101 | shaped like a salamander -03144441 01 a 01 salvific 0 001 \ 00094001 n 0102 | pertaining to the power of salvation or redemption -03144546 01 a 01 shakedown 0 001 \ 07369922 n 0101 | intended to test a new system under operating conditions and to familiarize the operators with the system; "a shakedown cruise" -03144729 01 a 01 sidearm 0 001 \ 00106272 n 0101 | (of pitches) made with the arm moving parallel to the ground; "a sidearm pitch" -03144862 01 a 01 varicelliform 0 001 \ 14132975 n 0102 | resembling the rash of chickenpox -03144955 01 a 03 wedge-shaped 0 cuneal 0 cuneiform 1 001 \ 13919547 n 0101 | shaped like a wedge -03145054 01 a 01 wiry 0 002 + 04594218 n 0101 \ 04594218 n 0101 | of or relating to wire -03145145 01 a 01 WYSIWYG 0 001 \ 06572654 n 0101 | relating to or being a word processing system that prints the text exactly as it appears on the computer screen -03145310 01 a 01 X-linked 0 001 \ 05442594 n 0101 | relating to genes or characteristics or conditions carried on the X chromosome; "an X-linked mutation" -03145467 01 a 02 yeasty 0 yeastlike 0 004 \ 15106271 n 0201 + 15106271 n 0101 + 13025647 n 0101 \ 13025647 n 0101 | of or resembling or containing yeast -03145622 01 a 01 Yuman 0 001 \ 09673091 n 0101 | of or relating to the language or culture of the Yuma people -03145734 01 a 01 Zapotec 0 001 \ 09649372 n 0101 | of or relating to the language or culture of the Zapotec people -03145851 01 a 01 zero 0 001 \ 08001344 n 0101 | of or relating to the null set (a set with no members) -03145956 01 a 01 zoonotic 0 002 + 14276649 n 0101 \ 14276649 n 0101 | of or relating to or constituting zoonosis; "the Ebola virus is believed to be zoonotic" -03146117 01 a 01 zygomatic 0 002 + 05284851 n 0101 \ 05602835 n 0101 | of or relating to the cheek region of the face -03146237 01 a 01 zymoid 0 001 \ 14732946 n 0101 | resembling an enzyme -03146310 01 a 04 .22_caliber 0 .22-caliber 0 .22_calibre 0 .22-calibre 0 004 \ 05103283 n 0404 \ 05103283 n 0304 \ 05103283 n 0203 \ 05103283 n 0103 | of or relating to the bore of a gun (or its ammunition) that measures twenty-two hundredths of an inch in diameter; "a .22 caliber pistol" -03146602 01 a 04 .38_caliber 0 .38-caliber 0 .38_calibre 0 .38-calibre 0 004 \ 05103283 n 0404 \ 05103283 n 0304 \ 05103283 n 0203 \ 05103283 n 0103 | of or relating to the bore of a gun (or its ammunition) that measures thirty-eight hundredths of an inch in diameter; "a .38 caliber shell" -03146895 01 a 04 .45_caliber 0 .45-caliber 0 .45_calibre 0 .45-calibre 0 004 \ 05103283 n 0404 \ 05103283 n 0304 \ 05103283 n 0203 \ 05103283 n 0103 | of or relating to the bore of a gun (or its ammunition) that measures forty-five hundredths of an inch in diameter -03147163 01 a 01 nosohusial 0 000 | taking place related or acquired under home healthcare; "nosohusial infections" -03147281 44 a 01 avenged 0 002 ! 03147408 a 0101 < 01153486 v 0102 | for which vengeance has been taken; "an avenged injury" -03147408 44 a 01 unavenged 0 002 ! 03147281 a 0101 < 01153486 v 0102 | for which vengeance has not been taken; "an unavenged murder" -03147543 44 a 01 beaten 0 001 < 01624897 v 0101 | formed or made thin by hammering; "beaten gold" -03147643 44 a 02 calibrated 0 graduated 0 002 < 01589497 v 0201 < 01589497 v 0101 | marked with or divided into degrees; "a calibrated thermometer" -03147793 44 a 01 cantering 0 001 < 01959340 v 0101 | riding at a gait between a trot and a gallop; "the cantering soldiers" -03147919 44 a 02 collected 0 gathered 0 004 ! 03148137 a 0202 < 01380638 v 0201 ! 03148137 a 0101 < 01380638 v 0103 | brought together in one place; "the collected works of Milton"; "the gathered folds of the skirt" -03148137 44 a 02 uncollected 0 ungathered 0 004 ! 03147919 a 0202 < 01380638 v 0201 ! 03147919 a 0101 < 01380638 v 0103 | not brought together in one place; "uncollected garbage in the streets" -03148333 44 a 01 contested 0 002 < 00869596 v 0101 ! 03148487 a 0101 | disputed or made the object of contention or competition; "a contested election" -03148487 44 a 01 uncontested 0 002 < 00869596 v 0101 ! 03148333 a 0101 | not disputed and not made the object of contention or competition; "uncontested authority" -03148653 44 a 01 corbelled 0 001 < 02352824 v 0101 | having a corbel -03148724 44 a 01 elapsed 0 001 < 02072849 v 0101 | (of time) having passed or slipped by; "elapsed time" -03148831 44 a 01 forced 0 001 < 01871979 v 0102 | produced by or subjected to forcing; "forced-air heating"; "furnaces of the forced-convection type"; "forced convection in plasma generators" -03149025 44 a 01 hammered 0 001 < 01675245 v 0102 | shaped or worked with a hammer and often showing hammer marks; "a bowl of hammered brass" -03149169 44 a 02 hand-held 0 handheld 0 002 < 01216670 v 0201 < 01216670 v 0101 | small and light enough to be operated while you hold it in your hands; "a hand-held computer" -03149347 44 a 01 held 0 001 < 02441897 v 0101 | occupied or in the control of; often used in combination; "enemy-held territory" -03149478 44 a 01 streaming 0 001 < 00069012 v 0101 | exuding a bodily fluid in profuse amounts; "his streaming face"; "her streaming eyes" -03149619 44 a 01 surmounted 0 001 < 02694548 v 0101 | having something on top; "columns surmounted by statues" -03149732 44 a 01 filled 0 002 ! 03149843 a 0101 < 01183573 v 0103 | of purchase orders that have been filled -03149843 44 a 01 unfilled 0 002 ! 03149732 a 0101 < 01183573 v 0103 | of purchase orders that have not been filled -03149960 44 a 01 fitted 0 001 < 02659763 v 0101 | being the right size and shape to fit as desired; "a fitted overcoat"; "he quickly assembled the fitted pieces" -03150124 44 a 02 hypophysectomized 0 hypophysectomised 0 002 < 00181005 v 0202 < 00181005 v 0101 | having the pituitary gland removed by surgery; "hypophysectomized tadpoles" -03150301 44 a 01 malted 0 002 ! 03150431 a 0101 < 00117757 v 0101 | of grain that has been converted into malt; "malted barley" -03150431 44 a 01 unmalted 0 002 ! 03150301 a 0101 < 00117757 v 0101 | of grain that has not been converted into malt; "unmalted barley" -03150569 44 a 01 marched_upon 0 001 < 01996735 v 0101 | being or having been trodden or marched on -03150670 44 a 02 mercerized 0 mercerised 0 002 < 00185698 v 0201 < 00185698 v 0101 | of cotton thread that has been treated with sodium hydroxide to shrink it and increase its luster and affinity for dye; "mercerized cotton" -03150897 44 a 01 mounded_over 0 001 < 01660547 v 0101 | having a wound formed over it -03150985 44 a 01 operating 0 001 < 01525666 v 0103 | involved in a kind of operation; "the operating conditions of the oxidation pond" -03151122 44 a 02 oxidized 0 oxidised 0 002 < 00238867 v 0202 < 00238867 v 0101 | combined with or having undergone a chemical reaction with oxygen; "the oxidized form of iodine" -03151302 44 a 01 parked 0 001 < 01493380 v 0101 | that have been left; "there were four parked cars across the street" -03151423 44 a 02 pasteurized 0 pasteurised 0 002 < 00364629 v 0202 < 00364629 v 0101 | having been subjected to pasteurization in order to halt fermentation -03151582 44 a 02 unpasteurized 0 unpasteurised 0 002 < 00364629 v 0202 < 00364629 v 0101 | not having undergone pasteurization -03151711 44 a 02 penciled 0 pencilled 0 002 < 01688604 v 0201 < 01688604 v 0101 | drawn or written with a pencil; "a penciled sketch"; "the penciled message" -03151871 44 a 01 pitched 0 001 < 00298420 v 0101 | (of sound) set to a certain pitch or key; usually used as a combining form; "high-pitched" -03152015 44 a 01 played 0 002 ;c 00455599 n 0000 < 01072949 v 0101 | (of games) engaged in; "the loosely played game" -03152135 44 a 01 plugged 0 001 < 00123170 v 0101 | (of a coin) altered by the insertion of a plug of base metal -03152249 44 a 01 posed 0 002 ! 03152350 a 0101 < 02142775 v 0102 | arranged for pictorial purposes -03152350 44 a 01 unposed 0 002 ! 03152249 a 0101 < 02142775 v 0102 | not arranged for pictorial purposes; "unposed photographs" -03152480 44 a 01 posted 0 001 < 00991683 v 0101 | publicly announced; "the posted speed limit" -03152577 44 a 01 preconceived 0 001 < 01633343 v 0102 | (of an idea or opinion) formed beforehand; especially without evidence or through prejudice; "certain preconceived notions" -03152759 44 a 01 punishing 0 001 < 02499629 v 0101 | resulting in punishment; "the king imposed a punishing tax" -03152874 44 a 01 pursued 0 001 < 02000868 v 0101 | followed with enmity as if to harm; "running and leaping like a herd of pursued antelopes" -03153018 44 a 01 ranging 0 001 < 01881180 v 010a | wandering freely; "at night in bed...his slowly ranging thoughts...encountered her" -03153155 44 a 01 re-created 0 001 < 01619354 v 0101 | created anew; "this re-created literalness" -03153255 44 a 01 regenerating 0 001 < 00167535 v 0101 | that are generating anew; "regenerating fibers" -03153361 44 a 04 ridged 0 carinate 0 carinated 0 keeled 0 002 + 01517966 n 0201 < 00144446 v 0101 | having a ridge or shaped like a ridge or suggesting the keel of a ship; "a carinate sepal" -03153554 44 a 02 sanitized 0 sanitised 0 002 < 00554468 v 0202 < 00554468 v 0101 | made sanitary -03153653 44 a 01 shrieked 0 001 < 00914420 v 0101 | uttered in a shrill scream as of pain or terror -03153755 44 a 01 sintered 0 001 < 01661096 v 0101 | formed into a mass by heat and pressure -03153849 44 a 01 sluicing 0 001 < 01853882 v 0101 | pouring from or as if from a sluice; "the sluicing rain" -03153960 44 a 01 spray-dried 0 001 < 00215661 v 0101 | dried by bringing a sprayed substance (e.g. milk or soap) into contact with hot air and recovering it in the form of a powder -03154143 44 a 01 squashed 0 001 < 01593937 v 0101 | that has been violently compressed; "the squashed looking nakedness of the fledgling birds" -03154289 44 a 01 stacked 0 001 < 01503404 v 0101 | arranged in a stack -03154362 44 a 01 strung 0 001 < 01359432 v 0101 | that is on a string; "keys strung on a red cord" -03154463 44 a 02 sublimed 0 sublimated 0 002 < 00365810 v 0202 < 00365810 v 0101 | passing or having passed from the solid to the gaseous state (or vice versa) without becoming liquid -03154649 44 a 02 thoriated 0 tittering 0 002 < 00030142 v 0202 < 00497391 v 0101 | being or sounding of nervous or suppressed laughter -03154786 44 a 01 transpiring 0 001 < 02066757 v 0101 | that is passing through; "transpiring gas" -03154886 44 a 01 sought 0 001 < 01315613 v 0102 | that is looked for; "the long sought relatives" -03154986 44 a 01 closed-captioned 0 002 ;c 06277280 n 0000 < 02323870 v 0101 | broadcast with captions that are seen only on receivers having special equipment; can be provided for hard-of-hearing viewers -03155193 44 a 01 saponified 0 002 ! 03155306 a 0101 < 00538571 v 0101 | converted into soap; "saponified oils" -03155306 44 a 01 unsaponified 0 002 ! 03155193 a 0101 < 00538571 v 0101 | not converted into soap; "unsaponified fat" diff --git a/corpora/en/wordnet/dict/data.adv b/corpora/en/wordnet/dict/data.adv deleted file mode 100644 index e6a33a774..000000000 --- a/corpora/en/wordnet/dict/data.adv +++ /dev/null @@ -1,3650 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -00001740 02 r 01 a_cappella 0 000 | without musical accompaniment; "they performed a cappella" -00001837 02 r 03 AD 0 A.D. 0 anno_Domini 0 000 | in the Christian era; used before dates after the supposed year Christ was born; "in AD 200" -00001981 02 r 03 CE 0 C.E. 0 Common_Era 0 000 | of the period coinciding with the Christian era; preferred by some writers who are not Christians; "in 200 CE" -00002142 02 r 03 BC 0 B.C. 0 before_Christ 0 000 | before the Christian era; used following dates before the supposed year Christ was born; "in 200 BC" -00002296 02 r 02 BCE 0 B.C.E. 0 000 | of the period before the Common Era; preferred by some writers who are not Christians; "in 200 BCE" -00002436 02 r 03 horseback 0 ahorse 0 ahorseback 0 000 | on the back of a horse; "he rode horseback to town"; "managed to escape ahorse"; "policeman patrolled the streets ahorseback" -00002621 02 r 05 barely 0 hardly 0 just 4 scarcely 0 scarce 0 000 | only a very short time before; "they could barely hear the speaker"; "we hardly knew them"; "just missed being hit"; "had scarcely rung the bell when the door flew open"; "would have scarce arrived before she would have found some excuse to leave"- W.B.Yeats -00002950 02 r 01 just 6 000 | exactly at this moment or the moment described; "we've just finished painting the walls, so don't touch them"; -00003093 02 r 02 hardly 2 scarcely 2 001 \ 00016756 a 0201 | almost not; "he hardly ever goes fishing"; "he was hardly more than sixteen years old"; "they scarcely ever used the emergency generator" -00003294 02 r 01 anisotropically 0 001 \ 01361107 a 0101 | in an anisotropic manner -00003380 02 r 01 annoyingly 0 001 \ 00089550 a 0101 | in an annoying manner or to an annoying degree -00003483 02 r 03 basically 0 fundamentally 0 essentially 1 002 \ 00900616 a 0301 \ 01856419 a 0201 | in essence; at bottom or by one's (or its) very nature; "He is basically dishonest"; "the argument was essentially a technical one"; "for all his bluster he is in essence a shy person" -00003771 02 r 01 blessedly 0 001 \ 00670741 a 0101 | in a blessed manner -00003846 02 r 01 boiling 0 001 ;u 07075172 n 0000 | extremely; "boiling mad" -00003925 02 r 01 enviably 0 001 \ 00733541 a 0101 | in an enviable manner; "she was enviably fluent in French" -00004038 02 r 01 pointedly 0 001 \ 00765862 a 0101 | in such a manner as to make something clearly evident; "he pointedly ignored the question" -00004184 02 r 01 negatively 0 001 \ 01818234 a 0101 | in a negative way; "he was negatively inclined" -00004288 02 r 01 negatively 1 001 \ 01128508 a 0101 | in a harmful manner; "he was negatively affected" -00004394 02 r 01 kindly 0 002 \ 01372049 a 0101 ! 00004567 r 0101 | in a kind manner or out of kindness; "He spoke kindly to the boy"; "she kindly overlooked the mistake" -00004567 02 r 01 unkindly 0 002 ! 00004394 r 0101 \ 01373728 a 0101 | in an unkind manner or with unkindness; "The teacher treats the children unkindly" -00004722 02 r 05 merely 0 simply 0 just 0 only 2 but 1 002 \ 01792573 a 0203 \ 01792573 a 0102 | and nothing more; "I was merely asking"; "it is simply a matter of time"; "just a scratch"; "he was only a child"; "hopes that last but a moment" -00004967 02 r 01 simply 2 000 | absolutely; altogether; really; "we are simply broke" -00005055 02 r 02 plainly 1 simply 1 000 | in a simple manner; without extravagance or embellishment; "she was dressed plainly"; "they lived very simply" -00005210 02 r 01 anciently 0 001 \ 01728614 a 0101 | in ancient times; long ago; "a concern with what may have happened anciently" -00005343 02 r 01 arguably 0 001 \ 00602117 a 0101 | as can be shown by argument; "she is arguably the best" -00005453 02 r 01 unabashedly 0 001 \ 00155886 a 0101 | in an unabashed manner; "unabashedly, he asked for more" -00005567 02 r 01 automatically 0 001 \ 02522669 a 0101 | in a reflex manner; "he answered automatically" -00005674 02 r 01 alarmingly 0 001 \ 00193015 a 0101 | in an alarming manner; "It grew alarmingly fast" -00005779 02 r 02 vastly 0 immensely 1 002 \ 01387319 a 0202 \ 01387319 a 0103 | to an exceedingly great extent or degree; "He had vastly overestimated his resources"; "was immensely more important to the project as a scientist than as an administrator" -00006034 02 r 01 grossly 0 001 \ 00580039 a 0105 | in a gross manner -00006105 02 r 03 largely 0 mostly 0 for_the_most_part 0 001 \ 01555732 a 0201 | in large part; mainly or chiefly; "These accounts are largely inactive" -00006259 02 r 01 significantly 3 002 ! 00006423 r 0101 \ 02161432 a 0101 | in a significant manner; "our budget will be significantly affected by these new cuts" -00006423 02 r 01 insignificantly 0 002 ! 00006259 r 0101 \ 01288298 a 0101 | not to a significant degree or amount; "Our budget will only be insignificantly affected by these new cuts" -00006610 02 r 01 appreciably 1 001 \ 00624416 a 0101 | to a noticeable degree; "they weather was appreciably colder" -00006729 02 r 01 ultrasonically 0 001 \ 00175300 a 0102 | by ultrasonic means; "the kidney stones were removed ultrasonically" -00006858 02 r 03 smartly 0 modishly 0 sprucely 0 003 \ 00971933 a 0309 \ 00971506 a 0205 \ 00975487 a 0102 | in a stylish manner; "He was smartly dressed" -00007015 02 r 09 approximately 0 about 0 close_to 0 just_about 0 some 0 roughly 0 more_or_less 0 around 3 or_so 0 000 | (of quantities) imprecise but fairly close to correct; "lasted approximately an hour"; "in just about a minute"; "he's about 30 years old"; "I've had about all I can stand"; "we meet about once a month"; "some forty people came"; "weighs around a hundred pounds"; "roughly $3,000"; "holds 3 gallons, more or less"; "20 or so people were at the party" -00007488 02 r 01 absolutely 1 001 \ 00005205 a 0101 | totally and definitely; without question; "we are absolutely opposed to the idea"; "he forced himself to lie absolutely still"; "iron is absolutely necessary" -00007703 02 r 03 partially 0 partly 0 part 0 002 \ 00524693 a 0101 ! 00008007 r 0201 | in part; in some degree; not wholly; "I felt partly to blame"; "He was partially paralyzed" -00007884 02 r 01 half 0 001 \ 00517554 a 0101 | partially or to the extent of a half; "he was half hidden by the bushes" -00008007 02 r 07 wholly 0 entirely 0 completely 4 totally 0 all 0 altogether 4 whole 0 006 ;u 07075172 n 0000 \ 00515380 a 0403 \ 00520214 a 0301 \ 00515380 a 0201 \ 00514884 a 0101 ! 00007703 r 0102 | to a complete degree or to the full or entire extent (`whole' is often used informally for `wholly'); "he was wholly convinced"; "entirely satisfied with the meal"; "it was completely different from what we expected"; "was completely at fault"; "a totally new situation"; "the directions were all wrong"; "it was not altogether her fault"; "an altogether new approach"; "a whole new idea" -00008600 02 r 05 entirely 2 exclusively 0 solely 0 alone 0 only 1 002 \ 02152985 a 0302 \ 02152985 a 0201 | without any others being included or involved; "was entirely to blame"; "a school devoted entirely to the needs of problem children"; "he works for Mr. Smith exclusively"; "did it solely for money"; "the burden of proof rests on the prosecution alone"; "a privilege granted only to him" -00008997 02 r 04 absolutely 0 perfectly 0 utterly 0 dead 0 003 \ 01520091 a 030d \ 01520091 a 0207 \ 00520892 a 0101 | completely and without qualification; used informally as intensifiers; "an absolutely magnificent painting"; "a perfectly idiotic idea"; "you're perfectly right"; "utterly miserable"; "you can be dead sure of my innocence"; "was dead tired"; "dead right" -00009373 02 r 03 clean 4 plumb 4 plum 4 001 ;u 07157273 n 0000 | completely; used as intensifiers; "clean forgot the appointment"; "I'm plumb (or plum) tuckered out" -00009541 02 r 02 plumb 2 plum 2 001 ;u 07075172 n 0000 | exactly; "fell plumb in the middle of the puddle" -00009650 02 r 01 perfectly 1 002 ! 00010047 r 0101 \ 01749320 a 0101 | in a perfect or faultless way; "She performed perfectly on the balance beam"; "spoke English perfectly"; "solved the problem perfectly" -00009859 02 r 01 pat 0 000 | completely or perfectly; "he has the lesson pat"; "had the system down pat" -00009966 02 r 01 please 0 000 | used in polite request; "please pay attention" -00010047 02 r 02 imperfectly 0 amiss 3 002 ! 00009650 r 0101 \ 01752167 a 0101 | in an imperfect or faulty way; "The lobe was imperfectly developed"; "Miss Bennet would not play at all amiss if she practiced more"- Jane Austen -00010276 02 r 01 amiss 1 000 | in an improper or mistaken or unfortunate manner; "if you think him guilty you judge amiss"; "he spoke amiss"; "no one took it amiss when she spoke frankly" -00010466 02 r 03 fully 2 to_the_full 0 full 1 002 ;u 06307152 n 0000 \ 00522885 a 0101 | to the greatest degree or extent; completely or entirely; (`full' in this sense is used as a combining form); "fully grown"; "he didn't fully understand"; "knew full well"; "full-grown"; "full-fledged" -00010759 02 r 01 only 0 000 | with nevertheless the final result; "He arrived only to find his wife dead"; "We won only to lose again in the next round" -00010914 02 r 01 only 4 000 | in the final outcome; "These news will only make you more upset" -00011011 02 r 01 only 5 000 | as recently as; "I spoke to him only an hour ago" -00011093 02 r 02 well 0 good 0 002 ;u 06307152 n 0000 ! 00011516 r 0101 | (often used as a combining form) in a good or proper or satisfactory manner or to a high standard (`good' is a nonstandard dialectal variant for `well'); "the children behaved well"; "a task well done"; "the party went well"; "he slept well"; "a well-argued thesis"; "a well-seasoned dish"; "a well-planned party"; "the baby can walk pretty good" -00011516 02 r 03 ill 0 badly 0 poorly 0 003 ;u 06307152 n 0000 \ 01050890 a 0308 ! 00011093 r 0101 | (`ill' is often used as a combining form) in a poor or improper or unsatisfactory manner; not well; "he was ill prepared"; "it ill befits a man to betray old friends"; "the car runs badly"; "he performed badly on the exam"; "the team played poorly"; "ill-fitting clothes"; "an ill-conceived plan" -00011916 02 r 01 ill 1 000 | with difficulty or inconvenience; scarcely or hardly; "we can ill afford to buy a new car just now" -00012047 02 r 01 isotropically 0 001 \ 01360804 a 0101 | in an isotropic manner -00012129 02 r 01 well 1 001 ! 00012286 r 0101 | without unusual distress or resentment; with good humor; "took the joke well"; "took the tragic news well" -00012286 02 r 01 badly 8 001 ! 00012129 r 0101 | with unusual distress or resentment or regret or emotional display; "they took their defeat badly"; "took her father's death badly"; "conducted himself very badly at the time of the earthquake" -00012531 02 r 02 well 3 easily 5 000 | indicating high probability; in all likelihood; "I might well do it"; "a mistake that could easily have ended in disaster"; "you may well need your umbrella"; "he could equally well be trying to deceive us" -00012779 02 r 01 well 5 000 | thoroughly or completely; fully; often used as a combining form; "The problem is well understood"; "she was well informed"; "shake well before using"; "in order to avoid food poisoning be sure the meat is well cooked"; "well-done beef", "well-satisfied customers"; "well-educated" -00013092 02 r 01 well 7 001 ! 00013236 r 0101 | favorably; with approval; "their neighbors spoke well of them"; "he thought well of the book" -00013236 02 r 02 ill 2 badly 7 002 \ 01129644 a 0201 ! 00013092 r 0101 | unfavorably or with disapproval; "tried not to speak ill of the dead"; "thought badly of him for his lack of concern" -00013429 02 r 01 well 8 000 | to a suitable or appropriate extent or degree; "the project was well underway"; "the fetus has well developed organs"; "his father was well pleased with his grades" -00013626 02 r 02 well 9 comfortably 1 001 \ 02022556 a 0201 | in financial comfort; "They live well"; "she has been able to live comfortably since her husband died" -00013793 02 r 02 well a advantageously 0 003 ! 00014014 r 0202 \ 00064479 a 0201 ! 00014014 r 0101 | in a manner affording benefit or advantage; "she married well"; "The children were settled advantageously in Seattle" -00014014 02 r 02 badly a disadvantageously 0 003 ! 00013793 r 0202 \ 00065488 a 0201 ! 00013793 r 0101 | in a disadvantageous way; to someone's disadvantage; "the venture turned out badly for the investors"; "angry that the case was settled disadvantageously for them" -00014285 02 r 03 well b considerably 1 substantially 1 002 \ 00625055 a 0302 \ 00624026 a 0201 | to a great extent or degree; "I'm afraid the film was well over budget"; "painting the room white made it seem considerably (or substantially) larger"; "the house has fallen considerably in value"; "the price went up substantially" -00014616 02 r 01 well c 001 ! 00014738 r 0101 | with skill or in a pleasing manner; "she dances well"; "he writes well" -00014738 02 r 01 badly c 001 ! 00014616 r 0101 | without skill or in a displeasing manner; "she writes badly"; "I think he paints very badly" -00014882 02 r 01 well d 000 | with prudence or propriety; "You would do well to say nothing more"; "could not well refuse" -00015007 02 r 02 well e intimately 1 001 \ 00453308 a 0201 | with great or especially intimate knowledge; "we knew them well" -00015135 02 r 01 well f 001 ;u 06321054 n 0000 | (used for emphasis or as an intensifier) entirely or fully; "a book well worth reading"; "was well aware of the difficulties ahead"; "suspected only too well what might be going on" -00015368 02 r 01 satisfactorily 0 002 \ 02080577 a 0101 ! 00015706 r 0101 | in a satisfactory manner -00015471 02 r 04 okay 0 O.K. 0 all_right 2 alright 2 001 ;u 07075172 n 0000 | in a satisfactory or adequate manner; "she'll do okay on her own"; "held up all right under pressure"; (`alright' is a nonstandard variant of `all right') -00015706 02 r 01 unsatisfactorily 0 002 ! 00015368 r 0101 \ 02082218 a 0101 | in an unsatisfactory manner; "He performed unsatisfactorily as a manager" -00015860 02 r 01 prosperously 1 001 \ 02022556 a 0103 | in the manner of prosperous people -00015953 02 r 04 badly 2 severely 1 gravely 1 seriously 1 003 \ 00651039 a 0404 \ 00651039 a 0302 \ 01513050 a 0201 | to a severe or serious degree; "fingers so badly frozen they had to be amputated"; "badly injured"; "a severely impaired heart"; "is gravely ill"; "was seriously ill" -00016240 02 r 02 badly 3 bad 3 000 | very much; strongly; "I wanted it badly enough to work hard for it"; "the cables had sagged badly"; "they were badly in need of help"; "he wants a bicycle so bad he can taste it" -00016458 02 r 02 badly 4 bad 4 001 \ 01510444 a 0101 | with great intensity (`bad' is a nonstandard variant for `badly'); "the injury hurt badly"; "the buildings were badly shaken"; "it hurts bad"; "we need water bad" -00016678 02 r 03 badly 5 mischievously 0 naughtily 0 001 \ 01128406 a 0301 | in a disobedient or naughty way; "he behaved badly in school"; "he mischievously looked for a chance to embarrass his sister"; "behaved naughtily when they had guests and was sent to his room" -00016950 02 r 01 badly 6 001 \ 01131803 a 0101 | evilly or wickedly; "treated his parents badly"; "to steal is to act badly" -00017077 02 r 01 worse 0 001 ;u 06322693 n 0000 | (comparative of `ill') in a less effective or successful or desirable manner; "he did worse on the second exam" -00017241 02 r 01 worst 0 000 | to the highest degree of inferiority or badness; "She suffered worst of all"; "schools were the worst hit by government spending cuts"; "the worst dressed person present" -00017445 02 r 01 even 0 000 | used as an intensive especially to indicate something unexpected; "even an idiot knows that"; "declined even to consider the idea"; "I don't have even a dollar!" -00017639 02 r 03 even 1 yet 3 still 0 000 | to a greater degree or extent; used with comparisons; "looked sick and felt even worse"; "an even (or still) more interesting problem"; "still another problem must be solved"; "a yet sadder tale" -00017881 02 r 02 even_as 1 just_as 2 000 | at the same time as; "even as he lay dying they argued over his estate"; "the building collapsed just as he arrived" -00018043 02 r 01 even 3 000 | in spite of; notwithstanding; "even when he is sick, he works"; "even with his head start she caught up with him" -00018189 02 r 01 even 4 000 | to the full extent; "loyal even unto death" -00018265 02 r 01 e'en 0 000 | even -00018302 02 r 04 rather 4 kind_of 0 kinda 0 sort_of 0 000 | to some (great or small) extent; "it was rather cold"; "the party was rather nice"; "the knife is rather dull"; "I rather regret that I cannot attend"; "He's rather good at playing the cello"; "he is kind of shy" -00018577 02 r 01 quite 1 000 | to the greatest extent; completely; "you're quite right"; "she was quite alone"; "was quite mistaken"; "quite the opposite"; "not quite finished"; "did not quite make it" -00018781 02 r 02 quite 2 rather 0 000 | to a degree (not used with a negative); "quite tasty"; "quite soon"; "quite ill"; "quite rich" -00018918 02 r 03 quite 3 quite_a 0 quite_an 0 000 | of an unusually noticeable or exceptional or remarkable kind (not used with a negative); "her victory was quite something"; "she's quite a girl"; "quite a film"; "quite a walk"; "we've had quite an afternoon" -00019181 02 r 01 quite 4 000 | actually or truly or to an extreme; "was quite a sudden change"; "it's quite the thing to do"; "quite the rage"; "Quite so!" -00019339 02 r 03 always 0 ever 0 e'er 0 001 ! 00020759 r 0201 | at all times; all the time and on every occasion; "I will always be there to help you"; "always arrives on time"; "there is always some pollution in the air"; "ever hoping to strike it rich"; "ever busy" -00019609 02 r 01 always 1 000 | forever; throughout all time; "we will always be friends"; "I shall treasure it always"; "I will always love you" -00019757 02 r 01 always 2 000 | at any time or in any event; "you can always resign if you don't like it"; "you could always take a day off" -00019900 02 r 01 con_brio 0 002 ;c 07020895 n 0000 \ 02279523 a 0101 | with liveliness or spirit; "allegro con brio" -00020019 02 r 01 conjecturally 0 001 \ 00861216 a 0101 | in a manner involving or inclined to conjecture and supposition -00020142 02 r 01 consecutively 0 001 \ 00596511 a 0102 | in a consecutive manner; "he was consecutively ill, then well, then ill again" -00020280 02 r 05 constantly 1 always 3 forever 3 perpetually 0 incessantly 0 003 \ 00595299 a 0503 \ 00595299 a 0405 \ 00595299 a 0102 | without interruption; "the world is constantly changing" -00020476 02 r 03 constantly 3 invariably 0 always 4 002 \ 02505716 a 0201 \ 02506029 a 0102 | without variation or change, in every case; "constantly kind and gracious"; "he always arrives on time" -00020676 02 r 01 coterminously 0 001 \ 00481463 a 0102 | in a coterminous manner -00020759 02 r 02 never 0 ne'er 0 001 ! 00019339 r 0102 | not ever; at no time in the past or future; "I have never been to China"; "I shall never forget this day"; "had never seen a circus"; "never on Sunday"; "I will never marry you!" -00020997 02 r 01 never 1 000 | not at all; certainly not; not in any circumstances; "never fear"; "bringing up children is never easy"; "that will never do"; "what is morally wrong can never be politically right" -00021212 02 r 07 occasionally 0 on_occasion 0 once_in_a_while 0 now_and_then 0 now_and_again 0 at_times 0 from_time_to_time 0 001 \ 01067415 a 0101 | now and then or here and there; "he was arrogant and occasionally callous"; "open areas are only occasionally interrupted by clumps of trees"; "they visit New York on occasion"; "now and again she would take her favorite book from the shelf and read to us"; "as we drove along, the beautiful scenery now and then attracted his attention" -00021702 02 r 01 sometime 0 000 | at some indefinite or unstated time; "let's get together sometime"; "everything has to end sometime"; "It was to be printed sometime later" -00021878 02 r 01 sometimes 1 000 | on certain occasions or in certain cases but not always; "sometimes she wished she were back in England"; "sometimes her photography is breathtaking"; "sometimes they come for a month; at other times for six months" -00022131 02 r 03 equally 1 as 0 every_bit 0 001 \ 00889831 a 0101 | to the same degree (often followed by `as'); "they were equally beautiful"; "birds were singing and the child sang as sweetly"; "sang as sweetly as a nightingale"; "he is every bit as mean as she is" -00022401 02 r 03 long_ago 0 long_since 1 lang_syne 0 000 | of the distant or comparatively distant past; "We met once long ago"; "they long ago forsook their nomadic life"; "left for work long ago"; "he has long since given up mountain climbing"; "This name has long since been forgotten"; "lang syne" is Scottish -00022717 02 r 01 pretty_much 0 000 | to some degree; "we were pretty much lost when we met the forest ranger" -00022829 02 r 02 much 1 practically 2 000 | (degree adverb used before a noun phrase) for all practical purposes but not completely; "much the same thing happened every time"; "practically everything in Hinduism is the manifestation of a god" -00023074 02 r 01 that_much 0 000 | to a certain degree; "we will be that much ahead of them" -00023169 02 r 01 palmately 0 001 \ 02173125 a 0101 | in a palmate manner; "palmately cleft" -00023263 02 r 01 paradoxically 0 001 \ 00939895 a 0101 | in a paradoxical manner; "paradoxically, ice ages seem to occur when the sun gets hotter" -00023412 02 r 01 parasitically 0 001 \ 00726723 a 0101 | in a parasitic manner -00023493 02 r 01 conformably 0 001 \ 01612878 a 0101 | in a conformable manner -00023574 02 r 01 conventionally 0 002 ! 00023721 r 0101 \ 00605516 a 0101 | in a conventional manner; "he usually behaves rather conventionally" -00023721 02 r 01 unconventionally 0 002 ! 00023574 r 0101 \ 00606602 a 0101 | in an unconventional manner; "she always behaves rather unconventionally" -00023875 02 r 01 pathogenically 0 001 \ 01168434 a 0103 | in a pathogenic manner -00023958 02 r 01 pictorially 0 001 \ 02861617 a 0101 | in a pictorial manner; "depth is established pictorially" -00024073 02 r 02 not 0 non 0 000 | negation of a word or group of words; "he does not speak French"; "she is not going"; "they are not friends"; "not many"; "not much"; "not at all" -00024257 02 r 01 nothing 0 000 | in no respect; to no degree; "he looks nothing like his father" -00024356 02 r 01 no 0 000 | used to express refusal or denial or disagreement etc or especially to emphasize a negative statement; "no, you are wrong" -00024509 02 r 01 any 0 000 | to any degree or extent; "it isn't any better" -00024587 02 r 01 no 1 000 | not in any degree or manner; not at all; "he is no better today" -00024682 02 r 01 none 0 000 | not at all or in no way; "seemed none too pleased with his dinner"; "shirt looked none the worse for having been slept in"; "none too prosperous"; "the passage is none too clear" -00024893 02 r 01 either 0 000 | after a negative statement used as an intensive meaning something like `likewise' or `also'; "he isn't stupid, but he isn't exactly a genius either"; "I don't know either"; "if you don't order dessert I won't either" -00025144 02 r 03 bloody 0 damn 0 all-fired 0 001 ;u 06321054 n 0000 | extremely; "you are bloody right"; "Why are you so all-fired aggressive?" -00025290 02 r 02 anywhere 0 anyplace 0 001 ;u 07075172 n 0000 | at or in or to any place; "you can find this food anywhere"; (`anyplace' is used informally for `anywhere') -00025464 02 r 01 nowhere 0 000 | not anywhere; in or at or to no place; "I am going nowhere" -00025559 02 r 02 somewhere 0 someplace 0 001 ;u 07075172 n 0000 | in or at or to some place; "she must be somewhere"; (`someplace' is used informally for `somewhere') -00025728 02 r 03 everywhere 0 everyplace 0 all_over 0 001 ;u 07075172 n 0000 | to or in any or all places; "You find fast food stores everywhere"; "people everywhere are becoming aware of the problem"; "he carried a gun everywhere he went"; "looked all over for a suitable gift"; (`everyplace' is used informally for `everywhere') -00026061 02 r 01 high_and_low 0 000 | everywhere; "searched high and low" -00026137 02 r 05 somehow 0 someway 0 someways 0 in_some_way 0 in_some_manner 0 000 | in some unspecified way or manner; or by some unspecified means; "they managed somehow"; "he expected somehow to discover a woman who would love him"; "he tried to make is someway acceptable" -00026416 02 r 01 somehow 1 000 | for some unspecified reason; "It doesn't seem fair somehow"; "he had me dead to rights but somehow I got away with it"; -00026571 02 r 06 anyhow 0 anyway 0 anyways 0 in_any_case 0 at_any_rate 0 in_any_event 0 000 | used to indicate that a statement explains or supports a previous statement; "Anyhow, he is dead now"; "I think they're asleep; anyhow, they're quiet"; "I don't know what happened to it; anyway, it's gone"; "anyway, there is another factor to consider"; "I don't know how it started; in any case, there was a brief scuffle"; "in any event, the government faced a serious protest"; "but at any rate he got a knighthood for it" -00027093 02 r 01 as_it_is 0 000 | in the actual state of affairs and often contrary to expectations; "he might have been killed; as it is he was severely injured" -00027258 02 r 02 anyhow 1 anyway 1 000 | in any way whatsoever; "they came anyhow they could"; "get it done anyway you can" -00027384 02 r 09 however 0 nevertheless 0 withal 1 still 4 yet 6 all_the_same 0 even_so 0 nonetheless 0 notwithstanding 0 000 | despite anything to the contrary (usually following a concession); "although I'm a little afraid, however I'd like to try it"; "while we disliked each other, nevertheless we agreed"; "he was a stern yet fair master"; "granted that it is dangerous, all the same I still want to go" -00027795 02 r 01 yet 2 000 | up to the present time; "I have yet to see the results"; "details are yet to be worked out" -00027918 02 r 09 so_far 0 thus_far 0 up_to_now 0 hitherto 0 heretofore 0 as_yet 0 yet 4 til_now 0 until_now 0 000 | used in negative statement to describe a situation that has existed up to this point or up to the present time; "So far he hasn't called"; "the sun isn't up yet" -00028198 02 r 02 so_far 1 yet 5 000 | used after a superlative; "this is the best so far"; "the largest drug bust yet" -00028319 02 r 01 only 6 000 | except that; "It was the same story; only this time she came out better" -00028424 02 r 01 however 1 000 | in whatever way or manner; "Victory, however it was brought about, was sweet"; "however he did it, it was very clever" -00028578 02 r 01 however 2 000 | to whatever degree or extent; "The results, however general, are important"; "they have begun, however reluctantly, to acknowledge the legitimacy of some of the opposition's concerns" -00028797 02 r 01 however 4 000 | by contrast; on the other hand; "the first part was easy; the second, however, took hours" -00028923 02 r 01 lightly 4 001 \ 01190316 a 0101 | with indifference or without dejection; "he took it lightly" -00029037 02 r 02 besides 1 in_any_case 2 000 | making an additional point; anyway; "I don't want to go to a restaurant; besides, we can't afford it"; "she couldn't shelter behind him all the time and in any case he wasn't always with her" -00029278 02 r 01 fugally 0 002 ;c 07020895 n 0000 \ 03011126 a 0101 | in a fugal style -00029367 02 r 03 furthermore 0 moreover 0 what_is_more 0 000 | in addition; "computer chess games are getting cheaper all the time; furthermore, their quality is improving"; "the cellar was dark; moreover, mice nested there"; "what is more, there's no sign of a change" -00029639 02 r 02 farther 0 further 0 000 | to or at a greater distance in time or space (`farther' is used more frequently than `further' in this physical sense); "farther north"; "moved farther away"; "farther down the corridor"; "the practice may go back still farther to the Druids"; "went only three miles further"; "further in the future" -00029985 02 r 02 further 2 farther 2 000 | to or at a greater extent or degree or a more advanced stage (`further' is used more often than `farther' in this abstract sense); "further complicated by uncertainty about the future"; "let's not discuss it further"; "nothing could be further from the truth"; "they are further along in their research than we expected"; "the application of the law was extended farther"; "he is going no farther in his studies" -00030443 02 r 01 further 3 000 | in addition or furthermore; "if we further suppose"; "stated further that he would not cooperate with them"; "they are definitely coming; further, they should be here already" -00030654 02 r 02 farthest 0 furthest 0 000 | to the greatest distance in space or time (`farthest' is used more often than `furthest' in this physical sense); "see who could jump the farthest"; "chose the farthest seat from the door"; "he swam the furthest" -00030914 02 r 02 furthest 1 farthest 1 000 | to the greatest degree or extent or most advanced stage (`furthest' is used more often than `farthest' in this abstract sense); "went the furthest of all the children in her education"; "furthest removed from reality"; "she goes farthest in helping us" -00031214 02 r 01 futilely 0 001 \ 01866812 a 0103 | in a futile and unproductive manner -00031304 02 r 01 still 1 001 ! 00031515 r 0101 | with reference to action or condition; without change, interruption, or cessation; "it's still warm outside"; "will you still love me when we're old and grey?" -00031515 02 r 02 no_longer 0 no_more 1 001 ! 00031304 r 0101 | not now; "she is no more" -00031606 02 r 02 anymore 1 any_longer 1 000 | at the present or from now on; usually used with a negative; "Alice doesn't live here anymore"; "the children promised not to quarrel any more" -00031798 02 r 01 already 0 000 | prior to a specified or implied time; "she has already graduated" -00031899 02 r 04 very 0 really 0 real 1 rattling 0 000 | used as intensifiers; `real' is sometimes used informally for `really'; `rattling' is informal; "she was very gifted"; "he played very well"; "a really enjoyable evening"; "I'm real sorry about it"; "a rattling good yarn" -00032180 02 r 03 fabulously 0 fantastically 0 incredibly 2 000 | exceedingly; extremely; "she plays fabulously well" -00032299 02 r 04 mighty 0 mightily 0 powerful 0 right 6 001 ;u 06321054 n 0000 | (Southern regional intensive) very; to a great degree; "the baby is mighty cute"; "he's mighty tired"; "it is powerful humid"; "that boy is powerful big now"; "they have a right nice place"; "they rejoiced mightily" -00032598 02 r 01 good_and 0 001 ;u 07075172 n 0000 | completely or thoroughly; "when I'm good and ready" -00032705 02 r 01 fucking 0 000 | intensifier, very colloquial; "what took you so fucking long?" -00032803 02 r 01 much 3 000 | very; "he was much annoyed" -00032863 02 r 02 henceforth 0 henceforward 0 000 | from this time forth; from now on; "henceforth she will be known as Mrs. Smith" -00032996 02 r 01 hereafter 1 000 | following this in time or order or place; after this; "hereafter you will no longer receive an allowance" -00033139 02 r 01 hereafter 3 000 | in a future life or state; "hope to win salvation hereafter" -00033237 02 r 01 hereunder 1 000 | under the terms of this agreement -00033308 02 r 02 just 1 just_now 0 000 | only a moment ago; "he has just arrived"; "the sun just now came out" -00033421 02 r 04 instantaneously 0 outright 2 instantly 2 in_a_flash 0 001 \ 00979031 a 0101 | without any delay; "he was killed outright" -00033562 02 r 01 mildly 0 001 \ 01508719 a 0101 | to a moderate degree; "he was mildly interested" -00033663 02 r 03 a_bit 0 a_little 0 a_trifle 0 000 | to a small degree; somewhat; "it's a bit warm"; "felt a little better"; "a trifle smaller" -00033809 02 r 01 anon 0 001 ;u 07075172 n 0000 | (old-fashioned or informal) in a little while; "see you anon" -00033922 02 r 04 soon 0 shortly 0 presently 1 before_long 0 000 | in the near future; "the doctor will soon be here"; "the book will appear shortly"; "she will arrive presently"; "we should have news before long" -00034137 02 r 01 ASAP 0 000 | as soon as possible -00034189 02 r 01 shortly 1 000 | for a short time; "he was at the airport shortly before she was expected to arrive" -00034308 02 r 01 shortly 3 000 | at a short distance; "the hem fell shortly below her knees" -00034403 02 r 02 momentarily 0 momently 0 000 | at any moment; "she will be with you momently" -00034500 02 r 01 shoulder-to-shoulder 0 001 \ 00446921 a 0101 | side by side and close together; "the troops marched shoulder-to-shoulder" -00034641 02 r 02 soonest 0 earliest 0 000 | with the least delay; "the soonest I can arrive is 3 P.M." -00034746 02 r 01 spiritedly 0 001 \ 02278939 a 0101 | in a spirited or lively manner; with animation and vivacity -00034862 02 r 01 sportively 0 001 \ 02122132 a 0101 | in a merry sportive manner -00034945 02 r 03 stormily 0 turbulently 1 passionately 1 001 \ 01742912 a 0101 | in a stormy or violent manner -00035058 02 r 05 frequently 0 often 0 oftentimes 0 oft 0 ofttimes 0 003 ! 00035385 r 0201 ! 00374520 r 0101 \ 01066542 a 0101 | many times at short intervals; "we often met over a cup of coffee" -00035255 02 r 01 oftener 0 000 | more often or more frequently -00035320 02 r 01 anon 1 000 | at another time; "ever and anon" -00035385 02 r 02 rarely 0 seldom 0 002 ! 00035058 r 0102 \ 01067538 a 0101 | not often; "we rarely met" -00035491 02 r 03 curiously 1 oddly 0 peculiarly 0 003 \ 00968010 a 0304 \ 00968010 a 0203 \ 00968010 a 0101 | in a manner differing from the usual or expected; "had a curiously husky voice"; "he's behaving rather peculiarly" -00035718 02 r 08 reasonably 0 moderately 0 pretty 0 jolly 0 somewhat 0 fairly 2 middling 0 passably 0 004 \ 01531375 a 0201 ! 00036068 r 0202 \ 01532261 a 0103 ! 00036068 r 0101 | to a moderately sufficient extent or degree; "pretty big"; "pretty bad"; "jolly decent of him"; "the shoes are priced reasonably"; "he is fairly clever with computers" -00036068 02 r 02 unreasonably 0 immoderately 2 004 ! 00035718 r 0202 \ 01533120 a 0201 ! 00035718 r 0101 \ 01533974 a 0104 | to a degree that exceeds the bounds or reason or moderation; "his prices are unreasonably high" -00036291 02 r 03 slightly 1 somewhat 1 more_or_less 1 000 | to a small degree or extent; "his arguments were somewhat self-contradictory"; "the children argued because one slice of cake was slightly larger than the other" -00036515 02 r 01 movingly 0 001 \ 01560513 a 0101 | in a moving manner; "she sang movingly" -00036609 02 r 01 extensively 0 001 \ 01386234 a 0101 | in a widespread way; "oxidation ponds are extensively used for sewage treatment in the Midwest" -00036762 02 r 04 intrinsically 0 per_se 0 as_such 0 in_and_of_itself 0 001 \ 01348258 a 0101 | with respect to its inherent nature; "this statement is interesting per se" -00036935 02 r 06 decidedly 0 unquestionably 1 emphatically 0 definitely 0 in_spades 0 by_all_odds 0 003 \ 00156575 a 0301 \ 01918184 a 0201 \ 00701299 a 0102 | without question and beyond doubt; "it was decidedly too expensive"; "she told him off in spades"; "by all odds they should win" -00037226 02 r 03 truly 0 genuinely 0 really 3 003 \ 02460964 a 0304 \ 02460964 a 0202 \ 02460502 a 0101 | in accordance with truth or fact or reality; "she was now truly American"; "a genuinely open society"; "they don't really listen to us" -00037470 02 r 01 indeed 2 001 ;u 07106246 n 0000 | (used as an interjection) an expression of surprise or skepticism or irony etc.; "Wants to marry the butler? Indeed!" -00037641 02 r 02 indeed 3 so 0 000 | in truth (often tends to intensify); "they said the car would break down and indeed it did"; "it is very cold indeed"; "was indeed grateful"; "indeed, the rain may still come"; "he did so do it!" -00037876 02 r 01 in_the_lurch 0 001 ;u 07154330 n 0000 | in a difficult or vulnerable position; "he resigned and left me in the lurch" -00038013 02 r 03 in_truth 1 really 2 truly 4 001 ;u 06321054 n 0000 | in fact (used as intensifiers or sentence modifiers); "in truth, moral decay hastened the decline of the Roman Empire"; "really, you shouldn't have done it"; "a truly awful book" -00038264 02 r 01 forsooth 0 000 | an archaic word originally meaning `in truth' but now usually used to express disbelief -00038388 02 r 01 in_utero 0 000 | in the uterus; "the child was infected in utero from the mother" -00038489 02 r 01 in_vacuo 0 000 | in a vacuum -00038537 02 r 01 in_vacuo 1 000 | in isolation and without reference to anything else -00038625 02 r 03 naturally 0 of_course 0 course 0 001 ! 00038767 r 0101 | as might be expected; "naturally, the lawyer sent us a huge bill" -00038767 02 r 01 unnaturally 3 002 \ 01570470 a 0101 ! 00038625 r 0101 | in a manner at variance with what is natural or normal; "The early Church not unnaturally adopted the position that failure to see the messianic character of his work was really caused by the people's own blindness" -00039058 02 r 01 clearly 0 001 \ 00428404 a 0101 | without doubt or question; "they were clearly lost"; "history has clearly shown the folly of that policy" -00039217 02 r 01 unclearly 0 002 \ 00430191 a 0101 \ 01405523 a 0102 | in a manner that is unclear -00039318 02 r 07 obviously 0 evidently 0 manifestly 0 patently 0 apparently 1 plainly 0 plain 0 007 ;u 07075172 n 0000 \ 01618376 a 0605 \ 01618376 a 0501 \ 01618376 a 0404 \ 01618376 a 0303 \ 01618376 a 0202 \ 01618053 a 0101 | unmistakably (`plain' is often used informally for `plainly'); "the answer is obviously wrong"; "she was in bed and evidently in great pain"; "he was manifestly too important to leave off the guest list"; "it is all patently nonsense"; "she has apparently been living here for some time"; "I thought he owned the property, but apparently not"; "You are plainly wrong"; "he is plain stubborn" -00039941 02 r 04 apparently 0 seemingly 0 ostensibly 0 on_the_face_of_it 0 003 \ 01117942 a 0301 \ 01873985 a 0203 \ 01873985 a 0101 | from appearances alone; "irrigation often produces bumper crops from apparently desert land"; "the child is seemingly healthy but the doctor is concerned"; "had been ostensibly frank as to his purpose while really concealing it"-Thomas Hardy; "on the face of it the problem seems minor" -00040365 02 r 04 again 0 once_again 0 once_more 0 over_again 0 000 | anew; "she tried again"; "they rehearsed the scene again" -00040494 02 r 01 withal 0 000 | together with this -00040547 02 r 04 by_chance 0 accidentally 0 circumstantially 1 unexpectedly 0 002 \ 00930290 a 0401 ! 00062330 r 0202 | without advance planning; "they met accidentally" -00040719 02 r 02 unexpectedly 1 out_of_the_blue 0 001 \ 00930290 a 0101 | in a way that was not expected; "her brother showed up at the wedding out of the blue" -00040882 02 r 01 out_of_the_way 0 000 | so as not to obstruct or hinder; "put that box out of the way so that no one trips on it" -00041014 02 r 01 out_of_the_way 1 000 | dealt with; disposed of; "I'm so relieved that my midterm is out of the way" -00041133 02 r 01 out_of_the_way 2 000 | murdered; "the mob boss wanted his rival out of the way" -00041232 02 r 01 out_of_the_way 3 000 | in a remote location or at a distance from the usual route; "the restaurant is top-notch, but a little out of the way" -00041393 02 r 01 out_of_the_way 4 000 | improper; amiss; -00041452 02 r 01 out_of_the_way 5 000 | extraordinary; unusual; "such erratic behavior was out of the way for him" -00041570 02 r 02 in_the_way 0 in_someone's_way 0 000 | forming a hindrance, impediment, or obstruction; "she might have succeeded in her ambition, had not circumstances been in her way" -00041758 02 r 01 specifically 0 002 ! 00041954 r 0101 \ 01103021 a 0101 | in distinction from others; "a program specifically for teenagers"; "he is interested specifically in poisonous snakes" -00041954 02 r 03 generally 1 in_general 0 in_the_main 0 002 ! 00041758 r 0101 \ 01101391 a 0101 | without distinction of one from others; "he is interested in snakes in general" -00042134 02 r 01 nonspecifically 0 001 \ 01105620 a 0101 | without specificity; "nonspecifically staining substances" -00042254 02 r 04 fortunately 0 fortuitously 0 luckily 0 as_luck_would_have_it 0 005 ! 00042769 r 0302 \ 01468097 a 0301 \ 01048587 a 0201 ! 00042769 r 0101 \ 01047874 a 0101 | by good fortune; "fortunately the weather was good" -00042484 02 r 01 happily 0 002 ! 00042614 r 0101 \ 01048406 a 0102 | in an unexpectedly lucky way; "happily he was not injured" -00042614 02 r 02 sadly 0 unhappily 1 002 ! 00042484 r 0101 \ 01361863 a 0101 | in an unfortunate way; "sadly he died before he could see his grandchild" -00042769 02 r 04 unfortunately 0 unluckily 0 regrettably 0 alas 0 005 \ 01052038 a 0301 ! 00042254 r 0203 \ 01051410 a 0205 ! 00042254 r 0101 \ 01049462 a 0101 | by bad luck; "unfortunately it rained all day"; "alas, I cannot stay" -00043003 02 r 05 therefore 0 hence 0 thence 0 thus 0 so a 000 | (used to introduce a logical conclusion) from that fact or reason or as a result; "therefore X must be true"; "the eggs were fresh and hence satisfactory"; "we were young and thence optimistic"; "it is late and thus we must go"; "the witness is biased and so cannot be trusted" -00043347 02 r 01 ergo 0 000 | (used as a sentence connector) therefore or consequently -00043436 02 r 01 hence 1 000 | from this time; "a year hence it will be forgotten" -00043521 02 r 01 hence 2 001 ;u 07073447 n 0000 | from this place; "get thee hence!" -00043608 02 r 02 thence 1 therefrom 1 000 | from that place or from there; "proceeded thence directly to college"; "flew to Helsinki and thence to Moscow"; "roads that lead therefrom" -00043794 02 r 03 thence 2 therefrom 2 thereof 2 000 | from that circumstance or source; "atomic formulas and all compounds thence constructible"- W.V.Quine; "a natural conclusion follows thence"; "public interest and a policy deriving therefrom"; "typhus fever results therefrom" -00044076 02 r 01 therefor 0 001 ;c 08441203 n 0000 | (in formal usage, especially legal usage) for that or for it; "ordering goods and enclosing payment therefor"; "a refund therefor" -00044262 02 r 01 vocationally 0 001 \ 02840478 a 0101 | affecting the pursuit of a vocation or occupation; "vocationally trained" -00044394 02 r 01 face_to_face 0 000 | involving close contact; confronting each other; "the boy and the policeman suddenly came face-to-face at the corner"; "they spoke face to face" -00044579 02 r 02 one-on-one 0 person-to-person 0 000 | (of two persons) in direct encounter; "preferred to settle the matter one-on-one"; "interviewed her person-to-person" -00044754 02 r 01 face-to-face 2 000 | within each other's presence; "she met the president face-to-face" -00044861 02 r 02 face-to-face 5 opposite 0 000 | directly facing each other; "the two photographs lay face-to-face on the table"; "lived all their lives in houses face-to-face across the street"; "they sat opposite at the table" -00045092 02 r 01 vis-a-vis 0 000 | face-to-face with; literally `face to face'; "they sat vis-a-vis at the table"; "I found myself vis-a-vis a burly policeman" -00045254 02 r 01 tete_a_tete 0 000 | without the intrusion of a third person; in intimate privacy; "we talked tete-a-tete" -00045379 02 r 01 if_not 0 000 | perhaps; indicating possibility of being more remarkable (greater or better or sooner) than; "will yield 10% if not more"; "pretty if not actually beautiful"; "let's meet tonight if not sooner" -00045607 02 r 01 beyond 0 000 | in addition; "agreed to provide essentials but nothing beyond" -00045704 02 r 01 beyond 1 000 | farther along in space or time or degree; "through the valley and beyond"; "to the eighth grade but not beyond"; "will be influential in the 1990s and beyond" -00045897 02 r 01 beyond 2 000 | on the farther side from the observer; "a pond with a hayfield beyond" -00046002 02 r 01 otherwise 1 000 | in other respects or ways; "he is otherwise normal"; "the funds are not otherwise available"; "an otherwise hopeless situation" -00046167 02 r 02 additionally 0 to_boot 0 000 | in addition, by way of addition; furthermore; "he serves additionally as the CEO" -00046299 02 r 04 extremely 0 exceedingly 0 super 0 passing 0 001 \ 01511520 a 0101 | to an extreme degree; "extremely cold"; "extremely unpleasant" -00046449 02 r 01 drop-dead 0 001 ;u 07157273 n 0000 | extremely; "she was drop-dead gorgeous" -00046545 02 r 01 beyond_measure 0 000 | in excess or without limit; "amazed beyond measure" -00046639 02 r 05 madly 0 insanely 2 deadly 0 deucedly 0 devilishly 2 001 ;u 06321054 n 0000 | (used as intensives) extremely; "she was madly in love"; "deadly dull"; "deadly earnest"; "deucedly clever"; "insanely jealous" -00046863 02 r 02 inordinately 0 extraordinarily 0 002 \ 01534648 a 0201 \ 01533974 a 0102 | extremely; "she was inordinately smart"; "it will be an extraordinarily painful step to negotiate" -00047056 02 r 03 by_far 0 far_and_away 0 out_and_away 0 000 | by a considerable margin; "she was by far the smartest student"; "it was far and away the best meal he had ever eaten" -00047239 02 r 01 head_and_shoulders_above 0 000 | outstandingly superior to; "in intelligence he was head and shoulders above the others in his class" -00047392 02 r 04 excessively 0 overly 0 to_a_fault 0 too 0 001 \ 01533974 a 0101 | to a degree exceeding normal or proper limits; "too big" -00047534 02 r 05 besides 3 too 1 also 0 likewise 1 as_well 1 000 | in addition; "he has a Mercedes, too" -00047641 02 r 02 yet 0 in_time 0 000 | within an indefinite time or at an unspecified future time; "he longed for the flowers that were yet to show themselves"; "sooner or later you will have to face the facts"; "in time they came to accept the harsh reality" -00047903 02 r 05 ultimately 1 finally 0 in_the_end 0 at_last 0 at_long_last 0 002 \ 01579128 a 0201 \ 01013961 a 0101 | as the end result of a succession or process; "ultimately he had to give in"; "at long last the winter was over" -00048138 02 r 02 finally 2 eventually 0 001 \ 01578856 a 0201 | after an unspecified period of time or an especially long delay -00048268 02 r 02 presently 0 currently 0 002 \ 00666058 a 0201 \ 01731351 a 0101 | at this time or period; now; "he is presently our ambassador to the United Nations"; "currently they live in Connecticut" -00048475 02 r 03 nowadays 0 now 0 today 1 000 | in these times; "it is solely by their language that the upper classes nowadays are distinguished"- Nancy Mitford; "we now rarely see horse-drawn vehicles on city streets"; "today almost every home has television" -00048739 02 r 0a immediately 0 instantly 0 straightaway 0 straight_off 0 directly 7 now 1 right_away 0 at_once 0 forthwith 0 like_a_shot 0 001 \ 00770316 a 0101 | without delay or hesitation; with no time intervening; "he answered immediately"; "found an answer straightaway"; "an official accused of dishonesty should be suspended forthwith"; "Come here now!" -00049102 02 r 01 now 2 000 | used to preface a command or reproof or request; "now hear this!"; "now pay attention" -00049220 02 r 02 now 4 at_present 0 000 | at the present moment; "goods now on sale"; "the now-aging dictator"; "they are now abroad"; "he is busy at present writing a new novel"; "it could happen any time now" -00049433 02 r 01 now 5 000 | in the historical present; at this point in the narration of a series of past events; "President Kennedy now calls in the National Guard"; "Washington now decides to cross the Delaware"; "the ship is now listing to port" -00049685 02 r 01 now 6 000 | in the immediate past; "told me just now" -00049758 02 r 01 now 7 000 | (prefatory or transitional) indicates a change of subject or activity; "Now the next problem is..." -00049889 02 r 01 now_now 0 000 | interjection of rebuke -00049947 02 r 02 aggressively 0 sharply 0 001 \ 00082241 a 0101 | in an aggressive manner; "she was being sharply questioned" -00050075 02 r 02 shrilly 0 piercingly 1 001 \ 01214430 a 0101 | in a shrill voice; "she sang rather shrilly" -00050186 02 r 01 steadily 1 001 \ 02301560 a 0101 | at a steady rate or pace; "his interest eroded steadily" -00050297 02 r 06 happily 1 merrily 0 mirthfully 0 gayly 0 blithely 0 jubilantly 0 007 \ 01367211 a 0604 \ 00363291 a 0501 \ 01367651 a 0401 \ 01367651 a 0306 \ 01367431 a 0204 ! 00050556 r 0101 \ 01148283 a 0101 | in a joyous manner; "they shouted happily" -00050556 02 r 01 unhappily 0 002 ! 00050297 r 0101 \ 01805064 a 0101 | in an unpleasant way; "they were unhappily married" -00050681 02 r 02 no 2 no_more 5 000 | referring to the degree to which a certain quality is present; "he was no heavier than a child" -00050817 02 r 04 firm 0 firmly 2 steadfastly 0 unwaveringly 0 003 \ 01990653 a 0408 \ 01990653 a 0302 \ 01990653 a 0201 | with resolute determination; "we firmly believed it"; "you must stand firm" -00051017 02 r 03 squarely 0 foursquare 0 straightforwardly 1 001 \ 00766102 a 0302 | with firmness and conviction; without compromise; "he stood foursquare for religious liberty and toleration"- C.G.Bowers; "dealt straightforwardly with all issues" -00051268 02 r 02 squarely 1 square 1 000 | firmly and solidly; "hit the ball squarely"; "the bat met the ball squarely"; "planted his great bulk square before his enemy" -00051440 02 r 02 squarely 2 square 2 001 \ 02043217 a 0101 | in a square shape; "a squarely cut piece of paper"; "folded the sheet of paper square" -00051590 02 r 03 squarely 3 forthrightly 0 forthright 0 001 \ 00766102 a 0101 | directly and without evasion; not roundabout; "to face a problem squarely"; "the responsibility lies squarely with them"; "spoke forthright (or forthrightly) and to the point" -00051848 02 r 03 directly 0 straight 5 direct 0 002 \ 02310895 a 0201 \ 00760916 a 0101 | without deviation; "the path leads directly to the lake"; "went direct to the office" -00052026 02 r 02 squarely 5 square 0 000 | in a straight direct way; "looked him squarely in the eye"; "ran square into me" -00052152 02 r 01 due 0 000 | directly or exactly; straight; "went due North" -00052231 02 r 03 variously 0 diversely 0 multifariously 0 003 \ 02506922 a 0304 \ 02067491 a 0201 \ 02067491 a 0102 | in diverse ways; "the alternatives that are variously represented by the participants"; "the speakers treated the subject most diversely" -00052489 02 r 03 indefatigably 0 tirelessly 0 inexhaustibly 0 002 \ 00874920 a 0202 \ 00874920 a 0101 | with indefatigable energy; "she watched the show indefatigably" -00052659 02 r 01 biradially 0 001 \ 02372303 a 0101 | in a biradial manner; "biradially symmetrical" -00052762 02 r 01 bitterly 0 001 \ 00116744 a 0102 | with bitterness, in a resentful manner; "she complained bitterly" -00052882 02 r 01 bitterly 1 001 \ 02435901 a 0101 | indicating something hard to accept; "he was bitterly disappointed" -00053004 02 r 05 very_well 1 fine 0 alright 0 all_right 0 OK 0 000 | an expression of agreement normally occurring at the beginning of a sentence -00053152 02 r 02 all_right 1 alright 1 000 | without doubt (used to reinforce an assertion); "it's expensive all right" -00053274 02 r 02 swiftly 0 fleetly 0 002 \ 00978199 a 0201 \ 00978199 a 0102 | in a swift manner; "she moved swiftly" -00053394 02 r 01 openly 0 001 \ 01652902 a 0101 | in an open way; "he openly flaunted his affection for his sister" -00053512 02 r 01 practically 1 001 \ 01834304 a 0101 | in a practical manner; "practically orientated institutions such as business schools"; "a brilliant man but so practically inept that he needed help to cross the road safely" -00053744 02 r 01 practically 0 000 | almost; nearly; "practically the first thing I saw when I got off the train"; "he was practically the only guest at the party"; "there was practically no garden at all" -00053952 02 r 02 presumably 0 presumptively 0 001 \ 02418412 a 0101 | by reasonable assumption; "presumably, he missed the train" -00054084 02 r 01 pyramidically 0 001 \ 01810998 a 0103 | in a pyramidal manner or shape; "the bush was trimmed pyramidically" -00054212 02 r 01 next 0 000 | at the time or occasion immediately following; "next the doctor examined his back" -00054327 02 r 02 for_the_moment 0 for_the_time_being 2 000 | temporarily; "we'll stop for the time being" -00054435 02 r 01 easily 6 000 | without question; "easily the best book she's written" -00054524 02 r 01 by_hand 1 001 ! 00054636 r 0101 | without the use of a machine; "this dress is sewn by hand" -00054636 02 r 01 by_machine 0 001 ! 00054524 r 0101 | with the use of a machine; "the shirt is sewn by machine" -00054750 02 r 01 hand_to_hand 0 000 | at close quarters; "fought hand to hand" -00054831 02 r 01 hand_to_mouth 0 000 | with barely enough money for immediate needs; "they lived form hand to mouth" -00054950 02 r 04 terribly 0 awfully 0 awful 0 frightfully 0 001 ;u 07075172 n 0000 | used as intensifiers; "terribly interesting"; "I'm awful sorry" -00055101 02 r 06 terribly 1 atrociously 0 awfully 2 abominably 0 abysmally 0 rottenly 0 004 \ 01127782 a 0604 \ 01126291 a 0303 \ 01126291 a 0201 \ 01126291 a 0106 | in a terrible manner; "she sings terribly" -00055312 02 r 03 acceptably 0 tolerably 1 so-so 0 004 ! 00055518 r 0202 \ 02435026 a 0201 ! 00055518 r 0101 \ 00017782 a 0101 | in an acceptable (but not outstanding) manner; "she plays tennis tolerably" -00055518 02 r 02 unacceptably 0 intolerably 0 004 ! 00055312 r 0202 \ 02435026 a 0201 ! 00055312 r 0101 \ 00017782 a 0101 | to an unacceptable degree; "The percentage of lead in our drinking water is unacceptably high" -00055739 02 r 01 abusively 0 001 \ 01160584 a 0101 | in an abusive manner; "he behaved abusively toward his children" -00055859 02 r 01 admiringly 0 000 | with admiration; "he looked at his wife admiringly" -00055949 02 r 01 adoringly 0 001 \ 01464433 a 0101 | with adoration; "he looked at his wife adoringly" -00056054 02 r 01 adroitly 0 002 ! 00056200 r 0101 \ 00061262 a 0101 | with adroitness; in an adroit manner; "he handled the situation adroitly" -00056200 02 r 01 maladroitly 0 002 ! 00056054 r 0101 \ 00063277 a 0101 | in a maladroit manner; "he dealt with the situation maladroitly" -00056340 02 r 03 dreadfully 0 awfully 1 horribly 0 003 \ 00193480 a 0304 \ 00193799 a 0201 \ 01803247 a 0101 | of a dreadful kind; "there was a dreadfully bloody accident on the road this morning" -00056539 02 r 01 greatly 0 001 \ 01677433 a 0101 | to an extraordinary extent or degree; "he improved greatly" -00056652 02 r 01 drastically 2 001 \ 00841934 a 0101 | in a drastic manner -00056729 02 r 03 at_all 0 in_the_least 0 the_least_bit 0 000 | in the slightest degree or in any respect; "Are you at all interested? No, not at all"; "was not in the least unfriendly" -00056916 02 r 01 by_all_means 0 002 ;u 07075172 n 0000 ! 00057042 r 0101 | definitely or certainly; "Visit us by all means" -00057042 02 r 03 by_no_means 0 not_by_a_long_sight 0 not_by_a_blame_sight 0 002 ;u 07075172 n 0000 ! 00056916 r 0101 | definitely not; "the prize is by no means certain"; "and that isn't all, not by a long sight" -00057257 02 r 02 thoroughly 0 exhaustively 0 001 \ 00311505 a 0101 | in an exhaustive manner; "we searched the files thoroughly" -00057388 02 r 03 thoroughly 1 soundly 0 good 1 003 ;u 07075172 n 0000 \ 00523786 a 0201 \ 00522463 a 0102 | completely and absolutely (`good' is sometimes used informally for `thoroughly'); "he was soundly defeated"; "we beat him good" -00057626 02 r 02 through 5 through_and_through 0 000 | throughout the entire extent; "got soaked through in the rain"; "I'm frozen through"; "a letter shot through with the writer's personality"; "knew him through and through"; "boards rotten through and through" -00057892 02 r 01 soundly 1 001 \ 00693020 a 0103 | deeply or completely; "slept soundly through the storm"; "the baby is sleeping soundly" -00058033 02 r 02 right 9 flop 1 001 ;u 07075172 n 0000 | exactly; "he fell flop on his face" -00058128 02 r 03 directly 1 flat 0 straight 4 002 ! 00058359 r 0101 \ 00763901 a 0101 | in a forthright manner; candidly or frankly; "he didn't answer directly"; "told me straight out"; "came out flat for less work and more pay" -00058359 02 r 01 indirectly 0 002 ! 00058128 r 0101 \ 00766457 a 0101 | not in a forthright manner; "he answered very indirectly" -00058491 02 r 01 indigenously 0 001 \ 01036383 a 0105 | in an indigenous manner -00058573 02 r 01 individualistically 0 001 \ 00494027 a 0102 | in an individualistic manner -00058667 02 r 01 intractably 0 001 \ 02451951 a 0101 | in an intractable manner -00058749 02 r 01 man-to-man 0 000 | directly; "we must talk man-to-man" -00058823 02 r 01 secondhand 0 001 \ 01854702 a 0101 | by indirect means; "I heard about it only secondhand or thirdhand"; "he prefers to buy secondhand" -00058978 02 r 01 thirdhand 0 001 \ 01855204 a 0101 | by doubly indirect means; "I got the news thirdhand" -00059086 02 r 01 much 0 000 | to a great degree or extent; "she's much better now" -00059171 02 r 06 a_lot 0 lots 0 a_good_deal 0 a_great_deal 0 much 4 very_much 1 000 | to a very great degree or extent; "I feel a lot better"; "we enjoyed ourselves very much"; "she was very much interested"; "this would help a great deal" -00059413 02 r 03 much 6 a_great_deal 3 often 1 000 | frequently or in great quantities; "I don't drink much"; "I don't travel much" -00059547 02 r 01 often 2 000 | in many cases or instances -00059607 02 r 01 better 0 000 | comparative of `well'; in a better or more excellent manner or more advantageously or attractively or to a greater degree etc.; "She had never sung better"; "a deed better left undone"; "better suited to the job" -00059854 02 r 03 increasingly 0 progressively 1 more_and_more 0 002 \ 02536518 a 0201 \ 02534877 a 0101 | advancing in amount or intensity; "she became increasingly depressed" -00060032 02 r 02 effectively 0 in_effect 0 001 \ 00044132 a 0101 | in actuality or reality or fact; "she is effectively his wife"; "in effect, they had no choice" -00060197 02 r 01 de_facto 0 000 | in reality or fact; "the result was, de facto, a one-party system" -00060300 02 r 03 for_all_practical_purposes 0 to_all_intents_and_purposes 1 for_all_intents_and_purposes 0 000 | in every practical sense; "to all intents and purposes the case is closed"; "the rest are for all practical purposes useless" -00060541 02 r 01 reproducibly 0 001 \ 01867996 a 0101 | in a manner that is reproducible -00060632 02 r 02 previously 0 antecedently 0 002 \ 00121865 a 0201 \ 00127137 a 0101 | at an earlier time or formerly; "she had previously lived in Chicago"; "he was previously president of a bank"; "better than anything previously proposed"; "a previously unquestioned attitude"; "antecedently arranged" -00060939 02 r 02 earlier 0 before 3 000 | earlier in time; previously; "I had known her before"; "as I said before"; "he called me the day before but your call had come even earlier"; "her parents had died four years earlier"; "I mentioned that problem earlier" -00061203 02 r 06 subsequently 0 later 1 afterwards 0 afterward 0 after 1 later_on 0 002 \ 00123485 a 0201 \ 00122626 a 0101 | happening at a time subsequent to a reference time; "he apologized subsequently"; "he's going to the store but he'll be back here later"; "it didn't happen until afterward"; "two hours after that" -00061528 02 r 04 abruptly 0 suddenly 0 short 4 dead 1 002 \ 01143279 a 0201 \ 01143585 a 0101 | quickly and without warning; "he stopped suddenly" -00061677 02 r 03 suddenly 2 all_of_a_sudden 1 of_a_sudden 0 000 | happening unexpectedly; "suddenly she felt a sharp pain in her side" -00061814 02 r 01 presto 1 000 | suddenly; "Presto! begone! 'tis here again"- Swift -00061899 02 r 01 presto 2 001 ;c 07020895 n 0000 | at a very fast tempo (faster than allegro) -00061995 02 r 01 inscriptively 0 001 \ 02749600 a 0101 | by means of an inscription -00062081 02 r 01 inscrutably 0 001 \ 00939444 a 0104 | in an inscrutable manner -00062163 02 r 01 insecticidally 0 001 \ 02749690 a 0101 | by means of an insecticide -00062250 02 r 01 insensately 0 001 \ 00117754 a 0102 | in an insensate manner -00062330 02 r 08 intentionally 0 deliberately 0 designedly 0 on_purpose 0 purposely 0 advisedly 0 by_choice 0 by_design 0 005 ! 00040547 r 0202 \ 01337939 a 0201 ! 00062650 r 0101 \ 01338116 a 0101 ! 00062650 r 0202 | with intention; in an intentional manner; "he used that word intentionally"; "I did this by choice" -00062650 02 r 02 unintentionally 0 accidentally 2 004 ! 00062330 r 0202 \ 01338909 a 0201 ! 00062330 r 0101 \ 01339492 a 0101 | without intention; in an unintentional manner; "she hit him unintentionally" -00062857 02 r 02 consequently 0 accordingly 0 001 \ 00122844 a 0102 | (sentence connectors) because of the reason given; "consequently, he didn't do it"; "continued to have severe headaches and accordingly returned to the doctor" -00063089 02 r 01 accordingly 1 000 | in accordance with; "she acted accordingly" -00063172 02 r 03 alternatively 0 instead 0 or_else 1 001 \ 00564667 a 0101 | in place of, or as an alternative to; "Felix became a herpetologist instead"; "alternatively we could buy a used car" -00063369 02 r 02 let_alone 0 not_to_mention 0 000 | much less; "she can't boil potatoes, let alone cook a meal" -00063483 02 r 01 a_fortiori 0 000 | with greater reason; for a still stronger, more certain reason; "if you are wrong then, a fortiori, so am I" -00063630 02 r 03 altogether 0 all_told 0 in_all 0 000 | with everything included or counted; "altogether he earns close to a million dollars" -00063774 02 r 01 all_together 1 000 | used of a group whose members acted or were acted upon collectively and when `all' and `together' can be separated by other words; "they were herded all together"; "they were all herded together"; "the books lay all together in a heap"; "the books all lay together..." -00064083 02 r 01 anatomically 0 001 \ 02897524 a 0102 | with respect to anatomy; "anatomically correct" -00064189 02 r 01 blindly 1 001 \ 01926654 a 0101 | without preparation or reflection; without a rational basis; "they bought the car blindly"; "he picked a wife blindly" -00064361 02 r 01 chromatically 0 001 \ 00366691 a 0101 | with respect to color; "chromatically pure" -00064464 02 r 01 chronologically 0 001 \ 02956880 a 0101 | with respect to chronology; "he is chronologically older" -00064583 02 r 01 clinically 0 001 \ 02885529 a 0101 | in a clinical manner; "she is clinically qualified" -00064691 02 r 02 punctually 0 duly 0 002 \ 00929916 a 0201 \ 01900349 a 0101 | at the proper time; "she was duly apprised of the raise" -00064829 02 r 01 mathematically 0 001 \ 02937876 a 0101 | with respect to mathematics; "mathematically impossible" -00064946 02 r 03 meanwhile 0 meantime 0 in_the_meantime 0 000 | during the intervening time; "meanwhile I will not think about the problem"; "meantime he was attentive to his other interests"; "in the meantime the police were notified" -00065184 02 r 01 meanwhile 1 000 | at the same time but in another place; "meanwhile, back at the ranch..." -00065294 02 r 01 twice 0 000 | two times; "I called her twice" -00065359 02 r 01 largely 1 000 | on a large scale; "the sketch was so largely drawn that you could see it from the back row" -00065486 02 r 01 largo 0 002 ;c 07020895 n 0000 \ 00983196 a 0101 | slowly and broadly -00065575 02 r 02 lengthily 0 at_length 0 001 \ 01439155 a 0103 | in a lengthy or prolix manner; "the argument went on lengthily"; "she talked at length about the problem" -00065748 02 r 01 last 0 000 | most_recently; "I saw him last in London" -00065822 02 r 04 last 1 lastly 0 in_conclusion 0 finally 3 001 \ 01013279 a 0101 | the item at the end; "last, I'll discuss family values" -00065963 02 r 02 last_but_not_least 0 last_not_least 0 000 | in addition to all the foregoing; "last not least he plays the saxophone" -00066100 02 r 01 lastingly 0 001 \ 01754421 a 0101 | in an enduring or permanent manner -00066190 02 r 04 absently 0 abstractedly 0 inattentively 0 absentmindedly 0 004 \ 00165171 a 0402 \ 00164863 a 0301 \ 00165171 a 0203 \ 00165171 a 0101 | in an absentminded or preoccupied manner; "he read the letter absently" -00066418 02 r 01 accusingly 0 001 \ 00924257 a 0103 | in an accusing manner; "he looked at her accusingly" -00066527 02 r 01 affectedly 0 001 \ 00073048 a 0101 | in an affected manner -00066605 02 r 03 affectingly 0 poignantly 0 touchingly 0 003 \ 01560821 a 0303 \ 01560821 a 0202 \ 01560821 a 0101 | in a poignant or touching manner; "she spoke poignantly" -00066781 02 r 03 ahead 0 in_front 0 before 1 000 | at or in the front; "I see the lights of a town ahead"; "the road ahead is foggy"; "staring straight ahead"; "we couldn't see over the heads of the people in front"; "with the cross of Jesus marching on before" -00067045 02 r 03 ahead 1 in_advance 0 beforehand 0 000 | ahead of time; in anticipation; "when you pay ahead (or in advance) you receive a discount"; "We like to plan ahead"; "should have made reservations beforehand" -00067265 02 r 06 ahead 2 onward 1 onwards 0 forward 1 forwards 0 forrader 0 000 | in a forward direction; "go ahead"; "the train moved ahead slowly"; "the boat lurched ahead"; "moved onward into the forest"; "they went slowly forward in the mud" -00067513 02 r 03 ahead 3 out_front 0 in_the_lead 0 000 | leading or ahead in a competition; "the horse was three lengths ahead going into the home stretch"; "ahead by two pawns"; "our candidate is in the lead in the polls"; "way out front in the race"; "the advertising campaign put them out front in sales" -00067823 02 r 01 ahead 4 000 | to a different or a more advanced time (meaning advanced either toward the present or toward the future); "moved the appointment ahead from Tuesday to Monday"; "pushed the deadline ahead from Tuesday to Wednesday" -00068070 02 r 01 ahead 5 000 | to a more advanced or advantageous position; "a young man sure to get ahead"; "pushing talented students ahead" -00068215 02 r 02 all_along 0 right_along 0 000 | all the time or over a period of time; "She had known all along"; "the hope had been there all along" -00068368 02 r 02 along 1 on 0 000 | with a forward motion; "we drove along admiring the view"; "the horse trotted along at a steady pace"; "the circus traveled on to the next city"; "move along"; "march on" -00068577 02 r 01 along 0 000 | in accompaniment or as a companion; "his little sister came along to the movies"; "I brought my camera along"; "working along with his father" -00068753 02 r 01 along 2 000 | in addition (usually followed by `with'); "we sent them food and some clothing went along in the package"; "along with the package came a bill"; "consider the advantages along with the disadvantages" -00068986 02 r 01 along 3 000 | to a more advanced state; "the work is moving along"; "well along in their research"; "hurrying their education along"; "getting along in years" -00069164 02 r 01 along 4 000 | in line with a length or direction (often followed by `by' or `beside'); "pass the word along"; "ran along beside me"; "cottages along by the river" -00069346 02 r 01 on 1 000 | indicates continuity or persistence or concentration; "his spirit lives on"; "shall I read on?" -00069472 02 r 01 on 2 000 | in a state required for something to function or be effective; "turn the lights on"; "get a load on" -00069603 02 r 01 alike 1 000 | in a like manner; "they walk alike" -00069672 02 r 02 alike 0 likewise 8 000 | equally; "parents and teachers alike demanded reforms" -00069771 02 r 02 aloud 0 out_loud 0 000 | using the voice; not silently; "please read the passage aloud"; "he laughed out loud" -00069901 02 r 03 loudly 0 loud 0 aloud 1 002 \ 01452593 a 0101 ! 00070166 r 0101 | with relatively high volume; "the band played loudly"; "she spoke loudly and angrily"; "he spoke loud enough for those at the back of the room to hear him"; "cried aloud for help" -00070166 02 r 02 softly 0 quietly 0 002 \ 01454636 a 0101 ! 00069901 r 0101 | with low volume; "speak softly but carry a big stick"; "she spoke quietly to the child"; "the radio was playing softly" -00070366 02 r 01 faintly 0 001 \ 01747364 a 0101 | to a faint degree or weakly perceived; "between him and the dim light a form was outlined faintly"; "stars shining faintly through the overcast"; "could hear his distant shouts only faintly"; "the rumors weren't even faintly true" -00070650 02 r 01 analogously 0 001 \ 02071973 a 0101 | in an analogous manner; "analogously, we have a variable" -00070765 02 r 07 randomly 0 indiscriminately 0 haphazardly 0 willy-nilly 0 arbitrarily 0 at_random 0 every_which_way 1 003 \ 01924803 a 0301 \ 00773759 a 0201 \ 01924316 a 0101 | in a random manner; "the houses were randomly scattered"; "bullets were fired into the crowd at random" -00071050 02 r 01 around 0 000 | in circumference; "the trunk is ten feet around"; "the pond is two miles around" -00071165 02 r 02 about 1 around 1 000 | in the area or vicinity; "a few spectators standing about"; "hanging around"; "waited around for the next flight" -00071321 02 r 01 nearby 0 000 | not far away in relative terms; "she works nearby"; "the planets orbiting nearby are Venus and Mars" -00071456 02 r 02 round 0 around 2 000 | from beginning to end; throughout; "It rains all year round on Skye"; "frigid weather the year around" -00071601 02 r 01 around 5 000 | by a circular or circuitous route; "He came all the way around the base"; "the road goes around the pond" -00071741 02 r 01 around 6 000 | in a circle or circular motion; "The wheels are spinning around" -00071840 02 r 02 about 6 around 7 000 | all around or on all sides; "dirty clothes lying around (or about)"; "let's look about for help"; "There were trees growing all around"; "she looked around her" -00072043 02 r 01 around 8 000 | to a particular destination either specified or understood; "she came around to see me"; "I invited them around for supper" -00072201 02 r 02 about 2 around 9 000 | in or to a reversed position or direction; "about face"; "suddenly she turned around" -00072329 02 r 02 about 4 around 4 000 | used of movement to or among many different places or in no particular direction; "wandering about with no place to go"; "people were rushing about"; "news gets around (or about)"; "traveled around in Asia"; "he needs advice from someone who's been around"; "she sleeps around" -00072649 02 r 01 here_and_there 0 000 | in or to various places; first this place and then that; "he worked here and there but never for long in one town"; "we drove here and there in the darkness" -00072849 02 r 02 urgently 0 desperately 0 002 \ 00713351 a 0201 \ 00713558 a 0102 | with great urgency; "health care reform is needed urgently"; "the soil desperately needed potash" -00073033 02 r 08 about 5 almost 0 most 2 nearly 0 near 3 nigh 1 virtually 2 well-nigh 0 000 | (of actions or states) slightly short of or not quite accomplished; all but; "the job is (just) about done"; "the baby was almost asleep when the alarm sounded"; "we're almost finished"; "the car all but ran her down"; "he nearly fainted"; "talked for nigh onto 2 hours"; "the recording is well-nigh perfect"; "virtually all the parties signed the contract"; "I was near exhausted by the run"; "most everyone agrees" -00073546 02 r 01 asexually 0 001 \ 02135913 a 0101 | in an asexual manner; "plants that reproduce asexually" -00073657 02 r 01 asymptotically 0 001 \ 02929071 a 0101 | toward an asymptote; "it grew asymptotically" -00073763 02 r 02 scantily 0 barely 1 002 \ 00106821 a 0201 \ 00106821 a 0102 | in a sparse or scanty way; "a barely furnished room" -00073897 02 r 05 chiefly 0 principally 0 primarily 1 mainly 0 in_the_main 1 003 \ 01852174 a 0301 \ 01277426 a 0204 \ 01277426 a 0101 | for the most part; "he is mainly interested in butterflies" -00074095 02 r 01 ago 0 000 | in the past; "long ago"; "sixty years ago my grandfather came to the U.S." -00074201 02 r 02 back 1 backward 2 002 ! 00075442 r 0202 ! 00075442 r 0101 | in or to or toward a past time; "set the clocks back an hour"; "never look back"; "lovers of the past looking fondly backward" -00074407 02 r 05 back 0 backward 3 backwards 3 rearward 0 rearwards 0 001 ! 00074641 r 0201 | at or to or toward the back or rear; "he moved back"; "tripped when he stepped backward"; "she looked rearward out the window of the car" -00074641 02 r 06 forward 0 forwards 1 frontward 0 frontwards 0 forrad 0 forrard 0 002 ;u 07155661 n 0000 ! 00074407 r 0102 | at or to or toward the front; "he faced forward"; "step forward"; "she practiced sewing backward as well as frontward on her new sewing machine"; (`forrad' and `forrard' are dialectal variations) -00074964 02 r 01 back 3 000 | in repayment or retaliation; "we paid back everything we had borrowed"; "he hit me and I hit him back"; "I was kept in after school for talking back to the teacher" -00075161 02 r 01 back 4 000 | in or to or toward a former location; "she went back to her parents' house" -00075269 02 r 01 back 5 000 | in or to or toward an original condition; "he went back to sleep" -00075367 02 r 01 back 6 000 | in reply; "he wrote back three days later" -00075442 02 r 02 ahead 6 forward 2 002 ! 00074201 r 0202 ! 00074201 r 0101 | toward the future; forward in time; "I like to look ahead in imagination to what the future may bring"; "I look forward to seeing you" -00075656 02 r 01 aback 0 000 | by surprise; "taken aback by the caustic remarks" -00075739 02 r 01 aback 1 000 | having the wind against the forward side of the sails; "the ship came up into the wind with all yards aback" -00075881 02 r 01 abeam 0 000 | at right angles to the length of a ship or airplane -00075966 02 r 02 backward 1 backwards 1 000 | in a manner or order or direction the reverse of normal; "it's easy to get the `i' and the `e' backward in words like `seize' and `siege'"; "the child put her jersey on backward" -00076193 02 r 03 back_and_forth 0 backward_and_forward 0 to_and_fro 0 000 | moving from one place to another and back again; "he traveled back and forth between Los Angeles and New York"; "the treetops whipped to and fro in a frightening manner"; "the old man just sat on the porch and rocked back and forth all day" -00076512 02 r 01 up_and_down 1 000 | moving backward and forward along a given course; "he walked up and down the locker room"; "all up and down the Eastern seaboard" -00076681 02 r 01 aurally 0 001 \ 02648698 a 0101 | with regard to sound or the ear; "the new musical was visually and aurally appealing" -00076820 02 r 01 axially 0 001 \ 02654894 a 0101 | with respect to an axis; "the jet was directed axially toward the cathode" -00076948 02 r 01 brazenly 0 001 \ 00155144 a 0106 | in a brazen manner; "he spoke brazenly" -00077042 02 r 01 brilliantly 0 001 \ 01335156 a 0102 | in an extremely intelligent way; "he solved the problem brilliantly" -00077168 02 r 03 brilliantly 1 brightly 0 bright 0 002 \ 00278551 a 0201 \ 00281173 a 0101 | with brightness; "the stars shone brilliantly"; "the windows glowed jewel bright" -00077345 02 r 01 catalytically 0 001 \ 03054409 a 0101 | by catalytic action; in a catalytic manner; "catalytically stabilized combustion of propane" -00077497 02 r 01 commercially 0 001 \ 00483146 a 0101 | in a commercial manner; "the product is commercially available" -00077619 02 r 02 dearly 0 dear 0 001 \ 00933599 a 0102 | at a great cost; "he paid dearly for the food"; "this cost him dear" -00077747 02 r 03 dearly 1 affectionately 0 dear 1 002 \ 01464700 a 0201 \ 01462324 a 0103 | with affection; "she loved him dearly"; "he treats her affectionately" -00077912 02 r 02 dearly 2 in_a_heartfelt_way 0 001 \ 02179968 a 0101 | in a sincere and heartfelt manner; "I would dearly love to know" -00078050 02 r 01 conversely 0 001 \ 02382762 a 0101 | with the terms of the relation reversed; "conversely, not all women are mothers" -00078187 02 r 01 cosmetically 0 001 \ 00070111 a 0101 | for cosmetic purposes to improve appearance; "it is used cosmetically by many women" -00078330 02 r 01 decoratively 0 001 \ 01091234 a 0102 | in a decorative manner; "used decoratively at Christmas" -00078445 02 r 01 covertly 0 002 ! 00078558 r 0101 \ 01705655 a 0101 | in a covert manner; "he did it covertly" -00078558 02 r 01 overtly 0 002 ! 00078445 r 0101 \ 01704761 a 0101 | in an overt manner; "he did it overtly" -00078669 02 r 01 microscopically 0 001 \ 02918844 a 0102 | by using a microscope; so as to be visible only with a microscope; as seen with a microscope; "the blood was examined microscopically"; "the seeds were microscopically small" -00078905 02 r 01 microscopically 1 001 \ 01838772 a 0101 | as if by using a microscope; with extreme precision and attention to detail; in minute detail; "every manuscript was edited microscopically" -00079107 02 r 03 undoubtedly 0 doubtless 0 doubtlessly 0 000 | without doubt; certainly; "it's undoubtedly very beautiful" -00079232 02 r 01 statistically 0 001 \ 02911627 a 0101 | with respect to statistics; "this is statistically impossible" -00079354 02 r 01 thermodynamically 0 001 \ 02908041 a 0101 | with respect to thermodynamics; "this phenomenon is thermodynamically impossible" -00079499 02 r 03 tonight 0 this_evening 0 this_night 0 000 | during the night of the present day; "drop by tonight" -00079617 02 r 01 actively 0 002 ! 00079748 r 0101 \ 00038750 a 0101 | in an active manner; "he participated actively in the war" -00079748 02 r 01 passively 0 002 ! 00079617 r 0101 \ 00039592 a 0101 | in a passive manner; "he listened passively" -00079866 02 r 01 below 0 001 ! 00079947 r 0101 | at a later place; "see below" -00079947 02 r 02 above 0 supra 0 001 ! 00079866 r 0101 | at an earlier place; "see above" -00080039 02 r 04 below 1 at_a_lower_place 0 to_a_lower_place 1 beneath 0 001 ! 00080169 r 0101 | in or to a place that is lower -00080169 02 r 04 above 1 higher_up 0 in_a_higher_place 0 to_a_higher_place 0 001 ! 00080039 r 0101 | in or to a place that is higher -00080304 02 r 02 in_the_bargain 0 into_the_bargain 0 000 | in addition; over and above what is expected; "He lost his wife in the bargain" -00080445 02 r 01 contemptibly 0 001 \ 00904548 a 0101 | in a manner deserving contempt -00080534 02 r 04 contemptuously 0 disdainfully 0 scornfully 0 contumeliously 0 004 \ 01995500 a 0401 \ 01995288 a 0304 \ 01995288 a 0202 \ 01995288 a 0101 | without respect; in a disdainful manner; "she spoke of him contemptuously" -00080768 02 r 01 contractually 0 001 \ 02702656 a 0101 | by virtue of a contract; "they were contractually responsible" -00080890 02 r 04 insanely 1 crazily 0 dementedly 0 madly 1 005 \ 02075321 a 0405 \ 02075321 a 0303 \ 02075321 a 0202 ! 00081194 r 0101 \ 02074092 a 0101 | in an insane manner; "she behaved insanely"; "he behaves crazily when he is off his medication"; "the witch cackled madly"; "screaming dementedly" -00081194 02 r 01 sanely 1 002 ! 00080890 r 0101 \ 02073443 a 0101 | in a sane or lucid manner; "she is behaving rather sanely these days even though we know she is schizophrenic" -00081375 02 r 01 comically 0 001 \ 01265308 a 0103 | in a comical manner; "the tone was comically desperate" -00081486 02 r 01 daily 0 001 \ 01968165 a 0101 | every day; without missing a day; "he stops by daily" -00081591 02 r 04 hebdomadally 0 weekly 0 every_week 0 each_week 0 001 \ 01968503 a 0102 | without missing a week; "she visited her aunt weekly" -00081737 02 r 04 annually 0 yearly 0 every_year 0 each_year 0 001 \ 01969150 a 0101 | without missing a year; "they travel to China annually" -00081881 02 r 03 curiously 0 inquisitively 0 interrogatively 0 002 \ 00664879 a 0201 \ 00664449 a 0101 | with curiosity; "the baby looked around curiously" -00082039 02 r 01 dazzlingly 0 001 \ 01283787 a 0101 | in a manner or to a degree that dazzles the beholder -00082148 02 r 03 deceptively 0 deceivingly 0 misleadingly 0 002 \ 01224253 a 0302 \ 01938975 a 0101 | in a misleading way; "the exam looked deceptively easy" -00082308 02 r 02 yonder 0 yon 0 000 | at or in an indicated (usually distant) place (`yon' is archaic and dialectal); "the house yonder"; "scattered here and yon"- Calder Willingham -00082492 02 r 01 deprecatively 0 001 \ 00648238 a 0101 | in a deprecative manner -00082575 02 r 01 depressingly 0 001 \ 00364479 a 0101 | in a depressing manner or to a depressing degree -00082682 02 r 01 dichotomously 0 001 \ 02480861 a 0101 | in a dichotomous manner -00082765 02 r 01 digitately 0 001 \ 00946281 a 0101 | in a digitate manner -00082842 02 r 01 disruptively 0 001 \ 01923720 a 0101 | in a disruptive manner -00082923 02 r 03 dizzily 0 giddily 0 light-headedly 0 002 \ 02544048 a 0202 \ 02544048 a 0101 | in a giddy light-headed manner; "he walked around dizzily" -00083080 02 r 01 dorsally 0 001 \ 00132127 a 0101 | in a dorsal location or direction -00083168 02 r 01 dorsoventrally 0 001 \ 00132754 a 0101 | in a dorsoventral direction; "the ray has a dorsoventrally flattened body" -00083303 02 r 01 ventrally 0 001 \ 00132385 a 0101 | in a ventral location or direction -00083393 02 r 03 doubly 0 double 0 twice 1 001 \ 02217241 a 0101 | to double the degree; "she was doubly rewarded"; "his eyes were double bright" -00083541 02 r 01 singly 0 002 \ 00493460 a 0102 ! 00083666 r 0101 | one by one; one at a time; "they were arranged singly" -00083666 02 r 01 multiply 0 002 ! 00083541 r 0101 \ 02215977 a 0101 | in several ways; in a multiple manner; "they were multiply checked for errors" -00083817 02 r 01 multiplicatively 0 001 \ 02536123 a 0101 | in a multiplicative manner; "the errors increased multiplicatively" -00083947 02 r 02 doubly 1 in_two_ways 0 000 | in a twofold manner; "he was doubly wrong" -00084038 02 r 03 empirically 0 through_empirical_observation 0 by_trial_and_error 0 002 \ 00858917 a 0101 ! 00170188 r 0101 | in an empirical manner; "this can be empirically tested" -00084223 02 r 04 particularly 0 peculiarly 2 especially 0 specially 0 004 \ 00488187 a 0404 \ 00488187 a 0301 \ 00491089 a 0201 \ 00488187 a 0103 | to a distinctly greater extent or degree than is common; "he was particularly fussy about spelling"; "a particularly gruesome attack"; "under peculiarly tragic circumstances"; "an especially (or specially) cautious approach to the danger" -00084612 02 r 01 ex_cathedra 0 000 | with the full authority of the office; "the pope must speak ex cathedra for an encyclical to be infallible" -00084759 02 r 01 extra 1 000 | unusually or exceptionally; "an extra fast car" -00084840 02 r 03 elaborately 0 intricately 0 in_an_elaborate_way 0 002 \ 02178500 a 0201 \ 01795933 a 0101 | with elaboration; "it was elaborately spelled out" -00085002 02 r 01 elsewhere 0 000 | in or to another place; "he went elsewhere"; "look elsewhere for the answer" -00085116 02 r 01 eschatologically 0 001 \ 02722630 a 0101 | in relation to eschatology; "even atheists can be eschatologically minded" -00085253 02 r 01 exasperatingly 0 001 \ 01809245 a 0101 | in an exasperating manner -00085339 02 r 03 experimentally 0 by_experimentation 0 through_an_experiment 0 001 \ 00859949 a 0101 | in an experimental fashion; "this can be experimentally determined" -00085512 02 r 01 expressly 0 001 \ 00941148 a 0101 | with specific intentions; for the express purpose; "she needs the money expressly for her patients" -00085667 02 r 03 facetiously 0 jokingly 1 tongue-in-cheek 0 002 \ 01267076 a 0204 \ 01264913 a 0102 | not seriously; "I meant it facetiously" -00085811 02 r 05 quickly 0 rapidly 0 speedily 0 chop-chop 0 apace 0 004 \ 00979366 a 0302 \ 00979697 a 0201 ! 00161630 r 0101 \ 00979366 a 0101 | with rapid movements; "he works quickly" -00086000 02 r 01 fast 1 000 | quickly or rapidly (often used as a combining form); "how fast can he get here?"; "ran as fast as he could"; "needs medical help fast"; "fast-running rivers"; "fast-breaking news"; "fast-opening (or fast-closing) shutters" -00086255 02 r 02 flat_out 1 like_blue_murder 0 000 | at top speed; "he ran flat out to catch the bus"; "he was off down the road like blue murder" -00086404 02 r 02 fast 2 tight 0 000 | firmly or closely; "held fast to the rope"; "her foot was stuck fast"; "held tight" -00086528 02 r 02 quicker 0 faster 1 002 \ 00979366 a 0201 \ 00979366 a 0101 | more quickly -00086621 02 r 01 slower 0 001 \ 00980527 a 0101 | more slowly -00086685 02 r 02 quickest 0 fastest 0 002 \ 00979366 a 0201 \ 00979366 a 0101 | most quickly -00086780 02 r 01 slowest 0 001 \ 00980527 a 0101 | most slowly -00086845 02 r 01 permissively 0 001 \ 01762839 a 0101 | in a permissive manner -00086926 02 r 02 permissibly 0 allowably 0 002 ! 00087037 r 0101 \ 01760944 a 0101 | in a permissible manner -00087037 02 r 01 impermissibly 0 002 ! 00086926 r 0101 \ 01761186 a 0101 | not permissibly; "the radon level in the basement was impermissibly high" -00087188 02 r 03 flatly 0 categorically 0 unconditionally 0 003 \ 00556709 a 0301 \ 01913931 a 0202 \ 01913931 a 0103 | in an unqualified manner; "he flatly denied the charges" -00087367 02 r 01 flush 0 000 | squarely or solidly; "hit him flush in the face" -00087449 02 r 01 flush 1 000 | in the same plane; "set it flush with the top of the table" -00087542 02 r 04 everlastingly 0 eternally 0 forever 0 evermore 0 002 \ 01755024 a 0204 \ 01755024 a 0105 | for a limitless time; "no one can live forever"; "brightly beams our Father's mercy from his lighthouse evermore"- P.P.Bliss -00087777 02 r 01 ad_infinitum 1 001 \ 01007354 a 0101 | to infinity; without or seemingly without limit; "talked on and on ad infinitum" -00087916 02 r 02 permanently 0 for_good 0 002 \ 01754421 a 0101 ! 00088303 r 0101 | for a long time without essential change; "he is permanently disabled" -00088073 02 r 01 in_perpetuity 1 000 | for an indefinitely long time; "bequeathed to the nation in perpetuity" -00088186 02 r 01 in_perpetuity 2 000 | for life; "desire happiness in perpetuity"; "an annuity paid in perpetuity" -00088303 02 r 01 temporarily 0 002 \ 01755627 a 0102 ! 00087916 r 0101 | for a limited time only; not permanently; "he will work here temporarily"; "he was brought out of retirement temporarily"; "a power failure temporarily darkened the town" -00088549 02 r 01 ad_interim 0 000 | for an intervening time; temporarily; "elected to serve ad interim" -00088655 02 r 04 ad_lib 0 ad_libitum 0 spontaneously 1 impromptu 0 000 | without advance preparation; "he spoke ad lib" -00088777 02 r 01 provisionally 0 001 \ 00556318 a 0102 | temporarily and conditionally; "they have agreed provisionally"; "was appointed provisionally" -00088931 02 r 01 continually 1 001 \ 00592222 a 0101 | seemingly without interruption; "complained continually that there wasn't enough money" -00089076 02 r 02 forever 2 forever_and_a_day 0 001 ;u 07075172 n 0000 | for a very long or seemingly endless time; "she took forever to write the paper"; "we had to wait forever and a day" -00089267 02 r 01 highly 0 001 \ 02339120 a 0102 | in a high position or level or rank; "details known by only a few highly placed persons" -00089408 02 r 02 highly 1 extremely 2 001 \ 01210854 a 0101 | to a high degree or extent; favorably or with much respect; "highly successful"; "He spoke highly of her"; "does not think highly of his writing"; "extremely interesting" -00089643 02 r 01 highly 5 000 | at a high rate or wage; "highly paid workers" -00089723 02 r 01 histologically 0 001 \ 03072365 a 0101 | involving the use of histology or histological techniques; "histologically identifiable structures" -00089883 02 r 01 magnetically 0 001 \ 00167077 a 0102 | as if by magnetism; "he was magnetically attracted to her" -00090000 02 r 01 marginally 0 001 \ 01496311 a 0102 | in a marginal manner; "marginally interesting" -00090103 02 r 01 geometrically 0 002 ! 00129532 r 0101 \ 02735208 a 0101 | in a geometric fashion; "it grew geometrically" -00090228 02 r 03 perilously 0 hazardously 0 dangerously 0 003 \ 02058794 a 0301 \ 02059811 a 0201 \ 02060496 a 0102 | in a dangerous manner; "he came dangerously close to falling off the ledge" -00090424 02 r 02 tiredly 0 wearily 0 002 \ 02432428 a 0202 \ 02431728 a 0101 | in a weary manner; "he walked around tiredly" -00090551 02 r 01 vitally 0 001 \ 00902347 a 0101 | to a vital degree; "this is vitally important" -00090651 02 r 01 energetically 1 001 \ 00873603 a 0101 | in an energetic manner -00090733 02 r 01 strenuously 1 001 \ 00875235 a 0101 | in a strenuous manner; strongly or vigorously; "he objected strenuously to the stand his party was taking" -00090897 02 r 01 intently 0 001 \ 00163948 a 0105 | with strained or eager attention; "listened intently"; "stood watching intently" -00091032 02 r 01 dingdong 0 001 ;u 07075172 n 0000 | heartily or earnestly; "They fell to work dingdong" -00091139 02 r 01 mightily 1 000 | powerfully or vigorously; "he strove mightily to achieve a better position in life" -00091259 02 r 01 reluctantly 0 001 \ 02566453 a 0103 | with reluctance -00091332 02 r 01 hard 0 001 \ 00836544 a 0105 | with effort or force or vigor; "the team played hard"; "worked hard all day"; "pressed hard on the lever"; "hit the ball hard"; "slammed the door hard" -00091534 02 r 01 hard 1 000 | to the full extent possible; all the way; "hard alee"; "the ship went hard astern"; "swung the wheel hard left" -00091678 02 r 01 hard 3 001 \ 00744916 a 0102 | slowly and with difficulty; "prejudices die hard" -00091778 02 r 02 hard 4 severely 3 001 \ 01129185 a 0201 | causing great damage or hardship; "industries hit hard by the depression"; "she was severely affected by the bank's failure" -00091964 02 r 02 hard 5 firmly 1 000 | with firmness; "held hard to the railing" -00092047 02 r 01 hard 7 000 | earnestly or intently; "thought hard about it"; "stared hard at the accused" -00092156 02 r 01 hard 8 000 | with pain or distress or bitterness; "he took the rejection very hard" -00092259 02 r 01 hard 9 000 | very near or close in space or time; "it stands hard by the railroad tracks"; "they were hard on his heels"; "a strike followed hard upon the plant's opening" -00092450 02 r 01 hard a 001 \ 01152091 a 0101 | into a solid condition; "concrete that sets hard within a few hours" -00092569 02 r 01 tightly 1 001 \ 02095670 a 0101 | securely fixed or fastened; "the window was tightly sealed" -00092682 02 r 01 briefly 0 001 \ 01442826 a 0101 | for a short time; "she visited him briefly"; "was briefly associated with IBM" -00092814 02 r 02 momentarily 2 momently 2 000 | for an instant or moment; "we paused momentarily before proceeding"; "a cardinal perched momently on the dogwood branch" -00092985 02 r 02 conclusively 0 once_and_for_all 0 002 ! 00093139 r 0101 \ 00550282 a 0101 | in a conclusive way; "we settled the problem conclusively" -00093139 02 r 01 inconclusively 0 002 ! 00092985 r 0101 \ 00550777 a 0101 | not conclusively; "the meeting ended inconclusively" -00093270 02 r 04 deplorably 0 lamentably 0 sadly 1 woefully 0 003 \ 01366525 a 0402 \ 01126841 a 0305 \ 01126841 a 0101 | in an unfortunate or deplorable manner; "he was sadly neglected"; "it was woefully inadequate" -00093489 02 r 01 denominationally 0 001 \ 02710825 a 0101 | with respect to denomination; "denominationally diverse audiences" -00093618 02 r 01 cortically 0 001 \ 02974979 a 0101 | with respect to the cortex; "cortically induced arousal" -00093731 02 r 01 focally 0 001 \ 00330904 a 0101 | in a focal manner; "the submucosa was focally infiltrated" -00093843 02 r 01 hypothalamically 0 001 \ 02982729 a 0101 | with respect to the hypothalamus; "hypothalamically controlled secretions" -00093980 02 r 01 intradermally 0 001 \ 02877503 a 0101 | into the skin -00094053 02 r 01 intramuscularly 0 001 \ 02882838 a 0101 | in an intramuscular way; "administer the drug intramuscularly" -00094177 02 r 02 amusingly 0 divertingly 0 002 \ 01344485 a 0203 \ 01344485 a 0101 | in an entertaining and amusing manner; "Hollywood has grown too sophisticated to turn out anything really amusingly bad these days" -00094396 02 r 04 downstairs 0 down_the_stairs 0 on_a_lower_floor 0 below 6 001 ! 00094545 r 0101 | on a floor below; "the tenants live downstairs" -00094545 02 r 03 upstairs 0 up_the_stairs 0 on_a_higher_floor 0 001 ! 00094396 r 0101 | on a floor above; "they lived upstairs" -00094675 02 r 01 upstairs 1 000 | with respect to the mind; "she's a bit weak upstairs" -00094765 02 r 01 downwind 0 001 ! 00094893 r 0101 | with the wind; in the direction the wind is blowing; "they flew downwind" -00094893 02 r 03 upwind 0 against_the_wind 0 into_the_wind 0 001 ! 00094765 r 0101 | in the direction opposite to the direction the wind is blowing; "they flew upwind" -00095063 02 r 02 windward 0 downwind 1 002 ! 00095195 r 0202 ! 00095195 r 0101 | away from the wind; "they were sailing windward" -00095195 02 r 02 leeward 0 upwind 1 002 ! 00095063 r 0202 ! 00095063 r 0101 | toward the wind; "they were sailing leeward" -00095320 02 r 04 down 0 downwards 0 downward 0 downwardly 0 004 ! 00096333 r 0404 ! 00096333 r 0303 ! 00096333 r 0202 ! 00096333 r 0101 | spatially or metaphorically from a higher to a lower level or position; "don't fall down"; "rode the lift up and skied down"; "prices plunged downward" -00095612 02 r 01 down 2 001 ! 00096760 r 0101 | away from a more central or a more northerly place; "was sent down to work at the regional office"; "worked down on the farm"; "came down for the wedding"; "flew down to Florida" -00095841 02 r 01 down 3 000 | paid in cash at time of purchase; "put ten dollars down on the necklace" -00095946 02 r 01 down 4 000 | in an inactive or inoperative state; "the factory went down during the strike"; "the computer went down again" -00096089 02 r 01 down 5 001 ! 00097011 r 0101 | to a lower intensity; "he slowly phased down the light until the stage was completely black" -00096232 02 r 01 down 6 000 | from an earlier time; "the story was passed down from father to son" -00096333 02 r 04 up 0 upwards 0 upward 0 upwardly 0 004 ! 00095320 r 0404 ! 00095320 r 0303 ! 00095320 r 0202 ! 00095320 r 0101 | spatially or metaphorically from a lower to a higher position; "look up!"; "the music surged up"; "the fragments flew upwards"; "prices soared upwards"; "upwardly mobile" -00096636 02 r 03 up 1 upwards 1 upward 1 000 | to a later time; "they moved the meeting date up"; "from childhood upward" -00096760 02 r 01 up 2 001 ! 00095612 r 0101 | to a more central or a more northerly place; "was transferred up to headquarters"; "up to Canada for a vacation" -00096921 02 r 01 up 3 000 | nearer to the speaker; "he walked up and grabbed my lapels" -00097011 02 r 01 up 5 001 ! 00096089 r 0101 | to a higher intensity; "he turned up the volume" -00097108 02 r 02 upriver 0 upstream 0 002 ! 00097231 r 0202 ! 00097231 r 0101 | toward the source or against the current -00097231 02 r 02 downriver 0 downstream 0 002 ! 00097108 r 0202 ! 00097108 r 0101 | away from the source or with the current -00097358 02 r 01 downfield 0 001 ;c 00523513 n 0000 | toward or in the defending team's end of the playing field; "he caught the ball and ran downfield 15 yards" -00097522 02 r 01 downright 0 001 ;u 06321054 n 0000 | thoroughgoing; "he is outright dishonest" -00097620 02 r 01 outright 0 000 | without reservation or concealment; "she asked him outright for a divorce" -00097731 02 r 01 outright 1 000 | without restrictions or stipulations or further payments; "buy outright" -00097840 02 r 01 home 1 000 | at or to or in the direction of one's home or family; "He stays home on weekends"; "after the game the children brought friends home for supper"; "I'll be home tomorrow"; "came riding home in style"; "I hope you will come home for Christmas"; "I'll take her home"; "don't forget to write home" -00098166 02 r 01 at_home 0 000 | at, to, or toward the place where you reside; "he worked at home" -00098267 02 r 01 at_home 1 001 ;c 00523513 n 0000 | on the home team's field; "they played at home last night" -00098380 02 r 01 home 3 000 | to the fullest extent; to the heart; "drove the nail home"; "drove his point home"; "his comments hit home" -00098520 02 r 01 home 4 000 | on or to the point aimed at; "the arrow struck home" -00098605 02 r 02 homeward 0 homewards 0 000 | toward home; "fought his way homeward through the deep snow" -00098714 02 r 02 rather 2 instead 1 000 | on the contrary; "rather than disappoint the children, he did two quick tricks before he left"; "he didn't call; rather (or instead), he wrote her a letter"; "used English terms instead of Latin ones" -00098959 02 r 05 insofar 0 in_so_far 0 so_far 2 to_that_extent 0 to_that_degree 0 000 | to the degree or extent that; "insofar as it can be ascertained, the horse lung is comparable to that of man"; "so far as it is reasonably practical he should practice restraint" -00099228 02 r 01 mordaciously 0 001 \ 02079313 a 0105 | in a mordacious manner; "she taunted him mordaciously" -00099341 02 r 02 more 0 to_a_greater_extent 1 001 ! 00099527 r 0101 | used to form the comparative of some adjectives and adverbs; "more interesting"; "more beautiful"; "more quickly" -00099527 02 r 02 less 0 to_a_lesser_extent 0 001 ! 00099341 r 0101 | used to form the comparative of some adjectives and adverbs; "less interesting"; "less expensive"; "less quickly" -00099712 02 r 01 more 1 001 ! 00099868 r 0101 | comparative of much; to a greater degree or extent; "he works more now"; "they eat more than they should" -00099868 02 r 01 less 1 001 ! 00099712 r 0101 | comparative of little; "she walks less than she should"; "he works less these days" -00100002 02 r 01 little 0 000 | not much; "he talked little about his family" -00100082 02 r 03 early 0 ahead_of_time 0 too_soon 0 001 ! 00100267 r 0101 | before the usual time or the time expected; "she graduated early"; "the house was completed ahead of time" -00100267 02 r 03 late 0 belatedly 0 tardily 1 003 \ 01901186 a 0303 \ 01901186 a 0201 ! 00100082 r 0101 | later than usual or than expected; "the train arrived late"; "we awoke late"; "the children came late to school"; "notice came so tardily that we almost missed the deadline"; "I belatedly wished her a happy birthday" -00100592 02 r 02 early 2 betimes 0 000 | in good time; "he awoke betimes that morning" -00100681 02 r 02 early_on 0 early 1 000 | during an early stage; "early on in her career" -00100773 02 r 01 for_that_matter 0 000 | as far as that is concerned; "for that matter I don't care either" -00100883 02 r 01 afar 0 000 | (old-fashioned) at or from or to a great distance; far; "we traveled afar"; "we could see the ship afar off"; "the Magi came from afar" -00101051 02 r 01 far 0 000 | at or to or from a great distance in space; "he traveled far"; "strayed far from home"; "sat far away from each other" -00101201 02 r 01 far 1 000 | remote in time; "if we could see far into the future"; "all that happened far in the past" -00101323 02 r 01 far 2 000 | to a considerable degree; very much; "a far far better thing that I do"; "felt far worse than yesterday"; "eyes far too close together" -00101490 02 r 01 far 4 000 | at or to a certain point or degree; "I can only go so far before I have to give up"; "how far can we get with this kind of argument?" -00101655 02 r 01 far 5 000 | to an advanced stage or point; "a young man who will go very far" -00101752 02 r 02 way 0 right_smart 0 001 ;u 07075172 n 0000 | to a great degree or by a great distance; very much (`right smart' is regional in the United States); "way over budget"; "way off base"; "the other side of the hill is right smart steeper than the side we are on" -00102029 02 r 02 far_and_wide 0 far_and_near 0 000 | over great areas or distances; everywhere; "he traveled far and wide"; "the news spread far and wide"; "people came from far and near"; "searched for the child far and near" -00102258 02 r 01 fictitiously 0 001 \ 01935935 a 0104 | in a fictional manner (created by the imagination) -00102367 02 r 01 fictitiously 1 001 \ 01116857 a 0103 | in a false manner intended to mislead -00102463 02 r 04 finely 0 fine 2 delicately 0 exquisitely 0 002 \ 00706311 a 0402 \ 00705891 a 0301 | in a delicate manner; "finely shaped features"; "her fine drawn body" -00102637 02 r 01 finely 1 001 \ 00850183 a 0101 | in an elegant manner; "finely costumed actors" -00102736 02 r 05 first 0 firstly 0 foremost 1 first_of_all 0 first_off 0 000 | before anything else; "first we must consider the garter snake" -00102881 02 r 02 second 0 secondly 0 000 | in the second place; "second, we must consider the economy" -00102986 02 r 02 third 0 thirdly 0 000 | in the third place; "third we must consider unemployment" -00103087 02 r 02 throughout 0 end-to-end 0 000 | from first to last; "the play was excellent end-to-end" -00103194 02 r 02 initially 0 ab_initio 0 001 \ 01011973 a 0101 | at the beginning; "at first he didn't notice anything strange" -00103324 02 r 02 at_first_sight 0 at_first_glance 0 000 | immediately; "it was love at first sight" -00103426 02 r 02 at_first_blush 0 when_first_seen 0 000 | as a first impression; "at first blush the offer seemed attractive" -00103554 02 r 02 first 2 for_the_first_time 0 000 | the initial time; "when Felix first saw a garter snake" -00103664 02 r 04 and_so_forth 0 and_so_on 0 etcetera 0 etc. 0 000 | continuing in the same way -00103761 02 r 01 forth 2 000 | out into view; "came forth from the crowd"; "put my ideas forth" -00103859 02 r 03 forth 1 forward 3 onward 0 000 | forward in time or order or degree; "from that time forth"; "from the sixth century onward" -00104003 02 r 01 abroad 0 000 | to or in a foreign country; "they had never travelled abroad" -00104099 02 r 05 at_heart 0 at_bottom 0 deep_down 0 inside 2 in_spite_of_appearance 0 000 | in reality; "she is very kind at heart" -00104233 02 r 02 at_large 0 in_a_broad_way 0 000 | in a general fashion; "he talked at large about his plans" -00104345 02 r 02 at_least 0 at_the_least 0 002 ! 00104528 r 0202 ! 00104528 r 0101 | not less than; "at least two hours studying the manual"; "a tumor at least as big as an orange" -00104528 02 r 02 at_most 0 at_the_most 0 002 ! 00104345 r 0202 ! 00104345 r 0101 | not more than; "spend at most $20 on the lunch" -00104661 02 r 04 at_least 1 leastways 0 leastwise 0 at_any_rate 1 001 ;u 07075172 n 0000 | if nothing else (`leastwise' is informal and `leastways' is colloquial); "at least he survived"; "they felt--at any rate Jim felt--relieved though still wary"; "the influence of economists--or at any rate of economics--is far-reaching" -00104990 02 r 02 at_leisure 0 leisurely 0 001 \ 01272176 a 0203 | in an unhurried way or at one's convenience; "read the manual at your leisure"; "he traveled leisurely" -00105162 02 r 01 right 8 000 | immediately; "she called right after dinner" -00105240 02 r 01 just_then 0 000 | at a particular time in the past; "just then the bugle sounded" -00105341 02 r 03 promptly 0 readily 1 pronto 0 001 \ 01900630 a 0101 | in a punctual manner; "he did his homework promptly" -00105467 02 r 02 promptly 1 right_away 3 000 | at once (usually modifies an undesirable occurrence); "he promptly forgot the address" -00105603 02 r 03 promptly 2 quickly 2 quick 0 002 \ 00979366 a 0201 \ 01931676 a 0101 | with little or no delay; "the rescue squad arrived promptly"; "come here, quick!" -00105775 02 r 02 at_best 0 at_the_best 0 001 ! 00105908 r 0101 | under the best of conditions; "at best we'll lose only the money" -00105908 02 r 02 at_worst 0 at_the_worst 0 001 ! 00105775 r 0101 | under the worst of conditions; "at worst we'll go to jail" -00106036 02 r 02 demoniacally 0 frenetically 0 001 \ 00086341 a 0202 | in a very agitated manner; as if possessed by an evil spirit -00106170 02 r 02 furtively 0 on_the_sly 1 001 \ 02088974 a 0101 | in a furtive manner; "the soldiers were furtively crawling through the night" -00106316 02 r 03 unanimously 0 nem_con 0 nemine_contradicente 0 001 \ 00553732 a 0103 | of one mind; without dissent; "the Senate unanimously approved the bill"; "we voted unanimously" -00106503 02 r 01 responsibly 0 002 \ 01996377 a 0101 ! 00106629 r 0101 | in a responsible manner; "we must act responsibly" -00106629 02 r 01 irresponsibly 0 002 \ 01997910 a 0101 ! 00106503 r 0101 | in an irresponsible manner; "he acted irresponsibly" -00106759 02 r 03 fairly 0 fair 0 evenhandedly 0 001 \ 00956131 a 0101 | without favoring one party, in a fair evenhanded manner; "deal fairly with one another" -00106921 02 r 05 normally 0 usually 0 unremarkably 0 commonly 0 ordinarily 0 005 \ 01672607 a 0501 \ 00485711 a 0401 ! 00107230 r 0302 \ 01674242 a 0305 \ 00489108 a 0201 | under normal conditions; "usually she was late" -00107144 02 r 01 as_usual 0 000 | in the usual manner; "as usual, she arrived late" -00107230 02 r 04 unusually 0 remarkably 0 outstandingly 1 unco 0 003 ! 00106921 r 0203 \ 01678417 a 0201 \ 00490035 a 0101 | to a remarkable degree or extent; "she was unusually tall" -00107416 02 r 05 recently 0 late 3 lately 0 of_late 0 latterly 0 001 \ 01730444 a 0102 | in the recent past; "he was in Paris recently"; "lately the rules have been enforced"; "as late as yesterday she was fine"; "feeling better of late"; "the spelling was first affected, but latterly the meaning also" -00107722 02 r 02 erratically 0 unpredictably 0 002 \ 01842001 a 0201 \ 00345189 a 0101 | in an erratic unpredictable manner; "economic changes are proceeding erratically" -00107895 02 r 01 girlishly 0 001 \ 01648698 a 0101 | like a girl; "she was girlishly shy" -00107987 02 r 03 gradually 0 bit_by_bit 0 step_by_step 0 001 \ 01142804 a 0101 | in a gradual manner; "the snake moved gradually toward its victim" -00108137 02 r 01 grimly 0 001 \ 01785341 a 0101 | in a grim implacable manner; "he was grimly satisfied" -00108244 02 r 01 hell-for-leather 0 001 \ 02059280 a 0101 | at breakneck speed; "they were travelling hell-for-leather" -00108366 02 r 02 hereabout 0 hereabouts 0 000 | in this general vicinity; "the people are friendly hereabouts" -00108479 02 r 01 here 0 001 ! 00109151 r 0101 | in or at this place; where the speaker or writer is; "I work here"; "turn here"; "radio waves received here on Earth" -00108647 02 r 02 here 1 hither 0 001 ! 00109328 r 0101 | to this place (especially toward the speaker); "come here, please" -00108773 02 r 01 here 2 000 | in this circumstance or respect or on this point or detail; "what do we have here?"; "here I must disagree" -00108913 02 r 01 herein 0 000 | in this place or thing or document; "I shall discuss the question herein" -00109021 02 r 01 here 4 000 | at this time; now; "we'll adjourn here for lunch and discuss the remaining issues this afternoon" -00109151 02 r 03 there 0 at_that_place 0 in_that_location 0 001 ! 00108479 r 0101 | in or at that place; "they have lived there for years"; "it's not there"; "that man there" -00109328 02 r 02 there 1 thither 0 001 ! 00108647 r 0101 | to or toward that place; away from the speaker; "go there around noon!" -00109461 02 r 03 there 2 in_that_respect 0 on_that_point 0 000 | in that matter; "I agree with you there" -00109569 02 r 01 historically 0 001 \ 01730060 a 0101 | with respect to history; "this is historically interesting" -00109687 02 r 01 historically 1 001 \ 01730060 a 0102 | throughout history; "historically they have never coexisted peacefully" -00109817 02 r 01 peacefully 0 001 \ 01740892 a 0101 | in a peaceful manner; "the hen settled herself on the nest most peacefully" -00109949 02 r 01 scientifically 0 001 \ 02793273 a 0101 | with respect to science; in a scientific way; "this is scientifically interesting" -00110092 02 r 01 unscientifically 0 001 \ 02085132 a 0101 | in an unscientific way; not according to the principles of science; "they proceeded unscientifically when they dissected the mummy" -00110286 02 r 02 humbly 0 meekly 0 002 \ 01893510 a 0201 \ 01892953 a 0101 | in a humble manner; "he humbly lowered his head" -00110414 02 r 01 meekly 2 001 \ 00789494 a 0101 | in a submissive or spiritless manner; "meekly bowed to his wishes" -00110533 02 r 02 inside 0 indoors 0 002 ! 00110659 r 0202 ! 00110659 r 0101 | within a building; "in winter we play inside" -00110659 02 r 04 outside 0 outdoors 0 out_of_doors 0 alfresco 0 002 ! 00110533 r 0202 ! 00110533 r 0101 | outside a building; "in summer we play outside" -00110815 02 r 02 inside 1 within 0 001 ! 00110919 r 0101 | on the inside; "inside, the car is a mess" -00110919 02 r 01 outside 1 001 ! 00110815 r 0101 | on the outside; "outside, the box is black" -00111016 02 r 01 militarily 0 001 \ 02764251 a 0101 | with respect to the military; "on a militarily significant scale" -00111138 02 r 01 macroscopically 0 001 \ 01388809 a 0102 | without using a microscope; "The tubes were examined macroscopically" -00111269 02 r 01 literally 1 001 ;u 06321054 n 0000 | (intensifier before a figurative expression) without exaggeration; "our eyes were literally pinned to TV during the Gulf War" -00111451 02 r 01 virtually 1 001 \ 00902157 a 0101 | in essence or effect but not in fact; "the strike virtually paralyzed the city"; "I'm virtually broke" -00111609 02 r 02 most 0 to_the_highest_degree 0 001 ! 00111758 r 0101 | used to form the superlative; "the king cobra is the most dangerous snake" -00111758 02 r 02 least 0 to_the_lowest_degree 0 001 ! 00111609 r 0101 | used to form the superlative; "The garter snake is the least dangerous snake" -00111910 02 r 01 least_of_all 0 000 | especially not; "nobody, least of all Joe, agreed with me" -00112009 02 r 01 most 1 001 ;u 06321054 n 0000 | very; "a most welcome relief" -00112090 02 r 04 mutely 0 wordlessly 0 silently 0 taciturnly 0 004 \ 02383380 a 0401 \ 00501820 a 0302 \ 00152285 a 0204 \ 00152285 a 0101 | without speaking; "he sat mutely next to her" -00112279 02 r 01 internationally 0 001 \ 01568375 a 0101 | throughout the world; "She is internationally known" -00112393 02 r 04 inevitably 0 necessarily 3 of_necessity 0 needs 0 002 \ 00343552 a 0201 \ 00343015 a 0101 | in such a manner as could not be otherwise; "it is necessarily so"; "we must needs by objective" -00112601 02 r 04 newly 0 freshly 0 fresh 0 new 0 000 | very recently; "they are newly married"; "newly raised objections"; "a newly arranged hairdo"; "grass new washed by the rain"; "a freshly cleaned floor"; "we are fresh out of tomatoes" -00112843 02 r 02 afresh 0 anew 0 000 | again but in a new or different way; "start afresh"; "wanted to write the story anew"; "starting life anew in a fresh place" -00113009 02 r 01 de_novo 0 001 ;c 06962600 n 0000 | from the beginning -00113082 02 r 03 differently 0 otherwise 3 other_than 0 001 \ 02070030 a 0101 | in another and different manner; "very soon you will know differently"; "she thought otherwise"; "there is no way out other than the fire escape"; -00113311 02 r 01 organically 0 002 ! 00113441 r 0101 \ 01679055 a 0101 | involving carbon compounds; "organically bound iodine" -00113441 02 r 01 inorganically 2 002 ! 00113311 r 0101 \ 01679244 a 0101 | not involving carbon compounds; "inorganically bound molecules" -00113582 02 r 01 organically 1 001 \ 00901345 a 0104 | as an important constituent; "the drapery served organically to cover the Madonna" -00113722 02 r 01 organically 2 001 \ 01679459 a 0101 | in an organic manner; "this food is grown organically" -00113834 02 r 01 unfailingly 0 001 \ 00965176 a 0102 | without fail -00113904 02 r 01 mechanically 0 001 \ 01499686 a 0101 | in a machinelike manner; without feeling; "he smiled mechanically" -00114029 02 r 02 mechanically 1 automatically 1 002 \ 01499999 a 0201 \ 02890983 a 0101 | in a mechanical manner; by a mechanism; "this door opens mechanically" -00114192 02 r 01 metabolically 0 001 \ 02975096 a 0101 | involving metabolism; "metabolically important substances" -00114310 02 r 01 officially 0 002 \ 01959918 a 0101 ! 00114461 r 0101 | in an official role; "officially, he is in charge"; "officially responsible" -00114461 02 r 01 unofficially 0 002 \ 01633591 a 0101 ! 00114310 r 0101 | not in an official capacity; "unofficially, he serves as the treasurer" -00114609 02 r 02 painfully 0 distressingly 0 002 \ 01126841 a 0202 \ 01126291 a 0105 | unpleasantly; "his ignorance was painfully obvious" -00114750 02 r 01 centrally 0 002 \ 00329831 a 0101 ! 00114932 r 0101 | in or near or toward a center or according to a central role or function; "The theater is centrally located" -00114932 02 r 01 peripherally 0 003 \ 01857743 a 0101 \ 00331446 a 0101 ! 00114750 r 0101 | in or at or near a periphery or according to a peripheral role or function or relationship -00115117 02 r 01 phylogenetically 0 001 \ 02942958 a 0101 | with regard to phylogeny; "a phylogenetically primitive part of the brain" -00115254 02 r 01 physically 0 001 \ 02779774 a 0101 | in accord with physical laws; "it is physically impossible" -00115370 02 r 01 physiologically 0 001 \ 01779558 a 0102 | of or relating to physiological processes; with respect to physiology; "physiologically ready"; "physiologically addicted" -00115554 02 r 03 preferably 0 sooner 1 rather 1 000 | more readily or willingly; "clean it well, preferably with warm water"; "I'd rather be in Philadelphia"; "I'd sooner die than give up" -00115745 02 r 01 politically 1 001 \ 01814385 a 0101 | with regard to government; "politically organized units" -00115859 02 r 01 politically 0 001 \ 02857407 a 0101 | with regard to social relationships involving authority; "politically correct clothing" -00116004 02 r 01 pornographically 0 001 \ 02134397 a 0101 | in a pornographic manner -00116091 02 r 01 self-indulgently 0 001 \ 01299687 a 0101 | in a self-indulgent manner -00116180 02 r 01 symbiotically 0 002 ;c 06037666 n 0000 \ 00727268 a 0101 | in a symbiotic manner -00116280 02 r 01 symbolically 0 001 \ 01982186 a 0103 | in a symbolic manner; "symbolically accepted goals" -00116390 02 r 01 toe-to-toe 0 000 | in close combat or at close quarters; "they fought toe-to-toe for the nomination" -00116510 02 r 01 together 0 000 | at the same time; "we graduated together" -00116588 02 r 02 together 1 unitedly 0 000 | with cooperation and interchange; "we worked together on the project" -00116705 02 r 02 in_concert 0 together 5 000 | with a common plan; "act in concert" -00116791 02 r 01 together 2 000 | in contact with each other or in proximity; "the leaves stuck together" -00116899 02 r 01 in_on 0 000 | participating in or knowledgeable out; "was in on the scheme" -00116994 02 r 01 together 3 000 | assembled in one place; "we were gathered together" -00117082 02 r 04 jointly 0 collectively 0 conjointly 0 together_with 0 003 \ 02112455 a 0302 \ 00466808 a 0201 \ 02111684 a 0101 | in conjunction with; combined; "our salaries put together couldn't pay for the damage"; "we couldn't pay for the damages with all our salaries put together" -00117372 02 r 02 outrageously 0 atrociously 1 001 \ 01534282 a 0103 | to an extravagant or immoderate degree; "atrociously expensive" -00117508 02 r 01 outrageously 1 001 \ 01626562 a 0104 | in a very offensive manner; "he behaved outrageously" -00117620 02 r 04 then 0 so 9 and_so 0 and_then 0 000 | subsequently or soon afterward (often used as sentence connectors); "then he left"; "go left first, then right"; "first came lightning, then thunder"; "we watched the late movie and then went to bed"; "and so home and to bed" -00117903 02 r 01 then 1 000 | at that time; "I was young then"; "prices were lower back then"; "science as it was then taught" -00118032 02 r 01 then 2 000 | in that case or as a consequence; "if he didn't take it, then who did?"; "keep it then if you want to"; "the case, then, is closed"; "you've made up your mind then?"; "then you'll be rich" -00118253 02 r 01 volumetrically 0 001 \ 02985474 a 0101 | with respect to volume; "analyzed volumetrically" -00118363 02 r 01 so 6 000 | in a manner that facilitates; "he observed the snakes so he could describe their behavior"; "he stooped down so he could pick up his hat" -00118531 02 r 05 regardless 0 irrespective 0 disregardless 0 no_matter 0 disregarding 0 000 | in spite of everything; without regard to drawbacks; "he carried on regardless of the difficulties" -00118727 02 r 01 irregardless 0 001 ;u 07075172 n 0000 | regardless; a combination of irrespective and regardless sometimes used humorously -00118869 02 r 03 once 0 one_time 0 in_one_case 0 000 | on one occasion; "once I ran into her" -00118965 02 r 05 once 1 formerly 0 at_one_time 1 erstwhile 0 erst 0 000 | at a previous time; "at one time he loved her"; "her erstwhile writing"; "she was a dancer once"; -00119139 02 r 01 though 1 000 | (postpositive) however; "it might be unpleasant, though" -00119230 02 r 02 as_far_as_possible 1 as_much_as_possible 0 000 | to a feasible extent; "she helped him as much as possible" -00119357 02 r 02 on_the_coattails 0 one_one's_coattails 0 000 | immediately following or undeservedly benefiting from; "the CEO resigned on the coattails of the scandal"; "he was elected on his predecessor's coattails" -00119578 02 r 03 on_the_other_hand 0 then_again 0 but_then 0 001 ! 00119798 r 0101 | (contrastive) from another point of view; "on the other hand, she is too ambitious for her own good"; "then again, she might not go" -00119798 02 r 02 on_the_one_hand 0 on_one_hand 0 001 ! 00119578 r 0101 | from one point of view; "on the one hand, she is a gifted chemist" -00119940 02 r 01 successfully 0 002 \ 02331262 a 0101 ! 00168075 r 0101 | with success; in a successful manner; "she performed the surgery successfully" -00120095 02 r 02 simultaneously 0 at_the_same_time 3 001 \ 02378496 a 0107 | at the same instant; "they spoke simultaneously" -00120223 02 r 02 concurrently 0 at_the_same_time 5 001 \ 02378496 a 0104 | overlapping in duration; "concurrently with the conference an exhibition of things associated with Rutherford was held"; "going to school and holding a job at the same time" -00120474 02 r 02 systematically 0 consistently 0 004 \ 00576680 a 0201 ! 00120678 r 0101 \ 02382934 a 0101 ! 00120841 r 0201 | in a systematic or consistent manner; "they systematically excluded women" -00120678 02 r 01 unsystematically 0 002 ! 00120474 r 0101 \ 02383151 a 0101 | in an unsystematic manner; "his books were lined up unsystematically on the shelf" -00120841 02 r 01 inconsistently 0 002 ! 00120474 r 0102 \ 00577920 a 0101 | without showing consistency; "he acted inconsistently when he bought these stocks" -00121002 02 r 01 thereby 0 000 | by that means or because of that; "He knocked over the red wine, thereby ruining the table cloth" -00121135 02 r 03 thus 1 thusly 0 so 4 000 | in the way indicated; "hold the brush so"; "set up the pieces thus"; (`thusly' is a nonstandard variant) -00121286 02 r 01 academically 0 001 \ 02599939 a 0101 | in regard to academic matters; "academically, this is a good school" -00121413 02 r 02 appositively 0 in_apposition 0 001 \ 02635941 a 0102 | in an appositive manner; "this adjective is used appositively" -00121550 02 r 01 astronomically 0 001 \ 01383582 a 0101 | enormously; "the bill was astronomically high" -00121657 02 r 01 axiomatically 0 001 \ 02653385 a 0101 | on the basis of axioms; "this is axiomatically given" -00121770 02 r 01 photoelectrically 0 001 \ 02827790 a 0101 | by photoelectric means; "they measured it photoelectrically" -00121894 02 r 01 photographically 0 001 \ 02838592 a 0101 | by photographic means; "photographically recorded scenes" -00122014 02 r 01 photometrically 0 001 \ 02777548 a 0101 | by photometric means; "photometrically measured" -00122124 02 r 01 constitutionally 0 002 ! 00122273 r 0101 \ 00179925 a 0101 | according to the constitution; "this was constitutionally ruled out" -00122273 02 r 01 unconstitutionally 0 002 ! 00122124 r 0101 \ 00180211 a 0101 | in an unconstitutional manner; "the president acted unconstitutionally" -00122427 02 r 01 democratically 0 002 ! 00122630 r 0101 \ 00715140 a 0101 | in a democratic manner; based on democratic principles; "it was decided democratically"; "democratically elected government" -00122630 02 r 01 undemocratically 0 002 ! 00122427 r 0101 \ 00717417 a 0101 | in an undemocratic manner; "undemocratically, he made all the important decisions without his colleagues" -00122816 02 r 01 aloof 0 001 \ 01987646 a 0101 | in an aloof manner; "the local gentry and professional classes had held aloof for the school had accepted their sons readily enough" -00123000 02 r 01 digitally 0 001 \ 02713232 a 0101 | in terms of integers; "the time was digitally displayed" -00123112 02 r 01 digitally 1 001 \ 02713096 a 0101 | by means of the fingers; "the exam was carried out digitally" -00123229 02 r 01 economically 0 001 \ 02716605 a 0101 | with respect to economic science; "economically this proposal makes no sense" -00123365 02 r 01 economically 1 001 \ 02716739 a 0101 | with respect to the economic system; "economically the country is worse off" -00123500 02 r 01 economically 2 001 \ 00840212 a 0101 | in an economical manner -00123582 02 r 01 electronically 0 001 \ 02718497 a 0101 | by electronic means; "the door opens electronically" -00123695 02 r 01 ethnically 0 001 \ 02248693 a 0102 | with respect to ethnicity; "the neighborhood is ethnically diverse" -00123819 02 r 01 federally 0 001 \ 02725829 a 0101 | by federal government; "it's federally regulated" -00123924 02 r 01 genetically 0 001 \ 02734192 a 0101 | by genetic mechanisms; "genetically passed down talents" -00124038 02 r 01 graphically 0 001 \ 02736808 a 0101 | in a graphic way; "he described the event graphically" -00124150 02 r 01 ideographically 0 001 \ 02745453 a 0101 | in an idiographic manner; "it's written ideographically" -00124268 02 r 01 idyllically 0 001 \ 01801446 a 0101 | in an idyllic manner -00124346 02 r 01 industrially 0 001 \ 02748635 a 0101 | by industrial means; "industrially produced" -00124449 02 r 01 injuriously 0 001 \ 01161059 a 0103 | in an injurious manner -00124529 02 r 01 irrevocably 0 001 \ 01760670 a 0101 | in an irrevocable manner -00124611 02 r 01 legally 3 001 \ 01400562 a 0101 | in a legal manner; "he acted legally" -00124702 02 r 01 manually 0 001 \ 02759190 a 0101 | by hand; "this car shifts manually" -00124792 02 r 01 medically 0 001 \ 02760116 a 0101 | involving medical practice; "medically trained nurses"; "medically correct treatment" -00124933 02 r 01 medicinally 0 001 \ 01166656 a 0102 | in a medicinal manner -00125012 02 r 01 nominally 0 001 \ 02769128 a 0101 | in name only; "nominally he is the boss" -00125108 02 r 01 predicatively 0 001 \ 00172993 a 0101 | occurring within the predicate phrase; "predicatively used adjectives" -00125238 02 r 01 professorially 0 001 \ 02784873 a 0101 | in a professorial manner; "she behaved very professorially" -00125358 02 r 01 provincially 0 001 \ 02785874 a 0101 | by the province; through the province; "provincially controlled" -00125481 02 r 01 realistically 0 001 \ 01979985 a 0102 | in a realistic manner; "the figure was realistically painted" -00125602 02 r 01 red-handed 0 000 | doing something reprehensible or showing clear evidence of having done something reprehensible; "he was caught red-handed" -00125763 02 r 01 reversibly 0 003 ;c 06084469 n 0000 ;c 06090869 n 0000 \ 00346626 a 0101 | in a reversible manner; "reversibly convertible" -00125906 02 r 01 rewardingly 0 001 \ 02015571 a 0101 | in a rewarding manner -00125985 02 r 03 royally 0 like_kings 0 like_royalty 0 001 \ 02789579 a 0101 | in a royal manner; "they were royally treated" -00126113 02 r 01 sacrilegiously 0 001 \ 02012748 a 0103 | in a sacrilegious manner -00126198 02 r 01 scenically 0 001 \ 02792789 a 0101 | with respect to stage scenery; "scenically stunning" -00126307 02 r 01 scholastically 0 001 \ 02792903 a 0101 | with respect to scholastic activities; "scholastically apt" -00126427 02 r 01 serially 0 001 \ 02797257 a 0101 | in a serial manner; "serially composed music" -00126527 02 r 01 socially 0 001 \ 02798370 a 0101 | by or with respect to society; "socially accepted norms" -00126638 02 r 01 socially 1 001 \ 02248349 a 0101 | in a social manner; "socially unpopular" -00126733 02 r 01 symbolically 1 001 \ 02806907 a 0101 | by means of symbols; "symbolically expressed" -00126837 02 r 01 technically 0 000 | with regard to technical skill and the technology available; "a technically brilliant solution" -00126972 02 r 01 technically 1 001 \ 02809220 a 0101 | with regard to technique; "technically lagging behind the Japanese"; "a technically brilliant boxer" -00127130 02 r 01 technically 2 000 | according to the exact meaning; according to the facts; "technically, a bank's reserves belong to the stockholders"; "technically, the term is no longer used by experts" -00127339 02 r 01 temporally 0 001 \ 02810882 a 0101 | with regard to temporal order; "temporally processed" -00127449 02 r 01 terminally 0 001 \ 02812147 a 0101 | at the end; "terminally ill" -00127534 02 r 01 terrestrially 0 001 \ 00124918 a 0101 | to a land environment; "terrestrially adapted" -00127640 02 r 01 territorially 0 001 \ 02812482 a 0101 | with respect to territory; "territorially important" -00127752 02 r 01 thematically 0 001 \ 02813680 a 0101 | with regard to thematic content; "thematically related" -00127866 02 r 01 therapeutically 0 001 \ 01165943 a 0106 | for therapeutic purposes -00127952 02 r 01 geothermally 0 001 \ 02735669 a 0101 | by means of heat from the interior of the earth -00128058 02 r 01 thermally 0 001 \ 02814453 a 0101 | by means of heat or with respect to thermal properties -00128168 02 r 01 typically 0 002 ! 00128290 r 0101 \ 02468635 a 0101 | in a typical manner; "Tom was typically hostile" -00128290 02 r 02 atypically 0 untypically 0 003 \ 02469928 a 0202 ! 00128168 r 0101 \ 02469928 a 0101 | in a manner that is not typical; "she was atypically quiet" -00128456 02 r 01 verbally 1 001 \ 00500310 a 0101 | by means of language; "verbally expressive" -00128554 02 r 01 verbally 0 001 \ 02823724 a 0101 | as a verb; "he had a habit of using nouns verbally" -00128660 02 r 01 vocally 0 001 \ 00499530 a 0102 | in a vocal manner; "she defended herself vocally" -00128763 02 r 02 nonverbally 0 non-verbally 0 001 \ 00497964 a 0102 | without words; "they communicated nonverbally" -00128882 02 r 01 globally 0 001 \ 01568684 a 0101 | throughout the world; "this is globally significant" -00128989 02 r 01 electrically 0 001 \ 02826877 a 0101 | by electricity; "electrically controlled" -00129089 02 r 01 chemically 0 001 \ 02692624 a 0101 | with respect to chemistry; "chemically different substances"; "chemically related" -00129228 02 r 01 chemically 1 001 \ 02692966 a 0101 | with chemicals;"chemically fertilized" -00129324 02 r 01 legislatively 0 001 \ 02829565 a 0101 | by legislation; "legislatively determined" -00129426 02 r 01 bilingually 0 001 \ 01545777 a 0101 | in a bilingual manner; "she grew up bilingually" -00129532 02 r 01 linearly 0 002 \ 01417451 a 0101 ! 00090103 r 0101 | in a linear manner; "linearly polarized radiation"; "it grew linearly" -00129675 02 r 01 longitudinally 0 001 \ 02830345 a 0101 | with respect to longitude; "longitudinally measured" -00129788 02 r 02 magically 0 as_if_by_magic 0 001 \ 01576071 a 0103 | in a magical manner; "it disappeared magically" -00129908 02 r 01 bacterially 0 001 \ 02833544 a 0101 | by bacteria; "spreads bacterially" -00130000 02 r 01 relativistically 0 001 \ 02835887 a 0101 | by the theory of relativity; "this is relativistically impossible" -00130129 02 r 01 racially 0 001 \ 03141609 a 0101 | with respect to race; "racially integrated" -00130227 02 r 01 municipally 0 001 \ 02697452 a 0101 | by municipality; "municipally funded" -00130322 02 r 01 governmentally 0 001 \ 01814711 a 0101 | by government; "governmentally determined policy" -00130432 02 r 01 professionally 0 001 \ 02839505 a 0101 | in a professional manner; "professionally trained staff" -00130549 02 r 01 spatially 0 001 \ 02841066 a 0102 | with regard to space; "spatially limited" -00130646 02 r 01 semantically 0 001 \ 02842042 a 0101 | with regard to meaning; "semantically empty messages" -00130758 02 r 01 limitedly 0 001 \ 01532586 a 0101 | in a limited manner -00130833 02 r 02 linguistically 0 lingually 0 002 \ 02842445 a 0202 \ 02842445 a 0101 | with respect to language; "linguistically impaired children"; "a lingually diverse population" -00131018 02 r 01 sociolinguistically 0 001 \ 02842981 a 0101 | with respect to sociolinguistics; "sociolinguistically fascinating" -00131151 02 r 01 linguistically 1 001 \ 02843218 a 0101 | with respect to the science of linguistics; "linguistically interesting data" -00131289 02 r 01 cross-linguistically 0 001 \ 02843095 a 0101 | by comparing languages; "she studied the phenomenon cross-linguistically" -00131429 02 r 02 fiscally 0 in_fiscal_matters 0 001 \ 02847894 a 0101 | in financial matters; "fiscally irresponsible" -00131550 02 r 01 algebraically 0 001 \ 02854350 a 0101 | in an algebraic manner; "algebraically determined" -00131660 02 r 01 polyphonically 0 001 \ 02855757 a 0101 | in a polyphonic manner; "polyphonically composed" -00131770 02 r 01 poetically 0 001 \ 02857099 a 0101 | in a poetic manner; "poetically expressed" -00131869 02 r 01 phonetically 0 001 \ 02857726 a 0101 | by phonetics; "phonetically realized" -00131965 02 r 01 phonemic 0 001 \ 02858086 a 0101 | by phonemics; "phonemically transcribed" -00132060 02 r 01 personally 0 001 \ 02858816 a 0101 | as a person; "he is personally repulsive" -00132158 02 r 02 personally 4 in_person 1 001 \ 01767329 a 0101 | in the flesh; without involving anyone else; "I went there personally"; "he appeared in person" -00132322 02 r 01 personally 2 000 | concerning the speaker; "personally, I find him stupid" -00132416 02 r 01 philosophically 0 001 \ 00858053 a 0101 | in a philosophic manner; "she took it philosophically" -00132532 02 r 02 infernally 0 hellishly 0 002 ;u 06321054 n 0000 \ 02974812 a 0101 | extremely; "infernally clever"; "hellishly dangerous" -00132673 02 r 01 pathologically 0 001 \ 02861206 a 0101 | with respect to pathology; "pathologically interesting results" -00132797 02 r 01 graphically 2 001 \ 02736983 a 0101 | with respect to graphic aspects; "graphically interesting designs" -00132921 02 r 01 catastrophically 0 001 \ 01161635 a 0101 | with unfortunate consequences; "catastrophically complex" -00133041 02 r 01 optically 0 001 \ 02861859 a 0101 | in an optical manner; "optically distorted" -00133140 02 r 01 visually 0 000 | with respect to vision; "visually distorted" -00133221 02 r 01 viscerally 0 001 \ 02862964 a 0101 | in the viscera; "he is bleeding viscerally" -00133321 02 r 01 cerebrally 0 001 \ 02688974 a 0101 | in the brain; "bleeding cerebrally" -00133413 02 r 01 cerebrally 1 001 \ 01927455 a 0101 | in an intellectual manner; "cerebrally active" -00133516 02 r 01 mystically 0 001 \ 02863247 a 0102 | in a mystical manner; "chant mystically" -00133613 02 r 01 biologically 0 001 \ 02665803 a 0101 | with respect to biology; "biologically related" -00133719 02 r 01 sociobiologically 0 001 \ 02666132 a 0102 | with respect to sociobiology; "explain the behavior sociobiologically" -00133853 02 r 01 neurobiological 0 001 \ 02666294 a 0101 | with respect to neurobiology; "explain the phenomenon neurobiologically" -00133987 02 r 01 biochemically 0 001 \ 02664932 a 0101 | with respect to biochemistry; "biochemically interesting phenomenon" -00134115 02 r 01 musicologically 0 001 \ 02867945 a 0101 | with respect to musicology -00134203 02 r 01 morally 1 000 | with respect to moral principles; "morally unjustified" -00134294 02 r 01 meteorologically 0 001 \ 02865479 a 0101 | with respect to the weather; "meteorologically bad conditions" -00134419 02 r 01 metaphysically 0 001 \ 02865814 a 0101 | in a metaphysical manner; "he thinks metaphysically" -00134532 02 r 01 metonymically 0 001 \ 01419999 a 0101 | in a metonymic manner -00134613 02 r 01 melodically 0 001 \ 02864068 a 0101 | with respect to melody; "melodically interesting themes" -00134727 02 r 01 harmonically 0 001 \ 02737772 a 0101 | with respect to harmony; "harmonically interesting piece" -00134843 02 r 01 acoustically 0 001 \ 02868489 a 0101 | with respect to acoustics; "acoustically ill-equipped studios" -00134964 02 r 01 adulterously 0 001 \ 00961195 a 0101 | in an adulterous manner; "he behaved adulterously" -00135073 02 r 01 metaphorically 0 001 \ 01419784 a 0101 | in a metaphorical manner; "she expressed herself metaphorically" -00135198 02 r 01 allegorically 0 001 \ 01981916 a 0101 | in an allegorical manner; "the play ended allegorically" -00135314 02 r 01 locally 0 001 \ 01106405 a 0101 | by a particular locality; "it was locally decided" -00135418 02 r 02 locally 1 topically 0 002 \ 01425895 a 0201 \ 01425529 a 0101 | to a restricted area of the body; "apply this medicine topically" -00135567 02 r 01 regionally 0 001 \ 02871858 a 0101 | in a regional manner; "regionally governed" -00135667 02 r 01 nationally 2 001 \ 01567862 a 0101 | with regard to a nation taken as a whole; "a nationally uniform culture" -00135796 02 r 01 culturally 0 001 \ 02872501 a 0101 | with regard to a culture; "culturally integrated" -00135902 02 r 01 interracially 0 001 \ 01928019 a 0101 | by race; "interracially restrictive" -00135998 02 r 01 chorally 0 001 \ 02874282 a 0101 | by a chorus; "chorally accompanied" -00136088 02 r 01 subcutaneously 0 001 \ 02876936 a 0102 | below the skin; "inject subcutaneously" -00136188 02 r 01 facially 0 001 \ 02877704 a 0101 | with respect to the face -00136267 02 r 01 syntactically 0 001 \ 02880557 a 0101 | with respect to syntax; "syntactically ill-formed" -00136377 02 r 01 spinally 0 001 \ 02884456 a 0101 | in the spine; "spinally administered" -00136469 02 r 01 sexually 0 001 \ 02135389 a 0101 | by sexual means; "reproduce sexually" -00136561 02 r 01 sexually 1 001 \ 02887578 a 0101 | with respect to sexuality; "sexually ambiguous" -00136663 02 r 01 lexically 0 001 \ 02886869 a 0101 | by means of words; "lexically represented" -00136761 02 r 01 nonlexically 0 001 \ 02886767 a 0101 | without the use of words; "expressed nonlexically" -00136870 02 r 01 materially 0 001 \ 01779193 a 0101 | with respect to material aspects; "psychologically similar but materially different" -00137011 02 r 01 materially 1 001 \ 01487627 a 0101 | to a significant degree; "it aided him materially in winning the argument" -00137142 02 r 01 surgically 0 001 \ 02888968 a 0101 | in a surgical manner; by means of surgery; "surgically removed" -00137262 02 r 01 operatively 0 001 \ 02164050 a 0101 | in a manner to produce an effect -00137352 02 r 01 postoperatively 0 001 \ 01169660 a 0101 | after the operation; "remove postoperatively" -00137459 02 r 01 chromatographically 0 001 \ 02987910 a 0101 | by means of a chromatographic process -00137562 02 r 01 alternately 0 001 \ 00675928 a 0101 | in an alternating sequence or position; "They were deglycerolized by alternately centrifuging and mixing"; "he planted fir and pine trees alternately" -00137770 02 r 02 transversely 0 transversally 0 002 \ 01445917 a 0203 \ 01445917 a 0102 | in a transverse manner; "they were cut transversely" -00137915 02 r 02 respectively 0 severally 3 001 \ 00494409 a 0101 | in the order given; "the brothers were called Felix and Max, respectively" -00138060 02 r 02 similarly 0 likewise 0 001 \ 02071420 a 0101 | in like or similar manner; "He was similarly affected"; "some people have little power to do good, and have likewise little strength to resist evil"- Samuel Johnson -00138291 02 r 01 secondarily 0 002 ! 00138410 r 0101 \ 01853461 a 0101 | of secondary import; "secondarily affected" -00138410 02 r 02 primarily 0 in_the_first_place 0 002 ! 00138291 r 0101 \ 01852174 a 0101 | of primary import; "this is primarily a question of economics"; "it was in the first place a local matter" -00138611 02 r 05 probably 0 likely 0 in_all_likelihood 0 in_all_probability 0 belike 0 001 \ 01413247 a 0101 | with considerable certainty; without much doubt; "He is probably out of the country"; "in all likelihood we are headed for war" -00138852 02 r 01 bannerlike 0 000 | like a banner; "She waved her scarf at him bannerlike" -00138945 02 r 01 dramatically 0 002 ! 00139071 r 0101 \ 00794825 a 0101 | in a dramatic manner; "he confessed dramatically" -00139071 02 r 01 undramatically 0 002 ! 00138945 r 0101 \ 00795495 a 0101 | in an undramatic manner -00139173 02 r 01 ashore 0 000 | towards the shore from the water; "we invited them ashore" -00139266 02 r 01 notably 0 000 | especially; in particular; "notably in the social sciences, the professors teach too much" -00139392 02 r 01 intensively 0 001 \ 01509527 a 0101 | in an intensive manner; "he studied the snake intensively" -00139508 02 r 05 appropriately 0 suitably 0 fittingly 0 befittingly 0 fitly 0 006 \ 01020393 a 0501 \ 00135092 a 0401 ! 00139759 r 0202 \ 01020885 a 0201 ! 00139759 r 0101 \ 00134701 a 0101 | in an appropriate manner; "he was appropriately dressed" -00139759 02 r 02 inappropriately 0 unsuitably 0 003 ! 00139508 r 0101 \ 00135718 a 0101 ! 00139508 r 0202 | in an inappropriate manner; "he was inappropriately dressed" -00139930 02 r 01 inalienably 0 001 \ 00093810 a 0101 | in an inalienable manner; "this property is held inalienably" -00140049 02 r 01 offshore 0 001 ! 00140168 r 0101 | away from shore; away from land; "cruising three miles offshore" -00140168 02 r 01 onshore 0 001 ! 00140049 r 0101 | on or toward the land; "they were living onshore" -00140271 02 r 02 thousand-fold 0 thousand_times 0 000 | by three orders of magnitude; "this poison is a thousand-fold more toxic" -00140403 02 r 01 naturally 1 002 ! 00140566 r 0101 \ 01570892 a 0101 | according to nature; by natural means; without artificial help; "naturally grown flowers" -00140566 02 r 03 artificially 0 unnaturally 0 by_artificial_means 0 002 ! 00140403 r 0101 \ 01571363 a 0101 | not according to nature; not by natural means; "artificially induced conditions" -00140759 02 r 01 acutely 0 002 ! 00140884 r 0101 \ 00044760 a 0101 | having a rapid onset; "an acutely debilitating virus" -00140884 02 r 01 chronically 0 002 ! 00140759 r 0101 \ 00045123 a 0101 | in a slowly developing and long lasting manner; "chronically ill persons" -00141033 02 r 02 chronically 1 inveterate 0 000 | in a habitual and longstanding manner; "smoking chronically" -00141146 02 r 01 contradictorily 0 001 \ 02356579 a 0102 | in a contradictory manner; "he argued contradictorily" -00141262 02 r 01 electrostatically 0 001 \ 02719009 a 0101 | in an electrostatic manner; "the dust adhered electrostatically to the surface" -00141405 02 r 01 episodically 0 001 \ 01842468 a 0101 | in an episodic manner -00141485 02 r 01 feverishly 0 001 \ 00086210 a 0101 | in a feverish manner; "she worked feverishly" -00141587 02 r 01 feudally 0 001 \ 02726546 a 0101 | in a feudal manner; "a feudally organized society" -00141692 02 r 01 frontally 0 001 \ 00198757 a 0101 | in, at, or toward the front -00141775 02 r 01 geometrically 3 001 \ 02735208 a 0101 | with respect to geometry; "this shape is geometrically interesting" -00141902 02 r 01 glacially 0 001 \ 02736015 a 0101 | by a glacier; "glacially deposited material" -00142002 02 r 01 glaringly 0 001 \ 00580039 a 0104 | in a glaring manner; "it was glaringly obvious" -00142105 02 r 01 gravitationally 0 001 \ 02737183 a 0101 | with respect to gravitation; "gravitationally strong forces" -00142227 02 r 01 gutturally 0 001 \ 02737461 a 0101 | in a guttural manner; "gutturally articulated" -00142330 02 r 01 hieroglyphically 0 001 \ 02742206 a 0101 | by means of hieroglyphs; "hieroglyphically written" -00142444 02 r 01 homeostatically 0 001 \ 02741032 a 0101 | in a homeostatic manner; "blood pressure is homeostatically regulated" -00142576 02 r 01 horticulturally 0 001 \ 02927048 a 0101 | by means of horticulture -00142662 02 r 01 humanly 0 001 \ 02743261 a 0101 | in the manner of human beings; "humanly possible" -00142765 02 r 01 imperially 0 001 \ 02746897 a 0101 | in an imperial manner; "imperially decreed" -00142865 02 r 01 incestuously 0 001 \ 02748216 a 0101 | by incest; "incestuously conceived" -00142959 02 r 01 inconceivably 0 001 \ 02418692 a 0102 | to an inconceivable degree; "inconceivably small" -00143068 02 r 01 insistently 0 001 \ 00712877 a 0104 | in an insistent manner -00143148 02 r 01 institutionally 0 001 \ 02749778 a 0101 | by an institution; "institutionally controlled" -00143257 02 r 01 judicially 0 001 \ 02752987 a 0101 | in a judicial manner; "judicially controlled process" -00143367 02 r 01 nasally 0 001 \ 02978781 a 0102 | in a nasal manner; "inhaled nasally" -00143457 02 r 01 nocturnally 0 001 \ 02931826 a 0101 | at night; "nocturnally active bird" -00143550 02 r 01 rurally 0 001 \ 02790726 a 0101 | in a rural manner -00143621 02 r 01 spherically 0 001 \ 02800689 a 0101 | in a spherical manner; "spherically shaped" -00143722 02 r 01 superficially 0 001 \ 01873406 a 0101 | in a superficial manner; "he was superficially interested" -00143840 02 r 01 syllabically 0 001 \ 02806721 a 0101 | in or with syllables; "syllabically pronounced" -00143946 02 r 01 monosyllabically 0 001 \ 02289018 a 0101 | in a monosyllabic manner -00144033 02 r 01 polysyllabically 0 001 \ 02289405 a 0101 | in a polysyllabic manner -00144120 02 r 01 symptomatically 0 001 \ 02807249 a 0101 | by symptoms -00144193 02 r 01 tangentially 0 001 \ 01976360 a 0102 | in passing; "touched on it tangentially" -00144292 02 r 01 volcanically 0 001 \ 02826169 a 0101 | by or like volcanoes; "volcanically created landscape" -00144405 02 r 02 awhile 0 for_a_while 1 000 | for a short time; "sit down and stay awhile"; "they settled awhile in Virginia before moving West"; "the baby was quiet for a while" -00144586 02 r 02 wickedly 0 evilly 0 002 \ 01131043 a 0201 \ 02513740 a 0101 | in a wicked evil manner; "act wickedly"; "grin evilly" -00144722 02 r 07 surely 0 certainly 0 sure 0 for_sure 0 for_certain 0 sure_enough 2 sure_as_shooting 0 003 ;u 07075172 n 0000 \ 00335421 a 0201 \ 00336831 a 0102 | definitely or positively (`sure' is sometimes used informally for `surely'); "the results are surely encouraging"; "she certainly is a hard worker"; "it's going to be a good day for sure"; "they are coming, for certain"; "they thought he had been killed sure enough"; "he'll win sure as shooting"; "they sure smell good"; "sure he'll come" -00145228 02 r 01 surprisingly 0 001 \ 02359464 a 0101 | in a surprising manner; "he was surprisingly friendly" -00145341 02 r 01 technologically 0 001 \ 02809692 a 0102 | by means of technology; "technologically impossible" -00145455 02 r 01 temperamentally 0 001 \ 02810552 a 0101 | by temperament; "temperamentally suited to each other" -00145571 02 r 01 sufficiently 0 002 ! 00145854 r 0101 \ 02335828 a 0101 | to a sufficient degree; "she was sufficiently fluent in Mandarin" -00145713 02 r 02 enough 0 plenty 0 000 | as much as necessary; "Have I eaten enough?"; (`plenty' is nonstandard) "I've had plenty, thanks" -00145854 02 r 01 insufficiently 0 002 ! 00145571 r 0101 \ 02336449 a 0101 | to an insufficient degree; "he was insufficiently prepared" -00145992 02 r 01 unhesitatingly 0 002 ! 00146120 r 0101 \ 00685924 a 0101 | without hesitation; "she said yes unhesitatingly" -00146120 02 r 02 hesitantly 0 hesitatingly 0 002 ! 00145992 r 0101 \ 00686573 a 0101 | with hesitation; in a hesitant manner; "he finally accepted hesitantly" -00146281 02 r 02 thereafter 0 thenceforth 1 000 | from that time on; "thereafter he never called again" -00146387 02 r 02 ever 4 of_all_time 0 000 | at any time; "did you ever smoke?"; "the best con man of all time" -00146500 02 r 01 sic 0 000 | intentionally so written (used after a printed word or phrase) -00146594 02 r 01 so 2 001 ;u 06321054 n 0000 | to a very great extent or degree; "the idea is so obvious"; "never been so happy"; "I love you so"; "my head aches so!" -00146763 02 r 01 so 3 000 | (usually followed by `that') to an extent or degree as expressed; "he was so tired he could hardly stand"; "so dirty that it smells" -00146926 02 r 01 so 5 000 | in such a condition or manner, especially as expressed or implied; "They're happy and I hope they will remain so"; "so live your life that old age will bring no regrets" -00147126 02 r 01 so 7 000 | to a certain unspecified extent or degree; "I can only go so far with this student"; "can do only so much in a day" -00147272 02 r 01 so 8 000 | in the same way; also; "I was offended and so was he"; "worked hard and so did she" -00147386 02 r 01 such 0 001 ;u 06321054 n 0000 | to so extreme a degree; "he is such a baby"; "Such rich people!" -00147502 02 r 01 hand_and_foot 0 000 | in all ways possible; "they served him hand and foot" -00147597 02 r 01 hand_in_hand 1 000 | clasping each other's hands; "they walked hand in hand" -00147693 02 r 01 hand_over_fist 0 000 | at a tremendous rate; "made money hand over fist" -00147785 02 r 02 handily 0 hands_down 0 000 | with no difficulty; "she beat him handily" -00147876 02 r 02 easily 1 easy 1 002 ;u 07075172 n 0000 \ 00749230 a 0101 | with ease (`easy' is sometimes used informally for `easily'); "she was easily excited"; "was easily confused"; "he won easily"; "this china breaks very easily"; "success came too easy" -00148139 02 r 02 easy 0 soft 0 003 ;u 07075172 n 0000 \ 00750054 a 0202 \ 00749230 a 0101 | in a relaxed manner; or without hardship; "just wanted to take it easy" (`soft' is nonstandard) -00148329 02 r 01 in_hand 0 001 ! 00148422 r 0101 | under control; "the riots were in hand" -00148422 02 r 02 out_of_hand 0 beyond_control 0 001 ! 00148329 r 0101 | out of control; "the riots got out of hand" -00148540 02 r 01 in_a_way 0 000 | from some points of view; "she was right in a way" -00148627 02 r 01 factually 0 001 \ 01933731 a 0102 | as a fact or based on fact; "they learn much, factually, about the problems of retirement and provision for old age, and, psychologically, in the sharing of their thoughts on retirement" -00148869 02 r 03 in_fact 0 in_point_of_fact 0 as_a_matter_of_fact 0 000 | in reality or actuality; "in fact, it was a wonder anyone survived"; "painters who are in fact anything but unsophisticated"; "as a matter of fact, he is several inches taller than his father" -00149138 02 r 02 actually 0 in_reality 0 000 | used to imply that one would expect the fact to be the opposite of that stated; surprisingly; "you may actually be doing the right thing by walking out"; "she actually spoke Latin"; "they thought they made the rules but in reality they were only puppets"; "people who seem stand-offish are in reality often simply nervous" -00149510 02 r 02 actually 1 really 4 002 \ 01932973 a 0201 \ 01933731 a 0101 | in actual fact; "to be nominally but not actually independent"; "no one actually saw the shark"; "large meteorites actually come from the asteroid belt" -00149744 02 r 01 actually 2 000 | as a sentence modifier to add slight emphasis; "actually, we all help clear up after a meal"; "actually, I haven't seen the film"; "I'm not all that surprised actually"; "she hasn't proved to be too satisfactory, actually" -00150003 02 r 01 actually 3 000 | at the present moment; "the transmission screen shows the picture that is actually on the air" -00150134 02 r 03 to_be_sure 0 without_doubt 2 no_doubt 0 000 | admittedly; "to be sure, he is no Einstein" -00150243 02 r 01 sure_enough 0 000 | as supposed or expected; "sure enough, he asked her for money again" -00150351 02 r 02 right 0 right_on 1 000 | an interjection expressing agreement -00150432 02 r 01 in_toto 0 000 | in entirety; "they bought the business in toto"; "in recommendations were adopted in toto" -00150558 02 r 02 in_the_least 1 even_a_little 0 000 | to any extent at all; "are you in the least interested?" -00150671 02 r 03 above_all 0 most_importantly 1 most_especially 0 000 | above and beyond all other consideration; "above all, you must be independent" -00150824 02 r 01 in_absentia 0 000 | while absent; although absent; "he was sentenced in absentia" -00150925 02 r 01 across_the_board 0 001 \ 00526062 a 0101 | including all; "we got a pay raise across the board" -00151040 02 r 01 after_a_fashion 0 000 | to some extent; not very well; "he speaks French after a fashion" -00151149 02 r 01 after_all 0 000 | emphasizes something to be considered; "after all, she is your boss, so invite her"; "he is, after all, our president" -00151305 02 r 01 after_all 1 000 | in spite of expectations; "came to the party after all"; "it didn't rain after all" -00151426 02 r 01 after_hours 0 000 | not during regular hours; "he often worked after hours" -00151521 02 r 02 against_the_clock 0 against_time 0 000 | as fast as possible; before a deadline; "it was a race against the clock" -00151655 02 r 01 ahead_of_the_game 0 000 | in an advantageous position; "she's ahead of the game" -00151755 02 r 04 all_in_all 0 on_the_whole 0 altogether 3 tout_ensemble 0 000 | with everything considered (and neglecting details); "altogether, I'm sorry it happened"; "all in all, it's not so bad" -00151957 02 r 02 all_of_a_sudden 0 all_at_once 0 000 | without warning; "all at once, he started shouting" -00152066 02 r 02 all_the_way 9 the_whole_way 0 000 | to the goal; "she climbed the mountain all the way" -00152173 02 r 01 all_the_way 4 000 | not stopping short of sexual intercourse; "she went all the way with him" -00152286 02 r 01 from_start_to_finish 0 000 | completely -00152345 02 r 03 and_how 0 you_bet 0 you_said_it 0 000 | an expression of emphatic agreement -00152440 02 r 01 and_then_some 0 000 | and considerably more in addition; "it cost me a week's salary and then some" -00152559 02 r 03 around_the_clock 0 for_24_hours 0 round_the_clock 0 000 | without stopping; "she worked around the clock" -00152684 02 r 01 as_follows 0 000 | what is listed next; "her complaints went as follows" -00152776 02 r 02 as_it_were 0 so_to_speak 0 000 | as if it were really so; "she lives here, as it were" -00152882 02 r 02 as_we_say 0 so_to_speak 1 000 | in a manner of speaking; "the feeling is, as we say, quite dead" -00152998 02 r 01 as_the_crow_flies 0 000 | by the shortest and most direct route; "it's 10 miles as the crow flies" -00153116 02 r 03 at_all_costs 0 at_any_cost 0 at_any_expense 0 000 | regardless of the cost involved; "he wanted to save her life at all cost" -00153261 02 r 03 at_a_time 0 at_once 3 at_one_time 0 000 | simultaneously; "he took three cookies at a time" -00153372 02 r 01 at_will 0 000 | as one chooses or pleases; "he can roam the neighborhood at will" -00153473 02 r 01 loosely 1 001 \ 02232112 a 0101 | knitted in a loose manner; "loosely knit" -00153568 02 r 01 carefully 0 001 \ 00309021 a 0101 | taking care or paying attention; "they watched carefully" -00153681 02 r 03 mindfully 0 heedfully 0 advertently 0 005 ! 00237833 r 0302 \ 00164308 a 0301 \ 01977488 a 0202 ! 00153865 r 0101 \ 01977155 a 0101 | in a careful deliberate manner -00153865 02 r 01 unmindfully 0 002 ! 00153681 r 0101 \ 01978003 a 0101 | in a careless and thoughtless manner -00153977 02 r 01 excitedly 0 001 \ 00919542 a 0101 | with excitement; in an excited manner; "she shook his hand excitedly" -00154102 02 r 01 vociferously 0 001 \ 01920367 a 0105 | in a vociferous manner; "he complained vociferously" -00154213 02 r 01 safely 0 000 | with safety; in a safe manner; "we are safely out of there" -00154307 02 r 01 allegedly 0 001 \ 00687614 a 0101 | according to what has been alleged; "he was on trial for allegedly murdering his wife" -00154449 02 r 02 purportedly 1 supposedly 0 000 | believed or reputed to be the case -00154536 02 r 03 illegally 0 illicitly 1 lawlessly 0 004 ! 00363218 r 0302 \ 01395617 a 0301 \ 01403760 a 0202 \ 01401854 a 0101 | in an illegal manner; "they dumped the waste illegally" -00154725 02 r 01 originally 0 001 \ 01686439 a 0101 | in an original manner -00154803 02 r 01 unoriginally 0 001 \ 01688271 a 0101 | in an unoriginal manner -00154885 02 r 01 comfortably 0 001 \ 00479330 a 0101 | in mental comfort; without stress; "he works comfortably on three continents" -00155020 02 r 01 comfortably 2 002 ! 00155187 r 0101 \ 00476819 a 0101 | in physical comfort; "she could have been lying comfortably in bed getting the same relief" -00155187 02 r 01 uncomfortably 0 002 ! 00155020 r 0101 \ 00478015 a 0101 | in physical discomfort; "she lay on the couch, her body uncomfortably twisted" -00155343 02 r 01 by_a_long_shot 0 000 | by a great deal; "he is the best by a long shot"; "his labors haven't ended there--not by a long shot" -00155488 02 r 02 by_and_by 0 later 2 000 | at some eventual time in the future; "By and by he'll understand"; "I'll see you later" -00155621 02 r 04 by_and_large 0 generally 2 more_often_than_not 0 mostly 3 000 | usually; as a rule; "by and large it doesn't rain much here" -00155765 02 r 02 by_hook_or_by_crook 0 by_any_means 0 000 | in any way necessary; "I'll pass this course by hook or by crook" -00155893 02 r 02 by_heart 0 by_memory 0 000 | by committing to memory; "she knew the poem by heart" -00155995 02 r 03 by_inches 0 little_by_little 1 by_small_degrees 0 000 | by a short distance; "they moved it by inches" -00156117 02 r 01 by_fits_and_starts 0 000 | intermittently; "he worked on his book by fits and starts" -00156222 02 r 04 by_the_way 0 by_the_bye 0 incidentally 0 apropos 1 000 | introducing a different topic; in point of fact; "incidentally, I won't go to the party" -00156387 02 r 02 by_the_piece 0 one_by_one 0 000 | one piece at a time; "she sold the plates by the piece" -00156496 02 r 02 orally 0 by_word_of_mouth 0 001 \ 02284169 a 0101 | by spoken rather than written means; "these stories were transmitted by word of mouth" -00156654 02 r 01 orally 1 002 ;c 03247620 n 0000 \ 02771485 a 0101 | (of drugs) through the mouth rather than through injection; by_mouth; "he was administered the drug orally" -00156833 02 r 03 come_hell_or_high_water 0 no_matter_what_happens 0 whatever_may_come 0 000 | in spite of all obstacles; "we'll go to Tibet come hell or high water" -00157000 02 r 02 day_in_and_day_out 0 all_the_time 1 000 | without respite; "he plays chess day in and day out" -00157114 02 r 01 dead_ahead 0 000 | exactly ahead or in front; "the laboratory is dead ahead" -00157210 02 r 01 deadpan 0 000 | without betraying any feeling; "she told the joke deadpan" -00157304 02 r 03 en_masse 0 en_bloc 0 as_a_group 0 000 | all together; "the students turned out en masse" -00157412 02 r 02 every_so_often 0 every_now_and_then 0 000 | occasionally; "every so often she visits her father" -00157528 02 r 01 every_inch 0 000 | in every way; completely; "he was every inch a statesman" -00157624 02 r 01 completely 3 001 \ 00520214 a 0101 | so as to be complete; with everything necessary; "he had filled out the form completely"; "the apartment was completely furnished" -00157811 02 r 01 incompletely 0 001 \ 00523978 a 0101 | not to a full degree or extent; "words incompletely understood"; "a form filled out incompletely" -00157967 02 r 03 alone 1 solo 0 unaccompanied 0 002 \ 02251057 a 0301 \ 02251212 a 0101 | without anybody else or anything else; "the child stayed home alone"; "the pillar stood alone, supporting nothing"; "he flew solo" -00158190 02 r 02 first_and_last 0 above_all 1 000 | taking everything together; "she was first and last a scientist" -00158309 02 r 03 precisely 0 exactly 1 just 5 002 \ 00914421 a 0201 \ 01837744 a 0101 | indicating exactness or preciseness; "he was doing precisely (or exactly) what she had told him to do"; "it was just as he said--the jewel was gone"; "it has just enough salt" -00158575 02 r 03 for_a_song 0 for_a_bargain_price 0 at_a_low_price 0 000 | for a relatively small amount of money; "we bought the house for a song" -00158725 02 r 01 for_dear_life 0 000 | as though your life was at stake; "he was running for dear life" -00158831 02 r 01 at_stake 0 000 | to be won or lost; at risk; "perhaps a million dollars are at stake" -00158936 02 r 01 at_stake 1 000 | in question or at issue; "there is more at stake than your modesty" -00159040 02 r 03 for_example 0 for_instance 0 e.g. 0 000 | as an example; "take ribbon snakes, for example" -00159150 02 r 01 for_good_measure 0 000 | in addition (as to close a deal); "the car salesman threw in the radio, for good measure" -00159284 02 r 01 for_keeps 0 000 | for the winner to keep all; "they played for keeps" -00159373 02 r 04 for_love_or_money 0 for_anything 0 for_any_price 0 for_all_the_world 0 000 | under any circumstances; "she wouldn't give up her pets for love or money" -00159544 02 r 01 for_one 0 000 | as a particular one of several possibilities; "I for one feel very grateful"; "her mother for one was worried" -00159690 02 r 01 for_short 0 000 | as an abbreviation; "call me Bob for short" -00159771 02 r 02 for_the_asking 0 on_request 0 000 | on the occasion of a request; "advice was free for the asking" -00159889 02 r 01 from_scratch 0 000 | from the beginning, especially without relying on resources or other advantages; "he baked the torte from scratch"; "she built her business up from scratch" -00160086 02 r 02 sincerely 3 sincerely_yours 0 000 | written formula for ending a letter -00160177 02 r 02 from_way_back 0 since_a_long_time_ago 0 000 | since long ago; "she knows him from way back" -00160288 02 r 01 close_to_the_wind 0 001 ;c 00314469 n 0000 | nearly opposite to the direction from which wind is coming; "sailing close to the wind" -00160440 02 r 01 closely 0 001 \ 00446921 a 0101 | in a close relation or position in time or space; "the onsets were closely timed"; "houses set closely together"; "was closely involved in monitoring daily progress" -00160659 02 r 03 closely 1 intimately 0 nearly 2 001 \ 00451510 a 0101 | in a close manner; "the two phenomena are intimately connected"; "the person most nearly concerned" -00160834 02 r 02 relatively 0 comparatively 0 002 \ 00006032 a 0202 \ 00006032 a 0101 | in a relative manner; by comparison to something else; "the situation is relatively calm now" -00161018 02 r 02 predominantly 0 preponderantly 0 002 \ 00792202 a 0205 \ 01066787 a 0103 | much greater in number or influence; "the patients are predominantly indigenous" -00161193 02 r 01 readily 0 000 | without much difficulty; "these snakes can be identified readily" -00161294 02 r 01 markedly 0 001 \ 01287808 a 0101 | in a clearly noticeable manner; "sales of luxury cars dropped markedly" -00161420 02 r 01 palpably 0 001 \ 01717117 a 0101 | so as to be palpable; "she was palpably nervous" -00161523 02 r 01 crudely 0 001 \ 01953467 a 0103 | in a crude or unrefined manner; "he was crudely bold" -00161630 02 r 04 slowly 2 slow 0 easy 2 tardily 0 003 ;u 07075172 n 0000 ! 00085811 r 0101 \ 00980527 a 0101 | without speed (`slow' is sometimes used informally for `slowly'); "he spoke slowly"; "go easy here--the road is slippery"; "glaciers move tardily"; "please go slow so I can see the sights" -00161932 02 r 03 publicly 0 publically 0 in_public 0 002 ! 00162137 r 0101 \ 01861205 a 0101 | in a manner accessible to or observable by the public; openly; "she admitted publicly to being a communist" -00162137 02 r 03 privately 0 in_private 0 in_camera 0 002 ! 00161932 r 0101 \ 01858094 a 0101 | kept private or confined to those intimately concerned; "it was discussed privately between the two men"; "privately, she thought differently"; "some member of his own party hoped privately for his defeat"; "he was questioned in private" -00162473 02 r 01 secretly 2 001 \ 00952181 a 0101 | not openly; inwardly; "they were secretly delighted at his embarrassment"; "hoped secretly she would change her mind" -00162645 02 r 01 privately 1 001 ! 00162765 r 0101 | by a private person or interest; "a privately financed campaign" -00162765 02 r 01 publicly 1 002 ! 00162645 r 0101 \ 00493297 a 0101 | by the public or the people generally; "publicly provided medical care"; "publicly financed schools" -00162938 02 r 01 communally 0 001 \ 00493012 a 0101 | by a group of people rather than an individual; "the mills were owned communally" -00163076 02 r 02 reprovingly 0 reproachfully 0 002 \ 00996864 a 0203 \ 00996864 a 0104 | in a reproving or reproachful manner; "she spoke to him reprovingly" -00163236 02 r 01 gaily 0 001 \ 01367431 a 0101 | in a gay manner; "the scandals were gaily diverting" -00163340 02 r 03 hand_in_glove 0 hand_and_glove 0 cooperatively 0 001 \ 00619972 a 0301 | in close cooperation; "they work hand in glove" -00163480 02 r 01 cheek_by_jowl 0 000 | in close proximity; "the houses were jumbled together cheek by jowl" -00163590 02 r 02 helter-skelter 0 every_which_way 0 000 | haphazardly; "the books were piled up helter-skelter" -00163704 02 r 05 head_over_heels 0 heels_over_head 0 topsy-turvy 0 topsy-turvily 0 in_great_confusion 0 000 | in disorderly haste; "we ran head over heels toward the shelter" -00163881 02 r 01 fecklessly 1 001 \ 01998730 a 0101 | in a feckless manner; irresponsibly and incompetently -00163991 02 r 02 harum-scarum 0 pell-mell 0 000 | in a wild or reckless manner; "dashing harum-scarum all over the place"; "running pell-mell up the stairs" -00164150 02 r 02 carelessly 2 heedlessly 0 002 \ 01193714 a 0201 \ 00311663 a 0101 | without care or concern; "carelessly raised the children's hopes without thinking of their possible disappointment" -00164353 02 r 02 heart_and_soul 0 body_and_soul 0 000 | with complete faith; "she was with him heart and soul" -00164466 02 r 01 hook_line_and_sinker 0 000 | in every detail; "he believed her story hook, line, and sinker" -00164578 02 r 01 in_circles 0 000 | without making progress; "the candidates talked in circles" -00164676 02 r 01 in_a_pig's_eye 0 001 ;u 07075172 n 0000 | very unlikely -00164751 02 r 02 in_case 0 just_in_case 0 000 | if there happens to be need; "in case of trouble call 911"; "I have money, just in case" -00164890 02 r 02 coldly 0 in_cold_blood 1 001 \ 01257612 a 0101 | in a cold unemotional manner; "he killed her in cold blood" -00165018 02 r 03 seriously 0 earnestly 2 in_earnest 0 002 \ 02118840 a 0201 \ 02118379 a 0101 | in a serious manner; "talking earnestly with his son"; "she started studying snakes in earnest"; "a play dealing seriously with the question of divorce" -00165269 02 r 05 in_due_course 0 in_due_season 0 in_good_time 0 in_due_time 0 when_the_time_comes 0 000 | at the appropriate time; "we'll get to this question in due course" -00165445 02 r 02 in_full_swing 0 in_full_action 0 000 | proceeding with full vigor; "the party was in full swing" -00165561 02 r 02 in_kind 0 in_a_similar_way 2 000 | with something of the same kind; "she pays him back in kind" -00165676 02 r 01 in_line 0 000 | one behind another in a line or queue; "they waited in line for the tickets" -00165788 02 r 02 in_name 0 in_name_only 0 000 | by title or repute though not in fact; "he's a doctor in name only" -00165906 02 r 02 in_no_time 0 very_fast 0 000 | in a relatively short time; "she finished the assignment in no time" -00166025 02 r 01 long 0 000 | for an extended time or at a distant time; "a promotion long overdue"; "something long hoped for"; "his name has long been forgotten"; "talked all night long"; "how long will you be gone?"; "arrived long before he was expected"; "it is long after your bedtime" -00166318 02 r 01 long 3 000 | for an extended distance -00166375 02 r 02 in_passing 0 en_passant 0 000 | incidentally; in the course of doing something else; "he made this remark in passing" -00166512 02 r 01 in_practice 0 000 | in practical applications; "will this work in practice?" -00166608 02 r 04 secretly 0 in_secret 0 on_the_Q.T. 0 on_the_QT 0 000 | in secrecy; not openly; "met secretly to discuss the invasion plans"; "the children secretly went to the movies when they were supposed to be at the library"; "they arranged to meet in secret" -00166875 02 r 01 in_short_order 0 000 | without delay; "John got ready in short order" -00166964 02 r 01 inside_out 0 000 | with the inside facing outward; "she turned the shirt inside out" -00167068 02 r 01 inside_out 1 000 | thoroughly; from every perspective; "she knows this town inside out" -00167175 02 r 02 in_the_air 0 in_everyone's_thoughts 0 000 | on everybody's mind; "Christmas was in the air" -00167286 02 r 05 in_the_first_place 1 earlier 4 in_the_beginning 1 to_begin_with 0 originally 2 000 | before now; "why didn't you tell me in the first place?" -00167447 02 r 02 in_the_long_run 0 in_the_end 2 000 | after a very lengthy period of time; "she will succeed in the long run" -00167575 02 r 02 in_the_nick_of_time 0 just_in_time 0 000 | at the last possible moment; "she was saved in the nick of time" -00167702 02 r 01 in_the_same_breath 0 000 | simultaneously; "she praised and criticized him in the same breath" -00167816 02 r 02 in_time 1 soon_enough 0 000 | without being tardy; "we made it to the party in time" -00167920 02 r 02 vainly 0 in_vain 0 001 \ 01866812 a 0105 | to no avail; "he looked for her in vain"; "the city fathers tried vainly to find a solution" -00168075 02 r 01 unsuccessfully 0 002 ! 00119940 r 0101 \ 02333453 a 0101 | without success; "she tried unsuccessfully to persuade him to buy a new car" -00168230 02 r 01 just_so 0 000 | in a careful manner; "you must treat this plant just so" -00168322 02 r 02 lickety_split 0 lickety_cut 0 000 | without delay; "she tackled the job lickety-split" -00168428 02 r 01 like_clockwork 0 001 ;u 07154330 n 0000 | with regularity and precision; "the rocket launch went off like clockwork" -00168564 02 r 06 like_hell 0 like_mad 0 like_crazy 0 like_sin 0 like_thunder 0 like_the_devil 0 001 ;u 07075172 n 0000 | with great speed or effort or intensity; "drove like crazy"; "worked like hell to get the job done"; "ran like sin for the storm cellar"; "work like thunder"; "fought like the devil" -00168870 02 r 01 like_hell 1 000 | used ironically to indicate the opposite of what is stated; "says he'll help me? Like hell he will!" -00169008 02 r 01 no_end 0 000 | on and on for a long time; "the child cried no end" -00169094 02 r 02 off_and_on 0 on_and_off 0 000 | not regularly; "they phone each other off and on" -00169195 02 r 01 off_the_cuff 0 000 | without preparation; "the presidential candidate made a remark off the cuff" -00169312 02 r 01 confidentially 1 001 \ 01859571 a 0101 | in a confidential manner; "spoke to him intimately and confidentially" -00169443 02 r 01 off_the_record 0 000 | not for quotation; "he spoke to the reporter off the record" -00169546 02 r 01 on_all_fours 0 000 | on hands and knees; "he got down on all fours to play with his grandson" -00169659 02 r 02 on_the_average 0 on_average 0 000 | typically; "on average he watches three movies a week" -00169769 02 r 01 on_approval 0 000 | for examination (with an option to buy); "they took the VCR on approval" -00169881 02 r 01 on_faith 0 000 | with trust and confidence; "we accepted him on faith" -00169971 02 r 01 hypothetically 0 001 \ 00861216 a 0103 | by hypothesis -00170045 02 r 01 theoretically 0 001 \ 00860611 a 0101 | in theory; according to the assumed facts; "on paper the candidate seems promising" -00170188 02 r 01 theoretically 1 002 \ 00860611 a 0101 ! 00084038 r 0101 | in a theoretical manner; "he worked the problem out theoretically" -00170332 02 r 01 oppositely 0 001 \ 02070887 a 0101 | in an opposite position -00170412 02 r 04 contrarily 0 to_the_contrary 0 contrariwise 0 on_the_contrary 2 001 \ 02065958 a 0101 | contrary to expectations; "he didn't stay home; on the contrary, he went out with his friends" -00170614 02 r 01 on_the_fly 0 000 | on the run or in a hurry; "she wrote those letters on the fly" -00170715 02 r 01 on_the_spot 0 000 | without delay or immediately; "we hired her on the spot"; "thought they were going to shoot us down on the spot" -00170867 02 r 01 on_the_spot 1 000 | at the place in question; there; "they were on the spot when it happened"; "it had to be decided by the man on the spot" -00171027 02 r 01 on_the_spot 2 000 | in a difficult situation; "that question really put him on the spot" -00171135 02 r 02 on_the_spur_of_the_moment 0 suddenly 4 000 | on impulse; without premeditation; "he decided to go to Chicago on the spur of the moment"; "he made up his mind suddenly" -00171322 02 r 02 on_the_way 0 en_route 0 000 | on a route to some place; "help is on the way"; "we saw him on the way to California" -00171457 02 r 01 on_time 0 000 | at the expected time; "she always arrives on time" -00171543 02 r 03 out_of_thin_air 0 out_of_nothing 0 from_nowhere 0 000 | without warning; "your cousin arrived out of thin air" -00171673 02 r 02 out_of_wedlock 1 outside_marriage 0 000 | of unwed parents; "he was born out of wedlock" -00171781 02 r 01 to_advantage 0 000 | in a manner that uses the most flattering or best aspects of; "the dress brought out her figure to advantage" -00171931 02 r 01 to_a_man 0 000 | without exception; "voted for unionization to a man" -00172020 02 r 04 to_a_T 0 to_the_letter 0 just_right 0 to_perfection 0 000 | in every detail; "the new house suited them to a T" -00172151 02 r 02 up_to_now 1 to_date 0 000 | prior to the present time; "no suspect has been found to date" -00172261 02 r 01 to_order 0 000 | to specification; "he had the shoes made to order" -00172348 02 r 01 tooth_and_nail 0 000 | with force and ferocity; "she fought tooth and nail" -00172443 02 r 01 to_that_effect 0 000 | with that general meaning; "she said something to that effect" -00172548 02 r 02 to_the_hilt 0 to_the_limit 0 000 | in full; "you are in this to the hilt" -00172641 02 r 01 under_the_circumstances 0 000 | because of prevailing conditions; "under the circumstances I cannot buy the house" -00172775 02 r 01 orad 0 002 ! 00172875 r 0101 \ 01665184 a 0101 | toward the mouth or oral region -00172875 02 r 01 aborad 0 002 ! 00172775 r 0101 \ 01665674 a 0101 | away from the mouth or oral region -00172980 02 r 02 bravely 0 courageously 0 002 \ 00262792 a 0202 \ 00262792 a 0101 | in a courageous manner; "bravely he went into the burning house" -00173131 02 r 01 overboard 0 000 | from on board a vessel into the water; "they dropped their garbage overboard" -00173246 02 r 01 upstate 0 000 | in or toward the northern parts of a state; "he lives upstate New York" -00173353 02 r 02 profoundly 0 deeply 0 002 \ 00692762 a 0201 \ 00693237 a 0101 | to a great depth psychologically; "They felt the loss deeply" -00173498 02 r 01 impatiently 0 002 ! 00173644 r 0101 \ 01737241 a 0101 | with impatience; in an impatient manner; "he answered her impatiently" -00173644 02 r 01 patiently 0 002 ! 00173498 r 0101 \ 01735736 a 0101 | with patience; in a patient manner; "he patiently played with the child" -00173790 02 r 01 tensely 0 001 \ 02405326 a 0101 | in a tense manner; "he sat down tensely" -00173884 02 r 01 methodically 0 001 \ 01668567 a 0101 | in a methodical manner; "she worked methodically" -00173992 02 r 01 blindly 0 001 \ 02158826 a 0101 | without seeing or looking; "he felt around his desk blindly" -00174106 02 r 01 apologetically 0 001 \ 01631830 a 0101 | in an apologetic manner; "he spoke apologetically about his past" -00174232 02 r 03 unsteadily 0 falteringly 0 uncertainly 1 004 \ 00337404 a 0301 \ 02304035 a 0201 ! 00174491 r 0101 \ 02303077 a 0101 | in an unsteady manner; "he walked unsteadily toward the exit"; "The wounded soldier was swinging unsteadily on his legs" -00174491 02 r 02 steadily 0 steady 0 002 ! 00174232 r 0101 \ 02301560 a 0101 | in a steady manner; "he could still walk steadily" -00174623 02 r 01 haughtily 0 001 \ 01891109 a 0102 | in a haughty manner; "he peered haughtily down his nose" -00174735 02 r 01 wildly 0 001 \ 02390335 a 0101 | to an extreme or greatly exaggerated degree; "the storyline is wildly unrealistic" -00174870 02 r 01 wild 1 001 \ 02389220 a 0101 | in a wild or undomesticated manner; "growing wild"; "roaming wild" -00174987 02 r 01 wildly 1 001 \ 01727303 a 0101 | with violent and uncontrollable passion; "attacked wildly, slashing and stabbing over and over" -00175135 02 r 01 wildly 2 001 \ 01727303 a 0101 | in an uncontrolled or unrestrained manner; "He gesticulated wildly" -00175255 02 r 01 bleakly 0 001 \ 01229561 a 0102 | without hope; "he wondered bleakly" -00175344 02 r 02 stupidly 0 doltishly 0 002 \ 00440489 a 0202 \ 00439588 a 0101 | in a stupid manner; "he had stupidly bought a one way ticket" -00175490 02 r 02 uniquely 0 unambiguously 0 001 \ 02215087 a 0102 | so as to be unique; "he could determine uniquely the properties of the compound" -00175641 02 r 01 symmetrically 0 002 ! 00175778 r 0101 \ 02371718 a 0101 | in a symmetrical manner; "they were symmetrically arranged" -00175778 02 r 02 asymmetrically 0 unsymmetrically 0 001 ! 00175641 r 0101 | in an asymmetrical manner; "they were asymmetrically arranged" -00175919 02 r 02 inversely 0 reciprocally 0 002 \ 01945550 a 0201 \ 00769761 a 0101 | in an inverse or contrary manner; "inversely related"; "wavelength and frequency are, of course, related reciprocally"- F.A.Geldard -00176139 02 r 01 creatively 0 001 \ 00643250 a 0101 | in a creative manner; "she solved the problem creatively" -00176253 02 r 01 distally 0 002 ;c 06057539 n 0000 \ 00778363 a 0101 | far from the center; "the bronchus is situated distally" -00176383 02 r 02 heavily 0 to_a_great_extent 0 001 \ 01190683 a 0101 | to a considerable degree; "he relied heavily on others' data" -00176518 02 r 03 heavily 1 intemperately 0 hard 6 002 \ 02402268 a 0201 ! 00176750 r 0101 | indulging excessively; "he drank heavily" -00176654 02 r 01 heavily 6 001 \ 01184932 a 0101 | in a labored manner; "he breathed heavily" -00176750 02 r 01 lightly 1 002 ! 00176518 r 0101 \ 02401863 a 0102 | indulging with temperance; "we eat lightly in the morning" -00176880 02 r 01 repeatedly 0 001 \ 00592880 a 0103 | several time; "it must be washed repeatedly" -00176981 02 r 05 over_and_over 0 again_and_again 0 over_and_over_again 0 time_and_again 0 time_and_time_again 0 000 | repeatedly; "the unknown word turned up over and over again in the text" -00177174 02 r 01 adamantly 0 001 \ 01024812 a 0101 | inflexibly; unshakably; "adamantly opposed to the marriage" -00177289 02 r 01 strongly 0 002 ! 00177483 r 0101 \ 02321009 a 0101 | with strength or in a strong manner; "argues very strongly for his proposal"; "he was strongly opposed to the government" -00177483 02 r 01 weakly 1 002 ! 00177289 r 0101 \ 02324397 a 0101 | in a weak or feeble manner or to a minor degree; "weakly agreed to a compromise"; "wheezed weakly"; "he was weakly attracted to her" -00177686 02 r 03 vice_versa 0 the_other_way_around 0 contrariwise 1 000 | with the order reversed; "she hates him and vice versa" -00177818 02 r 02 day_by_day 0 daily 1 000 | gradually and progressively; "his health weakened day by day" -00177926 02 r 02 day_in_day_out 0 day_after_day 0 000 | for an indefinite number of successive days -00178028 02 r 01 week_after_week 0 000 | for an indefinite number of successive weeks -00178116 02 r 01 week_by_week 0 000 | weekly; "week by week, the betrayal gnawed at his heart" -00178213 02 r 01 month_by_month 0 000 | for an indefinite number of months; "month by month, the betrayal gnawed at his heart" -00178342 02 r 01 radically 0 001 \ 01642657 a 0102 | in a radical manner; "she took a radically different approach" -00178460 02 r 02 religiously 0 sacredly 0 002 \ 02055062 a 0201 \ 02056265 a 0101 | by religion; "religiously inspired art" -00178586 02 r 03 scrupulously 0 conscientiously 0 religiously 1 003 \ 02085740 a 0301 \ 00310138 a 0201 \ 00310138 a 0103 | with extreme conscientiousness; "he came religiously every morning at 8 o'clock" -00178793 02 r 01 exceptionally 0 001 \ 01676026 a 0102 | to an exceptional degree; "it worked exceptionally well" -00178909 02 r 02 amply 1 fully 4 002 \ 00105746 a 0101 ! 00396699 r 0101 | sufficiently; more than adequately; "the evidence amply (or fully) confirms our suspicions"; "they were fully (or amply) fed" -00179112 02 r 02 strictly 0 purely 0 000 | restricted to something; "we talked strictly business" -00179212 02 r 01 tentatively 0 001 \ 00556318 a 0104 | in a tentative manner; "we agreed tentatively on a dinner date" -00179333 02 r 02 in_other_words 0 put_differently 0 000 | otherwise stated; "in other words, we are broke" -00179442 02 r 02 loosely 0 slackly 0 002 \ 02404421 a 0202 \ 02404421 a 0101 | in a relaxed manner; not rigid; "his hands lay loosely" -00179579 02 r 01 fussily 0 001 \ 01136248 a 0104 | in a fussy manner; "he spoke to her fussily" -00179677 02 r 01 unnecessarily 1 001 \ 01581115 a 0101 | without any necessity; "this marathon would exhaust him unnecessarily" -00179807 02 r 01 gracefully 0 002 ! 00179928 r 0101 \ 01139352 a 0101 | in a graceful manner; "she swooped gracefully" -00179928 02 r 01 gracelessly 0 002 ! 00179807 r 0101 \ 01142666 a 0101 | in a graceless manner; "she moves rather gracelessly" -00180057 02 r 01 neatly 0 001 \ 02423432 a 0101 | with neatness; "she put the slippers under the bed neatly" -00180168 02 r 01 lightly 5 001 \ 01190993 a 0101 | to a slight degree; "her speech is only lightly accented" -00180279 02 r 03 lightly 0 softly 2 gently 3 001 \ 01192035 a 0302 | with little weight or force; "she kissed him lightly on the forehead" -00180420 02 r 02 successively 0 in_turn 0 001 \ 01667729 a 0105 | in proper order or sequence; "talked to each child in turn"; "the stable became in turn a chapel and then a movie theater" -00180611 02 r 01 independently 0 001 \ 00727564 a 0101 | on your own; without outside help; "the children worked on the project independently" -00180756 02 r 02 apart 1 aside 4 000 | not taken into account or excluded from consideration; "these problems apart, the country is doing well"; "all joking aside, I think you're crazy" -00180944 02 r 02 apart 2 asunder 0 000 | into parts or pieces; "he took his father's watch apart"; "split apart"; "torn asunder" -00181075 02 r 01 apart 3 000 | separated or at a distance in place or position or time; "These towns are many miles apart"; "stood with his legs apart"; "born two years apart" -00181253 02 r 01 apart 4 000 | one from the other; "people can't tell the twins apart" -00181342 02 r 01 once 2 000 | as soon as; "once we are home, we can rest" -00181418 02 r 04 as_needed 0 as_required 0 pro_re_nata 0 PRN 0 000 | according to need (physicians use PRN in writing prescriptions); "add water as needed" -00181576 02 r 01 gently 0 001 \ 01144571 a 0102 | in a gradual manner; "a gently sloping terrain" -00181676 02 r 02 overseas 1 abroad 1 000 | in a place across an ocean -00181748 02 r 02 vigorously 0 smartly 1 002 \ 00875422 a 0201 \ 00875422 a 0101 | with vigor; in a vigorous manner; "he defended his ideas vigorously" -00181901 02 r 02 distinctly 0 clearly 2 001 \ 00779374 a 0101 | clear to the mind; with distinct mental discernment; "it's distinctly possible"; "I could clearly see myself in his situation" -00182094 02 r 01 in_vivo 0 001 \ 01359424 a 0101 | in the living organism; "studies conducted in vivo" -00182199 02 r 01 positively 0 002 ;u 06321054 n 0000 \ 00337172 a 0102 | extremely; "it was positively monumental" -00182316 02 r 04 excellently 0 magnificently 0 splendidly 0 famously 1 003 \ 02343110 a 0304 \ 01285376 a 0203 \ 02343110 a 0101 | extremely well; "he did splendidly in the exam"; "we got along famously" -00182522 02 r 01 healthily 0 001 \ 01944088 a 0101 | in a levelheaded manner; "the answers were healthily individual" -00182642 02 r 02 hilariously 0 uproariously 0 002 \ 01266841 a 0203 \ 01266841 a 0101 | in a hilarious manner; "hilariously funny" -00182775 02 r 01 considerately 0 002 ! 00182907 r 0101 \ 00638981 a 0101 | in a considerate manner; "they considerately withdrew" -00182907 02 r 01 inconsiderately 0 002 ! 00182775 r 0101 \ 00639356 a 0101 | without consideration; in an inconsiderate manner; "inconsiderately, he asked to be invited for dinner" -00183090 02 r 08 wonderfully 0 wondrous 0 wondrously 0 superbly 0 toppingly 0 marvellously 0 terrifically 0 marvelously 0 007 ;u 06321054 n 0000 \ 01676517 a 0707 \ 01676517 a 0604 \ 02344672 a 0503 \ 02342608 a 0402 \ 01676517 a 030a \ 01676517 a 0109 | (used as an intensifier) extremely well; "her voice is superbly disciplined"; "the colors changed wondrously slowly" -00183464 02 r 02 gratifyingly 0 satisfyingly 0 001 \ 01801029 a 0102 | in a gratifying manner; "the performance was at a gratifyingly high level" -00183612 02 r 01 impeccably 0 001 \ 01750847 a 0103 | flawlessly; "the film was impeccably authentic" -00183716 02 r 01 blandly 0 001 \ 02307563 a 0101 | in a bland manner; "his blandly incompetent attempts" -00183823 02 r 03 gravely 0 soberly 0 staidly 0 003 \ 00689336 a 0302 \ 02119213 a 0203 \ 02119213 a 0101 | in a grave and sober manner; "he walked soberly toward the altar" -00183998 02 r 01 helpfully 0 002 ! 00184131 r 0101 \ 01195536 a 0101 | in a helpful manner; "the subtitles are helpfully conveyed" -00184131 02 r 01 unhelpfully 0 002 ! 00183998 r 0101 \ 01198019 a 0101 | in an unhelpful manner; "he stood by unhelpfully while the house burned down" -00184284 02 r 04 true 0 admittedly 0 avowedly 1 confessedly 0 000 | as acknowledged; "true, she is the smartest in her class" -00184412 02 r 01 preferentially 0 001 \ 00065184 a 0102 | in a preferential manner; "he was treated preferentially" -00184530 02 r 01 rationally 0 002 \ 01925372 a 0101 ! 00184651 r 0101 | in a rational manner; "we must act rationally" -00184651 02 r 01 irrationally 0 002 ! 00184530 r 0101 \ 01926376 a 0101 | in an irrational manner; "they acted irrationally" -00184778 02 r 01 critically 0 002 ! 00184909 r 0101 \ 00649586 a 0101 | in a critical manner; "this must be examined critically" -00184909 02 r 01 uncritically 0 002 ! 00184778 r 0101 \ 00648816 a 0101 | in an uncritical manner; "he accepted her decisions uncritically" -00185051 02 r 01 boldly 0 001 \ 00249721 a 0101 | with boldness, in a bold manner; "we must tackle these tasks boldly" -00185172 02 r 04 competently 0 aptly 0 ably 0 capably 0 005 \ 00306314 a 0401 \ 00510348 a 0301 \ 01334958 a 0201 ! 00185400 r 0101 \ 00510050 a 0101 | with competence; in a competent capable manner; "they worked competently" -00185400 02 r 02 incompetently 0 displaying_incompetence 0 002 ! 00185172 r 0101 \ 00511214 a 0101 | in an incompetent manner; "he did the job rather incompetently" -00185567 02 r 01 emotionally 0 001 \ 02983577 a 0101 | with regard to emotions; "emotionally secure" -00185670 02 r 01 emotionally 1 002 ! 00185807 r 0101 \ 00853776 a 0101 | in an emotional manner; "at the funeral he spoke emotionally" -00185807 02 r 01 unemotionally 0 002 ! 00185670 r 0101 \ 00856860 a 0101 | in an unemotional manner; "the defendant stared unemotionally at the victim's family" -00185970 02 r 03 anxiously 0 uneasily 0 apprehensively 0 003 \ 00079069 a 0301 \ 00822449 a 0201 \ 02456157 a 0101 | with anxiety or apprehension; "we watched anxiously" -00186142 02 r 02 stiffly 0 stiff 0 001 \ 01525659 a 0101 | in a stiff manner; "his hands lay stiffly" -00186246 02 r 01 informally 0 002 ! 00186366 r 0101 \ 01044240 a 0101 | without formality; "he visited us informally" -00186366 02 r 01 formally 0 002 ! 00186246 r 0101 \ 01041916 a 0101 | in a formal manner; "he was dressed rather formally" -00186491 02 r 02 formally 1 officially 1 002 \ 01632537 a 0201 \ 01633153 a 0101 | with official authorization; "the club will be formally recognized" -00186644 02 r 01 irritably 0 001 \ 01136541 a 0103 | in an irritable manner; "she had become irritably exact" -00186756 02 r 01 calmly 0 001 \ 00529657 a 0101 | with self-possession (especially in times of stress); "he spoke calmly to the rioting students" -00186904 02 r 01 tranquilly 1 001 \ 00529657 a 0104 | without emotional agitation; "tranquilly she went on with her work" -00187028 02 r 01 nicely 0 001 \ 01586342 a 0101 | in a nice way; "a nicely painted house" -00187120 02 r 02 cozily 0 cosily 0 001 \ 00477284 a 0101 | in a cozy manner; "nestled cozily by the fire" -00187228 02 r 01 correspondingly 0 000 | in a corresponding manner; "the temperature decreases correspondingly" -00187342 02 r 01 studiously 0 001 \ 00311354 a 0101 | in a studious manner; "she examined the data studiously" -00187455 02 r 02 cleverly 0 smartly 2 002 \ 00439252 a 0204 \ 00439252 a 0104 | in a clever manner; "they were cleverly arranged"; "a smartly managed business" -00187617 02 r 03 lavishly 1 richly 0 extravagantly 1 002 \ 02021905 a 0201 \ 02025274 a 0101 | in a rich and lavish manner; "lavishly decorated" -00187764 02 r 01 uptown 0 001 ! 00187852 r 0101 | toward or in the upper part of town -00187852 02 r 01 downtown 0 001 ! 00187764 r 0101 | toward or in the lower or central part of town -00187953 02 r 01 best_of_all 0 000 | especially fortunate; "best of all, we don't have any homework!" -00188057 02 r 01 best 0 000 | it would be sensible; "you'd best stay at home" -00188137 02 r 01 best 1 000 | in a most excellent way or manner; "he played best after a couple of martinis" -00188248 02 r 01 theatrically 1 001 \ 00796047 a 0101 | in a theatrical manner; "theatrically dressed" -00188353 02 r 01 dramatically 1 001 \ 02714800 a 0101 | with respect to dramatic value; "the play was dramatically interesting, but the direction was bad" -00188510 02 r 05 namely 0 viz. 0 that_is_to_say 0 to_wit 0 videlicet 0 000 | as follows -00188600 02 r 02 much_as 0 very_much_like 0 000 | in a similar way -00188669 02 r 01 popularly 0 001 \ 00716370 a 0101 | among the people; "this topic was popularly discussed" -00188779 02 r 01 enthusiastically 0 002 ! 00188950 r 0101 \ 00885695 a 0101 | with enthusiasm; in an enthusiastic manner; "they discussed the question enthusiastically" -00188950 02 r 01 unenthusiastically 0 002 ! 00188779 r 0101 \ 00887062 a 0101 | without enthusiasm; showing no enthusiasm; "the children opened the presents unenthusiastically" -00189129 02 r 01 intellectually 0 001 \ 01332386 a 0101 | in an intellectual manner; "intellectually gifted children"; "intellectually influenced" -00189278 02 r 01 professedly 0 001 \ 00688296 a 0101 | with pretense or intention to deceive; "is only professedly poor" -00189401 02 r 01 someday 0 000 | some unspecified time in the future; "someday you will understand my actions" -00189514 02 r 02 hyperbolically 0 exaggeratedly 0 001 \ 00881030 a 0101 | in an exaggerated manner -00189615 02 r 02 agilely 0 nimbly 0 002 \ 00032733 a 0202 \ 00032733 a 0101 | in a nimble or agile manner; with quickness and lightness and ease; "nimbly scaling an iron gate"- Charles Dickens; "leaped agilely from roof to roof" -00189846 02 r 01 proudly 0 001 \ 01889256 a 0101 | with pride; in a proud manner; "he walked proudly into town" -00189960 02 r 01 solemnly 0 001 \ 02119213 a 0104 | in a grave and sedate manner; "the judge sat there solemnly" -00190075 02 r 01 divinely 0 001 \ 01179547 a 0101 | by divine means; "the divinely appointed means of rescue from temporal existence" -00190211 02 r 01 God_knows_how 0 000 | by some means not understood by the speaker; "God knows how he did it, but he did climbed that steep wall" -00190359 02 r 01 clumsily 0 001 \ 01140896 a 0102 | in a clumsy manner; "he snatched the bills clumsily" -00190466 02 r 01 diffusely 0 001 \ 00540487 a 0101 | in a diffuse manner; "the arteries were diffusely narrowed" -00190581 02 r 01 irregularly 2 001 \ 01960656 a 0101 | in an irregular manner; "the stomach mucosa was irregularly blackened" -00190709 02 r 01 coarsely 0 002 ! 00190837 r 0101 \ 02230990 a 0101 | in coarse pieces; "the surfaces were coarsely granular" -00190837 02 r 01 finely 2 002 ! 00190709 r 0101 \ 02232251 a 0101 | in tiny pieces; "the surfaces were finely granular" -00190959 02 r 01 intensely 0 001 \ 01509527 a 0101 | in an intense manner; "he worked intensely" -00191058 02 r 03 et_al. 1 et_al 1 et_alibi 0 000 | and elsewhere (used when referring to other occurrences in a text) -00191178 02 r 05 et_al. 0 et_al 0 et_alii 0 et_aliae 0 et_alia 0 000 | and others ('et al.' is used as an abbreviation of `et alii' (masculine plural) or `et aliae' (feminine plural) or `et alia' (neuter plural) when referring to a number of people); "the data reported by Smith et al." -00191467 02 r 02 cf. 0 cf 0 000 | compare (used in texts to point the reader to another location in the text) -00191579 02 r 03 i.e. 0 ie 0 id_est 0 000 | that is to say; in other words -00191656 02 r 01 continuously 0 001 \ 00597424 a 0101 | at every point; "The function is continuously differentiable" -00191776 02 r 01 reflexly 0 001 \ 02522669 a 0102 | in a reflex manner; "such effects can be induced reflexly" -00191889 02 r 01 spontaneously 0 001 \ 02282376 a 0101 | in a spontaneous manner; "this shift occurs spontaneously" -00192007 02 r 01 sympathetically 0 001 \ 03008013 a 0101 | with respect to the sympathetic nervous system; "the stimulus acted sympathetically" -00192153 02 r 02 sympathetically 1 empathetically 0 003 \ 02375639 a 0202 ! 00192330 r 0101 \ 02374914 a 0101 | in a sympathetic manner; "she listened to him sympathetically" -00192330 02 r 01 unsympathetically 0 002 ! 00192153 r 0101 \ 02375828 a 0101 | without sympathy; in an unsympathetic manner; "the judge listened to the accused unsympathetically" -00192511 02 r 01 convincingly 0 002 ! 00192636 r 0101 \ 00614990 a 0101 | in a convincing manner; "he argued convincingly" -00192636 02 r 01 unconvincingly 0 002 ! 00192511 r 0101 \ 00615457 a 0101 | in an unconvincing manner; "he argued unconvincingly" -00192768 02 r 01 weirdly 0 001 \ 00970081 a 0101 | in a weird manner; "she was dressed weirdly" -00192866 02 r 01 mercifully 1 001 \ 01507134 a 0101 | in a compassionate manner; "he dealt with the thief mercifully" -00192986 02 r 01 stealthily 0 001 \ 02088974 a 0104 | in a stealthy manner; "stealthily they advanced upstream" -00193100 02 r 01 thievishly 0 001 \ 01225294 a 0102 | in a manner characteristic of a thief -00193194 02 r 01 off 4 000 | no longer on or in contact or attached; "clean off the dirt"; "he shaved off his mustache" -00193316 02 r 01 snugly 0 001 \ 01447937 a 0102 | fitting closely; "the vest fit snugly" -00193407 02 r 01 snugly 1 001 \ 01885991 a 0101 | safely protected; "concealed snugly in his hideout" -00193511 02 r 01 snugly 2 001 \ 00477284 a 0103 | warmly and comfortably sheltered; "sitting snugly by the fireside while the storm raged" -00193652 02 r 01 visibly 1 001 \ 02515341 a 0101 | so as to be visible; "the sign was visibly displayed" -00193759 02 r 01 conceivably 0 001 \ 02418249 a 0101 | within the realm of possibility; "the weather may conceivably change" -00193886 02 r 01 strikingly 0 001 \ 01284212 a 0103 | in a striking manner; "this was strikingly demonstrated"; "the evidence was strikingly absent" -00194037 02 r 01 meticulously 0 001 \ 01838529 a 0101 | in a meticulous manner; "the set was meticulously authentic" -00194156 02 r 02 graciously 0 gracefully 1 004 ! 00194362 r 0202 \ 01142069 a 0202 ! 00194362 r 0101 \ 01141743 a 0101 | in a gracious or graceful manner; "he did not have a chance to grow up graciously" -00194362 02 r 04 ungraciously 0 ungracefully 1 gracelessly 1 woodenly 0 005 \ 01141595 a 0401 \ 00851329 a 0302 ! 00194156 r 0202 \ 01141242 a 0202 ! 00194156 r 0101 | without grace; rigidly; "they moved woodenly" -00194578 02 r 03 rigidly 0 stiffly 1 bolt 1 002 \ 01023706 a 0202 \ 01023706 a 0101 | in a rigid manner; "the body was rigidly erect"; "he sat bolt upright" -00194737 02 r 01 awkwardly 0 001 \ 01140514 a 0101 | in an awkward manner; "he bent awkwardly" -00194834 02 r 01 bewilderedly 0 001 \ 01766133 a 0104 | in a bewildered manner -00194915 02 r 01 triumphantly 0 001 \ 00704898 a 0107 | in a triumphant manner; "she shouted triumphantly" -00195024 02 r 02 regularly 0 on_a_regular_basis 0 002 ! 00195185 r 0101 \ 01959294 a 0101 | in a regular manner; "letters arrived regularly from his children" -00195185 02 r 02 irregularly 0 on_an_irregular_basis 0 002 ! 00195024 r 0101 \ 01960656 a 0101 | in an irregular manner; "her letters arrived irregularly" -00195342 02 r 01 universally 0 000 | everywhere; "people universally agree on this" -00195428 02 r 01 ideally 0 001 \ 01751201 a 0101 | in an ideal manner; "ideally, this will remove all problems" -00195542 02 r 02 mistakenly 0 erroneously 0 002 \ 00632949 a 0201 \ 00633235 a 0102 | in a mistaken manner; "he mistakenly believed it" -00195680 02 r 01 childishly 0 001 \ 01493016 a 0101 | in a childlike manner; "he acted very childishly" -00195786 02 r 01 needlessly 0 001 \ 01582049 a 0102 | without need; "it would needlessly bring badness into the world" -00195907 02 r 02 tantalizingly 0 invitingly 0 002 \ 01358363 a 0201 \ 01358846 a 0101 | in a tantalizing manner; "she smiled at him tantalizingly" -00196056 02 r 01 improperly 0 002 \ 01880531 a 0101 ! 00196203 r 0101 | in an improper way; "he checked whether the wound had healed improperly" -00196203 02 r 06 properly 0 decently 2 decent 0 in_good_order 0 right 1 the_right_way 0 002 ! 00196056 r 0101 \ 01878466 a 0101 | in the right manner; "please do your job properly!"; "can't you carry me decent?" -00196417 02 r 01 attentively 0 001 \ 00163592 a 0101 | with attention; in an attentive manner; "he listened attentively" -00196540 02 r 04 enormously 0 tremendously 0 hugely 0 staggeringly 0 002 \ 01676517 a 0208 \ 01385255 a 0101 | extremely; "he was enormously popular" -00196692 02 r 03 liberally 1 munificently 0 generously 0 003 \ 01111016 a 0301 \ 01111965 a 0202 \ 01111418 a 0108 | in a generous manner; "he gave liberally to several charities" -00196874 02 r 01 liberally 0 001 \ 00916199 a 0103 | freely in a nonliteral manner; "he embellished his stories liberally" -00196999 02 r 01 effortlessly 0 001 \ 00749749 a 0102 | without effort or apparent effort; "she danced gracefully and effortlessly"; "swallows gliding effortlessly through the air" -00197182 02 r 01 o'clock 0 000 | according to the clock; "it's three o'clock in Tokyo now" -00197275 02 r 01 in_detail 0 000 | thoroughly (including all important particulars); "he studied the snake in detail" -00197395 02 r 02 handily 1 conveniently 0 003 ! 00197561 r 0201 \ 00604617 a 0201 \ 00604897 a 0101 | in a convenient manner; "the switch was conveniently located" -00197561 02 r 01 inconveniently 0 002 ! 00197395 r 0102 \ 00605128 a 0101 | in an inconvenient manner; "he arrived at an inconveniently late hour" -00197710 02 r 01 jointly 2 000 | in collaboration or cooperation; "this paper was written jointly" -00197811 02 r 01 concretely 0 002 ! 00197947 r 0101 \ 00013160 a 0101 | in concrete terms; "concretely, this meant that he was broke" -00197947 02 r 01 abstractly 0 002 ! 00197811 r 0101 \ 00011757 a 0101 | in abstract terms -00198039 02 r 02 all_over 1 over 5 000 | over the entire area; "the wallpaper was covered all over with flowers"; "she ached all over"; "everything was dusted over with a fine layer of soot" -00198232 02 r 02 kinesthetically 0 kinaesthetically 0 001 \ 02870453 a 0101 | in a kinesthetic manner; by means of kinesthesia; "he can perceive shapes kinesthetically" -00198403 02 r 02 tactually 0 haptically 0 002 \ 02869097 a 0201 \ 02869097 a 0103 | by touch; "he perceives shapes tactually" -00198531 02 r 01 convulsively 0 001 \ 02303754 a 0101 | with convulsions, in a convulsive way; "her leg twitched convulsively" -00198661 02 r 03 rebelliously 0 contumaciously 0 defiantly 0 003 \ 00695523 a 0301 \ 02330574 a 0201 \ 02331088 a 0101 | in a rebellious manner; "he rejected her words rebelliously" -00198845 02 r 06 stubbornly 0 pig-headedly 0 obdurately 0 mulishly 0 obstinately 0 cussedly 0 006 \ 01957712 a 0601 \ 01957712 a 0503 \ 02328297 a 0402 \ 01957712 a 0302 \ 02327428 a 0203 \ 02326695 a 0101 | in a stubborn unregenerate manner; "she remained stubbornly in the same position" -00199137 02 r 01 wrongheadedly 0 001 \ 00633937 a 0101 | in a wrongheaded manner -00199220 02 r 01 drunkenly 0 001 \ 00798491 a 0103 | showing effects of much strong drink; "He sang drunkenly" -00199333 02 r 01 raucously 0 001 \ 00300359 a 0101 | with a raucous sound; "his voice rang raucously" -00199437 02 r 01 victoriously 0 001 \ 00695209 a 0102 | in a victorious manner; "Virginia had defended her land victoriously" -00199565 02 r 01 fearfully 0 002 ! 00199687 r 0101 \ 00079485 a 0101 | in fear, "she hurried down the stairs fearfully" -00199687 02 r 03 fearlessly 0 dauntlessly 0 intrepidly 0 004 \ 00250119 a 0306 \ 00250119 a 0203 ! 00199565 r 0101 \ 00081671 a 0102 | without fear; "fearlessly, he led the troops into combat" -00199882 02 r 01 thankfully 0 000 | let us be thankful that; "thankfully he didn't come to the party" -00199986 02 r 02 thankfully 1 gratefully 0 002 \ 01146493 a 0201 \ 01146493 a 0102 | in a thankful manner; with thanks; "he accepted thankfully my apologies" -00200146 02 r 01 hopefully 1 000 | it is hoped; "hopefully the weather will be fine on Sunday" -00200243 02 r 01 hopefully 0 002 ! 00200392 r 0101 \ 01228530 a 0101 | with hope; in a hopeful manner; "we searched hopefully for a good position" -00200392 02 r 01 hopelessly 0 002 ! 00200243 r 0101 \ 01229020 a 0101 | without hope; desperate because there seems no possibility of comfort or success; "he hung his head hopelessly"; "`I must die,' he said hopelessly" -00200614 02 r 01 hopelessly 1 002 ;u 07075172 n 0000 \ 01127440 a 0101 | in a hopeless manner; "the papers were hopelessly jumbled"; "he is hopelessly romantic" -00200777 02 r 02 eagerly 0 thirstily 1 002 \ 00888200 a 0203 \ 00810916 a 0101 | with eagerness; in an eager manner; "the news was eagerly awaited" -00200927 02 r 01 reportedly 0 001 \ 00471348 a 0101 | according to reports or other information; "she was reportedly his mistress for many years" -00201075 02 r 01 maliciously 0 001 \ 00224731 a 0101 | with malice; in a malicious manner; "she answered maliciously" -00201195 02 r 03 viciously 0 brutally 0 savagely 0 002 \ 01263013 a 0306 \ 01263013 a 0107 | in a vicious manner; "he was viciously attacked" -00201339 02 r 01 spitefully 0 001 \ 00225099 a 0102 | with spite; in a spiteful manner; "he answered his accusers spitefully" -00201467 02 r 01 savagely 2 001 \ 02389520 a 0103 | wildly; like an animal; "she cried out savagely" -00201570 02 r 02 wisely 0 sagely 0 003 \ 02570183 a 0201 ! 00201733 r 0101 \ 02569130 a 0101 | in a wise manner; "she acted wisely when she invited her parents" -00201733 02 r 02 foolishly 0 unwisely 0 002 ! 00201570 r 0101 \ 02570282 a 0101 | without good sense or judgment; "He acted foolishly when he agreed to come" -00201893 02 r 02 fatuously 0 inanely 0 002 \ 02571277 a 0203 \ 02571277 a 0102 | vacuously or complacently and unconsciously foolish -00202028 02 r 01 intelligently 0 002 ! 00202185 r 0101 \ 01334398 a 0101 | in an intelligent manner; "she acted intelligently in this difficult situation" -00202185 02 r 01 unintelligently 0 002 ! 00202028 r 0101 \ 01336587 a 0101 | in an unintelligent manner; "he acted rather unintelligently in this crisis" -00202341 02 r 03 intelligibly 0 clearly 1 understandably 0 004 \ 00532892 a 0301 \ 00428404 a 0201 ! 00202554 r 0101 \ 01336926 a 0101 | in an intelligible manner; "the foreigner spoke to us quite intelligibly" -00202554 02 r 02 unintelligibly 0 ununderstandably 0 002 ! 00202341 r 0101 \ 01337121 a 0101 | in an unintelligible manner; "the foreigners spoke unintelligibly" -00202718 02 r 01 aerially 0 001 \ 01380267 a 0101 | by means of aircraft; "the survey was carried out aerially" -00202833 02 r 01 alphabetically 0 001 \ 02614194 a 0102 | in alphabetical order; "the list was arranged alphabetically" -00202955 02 r 01 aristocratically 0 001 \ 01590484 a 0101 | in an aristocratic manner; "they behaved aristocratically" -00203076 02 r 01 autocratically 0 001 \ 00787595 a 0101 | in an autocratic manner; "the Czars ruled Russia autocratically" -00203201 02 r 01 diplomatically 0 002 ! 00203353 r 0101 \ 00758459 a 0101 | with diplomacy; in a diplomatic manner; "he answered very diplomatically" -00203353 02 r 01 undiplomatically 0 002 ! 00203201 r 0101 \ 00758459 a 0101 | without diplomacy; in an undiplomatic manner; "she declined the invitation undiplomatically" -00203526 02 r 01 socioeconomically 0 001 \ 02717021 a 0101 | with respect to socioeconomic factors; "they are far apart socioeconomically" -00203667 02 r 01 stoutly 0 001 \ 01991586 a 0102 | in a resolute manner; "he was stoutly replying to his critics" -00203783 02 r 01 indefinitely 0 001 \ 00701479 a 0101 | to an indefinite extent; for an indefinite time; "this could go on indefinitely" -00203922 02 r 03 correctly 1 right 2 aright 0 003 ! 00204125 r 0202 \ 00023278 a 0202 ! 00204125 r 0101 | in an accurate manner; "the flower had been correctly depicted by his son"; "he guessed right" -00204125 02 r 03 incorrectly 1 wrongly 0 wrong 0 004 ! 00203922 r 0202 \ 00023854 a 0203 ! 00203922 r 0101 \ 00023854 a 0102 | in an inaccurate manner; "he decided to reveal the details only after other sources had reported them incorrectly"; "she guessed wrong" -00204390 02 r 01 inaccessibly 0 001 \ 00019874 a 0101 | in an inaccessible manner; "located inaccessibly on the top of a mountain" -00204523 02 r 01 accurately 1 002 ! 00204643 r 0101 \ 00021766 a 0101 | with few mistakes; "he works very accurately" -00204643 02 r 01 inaccurately 0 002 ! 00204523 r 0101 \ 00023383 a 0101 | in an inaccurate manner; "this student works rather inaccurately and sloppily" -00204798 02 r 01 accurately 2 001 \ 00631798 a 0101 | strictly correctly; "repeated the order accurately" -00204906 02 r 01 wrongly 3 001 \ 02035337 a 0101 | without justice or fairness; "wouldst not play false and yet would wrongly win"- Shakespeare -00205052 02 r 01 right 4 000 | precisely, exactly; "stand right here!" -00205125 02 r 01 right 7 000 | completely; "she felt right at home"; "he fell right into the trap" -00205226 02 r 02 justly 0 right 5 001 \ 01369663 a 0101 | in accordance with moral or social standards; "that serves him right"; "do right by him" -00205375 02 r 03 rightly 0 justly 1 justifiedly 0 003 ! 00205561 r 0201 \ 01369663 a 0201 \ 02034828 a 0101 | with honesty; "he was rightly considered the greatest singer of his time" -00205561 02 r 01 unjustly 0 002 ! 00205375 r 0102 \ 01370590 a 0101 | in an unjust manner; "he was unjustly singled out for punishment" -00205699 02 r 01 charitably 0 001 \ 00359459 a 0101 | in a charitable manner; "she treated him charitably" -00205808 02 r 01 aimlessly 0 001 \ 01910652 a 0103 | without aim; in an aimless manner; "he wandered around aimlessly" -00205929 02 r 01 sluggishly 0 001 \ 00981703 a 0101 | in a sluggish manner; "the smoke rose sluggishly" -00206035 02 r 01 trustfully 2 001 \ 02462619 a 0101 | in a trustful manner; "his mouth grinned trustfully" -00206144 02 r 02 darkly 0 in_darkness 0 001 \ 00273082 a 0101 | without light; "the river was sliding darkly under the mist" -00206271 02 r 01 darkly 1 001 \ 01137378 a 0101 | in a dark glowering menacing manner; "he stared darkly at her" -00206386 02 r 01 astray 0 000 | away from the right path or direction; "he was led astray" -00206479 02 r 03 hurriedly 0 hastily 0 in_haste 1 003 \ 01270704 a 0201 ! 00206749 r 0101 \ 01270175 a 0101 | in a hurried or hasty manner; "the way they buried him so hurriedly was disgraceful"; "hastily, he scanned the headlines"; "sold in haste and at a sacrifice" -00206749 02 r 01 unhurriedly 0 002 ! 00206479 r 0101 \ 01271700 a 0101 | without haste; "she proceeded unhurriedly" -00206867 02 r 01 hotfoot 0 000 | without delay; speedily; "sent ambassadors hotfoot to the Turks"- Francis Hackett; "drove hotfoot for Boston" -00207012 02 r 01 restlessly 0 001 \ 01922562 a 0101 | in a restless manner; "he cracked his knuckles restlessly" -00207127 02 r 01 financially 0 001 \ 02847894 a 0102 | from a financial point of view; "this was financially unattractive" -00207252 02 r 01 psychically 0 001 \ 01780740 a 0101 | from a psychic point of view; "he was psychically blind" -00207366 02 r 01 today 0 000 | on this day as distinct from yesterday or tomorrow; "I can't meet with you today" -00207481 02 r 01 ornamentally 0 001 \ 01091234 a 0103 | in an ornamental, nonfunctional manner -00207578 02 r 01 ornately 0 000 | in an ornate manner; "the cradle was ornately carved" -00207668 02 r 06 individually 0 separately 2 singly 1 severally 0 one_by_one 1 on_an_individual_basis 0 003 \ 00493460 a 0302 \ 02109678 a 0201 \ 00493460 a 0101 | apart from others; "taken individually, the rooms were, in fact, square"; "the fine points are treated singly" -00207945 02 r 03 binaurally 0 to_both_ears 0 in_both_ears 0 002 ! 00208111 r 0101 \ 00240417 a 0101 | in a binaural manner; "the stimulus was presented binaurally" -00208111 02 r 03 monaurally 0 to_one_ear 0 in_one_ear 0 002 ! 00207945 r 0101 \ 00240842 a 0101 | in a monaural manner; "the stimuli were presented monaurally" -00208273 02 r 01 busily 0 001 \ 00292937 a 0101 | in a busy manner; "they were busily engaged in buying souvenirs" -00208390 02 r 02 prominently 0 conspicuously 1 002 \ 00579084 a 0201 \ 00580805 a 0102 | in a prominent way; "the new car was prominently displayed in the driveway" -00208557 02 r 04 inescapably 0 ineluctably 0 inevitably 2 unavoidably 0 004 \ 00343360 a 0403 \ 00343015 a 0301 \ 00343360 a 0201 \ 00343360 a 0102 | by necessity; "the situation slid inescapably toward disaster " -00208773 02 r 03 helplessly 0 impotently 0 unable_to_help 0 002 \ 01824751 a 0201 \ 01827946 a 0101 | in a helpless manner; "the crowd watched him helplessly" -00208934 02 r 01 imaginatively 0 002 ! 00209073 r 0101 \ 00643863 a 0101 | with imagination; "the room was decorated very imaginatively" -00209073 02 r 01 unimaginatively 0 002 ! 00208934 r 0101 \ 00644560 a 0102 | without imagination; "the stage sets were designed rather unimaginatively" -00209227 02 r 02 bewilderingly 0 confusingly 0 001 \ 00430756 a 0201 | in a bewildering and confusing manner; "her situation was bewilderingly unclear" -00209381 02 r 01 heartily 3 001 \ 00523479 a 0101 | with gusto and without reservation; "the boy threw himself heartily into his work" -00209518 02 r 03 unashamedly 0 shamelessly 0 barefacedly 0 004 \ 00155144 a 0302 \ 00155720 a 0201 ! 00266393 r 0101 \ 00154965 a 0101 | without shame; "he unashamedly abandoned the project when he realized he would not gain from it" -00209754 02 r 01 monolingually 0 001 \ 01545427 a 0101 | in a monolingual manner; "she had been reared monolingually" -00209874 02 r 01 passionately 0 001 \ 01725712 a 0101 | with passion; "she kissed him passionately" -00209976 02 r 02 spectacularly 0 stunningly 0 002 \ 01282921 a 0203 \ 01284212 a 0102 | in a spectacular manner; "the area was spectacularly scenic" -00210127 02 r 01 understandingly 0 001 \ 01745946 a 0101 | with understanding; "she nodded understandingly" -00210237 02 r 01 soulfully 0 001 \ 00856651 a 0101 | in a soulful manner; "he looked at her soulfully" -00210342 02 r 01 satirically 0 001 \ 02080110 a 0101 | in a satirical manner; "she spoke satirically" -00210446 02 r 02 smoothly 0 swimmingly 0 001 \ 00750926 a 0101 | with no problems or difficulties; "put the plans into effect quickly and smoothly"; "despite of some mishaps, everything went swimmingly" -00210651 02 r 01 freely 0 001 \ 01061489 a 0101 | in a free manner; "the painting featured freely brushed strokes" -00210768 02 r 01 habitually 0 001 \ 00489491 a 0103 | according to habit or custom; "her habitually severe expression"; "he habitually keeps his office door closed" -00210935 02 r 01 routinely 0 000 | according to routine or established practice; "he routinely parked in a no-parking zone" -00211061 02 r 01 customarily 0 001 \ 00489491 a 0102 | by custom; according to common practice; "children are custosby-the-waymarily expected to be seen but not heard" -00211231 02 r 02 humiliatingly 0 demeaningly 0 002 \ 00752555 a 0201 \ 00752555 a 0103 | in a humiliating manner; "the painting was reproduced humiliatingly small" -00211397 02 r 01 protectively 0 001 \ 02449177 a 0101 | in a protective manner; "he bent protectively over the woman" -00211517 02 r 01 spiritually 0 001 \ 00631193 a 0101 | in a spiritual manner; "the ninth century was the spiritually freest period" -00211651 02 r 02 sharply 1 crisply 0 002 \ 00780352 a 0201 \ 00780352 a 0102 | in a well delineated manner; "the new style of Minoan pottery was sharply defined" -00211815 02 r 02 dimly 0 indistinctly 0 002 \ 00781168 a 0201 \ 00782216 a 0101 | in a dim indistinct manner; "we perceived the change only dimly" -00211964 02 r 02 dimly 2 murkily 0 001 \ 00275290 a 0101 | with a dim light; "a dimly lit room" -00212062 02 r 01 unmistakably 0 001 \ 00429909 a 0101 | without possibility of mistake; "this watercolor is unmistakably a synthesis of nature" -00212208 02 r 03 determinedly 0 unfalteringly 0 unshakably 0 003 \ 01990653 a 0307 \ 01990653 a 0206 \ 01990373 a 0101 | with determination; in a determined manner; "he clung to the past determinedly" -00212411 02 r 02 incidentally 1 accidentally 3 001 \ 01856929 a 0101 | of a minor or subordinate nature; "these magnificent achievements were only incidentally influenced by Oriental models" -00212604 02 r 02 ever 5 ever_so 0 001 ;u 06321054 n 0000 | (intensifier for adjectives) very; "she was ever so friendly" -00212727 02 r 01 confidently 0 001 \ 00338817 a 0101 | with confidence; in a confident manner; "we have to do what is right confidently" -00212866 02 r 01 retroactively 0 001 \ 01884744 a 0102 | after the fact; "he will get paid retroactively" -00212974 02 r 02 sporadically 0 periodically 0 002 \ 01967240 a 0202 \ 00593374 a 0101 | in a sporadic manner; "he only works sporadically" -00213116 02 r 01 haltingly 0 000 | in a halting manner; "he spoke haltingly" -00213195 02 r 01 half-and-half 0 001 \ 00891468 a 0101 | in equal parts; "it was divided half-and-half" -00213301 02 r 03 amazingly 0 surprisingly 1 astonishingly 0 003 \ 02359789 a 0302 \ 02359464 a 0201 \ 02359789 a 0101 | in an amazing manner; to everyone's surprise; "amazingly, he finished medical school in three years" -00213524 02 r 02 impressively 0 imposingly 0 003 \ 01283508 a 0202 ! 00213700 r 0101 \ 01282014 a 0101 | in an impressive manner; "the students progressed impressively fast" -00213700 02 r 01 unimpressively 0 002 ! 00213524 r 0101 \ 01286539 a 0101 | in an unimpressive manner; "she scored unimpressively low in the first round of the competition" -00213875 02 r 03 productively 0 fruitfully 0 profitably 0 004 ! 00214084 r 0303 ! 00214084 r 0202 ! 00214084 r 0101 \ 01865197 a 0101 | in a productive way; "they worked together productively for two years" -00214084 02 r 03 unproductively 0 fruitlessly 0 unprofitably 0 006 ! 00213875 r 0303 \ 01871949 a 0301 ! 00213875 r 0202 \ 01866812 a 0202 ! 00213875 r 0101 \ 01866535 a 0101 | in an unproductive manner -00214289 02 r 02 expertly 0 like_an_expert 0 002 \ 02226162 a 0102 ! 00214433 r 0101 | in an expert manner; "he repaired the TV set expertly" -00214433 02 r 01 amateurishly 0 001 ! 00214289 r 0101 | in an amateurish manner; "he performed the piece amateurishly" -00214554 02 r 04 abundantly 0 copiously 0 profusely 0 extravagantly 2 002 \ 00014858 a 0201 \ 00013887 a 0101 | in an abundant manner; "they were abundantly supplied with food"; "he thanked her profusely" -00214761 02 r 01 interestingly 1 002 ! 00214942 r 0101 \ 01343918 a 0101 | in an interesting manner; "when he ceases to be just interestingly neurotic and...gets locked up"- Time -00214942 02 r 01 uninterestingly 0 002 ! 00214761 r 0101 \ 01344963 a 0101 | in an uninteresting manner -00215048 02 r 03 boringly 0 tediously 0 tiresomely 0 003 \ 01345307 a 0308 \ 01345307 a 0207 \ 01345307 a 0101 | in a tedious manner; "boringly slow work"; "he plodded tediously forward" -00215237 02 r 01 moderately 1 002 ! 00215373 r 0101 \ 01531375 a 0101 | with moderation; in a moderate manner; "he drinks moderately" -00215373 02 r 01 immoderately 0 002 ! 00215237 r 0101 \ 01533120 a 0101 | without moderation; in an immoderate manner; "he eats immoderately" -00215517 02 r 01 realistically 1 002 ! 00215661 r 0101 \ 01939984 a 0101 | in a realistic manner; "let's look at the situation realistically" -00215661 02 r 01 unrealistically 0 002 ! 00215517 r 0101 \ 01941999 a 0101 | in an unrealistic manner; "his expectations were unrealistically high" -00215811 02 r 03 sanely 0 sensibly 0 reasonably 1 004 ! 00216100 r 0301 \ 01926229 a 0301 \ 01943406 a 0202 \ 01926229 a 0102 | with good sense or in a reasonable or intelligent manner; "he acted sensibly in the crisis"; "speak more sanely about these affairs"; "acted quite reasonably" -00216100 02 r 01 unreasonably 1 002 ! 00215811 r 0103 \ 01944660 a 0101 | not in a reasonable or intelligent manner; "she reacted unreasonably when she learned she had failed" -00216278 02 r 02 stepwise 0 step_by_step 1 000 | proceeding in steps; "the voltage was increased stepwise" -00216387 02 r 01 stolidly 0 001 \ 00857560 a 0102 | in a stolid manner; "he said `no' stolidly" -00216485 02 r 01 supremely 0 001 \ 01495912 a 0101 | to the maximum degree; "he was supremely confident" -00216592 02 r 04 testily 0 irritably 1 petulantly 0 pettishly 0 004 \ 01136541 a 0407 \ 01136541 a 0308 \ 01136541 a 0203 \ 01136541 a 010a | in a petulant manner; "he said testily; `Go away!'" -00216788 02 r 01 thoughtfully 0 002 ! 00216964 r 0101 \ 00639230 a 0101 | showing consideration and thoughtfulness; "he had thoughtfully brought with him some food to share" -00216964 02 r 01 thoughtlessly 0 002 ! 00216788 r 0101 \ 00639594 a 0101 | showing thoughtlessness; "he treated his parents thoughtlessly" -00217105 02 r 01 thoughtfully 1 002 ! 00217245 r 0101 \ 02418872 a 0101 | in a thoughtful manner; "he stared thoughtfully out the window" -00217245 02 r 03 thoughtlessly 1 unthinkingly 0 unthinking 0 003 \ 02421003 a 0202 ! 00217105 r 0101 \ 02420530 a 0101 | in a thoughtless manner; "he stared thoughtlessly at the picture" -00217434 02 r 02 auspiciously 0 propitiously 0 004 ! 00217640 r 0202 \ 00177186 a 0201 ! 00217640 r 0101 \ 00176150 a 0101 | in an auspicious manner; "he started his new job auspiciously on his birthday" -00217640 02 r 02 inauspiciously 0 unpropitiously 0 004 ! 00217434 r 0202 \ 00177963 a 0201 ! 00217434 r 0101 \ 00176838 a 0101 | in an inauspicious manner; "he started his new job inauspiciously on Friday the 13th" -00217857 02 r 02 relentlessly 0 unrelentingly 0 002 \ 00593071 a 0203 \ 00593071 a 0102 | in a relentless manner; "he worked relentlessly" -00217998 02 r 03 ruefully 0 contritely 0 remorsefully 0 003 \ 01743506 a 0302 \ 01743506 a 0201 \ 01743506 a 0103 | in a rueful manner; "`I made a big mistake,' he said ruefully" -00218179 02 r 01 head-on 0 000 | with the front foremost; "the cars collided head-on" -00218267 02 r 01 head-on 1 000 | in direct opposition; directly; "we must meet the problem head-on" -00218369 02 r 01 inexorably 0 001 \ 01785341 a 0102 | in an inexorable manner; "time marches on inexorably" -00218479 02 r 02 politely 0 courteously 0 004 \ 00641460 a 0201 ! 00218681 r 0202 ! 00218681 r 0101 \ 00641158 a 0101 | in a polite manner; "the policeman answered politely, `Now look here, lady...'" -00218681 02 r 03 impolitely 0 discourteously 0 rudely 0 005 \ 00641944 a 0303 ! 00218479 r 0202 \ 00642152 a 0201 ! 00218479 r 0101 \ 00641640 a 0101 | in an impolite manner; "he treated her impolitely" -00218886 02 r 04 admirably 0 laudably 0 praiseworthily 0 commendable 0 004 \ 02585545 a 0402 \ 02585545 a 0304 \ 02585545 a 0203 \ 00904290 a 0101 | in an admirable manner; "the children's responses were admirably normal" -00219110 02 r 03 pleasantly 0 agreeably 0 enjoyably 0 005 \ 01801029 a 0301 ! 00312603 r 0201 \ 00089051 a 0201 ! 00219503 r 0101 \ 01800349 a 0101 | in an enjoyable manner; "we spent a pleasantly lazy afternoon" -00219325 02 r 03 pleasantly 1 cheerily 0 sunnily 0 003 \ 00363938 a 0303 \ 00363938 a 0201 \ 01586866 a 0101 | in a cheerful manner; "`I'll do the dishes,' he said pleasantly" -00219503 02 r 01 unpleasantly 0 002 ! 00219110 r 0101 \ 01801600 a 0101 | in an unpleasant manner; "he had been unpleasantly surprised" -00219641 02 r 01 upside_down 0 000 | in an inverted manner; "the box was lying on the floor upside down" -00219748 02 r 01 breathlessly 0 001 \ 00267871 a 0101 | in a breathless manner; "she spoke breathlessly" -00219855 02 r 03 heartily 1 cordially 0 warmly 0 003 \ 02530861 a 0301 \ 02531122 a 0201 \ 02531243 a 0101 | in a hearty manner; "`Yes,' the children chorused heartily"; "We welcomed her warmly" -00220052 02 r 03 affably 0 amiably 0 genially 0 003 \ 01075178 a 0304 \ 01075178 a 0202 \ 01075178 a 0101 | in an affable manner; "`Come and visit me,' he said amiably" -00220223 02 r 01 laughingly 0 000 | with laughter; while laughing; "he told the story laughingly" -00220323 02 r 02 ambiguously 0 equivocally 0 003 \ 00895442 a 0201 ! 00220490 r 0101 \ 00102201 a 0101 | in an ambiguous manner; "this letter is worded ambiguously" -00220490 02 r 02 unambiguously 1 unequivocally 1 003 \ 00896555 a 0201 ! 00220323 r 0101 \ 00103696 a 0101 | in an unambiguous manner; "she stated her intentions unequivocally" -00220669 02 r 02 ceremonially 0 ritually 0 002 \ 01042491 a 0201 \ 01042491 a 0101 | in a ceremonial manner; "he was ceremonially sworn in as President" -00220824 02 r 01 unceremoniously 0 002 ! 00220966 r 0101 \ 00641036 a 0101 | in an unceremonious manner; "he was dismissed unceremoniously" -00220966 02 r 02 ceremoniously 0 ceremonially 1 002 ! 00220824 r 0101 \ 01042703 a 0101 | in a ceremonious manner; "my mother advised her children ceremoniously" -00221130 02 r 03 rakishly 0 raffishly 0 carelessly 1 002 \ 00971933 a 0205 \ 00971933 a 0106 | in a rakish manner; "she wore her hat rakishly at an angle" -00221287 02 r 02 rollickingly 0 boisterously 0 002 \ 02279360 a 0201 \ 02122132 a 0104 | in a carefree manner; "she was rollickingly happy" -00221429 02 r 01 narrowly 0 002 ! 00221583 r 0101 \ 01415480 a 0101 | in a narrow manner; not allowing for exceptions; "he interprets the law narrowly" -00221583 02 r 04 broadly 0 loosely 2 broadly_speaking 0 generally 0 003 \ 01101391 a 0401 ! 00221429 r 0101 \ 01101891 a 0101 | without regard to specific details or exceptions; "he interprets the law broadly" -00221795 02 r 01 broadly 1 001 \ 02560548 a 0102 | in a wide fashion; "he smiled broadly" -00221887 02 r 01 twirlingly 0 000 | doing twirls; "they had a most twirlingly magnificent time" -00221985 02 r 01 behind 0 000 | in or to or toward the rear; "he followed behind"; "seen from behind, the house is more imposing than it is from the front"; "the final runners were far behind" -00222180 02 r 01 behind 1 000 | remaining in a place or condition that has been left or departed from; "when he died he left much unfinished work behind"; "left a large family behind"; "the children left their books behind"; "he took off with a squeal of tires and left the other cars far behind" -00222479 02 r 03 behind 2 behindhand 0 in_arrears 0 000 | in debt; "he fell behind with his mortgage payments"; "a month behind in the rent"; "a company that has been run behindhand for years"; "in arrears with their utility bills" -00222713 02 r 01 behind 3 000 | in or into an inferior position; "fell behind in his studies"; "their business was lagging behind in the competition for customers" -00222879 02 r 02 behind 4 slow 1 000 | of timepieces; "the clock is almost an hour slow"; "my watch is running behind" -00223000 02 r 02 rightfully 0 truly 1 002 \ 01407267 a 0201 \ 01407267 a 0103 | by right; "baseball rightfully is the nation's pastime" -00223138 02 r 04 in_one's_own_right 0 in_his_own_right 0 in_her_own_right 0 in_its_own_right 0 000 | by reason of one's own ability or ownership etc.; "she's a rich woman in her own right rather than by inheritance"; "an excellent novel in its own right" -00223395 02 r 03 faithfully 0 dependably 0 reliably 0 006 ! 00223635 r 0303 \ 00724081 a 0301 ! 00223635 r 0202 \ 00724081 a 0202 ! 00223635 r 0101 \ 00958880 a 0101 | in a faithful manner; "it always came on, faithfully, like the radio" -00223635 02 r 03 unfaithfully 0 undependably 0 unreliably 0 006 ! 00223395 r 0303 \ 00724861 a 0301 ! 00223395 r 0202 \ 00724861 a 0202 ! 00223395 r 0101 \ 00959731 a 0101 | in an unfaithful undependable unreliable manner -00223859 02 r 01 violently 0 002 ! 00223979 r 0101 \ 02510879 a 0101 | in a violent manner; "they attacked violently" -00223979 02 r 01 nonviolently 0 002 ! 00223859 r 0101 \ 02512922 a 0101 | without violence; "the government was overthrown nonviolently, but the dictator was killed" -00224147 02 r 01 furiously 0 001 \ 00304144 a 0102 | (of the elements) in a wild and stormy manner; "winds were blowing furiously" -00224280 02 r 01 furiously 1 001 \ 00114454 a 0103 | in an impassioned or very angry manner; "she screamed furiously at her tormentors" -00224418 02 r 01 furiously 2 001 \ 02511528 a 0103 | in a manner marked by extreme or violent energy; "the boys fought furiously"; "she went peddling furiously up the narrow street" -00224602 02 r 01 up_and_down 3 000 | alternately upward and downward; "he eyed him up and down" -00224700 02 r 02 securely 0 firmly 3 001 \ 02095311 a 0101 | in a secure manner; in a manner free from danger; "she held the child securely" -00224843 02 r 01 wryly 0 001 \ 01266092 a 0104 | in a wry manner; "`I see,' he commented wryly" -00224941 02 r 02 infinitely 0 endlessly 0 003 \ 01007947 a 0202 ! 00225119 r 0101 \ 01007354 a 0101 | continuing forever without end; "there are infinitely many possibilities" -00225119 02 r 01 finitely 0 002 ! 00224941 r 0101 \ 01006566 a 0101 | with a finite limit; "there are finitely many solutions to this problem" -00225264 02 r 03 boundlessly 0 immeasurably 1 infinitely 1 002 \ 01498957 a 0201 \ 01007657 a 0101 | without bounds; "he is infinitely wealthy" -00225410 02 r 02 rigorously 0 strictly 1 002 \ 00915556 a 0202 \ 00915556 a 0101 | in a rigorous manner; "he had been trained rigorously by the monks" -00225563 02 r 01 plastically 0 001 \ 00844461 a 0103 | in a plastic manner; "he used the clay plastically" -00225672 02 r 04 boastfully 0 vauntingly 0 big 0 large 2 001 \ 01890752 a 0101 | in a boastful manner; "he talked big all evening" -00225805 02 r 01 big 1 000 | in a major way; "the play failed big at the box office" -00225892 02 r 01 big 2 001 ! 00225971 r 0101 | on a grand scale; "think big" -00225971 02 r 01 small 0 001 ! 00225892 r 0101 | on a small scale; "think small" -00226054 02 r 01 big 3 000 | extremely well; "his performance went over big" -00226133 02 r 01 warily 0 002 \ 00162386 a 0101 ! 00226257 r 0101 | in a wary manner; "the sailor watched the sky warily" -00226257 02 r 01 unwarily 0 002 ! 00226133 r 0101 \ 00162990 a 0101 | without heed or caution -00226353 02 r 01 bodily 0 001 \ 02667275 a 0101 | in bodily form; "he was translated bodily to heaven" -00226458 02 r 02 over 0 o'er 0 000 | throughout a period of time; "stay over the weekend" -00226550 02 r 01 over 1 000 | at or to a point across intervening space etc.; "come over and see us some time"; "over there" -00226677 02 r 01 over 2 000 | throughout an area; "he is known the world over" -00226758 02 r 01 over 4 000 | beyond the top or upper surface or edge; forward from an upright position; "a roof that hangs over"; -00226891 02 r 01 editorially 0 001 \ 02717258 a 0101 | by means of an editorial; "the paper commented editorially on the scandal" -00227023 02 r 03 properly_speaking 0 strictly_speaking 0 to_be_precise 0 000 | in actual fact; "properly speaking, they are not husband and wife" -00227171 02 r 01 abnormally 0 001 \ 01595596 a 0101 | in an abnormal manner; "they were behaving abnormally"; "his blood pressure was abnormally low" -00227323 02 r 01 angrily 0 001 \ 00113818 a 0101 | with anger; "he angrily denied the accusation" -00227423 02 r 02 exultantly 0 exultingly 0 002 \ 00704898 a 0202 \ 00704898 a 0101 | in an exultant manner; "it was exultingly easy" -00227558 02 r 01 sedulously 0 001 \ 00754393 a 0102 | in a sedulous manner; "this illusion has been sedulously fostered" -00227681 02 r 01 tenuously 0 001 \ 02164913 a 0104 | in a tenuous manner; "his works tenuously survive in the minds of a few scholars" -00227818 02 r 01 perennially 0 001 \ 00678473 a 0101 | in a perennial manner; repeatedly; "We want to know what is perennially new about the world" -00227968 02 r 01 perpetually 1 001 \ 00595299 a 0105 | everlastingly; for all time; "rays...streaming perpetually from the sun"- Stuart Chase -00228112 02 r 01 anachronistically 0 001 \ 02379925 a 0103 | in an anachronistic manner; "let's look at this phenomenon anachronistically" -00228253 02 r 02 ineptly 0 fecklessly 0 002 \ 00511526 a 0201 \ 00511526 a 0102 | with ineptitude; in an incompetent manner; "he performed his functions ineptly" -00228417 02 r 01 ineptly 1 001 \ 01001180 a 0105 | in an infelicitous manner; "this function is ineptly left to a small voice" -00228546 02 r 02 deliciously 0 pleasurably 0 002 \ 01801029 a 0203 \ 01807964 a 0102 | in a very pleasurable manner; "they were walking along the beach slowly and deliciously" -00228724 02 r 01 mentally 0 001 \ 01779986 a 0101 | in your mind; "he suffered mentally" -00228815 02 r 01 roundly 0 001 \ 02040652 a 0101 | in a round manner; "she was roundly slim" -00228910 02 r 03 shyly 0 timidly 0 bashfully 0 003 \ 00252130 a 0301 \ 00251809 a 0201 \ 00339941 a 0102 | in a shy or timid or bashful manner; "he smiled shyly" -00229074 02 r 02 fondly 0 lovingly 0 002 \ 01463965 a 0201 \ 01464433 a 0103 | with fondness; with love; "she spoke to her children fondly" -00229216 02 r 01 abed 0 000 | in bed -00229255 02 r 01 noisily 0 002 ! 00229399 r 0101 \ 01919931 a 0101 | with much noise or loud and unpleasant sound; "he blew his nose noisily" -00229399 02 r 01 quietly 1 002 ! 00229255 r 0101 \ 01918984 a 0101 | with little or no sound; "the class was listening quietly and intently"; "she was crying quietly" -00229568 02 r 02 quietly 2 quiet 0 002 ! 00229861 r 0101 \ 01922763 a 0101 | with little or no activity or no agitation (`quiet' is a nonstandard variant for `quietly'); "her hands rested quietly in her lap"; "the rock star was quietly led out the back door"; "sit here as quiet as you can" -00229861 02 r 01 unquietly 0 002 ! 00229568 r 0101 \ 01923391 a 0101 | with agitation or turbulence -00229963 02 r 01 unqualifiedly 0 001 \ 01913715 a 0101 | without qualification or limitation -00230058 02 r 01 outwardly 0 002 ! 00230189 r 0101 \ 00950706 a 0101 | in outward appearance; "outwardly, she appeared composed" -00230189 02 r 02 inwardly 0 inside 3 002 ! 00230058 r 0101 \ 00951247 a 0101 | with respect to private feelings; "inwardly, she was raging" -00230331 02 r 02 outwardly 1 externally 0 000 | with respect to the outside; "outwardly, the figure is smooth" -00230444 02 r 02 favorably 0 favourably 0 002 ! 00230581 r 0101 \ 00995775 a 0101 | showing approval; "he reviewed the play favorably" -00230581 02 r 02 unfavorably 0 unfavourably 0 002 ! 00230444 r 0101 \ 00996448 a 0101 | showing disapproval; in a disparaging way; "he reviewed the play unfavorably" -00230749 02 r 01 cheerfully 0 002 ! 00230877 r 0101 \ 01664015 a 0103 | in a cheerful manner; "he cheerfully agreed to do it" -00230877 02 r 01 cheerlessly 0 001 ! 00230749 r 0101 | in an unhappy manner; "he cheerlessly set out to do the task" -00230996 02 r 02 flawlessly 0 cleanly 0 002 \ 00061664 a 0201 \ 01751080 a 0101 | in an adroit manner; "he bounced it cleanly off the wall" -00231138 02 r 01 solidly 0 001 \ 02275412 a 0101 | with strength and soundness; "a solidly built house" -00231244 02 r 01 foursquare 1 000 | in a square position; "the building stood foursquare" -00231336 02 r 01 solidly 2 001 \ 00784215 a 0101 | as an undiversified whole; "the unions voted solidly for Roosevelt" -00231457 02 r 03 laconically 0 dryly 0 drily 0 003 \ 01266092 a 0301 \ 01266092 a 0201 \ 00547641 a 0103 | in a dry laconic manner; "I know that," he said dryly -00231620 02 r 02 obligingly 0 accommodatingly 0 002 \ 00020787 a 0201 \ 00021110 a 0102 | in accommodation; "obligingly, he lowered his voice" -00231765 02 r 01 voluntarily 0 002 ! 00231916 r 0101 \ 02520219 a 0101 | out of your own free will; "he voluntarily submitted to the fingerprinting" -00231916 02 r 01 involuntarily 0 002 ! 00231765 r 0101 \ 02521353 a 0101 | against your will; "he was involuntarily held against his will" -00232057 02 r 01 unerringly 0 001 \ 00965359 a 0103 | without making errors; "he unerringly fixed things for us" -00232172 02 r 01 geographically 0 001 \ 03021543 a 0101 | with respect to geography; "they are geographically closer to the center of town" -00232314 02 r 01 gloomily 0 001 \ 00703615 a 0101 | with gloom; "such a change is gloomily foreseen by many" -00232425 02 r 01 cruelly 0 000 | excessively; "a cruelly bitter winter" -00232499 02 r 01 cruelly 1 001 \ 01263013 a 0103 | with cruelty; "he treated his students cruelly" -00232600 02 r 02 vaguely 0 mistily 1 001 \ 00431004 a 0102 | in a vague way; "he looked vaguely familiar"; "he explained it somewhat mistily" -00232744 02 r 01 pompously 0 001 \ 01849960 a 0103 | in a pompous manner; "he pompously described his achievements" -00232862 02 r 01 out 2 000 | away from home; "they went out last night" -00232936 02 r 03 away 0 off 3 forth 0 001 ;u 07073447 n 0000 | from a particular thing or place or position (`forth' is obsolete); "ran away from the lion"; "wanted to get away from there"; "sent the children away to boarding school"; "the teacher waved the children away from the dead animal"; "went off to school"; "they drove off"; "go forth and preach" -00233295 02 r 02 away 1 out 3 000 | from one's possession; "he gave out money to the poor"; "gave away the tickets" -00233413 02 r 01 out 4 000 | moving or appearing to move away from a place, especially one that is enclosed or hidden; "the cat came out from under the bed"; -00233573 02 r 01 out_of 0 000 | motivated by; "idleness is the trait of being idle out of a reluctance to work" -00233687 02 r 03 aside 3 by 1 away 2 000 | in reserve; not for immediate use; "started setting aside money to buy a car"; "put something by for her old age"; "has a nest egg tucked away for a rainy day" -00233892 02 r 01 aside 0 000 | on or to one side; "step aside"; "stood aside to let him pass"; "threw the book aside"; "put her sewing aside when he entered" -00234052 02 r 02 aside 1 away 3 000 | out of the way (especially away from one's thoughts); "brush the objections aside"; "pushed all doubts away" -00234201 02 r 02 aside 5 apart 6 000 | placed or kept separate and distinct as for a purpose; "had a feeling of being set apart"; "quality sets it apart"; "a day set aside for relaxing" -00234389 02 r 01 apart 7 000 | away from another or others; "they grew apart over the years"; "kept apart from the group out of shyness"; "decided to live apart" -00234553 02 r 01 away 4 000 | out of existence; "the music faded away"; "tried to explain away the affair of the letter"- H.E.Scudder; "idled the hours away"; "her fingernails were worn away" -00234747 02 r 01 away 5 000 | indicating continuing action; continuously or steadily; "he worked away at the project for more than a year"; "the child kept hammering away as if his life depended on it" -00234951 02 r 02 away 6 aside 6 000 | in a different direction; "turn aside"; "turn away one's face"; "glanced away" -00235070 02 r 01 away 7 000 | in or into a proper place (especially for storage or safekeeping); "put the toys away"; "her jewels are locked away in a safe"; "filed the letter away" -00235254 02 r 02 off 0 away 8 000 | at a distance in space or time; "the boat was 5 miles off (or away)"; "the party is still 2 weeks off (or away)"; "away back in the 18th century" -00235438 02 r 01 away 9 000 | so as to be removed or gotten rid of; "cleared the mess away"; "the rotted wood had to be cut away" -00235570 02 r 01 away a 000 | freely or at will; "fire away!" -00235634 02 r 01 seriatim 0 000 | in a series; one after another -00235701 02 r 02 doggedly 0 tenaciously 0 002 \ 02327569 a 0205 \ 02327569 a 0101 | with obstinate determination; "he pursued her doggedly" -00235843 02 r 02 efficiently 0 expeditiously 0 003 \ 00840510 a 0201 ! 00236020 r 0101 \ 00510644 a 0102 | with efficiency; in an efficient manner; "he functions efficiently" -00236020 02 r 01 inefficiently 0 002 ! 00235843 r 0101 \ 00511739 a 0102 | in an inefficient manner; "he dealt inefficiently with the crisis" -00236164 02 r 02 discordantly 0 unharmoniously 0 001 \ 00553899 a 0101 | in a discordant manner; "the piece ended discordantly" -00236294 02 r 01 dully 0 001 \ 00806512 a 0101 | without liveliness; "she nodded her head dully" -00236393 02 r 01 dully 2 001 \ 00283703 a 0101 | without luster or shine; "the light shone dully through the haze"; "unpolished buttons glinted dully" -00236546 02 r 02 in_stride 0 in_good_spirits 0 000 | without losing equilibrium; "she took all his criticism in stride" -00236668 02 r 01 atonally 0 001 \ 02438188 a 0101 | without tonality; "he composes atonally" -00236763 02 r 01 charmingly 0 001 \ 01807799 a 0101 | in a charming manner -00236840 02 r 02 winsomely 0 engagingly 0 002 \ 00167671 a 0201 \ 00169056 a 0101 | in an engaging manner; "she played the role engagingly" -00236982 02 r 01 tragically 0 001 \ 01363153 a 0101 | in a tragic manner; with tragic consequences; "the adventure ended tragically"; "tragically, she contracted AIDS" -00237152 02 r 01 fascinatingly 0 001 \ 01344171 a 0103 | in a fascinating manner; "her face became fascinatingly distorted" -00237278 02 r 02 curvaceously 0 buxomly 0 002 \ 02138989 a 0203 \ 02138989 a 0104 | in a curvaceous way; "his date was curvaceously beguiling" -00237423 02 r 01 ominously 0 001 \ 00194357 a 0106 | in an ominous manner; "the sun darkened ominously" -00237529 02 r 01 restively 0 001 \ 02406370 a 0108 | in a restive manner; "he sat down again, restively" -00237636 02 r 02 wittingly 0 knowingly 0 004 ! 00237833 r 0203 \ 01338116 a 0202 ! 00237833 r 0101 \ 01337767 a 0102 | with full knowledge and deliberation; "he wittingly deleted the references" -00237833 02 r 03 unwittingly 0 inadvertently 0 unknowingly 0 005 ! 00153681 r 0203 \ 01338909 a 0202 ! 00237636 r 0101 \ 01339492 a 0103 ! 00237636 r 0302 | without knowledge or intention; "he unwittingly deleted the references" -00238064 02 r 01 scienter 0 002 ;c 08441203 n 0000 \ 01337939 a 0101 | (law) deliberately or knowingly -00238169 02 r 01 contentedly 0 001 \ 00588797 a 0101 | with equanimity; "`I bought it,' she said contentedly" -00238281 02 r 02 pityingly 0 compassionately 0 001 \ 00506299 a 0201 | in a compassionate manner; "the nurse looked at him pityingly" -00238417 02 r 02 glibly 0 slickly 0 001 \ 01799781 a 0101 | with superficial plausibility; "he talked glibly" -00238529 02 r 02 callously 0 unfeelingly 1 002 \ 00507292 a 0203 \ 02107162 a 0101 | in a callous way; "he callously exploited their feelings" -00238674 02 r 01 justifiably 0 002 ! 00238794 r 0101 \ 01722140 a 0101 | with good reason; "he is justifiably bitter" -00238794 02 r 02 unjustifiably 0 inexcusably 1 003 \ 01722039 a 0201 ! 00238674 r 0101 \ 01722367 a 0103 | without any excuse; "he is unjustifiably harsh on her" -00238958 02 r 01 under_way 0 001 \ 01561771 a 0101 | in motion; set in motion; "the ship got under way" -00239064 02 r 01 afoot 1 001 \ 01562167 a 0101 | on foot; walking; "they went to the village afoot"; "quail are hunted either afoot or on horseback" -00239215 02 r 01 modestly 0 002 \ 01539225 a 0101 ! 00239402 r 0101 | with modesty; in a modest manner; "the dissertation was entitled, modestly, `Remarks about a play by Shakespeare'" -00239402 02 r 01 immodestly 0 002 \ 01539642 a 0101 ! 00239215 r 0101 | without modesty; in an immodest manner; "the book was entitled, immodestly, `All about Wisdom'" -00239572 02 r 01 frowningly 0 001 \ 01806992 a 0101 | with a frown; while frowning; "he looked at her frowningly" -00239688 02 r 03 overwhelmingly 0 overpoweringly 0 irresistibly 0 003 \ 01989175 a 0301 \ 01989446 a 0201 \ 01989446 a 0102 | incapable of being resisted; "the candy looked overwhelmingly desirable to the dieting man" -00239908 02 r 05 each 0 to_each_one 0 for_each_one 0 from_each_one 0 apiece 0 000 | to or from every one of two or more (considered individually); "they received $10 each" -00240082 02 r 03 next_door 0 in_the_adjacent_house 0 in_the_adjacent_apartment 0 000 | at or in or to the adjacent residence; "the criminal had been living next door all this time" -00240265 02 r 01 in_unison 0 000 | at the same pitch; "they sang in unison" -00240343 02 r 02 in_unison 2 in_chorus 0 000 | speaking or singing at the same time; simultaneously; "they shouted `Yes!' in unison"; "they responded in chorus to the teacher's questions" -00240533 02 r 01 analytically 0 001 \ 00110853 a 0101 | by virtue of analysis; "assuming that the distinction is maintained one may ask which is to be analytically prior?" -00240707 02 r 03 therein 0 in_this 0 in_that 0 001 ;u 01204055 n 0000 | (formal) in or into that thing or place; "they can read therein what our plans are" -00240865 02 r 01 anarchically 0 001 \ 00600192 a 0101 | in a lawless rebellious manner -00240954 02 r 02 lopsidedly 0 crookedly 0 002 \ 02311544 a 0201 \ 02312450 a 0104 | in a crooked lopsided manner; "he smiled lopsidedly" -00241093 02 r 02 sternly 0 severely 2 002 \ 01301316 a 0201 \ 01300187 a 0102 | with sternness; in a severe manner; "`No,' she said sternly"; "peered severely over her glasses" -00241272 02 r 01 suspiciously 0 001 \ 02464277 a 0103 | with suspicion; "she regarded the food suspiciously" -00241383 02 r 02 authoritatively 0 magisterially 0 002 \ 00752110 a 0204 \ 01830403 a 0101 | in an authoritative and magisterial manner; "she spoke authoritatively" -00241550 02 r 01 resolutely 0 002 \ 01989669 a 0101 ! 00241757 r 0101 | showing firm determination or purpose; "she resolutely refused to look at him or speak to him"; "he entered the building resolutely" -00241757 02 r 01 irresolutely 0 002 \ 01992149 a 0101 ! 00241550 r 0101 | lacking determination or decisiveness -00241871 02 r 01 speculatively 0 001 \ 00664879 a 0102 | with speculation; in a speculative manner; "he looked at her speculatively" -00242006 02 r 02 beautifully 0 attractively 0 003 ! 00242172 r 0201 \ 00166146 a 0201 \ 00217728 a 0101 | in a beautiful manner; "her face was beautifully made up" -00242172 02 r 01 unattractively 0 002 ! 00242006 r 0102 \ 00169164 a 0101 | in an unattractive manner; "she was unattractively dressed last night" -00242321 02 r 03 dourly 0 sullenly 0 glumly 0 003 \ 01137378 a 0304 \ 01137378 a 0209 \ 01137378 a 0102 | in a sullen manner; "he sat in his chair dourly" -00242478 02 r 02 belligerently 0 hostilely 0 002 \ 01244410 a 0201 \ 01244846 a 0102 | with hostility; in a belligerent hostile manner; "he pushed her against the wall belligerently" -00242663 02 r 01 consciously 0 002 ! 00242810 r 0101 \ 00570590 a 0101 | with awareness; "she consciously played with the idea of inviting them" -00242810 02 r 01 unconsciously 0 002 ! 00242663 r 0101 \ 00571643 a 0101 | without awareness; "she jumped up unconsciously when he entered the room" -00242961 02 r 01 greenly 0 001 \ 00375969 a 0101 | with green color; "the countryside rolled greenly down into the valley" -00243086 02 r 02 casually 0 nonchalantly 0 002 \ 00545746 a 0203 \ 00545746 a 0101 | in an unconcerned manner; "glanced casually at the headlines" -00243235 02 r 01 commensally 0 001 \ 02700792 a 0101 | in a commensal manner -00243314 02 r 01 competitively 0 002 ! 00243448 r 0101 \ 00512487 a 0101 | in competition; "the companies should bid competitively" -00243448 02 r 01 noncompetitively 0 002 ! 00243314 r 0101 \ 00513165 a 0101 | in a noncompetitive manner; "the scholarships will be awarded noncompetitively" -00243608 02 r 03 compulsively 0 obsessively 0 obsessionally 0 003 \ 01585022 a 0301 \ 01585022 a 0202 \ 01583659 a 0101 | in a compulsive manner; "he cleaned his shoes compulsively after every walk" -00243809 02 r 01 structurally 0 001 \ 02897335 a 0101 | with respect to structure; "structurally, the organization is healthy" -00243938 02 r 03 south 0 to_the_south 0 in_the_south 0 000 | in a southern direction; "we moved south" -00244043 02 r 04 north 0 northerly 0 northwards 0 northward 0 001 \ 01601297 a 0201 | in a northern direction; "they earn more up north"; "Let's go north!" -00244201 02 r 02 unofficially 1 on_the_side 0 001 \ 01633591 a 0101 | without official authorization; "he had made some money on the side" -00244342 02 r 01 overnight 0 000 | during or for the length of one night; "the fish marinates overnight" -00244449 02 r 01 overnight 1 000 | happening in a short time or with great speed; "these solutions cannot be found overnight!" -00244578 02 r 01 willy-nilly 1 000 | without having a choice -00244641 02 r 01 believably 0 003 ! 00244787 r 0101 \ 00644839 a 0102 ! 00295825 r 0104 | in a believable manner; "he acted believably sincere" -00244787 02 r 01 unbelievably 0 002 ! 00244641 r 0101 \ 00645493 a 0102 | in an unbelievable manner; "he was unbelievably angry" -00244918 02 r 01 underfoot 0 000 | under the feet; "trampled the beans underfoot"; "green grass growing underfoot" -00245035 02 r 01 underfoot 1 000 | in the way and hindering progress; "a house with children and pets and toys always underfoot" -00245166 02 r 01 hand_in_hand 3 000 | together; "hand in hand with hope went fear"; "doctors and nurses work hand in hand to save lives" -00245305 02 r 01 feetfirst 0 000 | with the feet foremost; "he jumped into the pool feetfirst" -00245402 02 r 02 ferociously 0 fiercely 0 002 \ 02511528 a 0202 \ 02511528 a 0101 | in a physically fierce manner; "silence broken by dogs barking ferociously"; "they fought fiercely" -00245588 02 r 01 fiercely 1 001 \ 01511854 a 0101 | in an emotionally fierce manner; "she was fiercely proud of her children" -00245716 02 r 01 subconsciously 0 001 \ 00573093 a 0101 | from the subconscious mind; "the image came to him subconsciously" -00245843 02 r 01 vividly 0 001 \ 01941026 a 0104 | in a vivid manner; "he described his adventures vividly" -00245953 02 r 01 artfully 0 001 \ 00147734 a 0101 | in an artful manner; "her foot pointed artfully toward tapering toes" -00246077 02 r 01 expectantly 0 001 \ 01228797 a 0103 | in an expectant manner; "she looked at him expectantly" -00246190 02 r 01 lustily 0 001 \ 01171746 a 0103 | in a healthy manner; "the young plants grew lustily" -00246296 02 r 02 just 3 simply 3 001 ;u 06321054 n 0000 | absolutely; "I just can't take it anymore"; "he was just grand as Romeo"; "it's simply beautiful!" -00246455 02 r 01 tenfold 0 000 | by ten times as much; "the population increased tenfold" -00246547 02 r 01 quantitatively 0 001 \ 02977198 a 0101 | in a quantitative manner; "this can be expressed quantitatively" -00246672 02 r 02 on_paper 1 in_writing 0 000 | as written or printed; "this is exactly what the composer had set down on paper" -00246802 02 r 01 dramatically 2 001 \ 01284212 a 0101 | in a very impressive manner; "your performance will improve dramatically" -00246934 02 r 01 classically 0 001 \ 00413622 a 0101 | in the manner of Greek and Roman culture; "this exercise develops a classically shaped body" -00247084 02 r 01 obscurely 0 001 \ 00534250 a 0102 | in an obscure manner; "this work is obscurely written" -00247194 02 r 01 decently 0 002 ! 00247326 r 0101 \ 01993408 a 0101 | in a decent manner; "they don't know how to dress decently" -00247326 02 r 01 indecently 0 002 ! 00247194 r 0101 \ 00683185 a 0101 | in an indecent manner; "she was rather indecently dressed" -00247459 02 r 01 horrifyingly 0 001 \ 00193480 a 0103 | in a horrifying manner; "he laughed horrifyingly" -00247567 02 r 01 characteristically 0 002 ! 00247712 r 0101 \ 00356926 a 0101 | in characteristic manner; "he arrived characteristically late" -00247712 02 r 01 uncharacteristically 0 002 ! 00247567 r 0101 \ 00357983 a 0101 | in uncharacteristic manner; "he was uncharacteristically cool" -00247859 02 r 01 perversely 0 001 \ 00621524 a 0102 | deliberately deviant; "his perversely erotic notions" -00247969 02 r 03 perversely 3 contrarily 2 contrariwise 3 002 \ 01613839 a 0201 \ 01613839 a 0103 | in a contrary disobedient manner -00248104 02 r 01 dialectically 0 001 \ 03023644 a 0101 | in a dialectic manner; "his religiousness is dialectically related to his sinfulness" -00248249 02 r 01 prophetically 0 001 \ 01881696 a 0101 | in a prophetic manner; "he prophetically anticipated the disaster" -00248375 02 r 01 artistically 0 001 \ 00069948 a 0101 | in an artistic manner; "it was artistically decorated" -00248488 02 r 02 peculiarly 1 particularly 1 002 \ 01104026 a 0201 \ 01104026 a 0102 | uniquely or characteristically; "these peculiarly cinematic elements"; "a peculiarly French phenomenon"; "everyone has a moment in history which belongs particularly to him"- John Knowles -00248765 02 r 02 particularly 2 in_particular 0 001 \ 01104026 a 0101 | specifically or especially distinguished from others; "loves Bach, particularly his partitas"; "recommended one book in particular"; "trace major population movements for the Pueblo groups in particular" -00249043 02 r 01 instinctively 0 001 \ 02282985 a 0102 | as a matter of instinct; "he instinctively grabbed the knife" -00249164 02 r 01 internally 0 002 ! 00249300 r 0101 \ 00948670 a 0101 | on or from the inside; "an internally controlled environment" -00249300 02 r 01 externally 1 002 ! 00249164 r 0101 \ 00948103 a 0101 | on or from the outside; "the candidate needs to be externally evaluated" -00249447 02 r 01 overhead 0 000 | above the head; over the head; "bring the legs together overhead" -00249549 02 r 01 at_arm's_length 0 000 | at some distance; "keep someone at arm's length" -00249641 02 r 01 overhead 1 000 | above your head; in the sky; "planes were flying overhead" -00249736 02 r 02 aboard 0 on_base 0 001 ;c 00471613 n 0000 | on first or second or third base; "Their second homer with Bob Allison aboard" -00249878 02 r 02 aboard 1 on_board 0 000 | on a ship, train, plane or other vehicle -00249964 02 r 01 aboard 2 000 | part of a group; "Bill's been aboard for three years now" -00250056 02 r 02 aboard 4 alongside 0 000 | side by side; "anchored close aboard another ship" -00250153 02 r 01 uniformly 0 001 \ 01200095 a 0102 | in a uniform manner; "a uniformly bright surface" -00250258 02 r 02 all_too 0 only_too 0 000 | to a high degree; "she is all too ready to accept the job" -00250363 02 r 01 enduringly 0 001 \ 01754873 a 0102 | in an enduring manner; "Roman culture was enduringly fertilized" -00250484 02 r 01 abreast 0 000 | alongside each other, facing in the same direction -00250570 02 r 05 per_annum 0 p.a. 0 per_year 0 each_year 1 annually 1 000 | by the year; every year (usually with reference to a sum of money paid or received); "he earned $100,000 per annum"; "we issue six volumes per annum" -00250798 02 r 02 per_diem 0 by_the_day 0 000 | one every day; "we'll save 100 man-hours per diem" -00250898 02 r 02 between 0 'tween 0 000 | in between; "two houses with a tree between" -00250987 02 r 01 ad_hoc 0 000 | for one specific case; "they were appointed ad hoc" -00251073 02 r 01 ad_nauseam 0 000 | to a sickening extent; "he played the song ad nauseam" -00251166 02 r 02 ad_val 0 ad_valorem 0 000 | in proportion to the estimated value of the goods taxed; "the goods were taxed ad valorem" -00251304 02 r 02 ante_meridiem 0 A.M. 0 001 ;c 06962600 n 0000 | before noon; "let's meet at 11 A.M." -00251408 02 r 02 post_meridiem 0 P.M. 0 001 ;c 06962600 n 0000 | between noon and midnight; "let's meet at 8 P.M." -00251525 02 r 01 a_posteriori 0 001 ! 00251611 r 0101 | derived from observed facts -00251611 02 r 01 a_priori 0 001 ! 00251525 r 0101 | derived by logic, without observed facts -00251706 02 r 02 cap-a-pie 0 from_head_to_toe 0 000 | at all points from head to foot; "he was armed cap-a-pie" -00251820 02 r 03 legally 1 lawfully 0 de_jure 0 003 ! 00251990 r 0201 \ 01401224 a 0201 \ 02754096 a 0101 | by law; conforming to the law; "we are lawfully wedded now" -00251990 02 r 01 unlawfully 0 002 ! 00251820 r 0102 \ 01403760 a 0105 | not conforming to the law; "they were unlawfully married" -00252122 02 r 01 jurisprudentially 0 001 \ 02753868 a 0101 | in respect to jurisprudence or the science or philosophy of law -00252249 02 r 03 doggo 0 out_of_sight 0 in_hiding 0 000 | quietly in concealment; "he lay doggo" -00252348 02 r 01 en_clair 0 000 | in ordinary language -00252405 02 r 01 en_famille 0 000 | in a casual way at home; "we'll have dinner en famille" -00252499 02 r 02 ex_officio 0 by_right_of_office 0 000 | by virtue of position; "the president sat on the committee ex officio" -00252629 02 r 01 full-time 0 001 ! 00252740 r 0101 | for the standard number of hours; "she works full-time" -00252740 02 r 02 half-time 0 part-time 0 001 ! 00252629 r 0101 | for less than the standard number of hours; "he works part-time" -00252872 02 r 01 bilaterally 1 001 \ 00237788 a 0101 | so as to involve two sides or parts -00252965 02 r 01 bilaterally 0 001 \ 01946012 a 0101 | with the involvement of two parties or governments; "they worked out an agreement bilaterally" -00253117 02 r 02 unilaterally 0 one-sidedly 0 002 \ 00236989 a 0101 ! 00253306 r 0101 | in a unilateral manner; by means of one part or party; "they worked out an agreement unilaterally" -00253306 02 r 01 multilaterally 0 002 \ 00237240 a 0101 ! 00253117 r 0101 | in a multilateral manner;so as to affect many parties or governments; "they worked out an agreement unilaterally" -00253498 02 r 01 blatantly 0 001 \ 02090567 a 0101 | in a blatant manner; "they blatantly violated the laws" -00253609 02 r 02 chock 0 chock-a-block 0 000 | as completely as possible; "it was chock-a-block full" -00253713 02 r 01 cloyingly 0 001 \ 02368566 a 0101 | in an overly sweet manner -00253794 02 r 01 collect 0 000 | make a telephone call or mail a package so that the recipient pays; "call collect"; "send a package collect" -00253938 02 r 03 C.O.D. 0 COD 0 cash_on_delivery 0 000 | collecting the charges upon delivery; "mail a package C.O.D." -00254059 02 r 02 counterclockwise 0 anticlockwise 0 002 ! 00254369 r 0101 \ 00442057 a 0101 | in a direction opposite to the direction in which the hands of a clock move; "please move counterclockwise in a circle!" -00254276 02 r 01 counterintuitively 0 001 \ 01944904 a 0101 | in a counterintuitive manner -00254369 02 r 01 clockwise 0 002 ! 00254059 r 0101 \ 00441781 a 0101 | in the direction that the hands of a clock move; "please move clockwise in a circle" -00254527 02 r 01 deathly 0 000 | to a degree resembling death; "he was deathly pale" -00254614 02 r 02 foremost 0 first 1 000 | prominently forward; "he put his best foot foremost" -00254711 02 r 02 fortnightly 0 biweekly 0 002 \ 01969038 a 0202 \ 01969038 a 0101 | every two weeks; "he visited his cousins fortnightly" -00254851 02 r 02 semiweekly 0 biweekly 1 002 \ 01968721 a 0202 \ 01968721 a 0101 | twice a week; "he called home semiweekly" -00254978 02 r 01 monthly 0 001 \ 01969707 a 0101 | occurring once a month; "they meet monthly" -00255075 02 r 01 bimonthly 0 001 \ 01969881 a 0101 | every two months; "the bill was payable bimonthly" -00255181 02 r 02 semimonthly 0 bimonthly 1 002 \ 01970014 a 0202 \ 01970014 a 0101 | twice a month; "salaries are paid semimonthly" -00255315 02 r 02 semiannually 0 biyearly 1 002 \ 01969348 a 0203 \ 01969348 a 0101 | twice a year -00255415 02 r 02 halfway 0 midway 0 000 | at half the distance; at the middle; "he was halfway down the ladder when he fell" -00255542 02 r 01 ceteris_paribus 0 000 | all other things being equal -00255614 02 r 02 hereby 0 herewith 0 001 ;u 01204055 n 0000 | (formal) by means of this; "I hereby declare you man and wife" -00255741 02 r 01 hierarchically 0 001 \ 01203288 a 0101 | in a hierarchical manner; "hierarchically organized" -00255854 02 r 02 higgledy-piggledy 0 topsy-turvy 1 000 | in a disordered manner; "they were piled up higgledy-piggledy" -00255976 02 r 03 ibid. 0 ib. 0 ibidem 0 000 | in the same place (used when citing a reference) -00256073 02 r 01 in_loco_parentis 0 000 | in place of the parents; "we had to punish this child in loco parentis" -00256189 02 r 02 in_situ 0 in_place 0 000 | in the original or natural place or site; "carcinoma in situ"; "the archeologists left the pottery in place" -00256344 02 r 01 inter_alia 0 000 | among other things; "the committee recommended, inter alia, that he be promoted" -00256463 02 r 01 ipso_facto 0 000 | by the fact itself; "ipso facto, her innocence was established" -00256565 02 r 01 item 0 000 | (used when listing or enumerating items) also; "a length of chain, item a hook"-Philip Guedalla -00256693 02 r 01 give_or_take 0 000 | plus or minus a small amount; "it is a mile away, give or take a few hundred yards" -00256817 02 r 01 mutatis_mutandis 0 000 | with the necessary changes having been carried out -00256912 02 r 01 par_excellence 0 000 | to a degree of excellence; "he is the honest politician par excellence" -00257026 02 r 02 pari_passu 0 at_an_equal_rate 0 000 | used in legal language -00257106 02 r 02 passim 0 throughout 2 000 | used to refer to cited works -00257182 02 r 02 pro_tem 0 pro_tempore 0 000 | for the time being; temporarily; "accepting pro tem that hypothesis consistent with the facts"- J.W.Krutch -00257338 02 r 01 sine_die 0 000 | without a date fixed (as of an adjournment) -00257418 02 r 02 sotto_voce 0 in_a_low_voice 0 000 | in an undertone; "he uttered a curse sotto voce" -00257522 02 r 01 sub_rosa 0 000 | in secret or covertly; "held a meeting sub rosa to avoid general criticism" -00257634 02 r 02 tandem 0 in_tandem 0 000 | one behind the other; "ride tandem on a bicycle built for two"; "riding horses down the path in tandem" -00257784 02 r 01 thrice 0 000 | three times; "I called you thrice last night" -00257864 02 r 02 verbatim 0 word_for_word 0 000 | using exactly the same words; "he repeated her remarks verbatim" -00257981 02 r 01 a_la_carte 0 000 | by ordering items listed individually on a menu; "we ate a la carte" -00258088 02 r 02 by_word_of_mouth 1 viva_voce 0 000 | orally; "I heard it viva voce" -00258175 02 r 03 gratis 0 for_free 0 free_of_charge 0 000 | without payment; "I'll give you this gratis" -00258282 02 r 02 below 2 infra 0 000 | (in writing) see below; "vide infra" -00258360 02 r 01 inland 0 000 | towards or into the interior of a region; "the town is five miles inland" -00258468 02 r 01 inshore 0 000 | toward the shore; "we swam two miles inshore" -00258549 02 r 02 inward 0 inwards 0 001 ! 00258677 r 0101 | toward the center or interior; "move the needle further inwards!" -00258677 02 r 02 outward 0 outwards 0 001 ! 00258549 r 0101 | toward the outside; "move the needle further outward!" -00258796 02 r 02 knee-deep 0 knee-high 0 000 | up to the knees; "we were standing knee-deep in the water" -00258904 02 r 02 breast-deep 0 breast-high 0 000 | up to the breast; "we were standing breast-high in the water" -00259019 02 r 01 live 0 000 | not recorded; "the opera was broadcast live" -00259096 02 r 02 sooner 0 earlier 2 000 | comparatives of `soon' or `early'; "Come a little sooner, if you can"; "came earlier than I expected" -00259242 02 r 01 in_extremis 0 000 | at the point of death -00259303 02 r 02 midmost 0 in_the_midst 0 000 | the middle or central part or point; "in the midst of the forest"; "could he walk out in the midst of his piece?" -00259467 02 r 02 off-hand 0 ex_tempore 0 000 | without preparation; "I don't know the figures off-hand" -00259573 02 r 01 offstage 1 000 | not in public; "the deal was done offstage" -00259653 02 r 01 offstage 0 001 ! 00259775 r 0101 | behind the scenes; not on stage; "the actors were waiting offstage" -00259775 02 r 01 onstage 0 001 ! 00259653 r 0101 | on the stage; "it was time for her to go onstage" -00259878 02 r 01 off-the-clock 0 000 | overtime without extra compensation; "she often has to work off-the-clock" -00259994 02 r 01 overtime 0 000 | beyond the regular time; "she often has to work overtime" -00260088 02 r 01 perforce 0 000 | by necessity; by force of circumstance -00260163 02 r 01 post-haste 0 000 | as fast as possible; with all possible haste; "send it to me post-haste" -00260274 02 r 01 prima_facie 0 000 | at first sight -00260328 02 r 03 perfunctorily 0 as_a_formality 0 pro_forma 0 001 \ 00312234 a 0104 | in a set manner without serious attention; "they answered my letter pro forma"; "he kissed her cheek perfunctorily" -00260532 02 r 02 proportionately 3 pro_rata 0 001 \ 00481737 a 0101 | in proportion -00260618 02 r 01 rent-free 0 000 | without paying rent; "I can live here rent-free" -00260704 02 r 02 wholesale 1 in_large_quantities 0 000 | on a large scale without careful discrimination; "I buy food wholesale" -00260835 02 r 01 scot_free 0 000 | free from harm or penalty; "he went scot-free" -00260919 02 r 02 skyward 0 skywards 0 000 | toward the sky; "look skywards!" -00260998 02 r 02 up_here 0 over_here 0 000 | in a specified area or place; "you shouldn't be up here" -00261102 02 r 01 adversely 0 001 \ 00997036 a 0101 | in an adverse manner; "she was adversely affected by the new regulations" -00261231 02 r 02 aesthetically 0 esthetically 0 002 \ 02393086 a 0202 \ 02393086 a 0101 | in a tasteful way; "this building is aesthetically very pleasing" -00261389 02 r 03 agonizingly 0 excruciatingly 0 torturously 0 003 \ 01711724 a 0306 \ 01711724 a 0203 \ 01711724 a 0101 | in a very painful manner; "the progress was agonizingly slow" -00261575 02 r 01 appallingly 0 001 \ 00193367 a 0101 | to an appalling extent; "the prisoners were appallingly thin" -00261694 02 r 01 appealingly 0 002 ! 00261825 r 0101 \ 00170358 a 0101 | in an appealing manner; "the table was set appealingly" -00261825 02 r 01 unappealingly 0 002 ! 00261694 r 0101 \ 00171044 a 0101 | in an unappealing manner; "the kitchen was unappealingly dirty" -00261966 02 r 01 approvingly 0 002 ! 00262090 r 0101 \ 00996089 a 0101 | in an approving manner; "she nodded approvingly" -00262090 02 r 01 disapprovingly 0 001 ! 00261966 r 0101 | showing disapproval; "he shook his head disapprovingly" -00262206 02 r 02 ambitiously 0 determinedly 1 003 \ 00104699 a 0202 ! 00262403 r 0101 \ 00104051 a 0101 | with ambition; in an ambitious and energetic manner; "she pursued her goals ambitiously" -00262403 02 r 01 unambitiously 0 002 ! 00262206 r 0101 \ 00105023 a 0101 | in an unambitious manner; "he does his job, but he works unambitiously" -00262552 02 r 01 amicably 0 001 \ 01246579 a 0101 | in an amicable manner; "they separated amicably" -00262655 02 r 01 anonymously 0 001 \ 00120574 a 0101 | without giving a name; "she wrote these letters anonymously" -00262773 02 r 01 at_a_loss 0 000 | below cost; "sold the car at a loss" -00262847 02 r 01 afield 0 000 | off the subject; beyond the point at issue; "such digressions can lead us too far afield" -00262971 02 r 01 afield 1 000 | in or into a field (especially a field of battle); "the armies were afield, challenging the enemy's advance"; "unlawful to carry hunting rifles afield until the season opens" -00263180 02 r 02 afield 3 abroad 2 000 | far away from home or one's usual surroundings; "looking afield for new lands to conquer"- R.A.Hall -00263323 02 r 01 animatedly 0 001 \ 00118567 a 0101 | in an animated manner; "they talked animatedly" -00263427 02 r 03 offhand 0 offhanded 0 offhandedly 0 001 \ 00313217 a 0302 | in a casually inconsiderate manner; "replied offhand, his mind a million miles away"; "she threw him over offhandedly without even a Dear-John letter" -00263657 02 r 03 offhand 1 offhanded 1 offhandedly 1 001 \ 01845451 a 0307 | without previous thought or preparation; "couldn't give the figures offhand"; "we decided offhand to go to Canada"; "she had made these remarks offhandedly" -00263893 02 r 01 casually 1 001 \ 01798484 a 0101 | not methodically or according to plan; "he dealt with his course work casually" -00264027 02 r 01 upstage 0 002 ;c 07006119 n 0000 ! 00264179 r 0101 | at or toward the rear of the stage; "the dancers were directed to move upstage" -00264179 02 r 01 downstage 0 002 ;c 07006119 n 0000 ! 00264027 r 0101 | at or toward the front of the stage; "the actors moved further and further downstage" -00264339 02 r 02 abjectly 0 resignedly 1 001 \ 01229435 a 0101 | in a hopeless resigned manner; "she shrugged her shoulders abjectly" -00264475 02 r 01 abortively 0 001 \ 01082714 a 0101 | in an unfruitful manner -00264555 02 r 02 abstemiously 0 temperately 2 002 \ 02401590 a 0201 \ 00009046 a 0101 | in a sparing manner; without overindulgence; "he ate and drank abstemiously"; "indulged temperately in cocktails" -00264759 02 r 01 abstrusely 0 001 \ 00899226 a 0101 | in a manner difficult to understand; "the professor's abstrusely reasoned theories were wasted on his students" -00264927 02 r 01 accelerando 0 002 ;c 07020895 n 0000 \ 02537841 a 0101 | with increasing speed; "here you must play accelerando" -00265059 02 r 01 adagio 0 002 ;c 07020895 n 0000 \ 00982881 a 0101 | slowly; "here you must play adagio" -00265166 02 r 01 administratively 0 001 \ 02904075 a 0101 | by or for an administrator; "this decision was made administratively" -00265298 02 r 02 adorably 0 endearingly 0 002 \ 01459755 a 0202 \ 01459755 a 0101 | in an adorable manner; "the toddler behaved adorably" -00265438 02 r 01 antagonistically 0 001 \ 01245138 a 0101 | in an antagonistic manner; "he behaves antagonistically toward his colleagues" -00265579 02 r 01 anteriorly 0 001 \ 00130778 a 0101 | in an anterior direction -00265660 02 r 01 apathetically 0 001 \ 01342949 a 0101 | in an apathetic manner; "she behaves apathetically these days" -00265782 02 r 01 ardently 0 001 \ 01726235 a 0101 | in an ardent manner; "the spirit of God knew very well that there was a deeper question to be settled before there could be the intervention in power that was so ardently desired" -00266016 02 r 01 arrogantly 0 001 \ 01889819 a 0101 | in an arrogant manner; "in the old days she had been harsh and stiff ; afraid of her husband and yet arrogantly proud that she had a husband strong and fierce enough to make her afraid" -00266258 02 r 01 ascetically 0 001 \ 00009618 a 0101 | in an ascetic manner; "she lived ascetically in a small house all by herself" -00266393 02 r 01 ashamedly 0 002 ! 00209518 r 0101 \ 00153898 a 0101 | with a feeling of shame -00266490 02 r 01 assertively 0 002 ! 00266647 r 0101 \ 00156101 a 0101 | in an assertive manner; "`I will take care of my own life,' she said assertively" -00266647 02 r 01 unassertively 0 002 ! 00266490 r 0101 \ 00156839 a 0101 | in an unassertive manner; "unassertively, she always follows her husband's suggestions" -00266812 02 r 01 assuredly 0 001 \ 00339157 a 0101 | without a doubt; "the grammar schools were assuredly not intended for the gentry alone" -00266955 02 r 01 audaciously 0 001 \ 00066146 a 0101 | in an audacious manner; "an idea so daring and yet so audaciously tempting that a shiver of excitement quivered through him" -00267137 02 r 01 avidly 0 001 \ 00888477 a 0101 | in an avid manner; "whatever the flavor or color of your local paper, do remember that these are read avidly for local information" -00267321 02 r 01 adjectively 0 001 \ 02936020 a 0101 | as an adjective; "nouns are frequently used adjectively" -00267435 02 r 01 adverbially 0 001 \ 02936235 a 0101 | as an adverb; "the prepositional phrase here is used adverbially" -00267558 02 r 01 adrift 0 001 \ 01910652 a 0101 | off course, wandering aimlessly; "there was a search for beauty that had somehow gone adrift" -00267704 02 r 01 adrift 1 001 \ 00077059 a 0101 | floating freely; not anchored; "the boat wasset adrift" -00267812 02 r 01 andante 0 002 ;c 07020895 n 0000 \ 00982954 a 0101 | at a moderately slow tempo; "this passage must be played andante" -00267950 02 r 01 amorously 0 001 \ 01465061 a 0102 | in an amorous manner; "he looked at her amorously" -00268056 02 r 01 angelically 0 001 \ 01130261 a 0101 | like an angel; "the child was sleeping angelically" -00268165 02 r 01 architecturally 0 001 \ 02897957 a 0101 | with regard to architecture; "this building is ugly, but architecturally interesting" -00268312 02 r 02 articulately 0 eloquently 1 002 ! 00268464 r 0101 \ 00150202 a 0101 | in an articulate manner; "he argued articulately for his plan" -00268464 02 r 01 inarticulately 0 002 ! 00268312 r 0101 \ 00151105 a 0101 | in an inarticulate manner; "he talked inarticulately about the accident that had just taken his wife's life" -00268651 02 r 01 attributively 0 002 ;c 06174404 n 0000 \ 00172562 a 0101 | in an attributive manner; "the genitive noun is used attributively" -00268797 02 r 01 audibly 0 002 ! 00268909 r 0101 \ 00173764 a 0101 | in an audible manner; "he spoke audibly" -00268909 02 r 01 inaudibly 0 002 ! 00268797 r 0101 \ 00174379 a 0101 | in an inaudible manner; "she spoke inaudibly low" -00269032 02 r 01 beastly 0 001 \ 01263445 a 0101 | in a beastly manner; "she behaved beastly toward her mother-in-law" -00269153 02 r 02 authentically 0 genuinely 1 002 \ 01115349 a 0201 \ 01115635 a 0101 | genuinely; with authority; "it is authentically British" -00269299 02 r 01 bloodlessly 0 002 ! 00269488 r 0101 \ 00249433 a 0101 | without bloodshed; in a bloodless manner; without shedding blood; "the coup disposed of the dictator bloodlessly" -00269488 02 r 01 bloodily 0 002 ! 00269299 r 0101 \ 00247439 a 0101 | involving a great bloodshed -00269588 02 r 02 bombastically 0 grandiosely 0 001 \ 01285713 a 0201 | in a grandiose manner; "the building was bombastically spacious" -00269726 02 r 02 turgidly 0 bombastically 1 002 \ 02016881 a 0201 \ 02016881 a 0106 | in a turgid manner; "he lectured bombastically about his theories" -00269881 02 r 02 boyishly 0 boylike 0 002 \ 01648313 a 0202 \ 01648313 a 0101 | like a boy; "he smiled boyishly at his fiancee" -00270011 02 r 01 aground 0 000 | with the bottom lodged on the ground; "he ran the ship aground" -00270110 02 r 01 akimbo 0 000 | with hands on hips and elbows extending outward; "she stood there akimbo" -00270218 02 r 01 alee 0 000 | on or toward the lee; "put the helm alee" -00270292 02 r 01 alertly 0 001 \ 00190653 a 0101 | in mentally perceptive and responsive way; "she got through the day alertly, despite being on drugs" -00270446 02 r 03 alias 0 a.k.a. 0 also_known_as 0 000 | as known or named at another time or place; "Mr. Smith, alias Mr. Lafayette" -00270581 02 r 01 allegretto 0 002 ;c 07020895 n 0000 \ 00982170 a 0101 | in a moderately quick tempo; "play this more allegretto" -00270713 02 r 01 allegro 0 002 ;c 07020895 n 0000 \ 00982065 a 0101 | in a quick and lively tempo; "play this section allegro" -00270842 02 r 01 alliteratively 0 001 \ 01965849 a 0101 | in an alliterative manner; "the early Norse poets wrote alliteratively" -00270974 02 r 02 altruistically 0 selflessly 0 002 \ 00101609 a 0202 \ 00101609 a 0101 | in an altruistic manner; "he acted selflessly when he helped the old lady in distress" -00271152 02 r 01 anomalously 0 001 \ 01596455 a 0101 | in an anomalous manner; "this man behaves anomalously" -00271264 02 r 02 appreciatively 0 gratefully 1 004 ! 00271470 r 0201 \ 01146493 a 0201 \ 01146732 a 0101 ! 00271470 r 0102 | with appreciation; in a grateful manner; "he accepted my offer appreciatively" -00271470 02 r 02 ungratefully 0 unappreciatively 0 004 \ 01147300 a 0201 \ 01147044 a 0101 ! 00271264 r 0102 ! 00271264 r 0201 | in an ungrateful manner -00271625 02 r 01 arithmetically 0 001 \ 03044869 a 0102 | with respect to arithmetic; "this problem is arithmetically easy" -00271751 02 r 01 askance 0 000 | with a side or oblique glance; "did not quite turn all the way back but looked askance at me with her dark eyes" -00271899 02 r 01 askance 2 000 | with suspicion or disapproval; "he looked askance at the offer" -00271998 02 r 02 awry 0 amiss 0 000 | away from the correct or expected course; "something has gone awry in our plans"; "something went badly amiss in the preparations" -00272169 02 r 03 askew 1 awry 1 skew-whiff 0 000 | turned or twisted to one side; "rugs lying askew"; "with his necktie twisted awry" -00272305 02 r 01 assiduously 0 001 \ 00754393 a 0101 | with care and persistence; "she worked assiduously on the senior thesis" -00272435 02 r 01 perseveringly 0 001 \ 01736122 a 0102 | with perseverance -00272512 02 r 01 persistently 0 001 \ 00593071 a 0101 | with persistence -00272587 02 r 05 astutely 0 shrewdly 0 sagaciously 0 sapiently 0 acutely 3 005 \ 00438909 a 0502 \ 02569558 a 0403 \ 02569558 a 0302 \ 00438909 a 0203 \ 00438909 a 0101 | in a shrewd manner; "he invested his fortune astutely"; "he was acutely insightful" -00272844 02 r 03 across 0 crosswise 0 crossways 0 000 | transversely; "the marble slabs were cut across" -00272951 02 r 01 across 1 000 | to the opposite side; "the football field was 300 feet across" -00273048 02 r 01 amain 0 000 | with all your strength; "he pulled the ropes amain" -00273133 02 r 01 amain 1 000 | at full speed; with great haste; "the children ran down the hill amain" -00273238 02 r 01 amidship 1 000 | at or near or toward the middle -00273306 02 r 03 amok 0 amuck 0 murderously 0 003 \ 00248837 a 0302 \ 02074673 a 0201 \ 02074673 a 0102 | in a murderous frenzy; "rioters running amuck and throwing sticks and bottles and stones" -00273504 02 r 02 amok 1 amuck 1 000 | wildly; without self-control; "when the restaurant caught fire the patrons ran amuck, blocking the exit" -00273649 02 r 01 antithetically 0 001 \ 02065404 a 0101 | with antithesis; in an antithetical manner -00273752 02 r 04 seasonably 0 timely 0 well-timed 0 apropos 0 001 \ 01661529 a 0102 | at an opportune time; "your letter arrived apropos" -00273892 02 r 01 seasonably 1 002 \ 01494586 a 0101 ! 00274022 r 0101 | in accordance with the season; "it was seasonably cold" -00274022 02 r 01 unseasonably 0 002 \ 01494740 a 0101 ! 00273892 r 0101 | not in accordance with the season; "it was unseasonably cold" -00274160 02 r 01 archly 0 001 \ 02122715 a 0101 | in_an_arch_manner; with playful slyness or roguishness -00274268 02 r 01 arduously 0 001 \ 00836544 a 0101 | in an arduous manner; "they worked arduously" -00274369 02 r 02 artlessly 0 ingenuously 0 002 \ 01309991 a 0201 \ 01309991 a 0102 | in an ingenuous manner; "she answered the judge's questions artlessly" -00274527 02 r 03 artlessly 1 crudely 1 inexpertly 0 003 \ 01870636 a 0303 \ 02229584 a 0201 \ 02228901 a 0101 | in a crude and unskilled manner; "an inexpertly constructed lean-to" -00274710 02 r 03 obliquely 0 aslant 0 athwart 0 001 \ 01718867 a 0101 | at an oblique angle; "the sun shone aslant into his face" -00274842 02 r 01 blissfully 0 001 \ 01148897 a 0101 | in a blissful manner; "he was blissfully unaware of the danger" -00274962 02 r 01 aslant 1 000 | over or across in a slanting direction -00275035 02 r 01 asleep 0 001 \ 00187736 a 0101 | into a sleeping state; "he fell asleep" -00275127 02 r 01 asleep 1 001 \ 00095873 a 0101 | in the sleep of death -00275201 02 r 01 astern 0 002 ;c 04194289 n 0000 ;c 02691156 n 0000 | (of a ship or an airplane) behind; "we dropped her astern on the end of a seven-inch manilla, and she laid comfortably on the ebb tide" -00275409 02 r 03 aft 0 abaft 0 astern 1 001 ! 00275694 r 0101 | at or near or toward the stern of a ship or tail of an airplane; "stow the luggage aft"; "ships with square sails sail fairly efficiently with the wind abaft"; "the captain looked astern to see what the fuss was about" -00275694 02 r 02 fore 0 forward 4 001 ! 00275409 r 0101 | near or toward the bow of a ship or cockpit of a plane; "the captain went fore (or forward) to check the instruments" -00275872 02 r 01 astern 2 000 | stern foremost or backward; "the steamer went astern at half speed" -00275974 02 r 02 astride 0 astraddle 0 000 | with one leg on each side; "she sat astride the chair" -00276076 02 r 01 astride 1 000 | with the legs stretched far apart -00276145 02 r 01 athwart 1 000 | at right angles to the center line of a ship -00276225 02 r 01 atop 0 000 | on, to, or at the top -00276279 02 r 01 austerely 0 001 \ 01792387 a 0101 | in an austere fashion; "the church was austerely simple" -00276391 02 r 03 avariciously 0 covetously 0 greedily 0 003 \ 00029933 a 0305 \ 00029933 a 0202 \ 00029933 a 0101 | in a greedy manner -00276528 02 r 02 avowedly 0 professedly 1 002 \ 00688074 a 0202 \ 00688074 a 0101 | by open declaration; "their policy has been avowedly Marxist"; "Susan Smith was professedly guilty of the murders" -00276729 02 r 01 backstage 0 000 | in or to a backstage area of a theater; "costumes were changed backstage" -00276840 02 r 01 backstage 1 001 \ 01860328 a 0102 | out of view of the public; behind the scenes; "Working backstage to gain political support for his proposal"; "many private deals were made backstage at the convention" -00277064 02 r 01 privily 0 001 ;u 07073447 n 0000 | confidentially or in secret; "told her friend privily that she was planning to be married" -00277209 02 r 01 baldly 0 001 \ 01705088 a 0101 | in a bald manner; "this book is, to put it baldly, an uneven work." -00277329 02 r 01 balefully 0 001 \ 00194357 a 0101 | in a baleful manner; "she looked at him balefully" -00277435 02 r 02 banefully 0 perniciously 0 002 \ 01611329 a 0203 \ 01611329 a 0101 | in a noxiously baneful way; "this banefully poisoned climate" -00277585 02 r 05 bang 0 slap 0 slapdash 1 smack 0 bolt 0 001 ;u 07075172 n 0000 | directly; "he ran bang into the pole"; "ran slap into her" -00277728 02 r 02 banteringly 0 tongue-in-cheek 2 001 \ 01264913 a 0101 | in a bantering fashion; "he spoke to her banteringly" -00277857 02 r 01 barbarously 0 001 \ 01263013 a 0101 | in a barbarous manner; "they were barbarously murdered" -00277970 02 r 02 bareback 0 barebacked 0 000 | without a saddle; "she prefers to ride her horse bareback" -00278078 02 r 02 barefooted 0 barefoot 0 000 | without shoes on; "he chased her barefoot across the meadow" -00278188 02 r 01 bawdily 0 001 \ 00424787 a 0101 | in a bawdy manner -00278259 02 r 01 becomingly 0 001 \ 00907972 a 0101 | in a becoming manner; "she was becomingly dressed" -00278366 02 r 01 beneficially 0 001 \ 00064787 a 0101 | in a beneficial manner; "this medicine will act beneficially on you" -00278493 02 r 02 benignly 0 benignantly 0 002 \ 00226618 a 0202 \ 00226618 a 0101 | in a benign manner; "this drug is benignly soporific" -00278633 02 r 05 beseechingly 0 importunately 0 imploringly 0 pleadingly 0 entreatingly 0 002 \ 00714320 a 0201 \ 00713995 a 0101 | in a beseeching manner; "`You must help me,' she said imploringly" -00278834 02 r 04 bewitchingly 0 captivatingly 0 enchantingly 0 enthrallingly 0 004 \ 00166753 a 0404 \ 00166753 a 0303 \ 00166753 a 0202 \ 00166753 a 0101 | in a bewitching manner; "she was bewitchingly beautiful" -00279050 02 r 02 biennially 0 biyearly 0 001 \ 01969477 a 0101 | every two years; "this festival takes places biennially" -00279174 02 r 01 biannually 0 001 \ 01969348 a 0102 | twice a year; "we hold our big sale biannually" -00279278 02 r 01 blankly 0 001 \ 00500889 a 0101 | without expression; in a blank manner; "she stared at him blankly" -00279398 02 r 01 blasphemously 0 001 \ 00425002 a 0101 | in a blasphemous manner; "the sailors were cursing blasphemously" -00279523 02 r 05 bluffly 0 bluntly 0 brusquely 0 flat_out 0 roundly 1 003 \ 00640660 a 0301 \ 00764484 a 0201 \ 00764301 a 0101 | in a blunt direct manner; "he spoke bluntly"; "he stated his opinion flat-out"; "he was criticized roundly" -00279763 02 r 01 boorishly 0 001 \ 01949859 a 0101 | like a boor, "he behaved boorishly at the party" -00279867 02 r 04 bountifully 0 bounteously 0 plentifully 0 plenteously 0 004 \ 00014490 a 0403 \ 01080900 a 0302 \ 01111418 a 0203 \ 01080900 a 0101 | in a bountiful manner -00280042 02 r 03 breadthwise 0 breadthways 0 broadwise 0 000 | in the direction of the breadth; "cut the cloth breadthwise" -00280168 02 r 01 breezily 0 001 \ 00805566 a 0101 | in a breezy manner; "he swings breezily into the title song" -00280283 02 r 01 briskly 0 001 \ 00874226 a 0102 | in a brisk manner; "she walked briskly in the cold air"; "`after lunch,' she said briskly" -00280427 02 r 03 bestially 0 brutishly 0 in_a_beastly_manner 0 002 \ 01263445 a 0204 \ 01263445 a 0102 | in an inhumane manner; "she treated her husband bestially" -00280593 02 r 01 bumptiously 0 001 \ 00205033 a 0101 | in a bumptious manner; "he behaved rather bumptiously and offended the hostess" -00280730 02 r 02 buoyantly 0 chirpily 0 002 \ 00363621 a 0201 \ 00363621 a 0101 | in a cheerfully buoyant manner; "we accepted the opportunity buoyantly" -00280886 02 r 01 on_air 0 000 | very happily; "we were floating on air at the news" -00280972 02 r 01 bureaucratically 0 001 \ 03051619 a 0101 | with respect to bureaucracy; "it's bureaucratically complicated" -00281099 02 r 01 bureaucratically 1 001 \ 03051619 a 0101 | in a bureaucratic manner; "his bureaucratically petty behavior annoyed her" -00281237 02 r 02 cagily 0 circumspectly 0 002 \ 01898490 a 0201 \ 00325619 a 0102 | in a cagey manner; "`I don't know yet,' he answered cagily" -00281383 02 r 01 cantankerously 0 001 \ 01135673 a 0101 | in a bad mood; "he answered her cantankerously" -00281491 02 r 01 capriciously 0 001 \ 00719442 a 0101 | in a capricious manner; "there were Turk's head lilies and patches of iris , islands of brilliant blue set capriciously in the green sea" -00281687 02 r 02 capriciously 1 freakishly 0 002 \ 01842304 a 0202 \ 01842304 a 0101 | unpredictably; "the weather has been freakishly variable" -00281834 02 r 01 captiously 0 001 \ 00647867 a 0101 | in a captious, carping manner; "he was captiously pedantic" -00281950 02 r 02 caustically 0 vitriolically 0 002 \ 01802165 a 020b \ 01802165 a 0107 | in a caustic vitriolic manner; "he addressed her caustically" -00282103 02 r 02 cautiously 0 carefully 2 004 ! 00282444 r 0202 \ 00309021 a 0201 ! 00282444 r 0101 \ 00325281 a 0101 | as if with kid gloves; with caution or prudence or tact; "she ventured cautiously downstairs"; "they handled the incident with kid gloves" -00282364 02 r 01 charily 0 001 \ 00325619 a 0103 | with great caution; warily -00282444 02 r 02 incautiously 0 carelessly 0 004 ! 00282103 r 0202 \ 00311663 a 0201 ! 00282103 r 0101 \ 00326436 a 0101 | without caution or prudence; "one unfortunately sees historic features carelessly lost when estates fall into unsympathetic hands" -00282700 02 r 02 disdainfully 2 cavalierly 0 002 \ 00788145 a 0201 \ 01891109 a 0101 | in a proud and domineering manner; "he treated his staff cavalierly" -00282858 02 r 06 endlessly 1 ceaselessly 0 incessantly 2 unceasingly 0 unendingly 0 continuously 1 006 \ 00594413 a 0601 \ 01755024 a 0507 \ 00595299 a 0406 \ 00595299 a 0303 \ 00595299 a 0201 \ 01007947 a 0102 | with unflagging resolve; "dance inspires him ceaselessly to strive higher and higher toward the shining pinnacle of perfection that is the goal of every artiste" -00283235 02 r 02 interminably 0 endlessly 2 002 \ 01439784 a 0201 \ 01439784 a 0103 | all the time; seemingly without stopping; "a theological student with whom I argued interminably"; "her nagging went on endlessly" -00283454 02 r 01 centennially 0 001 \ 02998988 a 0101 | every hundred years; once in a century; "the birthday of this city is being celebrated centennially" -00283613 02 r 01 chaotically 0 001 \ 01669507 a 0101 | in a manner suggestive of chaos; "the room was chaotically disorganized" -00283743 02 r 01 chaotically 1 001 \ 02390569 a 0101 | in a wild and confused manner; "the drugged man was talking chaotically" -00283873 02 r 02 chastely 0 virtuously 0 002 \ 00361125 a 0205 \ 00360650 a 0101 | in a chaste and virtuous manner; "she lived chastely" -00284012 02 r 02 chattily 0 volubly 0 002 \ 02383831 a 0201 \ 02384077 a 0101 | in a chatty manner; "`when I was a girl,' she said chattily, `I used to ride a bicycle'" -00284183 02 r 02 cheaply 0 inexpensively 0 001 \ 00934199 a 0101 | with little expenditure of money; "I bought this car very cheaply" -00284319 02 r 03 cheekily 0 nervily 0 brashly 0 003 \ 00204779 a 0301 \ 00204779 a 0203 \ 00204779 a 0102 | in a brash cheeky manner; "brashly, she asked for a rebate" -00284489 02 r 02 gallantly 0 chivalrously 0 003 ! 00484570 r 0201 \ 00640106 a 0201 \ 00640106 a 0102 | in a gallant manner; "he gallantly offered to take her home" -00284656 02 r 02 churlishly 0 surlily 0 002 \ 01139067 a 0201 \ 01142595 a 0101 | in a churlish manner; "the store owner treated his customers churlishly" -00284813 02 r 01 circularly 0 001 \ 00676271 a 0101 | in a circular manner -00284890 02 r 02 clannishly 0 cliquishly 0 002 \ 01858740 a 0202 \ 01858740 a 0101 | in a clannish manner; "these four friends always act clannishly, and don't let us participate in their activities" -00285092 02 r 03 fairly 3 fair 1 clean 0 002 ! 00285266 r 0101 \ 00956131 a 0101 | in conformity with the rules or laws and without fraud or cheating; "they played fairly" -00285266 02 r 02 unfairly 0 below_the_belt 0 002 ! 00285092 r 0101 \ 00957176 a 0101 | in an unfair manner; "they dealt with him unfairly"; "their accusations hit below the belt" -00285447 02 r 01 cleanly 1 000 | without difficulty or distortion; "she played the piano accompaniment cleanly" -00285561 02 r 01 cleanly 2 001 \ 00417413 a 0101 | in a manner that minimizes dirt and pollution; "the motor burns cleanly" -00285687 02 r 02 clearly 3 clear 1 001 \ 00780011 a 0101 | in an easily perceptible manner; "could be seen clearly under the microscope"; "She cried loud and clear" -00285854 02 r 02 clear 3 all_the_way 3 000 | completely; "read the book clear to the end"; "slept clear through the night"; "there were open fields clear to the horizon" -00286026 02 r 01 climatically 0 001 \ 03055374 a 0101 | with respect to climate; "they were used to a climatically different environment" -00286166 02 r 01 coastwise 0 000 | by way of, or along the coast; "we were travelling coastwise" -00286265 02 r 02 coaxingly 0 cajolingly 0 000 | in a cajoling manner; "`Come here,' she said coaxingly" -00286371 02 r 01 coherently 0 002 ! 00286518 r 0101 \ 01925708 a 0101 | in a coherent manner; "she could not talk coherently after the accident" -00286518 02 r 01 incoherently 0 002 ! 00286371 r 0101 \ 00464962 a 0101 | in an incoherent manner; "he talked incoherently when he drank too much" -00286667 02 r 03 colloquially 0 conversationally 0 informally 2 003 \ 01045711 a 0301 \ 01045963 a 0202 \ 01045963 a 0101 | with the use of colloquial expressions; "this building is colloquially referred to as The Barn" -00286889 02 r 02 collectedly 0 composedly 0 002 \ 00529266 a 0201 \ 00530354 a 0101 | in a self-collected or self-possessed manner; "he announced the death of his father collectedly" -00287074 02 r 01 colloidally 0 001 \ 02903946 a 0101 | in a colloidal manner; "particles were colloidally dispersed in the medium" -00287207 02 r 02 combatively 0 scrappily 0 002 \ 00084661 a 0201 \ 00082766 a 0103 | in a bellicose contentious manner; "`Don't trespass onto my property,' the neighbor shouted combatively" -00287399 02 r 02 comfortingly 0 consolingly 0 002 \ 00197319 a 0203 \ 00197319 a 0101 | in a comforting or consoling manner; "one part of a strange world should be given a comfortingly familiar form" -00287601 02 r 01 compactly 0 001 \ 00502180 a 0101 | taking up no more space than necessary; "liquid food compactly stored in a pressurized tank" -00287749 02 r 01 compatibly 0 002 ! 00287842 r 0101 \ 00507464 a 0101 | with compatibility -00287842 02 r 01 incompatibly 0 002 ! 00287749 r 0101 \ 00508192 a 0101 | without compatibility -00287940 02 r 01 complacently 0 001 \ 00589067 a 0101 | in a self-satisfied manner; "he complacently lived out his life as a village school teacher" -00288091 02 r 01 uncomplainingly 0 002 ! 00288307 r 0101 \ 00514278 a 0101 | without complaining; "an equally gallant little wife and mother uncomplainingly keeping up the production of tasty and nourishing meals" -00288307 02 r 01 complainingly 0 002 ! 00288091 r 0101 \ 00513799 a 0101 | with complaints; "she did her work, but she did so complainingly" -00288450 02 r 01 comprehensively 0 002 ! 00288556 r 0101 \ 00525453 a 0101 | in an all-inclusive manner -00288556 02 r 01 noncomprehensively 0 002 ! 00288450 r 0101 \ 00529075 a 0101 | in a limited way -00288655 02 r 03 compulsorily 0 obligatorily 0 mandatorily 0 003 \ 00848466 a 0302 \ 00848074 a 0201 \ 00848466 a 0101 | in a manner that cannot be evaded; "the ministry considers that contributions to such a fund should be met from voluntary donations rather than from rates compulsorily levied." -00288955 02 r 01 computationally 0 001 \ 02907473 a 0101 | with regard to computation; "computationally, this is a tricky problem" -00289088 02 r 01 brotherly 0 002 ;u 07073447 n 0000 \ 00291471 a 0101 | (archaic as adverb) in a brotherly manner -00289204 02 r 01 pro 0 001 ! 00289294 r 0101 | in favor of a proposition, opinion, etc. -00289294 02 r 01 con 0 001 ! 00289204 r 0101 | in opposition to a proposition, opinion, etc.; "much was written pro and con" -00289421 02 r 02 conceitedly 0 self-conceitedly 0 002 \ 01891773 a 0204 \ 01891773 a 0101 | with conceit; in a conceited manner; "he always acts so conceitedly!" -00289586 02 r 01 conceptually 0 001 \ 00012362 a 0101 | in a conceptual manner; "he can no longer think conceptually"; "conceptually, the idea is quite simple" -00289748 02 r 01 concernedly 0 000 | in a manner showing concern; "`Are you all right,' he asked concernedly" -00289860 02 r 05 concisely 0 briefly 3 shortly 4 in_brief 1 in_short 1 002 \ 00547166 a 0201 \ 00546646 a 0101 | in a concise manner; in a few words; "the history is summed up concisely in this book"; "she replied briefly"; "briefly, we have a problem"; "to put it shortly" -00290136 02 r 01 in_a_nutshell 0 000 | summed up briefly; "gave the facts in a nutshell"; "just tell me the story in a nutshell"; "explained the situation in a nutshell" -00290308 02 r 02 succinctly 1 compactly 1 002 \ 00547317 a 0202 \ 00547317 a 0103 | with concise and precise brevity; to the point; "Please state your case as succinctly as possible"; "he wrote compactly but clearly" -00290527 02 r 01 conically 0 001 \ 02844728 a 0102 | in a conical manner; "conically shaped" -00290622 02 r 01 cynically 0 001 \ 02463582 a 0101 | with cynicism; in a cynical manner; "Larsen's frost-blackened lips curved cynically" -00290762 02 r 01 cytophotometrically 0 001 \ 02708649 a 0101 | by cytophotometric means -00290852 02 r 01 cytoplasmically 0 001 \ 02708776 a 0101 | by means of cytoplasm -00290935 02 r 02 cursorily 0 quickly 3 002 \ 01270486 a 0202 \ 00312234 a 0102 | without taking pains; "he looked cursorily through the magazine" -00291083 02 r 01 cumulatively 0 001 \ 00048460 a 0102 | in a cumulative manner; "mind has become self-reproducing through man's capacity to transmit experience and its products cumulatively" -00291276 02 r 01 cum_laude 0 001 \ 02586089 a 0101 | with honor; "he graduated cum laude" -00291368 02 r 01 magna_cum_laude 0 001 \ 02586608 a 0101 | with high honor; "he graduated magna cum laude" -00291477 02 r 01 summa_cum_laude 0 001 \ 02587407 a 0101 | with highest honor; "he graduated summa cum laude" -00291589 02 r 01 criminally 0 001 \ 01322323 a 0101 | in violation of the law; in a criminal manner; "the alterations in the document were ruled to be criminally fraudulent" -00291765 02 r 02 criminally 1 reprehensively 0 002 \ 02035765 a 0204 \ 02035765 a 0102 | in a shameful manner; "the garden was criminally neglected" -00291916 02 r 01 coyly 0 001 \ 01538118 a 0101 | in a coy manner; "she pouted and looked at him coyly" -00292021 02 r 01 cross-legged 0 000 | with the legs crossed; "he sat on the floor cross-legged and meditated" -00292133 02 r 03 condescendingly 0 patronizingly 0 patronisingly 0 003 \ 02338917 a 0304 \ 02338917 a 0203 \ 02338917 a 0102 | with condescension; in a patronizing manner; "he treats his secretary condescendingly" -00292349 02 r 02 consecutive 0 sequentially 0 002 \ 01667729 a 0203 \ 01667729 a 0101 | in a consecutive manner; "we numbered the papers consecutively" -00292503 02 r 03 conservatively 0 cautiously 2 guardedly 0 001 \ 00326202 a 0301 | in a conservative manner; "we estimated the number of demonstrators conservatively at 200,000." -00292684 02 r 01 conditionally 0 001 ! 00292805 r 0101 | subject to a condition; "he accepted the offer conditionally" -00292805 02 r 01 unconditionally 2 001 ! 00292684 r 0101 | not subject to a condition; "he accepted the offer unconditionally" -00292934 02 r 01 crucially 0 001 \ 00655779 a 0101 | to a crucial degree; "crucially important"; "crucially, he must meet us at the airport" -00293077 02 r 01 crosswise 1 000 | not in the intended manner; "things are going crosswise" -00293171 02 r 01 crisscross 0 000 | crossing one another in opposite directions -00293253 02 r 01 counter 0 000 | in the opposite direction; "run counter" -00293329 02 r 01 counteractively 0 001 \ 00042837 a 0101 | in a counteractive manner -00293416 02 r 01 cross-country 0 000 | across the countryside; "the river runs cross-country"; "the road runs cross-country" -00293543 02 r 01 cross-country 1 000 | not following tracks or roads; "they liked to race cross-country" -00293650 02 r 03 crossly 0 grouchily 0 grumpily 0 003 \ 01136248 a 0306 \ 01136248 a 0205 \ 01136248 a 0103 | in an ill-natured manner; "she looked at her husband crossly" -00293824 02 r 01 crosstown 0 001 \ 00652893 a 0101 | across a town or city; "he traveled crosstown" -00293926 02 r 07 craftily 0 cunningly 0 foxily 0 knavishly 0 slyly 0 trickily 0 artfully 2 007 \ 00147734 a 0701 \ 00148078 a 060a \ 00148078 a 0508 \ 00148078 a 0406 \ 00148078 a 0304 \ 00148078 a 0202 \ 00148078 a 0101 | in an artful manner; "he craftily arranged to be there when the decision was announced"; "had ever circumstances conspired so cunningly?" -00294289 02 r 01 confusedly 0 001 \ 00465221 a 0101 | in a confused manner; "Queen Augusta wrote him an hysterical letter in which she confusedly sympathised with him" -00294459 02 r 02 consequently 1 therefore 1 001 \ 00122844 a 0102 | as a consequence; "he had good reason to be grateful for the opportunities which they had made available to him and which consequently led to the good position he now held" -00294702 02 r 01 consequentially 0 001 ! 00294782 r 0101 | having consequence -00294782 02 r 02 inconsequentially 0 inconsequently 0 002 \ 01280349 a 0201 ! 00294702 r 0101 | lacking consequence; "`You're so beautifully dressed,' she said and added quite inconsequentially, `Can you stay the night?'" -00295006 02 r 01 constructively 0 001 \ 00584820 a 0101 | in a constructive manner; "it is my task to look critically and constructively at the flaws and the failures" -00295176 02 r 01 contemporaneously 0 001 \ 02378191 a 0103 | during the same period of time; "contemporaneously, or possibly a little later, there developed a great Sumerian civilisation" -00295366 02 r 01 contrastingly 0 001 \ 02066142 a 0101 | in a contrasting manner; "contrastingly, both the rooms leading off it gave an immediate impression of being disgraced" -00295545 02 r 03 coolly 0 nervelessly 0 nonchalantly 1 003 \ 00545746 a 0303 \ 00530772 a 0203 \ 00530772 a 0101 | in a composed and unconcerned manner; "without more ado Barker borrowed a knife from his brigade Major and honed it on a carborundum stone as coolly as a butcher" -00295825 02 r 04 incredibly 0 improbably 0 implausibly 0 unbelievably 3 006 ! 00244641 r 0401 \ 00645493 a 0402 \ 01799957 a 0301 \ 00646117 a 0201 \ 00645493 a 0101 ! 00296131 r 0101 | not easy to believe; "behind you the coastal hills plunge to the incredibly blue sea backed by the Turkish mountains" -00296131 02 r 04 credibly 0 believably 3 plausibly 0 probably 1 005 \ 01413247 a 0401 \ 01799457 a 0301 \ 00644839 a 0202 \ 00644839 a 0101 ! 00295825 r 0101 | easy to believe on the basis of available evidence; "he talked plausibly before the committee"; "he will probably win the election" -00296425 02 r 03 incredulously 0 unbelievingly 0 disbelievingly 0 005 \ 00647247 a 0301 ! 00296658 r 0202 \ 00647247 a 0204 ! 00296658 r 0101 \ 00647070 a 0101 | in an incredulous manner; "the woman looked up at her incredulously" -00296658 02 r 02 credulously 0 believingly 0 003 ! 00296425 r 0202 ! 00296425 r 0101 \ 00646413 a 0101 | in a credulous manner; "the children followed the teacher credulously" -00296836 02 r 03 cryptically 0 enigmatically 0 mysteriously 1 003 \ 00939444 a 0305 \ 00534524 a 0201 \ 00939444 a 0101 | in a cryptic manner; "we will meet again," he said cryptically -00297023 02 r 01 cryptographically 0 001 \ 02706691 a 0102 | in a cryptographic manner -00297112 02 r 02 cunningly 1 cutely 0 002 \ 00167278 a 0202 \ 00167278 a 0101 | in an attractive manner; "how cunningly the olive-green dress with its underskirt of rose-brocade fitted her perfect figure" -00297319 02 r 03 curtly 0 short 0 shortly 2 002 \ 00640660 a 0304 \ 00640660 a 0103 | in a curt, abrupt and discourteous manner; "he told me curtly to get on with it"; "he talked short with everyone"; "he said shortly that he didn't like it" -00297563 02 r 03 damned 0 damnably 0 cursedly 0 002 \ 00669478 a 0301 \ 00670635 a 0201 | in a damnable manner; "kindly Arthur--so damnably , politely , endlessly persistent!" -00297741 02 r 02 damply 0 moistly 0 002 \ 02548820 a 0203 \ 02548820 a 0101 | in a damp manner; "a scarf was tied round her head but the rebellious curl had escaped and hung damply over her left eye" -00297943 02 r 01 dauntingly 0 001 \ 00867520 a 0101 | to a degree or in a manner that daunts; "dauntingly difficult" -00298062 02 r 02 dazedly 0 torpidly 0 002 \ 00034322 a 0204 \ 00875962 a 0101 | in a daze; in a dazed manner; "he wondered dazedly whether the term after next at his new school wouldn't matter so much" -00298266 02 r 01 decisively 2 001 \ 00701178 a 0101 | in an indisputable degree; "the Fisher Act of 1918 decisively raised their status and pay" -00298413 02 r 01 decisively 0 002 ! 00298560 r 0101 \ 00684480 a 0101 | with finality; conclusively; "the voted settled the argument decisively" -00298560 02 r 01 indecisively 0 002 ! 00298413 r 0101 \ 00685483 a 0101 | without finality; inconclusively; "the battle ended indecisively; neither side had clearly won but neither side admitted defeat" -00298765 02 r 02 decisively 1 resolutely 1 002 ! 00298910 r 0101 \ 00685638 a 0101 | with firmness; "`I will come along,' she said decisively" -00298910 02 r 01 indecisively 1 002 ! 00298765 r 0101 \ 00686081 a 0101 | lacking firmness or resoluteness; "`I don't know,' he said indecisively" -00299059 02 r 01 deftly 0 001 \ 00062367 a 0101 | in a deft manner; "Lois deftly removed her scarf" -00299161 02 r 02 dejectedly 0 in_low_spirits 0 001 \ 00703109 a 0101 | in a dejected manner; "when she came back Sophie and Esther were sitting dejectedly in the kitchen" -00299334 02 r 01 delightedly 0 001 \ 01805730 a 0101 | with delight; "delightedly, she accepted the invitation" -00299448 02 r 01 delightfully 0 001 \ 01807964 a 0101 | in a delightful manner; "the farm house, though in itself a small one, is delightfully situated" -00299603 02 r 01 demurely 0 001 \ 01538118 a 0102 | in a demure manner; "the army girl, tall and demurely pretty, threw a quick side-glance at her" -00299753 02 r 02 densely 0 thickly 1 002 ! 00477060 r 0201 \ 00539009 a 0201 | in a concentrated manner; "old houses are often so densely packed that perhaps three or four have to be demolished for every new one built"; "a thickly populated area" -00300002 02 r 01 compactly 2 001 \ 00502180 a 0101 | in a compact manner or state; "The children were packed compactly into the car" -00300137 02 r 01 tightly 2 001 \ 01447302 a 0101 | in a tight or constricted manner; "a tightly packed pub" -00300247 02 r 06 possibly 0 perchance 1 perhaps 0 maybe 0 mayhap 0 peradventure 0 000 | by chance; "perhaps she will call tomorrow"; "we may possibly run into them at the concert"; "it may peradventure be thought that there never was such a time" -00300496 02 r 01 possibly 1 002 ! 00300682 r 0101 \ 01821266 a 0101 | to a degree possible of achievement or by possible means; "they can't possibly get here in time for the funeral?" -00300682 02 r 01 impossibly 1 002 ! 00300496 r 0101 \ 01823092 a 0101 | to a degree impossible of achievement; "long thought to be an impossibly difficult operation"; "impossibly far from sources of supply" -00300891 02 r 01 potentially 0 001 \ 00044353 a 0101 | with a possibility of becoming actual; "he is potentially dangerous"; "potentially useful" -00301039 02 r 01 absurdly 0 001 \ 01431112 a 0101 | in an absurd manner or to an absurd degree; "an absurdly rich young woman" -00301168 02 r 04 derisively 0 scoffingly 0 derisorily 0 mockingly 0 002 \ 01995596 a 0404 \ 01995596 a 0101 | in a disrespectful and mocking manner; "`Sorry,' she repeated derisively" -00301354 02 r 01 descriptively 0 001 \ 00732682 a 0101 | by giving a description; "these topics need to be treated not just descriptively" -00301495 02 r 01 deservedly 0 001 ! 00301654 r 0101 | as deserved; "he chalked up two goals which deservedly gave Bolton their second victory of the season" -00301654 02 r 01 undeservedly 0 002 ! 00301495 r 0101 \ 01371646 a 0101 | in an unmerited manner; "the team chalked up another victory, the last one quite undeservedly, in my opinion" -00301840 02 r 02 despairingly 0 despondently 0 002 \ 01230153 a 0201 \ 01229826 a 0101 | with desperation; "`Why can't you understand?,' she asked despairingly" -00302003 02 r 01 developmentally 0 001 \ 02945820 a 0101 | with respect to development; "developmentally retarded" -00302120 02 r 02 devilishly 0 devilish 0 001 \ 01133374 a 0101 | in a playfully devilish manner; "the socialists are further handicapped if they believe that capitalists are not only wicked but also devilishly clever" -00302340 02 r 01 congenially 0 001 \ 00560586 a 0101 | in a congenial manner; "`Let's all have a drink together,' he said congenially" -00302477 02 r 02 contagiously 0 infectiously 0 002 \ 01302811 a 0201 \ 01303298 a 0101 | in a contagious manner; "she was contagiously bubbly" -00302622 02 r 02 controversially 0 polemically 0 003 \ 00602563 a 0201 ! 00302791 r 0101 \ 00601783 a 0101 | involving controversy; "criticism too polemically stated" -00302791 02 r 01 uncontroversially 0 002 ! 00302622 r 0101 \ 00602721 a 0101 | not involving any controversy -00302902 02 r 01 convivially 0 001 \ 02258002 a 0101 | in a convivial manner; "`Let's go and have a drink,' she said convivially" -00303034 02 r 02 coquettishly 0 flirtatiously 0 002 \ 02131958 a 0202 \ 02131958 a 0101 | in a flirtatious manner; "she smiled coquettishly" -00303177 02 r 03 enviously 0 covetously 1 jealously 1 003 \ 00888765 a 0303 \ 00888765 a 0201 \ 00888765 a 0102 | with jealousy; in an envious manner; "he looked at his friend's new car jealously" -00303376 02 r 03 creakily 0 creakingly 0 screakily 0 002 \ 01921335 a 0302 \ 01921335 a 0101 | in a creaky manner; "the old boat was moving along creakily" -00303534 02 r 01 crushingly 0 001 \ 00587697 a 0101 | in a crushing manner; "the team was crushingly defeated" -00303647 02 r 02 reprehensibly 0 culpably 0 002 \ 01321529 a 0206 \ 02035765 a 0104 | in a manner or to a degree deserving blame or censure -00303789 02 r 02 currishly 1 ignobly 0 002 \ 01589217 a 0201 \ 01590044 a 0101 | in a currish manner; meanspiritedly; "he behaved ignobly" -00303930 02 r 05 daftly 0 dottily 0 balmily 0 nuttily 0 wackily 0 005 \ 02074929 a 0516 \ 02074929 a 0413 \ 02074929 a 0301 \ 02074929 a 020a \ 02074929 a 0109 | in a mildly insane manner; "the old lady is beginning to behave quite dottily" -00304173 02 r 01 daintily 0 001 \ 01948092 a 0101 | in a refined manner; "she nibbled daintily at her cake" -00304283 02 r 01 daintily 1 001 \ 00706311 a 0101 | in a delicate manner; "the invitation cards were written up daintily in white and gold" -00304425 02 r 01 daringly 0 001 \ 00066146 a 0102 | in an adventurous manner; "daringly, he set out on a camping trip in East Africa" -00304561 02 r 01 daringly 1 001 \ 01686906 a 0102 | in an original manner; "daringly he took the first step" -00304672 02 r 01 dashingly 0 001 \ 00971933 a 0102 | in a highly fashionable manner; "he was dashingly handsome" -00304787 02 r 02 daylong 0 all_day_long 0 000 | during the entire day; "light pours daylong into the parlor" -00304898 02 r 02 deadly 2 lifelessly 0 002 \ 00097768 a 0201 \ 00099874 a 0101 | as if dead -00304992 02 r 01 decorously 0 002 ! 00305153 r 0101 \ 01878870 a 0105 | in a proper and decorous manner; "he pretended to be pleased and applauded decorously" -00305153 02 r 02 indecorously 0 unbecomingly 0 003 \ 01880918 a 0203 ! 00304992 r 0101 \ 00689471 a 0101 | without decorousness -00305283 02 r 02 willingly 0 volitionally 0 003 \ 02565801 a 0201 ! 00305431 r 0101 \ 02564986 a 0101 | in a willing manner; "I willingly accept" -00305431 02 r 01 unwillingly 0 002 ! 00305283 r 0101 \ 02566015 a 0101 | in an unwilling manner; "he had sinned against her unwillingly" -00305570 02 r 02 deeply 3 deep 0 001 \ 00690058 a 0101 | to a great depth;far down; "dived deeply"; "dug deep" -00305683 02 r 01 deep 2 001 \ 00445937 a 0101 | to a great distance; "penetrated deep into enemy territory"; "went deep into the woods" -00305821 02 r 02 deep 1 late 1 000 | to an advanced time; "deep into the night"; "talked late into the evening" -00305935 02 r 01 late 2 000 | at an advanced age or stage; "she married late"; "undertook the project late in her career" -00306059 02 r 04 defenseless 0 defenceless 0 defenselessly 0 defencelessly 0 002 \ 02524032 a 0202 \ 02524032 a 0101 | without defense; "the child was standing in the middle of the crossfire, defenselessly" -00306268 02 r 01 defensively 0 002 ! 00306682 r 0101 \ 01630117 a 0101 | in a defensive manner; "the general conviction that our side is in the right and acting defensively over what Russians call the German question and Americans the Berlin crisis" -00306520 02 r 01 defensively 1 001 \ 01632066 a 0101 | in an apologetic and defensive manner; "`I felt it better you should know,' said Sir Cedric defensively" -00306682 02 r 01 offensively 0 002 ! 00306268 r 0101 \ 01628946 a 0101 | in an aggressive manner; "`In this crisis, we must act offensively,' the President said"; "the admiral intends to act offensively in the Mediterranean" -00306909 02 r 03 offensively 1 objectionably 0 obnoxiously 0 003 \ 01626874 a 0302 \ 01626874 a 0201 \ 01628302 a 0101 | in an obnoxious manner; "he said so in one of his more offensively intellectually arrogant sentences" -00307134 02 r 01 inoffensively 0 002 ! 00307333 r 0101 \ 01627459 a 0101 | in a not unpleasantly offensive manner; "that wretched beast, the elephant, breathing inoffensively not a pace behind me" -00307333 02 r 01 offensively 2 002 ! 00307134 r 0101 \ 01624633 a 0101 | in an unpleasantly offensive manner; "he smelled offensively unwashed" -00307479 02 r 01 distinctly 3 001 \ 00779374 a 0101 | to a distinct degree; "urbanization in Spain is distinctly correlated with a fall in reproductive rate" -00307639 02 r 01 distinctly 1 001 \ 02067063 a 0101 | in a distinct and distinguishable manner; "the subtleties of this distinctly British occasion" -00307790 02 r 01 distractedly 0 001 \ 00165458 a 0101 | in a distracted manner; "`Come in,' he said distractedly" -00307906 02 r 01 deferentially 0 001 \ 01994180 a 0102 | in a respectfully deferential manner; "he listened deferentially" -00308031 02 r 02 deferentially 1 submissively 0 002 \ 00790691 a 0203 \ 01994180 a 0102 | in a servile manner; "he always acts so deferentially around his supervisor" -00308200 02 r 01 deliriously 0 001 \ 02543823 a 0101 | as if in a delirium; "he was talking deliriously" -00308307 02 r 01 deliriously 1 001 \ 02390724 a 0101 | in a delirious manner; "her answer made him deliriously happy" -00308427 02 r 01 delusively 0 001 \ 01942507 a 0101 | in a deceptive and unrealistic manner; "the village looked delusively near" -00308559 02 r 03 demonstrably 0 provably 0 incontrovertibly 0 003 \ 00591147 a 0302 \ 01619105 a 0202 \ 01619105 a 0101 | in an obvious and provable manner; "his documentary sources are demonstrably wrong" -00308767 02 r 02 desolately 0 disconsolately 0 001 \ 01232298 a 0202 | in grief-stricken loneliness; without comforting circumstances or prospects -00308916 02 r 03 diabolically 0 devilishly 3 fiendishly 0 003 \ 01132515 a 0304 \ 01133374 a 0201 \ 01132515 a 0102 | as a devil; in an evil manner; "his writing could be diabolically satiric" -00309111 02 r 01 diffidently 0 001 \ 00339941 a 0101 | in a diffident manner; "`Oh, well,' he shrugged diffidently, `I like the work.'" -00309249 02 r 01 despicably 0 001 \ 01133017 a 0101 | in a despicable manner; "he acted despicably" -00309351 02 r 02 despitefully 0 spitefully 2 002 \ 00225099 a 0202 \ 00225099 a 0101 | in a maliciously spiteful manner; "pray for them that despitefully use us" -00309515 02 r 01 destructively 0 001 \ 00586183 a 0101 | in a destructive manner; "he is destructively aggressive" -00309632 02 r 04 detestably 0 repulsively 0 abominably 1 odiously 1 004 \ 01460679 a 0404 \ 01460679 a 0301 \ 01625063 a 0205 \ 01625063 a 0102 | in an offensive and hateful manner; "I don't know anyone who could have behaved so abominably" -00309875 02 r 03 detrimentally 0 harmfully 0 noxiously 0 004 \ 01611067 a 0301 ! 00310036 r 0201 \ 01160031 a 0201 \ 01161984 a 0102 | in a detrimental manner -00310036 02 r 01 harmlessly 0 002 ! 00309875 r 0102 \ 01159655 a 0101 | in a harmless manner; "this is a harmlessly childish game" -00310169 02 r 01 deviously 0 001 \ 00768098 a 0101 | in a devious manner; "he got the promotion by behaving deviously" -00310290 02 r 01 devotedly 0 001 \ 00519668 a 0101 | with devotion; "He served his master devotedly" -00310393 02 r 02 devoutly 0 piously 1 002 \ 01781478 a 0201 \ 01783710 a 0101 | in a devout and pious manner; "she was devoutly Catholic" -00310533 02 r 03 dexterously 0 dextrously 0 deftly 1 003 \ 00062367 a 0301 \ 00062367 a 0203 \ 00062367 a 0102 | with dexterity; in a dexterous manner; "dextrously he untied the knots" -00310720 02 r 01 diagonally 0 001 \ 01719870 a 0101 | in a diagonal manner; "she lives diagonally across the street from us" -00310847 02 r 02 diagrammatically 0 graphically 3 001 \ 01715430 a 0101 | in a diagrammatic manner; "the landscape unit drawn diagrammatically illustrates the gentle rolling relief, with a peat-filled basin" -00311057 02 r 01 diametrically 0 001 \ 02066312 a 0101 | as from opposite ends of a diameter; "when two honest witnesses give accounts of the same event that differ diametrically, how can anyone prove that the evidence you gave was deliberately false?"; "three of these brushes were approximately 120 feet apart and the fourth diametrically opposite to one of the three" -00311430 02 r 03 dictatorially 0 autocratically 2 magisterially 1 002 \ 00787595 a 0201 \ 00787357 a 0102 | in an overbearingly domineering manner; as a dictator; "this manager acts dictatorially toward his colleagues" -00311651 02 r 02 didactically 0 pedagogically 0 002 \ 02945971 a 0202 \ 01324131 a 0101 | in a didactic manner; "this is a didactically sound method" -00311803 02 r 01 differentially 0 001 \ 02712922 a 0101 | in a differential manner; "Hubel and Wiesel have found cells that respond differentially according to the direction in which a stimulus is moved across the retina" -00312027 02 r 01 diligently 0 001 \ 00754107 a 0101 | with diligence; in a diligent manner; "we may diligently observe the Lord's supper on the first day of the week, diligently preach the gospel, or minister to the saint" -00312252 02 r 01 direfully 0 001 \ 00193799 a 0103 | in a direful manner; "seeing himself trapped, he cried out direfully" -00312377 02 r 02 dirtily 0 filthily 0 002 \ 00421590 a 0201 \ 00419289 a 0101 | in a filthy unclean manner; "a dirtily dressed camel driver" -00312520 02 r 01 dirtily 1 000 | in a sordid manner; "as dirtily drunk as usual" -00312603 02 r 01 disagreeably 0 002 ! 00219110 r 0102 \ 00089355 a 0101 | in a disagreeable manner; "`I took no harm from the journey, thank you,' she said disagreeably" -00312775 02 r 01 disappointedly 0 001 \ 02333976 a 0102 | in disappointment; in a disappointed manner; "she left the gambling table disappointedly" -00312925 02 r 01 disappointingly 0 001 \ 02082611 a 0101 | in a disappointing manner; "the discoverer of argon, Sir William Ramsay, looked disappointingly ordinary" -00313092 02 r 01 disastrously 0 001 \ 01050088 a 0103 | in a disastrous manner; "the real value of the trust capital may be disastrously less than when the trust began" -00313263 02 r 01 disconcertingly 0 001 \ 01809019 a 0101 | in a disturbing or embarrassing manner; "he drank some sherry, his eyes disconcertingly keen as he watched her" -00313436 02 r 01 discontentedly 0 001 \ 00589624 a 0101 | with discontent; in a discontented manner; "he was still rumbling discontentedly when Pike returned bearing a folder of foolscap sheets" -00313633 02 r 07 disgracefully 0 ingloriously 0 ignominiously 0 discreditably 0 shamefully 0 dishonorably 0 dishonourably 0 007 \ 01227137 a 0701 \ 01227137 a 0601 \ 01227546 a 0506 \ 01984097 a 0401 \ 01227546 a 0303 \ 01227546 a 0204 \ 01227546 a 0102 | in a dishonorable manner or to a dishonorable degree; "his grades were disgracefully low" -00313981 02 r 01 disgustedly 0 001 \ 01806677 a 0101 | with disgust; "disgustedly, she averted her eyes when they brought in the mutilated body of the horse" -00314141 02 r 04 disgustingly 0 distastefully 0 revoltingly 0 sickeningly 0 004 \ 02560035 a 0407 \ 01625893 a 030a \ 01625893 a 0203 \ 01625893 a 0101 | in a disgusting manner or to a disgusting degree; "the beggar was disgustingly filthy" -00314384 02 r 02 honestly 1 aboveboard 0 002 \ 01222360 a 0101 ! 00314597 r 0101 | in an honest manner; "in he can't get it honestly, he is willing to steal it"; "was known for dealing aboveboard in everything" -00314597 02 r 03 dishonestly 0 venally 0 deceitfully 0 004 \ 01223271 a 0302 \ 00621207 a 0205 \ 01222884 a 0101 ! 00314384 r 0101 | in a corrupt and deceitful manner; "he acted dishonestly when he gave the contract to his best friend" -00314835 02 r 03 honestly 0 candidly 0 frankly 0 004 ;u 06321054 n 0000 \ 00764484 a 0304 \ 00764484 a 0202 \ 02180157 a 0101 | (used as intensives reflecting the speaker's attitude) it is sincerely the case that; "honestly, I don't believe it"; "candidly, I think she doesn't have a conscience"; "frankly, my dear, I don't give a damn" -00315174 02 r 01 hypocritically 0 001 \ 02182562 a 0101 | in a hypocritical manner; "he behaved hypocritically by praying piously when people were watching" -00315333 02 r 01 dishonorably 1 002 \ 01227137 a 0101 ! 00315457 r 0101 | with dishonor; "he was dishonorably discharged" -00315457 02 r 02 honorably 0 honourably 0 001 ! 00315333 r 0101 | with honor; "he was honorably discharged after many years of service" -00315595 02 r 02 disingenuously 0 artfully 1 002 \ 01310685 a 0202 \ 01310685 a 0101 | in a disingenuous manner; "disingenuously, he asked leading questions abut his opponent's work" -00315780 02 r 01 disinterestedly 0 001 \ 01723543 a 0101 | without bias; without selfish motives; "he decided the case disinterestedly" -00315918 02 r 01 disjointedly 0 001 \ 00465221 a 0103 | in a disjointed manner; "`We're not married, not really married,' she said, and slowly, reluctantly, disjointedly it came out" -00316103 02 r 01 loyally 0 002 ! 00316318 r 0101 \ 00961392 a 0101 | with loyalty; in a loyal manner; "government will not be efficient unless the people as a whole accept leadership loyally and enthusiastically" -00316318 02 r 01 disloyally 0 002 ! 00316103 r 0101 \ 00962634 a 0101 | without loyalty; in a disloyal manner; "his men acted disloyally and betrayed him in the end" -00316486 02 r 02 dismally 0 dreadfully 1 001 \ 01126291 a 0204 | in a dreadful manner; "as he looks at the mess he has left behind he must wonder how the Brits so often managed to succeed in the kind of situation where he has so dismally failed" -00316734 02 r 02 dismally 1 drearily 0 002 \ 00364881 a 020b \ 00364881 a 0105 | in a cheerless manner; "in August 1914 , there was a dismally sentimental little dinner, when the French, German, Austrian and Belgian members of the committee drank together to the peace of the future" -00317020 02 r 02 obediently 0 yieldingly 0 003 \ 02329220 a 0201 ! 00317205 r 0101 \ 01612053 a 0101 | in an obedient manner; "obediently she slipped off her right shoe and stocking" -00317205 02 r 01 disobediently 0 002 ! 00317020 r 0101 \ 01613463 a 0101 | in a disobedient manner; "he went ahead disobediently and did what his supervisor had warned him not to do" -00317390 02 r 01 dispassionately 0 001 \ 01723648 a 0101 | in an impartially dispassionate manner; "although he was looking at the other girl, he did so dispassionately" -00317562 02 r 02 disparagingly 0 slightingly 0 002 \ 00906655 a 0207 \ 00907032 a 0103 | in a disparaging manner; "these mythological figures are described disparagingly as belonging `only to a story'" -00317766 02 r 02 dispiritedly 0 hopelessly 3 002 \ 01229020 a 0201 \ 00703615 a 0105 | in a dispirited manner without hope; "the first Mozartian opera to be subjected to this curious treatment ran dispiritedly for five performances" -00318001 02 r 01 displeasingly 0 001 \ 01808822 a 0101 | in a displeasing manner; "he made displeasingly cutting remarks about his friends" -00318143 02 r 01 disproportionately 0 002 ! 00318303 r 0101 \ 00482059 a 0101 | to a disproportionate degree; "his benefits were disproportionately generous" -00318303 02 r 02 proportionately 0 proportionally 0 003 \ 00482673 a 0201 ! 00318143 r 0101 \ 00481737 a 0101 | to a proportionate degree; "your salary will rise proportionately to your workload" -00318501 02 r 01 disproportionately 1 002 ! 00318641 r 0101 \ 00483048 a 0101 | out of proportion; "this wall is disproportionately long" -00318641 02 r 01 proportionately 1 002 ! 00318501 r 0101 \ 00894029 a 0102 | in proportion; "the height of this wall must be reduced proportionately to give the room pleasant dimensions" -00318830 02 r 02 disputatiously 0 argumentatively 0 002 \ 00603367 a 0201 \ 00603804 a 0103 | in a disputatious manner -00318951 02 r 01 disquietingly 0 001 \ 00480753 a 0101 | in a disquieting manner; "the disquietingly close sounds of gunfire" -00319079 02 r 01 disreputably 0 002 ! 00319180 r 0101 \ 01983797 a 0101 | in a disreputable manner -00319180 02 r 01 reputably 0 002 ! 00319079 r 0101 \ 01982646 a 0101 | in a reputable manner -00319275 02 r 01 respectfully 0 002 ! 00319482 r 0101 \ 01993940 a 0101 | in a respectful manner; "might I respectfully suggest to the Town Council that they should adopt a policy of masterly inactivity?" -00319482 02 r 01 disrespectfully 0 002 ! 00319275 r 0101 \ 01994602 a 0101 | in a disrespectful manner; "he treats his parents rather disrespectfully" -00319635 02 r 01 distantly 0 001 \ 00445548 a 0101 | from or at a distance; "dimly, distantly, voices sounded in the stillness" -00319765 02 r 01 distastefully 2 001 \ 01625893 a 0103 | in an offensively distasteful manner; "a distastefully explicit report on the Royal couple's marital life" -00319931 02 r 01 distressfully 0 001 \ 01189386 a 0102 | with distress; "`Doctor Rother says it's his only chance,' she added distressfully" -00320074 02 r 01 distributively 0 001 \ 00539793 a 0101 | in a distributive manner; "marine vertebrates have their weight supported distributively by the water" -00320237 02 r 01 distributively 1 001 \ 00467913 a 0101 | as individuals or as separate units (not collectively); "taken distributively, their rights are imperceptible" -00320408 02 r 02 distrustfully 0 mistrustfully 0 003 \ 02464277 a 0202 ! 00320568 r 0101 \ 02463154 a 0101 | with distrust; "she looked at him distrustfully" -00320568 02 r 03 trustfully 0 trustingly 0 confidingly 0 004 \ 02462883 a 0301 \ 02462619 a 0202 ! 00320408 r 0101 \ 02462619 a 0101 | with trust; in a trusting manner; "she looked at her father trustingly" -00320777 02 r 01 disturbingly 0 001 \ 01189386 a 0103 | in a disturbing manner; "the details of the kidnaper's letter had sounded disturbingly convincing" -00320934 02 r 01 doctrinally 0 001 \ 03006225 a 0101 | as a matter of doctrine -00321015 02 r 01 dogmatically 0 001 \ 00288070 a 0101 | in a narrow-minded dogmatic manner; "he is a dogmatically opinionated critic of Modern Art" -00321165 02 r 02 dolefully 0 sorrowfully 0 002 \ 01364008 a 0201 \ 01362387 a 0101 | with sadness; in a sorrowful manner; "his mother looked at him dolefully when he told her he had joined the Army" -00321366 02 r 01 domestically 0 001 \ 01038808 a 0101 | with respect to home or family; "the housewife bored us with her domestically limited conversation" -00321524 02 r 01 domestically 1 001 \ 01038102 a 0101 | with respect to the internal affairs of a government; "domestically, the president proposes a more moderate economic policy" -00321707 02 r 01 domineeringly 0 001 \ 00787136 a 0101 | in a domineering manner; "his wife behaved domineeringly" -00321824 02 r 01 double 1 000 | two together; "some people sleep better double" -00321906 02 r 01 double 2 000 | downward and forward; "he was bent double with pain" -00321993 02 r 02 double_time 0 double_quick 0 000 | at a faster speed; "now let's play the piece again double-quick" -00322112 02 r 02 doubtfully 0 dubiously 0 002 \ 00338013 a 0202 \ 00338013 a 0101 | in a doubtful manner; "Gerald shook his head doubtfully" -00322255 02 r 03 dowdily 0 frumpily 0 frumpishly 0 003 \ 00974519 a 0303 \ 00974519 a 0202 \ 00974519 a 0101 | in a dowdy unfashionable manner; "she dresses dowdily" -00322423 02 r 01 downhill 0 000 | toward the bottom of a hill; "running downhill, he gained a lot of speed" -00322533 02 r 01 downhill 1 000 | toward a lower or inferior state; "your performance has been going downhill for a long time now" -00322666 02 r 01 drably 0 001 \ 00405179 a 0101 | in a drab manner; "she dresses drably" -00322757 02 r 03 dreamily 0 moonily 0 dreamfully 0 002 \ 00165585 a 0202 \ 00165585 a 0101 | in a dreamy manner; "`She would look beautiful in the new dress,' Tommy said dreamily" -00322939 02 r 01 droopingly 0 001 \ 02403944 a 0101 | in a drooping manner; "a branch hung low, droopingly" -00323049 02 r 02 drowsily 0 somnolently 0 002 \ 00189253 a 0204 \ 00165766 a 0101 | in a drowsy manner; "`Time to get up,' she said drowsily" -00323193 02 r 01 dumbly 0 001 \ 00152629 a 0102 | in an inarticulate manner; "I nodded dumbly and he slit the envelope" -00323315 02 r 03 dumbly 1 densely 1 obtusely 0 003 \ 00440579 a 0305 \ 00440579 a 0201 \ 00440579 a 0104 | in a stupid manner; "he had so rapaciously desired and so obtusely expected to find her alone" -00323519 02 r 01 dutifully 0 001 \ 01613047 a 0101 | out of a sense of duty; in a dutiful manner; "he dutifully visited his mother every Sunday" -00323666 02 r 01 dynamically 0 001 \ 00808191 a 0101 | in a forceful dynamic manner; "this pianist plays dynamically" -00323786 02 r 01 east 0 000 | to, toward, or in the east; "we travelled east for several miles"; "located east of Rome" -00323908 02 r 01 west 0 000 | to, toward, or in the west; "we moved west to Arizona"; "situated west of Boston" -00324022 02 r 02 westward 0 westwards 0 000 | toward the west; "they traveled westward toward the setting sun" -00324135 02 r 02 eastward 0 eastwards 0 000 | toward the east; "they migrated eastward to Sweden" -00324235 02 r 01 easterly 2 002 ! 00324358 r 0101 \ 00823350 a 0101 | from the east; "the winds blew easterly all night" -00324358 02 r 01 westerly 2 002 ! 00324235 r 0101 \ 00824321 a 0101 | from the west; "the wind blew westerly" -00324470 02 r 01 westerly 0 001 \ 00824321 a 0101 | toward the west; "we began to steer away westerly"- Daniel Defoe -00324589 02 r 03 ebulliently 0 exuberantly 1 expansively 0 003 \ 00909220 a 0301 \ 02279723 a 0202 \ 02279723 a 0101 | in an ebullient manner; "Khrushchev ebulliently promised to supply rockets for the protection of Cuba against American aggression" -00324841 02 r 01 ecclesiastically 0 001 \ 02899486 a 0102 | in an ecclesiastic manner; "the candidate was ecclesiastically endorsed" -00324976 02 r 01 ecologically 0 001 \ 02906478 a 0101 | with respect to ecology; "ecologically speaking, this idea is brilliant; economically, it is a disaster" -00325139 02 r 03 ecstatically 0 rapturously 0 rhapsodically 0 003 \ 01367008 a 0305 \ 01367008 a 0203 \ 01367008 a 0101 | in an ecstatic manner; "he reacted ecstatically to my plan to travel to Africa" -00325343 02 r 02 edgeways 0 edgewise 0 000 | with the edge forward or on, by, or toward the edge; "he sawed the board edgeways"; "held it edgewise" -00325493 02 r 02 edgewise 1 edgeways 1 000 | as if by an edge; barely; "I could not get a word in edgewise" -00325603 02 r 01 educationally 0 001 \ 02946221 a 0101 | in an educational manner; "the assistant masters formed a committee of their own to consider what could be done educationally for the town" -00325802 02 r 02 eerily 0 spookily 0 000 | in an unnatural eery manner; "it was eerily quiet in the chapel" -00325912 02 r 01 effectually 0 001 ! 00326146 r 0101 | in an effectual manner; "Bismarck was constantly criticised by the more liberal newspapers, and he retaliated by passing an emergency decree that effectually muzzled the press" -00326146 02 r 01 ineffectually 0 002 ! 00325912 r 0101 \ 02497471 a 0102 | in an ineffectual manner; "she tried ineffectually to light the primus, and Thomas came to help her" -00326324 02 r 02 efficaciously 0 effectively 1 004 ! 00326564 r 0202 \ 00834198 a 0201 ! 00326564 r 0101 \ 00838856 a 0101 | in an effective manner; "these are real problems that can be dealt with most effectively by rational discussion" -00326564 02 r 02 inefficaciously 0 ineffectively 0 004 ! 00326324 r 0202 \ 00835609 a 0201 ! 00326324 r 0101 \ 00839411 a 0101 | in an ineffective manner; "he dealt with the problem rather ineffectively" -00326770 02 r 01 elementarily 0 001 \ 00750296 a 0101 | in an elementary manner -00326852 02 r 01 effusively 0 001 \ 00720524 a 0101 | in an effusive manner; "the critics praised her effusively" -00326968 02 r 01 demonstratively 0 001 \ 00720296 a 0101 | in a demonstrative manner; "he greeted her demonstratively" -00327089 02 r 02 egotistically 0 selfishly 0 003 ! 00327249 r 0201 \ 02098325 a 0201 \ 02098694 a 0101 | in an egotistical manner; "he behaved egotistically" -00327249 02 r 01 unselfishly 0 002 ! 00327089 r 0102 \ 02099019 a 0101 | in an unselfish manner; "he acted unselfishly when he helped her get the promotion" -00327408 02 r 01 elegantly 1 001 \ 01139613 a 0101 | in a gracefully elegant manner; "the members of these groups do not express themselves as accurately or as elegantly as their critics do" -00327601 02 r 01 elegantly 0 002 ! 00327756 r 0101 \ 00849357 a 0101 | with elegance; in a tastefully elegant manner; "the room was elegantly decorated" -00327756 02 r 01 inelegantly 0 002 ! 00327601 r 0101 \ 00851103 a 0101 | without elegance -00327848 02 r 02 eloquently 0 articulately 3 004 ! 00328025 r 0202 \ 00150202 a 0201 ! 00328025 r 0101 \ 00150505 a 0101 | with eloquence; "he expressed his ideas eloquently" -00328025 02 r 02 ineloquently 0 inarticulately 3 003 ! 00327848 r 0202 \ 00151105 a 0201 ! 00327848 r 0101 | without eloquence; in an inarticulate manner; "the freshman expresses his thoughts inarticulately" -00328235 02 r 01 embarrassingly 0 001 \ 01803335 a 0101 | causing embarrassment; "the great man was embarrassingly humble and self-effacing" -00328378 02 r 01 eminently 0 001 \ 02339120 a 0101 | in an eminent manner; "two subjects on which he was eminently qualified to make an original contribution" -00328539 02 r 01 emulously 0 001 \ 00512941 a 0101 | in a competitively imitative manner; "she emulously tried to outdo her older sister" -00328679 02 r 01 encouragingly 0 002 ! 00328830 r 0101 \ 00866471 a 0101 | in an encouraging manner; "`Go on,' he said encouragingly to his student" -00328830 02 r 01 discouragingly 0 002 ! 00328679 r 0101 \ 00867213 a 0101 | in a discouraging manner; "the failure rate on the bar exam is discouragingly high" -00328992 02 r 03 endways 0 endwise 0 end_on 0 000 | with the end forward or toward the observer; "houses built endways" -00329114 02 r 02 endways 1 endwise 1 000 | in or toward the direction of the ends; lengthwise; "endways pressure" -00329230 02 r 02 endways 2 endwise 2 000 | on end or upright; "sticks leaning against the wall endways" -00329336 02 r 01 enterprisingly 0 001 \ 00884778 a 0101 | in an enterprising manner; "`Let's go up that mountain,' she said enterprisingly" -00329478 02 r 01 entertainingly 0 000 | in an entertaining manner; "Byron's consumed memoirs possessed the merit of being well and entertainingly written" -00329635 02 r 01 environmentally 0 001 \ 02943151 a 0101 | for the environment; "the new recycling policy is environmentally safe" -00329768 02 r 01 equably 0 001 \ 01134486 a 0101 | in an equable manner; "he is an equably cheerful fellow" -00329878 02 r 01 equitably 0 002 ! 00330033 r 0101 \ 00958151 a 0101 | in an equitable manner; "the inheritance was equitably divided among the sisters" -00330033 02 r 01 inequitably 0 002 ! 00329878 r 0101 \ 00958712 a 0101 | in an inequitable manner; "their father's possessions were inequitably divided among the sons" -00330203 02 r 02 erectly 0 straight-backed 0 001 \ 01235859 a 0101 | in a straight-backed manner; "the old man still walks erectly" -00330337 02 r 02 eruditely 0 learnedly 0 002 \ 02084358 a 0202 \ 02084358 a 0101 | with erudition; in an erudite manner; "he talked eruditely about Indian mythology" -00330505 02 r 01 ethically 0 002 ! 00330709 r 0101 \ 00905386 a 0101 | in an ethical manner; from an ethical point of view; according to ethics; "he behaved ethically"; "this is ethically unacceptable" -00330709 02 r 01 unethically 0 002 ! 00330505 r 0101 \ 00905728 a 0101 | in an unethical manner; "he behaved unethically" -00330833 02 r 01 euphemistically 0 001 \ 00908483 a 0101 | in a euphemistic manner; "his violent death was euphemistically referred to as a passing away" -00330989 02 r 01 evasively 0 001 \ 00896182 a 0101 | with evasion; in an evasive manner; "her husband seemed to know many of the people who were named, but he replied evasively when asked who they were" -00331194 02 r 01 evenly 0 002 ! 00331594 r 0101 \ 00909545 a 0101 | in a level and regular way -00331291 02 r 01 evolutionarily 0 001 \ 03000725 a 0101 | in an evolutionary way; from an evolutionary point of view; "the mutation has been evolutionarily successful" -00331461 02 r 01 regularly 1 002 ! 00331697 r 0101 \ 02302187 a 0101 | in a regular way without variation; "try to breathe evenly" -00331594 02 r 01 unevenly 0 002 ! 00331194 r 0101 \ 00911327 a 0101 | in an uneven and irregular way -00331697 02 r 01 irregularly 1 001 ! 00331461 r 0101 | in an irregular manner; "the patient is breathing irregularly" -00331817 02 r 01 regularly 3 002 ! 00331940 r 0101 \ 01961937 a 0101 | having a regular form; "regularly shaped objects" -00331940 02 r 01 irregularly 3 002 ! 00331817 r 0101 \ 01962107 a 0101 | having an irregular form; "irregularly shaped solids" -00332069 02 r 02 evenly 1 equally 2 004 ! 00332365 r 0202 \ 00889831 a 0201 ! 00332365 r 0101 \ 00891170 a 0101 | in equal amounts or shares; in a balanced or impartial way; "a class evenly divided between girls and boys"; "they split their winnings equally"; "deal equally with rich and poor" -00332365 02 r 02 unevenly 1 unequally 2 004 ! 00332069 r 0202 \ 00892379 a 0201 ! 00332069 r 0101 \ 00892773 a 0102 | in an unequal or partial manner; "profits were distributed unevenly"; "angry at being dealt with so unequally" -00332596 02 r 02 evermore 1 forevermore 0 000 | at any future time; in the future; "lead a blameless life evermore" -00332714 02 r 01 excitingly 0 002 ! 00332906 r 0101 \ 00921014 a 0101 | in an exciting manner; "at the time of its appearance, the movie must have seemed excitingly new, even revolutionary" -00332906 02 r 01 unexcitingly 0 002 ! 00332714 r 0101 \ 00922594 a 0101 | in an unexciting manner; "this painting was nothing more but an unexcitingly grey canvas with a few red speckles" -00333096 02 r 03 excusably 0 forgivably 0 pardonably 0 006 ! 00333341 r 0302 \ 01721059 a 0301 ! 00333341 r 0203 \ 01721197 a 0202 ! 00333341 r 0101 \ 01721197 a 0101 | in an excusable manner or to an excusable degree; "he was excusably late" -00333341 02 r 03 inexcusably 0 unpardonably 0 unforgivably 0 006 ! 00333096 r 0302 \ 01721867 a 0302 ! 00333096 r 0203 \ 01721530 a 0201 ! 00333096 r 0101 \ 01722260 a 0101 | in an unpardonable manner or to an unpardonable degree; "he was inexcusably cruel to his wife" -00333613 02 r 03 exorbitantly 0 extortionately 0 usuriously 0 003 \ 01534282 a 0306 \ 01534282 a 0202 \ 01534282 a 0101 | to an exorbitant degree; "prices are exorbitantly high in the capital" -00333808 02 r 02 expediently 0 inadvisably 0 003 \ 00067767 a 0201 ! 00333938 r 0101 \ 00931555 a 0101 | in an expedient manner -00333938 02 r 01 inexpediently 0 002 ! 00333808 r 0101 \ 00932367 a 0101 | in an inexpedient manner -00334040 02 r 01 expensively 0 002 ! 00334210 r 0101 \ 00933154 a 0101 | in an expensive manner; "an expensively dressed little man turned a corner and approached her" -00334210 02 r 03 cheaply 1 tattily 0 inexpensively 1 003 \ 02393791 a 020b ! 00334040 r 0101 \ 00934199 a 0101 | in a cheap manner; "a cheaply dressed woman approached him in the bar" -00334396 02 r 01 explosively 0 000 | suddenly and rapidly; "the population in Central America is growing explosively" -00334516 02 r 01 explosively 1 001 \ 02292573 a 0101 | in an explosive manner; "the political situation in Kashmir and Jammu is explosively unstable" -00334668 02 r 01 exponentially 0 001 \ 02965274 a 0101 | in an exponential manner; "inflation is growing exponentially" -00334790 02 r 01 express 0 000 | by express; "please send the letter express" -00334870 02 r 01 expressively 0 001 ! 00335040 r 0101 | with expression; in an expressive manner; "she gave the order to the waiter, using her hands very expressively" -00335040 02 r 01 inexpressively 0 001 ! 00334870 r 0101 | without expression; in an inexpressive manner; "she looked at him inexpressively" -00335182 02 r 03 extemporaneously 0 extemporarily 0 extempore 0 002 \ 01845451 a 0203 \ 01845451 a 0102 | without prior preparation; "he spoke extemporaneously" -00335345 02 r 02 extravagantly 0 lavishly 0 002 \ 01111965 a 0201 \ 02422242 a 0101 | in a wasteful manner; "the United States, up to the 1920s, used fuel lavishly, mainly because it was so cheap" -00335544 02 r 02 exuberantly 0 riotously 0 002 \ 00015247 a 0205 \ 00015247 a 0101 | in an exuberant manner; "the exuberantly baroque decoration of the church" -00335706 02 r 02 faddishly 0 faddily 0 002 \ 00972236 a 0202 \ 00972236 a 0101 | in a faddish manner -00335809 02 r 05 faithlessly 0 traitorously 0 treacherously 0 treasonably 0 false 0 004 \ 00962939 a 0404 \ 00960094 a 0303 \ 00962939 a 0202 \ 00962939 a 0101 | in a disloyal and faithless manner; "he behaved treacherously"; "his wife played him false" -00336065 02 r 02 falsely 0 incorrectly 2 002 \ 00632438 a 0201 \ 00633235 a 0101 | in an incorrect manner; "to credit Lister with the first formulation of the basic principle of stratigraphy would be to bestow credit falsely" -00336293 02 r 01 falsely 1 001 \ 02182088 a 0101 | in an insincerely false manner; "a seduction on my part would land us with the necessity to rise, bathe and dress, chat falsely about this and that, and emerge into the rest of the evening as though nothing had happened" -00336567 02 r 01 familiarly 0 001 \ 00453053 a 0101 | in an intimately familiar manner; "Sid, as he was familiarly known by his friends, was one of the most respected and devoted members of the socialist minority group" -00336789 02 r 01 famously 0 001 \ 01375831 a 0104 | in a manner or to an extent that is well known; "in his famously anecdotal style" -00336925 02 r 01 fanatically 0 001 \ 01726859 a 0101 | in a passionately fanatic manner; "he followed the teachings of his guru fanatically" -00337068 02 r 02 fancifully 0 whimsically 0 001 \ 00643598 a 0101 | in a fanciful manner; "the Christmas tree was fancifully decorated" -00337206 02 r 01 farcically 0 001 \ 01266397 a 0101 | in a farcical manner; "a farcically inept bungler" -00337313 02 r 01 fashionably 0 002 ! 00337516 r 0101 \ 00971075 a 0101 | in a fashionable manner; "his voice had no trace of the drawl that you would expect to find in a fashionably dressed young man" -00337516 02 r 01 unfashionably 0 002 ! 00337313 r 0101 \ 00973844 a 0101 | in an unfashionable manner; "she seemed to make a point of being unfashionably dressed" -00337681 02 r 01 fastidiously 0 001 \ 00983862 a 0101 | in a fastidious manner; "he writes extremely musical music, of which the sound is fastidiously calculated and yet agreeably spontaneous and imaginative" -00337892 02 r 01 civilly 0 002 ! 00338018 r 0101 \ 00642379 a 0101 | in a civil manner; "he treats his former wife civilly" -00338018 02 r 01 uncivilly 0 002 ! 00337892 r 0101 \ 00642725 a 0101 | in an uncivil manner; "he treats his former wife uncivilly" -00338151 02 r 01 fatefully 0 001 \ 01883106 a 0101 | in a prophetically fateful manner; "the nurse whispered fatefully to call the priest" -00338292 02 r 01 faultily 0 001 \ 00023854 a 0101 | in an inaccurate manner; "these statements were faultily attributed to me" -00338421 02 r 01 faultlessly 0 001 \ 01750847 a 0101 | without a fault; in a faultless manner; "he solved all the problems faultlessly" -00338559 02 r 01 fearsomely 0 001 \ 00193799 a 0108 | in a fearsome manner; "a sabre slammed fearsomely through the thicket in all directions" -00338704 02 r 01 feebly 0 001 \ 02325304 a 0101 | in a halting and feeble manner; "reform, in fact, is, rather feebly, on the win" -00338837 02 r 01 feebly 1 001 \ 02325097 a 0102 | in a faint and feeble manner; "the lighthouse, flashing feebly against the sleet-blurred, rocky backdrop of the coast of north west Norway" -00339029 02 r 01 feelingly 0 001 ! 00339149 r 0101 | with great feeling; "she spoke feelingly of her early childhood" -00339149 02 r 01 unfeelingly 0 002 \ 00507292 a 0103 ! 00339029 r 0101 | without compassionate feelings; "unfeelingly, she required her maid to work on Christmas Day" -00339318 02 r 01 felicitously 0 002 ! 00339451 r 0101 \ 00999817 a 0101 | in a felicitous manner; "a not felicitously chosen word" -00339451 02 r 01 infelicitously 0 002 ! 00339318 r 0101 \ 01000881 a 0101 | in an infelicitous manner; "he chose his words rather infelicitously" -00339599 02 r 03 fierily 0 fervently 0 fervidly 0 003 \ 01726235 a 0303 \ 01726235 a 0202 \ 01726235 a 0104 | with passionate fervor; "both those for and against are fervently convinced they speak for the great majority of the people"; "a fierily opinionated book" -00339866 02 r 01 fifthly 0 001 \ 02202712 a 0101 | in the fifth place; "fifthly, we must adhere to the rules set by the local government" -00340006 02 r 01 figuratively 0 002 ! 00340133 r 0101 \ 01419149 a 0101 | in a figurative sense; "figuratively speaking,..." -00340133 02 r 01 literally 0 002 ! 00340006 r 0101 \ 01418789 a 0101 | in a literal sense; "literally translated"; "he said so literally" -00340273 02 r 01 first_class 0 000 | by first class conveyance; with first class accommodations; "we always travel first class" -00340403 02 r 02 firsthand 0 at_first_hand 0 000 | from the original source; directly; "I heard this story firsthand" -00340523 02 r 02 first-rate 0 very_well 0 000 | quite well; "she doesn't feel first-rate today" -00340621 02 r 01 fitfully 0 001 \ 00593664 a 0101 | in a fitful manner; "he slept fitfully" -00340715 02 r 01 fixedly 0 001 \ 01564603 a 0101 | in a fixed manner; "he stared at me fixedly" -00340813 02 r 01 flabbily 0 001 \ 01019713 a 0102 | in a flabby manner; "the old man's muscles were sagging flabbily" -00340933 02 r 01 flagrantly 0 001 \ 00580039 a 0103 | in a flagrant manner; "he is flagrantly disregarding the law" -00341051 02 r 03 flamboyantly 0 showily 1 flashily 0 003 \ 00407420 a 0301 \ 01848701 a 0202 \ 01848701 a 0101 | in a fancy colorful manner; "he dresses rather flamboyantly" -00341227 02 r 01 flat 5 000 | with flat sails; "sail flat against the wind" -00341305 02 r 01 flexibly 0 002 ! 00341444 r 0101 \ 01024073 a 0101 | with flexibility; "`Come whenever you are free,' he said flexibly" -00341444 02 r 01 inflexibly 0 002 ! 00341305 r 0101 \ 01024597 a 0101 | in an inflexible manner; "`You will--because you must!,' Madam told her inflexibly" -00341602 02 r 01 flimsily 0 001 \ 02325484 a 0101 | in a weak and flimsy manner; "this car is so flimsily constructed!" -00341724 02 r 01 flip-flap 0 000 | with repeated strokes and noise; "something going flip-flap in the night" -00341835 02 r 02 flippantly 0 airily 0 001 \ 02121290 a 0101 | in a flippant manner; "he answered the reporters' questions flippantly"; "this cannot be airily explained to your children" -00342024 02 r 01 flop 0 000 | with a flopping sound; "he tumbled flop into the mud" -00342110 02 r 01 fluently 0 001 \ 00150505 a 0103 | in a fluent manner; "she speaks French fluently" -00342213 02 r 01 forbiddingly 0 001 \ 01802932 a 0102 | in an unpleasant or menacing manner; "it was forbiddingly dark in the corridor" -00342351 02 r 01 forcefully 0 001 \ 00841403 a 0101 | with full force; "we are seeing this film too late to feel its original impact forcefully" -00342498 02 r 01 cold-bloodedly 0 001 \ 01263971 a 0102 | in cold blood; "he cold-bloodedly planned the murder of his boss" -00342624 02 r 01 forcibly 0 001 \ 00842324 a 0101 | in a forcible manner; "keep in mind the dangers of imposing our own values and prejudices too forcibly" -00342782 02 r 01 forgetfully 0 001 \ 01978003 a 0102 | in a forgetful manner; "she is getting old and acts forgetfully" -00342904 02 r 01 forgivingly 0 002 ! 00343057 r 0101 \ 01040984 a 0101 | with forgiveness; in a forgiving manner; "`Never mind,' she said forgivingly" -00343057 02 r 01 unforgivingly 0 002 ! 00342904 r 0101 \ 01041481 a 0101 | without forgiveness; in an unforgiving manner; "unforgivingly, he insisted that she pay her debt to the last penny" -00343250 02 r 01 forlornly 0 001 \ 01230387 a 0101 | in a forlorn manner; "a single chicken was scratching forlornly in the yard" -00343382 02 r 01 formidably 0 001 \ 00195383 a 0101 | in a formidable manner; "the constant risk that attends the exchanges of human beings formidably armed" -00343542 02 r 01 formlessly 0 001 \ 02151837 a 0102 | in a formless manner; "the dress hung formlessly on her body" -00343660 02 r 02 piano 0 softly 3 002 ! 00343799 r 0101 \ 01458303 a 0101 | used as a direction in music; to be played relatively softly -00343799 02 r 02 forte 0 loudly 2 002 ! 00343660 r 0101 \ 01458736 a 0101 | used as a direction in music; to be played relatively loudly -00343938 02 r 02 pianissimo 0 very_softly 0 002 ! 00344073 r 0101 \ 01458490 a 0101 | a direction in music; to be played very softly -00344073 02 r 02 fortissimo 0 very_loudly 0 002 ! 00343938 r 0101 \ 01459058 a 0101 | a direction in music; to be played very loudly -00344208 02 r 01 foully 0 000 | in a wicked and shameful manner; "two policemen were foully murdered" -00344312 02 r 02 foully 1 insultingly 0 001 \ 00957743 a 0103 | in an unfair and insulting manner; "this internationally known writer was foully condemned by the Muslim fundamentalists" -00344500 02 r 02 fourfold 0 four_times 0 001 \ 02219144 a 0102 | by a factor of four; "the price of gasoline has increased fourfold over the past two years" -00344659 02 r 02 millionfold 0 a_million_times 0 000 | by a factor of a million; "it increased a millionfold" -00344771 02 r 02 fourthly 0 fourth 0 002 \ 02202443 a 0201 \ 02202443 a 0101 | in the fourth place; "fourthly, you must pay the rent on the first of the month" -00344933 02 r 01 fractiously 0 001 \ 01614127 a 0101 | in a fractious manner; "the horse was behaving fractiously and refused to jump" -00345070 02 r 01 fraternally 0 001 \ 00291471 a 0103 | in a brotherly manner -00345149 02 r 01 fraudulently 0 001 \ 01223941 a 0103 | in a dishonest and fraudulent manner; "this money was fraudulently obtained" -00345284 02 r 02 frenziedly 1 hectically 0 002 \ 00086210 a 0202 \ 00086341 a 0104 | in a frenzied manner; "we rehearsed frenziedly the last few days before the premiere" -00345457 02 r 01 frugally 0 001 \ 02421364 a 0102 | in a frugal manner; "in villages, the new pipeline marks the end of water as a precious liquid, to be dispensed frugally, weighed out drop by drop" -00345659 02 r 01 functionally 0 001 \ 02976260 a 0101 | with respect to function; "the two units are functionally interdependent" -00345791 02 r 02 frighteningly 0 scarily 0 002 \ 00194924 a 0203 \ 00193799 a 0109 | in an alarming manner; "the disturbing thing about the Minister's behavior is that far from being artificial, it too often rings frighteningly true" -00346027 02 r 02 frostily 0 frigidly 0 002 \ 01258264 a 0201 \ 01258264 a 0102 | without warmth or enthusiasm; "`Come in if you have to,' he said frostily" -00346185 02 r 01 fretfully 0 001 \ 00513981 a 0101 | in a fretful manner; "fretfully, the baby tossed in his crib" -00346302 02 r 01 friskily 0 001 \ 02123007 a 0102 | in a playfully frisky manner; "he moves about friskily despite his age" -00346428 02 r 01 frivolously 0 001 \ 02120458 a 0101 | in a frivolous manner; "she spends her time frivolously enjoying the easy life of a rich and spoiled girl" -00346592 02 r 01 frothily 0 001 \ 02276305 a 0105 | in a frothy manner; "the champagne poured frothily into the glasses" -00346715 02 r 01 gainfully 0 001 \ 01871473 a 0101 | in a gainful way; "are you gainfully employed now?" -00346822 02 r 01 gamely 0 001 \ 00263994 a 0101 | in a plucky manner; "he was seen by a shepherd, gamely negotiating a particularly tricky section of the mountain road to San Doloroso" -00347009 02 r 03 garishly 0 tawdrily 0 gaudily 0 003 \ 02393791 a 0306 \ 02393791 a 020c \ 02393791 a 0105 | in a tastelessly garish manner; "the temple was garishly decorated with bright plastic flowers" -00347216 02 r 01 genealogically 0 001 \ 03067329 a 0102 | in a genealogical manner; "he charted his family tree genealogically" -00347346 02 r 01 generically 0 001 \ 02734016 a 0101 | as sharing a common genus; "these animals are not related generically" -00347474 02 r 01 generically 1 001 \ 01109599 a 0101 | without a trademark or brand name; "we market these drugs generically" -00347602 02 r 01 genteelly 0 001 \ 01947741 a 0105 | in a genteel manner; "the English lived genteelly in India" -00347717 02 r 01 geologically 0 001 \ 02905591 a 0101 | with respect to geology; "geologically speaking, this area is extremely interesting" -00347860 02 r 03 jeeringly 0 mockingly 1 gibingly 0 002 \ 01995596 a 0204 \ 01995596 a 0103 | in a disrespectful jeering manner -00347990 02 r 01 gingerly 0 001 \ 00325995 a 0101 | in a gingerly manner; "gingerly I raised the edge of the blanket" -00348110 02 r 03 gladly 0 lief 0 fain 0 001 \ 02565583 a 0101 | in a willing manner; "this was gladly agreed to"; "I would fain do it" -00348247 02 r 03 gleefully 0 joyously 0 joyfully 0 004 ! 00348450 r 0301 \ 01367211 a 0303 \ 01366718 a 0201 \ 01367211 a 0102 | in a joyous and gleeful manner; "the old man had greeted her gleefully" -00348450 02 r 01 joylessly 0 002 ! 00348247 r 0103 \ 01368192 a 0101 | in a joyless manner; without joy; "she greeted her guests joylessly" -00348592 02 r 01 glissando 0 001 ;c 07020895 n 0000 | (musical direction) in the manner of a glissando (with a rapidly executed series of notes); "this should be played glissando, please" -00348782 02 r 01 gloatingly 0 000 | in a gloating manner; "he spoke gloatingly about people he had cheated out of their money" -00348911 02 r 01 gloriously 0 000 | blessedly or wonderfully; "how gloriously happy she had been during those few fleeting moments of time" -00349053 02 r 01 gloriously 1 001 \ 01120925 a 0101 | with glory or in a glorious manner; "where others had failed he had gloriously succeeded" -00349199 02 r 01 glossily 0 001 \ 01120010 a 0101 | in a glossy manner; "the magazine was glossily printed" -00349309 02 r 03 piggyback 0 pickaback 0 pig-a-back 0 000 | on the back or shoulder or astraddle on the hip; "she carried her child piggyback" -00349454 02 r 03 piggyback 1 pickaback 1 pig-a-back 1 000 | on a railroad flatcar; "the trailer rode piggyback across the country" -00349587 02 r 01 gloweringly 0 001 \ 01137378 a 0103 | in a glowering manner; "he stared gloweringly at this morning's headlines" -00349719 02 r 01 glowingly 0 001 \ 00886804 a 0101 | in an enthusiastically glowing manner; "in her letter she praised him glowingly" -00349855 02 r 01 gluttonously 0 001 \ 00009978 a 0101 | in a gluttonous manner; "this man eats gluttonously!" -00349967 02 r 03 goddam 0 goddamn 0 goddamned 0 001 ;u 06321054 n 0000 | extremely; "you are goddamn right!" -00350078 02 r 01 good-naturedly 0 001 \ 01133876 a 0101 | in a good-natured manner -00350163 02 r 04 gorgeously 0 splendidly 1 resplendently 0 magnificently 1 004 \ 01285376 a 0403 \ 00219389 a 0302 \ 00219389 a 0203 \ 00219705 a 0101 | in an impressively beautiful manner; "the Princess was gorgeously dressed" -00350393 02 r 01 grandly 0 001 \ 01284544 a 0102 | in a grand manner; "the mansion seemed grandly large by today's standards" -00350521 02 r 03 gratingly 0 raspingly 0 harshly 0 003 \ 01803792 a 0301 \ 00299476 a 0203 \ 00299476 a 0101 | in a harsh and grating manner; "her voice fell gratingly on our ears" -00350704 02 r 01 gratuitously 0 001 \ 01371553 a 0101 | in an uncalled-for manner; "he insulted us gratuitously" -00350819 02 r 01 greasily 0 001 \ 00992432 a 0101 | in a greasy manner; "the food was greasily unappetizing" -00350930 02 r 02 gregariously 0 sociably 1 002 \ 02257141 a 0201 \ 02252634 a 0101 | in a gregarious manner -00351040 02 r 02 grayly 0 greyly 0 002 \ 00389310 a 0201 \ 00389310 a 0102 | having a grey appearance; "lonely creeks are opal in the dawn, sword-blue in the sun, greyly silver under misty moons" -00351238 02 r 01 grievously 0 001 \ 00651039 a 0103 | in a grievous manner; "the resolute but unbroken Germany, grievously wounded but far from destruction, was able to lay the firm foundations for military revival" -00351456 02 r 01 gropingly 0 001 \ 00338275 a 0101 | in an uncertain groping manner -00351542 02 r 02 grotesquely 0 monstrously 0 002 \ 00221627 a 0202 \ 00221627 a 0101 | in a grotesque manner; "behind the house lay two nude figures grotesquely bald, with deliberate knife-slashes marking their bodies" -00351763 02 r 01 grudgingly 0 002 ! 00351918 r 0101 \ 02566299 a 0101 | in a grudging manner; "he grudgingly agreed to have a drink in a hotel close by" -00351918 02 r 01 ungrudgingly 0 002 ! 00351763 r 0101 \ 01114973 a 0101 | in a generous and ungrudging manner; "he ungrudgingly agreed to pay for everybody's dinner when the guests found themselves without cash" -00352132 02 r 01 gruesomely 0 001 \ 00195684 a 0104 | in a gruesome manner; "he was gruesomely wounded" -00352238 02 r 01 gruffly 0 001 \ 01137000 a 0103 | in a gruff manner; "`No,' he replied gruffly" -00352337 02 r 01 guiltily 0 001 \ 00154583 a 0101 | in the manner of someone who has committed an offense; "she blushed guiltily as she spoke" -00352482 02 r 01 gushingly 0 001 \ 00720524 a 0102 | in a gushing manner; "a gushingly prolific writer" -00352588 02 r 01 half-heartedly 0 001 \ 00887472 a 0101 | without enthusiasm; in a half-hearted manner; "she tried half-heartedly" -00352721 02 r 01 half-hourly 0 001 \ 01968956 a 0101 | every thirty minutes, every half hour -00352816 02 r 01 half-yearly 0 001 \ 01969348 a 0104 | every half year, every six months -00352907 02 r 01 handsomely 0 001 \ 01111418 a 0106 | in a generously handsome manner; "India has responded handsomely by providing 3,000 men" -00353052 02 r 01 handsomely 1 001 \ 00218950 a 0104 | in an attractively handsome manner; "the volume was handsomely bound" -00353178 02 r 02 haphazard 0 haphazardly 1 002 \ 00312519 a 0201 \ 00312519 a 0101 | without care; in a slapdash manner; "the Prime Minister was wearing a grey suit and a white shirt with a soft collar, but his neck had become thinner and the collar stood away from it as if it had been bought haphazard" -00353485 02 r 03 haply 0 by_chance 2 by_luck 0 000 | by accident; "betrayed by a word haply overheard" -00353590 02 r 01 harmoniously 0 001 \ 00508036 a 0101 | in a harmonious manner; "the problem of absorbing immigrants harmoniously into British society is as important to the immigrants as to the British" -00353796 02 r 01 harshly 2 001 \ 01374183 a 0101 | in a harsh or unkind manner; "`That's enough!,' he cut in harshly" -00353916 02 r 02 roughly 2 rough 0 001 \ 02238462 a 0101 | with rough motion as over a rough surface; "ride rough" -00354033 02 r 02 roughly 3 rough 3 002 ;u 07075172 n 0000 \ 00084353 a 0102 | with roughness or violence (`rough' is an informal variant for `roughly'); "he was pushed roughly aside"; "they treated him rough" -00354244 02 r 01 hatefully 0 001 \ 01587787 a 0101 | in a hateful manner -00354319 02 r 01 hazily 0 001 \ 00781644 a 0106 | in an indistinct way; "he remembered her only hazily" -00354425 02 r 01 hazily 1 001 \ 00461609 a 0103 | through a haze; "we saw the distant hills hazily" -00354527 02 r 02 headlong 0 headfirst 0 000 | with the head foremost; "the runner slid headlong into third base" -00354642 02 r 02 headlong 1 rashly 3 001 \ 01900188 a 0201 | in a hasty and foolhardy manner; "he fell headlong in love with his cousin" -00354781 02 r 01 unadvisedly 2 001 \ 00068278 a 0102 | in an unadvised manner -00354861 02 r 01 recklessly 0 001 \ 00312757 a 0102 | in a reckless manner -00354938 02 r 02 headlong 2 precipitately 0 002 \ 01270868 a 0203 \ 01270704 a 0102 | at breakneck speed; "burst headlong through the gate" -00355080 02 r 01 heaps 0 001 ;u 07075172 n 0000 | very much; "thanks heaps" -00355158 02 r 01 heartlessly 0 001 \ 01158020 a 0102 | in a heartless manner; "she behaves rather heartlessly toward her admirers" -00355291 02 r 02 heatedly 0 hotly 0 002 \ 01256332 a 0201 \ 01256865 a 0101 | in a heated manner; "`To say I am behind the strike is so much nonsense,' declared Mr Harvey heatedly"; "the children were arguing hotly" -00355509 02 r 03 heavenward 0 heavenwards 0 heavenwardly 0 000 | toward heaven; "he pointed heavenward" -00355615 02 r 02 heavy 0 heavily 2 001 \ 01188762 a 0201 | slowly as if burdened by much weight; "time hung heavy on their hands" -00355747 02 r 02 heinously 0 monstrously 2 002 \ 01131454 a 0204 \ 02514380 a 0102 | in a terribly evil manner; "the child was heinously murdered" -00355896 02 r 03 hereinafter 0 hereafter 0 hereunder 0 000 | in a subsequent part of this document or statement or matter etc.; "the landlord demises unto the tenant the premises hereinafter called the demised premises"; "the terms specified hereunder" -00356151 02 r 01 hereinbefore 0 000 | in the preceding part of the current text -00356233 02 r 01 hereof 0 000 | of or concerning this; "the twigs hereof are physic" -00356320 02 r 01 hereto 0 000 | to this writing or document; "the charts hereto attached" -00356412 02 r 01 hereupon 0 000 | immediately after this; "hereupon, the passengers stumbled aboard" -00356515 02 r 01 hermetically 0 001 \ 01398772 a 0101 | in an airtight manner; "this bag is hermetically sealed" -00356630 02 r 01 heroically 0 001 \ 00251134 a 0101 | in a heroic manner; "he become reconciled to not dying heroically in her arms" -00356765 02 r 03 hideously 0 horridly 0 monstrously 4 003 \ 00221627 a 0302 \ 01626562 a 0202 \ 00221934 a 0101 | in a hideous manner; "her face was hideously disfigured after the accident" -00356957 02 r 02 high 0 high_up 0 000 | at a great altitude; "he climbed high on the ladder" -00357052 02 r 01 high 1 000 | far up toward the source; "he lives high up the river" -00357139 02 r 01 high 2 000 | in or to a high position, amount, or degree; "prices have gone up far too high" -00357251 02 r 03 high 3 richly 1 luxuriously 0 002 \ 02024928 a 0304 \ 02021905 a 0201 | in a rich manner; "he lives high" -00357376 02 r 01 high-handedly 0 001 \ 00788145 a 0102 | in a domineering high-handed manner; "he behaved high-handedly toward his employees" -00357520 02 r 01 high-mindedly 0 001 \ 01588619 a 0106 | in a high-minded manner; "he talks high-mindedly, but we don't know whether he acts according to his principles" -00357692 02 r 02 questioningly 0 wonderingly 0 002 \ 00664879 a 0204 \ 00664879 a 0103 | in a curious and questioning manner; "they turned their heads questioningly, as if awaiting further instructions" -00357897 02 r 01 insolently 0 001 \ 00155144 a 0108 | in an insolent manner; "he had replied insolently to his superiors" -00358021 02 r 02 loose 0 free 0 000 | without restraint; "cows in India are running loose" -00358114 02 r 01 about 3 000 | in rotation or succession; "turn about is fair play" -00358200 02 r 02 hoarsely 0 huskily 0 002 \ 00299690 a 0203 \ 00299690 a 0102 | in a hoarse or husky voice; "`Excuse me,' he said hoarsely" -00358342 02 r 01 horizontally 0 001 \ 01232635 a 0101 | in a horizontal direction; "a gallery quite often is added to make use of space vertically as well as horizontally" -00358516 02 r 01 vertically 0 001 \ 01233347 a 0101 | in a vertical direction; "a gallery quite often is added to make use of space vertically as well as horizontally" -00358686 02 r 01 hospitably 0 002 ! 00358832 r 0101 \ 01243825 a 0101 | in a hospitable manner; "she was received hospitably by her new family" -00358832 02 r 01 inhospitably 0 002 ! 00358686 r 0101 \ 01244195 a 0101 | in an inhospitable manner; "she was received inhospitably by her new family" -00358985 02 r 01 hourly 0 001 \ 01968811 a 0101 | every hour; by the hour; "daily, hourly, I grew stronger" -00359095 02 r 01 huffily 0 001 \ 00115193 a 0101 | in a huffy manner; "`Don't bother to call me back,' he said huffily" -00359217 02 r 01 hugger-mugger 0 000 | in secrecy; "they did it all hugger-mugger" -00359302 02 r 01 humanely 0 002 ! 00359438 r 0101 \ 01261867 a 0101 | in a humane manner; "let's treat the prisoners of war humanely" -00359438 02 r 01 inhumanely 0 002 ! 00359302 r 0101 \ 01262611 a 0101 | in an inhumane manner; "the prisoners of war were treated inhumanely" -00359582 02 r 01 humorously 0 002 ! 00359771 r 0101 \ 01264336 a 0101 | in a humorous manner; "Dickens had humorously suggested a special service of intercession at St. Paul's Cathedral" -00359771 02 r 02 humorlessly 0 humourlessly 0 002 ! 00359582 r 0101 \ 01268426 a 0101 | in a humorless manner; "he reacted rather humorlessly to these rumors" -00359932 02 r 02 hundredfold 0 a_hundred_times 0 000 | by a factor of one hundred; "they money increased a hundredfold" -00360054 02 r 02 hungrily 0 ravenously 0 002 \ 01269506 a 0202 \ 01269073 a 0101 | in the manner of someone who is very hungry; "he pounced on the food hungrily" -00360218 02 r 02 hydraulically 0 hydraulicly 0 001 \ 03073751 a 0101 | in a hydraulic manner; "the block is then tested hydraulically to its full design test pressure on each stream separately" -00360414 02 r 01 hygienically 0 002 ! 00360551 r 0101 \ 02113191 a 0101 | in a hygienic manner; "the body must cared for hygienically" -00360551 02 r 01 unhygienically 0 002 ! 00360414 r 0101 \ 02113672 a 0101 | in an unhygienic manner; "the meat is unhygienically processed on wooden tables" -00360710 02 r 01 hysterically 0 001 \ 00086606 a 0101 | in a hysterical manner; "she screamed hysterically when she heard the news" -00360844 02 r 01 icily 0 001 \ 01258264 a 0105 | in a cold and icy manner; "`Mr. Powell finds it easier to take it out of mothers, children and sick people than to take on this vast industry,' Mr Brown commented icily" -00361065 02 r 01 identically 0 001 \ 02064127 a 0101 | with complete identity; in an identical manner; "he is fitted with an identically similar one" -00361217 02 r 01 identifiably 0 001 \ 01272397 a 0101 | in an identifiable manner; "they were identifiably different" -00361337 02 r 01 ideologically 0 000 | with respect to ideology; "ideologically, we do not see eye to eye" -00361446 02 r 01 idiomatically 0 001 \ 03004358 a 0101 | in an idiomatic manner; "he expressed himself idiomatically" -00361566 02 r 01 idiotically 0 001 \ 02075737 a 0102 | in an idiotic manner; "what arouses the indignation of the honest satirist is not the fact that people in positions of power or influence behave idiotically" -00361781 02 r 02 idly 0 lazily 1 002 \ 00294579 a 0203 \ 00294175 a 0101 | in an idle manner; "this is what I always imagined myself doing in the south of France, sitting idly, drinking coffee, watching the people" -00361998 02 r 01 idolatrously 0 001 \ 02931096 a 0101 | in an idolatrous manner; "the people idolatrously worshipped the Golden Calf" -00362134 02 r 01 ignorantly 0 001 \ 01308894 a 0101 | in ignorance; in an ignorant manner; "they lived ignorantly in their own small world" -00362276 02 r 03 legibly 0 decipherably 0 readably 0 004 \ 01405047 a 0303 \ 01405047 a 0202 ! 00362455 r 0101 \ 01404702 a 0101 | in a legible manner; "you must write legibly" -00362455 02 r 03 illegibly 0 undecipherably 0 unreadably 0 004 \ 01405523 a 0304 \ 01405523 a 0203 ! 00362276 r 0101 \ 01405214 a 0101 | in an illegible manner; "this student writes illegibly" -00362650 02 r 02 illegitimately 0 out_of_wedlock 0 002 ! 00362831 r 0101 \ 01407465 a 0101 | of biological parents not married to each other; "this child was born illegitimately" -00362831 02 r 01 legitimately 0 002 ! 00362650 r 0101 \ 01406640 a 0101 | in a lawfully recognized manner; "let's get married so our child can be born legitimately" -00362998 02 r 02 illegitimately 1 illicitly 0 003 ! 00363218 r 0203 \ 01550572 a 0201 ! 00363218 r 0101 | in a manner disapproved or not allowed by custom; "He acted illegitimately when he increased the rent fourfold" -00363218 02 r 03 legitimately 1 lawfully 1 licitly 0 006 ! 00362998 r 0302 \ 01401224 a 0303 ! 00154536 r 0203 \ 01395617 a 0201 ! 00362998 r 0101 \ 01401224 a 0102 | in a manner acceptable to common custom; "you cannot do this legitimately!" -00363463 02 r 01 logically 0 002 ! 00363602 r 0101 \ 01430111 a 0101 | in a logical manner; "he acted logically under the circumstances" -00363602 02 r 01 illogically 0 002 ! 00363463 r 0101 \ 01430847 a 0101 | in an illogical manner; "she acted illogically under the pressure" -00363744 02 r 01 logically 1 001 \ 02499301 a 0102 | according to logical reasoning; "logically, you should now do the same to him" -00363878 02 r 01 illustriously 0 001 \ 01121989 a 0101 | in an illustrious manner; "Einstein, the illustriously famous physicist of the 20th century" -00364030 02 r 01 immaculately 0 001 \ 01750847 a 0102 | in an immaculate manner; "gone was the casually dressed Canadian she had thought a backwoodsman--this man was immaculately tailored" -00364221 02 r 01 immovably 0 001 \ 01525320 a 0101 | so as to be incapable of moving; "the mountains brooded immovably above the river" -00364359 02 r 01 impartially 0 001 \ 01723308 a 0101 | in an impartial manner; "he smiled at them both impartially" -00364477 02 r 02 morally 0 virtuously 1 002 \ 02513269 a 0201 ! 00364623 r 0101 | in a moral manner; "he acted morally under the circumstances" -00364623 02 r 02 immorally 0 amorally 0 002 ! 00364477 r 0101 \ 02036077 a 0102 | without regard for morality; "he acted immorally when his own interests were at stake" -00364794 02 r 01 impassively 0 001 \ 00857560 a 0101 | in an impassive manner; "he submitted impassively to his arrest" -00364916 02 r 02 impenitently 0 unrepentantly 0 004 \ 01743909 a 0202 \ 01743909 a 0101 ! 00365110 r 0203 ! 00365110 r 0101 | in an impenitent manner; "he repeated his position unrepentantly" -00365110 02 r 03 penitently 0 penitentially 0 repentantly 0 005 ! 00364916 r 0302 \ 01743217 a 0302 \ 01743704 a 0201 ! 00364916 r 0101 \ 01743217 a 0101 | showing remorse -00365284 02 r 02 imperatively 0 peremptorily 0 002 \ 00713205 a 0201 \ 00712419 a 0101 | in an imperative and commanding manner -00365414 02 r 02 imperceptibly 0 unnoticeably 0 003 \ 01288091 a 0201 ! 00365668 r 0101 \ 01748318 a 0101 | in an imperceptible manner or to an imperceptible degree; "the power of the Secretary of State in London increased gradually but imperceptibly" -00365668 02 r 03 perceptibly 0 noticeably 0 observably 0 004 \ 01287486 a 0303 \ 01286799 a 0201 ! 00365414 r 0101 \ 01746605 a 0101 | in a noticeable manner; "he changed noticeably over the years" -00365868 02 r 01 imperiously 0 001 \ 01891109 a 0103 | in an imperious manner; "imperiously he cut her short" -00365980 02 r 01 impersonally 1 001 \ 01615625 a 0101 | in an impersonal manner; "when I told him about Russ I found it difficult to speak impersonally" -00366135 02 r 01 impersonally 0 002 ! 00366266 r 0101 \ 01769565 a 0101 | without warmth; "he treated his patients impersonally" -00366266 02 r 01 personally 3 002 ! 00366135 r 0101 \ 01767329 a 0101 | in a personal way; "he took her comments personally" -00366393 02 r 01 personally 1 000 | as yourself; "speaking personally, I would not want to go" -00366490 02 r 05 impertinently 0 saucily 1 pertly 0 freshly 3 impudently 0 005 \ 00205295 a 0503 \ 00205295 a 0401 \ 02280090 a 0303 \ 00205295 a 0206 \ 00205295 a 0102 | in an impudent or impertinent manner; "a lean, swarthy fellow was peering through the window, grinning impudently" -00366778 02 r 02 impetuously 0 impulsively 0 002 \ 00326608 a 0202 \ 00326608 a 0103 | in an impulsive or impetuous way; without taking cautions; "he often acts impulsively and later regrets it" -00366975 02 r 01 impiously 0 001 \ 01995863 a 0101 | in an impious manner; "the young members challenged their leader impiously" -00367106 02 r 02 impishly 0 puckishly 0 002 \ 02122715 a 0207 \ 02122715 a 0102 | in an appealing but bold manner; "she asked him impishly to come in" -00367259 02 r 01 implicitly 0 002 ! 00367418 r 0101 \ 00941485 a 0101 | without ever expressing so clearly; "he implicitly assumes that you know the answer" -00367418 02 r 01 explicitly 0 002 \ 00940437 a 0101 ! 00367259 r 0101 | in an explicit manner; "in his foreword Professor Clark puts it explicitly" -00367568 02 r 01 implicitly 1 001 \ 00005599 a 0101 | without doubting or questioning; "I implicitly trust him" -00367682 02 r 01 importantly 0 001 \ 01275562 a 0101 | in an important way; "for centuries jellies have figured importantly among English desserts, particularly upon festive occasion" -00367868 02 r 02 importantly 1 significantly 2 002 \ 02161432 a 0201 \ 01275562 a 0101 | in an important way or to an important degree; "more importantly, Weber held that the manifold meaning attached to the event by the social scientist could alter his definition of the concrete event itself" -00368165 02 r 01 impracticably 0 001 \ 01823574 a 0101 | to an impracticable degree; "this is still impracticably high" -00368287 02 r 03 precisely 1 incisively 1 exactly 2 004 ! 00368481 r 0302 \ 00631798 a 0302 ! 00368481 r 0101 \ 00631798 a 0102 | in a precise manner; "she always expressed herself precisely" -00368481 02 r 02 imprecisely 0 inexactly 0 004 ! 00368287 r 0203 \ 00915787 a 0201 ! 00368287 r 0101 \ 01839417 a 0101 | in an imprecise manner; "he expressed himself imprecisely" -00368663 02 r 05 precisely 2 exactly 4 on_the_nose 0 on_the_dot 0 on_the_button 0 000 | just as it should be; "`Precisely, my lord,' he said" -00368807 02 r 01 impregnably 0 001 \ 02526124 a 0101 | in an impregnable manner; "the sight of that bland, impregnably righteous face has been enough to make their blood run cold" -00368989 02 r 01 improvidently 0 002 ! 00369132 r 0101 \ 01895837 a 0101 | in an improvident manner; "he lived improvidently for the moment" -00369132 02 r 01 providently 0 002 ! 00368989 r 0101 \ 01894758 a 0101 | in a provident manner; "providently, he had saved up some money for emergencies" -00369288 02 r 02 prudently 0 providentially 2 002 ! 00369552 r 0101 \ 01898129 a 0101 | in a prudent manner; "I had allotted my own bedroom for necking, prudently removing both the bed and the key, and taken both myself and my typewriter into my son's bedroom." -00369552 02 r 01 imprudently 0 002 ! 00369288 r 0101 \ 01899360 a 0101 | in an imprudent manner; "imprudently, he downed tools and ran home to make his wife happy" -00369718 02 r 01 adequately 0 002 ! 00369869 r 0101 \ 02336109 a 0101 | in an adequate manner or to an adequate degree; "he was adequately prepared" -00369869 02 r 01 inadequately 0 002 ! 00369718 r 0101 \ 00051696 a 0101 | in an inadequate manner or to an inadequate degree; "the temporary camps were inadequately equipped" -00370046 02 r 01 incisively 0 001 \ 01744515 a 0103 | in an incisive manner; "he was incisively critical" -00370154 02 r 01 cuttingly 0 001 \ 01374004 a 0101 | in an intentionally unkind way; "a cutting remark" -00370260 02 r 01 incognito 0 000 | without revealing one's identity; "in Holland he lived incognito as a carpenter in the shipyards of the East India company" -00370421 02 r 02 incomparably 0 uncomparably 0 002 ! 00370597 r 0101 \ 00504592 a 0101 | in an incomparable manner or to an incomparable degree; "she is incomparably gifted" -00370597 02 r 01 comparably 0 002 ! 00370421 r 0101 \ 00503982 a 0101 | in a comparable manner or to a comparable degree; "you will have to work comparably harder" -00370763 02 r 01 incongruously 0 001 \ 00562469 a 0101 | in an incongruous manner; "his shirttails stuck out from his tuxedo pants somewhat incongruously" -00370920 02 r 01 conspicuously 0 002 ! 00371171 r 0101 \ 02090567 a 0103 | in a manner tending to attract attention; "there have been plenty of general declarations about willingness to meet and talk, but conspicuously no mention of time and place" -00371171 02 r 01 inconspicuously 0 002 ! 00370920 r 0101 \ 00581401 a 0101 | in a manner intended to avoid attracting attention; "he had entered the room inconspicuously" -00371344 02 r 01 incriminatingly 0 001 \ 00924952 a 0103 | in an incriminating manner -00371432 02 r 01 incurably 0 001 \ 00994567 a 0101 | in a manner impossible to cure; "he is incurably ill" -00371541 02 r 01 incurably 1 001 \ 00349759 a 0101 | to an incurable degree; "she was incurably optimistic" -00371651 02 r 01 indelibly 0 001 \ 00898488 a 0101 | in an indelible manner; "this tradition has left its mark indelibly upon the social, political, educational and industrial fabric of this country" -00371853 02 r 04 ineffably 0 indescribably 0 unutterably 0 unspeakably 0 004 \ 00944111 a 0404 \ 00944111 a 0306 \ 00944111 a 0202 \ 00944111 a 0103 | to an inexpressible degree; "she was looking very young tonight, and, as usual, indescribably beautiful, in a simple strapless dress of a green and white silky cotton" -00372174 02 r 01 indeterminably 0 001 \ 00739273 a 0101 | in an indeterminable manner; "their relationship was of an indeterminably vague nature" -00372322 02 r 01 indifferently 0 001 \ 01342949 a 0102 | with indifference; in an indifferent manner; "she shrugged indifferently" -00372455 02 r 01 indignantly 0 001 \ 00115494 a 0101 | in an indignant manner; "Miss Burney protested indignantly, her long thin nose turning pink with mortification at this irreverent piece of mimicry" -00372660 02 r 01 discreetly 0 002 ! 00372914 r 0101 \ 00772910 a 0101 | with discretion; prudently and with wise self-restraint; "I sent for the sergeant of the platoon both men were in and asked him to try to find out discreetly what lay behind this" -00372914 02 r 01 indiscreetly 0 002 ! 00372660 r 0101 \ 00772910 a 0101 | without discretion or wisdom or self-restraint; "she inquired indiscreetly after the state of his health" -00373096 02 r 01 indolently 0 001 \ 00294579 a 0102 | in an indolent manner; "he lives indolently with his relatives" -00373216 02 r 04 indubitably 0 beyond_doubt 0 beyond_a_doubt 0 beyond_a_shadow_of_a_doubt 0 001 \ 01918541 a 0102 | in a manner or to a degree that could not be doubted; "it was immediately and indubitably apparent that I had interrupted a scene of lovers"; "his guilt was established beyond a shadow of a doubt" -00373531 02 r 01 indulgently 0 001 \ 01763159 a 0101 | in an indulgent manner; "I was indulgently advised to give the kids what they wanted unless I wished my son to be socially ostracised" -00373723 02 r 01 industriously 0 001 \ 00754682 a 0102 | in an industrious manner; "they hoed up weeds industriously all morning" -00373855 02 r 01 inextricably 0 001 \ 00945207 a 0101 | in an inextricable manner; "motives inspired by Mammon were often inextricably blended with things pertaining to Caesar and to God" -00374045 02 r 01 influentially 0 001 \ 01830134 a 0101 | exerting influence -00374123 02 r 02 informatively 0 instructively 0 004 ! 00374277 r 0202 \ 01323449 a 0201 ! 00374277 r 0101 \ 01304570 a 0101 | in an informative manner -00374277 02 r 02 uninformatively 0 uninstructively 0 004 ! 00374123 r 0202 \ 01325372 a 0201 ! 00374123 r 0101 \ 01305607 a 0101 | in an uninformative manner; "`I can't tell you when the manager will arrive,' he said rather uninformatively" -00374520 02 r 01 infrequently 0 002 ! 00035058 r 0101 \ 01067193 a 0101 | not many times; "in your 1850 church you not infrequently find a dramatic contrast between the sumptuous appointments of the building itself and the inhuman barrack-like living conditions in the church room" -00374804 02 r 01 ingeniously 1 000 | in an ingenious manner; "a Hampshire farmer had fowls of different breeds, including Dorkings, and he discriminated ingeniously between the `dark ones' and the `white ones'" -00375017 02 r 01 ingratiatingly 0 001 \ 00908143 a 0101 | in a flattering and ingratiating manner; "she behaves ingratiatingly toward her boss" -00375163 02 r 01 inherently 0 001 \ 01348528 a 0104 | in an inherent manner; "the subject matter is sexual activity of any overt kind, which is depicted as inherently desirable and exciting" -00375356 02 r 02 inimitably 0 unreproducibly 0 002 \ 01868302 a 0201 \ 01868470 a 0101 | in an unreproducible manner; "he has an inimitably verbose style" -00375513 02 r 01 iniquitously 0 001 \ 02514543 a 0101 | in an iniquitous manner; "they really believed that the treaty of Versailles was iniquitously injust" -00375673 02 r 01 innately 0 001 \ 01315844 a 0103 | in an innate manner; "the child is said to be innately disposed to learn language" -00375810 02 r 01 innocently 0 001 \ 02272670 a 0101 | in a naively innocent manner; "she smiled at him innocently" -00375927 02 r 01 innocently 1 001 \ 01319874 a 0101 | in a not unlawful manner; "he claimed to have purchased the contraband innocently" -00376066 02 r 02 inopportunely 0 malapropos 0 002 ! 00376266 r 0101 \ 01661914 a 0101 | at an inconvenient time; "he arrived inopportunely just as we sat down for dinner"; "she answered malapropos" -00376266 02 r 01 opportunely 0 002 ! 00376066 r 0101 \ 01660994 a 0101 | at an opportune time; "he arrived rather opportunely just when we needed a new butler" -00376428 02 r 02 inquiringly 0 enquiringly 0 001 \ 00878829 a 0101 | in an inquiring manner; "Tom Swift looked at his cabin mates inquiringly" -00376573 02 r 02 insatiably 0 unsatiably 0 001 \ 02078399 a 0102 | in an insatiable manner; with persistence but without satisfaction; "he clawed insatiably at the traditional precepts" -00376761 02 r 02 insatiably 1 unsatiably 1 001 \ 02078399 a 0102 | to an insatiable degree; "she was insatiably hungry" -00376883 02 r 01 securely 1 001 \ 02526124 a 0103 | in an invulnerable manner; "the agreed line was to involve at several points the withdrawal of French troops from positions which they had quite securely held" -00377097 02 r 01 securely 2 002 ! 00377334 r 0101 \ 02093888 a 0101 | in a manner free from fear or risk; "the outcome of expansion in the sixties and seventies will be an academic hierarchy securely supported by scholastic selection" -00377334 02 r 01 insecurely 0 002 ! 00377097 r 0101 \ 02094755 a 0101 | in a manner involving risk; "our positions here at the university are rather insecurely supported by grant money" -00377522 02 r 01 securely 3 002 ! 00377684 r 0101 \ 02093305 a 0101 | in a confident and unselfconscious manner; "he acts very securely in front of the camera" -00377684 02 r 01 insecurely 1 002 ! 00377522 r 0101 \ 02093493 a 0101 | in a tentative and self-conscious manner; "she always acts very insecurely in the presence of her father" -00377864 02 r 01 sensitively 0 002 ! 00378029 r 0101 \ 02105990 a 0101 | in a sensitive manner; "she questioned the rape victim very sensitively about the attack" -00378029 02 r 01 insensitively 0 002 ! 00377864 r 0101 \ 02106761 a 0101 | in an insensitive manner; "the police officer questioned the woman rather insensitively about the attack" -00378212 02 r 02 insidiously 0 perniciously 1 002 \ 01611329 a 0203 \ 01162406 a 0101 | in a harmfully insidious manner; "these drugs act insidiously" -00378365 02 r 03 sincerely 0 unfeignedly 0 truly 3 004 \ 02180277 a 0302 \ 02180277 a 0203 ! 00378665 r 0101 \ 02179279 a 0101 | with sincerity; without pretense; "she praised him sincerely for his victory"; "was unfeignedly glad to see his old teacher"; "we are truly sorry for the inconvenience" -00378665 02 r 01 insincerely 0 002 ! 00378365 r 0101 \ 02180797 a 0101 | without sincerity; "she congratulated him somewhat insincerely" -00378804 02 r 01 from_the_heart 0 000 | very sincerely; "he spoke from the heart" -00378888 02 r 01 insinuatingly 0 000 | in an insinuating manner; "the art book has art to sell, insinuatingly, and for a purpose, like the American muse, which has in fact a tradition to sell, and one which doesn't exist, in painting" -00379125 02 r 01 insipidly 0 001 \ 01345997 a 0101 | in an insipid manner; "insipidly expressed thoughts" -00379233 02 r 01 insomuch 0 000 | to such an extent or degree; so -00379301 02 r 01 inspirationally 0 001 \ 02055773 a 0101 | with inspiration; in an inspiring manner, "he talked inspirationally" -00379432 02 r 01 substantially 2 001 \ 02275412 a 0103 | in a strong substantial way; "the house was substantially built" -00379556 02 r 02 insubstantially 0 impalpably 0 000 | not substantially; lacking substantial expression or fullness -00379674 02 r 01 insultingly 1 001 \ 01995288 a 0103 | in a disrespectful and insulting manner; "he behaves insultingly toward his parents" -00379816 02 r 01 insuperably 0 001 \ 02357322 a 0101 | to an insuperable degree; "these various courses all seemed insuperably difficult to the student" -00379971 02 r 01 interchangeably 0 001 \ 01978532 a 0102 | in an interchangeable manner; "these terms can be used interchangeably" -00380104 02 r 01 interdepartmental 0 001 \ 03060114 a 0101 | between departments; "this memo was circulated interdepartmentally" -00380235 02 r 01 intermediately 0 000 | to an intermediate degree; "intermediately hot" -00380325 02 r 01 endlessly 4 000 | (spatial sense) without bounds; "the Nubian desert seemed to stretch out before them endlessly" -00380458 02 r 01 intermittently 0 001 \ 00593836 a 0101 | in an intermittent manner; "intermittently we questioned the barometer" -00380590 02 r 01 interrogatively 1 001 \ 00687163 a 0101 | in a questioning format -00380675 02 r 02 intolerantly 0 illiberally 0 002 \ 00288237 a 0201 \ 00288237 a 0102 | in a narrow-minded manner; "his illiberally biased way of thinking" -00380833 02 r 01 tolerantly 0 002 ! 00380994 r 0101 \ 02436341 a 0101 | in a tolerant manner; "he reacts rather tolerantly toward his son's juvenile behavior" -00380994 02 r 01 intolerantly 1 002 ! 00380833 r 0101 \ 02436622 a 0101 | in an intolerant manner -00381094 02 r 01 transitively 0 002 ! 00381254 r 0101 \ 02488705 a 0101 | in a transitive manner; "you can use the verb `eat' transitively or intransitively" -00381254 02 r 01 intransitively 0 002 ! 00381094 r 0101 \ 02488907 a 0101 | in an intransitive manner; "you can use the verb `drink' intransitively, without a direct object" -00381430 02 r 01 intravenously 0 001 \ 02890703 a 0101 | in an intravenous manner; "the patient had to be fed intravenously" -00381557 02 r 01 intuitively 0 001 \ 01431471 a 0101 | in an intuitive manner; "inventors seem to have chosen intuitively a combination of explosive and aggressive sounds as warning signals to be used on automobiles" -00381776 02 r 01 inventively 0 001 \ 00643863 a 0102 | in an inventive manner; "Picasso's liberated shapes and excitingly applied and inventively combined colours" -00381942 02 r 01 invidiously 0 001 \ 00997394 a 0102 | in a manner arousing resentment -00382031 02 r 01 invincibly 0 001 \ 00570322 a 0101 | in an invincible manner; "invincibly, the troops moved forward" -00382151 02 r 01 invisibly 0 002 ! 00382287 r 0101 \ 02517265 a 0101 | without being seen; "these organisms enter the body invisibly" -00382287 02 r 01 visibly 0 002 ! 00382151 r 0101 \ 02515341 a 0101 | in a visible manner; "he was visibly upset" -00382402 02 r 01 irately 0 001 \ 00115777 a 0101 | in an irate manner; "`Get out,' he shouted irately" -00382507 02 r 01 ironically 0 001 \ 01266092 a 0103 | in an ironic manner; "she began to mimic him ironically" -00382620 02 r 01 ironically 1 000 | contrary to plan or expectation; "ironically, he ended up losing money under his own plan" -00382749 02 r 01 irrelevantly 0 002 \ 01976084 a 0101 ! 00440523 r 0101 | in an irrelevant manner; "suddenly and irrelevantly, she asked him for money" -00382903 02 r 01 irretrievably 0 001 \ 01956675 a 0101 | in an irretrievable manner; "it is irretrievably lost" -00383017 02 r 01 irreverently 2 001 \ 02012504 a 0101 | in an irreverent manner; "in the seventeenth century England had known fifty years of doctrinal quarrels and civil war; clergymen had been turned from their cures, and churches irreverently used" -00383271 02 r 01 irreverently 0 002 ! 00443461 r 0102 \ 02012504 a 0101 | without respect; "the student irreverently mimicked the teacher in his presence" -00383428 02 r 01 irreversibly 0 001 \ 01759362 a 0101 | in an irreversible manner; "this old tradition is irreversibly disappearing" -00383563 02 r 01 jarringly 0 001 \ 00300196 a 0101 | in a manner that jars and irritates; "the piano was jarringly out of tune" -00383693 02 r 01 jealously 0 001 \ 00888765 a 0103 | with jealousy; "he guarded his privacy jealously" -00383798 02 r 02 immaturely 0 jejunely 0 003 \ 01492596 a 0202 ! 00383972 r 0101 \ 01492394 a 0101 | in an immature manner; "his teenage son still behaves very immaturely" -00383972 02 r 01 maturely 0 002 ! 00383798 r 0101 \ 01491775 a 0101 | in a mature manner; "she acts very maturely for her age" -00384101 02 r 01 jerkily 0 000 | with jerking motions; "She rose stiffly, jerkily from the window seat" -00384207 02 r 02 jokingly 0 jestingly 0 002 \ 01267076 a 0201 \ 01267076 a 0104 | in jest; "I asked him jokingly whether he thought he could drive the Calcutta-Peshawar express" -00384387 02 r 02 jocosely 0 jocular 0 002 \ 01267076 a 0203 \ 01267076 a 0102 | with humor; "they tried to deal with this painful subject jocularly" -00384538 02 r 01 journalistically 0 001 \ 03077419 a 0101 | by journalists; "he is being journalistically crucified in his own country" -00384676 02 r 01 jovially 0 001 \ 01367651 a 0104 | in a jovial manner; "he greeted his friend jovially" -00384783 02 r 01 judiciously 0 001 ! 00384912 r 0101 | in a judicious manner; "let's use these intelligence tests judiciously" -00384912 02 r 01 injudiciously 0 002 ! 00384783 r 0101 \ 01899970 a 0101 | in an injudicious manner; "these intelligence tests were used injudiciously for many years" -00385081 02 r 01 keenly 0 001 \ 01744515 a 0104 | in a keen and discriminating manner; "he was keenly aware of his own shortcomings" -00385216 02 r 02 killingly 0 sidesplittingly 0 002 \ 01267339 a 0202 \ 01267339 a 0101 | in a very humorous manner -00385333 02 r 01 laboriously 0 001 \ 00836544 a 0107 | in a laborious manner; "their lives were spent in committee making decisions for others to execute on the basis of data laboriously gathered for them" -00385541 02 r 01 lackadaisically 0 001 \ 00295011 a 0101 | in an idle and lackadaisical manner; "he was hanging around the house lackadaisically" -00385689 02 r 01 lamely 0 001 \ 02325304 a 0102 | in a weak and unconvincing manner; "`I don't know, Edward,' she answered lamely" -00385822 02 r 02 landward 0 landwards 0 000 | toward land; "landward, miles of rough grass marshes melt into low uplands" -00385946 02 r 01 langsyne 0 001 ;r 08890097 n 0000 | at a distant time in the past (chiefly Scottish) -00386050 02 r 01 languidly 0 001 \ 00876204 a 0103 | in a languid and lethargic manner; "the men languidly put on their jackets" -00386181 02 r 01 languorously 0 001 \ 00876204 a 0104 | in a languorous manner; "he was sprawling languorously on the sofa" -00386307 02 r 01 large 0 000 | with the wind abaft the beam; "a ship sailing large" -00386393 02 r 01 large 1 000 | at a distance, wide of something (as of a mark) -00386474 02 r 02 lasciviously 0 salaciously 0 002 \ 02133779 a 0204 \ 02133207 a 0101 | in a lascivious manner -00386587 02 r 01 laterally 0 002 ;c 06057539 n 0000 \ 00778828 a 0101 | in a lateral direction or location; "the body is spindle-shaped and only slightly compressed laterally" -00386765 02 r 01 laterally 1 001 \ 02441469 a 0101 | to or by or from the side; "such women carry in their heads kinship knowledge of six generations depth and extending laterally among consanguineal kin as far as the grandchildren of second cousin" -00387017 02 r 04 laughably 0 ridiculously 0 ludicrously 0 preposterously 0 003 \ 01266397 a 0302 \ 01266397 a 0203 \ 01265308 a 0105 | so as to arouse or deserve laughter; "her income was laughably small, but she managed to live well" -00387254 02 r 02 laxly 0 leniently 0 002 \ 01763159 a 0202 \ 00755482 a 0101 | in a permissively lenient manner; "he felt incensed that Tarrant should have been treated so leniently given his crime" -00387455 02 r 01 under_arms 0 000 | armed and prepared for fighting -00387525 02 r 01 lazily 0 001 \ 00981304 a 0101 | in a slow and lazy manner; "I watched the blue smoke drift lazily away on the still air" -00387666 02 r 01 left 3 001 ! 00387828 r 0101 | toward or on the left; also used figuratively; "he looked right and left"; "the political party has moved left" -00387828 02 r 01 right 3 001 ! 00387666 r 0101 | toward or on the right; also used figuratively; "he looked right and left"; "the party has moved right" -00387983 02 r 01 legato 0 001 ! 00388094 r 0101 | connecting the notes; in music; "play this legato, please" -00388094 02 r 01 staccato 0 001 ! 00387983 r 0101 | separating the notes; in music; "play this staccato, please" -00388209 02 r 05 lengthways 0 lengthwise 0 longwise 0 longways 0 longitudinally 1 001 \ 01445558 a 0501 | in the direction of the length; "He cut the paper lengthwise" -00388379 02 r 01 longitudinally 2 000 | across time; "We studied the development of the children longitudinally" -00388494 02 r 02 lento 0 slowly 1 001 \ 00982602 a 0201 | in music; "Play this lento, please" -00388590 02 r 02 lethargically 0 unenergetically 0 001 \ 00875712 a 0101 | without energy; in a lethargic manner; "he hung around the house lethargically" -00388747 02 r 02 lewdly 0 obscenely 0 002 \ 00684163 a 0201 \ 02133207 a 0102 | in a lewd and obscene manner; "he had seen how in their dances the white men and women held one another obscenely" -00388944 02 r 03 licentiously 0 wantonly 0 promiscuously 0 003 \ 00361837 a 0304 \ 00361837 a 0206 \ 00362269 a 0101 | in a licentious and promiscuous manner; "this young girl has to share a room with her mother who lives promiscuously" -00389183 02 r 01 lifelessly 2 001 \ 00097768 a 0101 | in a lifeless manner; "the girl lay in her arms lifelessly" -00389299 02 r 01 lifelessly 1 001 \ 00119533 a 0101 | without animation or vitality; "lifelessly he performed the song" -00389421 02 r 02 longingly 0 yearningly 0 000 | in a yearning manner; "he spent the rest of the act gazing longingly over my right shoulder at the illuminated word `Exit'" -00389595 02 r 04 lucidly 0 pellucidly 0 limpidly 0 perspicuously 0 004 \ 00429355 a 0406 \ 00429355 a 0301 \ 00429355 a 0204 \ 01925708 a 0103 | in a clear and lucid manner; "this is a lucidly written book" -00389804 02 r 02 lukewarmly 0 tepidly 0 001 \ 00887472 a 0104 | in an unenthusiastically lukewarm manner; "he was lukewarmly received by his relatives" -00389958 02 r 01 luxuriantly 0 001 \ 01795933 a 0102 | in an elegantly luxuriant way; "this suave, culture-loving and luxuriantly good-looking M.P.represents the car-workers of Coventry" -00390147 02 r 01 luxuriantly 1 001 \ 00015247 a 0103 | in an abundant and luxuriant manner; "whiskers grew luxuriantly from his ample jowls" -00390290 02 r 01 manageably 0 002 ! 00390421 r 0101 \ 01474513 a 0101 | so as to be manageable; "this house is manageably small" -00390421 02 r 01 unmanageably 0 002 ! 00390290 r 0101 \ 01475282 a 0101 | so as to be unmanageable; "`This house is unmanageably large,' she complained" -00390576 02 r 02 manfully 0 manly 0 002 ! 00390816 r 0101 \ 01475831 a 0102 | in a manful manner; with qualities thought to befit a man; "having said her say Peggy manfully shouldered her burden and prepared to break up yet another home" -00390816 02 r 02 unmanfully 0 unmanly 0 002 ! 00390576 r 0101 \ 01476154 a 0102 | without qualities thought to befit a man -00390941 02 r 02 lightly 2 light 0 001 \ 01186408 a 0101 | with few burdens; "experienced travellers travel light" -00391058 02 r 01 light-handedly 0 001 \ 00706800 a 0101 | in a light-handed manner -00391143 02 r 02 light-heartedly 0 lightsomely 0 001 \ 00363291 a 0204 | in a light-hearted manner; "he light-heartedly overlooks some of the basic facts of life" -00391308 02 r 02 lightsomely 1 trippingly 0 002 \ 01192393 a 0203 \ 01192393 a 0102 | moving with quick light steps; "she walked lightsomely down the long staircase" -00391476 02 r 01 limnologically 0 001 \ 02756025 a 0101 | with regard to or concerning limnology -00391575 02 r 01 limply 0 000 | without rigidity; "the body was hanging limply from the tree" -00391671 02 r 01 lineally 0 001 \ 01416508 a 0101 | by an unbroken line of descent; "she is related lineally to the Royal Family" -00391803 02 r 01 matrilineally 0 001 \ 01416809 a 0101 | by descent through the female line -00391897 02 r 01 patrilineally 0 001 \ 01416959 a 0101 | by descent through the male line -00391989 02 r 02 lingeringly 0 protractedly 0 001 \ 01439155 a 0205 | in a slow, leisurely or prolonged way; "her voice was swift, yet ever the last words fell lingeringly" -Rossetti -00392174 02 r 01 lispingly 0 000 | with a lisp; "she spoke lispingly" -00392246 02 r 01 listlessly 0 001 \ 00876465 a 0101 | in a listless manner; "they shook hands rather listlessly" -00392361 02 r 01 lividly 0 001 \ 00115906 a 0101 | in a livid manner -00392432 02 r 01 loftily 0 001 \ 01205473 a 0102 | in a lofty manner; "she bore herself loftily" -00392531 02 r 01 logarithmically 0 001 \ 02994617 a 0101 | in a logarithmic manner; "data plotted logarithmically with respect to time is shown in Figure 2" -00392690 02 r 01 longer 0 001 \ 01437963 a 0101 | for more time; "can I stay bit longer?" -00392782 02 r 01 longest 0 001 \ 01437963 a 0101 | for the most time; "she stayed longest" -00392875 02 r 04 loquaciously 0 garrulously 0 talkatively 0 talkily 0 004 \ 02384077 a 0406 \ 02384077 a 0305 \ 02384077 a 0203 \ 02384077 a 0104 | in a chatty loquacious manner; "`When I was young,' she continued loquaciously, `I used to do all sorts of naughty things'" -00393149 02 r 01 low 0 000 | in a low position; near the ground; "the branches hung low" -00393240 02 r 01 lowest 0 000 | in the lowest position; nearest the ground; "the branch with the big peaches on it hung lowest" -00393370 02 r 01 lugubriously 0 001 \ 01366062 a 0101 | in a sorrowful lugubrious manner; "his long face lugubriously reflecting a hidden and unexpressed compassion" -00393538 02 r 01 luridly 0 001 \ 02101757 a 0101 | in a lurid manner; "it was luridly described in the book as the place where mystics took refuge" -00393688 02 r 03 lusciously 0 deliciously 1 scrumptiously 0 003 \ 02396720 a 0305 \ 02396720 a 0202 \ 02396720 a 0103 | so as to produce a delightful taste; "I bought some more of these deliciously sweet peaches" -00393903 02 r 01 lustfully 0 001 \ 02133779 a 0102 | in a lustful manner; "he looked at the young woman lustfully" -00394020 02 r 01 lyrically 0 001 \ 00856011 a 0102 | in a lyrical manner; "she danced the part of the Black Swan very lyrically" -00394151 02 r 01 magnanimously 0 001 \ 01589045 a 0102 | in a magnanimous manner; "magnanimously, he forgave all those who had harmed him" -00394292 02 r 02 grandiloquently 0 magniloquently 0 002 \ 02017721 a 0202 \ 02017721 a 0101 | in a rhetorically grandiloquent manner; "the orator spoke magniloquently" -00394462 02 r 01 majestically 0 001 \ 01285136 a 0103 | in a majestic manner; "flamingoes walk majestically through the marshes" -00394593 02 r 01 benevolently 0 002 ! 00394722 r 0101 \ 01372948 a 0102 | in a benevolent manner; "she looked on benevolently" -00394722 02 r 01 malevolently 0 002 ! 00394593 r 0101 \ 00225564 a 0101 | in a malevolent manner; "she gossips malevolently" -00394849 02 r 01 malignantly 0 001 \ 02594714 a 0101 | in a malignant manner, as of a tumor that spreads -00394956 02 r 01 malignly 0 001 \ 00224515 a 0103 | in a malign and evil manner -00395038 02 r 01 managerially 0 001 \ 02904223 a 0101 | in a managerial manner -00395119 02 r 01 mangily 0 001 \ 02582269 a 0101 | in a mangy manner -00395190 02 r 01 maniacally 0 001 \ 02076416 a 0101 | in a maniacal manner or to a maniacal degree; "he was maniacally obsessed with jealousy" -00395335 02 r 01 manipulatively 0 001 \ 00149461 a 0101 | in an artfully manipulative manner -00395430 02 r 01 masochistically 0 001 \ 02057681 a 0101 | in a masochistic manner; "masochistically he insisted on an even greater workload" -00395574 02 r 01 massively 0 001 \ 01389170 a 0101 | to a massive degree or in a massive manner; "tonight the haddock were shoaling massively in three hundred fathoms" -00395744 02 r 01 masterfully 1 001 \ 02226979 a 0102 | in a skillfully masterful manner; with the skill of a master; "the young boy played the violin sonata masterfully" -00395916 02 r 01 materialistically 0 001 \ 02577907 a 0101 | in a materialistic manner; "one should not approach life materialistically" -00396055 02 r 02 maternally 0 motherly 0 001 \ 01734884 a 0101 | in a maternal manner; as a mother; "she loved her students almost maternally" -00396200 02 r 02 mawkishly 0 drippily 0 002 \ 00854413 a 0202 \ 00854413 a 0105 | in a mawkish and emotional manner; "the violinist played that piece mawkishly" -00396363 02 r 01 maximally 0 002 ! 00396529 r 0101 \ 01495725 a 0101 | to a maximal degree; "the cells maximally responsive to lines in this orientation will fire" -00396529 02 r 01 minimally 0 002 ! 00396363 r 0101 \ 01496021 a 0101 | to a minimal degree; "the cells minimally responsive to lines in this orientation will not fire" -00396699 02 r 04 meagerly 0 sparingly 0 slenderly 1 meagrely 0 005 \ 01394744 a 0301 \ 02421364 a 0204 ! 00178909 r 0101 \ 00106456 a 0101 ! 00397016 r 0101 | to a meager degree or in a meager manner; "these voices are meagerly represented at the conference"; "the area is slenderly endowed with natural resources" -00397016 02 r 02 amply 0 richly 2 002 ! 00396699 r 0101 \ 00105746 a 0101 | to an ample degree or in an ample manner; "these voices were amply represented"; "we benefited richly" -00397197 02 r 01 meanderingly 0 001 \ 00763407 a 0101 | in a meandering manner; "the river ran meanderingly through the valley" -00397327 02 r 01 meaningfully 0 001 \ 01496976 a 0101 | in a meaningful manner; so as to be meaningful; "He glanced at her meaningfully" -00397466 02 r 02 meanly 0 humbly 1 002 \ 02340458 a 0201 \ 01112969 a 0102 | in a miserly manner; "they lived meanly and without ostentation" -00397610 02 r 01 meanly 1 001 \ 01112969 a 0102 | poorly or in an inferior manner; "troops meanly equipped" -00397720 02 r 03 meanly 2 scurvily 0 basely 0 003 \ 01589650 a 0301 \ 00904745 a 0206 \ 01589650 a 0102 | in a despicable, ignoble manner; "this new leader meanly threatens the deepest values of our society" -00397930 02 r 01 meanspiritedly 0 001 \ 01589650 a 0103 | in a meanspirited manner -00398015 02 r 01 immeasurably 0 002 ! 00398204 r 0101 \ 01498957 a 0101 | to an immeasurable degree; beyond measurement; "the war left him immeasurably fearful of what man can do to man" -00398204 02 r 01 measurably 0 002 ! 00398015 r 0101 \ 01498769 a 0101 | to a measurable degree; "the difference is measurably large" -00398339 02 r 01 mechanistically 0 000 | in a mechanistic manner; "Handel achieves a huge breadth of musical thought when composing almost mechanistically in the least weighty of styles" -00398528 02 r 01 medially 0 001 \ 00331030 a 0102 | in a medial position; "this consonant always occurs medially" -00398644 02 r 01 meditatively 0 001 \ 02419434 a 0104 | in a meditative manner; "round and round, while meditatively, as a cow chewing the cud, he let his eyes rest on the flat water ahead of him" -00398843 02 r 02 mellowly 0 mellow 0 002 ;u 07073447 n 0000 \ 01492061 a 0101 | (obsolete) in a mellow manner -00398955 02 r 02 melodiously 0 tunefully 0 003 \ 01502195 a 0201 ! 00399106 r 0101 \ 01501113 a 0101 | in a melodious manner; "she sang melodiously" -00399106 02 r 01 unmelodiously 0 002 ! 00398955 r 0101 \ 01502099 a 0101 | in an unmelodious manner; "she sings rather unmelodiously" -00399242 02 r 01 melodramatically 0 001 \ 00795078 a 0101 | in an overly emotional manner; "she acted melodramatically when she called for help" -00399389 02 r 01 melodramatically 1 001 \ 00796337 a 0102 | as in a melodrama; "here, the hero is melodramatically reunited with the heroine" -00399533 02 r 02 memorably 0 unforgettably 0 003 \ 01040410 a 0201 ! 00399702 r 0101 \ 01040752 a 0101 | in a memorable manner; "Horowitz could play Chopin memorably" -00399702 02 r 01 unmemorably 0 002 ! 00399533 r 0101 \ 01040331 a 0101 | in an unmemorable manner -00399802 02 r 02 menacingly 0 threateningly 0 002 \ 00194357 a 0208 \ 00194357 a 0103 | in a menacing manner; "the voice at the other end of the line dropped menacingly" -00399974 02 r 02 mendaciously 0 untruthfully 0 003 ! 00400192 r 0201 \ 01225898 a 0201 \ 01226129 a 0101 | in a mendacious and untruthful manner; "I told him, quite untruthfully, that I had just returned from leave" -00400192 02 r 01 truthfully 1 002 ! 00399974 r 0102 \ 01225398 a 0101 | with truth; "I told him truthfully that I had just returned from my vacation"; "he answered the question as truthfully as he could" -00400398 02 r 01 menially 0 001 \ 02229961 a 0102 | in a menial manner -00400471 02 r 04 mercilessly 0 pitilessly 0 unmercifully 0 remorselessly 0 004 \ 01508086 a 0402 \ 01507402 a 0302 \ 01508086 a 0201 \ 01507402 a 0101 | without pity; in a merciless manner; "he was mercilessly trounced by his opponent in the House" -00400722 02 r 02 meretriciously 0 flashily 1 002 \ 02393791 a 0204 \ 02393791 a 0109 | in a meretricious manner; "the boat is meretriciously decorated" -00400876 02 r 01 meritoriously 0 001 \ 02586747 a 0101 | in a meritorious manner; "he served his country meritoriously" -00400998 02 r 02 messily 0 untidily 0 002 \ 02424254 a 0201 \ 02426042 a 0101 | in a messy, untidy manner; "Rossi spat very deliberately, and very messily, upon Durieux's party card" -00401183 02 r 01 tidily 0 001 \ 02422685 a 0101 | in a tidy manner; "the door gave access to a tidily furnished sitting-room where chintz and oak predominated" -00401345 02 r 01 methodologically 0 001 \ 02943463 a 0101 | in a methodical manner; "let us proceed methodologically" -00401465 02 r 01 metrically 0 001 \ 02020310 a 0102 | with regard to meter; "metrically, these poems are matched" -00401581 02 r 01 rhythmically 0 001 \ 02019021 a 0101 | in a rhythmic manner; "the chair rocked rhythmically back and forth" -00401708 02 r 02 mindlessly 0 senselessly 0 002 \ 01945139 a 0203 \ 01945139 a 0101 | in an unreasonably senseless manner; "these temples were mindlessly destroyed by the Red Guards" -00401893 02 r 01 mindlessly 1 001 \ 01334277 a 0101 | without intellectual involvement; "all day long, he mindlessly filled out forms" -00402030 02 r 03 amidships 0 amidship 0 midships 0 000 | at or near or toward the center of a ship; "in the late 19th century, engines were placed in front, amidships, and at the rear" -00402217 02 r 01 midweek 0 000 | in the middle of the week -00402278 02 r 01 mincingly 0 001 \ 01948092 a 0102 | in a mincing manner; "she stepped mincingly over the puddles" -00402395 02 r 01 ministerially 0 001 \ 02764828 a 0101 | in the manner of a minister or clergyman; "he was called on to visit ministerially on the dying man" -00402555 02 r 02 minutely 0 circumstantially 2 002 \ 01103676 a 0201 \ 01393483 a 0102 | in minute detail; "our inability to see everything minutely and clearly is due merely to the infirmity of our senses" -00402764 02 r 01 miraculously 0 001 \ 01576551 a 0103 | in a miraculous manner; "my hand grasped the gun that was, miraculously, lying on the ground beside my finger tips" -00402938 02 r 01 miserably 0 001 \ 00478872 a 0101 | in a miserable manner; "I bit my lip miserably and nodded" -00403052 02 r 01 mistily 0 001 \ 00461609 a 0104 | in a misty manner; "the summits of the mountains were mistily purple" -00403175 02 r 01 molto 0 001 ;c 07020895 n 0000 | much; "allegro molto" -00403249 02 r 01 momentously 0 001 \ 02161982 a 0101 | in a momentous way -00403325 02 r 01 monotonously 0 001 \ 00807817 a 0102 | in a monotonous manner; "the history of the play throughout the latter part of the eighteenth century is monotonously uneventful" -00403513 02 r 01 moodily 0 001 \ 01137378 a 0105 | in a moody manner; "in the bar, a youngish, sharp-eyed man was staring moodily into a gin and tonic" -00403667 02 r 01 morbidly 0 001 \ 02559862 a 0101 | in a morbid manner or to a morbid degree; "he was morbidly fascinated by dead bodies" -00403807 02 r 01 morosely 0 001 \ 01137378 a 0106 | in a morose manner; "he fell morosely on the bed" -00403911 02 r 01 morphologically 0 001 \ 02949275 a 0102 | in a morphological manner; with regard to morphology; "these two plants are morphologically related" -00404073 02 r 01 mortally 0 000 | in such a manner that death ensues (also in reference to hatred, jealousy, fear, etc.); "a being of whom the forest Indians are said to be mortally afraid, with a hoof shaped like the heel of a bottle" -00404311 02 r 01 motionlessly 0 001 \ 01564315 a 0102 | without moving; in a motionless manner; "he saw the black-haired man waiting motionlessly behind the opposite side of the platform" -00404501 02 r 01 sadly 3 001 \ 01366277 a 0101 | with sadness; in a sad manner; "`She died last night,' he said sadly" -00404622 02 r 01 mournfully 0 001 \ 01362387 a 0102 | in a mournful manner; "the young man stared into his glass mournfully" -00404749 02 r 01 mundanely 0 001 \ 01674242 a 0102 | in a mundane manner; "the young man spoke so mundanely of university life" -00404879 02 r 02 mundanely 1 terrestrially 1 002 \ 02578035 a 0202 \ 02578035 a 0101 | in a worldly manner; "terrestrially changeable" -00405016 02 r 01 murderously 1 001 \ 00248837 a 0102 | as if bent on murder; "the huge dog bore down on them with bared fangs and barking murderously" -00405169 02 r 01 murkily 1 001 \ 00433529 a 0104 | unclearly; opaquely; "murkily expressed ideas" -00405269 02 r 01 musically 1 002 ! 00405389 r 0101 \ 01504625 a 0101 | in a musical manner; "She sang very musically" -00405389 02 r 01 unmusically 0 002 ! 00405269 r 0101 \ 01505318 a 0101 | in an unmusical manner; "She sings rather unmusically" -00405519 02 r 01 musingly 0 001 \ 02419434 a 0105 | in a reflective manner; "`It's funny about that bar,' he said musingly" -00405645 02 r 02 mutually 0 reciprocally 1 002 \ 01945550 a 0201 \ 01945550 a 0102 | in a mutual or shared manner; "the agreement was mutually satisfactory"; "the goals of the negotiators were not reciprocally exclusive" -00405868 02 r 02 in_return 0 reciprocally 2 001 \ 01945550 a 0201 | (often followed by `for') in exchange or in reciprocation; "gave up our seats on the plane and in return received several hundred dollars and seats on the next plane out"; "we get many benefits in return for our taxes" -00406157 02 r 01 naively 0 001 \ 02271544 a 0101 | in a naive manner; "he believed, naively, that she would leave him her money" -00406288 02 r 01 nakedly 0 001 \ 00457998 a 0103 | without clothing; "Henriette saw the weaving figure of an Apache warrior reel nakedly on a pony and rush by with a rifle raised" -00406470 02 r 01 nakedly 2 001 \ 01886783 a 0101 | in an exposed manner; without protection or defense; "they were attacked as they huddled nakedly on the bare hill" -00406638 02 r 02 narrow-mindedly 0 small-mindedly 0 003 \ 00288498 a 0202 ! 00406868 r 0101 \ 00287640 a 0101 | in a narrow-minded manner; "narrow-mindedly, the authorities closed down the cafe where teenagers used to hang out" -00406868 02 r 01 broad-mindedly 0 002 ! 00406638 r 0101 \ 00286578 a 0101 | in a broad-minded manner; "the authorities broad-mindedly permitted the opening of a center for teenagers" -00407053 02 r 02 nastily 0 meanly 4 002 \ 01587787 a 0202 \ 01587077 a 0101 | in a nasty ill-tempered manner; "`Don't expect me to help you,' he added nastily" -00407215 02 r 04 nationally 0 nationwide 0 across_the_nation 0 across_the_country 0 001 \ 02988060 a 0101 | extending throughout an entire nation; "nationally advertised"; "it was broadcast nationwide" -00407419 02 r 01 nattily 0 001 \ 00971933 a 0104 | in a natty manner; with smartness; "it was arranged carefully and nattily" -00407547 02 r 01 jauntily 0 001 \ 00971933 a 0103 | in a jaunty fashionable manner; "his hat sat jauntily on his full brown hair" -00407679 02 r 01 nay 0 000 | not this merely but also; not only so but; "each of us is peculiar, nay, in a sense unique" -00407802 02 r 03 nearer 0 nigher 0 closer 0 001 ;u 06322693 n 0000 | (comparative of `near' or `close') within a shorter distance; "come closer, my dear!"; "they drew nearer"; "getting nearer to the true explanation" -00408021 02 r 03 nearest 0 nighest 0 closest 0 001 ;u 06693870 n 0000 | (superlative of `near' or `close') within the shortest distance; "that was the time he came nearest to death" -00408205 02 r 02 necessarily 0 needfully 0 003 \ 01580775 a 0202 ! 00408498 r 0101 \ 01580050 a 0101 | in an essential manner; "such expenses are necessarily incurred" -00408375 02 r 01 necessarily 1 000 | as a highly likely consequence; "we are necessarily bound for federalism in Europe" -00408498 02 r 01 unnecessarily 0 002 ! 00408205 r 0101 \ 01581115 a 0101 | in an unnecessary manner; "they were unnecessarily rude" -00408632 02 r 03 neck_and_neck 0 head-to-head 0 nip_and_tuck 0 003 \ 00551416 a 0303 \ 00551416 a 0202 \ 00551416 a 0101 | even or close in a race or competition or comparison; "the horses ran neck and neck"; "he won nip and tuck" -00408865 02 r 01 nefariously 0 001 \ 02515001 a 0101 | in a nefarious manner or to a nefarious degree; "nefariously involved in a conspiracy" -00409009 02 r 01 neglectfully 0 001 \ 00755220 a 0103 | in a neglectful manner -00409090 02 r 01 negligently 0 001 \ 00754873 a 0101 | in a negligent manner; "he did his work negligently" -00409200 02 r 01 nervously 0 001 \ 02406908 a 0101 | in an anxiously nervous manner; "we watched the stock market nervously" -00409327 02 r 01 neurotically 0 001 \ 01583040 a 0101 | in a neurotic manner; "they are finely, not to say neurotically adjusted" -00409459 02 r 01 nervously 1 001 \ 00919155 a 0104 | with nervous excitement; "our bodies jumped nervously away at the slightest touch" -00409597 02 r 02 nevermore 0 never_again 0 000 | at no time hereafter; "Quoth the raven, nevermore!" -E.A.Poe -00409709 02 r 03 near 1 nigh 0 close 1 000 | near in time or place or relationship; "as the wedding day drew near"; "stood near the door"; "don't shoot until they come near"; "getting near to the true explanation"; "her mother is always near"; "The end draws nigh"; "the bullet didn't come close"; "don't get too close to the fire" -00410043 02 r 02 close_up 0 at_close_range 0 000 | very close; "without my reading glasses I can hardly see things close up"; "even firing at close range he missed" -00410210 02 r 02 nightly 0 every_night 0 000 | at the end of each day; "she checks on her roses nightly" -00410317 02 r 02 ninefold 0 nine_times 0 000 | by a factor of nine; "my investment has increased ninefold" -00410426 02 r 01 nobly 0 001 \ 01588172 a 0101 | in a noble manner; "she has behaved nobly" -00410520 02 r 01 nohow 0 000 | in no manner; in no way; "We could nohow make out his handwriting" -00410620 02 r 01 nonstop 0 000 | without stopping; "we are flying nonstop form New York to Tokyo" -00410720 02 r 01 nostalgically 0 000 | in a nostalgic manner; "they spent an hour together, talking nostalgically as they wandered slowly down the coast road" -00410881 02 r 01 notoriously 0 000 | to a notorious degree; "European emigres, who notoriously used to repair to the British Museum to write seditious pamphlets" -00411045 02 r 01 nutritionally 0 001 \ 03002351 a 0101 | with regard to nutrition; "nutritionally, her new diet is suicide" -00411171 02 r 01 numerically 0 001 \ 01915586 a 0102 | in number; with regard to numbers; "in ten years' time the Oxbridge mathematicians, scientists, and engineers will not be much more significant numerically than the Oxbridge medical schools are now" -00411427 02 r 02 numbly 0 insensibly 0 002 \ 02102796 a 0201 \ 02103333 a 0103 | in a numb manner; without feeling; "I stared at him numbly" -00411570 02 r 02 nowise 0 to_no_degree 0 000 | in no manner; "they are nowise different" -00411661 02 r 03 northeast 0 north-east 0 nor'-east 0 000 | to, toward, or in the northeast -00411755 02 r 03 northwest 0 north-west 0 nor'-west 0 000 | to, toward, or in the northwest -00411849 02 r 02 north-northeast 0 nor'-nor'-east 0 000 | to, toward, or in the north-northeast -00411947 02 r 02 north-northwest 0 nor'-nor'-west 0 000 | to, toward, or in the north-northwest -00412045 02 r 01 objectively 0 002 ! 00412178 r 0101 \ 01615180 a 0101 | with objectivity; "we must look at the facts objectively" -00412178 02 r 01 subjectively 0 002 ! 00412045 r 0101 \ 01615925 a 0101 | in a subjective way; "you cannot look at these facts subjectively" -00412321 02 r 01 obscenely 1 000 | to an obscene degree; "this man is obscenely rich" -00412409 02 r 03 obsequiously 0 subserviently 0 servilely 0 003 \ 00790086 a 0301 \ 00790691 a 0202 \ 00790540 a 0101 | in an obsequious manner; "she acts obsequiously toward her boss" -00412596 02 r 02 observantly 0 observingly 0 002 \ 01745517 a 0202 \ 01745517 a 0101 | in an observant manner -00412708 02 r 03 obstreperously 0 loudly 4 clamorously 0 002 \ 01920367 a 0303 \ 00696207 a 0101 | in manner that attracts attention; "obstreperously, he demanded to get service" -00412889 02 r 01 obtrusively 0 002 ! 00412987 r 0101 \ 01614778 a 0101 | in an obtrusive manner -00412987 02 r 01 unobtrusively 0 002 ! 00412889 r 0101 \ 01614988 a 0101 | in an unobtrusive manner; "messengers were moving unobtrusively over the jet-black mountain ranges, bearing confidential tidings from sheikhdom to sheikhdom" -00413222 02 r 01 officiously 0 001 \ 01352561 a 0104 | in an officious manner; "nothing so fatal as to strive too officiously for an abstract quality like beauty" -00413387 02 r 02 obstructively 0 hinderingly 0 002 \ 01764351 a 0202 \ 01764351 a 0104 | in an obstructive manner; "he acted very obstructively when we tried to carry out our project" -00413573 02 r 01 offside 0 000 | illegally in advance of the ball or puck -00413649 02 r 01 onerously 0 001 \ 01189109 a 0102 | in an onerous manner -00413725 02 r 01 opaquely 0 001 \ 00535293 a 0101 | in an opaque manner; "he referred opaquely to her recent past" -00413842 02 r 01 operationally 0 001 \ 00833018 a 0101 | in respect to operation; "reported the machine operationally satisfactory"; "a well-trained staff that is operationally adequate" -00414031 02 r 01 oppressively 0 001 \ 01189998 a 0101 | in a heavy and oppressive way; "it was oppressively hot in the office" -00414160 02 r 01 optimally 0 001 \ 00228645 a 0102 | in an optimal and most desirable way -00414252 02 r 01 optimistically 0 002 ! 00414436 r 0101 \ 01663571 a 0101 | with optimism; in an optimistic manner; "`We have a good chance of winning,' he exclaimed optimistically" -00414436 02 r 01 pessimistically 0 002 ! 00414252 r 0101 \ 01664581 a 0101 | with pessimism; in a pessimistic manner; "he evaluated his chances for survival rather pessimistically" -00414619 02 r 01 optionally 0 002 ! 00414750 r 0101 \ 00847399 a 0101 | in an optional manner; "this rule is applied optionally" -00414750 02 r 01 obligatorily 1 002 ! 00414619 r 0101 \ 00848074 a 0101 | in an obligatory manner; "this rule applies obligatorily" -00414884 02 r 02 sumptuously 0 opulently 0 002 \ 02024928 a 0205 \ 02024928 a 0107 | in a sumptuous and opulent manner; "this government building is sumptuously appointed" -00415058 02 r 01 organizationally 0 001 \ 02898276 a 0101 | with regard to organization; "organizationally, the conference was a disaster!" -00415200 02 r 01 osmotically 0 001 \ 03000608 a 0101 | by means of osmosis -00415277 02 r 02 ostentatiously 0 showily 0 002 \ 01848701 a 0202 \ 01848355 a 0101 | with ostentation; in an ostentatious manner; "Mr Khrushchev ostentatiously wooed and embraced Castro at the U.N. general assembly" -00415496 02 r 01 outlandishly 0 001 \ 00608791 a 0109 | in an outlandish manner; "the Bavarian was outlandishly dressed in lederhosen" -00415633 02 r 01 outspokenly 0 001 \ 00764484 a 0106 | in an outspoken manner; "he was outspokenly critical of the Government's new social policy" -00415782 02 r 01 overbearingly 0 001 \ 00787357 a 0103 | in an overbearing manner -00415866 02 r 01 overleaf 0 000 | on or to the other side of a page; "data tabulated overleaf" -00415963 02 r 02 overmuch 0 too_much 0 000 | more than necessary; "she eats too much"; "let's not blame them overmuch" -00416084 02 r 02 oversea 0 overseas 0 000 | beyond or across the sea; "He lived overseas for many years" -00416191 02 r 01 overside 0 000 | over the side of a boat; "Willie eased himself overside into the sea" -00416297 02 r 01 owlishly 0 001 \ 02569945 a 0101 | in an owlish manner; "the gentle-looking barrister peered owlishly around him" -00416430 02 r 01 pacifistically 0 001 \ 01741953 a 0102 | in a pacifistic manner; "the pacifistically inclined liberals" -00416553 02 r 02 painstakingly 0 fastidiously 1 002 \ 00983862 a 0201 \ 00310138 a 0102 | in a fastidious and painstaking manner; "it is almost a waste of time painstakingly to learn the routines of selling" -00416763 02 r 01 palatably 0 002 ! 00416855 r 0101 \ 01716227 a 0101 | in a palatable way -00416855 02 r 01 unpalatably 0 002 ! 00416763 r 0101 \ 01716491 a 0101 | in an unpalatable way; "The vegetables looked unpalatably wilted" -00416996 02 r 01 palely 0 001 \ 00405879 a 0101 | in a pale manner; without physical or emotional color; "his wife, always palely appealing" -00417139 02 r 03 pallidly 0 palely 1 dimly 1 002 \ 00408445 a 0201 \ 02325984 a 0102 | in a manner lacking interest or vitality; "a palely entertaining show" -00417299 02 r 01 parentally 0 001 \ 01722529 a 0101 | in a parental manner -00417376 02 r 01 parenterally 0 001 \ 03096747 a 0101 | by parenteral means; "the drug is intended to be administered parenterally" -00417510 02 r 01 parenthetically 0 001 \ 01857527 a 0102 | in a parenthetical manner; "he added parenthetically that he would not attend the wedding ceremony" -00417671 02 r 01 parochially 0 001 \ 00637267 a 0102 | in a parochial manner; "parochially narrow in his outlook" -00417787 02 r 02 by 0 past 0 000 | so as to pass a given point; "every hour a train goes past" -00417884 02 r 01 patchily 0 001 \ 00912814 a 0101 | in spots -00417947 02 r 01 paternally 0 001 \ 01734436 a 0101 | in a paternal manner; "he behaves very paternally toward his young bride" -00418077 02 r 01 pathetically 1 001 \ 00905181 a 0101 | arousing scornful pity; "they had pathetically little money"; "it was pathetically bad" -00418223 02 r 02 pathetically 2 pitiably 0 002 \ 01050890 a 0206 \ 01050890 a 0104 | in a manner arousing sympathy and compassion; "the sick child cried pathetically" -00418392 02 r 01 patriotically 0 002 ! 00418541 r 0101 \ 01740207 a 0101 | in a patriotic manner; "patriotically, he buys only U.S.-made products" -00418541 02 r 01 unpatriotically 0 002 ! 00418392 r 0101 \ 01740630 a 0101 | in an unpatriotic manner; "unpatriotically he contrived a way of avoiding military service" -00418712 02 r 02 peaceably 0 pacifically 0 002 \ 01741669 a 0201 \ 01741669 a 0102 | in a peaceable manner; "the tenant paying the rent hereby reserved and performing the several covenants herein on his part contained shall peaceably hold and enjoy the demised premises" -00418985 02 r 01 pedantically 0 001 \ 02083908 a 0103 | in a pedantic manner; "these interpretations are called `schemas' or, more pedantically, `schemata'" -00419144 02 r 03 peevishly 0 querulously 0 fractiously 1 003 \ 01136541 a 0302 \ 00513981 a 0202 \ 01136541 a 0105 | in a peevish manner -00419283 02 r 01 pejoratively 0 001 \ 00907243 a 0103 | in a pejorative manner; "I am not using the word pejoratively" -00419404 02 r 02 penetratingly 0 penetratively 0 002 \ 01744515 a 0207 \ 01744515 a 0106 | with ability to see into deeply; "the author treats his subject penetratingly" -00419576 02 r 01 pensively 0 001 \ 02419434 a 0106 | in a pensive manner; "pensively he stared at the painting" -00419690 02 r 01 penuriously 0 001 \ 02023661 a 0105 | in a penurious manner; "they lived penuriously" -00419795 02 r 01 perceptively 0 001 \ 01744111 a 0101 | in a perceptive manner -00419876 02 r 01 perceptually 0 001 \ 02945377 a 0101 | with regard to perception; "this task is perceptually very difficult" -00420004 02 r 02 perchance 0 by_chance 3 001 ;u 07073447 n 0000 | through chance, "To sleep, perchance to dream.." -00420121 02 r 01 perfidiously 0 001 \ 00960094 a 0102 | in a perfidious manner; "he was playing perfidiously one side against the other" -00420260 02 r 01 perkily 0 001 \ 00363621 a 0103 | in a perky manner; "stuck perkily, like a bustle on a woman's skirt" -00420382 02 r 01 perpendicularly 0 001 \ 01720280 a 0101 | in a perpendicular manner; "this red line runs perpendicularly to the green line" -00420525 02 r 02 perplexedly 0 confoundedly 0 002 \ 01766133 a 0205 \ 01765643 a 0101 | in a perplexed manner; "he looked at his professor perplexedly" -00420679 02 r 01 persistently 1 001 \ 00593071 a 0101 | in a persistent manner; "he was asking questions, unavoidable questions, persistently..." -00420827 02 r 01 persuasively 0 001 \ 01769843 a 0101 | in a persuasive manner; "this essay argues so persuasively..." -00420948 02 r 01 pertinaciously 0 001 \ 02327569 a 0104 | in a dogged and pertinacious manner; "he struggled pertinaciously for the new resolution" -00421098 02 r 01 pertinently 0 001 \ 00138314 a 0103 | in a pertinent way; "what is singular about his use of them is that no other artist, of his time or any other, has painted them so directly, intimately and pertinently" -00421324 02 r 01 pervasively 0 001 \ 00468795 a 0104 | in a pervasive manner -00421403 02 r 01 pettily 0 001 \ 00288498 a 0101 | in a petty way -00421471 02 r 01 pharmacologically 0 001 \ 02912686 a 0101 | with regard to pharmacology; "pharmacologically, this plant could have important applications" -00421629 02 r 01 phenomenally 0 001 \ 01676993 a 0101 | to a phenomenal degree; "his reaction was phenomenally quick" -00421749 02 r 01 philanthropically 0 001 \ 00359645 a 0104 | in a philanthropic manner -00421838 02 r 01 philatelically 0 001 \ 03006854 a 0101 | in a philatelic manner; "the Post Office honors great Americans philatelically" -00421978 02 r 01 phlegmatically 0 001 \ 00858340 a 0101 | in a phlegmatic manner; "he accepted the decision phlegmatically" -00422104 02 r 01 picturesquely 0 001 \ 00219924 a 0101 | in a picturesque manner; "in the building trade such a trader is picturesquely described as a `brass plate' merchant" -00422281 02 r 04 piecemeal 0 little_by_little 0 bit_by_bit 1 in_stages 0 000 | a little bit at a time; "the research structure has developed piecemeal" -00422435 02 r 04 piercingly 0 bitterly 2 bitingly 0 bitter 0 003 \ 01711910 a 0301 \ 01711910 a 0202 \ 00803432 a 0104 | extremely and sharply; "it was bitterly cold"; "bitter cold" -00422619 02 r 01 piggishly 0 001 \ 00011327 a 0102 | in a piggish manner; "piggishly, he took two pieces of cake" -00422735 02 r 01 pinnately 0 001 \ 02173632 a 0101 | having a pinnate shape; "a pinnately compound leaf" -00422842 02 r 02 piping 0 steaming 0 000 | (used of heat) extremely; "the casserole was piping hot" -00422944 02 r 02 piquantly 0 spicily 0 002 \ 02398378 a 0204 \ 02398378 a 0101 | with strong spices; in a spicy manner; "the soup was spicily flavored" -00423098 02 r 01 placidly 0 001 \ 01134486 a 0104 | in a placid and good-natured manner; "I put the questions, and she answered them placidly" -00423243 02 r 01 placidly 1 001 \ 00302951 a 0101 | in a quiet and tranquil manner; "the sea now shimmered placidly before our eyes" -00423378 02 r 01 pizzicato 0 001 ;c 07020895 n 0000 | with a light plucking staccato sound -00423471 02 r 01 point-blank 0 000 | in a direct and unequivocal manner; "I asked him point-blank whether he wanted the job" -00423598 02 r 01 posthumously 0 001 \ 00817242 a 0101 | after death; "these piano pieces were published posthumously"; "he was honored posthumously" -00423749 02 r 01 prestissimo 0 001 ;c 07020895 n 0000 | extremely fast; as fast as possible; "this passage should be played prestissimo" -00423888 02 r 01 rallentando 0 001 ;c 07020895 n 0000 | slowing down; "this passage should be played rallentando" -00424004 02 r 01 recognizably 0 002 ! 00424140 r 0101 \ 01747996 a 0101 | to a recognizable degree; "he was recognizably slimmer now" -00424140 02 r 02 unrecognizably 0 unrecognisable 0 002 ! 00424004 r 0101 \ 01273773 a 0101 | beyond recognition; in an unrecognizable manner; "he had unrecognizably aged" -00424313 02 r 01 regretfully 0 001 \ 01150475 a 0101 | with regret (used in polite formulas); "I must regretfully decline your kind invitation" -00424459 02 r 01 piratically 0 001 \ 03100184 a 0101 | in a piratical manner; "the piratically published edition of his book" -00424587 02 r 04 pit-a-pat 0 pitty-patty 0 pitty-pat 0 pitter-patter 0 000 | describing a rhythmic beating; "his heart went pit-a-pat" -00424724 02 r 04 pit-a-pat 1 pitty-patty 1 pitty-pat 1 pitter-patter 1 000 | as of footsteps; "he came running pit-a-pat down the hall" -00424862 02 r 01 piteously 0 001 \ 01050890 a 0105 | in a piteous manner -00424937 02 r 02 pithily 0 sententiously 0 002 \ 00548316 a 0202 \ 00548316 a 0101 | in a pithy sententious manner; "she expressed herself pithily" -00425087 02 r 01 pitifully 0 001 \ 00905181 a 0103 | to a pitiful degree; "wages were pitifully low, particularly the wages of women" -00425223 02 r 01 placatingly 0 001 \ 00759826 a 0102 | in a placating manner; "Jenny smiled placatingly" -00425330 02 r 03 plaguey 0 plaguy 0 plaguily 0 001 \ 00089550 a 0309 | in a disagreeable manner; "it's so plaguey cold!" -00425453 02 r 01 plaintively 0 001 \ 01366157 a 0102 | in a plaintive manner; "the last note of the song rang out plaintively" -00425582 02 r 01 playfully 0 001 \ 02121859 a 0101 | in a playful manner; "she loosened the half-hoop of diamonds on her left hand third finger and held it out to him playfully" -00425762 02 r 01 pleasingly 0 001 \ 01807219 a 0101 | in a pleasing manner; "the room was pleasingly large" -00425872 02 r 01 plenarily 0 001 \ 00528167 a 0101 | in a plenary manner; "an empire destined to enter the Commonwealth plenarily" -00426005 02 r 01 ploddingly 0 001 \ 00837756 a 0102 | in a plodding manner; "this writer ploddingly accumulates detail after detail" -00426140 02 r 02 plop 0 plunk 0 001 ;u 07075172 n 0000 | with a short hollow thud; "plop came the ball down to the corner of the green" -00426278 02 r 01 plump 1 001 ;u 07075172 n 0000 | straight down especially heavily or abruptly; "the anchor fell plump into the sea"; "we dropped the rock plump into the water" -00426457 02 r 01 pneumatically 0 001 \ 02838894 a 0101 | in a pneumatic manner; "at the present time the transmission is very often done hydraulically or pneumatically" -00426628 02 r 01 pointlessly 0 001 \ 02503305 a 0102 | in a pointless manner; "he spent his life in pointlessly tiresome drudgery" -00426761 02 r 02 poisonously 0 venomously 0 002 \ 00226105 a 0202 \ 00226105 a 0101 | in a very malevolent manner -00426877 02 r 01 pluckily 0 001 \ 02279900 a 0102 | in a plucky manner; "he was Brentford's defensive star in pluckily holding out the determined Reading raids for long periods" -00427057 02 r 01 plumb 0 000 | conforming to the direction of a plumb line -00427134 02 r 01 ponderously 0 001 \ 01192786 a 0103 | in a heavy ponderous manner; "he moves ponderously" -00427243 02 r 01 ponderously 1 001 \ 01346538 a 0101 | in an uninterestingly ponderous manner; "the play was staged with ponderously realistic sets" -00427394 02 r 01 pop 0 000 | like a pop or with a pop; "everything went pop" -00427473 02 r 01 popishly 0 001 \ 02921753 a 0106 | like the Pope; in a popish manner -00427561 02 r 01 portentously 0 001 \ 01849960 a 0105 | in a portentous manner; "portentously, the engines began to roll" -00427685 02 r 01 possessively 0 001 \ 00030508 a 0101 | in a possessive manner; "he was sleeping, one arm flung possessively across his wife" -00427829 02 r 02 post-free 0 post-paid 0 000 | having the postage paid by the sender; "I will send it post-paid" -00427944 02 r 02 potently 0 powerfully 0 002 \ 01830599 a 0202 \ 01830599 a 0101 | in a manner having a powerful influence; "Clytemnestra's ghost crying in the night for vengeance remained most potently in the audience's mind" -00428173 02 r 01 poutingly 0 000 | with a pout or in a pouting manner -00428245 02 r 02 powerfully 1 strongly 1 002 \ 02321009 a 0201 \ 01825671 a 0101 | in a powerful manner; "the federal government replaced the powerfully pro-settler Sir Godfrey Huggins with the even tougher and more determined ex-trade unionist" -00428493 02 r 01 powerlessly 0 001 \ 01827535 a 0101 | in a powerless manner -00428572 02 r 02 practicably 0 feasibly 0 003 \ 01822563 a 0201 \ 01822563 a 0103 + 01822563 a 0201 | in a practicable manner; so as to be feasible -00428722 02 r 01 pragmatically 0 001 \ 01940651 a 0104 | in a realistic manner; "we want to build a democratic society, but we must act pragmatically" -00428875 02 r 02 pre-eminently 0 preeminently 0 001 \ 02339341 a 0202 | to a preeminent degree; with superiority or distinction above others; in a preeminent manner; "a wide variety of pre-eminently contemporary scenes" -00429097 02 r 01 precariously 0 001 \ 02060496 a 0103 | in a precarious manner; "being a precariously dominant minority is a difficult position for human nature to cope with" -00429274 02 r 02 precious 0 preciously 0 001 ;u 06321054 n 0000 | extremely; "there is precious little time left" -00429390 02 r 01 precipitously 0 001 \ 01145151 a 0102 | abruptly; in a precipitous manner; "the mountains rose precipitously from the shore" -00429534 02 r 02 precipitously 1 sharply 3 000 | very suddenly and to a great degree; "conditions that precipitously increase the birthrate"; "prices rose sharply" -00429700 02 r 01 precociously 0 001 \ 01839829 a 0101 | in a precocious manner; "her child behaves precociously" -00429815 02 r 01 predictably 0 001 \ 01841544 a 0101 | in a predictable manner or to a predictable degree; "predictably, he did not like the news" -00429964 02 r 02 prematurely 0 untimely 0 002 \ 00815000 a 0202 \ 00815000 a 0101 | too soon; in a premature manner; "I spoke prematurely" -00430105 02 r 01 prematurely 1 001 \ 01495535 a 0101 | (of childbirth) before the end of the normal period of gestation; "the child was born prematurely" -00430261 02 r 02 presciently 0 cannily 0 002 \ 00439252 a 0203 \ 00772137 a 0101 | with foresight; "more presciently than they superiors, these workers grasped the economic situation" -00430447 02 r 01 carnally 0 001 \ 01778572 a 0102 | in a carnal manner -00430520 02 r 01 presentably 0 001 \ 01993598 a 0101 | in a presentable manner; "years ago in her white-painted infancy it must have hung presentably on the deck of some luxury liner" -00430706 02 r 01 pressingly 0 001 \ 00713558 a 0101 | in a pressing manner -00430783 02 r 01 presumptuously 0 001 \ 00205696 a 0103 | in a presumptuous manner; "he presumptuously overstepped the doctor's orders" -00430921 02 r 01 pretentiously 0 002 ! 00431058 r 0101 \ 01849288 a 0101 | in a pretentious manner; "this author writes pretentiously" -00431058 02 r 01 unpretentiously 0 002 ! 00430921 r 0101 \ 01851523 a 0101 | in an unpretentious manner; "she was unpretentiously dressed even though she was the guest of honor" -00431238 02 r 02 preternaturally 0 supernaturally 0 002 \ 01574446 a 0201 \ 01577086 a 0103 | in a supernatural manner; "she was preternaturally beautiful" -00431396 02 r 01 prettily 0 001 \ 00220082 a 0101 | in a pretty manner; "all this is most prettily done" -00431503 02 r 01 priggishly 0 001 \ 01880163 a 0101 | in a priggish manner; "this professor acts so priggishly--like a moderator with a gavel!" -00431649 02 r 02 primly 0 prissily 0 002 \ 01880163 a 0203 \ 01880163 a 0102 | in a prissy manner; "the new teacher alienates the children by behaving prissily" -00431812 02 r 01 primitively 0 001 \ 00818175 a 0102 | in a primitive style or manner; "rather primitively operated foundries" -00431941 02 r 03 primitively 1 originally 1 in_the_beginning 0 000 | with reference to the origin or beginning -00432054 02 r 01 probabilistically 0 001 \ 03102871 a 0101 | by the use of probability theory; "we can calculate the position of the particles probabilistically" -00432218 02 r 01 problematically 0 001 \ 00746451 a 0104 | in such a way as to pose a problem -00432314 02 r 02 warmly 1 warm 0 002 \ 02529264 a 0201 \ 02529264 a 0101 | in a warm manner; "warmly dressed"; "warm-clad skiers" -00432446 02 r 02 wastefully 0 prodigally 1 002 \ 02422242 a 0202 \ 02422068 a 0101 | to a wasteful manner or to a wasteful degree; "we are still prodigally rich compared to others" -00432629 02 r 01 prodigiously 0 001 \ 01676026 a 0104 | to a prodigious degree; "the prices of farms rose prodigiously" -00432751 02 r 01 profanely 0 001 \ 02012748 a 0102 | in an irreverent or profane manner; "he kept wondering profanely why everything bad happened to him" -00432907 02 r 01 profanely 1 001 \ 00425002 a 0103 | with curses; "muttering profanely" -00432997 02 r 01 proficiently 0 001 \ 02226162 a 0105 | in a proficient manner; "he dealt proficiently with the problem" -00433120 02 r 03 profitlessly 0 unprofitably 1 gainlessly 0 002 \ 01871949 a 0201 \ 02016295 a 0101 | without gain or profit -00433247 02 r 01 prohibitively 0 001 \ 01765498 a 0101 | to a prohibitive degree; "it is prohibitively expensive" -00433363 02 r 02 promiscuously 1 indiscriminately 1 002 \ 00773759 a 0201 \ 00774006 a 0101 | in an indiscriminate manner; "she reads promiscuously" -00433514 02 r 01 promisingly 0 001 \ 00176387 a 0103 | in an auspicious manner; "the afternoon had begun so promisingly" -00433637 02 r 02 prosaically 0 unimaginatively 2 001 \ 00922840 a 0103 | in a matter-of-fact manner; "I applied my attention prosaically to my routine" -00433791 02 r 01 prosily 0 001 \ 01346343 a 0103 | in a prosy manner; "somewhat prosily and repetitively expounded" -00433909 02 r 01 proverbially 0 001 \ 01376522 a 0101 | in the manner of something that has become a byword; "this proverbially bitter plant, wormwood" -00434063 02 r 01 providentially 0 001 \ 03006513 a 0101 | in a providential manner; as determined by providence; "his providentially destined role" -00434213 02 r 01 providentially 1 001 \ 01048976 a 0102 | in a fortunately providential manner; "providentially the weather remained good" -00434354 02 r 02 provocatively 0 provokingly 0 002 \ 01896925 a 0203 \ 01896478 a 0101 | in a provocative manner; "`Try it,' he said provocatively" -00434504 02 r 02 prudishly 0 puritanically 0 002 \ 01880163 a 0205 \ 01880163 a 0104 | in a prudish manner; "she acts prudishly, but I wonder whether she is really all that chaste" -00434687 02 r 01 pruriently 0 001 \ 02133779 a 0103 | in a prurient manner -00434764 02 r 01 pryingly 0 001 \ 00665156 a 0103 | in a curious and prying manner; "`Do you have a boyfriend,' she asked her prospective tenant pryingly" -00434921 02 r 01 psychologically 1 001 \ 01781076 a 0101 | with regard to psychology; "war that caught them in its toils either psychologically or physically"; "the event was very damaging to the child psychologically" -00435142 02 r 01 psychologically 0 001 \ 02905794 a 0101 | in terms of psychology; "classify poetry psychologically" -00435261 02 r 01 pugnaciously 0 001 \ 00084353 a 0101 | in a pugnacious manner -00435342 02 r 01 punctiliously 0 001 \ 01838529 a 0102 | in a punctilious manner; "he launched into a long history of the birth of communism, giving credit punctiliously to the work of Marx and Engels" -00435546 02 r 01 pungently 0 001 \ 02398608 a 0101 | with a pungent taste or smell; "the soup was pungently flavored" -00435666 02 r 01 pungently 1 001 \ 02079313 a 0104 | with pungency; in a pungent manner; "he wrote pungently about his contemporaries" -00435803 02 r 01 punily 0 001 \ 02326342 a 0101 | in a puny manner -00435872 02 r 01 punishingly 0 001 \ 03152759 a 0101 | in a punishing manner -00435951 02 r 03 punitively 0 punitorily 0 penally 0 003 \ 01902866 a 0301 \ 01902468 a 0202 \ 01902468 a 0101 | in a punishing manner -00436088 02 r 01 purposefully 0 001 \ 01909890 a 0101 | in a purposeful manner; "he caught the motorcycles in the full glare of his headlights, braked and slipped purposefully out of the car" -00436282 02 r 01 purposelessly 0 001 \ 01910488 a 0101 | without a clear purpose; "let's not purposelessly dispense the aid" -00436409 02 r 01 quaintly 0 001 \ 00973192 a 0102 | in a quaint old-fashioned manner; "the room was quaintly furnished" -00436531 02 r 01 quaintly 1 001 \ 00969556 a 0101 | in a strange but not unpleasant manner; "the old lady expressed herself somewhat quaintly" -00436676 02 r 01 qualitatively 0 001 \ 02976870 a 0101 | in a qualitative manner; "this discoloration qualitatively suggests that the substance is low in inorganic iron" -00436848 02 r 02 quarterly 0 every_quarter 0 001 \ 02998046 a 0101 | in three month intervals; "interest is compounded quarterly" -00436980 02 r 01 quarterly 1 000 | in diagonally opposed quarters of an escutcheon; "two coats of arms borne quarterly" -00437102 02 r 01 queasily 0 001 \ 02545689 a 0103 | in a queasy manner; "`Do I have to remove the liver,' the medical student asked queasily" -00437246 02 r 02 queerly 0 fishily 0 001 \ 01917594 a 0201 | in a questionably unusual manner; "this money had been queerly come by" -00437381 02 r 04 queerly 1 strangely 1 oddly 1 funnily 1 004 \ 00968010 a 0402 \ 00968010 a 0303 \ 00967129 a 0201 \ 00968010 a 0105 | in a strange manner; "a queerly inscribed sheet of paper" -00437576 02 r 02 unquestionably 0 unimpeachably 0 002 \ 01918873 a 0201 \ 01918184 a 0101 | without question; "Fred Winter is unquestionably the jockey to follow"; "they hired unimpeachably first-rate faculty members" -00437796 02 r 02 questionably 0 dubiously 1 002 \ 01916979 a 0202 \ 01916229 a 0101 | in a questionable and dubious manner; "these were estates his father questionably acquired" -00437976 02 r 02 questioningly 1 quizzically 0 002 \ 01766784 a 0202 \ 01766784 a 0101 | in a quizzical and questioning manner; "they looked quizzically at the doctor" -00438146 02 r 02 restfully 0 quietly 5 001 \ 01922227 a 0101 | in a restful manner; "the streets are restfully sunny and still for the town is at mass" -00438300 02 r 01 quixotically 0 001 \ 01837182 a 0101 | in a quixotic manner; "sent to jail for two years, he has quixotically refused to clear himself by betraying his colleagues" -00438483 02 r 01 racily 0 001 \ 02132224 a 0106 | in a racy manner; "racily vernacular language" -00438582 02 r 01 radially 0 001 \ 02373055 a 0101 | in a radial manner; "an imaginative dispersal of the pews radially from the central focus of the pulpit" -00438741 02 r 01 radiantly 0 001 \ 00280463 a 0104 | in a radiant manner; "the bride smiled radiantly" -00438846 02 r 02 raggedly 0 jaggedly 0 002 \ 00912288 a 0201 \ 00913131 a 0101 | with a ragged and uneven appearance; "a long beard, raggedly cut" -00438995 02 r 02 raggedly 1 stragglingly 0 000 | in a ragged irregular manner; "a stone wall trails raggedly through the woods" -00439125 02 r 02 raggedly 2 unevenly 2 000 | in a ragged uneven manner; "I took the cigarette he offered, drawing at it raggedly" -00439257 02 r 02 rampantly 0 wild 2 001 \ 00016005 a 0101 | in an uncontrolled and rampant manner; "weeds grew rampantly around here" -00439393 02 r 01 rapaciously 0 001 \ 00010726 a 0103 | in a rapacious manner -00439472 02 r 02 raving 0 ravingly 0 000 | in a raving manner; "raving mad" -00439550 02 r 01 ravishingly 0 001 \ 00220502 a 0101 | in a ravishing manner or to a ravishing degree; "she was ravishingly beautiful" -00439687 02 r 01 reassuringly 0 001 \ 00196934 a 0101 | in a reassuring manner; "the prime minister pointed reassuringly to the silence of the British press" -00439847 02 r 01 rebukingly 0 000 | in the manner of someone delivering a rebuke -00439930 02 r 01 receptively 0 001 \ 01985247 a 0101 | in a receptive manner -00440009 02 r 01 reflectively 0 001 \ 02419434 a 0108 | in a reflective manner; "he watched her reflectively" -00440121 02 r 01 refreshingly 0 001 \ 01642245 a 0102 | in a pleasantly novel manner; "she was refreshingly free from shyness" -00440250 02 r 02 refreshingly 1 refreshfully 0 001 \ 01357027 a 0104 | in a manner that relieves fatigue and restores vitality; "the air was refreshingly cool" -00440412 02 r 01 regally 0 001 \ 01591394 a 0104 | in a regal manner; "a regally appropriate representative" -00440523 02 r 01 relevantly 0 002 ! 00382749 r 0101 \ 01975138 a 0101 | with relevance -00440612 02 r 01 reminiscently 0 001 \ 01977669 a 0104 | in a reminiscent manner; "she spoke reminiscently of her days in college" -00440745 02 r 01 remotely 0 001 \ 01413084 a 0102 | to a remote degree; "it is remotely possible" -00440845 02 r 01 remotely 1 000 | in a remote manner; "when the measured speech of the chorus passes over into song the tones are, remotely but unmistakably, those taught by the orthodox liturgy" -00441043 02 r 02 repellently 0 repellingly 0 002 \ 01625893 a 0209 \ 01625893 a 0107 | in a repellent manner; "repellently fat" -00441173 02 r 01 repetitively 0 001 \ 01964367 a 0101 | in a repetitive manner; "this type of border display is used repetitively in advertising" -00441321 02 r 01 reputedly 0 000 | by repute; according to general belief; "fish with reputedly poisonous flesh" -00441436 02 r 01 resentfully 0 001 \ 00116529 a 0101 | with resentment; in a resentful manner; "the best doctors would stay resentfully out of the national service, refusing to become the minions of a Minister" -00441649 02 r 01 reservedly 0 001 \ 01987341 a 0101 | with reserve; in a reserved manner -00441740 02 r 01 resignedly 0 000 | with resignation and acceptance; in a resigned manner; "resignedly, I telegraphed back that it was all right with me if he insisted" -00441911 02 r 01 ripely 0 001 \ 01493173 a 0101 | with mature or developed appearance -00441999 02 r 01 resoundingly 0 001 \ 02010536 a 0103 | in a resounding manner; "he then so resoundingly denounced his former friend" -00442135 02 r 01 resourcefully 0 001 \ 00307182 a 0101 | in a resourceful manner -00442218 02 r 01 respectably 0 001 \ 01983162 a 0104 | in a decent and morally reputable manner; "the film ends with the middle-aged romancers respectably married" -00442384 02 r 02 respectably 1 creditably 0 002 \ 02585919 a 0201 \ 01993140 a 0101 | to a tolerably worthy extent; "he did respectably well for his age" -00442540 02 r 01 restrictively 0 001 \ 02003725 a 0101 | in a restrictive manner; "this relative clause is used restrictively" -00442669 02 r 01 retail 0 001 ! 00442774 r 0101 | at a retail price; "I'll sell it to you retail only" -00442774 02 r 01 wholesale 0 001 ! 00442669 r 0101 | at a wholesale price; "I can sell it to you wholesale" -00442884 02 r 01 retentively 0 001 \ 02005756 a 0101 | in a retentive manner -00442963 02 r 01 reticently 0 001 \ 00157268 a 0101 | with reticence; in a reticent manner; "she answered the questions reticently" -00443097 02 r 01 retrospectively 0 001 \ 01884539 a 0101 | in a manner contemplative of past events; "retrospectively, he seems like a great artist" -00443248 02 r 03 revengefully 0 vengefully 0 vindictively 0 003 \ 01041634 a 0302 \ 01041634 a 0203 \ 01041634 a 0101 | in a vindictive, revengeful manner; "he plotted vindictively against his former superiors" -00443461 02 r 02 reverentially 0 reverently 0 003 ! 00383271 r 0201 \ 02011810 a 0201 \ 02012333 a 0102 | with reverence; in a reverent manner; "he gazed reverently at the handiwork" -00443646 02 r 01 reversely 0 000 | in an opposite way; so as to be reversed -00443724 02 r 01 rhetorically 0 001 \ 02016535 a 0101 | in a rhetorical manner; "`What can be done?' he asked rhetorically" -00443850 02 r 01 right-down 0 000 | positively; "a regular right-down bad 'un"--Charles Dickens -00443948 02 r 01 righteously 0 002 ! 00444070 r 0101 \ 02036578 a 0101 | in a righteous manner; "righteously indignant" -00444070 02 r 01 unrighteously 0 002 ! 00443948 r 0101 \ 02037272 a 0101 | in an unrighteous manner; "he acted unrighteously" -00444198 02 r 01 riskily 0 001 \ 02059811 a 0102 | in a dangerously risky manner; "he lost the game by playing too riskily" -00444324 02 r 01 roaring 0 000 | extremely; "roaring drunk" -00444386 02 r 01 robustly 0 001 \ 02037708 a 0101 | in a robust manner; "he was robustly built" -00444484 02 r 01 roguishly 0 001 \ 02122379 a 0103 | in a playfully roguish manner; "he winked at her roguishly" -00444599 02 r 01 roguishly 1 001 \ 01224964 a 0102 | like a dishonest rogue; "he roguishly intended to keep the money" -00444720 02 r 01 romantically 1 001 \ 01465214 a 0103 | in a romantic manner; "they were romantically linked" -00444832 02 r 02 roomily 0 spaciously 0 002 \ 00476249 a 0202 \ 00476249 a 0101 | with ample room; "the furniture was spaciously spread out" -00444975 02 r 01 rotationally 0 001 \ 03112379 a 0101 | in a rotational manner; "the required influence lines are found by subjecting the model to small displacements horizontally, vertically and rotationally" -00445187 02 r 02 sonorously 0 rotundly 0 002 \ 01457486 a 0202 \ 01457692 a 0102 | in a sonorous manner; "the congregation consisted chiefly of a few young folk, who snored sonorously" -00445374 02 r 01 round-arm 0 000 | with an outward or horizontal swing of the arm; "he hit the ball round-arm" -00445487 02 r 02 rowdily 0 raucously 1 002 \ 01667110 a 0201 \ 01667110 a 0102 | in a rowdy manner; "the crowd got drunk and started to behave rowdily" -00445641 02 r 01 ruinously 0 001 \ 01161635 a 0102 | in a ruinous manner or to a ruinous degree; "ruinously high wages" -00445763 02 r 01 ruthlessly 0 001 \ 01508086 a 0103 | in a ruthless manner; "the government has been urged to take immediate action to deal ruthlessly with the strikers" -00445935 02 r 02 sarcastically 0 sardonically 0 002 \ 02079830 a 0201 \ 02079029 a 0101 | in a sarcastic manner; "`Ah, now we're getting at the truth,' he interposed sarcastically" -00446118 02 r 02 sanctimoniously 0 self-righteously 0 002 \ 01782100 a 0207 \ 01782100 a 0106 | in a sanctimonious manner; "she was sanctimoniously criticizing everybody" -00446291 02 r 01 scandalously 0 001 \ 01549964 a 0102 | in a scandalous manner; "you behaved scandalously when you walked out of that meeting!" -00446437 02 r 02 scathingly 0 unsparingly 0 002 \ 00438063 a 0201 \ 00648614 a 0101 | in a scathing and unsparing manner; "she criticized him scathingly" -00446593 02 r 02 sceptically 0 skeptically 0 001 \ 02463847 a 0104 | with scepticism; in a sceptical manner; "he looked at her sceptically" -00446735 02 r 01 schematically 0 001 \ 01980796 a 0103 | in a schematic manner; "schematically outlined" -00446842 02 r 01 scorching 0 001 \ 01249843 a 0101 | capable of causing burns; "it was scorching hot" -00446946 02 r 01 screamingly 0 001 \ 01266841 a 0102 | to an extreme degree; "screamingly funny" -00447045 02 r 01 scurrilously 0 001 \ 01628531 a 0103 | in a scurrilously manner; "one paper scurrilously described how Edward was neglecting a bereaved mother to dance attendance on Wally" -00447237 02 r 01 searchingly 0 001 \ 01336371 a 0101 | in a searching manner; "`Are you really happy with him,' asked her mother, gazing at Vera searchingly" -00447397 02 r 01 seasonally 0 001 \ 01494273 a 0101 | depending on the season; "prices are seasonally adjusted" -00447511 02 r 01 coastward 0 000 | in the direction of the coast -00447578 02 r 03 seaward 0 seawards 0 asea 0 000 | in the direction of the sea; "the sailor looked seaward" -00447688 02 r 01 second-best 0 000 | in second place; "he came off second-best" -00447770 02 r 01 second_class 0 000 | by second class conveyance; "we traveled second class" -00447865 02 r 01 secretively 0 001 \ 00501004 a 0104 | in a secretive manner; with a preference for secrecy; "the teacher raised a hand to him, slightly and secretively, because he was her favorite" -00448066 02 r 02 sedately 0 calmly 1 000 | in a sedate manner -00448130 02 r 02 seductively 0 temptingly 0 002 \ 02097480 a 0204 \ 02097268 a 0101 | in a tempting seductive manner; "she smiled at him seductively" -00448282 02 r 01 selectively 0 001 \ 00775693 a 0101 | by selection; in a selective manner; "we choose our students very selectively" -00448418 02 r 01 self-consciously 0 002 ! 00448593 r 0101 \ 00480965 a 0101 | in an uncomfortably self-conscious manner; "the little girl self-consciously recited the poem" -00448593 02 r 01 unselfconsciously 0 002 ! 00448418 r 0101 \ 00074867 a 0101 | in a comfortable unselfconscious manner; "they were naked, unshy, and unselfconsciously beautiful" -00448773 02 r 01 self-evidently 0 001 \ 01618895 a 0102 | in a self-evident manner -00448858 02 r 01 sensationally 0 001 \ 01282921 a 0102 | in a sensational manner; "in the summer of 1958 the pianist had a sensationally triumphant return" -00449016 02 r 01 senselessly 1 001 \ 01945139 a 0103 | in a meaningless and purposeless manner; "these innocent bystanders were senselessly killed" -00449166 02 r 01 sensuously 0 001 \ 00070427 a 0101 | with aesthetic gratification or delight; "sensuously delighting in the wine and food" -00449308 02 r 01 voluptuously 0 001 \ 01298239 a 0106 | in an indulgently voluptuous manner; "he sniffed the perfume voluptuously" -00449441 02 r 02 sensually 0 sultrily 0 002 \ 01257145 a 0202 \ 01257145 a 0101 | in a sultry and sensual manner; "the belly dancer mover sensually among the tables" -00449609 02 r 01 sentimentally 0 002 ! 00449765 r 0101 \ 00854413 a 010a | in a sentimental manner; "`I miss the good old days,' she added sentimentally" -00449765 02 r 01 unsentimentally 0 002 ! 00449609 r 0101 \ 02448749 a 0102 | in an unsentimental manner; "unsentimentally, she threw out her dead son's toys" -00449925 02 r 01 separably 0 002 ! 00450089 r 0101 \ 00785002 a 0102 | with possibility of separation or individuation; "the two ideas were considered separably" -00450089 02 r 01 inseparably 0 002 ! 00449925 r 0101 \ 00786173 a 0101 | without possibility of separation; "these two are inseparably linked" -00450234 02 r 01 serenely 0 001 \ 00529657 a 0103 | in a peacefully serene manner; "I had the feeling that he was waiting, too--serenely patient" -00450382 02 r 01 sevenfold 0 000 | seven times; "the population of this village increased sevenfold in the past 100 years" -00450507 02 r 01 seventhly 0 001 \ 02202979 a 0101 | in the seventh place; "seventhly, you have no right to cancel the lease in mid-year" -00450647 02 r 02 independently 1 severally 1 000 | apart from others; "the clothes were hung severally" -00450753 02 r 01 shabbily 0 001 \ 01228159 a 0101 | in a mean and ungenerous manner; "the two were haggling shabbily in the drawing-room" -00450893 02 r 01 shabbily 1 001 \ 02583043 a 0103 | so as to appear worn and threadbare or dilapidated; "a shabbily dressed man" -00451024 02 r 01 shaggily 0 001 \ 02428610 a 0102 | in a shaggy manner; "shaggily unkempt mane" -00451122 02 r 01 shakily 0 001 \ 02304565 a 0101 | in a manner characterized by trembling or shaking; "`I--I'm going to make you a cup of tea', she explained shakily" -00451291 02 r 01 shakily 1 001 \ 02292797 a 0102 | in an insecurely shaky manner; "this theory is rather shakily supported by some obscure data" -00451438 02 r 01 shallowly 0 001 \ 00691696 a 0101 | in a shallow manner -00451513 02 r 01 shambolically 0 001 \ 03135937 a 0101 | in a shambolic manner -00451594 02 r 01 shamefacedly 0 001 \ 00154837 a 0101 | in a shamefaced manner; "quarrels and dissensions ensued among the cast, most of whom hurriedly and shamefacedly handed over their parts to understudies" -00451806 02 r 01 shapelessly 0 001 \ 02151837 a 0103 | in a shapeless manner; "the dress hung shapelessly on her thin body" -00451932 02 r 01 sheepishly 0 001 \ 00154837 a 0102 | in a sheepish manner; "sheepishly he handed her back the money" -00452052 02 r 01 sheer 0 000 | directly; "he fell sheer into the water" -00452126 02 r 02 sheer 1 perpendicularly 1 000 | straight up or down without a break -00452213 02 r 01 shiftily 0 001 \ 02466382 a 0102 | in a shifty manner; "he looked at his new customer shiftily" -00452328 02 r 01 shockingly 1 001 \ 01549964 a 0104 | so as to shock the feelings -00452412 02 r 01 shockingly 0 000 | extremely; "teachers were shockingly underpaid" -00452498 02 r 01 shoddily 0 001 \ 02346351 a 0102 | in a shoddy manner; "a shoddily built house"; "he treated her shoddily" -00452624 02 r 02 short 2 unawares 2 000 | at a disadvantage; "I was caught short" -00452708 02 r 01 short 3 000 | so as to interrupt; "She took him up short before he could continue" -00452810 02 r 01 short 5 000 | at some point or distance before a goal is reached; "he fell short of our expectations" -00452931 02 r 01 short 6 000 | clean across; "the car's axle snapped short" -00453009 02 r 01 short 7 001 ;c 06150633 n 0000 | without possessing something at the time it is contractually sold; "he made his fortune by selling short just before the crash" -00453189 02 r 01 shudderingly 0 000 | with a shudder; "shudderingly, she acknowledged to herself that she dared not face what lay before her" -00453333 02 r 01 sidesaddle 0 000 | on or as if on a sidesaddle; "she rode sidesaddle" -00453422 02 r 01 broadside 0 000 | with a side facing an object; "the train hit the truck broadside"; "the wave caught the canoe broadside and capsized it" -00453580 02 r 03 sidelong 0 sideways 0 obliquely 2 000 | to, toward or at one side; "darting eyes looking sidelong out of a wizened face" -00453720 02 r 01 sidelong 1 000 | with the side toward someone or something; "seated sidelong to the window"- Nathaniel Hawthorne -00453852 02 r 01 sidelong 2 000 | on the side; "the plow lay sidelong on the ground" -00453939 02 r 02 sideward 0 sidewards 0 000 | toward one side; "turn the figure sideward" -00454031 02 r 03 sideways 3 sideway 2 sidewise 3 000 | toward one side; "the car slipped sideways into the ditch"; "leaning sideways"; "a figure moving sidewise in the shadows" -00454210 02 r 03 sideway 0 sideways 1 sidewise 1 000 | from the side; obliquely; "a picture lit sideways"; "scenes viewed sidewise" -00454344 02 r 03 sideways 2 sideway 1 sidewise 2 000 | with one side forward or to the front; "turned sideways to show the profile"; "crabs seeming to walk sidewise" -00454512 02 r 03 signally 0 unmistakably 1 remarkably 1 001 \ 01286239 a 0101 | in a signal manner; "signally inappropriate methods" -00454647 02 r 01 signally 1 000 | as a signal; "a term that is used signally rather than symbolically" -00454752 02 r 01 silkily 0 000 | in a silky manner; "the young wheat shone silkily"; "`Darling,' she said silkily" -00454869 02 r 02 pusillanimously 0 simperingly 0 001 \ 00266420 a 0101 | with a lack of courage and determination; "simperingly, the accused begged for mercy" -00455030 02 r 02 single-handed 0 single-handedly 0 000 | without assistance; "I built this house single-handedly" -00455146 02 r 01 single-mindedly 0 001 \ 01991267 a 0101 | in a single-minded manner -00455233 02 r 01 singularly 0 001 \ 01678417 a 0102 | in a singular manner or to a singular degree; "Lord T. was considered singularly licentious even for the courts of Russia and Portugal; he acquired three wives and fourteen children during his Portuguese embassy alone" -00455508 02 r 02 sixfold 0 six_times 0 000 | by a factor of six; "the population of this town increased sixfold when gold was found in the surrounding hills" -00455668 02 r 01 sixthly 0 001 \ 02202854 a 0101 | in the sixth place; "sixthly, we cannot afford a vacation" -00455780 02 r 01 sketchily 0 001 \ 00525105 a 0101 | in a sketchy incomplete manner; "he explained sketchily"; "the dishes were only sketchily washed" -00455933 02 r 02 skillfully 0 skilfully 0 001 \ 02226162 a 0106 | with skill; "fragments of a nearly complete jug, skillfully restored at the institute of archaeology" -00456103 02 r 01 skimpily 0 001 \ 02337188 a 0102 | in a skimpy manner; "a skimpily dressed woman" -00456204 02 r 01 skittishly 0 001 \ 00919155 a 0101 | in a skittish manner; "the horse pranced around skittishly" -00456320 02 r 01 sky-high 0 000 | to a very high level; "prices have gone sky-high"; "garbage was piled sky-high"; "the men were flung sky-high by the explosion" -00456484 02 r 02 sky-high 1 enthusiastically 1 000 | in a lavish or enthusiastic manner; "he extolled her virtues sky-high" -00456610 02 r 01 sky-high 2 000 | (with verb `to blow') destroyed completely; blown apart or to pieces; "they blew the bridge sky-high"; "the committee blew the thesis sky-high" -00456790 02 r 02 slanderously 0 calumniously 0 002 \ 01161233 a 0202 \ 01161233 a 0109 | in a false and slanderous and defamatory manner; with slander or calumny -00456954 02 r 01 slangily 0 001 \ 01046784 a 0101 | with slang; in a slangy manner; "he expresses himself slangily" -00457072 02 r 02 slantingly 0 slopingly 0 002 \ 01234747 a 0207 \ 01234747 a 0105 | with a slant -00457171 02 r 02 slantwise 0 slantways 0 000 | at a slant; moving or directed in a slantwise position or direction -00457288 02 r 02 slam-bang 0 slap-bang 0 000 | in a violent or sudden or noisy manner; "the pans fell slam-bang and woke the whole house" -00457428 02 r 01 slam-bang 1 000 | with heedless speed; "yachts ran slap-bang into the convoy at 15 knots an hour" -00457545 02 r 02 slapdash 0 slam-bang 2 000 | in a careless or reckless manner; "the shelves were put up slapdash" -00457662 02 r 01 slap-bang 1 000 | directly or immediately; "it hit slap-bang in the middle" -00457757 02 r 01 slavishly 0 001 \ 00790691 a 0101 | in a slavish manner; "his followers slavishly believed in his new diet" -00457884 02 r 01 sleekly 0 001 \ 00282675 a 0102 | in a sleek glossy manner; "the wet road was shining sleekly" -00457998 02 r 01 sleepily 0 001 \ 00189017 a 0101 | in a sleepy manner; "the two children who were snuggled sleepily in the back of the car" -00458141 02 r 01 sleeplessly 0 001 \ 00187176 a 0102 | without sleep; in a sleepless manner; "he was lying in bed sleeplessly" -00458270 02 r 03 slenderly 0 slimly 0 slightly 2 003 \ 00990855 a 0302 \ 00990855 a 0203 \ 00990855 a 0101 | in a slim or slender manner; "a slenderly built woman"; "slightly built" -00458454 02 r 01 smoothly 1 001 \ 00758800 a 0102 | in a smooth and diplomatic manner; "`And now,' he said smoothly, `we will continue the conversation'" -00458610 02 r 01 sloppily 0 001 \ 02426420 a 0101 | in a sloppy manner; "this work was done rather sloppily" -00458721 02 r 01 slouchingly 0 000 | with a slouching gait or posture; "he stood slouchingly at the garden gate" -00458836 02 r 01 slouchily 0 001 \ 02426550 a 0101 | in a slouchy manner; "slouchily dressed" -00458932 02 r 02 smash 0 smashingly 0 000 | with a loud crash; "the car went smash through the fence" -00459036 02 r 01 smilingly 0 001 ! 00459193 r 0101 | with smiles; in a smiling manner; "the girl reminded her smilingly of their childhood spent together" -00459193 02 r 01 unsmilingly 0 002 \ 01368726 a 0101 ! 00459036 r 0101 | without smile; in an unsmiling manner; "unsmilingly, he greeted his in-laws" -00459345 02 r 01 smugly 0 001 \ 00589448 a 0101 | in a smug manner; "the bureaucrats explained smugly that the facts provided by their own experts show no cause for concern" -00459521 02 r 02 smuttily 0 vulgarly 0 002 \ 00683531 a 0204 \ 00425313 a 0105 | in a smutty manner -00459623 02 r 01 snappishly 0 001 \ 01138770 a 0101 | in an ill-natured and snappish manner; "`Don't talk to me now,' she said snappishly" -00459764 02 r 01 sneakingly 0 001 \ 02090228 a 0101 | in a sneaky manner; "I always felt sneakingly that I wanted to be a concert pianist" -00459905 02 r 03 sneeringly 0 superciliously 0 snidely 0 003 \ 00907400 a 0303 \ 00907400 a 0201 \ 00907400 a 0102 | with a sneer; in an uncomplimentary sneering manner; "`I don't believe in these customs,' he said sneeringly" -00460134 02 r 03 snobbishly 0 snootily 0 uppishly 0 003 \ 01890382 a 0308 \ 01890382 a 0203 \ 01858740 a 0104 | in a snobbish manner; "they snobbishly excluded their less wealthy friends from the party" -00460339 02 r 01 sobbingly 0 000 | with sobs; "sobbingly, the teenager admitted killing the baby" -00460439 02 r 01 sociably 0 002 ! 00460604 r 0101 \ 02257141 a 0101 | in a sociable manner; "sociably, the new neighbors invited everyone on the block for coffee" -00460604 02 r 01 unsociably 0 002 ! 00460439 r 0101 \ 02258600 a 0101 | in an unsociable manner; "the new neighbors behave quite unsociably" -00460747 02 r 01 sociologically 0 001 \ 02906206 a 0101 | with regard to sociology; "sociologically speaking, this is an interesting phenomenon" -00460894 02 r 01 solicitously 0 001 \ 00544860 a 0101 | in a concerned and solicitous manner; "`Don't you feel well?' his mother asked solicitously" -00461045 02 r 01 solitarily 0 001 \ 02250430 a 0103 | in solitude; "a hermit chooses to live solitarily" -00461152 02 r 02 somberly 0 sombrely 0 001 \ 00365261 a 0101 | in a somber manner; "`That's sure bad news,' said Dowd, somberly" -00461283 02 r 01 soothingly 0 001 \ 00197151 a 0102 | in a soothing manner; "the mother talked soothingly to her child" -00461405 02 r 03 soaking 0 sopping 0 dripping 0 000 | extremely wet; "dripping wet"; "soaking wet" -00461506 02 r 02 sordidly 0 squalidly 0 002 \ 00421875 a 0202 \ 00421875 a 0103 | in a sordid or squalid way -00461617 02 r 01 sorely 1 001 \ 01804175 a 0103 | to a great degree; "I missed him sorely"; "we were sorely taxed to keep up with them" -00461755 02 r 01 sorrowfully 1 001 \ 01364008 a 0101 | in a sorrowful manner -00461834 02 r 02 all_together 0 all_at_once 1 000 | all at the same time; "Let's say `Yes!' all at once" -00461941 02 r 01 sottishly 0 001 \ 00798491 a 0104 | in a sottish manner -00462016 02 r 03 southeast 0 south-east 0 sou'-east 0 000 | to, toward, or in the southeast -00462110 02 r 03 southwest 0 south-west 0 sou'west 0 000 | to, toward, or in the southwest -00462203 02 r 02 south-southeast 0 sou'-sou'-east 0 000 | to, toward, or in the south southeast -00462301 02 r 02 south-southwest 0 sou'-sou'-west 0 000 | to, toward, or in the south southwest -00462399 02 r 01 soullessly 0 001 \ 02107991 a 0101 | in a soulless manner; "they were soullessly grubbing for profit" -00462520 02 r 02 noiselessly 0 soundlessly 0 002 \ 01919428 a 0202 \ 01919282 a 0101 | without a sound; "he stood up soundlessly and speechlessly and glided across the hallway and through a door" -00462718 02 r 01 sourly 0 001 \ 01137378 a 0108 | in a sour manner; "he complained sourly that the new rules only benefitted the managers" -00462859 02 r 01 southerly 0 001 \ 01602966 a 0101 | from the south; "a wind blew southerly" -00462954 02 r 03 southerly 1 southward 0 southwards 0 001 \ 01603179 a 0101 | toward the south; "the ship turned southerly" -00463080 02 r 01 sparely 0 001 \ 00106821 a 0103 | in a spare manner; "William held me longest with his recent bronzes sparely arranged at Waddington's galleries" -00463245 02 r 01 sparsely 0 001 \ 00542359 a 0101 | in a sparse manner; "sparsely inhabited" -00463340 02 r 01 spasmodically 0 001 \ 00593664 a 0102 | in spurts and fits; "I began to write intermittently and spasmodically" -00463471 02 r 02 spasmodically 1 jerkily 1 002 \ 02303575 a 0203 \ 02303754 a 0102 | with spasms; "the mouth was slightly open, and jerked violently and spasmodically at one corner" -00463655 02 r 01 speciously 0 001 \ 02462210 a 0101 | in a specious manner -00463732 02 r 01 spectrographically 0 001 \ 02800291 a 0101 | by spectrographic means; "the speech spectrum was displayed spectrographically" -00463876 02 r 01 speechlessly 0 001 \ 00152629 a 0101 | without speaking; "he stood up soundlessly and speechlessly and glided across the hallway and through a door" -00464044 02 r 01 spirally 0 001 \ 02317598 a 0103 | with spirals; "spirally fluted handles" -00464138 02 r 01 sportingly 0 002 ! 00464255 r 0101 \ 00956733 a 0102 | so as to be sporting; in a sporting manner -00464255 02 r 01 unsportingly 0 002 ! 00464138 r 0101 \ 00957743 a 0104 | in an unsportsmanlike manner -00464360 02 r 01 unsuspectingly 0 001 \ 00192523 a 0101 | without suspicions; "he was sitting unsuspectingly beyond that wall only a few yards from the burglar" -00464523 02 r 01 spotlessly 0 001 \ 00418364 a 0107 | in a spotless manner; "spotlessly clean" -00464620 02 r 01 trimly 0 001 \ 02423649 a 0102 | in a trim manner; "he was trimly attired" -00464714 02 r 01 spuriously 0 001 \ 02462210 a 0102 | in a false and spurious manner; "the lawyer argued spuriously that his client knew nothing of the burglary" -00464878 02 r 01 squeamishly 0 001 \ 00984333 a 0105 | in a squeamish manner; "`I would rather not touch,' he said squeamishly" -00465008 02 r 02 stagily 0 theatrically 0 002 \ 00796047 a 0201 \ 00796715 a 0101 | in a stagy and theatrical manner; "`I cannot show my face at her house,' he declared theatrically" -00465193 02 r 01 standoffishly 0 001 \ 00134562 a 0102 | in a standoffish manner; "standoffishly, he declined the invitation to the office party" -00465341 02 r 01 stark 0 000 | completely; "stark mad"; "mouth stark open" -00465418 02 r 01 starkly 0 001 \ 00556881 a 0103 | in a blunt manner; "in starkly realistic terms" -00465519 02 r 01 starkly 1 001 \ 01792387 a 0103 | in sharp outline or contrast; "the black walls rose starkly from the snow" -00465647 02 r 01 starkly 2 001 \ 01520091 a 010a | in a stark manner; "He was starkly unable to achieve coherence" -00465764 02 r 01 startlingly 0 001 \ 02359958 a 0101 | in a startling manner; "a startlingly modern voice" -00465873 02 r 01 statutorily 0 001 \ 01401532 a 0101 | according to statute; "placed statutorily under the council's supervision" -00466005 02 r 02 staunchly 0 stanchly 0 001 \ 00583581 a 0102 | in a staunch manner; "he staunchly defended his principles" -00466131 02 r 01 steeply 0 001 \ 01144887 a 0101 | in a steep manner; "the street rose steeply up to the castle" -00466246 02 r 01 stereotypically 0 001 \ 00607977 a 0103 | in a stereotypical manner -00466333 02 r 01 stertorously 0 001 \ 01921752 a 0101 | in a noisy and stertorous manner; "he was breathing stertorously" -00466457 02 r 02 stickily 0 viscidly 0 002 \ 00053691 a 0207 \ 00053691 a 0106 | in a sticky viscid manner; "he felt the blood move stickily from his split scalp and trickle down his forehead" -00466652 02 r 01 stiff 1 000 | extremely; "bored stiff"; "frightened stiff" -00466730 02 r 01 stiltedly 0 001 \ 00073465 a 0104 | in a stilted manner; "she answered him stiltedly" -00466835 02 r 03 stingily 0 cheaply 2 chintzily 0 003 \ 01113114 a 0303 \ 01113114 a 0201 \ 01112573 a 0101 | in a stingy manner; "their rich uncle treated them rather chintzily" -00467016 02 r 01 stirringly 0 001 \ 01561429 a 0101 | in a stirring manner; "he talked stirringly about his days during the war" -00467147 02 r 01 stochastically 0 001 \ 01925000 a 0101 | by stochastic means; "we estimated the answer stochastically" -00467269 02 r 02 still 2 stock-still 0 001 \ 01564315 a 0104 | without moving or making a sound; "he sat still as a statue"; "time stood still"; "they waited stock-still outside the door"; "he couldn't hold still any longer" -00467496 02 r 01 straightway 0 000 | in a direct course; "plunged straightway to the rocks below" -00467596 02 r 01 straightway 1 000 | at once; "straightway the clouds began to scatter" -00467686 02 r 02 thereabout 0 thereabouts 0 000 | near that place; "he stayed in London or thereabouts for several weeks" -00467810 02 r 02 thereabout 1 thereabouts 1 000 | near that time or date; "come at noon or thereabouts" -00467916 02 r 01 thereinafter 0 000 | in the following part of a given matter, as in a document or speech -00468024 02 r 01 thereof 0 000 | of or concerning this or that; "a problem and the solution thereof" -00468127 02 r 03 thereon 0 on_it 0 on_that 0 000 | on that; "text and commentary thereon" -00468219 02 r 03 thereto 0 to_it 0 to_that 0 000 | to that; "with all the appurtenances fitting thereto" -00468326 02 r 03 thereunder 0 under_that 0 under_it 0 000 | under that; "the headings and the items listed thereunder" -00468447 02 r 01 therewith 0 000 | with that or this or it; "I have learned that whatever state I am, therewith to be content"- Phil.4:11 -00468587 02 r 01 therewithal 0 000 | together with all that; besides; "thy slanders I forgive; and therewithal remit thy other forfeits"- Shakespeare -00468739 02 r 01 stockily 0 001 \ 02387413 a 0103 | so as to be stocky; "he was stockily built" -00468837 02 r 01 stoically 0 001 \ 00858558 a 0101 | without emotion; in a stoic manner; "he stoically accepted all suffering" -00468966 02 r 01 stonily 0 001 \ 01158180 a 0105 | in a stony manner; "stonily indifferent to time" -00469068 02 r 01 strategically 0 001 \ 02950711 a 0101 | with regard to strategy; "strategically important decisions" -00469188 02 r 01 stridently 0 001 \ 00300359 a 0102 | in a strident manner; "the cheap clock ticked stridently" -00469302 02 r 02 strictly 2 stringently 0 002 \ 00711059 a 0202 \ 00915556 a 0102 | in a stringent manner; "the laws are stringently enforced"; "stringently controlled" -00469473 02 r 02 stuffily 0 stodgily 0 002 \ 00606347 a 0201 \ 00606347 a 0102 | in a stuffy manner; "`Come in please,' he said stuffily" -00469613 02 r 01 stupendously 0 001 \ 01384730 a 0103 | to a stupendous degree; "stupendously ignorant people" -00469726 02 r 01 sturdily 0 001 \ 02038994 a 0104 | in a sturdy manner; "feet sturdily apart" -00469822 02 r 01 stylishly 0 001 \ 00975171 a 0101 | in a stylish manner; "she was dressed very stylishly" -00469931 02 r 01 stylistically 0 001 \ 02018296 a 0101 | in a rhetorically stylistic manner; "stylistically complex" -00470050 02 r 01 suavely 0 001 \ 01948231 a 0104 | with suavity; in a suave manner; "he is suavely charming and all the ladies love him" -00470189 02 r 01 sublimely 0 000 | completely; in a lofty and exalted manner; "awaking in me, sublimely unconscious, interest and energy for tackling these tasks" -00470354 02 r 01 subtly 0 001 \ 01717901 a 0102 | in a subtle manner; "late nineteenth-century French opera at its most beautiful, subtly romantic with a twilight melancholy" -00470531 02 r 01 romantically 2 002 ! 00470692 r 0101 \ 01837182 a 0102 | in a romantic manner; "she fantasized romantically about eloping with her boyfriend" -00470692 02 r 01 unromantically 0 001 ! 00470531 r 0101 | without romance; in an unromantic manner; "we got married, rather unromantically, in a dingy office in the town hall" -00470870 02 r 01 sulkily 0 001 \ 01137994 a 0102 | in a sulky manner; "`What else could I do?' said Graham sulkily" -00470988 02 r 01 summarily 0 001 \ 01633880 a 0102 | without delay; in a summary manner; "the suspected spy was summarily executed" -00471122 02 r 01 superfluously 0 001 \ 01581305 a 0106 | in a superfluous manner; "superfluously, he added his silly comments to the discussion" -00471269 02 r 01 superlatively 0 001 \ 02343517 a 0103 | to a superlative degree -00471352 02 r 01 superstitiously 0 001 \ 01927061 a 0101 | in a superstitious manner; "superstitiously he refused to travel on Friday the 13th" -00471498 02 r 01 supinely 0 001 \ 00040058 a 0102 | in an indifferently supine manner; "he called the tune to me and I supinely took it up" -00471640 02 r 01 supinely 1 001 \ 01239781 a 0101 | with the face upward; "she was stretched supinely on her back" -00471757 02 r 02 surreptitiously 0 sneakily 0 002 \ 02088974 a 0203 \ 02088974 a 0105 | in a surreptitious manner; "he was watching her surreptitiously as she waited in the hotel lobby" -00471945 02 r 01 surpassingly 0 001 \ 01676026 a 0105 | to a surpassing degree; "she was a surpassingly beautiful woman" -00472068 02 r 01 surprisedly 0 001 \ 02357479 a 0101 | in the manner of one who is surprised -00472163 02 r 01 sweepingly 0 001 \ 00774182 a 0101 | in a sweeping manner; "he sweepingly condemned the entire population of the country for the war crimes" -00472323 02 r 02 sweetly 0 sweet 0 003 ;c 07092592 n 0000 ;u 07075172 n 0000 \ 01459949 a 0105 | in an affectionate or loving manner (`sweet' is sometimes a poetic or informal variant of `sweetly'); "Susan Hayward plays the wife sharply and sweetly"; "how sweet the moonlight sleeps upon this bank"- Shakespeare; "talking sweet to each other" -00472668 02 r 01 synchronously 0 001 \ 02377651 a 0101 | in synchrony; in a synchronous manner; "in four-chambered hearts, the two auricles move synchronously" -00472830 02 r 01 synthetically 0 001 \ 01573568 a 0103 | by synthesis; in a synthetic manner; "some of these drugs have been derived from opium and others have been produced synthetically" -00473021 02 r 01 tacitly 0 001 \ 00942163 a 0102 | in a tacit manner; by unexpressed agreement; "they are tacitly expected to work 10 hours a day" -00473170 02 r 01 tactfully 0 002 ! 00473338 r 0101 \ 02384383 a 0101 | showing tact or tactfulness; in a tactful manner; "he stepped tactfully in to prevent trouble" -00473338 02 r 01 tactlessly 0 002 ! 00473170 r 0101 \ 02384843 a 0101 | without tact; in a tactless manner; "at the moment of the murder, he is standing in front of television cameras and talking tactlessly" -00473548 02 r 01 tactically 0 001 \ 02951000 a 0101 | with regard to tactics; "the tactically useful province is still firmly in the rebels' hands" -00473698 02 r 01 tamely 0 001 \ 02389946 a 0101 | in a tame manner; "the labour movement allowed itself to be run out of power tamely" -00473835 02 r 01 tangibly 0 001 \ 02392134 a 0101 | in a tangible manner; "virtue is tangibly rewarded" -00473941 02 r 01 tartly 0 001 \ 01804728 a 0103 | in a tart manner; "`Never mind your immortal soul,' she said tartly" -00474062 02 r 02 tastefully 0 tastily 1 002 ! 00474217 r 0101 \ 02392878 a 0101 | with taste; in a tasteful manner; "the house was tastefully decorated" -00474217 02 r 01 tastelessly 0 002 ! 00474062 r 0101 \ 02393401 a 0101 | without taste or in poor taste; in a tasteless manner; "the house was tastelessly decorated" -00474385 02 r 01 tastily 0 001 \ 02395115 a 0101 | in a tasty manner; "the meal was tastily cooked" -00474487 02 r 02 tauntingly 0 teasingly 0 001 \ 02123118 a 0202 | in a playfully teasing manner; "`You hate things to be out of order, don't you?' she said teasingly" -00474656 02 r 01 tautly 0 001 \ 02403505 a 0101 | in a taut manner; "the rope was tautly stretched" -00474758 02 r 01 tearfully 0 001 \ 01365239 a 0104 | with tears; in a tearful manner; "the man confessed tearfully to having beaten his wife" -00474902 02 r 02 telegraphically 0 tersely 0 002 \ 00547641 a 0204 \ 00548579 a 0101 | in a short and concise manner; "a particular bird, exactly and tersely described in the book of birds" -00475094 02 r 01 telescopically 0 001 \ 00466077 a 0101 | in a telescopic manner; "each of the four legs contains a simple screw jack with a thrust bearing that is operated telescopically inside of two tubes" -00475305 02 r 01 tellingly 0 001 \ 01305344 a 0102 | in a telling manner; "the plain manner of its style all the more tellingly points up the horror of the case" -00475469 02 r 01 temperately 0 001 \ 02401590 a 0101 | without extravagance; "these preferences are temperately stated" -00475591 02 r 01 temperately 1 000 | with restraint; "he used the privileges of his office temperately" -00475697 02 r 01 tendentiously 0 001 \ 00730985 a 0101 | in a tendentious manner; "the paper reported rather tendentiously on the war atrocities" -00475845 02 r 01 tenderly 0 001 \ 01464700 a 0104 | with tenderness; in a tender manner; "tenderly she placed her arms round him" -00475977 02 r 01 tenthly 0 001 \ 02203373 a 0101 | (in enumerating something, such as topics or points of discussion) in the tenth place -00476116 02 r 01 tetchily 0 001 \ 01136541 a 010b | in an ill-natured and tetchy manner; "`Are you sure?' he asked her tetchily" -00476247 02 r 01 theologically 0 001 \ 02907000 a 0101 | in a theological manner; "he dealt with the problem of evil theologically, not philosophically" -00476402 02 r 01 theologically 1 001 \ 02907000 a 0101 | as regards theology; "the candidate was found theologically sound" -00476528 02 r 01 thermostatically 0 001 \ 03125096 a 0101 | by thermostat; in a thermostatic manner; "the temperature is thermostatically controlled" -00476680 02 r 02 threefold 0 three_times 1 000 | by a factor of three; "our rent increased threefold in the past five years" -00476807 02 r 01 traditionally 0 001 \ 00611047 a 0101 | according to tradition; in a traditional manner; "traditionally, we eat fried foods on Hanukah" -00476962 02 r 02 thick 0 thickly 0 000 | in quick succession; "misfortunes come fast and thick" -00477060 02 r 01 thinly 2 002 ! 00299753 r 0102 \ 00542359 a 0102 | in a widely distributed manner; "thinly overgrown mountainside" -00477194 02 r 01 thickly 2 001 \ 01337314 a 0102 | spoken with poor articulation as if with a thick tongue; "after a few drinks he was beginning to speak thickly" -00477359 02 r 01 thickly 3 002 ! 00477636 r 0101 \ 02410393 a 0101 | with thickness; in a thick manner; "spread 1/4 lb softened margarine or cooking fat fairly thickly all over the surface"; "we were visiting a small, thickly walled and lovely town with straggling outskirt" -00477636 02 r 02 thinly 1 lightly 3 002 ! 00477359 r 0101 \ 02412164 a 0101 | in a small quantity or extent; "spread the margarine thinly over the meat"; "apply paint lightly" -00477814 02 r 02 thinly 0 thin 0 002 ! 00478040 r 0101 \ 02417301 a 0101 | without viscosity; "the blood was flowing thin" -00477939 02 r 01 thinly 3 001 \ 02282277 a 0101 | without force or sincere effort; "smiled thinly" -00478040 02 r 02 thickly 4 thick 1 002 ! 00477814 r 0101 \ 02415390 a 0101 | with a thick consistency; "the blood was flowing thick" -00478175 02 r 01 thirstily 0 001 \ 01270004 a 0101 | in a thirsty manner; "we drank thirstily from the bottle that was passed around" -00478311 02 r 01 thriftily 0 001 \ 02421158 a 0101 | in a thrifty manner; "a used towel that he had used and had left thriftily on the ledge below the mirror rather than consign to the linen basket" -00478512 02 r 01 thriftlessly 0 001 \ 01896299 a 0101 | in a thriftless manner; "he lives thriftlessly from day to day" -00478634 02 r 01 through 1 000 | over the whole distance; "this bus goes through to New York" -00478730 02 r 01 through 2 000 | in diameter; "this cylinder measures 15 inches through" -00478821 02 r 01 through 3 000 | from beginning to end; "read this book through" -00478904 02 r 01 through 4 000 | to completion; "think this through very carefully!" -00478991 02 r 02 timorously 0 trepidly 0 002 \ 00252498 a 0203 \ 00252498 a 0102 | in a timorous and trepid manner -00479108 02 r 01 tip-top 0 000 | to the highest extent; "the shoes fit me tip-top" -00479193 02 r 01 tiptoe 0 000 | on tiptoe or as if on tiptoe; "standing tiptoe" -00479275 02 r 01 tomorrow 0 000 | the next day, the day after, following the present day -00479366 02 r 01 tonelessly 0 001 \ 02430238 a 0101 | in a monotone; "`Come in,' she said tonelessly" -00479470 02 r 01 topographically 0 001 \ 03018112 a 0101 | with regard to topography; "the geological environment is the primary factor in determining the character of a country not only topographically but historically" -00479693 02 r 01 tortuously 0 000 | in a tortuous manner; "tortuously haggling over the price" -00479790 02 r 01 tortuously 1 000 | with twists and turns -00479850 02 r 01 touchily 0 001 \ 02106509 a 0104 | in a touchy manner; "he touchily refused all offers to help" -00479965 02 r 01 toughly 0 001 \ 00707795 a 0102 | in a ruggedly tough manner; "toughly vigorous story-telling" -00480079 02 r 01 transcendentally 0 001 \ 01577086 a 0104 | in a transcendental way or to a transcendental extent -00480195 02 r 01 transiently 0 001 \ 01756292 a 0104 | for a very short time; "these three pions may actually be joined together transiently as a compound particle during the interchange process" -00480393 02 r 01 transitionally 0 001 \ 02944694 a 0101 | as a transitional step or in a transitional manner -00480504 02 r 01 transitorily 0 001 \ 01756292 a 0105 | for a very brief time -00480584 02 r 01 transparently 0 001 \ 00431774 a 0106 | so as to allow the passage of light; "the red brilliance of the claret shines transparently in our glasses" -00480751 02 r 01 transparently 1 001 \ 01619689 a 0101 | so as to be easily understood or seen through; "his transparently lucid prose"; "his transparently deceitful behavior" -00480929 02 r 01 tremulously 0 001 \ 02304987 a 0102 | in a tremulous manner; "the leaves rustled tremulously in the wind" -00481054 02 r 01 trenchantly 0 001 \ 00834959 a 0102 | in a vigorous and effective manner; "he defended his client's civil rights trenchantly" -00481199 02 r 01 tritely 0 001 \ 01688757 a 010a | in a trite manner; "tritely expressed emotions" -00481300 02 r 01 trivially 0 001 \ 02121735 a 0101 | in a frivolously trivial manner; "trivially motivated requests" -00481419 02 r 01 trivially 1 000 | with little effort; "we can prove trivially that this theorem is false" -00481528 02 r 01 tropically 0 001 \ 01250835 a 0101 | in a tropical manner; "it was tropically hot in the greenhouse" -00481648 02 r 01 truculently 0 001 \ 00084795 a 0101 | in a defiantly truculent manner; "the boy looked up truculently at his teacher" -00481785 02 r 01 truculently 1 000 | in an aggressively truculent manner; "they strive for security by truculently asserting their own interests" -00481933 02 r 02 tumultuously 0 riotously 1 002 \ 01923720 a 0202 \ 01923720 a 0104 | in a tumultuous and riotous manner; "the crowd was demonstrating tumultuously" -00482100 02 r 01 turbulently 0 001 \ 00087597 a 0105 | in a turbulent manner; with turbulence; "the river rolls turbulently boiling" -00482235 02 r 01 tutorially 0 001 \ 03127435 a 0101 | by tutorials; in a tutorial manner; "undergraduates are better taught tutorially" -00482373 02 r 02 twofold 0 two_times 1 000 | by a factor of two; "the price increased twofold last year" -00482480 02 r 01 typographically 0 001 \ 02910248 a 0101 | in a typographic way -00482562 02 r 01 ultra_vires 0 000 | beyond the scope or in excess of legal power or authority -00482659 02 r 01 unaccountably 0 001 \ 00940108 a 0101 | in an unaccountable manner; "in the book, a tycoon unaccountably becomes the hero's friend" -00482810 02 r 04 unalterably 0 unchangeably 0 unassailably 0 immutably 0 004 \ 00356648 a 0401 \ 00591513 a 0301 \ 00346991 a 0201 \ 00349523 a 0101 | in an unalterable and unchangeable manner; "his views were unchangeably fixed" -00483042 02 r 02 unarguably 0 undisputedly 0 002 \ 00603039 a 0201 \ 00591406 a 0102 | in an unarguable and undisputed manner; "you write as if this fact whilst inarguably forever condemning me to the ranks of Bohemianism nevertheless earned for me the right of entry into any company" -00483330 02 r 01 unassumingly 0 001 \ 01539444 a 0102 | in an unassuming manner; "she is unassumingly skeptical of her own work" -00483461 02 r 02 unattainably 0 unachievably 0 002 \ 01824081 a 0201 \ 01824081 a 0102 | in an unattainable manner or to an unattainable degree; "this house is unattainably expensive" -00483647 02 r 01 unawares 0 000 | suddenly and unexpectedly; "rain caught them unawares"; "sorrow comes to all, and to the young it comes with bittered agony because it takes them unawares"- A.Lincoln -00483850 02 r 01 unawares 1 000 | without forethought or plan; inadvertently; "came upon the diamond unawares" -00483963 02 r 01 unbearably 0 000 | to an unbearable degree; "it was unbearably hot in the room" -00484062 02 r 02 unbeknown 0 unbeknownst 0 000 | without someone's knowledge; "unbeknownst to me, she made all the arrangements" -00484193 02 r 01 unblushingly 0 001 \ 00155720 a 0102 | without blushing; "his principal opponent unblushingly declared victory before the ballots had been counted" -00484360 02 r 01 uncannily 0 001 \ 01575424 a 0103 | in an uncanny manner; "uncannily human robots" -00484462 02 r 01 uncertainly 0 001 \ 00337404 a 0101 | showing lack of certainty; "he paused uncertainly" -00484570 02 r 01 unchivalrously 0 002 ! 00284489 r 0102 \ 00640931 a 0102 | in an unchivalrous and ungallant manner; "unchivalrously, the husbands who had to provide such innocent indulgences eventually began to count the costs" -00484801 02 r 01 uncommonly 0 001 \ 00487653 a 0101 | exceptionally; "a common remedy is uncommonly difficult to find" -00484922 02 r 01 uncompromisingly 0 001 \ 01025913 a 0101 | in an uncompromising manner -00485012 02 r 02 undesirably 0 unwantedly 0 002 \ 02527734 a 0201 \ 00733905 a 0101 | in an undesirable manner; "he was unwantedly friendly" -00485155 02 r 01 uninvitedly 0 001 \ 02540458 a 0101 | without invitation; "the women arrived uninvitedly" -00485264 02 r 01 unwontedly 0 001 \ 00488998 a 0101 | in an unusual manner -00485341 02 r 01 unconcernedly 0 001 \ 00545015 a 0101 | in an unconcerned manner; "war was breaking out in Europe, but she unconcernedly planned for a holiday" -00485504 02 r 01 uncontrollably 0 001 \ 00599821 a 0101 | in an uncontrolled manner; "she laughed uncontrollably" -00485620 02 r 01 uncouthly 0 001 \ 01950198 a 0104 | in an uncouth manner; "uncouthly, he told stories that made everybody at the table wince" -00485765 02 r 03 unctuously 0 smarmily 0 fulsomely 0 003 \ 02181432 a 0302 \ 02181432 a 0205 \ 02181432 a 0107 | in an unctuous manner -00485902 02 r 01 undeniably 0 001 \ 00721505 a 0101 | to an undeniable degree or in an undeniable manner; "she is undeniably the most gifted student in the class" -00486067 02 r 02 under 0 below 3 000 | further down; "see under for further discussion" -00486157 02 r 01 under 1 000 | down below; "get under quickly!" -00486223 02 r 01 under 2 000 | below the horizon; "the sun went under" -00486296 02 r 01 under 3 000 | below some quantity or limit; "fifty dollars or under" -00486384 02 r 01 under 4 000 | in or into a state of subordination or subjugation; "we must keep our disappointment under" -00486509 02 r 01 under 5 000 | down to defeat, death, or ruin; "their competitors went under" -00486605 02 r 01 under 6 000 | into unconsciousness; "this will put the patient under" -00486694 02 r 01 under 7 000 | through a range downward; "children six and under will be admitted free" -00486800 02 r 02 underarm 0 underhand 0 000 | with the hand swung below shoulder level; "throwing a ball underarm" -00486917 02 r 01 underground 0 000 | beneath the surface of the earth; "water flowing underground" -00487018 02 r 01 underground 1 000 | in or into hiding or secret operation; "the organization was driven underground" -00487138 02 r 02 underhandedly 0 underhand 1 001 \ 02319346 a 0102 | slyly and secretly; "Mean revenge, committed underhand"- John Donne; "oldline aristocratic diplomats underhandedly undermined the attempt...to align Germany with the Western democracies"- C.G.Bowers -00487408 02 r 01 underneath 0 000 | under or below an object or a surface; at a lower place or level; directly beneath; "we could see the original painting underneath"; "a house with a good foundation underneath" -00487623 02 r 01 underneath 1 000 | on the lower or downward side; on the underside of; "a chest of drawers all scratched underneath" -00487759 02 r 01 unduly 0 001 \ 00137641 a 0101 | to an undue degree; "she was unduly pessimistic about her future" -00487877 02 r 01 uneventfully 0 001 \ 00804502 a 0101 | in an uneventful manner; "the space shuttle landed uneventfully" -00488000 02 r 01 ungrammatically 0 002 ! 00488143 r 0101 \ 01146207 a 0101 | in an ungrammatical manner; "this child speaks ungrammatically" -00488143 02 r 01 grammatically 0 002 ! 00488000 r 0101 \ 01146012 a 0101 | in a grammatical manner; "this child already speaks grammatically" -00488287 02 r 02 unimaginably 0 unthinkably 0 002 \ 02418538 a 0201 \ 02418692 a 0104 | to an unimaginable extent -00488403 02 r 01 uninterruptedly 0 001 \ 00291338 a 0101 | without interruption; "this pleasant state of affairs had continued peacefully and uninterruptedly for many years" -00488579 02 r 01 unnaturally 2 002 ! 00488773 r 0101 \ 00073048 a 0102 | in an unnatural way; "his other arm lay across his chest, unnaturally, as if placed there deliberately, for a purpose" -00488773 02 r 01 naturally 2 001 ! 00488579 r 0101 | in a natural or normal manner; "speak naturally and easily" -00488888 02 r 01 precedentedly 0 002 ! 00488980 r 0101 \ 00128467 a 0101 | with precedent -00488980 02 r 01 unprecedentedly 0 002 ! 00488888 r 0101 \ 00128572 a 0101 | in an unprecedented manner -00489086 02 r 01 unreservedly 0 000 | without reservation; "I can unreservedly recommend this restaurant!" -00489195 02 r 01 unrestrainedly 0 001 \ 02000680 a 0101 | in an unrestrained manner -00489281 02 r 01 unscrupulously 0 001 \ 02085898 a 0101 | without scruples; "she unscrupulously uses her charm to make men do what she wants" -00489425 02 r 01 unstintingly 0 001 \ 01111965 a 0107 | in an unstinting manner -00489507 02 r 01 unswervingly 0 001 \ 00761844 a 0102 | without swerving; in a direct and unswerving manner; "the ship travelled unswervingly through the night" -00489670 02 r 01 unswervingly 1 001 \ 00583581 a 0103 | in a constant and steadfast manner; "an unswervingly loyal man" -00489792 02 r 01 untruly 0 001 \ 02462489 a 0101 | in a untrue manner; "he silenced the whisperings which connected her, untruly and unfairly, with his separation from his wife" -00489972 02 r 01 unwarrantably 0 001 \ 01722367 a 0104 | in an unwarrantable manner or to an unwarranted degree; "in this painting, the relationship of the upper part of the body to the lower is uneasy and the right thigh seems unwarrantably stressed" -00490226 02 r 01 unworthily 0 001 \ 02588099 a 0101 | in an unworthy manner -00490304 02 r 01 up-country 0 000 | to or in the interior of a country or region; "they live upcountry" -00490410 02 r 01 uphill 0 000 | upward on a hill or incline; "this street lay uphill" -00490498 02 r 01 uphill 1 000 | against difficulties; "she was talking uphill" -00490579 02 r 01 uppermost 0 000 | in or into the highest position; "the blade turned uppermost" -00490678 02 r 01 uppermost 1 000 | in or into the most prominent position, as in the mind; "say what comes uppermost" -00490798 02 r 01 uprightly 0 001 \ 01234030 a 0101 | in an upright position -00490876 02 r 02 honorably 2 uprightly 1 003 \ 02036934 a 0203 ! 00491024 r 0101 \ 01226240 a 0101 | in an honorable manner; "he acted honorably" -00491024 02 r 01 dishonorably 2 002 ! 00490876 r 0101 \ 01227137 a 0101 | in a dishonorable manner; "he acted dishonorably" -00491150 02 r 01 urbanely 0 001 \ 02271177 a 0104 | in an urbane manner; "`I had tea occasionally with the Duke,' said Mr. Eggers urbanely" -00491292 02 r 01 usefully 0 002 ! 00491438 r 0101 \ 02495922 a 0101 | in a useful manner; "extra money could be usefully spent on this project" -00491438 02 r 01 uselessly 0 002 ! 00491292 r 0101 \ 02497141 a 0101 | in a useless manner; "the furniture was sitting around uselessly" -00491577 02 r 01 uxoriously 0 001 \ 01466476 a 0101 | in a loving and uxorious manner; "he kept deferring uxoriously to Mary" -00491705 02 r 01 vacantly 0 001 \ 01088164 a 0101 | in a vacant manner; "she was staring vacantly into the room" -00491820 02 r 01 vacuously 0 001 \ 01498084 a 0103 | in a vacuous manner -00491895 02 r 02 valiantly 0 valorously 0 002 \ 00264570 a 0202 \ 00264570 a 0101 | with valor; in a valiant manner; "he fought valiantly until the end" -00492050 02 r 01 validly 0 001 \ 02498708 a 0101 | with validity; in a valid manner; "this may not validly be done" -00492168 02 r 01 vapidly 0 001 \ 02308001 a 0101 | in a vapid manner; "a vapidly smiling salesman" -00492269 02 r 01 variably 0 001 \ 02504131 a 0101 | with variation; in a variable manner or to a variable degree; "it will be variably cloudy" -00492414 02 r 01 vehemently 0 001 \ 01511854 a 0103 | in a vehement manner; "he vehemently denied the accusations against him" -00492543 02 r 04 verbosely 0 windily 0 long-windedly 0 wordily 0 004 \ 00549236 a 0405 \ 00549236 a 0301 \ 00549236 a 0204 \ 00549236 a 0103 | in a verbose manner; "she explained her ideas verbosely" -00492745 02 r 01 verily 0 001 ;u 07073447 n 0000 | in truth; certainly; "I verily think so"; "trust in the Lord...and verily thou shalt be fed"- Ps 37:3 -00492900 02 r 01 vicariously 0 001 \ 01855621 a 0101 | indirectly, as, by, or through a substitute; "she enjoyed the wedding vicariously" -00493040 02 r 02 vigilantly 0 watchfully 0 002 \ 00091311 a 0202 \ 00091764 a 0103 | in a watchful manner -00493148 02 r 01 vilely 0 001 \ 01133017 a 0103 | in a vile manner; "his vilely spelt and illiterate letters" -00493260 02 r 01 virulently 0 001 \ 01802165 a 010a | in a virulent manner; "an old woman advanced a few paces to shake her fist virulently in my face" -00493414 02 r 01 vivace 0 000 | lively, in music; "play this section vivace!" -00493494 02 r 01 vivaciously 0 001 \ 02280969 a 0102 | with vivacity; "he describes his adventures vivaciously" -00493608 02 r 01 voluptuously 1 001 \ 02138989 a 010a | in a shapely and voluptuous manner; "a voluptuously curved woman" -00493732 02 r 01 voraciously 0 001 \ 00010726 a 0106 | in an eagerly voracious manner; "she reads voraciously" -00493845 02 r 01 voyeuristically 0 001 \ 03129648 a 0101 | like a voyeur; "he sneaks voyeuristically around the swimming pool" -00493974 02 r 01 vulnerably 0 001 \ 02523275 a 0101 | in a vulnerable manner -00494053 02 r 01 waggishly 0 001 \ 01268002 a 0101 | in a waggish manner -00494128 02 r 02 waist-deep 0 waist-high 0 000 | up to the waist; "the water rose waist-high" -00494224 02 r 01 wanly 0 001 \ 02325984 a 0103 | in a weak or pale or languid manner; "she was smiling wanly" -00494336 02 r 01 wantonly 1 001 \ 01559270 a 0103 | in a wanton manner; "the animals were killed wantonly for sport" -00494455 02 r 01 wealthily 0 001 \ 02022167 a 0105 | with riches -00494522 02 r 01 weightily 0 001 \ 01187611 a 0101 | as something very heavy; "she moved weightily" -00494624 02 r 01 weightily 1 001 \ 01278423 a 0104 | in a serious manner; "the speech was weighty and it was weightily delivered" -00494756 02 r 01 whacking 0 000 | extremely; "a whacking good story" -00494827 02 r 02 wheezily 0 wheezingly 0 002 \ 01174048 a 0202 \ 01174048 a 0103 | with a wheeze; "he talked wheezily" -00494948 02 r 01 wholeheartedly 0 001 \ 02180486 a 0102 | without reserve; without reservation; "he adopted wholeheartedly some of the policies that he had previously criticized" -00495129 02 r 01 wholesomely 0 001 \ 02557357 a 0101 | in a wholesome manner; "the papers we found shed some valuable light on this question, wholesomely contradicting all lies" -00495309 02 r 01 whence 0 000 | from what place, source, or cause -00495377 02 r 02 wherever 0 wheresoever 0 000 | where in the world -00495446 02 r 01 whopping 0 000 | extremely; "they all were whopping drunk" -00495524 02 r 02 wide 0 widely 1 000 | to or over a great extent or range; far; "wandered wide through many lands"; "he traveled widely" -00495663 02 r 01 widely 0 000 | to a great degree; "her work is widely known" -00495743 02 r 01 wide 1 000 | with or by a broad space; "stand with legs wide apart"; "ran wide around left end" -00495858 02 r 02 wide 2 astray 4 000 | far from the intended target; "the arrow went wide of the mark"; "a bullet went astray and killed a bystander" -00496010 02 r 01 wide 3 000 | to the fullest extent possible; "open your eyes wide"; "with the throttle wide open" -00496127 02 r 02 willfully 0 wilfully 0 002 \ 02520693 a 0202 \ 02520693 a 0101 | in a willful manner; "she had willfully deceived me" -00496264 02 r 01 wishfully 0 001 \ 00887719 a 0102 | in a wishful manner; "he wishfully indulged in dreams of fame" -00496382 02 r 01 wistfully 0 001 \ 01362950 a 0102 | in a wistful manner; "his sister would have looked beautiful in that dress, he thought wistfully, just like an angel" -00496555 02 r 01 witheringly 0 001 \ 00586617 a 0104 | in a withering manner; "guns fired witheringly at the railroad cars" -00496681 02 r 01 wittily 0 001 \ 01268194 a 0101 | in a witty manner; "he would wittily chime into our conversation" -00496800 02 r 01 wolfishly 0 001 \ 02840006 a 0102 | in the manner of a wolf -00496879 02 r 01 worryingly 0 001 \ 01189386 a 0107 | in a manner to cause worry -00496962 02 r 01 worriedly 0 001 \ 02457167 a 0105 | in a worried manner; "`I wonder what to do,' she said worriedly"; "he paused worriedly before calling the bank" -00497129 02 r 01 worthily 0 001 \ 02584981 a 0101 | in a worthy manner; with worthiness -00497219 02 r 01 worthlessly 0 001 \ 02502163 a 0101 | in a worthless manner -00497298 02 r 01 wrathfully 0 001 \ 00116245 a 0101 | in a wrathful manner; "he looked at her, not wrathfully now, but quizzically" -00497432 02 r 01 wretchedly 0 001 \ 01050890 a 0109 | in a wretched manner; "`I can't remember who I am,' I said, wretchedly" -00497560 02 r 02 yea 0 yeah 0 000 | not only so, but; "I therein do rejoice, yea, and will rejoice" -00497662 02 r 01 youthfully 0 001 \ 01649720 a 0101 | in a youthful manner; "he is still youthfully enthusiastic" -00497778 02 r 01 zealously 0 001 \ 00886253 a 0102 | in a zealous manner; "she worked zealously to raise funds for the literacy project" -00497917 02 r 02 zestfully 0 zestily 0 002 \ 02281182 a 0203 \ 02281182 a 0101 | with zest; "she scrubbed the floors of the new apartment zestfully" -00498068 02 r 01 zigzag 0 000 | in a zigzag course or on a zigzag path; "birds flew zigzag across the blue sky" -00498182 02 r 01 a_la_mode 0 000 | with ice cream on top or on the side; "we served the apple pie a la mode" -00498293 02 r 02 between_decks 0 'tween_decks 0 000 | in the space between decks, on a ship -00498387 02 r 02 between 3 betwixt 0 000 | in the interval; "dancing all the dances with little rest between" -00498499 02 r 01 aloft 0 000 | in the higher atmosphere above the earth; "weather conditions aloft are fine" -00498610 02 r 01 aloft 1 000 | at or to great height; high up in or into the air; "eagles were soaring aloft"; "dust is whirled aloft" -00498747 02 r 02 irreproachably 0 blamelessly 0 002 \ 01320705 a 0201 \ 01320705 a 0103 | in an irreproachable and blameless manner; "she had lived blamelessly until she met this man" -00498933 02 r 01 bonnily 0 001 \ 00218440 a 0101 | in a bonny manner -00499004 02 r 01 aloft 7 000 | upward; "the good news sent her spirits aloft" -00499084 02 r 01 aloft 4 000 | at or on or to the masthead or upper rigging of a ship; "climbed aloft to unfurl the sail" -00499208 02 r 01 circumstantially 0 000 | insofar as the circumstances are concerned; "the account was circumstantially accurate" -00499340 02 r 01 circumstantially 3 000 | according to circumstances; "he was convicted circumstantially" -00499448 02 r 01 clammily 0 001 \ 02548619 a 0101 | in a clammy manner -00499521 02 r 02 conjugally 0 connubial 0 002 \ 02872066 a 0202 \ 02872066 a 0101 | in a conjugal manner -00499628 02 r 01 constrainedly 0 001 \ 00073761 a 0101 | in a constrained manner -00499711 02 r 01 convexly 0 002 ! 00499823 r 0101 \ 00537339 a 0101 | in a convex way; "bulging out convexly" -00499823 02 r 01 concavely 0 002 ! 00499711 r 0101 \ 00535452 a 0101 | in a concave way; "shaped concavely" -00499933 02 r 01 coordinately 0 001 \ 00890874 a 0101 | in a coordinated manner -00500015 02 r 02 corruptly 0 corruptedly 0 001 \ 00620731 a 0101 | in a corrupt manner -00500104 02 r 01 defectively 0 001 \ 01752953 a 0101 | in a defective manner; "this machine functions only defectively" -00500226 02 r 03 dingily 0 grubbily 0 grungily 0 003 \ 00420650 a 0305 \ 00420650 a 0204 \ 00420650 a 0102 | in a dingy manner -00500355 02 r 02 discursively 0 ramblingly 0 001 \ 00768397 a 0102 | in a rambling manner -00500447 02 r 02 profligately 0 dissolutely 0 002 \ 01549568 a 0205 \ 01549568 a 0107 | in a dissolute way -00500556 02 r 01 floridly 0 001 \ 01794771 a 0102 | in a florid manner; "floridly figurative prose" -00500658 02 r 01 half-price 0 000 | for half the price; "she bought it half-price during the sale" -00500759 02 r 01 imminently 0 001 \ 00448314 a 0103 | in an imminent manner -00500837 02 r 01 integrally 0 001 \ 01348528 a 0105 | in an integral manner -00500915 02 r 01 martially 0 001 \ 01518860 a 0102 | in a martial manner -00500990 02 r 01 ruggedly 0 001 \ 00707366 a 0101 | in a rugged manner -00501063 02 r 01 shrewishly 0 001 \ 01138610 a 0101 | in a shrewish manner -00501140 02 r 03 in_principle 0 in_theory 1 in_essence 1 000 | with regard to fundamentals although not concerning details; "in principle, we agree" -00501291 02 r 03 per_capita 0 for_each_person 0 of_each_person 0 000 | per person; "we are spending $5,000 per capita annually for education in this district" -00501452 02 r 01 distinctively 0 001 \ 01272718 a 0102 | in an identifiably distinctive manner; "the distinctively conservative district of the county" -00501606 02 r 01 philosophically 1 001 \ 02858231 a 0102 | with respect to philosophy; "the movement is philosophically indebted to Rousseau" -00501750 02 r 01 vanishingly 0 000 | so as to disappear or approach zero; "errors are vanishingly rare" -00501856 02 r 01 inaugurally 0 001 \ 01290766 a 0101 | so as to inaugurate; "the mayor inaugurally drove the spade into the ground" -00501990 02 r 03 in 1 inwards 1 inward 1 000 | to or toward the inside of; "come in"; "smash in the door" -00502098 02 r 01 unquestioningly 0 001 \ 00005599 a 0102 | in an unquestioning manner; "he followed his leader unquestioningly" -00502228 02 r 01 theretofore 0 000 | up to that time; "they had not done any work theretofore" -00502325 02 r 01 acutely 1 001 \ 01744515 a 0101 | in an acute manner; "she pitied her sister acutely"; "acutely aware" -00502447 02 r 01 demandingly 0 001 \ 00710260 a 0101 | in a demanding manner; "he became demandingly dominant over the years" -00502575 02 r 01 heavily 3 001 \ 01188328 a 0101 | in a manner designed for heavy duty; "a heavily constructed car"; "heavily armed" -00502710 02 r 02 specially 1 especially 1 002 \ 00488187 a 0201 \ 01678729 a 0101 | in a special manner; "a specially arranged dinner" -00502847 02 r 02 gently 1 mildly 2 002 \ 01508719 a 0201 \ 01455412 a 0101 | in a gentle manner; "he talked gently to the injured animal" -00502987 02 r 01 haggardly 0 001 \ 02433000 a 0103 | in a haggard manner; "she looked haggardly out of her tent" -00503102 02 r 03 sharply 2 sharp 0 acutely 2 002 \ 01810189 a 0302 \ 01144230 a 0101 | changing suddenly in direction and degree; "the road twists sharply after the light"; "turn sharp left here"; "the visor was acutely peaked"; "her shoes had acutely pointed toes" -00503370 02 r 02 madly 2 frantically 0 002 \ 00086341 a 0201 \ 02390724 a 0104 | in an uncontrolled manner; "she fought back madly" -00503504 02 r 02 smolderingly 0 smoulderingly 0 002 \ 00116058 a 0202 \ 00116058 a 0101 | with barely repressed anger; "`I can't wait,' she answered smolderingly" -00503669 02 r 01 dandily 0 001 \ 01123879 a 0105 | in a dandy manner; "she had shown her talents dandily" -00503777 02 r 01 in_common 0 000 | sharing equally with another or others; "we have several things in common"; "in common with other companies they advertise widely" -00503945 02 r 01 softly 4 000 | in a manner that is pleasing to the senses; "she smiled softly" -00504043 02 r 01 immediately 3 001 \ 00449079 a 0102 | near or close by; "he passed immediately behind her" -00504153 02 r 01 immediately 5 001 \ 00770316 a 0101 | bearing an immediate relation; "this immediately concerns your future" -00504281 02 r 01 directly 5 001 \ 00770480 a 0101 | without anyone or anything intervening; "these two factors are directly related"; "he was directly responsible"; "measured the physical properties directly" -00504492 02 r 01 second_hand 0 001 \ 01640482 a 0101 | from a source of previously owned goods; "I prefer to buy second hand" -00504620 02 r 02 in_full 0 fully 3 000 | referring to a quantity; "the amount was paid in full" -00504718 02 r 01 expansively 1 001 \ 01284544 a 0101 | in an impressively expansive manner; "she managed to live rather expansively on her modest income" -00504874 02 r 01 homogeneously 0 001 \ 01199751 a 0101 | all similarly; "the students at this college are homogeneously middle-class" -00505010 02 r 02 in_flight 0 on_the_wing 0 000 | flying through the air; "we saw the ducks in flight" -00505114 02 r 03 only 3 only_if 0 only_when 0 000 | never except when; "call me only if your cold gets worse" -00505226 02 r 03 close 2 closely 2 tight 2 001 \ 00309945 a 0201 | in an attentive manner; "he remained close on his guard" -00505352 02 r 02 naturally 3 by_nature 0 000 | through inherent nature; "he was naturally lazy" -00505450 02 r 02 by_rights 0 properly 1 000 | with reason or justice -00505521 02 r 02 caudally 0 caudal 0 002 \ 00131863 a 0201 \ 00131863 a 0101 | toward the posterior end of the body -00505639 02 r 01 causally 0 001 \ 00323199 a 0101 | in a causal fashion; "causally efficacious powers" -00505744 02 r 01 fearfully 1 001 \ 00193799 a 0101 | in an alarming manner; "they were fearfully attacked" -00505853 02 r 03 one_by_one 2 one_after_another 1 one_at_a_time 0 000 | in single file; "the prisoners came out one by one" -00505979 02 r 01 calculatingly 0 001 \ 01155603 a 0101 | in a calculating manner; "he looked at her calculatingly" -00506096 02 r 01 magnetically 1 001 \ 02926188 a 0101 | by the use of magnetism; "magnetically contaminated material" -00506216 02 r 01 redly 0 001 \ 00381097 a 0101 | displaying a red color; "the forge belched redly at the sky"-Adria Langley -00506342 02 r 01 widely 2 000 | so as to leave much space or distance between; "widely separated" -00506442 02 r 01 insignificantly 1 001 \ 01288298 a 0101 | in an insignificant manner; "some people living insignificantly among us" -00506577 02 r 01 fatally 0 001 \ 00685113 a 0102 | with fatal consequences or implications; "he was fatally ill equipped for the climb" -00506715 02 r 01 overboard 1 000 | to extremes; "he went overboard to please his in-laws" -00506807 02 r 01 desperately 1 001 \ 01229826 a 0102 | in intense despair; "the child clung desperately to her mother" -00506928 02 r 01 first 3 000 | before another in time, space, or importance; "I was here first"; "let's do this job first" -00507053 02 r 01 outstandingly 0 001 \ 02343762 a 0101 | in an outstanding manner or to an outstanding degree; "she was outstandingly successful in her profession" -00507219 02 r 01 tunelessly 0 001 \ 01502383 a 0101 | in a tuneless fashion; "he whistled tunelessly" -00507323 02 r 02 measuredly 0 deliberately 1 002 \ 01271961 a 0202 \ 01271961 a 0103 | in a deliberate unhurried manner; "she was working deliberately" -00507477 02 r 01 heavily 4 001 \ 01192786 a 0101 | in a heavy-footed manner; "he walked heavily up the three flights to his room" -00507609 02 r 01 mellowingly 0 000 | so as to mellow; "the rays of the sun struck the earth mellowingly" -00507716 02 r 01 yesterday 0 000 | on the day preceding today; "yesterday the weather was beautiful" -00507819 02 r 01 yesterday 1 000 | in the recent past; only a short time ago; "I was not born yesterday!" -00507927 02 r 01 together a 000 | in each other's company; "we went to the movies together"; "the family that prays together stays together" -00508070 02 r 01 after 0 000 | behind or in the rear; "and Jill came tumbling after" -00508157 02 r 01 later 3 000 | comparative of the adverb `late'; "he stayed later than you did" -00508255 02 r 01 on_earth 0 000 | used with question words to convey surprise; "what on earth are you doing?" -00508367 02 r 01 unblinkingly 0 001 \ 00858780 a 0101 | showing no emotion; "the convicted killer listened unblinkingly to the reading of his sentence" -00508521 02 r 01 luxuriously 2 001 \ 01298239 a 0102 | in an indulgently luxurious manner; "she sprawled out luxuriously on the sofa" -00508657 02 r 01 heavily 5 001 \ 01191618 a 0101 | with great force; "she hit her arm heavily against the wall" -00508771 02 r 01 loweringly 0 001 \ 00462409 a 0102 | in a menacing or scowling way; "he looked up loweringly" -00508884 02 r 01 aggravatingly 0 001 \ 01340422 a 0101 | in an aggravating fashion; "his hair was caught aggravatingly in the branches of the tree" -00509034 02 r 01 lightly 6 001 \ 01190316 a 0101 | without good reason; "one cannot say such things lightly" -00509145 02 r 01 quaveringly 0 001 \ 02304987 a 0101 | in an unsteady quavering manner; "the man began quaveringly to question the soldier" -00509287 02 r 02 from_pillar_to_post 0 hither_and_thither 0 000 | from one place or situation to another; "we were driven from pillar to post" -00509432 02 r 01 straight 0 000 | in a straight line; in a direct course; "the road runs straight" -00509533 02 r 02 painfully 1 sorely 2 003 \ 01712753 a 0202 ! 00509702 r 0101 \ 01711071 a 0101 | in or as if in pain; "she moved painfully forward"; "sorely wounded" -00509702 02 r 01 painlessly 1 002 ! 00509533 r 0101 \ 01713095 a 0101 | without pain; "after the surgery, she could move her arms painlessly" -00509846 02 r 02 better 1 best 3 000 | from a position of superiority or authority; "father knows best"; "I know better." -00509970 02 r 01 significantly 4 001 \ 02165655 a 0101 | in a statistically significant way; "the two groups differed significantly" -00510105 02 r 02 out_of_sight 1 out_of_view 0 000 | no longer visible; "the ship disappeared behind the horizon and passed out of sight" -00510244 02 r 01 out_of_place 0 000 | in a setting where one is or feels inappropriate or incongruous; "he felt out of place in the lingerie shop" -00510393 02 r 02 baby-wise 0 baby-like 0 000 | like a baby; "he cradled it, baby-wise, in his arms" -00510495 02 r 01 soughingly 0 001 \ 01456221 a 0103 | with a soft sound; "the branches of the trees moved soughingly in the breeze" -00510629 02 r 02 coincidentally 0 coincidently 0 002 \ 02378496 a 0201 \ 02378496 a 0102 | happening at the same time -00510749 02 r 01 very 1 000 | precisely so; "on the very next page"; "he expected the very opposite" -00510852 02 r 01 contextually 0 001 \ 03002190 a 0101 | in a manner dependent on context -00510943 02 r 01 departmentally 0 001 \ 03059966 a 0101 | dependent on a department -00511029 02 r 01 polygonally 0 001 \ 03100611 a 0101 | in a polygonal manner -00511108 02 r 01 regimentally 0 001 \ 03109663 a 0101 | in a regimental manner or by regiments -00511205 02 r 01 residentially 0 001 \ 00485044 a 0101 | used as a residence -00511284 02 r 01 schismatically 0 001 \ 03115053 a 0101 | in a manner that is schismatic -00511375 02 r 02 viscerally 1 unreasoningly 0 001 \ 01431471 a 0103 | in an unreasoning visceral manner -00511481 02 r 01 loosely 4 000 | in a loose manner; "a union of loosely federated states" -00511573 02 r 01 positively 2 001 \ 01817500 a 0101 | so as to be positive; in a positive manner; "she intended her remarks to be interpreted positively" -00511729 02 r 01 literatim 0 000 | letter for letter; "the message was transcribed literatim" -00511825 02 r 01 nebulously 0 001 \ 00702245 a 0101 | in a nebulous and indefinite manner -00511917 02 r 02 northeastward 0 northeastwardly 0 002 \ 01601901 a 0201 \ 01601901 a 0101 | in a northeastward direction; "the river flows northeastward to the gulf" -00512086 02 r 02 northwestward 0 northwestwardly 0 002 \ 01602250 a 0201 \ 01602250 a 0101 | in a northwestward direction -00512210 02 r 02 southeastward 0 southeastwardly 0 002 \ 01603789 a 0201 \ 01603789 a 0101 | in a southeastward direction; "the river flows southeastward to the gulf" -00512379 02 r 02 southwestward 0 southwestwardly 0 002 \ 01604146 a 0201 \ 01604146 a 0101 | in a southwestward direction -00512503 02 r 01 abaxially 0 002 ! 00512597 r 0101 \ 00002312 a 0101 | in an abaxial manner -00512597 02 r 01 adaxially 0 002 ! 00512503 r 0101 \ 00002527 a 0101 | in an adaxial manner -00512691 02 r 01 adjectivally 0 001 \ 02936020 a 0101 | as an adjective; in an adjectival manner -00512790 02 r 01 affirmatively 0 001 \ 00075135 a 0101 | in an affirmative manner -00512874 02 r 01 canonically 0 001 \ 03001527 a 0102 | in a canonical manner; "the deacon was canonically inducted" -00512992 02 r 01 cognitively 0 001 \ 02898584 a 0101 | with regard to cognition; "cognitively skillful" -00513098 02 r 01 complexly 0 001 \ 02176178 a 0101 | in a complex manner -00513173 02 r 01 cursively 0 001 \ 02285035 a 0101 | in a cursive manner -00513248 02 r 01 dolce 0 001 ;c 07020895 n 0000 | gently and sweetly -00513319 02 r 01 draggingly 0 001 \ 00837084 a 0101 | in a dragging manner -00513396 02 r 01 eccentrically 0 001 \ 00543200 a 0101 | not symmetrically with respect to the center -00513500 02 r 01 eccentrically 1 001 \ 00608791 a 0102 | in an eccentric or bizarre manner -00513593 02 r 01 endogenously 0 001 \ 00873113 a 0101 | in an endogenous manner -00513675 02 r 01 erotically 0 001 \ 02132080 a 0101 | in an erotic manner -00513751 02 r 01 hypnotically 0 001 \ 02745203 a 0101 | by means of hypnotism -00513831 02 r 01 immunologically 0 001 \ 02746290 a 0101 | from the point of view of immunology -00513929 02 r 02 in_vitro 0 ex_vivo 0 001 \ 01359277 a 0101 | in an artificial environment outside the living organism; "an egg fertilized in vitro" -00514080 02 r 01 irreparably 0 001 \ 01963792 a 0101 | in an irreparable manner or to an irreparable degree -00514190 02 r 01 irritatingly 0 001 \ 00089550 a 0104 | in an irritating manner -00514272 02 r 01 judicially 1 001 \ 01400961 a 0101 | as ordered by a court -00514350 02 r 01 logogrammatically 0 001 \ 02756743 a 0101 | by means of logograms; "Chinese is written logogrammatically" -00514475 02 r 01 on_camera 0 000 | within range of a movie or television camera; "the senator didn't realize that he was speaking on camera" -00514618 02 r 01 prepositionally 0 001 \ 03102278 a 0101 | as a preposition -00514696 02 r 01 presidentially 0 001 \ 00753504 a 0101 | in a presidential manner -00514781 02 r 01 radioactively 0 001 \ 00426907 a 0101 | in a radioactive manner; "radioactively labeled" -00514889 02 r 01 recurrently 0 001 \ 00592880 a 0102 | in a recurrent manner -00514968 02 r 01 sidearm 0 001 \ 03144729 a 0101 | in a sidearm manner; "he prefers to throw sidearm" -00515072 02 r 01 sinuously 0 001 \ 02316992 a 0102 | in a sinuous manner -00515147 02 r 01 sinusoidally 0 001 \ 02317145 a 0101 | in a sinusoidal manner -00515228 02 r 02 spaceward 0 spacewards 0 000 | towards outer space -00515298 02 r 01 stably 0 001 \ 00348018 a 0102 | in a stable unchanging manner; "the death rate in Russia has been stably high" -00515429 02 r 01 stably 1 001 \ 02290998 a 0101 | in a stable solid fixed manner; "the boulder was balanced stably at the edge of the canyon" -00515573 02 r 01 suggestively 0 001 \ 00723542 a 0102 | in a suggestive manner; "she smiled suggestively" -00515681 02 r 01 synergistically 0 001 \ 00623356 a 0101 | (of drugs or muscles) in a synergistic or interactive manner -00515803 02 r 01 synergistically 1 001 \ 00620341 a 0102 | (of group) in a synergistic or cooperative manner -00515914 02 r 01 synonymously 0 001 \ 02381302 a 0101 | in a synonymous manner; "the two terms are used synonymously" -00516034 02 r 01 taxonomically 0 001 \ 03018498 a 0101 | with regard to taxonomy; "closely related taxonomically" -00516150 02 r 01 topologically 0 001 \ 02817533 a 0101 | from the point of view of topology -00516244 02 r 01 ulteriorly 0 001 \ 01707733 a 0103 | in an ulterior manner -00516322 02 r 01 vexatiously 0 001 \ 00089550 a 010c | in a vexatious manner -00516401 02 r 01 wafer-thin 0 001 \ 02415294 a 0101 | very thin; "it was cut wafer-thin" -00516492 02 r 01 wrongfully 0 001 \ 01371009 a 0101 | in an unjust or unfair manner; "the employee claimed that she was wrongfully dismissed"; "people who were wrongfully imprisoned should be released" diff --git a/corpora/en/wordnet/dict/data.noun b/corpora/en/wordnet/dict/data.noun deleted file mode 100644 index 4575737e5..000000000 --- a/corpora/en/wordnet/dict/data.noun +++ /dev/null @@ -1,82144 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -00001740 03 n 01 entity 0 003 ~ 00001930 n 0000 ~ 00002137 n 0000 ~ 04424418 n 0000 | that which is perceived or known or inferred to have its own distinct existence (living or nonliving) -00001930 03 n 01 physical_entity 0 007 @ 00001740 n 0000 ~ 00002452 n 0000 ~ 00002684 n 0000 ~ 00007347 n 0000 ~ 00020827 n 0000 ~ 00029677 n 0000 ~ 14580597 n 0000 | an entity that has physical existence -00002137 03 n 02 abstraction 0 abstract_entity 0 010 @ 00001740 n 0000 + 00692329 v 0101 ~ 00023100 n 0000 ~ 00024264 n 0000 ~ 00031264 n 0000 ~ 00031921 n 0000 ~ 00033020 n 0000 ~ 00033615 n 0000 ~ 05810143 n 0000 ~ 07999699 n 0000 | a general concept formed by extracting common features from specific examples -00002452 03 n 01 thing 0 009 @ 00001930 n 0000 ~ 04347225 n 0000 ~ 09225146 n 0000 ~ 09312645 n 0000 ~ 09367203 n 0000 ~ 09385911 n 0000 ~ 09407867 n 0000 ~ 09465459 n 0000 ~ 09468959 n 0000 | a separate and self-contained entity -00002684 03 n 02 object 0 physical_object 0 039 @ 00001930 n 0000 + 00532607 v 0105 ~ 00003553 n 0000 ~ 00027167 n 0000 ~ 03009633 n 0000 ~ 03149951 n 0000 ~ 03233423 n 0000 ~ 03338648 n 0000 ~ 03532080 n 0000 ~ 03595179 n 0000 ~ 03610270 n 0000 ~ 03714721 n 0000 ~ 03892891 n 0000 ~ 04012260 n 0000 ~ 04248010 n 0000 ~ 04345288 n 0000 ~ 04486445 n 0000 ~ 07851054 n 0000 ~ 09238143 n 0000 ~ 09251689 n 0000 ~ 09267490 n 0000 ~ 09279458 n 0000 ~ 09281777 n 0000 ~ 09283193 n 0000 ~ 09287968 n 0000 ~ 09295338 n 0000 ~ 09300905 n 0000 ~ 09302031 n 0000 ~ 09308398 n 0000 ~ 09334396 n 0000 ~ 09335240 n 0000 ~ 09358550 n 0000 ~ 09368224 n 0000 ~ 09407346 n 0000 ~ 09409203 n 0000 ~ 09432990 n 0000 ~ 09468237 n 0000 ~ 09474162 n 0000 ~ 09477037 n 0000 | a tangible and visible entity; an entity that can cast a shadow; "it was full of rackets, balls and other objects" -00003553 03 n 02 whole 0 unit 0 015 @ 00002684 n 0000 + 01462005 v 0204 + 00367685 v 0201 + 01385458 v 0201 + 00368109 v 0201 + 00784215 a 0103 ~ 00003993 n 0000 ~ 00004258 n 0000 ~ 00019128 n 0000 ~ 00021939 n 0000 ~ 02749953 n 0000 ~ 03588414 n 0000 %p 03892891 n 0000 %p 04164989 n 0000 ~ 04353803 n 0000 | an assemblage of parts that is regarded as a single entity; "how big is that part compared to the whole?"; "the team is a unit" -00003993 03 n 01 congener 0 001 @ 00003553 n 0000 | a whole (a thing or person) of the same kind or category as another; "lard was also used, though its congener, butter, was more frequently employed"; "the American shopkeeper differs from his European congener" -00004258 03 n 02 living_thing 0 animate_thing 0 007 @ 00003553 n 0000 -c 01646941 a 0000 ~ 00004475 n 0000 ~ 00006269 n 0000 ~ 00006400 n 0000 ~ 00006484 n 0000 -c 05056234 n 0000 | a living (or once living) entity -00004475 03 n 02 organism 0 being 0 065 @ 00004258 n 0000 + 02614181 v 0201 + 02986509 a 0102 + 01679459 a 0101 + 01093142 a 0101 -c 00270856 a 0000 -c 00327031 a 0000 -c 01665816 a 0000 ~ 00005787 n 0000 ~ 00005930 n 0000 ~ 00006024 n 0000 ~ 00006150 n 0000 %p 00006484 n 0000 ~ 00007846 n 0000 ~ 00015388 n 0000 ~ 00017222 n 0000 ~ 00019046 n 0000 ~ 01313888 n 0000 ~ 01314026 n 0000 ~ 01314145 n 0000 ~ 01315062 n 0000 ~ 01319932 n 0000 ~ 01320093 n 0000 ~ 01320314 n 0000 ~ 01320479 n 0000 ~ 01320692 n 0000 ~ 01324019 n 0000 ~ 01326291 n 0000 ~ 01326897 n 0000 ~ 01327028 n 0000 ~ 01327322 n 0000 ~ 01328121 n 0000 ~ 01328302 n 0000 ~ 01383638 n 0000 ~ 01384313 n 0000 ~ 01384687 n 0000 ~ 01385527 n 0000 ~ 01386182 n 0000 ~ 01386354 n 0000 ~ 01415626 n 0000 ~ 01415920 n 0000 ~ 01416213 n 0000 %p 05220461 n 0000 %s 05267345 n 0000 -c 05431926 n 0000 -c 05432623 n 0000 -c 06088995 n 0000 ~ 07940242 n 0000 -c 08657249 n 0000 ~ 09819860 n 0000 ~ 10203839 n 0000 ~ 10297234 n 0000 ~ 10341660 n 0000 ~ 10456603 n 0000 ~ 10603959 n 0000 ~ 10648033 n 0000 ~ 10743675 n 0000 ~ 12992868 n 0000 ~ 13084479 n 0000 ~ 13084633 n 0000 ~ 13124164 n 0000 ~ 13124358 n 0000 ~ 13124529 n 0000 -c 13514314 n 0000 -c 13517553 n 0000 | a living thing that has (or can develop) the ability to act or function independently -00005787 03 n 01 benthos 0 002 @ 00004475 n 0000 + 02661574 a 0103 | organisms (plants and animals) that live at or near the bottom of a sea -00005930 03 n 01 dwarf 0 001 @ 00004475 n 0000 | a plant or animal that is atypically small -00006024 03 n 01 heterotroph 0 001 @ 00004475 n 0000 | an organism that depends on complex organic substances for nutrition -00006150 03 n 01 parent 0 001 @ 00004475 n 0000 | an organism (plant or animal) from which younger ones are obtained -00006269 03 n 01 life 0 002 @ 00004258 n 0000 ~ 07993776 n 0000 | living things collectively; "the oceans are teeming with life" -00006400 03 n 01 biont 0 001 @ 00004258 n 0000 | a discrete unit of living matter -00006484 03 n 01 cell 0 035 @ 00004258 n 0000 #p 00004475 n 0000 ;c 06037666 n 0000 + 02685299 a 0101 + 00327031 a 0101 -c 02818402 a 0000 ~ 01313888 n 0000 ~ 01459664 n 0000 ~ 01907149 n 0000 ~ 05229622 n 0000 ~ 05242752 n 0000 ~ 05268383 n 0000 %p 05312782 n 0000 ~ 05430628 n 0000 ~ 05431402 n 0000 %p 05431585 n 0000 ~ 05431926 n 0000 ~ 05432623 n 0000 %p 05432948 n 0000 %p 05434927 n 0000 %p 05445668 n 0000 %p 05447087 n 0000 ~ 05447757 n 0000 ~ 05449538 n 0000 ~ 05456732 n 0000 ~ 05458412 n 0000 ~ 05458703 n 0000 ~ 05459457 n 0000 ~ 05459590 n 0000 ~ 11530149 n 0000 ~ 11688378 n 0000 ~ 11688552 n 0000 ~ 11688750 n 0000 ~ 13092385 n 0000 ~ 13092548 n 0000 | (biology) the basic structural and functional unit of all organisms; they may exist as independent units of life (as in monads) or may form colonies or tissues as in higher plants and animals -00007347 03 n 03 causal_agent 0 cause 0 causal_agency 0 020 @ 00001930 n 0000 + 00323199 a 0201 + 01645601 v 0201 + 00770437 v 0203 ~ 00007846 n 0000 ~ 09190918 n 0000 ~ 09503682 n 0000 ~ 09503877 n 0000 ~ 09504464 n 0000 ~ 09504603 n 0000 ~ 09504915 n 0000 ~ 09900711 n 0000 ~ 10009926 n 0000 ~ 10378412 n 0000 ~ 10461424 n 0000 ~ 10757918 n 0000 ~ 11417561 n 0000 ~ 14540564 n 0000 ~ 14541044 n 0000 ~ 14778436 n 0000 | any entity that produces an effect or is responsible for events or results -00007846 03 n 06 person 0 individual 0 someone 0 somebody 0 mortal 0 soul 0 411 @ 00004475 n 0000 @ 00007347 n 0000 #m 07942152 n 0000 + 01557614 a 0501 + 00388065 v 0203 + 04618781 n 0101 + 00727573 v 0101 %p 04617562 n 0000 %p 05217168 n 0000 ~ 09604981 n 0000 ~ 09605289 n 0000 ~ 09606009 n 0000 ~ 09606527 n 0000 ~ 09607280 n 0000 ~ 09607630 n 0000 ~ 09609232 n 0000 ~ 09609561 n 0000 ~ 09609871 n 0000 ~ 09610255 n 0000 ~ 09610405 n 0000 ~ 09610660 n 0000 ~ 09613191 n 0000 ~ 09614047 n 0000 ~ 09614315 n 0000 ~ 09615465 n 0000 ~ 09615807 n 0000 ~ 09616922 n 0000 ~ 09617696 n 0000 ~ 09617867 n 0000 ~ 09618957 n 0000 ~ 09619168 n 0000 ~ 09619824 n 0000 ~ 09620078 n 0000 ~ 09620794 n 0000 ~ 09621232 n 0000 ~ 09621359 n 0000 ~ 09621545 n 0000 ~ 09622049 n 0000 ~ 09622302 n 0000 ~ 09622928 n 0000 ~ 09623038 n 0000 ~ 09624168 n 0000 ~ 09624980 n 0000 ~ 09625401 n 0000 ~ 09625789 n 0000 ~ 09626031 n 0000 ~ 09626238 n 0000 ~ 09626589 n 0000 ~ 09627017 n 0000 ~ 09627117 n 0000 ~ 09627462 n 0000 ~ 09628382 n 0000 ~ 09629246 n 0000 ~ 09629752 n 0000 ~ 09630641 n 0000 ~ 09631129 n 0000 ~ 09632274 n 0000 ~ 09632518 n 0000 ~ 09634494 n 0000 ~ 09636106 n 0000 ~ 09636339 n 0000 ~ 09638875 n 0000 ~ 09644820 n 0000 ~ 09676884 n 0000 ~ 09679170 n 0000 ~ 09681351 n 0000 ~ 09752246 n 0000 ~ 09752381 n 0000 ~ 09752519 n 0000 ~ 09752657 n 0000 ~ 09752795 n 0000 ~ 09752927 n 0000 ~ 09753065 n 0000 ~ 09753204 n 0000 ~ 09753348 n 0000 ~ 09753498 n 0000 ~ 09753642 n 0000 ~ 09753792 n 0000 ~ 09754051 n 0000 ~ 09754541 n 0000 ~ 09756961 n 0000 ~ 09757944 n 0000 ~ 09762821 n 0000 ~ 09763784 n 0000 ~ 09764201 n 0000 ~ 09764900 n 0000 ~ 09767197 n 0000 ~ 09769636 n 0000 ~ 09771664 n 0000 ~ 09772330 n 0000 ~ 09773245 n 0000 ~ 09774167 n 0000 ~ 09774783 n 0000 ~ 09776261 n 0000 ~ 09779124 n 0000 ~ 09786585 n 0000 ~ 09793141 n 0000 ~ 09796809 n 0000 ~ 09796974 n 0000 ~ 09801102 n 0000 ~ 09802445 n 0000 ~ 09804230 n 0000 ~ 09810364 n 0000 ~ 09815076 n 0000 ~ 09817536 n 0000 ~ 09824609 n 0000 ~ 09825413 n 0000 ~ 09828403 n 0000 ~ 09828600 n 0000 ~ 09831856 n 0000 ~ 09831962 n 0000 ~ 09833896 n 0000 ~ 09833997 n 0000 ~ 09836160 n 0000 ~ 09843602 n 0000 ~ 09845401 n 0000 ~ 09846265 n 0000 ~ 09850457 n 0000 ~ 09851165 n 0000 ~ 09856671 n 0000 ~ 09857852 n 0000 ~ 09860415 n 0000 ~ 09860506 n 0000 ~ 09861287 n 0000 ~ 09862845 n 0000 ~ 09864536 n 0000 ~ 09877856 n 0000 ~ 09883452 n 0000 ~ 09890749 n 0000 ~ 09898892 n 0000 ~ 09899289 n 0000 ~ 09902954 n 0000 ~ 09903936 n 0000 ~ 09906449 n 0000 ~ 09910374 n 0000 ~ 09918554 n 0000 ~ 09921673 n 0000 ~ 09930464 n 0000 ~ 09931267 n 0000 ~ 09936620 n 0000 ~ 09939313 n 0000 ~ 09947127 n 0000 ~ 09950457 n 0000 ~ 09951274 n 0000 ~ 09960315 n 0000 ~ 09962414 n 0000 ~ 09964411 n 0000 ~ 09969491 n 0000 ~ 09970088 n 0000 ~ 09976119 n 0000 ~ 09976429 n 0000 ~ 09976728 n 0000 ~ 09978889 n 0000 ~ 09990415 n 0000 ~ 09994943 n 0000 ~ 09996481 n 0000 ~ 09997212 n 0000 ~ 09997622 n 0000 ~ 10000007 n 0000 ~ 10000616 n 0000 ~ 10001058 n 0000 ~ 10001647 n 0000 ~ 10012377 n 0000 ~ 10012815 n 0000 ~ 10016954 n 0000 ~ 10018021 n 0000 ~ 10019888 n 0000 ~ 10024362 n 0000 ~ 10027246 n 0000 ~ 10033225 n 0000 ~ 10033663 n 0000 ~ 10036266 n 0000 ~ 10040617 n 0000 ~ 10044682 n 0000 ~ 10046527 n 0000 ~ 10050712 n 0000 ~ 10052843 n 0000 ~ 10055730 n 0000 ~ 10058411 n 0000 ~ 10059162 n 0000 ~ 10065547 n 0000 ~ 10072708 n 0000 ~ 10074841 n 0000 ~ 10075899 n 0000 ~ 10076778 n 0000 ~ 10080337 n 0000 ~ 10086074 n 0000 ~ 10093396 n 0000 ~ 10099375 n 0000 ~ 10109662 n 0000 ~ 10112591 n 0000 ~ 10115082 n 0000 ~ 10117511 n 0000 ~ 10117739 n 0000 ~ 10118844 n 0000 ~ 10122128 n 0000 ~ 10122300 n 0000 ~ 10138369 n 0000 ~ 10138767 n 0000 ~ 10143725 n 0000 ~ 10146927 n 0000 ~ 10147262 n 0000 ~ 10147619 n 0000 ~ 10149436 n 0000 ~ 10150794 n 0000 ~ 10158756 n 0000 ~ 10162194 n 0000 ~ 10173895 n 0000 ~ 10182913 n 0000 ~ 10183157 n 0000 ~ 10184946 n 0000 ~ 10185148 n 0000 ~ 10190745 n 0000 ~ 10191001 n 0000 ~ 10199783 n 0000 ~ 10209888 n 0000 ~ 10212780 n 0000 ~ 10213429 n 0000 ~ 10219879 n 0000 ~ 10221656 n 0000 ~ 10226993 n 0000 ~ 10227266 n 0000 ~ 10231087 n 0000 ~ 10235549 n 0000 ~ 10236842 n 0000 ~ 10238272 n 0000 ~ 10239761 n 0000 ~ 10240082 n 0000 ~ 10247044 n 0000 ~ 10247880 n 0000 ~ 10248876 n 0000 ~ 10251779 n 0000 ~ 10253122 n 0000 ~ 10260706 n 0000 ~ 10262183 n 0000 ~ 10264219 n 0000 ~ 10266328 n 0000 ~ 10268299 n 0000 ~ 10270878 n 0000 ~ 10271525 n 0000 ~ 10278666 n 0000 ~ 10282920 n 0000 ~ 10284965 n 0000 ~ 10289039 n 0000 ~ 10291110 n 0000 ~ 10291730 n 0000 ~ 10295819 n 0000 ~ 10299700 n 0000 ~ 10304383 n 0000 ~ 10308066 n 0000 ~ 10310903 n 0000 ~ 10311823 n 0000 ~ 10314182 n 0000 ~ 10321754 n 0000 ~ 10322546 n 0000 ~ 10323999 n 0000 ~ 10326551 n 0000 ~ 10328941 n 0000 ~ 10333165 n 0000 ~ 10335563 n 0000 ~ 10341955 n 0000 ~ 10344774 n 0000 ~ 10344922 n 0000 ~ 10351625 n 0000 ~ 10352299 n 0000 ~ 10355142 n 0000 ~ 10361060 n 0000 ~ 10361296 n 0000 ~ 10361390 n 0000 ~ 10361525 n 0000 ~ 10362003 n 0000 ~ 10362319 n 0000 ~ 10365399 n 0000 ~ 10367409 n 0000 ~ 10370381 n 0000 ~ 10380126 n 0000 ~ 10384496 n 0000 ~ 10385707 n 0000 ~ 10386071 n 0000 ~ 10386515 n 0000 ~ 10386618 n 0000 ~ 10389398 n 0000 ~ 10395390 n 0000 ~ 10396462 n 0000 ~ 10399299 n 0000 ~ 10402417 n 0000 ~ 10402824 n 0000 ~ 10404550 n 0000 ~ 10417682 n 0000 ~ 10418101 n 0000 ~ 10418735 n 0000 ~ 10425946 n 0000 ~ 10431625 n 0000 ~ 10435716 n 0000 ~ 10438172 n 0000 ~ 10440580 n 0000 ~ 10457777 n 0000 ~ 10461169 n 0000 ~ 10466918 n 0000 ~ 10484739 n 0000 ~ 10490965 n 0000 ~ 10495167 n 0000 ~ 10495975 n 0000 ~ 10498699 n 0000 ~ 10502046 n 0000 ~ 10503452 n 0000 ~ 10509605 n 0000 ~ 10512982 n 0000 ~ 10513823 n 0000 ~ 10516692 n 0000 ~ 10518349 n 0000 ~ 10521470 n 0000 ~ 10522759 n 0000 ~ 10524973 n 0000 ~ 10525134 n 0000 ~ 10526534 n 0000 ~ 10529231 n 0000 ~ 10530959 n 0000 ~ 10532576 n 0000 ~ 10538154 n 0000 ~ 10540656 n 0000 ~ 10541229 n 0000 ~ 10543795 n 0000 ~ 10560637 n 0000 ~ 10563711 n 0000 ~ 10569179 n 0000 ~ 10575594 n 0000 ~ 10575787 n 0000 ~ 10576223 n 0000 ~ 10579676 n 0000 ~ 10584853 n 0000 ~ 10585077 n 0000 ~ 10585976 n 0000 ~ 10594043 n 0000 ~ 10597234 n 0000 ~ 10599354 n 0000 ~ 10604180 n 0000 ~ 10605088 n 0000 ~ 10609325 n 0000 ~ 10609686 n 0000 ~ 10611541 n 0000 ~ 10612803 n 0000 ~ 10613505 n 0000 ~ 10614225 n 0000 ~ 10614363 n 0000 ~ 10616578 n 0000 ~ 10616670 n 0000 ~ 10616779 n 0000 ~ 10617904 n 0000 ~ 10618007 n 0000 ~ 10619492 n 0000 ~ 10626722 n 0000 ~ 10627349 n 0000 ~ 10635788 n 0000 ~ 10636874 n 0000 ~ 10639047 n 0000 ~ 10640968 n 0000 ~ 10641551 n 0000 ~ 10643727 n 0000 ~ 10656223 n 0000 ~ 10656488 n 0000 ~ 10659762 n 0000 ~ 10661216 n 0000 ~ 10665302 n 0000 ~ 10668666 n 0000 ~ 10676682 n 0000 ~ 10679998 n 0000 ~ 10680910 n 0000 ~ 10681060 n 0000 ~ 10681383 n 0000 ~ 10688811 n 0000 ~ 10688975 n 0000 ~ 10691600 n 0000 ~ 10699752 n 0000 ~ 10702167 n 0000 ~ 10702615 n 0000 ~ 10703336 n 0000 ~ 10708797 n 0000 ~ 10709256 n 0000 ~ 10709529 n 0000 ~ 10710632 n 0000 ~ 10717461 n 0000 ~ 10717589 n 0000 ~ 10724372 n 0000 ~ 10725734 n 0000 ~ 10726031 n 0000 ~ 10728998 n 0000 ~ 10733350 n 0000 ~ 10735564 n 0000 ~ 10737431 n 0000 ~ 10741590 n 0000 ~ 10746346 n 0000 ~ 10752480 n 0000 ~ 10753061 n 0000 ~ 10756641 n 0000 ~ 10757625 n 0000 ~ 10763725 n 0000 ~ 10763878 n 0000 ~ 10764296 n 0000 ~ 10766025 n 0000 ~ 10767020 n 0000 ~ 10768585 n 0000 ~ 10769782 n 0000 ~ 10771636 n 0000 ~ 10771990 n 0000 ~ 10781236 n 0000 ~ 10783539 n 0000 ~ 10785695 n 0000 ~ 10786517 n 0000 ~ 10791890 n 0000 ~ 10803193 n 0000 | a human being; "there was too much for one person to do" -00015388 03 n 06 animal 0 animate_being 0 beast 0 brute 0 creature 0 fauna 0 092 @ 00004475 n 0000 #m 01313093 n 0000 + 01617192 v 0502 + 01263445 a 0301 + 01263445 a 0302 + 01680756 v 0101 + 01680756 v 0102 -c 00057992 a 0000 -c 00147052 a 0000 -c 00160288 a 0000 -c 00214461 a 0000 -c 00313701 a 0000 -c 00314639 a 0000 -c 00315254 a 0000 -c 00315383 a 0000 -c 01427010 a 0000 -c 01488616 a 0000 -c 01904698 a 0000 -c 01958898 a 0000 -c 01959111 a 0000 -c 02252634 a 0000 -c 02252877 a 0000 -c 00227595 n 0000 -c 00320284 n 0000 ~ 01314388 n 0000 ~ 01314663 n 0000 ~ 01314781 n 0000 ~ 01314910 n 0000 ~ 01315213 n 0000 ~ 01315330 n 0000 ~ 01315581 n 0000 ~ 01315805 n 0000 ~ 01316288 n 0000 ~ 01316422 n 0000 ~ 01316949 n 0000 ~ 01317541 n 0000 ~ 01317916 n 0000 ~ 01318478 n 0000 ~ 01318660 n 0000 ~ 01318894 n 0000 ~ 01319001 n 0000 ~ 01319187 n 0000 ~ 01319467 n 0000 ~ 01320872 n 0000 ~ 01321230 n 0000 ~ 01321456 n 0000 ~ 01321579 n 0000 ~ 01323599 n 0000 ~ 01323781 n 0000 ~ 01324142 n 0000 ~ 01324305 n 0000 ~ 01324610 n 0000 ~ 01324799 n 0000 ~ 01324916 n 0000 ~ 01325060 n 0000 -c 01326291 n 0000 -c 01375204 n 0000 ~ 01384164 n 0000 ~ 01458842 n 0000 ~ 01466257 n 0000 ~ 01905661 n 0000 ~ 01908958 n 0000 ~ 02075612 n 0000 ~ 02152740 n 0000 ~ 02152881 n 0000 ~ 02152991 n 0000 ~ 02157206 n 0000 ~ 02157285 n 0000 ~ 02311060 n 0000 ~ 02384858 n 0000 ~ 02451575 n 0000 -c 04474466 n 0000 -c 04828925 n 0000 -c 05216365 n 0000 %s 05267548 n 0000 %p 05538625 n 0000 -c 05551318 n 0000 %p 05601198 n 0000 -c 05658826 n 0000 -c 07560903 n 0000 -c 09469285 n 0000 ~ 09893502 n 0000 ~ 10300303 n 0000 -c 10603959 n 0000 -c 10648033 n 0000 -c 13895852 n 0000 -c 14224547 n 0000 -c 00197423 v 0000 -c 00301856 v 0000 -c 00302130 v 0000 -c 01169589 v 0000 -c 01576478 v 0000 | a living organism characterized by voluntary movement -00017222 03 n 03 plant 0 flora 0 plant_life 0 092 @ 00004475 n 0000 #m 11529603 n 0000 ;c 06066555 n 0000 + 02847619 a 0201 + 02833235 a 0101 + 11531090 n 0101 + 01567275 v 0101 -c 00026706 a 0000 -c 00027074 a 0000 -c 00113476 a 0000 -c 00113663 a 0000 -c 00210079 a 0000 -c 00213814 a 0000 -c 00214461 a 0000 -c 00214907 a 0000 -c 00313387 a 0000 -c 00314927 a 0000 -c 00315383 a 0000 -c 00405554 a 0000 -c 00707206 a 0000 -c 00753786 a 0000 -c 00753922 a 0000 -c 00913551 a 0000 -c 00914104 a 0000 -c 01029399 a 0000 -c 01029563 a 0000 -c 01029710 a 0000 -c 01029873 a 0000 -c 01426749 a 0000 -c 01865640 a 0000 -c 02039491 a 0000 -c 02253389 a 0000 -c 02253536 a 0000 -c 02253655 a 0000 -c 02253817 a 0000 -c 02386002 a 0000 -c 02524192 a 0000 -c 02524688 a 0000 -c 00700421 n 0000 -c 01326291 n 0000 ~ 01383896 n 0000 -c 01384687 n 0000 -c 03060074 n 0000 -c 05055503 n 0000 -c 07312221 n 0000 -c 08436759 n 0000 %p 09305358 n 0000 ~ 11530008 n 0000 ~ 11530512 n 0000 ~ 11530715 n 0000 ~ 11530860 n 0000 ~ 11530990 n 0000 ~ 11531090 n 0000 ~ 11531193 n 0000 ~ 11536087 n 0000 ~ 11536230 n 0000 ~ 11536369 n 0000 ~ 11536567 n 0000 ~ 11536673 n 0000 ~ 11552133 n 0000 ~ 11552806 n 0000 ~ 11552976 n 0000 ~ 11553240 n 0000 ~ 11553419 n 0000 ~ 11553522 n 0000 ~ 11553634 n 0000 ~ 11686503 n 0000 ~ 11686780 n 0000 ~ 11686912 n 0000 ~ 11687071 n 0000 ~ 13083023 n 0000 ~ 13083306 n 0000 ~ 13083586 n 0000 %p 13086908 n 0000 ~ 13100156 n 0000 ~ 13122985 n 0000 ~ 13123681 n 0000 ~ 13124654 n 0000 -c 13155899 n 0000 ~ 13179056 n 0000 -c 13521616 n 0000 -c 13534608 n 0000 -c 13537429 n 0000 -c 14215908 n 0000 -c 14979730 n 0000 -c 15068436 n 0000 -c 00055871 v 0000 -c 00134136 v 0000 -c 00259560 v 0000 -c 00302464 v 0000 -c 00396325 v 0000 -c 01608122 v 0000 | (botany) a living organism lacking the power of locomotion -00019046 03 n 01 native 0 001 @ 00004475 n 0000 | indigenous plants and animals -00019128 03 n 01 natural_object 0 022 @ 00003553 n 0000 ! 00021939 n 0101 ~ 02312744 n 0000 ~ 05216365 n 0000 ~ 05217859 n 0000 ~ 09208496 n 0000 ~ 09222406 n 0000 ~ 09224911 n 0000 ~ 09236766 n 0000 ~ 09239740 n 0000 ~ 09252586 n 0000 ~ 09252970 n 0000 ~ 09257949 n 0000 ~ 09277686 n 0000 ~ 09349797 n 0000 ~ 09369169 n 0000 ~ 09403211 n 0000 ~ 09416076 n 0000 ~ 09421425 n 0000 ~ 09454412 n 0000 ~ 09466280 n 0000 ~ 13086908 n 0000 | an object occurring naturally; not made by man -00019613 03 n 01 substance 0 019 @ 00020827 n 0000 @ 13809207 n 0000 + 00625393 a 0101 ~ 05263850 n 0000 ~ 05432736 n 0000 ~ 14580752 n 0000 ~ 14580897 n 0000 ~ 14583228 n 0000 ~ 14586258 n 0000 ~ 14619225 n 0000 ~ 14622893 n 0000 ~ 14723079 n 0000 ~ 14738892 n 0000 ~ 14840755 n 0000 ~ 14899152 n 0000 ~ 14899530 n 0000 ~ 14939900 n 0000 ~ 15093735 n 0000 ~ 15110096 n 0000 | the real physical matter of which a person or thing consists; "DNA is the substance of our genes" -00020090 03 n 01 substance 1 032 @ 00020827 n 0000 ~ 00021265 n 0000 ~ 00021734 n 0000 ~ 14582870 n 0000 ~ 14584260 n 0000 ~ 14584390 n 0000 ~ 14584502 n 0000 ~ 14584658 n 0000 ~ 14590975 n 0000 ~ 14616939 n 0000 ~ 14691822 n 0000 ~ 14710024 n 0000 ~ 14724436 n 0000 ~ 14738752 n 0000 ~ 14778436 n 0000 ~ 14793812 n 0000 ~ 14834714 n 0000 ~ 14873056 n 0000 ~ 14875077 n 0000 ~ 14890659 n 0000 ~ 14908683 n 0000 ~ 14919272 n 0000 ~ 14925198 n 0000 ~ 14934031 n 0000 ~ 15003797 n 0000 ~ 15029646 n 0000 ~ 15032376 n 0000 ~ 15032661 n 0000 ~ 15037339 n 0000 ~ 15110307 n 0000 ~ 15110796 n 0000 ~ 15112086 n 0000 | a particular kind or species of matter with uniform properties; "shigella is one of the most toxic substances known to man" -00020827 03 n 01 matter 0 016 @ 00001930 n 0000 ~ 00019613 n 0000 ~ 00020090 n 0000 ~ 09428967 n 0000 ~ 14582025 n 0000 ~ 14582220 n 0000 ~ 14582535 n 0000 ~ 14583573 n 0000 ~ 14939445 n 0000 ~ 14956661 n 0000 ~ 14981183 n 0000 ~ 15004501 n 0000 ~ 15046900 n 0000 ~ 15047849 n 0000 ~ 15109745 n 0000 ~ 15110956 n 0000 | that which has mass and occupies space; "physicists study both the nature of matter and the forces which govern it" -00021265 03 n 02 food 0 nutrient 0 019 @ 00020090 n 0000 + 02557719 a 0204 + 01204191 v 0201 ~ 01464844 n 0000 %p 07555863 n 0000 ~ 07556406 n 0000 ~ 07556637 n 0000 ~ 07560652 n 0000 ~ 07566340 n 0000 ~ 07570720 n 0000 ~ 07572353 n 0000 ~ 07800091 n 0000 ~ 07860629 n 0000 ~ 07881800 n 0000 ~ 07935504 n 0000 ~ 07938313 n 0000 ~ 14582716 n 0000 ~ 14583400 n 0000 ~ 14899328 n 0000 | any substance that can be metabolized by an animal to give energy and build tissue -00021734 03 n 01 nutrient 1 002 @ 00020090 n 0000 ~ 07935504 n 0000 | any substance (such as a chemical element or inorganic compound) that can be taken in by a green plant and used in organic synthesis -00021939 03 n 02 artifact 0 artefact 0 049 @ 00003553 n 0000 + 02986740 a 0202 + 02986740 a 0101 ! 00019128 n 0101 ~ 00022903 n 0000 ~ 00585406 n 0000 ~ 02701393 n 0000 ~ 02707036 n 0000 ~ 02724026 n 0000 ~ 02852523 n 0000 ~ 02928841 n 0000 ~ 03076708 n 0000 ~ 03089348 n 0000 ~ 03122748 n 0000 ~ 03129123 n 0000 ~ 03168364 n 0000 ~ 03169390 n 0000 ~ 03280064 n 0000 ~ 03302121 n 0000 ~ 03307981 n 0000 ~ 03309808 n 0000 ~ 03315023 n 0000 ~ 03354613 n 0000 ~ 03364340 n 0000 ~ 03573282 n 0000 ~ 03575240 n 0000 ~ 03650173 n 0000 ~ 03655838 n 0000 ~ 03670849 n 0000 ~ 03721797 n 0000 ~ 03803911 n 0000 ~ 03848729 n 0000 ~ 03873064 n 0000 ~ 03964744 n 0000 ~ 04058921 n 0000 ~ 04083468 n 0000 ~ 04188643 n 0000 ~ 04274530 n 0000 ~ 04291511 n 0000 ~ 04292733 n 0000 ~ 04339291 n 0000 ~ 04341686 n 0000 ~ 04362025 n 0000 ~ 04424218 n 0000 ~ 04463983 n 0000 ~ 04564698 n 0000 ~ 04571088 n 0000 ~ 14786479 n 0000 ~ 14977504 n 0000 | a man-made object taken as a whole -00022903 03 n 01 article 0 006 @ 00021939 n 0000 ~ 02745091 n 0000 ~ 02894024 n 0000 ~ 03623448 n 0000 ~ 03832799 n 0000 ~ 04550840 n 0000 | one of a class of artifacts; "an article of clothing" -00023100 03 n 01 psychological_feature 0 004 @ 00002137 n 0000 ~ 00023271 n 0000 ~ 00023773 n 0000 ~ 00029378 n 0000 | a feature of the mental life of a living organism -00023271 03 n 03 cognition 0 knowledge 0 noesis 0 021 @ 00023100 n 0000 + 01780343 a 0303 ~ 05611302 n 0000 ~ 05611822 n 0000 ~ 05612067 n 0000 ~ 05612358 n 0000 ~ 05616246 n 0000 ~ 05644922 n 0000 ~ 05651068 n 0000 ~ 05651242 n 0000 ~ 05667196 n 0000 ~ 05686481 n 0000 ~ 05695554 n 0000 ~ 05701363 n 0000 ~ 05701738 n 0000 ~ 05710020 n 0000 ~ 05726345 n 0000 ~ 05809192 n 0000 ~ 05816287 n 0000 ~ 06156752 n 0000 ~ 06193203 n 0000 | the psychological result of perception and learning and reasoning -00023773 03 n 03 motivation 0 motive 0 need 0 011 @ 00023100 n 0000 + 00324195 a 0202 + 01649999 v 0201 + 02766328 a 0101 + 01649999 v 0101 ~ 09178727 n 0000 ~ 09178821 n 0000 ~ 09180259 n 0000 ~ 09180431 n 0000 ~ 09183693 n 0000 ~ 09184834 n 0000 | the psychological feature that arouses an organism to action toward a desired goal; the reason for the action; that which gives purpose and direction to behavior; "we did not understand his motivation"; "he acted with the best of motives" -00024264 03 n 01 attribute 0 020 @ 00002137 n 0000 ~ 00024720 n 0000 ~ 00027807 n 0000 ~ 00028270 n 0000 ~ 00028651 n 0000 ~ 04615866 n 0000 ~ 04616059 n 0000 ~ 04616916 n 0000 ~ 04617289 n 0000 ~ 04617441 n 0000 ~ 04617562 n 0000 ~ 04630689 n 0000 ~ 04631298 n 0000 ~ 04691992 n 0000 ~ 04723286 n 0000 ~ 04723436 n 0000 ~ 04723816 n 0000 ~ 04916342 n 0000 ~ 04921011 n 0000 ~ 05134353 n 0000 | an abstraction belonging to or characteristic of an entity -00024720 03 n 01 state 0 072 @ 00024264 n 0000 ~ 00026192 n 0000 ~ 05640433 n 0000 ~ 13920012 n 0000 ~ 13920169 n 0000 ~ 13920322 n 0000 ~ 13920429 n 0000 ~ 13920835 n 0000 ~ 13924069 n 0000 ~ 13924196 n 0000 ~ 13926451 n 0000 ~ 13927383 n 0000 ~ 13928388 n 0000 ~ 13928668 n 0000 ~ 13928943 n 0000 ~ 13932045 n 0000 ~ 13932213 n 0000 ~ 13939353 n 0000 ~ 13939734 n 0000 ~ 13939892 n 0000 ~ 13945102 n 0000 ~ 13945919 n 0000 ~ 13954253 n 0000 ~ 13959818 n 0000 ~ 13962498 n 0000 ~ 13968092 n 0000 ~ 13968308 n 0000 ~ 13968547 n 0000 ~ 13972797 n 0000 ~ 13980288 n 0000 ~ 13980845 n 0000 ~ 13983147 n 0000 ~ 13991823 n 0000 ~ 14000403 n 0000 ~ 14001348 n 0000 ~ 14004317 n 0000 ~ 14006179 n 0000 ~ 14006821 n 0000 ~ 14006945 n 0000 ~ 14010148 n 0000 ~ 14015731 n 0000 ~ 14030820 n 0000 ~ 14031108 n 0000 ~ 14033917 n 0000 ~ 14270016 n 0000 ~ 14315071 n 0000 ~ 14414294 n 0000 ~ 14418395 n 0000 ~ 14424780 n 0000 ~ 14425974 n 0000 ~ 14458181 n 0000 ~ 14458593 n 0000 ~ 14458943 n 0000 ~ 14459185 n 0000 ~ 14459422 n 0000 ~ 14460565 n 0000 ~ 14462666 n 0000 ~ 14479320 n 0000 ~ 14479488 n 0000 ~ 14490110 n 0000 ~ 14562960 n 0000 ~ 14564056 n 0000 ~ 14564165 n 0000 ~ 14568762 n 0000 ~ 14569337 n 0000 ~ 14569508 n 0000 ~ 14569683 n 0000 ~ 14569844 n 0000 ~ 14570091 n 0000 ~ 14570330 n 0000 ~ 14578792 n 0000 ~ 14580476 n 0000 | the way something is with respect to its main attributes; "the current state of knowledge"; "his state of health"; "in a weak financial state" -00026192 03 n 01 feeling 0 043 @ 00024720 n 0000 + 01771535 v 0101 ~ 07479926 n 0000 ~ 07480068 n 0000 ~ 07480356 n 0000 ~ 07480521 n 0000 ~ 07480666 n 0000 ~ 07480790 n 0000 ~ 07480896 n 0000 ~ 07481951 n 0000 ~ 07482521 n 0000 ~ 07483305 n 0000 ~ 07483622 n 0000 ~ 07484265 n 0000 ~ 07487695 n 0000 ~ 07490713 n 0000 ~ 07494363 n 0000 ~ 07494972 n 0000 ~ 07497473 n 0000 ~ 07501545 n 0000 ~ 07504343 n 0000 ~ 07504711 n 0000 ~ 07505538 n 0000 ~ 07506569 n 0000 ~ 07508486 n 0000 ~ 07509131 n 0000 ~ 07509572 n 0000 ~ 07509827 n 0000 ~ 07510923 n 0000 ~ 07511906 n 0000 ~ 07512147 n 0000 ~ 07512465 n 0000 ~ 07513508 n 0000 ~ 07514968 n 0000 ~ 07526182 n 0000 ~ 07526757 n 0000 ~ 07532440 n 0000 ~ 07541053 n 0000 ~ 07541923 n 0000 ~ 07544647 n 0000 ~ 07551052 n 0000 ~ 07553301 n 0000 ~ 07555014 n 0000 | the experiencing of affective and emotional states; "she had a feeling of euphoria"; "he had terrible feelings of guilt"; "I disliked him and the feeling was mutual" -00027167 03 n 01 location 0 032 @ 00002684 n 0000 #p 00028651 n 0000 + 02694933 v 0102 + 02333689 v 0101 + 02286204 v 0101 + 00413876 v 0102 ~ 08489497 n 0000 ~ 08489627 n 0000 ~ 08489765 n 0000 ~ 08489890 n 0000 ~ 08490039 n 0000 ~ 08490199 n 0000 ~ 08490402 n 0000 ~ 08500433 n 0000 ~ 08509111 n 0000 ~ 08561081 n 0000 ~ 08561230 n 0000 ~ 08561351 n 0000 ~ 08561462 n 0000 ~ 08561583 n 0000 ~ 08561714 n 0000 ~ 08561835 n 0000 ~ 08561946 n 0000 ~ 08562067 n 0000 ~ 08593262 n 0000 ~ 08620061 n 0000 ~ 08630039 n 0000 ~ 08630985 n 0000 ~ 08683383 n 0000 ~ 08795880 n 0000 ~ 09386842 n 0000 ~ 13910384 n 0000 | a point or extent in space -00027807 03 n 02 shape 0 form 0 017 @ 00024264 n 0000 ~ 13860793 n 0000 ~ 13861050 n 0000 ~ 13862282 n 0000 ~ 13862644 n 0000 ~ 13862780 n 0000 ~ 13863771 n 0000 ~ 13864763 n 0000 ~ 13865483 n 0000 ~ 13867276 n 0000 ~ 13867492 n 0000 ~ 13870805 n 0000 ~ 13873917 n 0000 ~ 13878951 n 0000 ~ 13879634 n 0000 ~ 13900422 n 0000 ~ 13900760 n 0000 | the spatial arrangement of something as distinct from its substance; "geometry is the mathematical science of shape" -00028270 03 n 01 time 0 014 @ 00024264 n 0000 ~ 15116283 n 0000 ~ 15116532 n 0000 ~ 15116724 n 0000 ~ 15116910 n 0000 ~ 15117246 n 0000 ~ 15119536 n 0000 ~ 15120823 n 0000 ~ 15121625 n 0000 ~ 15122011 n 0000 ~ 15123754 n 0000 ~ 15130205 n 0000 ~ 15133488 n 0000 ~ 15243976 n 0000 | the continuum of experience in which events pass from the future through the present to the past -00028651 03 n 02 space 0 infinite 0 009 @ 00024264 n 0000 + 02841066 a 0102 + 02841066 a 0101 %p 00027167 n 0000 ~ 00029007 n 0000 ~ 00029114 n 0000 ~ 08001685 n 0000 ~ 08500433 n 0000 %p 08502171 n 0000 | the unlimited expanse in which everything is located; "they tested his ability to locate objects in space"; "the boundless regions of the infinite" -00029007 03 n 01 absolute_space 0 001 @ 00028651 n 0000 | physical space independent of what occupies it -00029114 03 n 01 phase_space 0 003 @ 00028651 n 0000 ;c 06090869 n 0000 ~ 06246361 n 0000 | (physics) an ideal space in which the coordinate dimensions represent the variables that are required to describe a system or substance; "a multidimensional phase space" -00029378 03 n 01 event 0 012 @ 00023100 n 0000 ~ 00030358 n 0000 ~ 01080366 n 0000 ~ 07283364 n 0000 ~ 07283473 n 0000 ~ 07283608 n 0000 ~ 07288639 n 0000 ~ 07288801 n 0000 ~ 07312829 n 0000 ~ 07322769 n 0000 ~i 07478531 n 0000 ~ 07479628 n 0000 | something that happens at a given place and time -00029677 03 n 02 process 0 physical_process 0 025 @ 00001930 n 0000 ~ 00034213 n 0000 ~ 13445972 n 0000 ~ 13455906 n 0000 ~ 13458571 n 0000 ~ 13460299 n 0000 ~ 13464820 n 0000 ~ 13471206 n 0000 ~ 13474495 n 0000 ~ 13477462 n 0000 ~ 13493998 n 0000 ~ 13497135 n 0000 ~ 13497928 n 0000 ~ 13503226 n 0000 ~ 13503908 n 0000 ~ 13504173 n 0000 ~ 13518963 n 0000 ~ 13525549 n 0000 ~ 13526110 n 0000 ~ 13536794 n 0000 ~ 13541167 n 0000 ~ 13551617 n 0000 ~ 13554343 n 0000 ~ 13555446 n 0000 ~ 13572324 n 0000 | a sustained phenomenon or one marked by gradual changes through a series of states; "events now in process"; "the process of calcification begins later for boys than for girls" -00030358 03 n 04 act 0 deed 0 human_action 0 human_activity 0 044 @ 00029378 n 0000 + 01649999 v 0102 + 01643657 v 0102 + 02367363 v 0101 ~ 00037396 n 0000 ~ 00041899 n 0000 ~ 00042311 n 0000 ~ 00042541 n 0000 ~ 00042757 n 0000 ~ 00043195 n 0000 ~ 00043609 n 0000 ~ 00044150 n 0000 ~ 00044455 n 0000 ~ 00044673 n 0000 ~ 00044900 n 0000 ~ 00045114 n 0000 ~ 00045250 n 0000 ~ 00045907 n 0000 ~ 00046177 n 0000 ~ 00046522 n 0000 ~ 00066216 n 0000 ~ 00070363 n 0000 ~ 00070641 n 0000 ~ 00083260 n 0000 ~ 00203342 n 0000 ~ 00205891 n 0000 ~ 00392335 n 0000 ~ 00407535 n 0000 ~ 00809074 n 0000 ~ 00830257 n 0000 ~ 00874067 n 0000 ~ 00912960 n 0000 ~ 01053617 n 0000 ~ 01053920 n 0000 ~ 01062583 n 0000 ~ 01073995 n 0000 ~ 01076046 n 0000 ~ 01080366 n 0000 ~ 01083077 n 0000 ~ 01195584 n 0000 ~ 01252124 n 0000 ~ 01266491 n 0000 ~ 06252138 n 0000 ~ 07160883 n 0000 | something that people do or cause to happen -00031264 03 n 02 group 0 grouping 0 031 @ 00002137 n 0000 + 01089878 v 0101 + 00656576 v 0101 ~ 02472987 n 0000 ~ 07938773 n 0000 ~ 07939159 n 0000 ~ 07940448 n 0000 ~ 07941170 n 0000 ~ 07941729 n 0000 ~ 07942152 n 0000 ~ 07950920 n 0000 ~ 07951464 n 0000 ~ 07959393 n 0000 ~ 07959659 n 0000 ~ 07967382 n 0000 ~ 07967982 n 0000 ~ 07990377 n 0000 ~ 07996149 n 0000 ~ 08001083 n 0000 ~ 08152657 n 0000 ~ 08160276 n 0000 ~ 08178741 n 0000 ~ 08180190 n 0000 ~ 08306665 n 0000 ~ 08330514 n 0000 ~ 08435388 n 0000 ~ 08458504 n 0000 ~i 09292751 n 0000 ~ 14584110 n 0000 ~ 14624743 n 0000 ~ 14904661 n 0000 | any number of entities (members) considered as a unit -00031921 03 n 01 relation 0 032 @ 00002137 n 0000 + 13928388 n 0101 + 13812607 n 0103 + 13780719 n 0101 + 02724417 v 0101 + 00713167 v 0103 ~ 00032613 n 0000 ~ 00032823 n 0000 ~ 05074774 n 0000 ~ 13240514 n 0000 ~ 13780606 n 0000 ~ 13780719 n 0000 ~ 13781164 n 0000 ~ 13782769 n 0000 ~ 13783038 n 0000 ~ 13783581 n 0000 ~ 13790712 n 0000 ~ 13791389 n 0000 ~ 13794226 n 0000 ~ 13797142 n 0000 ~ 13809207 n 0000 ~ 13811410 n 0000 ~ 13812607 n 0000 ~ 13815152 n 0000 ~ 13827205 n 0000 ~ 13836841 n 0000 ~ 13841213 n 0000 ~ 13844212 n 0000 ~ 13844690 n 0000 ~ 13853808 n 0000 ~ 13854649 n 0000 ~ 13859043 n 0000 | an abstraction belonging to or characteristic of two entities or parts together -00032613 03 n 01 possession 0 008 @ 00031921 n 0000 ~ 13244109 n 0000 ~ 13252853 n 0000 ~ 13252973 n 0000 ~ 13329489 n 0000 ~ 13329641 n 0000 ~ 13370448 n 0000 ~ 13396054 n 0000 | anything owned or possessed -00032823 03 n 01 social_relation 0 005 @ 00031921 n 0000 ~ 13780449 n 0000 ~ 13837439 n 0000 ~ 13840719 n 0000 ~ 13840958 n 0000 | a relation between living organisms (especially between people) -00033020 03 n 01 communication 0 027 @ 00002137 n 0000 + 00496670 a 0101 + 02231661 v 0103 + 01030678 v 0101 + 00760402 v 0102 + 01070102 v 0101 + 00742320 v 0101 + 00740577 v 0101 ~ 01102436 n 0000 ~ 06253690 n 0000 ~ 06282383 n 0000 ~ 06282651 n 0000 ~ 06349220 n 0000 ~ 06598915 n 0000 ~ 06600421 n 0000 ~ 06791372 n 0000 ~ 06793231 n 0000 ~ 06797169 n 0000 ~ 06873252 n 0000 ~ 06887726 n 0000 ~ 07066659 n 0000 ~ 07082025 n 0000 ~ 07109019 n 0000 ~ 07110615 n 0000 ~ 07255791 n 0000 ~ 07277697 n 0000 ~ 13403331 n 0000 | something that is communicated by or to or between people or groups -00033615 03 n 03 measure 0 quantity 0 amount 0 026 @ 00002137 n 0000 + 02645007 v 0305 + 00681429 v 0101 + 00489837 v 0102 + 00647094 v 0101 = 02295998 a 0000 = 02297166 a 0000 ~ 05091770 n 0000 ~ 05855517 n 0000 ~ 13413493 n 0000 ~ 13575869 n 0000 ~ 13576101 n 0000 ~ 13576355 n 0000 ~ 13576982 n 0000 ~ 13577171 n 0000 ~ 13579829 n 0000 ~ 13579933 n 0000 ~ 13599547 n 0000 ~ 13731530 n 0000 ~ 13779032 n 0000 ~ 13779244 n 0000 ~ 13780180 n 0000 ~ 15154774 n 0000 ~ 15180528 n 0000 ~ 15256915 n 0000 ~ 15269513 n 0000 | how much there is or how many there are of something that you can quantify -00034213 03 n 01 phenomenon 0 008 @ 00029677 n 0000 ~ 11408559 n 0000 ~ 11408733 n 0000 ~ 11408914 n 0000 ~ 11410625 n 0000 ~ 11418138 n 0000 ~ 11418460 n 0000 ~ 11529295 n 0000 | any state or process known through the senses rather than by intuition or reasoning -00034479 04 n 01 thing 0 001 @ 00037396 n 0000 | an action; "how could you do such a thing?" -00034574 04 n 02 kindness 0 benignity 0 008 @ 00037396 n 0000 + 01372049 a 0101 ~ 01226679 n 0000 ~ 01226837 n 0000 ~ 01226941 n 0000 ~ 01227190 n 0000 ~ 01227805 n 0000 ~ 01229793 n 0000 | a kind act -00034777 04 n 02 abdominoplasty 0 tummy_tuck 0 001 @ 00690501 n 0000 | cosmetic surgery of the abdomen to remove wrinkles and tighten the skin over the stomach -00034939 04 n 01 abort 0 001 @ 00209943 n 0000 | the act of terminating a project or procedure before it is completed; "I wasted a year of my life working on an abort"; "he sent a short message requesting an abort due to extreme winds in the area" -00035189 04 n 02 accomplishment 0 achievement 0 023 @ 00037396 n 0000 + 02526085 v 0201 + 02526085 v 0102 + 01640855 v 0102 ~ 00036299 n 0000 ~ 00036580 n 0000 ~ 00036762 n 0000 ~ 00037006 n 0000 ~ 00037090 n 0000 ~ 00037200 n 0000 ~ 00047106 n 0000 ~ 00047745 n 0000 ~ 00047941 n 0000 ~ 00048051 n 0000 ~ 00048225 n 0000 ~ 00061014 n 0000 ~ 00062806 n 0000 ~ 00095502 n 0000 ~ 00127286 n 0000 ~ 00623052 n 0000 ~ 01263582 n 0000 ~ 01263711 n 0000 ~ 01263924 n 0000 | the action of accomplishing something -00035697 04 n 01 agon 0 005 @ 00428000 n 0000 ~ 00516381 n 0000 ~ 00516559 n 0000 ~ 00516720 n 0000 ~ 00516900 n 0000 | a festivity in ancient Greece at which competitors contended for prizes -00035891 04 n 01 alienation 0 001 @ 00037396 n 0000 | the action of alienating; the action of causing to become unfriendly; "his behavior alienated the other students" -00036061 04 n 01 application 0 001 @ 00037396 n 0000 | the action of putting something into operation; "the application of maximum thrust"; "massage has far-reaching medical applications"; "the application of indexes to tables of data" -00036299 04 n 02 beachhead 0 foothold 0 001 @ 00035189 n 0000 | an initial accomplishment that opens the way for further developments; "the town became a beachhead in the campaign to ban smoking outdoors"; "they are presently attempting to gain a foothold in the Russian market" -00036580 04 n 01 cakewalk 1 002 @ 00035189 n 0000 ;u 07105475 n 0000 | an easy accomplishment; "winning the tournament was a cakewalk for him"; "invading Iraq won't be a cakewalk" -00036762 04 n 03 feat 0 effort 2 exploit 0 006 @ 00035189 n 0000 ~ 00043116 n 0000 ~ 00043902 n 0000 ~ 00045646 n 0000 ~ 00046344 n 0000 ~ 00047018 n 0000 | a notable achievement; "he performed a great feat"; "the book was her finest effort" -00037006 04 n 01 masterpiece 0 001 @ 00035189 n 0000 | an outstanding achievement -00037090 04 n 01 masterstroke 0 001 @ 00035189 n 0000 | an achievement demonstrating great skill or mastery -00037200 04 n 01 credit 1 001 @ 00035189 n 0000 | used in the phrase `to your credit' in order to indicate an achievement deserving praise; "she already had several performances to her credit"; -00037396 04 n 01 action 2 035 @ 00030358 n 0000 + 02367363 v 0101 ~ 00034479 n 0000 ~ 00034574 n 0000 ~ 00035189 n 0000 ~ 00035891 n 0000 ~ 00036061 n 0000 ~ 00038175 n 0000 ~ 00038262 n 0000 ~ 00039021 n 0000 ~ 00039916 n 0000 ~ 00041188 n 0000 ~ 00041468 n 0000 ~ 00048374 n 0000 ~ 00097504 n 0000 ~ 00161243 n 0000 ~ 00191142 n 0000 ~ 00192613 n 0000 ~ 00201923 n 0000 ~ 00202284 n 0000 ~ 00279534 n 0000 ~ 00323923 n 0000 ~ 00714477 n 0000 ~ 00744862 n 0000 ~ 00964569 n 0000 ~ 01159461 n 0000 ~ 01217859 n 0000 ~ 01227908 n 0000 ~ 01228102 n 0000 ~ 01264050 n 0000 ~ 01264243 n 0000 ~ 01265475 n 0000 ~ 01265921 n 0000 ~ 01267135 n 0000 ~ 01267808 n 0000 | something done (usually as opposed to something said); "there were stories of murders and other unnatural actions" -00038175 04 n 01 res_gestae 0 002 @ 00037396 n 0000 ;c 06962600 n 0000 | things done -00038262 04 n 02 course 0 course_of_action 0 004 @ 00037396 n 0000 ~ 00038573 n 0000 ~ 00038863 n 0000 ~ 00415676 n 0000 | a mode of action; "if you persist in that course you will surely fail"; "once a nation is embarked on a course of action it becomes extremely difficult for any retraction to take place" -00038573 04 n 01 blind_alley 0 002 @ 00038262 n 0000 ;u 07105475 n 0000 | (figurative) a course of action that is unproductive and offers no hope of improvement; "all the clues led the police into blind alleys"; "so far every road that we've been down has turned out to be a blind alley" -00038863 04 n 01 collision_course 0 001 @ 00038262 n 0000 | a course of action (following a given idea) that will lead to conflict if it continues unabated -00039021 04 n 01 interaction 0 006 @ 00037396 n 0000 + 01946439 a 0101 + 02376958 v 0101 ~ 00039211 n 0000 ~ 00039297 n 0000 ~ 00040152 n 0000 | a mutual or reciprocal action; interacting -00039211 04 n 01 interplay 0 001 @ 00039021 n 0000 | reciprocal action and reaction -00039297 04 n 01 contact 2 005 @ 00039021 n 0000 + 00743344 v 0104 ~ 00039545 n 0000 ~ 00039740 n 0000 ~ 00039990 n 0000 | close interaction; "they kept in daily contact"; "they claimed that they had been in contact with extraterrestrial beings" -00039545 04 n 01 brush 4 001 @ 00039297 n 0000 | contact with something dangerous or undesirable; "I had a brush with danger on my way to work"; "he tried to avoid any brushes with the police" -00039740 04 n 01 eye_contact 0 001 @ 00039297 n 0000 | contact that occurs when two people look directly at each other; "a teacher should make eye contact with the students" -00039916 04 n 01 fetch 0 001 @ 00037396 n 0000 | the action of fetching -00039990 04 n 01 placement 1 001 @ 00039297 n 0000 | contact established between applicants and prospective employees; "the agency provided placement services" -00040152 04 n 03 interchange 1 reciprocation 2 give-and-take 0 006 @ 00039021 n 0000 + 02372326 v 0201 + 02257370 v 0103 ~ 00040420 n 0000 ~ 00040545 n 0000 ~ 00040804 n 0000 | mutual interaction; the activity of reciprocating or exchanging (especially information) -00040420 04 n 01 reciprocity 0 002 @ 00040152 n 0000 + 01945550 a 0101 | mutual exchange of commercial or other privileges -00040545 04 n 02 cross-fertilization 0 cross-fertilisation 0 001 @ 00040152 n 0000 | interchange between different cultures or different ways of thinking that is mutually productive and beneficial; "the cross-fertilization of science and the creative arts" -00040804 04 n 02 dealings 2 traffic 2 003 @ 00040152 n 0000 + 02370987 v 0101 ~ 00040962 n 0000 | social or verbal interchange (usually followed by `with') -00040962 04 n 01 relation 0 005 @ 00040804 n 0000 ;u 06295235 n 0000 + 13928668 n 0101 + 02724417 v 0101 + 02458103 v 0101 | (usually plural) mutual dealings or connections among persons or groups; "international relations" -00041188 04 n 01 playing 0 010 @ 00037396 n 0000 + 02418686 v 0101 + 02418421 v 0101 + 01079480 v 0103 + 01072949 v 0101 + 00013328 v 0101 ~ 00041740 n 0000 ~ 00126886 n 0000 ~ 00127021 n 0000 ~ 00127151 n 0000 | the action of taking part in a game or sport or other recreation -00041468 04 n 02 play 7 swordplay 0 002 @ 00037396 n 0000 ~ 01171644 n 0000 | the act using a sword (or other weapon) vigorously and skillfully -00041614 04 n 01 boondoggle 0 002 @ 00742645 n 0000 + 02447247 v 0101 | work of little or no value done merely to look busy -00041740 04 n 01 bowling 1 004 @ 00041188 n 0000 %p 00104409 n 0000 %p 00476788 n 0000 -c 01887324 v 0000 | the playing of a game of tenpins or duckpins etc -00041899 04 n 02 acquiring 0 getting 0 013 @ 00030358 n 0000 + 02208265 v 0201 + 02210855 v 0201 + 00094460 v 0204 + 02210855 v 0102 ~ 00077419 n 0000 ~ 00077856 n 0000 ~ 00077981 n 0000 ~ 00083975 n 0000 ~ 00086809 n 0000 ~ 00088481 n 0000 ~ 00090253 n 0000 ~ 00319176 n 0000 | the act of acquiring something; "I envied his talent for acquiring"; "he's much more interested in the getting than in the giving" -00042311 04 n 02 causing 0 causation 0 008 @ 00030358 n 0000 + 01645601 v 0201 + 00770437 v 0203 ~ 00121166 n 0000 ~ 00156390 n 0000 ~ 00156812 n 0000 ~ 00157081 n 0000 ~ 00159177 n 0000 | the act of causing something to happen -00042541 04 n 02 delivery 2 obstetrical_delivery 0 007 @ 00030358 n 0000 #p 13448334 n 0000 + 00056930 v 0102 ~ 00185438 n 0000 ~ 00185778 n 0000 ~ 00186251 n 0000 ~ 00186549 n 0000 | the act of delivering a child -00042757 04 n 04 departure 0 going 1 going_away 0 leaving 0 015 @ 00030358 n 0000 + 01848718 v 0201 + 01848718 v 0103 + 02014165 v 0101 + 02008396 v 0101 ~ 00053020 n 0000 ~ 00053097 n 0000 ~ 00053405 n 0000 ~ 00053609 n 0000 ~ 00053913 n 0000 ~ 00057657 n 0000 ~ 00058337 n 0000 ~ 00058519 n 0000 ~ 00061290 n 0000 ~ 00306102 n 0000 | the act of departing -00043116 04 n 01 derring-do 0 001 @ 00036762 n 0000 | brave and heroic feats -00043195 04 n 03 discovery 0 find 0 uncovering 0 018 @ 00030358 n 0000 + 01637982 v 0202 + 00721437 v 0202 + 02285629 v 0201 + 02154508 v 0203 + 02248465 v 0201 + 02286687 v 010a + 02154508 v 0104 + 02128066 v 0101 + 01637982 v 0101 + 00598954 v 0108 + 00721437 v 0101 ~ 00150932 n 0000 ~ 00151087 n 0000 ~ 00151314 n 0000 ~ 00151409 n 0000 ~ 00151497 n 0000 ~ 00151914 n 0000 | the act of discovering something -00043609 04 n 02 disposal 0 disposition 0 011 @ 00030358 n 0000 + 02354922 v 0201 + 02222318 v 0208 + 02222318 v 0108 ~ 00090393 n 0000 ~ 00090610 n 0000 ~ 00090779 n 0000 ~ 00091013 n 0000 ~ 00091670 n 0000 ~ 00091893 n 0000 ~ 01093666 n 0000 | the act or means of getting rid of something -00043902 04 n 01 hit 3 005 @ 00036762 n 0000 ;c 00471613 n 0000 + 01405044 v 0101 + 01111816 v 0102 ~ 00131090 n 0000 | (baseball) a successful stroke in an athletic contest (especially in baseball); "he came all the way around on Williams' hit" -00044150 04 n 02 implementation 0 effectuation 0 008 @ 00030358 n 0000 + 01642924 v 0202 + 02408965 v 0101 ~ 00097244 n 0000 ~ 00097348 n 0000 ~ 00102927 n 0000 ~ 00172710 n 0000 ~ 00411048 n 0000 | the act of implementing (providing a practical means for accomplishing something); carrying into effect -00044455 04 n 03 egress 1 egression 0 emergence 0 006 @ 00030358 n 0000 + 00423971 v 0301 + 00528990 v 0206 + 00528990 v 0106 ~ 00061171 n 0000 ~ 01253060 n 0000 | the act of coming (or going) out; becoming apparent -00044673 04 n 03 equalization 0 equalisation 0 leveling 0 007 @ 00030358 n 0000 + 01115411 v 0202 + 00417001 v 0204 + 01115411 v 0101 + 00417001 v 0103 ~ 00185104 n 0000 ~ 00185307 n 0000 | the act of making equal or uniform -00044900 04 n 03 exhumation 0 disinterment 0 digging_up 0 003 @ 00030358 n 0000 + 02457058 v 0201 + 02457058 v 0102 | the act of digging something out of the ground (especially a corpse) where it has been buried -00045114 04 n 02 mitzvah 0 mitsvah 0 002 @ 00030358 n 0000 ;c 06232880 n 0000 | (Judaism) a good deed performed out of religious duty -00045250 04 n 02 propulsion 0 actuation 0 018 @ 00030358 n 0000 + 01643657 v 0202 + 01649999 v 0103 + 01511706 v 0101 ~ 00103140 n 0000 ~ 00103291 n 0000 ~ 00103834 n 0000 ~ 00104409 n 0000 ~ 00104539 n 0000 ~ 00112312 n 0000 ~ 00114431 n 0000 ~ 00116376 n 0000 ~ 00116687 n 0000 ~ 00119568 n 0000 ~ 00120804 n 0000 ~ 00122530 n 0000 ~ 00122661 n 0000 ~ 00478647 n 0000 | the act of propelling -00045646 04 n 02 rally 1 rallying 1 003 @ 00036762 n 0000 + 01097960 v 0204 + 01381549 v 0102 | the feat of mustering strength for a renewed effort; "he singled to start a rally in the 9th inning"; "he feared the rallying of their troops for a counterattack" -00045907 04 n 02 recovery 0 retrieval 0 008 @ 00030358 n 0000 + 02247977 v 0202 + 02247977 v 0101 ~ 00089891 n 0000 ~ 00093354 n 0000 ~ 00093483 n 0000 ~ 00096851 n 0000 ~ 00096969 n 0000 | the act of regaining or saving something lost (or in danger of becoming lost) -00046177 04 n 01 running_away 0 003 @ 00030358 n 0000 ~ 00058608 n 0000 ~ 00058743 n 0000 | the act of leaving (without permission) the place you are expected to be -00046344 04 n 01 stunt 0 004 @ 00036762 n 0000 + 01713348 v 0101 ~ 00190931 n 0000 ~ 00438065 n 0000 | a difficult or unusual or dangerous feat; usually done to gain attention -00046522 04 n 02 touch 0 touching 0 019 @ 00030358 n 0000 + 01206218 v 0201 + 01206849 v 0101 ~ 00124880 n 0000 ~ 00125436 n 0000 ~ 00125629 n 0000 ~ 00135311 n 0000 ~ 00138078 n 0000 ~ 00138221 n 0000 ~ 00138956 n 0000 ~ 00140652 n 0000 ~ 00140900 n 0000 ~ 00141027 n 0000 ~ 00143885 n 0000 ~ 00144445 n 0000 ~ 00144632 n 0000 ~ 00145024 n 0000 ~ 00150591 n 0000 ~ 00150762 n 0000 | the act of putting two things together with no space between them; "at his touch the room filled with lights" -00047018 04 n 01 tour_de_force 0 001 @ 00036762 n 0000 | a masterly or brilliant feat -00047106 04 n 01 performance 3 003 @ 00035189 n 0000 ~ 00047356 n 0000 ~ 00047550 n 0000 | any recognized accomplishment; "they admired his performance under stress"; "when Roger Maris powered four home runs in one game his performance merits awe" -00047356 04 n 01 overachievement 0 003 @ 00047106 n 0000 + 02562235 v 0101 ! 00047550 n 0101 | better than expected performance (better than might have been predicted from intelligence tests) -00047550 04 n 01 underachievement 0 003 @ 00047106 n 0000 + 02562585 v 0101 ! 00047356 n 0101 | poorer than expected performance (poorer than might have been predicted from intelligence tests) -00047745 04 n 02 record 1 track_record 1 001 @ 00035189 n 0000 | the sum of recognized accomplishments; "the lawyer has a good record"; "the track record shows that he will be a good president" -00047941 04 n 02 fait_accompli 0 accomplished_fact 0 001 @ 00035189 n 0000 | an irreversible accomplishment -00048051 04 n 02 going 0 sledding 1 002 @ 00035189 n 0000 + 02617798 v 0101 | advancing toward a goal; "persuading him was easy going"; "the proposal faces tough sledding" -00048225 04 n 02 arrival 0 reaching 0 004 @ 00035189 n 0000 + 02022162 v 0201 ~ 00048656 n 0000 ~ 00048828 n 0000 | accomplishment of an objective -00048374 04 n 01 arrival 1 010 @ 00037396 n 0000 + 02005948 v 0101 ~ 00049003 n 0000 ~ 00050195 n 0000 ~ 00051192 n 0000 ~ 00052052 n 0000 ~ 00052146 n 0000 ~ 00052334 n 0000 ~ 00052500 n 0000 ~ 00141669 n 0000 | the act of arriving at a certain place; "they awaited her arrival" -00048656 04 n 01 attainment 1 003 @ 00048225 n 0000 + 02020590 v 0103 + 02006834 v 0103 | arrival at a new stage; "his attainment of puberty was delayed by malnutrition" -00048828 04 n 02 advent 0 coming 1 002 @ 00048225 n 0000 + 02005948 v 0203 | arrival that has been awaited (especially of something momentous); "the advent of the computer" -00049003 04 n 05 entrance 0 entering 0 entry 0 ingress 0 incoming 0 012 @ 00048374 n 0000 + 02016523 v 0301 + 02016523 v 0201 + 01720660 v 0201 + 02016523 v 0101 ~ 00049344 n 0000 ~ 00049530 n 0000 ~ 00049636 n 0000 ~ 00049789 n 0000 ~ 00050037 n 0000 ~ 00051525 n 0000 ~ 01248191 n 0000 | the act of entering; "she made a grand entrance" -00049344 04 n 01 incursion 1 001 @ 00049003 n 0000 | the act of entering some territory or domain (often in large numbers); "the incursion of television into the American living room" -00049530 04 n 01 intrusion 2 001 @ 00049003 n 0000 | entrance by force or without permission or welcome -00049636 04 n 01 irruption 0 002 @ 00049003 n 0000 + 02018524 v 0102 | a sudden violent entrance; a bursting in; "the recent irruption of bad manners" -00049789 04 n 01 entree 0 001 @ 00049003 n 0000 | the act of entering; "she made a graceful entree into the ballroom" -00049909 04 n 01 entail 0 001 @ 00191142 n 0000 | the act of entailing property; the creation of a fee tail from a fee simple -00050037 04 n 03 registration 0 enrollment 0 enrolment 0 004 @ 00049003 n 0000 + 02471327 v 0304 + 02471327 v 0201 + 02471690 v 0101 | the act of enrolling -00050195 04 n 01 appearance 0 006 @ 00048374 n 0000 + 01721169 v 0101 ! 00053609 n 0101 ~ 00050484 n 0000 ~ 00050693 n 0000 ~ 00050887 n 0000 | the act of appearing in public view; "the rookie made a brief appearance in the first period"; "it was Bernhardt's last appearance in America" -00050484 04 n 01 apparition 0 003 @ 00050195 n 0000 + 00425071 v 0101 + 00422090 v 0101 | an act of appearing or becoming visible unexpectedly; "natives were amazed at the apparition of this white stranger" -00050693 04 n 02 emergence 1 emersion 1 007 @ 00050195 n 0000 + 02625016 v 0202 + 01990694 v 0201 + 00528990 v 0202 + 00426581 v 0201 + 00423971 v 0201 + 00003553 a 0101 | the act of emerging -00050887 04 n 02 reappearance 0 return 7 003 @ 00050195 n 0000 + 00426301 v 0101 ~ 00051077 n 0000 | the act of someone appearing again; "his reappearance as Hamlet has been long awaited" -00051077 04 n 01 comeback 0 001 @ 00050887 n 0000 | return by a celebrity to some previously successful activity -00051192 04 n 02 return 1 homecoming 0 003 @ 00048374 n 0000 + 02004874 v 0101 ~ 00051385 n 0000 | a coming to or returning home; "on his return from Australia we gave him a welcoming party" -00051385 04 n 01 repatriation 0 003 @ 00051192 n 0000 + 02503633 v 0101 + 02502387 v 0101 | the act of returning to the country of origin -00051525 04 n 01 penetration 2 003 @ 00049003 n 0000 ~ 00051712 n 0000 ~ 00051897 n 0000 | the act of entering into or through something; "the penetration of upper management by women" -00051712 04 n 02 interpenetration 0 permeation 0 004 @ 00051525 n 0000 + 01227235 v 0202 + 01229071 v 0201 + 01229071 v 0104 | mutual penetration; diffusion of each through the other -00051897 04 n 01 market_penetration 0 001 @ 00051525 n 0000 | the extent to which a product is recognized and bought by customers in a particular market -00052052 04 n 01 anchorage 0 002 @ 00048374 n 0000 + 01304716 v 0101 | the act of anchoring -00052146 04 n 04 docking 0 moorage 0 dockage 0 tying_up 0 004 @ 00048374 n 0000 + 01305099 v 0201 + 02085742 v 0101 + 01305731 v 0101 | the act of securing an arriving vessel with ropes -00052334 04 n 01 landing 0 005 @ 00048374 n 0000 + 02087156 v 0101 + 01981436 v 0101 ~ 00057748 n 0000 ~ 00058002 n 0000 | the act of coming to land after a voyage -00052500 04 n 01 landing 1 007 @ 00048374 n 0000 + 01981036 v 0101 + 01979901 v 0101 %p 00281752 n 0000 ~ 00305005 n 0000 ~ 00305153 n 0000 ~ 00305980 n 0000 | the act of coming down to the earth (or other surface); "the plane made a smooth landing"; "his landing on his feet was catlike" -00052791 04 n 02 forced_landing 0 emergency_landing 1 002 @ 00305153 n 0000 ~ 00305519 n 0000 | an unscheduled airplane landing that is made under circumstances (engine failure or adverse weather) not under the pilot's control -00053020 04 n 01 breaking_away 0 001 @ 00042757 n 0000 | departing hastily -00053097 04 n 04 farewell 0 leave 0 leave-taking 0 parting 0 007 @ 00042757 n 0000 + 02030158 v 0402 + 02014165 v 0402 + 02015598 v 0204 + 02009433 v 0201 + 00613683 v 0201 ~ 00053525 n 0000 | the act of departing politely; "he disliked long farewells"; "he took his leave"; "parting is such sweet sorrow" -00053405 04 n 01 French_leave 0 001 @ 00042757 n 0000 | an abrupt and unannounced departure (without saying farewell) -00053525 04 n 01 valediction 0 001 @ 00053097 n 0000 | the act of saying farewell -00053609 04 n 02 disappearance 0 disappearing 0 005 @ 00042757 n 0000 + 00426958 v 0201 + 00426958 v 0101 ! 00050195 n 0101 ~ 00053806 n 0000 | the act of leaving secretly or without explanation -00053806 04 n 01 vanishing 0 002 @ 00053609 n 0000 + 02156546 v 0101 | a sudden disappearance from sight -00053913 04 n 01 withdrawal 0 017 @ 00042757 n 0000 + 02380760 v 0102 + 02428487 v 0102 + 01994442 v 0101 + 01511380 v 0102 + 00799383 v 0108 + 00173338 v 0104 + 00495998 v 0104 ~ 00054328 n 0000 ~ 00054483 n 0000 ~ 00054652 n 0000 ~ 00054821 n 0000 ~ 00055227 n 0000 ~ 00055315 n 0000 ~ 00056688 n 0000 ~ 00056912 n 0000 ~ 00057486 n 0000 | the act of withdrawing; "the withdrawal of French troops from Vietnam" -00054328 04 n 02 effacement 0 self-effacement 0 002 @ 00053913 n 0000 + 01800789 v 0101 | withdrawing into the background; making yourself inconspicuous -00054483 04 n 01 retreat 2 002 @ 00053913 n 0000 ! 00282050 n 0104 | the act of withdrawing or going backward (especially to escape something hazardous or unpleasant) -00054652 04 n 02 retirement 1 retreat 1 001 @ 00053913 n 0000 | withdrawal for prayer and study and meditation; "the religious retreat is a form of vacation activity" -00054821 04 n 01 evacuation 1 005 @ 00053913 n 0000 + 01856450 v 0101 + 02014024 v 0101 ~ 00055038 n 0000 ~i 01277938 n 0000 | the act of evacuating; leaving a place in an orderly fashion; especially for protection -00055038 04 n 03 medical_evacuation 0 medevac 0 medivac 0 001 @ 00054821 n 0000 | the evacuation of persons (usually by air transportation) to a place where they can receive medical care -00055227 04 n 01 decampment 0 002 @ 00053913 n 0000 + 02076857 v 0101 | breaking camp -00055315 04 n 03 desertion 0 abandonment 1 defection 0 007 @ 00053913 n 0000 + 02584097 v 0301 + 00614057 v 0201 + 00614057 v 0104 ~ 00055633 n 0000 ~ 00055793 n 0000 ~ 00055932 n 0000 | withdrawing support or help despite allegiance or responsibility; "his abandonment of his wife and children left them penniless" -00055633 04 n 02 abscondment 0 decampment 1 003 @ 00055315 n 0000 + 02073714 v 0204 + 02073714 v 0101 | the act of running away secretly (as to avoid arrest) -00055793 04 n 02 absence_without_leave 0 unauthorized_absence 0 002 @ 00055315 n 0000 ;c 08199025 n 0000 | unauthorized military absence -00055932 04 n 01 deviationism 0 002 @ 00055315 n 0000 + 10010243 n 0101 | ideological defection from the party line (especially from orthodox communism) -00056087 04 n 03 emigration 0 out-migration 0 expatriation 1 003 @ 01123095 n 0000 + 00416399 v 0301 + 00416135 v 0101 | migration from a place (especially migration from your native country in order to settle in another) -00056311 04 n 02 immigration 0 in-migration 0 004 @ 01123095 n 0000 + 00415967 v 0101 + 00413432 v 0101 ~ 00056551 n 0000 | migration into a place (especially migration to a country of which you are not a native in order to settle there) -00056551 04 n 01 aliyah 0 002 @ 00056311 n 0000 ;c 06232880 n 0000 | (Judaism) immigration of Jews to Israel; "students making aliyah" -00056688 04 n 01 pullback 0 003 @ 00053913 n 0000 ;c 08199025 n 0000 + 01994442 v 0106 | (military) the act of pulling back (especially an orderly withdrawal of troops); "the pullback is expected to be over 25,000 troops" -00056912 04 n 01 retreat 0 003 @ 00053913 n 0000 ;c 08199025 n 0000 ~ 00057306 n 0000 | (military) withdrawal of troops to a more favorable position to escape the enemy's superior forces or after a defeat; "the disorderly retreat of French troops" -00057162 04 n 02 standdown 0 stand-down 0 002 @ 01076046 n 0000 ;c 08199025 n 0000 | (military) a temporary stop of offensive military action -00057306 04 n 03 disengagement 0 fallback 0 pullout 0 004 @ 00056912 n 0000 ;c 08199025 n 0000 + 02015168 v 0301 + 01904120 v 0201 | to break off a military action with an enemy -00057486 04 n 02 receding 0 recession 0 005 @ 00053913 n 0000 + 03109261 a 0201 + 00570694 v 0201 + 01994442 v 0105 + 01113806 v 0105 | the act of becoming more distant -00057657 04 n 01 sailing 2 001 @ 00042757 n 0000 | the departure of a vessel from a port -00057748 04 n 01 amphibious_landing 0 003 @ 00052334 n 0000 @ 00952963 n 0000 ;c 08199025 n 0000 | a military action of coordinated land, sea, and air forces organized for an invasion; "MacArthur staged a massive amphibious landing behind enemy lines" -00058002 04 n 03 debarkation 0 disembarkation 0 disembarkment 0 006 @ 00052334 n 0000 + 01979241 v 0301 + 01979241 v 0201 ! 00058337 n 0202 + 01979241 v 0102 ~ 00058247 n 0000 | the act of passengers and crew getting off of a ship or aircraft -00058247 04 n 01 going_ashore 0 001 @ 00058002 n 0000 | debarkation from a boat or ship -00058337 04 n 03 boarding 0 embarkation 0 embarkment 0 003 @ 00042757 n 0000 + 01979462 v 0301 ! 00058002 n 0202 | the act of passengers and crew getting aboard a ship or aircraft -00058519 04 n 01 exit 0 002 @ 00042757 n 0000 + 02015598 v 0101 | the act of going out -00058608 04 n 01 elopement 0 002 @ 00046177 n 0000 + 02074186 v 0101 | the act of running away with a lover (usually to get married) -00058743 04 n 02 escape 0 flight 1 010 @ 00046177 n 0000 + 02075462 v 0201 + 02074677 v 0101 ~ 00059127 n 0000 ~ 00059989 n 0000 ~ 00060201 n 0000 ~ 00060414 n 0000 ~i 00060548 n 0000 ~ 00060747 n 0000 ~i 00060817 n 0000 | the act of escaping physically; "he made his escape from the mental hospital"; "the canary escaped from its cage"; "his flight was an indication of his guilt" -00059127 04 n 01 evasion 0 005 @ 00058743 n 0000 + 02074377 v 0102 ~ 00059376 n 0000 ~ 00059552 n 0000 ~ 00059895 n 0000 | the act of physically escaping from something (an opponent or a pursuer or an unpleasant situation) by some adroit maneuver -00059376 04 n 03 slip 3 elusion 0 eluding 0 004 @ 00059127 n 0000 + 02074377 v 0301 + 02074377 v 0201 + 01888295 v 0102 | the act of avoiding capture (especially by cunning) -00059552 04 n 03 maneuver 1 manoeuvre 1 evasive_action 0 004 @ 00059127 n 0000 ~ 00059728 n 0000 ~ 00170844 n 0000 ~ 00171050 n 0000 | an action aimed at evading an opponent -00059728 04 n 01 clinch 0 002 @ 00059552 n 0000 ;c 00445802 n 0000 | (boxing) the act of one boxer holding onto the other to avoid being hit and to rest momentarily -00059895 04 n 01 dodge 0 002 @ 00059127 n 0000 + 02096494 v 0101 | a quick evasive movement -00059989 04 n 06 break 4 breakout 0 jailbreak 0 gaolbreak 0 prisonbreak 0 prison-breaking 0 003 @ 00058743 n 0000 + 02073233 v 0202 + 02073233 v 0101 | an escape from jail; "the breakout was carefully planned" -00060201 04 n 02 getaway 0 lam 0 003 @ 00058743 n 0000 + 02075049 v 0205 + 02074677 v 0102 | a rapid escape (as by criminals); "the thieves made a clean getaway"; "after the expose he had to take it on the lam" -00060414 04 n 03 exodus 0 hegira 0 hejira 0 001 @ 00058743 n 0000 | a journey by a large group to escape from a hostile environment -00060548 04 n 02 Hegira 1 Hejira 1 001 @i 00058743 n 0000 | the flight of Muhammad from Mecca to Medina in 622 which marked the beginning of the Muslim era; the Muslim calendar begins in that year -00060747 04 n 01 skedaddle 0 001 @ 00058743 n 0000 | a hasty flight -00060817 04 n 02 Underground_Railroad 0 Underground_Railway 0 001 @i 00058743 n 0000 | secret aid to escaping slaves that was provided by abolitionists in the years before the American Civil War -00061014 04 n 05 close_call 0 close_shave 0 squeak 0 squeaker 0 narrow_escape 0 001 @ 00035189 n 0000 | something achieved (or escaped) by a narrow margin -00061171 04 n 01 surfacing 0 002 @ 00044455 n 0000 + 01990281 v 0101 | emerging to the surface and becoming apparent -00061290 04 n 03 dispatch 0 despatch 0 shipment 0 004 @ 00042757 n 0000 + 01950798 v 0303 + 01955127 v 0202 ~ 00061453 n 0000 | the act of sending off something -00061453 04 n 01 reshipment 0 002 @ 00061290 n 0000 + 01497141 v 0101 | the act of shipping again (especially by transferring to another ship) -00061598 04 n 01 consummation 0 006 @ 00211110 n 0000 + 01641751 v 0101 + 01641632 v 0101 ~ 00061917 n 0000 ~ 00062133 n 0000 ~ 00062451 n 0000 | the act of bringing to completion or fruition -00061792 04 n 01 consummation 1 002 @ 00211110 n 0000 + 01641751 v 0101 | the completion of marriage by sexual intercourse -00061917 04 n 03 realization 2 realisation 2 fruition 0 003 @ 00061598 n 0000 + 01644746 v 0202 + 01644746 v 0101 | something that is made real or concrete; "the victory was the realization of a whole year's work" -00062133 04 n 04 orgasm 0 climax 0 sexual_climax 0 coming 0 004 @ 00061598 n 0000 + 02197360 v 0401 + 02487718 a 0201 ~ 00062331 n 0000 | the moment of most intense pleasure in sexual intercourse -00062331 04 n 01 male_orgasm 0 001 @ 00062133 n 0000 | an orgasm accompanied by the sensation of ejaculation of semen -00062451 04 n 02 fulfillment 0 fulfilment 0 006 @ 00061598 n 0000 + 02671880 v 0203 + 01640855 v 0207 + 02671880 v 0102 + 01640855 v 0106 ~ 00062671 n 0000 | the act of consummating something (a desire or promise etc) -00062671 04 n 03 self-fulfillment 0 self-realization 0 self-realisation 0 001 @ 00062451 n 0000 | the fulfillment of your capacities -00062806 04 n 01 attainment 0 006 @ 00035189 n 0000 + 02526085 v 0103 ~ 00063014 n 0000 ~ 00063652 n 0000 ~ 00065855 n 0000 ~ 00236581 n 0000 | the act of achieving an aim; "the attainment of independence" -00063014 04 n 01 record 0 003 @ 00062806 n 0000 ~ 00063310 n 0000 ~ 00063559 n 0000 | an extreme attainment; the best (or worst) performance ever attested (as in a sport); "he tied the Olympic record"; "coffee production last year broke all previous records"; "Chicago set the homicide record" -00063310 04 n 01 track_record 0 001 @ 00063014 n 0000 | the fastest time ever recorded for a specific distance at a particular racetrack; "the track record for the mile and a half at Belmont is 2 minutes 24 seconds held by Secretariat since 1973" -00063559 04 n 01 world_record 0 001 @ 00063014 n 0000 | the best record in the whole world -00063652 04 n 01 success 0 012 @ 00062806 n 0000 ~ 00064018 n 0000 ~ 00064504 n 0000 ~ 00064789 n 0000 ~ 00065216 n 0000 ~ 00065336 n 0000 ~ 00065418 n 0000 ~ 00065575 n 0000 ~ 00068170 n 0000 ~ 00160532 n 0000 ~ 00186634 n 0000 ~ 00190783 n 0000 | an attainment that is successful; "his success in the marathon was unexpected"; "his new play was a great success" -00064018 04 n 01 winning 0 002 @ 00063652 n 0000 + 02288295 v 0102 | succeeding with great difficulty; "winning is not everything" -00064151 04 n 03 blockbuster 0 megahit 0 smash_hit 0 002 @ 00064504 n 0000 ;u 07105475 n 0000 | an unusually successful hit with widespread popularity and huge sales (especially a movie or play or recording or novel) -00064370 04 n 01 sleeper 0 002 @ 00064504 n 0000 ;u 07105475 n 0000 | an unexpected hit; "that movie was the sleeper of the summer" -00064504 04 n 05 hit 2 smash 1 smasher 0 strike 3 bang 0 003 @ 00063652 n 0000 ~ 00064151 n 0000 ~ 00064370 n 0000 | a conspicuous success; "that song was his first hit and marked the beginning of his career"; "that new Broadway show is a real smasher"; "the party went with a bang" -00064789 04 n 04 bell_ringer 0 bull's_eye 1 mark 1 home_run 1 003 @ 00063652 n 0000 ;u 07105475 n 0000 + 01062395 v 0302 | something that exactly succeeds in achieving its goal; "the new advertising campaign was a bell ringer"; "scored a bull's eye"; "hit the mark"; "the president's speech was a home run" -00065098 04 n 01 ennoblement 0 002 @ 00198451 n 0000 + 02398463 v 0101 | the act of raising someone to the nobility -00065216 04 n 01 conquest 0 001 @ 00063652 n 0000 | success in mastering something difficult; "the conquest of space" -00065336 04 n 01 coup 1 001 @ 00063652 n 0000 | a brilliant and notable success -00065418 04 n 02 flying_colors 0 flying_colours 0 002 @ 00063652 n 0000 ;u 06295235 n 0000 | complete success; "they passed inspection with flying colors" -00065575 04 n 03 passing 2 pass 5 qualifying 0 005 @ 00063652 n 0000 + 02679012 v 0301 + 02525044 v 0101 + 02523953 v 0101 ! 00066901 n 0101 | success in satisfying a test or requirement; "his future depended on his passing that test"; "he got a pass in introductory chemistry" -00065855 04 n 02 credit 0 course_credit 0 002 @ 00062806 n 0000 ~ 00066075 n 0000 | recognition by a college or university that a course of studies has been successfully completed; typically measured in semester hours -00066075 04 n 02 semester_hour 0 credit_hour 0 001 @ 00065855 n 0000 | a unit of academic credit; one hour a week for an academic semester -00066216 04 n 02 nonaccomplishment 0 nonachievement 0 004 @ 00030358 n 0000 ~ 00066636 n 0000 ~ 00070965 n 0000 ~ 00739270 n 0000 | an act that does not achieve its intended goal -00066397 04 n 01 failure 1 005 @ 00074624 n 0000 + 02529284 v 0101 ~ 00068755 n 0000 ~ 00068901 n 0000 ~ 00069060 n 0000 | an unexpected omission; "he resented my failure to return his call"; "the mechanic's failure to check the brakes" -00066636 04 n 01 failure 0 010 @ 00066216 n 0000 + 02528380 v 0101 ~ 00066901 n 0000 ~ 00067153 n 0000 ~ 00067526 n 0000 ~ 00068333 n 0000 ~ 00072068 n 0000 ~ 00129527 n 0000 ~ 01204845 n 0000 ~ 13300411 n 0000 | an act that fails; "his failure to pass the test" -00066901 04 n 02 failing 0 flunk 0 004 @ 00066636 n 0000 + 02523784 v 0101 + 02523521 v 0101 ! 00065575 n 0101 | failure to reach a minimum required performance; "his failing the course led to his disqualification"; "he got two flunks on his report" -00067153 04 n 01 naught 0 001 @ 00066636 n 0000 | complete failure; "all my efforts led to naught" -00067254 04 n 01 cut 6 001 @ 01234345 n 0000 | an unexcused absence from class; "he was punished for taking too many cuts in his math class" -00067397 04 n 01 default 0 002 @ 01234345 n 0000 @ 00067526 n 0000 | loss due to not showing up; "he lost the game by default" -00067526 04 n 01 loss 0 003 @ 00066636 n 0000 ~ 00067397 n 0000 ~ 00067707 n 0000 | the act of losing someone or something; "everyone expected him to win so his loss was a shock" -00067707 04 n 03 capitulation 0 fall 2 surrender 0 006 @ 00067526 n 0000 + 01115585 v 0301 + 02385153 v 0201 + 02304507 v 0201 + 02528985 v 0201 + 01117812 v 0101 | the act of surrendering (usually under agreed conditions); "they were protected until the capitulation of the fort" -00067990 04 n 03 frustration 2 thwarting 0 foiling 0 004 @ 01073995 n 0000 + 02558172 v 0305 + 02558172 v 0201 + 02558172 v 0107 | an act of hindering someone's plans or efforts -00068170 04 n 02 overturn 1 upset 0 002 @ 00063652 n 0000 + 01109087 v 0201 | an improbable and unexpected victory; "the biggest upset since David beat Goliath" -00068333 04 n 07 backsliding 0 lapse 1 lapsing 0 relapse 0 relapsing 0 reversion 0 reverting 0 008 @ 00066636 n 0000 + 00387310 v 0701 + 00093327 v 0501 + 00093327 v 0401 + 00268165 v 0402 + 00093327 v 0202 + 00204585 v 0201 ~ 00068617 n 0000 | a failure to maintain a higher state -00068617 04 n 01 recidivism 0 004 @ 00068333 n 0000 + 10511425 n 0101 + 10511239 n 0101 + 00093327 v 0103 | habitual relapse into crime -00068755 04 n 02 disappointment 0 dashing_hopes 0 002 @ 00066397 n 0000 + 01798936 v 0101 | an act (or failure to act) that disappoints someone -00068901 04 n 01 breach 1 004 @ 00066397 n 0000 + 02566528 v 0106 ~ 00069173 n 0000 ~ 00069604 n 0000 | a failure to perform some promised act or obligation -00069060 04 n 01 copout 0 002 @ 00066397 n 0000 + 00679715 v 0102 | a failure to face some difficulty squarely -00069173 04 n 01 breach_of_contract 0 008 @ 00068901 n 0000 ~ 00069444 n 0000 ~ 00069685 n 0000 ~ 00069815 n 0000 ~ 00069918 n 0000 ~ 00070215 n 0000 ~ 00070462 n 0000 ~ 00070807 n 0000 | a breach of a legal duty; failure to do something that is required in a contract -00069444 04 n 02 anticipatory_breach 0 constructive_breach 0 001 @ 00069173 n 0000 | a breach of contract committed prior to the time of required performance -00069604 04 n 01 breach_of_duty 0 001 @ 00068901 n 0000 | a breach of due care -00069685 04 n 01 breach_of_the_covenant_of_warranty 0 001 @ 00069173 n 0000 | a failure of the seller's guarantee of good title -00069815 04 n 01 breach_of_promise 0 001 @ 00069173 n 0000 | failure to keep a promise (of marriage) -00069918 04 n 01 breach_of_trust 0 001 @ 00069173 n 0000 | violation (either through fraud or negligence) by a trustee of a duty that equity requires of him -00070077 04 n 01 breach_of_trust_with_fraudulent_intent 0 001 @ 00780889 n 0000 | larceny after trust rather than after unlawful taking -00070215 04 n 01 breach_of_warranty 0 001 @ 00069173 n 0000 | a breach that occurs when an item is deficient according to the terms of a warranty -00070363 04 n 01 leaning 0 001 @ 00030358 n 0000 | the act of deviating from a vertical position -00070462 04 n 01 material_breach 0 001 @ 00069173 n 0000 | a breach serious enough to destroy the value of the contract and to give a basis for an action for breach of contract -00070641 04 n 02 motivation 0 motivating 0 004 @ 00030358 n 0000 + 00324195 a 0203 + 02766328 a 0101 + 01649999 v 0101 | the act of motivating; providing incentive -00070807 04 n 01 partial_breach 0 001 @ 00069173 n 0000 | a breach that does not destroy the value of the contract but can give rise to a claim for damages -00070965 04 n 03 mistake 0 error 2 fault 0 018 @ 00066216 n 0000 + 00023854 a 0301 + 00842538 v 0302 + 00617748 v 0201 + 00617748 v 0102 ~ 00072261 n 0000 ~ 00072473 n 0000 ~ 00072691 n 0000 ~ 00072808 n 0000 ~ 00073713 n 0000 ~ 00073828 n 0000 ~ 00074324 n 0000 ~ 00074524 n 0000 ~ 00074624 n 0000 ~ 00074790 n 0000 ~ 00075618 n 0000 ~ 01248075 n 0000 ~ 01259211 n 0000 | a wrong action attributable to bad judgment or ignorance or inattention; "he made a bad mistake"; "she was quick to point out my errors"; "I could understand his English in spite of his grammatical faults" -00071546 04 n 01 double_fault 0 002 @ 00568813 n 0000 ;c 00482298 n 0000 | (tennis) two successive faults in serving resulting in the loss of the point -00071700 04 n 01 footfault 0 002 @ 00568813 n 0000 #p 00482298 n 0000 | a fault that occurs when the server in tennis fails to keep both feet behind the baseline -00071864 04 n 01 bobble 0 002 @ 00074790 n 0000 ;c 00471613 n 0000 | the momentary juggling of a batted or thrown baseball; "the second baseman made a bobble but still had time to throw the runner out" -00072068 04 n 02 error 3 misplay 0 003 @ 00066636 n 0000 ;c 00471613 n 0000 + 01075044 v 0201 | (baseball) a failure of a defensive player to make an out when normal play would have sufficed -00072261 04 n 05 blot 0 smear 0 smirch 0 spot 0 stain 0 003 @ 00070965 n 0000 + 01537409 v 0502 + 00846509 v 0303 | an act that brings discredit to the person who does it; "he made a huge blot on his copybook" -00072473 04 n 02 confusion 0 mix-up 0 002 @ 00070965 n 0000 + 00619610 v 0101 | a mistake that results from taking one thing to be another; "he changed his name in order to avoid confusion with the notorious outlaw" -00072691 04 n 01 incursion 2 002 @ 00070965 n 0000 + 02721031 v 0101 | the mistake of incurring liability or blame -00072808 04 n 03 miscalculation 0 misreckoning 0 misestimation 0 007 @ 00070965 n 0000 + 00639478 v 0302 + 00712389 v 0101 + 00639478 v 0101 ~ 00073032 n 0000 ~ 00073177 n 0000 ~ 00073525 n 0000 | a mistake in calculating -00073032 04 n 02 backfire 0 boomerang 0 003 @ 00072808 n 0000 + 02005778 v 0201 + 02378950 v 0101 | a miscalculation that recoils on its maker -00073177 04 n 02 rounding 0 rounding_error 0 002 @ 00072808 n 0000 ;c 06000644 n 0000 | (mathematics) a miscalculation that results from rounding off numbers to a convenient number of decimals; "the error in the calculation was attributable to rounding"; "taxes are rounded off to the nearest dollar but the rounding error is surprisingly small" -00073525 04 n 01 truncation_error 0 002 @ 00072808 n 0000 ;c 06000644 n 0000 | (mathematics) a miscalculation that results from cutting off a numerical calculation before it is finished -00073713 04 n 01 distortion 1 002 @ 00070965 n 0000 + 00835903 v 0102 | the mistake of misrepresenting the facts -00073828 04 n 04 slip 5 slip-up 1 miscue 1 parapraxis 0 005 @ 00070965 n 0000 + 00618057 v 0202 + 00608978 v 0101 + 00617748 v 0103 ~ 00074092 n 0000 | a minor inadvertent mistake usually observed in speech or writing or in small accidents or memory lapses etc. -00074092 04 n 01 Freudian_slip 0 001 @ 00073828 n 0000 | a slip-up that (according to Sigmund Freud) results from the operation of unconscious wishes or conflicts and can reveal unconscious processes in normal healthy individuals -00074324 04 n 01 offside 0 002 @ 00070965 n 0000 ;c 00523513 n 0000 | (sport) the mistake of occupying an illegal position on the playing field (in football, soccer, ice hockey, field hockey, etc.) -00074524 04 n 02 oversight 0 lapse 0 001 @ 00070965 n 0000 | a mistake resulting from inattention -00074624 04 n 02 omission 1 skip 0 005 @ 00070965 n 0000 + 02613860 v 0202 + 00615774 v 0105 + 00614999 v 0103 ~ 00066397 n 0000 | a mistake resulting from neglect -00074790 04 n 0b blunder 0 blooper 0 bloomer 0 bungle 0 pratfall 0 foul-up 0 fuckup 0 flub 0 botch 0 boner 0 boo-boo 0 019 @ 00070965 n 0000 + 02229000 a 0901 + 02527651 v 0901 + 02527651 v 0808 + 02527651 v 0718 + 02527651 v 0616 + 02527651 v 040d + 00013172 v 0401 + 02566227 v 0103 ~ 00071864 n 0000 ~ 00075283 n 0000 ~ 00075471 n 0000 ~ 00075790 n 0000 ~ 00075912 n 0000 ~ 00076072 n 0000 ~ 00076196 n 0000 ~ 00076323 n 0000 ~ 00076393 n 0000 ~ 00076563 n 0000 | an embarrassing mistake -00075283 04 n 01 snafu 0 004 @ 00074790 n 0000 ;u 07091902 n 0000 + 01669617 a 0102 + 00403016 v 0101 | an acronym often used by soldiers in World War II: situation normal all fucked up -00075471 04 n 01 spectacle 0 001 @ 00074790 n 0000 | a blunder that makes you look ridiculous; used in the phrase `make a spectacle of' yourself -00075618 04 n 04 ballup 0 balls-up 0 cockup 0 mess-up 0 004 @ 00070965 n 0000 ;r 08860123 n 0000 + 02527651 v 0417 + 02527651 v 010a | something badly botched or muddled -00075790 04 n 01 bull 0 001 @ 00074790 n 0000 | a serious and ludicrous blunder; "he made a bad bull of the assignment" -00075912 04 n 02 fumble 0 muff 0 005 @ 00074790 n 0000 ;c 00471613 n 0000 ;c 00469651 n 0000 + 02529896 v 0201 + 01075327 v 0101 | (sports) dropping the ball -00076072 04 n 01 fluff 0 002 @ 00074790 n 0000 + 02527651 v 010e | a blunder (especially an actor's forgetting the lines) -00076196 04 n 05 faux_pas 0 gaffe 0 solecism 0 slip 2 gaucherie 0 001 @ 00074790 n 0000 | a socially awkward or tactless act -00076323 04 n 01 howler 0 001 @ 00074790 n 0000 | a glaring blunder -00076393 04 n 01 clanger 0 003 @ 00074790 n 0000 ;r 08860123 n 0000 + 02174115 v 0101 | a conspicuous mistake whose effects seem to reverberate; "he dropped a clanger" -00076563 04 n 04 trip 1 trip-up 0 stumble 1 misstep 0 004 @ 00074790 n 0000 + 00618057 v 0301 + 00599835 v 0201 + 00618057 v 0203 | an unintentional but embarrassing blunder; "he recited the whole poem without a single trip"; "he arranged his robes to avoid a trip-up later"; "confusion caused his unfortunate misstep" -00076884 04 n 03 spill 1 tumble 1 fall 1 009 @ 07317519 n 0000 + 01984119 v 0301 + 01984317 v 0301 + 01972298 v 0301 + 02097047 v 0202 + 00433069 v 0201 + 01976488 v 0201 ~ 00077169 n 0000 ~ 00077249 n 0000 | a sudden drop from an upright position; "he had a nasty spill on the ice" -00077169 04 n 01 pratfall 1 001 @ 00076884 n 0000 | a fall onto your buttocks -00077249 04 n 01 wipeout 0 002 @ 00076884 n 0000 ;c 00523513 n 0000 | a spill in some sport (as a fall from a bicycle or while skiing or being capsized on a surfboard) -00077419 04 n 01 acquisition 0 014 @ 00041899 n 0000 + 02210855 v 0102 ~ 00078217 n 0000 ~ 00078393 n 0000 ~ 00078536 n 0000 ~ 00078821 n 0000 ~ 00079018 n 0000 ~ 00082525 n 0000 ~ 00082754 n 0000 ~ 00082870 n 0000 ~ 00083585 n 0000 ~ 00083729 n 0000 ~ 00089351 n 0000 ~ 00789534 n 0000 | the act of contracting or assuming or acquiring possession of something; "the acquisition of wealth"; "the acquisition of one company by another" -00077856 04 n 02 obtainment 0 obtention 0 003 @ 00041899 n 0000 + 02238085 v 0201 + 02238085 v 0101 | the act of obtaining -00077981 04 n 02 catching 2 contracting 0 003 @ 00041899 n 0000 + 00087736 v 0201 + 01303042 a 0101 | becoming infected; "catching cold is sometimes unavoidable"; "the contracting of a serious illness can be financially catastrophic" -00078217 04 n 01 incurring 0 002 @ 00077419 n 0000 + 02721031 v 0101 | acquiring or coming into something (usually undesirable); "incurring debts is easier than paying them" -00078393 04 n 01 moneymaking 0 003 @ 00077419 n 0000 + 00483816 a 0103 + 01871774 a 0102 | the act of making money (and accumulating wealth) -00078536 04 n 01 annexation 0 002 @ 00077419 n 0000 + 02626177 a 0101 | the formal act of acquiring something (especially territory) by conquest or occupation; "the French annexation of Madagascar as a colony in 1896"; "a protectorate has frequently been a first step to annexation" -00078821 04 n 01 pork-barreling 0 001 @ 00077419 n 0000 | acquisition of government money for benefits to a specific locale; "keeps his hold on his constituents through unashamed pork-barreling" -00079018 04 n 01 purchase 0 004 @ 00077419 n 0000 + 02207206 v 0102 ~ 00079212 n 0000 ~ 00081572 n 0000 | the acquisition of something for payment; "they closed the purchase with a handshake" -00079212 04 n 03 redemption 0 repurchase 0 buyback 0 004 @ 00079018 n 0000 + 02207890 v 0301 + 02256998 v 0102 + 02207890 v 0202 | the act of purchasing back something previously sold -00079398 04 n 01 trading 0 007 @ 01090446 n 0000 + 02244956 v 0103 ~ 00079603 n 0000 ~ 00079752 n 0000 ~ 00079908 n 0000 ~ 00080096 n 0000 ~ 00080242 n 0000 | buying or selling securities or commodities -00079603 04 n 02 bond_trading 0 bond-trading_activity 0 001 @ 00079398 n 0000 | trading in bonds (usually by a broker on the floor of an exchange) -00079752 04 n 01 program_trading 0 001 @ 00079398 n 0000 | a trading technique involving large blocks of stock with trades triggered by computer programs -00079908 04 n 02 short_sale 0 short_selling 0 001 @ 00079398 n 0000 | sale of securities or commodity futures not owned by the seller (who hopes to buy them back later at a lower price) -00080096 04 n 01 short_covering 0 001 @ 00079398 n 0000 | the purchase of securities or commodities by a short seller to close out a short sale -00080242 04 n 01 insider_trading 0 001 @ 00079398 n 0000 | buying or selling corporate stock by a corporate officer or other insider on the basis of information that has not been made public and is supposed to remain confidential -00080474 04 n 01 naked_option 0 001 @ 13241600 n 0000 | a put or call option for which the seller or buyer has no underlying security position -00080619 04 n 01 covered_option 0 001 @ 13241600 n 0000 | a put or call option backed by the shares underlying the option -00080743 04 n 02 call_option 0 call 4 004 @ 13241600 n 0000 #p 00349213 n 0000 + 00874002 v 0201 ! 00080968 n 0101 | the option to buy a given stock (or stock index or commodity future) at a given price before a given date -00080968 04 n 02 put_option 0 put 0 003 @ 13241600 n 0000 #p 00349213 n 0000 ! 00080743 n 0101 | the option to sell a given stock (or stock index or commodity future) at a given price before a given date -00081174 04 n 01 straddle 1 001 @ 13241600 n 0000 | the option to buy or sell a given stock (or stock index or commodity future) at a given price before a given date; consists of an equal number of put and call options -00081395 04 n 02 incentive_option 0 incentive_stock_option 0 001 @ 13241600 n 0000 | an option granted to corporate executives if the company achieves certain financial goals -00081572 04 n 02 buying 0 purchasing 0 006 @ 00079018 n 0000 + 02207206 v 0202 + 02207206 v 0101 ~ 00081836 n 0000 ~ 00082223 n 0000 ~ 00082347 n 0000 | the act of buying; "buying and selling fill their days"; "shrewd purchasing requires considerable knowledge" -00081836 04 n 01 shopping 0 004 @ 00081572 n 0000 + 02326355 v 0101 + 02325968 v 0101 ~ 00082081 n 0000 | searching for or buying goods or services; "went shopping for a reliable plumber"; "does her shopping at the mall rather than down town" -00082081 04 n 01 marketing 1 002 @ 00081836 n 0000 + 02298471 v 0101 | shopping at a market; "does the weekly marketing at the supermarket" -00082223 04 n 02 mail-order_buying 0 catalog_buying 0 001 @ 00081572 n 0000 | buying goods to be shipped through the mail -00082347 04 n 02 viatication 0 viaticus 0 003 @ 00081572 n 0000 + 02824194 a 0201 + 02824194 a 0101 | purchasing insurance policies for cash from terminally ill policy holders -00082525 04 n 01 acceptance 3 003 @ 00077419 n 0000 + 01985557 a 0102 + 02236124 v 0101 | the act of taking something that is offered; "her acceptance of the gift encouraged him"; "he anticipated their acceptance of his offer" -00082754 04 n 02 succession 1 taking_over 0 001 @ 00077419 n 0000 | acquisition of property by descent or by will -00082870 04 n 02 assumption 0 laying_claim 0 004 @ 00077419 n 0000 + 02381726 v 0101 + 02301825 v 0104 + 02274482 v 0101 | the act of taking possession of or power over something; "his assumption of office coincided with the trouble in Cuba"; "the Nazi assumption of power in 1934"; "he acquired all the company's assets for ten million dollars and the assumption of the company's debts" -00083260 04 n 01 assumption 1 003 @ 00030358 n 0000 + 00632236 v 0101 ~ 00083448 n 0000 | the act of assuming or taking for granted; "your assumption that I would agree was unwarranted" -00083448 04 n 01 position 4 002 @ 00083260 n 0000 + 00716758 v 0102 | the act of positing; an assumption taken as a postulate or axiom -00083585 04 n 02 inheritance 0 heritage 0 002 @ 00077419 n 0000 + 02315525 v 0101 | hereditary succession to a title or an office or property -00083729 04 n 03 procurement 0 procurance 0 procural 0 004 @ 00077419 n 0000 + 02238770 v 0301 + 02238770 v 0201 + 02238770 v 0101 | the act of getting possession of something; "he was responsible for the procurement of materials and supplies" -00083975 04 n 01 appropriation 0 005 @ 00041899 n 0000 ~ 00084371 n 0000 ~ 00085041 n 0000 ~ 00085219 n 0000 ~ 00087218 n 0000 | a deliberate act of acquisition of something, often without the permission of the owner; "the necessary funds were obtained by the government's appropriation of the company's operating unit"; "a person's appropriation of property belonging to another is dishonest" -00084371 04 n 02 borrowing 1 adoption 1 006 @ 00083975 n 0000 + 02346724 v 0201 + 00601822 v 0203 ~ 00084642 n 0000 ~ 00084895 n 0000 ~ 07032753 n 0000 | the appropriation (of ideas or words etc) from another source; "the borrowing of ancient motifs was very apparent" -00084642 04 n 02 naturalization 1 naturalisation 1 003 @ 00084371 n 0000 + 00412993 v 0202 + 00412993 v 0101 | changing the pronunciation of a borrowed word to agree with the borrowers' phonology; "the naturalization in English of many Italian words" -00084895 04 n 01 misappropriation 2 001 @ 00084371 n 0000 | wrongful borrowing; "his explanation was a misappropriation of sociological theory" -00085041 04 n 02 preemption 0 pre-emption 0 002 @ 00083975 n 0000 + 02302454 v 0101 | a prior appropriation of something; "the preemption of bandwidth by commercial interests" -00085219 04 n 01 seizure 0 007 @ 00083975 n 0000 + 02273293 v 0105 ~ 00085678 n 0000 ~ 00085829 n 0000 ~ 00086297 n 0000 ~ 00086654 n 0000 ~ 00097122 n 0000 | the taking possession of something by legal process -00085432 04 n 01 usurpation 0 002 @ 00088481 n 0000 + 02274482 v 0102 | wrongfully seizing and holding (an office or powers) by force (especially the seizure of a throne or supreme authority); "a succession of generals who ruled by usurpation" -00085678 04 n 02 confiscation 0 arrogation 0 004 @ 00085219 n 0000 + 02274482 v 0205 + 02273293 v 0104 ~ 00086140 n 0000 | seizure by the government -00085829 04 n 02 distress 0 distraint 0 001 @ 00085219 n 0000 | the seizure and holding of property as security for payment of a debt or satisfaction of a claim; "Originally distress was a landlord's remedy against a tenant for unpaid rents or property damage but now the landlord is given a landlord's lien" -00086140 04 n 01 expropriation 0 002 @ 00085678 n 0000 + 01472642 v 0101 | taking out of an owner's hands (especially taking property by public authority) -00086297 04 n 04 impoundment 0 impounding 0 internment 1 poundage 0 006 @ 00085219 n 0000 ;c 08441203 n 0000 + 01302365 v 0401 + 02273293 v 0201 + 02273293 v 0101 ~ 00086547 n 0000 | placing private property in the custody of an officer of the law -00086547 04 n 02 drug_bust 0 drugs_bust 0 001 @ 00086297 n 0000 | seizure of illegal drugs by the police -00086654 04 n 02 impress 0 impressment 0 003 @ 00085219 n 0000 + 01471547 v 0202 + 01471547 v 0102 | the act of coercing someone into government service -00086809 04 n 03 occupation 1 occupancy 1 moving_in 0 004 @ 00041899 n 0000 + 10523519 n 0202 + 02648639 v 0101 ~ 00087073 n 0000 | the act of occupying or taking possession of a building; "occupation of a building without a certificate of occupancy is illegal" -00087073 04 n 02 preoccupancy 0 preoccupation 0 002 @ 00086809 n 0000 + 02273083 v 0201 | the act of taking occupancy before someone else does -00087218 04 n 02 sequestration 1 requisition 1 002 @ 00083975 n 0000 + 02273293 v 0103 | seizing property that belongs to someone else and holding it until profits pay the demand for which it was seized -00087423 04 n 03 grant 0 subsidization 0 subsidisation 0 008 @ 01083645 n 0000 + 02217011 v 0302 + 02216710 v 0302 + 02217011 v 0201 + 02216710 v 0201 ~ 00087663 n 0000 ~ 00088154 n 0000 ~ 00088367 n 0000 | the act of providing a subsidy -00087663 04 n 02 award 0 awarding 0 003 @ 00087423 n 0000 ;c 08441203 n 0000 ~ 00087849 n 0000 | a grant made by a law court; "he criticized the awarding of compensation by the court" -00087849 04 n 01 addiction 0 003 @ 00087663 n 0000 ;c 06534659 n 0000 + 01165290 v 0101 | (Roman law) a formal award by a magistrate of a thing or person to another person (as the award of a debtor to his creditor); a surrender to a master; "under Roman law addiction was the justification for slavery" -00088154 04 n 01 block_grant 0 001 @ 00087423 n 0000 | a grant of federal money to state and local governments to support social welfare programs; "block grants reduce federal responsibility for social welfare" -00088367 04 n 01 grant-in-aid 0 001 @ 00087423 n 0000 | a grant from a central government to a local government -00088481 04 n 03 capture 0 gaining_control 0 seizure 1 007 @ 00041899 n 0000 + 02272549 v 0303 + 02272549 v 0102 ~ 00085432 n 0000 ~ 00088725 n 0000 ~ 00089027 n 0000 ~ 00089234 n 0000 | the act of forcibly dispossessing an owner of property -00088725 04 n 06 apprehension 0 arrest 0 catch 1 collar 0 pinch 1 taking_into_custody 0 005 @ 00088481 n 0000 + 01215137 v 0401 + 01215421 v 0302 + 01215137 v 0204 + 01215137 v 0103 | the act of apprehending (especially apprehending a criminal); "the policeman on the beat got credit for the collar" -00089027 04 n 04 conquest 1 conquering 0 subjection 0 subjugation 0 006 @ 00088481 n 0000 + 02496816 v 0302 + 02272549 v 0204 + 01114303 v 0201 + 00462092 v 0205 ~i 01306736 n 0000 | the act of conquering -00089234 04 n 01 enslavement 0 002 @ 00088481 n 0000 + 02496696 v 0101 | the act of making slaves of your captives -00089351 04 n 04 restitution 0 return 2 restoration 1 regaining 0 006 @ 00077419 n 0000 + 02247977 v 0404 + 02310482 v 0301 + 02310007 v 0202 + 02310482 v 0102 ~ 00089657 n 0000 | getting something back again; "upon the restitution of the book to its rightful owner the child was given a tongue lashing" -00089657 04 n 01 clawback 0 002 @ 00089351 n 0000 ;r 08860123 n 0000 | finding a way to take money back from people that they were given in another way; "the Treasury will find some clawback for the extra benefits members received" -00089891 04 n 01 repossession 0 002 @ 00045907 n 0000 + 02205887 v 0102 | the action of regaining possession (especially the seizure of collateral securing a loan that is in default) -00090076 04 n 01 foreclosure 0 002 @ 01184814 n 0000 + 02276568 v 0101 | the legal proceedings initiated by a creditor to repossess the collateral for loan that is in default -00090253 04 n 02 reception 0 receipt 0 004 @ 00041899 n 0000 + 00892698 v 0202 + 10511069 n 0101 + 02210119 v 0101 | the act of receiving -00090393 04 n 01 appointment 2 002 @ 00043609 n 0000 ;c 08441203 n 0000 | (law) the act of disposing of property by virtue of the power of appointment; "she allocated part of the trust to her church by appointment" -00090610 04 n 01 comb-out 1 002 @ 00043609 n 0000 + 02223630 v 0102 | the act of carefully weeding out unwanted things or people; "the department got a good comb-out" -00090779 04 n 01 giving 1 004 @ 00043609 n 0000 + 02308741 v 0102 + 02200686 v 0101 + 02199590 v 0101 | disposing of property by voluntary transfer without receiving value in return; "the alumni followed a program of annual giving" -00091013 04 n 01 abandonment 2 004 @ 00043609 n 0000 + 02228031 v 0101 ~ 00091234 n 0000 ~ 00091503 n 0000 | the voluntary surrender of property (or a right to property) without attempting to reclaim it or give it away -00091234 04 n 02 discard 0 throwing_away 0 003 @ 00091013 n 0000 + 02222318 v 0101 ~ 00091404 n 0000 | getting rid something that is regarded as useless or undesirable -00091404 04 n 01 staging 1 001 @ 00091234 n 0000 | getting rid of a stage of a multistage rocket -00091503 04 n 01 discard 1 003 @ 00091013 n 0000 #p 00488225 n 0000 ;c 00488225 n 0000 | (cards) the act of throwing out a useless card or of failing to follow suit -00091670 04 n 01 mine_disposal 0 002 @ 00043609 n 0000 ~ 00091779 n 0000 | the disposal of explosive mines -00091779 04 n 01 minesweeping 0 001 @ 00091670 n 0000 | the activity of detecting and disposing of marine mines -00091893 04 n 01 sewage_disposal 0 001 @ 00043609 n 0000 | the disposal of sewage -00091977 04 n 01 bait_and_switch 0 001 @ 01113068 n 0000 | a deceptive way of selling that involves advertising a product at a very low price in order to attract customers who are then persuaded to switch to a more expensive product -00092212 04 n 01 private_treaty 0 001 @ 01113068 n 0000 | a sale of property at a price agreed on by the seller and buyer without an intervening agency -00092366 04 n 03 auction 0 auction_sale 0 vendue 0 010 @ 01117541 n 0000 + 09608377 n 0101 + 02244773 v 0101 -c 13304665 n 0000 -c 02298632 v 0000 -c 02298998 v 0000 -c 02299552 v 0000 -c 02299687 v 0000 -c 02299801 v 0000 -c 02299924 v 0000 | the public sale of something to the highest bidder -00092663 04 n 01 bootlegging 0 001 @ 01113068 n 0000 | the act of making or transporting alcoholic liquor for sale illegally; "the Prohibition amendment made bootlegging profitable" -00092847 04 n 01 bootlegging 1 001 @ 01113068 n 0000 | the act of selling illegally or without permission; "the bootlegging of videotapes is common in Asia" -00093006 04 n 02 capitalization 2 capitalisation 2 002 @ 01113068 n 0000 ~ 00093127 n 0000 | the sale of capital stock -00093127 04 n 02 overcapitalization 0 overcapitalisation 0 004 @ 00093006 n 0000 ;c 01094725 n 0000 + 00162350 v 0202 + 00162350 v 0101 | (business) too much capitalization (the sale of more stock than the business warrants) -00093354 04 n 01 reclamation 2 002 @ 00045907 n 0000 + 02226833 v 0101 | the recovery of useful substances from waste products -00093483 04 n 04 rescue 0 deliverance 0 delivery 0 saving 2 011 @ 00045907 n 0000 + 02551144 v 0302 + 02551144 v 0202 + 02551144 v 0101 ~ 00093874 n 0000 ~ 00094001 n 0000 ~ 00095971 n 0000 ~ 00096211 n 0000 ~ 00096343 n 0000 ~ 00096513 n 0000 ~ 00096720 n 0000 | recovery or preservation from loss or danger; "work is the deliverance of mankind"; "a surgeon's job is the saving of lives" -00093874 04 n 01 lifesaving 0 001 @ 00093483 n 0000 | saving the lives of drowning persons; "he took a course in lifesaving" -00094001 04 n 02 redemption 1 salvation 0 007 @ 00093483 n 0000 ;c 06182144 n 0000 + 03109399 a 0102 + 02551602 v 0102 ~ 00094240 n 0000 ~ 00094788 n 0000 ~ 00095121 n 0000 | (theology) the act of delivering from sin or saving from evil -00094240 04 n 04 absolution 0 remission 0 remittal 0 remission_of_sin 0 004 @ 00094001 n 0000 #p 01039140 n 0000 + 00903711 v 0102 ~ 00094500 n 0000 | the act of absolving or remitting; formal redemption as pronounced by a priest in the sacrament of penance -00094500 04 n 01 indulgence 2 002 @ 00094240 n 0000 ;c 08083599 n 0000 | the remission by the pope of the temporal punishment in purgatory that is still due for sins even after absolution; "in the Middle Ages the unrestricted sale of indulgences by pardoners became a widespread abuse" -00094788 04 n 03 conversion 1 rebirth 0 spiritual_rebirth 0 002 @ 00094001 n 0000 ~ 00094954 n 0000 | a spiritual enlightenment causing a person to lead a new life -00094954 04 n 01 proselytism 0 001 @ 00094788 n 0000 | the state of being a proselyte; spiritual rebirth resulting from the zeal of crusading advocacy of the gospel -00095121 04 n 03 expiation 0 atonement 0 propitiation 1 004 @ 00094001 n 0000 + 01796800 v 0202 + 02520509 v 0101 ~ 00095329 n 0000 | the act of atoning for sin or wrongdoing (especially appeasing a deity) -00095329 04 n 02 reparation 0 amends 0 003 @ 00095121 n 0000 + 02250625 v 0103 + 00199912 v 0104 | something done or paid in expiation of a wrong; "how can I make amends" -00095502 04 n 03 liberation 2 release 1 freeing 0 015 @ 00035189 n 0000 + 02422026 v 0301 + 02421374 v 0301 + 02421374 v 0203 + 02421374 v 0102 + 02497062 v 0101 ~ 00095873 n 0000 ~ 00805337 n 0000 ~ 01075567 n 0000 ~ 01244593 n 0000 ~ 01247413 n 0000 ~ 01247647 n 0000 ~ 01247807 n 0000 ~ 01257701 n 0000 ~ 01258251 n 0000 | the act of liberating someone or something -00095873 04 n 01 jail_delivery 0 001 @ 00095502 n 0000 | the use of force to liberate prisoners -00095971 04 n 02 reclamation 0 reformation 1 005 @ 00093483 n 0000 + 00384620 v 0201 + 00167934 v 0201 + 00265386 v 0201 + 00384620 v 0102 | rescuing from error and returning to a rightful course; "the reclamation of delinquent children" -00096211 04 n 01 salvage 0 001 @ 00093483 n 0000 | the act of rescuing a ship or its crew or its cargo from a shipwreck or a fire -00096343 04 n 01 salvage 1 003 @ 00093483 n 0000 + 02550868 v 0101 + 02550868 v 0102 | the act of saving goods or property that were in danger of damage or destruction -00096513 04 n 01 salvation 2 002 @ 00093483 n 0000 + 02550868 v 0102 | saving someone or something from harm or from an unpleasant situation; "the salvation of his party was the president's major concern" -00096720 04 n 01 search_and_rescue_mission 0 001 @ 00093483 n 0000 | a rescue mission to search for survivors and to rescue them -00096851 04 n 01 ransom 0 002 @ 00045907 n 0000 + 02256998 v 0101 | the act of freeing from captivity or punishment -00096969 04 n 02 recapture 0 retaking 0 004 @ 00045907 n 0000 + 02304013 v 0202 + 01439604 v 0101 + 02304013 v 0101 | the act of taking something back -00097122 04 n 01 recapture 1 001 @ 00085219 n 0000 | a legal seizure by the government of profits beyond a fixed amount -00097244 04 n 01 invocation 1 002 @ 00044150 n 0000 + 00755447 v 0102 | the act of appealing for help -00097348 04 n 01 instrumentation 0 002 @ 00044150 n 0000 + 02340543 v 0101 | the act of providing or using the instruments needed for some implementation -00097504 04 n 04 performance 0 execution 2 carrying_out 1 carrying_into_action 0 007 @ 00037396 n 0000 + 01712704 v 0202 + 01712704 v 0101 ~ 00097923 n 0000 ~ 00098051 n 0000 ~ 00098385 n 0000 ~ 00548173 n 0000 | the act of performing; of doing something successfully; using knowledge as distinguished from merely possessing it; "they criticised his performance as mayor"; "experience generally improves performance" -00097923 04 n 01 specific_performance 0 001 @ 00097504 n 0000 | the performance of a legal contract as specified by its terms -00098051 04 n 01 linguistic_performance 0 002 @ 00097504 n 0000 ;c 06172789 n 0000 | (linguistics) a speaker's actual use of language in real situations; what the speaker actually says, including grammatical errors and other non-linguistic features such as hesitations and other disfluencies (contrasted with linguistic competence) -00098385 04 n 02 mechanism 0 mechanics 0 003 @ 00097504 n 0000 + 02890983 a 0201 + 01499686 a 0201 | the technical aspects of doing something; "a mechanism of social control"; "mechanisms of communication"; "the mechanics of prose style" -00098625 04 n 01 service 6 004 @ 01210816 n 0000 ~ 00098822 n 0000 ~ 00098939 n 0000 ~ 00099061 n 0000 | the performance of duties by a waiter or servant; "that restaurant has excellent service" -00098822 04 n 01 curb_service 0 001 @ 00098625 n 0000 | service provided to customers who remain in their vehicles -00098939 04 n 01 self-service 0 001 @ 00098625 n 0000 | the practice of serving yourself (as in a grocery or cafeteria) -00099061 04 n 01 valet_parking 0 001 @ 00098625 n 0000 | a service provided (at a club or restaurant or airport etc.) whereby a patron leaves a car at the entrance and an attendant parks and retrieves it -00099267 04 n 02 dramatic_production 0 dramatic_performance 0 001 @ 00550771 n 0000 | the act of performing a drama; "the group joined together in a dramatic production" -00099439 04 n 01 encore 0 002 @ 00550771 n 0000 + 00754313 v 0101 | an extra or repeated performance; usually given in response to audience demand -00099588 04 n 03 extemporization 0 extemporisation 0 improvisation 1 004 @ 00550771 n 0000 + 01728840 v 0301 + 01728840 v 0205 + 01728840 v 0104 | a performance given extempore without planning or preparation -00099799 04 n 02 juggle 0 juggling 0 003 @ 00550771 n 0000 + 01604814 v 0201 + 01604814 v 0101 | throwing and catching several objects simultaneously -00099951 04 n 09 magic_trick 0 conjuring_trick 0 trick 2 magic 1 legerdemain 0 conjuration 0 thaumaturgy 0 illusion 2 deception 1 006 @ 00550771 n 0000 + 10280674 n 0805 + 01576071 a 0403 + 10280674 n 0401 ~ 00552219 n 0000 ~ 00552312 n 0000 | an illusory feat; considered magical by naive observers -00100253 04 n 01 musical_performance 0 006 @ 00550771 n 0000 @ 06157326 n 0000 ~ 00101191 n 0000 ~ 00102374 n 0000 ~ 00545501 n 0000 %p 01053207 n 0000 | the act of performing music -00100437 04 n 01 one-night_stand 0 001 @ 00550771 n 0000 | a performance in one place on one night only -00100543 04 n 03 rendition 1 rendering 1 interpretation 2 008 @ 00550771 n 0000 + 01686132 v 0302 + 01732172 v 0301 + 00938247 v 0302 + 01732172 v 0202 + 01732172 v 0102 ~ 00100889 n 0000 ~ 00101003 n 0000 | the act of interpreting something as expressed in an artistic performance; "her rendition of Milton's verse was extraordinarily moving" -00100889 04 n 01 reinterpretation 0 002 @ 00100543 n 0000 + 00938899 v 0101 | a new or different interpretation -00101003 04 n 01 spin 3 001 @ 00100543 n 0000 | a distinctive interpretation (especially as used by politicians to sway public opinion); "the campaign put a favorable spin on the story" -00101191 04 n 01 playing 1 008 @ 00100253 n 0000 + 01725051 v 0101 + 01726172 v 0101 + 01724459 v 0101 ~ 00101410 n 0000 ~ 00101708 n 0000 ~ 00101809 n 0000 ~ 00102162 n 0000 | the act of playing a musical instrument -00101410 04 n 01 bowing 0 002 @ 00101191 n 0000 ~ 00101570 n 0000 | managing the bow in playing a stringed instrument; "the violinist's bowing was excellent" -00101570 04 n 02 spiccato 0 spiccato_bowing 0 001 @ 00101410 n 0000 | bowing in such a way that the bow bounces lightly off the strings -00101708 04 n 01 piping 0 002 @ 00101191 n 0000 + 01727684 v 0101 | playing a pipe or the bagpipes -00101809 04 n 01 stopping 0 002 @ 00101191 n 0000 ~ 00102039 n 0000 | the kind of playing that involves pressing the fingers on the strings of a stringed instrument to control the pitch; "the violinist's stopping was excellent" -00102039 04 n 01 double_stopping 0 001 @ 00101809 n 0000 | stopping two strings and producing two notes at the same time -00102162 04 n 01 transposition 1 003 @ 00101191 n 0000 ;c 07020895 n 0000 + 00380872 v 0101 | (music) playing in a different key from the key intended; moving the pitch of a piece of music upwards or downwards -00102374 04 n 01 jam_session 0 001 @ 00100253 n 0000 | an impromptu jazz concert -00102457 04 n 03 automation 0 mechanization 0 mechanisation 0 005 @ 00950858 n 0000 + 00479598 v 0302 + 00479598 v 0201 + 00479932 v 0103 ~ 00102779 n 0000 | the act of implementing the control of equipment with advanced technology; usually involving electronic hardware; "automation replaces human workers by machines" -00102779 04 n 02 computerization 0 cybernation 0 003 @ 00102457 n 0000 + 01718952 v 0201 + 01718952 v 0102 | the control of processes by computer -00102927 04 n 02 motorization 0 motorisation 0 005 @ 00044150 n 0000 + 00480751 v 0204 + 02226172 v 0101 + 02226013 v 0101 + 00480751 v 0103 | the act of motorizing (equiping with motors or with motor vehicles) -00103140 04 n 02 launching 0 launch 0 004 @ 00045250 n 0000 + 01515415 v 0201 + 01514655 v 0201 ~ 00103419 n 0000 | the act of propelling with force -00103291 04 n 01 launching 2 001 @ 00045250 n 0000 | the act of moving a newly built vessel into the water for the first time -00103419 04 n 02 rocket_firing 0 rocket_launching 0 003 @ 00103140 n 0000 ~ 00103590 n 0000 ~ 00103737 n 0000 | the launching of a rocket or missile under its own power -00103590 04 n 02 blastoff 0 shot 7 002 @ 00103419 n 0000 + 01515056 v 0101 | the launching of a missile or spacecraft to a specified destination -00103737 04 n 01 moon_shot 0 001 @ 00103419 n 0000 | the launching of a spacecraft to the moon -00103834 04 n 03 drive 4 thrust 0 driving_force 0 005 @ 00045250 n 0000 + 02062212 v 0204 + 01506157 v 0102 ~ 00104088 n 0000 ~ 00104249 n 0000 | the act of applying force to propel something; "after reaching the desired velocity the drive is cut off" -00104088 04 n 01 firewall 0 002 @ 00103834 n 0000 ;u 07075172 n 0000 | (colloquial) the application of maximum thrust; "he moved the throttle to the firewall" -00104249 04 n 03 impulse 1 impulsion 0 impetus 0 002 @ 00103834 n 0000 + 01511706 v 0202 | the act of applying force suddenly; "the impulse knocked him over" -00104409 04 n 02 roll 2 bowl 0 002 @ 00045250 n 0000 #p 00041740 n 0000 | the act of rolling something (as the ball in bowling) -00104539 04 n 01 throw 0 015 @ 00045250 n 0000 + 01508368 v 0101 ~ 00104976 n 0000 ~ 00105164 n 0000 ~ 00105271 n 0000 ~ 00105479 n 0000 ~ 00105624 n 0000 ~ 00105820 n 0000 ~ 00106104 n 0000 ~ 00106272 n 0000 ~ 00106726 n 0000 ~ 00106888 n 0000 ~ 00107016 n 0000 ~ 00107137 n 0000 ~ 01246206 n 0000 | the act of throwing (propelling something with a rapid movement of the arm and wrist); "the catcher made a good throw to second base" -00104976 04 n 01 bowling 2 005 @ 00104539 n 0000 ;c 00476389 n 0000 ~ 00476952 n 0000 ~ 00477097 n 0000 ~ 00477268 n 0000 | (cricket) the act of delivering a cricket ball to the batsman -00105164 04 n 01 fling 2 003 @ 00104539 n 0000 + 02222318 v 0102 + 01512465 v 0101 | the act of flinging -00105271 04 n 02 heave 0 heaving 0 003 @ 00104539 n 0000 + 01507792 v 0201 + 01507792 v 0101 | throwing something heavy (with great effort); "he gave it a mighty heave"; "he was not good at heaving passes" -00105479 04 n 02 hurl 0 cast 3 005 @ 00104539 n 0000 + 01632897 v 0202 + 01507143 v 0203 + 02062212 v 0102 + 01507143 v 0101 | a violent throw -00105624 04 n 01 leaner 0 004 @ 00104539 n 0000 ;c 00467320 n 0000 + 02038357 v 0101 + 01606574 v 0101 | (horseshoes) the throw of a horseshoe so as to lean against (but not encircle) the stake -00105820 04 n 03 pass 0 toss 0 flip 0 008 @ 00104539 n 0000 ;c 00523513 n 0000 + 01512625 v 0301 + 01893465 v 0301 + 01893601 v 0301 + 01514525 v 0202 + 01512625 v 0202 ~ 00120943 n 0000 | (sports) the act of throwing the ball to another member of your team; "the pass was fumbled" -00106104 04 n 01 pitch 0 002 @ 00104539 n 0000 + 01512625 v 0104 | the action or manner of throwing something; "his pitch fell short and his hat landed on the floor" -00106272 04 n 02 pitch 3 delivery 3 019 @ 00104539 n 0000 ;c 00471613 n 0000 + 01509079 v 0102 ~ 00107279 n 0000 ~ 00107400 n 0000 ~ 00107551 n 0000 ~ 00107684 n 0000 ~ 00107875 n 0000 ~ 00108081 n 0000 ~ 00108181 n 0000 ~ 00108427 n 0000 ~ 00108545 n 0000 ~ 00108665 n 0000 ~ 00108818 n 0000 ~ 00108965 n 0000 ~ 00109227 n 0000 ~ 00109414 n 0000 ~ 00109771 n 0000 ~ 00109892 n 0000 | (baseball) the act of throwing a baseball by a pitcher to a batter -00106726 04 n 01 ringer 0 002 @ 00104539 n 0000 ;c 00467320 n 0000 | (horseshoes) the successful throw of a horseshoe or quoit so as to encircle a stake or peg -00106888 04 n 01 shy 0 002 @ 00104539 n 0000 + 01509492 v 0101 | a quick throw; "he gave the ball a shy to the first baseman" -00107016 04 n 01 slinging 0 002 @ 00104539 n 0000 + 01514348 v 0101 | throwing with a wide motion (as if with a sling) -00107137 04 n 01 throw-in 0 002 @ 00104539 n 0000 ;c 00470966 n 0000 | (rugby) an act or instance of throwing a ball in to put it into play -00107279 04 n 01 balk 0 002 @ 00106272 n 0000 + 02452379 a 0102 | an illegal pitching motion while runners are on base -00107400 04 n 01 ball 0 001 @ 00106272 n 0000 | a pitch that is not in the strike zone; "he threw nine straight balls before the manager yanked him" -00107551 04 n 02 beanball 0 beaner 0 002 @ 00106272 n 0000 + 01400856 v 0201 | a baseball deliberately thrown at the batter's head -00107684 04 n 04 change-up 0 change-of-pace 0 change-of-pace_ball 0 off-speed_pitch 0 001 @ 00106272 n 0000 | a baseball thrown with little velocity when the batter is expecting a fastball -00107875 04 n 04 curve 2 curve_ball 0 breaking_ball 0 bender 2 002 @ 00106272 n 0000 + 02033137 v 0401 | a pitch of a baseball that is thrown with spin so that its path curves as it approaches the batter -00108081 04 n 01 duster 0 001 @ 00106272 n 0000 | a pitch thrown deliberately close to the batter -00108181 04 n 05 fastball 0 heater 0 smoke 2 hummer 0 bullet 0 003 @ 00106272 n 0000 ;c 00471613 n 0000 ~ 00109081 n 0000 | (baseball) a pitch thrown with maximum velocity; "he swung late on the fastball"; "he showed batters nothing but smoke" -00108427 04 n 02 knuckleball 0 knuckler 0 001 @ 00106272 n 0000 | a baseball pitch thrown with little speed or spin -00108545 04 n 01 overhand_pitch 0 001 @ 00106272 n 0000 | a baseball pitch in which the hand moves above the shoulder -00108665 04 n 01 passed_ball 0 001 @ 00106272 n 0000 | a pitch that the catcher should have caught but did not; allows a base runner to advance a base -00108818 04 n 01 screwball 0 001 @ 00106272 n 0000 | a pitch with reverse spin that curves toward the side of the plate from which it was thrown -00108965 04 n 01 sinker 0 001 @ 00106272 n 0000 | a pitch that curves downward rapidly as it approaches the plate -00109081 04 n 01 slider 0 002 @ 00108181 n 0000 + 01870275 v 0105 | a fastball that curves slightly away from the side from which it was thrown -00109227 04 n 02 spitball 0 spitter 0 001 @ 00106272 n 0000 | an illegal pitch in which a foreign substance (spit or Vaseline) is applied to the ball by the pitcher before he throws it -00109414 04 n 01 strike 5 002 @ 00106272 n 0000 + 01123887 v 0101 | (baseball) a pitch that the batter swings at and misses, or that the batter hits into foul territory, or that the batter does not swing at but the umpire judges to be in the area over home plate and between the batter's knees and shoulders; "this pitcher throws more strikes than balls" -00109771 04 n 02 submarine_ball 0 submarine_pitch 0 001 @ 00106272 n 0000 | a pitch thrown sidearm instead of overhead -00109892 04 n 01 wild_pitch 0 001 @ 00106272 n 0000 | an errant pitch that the catcher cannot be expected to catch and that allows a base runner to advance a base -00110057 04 n 01 basketball_shot 0 013 @ 00788632 n 0000 #p 00480993 n 0000 ~ 00110415 n 0000 ~ 00110554 n 0000 ~ 00110834 n 0000 ~ 00110964 n 0000 ~ 00111358 n 0000 ~ 00111503 n 0000 ~ 00111660 n 0000 ~ 00111839 n 0000 ~ 00111962 n 0000 ~ 00112072 n 0000 ~ 00112185 n 0000 | throwing the basketball toward the hoop; "his shot hit the rim and bounced out" -00110415 04 n 01 bank_shot 0 001 @ 00110057 n 0000 | a basketball shot that bounces off of the backboard before passing through the hoop -00110554 04 n 03 dunk 0 dunk_shot 0 stuff_shot 0 003 @ 00110057 n 0000 + 01597662 v 0101 ~ 00110745 n 0000 | a basketball shot in which the basketball is propelled downward into the basket -00110745 04 n 01 slam_dunk 0 002 @ 00110554 n 0000 + 01597832 v 0101 | a forceful dunk -00110834 04 n 01 finger-roll 0 001 @ 00110057 n 0000 | a basketball shot that rolls off the tips of the fingers into the basket -00110964 04 n 06 foul_shot 0 free_throw 0 penalty_free_throw 0 charity_toss 0 charity_throw 0 charity_shot 0 002 @ 00110057 n 0000 ~ 00111222 n 0000 | an unhindered basketball shot from the foul line; given to penalize the other team for committing a foul -00111222 04 n 01 one-and-one 0 001 @ 00110964 n 0000 | a foul shot that must be made in order to earn the right to a second foul shot -00111358 04 n 02 hook_shot 0 hook 3 001 @ 00110057 n 0000 | a basketball shot made over the head with the hand that is farther from the basket -00111503 04 n 02 jumper 0 jump_shot 0 002 @ 00110057 n 0000 ;c 00480993 n 0000 | (basketball) a player releases the basketball at the high point of a jump -00111660 04 n 02 lay-up 0 layup 0 001 @ 00110057 n 0000 | a basketball shot made with one hand from a position under or beside the basket (and usually banked off the backboard) -00111839 04 n 01 pivot_shot 0 001 @ 00110057 n 0000 | a one-handed basketball shot made while whirling on the pivot foot -00111962 04 n 01 set_shot 0 001 @ 00110057 n 0000 | a two-handed basketball shot from a stationary position -00112072 04 n 01 scoop_shot 0 001 @ 00110057 n 0000 | a basketball shot made with an underhand scooping motion -00112185 04 n 01 tip_in 0 001 @ 00110057 n 0000 | a basketball shot made by tapping the rebounding ball back into the basket -00112312 04 n 02 push 0 pushing 0 011 @ 00045250 n 0000 + 01871979 v 0201 + 01447632 v 0102 + 01872877 v 0101 + 01872645 v 0101 + 01871979 v 0101 ~ 00112674 n 0000 ~ 00112997 n 0000 ~ 00113113 n 0000 ~ 00113726 n 0000 ~ 01211339 n 0000 | the act of applying force in order to move something away; "he gave the door a hard push"; "the pushing is good exercise" -00112674 04 n 01 depression 1 003 @ 00112312 n 0000 + 01574766 v 0102 ~ 00112828 n 0000 | pushing down; "depression of the space bar on the typewriter" -00112828 04 n 02 click 0 mouse_click 0 002 @ 00112674 n 0000 + 01893771 v 0102 | depression of a button on a computer mouse; "a click on the right button for example" -00112997 04 n 02 nudge 0 jog 1 003 @ 00112312 n 0000 + 01231528 v 0201 + 01231252 v 0101 | a slight push or shake -00113113 04 n 03 press 0 pressure 0 pressing 0 012 @ 00112312 n 0000 + 01387786 v 0306 + 01390616 v 0301 + 01447257 v 0301 + 01447257 v 0201 + 01447632 v 0101 + 01754105 v 0101 + 01387786 v 0106 + 01390616 v 0101 + 01447257 v 0101 ~ 00113532 n 0000 ~ 00356790 n 0000 | the act of pressing; the exertion of pressure; "he gave the button a press"; "he used pressure to stop the bleeding"; "at the pressing of a button" -00113532 04 n 01 impression 1 002 @ 00113113 n 0000 + 01531742 v 0101 | the act of pressing one thing on or into the surface of another; "he watched the impression of the seal on the hot wax" -00113726 04 n 01 shove 0 006 @ 00112312 n 0000 + 02094569 v 0103 + 01584701 v 0101 + 01871680 v 0102 ~ 00113954 n 0000 ~ 00114095 n 0000 | the act of shoving (giving a push to someone or something); "he gave the door a shove" -00113954 04 n 01 bundling 1 001 @ 00113726 n 0000 | the act of shoving hastily; "she complained about bundling the children off to school" -00114095 04 n 02 jostle 0 jostling 0 006 @ 00113726 n 0000 + 01914453 v 0201 + 01871680 v 0201 + 01871680 v 0101 + 01914453 v 0101 ~ 00114298 n 0000 | the act of jostling (forcing your way by pushing) -00114298 04 n 01 elbowing 0 002 @ 00114095 n 0000 + 01873942 v 0101 | jostling with the elbows; "elbowing is a foul in basketball" -00114431 04 n 02 pull 0 pulling 0 013 @ 00045250 n 0000 + 01609287 v 0201 + 01448100 v 0201 + 01609287 v 0101 + 01505254 v 0102 + 01448100 v 0101 ~ 00114871 n 0000 ~ 00115036 n 0000 ~ 00115500 n 0000 ~ 00115667 n 0000 ~ 00115803 n 0000 ~ 00116008 n 0000 ~ 00116122 n 0000 | the act of pulling; applying force to move something toward or with you; "the pull up the hill had him breathing harder"; "his strenuous pulling strained his back" -00114871 04 n 01 drag 0 003 @ 00114431 n 0000 + 01454810 v 0104 + 01453433 v 0101 | the act of dragging (pulling with force); "the drag up the hill exhausted him" -00115036 04 n 03 draw 0 haul 0 haulage 0 007 @ 00114431 n 0000 + 01454810 v 0301 + 01452255 v 0301 + 01452255 v 0201 + 01454810 v 0201 + 01448100 v 0102 ~ 00115292 n 0000 | the act of drawing or hauling something; "the haul up the hill went very slowly" -00115292 04 n 02 tow 0 towage 0 003 @ 00115036 n 0000 + 01454431 v 0201 + 01454431 v 0101 | the act of hauling something (as a vehicle) by means of a hitch or rope; "the truck gave him a tow to the garage" -00115500 04 n 02 tug 0 jerk 1 006 @ 00114431 n 0000 + 01891817 v 0201 + 01592072 v 0202 + 01453256 v 0101 + 01453109 v 0101 + 01452918 v 0101 | a sudden abrupt pull -00115667 04 n 03 draft 0 draught 0 drawing 4 002 @ 00114431 n 0000 + 01448100 v 0302 | the act of moving a load by drawing or pulling -00115803 04 n 03 extirpation 1 excision 1 deracination 0 004 @ 00114431 n 0000 + 01566916 v 0303 + 01662118 v 0103 + 01566916 v 0102 | the act of pulling up or out; uprooting; cutting off from existence -00116008 04 n 01 pluck 0 002 @ 00114431 n 0000 + 01452546 v 0101 | the act of pulling and releasing a taut cord -00116122 04 n 01 traction 0 002 @ 00114431 n 0000 ;c 06064106 n 0000 | (orthopedics) the act of pulling on a bone or limb (as in a fracture) to relieve pressure or align parts in a special way during healing; "his leg was in traction for several days" -00116376 04 n 03 lift 0 raise 0 heave 2 007 @ 00045250 n 0000 + 01455866 v 0301 + 01974062 v 0201 + 01973759 v 0202 + 01455184 v 0102 + 01973759 v 0101 + 01974062 v 0102 | the act of raising something; "he responded with a lift of his eyebrow"; "fireman learn several different raises for getting ladders up" -00116687 04 n 04 expulsion 0 projection 0 ejection 1 forcing_out 0 010 @ 00045250 n 0000 + 02076999 v 0301 + 01375637 v 0304 + 00104868 v 0304 + 00104868 v 0103 ~ 00117578 n 0000 ~ 00117810 n 0000 ~ 00118445 n 0000 ~ 00118552 n 0000 ~ 00118733 n 0000 | the act of expelling or projecting or ejecting -00116989 04 n 01 defenestration 0 002 @ 00206927 n 0000 + 01508884 v 0101 | the act of throwing someone or something out of a window -00117124 04 n 01 accommodation_reflex 0 001 @ 00863513 n 0000 | reflex changes in the eyes that enable an object to be focused on the retina -00117267 04 n 03 Babinski 0 Babinski_reflex 0 Babinski_sign 0 001 @ 00863513 n 0000 | extension upward of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front; normal in infants under the age of two years but a sign of brain or spinal cord injury in older persons -00117578 04 n 05 belch 0 belching 0 burp 0 burping 0 eructation 0 005 @ 00863513 n 0000 @ 00116687 n 0000 + 00003431 v 0504 + 00003431 v 0301 + 00003431 v 0103 | a reflex that expels gas noisily from the stomach through the mouth -00117810 04 n 01 belching 1 001 @ 00116687 n 0000 | the forceful expulsion of something from inside; "the belching of smoke from factory chimneys" -00117959 04 n 07 blink 0 eye_blink 0 blinking 0 wink 0 winking 0 nictitation 0 nictation 0 009 @ 00863513 n 0000 + 00007739 v 0704 + 00007739 v 0603 + 00007739 v 0502 + 00007739 v 0402 + 00007739 v 0301 + 00008435 v 0102 + 00007739 v 0101 ~ 01265176 n 0000 | a reflex that closes and opens the eyes rapidly -00118268 04 n 02 blush 0 flush 0 003 @ 00863513 n 0000 + 00103317 v 0203 + 00103317 v 0101 | sudden reddening of the face (as from embarrassment or guilt or shame or modesty) -00118445 04 n 01 coughing_up 0 001 @ 00116687 n 0000 | the act of expelling (food or phlegm) by coughing -00118552 04 n 03 spit 0 spitting 0 expectoration 0 004 @ 00116687 n 0000 + 00006238 v 0301 + 00101956 v 0201 + 00101956 v 0101 | the act of spitting (forcefully expelling saliva) -00118733 04 n 06 vomit 0 vomiting 0 emesis 0 regurgitation 0 disgorgement 0 puking 0 010 @ 00863513 n 0000 @ 00116687 n 0000 + 00076400 v 060b + 00076400 v 0508 + 00076400 v 0412 + 00076400 v 0201 + 00076400 v 0101 ~ 00119079 n 0000 ~ 00119210 n 0000 ~ 00119297 n 0000 | the reflex act of ejecting the contents of the stomach through the mouth -00119079 04 n 01 rumination 0 001 @ 00118733 n 0000 | regurgitation of small amounts of food; seen in some infants after feeding -00119210 04 n 02 hematemesis 0 haematemesis 0 001 @ 00118733 n 0000 | vomiting blood -00119297 04 n 01 hyperemesis 0 002 @ 00118733 n 0000 ~ 00119402 n 0000 | severe and excessive vomiting -00119402 04 n 01 hyperemesis_gravidarum 0 001 @ 00119297 n 0000 | hyperemesis during pregnancy; if severe it can result in damage to the brain and liver and kidney -00119568 04 n 02 jump 0 jumping 1 009 @ 00045250 n 0000 + 01963942 v 0201 + 01963942 v 0101 ~ 00119893 n 0000 ~ 00120010 n 0000 ~ 00120202 n 0000 ~ 00120515 n 0000 ~ 00120647 n 0000 ~ 00512351 n 0000 | the act of jumping; propelling yourself off the ground; "he advanced in a series of jumps"; "the jumping was unexpected" -00119893 04 n 01 header 1 001 @ 00119568 n 0000 | a headlong jump (or fall); "he took a header into the shrubbery" -00120010 04 n 01 hop 0 005 @ 00119568 n 0000 + 02094788 v 0101 + 02094922 v 0101 + 02095211 v 0101 + 01966861 v 0101 | the act of hopping; jumping upward or forward (especially on one foot) -00120202 04 n 06 leap 0 leaping 0 spring 0 saltation 0 bound 0 bounce 0 010 @ 00119568 n 0000 + 01963942 v 0503 + 01892104 v 0505 + 01965464 v 0401 + 01892104 v 0304 + 01963942 v 0304 + 01965156 v 0102 + 01963942 v 0102 ~ 00512267 n 0000 ~ 01258161 n 0000 | a light, self-propelled movement upwards or forwards -00120515 04 n 02 vault 0 hurdle 0 003 @ 00119568 n 0000 + 01967205 v 0201 + 01966168 v 0101 | the act of jumping over an obstacle -00120647 04 n 01 jumping_up_and_down 0 001 @ 00119568 n 0000 | jumping in one spot (as in excitement); "the wailing and jumping up and down exhausted him" -00120804 04 n 01 lob 0 002 @ 00045250 n 0000 + 01513290 v 0101 | the act of propelling something (as a ball or shell etc.) in a high arc -00120943 04 n 02 centering 0 snap 1 003 @ 00105820 n 0000 ;c 00469651 n 0000 + 01402872 v 0201 | (American football) putting the ball in play by passing it (between the legs) to a back; "the quarterback fumbled the snap" -00121166 04 n 01 sending 0 006 @ 00042311 n 0000 + 01951480 v 0101 + 01437254 v 0101 + 01062555 v 0101 + 01031256 v 0103 ~ 00121366 n 0000 | the act of causing something to go (especially messages) -00121366 04 n 03 transmission 1 transmittal 0 transmitting 0 008 @ 00121166 n 0000 + 01435380 v 0301 + 02079933 v 0203 + 01435380 v 0201 + 01435380 v 0101 ~ 00121645 n 0000 ~ 00122338 n 0000 ~ 00907071 n 0000 | the act of sending a message; causing a message to be transmitted -00121645 04 n 01 forwarding 1 003 @ 00121366 n 0000 + 01955508 v 0101 ~ 00121904 n 0000 | the act of sending on to another destination; "the forwarding of mail to a new address is done automatically"; "the forwarding of resumes to the personnel department" -00121904 04 n 01 referral 0 003 @ 00121645 n 0000 + 01952898 v 0101 ~ 00122106 n 0000 | the act of referring (as forwarding an applicant for employment or referring a matter to an appropriate agency) -00122106 04 n 03 remission 1 remitment 0 remit 0 005 @ 00121904 n 0000 ;c 08441203 n 0000 + 00949974 v 0301 + 00949974 v 0201 + 00949974 v 0101 | (law) the act of remitting (especially the referral of a law case to another court) -00122338 04 n 02 mailing 0 posting 0 004 @ 00121366 n 0000 + 01031256 v 0202 + 01437888 v 0101 + 01031256 v 0101 | the transmission of a letter; "the postmark indicates the time of mailing" -00122530 04 n 02 wheeling 0 rolling 0 003 @ 00045250 n 0000 + 01887020 v 0202 + 01887020 v 0101 | propelling something on wheels -00122661 04 n 02 shooting 0 shot 0 010 @ 00045250 n 0000 + 01134781 v 0102 ~ 00122954 n 0000 ~ 00123143 n 0000 ~ 00123234 n 0000 %p 00123652 n 0000 ~ 00123783 n 0000 ~ 00124256 n 0000 ~ 00124536 n 0000 ~ 00124766 n 0000 | the act of firing a projectile; "his shooting was slow but accurate" -00122954 04 n 01 shoot 0 004 @ 00122661 n 0000 + 01134781 v 0102 + 01137138 v 0101 ~ 00124342 n 0000 | the act of shooting at targets; "they hold a shoot every weekend during the summer" -00123143 04 n 01 countershot 0 001 @ 00122661 n 0000 | a return shot; a retaliatory shot -00123234 04 n 03 discharge 0 firing 2 firing_off 0 006 @ 00122661 n 0000 + 01133825 v 0201 + 01133825 v 0102 + 01134238 v 0102 + 01489332 v 0101 ~ 00123430 n 0000 | the act of discharging a gun -00123430 04 n 01 gun 0 003 @ 00123234 n 0000 ;c 08199025 n 0000 + 01136614 v 0101 | the discharge of a firearm as signal or as a salute in military ceremonies; "two runners started before the gun"; "a twenty gun salute" -00123652 04 n 01 fire_control 0 002 @ 01143040 n 0000 #p 00122661 n 0000 | preparation for the delivery of shellfire on a target -00123783 04 n 02 gunfire 0 gunshot 0 003 @ 00122661 n 0000 ~ 00124008 n 0000 ~ 00124151 n 0000 | the act of shooting a gun; "the gunfire endangered innocent bystanders"; "they retreated in the face of withering enemy fire" -00124008 04 n 02 enfilade 0 enfilade_fire 0 001 @ 00123783 n 0000 | gunfire directed along the length rather than the breadth of a formation -00124151 04 n 01 snipe 0 002 @ 00123783 n 0000 + 01135501 v 0102 | a gunshot from a concealed location -00124256 04 n 01 headshot 0 001 @ 00122661 n 0000 | a shot aimed at a person's head -00124342 04 n 03 skeet 0 skeet_shooting 0 trapshooting 0 001 @ 00122954 n 0000 | the sport of shooting at clay pigeons that are hurled upward in such a way as to simulate the flight of a bird -00124536 04 n 01 shellfire 0 001 @ 00122661 n 0000 | shooting artillery shells -00124617 04 n 03 gunfight 0 gunplay 0 shootout 0 001 @ 01170962 n 0000 | a fight involving shooting small arms with the intent to kill or frighten -00124766 04 n 01 potshot 0 001 @ 00122661 n 0000 | a shot taken at an easy or casual target (as by a pothunter) -00124880 04 n 02 contact 0 physical_contact 0 006 @ 00046522 n 0000 + 01205696 v 0104 ~ 00125126 n 0000 ~ 00127866 n 0000 ~ 00128324 n 0000 ~ 00138441 n 0000 | the act of touching physically; "her fingers came in contact with the light switch" -00125126 04 n 02 rub 0 wipe 0 005 @ 00124880 n 0000 + 01392237 v 0201 + 02119874 v 0101 + 01249724 v 0101 ~ 00125315 n 0000 | the act of rubbing or wiping; "he gave the hood a quick rub" -00125315 04 n 01 scuff 0 002 @ 00125126 n 0000 + 01917845 v 0101 | the act of scuffing (scraping or dragging the feet) -00125436 04 n 03 tap 0 pat 0 dab 0 007 @ 00046522 n 0000 + 01233194 v 0301 + 01233027 v 0301 + 01233027 v 0202 + 01243661 v 0202 + 02185373 v 0101 + 01247804 v 0101 | a light touch or stroke -00125629 04 n 03 hit 0 hitting 0 striking 0 016 @ 00046522 n 0000 + 01410223 v 0301 + 01405044 v 0201 + 01236164 v 0201 + 01400044 v 0201 + 01152396 v 0201 + 01137138 v 0202 + 01400044 v 0101 ~ 00126100 n 0000 ~ 00126236 n 0000 ~ 00128477 n 0000 ~ 00128638 n 0000 ~ 00129089 n 0000 ~ 00131485 n 0000 ~ 00131791 n 0000 ~ 00132219 n 0000 | the act of contacting one thing with another; "repeated hitting raised a large bruise"; "after three misses she finally got a hit" -00126100 04 n 01 contusion 0 002 @ 00125629 n 0000 + 01492725 v 0102 | the action of bruising; "the bruise resulted from a contusion" -00126236 04 n 02 crash 0 smash 0 003 @ 00125629 n 0000 + 01561819 v 0101 ~ 00126447 n 0000 | the act of colliding with something; "his crash through the window"; "the fullback's smash into the defensive line" -00126447 04 n 02 impingement 1 impaction 0 001 @ 00126236 n 0000 | a sharp collision produced by striking or dashing against something -00126584 04 n 01 batting 0 003 @ 00786195 n 0000 ;c 00471613 n 0000 + 01413173 v 0101 | (baseball) the batter's attempt to get on base -00126721 04 n 01 fielding 0 004 @ 00140652 n 0000 ;c 00471613 n 0000 + 01082290 v 0101 + 01081852 v 0101 | (baseball) handling the ball while playing in the field -00126886 04 n 01 catching 0 002 @ 00041188 n 0000 ;c 00471613 n 0000 | (baseball) playing the position of catcher on a baseball team -00127021 04 n 01 golfing 0 002 @ 00041188 n 0000 + 01146793 v 0101 | playing golf; "he goes south every winter for the golfing" -00127151 04 n 01 pitching 0 002 @ 00041188 n 0000 ;c 00471613 n 0000 | (baseball) playing the position of pitcher on a baseball team -00127286 04 n 03 base_on_balls 0 walk 1 pass 4 004 @ 00035189 n 0000 ;c 00471613 n 0000 + 01140654 v 0201 + 01113473 v 0201 | (baseball) an advance to first base by a batter who receives four balls; "he worked the pitcher for a base on balls" -00127531 04 n 01 best 0 003 @ 00786195 n 0000 + 00227507 a 0101 ! 00127672 n 0101 | the supreme effort one can make; "they did their best" -00127672 04 n 01 worst 0 003 @ 00786195 n 0000 + 00229630 a 0101 ! 00127531 n 0101 | the weakest effort or poorest achievement one is capable of; "it was the worst he had ever done on a test" -00127866 04 n 01 fair_ball 0 003 @ 00124880 n 0000 ;c 00471613 n 0000 ! 00128091 n 0101 | (baseball) a ball struck with the bat so that it stays between the lines (the foul lines) that define the width of the playing field -00128091 04 n 01 foul_ball 0 003 @ 00770997 n 0000 ;c 00471613 n 0000 ! 00127866 n 0101 | (baseball) a ball struck with the bat so that it does not stay between the lines (the foul lines) that define the width of the playing field -00128324 04 n 01 snick 1 003 @ 00124880 n 0000 #p 00476389 n 0000 + 01408489 v 0101 | a glancing contact with the ball off the edge of the cricket bat -00128477 04 n 01 bunt 0 003 @ 00125629 n 0000 ;c 00471613 n 0000 + 01408297 v 0101 | (baseball) the act of hitting a baseball lightly without swinging the bat -00128638 04 n 02 fly 0 fly_ball 0 008 @ 00125629 n 0000 ;c 00471613 n 0000 + 01402765 v 0101 ~ 00128867 n 0000 ~ 00128976 n 0000 ~ 00131608 n 0000 ~ 00150097 n 0000 ~ 00150228 n 0000 | (baseball) a hit that flies up in the air -00128867 04 n 01 blast 0 003 @ 00128638 n 0000 ;c 00471613 n 0000 + 01401772 v 0104 | a very long fly ball -00128976 04 n 03 pop_fly 0 pop-fly 0 pop-up 0 002 @ 00128638 n 0000 ;c 00471613 n 0000 | a short high fly ball -00129089 04 n 04 grounder 0 ground_ball 0 groundball 0 hopper 0 006 @ 00125629 n 0000 ;c 00471613 n 0000 + 01966861 v 0401 + 01406512 v 0101 ~ 00129317 n 0000 ~ 00129435 n 0000 | (baseball) a hit that travels along the ground -00129317 04 n 02 chop 1 chopper 0 002 @ 00129089 n 0000 + 01415454 v 0201 | a grounder that bounces high in the air -00129435 04 n 01 roller 0 001 @ 00129089 n 0000 | a grounder that rolls along the infield -00129527 04 n 01 out 0 004 @ 00066636 n 0000 ;c 00471613 n 0000 ~ 00130093 n 0000 ~ 00130347 n 0000 | (baseball) a failure by a batter or runner to reach a base safely in baseball; "you only get 3 outs per inning" -00129743 04 n 04 force_out 0 force-out 0 force_play 0 force 0 002 @ 00130093 n 0000 ;c 00471613 n 0000 | a putout of a base runner who is required to run; the putout is accomplished by holding the ball while touching the base to which the runner must advance before the runner reaches that base; "the shortstop got the runner at second on a force" -00130093 04 n 01 putout 0 007 ;c 00471613 n 0000 @ 00129527 n 0000 + 01615457 v 0101 + 01154382 v 0101 ~ 00129743 n 0000 ~ 00130673 n 0000 ~ 00130846 n 0000 | an out resulting from a fielding play (not a strikeout); "the first baseman made 15 putouts" -00130347 04 n 01 strikeout 0 004 ;c 00471613 n 0000 @ 00129527 n 0000 + 01154175 v 0102 ~ 00130512 n 0000 | an out resulting from the batter getting three strikes -00130512 04 n 01 whiff 0 002 @ 00130347 n 0000 + 01409888 v 0101 | a strikeout resulting from the batter swinging at and missing the ball for the third strike -00130673 04 n 01 fielder's_choice 0 001 @ 00130093 n 0000 | a play made on a ground ball in which the fielder chooses to put out an advancing runner instead of the batter -00130846 04 n 01 sacrifice 2 003 @ 00130093 n 0000 ;c 00471613 n 0000 ~ 00130987 n 0000 | (baseball) an out that advances the base runners -00130987 04 n 01 sacrifice_fly 0 001 @ 00130846 n 0000 | a sacrifice made by hitting a long fly ball -00131090 04 n 02 base_hit 0 safety 0 006 @ 00043902 n 0000 ;c 00471613 n 0000 ~ 00132355 n 0000 ~ 00132601 n 0000 ~ 00132756 n 0000 ~ 00132982 n 0000 | (baseball) the successful act of striking a baseball in such a way that the batter reaches base safely -00131347 04 n 01 daisy_cutter 0 002 @ 00474568 n 0000 ;c 00523513 n 0000 | a batted or served ball that skims along close to the ground -00131485 04 n 01 header 0 002 @ 00125629 n 0000 ;c 00478262 n 0000 | (soccer) the act of hitting the ball with your head -00131608 04 n 02 liner 0 line_drive 0 002 @ 00128638 n 0000 ;c 00471613 n 0000 | (baseball) a hit that flies straight out from the batter; "the batter hit a liner to the shortstop" -00131791 04 n 02 scorcher 0 screamer 0 001 @ 00125629 n 0000 | a very hard hit ball -00131877 04 n 02 line-drive_single 0 line_single 0 001 @ 00132601 n 0000 | a single resulting from a line drive -00131991 04 n 02 line-drive_double 0 line_double 0 001 @ 00132756 n 0000 | a double resulting from a line drive -00132105 04 n 02 line-drive_triple 0 line_triple 0 001 @ 00132982 n 0000 | a triple resulting from a line drive -00132219 04 n 02 plunk 0 plunker 0 002 @ 00125629 n 0000 ;c 00471613 n 0000 | (baseball) hitting a baseball so that it drops suddenly -00132355 04 n 02 homer 0 home_run 0 003 @ 00131090 n 0000 + 01101218 v 0101 ~ 00132497 n 0000 | a base hit on which the batter scores a run -00132497 04 n 02 solo_homer 0 solo_blast 0 001 @ 00132355 n 0000 | a home run with no runners on base -00132601 04 n 02 single 0 bingle 0 003 @ 00131090 n 0000 + 01409374 v 0101 ~ 00131877 n 0000 | a base hit on which the batter stops safely at first base -00132756 04 n 04 double 0 two-base_hit 0 two-bagger 0 two-baser 0 003 @ 00131090 n 0000 + 01409523 v 0101 ~ 00131991 n 0000 | a base hit on which the batter stops safely at second base; "he hit a double to deep centerfield" -00132982 04 n 03 triple 0 three-base_hit 0 three-bagger 0 003 @ 00131090 n 0000 + 01409642 v 0101 ~ 00132105 n 0000 | a base hit at which the batter stops safely at third base -00133160 04 n 01 backhander 0 001 @ 01173038 n 0000 | a backhanded blow -00133234 04 n 01 clip 1 001 @ 01173038 n 0000 | a sharp slanting blow; "he gave me a clip on the ear" -00133338 04 n 05 knock 0 belt 0 rap 0 whack 0 whang 0 006 @ 01173038 n 0000 + 01412548 v 0501 + 00863433 v 0501 + 01415807 v 0401 + 01414288 v 0301 + 01238640 v 0101 | the act of hitting vigorously; "he gave the table a whack" -00133567 04 n 01 thwack 0 002 @ 01173038 n 0000 + 01414916 v 0102 | a hard blow with a flat object -00133668 04 n 03 smack 0 smacking 0 slap 0 005 @ 01173038 n 0000 + 01416871 v 0301 + 01414916 v 0201 + 01414916 v 0101 ~ 00134472 n 0000 | the act of smacking something; a blow delivered with an open hand -00133875 04 n 01 smacker 1 002 @ 01173038 n 0000 + 01414916 v 0101 | a very powerful blow with the fist -00133981 04 n 01 knockdown 0 002 @ 01173038 n 0000 + 01412346 v 0104 | a blow that knocks the opponent off his feet -00134099 04 n 03 knockout 0 KO 0 kayo 0 003 @ 01173038 n 0000 + 01414088 v 0102 ~ 00134246 n 0000 | a blow that renders the opponent unconscious -00134246 04 n 02 technical_knockout 0 TKO 0 001 @ 00134099 n 0000 | a knockout declared by the referee who judges one boxer unable to continue -00134391 04 n 01 swat 0 002 @ 01173038 n 0000 + 01396937 v 0101 | a sharp blow -00134472 04 n 01 spank 0 002 @ 00133668 n 0000 + 01420928 v 0101 | a slap with the flat of the hand -00134574 04 n 03 whip 0 lash 0 whiplash 0 004 @ 01173038 n 0000 + 01398032 v 0202 + 01411085 v 0205 + 01411085 v 0103 | a quick blow delivered with a whip or whiplike object; "the whip raised a red welt" -00134780 04 n 06 punch 0 clout 0 poke 0 lick 1 biff 0 slug 0 013 @ 01173038 n 0000 ;c 00445802 n 0000 + 01415585 v 0601 + 01416020 v 0503 + 01414626 v 0303 + 01412759 v 0201 + 01415285 v 0101 ~ 00135504 n 0000 ~ 00135637 n 0000 ~ 00135799 n 0000 ~ 00135952 n 0000 ~ 00136048 n 0000 ~ 00136152 n 0000 | (boxing) a blow with the fist; "I gave him a clout on his nose" -00135148 04 n 01 box 0 003 @ 01173038 n 0000 + 01419982 v 0101 + 01420765 v 0101 | a blow with the hand (usually on the ear); "I gave him a good box on the ear" -00135311 04 n 02 dig 2 jab 2 003 @ 00046522 n 0000 + 01229976 v 0201 + 01229976 v 0105 | the act of touching someone suddenly with your finger or elbow; "she gave me a sharp dig in the ribs" -00135504 04 n 03 counterpunch 0 parry 0 counter 0 002 @ 00134780 n 0000 + 01147060 v 0201 | a return punch (especially by a boxer) -00135637 04 n 04 haymaker 0 knockout_punch 0 KO_punch 0 Sunday_punch 0 001 @ 00134780 n 0000 | a hard punch that renders the opponent unable to continue boxing -00135799 04 n 01 hook 0 003 @ 00134780 n 0000 + 01396790 v 0101 ~ 00136230 n 0000 | a short swinging punch delivered from the side with the elbow bent -00135952 04 n 01 jab 0 002 @ 00134780 n 0000 + 01230555 v 0101 | a quick short straight punch -00136048 04 n 01 rabbit_punch 0 001 @ 00134780 n 0000 | a short chopping blow to the back of the neck -00136152 04 n 01 sucker_punch 0 001 @ 00134780 n 0000 | an unexpected punch -00136230 04 n 01 roundhouse 0 001 @ 00135799 n 0000 | a hook delivered with an exaggerated swing -00136329 04 n 03 kick 0 boot 0 kicking 0 011 @ 01173038 n 0000 + 01371756 v 0301 + 01370561 v 0301 + 01372556 v 0201 + 01370561 v 0101 + 01371756 v 0101 ~ 00136691 n 0000 ~ 00136876 n 0000 ~ 00136984 n 0000 ~ 00137279 n 0000 ~ 00137877 n 0000 | the act of delivering a blow with the foot; "he gave the ball a powerful kick"; "the team's kicking was excellent" -00136691 04 n 01 goal-kick 0 002 @ 00136329 n 0000 ;c 00478262 n 0000 | (association football) a kick by the defending side after the attacking side sends the ball over the goal-line -00136876 04 n 01 goal-kick 1 002 @ 00136329 n 0000 ;c 00470966 n 0000 | (rugby) an attempt to kick a goal -00136984 04 n 02 punt 0 punting 0 004 @ 00136329 n 0000 ;c 00468480 n 0000 + 01372408 v 0201 + 01372408 v 0101 | (football) a kick in which the football is dropped from the hands and kicked before it touches the ground; "the punt traveled 50 yards"; "punting is an important part of the game" -00137279 04 n 02 place_kick 0 place-kicking 0 007 @ 00136329 n 0000 ;c 00478262 n 0000 ;c 00468480 n 0000 + 01371044 v 0201 + 01112837 v 0201 ~ 00137534 n 0000 ~ 00241507 n 0000 | (sports) a kick in which the ball is placed on the ground before kicking -00137534 04 n 01 free_kick 0 003 @ 00137279 n 0000 ;c 00478262 n 0000 ~ 00137709 n 0000 | (soccer) a place kick that is allowed for a foul or infringement by the other team -00137709 04 n 01 corner_kick 0 001 @ 00137534 n 0000 | a free kick from the corner awarded to the other side when a player has sent the ball behind his own goal line -00137877 04 n 01 dropkick 0 003 @ 00136329 n 0000 ;c 00468480 n 0000 + 01372026 v 0101 | (football) kicking (as for a field goal) in which the football is dropped and kicked as it touches the ground -00138078 04 n 01 kiss 1 002 @ 00046522 n 0000 + 01431723 v 0101 | a light glancing touch; "there was a brief kiss of their hands in passing" -00138221 04 n 03 kiss 0 buss 0 osculation 0 006 @ 00046522 n 0000 + 01431230 v 0304 + 01431230 v 0203 + 01431230 v 0102 ~ 00138599 n 0000 ~ 00138799 n 0000 | the act of caressing with the lips (or an instance thereof) -00138441 04 n 01 laying_on 0 001 @ 00124880 n 0000 | the act of contacting something with your hand; "peonies can be blighted by the laying on of a finger" -00138599 04 n 02 smack 1 smooch 0 004 @ 00138221 n 0000 + 01425709 v 0201 + 01431879 v 0101 ~ 00138734 n 0000 | an enthusiastic kiss -00138734 04 n 01 smacker 0 001 @ 00138599 n 0000 | a loud kiss -00138799 04 n 03 soul_kiss 0 deep_kiss 0 French_kiss 0 001 @ 00138221 n 0000 | an openmouthed kiss in which your tongue is inserted into the other's mouth -00138956 04 n 04 catch 0 grab 0 snatch 0 snap 0 015 @ 00046522 n 0000 + 01439745 v 0403 + 01213146 v 0301 + 01439745 v 0301 + 02304648 v 0203 + 02099239 v 0201 + 01350283 v 0201 + 01439190 v 0202 + 01439190 v 0101 ~ 00139544 n 0000 ~ 00139758 n 0000 ~ 00139919 n 0000 ~ 00140112 n 0000 ~ 00140264 n 0000 ~ 00140393 n 0000 | the act of catching an object with the hands; "Mays made the catch with his back to the plate"; "he made a grab for the ball before it landed"; "Martin's snatch at the bridle failed and the horse raced away"; "the infielder's snap and throw was a single motion" -00139544 04 n 01 fair_catch 0 002 @ 00138956 n 0000 ;c 00469651 n 0000 | (American football) a catch of a punt on the fly by a defensive player who has signalled that he will not run and so should not be tackled -00139758 04 n 01 interception 1 002 @ 00138956 n 0000 ;c 00469651 n 0000 | (American football) the act of catching a football by a player on the opposing team -00139919 04 n 01 reception 3 002 @ 00138956 n 0000 ;c 00469651 n 0000 | (American football) the act of catching a pass in football; "the tight end made a great reception on the 20 yard line" -00140112 04 n 01 rebound 0 002 @ 00138956 n 0000 #p 00480993 n 0000 | the act of securing possession of the rebounding basketball after a missed shot -00140264 04 n 01 shoestring_catch 0 002 @ 00138956 n 0000 ;c 00471613 n 0000 | (baseball) a running catch made near the ground -00140393 04 n 04 mesh 0 meshing 0 interlock 0 interlocking 0 005 @ 00138956 n 0000 + 01606018 v 0401 + 01606736 v 0302 + 00405079 v 0301 + 01510827 v 0102 | the act of interlocking or meshing; "an interlocking of arms by the police held the crowd in check" -00140652 04 n 02 handling 1 manipulation 1 005 @ 00046522 n 0000 + 01211699 v 0201 + 00080929 v 0201 + 01210737 v 0101 ~ 00126721 n 0000 | the action of touching with the hands (or the skillful use of the hands) or by the use of mechanical means -00140900 04 n 01 fingering 0 003 @ 00046522 n 0000 + 01209678 v 0102 + 01209953 v 0101 | touching something with the fingers -00141027 04 n 01 grope 0 004 @ 00046522 n 0000 + 01211263 v 0101 + 02530936 v 0101 + 01314738 v 0101 | the act of groping; and instance of groping -00141176 04 n 01 audit 0 001 @ 00635850 n 0000 | a methodical examination or review of a condition or situation; "he made an audit of all the plants on his property"; "an energy efficiency audit"; "an email log audit" -00141396 04 n 07 autopsy 0 necropsy 0 postmortem 0 post-mortem 0 PM 0 postmortem_examination 0 post-mortem_examination 0 002 @ 00635850 n 0000 + 02150039 v 0101 | an examination and dissection of a dead body to determine cause of death or the changes produced by disease -00141669 04 n 01 check-in 0 002 @ 00048374 n 0000 + 00966152 v 0101 | the act of reporting your presence (as at an airport or a hotel) -00141806 04 n 03 check 5 checkout 0 check-out_procedure 0 008 @ 00879271 n 0000 + 00661824 v 0204 + 02658283 v 0101 + 00920336 v 0102 + 00663353 v 0101 + 00662589 v 0102 + 00661824 v 0101 ~ 00142140 n 0000 | the act of inspecting or verifying; "they made a check of their equipment"; "the pilot ran through the check-out procedure" -00142140 04 n 01 spot_check 0 002 @ 00141806 n 0000 + 00664111 v 0101 | a check on work performance or product quality made at random times without warning; "spot checks ensure a high level of performance by employees" -00142361 04 n 06 checkup 0 medical_checkup 0 medical_examination 0 medical_exam 0 medical 0 health_check 0 004 @ 00635850 n 0000 + 02760116 a 0501 %p 07003672 n 0000 %p 07004057 n 0000 | a thorough physical examination; includes a variety of tests depending on the age and sex and health of the person -00142665 04 n 02 comparison 0 comparing 0 009 @ 00635850 n 0000 + 00653620 v 0201 + 00652900 v 0201 + 00652900 v 0101 ~ 00651088 n 0000 ~ 00651176 n 0000 ~ 00651531 n 0000 ~ 00651670 n 0000 ~ 00651813 n 0000 | the act of examining resemblances; "they made a comparison of noise levels"; "the fractions selected for comparison must require pupils to consider both numerator and denominator" -00143057 04 n 02 fine-tooth_comb 0 fine-toothed_comb 0 001 @ 00635850 n 0000 | a method of examining in minute detail; "he went over the contract with a fine-tooth comb looking for loopholes" -00143251 04 n 04 follow-up 0 followup 0 reexamination 0 review 0 007 @ 00635850 n 0000 + 00696189 v 0401 + 00696189 v 0302 + 00486018 v 0202 + 00230276 v 0201 + 00486018 v 0102 + 00230276 v 0101 | a subsequent examination of a patient for the purpose of monitoring earlier treatment -00143536 04 n 01 going-over 0 001 @ 00635850 n 0000 | a careful and thorough inspection -00143626 04 n 02 once-over 0 look-over 0 001 @ 00635850 n 0000 | a swift cursory examination or inspection; "I gave him the once-over" -00143763 04 n 01 ophthalmoscopy 0 001 @ 00635850 n 0000 | examination of the interior of an eye using an ophthalmoscope -00143885 04 n 02 palpation 0 tactual_exploration 0 004 @ 00635850 n 0000 @ 00046522 n 0000 + 01210352 v 0101 ~ 00144182 n 0000 | a method of examination in which the examiner feels the size or shape or firmness or location of something (of body parts when the examiner is a health professional) -00144182 04 n 01 ballottement 0 001 @ 00143885 n 0000 | a palpatory technique for feeling a floating object in the body (especially for determining the position of a fetus by feeling the rebound of the fetus after a quick digital tap on the wall of the uterus) -00144445 04 n 03 tickle 0 tickling 0 titillation 0 006 @ 00046522 n 0000 + 02120140 v 0302 + 02120140 v 0201 + 01431987 v 0201 + 01431987 v 0101 + 02120140 v 0101 | the act of tickling -00144632 04 n 02 stroke 1 stroking 0 004 @ 00046522 n 0000 + 01225970 v 0201 + 01225970 v 0101 ~ 00144778 n 0000 | a light touch with the hands -00144778 04 n 01 caress 0 002 @ 00144632 n 0000 + 01226215 v 0101 | a gentle affectionate stroking (or something resembling it); "he showered her with caresses"; "soft music was a fond caress"; "the caresses of the breeze played over his face" -00145024 04 n 01 tag 0 004 @ 00046522 n 0000 ;c 00471613 n 0000 ;c 00487874 n 0000 + 01600600 v 0101 | (sports) the act of touching a player in a game (which changes their status in the game) -00145218 04 n 03 joining 0 connection 0 connexion 0 019 @ 00376063 n 0000 + 02389346 v 0303 + 01069190 v 0201 + 02389346 v 0203 + 02622234 v 0104 + 01295275 v 0101 + 01291069 v 0101 ~ 00145779 n 0000 ~ 00145929 n 0000 ~ 00146111 n 0000 ~ 00146277 n 0000 ~ 00146443 n 0000 ~ 00146572 n 0000 ~ 00147187 n 0000 ~ 00147314 n 0000 ~ 00147454 n 0000 ~ 00147595 n 0000 + 01069391 v 0201 + 01069391 v 0301 | the act of bringing two things into contact (especially for communication); "the joining of hands around the table"; "there was a connection via the internet" -00145779 04 n 01 hit 5 001 @ 00145218 n 0000 | a connection made via the internet to another website; "WordNet gets many hits from users worldwide" -00145929 04 n 01 interconnection 0 003 @ 00145218 n 0000 ;c 03082979 n 0000 + 01355646 v 0101 | (computer science) the act of interconnecting (wires or computers or theories etc.) -00146111 04 n 01 intersection 0 002 @ 00145218 n 0000 + 02023396 v 0101 | the act of intersecting (as joining by causing your path to intersect your target's path) -00146277 04 n 02 approximation 0 bringing_close_together 0 001 @ 00145218 n 0000 | the act of bringing near or bringing together especially the cut edges of tissue -00146443 04 n 01 concatenation 0 002 @ 00145218 n 0000 + 00190180 v 0101 | the act of linking together as in a series or chain -00146572 04 n 03 convergence 1 converging 0 convergency 0 010 @ 00145218 n 0000 + 00612114 a 0301 + 02710402 v 0301 + 02032634 v 0301 + 02710402 v 0201 + 02032634 v 0201 + 00368847 v 0201 + 00612114 a 0101 + 02032634 v 0101 ~ 00146856 n 0000 | the act of converging (coming closer) -00146856 04 n 03 merging 2 meeting 2 coming_together 2 003 @ 00146572 n 0000 + 00367685 v 0103 ~ 00147091 n 0000 | the act of joining together as one; "the merging of the two groups occurred quickly"; "there was no meeting of minds" -00147091 04 n 02 concourse 0 confluence 2 001 @ 00146856 n 0000 | a coming together of people -00147187 04 n 02 encounter 1 coming_upon 0 002 @ 00145218 n 0000 + 02023107 v 0103 | a casual meeting with a person or thing -00147314 04 n 01 articulation 0 002 @ 00145218 n 0000 + 02354287 v 0102 | the act of joining things in such a way that motion is possible -00147454 04 n 02 junction 0 adjunction 0 003 @ 00145218 n 0000 + 01205696 v 0202 + 01295275 v 0101 | an act of joining or adjoining things -00147595 04 n 02 fastening 0 attachment 0 010 @ 00145218 n 0000 + 01296462 v 0201 + 01340439 v 0101 ~ 00148653 n 0000 ~ 00148762 n 0000 ~ 00148836 n 0000 ~ 00148978 n 0000 ~ 00149084 n 0000 ~ 00149508 n 0000 ~ 01260182 n 0000 | the act of fastening things together -00147862 04 n 02 loosening 0 laxation 0 006 @ 00199707 n 0000 + 01284908 v 0103 + 00419375 v 0101 + 00419137 v 0101 ! 00148057 n 0101 ~ 00149262 n 0000 | the act of making something less tight -00148057 04 n 01 tightening 0 004 @ 00199707 n 0000 + 00420132 v 0101 ! 00147862 n 0101 ~ 00194005 n 0000 | the act of making something tighter; "the tightening of economic controls" -00148242 04 n 01 ligation 0 004 @ 00149084 n 0000 ;c 06063588 n 0000 + 00083334 v 0101 ~ 00148446 n 0000 | (surgery) tying a duct or blood vessel with a ligature (as to prevent bleeding during surgery) -00148446 04 n 01 tubal_ligation 0 002 @ 00148242 n 0000 @ 00853487 n 0000 | a sterilization procedure with women; both Fallopian tubes are tied in two places and the tubes removed in between the ligations -00148653 04 n 02 bonding 0 soldering 0 002 @ 00147595 n 0000 + 01595260 v 0201 | fastening firmly together -00148762 04 n 01 doweling 0 001 @ 00147595 n 0000 | fastening by dowels -00148836 04 n 02 grounding 0 earthing 0 003 @ 00147595 n 0000 + 01292727 v 0201 + 01292534 v 0101 | fastening electrical equipment to earth -00148978 04 n 01 linkage 0 002 @ 00147595 n 0000 + 01354673 v 0102 | the act of linking things together -00149084 04 n 02 tying 0 ligature 0 005 @ 00147595 n 0000 + 00083334 v 0201 + 01658444 v 0101 + 01285440 v 0101 ~ 00148242 n 0000 | the act of tying or binding things together -00149262 04 n 03 untying 0 undoing 1 unfastening 0 005 @ 00147862 n 0000 + 01344293 v 0301 + 01344140 v 0301 + 01284908 v 0202 + 01284908 v 0101 | loosening the ties that fasten something; "the tying of bow ties is an art; the untying is easy" -00149508 04 n 01 welding 0 004 @ 00147595 n 0000 + 01595830 v 0101 ~ 00149699 n 0000 ~ 00149895 n 0000 | fastening two pieces of metal together by softening with heat and applying pressure -00149699 04 n 02 butt_welding 0 butt-welding 0 006 @ 00149508 n 0000 + 01596404 v 0202 + 01596404 v 0201 + 01596404 v 0102 + 01596404 v 0101 ~ 00150379 n 0000 | creating a butt joint by welding -00149895 04 n 02 spot_welding 0 spot-welding 0 005 @ 00149508 n 0000 + 01596056 v 0201 + 01596056 v 0202 + 01596056 v 0101 + 01596056 v 0102 | creating an overlapping joint by welding at small points -00150097 04 n 01 flare 0 002 @ 00128638 n 0000 ;c 00471613 n 0000 | (baseball) a fly ball hit a short distance into the outfield -00150228 04 n 01 Texas_leaguer 0 002 @ 00128638 n 0000 ;c 00471613 n 0000 | (baseball) a fly ball that falls between and infielder and an outfielder -00150379 04 n 02 flash_welding 0 flash_butt_welding 0 001 @ 00149699 n 0000 | butt welding by creating an electric arc between the two pieces which melts and joins them; used for joining segments of metal pipe -00150591 04 n 02 lick 0 lap 0 004 @ 00046522 n 0000 + 01170983 v 0201 + 01432176 v 0202 + 01432176 v 0101 | touching with the tongue; "the dog's laps were warm and wet" -00150762 04 n 03 grazing 0 shaving 1 skimming 2 004 @ 00046522 n 0000 + 01248597 v 0201 + 01608508 v 0101 + 01240514 v 0101 | the act of brushing against while passing -00150932 04 n 01 tracing 1 001 @ 00043195 n 0000 | the discovery and description of the course of development of something; "the tracing of genealogies" -00151087 04 n 05 detection 0 catching 1 espial 0 spying 2 spotting 0 005 @ 00043195 n 0000 + 02154312 v 0502 + 02154312 v 0404 + 02154312 v 0303 + 02154508 v 0101 | the act of detecting something; catching sight of something -00151314 04 n 01 self-discovery 0 001 @ 00043195 n 0000 | discovering your own individuality -00151409 04 n 01 breakthrough 2 001 @ 00043195 n 0000 | making an important discovery -00151497 04 n 02 determination 0 finding 0 013 @ 00043195 n 0000 + 02154508 v 0203 + 00920336 v 0101 + 00918872 v 0101 + 00700708 v 0101 ~ 00152018 n 0000 ~ 00153809 n 0000 ~ 00153961 n 0000 ~ 00155298 n 0000 ~ 00155487 n 0000 ~ 00155970 n 0000 ~ 00156119 n 0000 ~ 00156293 n 0000 | the act of determining the properties of something, usually by research or calculation; "the determination of molecular structures" -00151914 04 n 01 rediscovery 0 002 @ 00043195 n 0000 + 02156384 v 0101 | the act of discovering again -00152018 04 n 02 designation 1 identification 0 006 @ 00151497 n 0000 + 01026095 v 0202 + 00714531 v 0201 + 00652346 v 0201 + 01030132 v 0101 ~ 00152727 n 0000 | the act of designating or identifying something -00152230 04 n 01 Bertillon_system 0 001 @ 01023820 n 0000 | a system or procedure for identifying persons -00152338 04 n 01 fingerprinting 0 002 @ 01023820 n 0000 + 01748748 v 0101 | the procedure of taking inked impressions of a person's fingerprints for the purpose of identification -00152519 04 n 02 genetic_profiling 0 genetic_fingerprinting 0 001 @ 01023820 n 0000 | the procedure of analyzing the DNA in samples of a person's body tissue or body fluid for the purpose of identification -00152727 04 n 02 diagnosis 0 diagnosing 0 009 @ 00152018 n 0000 + 00645771 v 0201 + 00645552 v 0201 + 02975538 a 0101 + 00645771 v 0101 + 00645552 v 0101 ~ 00152990 n 0000 ~ 00153105 n 0000 ~ 00646332 n 0000 | identifying the nature or cause of some phenomenon -00152990 04 n 01 blood_typing 0 001 @ 00152727 n 0000 | determining a person's blood type by serological methods -00153105 04 n 01 medical_diagnosis 0 005 @ 00152727 n 0000 #p 00657604 n 0000 ~ 00153499 n 0000 ~ 00153665 n 0000 %p 00177127 n 0000 | identification of a disease from its symptoms -00153288 04 n 01 prenatal_diagnosis 0 004 @ 00177127 n 0000 ~ 00901789 n 0000 ~ 00943600 n 0000 ~ 00944456 n 0000 | any of the diagnostic procedures used to determine whether a fetus has a genetic abnormality -00153499 04 n 01 differential_diagnosis 0 001 @ 00153105 n 0000 | a systematic method of diagnosing a disorder (e.g., headache) that lacks unique symptoms or signs -00153665 04 n 03 prognosis 0 prospect 0 medical_prognosis 0 002 @ 00153105 n 0000 + 01883325 a 0102 | a prediction of the course of a disease -00153809 04 n 02 resolution 1 solving 0 004 @ 00151497 n 0000 + 00733044 v 0202 + 00634906 v 0201 + 00733044 v 0101 | finding a solution to a problem -00153961 04 n 03 validation 0 proof 0 substantiation 0 008 @ 00151497 n 0000 + 00665886 v 0304 + 01012561 v 0101 + 00667224 v 0101 ~ 00154233 n 0000 ~ 00154433 n 0000 ~ 00154689 n 0000 ~ 00154894 n 0000 | the act of validating; finding or testing the truth of something -00154233 04 n 02 authentication 0 certification 1 005 @ 00153961 n 0000 + 02444662 v 0203 + 02447793 v 0201 + 02349813 v 0201 + 00664276 v 0101 | validating the authenticity of something or someone -00154433 04 n 02 documentation 0 support 2 004 @ 00153961 n 0000 + 02663340 v 0204 + 00665886 v 0205 + 00666510 v 0101 | documentary validation; "his documentation of the results was excellent"; "the strongest support for this view is the work of Jones" -00154689 04 n 02 monetization 1 monetisation 1 004 @ 00153961 n 0000 + 02481231 v 0202 + 02481231 v 0101 ! 00155085 n 0101 | establishing something (e.g. gold or silver) as the legal tender of a country -00154894 04 n 01 probate 0 002 @ 00153961 n 0000 + 02465297 v 0101 | the act of proving that an instrument purporting to be a will was signed and executed in accord with legal requirements -00155085 04 n 02 demonetization 0 demonetisation 0 004 @ 00209943 n 0000 + 00494103 v 0202 + 00494103 v 0101 ! 00154689 n 0101 | ending something (e.g. gold or silver) as no longer the legal tender of a country -00155298 04 n 05 falsification 1 falsifying 0 disproof 0 refutation 0 refutal 0 003 @ 00151497 n 0000 + 00667747 v 0401 + 00667942 v 0201 | the act of determining that something is false -00155487 04 n 05 localization 0 localisation 0 location 1 locating 1 fix 2 008 @ 00151497 n 0000 + 02694933 v 0302 + 02286204 v 0301 + 02695895 v 0203 + 02509919 v 0202 + 02695895 v 0102 + 01711749 v 0102 ~ 00155797 n 0000 | a determination of the place where something is; "he got a good fix on the target" -00155797 04 n 02 echolocation 0 echo_sounding 0 001 @ 00155487 n 0000 | determining the location of something by measuring the time it takes for an echo to return from it -00155970 04 n 01 predetermination 0 002 @ 00151497 n 0000 + 00702773 v 0101 | the act of determining or ordaining in advance what is to take place -00156119 04 n 01 rectification 1 002 @ 00151497 n 0000 + 00919829 v 0101 | determination of the length of a curve; finding a straight line equal in length to a given curve -00156293 04 n 01 redetermination 0 002 @ 00151497 n 0000 + 00919960 v 0101 | determining again -00156390 04 n 03 trigger 0 induction 3 initiation 2 007 @ 00042311 n 0000 + 01628449 v 0302 + 00539546 v 0302 + 00770437 v 0201 + 00829761 v 0201 + 01643657 v 0103 ~ 00156625 n 0000 | an act that sets in motion some course of events -00156625 04 n 02 fomentation 0 instigation 0 004 @ 00156390 n 0000 + 00771961 v 0203 + 00851239 v 0202 + 02585050 v 0102 | deliberate and intentional triggering (of trouble or discord) -00156812 04 n 02 compulsion 0 coercion 0 004 @ 00042311 n 0000 + 02504562 v 0201 + 02506546 v 0101 ~ 01194904 n 0000 | using force to cause something to occur; "though pressed into rugby under compulsion I began to enjoy the game"; "they didn't have to use coercion" -00157081 04 n 01 influence 0 008 @ 00042311 n 0000 + 00701040 v 0104 ~ 00157318 n 0000 ~ 00157463 n 0000 ~ 00157957 n 0000 ~ 00158185 n 0000 ~ 00158996 n 0000 ~ 00159620 n 0000 | causing something without any direct or apparent effort -00157318 04 n 01 cross-pollination 0 001 @ 00157081 n 0000 | stimulating influence among diverse elements; "the cross-pollination of the arts" -00157463 04 n 01 exposure 6 004 @ 00157081 n 0000 + 02112029 v 0101 ~ 00157687 n 0000 ~ 00157877 n 0000 | the act of subjecting someone to an influencing experience; "she denounced the exposure of children to pornography" -00157687 04 n 01 overexposure 1 002 @ 00157463 n 0000 + 02113054 v 0101 | the act of exposing someone excessively to an influencing experience; "an overexposure to violence on television" -00157877 04 n 01 underexposure 1 001 @ 00157463 n 0000 | inadequate publicity -00157957 04 n 03 impingement 0 encroachment 2 impact 0 004 @ 00157081 n 0000 + 00137313 v 0302 + 02569790 v 0202 + 02569790 v 0101 | influencing strongly; "they resented the impingement of American values on European culture" -00158185 04 n 02 manipulation 0 use 2 005 @ 00157081 n 0000 + 02600490 v 0201 + 02536329 v 0101 + 01803936 v 0101 ~ 00158443 n 0000 | exerting shrewd or devious influence especially for one's own advantage; "his manipulation of his friends was scandalous" -00158443 04 n 01 mind_game 0 001 @ 00158185 n 0000 | deliberate actions of calculated psychological manipulation intended to intimidate or confuse (usually for competitive advantage); "football players try to play mind games with the opposition"; "the jeweler's mind game is to convince lovers that the size of a gemstone reflects the depth of their feelings" -00158805 04 n 03 autosuggestion 0 auto-suggestion 0 self-suggestion 0 001 @ 00261258 n 0000 | a system for self-improvement developed by Emile Coue which was popular in the 1920s and 1930s -00158996 04 n 03 hypnotism 0 mesmerism 0 suggestion 2 005 @ 00157081 n 0000 + 00168188 a 0202 + 10195261 n 0204 + 10195261 n 0205 + 10195261 n 0101 | the act of inducing hypnosis -00159177 04 n 02 inducement 0 inducing 0 006 @ 00042311 n 0000 + 01644522 v 0201 + 01644050 v 0201 + 00770437 v 0201 + 01644050 v 0101 ~ 00159396 n 0000 | act of bringing about a desired result; "inducement of sleep" -00159396 04 n 01 corruption 1 001 @ 00159177 n 0000 | inducement (as of a public official) by improper means (as bribery) to violate duty (as by commiting a felony); "he was held on charges of corruption and racketeering" -00159620 04 n 02 enticement 0 temptation 0 008 @ 00157081 n 0000 + 00782527 v 0203 + 00776523 v 0203 + 00782527 v 0101 ~ 00159899 n 0000 ~ 00160297 n 0000 ~ 00160415 n 0000 ~ 00161044 n 0000 | the act of influencing by exciting hope or desire; "his enticements were shameless" -00159899 04 n 02 blandishment 0 wheedling 0 004 @ 00159620 n 0000 + 00768778 v 0201 + 00880227 v 0102 ~ 00160073 n 0000 | the act of urging by means of teasing or flattery -00160073 04 n 02 ingratiation 0 insinuation 0 001 @ 00159899 n 0000 | the act of gaining acceptance or affection for yourself by persuasive and subtle blandishments; "she refused to use insinuation in order to gain favor" -00160297 04 n 02 leading_astray 0 leading_off 0 001 @ 00159620 n 0000 | the act of enticing others into sinful ways -00160415 04 n 01 seduction 0 002 @ 00159620 n 0000 + 00783246 v 0101 | enticing someone astray from right behavior -00160532 04 n 02 seduction 1 conquest 2 003 @ 00063652 n 0000 + 01428578 v 0101 ~ 00160688 n 0000 | an act of winning the love or sexual favor of someone -00160688 04 n 02 sexual_conquest 0 score 1 003 @ 00160532 n 0000 + 01428578 v 0202 ~ 00160922 n 0000 | a seduction culminating in sexual intercourse; "calling his seduction of the girl a `score' was a typical example of male slang" -00160922 04 n 01 cuckoldry 0 001 @ 00160688 n 0000 | the practice of making cuckolds; sexual conquests of married women -00161044 04 n 02 solicitation 1 allurement 0 003 @ 00159620 n 0000 + 00793785 v 0202 + 00781652 v 0102 | the act of enticing a person to do something wrong (as an offer of sex in return for money) -00161243 04 n 04 choice 0 selection 0 option 0 pick 0 011 @ 00037396 n 0000 + 00676450 v 0401 + 00679389 v 0303 + 00674607 v 0203 ~ 00161603 n 0000 ~ 00161739 n 0000 ~ 00161888 n 0000 ~ 00162632 n 0000 ~ 00163047 n 0000 ~ 00180962 n 0000 ~ 00183505 n 0000 | the act of choosing or selecting; "your choice of colors was unfortunate"; "you can take your pick" -00161603 04 n 01 casting 3 002 @ 00161243 n 0000 + 02385813 v 0101 | the choice of actors to play particular roles in a play or movie -00161739 04 n 02 coloration 0 colouration 0 003 @ 00161243 n 0000 + 01696648 v 0101 + 00283911 v 0101 | choice and use of colors (as by an artist) -00161888 04 n 01 sampling 0 004 @ 00161243 n 0000 ;c 06018465 n 0000 ~ 00162055 n 0000 ~ 00162417 n 0000 | (statistics) the selection of a suitable sample for study -00162055 04 n 01 random_sampling 0 002 @ 00161888 n 0000 ~ 00162236 n 0000 | the selection of a random sample; each element of the population has an equal chance of been selected -00162236 04 n 01 lucky_dip 1 002 @ 00162055 n 0000 ;r 08860123 n 0000 | a selection or decision purely at random; "their system of hiring people seemed to be a sort of lucky dip" -00162417 04 n 03 stratified_sampling 0 representative_sampling 0 proportional_sampling 0 001 @ 00161888 n 0000 | the population is divided into subpopulations (strata) and random samples are taken of each stratum -00162632 04 n 03 decision 0 determination 1 conclusion 1 013 @ 00161243 n 0000 + 01021420 v 0301 + 00634472 v 0303 + 00763399 v 0204 + 00918872 v 0201 + 00699815 v 0201 + 00697589 v 0203 + 00697589 v 0101 ~ 00163779 n 0000 ~ 00164801 n 0000 ~ 00165942 n 0000 ~ 00180054 n 0000 ~ 00180228 n 0000 | the act of making up your mind about something; "the burden of decision was his"; "he drew his conclusions quickly" -00163047 04 n 02 volition 0 willing 0 004 @ 00161243 n 0000 + 00698398 v 0201 + 02565801 a 0101 ~ 00163233 n 0000 | the act of making a choice; "followed my father of my own volition" -00163233 04 n 01 intention 0 002 @ 00163047 n 0000 + 00708538 v 0101 | an act of intending; a volition that you intend to carry out; "my intention changed once I saw her" -00163406 04 n 04 about-face 1 volte-face 0 reversal 5 policy_change 0 003 @ 00191142 n 0000 + 00689068 v 0101 ~ 00235074 n 0000 | a major change in attitude or principle or point of view; "an about-face on foreign policy" -00163630 04 n 01 adulteration 0 001 @ 00191142 n 0000 | the act of adulterating (especially the illicit substitution of one substance for another) -00163779 04 n 04 appointment 0 assignment 1 designation 0 naming 0 010 @ 00162632 n 0000 + 02396716 v 0401 + 02396205 v 0402 + 02391803 v 0302 + 02391803 v 0204 ~ 00164152 n 0000 ~ 00164999 n 0000 ~ 00165178 n 0000 ~ 00165298 n 0000 ~ 00165563 n 0000 | the act of putting a person into a non-elective position; "the appointment had to be approved by the whole committee" -00164152 04 n 01 nomination 0 004 @ 00163779 n 0000 + 02396716 v 0102 + 02396205 v 0103 + 00879540 v 0101 | the act of officially naming a candidate; "the Republican nomination for Governor" -00164345 04 n 02 assignment 2 assigning 0 003 @ 01083077 n 0000 + 00740053 v 0101 ~ 00164579 n 0000 | the act of distributing something to designated places or persons; "the first task is the assignment of an address to each datum" -00164579 04 n 02 allocation 1 storage_allocation 0 003 @ 00164345 n 0000 ;c 06128570 n 0000 + 02234087 v 0101 | (computer science) the assignment of particular areas of a magnetic disk to particular data or instructions -00164801 04 n 01 call 0 004 @ 00162632 n 0000 ;c 00523513 n 0000 + 00822746 v 0101 + 01068793 v 0101 | (sports) the decision made by an umpire or referee; "he was ejected for protesting the call" -00164999 04 n 02 co-option 1 co-optation 1 003 @ 00163779 n 0000 + 02397266 v 0201 + 02397266 v 0101 | the act of appointing summarily (with or without the appointee's consent) -00165178 04 n 01 delegacy 0 003 @ 00163779 n 0000 + 02395395 v 0101 + 02391803 v 0101 | the appointment of a delegate -00165298 04 n 02 ordination 0 ordinance 0 005 @ 00163779 n 0000 #p 01039822 n 0000 + 02386012 v 0201 ~ 00165793 n 0000 + 02427726 v 0201 | the act of ordaining; the act of conferring (or receiving) holy orders; "the rabbi's family was present for his ordination" -00165563 04 n 01 recognition 0 001 @ 00163779 n 0000 | designation by the chair granting a person the right to speak in a deliberative body; "he was unable to make his motion because he couldn't get recognition by the chairman" -00165793 04 n 01 laying_on_of_hands 0 001 @ 00165298 n 0000 | laying hands on a person's head to invoke spiritual blessing in Christian ordination -00165942 04 n 01 move 0 005 @ 00162632 n 0000 + 02367363 v 0102 + 00014549 v 0102 ~ 00168121 n 0000 ~ 00168237 n 0000 | the act of deciding to do something; "he didn't make a move to help"; "his first move was to hire a lawyer" -00166172 04 n 01 move 2 004 @ 00457382 n 0000 ;c 00455599 n 0000 + 01076615 v 0101 ~ 00166355 n 0000 | (game) a player's turn to take some action permitted by the rules of the game -00166355 04 n 01 chess_move 0 007 @ 00166172 n 0000 #p 00503237 n 0000 ~ 00166552 n 0000 ~ 00166702 n 0000 ~ 00167446 n 0000 ~ 00167764 n 0000 ~ 00167950 n 0000 | the act of moving a chess piece -00166552 04 n 02 castle 0 castling 0 003 @ 00166355 n 0000 + 01077329 v 0201 + 01077329 v 0101 | interchanging the positions of the king and a rook -00166702 04 n 01 capture 2 004 @ 00166355 n 0000 ~ 00166865 n 0000 ~ 00167063 n 0000 ~ 00167278 n 0000 | the removal of an opponent's piece from the chess board -00166865 04 n 01 en_passant 0 002 @ 00166702 n 0000 ;c 00503237 n 0000 | (chess) a chess pawn that is moved two squares can be captured by an opponent's pawn commanding the square that was passed -00167063 04 n 01 exchange 4 002 @ 00166702 n 0000 ;c 00503237 n 0000 | (chess) the capture by both players (usually on consecutive moves) of pieces of equal value; "the endgame began after the exchange of queens" -00167278 04 n 01 exchange 5 002 @ 00166702 n 0000 ;c 00503237 n 0000 | (chess) gaining (or losing) a rook in return for a knight or bishop; "black lost the exchange" -00167446 04 n 01 check 4 003 @ 00166355 n 0000 ;c 00503237 n 0000 ~ 00167580 n 0000 | (chess) a direct attack on an opponent's king -00167580 04 n 01 discovered_check 0 001 @ 00167446 n 0000 | a check on the opponent's king that is delivered by moving a piece out of the line of attack by a queen or rook or bishop -00167764 04 n 02 checkmate 0 mate 0 003 @ 00166355 n 0000 + 01114475 v 0202 + 01114475 v 0101 | a chess move constituting an inescapable and indefensible attack on the opponent's king -00167950 04 n 01 gambit 0 001 @ 00166355 n 0000 | a chess move early in the game in which the player sacrifices minor pieces in order to obtain an advantageous position -00168121 04 n 01 demarche 0 001 @ 00165942 n 0000 | a move or step or maneuver in political or diplomatic affairs -00168237 04 n 04 maneuver 0 manoeuvre 0 tactical_maneuver 0 tactical_manoeuvre 0 008 @ 00165942 n 0000 ~ 00168505 n 0000 ~ 00171249 n 0000 ~ 00172073 n 0000 ~ 00172347 n 0000 ~ 00172490 n 0000 ~ 00172598 n 0000 ~ 00174412 n 0000 | a move made to gain a tactical end -00168505 04 n 01 parking 0 002 @ 00168237 n 0000 + 01934427 v 0101 | the act of maneuvering a vehicle into a location where it can be left temporarily -00168658 04 n 02 move 1 relocation 0 006 @ 00191142 n 0000 + 00414409 v 0201 + 00414627 v 0201 + 01855606 v 0101 ~ 00168911 n 0000 ~ 08179033 n 0000 | the act of changing your residence or place of business; "they say that three moves equal one fire" -00168911 04 n 01 flit 1 002 @ 00168658 n 0000 ;r 08860123 n 0000 | a secret move (to avoid paying debts); "they did a moonlight flit" -00169047 04 n 01 downshift 0 001 @ 00191142 n 0000 | a change to a lower gear in a car or bicycle -00169147 04 n 01 downshift 1 001 @ 00191142 n 0000 | a change from a financially rewarding but stressful career to a less well paid but more fulfilling one -00169305 04 n 01 bank 0 003 @ 00170844 n 0000 + 02039413 v 0101 ~ 00169522 n 0000 | a flight maneuver; aircraft tips laterally about its longitudinal axis (especially in turning); "the plane went into a steep bank" -00169522 04 n 01 vertical_bank 0 001 @ 00169305 n 0000 | a bank so steep that the plane's lateral axis approaches the vertical -00169651 04 n 01 chandelle 0 001 @ 00170844 n 0000 | a flight maneuver consisting of a steep climbing turn executed to gain altitude while changing direction -00169811 04 n 02 loop 0 loop-the-loop 0 004 @ 00170844 n 0000 + 02044596 v 0101 ~ 00170005 n 0000 ~ 00170172 n 0000 | a flight maneuver; aircraft flies a complete circle in the vertical plane -00170005 04 n 01 inside_loop 0 001 @ 00169811 n 0000 | a loop consisting of a climb followed by inverted flight followed by a dive that returns to horizontal flight -00170172 04 n 01 outside_loop 0 001 @ 00169811 n 0000 | a loop consisting of a dive followed by inverted flight followed by a climb that returns to horizontal flight -00170340 04 n 01 roll 0 003 @ 00170844 n 0000 ~ 00170536 n 0000 ~ 00170643 n 0000 | a flight maneuver; aircraft rotates about its longitudinal axis without changing direction or losing altitude -00170536 04 n 01 barrel_roll 0 001 @ 00170340 n 0000 | a roll in which the plane follows a spiral course -00170643 04 n 01 snap_roll 0 001 @ 00170340 n 0000 | a fast roll -00170710 04 n 02 slip 0 sideslip 1 002 @ 00170844 n 0000 + 02076280 v 0101 | a flight maneuver; aircraft slides sideways in the air -00170844 04 n 02 flight_maneuver 0 airplane_maneuver 0 006 @ 00059552 n 0000 ~ 00169305 n 0000 ~ 00169651 n 0000 ~ 00169811 n 0000 ~ 00170340 n 0000 ~ 00170710 n 0000 | a maneuver executed by an aircraft -00171050 04 n 01 straight-arm 0 002 @ 00059552 n 0000 ;c 00469651 n 0000 | (American football) the act of warding off a tackler by holding the arm fully extended with the hand against the opponent -00171249 04 n 03 device 0 gimmick 0 twist 1 003 @ 00168237 n 0000 ~ 00171507 n 0000 ~ 00171618 n 0000 | any clever maneuver; "he would stoop to any device to win a point"; "it was a great sales gimmick"; "a cheap promotions gimmick for greedy businessmen" -00171507 04 n 01 mnemonic 0 001 @ 00171249 n 0000 | a device (such as a rhyme or acronym) used to aid recall -00171618 04 n 02 trick 5 fast_one 0 006 @ 00171249 n 0000 + 00148078 a 0109 + 00148078 a 010a + 09998101 n 0104 + 02575723 v 0104 ~ 00171882 n 0000 | a cunning or deceitful action or device; "he played a trick on me"; "he pulled a fast one and got away with it" -00171882 04 n 04 shtik 2 schtik 2 shtick 2 schtick 2 002 @ 00171618 n 0000 ;c 06951067 n 0000 | (Yiddish) a devious trick; a bit of cheating; "how did you ever fall for a shtik like that?" -00172073 04 n 01 feint 0 003 @ 00168237 n 0000 + 01722299 v 0101 ~ 00172217 n 0000 | any distracting or deceptive maneuver (as a mock attack) -00172217 04 n 02 juke 0 fake 0 002 @ 00172073 n 0000 ;c 00468480 n 0000 | (football) a deceptive move made by a football player -00172347 04 n 01 footwork 1 001 @ 00168237 n 0000 | skillful maneuvering or dealing; "she needs some fancy footwork to cover all those lies" -00172490 04 n 03 ploy 0 gambit 1 stratagem 0 001 @ 00168237 n 0000 | a maneuver in a game or conversation -00172598 04 n 02 ruse 0 artifice 0 001 @ 00168237 n 0000 | a deceptive maneuver (especially to avoid capture) -00172710 04 n 03 means 0 agency 0 way 1 015 @ 00044150 n 0000 + 02607909 a 0201 ~ 00173172 n 0000 ~ 00173283 n 0000 ~ 00173487 n 0000 ~ 00173761 n 0000 ~ 00174003 n 0000 ~ 00174260 n 0000 ~ 00177448 n 0000 ~ 00179125 n 0000 ~ 00179275 n 0000 ~ 00179380 n 0000 ~ 00179576 n 0000 ~ 00179683 n 0000 ~ 00179916 n 0000 | how a result is obtained or an end is achieved; "a means of control"; "an example is the best agency of instruction"; "the true way to success" -00173172 04 n 01 dint 0 001 @ 00172710 n 0000 | interchangeable with `means' in the expression `by means of' -00173283 04 n 01 escape 4 002 @ 00172710 n 0000 + 02074677 v 0101 | a means or way of escaping; "hard work was his escape from worry"; "they installed a second hatch as an escape"; "their escape route" -00173487 04 n 01 fast_track 0 001 @ 00172710 n 0000 | a rapid means of achieving a goal; "they saw independence as the fast track to democracy"; "he took a fast track to the top of the corporate ladder"; "the company went off the fast track when the stock market dropped" -00173761 04 n 02 instrument 0 tool 0 003 @ 00172710 n 0000 + 01196775 a 0102 + 02340543 v 0101 | the means whereby some act is accomplished; "my greed was the instrument of my destruction"; "science has given us new tools to fight disease" -00174003 04 n 01 road 0 002 @ 00172710 n 0000 ~ 00174127 n 0000 | a way or means to achieve something; "the road to fame" -00174127 04 n 01 royal_road 0 001 @ 00174003 n 0000 | an auspicious way or means to achieve something; "the royal road to success" -00174260 04 n 01 stepping_stone 0 001 @ 00172710 n 0000 | any means of advancement; "the job was just a stepping stone on his way to fame and riches" -00174412 04 n 02 measure 1 step 2 004 @ 00168237 n 0000 ~ 00174663 n 0000 ~ 00175605 n 0000 ~ 00822970 n 0000 | any maneuver made as part of progress toward a goal; "the situation called for strong measures"; "the police took steps to reduce crime" -00174663 04 n 01 countermeasure 0 002 @ 00174412 n 0000 ~ 01077190 n 0000 | an action taken to offset another action -00174782 04 n 01 bear_hug 1 001 @ 00790205 n 0000 | a takeover bid so attractive that the directors of the target company must approve it or risk shareholder protest -00174950 04 n 01 proxy_fight 0 001 @ 00790205 n 0000 | a measure used by an acquirer to gain control of a takeover target; acquirer tries to persuade other shareholders that the management of the target should be replaced -00175174 04 n 01 leveraged_buyout 0 002 @ 00789534 n 0000 ~ 00175433 n 0000 | a buyout using borrowed money; the target company's assets are usually security for the loan; "a leveraged buyout by upper management can be used to combat hostile takeover bids" -00175433 04 n 01 bust-up_takeover 0 001 @ 00175174 n 0000 | a leveraged buyout in which the target company's assets are sold to repay the loan that financed the takeover -00175605 04 n 02 shark_repellent 0 porcupine_provision 0 007 @ 00174412 n 0000 ~ 00175875 n 0000 ~ 00176052 n 0000 ~ 00176312 n 0000 ~ 00176449 n 0000 ~ 00176766 n 0000 ~ 00176994 n 0000 | a measure undertaken by a corporation to discourage unwanted takeover attempts -00175875 04 n 01 golden_parachute 0 001 @ 00175605 n 0000 | giving top executives lucrative benefits that must be paid by the acquirer if they are discharged after a takeover -00176052 04 n 01 greenmail 0 002 @ 00175605 n 0000 ;c 08059412 n 0000 | (corporation) the practice of purchasing enough shares in a firm to threaten a takeover and thereby forcing the owners to buy those shares back at a premium in order to stay in business -00176312 04 n 01 pac-man_strategy 0 001 @ 00175605 n 0000 | the target company defends itself by threatening to take over its acquirer -00176449 04 n 01 poison_pill 0 002 @ 00175605 n 0000 ~ 00176609 n 0000 | the target company defends itself by making its stock less attractive to an acquirer -00176609 04 n 01 suicide_pill 0 001 @ 00176449 n 0000 | a poison pill with potentially catastrophic implications for the company it is intended to protect -00176766 04 n 01 safe_harbor 0 001 @ 00175605 n 0000 | the target company defends itself by acquiring a company so onerously regulated that it makes the target less attractive; "the acquisition gave the company a safe harbor" -00176994 04 n 01 scorched-earth_policy 0 001 @ 00175605 n 0000 | the target company defends itself by selling off its crown jewels -00177127 04 n 02 diagnostic_procedure 0 diagnostic_technique 0 011 @ 01023820 n 0000 #p 00153105 n 0000 ~ 00153288 n 0000 ~ 00832092 n 0000 ~ 00832306 n 0000 ~ 00832471 n 0000 ~ 00876542 n 0000 ~ 00904623 n 0000 ~ 01006054 n 0000 ~ 01006188 n 0000 ~ 01006313 n 0000 | a procedure followed in making a medical diagnosis -00177448 04 n 01 expedient 0 005 @ 00172710 n 0000 ~ 00178551 n 0000 ~ 00178700 n 0000 ~ 00178832 n 0000 ~ 00178972 n 0000 | a means to an end; not necessarily a principled or ethical one -00177638 04 n 01 backstop 0 001 @ 00822970 n 0000 | a precaution in case of an emergency; "he acted as a backstop in case anything went wrong" -00177783 04 n 01 emergency_procedure 0 006 @ 01023820 n 0000 ;c 06043075 n 0000 ~ 00659349 n 0000 ~ 00831919 n 0000 ~ 00832626 n 0000 ~ 00833119 n 0000 | (medicine) a procedure adopted to meet an emergency (especially a medical emergency) -00178024 04 n 01 experimental_procedure 0 002 @ 01023820 n 0000 ~ 00178177 n 0000 | the specific techniques used in conducting a particular experiment -00178177 04 n 03 double-blind_procedure 0 double-blind_experiment 0 double-blind_study 0 001 @ 00178024 n 0000 | an experimental procedure in which neither the subjects of the experiment nor the persons administering the experiment know the critical aspects of the experiment; "a double-blind procedure is used to guard against both experimenter bias and placebo effects" -00178551 04 n 03 makeshift 0 stopgap 0 make-do 0 002 @ 00177448 n 0000 + 01757211 a 0103 | something contrived to meet an urgent need or emergency -00178700 04 n 01 crutch 0 001 @ 00177448 n 0000 | anything that serves as an expedient; "he uses drugs as a psychological crutch" -00178832 04 n 02 improvisation 0 temporary_expedient 0 003 @ 00177448 n 0000 + 02587895 v 0101 + 01728840 v 0101 | an unplanned expedient -00178972 04 n 02 pis_aller 0 last_resort 0 001 @ 00177448 n 0000 | an expedient adopted only in desperation; "`pis aller' is French for `worst going'" -00179125 04 n 01 desperate_measure 0 001 @ 00172710 n 0000 | desperate actions taken as a means to an end; "he had to resort to desperate measures" -00179275 04 n 01 open_sesame 0 001 @ 00172710 n 0000 | any very successful means of achieving a result -00179380 04 n 01 salvation 1 001 @ 00172710 n 0000 | a means of preserving from harm or unpleasantness; "tourism was their economic salvation"; "they turned to individualism as their salvation" -00179576 04 n 01 tooth 0 001 @ 00172710 n 0000 | a means of enforcement; "the treaty had no teeth in it" -00179683 04 n 01 voice 0 002 @ 00172710 n 0000 + 00933403 v 0101 | a means or agency by which something is expressed or communicated; "the voice of the law"; "the Times is not the voice of New York"; "conservatism has many voices" -00179916 04 n 01 wings 0 002 @ 00172710 n 0000 ;u 06295235 n 0000 | a means of flight or ascent; "necessity lends wings to inspiration" -00180054 04 n 03 casting_lots 0 drawing_lots 0 sortition 0 001 @ 00162632 n 0000 | making a chance decision by using lots (straws or pebbles etc.) that are thrown or drawn -00180228 04 n 01 resolution 0 002 @ 00162632 n 0000 + 00699626 v 0102 | a decision to do something or to behave in a certain manner; "he always wrote down his New Year's resolutions" -00180413 04 n 04 adoption 0 acceptance 0 acceptation 0 espousal 0 009 @ 01215392 n 0000 + 02346895 v 0403 + 02236124 v 0301 + 00797697 v 0301 + 00719231 v 0301 + 01985557 a 0202 + 00719231 v 0201 + 02346895 v 0101 ~ 00180770 n 0000 | the act of accepting with approval; favorable reception; "its adoption by society"; "the proposal found wide acceptance" -00180770 04 n 02 embrace 1 bosom 0 002 @ 00180413 n 0000 + 00601822 v 0102 | a close affectionate and protective acceptance; "his willing embrace of new ideas"; "in the bosom of the family" -00180962 04 n 01 election 0 004 @ 00161243 n 0000 + 02717538 a 0101 ~ 00181191 n 0000 ~ 00184135 n 0000 | the act of selecting someone or something; the exercise of deliberate choice; "her election of medicine as a profession" -00181191 04 n 02 co-option 0 co-optation 0 003 @ 00180962 n 0000 + 02401051 v 0201 + 02401051 v 0101 | the selection of a new member (usually by a vote of the existing membership) -00181373 04 n 01 reelection 0 002 @ 00181781 n 0000 + 02401296 v 0101 | election again; "he did not run for reelection" -00181495 04 n 01 plebiscite 0 001 @ 00182213 n 0000 | a vote by the electorate determining public opinion on a question of national importance -00181640 04 n 01 referendum 0 001 @ 00182213 n 0000 | a legislative act is referred for final approval to a popular vote by the electorate -00181781 04 n 01 election 1 015 @ 00182213 n 0000 + 02717538 a 0101 + 02400760 v 0101 ~ 00181373 n 0000 ~ 00182435 n 0000 ~ 00182571 n 0000 ~ 00183240 n 0000 ~ 00183357 n 0000 -c 00653811 n 0000 -c 06476573 n 0000 -c 09612131 n 0000 -c 09612291 n 0000 -c 10491136 n 0000 -c 13581067 n 0000 -c 13581218 n 0000 | a vote to select the winner of a position or political office; "the results of the election will be announced tonight" -00182213 04 n 01 vote 1 006 @ 01080366 n 0000 + 02462580 v 0101 + 02461314 v 0101 ~ 00181495 n 0000 ~ 00181640 n 0000 ~ 00181781 n 0000 | the opinion of a group as determined by voting; "they put the question to a vote" -00182435 04 n 01 general_election 0 001 @ 00181781 n 0000 | a national or state election; candidates are chosen in all constituencies -00182571 04 n 02 primary 0 primary_election 0 002 @ 00181781 n 0000 ~ 00182723 n 0000 | a preliminary election where delegates or nominees are chosen -00182723 04 n 01 direct_primary 0 003 @ 00182571 n 0000 ~ 00182897 n 0000 ~ 00183084 n 0000 | a primary where voters directly select the candidates who will run for office -00182897 04 n 01 closed_primary 0 001 @ 00182723 n 0000 | a primary in which only registered members of a particular political party can vote; "closed primaries strengthen party unity" -00183084 04 n 01 open_primary 0 001 @ 00182723 n 0000 | a primary in which any registered voter can vote (but must vote for candidates of only one party) -00183240 04 n 02 by-election 0 bye-election 0 001 @ 00181781 n 0000 | a special election between regular elections -00183357 04 n 01 runoff 0 002 @ 00181781 n 0000 + 01081505 v 0101 | a final election to resolve an earlier election that did not produce a winner -00183505 04 n 04 vote 0 ballot 0 voting 0 balloting 0 014 @ 00161243 n 0000 + 02461314 v 0301 + 02462580 v 0301 + 02463141 v 0201 + 02462580 v 0101 + 02461314 v 0101 ~ 00183995 n 0000 ~ 00184362 n 0000 ~ 00184501 n 0000 ~ 00184652 n 0000 ~ 00184802 n 0000 ~ 00184981 n 0000 ~ 00209546 n 0000 ~ 00209789 n 0000 | a choice that is made by counting the number of people in favor of each alternative; "there were only 17 votes in favor of the motion"; "they allowed just one vote per person" -00183995 04 n 01 block_vote 0 001 @ 00183505 n 0000 | a vote proportional in magnitude to the number of people that a delegate represents -00184135 04 n 01 cumulative_vote 0 001 @ 00180962 n 0000 | an election in which each person has as many votes as there are positions to be filled and they can all be cast for one candidate or can be distributed in any manner -00184362 04 n 01 secret_ballot 0 001 @ 00183505 n 0000 | a vote in which each person's choice is secret but the totaled votes are public -00184501 04 n 01 split_ticket 0 002 @ 00183505 n 0000 ! 00184652 n 0101 | a ballot cast by a voter who votes for candidates from more than one party -00184652 04 n 01 straight_ticket 0 002 @ 00183505 n 0000 ! 00184501 n 0101 | a ballot cast by a voter who votes for all the candidates of one party -00184802 04 n 01 multiple_voting 0 002 @ 00183505 n 0000 ;r 09044862 n 0000 | the act of voting in more than one place by the same person at the same election (illegal in U.S.) -00184981 04 n 01 casting_vote 0 001 @ 00183505 n 0000 | the deciding vote cast by the presiding officer to resolve a tie -00185104 04 n 02 reconciliation 0 balancing 0 003 @ 00044673 n 0000 + 00482893 v 0102 + 00482473 v 0103 | getting two things to correspond; "the reconciliation of his checkbook and the bank statement" -00185307 04 n 02 equation 0 equating 0 003 @ 00044673 n 0000 + 00653620 v 0203 + 00653620 v 0103 | the act of regarding as equal -00185438 04 n 03 breech_delivery 0 breech_birth 0 breech_presentation 0 002 @ 00042541 n 0000 ~ 00185612 n 0000 | delivery of an infant whose feet or buttocks appear first -00185612 04 n 02 frank_breech 0 frank_breech_delivery 0 001 @ 00185438 n 0000 | position of a fetus in which the buttocks are present at the maternal pelvic outlet -00185778 04 n 0d cesarean_delivery 0 caesarean_delivery 0 caesarian_delivery 0 cesarean_section 0 cesarian_section 0 caesarean_section 0 caesarian_section 0 C-section 0 cesarean 0 cesarian 0 caesarean 0 caesarian 0 abdominal_delivery 0 005 @ 00042541 n 0000 + 03029573 a 0b03 + 03029573 a 0a02 + 03029573 a 0901 %p 00677299 n 0000 | the delivery of a fetus by surgical incision through the abdominal wall and uterus (from the belief that Julius Caesar was born that way) -00186251 04 n 01 forceps_delivery 0 001 @ 00042541 n 0000 | delivery in which forceps are inserted through the vagina and used to grasp the head of the fetus and pull it through the birth canal; since the forceps can injure the fetus this procedure has generally given way to cesarean deliveries -00186549 04 n 01 midwifery 0 001 @ 00042541 n 0000 | assisting women at childbirth -00186634 04 n 01 score 0 016 @ 00063652 n 0000 + 01111816 v 0101 ~ 00187144 n 0000 ~ 00187337 n 0000 ~ 00187710 n 0000 ~ 00187890 n 0000 ~ 00188007 n 0000 ~ 00188620 n 0000 ~ 00188766 n 0000 ~ 00188934 n 0000 ~ 00189106 n 0000 ~ 00189565 n 0000 ~ 00190431 n 0000 ~ 00190579 n 0000 ~ 00482892 n 0000 ~ 00483098 n 0000 | the act of scoring in a game or sport; "the winning score came with less than a minute left to play" -00187056 04 n 01 bowling_score 0 001 @ 13594585 n 0000 | the score in a bowling match -00187144 04 n 01 bull's_eye 0 001 @ 00186634 n 0000 | in target shooting: a score made by hitting the center of the target; "in repeated sets of five shots his numbers of bull's-eyes varied" -00187337 04 n 01 goal 0 002 @ 00186634 n 0000 ~ 00187499 n 0000 | a successful attempt at scoring; "the winning goal came with less than a minute left to play" -00187499 04 n 01 own_goal 0 002 @ 00187337 n 0000 ;c 00478262 n 0000 | (soccer) a goal that results when a player inadvertently knocks the ball into the goal he is defending; "the own goal cost them the game" -00187710 04 n 02 strike 1 ten-strike 0 001 @ 00186634 n 0000 | a score in tenpins: knocking down all ten with the first ball; "he finished with three strikes in the tenth frame" -00187890 04 n 01 spare 0 001 @ 00186634 n 0000 | a score in tenpins; knocking down all ten after rolling two balls -00188007 04 n 02 open_frame 0 break 6 001 @ 00186634 n 0000 | any frame in which a bowler fails to make a strike or spare; "the break in the eighth frame cost him the match" -00188183 04 n 01 audible 0 001 @ 00558630 n 0000 | a football play is changed orally after both teams have assumed their positions at the line of scrimmage -00188341 04 n 01 football_score 0 002 @ 13594585 n 0000 ;c 00468480 n 0000 | the score in a football game -00188449 04 n 01 touchback 0 002 @ 00558630 n 0000 ;c 00469651 n 0000 | (American football) a play in which the opposing team has kicked the football into your end zone -00188620 04 n 01 safety 1 002 @ 00186634 n 0000 ;c 00469651 n 0000 | a score in American football; a player is tackled behind his own goal line -00188766 04 n 01 touchdown 0 002 @ 00186634 n 0000 ;c 00469651 n 0000 | a score in American football; being in possession of the ball across the opponents' goal line -00188934 04 n 01 field_goal 0 002 @ 00186634 n 0000 ;c 00469651 n 0000 | a score in American football; a score made by kicking the ball between the opponents' goal posts -00189106 04 n 01 conversion 2 003 @ 00186634 n 0000 + 01084866 v 0101 ~ 00189257 n 0000 | a successful free throw or try for point after a touchdown -00189257 04 n 03 point_after 0 point_after_touchdown 0 extra_point 0 003 @ 00189106 n 0000 @ 13610162 n 0000 ;c 00469651 n 0000 | in American football a point awarded for a successful place kick following a touchdown -00189476 04 n 01 baseball_score 0 001 @ 13594585 n 0000 | the score of a baseball game -00189565 04 n 02 run 1 tally 1 007 @ 00186634 n 0000 + 00949841 v 0201 + 01111816 v 0203 + 02525312 v 0101 ~ 00189896 n 0000 ~ 00190040 n 0000 ~ 00190180 n 0000 | a score in baseball made by a runner touching all four bases safely; "the Yankees scored 3 runs in the bottom of the 9th"; "their first tally came in the 3rd inning" -00189896 04 n 01 earned_run 0 002 @ 00189565 n 0000 ! 00190040 n 0101 | a run that was not scored as the result of an error by the other team -00190040 04 n 01 unearned_run 0 002 @ 00189565 n 0000 ! 00189896 n 0101 | a run that was scored as a result of an error by the other team -00190180 04 n 02 run_batted_in 0 rbi 0 001 @ 00189565 n 0000 | a run that is the result of the batter's performance; "he had more than 100 rbi last season" -00190338 04 n 01 basketball_score 0 001 @ 13594585 n 0000 | the score in a basketball game -00190431 04 n 02 basket 0 field_goal 1 002 @ 00186634 n 0000 + 09842047 n 0102 | a score in basketball made by throwing the ball through the hoop -00190579 04 n 01 hat_trick 0 003 @ 00186634 n 0000 ;c 00476389 n 0000 ;c 00463543 n 0000 | (sports) three consecutive scores by one player or three scores in one game (as in cricket or ice hockey etc.) -00190783 04 n 01 solution 0 002 @ 00063652 n 0000 + 00634906 v 0101 | the successful action of solving a problem; "the solution took three hours" -00190931 04 n 01 Russian_roulette 0 001 @ 00046344 n 0000 | a stunt in which you spin the cylinder of a revolver that is loaded with only one bullet and then point the muzzle at your head and pull the trigger -00191142 04 n 01 change 0 037 @ 00037396 n 0000 + 00123170 v 0101 + 00126264 v 0101 ~ 00049909 n 0000 ~ 00163406 n 0000 ~ 00163630 n 0000 ~ 00168658 n 0000 ~ 00169047 n 0000 ~ 00169147 n 0000 ~ 00191980 n 0000 ~ 00192300 n 0000 ~ 00194414 n 0000 ~ 00194645 n 0000 ~ 00195194 n 0000 ~ 00195415 n 0000 ~ 00195569 n 0000 ~ 00195938 n 0000 ~ 00196084 n 0000 ~ 00196485 n 0000 ~ 00198451 n 0000 ~ 00198793 n 0000 ~ 00199130 n 0000 ~ 00199707 n 0000 ~ 00279835 n 0000 ~ 00280586 n 0000 ~ 00331950 n 0000 ~ 00346296 n 0000 ~ 00351485 n 0000 ~ 00376063 n 0000 ~ 00400083 n 0000 ~ 00404170 n 0000 ~ 00404403 n 0000 ~ 01072565 n 0000 ~ 01152300 n 0000 ~ 01153139 n 0000 ~ 01155465 n 0000 ~ 01155722 n 0000 | the action of changing something; "the change of government had no impact on the economy"; "his change on abortion cost him the election" -00191980 04 n 01 filtration 0 004 @ 00191142 n 0000 + 01457954 v 0104 + 01458664 v 0101 ~ 00192149 n 0000 | the act of changing a fluid by passing it through a filter -00192149 04 n 01 percolation 1 003 @ 00191980 n 0000 + 01458464 v 0101 + 01458228 v 0101 | the filtration of a liquid for extraction or purification -00192300 04 n 02 reduction 2 simplification 2 004 @ 00191142 n 0000 + 00400427 v 0201 + 00242396 v 0101 ~ 00192457 n 0000 | the act of reducing complexity -00192457 04 n 02 schematization 1 schematisation 1 003 @ 00192300 n 0000 + 00568234 v 0202 + 00568234 v 0101 | the act of reducing to a scheme or formula -00192613 04 n 02 economy 0 saving 0 007 @ 00037396 n 0000 + 02577454 a 0101 + 00840212 a 0102 + 02357228 v 0102 + 02269143 v 0103 ~ 00192910 n 0000 ~ 00193099 n 0000 | an act of economizing; reduction in cost; "it was a small economy to walk to work every day"; "there was a saving of 50 cents" -00192910 04 n 03 retrenchment 0 curtailment 1 downsizing 0 003 @ 00192613 n 0000 + 02269767 v 0101 + 00430099 v 0101 | the reduction of expenditures in order to become financially stable -00193099 04 n 01 economy_of_scale 0 001 @ 00192613 n 0000 | the saving in cost of production that is due to mass production -00193225 04 n 01 accommodation 1 003 @ 00199707 n 0000 ;c 06080522 n 0000 + 03139585 a 0101 | (physiology) the automatic adjustment in focal length of the natural lens of the eye -00193406 04 n 01 adaptation 1 004 @ 00199707 n 0000 ;c 06080522 n 0000 ~ 00193622 n 0000 ~ 00193811 n 0000 | (physiology) the responsive adjustment of a sense organ (as the eye) to varying conditions (as of light) -00193622 04 n 01 dark_adaptation 0 001 @ 00193406 n 0000 | the process of adjusting the eyes to low levels of illumination; cones adapt first; rods continue to adapt for up to four hours -00193811 04 n 01 light_adaptation 0 001 @ 00193406 n 0000 | the process of adjusting the eyes to relatively high levels of illumination; the pupil constricts and the cones system is operative -00194005 04 n 01 take-up 0 001 @ 00148057 n 0000 | the action of taking up as by tightening or absorption or reeling in -00194127 04 n 01 readjustment 0 002 @ 07369604 n 0000 + 00151114 v 0101 | the act of adjusting again (to changed circumstances) -00194257 04 n 01 domestication 0 001 @ 07369604 n 0000 | accommodation to domestic life; "her explorer husband resisted all her attempts at domestication" -00194414 04 n 02 decimalization 0 decimalisation 0 005 @ 00191142 n 0000 + 00530829 v 0202 + 00530592 v 0202 + 00530829 v 0101 + 00530592 v 0101 | the act of changing to a decimal system; "the decimalization of British currency" -00194645 04 n 02 metrification 0 metrication 0 002 @ 00191142 n 0000 + 00381331 v 0204 | the act of changing from imperial units of measurement to metric units: meters, grams, seconds -00194831 04 n 01 habituation 0 002 @ 07369604 n 0000 + 00273445 v 0101 | a general accommodation to unchanging environmental conditions -00194969 04 n 02 variation 0 variance 0 004 @ 00407535 n 0000 + 02068277 a 0201 + 02661252 v 0202 + 02661252 v 0102 | an activity that varies from a norm or standard; "any variation in his routine was immediately reported" -00195194 04 n 01 variation 1 002 @ 00191142 n 0000 + 00436879 v 0101 | the act of changing or altering something slightly but noticeably from the norm or standard; "who is responsible for these variations in taxation?" -00195415 04 n 01 turning 1 002 @ 00191142 n 0000 + 00146138 v 0102 | act of changing in practice or custom; "the law took many turnings over the years" -00195569 04 n 02 diversification 0 variegation 0 004 @ 00191142 n 0000 + 00436879 v 0202 + 00437125 v 0101 + 00436404 v 0101 | the act of introducing variety (especially in investments or in the variety of goods and services offered); "my broker recommended a greater diversification of my investments"; "he limited his losses by diversification of his product line" -00195938 04 n 01 flux 0 001 @ 00191142 n 0000 | in constant change; "his opinions are in flux"; "the newness and flux of the computer industry" -00196084 04 n 03 switch 0 switching 0 shift 1 009 @ 00191142 n 0000 + 00555447 v 0301 + 02259005 v 0204 + 00380159 v 0201 + 00121678 v 0103 + 00550117 v 0101 + 00380159 v 0101 + 00140751 v 0102 ~ 00196402 n 0000 | the act of changing one thing or position for another; "his switch on abortion cost him the election" -00196402 04 n 01 switcheroo 0 001 @ 00196084 n 0000 | a sudden unexpected switch -00196485 04 n 03 substitution 0 exchange 1 commutation 2 009 @ 00191142 n 0000 + 00553407 v 0301 + 00380424 v 0302 + 02393489 v 0201 + 00140751 v 0203 + 02257767 v 0101 ~ 00197772 n 0000 ~ 00198118 n 0000 ~ 00198270 n 0000 | the act of putting one thing or person in the place of another: "he sent Smith in for Jones but the substitution came too late to help" -00196848 04 n 01 novation 0 003 @ 00197772 n 0000 ;c 08441203 n 0000 + 00577330 v 0101 | (law) the replacement of one obligation by another by mutual agreement of both parties; usually the replacement of one of the original parties to a contract with the consent of the remaining party -00197136 04 n 01 pitching_change 0 001 @ 00197772 n 0000 | replacing a pitcher in baseball -00197229 04 n 01 superannuation 0 002 @ 00216174 n 0000 + 02380418 v 0101 | the act of discharging someone because of age (especially to cause someone to retire from service on a pension) -00197419 04 n 02 supersedure 0 supersession 0 003 @ 00197772 n 0000 + 02405390 v 0203 + 02405390 v 0103 | act of replacing one person or thing by another especially one held to be superior -00197610 04 n 02 supplanting 0 displacement 0 002 @ 00197772 n 0000 + 02405390 v 0101 | act of taking the place of another especially using underhanded tactics -00197772 04 n 02 replacement 0 replacing 0 010 @ 00196485 n 0000 + 02405390 v 0202 + 00162688 v 0201 + 02405390 v 0102 + 02257767 v 0102 + 00162688 v 0101 ~ 00196848 n 0000 ~ 00197136 n 0000 ~ 00197419 n 0000 ~ 00197610 n 0000 | the act of furnishing an equivalent person or thing in the place of another; "replacing the star will not be easy" -00198118 04 n 01 subrogation 0 003 @ 00196485 n 0000 ;c 08441203 n 0000 + 02360882 v 0101 | (law) the act of substituting of one creditor for another -00198270 04 n 02 weaning 0 ablactation 0 002 @ 00196485 n 0000 + 01186958 v 0101 | the act of substituting other food for the mother's milk in the diet of a child or young mammal -00198451 04 n 01 promotion 0 006 @ 00191142 n 0000 + 02397637 v 0101 ! 00198793 n 0101 ~ 00065098 n 0000 ~ 00198631 n 0000 ~ 00198919 n 0000 | act of raising in rank or position -00198631 04 n 01 preferment 0 003 @ 00198451 n 0000 + 02400037 v 0101 + 00679389 v 0102 | the act of preferring; "the preferment went to the younger candidate" -00198793 04 n 01 demotion 0 003 @ 00191142 n 0000 + 02399331 v 0101 ! 00198451 n 0101 | act of lowering in rank or position -00198919 04 n 02 investment 2 investiture 0 002 @ 00198451 n 0000 + 02386675 v 0101 | the ceremonial act of clothing someone in the insignia of an office; the formal promotion of a person to an office or rank -00199130 04 n 01 change_of_state 0 025 @ 00191142 n 0000 ~ 00200244 n 0000 ~ 00201058 n 0000 ~ 00201516 n 0000 ~ 00201671 n 0000 ~ 00209943 n 0000 ~ 00231567 n 0000 ~ 00234892 n 0000 ~ 00235435 n 0000 ~ 00242808 n 0000 ~ 00243918 n 0000 ~ 00248368 n 0000 ~ 00248748 n 0000 ~ 00248977 n 0000 ~ 00261604 n 0000 ~ 00262249 n 0000 ~ 00266253 n 0000 ~ 00271263 n 0000 ~ 00273690 n 0000 ~ 00276620 n 0000 ~ 00277376 n 0000 ~ 00278810 n 0000 ~ 00279674 n 0000 ~ 00583747 n 0000 ~ 00583933 n 0000 | the act of changing something into something different in essential characteristics -00199707 04 n 03 alteration 1 modification 0 adjustment 0 011 @ 00191142 n 0000 + 00298067 v 0301 + 00169806 v 0201 + 00126264 v 0102 + 01667132 v 0101 ~ 00147862 n 0000 ~ 00148057 n 0000 ~ 00193225 n 0000 ~ 00193406 n 0000 ~ 01000843 n 0000 + 00126264 v 0203 | the act of making something different (as e.g. the size of a garment) -00200041 04 n 02 distraction 2 misdirection 1 002 @ 00399393 n 0000 + 01791756 v 0101 | the act of distracting; drawing someone's attention away from something; "conjurers are experts at misdirection" -00200244 04 n 01 aeration 0 002 @ 00199130 n 0000 + 00185465 v 0104 | the act of charging a liquid with a gas making it effervescent -00200379 04 n 01 modulation 0 002 @ 00399393 n 0000 + 00299341 v 0102 | the act of modifying or adjusting according to due measure and proportion (as with regard to artistic effect) -00200563 04 n 01 qualification 0 002 @ 00399393 n 0000 + 00199309 v 0101 | the act of modifying or changing the strength of some idea; "his new position involves a qualification of his party's platform" -00200768 04 n 01 reorganization 1 003 @ 00399393 n 0000 + 02433381 v 0101 + 02433123 v 0101 | an extensive alteration of the structure of a corporation or government; "after the takeover there was a thorough reorganization"; "the reorganization was prescribed by federal bankruptcy laws" -00201058 04 n 02 passage 4 transition 0 006 @ 00199130 n 0000 + 01915365 v 0201 + 00550546 v 0201 + 01972131 v 0102 ~ 00201269 n 0000 ~ 00201397 n 0000 | the act of passing from one state or place to the next -00201269 04 n 02 fossilization 0 fossilisation 0 002 @ 00201058 n 0000 + 00249556 v 0202 | becoming inflexible or out of date -00201397 04 n 01 segue 0 001 @ 00201058 n 0000 | the act of changing smoothly from one state or situation to another -00201516 04 n 02 meddling 0 tampering 0 003 @ 00199130 n 0000 + 02539101 v 0202 + 02539101 v 0101 | the act of altering something secretly or improperly -00201671 04 n 02 transfer 3 transference 1 003 @ 00199130 n 0000 + 01435380 v 0102 + 02232190 v 0101 | the act of transfering something from one form to another; "the transfer of the music from record to tape suppressed much of the background noise" -00201923 04 n 03 prohibition 0 inhibition 1 forbiddance 0 004 @ 00037396 n 0000 + 00795863 v 0301 + 00462092 v 0203 + 00795863 v 0102 | the action of prohibiting or inhibiting or forbidding (or an instance thereof); "they were restrained by a prohibition in their charter"; "a medical inhibition of alcoholic beverages"; "he ignored his parents' forbiddance" -00202284 04 n 02 resistance 2 opposition 1 005 @ 00037396 n 0000 + 00775831 v 0201 ~ 00202620 n 0000 ~ 00202816 n 0000 ~ 00790086 n 0000 | the action of opposing something that you disapprove or disagree with; "he encountered a general feeling of resistance from many citizens"; "despite opposition from the newspapers he went ahead" -00202620 04 n 01 lockout 0 002 @ 00202284 n 0000 + 02449717 v 0101 | a management action resisting employee's demands; employees are barred from entering the workplace until they agree to terms -00202816 04 n 01 reaction 1 002 @ 00202284 n 0000 ~ 00203020 n 0000 | doing something in opposition to another way of doing it that you don't like; "his style of painting was a reaction against cubism" -00203020 04 n 01 backlash 0 003 @ 00202816 n 0000 + 02378950 v 0102 ~ 00203208 n 0000 | an adverse reaction to some political or social occurrence; "there was a backlash of intolerance" -00203208 04 n 02 whitelash 0 white_backlash 0 001 @ 00203020 n 0000 | backlash by white racists against black civil rights advances -00203342 04 n 01 rejection 0 011 @ 00030358 n 0000 + 02237338 v 0102 + 00807178 v 0102 + 00685683 v 0101 ~ 00203649 n 0000 ~ 00203753 n 0000 ~ 00204439 n 0000 ~ 00205079 n 0000 ~ 00205349 n 0000 ~ 00206302 n 0000 ~ 00209446 n 0000 | the act of rejecting something; "his proposals were met with rejection" -00203649 04 n 01 brush-off 0 002 @ 00203342 n 0000 + 00800930 v 0104 | a curt or disdainful rejection -00203753 04 n 04 avoidance 0 turning_away 0 shunning 0 dodging 1 007 @ 00203342 n 0000 + 00809654 v 0409 + 00812149 v 0301 + 00811375 v 0101 ~ 00204022 n 0000 ~ 00204199 n 0000 ~ 00204334 n 0000 | deliberately avoiding; keeping away from or preventing from happening -00204022 04 n 02 aversion 0 averting 1 002 @ 00203753 n 0000 + 02034511 v 0101 | the act of turning yourself (or your gaze) away; "averting her gaze meant that she was angry" -00204199 04 n 01 escape 3 002 @ 00203753 n 0000 + 00810557 v 0102 | an avoidance of danger or difficulty; "that was a narrow escape" -00204334 04 n 01 near_thing 0 001 @ 00203753 n 0000 | something that barely avoids failure or disaster -00204439 04 n 03 abandonment 3 forsaking 0 desertion 1 007 @ 00203342 n 0000 + 02584097 v 0302 + 02227741 v 0101 + 00613393 v 0101 ~ 00204659 n 0000 ~ 00204814 n 0000 ~ 00204943 n 0000 | the act of giving something up -00204659 04 n 01 exposure 1 002 @ 00204439 n 0000 + 00614444 v 0101 | abandoning without shelter or protection (as by leaving as infant out in the open) -00204814 04 n 02 apostasy 0 tergiversation 1 002 @ 00204439 n 0000 + 00757856 v 0203 | the act of abandoning a party for cause -00204943 04 n 01 bolt 0 003 @ 00204439 n 0000 ;c 06148148 n 0000 + 02073714 v 0102 | a sudden abandonment (as from a political party) -00205079 04 n 03 renunciation 0 forgoing 0 forswearing 0 005 @ 00203342 n 0000 + 00798717 v 0303 + 02379198 v 0102 ~ 00205543 n 0000 ~ 00205649 n 0000 | the act of renouncing; sacrificing or giving up or surrendering (a possession or right or title or privilege etc.) -00205349 04 n 02 nonacceptance 0 turndown 0 004 @ 00203342 n 0000 + 02237338 v 0204 + 02502916 v 0202 + 00796976 v 0207 | the act of refusing an offer; "the turndown was polite but very firm" -00205543 04 n 02 forsaking 1 giving_up 0 002 @ 00205079 n 0000 + 00614057 v 0102 | the act of forsaking -00205649 04 n 05 abnegation 0 self-abnegation 0 denial 1 self-denial 1 self-renunciation 0 004 @ 01205961 n 0000 @ 00205079 n 0000 + 02213074 v 0301 + 02213074 v 0102 | renunciation of your own interests in favor of the interests of others -00205891 04 n 03 forfeit 0 forfeiture 0 sacrifice 1 004 @ 00030358 n 0000 + 02343595 v 0301 + 02303331 v 0201 + 02303331 v 0101 | the act of losing or surrendering something as a penalty for a mistake or fault or failure to perform etc. -00206130 04 n 01 boycott 0 002 @ 01177033 n 0000 + 02465494 v 0101 | a group's refusal to have commercial dealings with some organization in protest against its policies -00206302 04 n 02 banishment 0 proscription 0 010 @ 00203342 n 0000 + 00795863 v 0204 + 02503803 v 0101 ~ 00206600 n 0000 ~ 00206779 n 0000 ~ 00206927 n 0000 ~ 00207761 n 0000 ~ 00208277 n 0000 ~ 00208521 n 0000 ~ 00208694 n 0000 | rejection by means of an act of banishing or proscribing someone -00206600 04 n 02 anathematization 0 anathematisation 0 003 @ 00206302 n 0000 + 00864910 v 0207 + 00864910 v 0106 | the formal act of pronouncing (someone or something) accursed -00206779 04 n 01 disbarment 0 003 @ 00206302 n 0000 ;c 08441203 n 0000 + 02480588 v 0101 | the act of expelling a lawyer from the practice of law -00206927 04 n 04 ejection 0 exclusion 1 expulsion 1 riddance 0 010 @ 00206302 n 0000 + 02401809 v 0306 + 02501738 v 0301 + 01468576 v 0203 + 01468576 v 0101 ~ 00116989 n 0000 ~ 00207306 n 0000 ~ 00207434 n 0000 ~ 00207622 n 0000 ~ 00208797 n 0000 | the act of forcing out someone or something; "the ejection of troublemakers by the police"; "the child's expulsion from school" -00207306 04 n 01 deportation 1 002 @ 00206927 n 0000 + 02499312 v 0102 | the expulsion from a country of an undesirable alien -00207434 04 n 01 ostracism 0 005 @ 00206927 n 0000 + 02504017 v 0103 + 02465658 v 0101 + 02504017 v 0104 + 02465658 v 0102 | the act of excluding someone from society by general consent -00207622 04 n 02 barring 0 blackball 0 002 @ 00206927 n 0000 + 02504017 v 0207 | the act of excluding someone by a negative vote or veto -00207761 04 n 04 exile 0 deportation 0 expatriation 0 transportation 2 005 @ 00206302 n 0000 + 02499312 v 0301 + 02499312 v 0202 + 02499312 v 0103 ~i 00208141 n 0000 | the act of expelling a person from their native land; "men in exile dream of hope"; "his deportation to a penal colony"; "the expatriation of wealthy farmers"; "the sentence was one of transportation for life" -00208141 04 n 01 Babylonian_Captivity 0 001 @i 00207761 n 0000 | the deportation of the Jews to Babylonia by Nebuchadnezzar in 586 BC -00208277 04 n 02 excommunication 0 excision 2 002 @ 00206302 n 0000 + 01030397 v 0101 | the act of banishing a member of a church from the communion of believers and the privileges of the church; cutting a person off from a religious society -00208521 04 n 01 relegation 1 002 @ 00206302 n 0000 + 02503803 v 0102 | mild banishment; consignment to an inferior position; "he has been relegated to a post in Siberia" -00208694 04 n 01 rustication 1 002 @ 00206302 n 0000 + 02504416 v 0101 | banishment into the country -00208797 04 n 02 ouster 0 ousting 0 003 @ 00206927 n 0000 + 02401809 v 0201 ~ 00208943 n 0000 | the act of ejecting someone or forcing them out -00208943 04 n 02 deposition 0 dethronement 0 003 @ 00208797 n 0000 + 02391453 v 0201 + 02405252 v 0101 | the act of deposing someone; removing a powerful person from a position or office -00209132 04 n 02 suspension 1 temporary_removal 0 003 @ 01077881 n 0000 + 02502037 v 0101 ~ 00209301 n 0000 | a temporary debarment (from a privilege or position etc) -00209301 04 n 01 rustication 3 003 @ 00209132 n 0000 ;r 08860123 n 0000 + 02502232 v 0102 | temporary dismissal of a student from a university -00209446 04 n 01 displacement 1 001 @ 00203342 n 0000 | act of removing from office or employment -00209546 04 n 01 veto 0 004 @ 00183505 n 0000 + 00795863 v 0105 + 02473431 v 0101 ~ 00209680 n 0000 | a vote that blocks a decision -00209680 04 n 01 pocket_veto 0 001 @ 00209546 n 0000 | indirect veto of legislation by refusing to sign it -00209789 04 n 01 write-in 0 002 @ 00183505 n 0000 + 02461807 v 0101 | a vote cast by writing in the name of a candidate who is not listed on the ballot -00209943 04 n 03 termination 0 ending 0 conclusion 0 025 @ 00199130 n 0000 + 00715074 v 0301 + 00352826 v 0201 + 00352826 v 0102 ~ 00034939 n 0000 ~ 00155085 n 0000 ~ 00210940 n 0000 ~ 00211110 n 0000 ~ 00212205 n 0000 ~ 00212808 n 0000 ~ 00215314 n 0000 ~ 00215683 n 0000 ~ 00216038 n 0000 ~ 00216174 n 0000 ~ 00217014 n 0000 ~ 00219012 n 0000 ~ 00228283 n 0000 ~ 00228535 n 0000 ~ 00228911 n 0000 ~ 00229260 n 0000 ~ 00229934 n 0000 ~ 00230172 n 0000 ~ 00230324 n 0000 ~ 00233614 n 0000 ~ 01022483 n 0000 | the act of ending something; "the termination of the agreement" -00210518 04 n 02 finish 0 finishing 0 006 @ 00211110 n 0000 + 00484166 v 0202 + 02609764 v 0103 + 00484166 v 0102 ! 00235435 n 0102 ~ 00210797 n 0000 | the act of finishing; "his best finish in a major tournament was third"; "the speaker's finishing was greeted with applause" -00210797 04 n 04 finale 0 close 0 closing_curtain 0 finis 0 002 @ 00210518 n 0000 + 02610628 v 0202 | the concluding part of any performance -00210940 04 n 02 release 6 tone_ending 0 003 @ 00209943 n 0000 ;c 07020895 n 0000 ~ 07116443 n 0000 | (music) the act or manner of terminating a musical phrase or tone -00211110 04 n 05 completion 0 culmination 0 closing 2 windup 0 mop_up 0 014 @ 00209943 n 0000 + 00484892 v 0504 + 00352558 v 0405 + 02610628 v 0302 + 02425913 v 0301 + 00485609 v 0201 + 00484166 v 0101 ~ 00061598 n 0000 ~ 00061792 n 0000 ~ 00210518 n 0000 ~ 00211462 n 0000 ~ 00211593 n 0000 ~ 00211776 n 0000 ~ 00212065 n 0000 | a concluding action -00211462 04 n 02 finalization 0 finalisation 0 003 @ 00211110 n 0000 + 00481941 v 0202 + 00481941 v 0101 | the act of finalizing -00211593 04 n 01 follow-through 0 002 @ 00211110 n 0000 + 00486018 v 0101 | carrying some project or intention to full completion; "I appreciated his follow-through on his promise" -00211776 04 n 01 follow-through 1 003 @ 00211110 n 0000 #p 00565302 n 0000 + 01406016 v 0101 | the act of carrying a stroke to its natural completion; "his follow-through was straight down the line toward the target"; "squash can be dangerous if your opponent has a long follow-through" -00212065 04 n 01 graduation 1 003 @ 00211110 n 0000 + 02264179 v 0101 + 02264397 v 0101 | the successful completion of a program of study -00212205 04 n 01 retirement 0 005 @ 00209943 n 0000 + 02380009 v 0101 + 02379753 v 0101 ~ 00212377 n 0000 ~ 00212551 n 0000 | withdrawal from your position or occupation -00212377 04 n 01 hibernation 0 001 @ 00212205 n 0000 | the act of retiring into inactivity; "he emerged from his hibernation to make his first appearance in several years" -00212551 04 n 01 rustication 0 002 @ 00212205 n 0000 + 02616542 v 0101 | the action of retiring to and living in the country -00212678 04 n 02 swan_song 0 last_hurrah 0 001 @ 00550771 n 0000 | a final performance or effort (especially before retirement) -00212808 04 n 02 relinquishment 0 relinquishing 0 007 @ 00209943 n 0000 + 02316304 v 0202 + 02227487 v 0104 + 01474550 v 0104 ~ 00213052 n 0000 ~ 00213186 n 0000 ~ 00213694 n 0000 | the act of giving up and abandoning a struggle or task etc. -00213052 04 n 02 cession 0 ceding 0 004 @ 00212808 n 0000 + 02316649 v 0103 + 02235229 v 0102 ~ 01249991 n 0000 | the act of ceding -00213186 04 n 01 handover 0 002 @ 00212808 n 0000 + 02293321 v 0101 | act of relinquishing property or authority etc; "the handover of occupied territory" -00213343 04 n 01 surrender 1 003 @ 01108753 n 0000 + 02235229 v 0101 ~ 00213482 n 0000 | the delivery of a principal into lawful custody -00213482 04 n 01 extradition 0 002 @ 00213343 n 0000 + 02503365 v 0101 | the surrender of an accused or convicted person by one state or country to another (usually under the provisions of a statute or treaty) -00213694 04 n 03 release 5 waiver 0 discharge 2 006 @ 00212808 n 0000 + 01097743 v 0301 + 02534062 v 0201 + 02303331 v 0204 + 02316304 v 0101 ~ 00213903 n 0000 | a formal written statement of relinquishment -00213903 04 n 03 exemption 0 immunity 0 granting_immunity 0 006 @ 00213694 n 0000 + 02365900 a 0201 ~ 00214148 n 0000 ~ 00214315 n 0000 ~ 00214526 n 0000 ~ 00215013 n 0000 | an act exempting someone; "he was granted immunity from prosecution" -00214148 04 n 01 fix 1 001 @ 00213903 n 0000 | an exemption granted after influence (e.g., money) is brought to bear; "collusion resulted in tax fixes for gamblers" -00214315 04 n 01 official_immunity 0 001 @ 00213903 n 0000 | personal immunity accorded to a public official from liability to anyone injured by actions that are the consequence of exerting official authority -00214526 04 n 01 sovereign_immunity 0 001 @ 00213903 n 0000 | an exemption that precludes bringing a suit against the sovereign government without the government's consent; "the doctrine of sovereign immunity originated with the maxim that the king can do no wrong" -00214794 04 n 01 transactional_immunity 0 001 @ 00215013 n 0000 | a broader form of use immunity that also protects the witness from any prosecution brought about relating to transactions to which they gave testimony -00215013 04 n 02 use_immunity 0 testimonial_immunity 0 002 @ 00213903 n 0000 ~ 00214794 n 0000 | an exemption that displaces the privilege against self-incrimination; neither compelled testimony or any fruits of it can be used against the witness who therefore can no longer fear self-incrimination -00215314 04 n 02 dissolution 0 breakup 0 005 @ 00209943 n 0000 + 02431320 v 0206 + 00355955 v 0101 ~ 00215534 n 0000 ~ 01240979 n 0000 | the termination or disintegration of a relationship (between persons or nations) -00215534 04 n 01 splitsville 0 001 @ 00215314 n 0000 | separation or breakup or divorce; "after 15 years together they are headed for splitsville" -00215683 04 n 01 overthrow 1 003 @ 00209943 n 0000 + 02402409 v 0101 ~ 00215838 n 0000 | the termination of a ruler or institution (especially by force) -00215838 04 n 02 subversion 1 subversive_activity 0 003 @ 00215683 n 0000 + 01565028 v 0101 + 02402409 v 0102 | the act of subverting; as overthrowing or destroying a legally constituted government -00216038 04 n 02 adjournment 0 dissolution 1 003 @ 00209943 n 0000 + 00355955 v 0201 + 00364297 v 0101 | the termination of a meeting -00216174 04 n 08 dismissal 0 dismission 0 discharge 1 firing 1 liberation 1 release 2 sack 0 sacking 0 014 @ 00209943 n 0000 + 02402825 v 0808 + 02402825 v 0708 + 02402825 v 0402 + 02422026 v 0302 + 02402825 v 0205 + 02402825 v 0105 ~ 00197229 n 0000 ~ 00216607 n 0000 ~ 00216723 n 0000 ~ 00233795 n 0000 ~ 00233980 n 0000 ~ 00234105 n 0000 ~ 00234277 n 0000 | the termination of someone's employment (leaving them free to depart) -00216607 04 n 02 conge 1 congee 1 002 @ 00216174 n 0000 + 00898918 v 0102 | an abrupt and unceremonious dismissal -00216723 04 n 01 removal 2 003 @ 00216174 n 0000 + 02404224 v 0101 ~ 00216834 n 0000 | dismissal from office -00216834 04 n 01 purge 2 002 @ 00216723 n 0000 + 02565090 v 0101 | an abrupt or sudden removal of a person or group from an organization or place; "he died in a purge by Stalin" -00217014 04 n 02 destruction 0 devastation 0 018 @ 00209943 n 0000 + 00388635 v 0203 + 01619929 v 0101 + 01564144 v 0101 ~ 00217499 n 0000 ~ 00217593 n 0000 ~ 00217773 n 0000 ~ 00218045 n 0000 ~ 00218208 n 0000 ~ 00218427 n 0000 ~ 00222766 n 0000 ~ 00234675 n 0000 ~ 01244895 n 0000 ~ 01245061 n 0000 ~ 01245318 n 0000 ~ 01249483 n 0000 ~ 01249616 n 0000 ~ 01249816 n 0000 | the termination of something by causing so much damage to it that it cannot be repaired or no longer exists -00217499 04 n 01 disaster 0 001 @ 00217014 n 0000 | an act that has disastrous consequences -00217593 04 n 01 kill 1 002 @ 00217014 n 0000 + 00355365 v 0101 | the destruction of an enemy plane or ship or tank or missile; "the pilot reported two kills during the mission" -00217773 04 n 05 laying_waste 0 ruin 0 ruining 0 ruination 0 wrecking 0 007 @ 00217014 n 0000 + 01566185 v 0502 + 01564144 v 0402 + 01566490 v 0301 + 01564144 v 0302 + 01566490 v 0201 + 01564144 v 0202 | destruction achieved by causing something to be wrecked or ruined -00218045 04 n 04 razing 0 leveling 1 tearing_down 0 demolishing 0 003 @ 00217014 n 0000 + 01656458 v 0401 + 01661804 v 0102 | complete destruction of a building -00218208 04 n 02 annihilation 0 obliteration 0 007 @ 00217014 n 0000 + 00472230 v 0201 + 00311338 v 0201 + 00470701 v 0102 ~ 00218602 n 0000 ~ 00218753 n 0000 ~ 00218902 n 0000 | destruction by annihilating something -00218427 04 n 01 decimation 0 002 @ 00217014 n 0000 + 00470701 v 0106 | destroying or killing a large part of the population (literally every tenth person as chosen by lot) -00218602 04 n 02 atomization 1 atomisation 1 003 @ 00218208 n 0000 + 01133288 v 0203 + 01133288 v 0102 | annihilation by reducing something to atoms -00218753 04 n 02 pulverization 1 pulverisation 1 003 @ 00218208 n 0000 + 01656458 v 0203 + 01656458 v 0102 | annihilation by pulverizing something -00218902 04 n 02 vaporization 0 vaporisation 0 001 @ 00218208 n 0000 | annihilation by vaporizing something -00219012 04 n 03 killing 0 kill 0 putting_to_death 0 020 @ 00209943 n 0000 + 01325774 v 0201 + 02748495 v 0201 + 01325536 v 0201 + 01323958 v 0201 + 01323958 v 0101 ~ 00219463 n 0000 ~ 00219575 n 0000 ~ 00219856 n 0000 ~ 00220023 n 0000 ~ 00222248 n 0000 ~ 00222376 n 0000 ~ 00222485 n 0000 ~ 00223854 n 0000 ~ 00224738 n 0000 ~ 00225593 n 0000 ~ 00227595 n 0000 ~ 00228078 n 0000 ~ 00228181 n 0000 ~ 01245159 n 0000 | the act of terminating a life -00219463 04 n 02 deathblow 0 coup_de_grace 0 001 @ 00219012 n 0000 | the blow that kills (usually mercifully) -00219575 04 n 01 death 0 004 @ 00219012 n 0000 + 00993667 a 0102 + 00358431 v 0101 + 02109818 v 0101 | the act of killing; "he had two deaths on his conscience" -00219738 04 n 01 drive-by_killing 0 001 @ 00225150 n 0000 | homicide committed by shooting from a moving automobile -00219856 04 n 02 euthanasia 0 mercy_killing 0 001 @ 00219012 n 0000 | the act of killing someone painlessly (especially someone suffering from an incurable illness) -00220023 04 n 01 homicide 0 006 @ 00219012 n 0000 + 00248837 a 0101 ~ 00220219 n 0000 ~ 00220409 n 0000 ~ 00220522 n 0000 ~ 00225150 n 0000 | the killing of a human being by another human being -00220219 04 n 01 honor_killing 0 001 @ 00220023 n 0000 | an ancient tradition still sometimes observed; a male member of the family kills a female relative for tarnishing the family image -00220409 04 n 01 manslaughter 0 002 @ 00220023 n 0000 ~ 00221343 n 0000 | homicide without malice aforethought -00220522 04 n 03 murder 0 slaying 0 execution 1 023 @ 00220023 n 0000 + 02484208 v 0301 + 02482425 v 0202 + 00248837 a 0102 + 02482425 v 0101 ~ 00221056 n 0000 ~ 00221178 n 0000 ~ 00221480 n 0000 ~ 00221596 n 0000 ~ 00221727 n 0000 ~ 00221981 n 0000 ~ 00222064 n 0000 ~ 00222155 n 0000 ~ 00223720 n 0000 ~ 00223983 n 0000 ~ 00224599 n 0000 ~ 00225070 n 0000 ~ 01247306 n 0000 ~ 01250335 n 0000 ~ 01250492 n 0000 ~ 01250569 n 0000 ~ 01250671 n 0000 ~ 01250745 n 0000 | unlawful premeditated killing of a human being by a human being -00221056 04 n 01 assassination 0 002 @ 00220522 n 0000 + 02483000 v 0101 | murder of a public figure by surprise attack -00221178 04 n 02 bloodshed 1 gore 0 002 @ 00220522 n 0000 + 01445235 v 0201 | the shedding of blood resulting in murder; "he avenged the bloodshed of his kinsmen" -00221343 04 n 01 chance-medley 0 002 @ 00220409 n 0000 ;c 08441203 n 0000 | an unpremeditated killing of a human being in self defense -00221480 04 n 01 contract_killing 0 001 @ 00220522 n 0000 | a murder carried out on agreement with a hired killer -00221596 04 n 01 parricide 0 003 @ 00220522 n 0000 ~ 00221819 n 0000 ~ 00221900 n 0000 | the murder of your own father or mother -00221727 04 n 01 mariticide 0 001 @ 00220522 n 0000 | the murder of a husband by his wife -00221819 04 n 01 matricide 0 001 @ 00221596 n 0000 | the murder of your mother -00221900 04 n 01 patricide 0 001 @ 00221596 n 0000 | the murder of your father -00221981 04 n 01 fratricide 0 001 @ 00220522 n 0000 | the murder of your sibling -00222064 04 n 01 uxoricide 0 001 @ 00220522 n 0000 | the murder of a wife by her husband -00222155 04 n 01 filicide 0 001 @ 00220522 n 0000 | the murder of your own son or daughter -00222248 04 n 02 dispatch 1 despatch 1 003 @ 00219012 n 0000 + 02482425 v 0104 + 01325128 v 0101 | killing a person or animal -00222376 04 n 01 fell 0 002 @ 00219012 n 0000 + 01258302 v 0101 | the act of felling something (as a tree) -00222485 04 n 03 suicide 0 self-destruction 0 self-annihilation 0 008 @ 00219012 n 0000 + 01620436 v 0202 + 01620436 v 0201 + 02060912 a 0102 ~ 00222939 n 0000 ~ 00223268 n 0000 ~ 00223362 n 0000 ~ 00223575 n 0000 | the act of killing yourself; "it is a crime to commit suicide" -00222766 04 n 01 self-destruction 1 003 @ 00217014 n 0000 + 01620436 v 0102 + 01620436 v 0101 | the act of destroying yourself; "his insistence was pure self-destruction" -00222939 04 n 01 assisted_suicide 0 002 @ 00222485 n 0000 ~ 00223144 n 0000 | suicide of a terminally ill person that involves an assistant who serves to make dying as painless and dignified as possible -00223144 04 n 01 physician-assisted_suicide 0 001 @ 00222939 n 0000 | assisted suicide where the assistant is a physician -00223268 04 n 01 felo-de-se 0 001 @ 00222485 n 0000 | an act of deliberate self destruction -00223362 04 n 04 harakiri 0 hara-kiri 0 harikari 0 seppuku 0 002 @ 00222485 n 0000 ;r 08921850 n 0000 | ritual suicide by self-disembowelment on a sword; practiced by samurai in the traditional Japanese society -00223575 04 n 01 suttee 0 001 @ 00222485 n 0000 | the act of a Hindu widow willingly cremating herself on the funeral pyre of her dead husband -00223720 04 n 02 elimination 1 liquidation 2 003 @ 00220522 n 0000 + 01327301 v 0203 + 00471711 v 0102 | the murder of a competitor -00223854 04 n 01 slaughter 0 003 @ 00219012 n 0000 #p 00620424 n 0000 + 01322854 v 0102 | the killing of animals (as for food) -00223983 04 n 05 slaughter 1 massacre 0 mass_murder 0 carnage 0 butchery 2 008 @ 00220522 n 0000 + 01322854 v 0501 + 00479176 v 0201 + 00249104 a 0104 + 00479176 v 0102 ~ 00224260 n 0000 ~i 01269360 n 0000 ~i 01284444 n 0000 | the savage and excessive killing of many people -00224260 04 n 04 bloodbath 0 bloodletting 1 bloodshed 0 battue 1 001 @ 00223983 n 0000 | indiscriminate slaughter; "a bloodbath took place when the leaders of the plot surrendered"; "ten days after the bloodletting Hitler gave the action its name"; "the valley is no stranger to bloodshed and murder"; "a huge prison battue was ordered" -00224599 04 n 01 lynching 0 002 @ 00220522 n 0000 + 02484397 v 0101 | putting a person to death by mob action without due process of law -00224738 04 n 01 poisoning 0 005 @ 00219012 n 0000 + 01323338 v 0101 + 00532429 v 0101 + 00088339 v 0101 ~ 00224936 n 0000 | the act of giving poison to a person or animal with the intent to kill -00224936 04 n 01 gassing 0 002 @ 00224738 n 0000 + 01125373 v 0101 | the deliberate act of poisoning some person or animal with gas -00225070 04 n 01 regicide 0 001 @ 00220522 n 0000 | the act of killing a king -00225150 04 n 01 shooting 1 005 @ 00220023 n 0000 + 02484570 v 0101 ~ 00219738 n 0000 ~ 00225361 n 0000 ~ 00225484 n 0000 | killing someone by gunfire; "when the shooting stopped there were three dead bodies" -00225361 04 n 01 drive-by_shooting 0 001 @ 00225150 n 0000 | shooting someone from a car as it is driven past the victim -00225484 04 n 01 wing_shooting 0 001 @ 00225150 n 0000 | shooting game birds that are flying (on the wing) -00225593 04 n 02 suffocation 0 asphyxiation 0 006 @ 00219012 n 0000 + 00359511 v 0203 + 01569181 v 0202 + 01569181 v 0103 + 00359511 v 0101 ~ 00225786 n 0000 | killing by depriving of oxygen -00225786 04 n 04 choking 0 strangling 0 strangulation 1 throttling 0 007 @ 00225593 n 0000 + 01570935 v 0403 + 01570935 v 0302 + 01570935 v 0301 + 01570935 v 0201 + 01570744 v 0101 + 00077950 v 0101 | the act of suffocating (someone) by constricting the windpipe; "no evidence that the choking was done by the accused" -00226107 04 n 01 spasm 0 006 @ 01149911 n 0000 ;c 06060845 n 0000 ~ 00226511 n 0000 ~ 00226711 n 0000 ~ 00226951 n 0000 ~ 00227137 n 0000 | (pathology) sudden constriction of a hollow organ (as a blood vessel) -00226319 04 n 01 squeeze 3 001 @ 01149911 n 0000 | the act of forcing yourself (or being forced) into or through a restricted space; "getting through that small opening was a tight squeeze" -00226511 04 n 01 bronchospasm 0 003 @ 00226107 n 0000 #p 14145911 n 0000 #p 14146273 n 0000 | a spasm of the bronchi that makes exhalation difficult and noisy; associated with asthma and bronchitis -00226711 04 n 01 cardiospasm 0 001 @ 00226107 n 0000 | a spasm of the cardiac sphincter (between the esophagus and the stomach); if the cardiac sphincter does not relax during swallowing the passage of food into the stomach is obstructed -00226951 04 n 02 heave 3 retch 0 004 @ 00226107 n 0000 + 00076400 v 020a + 00077458 v 0203 + 00077458 v 0102 | an involuntary spasm of ineffectual vomiting; "a bad case of the heaves" -00227137 04 n 01 laryngismus 0 001 @ 00226107 n 0000 | laryngeal spasm caused by the sudden contraction of laryngeal muscles -00227264 04 n 01 strangulation 2 003 @ 01149911 n 0000 ;c 06060845 n 0000 + 01388653 v 0101 | (pathology) constriction of a body part so as to cut off the flow of blood or other fluid; "strangulation of the intestine" -00227484 04 n 01 carjacking 0 002 @ 00769944 n 0000 + 01472417 v 0101 | the violent theft of an occupied car -00227595 04 n 02 sacrifice 0 ritual_killing 0 007 @ 00219012 n 0000 ;c 00015388 n 0000 + 03113271 a 0101 + 02325558 v 0101 + 01326093 v 0101 ~ 00227848 n 0000 ~ 00227969 n 0000 | the act of killing (an animal or person) in order to propitiate a deity -00227848 04 n 01 hecatomb 0 001 @ 00227595 n 0000 | a great sacrifice; an ancient Greek or Roman sacrifice of 100 oxen -00227969 04 n 01 immolation 0 002 @ 00227595 n 0000 + 02325736 v 0101 | killing or offering as a sacrifice -00228078 04 n 01 electrocution 0 002 @ 00219012 n 0000 + 02485135 v 0101 | killing by electric shock -00228181 04 n 02 decapitation 0 beheading 0 001 @ 00219012 n 0000 | killing by cutting off the head -00228283 04 n 02 abolition 0 abolishment 0 004 @ 00209943 n 0000 + 02427334 v 0201 + 03138752 a 0101 + 02427334 v 0101 | the act of abolishing a system or practice or institution (especially abolishing slavery); "the abolition of capital punishment" -00228535 04 n 02 liquidation 0 settlement 0 005 @ 00209943 n 0000 + 02254258 v 0201 + 00798091 v 0201 + 02352019 v 0101 ~ 00228762 n 0000 | termination of a business operation by using its assets to discharge its liabilities -00228762 04 n 02 viatical_settlement 0 viaticus_settlement 0 001 @ 00228535 n 0000 | sale of an insurance policy by a terminally ill policy holder -00228911 04 n 02 withdrawal 2 drug_withdrawal 0 002 @ 00209943 n 0000 ~ 00229034 n 0000 | the termination of drug taking -00229034 04 n 01 cold_turkey 0 001 @ 00228911 n 0000 | complete and abrupt withdrawal of all addictive drugs or anything else on which you have become dependent; "he quit smoking cold turkey"; "she quit her job cold turkey" -00229260 04 n 04 closure 0 closedown 0 closing 0 shutdown 0 010 @ 00209943 n 0000 + 02426395 v 0404 + 02426395 v 0302 + 02426395 v 0205 + 02425913 v 0101 + 02140781 v 0101 + 02426395 v 0102 ~ 00229587 n 0000 ~ 00229688 n 0000 ~ 00229814 n 0000 | termination of operations; "they regretted the closure of the day care center" -00229587 04 n 01 plant_closing 0 001 @ 00229260 n 0000 | act of shutting down operation of a plant -00229688 04 n 01 bank_closing 0 001 @ 00229260 n 0000 | act of closing down a bank because of a fiscal emergency or failure -00229814 04 n 01 layoff 0 002 @ 00229260 n 0000 + 02403537 v 0102 | the act of laying off an employee or a work force -00229934 04 n 03 extinction 1 extinguishing 0 quenching 0 005 @ 00209943 n 0000 + 02761897 v 0304 + 02761897 v 0203 + 02761897 v 0103 + 00478217 v 0102 | the act of extinguishing; causing to stop burning; "the extinction of the lights" -00230172 04 n 02 fade 0 disappearance 1 004 @ 00209943 n 0000 + 00427397 v 0202 + 02156546 v 0202 + 00224651 v 0101 | gradually ceasing to be visible -00230324 04 n 01 abortion 0 005 @ 00209943 n 0000 + 09757175 n 0101 + 00059899 v 0101 ~ 00230475 n 0000 ~ 00231161 n 0000 | termination of pregnancy -00230475 04 n 03 spontaneous_abortion 0 miscarriage 0 stillbirth 0 006 @ 00230324 n 0000 ! 07320734 n 0301 + 00059769 v 0201 ~ 00230703 n 0000 ~ 00230824 n 0000 ~ 00230997 n 0000 | a natural loss of the products of conception -00230703 04 n 01 habitual_abortion 0 001 @ 00230475 n 0000 | repeated spontaneous abortion (often for no known reason) -00230824 04 n 02 imminent_abortion 0 threatened_abortion 0 001 @ 00230475 n 0000 | the appearance of symptoms that signal the impending loss of the products of conception -00230997 04 n 02 incomplete_abortion 0 partial_abortion 0 001 @ 00230475 n 0000 | termination of pregnancy without expulsion of all of the products of conception -00231161 04 n 01 induced_abortion 0 004 @ 00230324 n 0000 ~ 00231315 n 0000 ~ 00231412 n 0000 ~ 00669687 n 0000 | a deliberate termination of pregnancy -00231315 04 n 02 aborticide 0 feticide 0 001 @ 00231161 n 0000 | the act of destroying a fetus -00231412 04 n 01 therapeutic_abortion 0 001 @ 00231161 n 0000 | a legally induced abortion for medical reasons (as when the mother's life is threatened) -00231567 04 n 02 nullification 0 override 0 009 @ 00199130 n 0000 + 02544191 v 0201 + 02644622 v 0201 + 02478059 v 0106 + 00470084 v 0103 ~ 00232386 n 0000 ~ 00233212 n 0000 ~ 00233386 n 0000 ~ 00234423 n 0000 | the act of nullifying; making null and void; counteracting or overriding the effect or force of something -00231887 04 n 03 abrogation 0 repeal 0 annulment 1 008 @ 00232386 n 0000 + 00799798 v 0302 + 00799798 v 0206 + 02478584 v 0101 ~ 00232147 n 0000 ~ 01253665 n 0000 ~ 01258719 n 0000 ~ 01258852 n 0000 | the act of abrogating; an official or legal cancellation -00232147 04 n 01 derogation 0 002 @ 00231887 n 0000 ;c 08441203 n 0000 | (law) the partial taking away of the effectiveness of a law; a partial repeal or abolition of a law; "any derogation of the common law is to be strictly construed" -00232386 04 n 01 cancellation 0 007 @ 00231567 n 0000 + 02477755 v 0101 + 02477334 v 0101 ~ 00231887 n 0000 ~ 00232604 n 0000 ~ 00232765 n 0000 ~ 00232863 n 0000 | the act of cancelling; calling off some arrangement -00232604 04 n 01 write-off 0 003 @ 00232386 n 0000 + 02477655 v 0101 + 00315956 v 0102 | the act of cancelling from an account a bad debt or a worthless asset -00232765 04 n 02 attainder 0 civil_death 0 001 @ 00232386 n 0000 | cancellation of civil rights -00232863 04 n 02 recission 0 rescission 0 004 @ 00232386 n 0000 ;c 08441203 n 0000 + 00799798 v 0208 + 00799798 v 0108 | (law) the act of rescinding; the cancellation of a contract and the return of the parties to the positions they would have had if the contract had not been made; "recission may be brought about by decree or by mutual consent" -00233212 04 n 01 vitiation 0 002 @ 00231567 n 0000 + 00448440 v 0103 | nullification by the destruction of the legal force; rendering null; "the vitiation of the contract" -00233386 04 n 03 neutralization 0 neutralisation 0 counteraction 0 005 @ 00231567 n 0000 + 02543874 v 0301 + 00470084 v 0202 + 02543874 v 0103 + 00470084 v 0101 | action intended to nullify the effects of some previous action -00233614 04 n 02 deactivation 0 defusing 0 004 @ 00209943 n 0000 + 01137696 v 0201 + 00191517 v 0102 ! 00236821 n 0101 | the act of deactivating or making ineffective (as a bomb) -00233795 04 n 02 deactivation 1 inactivation 0 004 @ 00216174 n 0000 ;c 08199025 n 0000 + 01098206 v 0202 + 00191728 v 0101 | breaking up a military unit (by transfers or discharges) -00233980 04 n 01 honorable_discharge 0 001 @ 00216174 n 0000 | a discharge from the armed forces with a commendable record -00234105 04 n 01 dishonorable_discharge 0 001 @ 00216174 n 0000 | a discharge from the armed forces for a grave offense (as sabotage or espionage or cowardice or murder) -00234277 04 n 01 Section_Eight 0 001 @ 00216174 n 0000 | a discharge from the US Army based on unfitness or character traits deemed undesirable -00234423 04 n 02 neutralization 1 neutralisation 1 004 @ 00231567 n 0000 + 01117931 v 0202 + 02535896 v 0101 + 01117931 v 0101 | action intended to keep a country politically neutral or exclude it from a possible war; "the neutralization of Belgium" -00234675 04 n 02 neutralization 2 neutralisation 2 002 @ 00217014 n 0000 ;u 06605046 n 0000 | (euphemism) the removal of a threat by killing or destroying it (especially in a covert operation or military operation) -00234892 04 n 01 reversal 0 003 @ 00199130 n 0000 + 00138508 v 0103 ~ 00235208 n 0000 | a change from one state to the opposite state; "there was a reversal of autonomic function" -00235074 04 n 01 undoing 0 002 @ 00163406 n 0000 + 01519977 v 0101 | an act that makes a previous act of no effect (as if not done) -00235208 04 n 05 regression 0 regress 0 reversion 2 retrogression 0 retroversion 0 006 @ 00234892 n 0000 + 00387310 v 0503 + 00249313 v 0403 + 00387310 v 0301 + 00387310 v 0204 + 00387310 v 0104 | returning to a former state -00235435 04 n 03 beginning 0 start 0 commencement 0 034 @ 00199130 n 0000 + 01650610 v 0304 + 00348746 v 0304 + 00345761 v 0308 + 02600948 v 0202 + 02608823 v 0202 + 02379528 v 0201 + 01650610 v 0201 + 01628449 v 0203 + 02608347 v 0202 + 00348746 v 0203 + 00345761 v 0205 + 01075164 v 0201 ! 00210518 n 0201 + 00345761 v 0102 ~ 00236194 n 0000 ~ 00236821 n 0000 ~ 00236953 n 0000 ~ 00237078 n 0000 ~i 00237869 n 0000 ~ 00238022 n 0000 ~ 00239024 n 0000 ~ 00239230 n 0000 ~ 00239483 n 0000 ~ 00239666 n 0000 ~ 00239766 n 0000 ~ 00239910 n 0000 ~ 00240184 n 0000 ~ 00240938 n 0000 ~ 00241245 n 0000 ~ 00241507 n 0000 ~ 00242003 n 0000 ~ 00242146 n 0000 ~ 00242431 n 0000 | the act of starting something; "he was responsible for the beginning of negotiations" -00236194 04 n 03 springboard 0 jumping-off_point 0 point_of_departure 0 001 @ 00235435 n 0000 | a beginning from which an enterprise is launched; "he uses other people's ideas as a springboard for his own"; "reality provides the jumping-off point for his illusions"; "the point of departure of international comparison cannot be an institution but must be the function it carries out" -00236581 04 n 02 accession 3 rise_to_power 0 003 @ 00062806 n 0000 + 02007417 v 0101 + 02381397 v 0101 | the act of attaining or gaining access to a new office or right or position (especially the throne); "Elizabeth's accession in 1558" -00236821 04 n 01 activation 1 003 @ 00235435 n 0000 + 00190682 v 0101 ! 00233614 n 0101 | making active and effective (as a bomb) -00236953 04 n 02 attack 1 tone-beginning 0 001 @ 00235435 n 0000 | a decisive manner of beginning a musical tone or phrase -00237078 04 n 05 constitution 0 establishment 0 formation 1 organization 2 organisation 2 019 @ 00235435 n 0000 + 02434238 v 0504 + 02448185 v 0503 + 01651444 v 0502 + 02434238 v 0403 + 02448185 v 0402 + 02432530 v 0401 + 01651444 v 0401 + 00404642 v 0401 + 02448185 v 0301 + 01659248 v 0302 + 02427103 v 0201 + 01647229 v 0201 + 01647229 v 0104 ~ 00242583 n 0000 ~ 01152787 n 0000 ~ 01152973 n 0000 ~ 01153305 n 0000 ~ 01252280 n 0000 | the act of forming or establishing something; "the constitution of a PTA group last year"; "it was the establishment of his reputation"; "he still remembers the organization of the club" -00237705 04 n 01 re-establishment 0 001 @ 00268557 n 0000 | restoration to a previous state; "regular exercise resulted in the re-establishment of his endurance" -00237869 04 n 01 Creation 2 003 @i 00235435 n 0000 ;c 06182144 n 0000 + 01753788 v 0101 | (theology) God's act of bringing the universe into existence -00238022 04 n 06 introduction 1 debut 0 first_appearance 0 launching 1 unveiling 0 entry 1 006 @ 00235435 n 0000 + 01717628 v 0201 ~ 00238527 n 0000 ~ 00238871 n 0000 ~ 00243237 n 0000 ~ 00920956 n 0000 | the act of beginning something new; "they looked forward to the debut of their new product line" -00238326 04 n 01 induction_of_labor 0 002 @ 00238527 n 0000 ;c 06053439 n 0000 | (obstetrics) inducing the childbirth process artificially by administering oxytocin or by puncturing the amniotic sac -00238527 04 n 01 induction 0 006 @ 00238022 n 0000 + 01644522 v 0101 + 01644050 v 0101 + 00829761 v 0101 ~ 00238326 n 0000 ~ 00238778 n 0000 | the act of bringing about something (especially at an early time); "the induction of an anesthetic state" -00238778 04 n 01 hypnogenesis 0 001 @ 00238527 n 0000 | the induction of sleep or hypnosis -00238871 04 n 01 product_introduction 0 001 @ 00238022 n 0000 | the introduction (usually by an advertising campaign) of a new product or product line -00239024 04 n 01 face-off 0 004 @ 00235435 n 0000 #p 00463543 n 0000 ;c 00463543 n 0000 + 01084048 v 0101 | (ice hockey) the method of starting play; a referee drops the puck between two opposing players -00239230 04 n 04 first_step 0 initiative 0 opening_move 0 opening 3 008 @ 00235435 n 0000 + 01008947 a 0401 + 02425462 v 0401 + 02426171 v 0401 + 01077887 v 0401 ~ 00243577 n 0000 ~ 00243662 n 0000 ~ 00243813 n 0000 | the first of a series of actions -00239483 04 n 02 groundbreaking 0 groundbreaking_ceremony 0 002 @ 01027379 n 0000 @ 00235435 n 0000 | the ceremonial breaking of the ground to formally begin a construction project -00239666 04 n 01 housing_start 0 001 @ 00235435 n 0000 | the act of starting to construct a house -00239766 04 n 01 icebreaker 0 001 @ 00235435 n 0000 | a beginning that relaxes a tense or formal atmosphere; "he told jokes as an icebreaker" -00239910 04 n 02 inauguration 1 startup 0 004 @ 00235435 n 0000 + 01650610 v 0202 + 02425337 v 0101 + 02395782 v 0101 | the act of starting a new operation or practice; "he opposed the inauguration of fluoridation"; "the startup of the new factory was delayed by strikes" -00240184 04 n 09 initiation 1 founding 0 foundation 0 institution 0 origination 0 creation 1 innovation 0 introduction 2 instauration 0 014 @ 00235435 n 0000 + 01687586 a 0702 + 01642437 v 0702 + 01753788 v 0601 + 02624263 v 0501 + 01628449 v 0501 + 01647229 v 0405 + 02348568 v 0403 + 01647229 v 0302 + 02427103 v 0203 + 01647229 v 0202 + 01628449 v 0102 + 01641914 v 0101 ~ 00240754 n 0000 | the act of starting something for the first time; introducing something new; "she looked forward to her initiation as an adult"; "the foundation of a new scientific society" -00240754 04 n 02 authorship 1 paternity 0 002 @ 00240184 n 0000 + 10126177 n 0103 | the act of initiating a new idea or theory or writing; "the authorship of the theory is disputed" -00240938 04 n 04 installation 0 installing 0 installment 0 instalment 0 007 @ 00235435 n 0000 + 01569566 v 0402 + 01569566 v 0301 + 01569566 v 0201 + 01569566 v 0202 + 02384041 v 0101 + 01569566 v 0101 | the act of installing something (as equipment); "the telephone installation took only a few minutes" -00241245 04 n 01 jump_ball 0 003 @ 00235435 n 0000 ;c 00480993 n 0000 ~ 00481666 n 0000 | (basketball) the way play begins or resumes when possession is disputed; an official tosses the ball up between two players who jump in an effort to tap it to a teammate -00241507 04 n 01 kickoff 0 003 @ 00137279 n 0000 @ 00235435 n 0000 ;c 00468480 n 0000 | (football) a kick from the center of the field to start a football game or to resume it after a score -00241699 04 n 02 start 2 starting 0 003 @ 00457382 n 0000 + 01075164 v 0201 + 01075164 v 0101 | a turn to be a starter (in a game at the beginning); "he got his start because one of the regular pitchers was in the hospital"; "his starting meant that the coach thought he was one of their best linemen" -00242003 04 n 02 resumption 0 recommencement 0 004 @ 00235435 n 0000 + 00349416 v 0201 + 00346537 v 0201 + 00350104 v 0101 | beginning again -00242146 04 n 02 scrum 0 scrummage 0 002 @ 00235435 n 0000 ;c 00470966 n 0000 | (rugby) the method of beginning play in which the forwards of each team crouch side by side with locked arms; play starts when the ball is thrown in between them and the two sides compete for possession -00242431 04 n 01 startup 1 002 @ 00235435 n 0000 + 01857717 v 0102 | the act of setting in operation; "repeated shutdowns and startups are expensive" -00242583 04 n 02 unionization 0 unionisation 0 005 @ 00237078 n 0000 + 02435867 v 0202 + 02434238 v 0202 + 02435867 v 0101 + 02434238 v 0101 | act of forming labor unions; "the issue underlying the strike was unionization" -00242808 04 n 02 arousal 0 rousing 0 010 @ 00199130 n 0000 + 01762528 v 0202 + 01759326 v 0101 ~ 01259773 n 0000 ~ 01260867 n 0000 ~ 01261490 n 0000 ~ 01261712 n 0000 ~ 01261845 n 0000 ~ 01261974 n 0000 ~ 01262345 n 0000 | the act of arousing; "the purpose of art is the arousal of emotions" -00243102 04 n 01 reveille 0 001 @ 01259773 n 0000 | a signal to get up in the morning; in the military it is a bugle call at sunrise -00243237 04 n 01 ushering_in 0 001 @ 00238022 n 0000 | the introduction of something new; "it signalled the ushering in of a new era" -00243373 04 n 02 inauguration 0 inaugural 0 003 @ 07453195 n 0000 + 02395782 v 0101 %p 07240077 n 0000 | the ceremonial induction into a position; "the new president obviously enjoyed his inauguration" -00243577 04 n 01 curtain_raiser 0 001 @ 00239230 n 0000 | any preliminary activity -00243662 04 n 01 first_base 0 001 @ 00239230 n 0000 | the initial stage in accomplishing something; "we didn't get to first base with that approach" -00243813 04 n 01 peace_initiative 0 001 @ 00239230 n 0000 | opening move in negotiating a peace treaty -00243918 04 n 03 cooking 0 cookery 0 preparation 3 115 @ 00199130 n 0000 + 01664172 v 0305 + 01665638 v 0201 + 01664172 v 0201 + 00322847 v 0201 + 01665638 v 0101 + 01664172 v 0101 + 00322847 v 0101 ~ 00246341 n 0000 ~ 00246552 n 0000 ~ 00246754 n 0000 ~ 00246940 n 0000 ~ 00247081 n 0000 ~ 00247229 n 0000 ~ 00247342 n 0000 ~ 00247442 n 0000 ~ 00247792 n 0000 %p 00248063 n 0000 ~ 00248252 n 0000 %p 00248368 n 0000 ~ 07571324 n 0000 -c 07681450 n 0000 -c 07686021 n 0000 -c 07781801 n 0000 -c 07823951 n 0000 -c 07836456 n 0000 -c 00114291 v 0000 -c 00114615 v 0000 -c 00139729 v 0000 -c 00139908 v 0000 -c 00212049 v 0000 -c 00213223 v 0000 -c 00213353 v 0000 -c 00213544 v 0000 -c 00213794 v 0000 -c 00216561 v 0000 -c 00222135 v 0000 -c 00222328 v 0000 -c 00236999 v 0000 -c 00237259 v 0000 -c 00319886 v 0000 -c 00320121 v 0000 -c 00320246 v 0000 -c 00320410 v 0000 -c 00320536 v 0000 -c 00320681 v 0000 -c 00321652 v 0000 -c 00321801 v 0000 -c 00321936 v 0000 -c 00322151 v 0000 -c 00322395 v 0000 -c 00322559 v 0000 -c 00322719 v 0000 -c 00323703 v 0000 -c 00323856 v 0000 -c 00324071 v 0000 -c 00324231 v 0000 -c 00324560 v 0000 -c 00324806 v 0000 -c 00325085 v 0000 -c 00325208 v 0000 -c 00325328 v 0000 -c 00325647 v 0000 -c 00325777 v 0000 -c 00325910 v 0000 -c 00326049 v 0000 -c 00326310 v 0000 -c 00326459 v 0000 -c 00326619 v 0000 -c 00326773 v 0000 -c 00327010 v 0000 -c 00327145 v 0000 -c 00328370 v 0000 -c 00328579 v 0000 -c 00328679 v 0000 -c 00339268 v 0000 -c 00379440 v 0000 -c 00444975 v 0000 -c 00464173 v 0000 -c 00505151 v 0000 -c 00528115 v 0000 -c 00528225 v 0000 -c 01249294 v 0000 -c 01250474 v 0000 -c 01261491 v 0000 -c 01261773 v 0000 -c 01261950 v 0000 -c 01265740 v 0000 -c 01287797 v 0000 -c 01337653 v 0000 -c 01358855 v 0000 -c 01364184 v 0000 -c 01364357 v 0000 -c 01417868 v 0000 -c 01418037 v 0000 -c 01418179 v 0000 -c 01418389 v 0000 -c 01460408 v 0000 -c 01517175 v 0000 -c 01613921 v 0000 -c 01665185 v 0000 -c 01665332 v 0000 -c 01665507 v 0000 -c 01665638 v 0000 -c 01665836 v 0000 -c 01666002 v 0000 -c 01666131 v 0000 -c 01679669 v 0000 -c 02191766 v 0000 -c 02192225 v 0000 -c 02192570 v 0000 -c 02192818 v 0000 -c 02194138 v 0000 -c 02196081 v 0000 -c 02196214 v 0000 | the act of preparing something (as food) by the application of heat; "cooking can be a great art"; "people are needed who have experience in cookery"; "he left the preparation of meals to his wife" -00246341 04 n 01 baking 0 003 @ 00243918 n 0000 + 00319886 v 0101 ~ 00246460 n 0000 | cooking by dry heat in an oven -00246460 04 n 01 shirring 0 002 @ 00246341 n 0000 + 00322395 v 0101 | baking shelled eggs -00246552 04 n 02 toasting 0 browning 0 002 @ 00243918 n 0000 + 00322151 v 0102 | cooking to a brown crispiness over a fire or on a grill; "proper toasting should brown both sides of a piece of bread" -00246754 04 n 03 broil 0 broiling 0 grilling 0 003 @ 00243918 n 0000 + 00326773 v 0301 + 00328370 v 0101 | cooking by direct exposure to radiant heat (as over a fire or under a grill) -00246940 04 n 02 frying 0 sauteing 0 003 @ 00243918 n 0000 + 00326619 v 0201 + 00325328 v 0101 | cooking in fat or oil in a pan or griddle -00247081 04 n 01 fusion_cooking 0 001 @ 00243918 n 0000 | cooking that combines ingredients and techniques and seasonings from different cuisines -00247229 04 n 01 braising 0 001 @ 00243918 n 0000 | cooking slowly in fat in a closed pot with little moisture -00247342 04 n 01 poaching 0 002 @ 00243918 n 0000 + 00544404 v 0101 | cooking in simmering liquid -00247442 04 n 01 roasting 0 004 @ 00243918 n 0000 + 00324560 v 0101 ~ 00247654 n 0000 %p 00247955 n 0000 | cooking (meat) by dry heat in an oven (usually with fat added); "the slow roasting took several hours" -00247654 04 n 01 barbecuing 0 001 @ 00247442 n 0000 | roasting a large piece of meat on a revolving spit out of doors over an open fire -00247792 04 n 03 boiling 0 stewing 0 simmering 0 003 @ 00243918 n 0000 + 00324231 v 0301 + 00323856 v 0201 | cooking in a liquid that has been brought to a boil -00247955 04 n 01 basting 1 002 @ 00278040 n 0000 #p 00247442 n 0000 | moistening a roast as it is cooking -00248063 04 n 02 tenderization 0 tenderisation 0 004 @ 00248977 n 0000 #p 00243918 n 0000 + 00514871 v 0203 + 00514871 v 0102 | the act of making meat tender by pounding or marinating it -00248252 04 n 01 percolation 0 002 @ 00243918 n 0000 + 01458464 v 0101 | the act of making coffee in a percolator -00248368 04 n 01 seasoning 0 005 @ 00199130 n 0000 #p 00243918 n 0000 + 02191766 v 0101 ~ 00248534 n 0000 ~ 00248636 n 0000 | the act of adding a seasoning to food -00248534 04 n 01 salting 0 002 @ 00248368 n 0000 + 02196214 v 0101 | the act of adding salt to food -00248636 04 n 01 sweetening 0 002 @ 00248368 n 0000 + 02195470 v 0101 | the act of adding a sweetener to food -00248748 04 n 01 infusion 1 002 @ 00199130 n 0000 + 00498299 v 0102 | the act of infusing or introducing a certain modifying element or quality; "the team's continued success is attributable to a steady infusion of new talent" -00248977 04 n 01 improvement 0 022 @ 00199130 n 0000 + 00205885 v 0102 ~ 00248063 n 0000 ~ 00250259 n 0000 ~ 00251013 n 0000 ~ 00258854 n 0000 ~ 00260051 n 0000 ~ 00260494 n 0000 ~ 00260622 n 0000 ~ 00261029 n 0000 ~ 00261258 n 0000 ~ 00264192 n 0000 ~ 00264366 n 0000 ~ 00264775 n 0000 ~ 00264913 n 0000 ~ 00265119 n 0000 ~ 00265992 n 0000 ~ 00266149 n 0000 ~ 00266645 n 0000 ~ 00266806 n 0000 ~ 01266945 n 0000 ~ 01267588 n 0000 | the act of improving something; "their improvements increased the value of the property" -00249501 04 n 02 advancement 2 progress 1 007 @ 00250259 n 0000 + 00252990 v 0204 + 00248659 v 0201 + 00558371 v 0101 ~ 00249780 n 0000 ~ 00249987 n 0000 ~ 00250143 n 0000 | gradual improvement or growth or development; "advancement of knowledge"; "great progress in the arts" -00249780 04 n 03 forwarding 2 furtherance 0 promotion 2 002 @ 00249501 n 0000 + 02554922 v 0301 | the advancement of some enterprise; "his experience in marketing resulted in the forwarding of his career" -00249987 04 n 01 stride 1 001 @ 00249501 n 0000 | significant progress (especially in the phrase "make strides"); "they made big strides in productivity" -00250143 04 n 02 work_flow 0 workflow 0 001 @ 00249501 n 0000 | progress (or rate of progress) in work being done -00250259 04 n 01 development 1 007 @ 00248977 n 0000 + 01738774 v 0101 + 00411020 v 0103 ~ 00249501 n 0000 ~ 00250597 n 0000 ~ 00250710 n 0000 ~ 00250882 n 0000 | act of improving by expanding or enlarging or refining; "he congratulated them on their development of a plan to meet the emergency"; "they funded research and development" -00250597 04 n 01 broadening 0 001 @ 00250259 n 0000 | the action of making broader; "the broadening of travel" -00250710 04 n 02 elaboration 0 working_out 0 004 @ 00250259 n 0000 + 01625343 v 0101 + 00251463 v 0101 + 00400883 v 0104 | developing in intricate and painstaking detail -00250882 04 n 01 product_development 0 001 @ 00250259 n 0000 | improving an existing product or developing new kinds of products -00251013 04 n 03 cleaning 0 cleansing 0 cleanup 0 021 @ 00248977 n 0000 + 00040766 v 0301 + 00035758 v 0201 + 02741960 v 0101 + 01532434 v 0101 + 01533442 v 0103 + 01532589 v 0101 + 00180837 v 0102 + 00035758 v 0102 ~ 00251520 n 0000 ~ 00251636 n 0000 ~ 00251780 n 0000 ~ 00252169 n 0000 ~ 00252307 n 0000 ~ 00252430 n 0000 ~ 00253270 n 0000 ~ 00253919 n 0000 ~ 00254415 n 0000 ~ 00254597 n 0000 ~ 00255214 n 0000 ~ 00580370 n 0000 | the act of making something clean; "he gave his shoes a good cleaning" -00251520 04 n 01 disinfestation 0 002 @ 00251013 n 0000 + 02350620 v 0101 | the activity of getting rid of vermin -00251636 04 n 01 spring-cleaning 0 002 @ 00251013 n 0000 + 01533851 v 0101 | the activity of cleaning a house thoroughly at the end of winter -00251780 04 n 03 scrub 0 scrubbing 0 scouring 0 006 @ 00251013 n 0000 + 01251228 v 0302 + 01251228 v 0201 + 00036780 v 0101 + 01251228 v 0101 ~ 00252020 n 0000 | the act of cleaning a surface by rubbing it with a brush and soap and water -00252020 04 n 02 swabbing 0 mopping 0 003 @ 00251780 n 0000 + 01393339 v 0203 + 01244178 v 0101 | cleaning with a mop; "he gave it a good mopping" -00252169 04 n 01 dry_cleaning 0 002 @ 00251013 n 0000 + 01535117 v 0101 | the act of cleaning (fabrics) with a solvent other than water -00252307 04 n 01 sweeping 0 003 @ 00251013 n 0000 + 01393996 v 0101 + 01393714 v 0101 | the act of cleaning with a broom -00252430 04 n 02 purge 0 purging 0 006 @ 00251013 n 0000 + 00475647 v 0201 + 00455529 v 0103 + 00475647 v 0101 ~ 00253395 n 0000 ~ 00253577 n 0000 | an act of removing by cleansing; ridding of sediment or other undesired elements -00252662 04 n 03 purge 1 purging 1 purgation 1 006 @ 01247647 n 0000 + 00905283 v 0301 + 00475647 v 0201 + 00475819 v 0102 + 00905283 v 0101 ~ 00252894 n 0000 | the act of clearing yourself (or another) from some stigma or charge -00252894 04 n 01 purification 1 002 @ 00252662 n 0000 + 00476133 v 0101 | the act of purging of sin or guilt; moral or spiritual cleansing; "purification through repentance" -00253070 04 n 02 purification 2 purgation 2 003 @ 01027379 n 0000 + 00475819 v 0202 + 00475819 v 0101 | a ceremonial cleansing from defilement or uncleanness by the performance of appropriate rites -00253270 04 n 01 purification 0 002 @ 00251013 n 0000 + 00475183 v 0101 | the act of cleaning by getting rid of impurities -00253395 04 n 03 catharsis 0 katharsis 0 abreaction 0 004 @ 00252430 n 0000 ;c 00704305 n 0000 + 01815471 v 0301 + 01165830 a 0101 | (psychoanalysis) purging of emotional tensions -00253577 04 n 03 catharsis 1 katharsis 1 purgation 0 003 @ 00252430 n 0000 + 00073813 v 0301 + 00638067 a 0101 | purging the body by the use of a cathartic to stimulate evacuation of the bowels -00253773 04 n 01 high_colonic 0 001 @ 00696147 n 0000 | an enema that injects large amounts of fluid high into the colon for cleansing purposes -00253919 04 n 02 sterilization 1 sterilisation 1 004 @ 00251013 n 0000 + 00062582 v 0202 + 00062582 v 0101 ~ 00254166 n 0000 | the procedure of making some object free of live bacteria or other microorganisms (usually by heat or chemical means) -00254166 04 n 02 pasteurization 0 pasteurisation 0 003 @ 00253919 n 0000 + 00364629 v 0202 + 00364629 v 0101 | partial sterilization of foods at a temperature that destroys harmful microorganisms without major changes in the chemistry of the food -00254415 04 n 03 sanitation 0 sanitization 0 sanitisation 0 003 @ 00251013 n 0000 + 01245052 v 0302 + 01245052 v 0201 | making something sanitary (free of germs) as by sterilizing -00254597 04 n 02 depilation 0 epilation 0 004 @ 00251013 n 0000 + 00037514 v 0102 ~ 00254769 n 0000 ~ 00255065 n 0000 | the act of removing hair (as from an animal skin) -00254769 04 n 02 shave 0 shaving 0 004 @ 00254597 n 0000 + 00037298 v 0201 + 00037298 v 0101 ~ 00254922 n 0000 | the act of removing hair with a razor -00254922 04 n 01 tonsure 0 002 @ 00254769 n 0000 + 00037779 v 0101 | shaving the crown of the head by priests or members of a monastic order -00255065 04 n 01 electrolysis 0 001 @ 00254597 n 0000 | removing superfluous or unwanted hair by passing an electric current through the hair root -00255214 04 n 02 washup 0 bathing 1 008 @ 00255710 n 0000 @ 00251013 n 0000 + 00035603 v 0201 + 00025034 v 0101 ~ 00257580 n 0000 ~ 00257770 n 0000 ~ 00258403 n 0000 ~ 00258530 n 0000 | the act of washing yourself (or another person) -00255450 04 n 01 ablution 0 003 @ 01030820 n 0000 @ 00255710 n 0000 + 02117866 a 0101 | the ritual washing of a priest's hands or of sacred vessels -00255600 04 n 02 dishwashing 0 washup 1 002 @ 00255710 n 0000 + 01533166 v 0201 | the act of washing dishes -00255710 04 n 03 wash 1 washing 0 lavation 0 017 @ 00575741 n 0000 + 00025034 v 0302 + 00036362 v 0302 + 00036362 v 0201 + 02742842 v 0101 + 01535246 v 0101 + 00036178 v 0101 + 00036362 v 0101 ~ 00255214 n 0000 ~ 00255450 n 0000 ~ 00255600 n 0000 ~ 00256122 n 0000 ~ 00256217 n 0000 ~ 00256309 n 0000 ~ 00256501 n 0000 %p 00396642 n 0000 ~ 00578708 n 0000 | the work of cleansing (usually with soap and water) -00256122 04 n 01 washing-up 0 001 @ 00255710 n 0000 | the washing of dishes etc after a meal -00256217 04 n 01 window-washing 0 001 @ 00255710 n 0000 | the activity of washing windows -00256309 04 n 01 rinse 0 002 @ 00255710 n 0000 + 01270199 v 0102 | washing lightly without soap -00256407 04 n 01 rinse 1 001 @ 00275307 n 0000 | the act of giving a light tint to the hair -00256501 04 n 02 soak 1 soaking 0 002 @ 00255710 n 0000 + 01578513 v 0201 | washing something by allowing it to soak -00256620 04 n 02 brush 2 brushing 2 001 @ 00257228 n 0000 | the act of brushing your hair; "he gave his hair a quick brush" -00256746 04 n 02 comb 0 combing 0 006 @ 00257228 n 0000 + 01596645 v 0201 + 00038365 v 0201 + 01596645 v 0101 + 00038365 v 0101 ~ 00256961 n 0000 | the act of drawing a comb through hair; "his hair needed a comb" -00256961 04 n 02 comb-out 0 teasing 2 003 @ 00256746 n 0000 + 00040188 v 0201 + 00038365 v 0102 | the act of removing tangles from you hair with a comb -00257115 04 n 01 shampoo 0 002 @ 00257228 n 0000 + 00042017 v 0101 | the act of washing your hair with shampoo -00257228 04 n 03 hair_care 0 haircare 0 hairdressing 0 005 @ 00654885 n 0000 ~ 00256620 n 0000 ~ 00256746 n 0000 ~ 00257115 n 0000 ~ 00257468 n 0000 | care for the hair: the activity of washing or cutting or curling or arranging the hair -00257468 04 n 01 hairweaving 0 001 @ 00257228 n 0000 | the act of interweaving a hairpiece with your own hair -00257580 04 n 02 shower 0 shower_bath 0 002 @ 00255214 n 0000 + 00035259 v 0101 | washing yourself by standing upright under water sprayed from a nozzle; "he took a shower after the game" -00257770 04 n 01 bath 0 005 @ 00255214 n 0000 + 00037919 v 0102 ~ 00257969 n 0000 ~ 00258093 n 0000 ~ 00258301 n 0000 | you soak and wash your body in a bathtub; "he has a good bath every morning" -00257969 04 n 01 bubble_bath 0 001 @ 00257770 n 0000 | a bath in which you add something to foam and scent the bath water -00258093 04 n 01 mikvah 0 002 @ 00257770 n 0000 ;c 06232880 n 0000 | (Hebrew) a ritual purification and cleansing bath that Orthodox Jews take on certain occasions (as before Sabbath or after menstruation) -00258301 04 n 01 mud_bath 0 001 @ 00257770 n 0000 | a bath in warm mud (as for treating rheumatism) -00258403 04 n 01 sponge_bath 0 001 @ 00255214 n 0000 | you wash your body with a sponge or washcloth instead of in a bathtub -00258530 04 n 04 Turkish_bath 0 steam_bath 0 vapor_bath 0 vapour_bath 0 001 @ 00255214 n 0000 | you sweat in a steam room before getting a rubdown and cold shower -00258695 04 n 01 rubdown 0 003 @ 00659048 n 0000 + 01254013 v 0104 + 01232738 v 0102 | the act of rubbing down, usually for relaxation or medicinal purposes -00258854 04 n 02 correction 0 rectification 0 011 @ 00248977 n 0000 + 00384620 v 0204 + 00199659 v 0202 + 00199912 v 0201 + 01902703 a 0101 + 00199659 v 0101 ~ 00259177 n 0000 ~ 00259544 n 0000 ~ 00259643 n 0000 ~ 01250101 n 0000 ~ 01250208 n 0000 | the act of offering an improvement to replace a mistake; setting right -00259177 04 n 03 redress 0 remedy 0 remediation 0 006 @ 00258854 n 0000 + 00199912 v 0302 + 00232986 a 0201 + 00199912 v 0203 + 02519991 v 0103 ~ 00259392 n 0000 | act of correcting an error or a fault or an evil -00259392 04 n 01 salve 0 002 @ 00259177 n 0000 + 00085907 v 0101 | anything that remedies or heals or soothes; "he needed a salve for his conscience" -00259544 04 n 01 retribution 0 001 @ 00258854 n 0000 | the act of correcting for your wrongdoing -00259643 04 n 02 recompense 0 compensation 0 008 @ 00258854 n 0000 + 02672540 v 0201 + 02519991 v 0202 + 02253456 v 0204 + 02250625 v 0201 + 02249741 v 0201 + 02249741 v 0102 ~ 00259894 n 0000 | the act of compensating for service or loss or injury -00259894 04 n 01 indemnification 0 002 @ 00259643 n 0000 + 02250625 v 0104 | an act of compensation for actual loss or damage or for trouble and annoyance -00260051 04 n 02 optimization 0 optimisation 0 005 @ 00248977 n 0000 + 00124226 v 0202 + 00172505 v 0202 + 00124226 v 0101 + 00172505 v 0101 | the act of rendering optimal; "the simultaneous optimization of growth and profitability"; "in an optimization problem we seek values of the variables that lead to an optimal value of the function that is to be optimized"; "to promote the optimization and diversification of agricultural products" -00260494 04 n 01 perfection 0 003 @ 00248977 n 0000 + 10415230 n 0101 + 00473572 v 0101 | the act of making something perfect -00260622 04 n 01 reform 0 006 @ 00248977 n 0000 + 00265673 v 0101 + 00265386 v 0101 ~ 00260881 n 0000 ~ 00265773 n 0000 ~ 00580565 n 0000 | a change for the better as a result of correcting abuses; "justice was for sale before the reform of the law courts" -00260881 04 n 01 land_reform 0 002 @ 00260622 n 0000 ;c 01124794 n 0000 | a redistribution of agricultural land (especially by government action) -00261029 04 n 03 amelioration 0 melioration 0 betterment 0 006 @ 00248977 n 0000 + 00205885 v 0301 + 00205885 v 0205 + 00205046 v 0204 + 00205885 v 0104 + 00205046 v 0103 | the act of relieving ills and changing for the better -00261258 04 n 02 self-improvement 0 self-reformation 0 003 @ 00248977 n 0000 ~ 00158805 n 0000 ~ 00261405 n 0000 | the act of improving yourself -00261405 04 n 01 reform 2 003 @ 00261258 n 0000 + 00167934 v 0101 + 00384620 v 0101 | self-improvement in behavior or morals by abandoning some vice; "the family rejoiced in the drunkard's reform" -00261604 04 n 01 beautification 0 006 @ 00199130 n 0000 + 02748927 v 0106 + 01675963 v 0106 + 00293141 v 0102 ~ 00261797 n 0000 ~ 00261972 n 0000 | the act of making something more beautiful -00261797 04 n 01 beauty_treatment 0 005 @ 00261604 n 0000 ~ 00660570 n 0000 ~ 00660783 n 0000 ~ 00660957 n 0000 ~ 00665781 n 0000 | enhancement of someone's personal beauty -00261972 04 n 04 glamorization 0 glamorisation 0 glamourization 0 glamourisation 0 005 @ 00261604 n 0000 + 00532886 v 0402 + 00532886 v 0303 + 00532886 v 0204 + 00532886 v 0101 | the act of glamorizing; making something or someone more beautiful (often in a superficial way) -00262249 04 n 01 decoration 0 013 @ 00199130 n 0000 + 02748927 v 0103 + 01675963 v 0101 + 01466543 v 0102 ~ 00262596 n 0000 ~ 00262743 n 0000 ~ 00262908 n 0000 ~ 00263000 n 0000 ~ 00263164 n 0000 ~ 00263272 n 0000 ~ 00263353 n 0000 ~ 00263492 n 0000 ~ 00263642 n 0000 | the act of decorating something (in the hope of making it more attractive) -00262596 04 n 01 adornment 0 002 @ 00262249 n 0000 + 01675963 v 0102 | the action of decorating yourself with something colorful and interesting -00262743 04 n 02 ornamentation 0 embellishment 0 003 @ 00262249 n 0000 + 01675963 v 0205 + 01675963 v 0104 | the act of adding extraneous decorations to something -00262908 04 n 01 window_dressing 0 001 @ 00262249 n 0000 | the decoration of shop windows -00263000 04 n 01 trimming 0 001 @ 00262249 n 0000 | the act of adding decoration; "the children had to be in bed before it was time for the trimming of the tree" -00263164 04 n 01 tessellation 0 002 @ 00262249 n 0000 + 01338878 v 0101 | the act of adorning with mosaic -00263272 04 n 01 figuration 0 001 @ 00262249 n 0000 | decorating with a design -00263353 04 n 01 tattoo 0 002 @ 00262249 n 0000 + 01681333 v 0101 | the practice of making a design on the skin by pricking and staining -00263492 04 n 02 titivation 0 tittivation 0 003 @ 00262249 n 0000 + 00293977 v 0204 + 00293977 v 0103 | sprucing up; making decorative additions to -00263642 04 n 01 marking 1 005 @ 00262249 n 0000 + 00508032 v 0101 ~ 00263813 n 0000 ~ 00263947 n 0000 ~ 00264088 n 0000 | the act of making a visible mark on a surface -00263813 04 n 01 lineation 0 003 @ 00263642 n 0000 + 01276361 v 0101 + 01582645 v 0103 | the act of marking or outlining with lines -00263947 04 n 01 mottling 0 003 @ 00263642 n 0000 + 01696135 v 0101 + 00510364 v 0101 | the act of coloring with areas of different shades -00264088 04 n 01 striping 0 002 @ 00263642 n 0000 + 01273263 v 0101 | the act of marking with stripes -00264192 04 n 02 clearing 1 clarification 2 004 @ 00248977 n 0000 + 00505151 v 0201 + 02350440 v 0101 + 00549217 v 0101 | the act of removing solid particles from a liquid -00264366 04 n 01 enrichment 0 004 @ 00248977 n 0000 + 00171586 v 0101 ~ 00264529 n 0000 ~ 07434473 n 0000 | act of making fuller or more meaningful or rewarding -00264529 04 n 01 fortification 0 004 @ 00264366 n 0000 + 00222328 v 0101 + 00220869 v 0103 + 00222135 v 0103 | the addition of an ingredient for the purpose of enrichment (as the addition of alcohol to wine or the addition of vitamins to food) -00264775 04 n 02 humanization 0 humanisation 0 003 @ 00248977 n 0000 + 01801498 v 0202 + 01801498 v 0101 | the act of making more human -00264913 04 n 02 modernization 0 modernisation 0 003 @ 00248977 n 0000 + 00411020 v 0202 + 00411020 v 0101 | making modern in appearance or behavior; "the modernization of Nigeria will be a long process" -00265119 04 n 03 renovation 0 redevelopment 0 overhaul 1 006 @ 00248977 n 0000 + 00926310 v 0201 + 00172258 v 0201 + 00163441 v 0102 + 00164201 v 0101 ~ 00265472 n 0000 | the act of improving by renewing and restoring; "they are pursuing a general program of renovation to the entire property"; "a major overhal of the healthcare system was proposed" -00265472 04 n 03 face_lift 1 facelift 1 face_lifting 1 001 @ 00265119 n 0000 | a renovation that improves the outward appearance (as of a building) but usually does not involve major changes; "give your home a facelift"; "more than a facelift, the new model marks a fundamental change of direction" -00265773 04 n 02 moralization 0 moralisation 0 003 @ 00260622 n 0000 + 00385047 v 0202 + 00385047 v 0101 | the act of making moral (or more moral); "for years she worked toward the moralization of English literature" -00265992 04 n 02 enhancement 0 sweetening 2 003 @ 00248977 n 0000 + 00519854 v 0201 + 00230033 v 0101 | an improvement that makes something more agreeable -00266149 04 n 01 upturn 0 001 @ 00248977 n 0000 | an upward movement or trend as in business activity -00266253 04 n 01 worsening 0 003 @ 00199130 n 0000 + 00208210 v 0101 ~ 00266401 n 0000 | changing something with the result that it becomes worse -00266401 04 n 02 downturn 0 downswing 1 002 @ 00266253 n 0000 ~ 00266560 n 0000 | a worsening of business or economic activity; "the market took a downturn" -00266560 04 n 01 downspin 0 001 @ 00266401 n 0000 | a swift and dangerous downturn -00266645 04 n 02 ventilation 0 airing 0 003 @ 00248977 n 0000 + 02042672 v 0101 + 00581891 v 0101 | the act of supplying fresh air and getting rid of foul air -00266806 04 n 07 repair 0 fix 0 fixing 0 fixture 0 mend 0 mending 0 reparation 1 015 @ 00248977 n 0000 + 00260648 v 0701 + 00260648 v 0602 + 00260648 v 0502 + 00260648 v 0403 + 00260648 v 0303 + 00260648 v 0203 + 00260648 v 0101 ~ 00267217 n 0000 ~ 00267349 n 0000 ~ 00267522 n 0000 ~ 00268457 n 0000 ~ 00268557 n 0000 ~ 00269258 n 0000 ~ 00270275 n 0000 | the act of putting something in working order again -00267217 04 n 01 darning 0 002 @ 00266806 n 0000 + 01330676 v 0101 | the act of mending a hole in a garment with crossing threads -00267349 04 n 01 patching 0 004 @ 00266806 n 0000 + 02357693 v 0101 + 01590171 v 0101 + 00262703 v 0101 | the act of mending a hole in a garment by sewing a patch over it -00267522 04 n 03 care 0 maintenance 0 upkeep 0 008 @ 00266806 n 0000 + 02280132 v 0203 ~ 00267821 n 0000 ~ 00267917 n 0000 ~ 00268112 n 0000 ~ 00270403 n 0000 ~ 00270539 n 0000 ~ 00270648 n 0000 | activity involved in maintaining something in good working order; "he wrote the manual on car care" -00267821 04 n 01 camera_care 0 001 @ 00267522 n 0000 | keeping a camera in good working order -00267917 04 n 01 car_care 0 002 @ 00267522 n 0000 ~ 00268025 n 0000 | keeping a car in good working order -00268025 04 n 01 oil_change 0 001 @ 00267917 n 0000 | replacing dirty oil with clean -00268112 04 n 03 overhaul 0 inspection_and_repair 0 service 5 004 @ 00267522 n 0000 + 00456937 v 0301 + 00262076 v 0101 ~ 00268341 n 0000 | periodic maintenance on a car or machine; "it was time for an overhaul on the tractor" -00268341 04 n 01 interim_overhaul 0 001 @ 00268112 n 0000 | an overhaul between the regular times for overhauling -00268457 04 n 04 band_aid 0 quick_fix 0 quickie 0 quicky 0 001 @ 00266806 n 0000 | hurried repair -00268557 04 n 01 restoration 0 009 @ 00266806 n 0000 + 02552449 v 0101 + 00168588 v 0102 ~ 00237705 n 0000 ~ 00268824 n 0000 ~ 00269018 n 0000 ~ 00400645 n 0000 ~ 00401459 n 0000 ~ 00401639 n 0000 | the act of restoring something or someone to a satisfactory state -00268824 04 n 01 gentrification 0 002 @ 00268557 n 0000 + 00163703 v 0101 | the restoration of run-down urban areas by the middle class (resulting in the displacement of low-income residents) -00269018 04 n 03 reclamation 1 renewal 0 rehabilitation 0 005 @ 00268557 n 0000 + 02552829 v 0301 + 00383871 v 0101 ~ 00400449 n 0000 ~ 00401194 n 0000 | the conversion of wasteland into land suitable for use of habitation or cultivation -00269258 04 n 01 reconstruction 0 007 @ 00266806 n 0000 + 01655902 v 0102 + 00199490 v 0102 ~ 00269674 n 0000 ~ 00269856 n 0000 ~ 00269963 n 0000 ~ 00270186 n 0000 | the activity of constructing something again -00269471 04 n 01 anastylosis 0 002 @ 00269856 n 0000 ;c 06144081 n 0000 | the archeological reassembly of ruined monuments from fallen or decayed fragments (incorporating new materials when necessary) -00269674 04 n 01 makeover 1 002 @ 00269258 n 0000 + 01619725 v 0104 | a complete reconstruction and renovation of something; "the blighted neighborhood underwent a total makeover" -00269856 04 n 02 reassembly 0 refabrication 0 002 @ 00269258 n 0000 ~ 00269471 n 0000 | assembling again -00269963 04 n 02 re-formation 0 regeneration 1 004 @ 00269258 n 0000 + 01631072 v 0201 + 00167824 v 0201 + 00097941 v 0201 | forming again (especially with improvements or removal of defects); renewing and reconstituting -00270186 04 n 01 rebuilding 0 002 @ 00269258 n 0000 + 01655902 v 0101 | building again -00270275 04 n 01 restitution 1 002 @ 00266806 n 0000 + 00164201 v 0102 | the act of restoring something to its original state -00270403 04 n 01 pump_priming 0 001 @ 00267522 n 0000 | introducing water into a pump to improve the seal and start the water flowing -00270539 04 n 01 scheduled_maintenance 0 001 @ 00267522 n 0000 | maintenance at a regularly scheduled time -00270648 04 n 01 steam_fitting 0 001 @ 00267522 n 0000 | care (installation and maintenance) of equipment for ventilating or heating or refrigerating -00270800 04 n 02 coaching 0 coaching_job 0 002 @ 00584367 n 0000 + 00833702 v 0101 | the job of a professional coach -00270919 04 n 02 engagement 5 booking 1 003 @ 00584367 n 0000 + 00678777 v 0201 ~ 00271155 n 0000 | employment for performers or performing groups that lasts for a limited period of time; "the play had bookings throughout the summer" -00271155 04 n 01 gig 0 001 @ 00270919 n 0000 | a booking for musicians; "they played a gig in New Jersey" -00271263 04 n 02 degradation 0 debasement 0 015 @ 00199130 n 0000 + 02579447 v 0207 + 01800422 v 0102 + 00207728 v 0101 ~ 00271636 n 0000 ~ 00271879 n 0000 ~ 00272123 n 0000 ~ 00272303 n 0000 ~ 00272448 n 0000 ~ 00272713 n 0000 ~ 00272878 n 0000 ~ 00273077 n 0000 ~ 00273319 n 0000 ~ 00273449 n 0000 ~ 01268020 n 0000 | changing to a lower state (a less respected state) -00271636 04 n 02 dehumanization 0 dehumanisation 0 003 @ 00271263 n 0000 + 01801297 v 0202 + 01801297 v 0101 | the act of degrading people with respect to their best qualities; "science has been blamed for the dehumanization of modern life" -00271879 04 n 04 brutalization 0 brutalisation 0 animalization 0 animalisation 0 005 @ 00271263 n 0000 + 00114052 v 0202 + 00113853 v 0202 + 00114052 v 0101 + 00113853 v 0101 | an act that makes people cruel or lacking normal human qualities -00272123 04 n 02 barbarization 0 barbarisation 0 004 @ 00271263 n 0000 + 00134564 v 0202 + 00134328 v 0202 + 00134328 v 0101 | an act that makes people primitive and uncivilized -00272303 04 n 02 bastardization 0 bastardisation 0 003 @ 00271263 n 0000 + 02580853 v 0202 + 02580853 v 0101 | an act that debases or corrupts -00272448 04 n 02 corruption 0 subversion 0 003 @ 00271263 n 0000 + 02579447 v 0203 + 02579447 v 0101 | destroying someone's (or some group's) honesty or loyalty; undermining moral integrity; "corruption of a minor"; "the big city's subversion of rural innocence" -00272713 04 n 02 demoralization 0 demoralisation 0 003 @ 00271263 n 0000 + 02579447 v 0205 + 02579447 v 0104 | destroying the moral basis for a doctrine or policy -00272878 04 n 04 stultification 0 constipation 0 impairment 1 deadening 0 003 @ 00271263 n 0000 + 00192051 v 0401 + 00193328 v 0401 | the act of making something futile and useless (as by routine) -00273077 04 n 04 popularization 1 popularisation 1 vulgarization 0 vulgarisation 0 005 @ 00271263 n 0000 + 00970215 v 0404 + 00970215 v 0303 + 00970215 v 0202 + 00970215 v 0101 | the act of making something attractive to the general public -00273319 04 n 01 profanation 1 002 @ 00271263 n 0000 + 02579447 v 0108 | degradation of something worthy of respect; cheapening -00273449 04 n 02 humiliation 0 abasement 0 004 @ 00271263 n 0000 + 01799794 v 0205 + 01799794 v 0101 ~ 00273601 n 0000 | depriving one of self-esteem -00273601 04 n 01 comedown 0 001 @ 00273449 n 0000 | decline to a lower status or level -00273690 04 n 01 change_of_color 0 005 @ 00199130 n 0000 ~ 00273877 n 0000 ~ 00274437 n 0000 ~ 00274707 n 0000 ~ 00274941 n 0000 | an act that changes the light that something reflects -00273877 04 n 02 whitening 0 lightening 0 003 @ 00273690 n 0000 + 00280301 v 0101 ~ 00274009 n 0000 | changing to a lighter color -00274009 04 n 01 bleach 0 003 @ 00273877 n 0000 + 00279465 v 0101 ~ 00274206 n 0000 | the act of whitening something by bleaching it (exposing it to sunlight or using a chemical bleaching agent) -00274206 04 n 01 etiolation 0 003 @ 00274009 n 0000 ;c 06066555 n 0000 + 00134136 v 0101 | (botany) the act of causing a plant to develop without chlorophyll by growing it without exposure to sunlight; "the etiolation of celery" -00274437 04 n 02 blackening 0 darkening 0 004 @ 00273690 n 0000 + 00311559 v 0201 + 00312380 v 0201 ~ 00274586 n 0000 | changing to a darker color -00274586 04 n 01 obfuscation 1 002 @ 00274437 n 0000 + 00940214 v 0101 | darkening or obscuring the sight of something -00274707 04 n 02 discoloration 0 discolouration 0 004 @ 00273690 n 0000 + 00281101 v 0202 + 00282076 v 0101 + 00281101 v 0101 | the act of changing the natural color of something by making it duller or dingier or unnatural or faded -00274941 04 n 02 coloring 0 colouring 0 006 @ 00273690 n 0000 + 00281101 v 0203 + 00281101 v 0104 ~ 00275151 n 0000 ~ 00275307 n 0000 ~ 00275424 n 0000 | the act or process of changing the color of something -00275151 04 n 01 tinting 0 002 @ 00274941 n 0000 + 00286928 v 0101 | the act of adding a tinge of color; "the hairdresser gave her hair a modest tinting" -00275307 04 n 01 hair_coloring 0 002 @ 00274941 n 0000 ~ 00256407 n 0000 | the act of dyeing or tinting one's hair -00275424 04 n 01 dyeing 0 003 @ 00274941 n 0000 + 00283090 v 0101 ~ 00275572 n 0000 | the use of dye to change the color of something permanently -00275572 04 n 01 staining 0 004 @ 00275424 n 0000 ;c 06077413 n 0000 + 00283415 v 0101 ~ 00275751 n 0000 | (histology) the use of a dye to color specimens for microscopic study -00275751 04 n 05 Gram's_method 0 Gram_method 0 Gram's_procedure 0 Gram's_stain 0 Gram_stain 0 001 @ 00275572 n 0000 | a staining technique used to classify bacteria; bacteria are stained with gentian violet and then treated with Gram's solution; after being decolorized with alcohol and treated with safranine and washed in water, those that retain the gentian violet are Gram-positive and those that do not retain it are Gram-negative -00276189 04 n 01 environmentalism 0 002 @ 00819024 n 0000 + 10060621 n 0101 | the activity of protecting the environment from pollution or destruction -00276342 04 n 02 fixation 0 fixing 2 005 @ 13540610 n 0000 #p 13538314 n 0000 ;c 06077413 n 0000 + 00407458 v 0201 + 00486998 v 0101 | (histology) the preservation and hardening of a tissue sample to retain as nearly as possible the same relations they had in the living body -00276620 04 n 03 soiling 0 soilure 0 dirtying 0 006 @ 00199130 n 0000 + 01534147 v 0301 + 01534147 v 0202 + 01534147 v 0102 ~ 00276813 n 0000 ~ 00276987 n 0000 | the act of soiling something -00276813 04 n 03 staining 1 spotting 1 maculation 0 004 @ 00276620 n 0000 + 01537409 v 0303 + 00492410 v 0304 + 01531998 v 0201 | the act of spotting or staining something -00276987 04 n 02 contamination 0 pollution 0 006 @ 00276620 n 0000 + 00492706 v 0201 + 00493259 v 0101 + 00492706 v 0103 ! 00394485 n 0101 ~ 00277267 n 0000 | the act of contaminating or polluting; including (either intentionally or accidentally) unwanted substances or factors -00277267 04 n 01 dust_contamination 0 001 @ 00276987 n 0000 | the act of contaminating with dust particles -00277376 04 n 01 wetting 0 007 @ 00199130 n 0000 + 00214951 v 0101 ~ 00277569 n 0000 ~ 00277811 n 0000 ~ 00278040 n 0000 ~ 00278221 n 0000 ~ 00278403 n 0000 | the act of making something wet -00277569 04 n 04 submersion 0 immersion 1 ducking 0 dousing 0 007 @ 00277376 n 0000 + 01577093 v 0405 + 01976220 v 0303 + 01967792 v 0301 + 00601378 v 0202 + 01578254 v 0101 + 01578254 v 0102 | the act of wetting something by submerging it -00277811 04 n 04 drenching 0 soaking 1 souse 0 sousing 0 005 @ 00277376 n 0000 + 00216216 v 0406 + 01577093 v 0303 + 00216216 v 0306 + 00216216 v 0204 | the act of making something completely wet; "he gave it a good drenching" -00278040 04 n 02 moistening 0 dampening 0 005 @ 00277376 n 0000 + 00217956 v 0203 + 01376082 v 0102 + 00217956 v 0101 ~ 00247955 n 0000 | the act of making something slightly wet -00278221 04 n 02 splash 1 splashing 1 005 @ 00277376 n 0000 + 01375295 v 0201 + 01534609 v 0101 + 01374020 v 0104 + 01374767 v 0102 | the act of scattering water about haphazardly -00278403 04 n 01 watering 0 003 @ 00277376 n 0000 + 00228236 v 0101 ~ 00278555 n 0000 | wetting with water; "the lawn needs a great deal of watering" -00278555 04 n 03 sprinkle 0 sprinkling 2 sparge 0 004 @ 00278403 n 0000 + 00228655 v 0201 + 00228655 v 0101 + 01374767 v 0101 | the act of sprinkling or splashing water; "baptized with a sprinkling of holy water"; "a sparge of warm water over the malt" -00278810 04 n 04 chew 0 chewing 0 mastication 0 manduction 0 010 @ 00199130 n 0000 #p 00838367 n 0000 + 01201089 v 0302 + 01201089 v 0201 + 02445978 a 0101 + 00843988 a 0101 + 01201089 v 0101 ~ 00279136 n 0000 ~ 00279235 n 0000 ~ 00279377 n 0000 | biting and grinding food in your mouth so it becomes soft enough to swallow -00279136 04 n 01 chomping 0 002 @ 00278810 n 0000 + 01174973 v 0101 | the act of chewing noisily -00279235 04 n 02 mumbling 0 gumming 0 003 @ 00278810 n 0000 + 01175224 v 0202 + 01175224 v 0101 | ineffectual chewing (as if without teeth) -00279377 04 n 01 rumination 1 002 @ 00278810 n 0000 + 01174555 v 0101 | (of ruminants) chewing (the cud); "ruminants have remarkable powers of rumination" -00279534 04 n 01 bruxism 0 001 @ 00037396 n 0000 | involuntarily or unconsciously clenching or grinding the teeth, typically during sleep -00279674 04 n 01 defoliation 0 002 @ 00199130 n 0000 + 00195813 v 0101 | causing the leaves of trees and other plants to fall off (as by the use of chemicals) -00279835 04 n 03 motion 1 movement 4 move 4 028 @ 00191142 n 0000 + 01850315 v 0301 + 01835496 v 0303 + 01835496 v 0203 + 01855606 v 0201 + 01850315 v 0201 + 03002724 a 0101 + 01835496 v 0103 ~ 00280853 n 0000 ~ 00282050 n 0000 ~ 00283127 n 0000 ~ 00290276 n 0000 ~ 00295701 n 0000 ~ 00319939 n 0000 ~ 00324384 n 0000 ~ 00326440 n 0000 ~ 00327824 n 0000 ~ 00328015 n 0000 ~ 00328502 n 0000 ~ 00328885 n 0000 ~ 00329227 n 0000 ~ 00330035 n 0000 ~ 00330160 n 0000 ~ 00330984 n 0000 ~ 00331655 n 0000 ~ 00555648 n 0000 ~ 00556313 n 0000 ~ 01123095 n 0000 | the act of changing location from one place to another; "police controlled the motion of the crowd"; "the movement of people from the farms to the cities"; "his move put him directly in my path" -00280586 04 n 01 movement 2 008 @ 00191142 n 0000 + 01850315 v 0101 ~ 00315830 n 0000 ~ 00315986 n 0000 ~ 00320852 n 0000 ~ 00327683 n 0000 ~ 00331102 n 0000 ~ 00331531 n 0000 | the act of changing the location of something; "the movement of cargo onto the vessel" -00280853 04 n 03 approach 0 approaching 0 coming 2 007 @ 00279835 n 0000 + 01849221 v 0301 + 02053941 v 0101 ~ 00281132 n 0000 ~ 00281462 n 0000 ~ 00281752 n 0000 ~ 00476788 n 0000 | the act of drawing spatially closer to something; "the hunter's approach scattered the geese" -00281132 04 n 01 access 0 003 @ 00280853 n 0000 + 02007417 v 0101 ~ 00281291 n 0000 | the act of approaching or entering; "he gained access to the building" -00281291 04 n 02 back_door 0 backdoor 0 001 @ 00281132 n 0000 | a secret or underhand means of access (to a place or a position); "he got his job through the back door" -00281462 04 n 02 closing 3 closure 2 005 @ 00280853 n 0000 + 02054382 v 0201 + 02375619 v 0101 + 02054382 v 0101 + 01291941 v 0102 | approaching a particular destination; a coming closer; a narrowing of a gap; "the ship's rapid rate of closing gave them little time to avoid a collision" -00281752 04 n 01 landing_approach 0 003 @ 00280853 n 0000 #p 00052500 n 0000 ~ 00281898 n 0000 | the approach to a landing field by an airplane -00281898 04 n 03 overshoot 0 wave-off 0 go-around 0 002 @ 00281752 n 0000 + 00705778 v 0101 | an approach that fails and gives way to another attempt -00282050 04 n 07 progress 0 progression 0 procession 1 advance 0 advancement 1 forward_motion 0 onward_motion 0 015 @ 00279835 n 0000 + 01993926 v 0501 + 01992503 v 0501 + 00558371 v 0501 ! 00054483 n 0401 + 01992503 v 0401 + 00248659 v 0404 + 01995549 v 0301 + 01992503 v 0202 + 01992503 v 0102 ~ 00282485 n 0000 ~ 00282613 n 0000 ~ 00282840 n 0000 ~ 00282953 n 0000 ~ 00486130 n 0000 | the act of moving forward (as toward a goal) -00282485 04 n 01 push 1 002 @ 00282050 n 0000 + 00765977 v 0101 | an effort to advance; "the army made a push toward the sea" -00282613 04 n 02 career 1 life_history 0 002 @ 00282050 n 0000 + 09895222 n 0101 | the general progression of your working or professional life; "the general had had a distinguished career"; "he had a long career in the law" -00282840 04 n 01 march 2 001 @ 00282050 n 0000 | a steady advance; "the march of science"; "the march of time" -00282953 04 n 03 plain_sailing 0 clear_sailing 0 easy_going 0 001 @ 00282050 n 0000 | easy unobstructed progress; "after we solved that problem the rest was plain sailing" -00283127 04 n 02 locomotion 0 travel 1 014 @ 00279835 n 0000 + 01835496 v 0201 + 02994448 a 0101 + 01835496 v 0104 ~ 00283450 n 0000 ~ 00283568 n 0000 ~ 00285557 n 0000 ~ 00286957 n 0000 ~ 00293916 n 0000 ~ 00294190 n 0000 ~ 00294868 n 0000 ~ 00295172 n 0000 ~ 00533922 n 0000 ~ 00569898 n 0000 | self-propelled movement -00283450 04 n 01 brachiation 0 002 @ 00283127 n 0000 + 01891489 v 0101 | swinging by the arms from branch to branch -00283568 04 n 02 walk 0 walking 0 015 @ 00283127 n 0000 + 01904930 v 0201 + 01906823 v 0101 + 01882170 v 0101 + 01912893 v 0101 + 01904930 v 0101 ~ 00283951 n 0000 ~ 00285141 n 0000 %p 00285889 n 0000 ~ 00286497 n 0000 ~ 00290579 n 0000 ~ 00291965 n 0000 ~ 00292125 n 0000 ~ 00292712 n 0000 ~ 00293307 n 0000 | the act of traveling by foot; "walking is a healthy form of exercise" -00283951 04 n 01 ambulation 0 003 @ 00283568 n 0000 + 01911698 v 0101 + 02616345 a 0101 | walking about; "the hospital encouraged early ambulation" -00284101 04 n 05 amble 0 promenade 0 saunter 0 stroll 0 perambulation 0 010 @ 00284798 n 0000 + 01910965 v 0501 + 01917980 v 0401 + 01917980 v 0302 + 01919226 v 0201 + 01910965 v 0101 + 01911698 v 0101 + 01918183 v 0101 ~ 00284409 n 0000 ~ 00293545 n 0000 | a leisurely walk (usually in some public place) -00284409 04 n 02 ramble 0 meander 0 003 @ 00284101 n 0000 + 01882814 v 0204 + 01881180 v 0108 | an aimless amble on a winding course -00284544 04 n 01 constitutional 0 002 @ 00284798 n 0000 + 01882479 v 0101 | a regular walk taken as a form of exercise -00284665 04 n 01 foot 0 002 @ 00284798 n 0000 + 01906322 v 0101 | travel by walking; "he followed on foot"; "the swiftest of foot" -00284798 04 n 01 walk 3 014 @ 00295701 n 0000 + 01882170 v 0101 + 01912893 v 0101 + 01904930 v 0101 ~ 00284101 n 0000 ~ 00284544 n 0000 ~ 00284665 n 0000 ~ 00288970 n 0000 ~ 00291286 n 0000 ~ 00292269 n 0000 ~ 00292386 n 0000 ~ 00292599 n 0000 ~ 00293417 n 0000 ~ 00293753 n 0000 | the act of walking somewhere; "he took a walk after lunch" -00285141 04 n 05 sleepwalking 0 somnambulism 0 somnambulation 0 noctambulism 0 noctambulation 0 006 @ 00858188 n 0000 @ 00283568 n 0000 + 10611361 n 0403 + 01916960 v 0302 + 10611361 n 0202 + 01916960 v 0101 | walking by a person who is asleep -00285387 04 n 03 sleep_talking 0 somniloquy 0 somniloquism 0 004 @ 00858188 n 0000 @ 05701738 n 0000 + 10623949 n 0301 + 10623949 n 0201 | uttering speech while asleep -00285557 04 n 01 step 0 011 @ 00283127 n 0000 + 00490722 v 0102 + 02091689 v 0101 + 02091885 v 0101 + 02091410 v 0101 + 01928838 v 0101 ~ 00285889 n 0000 ~ 00286112 n 0000 ~ 00286240 n 0000 ~ 00286360 n 0000 ~ 00288880 n 0000 | the act of changing location by raising the foot and setting it down; "he walked with unsteady steps" -00285889 04 n 03 pace 0 stride 0 tread 0 008 @ 00285557 n 0000 #p 00283568 n 0000 + 02091410 v 0302 + 01912709 v 0201 + 01919711 v 0201 + 00490722 v 0101 + 02091165 v 0101 + 01929254 v 0101 | a step in walking or running -00286112 04 n 01 pas 0 002 @ 00285557 n 0000 ;c 00528667 n 0000 | (ballet) a step in dancing (especially in classical ballet) -00286240 04 n 01 trip 2 001 @ 00285557 n 0000 | a light or nimble tread; "he heard the trip of women's feet overhead" -00286360 04 n 01 sidestep 0 003 @ 00285557 n 0000 ;c 00445802 n 0000 ;c 00428270 n 0000 | a step to one side (as in boxing or dancing) -00286497 04 n 01 gait 1 011 @ 00283568 n 0000 ~ 00286756 n 0000 ~ 00289267 n 0000 ~ 00289388 n 0000 ~ 00289555 n 0000 ~ 00289659 n 0000 ~ 00289737 n 0000 ~ 00289906 n 0000 ~ 00290015 n 0000 ~ 00290125 n 0000 ~ 00290406 n 0000 | a person's manner of walking -00286756 04 n 03 hitch 0 hobble 0 limp 0 005 @ 00286497 n 0000 + 01996402 v 0301 + 01917244 v 0301 + 01917244 v 0203 + 01917244 v 0104 | the uneven manner of walking that results from an injured leg -00286957 04 n 01 gait 2 007 @ 00283127 n 0000 ~ 00287142 n 0000 ~ 00287276 n 0000 ~ 00287449 n 0000 ~ 00287561 n 0000 ~ 00288486 n 0000 ~ 00288671 n 0000 | a horse's manner of moving -00287142 04 n 01 walk 2 002 @ 00286957 n 0000 + 01959776 v 0101 | a slow gait of a horse in which two feet are always on the ground -00287276 04 n 02 rack 0 single-foot 0 003 @ 00286957 n 0000 + 01960491 v 0201 + 01960491 v 0102 | a rapid gait of a horse in which each foot strikes the ground separately -00287449 04 n 01 jog_trot 0 001 @ 00286957 n 0000 | an easy gait of a horse; midway between a walk and a trot -00287561 04 n 01 trot 2 005 @ 00286957 n 0000 + 01901660 v 0101 + 01960779 v 0101 ~ 00287762 n 0000 ~ 00287889 n 0000 | a gait faster than a walk; diagonally opposite legs strike the ground together -00287762 04 n 01 rising_trot 0 002 @ 00287561 n 0000 ! 00287889 n 0101 | the rider rises from the saddle every second stride -00287889 04 n 01 sitting_trot 0 002 @ 00287561 n 0000 ! 00287762 n 0101 | the rider sits still in the saddle -00288000 04 n 01 dressage 0 005 @ 00450700 n 0000 #p 07461050 n 0000 ~ 00288190 n 0000 ~ 00288384 n 0000 -c 00512351 n 0000 | maneuvers of a horse in response to body signals by the rider -00288190 04 n 02 curvet 0 vaulting 0 003 @ 00288000 n 0000 + 01966168 v 0201 + 01966352 v 0101 | a light leap by a horse in which both hind legs leave the ground before the forelegs come down -00288384 04 n 01 piaffe 0 001 @ 00288000 n 0000 | a cadenced trot executed by the horse in one spot -00288486 04 n 02 canter 0 lope 0 005 @ 00286957 n 0000 + 01928730 v 0201 + 01959482 v 0101 + 01959669 v 0101 + 01959340 v 0101 | a smooth three-beat gait; between a trot and a gallop -00288671 04 n 01 gallop 0 004 @ 00286957 n 0000 + 01960296 v 0101 + 01960643 v 0101 + 01959927 v 0101 | a fast gait of a horse; a two-beat stride during which all four legs are off the ground simultaneously -00288880 04 n 01 footstep 0 001 @ 00285557 n 0000 | the act of taking a step in walking -00288970 04 n 03 hike 0 hiking 0 tramp 0 004 @ 00284798 n 0000 + 01920698 v 0301 + 01920932 v 0101 ~ 00289175 n 0000 | a long walk usually for exercise or pleasure; "she enjoys a hike in her spare time" -00289175 04 n 01 trudge 0 002 @ 00288970 n 0000 + 01921204 v 0104 | a long difficult walk -00289267 04 n 01 flounce 0 002 @ 00286497 n 0000 + 01924405 v 0101 | the act of walking with exaggerated jerky motions -00289388 04 n 03 lurch 0 stumble 0 stagger 0 005 @ 00286497 n 0000 + 01925170 v 0301 + 01924882 v 0301 + 01901133 v 0201 + 01924882 v 0104 | an unsteady uneven gait -00289555 04 n 01 pacing 0 002 @ 00286497 n 0000 + 01929254 v 0101 | walking with slow regular strides -00289659 04 n 01 roll 4 001 @ 00286497 n 0000 | walking with a swaying gait -00289737 04 n 01 saunter 1 002 @ 00286497 n 0000 + 01917980 v 0102 | a careless leisurely gait; "he walked with a kind of saunter as if he hadn't a care in the world" -00289906 04 n 01 skip 1 002 @ 00286497 n 0000 + 01966861 v 0102 | a gait in which steps and hops alternate -00290015 04 n 02 stalk 0 angry_walk 0 002 @ 00286497 n 0000 + 01924148 v 0101 | a stiff or threatening gait -00290125 04 n 03 strut 0 prance 0 swagger 0 004 @ 00286497 n 0000 + 01916634 v 0302 + 01916634 v 0204 + 01916634 v 0105 | a proud stiff pompous gait -00290276 04 n 02 lurch 1 lunge 0 003 @ 00279835 n 0000 + 02062212 v 0201 + 01864634 v 0101 | the act of moving forward suddenly -00290406 04 n 01 waddle 0 002 @ 00286497 n 0000 + 01918803 v 0106 | walking with short steps and the weight tilting from one foot to the other; "ducks walk with a waddle" -00290579 04 n 02 march 0 marching 0 013 @ 00283568 n 0000 + 01996735 v 0201 + 02084587 v 0101 + 02521816 v 0102 + 01919391 v 0101 + 02084380 v 0101 + 01996735 v 0101 ~ 00291004 n 0000 ~ 00291154 n 0000 ~ 00291400 n 0000 ~ 00291663 n 0000 ~ 00291796 n 0000 ~ 00291876 n 0000 | the act of marching; walking with regular steps (especially in a procession of some kind); "it was a long march"; "we heard the sound of marching" -00291004 04 n 01 countermarch 0 002 @ 00290579 n 0000 ;c 08199025 n 0000 | (military) a march in the reverse direction or back along the same route -00291154 04 n 01 goose_step 0 002 @ 00290579 n 0000 + 01929133 v 0101 | a manner of marching with legs straight and swinging high -00291286 04 n 01 last_mile 0 001 @ 00284798 n 0000 | the last walk of a condemned person to the execution place -00291400 04 n 01 lockstep 0 001 @ 00290579 n 0000 | a manner of marching in file in which each person's leg moves with and behind the corresponding leg of the person ahead; "the prisoner's ankles were so chained together that they could only march in lockstep" -00291663 04 n 01 promenade 1 002 @ 00290579 n 0000 #p 08253268 n 0000 | a march of all the guests at the opening of a formal dance -00291796 04 n 01 quick_march 0 001 @ 00290579 n 0000 | marching at quick time -00291876 04 n 01 routemarch 0 001 @ 00290579 n 0000 | a long training march for troops -00291965 04 n 02 plodding 1 plod 0 002 @ 00283568 n 0000 + 01921204 v 0103 | the act of walking with a slow heavy gait; "I could recognize his plod anywhere" -00292125 04 n 01 prowl 0 003 @ 00283568 n 0000 + 02639475 v 0101 + 01918304 v 0101 | the act of prowling (walking about in a stealthy manner) -00292269 04 n 01 moonwalk 0 001 @ 00284798 n 0000 | an exploratory walk by an astronaut on the surface of the moon -00292386 04 n 01 perambulation 1 003 @ 00284798 n 0000 ;r 08860123 n 0000 + 02165754 v 0101 | a walk around a territory (a parish or manor or forest etc.) in order to officially assert and record its boundaries -00292599 04 n 01 turn 3 001 @ 00284798 n 0000 | taking a short walk out and back; "we took a turn in the park" -00292712 04 n 04 shamble 0 shambling 0 shuffle 1 shuffling 1 005 @ 00283568 n 0000 + 01917549 v 0401 + 01917549 v 0301 + 01917549 v 0203 + 01917549 v 0103 | walking with a slow dragging motion without lifting your feet; "from his shambling I assumed he was very old" -00292981 04 n 01 space_walk 0 002 @ 00407535 n 0000 + 01906202 v 0101 | any kind of physical activity outside a spacecraft by one of the crew -00293125 04 n 01 moonwalk 1 001 @ 00533922 n 0000 | a kind of dance step in which the dancer seems to be sliding on the spot; "Michael Jackson perfected the moonwalk in the 1980s" -00293307 04 n 01 wading 0 002 @ 00283568 n 0000 + 01916214 v 0101 | walking with your feet in shallow water -00293417 04 n 01 walkabout 1 002 @ 00284798 n 0000 ;r 08831004 n 0000 | nomadic excursions into the bush made by an Aborigine -00293545 04 n 01 walkabout 2 001 @ 00284101 n 0000 | a public stroll by a celebrity to meet people informally -00293657 04 n 01 walkabout 3 002 @ 00310666 n 0000 + 01910965 v 0102 | a walking trip or tour -00293753 04 n 01 walk-through 1 001 @ 00284798 n 0000 | the act of walking in order to view something; "the realtor took her on a walk-through of the apartment" -00293916 04 n 02 run 0 running 1 007 @ 00283127 n 0000 + 01926311 v 0201 + 01926984 v 0101 + 01914947 v 0101 + 02092309 v 0101 + 01926311 v 0101 ~ 00294452 n 0000 | the act of running; traveling on foot at a fast pace; "he broke into a run"; "his daily run keeps him fit" -00294190 04 n 03 jog 0 trot 0 lope 2 006 @ 00283127 n 0000 + 01928730 v 0301 + 01901447 v 0201 + 01901447 v 0102 + 01928390 v 0101 ~ 00294366 n 0000 | a slow pace of running -00294366 04 n 01 dogtrot 0 001 @ 00294190 n 0000 | a steady trot like that of a dog -00294452 04 n 02 dash 1 sprint 0 004 @ 00293916 n 0000 + 01928579 v 0201 + 02061495 v 0102 ~ 00294748 n 0000 | a quick run -00294577 04 n 01 fast_break 0 002 @ 00294748 n 0000 ;c 00480993 n 0000 | (basketball) a rapid dash to get a shot as soon as possible after taking possession of the ball -00294748 04 n 01 break 2 002 @ 00294452 n 0000 ~ 00294577 n 0000 | a sudden dash; "he made a break for the open door" -00294868 04 n 04 crawl 1 crawling 0 creep 0 creeping 0 005 @ 00283127 n 0000 + 01885845 v 0402 + 01885845 v 0302 + 01885845 v 0201 + 01885845 v 0101 | a slow mode of locomotion on hands and knees or dragging the body; "a crawl was all that the injured man could manage"; "the traffic moved at a creep" -00295172 04 n 03 lap 1 circle 0 circuit 1 007 @ 00283127 n 0000 + 00676271 a 0201 + 02044278 v 0202 + 01911339 v 0201 + 02044278 v 0201 ~ 00295422 n 0000 ~ 00295563 n 0000 | movement once around a course; "he drove an extra lap just for insurance" -00295422 04 n 01 pace_lap 0 002 @ 00295172 n 0000 ;c 00449517 n 0000 | the first lap of a car race that prepares the cars for a fast start -00295563 04 n 02 victory_lap 0 lap_of_honour 0 001 @ 00295172 n 0000 | a lap by the winning person or team run to celebrate the victory -00295701 04 n 03 travel 0 traveling 0 travelling 0 023 @ 00279835 n 0000 + 01845720 v 0301 + 01845720 v 0201 + 02102002 v 0101 + 01846916 v 0101 + 01845720 v 0101 ~ 00284798 n 0000 ~ 00296263 n 0000 ~ 00296478 n 0000 ~ 00296946 n 0000 ~ 00297062 n 0000 ~ 00297318 n 0000 ~ 00297532 n 0000 ~ 00298497 n 0000 ~ 00299217 n 0000 ~ 00300441 n 0000 ~ 00306426 n 0000 ~ 00306900 n 0000 ~ 00307102 n 0000 ~ 00311528 n 0000 ~ 00312160 n 0000 ~ 00313647 n 0000 ~ 00315700 n 0000 | the act of going from one place to another; "he enjoyed selling but he hated the travel" -00296263 04 n 01 circumnavigation 0 003 @ 00295701 n 0000 ;c 02691156 n 0000 + 01911526 v 0101 | traveling around something (by ship or plane); "Magellan's circumnavigation of the earth proved that it is a globe" -00296478 04 n 01 peregrination 0 002 @ 00295701 n 0000 + 02081006 v 0101 | traveling or wandering around -00296585 04 n 01 procession 0 010 @ 01080366 n 0000 @ 07951464 n 0000 ~ 08417801 n 0000 ~ 08427629 n 0000 ~ 08427918 n 0000 ~ 08428019 n 0000 ~ 08428383 n 0000 ~ 08428485 n 0000 ~ 08429482 n 0000 ~ 08429556 n 0000 | the group action of a collection of people or animals or vehicles moving ahead in more or less regular formation; "processions were forbidden" -00296946 04 n 02 traversal 1 traverse 1 003 @ 00295701 n 0000 + 01912159 v 0201 + 01912159 v 0101 | travel across -00297062 04 n 03 wandering 0 roving 0 vagabondage 0 005 @ 00295701 n 0000 + 01881180 v 030c + 01881180 v 0209 + 01881180 v 0102 ~ 00297404 n 0000 | travelling about without any clear destination; "she followed him in his wanderings and looked after him" -00297318 04 n 01 wayfaring 0 001 @ 00295701 n 0000 | traveling (especially on foot) -00297404 04 n 01 drifting 0 003 @ 00297062 n 0000 + 01925694 v 0103 + 01881180 v 010b | aimless wandering from place to place -00297532 04 n 01 crossing 1 004 @ 00295701 n 0000 + 01912159 v 0104 ~ 00297657 n 0000 ~ 00298047 n 0000 | traveling across -00297657 04 n 02 ford 0 fording 0 005 @ 00297532 n 0000 + 01913849 v 0201 + 01913849 v 0101 ~ 00297863 n 0000 ~ 00297951 n 0000 | the act of crossing a stream or river by wading or in a car or on a horse -00297863 04 n 01 shallow_fording 0 001 @ 00297657 n 0000 | fording at a shallow place -00297951 04 n 01 deep_fording 0 001 @ 00297657 n 0000 | fording at a deep place in the stream -00298047 04 n 02 traversal 0 traverse 0 002 @ 00297532 n 0000 #p 00440747 n 0000 | taking a zigzag path on skis -00298161 04 n 02 tourism 0 touristry 0 003 @ 01094725 n 0000 + 10718131 n 0101 ~ 00298351 n 0000 | the business of providing services to tourists; "Tourism is a major business in Bermuda" -00298351 04 n 01 ecotourism 0 001 @ 00298161 n 0000 | tourism to exotic or threatened ecosystems to observe wildlife or to help preserve nature -00298497 04 n 01 driving 0 027 @ 00295701 n 0000 @ 00815320 n 0000 + 01930874 v 0101 + 01512259 v 0101 ~ 00299112 n 0000 -c 01850135 v 0000 -c 01861230 v 0000 -c 01861927 v 0000 -c 01862090 v 0000 -c 01862340 v 0000 -c 01863158 v 0000 -c 01863410 v 0000 -c 01863593 v 0000 -c 01863817 v 0000 -c 01930117 v 0000 -c 01930482 v 0000 -c 01930738 v 0000 -c 01930874 v 0000 -c 01931262 v 0000 -c 01931375 v 0000 -c 01931566 v 0000 -c 01934427 v 0000 -c 01934731 v 0000 -c 01934842 v 0000 -c 01934976 v 0000 -c 01956708 v 0000 -c 01957273 v 0000 | the act of controlling and steering the movement of a vehicle or animal -00299112 04 n 01 motoring 0 002 @ 00298497 n 0000 + 01930117 v 0102 | the act of driving an automobile -00299217 04 n 02 riding 0 horseback_riding 0 020 @ 00295701 n 0000 + 01958615 v 0201 + 01957529 v 0101 ~ 00299826 n 0000 ~ 00299933 n 0000 ~ 00300037 n 0000 ~ 00300113 n 0000 -c 01957529 v 0000 -c 01957995 v 0000 -c 01958278 v 0000 -c 01958452 v 0000 -c 01958615 v 0000 -c 01958868 v 0000 -c 01959022 v 0000 -c 01959340 v 0000 -c 01959482 v 0000 -c 01959927 v 0000 -c 01960105 v 0000 -c 01960296 v 0000 -c 01960779 v 0000 | travel by being carried on horseback -00299680 04 n 01 roping 0 004 @ 00620752 n 0000 + 01604251 v 0102 ~ 00300206 n 0000 ~ 00300333 n 0000 | capturing cattle or horses with a lasso -00299826 04 n 01 bronco_busting 0 002 @ 00299217 n 0000 #p 00522939 n 0000 | breaking a bronco to saddle -00299933 04 n 01 endurance_riding 0 001 @ 00299217 n 0000 | riding for long hours over long distances -00300037 04 n 01 pack_riding 0 001 @ 00299217 n 0000 | riding with a pack -00300113 04 n 01 trail_riding 0 001 @ 00299217 n 0000 | riding along a roughly blazed path -00300206 04 n 01 calf_roping 0 002 @ 00299680 n 0000 #p 00522939 n 0000 | capturing a calf with a lasso and binding its feet -00300333 04 n 01 steer_roping 0 002 @ 00299680 n 0000 #p 00522939 n 0000 | capturing a steer with a lasso -00300441 04 n 03 air_travel 0 aviation 0 air 0 031 @ 00295701 n 0000 ~ 00302394 n 0000 -c 01840092 v 0000 -c 01840238 v 0000 -c 01840505 v 0000 -c 01844859 v 0000 -c 01845105 v 0000 -c 01862640 v 0000 -c 01862776 v 0000 -c 01924267 v 0000 -c 01932586 v 0000 -c 01941093 v 0000 -c 01941704 v 0000 -c 01941838 v 0000 -c 01941987 v 0000 -c 01942137 v 0000 -c 01942234 v 0000 -c 01942347 v 0000 -c 01942560 v 0000 -c 01942959 v 0000 -c 01963655 v 0000 -c 01967634 v 0000 -c 01967923 v 0000 -c 01970125 v 0000 -c 01980617 v 0000 -c 01980766 v 0000 -c 01980920 v 0000 -c 01981036 v 0000 -c 02016298 v 0000 -c 02018265 v 0000 -c 02033703 v 0000 | travel via aircraft; "air travel involves too much waiting in airports"; "if you've time to spare go by air" -00301192 04 n 01 flight 2 007 @ 00308370 n 0000 ~ 00301443 n 0000 ~ 00301598 n 0000 ~ 00301728 n 0000 ~ 00301857 n 0000 ~ 00302001 n 0000 ~ 00302185 n 0000 | a scheduled trip by plane between designated airports; "I took the noon flight to Chicago" -00301443 04 n 01 connecting_flight 0 001 @ 00301192 n 0000 | a flight with an intermediate stop and a change of aircraft (possibly a change of airlines) -00301598 04 n 01 direct_flight 0 001 @ 00301192 n 0000 | a flight with one or more intermediate stops but no change of aircraft -00301728 04 n 01 domestic_flight 0 002 @ 00301192 n 0000 ! 00301857 n 0101 | a flight that begins and ends in the same country -00301857 04 n 01 international_flight 0 002 @ 00301192 n 0000 ! 00301728 n 0101 | a flight that takes off in one country and lands in another -00302001 04 n 02 nonstop_flight 0 nonstop 0 001 @ 00301192 n 0000 | a flight made without intermediate stops between source and destination; "how many nonstops are there to Dallas?" -00302185 04 n 02 redeye 0 redeye_flight 0 001 @ 00301192 n 0000 | a night flight from which the passengers emerge with eyes red from lack of sleep; "he took the redeye in order to get home the next morning" -00302394 04 n 02 flight 0 flying 0 019 @ 00300441 n 0000 + 01840238 v 0201 + 01847845 v 0201 + 01941093 v 0201 + 01940403 v 0201 + 01451842 v 0201 + 01940868 v 0101 + 02484771 v 0101 ~ 00302861 n 0000 ~ 00303049 n 0000 ~ 00303221 n 0000 ~ 00303297 n 0000 ~ 00303495 n 0000 ~ 00304208 n 0000 ~ 00304442 n 0000 ~ 00304592 n 0000 ~ 00304729 n 0000 ~ 00304851 n 0000 ~ 00306318 n 0000 | an instance of traveling by air; "flying was still an exciting adventure for him" -00302861 04 n 04 acrobatics 1 aerobatics 0 stunting 0 stunt_flying 0 003 @ 00302394 n 0000 + 01713348 v 0301 ~ 00306210 n 0000 | the performance of stunts while in flight in an aircraft -00303049 04 n 02 blind_flying 0 blind_landing 0 001 @ 00302394 n 0000 | using only instruments for flying an aircraft because you cannot see through clouds or mists etc. -00303221 04 n 01 ballooning 0 001 @ 00302394 n 0000 | flying in a balloon -00303297 04 n 03 flyover 0 fly-by 0 flypast 0 003 @ 00302394 n 0000 ;c 08199025 n 0000 ;c 02686568 n 0000 | a flight at a low altitude (usually of military aircraft) over spectators on the ground -00303495 04 n 05 glide 1 gliding 0 sailplaning 0 soaring 0 sailing 3 008 @ 00302394 n 0000 + 01955808 v 0402 + 01942959 v 0402 + 01942959 v 0301 + 01942347 v 0201 + 01942347 v 0101 ~ 00303748 n 0000 ~ 00304349 n 0000 | the activity of flying a glider -00303748 04 n 01 hang_gliding 0 002 @ 00303495 n 0000 + 01955808 v 0101 | gliding in a hang glider -00303849 04 n 02 jump 2 parachuting 0 004 @ 00326440 n 0000 + 01968275 v 0202 + 01968275 v 0103 ~ 00304040 n 0000 | descent with a parachute; "he had done a lot of parachuting in the army" -00304040 04 n 01 skydiving 0 003 @ 00303849 n 0000 + 01968045 v 0102 + 01968045 v 0101 | performing acrobatics in free fall before pulling the ripcord of a parachute -00304208 04 n 01 maiden_flight 0 001 @ 00302394 n 0000 | the first flight of its kind; "the Stealth bomber made its maiden flight in 1989" -00304349 04 n 02 parasailing 0 paragliding 0 001 @ 00303495 n 0000 | gliding in a parasail -00304442 04 n 01 overflight 0 001 @ 00302394 n 0000 | a flight by an aircraft over a particular area (especially over an area in foreign territory) -00304592 04 n 01 pass 6 001 @ 00302394 n 0000 | a flight or run by an aircraft over a target; "the plane turned to make a second pass" -00304729 04 n 01 solo 0 002 @ 00302394 n 0000 + 01941987 v 0101 | a flight in which the aircraft pilot is unaccompanied -00304851 04 n 01 sortie 1 002 @ 00302394 n 0000 ;c 08199025 n 0000 | (military) an operational flight by a single aircraft (as in a military operation) -00305005 04 n 01 touchdown 1 002 @ 00052500 n 0000 + 01979702 v 0101 | a landing (as the wheels touch the landing field); especially of airplanes -00305153 04 n 02 aircraft_landing 0 airplane_landing 0 005 @ 00052500 n 0000 ~ 00052791 n 0000 ~ 00305326 n 0000 ~ 00305707 n 0000 ~ 00305858 n 0000 | landing an aircraft -00305326 04 n 02 ground-controlled_approach 0 GCA 0 001 @ 00305153 n 0000 | aircraft landing in bad weather in which the pilot is talked down by ground control using precision approach radar -00305519 04 n 01 crash_landing 0 002 @ 00052791 n 0000 ;c 02686568 n 0000 | an emergency landing under circumstances where a normal landing is impossible (usually damaging the aircraft) -00305707 04 n 01 three-point_landing 0 001 @ 00305153 n 0000 | a landing in which all three wheels of the aircraft touch the ground at the same time -00305858 04 n 01 instrument_landing 0 001 @ 00305153 n 0000 | an aircraft landing made entirely by means of instruments -00305980 04 n 01 splashdown 0 001 @ 00052500 n 0000 | a landing of a spacecraft in the sea at the end of a space flight -00306102 04 n 01 takeoff 0 002 @ 00042757 n 0000 + 02014165 v 0108 | a departure; especially of airplanes -00306210 04 n 02 tailspin 0 spin 2 001 @ 00302861 n 0000 | rapid descent of an aircraft in a steep spiral -00306318 04 n 02 terrain_flight 0 low_level_flight 0 001 @ 00302394 n 0000 | flight at very low altitudes -00306426 04 n 02 journey 0 journeying 0 021 @ 00295701 n 0000 + 01845720 v 0202 + 01846916 v 0102 + 01845720 v 0102 %p 00306900 n 0000 ~ 00307455 n 0000 ~ 00307631 n 0000 ~ 00308073 n 0000 ~ 00308208 n 0000 ~ 00308279 n 0000 ~ 00308370 n 0000 ~ 00309115 n 0000 ~ 00309647 n 0000 ~ 00310201 n 0000 ~ 00310425 n 0000 ~ 00310516 n 0000 ~ 00310666 n 0000 ~ 00311687 n 0000 ~ 00311809 n 0000 ~ 00312553 n 0000 ~ 00312691 n 0000 | the act of traveling from one place to another -00306900 04 n 02 stage 0 leg 0 003 @ 00295701 n 0000 #p 00306426 n 0000 ~ 00307314 n 0000 | a section or portion of a journey or course; "then we embarked on the second stage of our Caribbean cruise" -00307102 04 n 01 staging 0 001 @ 00295701 n 0000 | travel by stagecoach -00307176 04 n 01 leg 1 002 @ 05129565 n 0000 ;c 00314469 n 0000 | (nautical) the distance traveled by a sailing vessel on a single tack -00307314 04 n 01 fare-stage 0 002 @ 00306900 n 0000 ;r 08860123 n 0000 | a section along the route of a bus for which the fare is the same -00307455 04 n 01 commute 0 001 @ 00306426 n 0000 | a regular journey of some distance to and from your place of work; "there is standing room only on the high-speed commute" -00307631 04 n 02 drive 0 ride 0 017 @ 00306426 n 0000 + 01847676 v 0201 + 02102398 v 0201 + 02742232 v 0202 + 02684644 v 0201 + 01955984 v 0201 + 01957529 v 0201 + 01930482 v 0101 + 02057656 v 0101 + 02408281 v 0101 + 02742232 v 0101 + 02056971 v 0101 + 01930117 v 0101 + 01930874 v 0101 ~ 00309276 n 0000 ~ 00309368 n 0000 ~ 00309540 n 0000 | a journey in a vehicle (usually an automobile); "he took the family for a drive in his new car" -00308073 04 n 01 long_haul 0 001 @ 00306426 n 0000 | a journey over a long distance; "it's a long haul from New York to Los Angeles" -00308208 04 n 01 mush 0 001 @ 00306426 n 0000 | a journey by dogsled -00308279 04 n 01 odyssey 0 001 @ 00306426 n 0000 | a long wandering and eventful journey -00308370 04 n 01 trip 0 010 @ 00306426 n 0000 + 01843055 v 0102 ~ 00301192 n 0000 ~ 00308681 n 0000 ~ 00308779 n 0000 ~ 00308871 n 0000 ~ 00309011 n 0000 ~ 00310347 n 0000 ~ 00731947 n 0000 ~ 01231296 n 0000 | a journey for some purpose (usually including the return); "he took a trip to the shopping center" -00308681 04 n 01 junket 1 001 @ 00308370 n 0000 | a trip taken by an official at public expense -00308779 04 n 01 round_trip 0 001 @ 00308370 n 0000 | a trip to some place and back again -00308871 04 n 01 run 4 003 @ 00308370 n 0000 + 01864038 v 0102 + 02242256 v 0101 | a regular trip; "the ship made its run in record time" -00309011 04 n 01 run 5 002 @ 00308370 n 0000 + 00332672 v 0101 | a short trip; "take a run into town" -00309115 04 n 02 passage 0 transit 0 003 @ 00306426 n 0000 + 01915365 v 0201 ~ 00313385 n 0000 | a journey usually by ship; "the outward passage took 10 days" -00309276 04 n 01 lift 3 001 @ 00307631 n 0000 | a ride in a car; "he gave me a lift home" -00309368 04 n 01 joyride 0 002 @ 00307631 n 0000 + 01956708 v 0101 | a ride in a car taken solely for pleasure; "they took their girlfriends for joyrides in stolen cars" -00309540 04 n 01 spin 1 001 @ 00307631 n 0000 | a short drive in a car; "he took the new car for a spin" -00309647 04 n 01 expedition 0 004 @ 00306426 n 0000 ~ 00309802 n 0000 ~ 00309906 n 0000 ~ 00310063 n 0000 | a journey organized for a particular purpose -00309802 04 n 01 scouting_trip 0 001 @ 00309647 n 0000 | an expedition undertaken to gain information -00309906 04 n 03 campaign 1 hunting_expedition 0 safari 0 002 @ 00309647 n 0000 ;r 09189411 n 0000 | an overland journey by hunters (especially in Africa) -00310063 04 n 02 exploration 2 geographic_expedition 0 002 @ 00309647 n 0000 + 00649481 v 0101 | to travel for the purpose of discovery -00310201 04 n 02 digression 1 excursion 1 003 @ 00306426 n 0000 + 10596689 n 0202 + 02066304 v 0103 | wandering from the main path of a journey -00310347 04 n 01 trek 0 001 @ 00308370 n 0000 | any long and difficult trip -00310425 04 n 02 schlep 0 shlep 0 001 @ 00306426 n 0000 | a tedious or difficult journey -00310516 04 n 01 trek 1 002 @ 00306426 n 0000 ;r 08999482 n 0000 | a journey by ox wagon (especially an organized migration by a group of settlers) -00310666 04 n 02 tour 0 circuit 0 011 @ 00306426 n 0000 + 02082527 v 0201 + 10718131 n 0101 + 01845229 v 0101 ~ 00293657 n 0000 ~ 00311091 n 0000 ~ 00311195 n 0000 ~ 00311381 n 0000 ~ 00748919 n 0000 ~ 00749105 n 0000 ~ 00749232 n 0000 | a journey or route all the way around a particular place or area; "they took an extended tour of Europe"; "we took a quick circuit of the park"; "a ten-day coach circuit of the island" -00311091 04 n 01 grand_tour 0 001 @ 00310666 n 0000 | a sightseeing tour of a building or institution -00311195 04 n 01 grand_tour 1 001 @ 00310666 n 0000 | an extended cultural tour of Europe taken by wealthy young Englishmen (especially in the 18th century) as part of their education -00311381 04 n 01 itineration 0 001 @ 00310666 n 0000 | journeying from place to place preaching or lecturing; a preaching tour or lecturing tour -00311528 04 n 02 on_the_road 0 on_tour 0 001 @ 00295701 n 0000 | travelling about; "they took the show on the road"; "they lost all their games on the road" -00311687 04 n 02 pilgrimage 0 pilgrim's_journey 0 002 @ 00306426 n 0000 ~ 05915034 n 0000 | a journey to a sacred place -00311809 04 n 07 excursion 0 jaunt 0 outing 0 junket 0 pleasure_trip 0 expedition 2 sashay 2 006 @ 00306426 n 0000 + 01843364 v 0402 + 01843055 v 0203 + 10596689 n 0102 ~ 00312266 n 0000 ~ 00312403 n 0000 | a journey taken for pleasure; "many summer excursions to the shore"; "it was merely a pleasure trip"; "after cautious sashays into the field" -00312160 04 n 01 junketing 0 002 @ 00295701 n 0000 + 01843364 v 0102 | taking an excursion for pleasure -00312266 04 n 01 airing 1 001 @ 00311809 n 0000 | a short excursion (a walk or ride) in the open air; "he took the dogs for an airing" -00312403 04 n 01 field_trip 0 001 @ 00311809 n 0000 | a group excursion (to a museum or the woods or some historic place) for firsthand examination -00312553 04 n 01 voyage 0 004 @ 00306426 n 0000 + 01846320 v 0101 ~ 00313245 n 0000 ~ 00313502 n 0000 | a journey to some distant place -00312691 04 n 01 way 2 001 @ 00306426 n 0000 | a journey or passage; "they are on the way" -00312784 04 n 02 ocean_trip 0 voyage 1 004 @ 00313647 n 0000 + 01846320 v 0201 ~ 00312932 n 0000 ~ 00313096 n 0000 | an act of traveling by water -00312932 04 n 02 cruise 0 sail 0 005 @ 00312784 n 0000 + 01846320 v 0202 + 01945516 v 0201 + 01846658 v 0201 + 01844653 v 0101 | an ocean trip taken for pleasure -00313096 04 n 01 maiden_voyage 0 001 @ 00312784 n 0000 | the first voyage of its kind; "in 1912 the ocean liner Titanic sank on its maiden voyage" -00313245 04 n 01 crossing 0 002 @ 00312553 n 0000 + 01912159 v 0104 | a voyage across a body of water (usually across the Atlantic Ocean) -00313385 04 n 01 lockage 0 002 @ 00309115 n 0000 + 02050865 v 0101 | passage through a lock in a canal or waterway -00313502 04 n 03 spaceflight 0 space_travel 0 spacefaring 0 002 @ 00312553 n 0000 -c 11481627 n 0000 | a voyage outside the Earth's atmosphere -00313647 04 n 02 water_travel 0 seafaring 1 005 @ 00295701 n 0000 ~ 00312784 n 0000 ~ 00313806 n 0000 ~ 00315390 n 0000 -c 02111625 v 0000 | travel by water -00313806 04 n 01 sailing 0 006 @ 00313647 n 0000 + 01945516 v 0101 ~ 00313971 n 0000 ~ 00314094 n 0000 ~ 00314395 n 0000 -c 00429642 v 0000 | riding in a sailboat -00313971 04 n 01 luff 0 003 @ 00313806 n 0000 + 01902246 v 0101 + 01928154 v 0101 | the act of sailing close to the wind -00314094 04 n 01 beat 0 002 @ 00313806 n 0000 + 01945938 v 0101 | the act of beating to windward; sailing as close as possible to the direction from which the wind is blowing -00314271 04 n 01 ministry 0 001 @ 00584367 n 0000 | the work of a minister of religion; "he is studying for the ministry" -00314395 04 n 01 tack 0 001 @ 00313806 n 0000 | sailing a zigzag course -00314469 04 n 03 seafaring 0 navigation 1 sailing 1 040 @ 00584367 n 0000 + 02909006 a 0201 -c 00448777 a 0000 -c 01033081 a 0000 -c 01062819 a 0000 -c 01093323 a 0000 -c 01093956 a 0000 -c 01445320 a 0000 -c 00160288 r 0000 -c 00307176 n 0000 ~ 00315307 n 0000 -c 00351334 n 0000 %p 00815173 n 0000 -c 02672646 n 0000 -c 02818507 n 0000 -c 02838577 n 0000 -c 02845576 n 0000 -c 03020563 n 0000 -c 03165955 n 0000 -c 03296597 n 0000 -c 03591116 n 0000 -c 03641302 n 0000 -c 03651947 n 0000 -c 03695452 n 0000 -c 03864542 n 0000 -c 04055861 n 0000 -c 04117216 n 0000 -c 04159676 n 0000 -c 04188368 n 0000 -c 04290079 n 0000 -c 04307419 n 0000 -c 04316924 n 0000 -c 04325409 n 0000 -c 04461294 n 0000 -c 07353232 n 0000 -c 08511017 n 0000 -c 15227593 n 0000 -c 15284553 n 0000 -c 01932834 v 0000 -c 01932951 v 0000 | the work of a sailor -00315307 04 n 01 cabotage 0 001 @ 00314469 n 0000 | navigation in coastal waters -00315390 04 n 02 boating 0 yachting 0 004 @ 00313647 n 0000 + 01945381 v 0201 + 01944692 v 0101 ~ 00315534 n 0000 | water travel for pleasure -00315534 04 n 01 bareboating 0 001 @ 00315390 n 0000 | boating by chartering a bareboat and providing your own crew and provisions; "we saved money by bareboating" -00315700 04 n 02 commutation 0 commuting 0 003 @ 00295701 n 0000 + 02061846 v 0201 + 02061846 v 0101 | the travel of a commuter -00315830 04 n 02 displacement 3 deracination 1 003 @ 00280586 n 0000 + 02538553 v 0202 + 01566916 v 0203 | to move something from its natural environment -00315986 04 n 05 transportation 0 transport 1 transfer 0 transferral 0 conveyance 1 018 @ 00280586 n 0000 + 02077656 v 0502 + 01433294 v 0503 + 02232190 v 0401 + 01435380 v 0402 + 02232190 v 0301 + 01449974 v 0201 + 01449974 v 0101 ~ 00316460 n 0000 ~ 00316594 n 0000 ~ 00316989 n 0000 ~ 00317207 n 0000 ~ 00317594 n 0000 ~ 00318735 n 0000 %p 00319176 n 0000 ~ 00651954 n 0000 ~ 01252566 n 0000 ~ 01254473 n 0000 | the act of moving something from one location to another -00316460 04 n 01 transshipment 0 002 @ 00315986 n 0000 + 02013163 v 0101 | the transfer from one conveyance to another for shipment -00316594 04 n 02 airlift 0 lift 4 004 @ 00315986 n 0000 + 01974062 v 0202 + 01452057 v 0101 ~i 00316806 n 0000 | transportation of people or goods by air (especially when other means of access are unavailable) -00316806 04 n 01 Berlin_airlift 0 001 @i 00316594 n 0000 | airlift in 1948 that supplied food and fuel to citizens of west Berlin when the Russians closed off land access to Berlin -00316989 04 n 02 connection 1 connexion 1 003 @ 00315986 n 0000 + 02747403 v 0201 + 02747403 v 0101 | shifting from one form of transportation to another; "the plane was late and he missed his connection in Atlanta" -00317207 04 n 02 delivery 4 bringing 0 007 @ 00315986 n 0000 + 01438304 v 0101 ~ 00317709 n 0000 ~ 00317917 n 0000 ~ 00318035 n 0000 ~ 00318186 n 0000 ~ 00318391 n 0000 | the act of delivering or distributing something (as goods or mail); "his reluctant delivery of bad news" -00317485 04 n 01 cattle_drive 0 001 @ 00317594 n 0000 | driving a bovine herd (as cows or bulls or steers) -00317594 04 n 01 drive 6 002 @ 00315986 n 0000 ~ 00317485 n 0000 | the act of driving a herd of animals overland -00317709 04 n 01 airdrop 0 001 @ 00317207 n 0000 | delivery of supplies or equipment or personnel by dropping them by parachute from an aircraft; "until then, front line troops will be supplied by airdrop" -00317917 04 n 01 consignment 1 002 @ 00317207 n 0000 + 02348459 v 0101 | the delivery of goods for sale or disposal -00318035 04 n 02 passage 2 handing_over 0 003 @ 00317207 n 0000 + 02230772 v 0101 ~ 00318567 n 0000 | the act of passing something to another person -00318186 04 n 01 post 1 003 @ 00317207 n 0000 + 02885934 a 0101 + 01031256 v 0102 | the delivery and collection of letters and packages; "it came by the first post"; "if you hurry you'll catch the post" -00318391 04 n 03 service 4 serving 0 service_of_process 0 001 @ 00317207 n 0000 | the act of delivering a writ or summons upon someone; "he accepted service of the subpoena" -00318567 04 n 01 relay 0 002 @ 00318035 n 0000 + 00743082 v 0101 | the act of passing something along from one person or group to another; "the relay was successful" -00318735 04 n 01 carry 0 021 @ 00315986 n 0000 + 02741357 v 0101 + 02636516 v 0101 + 02700867 v 0103 + 02717102 v 0101 + 02561168 v 0101 + 02233195 v 0102 + 02012725 v 0101 + 02001699 v 0101 + 02079933 v 0105 + 01449974 v 0102 + 01601234 v 0102 + 01123609 v 0101 + 01123415 v 0101 + 01061017 v 0101 + 00235110 v 0101 ~ 00319312 n 0000 ~ 00319513 n 0000 ~ 00319608 n 0000 ~ 00319717 n 0000 ~ 00319825 n 0000 | the act of carrying something -00319176 04 n 01 pickup 1 003 @ 00041899 n 0000 #p 00315986 n 0000 + 01957107 v 0101 | the act of taking aboard passengers or freight -00319312 04 n 02 packing 1 backpacking 0 003 @ 00318735 n 0000 + 01926031 v 0102 + 01451176 v 0101 | carrying something in a pack on the back; "the backpacking of oxygen is essential for astronauts" -00319513 04 n 01 piggyback 0 001 @ 00318735 n 0000 | the act of carrying something piggyback -00319608 04 n 01 fireman's_carry 0 001 @ 00318735 n 0000 | the act of carrying a person over your shoulder -00319717 04 n 01 portage 0 002 @ 00318735 n 0000 + 01450792 v 0101 | carrying boats and supplies overland -00319825 04 n 01 porterage 0 002 @ 00318735 n 0000 + 01450961 v 0101 | the transportation of burdens by porters -00319939 04 n 04 pursuit 0 chase 0 pursual 0 following 1 009 @ 00279835 n 0000 + 02000868 v 0402 + 01998432 v 0401 + 02535093 v 0201 + 02001858 v 0201 + 02000868 v 0101 ~ 00320284 n 0000 ~ 00320486 n 0000 ~ 00320625 n 0000 | the act of pursuing in an effort to overtake or capture; "the culprit started to run and the cop took off in pursuit" -00320284 04 n 02 trailing 0 tracking 0 004 @ 00319939 n 0000 ;c 00015388 n 0000 + 02001858 v 0209 + 02001858 v 0103 | the pursuit (of a person or animal) by following tracks or marks they left behind -00320486 04 n 02 shadowing 0 tailing 0 003 @ 00319939 n 0000 + 02001858 v 0204 + 02001461 v 0101 | the act of following someone secretly -00320625 04 n 02 stalk 1 stalking 1 002 @ 00319939 n 0000 + 02004009 v 0102 | the act of following prey stealthily -00320742 04 n 01 wild-goose_chase 0 001 @ 05770391 n 0000 | the fruitless pursuit of something unattainable -00320852 04 n 03 insertion 0 introduction 0 intromission 0 013 @ 00280586 n 0000 + 02502536 v 0304 + 01421622 v 0204 + 00187526 v 0206 + 01389776 v 0102 + 01421622 v 0101 + 00187526 v 0101 ~ 00321195 n 0000 ~ 00321731 n 0000 ~ 00321956 n 0000 ~ 00322634 n 0000 ~ 00324056 n 0000 ~ 00324233 n 0000 | the act of putting one thing into another -00321195 04 n 07 cannulation 0 canulation 0 cannulization 0 cannulisation 0 canulization 0 canulisation 0 intubation 0 010 @ 00320852 n 0000 + 01422172 v 0704 + 01422172 v 0601 + 01422172 v 0501 + 01422172 v 0402 + 01422172 v 0401 + 01422172 v 0303 + 01422172 v 0301 + 01422172 v 0205 + 01422172 v 0101 | the insertion of a cannula or tube into a hollow body organ -00321562 04 n 02 catheterization 0 catheterisation 0 003 @ 00671351 n 0000 + 00188721 v 0202 + 00188721 v 0101 | the operation of introducing a catheter into the body -00321731 04 n 03 instillation 0 instillment 0 instilment 0 005 @ 00320852 n 0000 + 01422662 v 0302 + 01422662 v 0201 + 01422662 v 0101 ~ 00323532 n 0000 | the introduction of a liquid (by pouring or injection) drop by drop -00321956 04 n 04 enclosure 0 enclosing 0 envelopment 0 inclosure 0 008 @ 00320852 n 0000 + 00187526 v 0403 + 01580467 v 0301 + 01580467 v 0205 + 01580467 v 0105 + 01587062 v 0101 ~ 00322228 n 0000 ~ 00322488 n 0000 | the act of enclosing something inside something else -00322228 04 n 02 packing 0 boxing 1 004 @ 00321956 n 0000 + 01485158 v 0201 + 01482449 v 0101 ~ 00322391 n 0000 | the enclosure of something in a package or box -00322391 04 n 01 bundling 0 001 @ 00322228 n 0000 | the act of binding something into a bundle -00322488 04 n 02 encasement 0 incasement 0 003 @ 00321956 n 0000 + 01486312 v 0202 + 01486312 v 0101 | the act of enclosing something in a case -00322634 04 n 01 injection 0 003 @ 00320852 n 0000 + 01585523 v 0101 ~ 00322778 n 0000 | the forceful insertion of a substance under pressure -00322778 04 n 01 epidural_injection 0 001 @ 00322634 n 0000 | injection of an anesthetic substance into the epidural space of the spinal cord in order to produce epidural anesthesia -00322962 04 n 01 intradermal_injection 0 001 @ 00697365 n 0000 | an injection into the skin -00323056 04 n 01 intramuscular_injection 0 001 @ 00697365 n 0000 | an injection into a muscle -00323152 04 n 01 intravenous_injection 0 002 @ 00697365 n 0000 ~ 00323262 n 0000 | an injection into a vein -00323262 04 n 01 fix 3 002 @ 00323152 n 0000 ;u 07075172 n 0000 | something craved, especially an intravenous injection of a narcotic drug; "she needed a fix of chocolate" -00323436 04 n 01 subcutaneous_injection 0 001 @ 00697365 n 0000 | an injection under the skin -00323532 04 n 01 infusion 0 003 @ 00321731 n 0000 ;c 06043075 n 0000 + 00086598 v 0101 | (medicine) the passive introduction of a substance (a fluid or drug or electrolyte) into a vein or between tissues (as by gravitational force) -00323766 04 n 01 exchange_transfusion 0 001 @ 00324056 n 0000 | slow removal of a person's blood and its replacement with equal amounts of a donor's blood -00323923 04 n 01 transfusion 1 002 @ 00037396 n 0000 ~ 00935608 n 0000 | the action of pouring a liquid from one vessel to another -00324056 04 n 02 transfusion 0 blood_transfusion 0 003 @ 00320852 n 0000 + 00081367 v 0101 ~ 00323766 n 0000 | the introduction of blood or blood plasma into a vein or artery -00324233 04 n 01 perfusion 0 002 @ 00320852 n 0000 + 00454475 v 0101 | pumping a liquid into an organ or tissue (especially by way of blood vessels) -00324384 04 n 04 rise 0 ascent 0 ascension 0 ascending 0 011 @ 00279835 n 0000 + 02644050 a 0301 + 01969216 v 0301 + 01969216 v 0201 + 00018158 v 0105 + 01983264 v 0102 + 01968569 v 0101 ~ 00324699 n 0000 ~ 00324834 n 0000 ~ 00325110 n 0000 ~ 00326291 n 0000 | the act of changing location in an upward direction -00324699 04 n 01 levitation 0 001 @ 00324384 n 0000 | the act of raising (a body) from the ground by presumably spiritualistic means -00324834 04 n 02 heave 1 heaving 3 003 @ 00324384 n 0000 + 01455866 v 0201 + 01455866 v 0101 | the act of lifting something with great effort -00324978 04 n 02 funambulism 0 tightrope_walking 0 002 @ 00523513 n 0000 + 10115946 n 0101 | walking on a tightrope or slack rope -00325110 04 n 02 climb 0 mount 0 008 @ 00324384 n 0000 + 01921964 v 0203 + 00433232 v 0202 + 01921964 v 0101 ~ 00325364 n 0000 ~ 00325502 n 0000 ~ 00325785 n 0000 ~ 00326094 n 0000 | the act of climbing something; "it was a difficult climb to the top" -00325364 04 n 01 scaling 3 004 @ 00325110 n 0000 + 02207036 v 0101 + 01922466 v 0101 ~ 00325631 n 0000 | ascent by or as if by a ladder -00325502 04 n 01 clamber 0 002 @ 00325110 n 0000 + 01921772 v 0101 | an awkward climb; "reaching the crest was a real clamber" -00325631 04 n 01 escalade 0 002 @ 00325364 n 0000 + 01922576 v 0101 | an act of scaling by the use of ladders (especially the walls of a fortification) -00325785 04 n 02 mountain_climbing 0 mountaineering 0 005 @ 00325110 n 0000 + 01922895 v 0201 ~ 00325975 n 0000 -c 00326809 n 0000 -c 14324099 n 0000 | the activity of climbing a mountain -00325975 04 n 01 Alpinism 0 002 @ 00325785 n 0000 + 09785659 n 0101 | mountain climbing (not restricted to the Alps) -00326094 04 n 01 rock_climbing 0 002 @ 00523513 n 0000 @ 00325110 n 0000 | the sport or pastime of scaling rock masses on mountain sides (especially with the help of ropes and special equipment) -00326291 04 n 02 soar 0 zoom 0 004 @ 00324384 n 0000 + 01943718 v 0205 + 01943338 v 0101 + 01955808 v 0102 | the act of rising upward into the air -00326440 04 n 01 descent 0 008 @ 00279835 n 0000 ~ 00303849 n 0000 ~ 00326677 n 0000 ~ 00326809 n 0000 ~ 00327033 n 0000 ~ 00327279 n 0000 ~ 00327366 n 0000 ~ 00327510 n 0000 | the act of changing your location in a downward direction -00326677 04 n 03 dive 0 nose_dive 0 nosedive 0 002 @ 00326440 n 0000 ~ 00327134 n 0000 | a steep nose-down descent by an aircraft -00326809 04 n 02 rappel 0 abseil 0 002 @ 00326440 n 0000 ;c 00325785 n 0000 | (mountaineering) a descent of a vertical cliff or wall made by using a doubled rope that is fixed to a higher point and wrapped around the body -00327033 04 n 01 swoop 0 002 @ 00326440 n 0000 + 02064358 v 0102 | a swift descent through the air -00327134 04 n 01 power_dive 0 001 @ 00326677 n 0000 | a dive of an airplane that is accelerated both by gravity and by the power of the engine -00327279 04 n 01 crash_dive 0 001 @ 00326440 n 0000 | a rapid descent by a submarine -00327366 04 n 01 drop 0 002 @ 00326440 n 0000 + 01977701 v 0101 | the act of dropping something; "they expected the drop would be successful" -00327510 04 n 02 flop 0 collapse 1 003 @ 00326440 n 0000 + 02404306 a 0101 + 01972849 v 0101 | the act of throwing yourself down; "he landed on the bed with a great flop" -00327683 04 n 02 lowering 1 letting_down 0 002 @ 00280586 n 0000 + 01973125 v 0101 | the act of causing something to move to a lower level -00327824 04 n 03 swing 0 swinging 0 vacillation 0 005 @ 00279835 n 0000 + 01876907 v 0302 + 02717472 v 0202 + 01877620 v 0101 + 01877355 v 0101 | changing location by moving back and forth -00328015 04 n 01 return 0 005 @ 00279835 n 0000 + 02078294 v 0101 + 02004874 v 0101 ~ 00328230 n 0000 ~ 00328327 n 0000 | the act of going back to a prior location; "they set out on their return to the base camp" -00328230 04 n 01 reentry 0 002 @ 00328015 n 0000 + 01852892 v 0101 | the act of entering again -00328327 04 n 01 remand 0 002 @ 00328015 n 0000 + 02494356 v 010a | the act of sending an accused person back into custody to await trial (or the continuation of the trial) -00328502 04 n 03 slide 0 glide 0 coast 0 008 @ 00279835 n 0000 + 01886728 v 0301 + 01887901 v 0201 + 01887576 v 0201 + 02090990 v 0101 + 01870275 v 0105 ~ 00329031 n 0000 ~ 00329468 n 0000 | the act of moving smoothly along a surface while remaining in contact with it; "his slide didn't stop until the bottom of the hill"; "the children lined up for a coast down the snowy slope" -00328885 04 n 01 slippage 0 002 @ 00279835 n 0000 + 00465762 v 0104 | failing to hold or slipping out of place; "the knots allowed no slippage" -00329031 04 n 03 skid 0 slip 4 sideslip 0 007 @ 00328502 n 0000 + 02234781 a 0202 + 00465762 v 0204 + 01870275 v 0202 + 01888295 v 0202 + 01870275 v 0101 + 01870867 v 0101 | an unexpected slide -00329227 04 n 02 flow 0 stream 0 008 @ 00279835 n 0000 + 02070466 v 0201 + 02743727 v 0101 + 02067689 v 0101 + 02066939 v 0102 + 02066510 v 0101 ~ 00329619 n 0000 ~ 00329819 n 0000 | the act of flowing or streaming; continuous progression -00329468 04 n 01 snowboarding 0 002 @ 00328502 n 0000 + 02104860 v 0101 | the act of sliding down a snow-covered slope while standing on a snowboard -00329619 04 n 03 spill 0 spillage 0 release 3 006 @ 00329227 n 0000 + 01436518 v 0302 + 01542207 v 0201 + 01541803 v 0101 + 02069888 v 0101 + 01542207 v 0101 | the act of allowing a fluid to escape -00329819 04 n 03 flood 1 overflow 0 outpouring 0 003 @ 00329227 n 0000 + 02072159 v 0201 ~ 00329943 n 0000 | a large flow -00329943 04 n 01 effusion 0 002 @ 00329819 n 0000 + 00546080 v 0102 | flow under pressure -00330035 04 n 01 crawl 3 002 @ 00279835 n 0000 + 01885845 v 0101 | a very slow movement; "the traffic advanced at a crawl" -00330160 04 n 03 speed 0 speeding 0 hurrying 0 012 @ 00279835 n 0000 + 02055649 v 0303 + 02058994 v 0205 + 02055975 v 0201 + 00979862 a 0102 + 02055649 v 0102 + 00439343 v 0102 + 02055975 v 0101 + 00438178 v 0103 ~ 00330457 n 0000 ~ 00330674 n 0000 ~ 00330836 n 0000 | changing location rapidly -00330457 04 n 03 acceleration 0 quickening 0 speedup 0 006 @ 00330160 n 0000 + 00438178 v 0302 + 00439343 v 0303 + 00438178 v 0204 ! 00330674 n 0101 + 00439343 v 0101 | the act of accelerating; increasing the speed -00330674 04 n 01 deceleration 0 002 @ 00330160 n 0000 ! 00330457 n 0101 | the act of decelerating; decreasing the speed; "he initiated deceleration by braking" -00330836 04 n 02 scud 0 scudding 0 003 @ 00330160 n 0000 + 01946138 v 0201 + 01946138 v 0101 | the act of moving along swiftly (as before a gale) -00330984 04 n 02 translation 1 displacement 2 002 @ 00279835 n 0000 + 02103925 v 0101 | the act of uniform movement -00331102 04 n 03 transplant 1 transplantation 0 transplanting 0 005 @ 00280586 n 0000 + 01855155 v 0301 + 01855155 v 0201 + 02753255 v 0101 + 01855155 v 0101 | the act of removing something from one location and introducing it in another location; "the transplant did not flower until the second year"; "too frequent transplanting is not good for families"; "she returned to Alabama because she could not bear transplantation" -00331531 04 n 01 troop_movement 0 002 @ 00280586 n 0000 ;c 08199025 n 0000 | movement of military units to a new location -00331655 04 n 02 shift 0 shifting 0 009 @ 00279835 n 0000 + 01893988 v 0202 + 01883344 v 0201 + 02305176 a 0102 + 01864634 v 0103 + 01884974 v 0103 + 01893988 v 0102 + 02012344 v 0102 + 01883344 v 0101 | the act of moving from one place to another; "his constant shifting disrupted the class" -00331950 04 n 04 motion 0 movement 0 move 3 motility 0 045 @ 00191142 n 0000 + 01831531 v 0301 + 01831531 v 0201 + 01831531 v 0101 ~ 00333037 n 0000 ~ 00333203 n 0000 ~ 00333366 n 0000 ~ 00333572 n 0000 ~ 00333733 n 0000 ~ 00333829 n 0000 ~ 00334174 n 0000 ~ 00334356 n 0000 ~ 00334509 n 0000 ~ 00334711 n 0000 ~ 00335384 n 0000 ~ 00335653 n 0000 ~ 00335814 n 0000 ~ 00335988 n 0000 ~ 00336805 n 0000 ~ 00337078 n 0000 ~ 00337210 n 0000 ~ 00337486 n 0000 ~ 00338641 n 0000 ~ 00341109 n 0000 ~ 00341243 n 0000 ~ 00341435 n 0000 ~ 00341548 n 0000 ~ 00341695 n 0000 ~ 00341890 n 0000 ~ 00342028 n 0000 ~ 00344040 n 0000 ~ 00344259 n 0000 ~ 00344421 n 0000 ~ 00344699 n 0000 ~ 00344942 n 0000 ~ 00345149 n 0000 ~ 00345817 n 0000 ~ 00345926 n 0000 ~ 00346095 n 0000 ~ 00348571 n 0000 ~ 00349080 n 0000 ~ 00349213 n 0000 ~ 00349369 n 0000 ~ 00349705 n 0000 ~ 00429713 n 0000 | a change of position that does not entail a change of location; "the reflex motion of his eyebrows revealed his surprise"; "movement is a sign of life"; "an impatient move of his hand"; "gastrointestinal motility" -00333037 04 n 01 abduction 1 003 @ 00331950 n 0000 ;c 06080522 n 0000 + 01449427 v 0101 | (physiology) moving of a body part away from the central axis of the body -00333203 04 n 01 adduction 0 003 @ 00331950 n 0000 ;c 06080522 n 0000 + 01449236 v 0101 | (physiology) moving of a body part toward the central axis of the body -00333366 04 n 01 agitation 1 005 @ 00331950 n 0000 ~ 00347180 n 0000 ~ 00347490 n 0000 ~ 00347652 n 0000 ~ 00347853 n 0000 | the act of agitating something; causing it to move around (usually vigorously) -00333572 04 n 01 body_English 0 001 @ 00331950 n 0000 | a motion of the body by a player as if to make an object already propelled go in the desired direction -00333733 04 n 01 circumduction 0 001 @ 00331950 n 0000 | a circular movement of a limb or eye -00333829 04 n 01 disturbance 0 013 @ 00331950 n 0000 + 01207527 v 0102 ~ 00552679 n 0000 ~ 00552922 n 0000 ~ 00553173 n 0000 ~ 00553823 n 0000 ~ 00553995 n 0000 ~ 00554107 n 0000 ~ 00554200 n 0000 ~ 00554300 n 0000 ~ 00554433 n 0000 ~ 00554541 n 0000 ~ 00554850 n 0000 | the act of disturbing something or someone; setting something in motion -00334174 04 n 02 fetal_movement 0 foetal_movement 0 002 @ 00331950 n 0000 ;c 14046202 n 0000 | motion of a fetus within the uterus (usually detected by the 16th week of pregnancy) -00334356 04 n 02 flit 0 dart 0 005 @ 00331950 n 0000 + 01899708 v 0201 + 02061495 v 0201 + 01899891 v 0204 + 01899891 v 0101 | a sudden quick movement -00334509 04 n 01 gesture 0 005 @ 00331950 n 0000 + 00992041 v 0102 + 00992041 v 0101 ~ 00334935 n 0000 ~ 00335285 n 0000 | motion of hands or body to emphasize or help to express a thought or feeling -00334711 04 n 02 headshake 0 headshaking 0 001 @ 00331950 n 0000 | the act of turning your head left and right to signify denial or disbelief or bemusement; "I could tell from their headshakes that they didn't believe me" -00334935 04 n 06 jab 1 jabbing 0 poke 1 poking 0 thrust 2 thrusting 0 008 @ 00334509 n 0000 + 02062212 v 0604 + 01499265 v 0502 + 01229976 v 0404 + 01230241 v 0301 + 01229976 v 0304 + 01229976 v 0201 + 01230555 v 0101 | a sharp hand gesture (resembling a blow); "he warned me with a jab with his finger"; "he made a thrusting motion with his fist" -00335285 04 n 01 mudra 0 001 @ 00334509 n 0000 | ritual hand movement in Hindu religious dancing -00335384 04 n 02 inclination 0 inclining 0 007 @ 00331950 n 0000 + 02171322 v 0201 + 02063018 v 0201 + 02063018 v 0101 ~ 00336274 n 0000 ~ 00336430 n 0000 ~ 00336654 n 0000 | the act of inclining; bending forward; "an inclination of his head indicated his agreement" -00335653 04 n 03 inversion 1 eversion 0 everting 0 004 @ 00331950 n 0000 + 02089632 v 0301 + 02089632 v 0201 + 00386715 v 0102 | the act of turning inside out -00335814 04 n 02 inversion 0 upending 0 005 @ 00331950 n 0000 + 01909679 v 0201 + 01517515 v 0201 + 00386715 v 0102 ~ 00348312 n 0000 | turning upside down; setting on end -00335988 04 n 04 jerk 0 jerking 0 jolt 0 saccade 1 011 @ 00331950 n 0000 + 02243567 a 0304 + 01864865 v 0301 + 01891817 v 0201 + 00009631 v 0202 + 02303575 a 0103 + 01591158 v 0101 + 01884383 v 0102 + 00009631 v 0102 + 01891817 v 0101 + 01592072 v 0102 | an abrupt spasmodic movement -00336274 04 n 01 bob 0 002 @ 00335384 n 0000 + 00899352 v 0102 | a short abrupt inclination (as of the head); "he gave me a short bob of acknowledgement" -00336430 04 n 01 nod 0 004 @ 00335384 n 0000 + 00016702 v 0101 + 00898210 v 0101 ~ 00336561 n 0000 | the act of nodding the head -00336561 04 n 01 nutation 0 002 @ 00336430 n 0000 + 01876311 v 0101 | uncontrolled nodding -00336654 04 n 01 stoop 0 003 @ 00335384 n 0000 + 01601685 v 0101 + 02062632 v 0102 | an inclination of the top half of the body forward and downward -00336805 04 n 02 kick 1 kicking 1 003 @ 00331950 n 0000 + 01936233 v 0101 ~ 00574227 n 0000 | a rhythmic thrusting movement of the legs as in swimming or calisthenics; "the kick must be synchronized with the arm movements"; "the swimmer's kicking left a wake behind him" -00337078 04 n 02 kneel 0 kneeling 0 003 @ 00331950 n 0000 + 01545649 v 0201 + 01545649 v 0101 | supporting yourself on your knees -00337210 04 n 03 lurch 2 pitch 4 pitching 1 006 @ 00331950 n 0000 ;c 04194289 n 0000 + 01864634 v 0302 + 01864634 v 0202 + 01864634 v 0101 ~ 00348008 n 0000 | abrupt up-and-down motion (as caused by a ship or other conveyance); "the pitching and tossing was quite exciting" -00337486 04 n 01 eye_movement 0 003 @ 00331950 n 0000 ~ 00337605 n 0000 ~ 00338271 n 0000 | the movement of the eyes -00337605 04 n 01 nystagmus 0 004 @ 00337486 n 0000 ~ 00337844 n 0000 ~ 00338088 n 0000 ~ 00338404 n 0000 | involuntary movements of the eyeballs; its presence or absence is used to diagnose a variety of neurological and visual disorders -00337844 04 n 01 physiological_nystagmus 0 001 @ 00337605 n 0000 | small involuntary tremors of the eyeballs; when it is eliminated by stabilizing the image on the retina, visual perception fades rapidly from fatigue of the retinal receptors -00338088 04 n 01 rotational_nystagmus 0 001 @ 00337605 n 0000 | nystagmus caused by the body rotating rapidly; large slow movements of the eyeballs are in the direction of rotation -00338271 04 n 01 saccade 0 002 @ 00337486 n 0000 + 02791161 a 0101 | a rapid, jerky movement of the eyes between positions of rest -00338404 04 n 01 post-rotational_nystagmus 0 001 @ 00337605 n 0000 | nystagmus caused by suddenly stopping the rapid rotation of the body; large slow movements of the eyeballs are in the direction opposite to the direction of rotation -00338641 04 n 01 opening 1 003 @ 00331950 n 0000 + 01346003 v 0101 ! 00344040 n 0102 | the act of opening something; "the ray of light revealed his cautious opening of the door" -00338821 04 n 01 rearrangement 0 006 @ 00939628 n 0000 + 00278280 v 0101 ~ 00338994 n 0000 ~ 00339173 n 0000 ~ 00339463 n 0000 ~ 00339907 n 0000 | changing an arrangement -00338994 04 n 02 juggle 1 juggling 1 004 @ 00338821 n 0000 + 02577391 v 0201 + 02438383 v 0101 + 02577391 v 0101 | the act of rearranging things to give a misleading impression -00339173 04 n 01 musical_chairs 1 001 @ 00338821 n 0000 | a rearrangement that has no practical effect or significance; "the company is looking for stability after years of musical chairs with directors"; "shareholders don't want the company playing musical chairs with their investment" -00339463 04 n 01 reordering 0 006 @ 00338821 n 0000 + 00659112 v 0101 ~ 00339646 n 0000 ~ 00339776 n 0000 ~ 00340192 n 0000 ~ 00340463 n 0000 | a rearrangement in a different order -00339646 04 n 01 permutation 2 002 @ 00339463 n 0000 + 00380424 v 0101 | act of changing the lineal order of objects in a group -00339776 04 n 02 transposition 0 reversal 3 002 @ 00339463 n 0000 + 00380424 v 0103 | the act of reversing the order or place of -00339907 04 n 01 transposition 3 002 @ 00338821 n 0000 ;c 11449907 n 0000 | (electricity) a rearrangement of the relative positions of power lines in order to minimize the effects of mutual capacitance and inductance; "he wrote a textbook on the electrical effects of transposition" -00340192 04 n 02 passing 0 overtaking 0 004 @ 00339463 n 0000 + 02049696 v 0202 + 01155090 v 0201 + 02049696 v 0101 | going by something that is moving in order to get in front of it; "she drove but well but her reckless passing of every car on the road frightened me" -00340463 04 n 03 shuffle 0 shuffling 0 make 0 006 @ 00339463 n 0000 #p 00488225 n 0000 + 01418667 v 0201 + 01418667 v 0101 ~ 00340662 n 0000 ~ 00340838 n 0000 | the act of mixing cards haphazardly -00340662 04 n 02 reshuffle 0 reshuffling 0 004 @ 00340463 n 0000 ;c 00488225 n 0000 + 01418959 v 0201 + 01418959 v 0101 | shuffling again; "the gambler demanded a reshuffle" -00340838 04 n 01 riffle 0 002 @ 00340463 n 0000 + 01419160 v 0101 | shuffling by splitting the pack and interweaving the two halves at their corners -00340989 04 n 01 twiddle 0 002 @ 00345454 n 0000 + 02048891 v 0103 | a series of small (usually idle) twists or turns -00341109 04 n 01 prostration 0 003 @ 00331950 n 0000 + 02063610 v 0101 + 01498005 v 0101 | the act of assuming a prostrate position -00341243 04 n 03 reach 0 reaching 1 stretch 1 005 @ 00331950 n 0000 + 00101434 v 0301 + 01440139 v 0201 + 01440139 v 0101 ~ 00348953 n 0000 | the act of physically reaching or thrusting out -00341435 04 n 01 reciprocation 1 002 @ 00331950 n 0000 + 01875820 v 0101 | alternating back-and-forth movement -00341548 04 n 01 reclining 0 003 @ 00331950 n 0000 + 02039156 v 0102 + 01547390 v 0103 | the act of assuming or maintaining a reclining position -00341695 04 n 01 retraction 0 002 @ 00331950 n 0000 + 01506583 v 0102 | the act of pulling or holding or drawing a part back; "the retraction of the landing gear"; "retraction of the foreskin" -00341890 04 n 02 retroflection 0 retroflexion 0 003 @ 00331950 n 0000 + 02036498 v 0201 + 02036498 v 0101 | the act of bending backward -00342028 04 n 02 rotation 0 rotary_motion 0 014 @ 00331950 n 0000 + 02045043 v 0103 + 02045790 v 0101 ~ 00342424 n 0000 ~ 00342565 n 0000 ~ 00342755 n 0000 ~ 00342916 n 0000 ~ 00343091 n 0000 ~ 00343249 n 0000 ~ 00343606 n 0000 ~ 00345297 n 0000 ~ 00345454 n 0000 ~ 00345641 n 0000 ~ 00534480 n 0000 | the act of rotating as if on an axis; "the rotation of the dancer kept time with the music" -00342424 04 n 01 circumvolution 0 002 @ 00342028 n 0000 + 02045790 v 0102 | the act of turning or winding or folding around a central axis -00342565 04 n 02 feather 0 feathering 0 005 @ 00342028 n 0000 #p 00445351 n 0000 + 01124828 v 0201 + 01124964 v 0101 + 01124828 v 0101 | turning an oar parallel to the water between pulls -00342755 04 n 02 gyration 0 whirling 0 004 @ 00342028 n 0000 + 02048891 v 0204 + 02046755 v 0105 + 02049190 v 0101 | the act of rotating in a circle or spiral -00342916 04 n 01 pivot 0 002 @ 00342028 n 0000 + 02046572 v 0101 | the act of turning on (or as if on) a pivot; "the golfer went to the driving range to practice his pivot" -00343091 04 n 01 pronation 0 003 @ 00342028 n 0000 + 02081410 v 0101 ! 00345297 n 0101 | rotation of the hands and forearms so that the palms face downward -00343249 04 n 05 spin 0 twirl 0 twist 2 twisting 1 whirl 2 011 @ 00342028 n 0000 + 02046755 v 0503 + 02048051 v 0501 + 01349493 v 0302 + 01222645 v 0301 + 02048051 v 0204 + 02048891 v 0201 + 02048051 v 0103 + 02046755 v 0101 ~ 00343730 n 0000 ~ 00343894 n 0000 | the act of rotating rapidly; "he gave the crank a spin"; "it broke off after much twisting" -00343606 04 n 01 spiral 0 002 @ 00342028 n 0000 + 02049561 v 0102 | flying downward in a helical path with a large radius -00343730 04 n 01 pirouette 0 003 @ 00343249 n 0000 ;c 00528667 n 0000 + 02048384 v 0101 | (ballet) a rapid spin of the body (especially on the toes as in ballet) -00343894 04 n 02 birling 0 logrolling 0 002 @ 00343249 n 0000 ;c 00523513 n 0000 | rotating a log rapidly in the water (as a competitive sport) -00344040 04 n 02 shutting 0 closing 1 008 @ 00331950 n 0000 + 02140781 v 0201 + 01423285 v 0201 + 01478423 v 0201 + 01346978 v 0201 + 01345109 v 0201 ! 00338641 n 0201 + 01345109 v 0102 | the act of closing something -00344259 04 n 01 sitting 0 002 @ 00331950 n 0000 + 01543123 v 0101 | the act of assuming or maintaining a seated position; "he read the mystery at one sitting" -00344421 04 n 02 sitting 1 posing 0 004 @ 00331950 n 0000 ;c 00903559 n 0000 + 02142775 v 0202 + 02142775 v 0103 | (photography) the act of assuming a certain position (as for a photograph or portrait); "he wanted his portrait painted but couldn't spare time for the sitting" -00344699 04 n 01 snap 3 004 @ 00331950 n 0000 + 01252714 a 0105 + 01242208 v 0101 + 02182851 v 0101 | the act of snapping the fingers; movement of a finger from the tip to the base of the thumb on the same hand; "he gave his fingers a snap" -00344942 04 n 02 squat 0 squatting 0 003 @ 00331950 n 0000 + 01545314 v 0201 + 01545314 v 0101 | the act of assuming or maintaining a crouching position with the knees bent and the buttocks near the heels -00345149 04 n 01 sweep 1 004 @ 00331950 n 0000 + 01593763 v 0102 + 01869563 v 0101 + 01870043 v 0102 | a movement in an arc; "a sweep of his arm" -00345297 04 n 01 supination 0 003 @ 00342028 n 0000 + 02090243 v 0101 ! 00343091 n 0101 | rotation of the hands and forearms so that the palms face upward -00345454 04 n 02 twist 3 turn 7 003 @ 00342028 n 0000 + 02089984 v 0201 ~ 00340989 n 0000 | turning or twisting around (in place); "with a quick twist of his head he surveyed the room" -00345641 04 n 03 wind 0 winding 0 twist 4 002 @ 00342028 n 0000 + 01522052 v 0101 | the act of winding or twisting; "he put the key in the old clock and gave it a good wind" -00345817 04 n 01 toss 2 002 @ 00331950 n 0000 + 01890792 v 0107 | an abrupt movement; "a toss of his head" -00345926 04 n 03 vibration 0 quiver 0 quivering 0 005 @ 00331950 n 0000 + 01889129 v 0201 + 02824444 a 0101 + 01878063 v 0102 ~ 00348801 n 0000 | the act of vibrating -00346095 04 n 01 wave 2 002 @ 00331950 n 0000 + 01901783 v 0104 | a movement like that of a sudden occurrence or increase in a specified phenomenon; "a wave of settlers"; "troops advancing in waves" -00346296 04 n 02 change_of_direction 0 reorientation 0 006 @ 00191142 n 0000 + 01908543 v 0201 + 00468791 v 0201 ~ 00346532 n 0000 ~ 00346693 n 0000 ~ 00349886 n 0000 | the act of changing the direction in which something is oriented -00346532 04 n 01 turn 2 002 @ 00346296 n 0000 + 01907258 v 0101 | the act of turning away or in the opposite direction; "he made an abrupt turn away from her" -00346693 04 n 05 reversion 1 reverse 1 reversal 4 turnabout 0 turnaround 0 007 @ 00346296 n 0000 + 00386715 v 0303 + 00202095 a 0202 + 00386715 v 0203 + 00138508 v 0203 ~ 00346936 n 0000 ~ 00347087 n 0000 | turning in the opposite direction -00346936 04 n 02 about-face 2 about_turn 0 002 @ 00346693 n 0000 + 01909042 v 0101 | act of pivoting 180 degrees, especially in a military formation -00347087 04 n 01 u-turn 0 001 @ 00346693 n 0000 | complete reversal of direction of travel -00347180 04 n 01 shaking 0 003 @ 00333366 n 0000 + 01889610 v 0101 ~ 00347359 n 0000 | the act of causing something to move up and down (or back and forth) with quick movements -00347359 04 n 02 joggle 0 jiggle 0 003 @ 00347180 n 0000 + 01898282 v 0201 + 01898282 v 0102 | a slight irregular shaking motion -00347490 04 n 01 stirring 0 001 @ 00333366 n 0000 | agitating a liquid with an implement; "constant stirring prevents it from burning on the bottom of the pan" -00347652 04 n 03 wag 0 waggle 0 shake 1 006 @ 00333366 n 0000 + 01875295 v 0303 + 01889610 v 0301 + 01871321 v 0202 + 01898592 v 0202 + 01898592 v 0101 | causing to move repeatedly from side to side -00347853 04 n 01 worrying 1 001 @ 00333366 n 0000 | the act of moving something by repeated tugs or pushes; "vigorous worrying finally loosened the saw" -00348008 04 n 04 rock 0 careen 0 sway 1 tilt 1 012 @ 00337210 n 0000 + 01884974 v 0404 + 01884577 v 0403 + 02038357 v 0402 + 01876028 v 0302 + 01877355 v 0302 + 01875295 v 0302 + 01924882 v 0206 + 01884974 v 0201 + 02243567 a 0102 + 01876028 v 0101 + 01875295 v 0101 | pitching dangerously to one side -00348312 04 n 03 upset 2 overturn 0 turnover 0 006 @ 00335814 n 0000 + 01909397 v 0302 + 01909978 v 0303 + 01909978 v 0201 + 01909397 v 0201 + 01909978 v 0104 | the act of upsetting something; "he was badly bruised by the upset of his sled at a high speed" -00348571 04 n 03 waver 0 flutter 0 flicker 0 008 @ 00331950 n 0000 + 01878719 v 0301 + 01878719 v 0204 + 01899891 v 0202 + 01901289 v 0102 + 01878719 v 0102 + 01876907 v 0103 + 01868258 v 0101 | the act of moving back and forth -00348801 04 n 02 tremor 0 shudder 0 003 @ 00345926 n 0000 + 01888946 v 0201 + 00014201 v 0202 | an involuntary vibration (as if from illness or fear) -00348953 04 n 01 outreach 0 001 @ 00341243 n 0000 | the act of reaching out; "the outreach toward truth of the human spirit" -00349080 04 n 01 standing 0 002 @ 00331950 n 0000 + 01546111 v 0101 | the act of assuming or maintaining an erect upright position -00349213 04 n 02 straddle 0 span 0 004 @ 00331950 n 0000 + 02705913 v 0101 %p 00080743 n 0000 %p 00080968 n 0000 | the act of sitting or standing astride -00349369 04 n 01 stroke 3 005 @ 00331950 n 0000 ~ 00349520 n 0000 ~ 00547616 n 0000 ~ 00547765 n 0000 ~ 01173038 n 0000 | a single complete movement -00349520 04 n 02 keystroke 0 key_stroke 0 001 @ 00349369 n 0000 | the stroke of a key; one depression of a key on a keyboard; "the number of keystrokes was used as a measure of work" -00349705 04 n 03 wiggle 0 wriggle 0 squirm 0 006 @ 00331950 n 0000 + 01868370 v 0305 + 01563713 a 0203 + 01868370 v 0203 + 01563713 a 0101 + 01898282 v 0103 | the act of wiggling -00349886 04 n 01 change_of_course 0 003 @ 00346296 n 0000 ~ 00350030 n 0000 ~ 00351334 n 0000 | a change in the direction that you are moving -00350030 04 n 02 turn 1 turning 0 012 @ 00349886 n 0000 + 01907258 v 0201 + 01907258 v 0101 ~ 00350380 n 0000 ~ 00351000 n 0000 ~ 00351168 n 0000 ~ 00441235 n 0000 ~ 00441501 n 0000 ~ 00441686 n 0000 ~ 01263257 n 0000 ~ 01263418 n 0000 ~ 01267901 n 0000 | the act of changing or reversing the direction of the course; "he took a turn to the right" -00350380 04 n 06 diversion 1 deviation 1 digression 0 deflection 0 deflexion 0 divagation 0 013 @ 00350030 n 0000 + 00780575 v 0603 + 02034300 v 0501 + 02033805 v 0501 + 02034300 v 0401 + 02033805 v 0401 + 00780575 v 0301 + 02065085 v 0201 + 02064887 v 0201 + 00763272 a 0101 + 10544748 n 0103 + 02064887 v 0102 ~ 00350878 n 0000 | a turning aside (of your course or attention or concern); "a diversion from the main highway"; "a digression into irrelevant details"; "a deflection from his goal" -00350878 04 n 01 red_herring 0 001 @ 00350380 n 0000 | any diversion intended to distract attention from the main issue -00351000 04 n 01 right 0 001 @ 00350030 n 0000 | a turn toward the side of the body that is on the south when the person is facing east; "take a right at the corner" -00351168 04 n 01 left 0 001 @ 00350030 n 0000 | a turn toward the side of the body that is on the north when the person is facing east; "take a left at the corner" -00351334 04 n 02 tack 1 tacking 0 004 @ 00349886 n 0000 ;c 00314469 n 0000 + 01946408 v 0201 + 00121678 v 0102 | (nautical) the act of changing tack -00351485 04 n 01 change_of_magnitude 0 003 @ 00191142 n 0000 ~ 00351638 n 0000 ~ 00363260 n 0000 | the act of changing the amount or size of something -00351638 04 n 04 decrease 0 diminution 0 reduction 0 step-down 0 032 @ 00351485 n 0000 + 00290740 v 0403 + 00241038 v 0302 + 00240131 v 0301 + 00429060 v 0301 + 00151689 v 0101 ! 00363260 n 0101 ~ 00352331 n 0000 ~ 00353249 n 0000 ~ 00353469 n 0000 ~ 00353782 n 0000 ~ 00353992 n 0000 ~ 00354183 n 0000 ~ 00354583 n 0000 ~ 00354884 n 0000 ~ 00355252 n 0000 ~ 00355919 n 0000 ~ 00356199 n 0000 ~ 00358931 n 0000 ~ 00360485 n 0000 ~ 00360757 n 0000 ~ 00361932 n 0000 ~ 00362103 n 0000 ~ 00362258 n 0000 ~ 00362355 n 0000 ~ 00364600 n 0000 ~ 00365471 n 0000 ~ 00439284 n 0000 ~ 01122938 n 0000 ~ 01149115 n 0000 ~ 13313733 n 0000 ~ 13378968 n 0000 | the act of decreasing or reducing something -00352331 04 n 01 cut 5 007 @ 00351638 n 0000 ~ 00352585 n 0000 ~ 00352683 n 0000 ~ 00352778 n 0000 ~ 00352861 n 0000 ~ 00353013 n 0000 ~ 00353100 n 0000 | the act of reducing the amount or number; "the mayor proposed extensive cuts in the city budget" -00352585 04 n 01 budget_cut 0 001 @ 00352331 n 0000 | the act of reducing budgeted expenditures -00352683 04 n 02 pay_cut 0 salary_cut 0 001 @ 00352331 n 0000 | the act of reducing a salary -00352778 04 n 01 cost_cutting 0 001 @ 00352331 n 0000 | the act of cutting costs -00352861 04 n 02 price_cutting 0 price_cut 0 001 @ 00352331 n 0000 | cutting the price of merchandise to one lower than the usual or advertised price -00353013 04 n 01 spending_cut 0 001 @ 00352331 n 0000 | the act of reducing spending -00353100 04 n 01 tax_cut 0 001 @ 00352331 n 0000 | the act of reducing taxation; "the new administration's large tax cut was highly controversial" -00353249 04 n 02 moderation 0 mitigation 1 003 @ 00351638 n 0000 + 01058036 v 0103 ~ 00361333 n 0000 | the action of lessening in severity or intensity; "the object being control or moderation of economic depressions" -00353469 04 n 01 lowering 0 004 @ 00351638 n 0000 + 01574923 v 0101 + 00267855 v 0102 ~ 00353611 n 0000 | the act of causing to become less -00353611 04 n 01 tapering 0 002 @ 00353469 n 0000 + 00152762 v 0101 | the act of gradually lowering the size or amount; "the doctor prescribed the tapering of the dose" -00353782 04 n 01 cutback 0 003 @ 00351638 n 0000 + 00429060 v 0103 ~ 00353903 n 0000 | a reduction in quantity or rate -00353903 04 n 01 service_cutback 0 001 @ 00353782 n 0000 | the act of reducing service -00353992 04 n 01 devaluation 0 006 @ 00351638 n 0000 + 00493929 v 0102 + 00315020 v 0103 + 00493929 v 0101 + 00493703 v 0101 ~ 00354342 n 0000 | the reduction of something's value or worth -00354183 04 n 02 devitalization 0 devitalisation 0 003 @ 00351638 n 0000 + 00166952 v 0202 + 00166952 v 0101 | the act of reducing the vitality of something -00354342 04 n 01 evisceration 2 001 @ 00353992 n 0000 | altering something (as a legislative act or a statement) in such a manner as to reduce its value; "the adoption of their amendments would have amounted to an evisceration of the act" -00354583 04 n 03 extenuation 0 mitigation 0 palliation 1 004 @ 00351638 n 0000 + 00906037 v 0302 + 00906037 v 0203 + 00906037 v 0101 | to act in such a way as to cause an offense to seem less serious -00354785 04 n 01 spasmolysis 0 001 @ 00354884 n 0000 | the relaxation or relief of muscle spasms -00354884 04 n 04 easing 0 easement 0 alleviation 0 relief 1 010 @ 00351638 n 0000 + 00064095 v 0302 + 01815185 v 0204 + 00082308 v 0202 + 00082308 v 0102 ~ 00354785 n 0000 ~ 00355420 n 0000 ~ 00355547 n 0000 ~ 00355691 n 0000 ~ 00357451 n 0000 | the act of reducing something unpleasant (as pain or annoyance); "he asked the nurse for relief from the constant pain" -00355252 04 n 01 de-escalation 0 004 @ 00351638 n 0000 ;c 00973077 n 0000 + 00290983 v 0101 + 00290740 v 0101 | (war) a reduction in intensity (of a crisis or a war) -00355420 04 n 01 detente 0 001 @ 00354884 n 0000 | the easing of tensions or strained relations (especially between nations) -00355547 04 n 01 palliation 0 002 @ 00354884 n 0000 + 00064095 v 0103 | easing the severity of a pain or a disease without removing the cause -00355691 04 n 03 liberalization 0 liberalisation 0 relaxation 1 007 @ 00354884 n 0000 + 02601996 v 0301 + 02601808 v 0301 + 02467203 v 0202 + 02467003 v 0202 + 02467203 v 0101 + 02467003 v 0101 | the act of making less strict -00355919 04 n 02 minimization 0 minimisation 0 008 @ 00351638 n 0000 + 00841125 v 0203 + 00427802 v 0202 + 00841125 v 0102 + 00864475 v 0101 + 00427802 v 0101 ! 00367066 n 0101 ~ 01079951 n 0000 | the act of reducing something to the least possible amount or degree or position -00356199 04 n 01 depletion 0 005 @ 00351638 n 0000 + 01157517 v 0105 ~ 00356367 n 0000 ~ 00356621 n 0000 ~ 01062255 n 0000 | the act of decreasing something markedly -00356367 04 n 03 consumption 0 using_up 0 expenditure 1 003 @ 00356199 n 0000 + 01158572 v 0302 ~ 00356516 n 0000 | the act of consuming something -00356516 04 n 01 burnup 0 001 @ 00356367 n 0000 | the amount of fuel used up (as in a nuclear reactor) -00356621 04 n 01 exhaustion 0 005 @ 00356199 n 0000 + 02280869 v 0102 + 01157517 v 0106 + 00450997 v 0101 + 00075421 v 0101 | the act of exhausting something entirely -00356790 04 n 02 compression 0 compressing 0 009 @ 00113113 n 0000 + 01389329 v 0201 + 01387786 v 0201 + 01387786 v 0101 ! 00357451 n 0101 ~ 00357023 n 0000 ~ 00357680 n 0000 ~ 00358089 n 0000 ~ 01149911 n 0000 | applying pressure -00357023 04 n 02 squeeze 0 squeezing 0 007 @ 00356790 n 0000 + 01447868 v 0201 + 01456771 v 0102 + 01447868 v 0101 ~ 00357275 n 0000 ~ 00358528 n 0000 ~ 00358702 n 0000 | the act of gripping and pressing firmly; "he gave her cheek a playful squeeze" -00357275 04 n 02 pinch 0 tweak 0 006 @ 00357023 n 0000 + 01592456 v 0202 + 01592669 v 0201 + 00504019 v 0101 + 01457206 v 0102 + 01456771 v 0101 | a squeeze with the fingers -00357451 04 n 02 decompression 0 decompressing 0 004 @ 00354884 n 0000 + 00403967 v 0203 + 00403967 v 0103 ! 00356790 n 0101 | relieving pressure (especially bringing a compressed person gradually back to atmospheric pressure) -00357680 04 n 02 condensing 0 condensation 0 007 @ 00356790 n 0000 + 00365446 v 0201 + 00366547 v 0201 + 00365446 v 0101 + 00366547 v 0101 + 00366275 v 0101 ~ 00357906 n 0000 | the act of increasing the density of something -00357906 04 n 02 thickening 0 inspissation 0 006 @ 00357680 n 0000 + 00431610 v 0202 + 00431327 v 0202 + 00431117 v 0202 + 00431610 v 0101 + 00431327 v 0101 | the act of thickening -00358089 04 n 03 crush 0 crunch 0 compaction 0 007 @ 00356790 n 0000 + 01389329 v 0302 + 01483779 v 0304 + 00331082 v 0203 + 00339085 v 0101 + 01593937 v 0102 ~ 00358290 n 0000 | the act of crushing -00358290 04 n 04 grind 0 mill 0 pulverization 0 pulverisation 0 007 @ 00358089 n 0000 + 00332154 v 0405 + 00332154 v 0304 + 00332017 v 0201 + 00331082 v 0101 + 01394464 v 0102 + 01594978 v 0104 | the act of grinding to a powder or dust -00358528 04 n 01 expression 0 002 @ 00357023 n 0000 + 01351754 v 0102 | the act of forcing something out by squeezing or pressing; "the expression of milk from her breast" -00358702 04 n 02 extrusion 0 expulsion 2 002 @ 00357023 n 0000 + 01675780 v 0101 | squeezing out by applying pressure; "an unexpected extrusion of toothpaste from the bottom of the tube"; "the expulsion of pus from the pimple" -00358931 04 n 01 shortening 0 006 @ 00351638 n 0000 + 00560893 v 0101 ~ 00359135 n 0000 ~ 00359238 n 0000 ~ 00369802 n 0000 ~ 00370261 n 0000 | act of decreasing in length; "the dress needs shortening" -00359135 04 n 01 abbreviation 0 001 @ 00358931 n 0000 | shortening something by omitting parts of it -00359238 04 n 03 cut 0 cutting 0 cutting_off 1 006 @ 00358931 n 0000 + 01754737 v 0201 ~ 00359614 n 0000 ~ 00359822 n 0000 ~ 00359903 n 0000 ~ 00360242 n 0000 | the act of shortening something by chopping off the ends; "the barber gave him a good cut" -00359492 04 n 02 severance 0 severing 0 003 @ 00386915 n 0000 + 01560731 v 0202 + 01560731 v 0102 | the act of severing -00359614 04 n 03 clip 0 clipping 0 snip 0 007 @ 00359238 n 0000 + 01321002 v 0301 + 01456463 v 0304 + 01456463 v 0203 + 01321002 v 0102 + 01456463 v 0103 ~ 00842281 n 0000 | the act of clipping or snipping -00359822 04 n 01 haircut 0 001 @ 00359238 n 0000 | the act of cutting the hair -00359903 04 n 03 trim 0 trimming 1 clipping 2 008 @ 00359238 n 0000 + 01321002 v 0302 + 01321002 v 0204 + 01248782 v 0202 + 01321002 v 0104 + 01248782 v 0102 + 00429060 v 0104 ~ 00360143 n 0000 | cutting down to the desired size or shape -00360143 04 n 01 pruning 0 002 @ 00359903 n 0000 + 01321002 v 0107 | the act of trimming a plant -00360242 04 n 01 shearing 0 005 @ 00359238 n 0000 + 01560369 v 0102 + 01320816 v 0101 + 01320513 v 0101 ~ 00360404 n 0000 | removing by cutting off or clipping -00360404 04 n 01 sheepshearing 0 001 @ 00360242 n 0000 | act of shearing sheep -00360485 04 n 01 shrinking 0 003 @ 00351638 n 0000 + 00152558 v 0101 ~ 00360601 n 0000 | the act of becoming less -00360601 04 n 02 miniaturization 0 miniaturisation 0 003 @ 00360485 n 0000 + 00241496 v 0202 + 00241496 v 0101 | act of making on a greatly reduced scale -00360757 04 n 02 subtraction 0 deduction 0 006 @ 00351638 n 0000 + 00641252 v 0202 + 00641252 v 0101 ! 00363788 n 0101 ~ 00361041 n 0000 ~ 00361192 n 0000 | the act of subtracting (removing a part from the whole); "he complained about the subtraction of money from their paychecks" -00361041 04 n 01 bite 1 002 @ 00360757 n 0000 ;u 07157273 n 0000 | a portion removed from the whole; "the government's weekly bite from my paycheck" -00361192 04 n 01 withholding 0 003 @ 00360757 n 0000 ;c 13308999 n 0000 + 02215001 v 0101 | the act of deducting from an employee's salary -00361333 04 n 01 abatement 0 002 @ 00353249 n 0000 ~ 00361459 n 0000 | the act of abating; "laws enforcing noise abatement" -00361459 04 n 02 abatement_of_a_nuisance 0 nuisance_abatement 0 003 @ 00361333 n 0000 ;c 08441203 n 0000 ~ 00361684 n 0000 | (law) the removal or termination or destruction of something that has been found to be a nuisance -00361684 04 n 01 asbestos_abatement 0 001 @ 00361459 n 0000 | the removal of asbestos from a public building -00361795 04 n 01 attrition 0 002 @ 00712031 n 0000 + 02648106 a 0101 | the act of rubbing together; wearing something down by friction -00361932 04 n 01 deflation 0 005 @ 00351638 n 0000 + 01436865 v 0101 + 01436721 v 0101 + 00264705 v 0101 ! 00367280 n 0101 | the act of letting the air out of something -00362103 04 n 03 discount 0 price_reduction 0 deduction 2 002 @ 00351638 n 0000 + 02319428 v 0101 | the act of reducing the selling price of merchandise -00362258 04 n 01 rollback 1 001 @ 00351638 n 0000 | reducing prices back to some earlier level -00362355 04 n 01 weakening 0 006 @ 00351638 n 0000 + 00224901 v 0101 ! 00374063 n 0101 ~ 00362546 n 0000 ~ 00362659 n 0000 ~ 00362862 n 0000 | the act of reducing the strength of something -00362546 04 n 02 wilt 0 wilting 0 002 @ 00362355 n 0000 + 00469637 v 0201 | causing to become limp or drooping -00362659 04 n 01 dilution 0 005 @ 00362355 n 0000 + 00487748 v 0104 + 00226071 v 0101 ! 00375071 n 0101 ~ 00363052 n 0000 | weakening (reducing the concentration) by the addition of water or a thinner -00362862 04 n 01 etiolation 1 002 @ 00362355 n 0000 + 00225690 v 0101 | the act of weakening by stunting the growth or development of something; "the etiolation of the critical tradition" -00363052 04 n 02 cutting 4 thinning 0 003 @ 00362659 n 0000 + 00226071 v 0202 + 00226071 v 0105 | the act of diluting something; "the cutting of whiskey with water"; "the thinning of paint with turpentine" -00363260 04 n 02 increase 0 step-up 0 023 @ 00351485 n 0000 + 00290302 v 0203 + 00153263 v 0101 + 00156601 v 0101 ! 00351638 n 0101 ~ 00363788 n 0000 ~ 00364260 n 0000 ~ 00364440 n 0000 ~ 00364787 n 0000 ~ 00365231 n 0000 ~ 00365329 n 0000 ~ 00365709 n 0000 ~ 00366846 n 0000 ~ 00367066 n 0000 ~ 00367552 n 0000 ~ 00371314 n 0000 ~ 00372013 n 0000 ~ 00373130 n 0000 ~ 00373544 n 0000 ~ 00374063 n 0000 ~ 00374224 n 0000 ~ 00374677 n 0000 ~ 00439043 n 0000 | the act of increasing something; "he gave me an increase in salary" -00363788 04 n 01 addition 2 005 @ 00363260 n 0000 + 00182406 v 0101 ! 00360757 n 0101 ~ 00364053 n 0000 ~ 00365012 n 0000 | the act of adding one thing to another; "the addition of flowers created a pleasing effect"; "the addition of a leap day every four years" -00364053 04 n 01 retrofit 0 001 @ 00363788 n 0000 | the act of adding a component or accessory to something that did not have it when it was manufactured; "the court ordered a retrofit on all automobiles" -00364260 04 n 02 advance 1 rise 1 003 @ 00363260 n 0000 + 00155143 v 0201 + 00158222 v 0101 | increase in price or value; "the news caused a general advance on the stock market" -00364440 04 n 01 appreciation 1 002 @ 00363260 n 0000 ! 00364600 n 0101 | an increase in price or value; "an appreciation of 30% in the value of real estate" -00364600 04 n 01 depreciation 0 004 @ 00351638 n 0000 + 00315330 v 0101 + 00315020 v 0101 ! 00364440 n 0101 | a decrease in price or value; "depreciation of the dollar against the yen" -00364787 04 n 02 surge 0 upsurge 0 003 @ 00363260 n 0000 + 00168217 v 0101 + 01943718 v 0104 | a sudden or abrupt strong increase; "stimulated a surge of speculation"; "an upsurge of emotion"; "an upsurge in violent crime" -00365012 04 n 03 fluoridation 0 fluoridization 0 fluoridisation 0 004 @ 00363788 n 0000 + 00186161 v 0303 + 00186161 v 0202 + 00186161 v 0101 | the addition of a fluoride to the water supply (to prevent dental decay) -00365231 04 n 01 augmentation 0 002 @ 00363260 n 0000 + 00154388 v 0101 | the act of augmenting -00365329 04 n 01 amplification 1 002 @ 00363260 n 0000 ;c 11449907 n 0000 | (electronics) the act of increasing voltage or power or current -00365471 04 n 01 contraction 0 007 @ 00351638 n 0000 + 01279474 v 0101 + 00365188 v 0103 + 00243900 v 0106 + 00240571 v 0102 + 00305109 v 0102 ! 00365709 n 0101 | the act of decreasing (something) in size or volume or quantity or scope -00365709 04 n 02 expansion 0 enlargement 0 009 @ 00363260 n 0000 + 00154778 v 0201 ! 00365471 n 0101 ~ 00365995 n 0000 ~ 00366317 n 0000 ~ 00366521 n 0000 ~ 00367280 n 0000 ~ 00367427 n 0000 ~ 00367768 n 0000 | the act of increasing (something) in size or volume or quantity or scope -00365995 04 n 02 dilation 0 dilatation 0 005 @ 00365709 n 0000 + 00305537 v 0201 + 00305537 v 0101 ~ 00366207 n 0000 ~ 00866079 n 0000 | the act of expanding an aperture; "the dilation of the pupil of the eye" -00366207 04 n 01 vasodilation 0 001 @ 00365995 n 0000 | dilation of blood vessels (especially the arteries) -00366317 04 n 02 distention 0 distension 0 006 @ 00365709 n 0000 + 00256862 v 0201 + 00305537 v 0202 + 00257087 v 0101 + 00305537 v 0102 + 00256862 v 0101 | the act of expanding by pressure from within -00366521 04 n 01 stretching 2 004 @ 00365709 n 0000 + 00318816 v 0102 ~ 00366675 n 0000 ~ 00369532 n 0000 | act of expanding by lengthening or widening -00366675 04 n 01 tension 0 003 @ 00366521 n 0000 + 01572728 v 0102 + 00536304 v 0101 | the action of stretching something tight; "tension holds the belt in the pulleys" -00366846 04 n 01 escalation 0 002 @ 00363260 n 0000 + 00290302 v 0101 | an increase to counteract a perceived discrepancy; "higher wages caused an escalation of prices"; "there was a gradual escalation of hostilities" -00367066 04 n 03 maximization 0 maximisation 0 maximation 0 004 @ 00363260 n 0000 + 00428583 v 0202 + 00428583 v 0101 ! 00355919 n 0101 | the act of raising to the highest possible point or condition or position -00367280 04 n 01 inflation 0 004 @ 00365709 n 0000 + 00256117 v 0102 + 00264034 v 0101 ! 00361932 n 0101 | the act of filling something with air -00367427 04 n 01 magnification 0 002 @ 00365709 n 0000 + 00434077 v 0101 | the act of expanding something in apparent size -00367552 04 n 01 exaggeration 0 003 @ 00363260 n 0000 + 02568999 v 0102 + 00839834 v 0102 | the act of making something more noticeable than usual; "the dance involved a deliberate exaggeration of his awkwardness" -00367768 04 n 01 extension 2 004 @ 00365709 n 0000 + 00540235 v 0103 ~ 00367976 n 0000 ~ 00371059 n 0000 | act of expanding in scope; making more widely available; "extension of the program to all in need" -00367976 04 n 02 spread 0 spreading 0 012 @ 00367768 n 0000 + 01378556 v 0201 + 02060141 v 0102 + 02082690 v 0101 + 00968211 v 0108 + 02689299 v 0101 + 01380122 v 0101 + 01378556 v 0101 ~ 00368302 n 0000 ~ 00368592 n 0000 ~ 00369138 n 0000 ~ 01238058 n 0000 | act of extending over a wider scope or expanse of space or time -00368302 04 n 01 circulation 0 005 @ 00367976 n 0000 + 02043190 v 0101 + 00968211 v 0101 + 00270005 v 0103 ~ 00368515 n 0000 | the spread or transmission of something (as news or money) to a wider group or area -00368515 04 n 01 recirculation 0 001 @ 00368302 n 0000 | circulation again -00368592 04 n 04 dispersion 0 dispersal 0 dissemination 0 diffusion 0 009 @ 00367976 n 0000 + 02060141 v 0401 + 01229071 v 0405 + 00968211 v 0409 + 00968211 v 0305 + 00968211 v 020a + 02030424 v 0101 + 00968211 v 010a ~ 00368939 n 0000 | the act of dispersing or diffusing something; "the dispersion of the troops"; "the diffusion of knowledge" -00368939 04 n 02 crop-dusting 0 spraying 3 002 @ 00368592 n 0000 ;c 02686568 n 0000 | the dispersion of fungicides or insecticides or fertilizer on growing crops (often from a low-flying aircraft) -00369138 04 n 03 scatter 0 scattering 0 strewing 0 010 @ 00367976 n 0000 + 01378123 v 0301 + 02082690 v 0202 + 02030424 v 0205 + 02028994 v 0203 + 01501676 v 0201 + 02082690 v 0102 + 01376245 v 0101 + 02028994 v 0103 + 02030424 v 0105 | the act of scattering -00369399 04 n 01 contracture 0 002 @ 00369802 n 0000 + 01387786 v 0105 | an abnormal and usually permanent contraction of a muscle -00369532 04 n 01 extension 1 004 @ 00366521 n 0000 + 00027268 v 0102 ! 00405360 n 0101 ~ 00369694 n 0000 | act of stretching or straightening out a flexed limb -00369694 04 n 01 hyperextension 0 002 @ 00369532 n 0000 + 00028010 v 0101 | greater than normal extension -00369802 04 n 03 contraction 1 muscular_contraction 0 muscle_contraction 0 008 @ 00358931 n 0000 ;c 06080522 n 0000 + 01387786 v 0105 ~ 00369399 n 0000 ~ 00370127 n 0000 ~ 00370458 n 0000 ~ 00370688 n 0000 ~ 00370885 n 0000 | (physiology) a shortening or tensing of a part or organ (especially of a muscle or muscle fiber) -00370127 04 n 01 tetanus 0 001 @ 00369802 n 0000 | a sustained muscular contraction resulting from a rapid series of nerve impulses -00370261 04 n 01 truncation 0 002 @ 00358931 n 0000 + 00317241 v 0101 | the act of cutting short; "it is an obvious truncation of the verse"; "they were sentenced to a truncation of their limbs" -00370458 04 n 01 uterine_contraction 0 002 @ 00369802 n 0000 #p 14048441 n 0000 | a rhythmic tightening in labor of the upper uterine musculature that contracts the size of the uterus and pushes the fetus toward the birth canal -00370688 04 n 02 Braxton-Hicks_contraction 0 false_labor 0 001 @ 00369802 n 0000 | painless contractions of the muscles of the uterus that continue throughout pregnancy with increasing frequency -00370885 04 n 01 vaginismus 0 001 @ 00369802 n 0000 | muscular contraction that causes the vagina to close; usually an anxiety reaction before coitus or pelvic examination -00371059 04 n 01 stretch 2 004 @ 00367768 n 0000 + 00541746 v 0101 + 00318816 v 0102 + 00240810 v 0101 | extension to or beyond the ordinary limit; "running at full stretch"; "by no stretch of the imagination"; "beyond any stretch of his understanding" -00371314 04 n 02 expansion 1 expanding_upon 0 005 @ 00363260 n 0000 + 00955601 v 0107 ~ 00371487 n 0000 ~ 00371735 n 0000 ~ 00371846 n 0000 | adding information or detail -00371487 04 n 02 amplification 2 elaboration 1 002 @ 00371314 n 0000 + 00955601 v 0201 | addition of extra material or illustration or clarifying detail; "a few remarks added in amplification and defense"; "an elaboration of the sketch followed" -00371735 04 n 02 annotation 0 annotating 0 002 @ 00371314 n 0000 + 01704953 v 0101 | the act of adding notes -00371846 04 n 03 supplementation 0 subjunction 0 subjoining 0 004 @ 00371314 n 0000 + 01329026 v 0301 + 01329026 v 0201 + 01328705 v 0103 | the act of supplementing -00372013 04 n 03 accumulation 0 accrual 0 accruement 0 007 @ 00363260 n 0000 + 00155869 v 0301 + 02230056 v 0201 + 00155869 v 0201 + 02304982 v 0103 + 00158804 v 0101 ~ 00372226 n 0000 | the act of accumulating -00372226 04 n 01 buildup 0 003 @ 00372013 n 0000 + 00154608 v 0101 ~ 00372448 n 0000 | the act of building up an accumulation; "I envied his rapid buildup of assets"; "a military buildup in preparation for the invasion" -00372448 04 n 02 deposit 0 deposition 1 004 @ 00372226 n 0000 + 01575675 v 0204 + 01575675 v 0104 ~ 00372607 n 0000 | the act of putting something somewhere -00372607 04 n 04 repositing 0 reposition 0 storage 2 warehousing 0 005 @ 00372448 n 0000 + 02282365 v 0401 + 02281751 v 0201 + 02281751 v 0101 ~ 00372977 n 0000 | depositing in a warehouse; "they decided to reposition their furniture in a recommended repository in Brooklyn"; "my car is in storage"; "publishers reduced print runs to cut down the cost of warehousing" -00372977 04 n 01 stockpiling 0 002 @ 00372607 n 0000 + 02285392 v 0103 | accumulating and storing a reserve supply; "the stockpiling of war materials" -00373130 04 n 01 inclusion 0 005 @ 00363260 n 0000 + 02449847 v 0103 + 00684838 v 0101 + 00183879 v 0101 ~ 00373278 n 0000 | the act of including -00373278 04 n 01 incorporation 0 004 @ 00373130 n 0000 + 02629535 v 0101 + 00466651 v 0102 ~ 00373418 n 0000 | including by incorporating -00373418 04 n 02 annexation 1 appropriation 1 002 @ 00373278 n 0000 + 02626177 a 0101 | incorporation by joining or uniting -00373544 04 n 03 aggrandizement 0 aggrandisement 0 elevation 1 006 @ 00363260 n 0000 + 02397637 v 0306 + 00544549 v 0303 + 00956405 v 0206 + 00956405 v 0105 ~ 00373862 n 0000 | the act of increasing the wealth or prestige or power or scope of something; "the aggrandizement of the king"; "his elevation to cardinal" -00373862 04 n 03 self-aggrandizement 0 self-aggrandisement 0 ego_trip 0 001 @ 00373544 n 0000 | an act undertaken to increase your own power and influence or to draw attention to your own importance -00374063 04 n 01 strengthening 0 004 @ 00363260 n 0000 + 00220869 v 0101 ! 00362355 n 0101 ~ 00375071 n 0000 | the act of increasing the strength of something -00374224 04 n 01 intensification 0 007 @ 00363260 n 0000 + 00290302 v 0102 + 00227165 v 0101 + 00226566 v 0101 ~ 00374446 n 0000 ~ 00374835 n 0000 ~ 00375625 n 0000 | action that makes something stronger or more extreme -00374446 04 n 01 roughness 0 001 @ 00374224 n 0000 | harsh or severe speech or behavior; "men associate the roughness of nonstandard working-class speech with masculinity"; "the roughness of her voice was a signal to keep quiet" -00374677 04 n 01 intensification 1 003 @ 00363260 n 0000 ;c 00903559 n 0000 + 00574735 v 0101 | the act of increasing the contrast of (a photographic film) -00374835 04 n 02 aggravation 1 exacerbation 1 003 @ 00374224 n 0000 + 00208210 v 0203 + 00208210 v 0102 | action that makes a problem or a disease (or its symptoms) worse; "the aggravation of her condition resulted from lack of care" -00375071 04 n 01 concentration 1 008 @ 00374063 n 0000 + 00365188 v 0102 + 00244625 v 0103 + 00237259 v 0104 + 00237511 v 0101 + 00236999 v 0103 ! 00362659 n 0101 ~ 00375348 n 0000 | strengthening the concentration (as of a solute in a mixture) by removing diluting material -00375348 04 n 01 pervaporation 0 003 @ 00375071 n 0000 + 00367416 v 0101 + 00367241 v 0101 | the concentration of a colloidal solution whose colloid will not pass through a semipermeable membrane; solution is placed in a bag of the membrane and the solvent is evaporated off -00375625 04 n 03 focalization 1 focalisation 1 focusing 0 012 @ 00374224 n 0000 + 02161922 v 0301 + 00731789 v 0305 + 00314272 v 0301 + 00314782 v 0301 + 00731789 v 0204 + 00314272 v 0203 + 00314782 v 0203 + 00731789 v 0103 + 00314272 v 0102 + 00314782 v 0102 ~ 00375938 n 0000 | the act of bringing into focus -00375938 04 n 01 refocusing 0 004 @ 00375625 n 0000 + 02162162 v 0101 + 00732091 v 0101 + 00314605 v 0101 | focusing again -00376063 04 n 01 change_of_integrity 0 013 @ 00191142 n 0000 ~ 00145218 n 0000 ~ 00376400 n 0000 ~ 00377364 n 0000 ~ 00378069 n 0000 ~ 00378985 n 0000 ~ 00383390 n 0000 ~ 00383606 n 0000 ~ 00398704 n 0000 ~ 00399030 n 0000 ~ 00402535 n 0000 ~ 00402789 n 0000 ~ 00403092 n 0000 | the act of changing the unity or wholeness of something -00376400 04 n 03 breakage 0 break 0 breaking 0 011 @ 00376063 n 0000 + 00334996 v 0201 + 00334186 v 0201 + 01298931 v 0101 + 01369758 v 0101 + 00334996 v 0101 + 00258665 v 0101 ~ 00376715 n 0000 ~ 00376825 n 0000 ~ 00376994 n 0000 ~ 00377169 n 0000 | the act of breaking something; "the breakage was unavoidable" -00376715 04 n 01 rupture 0 002 @ 00376400 n 0000 + 01573515 v 0102 | the act of making a sudden noisy break -00376825 04 n 02 smashing 0 shattering 0 004 @ 00376400 n 0000 + 00333907 v 0201 + 00333758 v 0201 + 00335923 v 0101 | the act of breaking something into small pieces -00376994 04 n 03 fracture 0 crack 0 cracking 0 005 @ 00376400 n 0000 + 01401955 v 0301 + 00107943 v 0101 + 00107739 v 0101 + 00335366 v 0101 | the act of cracking something -00377169 04 n 03 chip 0 chipping 0 splintering 0 006 @ 00376400 n 0000 + 02469274 v 0302 + 01259691 v 0201 + 01259458 v 0201 + 01259691 v 0101 + 01259458 v 0101 | the act of chipping something -00377364 04 n 02 explosion 0 burst 0 007 @ 00376063 n 0000 + 00306017 v 0202 + 00309310 v 0201 + 00306723 v 0101 + 00306017 v 0101 ~ 00377686 n 0000 ~ 00377907 n 0000 | the act of exploding or bursting; "the explosion of the firecrackers awoke the children"; "the burst of an atom bomb creates enormous radiation aloft" -00377686 04 n 01 detonation 0 003 @ 00377364 n 0000 + 00306723 v 0102 ~ 00377813 n 0000 | the act of detonating an explosive -00377813 04 n 01 percussion 0 001 @ 00377686 n 0000 | the act of exploding a percussion cap -00377907 04 n 01 fulmination 1 002 @ 00377364 n 0000 + 00307060 v 0101 | the act of exploding with noise and violence; "his fulminations frightened the horses" -00378069 04 n 02 burning 0 combustion 0 005 @ 00376063 n 0000 + 02762468 v 0202 ~ 00378296 n 0000 ~ 00378479 n 0000 ~ 00378706 n 0000 | the act of burning something; "the burning of leaves was prohibited by a town ordinance" -00378296 04 n 03 arson 0 incendiarism 0 fire-raising 0 002 @ 00378069 n 0000 + 09810707 n 0101 | malicious burning to destroy property; "the British term for arson is fire-raising" -00378479 04 n 05 ignition 0 firing 0 lighting 0 kindling 0 inflammation 1 006 @ 00378069 n 0000 + 02761685 v 0502 + 02761372 v 0504 + 02761685 v 0401 + 02760622 v 0102 + 02759614 v 0101 | the act of setting something on fire -00378706 04 n 01 incineration 0 004 @ 00378069 n 0000 + 00378361 v 0101 + 00378042 v 0102 ~ 00378880 n 0000 | the act of burning something completely; reducing it to ashes -00378880 04 n 01 cremation 0 002 @ 00378706 n 0000 + 00379154 v 0101 | the incineration of a dead body -00378985 04 n 03 combination 0 combining 0 compounding 0 018 @ 00376063 n 0000 + 01657828 v 0301 + 01461328 v 0301 + 00193486 v 0301 + 02309008 v 0201 + 01461328 v 0202 + 00193486 v 0202 + 00394813 v 020a + 01331244 a 0103 ~ 00379422 n 0000 ~ 00379754 n 0000 ~ 00380083 n 0000 ~ 00380568 n 0000 ~ 00380696 n 0000 ~ 00381326 n 0000 ~ 00381567 n 0000 ~ 00381680 n 0000 ~ 01237415 n 0000 | the act of combining things to form a new whole -00379422 04 n 02 attachment 1 affixation 1 004 @ 00378985 n 0000 + 01328705 v 0204 + 01296462 v 0101 ~ 00379588 n 0000 | the act of attaching or affixing something -00379588 04 n 02 graft 0 grafting 0 004 @ 00379422 n 0000 + 01530431 v 0202 + 01530678 v 0201 + 01530678 v 0101 | the act of grafting something onto something else -00379754 04 n 01 confusion 1 003 @ 00378985 n 0000 + 01657254 v 0102 ~ 00379993 n 0000 | an act causing a disorderly combination of elements with identities lost and distinctions blended; "the confusion of tongues at the Tower of Babel" -00379993 04 n 01 babel 0 001 @ 00379754 n 0000 | a confusion of voices and other sounds -00380083 04 n 06 mix 0 commixture 0 admixture 0 mixture 0 intermixture 0 mixing 0 015 @ 00378985 n 0000 + 01462005 v 0601 + 00556193 v 0601 + 00184117 v 0601 + 01462468 v 0502 + 01462005 v 0401 + 00184117 v 0401 + 00394813 v 0403 + 00396703 v 0301 + 01462005 v 0203 + 01418667 v 0103 + 00184117 v 0101 + 00556193 v 0101 + 01462005 v 0101 + 00394813 v 0103 | the act of mixing together; "paste made by a mix of flour and water"; "the mixing of sound channels in the recording studio" -00380568 04 n 01 fusion 0 003 @ 00378985 n 0000 + 00396997 v 0101 + 00394813 v 0107 | the act of fusing (or melting) together -00380696 04 n 02 blend 0 blending 1 005 @ 00378985 n 0000 + 01462468 v 0101 + 00394813 v 0101 ~ 00380881 n 0000 ~ 00380994 n 0000 | the act of blending components together thoroughly -00380881 04 n 03 confluence 1 conflux 0 merging 1 002 @ 00380696 n 0000 + 00612383 a 0101 | a flowing together -00380994 04 n 02 homogenization 0 homogenisation 0 007 @ 00380696 n 0000 + 00457569 v 0202 + 00457100 v 0202 + 00457327 v 0202 + 00457569 v 0101 + 00457100 v 0101 + 00457327 v 0101 | the act of making something homogeneous or uniform in composition; "the homogenization of cream"; "the network's homogenization of political news" -00381326 04 n 02 interspersion 0 interspersal 0 004 @ 00378985 n 0000 + 01376620 v 0201 + 01376620 v 0101 + 00189189 v 0101 | the act of combining one thing at intervals among other things; "the interspersion of illustrations in the text" -00381567 04 n 01 temperance 1 003 @ 00378985 n 0000 + 00303056 v 0102 + 00302875 v 0101 | the act of tempering -00381680 04 n 05 union 0 unification 0 uniting 0 conjugation 1 jointure 0 011 @ 00378985 n 0000 + 02622234 v 0504 + 00367685 v 0302 + 02469835 v 0202 + 00367685 v 0201 + 00367685 v 0102 ! 00385501 n 0101 ~ 00382109 n 0000 ~ 00382474 n 0000 ~ 00382739 n 0000 ~ 00383071 n 0000 | the act of making or becoming a single unit; "the union of opposing factions"; "he looked forward to the unification of his family for the holidays" -00382109 04 n 05 coalescence 0 coalescency 0 coalition 0 concretion 0 conglutination 0 010 @ 00381680 n 0000 + 01600191 v 0502 + 00374534 v 0401 + 00394813 v 0308 + 01461152 v 0301 + 02476870 a 0201 + 01461152 v 0201 + 00394813 v 0208 + 02476870 a 0101 + 01461152 v 0101 | the union of diverse things into one body or form or group; the growing together of parts -00382474 04 n 02 reunion 0 reunification 0 005 @ 00381680 n 0000 + 02470893 v 0201 + 02486822 v 0101 + 02470893 v 0101 ~ 00383281 n 0000 | the act of coming together again; "monetary unification precipitated the reunification of the German state in October 1990" -00382739 04 n 02 tribalization 0 tribalisation 0 003 @ 00381680 n 0000 ! 00382906 n 0202 ! 00382906 n 0101 | the act of making tribal; unification on a tribal basis -00382906 04 n 02 detribalization 0 detribalisation 0 003 @ 00385501 n 0000 ! 00382739 n 0202 ! 00382739 n 0101 | the decline or termination of tribal organization -00383071 04 n 01 umbrella 1 001 @ 00381680 n 0000 | having the function of uniting a group of similar things; "the Democratic Party is an umbrella for many liberal groups"; "under the umbrella of capitalism" -00383281 04 n 01 homecoming 2 001 @ 00382474 n 0000 | an annual school or university reunion for graduates -00383390 04 n 01 opening 2 005 @ 00376063 n 0000 + 01579813 v 0104 + 01346804 v 0101 + 01346003 v 0101 ~ 00387657 n 0000 | becoming open or being made open; "the opening of his arms was the sign I was waiting for" -00383606 04 n 01 separation 1 015 @ 00376063 n 0000 + 01556921 v 0101 ~ 00384658 n 0000 ~ 00384802 n 0000 ~ 00384933 n 0000 ~i 00385104 n 0000 ~ 00385501 n 0000 ~ 00385649 n 0000 ~ 00385791 n 0000 ~ 00390906 n 0000 ~ 00391086 n 0000 ~ 00391599 n 0000 ~ 00397953 n 0000 ~ 01004072 n 0000 ~ 01202799 n 0000 | the act of dividing or disconnecting -00383952 04 n 04 break 1 interruption 0 disruption 2 gap 0 010 @ 01066163 n 0000 + 00778275 v 0302 + 00520357 v 0302 + 00778275 v 0201 + 00520357 v 0201 ~ 00384329 n 0000 ~ 00384510 n 0000 ~ 01068184 n 0000 ~ 01068528 n 0000 ~ 01068633 n 0000 | an act of delaying or interrupting the continuity; "it was presented without commercial breaks"; "there was a gap in his account" -00384329 04 n 02 cut-in 0 insert 0 003 @ 00383952 n 0000 ;c 06262567 n 0000 + 01421622 v 0201 | (film) a still picture that is introduced and that interrupts the action of a film -00384510 04 n 02 cut-in 1 insert 1 002 @ 00383952 n 0000 ;c 06276697 n 0000 | (broadcasting) a local announcement inserted into a network program -00384658 04 n 01 avulsion 0 002 @ 00383606 n 0000 + 02032117 v 0101 | a forcible tearing or surgical separation of one body part from another -00384802 04 n 01 dissociation 0 003 @ 00383606 n 0000 + 02430580 v 0102 + 00714273 v 0102 | the act of removing from association -00384933 04 n 02 secession 0 withdrawal 1 004 @ 00383606 n 0000 + 02380009 v 0202 + 02535457 v 0101 ~ 00385266 n 0000 | formal separation from an alliance or federation -00385104 04 n 01 Secession 1 001 @i 00383606 n 0000 | the withdrawal of eleven southern states from the Union in 1860 which precipitated the American Civil War -00385266 04 n 02 breakaway 0 breaking_away 1 002 @ 00384933 n 0000 + 02535457 v 0103 | the act of breaking away or withdrawing from; "there was a breakaway by the discontented members"; "a breaking away from family and neighborhood" -00385501 04 n 01 disunion 0 004 @ 00383606 n 0000 + 02430580 v 0104 ! 00381680 n 0101 ~ 00382906 n 0000 | the termination or destruction of union -00385649 04 n 02 disconnection 0 disjunction 0 003 @ 00383606 n 0000 + 01294396 v 0201 + 01356038 v 0101 | the act of breaking a connection -00385791 04 n 01 division 0 017 @ 00383606 n 0000 + 00565115 a 0101 + 02467662 v 0101 ~ 00386164 n 0000 ~ 00386345 n 0000 ~ 00386450 n 0000 ~ 00386553 n 0000 ~ 00386676 n 0000 ~ 00386915 n 0000 ~ 00388210 n 0000 ~ 00388392 n 0000 ~ 00389135 n 0000 ~ 00389308 n 0000 ~ 00389508 n 0000 ~ 00390581 n 0000 ~ 00390735 n 0000 ~ 00489475 n 0000 | the act or process of dividing -00386164 04 n 01 parcellation 0 003 @ 00385791 n 0000 + 02469085 v 0101 + 01283746 v 0101 | the division into parcels; "the increasing parcellation of land with every generation" -00386345 04 n 01 cleavage 0 002 @ 00385791 n 0000 + 01556572 v 0101 | the act of cleaving or splitting -00386450 04 n 01 bisection 0 002 @ 00385791 n 0000 + 01550817 v 0101 | dividing into two equal parts -00386553 04 n 01 quartering 0 003 @ 00385791 n 0000 + 01563575 v 0101 + 00642498 v 0101 | dividing into four equal parts -00386676 04 n 02 schism 0 split 0 005 @ 00385791 n 0000 + 02030158 v 0203 + 02431320 v 0204 + 03115053 a 0101 + 03115053 a 0102 | division of a group into opposing factions; "another schism like that and they will wind up in bankruptcy" -00386915 04 n 02 cut 1 cutting 1 008 @ 00385791 n 0000 + 01610834 v 0201 + 01552519 v 0201 ~ 00359492 n 0000 ~ 00387214 n 0000 ~ 00387326 n 0000 ~ 00387424 n 0000 ~ 00387526 n 0000 | the act of cutting something into parts; "his cuts were skillful"; "his cutting of the cake made a terrible mess" -00387214 04 n 01 dissection 1 002 @ 00386915 n 0000 + 01550220 v 0101 | cutting so as to separate into pieces -00387326 04 n 01 scission 0 001 @ 00386915 n 0000 | the act of dividing by cutting or splitting -00387424 04 n 01 slicing 0 002 @ 00386915 n 0000 + 01254477 v 0101 | the act of cutting into slices -00387526 04 n 01 undercut 1 003 @ 00386915 n 0000 + 01554165 v 0101 + 01554318 v 0101 | a cut made underneath to remove material -00387657 04 n 02 cut 2 cutting 2 005 @ 00383390 n 0000 + 01610834 v 0201 ~ 00387897 n 0000 ~ 00388065 n 0000 ~ 00678010 n 0000 | the act of penetrating or opening open with a sharp edge; "his cut in the lining revealed the hidden jewels" -00387897 04 n 03 notch 0 nick 0 snick 0 006 @ 00387657 n 0000 + 01259141 v 0302 + 01259005 v 0201 + 01259141 v 0201 + 01004550 v 0101 + 01276970 v 0101 | a small cut -00388065 04 n 02 slash 0 gash 2 003 @ 00387657 n 0000 + 01322509 v 0202 + 01322675 v 0101 | a strong sweeping cut made with a sharp instrument -00388210 04 n 03 atomization 0 atomisation 0 fragmentation 0 004 @ 00385791 n 0000 + 00338071 v 0302 + 00330144 v 0202 + 00330144 v 0101 | separating something into fine particles -00388392 04 n 04 branching 0 ramification 0 fork 0 forking 0 011 @ 00385791 n 0000 + 00328802 v 0403 + 02718863 v 0301 + 00329817 v 0301 + 00328802 v 0303 + 00329244 v 0201 + 00328802 v 0202 ~ 00388710 n 0000 ~ 00388842 n 0000 ~ 00388959 n 0000 ~ 00389043 n 0000 | the act of branching out or dividing into branches -00388710 04 n 01 bifurcation 0 003 @ 00388392 n 0000 + 02718863 v 0101 + 00329817 v 0101 | the act of splitting into two branches -00388842 04 n 01 trifurcation 0 002 @ 00388392 n 0000 + 00330003 v 0101 | the act of splitting into three branches -00388959 04 n 01 divarication 0 001 @ 00388392 n 0000 | branching at a wide angle -00389043 04 n 01 fibrillation 1 001 @ 00388392 n 0000 | act or process of forming fibrils -00389135 04 n 02 dichotomization 0 dichotomisation 0 003 @ 00385791 n 0000 + 00656107 v 0202 + 00656107 v 0101 | the act of dividing into two sharply different categories -00389308 04 n 02 quantization 0 quantisation 0 004 @ 00385791 n 0000 + 00638194 v 0202 + 00673095 v 0101 + 00638194 v 0101 | the act of dividing into quanta or expressing in terms of quantum theory -00389508 04 n 01 fractionation 0 002 @ 00385791 n 0000 + 01459696 v 0101 | separation into portions -00389610 04 n 01 pairing 1 004 @ 01012360 n 0000 + 02490430 v 0101 ~ 00389763 n 0000 ~ 00389953 n 0000 | the act of grouping things or people in pairs -00389763 04 n 01 buddy_system 0 001 @ 00389610 n 0000 | a cooperative practice of pairing two or more people together for mutual assistance or safety (especially in recreational swimming) -00389953 04 n 02 match-up 0 matchup 0 001 @ 00389610 n 0000 | the pairing of people or things as for comparison or competition; "it was a good match-up but the home team won"; "we need a matchup of the best teachers with the neediest schools" -00390198 04 n 01 punctuation 0 004 @ 01012360 n 0000 #m 06351202 n 0000 + 00190023 v 0101 ~ 00390445 n 0000 | the use of certain marks to clarify meaning of written material by grouping words grammatically into sentences and clauses and phrases -00390445 04 n 01 hyphenation 0 003 @ 00390198 n 0000 #m 06351202 n 0000 + 01700326 v 0101 | connecting syllables and words by hyphens -00390581 04 n 02 syllabication 0 syllabification 0 003 @ 00385791 n 0000 + 01563336 v 0201 + 01563336 v 0102 | forming or dividing words into syllables -00390735 04 n 02 word_division 0 hyphenation 2 003 @ 00385791 n 0000 #p 06351202 n 0000 + 01700326 v 0201 | division of a word especially at the end of a line on a page -00390906 04 n 02 detachment 0 disengagement 2 004 @ 00383606 n 0000 + 01511380 v 0201 + 00220276 v 0201 + 01298668 v 0101 | the act of releasing from an attachment or connection -00391086 04 n 01 tear 0 005 @ 00383606 n 0000 + 01556346 v 0101 + 01573515 v 0101 ~ 00391293 n 0000 ~ 00391407 n 0000 | the act of tearing; "he took the manuscript in both hands and gave it a mighty tear" -00391293 04 n 01 laceration 0 003 @ 00391086 n 0000 + 01793587 v 0101 + 01559340 v 0101 | the act of lacerating -00391407 04 n 03 rent 2 rip 0 split 1 003 @ 00391086 n 0000 + 01556572 v 0302 + 01573276 v 0202 | the act of rending or ripping or splitting something; "he gave the envelope a vigorous rip" -00391599 04 n 02 removal 0 remotion 0 021 @ 00383606 n 0000 + 00173338 v 0201 + 02224055 v 0102 + 00173338 v 0101 ~ 00392709 n 0000 ~ 00392848 n 0000 ~ 00392950 n 0000 ~ 00394242 n 0000 ~ 00394485 n 0000 ~ 00394610 n 0000 ~ 00394803 n 0000 ~ 00395017 n 0000 ~ 00395199 n 0000 ~ 00395333 n 0000 ~ 00395503 n 0000 ~ 00395797 n 0000 ~ 00396642 n 0000 ~ 00670703 n 0000 ~ 01262574 n 0000 ~ 01262713 n 0000 ~ 01262868 n 0000 | the act of removing; "he had surgery for the removal of a malignancy" -00392093 04 n 02 drawing 2 drawing_off 0 004 @ 01062255 n 0000 + 01854132 v 0101 ~ 00392468 n 0000 ~ 00392582 n 0000 | act of getting or draining something such as electricity or a liquid from a source; "the drawing of water from the well" -00392335 04 n 01 derivation 0 001 @ 00030358 n 0000 | the act of deriving something or obtaining something from a source or origin -00392468 04 n 01 derivation 1 001 @ 00392093 n 0000 | drawing off water from its main channel as for irrigation -00392582 04 n 01 derivation 2 001 @ 00392093 n 0000 | drawing of fluid or inflammation away from a diseased part of the body -00392709 04 n 02 abscission 0 cutting_off 2 003 @ 00391599 n 0000 + 01255222 v 0101 ~ 00395654 n 0000 | the act of cutting something off -00392848 04 n 01 abstraction 0 001 @ 00391599 n 0000 | the act of withdrawing or removing something -00392950 04 n 01 extraction 0 002 @ 00391599 n 0000 + 01351170 v 0101 | the action of taking out something (especially using effort or force); "the dentist gave her a local anesthetic prior to the extraction" -00393161 04 n 01 threshing 0 002 @ 01254253 n 0000 + 01416364 v 0102 | the separation of grain or seeds from the husks and straw; "they used to do the threshing by hand but now there are machines to do it" -00393369 04 n 04 ablation 0 extirpation 0 cutting_out 0 excision 0 042 @ 00671351 n 0000 + 00472871 v 0401 + 00176327 v 0201 + 00177578 v 0101 ~ 00665970 n 0000 ~ 00666107 n 0000 ~ 00666232 n 0000 ~ 00669000 n 0000 ~ 00669155 n 0000 ~ 00673234 n 0000 ~ 00673347 n 0000 ~ 00673494 n 0000 ~ 00677038 n 0000 ~ 00677174 n 0000 ~ 00682738 n 0000 ~ 00683214 n 0000 ~ 00683358 n 0000 ~ 00683590 n 0000 ~ 00684648 n 0000 ~ 00685508 n 0000 ~ 00686168 n 0000 ~ 00686282 n 0000 ~ 00686385 n 0000 ~ 00686471 n 0000 ~ 00686570 n 0000 ~ 00686682 n 0000 ~ 00686826 n 0000 ~ 00686913 n 0000 ~ 00687027 n 0000 ~ 00687135 n 0000 ~ 00687252 n 0000 ~ 00687365 n 0000 ~ 00687472 n 0000 ~ 00687619 n 0000 ~ 00687769 n 0000 ~ 00687857 n 0000 ~ 00687964 n 0000 ~ 00688098 n 0000 ~ 00688220 n 0000 ~ 00688317 n 0000 ~ 00716179 n 0000 ~ 00716676 n 0000 | surgical removal of a body part or tissue -00394242 04 n 01 autotomy 0 003 @ 00391599 n 0000 + 02652490 a 0101 + 01513990 v 0101 | spontaneous removal or casting off of a body part (as the tail of a lizard or claw of a lobster) especially when the organism is injured or under attack -00394485 04 n 01 decontamination 0 003 @ 00391599 n 0000 + 00493052 v 0101 ! 00276987 n 0101 | the removal of contaminants -00394610 04 n 01 deletion 0 006 @ 00391599 n 0000 + 00200863 v 0103 + 01549187 v 0101 ~ 00397010 n 0000 ~ 00397347 n 0000 ~ 00397760 n 0000 | the act of deleting something written or printed -00394803 04 n 05 denudation 0 stripping 0 uncovering 1 baring 0 husking 0 006 @ 00391599 n 0000 + 00181258 v 0501 + 00194534 v 0201 + 00194912 v 0101 ~ 01262441 n 0000 ~ 01265071 n 0000 | the removal of covering -00395017 04 n 01 dermabrasion 0 001 @ 00391599 n 0000 | removal of scars or tattoos by anesthetizing the skin surface and then sanding or scraping off some of the outer skin layer -00395199 04 n 02 dislodgment 0 dislodgement 0 002 @ 00391599 n 0000 + 01527508 v 0201 | forced removal from a position of advantage -00395333 04 n 02 elimination 2 riddance 1 004 @ 00391599 n 0000 + 02350175 v 0201 + 00471711 v 0102 ~ 01211888 n 0000 | the act of removing or getting rid of something -00395503 04 n 01 elimination 3 002 @ 00391599 n 0000 + 00575561 v 0101 | the act of removing an unknown mathematical quantity by combining equations -00395654 04 n 01 circumcision 0 002 @ 00392709 n 0000 + 01274341 v 0101 | the act of circumcising; surgical removal of the foreskin of males -00395797 04 n 03 emptying 0 voidance 0 evacuation 0 007 @ 00391599 n 0000 + 00449295 v 0301 + 00073343 v 0301 + 00073343 v 0202 + 01488313 v 0101 + 00449692 v 0101 ~ 00396029 n 0000 | the act of removing the contents of something -00396029 04 n 02 drain 0 drainage 0 004 @ 00395797 n 0000 + 02071457 v 0201 + 00451648 v 0201 + 00451648 v 0101 | emptying something accomplished by allowing liquid to run out of it -00396213 04 n 01 bank_withdrawal 0 002 @ 01262713 n 0000 ~ 00396344 n 0000 | the withdrawal of money from your account at a bank -00396344 04 n 01 bank_run 0 001 @ 00396213 n 0000 | the concerted action of depositors who try to withdraw their money from a bank because they think it will fail -00396509 04 n 01 disinvestment 0 002 @ 01262713 n 0000 + 02313906 v 0102 | the withdrawal of capital from a country or corporation -00396642 04 n 02 rinse 2 rinsing 0 004 @ 00391599 n 0000 #p 00255710 n 0000 + 01536168 v 0201 + 01536168 v 0101 | the removal of soap with clean water in the final stage of washing -00396825 04 n 02 bowdlerization 0 bowdlerisation 0 003 @ 00397010 n 0000 + 00201034 v 0202 + 00201034 v 0101 | the act of deleting or modifying all passages considered to be indecent -00397010 04 n 02 expurgation 0 castration 2 004 @ 00394610 n 0000 + 00201034 v 0204 + 00201034 v 0103 ~ 00396825 n 0000 | the deletion of objectionable parts from a literary work -00397191 04 n 02 bowdlerization 1 bowdlerisation 1 003 @ 06362953 n 0000 + 00201034 v 0202 + 00201034 v 0101 | written material that has been bowdlerized -00397347 04 n 02 censoring 0 censorship 0 004 @ 00394610 n 0000 + 09903639 n 0201 ~ 00397545 n 0000 ~ 00397647 n 0000 | deleting parts of publications or correspondence or theatrical performances -00397545 04 n 01 Bowdlerism 0 001 @ 00397347 n 0000 | censorship in the form of prudish expurgation -00397647 04 n 01 Comstockery 0 001 @ 00397347 n 0000 | censorship because of perceived obscenity or immorality -00397760 04 n 03 expunction 0 expunging 0 erasure 0 005 @ 00394610 n 0000 + 01548718 v 0301 + 00479391 v 0301 + 01549420 v 0203 + 01549420 v 0103 | deletion by an act of expunging or erasing -00397953 04 n 06 division 2 partition 0 partitioning 0 segmentation 0 sectionalization 0 sectionalisation 0 014 @ 00383606 n 0000 + 02468261 v 0602 + 02468261 v 0501 + 01563005 v 0401 + 01563724 v 0301 + 00332835 v 0301 + 10402285 n 0201 + 01563724 v 0201 + 00332835 v 0201 + 00565115 a 0101 + 02031158 v 0102 ~ 00398427 n 0000 ~ 00398585 n 0000 ~ 00928751 n 0000 | the act of dividing or partitioning; separation by the creation of a boundary that divides or keeps apart -00398427 04 n 01 subdivision 0 003 @ 00397953 n 0000 + 00333277 v 0101 + 00333066 v 0101 | the act of subdividing; division of something previously divided -00398585 04 n 01 septation 0 001 @ 00397953 n 0000 | the division or partitioning of a cavity into parts by a septum -00398704 04 n 02 transformation 0 translation 2 008 @ 00376063 n 0000 + 00383542 v 0201 + 00382635 v 0101 ~ 00399223 n 0000 ~ 00399393 n 0000 ~ 00399717 n 0000 ~ 00399846 n 0000 ~ 00402128 n 0000 | the act of changing in form or shape or appearance; "a photograph is a translation of a scene onto a two-dimensional surface" -00399030 04 n 01 transformation 1 003 @ 00376063 n 0000 ;c 06075527 n 0000 + 00382010 v 0101 | (genetics) modification of a cell or bacterium by the uptake and incorporation of exogenous DNA -00399223 04 n 01 permutation 0 001 @ 00398704 n 0000 | complete change in character or condition; "the permutations...taking place in the physical world"- Henry Miller -00399393 04 n 02 revision 0 alteration 0 008 @ 00398704 n 0000 + 02433549 v 0102 + 00996102 v 0101 ~ 00200041 n 0000 ~ 00200379 n 0000 ~ 00200563 n 0000 ~ 00200768 n 0000 ~ 00402308 n 0000 | the act of revising or altering (involving reconsideration and modification); "it would require a drastic revision of his opinion" -00399717 04 n 01 transfiguration 0 002 @ 00398704 n 0000 + 00580512 v 0101 | the act of transforming so as to exalt or glorify -00399846 04 n 01 transmogrification 0 002 @ 00398704 n 0000 + 00384055 v 0103 | the act of changing into a different form or appearance (especially a fantastic or grotesque one); "the transmogrification of the prince into a porcupine" -00400083 04 n 01 conversion 0 005 @ 00191142 n 0000 + 00115157 v 0101 ~ 00400278 n 0000 ~ 00828862 n 0000 ~ 01250826 n 0000 | the act of changing from one use or function or purpose to another -00400278 04 n 01 afforestation 0 002 @ 00400083 n 0000 + 01567888 v 0101 | the conversion of bare or cultivated land into forest (originally for the purpose of hunting) -00400449 04 n 02 reforestation 0 re-afforestation 0 003 @ 00269018 n 0000 + 01568145 v 0201 + 01568346 v 0101 | the restoration (replanting) of a forest that had been reduced by fire or cutting -00400645 04 n 01 rehabilitation 1 006 @ 00268557 n 0000 + 02565272 v 0101 + 02552163 v 0101 ~ 00400851 n 0000 ~ 00400995 n 0000 ~ 00401314 n 0000 | the restoration of someone to a useful place in society -00400851 04 n 01 correctional_rehabilitation 0 001 @ 00400645 n 0000 | providing penal custody or probation or parole for convicted offenders -00400995 04 n 03 physical_rehabilitation 0 physical_restoration 0 therapeutic_rehabilitation 0 001 @ 00400645 n 0000 | providing help for disabled persons; the removal or reduction of disabilities -00401194 04 n 01 urban_renewal 0 001 @ 00269018 n 0000 | the clearing and rebuilding and redevelopment of urban slums -00401314 04 n 01 vocational_rehabilitation 0 001 @ 00400645 n 0000 | providing training in a specific trade with the aim of gaining employment -00401459 04 n 01 reinstatement 0 002 @ 00268557 n 0000 + 02553262 v 0101 | the act of restoring someone to a previous position; "we insisted on the reinstatement of the colonel" -00401639 04 n 01 rejuvenation 0 003 @ 00268557 n 0000 + 00250877 v 0101 ~ 00401783 n 0000 | the act of restoring to a more youthful condition -00401783 04 n 02 refreshment 0 recreation 1 005 @ 00401639 n 0000 + 02787831 a 0201 + 00024279 v 0202 + 00164444 v 0101 + 00024814 v 0102 | activity that refreshes and recreates; activity that renews your health and spirits by enjoyment and relaxation; "time for rest and refreshment by the pool"; "days of joyous recreation with his friends" -00402128 04 n 01 metamorphosis 1 003 @ 00398704 n 0000 + 01530801 a 0101 + 02951869 a 0102 | a complete change of physical form or substance especially as by magic or witchcraft -00402308 04 n 02 transfiguration 2 metamorphosis 2 002 @ 00399393 n 0000 + 00384055 v 0102 | a striking change in appearance or character or circumstances; "the metamorphosis of the old house into something new and exciting" -00402535 04 n 01 filling 0 004 @ 00376063 n 0000 + 00452512 v 0101 ~ 00402671 n 0000 ~ 01257542 n 0000 | the act of filling something -00402671 04 n 01 saturation 0 002 @ 00402535 n 0000 + 00456357 v 0101 | the act of soaking thoroughly with a liquid -00402789 04 n 01 hardening 0 003 @ 00376063 n 0000 + 00443384 v 0101 ~ 00402951 n 0000 | the act of making something harder (firmer or tighter or more compact) -00402951 04 n 02 annealing 0 tempering 0 003 @ 00402789 n 0000 + 00303056 v 0202 + 00302875 v 0201 | hardening something by heat treatment -00403092 04 n 04 damage 0 harm 0 hurt 0 scathe 0 008 @ 00376063 n 0000 + 00102586 v 0201 + 00258857 v 0101 ~ 00403334 n 0000 ~ 00403466 n 0000 ~ 00403783 n 0000 ~ 00403911 n 0000 ~ 00966718 n 0000 | the act of damaging something or someone -00403334 04 n 01 impairment 0 002 @ 00403092 n 0000 + 00477941 v 0102 | damage that results in a reduction of strength or quality -00403466 04 n 03 defacement 0 disfigurement 0 disfiguration 0 003 @ 00403092 n 0000 + 01549905 v 0202 + 01549905 v 0101 | the act of damaging the appearance or surface of something; "the defacement of an Italian mosaic during the Turkish invasion"; "he objected to the dam's massive disfigurement of the landscape" -00403783 04 n 02 wound 0 wounding 0 003 @ 00403092 n 0000 + 00069879 v 0202 + 00069879 v 0102 | the act of inflicting a wound -00403911 04 n 01 burn 0 005 @ 00403092 n 0000 + 00196364 v 0101 + 00378042 v 0101 + 00377002 v 0101 ~ 00404058 n 0000 | damage inflicted by fire -00404058 04 n 01 scald 0 002 @ 00403911 n 0000 + 00196758 v 0101 | the act of burning with steam or hot water -00404170 04 n 01 updating 0 004 @ 00191142 n 0000 + 00833546 v 0101 + 00170857 v 0101 + 00170695 v 0101 | the act of changing something to bring it up to date (usually by adding something); "criminal records need regular updating" -00404403 04 n 01 change_of_shape 0 013 @ 00191142 n 0000 ~ 00404726 n 0000 ~ 00404959 n 0000 ~ 00405106 n 0000 ~ 00405206 n 0000 ~ 00406007 n 0000 ~ 00406365 n 0000 ~ 00406485 n 0000 ~ 00406612 n 0000 ~ 00406939 n 0000 ~ 00407090 n 0000 ~ 00407270 n 0000 ~ 00407407 n 0000 | an action that changes the shape of something -00404726 04 n 02 contortion 0 deformation 0 006 @ 00404403 n 0000 + 02954143 a 0201 + 01350699 v 0202 + 01280014 v 0203 + 09960545 n 0101 + 01350699 v 0101 | the act of twisting or deforming the shape of something (e.g., yourself) -00404959 04 n 01 convolution 0 003 @ 00404403 n 0000 + 01281184 v 0101 + 01281184 v 0102 | the action of coiling or twisting or winding together -00405106 04 n 01 angulation 0 001 @ 00404403 n 0000 | the act of making angulate (having corners) -00405206 04 n 01 bending 0 005 @ 00404403 n 0000 ~ 00405360 n 0000 ~ 00405766 n 0000 ~ 00406114 n 0000 ~ 00406234 n 0000 | the act of bending something -00405360 04 n 02 flexion 0 flexure 0 006 @ 00405206 n 0000 + 01280488 v 0201 + 02035919 v 0202 ! 00369532 n 0101 ~ 00405628 n 0000 ~ 00405892 n 0000 | act of bending a joint; especially a joint between the bones of a limb so that the angle between them is decreased -00405628 04 n 01 flex 0 002 @ 00405360 n 0000 + 02036977 v 0101 | the act of flexing; "he gave his biceps a flex to impress the ladies" -00405766 04 n 01 crouch 0 002 @ 00405206 n 0000 + 02062632 v 0101 | the act of bending low with the limbs close to the body -00405892 04 n 01 dorsiflexion 0 001 @ 00405360 n 0000 | the act of bending backward (of the body or a body part) -00406007 04 n 01 elongation 0 002 @ 00404403 n 0000 + 00318816 v 0101 | the act of lengthening something -00406114 04 n 01 hunch 0 002 @ 00405206 n 0000 + 02035559 v 0101 | the act of bending yourself into a humped position -00406234 04 n 01 incurvation 0 003 @ 00405206 n 0000 + 02036339 v 0101 + 01280645 v 0101 | the action of creating a curved shape -00406365 04 n 02 involution 0 enfolding 0 002 @ 00404403 n 0000 + 01580467 v 0202 | the action of enfolding something -00406485 04 n 01 corrugation 0 002 @ 00404403 n 0000 + 01387164 v 0101 | the act of shaping into parallel ridges and grooves -00406612 04 n 02 fold 0 folding 0 005 @ 00404403 n 0000 + 01277974 v 0201 + 00564695 v 0101 + 01277974 v 0101 ~ 00406800 n 0000 | the act of folding; "he gave the napkins a double fold" -00406800 04 n 02 plication 0 pleating 0 003 @ 00406612 n 0000 + 01387301 v 0202 + 01217780 v 0102 | the act of folding in parallel folds -00406939 04 n 01 indentation 0 002 @ 00404403 n 0000 + 01277173 v 0101 | the act of cutting into an edge with toothlike notches or angular incisions -00407090 04 n 04 protrusion 0 projection 2 jut 0 jutting 0 004 @ 00404403 n 0000 + 02713372 v 0404 + 02713372 v 0205 + 02713372 v 0102 | the act of projecting out from something -00407270 04 n 02 widening 0 broadening 1 003 @ 00404403 n 0000 + 00303661 v 0101 ! 00407407 n 0101 | the act of making something wider -00407407 04 n 01 narrowing 0 003 @ 00404403 n 0000 + 00305109 v 0101 ! 00407270 n 0101 | the act of making something narrower -00407535 04 n 01 activity 0 080 @ 00030358 n 0000 + 01515280 a 0101 + 00927373 a 0101 ! 01062583 n 0101 ~ 00194969 n 0000 ~ 00292981 n 0000 ~ 00409075 n 0000 ~ 00409211 n 0000 ~ 00409483 n 0000 ~ 00410247 n 0000 ~ 00426928 n 0000 ~ 00432881 n 0000 ~ 00455348 n 0000 ~ 00455599 n 0000 ~ 00457382 n 0000 ~ 00543233 n 0000 ~ 00548326 n 0000 ~ 00552436 n 0000 ~ 00555325 n 0000 ~ 00575741 n 0000 ~ 00577357 n 0000 ~ 00579564 n 0000 ~ 00582388 n 0000 ~ 00582868 n 0000 ~ 00614224 n 0000 ~ 00722061 n 0000 ~ 00732746 n 0000 ~ 00742645 n 0000 ~ 00786195 n 0000 ~ 00803617 n 0000 ~ 00817680 n 0000 ~ 00876737 n 0000 ~ 00883297 n 0000 ~ 00893955 n 0000 ~ 00898518 n 0000 ~ 00908492 n 0000 ~ 00912274 n 0000 ~ 00942988 n 0000 ~ 00945401 n 0000 ~ 00947128 n 0000 ~ 00955060 n 0000 ~ 00996969 n 0000 ~ 00999245 n 0000 ~ 01008378 n 0000 ~ 01012360 n 0000 ~ 01017320 n 0000 ~ 01017987 n 0000 ~ 01023820 n 0000 ~ 01026897 n 0000 ~ 01027379 n 0000 ~ 01028655 n 0000 ~ 01046984 n 0000 ~ 01048912 n 0000 ~ 01051331 n 0000 ~ 01057200 n 0000 ~ 01061333 n 0000 ~ 01071746 n 0000 ~ 01072072 n 0000 ~ 01072236 n 0000 ~ 01072402 n 0000 ~ 01097292 n 0000 ~ 01124508 n 0000 ~ 01143040 n 0000 ~ 01207609 n 0000 ~ 01215902 n 0000 ~ 01220984 n 0000 ~ 01221254 n 0000 ~ 01256417 n 0000 ~ 01257145 n 0000 ~ 01257418 n 0000 ~ 01260008 n 0000 ~ 01260556 n 0000 ~ 01260731 n 0000 ~ 01264447 n 0000 ~ 01264667 n 0000 ~ 01266152 n 0000 ~ 01266364 n 0000 ~ 07080868 n 0000 ~ 07428450 n 0000 ~ 15173712 n 0000 | any specific behavior; "they avoided all recreational activity" -00409075 04 n 01 domesticity 0 002 @ 00407535 n 0000 + 02919594 a 0101 | domestic activities or life; "making a hobby of domesticity" -00409211 04 n 01 operation 7 005 @ 00407535 n 0000 ;c 01094725 n 0000 + 02443849 v 0101 + 01510827 v 0104 + 01224744 v 0101 | the activity of operating something (a machine or business etc.); "her smooth operation of the vehicle gave us a surprisingly comfortable ride" -00409483 04 n 01 operation 3 003 @ 00407535 n 0000 ~ 00409823 n 0000 ~ 00409943 n 0000 | a planned activity involving many people performing various actions; "they organized a rescue operation"; "the biggest police operation in French history"; "running a restaurant is quite an operation"; "consolidate the companies various operations" -00409823 04 n 01 rescue_operation 0 001 @ 00409483 n 0000 | an operation organized to free from danger or confinement -00409943 04 n 01 undercover_operation 0 002 @ 00409483 n 0000 ~ 00410096 n 0000 | an operation involving secret work within a community or institution -00410096 04 n 01 buy-and-bust_operation 0 001 @ 00409943 n 0000 | an undercover operation by narcotics detectives to catch unsuspecting drug dealers -00410247 04 n 02 practice 0 pattern 0 035 @ 00407535 n 0000 + 02712243 v 0201 + 01940651 a 0103 + 01834304 a 0101 + 02561332 v 0101 ~ 00411235 n 0000 ~ 00411384 n 0000 ~ 00411553 n 0000 ~ 00411717 n 0000 ~ 00412006 n 0000 ~ 00412130 n 0000 ~ 00412271 n 0000 ~ 00412449 n 0000 ~ 00412572 n 0000 ~ 00412727 n 0000 ~ 00412839 n 0000 ~ 00413086 n 0000 ~ 00413239 n 0000 ~ 00415000 n 0000 ~ 00415226 n 0000 ~ 00415333 n 0000 ~ 00415442 n 0000 ~ 00415540 n 0000 ~ 00416914 n 0000 ~ 00417005 n 0000 ~ 00418025 n 0000 ~ 00418305 n 0000 ~ 00627664 n 0000 ~ 01030488 n 0000 ~ 01030642 n 0000 ~ 01030820 n 0000 ~ 01031023 n 0000 ~ 01031563 n 0000 ~ 01031705 n 0000 ~ 01031858 n 0000 | a customary way of operation or behavior; "it is their practice to give annual raises"; "they changed their dietary pattern" -00411048 04 n 02 practice 4 praxis 0 001 @ 00044150 n 0000 | translating an idea into action; "a hard theory to put into practice"; "differences between theory and praxis of communism" -00411235 04 n 01 biologism 0 002 @ 00410247 n 0000 + 02666029 a 0101 | use of biological principles in explaining human especially social behavior -00411384 04 n 01 cooperation 2 002 @ 00410247 n 0000 + 02416278 v 0103 | the practice of cooperating; "economic cooperation"; "they agreed on a policy of cooperation" -00411553 04 n 01 featherbedding 0 001 @ 00410247 n 0000 | the practice (usually by a labor union) of requiring an employer to hire more workers than are required -00411717 04 n 01 formalism 0 002 @ 00410247 n 0000 + 02730304 a 0101 | the practice of scrupulous adherence to prescribed or external forms -00411859 04 n 01 mycophagy 0 002 @ 00838367 n 0000 + 10343211 n 0101 | the practice of eating fungi (especially mushrooms collected in the wild) -00412006 04 n 01 one-upmanship 0 001 @ 00410247 n 0000 | the practice of keeping one jump ahead of a friend or competitor -00412130 04 n 01 pluralism 0 002 @ 00410247 n 0000 + 10443830 n 0101 | the practice of one person holding more than one benefice at a time -00412271 04 n 03 symbolism 0 symbolization 0 symbolisation 0 003 @ 00410247 n 0000 + 10685853 n 0101 + 10685685 n 0101 | the practice of investing things with symbolic meaning -00412449 04 n 01 modernism 0 002 @ 00410247 n 0000 + 00972902 a 0103 | practices typical of contemporary life or thought -00412572 04 n 02 occult 0 occult_arts 0 002 @ 00410247 n 0000 + 00900071 a 0104 | supernatural practices and techniques; "he is a student of the occult" -00412727 04 n 01 ornamentalism 0 002 @ 00410247 n 0000 + 09998907 n 0102 | the practice of ornamental display -00412839 04 n 01 cannibalism 0 003 @ 00410247 n 0000 + 03052770 a 0101 ~ 00412982 n 0000 | the practice of eating the flesh of your own kind -00412982 04 n 01 anthropophagy 0 001 @ 00412839 n 0000 | human cannibalism; the eating of human flesh -00413086 04 n 01 careerism 0 002 @ 00410247 n 0000 + 09895222 n 0101 | the practice of advancing your career at the expense of your personal integrity -00413239 04 n 03 custom 0 usage 1 usance 0 013 @ 00410247 n 0000 @ 01022178 n 0000 + 02561332 v 0303 + 02370131 v 0201 + 00489491 a 0102 ~ 00413554 n 0000 ~ 00413674 n 0000 ~ 00413795 n 0000 ~ 00413904 n 0000 ~ 00414071 n 0000 ~ 00414179 n 0000 ~ 00414599 n 0000 ~ 01027859 n 0000 | accepted or habitual practice -00413554 04 n 01 Americanism 0 001 @ 00413239 n 0000 | a custom that is peculiar to the United States or its citizens -00413674 04 n 02 Anglicism 0 Britishism 0 001 @ 00413239 n 0000 | a custom that is peculiar to England or its citizens -00413795 04 n 01 consuetude 0 001 @ 00413239 n 0000 | a custom or usage that has acquired the force of law -00413904 04 n 01 couvade 0 001 @ 00413239 n 0000 | a custom among some peoples whereby the husband of a pregnant wife is put to bed at the time of bearing the child -00414071 04 n 01 Germanism 0 001 @ 00413239 n 0000 | a custom that is peculiar to Germany or its citizens -00414179 04 n 02 habit 2 use 1 007 @ 00413239 n 0000 ;c 06136258 n 0000 + 00489491 a 0103 + 01165043 v 0102 ~ 00414790 n 0000 ~ 00414881 n 0000 ~ 14496451 n 0000 | (psychology) an automatic pattern of behavior in reaction to a specific situation; may be inherited or acquired through frequent repetition; "owls have nocturnal habits"; "she had a habit twirling the ends of her hair"; "long use had hardened him to it" -00414599 04 n 01 hijab 0 001 @ 00413239 n 0000 | the custom in some Islamic societies of women dressing modestly outside the home; "she observes the hijab and does not wear tight clothing" -00414790 04 n 01 ritual 2 002 @ 00414179 n 0000 + 02892389 a 0101 | stereotyped behavior -00414881 04 n 01 second_nature 0 001 @ 00414179 n 0000 | acquired behavior that is practiced so long it seems innate -00415000 04 n 01 habitude 0 002 @ 00410247 n 0000 ~ 00415098 n 0000 | habitual mode of behavior -00415098 04 n 02 round 1 daily_round 0 001 @ 00415000 n 0000 | the usual activities in your day; "the doctor made his rounds" -00415226 04 n 01 fashion 0 002 @ 00410247 n 0000 ~ 00416737 n 0000 | characteristic or habitual practice -00415333 04 n 01 lobbyism 0 001 @ 00410247 n 0000 | the practice of lobbying; the activities of a lobbyist -00415442 04 n 02 slavery 1 slaveholding 0 001 @ 00410247 n 0000 | the practice of owning slaves -00415540 04 n 01 peonage 0 001 @ 00410247 n 0000 | the practice of making a debtor work for his creditor until the debt is discharged -00415676 04 n 03 way 0 path 0 way_of_life 0 006 @ 00038262 n 0000 ~ 00415988 n 0000 ~ 00416129 n 0000 ~ 00416216 n 0000 ~ 00416409 n 0000 ~ 00416646 n 0000 | a course of conduct; "the path of virtue"; "we went our separate ways"; "our paths in life led us apart"; "genius usually follows a revolutionary path" -00415988 04 n 01 ambages 0 003 @ 00415676 n 0000 ;u 06295235 n 0000 ;u 07073447 n 0000 | (archaic) roundabout or mysterious ways of action -00416129 04 n 01 primrose_path 0 001 @ 00415676 n 0000 | a life of ease and pleasure -00416216 04 n 02 straight_and_narrow 0 strait_and_narrow 0 001 @ 00415676 n 0000 | the way of proper and honest behavior; "he taught his children to keep strictly to the straight and narrow" -00416409 04 n 03 Sunnah 0 Sunna 0 hadith 0 002 @ 00415676 n 0000 ;c 06234825 n 0000 | (Islam) the way of life prescribed as normative for Muslims on the basis of the teachings and practices of Muhammad and interpretations of the Koran -00416646 04 n 01 warpath 0 001 @ 00415676 n 0000 | a course leading to warfare or battle -00416737 04 n 02 line_of_least_resistance 0 path_of_least_resistance 0 001 @ 00415226 n 0000 | the easiest way; "In marrying him she simply took the path of least resistance" -00416914 04 n 01 unwritten_law 0 001 @ 00410247 n 0000 | law based on customary behavior -00417005 04 n 01 lynch_law 0 001 @ 00410247 n 0000 | the practice of punishing people by hanging without due process of law -00417131 04 n 02 chokehold 0 choke_hold 0 001 @ 00812526 n 0000 | a restraining hold; someone loops the arm around the neck of another person in a tight grip, usually from behind; "he grabbed the woman in a chokehold, demanded her cash and jewelry, and then fled" -00417397 04 n 03 embrace 0 embracing 0 embracement 0 006 @ 00812526 n 0000 + 01424456 v 0301 + 01424456 v 0201 + 01424456 v 0101 ~ 00417643 n 0000 ~ 00417859 n 0000 | the act of clasping another person in the arms (as in greeting or affection) -00417643 04 n 03 cuddle 0 nestle 0 snuggle 0 006 @ 00417397 n 0000 + 01424948 v 0302 + 01424948 v 0203 + 01460266 a 0102 + 01425511 v 0101 + 01424948 v 0101 | a close and affectionate (and often prolonged) embrace -00417859 04 n 03 hug 0 clinch 1 squeeze 2 003 @ 00417397 n 0000 + 01572978 v 0202 + 01424456 v 0102 | a tight or amorous embrace; "come here and give me a big hug" -00418025 04 n 01 mistreatment 0 007 @ 00410247 n 0000 + 02516594 v 0101 ~ 00418394 n 0000 ~ 00418615 n 0000 ~ 00418903 n 0000 ~ 00419644 n 0000 ~ 00419908 n 0000 | the practice of treating (someone or something) badly; "he should be punished for his mistreatment of his mother" -00418305 04 n 01 nonconformism 0 001 @ 00410247 n 0000 | the practice of nonconformity -00418394 04 n 04 annoyance 0 annoying 0 irritation 1 vexation 0 006 @ 00418025 n 0000 + 01787955 v 040b + 01787955 v 0306 + 01787955 v 0101 ~ 00425451 n 0000 ~ 00425615 n 0000 | the act of troubling or annoying someone -00418615 04 n 02 disregard 1 neglect 2 005 @ 00418025 n 0000 + 00616153 v 0201 + 00616857 v 0103 + 00800930 v 0102 ~ 00418787 n 0000 | willful lack of care and attention -00418787 04 n 01 despite 0 001 @ 00418615 n 0000 | contemptuous disregard; "she wanted neither favor nor despite" -00418903 04 n 04 exploitation 1 victimization 0 victimisation 0 using 0 008 @ 00418025 n 0000 + 02600490 v 0401 + 02574205 v 0302 + 02572119 v 0201 + 01162754 v 0101 ~ 00419315 n 0000 ~ 00419464 n 0000 ~ 00426526 n 0000 | an act that exploits or victimizes someone (treats them unfairly); "capitalistic exploitation of the working class"; "paying Blacks less and charging them more is a form of victimization" -00419315 04 n 01 blaxploitation 0 001 @ 00418903 n 0000 | the exploitation of black people (especially with regard to stereotyped roles in movies) -00419464 04 n 01 sexploitation 0 001 @ 00418903 n 0000 | the commercial exploitation of sex or sexuality or explicit sexual material; "sexploitation by advertisers is notorious" -00419644 04 n 02 harassment 0 molestation 0 008 @ 00418025 n 0000 + 01789514 v 020a + 01789514 v 0101 ~ 00425182 n 0000 ~ 00425278 n 0000 ~ 00425781 n 0000 ~ 00425905 n 0000 ~ 00426275 n 0000 | the act of tormenting by continued persistent attacks and criticism -00419908 04 n 04 maltreatment 0 ill-treatment 0 ill-usage 0 abuse 2 009 @ 00418025 n 0000 + 02516594 v 0403 + 02516594 v 0304 + 02516594 v 0206 + 02516594 v 0102 ~ 00420218 n 0000 ~ 00420336 n 0000 ~ 00420477 n 0000 ~ 00424599 n 0000 | cruel or inhumane treatment; "the child showed signs of physical abuse" -00420218 04 n 01 child_abuse 0 001 @ 00419908 n 0000 | the physical or emotional or sexual mistreatment of children -00420336 04 n 01 child_neglect 0 001 @ 00419908 n 0000 | failure of caretakers to provide adequate emotional and physical care for a child -00420477 04 n 01 persecution 0 007 @ 00419908 n 0000 ;c 05946687 n 0000 + 02585489 v 0101 ~ 00421047 n 0000 ~ 00421210 n 0000 ~ 00421321 n 0000 ~ 00421437 n 0000 | the act of persecuting (especially on the basis of race or religion) -00420712 04 n 01 repression 0 002 @ 00803617 n 0000 + 02424128 v 0101 | the act of repressing; control by holding down; "his goal was the repression of insolence" -00420877 04 n 01 impalement 0 003 @ 00424599 n 0000 + 01572003 v 0101 + 01444326 v 0102 | the act of piercing with a sharpened stake as a form of punishment or torture -00421047 04 n 02 oppression 0 subjugation 1 002 @ 00420477 n 0000 + 02424652 v 0101 | the act of subjugating by cruelty; "the tyrant's oppression of the people" -00421210 04 n 01 pogrom 0 001 @ 00420477 n 0000 | organized persecution of an ethnic group (especially Jews) -00421321 04 n 01 rendition 0 001 @ 00420477 n 0000 | handing over prisoners to countries where torture is allowed -00421437 04 n 02 torture 0 torturing 0 020 @ 00420477 n 0000 + 00071178 v 0201 + 00071178 v 0101 ~ 00422114 n 0000 ~ 00422261 n 0000 ~ 00422391 n 0000 ~ 00422551 n 0000 ~ 00422719 n 0000 ~ 00422834 n 0000 ~ 00423028 n 0000 ~ 00423222 n 0000 ~ 00423423 n 0000 ~ 00423563 n 0000 ~ 00423769 n 0000 ~ 00423916 n 0000 ~ 00424034 n 0000 ~ 00424186 n 0000 ~ 00424324 n 0000 ~ 01163586 n 0000 ~ 07433510 n 0000 | the deliberate, systematic, or wanton infliction of physical or mental suffering by one or more persons in an attempt to force another person to yield information or to make a confession or for any other reason; "it required unnatural torturing to extract a confession" -00422114 04 n 02 bastinado 0 falanga 0 001 @ 00421437 n 0000 | a form of torture in which the soles of the feet are beaten with whips or cudgels -00422261 04 n 01 boot 1 001 @ 00421437 n 0000 | a form of foot torture in which the feet are encased in iron and slowly crushed -00422391 04 n 01 burning 3 001 @ 00421437 n 0000 | a form of torture in which cigarettes or cigars or other hot implements are used to burn the victim's skin -00422551 04 n 02 crucifixion 1 excruciation 0 003 @ 00421437 n 0000 + 00071178 v 0202 + 01803003 v 0104 | the infliction of extremely painful punishment or suffering -00422719 04 n 01 genital_torture 0 001 @ 00421437 n 0000 | blunt or penetrating trauma or rape (vaginal or anal) -00422834 04 n 01 judicial_torture 0 001 @ 00421437 n 0000 | torture that is sanctioned by the state and executed by duly accredited officials; "the English renounced judicial torture in 1640" -00423028 04 n 01 kia_quen 0 001 @ 00421437 n 0000 | a form of foot torture used by the Chinese in which the victim's foot was placed between three pieces of bamboo and systematically squeezed -00423222 04 n 01 kittee 0 001 @ 00421437 n 0000 | a form of torture used by American Indians in which sensitive parts of the body were squeezed between two boards until the victim could bear no more -00423423 04 n 02 nail_pulling 0 nail_removal 0 001 @ 00421437 n 0000 | a form of torture in which the fingernails or toenails are removed -00423563 04 n 02 picket 0 piquet 1 001 @ 00421437 n 0000 | a form of military punishment used by the British in the late 17th century in which a soldier was forced to stand on one foot on a pointed stake -00423769 04 n 01 prolonged_interrogation 0 001 @ 00421437 n 0000 | a form of psychological torture inflicted by questioning the victim for hours -00423916 04 n 01 rack 1 001 @ 00421437 n 0000 | a form of torture in which pain is inflicted by stretching the body -00424034 04 n 01 sensory_deprivation 0 001 @ 00421437 n 0000 | a form of psychological torture inflicted by depriving the victim of all sensory input -00424186 04 n 01 sleep_deprivation 0 001 @ 00421437 n 0000 | a form of psychological torture inflicted by depriving the victim of sleep -00424324 04 n 02 strappado 0 strapado 0 001 @ 00421437 n 0000 | a form of torture in which the hands are tied behind a person's back and they are lifted off the ground by a rope tied to their wrists, then allowed to drop until their fall is checked with a jerk by the rope -00424599 04 n 02 cruelty 0 inhuman_treatment 0 003 @ 00419908 n 0000 ~ 00420877 n 0000 ~ 00424767 n 0000 | a cruel act; a deliberate infliction of pain and suffering -00424767 04 n 02 atrocity 0 inhumanity 0 005 @ 00424599 n 0000 + 01131454 a 0101 ~ 00424934 n 0000 ~ 00425090 n 0000 ~ 00746033 n 0000 | an act of atrocious cruelty -00424934 04 n 04 brutality 0 barbarity 0 barbarism 0 savagery 0 003 @ 00424767 n 0000 + 01120900 v 0401 + 00412788 a 0202 | a brutal barbarous savage act -00425090 04 n 01 outrage 1 002 @ 00424767 n 0000 + 02567519 v 0107 | a wantonly cruel act -00425182 04 n 01 baiting 0 001 @ 00419644 n 0000 | harassment especially of a tethered animal -00425278 04 n 04 badgering 0 worrying 0 torment 0 bedevilment 0 004 @ 00419644 n 0000 + 01803003 v 0403 + 01803003 v 0301 + 01765908 v 0201 | the act of harassing someone -00425451 04 n 01 exasperation 0 004 @ 00418394 n 0000 + 01786906 v 0102 + 01820901 v 0102 ~ 01222157 n 0000 | actions that cause great irritation (or even anger) -00425615 04 n 01 red_flag 0 001 @ 00418394 n 0000 | something that irritates or demands immediate action; "doing that is like waving a red flag in front of a bull" -00425781 04 n 01 sexual_harassment 0 001 @ 00419644 n 0000 | unwelcome sexual behavior by a supervisor toward an employee -00425905 04 n 04 tease 0 teasing 0 ribbing 0 tantalization 0 006 @ 00419644 n 0000 + 00850501 v 0405 + 00851933 v 0307 + 00850501 v 0201 + 00850501 v 0101 + 01803380 v 0101 | the act of harassing someone playfully or maliciously (especially by ridicule); provoking someone with persistent annoyances; "he ignored their teases"; "his ribbing was gentle but persistent" -00426275 04 n 01 witch-hunt 0 002 @ 00419644 n 0000 ~ 00426388 n 0000 | searching out and harassing dissenters -00426388 04 n 01 McCarthyism 0 001 @ 00426275 n 0000 | unscrupulously accusing people of disloyalty (as by saying they were Communists) -00426526 04 n 01 colonialism 0 003 @ 00418903 n 0000 + 09937802 n 0101 ~ 00426757 n 0000 | exploitation by a stronger country of weaker one; the use of the weaker country's resources to strengthen and enrich the stronger country -00426757 04 n 01 neocolonialism 0 001 @ 00426526 n 0000 | control by a powerful country of its former colonies (or other less developed countries) by economic pressures -00426928 04 n 02 diversion 0 recreation 0 021 @ 00407535 n 0000 + 02787831 a 0201 + 02418421 v 0202 + 02492362 v 0102 ~ 00427580 n 0000 ~ 00427853 n 0000 ~ 00428000 n 0000 ~ 00428270 n 0000 ~ 00429048 n 0000 ~ 00429322 n 0000 ~ 00429440 n 0000 ~ 00429713 n 0000 ~ 00429949 n 0000 ~ 00430140 n 0000 ~ 00430606 n 0000 ~ 00431005 n 0000 ~ 00431292 n 0000 ~ 00431552 n 0000 ~ 00431893 n 0000 ~ 00511817 n 0000 ~ 00523513 n 0000 | an activity that diverts or amuses or stimulates; "scuba diving is provided as a diversion for tourists"; "for recreation he wrote poetry and solved crossword puzzles"; "drug abuse is often regarded as a form of recreation" -00427580 04 n 06 antic 0 joke 0 prank 0 trick 0 caper 2 put-on 1 008 @ 00426928 n 0000 + 10463714 n 0403 + 10463714 n 0301 + 10224098 n 0202 + 00967646 a 0101 + 00105778 v 0103 ~ 00514041 n 0000 ~ 00514128 n 0000 | a ludicrous or grotesque act done for fun and amusement -00427853 04 n 01 bathing 0 004 @ 00426928 n 0000 + 00037919 v 0101 ~ 00442569 n 0000 ~ 00442759 n 0000 | immersing the body in water or sunshine -00428000 04 n 02 celebration 0 festivity 0 011 @ 00426928 n 0000 + 01367431 a 0203 + 02578510 v 0102 + 02490877 v 0101 ~ 00035697 n 0000 ~ 00509846 n 0000 ~ 00517564 n 0000 ~ 00517728 n 0000 ~ 00518669 n 0000 ~ 00518770 n 0000 ~ 00519118 n 0000 | any joyous diversion -00428270 04 n 04 dancing 0 dance 0 terpsichore 0 saltation 1 035 @ 00426928 n 0000 @ 06157326 n 0000 + 01965464 v 0401 + 03123695 a 0301 + 01708676 v 0201 + 01708676 v 0101 -c 00286360 n 0000 ~ 00526259 n 0000 ~ 00526412 n 0000 ~ 00526663 n 0000 ~ 00526793 n 0000 ~ 00526948 n 0000 ~ 00527061 n 0000 ~ 00527198 n 0000 ~ 00527319 n 0000 ~ 00527498 n 0000 ~ 00527695 n 0000 ~ 00528059 n 0000 ~ 00528397 n 0000 ~ 00529101 n 0000 ~ 00529224 n 0000 ~ 00529400 n 0000 ~ 00529511 n 0000 ~ 00532110 n 0000 ~ 00538668 n 0000 ~ 00541479 n 0000 -c 04391276 n 0000 -c 09883174 n 0000 -c 01708542 v 0000 -c 01708676 v 0000 -c 01709931 v 0000 -c 01710048 v 0000 -c 01710190 v 0000 -c 01751545 v 0000 -c 01755389 v 0000 | taking a series of rhythmical steps (and movements) in time to music -00429048 04 n 02 entertainment 0 amusement 0 009 @ 00426928 n 0000 + 02492362 v 0201 + 02492198 v 0101 ~ 00515414 n 0000 ~ 00515578 n 0000 ~ 00515684 n 0000 ~ 00515791 n 0000 ~ 00515952 n 0000 ~ 00520257 n 0000 | an activity that is diverting and that holds the attention -00429322 04 n 02 escapade 0 lark 0 003 @ 00426928 n 0000 + 01883716 v 0202 ~ 00510383 n 0000 | any carefree episode -00429440 04 n 02 escape 2 escapism 0 002 @ 00426928 n 0000 + 10062996 n 0201 | an inclination to retreat from unpleasant realities through diversion or fantasy; "romantic novels were her escape from the stress of daily life"; "his alcohol problem was a form of escapism" -00429713 04 n 04 eurythmy 0 eurhythmy 0 eurythmics 0 eurhythmics 0 002 @ 00331950 n 0000 @ 00426928 n 0000 | the interpretation in harmonious bodily movements of the rhythm of musical compositions; used to teach musical understanding -00429949 04 n 03 fun 0 merriment 0 playfulness 0 002 @ 00426928 n 0000 + 01265308 a 0104 | activities that are enjoyable or amusing; "I do it for the fun of it"; "he is fun to have around" -00430140 04 n 03 gambling 0 gaming 0 play 2 012 @ 00426928 n 0000 @ 00747029 n 0000 + 01155687 v 0303 + 01156115 v 0301 + 01149470 v 0301 + 01138911 v 0301 + 01139104 v 0205 + 01138523 v 0101 ~ 00506554 n 0000 ~ 00506658 n 0000 ~ 00507673 n 0000 ~ 01245618 n 0000 | the act of playing for stakes in the hope of winning (including the payment of a price for a chance to win a prize); "his gambling cost him a fortune"; "there was heavy play at the blackjack table" -00430606 04 n 01 game 1 012 @ 00426928 n 0000 ~ 00458641 n 0000 ~ 00458800 n 0000 ~ 00458890 n 0000 ~ 00459284 n 0000 ~ 00459570 n 0000 ~ 00459845 n 0000 ~ 00459979 n 0000 ~ 00460078 n 0000 ~ 00460344 n 0000 ~ 00460541 n 0000 ~ 00460706 n 0000 | an amusement or pastime; "they played word games"; "he thought of his painting as a game that filled his empty time"; "his life was all fun and games" -00431005 04 n 03 jest 0 joke 1 jocularity 0 011 @ 00426928 n 0000 + 01267076 a 0303 + 01267076 a 0203 + 10224098 n 0202 + 00105554 v 0201 + 00853633 v 0201 + 00853633 v 0102 + 00105554 v 0102 ~ 00515069 n 0000 ~ 00515159 n 0000 ~ 00515297 n 0000 | activity characterized by good humor -00431292 04 n 02 nightlife 0 night_life 0 001 @ 00426928 n 0000 | the activity of people seeking nighttime diversion (as at the theater, a nightclub, etc.); "a futile search for intelligent nightlife"; "in the summer the nightlife shifts to the dance clubs" -00431552 04 n 03 pastime 0 interest 1 pursuit 1 003 @ 00426928 n 0000 + 02375131 v 0303 ~ 00432689 n 0000 | a diversion that occupies one's time and thoughts (usually pleasantly); "sailing is her favorite pastime"; "his main pastime is gambling"; "he counts reading among his interests"; "they criticized the boy for his limited pursuits" -00431893 04 n 02 play 6 child's_play 1 005 @ 00426928 n 0000 + 02418686 v 0101 ~ 00432164 n 0000 ~ 00432356 n 0000 ~ 00432587 n 0000 | activity by children that is guided more by imagination than by fixed rules; "Freud believed in the utility of play to a small child" -00432164 04 n 01 house 0 001 @ 00431893 n 0000 | play in which children take the roles of father or mother or children and pretend to interact like adults; "the children were playing house" -00432356 04 n 01 doctor 0 001 @ 00431893 n 0000 | children take the roles of physician or patient or nurse and pretend they are at the physician's office; "the children explored each other's bodies by playing the game of doctor" -00432587 04 n 01 fireman 0 001 @ 00431893 n 0000 | play in which children pretend to put out a fire -00432689 04 n 06 avocation 0 by-line 0 hobby 0 pursuit 2 sideline 0 spare-time_activity 0 004 @ 00431552 n 0000 + 10179069 n 0301 + 02654442 a 0101 ~ 00798108 n 0000 | an auxiliary activity -00432881 04 n 03 cup_of_tea 0 bag 0 dish 0 001 @ 00407535 n 0000 | an activity that you like or at which you are superior; "chemistry is not my cup of tea"; "his bag now is learning to play golf"; "marriage was scarcely his dish" -00433113 04 n 01 confectionery 0 001 @ 00582388 n 0000 | the occupation and skills of a confectioner -00433216 04 n 01 sport 1 009 @ 00582388 n 0000 ~ 00446311 n 0000 ~ 00448126 n 0000 ~ 00448232 n 0000 ~ 00466273 n 0000 ~ 00470554 n 0000 ~ 00474657 n 0000 ~ 00481803 n 0000 ~ 00483205 n 0000 | the occupation of athletes who compete for pay -00433458 04 n 01 contact_sport 0 005 @ 00523513 n 0000 ~ 00445802 n 0000 ~ 00447540 n 0000 ~ 00463543 n 0000 ~ 00468480 n 0000 | a sport that necessarily involves body contact between opposing players -00433661 04 n 02 outdoor_sport 0 field_sport 0 003 @ 00523513 n 0000 ~ 00452293 n 0000 ~ 00453935 n 0000 | a sport that is played outdoors -00433802 04 n 02 gymnastics 0 gymnastic_exercise 1 007 @ 00523513 n 0000 + 00032497 a 0103 + 02849732 a 0101 ~ 00434075 n 0000 -c 00435778 n 0000 -c 03472232 n 0000 -c 01975387 v 0000 | a sport that involves exercises intended to display strength and balance and agility -00434075 04 n 02 acrobatics 0 tumbling 0 004 @ 00433802 n 0000 + 00100235 v 0201 + 00032497 a 0101 %p 00438065 n 0000 | the gymnastic moves of an acrobat -00434231 04 n 01 backbend 0 001 @ 00438065 n 0000 | an acrobatic feat in which the trunk is bent backward from a standing position until the hands touch the floor -00434396 04 n 01 back_circle 0 001 @ 00438065 n 0000 | a feat in which an acrobat arches the back from a prone position and bends the knees until the toes touch the head -00434568 04 n 01 walkover 1 001 @ 00438065 n 0000 | backbends combined with handstands -00434657 04 n 01 cartwheel 0 002 @ 00438065 n 0000 + 02046286 v 0101 | acrobatic revolutions with the body turned sideways and the arms and legs outstretched like the spokes of a wheel -00434844 04 n 01 crucifix 0 001 @ 00435778 n 0000 | a gymnastic exercise performed on the rings when the gymnast supports himself with both arms extended horizontally -00435013 04 n 01 dip 1 001 @ 00435778 n 0000 | a gymnastic exercise on the parallel bars in which the body is lowered and raised by bending and straightening the arms -00435182 04 n 01 double_leg_circle 0 001 @ 00435778 n 0000 | a gymnastic exercise performed on the pommel horse when the gymnast (with legs together) swings his legs in a circle while alternating hands on the pommels -00435401 04 n 01 grand_circle 0 001 @ 00435778 n 0000 | a gymnastic exercise performed on the horizontal bar by swinging around it with the body fully extended -00435563 04 n 01 cardiopulmonary_exercise 0 006 @ 00624738 n 0000 ~ 00485632 n 0000 ~ 00625551 n 0000 ~ 00625858 n 0000 ~ 00628390 n 0000 ~ 00629009 n 0000 | exercise intended to strengthen the circulatory system -00435778 04 n 01 gymnastic_exercise 0 012 @ 00624738 n 0000 ;c 00433802 n 0000 ~ 00434844 n 0000 ~ 00435013 n 0000 ~ 00435182 n 0000 ~ 00435401 n 0000 ~ 00436187 n 0000 ~ 00436339 n 0000 ~ 00438338 n 0000 ~ 00438606 n 0000 ~ 00438725 n 0000 ~ 00438893 n 0000 | (gymnastics) an exercise designed to develop and display strength and agility and balance (usually performed with or on some gymnastic apparatus) -00436187 04 n 01 handstand 0 002 @ 00435778 n 0000 %p 00437321 n 0000 | the act of supporting yourself by your hands alone in an upside down position -00436339 04 n 01 hang 0 006 @ 00435778 n 0000 ~ 00436609 n 0000 ~ 00436702 n 0000 ~ 00436817 n 0000 ~ 00436953 n 0000 ~ 00437067 n 0000 | a gymnastic exercise performed on the rings or horizontal bar or parallel bars when the gymnast's weight is supported by the arms -00436609 04 n 01 bent_hang 0 001 @ 00436339 n 0000 | a hang performed with the elbows bent -00436702 04 n 01 inverted_hang 0 001 @ 00436339 n 0000 | a hang performed on the rings with the body upside down -00436817 04 n 01 lever_hang 0 001 @ 00436339 n 0000 | a hang performed on the rings with the body stationary in a horizontal position -00436953 04 n 01 reverse_hang 0 002 @ 00436339 n 0000 ~ 00437219 n 0000 | a hang with the arms extended in back -00437067 04 n 01 straight_hang 0 001 @ 00436339 n 0000 | a hang performed on the rings or parallel bars with the body erect and the arms at the sides -00437219 04 n 01 piked_reverse_hang 0 001 @ 00436953 n 0000 | a reverse hang performed on the rings -00437321 04 n 01 kick_up 0 002 @ 00624738 n 0000 #p 00436187 n 0000 | raising the feet backward with the hands on the ground; a first movement in doing a handstand -00437487 04 n 01 handspring 0 001 @ 00438065 n 0000 | an acrobatic feat in which a person goes from a standing position to a handstand and back again -00437639 04 n 01 headstand 0 001 @ 00438065 n 0000 | an acrobatic feat in which a person balances on the head (usually with the help of the hands) -00437788 04 n 01 tumble 0 003 @ 00438065 n 0000 + 00100235 v 0101 ~ 00439484 n 0000 | an acrobatic feat of rolling or turning end over end -00437929 04 n 01 split 2 001 @ 00438065 n 0000 | extending the legs at right angles to the trunk (one in front and the other in back) -00438065 04 n 02 acrobatic_stunt 0 acrobatic_feat 0 010 @ 00046344 n 0000 #p 00434075 n 0000 ~ 00434231 n 0000 ~ 00434396 n 0000 ~ 00434568 n 0000 ~ 00434657 n 0000 ~ 00437487 n 0000 ~ 00437639 n 0000 ~ 00437788 n 0000 ~ 00437929 n 0000 | a stunt performed by an acrobat -00438338 04 n 02 kip 0 upstart 0 001 @ 00435778 n 0000 | a gymnastic exercise performed starting from a position with the legs over the upper body and moving to an erect position by arching the back and swinging the legs out and down while forcing the chest upright -00438606 04 n 01 long_fly 0 001 @ 00435778 n 0000 | a gymnastic exercise involving a long leap from a vaulting horse -00438725 04 n 01 scissors 1 001 @ 00435778 n 0000 | a gymnastic exercise performed on the pommel horse when the gymnast moves his legs as the blades of scissors move -00438893 04 n 01 straddle 2 002 @ 00435778 n 0000 + 02705913 v 0101 | a gymnastic exercise performed with a leg on either side of the parallel bars -00439043 04 n 03 split 3 stock_split 0 split_up 0 001 @ 00363260 n 0000 | an increase in the number of outstanding shares of a corporation without changing the shareholders' equity; "they announced a two-for-one split of the common stock" -00439284 04 n 03 reverse_split 0 reverse_stock_split 0 split_down 0 001 @ 00351638 n 0000 | a decrease in the number of outstanding shares of a corporation without changing the shareholders' equity -00439484 04 n 06 somersault 0 somerset 0 summersault 0 summerset 0 somersaulting 0 flip 3 004 @ 00437788 n 0000 + 01867697 v 0501 + 01867697 v 0101 ~ 00439749 n 0000 | an acrobatic feat in which the feet roll over the head (either forward or backward) and return -00439749 04 n 01 flip-flop 0 001 @ 00439484 n 0000 | a backward somersault -00439826 04 n 01 track_and_field 0 004 @ 00523513 n 0000 #p 07467846 n 0000 ~ 00440039 n 0000 ~ 00440218 n 0000 | participating in athletic sports performed on a running track or on the field associated with it -00440039 04 n 02 track 0 running 0 003 @ 00439826 n 0000 #p 07468692 n 0000 + 01086103 v 0202 | the act of participating in an athletic competition involving running on a track -00440218 04 n 01 jumping 0 003 @ 00439826 n 0000 ~ 00440382 n 0000 ~ 00440509 n 0000 | the act of participating in an athletic competition in which you must jump -00440382 04 n 02 broad_jump 0 long_jump 0 001 @ 00440218 n 0000 | the act of jumping as far as possible from a running start -00440509 04 n 01 high_jump 0 002 @ 00440218 n 0000 ~ 00440643 n 0000 | the act of jumping as high as possible over a horizontal bar -00440643 04 n 01 Fosbury_flop 0 001 @ 00440509 n 0000 | jumping over the bar backwards and head first -00440747 04 n 01 skiing 0 006 @ 00523513 n 0000 + 01938426 v 0101 %p 00298047 n 0000 ~ 00440941 n 0000 ~ 00441073 n 0000 -c 03948242 n 0000 | a sport in which participants must travel on skis -00440941 04 n 01 cross-country_skiing 0 001 @ 00440747 n 0000 | the sport of skiing across the countryside (rather than downhill) -00441073 04 n 01 ski_jumping 0 002 @ 00440747 n 0000 + 01965331 v 0101 | the act of performing a jump on skis from a high ramp overhanging a snow covered slope -00441235 04 n 01 kick_turn 0 001 @ 00350030 n 0000 | a standing turn made in skiing; one ski is raised to the vertical and pivoted backward to become parallel with the other ski but headed in the opposite direction and then the other ski is aligned with the first -00441501 04 n 02 stem_turn 0 stem 0 002 @ 00350030 n 0000 + 02713065 v 0201 | a turn made in skiing; the back of one ski is forced outward and the other ski is brought parallel to it -00441686 04 n 01 telemark 0 001 @ 00350030 n 0000 | a turn made in skiing; the outside ski is placed ahead and turned gradually inwards -00441824 04 n 02 water_sport 0 aquatics 0 011 @ 00523513 n 0000 ~ 00442115 n 0000 ~ 00445055 n 0000 ~ 00445226 n 0000 -c 01961691 v 0000 -c 01961859 v 0000 -c 01961974 v 0000 -c 01962178 v 0000 -c 01962375 v 0000 -c 01962865 v 0000 -c 01963316 v 0000 | sports that involve bodies of water -00442115 04 n 02 swimming 0 swim 0 010 @ 00441824 n 0000 + 01904293 v 0202 + 01960911 v 0201 + 01960911 v 0101 ~ 00442437 n 0000 ~ 00442654 n 0000 ~ 00442847 n 0000 ~ 00442981 n 0000 ~ 00443231 n 0000 ~ 00444651 n 0000 | the act of swimming; "it was the swimming they enjoyed most": "they took a short swim in the pool" -00442437 04 n 01 bathe 0 002 @ 00442115 n 0000 + 00037919 v 0101 | the act of swimming; "the Englishman said he had a good bathe" -00442569 04 n 01 sea_bathing 0 001 @ 00427853 n 0000 | bathing in the sea or ocean -00442654 04 n 01 skinny-dip 0 003 @ 00442115 n 0000 + 10605737 n 0101 + 01962498 v 0101 | a naked swim -00442759 04 n 01 sun_bathing 0 001 @ 00427853 n 0000 | immersing the body in sunlight -00442847 04 n 02 dip 0 plunge 0 004 @ 00442115 n 0000 + 01577093 v 0204 + 01577635 v 0202 + 01976220 v 0101 | a brief swim in water -00442981 04 n 02 dive 1 diving 0 010 @ 00442115 n 0000 + 01962865 v 0201 + 01962865 v 0101 ~ 00443517 n 0000 ~ 00443692 n 0000 ~ 00443803 n 0000 ~ 00443917 n 0000 ~ 00444142 n 0000 ~ 00444340 n 0000 ~ 00444490 n 0000 | a headlong plunge into water -00443231 04 n 02 floating 0 natation 0 003 @ 00442115 n 0000 + 01904293 v 0101 ~ 00443375 n 0000 | the act of someone who floats on the water -00443375 04 n 02 dead-man's_float 0 prone_float 0 001 @ 00443231 n 0000 | a floating position with the face down and arms stretched forward -00443517 04 n 04 belly_flop 0 belly_flopper 0 belly_whop 0 belly_whopper 0 001 @ 00442981 n 0000 | a dive in which the abdomen bears the main force of impact with the water -00443692 04 n 01 cliff_diving 0 001 @ 00442981 n 0000 | diving into the water from a steep overhanging cliff -00443803 04 n 01 flip 2 001 @ 00442981 n 0000 | a dive in which the diver somersaults before entering the water -00443917 04 n 02 gainer 0 full_gainer 0 001 @ 00442981 n 0000 | a dive in which the diver throws the feet forward to complete a full backward somersault and enters the water feet first and facing away from the diving board -00444142 04 n 01 half_gainer 0 001 @ 00442981 n 0000 | a dive in which the diver throws the feet forward and up to complete a half backward somersault and enters the water facing the diving board -00444340 04 n 01 jackknife 0 002 @ 00442981 n 0000 + 01963459 v 0101 | a dive in which the diver bends to touch the ankles before straightening out -00444490 04 n 02 swan_dive 0 swallow_dive 0 001 @ 00442981 n 0000 | a dive in which the diver arches the back with arms outstretched before entering the water -00444651 04 n 02 skin_diving 0 skin-dive 0 004 @ 00442115 n 0000 + 01963130 v 0201 ~ 00444846 n 0000 ~ 00444937 n 0000 | underwater swimming without any more breathing equipment than a snorkel -00444846 04 n 01 scuba_diving 0 001 @ 00444651 n 0000 | skin diving with scuba apparatus -00444937 04 n 02 snorkeling 0 snorkel_diving 0 002 @ 00444651 n 0000 + 01963795 v 0101 | skin diving with a snorkel -00445055 04 n 03 surfing 0 surfboarding 0 surfriding 0 002 @ 00441824 n 0000 + 01948077 v 0102 | the sport of riding a surfboard toward the shore on the crest of a wave -00445226 04 n 01 water-skiing 0 002 @ 00441824 n 0000 + 01940248 v 0101 | skiing on water while being towed by a motorboat -00445351 04 n 02 rowing 0 row 0 006 @ 00523513 n 0000 + 01946996 v 0201 + 01946996 v 0101 %p 00342565 n 0000 ~ 00445529 n 0000 ~ 00445685 n 0000 | the act of rowing as a sport -00445529 04 n 01 crab 0 001 @ 00445351 n 0000 | a stroke of the oar that either misses the water or digs too deeply; "he caught a crab and lost the race" -00445685 04 n 01 sculling 0 002 @ 00445351 n 0000 + 01947352 v 0101 | rowing by a single oarsman in a racing shell -00445802 04 n 03 boxing 0 pugilism 0 fisticuffs 0 023 @ 00433458 n 0000 + 03104585 a 0201 + 09870208 n 0202 + 01419982 v 0101 + 01420765 v 0101 -c 00957551 a 0000 -c 00059728 n 0000 -c 00134780 n 0000 -c 00286360 n 0000 ~ 00446311 n 0000 ~ 00446411 n 0000 ~ 00446493 n 0000 ~ 00446632 n 0000 ~ 00446804 n 0000 -c 02885338 n 0000 -c 02885462 n 0000 -c 02885663 n 0000 -c 03795269 n 0000 -c 07293678 n 0000 -c 01101313 v 0000 -c 01125209 v 0000 -c 01396790 v 0000 -c 02101649 v 0000 | fighting with the fists -00446311 04 n 01 professional_boxing 0 002 @ 00445802 n 0000 @ 00433216 n 0000 | boxing for money -00446411 04 n 01 in-fighting 0 001 @ 00445802 n 0000 | boxing at close quarters -00446493 04 n 01 fight 3 002 @ 00445802 n 0000 + 01090335 v 0102 | a boxing or wrestling match; "the fight was on television last night" -00446632 04 n 01 rope-a-dope 0 001 @ 00445802 n 0000 | a boxing tactic: pretending to be trapped against the ropes while your opponent wears himself out throwing punches -00446804 04 n 02 spar 0 sparring 0 002 @ 00445802 n 0000 + 01420194 v 0201 | making the motions of attack and defense with the fists and arms; a part of training for a boxer -00446980 04 n 01 archery 0 001 @ 00523513 n 0000 | the sport of shooting arrows with a bow -00447073 04 n 01 sledding 0 004 @ 00523513 n 0000 + 01939174 v 0101 ~ 00447221 n 0000 ~ 00447463 n 0000 | the sport of riding on a sled or sleigh -00447221 04 n 01 tobogganing 0 003 @ 00447073 n 0000 + 01940034 v 0101 ~ 00447361 n 0000 | riding on a long light sled with low handrails -00447361 04 n 01 luging 0 002 @ 00447221 n 0000 + 01940034 v 0102 | riding a light one-man toboggan -00447463 04 n 01 bobsledding 0 001 @ 00447073 n 0000 | riding on a bobsled -00447540 04 n 03 wrestling 0 rassling 0 grappling 1 010 @ 00433458 n 0000 + 01574292 v 0301 + 01504699 v 0101 ~ 00447879 n 0000 ~ 00447957 n 0000 ~ 00448126 n 0000 ~ 00448232 n 0000 %p 00812977 n 0000 -c 00813571 n 0000 -c 07471514 n 0000 | the sport of hand-to-hand struggle between unarmed contestants who try to throw each other down -00447879 04 n 01 flying_mare 0 001 @ 00447540 n 0000 | a wrestling maneuver -00447957 04 n 01 Greco-Roman_wrestling 0 001 @ 00447540 n 0000 | a style of wrestling where the wrestlers are forbidden to tackle or trip or use holds below the waist -00448126 04 n 01 professional_wrestling 0 002 @ 00447540 n 0000 @ 00433216 n 0000 | wrestling for money -00448232 04 n 01 sumo 0 003 @ 00447540 n 0000 @ 00433216 n 0000 ;r 08921850 n 0000 | a Japanese form of wrestling; you lose if you are forced out of a small ring or if any part of your body (other than your feet) touches the ground -00448466 04 n 01 skating 0 006 @ 00523513 n 0000 + 01936753 v 0101 ~ 00448640 n 0000 ~ 00448958 n 0000 ~ 00449054 n 0000 ~ 00449168 n 0000 | the sport of gliding on skates -00448640 04 n 01 ice_skating 0 003 @ 00448466 n 0000 + 01937222 v 0101 ~ 00448748 n 0000 | skating on ice -00448748 04 n 01 figure_skating 0 001 @ 00448640 n 0000 | ice skating where the skates trace outlines of selected figures -00448872 04 n 01 rollerblading 0 001 @ 00448958 n 0000 | skating using Rollerblades -00448958 04 n 01 roller_skating 0 002 @ 00448466 n 0000 ~ 00448872 n 0000 | skating on wheels -00449054 04 n 01 skateboarding 0 002 @ 00448466 n 0000 + 01937795 v 0101 | the sport of skating on a skateboard -00449168 04 n 01 speed_skating 0 001 @ 00448466 n 0000 | competitive skating on speed skates (usually around an oval course) -00449295 04 n 01 racing 0 008 @ 00523513 n 0000 + 01086103 v 0101 ~ 00449517 n 0000 ~ 00449695 n 0000 ~ 00449892 n 0000 ~ 00449977 n 0000 ~ 00450070 n 0000 -c 04336645 n 0000 | the sport of engaging in contests of speed -00449517 04 n 02 auto_racing 0 car_racing 0 005 @ 00449295 n 0000 -c 00295422 n 0000 -c 03061674 n 0000 -c 03870105 n 0000 -c 03949761 n 0000 | the sport of racing automobiles -00449695 04 n 01 boat_racing 0 002 @ 00449295 n 0000 ~ 00449796 n 0000 | the sport of racing boats -00449796 04 n 01 hydroplane_racing 0 001 @ 00449695 n 0000 | racing in high-speed motor boats -00449892 04 n 01 camel_racing 0 001 @ 00449295 n 0000 | the sport of racing camels -00449977 04 n 01 greyhound_racing 0 001 @ 00449295 n 0000 | the sport of racing greyhounds -00450070 04 n 01 horse_racing 0 005 @ 00449295 n 0000 -c 02333147 a 0000 ~ 00450230 n 0000 -c 07999584 n 0000 -c 13949275 n 0000 | the sport of racing horses -00450230 04 n 01 thoroughbred_racing 0 001 @ 00450070 n 0000 | the sport of racing thoroughbred horses -00450335 04 n 03 riding 1 horseback_riding 1 equitation 0 012 @ 00523513 n 0000 + 01958615 v 0201 ~ 00450700 n 0000 ~ 00450866 n 0000 -c 01958615 v 0000 -c 01958868 v 0000 -c 01959022 v 0000 -c 01959482 v 0000 -c 01959927 v 0000 -c 01960105 v 0000 -c 01960296 v 0000 -c 01960779 v 0000 | the sport of siting on the back of a horse while controlling its movements -00450700 04 n 01 equestrian_sport 0 005 @ 00450335 n 0000 ~ 00288000 n 0000 ~ 00450998 n 0000 ~ 00451186 n 0000 ~ 07461050 n 0000 | a sport that tests horsemanship -00450866 04 n 01 pony-trekking 0 002 @ 00450335 n 0000 ;r 08860123 n 0000 | a sport in which people ride across country on ponies -00450998 04 n 02 showjumping 0 stadium_jumping 0 002 @ 00450700 n 0000 #p 07461050 n 0000 | riding horses in competitions over set courses to demonstrate skill in jumping over obstacles -00451186 04 n 02 cross-country_riding 0 cross-country_jumping 0 002 @ 00450700 n 0000 #p 07461050 n 0000 | riding horses across country over obstructions to demonstrate horsemanship -00451370 04 n 01 cycling 0 006 @ 00523513 n 0000 + 01935476 v 0102 + 01936048 v 0103 ~ 00451563 n 0000 ~ 00451635 n 0000 ~ 00451768 n 0000 | the sport of traveling on a bicycle or motorcycle -00451563 04 n 01 bicycling 0 001 @ 00451370 n 0000 | riding a bicycle -00451635 04 n 01 motorcycling 1 002 @ 00451370 n 0000 + 01936048 v 0102 | riding a motorcycle; "motorcycling is a dangerous sport" -00451768 04 n 01 dune_cycling 0 001 @ 00451370 n 0000 | bicycling or motorcycling on sand dunes -00451866 04 n 01 blood_sport 0 004 @ 00523513 n 0000 ~ 00452034 n 0000 ~ 00452152 n 0000 ~ 00452293 n 0000 | sport that involves killing animals (especially hunting) -00452034 04 n 02 bullfighting 0 tauromachy 0 002 @ 00451866 n 0000 %p 15245244 n 0000 | the activity at a bullfight -00452152 04 n 01 cockfighting 0 002 @ 00451866 n 0000 -c 01420304 v 0000 | participation in the sport of matching gamecocks in a cockfight -00452293 04 n 02 hunt 1 hunting 1 018 @ 00433661 n 0000 @ 00451866 n 0000 + 01144657 v 0201 + 01143838 v 0201 + 02003601 v 0102 + 01144657 v 0101 + 01143838 v 0101 ~ 00452734 n 0000 ~ 00452864 n 0000 ~ 00453126 n 0000 ~ 00453313 n 0000 ~ 00453396 n 0000 ~ 00453478 n 0000 ~ 00453631 n 0000 -c 01479874 v 0000 -c 01480025 v 0000 -c 01480770 v 0000 -c 01481027 v 0000 | the pursuit and killing or capture of wild animals regarded as a sport -00452734 04 n 01 battue 0 001 @ 00452293 n 0000 | a hunt in which beaters force the game to flee in the direction of the hunter -00452864 04 n 01 beagling 0 001 @ 00452293 n 0000 | hunting rabbits with beagles -00452947 04 n 01 canned_hunt 0 001 @ 00622584 n 0000 | a hunt for animals that have been raised on game ranches until they are mature enough to be killed for trophy collections -00453126 04 n 01 coursing 0 002 @ 00452293 n 0000 + 01144873 v 0101 | hunting with dogs (usually greyhounds) that are trained to chase game (such as hares) by sight instead of by scent -00453313 04 n 02 deer_hunting 0 deer_hunt 0 001 @ 00452293 n 0000 | hunting deer -00453396 04 n 02 ducking 1 duck_hunting 0 001 @ 00452293 n 0000 | hunting ducks -00453478 04 n 02 fox_hunting 0 foxhunt 0 003 @ 00452293 n 0000 + 01145024 v 0201 + 01145024 v 0101 | mounted hunters follow hounds in pursuit of a fox -00453631 04 n 01 pigsticking 0 001 @ 00452293 n 0000 | the sport of hunting wild boar with spears -00453731 04 n 02 farming 1 land 0 002 @ 00582388 n 0000 + 02420232 v 0101 | agriculture considered as an occupation or way of life; "farming is a strenuous life"; "there's no work on the land any more" -00453935 04 n 02 fishing 0 sportfishing 0 005 @ 00433661 n 0000 + 01140794 v 0101 ~ 00454237 n 0000 ~ 00454624 n 0000 -c 07477413 n 0000 | the act of someone who fishes as a diversion -00454121 04 n 01 fishing 1 002 @ 01094725 n 0000 + 01140794 v 0101 | the occupation of catching fish for a living -00454237 04 n 01 angling 0 004 @ 00453935 n 0000 ~ 00454395 n 0000 ~ 00454493 n 0000 -c 03350602 n 0000 | fishing with a hook and line (and usually a pole) -00454395 04 n 01 fly-fishing 0 001 @ 00454237 n 0000 | angling with an artificial fly as a lure -00454493 04 n 02 troll 0 trolling 0 002 @ 00454237 n 0000 + 01141763 v 0101 | angling by drawing a baited line through the water -00454624 04 n 02 casting 2 cast 2 006 @ 00453935 n 0000 + 01507143 v 0103 ~ 00454855 n 0000 ~ 00454983 n 0000 ~ 00455076 n 0000 ~ 00455173 n 0000 | the act of throwing a fishing line out over the water by means of a rod and reel -00454855 04 n 01 bait_casting 0 001 @ 00454624 n 0000 | the single-handed rod casting of a relatively heavy (artificial) bait -00454983 04 n 01 fly_casting 0 001 @ 00454624 n 0000 | casting an artificial fly as a lure -00455076 04 n 01 overcast 0 001 @ 00454624 n 0000 | a cast that falls beyond the intended spot -00455173 04 n 02 surf_casting 0 surf_fishing 0 001 @ 00454624 n 0000 | casting (artificial) bait far out into the ocean (up to 200 yards) with the waves breaking around you -00455348 04 n 02 follow-up 1 followup 1 005 @ 00407535 n 0000 + 00486018 v 0202 + 00230276 v 0201 + 00486018 v 0102 + 00230276 v 0101 | an activity that continues something that has already begun or that repeats something that has already been done -00455599 04 n 01 game 0 026 @ 00407535 n 0000 -c 01630773 a 0000 -c 00166172 n 0000 -c 00456199 n 0000 -c 00457382 n 0000 ~ 00461611 n 0000 ~ 00461782 n 0000 ~ 00463116 n 0000 ~ 00463246 n 0000 ~ 00483935 n 0000 ~ 00488225 n 0000 ~ 00499066 n 0000 ~ 00501722 n 0000 ~ 00507673 n 0000 ~ 00509706 n 0000 -c 03413828 n 0000 -c 03537085 n 0000 -c 05163189 n 0000 -c 07343195 n 0000 -c 08408709 n 0000 -c 13596235 n 0000 -c 15256915 n 0000 -c 01081505 v 0000 -c 01081652 v 0000 -c 01144873 v 0000 -c 03152015 a 0000 | a contest with rules to determine a winner; "you need four people to play this game" -00456199 04 n 01 game 3 009 @ 07456188 n 0000 ;c 00455599 n 0000 ~ 00456690 n 0000 ~ 00456804 n 0000 ~ 00456899 n 0000 ~ 00460844 n 0000 ~ 00460951 n 0000 ~ 00461162 n 0000 ~ 00461294 n 0000 | a single play of a sport or other contest; "the game lasted two hours" -00456465 04 n 01 day_game 0 002 @ 00464651 n 0000 ! 00456563 n 0101 | a game played in daylight -00456563 04 n 01 night_game 0 002 @ 00464651 n 0000 ! 00456465 n 0101 | a game played under artificial illumination at night -00456690 04 n 02 away_game 0 road_game 0 002 @ 00456199 n 0000 ! 00456804 n 0101 | a game played away from home -00456804 04 n 01 home_game 0 002 @ 00456199 n 0000 ! 00456690 n 0101 | a game played at home -00456899 04 n 02 exhibition_game 0 practice_game 0 001 @ 00456199 n 0000 | a game whose outcome is not recorded in the season's standing -00457038 04 n 01 follow-on 0 001 @ 00457228 n 0000 | an immediate second innings forced on a cricket team scoring a prescribed number of runs fewer than its opponents in the first innings -00457228 04 n 01 innings 0 004 @ 00457382 n 0000 #p 00476389 n 0000 ;u 06295235 n 0000 ~ 00457038 n 0000 | the batting turn of a cricket player or team -00457382 04 n 02 turn 6 play 1 011 @ 00407535 n 0000 ;c 00455599 n 0000 ~ 00166172 n 0000 ~ 00241699 n 0000 ~ 00457228 n 0000 ~ 00457723 n 0000 ~ 00458286 n 0000 ~ 00458456 n 0000 ~ 01256270 n 0000 ~ 01259380 n 0000 ~ 01259594 n 0000 | (game) the activity of doing something in an agreed succession; "it is my turn"; "it is still my play" -00457723 04 n 01 attack 4 002 @ 00457382 n 0000 ~ 00458094 n 0000 | an offensive move in a sport or game; "they won the game with a 10-hit attack in the 9th inning" -00457890 04 n 02 opening 0 chess_opening 0 002 @ 01010458 n 0000 ;c 00503237 n 0000 | a recognized sequence of moves at the beginning of a game of chess; "he memorized all the important chess openings" -00458094 04 n 02 counterattack 1 counterplay 0 002 @ 00457723 n 0000 ;c 00503237 n 0000 | (chess) an attack that is intended to counter the opponent's advantage in another part of the board -00458286 04 n 01 down 0 002 @ 00457382 n 0000 ;c 00469651 n 0000 | (American football) a complete play to advance the football; "you have four downs to gain ten yards" -00458456 04 n 02 bat 0 at-bat 0 002 @ 00457382 n 0000 ;c 00471613 n 0000 | (baseball) a turn trying to get a hit; "he was at bat when it happened"; "he got four hits in four at-bats" -00458641 04 n 01 catch 2 001 @ 00430606 n 0000 | a cooperative game in which a ball is passed back and forth; "he played catch with his son in the backyard" -00458800 04 n 01 party_game 0 001 @ 00430606 n 0000 | a game to amuse guests at a party -00458890 04 n 02 computer_game 0 video_game 0 002 @ 00430606 n 0000 ~ 00459013 n 0000 | a game played against a computer -00459013 04 n 01 virtual_reality 0 001 @ 00458890 n 0000 | a hypothetical three-dimensional visual world created by a computer; user wears special goggles and fiber optic gloves etc., and can enter and move about in this world and interact with objects as if inside it -00459284 04 n 02 pinball 0 pinball_game 0 002 @ 00430606 n 0000 ~ 00459465 n 0000 | a game played on a sloping board; the object is to propel marbles against pins or into pockets -00459465 04 n 01 pachinko 0 001 @ 00459284 n 0000 | a Japanese pinball game played on a vertical board -00459570 04 n 01 guessing_game 0 002 @ 00430606 n 0000 ~ 00459727 n 0000 | a game in which participants compete to identify some obscurely indicated thing -00459727 04 n 01 charades 0 002 @ 00459570 n 0000 %p 06288947 n 0000 | player acts out a phrase for others to guess -00459845 04 n 01 ducks_and_drakes 0 001 @ 00430606 n 0000 | a game in which a flat stone is bounced along the surface of calm water -00459979 04 n 01 mind_game 1 001 @ 00430606 n 0000 | any game designed to exercise the intellect -00460078 04 n 02 paper_chase 0 hare_and_hounds 0 001 @ 00430606 n 0000 | an outdoor game; one group of players (the hares) start off on a long run scattering bits of paper (the scent) and pursuers (the hounds) try to catch them before they reach a designated spot -00460344 04 n 03 ring-around-the-rosy 0 ring-around-a-rosy 0 ring-a-rosy 0 001 @ 00430606 n 0000 | a children's game in which the players dance around in a circle and at a given signal all squat -00460541 04 n 01 prisoner's_base 0 001 @ 00430606 n 0000 | a children's game; two teams capture opposing players by tagging them and taking them to their own base -00460706 04 n 01 treasure_hunt 0 001 @ 00430606 n 0000 | a game in which players try to find hidden articles by using a series of clues -00460844 04 n 01 nightcap 0 002 @ 00456199 n 0000 #p 00460951 n 0000 | the final game of a double header -00460951 04 n 03 twin_bill 0 doubleheader 0 double_feature 0 002 @ 00456199 n 0000 %p 00460844 n 0000 | two games instead of one (especially in baseball when the same two teams play two games on the same day) -00461162 04 n 01 playoff_game 0 002 @ 00456199 n 0000 #p 07465290 n 0000 | one game in the series of games constituting a playoff -00461294 04 n 01 cup_tie 0 001 @ 00456199 n 0000 | an eliminating game between teams in a cup competition -00461402 04 n 01 war_game 0 002 @ 00899049 n 0000 ;c 08199025 n 0000 | a simulation of a military operation intended to train military commanders or to demonstrate a situation or to test a proposed strategy -00461611 04 n 01 curling 1 003 @ 00455599 n 0000 ;r 08890097 n 0000 + 01074074 v 0101 | a game played on ice in which heavy stones with handles are slid toward a target -00461782 04 n 01 bowling 0 010 @ 00455599 n 0000 %p 00462116 n 0000 ~ 00462241 n 0000 ~ 00462383 n 0000 ~ 00462557 n 0000 ~ 00462686 n 0000 ~ 00462804 n 0000 ~ 00462997 n 0000 -c 13911660 n 0000 -c 01084588 v 0000 | a game in which balls are rolled at an object or group of objects with the aim of knocking them over or moving them -00462116 04 n 01 frame 1 002 @ 05867413 n 0000 #p 00461782 n 0000 | one of the ten divisions into which bowling is divided -00462241 04 n 02 tenpins 0 tenpin_bowling 0 002 @ 00461782 n 0000 -c 04282664 n 0000 | bowling down an alley at a target of ten wooden pins -00462383 04 n 02 ninepins 0 skittles 0 001 @ 00461782 n 0000 | a bowling game that is played by rolling a bowling ball down a bowling alley at a target of nine wooden pins -00462557 04 n 01 duckpins 0 001 @ 00461782 n 0000 | a bowling game using a pin smaller than a tenpin but proportionately wider -00462686 04 n 02 candlepins 0 candlepin_bowling 0 001 @ 00461782 n 0000 | a bowling game using slender bowling pins -00462804 04 n 02 lawn_bowling 0 bowls 0 003 @ 00461782 n 0000 %p 02881546 n 0000 %p 03589672 n 0000 | a bowling game played on a level lawn with biased wooden balls that are rolled at a jack -00462997 04 n 03 bocce 0 bocci 0 boccie 0 001 @ 00461782 n 0000 | Italian bowling played on a long narrow dirt court -00463116 04 n 01 pall-mall 0 001 @ 00455599 n 0000 | a 17th century game; a wooden ball was driven along an alley with a mallet -00463246 04 n 01 athletic_game 0 012 @ 00523513 n 0000 @ 00455599 n 0000 ~ 00463543 n 0000 ~ 00464277 n 0000 ~ 00464478 n 0000 ~ 00464651 n 0000 ~ 00479076 n 0000 %p 00556313 n 0000 %p 15233778 n 0000 %p 15233989 n 0000 %p 15256915 n 0000 %p 15274305 n 0000 | a game involving athletic activity -00463543 04 n 03 ice_hockey 0 hockey 1 hockey_game 0 015 @ 00463246 n 0000 @ 00433458 n 0000 -c 00190579 n 0000 %p 00239024 n 0000 -c 00239024 n 0000 -c 00558008 n 0000 -c 00558181 n 0000 -c 00558396 n 0000 %p 00562935 n 0000 %p 01264795 n 0000 -c 03907908 n 0000 -c 04318131 n 0000 -c 05163582 n 0000 -c 09904708 n 0000 -c 15258281 n 0000 | a game played on an ice rink by two opposing teams of six skaters each who try to knock a flat round puck into the opponents' goal with angled sticks -00464037 04 n 04 goalkeeper 0 goalie 0 goaltender 0 netkeeper 0 001 @ 00722479 n 0000 | the defensive position on an ice hockey or soccer or lacrosse team who stands in front of the goal and tries to prevent opposing players from scoring -00464277 04 n 01 tetherball 0 001 @ 00463246 n 0000 | a game with two players who use rackets to strike a ball that is tethered to the top of a pole; the object is to wrap the string around the pole -00464478 04 n 01 water_polo 0 001 @ 00463246 n 0000 | a game played in a swimming pool by two teams of swimmers who try to throw an inflated ball into the opponents' goal -00464651 04 n 01 outdoor_game 0 009 @ 00463246 n 0000 ~ 00456465 n 0000 ~ 00456563 n 0000 ~ 00464894 n 0000 ~ 00466880 n 0000 ~ 00467122 n 0000 ~ 00467320 n 0000 ~ 00467536 n 0000 ~ 00467719 n 0000 | an athletic game that is played outdoors -00464894 04 n 02 golf 0 golf_game 0 064 @ 00464651 n 0000 + 01146793 v 0101 -c 02490949 a 0000 -c 03070230 a 0000 ~ 00466273 n 0000 ~ 00466377 n 0000 ~ 00466524 n 0000 ~ 00466630 n 0000 ~ 00466712 n 0000 ~ 00573106 n 0000 -c 00573268 n 0000 -c 00573530 n 0000 -c 03244775 n 0000 -c 03446268 n 0000 -c 03446528 n 0000 -c 03446832 n 0000 -c 03447224 n 0000 -c 03511786 n 0000 -c 03970363 n 0000 -c 04444345 n 0000 -c 04569822 n 0000 -c 05022902 n 0000 -c 05069447 n 0000 -c 05082648 n 0000 -c 05163401 n 0000 -c 06507941 n 0000 -c 08496334 n 0000 -c 09267854 n 0000 -c 09268007 n 0000 -c 10146682 n 0000 -c 10304914 n 0000 -c 13595094 n 0000 -c 13595276 n 0000 -c 13595414 n 0000 -c 13595699 n 0000 -c 13595968 n 0000 -c 13596106 n 0000 -c 13596756 n 0000 -c 00464687 v 0000 -c 01084170 v 0000 -c 01084331 v 0000 -c 01085130 v 0000 -c 01096860 v 0000 -c 01113134 v 0000 -c 01113264 v 0000 -c 01123415 v 0000 -c 01402305 v 0000 -c 01402447 v 0000 -c 01403540 v 0000 -c 01403785 v 0000 -c 01403987 v 0000 -c 01404138 v 0000 -c 01407904 v 0000 -c 01408153 v 0000 -c 01408958 v 0000 -c 01409177 v 0000 -c 01410946 v 0000 -c 01417257 v 0000 -c 01499692 v 0000 -c 01598140 v 0000 -c 01598507 v 0000 -c 01598637 v 0000 -c 01598785 v 0000 -c 01598921 v 0000 | a game played on a large open course with 9 or 18 holes; the object is use as few strokes as possible in playing all the holes -00466273 04 n 01 professional_golf 0 002 @ 00464894 n 0000 @ 00433216 n 0000 | playing golf for money -00466377 04 n 02 round_of_golf 0 round 3 001 @ 00464894 n 0000 | the activity of playing 18 holes of golf; "a round of golf takes about 4 hours" -00466524 04 n 02 medal_play 0 stroke_play 0 001 @ 00464894 n 0000 | golf scoring by total strokes taken -00466630 04 n 01 match_play 0 001 @ 00464894 n 0000 | golf scoring by holes won -00466712 04 n 01 miniature_golf 0 001 @ 00464894 n 0000 | a novelty version of golf played with golf balls and putters on a miniature course featuring many obstacles -00466880 04 n 01 croquet 0 004 @ 00464651 n 0000 + 01154669 v 0101 -c 03134853 n 0000 -c 01600873 v 0000 | a game in which players hit a wooden ball through a series of hoops; the winner is the first to traverse all the hoops and hit a peg -00467122 04 n 01 paintball 0 001 @ 00464651 n 0000 | a game that simulates military combat; players on one team try to eliminate players on the opposing team by shooting capsules of paint at them -00467320 04 n 02 quoits 0 horseshoes 0 003 @ 00464651 n 0000 -c 00105624 n 0000 -c 00106726 n 0000 | a game in which iron rings (or open iron rings) are thrown at a stake in the ground in the hope of encircling it -00467536 04 n 02 shuffleboard 0 shovelboard 0 001 @ 00464651 n 0000 | a game in which players use long sticks to shove wooden disks onto the scoring area marked on a smooth surface -00467719 04 n 01 field_game 0 010 @ 00464651 n 0000 ~ 00467995 n 0000 ~ 00468480 n 0000 ~ 00470830 n 0000 ~ 00471437 n 0000 ~ 00476389 n 0000 ~ 00477392 n 0000 ~ 00477639 n 0000 ~ 00477827 n 0000 ~ 00477986 n 0000 | an outdoor game played on a field of specified dimensions -00467995 04 n 02 field_hockey 0 hockey 0 006 @ 00467719 n 0000 ~ 00468299 n 0000 -c 03443005 n 0000 -c 03820318 n 0000 -c 04318131 n 0000 -c 10782471 n 0000 | a game resembling ice hockey that is played on an open field; two opposing teams use curved sticks try to drive a ball into the opponents' net -00468299 04 n 02 shinny 0 shinney 0 001 @ 00467995 n 0000 | a simple version of hockey played by children on the streets (or on ice or on a field) using a ball or can as the puck -00468480 04 n 02 football 0 football_game 0 052 @ 00467719 n 0000 @ 00433458 n 0000 + 10101634 n 0102 -c 00290337 a 0000 -c 00522240 a 0000 -c 00525315 a 0000 -c 01241757 a 0000 -c 01241927 a 0000 -c 02226756 a 0000 -c 00136984 n 0000 -c 00137279 n 0000 -c 00137877 n 0000 -c 00172217 n 0000 -c 00188341 n 0000 -c 00241507 n 0000 ~ 00469651 n 0000 ~ 00470554 n 0000 -c 00470554 n 0000 ~ 00470966 n 0000 ~ 00478262 n 0000 -c 04611795 n 0000 -c 08571275 n 0000 -c 09830194 n 0000 -c 09834378 n 0000 -c 09904321 n 0000 -c 10056398 n 0000 -c 10115430 n 0000 -c 10157128 n 0000 -c 10404242 n 0000 -c 10436851 n 0000 -c 10493199 n 0000 -c 10498816 n 0000 -c 10543161 n 0000 -c 10544067 n 0000 -c 10637483 n 0000 -c 10689306 n 0000 -c 10710778 n 0000 -c 10782248 n 0000 -c 10782471 n 0000 %p 15257829 n 0000 -c 15258450 n 0000 -c 01073953 v 0000 -c 01076250 v 0000 -c 01076370 v 0000 -c 01112837 v 0000 -c 01112979 v 0000 -c 01117484 v 0000 -c 01150164 v 0000 -c 01370843 v 0000 -c 01372026 v 0000 -c 01406684 v 0000 -c 01433159 v 0000 | any of various games played with a ball (round or oval) in which two teams try to kick or carry or propel the ball into each other's goal -00469651 04 n 02 American_football 0 American_football_game 0 033 @ 00468480 n 0000 -c 00075912 n 0000 -c 00120943 n 0000 -c 00139544 n 0000 -c 00139758 n 0000 -c 00139919 n 0000 -c 00171050 n 0000 -c 00188449 n 0000 -c 00188620 n 0000 -c 00188766 n 0000 -c 00188934 n 0000 -c 00189257 n 0000 -c 00458286 n 0000 ~ 00470682 n 0000 -c 00557419 n 0000 -c 00558630 n 0000 -c 00558883 n 0000 -c 00559329 n 0000 -c 00559555 n 0000 -c 00559724 n 0000 -c 00559916 n 0000 -c 00560293 n 0000 -c 00560529 n 0000 -c 00560866 n 0000 -c 00561078 n 0000 -c 00561985 n 0000 -c 00562643 n 0000 -c 00562823 n 0000 -c 00725775 n 0000 -c 00726100 n 0000 -c 00898127 n 0000 -c 00976085 n 0000 -c 00976270 n 0000 | a game played by two teams of 11 players on a rectangular field 100 yards long; teams try to get possession of the ball and advance it across the opponents goal line in a series of (running or passing) plays -00470554 04 n 01 professional_football 0 003 @ 00468480 n 0000 @ 00433216 n 0000 ;c 00468480 n 0000 | football played for pay -00470682 04 n 01 touch_football 0 001 @ 00469651 n 0000 | a version of American football in which the ball carrier is touched rather than tackled -00470830 04 n 01 hurling 0 001 @ 00467719 n 0000 | a traditional Irish game resembling hockey; played by two teams of 15 players each -00470966 04 n 03 rugby 0 rugby_football 0 rugger 0 011 @ 00468480 n 0000 ;r 08860123 n 0000 -c 00107137 n 0000 -c 00136876 n 0000 -c 00242146 n 0000 %p 00471277 n 0000 -c 00471277 n 0000 -c 10184505 n 0000 -c 10782471 n 0000 -c 01080883 v 0000 -c 01148101 v 0000 | a form of football played with an oval ball -00471277 04 n 01 knock_on 0 003 @ 00557588 n 0000 #p 00470966 n 0000 ;c 00470966 n 0000 | (rugby) knocking the ball forward while trying to catch it (a foul) -00471437 04 n 02 ball_game 0 ballgame 0 004 @ 00467719 n 0000 ;c 00471613 n 0000 ~ 00471613 n 0000 -c 02104503 v 0000 | a field game played with a ball (especially baseball) -00471613 04 n 02 baseball 0 baseball_game 0 139 @ 00471437 n 0000 -c 00023655 a 0000 -c 00955626 a 0000 -c 00955802 a 0000 -c 00955915 a 0000 -c 02061307 a 0000 -c 02061487 a 0000 -c 02226756 a 0000 -c 02332421 a 0000 -c 02332956 a 0000 -c 02334717 a 0000 -c 00249736 r 0000 -c 00043902 n 0000 -c 00071864 n 0000 -c 00072068 n 0000 -c 00075912 n 0000 -c 00106272 n 0000 -c 00108181 n 0000 -c 00126584 n 0000 -c 00126721 n 0000 -c 00126886 n 0000 -c 00127151 n 0000 -c 00127286 n 0000 -c 00127866 n 0000 -c 00128091 n 0000 -c 00128477 n 0000 -c 00128638 n 0000 -c 00128867 n 0000 -c 00128976 n 0000 -c 00129089 n 0000 -c 00129527 n 0000 -c 00129743 n 0000 -c 00130093 n 0000 -c 00130347 n 0000 -c 00130846 n 0000 -c 00131090 n 0000 -c 00131608 n 0000 -c 00132219 n 0000 -c 00140264 n 0000 -c 00145024 n 0000 -c 00150097 n 0000 -c 00150228 n 0000 -c 00458456 n 0000 -c 00471437 n 0000 ~ 00474568 n 0000 ~ 00474657 n 0000 ~ 00474769 n 0000 ~ 00474881 n 0000 ~ 00475014 n 0000 ~ 00475142 n 0000 ~ 00475273 n 0000 ~ 00475403 n 0000 ~ 00475535 n 0000 ~ 00475661 n 0000 ~ 00475787 n 0000 ~ 00476140 n 0000 ~ 00476235 n 0000 -c 00558008 n 0000 -c 00564177 n 0000 ~ 00725152 n 0000 -c 02771547 n 0000 -c 02782778 n 0000 -c 02799593 n 0000 -c 02799897 n 0000 -c 03528901 n 0000 -c 03792334 n 0000 -c 06486161 n 0000 -c 06486405 n 0000 -c 07261300 n 0000 -c 07275823 n 0000 -c 08079151 n 0000 -c 08231499 n 0000 -c 08231678 n 0000 -c 08592165 n 0000 -c 08690974 n 0000 -c 09835506 n 0000 -c 09841515 n 0000 -c 09841696 n 0000 -c 09843443 n 0000 -c 09843956 n 0000 -c 09844221 n 0000 -c 09901143 n 0000 -c 09930257 n 0000 -c 09932098 n 0000 -c 10092488 n 0000 -c 10205457 n 0000 -c 10386984 n 0000 -c 10387324 n 0000 -c 10434160 n 0000 -c 10435988 n 0000 -c 10564541 n 0000 -c 10568200 n 0000 -c 10592986 n 0000 -c 10649574 n 0000 -c 10708976 n 0000 -c 13817872 n 0000 -c 13818143 n 0000 -c 13818354 n 0000 -c 13949080 n 0000 -c 15255804 n 0000 -c 01074914 v 0000 -c 01075327 v 0000 -c 01076130 v 0000 -c 01082023 v 0000 -c 01082454 v 0000 -c 01104509 v 0000 -c 01111458 v 0000 -c 01113473 v 0000 -c 01113620 v 0000 -c 01140654 v 0000 -c 01147855 v 0000 -c 01154175 v 0000 -c 01154382 v 0000 -c 01402173 v 0000 -c 01402765 v 0000 -c 01404538 v 0000 -c 01404913 v 0000 -c 01406356 v 0000 -c 01406512 v 0000 -c 01407059 v 0000 -c 01407568 v 0000 -c 01408297 v 0000 -c 01409374 v 0000 -c 01409523 v 0000 -c 01409642 v 0000 -c 01409763 v 0000 -c 01409888 v 0000 -c 01413173 v 0000 -c 01413436 v 0000 -c 01413561 v 0000 -c 01413719 v 0000 -c 01509280 v 0000 -c 01512921 v 0000 -c 01600600 v 0000 -c 01600759 v 0000 -c 01615457 v 0000 -c 01643297 v 0000 -c 01927211 v 0000 -c 02087979 v 0000 | a ball game played with a bat and ball between two teams of nine players; teams take turns at bat trying to score runs; "he played baseball in high school"; "there was a baseball game on every empty lot"; "there was a desire for National League ball in the area"; "play ball!" -00474568 04 n 01 ball 1 002 @ 00471613 n 0000 ~ 00131347 n 0000 | the game of baseball -00474657 04 n 01 professional_baseball 0 002 @ 00471613 n 0000 @ 00433216 n 0000 | playing baseball for money -00474769 04 n 01 hardball 0 002 @ 00471613 n 0000 ! 00475787 n 0101 | baseball as distinguished from softball -00474881 04 n 01 perfect_game 0 001 @ 00471613 n 0000 | a game in which a pitcher does not allow any opposing player to reach base -00475014 04 n 02 no-hit_game 0 no-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team no hits -00475142 04 n 02 one-hitter 0 1-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team only one hit -00475273 04 n 02 two-hitter 0 2-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team only 2 hits -00475403 04 n 02 three-hitter 0 3-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team only 3 hits -00475535 04 n 02 four-hitter 0 4-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team 4 hits -00475661 04 n 02 five-hitter 0 5-hitter 0 001 @ 00471613 n 0000 | a game in which a pitcher allows the opposing team 5 hits -00475787 04 n 02 softball 0 softball_game 0 010 @ 00471613 n 0000 ! 00474769 n 0101 -c 09901143 n 0000 -c 10092488 n 0000 -c 10205457 n 0000 -c 10386984 n 0000 -c 10434160 n 0000 -c 10435988 n 0000 -c 10568200 n 0000 -c 10708976 n 0000 | a game closely resembling baseball that is played on a smaller diamond and with a ball that is larger and softer -00476140 04 n 01 rounders 0 001 @ 00471613 n 0000 | an English ball game similar to baseball -00476235 04 n 02 stickball 0 stickball_game 0 001 @ 00471613 n 0000 | a form of baseball played in the streets with a rubber ball and broomstick handle -00476389 04 n 01 cricket 0 014 @ 00467719 n 0000 + 01076017 v 0101 -c 02470952 a 0000 -c 00104976 n 0000 %p 00128324 n 0000 -c 00190579 n 0000 %p 00457228 n 0000 -c 03132261 n 0000 -c 04346003 n 0000 -c 13595844 n 0000 -c 15258694 n 0000 -c 15258945 n 0000 -c 01408489 v 0000 -c 01616738 v 0000 | a game played with a ball and bat by two teams of 11 players; teams take turns trying to score runs -00476788 04 n 01 run-up 0 004 @ 00280853 n 0000 #p 00041740 n 0000 #p 07469609 n 0000 #p 07469772 n 0000 | the approach run during which an athlete gathers speed -00476952 04 n 01 Chinaman 0 001 @ 00104976 n 0000 | a ball bowled by a left-handed bowler to a right-handed batsman that spins from off to leg -00477097 04 n 04 googly 0 wrong_'un 0 bosie 0 bosie_ball 0 001 @ 00104976 n 0000 | a cricket ball bowled as if to break one way that actually breaks in the opposite way -00477268 04 n 01 no_ball 0 001 @ 00104976 n 0000 | unlawfully delivered ball in cricket; "the umpire called it a no ball" -00477392 04 n 01 lacrosse 0 003 @ 00467719 n 0000 -c 08571275 n 0000 -c 01076514 v 0000 | a game invented by American Indians; now played by two teams who use long-handled rackets to catch and carry and throw the ball toward the opponents' goal -00477639 04 n 01 polo 0 003 @ 00467719 n 0000 -c 04318131 n 0000 -c 15255641 n 0000 | a game similar to field hockey but played on horseback using long-handled mallets and a wooden ball -00477827 04 n 01 pushball 0 001 @ 00467719 n 0000 | a game using a leather ball six feet in diameter; the two side try to push it across the opponents' goal -00477986 04 n 01 ultimate_frisbee 0 001 @ 00467719 n 0000 | a game between two teams whose players try to toss a Frisbee to one another until they cross the opponents goal; possession changes hands when the Frisbee is intercepted or touches the ground or goes out of bounds -00478262 04 n 02 soccer 0 association_football 0 012 @ 00468480 n 0000 -c 00131485 n 0000 -c 00136691 n 0000 -c 00137279 n 0000 -c 00137534 n 0000 -c 00187499 n 0000 -c 00478647 n 0000 %p 01264933 n 0000 -c 03443005 n 0000 -c 03820318 n 0000 -c 07467027 n 0000 -c 10782471 n 0000 | a football game in which two teams of 11 players try to kick or head a ball into the opponents' goal -00478647 04 n 02 dribble 0 dribbling 0 006 @ 00045250 n 0000 ;c 00480993 n 0000 ;c 00478262 n 0000 + 01408760 v 0201 + 01408760 v 0101 ~ 00478855 n 0000 | the propulsion of a ball by repeated taps or kicks -00478855 04 n 01 double_dribble 0 002 @ 00478647 n 0000 ;c 00480993 n 0000 | an illegal dribble in basketball (the player uses both hands to dribble or the player starts to dribble a second time after coming to a stop) -00479076 04 n 01 court_game 0 016 @ 00463246 n 0000 ~ 00479440 n 0000 ~ 00479616 n 0000 ~ 00479734 n 0000 ~ 00479887 n 0000 ~ 00480211 n 0000 ~ 00480366 n 0000 ~ 00480508 n 0000 ~ 00480993 n 0000 ~ 00481938 n 0000 ~ 00482122 n 0000 ~ 00482298 n 0000 ~ 00483848 n 0000 -c 10582604 n 0000 -c 01075498 v 0000 -c 01077568 v 0000 | an athletic game played on a court -00479440 04 n 01 handball 0 001 @ 00479076 n 0000 | a game played in a walled court or against a single wall by two or four players who strike a rubber ball with their hands -00479616 04 n 01 racquetball 0 001 @ 00479076 n 0000 | a game played on a handball court with short-handled rackets -00479734 04 n 01 fives 0 002 @ 00479076 n 0000 ;r 08860123 n 0000 | a game resembling handball; played on a court with a front wall and two side walls -00479887 04 n 03 squash 0 squash_racquets 0 squash_rackets 0 008 @ 00479076 n 0000 -c 00565809 n 0000 -c 00567044 n 0000 -c 00567418 n 0000 -c 00567685 n 0000 -c 00568430 n 0000 -c 00568813 n 0000 -c 01166517 n 0000 | a game played in an enclosed court by two or four players who strike the ball with long-handled rackets -00480211 04 n 02 volleyball 0 volleyball_game 0 001 @ 00479076 n 0000 | a game in which two teams hit an inflated ball over a high net using their hands -00480366 04 n 02 jai_alai 0 pelota 0 001 @ 00479076 n 0000 | a Basque or Spanish game played in a court with a ball and a wickerwork racket -00480508 04 n 01 badminton 0 013 @ 00479076 n 0000 ~ 00480885 n 0000 ~ 00483409 n 0000 ~ 00483605 n 0000 -c 00565809 n 0000 -c 00567418 n 0000 -c 00567685 n 0000 -c 00568430 n 0000 -c 00568813 n 0000 -c 01166517 n 0000 -c 02772435 n 0000 -c 02772554 n 0000 -c 02772700 n 0000 | a game played on a court with light long-handled rackets used to volley a shuttlecock over a net -00480885 04 n 02 battledore 0 battledore_and_shuttlecock 0 001 @ 00480508 n 0000 | an ancient racket game -00480993 04 n 03 basketball 0 basketball_game 0 hoops 0 025 @ 00479076 n 0000 -c 02226756 a 0000 %p 00110057 n 0000 -c 00111503 n 0000 %p 00140112 n 0000 -c 00241245 n 0000 -c 00294577 n 0000 -c 00478647 n 0000 -c 00478855 n 0000 %p 00481666 n 0000 ~ 00481803 n 0000 -c 00558008 n 0000 %p 00563494 n 0000 -c 00771356 n 0000 -c 02768226 n 0000 -c 02802544 n 0000 -c 02802721 n 0000 -c 03528622 n 0000 -c 04092447 n 0000 -c 08590909 n 0000 -c 09904556 n 0000 %p 15257829 n 0000 -c 01148199 v 0000 -c 01597662 v 0000 -c 01597832 v 0000 | a game played on a court by two opposing teams of 5 players; points are scored by throwing the ball through an elevated horizontal hoop -00481666 04 n 02 tip-off 0 tap-off 0 002 @ 00241245 n 0000 #p 00480993 n 0000 | the act of starting a basketball game with a jump ball -00481803 04 n 01 professional_basketball 0 003 @ 00480993 n 0000 @ 00433216 n 0000 -c 15258450 n 0000 | playing basketball for money -00481938 04 n 01 deck_tennis 0 001 @ 00479076 n 0000 | game played mainly on board ocean liners; players toss a ring back and forth over a net that is stretched across a small court -00482122 04 n 01 netball 0 001 @ 00479076 n 0000 | a team game that resembles basketball; a soccer ball is to be thrown so that it passes through a ring on the top of a post -00482298 04 n 02 tennis 0 lawn_tennis 0 023 @ 00479076 n 0000 -c 00071546 n 0000 %p 00071700 n 0000 -c 00482892 n 0000 ~ 00483205 n 0000 ~ 00483313 n 0000 ~ 00483508 n 0000 ~ 00483705 n 0000 -c 00565809 n 0000 %p 00566298 n 0000 -c 00567044 n 0000 -c 00567418 n 0000 -c 00567685 n 0000 -c 00568430 n 0000 -c 00568813 n 0000 -c 01166517 n 0000 %p 07475242 n 0000 %p 13610426 n 0000 %p 13610540 n 0000 -c 13610669 n 0000 -c 15256567 n 0000 -c 01077759 v 0000 -c 01156706 v 0000 | a game played with rackets by two or four players who hit a ball back and forth over a net that divides the court -00482892 04 n 02 break 7 break_of_serve 0 002 @ 00186634 n 0000 ;c 00482298 n 0000 | (tennis) a score consisting of winning a game when your opponent was serving; "he was up two breaks in the second set" -00483098 04 n 01 equalizer 0 002 @ 00186634 n 0000 + 01115411 v 0101 | a score that makes the match even -00483205 04 n 01 professional_tennis 0 002 @ 00482298 n 0000 @ 00433216 n 0000 | playing tennis for money -00483313 04 n 01 singles 0 001 @ 00482298 n 0000 | tennis played with one person on each side -00483409 04 n 01 singles 1 001 @ 00480508 n 0000 | badminton played with one person on each side -00483508 04 n 01 doubles 0 001 @ 00482298 n 0000 | tennis played with two players on each side -00483605 04 n 01 doubles 1 001 @ 00480508 n 0000 | badminton played with two players on each side -00483705 04 n 03 royal_tennis 0 real_tennis 0 court_tennis 0 001 @ 00482298 n 0000 | an ancient form of tennis played in a four-walled court -00483848 04 n 01 pallone 0 001 @ 00479076 n 0000 | an Italian game similar to tennis -00483935 04 n 01 child's_game 0 020 @ 00455599 n 0000 ~ 00484362 n 0000 ~ 00484532 n 0000 ~ 00484802 n 0000 ~ 00484910 n 0000 ~ 00485081 n 0000 ~ 00485262 n 0000 ~ 00485450 n 0000 ~ 00485632 n 0000 ~ 00485998 n 0000 ~ 00486358 n 0000 ~ 00486490 n 0000 ~ 00486670 n 0000 ~ 00487072 n 0000 ~ 00487228 n 0000 ~ 00487326 n 0000 ~ 00487453 n 0000 ~ 00487617 n 0000 ~ 00487874 n 0000 ~ 00488051 n 0000 | a game enjoyed by children -00484362 04 n 02 blindman's_bluff 0 blindman's_buff 0 001 @ 00483935 n 0000 | a children's game in which a blindfolded player tries to catch and identify other players -00484532 04 n 02 cat_and_mouse 0 cat_and_rat 0 001 @ 00483935 n 0000 | a game for children in which the players form a circle and join hands; they raise their hands to let a player inside the circle or lower their hands to bar a second player who is chasing the first -00484802 04 n 01 cat's_cradle 0 001 @ 00483935 n 0000 | a game played with string looped over the fingers -00484910 04 n 02 hide-and-seek 0 hide_and_go_seek 0 001 @ 00483935 n 0000 | a game in which a child covers his eyes while the other players hide then tries to find them -00485081 04 n 01 hopscotch 0 001 @ 00483935 n 0000 | a game in which a child tosses a stone into an area drawn on the ground and then hops through it and back to regain the stone -00485262 04 n 03 jacks 0 jackstones 0 knucklebones 0 001 @ 00483935 n 0000 | a game in which jackstones are thrown and picked up in various groups between bounces of a small rubber ball -00485450 04 n 02 jackstraws 0 spillikins 0 001 @ 00483935 n 0000 | a game in which players try to pick each jackstraw (or spillikin) off of a pile without moving any of the others -00485632 04 n 01 jump_rope 0 003 @ 00483935 n 0000 @ 00435563 n 0000 ~ 00485815 n 0000 | a child's game or a cardiopulmonary exercise in which the player jumps over a swinging rope -00485815 04 n 01 double_Dutch 0 001 @ 00485632 n 0000 | the difficult version of jump rope in which players jump over two ropes that are swung in a crisscross manner by two turners -00485998 04 n 01 leapfrog 0 002 @ 00483935 n 0000 + 01965911 v 0101 | a game in which one child bends down and another leaps over -00486130 04 n 01 leapfrog 1 001 @ 00282050 n 0000 | advancing as if in the child's game, by leaping over obstacles or competitors; "the company still believes the chip is a leapfrog in integration and will pay huge dividends" -00486358 04 n 01 marbles 0 001 @ 00483935 n 0000 | a children's game played with little balls made of a hard substance (as glass) -00486490 04 n 02 mumblety-peg 0 mumble-the-peg 0 001 @ 00483935 n 0000 | a game in which players throw or flip a jackknife in various ways so that the knife sticks in the ground -00486670 04 n 02 musical_chairs 0 going_to_Jerusalem 0 001 @ 00483935 n 0000 | a child's game in which players march to music around a group of chairs that contains one chair less than the number of players; when the music abruptly stops the players scramble to sit and the player who does not find a chair is eliminated; then a chair is removed and the march resumes until only the winner is seated -00487072 04 n 02 peekaboo 0 bopeep 0 001 @ 00483935 n 0000 | a game played with young children; you hide your face and suddenly reveal it as you say boo! -00487228 04 n 01 pillow_fight 0 001 @ 00483935 n 0000 | a child's game of fighting with pillows -00487326 04 n 01 post_office 0 001 @ 00483935 n 0000 | a children's game in which kisses are exchanged for pretended letters -00487453 04 n 01 spin_the_bottle 0 001 @ 00483935 n 0000 | a game in which a player spins a bottle and kisses the person that it points to when it stops spinning -00487617 04 n 02 spin_the_plate 0 spin_the_platter 0 001 @ 00483935 n 0000 | a game in which something round (as a plate) is spun on edge and the name of a player is called; the named player must catch the spinning object before it falls or pay a forfeit -00487874 04 n 01 tag 1 003 @ 00483935 n 0000 + 02001858 v 0105 -c 00145024 n 0000 | a game in which one child chases the others; the one who is caught becomes the next chaser -00488051 04 n 01 tiddlywinks 0 001 @ 00483935 n 0000 | a game in which players try to flip plastic disks into a cup by pressing them on the side sharply with a larger disk -00488225 04 n 02 card_game 0 cards 0 063 @ 00455599 n 0000 -c 02731334 a 0000 %p 00091503 n 0000 -c 00091503 n 0000 %p 00340463 n 0000 -c 00340662 n 0000 %p 00489475 n 0000 ~ 00489730 n 0000 ~ 00489933 n 0000 ~ 00490155 n 0000 ~ 00490350 n 0000 ~ 00490569 n 0000 ~ 00491713 n 0000 ~ 00491901 n 0000 ~ 00492195 n 0000 ~ 00492309 n 0000 ~ 00492497 n 0000 ~ 00492724 n 0000 ~ 00492871 n 0000 ~ 00493031 n 0000 ~ 00493308 n 0000 ~ 00493742 n 0000 ~ 00493858 n 0000 ~ 00494100 n 0000 ~ 00494293 n 0000 ~ 00494406 n 0000 ~ 00494768 n 0000 ~ 00495103 n 0000 ~ 00495331 n 0000 ~ 00495524 n 0000 ~ 00496167 n 0000 %p 00803394 n 0000 %p 01085337 n 0000 -c 01085337 n 0000 %p 01256270 n 0000 %p 01259211 n 0000 -c 01259380 n 0000 -c 01259594 n 0000 -c 04200000 n 0000 -c 04490859 n 0000 %p 07192511 n 0000 -c 07954441 n 0000 -c 01074357 v 0000 -c 01075612 v 0000 -c 01076953 v 0000 -c 01078235 v 0000 -c 01078426 v 0000 -c 01078573 v 0000 -c 01078689 v 0000 -c 01103693 v 0000 -c 01139380 v 0000 -c 01139496 v 0000 -c 01139756 v 0000 -c 01149868 v 0000 -c 01150010 v 0000 -c 01156291 v 0000 -c 01156568 v 0000 -c 01418959 v 0000 -c 01419160 v 0000 -c 02246456 v 0000 -c 02246686 v 0000 -c 02246908 v 0000 -c 02300060 v 0000 | a game played with playing cards -00489475 04 n 02 cut 9 cutting 9 003 @ 00385791 n 0000 #p 00488225 n 0000 + 01555437 v 0201 | the division of a deck of cards before dealing; "he insisted that we give him the last cut before every deal"; "the cutting of the cards soon became a ritual" -00489730 04 n 02 all_fours 0 high-low-jack 0 004 @ 00488225 n 0000 ~ 00498427 n 0000 ~ 00498558 n 0000 ~ 00498700 n 0000 | card games in which points are won for taking the high or low or jack or game -00489933 04 n 02 baccarat 0 chemin_de_fer 0 001 @ 00488225 n 0000 | a card game played in casinos in which two or more punters gamble against the banker; the player wins who holds 2 or 3 cards that total closest to nine -00490155 04 n 03 beggar-my-neighbor 0 beggar-my-neighbour 0 strip-Jack-naked 0 001 @ 00488225 n 0000 | a card game for two players in which the object is to win all of the other player's cards -00490350 04 n 03 blackjack 0 twenty-one 0 vingt-et-un 0 001 @ 00488225 n 0000 | a gambling game using cards; the object is to hold cards having a higher count than those dealt to the banker up to but not exceeding 21 -00490569 04 n 01 bridge 0 020 @ 00488225 n 0000 ~ 00491037 n 0000 ~ 00491161 n 0000 ~ 00491366 n 0000 %p 01259380 n 0000 -c 03713556 n 0000 -c 03771261 n 0000 -c 04327825 n 0000 %p 06737112 n 0000 -c 06737112 n 0000 %p 06737394 n 0000 -c 06737628 n 0000 -c 06737758 n 0000 %p 07474645 n 0000 -c 13743869 n 0000 -c 01156406 v 0000 -c 02300549 v 0000 -c 02301000 v 0000 -c 02301151 v 0000 -c 02301321 v 0000 | any of various card games based on whist for four players -00491037 04 n 01 bridge_whist 0 001 @ 00490569 n 0000 | the earliest form of bridge; the dealer could name the trump suit -00491161 04 n 02 auction 1 auction_bridge 0 001 @ 00490569 n 0000 | a variety of bridge in which tricks made in excess of the contract are scored toward game; now generally superseded by contract bridge -00491366 04 n 02 contract 1 contract_bridge 0 002 @ 00490569 n 0000 ~ 00491561 n 0000 | a variety of bridge in which the bidder receives points toward game only for the number of tricks he bid -00491561 04 n 01 no-trump 0 001 @ 00491366 n 0000 | a version of contract bridge in which no suit is designated as trump for the duration of the hand -00491713 04 n 02 casino 0 cassino 0 003 @ 00488225 n 0000 ~ 00498828 n 0000 ~ 00498947 n 0000 | a card game in which cards face up on the table are taken with eligible cards in the hand -00491901 04 n 02 cribbage 0 crib 0 002 @ 00488225 n 0000 %p 00492083 n 0000 | a card game (usually for two players) in which each player is dealt six cards and discards one or two -00492083 04 n 01 crib 1 002 @ 03963982 n 0000 #p 00491901 n 0000 | the cards discarded by players at cribbage -00492195 04 n 01 ecarte 0 001 @ 00488225 n 0000 | a card game for 2 players; played with 32 cards and king high -00492309 04 n 02 euchre 0 five_hundred 0 001 @ 00488225 n 0000 | a card game similar to ecarte; each player is dealt 5 cards and the player making trump must take 3 tricks to win a hand -00492497 04 n 03 fantan 1 sevens 0 parliament 0 001 @ 00488225 n 0000 | a card game in which you play your sevens and other cards in sequence in the same suit as the sevens; you win if you are the first to use all your cards -00492724 04 n 01 faro 0 001 @ 00488225 n 0000 | a card game in which players bet against the dealer on the cards he will draw from a dealing box -00492871 04 n 01 Go_Fish 0 001 @ 00488225 n 0000 | a card game for two players who try to assemble books of cards by asking the opponent for particular cards -00493031 04 n 03 monte 0 four-card_monte 0 three-card_monte 0 001 @ 00488225 n 0000 | a gambling card game of Spanish origin; 3 or 4 cards are dealt face up and players bet that one of them will be matched before the others as the cards are dealt from the pack one at a time -00493308 04 n 05 Michigan 0 Chicago 0 Newmarket 0 boodle 0 stops 0 001 @ 00488225 n 0000 | a gambling card game in which chips are placed on the ace and king and queen and jack of separate suits (taken from a separate deck); a player plays the lowest card of a suit in his hand and successively higher cards are played until the sequence stops; the player who plays a card matching one in the layout wins all the chips on that card -00493742 04 n 02 Napoleon 0 nap 1 001 @ 00488225 n 0000 | a card game similar to whist; usually played for stakes -00493858 04 n 01 old_maid 0 001 @ 00488225 n 0000 | a card game using a pack of cards from which one queen has been removed; players match cards and the player holding the unmatched queen at the end of the game is the loser (or `old maid') -00494100 04 n 04 pinochle 0 pinocle 0 penuchle 0 bezique 0 001 @ 00488225 n 0000 | a card game played with a pack of forty-eight cards (two of each suit for high cards); play resembles whist -00494293 04 n 01 piquet 0 001 @ 00488225 n 0000 | a card game for two players using a reduced pack of 32 cards -00494406 04 n 01 pisha_paysha 0 002 @ 00488225 n 0000 ;c 06951067 n 0000 | (Yiddish) a card game for two players one of whom is usually a child; the deck is place face down with one card face upward; players draw from the deck alternately hoping to build up or down from the open card; the player with the fewest cards when the deck is exhausted is the winner -00494768 04 n 02 poker 0 poker_game 0 011 @ 00488225 n 0000 ~ 00497536 n 0000 ~ 00497713 n 0000 ~ 00497819 n 0000 ~ 00497924 n 0000 ~ 00498086 n 0000 ~ 00498220 n 0000 -c 00803208 n 0000 -c 04680133 n 0000 -c 13343774 n 0000 -c 13343917 n 0000 | any of various card games in which players bet that they hold the highest-ranking hand -00495103 04 n 02 rouge_et_noir 0 trente-et-quarante 0 001 @ 00488225 n 0000 | a card game in which two rows of cards are dealt and players can bet on the color of the cards or on which row will have a count nearer some number -00495331 04 n 02 rummy 0 rum 0 003 @ 00488225 n 0000 ~ 00496877 n 0000 ~ 00497060 n 0000 | a card game based on collecting sets and sequences; the winner is the first to meld all their cards -00495524 04 n 02 solitaire 0 patience 1 004 @ 00488225 n 0000 ~ 00495677 n 0000 ~ 00495774 n 0000 ~ 00496760 n 0000 | a card game played by one person -00495677 04 n 01 canfield 0 001 @ 00495524 n 0000 | a form of solitaire that involves gambling -00495774 04 n 01 klondike 0 001 @ 00495524 n 0000 | a form of solitaire that begins with seven piles of cards with the top cards facing up; descending sequences of cards of alternating colors are built on these piles; as aces become available they are placed above the seven piles; the object is to build sequences in suit from ace to king as the remaining cards are dealt out one at a time -00496167 04 n 03 whist 0 long_whist 0 short_whist 0 003 @ 00488225 n 0000 ~ 00496437 n 0000 ~ 00496599 n 0000 | a card game for four players who form two partnerships; a pack of 52 cards is dealt and each side scores one point for each trick it takes in excess of six -00496437 04 n 01 dummy_whist 0 001 @ 00496167 n 0000 | a form of whist with three players; four hands are dealt with the hand opposite the dealer being face up -00496599 04 n 02 hearts 0 Black_Maria 0 001 @ 00496167 n 0000 | a form of whist in which players avoid winning tricks containing hearts or the queen of spades -00496760 04 n 02 Russian_bank 0 crapette 0 001 @ 00495524 n 0000 | solitaire with two players using separate packs -00496877 04 n 03 gin 0 gin_rummy 0 knock_rummy 0 001 @ 00495331 n 0000 | a form of rummy in which a player can go out if the cards remaining in their hand total less than 10 points -00497060 04 n 03 canasta 0 basket_rummy 0 meld 0 004 @ 00495331 n 0000 + 00902807 v 0301 ~ 00497321 n 0000 ~ 00497425 n 0000 | a form of rummy using two decks of cards and four jokers; jokers and deuces are wild; the object is to form groups of the same rank -00497321 04 n 01 bolivia 0 001 @ 00497060 n 0000 | a form of canasta in which sequences can be melded -00497425 04 n 01 samba 1 001 @ 00497060 n 0000 | a form of canasta using three decks of cards and six jokers -00497536 04 n 02 draw 1 draw_poker 0 001 @ 00494768 n 0000 | poker in which a player can discard cards and receive substitutes from the dealer; "he played only draw and stud" -00497713 04 n 01 high-low 0 001 @ 00494768 n 0000 | poker in which the high and low hands split the pot -00497819 04 n 02 penny_ante 0 penny_ante_poker 0 001 @ 00494768 n 0000 | poker played for small stakes -00497924 04 n 01 straight_poker 0 001 @ 00494768 n 0000 | poker in which each player gets 5 cards face down and bets are made without drawing any further cards -00498086 04 n 01 strip_poker 0 001 @ 00494768 n 0000 | poker in which a player's losses are paid by removing an article of clothing -00498220 04 n 02 stud 0 stud_poker 0 002 @ 00494768 n 0000 -c 03527000 n 0000 | poker in which each player receives hole cards and the remainder are dealt face up; bets are placed after each card is dealt -00498427 04 n 01 cinch 0 001 @ 00489730 n 0000 | a form of all fours in which the players bid for the privilege of naming trumps -00498558 04 n 02 pitch 1 auction_pitch 0 002 @ 00489730 n 0000 + 01149868 v 0101 | an all-fours game in which the first card led is a trump -00498700 04 n 02 seven-up 0 old_sledge 0 001 @ 00489730 n 0000 | a form of all fours in which a total of seven points is game -00498828 04 n 01 royal_casino 0 001 @ 00491713 n 0000 | a form of casino in which face cards have extra point values -00498947 04 n 01 spade_casino 0 001 @ 00491713 n 0000 | a form of casino in which spades have the value of one point -00499066 04 n 01 table_game 0 007 @ 00455599 n 0000 ~ 00499263 n 0000 ~ 00499477 n 0000 ~ 00499599 n 0000 ~ 00499924 n 0000 ~ 00501080 n 0000 ~ 00501479 n 0000 | a game that is played on a table -00499263 04 n 02 table_tennis 0 Ping-Pong 0 003 @ 00499066 n 0000 ;u 06851742 n 0201 -c 01166517 n 0000 | a game (trademark Ping-Pong) resembling tennis but played on a table with paddles and a light hollow ball -00499477 04 n 02 dominoes 0 dominos 0 001 @ 00499066 n 0000 | any of several games played with small rectangular blocks -00499599 04 n 01 nim 0 001 @ 00499066 n 0000 | game in which matchsticks are arranged in rows and players alternately remove one or more of them; in some versions the object is to take the last remaining matchstick on the table and in other versions the object is to avoid taking the last remaining matchstick on the table -00499924 04 n 01 billiards 0 008 @ 00499066 n 0000 %p 00500280 n 0000 %p 00500449 n 0000 %p 00500669 n 0000 %p 00500927 n 0000 -c 01147987 v 0000 -c 01597995 v 0000 -c 01598395 v 0000 | any of several games played on rectangular cloth-covered table (with cushioned edges) in which long tapering cue sticks are used to propel ivory (or composition) balls -00500280 04 n 01 break 3 004 @ 00565302 n 0000 #p 00499924 n 0000 #p 00501080 n 0000 + 01597995 v 0101 | the opening shot that scatters the balls in billiards or pool -00500449 04 n 02 carom 0 cannon 0 005 @ 00565302 n 0000 #p 00499924 n 0000 #p 00501080 n 0000 + 01147987 v 0201 + 01598395 v 0101 | a shot in billiards in which the cue ball contacts one object ball and then the other -00500669 04 n 02 masse 0 masse_shot 0 003 @ 00565302 n 0000 #p 00499924 n 0000 #p 00501080 n 0000 | a shot in billiards made by hitting the cue ball with the cue held nearly vertically; the cue ball spins around another ball before hitting the object ball -00500927 04 n 01 miscue 0 003 @ 00565302 n 0000 #p 00499924 n 0000 #p 00501080 n 0000 | a faulty shot in billiards; the cue tip slips off the cue ball -00501080 04 n 02 pool 0 pocket_billiards 0 006 @ 00499066 n 0000 %p 00500280 n 0000 %p 00500449 n 0000 %p 00500669 n 0000 %p 00500927 n 0000 ~ 00501304 n 0000 | any of various games played on a pool table having 6 pockets -00501304 04 n 01 snooker 0 003 @ 00501080 n 0000 + 01074206 v 0101 -c 01074206 v 0000 | a form of pool played with 15 red balls and six balls of other colors and a cue ball -00501479 04 n 02 bagatelle 0 bar_billiards 0 002 @ 00499066 n 0000 ;r 08860123 n 0000 | a table game in which short cues are used to knock balls into holes that are guarded by wooden pegs; penalties are incurred if the pegs are knocked over -00501722 04 n 02 parlor_game 0 parlour_game 0 003 @ 00455599 n 0000 ~ 00501870 n 0000 ~ 00502415 n 0000 | a game suitable for playing in a parlor -00501870 04 n 01 word_game 0 003 @ 00501722 n 0000 ~ 00502030 n 0000 ~ 00502161 n 0000 | any game involving the formation or alteration or discovery of words -00502030 04 n 01 anagrams 0 001 @ 00501870 n 0000 | a game whose object is to form words from a group of randomly chosen letters -00502161 04 n 01 Scrabble 0 003 @ 00501870 n 0000 @ 00502415 n 0000 ;u 06851742 n 0000 | a board game in which words are formed from letters in patterns similar to a crossword puzzle; each letter has a value and those values are used to score the game -00502415 04 n 01 board_game 0 018 @ 00501722 n 0000 ~ 00502161 n 0000 ~ 00502822 n 0000 ~ 00502952 n 0000 ~ 00503237 n 0000 ~ 00503981 n 0000 ~ 00504209 n 0000 ~ 00504325 n 0000 ~ 00504526 n 0000 ~ 00504660 n 0000 ~ 00504975 n 0000 ~ 00505126 n 0000 ~ 00505238 n 0000 ~ 00505446 n 0000 ~ 00505871 n 0000 ~ 00506060 n 0000 ~ 00506207 n 0000 -c 01080523 v 0000 | a game played on a specially designed board -00502822 04 n 01 backgammon 0 001 @ 00502415 n 0000 | a board game for two players; pieces move according to throws of the dice -00502952 04 n 02 checkers 0 draughts 0 006 @ 00502415 n 0000 -c 02846260 n 0000 -c 03011355 n 0000 %p 03011521 n 0000 -c 03618339 n 0000 -c 04579986 n 0000 | a checkerboard game for two players who each have 12 pieces; the object is to jump over and so capture the opponent's pieces -00503237 04 n 02 chess 0 chess_game 0 030 @ 00502415 n 0000 %p 00166355 n 0000 -c 00166865 n 0000 -c 00167063 n 0000 -c 00167278 n 0000 -c 00167446 n 0000 -c 00457890 n 0000 -c 00458094 n 0000 ~ 00505726 n 0000 -c 02844056 n 0000 -c 02846260 n 0000 -c 02980625 n 0000 %p 03011521 n 0000 -c 03618101 n 0000 -c 03624767 n 0000 -c 03901750 n 0000 -c 04033287 n 0000 -c 04579986 n 0000 -c 14422871 n 0000 -c 01074509 v 0000 -c 01074701 v 0000 -c 01077203 v 0000 -c 01077329 v 0000 -c 01077887 v 0000 -c 01080235 v 0000 -c 01114475 v 0000 -c 01114764 v 0000 -c 01118888 v 0000 -c 01121621 v 0000 -c 01969991 v 0000 | a board game for two players who move their 16 pieces according to specific rules; the object is to checkmate the opponent's king -00503981 04 n 02 Chinese_checkers 0 Chinese_chequers 0 001 @ 00502415 n 0000 | a board game in which each player tries to move a set of marbles through a set of holes from one point of a six-pointed star to the opposite point -00504209 04 n 01 darts 0 001 @ 00502415 n 0000 | a game in which small pointed missiles are thrown at a dartboard -00504325 04 n 02 go 0 go_game 0 002 @ 00502415 n 0000 ;r 08921850 n 0000 | a board game for two players who place counters on a grid; the object is to surround and so capture the opponent's counters -00504526 04 n 01 halma 0 001 @ 00502415 n 0000 | a board game in which players try to move their pieces into their opponent's bases -00504660 04 n 04 lotto 0 bingo 0 beano 0 keno 0 001 @ 00502415 n 0000 | a game in which numbered balls are drawn at random and players cover the corresponding numbers on their cards -00504844 04 n 01 tombola 0 002 @ 00508091 n 0000 ;r 08860123 n 0000 | a lottery in which tickets are drawn from a revolving drum -00504975 04 n 01 ludo 0 002 @ 00502415 n 0000 ;r 08860123 n 0000 | a simple board game in which players move counters according to the throw of dice -00505126 04 n 02 Mah-Jongg 0 mahjong 0 001 @ 00502415 n 0000 | Chinese game played by 4 people with 144 tiles -00505238 04 n 01 Monopoly 0 002 @ 00502415 n 0000 ;u 06851742 n 0000 | a board game in which players try to gain a monopoly on real estate as pieces advance around the board according to the throw of a die -00505446 04 n 03 pachisi 0 parchesi 0 parchisi 0 002 @ 00502415 n 0000 ~ 00505615 n 0000 | an ancient board game resembling backgammon; played on a cross-shaped board -00505615 04 n 01 Parcheesi 0 002 @ 00505446 n 0000 ;u 06851742 n 0000 | a modern board game based on pachisi -00505726 04 n 01 shogi 0 002 @ 00503237 n 0000 ;r 08921850 n 0000 | a form of chess played on a board of 81 squares; each player has 20 pieces -00505871 04 n 03 shovel_board 0 shove-halfpenny 0 shove-ha'penny 0 002 @ 00502415 n 0000 ;r 08860123 n 0000 | a game in which coins or discs are slid by hand across a board toward a mark -00506060 04 n 01 snakes_and_ladders 0 001 @ 00502415 n 0000 | a board game for children who use dice to move counters up ladders and down snakes -00506207 04 n 06 ticktacktoe 0 ticktacktoo 0 tick-tack-toe 0 tic-tac-toe 0 tit-tat-toe 0 noughts_and_crosses 0 001 @ 00502415 n 0000 | a game in which two players alternately put crosses and circles in one of the compartments of a square grid of nine spaces; the object is to get a row of three crosses or three circles before the opponent does -00506554 04 n 01 sporting_life 0 001 @ 00430140 n 0000 | active interest in gambling on sports events -00506658 04 n 02 bet 0 wager 0 010 @ 00430140 n 0000 + 01155687 v 0202 + 00918580 v 0202 + 01155687 v 0101 ~ 00506919 n 0000 ~ 00507025 n 0000 ~ 00507162 n 0000 ~ 00507271 n 0000 ~ 00507425 n 0000 ~ 00507539 n 0000 | the act of gambling; "he did it on a bet" -00506919 04 n 01 daily_double 0 001 @ 00506658 n 0000 | a single bet on two horse races in the same day -00507025 04 n 02 exacta 0 perfecta 0 001 @ 00506658 n 0000 | a bet that you can pick the first and second finishers in the right order -00507162 04 n 01 parimutuel 0 001 @ 00506658 n 0000 | betting where winners share the total amount wagered -00507271 04 n 01 parlay 0 001 @ 00506658 n 0000 | a series of wagers in which the winnings from one wager are used as a stake for the subsequent wagers -00507425 04 n 01 place_bet 0 001 @ 00506658 n 0000 | a bet that a horse will finish a race no worse than second -00507539 04 n 01 superfecta 0 001 @ 00506658 n 0000 | a bet that you can pick the first four finishers in a race in the right order -00507673 04 n 02 game_of_chance 0 gambling_game 0 007 @ 00430140 n 0000 @ 00455599 n 0000 ~ 00507887 n 0000 ~ 00508091 n 0000 ~ 00508952 n 0000 ~ 00509399 n 0000 ~ 00509566 n 0000 | a game that involves gambling -00507887 04 n 02 fantan 0 fan_tan 0 001 @ 00507673 n 0000 | a Chinese gambling game; a random number of counters are placed under a bowl and you gamble on how many will be left (0, 1, 2, or 3 modulo 4) -00508091 04 n 02 lottery 0 drawing 3 007 @ 00507673 n 0000 + 01078050 v 0201 ~ 00504844 n 0000 ~ 00508340 n 0000 ~ 00508547 n 0000 ~ 00508672 n 0000 ~ 00508800 n 0000 | players buy (or are given) chances and prizes are distributed by casting lots -00508340 04 n 01 lucky_dip 0 002 @ 00508091 n 0000 ;r 08860123 n 0000 | a game in which prizes (e.g., candies or coins) are concealed in a container and for a small sum a player can draw one out at random -00508547 04 n 04 numbers_pool 0 numbers_game 0 numbers_racket 0 numbers 0 001 @ 00508091 n 0000 | an illegal daily lottery -00508672 04 n 01 raffle 0 002 @ 00508091 n 0000 + 02201975 v 0101 | a lottery in which the prizes are goods rather than money -00508800 04 n 01 sweepstakes 0 002 @ 00508091 n 0000 ;u 06295235 n 0000 | a lottery in which the prize consists of the money paid by the participants -00508952 04 n 01 craps 0 005 @ 00507673 n 0000 ;u 06295235 n 0000 ~ 00509302 n 0000 %p 01245813 n 0000 -c 01245950 n 0000 | a gambling game played with two dice; a first throw of 7 or 11 wins and a first throw of 2, 3, or 12 loses and a first throw of any other number must be repeated to win before a 7 is thrown, which loses the bet and the dice -00509302 04 n 03 crap_shooting 0 crapshoot 0 crap_game 0 001 @ 00508952 n 0000 | playing craps -00509399 04 n 01 roulette 0 001 @ 00507673 n 0000 | a gambling game in which players bet on which compartment of a revolving wheel a small ball will come to rest in -00509566 04 n 01 banking_game 0 001 @ 00507673 n 0000 | any gambling game in which bets are laid against the gambling house or the dealer -00509706 04 n 01 zero-sum_game 0 002 @ 00455599 n 0000 ;c 06150222 n 0000 | a game in which the total of all the gains and losses is zero -00509846 04 n 03 merrymaking 0 conviviality 0 jollification 0 005 @ 00428000 n 0000 + 02491383 v 0307 + 02491383 v 0104 ~ 00510050 n 0000 ~ 00510189 n 0000 | a boisterous celebration; a merry festivity -00510050 04 n 04 jinks 0 high_jinks 0 hijinks 0 high_jinx 0 002 @ 00509846 n 0000 ;u 06295235 n 0000 | noisy and mischievous merrymaking -00510189 04 n 02 revel 0 revelry 0 007 @ 00509846 n 0000 + 02491383 v 0201 + 02491383 v 0101 ~ 00510723 n 0000 ~ 00511041 n 0000 ~ 00511212 n 0000 ~ 00519251 n 0000 | unrestrained merrymaking -00510383 04 n 01 sexcapade 0 001 @ 00429322 n 0000 | a sexual escapade; an illicit affair -00510475 04 n 02 spree 0 fling 0 004 @ 00747671 n 0000 + 02269003 v 0202 + 01182559 v 0101 ~ 00510624 n 0000 | a brief indulgence of your impulses -00510624 04 n 01 spending_spree 0 001 @ 00510475 n 0000 | a brief period of extravagant spending -00510723 04 n 04 bust 0 tear 1 binge 0 bout 1 003 @ 00510189 n 0000 + 01193099 v 030d ~ 00510922 n 0000 | an occasion for excessive eating or drinking; "they went on a bust that lasted three days" -00510922 04 n 01 piss-up 0 002 @ 00510723 n 0000 ;r 08860123 n 0000 | vulgar expression for a bout of heavy drinking -00511041 04 n 05 carouse 0 carousal 0 bender 0 toot 0 booze-up 0 003 @ 00510189 n 0000 + 02493260 v 0201 + 02493260 v 0101 | revelry in drinking; a merry drinking party -00511212 04 n 08 orgy 2 debauch 0 debauchery 0 saturnalia 1 riot 1 bacchanal 0 bacchanalia 1 drunken_revelry 0 009 @ 00510189 n 0000 + 00797706 a 0602 + 00797706 a 0601 + 01549568 a 0508 + 02493260 v 0503 + 02579447 v 0306 + 02579447 v 0206 + 02134162 a 0101 + 00797706 a 0105 | a wild gathering involving excessive drinking and promiscuity -00511555 04 n 01 carnival 0 002 @ 00517728 n 0000 ~ 00520059 n 0000 | a festival marked by merrymaking and processions -00511676 04 n 02 Dionysia 0 Bacchanalia 0 001 @ 00517728 n 0000 | an orgiastic festival in ancient Greece in honor of Dionysus (= Bacchus) -00511817 04 n 05 play 0 frolic 0 romp 0 gambol 0 caper 0 013 @ 00426928 n 0000 + 01967104 v 0501 + 01883716 v 0408 + 01883716 v 030a + 01883716 v 0201 + 02418421 v 0101 + 02418686 v 0101 ~ 00512522 n 0000 ~ 00512843 n 0000 ~ 00513089 n 0000 ~ 00513761 n 0000 ~ 00513841 n 0000 ~ 00513952 n 0000 | gay or light-hearted recreational activity for diversion or amusement; "it was all done in play"; "their frolic in the surf threatened to become ugly" -00512267 04 n 02 caper 3 capriole 1 001 @ 00120202 n 0000 | a playful leap or hop -00512351 04 n 01 capriole 0 002 @ 00119568 n 0000 ;c 00288000 n 0000 | (dressage) a vertical jump of a trained horse with a kick of the hind legs at the top of the jump -00512522 04 n 06 flirt 0 flirting 0 flirtation 0 coquetry 0 dalliance 1 toying 0 010 @ 00511817 n 0000 + 02437465 v 0602 + 02437465 v 0501 + 01037910 v 0503 + 01037910 v 0405 + 01037910 v 0302 + 02437465 v 0204 + 01037910 v 0202 + 02131958 a 0102 + 01037910 v 0102 | playful behavior intended to arouse sexual interest -00512843 04 n 06 folly 0 foolery 0 tomfoolery 0 craziness 0 lunacy 0 indulgence 1 007 @ 00511817 n 0000 + 02076234 a 0501 + 01836766 a 0401 + 00919984 a 0401 + 00854150 v 0204 ~ 00513251 n 0000 ~ 00513401 n 0000 | foolish or senseless behavior -00513089 04 n 01 game 4 001 @ 00511817 n 0000 | frivolous or trifling behavior; "for actors, memorizing lines is no game"; "for him, life is all fun and games" -00513251 04 n 03 meshugaas 0 mishegaas 0 mishegoss 0 002 @ 00512843 n 0000 ;c 06951067 n 0000 | (Yiddish) craziness; senseless behavior or activity -00513401 04 n 06 buffoonery 0 clowning 0 japery 0 frivolity 0 harlequinade 0 prank 1 004 @ 00512843 n 0000 + 02120458 a 0401 + 00105778 v 0201 ~ 00513597 n 0000 | acting like a clown or buffoon -00513597 04 n 04 shtik 1 schtik 1 shtick 1 schtick 1 002 @ 00513401 n 0000 ;c 06951067 n 0000 | (Yiddish) a prank or piece of clowning; "his shtik made us laugh" -00513761 04 n 01 horseplay 0 001 @ 00511817 n 0000 | rowdy or boisterous play -00513841 04 n 01 teasing 1 001 @ 00511817 n 0000 | playful vexation; "the parody was just a form of teasing" -00513952 04 n 01 word_play 0 001 @ 00511817 n 0000 | playing on words or speech sounds -00514041 04 n 01 dirty_trick 0 001 @ 00427580 n 0000 | an unkind or aggressive trick -00514128 04 n 01 practical_joke 0 005 @ 00427580 n 0000 ~ 00514356 n 0000 ~ 00514471 n 0000 ~ 00514658 n 0000 ~ 00514787 n 0000 | a prank or trick played on a person (especially one intended to make the victim appear foolish) -00514356 04 n 01 April_fool 0 001 @ 00514128 n 0000 | a practical joke or trick played on the first day of April -00514471 04 n 01 hotfoot 0 001 @ 00514128 n 0000 | a practical joke that involves inserting a match surreptitiously between the sole and upper of the victim's shoe and then lighting it -00514658 04 n 01 rag 2 002 @ 00514128 n 0000 ;r 08860123 n 0000 | a boisterous practical joke (especially by college students) -00514787 04 n 01 snipe_hunt 0 001 @ 00514128 n 0000 | an elaborate practical joke in which the unsuspecting victim hunts a snipe and is typically left in the dark holding a bag and waiting for the snipe to run into it; "in the South a snipe hunt is practically a rite of passage" -00515069 04 n 02 drollery 0 waggery 0 001 @ 00431005 n 0000 | a quaint and amusing jest -00515159 04 n 02 leg-pull 0 leg-pulling 0 001 @ 00431005 n 0000 | as a joke: trying to make somebody believe something that is not true -00515297 04 n 01 pleasantry 0 001 @ 00431005 n 0000 | an agreeable or amusing remark; "they exchange pleasantries" -00515414 04 n 02 beguilement 0 distraction 1 001 @ 00429048 n 0000 | an entertainment that provokes pleased interest and distracts you from worries and vexations -00515578 04 n 01 edutainment 0 001 @ 00429048 n 0000 | entertainment that is intended to be educational -00515684 04 n 01 extravaganza 0 001 @ 00429048 n 0000 | any lavishly staged or spectacular entertainment -00515791 04 n 01 militainment 0 002 @ 00429048 n 0000 ;c 08199025 n 0000 | entertainment with military themes in which the Department of Defense is celebrated -00515952 04 n 02 nightlife 1 night_life 1 001 @ 00429048 n 0000 | the entertainment available to people seeking nighttime diversion -00516086 04 n 03 celebration 1 solemnization 0 solemnisation 0 006 @ 01030820 n 0000 + 02489748 v 0302 + 02579247 v 0302 + 02489748 v 0201 + 02579247 v 0201 + 02578510 v 0102 | the public performance of a sacrament or solemn ceremony with all appropriate ritual; "the celebration of marriage" -00516381 04 n 01 Isthmian_Games 0 001 @ 00035697 n 0000 | the ancient Panhellenic games held biennially on the Isthmus of Corinth in the first and third years of each Olympiad -00516559 04 n 01 Nemean_Games 0 001 @ 00035697 n 0000 | the ancient Panhellenic games held biennially at Nemea in the second and fourth years of each Olympiad -00516720 04 n 02 Olympian_Games 0 Olympic_Games 0 001 @ 00035697 n 0000 | the ancient Panhellenic celebration at Olympia in honor of Zeus; held every 4 years beginning in 776 BC -00516900 04 n 01 Pythian_Games 0 001 @ 00035697 n 0000 | the ancient Panhellenic celebration at Delphi held every four years in the third year of the Olympiad in honor of Apollo -00517080 04 n 01 Royal_National_Eisteddfod 0 001 @ 00517231 n 0000 | an eisteddfod with competitions in music and drama and poetry and the fine arts -00517231 04 n 01 eisteddfod 0 003 @ 00517728 n 0000 ;c 00545501 n 0000 ~ 00517080 n 0000 | any of several annual Welsh festivals involving artistic competitions (especially in singing) -00517418 04 n 01 film_festival 0 001 @ 00517728 n 0000 | a cinematic festival that features films (usually films produced during the past year) -00517564 04 n 01 feria 0 002 @ 00428000 n 0000 ;c 06966825 n 0000 | (in Spanish speaking regions) a local festival or fair, usually in honor of some patron saint -00517728 04 n 02 festival 0 fete 0 010 @ 00428000 n 0000 ~ 00511555 n 0000 ~ 00511676 n 0000 ~ 00517231 n 0000 ~ 00517418 n 0000 ~ 00518039 n 0000 ~ 00518152 n 0000 ~ 00518303 n 0000 ~ 00518442 n 0000 ~ 00518555 n 0000 | an organized series of acts and performances (usually in one place); "a drama festival" -00518039 04 n 01 jazz_festival 0 001 @ 00517728 n 0000 | a festival that features performances by jazz artists -00518152 04 n 02 Kwanzaa 0 Kwanza 0 001 @ 00517728 n 0000 | a festival featuring African-American culture; celebrated between Christmas and New Year -00518303 04 n 01 Oktoberfest 0 002 @ 00517728 n 0000 ;r 08766988 n 0000 | an autumn festival that involves merrymaking and drinking beer -00518442 04 n 01 Saturnalia 0 001 @ 00517728 n 0000 | an orgiastic festival in ancient Rome in honor of Saturn -00518555 04 n 01 sheepshearing 2 001 @ 00517728 n 0000 | a festival held at the time sheep are normally sheared -00518669 04 n 04 gala 0 gala_affair 0 jamboree 0 blowout 0 001 @ 00428000 n 0000 | a gay festivity -00518770 04 n 02 Ludi_Saeculares 0 secular_games 0 002 @ 00428000 n 0000 ;u 06295235 n 0000 | the centennial rites and games of ancient Rome that marked the commencement of a new generation (100 years representing the longest life in a generation); observances may have begun as early as the 5th century BC and lasted well into the Christian era -00519118 04 n 01 victory_celebration 0 001 @ 00428000 n 0000 | a celebration following a victory in a battle or sports competition -00519251 04 n 01 whoopee 0 001 @ 00510189 n 0000 | noisy and boisterous revelry -00519333 04 n 03 carnival 1 fair 1 funfair 0 002 @ 00520257 n 0000 %p 08614746 n 0000 | a traveling show; having sideshows and rides and games of skill etc. -00519492 04 n 01 dog_show 0 001 @ 00520257 n 0000 | a competitive exhibition of dogs -00519579 04 n 01 horseshow 0 001 @ 00520257 n 0000 | a competitive exhibition of horses -00519669 04 n 01 raree-show 0 001 @ 00520257 n 0000 | a street show -00519739 04 n 01 circus 0 002 @ 00520257 n 0000 ~ 00519941 n 0000 | a performance given by a traveling company of acrobats, clowns, and trained animals; "the children always love to go to the circus" -00519941 04 n 01 three-ring_circus 0 001 @ 00519739 n 0000 | a circus with simultaneous performances in three rings -00520059 04 n 02 Mardi_Gras 0 Fat_Tuesday 0 002 @ 00511555 n 0000 #p 09091909 n 0000 | a carnival held in some countries on Shrove Tuesday (the last day before Lent) but especially in New Orleans -00520257 04 n 01 show 0 017 @ 00429048 n 0000 + 00796591 a 0101 + 02148788 v 0101 ~ 00519333 n 0000 ~ 00519492 n 0000 ~ 00519579 n 0000 ~ 00519669 n 0000 ~ 00519739 n 0000 ~ 00520672 n 0000 ~ 00520783 n 0000 ~ 00520880 n 0000 ~ 00521209 n 0000 ~ 00521562 n 0000 ~ 00521970 n 0000 ~ 00523078 n 0000 ~ 00523148 n 0000 ~ 00523263 n 0000 | the act of publicly exhibiting or entertaining; "a remarkable show of skill" -00520672 04 n 03 cabaret 0 floorshow 0 floor_show 0 001 @ 00520257 n 0000 | a series of acts at a night club -00520783 04 n 01 ice_show 0 001 @ 00520257 n 0000 | any entertainment performed by ice skaters -00520880 04 n 03 interlude 0 intermezzo 0 entr'acte 0 003 @ 00520257 n 0000 ;c 07020895 n 0000 + 01713796 v 0101 | a brief show (music or dance etc) inserted between the sections of a longer performance -00521085 04 n 01 parade 0 002 @ 00521209 n 0000 + 01924712 v 0101 | a visible display; "she made a parade of her sorrows" -00521209 04 n 03 display 0 exhibit 0 showing 0 006 @ 00520257 n 0000 + 02148788 v 0301 + 02140033 v 0202 + 02140033 v 0103 ~ 00521085 n 0000 ~ 00521450 n 0000 | something shown to the public; "the museum had many exhibits of oriental art" -00521450 04 n 01 light_show 0 001 @ 00521209 n 0000 | a display of colored lights moving in shifting patterns -00521562 04 n 03 presentation 0 presentment 2 demonstration 0 011 @ 00520257 n 0000 + 02148788 v 0305 + 02148788 v 0204 + 01688771 v 0202 + 01711445 v 0202 + 02148788 v 0104 ~ 00522145 n 0000 ~ 00522537 n 0000 ~ 00550771 n 0000 ~ 00893088 n 0000 ~ 01177990 n 0000 | a show or display; the act of presenting something to sight or view; "the presentation of new data"; "he gave the customer a demonstration" -00521970 04 n 01 demonstration 2 002 @ 00520257 n 0000 ;c 08199025 n 0000 | a show of military force or preparedness; "he confused the enemy with feints and demonstrations" -00522145 04 n 01 exhibition 0 005 @ 00521562 n 0000 + 02631856 v 0101 + 02140033 v 0102 ~ 00522736 n 0000 ~ 00522939 n 0000 | the act of exhibiting; "a remarkable exhibition of musicianship" -00522338 04 n 02 repudiation 0 debunking 0 003 @ 00522537 n 0000 + 00853195 v 0201 + 00816828 v 0101 | the exposure of falseness or pretensions; "the debunking of religion has been too successful" -00522537 04 n 01 exposure 5 004 @ 00521562 n 0000 + 02137710 v 0102 + 02140033 v 0101 ~ 00522338 n 0000 | presentation to view in an open or public manner; "the exposure of his anger was shocking" -00522736 04 n 01 production 1 003 @ 00522145 n 0000 ;c 08441203 n 0000 + 02141146 v 0101 | (law) the act of exhibiting in a court of law; "the appellate court demanded the production of all documents" -00522939 04 n 01 rodeo 0 004 @ 00522145 n 0000 %p 00299826 n 0000 %p 00300206 n 0000 %p 00300333 n 0000 | an exhibition of cowboy skills -00523078 04 n 01 road_show 0 001 @ 00520257 n 0000 | a show on tour -00523148 04 n 01 sideshow 0 001 @ 00520257 n 0000 | a minor show that is part of a larger one (as at the circus) -00523263 04 n 02 Wild_West_Show 0 Buffalo_Bill's_Wild_West_Show 0 001 @ 00520257 n 0000 | a spectacular show organized in 1883 by William F. Cody that featured horseback riding and marksmanship on a large scale; toured the United States and Europe -00523513 04 n 02 sport 0 athletics 0 140 @ 00426928 n 0000 + 00032497 a 0202 + 01883716 v 0106 -c 00099590 a 0000 -c 00100506 a 0000 -c 00494198 a 0000 -c 00600725 a 0000 -c 00852754 a 0000 -c 00853324 a 0000 -c 01219827 a 0000 -c 01219938 a 0000 -c 01279431 a 0000 -c 01404042 a 0000 -c 01630773 a 0000 -c 01652033 a 0000 -c 01652158 a 0000 -c 02470531 a 0000 -c 02470734 a 0000 -c 02491708 a 0000 -c 02492812 a 0000 -c 00097358 r 0000 -c 00098267 r 0000 -c 00074324 n 0000 -c 00077249 n 0000 -c 00105820 n 0000 -c 00131347 n 0000 -c 00164801 n 0000 ~ 00324978 n 0000 ~ 00326094 n 0000 -c 00343894 n 0000 ~ 00433458 n 0000 ~ 00433661 n 0000 ~ 00433802 n 0000 ~ 00439826 n 0000 ~ 00440747 n 0000 ~ 00441824 n 0000 ~ 00445351 n 0000 ~ 00446980 n 0000 ~ 00447073 n 0000 ~ 00448466 n 0000 ~ 00449295 n 0000 ~ 00450335 n 0000 ~ 00451370 n 0000 ~ 00451866 n 0000 ~ 00463246 n 0000 -c 00565302 n 0000 -c 00722479 n 0000 -c 00770997 n 0000 -c 00771198 n 0000 -c 00809702 n 0000 ~ 00825773 n 0000 ~ 00886968 n 0000 ~ 00887544 n 0000 -c 01079396 n 0000 -c 04000592 n 0000 -c 05083687 n 0000 -c 05906867 n 0000 -c 06507592 n 0000 -c 07442569 n 0000 -c 07465448 n 0000 -c 07477231 n 0000 -c 08081403 n 0000 -c 09849874 n 0000 -c 09931640 n 0000 -c 10109826 n 0000 -c 10216560 n 0000 -c 10514429 n 0000 -c 10562968 n 0000 -c 10591481 n 0000 -c 10711483 n 0000 -c 13595550 n 0000 -c 13596422 n 0000 -c 13820655 n 0000 -c 14000642 n 0000 -c 15233778 n 0000 -c 15234587 n 0000 -c 15256714 n 0000 -c 00168217 v 0000 -c 00658913 v 0000 -c 00659373 v 0000 -c 01068793 v 0000 -c 01074074 v 0000 -c 01075164 v 0000 -c 01081852 v 0000 -c 01084466 v 0000 -c 01085237 v 0000 -c 01100008 v 0000 -c 01103336 v 0000 -c 01147296 v 0000 -c 01148460 v 0000 -c 01240188 v 0000 -c 01371756 v 0000 -c 01372408 v 0000 -c 01406016 v 0000 -c 01407235 v 0000 -c 01407376 v 0000 -c 01407722 v 0000 -c 01408633 v 0000 -c 01408760 v 0000 -c 01413917 v 0000 -c 01419982 v 0000 -c 01420194 v 0000 -c 01420304 v 0000 -c 01420451 v 0000 -c 01420616 v 0000 -c 01920698 v 0000 -c 01920932 v 0000 -c 01922895 v 0000 -c 01923058 v 0000 -c 01926031 v 0000 -c 01927447 v 0000 -c 01928390 v 0000 -c 01936753 v 0000 -c 01937067 v 0000 -c 01937222 v 0000 -c 01937394 v 0000 -c 01937534 v 0000 -c 01937795 v 0000 -c 01937992 v 0000 -c 01938288 v 0000 -c 01938426 v 0000 -c 01938942 v 0000 -c 01939174 v 0000 -c 01939811 v 0000 -c 01940034 v 0000 -c 01940248 v 0000 -c 01947352 v 0000 -c 01947543 v 0000 -c 01947735 v 0000 -c 01947887 v 0000 -c 01948077 v 0000 -c 01948450 v 0000 -c 01963130 v 0000 -c 01963459 v 0000 -c 01963795 v 0000 -c 01965331 v 0000 -c 01967205 v 0000 -c 02418029 v 0000 -c 02525312 v 0000 -c 02726543 v 0000 | an active diversion requiring physical exertion and competition -00526259 04 n 01 adagio 0 002 @ 00428270 n 0000 #p 00529224 n 0000 | a slow section of a pas de deux requiring great skill and strength by the dancers -00526412 04 n 02 break_dancing 0 break_dance 0 002 @ 00428270 n 0000 + 01896484 v 0201 | a form of solo dancing that involves rapid acrobatic moves in which different parts of the body touch the ground; normally performed to the rhythm of rap music -00526663 04 n 01 courante 0 001 @ 00428270 n 0000 | a court dance of the 16th century; consisted of short advances and retreats -00526793 04 n 03 nautch 0 nauch 0 nautch_dance 0 001 @ 00428270 n 0000 | an intricate traditional dance in India performed by professional dancing girls -00526948 04 n 02 pavane 0 pavan 0 001 @ 00428270 n 0000 | a stately court dance of the 16th and 17th centuries -00527061 04 n 01 phrase 0 002 @ 00428270 n 0000 + 02937108 a 0101 | dance movements that are linked in a single choreographic sequence -00527198 04 n 01 saraband 0 001 @ 00428270 n 0000 | a stately court dance of the 17th and 18th centuries; in slow time -00527319 04 n 01 skank 0 002 @ 00428270 n 0000 + 02048586 v 0101 | a rhythmic dance to reggae music performed by bending forward and extending the hands while bending the knees -00527498 04 n 02 slam_dancing 0 slam_dance 0 003 @ 00428270 n 0000 + 01897885 v 0201 + 01897885 v 0101 | a form of dancing in which dancers slam into one another; normally performed to punk rock -00527695 04 n 02 step_dancing 0 hoofing 0 003 @ 00428270 n 0000 ~ 00527872 n 0000 %p 00533922 n 0000 | dancing in which the steps are more important than gestures or postures -00527872 04 n 02 tap_dancing 0 tap_dance 0 005 @ 00527695 n 0000 + 01710048 v 0201 ~ 00528156 n 0000 ~ 00528298 n 0000 ~ 00530208 n 0000 | a dance step tapped out audibly with the feet -00528059 04 n 02 toe_dancing 0 toe_dance 0 001 @ 00428270 n 0000 | a dance performed on tiptoe -00528156 04 n 03 soft-shoe 0 soft-shoe_shuffle 0 soft-shoe_dancing 0 001 @ 00527872 n 0000 | tap dancing wearing shoes that have soft soles -00528298 04 n 01 buck-and-wing 0 001 @ 00527872 n 0000 | a solo tap dance emphasizing sharp taps -00528397 04 n 02 stage_dancing 0 choreography 0 010 @ 00428270 n 0000 @ 06619065 n 0000 ~ 00528667 n 0000 ~ 00530018 n 0000 ~ 00530386 n 0000 ~ 00530554 n 0000 ~ 00530755 n 0000 ~ 00530874 n 0000 ~ 00531077 n 0000 ~ 00531201 n 0000 | a show involving artistic dancing -00528667 04 n 02 ballet 0 concert_dance 0 016 @ 00528397 n 0000 + 02658043 a 0101 -c 00286112 n 0000 -c 00343730 n 0000 -c 00529101 n 0000 %p 00529224 n 0000 %p 00529400 n 0000 %p 00529511 n 0000 ~ 00529622 n 0000 ~ 00529784 n 0000 ~ 00529902 n 0000 -c 00534152 n 0000 -c 00534344 n 0000 -c 00534480 n 0000 -c 05086903 n 0000 %p 07009640 n 0000 | a theatrical representation of a story that is performed to music by trained dancers -00529101 04 n 02 pas_seul 0 variation 2 002 @ 00428270 n 0000 ;c 00528667 n 0000 | (ballet) a solo dance or dance figure -00529224 04 n 02 pas_de_deux 0 duet 1 003 @ 00428270 n 0000 #p 00528667 n 0000 %p 00526259 n 0000 | (ballet) a dance for two people (usually a ballerina and a danseur noble) -00529400 04 n 01 pas_de_trois 0 002 @ 00428270 n 0000 #p 00528667 n 0000 | (ballet) a dance for three people -00529511 04 n 01 pas_de_quatre 0 002 @ 00428270 n 0000 #p 00528667 n 0000 | (ballet) a dance for four people -00529622 04 n 01 classical_ballet 0 001 @ 00528667 n 0000 | a style of ballet based on precise conventional steps performed with graceful and flowing movements -00529784 04 n 01 modern_ballet 0 001 @ 00528667 n 0000 | a style of ballet that admits a wider variety of movements -00529902 04 n 01 comedy_ballet 0 001 @ 00528667 n 0000 | a ballet that stresses the drama with features of comedy -00530018 04 n 01 modern_dance 0 002 @ 00528397 n 0000 ~ 00531886 n 0000 | a style of theatrical dancing that is not as restricted as classical ballet; movements are expressive of feelings -00530208 04 n 03 clog_dance 0 clog_dancing 0 clog 0 002 @ 00527872 n 0000 + 01709931 v 0301 | a dance performed while wearing shoes with wooden soles; has heavy stamping steps -00530386 04 n 01 apache_dance 0 002 @ 00528397 n 0000 ;r 08929922 n 0000 | a violent fast dance in French vaudeville (an apache is a member of the French underworld) -00530554 04 n 03 belly_dance 0 belly_dancing 0 danse_du_ventre 0 002 @ 00528397 n 0000 + 01710190 v 0101 | a Middle Eastern dance in which the dancer makes sensuous movements of the hips and abdomen -00530755 04 n 01 bolero 0 001 @ 00528397 n 0000 | a Spanish dance in triple time accompanied by guitar and castanets -00530874 04 n 01 cakewalk 0 002 @ 00528397 n 0000 + 01896657 v 0101 | a strutting dance based on a march; was performed in minstrel shows; originated as a competition among Black dancers to win a cake -00531077 04 n 01 cancan 0 001 @ 00528397 n 0000 | a high-kicking dance of French origin performed by a female chorus line -00531201 04 n 01 nude_dancing 0 004 @ 00528397 n 0000 ~ 00531355 n 0000 ~ 00531490 n 0000 ~ 00531745 n 0000 | erotic dancing with little or no clothing -00531355 04 n 01 fan_dance 0 001 @ 00531201 n 0000 | a solo dance in which large fans are manipulated to suggest or reveal nakedness -00531490 04 n 03 strip 0 striptease 0 strip_show 0 004 @ 00531201 n 0000 + 10664340 n 0204 + 00177243 v 0101 + 00049900 v 0105 | a form of erotic entertainment in which a dancer gradually undresses to music; "she did a strip right in front of everyone" -00531745 04 n 01 bubble_dance 0 001 @ 00531201 n 0000 | a solo dance similar to a fan dance except large balloons are used instead of fans -00531886 04 n 04 interpretive_dance 0 interpretive_dancing 0 interpretative_dance 0 interpretative_dancing 0 001 @ 00530018 n 0000 | a form of modern dance in which the dancer's movements depict an emotion or tell a story -00532110 04 n 01 social_dancing 0 014 @ 00428270 n 0000 ~ 00532441 n 0000 ~ 00532567 n 0000 ~ 00532739 n 0000 ~ 00533036 n 0000 ~ 00533224 n 0000 ~ 00533322 n 0000 ~ 00533404 n 0000 ~ 00533535 n 0000 ~ 00533691 n 0000 ~ 00533805 n 0000 ~ 00534631 n 0000 ~ 00534849 n 0000 ~ 00537682 n 0000 | dancing as part of a social occasion -00532441 04 n 01 jitterbug 0 002 @ 00532110 n 0000 + 01898181 v 0101 | a jerky American dance that was popular in the 1940s -00532567 04 n 02 lindy 0 lindy_hop 0 001 @ 00532110 n 0000 | an energetic American dance that was popular in the 1930s (probably named for the aviator Charles Lindbergh) -00532739 04 n 01 fandango 0 001 @ 00532110 n 0000 | a provocative Spanish courtship dance in triple time; performed by a man and a woman playing castanets -00532896 04 n 01 farandole 0 001 @ 00537682 n 0000 | a lively dance from Provence; all the dancers join hands and execute various figures -00533036 04 n 02 flamenco 0 gypsy_dancing 0 001 @ 00532110 n 0000 | a style of dancing characteristic of the Andalusian Gypsies; vigorous and rhythmic with clapping and stamping of feet -00533224 04 n 01 gavotte 0 001 @ 00532110 n 0000 | an old formal French dance in quadruple time -00533322 04 n 01 habanera 0 001 @ 00532110 n 0000 | a Cuban dance in duple time -00533404 04 n 01 shag 0 002 @ 00532110 n 0000 + 01896119 v 0101 | a lively dance step consisting of hopping on each foot in turn -00533535 04 n 01 shimmy 0 002 @ 00532110 n 0000 + 01755389 v 0101 | lively dancing (usually to ragtime music) with much shaking of the shoulders and hips -00533691 04 n 01 stomp 0 002 @ 00532110 n 0000 + 01925338 v 0101 | a dance involving a rhythmical stamping step -00533805 04 n 02 tarantella 0 tarantelle 0 001 @ 00532110 n 0000 | a lively whirling Italian dance for two persons -00533922 04 n 02 dance_step 0 step 3 005 @ 00283127 n 0000 #p 00527695 n 0000 ~ 00293125 n 0000 ~ 00534152 n 0000 ~ 00534344 n 0000 | a sequence of foot movements that make up a particular dance; "he taught them the waltz step" -00534152 04 n 02 chasse 0 sashay 0 005 @ 00533922 n 0000 ;c 00528667 n 0000 + 01895027 v 0202 + 01869196 v 0202 + 01895027 v 0101 | (ballet) quick gliding steps with one foot always leading -00534344 04 n 01 glissade 0 003 @ 00533922 n 0000 ;c 00528667 n 0000 + 01894914 v 0101 | (ballet) a gliding or sliding step in ballet -00534480 04 n 01 turnout 1 003 @ 00342028 n 0000 ;c 00528667 n 0000 + 02045415 v 0101 | (ballet) the outward rotation of a dancer's leg from the hip -00534631 04 n 01 twist 0 002 @ 00532110 n 0000 + 01895519 v 0101 | social dancing in which couples vigorously twist their hips and arms in time to the music; was popular in the 1960s; "they liked to dance the twist" -00534849 04 n 02 ballroom_dancing 0 ballroom_dance 0 019 @ 00532110 n 0000 ~ 00535321 n 0000 ~ 00535455 n 0000 ~ 00535557 n 0000 ~ 00535732 n 0000 ~ 00535956 n 0000 ~ 00536120 n 0000 ~ 00536249 n 0000 ~ 00536359 n 0000 ~ 00536516 n 0000 ~ 00536655 n 0000 ~ 00536778 n 0000 ~ 00536872 n 0000 ~ 00536964 n 0000 ~ 00537085 n 0000 ~ 00537192 n 0000 ~ 00537297 n 0000 ~ 00537423 n 0000 ~ 00537534 n 0000 | any of a variety of social dances performed by couples in a ballroom -00535321 04 n 01 beguine 0 001 @ 00534849 n 0000 | a ballroom dance that originated in the French West Indies; similar to the rumba -00535455 04 n 01 carioca 0 001 @ 00534849 n 0000 | a lively ballroom dance that resembles the samba -00535557 04 n 02 cha-cha 0 cha-cha-cha 0 002 @ 00534849 n 0000 + 01897306 v 0101 | a modern ballroom dance from Latin America; small steps and swaying movements of the hips -00535732 04 n 01 one-step 0 003 @ 00534849 n 0000 + 01897677 v 0101 ~ 00535873 n 0000 | an early ballroom dance; precursor to the fox-trot -00535873 04 n 01 turkey_trot 0 001 @ 00535732 n 0000 | an early ragtime one-step -00535956 04 n 02 fox-trot 0 foxtrot 0 001 @ 00534849 n 0000 | a ballroom dance in quadruple time; combines short and long and fast and slow steps fixed sequences -00536120 04 n 01 two-step 0 002 @ 00534849 n 0000 + 01896995 v 0101 | a ballroom dance in duple meter; marked by sliding steps -00536249 04 n 01 bunny_hug 0 001 @ 00534849 n 0000 | a syncopated ballroom dance formerly popular in the US -00536359 04 n 01 Charleston 0 002 @ 00534849 n 0000 + 01897097 v 0101 | an American ballroom dance in syncopated rhythm; popular early in the 20th century -00536516 04 n 01 conga 0 002 @ 00534849 n 0000 + 01896767 v 0101 | a Latin American dance of 3 steps and a kick by people in single file -00536655 04 n 02 cotillion 0 cotilion 0 001 @ 00534849 n 0000 | a lively dance originating in France in the 18th century -00536778 04 n 01 minuet 0 001 @ 00534849 n 0000 | a stately court dance in the 17th century -00536872 04 n 01 paso_doble 0 001 @ 00534849 n 0000 | a ballroom dance in fast duple time -00536964 04 n 01 quickstep 1 002 @ 00534849 n 0000 + 01899158 v 0101 | a ballroom dance with both quick and slow steps -00537085 04 n 02 rumba 1 rhumba 1 001 @ 00534849 n 0000 | a ballroom dance based on the Cuban folk dance -00537192 04 n 01 samba 0 002 @ 00534849 n 0000 + 01896881 v 0101 | a lively ballroom dance from Brazil -00537297 04 n 02 round_dance 1 round_dancing 0 001 @ 00534849 n 0000 | a ballroom dance characterized by revolving movement -00537423 04 n 01 tango 0 002 @ 00534849 n 0000 + 01896007 v 0101 | a ballroom dance of Latin-American origin -00537534 04 n 02 waltz 0 valse 0 002 @ 00534849 n 0000 + 01895612 v 0101 | a ballroom dance in triple time with a strong accent on the first beat -00537682 04 n 02 folk_dancing 0 folk_dance 0 013 @ 00532110 n 0000 + 01898769 v 0201 + 01898769 v 0101 ~ 00532896 n 0000 ~ 00538052 n 0000 ~ 00538144 n 0000 ~ 00538368 n 0000 ~ 00538510 n 0000 ~ 00538876 n 0000 ~ 00538991 n 0000 ~ 00539121 n 0000 ~ 00539827 n 0000 ~ 00541779 n 0000 | a style of dancing that originated among ordinary people (not in the royal courts) -00538052 04 n 01 mazurka 0 001 @ 00537682 n 0000 | a Polish national dance in triple time -00538144 04 n 01 polka 0 002 @ 00537682 n 0000 + 01897583 v 0101 | a Bohemian dance with 3 steps and a hop in fast time -00538266 04 n 01 schottische 0 001 @ 00539827 n 0000 | a German round dance resembling a slow polka -00538368 04 n 02 morris_dance 0 morris_dancing 0 001 @ 00537682 n 0000 | any of various English folk dances performed by dancers in costume -00538510 04 n 02 sword_dance 0 sword_dancing 0 001 @ 00537682 n 0000 | any of various dances by men who step nimbly over swords or flourish them in the air -00538668 04 n 01 mambo 0 002 @ 00428270 n 0000 + 01897489 v 0101 | a Latin American dance similar in rhythm to the rumba -00538791 04 n 01 highland_fling 0 001 @ 00540211 n 0000 | a vigorous Scottish reel -00538876 04 n 01 hornpipe 0 002 @ 00537682 n 0000 ;r 08860123 n 0000 | a British solo dance performed by sailors -00538991 04 n 01 jig 0 002 @ 00537682 n 0000 + 01898032 v 0101 | any of various old rustic dances involving kicking and leaping -00539121 04 n 05 country-dance 0 country_dancing 0 contredanse 0 contra_danse 0 contradance 0 011 @ 00537682 n 0000 + 01896295 v 0404 + 01896295 v 0303 + 01896295 v 0102 ~ 00539510 n 0000 ~ 00539951 n 0000 ~ 00540701 n 0000 ~ 00540895 n 0000 ~ 00541035 n 0000 ~ 00541178 n 0000 ~ 00541338 n 0000 | a type of folk dance in which couples are arranged in sets or face one another in a line -00539510 04 n 02 longways 0 longways_dance 0 002 @ 00539121 n 0000 ~ 00539674 n 0000 | country dancing performed with couples in two long lines facing each other -00539674 04 n 02 Virginia_reel 0 reel 1 001 @ 00539510 n 0000 | an American country dance which starts with the couples facing each other in two lines -00539827 04 n 02 round_dance 0 ring_dance 0 002 @ 00537682 n 0000 ~ 00538266 n 0000 | a folk dance; dancers form a circle -00539951 04 n 02 square_dance 0 square_dancing 0 008 @ 00539121 n 0000 + 01898893 v 0101 ~ 00540211 n 0000 ~ 00540485 n 0000 %p 00540701 n 0000 %p 00540895 n 0000 %p 00541035 n 0000 %p 00541178 n 0000 | American country dancing in which couples form squares -00540211 04 n 02 reel 0 Scottish_reel 0 003 @ 00539951 n 0000 ~ 00538791 n 0000 ~ 00540396 n 0000 | a lively dance of Scottish Highlanders; marked by circular moves and gliding steps -00540396 04 n 01 eightsome 0 001 @ 00540211 n 0000 | a Scottish reel for eight dancers -00540485 04 n 01 quadrille 0 002 @ 00539951 n 0000 ~ 00540616 n 0000 | a square dance of 5 or more figures for 4 or more couples -00540616 04 n 01 lancers 0 001 @ 00540485 n 0000 | a quadrille for 8 or 16 couples -00540701 04 n 01 do-si-do 0 002 @ 00539121 n 0000 #p 00539951 n 0000 | a square-dance figure; two dancers approach each other and circle back to back before returning to their original places -00540895 04 n 01 promenade 2 002 @ 00539121 n 0000 #p 00539951 n 0000 | a square dance figure; couples march counterclockwise in a circle -00541035 04 n 01 sashay 1 002 @ 00539121 n 0000 #p 00539951 n 0000 | a square dance figure; partners circle each other taking sideways steps -00541178 04 n 01 swing 4 002 @ 00539121 n 0000 #p 00539951 n 0000 | a square dance figure; a pair of dancers join hands and dance around a point between them -00541338 04 n 01 landler 0 001 @ 00539121 n 0000 | a moderately slow Austrian country dance in triple time; involves spinning and clapping -00541479 04 n 03 ritual_dancing 0 ritual_dance 0 ceremonial_dance 0 010 @ 00428270 n 0000 #p 01027859 n 0000 ~ 00541972 n 0000 ~ 00542149 n 0000 ~ 00542323 n 0000 ~ 00542584 n 0000 ~ 00542711 n 0000 ~ 00542841 n 0000 ~ 00542992 n 0000 ~ 00543114 n 0000 | a dance that is part of a religious ritual -00541779 04 n 02 rumba 0 rhumba 0 001 @ 00537682 n 0000 | a folk dance in duple time that originated in Cuba with Spanish and African elements; features complex footwork and violent movement -00541972 04 n 01 apache_devil_dance 0 001 @ 00541479 n 0000 | a ritual dance of the Apache -00542065 04 n 01 corn_dance 0 001 @ 00542711 n 0000 | a rain dance of Amerindians -00542149 04 n 02 danse_macabre 0 dance_of_death 0 001 @ 00541479 n 0000 | a medieval dance in which a skeleton representing death leads a procession of others to the grave -00542323 04 n 01 ghost_dance 0 001 @ 00541479 n 0000 | a religious dance of Native Americans looking for communication with the dead -00542458 04 n 03 hula 0 hula-hula 0 Hawaiian_dancing 0 001 @ 00542711 n 0000 | a Polynesian rain dance performed by a woman -00542584 04 n 01 pyrrhic 0 002 @ 00541479 n 0000 + 03107450 a 0101 | an ancient Greek dance imitating the motions of warfare -00542711 04 n 01 rain_dance 0 003 @ 00541479 n 0000 ~ 00542065 n 0000 ~ 00542458 n 0000 | a ritual dance intended to bring rain -00542841 04 n 01 snake_dance 0 002 @ 00541479 n 0000 ;r 09044862 n 0000 | a ceremonial dance (as by the Hopi) in which snakes are handled or invoked -00542992 04 n 01 sun_dance 0 001 @ 00541479 n 0000 | a ceremonial dance performed by Amerindians at the summer solstice -00543114 04 n 01 war_dance 0 001 @ 00541479 n 0000 | a ceremonial dance performed before a battle or after a victory -00543233 04 n 01 music 0 058 @ 00407535 n 0000 ;c 07020895 n 0000 ;c 00545501 n 0000 + 01505462 a 0101 + 10340312 n 0101 + 10339966 n 0101 ~ 00544441 n 0000 ~ 00544731 n 0000 ~ 00544842 n 0000 ~ 00545059 n 0000 ~ 00545344 n 0000 ~ 00547454 n 0000 %p 15286042 n 0000 -c 01651110 v 0000 -c 01706889 v 0000 -c 01713796 v 0000 -c 01713983 v 0000 -c 01714095 v 0000 -c 01715525 v 0000 -c 01715997 v 0000 -c 01716407 v 0000 -c 01725615 v 0000 -c 01725734 v 0000 -c 01725886 v 0000 -c 01726039 v 0000 -c 01726172 v 0000 -c 01726605 v 0000 -c 01726762 v 0000 -c 01727052 v 0000 -c 01727230 v 0000 -c 01727490 v 0000 -c 01727684 v 0000 -c 01727866 v 0000 -c 01728052 v 0000 -c 01728213 v 0000 -c 01728355 v 0000 -c 01729142 v 0000 -c 01729295 v 0000 -c 01729431 v 0000 -c 01730059 v 0000 -c 01730216 v 0000 -c 01730384 v 0000 -c 01730663 v 0000 -c 01730799 v 0000 -c 01731031 v 0000 -c 01731577 v 0000 -c 01731718 v 0000 -c 01731828 v 0000 -c 01732014 v 0000 -c 01732532 v 0000 -c 01732713 v 0000 -c 01732921 v 0000 -c 01733213 v 0000 -c 01733667 v 0000 -c 01733829 v 0000 -c 01733994 v 0000 -c 01734131 v 0000 -c 01734300 v 0000 | musical activity (singing or whistling etc.); "his music was his central interest" -00544441 04 n 03 bell_ringing 0 carillon 0 carillon_playing 0 002 @ 00543233 n 0000 ~ 00544605 n 0000 | playing a set of bells that are (usually) hung in a tower -00544605 04 n 01 change_ringing 0 001 @ 00544441 n 0000 | ringing tuned bells in a fixed order that is continually changing -00544731 04 n 01 instrumental_music 0 001 @ 00543233 n 0000 | music produced by playing a musical instrument -00544842 04 n 01 intonation 2 004 @ 00543233 n 0000 + 01049737 v 0102 + 01049737 v 0103 ~ 01255125 n 0000 | the production of musical tones (by voice or instrument); especially the exactitude of the pitch relations -00545059 04 n 01 percussion 1 003 @ 00543233 n 0000 + 10415037 n 0101 ~ 00545194 n 0000 | the act of playing a percussion instrument -00545194 04 n 01 drumming 0 002 @ 00545059 n 0000 + 01732532 v 0101 | the act of playing drums; "he practiced his drumming several hours every day" -00545344 04 n 01 vocal_music 0 003 @ 00543233 n 0000 ~ 00545501 n 0000 ~ 00546389 n 0000 | music that is vocalized (as contrasted with instrumental music) -00545501 04 n 02 singing 0 vocalizing 0 027 @ 00545344 n 0000 @ 00100253 n 0000 + 01704236 v 0201 + 01731031 v 0101 + 01729431 v 0101 -c 00517231 n 0000 -c 00543233 n 0000 ~ 00546070 n 0000 ~ 00546216 n 0000 ~ 00546299 n 0000 ~ 00546861 n 0000 ~ 00546972 n 0000 ~ 00547101 n 0000 ~ 00547244 n 0000 ~ 01253778 n 0000 ~ 01253944 n 0000 ~ 01254685 n 0000 ~ 01254978 n 0000 ~ 01255302 n 0000 ~ 01255452 n 0000 ~ 01255549 n 0000 ~ 01255648 n 0000 ~ 01255808 n 0000 ~ 01255935 n 0000 ~ 01256124 n 0000 -c 08187988 n 0000 -c 09931418 n 0000 | the act of singing vocal music -00546070 04 n 02 a_cappella_singing 0 a_capella_singing 0 002 @ 00545501 n 0000 -c 07061334 n 0000 | singing without instrumental accompaniment -00546216 04 n 01 bel_canto 0 001 @ 00545501 n 0000 | a style of operatic singing -00546299 04 n 01 coloratura 0 001 @ 00545501 n 0000 | singing with florid ornamentation -00546389 04 n 02 song 0 strain 1 006 @ 00545344 n 0000 + 10624310 n 0101 + 01729431 v 0101 + 01731031 v 0101 ~ 00546613 n 0000 ~ 00546738 n 0000 | the act of singing; "with a shout and a song they marched up to the gates" -00546613 04 n 01 carol 0 002 @ 00546389 n 0000 + 01731828 v 0101 | a joyful song (usually celebrating the birth of Christ) -00546738 04 n 02 lullaby 0 cradlesong 0 001 @ 00546389 n 0000 | the act of singing a quiet song to lull a child to sleep -00546861 04 n 01 caroling 0 001 @ 00545501 n 0000 | singing joyful religious songs (especially at Christmas) -00546972 04 n 01 crooning 0 002 @ 00545501 n 0000 + 01049470 v 0101 | the act of singing popular songs in a sentimental manner -00547101 04 n 01 crooning 1 002 @ 00545501 n 0000 + 01049470 v 0101 | singing in a soft low tone; "her crooning soon put the child to sleep" -00547244 04 n 02 scat 0 scat_singing 0 002 @ 00545501 n 0000 @ 07062697 n 0000 | singing jazz; the singer substitutes nonsense syllables for the words of the song and tries to sound like a musical instrument -00547454 04 n 01 whistling 0 002 @ 00543233 n 0000 + 01043441 v 0101 | the act of whistling a tune; "his cheerful whistling indicated that he enjoyed his work" -00547616 04 n 01 beat 1 003 @ 00349369 n 0000 + 01624897 v 0101 + 01398919 v 0101 | a stroke or blow; "the signal was two beats on the steam pipe" -00547765 04 n 01 bow 1 003 @ 00349369 n 0000 ~ 00547960 n 0000 ~ 00548068 n 0000 | a stroke with a curved piece of wood with taut horsehair strands that is used in playing stringed instruments -00547960 04 n 01 down-bow 0 001 @ 00547765 n 0000 | a downward stroke from the heel to the tip of the bow -00548068 04 n 01 up-bow 0 001 @ 00547765 n 0000 | an upward stroke from the tip to the heel of the bow -00548173 04 n 01 officiation 1 003 @ 00097504 n 0000 + 02382087 v 0101 + 01096497 v 0101 | the performance of a religious or ceremonial or public duty -00548326 04 n 04 acting 0 playing 2 playacting 0 performing 0 020 @ 00407535 n 0000 @ 06157326 n 0000 #p 00550771 n 0000 + 01714208 v 0401 + 01719921 v 0304 + 01719921 v 0202 + 01719302 v 0202 + 02744977 v 0101 + 01719921 v 0101 + 01719302 v 0101 ~ 00548802 n 0000 ~ 00549284 n 0000 ~ 00549766 n 0000 ~ 00550016 n 0000 ~ 00550341 n 0000 ~ 00551508 n 0000 ~ 00551585 n 0000 ~ 00551714 n 0000 ~ 00551913 n 0000 ~ 00552097 n 0000 | the performance of a part or role in a drama -00548802 04 n 04 portrayal 2 characterization 0 enactment 0 personation 1 006 @ 00548326 n 0000 + 00837288 v 0403 + 01722447 v 0301 + 01723690 v 0102 ~ 00549106 n 0000 ~ 05929008 n 0000 | acting the part of a character on stage; dramatically representing the character by speech and action and gesture -00549106 04 n 01 impression 0 003 @ 00548802 n 0000 + 02747667 a 0101 + 02747466 a 0102 | an impressionistic portrayal of a person; "he did a funny impression of a politician" -00549284 04 n 02 impersonation 0 personation 0 005 @ 00548326 n 0000 + 00837288 v 0203 + 01723690 v 0101 + 00837288 v 0102 ~ 00549472 n 0000 | imitating the mannerisms of another person -00549472 04 n 02 apery 0 mimicry 0 003 @ 00549284 n 0000 + 02675067 v 0101 ~ 00549610 n 0000 | the act of mimicking; imitative behavior -00549610 04 n 03 parody 0 mockery 1 takeoff 1 004 @ 00549472 n 0000 + 01743313 v 0301 + 10400998 n 0101 + 01723963 v 0101 | humorous or satirical mimicry -00549766 04 n 02 method_acting 0 method 0 001 @ 00548326 n 0000 | an acting technique introduced by Stanislavsky in which the actor recalls emotions or reactions from his or her own life and uses them to identify with the character being portrayed -00550016 04 n 03 mime 0 pantomime 0 dumb_show 0 006 @ 00548326 n 0000 + 10318892 n 0205 + 01724185 v 0202 + 01216981 a 0101 + 01724185 v 0101 ~ 00550242 n 0000 | a performance using gestures and body movements without words -00550242 04 n 01 panto 0 002 @ 00550016 n 0000 ;r 08860123 n 0000 | an abbreviation of pantomime -00550341 04 n 03 business 3 stage_business 0 byplay 0 002 @ 00548326 n 0000 ~ 00550545 n 0000 | incidental activity performed by an actor for dramatic effect; "his business with the cane was hilarious" -00550545 04 n 04 shtik 0 schtik 0 shtick 0 schtick 0 002 @ 00550341 n 0000 ;c 06951067 n 0000 | (Yiddish) a contrived and often used bit of business that a performer uses to steal attention; "play it straight with no shtik" -00550771 04 n 01 performance 1 012 @ 00521562 n 0000 ~ 00099267 n 0000 ~ 00099439 n 0000 ~ 00099588 n 0000 ~ 00099799 n 0000 ~ 00099951 n 0000 ~ 00100253 n 0000 ~ 00100437 n 0000 ~ 00100543 n 0000 ~ 00212678 n 0000 %p 00548326 n 0000 ~ 00551215 n 0000 | the act of presenting a play or a piece of music or other entertainment; "we congratulated him on his performance at the rehearsal"; "an inspired performance of Mozart's C minor concerto" -00551215 04 n 02 program 0 programme 0 002 @ 00550771 n 0000 ~ 00551407 n 0000 | a performance (or series of performances) at a public presentation; "the program lasted more than two hours" -00551407 04 n 01 bill 0 001 @ 00551215 n 0000 | the entertainment offered at a public presentation -00551508 04 n 01 skit 0 001 @ 00548326 n 0000 | a short theatrical episode -00551585 04 n 02 hamming 0 overacting 0 003 @ 00548326 n 0000 + 01751173 v 0201 + 01751173 v 0103 | poor acting by a ham actor -00551714 04 n 01 heroics 0 002 @ 00548326 n 0000 ;u 06295235 n 0000 | ostentatious or vainglorious or extravagant or melodramatic conduct; "heroics are for those epic films they make in Hollywood" -00551913 04 n 01 reenactment 0 002 @ 00548326 n 0000 + 01722815 v 0101 | performing a role in an event that occurred at an earlier time; "the reenactment of the battle of Princeton" -00552097 04 n 01 roleplaying 0 002 @ 00548326 n 0000 + 01719921 v 0103 | acting a particular role (as in psychotherapy) -00552219 04 n 01 card_trick 0 001 @ 00099951 n 0000 | a trick performed with playing cards -00552312 04 n 02 prestidigitation 0 sleight_of_hand 0 001 @ 00099951 n 0000 | manual dexterity in the execution of tricks -00552436 04 n 02 liveliness 0 animation 1 003 @ 00407535 n 0000 + 00804371 a 0101 + 00804695 a 0101 | general activity and motion -00552568 04 n 01 brouhaha 0 001 @ 00553995 n 0000 | a confused disturbance far greater than its cause merits -00552679 04 n 02 circus 1 carnival 2 001 @ 00333829 n 0000 | a frenetic disorganized (and often comic) disturbance suggestive of a large public entertainment; "it was so funny it was a circus"; "the whole occasion had a carnival atmosphere" -00552922 04 n 02 disorganization 0 disorganisation 0 003 @ 00333829 n 0000 + 02436140 v 0202 + 02436140 v 0101 | the disturbance of a systematic arrangement causing disorder and confusion; "the disorganization of the enemy troops by a flank attack" -00553173 04 n 02 disruption 0 perturbation 0 006 @ 00333829 n 0000 + 02065652 v 0201 + 00276601 v 0201 + 00554298 v 0101 ~ 00553362 n 0000 ~ 00553655 n 0000 | the act of causing disorder -00553362 04 n 02 dislocation 0 breakdown 2 003 @ 00553173 n 0000 + 01103836 v 0201 + 00414823 v 0101 | the act of disrupting an established order so it fails to continue; "the social dislocations resulting from government policies"; "his warning came after the breakdown of talks in London" -00553655 04 n 02 surprise 0 surprisal 0 005 @ 00553173 n 0000 + 02596493 v 0201 + 00725274 v 0201 + 00725274 v 0101 + 02596493 v 0101 | the act of surprising someone -00553823 04 n 06 commotion 0 din 0 ruction 0 ruckus 0 rumpus 0 tumult 0 003 @ 00333829 n 0000 + 02585259 v 0501 ~ 00555138 n 0000 | the act of making a noisy disturbance -00553995 04 n 02 furor 0 furore 0 002 @ 00333829 n 0000 ~ 00552568 n 0000 | a sudden outburst (as of protest) -00554107 04 n 02 havoc 0 mayhem 1 001 @ 00333829 n 0000 | violent and needless disturbance -00554200 04 n 03 melee 0 scrimmage 0 battle_royal 0 001 @ 00333829 n 0000 | a noisy riotous fight -00554300 04 n 05 agitation 0 excitement 2 turmoil 0 upheaval 0 hullabaloo 0 001 @ 00333829 n 0000 | disturbance usually in protest -00554433 04 n 02 outburst 0 tumultuous_disturbance 0 001 @ 00333829 n 0000 | a sudden violent disturbance -00554541 04 n 02 rampage 0 violent_disorder 1 005 @ 00333829 n 0000 + 02512470 a 0101 + 02723016 v 0101 + 02584906 v 0101 ~ 00554726 n 0000 | violently angry and destructive behavior -00554726 04 n 01 wilding 0 001 @ 00554541 n 0000 | an outrageous rampage usually involving sexual attacks by men on women -00554850 04 n 03 upset 1 derangement 0 overthrow 2 003 @ 00333829 n 0000 + 00276601 v 0202 + 01770501 v 0102 | the act of disturbing the mind or body; "his carelessness could have caused an ecological upset"; "she was unprepared for this sudden overthrow of their normal way of living" -00555138 04 n 06 bustle 0 hustle 0 flurry 0 ado 0 fuss 0 stir 0 005 @ 00553823 n 0000 + 02550516 v 0502 + 02084252 v 0301 + 02058191 v 0203 + 02058191 v 0101 | a rapid active commotion -00555325 04 n 02 burst 2 fit 0 003 @ 00407535 n 0000 + 02715595 v 0102 ~ 00555525 n 0000 | a sudden flurry of activity (often for no obvious reason); "a burst of applause"; "a fit of housecleaning" -00555525 04 n 01 fits_and_starts 0 001 @ 00555325 n 0000 | repeated bursts of activity; "they worked in fits and starts" -00555648 04 n 04 haste 0 hurry 0 rush 0 rushing 1 010 @ 00279835 n 0000 + 02058994 v 0401 + 00459498 v 0401 + 02059462 v 0302 + 00459498 v 0301 + 00459296 v 0301 + 02058994 v 0301 + 02055649 v 0203 ~ 00555983 n 0000 ~ 00556142 n 0000 | the act of moving hurriedly and in a careless manner; "in his haste to leave he forgot his book" -00555983 04 n 02 dash 2 bolt 1 003 @ 00555648 n 0000 + 01966039 v 0201 + 02061495 v 0102 | the act of moving with great haste; "he made a dash for the door" -00556142 04 n 03 scamper 0 scramble 0 scurry 0 004 @ 00555648 n 0000 + 01902405 v 0301 + 01886334 v 0201 + 01902405 v 0102 | rushing about hastily in an undignified way -00556313 04 n 03 maneuver 3 manoeuvre 3 play 4 018 @ 00279835 n 0000 #p 00463246 n 0000 + 01080691 v 0301 + 01163355 v 0301 + 01931768 v 0204 ~ 00556834 n 0000 ~ 00556992 n 0000 ~ 00557419 n 0000 ~ 00557865 n 0000 ~ 00558008 n 0000 ~ 00558181 n 0000 ~ 00562179 n 0000 ~ 00562280 n 0000 ~ 00564177 n 0000 ~ 00565219 n 0000 ~ 00565302 n 0000 ~ 00976085 n 0000 ~ 00976270 n 0000 | a deliberate coordinated movement requiring dexterity and skill; "he made a great maneuver"; "the runner was out on a play by the shortstop" -00556834 04 n 01 takeaway 0 001 @ 00556313 n 0000 | the act of taking the ball or puck away from the team on the offense (as by the interception of a pass) -00556992 04 n 01 figure 0 003 @ 00556313 n 0000 ~ 00557184 n 0000 ~ 00557287 n 0000 | a predetermined set of movements in dancing or skating; "she made the best score on compulsory figures" -00557184 04 n 01 figure_eight 0 001 @ 00556992 n 0000 | a skating figure that carves an 8 in the ice -00557287 04 n 01 spread_eagle 0 001 @ 00556992 n 0000 | a skating figure executed with the skates heel to heel in a straight line -00557419 04 n 02 completion 2 pass_completion 0 003 @ 00556313 n 0000 ;c 00469651 n 0000 + 01117484 v 0101 | (American football) a successful forward pass in football -00557588 04 n 01 play 5 009 @ 05902545 n 0000 + 01079873 v 0101 + 01080064 v 0101 + 01072949 v 0101 ~ 00471277 n 0000 ~ 00558396 n 0000 ~ 00558630 n 0000 ~ 00563330 n 0000 ~ 00563494 n 0000 | a preset plan of action in team sports; "the coach drew up the plays for her team" -00557865 04 n 01 ball_hawking 0 001 @ 00556313 n 0000 | a skillful maneuver in catching balls or in stealing the ball from the opposing team -00558008 04 n 01 assist 0 004 @ 00556313 n 0000 ;c 00471613 n 0000 ;c 00480993 n 0000 ;c 00463543 n 0000 | (sports) the act of enabling another player to make a good play -00558181 04 n 02 icing 0 icing_the_puck 0 002 @ 00556313 n 0000 ;c 00463543 n 0000 | (ice hockey) the act of shooting the puck from within your own defensive area the length of the rink beyond the opponent's goal -00558396 04 n 01 power_play 2 002 @ 00557588 n 0000 ;c 00463543 n 0000 | (ice hockey) a play in which one team has a numerical advantage over the other as a result of penalties; "the team was unable to capitalize on the power play" -00558630 04 n 01 football_play 0 009 @ 00557588 n 0000 ;c 00469651 n 0000 ~ 00188183 n 0000 ~ 00188449 n 0000 ~ 00558883 n 0000 ~ 00560529 n 0000 ~ 00560866 n 0000 ~ 00561078 n 0000 ~ 00561985 n 0000 | (American football) a play by the offensive team -00558883 04 n 04 run 2 running 3 running_play 0 running_game 0 010 @ 00558630 n 0000 ;c 00469651 n 0000 + 01927447 v 0201 + 01927447 v 0101 + 02525312 v 0101 ~ 00559329 n 0000 ~ 00559555 n 0000 ~ 00559724 n 0000 ~ 00559916 n 0000 ~ 00560293 n 0000 | (American football) a play in which a player attempts to carry the ball through or past the opposing team; "the defensive line braced to stop the run"; "the coach put great emphasis on running" -00559329 04 n 02 draw 2 draw_play 0 002 @ 00558883 n 0000 ;c 00469651 n 0000 | (American football) the quarterback moves back as if to pass and then hands the ball to the fullback who is running toward the line of scrimmage -00559555 04 n 02 end_run 0 sweep 0 002 @ 00558883 n 0000 ;c 00469651 n 0000 | (American football) an attempt to advance the ball by running around the end of the line -00559724 04 n 01 return 5 003 @ 00558883 n 0000 ;c 00469651 n 0000 + 01433159 v 0101 | (American football) the act of running back the ball after a kickoff or punt or interception or fumble -00559916 04 n 01 reverse 0 003 @ 00558883 n 0000 ;c 00469651 n 0000 ~ 00560141 n 0000 | (American football) a running play in which a back running in one direction hands the ball to a back running in the opposite direction -00560141 04 n 01 double_reverse 0 001 @ 00559916 n 0000 | (American football) a running play in which a first reverse is followed by a second reverse -00560293 04 n 02 rush 1 rushing 0 004 @ 00558883 n 0000 ;c 00469651 n 0000 + 02059770 v 0201 + 02059770 v 0101 | (American football) an attempt to advance the ball by running into the line; "the linebackers were ready to stop a rush" -00560529 04 n 04 pass 2 passing_play 0 passing_game 0 passing 3 007 @ 00558630 n 0000 ;c 00469651 n 0000 + 02231473 v 0401 + 02231473 v 0101 ~ 00561226 n 0000 ~ 00561707 n 0000 ~ 00561820 n 0000 | (American football) a play that involves one player throwing the ball to a teammate; "the coach sent in a passing play on third and long" -00560866 04 n 01 power_play 1 002 @ 00558630 n 0000 ;c 00469651 n 0000 | a play in which there is a concentration of players in one location on the field of play; "they used a power play to return the kickoff" -00561078 04 n 01 handoff 0 002 @ 00558630 n 0000 ;c 00469651 n 0000 | (American football) a play in which one player hands the ball to a teammate -00561226 04 n 02 forward_pass 0 aerial 0 003 @ 00560529 n 0000 ~ 00561376 n 0000 ~ 00561570 n 0000 | a pass to a receiver downfield from the passer -00561376 04 n 02 flare_pass 0 flare 1 001 @ 00561226 n 0000 | a short forward pass to a back who is running toward the sidelines; "he threw a flare to the fullback who was tackled for a loss" -00561570 04 n 01 screen_pass 0 001 @ 00561226 n 0000 | a short forward pass in which the receiver is protected by a screen of blockers -00561707 04 n 02 lateral_pass 0 lateral 0 001 @ 00560529 n 0000 | a pass to a receiver upfield from the passer -00561820 04 n 01 spot_pass 0 001 @ 00560529 n 0000 | a pass to a designated spot on the field; the receiver should arrive at that spot the same time the ball does -00561985 04 n 01 tackle 0 003 @ 00558630 n 0000 ;c 00469651 n 0000 + 01150164 v 0101 | (American football) grasping an opposing player with the intention of stopping by throwing to the ground -00562179 04 n 01 jugglery 0 002 @ 00556313 n 0000 + 01604814 v 0101 | the performance of a juggler -00562280 04 n 01 obstruction 0 003 @ 00556313 n 0000 ~ 00562398 n 0000 ~ 00562935 n 0000 | getting in someone's way -00562398 04 n 02 blocking 0 block 0 008 @ 00562280 n 0000 + 01147060 v 0202 + 01476483 v 0106 + 01478002 v 0102 + 01147060 v 0102 ~ 00562643 n 0000 ~ 00562823 n 0000 ~ 01174495 n 0000 | the act of obstructing or deflecting someone's movements -00562643 04 n 01 interference 1 002 @ 00562398 n 0000 ;c 00469651 n 0000 | (American football) blocking a player's path with your body; "he ran interference for the quarterback" -00562823 04 n 01 trap_block 0 002 @ 00562398 n 0000 ;c 00469651 n 0000 | (American football) an illegal block -00562935 04 n 01 check 2 005 @ 00562280 n 0000 #p 00463543 n 0000 + 02557638 v 0101 ~ 00563097 n 0000 ~ 00563212 n 0000 | obstructing an opponent in ice hockey -00563097 04 n 01 crosscheck 0 001 @ 00562935 n 0000 | an illegal check (chopping at an opponent's arms or stick) -00563212 04 n 01 poke_check 0 001 @ 00562935 n 0000 | knocking the puck away by jabbing at it with the hockey stick -00563330 04 n 04 razzle-dazzle 0 razzle 0 razzmatazz 0 razmataz 0 001 @ 00557588 n 0000 | any exciting and complex play intended to confuse (dazzle) the opponent -00563494 04 n 01 basketball_play 0 005 @ 00557588 n 0000 #p 00480993 n 0000 ~ 00563665 n 0000 ~ 00563823 n 0000 ~ 00563998 n 0000 | a play executed by a basketball team -00563665 04 n 01 pick 1 001 @ 00563494 n 0000 | a basketball maneuver; obstructing an opponent with one's body; "he was called for setting an illegal pick" -00563823 04 n 01 switch 1 001 @ 00563494 n 0000 | a basketball maneuver; two defensive players shift assignments so that each guards the player usually guarded by the other -00563998 04 n 01 give-and-go 0 001 @ 00563494 n 0000 | a basketball maneuver; one offensive player passes the ball to another, then runs toward the basket to take a return pass -00564177 04 n 01 baseball_play 0 006 @ 00556313 n 0000 ;c 00471613 n 0000 ~ 00564373 n 0000 ~ 00564477 n 0000 ~ 00564583 n 0000 ~ 00564710 n 0000 | (baseball) a play executed by a baseball team -00564373 04 n 01 double_play 0 001 @ 00564177 n 0000 | the act of getting two players out on one play -00564477 04 n 01 triple_play 0 001 @ 00564177 n 0000 | the act of getting three players out on one play -00564583 04 n 01 pick-off 0 001 @ 00564177 n 0000 | a baseball play in which a base runner is caught off base and tagged out -00564710 04 n 01 squeeze_play 0 003 @ 00564177 n 0000 ~ 00564897 n 0000 ~ 00565051 n 0000 | a baseball play in which a runner on third base tries to score as the batter bunts the pitch -00564897 04 n 02 suicide_squeeze_play 0 suicide_squeeze 0 001 @ 00564710 n 0000 | the runner on third base starts home as the pitcher delivers the ball -00565051 04 n 02 safety_squeeze_play 0 safety_squeeze 0 001 @ 00564710 n 0000 | the runner on third base waits to start home until the batter has bunted successfully -00565219 04 n 01 footwork 0 001 @ 00556313 n 0000 | the manner of using the feet -00565302 04 n 02 stroke 0 shot 6 013 @ 00556313 n 0000 ;c 00523513 n 0000 + 01124608 v 0101 %p 00211776 n 0000 ~ 00500280 n 0000 ~ 00500449 n 0000 ~ 00500669 n 0000 ~ 00500927 n 0000 ~ 00565809 n 0000 ~ 00566040 n 0000 ~ 00566135 n 0000 ~ 00571444 n 0000 ~ 00571609 n 0000 | (sports) the act of swinging or striking at a ball with a club or racket or bat or cue or hand; "it took two strokes to get out of the bunker"; "a good shot requires good balance and tempo"; "he left me an almost impossible shot" -00565809 04 n 02 cut 8 undercut 0 005 @ 00565302 n 0000 ;c 00482298 n 0000 ;c 00480508 n 0000 ;c 00479887 n 0000 + 01403117 v 0201 | (sports) a stroke that puts reverse spin on the ball; "cuts do not bother a good tennis player" -00566040 04 n 01 swipe 0 002 @ 00565302 n 0000 + 01394200 v 0101 | a sweeping stroke or blow -00566135 04 n 02 tennis_stroke 0 tennis_shot 0 003 @ 00565302 n 0000 ~ 00566298 n 0000 ~ 00568430 n 0000 | the act of hitting a tennis ball with a tennis racket -00566298 04 n 01 return 4 014 @ 00566135 n 0000 #p 00482298 n 0000 ~ 00566690 n 0000 ~ 00566889 n 0000 ~ 00567044 n 0000 ~ 00567280 n 0000 ~ 00567418 n 0000 ~ 00567896 n 0000 ~ 00568286 n 0000 ~ 00569234 n 0000 ~ 00569361 n 0000 ~ 00569474 n 0000 ~ 00569608 n 0000 ~ 00569733 n 0000 | a tennis stroke that sends the ball back to the other player; "he won the point on a cross-court return" -00566690 04 n 03 backhand 0 backhand_stroke 0 backhand_shot 0 003 @ 00566298 n 0000 + 01404664 v 0101 ~ 00568166 n 0000 | a return made with the back of the hand facing the direction of the stroke -00566889 04 n 02 chop 0 chop_shot 0 002 @ 00566298 n 0000 + 01415454 v 0101 | a tennis return made with a downward motion that puts backspin on the ball -00567044 04 n 01 drive 5 008 @ 00566298 n 0000 ;c 00482298 n 0000 ;c 00479887 n 0000 + 01407722 v 0101 + 01509584 v 0101 + 01512259 v 0101 ~ 00567685 n 0000 ~ 00568057 n 0000 | (sports) a hard straight return (as in tennis or squash) -00567280 04 n 02 drop_shot 0 dink 0 001 @ 00566298 n 0000 | a soft return so that the tennis ball drops abruptly after crossing the net -00567418 04 n 03 forehand 0 forehand_stroke 0 forehand_shot 0 004 @ 00566298 n 0000 ;c 00482298 n 0000 ;c 00480508 n 0000 ;c 00479887 n 0000 | (sports) a return made with the palm of the hand facing the direction of the stroke (as in tennis or badminton or squash) -00567685 04 n 01 forehand_drive 0 004 @ 00567044 n 0000 ;c 00482298 n 0000 ;c 00480508 n 0000 ;c 00479887 n 0000 | (sports) hard straight return made on the forehand side (as in tennis or badminton or squash) -00567896 04 n 01 get 0 001 @ 00566298 n 0000 | a return on a shot that seemed impossible to reach and would normally have resulted in a point for the opponent -00568057 04 n 01 backhand_drive 0 001 @ 00567044 n 0000 | a hard straight return made on the backhand side -00568166 04 n 01 two-handed_backhand 0 001 @ 00566690 n 0000 | a backhand shot made holding the racquet in both hands -00568286 04 n 01 ground_stroke 0 002 @ 00566298 n 0000 ! 00569733 n 0101 | a tennis return made by hitting the ball after it has bounced once -00568430 04 n 02 serve 0 service 2 008 @ 00566135 n 0000 ;c 00482298 n 0000 ;c 00480508 n 0000 ;c 00479887 n 0000 + 01077568 v 0101 ~ 00568701 n 0000 ~ 00568813 n 0000 ~ 00569073 n 0000 | (sports) a stroke that puts the ball in play; "his powerful serves won the game" -00568701 04 n 01 ace 0 002 @ 00568430 n 0000 + 01077759 v 0101 | a serve that the receiver is unable to reach -00568813 04 n 01 fault 1 006 @ 00568430 n 0000 ;c 00482298 n 0000 ;c 00480508 n 0000 ;c 00479887 n 0000 ~ 00071546 n 0000 ~ 00071700 n 0000 | (sports) a serve that is illegal (e.g., that lands outside the prescribed area); "he served too many double faults" -00569073 04 n 02 let 0 net_ball 1 001 @ 00568430 n 0000 | a serve that strikes the net before falling into the receiver's court; the ball must be served again -00569234 04 n 01 half_volley 0 001 @ 00566298 n 0000 | a tennis return made by hitting the ball immediately after it bounces -00569361 04 n 01 lob 1 002 @ 00566298 n 0000 + 01513290 v 0101 | an easy return of a tennis ball in a high arc -00569474 04 n 02 overhead 0 smash 2 002 @ 00566298 n 0000 + 01561583 v 0201 | a hard return hitting the tennis ball above your head -00569608 04 n 01 passing_shot 0 001 @ 00566298 n 0000 | a tennis return that passes an opponent who has approached the net -00569733 04 n 01 volley 1 004 @ 00566298 n 0000 + 01075498 v 0101 + 01598255 v 0101 ! 00568286 n 0101 | a tennis return made by hitting the ball before it bounces -00569898 04 n 01 stroke 4 002 @ 00283127 n 0000 ~ 00570066 n 0000 | any one of the repeated movements of the limbs and body used for locomotion in swimming or rowing -00570066 04 n 01 swimming_stroke 0 009 @ 00569898 n 0000 ~ 00570366 n 0000 ~ 00570572 n 0000 ~ 00570683 n 0000 ~ 00570854 n 0000 ~ 00571060 n 0000 ~ 00571283 n 0000 %p 00574227 n 0000 ~ 00575214 n 0000 | a method of moving the arms and legs to push against the water and propel the swimmer forward -00570366 04 n 03 crawl 2 front_crawl 0 Australian_crawl 0 003 @ 00570066 n 0000 + 01961974 v 0101 %p 00574430 n 0000 | a swimming stroke; arms are moved alternately overhead accompanied by a flutter kick -00570572 04 n 01 dog_paddle 0 001 @ 00570066 n 0000 | an elementary swimming stroke imitating a swimming dog -00570683 04 n 01 sidestroke 0 002 @ 00570066 n 0000 %p 00574925 n 0000 | a swimming stroke in which the arms move forward and backward while the legs do a scissors kick -00570854 04 n 02 butterfly 0 butterfly_stroke 0 002 @ 00570066 n 0000 %p 00574790 n 0000 | a swimming stroke in which the arms are thrown forward together out of the water while the feet kick up and down -00571060 04 n 01 breaststroke 0 003 @ 00570066 n 0000 + 09873769 n 0101 %p 00574608 n 0000 | a swimming stroke; the arms are extended together in front of the head and swept back on either side accompanied by a frog kick -00571283 04 n 01 backstroke 0 002 @ 00570066 n 0000 %p 00574430 n 0000 | a swimming stroke that resembles the crawl except the swimmer lies on his or her back -00571444 04 n 03 baseball_swing 0 swing 2 cut 7 001 @ 00565302 n 0000 | in baseball; a batter's attempt to hit a pitched ball; "he took a vicious cut at the ball" -00571609 04 n 03 golf_stroke 0 golf_shot 0 swing 3 012 @ 00565302 n 0000 + 02087745 v 0301 ~ 00571956 n 0000 ~ 00572043 n 0000 ~ 00572285 n 0000 ~ 00572489 n 0000 ~ 00572706 n 0000 ~ 00572838 n 0000 ~ 00573268 n 0000 ~ 00573775 n 0000 ~ 00573945 n 0000 ~ 00574077 n 0000 | the act of swinging a golf club at a golf ball and (usually) hitting it -00571956 04 n 01 downswing 0 001 @ 00571609 n 0000 | a swing downward of a golf club -00572043 04 n 03 slice 0 fade 1 slicing 1 005 @ 00571609 n 0000 + 01408958 v 0301 + 01124389 v 0301 + 01124389 v 0101 + 01408958 v 0101 | a golf shot that curves to the right for a right-handed golfer; "he took lessons to cure his slicing" -00572285 04 n 03 hook 2 draw 3 hooking 0 003 @ 00571609 n 0000 + 01409177 v 0301 + 01409177 v 0101 | a golf shot that curves to the left for a right-handed golfer; "he took lessons to cure his hooking" -00572489 04 n 02 drive 3 driving 3 005 @ 00571609 n 0000 + 01407904 v 0201 + 01407904 v 0101 + 01509584 v 0101 + 01512259 v 0101 | hitting a golf ball off of a tee with a driver; "he sliced his drive out of bounds" -00572706 04 n 01 explosion 1 001 @ 00571609 n 0000 | a golf shot from a bunker that typically moves sand as well as the golf ball -00572838 04 n 02 putt 0 putting 0 005 @ 00571609 n 0000 + 01403785 v 0201 + 01403540 v 0201 + 01403785 v 0101 + 01403540 v 0101 | hitting a golf ball that is on the green using a putter; "his putting let him down today; he didn't sink a single putt over three feet" -00573106 04 n 01 clock_golf 0 001 @ 00464894 n 0000 | a form of golf in which you putt from positions arranged on the circumference of a circle around the hole -00573268 04 n 02 approach 1 approach_shot 0 004 @ 00571609 n 0000 ;c 00464894 n 0000 ~ 00573530 n 0000 ~ 00573664 n 0000 | a relatively short golf shot intended to put the ball onto the putting green; "he lost the hole when his approach rolled over the green" -00573530 04 n 02 chip 1 chip_shot 0 003 @ 00573268 n 0000 ;c 00464894 n 0000 + 01598140 v 0101 | (golf) a low running approach shot -00573664 04 n 02 pitch 2 pitch_shot 0 002 @ 00573268 n 0000 + 01402637 v 0101 | a high approach shot in golf -00573775 04 n 01 sclaff 0 003 @ 00571609 n 0000 + 01417257 v 0101 + 01410946 v 0101 | a poor golf stroke in which the club head hits the ground before hitting the ball -00573945 04 n 01 shank 0 002 @ 00571609 n 0000 + 01402447 v 0101 | a poor golf stroke in which the heel of the club hits the ball -00574077 04 n 01 teeoff 0 002 @ 00571609 n 0000 + 01084170 v 0101 | the act of hitting a golf ball from the teeing ground at the start of each hole -00574227 04 n 01 swimming_kick 0 007 @ 00336805 n 0000 #p 00570066 n 0000 ~ 00574430 n 0000 ~ 00574608 n 0000 ~ 00574790 n 0000 ~ 00574925 n 0000 ~ 00575083 n 0000 | a movement of the legs in swimming -00574430 04 n 01 flutter_kick 0 003 @ 00574227 n 0000 #p 00570366 n 0000 #p 00571283 n 0000 | a swimming kick; the legs are moved rapidly up and down without bending the knees -00574608 04 n 01 frog_kick 0 002 @ 00574227 n 0000 #p 00571060 n 0000 | a swimming kick; knees are drawn upward and outward so the legs can be brought together when fully extended -00574790 04 n 01 dolphin_kick 0 002 @ 00574227 n 0000 #p 00570854 n 0000 | a swimming kick; an up and down kick of the feet together -00574925 04 n 01 scissors_kick 0 002 @ 00574227 n 0000 #p 00570683 n 0000 | a kick used in the sidestroke; legs are brought together in a scissoring motion -00575083 04 n 01 thrash 0 003 @ 00574227 n 0000 #p 00575214 n 0000 + 01890792 v 0104 | a swimming kick used while treading water -00575214 04 n 01 treading_water 0 002 @ 00570066 n 0000 %p 00575083 n 0000 | a stroke that keeps the head above water by thrashing the legs and arms -00575365 04 n 09 cinch 1 breeze 0 picnic 0 snap 2 duck_soup 0 child's_play 0 pushover 0 walkover 0 piece_of_cake 0 005 @ 00795720 n 0000 + 01102667 v 0801 + 01894520 v 0201 + 00635794 v 0101 ~ 00575657 n 0000 | any undertaking that is easy to do; "marketing this product will be no picnic" -00575657 04 n 01 doddle 0 002 @ 00575365 n 0000 ;r 08860123 n 0000 | an easy task -00575741 04 n 01 work 0 032 @ 00407535 n 0000 + 02373015 v 0101 + 02594979 v 0101 + 02413480 v 0101 + 02407987 v 0101 ~ 00255710 n 0000 ~ 00576451 n 0000 ~ 00576717 n 0000 ~ 00576877 n 0000 ~ 00577068 n 0000 ~ 00577525 n 0000 ~ 00578795 n 0000 ~ 00580190 n 0000 ~ 00580880 n 0000 ~ 00580961 n 0000 ~ 00581090 n 0000 ~ 00581621 n 0000 ~ 00581772 n 0000 ~ 00581885 n 0000 ~ 00581991 n 0000 ~ 00582071 n 0000 ~ 00582195 n 0000 ~ 00620752 n 0000 ~ 00623670 n 0000 ~ 00633864 n 0000 ~ 00654885 n 0000 ~ 00719494 n 0000 ~ 00730984 n 0000 ~ 00795508 n 0000 ~ 00795625 n 0000 ~ 00795720 n 0000 ~ 00885088 n 0000 | activity directed toward making or doing something; "she checked several points needing further work" -00576451 04 n 01 action 0 001 @ 00575741 n 0000 | the most important or interesting work or activity in a specific area or field; "the action is no longer in technology stocks but in municipal bonds"; "gawkers always try to get as close to the action as possible" -00576717 04 n 01 job 3 001 @ 00575741 n 0000 | a damaging piece of work; "dry rot did the job of destroying the barn"; "the barber did a real job on my hair" -00576877 04 n 01 job 5 003 @ 00575741 n 0000 + 02420789 v 0101 + 02461063 v 0103 | the performance of a piece of work; "she did an outstanding job as Ophelia"; "he gave it up as a bad job" -00577068 04 n 02 operation 5 procedure 2 003 @ 00575741 n 0000 + 03103198 a 0201 + 01525666 v 0103 | a process or series of acts especially of a practical or mechanical nature involved in a particular form of work; "the operations in building a house"; "certain machine tool operations" -00577357 04 n 02 works 0 deeds 0 002 @ 00407535 n 0000 ;u 06295235 n 0000 | performance of moral or religious acts; "salvation by deeds"; "the reward for good works" -00577525 04 n 01 service 8 005 @ 00575741 n 0000 ~ 00577749 n 0000 ~ 00578549 n 0000 ~ 00579201 n 0000 ~ 00579334 n 0000 | work done by one person or group that benefits another; "budget separately for goods and services" -00577749 04 n 01 consulting_service 0 003 @ 00577525 n 0000 ~ 00577931 n 0000 ~ 00578154 n 0000 | service provided by a professional advisor (e.g., a lawyer or doctor or CPA etc.) -00577931 04 n 01 advisory_service 0 001 @ 00577749 n 0000 | a consulting service in which a CPA develops findings and conclusions and recommendations that are presented to the client for consideration and decision making -00578154 04 n 02 attestation_service 0 attestation_report 0 002 @ 00577749 n 0000 ~ 00578405 n 0000 | a consulting service in which a CPA expresses a conclusion about the reliability of a written statement that is the responsibility of someone else -00578405 04 n 01 financial_audit 0 002 @ 00578154 n 0000 @ 13411157 n 0000 | an attestation that the client's financial statement is accurate -00578549 04 n 01 facility 0 001 @ 00577525 n 0000 | a service that an organization or a piece of equipment offers you; "a cell phone with internet facility" -00578708 04 n 01 laundering 0 001 @ 00255710 n 0000 | washing clothes and bed linens -00578795 04 n 02 shining 0 polishing 0 004 @ 00575741 n 0000 + 01245637 v 0201 + 01245637 v 0104 ~ 00579082 n 0000 | the work of making something smooth and shiny by rubbing or waxing it; "the shining of shoes provided a meager living"; "every Sunday he gave his car a good polishing" -00579082 04 n 01 shoeshine 0 001 @ 00578795 n 0000 | the act of shining shoes; "he charged a dollar for a shoeshine" -00579201 04 n 01 national_service 0 002 @ 00577525 n 0000 ;c 08199025 n 0000 | compulsory service in the military during peacetime -00579334 04 n 01 utility 0 001 @ 00577525 n 0000 | the service (electric power or water or transportation) provided by a public utility; "the cost of utilities never decreases"; "all the utilities were lost after the hurricane" -00579564 04 n 01 service 9 005 @ 00407535 n 0000 ;c 06535035 n 0000 ~ 00579834 n 0000 ~ 00579977 n 0000 ~ 00580081 n 0000 | (law) the acts performed by an English feudal tenant for the benefit of his lord which formed the consideration for the property granted to him -00579834 04 n 01 socage 0 001 @ 00579564 n 0000 | land tenure by agricultural service or payment of rent; not burdened with military service -00579977 04 n 01 military_service 1 001 @ 00579564 n 0000 | land tenure by service in the lord's army -00580081 04 n 01 knight's_service 0 001 @ 00579564 n 0000 | land tenure by service to the lord as a knight -00580190 04 n 01 heavy_lifting 0 002 @ 00575741 n 0000 ;u 07075172 n 0000 | difficult work; "the boss hoped the plan would succeed but he wasn't willing to do the heavy lifting" -00580370 04 n 01 housecleaning 0 002 @ 00251013 n 0000 + 01533442 v 0101 | the act of cleaning the rooms and furnishings of a house; "efficient housecleaning should proceed one room at a time" -00580565 04 n 01 housecleaning 1 002 @ 00260622 n 0000 ;u 07105475 n 0000 | (figurative) the act of reforming by the removal of unwanted personnel or practices or conditions; "more housecleaning is in store at other accounting firms"; "many employees were discharged in a general housecleaning by the new owners" -00580880 04 n 01 housewifery 0 001 @ 00575741 n 0000 | the work of a housewife -00580961 04 n 02 housework 0 housekeeping 0 002 @ 00575741 n 0000 + 02683316 v 0201 | the work of cleaning and running a house -00581090 04 n 01 ironing 0 002 @ 00575741 n 0000 + 01390833 v 0101 | the work of using heat to smooth washed clothes in order to remove any wrinkles -00581241 04 n 02 workload 0 work_load 0 002 @ 00584367 n 0000 ~ 00581382 n 0000 | work that a person is expected to do in a specified time -00581382 04 n 01 case_load 0 001 @ 00581241 n 0000 | the number of cases handled in a given period of time (as by a court or agency) -00581517 04 n 01 piecework 0 001 @ 00584367 n 0000 | work paid for according to the quantity produced -00581621 04 n 02 busywork 0 make-work 0 001 @ 00575741 n 0000 | active work of little value; "while he was waiting he filled the days with busywork" -00581772 04 n 01 logging 0 002 @ 00575741 n 0000 + 01258828 v 0101 | the work of cutting down trees for timber -00581885 04 n 02 loose_end 0 unfinished_business 0 001 @ 00575741 n 0000 | work that is left incomplete -00581991 04 n 01 nightwork 0 001 @ 00575741 n 0000 | work to be done at night -00582071 04 n 01 paperwork 0 001 @ 00575741 n 0000 | work that involves handling papers: forms or letters or reports etc. -00582195 04 n 02 welfare_work 0 social_service 0 003 @ 00575741 n 0000 ~ 01208924 n 0000 ~ 01209079 n 0000 | an organized activity to improve the condition of disadvantaged people in society -00582388 04 n 05 occupation 0 business 0 job 0 line_of_work 0 line 0 017 @ 00407535 n 0000 + 00600370 v 0104 ~ 00433113 n 0000 ~ 00433216 n 0000 ~ 00453731 n 0000 ~ 00583089 n 0000 ~ 00583246 n 0000 ~ 00584367 n 0000 ~ 00586105 n 0000 ~ 00586262 n 0000 ~ 00606119 n 0000 ~ 00606370 n 0000 ~ 00609953 n 0000 ~ 00610222 n 0000 ~ 00618734 n 0000 ~ 00620554 n 0000 ~ 01104324 n 0000 | the principal activity in your life that you do to earn money; "he's not in my line of business" -00582868 04 n 01 occupation 4 004 @ 00407535 n 0000 + 02678438 v 0103 + 02415831 v 0102 + 00600370 v 0104 | any activity that occupies a person's attention; "he missed the bell in his occupation with the computer game" -00583089 04 n 02 game 2 biz 0 002 @ 00582388 n 0000 ;u 07075172 n 0000 | your occupation or line of work; "he's in the plumbing game"; "she's in show biz" -00583246 04 n 03 career 0 calling 0 vocation 0 006 @ 00582388 n 0000 + 00753881 v 0201 ~ 00583461 n 0000 ~ 00584160 n 0000 ~ 00584248 n 0000 ~ 00606227 n 0000 | the particular occupation for which you are trained -00583461 04 n 05 specialization 0 specialisation 0 specialty 0 speciality 0 specialism 0 005 @ 00583246 n 0000 + 10632576 n 0501 + 10631941 n 0501 + 02446164 v 0202 + 02446164 v 0101 | the special line of work you have adopted as your career; "his specialization is gastroenterology" -00583747 04 n 02 specialization 1 specialisation 1 003 @ 00199130 n 0000 + 00437732 v 0202 + 00437732 v 0101 | the act of specializing; making something suitable for a special purpose -00583933 04 n 02 spiritualization 0 spiritualisation 0 005 @ 00199130 n 0000 + 00623947 v 0202 + 00476313 v 0202 + 00623947 v 0101 + 00476313 v 0101 | the act of making something spiritual; infusing it with spiritual content -00584160 04 n 01 lifework 0 001 @ 00583246 n 0000 | the principal work of your career -00584248 04 n 02 walk_of_life 0 walk 4 001 @ 00583246 n 0000 | careers in general; "it happens in all walks of life" -00584367 04 n 02 employment 0 work 1 014 @ 00582388 n 0000 + 02407987 v 0201 + 02410855 v 0201 ~ 00270800 n 0000 ~ 00270919 n 0000 ~ 00314271 n 0000 ~ 00314469 n 0000 ~ 00581241 n 0000 ~ 00581517 n 0000 ~ 00584891 n 0000 ~ 00585018 n 0000 ~ 00585174 n 0000 ~ 00585660 n 0000 ~ 00720331 n 0000 | the occupation for which you are paid; "he is looking for employment"; "a lot of people are out of work" -00584769 04 n 01 job 4 001 @ 01129920 n 0000 | the responsibility to do something; "it is their job to print the truth" -00584891 04 n 01 service 7 001 @ 00584367 n 0000 | employment in or work for another; "he retired after 30 years of service" -00585018 04 n 02 telecommuting 0 teleworking 0 001 @ 00584367 n 0000 | employment at home while communicating with the workplace by phone or fax or modem -00585174 04 n 01 services 0 002 @ 00584367 n 0000 ;u 06295235 n 0000 | performance of duties or provision of space and equipment helpful to others; "the mayor tried to maintain city services"; "the medical services are excellent" -00585406 04 n 01 facility 1 002 @ 00021939 n 0000 ~ 04018667 n 0000 | something designed and created to serve a particular function and to afford a particular convenience or service; "catering facilities"; "toilet facilities"; "educational facilities" -00585660 04 n 01 public_service 0 002 @ 00584367 n 0000 ~ 00585810 n 0000 | employment within a government system (especially in the civil service) -00585810 04 n 01 minister 0 004 @ 00585660 n 0000 ;r 08860123 n 0000 + 02764643 a 0101 ~ 00585964 n 0000 | the job of a head of a government department -00585964 04 n 01 cabinet_minister 0 002 @ 00585810 n 0000 #m 08381820 n 0000 | the job of a senior minister who is a member of the cabinet -00586105 04 n 01 appointment 1 001 @ 00582388 n 0000 | the job to which you are (or hope to be) appointed; "he applied for an appointment in the treasury" -00586262 04 n 08 position 1 post 0 berth 0 office 2 spot 1 billet 0 place 0 situation 0 114 @ 00582388 n 0000 + 01088923 v 0704 + 02537960 v 0701 + 02333689 v 0702 + 01096497 v 0401 + 02385634 v 0201 ~ 00588473 n 0000 ~ 00588598 n 0000 ~ 00588703 n 0000 ~ 00588780 n 0000 ~ 00588881 n 0000 ~ 00588998 n 0000 ~ 00589103 n 0000 ~ 00589217 n 0000 ~ 00589318 n 0000 ~ 00589415 n 0000 ~ 00589494 n 0000 ~ 00589596 n 0000 ~ 00589691 n 0000 ~ 00589769 n 0000 ~ 00589948 n 0000 ~ 00590047 n 0000 ~ 00590148 n 0000 ~ 00590269 n 0000 ~ 00590383 n 0000 ~ 00590518 n 0000 ~ 00590626 n 0000 ~ 00590806 n 0000 ~ 00590913 n 0000 ~ 00591006 n 0000 ~ 00591111 n 0000 ~ 00591236 n 0000 ~ 00591446 n 0000 ~ 00591523 n 0000 ~ 00591622 n 0000 ~ 00591725 n 0000 ~ 00591858 n 0000 ~ 00592001 n 0000 ~ 00592102 n 0000 ~ 00592199 n 0000 ~ 00592292 n 0000 ~ 00592367 n 0000 ~ 00592446 n 0000 ~ 00592535 n 0000 ~ 00592652 n 0000 ~ 00592795 n 0000 ~ 00593108 n 0000 ~ 00593219 n 0000 ~ 00593389 n 0000 ~ 00593512 n 0000 ~ 00593613 n 0000 ~ 00593732 n 0000 ~ 00593837 n 0000 ~ 00593944 n 0000 ~ 00594070 n 0000 ~ 00594146 n 0000 ~ 00594260 n 0000 ~ 00594374 n 0000 ~ 00594477 n 0000 ~ 00594580 n 0000 ~ 00594738 n 0000 ~ 00594836 n 0000 ~ 00594953 n 0000 ~ 00595032 n 0000 ~ 00595146 n 0000 ~ 00595333 n 0000 ~ 00595410 n 0000 ~ 00595545 n 0000 ~ 00595684 n 0000 ~ 00595785 n 0000 ~ 00595894 n 0000 ~ 00596081 n 0000 ~ 00596193 n 0000 ~ 00596290 n 0000 ~ 00596393 n 0000 ~ 00596496 n 0000 ~ 00596592 n 0000 ~ 00596692 n 0000 ~ 00596807 n 0000 ~ 00597532 n 0000 ~ 00597629 n 0000 ~ 00597728 n 0000 ~ 00597821 n 0000 ~ 00597957 n 0000 ~ 00598056 n 0000 ~ 00598215 n 0000 ~ 00598318 n 0000 ~ 00598678 n 0000 ~ 00598767 n 0000 ~ 00598868 n 0000 ~ 00598970 n 0000 ~ 00599064 n 0000 ~ 00599234 n 0000 ~ 00599329 n 0000 ~ 00599472 n 0000 ~ 00603866 n 0000 ~ 00604131 n 0000 ~ 00604228 n 0000 ~ 00604321 n 0000 ~ 00604424 n 0000 ~ 00604523 n 0000 ~ 00604694 n 0000 ~ 00604811 n 0000 ~ 00604910 n 0000 ~ 00605023 n 0000 ~ 00605246 n 0000 ~ 00605349 n 0000 ~ 00605430 n 0000 ~ 00605511 n 0000 ~ 00605616 n 0000 ~ 00605715 n 0000 ~ 00605812 n 0000 ~ 00605909 n 0000 ~ 00606006 n 0000 | a job in an organization; "he occupied a post in the treasury" -00588473 04 n 01 academicianship 0 002 @ 00586262 n 0000 + 09759501 n 0101 | the position of member of an honorary academy -00588598 04 n 01 accountantship 0 002 @ 00586262 n 0000 + 09761403 n 0101 | the position of accountant -00588703 04 n 01 admiralty 0 001 @ 00586262 n 0000 | the office of admiral -00588780 04 n 01 ambassadorship 0 002 @ 00586262 n 0000 + 09787534 n 0101 | the post of ambassador -00588881 04 n 01 apostleship 0 003 @ 00586262 n 0000 + 09798811 n 0101 + 09799461 n 0101 | the position of apostle -00588998 04 n 01 apprenticeship 0 002 @ 00586262 n 0000 + 09801864 n 0101 | the position of apprentice -00589103 04 n 01 associateship 0 001 @ 00586262 n 0000 | the position of associate (as in an office or academy) -00589217 04 n 01 attorneyship 0 002 @ 00586262 n 0000 + 10249950 n 0102 | the position of attorney -00589318 04 n 01 bailiffship 0 002 @ 00586262 n 0000 + 09833111 n 0101 | the office of bailiff -00589415 04 n 01 baronetage 0 001 @ 00586262 n 0000 | the state of a baronet -00589494 04 n 02 bishopry 0 episcopate 0 001 @ 00586262 n 0000 | the office and dignity of a bishop -00589596 04 n 01 cadetship 0 002 @ 00586262 n 0000 + 09886540 n 0101 | the position of cadet -00589691 04 n 01 caliphate 0 001 @ 00586262 n 0000 | the office of a caliph -00589769 04 n 02 captainship 0 captaincy 0 006 @ 00586262 n 0000 + 09893191 n 0101 + 09893015 n 0101 + 10298912 n 0102 + 09892831 n 0101 + 09892693 n 0101 | the post of captain -00589948 04 n 01 cardinalship 0 002 @ 00586262 n 0000 + 09894143 n 0101 | the office of cardinal -00590047 04 n 01 chairmanship 0 002 @ 00586262 n 0000 + 10468962 n 0102 | the position of chairman -00590148 04 n 01 chancellorship 0 003 @ 00586262 n 0000 + 09906848 n 0101 + 09906986 n 0101 | the office of chancellor -00590269 04 n 02 chaplaincy 0 chaplainship 0 002 @ 00586262 n 0000 + 09908508 n 0201 | the position of chaplain -00590383 04 n 02 chieftaincy 0 chieftainship 0 003 @ 00586262 n 0000 + 09893344 n 0202 + 10164025 n 0203 | the position of chieftain -00590518 04 n 01 clerkship 0 003 @ 00586262 n 0000 + 10548227 n 0103 + 09928451 n 0101 | the job of clerk -00590626 04 n 02 commandership 0 commandery 0 005 @ 00586262 n 0000 + 09941383 n 0101 + 09780828 n 0102 + 09941571 n 0101 + 09941964 n 0103 | the position or office of commander -00590806 04 n 01 comptrollership 0 002 @ 00586262 n 0000 + 09761403 n 0102 | the position of comptroller -00590913 04 n 01 consulship 0 002 @ 00586262 n 0000 + 09959797 n 0101 | the post of consul -00591006 04 n 01 controllership 0 002 @ 00586262 n 0000 + 09761403 n 0103 | the position of controller -00591111 04 n 02 councillorship 0 councilorship 0 002 @ 00586262 n 0000 + 09944763 n 0102 | the position of council member -00591236 04 n 02 counselorship 0 counsellorship 0 007 @ 00586262 n 0000 + 09969062 n 0202 + 09968845 n 0202 + 09775663 n 0204 + 09969062 n 0101 + 09968845 n 0101 + 09775663 n 0103 | the position of counselor -00591446 04 n 01 curacy 0 001 @ 00586262 n 0000 | the position of a curate -00591523 04 n 01 curatorship 0 002 @ 00586262 n 0000 + 09983889 n 0101 | the position of curator -00591622 04 n 01 custodianship 0 002 @ 00586262 n 0000 + 09984298 n 0101 | the position of custodian -00591725 04 n 02 deanship 0 deanery 0 003 @ 00586262 n 0000 + 09996920 n 0101 + 09996784 n 0101 | the position or office of a dean -00591858 04 n 01 directorship 0 003 @ 00586262 n 0000 + 10015485 n 0101 + 10014939 n 0101 | the position of a director of a business concern -00592001 04 n 01 discipleship 0 002 @ 00586262 n 0000 + 10016103 n 0101 | the position of disciple -00592102 04 n 01 editorship 0 002 @ 00586262 n 0000 + 10044879 n 0101 | the position of editor -00592199 04 n 01 eldership 0 002 @ 00586262 n 0000 + 10048367 n 0101 | the office of elder -00592292 04 n 01 emirate 0 001 @ 00586262 n 0000 | the office of an emir -00592367 04 n 01 fatherhood 0 001 @ 00586262 n 0000 | the status of a father -00592446 04 n 01 fatherhood 1 001 @ 00586262 n 0000 | the status of a religious leader -00592535 04 n 01 foremanship 0 003 @ 00586262 n 0000 + 10104487 n 0101 + 10104209 n 0101 | the position of foreman -00592652 04 n 02 generalship 0 generalcy 0 003 @ 00586262 n 0000 + 10125561 n 0101 + 10123844 n 0101 | the office and authority of a general -00592795 04 n 01 governorship 0 002 @ 00586262 n 0000 + 10140314 n 0101 | the office of governor -00592894 04 n 01 headmastership 0 002 @ 00593219 n 0000 + 10164233 n 0101 | the position of headmaster -00592999 04 n 01 headmistressship 0 002 @ 00593219 n 0000 + 10164397 n 0101 | the position of headmistress -00593108 04 n 01 headship 0 003 @ 00586262 n 0000 + 10474645 n 0104 + 10162991 n 0101 | the position of head -00593219 04 n 01 headship 1 005 @ 00586262 n 0000 ;r 08860123 n 0000 + 10474645 n 0104 ~ 00592894 n 0000 ~ 00592999 n 0000 | the position of headmaster or headmistress -00593389 04 n 01 hot_seat 0 001 @ 00586262 n 0000 | a difficult position where you are subjected to stress and criticism -00593512 04 n 01 incumbency 0 002 @ 00586262 n 0000 + 00667208 a 0101 | the office of an incumbent -00593613 04 n 01 inspectorship 0 003 @ 00586262 n 0000 + 10208847 n 0101 + 10067968 n 0102 | the office of inspector -00593732 04 n 01 instructorship 0 002 @ 00586262 n 0000 + 10694258 n 0102 | the position of instructor -00593837 04 n 01 internship 0 002 @ 00586262 n 0000 + 10211203 n 0101 | the position of a medical intern -00593944 04 n 02 judgeship 0 judicature 1 003 @ 00586262 n 0000 + 10066732 n 0102 + 10225219 n 0101 | the position of judge -00594070 04 n 01 khanate 0 001 @ 00586262 n 0000 | the position of a khan -00594146 04 n 01 lectureship 0 003 @ 00586262 n 0000 + 07240549 n 0101 + 00892861 n 0101 | the post of lecturer -00594260 04 n 02 legation 0 legateship 0 002 @ 00586262 n 0000 + 10253479 n 0201 | the post or office of legate -00594374 04 n 01 legislatorship 0 002 @ 00586262 n 0000 + 10253995 n 0101 | the office of legislator -00594477 04 n 01 librarianship 0 002 @ 00586262 n 0000 + 10257948 n 0101 | the position of librarian -00594580 04 n 01 lieutenancy 0 005 @ 00586262 n 0000 + 10259527 n 0101 + 10005280 n 0102 + 10259348 n 0101 + 10259225 n 0101 | the position of a lieutenant -00594738 04 n 02 magistracy 0 magistrature 0 001 @ 00586262 n 0000 | the position of magistrate -00594836 04 n 01 managership 0 003 @ 00586262 n 0000 + 09931640 n 0102 + 10014939 n 0102 | the position of manager -00594953 04 n 01 manhood 0 001 @ 00586262 n 0000 | the status of being a man -00595032 04 n 01 marshalship 0 003 @ 00586262 n 0000 + 10296176 n 0101 + 10295951 n 0101 | the post of marshall -00595146 04 n 01 mastership 0 007 @ 00586262 n 0000 + 10298912 n 0101 + 10164233 n 0103 + 10388440 n 0102 + 10298647 n 0101 + 10298482 n 0101 + 10280130 n 0102 | the position of master -00595333 04 n 01 mayoralty 0 001 @ 00586262 n 0000 | the position of mayor -00595410 04 n 01 messiahship 0 004 @ 00586262 n 0000 + 09537502 n 0101 + 09537325 n 0101 + 09537660 n 0101 | the position of messiah -00595545 04 n 01 moderatorship 0 004 @ 00586262 n 0000 + 10326392 n 0101 + 10326257 n 0101 + 10326087 n 0101 | the position of moderator -00595684 04 n 01 overlordship 0 002 @ 00586262 n 0000 + 10388440 n 0101 | the position of overlord -00595785 04 n 02 pastorship 0 pastorate 0 002 @ 00586262 n 0000 + 09983572 n 0105 | the position of pastor -00595894 04 n 01 peasanthood 0 003 @ 00586262 n 0000 + 10410996 n 0101 + 10410668 n 0101 | the state of being a peasant; "the same homely dress she wore in the days of her peasanthood" -00596081 04 n 01 plum 0 001 @ 00586262 n 0000 | a highly desirable position or assignment; "a political plum" -00596193 04 n 01 praetorship 0 002 @ 00586262 n 0000 + 10463028 n 0101 | the office of praetor -00596290 04 n 01 precentorship 0 002 @ 00586262 n 0000 + 09919771 n 0102 | the position of precentor -00596393 04 n 01 preceptorship 0 002 @ 00586262 n 0000 + 10464542 n 0101 | the position of preceptor -00596496 04 n 01 prefecture 0 002 @ 00586262 n 0000 + 03102723 a 0101 | the office of prefect -00596592 04 n 02 prelacy 0 prelature 0 001 @ 00586262 n 0000 | the office or station of a prelate -00596692 04 n 01 premiership 0 003 @ 00586262 n 0000 + 09906986 n 0102 + 09907196 n 0103 | the office of premier -00596807 04 n 02 presidency 0 presidentship 0 015 @ 00586262 n 0000 + 10467395 n 0203 + 00597265 n 0202 + 10468962 n 0201 + 10468750 n 0201 + 10468559 n 0201 + 10467179 n 0201 + 02984104 a 0101 + 10467395 n 0103 + 00597265 n 0102 + 10468962 n 0101 + 10468750 n 0101 + 10468559 n 0101 + 10467179 n 0101 ~ 00597265 n 0000 | the office and function of president; "Andrew Jackson expanded the power of the presidency beyond what was customary before his time" -00597265 04 n 03 President_of_the_United_States 0 President 4 Chief_Executive 0 005 @ 00596807 n 0000 + 00596807 n 0202 + 15266265 n 0201 + 00596807 n 0201 + 02443609 v 0201 | the office of the United States head of state; "a President is elected every four years" -00597532 04 n 01 primateship 0 002 @ 00586262 n 0000 + 09807075 n 0105 | the office of primate -00597629 04 n 01 principalship 0 002 @ 00586262 n 0000 + 10474645 n 0101 | the post of principal -00597728 04 n 01 priorship 0 002 @ 00586262 n 0000 + 10475940 n 0101 | the office of prior -00597821 04 n 02 proconsulship 0 proconsulate 0 003 @ 00586262 n 0000 + 10478462 n 0101 + 10478293 n 0101 | the position of proconsul -00597957 04 n 01 proctorship 0 002 @ 00586262 n 0000 + 10478960 n 0101 | the position of proctor -00598056 04 n 02 professorship 0 chair 0 002 @ 00586262 n 0000 + 10480730 n 0101 | the position of professor; "he was awarded an endowed chair in economics" -00598215 04 n 01 protectorship 0 002 @ 00586262 n 0000 + 09614684 n 0103 | the position of protector -00598318 04 n 01 public_office 0 002 @ 00586262 n 0000 ~ 00598439 n 0000 | a position concerning the people as a whole -00598439 04 n 01 bully_pulpit 0 001 @ 00598318 n 0000 | a public office of sufficiently high rank that it provides the holder with an opportunity to speak out and be listened to on any matter; "the American presidency is a bully pulpit" -00598678 04 n 01 rabbinate 0 001 @ 00586262 n 0000 | the office or function of a rabbi -00598767 04 n 01 receivership 0 002 @ 00586262 n 0000 + 10265532 n 0102 | the office of a receiver -00598868 04 n 02 rectorship 0 rectorate 0 001 @ 00586262 n 0000 | the office or station of a rector -00598970 04 n 01 regency 0 002 @ 00586262 n 0000 + 01827261 a 0101 | the office of a regent -00599064 04 n 01 residency 1 001 @ 00586262 n 0000 | the position of physician who is receiving special training in a hospital (usually after completing an internship) -00599234 04 n 01 rulership 0 002 @ 00586262 n 0000 + 10541229 n 0101 | the position of ruler -00599329 04 n 01 sainthood 0 004 @ 00586262 n 0000 + 10547145 n 0101 + 10325243 n 0104 + 10546850 n 0101 | the status and dignity of a saint -00599472 04 n 01 secretaryship 0 021 @ 00586262 n 0000 + 10570019 n 0101 + 10569744 n 0101 ~ 00599917 n 0000 ~ 00600200 n 0000 ~ 00600435 n 0000 ~ 00600655 n 0000 ~ 00600871 n 0000 ~ 00601088 n 0000 ~ 00601296 n 0000 ~ 00601557 n 0000 ~ 00601822 n 0000 ~ 00602026 n 0000 ~ 00602220 n 0000 ~ 00602448 n 0000 ~ 00602669 n 0000 ~ 00602909 n 0000 ~ 00603131 n 0000 ~ 00603319 n 0000 ~ 00603512 n 0000 ~ 00603684 n 0000 | the position of secretary -00599917 04 n 02 Attorney_General 0 Attorney_General_of_the_United_States 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Justice Department and the chief law enforcement officer of the United States; "the post of Attorney General was created in 1789" -00600200 04 n 02 Secretary_of_Agriculture 0 Agriculture_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Agriculture; "the post of Secretary of Agriculture was established in 1889" -00600435 04 n 02 Secretary_of_Commerce 0 Commerce_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Commerce; "the position of Commerce Secretary was created in 1913" -00600655 04 n 02 Secretary_of_Defense 0 Defense_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Defense; "the position of Defense Secretary was created in 1947" -00600871 04 n 02 Secretary_of_Education 0 Education_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Education Department; "the post of Education Secretary was created in 1979" -00601088 04 n 02 Secretary_of_Energy 0 Energy_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Energy; "the post of Energy Secretary was created in 1977" -00601296 04 n 01 Secretary_of_Health_and_Human_Services 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Health and Human Services; "the post of Secretary of Health and Human Services was created by Congress in 1979" -00601557 04 n 01 Secretary_of_Housing_and_Urban_Development 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Housing and Urban Development; "the position of Secretary of Housing and Urban Development was created in 1966" -00601822 04 n 02 Secretary_of_Labor 0 Labor_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Labor; "the post of Labor Secretary was created in 1913" -00602026 04 n 01 Secretary_of_State 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the State Department; "the position of Secretary of State was established in 1789" -00602220 04 n 02 Secretary_of_the_Interior 0 Interior_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of the Interior; "the position of Interior Secretary was created in 1849" -00602448 04 n 02 Secretary_of_the_Treasury 0 Treasury_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Treasury Department; "the position of Treasury Secretary was created in 1789" -00602669 04 n 02 Secretary_of_Transportation 0 Transportation_Secretary 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Transportation; "the post of Transportation Secretary was created in 1966" -00602909 04 n 01 Secretary_of_Veterans_Affairs 0 002 @ 00599472 n 0000 #m 08382570 n 0000 | the position of the head of the Department of Veterans Affairs; "the post of Secretary of Veterans Affairs was created in 1989" -00603131 04 n 02 Secretary_of_War 0 War_Secretary 0 001 @ 00599472 n 0000 | head of a former executive department; combined with the Navy Secretary to form the Defense Secretary in 1947 -00603319 04 n 02 Secretary_of_the_Navy 0 Navy_Secretary 0 001 @ 00599472 n 0000 | head of a former executive department; combined with the War Secretary to form the Defense Secretary in 1947 -00603512 04 n 01 Secretary_of_Commerce_and_Labor 0 001 @ 00599472 n 0000 | head of a former executive department created in 1903 and divided into two departments in 1913 -00603684 04 n 01 Secretary_of_Health_Education_and_Welfare 0 001 @ 00599472 n 0000 | head of a former executive department created in 1953 and divided into two departments in 1979 -00603866 04 n 03 seigniory 0 seigneury 0 feudal_lordship 0 001 @ 00586262 n 0000 | the position and authority of a feudal lord -00603995 04 n 01 seismography 0 001 @ 00996969 n 0000 | the measurement of tremors and shocks and undulatory movements of earthquakes -00604131 04 n 01 senatorship 0 002 @ 00586262 n 0000 + 10578471 n 0101 | the office of senator -00604228 04 n 01 sinecure 0 001 @ 00586262 n 0000 | an office that involves minimal duties -00604321 04 n 01 solicitorship 0 002 @ 00586262 n 0000 + 10623175 n 0101 | the position of solicitor -00604424 04 n 01 speakership 0 002 @ 00586262 n 0000 + 10631309 n 0101 | the position of Speaker -00604523 04 n 01 stewardship 0 006 @ 00586262 n 0000 + 10655730 n 0101 + 10655594 n 0101 + 09984298 n 0103 + 10592811 n 0102 + 10655442 n 0101 | the position of steward -00604694 04 n 01 studentship 0 003 @ 00586262 n 0000 + 10557854 n 0104 + 10665698 n 0101 | the position of student -00604811 04 n 01 teachership 0 002 @ 00586262 n 0000 + 10694258 n 0101 | the position of teacher -00604910 04 n 01 thaneship 0 003 @ 00586262 n 0000 + 10705100 n 0101 + 10704886 n 0101 | the position of thane -00605023 04 n 01 throne 0 003 @ 00586262 n 0000 + 02391193 v 0102 + 02564546 v 0101 | the position and power of an exalted person (a sovereign or bishop) who is entitled to sit in a chair of state on ceremonial occasions -00605246 04 n 01 treasurership 0 002 @ 00586262 n 0000 + 10727256 n 0101 | the position of treasurer -00605349 04 n 01 tribuneship 0 001 @ 00586262 n 0000 | the position of tribune -00605430 04 n 01 trusteeship 0 001 @ 00586262 n 0000 | the position of trustee -00605511 04 n 01 vice-presidency 0 001 @ 00586262 n 0000 | the office and function of a vice president -00605616 04 n 01 viceroyship 0 002 @ 00586262 n 0000 + 10751785 n 0101 | the position of viceroy -00605715 04 n 01 viziership 0 002 @ 00586262 n 0000 + 10758445 n 0101 | the position of vizier -00605812 04 n 01 wardenship 0 002 @ 00586262 n 0000 + 10767154 n 0101 | the position of warden -00605909 04 n 01 wardership 0 002 @ 00586262 n 0000 + 10767265 n 0101 | the position of warder -00606006 04 n 01 womanhood 0 003 @ 00586262 n 0000 + 10787470 n 0101 + 08477634 n 0102 | the status of a woman -00606119 04 n 02 treadmill 0 salt_mine 0 001 @ 00582388 n 0000 | a job involving drudgery and confinement -00606227 04 n 02 business_life 0 professional_life 0 001 @ 00583246 n 0000 | a career in industrial or commercial or professional activities -00606370 04 n 02 trade 0 craft 0 032 @ 00582388 n 0000 + 01658762 v 0201 ~ 00607075 n 0000 ~ 00607185 n 0000 ~ 00607293 n 0000 ~ 00607775 n 0000 ~ 00608037 n 0000 ~ 00608162 n 0000 ~ 00608265 n 0000 ~ 00608354 n 0000 ~ 00608789 n 0000 ~ 00608896 n 0000 ~ 00609159 n 0000 ~ 00609236 n 0000 ~ 00609423 n 0000 ~ 00609506 n 0000 ~ 00609669 n 0000 ~ 00609868 n 0000 ~ 00617692 n 0000 ~ 00617865 n 0000 ~ 00617989 n 0000 ~ 00618119 n 0000 ~ 00618264 n 0000 ~ 00618436 n 0000 ~ 00618536 n 0000 ~ 00714944 n 0000 ~ 00909796 n 0000 ~ 00927062 n 0000 ~ 01103000 n 0000 ~ 01120259 n 0000 ~ 01120348 n 0000 ~ 01126564 n 0000 | the skilled practice of a practical occupation; "he learned his trade as an apprentice" -00607075 04 n 01 airplane_mechanics 0 001 @ 00606370 n 0000 | the craft of building and repairing airplanes -00607185 04 n 01 auto_mechanics 0 001 @ 00606370 n 0000 | the craft of building and repairing automobiles -00607293 04 n 01 basketry 0 001 @ 00606370 n 0000 | the craft of basket making -00607374 04 n 01 bookbinding 0 001 @ 00714944 n 0000 | the craft of binding books -00607458 04 n 01 bricklaying 0 001 @ 00608896 n 0000 | the craft of laying bricks -00607542 04 n 02 cabinetwork 0 cabinetry 0 006 @ 00607775 n 0000 ;c 03405725 n 0000 -c 02334302 v 0000 -c 02334458 v 0000 -c 02337699 v 0000 -c 02341816 v 0000 | the craft of making furniture (especially furniture of high quality) -00607775 04 n 03 carpentry 0 woodworking 0 woodwork 0 008 @ 00606370 n 0000 + 02408843 v 0101 ~ 00607542 n 0000 ~ 00617601 n 0000 -c 01358023 v 0000 -c 01457710 v 0000 -c 02226559 v 0000 -c 02354287 v 0000 | the craft of a carpenter: making things out of wood -00608037 04 n 02 drafting 2 mechanical_drawing 0 002 @ 00606370 n 0000 + 01683582 v 0102 | the craft of drawing blueprints -00608162 04 n 01 dressmaking 0 002 @ 00606370 n 0000 ~ 00618642 n 0000 | the craft of making dresses -00608265 04 n 01 electrical_work 0 001 @ 00606370 n 0000 | the craft of an electrician -00608354 04 n 02 interior_decoration 0 interior_design 0 003 @ 00606370 n 0000 ~ 00608551 n 0000 ~ 00608645 n 0000 | the trade of planning the layout and furnishings of an architectural interior -00608551 04 n 01 furnishing 0 001 @ 00608354 n 0000 | the act of decorating a house or room -00608645 04 n 01 lighting 1 001 @ 00608354 n 0000 | the craft of providing artificial light; "an interior decorator must understand lighting" -00608789 04 n 01 lumbering 0 001 @ 00606370 n 0000 | the trade of cutting or preparing or selling timber -00608896 04 n 01 masonry 0 011 @ 00606370 n 0000 #p 01104637 n 0000 ~ 00607458 n 0000 -c 01360899 v 0000 -c 01361240 v 0000 -c 01361387 v 0000 -c 01361561 v 0000 -c 01361884 v 0000 -c 01361998 v 0000 -c 01362136 v 0000 -c 01362291 v 0000 | the craft of a mason -00609159 04 n 01 oculism 0 001 @ 00606370 n 0000 | the craft of an oculist -00609236 04 n 02 painting 1 house_painting 0 003 @ 00606370 n 0000 #p 01104637 n 0000 + 01362736 v 0101 | the occupation of a house painter; "house painting was the only craft he knew" -00609423 04 n 01 papermaking 0 001 @ 00606370 n 0000 | the craft of making paper -00609506 04 n 02 piloting 1 pilotage 1 005 @ 00606370 n 0000 + 01933305 v 0202 + 01941093 v 0203 + 01933305 v 0102 + 01941093 v 0103 | the occupation of a pilot -00609669 04 n 02 plumbing 1 plumbery 0 002 @ 00606370 n 0000 #p 01104637 n 0000 | the occupation of a plumber (installing and repairing pipes and fixtures for water or gas or sewage in a building) -00609868 04 n 01 pottery 0 001 @ 00606370 n 0000 | the craft of making earthenware -00609953 04 n 01 profession 0 008 @ 00582388 n 0000 ~ 00610373 n 0000 ~ 00610592 n 0000 ~ 00610738 n 0000 ~ 00611433 n 0000 ~ 00611674 n 0000 ~ 00611972 n 0000 ~ 00949619 n 0000 | an occupation requiring special education (especially in the liberal arts or sciences) -00610222 04 n 02 metier 0 medium 0 001 @ 00582388 n 0000 | an occupation for which you are especially well suited; "in law he found his true metier" -00610373 04 n 01 learned_profession 0 004 @ 00609953 n 0000 ~ 00611143 n 0000 ~ 00612160 n 0000 ~ 00613973 n 0000 | one of the three professions traditionally believed to require advanced learning and high principles -00610592 04 n 01 literature 0 002 @ 00609953 n 0000 ;c 06364641 n 0000 | the profession or art of a writer; "her place in literature is secure" -00610738 04 n 01 architecture 0 014 @ 00609953 n 0000 -c 01656233 v 0000 -c 02226380 v 0000 -c 02330247 v 0000 -c 02330407 v 0000 -c 02331326 v 0000 -c 02333979 v 0000 -c 02334173 v 0000 -c 02334595 v 0000 -c 02335629 v 0000 -c 02337870 v 0000 -c 02353844 v 0000 -c 02361811 v 0000 -c 02361981 v 0000 | the profession of designing buildings and environments with consideration for their esthetic effect -00611143 04 n 02 law 0 practice_of_law 0 005 @ 00610373 n 0000 ;c 08441203 n 0000 + 10249950 n 0101 -c 01068380 v 0000 -c 02480588 v 0000 | the learned profession that is mastered by graduate study in a law school and that is responsible for the judicial system; "he studied law at Yale" -00611433 04 n 01 education 1 007 @ 00609953 n 0000 ;c 00883297 n 0000 + 10045454 n 0101 + 10045454 n 0102 + 02387486 v 0101 + 00603298 v 0104 ~ 00887081 n 0000 | the profession of teaching (especially at a school or college or university) -00611674 04 n 01 journalism 0 004 @ 00609953 n 0000 + 03077419 a 0101 + 10224578 n 0101 ~ 00611874 n 0000 | the profession of reporting or photographing or editing news stories for one of the media -00611874 04 n 01 newspapering 0 001 @ 00611674 n 0000 | journalism practiced for the newspapers -00611972 04 n 01 politics 0 005 @ 00609953 n 0000 ;c 06148148 n 0000 + 02857587 a 0101 + 10451263 n 0101 + 10450303 n 0101 | the profession devoted to governing and to political affairs -00612160 04 n 02 medicine 0 practice_of_medicine 0 046 @ 00610373 n 0000 ;c 06043075 n 0000 + 02760116 a 0101 + 00084230 v 0102 + 00084230 v 0101 ~ 00613282 n 0000 ~ 00613473 n 0000 ~ 00613819 n 0000 -c 00632531 n 0000 -c 00011982 v 0000 -c 00080304 v 0000 -c 00080456 v 0000 -c 00080589 v 0000 -c 00080705 v 0000 -c 00081072 v 0000 -c 00081367 v 0000 -c 00081509 v 0000 -c 00081725 v 0000 -c 00082563 v 0000 -c 00082714 v 0000 -c 00082929 v 0000 -c 00083124 v 0000 -c 00083523 v 0000 -c 00083661 v 0000 -c 00083809 v 0000 -c 00084107 v 0000 -c 00084230 v 0000 -c 00084562 v 0000 -c 00084738 v 0000 -c 00085046 v 0000 -c 00085246 v 0000 -c 00085907 v 0000 -c 00086077 v 0000 -c 00086320 v 0000 -c 00086598 v 0000 -c 00086835 v 0000 -c 00087290 v 0000 -c 00096264 v 0000 -c 00096396 v 0000 -c 00450168 v 0000 -c 00645771 v 0000 -c 00645939 v 0000 -c 01210352 v 0000 -c 01254692 v 0000 -c 01254912 v 0000 -c 01255057 v 0000 | the learned profession that is mastered by graduate training in a medical school and that is devoted to preventing or alleviating or curing diseases and injuries; "he studied medicine at Harvard" -00613282 04 n 01 preventive_medicine 0 001 @ 00612160 n 0000 | the branch of medicine concerned with preventing disease; "the medical establishment doesn't profit from preventive medicine" -00613473 04 n 01 alternative_medicine 0 002 @ 00612160 n 0000 ~ 00613685 n 0000 | the practice of medicine without the use of drugs; may involve herbal medicines or self-awareness or biofeedback or acupuncture -00613685 04 n 01 herbal_medicine 0 001 @ 00613473 n 0000 | the use of medicinal herbs to prevent or treat disease or promote health -00613819 04 n 01 complementary_medicine 0 001 @ 00612160 n 0000 | the practice of medicine that combines traditional medicine with alternative medicine -00613973 04 n 01 theology 0 004 @ 00610373 n 0000 ;c 06182144 n 0000 + 02907000 a 0101 + 10705615 n 0102 | the learned profession acquired by specialized courses in religion (usually taught at a college or seminary); "he studied theology at Oxford" -00614224 04 n 02 writing 1 committal_to_writing 0 006 @ 00407535 n 0000 + 00993014 v 0101 ~ 00614489 n 0000 ~ 00614730 n 0000 ~ 00615011 n 0000 ~ 00615182 n 0000 | the activity of putting something in written form; "she did the thinking while he did the writing" -00614489 04 n 04 cryptography 0 coding 0 secret_writing 0 steganography 0 007 @ 00614224 n 0000 + 00994076 v 0201 + 02706691 a 0103 + 09981540 n 0102 ~ 00615887 n 0000 ~ 00616951 n 0000 ~ 00617059 n 0000 | act of writing in code or cipher -00614730 04 n 01 handwriting 0 008 @ 00614224 n 0000 + 01005209 v 0101 -c 02284892 a 0000 ~ 00615462 n 0000 ~ 00615659 n 0000 -c 04819285 n 0000 -c 04822685 n 0000 -c 06403393 n 0000 | the activity of writing by hand; "handwriting can be slow and painful for one with arthritis" -00615011 04 n 01 inscription 0 003 @ 00614224 n 0000 + 01001008 v 0101 ~ 00615336 n 0000 | the activity of inscribing (especially carving or engraving) letters or words -00615182 04 n 01 notation 0 002 @ 00614224 n 0000 + 00995286 v 0101 | the activity of representing something by a special system of marks or characters -00615336 04 n 01 superscription 0 003 @ 00615011 n 0000 + 01692096 v 0101 + 01691927 v 0101 | the activity of superscribing -00615462 04 n 01 stenography 0 004 @ 00614730 n 0000 + 02803389 a 0101 + 02803389 a 0102 + 10654015 n 0101 | the act or art of writing in shorthand; "stenography is no longer a marketable skill" -00615659 04 n 01 subscription 1 003 @ 00614730 n 0000 + 00996485 v 0102 ~ 06554078 n 0000 | the act of signing your name; writing your signature (as on a document); "the deed was attested by the subscription of his signature" -00615887 04 n 02 encoding 0 encryption 0 005 @ 00614489 n 0000 + 00994076 v 0205 + 00993892 v 0101 ~ 00616083 n 0000 ~ 00616807 n 0000 | the activity of converting data or information into code -00616083 04 n 01 compression 1 005 @ 00615887 n 0000 + 01389329 v 0101 ! 00616641 n 0101 ~ 00616279 n 0000 ~ 00616398 n 0000 | encoding information while reducing the bandwidth or bits required -00616279 04 n 01 image_compression 0 001 @ 00616083 n 0000 | the compression of graphics for storage or transmission -00616398 04 n 01 MPEG 0 002 @ 00616083 n 0000 ;u 07091902 n 0000 | a set of standards adopted by the moving pictures experts group for the compression of digital video and audio data or a file of data compressed according to those standards -00616641 04 n 01 decompression 1 003 @ 00617059 n 0000 + 01389607 v 0101 ! 00616083 n 0101 | restoring compressed information to its normal form for use or display -00616807 04 n 01 data_encryption 0 002 @ 00615887 n 0000 ;c 06128570 n 0000 | (computer science) the encryption of data for security purposes -00616951 04 n 01 recoding 0 002 @ 00614489 n 0000 + 00278514 v 0101 | converting from one code to another -00617059 04 n 03 decoding 0 decryption 0 decipherment 0 005 @ 00614489 n 0000 + 00994454 v 0303 + 00994454 v 0202 + 00994454 v 0101 ~ 00616641 n 0000 | the activity of making clear or converting from code into plain text; "a secret key or password is required for decryption" -00617337 04 n 01 triangulation 0 002 @ 01005579 n 0000 + 00646912 v 0101 | a method of surveying; the area is divided into triangles and the length of one side and its angles with the other two are measured, then the lengths of the other sides can be calculated -00617601 04 n 02 cabinetmaking 0 joinery 0 001 @ 00607775 n 0000 | the craft of a joiner -00617692 04 n 02 pyrotechnics 0 pyrotechny 0 005 @ 00606370 n 0000 + 01677957 a 0201 + 03106846 a 0201 + 03106846 a 0202 + 03106846 a 0102 | the craft of making fireworks -00617865 04 n 03 shoemaking 0 shoe_repairing 0 cobbling 0 002 @ 00606370 n 0000 + 00261845 v 0301 | the shoemaker's trade -00617989 04 n 01 roofing 0 004 @ 00606370 n 0000 #p 01104637 n 0000 + 01233993 v 0101 ~ 01105152 n 0000 | the craft of a roofer -00618119 04 n 01 sheet-metal_work 0 002 @ 00606370 n 0000 #p 01104637 n 0000 | the craft of doing sheet metal work (as in ventilation systems) -00618264 04 n 01 shingling 0 003 @ 00606370 n 0000 #p 01104637 n 0000 + 01234223 v 0101 | the laying on of shingles; "shingling is a craft very different from carpentry" -00618436 04 n 01 tailoring 0 002 @ 00606370 n 0000 + 01666327 v 0102 | the occupation of a tailor -00618536 04 n 01 tool-and-die_work 0 001 @ 00606370 n 0000 | the craft of making special tools and dies -00618642 04 n 01 couture 0 001 @ 00608162 n 0000 | high fashion designing and dressmaking -00618734 04 n 02 accountancy 0 accounting 0 007 @ 00582388 n 0000 + 02265231 v 0201 + 09761403 n 0101 ~ 00619011 n 0000 ~ 00619230 n 0000 ~ 00619738 n 0000 -c 02013427 v 0000 | the occupation of maintaining and auditing records and preparing financial reports for a business -00619011 04 n 01 cost_accounting 0 002 @ 00618734 n 0000 ~ 00619142 n 0000 | keeping account of the costs of items in production -00619142 04 n 01 costing 0 002 @ 00619011 n 0000 ;r 08860123 n 0000 | cost accounting -00619230 04 n 02 bookkeeping 0 clerking 0 005 @ 00618734 n 0000 + 02411802 v 0201 ~ 00619419 n 0000 ~ 00619578 n 0000 -c 06494373 n 0000 | the activity of recording business transactions -00619419 04 n 02 single_entry 0 single-entry_bookkeeping 0 001 @ 00619230 n 0000 | a simple bookkeeping system; transactions are entered in only one account -00619578 04 n 02 double_entry 0 double-entry_bookkeeping 0 001 @ 00619230 n 0000 | bookkeeper debits the transaction to one account and credits it to another -00619738 04 n 01 inventory_accounting 0 003 @ 00618734 n 0000 ~ 00620084 n 0000 ~ 00620258 n 0000 | accounting that controls and evaluates inventory -00619889 04 n 01 inventory_control 0 001 @ 00806075 n 0000 | supervision of the supply and storage and accessibility of items in order to insure an adequate supply without excessive oversupply -00620084 04 n 02 first_in_first_out 0 FIFO 0 001 @ 00619738 n 0000 | inventory accounting in which the oldest items (those first acquired) are assumed to be the first sold -00620258 04 n 02 last_in_first_out 0 LIFO 0 001 @ 00619738 n 0000 | inventory accounting in which the most recently acquired items are assumed to be the first sold -00620424 04 n 02 butchery 0 butchering 0 003 @ 01094725 n 0000 + 01322854 v 0101 %p 00223854 n 0000 | the business of a butcher -00620554 04 n 01 photography 1 005 @ 00582388 n 0000 ;c 00903559 n 0000 + 02838592 a 0101 + 10426749 n 0101 -c 00574735 v 0000 | the occupation of taking and printing photographs or making movies -00620752 04 n 03 labor 0 labour 0 toil 0 016 @ 00575741 n 0000 + 02419773 v 0303 + 02406916 v 0203 + 02419773 v 0202 + 00836544 a 0107 + 02419773 v 0101 ~ 00299680 n 0000 ~ 00621326 n 0000 ~ 00621476 n 0000 ~ 00621627 n 0000 ~ 00622584 n 0000 ~ 00622859 n 0000 ~ 00622957 n 0000 ~ 00623162 n 0000 ~ 00623370 n 0000 ~ 00623545 n 0000 | productive work (especially physical work done for wages); "his labor did not require a great deal of skill" -00621198 04 n 01 strikebreaking 0 001 @ 01169744 n 0000 | confrontational activities intended to break up a strike by workers -00621326 04 n 01 corvee 0 001 @ 00620752 n 0000 | unpaid labor (as for the maintenance of roads) required by a lord of his vassals in lieu of taxes -00621476 04 n 04 drudgery 0 plodding 0 grind 1 donkeywork 0 003 @ 00620752 n 0000 + 02419773 v 0306 + 02419773 v 0107 | hard monotonous routine work -00621627 04 n 05 effort 1 elbow_grease 0 exertion 0 travail 0 sweat 0 014 @ 00620752 n 0000 + 02419773 v 0405 + 02371811 v 0301 ~ 00622068 n 0000 ~ 00623862 n 0000 ~ 00624436 n 0000 ~ 00624553 n 0000 ~ 00624738 n 0000 ~ 00625427 n 0000 ~ 00633329 n 0000 ~ 00633479 n 0000 ~ 00633613 n 0000 ~ 00633717 n 0000 ~ 00712031 n 0000 | use of physical or mental energy; hard work; "he got an A for effort"; "they managed only with great exertion" -00622068 04 n 01 struggle 0 005 @ 00621627 n 0000 + 01921772 v 0106 + 01505058 v 0101 + 02407338 v 0102 ~ 00622266 n 0000 | strenuous effort; "the struggle to get through the crowd exhausted her" -00622266 04 n 05 wrestle 0 wrestling 1 grapple 0 grappling 0 hand-to-hand_struggle 0 005 @ 00622068 n 0000 + 01574292 v 0401 + 01574292 v 0301 + 01504699 v 0201 + 01504699 v 0101 | the act of engaging in close hand-to-hand combat; "they had a fierce wrestle"; "we watched his grappling and wrestling with the bully" -00622584 04 n 02 hunt 0 hunting 0 009 @ 00620752 n 0000 + 01143838 v 0201 + 02003601 v 0102 + 01144657 v 0101 + 01143838 v 0101 ~ 00452947 n 0000 ~ 00711523 n 0000 ~ 00711799 n 0000 ~ 00711897 n 0000 | the work of finding and killing or capturing animals for food or pelts -00622859 04 n 01 hackwork 0 001 @ 00620752 n 0000 | professional work done according to formula -00622957 04 n 01 haymaking 0 001 @ 00620752 n 0000 | cutting grass and curing it to make hay -00623052 04 n 01 haymaking 1 001 @ 00035189 n 0000 | taking full advantage of an opportunity while it lasts -00623162 04 n 02 manual_labor 0 manual_labour 0 007 @ 00620752 n 0000 ~ 00712225 n 0000 ~ 00713493 n 0000 ~ 00713594 n 0000 ~ 00714357 n 0000 ~ 00714693 n 0000 ~ 00714806 n 0000 | labor done with the hands -00623370 04 n 02 overwork 0 overworking 0 003 @ 00620752 n 0000 + 02409148 v 0201 + 02409148 v 0101 | the act of working too much or too long; "he became ill from overwork" -00623545 04 n 01 slavery 0 002 @ 00620752 n 0000 + 02421199 v 0101 | work done under harsh conditions for little or no pay -00623670 04 n 02 subbing 0 substituting 0 004 @ 00575741 n 0000 + 02394662 v 0201 + 02258617 v 0201 + 02258617 v 0102 | working as a substitute for someone who is ill or on leave of absence -00623862 04 n 02 trouble 2 difficulty 0 004 @ 00621627 n 0000 + 02507464 v 0102 ~ 00624147 n 0000 ~ 00624285 n 0000 | an effort that is inconvenient; "I went to a lot of trouble"; "he won without any trouble"; "had difficulty walking"; "finished the test only with great difficulty" -00624147 04 n 01 the_devil 0 001 @ 00623862 n 0000 | something difficult or awkward to do or deal with; "it will be the devil to solve" -00624285 04 n 01 tsuris 0 002 @ 00623862 n 0000 ;c 06951067 n 0000 | (Yiddish) aggravating trouble; "the frustrating tsuris he subjected himself to" -00624436 04 n 02 least_effort 0 least_resistance 0 001 @ 00621627 n 0000 | the least effortful way to do something -00624553 04 n 02 strain 2 straining 1 006 @ 00621627 n 0000 + 01165579 v 0201 + 00875235 a 0101 + 01165579 v 0101 + 01798452 v 0102 + 01146051 v 0103 | an intense or violent exertion -00624738 04 n 05 exercise 0 exercising 0 physical_exercise 0 physical_exertion 0 workout 0 022 @ 00621627 n 0000 + 00099721 v 0502 + 00100551 v 0503 + 00099721 v 0201 + 00099721 v 0101 + 00100551 v 0101 ~ 00435563 n 0000 ~ 00435778 n 0000 ~ 00437321 n 0000 ~ 00625699 n 0000 ~ 00625993 n 0000 ~ 00627437 n 0000 ~ 00627849 n 0000 ~ 00628131 n 0000 ~ 00628539 n 0000 ~ 00628692 n 0000 ~ 00629176 n 0000 ~ 00629803 n 0000 ~ 00629911 n 0000 ~ 00630526 n 0000 ~ 00630634 n 0000 ~ 00630960 n 0000 | the activity of exerting your muscles in various ways to keep fit; "the doctor recommended regular exercise"; "he did some exercising"; "the physical exertion required by his work kept him fit" -00625427 04 n 01 pull 2 002 @ 00621627 n 0000 + 02582615 v 0103 | a sustained effort; "it was a long pull but we made it" -00625551 04 n 01 conditioner 0 002 @ 00435563 n 0000 + 00207418 v 0101 | exercise that conditions the body; "farm work can be a good conditioner" -00625699 04 n 02 set 0 exercise_set 0 001 @ 00624738 n 0000 | several exercises intended to be done in series; "he did four sets of the incline bench press" -00625858 04 n 02 aerobics 0 aerobic_exercise 0 002 @ 00435563 n 0000 + 00069217 a 0101 | exercise that increases the need for oxygen -00625993 04 n 04 bodybuilding 0 anaerobic_exercise 0 muscle_building 0 musclebuilding 0 003 @ 00624738 n 0000 ~ 00626188 n 0000 ~ 00627321 n 0000 | exercise that builds muscles through tension -00626188 04 n 02 weightlift 0 weightlifting 0 007 @ 00625993 n 0000 + 01150370 v 0202 ~ 00626423 n 0000 ~ 00626574 n 0000 ~ 00626838 n 0000 ~ 00627013 n 0000 ~ 00627196 n 0000 | bodybuilding by exercise that involves lifting weights -00626423 04 n 01 jerk 2 002 @ 00626188 n 0000 #p 00626838 n 0000 | raising a weight from shoulder height to above the head by straightening the arms -00626574 04 n 01 bench_press 0 002 @ 00626188 n 0000 ~ 00626728 n 0000 | a weightlift in which you lie on your back on a bench and press weights upward -00626728 04 n 01 incline_bench_press 0 001 @ 00626574 n 0000 | a bench press performed on an inclined bench -00626838 04 n 02 clean_and_jerk 0 clean 0 002 @ 00626188 n 0000 %p 00626423 n 0000 | a weightlift in which the barbell is lifted to shoulder height and then jerked overhead -00627013 04 n 02 press 2 military_press 0 002 @ 00626188 n 0000 + 01150370 v 0103 | a weightlift in which the barbell is lifted to shoulder height and then smoothly lifted overhead -00627196 04 n 01 snatch 1 001 @ 00626188 n 0000 | a weightlift in which the barbell is lifted overhead in one rapid motion -00627321 04 n 01 weight_gaining 0 001 @ 00625993 n 0000 | bodybuilding that increases muscle mass and body weight -00627437 04 n 02 calisthenics 1 callisthenics 1 003 @ 00624738 n 0000 ;u 06295235 n 0000 + 02675196 a 0101 | light exercises designed to promote general fitness; "several different calisthenics were illustrated in the video" -00627664 04 n 02 calisthenics 0 callisthenics 0 002 @ 00410247 n 0000 + 02675196 a 0101 | the practice of calisthenic exercises; "calisthenics is recommended for general good health" -00627849 04 n 02 isometrics 0 isometric_exercise 0 001 @ 00624738 n 0000 | muscle-building exercises (or a system of musclebuilding exercises) involving muscular contractions against resistance without movement (the muscles contracts but the length of the muscle does not change) -00628131 04 n 01 isotonic_exercise 0 001 @ 00624738 n 0000 | exercise in which opposing muscles contract and there is controlled movement (tension is constant while the lengths of the muscles change); "the classic isotonic exercise is lifting free weights" -00628390 04 n 01 jogging 0 003 @ 00435563 n 0000 + 01901447 v 0102 + 01928390 v 0101 | running at a jog trot as a form of cardiopulmonary exercise -00628539 04 n 02 Kegel_exercises 0 pubococcygeus_exercises 0 001 @ 00624738 n 0000 | exercises for women designed to improve the ability to hold urine -00628692 04 n 02 stretch 0 stretching 0 004 @ 00624738 n 0000 + 00027268 v 0201 + 00027268 v 0101 ~ 00628883 n 0000 | exercise designed to extend the limbs and muscles to their full extent -00628883 04 n 01 pandiculation 0 002 @ 00628692 n 0000 @ 00837293 n 0000 | yawning and stretching (as when first waking up) -00629009 04 n 01 power_walking 0 001 @ 00435563 n 0000 | a form of cardiopulmonary exercise consisting of rapid walking accompanied by vigorous swinging of the arms -00629176 04 n 01 arm_exercise 0 003 @ 00624738 n 0000 ~ 00629318 n 0000 ~ 00629597 n 0000 | exercise designed to strengthen the arm muscles -00629318 04 n 02 pushup 0 press-up 0 002 @ 00629176 n 0000 ~ 00629496 n 0000 | an arm exercise performed lying face to the floor and pushing the body up and down with the arms -00629496 04 n 01 widegrip_pushup 0 001 @ 00629318 n 0000 | a pushup with the arms widely separated -00629597 04 n 02 pull-up 0 chin-up 0 003 @ 00629176 n 0000 + 01975387 v 0202 + 01982686 v 0102 | an arm exercise performed by pulling yourself up on a horizontal bar until your chin is level with the bar -00629803 04 n 01 back_exercise 0 001 @ 00624738 n 0000 | exercise designed to strengthen the back muscles -00629911 04 n 01 leg_exercise 0 004 @ 00624738 n 0000 ~ 00630071 n 0000 ~ 00630268 n 0000 ~ 00630401 n 0000 | exercise designed to strengthen the leg muscles -00630071 04 n 03 knee_bend 0 squat 1 squatting 1 002 @ 00629911 n 0000 + 01545314 v 0201 | exercising by repeatedly assuming a crouching position with the knees bent; strengthens the leg muscles -00630268 04 n 02 leg_curl 0 leg_curling 0 001 @ 00629911 n 0000 | an exercise designed to strengthen the flexor muscles of the leg -00630401 04 n 01 leg_extensor 0 001 @ 00629911 n 0000 | an exercise designed to strengthen the extensor muscles of the leg -00630526 04 n 01 neck_exercise 0 001 @ 00624738 n 0000 | exercise designed to strengthen the neck muscles -00630634 04 n 02 stomach_exercise 0 tummy_crunch 0 002 @ 00624738 n 0000 ~ 00630786 n 0000 | an exercise designed to strengthen the abdominal muscles -00630786 04 n 01 sit-up 0 002 @ 00630634 n 0000 + 02098680 v 0101 | a stomach exercise in which a person sits up from a supine position without using the arms for leverage -00630960 04 n 01 yoga 0 004 @ 00624738 n 0000 + 02985904 a 0101 + 02985904 a 0102 ~ 00631168 n 0000 | a system of exercises practiced as part of the Hindu discipline to promote control of the body and mind -00631168 04 n 01 hatha_yoga 0 001 @ 00630960 n 0000 | yogic exercises (popular in the West) that combine difficult postures (which force the mind to withdraw from the outside world) with controlled breathing -00631378 04 n 01 practice 3 011 @ 00947128 n 0000 + 02568672 v 0101 + 02561332 v 0101 ~ 00631712 n 0000 ~ 00631887 n 0000 ~ 00632017 n 0000 ~ 00632104 n 0000 ~ 00632201 n 0000 ~ 00632716 n 0000 ~ 00632820 n 0000 ~ 01268183 n 0000 | the exercise of a profession; "the practice of the law"; "I took over his practice when he retired" -00631712 04 n 01 consultancy 0 002 @ 00631378 n 0000 + 09774266 n 0103 | the practice of giving expert advice within a particular field; "a business management consultancy" -00631887 04 n 01 cosmetology 0 002 @ 00631378 n 0000 + 09967159 n 0101 | the practice of beautifying the face and hair and skin -00632017 04 n 01 dental_practice 0 001 @ 00631378 n 0000 | the practice of dentistry -00632104 04 n 01 law_practice 0 002 @ 00631378 n 0000 ;c 08441203 n 0000 | the practice of law -00632201 04 n 01 medical_practice 0 004 @ 00631378 n 0000 ~ 00632342 n 0000 ~ 00632531 n 0000 ~ 00633108 n 0000 | the practice of medicine -00632342 04 n 02 family_practice 0 family_medicine 0 001 @ 00632201 n 0000 | medical practice that provides health care regardless of age or sex while placing emphasis on the family unit -00632531 04 n 01 group_practice 0 002 @ 00632201 n 0000 ;c 00612160 n 0000 | (medicine) the practice of medicine by a group of physicians who share their premises and other resources -00632716 04 n 01 optometry 0 002 @ 00631378 n 0000 + 10380305 n 0101 | the practice of an optometrist -00632820 04 n 01 private_practice 0 001 @ 00631378 n 0000 | the practice of a profession independently and not as an employee; "he teaches at the medical school but his fortune came from private practice"; "lawyers in private practice are in business and must make a profit to survive" -00633108 04 n 02 quackery 0 empiricism 1 004 @ 00632201 n 0000 + 03063305 a 0201 + 03063305 a 0202 + 00011982 v 0101 | medical practice and advice based on observation and experience in ignorance of scientific findings -00633329 04 n 02 application 1 diligence 0 002 @ 00621627 n 0000 + 02595523 v 0101 | a diligent effort; "it is a job requiring serious application" -00633479 04 n 01 overkill 0 001 @ 00621627 n 0000 | any effort that seems to go farther than would be necessary to achieve its goal -00633613 04 n 01 supererogation 0 001 @ 00621627 n 0000 | an effort above and beyond the call of duty -00633717 04 n 01 overexertion 0 002 @ 00621627 n 0000 + 02371975 v 0101 | excessive exertion; so much exertion that discomfort or injury results -00633864 04 n 02 investigation 0 investigating 0 016 @ 00575741 n 0000 + 00785962 v 0201 + 00789138 v 0201 + 00785962 v 0101 + 00789138 v 0101 ~ 00634276 n 0000 ~ 00634586 n 0000 ~ 00635012 n 0000 ~ 00635699 n 0000 ~ 00635850 n 0000 ~ 00636461 n 0000 ~ 00636728 n 0000 ~ 00636921 n 0000 ~ 00637354 n 0000 ~ 00652659 n 0000 ~ 00654400 n 0000 | the work of inquiring into something thoroughly and systematically -00634276 04 n 01 analysis 0 010 @ 00633864 n 0000 + 00112231 a 0102 + 00736216 v 0101 ~ 00646187 n 0000 ~ 00646680 n 0000 ~ 00646833 n 0000 ~ 00648790 n 0000 ~ 00648931 n 0000 ~ 00649090 n 0000 ~ 00649266 n 0000 | an investigation of the component parts of a whole and their relations in making up the whole -00634586 04 n 06 count 0 counting 0 numeration 0 enumeration 0 reckoning 1 tally 0 013 @ 00633864 n 0000 + 00949288 v 060a + 00948071 v 0403 + 00948071 v 0304 + 00947857 v 0201 + 00948071 v 0201 ~ 00652803 n 0000 ~ 00653388 n 0000 ~ 00653518 n 0000 ~ 00653719 n 0000 ~ 00653811 n 0000 ~ 00653958 n 0000 ~ 00654113 n 0000 | the act of counting; reciting numbers in ascending order; "the counting continued for several hours" -00635012 04 n 02 police_work 0 police_investigation 0 005 @ 00633864 n 0000 ~ 00635205 n 0000 ~ 00635422 n 0000 ~ 00635544 n 0000 ~ 00652466 n 0000 | the investigation of criminal activities -00635205 04 n 04 detection 1 detecting 0 detective_work 0 sleuthing 0 003 @ 00635012 n 0000 + 00785690 v 0404 + 02154508 v 0201 | a police investigation to determine the perpetrator; "detection is hard on the feet" -00635422 04 n 01 forensics 0 001 @ 00635012 n 0000 | scientific tests or techniques used in the investigation of crimes -00635544 04 n 01 roundup 0 002 @ 00635012 n 0000 + 01381913 v 0101 | the systematic gathering up of suspects by the police; "a mass roundup of suspects" -00635699 04 n 01 empiricism 0 003 @ 00633864 n 0000 + 00858917 a 0102 + 00858917 a 0101 | the application of empirical methods in any art or science -00635850 04 n 02 examination 0 scrutiny 0 028 @ 00633864 n 0000 + 10565502 n 0201 + 02153387 v 0203 + 00697062 v 0202 + 02153387 v 0204 + 00697062 v 0203 + 02131279 v 0101 ~ 00141176 n 0000 ~ 00141396 n 0000 ~ 00142361 n 0000 ~ 00142665 n 0000 ~ 00143057 n 0000 ~ 00143251 n 0000 ~ 00143536 n 0000 ~ 00143626 n 0000 ~ 00143763 n 0000 ~ 00143885 n 0000 ~ 00642045 n 0000 ~ 00643389 n 0000 ~ 00643621 n 0000 ~ 00643772 n 0000 ~ 00643943 n 0000 ~ 00644366 n 0000 ~ 00644503 n 0000 ~ 00644702 n 0000 ~ 00645365 n 0000 ~ 00879271 n 0000 ~ 01265325 n 0000 | the act of examining something closely (as for mistakes) -00636461 04 n 02 examination 2 testing 2 006 @ 00633864 n 0000 + 00786458 v 0202 + 02531625 v 0105 + 00788564 v 0102 + 00786816 v 0101 ~ 00637145 n 0000 | the act of giving students or candidates a test (as by questions) to determine what they know or have learned -00636728 04 n 02 inquiry 0 enquiry 0 005 @ 00633864 n 0000 + 00785962 v 0203 + 00785962 v 0102 ~ 00637677 n 0000 ~ 00637810 n 0000 | a systematic investigation of a matter of public interest -00636921 04 n 01 research 0 008 @ 00633864 n 0000 + 00648224 v 0101 ~ 00637546 n 0000 ~ 00639833 n 0000 ~ 00640188 n 0000 ~ 00640889 n 0000 ~ 00641522 n 0000 ~ 00641820 n 0000 | systematic investigation to establish facts -00637145 04 n 02 eleven-plus 0 11-plus 0 002 @ 00636461 n 0000 ;r 08860123 n 0000 | (formerly in Britain) an examination taken by 11 and 12 year old students to select suitable candidates for grammar school -00637354 04 n 01 search 2 002 @ 00633864 n 0000 + 00648224 v 0102 | an investigation seeking answers; "a thorough search of the ledgers revealed nothing"; "the outcome justified the search" -00637546 04 n 01 operations_research 0 001 @ 00636921 n 0000 | research designed to determine most efficient way to do something -00637677 04 n 01 means_test 0 001 @ 00636728 n 0000 | an inquiry into the financial position of someone applying for financial aid -00637810 04 n 01 inquest 0 001 @ 00636728 n 0000 | an inquiry into the cause of an unexpected death -00637912 04 n 01 big_science 0 001 @ 00641820 n 0000 | scientific research that requires massive capital investment but is expected to yield very significant results -00638080 04 n 01 biological_research 0 004 @ 00641820 n 0000 ~ 00638243 n 0000 ~ 00638770 n 0000 ~ 00639267 n 0000 | scientific research conducted by biologists -00638243 04 n 01 cloning 0 003 @ 00638080 n 0000 ~ 00638448 n 0000 ~ 00639007 n 0000 | a general term for the research activity that creates a copy of some biological entity (a gene or organism or cell) -00638448 04 n 01 reproductive_cloning 0 002 @ 00638243 n 0000 ~ 00638602 n 0000 | making a full living copy of an organism; requires a surrogate mother -00638602 04 n 01 human_reproductive_cloning 0 001 @ 00638448 n 0000 | the reproductive cloning of a sentient human being; generally considered ethically unacceptable -00638770 04 n 04 somatic_cell_nuclear_transplantation 0 somatic_cell_nuclear_transfer 0 SCNT 0 nuclear_transplantation 0 002 @ 00638080 n 0000 ~ 00639007 n 0000 | moving a cell nucleus and its genetic material from one cell to another -00639007 04 n 02 therapeutic_cloning 0 biomedical_cloning 0 002 @ 00638770 n 0000 @ 00638243 n 0000 | nuclear transplantation of a patient's own cells to make an oocyte from which immune-compatible cells (especially stem cells) can be derived for transplant -00639267 04 n 01 stem-cell_research 0 002 @ 00638080 n 0000 ~ 00639398 n 0000 | research on stem cells and their use in medicine -00639398 04 n 01 embryonic_stem-cell_research 0 001 @ 00639267 n 0000 | biological research on stem cells derived from embryos and on their use in medicine -00639556 04 n 02 experiment 0 experimentation 0 009 @ 00641820 n 0000 + 02532595 v 0201 + 02532595 v 0101 ~ 00639975 n 0000 ~ 00641421 n 0000 ~ 00693109 n 0000 ~ 05798413 n 0000 %p 05798569 n 0000 %p 05798863 n 0000 | the act of conducting a controlled test or investigation -00639833 04 n 01 field_work 0 001 @ 00636921 n 0000 | an investigation carried out in the field rather than in a laboratory or headquarters -00639975 04 n 01 testing 0 002 @ 00639556 n 0000 + 02531625 v 0101 | the act of subjecting to experimental test in order to determine how well something works; "they agreed to end the testing of atomic weapons" -00640188 04 n 02 marketing_research 0 market_research 0 004 @ 00636921 n 0000 ~ 00640434 n 0000 ~ 00640560 n 0000 ~ 00640721 n 0000 | research that gathers and analyzes information about the moving of good or services from producer to consumer -00640434 04 n 01 market_analysis 0 001 @ 00640188 n 0000 | marketing research that yields information about the marketplace -00640560 04 n 01 product_research 0 001 @ 00640188 n 0000 | marketing research that yields information about desired characteristics of the product or service -00640721 04 n 01 consumer_research 0 001 @ 00640188 n 0000 | marketing research that yields information about the motives and needs of different classes of consumers -00640889 04 n 01 microscopy 0 008 @ 00636921 n 0000 + 02918844 a 0101 + 02918844 a 0102 + 10313872 n 0101 ~ 00641109 n 0000 ~ 00645622 n 0000 ~ 00645843 n 0000 -c 15052970 n 0000 | research with the use of microscopes -00641109 04 n 01 electron_microscopy 0 001 @ 00640889 n 0000 | microscopy with the use of electron microscopes -00641222 04 n 03 electron_spin_resonance 0 ESR 0 electron_paramagnetic_resonance 0 001 @ 00650912 n 0000 | microwave spectroscopy in which there is resonant absorption of radiation by a paramagnet -00641421 04 n 01 trial_and_error 0 001 @ 00639556 n 0000 | experimenting until a solution is found -00641522 04 n 01 probe 1 002 @ 00636921 n 0000 + 01226875 v 0101 | an investigation conducted using a flexible surgical instrument to explore an injury or a body cavity -00641693 04 n 01 Human_Genome_Project 0 001 @i 00641820 n 0000 | an international study of the entire human genetic material -00641820 04 n 02 scientific_research 0 research_project 0 005 @ 00636921 n 0000 ~ 00637912 n 0000 ~ 00638080 n 0000 ~ 00639556 n 0000 ~i 00641693 n 0000 | research into questions posed by scientific theories and hypotheses -00642045 04 n 01 endoscopy 0 009 @ 00635850 n 0000 + 03063601 a 0101 ~ 00642325 n 0000 ~ 00642446 n 0000 ~ 00642604 n 0000 ~ 00642762 n 0000 ~ 00642910 n 0000 ~ 00643067 n 0000 ~ 00643208 n 0000 | visual examination of the interior of a hollow body organ by use of an endoscope -00642325 04 n 01 celioscopy 0 001 @ 00642045 n 0000 | endoscopic examination of the abdomen through the abdominal wall -00642446 04 n 01 colonoscopy 0 001 @ 00642045 n 0000 | visual examination of the colon (with a colonoscope) from the cecum to the rectum; requires sedation -00642604 04 n 01 culdoscopy 0 001 @ 00642045 n 0000 | endoscopic examination of a woman's pelvic organs by the insertion of a culdoscope through the vagina -00642762 04 n 01 gastroscopy 0 001 @ 00642045 n 0000 | visual examination of the stomach by means of a gastroscope inserted through the esophagus -00642910 04 n 01 hysteroscopy 0 001 @ 00642045 n 0000 | visual examination of the uterus and uterine lining using an endoscope inserted through the vagina -00643067 04 n 01 proctoscopy 0 001 @ 00642045 n 0000 | visual examination of the rectum and the end of the colon by means of a proctoscope -00643208 04 n 02 sigmoidoscopy 0 flexible_sigmoidoscopy 0 001 @ 00642045 n 0000 | visual examination (with a sigmoidoscope) of the lower third of the colon in a search for polyps -00643389 04 n 01 gonioscopy 0 001 @ 00635850 n 0000 | an examination of the front part of the eye to check the angle where the iris meets the cornea; it is used to distinguish between open-angle glaucoma and closed-angle glaucoma -00643621 04 n 01 keratoscopy 0 001 @ 00635850 n 0000 | examination of the cornea with a keratoscope to detect irregularities in its anterior surface -00643772 04 n 01 rhinoscopy 0 001 @ 00635850 n 0000 | examination of the nasal passages (either through the anterior nares or with a rhinoscope through the nasopharynx) -00643943 04 n 01 scan 0 003 @ 00635850 n 0000 + 01318659 v 0101 + 02152504 v 0101 | the act of scanning; systematic examination of a prescribed region; "he made a thorough scan of the beach with his binoculars" -00644156 04 n 01 scanning 0 001 @ 01019901 n 0000 | the act of systematically moving a finely focused beam of light or electrons over a surface in order to produce an image of it for analysis or transmission -00644366 04 n 01 search 1 002 @ 00635850 n 0000 + 01317723 v 0101 | boarding and inspecting a ship on the high seas; "right of search" -00644503 04 n 02 survey 2 study 0 007 @ 00635850 n 0000 + 02166460 v 0201 + 00644583 v 0203 + 00696700 v 0103 + 02150328 v 0101 + 00646542 v 0101 ~ 00879531 n 0000 | a detailed critical inspection -00644702 04 n 01 testing 3 004 @ 00635850 n 0000 + 02745713 v 0101 + 00920778 v 0101 ~ 00644967 n 0000 | an examination of the characteristics of something; "there are laboratories for commercial testing"; "it involved testing thousands of children for smallpox" -00644967 04 n 01 screening 1 004 @ 00644702 n 0000 + 02400378 v 0101 ~ 00645162 n 0000 + 00697419 v 0101 | testing objects or persons in order to identify those with particular characteristics -00645162 04 n 01 genetic_screening 0 001 @ 00644967 n 0000 | analyzing a group of people to determine genetic susceptibility to a particular disease; "genetic screening of infants for phenylketonuria" -00645365 04 n 06 time_and_motion_study 0 time-and-motion_study 0 time-motion_study 0 motion_study 0 time_study 0 work_study 0 001 @ 00635850 n 0000 | an analysis of a specific job in an effort to find the most efficient method in terms of time and effort -00645622 04 n 02 dark_ground_illumination 0 dark_field_illumination 0 001 @ 00640889 n 0000 | a form of microscopic examination of living material by scattered light; specimens appear luminous against a dark background -00645843 04 n 01 fluorescence_microscopy 0 002 @ 00640889 n 0000 ~ 00646024 n 0000 | light microscopy in which the specimen is irradiated at wavelengths that excite fluorochromes -00646024 04 n 01 indirect_immunofluorescence 0 001 @ 00645843 n 0000 | a method of using fluorescence microscopy to detect the presence of an antigen indirectly -00646187 04 n 01 anatomy 0 003 @ 00634276 n 0000 + 00645241 v 0101 + 01550594 v 0102 | a detailed analysis; "he studied the anatomy of crimes" -00646332 04 n 02 urinalysis 0 uranalysis 0 003 @ 00646833 n 0000 @ 00152727 n 0000 ;c 06043075 n 0000 | (medicine) the chemical analysis of urine (for medical diagnosis) -00646504 04 n 01 scatology 0 002 @ 00646833 n 0000 ;c 06043075 n 0000 | (medicine) the chemical analysis of excrement (for medical diagnosis or for paleontological purposes) -00646680 04 n 01 case_study 0 001 @ 00634276 n 0000 | a detailed analysis of a person or group from a social or psychological or medical point of view -00646833 04 n 02 chemical_analysis 0 qualitative_analysis 0 010 @ 00634276 n 0000 ~ 00646332 n 0000 ~ 00646504 n 0000 ~ 00647147 n 0000 ~ 00647270 n 0000 ~ 00649482 n 0000 ~ 00649760 n 0000 ~ 00992331 n 0000 ~ 01116466 n 0000 -c 04394031 n 0000 | the act of decomposing a substance into its constituent elements -00647147 04 n 01 polarography 0 002 @ 00646833 n 0000 + 02781425 a 0101 | an electrochemical method of chemical analysis -00647270 04 n 02 quantitative_analysis 0 quantitative_chemical_analysis 0 006 @ 00646833 n 0000 @ 00996969 n 0000 ~ 00647536 n 0000 ~ 00647713 n 0000 ~ 00648542 n 0000 ~ 00648692 n 0000 | chemical analysis to determine the amounts of each element in the substance -00647536 04 n 02 colorimetry 0 colorimetric_analysis 0 003 @ 00647270 n 0000 + 02700615 a 0101 + 02700615 a 0102 | quantitative chemical analysis by color using a colorimeter -00647713 04 n 01 volumetric_analysis 0 004 @ 00647270 n 0000 ~ 00647919 n 0000 ~ 00648087 n 0000 ~ 00648237 n 0000 | quantitative analysis by the use of definite volumes of standard solutions or reagents -00647919 04 n 01 acidimetry 0 002 @ 00647713 n 0000 + 02601564 a 0101 | volumetric analysis using standard solutions of acids to measure the amount of a base present -00648087 04 n 01 alkalimetry 0 001 @ 00647713 n 0000 | volumetric analysis using standard solutions of alkali to measure the amount of acid present -00648237 04 n 01 titration 0 002 @ 00647713 n 0000 + 00491910 v 0101 | a measured amount of a solution of unknown concentration is added to a known volume of a second solution until the reaction between them is just complete; the concentration of the unknown solution (the titer) can then be calculated -00648542 04 n 01 volumetric_analysis 1 001 @ 00647270 n 0000 | determination of the volume of gases (or changes in their volume) during combination -00648692 04 n 01 gravimetric_analysis 0 001 @ 00647270 n 0000 | quantitative analysis by weight -00648790 04 n 01 cost_analysis 0 001 @ 00634276 n 0000 | breaking down the costs of some operation and reporting on each factor separately -00648931 04 n 01 dissection 2 002 @ 00634276 n 0000 + 00643473 v 0104 | detailed critical analysis or examination one part at a time (as of a literary work) -00649090 04 n 02 fundamental_analysis 0 fundamentals_analysis 0 002 @ 00634276 n 0000 ;c 04323026 n 0000 | (stock exchange) the use of fundamentals as an investment strategy -00649266 04 n 02 technical_analysis 0 technical_analysis_of_stock_trends 0 002 @ 00634276 n 0000 ;c 04323026 n 0000 | (stock exchange) analysis of past price changes in the hope of forecasting future price changes -00649482 04 n 05 spectroscopy 0 spectrometry 0 spectroscopic_analysis 0 spectrum_analysis 0 spectrographic_analysis 0 006 @ 00646833 n 0000 + 02918132 a 0201 + 02918271 a 0101 + 02918271 a 0102 ~ 00650743 n 0000 ~ 00650912 n 0000 | the use of spectroscopes to analyze spectra -00649760 04 n 01 dialysis 0 005 @ 00646833 n 0000 + 00330426 v 0102 ~ 00649992 n 0000 ~ 00650543 n 0000 %p 13528100 n 0000 | separation of substances in solution by means of their unequal diffusion through semipermeable membranes -00649992 04 n 02 apheresis 0 pheresis 0 004 @ 00649760 n 0000 + 02631955 a 0102 ~ 00650267 n 0000 ~ 00650402 n 0000 | a procedure in which blood is drawn and separated into its components by dialysis; some are retained and the rest are returned to the donor by transfusion -00650267 04 n 01 plasmapheresis 0 001 @ 00649992 n 0000 | plasma is separated from whole blood and the rest is returned to the donor -00650402 04 n 01 plateletpheresis 0 001 @ 00649992 n 0000 | platelets are separated from whole blood and the rest is returned to the donor -00650543 04 n 02 hemodialysis 0 haemodialysis 0 001 @ 00649760 n 0000 | dialysis of the blood to remove toxic substances or metabolic wastes from the bloodstream; used in the case of kidney failure -00650743 04 n 01 mass_spectroscopy 0 002 @ 00649482 n 0000 + 02918490 a 0101 | the use of spectroscopy to determine the masses of small electrically charged particles -00650912 04 n 01 microwave_spectroscopy 0 002 @ 00649482 n 0000 ~ 00641222 n 0000 | the use of spectroscopy to study atomic or molecular resonances in the microwave spectrum -00651088 04 n 01 likening 0 001 @ 00142665 n 0000 | the act of comparing similarities -00651176 04 n 01 analogy 0 006 @ 00142665 n 0000 + 02071973 a 0101 + 09789898 n 0101 + 01419462 a 0101 + 00653283 v 0101 + 00653283 v 0102 | drawing a comparison in order to show a similarity in some respect; "the operation of a computer presents and interesting analogy to the working of the brain"; "the models show by analogy how matter is built up" -00651531 04 n 01 collation 1 002 @ 00142665 n 0000 + 00661713 v 0101 | careful examination and comparison to note points of disagreement -00651670 04 n 01 confrontation 1 002 @ 00142665 n 0000 + 01066433 v 0101 | a focussed comparison; bringing together for a careful comparison -00651813 04 n 01 contrast 0 003 @ 00142665 n 0000 + 02666882 v 0101 + 00661213 v 0101 | the act of distinguishing by comparing differences -00651954 04 n 01 lighterage 0 002 @ 00315986 n 0000 + 01954852 v 0101 | the transportation of goods on a lighter -00652069 04 n 01 visitation 0 002 @ 01233156 n 0000 + 01844048 v 0101 | an official visit for inspection or supervision; "the commissioner made visitations to all the precinct stations"; "the recent visitation of the bishop to his diocese" -00652311 04 n 01 site_visit 0 001 @ 01233156 n 0000 | a visit in an official capacity to examine a site to determine its suitability for some enterprise -00652466 04 n 01 surveillance 1 005 @ 00635012 n 0000 ~ 00654765 n 0000 ~ 00880662 n 0000 ~ 00880893 n 0000 ~ 00881035 n 0000 | close observation of a person or group (usually by the police) -00652659 04 n 01 tabulation 0 002 @ 00633864 n 0000 + 01745536 v 0104 | the act of putting into tabular form; "the tabulation of the results" -00652803 04 n 01 blood_count 0 003 @ 00634586 n 0000 ~ 00652975 n 0000 ~ 00653171 n 0000 | the act of estimating the number of red and white corpuscles in a blood sample -00652975 04 n 03 complete_blood_count 0 CBC 0 blood_profile 0 001 @ 00652803 n 0000 | counting the number of white and red blood cells and the number of platelets in 1 cubic millimeter of blood -00653171 04 n 01 differential_blood_count 0 001 @ 00652803 n 0000 | counting the number of specific types of white blood cells found in 1 cubic millimeter of blood; may be included as part of a complete blood count -00653388 04 n 03 census 0 nose_count 0 nosecount 0 002 @ 00634586 n 0000 + 00948707 v 0101 | a periodic count of the population -00653518 04 n 01 countdown 0 002 @ 00634586 n 0000 + 00947717 v 0101 | counting backward from an arbitrary number to indicate the time remaining before some event (such as launching a space vehicle) -00653719 04 n 01 miscount 0 002 @ 00634586 n 0000 + 00948602 v 0101 | an inaccurate count -00653811 04 n 01 poll 0 004 @ 00634586 n 0000 ;c 00181781 n 0000 + 02454835 v 0101 + 02463298 v 0101 | the counting of votes (as in an election) -00653958 04 n 01 recount 0 002 @ 00634586 n 0000 + 00801355 v 0101 | an additional (usually a second) count; especially of the votes in a close election -00654113 04 n 01 sperm_count 0 001 @ 00634586 n 0000 | the act of estimating the number of spermatozoa in an ejaculate -00654234 04 n 02 spying 0 undercover_work 0 003 @ 00981830 n 0000 + 00785470 v 0101 ~ 00654563 n 0000 | the act of keeping a secret watch for intelligence purposes -00654400 04 n 02 wiretap 0 tap 1 003 @ 00633864 n 0000 + 02188848 v 0202 + 02188848 v 0101 | the act of tapping a telephone or telegraph line to get information -00654563 04 n 01 espionage 0 001 @ 00654234 n 0000 | the systematic use of spies to get military or political secrets -00654683 04 n 01 counterespionage 0 001 @ 00986275 n 0000 | spying on the spies -00654765 04 n 01 electronic_surveillance 0 001 @ 00652466 n 0000 | surveillance by electronic means (e.g. television) -00654885 04 n 04 care 1 attention 1 aid 1 tending 0 025 @ 00575741 n 0000 + 02549847 v 0401 + 00082081 v 0302 + 02549581 v 0201 + 02550296 v 0101 ~ 00257228 n 0000 ~ 00655540 n 0000 ~ 00655727 n 0000 ~ 00655878 n 0000 ~ 00656292 n 0000 ~ 00656524 n 0000 ~ 00658082 n 0000 ~ 00658796 n 0000 ~ 00658946 n 0000 ~ 00660783 n 0000 ~ 00660957 n 0000 ~ 00664849 n 0000 ~ 00665079 n 0000 ~ 00665221 n 0000 ~ 00665358 n 0000 ~ 00665476 n 0000 ~ 00665679 n 0000 ~ 00699736 n 0000 ~ 00921530 n 0000 ~ 01059900 n 0000 | the work of providing treatment for or attending to someone or something; "no medical care was required"; "the old car needs constant attention" -00655540 04 n 01 maternalism 0 002 @ 00654885 n 0000 + 01735130 a 0101 | motherly care; behavior characteristic of a mother; the practice of acting as a mother does toward her children -00655727 04 n 02 babysitting 0 baby_sitting 0 001 @ 00654885 n 0000 | the work of a baby sitter; caring for children when their parents are not home -00655878 04 n 01 pet_sitting 0 001 @ 00654885 n 0000 | the work of a pet sitter; caring for pets in their own home while their owners are away from home -00656033 04 n 01 primary_care 0 001 @ 00657604 n 0000 | the medical care received on first contact with the medical system (before being referred elsewhere) -00656192 04 n 01 aftercare 0 001 @ 00657604 n 0000 | care and treatment of a convalescent patient -00656292 04 n 01 dental_care 0 002 @ 00654885 n 0000 ~ 00656386 n 0000 | care for the teeth -00656386 04 n 02 brush 3 brushing 3 001 @ 00656292 n 0000 | the act of brushing your teeth; "the dentist recommended two brushes a day" -00656524 04 n 01 first_aid 0 001 @ 00654885 n 0000 | emergency care given before regular medical aid can be obtained -00656643 04 n 02 eyedrop 0 eye-drop 0 005 @ 00695448 n 0000 ~ 00656835 n 0000 ~ 00657080 n 0000 ~ 00657257 n 0000 ~ 00657420 n 0000 | a method of irrigating the eye used by ophthalmologists -00656835 04 n 01 adrenergic_agonist_eyedrop 0 001 @ 00656643 n 0000 | a treatment for glaucoma; the eyedrops reduce intraocular pressure by decreasing the production of aqueous humor and increasing its drainage through the uveoscleral pathway -00657080 04 n 01 beta_blocker_eyedrop 0 001 @ 00656643 n 0000 | a treatment for glaucoma; the eyedrops reduce intraocular pressure by reducing the production of aqueous humor -00657257 04 n 01 miotic_eyedrop 0 001 @ 00656643 n 0000 | a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor by constricting the pupil -00657420 04 n 01 topical_prostaglandin_eyedrop 0 001 @ 00656643 n 0000 | a treatment for glaucoma; the eyedrops increase the outflow of aqueous humor through the uveoscleral pathway -00657604 04 n 02 medical_care 0 medical_aid 0 021 @ 00658082 n 0000 %p 00153105 n 0000 ~ 00656033 n 0000 ~ 00656192 n 0000 ~ 00658627 n 0000 ~ 00661091 n 0000 ~ 00664997 n 0000 ~ 00695448 n 0000 ~ 00696882 n 0000 ~ 00697024 n 0000 ~ 00697249 n 0000 ~ 00697365 n 0000 ~ 00698004 n 0000 ~ 00698959 n 0000 ~ 00699146 n 0000 ~ 00709521 n 0000 ~ 00709843 n 0000 ~ 00710015 n 0000 ~ 00710692 n 0000 ~ 00710889 n 0000 ~ 00711265 n 0000 | professional treatment for illness or injury -00658082 04 n 02 treatment 0 intervention 2 020 @ 00654885 n 0000 + 00078760 v 0101 ~ 00657604 n 0000 ~ 00659048 n 0000 ~ 00661847 n 0000 ~ 00699320 n 0000 ~ 00707967 n 0000 ~ 00708168 n 0000 ~ 00708332 n 0000 ~ 00708489 n 0000 ~ 00708676 n 0000 ~ 00708957 n 0000 ~ 00709205 n 0000 ~ 00709395 n 0000 ~ 00710155 n 0000 ~ 00710338 n 0000 ~ 00710550 n 0000 ~ 00711127 n 0000 ~ 00711413 n 0000 %p 04074482 n 0000 | care provided to improve a situation (especially medical procedures or applications that are intended to relieve illness or injury) -00658627 04 n 03 hospitalization 0 hospitalisation 0 hospital_care 0 003 @ 00657604 n 0000 + 02348927 v 0202 + 02348927 v 0101 | placing in medical care in a hospital -00658796 04 n 01 incubation 0 002 @ 00654885 n 0000 + 00254150 v 0101 | maintaining something at the most favorable temperature for its development -00658946 04 n 01 livery 1 001 @ 00654885 n 0000 | the care (feeding and stabling) of horses for pay -00659048 04 n 01 massage 0 010 @ 00658082 n 0000 + 00064487 v 0101 + 01232738 v 0101 ~ 00258695 n 0000 ~ 00659349 n 0000 ~ 00659667 n 0000 ~ 00659834 n 0000 ~ 00659946 n 0000 ~ 00660173 n 0000 ~ 00660324 n 0000 | kneading and rubbing parts of the body to increase circulation and promote relaxation -00659349 04 n 02 cardiac_massage 0 heart_massage 0 003 @ 00177783 n 0000 @ 00659048 n 0000 #p 00832626 n 0000 | an emergency procedure that employs rhythmic compression of the heart (either through the chest wall or, during surgery, directly to the heart) in an attempt to maintain circulation during cardiac arrest -00659667 04 n 01 effleurage 0 002 @ 00659048 n 0000 #p 13506119 n 0000 | a rhythmic stroking; "effleurage of the abdomen is used in the Lamaze method of childbirth" -00659834 04 n 01 petrissage 0 001 @ 00659048 n 0000 | massage of the skin which is gently lifted and squeezed -00659946 04 n 01 reflexology 0 001 @ 00659048 n 0000 | massage to relieve tension by finger pressure; based on the belief that there are reflex points on the feet, hands, and head that are connected to every part of the body -00660173 04 n 01 Swedish_massage 0 001 @ 00659048 n 0000 | massage combined with a system of active and passive exercises for the muscles and joints -00660324 04 n 01 tapotement 0 001 @ 00659048 n 0000 | massage in which the body is tapped rhythmically with the fingers or with short rapid movements of the sides of the hand; used to loosen mucus on the chest walls of patients with bronchitis -00660570 04 n 01 makeover 0 002 @ 00261797 n 0000 + 01619725 v 0104 | an overall beauty treatment (involving a person's hair style and cosmetics and clothing) intended to change or improve a person's appearance -00660783 04 n 01 manicure 0 005 @ 00654885 n 0000 @ 00261797 n 0000 + 10290919 n 0101 + 00042479 v 0101 + 00042641 v 0101 | professional care for the hands and fingernails -00660957 04 n 01 pedicure 0 003 @ 00654885 n 0000 @ 00261797 n 0000 + 00042936 v 0101 | professional care for the feet and toenails -00661091 04 n 01 therapy 0 027 @ 00657604 n 0000 ;c 06043075 n 0000 + 02914213 a 0101 + 02914213 a 0102 + 10707233 n 0101 ~ 00662196 n 0000 ~ 00662340 n 0000 ~ 00662527 n 0000 ~ 00662681 n 0000 ~ 00662972 n 0000 ~ 00663094 n 0000 ~ 00663333 n 0000 ~ 00663488 n 0000 ~ 00663714 n 0000 ~ 00663878 n 0000 ~ 00664110 n 0000 ~ 00664388 n 0000 ~ 00664577 n 0000 ~ 00700000 n 0000 ~ 00700421 n 0000 ~ 00700652 n 0000 ~ 00705580 n 0000 ~ 00706371 n 0000 ~ 00707213 n 0000 ~ 00707344 n 0000 ~ 00707537 n 0000 ~ 00707785 n 0000 | (medicine) the act of caring for someone (as by medication or remedial training etc.); "the quarterback is undergoing treatment for a knee injury"; "he tried every treatment the doctors suggested"; "heat therapy gave the best relief" -00661847 04 n 01 modality 0 003 @ 00658082 n 0000 #p 00700000 n 0000 ~ 00662017 n 0000 | a method of therapy that involves physical or electrical therapeutic treatment -00662017 04 n 01 diathermy 0 001 @ 00661847 n 0000 | a method of physical therapy that involves generating local heat in body tissues by high-frequency electromagnetic currents -00662196 04 n 01 aromatherapy 0 001 @ 00661091 n 0000 | the therapeutic use of aromatic plant extracts and essential oils in baths or massage -00662340 04 n 01 chemotherapy 0 004 @ 00661091 n 0000 + 02693533 a 0101 + 02693533 a 0102 ~ 00706222 n 0000 | the use of chemical agents to treat or control disease (or mental illness) -00662527 04 n 01 correction 1 002 @ 00661091 n 0000 ~ 00699517 n 0000 | treatment of a specific defect; "the correction of his vision with eye glasses" -00662681 04 n 04 electrotherapy 0 galvanism 0 electric_healing 0 electrical_healing 0 005 @ 00661091 n 0000 + 00090513 v 0201 + 00090513 v 0202 + 10049896 n 0101 ~ 00706605 n 0000 | the therapeutic application of electricity to the body (as in the treatment of various forms of paralysis) -00662972 04 n 02 heliotherapy 0 insolation 0 002 @ 00661091 n 0000 + 02112546 v 0202 | therapeutic exposure to sunlight -00663094 04 n 03 hormone_replacement_therapy 0 hormone-replacement_therapy 0 HRT 0 001 @ 00661091 n 0000 | hormones (estrogen and progestin) are given to postmenopausal women; believed to protect them from heart disease and osteoporosis -00663333 04 n 01 immunotherapy 0 001 @ 00661091 n 0000 | therapy designed to produce immunity to a disease or to enhance resistance by the immune system -00663488 04 n 01 infrared_therapy 0 001 @ 00661091 n 0000 | the use of infrared radiation (as by infrared lamps or heating pads or hot water bottles) to relieve pain and increase circulation to a particular area of the body -00663714 04 n 01 inflation_therapy 0 001 @ 00661091 n 0000 | therapy in which water or oxygen or a drug is introduced into the respiratory tract with inhaled air -00663878 04 n 05 iontophoresis 0 ionic_medication 0 iontotherapy 0 electromotive_drug_administration 0 EMDA 0 001 @ 00661091 n 0000 | therapy that uses a local electric current to introduce the ions of a medicine into the tissues -00664110 04 n 01 medication 0 005 @ 00661091 n 0000 + 00084562 v 0101 + 00084230 v 0101 ~ 00664285 n 0000 ~ 00694990 n 0000 | the act of treating with medicines or remedies -00664285 04 n 01 antipyresis 0 001 @ 00664110 n 0000 | medication with antipyretics to treat a fever -00664388 04 n 01 megavitamin_therapy 0 001 @ 00661091 n 0000 | therapy based on a theory that taking very large doses of vitamins will prevent or cure physical or psychological disorders -00664577 04 n 01 occupational_therapy 0 001 @ 00661091 n 0000 | therapy based on engagement in meaningful activities of daily life, especially to enable or encourage participation in such activities in spite of impairments or limitations in physical or mental functions -00664849 04 n 01 nourishment 0 002 @ 00654885 n 0000 + 01204191 v 0103 | the act of nourishing; "her nourishment of the orphans saved many lives" -00664997 04 n 01 nursing_care 0 001 @ 00657604 n 0000 | care by a skilled nurse -00665079 04 n 01 nursing 0 003 @ 00654885 n 0000 + 02550698 v 0101 + 00080705 v 0101 | the work of caring for the sick or injured or infirm -00665221 04 n 02 tender_loving_care 0 TLC 0 001 @ 00654885 n 0000 | considerate and solicitous care; "young children need lots of TLC" -00665358 04 n 01 nurturance 0 002 @ 00654885 n 0000 + 01202728 v 0102 | physical and emotional care and nourishment -00665476 04 n 01 personal_care 0 001 @ 00654885 n 0000 | care for someone who is disabled or is otherwise unable to care for themselves; can including bathing and cooking and managing bodily functions -00665679 04 n 02 skin_care 0 skincare 0 002 @ 00654885 n 0000 ~ 00665781 n 0000 | care for the skin -00665781 04 n 01 facial 0 003 @ 00665679 n 0000 @ 00261797 n 0000 + 02877704 a 0101 | care for the face that usually involves cleansing and massage and the application of cosmetic creams -00665970 04 n 01 adenoidectomy 0 001 @ 00393369 n 0000 | surgical removal of the adenoids; commonly performed along with tonsillectomy -00666107 04 n 02 adrenalectomy 0 suprarenalectomy 0 001 @ 00393369 n 0000 | surgical removal of one or both adrenal glands -00666232 04 n 02 appendectomy 0 appendicectomy 0 001 @ 00393369 n 0000 | surgical removal of the vermiform appendix -00666350 04 n 01 amputation 0 002 @ 00671351 n 0000 + 01254692 v 0101 | a surgical removal of all or part of a limb -00666468 04 n 01 angioplasty 0 001 @ 00671351 n 0000 | an operation to repair a damaged blood vessel or unblock a coronary artery -00666600 04 n 01 arthrodesis 0 001 @ 00666733 n 0000 | the surgical fixation of a joint which is intended to result in bone fusion -00666733 04 n 01 arthroplasty 0 002 @ 00671351 n 0000 ~ 00666600 n 0000 | surgical reconstruction or replacement of a malformed or degenerated joint -00666884 04 n 01 arthroscopy 0 001 @ 00671351 n 0000 | a minimally invasive operation to repair a damaged joint; the surgeon examines the joint with an arthroscope while making repairs through a small incision -00667096 04 n 01 autoplasty 0 002 @ 00690501 n 0000 + 02652124 a 0101 | surgical repair by using tissue from another part of the patient's own body -00667246 04 n 01 brain_surgery 0 003 @ 00671351 n 0000 ~ 00667384 n 0000 ~ 00667612 n 0000 | any surgical procedure involving the brain -00667384 04 n 01 psychosurgery 0 004 @ 00667246 n 0000 ~ 00683722 n 0000 ~ 00683915 n 0000 ~ 00684128 n 0000 | brain surgery on human patients intended to relieve severe and otherwise intractable mental or behavioral problems -00667612 04 n 01 split-brain_technique 0 001 @ 00667246 n 0000 | brain surgery on animals in which the corpus callosum (and sometimes the optic chiasm) is severed so that communication between the cerebral hemispheres is interrupted -00667847 04 n 01 castration 1 002 @ 00671351 n 0000 + 00060477 v 0104 | surgical removal of the testes or ovaries (usually to inhibit hormone secretion in cases of breast cancer in women or prostate cancer in men); "bilateral castration results in sterilization" -00668112 04 n 03 cautery 0 cauterization 0 cauterisation 0 007 @ 00671351 n 0000 + 00373766 v 0302 + 00373766 v 0201 + 00373766 v 0101 + 00373766 v 0102 ~ 00697614 n 0000 ~ 00697887 n 0000 | the act of coagulating blood and destroying tissue with a hot iron or caustic agent or by freezing -00668404 04 n 01 chemosurgery 0 001 @ 00671351 n 0000 | use of chemical to destroy diseased or malignant tissue; used in treatment of skin cancer -00668552 04 n 01 colostomy 0 002 @ 00689550 n 0000 %p 05246215 n 0000 | a surgical operation that creates an opening from the colon to the surface of the body to function as an anus -00668736 04 n 01 craniotomy 0 001 @ 00671351 n 0000 | a surgical opening through the skull -00668829 04 n 01 cryosurgery 0 001 @ 00671351 n 0000 | the use of extreme cold (usually liquid nitrogen) to destroy unwanted tissue (warts or cataracts or skin cancers) -00669000 04 n 01 cholecystectomy 0 002 @ 00393369 n 0000 ~ 00669262 n 0000 | surgical removal of the gall bladder (usually for relief of gallstone pain) -00669155 04 n 02 clitoridectomy 0 female_circumcision 0 001 @ 00393369 n 0000 | excision of the clitoris -00669262 04 n 02 laparoscopic_cholecystectomy 0 lap_choly 0 001 @ 00669000 n 0000 | removal of the gall bladder through small punctures in the abdomen to permit the insertion of a laparoscope and surgical instruments -00669481 04 n 02 curettage 0 curettement 0 003 @ 00671351 n 0000 #p 00670250 n 0000 ~ 00669687 n 0000 | surgery to remove tissue or growths from a bodily cavity (as the uterus) by scraping with a curette -00669687 04 n 02 suction_curettage 0 vacuum_aspiration 0 002 @ 00669481 n 0000 @ 00231161 n 0000 | a method of induced abortion; prior to the 14th week of gestation the embryo and placenta are removed by applying suction to the dilated cervix -00669932 04 n 01 debridement 0 001 @ 00671351 n 0000 | surgical removal of foreign material and dead tissue from a wound in order to prevent infection and promote healing -00670105 04 n 01 decortication 0 003 @ 00671351 n 0000 + 00176874 v 0101 + 01263999 v 0101 | removal of the outer covering of an organ or part -00670250 04 n 03 dilation_and_curettage 0 dilatation_and_curettage 0 D_and_C 0 002 @ 00671351 n 0000 %p 00669481 n 0000 | a surgical procedure usually performed under local anesthesia in which the cervix is dilated and the endometrial lining of the uterus is scraped with a curet; performed to obtain tissue samples or to stop prolonged bleeding or to remove small tumors or to remove fragments of placenta after childbirth or as a method of abortion -00670703 04 n 02 disembowelment 0 evisceration 1 002 @ 00391599 n 0000 + 00197590 v 0202 | the act of removing the bowels or viscera; the act of cutting so as to cause the viscera to protrude -00670897 04 n 01 electrosurgery 0 001 @ 00671351 n 0000 | surgery performed with electrical devices (as in electrocautery) -00671022 04 n 02 enterostomy 0 enterotomy 0 001 @ 00671351 n 0000 | surgical operation that creates a permanent opening through the abdominal wall into the intestine -00671190 04 n 01 enucleation 0 002 @ 00671351 n 0000 + 00176459 v 0101 | surgical removal of something without cutting into it; "the enucleation of the tumor" -00671351 04 n 05 operation 0 surgery 1 surgical_operation 0 surgical_procedure 0 surgical_process 0 078 @ 01024392 n 0000 ;c 06063588 n 0000 + 01169194 a 0201 + 00083809 v 0102 + 01169194 a 0102 ~ 00321562 n 0000 ~ 00393369 n 0000 ~ 00666350 n 0000 ~ 00666468 n 0000 ~ 00666733 n 0000 ~ 00666884 n 0000 ~ 00667246 n 0000 ~ 00667847 n 0000 ~ 00668112 n 0000 ~ 00668404 n 0000 ~ 00668736 n 0000 ~ 00668829 n 0000 ~ 00669481 n 0000 ~ 00669932 n 0000 ~ 00670105 n 0000 ~ 00670250 n 0000 ~ 00670897 n 0000 ~ 00671022 n 0000 ~ 00671190 n 0000 ~ 00673109 n 0000 ~ 00673578 n 0000 ~ 00673710 n 0000 ~ 00673863 n 0000 ~ 00674562 n 0000 ~ 00674760 n 0000 ~ 00674864 n 0000 ~ 00675064 n 0000 ~ 00675219 n 0000 ~ 00676693 n 0000 %p 00676834 n 0000 ~ 00677299 n 0000 ~ 00677808 n 0000 %p 00678010 n 0000 ~ 00681299 n 0000 ~ 00681441 n 0000 ~ 00684837 n 0000 ~ 00684988 n 0000 ~ 00685349 n 0000 ~ 00688462 n 0000 ~ 00688557 n 0000 ~ 00688647 n 0000 ~ 00688766 n 0000 ~ 00688915 n 0000 ~ 00689186 n 0000 ~ 00689467 n 0000 ~ 00689550 n 0000 ~ 00689729 n 0000 ~ 00690132 n 0000 ~ 00690281 n 0000 ~ 00690501 n 0000 ~ 00690848 n 0000 ~ 00691050 n 0000 ~ 00691190 n 0000 ~ 00691330 n 0000 ~ 00691648 n 0000 ~ 00691879 n 0000 ~ 00692130 n 0000 ~ 00692840 n 0000 ~ 00692991 n 0000 ~ 00693399 n 0000 ~ 00693679 n 0000 ~ 00694276 n 0000 ~ 00694420 n 0000 ~ 00694578 n 0000 %p 00716055 n 0000 ~ 00716520 n 0000 ~ 00716777 n 0000 -c 00021997 v 0000 -c 00073584 v 0000 -c 00176874 v 0000 -c 00177578 v 0000 -c 00181005 v 0000 -c 01443871 v 0000 | a medical procedure involving an incision with instruments; performed to repair damage or arrest disease in a living body; "they will schedule the operation as soon as an operating room is available"; "he died while undergoing surgery" -00673109 04 n 01 wrong-site_surgery 0 001 @ 00671351 n 0000 | a surgical operation performed on the wrong part of the body -00673234 04 n 01 embolectomy 0 001 @ 00393369 n 0000 | surgical removal of an embolus (usually from an artery) -00673347 04 n 01 endarterectomy 0 001 @ 00393369 n 0000 | surgical removal of the inner lining of an artery that is clogged with atherosclerosis -00673494 04 n 01 enervation 0 001 @ 00393369 n 0000 | surgical removal of a nerve -00673578 04 n 01 evisceration 0 001 @ 00671351 n 0000 | surgical removal of an organ (or the contents of an organ) from a patient -00673710 04 n 01 exenteration 0 002 @ 00671351 n 0000 + 00176618 v 0101 | surgical removal of the organs within a body cavity (as those of the pelvis) -00673863 04 n 02 eye_operation 0 eye_surgery 0 011 @ 00671351 n 0000 ~ 00678425 n 0000 ~ 00678988 n 0000 ~ 00679379 n 0000 ~ 00679566 n 0000 ~ 00679724 n 0000 ~ 00679910 n 0000 ~ 00680183 n 0000 ~ 00680336 n 0000 ~ 00680511 n 0000 ~ 00680658 n 0000 | any surgical procedure involving the eyes -00674158 04 n 08 face_lift 0 facelift 0 lift 1 face_lifting 0 cosmetic_surgery 0 rhytidectomy 0 rhytidoplasty 0 nip_and_tuck 0 003 @ 00690501 n 0000 + 00061933 v 0401 ~ 00689062 n 0000 | plastic surgery to remove wrinkles and other signs of aging from your face; an incision is made near the hair line and skin is pulled back and excess tissue is excised; "some actresses have more than one face lift" -00674562 04 n 01 fenestration 0 002 @ 00671351 n 0000 ;c 06054700 n 0000 | surgical procedure that creates a new fenestra to the cochlea in order to restore hearing lost because of osteosclerosis -00674760 04 n 01 gastrectomy 0 001 @ 00671351 n 0000 | surgical removal of all or part of the stomach -00674864 04 n 01 gastroenterostomy 0 001 @ 00671351 n 0000 | surgical creation of an opening between the stomach wall and the small intestines; performed when the normal opening has been eliminated -00675064 04 n 01 gastrostomy 0 001 @ 00671351 n 0000 | surgical creation of an opening through the abdominal wall into the stomach (as for gastrogavage) -00675219 04 n 01 heart_surgery 0 003 @ 00671351 n 0000 ~ 00675357 n 0000 ~ 00675540 n 0000 | any surgical procedure involving the heart -00675357 04 n 01 closed-heart_surgery 0 003 @ 00675219 n 0000 ~ 00676160 n 0000 ~ 00676453 n 0000 | heart surgery in which a small incision is made (the chest cavity is not opened) -00675540 04 n 01 open-heart_surgery 0 002 @ 00675219 n 0000 ~ 00675808 n 0000 | heart surgery in which the rib cage is spread open, the heart is stopped and blood is detoured through a heart-lung machine while a heart valve or coronary artery is surgically repaired -00675808 04 n 04 coronary_bypass 0 coronary_bypass_surgery 0 coronary_artery_bypass_graft 0 CABG 0 001 @ 00675540 n 0000 | open-heart surgery in which the rib cage is opened and a section of a blood vessel is grafted from the aorta to the coronary artery to bypass the blocked section of the coronary artery and improve the blood supply to the heart -00676160 04 n 01 port-access_coronary_bypass_surgery 0 001 @ 00675357 n 0000 | heart surgery in which a coronary bypass is performed by the use of small instruments and tiny cameras threaded through small incisions while the heart is stopped and blood is pumped through a heart-lung machine -00676453 04 n 01 minimally_invasive_coronary_bypass_surgery 0 001 @ 00675357 n 0000 | heart surgery in which a coronary bypass is performed on the beating heart by the use of small instruments and cameras threaded through small incisions -00676693 04 n 02 hemorrhoidectomy 0 haemorrhoidectomy 0 001 @ 00671351 n 0000 | surgical procedure for tying hemorrhoids and excising them -00676834 04 n 04 hemostasis 0 haemostasis 0 hemostasia 0 haemostasia 0 003 @ 01076046 n 0000 #p 00671351 n 0000 + 00189833 a 0102 | surgical procedure of stopping the flow of blood (as with a hemostat) -00677038 04 n 01 hypophysectomy 0 003 @ 00393369 n 0000 + 00181005 v 0101 + 00181005 v 0102 | surgical removal of the pituitary gland -00677174 04 n 01 hysterectomy 0 003 @ 00393369 n 0000 ~ 00677434 n 0000 ~ 00677613 n 0000 | surgical removal of the uterus -00677299 04 n 01 hysterotomy 0 002 @ 00671351 n 0000 #p 00185778 n 0000 | surgical incision into the uterus (as in cesarean section) -00677434 04 n 02 radical_hysterectomy 0 panhysterectomy 0 001 @ 00677174 n 0000 | surgical removal of the uterus and the ovaries and oviducts and cervix and related lymph nodes -00677613 04 n 01 total_hysterectomy 0 001 @ 00677174 n 0000 | surgical removal of the uterus and cervix -00677719 04 n 01 gastromy 0 001 @ 00678010 n 0000 | surgical incision into the stomach -00677808 04 n 01 implantation 1 002 @ 00671351 n 0000 + 01528821 v 0101 | a surgical procedure that places something in the human body; "the implantation of radioactive pellets in the prostate gland" -00678010 04 n 03 incision 0 section 0 surgical_incision 0 014 @ 00387657 n 0000 #p 00671351 n 0000 + 00802020 a 0101 + 01555742 v 0101 ~ 00677719 n 0000 ~ 00680803 n 0000 ~ 00682856 n 0000 ~ 00689302 n 0000 ~ 00691541 n 0000 ~ 00698234 n 0000 ~ 00698348 n 0000 ~ 00698474 n 0000 ~ 00698609 n 0000 ~ 00716397 n 0000 | the cutting of or into body tissues or organs (especially by a surgeon as part of an operation) -00678425 04 n 01 cataract_surgery 0 003 @ 00673863 n 0000 ~ 00678632 n 0000 ~ 00678752 n 0000 | eye surgery that involves removing all or part of the lens and replacing it with an intraocular lens implant -00678632 04 n 01 intracapsular_surgery 0 001 @ 00678425 n 0000 | cataract surgery in which the entire lens is removed -00678752 04 n 01 extracapsular_surgery 0 002 @ 00678425 n 0000 ~ 00679140 n 0000 | cataract surgery in which only the front of the lens is removed; the back of the lens capsule remains intact and provides support for the lens implant -00678988 04 n 01 cyclodestructive_surgery 0 001 @ 00673863 n 0000 | an eye operation that treats glaucoma by destroying the ciliary body with a laser -00679140 04 n 01 phacoemulsification 0 001 @ 00678752 n 0000 | extracapsular surgery for cataracts in which ultrasonic sound breaks the cortex and nucleus of the lens into small fragments that are then vacuumed away through a small tube -00679379 04 n 01 filtration_surgery 0 001 @ 00673863 n 0000 | eye surgery that opens a passage allowing excess aqueous humor to drain into surrounding tissues; a treatment for glaucoma -00679566 04 n 01 iridectomy 0 001 @ 00673863 n 0000 | an eye operation that treats closed-angle glaucoma by surgical removal of part of the iris of the eye -00679724 04 n 01 iridotomy 0 001 @ 00673863 n 0000 | a surgical procedure that makes an incision in the iris of the eye in order to enlarge the pupil or to treat closed-angle glaucoma -00679910 04 n 01 keratotomy 0 002 @ 00673863 n 0000 ~ 00680018 n 0000 | surgical incision into the cornea -00680018 04 n 01 radial_keratotomy 0 001 @ 00679910 n 0000 | radial pattern of incisions in the cornea that cause the cornea to bulge; performed to correct myopia -00680183 04 n 02 laser-assisted_subepithelial_keratomileusis 0 LASEK 0 001 @ 00673863 n 0000 | a refractive surgery procedure that reshapes the cornea -00680336 04 n 01 laser_trabecular_surgery 0 001 @ 00673863 n 0000 | eye surgery that makes many tiny laser burns in an area that will increase the drainage of aqueous humor -00680511 04 n 02 laser-assisted_in_situ_keratomileusis 0 LASIK 0 001 @ 00673863 n 0000 | a refractive surgery procedure that reshapes the cornea -00680658 04 n 01 vitrectomy 0 001 @ 00673863 n 0000 | a surgical procedure that removes the vitreous humor and replace it with saline solution -00680803 04 n 01 perineotomy 0 002 @ 00678010 n 0000 ~ 00680914 n 0000 | surgical incision into the perineum -00680914 04 n 01 episiotomy 0 001 @ 00680803 n 0000 | surgical incision of the perineum to enlarge the vagina and so facilitate delivery during childbirth -00681071 04 n 01 ileostomy 0 001 @ 00689550 n 0000 | surgical procedure that creates an opening from the ileum through the abdominal wall to function as an anus; performed in cases of cancer of the colon or ulcerative colitis -00681299 04 n 01 intestinal_bypass 0 001 @ 00671351 n 0000 | surgical operation that shortens the small intestine; used in treating obesity -00681441 04 n 01 jejunostomy 0 001 @ 00671351 n 0000 | surgical creation of an opening between the jejunum and the anterior abdominal wall; will allow artificial feeding -00681613 04 n 03 keratoplasty 0 corneal_graft 0 corneal_transplant 0 003 @ 00690501 n 0000 @ 00693679 n 0000 ~ 00681869 n 0000 | a surgical procedure in which part or all of a damaged or diseased cornea is replaced by healthy corneal tissue from a donor -00681869 04 n 01 epikeratophakia 0 001 @ 00681613 n 0000 | using a piece of donated corneal tissue to repair the eye of someone who has had a cataract removed; "epikeratophakia gave her a living contact lens" -00682080 04 n 02 lipectomy 0 selective_lipectomy 0 002 @ 00690501 n 0000 ~ 00682243 n 0000 | plastic surgery involving the breakdown and removal of fatty tissue -00682243 04 n 02 liposuction 0 suction_lipectomy 0 001 @ 00682080 n 0000 | lipectomy (especially for cosmetic purposes) in which excess fatty tissue is removed from under the skin by suction -00682436 04 n 01 mastopexy 0 001 @ 00690501 n 0000 | plastic surgery to lift or reshape the breasts -00682538 04 n 01 neuroplasty 0 001 @ 00690501 n 0000 | plastic surgery of the nerves -00682625 04 n 01 otoplasty 0 001 @ 00690501 n 0000 | reconstructive surgery of the auricle of the external ear -00682738 04 n 01 laminectomy 0 001 @ 00393369 n 0000 | surgical removal of the bony arches on one or more vertebrae -00682856 04 n 01 laparotomy 0 002 @ 00678010 n 0000 ~ 00683012 n 0000 | surgical incision into the abdominal wall; often done to examine abdominal organs -00683012 04 n 01 laparoscopy 0 001 @ 00682856 n 0000 | laparotomy performed with a laparoscope that makes a small incision to examine the abdominal cavity (especially the ovaries and Fallopian tubes) -00683214 04 n 01 laryngectomy 0 001 @ 00393369 n 0000 | surgical removal of part or all of the larynx (usually to treat cancer of the larynx) -00683358 04 n 01 lithotomy 0 002 @ 00393369 n 0000 ~ 00683470 n 0000 | surgical removal of a stone (calculus) -00683470 04 n 01 cholelithotomy 0 001 @ 00683358 n 0000 | removal of gallstone through an incision in the gallbladder -00683590 04 n 01 lobectomy 0 001 @ 00393369 n 0000 | surgical removal of a lobe from any organ of the body (as the lung or brain) -00683722 04 n 01 amygdalotomy 0 001 @ 00667384 n 0000 | psychosurgery in which amygdaloid fibers that mediate limbic system activity are severed (in cases of extreme uncontrollable violence) -00683915 04 n 02 callosotomy 0 callosectomy 0 001 @ 00667384 n 0000 | severing the corpus callosum so that communication between the cerebral hemispheres is interrupted (in cases of severe intractable epilepsy) -00684128 04 n 07 lobotomy 0 leukotomy 0 leucotomy 0 prefrontal_lobotomy 0 prefrontal_leukotomy 0 prefrontal_leucotomy 0 frontal_lobotomy 0 002 @ 00667384 n 0000 ~ 00684450 n 0000 | surgical interruption of nerve tracts to and from the frontal lobe of the brain; often results in marked cognitive and personality changes -00684450 04 n 01 transorbital_lobotomy 0 001 @ 00684128 n 0000 | a method of performing prefrontal lobotomy in which the surgical knife is inserted above the eyeball and moved to cut brain fibers -00684648 04 n 01 lumpectomy 0 001 @ 00393369 n 0000 | surgical removal of a tumor without removing much of the surrounding tissue or lymph nodes; performed in some cases of breast cancer -00684837 04 n 01 major_surgery 0 002 @ 00671351 n 0000 ! 00685349 n 0101 | any surgical procedure that involves anesthesia or respiratory assistance -00684988 04 n 01 microsurgery 0 002 @ 00671351 n 0000 ~ 00685196 n 0000 | surgery using operating microscopes and miniaturized precision instruments to perform intricate procedures on very small structures -00685196 04 n 01 robotic_telesurgery 0 001 @ 00684988 n 0000 | microsurgery in which the surgeon performs surgery by manipulating the hands of a robot -00685349 04 n 01 minor_surgery 0 002 @ 00671351 n 0000 ! 00684837 n 0101 | any surgical procedure that does not involve anesthesia or respiratory assistance -00685508 04 n 01 mastectomy 0 004 @ 00393369 n 0000 ~ 00685675 n 0000 ~ 00685837 n 0000 ~ 00686027 n 0000 | surgical removal of a breast to remove a malignant tumor -00685675 04 n 01 modified_radical_mastectomy 0 001 @ 00685508 n 0000 | removal of a breast and the pectoralis minor and some lymph nodes in the adjacent armpit -00685837 04 n 01 radical_mastectomy 0 001 @ 00685508 n 0000 | removal of a breast and the underlying muscles (pectoralis major and pectoralis minor) and lymph nodes in the adjacent armpit -00686027 04 n 01 simple_mastectomy 0 001 @ 00685508 n 0000 | removal of a breast leaving the underlying muscles and the lymph nodes intact -00686168 04 n 01 mastoidectomy 0 001 @ 00393369 n 0000 | surgical removal of some or all of the mastoid process -00686282 04 n 01 meniscectomy 0 001 @ 00393369 n 0000 | surgical removal of the meniscus of the knee -00686385 04 n 01 nephrectomy 0 001 @ 00393369 n 0000 | surgical removal of a kidney -00686471 04 n 01 neurectomy 0 001 @ 00393369 n 0000 | surgical removal of all or part of a nerve -00686570 04 n 02 oophorectomy 0 ovariectomy 0 001 @ 00393369 n 0000 | surgical removal of one of both ovaries -00686682 04 n 01 oophorosalpingectomy 0 001 @ 00393369 n 0000 | surgical removal of one or both ovaries and the corresponding Fallopian tubes -00686826 04 n 01 ophthalmectomy 0 001 @ 00393369 n 0000 | surgical removal of an eye -00686913 04 n 02 orchidectomy 0 orchiectomy 0 001 @ 00393369 n 0000 | surgical removal of one or both testicles -00687027 04 n 01 pancreatectomy 0 001 @ 00393369 n 0000 | surgical removal of part or all of the pancreas -00687135 04 n 01 pneumonectomy 0 001 @ 00393369 n 0000 | surgical removal of a lung (usually to treat lung cancer) -00687252 04 n 01 prostatectomy 0 001 @ 00393369 n 0000 | surgical removal of part or all of the prostate gland -00687365 04 n 01 salpingectomy 0 001 @ 00393369 n 0000 | surgical removal of one or both Fallopian tubes -00687472 04 n 01 septectomy 0 001 @ 00393369 n 0000 | surgical removal of all or part of a septum (especially the nasal septum or atrial septum) -00687619 04 n 01 sigmoidectomy 0 001 @ 00393369 n 0000 | surgical removal of part or all of the sigmoid colon (usually to remove a malignant tumor) -00687769 04 n 01 splenectomy 0 001 @ 00393369 n 0000 | surgical removal of the spleen -00687857 04 n 01 stapedectomy 0 001 @ 00393369 n 0000 | surgical removal of the stapes of the middle ear -00687964 04 n 01 sympathectomy 0 001 @ 00393369 n 0000 | surgical interruption of a nerve pathway in the sympathetic nervous system -00688098 04 n 01 thrombectomy 0 001 @ 00393369 n 0000 | surgical removal of a blood clot (thrombus) from a blood vessel -00688220 04 n 01 thyroidectomy 0 001 @ 00393369 n 0000 | surgical removal of the thyroid gland -00688317 04 n 01 tonsillectomy 0 001 @ 00393369 n 0000 | surgical removal of the palatine tonsils; commonly performed along with adenoidectomy -00688462 04 n 01 myotomy 0 001 @ 00671351 n 0000 | surgical incision or division of a muscle -00688557 04 n 01 myringectomy 0 001 @ 00671351 n 0000 | surgical removal of the eardrum -00688647 04 n 01 myringoplasty 0 001 @ 00671351 n 0000 | surgical repair of a perforated eardrum with a tissue graft -00688766 04 n 01 myringotomy 0 001 @ 00671351 n 0000 | surgical incision into the eardrum (to relieve pressure or release pus from the middle ear) -00688915 04 n 01 neurosurgery 0 001 @ 00671351 n 0000 | any surgery that involves the nervous system (brain or spinal cord or peripheral nerves) -00689062 04 n 02 nose_job 0 rhinoplasty 0 001 @ 00674158 n 0000 | cosmetic surgery to improve the appearance of your nose -00689186 04 n 01 orchiopexy 0 001 @ 00671351 n 0000 | operation to bring an undescended testicle into the scrotum -00689302 04 n 01 orchotomy 0 001 @ 00678010 n 0000 | surgical incision into the testis to obtain material for analysis (as in cases of abnormally low sperm count) -00689467 04 n 01 osteotomy 0 001 @ 00671351 n 0000 | surgical sectioning of bone -00689550 04 n 01 ostomy 0 003 @ 00671351 n 0000 ~ 00668552 n 0000 ~ 00681071 n 0000 | surgical procedure that creates an artificial opening for the elimination of bodily wastes -00689729 04 n 04 palatopharyngoplasty 0 PPP 0 uvulopalatopharyngoplasty 0 UPPP 0 001 @ 00671351 n 0000 | surgical resection of unnecessary palatal and oropharyngeal tissue to open the airway; intended to cure extreme cases of snoring (with or without sleep apnea) -00689995 04 n 01 phalloplasty 0 001 @ 00690501 n 0000 | reconstructive surgery on the penis to repair congenital abnormality or injury -00690132 04 n 01 phlebectomy 0 001 @ 00671351 n 0000 | surgical removal or all or part of a vein; sometimes done in cases of severe varicose veins -00690281 04 n 01 photocoagulation 0 001 @ 00671351 n 0000 | surgical procedure that uses an intense laser beam to destroy diseased retinal tissue or to make a scar that will hold the retina in cases of detached retina -00690501 04 n 03 plastic_surgery 0 reconstructive_surgery 0 anaplasty 0 011 @ 00671351 n 0000 ~ 00034777 n 0000 ~ 00667096 n 0000 ~ 00674158 n 0000 ~ 00681613 n 0000 ~ 00682080 n 0000 ~ 00682436 n 0000 ~ 00682538 n 0000 ~ 00682625 n 0000 ~ 00689995 n 0000 ~ 00690933 n 0000 | surgery concerned with therapeutic or cosmetic reformation of tissue -00690848 04 n 01 polypectomy 0 001 @ 00671351 n 0000 | surgical removal of a polyp -00690933 04 n 02 proctoplasty 0 rectoplasty 0 001 @ 00690501 n 0000 | reconstructive surgery of the anus or rectum -00691050 04 n 01 resection 0 003 @ 00671351 n 0000 + 01255057 v 0101 ~ 00694088 n 0000 | surgical removal of part of a structure or organ -00691190 04 n 01 rhinotomy 0 001 @ 00671351 n 0000 | surgical procedure in which an incision is made in the nose to drain accumulated pus -00691330 04 n 01 rhizotomy 0 001 @ 00671351 n 0000 | surgical procedure in which spinal nerve roots are cut; done (anterior roots) to relieve intractable pain or (posterior roots) to stop severe muscle spasms -00691541 04 n 01 sclerotomy 0 001 @ 00678010 n 0000 | surgical incision of the sclerotic coat of the eye -00691648 04 n 02 sex-change_operation 0 transsexual_surgery 0 001 @ 00671351 n 0000 | surgical procedures and hormonal treatments designed to alter a person's sexual characteristics so that the resemble those of the opposite sex -00691879 04 n 02 Shirodkar's_operation 0 purse-string_operation 0 001 @ 00671351 n 0000 | a surgical procedure in which a suture is used to close the cervix in a pregnant woman; is performed when the cervix has failed to retain previous pregnancies -00692130 04 n 02 sterilization 0 sterilisation 0 005 @ 00671351 n 0000 + 00061595 v 0202 + 00061595 v 0101 ~ 00692506 n 0000 ~ 00853487 n 0000 | the act of making an organism barren or infertile (unable to reproduce) -00692349 04 n 02 castration 0 emasculation 0 003 @ 00692506 n 0000 + 00060833 v 0201 + 00060833 v 0102 | neutering a male animal by removing the testicles -00692506 04 n 03 neutering 0 fixing 1 altering 0 005 @ 00692130 n 0000 + 00061595 v 0207 + 00060477 v 0102 ~ 00692349 n 0000 ~ 00692726 n 0000 | the sterilization of an animal; "they took him to the vet for neutering" -00692726 04 n 01 spaying 0 002 @ 00692506 n 0000 + 00060477 v 0103 | neutering a female by removing the ovaries -00692840 04 n 01 strabotomy 0 001 @ 00671351 n 0000 | the surgical operation of cutting a muscle or tendon of the eye in order to correct strabismus -00692991 04 n 01 taxis 1 001 @ 00671351 n 0000 | the surgical procedure of manually restoring a displaced body part -00693109 04 n 01 Michelson-Morley_experiment 0 001 @ 00639556 n 0000 | a celebrated experiment conducted by Albert Michelson and Edward Morley; their failure to detect any influence of the earth's motion on the velocity of light was the starting point for Einstein's theory of relativity -00693399 04 n 02 tracheostomy 0 tracheotomy 0 002 @ 00671351 n 0000 %p 05246215 n 0000 | a surgical operation that creates an opening into the trachea with a tube inserted to provide a passage for air; performed when the pharynx is obstructed by edema or cancer or other causes -00693679 04 n 03 transplant 2 transplantation 2 organ_transplant 0 005 @ 00671351 n 0000 + 01530431 v 0201 + 01530431 v 0101 ~ 00681613 n 0000 ~ 01268271 n 0000 | an operation moving an organ from one organism (the donor) to another (the recipient); "he had a kidney transplant"; "the long-term results of cardiac transplantation are now excellent"; "a child had a multiple organ transplant two months ago" -00694088 04 n 02 transurethral_resection_of_the_prostate 0 TURP 0 001 @ 00691050 n 0000 | removal of significant amounts of prostate tissue (as in cases of benign prostatic hyperplasia) -00694276 04 n 01 trephination 0 002 @ 00671351 n 0000 + 00062067 v 0101 | an operation that removes a circular section of bone from the skull -00694420 04 n 01 tympanoplasty 0 001 @ 00671351 n 0000 | surgical correction or repair of defects or injuries in the eardrum or the bones of the middle ear -00694578 04 n 01 uranoplasty 0 001 @ 00671351 n 0000 | surgical correction of a defect of the palate -00694681 04 n 01 justice 0 003 @ 00874067 n 0000 ~ 00694866 n 0000 -c 02513742 v 0000 | judgment involved in the determination of rights and the assignment of rewards and punishments -00694866 04 n 02 administration 2 judicature 0 001 @ 00694681 n 0000 | the act of meting out justice according to the law -00694990 04 n 02 administration 1 giving_medication 0 004 @ 00664110 n 0000 + 00081072 v 0101 ~ 00695160 n 0000 ~ 00695300 n 0000 | the act of administering medication -00695160 04 n 01 drip_feed 0 001 @ 00694990 n 0000 | the administration of a solution (blood or saline or plasma etc.) one drop at a time -00695300 04 n 02 sedation 0 drugging 0 003 @ 00694990 n 0000 + 00084738 v 0201 + 00022316 v 0101 | the administration of a sedative agent or drug -00695448 04 n 01 irrigation 1 007 @ 00657604 n 0000 ;c 06043075 n 0000 + 00079951 v 0101 ~ 00656643 n 0000 ~ 00695717 n 0000 ~ 00695944 n 0000 ~ 00696487 n 0000 | (medicine) cleaning a wound or body organ by flushing or washing out with water or a medicated solution -00695717 04 n 01 douche 0 002 @ 00695448 n 0000 + 00038199 v 0101 | irrigation with a jet of water or medicated solution into or around a body part (especially the vagina) to treat infections or cleanse from odorous contents -00695944 04 n 02 enema 0 clyster 0 003 @ 00695448 n 0000 ~ 00696147 n 0000 ~ 00696300 n 0000 | an injection of a liquid through the anus to stimulate evacuation; sometimes used for diagnostic purposes -00696147 04 n 02 colonic_irrigation 0 colonic 0 003 @ 00695944 n 0000 + 02700317 a 0201 ~ 00253773 n 0000 | a water enema given to flush out the colon -00696300 04 n 01 barium_enema 0 001 @ 00695944 n 0000 | enema in which a contrast medium (usually barium sulfate) is injected into the rectum and X-rays are taken to search for lesions -00696487 04 n 01 lavage 0 003 @ 00695448 n 0000 + 00036362 v 0102 ~ 00696650 n 0000 | washing out a hollow organ (especially the stomach) by flushing with water -00696650 04 n 01 gastric_lavage 0 001 @ 00696487 n 0000 | washing out the stomach with sterile water or a saltwater solution; removes blood or poisons; "when the doctor ordered a gastric lavage the hospital pumped out my stomach" -00696882 04 n 03 dressing 1 bandaging 0 binding 0 003 @ 00657604 n 0000 + 01303547 v 0301 + 00082714 v 0101 | the act of applying a bandage -00697024 04 n 01 holistic_medicine 0 001 @ 00657604 n 0000 | medical care of the whole person considered as subject to personal and social as well as organic factors; "holistic medicine treats the mind as well as the body" -00697249 04 n 01 hospice 0 001 @ 00657604 n 0000 | a program of medical and emotional care for the terminally ill -00697365 04 n 02 injection 1 shot 3 006 @ 00657604 n 0000 + 00086320 v 0101 ~ 00322962 n 0000 ~ 00323056 n 0000 ~ 00323152 n 0000 ~ 00323436 n 0000 | the act of putting a liquid into the body by means of a syringe; "the nurse gave him a flu shot" -00697614 04 n 01 cryocautery 0 001 @ 00668112 n 0000 | application of a substance that destroys tissue by freezing it -00697734 04 n 01 electrocautery 0 001 @ 00697887 n 0000 | application of a needle heated by an electric current to destroy tissue (as to remove warts) -00697887 04 n 01 thermocautery 0 002 @ 00668112 n 0000 ~ 00697734 n 0000 | cautery (destruction of tissue) by heat -00698004 04 n 01 bloodletting 0 005 @ 00657604 n 0000 ;c 15259284 n 0000 ;c 06043075 n 0000 ~ 00698609 n 0000 ~ 00698794 n 0000 | formerly used as a treatment to reduce excess blood (one of the four humors of medieval medicine) -00698234 04 n 01 nephrotomy 0 001 @ 00678010 n 0000 | incision into a kidney (usually to remove a kidney stone) -00698348 04 n 01 thoracotomy 0 001 @ 00678010 n 0000 | surgical incision into the chest walls opening up the pleural cavity -00698474 04 n 02 valvotomy 0 valvulotomy 0 001 @ 00678010 n 0000 | incision into a stenosed cardiac valve to relieve the obstruction -00698609 04 n 02 venesection 0 phlebotomy 0 004 @ 00678010 n 0000 @ 00698004 n 0000 + 00086077 v 0203 + 00084107 v 0101 | surgical incision into a vein; used to treat hemochromatosis -00698794 04 n 01 cupping 0 002 @ 00698004 n 0000 + 00087290 v 0101 | a treatment in which evacuated cups are applied to the skin to draw blood through the surface -00698959 04 n 01 defibrillation 0 002 @ 00657604 n 0000 + 02553002 v 0101 | treatment by stopping fibrillation of heart muscles (usually by electric shock delivered by a defibrillator) -00699146 04 n 01 detoxification 0 002 @ 00657604 n 0000 + 00505349 v 0101 | treatment for poisoning by neutralizing the toxic properties (normally a function of the liver) -00699320 04 n 01 detoxification 1 002 @ 00658082 n 0000 + 00079788 v 0102 | a treatment for addiction to drugs or alcohol intended to remove the physiological effects of the addictive substances -00699517 04 n 02 fusion 1 spinal_fusion 0 001 @ 00662527 n 0000 | correction of an unstable part of the spine by joining two or more vertebrae; usually done surgically but sometimes done by traction or immobilization -00699736 04 n 02 faith_healing 0 faith_cure 0 002 @ 00654885 n 0000 ~ 00699872 n 0000 | care provided through prayer and faith in God -00699872 04 n 01 laying_on_of_hands 1 001 @ 00699736 n 0000 | the application of a faith healer's hands to the patient's body -00700000 04 n 03 physical_therapy 0 physiotherapy 0 physiatrics 0 006 @ 00661091 n 0000 + 02889619 a 0201 + 10427764 n 0202 + 10427764 n 0101 %p 00661847 n 0000 ~ 00700260 n 0000 | therapy that uses physical agents: exercise and massage and other modalities -00700260 04 n 01 rehabilitation 2 002 @ 00700000 n 0000 + 02552829 v 0101 | the treatment of physical disabilities by massage and electrotherapy and exercises -00700421 04 n 03 phytotherapy 0 herbal_therapy 0 botanical_medicine 0 002 @ 00661091 n 0000 ;c 00017222 n 0000 | the use of plants or plant extracts for medicinal purposes (especially plants that are not part of the normal diet) -00700652 04 n 01 psychotherapy 0 012 @ 00661091 n 0000 + 02914038 a 0101 + 10489944 n 0101 ~ 00700979 n 0000 ~ 00703236 n 0000 ~ 00703422 n 0000 ~ 00703688 n 0000 ~ 00704064 n 0000 ~ 00704159 n 0000 ~ 00704305 n 0000 ~ 00705433 n 0000 -c 00714718 v 0000 | the treatment of mental or emotional problems by psychological means -00700979 04 n 02 behavior_therapy 0 behavior_modification 0 007 @ 00700652 n 0000 ~ 00701325 n 0000 ~ 00701491 n 0000 ~ 00701755 n 0000 ~ 00702418 n 0000 ~ 00702659 n 0000 ~ 00702992 n 0000 | psychotherapy that seeks to extinguish or inhibit abnormal or maladaptive behavior by reinforcing desired behavior and extinguishing undesired behavior -00701325 04 n 01 assertiveness_training 0 001 @ 00700979 n 0000 | a method of psychotherapy that reinforces you for stating negative and positive feelings directly -00701491 04 n 01 aversion_therapy 0 001 @ 00700979 n 0000 | any technique of behavior modification that uses unpleasant stimuli in a controlled fashion to alter behavior in a therapeutic way; primarily used for alcoholism or drug abuse (but with little success) -00701755 04 n 06 desensitization_technique 0 desensitisation_technique 0 desensitization_procedure 0 desensitisation_procedure 0 systematic_desensitization 0 systematic_desensitisation 0 002 @ 00700979 n 0000 ~ 00702202 n 0000 | a technique used in behavior therapy to treat phobias and other behavior problems involving anxiety; client is exposed to the threatening situation under relaxed conditions until the anxiety reaction is extinguished -00702202 04 n 01 exposure_therapy 0 001 @ 00701755 n 0000 | a form of behavior therapy in which a survivor confronts feelings or phobias or anxieties about a traumatic event and relives it in the therapy situation -00702418 04 n 02 implosion_therapy 0 flooding 0 002 @ 00700979 n 0000 + 01524523 v 0202 | a technique used in behavior therapy; client is flooded with experiences of a particular kind until becoming either averse to them or numbed to them -00702659 04 n 02 reciprocal_inhibition 0 reciprocal-inhibition_therapy 0 001 @ 00700979 n 0000 | a method of behavior therapy based on the inhibition of one response by the occurrence of another response that is mutually incompatible with it; a relaxation response might be conditioned to a stimulus that previously evoked anxiety -00702992 04 n 01 token_economy 0 001 @ 00700979 n 0000 | a form of behavior therapy that has been used in some mental institutions; patients are rewarded with tokens for appropriate behavior and the tokens may be cashed in for valued rewards -00703236 04 n 01 client-centered_therapy 0 001 @ 00700652 n 0000 | a method of psychotherapy developed by Carl Rogers in which the client determines the focus and pace of each session -00703422 04 n 01 crisis_intervention 0 001 @ 00700652 n 0000 | psychotherapy that focuses on acute critical situations (depressive episodes or attempted suicides or drug overdoses) with the aim of restoring the person to the level of functioning before the crisis -00703688 04 n 02 group_therapy 0 group_psychotherapy 0 002 @ 00700652 n 0000 ~ 00703926 n 0000 | psychotherapy in which a small group of individuals meet with a therapist; interactions among the members are considered to be therapeutic -00703926 04 n 01 family_therapy 0 001 @ 00703688 n 0000 | any of several therapeutic approaches in which a family is treated as a whole -00704064 04 n 01 hypnotherapy 0 001 @ 00700652 n 0000 | the use of hypnosis in psychotherapy -00704159 04 n 01 play_therapy 0 001 @ 00700652 n 0000 | form of psychotherapy for children that uses play situations for diagnosis or treatment -00704305 04 n 03 psychoanalysis 0 analysis 1 depth_psychology 0 040 @ 00700652 n 0000 + 00643197 v 0201 + 02913428 a 0102 + 02913428 a 0101 -c 00109966 a 0000 -c 00110252 a 0000 -c 02684198 a 0000 -c 00253395 n 0000 ~ 00705319 n 0000 -c 04619083 n 0000 -c 04619420 n 0000 -c 04619946 n 0000 -c 05613170 n 0000 -c 05613625 n 0000 -c 05613794 n 0000 -c 05754519 n 0000 -c 05871792 n 0000 -c 05872098 n 0000 -c 05924165 n 0000 -c 05925862 n 0000 -c 05938014 n 0000 -c 06246700 n 0000 -c 06247181 n 0000 -c 06599655 n 0000 -c 07482521 n 0000 -c 07489548 n 0000 -c 07550204 n 0000 -c 09180967 n 0000 -c 09185440 n 0000 -c 09185612 n 0000 -c 09185865 n 0000 -c 13543564 n 0000 -c 13930725 n 0000 -c 14374764 n 0000 -c 15145782 n 0000 -c 15146004 n 0000 -c 15146260 n 0000 -c 15146545 n 0000 -c 15146828 n 0000 -c 01815471 v 0000 | a set of techniques for exploring underlying motives and a method of treating various mental disorders; based on the theories of Sigmund Freud; "his physician recommended psychoanalysis" -00705319 04 n 01 hypnoanalysis 0 001 @ 00704305 n 0000 | the use of hypnosis in conjunction with psychoanalysis -00705433 04 n 01 self-analysis 0 001 @ 00700652 n 0000 | the application of psychotherapeutic principles to the analysis of your own personality -00705580 04 n 05 radiotherapy 0 radiation_therapy 0 radiation 1 actinotherapy 0 irradiation 0 006 @ 00661091 n 0000 ;c 06043075 n 0000 + 10504206 n 0102 ~ 00705886 n 0000 ~ 00706019 n 0000 ~ 00706133 n 0000 | (medicine) the treatment of disease (especially cancer) by exposure to a radioactive substance -00705886 04 n 01 phototherapy 0 001 @ 00705580 n 0000 | the use of strong light to treat acne or hyperbilirubinemia of the newborn -00706019 04 n 02 radium_therapy 0 Curietherapy 0 001 @ 00705580 n 0000 | the use of radium in radiation therapy -00706133 04 n 01 X-ray_therapy 0 001 @ 00705580 n 0000 | the therapeutic use of X rays -00706222 04 n 01 chrysotherapy 0 001 @ 00662340 n 0000 | the use of chemicals containing gold for treating diseases (such as rheumatoid arthritis) -00706371 04 n 02 shock_therapy 0 shock_treatment 0 004 @ 00661091 n 0000 ~ 00706605 n 0000 ~ 00706847 n 0000 ~ 00707028 n 0000 | treatment of certain psychotic states by the administration of shocks that are followed by convulsions -00706605 04 n 04 electroconvulsive_therapy 0 electroshock 0 electroshock_therapy 0 ECT 0 002 @ 00706371 n 0000 @ 00662681 n 0000 | the administration of a strong electric current that passes through the brain to induce convulsions and coma -00706847 04 n 03 insulin_shock 0 insulin_shock_therapy 0 insulin_shock_treatment 0 001 @ 00706371 n 0000 | the administration of sufficient insulin to induce convulsions and coma -00707028 04 n 03 metrazol_shock 0 metrazol_shock_therapy 0 metrazol_shock_treatment 0 001 @ 00706371 n 0000 | the administration of sufficient Metrazol to induce convulsions and coma -00707213 04 n 01 speech_therapy 0 002 @ 00661091 n 0000 + 10634464 n 0101 | any therapy intended to correct a disorder of speech -00707344 04 n 01 refrigeration 0 001 @ 00661091 n 0000 | deliberately lowering the body's temperature for therapeutic purposes; "refrigeration by immersing the patient's body in a cold bath" -00707537 04 n 01 thermotherapy 0 001 @ 00661091 n 0000 | the use of heat to treat a disease or disorder; heating pads or hot compresses or hot-water bottles are used to promote circulation in peripheral vascular disease or to relax tense muscles -00707785 04 n 01 thrombolytic_therapy 0 001 @ 00661091 n 0000 | therapy consisting of the administration of a pharmacological agent to cause thrombolysis of an abnormal blood clot -00707967 04 n 01 chiropractic 0 001 @ 00658082 n 0000 | a method of treatment that manipulates body structures (especially the spine) to relieve low back pain or even headache or high blood pressure -00708168 04 n 01 fomentation 1 002 @ 00658082 n 0000 + 00035448 v 0101 | application of warm wet coverings to a part of the body to relieve pain and inflammation -00708332 04 n 01 naturopathy 0 001 @ 00658082 n 0000 | a method of treating disease using food and exercise and heat to assist the natural healing process -00708489 04 n 01 naprapathy 0 001 @ 00658082 n 0000 | a drugless method of treatment based on the belief that disease symptoms arise from problems with ligaments and connective tissues -00708676 04 n 01 orthodontic_treatment 0 001 @ 00658082 n 0000 | dental treatment that corrects irregularities of the teeth or of the relation of the teeth to surrounding anatomy; treatment is usually by braces or mechanical aids; "orthodontic treatment of facial abnormalities" -00708957 04 n 01 orthoptics 0 003 @ 00658082 n 0000 + 03095257 a 0101 + 10385354 n 0101 | treatment of defects of binocular vision (such as strabismus and amblyopia) by nonsurgical measures (especially by exercises to strengthen the eye muscles) -00709205 04 n 01 osteopathy 0 002 @ 00658082 n 0000 + 10385566 n 0102 | therapy based on the assumption that restoring health is best accomplished by manipulating the skeleton and muscles -00709395 04 n 01 osteoclasis 0 001 @ 00658082 n 0000 | treatment of a skeletal deformity by intentionally fracturing a bone -00709521 04 n 01 disinfection 0 003 @ 00657604 n 0000 + 00089324 v 0101 ~ 00709659 n 0000 | treatment to destroy harmful microorganisms -00709659 04 n 01 chlorination 0 003 @ 00709521 n 0000 + 00186567 v 0101 + 00089602 v 0101 | disinfection of water by the addition of small amounts of chlorine or a chlorine compound -00709843 04 n 02 digitalization 0 digitalisation 0 002 @ 00657604 n 0000 + 00081509 v 0101 | the administration of digitalis for the treatment of certain heart disorders -00710015 04 n 01 anticoagulation 0 001 @ 00657604 n 0000 | the administration of an anticoagulant drug to retard coagulation of the blood -00710155 04 n 02 acupuncture 0 stylostixis 0 002 @ 00658082 n 0000 ;r 08723006 n 0000 | treatment of pain or disease by inserting the tips of needles at specific points on the skin -00710338 04 n 03 acupressure 0 G-Jo 0 shiatsu 0 003 @ 00658082 n 0000 ;r 08723006 n 0000 ;r 08921850 n 0000 | treatment of symptoms by applying pressure with the fingers to specific pressure points on the body -00710550 04 n 03 autogenic_therapy 0 autogenic_training 0 autogenics 0 001 @ 00658082 n 0000 | training patients in self-induced relaxation -00710692 04 n 01 allopathy 0 002 @ 00657604 n 0000 ! 00710889 n 0101 | the usual method of treating disease with remedies that produce effects differing from those produced by the disease itself -00710889 04 n 02 homeopathy 0 homoeopathy 0 002 @ 00657604 n 0000 ! 00710692 n 0101 | a method of treating disease with small amounts of remedies that, in large amounts in healthy people, produce symptoms similar to those being treated -00711127 04 n 02 hydropathy 0 hydrotherapy 0 001 @ 00658082 n 0000 | the internal and external use of water in the treatment of disease -00711265 04 n 01 intensive_care 0 001 @ 00657604 n 0000 | close monitoring and constant medical care of patients with life-threatening conditions -00711413 04 n 01 rest-cure 0 001 @ 00658082 n 0000 | rest as a medical treatment for stress or anxiety etc. -00711523 04 n 03 stalk 2 stalking 2 still_hunt 0 004 @ 00622584 n 0000 + 02001252 v 0201 + 02001252 v 0101 ~ 00711727 n 0000 | a hunt for game carried on by following it stealthily or waiting in ambush -00711727 04 n 01 deerstalking 0 001 @ 00711523 n 0000 | stalking deer -00711799 04 n 01 birdnesting 0 001 @ 00622584 n 0000 | hunting for birds' nests to get the eggs -00711897 04 n 01 predation 0 002 @ 00622584 n 0000 + 01203500 v 0103 | the act of preying by a predator who kills and eats the prey -00712031 04 n 03 friction 0 detrition 0 rubbing 0 004 @ 00621627 n 0000 + 01249724 v 0301 + 02732059 a 0101 ~ 00361795 n 0000 | effort expended in moving one object over another with pressure -00712225 04 n 03 application 3 coating 0 covering 1 020 @ 00623162 n 0000 + 01264283 v 0201 + 01363648 v 0102 ~ 00712833 n 0000 ~ 00712979 n 0000 ~ 00713135 n 0000 ~ 00713250 n 0000 ~ 00716945 n 0000 ~ 00717081 n 0000 ~ 00717208 n 0000 ~ 00717468 n 0000 ~ 00718195 n 0000 ~ 00718325 n 0000 ~ 00718573 n 0000 ~ 00718815 n 0000 ~ 00719016 n 0000 ~ 00719148 n 0000 ~ 00719274 n 0000 ~ 00719388 n 0000 ~ 00827379 n 0000 | the work of applying something; "the doctor prescribed a topical application of iodine"; "a complete bleach requires several applications"; "the surface was ready for a coating of paint"; -00712833 04 n 02 anointing 0 anointment 0 003 @ 00712225 n 0000 + 00085626 v 0201 ~ 01041674 n 0000 | the act of applying oil or an oily liquid -00712979 04 n 01 fumigation 0 002 @ 00712225 n 0000 + 02127100 v 0101 | the application of a gas or smoke to something for the purpose of disinfecting it -00713135 04 n 01 foliation 1 002 @ 00712225 n 0000 + 01266749 v 0101 | the work of coating glass with metal foil -00713250 04 n 02 galvanization 0 galvanisation 0 003 @ 00712225 n 0000 + 01266895 v 0202 + 01266895 v 0101 | either the work of covering with metal by the use of a galvanic current or the coating of iron with zinc to protect it from rusting -00713493 04 n 01 bodywork 0 001 @ 00623162 n 0000 | the work of making or repairing vehicle bodies -00713594 04 n 01 handling 0 004 @ 00623162 n 0000 ~ 00713784 n 0000 ~ 00713952 n 0000 ~ 00714173 n 0000 | manual (or mechanical) carrying or moving or delivering or working with something -00713784 04 n 01 materials_handling 0 001 @ 00713594 n 0000 | act of loading and unloading and moving goods within e.g. a factory especially using mechanical devices -00713952 04 n 01 loading 0 004 @ 00713594 n 0000 + 01612084 v 0101 + 01489989 v 0101 ! 00714173 n 0101 | the labor of putting a load of something on or in a vehicle or ship or container etc.; "the loading took 2 hours" -00714173 04 n 01 unloading 0 003 @ 00713594 n 0000 + 01488123 v 0101 ! 00713952 n 0101 | the labor of taking a load of something off of or out of a vehicle or ship or container etc. -00714357 04 n 01 picking 0 002 @ 00623162 n 0000 + 01382083 v 0101 | the act of picking (crops or fruit or hops etc.) -00714477 04 n 02 pickings 0 taking 0 003 @ 00037396 n 0000 + 01214265 v 0201 + 02321648 v 0101 | the act of someone who picks up or takes something; "the pickings were easy"; "clothing could be had for the taking" -00714693 04 n 01 planking 0 002 @ 00623162 n 0000 + 01336159 v 0101 | the work of covering an area with planks -00714806 04 n 01 wiring 1 002 @ 00623162 n 0000 + 00505802 v 0102 | the work of installing the wires for an electrical system or device -00714944 04 n 01 handicraft 0 035 @ 00606370 n 0000 @ 00935005 n 0000 ~ 00607374 n 0000 ~ 00715674 n 0000 ~ 00909193 n 0000 ~ 00909281 n 0000 ~ 00909471 n 0000 ~ 00909565 n 0000 ~ 00909672 n 0000 ~ 00910070 n 0000 -c 01671039 v 0000 -c 01671333 v 0000 -c 01671463 v 0000 -c 01671609 v 0000 -c 01671755 v 0000 -c 01671885 v 0000 -c 01672490 v 0000 -c 01672753 v 0000 -c 01673007 v 0000 -c 01673137 v 0000 -c 01673305 v 0000 -c 01673891 v 0000 -c 01674243 v 0000 -c 01674375 v 0000 -c 01674544 v 0000 -c 01674717 v 0000 -c 01681492 v 0000 -c 01681723 v 0000 -c 01682039 v 0000 -c 01682234 v 0000 -c 01682446 v 0000 -c 01682761 v 0000 -c 01682946 v 0000 -c 01751021 v 0000 -c 01752025 v 0000 | a craft that requires skillful hands -00715674 04 n 02 sewing 0 stitching 0 005 @ 00714944 n 0000 + 01329239 v 0204 + 01329239 v 0101 ~ 00715949 n 0000 ~ 00716055 n 0000 | joining or attaching by stitches -00715843 04 n 01 baking 1 002 @ 00908909 n 0000 + 01663749 v 0101 | making bread or cake or pastry etc. -00715949 04 n 01 blind_stitching 0 001 @ 00715674 n 0000 | stitching that is not easily seen or noticed -00716055 04 n 01 suturing 0 003 @ 00715674 n 0000 #p 00671351 n 0000 + 01296154 v 0101 | surgical joining of two surfaces -00716179 04 n 01 vasectomy 0 003 @ 00393369 n 0000 @ 00853487 n 0000 + 00061401 v 0101 | surgical procedure that removes all or part of the vas deferens (usually as a means of sterilization); is sometimes reversible -00716397 04 n 02 vasotomy 0 vasosection 0 001 @ 00678010 n 0000 | surgical incision into or division of the vas deferens -00716520 04 n 01 vasovasostomy 0 001 @ 00671351 n 0000 | a surgical procedure that attempts to restore the function of the vas deferens after a vasectomy -00716676 04 n 01 vulvectomy 0 001 @ 00393369 n 0000 | surgical removal of part or all of the vulva -00716777 04 n 01 vivisection 0 003 @ 00671351 n 0000 + 10758207 n 0101 + 01550403 v 0101 | the act of operating on living animals (especially in scientific research) -00716945 04 n 01 lubrication 0 003 @ 00712225 n 0000 + 01484982 v 0101 + 00219012 v 0101 | an application of a lubricant to something -00717081 04 n 02 paving 0 pavage 0 002 @ 00712225 n 0000 + 01267098 v 0101 | the act of applying paving materials to an area -00717208 04 n 01 painting 2 006 @ 00712225 n 0000 + 01363482 v 0101 + 01362736 v 0101 ~ 00717640 n 0000 ~ 00717748 n 0000 ~ 00718066 n 0000 | the act of applying paint to a surface; "you can finish the job of painting faster with a roller than with a brush" -00717468 04 n 01 spraying 2 003 @ 00712225 n 0000 + 01373551 v 0101 ~ 00717640 n 0000 | the application of a liquid in the form of small particles ejected from a sprayer -00717640 04 n 01 spray_painting 0 002 @ 00717208 n 0000 @ 00717468 n 0000 | applying paint with a sprayer -00717748 04 n 05 spatter 0 spattering 0 splash 0 splashing 0 splattering 0 010 @ 00717208 n 0000 + 01374020 v 0502 + 01374767 v 0402 + 01374020 v 0404 + 01534609 v 0301 + 01374020 v 0304 + 01374767 v 0302 + 01374020 v 0201 + 01538629 v 0101 + 01374020 v 0101 | the act of splashing a (liquid) substance on a surface -00718066 04 n 01 finger-painting 0 002 @ 00717208 n 0000 + 01681048 v 0101 | painting by using the fingers to spread the paint -00718195 04 n 02 tinning 0 tin-plating 0 002 @ 00712225 n 0000 + 01395382 v 0101 | the application of a protective layer of tin -00718325 04 n 01 tinning 1 002 @ 00712225 n 0000 + 00213034 v 0101 | the application of a thin layer of soft solder to the ends of wires before soldering them; "careful tinning of the ends of wires results in a better joint when you solder them" -00718573 04 n 02 papering 0 paperhanging 0 002 @ 00712225 n 0000 + 01268112 v 0102 | the application of wallpaper -00718689 04 n 02 pargeting 0 pargetting 0 003 @ 00718815 n 0000 + 01361561 v 0201 + 01361561 v 0101 | ornamental plastering -00718815 04 n 02 plastering 0 daubing 0 007 @ 00712225 n 0000 + 01360899 v 0202 + 01362568 v 0101 + 01362430 v 0101 + 01360899 v 0101 + 00082929 v 0102 ~ 00718689 n 0000 | the application of plaster -00719016 04 n 01 plating 0 002 @ 00712225 n 0000 + 01395049 v 0101 | the application of a thin coat of metal (as by electrolysis) -00719148 04 n 01 scumble 0 001 @ 00712225 n 0000 | the application of very thin coat of color over the surface of a picture -00719274 04 n 01 tiling 0 002 @ 00712225 n 0000 + 01338663 v 0101 | the application of tiles to cover a surface -00719388 04 n 01 waxing 0 002 @ 00712225 n 0000 + 01268726 v 0101 | the application of wax to a surface -00719494 04 n 01 duty 2 005 @ 00575741 n 0000 + 01613047 a 0102 ~ 00719705 n 0000 ~ 00720565 n 0000 ~ 00730247 n 0000 | work that you are obliged to perform for moral or legal reasons; "the duties of the job" -00719705 04 n 03 job 1 task 0 chore 0 007 @ 00719494 n 0000 + 02392600 v 0201 + 02420789 v 0101 + 02461063 v 0103 ~ 00720166 n 0000 ~ 00720431 n 0000 ~ 00732576 n 0000 | a specific piece of work required to be done as a duty or for a specific fee; "estimates of the city's loss on that job ranged as high as a million dollars"; "the job of repairing the engine took several hours"; "the endless task of classifying the samples"; "the farmer's morning chores" -00720166 04 n 02 ball-buster 0 ball-breaker 0 001 @ 00719705 n 0000 | a job or situation that is demanding and arduous and punishing; "Vietnam was a ball-breaker" -00720331 04 n 01 paper_route 0 001 @ 00584367 n 0000 | the job of delivering newspapers regularly -00720431 04 n 01 stint 0 001 @ 00719705 n 0000 | an individual's prescribed share of work; "her stint as a lifeguard exhausted her" -00720565 04 n 04 function 0 office 1 part 1 role 0 009 @ 00719494 n 0000 + 02382087 v 0201 + 01096497 v 0201 + 01096497 v 0102 ~ 00720951 n 0000 ~ 00721141 n 0000 ~ 00721282 n 0000 ~ 00721431 n 0000 ~ 00721929 n 0000 | the actions and activities assigned to or required or expected of a person or group; "the function of a teacher"; "the government must do its part"; "play its role" -00720951 04 n 01 capacity 1 001 @ 00720565 n 0000 | a specified function; "he was employed in the capacity of director"; "he should be retained in his present capacity at a higher salary" -00721141 04 n 01 hat 0 001 @ 00720565 n 0000 | an informal term for a person's role; "he took off his politician's hat and talked frankly" -00721282 04 n 01 portfolio 0 001 @ 00720565 n 0000 | the role of the head of a government department; "he holds the portfolio for foreign affairs" -00721431 04 n 04 stead 0 position 3 place 1 lieu 0 002 @ 00720565 n 0000 ~ 00721660 n 0000 | the post or function properly or customarily occupied or served by another; "can you go in my stead?"; "took his place"; "in lieu of" -00721660 04 n 01 behalf 0 001 @ 00721431 n 0000 | as the agent of or on someone's part (usually expressed as "on behalf of" rather than "in behalf of"); "the guardian signed the contract on behalf of the minor child"; "this letter is written on behalf of my client"; -00721929 04 n 01 second_fiddle 0 001 @ 00720565 n 0000 | a secondary role or function; "he hated to play second fiddle to anyone" -00722061 04 n 01 role 1 003 @ 00407535 n 0000 ~ 00722253 n 0000 ~ 00722479 n 0000 | normal or customary activity of a person in a particular social setting; "what is your role on the team?" -00722253 04 n 01 gender_role 0 001 @ 00722061 n 0000 | the overt expression of attitudes that indicate to others the degree of your maleness or femaleness; "your gender role is the public expression of your gender identity" -00722479 04 n 01 position 2 021 @ 00722061 n 0000 ;c 00523513 n 0000 ~ 00464037 n 0000 ~ 00722984 n 0000 ~ 00723241 n 0000 ~ 00723547 n 0000 ~ 00723783 n 0000 ~ 00723984 n 0000 ~ 00724168 n 0000 ~ 00724433 n 0000 ~ 00724684 n 0000 ~ 00724898 n 0000 ~ 00725383 n 0000 ~ 00725506 n 0000 ~ 00725673 n 0000 ~ 00725775 n 0000 ~ 00726100 n 0000 ~ 00728218 n 0000 ~ 00728342 n 0000 ~ 00728464 n 0000 ~ 06486405 n 0000 | (in team sports) the role assigned to an individual player; "what position does he play?" -00722984 04 n 02 pitcher 0 mound 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the position on a baseball team of the player who throws the ball for a batter to try to hit; "he has played every position except pitcher"; "they have a southpaw on the mound" -00723241 04 n 01 catcher 0 003 @ 00722479 n 0000 #m 08079319 n 0000 + 01439190 v 0101 | the position on a baseball team of the player who is stationed behind home plate and who catches the balls that the pitcher throws; "a catcher needs a lot of protective equipment"; "a catcher plays behind the plate" -00723547 04 n 02 first_base 1 first 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the fielding position of the player on a baseball team who is stationed at first of the bases in the infield (counting counterclockwise from home plate) -00723783 04 n 02 second_base 0 second 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the fielding position of the player on a baseball team who is stationed near the second of the bases in the infield -00723984 04 n 02 shortstop 0 short 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the fielding position of the player on a baseball team who is stationed between second and third base -00724168 04 n 02 third_base 0 third 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the fielding position of the player on a baseball team who is stationed near the third of the bases in the infield (counting counterclockwise from home plate); "he is playing third" -00724433 04 n 02 left_field 0 leftfield 0 003 @ 00722479 n 0000 #m 08079319 n 0000 + 10387586 n 0101 | the fielding position of the player on a baseball team who is expected to field balls in the left third of the outfield (looking from home plate) -00724684 04 n 02 center_field 0 centerfield 0 002 @ 00722479 n 0000 #m 08079319 n 0000 | the fielding position of the player on a baseball team who is expected to field balls in the central third of the outfield -00724898 04 n 02 right_field 0 rightfield 0 003 @ 00722479 n 0000 #m 08079319 n 0000 + 10387196 n 0101 | the fielding position of the player on a baseball team who is expected to field balls in the right third of the outfield (looking from home plate) -00725152 04 n 01 steal 0 002 @ 00471613 n 0000 + 01111458 v 0101 | a stolen base; an instance in which a base runner advances safely during the delivery of a pitch (without the help of a hit or walk or passed ball or wild pitch) -00725383 04 n 01 forward 0 002 @ 00722479 n 0000 #m 08079852 n 0000 | a position on a basketball, soccer, or hockey team -00725506 04 n 01 center 1 002 @ 00722479 n 0000 #m 08079852 n 0000 | a position on a basketball team of the player who participates in the jump that starts the game -00725673 04 n 01 guard 0 002 @ 00722479 n 0000 #m 08079852 n 0000 | a position on a basketball team -00725775 04 n 01 back 0 010 @ 00722479 n 0000 #m 08429744 n 0000 #m 08429899 n 0000 ;c 00469651 n 0000 ~ 00726369 n 0000 ~ 00726567 n 0000 ~ 00726867 n 0000 ~ 00727002 n 0000 ~ 00727137 n 0000 ~ 00727333 n 0000 | (American football) the position of a player on a football team who is stationed behind the line of scrimmage -00726100 04 n 01 lineman 0 007 @ 00722479 n 0000 #m 08430054 n 0000 ;c 00469651 n 0000 ~ 00727500 n 0000 ~ 00727743 n 0000 ~ 00727901 n 0000 ~ 00728065 n 0000 | (American football) the position of a player on a football team who is stationed on the line of scrimmage -00726369 04 n 02 linebacker 0 line_backer 0 002 @ 00725775 n 0000 #m 08080025 n 0000 | (American football) the position of a defensive football player who plays close behind the line of scrimmage -00726567 04 n 03 quarterback 0 signal_caller 0 field_general 0 003 @ 00725775 n 0000 #m 08080025 n 0000 + 01076370 v 0101 | (American football) the position of the football player in the backfield who directs the offensive play of his team; "quarterback is the most important position on the team" -00726867 04 n 01 fullback 0 002 @ 00725775 n 0000 #m 08080025 n 0000 | (American football) the position of a back on a football team -00727002 04 n 01 halfback 0 002 @ 00725775 n 0000 #m 08080025 n 0000 | (American football) the position of a back on a football team -00727137 04 n 01 tailback 0 002 @ 00725775 n 0000 #m 08080025 n 0000 | (American football) the position of the offensive back on a football team who lines up farthest from the line of scrimmage -00727333 04 n 01 wingback 0 002 @ 00725775 n 0000 #m 08080025 n 0000 | (American football) the position of the offensive back who lines up behind or outside the end -00727500 04 n 01 center 2 002 @ 00726100 n 0000 #m 08080025 n 0000 | (American football) the position of the player on the line of scrimmage who puts the ball in play; "it is a center's responsibility to get the football to the quarterback" -00727743 04 n 01 guard 2 002 @ 00726100 n 0000 #m 08080025 n 0000 | (American football) a position on the line of scrimmage; "guards must be good blockers" -00727901 04 n 01 tackle 2 002 @ 00726100 n 0000 #m 08080025 n 0000 | (American football) a position on the line of scrimmage; "it takes a big man to play tackle" -00728065 04 n 01 end 2 002 @ 00726100 n 0000 #m 08080025 n 0000 | (American football) a position on the line of scrimmage; "no one wanted to play end" -00728218 04 n 01 mid-off 0 001 @ 00722479 n 0000 | the fielding position in cricket closest to the bowler on the off side -00728342 04 n 01 mid-on 0 001 @ 00722479 n 0000 | the fielding position in cricket closest to the bowler on the on side -00728464 04 n 01 center 3 002 @ 00722479 n 0000 #m 08080386 n 0000 | the position on a hockey team of the player who participates in the face off at the beginning of the game -00728641 04 n 02 school_assignment 0 schoolwork 0 005 @ 00796586 n 0000 ~ 00728849 n 0000 ~ 00728975 n 0000 ~ 00729108 n 0000 ~ 00729285 n 0000 | a school task performed by a student to satisfy the teacher -00728849 04 n 01 classroom_project 0 002 @ 00728641 n 0000 #p 00883297 n 0000 | a school task requiring considerable effort -00728975 04 n 01 classwork 0 002 @ 00728641 n 0000 #p 00883297 n 0000 | the part of a student's work that is done in the classroom -00729108 04 n 03 homework 0 prep 0 preparation 1 003 @ 00728641 n 0000 #p 00883297 n 0000 + 00602805 v 0302 | preparatory school work done outside school (especially at home) -00729285 04 n 01 lesson 0 005 @ 00728641 n 0000 #p 00883297 n 0000 ~ 00729919 n 0000 ~ 00730134 n 0000 ~ 00890227 n 0000 | a task assigned for individual study; "he did the lesson for today" -00729478 04 n 01 language_lesson 0 004 @ 00889472 n 0000 ~ 00729637 n 0000 ~ 00729731 n 0000 ~ 00729825 n 0000 | a period of instruction learning a language -00729637 04 n 01 French_lesson 0 001 @ 00729478 n 0000 | instruction in the French language -00729731 04 n 01 German_lesson 0 001 @ 00729478 n 0000 | instruction in the German language -00729825 04 n 01 Hebrew_lesson 0 001 @ 00729478 n 0000 | instruction in the Hebrew language -00729919 04 n 02 exercise 1 example 0 001 @ 00729285 n 0000 | a task performed or problem solved in order to develop skill or understanding; "you must work the examples at the end of each chapter in the textbook" -00730134 04 n 01 reading_assignment 0 001 @ 00729285 n 0000 | the reading of a passage assigned by the teacher -00730247 04 n 02 assignment 0 duty_assignment 0 008 @ 00719494 n 0000 + 02391803 v 0104 ~ 00730538 n 0000 ~ 00730708 n 0000 ~ 00731222 n 0000 ~ 00732076 n 0000 ~ 00732369 n 0000 ~ 00732492 n 0000 | a duty that you are assigned to perform (especially in the armed forces); "hazardous duty" -00730538 04 n 04 guard_duty 0 guard 1 sentry_duty 0 sentry_go 0 002 @ 00730247 n 0000 + 02456031 v 0201 | the duty of serving as a sentry; "he was on guard that night" -00730708 04 n 02 fatigue_duty 0 fatigue 0 002 @ 00730247 n 0000 ;c 08199025 n 0000 | labor of a nonmilitary kind done by soldiers (cleaning or digging or draining or so on); "the soldiers were put on fatigue to teach them a lesson"; "they were assigned to kitchen fatigues" -00730984 04 n 02 mission 2 missionary_work 0 003 @ 00575741 n 0000 + 10323182 n 0102 ~ 00731136 n 0000 | the organized work of a religious missionary -00731136 04 n 02 da'wah 0 dawah 0 001 @ 00730984 n 0000 | missionary work for Islam -00731222 04 n 03 mission 0 charge 3 commission 0 009 @ 00730247 n 0000 + 02475261 v 0301 + 02475922 v 0202 + 00750172 v 0201 + 00750532 v 0201 + 10323182 n 0102 ~ 00731569 n 0000 ~ 00731648 n 0000 ~ 00731756 n 0000 | a special assignment that is given to a person or group; "a confidential mission to London"; "his charge was deliver a message" -00731569 04 n 01 fool's_errand 0 001 @ 00731222 n 0000 | a fruitless mission -00731648 04 n 01 mission_impossible 0 001 @ 00731222 n 0000 | an extremely dangerous or difficult mission -00731756 04 n 03 suicide_mission 0 martyr_operation 0 sacrifice_operation 0 001 @ 00731222 n 0000 | killing or injuring others while annihilating yourself; usually accomplished with a bomb -00731947 04 n 01 errand 0 001 @ 00308370 n 0000 | a short trip that is taken in the performance of a necessary task or mission -00732076 04 n 01 reassignment 0 003 @ 00730247 n 0000 + 02393086 v 0102 ~ 00732201 n 0000 | assignment to a different duty -00732201 04 n 01 secondment 0 002 @ 00732076 n 0000 + 02393304 v 0101 | the detachment of a person from their regular organization for temporary assignment elsewhere -00732369 04 n 03 sea-duty 0 service_abroad 0 shipboard_duty 0 001 @ 00730247 n 0000 | naval service aboard a ship at sea -00732492 04 n 01 shore_duty 0 001 @ 00730247 n 0000 | naval service at land bases -00732576 04 n 02 scut_work 0 shitwork 0 001 @ 00719705 n 0000 | trivial, unrewarding, tedious, dirty, and disagreeable chores; "the hospital hired him to do scut work" -00732746 04 n 04 wrongdoing 0 wrongful_conduct 0 misconduct 0 actus_reus 0 023 @ 00407535 n 0000 + 02517202 v 0302 ~ 00733317 n 0000 ~ 00733483 n 0000 ~ 00733883 n 0000 ~ 00735832 n 0000 ~ 00735936 n 0000 ~ 00738966 n 0000 ~ 00741925 n 0000 ~ 00742020 n 0000 ~ 00742130 n 0000 ~ 00742314 n 0000 ~ 00742474 n 0000 ~ 00744305 n 0000 ~ 00744443 n 0000 ~ 00744616 n 0000 ~ 00744758 n 0000 ~ 00745005 n 0000 ~ 00749574 n 0000 ~ 00751145 n 0000 ~ 00765488 n 0000 ~ 00765791 n 0000 ~ 00770543 n 0000 | activity that transgresses moral or civil law; "he denied any wrongdoing" -00733317 04 n 02 brutalization 1 brutalisation 1 003 @ 00732746 n 0000 + 02515934 v 0202 + 02515934 v 0101 | the activity of treating someone savagely or viciously -00733483 04 n 05 trespass 0 encroachment 0 violation 1 intrusion 1 usurpation 1 007 @ 00732746 n 0000 + 02571251 v 0402 + 02018524 v 0401 + 02568065 v 0304 + 01993352 v 0201 + 02571251 v 0101 ~ 00733753 n 0000 | entry to another's property without right or permission -00733753 04 n 01 inroad 1 001 @ 00733483 n 0000 | an encroachment or intrusion; "they made inroads in the United States market" -00733883 04 n 02 tort 0 civil_wrong 0 006 @ 00732746 n 0000 ;c 08441203 n 0000 ~ 00734107 n 0000 ~ 00734303 n 0000 ~ 00734482 n 0000 -c 06720371 n 0000 | (law) any wrongdoing for which an action for damages may be brought -00734107 04 n 01 alienation_of_affection 0 001 @ 00733883 n 0000 | a tort based on willful and malicious interference with the marriage relation by a third party without justification or excuse -00734303 04 n 01 invasion_of_privacy 0 001 @ 00733883 n 0000 | the wrongful intrusion by individuals or the government into private affairs with which the public has no concern -00734482 04 n 01 trespass 1 007 @ 00733883 n 0000 + 02567422 v 0101 ~ 00734783 n 0000 ~ 00735017 n 0000 ~ 00735198 n 0000 ~ 00735553 n 0000 ~ 00735686 n 0000 | a wrongful interference with the possession of property (personal property as well as realty), or the action instituted to recover damages -00734783 04 n 01 continuing_trespass 0 001 @ 00734482 n 0000 | trespass that is not transient or intermittent but continues as long as the offending object remains; "dumping his garbage on my land was a case of continuing trespass" -00735017 04 n 01 trespass_de_bonis_asportatis 0 001 @ 00734482 n 0000 | an action brought to recover damages from a person who has taken goods or property from its rightful owner -00735198 04 n 01 trespass_on_the_case 0 001 @ 00734482 n 0000 | an action brought to recover damages from a person whose actions have resulted indirectly in injury or loss; "a person struck by a log as it was thrown onto a road could maintain trespass against the thrower but one who was hurt by stumbling over it could maintain and action on the case" -00735553 04 n 01 trespass_quare_clausum_fregit 0 001 @ 00734482 n 0000 | the defendant unlawfully enters the land of the plaintiff -00735686 04 n 01 trespass_viet_armis 0 001 @ 00734482 n 0000 | trespass with force and arms resulting in injury to another's person or property -00735832 04 n 01 malversation 0 002 @ 00732746 n 0000 + 02292535 v 0105 | misconduct in public office -00735936 04 n 03 misbehavior 0 misbehaviour 0 misdeed 0 010 @ 00732746 n 0000 + 02517202 v 0101 ~ 00736219 n 0000 ~ 00736375 n 0000 ~ 00736989 n 0000 ~ 00737070 n 0000 ~ 00737188 n 0000 ~ 00737536 n 0000 ~ 00738785 n 0000 ~ 00738872 n 0000 | improper or wicked or immoral behavior -00736219 04 n 02 delinquency 0 juvenile_delinquency 0 002 @ 00735936 n 0000 ;c 08441203 n 0000 | an antisocial misdeed in violation of the law by a minor -00736375 04 n 0a mischief 0 mischief-making 0 mischievousness 0 deviltry 1 devilry 1 devilment 0 rascality 0 roguery 0 roguishness 0 shenanigan 0 010 @ 00735936 n 0000 + 01224964 a 0902 + 01787955 v 060d + 01787955 v 050d + 01787955 v 040d + 01162633 a 0301 + 01162633 a 0101 ~ 00736786 n 0000 ~ 00736894 n 0000 ~ 01249816 n 0000 | reckless or malicious behavior that causes discomfort or annoyance in others -00736786 04 n 02 hell 0 blaze 0 001 @ 00736375 n 0000 | noisy and unrestrained mischief; "raising blazes" -00736894 04 n 01 monkey_business 0 001 @ 00736375 n 0000 | mischievous or deceitful behavior -00736989 04 n 01 ruffianism 0 001 @ 00735936 n 0000 | violent lawless behavior -00737070 04 n 04 familiarity 0 impropriety 0 indecorum 0 liberty 0 001 @ 00735936 n 0000 | an act of undue intimacy -00737188 04 n 02 abnormality 0 irregularity 0 005 @ 00735936 n 0000 + 01596809 a 0202 + 01960656 a 0201 + 01595596 a 0101 ~ 00737399 n 0000 | behavior that breaches the rule or etiquette or custom or morality -00737399 04 n 02 deviation 0 deviance 0 004 @ 00737188 n 0000 + 01596122 a 0202 + 02661252 v 0101 + 01596122 a 0203 | deviate behavior -00737536 04 n 02 indecency 1 impropriety 1 005 @ 00735936 n 0000 + 01880918 a 0101 + 01539022 a 0101 + 00683185 a 0101 ~ 00738697 n 0000 | an indecent or improper act -00737705 04 n 01 paraphilia 0 007 @ 00854717 n 0000 ~ 00737894 n 0000 ~ 00738058 n 0000 ~ 00738270 n 0000 ~ 00738372 n 0000 ~ 00738598 n 0000 ~ 00857872 n 0000 | abnormal sexual activity -00737894 04 n 02 exhibitionism 0 immodesty 0 002 @ 00737705 n 0000 + 10070942 n 0101 | the perverse act of exposing and attracting attention to your own genitals -00738058 04 n 02 fetishism 0 fetichism 0 002 @ 00737705 n 0000 + 10085548 n 0101 | sexual arousal or gratification resulting from handling a fetish (or a specific part of the body other than the sexual organs) -00738270 04 n 02 pedophilia 0 paedophilia 0 001 @ 00737705 n 0000 | a sexual attraction to children -00738372 04 n 01 voyeurism 0 003 @ 00737705 n 0000 + 03129648 a 0101 + 03129648 a 0102 | a perversion in which a person receives sexual gratification from seeing the genitalia of others or witnessing others' sexual behavior -00738598 04 n 02 zoophilia 0 zoophilism 0 001 @ 00737705 n 0000 | a sexual attraction to animals -00738697 04 n 01 obscenity 0 002 @ 00737536 n 0000 + 01625063 a 0103 | an obscene act -00738785 04 n 02 indiscretion 0 peccadillo 0 001 @ 00735936 n 0000 | a petty misdeed -00738872 04 n 01 infantilism 0 001 @ 00735936 n 0000 | infantile behavior in mature persons -00738966 04 n 01 dereliction 0 003 @ 00739270 n 0000 @ 00732746 n 0000 ~ 00739078 n 0000 | willful negligence -00739078 04 n 01 nonfeasance 0 001 @ 00738966 n 0000 | a failure to act when under an obligation to do so; a refusal (without sufficient excuse) to do that which it is your legal duty to do -00739270 04 n 04 negligence 0 carelessness 0 neglect 0 nonperformance 0 010 @ 00066216 n 0000 + 00614999 v 0301 + 00311663 a 0201 ~ 00738966 n 0000 ~ 00739632 n 0000 ~ 00739850 n 0000 ~ 00740048 n 0000 ~ 00740342 n 0000 ~ 00740609 n 0000 ~ 00740712 n 0000 | failure to act with the prudence that a reasonable person would exercise under the same circumstances -00739632 04 n 01 comparative_negligence 0 002 @ 00739270 n 0000 ;c 08441203 n 0000 | (law) negligence allocated between the plaintiff and the defendant with a corresponding reduction in damages paid to the plaintiff -00739850 04 n 01 concurrent_negligence 0 002 @ 00739270 n 0000 ;c 08441203 n 0000 | (law) negligence of two of more persons acting independently; the plaintiff may sue both together or separately -00740048 04 n 01 contributory_negligence 0 002 @ 00739270 n 0000 ;c 08441203 n 0000 | (law) behavior by the plaintiff that contributes to the harm resulting from the defendant's negligence; "in common law any degree of contributory negligence would bar the plaintiff from collecting damages" -00740342 04 n 02 criminal_negligence 0 culpable_negligence 0 002 @ 00739270 n 0000 ;c 08441203 n 0000 | (law) recklessly acting without reasonable caution and putting another person at risk of injury or death (or failing to do something with the same consequences) -00740609 04 n 01 neglect_of_duty 0 002 @ 00739270 n 0000 ;c 08441203 n 0000 | (law) breach of a duty -00740712 04 n 03 evasion 1 escape 1 dodging 0 010 @ 00739270 n 0000 + 00809654 v 0309 + 02599004 v 0201 + 00810729 v 0205 + 00810557 v 0202 + 00809654 v 0103 ~ 00741158 n 0000 ~ 00741272 n 0000 ~ 00741478 n 0000 ~ 00741685 n 0000 | nonperformance of something distasteful (as by deceit or trickery) that you are supposed to do; "his evasion of his clear duty was reprehensible"; "that escape from the consequences is possible but unattractive" -00741158 04 n 01 escape_mechanism 0 001 @ 00740712 n 0000 | a form of behavior that evades unpleasant realities -00741272 04 n 02 malingering 0 skulking 0 003 @ 00740712 n 0000 + 02464132 v 0202 + 02464132 v 0101 | evading duty or work by pretending to be incapacitated; "they developed a test to detect malingering" -00741478 04 n 05 shirking 0 slacking 0 soldiering 0 goofing_off 0 goldbricking 0 005 @ 00740712 n 0000 + 02463704 v 0504 + 02464342 v 0201 + 00616361 v 0201 + 02463704 v 0102 | the evasion of work or duty -00741685 04 n 01 circumvention 0 002 @ 00740712 n 0000 + 00809654 v 0105 | the act of evading by going around -00741797 04 n 01 tax_evasion 0 001 @ 01120855 n 0000 | the deliberate failure to pay taxes (usually by making a false report) -00741925 04 n 01 malfeasance 0 001 @ 00732746 n 0000 | wrongful conduct by a public official -00742020 04 n 01 misfeasance 0 001 @ 00732746 n 0000 | doing a proper act in a wrongful or injurious manner -00742130 04 n 01 malpractice 0 001 @ 00732746 n 0000 | a wrongful act that the actor had no right to do; improper professional conduct; "he charged them with electoral malpractices" -00742314 04 n 01 malpractice 1 001 @ 00732746 n 0000 | professional wrongdoing that results in injury or damage; "the widow sued his surgeon for malpractice" -00742474 04 n 01 perversion 0 002 @ 00732746 n 0000 + 00203213 v 0101 | the action of perverting something (turning it to a wrong use); "it was a perversion of justice" -00742645 04 n 03 waste 0 wastefulness 3 dissipation 2 014 @ 00407535 n 0000 + 01195804 v 0303 + 00841159 a 0202 + 00588655 a 0201 + 02268351 v 0101 + 01161087 v 0101 + 01158181 v 0103 ~ 00041614 n 0000 ~ 00743155 n 0000 ~ 00743251 n 0000 ~ 00743348 n 0000 ~ 00743500 n 0000 ~ 00743641 n 0000 ~ 00743822 n 0000 | useless or profitless activity; using or expending or consuming thoughtlessly or carelessly; "if the effort brings no compensating gain it is a waste"; "mindless dissipation of natural resources" -00743155 04 n 02 waste_of_effort 0 waste_of_energy 0 001 @ 00742645 n 0000 | a useless effort -00743251 04 n 01 waste_of_material 0 001 @ 00742645 n 0000 | a useless consumption of material -00743348 04 n 01 waste_of_money 0 001 @ 00742645 n 0000 | money spent for inadequate return; "the senator said that the project was a waste of money" -00743500 04 n 01 waste_of_time 0 001 @ 00742645 n 0000 | the devotion of time to a useless activity; "the waste of time could prove fatal" -00743641 04 n 05 extravagance 0 prodigality 0 lavishness 0 highlife 0 high_life 0 004 @ 00742645 n 0000 + 01111965 a 0301 + 02422242 a 0202 + 02422242 a 0101 | excessive spending -00743822 04 n 01 squandering 0 003 @ 00742645 n 0000 + 01158181 v 0102 ~ 00744004 n 0000 | spending resources lavishly and wastefully; "more wasteful than the squandering of time" -00744004 04 n 01 squandermania 0 002 @ 00743822 n 0000 ;c 01124794 n 0000 | prodigious squandering (usually by a government) -00744131 04 n 03 wrong 0 legal_injury 0 damage 1 003 @ 00744305 n 0000 + 02035337 a 0101 + 02513989 v 0101 | any harm or injury resulting from a violation of a legal right -00744305 04 n 01 injury 1 002 @ 00732746 n 0000 ~ 00744131 n 0000 | wrongdoing that violates another's rights and is unjustly inflicted -00744443 04 n 01 injury 2 004 @ 00732746 n 0000 + 00069879 v 0101 ~ 01209791 n 0000 ~ 01263018 n 0000 | an act that causes someone or something to receive physical damage -00744616 04 n 04 injustice 0 unfairness 0 iniquity 1 shabbiness 0 003 @ 00732746 n 0000 + 01228159 a 0401 + 00957176 a 0201 | an unjust act -00744758 04 n 01 infliction 1 002 @ 00732746 n 0000 + 00748282 v 0101 | an act causing pain or damage -00744862 04 n 01 transgression 1 002 @ 00037396 n 0000 + 02019574 v 0101 | the action of going beyond or overstepping some boundary or limit -00745005 04 n 02 transgression 0 evildoing 0 013 @ 00732746 n 0000 + 02565687 v 0102 + 02566528 v 0101 ~ 00745431 n 0000 ~ 00745637 n 0000 ~ 00745863 n 0000 ~ 00746866 n 0000 ~ 00747029 n 0000 ~ 00757080 n 0000 ~ 00765193 n 0000 ~ 00766234 n 0000 ~ 00767477 n 0000 ~ 00767633 n 0000 | the act of transgressing; the violation of a law or a duty or moral principle; "the boy was punished for the transgressions of his father" -00745431 04 n 01 abomination 0 002 @ 00745005 n 0000 + 01774426 v 0103 | an action that is vicious or vile; an action that arouses disgust or abhorrence; "his treatment of the children is an abomination" -00745637 04 n 04 evil 0 immorality 0 wickedness 0 iniquity 0 007 @ 00745005 n 0000 + 02514543 a 0401 + 02513740 a 0301 ~ 00745943 n 0000 ~ 00746116 n 0000 ~ 00746232 n 0000 ~ 00746375 n 0000 | morally objectionable behavior -00745863 04 n 01 villainy 0 001 @ 00745005 n 0000 | a criminal or vicious act -00745943 04 n 02 deviltry 0 devilry 0 001 @ 00745637 n 0000 | wicked and cruel behavior -00746033 04 n 01 enormity 0 001 @ 00424767 n 0000 | an act of extreme wickedness -00746116 04 n 01 foul_play 0 001 @ 00745637 n 0000 | unfair or dishonest behavior (especially involving violence) -00746232 04 n 02 irreverence 0 violation 3 004 @ 00745637 n 0000 + 02568065 v 0204 + 02012504 a 0101 ~ 00746587 n 0000 | a disrespectful act -00746375 04 n 01 sexual_immorality 0 001 @ 00745637 n 0000 | the evil ascribed to sexual acts that violate social conventions; "sexual immorality is the major reason for last year's record number of abortions" -00746587 04 n 04 profanation 0 desecration 0 blasphemy 0 sacrilege 0 005 @ 00746232 n 0000 + 02012748 a 0403 + 02012748 a 0301 + 02568065 v 0201 + 02568065 v 0102 | blasphemous behavior; the act of depriving something of its sacred character; "desecration of the Holy Sabbath" -00746866 04 n 02 depravity 0 turpitude 0 001 @ 00745005 n 0000 | a corrupt or depraved or degenerate act or practice; "the various turpitudes of modern society" -00747029 04 n 01 vice 0 004 @ 00745005 n 0000 + 02514099 a 0102 ~ 00430140 n 0000 ~ 00748011 n 0000 | a specific form of evildoing; "vice offends the moral standards of the community" -00747215 04 n 05 pornography 0 porno 0 porn 0 erotica 0 smut 0 006 @ 00908492 n 0000 + 00425313 a 0505 + 00583759 v 0501 + 02134397 a 0101 + 10455094 n 0101 ~ 00747519 n 0000 | creative activity (writing or pictures or films etc.) of no literary or artistic value other than to stimulate sexual desire -00747519 04 n 03 child_pornography 0 kiddie_porn 0 kiddy_porn 0 001 @ 00747215 n 0000 | the illegal use of children in pornographic pictures or films -00747671 04 n 03 intemperance 0 intemperateness 0 self-indulgence 0 007 @ 01073241 n 0000 + 01299687 a 0301 + 01299173 a 0201 + 02402268 a 0201 ~ 00510475 n 0000 ~ 00748307 n 0000 ~ 00749491 n 0000 | excess in action and immoderate indulgence of bodily appetites, especially in passion or indulgence; "the intemperance of their language" -00748011 04 n 02 intemperance 1 intemperateness 1 003 @ 00747029 n 0000 + 01299173 a 0201 ~ 00748515 n 0000 | consumption of alcoholic drinks -00748155 04 n 03 prostitution 0 harlotry 0 whoredom 0 003 @ 00782241 n 0000 + 10485440 n 0303 + 02554066 v 0101 | offering sexual intercourse for pay -00748307 04 n 05 profligacy 0 dissipation 1 dissolution 3 licentiousness 0 looseness 0 004 @ 00747671 n 0000 + 00361837 a 0503 + 00362269 a 0401 + 02614812 v 0201 | dissolute indulgence in sensual pleasure -00748515 04 n 05 drink 0 drinking 1 boozing 0 drunkenness 0 crapulence 0 009 @ 00748011 n 0000 + 00010537 a 0502 + 00010385 a 0501 + 00010537 a 0501 + 01172275 v 0201 + 01171183 v 0201 + 01172275 v 0101 + 01171183 v 0101 ~ 00748834 n 0000 | the act of drinking alcoholic beverages to excess; "drink was his downfall" -00748834 04 n 01 drinking_bout 0 001 @ 00748515 n 0000 | a long period of drinking -00748919 04 n 02 package_tour 0 package_holiday 0 001 @ 00310666 n 0000 | a tour arranged by a travel agent; transportation and food and lodging are all provided at an inclusive price -00749105 04 n 01 pub_crawl 0 001 @ 00310666 n 0000 | a tour of bars or public houses (usually taking one drink at each stop) -00749232 04 n 01 whistle-stop_tour 0 002 @ 00310666 n 0000 #p 00799537 n 0000 | a tour by a candidate as part of a political campaign in which a series of small towns are visited; "in 1948 Truman crossed the country several times on his whistle-stop tours" -00749491 04 n 01 jag 0 001 @ 00747671 n 0000 | a bout of drinking or drug taking -00749574 04 n 02 dishonesty 0 knavery 0 005 @ 00732746 n 0000 ~ 00749767 n 0000 ~ 00750306 n 0000 ~ 00750730 n 0000 ~ 00750890 n 0000 | lack of honesty; acts of lying or cheating or stealing -00749767 04 n 04 treachery 0 betrayal 0 treason 1 perfidy 0 007 @ 00749574 n 0000 + 00960094 a 0402 + 10722965 n 0302 + 02537407 v 0201 + 00960094 a 0103 ~ 00749991 n 0000 ~ 00750216 n 0000 | an act of deliberate betrayal -00749991 04 n 02 double_cross 0 double-crossing 0 003 @ 00749767 n 0000 + 02537812 v 0201 + 02537812 v 0101 | an act of betrayal; "he gave us the old double cross"; "I could no longer tolerate his impudent double-crossing" -00750216 04 n 01 sellout 0 002 @ 00749767 n 0000 + 00936763 v 0101 | an act of betrayal -00750306 04 n 02 charlatanism 0 quackery 1 001 @ 00749574 n 0000 | the dishonesty of a charlatan -00750405 04 n 04 plagiarism 0 plagiarization 0 plagiarisation 0 piracy 1 009 @ 00770834 n 0000 + 03100184 a 0401 + 02277897 v 0401 + 02278061 v 0302 + 02278061 v 0201 + 00698848 a 0101 + 10437262 n 0101 + 02278061 v 0101 + 02278061 v 0102 | the act of plagiarizing; taking someone's words or ideas as if they were your own -00750730 04 n 01 trick 4 002 @ 00749574 n 0000 + 09998101 n 0104 | an attempt to get you to do something foolish or imprudent; "that offer was a dirty trick" -00750890 04 n 02 falsification 0 falsehood 0 005 @ 00749574 n 0000 + 02576921 v 0104 ~ 00751398 n 0000 ~ 00753472 n 0000 ~ 00768921 n 0000 | the act of rendering something false as by fraudulent changes (of documents or measures etc.) or counterfeiting -00751145 04 n 02 falsification 2 misrepresentation 0 009 @ 00732746 n 0000 + 02576921 v 0104 + 00835903 v 0101 + 00201407 v 0103 + 00202236 v 0101 ~ 00751529 n 0000 ~ 00751779 n 0000 ~ 00751944 n 0000 ~ 00752431 n 0000 | a willful perversion of facts -00751398 04 n 02 frame-up 0 setup 0 002 @ 00750890 n 0000 + 02578008 v 0204 | an act that incriminates someone on a false charge -00751529 04 n 05 distortion 0 overrefinement 0 straining 0 torture 1 twisting 0 004 @ 00751145 n 0000 + 00932798 v 0501 + 00474308 v 0201 + 00835903 v 0102 | the act of distorting something so it seems to mean something it was not intended to mean -00751779 04 n 02 equivocation 0 tergiversation 0 003 @ 00751145 n 0000 + 00835506 v 0203 + 00835506 v 0102 | falsification by means of vague or ambiguous language -00751944 04 n 03 lying 0 prevarication 0 fabrication 3 005 @ 00751145 n 0000 + 01653442 v 0302 + 00835506 v 0204 + 00834259 v 0101 ~ 00752144 n 0000 | the deliberate act of deviating from the truth -00752144 04 n 02 fibbing 0 paltering 0 003 @ 00751944 n 0000 + 00835506 v 0205 + 00835294 v 0101 | a trivial act of lying or being deliberately unclear -00752298 04 n 01 fakery 0 003 @ 00752431 n 0000 + 02576921 v 0103 + 01654271 v 0102 | the act of faking (or the product of faking) -00752431 04 n 04 deception 0 deceit 0 dissembling 0 dissimulation 0 015 @ 00751145 n 0000 + 02147824 v 0401 + 02575082 v 0101 + 00854420 v 0101 ~ 00752298 n 0000 ~ 00752798 n 0000 ~ 00752954 n 0000 ~ 00753240 n 0000 ~ 00754424 n 0000 ~ 00754767 n 0000 ~ 00754956 n 0000 ~ 00756331 n 0000 ~ 00756470 n 0000 ~ 00756598 n 0000 ~ 00756780 n 0000 | the act of deceiving -00752798 04 n 01 indirection 1 001 @ 00752431 n 0000 | deceitful action that is not straightforward; "he could see through the indirections of diplomats" -00752954 04 n 06 trickery 1 chicanery 0 chicane 0 guile 0 wile 0 shenanigan 1 007 @ 00752431 n 0000 + 00148078 a 050b + 01104624 v 0305 + 01104624 v 0205 + 02575723 v 0104 ~ 00753685 n 0000 ~ 00754118 n 0000 | the use of tricks to deceive someone (usually to extract money from them) -00753240 04 n 02 duplicity 0 double-dealing 0 003 @ 00752431 n 0000 + 01223271 a 0203 + 01223271 a 0104 | acting in bad faith; deception by pretending to entertain one set of intentions while acting under the influence of another -00753472 04 n 01 sophistication 0 002 @ 00750890 n 0000 + 00932798 v 0105 | falsification by the use of sophistry; misleading by means of specious fallacies; "he practiced the art of sophistication upon reason" -00753685 04 n 06 fraud 1 fraudulence 0 dupery 0 hoax 0 humbug 0 put-on 0 007 @ 00752954 n 0000 + 00854904 v 0607 + 02593001 v 0501 + 02577586 v 0401 + 00854904 v 0302 + 01223941 a 0203 ~ 00753973 n 0000 | something intended to deceive; deliberate trickery intended to gain an advantage -00753973 04 n 01 goldbrick 0 002 @ 00753685 n 0000 ;u 07105475 n 0000 | anything that is supposed to be valuable but turns out to be worthless -00754118 04 n 01 jugglery 1 002 @ 00752954 n 0000 + 02578235 v 0101 | artful trickery designed to achieve an end; "the senator's tax program was mere jugglery" -00754280 04 n 02 scam 0 cozenage 0 004 @ 00780148 n 0000 + 02574874 v 0201 + 02288656 v 0201 + 02572119 v 0109 | a fraudulent business scheme -00754424 04 n 02 cheat 0 cheating 0 005 @ 00752431 n 0000 + 02574516 v 0201 + 02573275 v 0201 + 02573275 v 0101 ~ 00754593 n 0000 | a deception for profit to yourself -00754593 04 n 01 gerrymander 0 002 @ 00754424 n 0000 + 02467516 v 0101 | an act of gerrymandering (dividing a voting area so as to give your own party an unfair advantage) -00754767 04 n 03 delusion 0 illusion 0 head_game 0 004 @ 00752431 n 0000 + 01937187 a 0201 + 01937187 a 0202 + 02575082 v 0103 | the act of deluding; deception by creating illusory ideas -00754956 04 n 05 pretense 0 pretence 0 pretending 0 simulation 0 feigning 0 009 @ 00752431 n 0000 + 01721754 v 0504 + 01721754 v 0401 + 00838043 v 0303 + 00838043 v 0103 ~ 00755277 n 0000 ~ 00755500 n 0000 ~ 00755673 n 0000 ~ 00756194 n 0000 | the act of giving a false appearance; "his conformity was only pretending" -00755277 04 n 02 appearance 2 show 1 002 @ 00754956 n 0000 + 01848701 a 0202 | pretending that something is the case in order to make a good impression; "they try to keep up appearances"; "that ceremony is just for show" -00755500 04 n 02 make-believe 0 pretend 0 004 @ 00754956 n 0000 + 00838524 v 0202 + 01937759 a 0101 + 00838524 v 0103 | the enactment of a pretense; "it was just pretend" -00755673 04 n 04 affectation 0 mannerism 0 pose 0 affectedness 0 004 @ 00754956 n 0000 + 02519183 v 0301 ~ 00755863 n 0000 ~ 00756034 n 0000 | a deliberate pretense or exaggerated display -00755863 04 n 01 attitude 0 003 @ 00755673 n 0000 + 02519494 v 0101 + 02519494 v 0102 | a theatrical pose created for effect; "the actor struck just the right attitude" -00756034 04 n 01 radical_chic 0 001 @ 00755673 n 0000 | an affectation of radical left-wing views and the fashionable dress and lifestyle that goes with them -00756194 04 n 01 masquerade 0 002 @ 00754956 n 0000 + 00837617 v 0101 | making a false outward show; "a beggar's masquerade of wealth" -00756331 04 n 02 imposture 0 impersonation 1 003 @ 00752431 n 0000 + 01723690 v 0201 + 00837288 v 0202 | pretending to be another person -00756470 04 n 01 obscurantism 0 002 @ 00752431 n 0000 + 10369417 n 0101 | a deliberate act intended to make something obscure -00756598 04 n 02 bluff 0 four_flush 0 002 @ 00752431 n 0000 + 01076953 v 0101 | the act of bluffing in poker; deception by a false show of confidence in the strength of your cards -00756780 04 n 01 take-in 0 002 @ 00752431 n 0000 + 00854904 v 0108 | the act of taking in as by fooling or cheating or swindling someone -00756919 04 n 01 fall 3 003 @ 00757080 n 0000 + 02566092 v 0101 + 02565911 v 0101 | a lapse into sin; a loss of innocence or of chastity; "a fall from virtue" -00757080 04 n 02 sin 0 sinning 0 008 @ 00745005 n 0000 + 02565687 v 0201 + 02565687 v 0101 ~ 00756919 n 0000 ~ 00757337 n 0000 ~ 00757483 n 0000 ~ 00757730 n 0000 ~ 00758033 n 0000 | an act that is regarded by theologians as a transgression of God's will -00757337 04 n 01 actual_sin 0 002 @ 00757080 n 0000 ! 00757483 n 0101 | a sin committed of your own free will (as contrasted with original sin) -00757483 04 n 01 original_sin 0 003 @ 00757080 n 0000 @ 06789411 n 0000 ! 00757337 n 0101 | a sin said to be inherited by all descendants of Adam; "Adam and Eve committed the original sin when they ate the forbidden fruit in the Garden of Eden" -00757730 04 n 02 mortal_sin 0 deadly_sin 0 009 @ 00757080 n 0000 ! 00758033 n 0101 ~ 00758175 n 0000 ~ 00758335 n 0000 ~ 00758525 n 0000 ~ 00758795 n 0000 ~ 00758972 n 0000 ~ 00759186 n 0000 ~ 00759335 n 0000 | an unpardonable sin entailing a total loss of grace; "theologians list seven mortal sins" -00758033 04 n 01 venial_sin 0 002 @ 00757080 n 0000 ! 00757730 n 0101 | a pardonable sin regarded as entailing only a partial loss of grace -00758175 04 n 02 pride 0 superbia 0 002 @ 00757730 n 0000 ~ 04887912 n 0000 | unreasonable and inordinate self-esteem (personified as one of the deadly sins) -00758335 04 n 02 envy 0 invidia 0 003 @ 00757730 n 0000 + 00888765 a 0102 + 01827064 v 0101 | spite and resentment at seeing the success of another (personified as one of the deadly sins) -00758525 04 n 05 avarice 0 greed 0 covetousness 0 rapacity 0 avaritia 0 005 @ 00757730 n 0000 + 00031138 a 0401 + 00029933 a 0302 + 00029933 a 0205 + 00029933 a 0101 | reprehensible acquisitiveness; insatiable desire for wealth (personified as one of the deadly sins) -00758795 04 n 03 sloth 0 laziness 0 acedia 0 002 @ 00757730 n 0000 + 00294579 a 0203 | apathy and inactivity in the practice of virtue (personified as one of the deadly sins) -00758972 04 n 04 wrath 0 anger 0 ire 0 ira 0 004 @ 00757730 n 0000 + 00113818 a 0201 + 01787106 v 0201 + 01785971 v 0201 | belligerence aroused by a real or supposed wrong (personified as one of the deadly sins) -00759186 04 n 03 gluttony 0 overeating 0 gula 0 002 @ 00757730 n 0000 + 01193099 v 0209 | eating to excess (personified as one of the deadly sins) -00759335 04 n 02 lust 0 luxuria 0 003 @ 00757730 n 0000 + 01727133 a 0102 + 01188485 v 0105 | self-indulgent sexual desire (personified as one of the deadly sins) -00759500 04 n 01 terror 0 002 @ 01127245 n 0000 ~ 00759694 n 0000 | the use of extreme fear in order to coerce people (especially for political reasons); "he used terror to make them confess" -00759694 04 n 03 terrorism 0 act_of_terrorism 0 terrorist_act 0 166 @ 00759500 n 0000 + 10702781 n 0101 ~ 00763132 n 0000 -c 00763132 n 0000 ~ 00763282 n 0000 -c 00763282 n 0000 ~ 00763630 n 0000 -c 00763630 n 0000 ~ 00763787 n 0000 -c 00763787 n 0000 ~ 00764031 n 0000 -c 00764031 n 0000 ~ 00764258 n 0000 -c 00764258 n 0000 ~ 00764436 n 0000 -c 00764436 n 0000 ~ 00764588 n 0000 -c 00764588 n 0000 ~ 00764891 n 0000 -c 00764891 n 0000 ~ 00765081 n 0000 -c 00765081 n 0000 -c 00765193 n 0000 -c 00979742 n 0000 -c 00980394 n 0000 -c 00986275 n 0000 -c 01147676 n 0000 -c 01222666 n 0000 ~ 01246697 n 0000 -c 04304812 n 0000 -c 04516477 n 0000 -c 04604009 n 0000 -c 05906734 n 0000 -c 06424275 n 0000 -c 06644105 n 0000 -c 06886273 n 0000 -c 08010364 n 0000 -c 08010559 n 0000 -c 08010942 n 0000 -c 08011266 n 0000 -c 08011523 n 0000 -c 08012028 n 0000 -c 08012384 n 0000 -c 08012765 n 0000 -c 08013176 n 0000 -c 08013453 n 0000 -c 08013653 n 0000 -c 08013845 n 0000 -c 08014202 n 0000 -c 08014615 n 0000 -c 08014860 n 0000 -c 08015116 n 0000 -c 08015321 n 0000 -c 08015731 n 0000 -c 08016035 n 0000 -c 08016385 n 0000 -c 08016900 n 0000 -c 08017257 n 0000 -c 08017614 n 0000 -c 08017974 n 0000 -c 08018189 n 0000 -c 08018666 n 0000 -c 08018983 n 0000 -c 08019281 n 0000 -c 08019523 n 0000 -c 08019913 n 0000 -c 08020242 n 0000 -c 08020785 n 0000 -c 08021129 n 0000 -c 08021464 n 0000 -c 08021785 n 0000 -c 08022259 n 0000 -c 08022666 n 0000 -c 08022972 n 0000 -c 08023374 n 0000 -c 08023843 n 0000 -c 08024096 n 0000 -c 08024408 n 0000 -c 08024732 n 0000 -c 08025112 n 0000 -c 08025497 n 0000 -c 08025835 n 0000 -c 08026197 n 0000 -c 08026539 n 0000 -c 08026904 n 0000 -c 08027314 n 0000 -c 08027518 n 0000 -c 08027920 n 0000 -c 08028148 n 0000 -c 08028397 n 0000 -c 08028623 n 0000 -c 08028999 n 0000 -c 08029421 n 0000 -c 08029784 n 0000 -c 08029908 n 0000 -c 08030481 n 0000 -c 08030711 n 0000 -c 08031020 n 0000 -c 08031386 n 0000 -c 08031663 n 0000 -c 08032023 n 0000 -c 08032594 n 0000 -c 08032955 n 0000 -c 08033194 n 0000 -c 08033454 n 0000 -c 08033829 n 0000 -c 08034028 n 0000 -c 08034299 n 0000 -c 08034579 n 0000 -c 08034778 n 0000 -c 08035233 n 0000 -c 08035601 n 0000 -c 08036005 n 0000 -c 08036293 n 0000 -c 08036849 n 0000 -c 08037118 n 0000 -c 08037503 n 0000 -c 08037861 n 0000 -c 08038131 n 0000 -c 08038379 n 0000 -c 08038748 n 0000 -c 08038995 n 0000 -c 08039312 n 0000 -c 08039601 n 0000 -c 08040008 n 0000 -c 08040257 n 0000 -c 08040522 n 0000 -c 08040762 n 0000 -c 08041106 n 0000 -c 08041484 n 0000 ~i 08041840 n 0000 -c 08042183 n 0000 -c 08042536 n 0000 -c 08042856 n 0000 -c 08043169 n 0000 -c 08043499 n 0000 -c 08043848 n 0000 -c 08044265 n 0000 -c 08044676 n 0000 -c 08045140 n 0000 -c 08045428 n 0000 -c 08045681 n 0000 -c 08046032 n 0000 -c 08046346 n 0000 -c 08046759 n 0000 -c 08047032 n 0000 -c 08048300 n 0000 -c 08125420 n 0000 -c 08206663 n 0000 -c 08211760 n 0000 -c 08244346 n 0000 -c 08245549 n 0000 -c 08246036 n 0000 -c 08358963 n 0000 -c 08392137 n 0000 -c 08422247 n 0000 -c 08994540 n 0000 -c 09781171 n 0000 -c 10155222 n 0000 -c 10610850 n 0000 -c 10673776 n 0000 -c 10702781 n 0000 -c 11078404 n 0000 -c 11201386 n 0000 -c 15260651 n 0000 -c 15300051 n 0000 | the calculated use of violence (or the threat of violence) against civilians in order to attain goals that are political or religious or ideological in nature; this is done through intimidation or coercion or instilling fear -00763132 04 n 02 bioterrorism 0 biological_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism using the weapons of biological warfare -00763282 04 n 01 chemical_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism using the chemical agents of chemical warfare; can undermine the personal security of citizens; "a good agent for chemical terrorism should be colorless and odorless and inexpensive and readily available and not detectable until symptoms are experienced" -00763630 04 n 02 cyber-terrorism 0 cyberwar 0 003 @ 00759694 n 0000 ;c 00759694 n 0000 + 10155222 n 0102 | an assault on electronic communication networks -00763787 04 n 01 domestic_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism practiced in your own country against your own people; "the 1995 bombing of a federal building in Oklahoma City was an instance of domestic terrorism" -00764031 04 n 04 ecoterrorism 0 ecological_terrorism 0 eco-warfare 0 ecological_warfare 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | violence carried out to further the political or social objectives of the environmentalists -00764258 04 n 01 international_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism practiced in a foreign country by terrorists who are not native to that country -00764436 04 n 01 narcoterrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | the financing of terrorist activities by participation in the drug trade -00764588 04 n 01 nuclear_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | the use of a nuclear device by a terrorist organization to cause massive devastation or the use (or threat of use) of fissionable radioactive materials; "assaults on nuclear power plants is one form of nuclear terrorism" -00764891 04 n 01 state-sponsored_terrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism practiced by a government against its own people or in support of international terrorism -00765081 04 n 01 theoterrorism 0 002 @ 00759694 n 0000 ;c 00759694 n 0000 | terrorism for a religious purpose -00765193 04 n 02 terrorization 1 terrorisation 1 004 @ 00745005 n 0000 ;c 00759694 n 0000 + 02506361 v 0202 + 02506361 v 0101 | an act of terrorism -00765343 04 n 01 barratry 0 002 @ 00766234 n 0000 ;c 08441203 n 0000 | the offense of vexatiously persisting in inciting lawsuits and quarrels -00765488 04 n 01 champerty 0 002 @ 00732746 n 0000 ;c 08441203 n 0000 | an unethical agreement between an attorney and client that the attorney would sue and pay the costs of the client's suit in return for a portion of the damages awarded; "soliciting personal injury cases may constitute champerty" -00765791 04 n 02 maintenance 2 criminal_maintenance 0 002 @ 00732746 n 0000 ;c 08441203 n 0000 | the unauthorized interference in a legal action by a person having no interest in it (as by helping one party with money or otherwise to continue the action) so as to obstruct justice or promote unnecessary litigation or unsettle the peace of the community; "unlike champerty, criminal maintenance does not necessarily involve personal profit" -00766234 04 n 06 crime 0 offense 1 criminal_offense 0 criminal_offence 0 offence 1 law-breaking 0 056 @ 00745005 n 0000 ;c 06539178 n 0000 + 02566528 v 0202 + 01402763 a 0101 + 00842989 v 0104 + 02636921 v 0101 + 00842989 v 0103 + 02480923 v 0103 ~ 00765343 n 0000 ~ 00768353 n 0000 ~ 00768483 n 0000 ~ 00768701 n 0000 ~ 00768921 n 0000 ~ 00769092 n 0000 ~ 00769695 n 0000 ~ 00769944 n 0000 ~ 00770151 n 0000 ~ 00770270 n 0000 ~ 00773235 n 0000 ~ 00773814 n 0000 ~ 00774506 n 0000 ~ 00774796 n 0000 ~ 00775006 n 0000 ~ 00782072 n 0000 ~ 00782241 n 0000 ~ 00782338 n 0000 ~ 00782518 n 0000 -c 01471043 v 0000 -c 01471547 v 0000 -c 01471825 v 0000 -c 01472251 v 0000 -c 01472417 v 0000 -c 02241621 v 0000 -c 02241767 v 0000 -c 02241911 v 0000 -c 02242049 v 0000 -c 02242256 v 0000 -c 02244426 v 0000 -c 02245555 v 0000 -c 02246166 v 0000 -c 02246300 v 0000 -c 02256998 v 0000 -c 02261123 v 0000 -c 02277138 v 0000 -c 02277303 v 0000 -c 02277448 v 0000 -c 02277663 v 0000 -c 02277897 v 0000 -c 02278061 v 0000 -c 02278470 v 0000 -c 02284096 v 0000 -c 02284662 v 0000 -c 02284803 v 0000 -c 02345288 v 0000 -c 02345856 v 0000 -c 02355259 v 0000 | (criminal law) an act punishable by law; usually considered an evil act; "a long record of crimes" -00767477 04 n 01 crime 1 003 @ 00745005 n 0000 + 01402763 a 0101 + 02636921 v 0101 | an evil act not necessarily punishable by law; "crimes of the heart" -00767633 04 n 01 inside_job 0 001 @ 00745005 n 0000 | some transgression committed with the assistance of someone trusted by the victim; "the police decided that the crime was an inside job" -00767826 04 n 01 assault 1 005 @ 00773814 n 0000 + 01120069 v 0102 ~ 00768063 n 0000 ~ 00768203 n 0000 ~ 00774009 n 0000 | a threatened or attempted physical attack by someone who appears to be able to cause bodily harm if not stopped -00768063 04 n 01 aggravated_assault 0 001 @ 00767826 n 0000 | a reckless attack with intent to injure seriously (as with a deadly weapon) -00768203 04 n 02 battery 0 assault_and_battery 0 002 @ 00767826 n 0000 ~ 00772550 n 0000 | an assault in which the assailant makes physical contact -00768353 04 n 01 capital_offense 0 001 @ 00766234 n 0000 | a crime so serious that capital punishment is considered appropriate -00768483 04 n 01 cybercrime 0 001 @ 00766234 n 0000 | crime committed using a computer and the internet to steal a person's identity or sell contraband or stalk victims or disrupt operations with malevolent programs -00768701 04 n 01 felony 0 008 @ 00766234 n 0000 + 01402763 a 0102 ~ 00775286 n 0000 ~ 00776165 n 0000 ~ 00776262 n 0000 ~ 00780889 n 0000 ~ 00784388 n 0000 ~ 00785045 n 0000 | a serious crime (such as murder or arson) -00768921 04 n 01 forgery 1 003 @ 00750890 n 0000 @ 00766234 n 0000 + 01654271 v 0101 | criminal falsification by making or altering an instrument with intent to defraud -00769092 04 n 01 fraud 0 012 @ 00766234 n 0000 ~ 00769401 n 0000 ~ 00777069 n 0000 ~ 00777587 n 0000 ~ 00777679 n 0000 ~ 00777806 n 0000 ~ 00778017 n 0000 ~ 00778213 n 0000 ~ 00778575 n 0000 ~ 00778809 n 0000 ~ 00779035 n 0000 ~ 00780148 n 0000 | intentional deception resulting in injury to another person -00769401 04 n 01 barratry 1 002 @ 00769092 n 0000 ;c 08454191 n 0000 | (maritime law) a fraudulent breach of duty by the master of a ship that injures the owner of the ship or its cargo; includes every breach of trust such as stealing or sinking or deserting the ship or embezzling the cargo -00769695 04 n 01 Had_crime 0 002 @ 00766234 n 0000 ;c 06234825 n 0000 | (Islam) serious crimes committed by Muslims and punishable by punishments established in the Koran; "Had crimes include apostasy from Islam and murder and theft and adultery" -00769944 04 n 02 hijack 0 highjack 0 004 @ 00766234 n 0000 + 01471825 v 0203 + 01471825 v 0102 ~ 00227484 n 0000 | seizure of a vehicle in transit either to rob it or divert it to an alternate destination -00770151 04 n 01 mayhem 0 001 @ 00766234 n 0000 | the willful and unlawful crippling or mutilation of another person -00770270 04 n 05 misdemeanor 0 misdemeanour 0 infraction 0 violation 0 infringement 0 008 @ 00766234 n 0000 + 02567147 v 0503 + 02566528 v 0303 ~ 00771713 n 0000 ~ 00772026 n 0000 ~ 00772253 n 0000 ~ 00772381 n 0000 ~ 00772813 n 0000 | a crime less serious than a felony -00770543 04 n 02 violation 4 infringement 1 007 @ 00732746 n 0000 + 02567147 v 0203 + 01993352 v 0202 + 02668523 v 0101 ~ 00770834 n 0000 ~ 00770997 n 0000 ~ 00771604 n 0000 | an act that disregards an agreement or a right; "he claimed a violation of his rights under the Fifth Amendment" -00770834 04 n 02 copyright_infringement 0 infringement_of_copyright 0 002 @ 00770543 n 0000 ~ 00750405 n 0000 | a violation of the rights secured by a copyright -00770997 04 n 01 foul 1 007 @ 00770543 n 0000 ;c 00523513 n 0000 + 01147709 v 0101 + 01147855 v 0101 ~ 00128091 n 0000 ~ 00771198 n 0000 ~ 00771356 n 0000 | an act that violates the rules of a sport -00771198 04 n 01 personal_foul 0 002 @ 00770997 n 0000 ;c 00523513 n 0000 | a foul that involves unnecessarily rough contact (as in basketball or football) -00771356 04 n 02 technical_foul 0 technical 0 002 @ 00770997 n 0000 ;c 00480993 n 0000 | (basketball) a foul that can be assessed on a player or a coach or a team for unsportsmanlike conduct; does not usually involve physical contact during play -00771604 04 n 01 patent_infringement 0 001 @ 00770543 n 0000 | violation of the rights secured by a patent -00771713 04 n 04 disorderly_conduct 0 disorderly_behavior 0 disturbance_of_the_peace 0 breach_of_the_peace 0 001 @ 00770270 n 0000 | any act of molesting, interrupting, hindering, agitating, or arousing from a state of repose or otherwise depriving inhabitants of the peace and quiet to which they are entitled -00772026 04 n 02 false_pretense 0 false_pretence 0 002 @ 00770270 n 0000 ;c 08441203 n 0000 | (law) an offense involving intent to defraud and false representation and obtaining property as a result of that misrepresentation -00772253 04 n 02 indecent_exposure 0 public_nudity 0 001 @ 00770270 n 0000 | vulgar and offensive nakedness in a public place -00772381 04 n 03 perjury 0 bearing_false_witness 0 lying_under_oath 0 002 @ 00770270 n 0000 + 00834745 v 0101 | criminal offense of making false statements under oath -00772550 04 n 01 resisting_arrest 0 003 @ 00974444 n 0000 @ 00768203 n 0000 ;c 08441203 n 0000 | physical efforts to oppose a lawful arrest; the resistance is classified as assault and battery upon the person of the police officer attempting to make the arrest -00772813 04 n 01 sedition 0 004 @ 00770270 n 0000 ;c 08441203 n 0000 + 01897378 a 0106 + 00963283 a 0102 | an illegal action inciting resistance to lawful authority and tending to cause the disruption or overthrow of the government -00773047 04 n 01 molestation 1 002 @ 00774107 n 0000 + 02569495 v 0101 | the act of subjecting someone to unwanted or improper sexual advances or activity (especially women or children) -00773235 04 n 03 perpetration 0 commission 1 committal 1 004 @ 00766234 n 0000 + 02582615 v 0302 + 02582615 v 0202 + 02582615 v 0101 | the act of committing a crime -00773402 04 n 04 rape 0 violation 2 assault 2 ravishment 0 007 @ 00774107 n 0000 + 02567519 v 0402 + 01120069 v 0302 + 02567519 v 0203 + 02567519 v 0101 ~ 00773673 n 0000 ~ 00846961 n 0000 | the crime of forcing a woman to submit to sexual intercourse against her will -00773673 04 n 01 date_rape 0 001 @ 00773402 n 0000 | rape in which the rapist is known to the victim (as when they are on a date together) -00773814 04 n 02 attack 2 attempt 2 003 @ 00766234 n 0000 + 01120069 v 0104 ~ 00767826 n 0000 | the act of attacking; "attacks on women increased last year"; "they made an attempt on his life" -00774009 04 n 01 mugging 0 002 @ 00767826 n 0000 + 02277663 v 0101 | assault with intent to rob -00774107 04 n 04 sexual_assault 0 sexual_abuse 0 sex_crime 0 sex_offense 0 004 @ 00774796 n 0000 ;c 08441203 n 0000 ~ 00773047 n 0000 ~ 00773402 n 0000 | a statutory offense that provides that it is a crime to knowingly cause another person to engage in an unwanted sexual act by force or threat; "most states have replaced the common law definition of rape with statutes defining sexual assault" -00774506 04 n 01 Tazir_crime 0 002 @ 00766234 n 0000 ;c 06234825 n 0000 | (Islam) minor crimes committed by Muslims; crimes that are not mentioned in the Koran so judges are free to punish the offender in any appropriate way; "in some Islamic nations Tazir crimes are set by legislation" -00774796 04 n 04 statutory_offense 0 statutory_offence 0 regulatory_offense 0 regulatory_offence 0 003 @ 00766234 n 0000 ~ 00774107 n 0000 ~ 00775095 n 0000 | crimes created by statutes and not by common law -00775006 04 n 01 thuggery 0 001 @ 00766234 n 0000 | violent or brutal acts as of thugs -00775095 04 n 01 bigamy 0 003 @ 00774796 n 0000 + 01545059 a 0101 + 09853305 n 0101 | the offense of marrying someone while you have a living spouse from whom no valid divorce has occurred -00775286 04 n 02 capture 1 seizure 2 005 @ 00768701 n 0000 + 01213614 v 0201 + 01215421 v 0103 ~ 00775460 n 0000 ~ 00775702 n 0000 | the act of taking of a person by force -00775460 04 n 01 abduction 0 002 @ 00775286 n 0000 + 01471043 v 0103 | the criminal act of capturing and carrying away by force a family member; if a man's wife is abducted it is a crime against the family relationship and against the wife -00775702 04 n 02 kidnapping 0 snatch 2 004 @ 00775286 n 0000 ;c 08441203 n 0000 + 01471043 v 0204 + 01471043 v 0101 | (law) the unlawful act of capturing and carrying away a person against their will and holding them in false imprisonment -00775943 04 n 03 racket 0 fraudulent_scheme 0 illegitimate_enterprise 0 002 @ 00796886 n 0000 + 10503247 n 0101 | an illegal enterprise (such as extortion or fraud or drug peddling or prostitution) carried on for profit -00776165 04 n 01 racketeering 0 002 @ 00768701 n 0000 + 02445788 v 0101 | engaging in a racket -00776262 04 n 02 bribery 0 graft 1 004 @ 00768701 n 0000 + 02284096 v 0101 ~ 00776466 n 0000 ~ 00776581 n 0000 | the practice of offering something (usually money) in order to gain an illicit advantage -00776466 04 n 01 barratry 2 001 @ 00776262 n 0000 | the crime of a judge whose judgment is influenced by bribery -00776581 04 n 01 commercial_bribery 0 001 @ 00776262 n 0000 | bribery of a purchasing agent in order to induce the agent to enter into a transaction -00776732 04 n 05 embezzlement 0 peculation 0 defalcation 0 misapplication 0 misappropriation 0 007 @ 00780889 n 0000 + 02292535 v 0504 + 02292535 v 0302 + 02292535 v 0203 + 02292535 v 0101 ~ 00777324 n 0000 ~ 00777439 n 0000 | the fraudulent appropriation of funds or property entrusted to your care but actually owned by someone else -00777069 04 n 01 identity_theft 0 001 @ 00769092 n 0000 | the co-option of another person's personal information (e.g., name, Social Security number, credit card number, passport) without that person's knowledge and the fraudulent use of such knowledge -00777324 04 n 01 raid 1 002 @ 00776732 n 0000 + 02275152 v 0101 | an attempt by speculators to defraud investors -00777439 04 n 01 plunderage 0 002 @ 00776732 n 0000 + 02345048 v 0102 | the act of plundering (especially the embezzlement of goods on shipboard) -00777587 04 n 01 mail_fraud 0 001 @ 00769092 n 0000 | use of the mails to defraud someone -00777679 04 n 01 election_fraud 0 001 @ 00769092 n 0000 | misrepresentation or alteration of the true results of an election -00777806 04 n 02 constructive_fraud 0 legal_fraud 0 002 @ 00769092 n 0000 ~ 00778405 n 0000 | comprises all acts or omissions or concealments involving breach of equitable or legal duty or trust or confidence -00778017 04 n 02 extrinsic_fraud 0 collateral_fraud 0 001 @ 00769092 n 0000 | fraud that prevents a party from knowing their rights or from having a fair opportunity of presenting them at trial -00778213 04 n 02 fraud_in_fact 0 positive_fraud 0 001 @ 00769092 n 0000 | actual deceit; concealing something or making a false representation with an evil intent to cause injury to another -00778405 04 n 01 fraud_in_law 0 001 @ 00777806 n 0000 | fraud that is presumed from the circumstances although the one who commits it need not have had any evil intent -00778575 04 n 01 fraud_in_the_factum 0 001 @ 00769092 n 0000 | fraud that arises from a disparity between the instrument intended to be executed and the instrument actually executed; e.g., leading someone to sign the wrong contract -00778809 04 n 01 fraud_in_the_inducement 0 001 @ 00769092 n 0000 | fraud which intentionally causes a person to execute and instrument or make an agreement or render a judgment; e.g., misleading someone about the true facts -00779035 04 n 01 intrinsic_fraud 0 001 @ 00769092 n 0000 | fraud (as by use of forged documents or false claims or perjury) that misleads a court or jury and induces a finding for the one perpetrating the fraud -00779248 04 n 0c bunco 0 bunco_game 0 bunko 0 bunko_game 0 con 0 confidence_trick 0 confidence_game 0 con_game 0 gyp 0 hustle 1 sting 0 flimflam 0 006 @ 00780148 n 0000 + 02575723 v 0c01 + 02572119 v 090b + 02572119 v 050f + 02572119 v 0107 ~ 00779599 n 0000 | a swindle in which you cheat at gambling or persuade a person to buy worthless property -00779599 04 n 01 sting_operation 0 001 @ 00779248 n 0000 | a complicated confidence game planned and executed with great care (especially an operation implemented by undercover agents to apprehend criminals) -00779809 04 n 01 pyramiding 0 001 @ 00780148 n 0000 | a fraudulent business practice involving some form of pyramid scheme e.g., the chain of distribution is artificially expanded by an excessive number of distributors selling to other distributors at progressively higher wholesale prices until retail prices are unnecessarily inflated -00780148 04 n 03 swindle 0 cheat 1 rig 0 011 @ 00769092 n 0000 + 02351239 v 0301 + 02573127 v 0301 + 01104624 v 0201 + 02572119 v 0102 ~ 00754280 n 0000 ~ 00779248 n 0000 ~ 00779809 n 0000 ~ 00780466 n 0000 ~ 00780615 n 0000 ~ 00780731 n 0000 | the act of swindling by some fraudulent scheme; "that book is a fraud" -00780466 04 n 01 holdout 0 001 @ 00780148 n 0000 | the act of hiding playing cards in a gambling game so they are available for personal use later -00780615 04 n 01 swiz 0 003 @ 00780148 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | British slang for a swindle -00780731 04 n 02 shell_game 0 thimblerig 0 001 @ 00780148 n 0000 | a swindling sleight-of-hand game; victim guesses which of three things a pellet is under -00780889 04 n 05 larceny 0 theft 0 thievery 0 thieving 0 stealing 0 016 @ 00768701 n 0000 + 02321757 v 0501 + 02322230 v 0403 + 02322230 v 0303 + 10246913 n 0101 + 10246913 n 0102 ~ 00070077 n 0000 ~ 00776732 n 0000 ~ 00781355 n 0000 ~ 00781480 n 0000 ~ 00781685 n 0000 ~ 00782629 n 0000 ~ 00783902 n 0000 ~ 00784083 n 0000 ~ 00784271 n 0000 ~ 00966504 n 0000 | the act of taking something from someone unlawfully; "the thieving is awful at Kennedy International" -00781355 04 n 01 pilferage 0 002 @ 00780889 n 0000 + 02276866 v 0101 | the act of stealing small amounts or small articles -00781480 04 n 02 shoplifting 0 shrinkage 0 002 @ 00780889 n 0000 + 02277303 v 0101 | the act of stealing goods that are on display in a store; "shrinkage is the retail trade's euphemism for shoplifting" -00781685 04 n 01 robbery 0 009 @ 00780889 n 0000 + 02321391 v 0101 ~ 00781912 n 0000 ~ 00782792 n 0000 ~ 00782927 n 0000 ~ 00783063 n 0000 ~ 00783199 n 0000 ~ 00783419 n 0000 ~ 00783762 n 0000 | larceny by threat of violence -00781912 04 n 04 armed_robbery 0 heist 1 holdup 0 stickup 0 004 @ 00781685 n 0000 + 02277448 v 0402 + 02277448 v 0301 + 02571511 v 0204 | robbery at gunpoint -00782072 04 n 03 treason 0 high_treason 0 lese_majesty 0 003 @ 00766234 n 0000 + 00962939 a 0105 + 10722965 n 0102 | a crime that undermines the offender's government -00782241 04 n 01 vice_crime 0 002 @ 00766234 n 0000 ~ 00748155 n 0000 | a vice that is illegal -00782338 04 n 01 victimless_crime 0 001 @ 00766234 n 0000 | an act that is legally a crime but that seem to have no victims; "he considers prostitution to be a victimless crime" -00782518 04 n 01 war_crime 0 001 @ 00766234 n 0000 | a crime committed in wartime; violation of rules of war -00782629 04 n 01 biopiracy 0 001 @ 00780889 n 0000 | biological theft; illegal collection of indigenous plants by corporations who patent them for their own use -00782792 04 n 02 caper 1 job 2 001 @ 00781685 n 0000 | a crime (especially a robbery); "the gang pulled off a bank job in St. Louis" -00782927 04 n 02 dacoity 0 dakoity 0 003 @ 00781685 n 0000 ;r 08900535 n 0000 ;r 08715390 n 0000 | robbery by a gang of armed dacoits -00783063 04 n 02 heist 0 rip-off 0 004 @ 00781685 n 0000 ;u 07157273 n 0000 + 02573275 v 0202 + 02571511 v 0104 | the act of stealing -00783199 04 n 02 highjacking 0 hijacking 0 004 @ 00781685 n 0000 + 01471825 v 0202 + 01471825 v 0103 ~ 00783527 n 0000 | robbery of a traveller or vehicle in transit or seizing control of a vehicle by the use of force -00783419 04 n 01 highway_robbery 0 001 @ 00781685 n 0000 | robbery of travellers on or near a public road -00783527 04 n 02 piracy 0 buccaneering 0 002 @ 00783199 n 0000 + 01471825 v 0104 | hijacking on the high seas or in similar contexts; taking a ship or plane away from the control of those who are legally entitled to it; "air piracy" -00783762 04 n 01 rolling 1 001 @ 00781685 n 0000 | the act of robbing a helpless person; "he was charged with rolling drunks in the park" -00783902 04 n 02 grand_larceny 0 grand_theft 0 002 @ 00780889 n 0000 ! 00784083 n 0101 | larceny of property having a value greater than some amount (the amount varies by locale) -00784083 04 n 03 petit_larceny 0 petty_larceny 0 petty 0 002 @ 00780889 n 0000 ! 00783902 n 0101 | larceny of property having a value less than some amount (the amount varies by locale) -00784271 04 n 01 skimming 1 001 @ 00780889 n 0000 | failure to declare income in order to avoid paying taxes on it -00784388 04 n 01 extortion 0 006 @ 00768701 n 0000 + 09858299 n 0103 + 02241107 v 0101 ~ 00784598 n 0000 ~ 00784755 n 0000 ~ 00784934 n 0000 | the felonious act of extorting money (as by threats of violence) -00784598 04 n 01 blackmail 0 003 @ 00784388 n 0000 + 02581073 v 0101 + 02241767 v 0101 | extortion of money by threats to divulge discrediting information -00784755 04 n 02 protection 1 tribute 2 001 @ 00784388 n 0000 | payment extorted by gangsters on threat of violence; "every store in the neighborhood had to pay him protection" -00784934 04 n 01 shakedown 0 002 @ 00784388 n 0000 ;u 07157273 n 0000 | extortion of money (as by blackmail) -00785045 04 n 01 burglary 0 005 @ 00768701 n 0000 + 03051889 a 0101 + 02571511 v 0103 + 02571511 v 0101 ~ 00785263 n 0000 | entering a building unlawfully with intent to commit a felony or to steal valuable property -00785263 04 n 03 housebreaking 0 break-in 0 breaking_and_entering 0 003 @ 00785045 n 0000 + 02570684 v 0201 ~ 00785482 n 0000 | trespassing for an unlawful purpose; illegal entrance into premises with criminal intent -00785482 04 n 01 home_invasion 0 001 @ 00785263 n 0000 | burglary of a dwelling while the residents are at home -00785596 04 n 01 joint_venture 0 002 @ 00797878 n 0000 ~ 00785818 n 0000 | a venture by a partnership or conglomerate designed to share risk or expertise; "a joint venture between the film companies to produce TV shows" -00785818 04 n 01 foreign_direct_investment 1 001 @ 00785596 n 0000 | a joint venture between a foreign company and a United States company -00785959 04 n 01 experiment 1 001 @ 00797878 n 0000 | a venture at something new or different; "as an experiment he decided to grow a beard" -00786102 04 n 01 forlorn_hope 0 001 @ 00796886 n 0000 | a hopeless or desperate enterprise -00786195 04 n 05 attempt 0 effort 0 endeavor 0 endeavour 0 try 0 024 @ 00407535 n 0000 + 02530167 v 0501 + 02531199 v 0402 + 02531199 v 0301 + 02530167 v 0103 ~ 00126584 n 0000 ~ 00127531 n 0000 ~ 00127672 n 0000 ~ 00786887 n 0000 ~ 00787061 n 0000 ~ 00787218 n 0000 ~ 00787307 n 0000 ~ 00787465 n 0000 ~ 00787832 n 0000 ~ 00788007 n 0000 ~ 00788097 n 0000 ~ 00788362 n 0000 ~ 00788473 n 0000 ~ 00788632 n 0000 ~ 00788766 n 0000 ~ 00788973 n 0000 ~ 00790205 n 0000 ~ 00791078 n 0000 ~ 00794367 n 0000 | earnest and conscientious activity intended to do or accomplish something; "made an effort to cover all the reading material"; "wished him luck in his endeavor"; "she gave it a good try" -00786887 04 n 02 bid 0 play 3 002 @ 00786195 n 0000 + 02240674 v 0101 | an attempt to get something; "they made a futile play for power"; "he made a bid to gain attention" -00787061 04 n 06 crack 1 fling 1 go 1 pass 1 whirl 0 offer 1 001 @ 00786195 n 0000 | a usually brief attempt; "he took a crack at it"; "I gave it a whirl" -00787218 04 n 01 essay 0 002 @ 00786195 n 0000 + 02530167 v 0104 | a tentative attempt -00787307 04 n 01 foray 1 001 @ 00786195 n 0000 | an initial attempt (especially outside your usual areas of competence); "scientists' forays into politics" -00787465 04 n 03 contribution 2 part 3 share 1 003 @ 00786195 n 0000 + 02308741 v 0101 ~ 00787727 n 0000 | the part played by a person in bringing about a result; "I am proud of my contribution in advancing the project"; "they all did their share of the work" -00787727 04 n 01 end 0 001 @ 00787465 n 0000 | the part you are expected to play; "he held up his end" -00787832 04 n 01 liberation 0 003 @ 00786195 n 0000 + 02497400 v 0102 + 02497062 v 0101 | the attempt to achieve equal rights or status; "she worked for women's liberation" -00788007 04 n 01 mug's_game 0 001 @ 00786195 n 0000 | a futile or unprofitable endeavor -00788097 04 n 03 power_play 0 squeeze_play 1 squeeze 1 003 @ 00786195 n 0000 + 02241107 v 0302 + 02504562 v 0303 | an aggressive attempt to compel acquiescence by the concentration or manipulation of power; "she laughed at this sexual power play and walked away" -00788362 04 n 01 seeking 1 002 @ 00786195 n 0000 + 02240481 v 0101 | an attempt to acquire or gain something -00788473 04 n 02 shot 4 stab 1 001 @ 00786195 n 0000 | informal words for any attempt or effort; "he gave it his best shot"; "he took a stab at forecasting" -00788632 04 n 01 shot 8 004 @ 00786195 n 0000 ~ 00110057 n 0000 ~ 01264795 n 0000 ~ 01264933 n 0000 | an attempt to score in a game -00788766 04 n 04 striving 0 nisus 0 pains 0 strain 0 006 @ 00786195 n 0000 + 00837977 a 0403 + 01165579 v 0401 + 01146051 v 0403 + 02531199 v 0103 ~ 00996513 n 0000 | an effortful attempt to attain a goal -00788973 04 n 02 struggle 1 battle 1 005 @ 00786195 n 0000 + 02407338 v 0102 ~ 00789237 n 0000 ~ 00789391 n 0000 ~ 07472460 n 0000 | an energetic attempt to achieve something; "getting through the crowd was a real struggle"; "he fought a battle for recognition" -00789237 04 n 01 duel 1 003 @ 00788973 n 0000 + 10038929 n 0104 + 10038929 n 0103 | any struggle between two skillful opponents (individuals or groups) -00789391 04 n 02 scramble 1 scuffle 1 003 @ 00788973 n 0000 + 01504480 v 0201 + 01472807 v 0101 | an unceremonious and disorganized struggle -00789534 04 n 01 buyout 0 005 @ 00077419 n 0000 + 02274299 v 0102 ~ 00175174 n 0000 ~ 00789735 n 0000 ~ 00789906 n 0000 | acquisition of a company by purchasing a controlling percentage of its stock -00789735 04 n 01 strategic_buyout 0 001 @ 00789534 n 0000 | an acquisition based on analysis of the benefits of consolidation in anticipation of increased earning power -00789906 04 n 01 takeover 1 004 @ 00789534 n 0000 + 02274299 v 0101 ~ 00790817 n 0000 ~ 00790947 n 0000 | a change by sale or merger in the controlling interest of a corporation -00790086 04 n 01 anti-takeover_defense 0 001 @ 00202284 n 0000 | resistance to or defense against a hostile takeover -00790205 04 n 01 takeover_attempt 0 003 @ 00786195 n 0000 ~ 00174782 n 0000 ~ 00174950 n 0000 | an attempt to take control of a corporation -00790347 04 n 01 takeover_bid 0 003 @ 07166101 n 0000 ~ 00790498 n 0000 ~ 00790677 n 0000 | an offer to buy shares in order to take over the company -00790498 04 n 01 two-tier_bid 0 001 @ 00790347 n 0000 | a takeover bid where the acquirer offers to pay more for the shares needed to gain control than for the remaining shares -00790677 04 n 01 any-and-all_bid 0 001 @ 00790347 n 0000 | a takeover bid where the acquirer offers to buy any and all shares outstanding -00790817 04 n 01 hostile_takeover 0 001 @ 00789906 n 0000 | a takeover that is resisted by the management of the target company -00790947 04 n 01 friendly_takeover 0 001 @ 00789906 n 0000 | a takeover that is welcomed by the management of the target company -00791078 04 n 03 test 0 trial 0 run 6 014 @ 00786195 n 0000 + 00539110 v 0303 + 00920778 v 0101 + 02745713 v 0101 ~ 00791527 n 0000 ~ 00792356 n 0000 ~ 00793844 n 0000 ~ 00794123 n 0000 ~ 00794614 n 0000 ~ 00794870 n 0000 ~ 00795008 n 0000 ~ 00795161 n 0000 ~ 00795352 n 0000 ~ 05747056 n 0000 | the act of testing something; "in the experimental trials the amount of carbon was measured separately"; "he called each flip of the coin a new trial" -00791527 04 n 01 assay 0 006 @ 00791078 n 0000 + 00694974 v 0101 ~ 00791875 n 0000 ~ 00792142 n 0000 ~ 05739043 n 0000 ~ 05740300 n 0000 | a quantitative or qualitative test of a substance (especially an ore or a drug) to determine its components; frequently used to test for the presence or concentration of infectious agents or antibodies etc. -00791875 04 n 02 enzyme-linked-immunosorbent_serologic_assay 0 ELISA 0 001 @ 00791527 n 0000 | an assay that relies on an enzymatic conversion reaction and is used to detect the presence of specific substances (such as enzymes or viruses or antibodies or bacteria) -00792142 04 n 01 immunohistochemistry 0 001 @ 00791527 n 0000 | an assay that shows specific antigens in tissues by the use of markers that are either fluorescent dyes or enzymes (such as horseradish peroxidase) -00792356 04 n 02 clinical_trial 0 clinical_test 0 005 @ 00791078 n 0000 ~ 00792720 n 0000 ~ 00792954 n 0000 ~ 00793212 n 0000 ~ 00793529 n 0000 | a rigorously controlled test of a new drug or a new invasive medical device on human subjects; in the United States it is conducted under the direction of the FDA before being made available for general clinical use -00792720 04 n 02 phase_I_clinical_trial 0 phase_I 0 001 @ 00792356 n 0000 | a clinical trial on a few persons to determine the safety of a new drug or invasive medical device; for drugs, dosage or toxicity limits should be obtained -00792954 04 n 02 phase_II_clinical_trial 0 phase_II 0 001 @ 00792356 n 0000 | a clinical trial on more persons than in phase I; intended to evaluate the efficacy of a treatment for the condition it is intended to treat; possible side effects are monitored -00793212 04 n 02 phase_III_clinical_trial 0 phase_III 0 001 @ 00792356 n 0000 | a large clinical trial of a treatment or drug that in phase I and phase II has been shown to be efficacious with tolerable side effects; after successful conclusion of these clinical trials it will receive formal approval from the FDA -00793529 04 n 02 phase_IV_clinical_trial 0 phase_IV 0 001 @ 00792356 n 0000 | sometimes the FDA approves a drug for general use but requires the manufacturer to continue to monitor its effects; during this phase the drug may be tried on slightly different patient populations than those studied in earlier trials -00793844 04 n 01 double_blind 0 001 @ 00791078 n 0000 | a test procedure in which the identity of those receiving the intervention is concealed from both the administrators and the subjects until after the test is completed; designed to reduce or eliminate bias in the results -00794123 04 n 03 preclinical_trial 0 preclinical_test 0 preclinical_phase 0 001 @ 00791078 n 0000 | a laboratory test of a new drug or a new invasive medical device on animal subjects; conducted to gather evidence justifying a clinical trial -00794367 04 n 02 test 3 trial 3 005 @ 00786195 n 0000 + 02531625 v 0203 + 00669970 v 0101 + 01112584 v 0101 + 00786458 v 0102 | the act of undergoing testing; "he survived the great test of battle"; "candidates must compete in a trial of skill" -00794614 04 n 02 audition 1 tryout 0 004 @ 00791078 n 0000 + 01718535 v 0202 + 01718535 v 0101 ~ 00794772 n 0000 | a test of the suitability of a performer -00794772 04 n 01 screen_test 0 001 @ 00794614 n 0000 | a filmed audition of an actor or actress -00794870 04 n 01 field_trial 0 001 @ 00791078 n 0000 | a test of young hunting dogs to determine their skill in pointing and retrieving -00795008 04 n 03 fitting 0 try-on 0 trying_on 0 003 @ 00791078 n 0000 + 02659763 v 0101 + 00047317 v 0201 | putting clothes on to see whether they fit -00795161 04 n 03 MOT 0 MOT_test 0 Ministry_of_Transportation_test 0 002 @ 00791078 n 0000 ;r 08860123 n 0000 | a compulsory annual test of older motor vehicles for safety and exhaust fumes -00795352 04 n 02 pilot_project 0 pilot_program 0 001 @ 00791078 n 0000 | activity planned as a test or trial; "they funded a pilot project in six states" -00795508 04 n 01 spadework 0 001 @ 00575741 n 0000 | dull or routine preliminary work preparing for an undertaking -00795625 04 n 01 timework 0 001 @ 00575741 n 0000 | work paid for at a rate per unit of time -00795720 04 n 04 undertaking 0 project 0 task 1 labor 1 018 @ 00575741 n 0000 + 02419773 v 0401 + 02406916 v 0402 + 02392600 v 0301 + 01638368 v 0202 + 01651293 v 0101 ~ 00575365 n 0000 ~ 00796315 n 0000 ~ 00796586 n 0000 ~ 00796767 n 0000 ~ 00796886 n 0000 ~ 00797207 n 0000 ~ 00797361 n 0000 ~ 00797468 n 0000 ~ 00797581 n 0000 ~ 00797723 n 0000 ~ 00797878 n 0000 ~i 00820232 n 0000 | any piece of work that is undertaken or attempted; "he prepared for great undertakings" -00796197 04 n 02 written_assignment 0 writing_assignment 0 001 @ 00796586 n 0000 | an assignment to write something -00796315 04 n 04 adventure 0 escapade 1 risky_venture 0 dangerous_undertaking 0 007 @ 00795720 n 0000 + 02606393 a 0101 + 00065791 a 0101 + 10072708 n 0102 + 09606009 n 0101 + 02545272 v 0103 + 02544348 v 0106 | a wild and exciting undertaking (not necessarily lawful) -00796586 04 n 01 assignment 3 004 @ 00795720 n 0000 + 00677683 v 0101 ~ 00728641 n 0000 ~ 00796197 n 0000 | an undertaking that you have been assigned to do (as by an instructor) -00796767 04 n 01 baby 0 001 @ 00795720 n 0000 | a project of personal concern to someone; "this project is his baby" -00796886 04 n 03 enterprise 0 endeavor 1 endeavour 1 007 @ 00795720 n 0000 + 02531199 v 0302 + 02531199 v 0201 + 10060352 n 0102 ~ 00775943 n 0000 ~ 00786102 n 0000 ~ 01095753 n 0000 | a purposeful or industrious undertaking (especially one that requires effort or boldness); "he had doubts about the whole enterprise" -00797207 04 n 02 labor_of_love 0 labour_of_love 0 001 @ 00795720 n 0000 | productive work performed voluntarily without material reward or compensation -00797361 04 n 02 marathon 0 endurance_contest 0 001 @ 00795720 n 0000 | any long and arduous undertaking -00797468 04 n 01 no-brainer 0 002 @ 00795720 n 0000 ;u 07075172 n 0000 | anything that requires little thought -00797581 04 n 01 proposition 0 001 @ 00795720 n 0000 | a task to be dealt with; "securing adequate funding is a time-consuming proposition" -00797723 04 n 02 tall_order 0 large_order 0 001 @ 00795720 n 0000 | a formidable task or requirement; "finishing in time was a tall order but we did it" -00797878 04 n 01 venture 0 007 @ 00795720 n 0000 + 02373336 v 0101 ~ 00785596 n 0000 ~ 00785959 n 0000 ~ 00798245 n 0000 ~ 00801966 n 0000 ~ 00802238 n 0000 | any venturesome undertaking especially one with an uncertain outcome -00798108 04 n 02 speleology 0 spelaeology 0 003 @ 00432689 n 0000 + 10460286 n 0204 + 10460286 n 0103 | the pastime of exploring caves -00798245 04 n 06 campaign 2 cause 1 crusade 0 drive 2 movement 3 effort 3 020 @ 00797878 n 0000 + 01026975 v 0401 + 02406916 v 0405 + 01646300 v 0401 + 01506157 v 0402 + 01516534 v 0402 + 02589576 v 0301 + 02589576 v 0104 ~ 00798959 n 0000 ~ 00799125 n 0000 ~ 00799236 n 0000 ~ 00799409 n 0000 ~ 00799537 n 0000 ~ 00800270 n 0000 ~ 00800421 n 0000 ~ 00800657 n 0000 ~ 00800825 n 0000 ~ 00800940 n 0000 ~ 00801125 n 0000 ~ 00801277 n 0000 | a series of actions advancing a principle or tending toward a particular end; "he supported populist campaigns"; "they worked in the cause of world peace"; "the team was ready for a drive toward the pennant"; "the movement to end slavery"; "contributed to the war effort" -00798959 04 n 03 advertising_campaign 0 ad_campaign 0 ad_blitz 0 003 @ 00798245 n 0000 ~ 00801724 n 0000 ~ 00801834 n 0000 | an organized program of advertisements -00799125 04 n 01 anti-war_movement 0 001 @ 00798245 n 0000 | a campaign against entering or continuing a war -00799236 04 n 01 charm_campaign 0 001 @ 00798245 n 0000 | a campaign of flattery and friendliness (by a company, politician, etc.) to become more popular and gain support -00799409 04 n 01 consumerism 0 001 @ 00798245 n 0000 | a movement advocating greater protection of the interests of consumers -00799537 04 n 05 campaigning 0 candidacy 0 candidature 0 electioneering 0 political_campaign 0 007 @ 00798245 n 0000 + 02414473 v 0401 %p 00749232 n 0000 ~ 00799809 n 0000 ~ 00800121 n 0000 ~ 00801450 n 0000 ~ 00801598 n 0000 | the campaign of a candidate to be elected -00799809 04 n 02 front-porch_campaigning 0 front-porch_campaign 0 001 @ 00799537 n 0000 | a campaign in which the candidate makes speeches but does not travel; "William McKinley's dignified front-porch campaign won him the presidency in 1896"; "her approach was the opposite of a passive front-porch campaign" -00800121 04 n 01 hustings 0 002 @ 00799537 n 0000 ;u 06295235 n 0000 | the activities involved in political campaigning (especially speech making) -00800270 04 n 03 fund-raising_campaign 0 fund-raising_drive 0 fund-raising_effort 0 001 @ 00798245 n 0000 | a campaign to raise money for some cause -00800421 04 n 04 feminist_movement 0 feminism 0 women's_liberation_movement 0 women's_lib 0 005 @ 00798245 n 0000 + 10084635 n 0403 + 10084635 n 0303 + 10084635 n 0201 %m 10084635 n 0000 | the movement aimed at equal rights for women -00800657 04 n 02 gay_liberation_movement 0 gay_lib 0 001 @ 00798245 n 0000 | the movement aimed at liberating homosexuals from legal or social or economic oppression -00800825 04 n 01 lost_cause 0 001 @ 00798245 n 0000 | a defeated cause or a cause for which defeat is inevitable -00800940 04 n 01 reform 1 002 @ 00798245 n 0000 + 00265386 v 0101 | a campaign aimed to correct abuses or malpractices; "the reforms he proposed were too radical for the politicians" -00801125 04 n 01 war 1 001 @ 00798245 n 0000 | a concerted campaign to end something that is injurious; "the war on poverty"; "the war against crime" -00801277 04 n 02 youth_movement 0 youth_crusade 0 001 @ 00798245 n 0000 | political or religious or social reform movement or agitation consisting chiefly of young people -00801450 04 n 01 whispering_campaign 0 001 @ 00799537 n 0000 | the organized dissemination of derogatory rumors designed to discredit a candidate -00801598 04 n 01 stumping 0 001 @ 00799537 n 0000 | campaigning for something by making political speeches (stump speeches) -00801724 04 n 01 sales_campaign 0 001 @ 00798959 n 0000 | an advertising campaign intended to promote sales -00801834 04 n 01 public-relations_campaign 0 001 @ 00798959 n 0000 | an advertising campaign intended to improve public relations -00801966 04 n 02 sally 1 sallying_forth 0 001 @ 00797878 n 0000 | a venture off the beaten path; "a sally into the wide world beyond his home" -00802111 04 n 01 self-help 0 001 @ 01207609 n 0000 | the act of helping or improving yourself without relying on anyone else -00802238 04 n 03 risk 0 peril 0 danger 0 010 @ 00797878 n 0000 + 02060496 a 0202 + 01036319 v 0205 + 02274537 a 0102 + 02059811 a 0102 + 02544348 v 0103 + 02545578 v 0101 ~ 00802629 n 0000 ~ 00802785 n 0000 ~ 00802962 n 0000 | a venture undertaken without regard to possible loss or injury; "he saw the rewards but not the risks of crime"; "there was a danger he would do the wrong thing" -00802629 04 n 01 chance 0 003 @ 00802238 n 0000 + 02059381 a 0101 + 02544348 v 0102 | a risk involving danger; "you take a chance when you let her drive" -00802785 04 n 01 crapshoot 1 002 @ 00802238 n 0000 ;u 07075172 n 0000 | a risky and uncertain venture; "getting admitted to the college of your choice has become a crapshoot" -00802962 04 n 01 gamble 0 004 @ 00802238 n 0000 + 02544348 v 0101 ~ 00803091 n 0000 ~ 00803208 n 0000 | a risky act or venture -00803091 04 n 01 long_shot 0 001 @ 00802962 n 0000 | a venture that involves great risk but promises great rewards -00803208 04 n 01 raise 1 004 @ 00802962 n 0000 ;c 00494768 n 0000 + 01156406 v 0101 ~ 00803394 n 0000 | increasing the size of a bet (as in poker); "I'll see your raise and double it" -00803394 04 n 02 doubling 1 double 1 005 @ 00803208 n 0000 #p 00488225 n 0000 + 02217241 a 0201 + 02300425 v 0201 + 00246217 v 0101 | raising the stakes in a card game by a factor of 2; "I decided his double was a bluff" -00803617 04 n 01 control 0 023 @ 00407535 n 0000 + 01803936 v 0103 ~ 00420712 n 0000 ~ 00804180 n 0000 ~ 00804271 n 0000 ~ 00804379 n 0000 ~ 00804535 n 0000 ~ 00804708 n 0000 ~ 00804909 n 0000 ~ 00805034 n 0000 ~ 00806075 n 0000 ~ 00806902 n 0000 ~ 00809465 n 0000 ~ 00809702 n 0000 ~ 00811036 n 0000 ~ 00812154 n 0000 ~ 00812274 n 0000 ~ 00815173 n 0000 ~ 00815320 n 0000 ~ 01069578 n 0000 ~ 01070432 n 0000 ~ 01070708 n 0000 ~ 01145359 n 0000 | the activity of managing or exerting control over something; "the control of the mob by the police was admirable" -00804180 04 n 01 crowd_control 0 001 @ 00803617 n 0000 | activity of controlling a crowd -00804271 04 n 01 damage_control 0 001 @ 00803617 n 0000 | an effort to minimize or curtail damage or loss -00804379 04 n 02 federalization 0 federalisation 0 003 @ 00803617 n 0000 + 00504464 v 0202 + 00504464 v 0101 | the act of being put under federal control -00804535 04 n 01 flight_control 0 001 @ 00803617 n 0000 | control from ground stations of airplanes in flight by means of messages transmitted to the pilot electronically -00804708 04 n 01 flood_control 0 002 @ 00803617 n 0000 ;c 06125041 n 0000 | (engineering) the art or technique of trying to control rivers with dams etc in order to minimize the occurrence of floods -00804909 04 n 01 imperialism 0 002 @ 00803617 n 0000 + 03074368 a 0101 | any instance of aggressive extension of authority -00805034 04 n 02 regulation 0 regulating 0 008 @ 00803617 n 0000 + 02511551 v 0201 + 00701040 v 0105 ~ 00805524 n 0000 ~ 00805766 n 0000 ~ 00805868 n 0000 ~ 00807078 n 0000 ~ 00808182 n 0000 | the act of controlling or directing according to rule; "fiscal regulations are in the hands of politicians" -00805337 04 n 02 deregulation 0 deregulating 0 003 @ 00095502 n 0000 + 02512005 v 0201 + 02512005 v 0101 | the act of freeing from regulation (especially from governmental regulations) -00805524 04 n 01 devaluation 1 004 @ 00805034 n 0000 + 00315020 v 0103 + 00315020 v 0104 + 00493703 v 0101 | an official lowering of a nation's currency; a decrease in the value of a country's currency relative to that of foreign countries -00805766 04 n 01 gun_control 0 001 @ 00805034 n 0000 | efforts to regulate or control sales of guns -00805868 04 n 01 indexation 0 002 @ 00805034 n 0000 + 00702434 v 0101 | a system of economic regulation: wages and interest are tied to the cost-of-living index in order to reduce the effects of inflation -00806075 04 n 01 internal_control 0 005 @ 00803617 n 0000 ;c 05662532 n 0000 ~ 00619889 n 0000 ~ 00806366 n 0000 ~ 00806484 n 0000 | an accounting procedure or system designed to promote efficiency or assure the implementation of a policy or safeguard assets or avoid fraud and error etc. -00806366 04 n 01 management_control 0 001 @ 00806075 n 0000 | an internal control performed by one or more managers -00806484 04 n 01 quality_control 0 002 @ 00806075 n 0000 ~ 00806621 n 0000 | maintenance of standards of quality of manufactured goods -00806621 04 n 01 acceptance_sampling 0 002 @ 00806484 n 0000 @ 06026635 n 0000 | a statistical procedure for accepting or rejecting a batch of merchandise or documents; involves determining the maximum number of defects discovered in a sample before the entire batch is rejected -00806902 04 n 03 regulation 1 regularization 0 regularisation 0 003 @ 00803617 n 0000 + 00275607 v 0302 + 02511551 v 0101 | the act of bringing to uniformity; making regular -00807078 04 n 01 timing 0 002 @ 00805034 n 0000 ~ 00807273 n 0000 | the regulation of occurrence, pace, or coordination to achieve a desired effect (as in music, theater, athletics, mechanics) -00807273 04 n 01 coordination 0 006 @ 00807078 n 0000 + 02438228 v 0101 + 02437905 v 0101 + 00466053 v 0103 ~ 00807500 n 0000 ~ 00807925 n 0000 | the regulation of diverse elements into an integrated and harmonious operation -00807500 04 n 03 synchronization 0 synchronisation 0 synchronizing 0 004 @ 00807273 n 0000 + 00393953 v 0301 + 00393953 v 0202 + 00393953 v 0101 | coordinating by causing to indicate the same time; "the synchronization of their watches was an important preliminary" -00807768 04 n 01 load-shedding 0 001 @ 00808182 n 0000 | cutting off the electric current on certain lines when the demand becomes greater than the supply -00807925 04 n 01 proration 0 003 @ 00807273 n 0000 + 00639331 v 0101 + 00639148 v 0101 | the proportional limitation of production or distribution of something (e.g. crude oil or natural gas) to some fractional part of the total capacity of each producer -00808182 04 n 02 limitation 0 restriction 0 011 @ 00805034 n 0000 + 02509287 v 0201 + 00236592 v 0201 + 00233335 v 0201 + 00233335 v 0104 + 00235368 v 0101 ~ 00807768 n 0000 ~ 00808485 n 0000 ~ 00808614 n 0000 ~ 00808767 n 0000 ~ 00808967 n 0000 | an act of limiting or restricting (as by regulation) -00808485 04 n 01 arms_control 0 001 @ 00808182 n 0000 | a limitation on the size and armament of the armed forces of a country -00808614 04 n 01 hold-down 0 002 @ 00808182 n 0000 + 00235763 v 0101 | a limitation or constraint; "taxpayers want a hold-down on government spending" -00808767 04 n 01 freeze 2 005 @ 00808182 n 0000 + 00269423 v 0101 ~ 00809201 n 0000 ~ 00809279 n 0000 ~ 00809373 n 0000 | fixing (of prices or wages etc) at a particular level; "a freeze on hiring" -00808967 04 n 01 clampdown 0 002 @ 00808182 n 0000 + 00418921 v 0101 | sudden restriction on an activity -00809074 04 n 01 hire 0 001 @ 00030358 n 0000 | the act of hiring something or someone; "he signed up for a week's car hire" -00809201 04 n 01 hiring_freeze 0 001 @ 00808767 n 0000 | a freeze on hiring -00809279 04 n 01 price_freeze 0 001 @ 00808767 n 0000 | a freeze of prices at a given level -00809373 04 n 01 wage_freeze 0 001 @ 00808767 n 0000 | a freeze of wages at a given level -00809465 04 n 02 possession 0 ownership 0 008 @ 00803617 n 0000 + 10389398 n 0201 + 10388924 n 0201 + 02204692 v 0103 ~ 00809886 n 0000 ~ 00810026 n 0000 ~ 00810234 n 0000 ~ 00810598 n 0000 | the act of having and controlling property -00809702 04 n 01 possession 1 002 @ 00803617 n 0000 ;c 00523513 n 0000 | (sport) the act of controlling the ball (or puck); "they took possession of the ball on their own goal line" -00809886 04 n 01 actual_possession 0 002 @ 00809465 n 0000 ;c 08441203 n 0000 | (law) immediate and direct physical control over property -00810026 04 n 01 constructive_possession 0 002 @ 00809465 n 0000 ;c 08441203 n 0000 | (law) having the power and intention to have and control property but without direct control or actual presence upon it -00810234 04 n 01 criminal_possession 0 003 @ 00809465 n 0000 ;c 08441203 n 0000 ~ 00810498 n 0000 | (law) possession for which criminal sanctions are provided because the property may not lawfully be possessed or may not be possessed under certain circumstances -00810498 04 n 01 illegal_possession 0 001 @ 00810234 n 0000 | possession of controlled substances -00810598 04 n 03 retention 0 keeping 2 holding 0 006 @ 00809465 n 0000 + 02283324 v 0302 + 02202384 v 0201 + 02283324 v 0101 ~ 00810794 n 0000 ~ 00811355 n 0000 | the act of retaining something -00810794 04 n 01 withholding 1 002 @ 00810598 n 0000 + 02213690 v 0101 | the act of holding back or keeping within your possession or control; "I resented his withholding permission"; "there were allegations of the withholding of evidence" -00811036 04 n 01 power_trip 0 002 @ 00803617 n 0000 ;u 07157273 n 0000 | (slang) a self-aggrandizing action undertaken simply for the pleasure of exercising control over other people -00811221 04 n 02 defecation_reflex 0 rectal_reflex 0 001 @ 00863513 n 0000 | normal response to the presence of feces in the rectum -00811355 04 n 01 storage 1 004 @ 00810598 n 0000 + 02282506 v 0101 + 02281093 v 0101 ~ 00811491 n 0000 | the act of storing something -00811491 04 n 01 filing 0 002 @ 00811355 n 0000 + 01001643 v 0101 | preservation and methodical arrangement as of documents and papers etc.; "I have some filing to do" -00811661 04 n 01 storage 0 004 @ 01094725 n 0000 ~ 00811825 n 0000 ~ 00811921 n 0000 ~ 00812055 n 0000 | the commercial enterprise of storing goods and materials -00811825 04 n 01 cold_storage 0 001 @ 00811661 n 0000 | refrigerated storage for preservation -00811921 04 n 02 stowage 0 stowing 0 003 @ 00811661 n 0000 + 01493234 v 0201 + 01493234 v 0101 | the act of packing or storing away -00812055 04 n 01 tankage 0 002 @ 00811661 n 0000 + 02282082 v 0101 | the act of storing in tanks -00812154 04 n 02 riot_control 0 riot_control_operation 0 001 @ 00803617 n 0000 | the measures taken to control a riot -00812274 04 n 04 grasping 0 taking_hold 0 seizing 0 prehension 0 006 @ 00803617 n 0000 + 01212572 v 0402 + 01212572 v 0301 + 00029933 a 0104 + 01216004 v 0101 ~ 00812526 n 0000 | the act of gripping something firmly with the hands (or the tentacles) -00812526 04 n 07 clasp 0 clench 0 clutch 0 clutches 0 grasp 0 grip 0 hold 0 013 @ 00812274 n 0000 + 01216670 v 0701 + 01574292 v 0602 + 01224001 v 0601 + 01216004 v 0501 + 01220303 v 0304 + 01212572 v 0303 + 01572978 v 0201 + 01222328 v 0101 + 01216522 v 0101 ~ 00417131 n 0000 ~ 00417397 n 0000 ~ 00812977 n 0000 | the act of grasping; "he released his clasp on my arm"; "he has a strong grip for an old man"; "she kept a firm hold on the railing" -00812977 04 n 01 wrestling_hold 0 009 @ 00812526 n 0000 #p 00447540 n 0000 ~ 00813220 n 0000 ~ 00813336 n 0000 ~ 00814274 n 0000 ~ 00814458 n 0000 ~ 00814665 n 0000 ~ 00814899 n 0000 ~ 00815036 n 0000 | a hold used in the sport of wrestling -00813220 04 n 01 bear_hug 0 001 @ 00812977 n 0000 | a wrestling hold with arms locked tightly around the opponent -00813336 04 n 01 nelson 0 003 @ 00812977 n 0000 ~ 00813571 n 0000 ~ 00813800 n 0000 | any of several wrestling holds in which an arm is passed under the opponent's arm from behind and the hand exerts pressure on the back of the neck -00813571 04 n 01 full_nelson 0 002 @ 00813336 n 0000 ;c 00447540 n 0000 | a wrestling hold in which the holder puts both arms under the opponent's arms and exerts pressure on the back of the neck (illegal in amateur wrestling) -00813800 04 n 01 half_nelson 0 001 @ 00813336 n 0000 | a wrestling hold in which the holder puts an arm under the opponent's arm and exerts pressure on the back of the neck -00813975 04 n 01 hammerlock 0 001 @ 00814458 n 0000 | a wrestling hold in which the opponent's arm is twisted up behind his back -00814106 04 n 01 headlock 0 001 @ 00814458 n 0000 | a wrestling hold in which the opponent's head is locked between the crook of your elbow and the side of your body -00814274 04 n 01 Japanese_stranglehold 0 001 @ 00812977 n 0000 | a wrestling hold in which the opponent's arms are crossed in front of his own neck to exert pressure on his windpipe -00814458 04 n 01 lock 0 005 @ 00812977 n 0000 + 01606018 v 0102 + 01606736 v 0101 ~ 00813975 n 0000 ~ 00814106 n 0000 | any wrestling hold in which some part of the opponent's body is twisted or pressured -00814665 04 n 05 scissors 0 scissors_hold 0 scissor_hold 0 scissor_grip 0 scissors_grip 0 001 @ 00812977 n 0000 | a wrestling hold in which you wrap your legs around the opponents body or head and put your feet together and squeeze -00814899 04 n 01 stranglehold 0 001 @ 00812977 n 0000 | a wrestling hold in which the arms are pressed against the opponent's windpipe -00815036 04 n 01 toehold 0 001 @ 00812977 n 0000 | a wrestling hold in which the toe is held and the leg is twisted against the joints -00815173 04 n 02 steering 2 steerage 0 004 @ 00803617 n 0000 #p 00314469 n 0000 + 01931768 v 0201 + 01931768 v 0101 | the act of steering a ship -00815320 04 n 03 steering 0 guidance 0 direction 1 009 @ 00803617 n 0000 + 02439732 v 0102 ~ 00298497 n 0000 ~ 00815644 n 0000 ~ 00815801 n 0000 ~ 00816665 n 0000 ~ 00816841 n 0000 ~ 00817017 n 0000 ~ 00817191 n 0000 | the act of setting and holding a course; "a new council was installed under the direction of the king" -00815644 04 n 01 aim 0 003 @ 00815320 n 0000 + 01150559 v 0102 + 01151110 v 0101 | the action of directing something at an object; "he took aim and fired" -00815801 04 n 03 navigation 0 pilotage 0 piloting 0 027 @ 00815320 n 0000 + 01933305 v 0302 + 01941093 v 0303 + 01933305 v 0202 + 01941093 v 0203 + 02909006 a 0101 + 01933305 v 0101 ~ 00816419 n 0000 ~ 00816530 n 0000 ~ 00817394 n 0000 -c 01927992 v 0000 -c 01928154 v 0000 -c 01928283 v 0000 -c 01944692 v 0000 -c 01944976 v 0000 -c 01945381 v 0000 -c 01945516 v 0000 -c 01945938 v 0000 -c 01946138 v 0000 -c 01946279 v 0000 -c 01946408 v 0000 -c 01946660 v 0000 -c 01949218 v 0000 -c 01949435 v 0000 -c 01949674 v 0000 -c 01949966 v 0000 -c 01950502 v 0000 | the guidance of ships or airplanes from place to place -00816419 04 n 01 instrument_flying 0 001 @ 00815801 n 0000 | navigation of an airplane solely by instruments -00816530 04 n 02 celestial_navigation 0 astronavigation 0 001 @ 00815801 n 0000 | navigating according to the positions of the stars -00816665 04 n 01 celestial_guidance 0 001 @ 00815320 n 0000 | a method of controlling the flight of a missile or spacecraft by reference to the positions of celestial bodies -00816841 04 n 02 inertial_guidance 0 inertial_navigation 0 001 @ 00815320 n 0000 | a method of controlling the flight of a missile by devices that respond to inertial forces -00817017 04 n 01 command_guidance 0 001 @ 00815320 n 0000 | a method of controlling the flight of a missile by commands originating from the ground or from another missile -00817191 04 n 01 terrestrial_guidance 0 001 @ 00815320 n 0000 | a method of controlling the flight of a missile by devices that respond to the strength and direction of the earth's gravitational field -00817394 04 n 01 dead_reckoning 0 001 @ 00815801 n 0000 | navigation without the aid of celestial observations -00817507 04 n 01 fire_watching 0 002 @ 00960688 n 0000 ;r 08860123 n 0000 | (during World War II in Britain) watching for fires started by bombs that dropped from the sky -00817680 04 n 01 protection 0 020 @ 00407535 n 0000 + 01128193 v 0101 ~ 00818170 n 0000 ~ 00818362 n 0000 ~ 00819024 n 0000 ~ 00820721 n 0000 ~ 00823532 n 0000 ~ 00823750 n 0000 ~ 00824054 n 0000 ~ 00824808 n 0000 ~ 00825192 n 0000 ~ 00827010 n 0000 ~ 00827638 n 0000 ~ 00827782 n 0000 ~ 00828082 n 0000 ~ 00828990 n 0000 ~ 00829378 n 0000 ~ 00829721 n 0000 ~ 00830099 n 0000 ~ 00960688 n 0000 | the activity of protecting someone or something; "the witnesses demanded police protection" -00818170 04 n 01 air_cover 0 002 @ 00817680 n 0000 ;c 08199025 n 0000 | the use of military aircraft to provide protection against attack by enemy aircraft during ground or naval operations -00818362 04 n 01 shielding 0 002 @ 00817680 n 0000 + 01130169 v 0101 | the act of shielding from harm -00818466 04 n 03 guardianship 0 keeping 0 safekeeping 0 004 @ 01129920 n 0000 + 02202928 v 0201 + 09614684 n 0102 ~ 00818678 n 0000 | the responsibility of a guardian or keeper; "he left his car in my keeping" -00818678 04 n 02 hands 0 custody 2 002 @ 00818466 n 0000 + 01888017 a 0201 | (with `in') guardianship over; in divorce cases it is the right to house and care for and discipline a child; "my fate is in your hands"; "too much power in the president's hands"; "your guests are now in my custody"; "the mother was awarded custody of the children" -00819024 04 n 02 preservation 0 saving 1 008 @ 00817680 n 0000 + 02733122 v 0102 + 02280132 v 0102 ~ 00276189 n 0000 ~ 00819274 n 0000 ~ 00819958 n 0000 ~ 00820091 n 0000 ~ 01260309 n 0000 | the activity of protecting something from loss or danger -00819274 04 n 01 conservation 0 007 @ 00819024 n 0000 + 10060621 n 0102 + 02280132 v 0101 ~ 00819524 n 0000 ~ 00819641 n 0000 ~ 00819756 n 0000 ~ 00819858 n 0000 | the preservation and careful management of the environment and of natural resources -00819524 04 n 01 conservancy 0 001 @ 00819274 n 0000 | the official conservation of trees and soil and rivers etc. -00819641 04 n 01 soil_conservation 0 001 @ 00819274 n 0000 | protection of soil against erosion or deterioration -00819756 04 n 01 oil_conservation 0 001 @ 00819274 n 0000 | the conservation of petroleum resources -00819858 04 n 01 water_conservation 0 001 @ 00819274 n 0000 | the conservation of water resources -00819958 04 n 01 self-preservation 0 001 @ 00819024 n 0000 | preservation of yourself from harm; a natural or instinctive tendency -00820091 04 n 01 reservation 0 002 @ 00819024 n 0000 + 02214485 v 0101 | the act of keeping back or setting aside for some future occasion -00820232 04 n 01 Manhattan_Project 0 001 @i 00795720 n 0000 | code name for the secret United States project set up in 1942 to develop atomic bombs for use in World War II -00820406 04 n 01 embalmment 0 003 @ 13540610 n 0000 + 02226981 v 0101 ~ 00820583 n 0000 | preservation (of a dead body) by treating with balsams and drugs and other chemicals -00820583 04 n 01 mummification 0 002 @ 00820406 n 0000 + 02227127 v 0101 | embalmment and drying a dead body and wrapping it as a mummy -00820721 04 n 03 momism 0 overprotection 0 overshielding 0 002 @ 00817680 n 0000 + 01128899 v 0201 | excessive protection -00820845 04 n 01 security_intelligence 0 001 @ 00986275 n 0000 | intelligence on the identity and capability and intentions of hostile individuals or organizations that may be engaged in espionage or sabotage or subversion or terrorism -00821083 04 n 03 censoring 1 censorship 1 security_review 0 003 @ 00986275 n 0000 ~ 00821295 n 0000 ~ 00822755 n 0000 | counterintelligence achieved by banning or deleting any information of value to the enemy -00821295 04 n 01 military_censorship 0 006 @ 00821083 n 0000 ;c 08199025 n 0000 ~ 00821518 n 0000 ~ 00821752 n 0000 ~ 00821973 n 0000 ~ 00822159 n 0000 | all types of censorship conducted by personnel of the armed forces -00821518 04 n 01 civil_censorship 0 001 @ 00821295 n 0000 | military censorship of civilian communications (correspondence or printed matter of films) entering or leaving of circulating within territories controlled by armed forces -00821752 04 n 01 field_press_censorship 0 001 @ 00821295 n 0000 | security review of news (including all information or material intended for dissemination to the public) subject to the jurisdiction of the armed forces -00821973 04 n 01 prisoner_of_war_censorship 0 001 @ 00821295 n 0000 | military censorship of communication to and from prisoners of war and civilian internees held by the armed forces -00822159 04 n 01 armed_forces_censorship 0 003 @ 00821295 n 0000 ~ 00822350 n 0000 ~ 00822544 n 0000 | military censorship of personal communications to or from persons in the armed forces -00822350 04 n 01 primary_censorship 0 001 @ 00822159 n 0000 | armed forces censorship performed by personnel of a military unit on the personal communications of persons assigned to that unit -00822544 04 n 01 secondary_censorship 0 001 @ 00822159 n 0000 | armed forces censorship of the personal communications of officers or civilian employees or enlisted personnel not subject to primary censorship -00822755 04 n 01 national_censorship 0 001 @ 00821083 n 0000 | censorship under civil authority of communications entering or leaving of crossing the borders of the United States or its territories or possessions -00822970 04 n 03 precaution 0 safeguard 0 guard 3 005 @ 00174412 n 0000 + 01138102 v 0201 + 01764895 a 0101 ~ 00177638 n 0000 ~ 00823316 n 0000 | a precautionary measure warding off impending danger or damage or injury etc.; "he put an ice pack on the injury as a precaution"; "an insurance policy is a good safeguard"; "we let our guard down" -00823316 04 n 02 security 0 security_measures 0 001 @ 00822970 n 0000 | measures taken as a precaution against theft or espionage or sabotage etc.; "military security has been stepped up since the recent uprising" -00823532 04 n 02 defense 1 defence 1 001 @ 00817680 n 0000 | the act of defending someone or something against attack or injury; "a good boxer needs a good defense"; "defense against hurricanes is an urgent problem" -00823750 04 n 02 defense 3 defence 3 001 @ 00817680 n 0000 | protection from harm; "sanitation is the best defense against disease" -00823884 04 n 02 inoculation 0 vaccination 0 003 @ 00828990 n 0000 + 00086835 v 0204 + 00086835 v 0103 | taking a vaccine as a precaution against contracting a disease -00824054 04 n 02 inoculating 0 vaccinating 0 005 @ 00817680 n 0000 + 00086835 v 0204 + 00086835 v 0103 ~ 00824357 n 0000 ~ 00824614 n 0000 | the act of protecting against disease by introducing a vaccine into the body to induce immunity; "doctors examined the recruits but nurses did the inoculating" -00824357 04 n 01 ring_vaccination 0 001 @ 00824054 n 0000 | administering vaccine only to people in close contact with an isolated infected patient; prevents the spread of a highly infectious disease by surrounding the patient with a ring of immunization -00824614 04 n 02 variolation 0 variolization 0 001 @ 00824054 n 0000 | the obsolete process of inoculating a susceptible person with material taken from a vesicle of a person who has smallpox -00824808 04 n 01 patrol 0 004 @ 00817680 n 0000 + 02454939 v 0101 ~ 00825005 n 0000 ~ 00825096 n 0000 | the activity of going around or through an area at regular intervals for security purposes -00825005 04 n 01 airborne_patrol 0 001 @ 00824808 n 0000 | a patrol provided by aircraft -00825096 04 n 01 round-the-clock_patrol 0 001 @ 00824808 n 0000 | a continuous nonstop patrol -00825192 04 n 03 self-defense 0 self-defence 0 self-protection 0 002 @ 00817680 n 0000 ~ 00825443 n 0000 | the act of defending yourself -00825331 04 n 01 aikido 0 001 @ 00825443 n 0000 | a Japanese martial art employing principles similar to judo -00825443 04 n 01 martial_art 0 009 @ 00825192 n 0000 ~ 00825331 n 0000 ~ 00825773 n 0000 ~ 00825951 n 0000 ~ 00826213 n 0000 ~ 00826397 n 0000 ~ 00826606 n 0000 ~ 00826681 n 0000 ~ 00826789 n 0000 | any of several Oriental arts of weaponless self-defense; usually practiced as a sport; "he had a black belt in the martial arts" -00825773 04 n 01 judo 0 002 @ 00825443 n 0000 @ 00523513 n 0000 | a sport adapted from jujitsu (using principles of not resisting) and similar to wrestling; developed in Japan -00825951 04 n 03 jujutsu 0 jujitsu 0 jiujitsu 0 002 @ 00825443 n 0000 ;r 08921850 n 0000 | a method of self-defense without weapons that was developed in China and Japan; holds and blows are supplemented by clever use of the attacker's own weight and strength -00826213 04 n 02 ninjutsu 0 ninjitsu 0 002 @ 00825443 n 0000 ;r 08921850 n 0000 | the traditional Japanese method of espionage; involves stealthy movements and the use of camouflage -00826397 04 n 01 karate 0 002 @ 00825443 n 0000 ;r 08921850 n 0000 | a traditional Japanese system of unarmed combat; sharp blows and kicks are given to pressure-sensitive points on the body of the opponent -00826606 04 n 01 kung_fu 0 001 @ 00825443 n 0000 | a Chinese martial art -00826681 04 n 02 tae_kwon_do 0 taekwondo 0 001 @ 00825443 n 0000 | a Korean martial art similar to karate -00826789 04 n 06 t'ai_chi 0 tai_chi 0 t'ai_chi_chuan 0 tai_chi_chuan 0 taichi 0 taichichuan 0 001 @ 00825443 n 0000 | a Chinese system of slow meditative physical exercise designed for relaxation and balance and health -00827010 04 n 01 insulation 0 003 @ 00817680 n 0000 + 00495038 v 0101 ~ 00827240 n 0000 | the act of protecting something by surrounding it with material that reduces or prevents the transmission of sound or heat or electricity -00827240 04 n 01 lining 0 002 @ 00827010 n 0000 + 01270784 v 0101 | the act of attaching an inside lining (to a garment or curtain etc.) -00827379 04 n 02 lining 1 facing 1 003 @ 00712225 n 0000 + 01271189 v 0201 ~ 00827535 n 0000 | providing something with a surface of a different material -00827535 04 n 01 babbitting 0 001 @ 00827379 n 0000 | lining a surface or bearing with Babbitt metal -00827638 04 n 02 locking 0 lockup 0 003 @ 00817680 n 0000 + 01347678 v 0207 + 01348452 v 0201 | the act of locking something up to protect it -00827782 04 n 02 escort 0 accompaniment 0 004 @ 00817680 n 0000 + 02716767 v 0203 + 02025550 v 0201 ~ 00827974 n 0000 | the act of accompanying someone or something in order to protect them -00827974 04 n 01 convoy 0 002 @ 00827782 n 0000 + 02026433 v 0101 | the act of escorting while in transit -00828082 04 n 01 covering 0 004 @ 00817680 n 0000 + 02147109 v 0101 + 00048633 v 0101 ~ 00828237 n 0000 | the act of protecting something by covering it -00828237 04 n 02 dressing 0 grooming 0 007 @ 00828082 n 0000 + 00040353 v 0201 + 00047945 v 0101 + 00046534 v 0101 ~ 00828462 n 0000 ~ 00828559 n 0000 ~ 00828704 n 0000 | the activity of getting dressed; putting on clothes -00828462 04 n 01 investment 1 001 @ 00828237 n 0000 | the act of putting on robes or vestments -00828559 04 n 01 primping 0 002 @ 00828237 n 0000 + 00043683 v 0102 | careful or finicky grooming; "the primping alone took more than an hour" -00828704 04 n 02 toilet 0 toilette 0 001 @ 00828237 n 0000 | the act of dressing and preparing yourself; "he made his morning toilet and went to breakfast" -00828862 04 n 01 dressing 2 002 @ 00400083 n 0000 + 00511636 v 0101 | processes in the conversion of rough hides into leather -00828990 04 n 02 immunization 0 immunisation 0 004 @ 00817680 n 0000 + 00086835 v 0101 ~ 00823884 n 0000 ~ 00829170 n 0000 | the act of making immune (especially by inoculation) -00829170 04 n 04 sensitizing 0 sensitising 0 sensitization 0 sensitisation 0 003 @ 00828990 n 0000 + 00573932 v 0402 + 00573932 v 0301 | rendering an organism sensitive to a serum by a series of injections -00829378 04 n 04 care 2 charge 0 tutelage 1 guardianship 1 010 @ 00817680 n 0000 + 09614684 n 0402 + 02592667 v 0301 + 02475922 v 0202 + 02436349 v 0103 ~ 01131794 n 0000 ~ 01131993 n 0000 ~ 01132148 n 0000 ~ 01132327 n 0000 ~ 01132472 n 0000 | attention and management implying responsibility for safety; "he is in the care of a bodyguard" -00829721 04 n 02 ruggedization 0 ruggedisation 0 003 @ 00817680 n 0000 + 00165244 v 0202 + 00165244 v 0101 | the act of making a piece of equipment rugged (strengthening to resist wear or abuse) -00829918 04 n 01 umbrella 0 002 @ 00954311 n 0000 ;c 08199025 n 0000 | a formation of military planes maintained over ground operations or targets; "an air umbrella over England" -00830099 04 n 02 waterproofing 0 sealing 0 003 @ 00817680 n 0000 + 01269008 v 0202 + 01354405 v 0101 | the act of treating something to make it repel water -00830257 04 n 02 wear 0 wearing 0 003 @ 00030358 n 0000 + 00047745 v 0201 + 00047745 v 0101 | the act of having on your person as a covering or adornment; "she bought it for everyday wear" -00830448 04 n 01 control 2 004 @ 13440063 n 0000 ;c 06080522 n 0000 + 01224744 v 0102 ~ 00830733 n 0000 | (physiology) regulation or maintenance of a function or action or reflex etc; "the timing and control of his movements were unimpaired"; "he had lost control of his sphincters" -00830733 04 n 01 motor_control 0 001 @ 00830448 n 0000 | control of muscles -00830811 04 n 03 respiration 0 internal_respiration 0 cellular_respiration 0 002 @ 13514314 n 0000 + 00002325 v 0101 | the metabolic processes whereby certain organisms obtain energy from organic molecules; processes that take place in the cells and tissues during which energy is released and carbon dioxide is produced and absorbed by the blood to be transported to the lungs -00831191 04 n 04 breathing 0 external_respiration 0 respiration 1 ventilation 1 020 @ 13440063 n 0000 + 00002325 v 0301 + 00001740 v 0303 + 00779360 v 0102 + 00001740 v 0101 ~ 00831919 n 0000 ~ 00833296 n 0000 ~ 00833491 n 0000 ~ 00833578 n 0000 ~ 00833772 n 0000 ~ 00833870 n 0000 ~ 00834135 n 0000 ~ 00834290 n 0000 ~ 00834636 n 0000 %p 00835267 n 0000 ~ 00835976 n 0000 ~ 00836149 n 0000 ~ 00836407 n 0000 ~ 00836639 n 0000 %p 00836788 n 0000 | the bodily process of inhalation and exhalation; the process of taking in oxygen from inhaled air and releasing carbon dioxide by exhalation -00831782 04 n 01 respiration 2 001 @ 13440063 n 0000 | a single complete act of breathing in and out; "thirty respirations per minute" -00831919 04 n 01 artificial_respiration 0 003 @ 00177783 n 0000 @ 00831191 n 0000 #p 00832626 n 0000 | an emergency procedure whereby breathing is maintained artificially -00832092 04 n 02 cardiography 0 electrocardiography 0 001 @ 00177127 n 0000 | diagnostic procedure consisting of recording the activity of the heart electronically with a cardiograph (and producing a cardiogram) -00832306 04 n 01 echocardiography 0 001 @ 00177127 n 0000 | a noninvasive diagnostic procedure that uses ultrasound to study to structure and motions of the heart -00832471 04 n 01 echoencephalography 0 001 @ 00177127 n 0000 | a noninvasive diagnostic procedure that uses ultrasound to study the anatomy of the brain -00832626 04 n 05 cardiopulmonary_resuscitation 0 CPR 0 cardiac_resuscitation 0 mouth-to-mouth_resuscitation 0 kiss_of_life 0 004 @ 01048210 n 0000 @ 00177783 n 0000 %p 00659349 n 0000 %p 00831919 n 0000 | an emergency procedure consisting of external cardiac massage and artificial respiration; the first treatment for a person who has collapsed and has no pulse and has stopped breathing; attempts to restore circulation of the blood and prevent death or brain damage due to lack of oxygen -00833119 04 n 02 Heimlich_maneuver 0 Heimlich_manoeuvere 0 001 @ 00177783 n 0000 | an emergency procedure to help someone who is choking because food is lodged in the trachea -00833296 04 n 01 abdominal_breathing 0 001 @ 00831191 n 0000 | breathing in which most of the respiratory effort is done by the abdominal muscles; "abdominal breathing is practiced by singers" -00833491 04 n 02 eupnea 0 eupnoea 0 001 @ 00831191 n 0000 | normal relaxed breathing -00833578 04 n 01 hyperpnea 0 002 @ 00831191 n 0000 ! 00833772 n 0101 | energetic (deep and rapid) respiration that occurs normally after exercise or abnormally with fever or various disorders -00833772 04 n 01 hypopnea 0 002 @ 00831191 n 0000 ! 00833578 n 0101 | slow or shallow breathing -00833870 04 n 01 hyperventilation 0 003 @ 00831191 n 0000 + 00003133 v 0101 + 00002942 v 0101 | an increased depth and rate of breathing greater than demanded by the body needs; can cause dizziness and tingling of the fingers and toes and chest pain if continued -00834135 04 n 02 panting 0 heaving 2 004 @ 00831191 n 0000 + 00005526 v 0204 + 00986173 v 0101 + 00005526 v 0101 | breathing heavily (as after exertion) -00834290 04 n 02 periodic_breathing 0 Cheyne-Stokes_respiration 0 001 @ 00831191 n 0000 | abnormal respiration in which periods of shallow and deep breathing alternate -00834460 04 n 03 puffing 1 huffing 0 snorting 0 005 @ 00835267 n 0000 + 00006523 v 0301 + 00006802 v 0202 + 00006802 v 0101 + 00005526 v 0102 | an act of forcible exhalation -00834636 04 n 02 smoke 0 smoking 0 005 @ 00831191 n 0000 + 01198101 v 0201 + 01198101 v 0101 ~ 00834866 n 0000 %p 00837675 n 0000 | the act of smoking tobacco or other substances; "he went outside for a smoke"; "smoking stinks" -00834866 04 n 01 puffing 2 002 @ 00834636 n 0000 + 01198616 v 0101 | blowing tobacco smoke out into the air; "they smoked up the room with their ceaseless puffing" -00835032 04 n 01 breath 0 003 @ 13440063 n 0000 ~ 00835267 n 0000 ~ 00836788 n 0000 | the process of taking in and expelling air during breathing; "he took a deep breath and dived into the pool"; "he was fighting to his last breath" -00835267 04 n 03 exhalation 0 expiration 0 breathing_out 0 007 @ 00835032 n 0000 #p 00831191 n 0000 + 00004227 v 0202 + 00004227 v 0101 ~ 00834460 n 0000 ~ 00835501 n 0000 ~ 00836537 n 0000 | the act of expelling air from the lungs -00835501 04 n 02 blow 2 puff 1 009 @ 00835267 n 0000 + 00006802 v 0201 + 00005526 v 0202 + 02135877 v 0101 + 02068745 v 0101 + 00477247 v 0101 + 00034948 v 0101 + 00007012 v 0101 ~ 00835830 n 0000 | forceful exhalation through the nose or mouth; "he gave his nose a loud blow"; "he blew out all the candles with a single puff" -00835830 04 n 01 insufflation 0 003 @ 00835501 n 0000 + 02309801 v 0101 + 00007193 v 0101 | an act of blowing or breathing on or into something -00835976 04 n 03 snore 0 snoring 0 stertor 0 004 @ 00831191 n 0000 + 01921752 a 0301 + 00017031 v 0201 + 00017031 v 0101 | the act of snoring or producing a snoring sound -00836149 04 n 03 snuffle 0 sniffle 0 snivel 1 007 @ 00831191 n 0000 + 00101779 v 0302 + 02473757 a 0201 + 00007549 v 0202 + 02473757 a 0103 + 00067274 v 0105 + 00101779 v 0101 | the act of breathing heavily through the nose (as when the nose is congested) -00836407 04 n 01 wheeze 0 003 @ 00831191 n 0000 + 01174048 a 0103 + 00006697 v 0101 | breathing with a husky or whistling sound -00836537 04 n 01 wind 1 001 @ 00835267 n 0000 | breath; "the collision knocked the wind out of him" -00836639 04 n 01 second_wind 0 001 @ 00831191 n 0000 | the return of relatively easy breathing after initial exhaustion during continuous exertion -00836788 04 n 05 inhalation 0 inspiration 0 aspiration 0 intake 1 breathing_in 0 008 @ 00835032 n 0000 #p 00831191 n 0000 + 00003316 v 0301 + 00005041 v 0202 + 01198779 v 0101 + 00005041 v 0101 ~ 00837098 n 0000 ~ 00837675 n 0000 | the act of inhaling; the drawing in of air (or other gases) as in breathing -00837098 04 n 02 gasp 0 pant 0 004 @ 00836788 n 0000 + 00986173 v 0201 + 00005526 v 0201 + 00005526 v 0103 | a short labored intake of breath with the mouth open; "she gave a gasp and fainted" -00837293 04 n 04 yawn 0 yawning 0 oscitance 0 oscitancy 0 005 @ 00863513 n 0000 + 00165766 a 0402 + 00007328 v 0201 + 00007328 v 0101 ~ 00628883 n 0000 | an involuntary intake of breath through a wide open mouth; usually triggered by fatigue or boredom; "he could not suppress a yawn"; "the yawning in the audience told him it was time to stop"; "he apologized for his oscitancy" -00837675 04 n 03 puff 0 drag 2 pull 1 006 @ 00836788 n 0000 #p 00834636 n 0000 + 01199009 v 0202 + 01199009 v 0101 + 01198616 v 0101 ~ 00837965 n 0000 | a slow inhalation (as of tobacco smoke); "he took a puff on his pipe"; "he took a drag on his cigarette and expelled the smoke slowly" -00837965 04 n 01 toke 0 001 @ 00837675 n 0000 | a puff of a marijuana or hashish cigarette; "the boys took a few tokes on a joint" -00838098 04 n 04 consumption 1 ingestion 0 intake 0 uptake 0 007 @ 13440063 n 0000 + 01156834 v 0202 + 01156834 v 0101 ~ 00838367 n 0000 ~ 00839778 n 0000 ~ 00842692 n 0000 ~ 00843128 n 0000 | the process of taking food into the body through the mouth (as by eating) -00838367 04 n 02 eating 0 feeding 0 021 @ 00838098 n 0000 + 01179865 v 0201 + 01179865 v 0102 + 01166351 v 0101 + 01168468 v 0101 %p 00278810 n 0000 ~ 00411859 n 0000 ~ 00838816 n 0000 ~ 00839023 n 0000 ~ 00839163 n 0000 ~ 00840517 n 0000 ~ 00840630 n 0000 ~ 00840751 n 0000 ~ 00841091 n 0000 ~ 00841297 n 0000 ~ 00841628 n 0000 ~ 00841777 n 0000 ~ 00841901 n 0000 ~ 00842419 n 0000 ~ 00842519 n 0000 ~ 00842597 n 0000 | the act of consuming food -00838816 04 n 02 bite 0 chomp 0 006 @ 00838367 n 0000 + 01174973 v 0201 + 01445932 v 0101 ~ 00841393 n 0000 ~ 00842197 n 0000 ~ 00842281 n 0000 | the act of gripping or chewing off with the teeth and jaws -00839023 04 n 02 browse 0 browsing 0 003 @ 00838367 n 0000 + 01576165 v 0102 + 01174742 v 0101 | the act of feeding by continual nibbling -00839163 04 n 02 coprophagy 0 coprophagia 0 001 @ 00838367 n 0000 | eating feces; in human a symptom of some kinds of insanity -00839292 04 n 03 electric_shock 0 electrical_shock 0 shock 0 002 @ 00863513 n 0000 + 00090386 v 0301 | a reflex response to the passage of electric current through the body; "subjects received a small electric shock when they made the wrong response"; "electricians get accustomed to occasional shocks" -00839597 04 n 05 fart 0 farting 0 flatus 0 wind 2 breaking_wind 0 003 @ 00863513 n 0000 + 00101629 v 0201 + 00101629 v 0101 | a reflex that expels intestinal gas through the anus -00839778 04 n 03 swallow 0 drink 1 deglutition 0 006 @ 00838098 n 0000 + 01170052 v 0201 + 01201856 v 0101 ~ 00840057 n 0000 ~ 00840189 n 0000 ~ 00843494 n 0000 | the act of swallowing; "one swallow of the liquid was enough"; "he took a drink of his beer and smacked his lips" -00840057 04 n 01 aerophagia 0 001 @ 00839778 n 0000 | swallowing air (usually followed by belching and discomfort and flatulence) -00840189 04 n 04 gulp 0 draft 2 draught 1 swig 0 003 @ 00839778 n 0000 + 01202068 v 0403 + 01202068 v 0101 | a large and hurried swallow; "he finished it at a single gulp" -00840363 04 n 02 gulp 1 gulping 1 003 @ 00863513 n 0000 + 01067002 v 0201 + 01202068 v 0101 | a spasmodic reflex of the throat made as if in swallowing -00840517 04 n 01 dining 0 003 @ 00838367 n 0000 + 01167981 v 0101 ~ 00841527 n 0000 | the act of eating dinner -00840630 04 n 01 engorgement 0 002 @ 00838367 n 0000 + 01193099 v 0107 | eating ravenously or voraciously to satiation -00840751 04 n 02 feasting 0 banqueting 0 002 @ 00838367 n 0000 + 01185981 v 0101 | eating an elaborate meal (often accompanied by entertainment) -00840898 04 n 02 geophagy 0 geophagia 0 001 @ 14055977 n 0000 | eating earth, clay, chalk; occurs in some primitive tribes, sometimes in cases of nutritional deficiency or obsessive behavior -00841091 04 n 02 graze 0 grazing 1 008 @ 00838367 n 0000 + 01576478 v 0202 + 01576165 v 0203 + 01576478 v 0102 + 01608508 v 0101 + 01576165 v 0103 + 01240514 v 0101 + 01174742 v 0102 | the act of grazing -00841297 04 n 01 lunching 0 002 @ 00838367 n 0000 + 01185304 v 0101 | the act of eating lunch -00841393 04 n 01 munch 0 002 @ 00838816 n 0000 + 01201693 v 0102 | a large bite; "he tried to talk between munches on the sandwich" -00841527 04 n 01 Dutch_treat 0 001 @ 00840517 n 0000 | a dinner where each person pays for his own -00841628 04 n 02 repletion 0 surfeit 0 004 @ 00838367 n 0000 + 02333225 v 0201 + 01191838 v 0201 + 01193721 v 0103 | eating until excessively full -00841777 04 n 01 supping 0 002 @ 00838367 n 0000 + 01205459 v 0101 | ingestion of liquid food with a spoon or by drinking -00841901 04 n 05 tasting 2 savoring 0 savouring 0 relishing 0 degustation 0 005 @ 00838367 n 0000 + 01195675 v 0501 + 02193974 v 0302 + 02193974 v 0201 + 01195299 v 0104 | taking a small amount into the mouth to test its quality; "cooking was fine but it was the savoring that he enjoyed most" -00842197 04 n 01 nibble 0 002 @ 00838816 n 0000 + 01446420 v 0101 | gentle biting -00842281 04 n 02 nip 1 pinch 3 004 @ 00838816 n 0000 @ 00359614 n 0000 + 00504019 v 0201 + 01446569 v 0101 | a small sharp bite or snip -00842419 04 n 02 necrophagia 0 necrophagy 0 001 @ 00838367 n 0000 | feeding on corpses or carrion -00842519 04 n 01 omophagia 0 001 @ 00838367 n 0000 | the eating of raw food -00842597 04 n 01 scatophagy 0 001 @ 00838367 n 0000 | the eating of excrement or other filth -00842692 04 n 03 sucking 0 suck 0 suction 0 013 @ 00838098 n 0000 + 02804905 a 0301 + 01854679 v 0301 + 00073584 v 0301 + 02765692 v 0301 + 01854888 v 0301 + 01169704 v 0301 + 01186428 v 0203 + 01539063 v 0202 + 02765692 v 0201 + 01854888 v 0201 + 01169704 v 0201 + 01169704 v 0101 | the act of sucking -00842997 04 n 02 suckling 0 lactation 0 002 @ 01057759 n 0000 + 01186428 v 0206 | feeding an infant by giving suck at the breast -00843128 04 n 03 drinking 0 imbibing 0 imbibition 0 006 @ 00838098 n 0000 + 01170052 v 0302 + 01170052 v 0202 + 01170052 v 0101 ~ 00843325 n 0000 ~ 00843575 n 0000 | the act of consuming liquids -00843325 04 n 03 gulping 0 swilling 0 guzzling 0 004 @ 00843128 n 0000 + 01170824 v 0301 + 01169433 v 0201 + 01202068 v 0101 | the drinking of large mouthfuls rapidly -00843494 04 n 01 sip 1 002 @ 00839778 n 0000 + 01170687 v 0101 | a small drink -00843575 04 n 01 potation 0 001 @ 00843128 n 0000 | the act of drinking (especially an alcoholic drink) -00843681 04 n 01 bondage 0 001 @ 00844254 n 0000 | sexual practice that involves physically restraining (by cords or handcuffs) one of the partners -00843831 04 n 01 outercourse 0 001 @ 00844254 n 0000 | sexual stimulation without vaginal penetration; "since pregnancy cannot happen if sperm are kept out of the vagina, outercourse is one method of birth control" -00844048 04 n 01 safe_sex 0 001 @ 00844254 n 0000 | sexual activity (especially sexual intercourse) with the use of measures (such as latex condoms) to avoid the transmission of disease (especially AIDS) -00844254 04 n 04 sexual_activity 0 sexual_practice 0 sex 0 sex_activity 0 024 @ 13440063 n 0000 + 02135389 a 0301 + 01762283 v 0302 = 01201100 a 0000 = 01201422 a 0000 ~ 00843681 n 0000 ~ 00843831 n 0000 ~ 00844048 n 0000 ~ 00844847 n 0000 ~ 00845523 n 0000 ~ 00846326 n 0000 ~ 00846515 n 0000 ~ 00847167 n 0000 ~ 00847340 n 0000 ~ 00849523 n 0000 ~ 00853835 n 0000 ~ 00854717 n 0000 ~ 00855527 n 0000 ~ 00856342 n 0000 ~ 00856733 n 0000 ~ 00856847 n 0000 ~ 00857160 n 0000 ~ 00857664 n 0000 ~ 00858060 n 0000 | activities associated with sexual intercourse; "they had sex in the back seat" -00844847 04 n 01 conception 1 002 @ 00844254 n 0000 + 00054285 v 0101 | the act of becoming pregnant; fertilization of an ovum by a spermatozoon -00844994 04 n 01 defloration 0 002 @ 00845523 n 0000 + 01428381 v 0101 | the act of depriving a woman of her virginity (especially by rupturing the hymen through sexual intercourse) -00845178 04 n 01 insemination 0 004 @ 13440063 n 0000 #p 00845523 n 0000 + 00052548 v 0101 ~ 00845352 n 0000 | the introduction of semen into the genital tract of a female -00845352 04 n 02 artificial_insemination 0 AI 0 001 @ 00845178 n 0000 | the introduction of semen into the oviduct or uterus by some means other than sexual intercourse -00845523 04 n 0b sexual_intercourse 0 intercourse 2 sex_act 0 copulation 0 coitus 0 coition 0 sexual_congress 0 congress 1 sexual_relation 0 relation 1 carnal_knowledge 0 009 @ 00844254 n 0000 + 02887741 a 0501 + 01428853 v 0401 ~ 00844994 n 0000 %p 00845178 n 0000 ~ 00846021 n 0000 ~ 00846432 n 0000 ~ 00846817 n 0000 ~ 00848098 n 0000 | the act of sexual procreation between a man and a woman; the man's penis is inserted into the woman's vagina and excited until orgasm and ejaculation occur -00846021 04 n 0c fuck 0 fucking 0 screw 0 screwing 0 ass 0 nooky 0 nookie 0 piece_of_ass 0 piece_of_tail 0 roll_in_the_hay 0 shag 1 shtup 0 007 @ 00845523 n 0000 ;u 07124340 n 0000 ;u 07157273 n 0000 + 01426397 v 040f + 01426397 v 030f + 01426397 v 0210 + 01426397 v 0110 | slang for sexual intercourse -00846326 04 n 01 pleasure 1 001 @ 00844254 n 0000 | sexual gratification; "he took his pleasure of her" -00846432 04 n 01 hank_panky 0 001 @ 00845523 n 0000 | illicit sexual intercourse -00846515 04 n 05 sexual_love 0 lovemaking 0 making_love 0 love 0 love_life 0 002 @ 00844254 n 0000 + 01426397 v 0403 | sexual activities (often including sexual intercourse) between two people; "his lovemaking disgusted her"; "he hadn't had any love in months"; "he has a very complicated love life" -00846817 04 n 01 penetration 3 002 @ 00845523 n 0000 + 01422003 v 0101 | the act (by a man) of inserting his penis into the vagina of a woman -00846961 04 n 02 statutory_rape 0 carnal_abuse 0 001 @ 00773402 n 0000 | sexual intercourse with a person (girl or boy) who has not reached the age of consent (even if both parties participate willingly) -00847167 04 n 01 carnal_abuse 1 001 @ 00844254 n 0000 | any lascivious contact by an adult with the sexual organs of a child (especially not involving sexual intercourse) -00847340 04 n 06 coupling 0 mating 0 pairing 0 conjugation 0 union 2 sexual_union 0 010 @ 00844254 n 0000 + 00574218 v 0401 + 01428853 v 0303 + 01428853 v 0202 + 01428853 v 0104 ~ 00847770 n 0000 ~ 00847932 n 0000 ~ 00850425 n 0000 ~ 00851587 n 0000 ~ 00853649 n 0000 | the act of pairing a male and female for reproductive purposes; "the casual couplings of adolescents"; "the mating of some species occurs only in the spring" -00847770 04 n 01 assortative_mating 0 002 @ 00847340 n 0000 ! 00847932 n 0101 | mating of individuals having more traits in common than likely in random mating -00847932 04 n 01 disassortative_mating 0 002 @ 00847340 n 0000 ! 00847770 n 0101 | mating of individuals having traits more dissimilar than likely in random mating -00848098 04 n 02 unlawful_carnal_knowledge 0 criminal_congress 0 003 @ 00845523 n 0000 ~ 00848282 n 0000 ~ 00848891 n 0000 | forbidden or tabu sexual intercourse between individuals -00848282 04 n 02 extramarital_sex 0 free_love 0 003 @ 00848098 n 0000 ~ 00848466 n 0000 ~ 00848745 n 0000 | sexual intercourse between individuals who are not married to one another -00848466 04 n 03 adultery 0 criminal_conversation 0 fornication 1 004 @ 00848282 n 0000 + 00961195 a 0101 + 01550779 a 0101 + 09772746 n 0101 | extramarital sex that willfully and maliciously interferes with marriage relations; "adultery is often cited as grounds for divorce" -00848745 04 n 01 fornication 0 002 @ 00848282 n 0000 + 01427278 v 0101 | voluntary sexual intercourse between persons not married to each other -00848891 04 n 01 incest 0 002 @ 00848098 n 0000 + 02748216 a 0101 | sexual intercourse between persons too closely related to marry (as between a parent and a child) -00849059 04 n 05 coitus_interruptus 0 withdrawal_method 0 withdrawal 4 pulling_out 0 onanism 1 001 @ 00851994 n 0000 | a method of birth control in which coitus is initiated but the penis is deliberately withdrawn before ejaculation -00849294 04 n 04 sodomy 0 buggery 0 anal_sex 0 anal_intercourse 0 005 @ 00854717 n 0000 + 02568392 v 0203 + 10621514 n 0102 + 02568392 v 0101 + 02568392 v 0102 | intercourse via the anus, committed by a man with a man or woman -00849523 04 n 04 reproduction 0 procreation 0 breeding 0 facts_of_life 0 006 @ 00844254 n 0000 + 00056334 v 0301 + 00055142 v 0202 + 00055142 v 0101 ~ 00849768 n 0000 ~ 00849982 n 0000 | the sexual activity of conceiving and bearing offspring -00849768 04 n 03 miscegenation 0 crossbreeding 1 interbreeding 1 003 @ 00849523 n 0000 + 01429953 v 0305 + 02739121 v 0101 | reproduction by parents of different races (especially by white and non-white persons) -00849982 04 n 03 generation 0 multiplication 1 propagation 0 008 @ 00849523 n 0000 + 02230447 v 0301 + 00055871 v 0301 + 00055539 v 0301 + 00055142 v 0203 + 00056334 v 0202 + 00054628 v 0107 ~ 00850260 n 0000 | the act of producing offspring or multiplying by such production -00850260 04 n 02 biogenesis 0 biogeny 0 003 @ 00849982 n 0000 + 02665212 a 0101 + 02665367 a 0101 | the production of living organisms from other living organisms -00850425 04 n 07 hybridization 0 hybridisation 0 crossbreeding 0 crossing 2 cross 0 interbreeding 0 hybridizing 0 012 @ 00847340 n 0000 ;c 06075527 n 0000 + 01429953 v 0703 + 01429953 v 0605 + 01429953 v 0502 + 01429953 v 0402 + 01429953 v 0204 + 01429953 v 0103 ~ 00850873 n 0000 ~ 00850986 n 0000 ~ 00851146 n 0000 ~ 00851316 n 0000 | (genetics) the act of mixing different species or varieties of animals or plants and thus to produce hybrids -00850873 04 n 01 dihybrid_cross 0 001 @ 00850425 n 0000 | hybridization using two traits with two alleles each -00850986 04 n 01 monohybrid_cross 0 001 @ 00850425 n 0000 | hybridization using a single trait with two alleles (as in Mendel's experiments with garden peas) -00851146 04 n 02 reciprocal_cross 0 reciprocal 0 001 @ 00850425 n 0000 | hybridization involving a pair of crosses that reverse the sexes associated with each genotype -00851316 04 n 02 testcross 0 test-cross 0 001 @ 00850425 n 0000 | a cross between an organism whose genotype for a certain trait is unknown and an organism that is homozygous recessive for that trait so the unknown genotype can be determined from that of the offspring -00851587 04 n 01 inbreeding 0 001 @ 00847340 n 0000 | the act of mating closely related individuals -00851689 04 n 01 natural_family_planning 0 004 @ 00851994 n 0000 ~ 00852522 n 0000 ~ 00852825 n 0000 ~ 00853145 n 0000 | any of several methods of family planning that do not involve sterilization or contraceptive devices or drugs; coitus is avoided during the fertile time of a woman's menstrual cycle -00851994 04 n 03 birth_control 0 birth_prevention 0 family_planning 0 004 @ 01144133 n 0000 ~ 00849059 n 0000 ~ 00851689 n 0000 ~ 00852181 n 0000 | limiting the number of children born -00852181 04 n 02 contraception 0 contraceptive_method 0 003 @ 00851994 n 0000 ~ 00852400 n 0000 ~ 00853487 n 0000 | birth control by the use of devices (diaphragm or intrauterine device or condom) or drugs or surgery -00852400 04 n 01 oral_contraception 0 001 @ 00852181 n 0000 | contraception achieved by taking oral contraceptive pills -00852522 04 n 02 basal_body_temperature_method_of_family_planning 0 basal_body_temperature_method 0 001 @ 00851689 n 0000 | natural family planning in which the fertile period of the woman's menstrual cycle is inferred by noting the rise in basal body temperature that typically occurs with ovulation -00852825 04 n 02 ovulation_method_of_family_planning 0 ovulation_method 0 001 @ 00851689 n 0000 | natural family planning in which the fertile period is inferred from changes in the character and quantity of cervical mucus; ovulation is marked by an increase in mucus that becomes sticky and then clearer and slippery -00853145 04 n 05 rhythm_method_of_birth_control 0 rhythm_method 0 rhythm 0 calendar_method_of_birth_control 0 calendar_method 0 001 @ 00851689 n 0000 | natural family planning in which ovulation is assumed to occur 14 days before the onset of a period (the fertile period would be assumed to extend from day 10 through day 18 of her cycle) -00853487 04 n 01 surgical_contraception 0 004 @ 00692130 n 0000 @ 00852181 n 0000 ~ 00148446 n 0000 ~ 00716179 n 0000 | contraception by surgical sterilization -00853649 04 n 02 servicing 0 service 3 003 @ 00847340 n 0000 + 01428011 v 0202 + 01428011 v 0102 | the act of mating by male animals; "the bull was worth good money in servicing fees" -00853835 04 n 03 foreplay 0 arousal 1 stimulation 1 003 @ 00844254 n 0000 ~ 00854000 n 0000 ~ 00854538 n 0000 | mutual sexual fondling prior to sexual intercourse -00854000 04 n 09 caressing 0 cuddling 0 fondling 0 hugging 0 kissing 0 necking 0 petting 0 smooching 0 snuggling 0 011 @ 00853835 n 0000 + 01424948 v 0902 + 01425709 v 0801 + 01226600 v 0701 + 01426153 v 0601 + 01431230 v 0502 + 01424456 v 0402 + 01226215 v 0302 + 01425511 v 0201 + 01424948 v 0201 ~ 00854393 n 0000 | affectionate play (or foreplay without contact with the genital organs) -00854393 04 n 01 snogging 0 004 @ 00854000 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 01431230 v 0101 | (British informal) cuddle and kiss -00854538 04 n 01 feel 0 002 @ 00853835 n 0000 + 01210152 v 0101 | manual stimulation of the genital area for sexual pleasure; "the girls hated it when he tried to sneak a feel" -00854717 04 n 02 perversion 1 sexual_perversion 0 004 @ 00844254 n 0000 ~ 00737705 n 0000 ~ 00849294 n 0000 ~ 00854876 n 0000 | an aberrant sexual practice; -00854876 04 n 02 oral_sex 0 head 0 004 @ 00854717 n 0000 ~ 00855055 n 0000 ~ 00855169 n 0000 ~ 00855407 n 0000 | oral stimulation of the genitals; "they say he gives good head" -00855055 04 n 02 cunnilingus 0 cunnilinctus 0 001 @ 00854876 n 0000 | oral stimulation of the vulva or clitoris -00855169 04 n 02 fellatio 0 fellation 0 003 @ 00854876 n 0000 + 02117170 v 0201 ~ 00855301 n 0000 | oral stimulation of the penis -00855301 04 n 02 cock_sucking 0 blowjob 0 002 @ 00855169 n 0000 ;u 07157273 n 0000 | slang for fellatio -00855407 04 n 02 soixante-neuf 0 sixty-nine 0 001 @ 00854876 n 0000 | oral sex practiced simultaneously by two people -00855527 04 n 02 autoeroticism 0 autoerotism 0 003 @ 00844254 n 0000 + 02131834 a 0101 ~ 00855674 n 0000 | using you own body as a sexual object -00855674 04 n 02 masturbation 0 onanism 0 007 @ 00855527 n 0000 + 10299700 n 0202 + 01430633 v 0101 + 01430952 v 0101 ~ 00855936 n 0000 ~ 00856076 n 0000 ~ 00856193 n 0000 | manual stimulation of the genital organs (of yourself or another) for sexual pleasure -00855936 04 n 02 self-stimulation 0 self-abuse 0 001 @ 00855674 n 0000 | manual stimulation of your own genital organ for sexual pleasure -00856076 04 n 01 frottage 0 001 @ 00855674 n 0000 | masturbation by rubbing against another person (as in a crowd) -00856193 04 n 04 jacking_off 0 jerking_off 0 hand_job 0 wank 0 003 @ 00855674 n 0000 ;u 07157273 n 0000 + 01430633 v 0402 | slang for masturbation -00856342 04 n 03 promiscuity 0 promiscuousness 0 sleeping_around 0 004 @ 00844254 n 0000 + 00361837 a 0204 + 00361837 a 0104 ~ 00856559 n 0000 | indulging in promiscuous (casual and indiscriminate) sexual relations -00856559 04 n 01 one-night_stand 1 001 @ 00856342 n 0000 | a brief sexual encounter lasting only for a single night; "he ran through a series of loveless one-night stands" -00856733 04 n 01 lechery 0 002 @ 00844254 n 0000 + 02133431 a 0101 | unrestrained indulgence in sexual activity -00856847 04 n 05 homosexuality 0 homosexualism 0 homoeroticism 0 queerness 0 gayness 0 008 @ 00844254 n 0000 + 01201937 a 0501 + 01201937 a 0402 + 01202105 a 0301 + 01201422 a 0101 ~ 00857275 n 0000 ~ 00857424 n 0000 ~ 00857872 n 0000 | a sexual attraction to (or sexual relations with) persons of the same sex -00857160 04 n 01 bisexuality 0 002 @ 00844254 n 0000 + 01203147 a 0101 | sexual activity with both men and women -00857275 04 n 02 inversion 2 sexual_inversion 0 001 @ 00856847 n 0000 | a term formerly used to mean taking on the gender role of the opposite sex -00857424 04 n 02 lesbianism 0 sapphism 0 002 @ 00856847 n 0000 ~ 00857530 n 0000 | female homosexuality -00857530 04 n 01 tribadism 0 002 @ 00857424 n 0000 + 01202994 a 0101 | a form of lesbianism that simulates heterosexual intercourse -00857664 04 n 03 heterosexuality 0 heterosexualism 0 straightness 0 003 @ 00844254 n 0000 + 01201298 a 0301 + 01201100 a 0101 | a sexual attraction to (or sexual relations with) persons of the opposite sex -00857872 04 n 02 pederasty 0 paederasty 0 002 @ 00856847 n 0000 @ 00737705 n 0000 | sexual relations between a man and a boy (usually anal intercourse with the boy as a passive partner) -00858060 04 n 03 bestiality 0 zooerastia 0 zooerasty 0 001 @ 00844254 n 0000 | sexual activity between a person and an animal -00858188 04 n 01 sleeping 0 005 @ 13440063 n 0000 ~ 00285141 n 0000 ~ 00285387 n 0000 ~ 00858377 n 0000 ~ 00858849 n 0000 | the suspension of consciousness and decrease in metabolic rate -00858377 04 n 06 nap 0 catnap 0 cat_sleep 0 forty_winks 0 short_sleep 0 snooze 0 006 @ 00858188 n 0000 + 00015303 v 0601 + 00015498 v 0202 + 00015498 v 0101 ~ 00858631 n 0000 ~ 00858742 n 0000 | sleeping for a short period of time (usually not in bed) -00858631 04 n 01 siesta 0 001 @ 00858377 n 0000 | a nap in the early afternoon (especially in hot countries) -00858742 04 n 01 zizz 0 002 @ 00858377 n 0000 ;r 08860123 n 0000 | a nap; "Arthur's taking a short zizz" -00858849 04 n 02 doze 0 drowse 0 005 @ 00858188 n 0000 + 00188436 a 0201 + 00016380 v 0201 + 00015303 v 0202 + 00015303 v 0103 | a light fitful sleep -00859001 04 n 02 reaction 0 response 1 016 @ 13440063 n 0000 + 00717358 v 0101 ~ 00859490 n 0000 ~ 00859691 n 0000 ~ 00859863 n 0000 ~ 00860011 n 0000 ~ 00860434 n 0000 ~ 00861611 n 0000 ~ 00862686 n 0000 ~ 00863222 n 0000 ~ 00863417 n 0000 ~ 00863513 n 0000 ~ 00864535 n 0000 ~ 00865600 n 0000 ~ 01234952 n 0000 ~ 01267344 n 0000 | a bodily process occurring due to the effect of some antecedent stimulus or agent; "a bad reaction to the medicine"; "his responses have slowed with age" -00859490 04 n 01 automatism 0 001 @ 00859001 n 0000 | any reaction that occurs automatically without conscious thought or reflection (especially the undirected behavior seen in psychomotor epilepsy) -00859691 04 n 01 rebound 1 002 @ 00859001 n 0000 + 00528608 v 0102 | a reaction to a crisis or setback or frustration; "he is still on the rebound from his wife's death" -00859863 04 n 01 overreaction 0 002 @ 00859001 n 0000 + 00718117 v 0101 | an excessive reaction; a reaction with inappropriate emotional behavior -00860011 04 n 07 galvanic_skin_response 0 GSR 0 psychogalvanic_response 0 electrodermal_response 0 electrical_skin_response 0 Fere_phenomenon 0 Tarchanoff_phenomenon 0 002 @ 00859001 n 0000 #p 03662452 n 0000 | a change in the electrical properties of the skin in response to stress or anxiety; can be measured either by recording the electrical resistance of the skin or by recording weak currents generated by the body -00860434 04 n 03 immune_response 0 immune_reaction 0 immunologic_response 0 008 @ 00859001 n 0000 ;c 12992868 n 0000 ;c 01348530 n 0000 ~ 00860857 n 0000 ~ 00861046 n 0000 ~ 00861199 n 0000 ~ 00861382 n 0000 %p 14736201 n 0000 | a bodily defense reaction that recognizes an invading substance (an antigen: such as a virus or fungus or bacteria or transplanted organ) and produces antibodies specific against that antigen -00860857 04 n 02 anamnestic_response 0 anamnestic_reaction 0 001 @ 00860434 n 0000 | renewed rapid production of an antibody on the second (or subsequent) encounter with the same antigen -00861046 04 n 01 humoral_immune_response 0 001 @ 00860434 n 0000 | an immune response (chiefly against bacterial invasion) that is mediated by B cells -00861199 04 n 01 cell-mediated_immune_response 0 001 @ 00860434 n 0000 | an immune response (chiefly against viral or fungal invasions or transplanted tissue) that involves T cells -00861382 04 n 01 complement_fixation 0 001 @ 00860434 n 0000 | an immune response in which an antigen-antibody combination inactivates a complement (so it is unavailable to participate in a second antigen-antibody combination) -00861611 04 n 01 tropism 0 009 @ 00859001 n 0000 ~ 00861894 n 0000 ~ 00861990 n 0000 ~ 00862079 n 0000 ~ 00862170 n 0000 ~ 00862310 n 0000 ~ 00862399 n 0000 ~ 00862488 n 0000 ~ 00862595 n 0000 | an involuntary orienting response; positive or negative reaction to a stimulus source -00861894 04 n 01 ergotropism 0 002 @ 00861611 n 0000 + 02722083 a 0101 | an affinity for work -00861990 04 n 01 geotropism 0 001 @ 00861611 n 0000 | an orienting response to gravity -00862079 04 n 01 heliotropism 0 001 @ 00861611 n 0000 | an orienting response to the sun -00862170 04 n 01 meteortropism 0 001 @ 00861611 n 0000 | an effect of climate on biological processes (as the effect on joint pains etc.) -00862310 04 n 01 neurotropism 0 001 @ 00861611 n 0000 | an affinity for neural tissues -00862399 04 n 01 phototropism 0 001 @ 00861611 n 0000 | an orienting response to light -00862488 04 n 01 trophotropism 0 002 @ 00861611 n 0000 + 03126922 a 0101 | an orienting response to food -00862595 04 n 01 thermotropism 0 001 @ 00861611 n 0000 | an orienting response to warmth -00862686 04 n 01 taxis 0 002 @ 00859001 n 0000 ~ 00862859 n 0000 | a locomotor response toward or away from an external stimulus by a motile (and usually simple) organism -00862859 04 n 01 chemotaxis 0 003 @ 00862686 n 0000 ~ 00863017 n 0000 ~ 00863121 n 0000 | movement by a cell or organism in reaction to a chemical stimulus -00863017 04 n 01 negative_chemotaxis 0 001 @ 00862859 n 0000 | movement away from a chemical stimulus -00863121 04 n 01 positive_chemotaxis 0 001 @ 00862859 n 0000 | movement toward a chemical stimulus -00863222 04 n 01 kinesis 0 003 @ 00859001 n 0000 + 01563349 a 0101 + 02893827 a 0101 | a movement that is a response to a stimulus but is not oriented with respect to the source of stimulation -00863417 04 n 01 double_take 0 001 @ 00859001 n 0000 | a delayed reaction indicating surprise -00863513 04 n 08 reflex 0 reflex_response 0 reflex_action 0 instinctive_reflex 0 innate_reflex 0 inborn_reflex 0 unconditioned_reflex 0 physiological_reaction 0 027 @ 00859001 n 0000 + 02522669 a 0102 ~ 00117124 n 0000 ~ 00117267 n 0000 ~ 00117578 n 0000 ~ 00117959 n 0000 ~ 00118268 n 0000 ~ 00118733 n 0000 ~ 00811221 n 0000 ~ 00837293 n 0000 ~ 00839292 n 0000 ~ 00839597 n 0000 ~ 00840363 n 0000 ~ 00864859 n 0000 ~ 00865808 n 0000 ~ 00866079 n 0000 ~ 00866273 n 0000 ~ 00866423 n 0000 ~ 00866606 n 0000 ~ 00866882 n 0000 ~ 00867163 n 0000 ~ 00867357 n 0000 ~ 00867606 n 0000 ~ 00867790 n 0000 ~ 00867983 n 0000 ~ 14314850 n 0000 ~ 14359459 n 0000 | an automatic instinctive unlearned reaction to a stimulus -00864226 04 n 07 conditional_reflex 0 conditioned_reflex 0 acquired_reflex 0 conditional_reaction 0 conditioned_reaction 0 conditional_response 0 conditioned_response 0 002 @ 00864535 n 0000 ~ 00864680 n 0000 | an acquired response that is under the control of (conditional on the occurrence of) a stimulus -00864535 04 n 02 learned_reaction 0 learned_response 0 002 @ 00859001 n 0000 ~ 00864226 n 0000 | a reaction that has been acquired by learning -00864680 04 n 02 conditioned_avoidance 0 conditioned_avoidance_response 0 001 @ 00864226 n 0000 | a conditioned response that anticipates the occurrence of an aversive stimulus -00864859 04 n 03 knee_jerk 0 knee-jerk_reflex 0 patellar_reflex 0 001 @ 00863513 n 0000 | a reflex extension of the leg resulting from a sharp tap on the patellar tendon -00865031 04 n 02 startle_response 0 startle_reaction 0 001 @ 00867357 n 0000 | a complicated involuntary reaction to a sudden unexpected stimulus (especially a loud noise); involves flexion of most skeletal muscles and a variety of visceral reactions -00865284 04 n 02 startle_reflex 0 Moro_reflex 0 001 @ 00867357 n 0000 | a normal reflex of young infants; a sudden loud noise causes the child to stretch out the arms and flex the legs -00865471 04 n 02 wince 0 flinch 0 003 @ 00867357 n 0000 + 02061069 v 0201 + 02061069 v 0106 | a reflex response to sudden pain -00865600 04 n 02 passage 5 passing 5 002 @ 00859001 n 0000 + 00072989 v 0204 | a bodily reaction of changing from one place or stage to another; "the passage of air from the lungs"; "the passing of flatus" -00865808 04 n 04 light_reflex 0 pupillary_reflex 0 miosis 0 myosis 0 003 @ 00863513 n 0000 + 02765308 a 0402 + 02765308 a 0301 | reflex contraction of the sphincter muscle of the iris in response to a bright light (or certain drugs) causing the pupil to become smaller -00866079 04 n 01 mydriasis 0 002 @ 00863513 n 0000 @ 00365995 n 0000 | reflex pupillary dilation as a muscle pulls the iris outward; occurs in response to a decrease in light or certain drugs -00866273 04 n 01 micturition_reflex 0 001 @ 00863513 n 0000 | relaxation of the urethral sphincter in response to increased pressure in the bladder -00866423 04 n 02 pharyngeal_reflex 0 gag_reflex 0 001 @ 00863513 n 0000 | normal reflex consisting of retching; may be produced by touching the soft palate in the back of the mouth -00866606 04 n 07 pilomotor_reflex 0 gooseflesh 0 goose_bump 0 goosebump 0 goose_pimple 0 goose_skin 0 horripilation 0 003 @ 00863513 n 0000 + 02116777 v 0701 + 02116568 v 0701 | reflex erection of hairs of the skin in response to cold or emotional stress or skin irritation -00866882 04 n 01 plantar_reflex 0 001 @ 00863513 n 0000 | flexion of the toes when the sole of the foot is stroked firmly on the outer side from the heel to the front in persons over the age of 2 years; under 2 years the results should be extension of the toes (Babinski reflex) -00867163 04 n 01 rooting_reflex 0 001 @ 00863513 n 0000 | reflex consisting of head-turning and sucking movements elicited in a normal infant by gently stroking the side of the mouth or cheek -00867357 04 n 03 startle 0 jump 1 start 1 008 @ 00863513 n 0000 + 01910373 v 0303 + 02243567 a 0206 + 01910373 v 0202 + 01910373 v 0101 ~ 00865031 n 0000 ~ 00865284 n 0000 ~ 00865471 n 0000 | a sudden involuntary movement; "he awoke with a start" -00867606 04 n 02 stretch_reflex 0 myotactic_reflex 0 001 @ 00863513 n 0000 | reflex contraction of a muscle when an attached tendon is pulled; important in maintaining erect posture -00867790 04 n 01 suckling_reflex 0 001 @ 00863513 n 0000 | reflex behavior in newborn mammals; includes finding and grasping the nipple in the mouth and sucking on it and swallowing the milk -00867983 04 n 03 tremble 0 shiver 0 shake 0 006 @ 00863513 n 0000 + 02292797 a 0302 + 00014034 v 0301 + 01254026 a 0201 + 00014201 v 0201 + 01888511 v 0101 | a reflex motion caused by cold or fear or excitement -00868196 04 n 03 crying 0 weeping 0 tears 0 007 @ 13440063 n 0000 + 00066191 v 0202 + 00066685 v 0101 + 00066191 v 0101 ~ 00868523 n 0000 ~ 00868669 n 0000 ~ 00868799 n 0000 | the process of shedding tears (usually accompanied by sobs or other inarticulate sounds); "I hate to hear the crying of a child"; "she was in tears" -00868523 04 n 02 snivel 0 sniveling 0 004 @ 00868196 n 0000 + 00067274 v 0201 + 00067274 v 0101 + 01042531 v 0101 | whining in a tearful manner -00868669 04 n 02 sob 0 sobbing 0 003 @ 00868196 n 0000 + 00067129 v 0201 + 00067129 v 0101 | convulsive gasp made while weeping -00868799 04 n 02 wailing 1 bawling 0 002 @ 00868196 n 0000 + 01046932 v 0103 | loud cries made while weeping -00868910 04 n 03 calculation 0 computation 0 computing 0 011 @ 01023820 n 0000 + 02907473 a 0201 + 00637259 v 0204 + 02265231 v 0102 + 00926472 v 0102 + 00712135 v 0101 + 00637259 v 0101 ~ 00869260 n 0000 ~ 00869467 n 0000 ~ 00869583 n 0000 ~ 00870101 n 0000 | the procedure of calculating; determining something by mathematical or logical methods -00869260 04 n 01 transposition 2 003 @ 00868910 n 0000 ;c 06012726 n 0000 + 01867303 v 0101 | (mathematics) the transfer of a quantity from one side of an equation to the other along with a change of sign -00869467 04 n 01 number_crunching 0 001 @ 00868910 n 0000 | performing complex and lengthy numerical calculations -00869583 04 n 03 mathematical_process 0 mathematical_operation 0 operation 1 012 @ 00868910 n 0000 ;c 06000644 n 0000 ~ 00870312 n 0000 ~ 00870453 n 0000 ~ 00870640 n 0000 ~ 00870786 n 0000 ~ 00871418 n 0000 ~ 00872411 n 0000 ~ 00872541 n 0000 ~ 00872722 n 0000 ~ 00873381 n 0000 ~ 00873798 n 0000 | (mathematics) calculation by mathematical methods; "the problems at the end of the chapter demonstrated the mathematical processes involved in the derivation"; "they were learning the basic operations of arithmetic" -00870101 04 n 01 recalculation 0 002 @ 00868910 n 0000 + 00639693 v 0101 | the act of calculating again (usually to eliminate errors or to include additional data); "recalculation yielded a much larger value" -00870312 04 n 01 permutation 1 002 @ 00869583 n 0000 + 00380424 v 0101 | the act of changing the arrangement of a given number of elements -00870453 04 n 01 combination 1 004 @ 00869583 n 0000 + 00472534 a 0101 + 01385170 v 0102 + 00193486 v 0102 | the act of arranging elements into specified groups without regard to order -00870640 04 n 01 differentiation 1 002 @ 00869583 n 0000 + 00642803 v 0101 | the mathematical process of obtaining the derivative of a function -00870786 04 n 01 maximization 1 001 @ 00869583 n 0000 | the mathematical process of finding the maximum value of a function -00870912 04 n 01 division 1 004 @ 00872541 n 0000 + 00642098 v 0101 ~ 00871123 n 0000 ~ 00871263 n 0000 | an arithmetic operation that is the inverse of multiplication; the quotient of two numbers is computed -00871123 04 n 01 long_division 0 001 @ 00870912 n 0000 | the operation of division in which the sequence of steps are indicated in detail -00871263 04 n 01 short_division 0 001 @ 00870912 n 0000 | the operation of division in which the sequence of steps is performed without writing them out -00871418 04 n 01 integration 3 002 @ 00869583 n 0000 + 00642980 v 0101 | an operation used in the calculus whereby the integral of a function is determined -00871576 04 n 02 multiplication 0 times 0 003 @ 00872541 n 0000 + 00641672 v 0101 + 00247390 v 0101 | an arithmetic operation that is the inverse of division; the product of two numbers is computed; "the multiplication of four by three gives twelve"; "four times three equals twelve" -00871862 04 n 02 subtraction 1 minus 0 002 @ 00872541 n 0000 + 00641252 v 0101 | an arithmetic operation in which the difference between two numbers is calculated; "the subtraction of three from four leaves one"; "four minus three equals one" -00872107 04 n 03 summation 1 addition 1 plus 0 005 @ 00872541 n 0000 + 00949288 v 0208 + 00640828 v 0201 + 00049683 a 0101 + 00949288 v 0104 | the arithmetic operation of summing; calculating the sum of two or more numbers; "the summation of four and three gives seven"; "four plus three equals seven" -00872411 04 n 02 exponentiation 0 involution 1 001 @ 00869583 n 0000 | the process of raising a quantity to some assigned power -00872541 04 n 01 arithmetic_operation 0 005 @ 00869583 n 0000 ~ 00870912 n 0000 ~ 00871576 n 0000 ~ 00871862 n 0000 ~ 00872107 n 0000 | a mathematical operation involving numbers -00872722 04 n 01 matrix_operation 0 005 @ 00869583 n 0000 ~ 00872900 n 0000 ~ 00872986 n 0000 ~ 00873084 n 0000 ~ 00873238 n 0000 | a mathematical operation involving matrices -00872900 04 n 01 matrix_addition 0 001 @ 00872722 n 0000 | the addition of matrices -00872986 04 n 01 matrix_multiplication 0 001 @ 00872722 n 0000 | the multiplication of matrices -00873084 04 n 01 matrix_inversion 0 001 @ 00872722 n 0000 | determination of a matrix that when multiplied by the given matrix will yield a unit matrix -00873238 04 n 01 matrix_transposition 0 001 @ 00872722 n 0000 | the interchange of each row of a square matrix with the corresponding column -00873381 04 n 01 construction 2 003 @ 00869583 n 0000 + 01583142 v 0101 ~ 00873671 n 0000 | drawing a figure satisfying certain conditions as part of solving a problem or proving a theorem; "the assignment was to make a construction that could be used in proving the Pythagorean theorem" -00873671 04 n 01 quadrature 0 001 @ 00873381 n 0000 | the construction of a square having the same area as some other figure -00873798 04 n 02 relaxation 2 relaxation_method 0 001 @ 00869583 n 0000 | a method of solving simultaneous equations by guessing a solution and then reducing the errors that result by successive approximations until all the errors are less than some specified amount -00874067 04 n 03 judgment 2 judgement 2 assessment 0 012 @ 00030358 n 0000 + 00648977 a 0101 + 00971650 v 0103 + 00672277 v 0101 + 00670261 v 0103 ~ 00694681 n 0000 ~ 00874457 n 0000 ~ 00874621 n 0000 ~ 00874806 n 0000 ~ 00875246 n 0000 ~ 00875671 n 0000 ~ 00875838 n 0000 | the act of judging or assessing a person or situation or event; "they criticized my judgment of the contestants" -00874457 04 n 01 adjudication 0 001 @ 00874067 n 0000 | the final judgment in a legal proceeding; the act of pronouncing judgment based on the evidence presented -00874621 04 n 01 disapproval 0 006 @ 00874067 n 0000 + 00807178 v 0101 ! 01215392 n 0102 ~ 01219893 n 0000 ~ 01223257 n 0000 ~ 01223488 n 0000 | the act of disapproving or condemning -00874806 04 n 02 evaluation 0 rating 0 004 @ 00874067 n 0000 + 00660971 v 0201 + 00681429 v 0102 ~ 00874977 n 0000 | act of ascertaining or fixing the value or worth of -00874977 04 n 03 marking 0 grading 1 scoring 0 005 @ 00874806 n 0000 + 00657728 v 0302 + 00657728 v 0201 + 00657550 v 0201 + 00657728 v 0103 | evaluation of performance by assigning a grade or score; "what he disliked about teaching was all the grading he had to do" -00875246 04 n 02 estimate 1 estimation 1 004 @ 00874067 n 0000 + 00672433 v 0201 ~ 00875519 n 0000 ~ 00952214 n 0000 | a judgment of the qualities of something or somebody; "many factors are involved in any estimate of human life"; "in my estimation the boy is innocent" -00875519 04 n 01 appraisal 0 001 @ 00875246 n 0000 | an expert estimation of the quality, quantity, and other characteristics of someone or something -00875671 04 n 01 logistic_assessment 0 002 @ 00874067 n 0000 ;c 08199025 n 0000 | a judgment of the logistic support required for some particular military operation -00875838 04 n 02 value_judgment 0 value_judgement 0 002 @ 00874067 n 0000 ~ 00876062 n 0000 | an assessment that reveals more about the values of the person making the assessment than about the reality of what is assessed -00876062 04 n 01 moralism 0 003 @ 00875838 n 0000 + 01548925 a 0101 + 10296444 n 0103 | judgments about another person's morality; "he could not stand her hectoring moralism" -00876239 04 n 02 percussion 2 pleximetry 0 002 @ 00876542 n 0000 + 01248023 v 0101 | tapping a part of the body for diagnostic purposes -00876377 04 n 01 succussion 0 002 @ 00876542 n 0000 + 01890351 v 0101 | shaking a person to determine whether a large amount of liquid is present in a body cavity -00876542 04 n 01 auscultation 0 005 @ 00882159 n 0000 @ 00177127 n 0000 + 02150192 v 0101 ~ 00876239 n 0000 ~ 00876377 n 0000 | listening to sounds within the body (usually with a stethoscope) -00876737 04 n 01 sensory_activity 0 002 @ 00407535 n 0000 ~ 00876874 n 0000 | activity intended to achieve a particular sensory result -00876874 04 n 02 sensing 0 perception 0 009 @ 00876737 n 0000 + 02945377 a 0201 + 02106506 v 0201 + 02106006 v 0102 ~ 00877127 n 0000 ~ 00882159 n 0000 ~ 00882554 n 0000 ~ 00882702 n 0000 ~ 00882961 n 0000 | becoming aware of something via the senses -00877127 04 n 03 look 0 looking 1 looking_at 0 013 @ 00876874 n 0000 + 02130524 v 0101 ~ 00877625 n 0000 ~ 00878052 n 0000 ~ 00878221 n 0000 ~ 00878328 n 0000 ~ 00878456 n 0000 ~ 00879156 n 0000 ~ 00879607 n 0000 ~ 00879759 n 0000 ~ 00881545 n 0000 ~ 00881649 n 0000 ~ 00882045 n 0000 | the act of directing the eyes toward something and perceiving it visually; "he went out to have a look"; "his look was fixed on her eyes"; "he gave it a good looking at"; "his camera does his looking for him" -00877625 04 n 03 glance 0 glimpse 0 coup_d'oeil 0 005 @ 00877127 n 0000 + 02119470 v 0201 + 02165304 v 0101 ~ 00877786 n 0000 ~ 00877924 n 0000 | a quick look -00877786 04 n 01 eye-beaming 0 001 @ 00877625 n 0000 | a radiant glance of the eye; "he pretended profundity by eye-beamings at people" -00877924 04 n 02 side-glance 0 side-look 0 001 @ 00877625 n 0000 | a glance sideways; "she shot him an impatient side-glance" -00878052 04 n 01 scrutiny 1 006 @ 00877127 n 0000 + 10565502 n 0101 + 02153387 v 0103 + 00697062 v 0102 + 02153387 v 0104 + 00697062 v 0103 | a prolonged intense look -00878221 04 n 02 peek 0 peep 0 003 @ 00877127 n 0000 + 02165146 v 0201 + 02165304 v 0102 | a secret look -00878328 04 n 01 squint 0 002 @ 00877127 n 0000 + 00008602 v 0101 | the act of squinting; looking with the eyes partly closed -00878456 04 n 01 stare 0 007 @ 00877127 n 0000 + 00033406 v 0101 + 02132745 v 0102 ~ 00878648 n 0000 ~ 00878797 n 0000 ~ 00878926 n 0000 ~ 00879037 n 0000 | a fixed look with eyes open wide -00878648 04 n 02 gaze 0 regard 0 003 @ 00878456 n 0000 + 02133185 v 0201 + 02132745 v 0101 | a long fixed look; "he fixed his paternal gaze on me" -00878797 04 n 02 glare 0 glower 0 004 @ 00878456 n 0000 + 00032981 v 0202 + 00033203 v 0201 + 00033203 v 0102 | an angry stare -00878926 04 n 01 contemplation 1 002 @ 00878456 n 0000 + 02164825 v 0101 | a long and thoughtful observation -00879037 04 n 01 gape 1 002 @ 00878456 n 0000 + 02164531 v 0102 | a stare of amazement (usually with the mouth open) -00879156 04 n 01 evil_eye 0 001 @ 00877127 n 0000 | a look that is believed to have the power of inflicting harm -00879271 04 n 02 inspection 0 review 2 004 @ 00635850 n 0000 + 00696700 v 0201 + 01844048 v 0102 ~ 00141806 n 0000 | a formal or official examination; "the platoon stood ready for review"; "we had to wait for the inspection before we could use the elevator" -00879531 04 n 01 resurvey 0 001 @ 00644503 n 0000 | a new survey or study -00879607 04 n 02 sightseeing 0 rubber-necking 0 003 @ 00877127 n 0000 + 02150740 v 0201 + 01843904 v 0101 | going about to look at places of interest -00879759 04 n 03 observation 0 observance 0 watching 0 010 @ 00877127 n 0000 + 02128653 v 0301 + 02169352 v 0201 + 02455407 v 0102 + 02118933 v 0103 + 02169352 v 0101 + 00732552 v 0101 ~ 00880046 n 0000 ~ 00880269 n 0000 ~ 00880563 n 0000 | the act of observing; taking a patient look -00880046 04 n 01 monitoring 0 002 @ 00879759 n 0000 + 02163301 v 0101 | the act of observing something (and sometimes keeping a record of it); "the monitoring of enemy communications plays an important role in war times" -00880269 04 n 01 sighting 0 003 @ 00879759 n 0000 + 02163746 v 0102 ~ 00880431 n 0000 | the act of observing; "several sightings of enemy troops were reported" -00880431 04 n 01 landfall 0 001 @ 00880269 n 0000 | the first sighting of land from the sea after a voyage (or flight over water) -00880563 04 n 01 stargazing 0 002 @ 00879759 n 0000 + 02133297 v 0101 | observation of the stars -00880662 04 n 02 watch 0 vigil 1 008 @ 00652466 n 0000 + 02455407 v 0101 + 02150948 v 0101 + 02131963 v 0101 + 02128653 v 0101 + 02150510 v 0101 ~ 00881257 n 0000 ~ 00881441 n 0000 | a purposeful surveillance to guard or observe -00880893 04 n 01 stakeout 0 001 @ 00652466 n 0000 | surveillance of some place or some person by the police (as in anticipation of a crime) -00881035 04 n 01 surveillance_of_disease 0 001 @ 00652466 n 0000 | the ongoing systematic collection and analysis of data about an infectious disease that can lead to action being taken to control or prevent the disease -00881257 04 n 02 listening_watch 0 continuous_receiver_watch 0 001 @ 00880662 n 0000 | a watch established for the reception of traffic of interest to the unit maintaining the watch -00881441 04 n 01 spying 1 002 @ 00880662 n 0000 + 00785690 v 0101 | keeping a secret or furtive watch -00881545 04 n 02 lookout 0 outlook 0 002 @ 00877127 n 0000 + 02151966 v 0102 | the act of looking out -00881649 04 n 03 view 0 survey 1 sight 0 005 @ 00877127 n 0000 + 02163746 v 0302 + 00646738 v 0201 + 02150948 v 0102 ~ 00881914 n 0000 | the act of looking or seeing or observing; "he tried to get a better view of it"; "his survey of the battlefield was limited" -00881914 04 n 01 eyeful 0 001 @ 00881649 n 0000 | a full view; a good look; "they wanted to see violence and they got an eyeful" -00882045 04 n 01 dekko 0 003 @ 00877127 n 0000 ;u 07157273 n 0000 ;r 08860123 n 0000 | British slang for a look -00882159 04 n 02 listening 0 hearing 0 007 @ 00876874 n 0000 + 02171039 v 0202 + 02571901 v 0103 + 02171039 v 0101 + 02169891 v 0101 ~ 00876542 n 0000 ~ 00882460 n 0000 | the act of hearing attentively; "you can learn a lot by just listening"; "they make good music--you should give them a hearing" -00882460 04 n 02 relistening 0 rehearing 0 001 @ 00882159 n 0000 | the act of hearing again -00882554 04 n 01 lipreading 0 002 @ 00876874 n 0000 + 00627970 v 0101 | perceiving what a person is saying by observing the movements of the lips -00882702 04 n 02 taste 0 tasting 0 007 @ 00876874 n 0000 + 02194495 v 0202 + 02191546 v 0201 + 02192992 v 0101 + 02194495 v 0102 + 02191546 v 0101 + 02194286 v 0101 | a kind of sensing; distinguishing substances by means of the taste buds; "a wine tasting" -00882961 04 n 02 smell 0 smelling 0 005 @ 00876874 n 0000 + 02124748 v 0201 + 02123672 v 0101 + 02124748 v 0101 ~ 00883139 n 0000 | the act of perceiving the odor of something -00883139 04 n 02 sniff 0 snuff 0 004 @ 00882961 n 0000 + 00109263 v 0201 + 02126152 v 0201 + 02125032 v 0101 | sensing an odor by inhaling through the nose -00883297 04 n 06 education 0 instruction 1 teaching 1 pedagogy 1 didactics 0 educational_activity 0 032 @ 00407535 n 0000 + 01324131 a 0502 + 02945971 a 0402 + 02945971 a 0401 + 00829107 v 0301 + 02981759 a 0201 + 00829107 v 0203 + 01324565 a 0101 + 10045454 n 0101 + 10045454 n 0102 + 02387486 v 0101 + 00603298 v 0104 -c 00611433 n 0000 %p 00728849 n 0000 %p 00728975 n 0000 %p 00729108 n 0000 %p 00729285 n 0000 ~ 00884202 n 0000 ~ 00884311 n 0000 ~ 00884466 n 0000 ~ 00885858 n 0000 ~ 00886039 n 0000 ~ 00886272 n 0000 ~ 00886699 n 0000 ~ 00886807 n 0000 ~ 00887702 n 0000 ~ 00891071 n 0000 -c 05664640 n 0000 -c 05753564 n 0000 -c 05909730 n 0000 -c 08132637 n 0000 -c 13323988 n 0000 | the activities of educating or instructing; activities that impart knowledge or skill; "he received no formal education"; "our instruction was carefully programmed"; "good classroom teaching is seldom rewarded" -00884202 04 n 01 coeducation 0 001 @ 00883297 n 0000 | education of men and women in the same institutions -00884311 04 n 01 continuing_education 0 001 @ 00883297 n 0000 | a program of instruction designed primarily for adult students who participate part-time -00884466 04 n 04 course 1 course_of_study 0 course_of_instruction 0 class 0 022 @ 00883297 n 0000 %p 00885088 n 0000 ~ 00885297 n 0000 ~ 00885457 n 0000 ~ 00885574 n 0000 %p 00889472 n 0000 ~ 00890320 n 0000 ~ 00890441 n 0000 ~ 00890568 n 0000 ~ 00890808 n 0000 ~ 00890941 n 0000 ~ 00891224 n 0000 ~ 00891345 n 0000 ~ 00891512 n 0000 ~ 00891642 n 0000 ~ 00891850 n 0000 ~ 00892036 n 0000 ~ 00892145 n 0000 ~ 00892254 n 0000 ~ 00892413 n 0000 %p 00892861 n 0000 %p 01232246 n 0000 | education imparted in a series of lessons or meetings; "he took a course in basket weaving"; "flirting is not unknown in college classes" -00885088 04 n 01 coursework 0 002 @ 00575741 n 0000 #p 00884466 n 0000 | work assigned to and done by a student during a course of study; usually it is evaluated as part of the student's grade in the course -00885297 04 n 01 adult_education 0 001 @ 00884466 n 0000 | a course (via lectures or correspondence) for adults who are not otherwise engaged in formal study -00885457 04 n 01 art_class 0 002 @ 00884466 n 0000 ~ 00885764 n 0000 | a class in which you learn to draw or paint -00885574 04 n 01 childbirth-preparation_class 0 001 @ 00884466 n 0000 | a course that teaches pregnant women to use breathing and concentration and exercise techniques to use during labor -00885764 04 n 01 life_class 0 001 @ 00885457 n 0000 | an art class using a live human model -00885858 04 n 01 elementary_education 0 001 @ 00883297 n 0000 | education in elementary subjects (reading and writing and arithmetic) provided to young students at a grade school -00886039 04 n 03 extension 0 extension_service 0 university_extension 0 002 @ 00883297 n 0000 %p 00890941 n 0000 | an educational opportunity provided by colleges and universities to people who are not enrolled as regular students -00886272 04 n 01 extracurricular_activity 0 003 @ 00883297 n 0000 ~ 00886456 n 0000 ~ 00886582 n 0000 | educational activities not falling within the scope of the regular curriculum -00886456 04 n 01 dramatics 0 001 @ 00886272 n 0000 | participation in theatrical productions as an extracurricular activity -00886582 04 n 01 athletics 1 001 @ 00886272 n 0000 | participation in sports events as an extracurricular activity -00886699 04 n 01 higher_education 0 001 @ 00883297 n 0000 | education provided by a college or university -00886807 04 n 01 secondary_education 0 001 @ 00883297 n 0000 | education beyond the elementary grades; provided by a high school or college preparatory school -00886968 04 n 01 spectator_sport 0 001 @ 00523513 n 0000 | a sport that many people find entertaining to watch -00887081 04 n 03 teaching 0 instruction 0 pedagogy 0 015 @ 00611433 n 0000 + 02945971 a 0302 + 02945971 a 0301 + 02981759 a 0201 ~ 00887882 n 0000 ~ 00888037 n 0000 ~ 00888162 n 0000 ~ 00888284 n 0000 ~ 00888693 n 0000 ~ 00888796 n 0000 ~ 00889294 n 0000 ~ 00889472 n 0000 ~ 00892538 n 0000 ~ 00892711 n 0000 ~ 00892861 n 0000 | the profession of a teacher; "he prepared for teaching while still in college"; "pedagogy is recognized as an important profession" -00887544 04 n 01 team_sport 0 001 @ 00523513 n 0000 | a sport that involves competition between teams of players; "baseball is a team sport by golf is not" -00887702 04 n 01 team_teaching 0 001 @ 00883297 n 0000 | a method of coordinated classroom teaching involving a team of teachers working together with a single group of students -00887882 04 n 01 catechesis 0 003 @ 00887081 n 0000 + 02982102 a 0102 + 02982102 a 0101 | oral religious instruction (as before baptism or confirmation) -00888037 04 n 01 catechetical_instruction 0 001 @ 00887081 n 0000 | teaching religious principles by questions and answers -00888162 04 n 01 language_teaching 0 001 @ 00887081 n 0000 | teaching people to speak and understand a foreign language -00888284 04 n 01 teaching_reading 0 003 @ 00887081 n 0000 ~ 00888409 n 0000 ~ 00888546 n 0000 | teaching beginners to read -00888409 04 n 01 phonics 0 001 @ 00888284 n 0000 | teaching reading by training beginners to associate letters with their sound values -00888546 04 n 01 whole-word_method 0 001 @ 00888284 n 0000 | teaching reading by training beginners to associate printed words with spoken words -00888693 04 n 01 schooling 0 002 @ 00887081 n 0000 + 02387910 v 0101 | the act of teaching at school -00888796 04 n 01 indoctrination 0 004 @ 00887081 n 0000 + 00605086 v 0101 ~ 00888960 n 0000 ~ 00889082 n 0000 | teaching someone to accept doctrines uncritically -00888960 04 n 01 brainwashing 0 001 @ 00888796 n 0000 | forcible indoctrination into a new set of attitudes and beliefs -00889082 04 n 03 inculcation 0 ingraining 0 instilling 0 004 @ 00888796 n 0000 + 00606600 v 0302 + 00728393 v 0303 + 00606600 v 0101 | teaching or impressing upon the mind by frequent instruction or repetition -00889294 04 n 03 tutelage 0 tuition 0 tutorship 0 003 @ 00887081 n 0000 + 09931418 n 0303 + 00830188 v 0101 | teaching pupils individually (usually by a tutor hired privately) -00889472 04 n 01 lesson 1 007 @ 00887081 n 0000 #p 00884466 n 0000 ~ 00729478 n 0000 ~ 00889682 n 0000 ~ 00889760 n 0000 ~ 00890059 n 0000 ~ 00890145 n 0000 | a unit of instruction; "he took driving lessons" -00889682 04 n 01 dance_lesson 0 001 @ 00889472 n 0000 | a lesson in dancing -00889760 04 n 01 music_lesson 0 003 @ 00889472 n 0000 ~ 00889883 n 0000 ~ 00889971 n 0000 | a lesson in performing music -00889883 04 n 01 piano_lesson 0 001 @ 00889760 n 0000 | a lesson in playing the piano -00889971 04 n 01 violin_lesson 0 001 @ 00889760 n 0000 | a less in playing the violin -00890059 04 n 01 tennis_lesson 0 001 @ 00889472 n 0000 | a lesson in playing tennis -00890145 04 n 01 golf_lesson 0 001 @ 00889472 n 0000 | a lesson in playing golf -00890227 04 n 01 history_lesson 0 001 @ 00729285 n 0000 | a lesson in the facts of history -00890320 04 n 01 correspondence_course 0 001 @ 00884466 n 0000 | a course offered (by mail) by a correspondence school -00890441 04 n 01 course_of_lectures 0 002 @ 00884466 n 0000 #p 06676416 n 0000 | a series of lectures dealing with a subject -00890568 04 n 01 directed_study 0 001 @ 00884466 n 0000 | a course of study that is supervised and controlled by a specialist in the subject; "he registered for directed study"; "he got credit for directed study"; "he did directed study" -00890808 04 n 02 elective_course 0 elective 0 001 @ 00884466 n 0000 | a course that the student can select from among alternatives -00890941 04 n 01 extension_course 0 002 @ 00884466 n 0000 #p 00886039 n 0000 | a course offered as part of an extension service -00891071 04 n 01 work-study_program 0 001 @ 00883297 n 0000 | an educational plan in which students alternate between paid employment and formal study -00891224 04 n 01 home_study 0 001 @ 00884466 n 0000 | a course of study carried out at home rather than in a classroom -00891345 04 n 01 industrial_arts 0 001 @ 00884466 n 0000 | a course in the methods of using tools and machinery as taught in secondary schools and technical schools -00891512 04 n 02 orientation_course 0 orientation 1 001 @ 00884466 n 0000 | a course introducing a new situation or environment -00891642 04 n 02 propaedeutic 0 propaedeutics 0 003 @ 00884466 n 0000 + 00126830 a 0203 + 00126830 a 0103 | a course that provides an introduction to an art or science (or to more advanced study generally) -00891850 04 n 02 refresher_course 0 refresher 0 002 @ 00884466 n 0000 + 00696852 v 0203 | a course that reviews and updates a topic for those who have not kept abreast of developments -00892036 04 n 01 required_course 0 001 @ 00884466 n 0000 | a course that all students are required to take -00892145 04 n 01 seminar 0 001 @ 00884466 n 0000 | a course offered for a small group of advanced students -00892254 04 n 02 shop_class 0 shop 0 001 @ 00884466 n 0000 | a course of instruction in a trade (as carpentry or electricity); "I built a birdhouse in shop" -00892413 04 n 01 workshop 0 001 @ 00884466 n 0000 | a brief intensive course for a small group; emphasizes problem solving -00892538 04 n 02 sleep-learning 0 hypnopedia 0 001 @ 00887081 n 0000 | teaching during sleep (as by using recordings to teach a foreign language to someone who is asleep) -00892711 04 n 01 spoonfeeding 1 002 @ 00887081 n 0000 + 00787876 v 0101 | teaching in an overly simplified way that discourages independent thought -00892861 04 n 02 lecture 0 lecturing 0 006 @ 00887081 n 0000 #p 00884466 n 0000 + 00594146 n 0101 + 00830761 v 0101 %p 00893088 n 0000 ~ 00893243 n 0000 | teaching by giving a discourse on some subject (typically to a class) -00893088 04 n 01 lecture_demonstration 0 002 @ 00521562 n 0000 #p 00892861 n 0000 | presentation of an example of what the lecturer is discoursing about -00893243 04 n 01 talk 2 002 @ 00892861 n 0000 ~ 00893402 n 0000 | the act of giving a talk to an audience; "I attended an interesting talk on local history" -00893402 04 n 01 chalk_talk 0 001 @ 00893243 n 0000 | a talk that uses a blackboard and chalk -00893498 04 n 01 athletic_training 0 002 @ 00893955 n 0000 ~ 00893649 n 0000 | the course of practice and exercise and diet undertaken by an athlete -00893649 04 n 01 fartlek 0 001 @ 00893498 n 0000 | a method of athletic training (especially for runners) in which strenuous effort and normal effort alternate in a continuous exercise -00893836 04 n 01 discipline 0 002 @ 00893955 n 0000 + 01300661 a 0102 | training to improve strength or self-control -00893955 04 n 03 training 0 preparation 0 grooming 1 017 @ 00407535 n 0000 + 02387034 v 0302 + 02387034 v 0201 + 00603298 v 0203 + 02387034 v 0103 + 00833702 v 0102 + 00603298 v 0101 + 00100044 v 0101 ~ 00893498 n 0000 ~ 00893836 n 0000 ~ 00894359 n 0000 ~ 00894552 n 0000 ~ 00895501 n 0000 ~ 00895879 n 0000 ~ 00895983 n 0000 ~ 00896114 n 0000 ~ 00896228 n 0000 | activity leading to skilled behavior -00894359 04 n 01 drill 1 003 @ 00893955 n 0000 ;c 08199025 n 0000 + 00604094 v 0101 | (military) the training of soldiers to march (as in ceremonial parades) or to perform the manual of arms -00894552 04 n 05 exercise 2 practice 2 drill 0 practice_session 0 recitation 0 015 @ 00893955 n 0000 + 00606335 v 0301 + 00606093 v 0301 + 01723224 v 0203 + 00606093 v 0203 + 00606093 v 0102 ~ 00894979 n 0000 ~ 00895135 n 0000 ~ 00896348 n 0000 ~ 00896832 n 0000 ~ 00897026 n 0000 ~ 00897811 n 0000 ~ 00898127 n 0000 ~ 00898286 n 0000 ~ 00898425 n 0000 | systematic training by multiple repetitions; "practice makes perfect" -00894979 04 n 01 fire_drill 0 001 @ 00894552 n 0000 | an exercise intended to train people in duties and escape procedures to be followed in case of fire -00895135 04 n 02 manual_of_arms 0 manual 0 003 @ 00894552 n 0000 ;c 08199025 n 0000 %p 00895292 n 0000 | (military) a prescribed drill in handling a rifle -00895292 04 n 01 order_arms 0 002 @ 05079866 n 0000 #p 00895135 n 0000 | a position in the manual of arms; the rifle is held vertically on the right side with the butt on the ground; often used as a command -00895501 04 n 01 military_training 0 005 @ 00893955 n 0000 ;c 08199025 n 0000 ~ 00895680 n 0000 %p 00896348 n 0000 %p 00959992 n 0000 | training soldiers in military procedures -00895680 04 n 01 basic_training 0 002 @ 00895501 n 0000 ;c 08199025 n 0000 | the initial period of training for new military personnel; involves intense physical activity and behavioral discipline -00895879 04 n 01 retraining 0 002 @ 00893955 n 0000 + 00603822 v 0101 | training for a new occupation -00895983 04 n 01 schooling 1 001 @ 00893955 n 0000 | the training of an animal (especially the training of a horse for dressage) -00896114 04 n 02 skull_session 0 skull_practice 0 001 @ 00893955 n 0000 | teaching strategy to an athletic team -00896228 04 n 01 toilet_training 0 002 @ 00893955 n 0000 + 00604449 v 0101 | training a young child to use the toilet -00896348 04 n 01 military_drill 0 005 @ 00894552 n 0000 #p 00895501 n 0000 ;c 08199025 n 0000 ~ 00896526 n 0000 ~ 00896688 n 0000 | training in marching and the use of weapons -00896526 04 n 01 close-order_drill 0 002 @ 00896348 n 0000 ;c 08199025 n 0000 | (military) military drill of troops in standard marching (shoulder-to-shoulder) -00896688 04 n 01 square-bashing 0 004 @ 00896348 n 0000 ;r 08860123 n 0000 ;c 08199025 n 0000 ;u 07157273 n 0000 | drill on a barracks square -00896832 04 n 01 rehearsal 0 002 @ 00894552 n 0000 ;c 06136258 n 0000 | (psychology) a form of practice; repetition of information (silently or aloud) in order to keep it in short-term memory -00897026 04 n 02 rehearsal 1 dry_run 0 006 @ 00894552 n 0000 ;c 06892775 n 0000 + 01723224 v 0101 ~ 00897365 n 0000 ~ 00897506 n 0000 ~ 00897608 n 0000 | a practice session in preparation for a public performance (as of a play or speech or concert); "he missed too many rehearsals"; "a rehearsal will be held the day before the wedding" -00897365 04 n 01 dress_rehearsal 0 001 @ 00897026 n 0000 | a full uninterrupted rehearsal in costumes shortly before the first performance -00897506 04 n 01 run-through 0 002 @ 00897026 n 0000 + 01161947 v 0102 | an uninterrupted rehearsal -00897608 04 n 01 walk-through 0 002 @ 00897026 n 0000 + 01723437 v 0101 | a first perfunctory rehearsal of a theatrical production in which actors read their lines from the script and move as directed -00897811 04 n 02 review 1 brushup 0 004 @ 00894552 n 0000 + 00696852 v 0202 + 00696852 v 0101 ~ 00897989 n 0000 | practice intended to polish performance or refresh the memory -00897989 04 n 01 rub_up 0 002 @ 00897811 n 0000 ;r 08860123 n 0000 | a review that refreshes your memory; "I need a rub up on my Latin" -00898127 04 n 01 scrimmage 1 003 @ 00894552 n 0000 ;c 00469651 n 0000 + 01723579 v 0101 | (American football) practice play between a football team's squads -00898286 04 n 01 shadowboxing 0 002 @ 00894552 n 0000 + 01420616 v 0101 | sparring with an imaginary opponent (for exercise or training) -00898425 04 n 01 target_practice 0 001 @ 00894552 n 0000 | practice in shooting at targets -00898518 04 n 01 representation 0 009 @ 00407535 n 0000 + 02699497 v 0101 ~ 00898804 n 0000 ~ 00899292 n 0000 ~ 00899761 n 0000 ~ 00899927 n 0000 ~ 00900207 n 0000 ~ 00900375 n 0000 ~ 00900581 n 0000 | an activity that stands as an equivalent of something or results in an equivalent -00898804 04 n 03 model 0 modelling 0 modeling 0 007 @ 00898518 n 0000 + 01697406 v 0301 + 01697406 v 0201 + 01697406 v 0101 + 01697027 v 0101 + 01743784 v 0101 ~ 00899049 n 0000 | the act of representing something (usually on a smaller scale) -00899049 04 n 01 simulation 1 002 @ 00898804 n 0000 ~ 00461402 n 0000 | the act of imitating the behavior of some situation or some process by means of something suitably analogous (especially for the purpose of study or personnel training) -00899292 04 n 02 dramatization 0 dramatisation 0 007 @ 00898518 n 0000 + 01701311 v 0202 + 00988287 v 0202 + 01701311 v 0101 + 00988287 v 0101 ~ 00899501 n 0000 ~ 00899657 n 0000 | a dramatic representation -00899501 04 n 02 guerrilla_theater 0 street_theater 0 001 @ 00899292 n 0000 | dramatization of a social issue; enacted outside in a park or on the street -00899657 04 n 01 puppetry 0 001 @ 00899292 n 0000 | a stilted dramatic performance (as if by puppets) -00899761 04 n 02 pageant 0 pageantry 0 001 @ 00898518 n 0000 | an elaborate representation of scenes from history etc; usually involves a parade with rich costumes -00899927 04 n 01 figuration 1 003 @ 00898518 n 0000 + 01635432 v 0107 ~ 00900070 n 0000 | representing figuratively as by emblem or allegory -00900070 04 n 02 symbolizing 0 symbolising 0 002 @ 00899927 n 0000 + 00836236 v 0102 | the act of representing something with a symbol -00900207 04 n 03 schematization 0 schematisation 0 diagramming 0 003 @ 00898518 n 0000 + 01693453 v 0301 + 01632103 v 0101 | providing a chart or outline of a system -00900375 04 n 02 pictorial_representation 0 picturing 0 005 @ 00898518 n 0000 + 01686956 v 0201 ~ 00900726 n 0000 ~ 00901083 n 0000 ~ 00903559 n 0000 | visual representation as by photography or painting -00900581 04 n 01 typification 0 002 @ 00898518 n 0000 + 00836236 v 0101 | the act of representing by a type or symbol; the action of typifying -00900726 04 n 03 depiction 0 delineation 0 portrayal 0 007 @ 00900375 n 0000 + 01688771 v 0301 + 02736778 v 0202 + 01689379 v 0201 + 01582645 v 0205 + 01686956 v 0102 ~ 00900957 n 0000 | representation by drawing or painting etc -00900957 04 n 01 portraiture 0 003 @ 00900726 n 0000 + 01688771 v 0101 + 01688256 v 0101 | the activity of making portraits -00901083 04 n 02 imaging 0 tomography 0 007 @ 00900375 n 0000 ;c 06043075 n 0000 ~ 00901316 n 0000 ~ 00901789 n 0000 ~ 00902376 n 0000 ~ 00902579 n 0000 ~ 00903309 n 0000 | (medicine) obtaining pictures of the interior of the body -00901316 04 n 02 X-raying 0 X-radiation 0 004 @ 00901083 n 0000 + 02149786 v 0101 + 01003885 v 0101 ~ 00901476 n 0000 | obtaining images by the use of X rays -00901476 04 n 06 computerized_tomography 0 computed_tomography 0 CT 0 computerized_axial_tomography 0 computed_axial_tomography 0 CAT 0 001 @ 00901316 n 0000 | a method of examining body organs by scanning them with X rays and using a computer to construct a series of cross-sectional scans along a single axis -00901789 04 n 04 sonography 0 ultrasonography 0 echography 0 ultrasound 0 004 @ 00901083 n 0000 @ 00153288 n 0000 ~ 00902108 n 0000 ~ 00902240 n 0000 | using the reflections of high-frequency sound waves to construct an image of a body organ (a sonogram); commonly used to observe fetal growth or study bodily organs -00902108 04 n 01 A-scan_ultrasonography 0 001 @ 00901789 n 0000 | the use of ultrasonography to measure the length of the eyeball -00902240 04 n 01 B-scan_ultrasonography 0 001 @ 00901789 n 0000 | the use of ultrasonography to view structure in the back of the eye -00902376 04 n 02 positron_emission_tomography 0 PET 0 001 @ 00901083 n 0000 | using a computerized radiographic technique to examine the metabolic activity in various tissues (especially in the brain) -00902579 04 n 02 magnetic_resonance_imaging 0 MRI 0 002 @ 00901083 n 0000 ~ 00902757 n 0000 | the use of nuclear magnetic resonance of protons to produce proton density images -00902757 04 n 02 functional_magnetic_resonance_imaging 0 fMRI 0 002 @ 00902579 n 0000 ~ 00902975 n 0000 | a form of magnetic resonance imaging of the brain that registers blood flow to functioning areas of the brain -00902975 04 n 02 blood-oxygenation_level_dependent_functional_magnetic_resonance_imaging 0 BOLD_FMRI 0 001 @ 00902757 n 0000 | functional magnetic resonance imaging that relies on intrinsic changes in hemoglobin oxygenation -00903201 04 n 01 fluoroscopy 0 001 @ 00903309 n 0000 | examination of body structures using a fluoroscope -00903309 04 n 02 radioscopy 0 radiology 0 005 @ 00901083 n 0000 ;c 06062407 n 0000 + 02786744 a 0201 + 10504206 n 0201 ~ 00903201 n 0000 | (radiology) examination of the inner structure of opaque objects using X rays or other penetrating radiation -00903559 04 n 02 photography 0 picture_taking 0 041 @ 00900375 n 0000 + 02838592 a 0101 + 03925226 n 0101 + 10426749 n 0101 -c 00394135 a 0000 -c 00394331 a 0000 -c 01021794 a 0000 -c 01021923 a 0000 -c 01699410 a 0000 -c 00344421 n 0000 -c 00374677 n 0000 -c 00620554 n 0000 ~ 00904428 n 0000 ~ 00904904 n 0000 ~ 00906975 n 0000 ~ 00907340 n 0000 ~ 00907919 n 0000 -c 05126362 n 0000 -c 06406317 n 0000 -c 06647206 n 0000 -c 10477955 n 0000 -c 13550755 n 0000 -c 13571041 n 0000 -c 00230562 v 0000 -c 00240293 v 0000 -c 00285856 v 0000 -c 00573671 v 0000 -c 01003249 v 0000 -c 01003588 v 0000 -c 01003885 v 0000 -c 01358737 v 0000 -c 02113054 v 0000 -c 02113253 v 0000 -c 02113430 v 0000 -c 02113622 v 0000 -c 02113850 v 0000 -c 02114056 v 0000 -c 02114228 v 0000 -c 02114433 v 0000 -c 02138766 v 0000 -c 02139063 v 0000 | the act of taking and printing photographs -00904428 04 n 01 radiography 0 005 @ 00903559 n 0000 + 02837145 a 0101 + 10503965 n 0101 ~ 00904623 n 0000 ~ 00905192 n 0000 | photography that uses other kinds of radiation than visible light -00904623 04 n 02 roentgenography 0 X-ray_photography 0 009 @ 00904428 n 0000 @ 00177127 n 0000 + 02998438 a 0101 ~ 00905336 n 0000 ~ 00905842 n 0000 ~ 00906140 n 0000 ~ 00906290 n 0000 ~ 00906470 n 0000 ~ 00906664 n 0000 | radiography that uses X-rays to produce a roentgenogram -00904904 04 n 01 xerography 0 002 @ 00903559 n 0000 + 03130858 a 0101 | forming an image by the action of light on a specially coated charged plate; the latent image is developed with powders that adhere only to electrically charged areas; "edge enhancement is intrinsic in xerography" -00905192 04 n 01 xeroradiography 0 001 @ 00904428 n 0000 | radiography using X-rays and xerographic (rather than roentgenographic) techniques -00905336 04 n 01 angiography 0 002 @ 00904623 n 0000 ~ 00905528 n 0000 | roentgenographic examination of blood vessels after injection of a radiopaque contrast medium; produces an angiogram -00905528 04 n 02 lymphangiography 0 lymphography 0 001 @ 00905336 n 0000 | roentgenographic examination of lymph nodes and lymph vessels after injection of a radiopaque contrast medium; produces a lymphangiogram -00905742 04 n 01 arteriography 0 001 @ 00905842 n 0000 | roentgenographic examination of arteries -00905842 04 n 01 arthrography 0 003 @ 00904623 n 0000 ~ 00905742 n 0000 ~ 00906046 n 0000 | roentgenographic examination of a joint after injection of radiopaque contrast medium; produces an arthrogram -00906046 04 n 01 venography 0 001 @ 00905842 n 0000 | roentgenographic examination of veins -00906140 04 n 01 cholangiography 0 001 @ 00904623 n 0000 | roentgenographic examination of the bile ducts after a contrast medium has been injected -00906290 04 n 01 encephalography 0 001 @ 00904623 n 0000 | roentgenography of the brain after spinal fluid has been replaced by a gas (usually oxygen); produces an encephalogram -00906470 04 n 01 myelography 0 001 @ 00904623 n 0000 | roentgenography of the spinal cord to detect possible lesions (usually after injection of a contrast medium into the subarachnoid space) -00906664 04 n 01 pyelography 0 002 @ 00904623 n 0000 ~ 00906829 n 0000 | roentgenography of the kidney and ureters (usually after injection with a radiopaque dye) -00906829 04 n 02 intravenous_pyelography 0 IVP 0 001 @ 00906664 n 0000 | performing pyelography with intravenous injection of a contrast medium -00906975 04 n 01 telephotography 1 001 @ 00903559 n 0000 | photography using a telephoto lens -00907071 04 n 01 telephotography 2 002 @ 00121366 n 0000 ~ 00907235 n 0000 | transmission and reproduction of photographs and charts and pictures over a distance -00907235 04 n 01 radiophotography 0 001 @ 00907071 n 0000 | transmission of photographs by radio waves -00907340 04 n 01 exposure 2 005 @ 00903559 n 0000 + 02113430 v 0101 ~ 00907500 n 0000 ~ 00907642 n 0000 ~ 00907788 n 0000 | the act of exposing film to light -00907500 04 n 01 overexposure 0 002 @ 00907340 n 0000 + 02113622 v 0101 | the act of exposing film to too much light or for too long a time -00907642 04 n 01 underexposure 0 002 @ 00907340 n 0000 + 02114228 v 0101 | the act of exposing film to too little light or for too short a time -00907788 04 n 01 time_exposure 0 001 @ 00907340 n 0000 | exposure of a film for a relatively long time (more than half a second) -00907919 04 n 03 filming 0 cinematography 0 motion-picture_photography 0 006 @ 00903559 n 0000 + 09889539 n 0203 + 01711965 v 0101 + 01002740 v 0101 ~ 00908133 n 0000 ~ 00908405 n 0000 | the act of making a film -00908133 04 n 01 take 0 003 @ 00907919 n 0000 + 01002740 v 0103 ~ 00908292 n 0000 | the act of photographing a scene or part of a scene without interruption -00908292 04 n 01 retake 0 002 @ 00908133 n 0000 + 01003588 v 0101 | a shot or scene that is photographed again -00908405 04 n 01 animation 0 001 @ 00907919 n 0000 | the making of animated cartoons -00908492 04 n 02 creation 0 creative_activity 0 011 @ 00407535 n 0000 + 01621555 v 0103 + 01753788 v 0101 + 01685313 v 0101 ~ 00747215 n 0000 ~ 00908772 n 0000 ~ 00908909 n 0000 ~ 00913585 n 0000 ~ 00927261 n 0000 ~ 00933420 n 0000 ~ 00941777 n 0000 | the human act of creating -00908772 04 n 01 re-creation 0 004 @ 00908492 n 0000 + 01693881 v 0102 + 01619354 v 0101 + 00736799 v 0101 | the act of creating again -00908909 04 n 01 creating_from_raw_materials 0 008 @ 00908492 n 0000 ~ 00715843 n 0000 ~ 00909899 n 0000 ~ 00910203 n 0000 ~ 00911048 n 0000 ~ 00924825 n 0000 ~ 00926668 n 0000 ~ 00926923 n 0000 | the act of creating something that is different from the materials that went into it -00909193 04 n 01 spinning 0 002 @ 00714944 n 0000 + 01518772 v 0101 | creating thread -00909281 04 n 01 weaving 0 003 @ 00714944 n 0000 + 01673891 v 0101 ~ 00909386 n 0000 | creating fabric -00909386 04 n 01 netting 0 002 @ 00909281 n 0000 + 01672168 v 0102 | creating nets -00909471 04 n 01 knitting 0 002 @ 00714944 n 0000 + 01671039 v 0101 | creating knitted wear -00909565 04 n 01 crocheting 0 002 @ 00714944 n 0000 + 01672753 v 0101 | creating a garment of needlework -00909672 04 n 02 lace_making 0 tatting 0 002 @ 00714944 n 0000 + 01674544 v 0201 | the act or art of making handmade lace -00909796 04 n 01 mintage 0 002 @ 00606370 n 0000 + 01639105 v 0101 | act or process of minting coins -00909899 04 n 02 molding 1 casting 1 004 @ 00908909 n 0000 + 01662771 v 0201 + 01697027 v 0102 + 01662771 v 0102 | the act of creating something by casting it in a mold -00910070 04 n 02 needlework 0 needlecraft 0 001 @ 00714944 n 0000 | work (such as sewing or embroidery) that is done with a needle -00910203 04 n 02 recording 0 transcription 0 009 @ 00908909 n 0000 + 00998399 v 0101 ~ 00910533 n 0000 ~ 00910856 n 0000 -c 00999270 v 0000 -c 00999429 v 0000 -c 00999568 v 0000 -c 00999815 v 0000 -c 01000214 v 0000 | the act of making a record (especially an audio record); "she watched the recording from a sound-proof booth" -00910533 04 n 04 lip_synchronization 0 lip_synchronisation 0 lip_synch 0 lip_sync 0 001 @ 00910203 n 0000 | combining audio and video recording in such a way that the sound is perfectly synchronized with the action that produced it; especially synchronizing the movements of a speaker's lips with the sound of his speech -00910856 04 n 01 mastering 0 001 @ 00910203 n 0000 | the act of making a master recording from which copies can be made; "he received a bill for mastering the concert and making 100 copies" -00911048 04 n 02 construction 0 building 0 019 @ 00908909 n 0000 + 01654628 v 0202 + 01654628 v 0101 ~ 00911572 n 0000 ~ 00911752 n 0000 ~ 00911905 n 0000 ~ 00912001 n 0000 ~ 00912165 n 0000 ~ 00912576 n 0000 ~ 00912733 n 0000 ~ 00912822 n 0000 ~ 00913274 n 0000 -c 01271778 v 0000 -c 01655639 v 0000 -c 01655763 v 0000 -c 01655902 v 0000 -c 01656107 v 0000 -c 01661243 v 0000 -c 01739263 v 0000 | the act of constructing something; "during the construction we had to take a detour"; "his hobby was the building of boats" -00911572 04 n 02 crenelation 0 crenellation 0 003 @ 00911048 n 0000 + 02335629 v 0203 + 02335629 v 0102 | the action of constructing ramparts with gaps for firing guns or arrows -00911752 04 n 02 erecting 0 erection 0 004 @ 00911048 n 0000 + 01982866 v 0202 + 01661243 v 0202 + 01661243 v 0102 | the act of building or putting up -00911905 04 n 01 house-raising 0 001 @ 00911048 n 0000 | construction by a group of neighbors -00912001 04 n 02 fabrication 1 assembly 1 003 @ 00911048 n 0000 ! 00912274 n 0203 + 01653442 v 0102 | the act of constructing something (as a piece of machinery) -00912165 04 n 01 dry_walling 0 001 @ 00911048 n 0000 | the activity of building stone walls without mortar -00912274 04 n 03 dismantling 0 dismantlement 0 disassembly 0 005 @ 00407535 n 0000 ! 01229938 n 0301 + 01657977 v 0202 + 01657977 v 0102 ! 00912001 n 0302 | the act of taking something apart (as a piece of machinery); "Russia and the United States discussed the dismantling of their nuclear weapons" -00912576 04 n 02 grading 2 leveling 2 002 @ 00911048 n 0000 + 01307609 v 0101 | changing the ground level to a smooth horizontal or gently sloping surface -00912733 04 n 01 road_construction 0 001 @ 00911048 n 0000 | the construction of roads -00912822 04 n 02 shipbuilding 0 ship_building 0 003 @ 00911048 n 0000 -c 03140494 a 0000 -c 05866822 n 0000 | the construction of ships -00912960 04 n 01 production 0 008 @ 00030358 n 0000 + 02157100 v 0101 ~ 00922054 n 0000 ~ 00923995 n 0000 ~ 00924438 n 0000 ~ 01142843 n 0000 ~ 13488844 n 0000 ~ 13561396 n 0000 | the act or process of producing something; "Shakespeare's production of poetry was enormous"; "the production of white blood cells" -00913274 04 n 01 rustication 2 003 @ 00911048 n 0000 + 01555326 v 0101 + 00535669 v 0101 | the construction of masonry or brickwork in a rustic manner -00913427 04 n 01 cottage_industry 0 001 @ 00923444 n 0000 | small-scale industry that can be carried on at home by family members using their own equipment -00913585 04 n 01 production 3 001 @ 00908492 n 0000 | the creation of value or wealth by producing goods and services -00913705 04 n 01 production 2 016 @ 00923444 n 0000 ;c 06149484 n 0000 ~ 00914182 n 0000 ~ 00914343 n 0000 ~ 00914509 n 0000 ~ 00914632 n 0000 ~ 00914795 n 0000 ~ 00914929 n 0000 ~ 00915140 n 0000 ~ 00915722 n 0000 ~ 00916023 n 0000 ~ 00922144 n 0000 ~ 00922327 n 0000 ~ 00922968 n 0000 ~ 00923130 n 0000 ~ 00923303 n 0000 | (economics) manufacturing or mining or growing something (usually in large quantities) for sale; "he introduced more efficient methods of production" -00914182 04 n 01 mass_production 0 001 @ 00913705 n 0000 | the production of large quantities of a standardized article (often using assembly line techniques) -00914343 04 n 02 overproduction 0 overrun 0 004 @ 00913705 n 0000 + 02072159 v 0202 + 01625206 v 0101 + 01740468 v 0101 | too much production or more than expected -00914509 04 n 01 underproduction 0 002 @ 00913705 n 0000 + 01622595 v 0101 | inadequate production or less than expected -00914632 04 n 02 output 0 yield 0 005 @ 00913705 n 0000 + 02291708 v 0201 + 01629000 v 0202 + 01622795 v 0101 ~ 13085864 n 0000 | production of a certain amount -00914795 04 n 01 capacity 0 001 @ 00913705 n 0000 | the maximum production possible; "the plant is working at 80 per cent capacity" -00914929 04 n 01 breeding 2 006 @ 00913705 n 0000 + 01429455 v 0101 ~ 00915347 n 0000 ~ 00915497 n 0000 ~ 00915574 n 0000 ~ 00915646 n 0000 | the production of animals or plants by inbreeding or hybridization -00915140 04 n 01 brewing 0 002 @ 00913705 n 0000 -c 13457831 n 0000 | the production of malt beverages (as beer or ale) from malt and hops by grinding and boiling them and fermenting the result with yeast -00915347 04 n 01 autosexing 0 001 @ 00914929 n 0000 | (especially of domestic fowl) breeding to reveal differential sex characteristics at hatching -00915497 04 n 01 cattle_breeding 0 001 @ 00914929 n 0000 | breeding cattle -00915574 04 n 01 dog_breeding 0 001 @ 00914929 n 0000 | breeding dogs -00915646 04 n 01 horse_breeding 0 001 @ 00914929 n 0000 | breeding horses -00915722 04 n 01 cultivation 0 009 @ 00913705 n 0000 ;c 00916464 n 0000 + 01741446 v 0101 + 01742726 v 0101 ~ 00916147 n 0000 ~ 00916285 n 0000 ~ 00916464 n 0000 ~ 00917759 n 0000 ~ 00918820 n 0000 | (agriculture) production of food by preparing the land to grow crops (especially on a large scale) -00916023 04 n 01 cultivation 2 001 @ 00913705 n 0000 | the act of raising or growing plants (especially on a large scale) -00916147 04 n 01 aquaculture 0 002 @ 00915722 n 0000 + 02790474 a 0102 | rearing aquatic animals or cultivating aquatic plants for food -00916285 04 n 02 beekeeping 0 apiculture 0 003 @ 00915722 n 0000 + 02632799 a 0201 + 09846755 n 0203 | the cultivation of bees on a commercial scale for the production of honey -00916464 04 n 03 farming 0 agriculture 0 husbandry 0 034 @ 00915722 n 0000 + 09779790 n 0201 + 01739814 v 0103 -c 00915722 n 0000 ~ 00917211 n 0000 ~ 00917614 n 0000 ~ 00918289 n 0000 ~ 00918383 n 0000 %p 00918820 n 0000 ~ 00918976 n 0000 ~ 00919396 n 0000 ~ 00919513 n 0000 ~ 00920062 n 0000 ~ 00920211 n 0000 ~ 00920357 n 0000 %p 00921790 n 0000 ~ 01104544 n 0000 -c 00089154 v 0000 -c 00502757 v 0000 -c 01416364 v 0000 -c 01500873 v 0000 -c 01501184 v 0000 -c 01501347 v 0000 -c 01501575 v 0000 -c 01739814 v 0000 -c 01740320 v 0000 -c 01740608 v 0000 -c 01741446 v 0000 -c 01741692 v 0000 -c 01741864 v 0000 -c 01742244 v 0000 -c 01742415 v 0000 -c 01742556 v 0000 -c 01742726 v 0000 | the practice of cultivating the land or raising stock -00917211 04 n 01 animal_husbandry 0 017 @ 00916464 n 0000 -c 01358191 v 0000 -c 01428203 v 0000 -c 01430447 v 0000 -c 01490958 v 0000 -c 01491186 v 0000 -c 01491360 v 0000 -c 01491517 v 0000 -c 01491697 v 0000 -c 01491886 v 0000 -c 01492052 v 0000 -c 01492283 v 0000 -c 02322810 v 0000 -c 02322924 v 0000 -c 02329578 v 0000 -c 02329733 v 0000 -c 02459915 v 0000 | breeding and caring for farm animals -00917614 04 n 02 arboriculture 0 tree_farming 0 002 @ 00916464 n 0000 + 10104756 n 0103 | the cultivation of tree for the production of timber -00917759 04 n 01 culture 0 006 @ 00915722 n 0000 + 02872362 a 0101 ~ 00917961 n 0000 ~ 00918055 n 0000 ~ 00918176 n 0000 ~ 01126709 n 0000 | the raising of plants or animals; "the culture of oysters" -00917961 04 n 01 cranberry_culture 0 001 @ 00917759 n 0000 | the cultivation of cranberries -00918055 04 n 01 monoculture 0 001 @ 00917759 n 0000 | the cultivation of a single crop (on a farm or area or country) -00918176 04 n 01 tillage 0 002 @ 00917759 n 0000 + 01740608 v 0101 | the cultivation of soil for raising crops -00918289 04 n 02 dairying 0 dairy_farming 0 001 @ 00916464 n 0000 | the business of a dairy -00918383 04 n 02 gardening 0 horticulture 0 010 @ 00916464 n 0000 + 02927048 a 0201 + 10186350 n 0201 + 01740969 v 0101 ~ 00921160 n 0000 ~ 00921289 n 0000 ~ 00921399 n 0000 -c 01740969 v 0000 -c 01741221 v 0000 -c 01751836 v 0000 | the cultivation of plants -00918644 04 n 02 plowing 0 ploughing 0 003 @ 00918820 n 0000 + 01741864 v 0202 + 01741864 v 0101 | tilling the land with a plow; "he hired someone to do the plowing for him" -00918820 04 n 01 tilling 0 004 @ 00915722 n 0000 #p 00916464 n 0000 + 01740608 v 0101 ~ 00918644 n 0000 | cultivation of the land in order to raise crops -00918976 04 n 03 hydroponics 0 aquiculture 0 tank_farming 0 004 @ 00916464 n 0000 + 02790474 a 0201 + 02790474 a 0103 ~ 00919201 n 0000 | a technique of growing plants (without soil) in water containing dissolved nutrients -00919201 04 n 01 drip_culture 0 001 @ 00918976 n 0000 | a hydroponic method of growing plants by allowing nutrient solutions to drip slowly onto an inert medium in which the plants are growing -00919396 04 n 01 mixed_farming 0 001 @ 00916464 n 0000 | growing crops and feed and livestock all on the same farm -00919513 04 n 01 planting 1 003 @ 00916464 n 0000 + 01567275 v 0101 ~ 00919692 n 0000 | putting seeds or young plants in the ground to grow; "the planting of corn is hard work" -00919692 04 n 01 insemination 1 002 @ 00919513 n 0000 + 01501347 v 0101 | the act of sowing (of seeds in the ground or, figuratively, of germs in the body or ideas in the mind, etc.) -00919877 04 n 01 stratification 1 002 @ 01051331 n 0000 + 00052845 v 0101 | the placing of seeds in damp sand or sawdust or peat moss in order to preserve them or promote germination -00920062 04 n 01 ranching 0 003 @ 00916464 n 0000 + 02420430 v 0101 ~ 00921627 n 0000 | farming for the raising of livestock (particularly cattle) -00920211 04 n 01 strip_cropping 0 001 @ 00916464 n 0000 | cultivation of crops in strips following the contours of the land to minimize erosion -00920357 04 n 01 subsistence_farming 0 001 @ 00916464 n 0000 | farming that provides for the basic needs of the farmer without surpluses for marketing -00920510 04 n 01 culture 1 003 @ 13489037 n 0000 ;c 06037666 n 0000 ~ 00920727 n 0000 | (biology) the growing of microorganisms in a nutrient medium (such as gelatin or agar); "the culture of cells in a Petri dish" -00920727 04 n 01 starter 0 001 @ 00920510 n 0000 | a culture containing yeast or bacteria that is used to start the process of fermentation or souring in making butter or cheese or dough; "to make sourdough you need a starter" -00920956 04 n 02 naturalization 2 naturalisation 2 003 @ 00238022 n 0000 + 00302464 v 0204 + 00302464 v 0103 | the introduction of animals or plants to places where they flourish but are not indigenous -00921160 04 n 02 landscaping 0 landscape_gardening 0 002 @ 00918383 n 0000 + 01741221 v 0101 | working as a landscape gardener -00921289 04 n 01 market_gardening 0 001 @ 00918383 n 0000 | the growing of vegetables or flowers for market -00921399 04 n 02 flower_gardening 0 floriculture 0 002 @ 00918383 n 0000 + 02729544 a 0201 | the cultivation of flowering plants -00921530 04 n 01 tree_surgery 0 001 @ 00654885 n 0000 | treatment of damaged or decaying trees -00921627 04 n 01 roundup 1 002 @ 00920062 n 0000 + 01381913 v 0101 | the activity of gathering livestock together so that they can be counted or branded or sold -00921790 04 n 02 harvest 0 harvest_time 0 003 @ 15236475 n 0000 #p 00916464 n 0000 + 01320009 v 0102 | the season for gathering crops -00921926 04 n 02 haying 0 haying_time 0 001 @ 15236475 n 0000 | the season for cutting and drying and storing grass as fodder -00922054 04 n 01 rainmaking 0 001 @ 00912960 n 0000 | activity intended to produce rain -00922144 04 n 01 generation 1 003 @ 00913705 n 0000 + 01629000 v 0105 + 01628197 v 0101 | the production of heat or electricity; "dams were built for the generation of electricity" -00922327 04 n 02 mining 0 excavation 0 016 @ 00913705 n 0000 + 01310660 v 0201 + 01163620 v 0101 -c 02471602 a 0000 ~ 00922727 n 0000 ~ 00922848 n 0000 -c 02875233 n 0000 -c 03239399 n 0000 -c 13617308 n 0000 -c 00338736 v 0000 -c 00461057 v 0000 -c 00461234 v 0000 -c 01163620 v 0000 -c 01164081 v 0000 -c 01310964 v 0000 -c 01459392 v 0000 | the act of extracting ores or coal etc from the earth -00922727 04 n 01 placer_mining 0 001 @ 00922327 n 0000 | mining valuable minerals from a placer by washing or dredging -00922848 04 n 02 strip_mining 0 opencast_mining 0 001 @ 00922327 n 0000 | the mining of ore or coal from an open mine -00922968 04 n 01 quarrying 0 003 @ 00913705 n 0000 + 01163847 v 0101 -c 01163847 v 0000 | the extraction of building stone or slate from an open surface quarry -00923130 04 n 03 boring 0 drilling 0 oil_production 0 002 @ 00913705 n 0000 + 01443021 v 0202 | the act of drilling a hole in the earth in the hope of producing petroleum -00923303 04 n 01 sericulture 0 003 @ 00913705 n 0000 + 03116224 a 0101 + 10581772 n 0101 | the production of raw silk by raising silkworms -00923444 04 n 02 industry 0 manufacture 0 009 @ 01094725 n 0000 + 01653442 v 0201 ~ 00913427 n 0000 ~ 00913705 n 0000 ~ 00923802 n 0000 -c 05664640 n 0000 -c 08065234 n 0000 -c 00412048 v 0000 -c 02413140 v 0000 | the organized action of making of goods and services for sale; "American industry is making increased use of computers to control production" -00923802 04 n 03 industrialization 0 industrialisation 0 industrial_enterprise 0 003 @ 00923444 n 0000 + 00500356 v 0202 + 00500356 v 0101 | the development of industry on an extensive scale -00923995 04 n 03 devising 0 fashioning 0 making 0 012 @ 00912960 n 0000 + 02748759 v 0301 + 01654628 v 0303 + 01653873 v 0301 + 01640207 v 0302 + 01621555 v 0302 + 01617192 v 0301 + 01658188 v 0201 + 01651444 v 0104 + 01632411 v 0103 ~ 00924579 n 0000 ~ 00924714 n 0000 | the act that results in something coming to be; "the devising of plans"; "the fashioning of pots and pans"; "the making of measurements"; "it was already in the making" -00924438 04 n 01 foliation 0 002 @ 00912960 n 0000 + 01675522 v 0101 | the production of foil by cutting or beating metal into thin leaves -00924579 04 n 02 mapmaking 0 cartography 0 003 @ 00923995 n 0000 + 02681881 a 0202 + 09898215 n 0201 | the making of maps and charts -00924714 04 n 03 moviemaking 0 movie_making 0 film_making 0 001 @ 00923995 n 0000 | the production of movies -00924825 04 n 03 fabrication 0 manufacture 1 manufacturing 0 006 @ 00908909 n 0000 + 01653442 v 0201 + 01653442 v 0102 ~ 00925207 n 0000 ~ 00926277 n 0000 ~ 00926468 n 0000 | the act of making something (a product) from raw materials; "the synthesis and fabrication of single crystals"; "an improvement in the manufacture of explosives"; "manufacturing is vital to Great Britain" -00925207 04 n 02 formation 0 shaping 0 010 @ 00924825 n 0000 + 01659248 v 0201 + 01659248 v 0102 + 00142191 v 0102 ~ 00925489 n 0000 ~ 00925622 n 0000 ~ 00925732 n 0000 ~ 00925866 n 0000 ~ 00926026 n 0000 ~ 00926179 n 0000 | the act of fabricating something in a particular shape -00925489 04 n 01 filing 1 002 @ 00925207 n 0000 + 01387022 v 0101 | the act of using a file (as in shaping or smoothing an object) -00925622 04 n 01 forging 0 002 @ 00925207 n 0000 + 01675245 v 0101 | shaping metal by heating and hammering -00925732 04 n 02 metalworking 0 metalwork 0 001 @ 00925207 n 0000 | the activity of making things out of metal in a skillful manner -00925866 04 n 01 granulation 0 002 @ 00925207 n 0000 + 00144169 v 0101 | the act of forming something into granules or grains; "the granulation of medicines" -00926026 04 n 02 grooving 0 rifling 0 002 @ 00925207 n 0000 + 01457489 v 0101 | the cutting of spiral grooves on the inside of the barrel of a firearm -00926179 04 n 01 turning 2 001 @ 00925207 n 0000 | the activity of shaping something on a lathe -00926277 04 n 01 newspeak 0 001 @ 00924825 n 0000 | deliberately ambiguous and contradictory language use to mislead and manipulate the public; "the welfare state brought its own newspeak" -00926468 04 n 01 prefabrication 0 002 @ 00924825 n 0000 + 01739263 v 0101 | the manufacture of sections of a building at the factory so they can be easily and rapidly assembled at the building site -00926668 04 n 02 confection 0 concoction 0 005 @ 00908909 n 0000 + 01666131 v 0201 + 01459896 v 0201 + 01626420 v 0101 + 01626420 v 0102 | the act of creating something (a medicine or drink or soup etc.) by compounding or mixing a variety of components -00926923 04 n 01 lamination 0 004 @ 00908909 n 0000 + 01625666 v 0101 + 01365131 v 0101 ~ 00927161 n 0000 | bonding thin sheets together -00927062 04 n 01 tanning 0 002 @ 00606370 n 0000 + 00511430 v 0101 | making leather from rawhide -00927161 04 n 01 veneering 0 002 @ 00926923 n 0000 + 01269224 v 0101 | the act of applying veneer -00927261 04 n 01 creating_by_mental_acts 0 009 @ 00908492 n 0000 ~ 00927516 n 0000 ~ 00928077 n 0000 ~ 00928947 n 0000 ~ 00929586 n 0000 ~ 00931847 n 0000 ~ 00939452 n 0000 ~ 00940412 n 0000 ~ 00940842 n 0000 | the act of creating something by thinking -00927516 04 n 01 formation 2 003 @ 00927261 n 0000 + 02623906 v 0101 ~ 00927694 n 0000 | creation by mental activity; "the formation of sentences"; "the formation of memories" -00927694 04 n 01 affixation 0 004 @ 00927516 n 0000 + 01298283 v 0101 ~ 00927845 n 0000 ~ 00927961 n 0000 | formation of a word by means of an affix -00927845 04 n 01 prefixation 0 002 @ 00927694 n 0000 + 01297961 v 0101 | formation of a word by means of a prefix -00927961 04 n 01 suffixation 0 002 @ 00927694 n 0000 + 01298123 v 0101 | formation of a word by means of a suffix -00928077 04 n 02 design 0 designing 0 006 @ 00927261 n 0000 + 01640550 v 0201 + 01639714 v 0201 + 01639714 v 0101 + 00709625 v 0101 ~ 00928371 n 0000 | the act of working out the form of something (as by making a sketch or outline or plan); "he contributed to the design of a new instrument" -00928371 04 n 01 planning 2 003 @ 00928077 n 0000 + 01639714 v 0102 ~ 00928542 n 0000 | the act or process of drawing up plans or layouts for some project or enterprise -00928542 04 n 03 city_planning 0 town_planning 0 urban_planning 0 002 @ 00928371 n 0000 %m 00928751 n 0000 | determining and drawing up plans for the future physical arrangement and condition of a community -00928751 04 n 01 zoning 0 002 @ 00397953 n 0000 #m 00928542 n 0000 | dividing an area into zones or sections reserved for different purposes such as residence and business and manufacturing etc -00928947 04 n 04 programming 0 programing 0 computer_programming 0 computer_programing 0 009 @ 00927261 n 0000 + 01747717 v 0201 + 01747717 v 0102 ~ 00929285 n 0000 ~ 00929432 n 0000 -c 06586471 n 0000 -c 07977344 n 0000 -c 07977592 n 0000 -c 10695917 n 0000 | creating a sequence of instructions to enable the computer to do something -00929285 04 n 02 logic_programming 0 logic_programing 0 001 @ 00928947 n 0000 | creating a program that enables the computer to reason logically -00929432 04 n 02 object-oriented_programming 0 object-oriented_programing 0 001 @ 00928947 n 0000 | creating a program that can use and support objects -00929586 04 n 01 verbal_creation 0 002 @ 00927261 n 0000 ~ 00929718 n 0000 | creating something by the use of speech and language -00929718 04 n 04 writing 2 authorship 0 composition 1 penning 0 031 @ 00929586 n 0000 + 01698271 v 0403 + 01698271 v 0302 + 10794014 n 0202 + 01698271 v 0101 ~ 00930481 n 0000 ~ 00930736 n 0000 ~ 00930868 n 0000 ~ 00931040 n 0000 ~ 00931217 n 0000 ~ 00931300 n 0000 ~ 00931453 n 0000 ~ 00931608 n 0000 ~ 00931721 n 0000 ~ 07093489 n 0000 -c 01698271 v 0000 -c 01699172 v 0000 -c 01699346 v 0000 -c 01699539 v 0000 -c 01700655 v 0000 -c 01700934 v 0000 -c 01701152 v 0000 -c 01701311 v 0000 -c 01701634 v 0000 -c 01704452 v 0000 -c 01704631 v 0000 -c 01704752 v 0000 -c 01704953 v 0000 -c 01705257 v 0000 -c 01754576 v 0000 -c 01756719 v 0000 | the act of creating written works; "writing was a form of therapy for him"; "it was a matter of disputed authorship" -00930481 04 n 01 adoxography 0 001 @ 00929718 n 0000 | fine writing in praise of trivial or base subjects; "Elizabethan schoolboys were taught adoxography, the art of eruditely praising worthless things"; "adoxography is particularly useful to lawyers" -00930736 04 n 01 drafting 1 002 @ 00929718 n 0000 + 01701634 v 0101 | writing a first version to be filled out and polished later -00930868 04 n 02 dramatization 1 dramatisation 1 002 @ 00929718 n 0000 + 01701311 v 0101 | conversion into dramatic form; "the play was a dramatization of a short story" -00931040 04 n 03 fabrication 2 fictionalization 0 fictionalisation 0 004 @ 00929718 n 0000 + 00116619 v 0304 + 01635176 v 0201 + 01634424 v 0101 | writing in a fictional form -00931217 04 n 01 historiography 0 001 @ 00929718 n 0000 | the writing of history -00931300 04 n 01 metrification 1 002 @ 00929718 n 0000 + 01703023 v 0101 | writing a metrical composition (or the metrical structure of a composition) -00931453 04 n 02 novelization 0 novelisation 0 003 @ 00929718 n 0000 + 00116619 v 0202 + 00116619 v 0101 | converting something into the form of a novel -00931608 04 n 01 redaction 0 002 @ 00929718 n 0000 + 00981276 v 0102 | the act of putting something in writing -00931721 04 n 01 lexicography 0 003 @ 00929718 n 0000 + 02909808 a 0102 + 10256080 n 0101 | the act of writing dictionaries -00931847 04 n 04 realization 0 realisation 0 actualization 0 actualisation 0 006 @ 00927261 n 0000 + 01644746 v 0404 + 01644746 v 0303 + 01644746 v 0202 + 01644746 v 0101 ~ 00932088 n 0000 | making real or giving the appearance of reality -00932088 04 n 01 objectification 0 006 @ 00931847 n 0000 + 00532607 v 0105 ~ 00932298 n 0000 ~ 00932624 n 0000 ~ 00932804 n 0000 ~ 00933000 n 0000 | the act of representing an abstraction as a physical thing -00932298 04 n 03 depersonalization 0 depersonalisation 0 reification 1 003 @ 00932088 n 0000 + 00388296 v 0202 + 00388296 v 0101 | representing a human being as a physical thing deprived of personal qualities or individuality; "according to Marx, treating labor as a commodity exemplified the reification of the individual" -00932624 04 n 04 externalization 0 externalisation 0 exteriorization 0 exteriorisation 0 003 @ 00932088 n 0000 + 00532607 v 0402 + 02084104 v 0301 | embodying in an outward form -00932804 04 n 03 hypostatization 0 hypostatisation 0 reification 0 004 @ 00932088 n 0000 + 00692580 v 0301 + 00692718 v 0202 + 00692718 v 0101 | regarding something abstract as a material thing -00933000 04 n 01 embodiment 0 004 @ 00932088 n 0000 + 02698443 v 0103 ~ 00933154 n 0000 ~ 00933259 n 0000 | giving concrete form to an abstract concept -00933154 04 n 01 soul 0 001 @ 00933000 n 0000 | the human embodiment of something; "the soul of honor" -00933259 04 n 02 personification 0 incarnation 0 002 @ 00933000 n 0000 + 00727573 v 0101 | the act of attributing human characteristics to abstract ideas etc. -00933420 04 n 03 art 0 artistic_creation 0 artistic_production 0 070 @ 00908492 n 0000 + 09812338 n 0101 -c 00414518 a 0000 -c 00854869 a 0000 -c 01536745 a 0000 -c 01980250 a 0000 -c 02730304 a 0000 ~ 00935005 n 0000 ~ 00935247 n 0000 ~ 00935453 n 0000 ~ 00935786 n 0000 ~ 00935940 n 0000 ~ 00936194 n 0000 ~ 00936296 n 0000 ~ 00936456 n 0000 ~ 00936620 n 0000 ~ 00937394 n 0000 ~ 00937476 n 0000 ~ 00937656 n 0000 ~ 00938134 n 0000 -c 02701393 n 0000 -c 02743547 n 0000 -c 03462594 n 0000 -c 04386664 n 0000 -c 05663275 n 0000 -c 06161223 n 0000 -c 06262567 n 0000 -c 07066659 n 0000 -c 07955280 n 0000 -c 08407619 n 0000 -c 09802239 n 0000 -c 10706812 n 0000 -c 14002481 n 0000 -c 14012667 n 0000 -c 15134054 n 0000 -c 01681048 v 0000 -c 01683271 v 0000 -c 01683422 v 0000 -c 01683758 v 0000 -c 01683957 v 0000 -c 01684180 v 0000 -c 01684337 v 0000 -c 01684663 v 0000 -c 01684899 v 0000 -c 01685797 v 0000 -c 01685960 v 0000 -c 01686132 v 0000 -c 01686956 v 0000 -c 01687401 v 0000 -c 01687569 v 0000 -c 01688256 v 0000 -c 01688771 v 0000 -c 01690294 v 0000 -c 01693138 v 0000 -c 01693727 v 0000 -c 01695567 v 0000 -c 01695773 v 0000 -c 01696435 v 0000 -c 01696893 v 0000 -c 01697027 v 0000 -c 01697628 v 0000 -c 01749394 v 0000 -c 01749554 v 0000 -c 01749660 v 0000 -c 01749790 v 0000 -c 01750302 v 0000 -c 01750421 v 0000 -c 01750668 v 0000 -c 02142775 v 0000 -c 02243967 v 0000 | the creation of beautiful or significant things; "art does not need to be innovative to be good"; "I was never any good at art"; "he said that architecture is the art of wasting space beautifully" -00935005 04 n 01 arts_and_crafts 0 003 @ 00933420 n 0000 ;u 06295235 n 0000 ~ 00714944 n 0000 | the arts of decorative design and handicraft; "they sponsored arts and crafts in order to encourage craftsmanship in an age of mass production" -00935247 04 n 01 ceramics 0 007 @ 00933420 n 0000 + 03015441 a 0101 + 10460806 n 0104 + 10460806 n 0103 -c 01119661 a 0000 -c 01120515 a 0000 -c 02997391 n 0000 | the art of making and decorating pottery -00935453 04 n 01 decalcomania 0 001 @ 00933420 n 0000 | the art of transfering designs from specially prepared paper to a wood or glass or metal surface -00935608 04 n 01 decantation 0 002 @ 00323923 n 0000 + 02070296 v 0101 | the act of gently pouring off a clear liquor (as from its original bottle) without disturbing the lees -00935786 04 n 01 decoupage 0 001 @ 00933420 n 0000 | the art of decorating a surface with shapes or pictures and then coating it with vanish or lacquer -00935940 04 n 03 drawing 1 draftsmanship 0 drafting 0 006 @ 00933420 n 0000 + 10029068 n 0201 + 10029269 n 0201 + 01643464 v 0101 ~ 00938240 n 0000 ~ 00938419 n 0000 | the creation of artistic pictures or diagrams; "he learned drawing from his father" -00936194 04 n 01 glyptography 0 001 @ 00933420 n 0000 | carving or engraving (especially on stones) -00936296 04 n 01 gastronomy 0 003 @ 00933420 n 0000 + 02975840 a 0101 + 02975840 a 0102 | the art and practice of choosing and preparing and eating good food -00936456 04 n 01 origami 0 002 @ 00933420 n 0000 ;r 08921850 n 0000 | the Japanese art of folding paper into shapes representing objects (e.g., flowers or birds) -00936620 04 n 01 painting 0 009 @ 00933420 n 0000 @ 06156968 n 0000 + 01684899 v 0101 + 01684663 v 0101 ~ 00936901 n 0000 ~ 00937105 n 0000 ~ 00937250 n 0000 ~ 00938538 n 0000 ~ 00938642 n 0000 | creating a picture with paints; "he studied painting and sculpture for many years" -00936901 04 n 01 distemper 0 002 @ 00936620 n 0000 + 01683422 v 0101 | a method of painting in which the pigments are mixed with water and a binder; used for painting posters or murals or stage scenery -00937105 04 n 01 fresco 0 002 @ 00936620 n 0000 + 01683271 v 0101 | a durable method of painting on a wall by using watercolors on wet plaster -00937250 04 n 01 impasto 0 001 @ 00936620 n 0000 | painting that applies the pigment thickly so that brush or palette knife marks are visible -00937394 04 n 01 perfumery 0 001 @ 00933420 n 0000 | the art of making perfumes -00937476 04 n 01 printmaking 0 004 @ 00933420 n 0000 ~ 00938791 n 0000 ~ 00939231 n 0000 ~ 00939338 n 0000 | artistic design and manufacture of prints as woodcuts or silkscreens -00937656 04 n 02 sculpture 0 carving 0 008 @ 00933420 n 0000 @ 06156968 n 0000 + 01256600 v 0201 + 01551871 v 0102 + 01684337 v 0102 + 01684337 v 0101 + 01551871 v 0101 ~ 00937895 n 0000 | creating figures or designs in three dimensions -00937895 04 n 04 modeling 1 modelling 1 molding 0 moulding 0 005 @ 00937656 n 0000 + 01697027 v 0403 + 01697027 v 0302 + 01697027 v 0201 + 01697027 v 0101 | a preliminary sculpture in wax or clay from which a finished work can be copied -00938134 04 n 01 topiary 0 001 @ 00933420 n 0000 | making decorative shapes by trimming shrubs or trees -00938240 04 n 01 pyrography 0 003 @ 00935940 n 0000 + 03106446 a 0101 + 10496715 n 0101 | the act of producing drawings on wood or leather by using heated tools or a fine flame -00938419 04 n 01 tracing 0 002 @ 00935940 n 0000 + 01582645 v 0101 | the act of drawing a plan or diagram or outline -00938538 04 n 01 oil_painting 0 001 @ 00936620 n 0000 | the art or method of painting with oil paints -00938642 04 n 04 watercolor 0 water-color 0 watercolour 0 water-colour 0 001 @ 00936620 n 0000 | the art or technique of painting with watercolors -00938791 04 n 02 engraving 0 etching 0 005 @ 00937476 n 0000 + 01750421 v 0201 + 01749790 v 0101 ~ 00938992 n 0000 ~ 00939091 n 0000 | making engraved or etched plates and printing designs from them -00938992 04 n 01 steel_engraving 0 001 @ 00938791 n 0000 | the act of engraving on a steel plate -00939091 04 n 01 aquatint 0 002 @ 00938791 n 0000 + 01750668 v 0101 | a method of etching that imitates the broad washes of a water color -00939231 04 n 01 serigraphy 0 001 @ 00937476 n 0000 | the act of making a print by the silkscreen method -00939338 04 n 01 lithography 0 002 @ 00937476 n 0000 + 10266486 n 0101 | the act of making a lithographic print -00939452 04 n 02 composing 0 composition 2 006 @ 00927261 n 0000 + 01705494 v 0201 + 01705494 v 0101 ~ 00939628 n 0000 ~ 00940043 n 0000 ~ 00940217 n 0000 | musical creation -00939628 04 n 03 arrangement 1 arranging 0 transcription 1 004 @ 00939452 n 0000 ~ 00338821 n 0000 ~ 00939818 n 0000 ~ 01008801 n 0000 | the act of arranging and adapting a piece of music -00939818 04 n 02 orchestration 1 instrumentation 1 003 @ 00939628 n 0000 + 01707925 v 0201 + 01707737 v 0101 | the act of arranging a piece of music for an orchestra and assigning parts to the different musical instruments -00940043 04 n 02 realization 3 realisation 3 002 @ 00939452 n 0000 + 01707495 v 0101 | the completion or enrichment of a piece of music left sparsely notated by a composer -00940217 04 n 01 recapitulation 0 002 @ 00939452 n 0000 ;c 07020895 n 0000 | (music) the repetition of themes introduced earlier (especially when one is composing the final part of a movement) -00940412 04 n 01 invention 0 005 @ 00927261 n 0000 + 01634424 v 0105 + 01632411 v 0101 ~ 00940560 n 0000 ~ 00940709 n 0000 | the act of inventing -00940560 04 n 03 neologism 0 neology 0 coinage 2 003 @ 00940412 n 0000 + 01697986 v 0301 + 10352898 n 0101 | the act of inventing a word or phrase -00940709 04 n 02 devisal 0 contrivance 1 003 @ 00940412 n 0000 + 01632411 v 0202 + 01632411 v 0103 | the act of devising something -00940842 04 n 03 conceptualization 0 conceptualisation 0 formulation 0 008 @ 00927261 n 0000 + 01632411 v 0305 + 00925873 v 0302 + 00980453 v 0302 + 01633343 v 0204 + 01633343 v 0103 ~ 00941140 n 0000 ~ 00941451 n 0000 | inventing or contriving an idea or explanation and formulating it mentally -00941140 04 n 03 approach 2 attack 3 plan_of_attack 0 003 @ 00940842 n 0000 + 02439281 v 0103 ~ 00941604 n 0000 | ideas or actions intended to deal with a problem or situation; "his approach to every problem is to draw up a list of pros and cons"; "an attack on inflation"; "his plan of attack was misguided" -00941451 04 n 01 framing 0 002 @ 00940842 n 0000 + 00706804 v 0101 | formulation of the plans and important details; "the framing of judicial decrees" -00941604 04 n 01 avenue 0 001 @ 00941140 n 0000 | a line of approach; "they explored every avenue they could think of"; "it promises to open new avenues to understanding" -00941777 04 n 01 creating_by_removal 0 006 @ 00908492 n 0000 ~ 00941974 n 0000 ~ 00942234 n 0000 ~ 00942799 n 0000 ~ 00942900 n 0000 ~ 00945205 n 0000 | the act of creating by removing something -00941974 04 n 03 excavation 1 digging 0 dig 1 007 @ 00941777 n 0000 + 01310660 v 0302 + 01311103 v 0301 + 01309701 v 0301 + 01309701 v 0201 + 02143539 v 0101 + 01313923 v 0101 | the act of digging; "there's an interesting excavation going on near Princeton" -00942234 04 n 02 carving 1 cutting 5 005 @ 00941777 n 0000 + 01754737 v 0201 + 01256157 v 0101 ~ 00942440 n 0000 ~ 00942574 n 0000 | removing parts from hard material to create a desired pattern or shape -00942440 04 n 01 petroglyph 0 001 @ 00942234 n 0000 | a carving or line drawing on rock (especially one made by prehistoric people) -00942574 04 n 01 truncation 1 002 @ 00942234 n 0000 + 02258487 v 0101 | the replacement of an edge or solid angle (as in cutting a gemstone) by a plane (especially by a plane that is equally inclined to the adjacent faces) -00942799 04 n 02 drilling 1 boring 1 002 @ 00941777 n 0000 + 01443021 v 0102 | the act of drilling -00942900 04 n 01 gouge 0 002 @ 00941777 n 0000 + 01281611 v 0101 | the act of gouging -00942988 04 n 01 puncture 0 007 @ 00407535 n 0000 + 00309990 v 0101 + 01274971 v 0101 ~ 00943187 n 0000 ~ 00944633 n 0000 ~ 00944789 n 0000 ~ 00944965 n 0000 | the act of puncturing or perforating -00943187 04 n 01 centesis 0 008 @ 00942988 n 0000 ;c 06063588 n 0000 ~ 00943471 n 0000 ~ 00943600 n 0000 ~ 00943861 n 0000 ~ 00943963 n 0000 ~ 00944068 n 0000 ~ 00944296 n 0000 | (surgery) the act of puncturing a body cavity or organ with a hollow needle in order to draw out fluid -00943471 04 n 02 abdominocentesis 0 paracentesis 0 001 @ 00943187 n 0000 | centesis of the belly to remove fluid for diagnosis -00943600 04 n 02 amniocentesis 0 amnio 0 003 @ 00943187 n 0000 @ 00153288 n 0000 ;c 14046202 n 0000 | (pregnancy) extraction by centesis of amniotic fluid from a pregnant woman (after the 15th week of pregnancy) to aid in the diagnosis of fetal abnormalities -00943861 04 n 01 arthrocentesis 0 001 @ 00943187 n 0000 | removal of fluid from a joint by centesis -00943963 04 n 01 celiocentesis 0 001 @ 00943187 n 0000 | removal of fluid from the abdomen by centesis -00944068 04 n 03 lumbar_puncture 0 spinal_puncture 0 spinal_tap 0 001 @ 00943187 n 0000 | removal by centesis of fluid from the subarachnoid space of the lumbar region of the spinal cord for diagnostic or therapeutic purposes -00944296 04 n 02 thoracocentesis 0 thoracentesis 0 001 @ 00943187 n 0000 | removal of fluid from the chest by centesis for diagnostic or therapeutic purposes -00944456 04 n 02 fetoscopy 0 foetoscopy 0 001 @ 00153288 n 0000 | prenatal diagnosis that allows direct observation of a fetus in the uterus and the withdrawal of fetal blood -00944633 04 n 01 perforation 0 002 @ 00942988 n 0000 + 01442779 v 0102 | the act of punching a hole (especially a row of holes as for ease of separation) -00944789 04 n 02 prick 0 pricking 0 003 @ 00942988 n 0000 + 01440801 v 0202 + 01440801 v 0102 | the act of puncturing with a small point; "he gave the balloon a small prick" -00944965 04 n 01 venipuncture 0 002 @ 00942988 n 0000 ;c 06043075 n 0000 | (medicine) puncture of a vein through the skin in order to withdraw blood for analysis or to start an intravenous drip or to inject medication or a radiopaque dye -00945205 04 n 02 film_editing 0 cutting 3 003 @ 00941777 n 0000 + 01860107 v 0201 + 00201722 v 0202 | the activity of selecting the scenes to be shown and putting them together to create a film -00945401 04 n 03 search 0 hunt 2 hunting 2 014 @ 00407535 n 0000 + 01316401 v 0301 + 01316401 v 0201 + 02153709 v 0101 + 01315613 v 0101 ~ 00945777 n 0000 ~ 00945916 n 0000 ~ 00946060 n 0000 ~ 00946432 n 0000 ~ 00946529 n 0000 ~ 00946650 n 0000 ~ 00946806 n 0000 ~ 00993488 n 0000 ~ 00993787 n 0000 | the activity of looking thoroughly in order to find something or someone -00945777 04 n 01 exploration 0 004 @ 00945401 n 0000 + 00645939 v 0101 + 00646271 v 0101 ~ 00947041 n 0000 | a careful systematic search -00945916 04 n 02 foraging 0 forage 0 003 @ 00945401 n 0000 + 02269894 v 0202 + 02269894 v 0102 | the act of searching for food and provisions -00946060 04 n 02 frisk 0 frisking 0 004 @ 00945401 n 0000 + 01318223 v 0201 + 01318223 v 0101 ~ 00946281 n 0000 | the act of searching someone for concealed weapons or illegal drugs; "he gave the suspect a quick frisk" -00946281 04 n 01 strip_search 0 001 @ 00946060 n 0000 | searching someone for concealed weapons or illegal drugs by having them remove their clothes -00946432 04 n 02 looking 0 looking_for 0 001 @ 00945401 n 0000 | the act of searching visually -00946529 04 n 01 manhunt 0 001 @ 00945401 n 0000 | an organized search (by police) for a person (charged with a crime) -00946650 04 n 02 quest 0 seeking 0 003 @ 00945401 n 0000 + 01315613 v 0202 + 02240881 v 0101 | the act of searching for something; "a quest for diamonds" -00946806 04 n 02 ransacking 0 rummage 0 003 @ 00945401 n 0000 + 01319049 v 0201 + 01319193 v 0102 | a thorough search for something (often causing disorder or confusion); "he gave the attic a good rummage but couldn't find his skis" -00947041 04 n 01 probe 0 001 @ 00945777 n 0000 | an exploratory action or expedition -00947128 04 n 06 use 0 usage 0 utilization 0 utilisation 0 employment 1 exercise 3 015 @ 00407535 n 0000 + 02568672 v 0603 + 01166093 v 0602 + 01158872 v 0505 + 01158872 v 0403 + 01158872 v 0302 + 01158872 v 0201 + 01158872 v 0101 + 01165043 v 0101 ~ 00631378 n 0000 ~ 00947596 n 0000 ~ 00947719 n 0000 ~ 00948206 n 0000 ~ 00948868 n 0000 ~ 00949134 n 0000 | the act of using; "he warned against the use of narcotic drugs"; "skilled in the utilization of computers" -00947596 04 n 01 play 8 002 @ 00947128 n 0000 + 02370650 v 0101 | utilization or exercise; "the play of the imagination" -00947719 04 n 02 misuse 0 abuse 1 005 @ 00947128 n 0000 + 00203213 v 0203 + 00203213 v 0102 + 01161290 v 0102 ~ 00947923 n 0000 | improper or excessive use; "alcohol abuse"; "the abuse of public funds" -00947923 04 n 03 substance_abuse 0 drug_abuse 0 habit 1 003 @ 00947719 n 0000 + 00273445 v 0301 ~ 00948064 n 0000 | excessive use of drugs -00948064 04 n 03 alcohol_abuse 0 alcoholic_abuse 0 alcoholism_abuse 0 001 @ 00947923 n 0000 | excessive use of alcohol and alcoholic drinks -00948206 04 n 02 exploitation 0 development 2 012 @ 00947128 n 0000 + 00171852 v 0202 + 02409148 v 0102 + 01164273 v 0101 + 01162754 v 0101 ~ 00948640 n 0000 ~ 00948737 n 0000 ~ 00951433 n 0000 ~ 00951626 n 0000 ~ 00951781 n 0000 ~ 00952615 n 0000 ~ 00952787 n 0000 | the act of making some area of land or water more profitable or productive or useful; "the development of Alaskan resources"; "the exploitation of copper deposits" -00948640 04 n 01 land_development 0 001 @ 00948206 n 0000 | making an area of land more useful -00948737 04 n 03 water_development 0 water_project 0 water_program 0 001 @ 00948206 n 0000 | making an area of water more useful -00948868 04 n 01 recycling 0 003 @ 00947128 n 0000 + 01162425 v 0101 ~ 00949042 n 0000 | the act of processing used or abandoned materials for use in creating new products -00949042 04 n 01 bottle_collection 2 001 @ 00948868 n 0000 | collecting bottles for reuse -00949134 04 n 02 application 2 practical_application 0 007 @ 00947128 n 0000 + 02707429 v 0102 + 02561332 v 0102 + 01158872 v 0104 + 01026558 v 0101 ~ 00949516 n 0000 ~ 00949619 n 0000 | the act of bringing something to bear; using it for a particular purpose; "he advocated the application of statistics to the problem"; "a novel application of electronics to medical diagnosis" -00949516 04 n 01 misapplication 2 002 @ 00949134 n 0000 + 01161290 v 0101 | wrong use or application -00949619 04 n 02 technology 0 engineering 1 012 @ 00949134 n 0000 @ 00609953 n 0000 + 00711550 v 0201 + 02809692 a 0102 + 09615807 n 0103 ~ 00949948 n 0000 ~ 00950070 n 0000 ~ 00950217 n 0000 ~ 00950356 n 0000 ~ 00950705 n 0000 ~ 00950858 n 0000 ~ 00951037 n 0000 | the practical application of science to commerce or industry -00949948 04 n 01 aeronautical_engineering 0 001 @ 00949619 n 0000 | the activity of designing and constructing aircraft -00950070 04 n 02 automotive_technology 0 automotive_engineering 0 001 @ 00949619 n 0000 | the activity of designing and constructing automobiles -00950217 04 n 01 chemical_engineering 0 001 @ 00949619 n 0000 | the activity of applying chemistry to the solution of practical problems -00950356 04 n 01 communications_technology 0 002 @ 00949619 n 0000 ~ 00950526 n 0000 | the activity of designing and constructing and maintaining communication systems -00950526 04 n 01 digital_communications_technology 0 001 @ 00950356 n 0000 | the design and construction of communications technology that transmits information in digital form -00950705 04 n 01 computer_technology 0 002 @ 00949619 n 0000 -c 00170857 v 0000 | the activity of designing and constructing and programming computers -00950858 04 n 02 high_technology 0 high_tech 0 003 @ 00949619 n 0000 + 01208571 a 0101 ~ 00102457 n 0000 | highly advanced technological development (especially in electronics) -00951037 04 n 02 rail_technology 0 railroading 0 004 @ 00949619 n 0000 + 02331919 v 0201 + 01950657 v 0201 ~ 00951233 n 0000 | the activity of designing and constructing and operating railroads -00951233 04 n 02 magnetic_levitation 0 maglev 0 001 @ 00951037 n 0000 | high-speed rail technology; train is suspended on a magnetic cushion above a magnetized track and so travels free of friction -00951433 04 n 04 overexploitation 0 overuse 0 overutilization 0 overutilisation 0 003 @ 00948206 n 0000 + 01161695 v 0201 + 01164568 v 0101 | exploitation to the point of diminishing returns -00951626 04 n 02 capitalization 0 capitalisation 0 003 @ 00948206 n 0000 + 02279772 v 0202 + 02279772 v 0101 | the act of capitalizing on an opportunity -00951781 04 n 02 commercialization 0 commercialisation 0 003 @ 00948206 n 0000 + 00470386 v 0202 + 00470386 v 0101 | the act of commercializing something; involving something in commerce; "my father considered the commercialization of Christmas to be a sacrilege"; "the government tried to accelerate the commercialization of this development"; "both companies will retain control over the commercialization of their own products" -00952214 04 n 02 capitalization 3 capitalisation 3 004 @ 00875246 n 0000 + 00731159 v 0202 + 00731159 v 0101 ~ 00952386 n 0000 | an estimation of the value of a business -00952386 04 n 02 market_capitalization 0 market_capitalisation 0 001 @ 00952214 n 0000 | an estimation of the value of a business that is obtained by multiplying the number of shares outstanding by the current price of a share -00952615 04 n 01 electrification 1 003 @ 00948206 n 0000 + 00506040 v 0101 + 00505802 v 0101 | the act of providing electricity; "the electrification of rural Tennessee" -00952787 04 n 02 unitization 1 unitisation 1 001 @ 00948206 n 0000 | the joint development of a petroleum resource that straddles territory controlled by different companies -00952963 04 n 02 military_action 0 action 3 012 @ 01080366 n 0000 ;c 08199025 n 0000 ~ 00057748 n 0000 ~ 00953559 n 0000 ~ 00954086 n 0000 ~ 00954311 n 0000 ~ 00954751 n 0000 ~ 00955806 n 0000 ~ 00955987 n 0000 ~ 00956172 n 0000 ~ 00971309 n 0000 ~ 00973077 n 0000 | a military engagement; "he saw action in Korea" -00953280 04 n 01 limited_war 0 001 @ 00973077 n 0000 | a war whose objective is less than the unconditional defeat of the enemy -00953410 04 n 02 psychological_warfare 0 war_of_nerves 0 001 @ 00973077 n 0000 | the use of psychological tactics to destroy the opponents' morale -00953559 04 n 04 battle 0 conflict 1 fight 1 engagement 1 014 @ 00952963 n 0000 #p 00973077 n 0000 ;c 08199025 n 0000 + 02376089 v 0401 + 01090335 v 0302 + 01092366 v 0101 ~ 00956340 n 0000 ~ 00956485 n 0000 ~ 00958477 n 0000 ~ 00964343 n 0000 ~ 00974224 n 0000 ~ 00974444 n 0000 ~i 01270628 n 0000 ~i 01277755 n 0000 | a hostile meeting of opposing military forces in the course of a war; "Grant won a decisive victory in the battle of Chickamauga"; "he lost his romantic ideas about war when he got into a real engagement" -00954086 04 n 02 blockade 0 encirclement 0 006 @ 00952963 n 0000 ;c 08199025 n 0000 + 01522716 v 0201 + 01126846 v 0101 ~ 01074970 n 0000 ~ 01075117 n 0000 | a war measure that isolates some area of importance to the enemy -00954311 04 n 03 defense 0 defence 0 defensive_measure 0 011 @ 00952963 n 0000 ;c 08199025 n 0000 ~ 00829918 n 0000 ~ 00960192 n 0000 ~ 00960851 n 0000 ~ 00961177 n 0000 ~ 00961328 n 0000 ~ 00961594 n 0000 ~ 00961794 n 0000 ~ 00961962 n 0000 ~ 00967993 n 0000 | (military) military action or resources protecting a country against potential enemies; "they died in the defense of Stalingrad"; "they were developed for the defense program" -00954751 04 n 02 electronic_warfare 0 EW 0 006 @ 00952963 n 0000 ;c 08199025 n 0000 ~ 00995134 n 0000 ~ 00995356 n 0000 ~ 00995588 n 0000 ~ 00995855 n 0000 | military action involving the use of electromagnetic energy to determine or exploit or reduce or prevent hostile use of the electromagnetic spectrum -00955060 04 n 02 operation 2 military_operation 0 018 @ 00407535 n 0000 ;c 08199025 n 0000 + 01109863 v 0104 ~ 00955565 n 0000 ~ 00959992 n 0000 ~ 00968155 n 0000 ~ 00970478 n 0000 ~ 00970645 n 0000 ~ 00971463 n 0000 ~ 00972621 n 0000 ~ 00980038 n 0000 ~ 00980904 n 0000 ~ 00981180 n 0000 ~ 00981711 n 0000 ~ 00983982 n 0000 ~ 00984195 n 0000 ~i 01287431 n 0000 ~i 01289631 n 0000 | activity by a military or naval force (as a maneuver or campaign); "it was a joint operation of the navy and air force" -00955565 04 n 01 combined_operation 0 002 @ 00955060 n 0000 ;c 08199025 n 0000 | a military operation carried out cooperatively by two or more allied nations or a military operation carried out by coordination of sea, land, and air forces -00955806 04 n 01 police_action 0 002 @ 00952963 n 0000 ;c 08199025 n 0000 | a local military action without declaration of war; against violators of international peace and order -00955987 04 n 01 resistance 1 003 @ 00952963 n 0000 ;c 08199025 n 0000 + 01116585 v 0101 | the military action of resisting the enemy's advance; "the enemy offered little resistance" -00956172 04 n 02 saber_rattling 0 sabre_rattling 0 001 @ 00952963 n 0000 | the ostentatious display of military power (with the implied threat that it might be used) -00956340 04 n 01 Armageddon 0 001 @ 00953559 n 0000 | any catastrophically destructive battle; "they called the first World War an Armageddon" -00956485 04 n 01 pitched_battle 0 097 @ 00953559 n 0000 ~i 01269161 n 0000 ~i 01269857 n 0000 ~i 01270153 n 0000 ~i 01270860 n 0000 ~i 01271107 n 0000 ~i 01271428 n 0000 ~i 01271915 n 0000 ~i 01272134 n 0000 ~i 01272367 n 0000 ~i 01272582 n 0000 ~i 01272787 n 0000 ~i 01273081 n 0000 ~i 01273230 n 0000 ~i 01273491 n 0000 ~i 01273735 n 0000 ~i 01274000 n 0000 ~i 01274171 n 0000 ~i 01274374 n 0000 ~i 01274531 n 0000 ~i 01274733 n 0000 ~i 01274909 n 0000 ~i 01275142 n 0000 ~i 01275389 n 0000 ~i 01275697 n 0000 ~i 01276436 n 0000 ~i 01276634 n 0000 ~i 01276875 n 0000 ~i 01277065 n 0000 ~i 01278232 n 0000 ~i 01278692 n 0000 ~i 01278873 n 0000 ~i 01279120 n 0000 ~i 01279342 n 0000 ~i 01279615 n 0000 ~i 01279866 n 0000 ~i 01280055 n 0000 ~i 01280514 n 0000 ~i 01280792 n 0000 ~i 01281427 n 0000 ~i 01281638 n 0000 ~i 01281813 n 0000 ~i 01282289 n 0000 ~i 01282711 n 0000 ~i 01283185 n 0000 ~i 01283389 n 0000 ~i 01283753 n 0000 ~i 01283935 n 0000 ~i 01285101 n 0000 ~i 01285305 n 0000 ~i 01285784 n 0000 ~i 01286000 n 0000 ~i 01286393 n 0000 ~i 01286569 n 0000 ~i 01286745 n 0000 ~i 01286938 n 0000 ~i 01287179 n 0000 ~i 01288057 n 0000 ~i 01288272 n 0000 ~i 01288549 n 0000 ~i 01289444 n 0000 ~i 01289997 n 0000 ~i 01290711 n 0000 ~i 01290840 n 0000 ~i 01291310 n 0000 ~i 01291517 n 0000 ~i 01291839 n 0000 ~i 01292017 n 0000 ~i 01292200 n 0000 ~i 01292343 n 0000 ~i 01292553 n 0000 ~i 01292735 n 0000 ~i 01292928 n 0000 ~i 01293167 n 0000 ~i 01294127 n 0000 ~i 01294330 n 0000 ~i 01294502 n 0000 ~i 01294791 n 0000 ~i 01295153 n 0000 ~i 01295373 n 0000 ~i 01295528 n 0000 ~i 01295918 n 0000 ~i 01296505 n 0000 ~i 01296946 n 0000 ~i 01297095 n 0000 ~i 01297291 n 0000 ~i 01297484 n 0000 ~i 01297978 n 0000 ~i 01298371 n 0000 ~i 01298573 n 0000 ~i 01299037 n 0000 ~i 01299476 n 0000 ~i 01299994 n 0000 ~i 01300508 n 0000 ~i 01300782 n 0000 ~i 01301080 n 0000 ~i 01301423 n 0000 | a fierce battle fought in close combat between troops in predetermined positions at a chosen time and place -00958477 04 n 01 naval_battle 0 018 @ 00953559 n 0000 ~i 01268457 n 0000 ~i 01268633 n 0000 ~i 01268886 n 0000 ~i 01271669 n 0000 ~i 01276194 n 0000 ~i 01280308 n 0000 ~i 01282466 n 0000 ~i 01283565 n 0000 ~i 01286181 n 0000 ~i 01287782 n 0000 ~i 01288795 n 0000 ~i 01290162 n 0000 ~i 01290997 n 0000 ~i 01293832 n 0000 ~i 01295684 n 0000 ~i 01297706 n 0000 ~i 01298162 n 0000 | a pitched battle between naval fleets -00958896 04 n 03 conflict 0 struggle 2 battle 2 012 @ 01080366 n 0000 + 01092366 v 0301 + 01090335 v 0203 ~ 00959800 n 0000 ~ 00962129 n 0000 ~ 00963749 n 0000 ~ 01167710 n 0000 ~ 01167847 n 0000 ~ 01167952 n 0000 ~ 01170962 n 0000 ~ 01236173 n 0000 ~ 01236296 n 0000 | an open clash between two opposing groups (or individuals); "the harder the conflict the more glorious the triumph"--Thomas Paine; "police tried to control the battle between the pro- and anti-abortion mobs" -00959376 04 n 04 brush 0 clash 0 encounter 0 skirmish 0 004 @ 01170962 n 0000 + 01123765 v 0401 + 01079480 v 0302 ~ 00959645 n 0000 | a minor short-term fight -00959537 04 n 01 close-quarter_fighting 0 001 @ 01170962 n 0000 | hand-to-hand fighting at close quarters -00959645 04 n 01 contretemps 0 002 @ 00959376 n 0000 ;u 06295235 n 0000 | an awkward clash; "he tried to smooth over his contretemps with the policeman" -00959800 04 n 03 class_struggle 0 class_war 0 class_warfare 0 001 @ 00958896 n 0000 | conflict between social or economic classes (especially between the capitalist and proletariat classes) -00959992 04 n 03 maneuver 2 manoeuvre 2 simulated_military_operation 0 005 @ 00955060 n 0000 #p 00895501 n 0000 ;c 08199025 n 0000 + 01109863 v 0203 + 01109863 v 0102 | a military training exercise -00960192 04 n 01 air_defense 0 003 @ 00954311 n 0000 ~ 00960395 n 0000 ~ 00960546 n 0000 | defensive measures designed to destroy attacking enemy aircraft or missiles or to nullify their effectiveness -00960395 04 n 01 active_air_defense 0 001 @ 00960192 n 0000 | air defense by the use aircraft or missiles or artillery or electronic countermeasures -00960546 04 n 01 passive_air_defense 0 001 @ 00960192 n 0000 | air defense by the use of deception or dispersion or protective construction -00960688 04 n 01 civil_defense 0 002 @ 00817680 n 0000 ~ 00817507 n 0000 | activities organized by civilians for their own protection in time of war or disaster -00960851 04 n 01 stand 0 003 @ 00954311 n 0000 + 01115916 v 0102 ~ 00961001 n 0000 | a defensive effort; "the army made a final stand at the Rhone" -00961001 04 n 02 repulsion 0 standoff 1 003 @ 00960851 n 0000 + 01506157 v 0103 + 01131197 v 0102 | the act of repulsing or repelling an attack; a successful defensive stand -00961177 04 n 02 hasty_defense 0 hasty_defence 0 001 @ 00954311 n 0000 | a defense organized while in contact with the enemy or when time is limited -00961328 04 n 02 deliberate_defense 0 deliberate_defence 0 001 @ 00954311 n 0000 | a defense organized before contact is made with the enemy and while time for organization is available; usually includes a fortified zone (with pillboxes) and communication systems -00961594 04 n 04 biological_defense 0 biological_defence 0 biodefense 0 biodefence 0 001 @ 00954311 n 0000 | procedures involved in taking defensive measures against attacks using biological agents -00961794 04 n 02 chemical_defense 0 chemical_defence 0 001 @ 00954311 n 0000 | procedures involved in taking defensive measures against attacks using chemical agents -00961962 04 n 02 mining 2 minelaying 0 002 @ 00954311 n 0000 + 01125724 v 0101 | laying explosive mines in concealed places to destroy enemy personnel and equipment -00962129 04 n 05 rebellion 0 insurrection 0 revolt 0 rising 0 uprising 0 014 @ 00958896 n 0000 + 02583139 v 0403 + 02583780 v 0301 + 02919100 a 0201 + 02919100 a 0202 + 10210137 n 0202 + 00963671 a 0101 + 00589960 a 0104 + 02583139 v 0101 ~ 00963241 n 0000 ~ 00963447 n 0000 ~ 00963896 n 0000 ~i 00964105 n 0000 ~i 01281154 n 0000 | organized opposition to authority; a conflict in which one faction tries to wrest control from another -00962567 04 n 01 civil_war 0 004 @ 00973077 n 0000 ~i 01301630 n 0000 ~i 01304121 n 0000 ~i 01308837 n 0000 | a war between factions in the same country -00962722 04 n 01 revolution 0 013 @ 01080366 n 0000 + 02835481 a 0101 + 10527334 n 0101 + 02583780 v 0101 + 02402695 v 0101 ~ 00963057 n 0000 ~i 01302086 n 0000 ~i 01303582 n 0000 ~i 01303934 n 0000 ~i 01304356 n 0000 ~i 01305007 n 0000 ~i 01305796 n 0000 ~i 01307754 n 0000 | the overthrow of a government by those who are governed -00963057 04 n 01 counterrevolution 0 003 @ 00962722 n 0000 + 02845871 a 0101 + 09969869 n 0101 | a revolution whose aim is to reverse the changes introduced by a previous revolution -00963241 04 n 02 insurgency 0 insurgence 0 002 @ 00962129 n 0000 + 00963283 a 0101 | an organized rebellion aimed at overthrowing a constituted government through the use of subversion and armed conflict -00963447 04 n 02 intifada 0 intifadah 0 001 @ 00962129 n 0000 | an uprising by Palestinian Arabs (in both the Gaza Strip and the West Bank) against Israel in the late 1980s and again in 2000; "the first intifada ended when Israel granted limited autonomy to the Palestine National Authority in 1993" -00963749 04 n 02 pacification 1 counterinsurgency 0 002 @ 00958896 n 0000 + 02845704 a 0201 | actions taken by a government to defeat insurgency -00963896 04 n 01 mutiny 0 004 @ 00962129 n 0000 + 10342180 n 0101 + 02330935 a 0101 + 02583958 v 0101 | open rebellion against constituted authority (especially by seamen or soldiers against their officers) -00964105 04 n 02 Peasant's_Revolt 0 Great_Revolt 0 002 @i 00962129 n 0000 ;r 08871007 n 0000 | a widespread rebellion in 1381 against poll taxes and other inequities that oppressed the poorer people of England; suppressed by Richard II -00964343 04 n 02 combat 0 armed_combat 0 007 @ 00953559 n 0000 #p 00973077 n 0000 ;c 08199025 n 0000 + 01092366 v 0102 ~ 00964781 n 0000 ~ 00964952 n 0000 ~ 01237167 n 0000 | an engagement fought between two military forces -00964569 04 n 02 aggression 0 hostility 0 006 @ 00037396 n 0000 + 00083478 a 0201 + 01118449 v 0102 ~ 00965183 n 0000 ~ 00965404 n 0000 ~ 00965895 n 0000 | violent action that is hostile and usually unprovoked -00964781 04 n 02 hostilities 1 belligerency 0 003 @ 00964343 n 0000 + 01742537 a 0201 + 01077829 a 0101 | fighting; acts of overt warfare; "the outbreak of hostilities" -00964952 04 n 01 trench_warfare 0 001 @ 00964343 n 0000 | a type of armed combat in which the opposing troops fight from trenches that face each other; "instead of the war ending quickly, it became bogged down in trench warfare" -00965183 04 n 01 meat_grinder 0 001 @ 00964569 n 0000 | any action resulting in injury or destruction; "the meat grinder of politics destroyed his reputation"; "allied forces crumbled before the Wehrmacht meat grinder" -00965404 04 n 02 violence 1 force 1 006 @ 00964569 n 0000 + 01586600 v 0202 + 01570747 a 0101 ~ 00965718 n 0000 ~ 01170406 n 0000 ~ 01170502 n 0000 | an act of aggression (as one against a person who resists); "he may accomplish by craft in the long run what he cannot do by force and violence in the short one" -00965718 04 n 01 domestic_violence 0 001 @ 00965404 n 0000 | violence or physical abuse directed toward your spouse or domestic partner; usually violence by men against women -00965895 04 n 03 plundering 0 pillage 0 pillaging 0 012 @ 00964569 n 0000 + 02344568 v 0308 + 02345048 v 0102 + 02344568 v 0101 + 01565472 v 0105 ~ 00966294 n 0000 ~ 00966384 n 0000 ~ 00966599 n 0000 ~ 00966869 n 0000 ~ 00967157 n 0000 ~ 00967310 n 0000 ~ 00967446 n 0000 | the act of stealing valuable things from a place; "the plundering of the Parthenon"; "his plundering of the great authors" -00966294 04 n 01 banditry 0 001 @ 00965895 n 0000 | the practice of plundering in gangs -00966384 04 n 02 rape 1 rapine 0 002 @ 00965895 n 0000 + 01565472 v 0101 | the act of despoiling a country in warfare -00966504 04 n 01 rustling 0 002 @ 00780889 n 0000 + 02277138 v 0101 | the stealing of cattle -00966599 04 n 02 looting 0 robbery 1 002 @ 00965895 n 0000 + 02344568 v 0103 | plundering during riots or in wartime -00966718 04 n 01 defloration 1 003 @ 00403092 n 0000 + 01428381 v 0101 + 00477941 v 0104 | an act that despoils the innocence or beauty of something -00966869 04 n 06 spoil 0 spoliation 0 spoilation 0 despoilation 0 despoilment 0 despoliation 0 008 @ 00965895 n 0000 + 02344568 v 0602 + 01565472 v 0603 + 02344568 v 0502 + 01565472 v 0503 + 01565472 v 0302 + 01565472 v 0202 + 01565472 v 0102 | the act of stripping and taking by force -00967157 04 n 02 ravaging 0 devastation 1 003 @ 00965895 n 0000 + 00388635 v 0203 + 00388635 v 0105 | plundering with excessive damage and destruction -00967310 04 n 02 depredation 0 predation 1 002 @ 00965895 n 0000 + 01203500 v 0203 | an act of plundering and pillaging and marauding -00967446 04 n 01 sack 1 002 @ 00965895 n 0000 + 02345048 v 0101 | the plundering of a place by an army or mob; usually involves destruction and slaughter; "the sack of Rome" -00967622 04 n 02 chemical_warfare 0 chemical_operations 0 001 @ 00973077 n 0000 | warfare using chemical agents to kill or injure or incapacitate the enemy -00967780 04 n 05 biological_warfare 0 BW 0 biological_attack 0 biologic_attack 0 bioattack 0 002 @ 00973077 n 0000 ~ 00996056 n 0000 | the use of bacteria or viruses or toxins to destroy men and animals or food -00967993 04 n 04 biological_warfare_defense 0 biological_warfare_defence 0 BW_defense 0 BW_defence 0 001 @ 00954311 n 0000 | defense against biological warfare -00968155 04 n 02 campaign 0 military_campaign 0 008 @ 00955060 n 0000 ;c 08199025 n 0000 + 01093786 v 0101 ~ 00968479 n 0000 ~i 01277288 n 0000 ~i 01289061 n 0000 ~i 01290435 n 0000 ~i 01299735 n 0000 | several related operations aimed at achieving a particular goal (usually within geographical and temporal constraints) -00968479 04 n 03 expedition 1 military_expedition 0 hostile_expedition 0 004 @ 00968155 n 0000 ;c 08199025 n 0000 + 01517317 a 0101 ~ 00968715 n 0000 | a military campaign designed to achieve a specific objective in a foreign country -00968715 04 n 01 Crusade 1 009 @ 00968479 n 0000 + 01093944 v 0101 ~i 00969087 n 0000 ~i 00969225 n 0000 ~i 00969421 n 0000 ~i 00969684 n 0000 ~i 00969858 n 0000 ~i 00970079 n 0000 ~i 00970331 n 0000 | any of the more or less continuous military expeditions in the 11th to 13th centuries when Christian powers of Europe tried to recapture the Holy Land from the Muslims -00969087 04 n 01 First_Crusade 0 001 @i 00968715 n 0000 | a Crusade from 1096 to 1099; captured Jerusalem and created a theocracy there -00969225 04 n 01 Second_Crusade 0 001 @i 00968715 n 0000 | a Crusade from 1145 to 1147 that failed because of internal disagreements among the crusaders and led to the loss of Jerusalem in 1187 -00969421 04 n 01 Third_Crusade 0 001 @i 00968715 n 0000 | a Crusade from 1189 to 1192 led by Richard I and the king of France that failed because an army torn by dissensions and fighting on foreign soil could not succeed against forces united by religious zeal -00969684 04 n 01 Fourth_Crusade 0 001 @i 00968715 n 0000 | a Crusade from 1202 to 1204 that was diverted into a battle for Constantinople and failed to recapture Jerusalem -00969858 04 n 01 Fifth_Crusade 0 001 @i 00968715 n 0000 | a Crusade under papal control from 1218 to 1221 that achieved military victories but failed when dissension arose over accepting the terms they had been offered -00970079 04 n 01 Sixth_Crusade 0 001 @i 00968715 n 0000 | a Crusade from 1228 to 1229 led by the Holy Roman Emperor Frederick II who fell ill and was excommunicated by the Pope; by negotiation Frederick II was able to crown himself king of Jerusalem -00970331 04 n 01 Seventh_Crusade 0 001 @i 00968715 n 0000 | a Crusade initiated in 1248 after the loss of Jerusalem in 1244 and defeated in 1249 -00970478 04 n 01 naval_campaign 0 001 @ 00955060 n 0000 | an operation conducted primarily by naval forces in order to gain or extend or maintain control of the sea -00970645 04 n 02 mission 1 military_mission 0 006 @ 00955060 n 0000 ;c 08199025 n 0000 ~ 00970903 n 0000 ~ 00971004 n 0000 ~ 00971096 n 0000 ~ 00972112 n 0000 | an operation that is assigned by a higher headquarters; "the planes were on a bombing mission" -00970903 04 n 01 combat_mission 0 001 @ 00970645 n 0000 | a mission to capture or defend something -00971004 04 n 01 search_mission 0 001 @ 00970645 n 0000 | a mission to discover something -00971096 04 n 01 search_and_destroy_mission 0 001 @ 00970645 n 0000 | an operation developed for United States troops in Vietnam; troops would move through a designated area destroying troops as they found them -00971309 04 n 02 sortie 0 sally 0 002 @ 00952963 n 0000 ;c 08199025 n 0000 | a military action in which besieged troops burst forth from their position -00971463 04 n 03 support 3 reinforcement 1 reenforcement 0 005 @ 00955060 n 0000 ;c 08199025 n 0000 + 00222472 v 0302 + 00222472 v 0201 ~ 00971984 n 0000 | a military operation (often involving new supplies of men and materiel) to strengthen a military force or aid in the performance of its mission; "they called for artillery support" -00971802 04 n 01 dogfight 0 003 @ 01170962 n 0000 + 01648373 v 0101 + 01092826 v 0101 | a violent fight between dogs (sometimes organized illegally for entertainment and gambling) -00971984 04 n 01 close_support 0 001 @ 00971463 n 0000 | close-in firing by one unit against an enemy engaged by another unit -00972112 04 n 01 direct_support 0 001 @ 00970645 n 0000 | a mission requiring one force to support another specific force and authorizing it to answer directly the supported force's request for assistance -00972319 04 n 01 amphibious_demonstration 0 001 @ 00981180 n 0000 | an amphibious operation conducted for the purpose of deceiving the enemy and leading him into a course of action unfavorable to him -00972521 04 n 01 diversionary_landing 0 001 @ 00975270 n 0000 | an amphibious diversionary attack -00972621 04 n 04 attack 0 onslaught 0 onset 1 onrush 0 017 @ 00955060 n 0000 ;c 08199025 n 0000 + 01118449 v 0101 + 01119169 v 0101 ~ 00974358 n 0000 %p 00974444 n 0000 ~ 00974762 n 0000 ~ 00975074 n 0000 ~ 00975270 n 0000 ~ 00975452 n 0000 ~ 00975781 n 0000 ~ 00977301 n 0000 ~ 00978173 n 0000 ~ 00978413 n 0000 ~ 00986938 n 0000 ~ 01246334 n 0000 ~ 01246541 n 0000 | (military) an offensive against an enemy (using weapons); "the attack began at dawn" -00973077 04 n 02 war 0 warfare 0 048 @ 00952963 n 0000 ;c 08199025 n 0000 + 01093172 v 0101 -c 00355252 n 0000 ~ 00953280 n 0000 ~ 00953410 n 0000 %p 00953559 n 0000 ~ 00962567 n 0000 %p 00964343 n 0000 ~ 00967622 n 0000 ~ 00967780 n 0000 ~ 00996180 n 0000 ~ 00996673 n 0000 ~ 00996817 n 0000 %p 01237167 n 0000 ~i 01275934 n 0000 ~i 01285567 n 0000 ~i 01302449 n 0000 ~i 01302683 n 0000 ~i 01302935 n 0000 ~i 01303252 n 0000 ~i 01303739 n 0000 ~i 01304629 n 0000 ~i 01304820 n 0000 ~i 01305147 n 0000 ~i 01305310 n 0000 ~i 01305551 n 0000 ~i 01306007 n 0000 ~i 01306358 n 0000 ~i 01306911 n 0000 ~i 01307090 n 0000 ~i 01307299 n 0000 ~i 01308260 n 0000 ~i 01308438 n 0000 ~i 01308668 n 0000 ~i 01309109 n 0000 ~i 01309395 n 0000 ~i 01309807 n 0000 ~i 01310074 n 0000 ~i 01310347 n 0000 ~i 01310536 n 0000 ~i 01310789 n 0000 ~i 01311045 n 0000 ~i 01311344 n 0000 -c 08408709 n 0000 -c 10443170 n 0000 -c 13981403 n 0000 ~ 13981885 n 0000 | the waging of armed conflict against an enemy; "thousands of people were killed in the war" -00974111 04 n 02 air_raid 0 air_attack 0 001 @ 00976953 n 0000 | an attack by armed planes on a surface target -00974224 04 n 01 dogfight 1 003 @ 00953559 n 0000 + 10023381 n 0101 + 01092826 v 0101 | an aerial engagement between fighter planes -00974358 04 n 01 ground_attack 0 001 @ 00972621 n 0000 | an attack by ground troops -00974444 04 n 01 assault 0 005 @ 00953559 n 0000 #p 00972621 n 0000 ;c 08199025 n 0000 ~ 00772550 n 0000 ~ 00974630 n 0000 | close fighting during the culmination of a military attack -00974630 04 n 01 storm 0 003 @ 00974444 n 0000 + 01126051 v 0101 + 01586600 v 0101 | a direct and violent assault on a stronghold -00974762 04 n 01 charge 1 003 @ 00972621 n 0000 + 01121719 v 0101 ~ 00974994 n 0000 | an impetuous rush toward someone or something; "the wrestler's charge carried him past his adversary"; "the battle began with a cavalry charge" -00974994 04 n 01 countercharge 0 001 @ 00974762 n 0000 | a retaliatory charge -00975074 04 n 02 banzai_attack 0 banzai_charge 0 001 @ 00972621 n 0000 | a mass attack of troops without concern for casualties; originated by Japanese who accompanied it with yells of `banzai' -00975270 04 n 02 diversion 2 diversionary_attack 0 002 @ 00972621 n 0000 ~ 00972521 n 0000 | an attack calculated to draw enemy defense away from the point of the principal attack -00975452 04 n 02 penetration 0 incursion 0 006 @ 00972621 n 0000 ~ 00975658 n 0000 ~ 00975955 n 0000 ~ 00976531 n 0000 ~ 00976698 n 0000 ~ 00976953 n 0000 | an attack that penetrates into enemy territory -00975658 04 n 01 interpenetration 1 002 @ 00975452 n 0000 + 01227235 v 0101 | the action of penetrating between or among -00975781 04 n 02 blitz 0 blitzkrieg 0 003 @ 00972621 n 0000 ;c 08199025 n 0000 + 01126219 v 0101 | a swift and violent military offensive with intensive aerial bombardment -00975955 04 n 01 breakthrough 1 002 @ 00975452 n 0000 + 00426749 v 0101 | a penetration of a barrier such as an enemy's defense -00976085 04 n 03 safety_blitz 0 linebacker_blitzing 0 blitz 2 002 @ 00556313 n 0000 ;c 00469651 n 0000 | (American football) defensive players try to break through the offensive line -00976270 04 n 02 mousetrap 0 trap_play 0 002 @ 00556313 n 0000 ;c 00469651 n 0000 | (American football) a play in which a defensive player is allowed to cross the line of scrimmage and then blocked off as the runner goes through the place the lineman vacated -00976531 04 n 01 invasion 0 003 @ 00975452 n 0000 + 01126360 v 0101 ~ 00977132 n 0000 | the act of invading; the act of an army that invades for conquest or plunder -00976698 04 n 01 infiltration 0 004 @ 00975452 n 0000 ;c 08199025 n 0000 + 02435634 v 0101 + 01913363 v 0101 | a process in which individuals (or small groups) penetrate an area (especially the military penetration of enemy positions without detection) -00976953 04 n 03 foray 0 raid 0 maraud 0 006 @ 00975452 n 0000 + 02020237 v 0301 + 02494850 v 0201 + 01228635 v 0101 ~ 00974111 n 0000 ~ 00977214 n 0000 | a sudden short attack -00977132 04 n 01 inroad 0 001 @ 00976531 n 0000 | an invasion or hostile attack -00977214 04 n 01 swoop 1 002 @ 00976953 n 0000 + 01440010 v 0101 | a very rapid raid -00977301 04 n 01 strike 2 005 @ 00972621 n 0000 + 01123887 v 0101 ~ 00977551 n 0000 ~ 00977857 n 0000 ~ 00978005 n 0000 | an attack that is intended to seize or inflict damage on or destroy an objective; "the strike was scheduled to begin at dawn" -00977551 04 n 01 first_strike 0 001 @ 00977301 n 0000 | the initial use of nuclear weapons to attack a country that also has nuclear weapons; considered feasible only when the attacker can destroy the other country's ability to retaliate; "the Pakistani president promised no first strike against India" -00977857 04 n 01 surgical_strike 0 001 @ 00977301 n 0000 | an attack (usually without prior warning) intended to deal only with a specific target -00978005 04 n 02 preventive_strike 0 preventive_attack 0 001 @ 00977301 n 0000 | a strike that is carried out in order to deter expected aggression by hostile forces -00978173 04 n 02 counterattack 0 countermove 0 003 @ 00972621 n 0000 + 01125084 v 0101 ~ 01174825 n 0000 | an attack by a defending force against an attacking enemy force in order to regain lost ground or cut off enemy advance units etc. -00978413 04 n 02 bombing 0 bombardment 1 005 @ 00972621 n 0000 + 01131902 v 0201 + 01131902 v 0102 ~ 00978764 n 0000 ~ 00978993 n 0000 | an attack by dropping bombs -00978580 04 n 01 bombardment 2 001 @ 01252918 n 0000 | the act (or an instance) of subjecting a body or substance to the impact of high-energy particles (as electrons or alpha rays) -00978764 04 n 01 bombing_run 0 003 @ 00978413 n 0000 ~ 00979180 n 0000 ~ 00979348 n 0000 | that part of the flight that begins with the approach to the target; includes target acquisition and ends with the release of the bombs -00978993 04 n 03 carpet_bombing 0 area_bombing 0 saturation_bombing 0 002 @ 00978413 n 0000 + 01132355 v 0101 | an extensive and systematic bombing intended to devastate a large target -00979180 04 n 01 dive-bombing 0 002 @ 00978764 n 0000 + 01132667 v 0101 | a bombing run in which the bomber releases the bomb while flying straight toward the target -00979348 04 n 02 loft_bombing 0 toss_bombing 0 002 @ 00978764 n 0000 ~ 00979557 n 0000 | a bombing run in which the bomber approaches the target at a low altitude and pulls up just before releasing the bomb -00979557 04 n 01 over-the-shoulder_bombing 0 001 @ 00979348 n 0000 | a special case of loft bombing in which the bomb is released past the vertical so it is tossed back to the target -00979742 04 n 01 bombing 1 003 @ 01244895 n 0000 ;c 00759694 n 0000 ~ 00979902 n 0000 | the use of bombs for sabotage; a tactic frequently used by terrorists -00979902 04 n 01 suicide_bombing 0 001 @ 00979742 n 0000 | a terrorist bombing carried out by someone who does not hope to survive it -00980038 04 n 03 offense 0 offence 0 offensive 0 004 @ 00955060 n 0000 ~ 00980200 n 0000 ~ 00980394 n 0000 ~ 00980779 n 0000 | the action of attacking an enemy -00980200 04 n 01 counteroffensive 0 001 @ 00980038 n 0000 | a large scale offensive (more than a counterattack) undertaken by a defending force to seize the initiative from an attacking force -00980394 04 n 01 dirty_war 0 002 @ 00980038 n 0000 ;c 00759694 n 0000 | an offensive conducted by secret police or the military of a regime against revolutionary and terrorist insurgents and marked by the use of kidnapping and torture and murder with civilians often being the victims; "thousands of people disappeared and were killed during Argentina's dirty war in the late 1970s" -00980779 04 n 02 rollback 0 push_back 0 002 @ 00980038 n 0000 + 01506157 v 0205 | the act of forcing the enemy to withdraw -00980904 04 n 03 peacekeeping 0 peacekeeping_mission 0 peacekeeping_operation 0 002 @ 00955060 n 0000 ;c 08199025 n 0000 | the activity of keeping the peace by military forces (especially when international military forces enforce a truce between hostile groups or nations) -00981180 04 n 01 amphibious_operation 0 005 @ 00955060 n 0000 ;c 08199025 n 0000 ~ 00972319 n 0000 ~ 00981369 n 0000 ~i 01277938 n 0000 | a military operation by both land and sea forces -00981369 04 n 01 amphibious_assault 0 010 @ 00981180 n 0000 ~i 01278509 n 0000 ~i 01280990 n 0000 ~i 01282022 n 0000 ~i 01282966 n 0000 ~i 01284124 n 0000 ~i 01293438 n 0000 ~i 01293650 n 0000 ~i 01296697 n 0000 ~i 01299224 n 0000 | an amphibious operation attacking a land base that is carried out by troops that are landed by naval ships -00981711 04 n 01 information_gathering 0 002 @ 00955060 n 0000 ~ 00981830 n 0000 | the act of collecting information -00981830 04 n 03 intelligence 0 intelligence_activity 0 intelligence_operation 0 010 @ 00981711 n 0000 ~ 00654234 n 0000 ~ 00982153 n 0000 ~ 00982347 n 0000 ~ 00982679 n 0000 ~ 00982852 n 0000 ~ 00983651 n 0000 ~ 00984490 n 0000 ~ 00984609 n 0000 ~ 00986275 n 0000 | the operation of gathering information about an enemy -00982153 04 n 01 current_intelligence 0 001 @ 00981830 n 0000 | intelligence of all types and forms of immediate interest; usually disseminated without delays for evaluation or interpretation -00982347 04 n 02 tactical_intelligence 0 combat_intelligence 0 002 @ 00981830 n 0000 ~ 00982536 n 0000 | intelligence that is required for the planning and conduct of tactical operations -00982536 04 n 01 terrain_intelligence 0 001 @ 00982347 n 0000 | tactical intelligence on the natural and man-made characteristics of an area -00982679 04 n 01 strategic_intelligence 0 001 @ 00981830 n 0000 | intelligence that is required for forming policy and military plans at national and international levels -00982852 04 n 02 signals_intelligence 0 SIGINT 0 004 @ 00981830 n 0000 ~ 00983102 n 0000 ~ 00983287 n 0000 ~ 00983482 n 0000 | intelligence information gathered from communications intelligence or electronics intelligence or telemetry intelligence -00983102 04 n 02 electronics_intelligence 0 ELINT 0 001 @ 00982852 n 0000 | intelligence derived from electromagnetic radiations from foreign sources (other than radioactive sources) -00983287 04 n 02 communications_intelligence 0 COMINT 0 001 @ 00982852 n 0000 | technical and intelligence information derived from foreign communications by other than the intended recipients -00983482 04 n 02 telemetry_intelligence 0 TELINT 0 001 @ 00982852 n 0000 | intelligence derived from the interception and processing and analysis of foreign telemetry -00983651 04 n 01 clandestine_operation 0 002 @ 00981830 n 0000 ~ 00983811 n 0000 | an intelligence operation so planned and executed as to insure concealment -00983811 04 n 01 exfiltration_operation 0 001 @ 00983651 n 0000 | a clandestine rescue operation to bring a defector or refugee or an operative and family out of danger -00983982 04 n 02 psychological_operation 0 psyop 0 002 @ 00955060 n 0000 ;c 08199025 n 0000 | military actions designed to influence the perceptions and attitudes of individuals, groups, and foreign governments -00984195 04 n 01 covert_operation 0 002 @ 00955060 n 0000 ~ 00984357 n 0000 | an intelligence operation so planned as to permit plausible denial by the sponsor -00984357 04 n 01 black_operation 0 001 @ 00984195 n 0000 | a covert operation not attributable to the organization carrying it out -00984490 04 n 01 overt_operation 0 001 @ 00981830 n 0000 | the collection of intelligence openly without concealment -00984609 04 n 02 reconnaissance 1 reconnaissance_mission 0 010 @ 00981830 n 0000 + 02167571 v 0103 + 02167571 v 0102 ~ 00985008 n 0000 ~ 00985106 n 0000 ~ 00985356 n 0000 ~ 00985516 n 0000 ~ 00985746 n 0000 ~ 00985921 n 0000 ~ 00986080 n 0000 | the act of reconnoitring (especially to gain information about an enemy or potential enemy); "an exchange of fire occurred on a reconnaissance mission" -00985008 04 n 03 recce 0 recco 0 reccy 0 001 @ 00984609 n 0000 | reconnaissance (by shortening) -00985106 04 n 04 scouting 0 exploratory_survey 0 reconnoitering 0 reconnoitring 0 004 @ 00984609 n 0000 + 02167571 v 0403 + 02167571 v 0302 + 02167571 v 0101 | exploring in order to gain information; "scouting in enemy territory is very dangerous" -00985356 04 n 01 air_reconnaissance 0 001 @ 00984609 n 0000 | reconnaissance either by visual observation from the air or through the use of airborne sensors -00985516 04 n 01 reconnaissance_by_fire 0 001 @ 00984609 n 0000 | a method of reconnaissance in which fire is placed on a suspected enemy position in order to cause the enemy to disclose his presence by moving or returning fire -00985746 04 n 01 reconnaissance_in_force 0 001 @ 00984609 n 0000 | an offensive operation designed to discover or test the enemy's strength (or to obtain other information) -00985921 04 n 01 shufti 0 002 @ 00984609 n 0000 ;r 08860123 n 0000 | a quick look around (originally military slang); "take a shufti while you're out there" -00986080 04 n 01 electronic_reconnaissance 0 001 @ 00984609 n 0000 | the detection and identification and evaluation and location of foreign electromagnetic radiations (other than radioactive) -00986275 04 n 01 counterintelligence 0 007 @ 00981830 n 0000 ;c 00759694 n 0000 ~ 00654683 n 0000 ~ 00820845 n 0000 ~ 00821083 n 0000 ~ 00986663 n 0000 ~ 00986813 n 0000 | intelligence activities concerned with identifying and counteracting the threat to security posed by hostile intelligence organizations or by individuals engaged in espionage or sabotage or subversion or terrorism -00986663 04 n 01 countersubversion 0 001 @ 00986275 n 0000 | the aspect of counterintelligence designed to detect and prevent subversive activities -00986813 04 n 01 counter-sabotage 0 001 @ 00986275 n 0000 | counterintelligence designed to detect and counteract sabotage -00986938 04 n 02 fire 0 firing 3 035 @ 00972621 n 0000 + 01135783 v 0202 + 01134238 v 0101 + 01133825 v 0101 + 01135783 v 0102 ~ 00987775 n 0000 ~ 00987863 n 0000 ~ 00988177 n 0000 ~ 00988320 n 0000 ~ 00988556 n 0000 ~ 00988893 n 0000 ~ 00989583 n 0000 ~ 00989773 n 0000 ~ 00990319 n 0000 ~ 00990474 n 0000 ~ 00990590 n 0000 ~ 00990719 n 0000 ~ 00990843 n 0000 ~ 00990963 n 0000 ~ 00991070 n 0000 ~ 00991164 n 0000 ~ 00991336 n 0000 ~ 00991496 n 0000 ~ 00991642 n 0000 ~ 00991772 n 0000 ~ 00991914 n 0000 ~ 00992102 n 0000 ~ 00992221 n 0000 ~ 00993228 n 0000 ~ 00993377 n 0000 ~ 00993651 n 0000 ~ 00993956 n 0000 ~ 00994144 n 0000 ~ 00994321 n 0000 ~ 00994449 n 0000 | the act of firing weapons or artillery at an enemy; "hold your fire until you can see the whites of their eyes"; "they retreated in the face of withering enemy fire" -00987775 04 n 01 antiaircraft_fire 0 001 @ 00986938 n 0000 | firing at enemy aircraft -00987863 04 n 05 barrage 0 barrage_fire 0 battery 1 bombardment 0 shelling 0 002 @ 00986938 n 0000 + 01135922 v 0502 | the heavy fire of artillery to saturate an area rather than hit a specific target; "they laid down a barrage in front of the advancing troops"; "the shelling went on for hours without pausing" -00988177 04 n 01 broadside 0 002 @ 00986938 n 0000 ;c 08191701 n 0000 | the simultaneous firing of all the armament on one side of a warship -00988320 04 n 04 fusillade 0 salvo 0 volley 0 burst 1 004 @ 00986938 n 0000 + 01377571 v 0301 + 02029492 v 0301 + 01137582 v 0101 | rapid simultaneous discharge of firearms; "our fusillade from the left flank caught them by surprise" -00988556 04 n 01 call_fire 0 001 @ 00986938 n 0000 | fire delivered on a specific target in response to a request from the supported unit -00988696 04 n 01 close_supporting_fire 0 001 @ 00993956 n 0000 | fire on enemy troops or weapons or positions that are near the supported unit and are the most immediate and serious threat to it -00988893 04 n 02 cover 1 covering_fire 0 002 @ 00986938 n 0000 + 01129201 v 0101 | fire that makes it difficult for the enemy to fire on your own individuals or formations; "artillery provided covering fire for the withdrawal" -00989122 04 n 01 deep_supporting_fire 0 001 @ 00993956 n 0000 | fire on objectives not in the immediate vicinity of your forces but with the objective of destroying enemy reserves and weapons and interfering with the enemy command and supply and communications -00989385 04 n 01 direct_supporting_fire 0 001 @ 00993956 n 0000 | fire delivered in support of part of a force (as opposed to general supporting fire delivered in support of the force as a whole) -00989583 04 n 02 concentrated_fire 0 massed_fire 0 001 @ 00986938 n 0000 | fire from two or more weapons directed at a single target or area (as fire by batteries of two or more warships) -00989773 04 n 01 counterfire 0 004 @ 00986938 n 0000 ~ 00989937 n 0000 ~ 00990071 n 0000 ~ 00990195 n 0000 | fire intended to neutralize or destroy enemy weapons -00989937 04 n 01 counterbattery_fire 0 001 @ 00989773 n 0000 | fire delivered to neutralize or destroy indirect fire weapon systems -00990071 04 n 01 counterbombardment 0 001 @ 00989773 n 0000 | bombardment intended to destroy or neutralize enemy weapons -00990195 04 n 01 countermortar_fire 0 001 @ 00989773 n 0000 | mortar fire intended to destroy or neutralize enemy weapons -00990319 04 n 01 counterpreparation_fire 0 001 @ 00986938 n 0000 | intensive prearranged fire delivered when the immanence of enemy attack is discovered -00990474 04 n 01 crossfire 0 001 @ 00986938 n 0000 | fire from two or more points so that the lines of fire cross -00990590 04 n 01 destruction_fire 0 001 @ 00986938 n 0000 | fire delivered for the sole purpose of destroying material objects -00990719 04 n 01 direct_fire 0 001 @ 00986938 n 0000 | fire delivered on a target that is visible to the person aiming it -00990843 04 n 01 distributed_fire 0 001 @ 00986938 n 0000 | fire dispersed so as to engage effectively an area target -00990963 04 n 02 friendly_fire 0 fratricide 1 001 @ 00986938 n 0000 | fire that injures or kills an ally -00991070 04 n 01 hostile_fire 0 001 @ 00986938 n 0000 | fire that injures or kills an enemy -00991164 04 n 01 grazing_fire 0 001 @ 00986938 n 0000 | fire approximately parallel to the ground; the center of the cone of fire does rise above 1 meter from the ground -00991336 04 n 01 harassing_fire 0 001 @ 00986938 n 0000 | fire designed to disturb the rest of enemy troops and to curtail movement and to lower enemy morale -00991496 04 n 01 indirect_fire 0 001 @ 00986938 n 0000 | fire delivered on a target that is not itself used as the point of aim for the weapons -00991642 04 n 01 interdiction_fire 0 001 @ 00986938 n 0000 | fire directed to an area to prevent the enemy from using that area -00991772 04 n 01 neutralization_fire 0 001 @ 00986938 n 0000 | fire that is delivered in order to render the target ineffective or unusable -00991914 04 n 01 observed_fire 0 001 @ 00986938 n 0000 | fire for which the point of impact (the burst) can be seen by an observer; fire can be adjusted on the basis of the observations -00992102 04 n 01 preparation_fire 0 001 @ 00986938 n 0000 | fire delivered on a target in preparation for an assault -00992221 04 n 01 radar_fire 0 001 @ 00986938 n 0000 | gunfire aimed a target that is being tracked by radar -00992331 04 n 02 dating 0 geological_dating 0 005 @ 00646833 n 0000 + 00619183 v 0101 ~ 00992544 n 0000 ~ 00992732 n 0000 ~ 00992995 n 0000 | use of chemical analysis to estimate the age of geological specimens -00992544 04 n 01 potassium-argon_dating 0 001 @ 00992331 n 0000 | geological dating that relies on the proportions of radioactive potassium in a rock sample and its decay product, argon -00992732 04 n 03 radiocarbon_dating 0 carbon_dating 0 carbon-14_dating 0 001 @ 00992331 n 0000 | a chemical analysis used to determine the age of organic materials based on their content of the radioisotope carbon-14; believed to be reliable up to 40,000 years -00992995 04 n 01 rubidium-strontium_dating 0 001 @ 00992331 n 0000 | geological dating based on the proportions of radioactive rubidium into its decay product strontium; radioactive rubidium has a half-life of 47,000,000,000 years -00993228 04 n 01 registration_fire 0 001 @ 00986938 n 0000 | fire delivered to obtain accurate data for subsequent effective engagement of targets -00993377 04 n 01 scheduled_fire 0 001 @ 00986938 n 0000 | prearranged fire delivered at a predetermined time -00993488 04 n 01 scouring 1 002 @ 00945401 n 0000 + 01317276 v 0101 | moving over territory to search for something; "scouring the entire area revealed nothing" -00993651 04 n 01 searching_fire 0 001 @ 00986938 n 0000 | fire distributed in depth by successive changes in the elevation of the gun -00993787 04 n 01 shakedown 1 002 @ 00945401 n 0000 ;u 07157273 n 0000 | a very thorough search of a person or a place; "a shakedown by the police uncovered the drugs" -00993956 04 n 01 supporting_fire 0 004 @ 00986938 n 0000 ~ 00988696 n 0000 ~ 00989122 n 0000 ~ 00989385 n 0000 | fire delivered by supporting units to protect or assist a unit in combat -00994144 04 n 01 suppressive_fire 0 001 @ 00986938 n 0000 | fire on or about a weapon system to degrade its performance below what is needed to fulfill its mission objectives -00994321 04 n 01 unobserved_fire 0 001 @ 00986938 n 0000 | fire for which the point of impact (the bursts) cannot be observed -00994449 04 n 02 artillery_fire 0 cannon_fire 0 005 @ 00986938 n 0000 ~ 00994623 n 0000 ~ 00994745 n 0000 ~ 00994895 n 0000 ~ 00994989 n 0000 | fire delivered by artillery -00994623 04 n 02 cannonade 0 drumfire 0 002 @ 00994449 n 0000 + 01136481 v 0101 | intense and continuous artillery fire -00994745 04 n 01 high-angle_fire 0 001 @ 00994449 n 0000 | fire from a cannon that is fired at an elevation greater than that for the maximum range -00994895 04 n 01 mortar_fire 0 001 @ 00994449 n 0000 | artillery fire delivered by a mortar -00994989 04 n 01 zone_fire 0 001 @ 00994449 n 0000 | artillery or mortar fire delivered in a constant direction at several quadrant elevations -00995134 04 n 02 electronic_countermeasures 0 ECM 0 003 @ 00954751 n 0000 ~ 01251270 n 0000 ~ 01253379 n 0000 | electronic warfare undertaken to prevent or reduce an enemy's effective use of the electromagnetic spectrum -00995356 04 n 02 electronic_counter-countermeasures 0 ECCM 0 001 @ 00954751 n 0000 | electronic warfare undertaken to insure effective friendly use of the electromagnetic spectrum in spite of the enemy's use of electronic warfare -00995588 04 n 02 electronic_warfare-support_measures 0 ESM 0 001 @ 00954751 n 0000 | electronic warfare undertaken under direct control of an operational commander to locate sources of radiated electromagnetic energy for the purpose of immediate threat recognition -00995855 04 n 01 electromagnetic_intrusion 0 001 @ 00954751 n 0000 | the deliberate insertion of electromagnetic energy into transmission paths with the objective of confusing or deceiving operators -00996056 04 n 02 germ_warfare 0 bacteriological_warfare 0 001 @ 00967780 n 0000 | the use of harmful bacteria as a weapon -00996180 04 n 02 information_warfare 0 IW 0 001 @ 00973077 n 0000 | the use of information or information technology during a time of crisis or conflict to achieve or promote specific objectives over a specific adversary or adversaries; "not everyone agrees that information warfare is limited to the realm of traditional warfare" -00996513 04 n 02 jihad 0 jehad 0 002 @ 00788766 n 0000 + 09683180 n 0101 | a holy struggle or striving by a Muslim for a moral or spiritual or political goal -00996673 04 n 03 jihad 1 jehad 1 international_jihad 0 002 @ 00973077 n 0000 + 09683180 n 0101 | a holy war waged by Muslims against infidels -00996817 04 n 01 world_war 0 003 @ 00973077 n 0000 ~i 01311520 n 0000 ~i 01312096 n 0000 | a war in which the major nations of the world are involved -00996969 04 n 04 measurement 0 measuring 0 measure 0 mensuration 0 046 @ 00407535 n 0000 + 00647094 v 0402 + 00681429 v 0301 + 02704349 v 0301 + 00489837 v 0302 + 00647094 v 0301 + 00647094 v 0201 + 00647094 v 0101 + 00489837 v 0102 ~ 00603995 n 0000 ~ 00647270 n 0000 ~ 00998037 n 0000 ~ 00998196 n 0000 ~ 00998329 n 0000 ~ 00998423 n 0000 ~ 00998514 n 0000 ~ 00998604 n 0000 ~ 00998768 n 0000 ~ 00998982 n 0000 ~ 00999089 n 0000 ~ 01001814 n 0000 ~ 01001923 n 0000 ~ 01002008 n 0000 ~ 01002165 n 0000 ~ 01002284 n 0000 ~ 01002413 n 0000 ~ 01002554 n 0000 ~ 01002677 n 0000 ~ 01002872 n 0000 ~ 01002956 n 0000 ~ 01003113 n 0000 ~ 01003272 n 0000 ~ 01003570 n 0000 ~ 01004377 n 0000 ~ 01004582 n 0000 ~ 01004775 n 0000 ~ 01004961 n 0000 ~ 01005100 n 0000 ~ 01005284 n 0000 ~ 01005473 n 0000 ~ 01005579 n 0000 ~ 01116206 n 0000 ~ 01116360 n 0000 ~ 01116466 n 0000 ~ 01116696 n 0000 ~ 01117318 n 0000 | the act or process of assigning numbers to phenomena according to a rule; "the measurements were carefully done"; "his mental measurings proved remarkably accurate" -00998037 04 n 01 actinometry 0 002 @ 00996969 n 0000 + 02602644 a 0101 | measuring the intensity of electromagnetic radiation (especially of the sun's rays) -00998196 04 n 01 algometry 0 003 @ 00996969 n 0000 + 02611290 a 0101 + 02611290 a 0102 | measuring sensitivity to pain or pressure -00998329 04 n 01 anemography 0 001 @ 00996969 n 0000 | recording anemometrical measurements -00998423 04 n 01 anemometry 0 001 @ 00996969 n 0000 | measuring wind speed and direction -00998514 04 n 01 angulation 1 001 @ 00996969 n 0000 | the precise measurement of angles -00998604 04 n 01 anthropometry 0 003 @ 00996969 n 0000 + 02629017 a 0101 + 02629017 a 0102 | measurement and study of the human body and its parts and capacities -00998768 04 n 01 arterial_blood_gases 0 001 @ 00996969 n 0000 | measurement of the pH level and the oxygen and carbon dioxide concentrations in arterial blood; important in diagnosis of many respiratory diseases -00998982 04 n 01 audiometry 0 002 @ 00996969 n 0000 + 02648270 a 0101 | measuring sensitivity of hearing -00999089 04 n 02 bathymetry 0 plumbing 0 004 @ 00996969 n 0000 + 00730647 v 0201 + 02660337 a 0101 + 02660337 a 0102 | measuring the depths of the oceans -00999245 04 n 03 calibration 0 standardization 0 standardisation 0 007 @ 00407535 n 0000 + 00682436 v 0302 + 00467717 v 0201 + 01589497 v 0101 + 00295697 v 0101 ~ 00999588 n 0000 ~ 00999787 n 0000 | the act of checking or adjusting (by comparison with a standard) the accuracy of a measuring instrument; "the thermometer needed calibration" -00999588 04 n 01 tuning 0 004 @ 00999245 n 0000 ;c 07020895 n 0000 + 00295966 v 0101 + 00295346 v 0101 | (music) calibrating something (an instrument or electronic circuit) to a standard frequency -00999787 04 n 03 adjustment 1 registration 1 readjustment 1 009 @ 00999245 n 0000 + 00922867 v 0202 + 00296178 v 0101 ~ 01000068 n 0000 ~ 01000276 n 0000 ~ 01000411 n 0000 ~ 01000969 n 0000 ~ 01001097 n 0000 ~ 01001640 n 0000 | the act of adjusting something to match a standard -01000068 04 n 01 alignment 0 005 @ 00999787 n 0000 + 02658867 v 0101 + 00466053 v 0101 ~ 01001344 n 0000 ~ 01001489 n 0000 | the act of adjusting or aligning the parts of a device in relation to each other -01000276 04 n 01 collimation 0 002 @ 00999787 n 0000 + 00465461 v 0101 | the accurate adjustment of the line of sight of a telescope -01000411 04 n 01 temperament 0 002 @ 00999787 n 0000 ~ 01000610 n 0000 | an adjustment of the intervals (as in tuning a keyboard instrument) so that the scale can be used to play in different keys -01000610 04 n 01 equal_temperament 0 001 @ 01000411 n 0000 | the division of the scale based on an octave that is divided into twelve exactly equal semitones; "equal temperament is the system commonly used in keyboard instruments" -01000843 04 n 01 tune 0 001 @ 00199707 n 0000 | the adjustment of a radio receiver or other circuit to a required frequency -01000969 04 n 01 tune-up 0 002 @ 00999787 n 0000 + 00295966 v 0102 | adjustments made to an engine to improve its performance -01001097 04 n 04 synchronization 1 synchronisation 1 synchronizing 1 synchronising 1 005 @ 00999787 n 0000 + 00393953 v 0402 + 00393953 v 0301 + 00393953 v 0202 + 00393953 v 0101 | an adjustment that causes something to occur or recur in unison -01001344 04 n 01 camber 0 001 @ 01000068 n 0000 | the alignment of the wheels of a motor vehicle closer together at the bottom than at the top -01001489 04 n 01 toe-in 0 001 @ 01000068 n 0000 | the alignment of the front wheels of a motor vehicle closer together at the front than at the back -01001640 04 n 01 voicing 0 001 @ 00999787 n 0000 | the act of adjusting an organ pipe (or wind instrument) so that it conforms to the standards of tone and pitch and color -01001814 04 n 01 calorimetry 0 002 @ 00996969 n 0000 + 02675738 a 0101 | measurement of quantities of heat -01001923 04 n 01 cephalometry 0 001 @ 00996969 n 0000 | measurement of human heads -01002008 04 n 01 densitometry 0 001 @ 00996969 n 0000 | measuring the optical density of a substance by shining light on it and measuring its transmission -01002165 04 n 01 dosimetry 0 001 @ 00996969 n 0000 | measuring the dose of radiation emitted by a radioactive source -01002284 04 n 02 fetometry 0 foetometry 0 001 @ 00996969 n 0000 | measurement of a fetus (especially the diameter of the head) -01002413 04 n 02 hydrometry 0 gravimetry 0 003 @ 00996969 n 0000 + 03002841 a 0202 + 03002841 a 0101 | the measurement of specific gravity -01002554 04 n 02 hypsometry 0 hypsography 0 001 @ 00996969 n 0000 | measurement of the elevation of land above sea level -01002677 04 n 01 mental_measurement 0 002 @ 00996969 n 0000 ~ 01006675 n 0000 | a generic term used to cover any application of measurement techniques to the quantification of mental functions -01002872 04 n 01 micrometry 0 001 @ 00996969 n 0000 | measuring with a micrometer -01002956 04 n 01 observation 1 004 @ 00996969 n 0000 + 02154508 v 0102 + 00732552 v 0101 ~ 01247969 n 0000 | the act of making and recording a measurement -01003113 04 n 01 pelvimetry 0 001 @ 00996969 n 0000 | measurement of the dimensions of the bony birth canal (to determine whether vaginal birth is possible) -01003272 04 n 01 photometry 0 003 @ 00996969 n 0000 + 02777548 a 0102 ~ 01003435 n 0000 | measurement of the properties of light (especially luminous intensity) -01003435 04 n 01 cytophotometry 0 001 @ 01003272 n 0000 | the study of chemical compounds inside a cell by means of a cytophotometer -01003570 04 n 01 quantification 0 003 @ 00996969 n 0000 + 00489837 v 0101 ~ 01003729 n 0000 | the act of discovering or expressing the quantity of something -01003729 04 n 02 gradation 0 graduation 0 007 @ 01003570 n 0000 + 01143138 a 0101 + 01614079 v 0101 + 00657728 v 0101 + 00658052 v 0105 + 00657550 v 0101 ~ 01003936 n 0000 | the act of arranging in grades -01003936 04 n 02 shading 0 blending 0 001 @ 01003729 n 0000 | a gradation involving small or imperceptible differences between grades -01004072 04 n 02 divergence 0 divergency 0 007 @ 00383606 n 0000 + 02066662 a 0201 + 00612652 a 0201 + 02709906 v 0201 + 02032415 v 0201 + 00612652 a 0101 + 02032415 v 0101 | the act of moving away in different direction from a common point; "an angle is formed by the divergence of two straight lines" -01004377 04 n 01 radioactive_dating 0 001 @ 00996969 n 0000 | measurement of the amount of radioactive material (usually carbon 14) that an object contains; can be used to estimate the age of the object -01004582 04 n 02 reading 2 meter_reading 0 002 @ 00996969 n 0000 + 00922867 v 0101 | the act of measuring with meters or similar instruments; "he has a job meter reading for the gas company" -01004775 04 n 01 sampling 1 002 @ 00996969 n 0000 ;c 06271778 n 0000 | measurement at regular intervals of the amplitude of a varying waveform (in order to convert it to digital form) -01004961 04 n 01 sounding 0 002 @ 00996969 n 0000 + 00491689 v 0102 | the act of measuring depth of water (usually with a sounding line) -01005100 04 n 01 sound_ranging 0 001 @ 00996969 n 0000 | locating a source of sound (as an enemy gun) by measurements of the time the sound arrives at microphones in known positions -01005284 04 n 01 scaling 1 005 @ 00996969 n 0000 + 02728388 v 0101 + 00319406 v 0101 + 00490428 v 0101 ~ 01005814 n 0000 | act of measuring or arranging or adjusting according to a scale -01005473 04 n 01 spirometry 0 001 @ 00996969 n 0000 | the use of a spirometer to measure vital capacity -01005579 04 n 01 surveying 0 003 @ 00996969 n 0000 + 00646738 v 0101 ~ 00617337 n 0000 | the practice of measuring angles and distances on the ground so that they can be accurately plotted on a map; "he studied surveying at college" -01005814 04 n 01 scalage 0 003 @ 01005284 n 0000 + 02728388 v 0101 + 00319406 v 0101 | the act of scaling in weight or quantity or dimension -01005957 04 n 01 scalage 1 001 @ 05803379 n 0000 | estimation of the amount of lumber in a log -01006054 04 n 01 electromyography 0 001 @ 00177127 n 0000 | diagnosis of neuromuscular disorders with the use of an electromyograph -01006188 04 n 01 mammography 0 001 @ 00177127 n 0000 | a diagnostic procedure to detect breast tumors by the use of X rays -01006313 04 n 01 thermography 0 002 @ 00177127 n 0000 ~ 01006536 n 0000 | diagnostic technique using a thermograph to record the heat produced by different parts of the body; used to study blood flow and to detect tumors -01006536 04 n 01 mammothermography 0 001 @ 01006313 n 0000 | the use of thermography to detect breast tumors (which appear as hot spots) -01006675 04 n 04 test 2 mental_test 0 mental_testing 0 psychometric_test 0 007 @ 01002677 n 0000 + 00669970 v 0101 + 01112584 v 0101 + 00786458 v 0102 ~ 01007053 n 0000 ~ 01007463 n 0000 ~ 01008271 n 0000 | any standardized procedure for measuring sensitivity or memory or intelligence or aptitude or personality etc; "the test was standardized on a large sample of students" -01007053 04 n 02 intelligence_test 0 IQ_test 0 003 @ 01006675 n 0000 ~ 01007273 n 0000 ~ 01007372 n 0000 | a psychometric test of intelligence; "they used to think that intelligence is what an intelligence test tests" -01007273 04 n 01 Stanford-Binet_test 0 001 @ 01007053 n 0000 | revision of the Binet-Simon Scale -01007372 04 n 01 Binet-Simon_Scale 0 001 @ 01007053 n 0000 | the first intelligence test -01007463 04 n 01 personality_test 0 003 @ 01006675 n 0000 ~ 01007609 n 0000 ~ 06474289 n 0000 | any test that is intended to assess personality -01007609 04 n 03 projective_test 0 projective_device 0 projective_technique 0 003 @ 01007463 n 0000 ~ 01007907 n 0000 ~ 01008097 n 0000 | any personality test designed to yield information about someone's personality on the basis of their unrestricted response to ambiguous objects or situations -01007907 04 n 03 Rorschach 0 Rorschach_test 0 inkblot_test 0 001 @ 01007609 n 0000 | a projective tests using bilaterally symmetrical inkblots; subjects state what they see in the inkblot -01008097 04 n 02 Thematic_Apperception_Test 0 TAT 0 001 @ 01007609 n 0000 | a projective technique using black-and-white pictures; subjects tell a story about each picture -01008271 04 n 01 sub-test 0 002 @ 01006675 n 0000 #m 07953827 n 0000 | one of a battery of related tests -01008378 04 n 02 organization 1 organisation 1 012 @ 00407535 n 0000 + 00710005 v 0205 + 02432530 v 0202 + 00404642 v 0202 + 02432530 v 0101 + 00710005 v 0104 + 00404642 v 0101 ~ 01009001 n 0000 ~ 01009190 n 0000 ~ 01009871 n 0000 ~ 01011166 n 0000 ~ 01016973 n 0000 | the activity or result of distributing or disposing persons or things properly or methodically; "his organization of the work force was very efficient" -01008801 04 n 01 orchestration 2 002 @ 00939628 n 0000 + 00710005 v 0106 | an arrangement of events that attempts to achieve a maximum effect; "the skillful orchestration of his political campaign" -01009001 04 n 02 randomization 0 randomisation 0 003 @ 01008378 n 0000 + 00278899 v 0202 + 00278899 v 0101 | a deliberately haphazard arrangement of observations so as to simulate chance -01009190 04 n 04 systematization 0 systematisation 0 rationalization 0 rationalisation 0 007 @ 01008378 n 0000 + 00629257 v 0402 + 00629257 v 0301 + 00480969 v 0202 + 00480969 v 0101 ~ 01009507 n 0000 ~ 01009637 n 0000 | systematic organization; the act of organizing something according to a system or a rationale -01009507 04 n 01 codification 0 002 @ 01009190 n 0000 + 00481739 v 0101 | the act of codifying; arranging in a systematic order -01009637 04 n 02 formalization 0 formalisation 0 005 @ 01009190 n 0000 + 02478701 v 0203 + 02478936 v 0202 + 02478701 v 0102 + 02478936 v 0101 | the act of making formal (as by stating formal rules governing classes of expressions) -01009871 04 n 02 order 0 ordering 0 012 @ 01008378 n 0000 + 00658052 v 0204 + 00276883 v 0201 + 00277659 v 0201 + 00276883 v 0101 + 00277659 v 0101 + 00745499 v 0101 ~ 01010245 n 0000 ~ 01010334 n 0000 ~ 01010458 n 0000 ~ 01010901 n 0000 ~ 01011028 n 0000 | the act of putting things in a sequential arrangement; "there were mistakes in the ordering of items on the list" -01010245 04 n 01 rank_order 0 001 @ 01009871 n 0000 | an arrangement according to rank -01010334 04 n 02 scaling 2 grading 0 002 @ 01009871 n 0000 + 00658052 v 0205 | the act of arranging in a graduated series -01010458 04 n 02 succession 0 sequence 0 006 @ 01009871 n 0000 + 01667729 a 0203 + 00660571 v 0201 + 02406585 v 0101 ~ 00457890 n 0000 ~ 01010684 n 0000 | the action of following in order; "he played the trumps in sequence" -01010684 04 n 01 alternation 0 003 @ 01010458 n 0000 + 00121506 v 0101 + 00121214 v 0101 | successive change from one thing or state to another and back again; "a trill is a rapid alternation between the two notes" -01010901 04 n 01 layout 0 002 @ 01009871 n 0000 + 00711040 v 0101 | the act of laying out (as by making plans for something) -01011028 04 n 02 alphabetization 0 alphabetisation 0 002 @ 01009871 n 0000 + 00279239 v 0101 | the act of putting in alphabetical order -01011166 04 n 03 listing 0 itemization 0 itemisation 0 009 @ 01008378 n 0000 + 00946588 v 0302 + 00946105 v 0304 + 00946588 v 0201 + 00946105 v 0203 + 02472223 v 0101 + 00946755 v 0102 + 00945853 v 0101 ~ 01011425 n 0000 | the act of making a list of items -01011425 04 n 04 inventory 0 inventorying 0 stocktaking 0 stock-taking 0 003 @ 01011166 n 0000 + 02472495 v 0201 ~ 01011720 n 0000 | making an itemized list of merchandise or supplies on hand; "an inventory may be necessary to see if anything is missing"; "they held an inventory every month" -01011720 04 n 02 stocktake 0 stock-take 0 001 @ 01011425 n 0000 | an instance of stocktaking; "the auditor did not attend the stocktake or check the valuations" -01011883 04 n 01 roll_call 0 004 @ 07109847 n 0000 ~ 01012030 n 0000 ~ 01012125 n 0000 ~ 01012257 n 0000 | calling out an official list of names -01012030 04 n 01 mail_call 0 001 @ 01011883 n 0000 | a call of names of those receiving mail -01012125 04 n 01 muster_call 0 002 @ 01011883 n 0000 ;c 08199025 n 0000 | a call of the names of personnel at a military assembly -01012257 04 n 01 attendance_check 0 001 @ 01011883 n 0000 | a call of students' names in a classroom -01012360 04 n 01 grouping 0 009 @ 00407535 n 0000 + 01089878 v 0101 + 00656576 v 0101 ~ 00389610 n 0000 ~ 00390198 n 0000 ~ 01012608 n 0000 ~ 01012712 n 0000 ~ 01014066 n 0000 ~ 01016832 n 0000 | the activity of putting things together in groups -01012608 04 n 01 phrasing 0 001 @ 01012360 n 0000 | the grouping of musical phrases in a melodic line -01012712 04 n 06 categorization 0 categorisation 0 classification 0 compartmentalization 0 compartmentalisation 0 assortment 0 013 @ 01012360 n 0000 + 00654625 v 0604 + 00483801 v 0502 + 00483801 v 0401 + 00739662 v 0302 + 00654625 v 0301 + 00657260 v 0101 ~ 01013156 n 0000 ~ 01013316 n 0000 ~ 01013434 n 0000 ~ 01013604 n 0000 ~ 01013770 n 0000 ~ 01013971 n 0000 | the act of distributing things into classes or categories of the same type -01013156 04 n 01 indexing 0 002 @ 01012712 n 0000 + 02354112 v 0101 | the act of classifying and providing an index in order to make items easier to retrieve -01013316 04 n 01 reclassification 0 001 @ 01012712 n 0000 | classifying something again (usually in a new category) -01013434 04 n 01 relegation 2 003 @ 01012712 n 0000 + 02399331 v 0103 + 00739662 v 0101 | the act of assigning (someone or something) to a particular class or category -01013604 04 n 01 stratification 0 003 @ 01012712 n 0000 + 02513048 v 0101 + 02512808 v 0101 | the act or process or arranging persons into classes or social strata -01013770 04 n 01 taxonomy 0 004 @ 01012712 n 0000 + 10693824 n 0101 + 03018498 a 0101 + 03018498 a 0102 | practice of classifying plants and animals according to their presumed natural relationships -01013971 04 n 01 typology 0 001 @ 01012712 n 0000 | classification according to general type -01014066 04 n 04 collection 0 collecting 0 assembling 0 aggregation 0 017 @ 01012360 n 0000 + 02304982 v 0202 + 01384439 v 0201 + 01380638 v 0203 + 02304982 v 0102 + 01384439 v 0101 + 01380638 v 0103 ~ 01014490 n 0000 ~ 01014607 n 0000 ~ 01014731 n 0000 ~ 01014990 n 0000 ~ 01015551 n 0000 ~ 01015689 n 0000 ~ 01015996 n 0000 ~ 01016201 n 0000 ~ 01016420 n 0000 ~ 01016748 n 0000 | the act of gathering something together -01014490 04 n 01 agglomeration 0 001 @ 01014066 n 0000 | the act of collecting in a mass; the act of agglomerating -01014607 04 n 01 collation 2 002 @ 01014066 n 0000 + 01385759 v 0101 | assembling in proper numerical or logical sequence -01014731 04 n 02 compilation 0 compiling 0 005 @ 01014066 n 0000 + 01626138 v 0202 + 02304982 v 0106 + 01627105 v 0101 + 01626138 v 0102 | the act of compiling (as into a single book or file or list); "the job of compiling the inventory took several hours" -01014990 04 n 02 gather 0 gathering 1 006 @ 01014066 n 0000 + 00158804 v 0205 + 01316619 v 0101 + 01380638 v 0101 ~ 01015175 n 0000 ~ 01015310 n 0000 | the act of gathering something -01015175 04 n 02 centralization 1 centralisation 1 003 @ 01014990 n 0000 + 00405236 v 0202 + 00405236 v 0101 | gathering to a center -01015310 04 n 03 harvest 1 harvesting 0 harvest_home 0 004 @ 01014990 n 0000 + 01320009 v 0202 + 01320009 v 0102 ~ 01015477 n 0000 | the gathering of a ripened crop -01015477 04 n 01 haying 1 001 @ 01015310 n 0000 | the harvesting of hay -01015551 04 n 01 bottle_collection 1 001 @ 01014066 n 0000 | the activity of collecting bottles; "bottle collection is a hobby of hers" -01015689 04 n 02 conchology 0 shell_collecting 0 003 @ 01014066 n 0000 @ 06073067 n 0000 + 09951835 n 0101 | the collection and study of mollusc shells -01015843 04 n 04 garbage_collection 0 garbage_pickup 0 trash_collection 0 trash_pickup 0 001 @ 01016201 n 0000 | the collection and removal of garbage -01015996 04 n 04 numismatics 0 numismatology 0 coin_collecting 0 coin_collection 0 003 @ 01014066 n 0000 + 10366779 n 0202 + 10366779 n 0101 | the collection and study of money (and coins in particular) -01016201 04 n 01 pickup 0 004 @ 01014066 n 0000 + 02287041 v 0101 ~ 01015843 n 0000 + 02305586 v 0102 | the act or process of picking up or collecting from various places; "garbage pickup is on Mondays and Thursdays" -01016420 04 n 03 philately 0 stamp_collecting 0 stamp_collection 0 005 @ 01014066 n 0000 + 10422405 n 0101 + 03006854 a 0101 + 03006854 a 0102 ~ 01016628 n 0000 | the collection and study of postage stamps -01016628 04 n 01 aerophilately 0 002 @ 01016420 n 0000 + 03007038 a 0101 | the collection and study of airmail stamps -01016748 04 n 01 tax_collection 0 001 @ 01014066 n 0000 | the collection of taxes -01016832 04 n 01 sorting 0 004 @ 01012360 n 0000 + 00654625 v 0103 ~ 01017167 n 0000 ~ 01254253 n 0000 | grouping by class or kind or size -01016973 04 n 02 territorialization 0 territorialisation 0 005 @ 01008378 n 0000 + 02432975 v 0202 + 00579952 v 0202 + 02432975 v 0101 + 00579952 v 0101 | the act of organizing as a territory -01017167 04 n 01 triage 0 001 @ 01016832 n 0000 | sorting and allocating aid on the basis of need for or likely benefit from medical treatment or food -01017320 04 n 02 support 1 supporting 0 005 @ 00407535 n 0000 + 01217043 v 0202 + 01217043 v 0102 ~ 01017550 n 0000 ~ 01017701 n 0000 | the act of bearing the weight of or strengthening; "he leaned against the wall for support" -01017550 04 n 03 shoring 0 shoring_up 0 propping_up 0 003 @ 01017320 n 0000 + 01219004 v 0203 + 01219004 v 0104 | the act of propping up with shores -01017701 04 n 03 suspension 0 dangling 0 hanging 1 005 @ 01017320 n 0000 + 01481957 v 0301 + 01482285 v 0201 + 01481154 v 0101 + 00148763 v 0101 | the act of suspending something (hanging it from above so it moves freely); "there was a small ceremony for the hanging of the portrait" -01017987 04 n 02 continuance 0 continuation 0 015 @ 00407535 n 0000 + 02747922 v 0201 + 02747709 v 0201 + 02684924 v 0201 + 01995549 v 0203 + 00781000 v 0201 ! 01022483 n 0202 + 02684924 v 0101 ! 01022483 n 0101 ~ 01018366 n 0000 ~ 01018630 n 0000 ~ 01021579 n 0000 ~ 01021889 n 0000 ~ 01022008 n 0000 ~ 01022178 n 0000 | the act of continuing an activity without interruption -01018366 04 n 04 prolongation 0 protraction 0 perpetuation 0 lengthening 0 005 @ 01017987 n 0000 + 02648253 v 0301 + 00317888 v 0202 + 02679530 v 0101 + 00317888 v 0101 | the act of prolonging something; "there was an indefinite prolongation of the peace talks" -01018630 04 n 02 repetition 0 repeating 0 013 @ 01017987 n 0000 + 01734502 v 0204 + 01964367 a 0102 + 01734502 v 0104 + 00958334 v 0101 ~ 01018951 n 0000 ~ 01019129 n 0000 ~ 01019248 n 0000 ~ 01019372 n 0000 ~ 01019524 n 0000 ~ 01020117 n 0000 ~ 01248852 n 0000 ~ 01249060 n 0000 | the act of doing or performing again -01018951 04 n 01 echolalia 0 002 @ 01018630 n 0000 ;c 06055946 n 0000 | (psychiatry) mechanical and meaningless repetition of the words of another person (as in schizophrenia) -01019129 04 n 01 iteration 0 002 @ 01018630 n 0000 + 00958334 v 0104 | doing or saying again; a repeated performance -01019248 04 n 01 redundancy 0 003 @ 01018630 n 0000 + 01581305 a 0103 + 00549826 a 0102 | repetition of an act needlessly -01019372 04 n 02 reduplication 0 reiteration 0 002 @ 01018630 n 0000 + 00958334 v 0202 | the act of repeating over and again (or an instance thereof) -01019524 04 n 01 copying 0 007 @ 01018630 n 0000 + 01747374 v 0101 + 01693881 v 0101 + 01742886 v 0102 ~ 01019703 n 0000 ~ 01019901 n 0000 ~ 01020936 n 0000 | an act of copying -01019703 04 n 02 duplication 0 gemination 0 002 @ 01019524 n 0000 + 01735308 v 0101 | the act of copying or making a duplicate (or duplicates) of something; "this kind of duplication is wasteful" -01019901 04 n 02 reproduction 1 replication 0 004 @ 01019524 n 0000 + 01736822 v 0101 ~ 00644156 n 0000 ~ 01020362 n 0000 | the act of making copies; "Gutenberg's reproduction of holy texts was far more efficient" -01020117 04 n 03 replay 0 instant_replay 0 action_replay 0 004 @ 01018630 n 0000 ;c 06277280 n 0000 ;r 08860123 n 0304 + 01738347 v 0102 | the immediate rebroadcast of some action (especially sports action) that has been recorded on videotape -01020362 04 n 01 sound_reproduction 0 003 @ 01019901 n 0000 ~ 01020488 n 0000 ~ 01020770 n 0000 | the reproduction of sound -01020488 04 n 02 high_fidelity 0 hi-fi 0 002 @ 01020362 n 0000 ~ 01020628 n 0000 | the reproduction of sound with little or no distortion -01020628 04 n 02 headroom 0 dynamic_headroom 0 001 @ 01020488 n 0000 | the capacity of a system to reproduce loud sounds without distortion -01020770 04 n 01 playback 0 002 @ 01020362 n 0000 + 01738347 v 0101 | the act of reproducing recorded sound; "he was allowed to hear the playback of his testimony" -01020936 04 n 01 imitation 0 005 @ 01019524 n 0000 + 01742886 v 0101 ~ 01021119 n 0000 ~ 01021270 n 0000 ~ 01021396 n 0000 | copying (or trying to copy) the actions of someone else -01021119 04 n 01 echo 0 001 @ 01020936 n 0000 | an imitation or repetition; "the flower arrangement was created as an echo of a client's still life" -01021270 04 n 01 emulation 0 003 @ 01020936 n 0000 + 02675701 v 0101 + 01122405 v 0101 | effort to equal or surpass another -01021396 04 n 01 mimicry 1 001 @ 01020936 n 0000 | the resemblance of an animal species to another species or to natural objects; provides concealment and protection from predators -01021579 04 n 03 perseverance 0 persistence 0 perseveration 0 005 @ 01017987 n 0000 + 00958823 v 0301 + 00350461 v 0301 + 00350461 v 0202 + 00350461 v 0101 | the act of persisting or persevering; continuing or repeating behavior; "his perseveration continued to the point where it was no longer appropriate" -01021889 04 n 01 abidance 0 002 @ 01017987 n 0000 + 00668099 v 010a | the act of abiding (enduring without yielding) -01022008 04 n 02 pursuance 0 prosecution 1 003 @ 01017987 n 0000 + 02375131 v 0201 + 02376429 v 0101 | the continuance of something begun with a view to its completion -01022178 04 n 01 survival 0 003 @ 01017987 n 0000 ~ 00413239 n 0000 ~ 01022292 n 0000 | something that survives -01022292 04 n 02 hangover 0 holdover 0 002 @ 01022178 n 0000 + 02682424 v 0201 | something that has survived from the past; "a holdover from the sixties"; "hangovers from the 19th century" -01022483 04 n 02 discontinuance 0 discontinuation 0 011 @ 00209943 n 0000 + 02680814 v 0201 + 00362348 v 0203 ! 01017987 n 0202 + 02680814 v 0101 ! 01017987 n 0101 ~ 01022824 n 0000 ~ 01022992 n 0000 ~ 01023138 n 0000 ~ 01067192 n 0000 ~ 01252800 n 0000 | the act of discontinuing or breaking off; an interruption (temporary or permanent) -01022824 04 n 01 disfranchisement 0 002 @ 01022483 n 0000 + 02476846 v 0102 | the discontinuation of a franchise; especially the discontinuation of the right to vote -01022992 04 n 01 disinheritance 0 002 @ 01022483 n 0000 + 02316097 v 0101 | the act by a donor that terminates the right of a person to inherit -01023138 04 n 01 phase-out 0 001 @ 01022483 n 0000 | the act or instance of a planned discontinuation -01023242 04 n 01 intervention 1 002 @ 01184814 n 0000 ;c 08441203 n 0000 | (law) a proceeding that permits a person to enter into a lawsuit already in progress; admission of person not an original party to the suit so that person can protect some right or interest that is allegedly affected by the proceedings; "the purpose of intervention is to prevent unnecessary duplication of lawsuits" -01023636 04 n 01 procedure 1 005 @ 01184814 n 0000 + 03103198 a 0101 + 00055340 a 0102 ~ 01025563 n 0000 ~ 01025678 n 0000 | a mode of conducting legal and parliamentary proceedings -01023820 04 n 02 procedure 0 process 0 021 @ 00407535 n 0000 + 01668603 v 0203 + 02438535 v 0201 + 03103198 a 0101 + 02372605 v 0102 ~ 00152230 n 0000 ~ 00152338 n 0000 ~ 00152519 n 0000 ~ 00177127 n 0000 ~ 00177783 n 0000 ~ 00178024 n 0000 ~ 00868910 n 0000 ~ 01024392 n 0000 ~ 01024643 n 0000 ~ 01024811 n 0000 ~ 01025411 n 0000 ~ 01026191 n 0000 ~ 01026316 n 0000 ~ 01026482 n 0000 ~ 05798863 n 0000 ~ 05846932 n 0000 | a particular course of action intended to achieve a result; "the procedure of obtaining a driver's license"; "it was a process of trial and error" -01024392 04 n 01 medical_procedure 0 003 @ 01023820 n 0000 ~ 00671351 n 0000 ~ 01024547 n 0000 | a procedure employed by medical or dental practitioners -01024547 04 n 01 dental_procedure 0 001 @ 01024392 n 0000 | a procedure employed by a dentist -01024643 04 n 02 mapping 0 chromosome_mapping 0 003 @ 01023820 n 0000 ;c 06075527 n 0000 + 02695709 v 0101 | (genetics) the process of locating genes on a chromosome -01024811 04 n 01 operating_procedure 0 002 @ 01023820 n 0000 ~ 01024968 n 0000 | a procedure for operating something or for dealing with a given situation -01024968 04 n 04 standing_operating_procedure 0 standard_operating_procedure 0 SOP 0 standard_procedure 0 002 @ 01024811 n 0000 ~ 01025254 n 0000 | a prescribed procedure to be followed routinely; "rote memorization has been the educator's standard operating procedure for centuries" -01025254 04 n 01 lockstep 1 001 @ 01024968 n 0000 | a standard procedure that is followed mindlessly; "the union's support had been in lockstep for years" -01025411 04 n 01 stiffening 0 002 @ 01023820 n 0000 + 00418563 v 0101 | the act of becoming stiff; "stiffening his shoulders, he prepared to advance" -01025563 04 n 02 bureaucratic_procedure 0 red_tape 0 001 @ 01023636 n 0000 | needlessly time-consuming procedure -01025678 04 n 01 objection 0 003 @ 01023636 n 0000 ;c 08441203 n 0000 ~ 01026020 n 0000 | (law) a procedure whereby a party to a suit says that a particular line of questioning or a particular witness or a piece of evidence or other matter is improper and should not be continued and asks the court to rule on its impropriety or illegality -01026020 04 n 01 recusation 1 003 @ 01025678 n 0000 ;c 08441203 n 0000 + 00686249 v 0101 | (law) an objection grounded on the judge's relationship to one of the parties -01026191 04 n 01 indirection 0 001 @ 01023820 n 0000 | indirect procedure or action; "he tried to find out by indirection" -01026316 04 n 02 rigmarole 0 rigamarole 0 001 @ 01023820 n 0000 | a long and complicated and confusing procedure; "all that academic rigmarole was a waste of time" -01026482 04 n 02 routine 0 modus_operandi 0 003 @ 01023820 n 0000 ~ 01026633 n 0000 ~ 01026744 n 0000 | an unvarying or habitual method or procedure -01026633 04 n 01 rat_race 0 001 @ 01026482 n 0000 | an exhausting routine that leaves no time for relaxation -01026744 04 n 02 rut 0 groove 0 001 @ 01026482 n 0000 | a settled and monotonous routine that is hard to escape; "they fell into a conversational rut" -01026897 04 n 01 ceremony 1 004 @ 00407535 n 0000 + 01042491 a 0101 + 01042703 a 0101 ~ 01027231 n 0000 | any activity that is performed in an especially solemn elaborate or formal way; "the ceremony of smelling the cork and tasting the wine"; "he makes a ceremony of addressing his golf ball"; "he disposed of it without ceremony" -01027231 04 n 02 tea_ceremony 0 chanoyu 0 002 @ 01026897 n 0000 ;r 08921850 n 0000 | an ancient ritual for preparing and serving and drinking tea -01027379 04 n 01 ceremony 0 009 @ 00407535 n 0000 + 01042491 a 0101 + 01042703 a 0101 ~ 00239483 n 0000 ~ 00253070 n 0000 ~ 01027662 n 0000 ~ 01028082 n 0000 ~ 01028381 n 0000 ~ 01048697 n 0000 | the proper or conventional behavior on some solemn occasion; "an inaugural ceremony" -01027662 04 n 01 lustrum 0 004 @ 01027379 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 + 00476538 v 0101 | a ceremonial purification of the Roman population every five years following the census -01027859 04 n 02 ritual 0 rite 0 008 @ 00413239 n 0000 + 02892389 a 0201 + 02892389 a 0101 + 00525446 v 0101 %p 00541479 n 0000 ~ 01036778 n 0000 ~ 01036996 n 0000 ~ 01037294 n 0000 | any customary observance or practice -01028082 04 n 02 religious_ceremony 0 religious_ritual 0 011 @ 01027379 n 0000 ~ 01028534 n 0000 ~ 01029406 n 0000 ~ 01032040 n 0000 ~ 01034925 n 0000 ~ 01038895 n 0000 ~ 01039925 n 0000 ~ 01041349 n 0000 ~ 01041674 n 0000 ~ 01041835 n 0000 ~ 01042242 n 0000 | a ceremony having religious meaning -01028381 04 n 01 military_ceremony 0 002 @ 01027379 n 0000 ;c 08199025 n 0000 | a military custom performed in observance of some event or anniversary -01028534 04 n 02 agape 0 love_feast 0 001 @ 01028082 n 0000 | a religious meal shared as a sign of love and fellowship -01028655 04 n 01 worship 0 022 @ 00407535 n 0000 + 02613275 v 0101 ~ 01029114 n 0000 ~ 01029323 n 0000 ~ 01041968 n 0000 ~ 01043820 n 0000 ~ 01043989 n 0000 ~ 01044084 n 0000 ~ 01044448 n 0000 ~ 01044761 n 0000 ~ 01045714 n 0000 ~ 01045807 n 0000 ~ 01045924 n 0000 ~ 01046006 n 0000 ~ 01046167 n 0000 ~ 01046257 n 0000 ~ 01046348 n 0000 ~ 01046441 n 0000 ~ 01046664 n 0000 ~ 01046888 n 0000 ~ 05914359 n 0000 ~ 06693502 n 0000 | the activity of worshipping -01029114 04 n 03 deification 0 exaltation 1 apotheosis 0 005 @ 01028655 n 0000 + 00860620 v 0203 + 00544936 v 0201 + 00545140 v 0101 + 00693401 v 0101 | the elevation of a person (as to the status of a god) -01029323 04 n 01 ancestor_worship 0 001 @ 01028655 n 0000 | worship of ancestors -01029406 04 n 02 rite 1 religious_rite 0 008 @ 01028082 n 0000 + 02892656 a 0101 ~ 01029671 n 0000 ~ 01030152 n 0000 ~ 01030280 n 0000 ~ 01031194 n 0000 ~ 01033184 n 0000 ~ 01033458 n 0000 | an established ceremony prescribed by a religion; "the rite of baptism" -01029671 04 n 02 vigil 2 watch 2 004 @ 01029406 n 0000 ;c 05946687 n 0000 ~ 01029883 n 0000 ~ 01030033 n 0000 | the rite of staying awake for devotional purposes (especially on the eve of a religious festival) -01029883 04 n 02 wake 0 viewing 0 001 @ 01029671 n 0000 | a vigil held over a corpse the night before burial; "there's no weeping at an Irish wake" -01030033 04 n 01 agrypnia 0 002 @ 01029671 n 0000 + 02609065 a 0101 | a vigil before certain feasts (as e.g. Easter) -01030152 04 n 01 last_rites 0 002 @ 01029406 n 0000 ;u 06295235 n 0000 | rites performed in connection with a death or burial -01030280 04 n 01 orgy 0 003 @ 01029406 n 0000 + 02134162 a 0101 + 00797706 a 0105 | secret rite in the cults of ancient Greek or Roman deities involving singing and dancing and drinking and sexual activity -01030488 04 n 02 popery 0 papism 0 002 @ 00410247 n 0000 + 09680657 n 0201 | offensive terms for the practices and rituals of the Roman Catholic Church -01030642 04 n 01 quotation 0 002 @ 00410247 n 0000 + 01023259 v 0101 | the practice of quoting from books or plays etc.; "since he lacks originality he must rely on quotation" -01030820 04 n 01 ritual 1 006 @ 00410247 n 0000 + 02892656 a 0101 + 00525446 v 0101 ~ 00255450 n 0000 ~ 00516086 n 0000 ~ 01036333 n 0000 | the prescribed procedure for conducting religious ceremonies -01031023 04 n 01 ritualism 0 003 @ 00410247 n 0000 + 03111832 a 0101 + 10532886 n 0101 | exaggerated emphasis on the importance of rites or ritualistic forms in worship -01031194 04 n 01 circumcision 1 003 @ 01029406 n 0000 + 01274341 v 0101 ~ 01031392 n 0000 | the act of circumcising performed on males eight days after birth as a Jewish and Muslim religious rite -01031392 04 n 05 Berith 0 Berit 0 Brith 0 Bris 0 Briss 0 001 @ 01031194 n 0000 | the Jewish rite of circumcision performed on a male child on the eighth day of his life -01031563 04 n 02 nudism 0 naturism 0 003 @ 00410247 n 0000 + 02989069 a 0201 + 10365701 n 0101 | going without clothes as a social practice -01031705 04 n 01 systematism 0 003 @ 00410247 n 0000 + 10381369 n 0106 + 10693824 n 0103 | the habitual practice of systematization and classification -01031858 04 n 03 transvestism 0 transvestitism 0 cross_dressing 0 001 @ 00410247 n 0000 | the practice of adopting the clothes or the manner or the sexual role of the opposite sex -01032040 04 n 03 service 1 religious_service 0 divine_service 0 010 @ 01028082 n 0000 ~ 01032368 n 0000 ~ 01032810 n 0000 ~ 01032892 n 0000 ~ 01033024 n 0000 ~ 01034233 n 0000 ~ 01034385 n 0000 ~ 01034571 n 0000 ~ 01034816 n 0000 %p 07190290 n 0000 | the act of public worship following prescribed rules; "the Sunday service" -01032368 04 n 02 church_service 0 church 0 017 @ 01032040 n 0000 + 02079151 v 0201 -c 01636363 a 0000 -c 01033714 n 0000 -c 03028079 n 0000 -c 03028596 n 0000 -c 03142431 n 0000 -c 03497531 n 0000 -c 04312432 n 0000 -c 06232635 n 0000 -c 06747369 n 0000 -c 07243837 n 0000 -c 08087981 n 0000 -c 08088963 n 0000 -c 10580030 n 0000 -c 00173007 v 0000 -c 02612762 v 0000 | a service conducted in a house of worship; "don't be late for church" -01032810 04 n 01 devotional 0 001 @ 01032040 n 0000 | a short religious service -01032892 04 n 02 prayer_meeting 0 prayer_service 0 001 @ 01032040 n 0000 | a service at which people sing hymns and pray together -01033024 04 n 02 chapel_service 0 chapel 0 001 @ 01032040 n 0000 | a service conducted in a place of worship that has its own altar; "he was late for chapel" -01033184 04 n 01 liturgy 0 004 @ 01029406 n 0000 + 02994312 a 0101 + 10267941 n 0101 ~ 01033345 n 0000 | a rite or body of rites prescribed for public worship -01033345 04 n 01 Christian_liturgy 0 002 @ 01033184 n 0000 %p 07036203 n 0000 | the Christian worship services -01033458 04 n 01 office 0 007 @ 01029406 n 0000 + 01959918 a 0101 + 02382087 v 0101 + 01096497 v 0101 ~ 01033714 n 0000 ~ 01033903 n 0000 ~ 01034077 n 0000 | a religious rite or service prescribed by ecclesiastical authorities; "the offices of the mass" -01033714 04 n 01 Divine_Office 0 003 @ 01033458 n 0000 ;c 08083599 n 0000 ;c 01032368 n 0000 | canonical prayers recited daily by priests (e.g. the breviary of the Roman Catholic Church) -01033903 04 n 01 Little_Office 0 002 @ 01033458 n 0000 ;c 08083599 n 0000 | a Roman Catholic office honoring the Virgin Mary; similar to but shorter than the Divine Office -01034077 04 n 01 Office_of_the_Dead 0 002 @ 01033458 n 0000 ;c 08083599 n 0000 | an office read or sung before a burial mass in the Roman Catholic Church -01034233 04 n 01 committal_service 0 001 @ 01032040 n 0000 | service committing a body to the grave; "the committal service will be held next Monday" -01034385 04 n 01 none 0 001 @ 01032040 n 0000 | a service in the Roman Catholic Church formerly read or chanted at 3 PM (the ninth hour counting from sunrise) but now somewhat earlier -01034571 04 n 01 vesper 0 002 @ 01032040 n 0000 ~ 01034685 n 0000 | a late afternoon or evening worship service -01034685 04 n 01 placebo 0 002 @ 01034571 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) vespers of the office for the dead -01034816 04 n 01 watch_night 0 001 @ 01032040 n 0000 | a devotional service (especially on New Year's Eve) -01034925 04 n 01 sacrament 0 009 @ 01028082 n 0000 + 02931227 a 0101 ~ 01035853 n 0000 ~ 01036903 n 0000 ~ 01037819 n 0000 ~ 01038761 n 0000 ~ 01039140 n 0000 ~ 01039637 n 0000 ~ 01039822 n 0000 | a formal religious ceremony conferring a specific grace on those who receive it; the two Protestant ceremonies are baptism and the Lord's Supper; in the Roman Catholic Church and the Eastern Orthodox Church there are seven traditional rites accepted as instituted by Jesus: baptism and confirmation and Holy Eucharist and penance and holy orders and matrimony and extreme unction -01035504 04 n 02 Last_Supper 0 Lord's_Supper 1 001 @ 01035667 n 0000 | the traditional Passover supper of Jesus with his disciples on the eve of his crucifixion -01035667 04 n 02 Seder 0 Passover_supper 0 003 @ 07575984 n 0000 ;c 06232880 n 0000 ~ 01035504 n 0000 | (Judaism) the ceremonial dinner on the first night (or both nights) of Passover -01035853 04 n 07 Holy_Eucharist 0 Eucharist 0 sacrament_of_the_Eucharist 0 Holy_Sacrament 0 Liturgy 1 Eucharistic_liturgy 0 Lord's_Supper 0 006 @ 01034925 n 0000 + 02994312 a 0501 + 10267941 n 0501 + 02715802 a 0201 %p 01036194 n 0000 %p 01036333 n 0000 | a Christian sacrament commemorating the Last Supper by consecrating bread and wine -01036194 04 n 01 Offertory 0 002 @ 01041349 n 0000 #p 01035853 n 0000 | the part of the Eucharist when bread and wine are offered to God -01036333 04 n 04 Communion 1 Holy_Communion 0 sacramental_manduction 0 manduction 1 004 @ 01030820 n 0000 #p 01035853 n 0000 + 00760402 v 0101 ~ 01036624 n 0000 | the act of participating in the celebration of the Eucharist; "the governor took Communion with the rest of the congregation" -01036624 04 n 01 intercommunion 0 001 @ 01036333 n 0000 | participation in Holy Communion by members of more than one church (eg Catholic and Orthodox) -01036778 04 n 02 betrothal 0 espousal 2 002 @ 01027859 n 0000 + 00886602 v 0101 | the act of becoming betrothed or engaged -01036903 04 n 01 matrimony 0 001 @ 01034925 n 0000 | the ceremony or sacrament of marriage -01036996 04 n 03 marriage 0 wedding 0 marriage_ceremony 0 008 @ 01027859 n 0000 + 02488834 v 0203 + 02489456 v 0101 + 02488834 v 0101 ~ 01037469 n 0000 ~ 01037577 n 0000 ~ 01037710 n 0000 ~ 01248752 n 0000 | the act of marrying; the nuptial ceremony; "their marriage was conducted in the chapel" -01037294 04 n 01 rite_of_passage 0 001 @ 01027859 n 0000 | a ritual performed in some cultures at times when an individual changes status (as from adolescence to adulthood) -01037469 04 n 02 bridal 0 espousal 1 001 @ 01036996 n 0000 | archaic terms for a wedding or wedding feast -01037577 04 n 01 civil_marriage 0 001 @ 01036996 n 0000 | a marriage performed by a government official rather than by a clergyman -01037710 04 n 01 love_match 0 001 @ 01036996 n 0000 | a marriage for love's sake; not an arranged marriage -01037819 04 n 01 baptism 0 009 @ 01034925 n 0000 + 03047071 a 0101 + 09838701 n 0101 + 01028079 v 0101 + 01028079 v 0102 ~ 01038147 n 0000 ~ 01038261 n 0000 ~ 01038375 n 0000 ~ 01038485 n 0000 | a Christian sacrament signifying spiritual cleansing and rebirth; "most churches baptize infants but some insist on adult baptism" -01038147 04 n 01 affusion 0 001 @ 01037819 n 0000 | the act of baptizing someone by pouring water on their head -01038261 04 n 02 aspersion 1 sprinkling 0 001 @ 01037819 n 0000 | the act of sprinkling water in baptism (rare) -01038375 04 n 01 christening 0 002 @ 01037819 n 0000 + 01028079 v 0103 | giving a Christian name at baptism -01038485 04 n 01 immersion 0 002 @ 01037819 n 0000 ~ 01038629 n 0000 | a form of baptism in which part or all of a person's body is submerged -01038629 04 n 01 trine_immersion 0 001 @ 01038485 n 0000 | baptism by immersion three times (in the names in turn of the Trinity) -01038761 04 n 01 confirmation 0 001 @ 01034925 n 0000 | a sacrament admitting a baptized person to full participation in the church -01038895 04 n 01 confirmation 1 001 @ 01028082 n 0000 | a ceremony held in the synagogue (usually at Pentecost) to admit as adult members of the Jewish community young men and women who have successfully completed a course of study in Judaism -01039140 04 n 01 penance 1 003 @ 01034925 n 0000 %p 00094240 n 0000 ~ 01039307 n 0000 | a Catholic sacrament; repentance and confession and atonement and absolution -01039307 04 n 01 confession 0 004 @ 01039140 n 0000 ;c 08083599 n 0000 + 00818805 v 0101 ~ 01039560 n 0000 | (Roman Catholic Church) the act of a penitent disclosing his sinfulness before a priest in the sacrament of penance in the hope of absolution -01039560 04 n 01 shrift 0 001 @ 01039307 n 0000 | the act of being shriven -01039637 04 n 03 anointing_of_the_sick 0 extreme_unction 0 last_rites 1 001 @ 01034925 n 0000 | a Catholic sacrament; a priest anoints a dying person with oil and prays for salvation -01039822 04 n 01 holy_order 0 002 @ 01034925 n 0000 %p 00165298 n 0000 | the sacrament of ordination -01039925 04 n 01 sanctification 0 006 @ 01028082 n 0000 + 00866702 v 0104 + 00475819 v 0103 ~ 01040128 n 0000 ~ 01040390 n 0000 ~ 01040646 n 0000 | a religious ceremony in which something is made holy -01040128 04 n 01 beatification 0 003 @ 01039925 n 0000 ;c 08083599 n 0000 + 00822912 v 0101 | (Roman Catholic Church) an act of the Pope who declares that a deceased person lived a holy life and is worthy of public veneration; a first step toward canonization -01040390 04 n 02 canonization 0 canonisation 0 005 @ 01039925 n 0000 ;c 08083599 n 0000 ;c 08086356 n 0000 + 00823129 v 0202 + 00823129 v 0101 | (Roman Catholic and Eastern Orthodox Church) the act of admitting a deceased person into the canon of saints -01040646 04 n 01 consecration 0 005 @ 01039925 n 0000 ;c 05946687 n 0000 + 02386012 v 0102 + 00886978 v 0102 + 00866702 v 0101 | (religion) sanctification of something by setting it apart (usually with religious rites) as dedicated to God; "the Cardinal attended the consecration of the church" -01040943 04 n 01 communalism 1 001 @ 01206153 n 0000 | loyalty and commitment to the interests of your own minority or ethnic group rather than to society as a whole -01041111 04 n 01 consecration 1 004 @ 01206153 n 0000 + 02386012 v 0102 + 00887463 v 0103 + 00886978 v 0102 | a solemn commitment of your life or your time to some cherished purpose (to a service or a goal); "his consecration to study" -01041349 04 n 02 Oblation 0 religious_offering 0 002 @ 01028082 n 0000 ~ 01036194 n 0000 | the act of offering the bread and wine of the Eucharist -01041498 04 n 02 oblation 1 offering 0 002 @ 01086081 n 0000 + 02613487 v 0201 | the act of contributing to the funds of a church or charity; "oblations for aid to the poor" -01041674 04 n 02 unction 0 inunction 0 003 @ 00712833 n 0000 @ 01028082 n 0000 + 00085626 v 0202 | anointing as part of a religious ceremony or healing ritual -01041835 04 n 01 libation 0 001 @ 01028082 n 0000 | the act of pouring a liquid offering (especially wine) as a religious ceremony -01041968 04 n 02 prayer 0 supplication 1 004 @ 01028655 n 0000 + 00759944 v 0101 ~ 01042764 n 0000 ~ 01043693 n 0000 | the act of communicating with a deity (especially as a petition or in adoration or contrition or thanksgiving); "the priest sank to his knees in prayer" -01042242 04 n 01 Mass 0 006 @ 01028082 n 0000 ;c 08083599 n 0000 ;c 08087570 n 0000 ~ 01042465 n 0000 ~ 01042578 n 0000 ~ 01042661 n 0000 | (Roman Catholic Church and Protestant Churches) the celebration of the Eucharist -01042465 04 n 01 High_Mass 0 002 @ 01042242 n 0000 %p 07033753 n 0000 | a solemn and elaborate Mass with music -01042578 04 n 01 Low_Mass 0 001 @ 01042242 n 0000 | a Mass recited without music -01042661 04 n 01 Requiem 0 002 @ 01042242 n 0000 %p 07033913 n 0000 | a Mass celebrated for the dead -01042764 04 n 01 devotion 0 005 @ 01041968 n 0000 ;u 06295235 n 0000 ~ 01042998 n 0000 ~ 01043189 n 0000 ~ 01043333 n 0000 | (usually plural) religious observance or prayers (usually spoken silently); "he returned to his devotions" -01042998 04 n 01 bhakti 0 002 @ 01042764 n 0000 ;c 06236802 n 0000 | (Hinduism) loving devotion to a deity leading to salvation and nirvana; open to all persons independent of caste or sex -01043189 04 n 01 novena 0 002 @ 01042764 n 0000 ;c 08083599 n 0000 | a Roman Catholic devotion consisting of prayers on nine consecutive days -01043333 04 n 02 Stations 0 Stations_of_the_Cross 0 004 @ 01042764 n 0000 @ 08457976 n 0000 ;c 08083599 n 0000 ;u 06295235 n 0000 | (Roman Catholic Church) a devotion consisting of fourteen prayers said before a series of fourteen pictures or carvings representing successive incidents during Jesus' passage from Pilate's house to his crucifixion at Calvary -01043693 04 n 02 blessing 0 benediction 0 002 @ 01041968 n 0000 + 00866505 v 0101 | the act of praying for divine protection -01043820 04 n 02 idolization 0 idolisation 0 004 @ 01028655 n 0000 + 01778017 v 0202 + 01778017 v 0101 ~ 01044268 n 0000 | the act of worshiping blindly and to excess -01043989 04 n 02 adoration 2 latria 0 001 @ 01028655 n 0000 | the worship given to God alone -01044084 04 n 02 idolatry 0 idol_worship 0 004 @ 01028655 n 0000 + 02931096 a 0101 + 10198602 n 0101 ~ 01044363 n 0000 | the worship of idols; the worship of images that are not God -01044268 04 n 01 bardolatry 0 001 @ 01043820 n 0000 | the idolization of William Shakespeare -01044363 04 n 01 iconolatry 0 001 @ 01044084 n 0000 | the worship of sacred images -01044448 04 n 04 idolatry 1 devotion 2 veneration 0 cultism 0 011 @ 01028655 n 0000 + 00887463 v 0205 + 01465922 a 0101 ~ 01044867 n 0000 ~ 01044983 n 0000 ~ 01045091 n 0000 ~ 01045202 n 0000 ~ 01045306 n 0000 ~ 01045413 n 0000 ~ 01045520 n 0000 ~ 01045621 n 0000 | religious zeal; the willingness to serve God -01044761 04 n 03 idiolatry 0 autolatry 0 self-worship 0 001 @ 01028655 n 0000 | the worship of yourself -01044867 04 n 02 bibliolatry 0 Bible-worship 0 002 @ 01044448 n 0000 + 02662692 a 0101 | the worship of the Bible -01044983 04 n 03 verbolatry 0 grammatolatry 0 word-worship 0 001 @ 01044448 n 0000 | the worship of words -01045091 04 n 03 symbolatry 0 symbololatry 0 symbol-worship 0 001 @ 01044448 n 0000 | the worship of symbols -01045202 04 n 02 anthropolatry 0 worship_of_man 0 001 @ 01044448 n 0000 | the worship of human beings -01045306 04 n 03 gyneolatry 0 gynaeolatry 0 woman-worship 0 001 @ 01044448 n 0000 | the worship of women -01045413 04 n 01 lordolatry 0 001 @ 01044448 n 0000 | the worship of a lord because of his rank or title -01045520 04 n 02 thaumatolatry 0 miracle-worship 0 001 @ 01044448 n 0000 | the worship of miracles -01045621 04 n 02 topolatry 0 place-worship 0 001 @ 01044448 n 0000 | the worship of places -01045714 04 n 02 arborolatry 0 tree-worship 0 001 @ 01028655 n 0000 | the worship of trees -01045807 04 n 02 astrolatry 0 worship_of_heavenly_bodies 0 001 @ 01028655 n 0000 | the worship of planets or stars -01045924 04 n 01 cosmolatry 0 001 @ 01028655 n 0000 | the worship of the cosmos -01046006 04 n 03 diabolatry 0 demonolatry 0 devil-worship 0 003 @ 01028655 n 0000 + 05979595 n 0202 + 05979595 n 0101 | the acts or rites of worshiping devils -01046167 04 n 02 pyrolatry 0 fire-worship 0 001 @ 01028655 n 0000 | the worship of fire -01046257 04 n 02 hagiolatry 0 hierolatry 0 001 @ 01028655 n 0000 | the worship of saints -01046348 04 n 02 heliolatry 0 sun-worship 0 001 @ 01028655 n 0000 | the worship of the sun -01046441 04 n 02 zoolatry 0 animal-worship 0 003 @ 01028655 n 0000 ~ 01046571 n 0000 ~ 01046792 n 0000 | the worship of animals -01046571 04 n 02 ichthyolatry 0 fish-worship 0 001 @ 01046441 n 0000 | the worship of fish -01046664 04 n 01 monolatry 0 001 @ 01028655 n 0000 | the worship of a single god but without claiming that it is the only god -01046792 04 n 02 ophiolatry 0 serpent-worship 0 001 @ 01046441 n 0000 | the worship of snakes -01046888 04 n 02 moon-worship 0 selenolatry 0 001 @ 01028655 n 0000 | the worship of the moon -01046984 04 n 03 energizing 0 activating 0 activation 0 005 @ 00407535 n 0000 + 00559102 v 0102 + 00022686 v 0104 ~ 01047191 n 0000 ~ 01048466 n 0000 | the activity of causing to have energy and be active -01047191 04 n 01 electrification 0 002 @ 01046984 n 0000 + 01830798 v 0101 | the activity of thrilling or markedly exciting some person or group -01047338 04 n 05 revival 1 resurgence 0 revitalization 0 revitalisation 0 revivification 0 012 @ 07357388 n 0000 + 00024279 v 0509 + 00164658 v 0402 + 00164658 v 0301 + 02013864 a 0201 + 02624806 v 0201 + 00168910 v 0101 + 00169298 v 0101 ~ 01047803 n 0000 ~ 01047937 n 0000 ~ 01048059 n 0000 ~ 01048210 n 0000 | bringing again into activity and prominence; "the revival of trade"; "a revival of a neglected play by Moliere"; "the Gothic revival in architecture" -01047803 04 n 03 rebirth 2 Renaissance 0 Renascence 0 002 @ 01047338 n 0000 + 02013864 a 0302 | the revival of learning and culture -01047937 04 n 01 regeneration 0 002 @ 01047338 n 0000 + 00168588 v 0101 | the activity of spiritual or physical renewal -01048059 04 n 01 resurrection 0 002 @ 01047338 n 0000 + 00098517 v 0101 | a revival from inactivity and disuse; "it produced a resurrection of hope" -01048210 04 n 01 resuscitation 0 003 @ 01047338 n 0000 + 00098083 v 0101 ~ 00832626 n 0000 | the act of reviving a person and returning them to consciousness; "although he was apparently drowned, resuscitation was accomplished by artificial respiration" -01048466 04 n 03 vivification 0 invigoration 0 animation 2 006 @ 01046984 n 0000 + 01812720 v 0203 + 00442063 v 0202 + 00192836 v 0204 + 00028362 v 0201 + 00024279 v 0108 | the activity of giving vitality and vigour to something -01048697 04 n 01 presentation 1 003 @ 01027379 n 0000 + 02261888 v 0102 + 02262752 v 0101 | the activity of formally presenting something (as a prize or reward); "she gave the trophy but he made the presentation" -01048912 04 n 03 concealment 0 concealing 0 hiding 0 014 @ 00407535 n 0000 + 00313987 v 0305 + 02144835 v 0202 + 02146790 v 0201 + 02146790 v 0101 ~ 01049266 n 0000 ~ 01049475 n 0000 ~ 01049685 n 0000 ~ 01049992 n 0000 ~ 01050187 n 0000 ~ 01050627 n 0000 ~ 01050872 n 0000 ~ 01051082 n 0000 ~ 01051221 n 0000 | the activity of keeping something secret -01049266 04 n 02 disguise 0 camouflage 0 003 @ 01048912 n 0000 + 02158896 v 0201 + 02158587 v 0101 | the act of concealing the identity of something by modifying its appearance; "he is a master of disguise" -01049475 04 n 01 mask 0 003 @ 01048912 n 0000 + 01358855 v 0101 + 02147603 v 0103 | activity that tries to conceal something; "no mask could conceal his ignorance"; "they moved in under a mask of friendship" -01049685 04 n 04 cover 0 covering 2 screening 0 masking 0 006 @ 01048912 n 0000 + 02147603 v 0403 + 01130169 v 0302 + 02147109 v 0201 + 02148369 v 0201 + 02147109 v 0101 | the act of concealing the existence of something by obstructing the view of it; "the cover concealed their guns from enemy aircraft" -01049992 04 n 01 cover 2 001 @ 01048912 n 0000 | a false identity and background (especially one created for an undercover agent); "her new name and passport are cover for her next assignment" -01050187 04 n 01 cover-up 0 003 @ 01048912 n 0000 + 02148369 v 0102 ~ 01050356 n 0000 | concealment that attempts to prevent something scandalous from becoming public -01050356 04 n 03 blue_wall_of_silence 0 blue_wall 0 wall_of_silence 0 001 @ 01050187 n 0000 | the secrecy of police officers who lie or look the other way to protect other police officers; "the blue wall cracked when some officers refused to take part in the cover-up" -01050627 04 n 02 burying 0 burial 0 003 @ 01048912 n 0000 + 01234625 v 0201 ~ 01050763 n 0000 | concealing something under the ground -01050763 04 n 02 reburying 0 reburial 0 002 @ 01050627 n 0000 + 02456851 v 0201 | the act of burying again -01050872 04 n 02 smoke_screen 0 smokescreen 0 001 @ 01048912 n 0000 | an action intended to conceal or confuse or obscure; "requesting new powers of surveillance is just a smokescreen to hide their failures" -01051082 04 n 02 stealth 0 stealing 1 003 @ 01048912 n 0000 + 01888295 v 0201 + 02088974 a 0104 | avoiding detection by moving carefully -01051221 04 n 01 money_laundering 0 001 @ 01048912 n 0000 | concealing the source of illegally gotten money -01051331 04 n 06 placement 0 location 2 locating 0 position 0 positioning 0 emplacement 0 018 @ 00407535 n 0000 + 01496630 v 0601 + 01987160 v 0501 + 01494310 v 0405 + 01575675 v 0403 + 02333689 v 0201 + 00413876 v 0202 ~ 00919877 n 0000 ~ 01051801 n 0000 ~ 01052215 n 0000 ~ 01052372 n 0000 ~ 01052450 n 0000 ~ 01052618 n 0000 ~ 01052739 n 0000 ~ 01052853 n 0000 ~ 01053067 n 0000 ~ 01053207 n 0000 ~ 01053404 n 0000 | the act of putting something in a certain place -01051801 04 n 03 juxtaposition 0 apposition 0 collocation 0 005 @ 01051331 n 0000 + 00657016 v 0301 + 01500214 v 0201 + 01501960 v 0101 ~ 01052078 n 0000 | the act of positioning close together (or side by side); "it is the result of the juxtaposition of contrasting colors" -01052078 04 n 01 tessellation 1 001 @ 01051801 n 0000 | the careful juxtaposition of shapes in a pattern; "a tessellation of hexagons" -01052215 04 n 02 interposition 1 intervention 3 002 @ 01051331 n 0000 + 00914769 v 0103 | the act or fact of interposing one thing between or among others -01052372 04 n 01 orientation 0 001 @ 01051331 n 0000 | the act of orienting -01052450 04 n 01 planting 0 002 @ 01051331 n 0000 + 01528821 v 0105 | the act of fixing firmly in place; "he ordered the planting of policemen outside every doorway" -01052618 04 n 01 implantation 0 002 @ 01051331 n 0000 + 01528821 v 0101 | the act of planting or setting in the ground -01052739 04 n 01 repositioning 0 002 @ 01051331 n 0000 + 01499006 v 0101 | the act of placing in a new position -01052853 04 n 01 set 1 006 @ 01051331 n 0000 + 01613239 v 0101 + 01567275 v 0102 + 01711749 v 0101 + 01607445 v 0101 + 01494310 v 0102 | the act of putting something in position; "he gave a final set to his hat" -01053067 04 n 01 superposition 0 003 @ 01051331 n 0000 + 01469263 v 0102 + 01469445 v 0101 | the placement of one thing on top of another -01053207 04 n 01 fingering 2 003 @ 01051331 n 0000 #p 00100253 n 0000 + 00924431 v 0101 | the placement of the fingers for playing different notes (or sequences of notes) on a musical instrument -01053404 04 n 01 superposition 1 003 @ 01051331 n 0000 ;c 06004685 n 0000 + 01469445 v 0101 | (geometry) the placement of one object ideally in the position of another one in order to show that the two coincide -01053617 04 n 01 stay 0 007 @ 00030358 n 0000 + 02727462 v 0101 + 02637202 v 0103 + 01857392 v 0101 + 00117985 v 0101 ~ 01055360 n 0000 ~ 01056411 n 0000 | continuing or remaining in a place or state; "they had a nice stay in Paris"; "a lengthy hospital stay"; "a four-month stay in bankruptcy court" -01053920 04 n 03 residency 0 residence 0 abidance 1 012 @ 00030358 n 0000 + 02637202 v 0302 + 03109795 a 0201 + 02125409 a 0201 + 02648639 v 0202 + 02650552 v 0201 + 02129136 a 0102 + 02125409 a 0101 + 02648639 v 0102 + 02650552 v 0101 ~ 01054227 n 0000 ~ 01054335 n 0000 | the act of dwelling in a place -01054227 04 n 01 lodging 0 003 @ 01053920 n 0000 + 02652494 v 0101 + 02651424 v 0101 | the act of lodging -01054335 04 n 02 occupancy 0 tenancy 0 007 @ 01053920 n 0000 + 10700640 n 0201 + 10700517 n 0201 + 10700201 n 0201 + 10523519 n 0102 + 02648639 v 0101 ~ 01054545 n 0000 | an act of being a tenant or occupant -01054545 04 n 03 inhabitancy 0 inhabitation 0 habitation 0 006 @ 01054335 n 0000 + 02654416 v 0201 + 02649830 v 0204 + 02649830 v 0104 ~ 01054876 n 0000 ~ 01055165 n 0000 | the act of dwelling in or living permanently in a place (said of both animals and men); "he studied the creation and inhabitation and demise of the colony" -01054876 04 n 01 cohabitation 0 003 @ 01054545 n 0000 + 02651193 v 0101 ~ 01055065 n 0000 | the act of living together and having a sexual relationship (especially without being married) -01055065 04 n 01 concubinage 0 001 @ 01054876 n 0000 | cohabitation without being legally married -01055165 04 n 04 camping 0 encampment 0 bivouacking 0 tenting 0 004 @ 01054545 n 0000 + 02653996 v 0405 + 02653996 v 0202 + 02653996 v 0101 | the act of encamping and living in tents in a camp -01055360 04 n 02 sojourn 0 visit 3 003 @ 01053617 n 0000 + 02619424 v 0201 + 02709422 v 0101 | a temporary stay (e.g., as a guest) -01055493 04 n 01 call 2 002 @ 01232684 n 0000 ~ 01055688 n 0000 | a visit in an official or professional capacity; "the pastor's calls on his parishioners"; "the salesman's call on a customer" -01055688 04 n 01 round 0 002 @ 01055493 n 0000 ;u 06295235 n 0000 | (often plural) a series of professional calls (usually in a set order); "the doctor goes on his rounds first thing every morning"; "the postman's rounds"; "we enjoyed our round of the local bars" -01055954 04 n 01 call 3 002 @ 01233156 n 0000 + 02487573 v 0103 | a brief social visit; "senior professors' wives no longer make afternoon calls on newcomers"; "the characters in Henry James' novels are forever paying calls on each other, usually in the parlor of some residence" -01056236 04 n 01 visiting 0 002 @ 01233156 n 0000 + 01843689 v 0102 | the activity of making visits; "the purpose was to promote homes, clubs, visiting, and other services" -01056411 04 n 03 stop 2 stopover 0 layover 0 009 @ 01053617 n 0000 + 02652922 v 0301 + 02652922 v 0202 + 01862918 v 0101 + 02680814 v 0102 ~ 01056713 n 0000 ~ 01056804 n 0000 ~ 01056941 n 0000 ~ 01057053 n 0000 | a brief stay in the course of a journey; "they made a stopover to visit their friends" -01056713 04 n 01 night-stop 0 001 @ 01056411 n 0000 | a break in a journey for the night -01056804 04 n 01 pit_stop 0 001 @ 01056411 n 0000 | a brief stop at a pit during an automobile race to take on fuel or service the car -01056941 04 n 01 pit_stop 1 001 @ 01056411 n 0000 | a stop during an automobile trip for rest and refreshment -01057053 04 n 01 stand 1 001 @ 01056411 n 0000 | a stop made by a touring musical or theatrical group to give a performance; "a one-night stand" -01057200 04 n 03 provision 1 supply 0 supplying 0 018 @ 00407535 n 0000 + 02327200 v 0301 + 01182709 v 0202 + 02479323 v 0202 + 02327200 v 0201 + 02219442 v 0101 + 02327200 v 0102 + 01182709 v 0101 + 02338975 v 0101 ~ 01057631 n 0000 ~ 01057759 n 0000 ~ 01059719 n 0000 ~ 01060101 n 0000 ~ 01060234 n 0000 ~ 01060745 n 0000 ~ 01060924 n 0000 ~ 01061029 n 0000 ~ 01061203 n 0000 | the activity of supplying or providing something -01057631 04 n 01 irrigation 0 002 @ 01057200 n 0000 + 00228236 v 0102 | supplying dry land with water by means of ditches etc -01057759 04 n 02 feeding 1 alimentation 0 011 @ 01057200 n 0000 + 01204191 v 0202 + 01182021 v 0101 + 01178565 v 0101 ~ 00842997 n 0000 ~ 01058049 n 0000 ~ 01058291 n 0000 ~ 01058983 n 0000 ~ 01059096 n 0000 ~ 01059189 n 0000 ~ 01059445 n 0000 | the act of supplying food and nourishment -01058049 04 n 01 infant_feeding 0 004 @ 01057759 n 0000 ~ 01058181 n 0000 ~ 01058870 n 0000 ~ 01059306 n 0000 | feeding an infant -01058181 04 n 01 demand_feeding 0 001 @ 01058049 n 0000 | feeding a baby or animal whenever it shows a need -01058291 04 n 02 forced_feeding 0 gavage 0 004 @ 01057759 n 0000 + 01179740 v 0101 ~ 01058539 n 0000 ~ 01058715 n 0000 | feeding that consists of the delivery of a nutrient solution (as through a nasal tube) to someone who cannot or will not eat -01058539 04 n 01 nasogastric_feeding 0 001 @ 01058291 n 0000 | feeding consisting of delivering liquid nutrients through a tube passing through the nose and into the stomach -01058715 04 n 01 gastrogavage 0 001 @ 01058291 n 0000 | feeding a nutrient solution into the stomach through a tube through a surgically created opening -01058870 04 n 02 nursing 1 breast_feeding 0 002 @ 01058049 n 0000 + 01186428 v 0104 | nourishing at the breast -01058983 04 n 02 intravenous_feeding 0 IV 0 001 @ 01057759 n 0000 | administration of nutrients through a vein -01059096 04 n 01 overfeeding 0 002 @ 01057759 n 0000 + 01179530 v 0101 | excessive feeding -01059189 04 n 01 spoonfeeding 0 002 @ 01057759 n 0000 + 01179638 v 0101 | feeding someone (as a baby) from a spoon -01059306 04 n 01 schedule_feeding 0 001 @ 01058049 n 0000 | feeding a baby or animal according to a fixed schedule (e.g., every 4 hours) -01059445 04 n 03 total_parenteral_nutrition 0 TPN 0 hyperalimentation 0 001 @ 01057759 n 0000 | administration of a nutritionally adequate solution through a catheter into the vena cava; used in cases of long-term coma or severe burns or severe gastrointestinal syndromes -01059719 04 n 02 fueling 0 refueling 0 005 @ 01057200 n 0000 + 02338729 v 0201 + 02236888 v 0201 + 02237024 v 0101 + 02338386 v 0101 | the activity of supplying or taking on fuel -01059900 04 n 02 healthcare 1 health_care 1 001 @ 00654885 n 0000 | the preservation of mental and physical health by preventing or treating illness through services offered by the health profession -01060101 04 n 03 healthcare_delivery 0 health_care_delivery 0 care_delivery 0 001 @ 01057200 n 0000 | the provision of health care -01060234 04 n 03 issue 1 issuing 0 issuance 0 004 @ 01057200 n 0000 + 02479323 v 0201 + 02479323 v 0101 ~ 01060530 n 0000 | the act of providing an item for general use or for official purposes (usually in quantity); "a new issue of stamps"; "the last issue of penicillin was over a month ago" -01060530 04 n 01 stock_issue 0 002 @ 01060234 n 0000 ;c 06162223 n 0000 | (corporation law) the authorization and delivery of shares of stock for sale to the public or the shares thus offered at a particular time -01060745 04 n 01 logistics 0 003 @ 01057200 n 0000 + 02986218 a 0101 + 02986218 a 0102 | handling an operation that involves providing labor and materials be supplied as needed -01060924 04 n 01 purveyance 0 002 @ 01057200 n 0000 + 02338975 v 0102 | the act of supplying something -01061029 04 n 01 stocking 0 002 @ 01057200 n 0000 + 02323059 v 0101 | the activity of supplying a stock of something; "he supervised the stocking of the stream with trout" -01061203 04 n 01 subvention 0 002 @ 01057200 n 0000 + 00889740 v 0103 | the act or process of providing aid or help of any sort -01061333 04 n 01 demand 0 005 @ 00407535 n 0000 + 01017826 v 0101 + 00754942 v 0101 ~ 01061526 n 0000 ~ 01061945 n 0000 | the act of demanding; "the kidnapper's exorbitant demands for money" -01061526 04 n 01 exaction 0 003 @ 01061333 n 0000 + 01017826 v 0102 ~ 01061726 n 0000 | act of demanding or levying by force or authority; "exaction of tribute"; "exaction of various dues and fees" -01061726 04 n 01 extortion 1 003 @ 01061526 n 0000 + 09858299 n 0103 + 02241621 v 0101 | unjust exaction (as by the misuse of authority); "the extortion by dishonest officials of fees for performing their sworn duty" -01061945 04 n 01 claim 0 003 @ 01061333 n 0000 + 01018352 v 0101 ~ 01062136 n 0000 | demand for something as rightful or due; "they struck in support of their claim for a shorter work day" -01062136 04 n 01 insurance_claim 0 001 @ 01061945 n 0000 | demand for payment in accordance with an insurance policy -01062255 04 n 01 drain 1 004 @ 00356199 n 0000 + 01158022 v 0101 ~ 00392093 n 0000 ~ 01062468 n 0000 | a gradual depletion of energy or resources; "a drain on resources"; "a drain of young talent by emigration" -01062468 04 n 01 brain_drain 0 001 @ 01062255 n 0000 | depletion or loss of intellectual and technical personnel -01062583 04 n 01 inactivity 0 009 @ 00030358 n 0000 + 00035074 a 0101 + 00036481 a 0101 ! 00407535 n 0101 ~ 01062817 n 0000 ~ 01063939 n 0000 ~ 01064148 n 0000 ~ 01065441 n 0000 ~ 01066163 n 0000 | being inactive; being less active -01062817 04 n 01 pause 0 007 @ 01062583 n 0000 + 00779061 v 0101 + 02641035 v 0102 ~ 01062997 n 0000 ~ 01063350 n 0000 ~ 01063578 n 0000 ~ 01063697 n 0000 | temporary inactivity -01062997 04 n 04 respite 0 recess 0 break 5 time_out 0 004 @ 01062817 n 0000 + 00779061 v 0303 + 00364297 v 0202 ~ 01063234 n 0000 | a pause from doing something (as work); "we took a 10-minute break"; "he took time out to recuperate" -01063234 04 n 01 spring_break 0 001 @ 01062997 n 0000 | a week or more of recess during the spring term at school -01063350 04 n 04 hesitation 0 waver 1 falter 0 faltering 0 005 @ 01062817 n 0000 + 01901289 v 0401 + 00981544 v 0304 + 02640440 v 0202 + 02641035 v 0101 | the act of pausing uncertainly; "there was a hesitation in his speech" -01063578 04 n 01 intermission 0 002 @ 01062817 n 0000 + 00779061 v 0102 | the act of suspending activity temporarily -01063697 04 n 02 freeze 1 halt 0 005 @ 01062817 n 0000 + 02559752 v 0202 + 01860795 v 0202 + 01859586 v 0201 + 00363493 v 0101 | an interruption or temporary suspension of progress or movement; "a halt in the arms race"; "a nuclear freeze" -01063939 04 n 02 wait 0 waiting 0 003 @ 01062583 n 0000 + 02637938 v 0201 + 02637938 v 0101 | the act of waiting (remaining inactive in one place while expecting something); "the wait was an ordeal for him" -01064148 04 n 04 rest 0 ease 0 repose 0 relaxation 0 009 @ 01062583 n 0000 + 00026385 v 0401 + 01547390 v 0302 + 02595840 v 0101 ~ 01064468 n 0000 ~ 01064613 n 0000 ~ 01064758 n 0000 ~ 01064863 n 0000 ~ 01065286 n 0000 | freedom from activity (work or strain or responsibility); "took his repose by the swimming pool" -01064468 04 n 02 bedrest 0 bed_rest 0 001 @ 01064148 n 0000 | confinement to bed continuously (as in the case of some sick or injured persons) -01064613 04 n 01 laziness 1 002 @ 01064148 n 0000 + 00981304 a 0101 | relaxed and easy activity; "the laziness of the day helped her to relax" -01064758 04 n 01 lie-in 0 002 @ 01064148 n 0000 ;r 08860123 n 0000 | a long stay in bed in the morning -01064863 04 n 04 quiescence 0 quiescency 0 dormancy 0 sleeping 1 005 @ 01064148 n 0000 + 00188155 a 0301 + 01923118 a 0201 + 01923118 a 0101 ~ 01065057 n 0000 | quiet and inactive restfulness -01065057 04 n 01 vegetation 0 003 @ 01064863 n 0000 + 02615580 v 0101 + 00026734 v 0102 | inactivity that is passive and monotonous, comparable to the inactivity of plant life; "their holiday was spent in sleep and vegetation" -01065286 04 n 01 leisure 0 002 @ 01064148 n 0000 ~ 01065805 n 0000 | freedom to choose a pastime or enjoyable activity; "he lacked the leisure for golf" -01065441 04 n 03 idleness 0 idling 0 loafing 0 005 @ 01062583 n 0000 + 02417504 v 0201 + 00865007 a 0101 + 00037188 a 0101 ~ 01065607 n 0000 | having no employment -01065607 04 n 01 dolce_far_niente 0 001 @ 01065441 n 0000 | carefree idleness -01065687 04 n 02 free_time 0 spare_time 0 001 @ 15137676 n 0000 | time that is free from duties or responsibilities -01065805 04 n 01 vacationing 0 004 @ 01065286 n 0000 + 02708707 v 0101 ~ 01065945 n 0000 ~ 01066061 n 0000 | the act of taking a vacation -01065945 04 n 01 busman's_holiday 0 001 @ 01065805 n 0000 | a holiday where you do the same things you do at work -01066061 04 n 01 caravanning 0 001 @ 01065805 n 0000 | the practice of taking holidays in a caravan -01066163 04 n 02 delay 0 holdup 1 014 @ 01062583 n 0000 + 00459776 v 0203 + 00440286 v 0103 + 00460900 v 0103 + 00459776 v 0101 ~ 00383952 n 0000 ~ 01066545 n 0000 ~ 01066689 n 0000 ~ 01066881 n 0000 ~ 01067362 n 0000 ~ 01067577 n 0000 ~ 01067819 n 0000 ~ 01068012 n 0000 ~ 01068423 n 0000 | the act of delaying; inactivity resulting in something being put off until a later time -01066545 04 n 01 demurrage 0 001 @ 01066163 n 0000 | detention of a ship or freight car or other cargo beyond its scheduled time of departure -01066689 04 n 01 forbearance 0 002 @ 01066163 n 0000 + 02725714 v 0102 | a delay in enforcing rights or claims or privileges; refraining from acting; "his forbearance to reply was alarming" -01066881 04 n 03 postponement 0 deferment 0 deferral 1 005 @ 01066163 n 0000 + 02642814 v 0308 + 02642814 v 0208 + 02642814 v 0101 ~ 01067070 n 0000 | act of putting off to a future time -01067070 04 n 01 adjournment 1 002 @ 01066881 n 0000 + 02428487 v 0101 | the act of postponing to another time or place -01067192 04 n 01 prorogation 0 003 @ 01022483 n 0000 + 02642814 v 0102 + 02428771 v 0101 | discontinuation of the meeting (of a legislative body) without dissolving it -01067362 04 n 03 procrastination 0 cunctation 0 shillyshally 0 003 @ 01066163 n 0000 + 02642238 v 0305 + 02642238 v 0101 | the act of procrastinating; putting off or delaying or defering an action to a later time -01067577 04 n 03 slowdown 0 lag 0 retardation 0 008 @ 01066163 n 0000 + 02752567 v 0301 + 00439958 v 0305 + 01997862 v 0201 + 00439958 v 0103 + 00440580 v 0102 + 00438495 v 0102 + 00440786 v 0102 | the act of slowing down or falling behind -01067819 04 n 03 dalliance 0 dawdling 0 trifling 0 004 @ 01066163 n 0000 + 02708123 v 0305 + 02011685 v 0202 + 02011685 v 0101 | the deliberate act of delaying and playing instead of working -01068012 04 n 01 filibuster 0 003 @ 01066163 n 0000 ;c 08441203 n 0000 + 02466496 v 0101 | (law) a tactic for delaying or obstructing legislation by making long speeches -01068184 04 n 04 interjection 0 interposition 0 interpolation 0 interpellation 0 004 @ 00383952 n 0000 + 00201407 v 0301 + 00914769 v 0203 + 00914769 v 0101 | the action of interjecting or interposing an action or remark that interrupts -01068423 04 n 02 tarriance 0 lingering 0 002 @ 01066163 n 0000 + 02011560 v 0101 | the act of tarrying -01068528 04 n 02 breaking_off 0 abruption 0 001 @ 00383952 n 0000 | an instance of sudden interruption -01068633 04 n 02 heckling 0 barracking 0 002 @ 00383952 n 0000 + 00907800 v 0101 | shouting to interrupt a speech with which you disagree -01068773 04 n 01 abstinence 0 008 @ 01069578 n 0000 + 00009346 a 0101 ~ 01069125 n 0000 ~ 01069777 n 0000 ~ 01069867 n 0000 ~ 01069980 n 0000 ~ 01070892 n 0000 ~ 05914591 n 0000 | act or practice of refraining from indulging an appetite -01069012 04 n 02 asceticism 0 ascesis 0 001 @ 01069578 n 0000 | rigorous self-denial and active self-restraint -01069125 04 n 03 chastity 0 celibacy 0 sexual_abstention 0 003 @ 01068773 n 0000 ;c 05946687 n 0000 + 01548694 a 0101 | abstaining from sexual relations (as because of religious vows) -01069311 04 n 01 mortification 0 004 @ 01069578 n 0000 ;c 06226057 n 0000 + 01802070 v 0101 + 01801847 v 0101 | (Christianity) the act of mortifying the lusts of the flesh by self-denial and privation (especially by bodily pain or discomfort inflicted on yourself) -01069578 04 n 03 self-denial 0 self-discipline 0 self-control 0 004 @ 00803617 n 0000 ~ 01068773 n 0000 ~ 01069012 n 0000 ~ 01069311 n 0000 | the act of denying yourself; controlling your impulses -01069777 04 n 02 sobriety 0 temperance 0 001 @ 01068773 n 0000 | abstaining from excess -01069867 04 n 02 teetotaling 0 teetotalism 0 002 @ 01068773 n 0000 + 10697282 n 0203 | abstaining from alcohol -01069980 04 n 02 fast 0 fasting 0 008 @ 01068773 n 0000 + 01189604 v 0201 + 01189427 v 0201 + 01189427 v 0101 + 01189604 v 0101 ~ 01070187 n 0000 ~ 01242962 n 0000 ~ 01243089 n 0000 | abstaining from food -01070187 04 n 02 diet 0 dieting 0 007 @ 01069980 n 0000 + 01190012 v 0201 + 01189224 v 0201 + 02846322 a 0101 + 10012484 n 0101 + 01190012 v 0101 + 01189224 v 0101 | the act of restricting your food intake (or your intake of particular foods) -01070432 04 n 01 traffic_control 0 002 @ 00803617 n 0000 ~ 01070566 n 0000 | control of the flow of traffic in a building or a city -01070566 04 n 01 point_duty 0 002 @ 01070432 n 0000 ;r 08860123 n 0000 | the control of traffic by a policeman stationed at an intersection -01070708 04 n 01 price-fixing 0 002 @ 00803617 n 0000 ;c 01124794 n 0000 | control (by agreement among producers or by government) of the price of a commodity in interstate commerce -01070892 04 n 02 inhibition 0 suppression 3 004 @ 01068773 n 0000 ;c 06136258 n 0000 + 00612841 v 0201 + 00462092 v 0103 | (psychology) the conscious exclusion of unacceptable thoughts or desires -01071090 04 n 01 tolerance 0 003 @ 01141841 n 0000 + 00668099 v 0107 ~ 01071213 n 0000 | the act of tolerating something -01071213 04 n 02 lenience 0 leniency 0 004 @ 01071090 n 0000 + 00711831 a 0201 + 01763159 a 0102 ~ 01071411 n 0000 | lightening a penalty or excusing from a chore by judges or parents or teachers -01071411 04 n 03 clemency 1 mercifulness 0 mercy 0 007 @ 01071213 n 0000 + 01507134 a 0201 + 00437539 a 0101 ~ 01165919 n 0000 ~ 01249315 n 0000 ~ 01258579 n 0000 ~ 01259034 n 0000 | leniency and compassion shown toward offenders by a person or agency charged with administering justice; "he threw himself on the mercy of the court" -01071746 04 n 01 pleasure 2 004 @ 00407535 n 0000 + 01824958 v 0101 + 01815628 v 0101 ~ 01071921 n 0000 | an activity that affords enjoyment; "he puts duty before pleasure" -01071921 04 n 01 luxuriation 0 003 @ 01071746 n 0000 + 01204803 v 0101 + 01191645 v 0102 | an activity that affords excessive pleasure and enjoyment -01072072 04 n 02 enjoyment 0 delectation 0 004 @ 00407535 n 0000 + 01828736 v 0102 + 01820302 v 0101 + 01190948 v 0102 | act of receiving pleasure from something -01072236 04 n 02 lamentation 0 mourning 0 003 @ 00407535 n 0000 @ 06880249 n 0000 + 01802219 v 0101 | the passionate and demonstrative activity of expressing grief -01072402 04 n 01 laughter 0 001 @ 00407535 n 0000 | the activity of laughing; the manifestation of joy or mirth or scorn; "he enjoyed the laughter of the crowd" -01072565 04 n 01 satisfaction 0 004 @ 00191142 n 0000 + 02671880 v 0101 + 01183573 v 0102 ~ 01072780 n 0000 | act of fulfilling a desire or need or appetite; "the satisfaction of their demand for better services" -01072780 04 n 01 gratification 0 007 @ 01072565 n 0000 + 01816431 v 0102 + 01182293 v 0101 ~ 01072984 n 0000 ~ 01073097 n 0000 ~ 01073241 n 0000 ~ 01073556 n 0000 | the act or an instance of satisfying -01072984 04 n 01 satiation 0 002 @ 01072780 n 0000 + 01193721 v 0101 | the act of achieving full gratification -01073097 04 n 02 self-gratification 0 head_trip 0 001 @ 01072780 n 0000 | the act of satisfying your own desires and giving yourself pleasure -01073241 04 n 04 indulgence 0 indulging 0 pampering 0 humoring 0 011 @ 01072780 n 0000 + 00859604 v 0401 + 01299484 a 0301 + 02570267 v 0301 + 02570267 v 0209 + 01182293 v 0203 + 02511276 v 0101 + 02570267 v 0109 ~ 00747671 n 0000 ~ 01073655 n 0000 ~ 01073824 n 0000 | the act of indulging or gratifying a desire -01073556 04 n 01 pleasing 0 002 @ 01072780 n 0000 + 01815628 v 0101 | the act of one who pleases -01073655 04 n 02 overindulgence 0 excess 0 003 @ 01073241 n 0000 + 01299385 a 0101 + 01193099 v 0103 | excessive indulgence; "the child was spoiled by overindulgence" -01073824 04 n 03 orgy 1 binge 1 splurge 0 001 @ 01073241 n 0000 | any act of immoderate indulgence; "an orgy of shopping"; "an emotional binge"; "a splurge of spending" -01073995 04 n 03 hindrance 0 hinderance 0 interference 0 008 @ 00030358 n 0000 + 02451912 v 0301 ~ 00067990 n 0000 ~ 01074252 n 0000 ~ 01074498 n 0000 ~ 01076359 n 0000 ~ 01076488 n 0000 ~ 01077350 n 0000 | the act of hindering or obstructing or impeding -01074252 04 n 01 antagonism 0 004 @ 01073995 n 0000 ;c 06079620 n 0000 + 00623565 a 0101 + 02714883 n 0101 | (biochemistry) interference in or inhibition of the physiological action of a chemical substance by another having a similar structure -01074498 04 n 01 obstruction 1 006 @ 01073995 n 0000 + 02557199 v 0101 + 01476483 v 0101 ~ 01074694 n 0000 ~ 01075725 n 0000 ~ 01181212 n 0000 | the act of obstructing; "obstruction of justice" -01074694 04 n 03 blockage 0 closure 1 occlusion 0 011 @ 01074498 n 0000 + 01476483 v 0304 + 01478423 v 0201 + 01423285 v 0201 + 01345109 v 0201 + 02559752 v 0103 + 02557199 v 0103 + 02145543 v 0102 + 01478002 v 0102 + 01147060 v 0102 ~ 07116304 n 0000 | the act of blocking -01074970 04 n 01 naval_blockade 0 001 @ 00954086 n 0000 | the interdiction of a nation's lines of communication at sea by the use of naval power -01075117 04 n 04 siege 0 besieging 0 beleaguering 0 military_blockade 0 014 @ 00954086 n 0000 ;c 08199025 n 0000 ~i 01269360 n 0000 ~i 01269633 n 0000 ~i 01270343 n 0000 ~i 01277540 n 0000 ~i 01284928 n 0000 ~i 01289830 n 0000 ~i 01290435 n 0000 ~i 01291674 n 0000 ~i 01296127 n 0000 ~i 01296296 n 0000 ~i 01298797 n 0000 ~i 01300242 n 0000 | the action of an armed force that surrounds a fortified place and isolates it while continuing to attack -01075567 04 n 01 relief 4 001 @ 00095502 n 0000 | the act of freeing a city or town that has been besieged; "he asked for troops for the relief of Atlanta" -01075725 04 n 02 stall 0 stalling 0 005 @ 01074498 n 0000 + 00460555 v 0201 + 00460555 v 0101 + 02642238 v 0102 ~ 01075893 n 0000 | a tactic used to mislead or delay -01075893 04 n 01 stonewalling 0 002 @ 01075725 n 0000 + 01034932 v 0101 | stalling or delaying especially by refusing to answer questions or cooperate -01076046 04 n 02 stop 0 stoppage 0 008 @ 00030358 n 0000 + 02680814 v 0202 + 01859221 v 0201 + 00362348 v 0104 + 02559752 v 0101 + 02680814 v 0102 ~ 00057162 n 0000 ~ 00676834 n 0000 | the act of stopping something; "the third baseman made some remarkable stops"; "his stoppage of the flow resulted in a flood" -01076359 04 n 01 complication 0 003 @ 01073995 n 0000 + 00400883 v 0101 + 00402539 v 0101 | the act or process of complicating -01076488 04 n 01 deterrence 0 005 @ 01073995 n 0000 + 01764543 a 0101 + 00908099 v 0101 ~ 01076724 n 0000 ~ 01076863 n 0000 | the act or process of discouraging actions or preventing occurrences by instilling fear or doubt or anxiety -01076724 04 n 01 discouragement 0 002 @ 01076488 n 0000 + 00908099 v 0102 | the act of discouraging; "the discouragement of petty theft" -01076863 04 n 01 nuclear_deterrence 0 003 @ 01076488 n 0000 @ 05943300 n 0000 ;c 08199025 n 0000 | the military doctrine that an enemy will be deterred from using nuclear weapons as long as he can be destroyed as a consequence; "when two nations both resort to nuclear deterrence the consequence could be mutual destruction" -01077190 04 n 01 countermine 0 003 @ 00174663 n 0000 ;c 08199025 n 0000 + 01125882 v 0101 | (military) a tunnel dug to defeat similar activities by the enemy -01077350 04 n 02 prevention 0 bar 0 012 @ 01073995 n 0000 + 00796588 v 0201 + 02450505 v 0101 ~ 01077738 n 0000 ~ 01077881 n 0000 ~ 01078086 n 0000 ~ 01078279 n 0000 ~ 01078572 n 0000 ~ 01079042 n 0000 ~ 01079295 n 0000 ~ 01079396 n 0000 ~ 01079604 n 0000 | the act of preventing; "there was no bar against leaving"; "money was allocated to study the cause and prevention of influenza" -01077738 04 n 01 averting 0 001 @ 01077350 n 0000 | the act of preventing something from occurring; "averting danger was his responsibility" -01077881 04 n 01 debarment 0 004 ;c 08441203 n 0000 @ 01077350 n 0000 + 02502037 v 0102 ~ 00209132 n 0000 | the act of prevention by legal means; "they achieved his debarment from holding public office" -01078086 04 n 01 disqualification 0 004 @ 01077350 n 0000 + 00972608 v 0101 + 00301338 v 0101 ~ 01080062 n 0000 | the act of preventing someone from participating by finding them unqualified -01078279 04 n 01 interception 0 002 @ 01077350 n 0000 + 01440378 v 0101 | the act of intercepting; preventing something from proceeding or arriving; "he resorted to the interception of his daughter's letters"; "he claimed that the interception of one missile by another would be impossible" -01078572 04 n 02 nonproliferation 0 non-proliferation 0 003 @ 01077350 n 0000 ! 13542114 n 0201 ! 13542114 n 0101 | the prevention of something increasing or spreading (especially the prevention of an increase in the number of countries possessing nuclear weapons); "they protested that the nonproliferation treaty was just a plot to maintain the hegemony of those who already had nuclear weapons"; "nuclear disarmament and nonproliferation are closely related goals" -01079042 04 n 03 obviation 0 forestalling 0 preclusion 0 006 @ 01077350 n 0000 + 02452885 v 0304 + 02452885 v 0202 + 02565491 v 0203 + 02629256 v 0101 + 02453321 v 0104 | the act of preventing something by anticipating and disposing of it effectively -01079295 04 n 01 prophylaxis 0 002 @ 01077350 n 0000 + 01167269 a 0103 | the prevention of disease -01079396 04 n 01 save 0 002 @ 01077350 n 0000 ;c 00523513 n 0000 | (sports) the act of preventing the opposition from scoring; "the goalie made a brilliant save"; "the relief pitcher got credit for a save" -01079604 04 n 04 suppression 2 crushing 0 quelling 0 stifling 0 007 @ 01077350 n 0000 + 01568630 v 0402 + 00463234 v 0302 + 02424652 v 0203 + 00462092 v 0101 + 02424652 v 0102 ~ 01148182 n 0000 | forceful prevention; putting down by power or authority; "the suppression of heresy"; "the quelling of the rebellion"; "the stifling of all dissent" -01079951 04 n 01 tax_avoidance 0 001 @ 00355919 n 0000 | the minimization of tax liability by lawful methods -01080062 04 n 02 recusation 0 recusal 0 004 @ 01078086 n 0000 ;c 08441203 n 0000 + 00972867 v 0201 + 00972867 v 0101 | (law) the disqualification of a judge or jury by reason of prejudice or conflict of interest; a judge can be recused by objections of either party or judges can disqualify themselves -01080366 04 n 01 group_action 0 042 @ 00030358 n 0000 @ 00029378 n 0000 ~ 00182213 n 0000 ~ 00296585 n 0000 ~ 00952963 n 0000 ~ 00958896 n 0000 ~ 00962722 n 0000 ~ 01081197 n 0000 ~ 01081346 n 0000 ~ 01081456 n 0000 ~ 01082548 n 0000 ~ 01082720 n 0000 ~ 01082886 n 0000 ~ 01106808 n 0000 ~ 01123420 n 0000 ~ 01123598 n 0000 ~ 01145015 n 0000 ~ 01151605 n 0000 ~ 01152461 n 0000 ~ 01166258 n 0000 ~ 01166517 n 0000 ~ 01166926 n 0000 ~ 01168569 n 0000 ~ 01169317 n 0000 ~ 01169598 n 0000 ~ 01181475 n 0000 ~ 01182312 n 0000 ~ 01195380 n 0000 ~ 01201021 n 0000 ~ 01202415 n 0000 ~ 01202904 n 0000 ~ 01203277 n 0000 ~ 01229938 n 0000 ~ 01233397 n 0000 ~ 01234090 n 0000 ~ 01234729 n 0000 ~ 01237294 n 0000 ~ 01239064 n 0000 ~ 01239487 n 0000 ~ 01265734 n 0000 ~ 01266745 n 0000 ~i 01307606 n 0000 | action taken by a group of people -01081197 04 n 01 social_activity 0 003 @ 01080366 n 0000 ~ 01081628 n 0000 ~ 01082350 n 0000 | activity considered appropriate on social occasions -01081346 04 n 01 communalism 0 001 @ 01080366 n 0000 | the practice of communal living and common ownership -01081456 04 n 02 confederation 0 alliance 0 004 @ 01080366 n 0000 + 02430191 v 0201 + 02434541 v 0101 + 02470685 v 0102 | the act of forming an alliance or confederation -01081628 04 n 01 association 0 005 @ 01081197 n 0000 + 02589245 v 0102 + 02470175 v 0102 ~ 01081867 n 0000 ~ 01082061 n 0000 | the act of consorting with or joining with others; "you cannot be convicted of criminal guilt by association" -01081867 04 n 02 fraternization 0 fraternisation 0 003 @ 01081628 n 0000 + 02389927 v 0202 + 02389927 v 0101 | associating with others in a brotherly or friendly way; especially with an enemy -01082061 04 n 01 affiliation 0 003 @ 01081628 n 0000 + 02435311 v 0101 ~ 01082274 n 0000 | the act of becoming formally connected or joined; "welcomed the affiliation of the research center with the university" -01082274 04 n 01 reaffiliation 0 001 @ 01082061 n 0000 | affiliation anew -01082350 04 n 01 mingling 0 002 @ 01081197 n 0000 + 02597095 v 0101 | the action of people mingling and coming into contact; "all the random mingling and idle talk made him hate literary parties" -01082548 04 n 02 decolonization 0 decolonisation 0 003 @ 01080366 n 0000 + 02590667 v 0202 + 02590667 v 0101 | the action of changing from colonial to independent status -01082720 04 n 01 disbandment 0 003 @ 01080366 n 0000 + 02030967 v 0101 + 02029944 v 0101 | the act of disbanding; "the orchestra faced the prospect of disbandment" -01082886 04 n 01 disestablishment 0 002 @ 01080366 n 0000 + 00173007 v 0101 | the act terminating an established state of affairs; especially ending a connection with the Church of England -01083077 04 n 01 distribution 0 010 @ 00030358 n 0000 + 02294436 v 0101 + 01378556 v 0102 ~ 00164345 n 0000 ~ 01083350 n 0000 ~ 01083504 n 0000 ~ 01083645 n 0000 ~ 01085337 n 0000 ~ 01085656 n 0000 ~ 01085793 n 0000 | the act of distributing or spreading or apportioning -01083350 04 n 01 redistribution 0 002 @ 01083077 n 0000 + 01379965 v 0101 | distributing again; "the revolution resulted in a redistribution of wealth" -01083504 04 n 01 dispensation 0 003 @ 01083077 n 0000 + 02294436 v 0107 + 00081072 v 0102 | the act of dispensing (giving out in portions) -01083645 04 n 07 allotment 0 apportionment 0 apportioning 0 allocation 0 parceling 0 parcelling 0 assignation 1 012 @ 01083077 n 0000 + 02228698 v 0701 + 02469085 v 0601 + 02469085 v 0501 + 02234087 v 0401 + 02234087 v 0202 + 02294436 v 010b ~ 00087423 n 0000 ~ 01084180 n 0000 ~ 01084637 n 0000 ~ 01084932 n 0000 ~ 01085098 n 0000 | the act of distributing by allotting or apportioning; distribution according to a plan; "the apportionment of seats in the House of Representatives is based on the relative population of each state" -01084180 04 n 03 reallotment 0 reapportionment 0 reallocation 0 006 @ 01083645 n 0000 ;r 09044862 n 0000 + 02234551 v 0302 + 02234551 v 0201 + 02228901 v 0101 ~ 01084489 n 0000 | a new apportionment (especially a new apportionment of congressional seats in the United States on the basis of census results) -01084489 04 n 01 reshuffle 1 002 @ 01084180 n 0000 + 00278710 v 0101 | a redistribution of something; "there was a reshuffle of cabinet officers" -01084637 04 n 01 deal 1 004 @ 01083645 n 0000 + 02294179 v 0105 + 02294436 v 0104 ~ 01084848 n 0000 | the act of apportioning or distributing something; "the captain was entrusted with the deal of provisions" -01084848 04 n 01 new_deal 0 001 @ 01084637 n 0000 | a reapportioning of something -01084932 04 n 01 rationing 0 002 @ 01083645 n 0000 + 02234988 v 0101 | the act of rationing; "during the war the government imposed rationing of food and gasoline" -01085098 04 n 03 parcel 0 portion 0 share 0 004 @ 01083645 n 0000 + 02294179 v 0301 + 02295208 v 0302 + 02228698 v 0203 | the allotment of some amount by dividing something; "death gets more than its share of attention from theologians" -01085337 04 n 01 deal 0 006 @ 01083077 n 0000 #p 00488225 n 0000 ;c 00488225 n 0000 + 02246686 v 0101 + 02246456 v 0101 ~ 01085567 n 0000 | the act of distributing playing cards; "the deal was passed around the table clockwise" -01085567 04 n 01 misdeal 0 002 @ 01085337 n 0000 + 02246908 v 0101 | an incorrect deal -01085656 04 n 01 revenue_sharing 0 001 @ 01083077 n 0000 | distribution of part of the federal tax income to states and municipalities -01085793 04 n 02 sharing 0 share-out 0 004 @ 01083077 n 0000 + 02294179 v 0101 ~ 01085937 n 0000 ~ 01086081 n 0000 | a distribution in shares -01085937 04 n 02 generosity 0 unselfishness 0 004 @ 01085793 n 0000 + 01112471 a 0201 + 02099019 a 0201 + 01111016 a 0101 | acting generously -01086081 04 n 02 giving 0 gift 0 012 @ 01085793 n 0000 + 02200686 v 0202 + 02308741 v 0102 + 02199590 v 0101 + 01178565 v 0102 ~ 01041498 n 0000 ~ 01086356 n 0000 ~ 01086572 n 0000 ~ 01086744 n 0000 ~ 01089635 n 0000 ~ 01089778 n 0000 ~ 01090225 n 0000 | the act of giving -01086356 04 n 04 bestowal 0 bestowment 0 conferral 0 conferment 0 005 @ 01086081 n 0000 + 02263346 v 0401 + 02263346 v 0301 + 02263346 v 0202 + 02263346 v 0102 | the act of conferring an honor or presenting a gift -01086572 04 n 02 accordance 0 accordance_of_rights 0 002 @ 01086081 n 0000 + 02255268 v 0101 | the act of granting rights; "the accordance to Canada of rights of access" -01086744 04 n 01 endowment 0 002 @ 01086081 n 0000 + 02201268 v 0101 | the act of endowing with a permanent source of income; "his generous endowment of the laboratory came just in the nick of time" -01086945 04 n 03 social_welfare 0 welfare 0 public_assistance 0 004 @ 13265904 n 0000 ~ 01087178 n 0000 ~ 01088168 n 0000 ~ 01088304 n 0000 | governmental provision of economic assistance to persons in need; "she lives on welfare" -01087178 04 n 01 social_insurance 0 007 @ 01086945 n 0000 ~ 01087498 n 0000 ~ 01087740 n 0000 ~ 01087939 n 0000 ~ 01088437 n 0000 ~ 01088757 n 0000 ~ 01088857 n 0000 | government provision for unemployed, injured, or aged people; financed by contributions from employers and employees as well as by government revenue -01087498 04 n 01 national_insurance 0 001 @ 01087178 n 0000 | social insurance program in Britain; based on contributions from employers and employees; provides payments to unemployed and sick and retired people as well as medical services -01087740 04 n 03 supplementary_benefit 0 social_assistance 0 national_assistance 0 002 @ 01087178 n 0000 ;r 08860123 n 0000 | benefits paid to bring incomes up to minimum levels established by law -01087939 04 n 01 Social_Security 0 003 @ 01087178 n 0000 ~ 01088563 n 0000 ~ 01088656 n 0000 | social welfare program in the U.S.; includes old-age and survivors insurance and some unemployment insurance and old-age assistance -01088168 04 n 01 relief 0 001 @ 01086945 n 0000 | aid for the aged or indigent or handicapped; "he has been on relief for many years" -01088304 04 n 03 dole 0 pogy 0 pogey 0 003 @ 01086945 n 0000 ;r 08820121 n 0301 ;r 08820121 n 0201 | money received from the state -01088437 04 n 01 unemployment_compensation 0 001 @ 01087178 n 0000 | payment by a United States agency to unemployed people -01088563 04 n 01 old-age_insurance 0 001 @ 01087939 n 0000 | insurance paid to the elderly -01088656 04 n 01 survivors_insurance 0 001 @ 01087939 n 0000 | insurance paid to surviving spouses -01088757 04 n 01 disability_insurance 0 001 @ 01087178 n 0000 | social insurance for the disabled -01088857 04 n 01 health_care 0 004 @ 01087178 n 0000 ~ 01089009 n 0000 ~ 01089179 n 0000 ~ 01089297 n 0000 | social insurance for the ill and injured -01089009 04 n 01 Medicare 0 001 @ 01088857 n 0000 | health care for the aged; a federally administered system of health insurance available to persons aged 65 and over -01089179 04 n 01 Medicaid 0 001 @ 01088857 n 0000 | health care for the needy; a federally and state-funded program -01089297 04 n 01 primary_health_care 0 001 @ 01088857 n 0000 | health care that is provided by a health care professional in the first contact of a patient with the health care system -01089483 04 n 02 philanthropy 0 philanthropic_gift 0 003 @ 13265904 n 0000 + 03006699 a 0101 + 10421956 n 0101 | voluntary promotion of human welfare -01089635 04 n 01 charity 0 003 @ 01086081 n 0000 ~ 01090342 n 0000 ~ 05914851 n 0000 | an activity or gift that benefits the public at large -01089778 04 n 02 contribution 0 donation 0 006 @ 01086081 n 0000 + 02263027 v 0201 + 02237782 v 0102 + 02308741 v 0101 ~ 01090018 n 0000 ~ 01090117 n 0000 | act of giving in common with others for a common purpose especially to a charity -01090018 04 n 01 subscription 0 002 @ 01089778 n 0000 + 02299269 v 0102 | a pledged contribution -01090117 04 n 01 alms 0 002 @ 01089778 n 0000 ;u 06295235 n 0000 | money or goods contributed to the poor -01090225 04 n 02 alms-giving 0 almsgiving 0 001 @ 01086081 n 0000 | making voluntary contributions to aid the poor -01090342 04 n 01 handout 0 001 @ 01089635 n 0000 | giving money or food or clothing to a needy person -01090446 04 n 03 commerce 0 commercialism 0 mercantilism 0 069 @ 01106808 n 0000 + 02346878 a 0101 + 03137558 a 0101 + 00483146 a 0101 = 00483146 a 0000 = 00484333 a 0000 ~ 00079398 n 0000 ~ 01091905 n 0000 ~ 01092974 n 0000 ~ 01093085 n 0000 ~ 01094575 n 0000 ~ 01094725 n 0000 %p 01105259 n 0000 ~ 01106715 n 0000 ~ 01111750 n 0000 ~ 01111952 n 0000 ~ 01112420 n 0000 ~ 01112885 n 0000 ~ 01113068 n 0000 ~ 01113867 n 0000 ~ 01120448 n 0000 ~ 01120855 n 0000 -c 15299585 n 0000 -c 00470386 v 0000 -c 02207206 v 0000 -c 02208118 v 0000 -c 02208265 v 0000 -c 02208409 v 0000 -c 02211948 v 0000 -c 02221328 v 0000 -c 02242464 v 0000 -c 02243186 v 0000 -c 02243461 v 0000 -c 02243630 v 0000 -c 02243967 v 0000 -c 02244426 v 0000 -c 02244603 v 0000 -c 02244773 v 0000 -c 02244956 v 0000 -c 02245765 v 0000 -c 02245993 v 0000 -c 02247028 v 0000 -c 02247226 v 0000 -c 02247584 v 0000 -c 02260085 v 0000 -c 02260362 v 0000 -c 02260770 v 0000 -c 02260959 v 0000 -c 02261256 v 0000 -c 02261464 v 0000 -c 02265726 v 0000 -c 02287041 v 0000 -c 02294056 v 0000 -c 02298160 v 0000 -c 02298471 v 0000 -c 02323286 v 0000 -c 02325968 v 0000 -c 02326198 v 0000 -c 02326355 v 0000 -c 02326672 v 0000 -c 02326795 v 0000 -c 02345856 v 0000 -c 02346136 v 0000 -c 02346409 v 0000 -c 02347220 v 0000 -c 02353984 v 0000 -c 02447542 v 0000 -c 02728570 v 0000 -c 02728784 v 0000 | transactions (sales and purchases) having the objective of supplying commodities (goods and services) -01091905 04 n 01 trade 5 009 @ 01090446 n 0000 + 02244956 v 0103 + 02728784 v 0101 + 02260085 v 0101 + 02260362 v 0101 ~ 01092315 n 0000 ~ 01092403 n 0000 ~ 01092643 n 0000 -c 01129710 v 0000 | the commercial exchange (buying and selling on domestic or international markets) of goods and services; "Venice was an important center of trade with the East"; "they are accused of conspiring to constrain trade" -01092315 04 n 01 fair_trade 0 001 @ 01091905 n 0000 | trade that is conducted legally -01092403 04 n 01 fair_trade 1 001 @ 01091905 n 0000 | trade that satisfies certain criteria on the supply chain of the goods involved, usually including fair payment for producers; often with other social and environmental considerations -01092643 04 n 01 free_trade 0 002 @ 01091905 n 0000 ~ 01092769 n 0000 | international trade free of government interference -01092769 04 n 02 North_American_Free_Trade_Agreement 0 NAFTA 0 001 @ 01092643 n 0000 | an agreement for free trade between the United States and Canada and Mexico; became effective in 1994 for ten years -01092974 04 n 01 e-commerce 0 001 @ 01090446 n 0000 | commerce conducted electronically (as on the internet) -01093085 04 n 02 exchange 0 interchange 2 005 @ 01090446 n 0000 + 00161225 v 0102 ~ 01093380 n 0000 ~ 01109687 n 0000 ~ 13378348 n 0000 | reciprocal transfer of equivalent sums of money (especially the currencies of different countries); "he earns his living from the interchange of currency" -01093380 04 n 01 conversion 3 003 @ 01093085 n 0000 + 00161225 v 0104 ~ 01093532 n 0000 | act of exchanging one type of money or security for another -01093532 04 n 02 unitization 0 unitisation 0 001 @ 01093380 n 0000 | conversion of an investment trust into a unit investment trust -01093666 04 n 02 lending 0 loaning 0 002 @ 00043609 n 0000 ~ 01093855 n 0000 | disposing of money or property with the expectation that the same thing (or an equivalent) will be returned -01093855 04 n 01 usury 0 001 @ 01093666 n 0000 | the act of lending money at an exorbitant rate of interest -01093965 04 n 01 arbitrage 0 003 @ 01099436 n 0000 + 02260959 v 0101 ~ 01094293 n 0000 | a kind of hedged investment meant to capture slight differences in price; when there is a difference in the price of something on two different markets the arbitrageur simultaneously buys at the lower price and sells at the higher price -01094293 04 n 02 risk_arbitrage 0 takeover_arbitrage 0 001 @ 01093965 n 0000 | arbitrage involving risk; as in the simultaneous purchase of stock in a target company and sale of stock in its potential acquirer; if the takeover fails the arbitrageur may lose a great deal of money -01094575 04 n 03 initial_public_offering 0 IPO 0 initial_offering 0 001 @ 01090446 n 0000 | a corporation's first offer to sell stock to the public -01094725 04 n 03 commercial_enterprise 0 business_enterprise 0 business 1 043 @ 01090446 n 0000 #p 01097292 n 0000 -c 00036998 a 0000 -c 00083478 a 0000 -c 02392134 a 0000 -c 02392654 a 0000 -c 00093127 n 0000 ~ 00298161 n 0000 -c 00409211 n 0000 ~ 00454121 n 0000 ~ 00620424 n 0000 ~ 00811661 n 0000 ~ 00923444 n 0000 %p 01095753 n 0000 -c 01096245 n 0000 ~ 01097119 n 0000 ~ 01098541 n 0000 ~ 01098698 n 0000 ~ 01101114 n 0000 ~ 01101227 n 0000 ~ 01101329 n 0000 ~ 01101958 n 0000 ~ 01103159 n 0000 ~ 01103788 n 0000 ~ 01104406 n 0000 ~ 01104637 n 0000 ~ 01105259 n 0000 ~ 01117164 n 0000 -c 01135952 n 0000 -c 03297735 n 0000 -c 03413428 n 0000 -c 05621439 n 0000 -c 06262567 n 0000 -c 07945077 n 0000 -c 07966927 n 0000 -c 08057816 n 0000 -c 08061042 n 0000 -c 09609232 n 0000 -c 09964064 n 0000 -c 10440387 n 0000 -c 13356569 n 0000 -c 14012667 n 0000 -c 00412048 v 0000 | the activity of providing goods and services involving financial and commercial and industrial aspects; "computers are now widely used in business" -01095753 04 n 02 business_activity 0 commercial_activity 0 005 @ 00796886 n 0000 #p 01094725 n 0000 ~ 01095966 n 0000 ~ 01096245 n 0000 ~ 01096674 n 0000 | activity undertaken as part of a commercial enterprise -01095966 04 n 01 operation 6 002 @ 01095753 n 0000 + 02443849 v 0101 | a business especially one run on a large scale; "a large-scale farming operation"; "a multinational operation"; "they paid taxes on every stage of the operation"; "they had to consolidate their operations" -01096245 04 n 01 business 2 004 @ 01095753 n 0000 ;c 01094725 n 0000 ~ 01096454 n 0000 ~ 01096997 n 0000 | the volume of commercial activity; "business is good today"; "show me where the business was today" -01096454 04 n 02 trade 1 patronage 2 003 @ 01096245 n 0000 + 00908621 v 0203 ~ 01096873 n 0000 | the business given to a commercial establishment by its customers; "even before noon there was a considerable patronage" -01096674 04 n 01 wash 0 002 @ 01095753 n 0000 ;u 07075172 n 0000 | any enterprise in which losses and gains cancel out; "at the end of the year the accounting department showed that it was a wash" -01096873 04 n 01 custom 2 001 @ 01096454 n 0000 | habitual patronage; "I have given this tailor my custom for many years" -01096997 04 n 01 land-office_business 0 001 @ 01096245 n 0000 | very large and profitable volume of commercial activity -01097119 04 n 03 field 0 field_of_operation 0 line_of_business 0 001 @ 01094725 n 0000 | a particular kind of commercial enterprise; "they are outstanding in their field" -01097292 04 n 03 market 0 marketplace 0 market_place 0 012 @ 00407535 n 0000 + 00470386 v 0103 + 02298160 v 0101 %p 01094725 n 0000 ~ 01097739 n 0000 ~ 01097920 n 0000 ~ 01098071 n 0000 ~ 01098265 n 0000 ~ 01098404 n 0000 ~ 14444326 n 0000 ~ 14444644 n 0000 ~ 14444825 n 0000 | the world of commercial activity where goods and services are bought and sold; "without competition there would be no market"; "they were driven from the marketplace" -01097739 04 n 01 black_market 0 002 @ 01097292 n 0000 + 02242256 v 0102 | an illegal market in which goods or currencies are bought and sold in violation of rationing or controls -01097920 04 n 03 buyer's_market 0 buyers'_market 0 soft_market 0 001 @ 01097292 n 0000 | a market in which more people want to sell than want to buy -01098071 04 n 02 grey_market 0 gray_market 0 001 @ 01097292 n 0000 | an unofficial market in which goods are bought and sold at prices lower than the official price set by a regulatory agency -01098265 04 n 02 seller's_market 0 sellers'_market 0 001 @ 01097292 n 0000 | a market in which more people want to buy than want to sell -01098404 04 n 01 labor_market 0 001 @ 01097292 n 0000 | the market in which workers compete for jobs and employers compete for workers -01098541 04 n 02 employee-owned_enterprise 0 employee-owned_business 0 001 @ 01094725 n 0000 | a commercial enterprise owned by the people who work for it -01098698 04 n 01 finance 0 010 @ 01094725 n 0000 + 02847894 a 0102 + 02217864 v 0101 + 02217266 v 0101 ~ 01098968 n 0000 ~ 01099109 n 0000 ~ 01099231 n 0000 ~ 01099436 n 0000 ~ 01100147 n 0000 ~ 01100273 n 0000 | the commercial activity of providing funds and capital -01098968 04 n 01 corporate_finance 0 003 @ 01098698 n 0000 -c 13260762 n 0000 -c 15281329 n 0000 | the financial activities of corporation -01099109 04 n 02 financing 0 funding 0 003 @ 01098698 n 0000 + 02215506 v 0201 + 02217266 v 0101 | the act of financing -01099231 04 n 01 high_finance 0 001 @ 01098698 n 0000 | large and complex financial transactions (often used with the implication that those individuals or institutions who engage in them are unethical) -01099436 04 n 02 investing 0 investment 0 010 @ 01098698 n 0000 + 02271137 v 0201 + 02271137 v 0101 ~ 01093965 n 0000 ~ 01099768 n 0000 ~ 01099946 n 0000 -c 02272373 v 0000 -c 02284544 v 0000 -c 02290756 v 0000 -c 02299110 v 0000 | the act of investing; laying out money or capital in an enterprise with the expectation of profit -01099768 04 n 01 foreign_direct_investment 0 001 @ 01099436 n 0000 | investing in United States businesses by foreign citizens (often involves stock ownership of the business) -01099946 04 n 02 leverage 0 leveraging 0 003 @ 01099436 n 0000 + 02359690 v 0101 + 02359839 v 0101 | investing with borrowed money as a way to amplify potential gains (at the risk of greater losses) -01100147 04 n 02 flotation 1 floatation 1 001 @ 01098698 n 0000 | financing a commercial enterprise by bond or stock shares -01100273 04 n 01 banking 0 005 @ 01098698 n 0000 + 02343374 v 0101 + 02310855 v 0102 -c 01129021 a 0000 ~ 01100491 n 0000 | transacting business with a bank; depositing or withdrawing funds or requesting a loan etc. -01100491 04 n 01 home_banking 0 001 @ 01100273 n 0000 | banking in which transactions are conducted by means of electronic communication (via telephone or computer) -01100658 04 n 01 banking 1 003 @ 01134037 n 0000 + 02343056 v 0101 -c 05189396 n 0000 | engaging in the business of keeping money for savings and checking accounts or for exchange or for issuing loans and credit etc. -01100877 04 n 02 cooperative 0 co-op 0 001 @ 08065093 n 0000 | a jointly owned commercial enterprise (usually organized by farmers or consumers) that produces and distributes goods and services and is run for the benefit of its owners -01101114 04 n 01 discount_business 0 001 @ 01094725 n 0000 | the business of selling merchandise at a discount -01101227 04 n 01 real-estate_business 0 001 @ 01094725 n 0000 | the business of selling real estate -01101329 04 n 02 advertising 0 publicizing 0 007 @ 01094725 n 0000 + 00975902 v 0202 + 00954608 v 0201 + 00976653 v 0101 ~ 01101571 n 0000 ~ 01101661 n 0000 ~ 01101753 n 0000 | the business of drawing public attention to goods and services -01101571 04 n 01 hard_sell 0 001 @ 01101329 n 0000 | forceful and insistent advertising -01101661 04 n 01 soft_sell 0 001 @ 01101329 n 0000 | suggestive or persuasive advertising -01101753 04 n 02 circularization 0 circularisation 0 005 @ 01101329 n 0000 + 02454649 v 0202 + 02043665 v 0202 + 02454649 v 0101 + 02043665 v 0101 | circulating printed notices as a means of advertising -01101958 04 n 02 publication 0 publishing 0 010 @ 01094725 n 0000 + 00967625 v 0201 + 01745722 v 0102 + 00967625 v 0101 ~ 01102256 n 0000 ~ 01102574 n 0000 ~ 01102712 n 0000 ~ 01102862 n 0000 -c 02332445 v 0000 -c 02354112 v 0000 | the business of issuing printed matter for sale or distribution -01102256 04 n 01 desktop_publishing 0 002 @ 01101958 n 0000 ;c 06128570 n 0000 | (computer science) the use of microcomputers with graphics capacity to produce printed materials -01102436 04 n 01 publication 2 001 @ 00033020 n 0000 | the communication of something to the public; making information generally known -01102574 04 n 02 republication 0 republishing 0 003 @ 01101958 n 0000 + 01746145 v 0201 + 01746145 v 0101 | the act of publishing again -01102712 04 n 01 contribution 1 001 @ 01101958 n 0000 | a writing for publication especially one of a collection of writings as an article or story -01102862 04 n 02 serialization 0 serialisation 0 003 @ 01101958 n 0000 + 00279075 v 0202 + 00279075 v 0101 | publication in serial form -01103000 04 n 01 typography 0 004 @ 00606370 n 0000 + 02910248 a 0102 + 02910248 a 0101 + 09949946 n 0104 | the craft of composing type and printing from it -01103159 04 n 01 printing 0 006 @ 01094725 n 0000 ;c 06677302 n 0000 ~ 01103374 n 0000 ~ 01103614 n 0000 -c 02975589 n 0000 -c 00489699 v 0000 | the business of producing printed material for sale or distribution -01103374 04 n 01 gravure 0 003 @ 01103159 n 0000 + 01749790 v 0101 ~ 01103492 n 0000 | the act of intaglio printing -01103492 04 n 02 photogravure 0 rotogravure 0 001 @ 01103374 n 0000 | using photography to produce a plate for printing -01103614 04 n 02 issue 0 publication 1 005 @ 01103159 n 0000 + 01745722 v 0202 + 00967625 v 0201 + 01063049 v 0101 + 00967625 v 0104 | the act of issuing printed materials -01103788 04 n 01 packaging 0 004 @ 01094725 n 0000 + 01485158 v 0102 ~ 01103964 n 0000 ~ 01104174 n 0000 | the business of packing; "his business is packaging for transport" -01103964 04 n 03 meatpacking 0 meat_packing 0 meat-packing_business 0 001 @ 01103788 n 0000 | wholesale packaging of meat for future sale (including slaughtering and processing and distribution to retailers) -01104174 04 n 02 unitization 2 unitisation 2 003 @ 01103788 n 0000 + 01385458 v 0202 + 01385458 v 0101 | the act of packaging cargo into unit loads -01104324 04 n 01 catering 0 001 @ 00582388 n 0000 | providing food and services -01104406 04 n 03 agribusiness 0 agriculture 1 factory_farm 0 002 @ 01094725 n 0000 + 09779790 n 0201 | a large-scale farming enterprise -01104544 04 n 01 truck_farming 0 001 @ 00916464 n 0000 | growing vegetables for the market -01104637 04 n 02 construction 1 building 1 010 @ 01094725 n 0000 + 02443424 v 0201 + 01685601 v 0201 %p 00608896 n 0000 %p 00609236 n 0000 %p 00609669 n 0000 %p 00617989 n 0000 %p 00618119 n 0000 %p 00618264 n 0000 ~ 01105038 n 0000 | the commercial activity involved in repairing old structures or constructing new ones; "their main business is home construction"; "workers in the building trades" -01105038 04 n 01 jerry-building 0 001 @ 01104637 n 0000 | construction of inferior buildings for a quick profit -01105152 04 n 01 slating 0 002 @ 00617989 n 0000 + 01338368 v 0101 | the act of laying slates for a roof -01105259 04 n 03 transportation 1 shipping 0 transport 0 014 @ 01094725 n 0000 #p 01090446 n 0000 + 01435380 v 0303 + 01950798 v 0301 + 01950798 v 0203 + 01950798 v 0101 -c 01650883 a 0000 -c 01651044 a 0000 ~ 01105635 n 0000 ~ 01105737 n 0000 ~ 01105909 n 0000 ~ 01106272 n 0000 ~ 01106460 n 0000 ~ 01106587 n 0000 | the commercial enterprise of moving goods and materials -01105635 04 n 02 air_transportation 0 air_transport 0 001 @ 01105259 n 0000 | transportation by air -01105737 04 n 01 navigation 2 003 @ 01105259 n 0000 + 02909006 a 0101 + 01846320 v 0103 | ship traffic; "the channel will be open to navigation as soon as the ice melts" -01105909 04 n 03 hauling 0 trucking 0 truckage 0 006 @ 01105259 n 0000 + 01954341 v 0301 + 01954341 v 0201 + 01454810 v 0101 + 01452255 v 0101 ~ 01106118 n 0000 | the activity of transporting goods by truck -01106118 04 n 02 cartage 0 carting 0 002 @ 01105909 n 0000 + 01451502 v 0101 | the work of taking something away in a cart or truck and disposing of it -01106272 04 n 02 freight 0 freightage 0 004 @ 01105259 n 0000 + 01951276 v 0201 + 01489161 v 0201 + 01951276 v 0101 | transporting goods commercially at rates cheaper than express rates -01106460 04 n 02 express 0 expressage 0 003 @ 01105259 n 0000 + 01031756 v 0201 + 01031756 v 0101 | rapid transport of goods -01106587 04 n 02 ferry 0 ferrying 0 003 @ 01105259 n 0000 + 01949435 v 0201 + 01949674 v 0101 | transport by boat or aircraft -01106715 04 n 01 carriage_trade 0 001 @ 01090446 n 0000 | trade from upper-class customers -01106808 04 n 03 transaction 0 dealing 2 dealings 0 017 @ 01080366 n 0000 + 02445509 v 0303 + 02244956 v 0301 + 02445509 v 0203 + 02244956 v 0201 + 02245765 v 0101 ~ 01090446 n 0000 ~ 01107359 n 0000 ~ 01107726 n 0000 ~ 01107932 n 0000 ~ 01109467 n 0000 ~ 01110274 n 0000 ~ 01110811 n 0000 ~ 01110973 n 0000 ~ 01111133 n 0000 ~ 01111375 n 0000 ~i 01111569 n 0000 | the act of transacting within or between groups (as carrying on commercial activities); "no transactions are possible without him"; "he has always been honest is his dealings with me" -01107359 04 n 01 affairs 0 003 @ 01106808 n 0000 ~ 01107549 n 0000 ~ 01124508 n 0000 | transactions of professional or public interest; "news of current affairs"; "great affairs of state" -01107549 04 n 02 world_affairs 0 international_affairs 0 001 @ 01107359 n 0000 | affairs between nations; "you can't really keep up with world affairs by watching television" -01107726 04 n 02 operations 0 trading_operations 0 002 @ 01106808 n 0000 ;u 06295235 n 0000 | financial transactions at a brokerage; having to do with the execution of trades and keeping customer records -01107932 04 n 02 transfer 2 transference 0 008 @ 01106808 n 0000 + 02220461 v 0201 + 02220461 v 0101 ~ 01108150 n 0000 ~ 01108402 n 0000 ~ 01108641 n 0000 ~ 01109114 n 0000 ~ 01109311 n 0000 | transferring ownership -01108150 04 n 01 alienation 1 002 @ 01107932 n 0000 ;c 08441203 n 0000 | (law) the voluntary and absolute transfer of title and possession of real property from one person to another; "the power of alienation is an essential ingredient of ownership" -01108402 04 n 04 conveyance 0 conveyance_of_title 0 conveyancing 0 conveying 0 005 @ 01107932 n 0000 + 02221454 v 0401 + 09962612 n 0101 + 02221454 v 0101 ~ 01108753 n 0000 | act of transferring property title from one person to another -01108641 04 n 01 quitclaim 0 001 @ 01107932 n 0000 | act of transferring a title or right or claim to another -01108753 04 n 03 delivery 1 livery 0 legal_transfer 0 004 @ 01108402 n 0000 + 02293321 v 0106 ~ 00213343 n 0000 ~ 01108971 n 0000 | the voluntary transfer of something (title or possession) from one party to another -01108971 04 n 01 bailment 0 002 @ 01108753 n 0000 + 02293732 v 0101 | the delivery of personal property in trust by the bailor to the bailee -01109114 04 n 02 lend-lease 0 lease-lend 0 001 @ 01107932 n 0000 | the transfer of goods and services to an ally to aid in a common cause; "lend-lease during World War II was extremely generous" -01109311 04 n 02 secularization 0 secularisation 0 002 @ 01107932 n 0000 + 02221794 v 0102 | transfer of property from ecclesiastical to civil possession -01109467 04 n 01 exchange 3 003 @ 01106808 n 0000 + 02257370 v 0101 ~ 01110063 n 0000 | the act of giving something in return for something received; "deductible losses on sales or exchanges of property are allowable" -01109687 04 n 04 barter 0 swap 0 swop 0 trade 3 007 @ 01093085 n 0000 + 02259005 v 0401 + 02260085 v 0401 + 02259005 v 0303 + 02259005 v 0202 + 02259241 v 0101 ~ 01109934 n 0000 | an equal exchange; "we had no money so we had to live by barter" -01109934 04 n 02 horse_trade 0 horse_trading 0 001 @ 01109687 n 0000 | the swapping of horses (accompanied by much bargaining) -01110063 04 n 01 logrolling 1 002 @ 01109467 n 0000 + 02375902 v 0101 | act of exchanging favors for mutual gain; especially trading of influence or votes among legislators to gain passage of certain projects -01110274 04 n 03 deal 2 trade 2 business_deal 0 009 @ 01106808 n 0000 + 02244956 v 0203 + 02728784 v 0201 + 02260085 v 0201 + 02260362 v 0201 + 02245993 v 0101 + 02244956 v 0101 ~ 01110633 n 0000 ~ 01110720 n 0000 | a particular instance of buying or selling; "it was a package deal"; "I had no further trade with him"; "he's a master of the business deal" -01110633 04 n 01 arms_deal 0 001 @ 01110274 n 0000 | a deal to provide military arms -01110720 04 n 01 penny_ante 1 001 @ 01110274 n 0000 | a business deal on a trivial scale -01110811 04 n 01 downtick 0 002 @ 01106808 n 0000 ! 01110973 n 0101 | a transaction in the stock market at a price below the price of the preceding transaction -01110973 04 n 01 uptick 0 002 @ 01106808 n 0000 ! 01110811 n 0101 | a transaction in the stock market at a price above the price of the preceding transaction -01111133 04 n 01 borrowing 0 002 @ 01106808 n 0000 ~ 01111236 n 0000 | obtaining funds from a lender -01111236 04 n 01 pawn 0 002 @ 01111133 n 0000 + 02347220 v 0101 | borrowing and leaving an article as security for repayment of the loan -01111375 04 n 02 rental 0 renting 0 004 @ 01106808 n 0000 ;c 02958343 n 0000 + 02460199 v 0201 + 02208537 v 0102 | the act of paying for the use of something (as an apartment or house or car) -01111569 04 n 01 Seward's_Folly 0 001 @i 01106808 n 0000 | the transaction in 1867 in which the United States Secretary of State William Henry Seward purchased Alaska from Russia -01111750 04 n 02 importing 0 importation 0 004 @ 01090446 n 0000 + 02346136 v 0201 + 02346136 v 0101 ~ 01112132 n 0000 | the commercial activity of buying and bringing in goods from a foreign country -01111952 04 n 02 exporting 0 exportation 0 003 @ 01090446 n 0000 + 02346409 v 0201 + 02346409 v 0101 | the commercial activity of selling and shipping goods to a foreign country -01112132 04 n 01 smuggling 0 003 @ 01111750 n 0000 + 02345856 v 0101 ~ 01112289 n 0000 | secretly importing prohibited goods or goods on which duty is due -01112289 04 n 01 gunrunning 0 001 @ 01112132 n 0000 | the smuggling of guns and ammunition into a country secretly and illegally -01112420 04 n 01 marketing 2 007 @ 01090446 n 0000 + 00470386 v 0103 ~ 01112739 n 0000 %p 01112885 n 0000 %p 01113068 n 0000 ~ 01113595 n 0000 %p 07247071 n 0000 | the commercial processes involved in promoting and selling and distributing a product or service; "most companies have a manager in charge of marketing" -01112739 04 n 01 direct_marketing 0 001 @ 01112420 n 0000 | marketing via a promotion delivered directly to the individual prospective customer -01112885 04 n 01 distribution 1 003 @ 01090446 n 0000 #p 01112420 n 0000 + 02479990 v 0101 | the commercial activity of transporting and selling goods from a producer to a consumer -01113068 04 n 03 selling 0 merchandising 0 marketing 0 023 @ 01090446 n 0000 #p 01112420 n 0000 + 02298471 v 0301 + 02260362 v 0202 + 02727883 v 0101 + 02244956 v 0102 + 02242464 v 0101 ~ 00091977 n 0000 ~ 00092212 n 0000 ~ 00092663 n 0000 ~ 00092847 n 0000 ~ 00093006 n 0000 ~ 01114458 n 0000 ~ 01114646 n 0000 ~ 01114824 n 0000 ~ 01115348 n 0000 ~ 01115589 n 0000 ~ 01115734 n 0000 ~ 01115866 n 0000 ~ 01116026 n 0000 ~ 01116968 n 0000 ~ 01117454 n 0000 ~ 01117541 n 0000 | the exchange of goods for an agreed sum of money -01113595 04 n 02 distribution_channel 0 channel 0 001 @ 01112420 n 0000 | a way of selling a company's product either directly or via distributors; "possible distribution channels are wholesalers or small retailers or retail chains or direct mailers or your own stores" -01113867 04 n 01 traffic 1 006 @ 01090446 n 0000 + 02260770 v 0101 + 02261123 v 0101 ~ 01114055 n 0000 ~ 01114172 n 0000 ~ 01114284 n 0000 | buying and selling; especially illicit trade -01114055 04 n 03 drug_traffic 0 drug_trafficking 0 narcotraffic 0 001 @ 01113867 n 0000 | traffic in illegal drugs -01114172 04 n 02 simony 0 barratry 3 001 @ 01113867 n 0000 | traffic in ecclesiastical offices or preferments -01114284 04 n 02 slave_trade 0 slave_traffic 0 001 @ 01113867 n 0000 | traffic in slaves; especially in Black Africans transported to America in the 16th to 19th centuries -01114458 04 n 01 retail 0 004 @ 01113068 n 0000 + 02247028 v 0101 + 02728570 v 0101 ! 01114646 n 0101 | the selling of goods to consumers; usually in small quantities and not for resale -01114646 04 n 01 wholesale 0 003 @ 01113068 n 0000 + 02247226 v 0101 ! 01114458 n 0101 | the selling of goods to merchants; usually in large quantities for resale to consumers -01114824 04 n 01 sale 0 002 @ 01113068 n 0000 ~ 01115017 n 0000 | a particular instance of selling; "he has just made his first sale"; "they had to complete the sale before the banks closed" -01115017 04 n 01 divestiture 0 002 @ 01114824 n 0000 + 02313906 v 0101 | the sale by a company of a product line or a subsidiary or a division -01115162 04 n 01 sell 0 005 @ 01117541 n 0000 + 02748206 v 0101 + 02244956 v 0102 + 02727883 v 0101 + 02242464 v 0101 | the activity of persuading someone to buy; "it was a hard sell" -01115348 04 n 01 syndication 1 002 @ 01113068 n 0000 + 02243758 v 0101 | selling (an article or cartoon) for publication in many magazines or newspapers at the same time; "he received a comfortable income from the syndication of his work" -01115589 04 n 01 dumping 0 002 @ 01113068 n 0000 + 02350878 v 0101 | selling goods abroad at a price below that charged in the domestic market -01115734 04 n 01 dutch_auction 0 001 @ 01113068 n 0000 | a method of selling in which the price is reduced until a buyer is found -01115866 04 n 01 retailing 0 003 @ 01113068 n 0000 + 02728570 v 0101 + 02247028 v 0101 | the activities involved in selling commodities directly to consumers -01116026 04 n 03 telemarketing 0 teleselling 0 telecommerce 0 002 @ 01113068 n 0000 ~ 01116876 n 0000 | the use of the telephone as an interactive medium for promotion and sales -01116206 04 n 01 telemetry 0 001 @ 00996969 n 0000 | automatic transmission and measurement of data from remote sources by wire or radio or other means -01116360 04 n 01 thermometry 0 002 @ 00996969 n 0000 + 03124931 a 0101 | the measurement of temperature -01116466 04 n 01 thermogravimetry 0 003 @ 00996969 n 0000 @ 00646833 n 0000 + 03003031 a 0102 | the measurement of changes in weight as a function of changes in temperature used as a technique of chemically analyzing substances -01116696 04 n 01 tonometry 0 001 @ 00996969 n 0000 | the measurement of intraocular pressure by determining the amount of force needed to make a slight indentation in the cornea -01116876 04 n 01 telephone_order 0 001 @ 01116026 n 0000 | receiving orders via telephone -01116968 04 n 04 vending 0 peddling 0 hawking 0 vendition 0 005 @ 01113068 n 0000 + 02302817 v 0405 + 02302817 v 0304 + 02302817 v 0201 + 02302817 v 0105 | the act of selling goods for a living -01117164 04 n 01 venture 1 003 @ 01094725 n 0000 + 00066146 a 0104 + 02545272 v 0101 | a commercial undertaking that risks a loss but promises a profit -01117318 04 n 02 viscometry 0 viscosimetry 0 003 @ 00996969 n 0000 + 03143794 a 0202 + 03143794 a 0101 | the measurement of viscosity -01117454 04 n 01 resale 0 001 @ 01113068 n 0000 | the selling of something purchased -01117541 04 n 01 sale 2 003 @ 01113068 n 0000 ~ 00092366 n 0000 ~ 01115162 n 0000 | the general activity of selling; "they tried to boost sales"; "laws limit the sale of handguns" -01117723 04 n 03 sale 1 cut-rate_sale 0 sales_event 0 013 @ 14485064 n 0000 ~ 01118182 n 0000 ~ 01118614 n 0000 ~ 01118776 n 0000 ~ 01118890 n 0000 ~ 01119012 n 0000 ~ 01119116 n 0000 ~ 01119250 n 0000 ~ 01119401 n 0000 ~ 01119620 n 0000 ~ 01119850 n 0000 ~ 01119949 n 0000 ~ 01120176 n 0000 | an occasion (usually brief) for buying at specially reduced prices; "they held a sale to reduce their inventory"; "I got some great bargains at their annual sale" -01118182 04 n 02 bazaar 0 fair 0 003 @ 01117723 n 0000 ~ 01118338 n 0000 ~ 01118495 n 0000 | a sale of miscellany; often for charity; "the church bazaar" -01118338 04 n 02 book_fair 0 bookfair 0 001 @ 01118182 n 0000 | bazaar at which books are sold or auctioned off in order to raise funds for a worthy cause -01118495 04 n 01 craft_fair 0 001 @ 01118182 n 0000 | a fair at which objects made by craftsmen are offered for sale -01118614 04 n 02 car_boot_sale 0 boot_sale 0 002 @ 01117723 n 0000 ;r 08860123 n 0000 | an outdoor sale at which people sell things from the trunk of their car -01118776 04 n 02 clearance_sale 0 inventory-clearance_sale 0 001 @ 01117723 n 0000 | a sale to reduce inventory -01118890 04 n 01 closeout 0 002 @ 01117723 n 0000 + 02352538 v 0101 | a sale intended to dispose of all remaining stock -01119012 04 n 01 fire_sale 0 001 @ 01117723 n 0000 | a sale of merchandise supposedly damaged by fire -01119116 04 n 01 fire_sale 1 001 @ 01117723 n 0000 | a sale of assets at very low prices typically when the seller faces bankruptcy -01119250 04 n 02 garage_sale 0 yard_sale 0 001 @ 01117723 n 0000 | an outdoor sale of used personal or household items held on the seller's premises -01119401 04 n 01 going-out-of-business_sale 0 001 @ 01117723 n 0000 | a sale of all the tangible assets of a business that is about to close; "during the Great Depression going-out-of-business sales were very common" -01119620 04 n 02 realization 1 realisation 1 003 @ 01117723 n 0000 + 02244603 v 0202 + 02244603 v 0101 | a sale in order to obtain money (as a sale of stock or a sale of the estate of a bankrupt person) or the money so obtained -01119850 04 n 02 rummage_sale 0 jumble_sale 0 001 @ 01117723 n 0000 | a sale of donated articles -01119949 04 n 01 selloff 0 002 @ 01117723 n 0000 + 02244248 v 0101 | a sale of a relatively large number of assets (stocks or bonds or commodities) at a low price typically done to dispose of them rather than as normal trade -01120176 04 n 01 white_sale 0 001 @ 01117723 n 0000 | a sale of household linens -01120259 04 n 01 undertaking 1 001 @ 00606370 n 0000 | the trade of a funeral director -01120348 04 n 01 upholstery 0 002 @ 00606370 n 0000 + 02341816 v 0101 | the craft of upholstering -01120448 04 n 03 payment 0 defrayal 0 defrayment 0 018 @ 01090446 n 0000 + 02349945 v 0301 + 02349945 v 0201 + 02253154 v 0101 + 02252931 v 0103 + 02251743 v 0101 ! 01120855 n 0102 ~ 01121070 n 0000 ~ 01121245 n 0000 ~ 01121390 n 0000 ~ 01121492 n 0000 ~ 01121585 n 0000 ~ 01121690 n 0000 ~ 01121855 n 0000 ~ 01122037 n 0000 ~ 01122149 n 0000 ~ 01122387 n 0000 ~ 01122488 n 0000 | the act of paying money -01120855 04 n 02 evasion 2 nonpayment 0 003 @ 01090446 n 0000 ! 01120448 n 0201 ~ 00741797 n 0000 | the deliberate act of failing to pay money; "his evasion of all his creditors"; "he was indicted for nonpayment" -01121070 04 n 02 amortization 0 amortisation 0 003 @ 01120448 n 0000 + 02352263 v 0202 + 02352263 v 0101 | payment of an obligation in a series of installments or transfers -01121245 04 n 01 fee_splitting 0 001 @ 01120448 n 0000 | payment (usually by doctors or lawyers) of part of the fee in return for the referral -01121390 04 n 01 overpayment 0 002 @ 01120448 n 0000 + 02250077 v 0101 | the act of paying too much -01121492 04 n 01 prepayment 0 002 @ 01120448 n 0000 + 02250340 v 0101 | payment in advance -01121585 04 n 01 ransom 1 002 @ 01120448 n 0000 + 02256998 v 0101 | payment for the release of someone -01121690 04 n 02 refund 0 repayment 0 004 @ 01120448 n 0000 + 02344060 v 0202 + 02284951 v 0203 + 02284951 v 0101 | the act of returning money received previously -01121855 04 n 01 remuneration 0 002 @ 01120448 n 0000 + 02249741 v 0103 | the act of paying for goods or services or to recompense for losses; "adequate remuneration for his work" -01122037 04 n 01 rendering 0 002 @ 01120448 n 0000 + 01060746 v 0102 | giving in acknowledgment of obligation -01122149 04 n 04 spending 0 disbursement 0 disbursal 0 outlay 0 007 @ 01120448 n 0000 + 02301502 v 0301 + 02301502 v 0201 + 02267529 v 0101 + 02267060 v 0101 ~ 01122601 n 0000 ~ 01122754 n 0000 | the act of spending or disbursing money -01122387 04 n 01 tribute 1 001 @ 01120448 n 0000 | payment by one nation for protection by another -01122488 04 n 01 underpayment 0 002 @ 01120448 n 0000 + 02250216 v 0101 | the act of paying less than required -01122601 04 n 02 expending 0 expenditure 0 003 @ 01122149 n 0000 + 02267060 v 0202 + 02267060 v 0102 | the act of spending money for goods or services -01122754 04 n 03 deficit_spending 0 compensatory_spending 0 pump_priming 1 001 @ 01122149 n 0000 | spending money raised by borrowing; used by governments to stimulate their economy -01122938 04 n 02 amortization 1 amortisation 1 001 @ 00351638 n 0000 | the reduction of the value of an asset by prorating its cost over a period of years -01123095 04 n 01 migration 0 006 @ 00279835 n 0000 + 02895861 a 0101 + 01856626 v 0101 ~ 00056087 n 0000 ~ 00056311 n 0000 ~ 01123304 n 0000 | the movement of persons from one country or locality to another -01123304 04 n 01 gold_rush 0 001 @ 01123095 n 0000 | a large migration of people to a newly discovered gold field -01123420 04 n 01 stampede 0 002 @ 01080366 n 0000 + 02056300 v 0101 | a headlong rush of people on a common impulse; "when he shouted `fire' there was a stampede to the exits" -01123598 04 n 01 social_control 0 023 @ 01080366 n 0000 ~ 01124110 n 0000 ~ 01124246 n 0000 ~ 01124384 n 0000 ~ 01124794 n 0000 ~ 01127019 n 0000 ~ 01128390 n 0000 ~ 01128984 n 0000 ~ 01129920 n 0000 ~ 01133106 n 0000 ~ 01133281 n 0000 ~ 01150200 n 0000 ~ 01150938 n 0000 ~ 01151788 n 0000 ~ 01152033 n 0000 ~ 01152583 n 0000 ~ 01153548 n 0000 ~ 01153861 n 0000 ~ 01156438 n 0000 ~ 01158190 n 0000 ~ 01158690 n 0000 ~ 01160342 n 0000 ~ 01166092 n 0000 | control exerted (actively or passively) by group action -01124110 04 n 01 auto_limitation 0 001 @ 01123598 n 0000 | social control achieved as a manifestation of self-will or general consent -01124246 04 n 01 sanction 2 002 @ 01123598 n 0000 + 00806891 v 0101 | a mechanism of social control for enforcing a society's standards -01124384 04 n 01 population_control 0 001 @ 01123598 n 0000 | control over the growth of population; a government program -01124508 04 n 01 politics 1 002 @ 00407535 n 0000 @ 01107359 n 0000 | the activities and affairs involved in managing a state or a government; "unemployment dominated the politics of the inter-war years"; "government agencies multiplied beyond the control of representative politics" -01124794 04 n 05 government 0 governing 0 governance 0 government_activity 0 administration 4 028 @ 01123598 n 0000 + 02586619 v 0301 + 02586619 v 0201 + 02442205 v 0101 -c 00576189 a 0000 -c 00961667 a 0000 -c 01107206 a 0000 -c 01107521 a 0000 -c 01532760 a 0000 -c 00260881 n 0000 -c 00744004 n 0000 -c 01070708 n 0000 ~ 01125562 n 0000 ~ 01125693 n 0000 ~ 01126335 n 0000 -c 01141160 n 0000 -c 01159461 n 0000 -c 01179167 n 0000 -c 05663671 n 0000 -c 06148148 n 0000 -c 06196071 n 0000 -c 06727224 n 0000 -c 08050678 n 0000 -c 10067600 n 0000 -c 13272059 n 0000 -c 13341052 n 0000 -c 13945102 n 0000 -c 13973059 n 0000 | the act of governing; exercising authority; "regulations for the governing of state prisons"; "he had considerable experience of government" -01125562 04 n 02 misgovernment 0 misrule 0 002 @ 01124794 n 0000 + 02586979 v 0101 | government that is inefficient or dishonest -01125693 04 n 03 legislation 0 legislating 0 lawmaking 0 009 @ 01124794 n 0000 ;c 06535222 n 0000 ;c 08441203 n 0000 + 02466670 v 0101 ~ 01125959 n 0000 ~ 01126151 n 0000 ~ 01126856 n 0000 -c 00654258 v 0000 -c 02466496 v 0000 | the act of making or enacting laws -01125959 04 n 02 criminalization 0 criminalisation 0 003 @ 01125693 n 0000 ! 01126151 n 0202 ! 01126151 n 0101 | legislation that makes something illegal; "the criminalization of marijuana" -01126151 04 n 02 decriminalization 0 decriminalisation 0 003 @ 01125693 n 0000 ! 01125959 n 0202 ! 01125959 n 0101 | legislation that makes something legal that was formerly illegal -01126335 04 n 01 trust_busting 0 003 @ 01124794 n 0000 ;r 09044862 n 0000 ;c 08441203 n 0000 | (law) government activities seeking to dissolve corporate trusts and monopolies (especially under the United States antitrust laws) -01126564 04 n 02 winemaking 0 wine_making 0 002 @ 00606370 n 0000 -c 00459114 v 0000 | the craft and science of growing grapes and making wine -01126709 04 n 02 viticulture 0 viniculture 0 002 @ 00917759 n 0000 -c 02192383 v 0000 | the cultivation of grapes and grape vines; grape growing -01126856 04 n 02 enactment 1 passage 1 004 @ 01125693 n 0000 ;c 08441203 n 0000 + 02466670 v 0202 + 02427916 v 0102 | the passing of a law by a legislative body -01127019 04 n 01 enforcement 0 007 @ 01123598 n 0000 + 02560424 v 0101 + 02560164 v 0101 ~ 01127245 n 0000 ~ 01127379 n 0000 ~ 01127623 n 0000 ~ 01128137 n 0000 | the act of enforcing; ensuring observance of or obedience to -01127245 04 n 01 coercion 1 003 @ 01127019 n 0000 + 02504562 v 0101 ~ 00759500 n 0000 | the act of compelling by force of authority -01127379 04 n 03 execution 3 implementation 1 carrying_out 0 003 @ 01127019 n 0000 + 00486018 v 0205 + 01640855 v 0103 | the act of accomplishing some aim or executing some order; "the agency was created for the implementation of the policy" -01127623 04 n 02 imposition 2 infliction 0 008 @ 01127019 n 0000 ;c 13308999 n 0000 + 02306462 v 0102 + 00748282 v 0104 ~ 01127874 n 0000 ~ 01148283 n 0000 ~ 01148398 n 0000 ~ 01160170 n 0000 | the act of imposing something (as a tax or an embargo) -01127874 04 n 02 protection 3 trade_protection 0 002 @ 01127623 n 0000 + 01129710 v 0101 | the imposition of duties or quotas on imports in order to protect domestic industry against foreign competition; "he made trade protection a plank in the party platform" -01128137 04 n 01 law_enforcement 0 003 @ 01127019 n 0000 ;c 08441203 n 0000 ~ 01128266 n 0000 | ensuring obedience to the laws -01128266 04 n 01 vigilantism 0 001 @ 01128137 n 0000 | the actions of a vigilance committee in trying to enforce the laws -01128390 04 n 01 domination 0 005 @ 01123598 n 0000 + 02646931 v 0101 ~ 01128547 n 0000 ~ 01128655 n 0000 ~ 01128806 n 0000 | social control by dominating -01128547 04 n 01 bossism 0 001 @ 01128390 n 0000 | domination of a political organization by a party boss -01128655 04 n 02 mastery 0 subordination 0 003 @ 01128390 n 0000 + 00579712 v 0201 + 02539334 v 0102 | the act of mastering or subordinating someone -01128806 04 n 02 monopolization 0 monopolisation 0 003 @ 01128390 n 0000 + 02204242 v 0202 + 02204242 v 0101 | domination (of a market or commodity) to the exclusion of others -01128984 04 n 04 socialization 0 socialisation 0 acculturation 0 enculturation 0 009 @ 01123598 n 0000 + 03139749 a 0301 + 00159880 v 0301 + 02386845 v 0202 + 00406053 v 0202 + 02386845 v 0101 + 00406053 v 0101 ~ 01129363 n 0000 ~ 01129532 n 0000 | the adoption of the behavior patterns of the surrounding culture; "the socialization of children to the norms of their culture" -01129363 04 n 01 cultivation 1 001 @ 01128984 n 0000 | socialization through training and education to develop one's mind or manners; "her cultivation was remarkable" -01129532 04 n 08 breeding 1 bringing_up 0 fostering 0 fosterage 0 nurture 0 raising 1 rearing 0 upbringing 0 008 @ 01128984 n 0000 + 02539788 v 0701 + 01316127 a 0501 + 02539788 v 0504 + 00908351 v 0502 + 00908351 v 0401 + 02554422 v 0301 + 00908351 v 0301 | helping someone grow up to be an accepted member of the community; "they debated whether nature or nurture was more important" -01129920 04 n 03 duty 0 responsibility 0 obligation 0 018 @ 01123598 n 0000 + 02506546 v 0303 + 02506546 v 0302 + 01613047 a 0102 ~ 00584769 n 0000 ~ 00818466 n 0000 ~ 01130560 n 0000 ~ 01130735 n 0000 ~ 01130905 n 0000 ~ 01131004 n 0000 ~ 01131224 n 0000 ~ 01131330 n 0000 ~ 01131425 n 0000 ~ 01131515 n 0000 ~ 01132590 n 0000 ~ 01132709 n 0000 ~ 05892427 n 0000 ~ 05892651 n 0000 | the social force that binds you to the courses of action demanded by that force; "we must instill a sense of duty in our children"; "every right implies a responsibility; every opportunity, an obligation; every possession, a duty"- John D.Rockefeller Jr -01130560 04 n 01 moral_obligation 0 001 @ 01129920 n 0000 | an obligation arising out of considerations of right and wrong; "he did it out of a feeling of moral obligation" -01130735 04 n 01 noblesse_oblige 0 002 @ 01129920 n 0000 ;u 06964901 n 0000 | the obligation of those of high rank to be honorable and generous (often used ironically) -01130905 04 n 01 burden_of_proof 0 001 @ 01129920 n 0000 | the duty of proving a disputed charge -01131004 04 n 02 civic_duty 0 civic_responsibility 0 002 @ 01129920 n 0000 ~ 01131135 n 0000 | the responsibilities of a citizen -01131135 04 n 01 jury_duty 0 001 @ 01131004 n 0000 | the civic duty to serve on a jury -01131224 04 n 01 filial_duty 0 002 @ 01129920 n 0000 ~ 01132864 n 0000 | duty of a child to its parents -01131330 04 n 01 imperative 0 001 @ 01129920 n 0000 | some duty that is essential and urgent -01131425 04 n 01 incumbency 1 001 @ 01129920 n 0000 | a duty that is incumbent upon you -01131515 04 n 01 legal_duty 0 003 @ 01129920 n 0000 ;c 08441203 n 0000 ~ 01131656 n 0000 | acts which the law requires be done or forborne -01131656 04 n 01 fiduciary_duty 0 001 @ 01131515 n 0000 | the legal duty of a fiduciary to act in the best interests of the beneficiary -01131794 04 n 03 due_care 0 ordinary_care 0 reasonable_care 0 001 @ 00829378 n 0000 | the care that a reasonable man would exercise under the circumstances; the standard for determining legal duty -01131993 04 n 01 foster_care 0 001 @ 00829378 n 0000 | supervised care for delinquent or neglected children usually in an institution or substitute home -01132148 04 n 01 great_care 0 001 @ 00829378 n 0000 | more attention and consideration than is normally bestowed by prudent persons; "the pilot exercised great care in landing" -01132327 04 n 01 providence 0 002 @ 00829378 n 0000 + 01180363 a 0101 | the guardianship and control exercised by a deity; "divine providence" -01132472 04 n 01 slight_care 0 001 @ 00829378 n 0000 | such care as a careless or inattentive person would exercise -01132590 04 n 01 line_of_duty 0 001 @ 01129920 n 0000 | all that is normally required in some area of responsibility -01132709 04 n 01 white_man's_burden 0 001 @ 01129920 n 0000 | the supposed responsibility of the white race to provide care for their non-white subjects -01132864 04 n 02 obedience 2 respect 2 002 @ 01131224 n 0000 + 01612053 a 0101 | behavior intended to please your parents; "their children were never very strong on obedience"; "he went to law school out of respect for his father's wishes" -01133106 04 n 02 occupation 2 military_control 0 003 @ 01123598 n 0000 ;c 08199025 n 0000 + 01126360 v 0102 | the control of a country by military forces of a foreign power -01133281 04 n 02 management 0 direction 0 016 @ 01123598 n 0000 + 02443049 v 0104 + 02436349 v 0101 ~ 01133760 n 0000 ~ 01133933 n 0000 ~ 01134037 n 0000 ~ 01134244 n 0000 ~ 01134330 n 0000 ~ 01134479 n 0000 ~ 01134861 n 0000 ~ 01135529 n 0000 ~ 01135952 n 0000 ~ 01138670 n 0000 ~ 01140029 n 0000 ~ 01142519 n 0000 ~ 01144876 n 0000 | the act of managing something; "he was given overall management of the program"; "is the direction of the economy a function of government?" -01133760 04 n 01 conducting 1 003 @ 01133281 n 0000 + 01733213 v 0101 + 01732921 v 0101 | the direction of an orchestra or choir; "he does not use a baton for conducting" -01133933 04 n 01 database_management 0 001 @ 01133281 n 0000 | creation and maintenance of a database -01134037 04 n 01 finance 1 006 @ 01133281 n 0000 ;c 06150633 n 0000 + 02847894 a 0102 + 02217864 v 0101 + 02217266 v 0101 ~ 01100658 n 0000 | the management of money and credit and banking and investments -01134244 04 n 01 homemaking 0 001 @ 01133281 n 0000 | the management of a household -01134330 04 n 01 misconduct 1 002 @ 01133281 n 0000 + 02438861 v 0103 | bad or dishonest management by persons supposed to act on another's behalf -01134479 04 n 02 mismanagement 0 misdirection 0 003 @ 01133281 n 0000 + 02438861 v 0101 ~ 01134699 n 0000 | management that is careless or inefficient; "he accomplished little due to the mismanagement of his energies" -01134699 04 n 01 screwup 0 002 @ 01134479 n 0000 + 02527651 v 0109 | the complete mismanagement or mishandling of a situation; "a typical bureaucratic screwup" -01134861 04 n 02 treatment 1 handling 2 005 @ 01133281 n 0000 + 02436349 v 0204 + 00515154 v 0102 ~ 01135163 n 0000 ~ 01135372 n 0000 | the management of someone or something; "the handling of prisoners"; "the treatment of water sewage"; "the right to equal treatment in the criminal justice system" -01135163 04 n 01 bioremediation 0 002 @ 01134861 n 0000 ;c 01348530 n 0000 | the act of treating waste or pollutants by the use of microorganisms (as bacteria) that can break down the undesirable substances -01135372 04 n 01 dealing 1 003 @ 01134861 n 0000 + 02370987 v 0101 + 02377764 v 0101 | method or manner of conduct in relation to others; "honest dealing" -01135529 04 n 04 supervision 0 supervising 0 superintendence 0 oversight 1 006 @ 01133281 n 0000 + 02443049 v 0303 + 02443049 v 0202 + 02443049 v 0102 + 02163301 v 0102 ~ 01135795 n 0000 | management by overseeing the performance or operation of a person or group -01135795 04 n 01 invigilation 0 003 @ 01135529 n 0000 ;r 08860123 n 0000 + 02593354 v 0101 | keeping watch over examination candidates to prevent cheating -01135952 04 n 02 administration 0 disposal 2 008 @ 01133281 n 0000 ;c 01094725 n 0000 + 02431971 v 0101 ~ 01136265 n 0000 ~ 01136375 n 0000 ~ 01136519 n 0000 ~ 01136985 n 0000 ~ 01137455 n 0000 | a method of tending to or managing the affairs of a some group of people (especially the group's business affairs) -01136265 04 n 01 conducting 0 002 @ 01135952 n 0000 + 02445509 v 0101 | the way of administering a business -01136375 04 n 01 line_management 0 001 @ 01135952 n 0000 | administration of the activities contributing directly to an organization's output -01136519 04 n 02 organization 0 organisation 0 015 @ 01135952 n 0000 + 02448185 v 0203 + 02432530 v 0202 + 00710005 v 0205 + 00404642 v 0202 + 02448185 v 0102 + 02432530 v 0101 + 01651444 v 0101 + 00710005 v 0104 + 00404642 v 0101 ~ 01137597 n 0000 ~ 01137760 n 0000 ~ 01137987 n 0000 ~ 01138399 n 0000 ~ 01138547 n 0000 | the act of organizing a business or an activity related to a business; "he was brought in to supervise the organization of a new department" -01136985 04 n 01 running 2 003 @ 01135952 n 0000 + 02443849 v 0102 ~ 01137206 n 0000 | the act of administering or being in charge of something; "he has responsibility for the running of two companies at the same time" -01137206 04 n 01 administrivia 0 001 @ 01136985 n 0000 | the tiresome but essential details that must be taken care of and tasks that must be performed in running an organization; "he sets policy and leaves all the administrivia to his assistant" -01137455 04 n 01 polity 0 001 @ 01135952 n 0000 | shrewd or crafty management of public affairs; "we was innocent of stratagems and polity" -01137597 04 n 03 nonprofit_organization 0 nonprofit 0 not-for-profit 0 001 @ 01136519 n 0000 | an organization chartered for other than profit-making activities -01137760 04 n 02 rationalization 2 rationalisation 2 003 @ 01136519 n 0000 + 02269485 v 0202 + 02269485 v 0101 | the organization of a business according to scientific principles of management in order to increase efficiency -01137987 04 n 04 reorganization 0 reorganisation 0 shake-up 0 shakeup 0 005 @ 01136519 n 0000 + 02433123 v 0403 + 02433123 v 0303 + 02433381 v 0101 + 02433123 v 0101 | the imposition of a new organization; organizing differently (often involving extensive and drastic changes); "a committee was appointed to oversee the reorganization of the curriculum"; "top officials were forced out in the cabinet shakeup" -01138399 04 n 02 self-organization 0 self-organisation 0 001 @ 01136519 n 0000 | organizing yourself (especially organizing your own labor union) -01138547 04 n 01 syndication 0 002 @ 01136519 n 0000 + 02449011 v 0101 | organizing into or administering as a syndicate -01138670 04 n 03 authorization 0 authorisation 0 empowerment 0 011 @ 01133281 n 0000 + 02473981 v 0301 + 00803325 v 0202 + 02473981 v 0103 ~ 01139000 n 0000 ~ 01139194 n 0000 ~ 01139830 n 0000 ~ 01140471 n 0000 ~ 01140839 n 0000 ~ 01141366 n 0000 ~ 01141482 n 0000 | the act of conferring legality or sanction or formal warrant -01139000 04 n 01 sanction 1 005 @ 01138670 n 0000 + 02479154 v 0101 ~ 01139490 n 0000 ~ 01139636 n 0000 ~ 01139749 n 0000 | the act of final authorization; "it had the sanction of the church" -01139194 04 n 03 license 0 permission 0 permit 0 010 @ 01138670 n 0000 + 00802946 v 0302 + 00802318 v 0301 + 00802318 v 0201 + 02444662 v 0101 ~ 01141593 n 0000 ~ 01141729 n 0000 ~ 01141841 n 0000 ~ 01142014 n 0000 ~ 01142324 n 0000 | the act of giving a formal (usually written) authorization -01139490 04 n 01 benefit_of_clergy 0 001 @ 01139000 n 0000 | sanction by a religious rite; "they are living together without benefit of clergy" -01139636 04 n 01 name 0 001 @ 01139000 n 0000 | by the sanction or authority of; "halt in the name of the law" -01139749 04 n 01 nihil_obstat 0 001 @ 01139000 n 0000 | authoritative approval -01139830 04 n 02 certification 0 enfranchisement 0 005 @ 01138670 n 0000 ! 01140029 n 0201 + 02444662 v 0103 + 02447793 v 0101 ~ 01140193 n 0000 | the act of certifying or bestowing a franchise on -01140029 04 n 01 disenfranchisement 0 003 @ 01133281 n 0000 + 02476846 v 0101 ! 01139830 n 0102 | the act of withdrawing certification or terminating a franchise -01140193 04 n 01 accreditation 0 002 @ 01139830 n 0000 + 02475535 v 0101 | the act of granting credit or recognition (especially with respect to educational institution that maintains suitable standards); "a commission is responsible for the accreditation of medical schools" -01140471 04 n 02 commission 2 commissioning 0 004 @ 01138670 n 0000 + 02475261 v 0201 + 09943811 n 0101 ~ 01140658 n 0000 | the act of granting authority to undertake certain functions -01140658 04 n 01 mandate 0 003 @ 01140471 n 0000 ;c 06148148 n 0000 + 02395603 v 0101 | the commission that is given to a government and its policies through an electoral victory -01140839 04 n 05 delegating 0 delegation 0 relegating 0 relegation 0 deputation 0 010 @ 01138670 n 0000 + 02391803 v 0503 + 02394445 v 0501 + 02395395 v 0502 + 02589013 v 0401 + 02589013 v 0301 + 02395395 v 0201 + 02391803 v 0201 + 02395395 v 0101 ~ 01141160 n 0000 | authorizing subordinates to make certain decisions -01141160 04 n 02 devolution 0 devolvement 0 004 @ 01140839 n 0000 ;c 01124794 n 0000 + 02392385 v 0201 + 02392385 v 0101 | the delegation of authority (especially from a central to a regional government) -01141366 04 n 01 loan_approval 0 001 @ 01138670 n 0000 | formal authorization to get a loan (usually from a bank) -01141482 04 n 01 rubber_stamp 0 001 @ 01138670 n 0000 | routine authorization of an action without questions -01141593 04 n 01 clearance 0 002 @ 01139194 n 0000 + 00803325 v 0104 | permission to proceed; "the plane was given clearance to land" -01141729 04 n 02 conge 0 congee 0 001 @ 01139194 n 0000 | formal permission to depart; "he gave me his conge" -01141841 04 n 01 allowance 0 003 @ 01139194 n 0000 + 00802946 v 0101 ~ 01071090 n 0000 | the act of allowing; "He objected to the allowance of smoking in the dining room" -01142014 04 n 01 dispensation 1 003 @ 01139194 n 0000 + 02534307 v 0101 ~ 01142150 n 0000 | an exemption from some rule or obligation -01142150 04 n 01 variance 1 001 @ 01142014 n 0000 | an official dispensation to act contrary to a rule or regulation (typically a building regulation); "a zoning variance" -01142324 04 n 01 toleration 0 003 @ 01139194 n 0000 ;c 05946687 n 0000 + 02457585 v 0101 | official recognition of the right of individuals to hold dissenting opinions (especially in religion) -01142519 04 n 04 channelization 0 channelisation 0 canalization 1 canalisation 1 010 @ 01133281 n 0000 + 01933900 v 0403 + 01933900 v 0302 + 01931768 v 020a + 01435380 v 0206 + 01933900 v 0201 + 01435380 v 0204 + 01435380 v 0105 + 01933900 v 0101 + 01435380 v 0104 | management through specified channels of communication -01142843 04 n 02 canalization 0 canalisation 0 005 @ 00912960 n 0000 + 02336015 v 0203 + 02336015 v 0201 + 02336015 v 0102 + 02336015 v 0101 | the production of a canal or a conversion to canals -01143040 04 n 02 preparation 2 readying 0 011 @ 00407535 n 0000 + 00406243 v 0204 + 00406243 v 0102 ~ 00123652 n 0000 ~ 01143409 n 0000 ~ 01143580 n 0000 ~ 01143957 n 0000 ~ 01144046 n 0000 ~ 01144133 n 0000 ~ 01144555 n 0000 ~ 01144716 n 0000 | the activity of putting or setting in order in advance of some act or purpose; "preparations for the ceremony had begun" -01143409 04 n 01 deployment 0 004 @ 01143040 n 0000 + 01379600 v 0101 + 01149327 v 0101 ~ 01143760 n 0000 | the distribution of forces in preparation for battle or work -01143580 04 n 01 groundwork 0 001 @ 01143040 n 0000 | preliminary preparation as a basis or foundation; "we are prepared today because of groundwork that was done ten years ago" -01143760 04 n 02 redeployment 0 redisposition 0 003 @ 01143409 n 0000 + 02355109 v 0201 + 01379804 v 0101 | the withdrawal and redistribution of forces in an attempt to use them more effectively -01143957 04 n 01 makeready 0 001 @ 01143040 n 0000 | final preparation and adjustments -01144046 04 n 01 priming 1 001 @ 01143040 n 0000 | the act of making something ready -01144133 04 n 01 planning 0 004 @ 01143040 n 0000 + 00704690 v 0101 ~ 00851994 n 0000 ~ 01144355 n 0000 | an act of formulating a program for a definite course of action; "the planning was more fun than the trip itself" -01144355 04 n 03 scheduling 0 programming 1 programing 1 005 @ 01144133 n 0000 + 00795264 v 0301 + 00795264 v 0202 + 00794981 v 0101 + 00678282 v 0101 | setting an order and time for planned events -01144555 04 n 02 turnaround 2 turnround 0 001 @ 01143040 n 0000 | act or process of unloading and loading and servicing a vessel or aircraft for a return trip -01144716 04 n 03 warm-up 0 tune-up 1 prolusion 0 003 @ 01143040 n 0000 + 00027064 v 0102 + 00100905 v 0101 | exercising in preparation for strenuous activity -01144876 04 n 02 guidance 1 steering 1 003 @ 01133281 n 0000 + 01931768 v 0201 + 02439732 v 0101 | the act of guiding or showing the way -01145015 04 n 04 coup_d'etat 0 coup 0 putsch 0 takeover 2 004 @ 01080366 n 0000 + 02274482 v 0404 ~ 01145219 n 0000 ~i 01308008 n 0000 | a sudden and decisive change of government illegally or by force -01145219 04 n 01 countercoup 0 001 @ 01145015 n 0000 | a sudden and decisive overthrow of a government that gained power by a coup d'etat -01145359 04 n 01 restraint 0 011 @ 00803617 n 0000 + 02422663 v 0101 ~ 01145688 n 0000 ~ 01145905 n 0000 ~ 01146039 n 0000 ~ 01146288 n 0000 ~ 01146576 n 0000 ~ 01147451 n 0000 ~ 01147950 n 0000 ~ 01148491 n 0000 ~ 01148614 n 0000 | the act of controlling by restraining someone or something; "the unlawful restraint of trade" -01145688 04 n 02 collar 2 leash 0 001 @ 01145359 n 0000 | a figurative restraint; "asked for a collar on program trading in the stock market"; "kept a tight leash on his emotions"; "he's always gotten a long leash" -01145905 04 n 01 damper 0 002 @ 01145359 n 0000 + 00573085 v 0101 | a depressing restraint; "rain put a damper on our picnic plans" -01146039 04 n 03 bridle 0 check 1 curb 0 005 @ 01145359 n 0000 + 00236592 v 0303 + 02510337 v 0306 + 02510337 v 0205 + 02553697 v 0203 | the act of restraining power or action or limiting excess; "his common sense is a bridle to his quick temper" -01146288 04 n 03 immobilization 0 immobilisation 0 immobilizing 0 005 @ 01145359 n 0000 + 01207149 v 0303 + 00269140 v 0301 + 00269140 v 0202 + 00269140 v 0101 | the act of limiting movement or making incapable of movement; "the storm caused complete immobilization of the rescue team" -01146576 04 n 01 confinement 0 005 @ 01145359 n 0000 + 02495038 v 0101 ~ 01146768 n 0000 ~ 01147135 n 0000 ~ 01165692 n 0000 | the act of restraining of a person's liberty by confining them -01146768 04 n 02 imprisonment 0 internment 0 006 @ 01146576 n 0000 + 02495387 v 0201 + 02494356 v 0101 ~ 01146993 n 0000 ~ 01147222 n 0000 ~ 01147347 n 0000 | the act of confining someone in a prison (or as if in a prison) -01146993 04 n 01 lockdown 0 001 @ 01146768 n 0000 | the act of confining prisoners to their cells (usually to regain control during a riot) -01147135 04 n 01 house_arrest 0 001 @ 01146576 n 0000 | confinement to your own home -01147222 04 n 01 false_imprisonment 0 002 @ 01146768 n 0000 ;c 08441203 n 0000 | (law) confinement without legal authority -01147347 04 n 01 custody 1 001 @ 01146768 n 0000 | holding by the police; "the suspect is in custody" -01147451 04 n 01 containment 0 003 @ 01145359 n 0000 + 01131473 v 0105 ~ 01147676 n 0000 | the act of containing; keeping something from spreading; "the containment of the AIDS epidemic"; "the containment of the rebellion" -01147676 04 n 01 ring_containment 0 002 @ 01147451 n 0000 ;c 00759694 n 0000 | a strategy of defense in cases of bioterrorism; vaccination only of people exposed and others who are in contact with them; "ring containment is a proven method of halting a smallpox epidemic" -01147950 04 n 02 suppression 1 curtailment 0 003 @ 01145359 n 0000 + 02423762 v 0103 + 00462092 v 0101 | the act of withholding or withdrawing some book or writing from publication or circulation; "a suppression of the newspaper" -01148182 04 n 01 crackdown 0 002 @ 01079604 n 0000 + 00418921 v 0102 | severely repressive actions -01148283 04 n 01 regimentation 0 002 @ 01127623 n 0000 + 02442372 v 0101 | the imposition of order or discipline -01148398 04 n 01 reimposition 0 002 @ 01127623 n 0000 + 02307140 v 0101 | imposition again -01148491 04 n 01 restraint_of_trade 0 001 @ 01145359 n 0000 | any act that tends to prevent free competition in business -01148614 04 n 02 restriction 1 confinement 1 006 @ 01145359 n 0000 + 00233335 v 0101 ~ 01148904 n 0000 ~ 01149303 n 0000 ~ 01149480 n 0000 ~ 01149621 n 0000 | the act of keeping something within specified bounds (by force if necessary); "the restriction of the infection to a focal area" -01148904 04 n 01 classification 1 003 @ 01148614 n 0000 + 02508803 v 0101 ! 01149115 n 0101 | restriction imposed by the government on documents or weapons that are available only to certain authorized people -01149115 04 n 01 declassification 0 003 @ 00351638 n 0000 + 02509107 v 0101 ! 01148904 n 0101 | reduction or removal by the government of restrictions on a classified document or weapon -01149303 04 n 02 stipulation 0 specification 1 003 @ 01148614 n 0000 + 01018928 v 0204 + 01018928 v 0101 | a restriction that is insisted upon as a condition for an agreement -01149480 04 n 01 circumscription 0 004 @ 01148614 n 0000 + 01583656 v 0101 + 01583494 v 0101 + 00235368 v 0102 | the act of circumscribing -01149621 04 n 01 constraint 0 002 @ 01148614 n 0000 ~ 01149793 n 0000 | the act of constraining; the threat or use of force to control the thoughts or behavior of others -01149793 04 n 01 swaddling_clothes 0 002 @ 01149621 n 0000 ;u 06295235 n 0000 | restrictions placed on the immature -01149911 04 n 01 constriction 0 006 @ 00356790 n 0000 + 01387786 v 0102 ~ 00226107 n 0000 ~ 00226319 n 0000 ~ 00227264 n 0000 ~ 01150096 n 0000 | the action or process of compressing -01150096 04 n 01 vasoconstriction 0 001 @ 01149911 n 0000 | decrease in the diameter of blood vessels -01150200 04 n 02 privation 0 deprivation 0 006 @ 01123598 n 0000 + 02314275 v 0201 + 02313250 v 0201 + 00172732 v 0201 ~ 01150467 n 0000 ~ 01150662 n 0000 | act of depriving someone of food or money or rights; "nutritional privation"; "deprivation of civil rights" -01150467 04 n 03 pauperization 0 pauperisation 0 impoverishment 0 005 @ 01150200 n 0000 + 02317661 v 0301 + 00172732 v 0302 + 02317970 v 0203 + 02317970 v 0102 | the act of making someone poor -01150662 04 n 02 starvation 0 starving 0 003 @ 01150200 n 0000 + 01187740 v 0201 + 01187740 v 0101 | the act of depriving of food or subjecting to famine; "the besiegers used starvation to induce surrender"; "they were charged with the starvation of children in their care" -01150938 04 n 02 appeasement 0 calming 0 003 @ 01123598 n 0000 ~ 01151097 n 0000 ~ 01151407 n 0000 | the act of appeasing (as by acceding to the demands of) -01151097 04 n 02 pacification 0 mollification 0 004 @ 01150938 n 0000 + 01765392 v 0206 + 00294884 v 0203 + 01765392 v 0101 | the act of appeasing someone or causing someone to be more favorably inclined; "a wonderful skill in the pacification of crying infants"; "his unsuccessful mollification of the mob" -01151407 04 n 03 placation 0 conciliation 0 propitiation 0 004 @ 01150938 n 0000 + 00765213 v 0301 + 01765392 v 0203 + 01765392 v 0107 | the act of placating and overcoming distrust and animosity -01151605 04 n 02 internationalization 0 internationalisation 0 003 @ 01080366 n 0000 + 02441686 v 0202 + 02441686 v 0101 | the act of bringing something under international control -01151788 04 n 04 nationalization 0 nationalisation 0 communization 2 communisation 2 005 @ 01123598 n 0000 + 00408852 v 0301 + 00411547 v 0202 + 00411547 v 0101 ! 01152033 n 0101 | changing something from private to state ownership or control -01152033 04 n 04 denationalization 0 denationalisation 0 privatization 0 privatisation 0 006 @ 01123598 n 0000 + 00412048 v 0402 + 00412048 v 0301 + 00411792 v 0202 + 00411792 v 0101 ! 01151788 n 0101 | changing something from state to private ownership or control -01152300 04 n 02 nationalization 1 nationalisation 1 003 @ 00191142 n 0000 + 00578295 v 0202 + 00578295 v 0101 | the action of rendering national in character -01152461 04 n 02 nationalization 2 nationalisation 2 001 @ 01080366 n 0000 | the action of forming or becoming a nation -01152583 04 n 02 detribalization 1 detribalisation 1 003 @ 01123598 n 0000 + 00160086 v 0202 + 00160086 v 0101 | the act of causing tribal people to abandon their customs and adopt urban ways of living -01152787 04 n 02 collectivization 0 collectivisation 0 003 @ 00237078 n 0000 + 02433767 v 0202 + 02433767 v 0101 | the organization of a nation or economy on the basis of collectivism -01152973 04 n 02 communization 0 communisation 0 003 @ 00237078 n 0000 + 00409281 v 0202 + 00409281 v 0101 | the organization of a nation of the basis of communism -01153139 04 n 02 communization 1 communisation 1 002 @ 00191142 n 0000 + 00408852 v 0202 | a change from private property to public property owned by the community -01153305 04 n 01 federation 0 002 @ 00237078 n 0000 + 00369194 v 0101 | the act of constituting a political unity out of a number of separate states or colonies or provinces so that each member retains the management of its internal affairs -01153548 04 n 03 discrimination 0 favoritism 0 favouritism 0 010 @ 01123598 n 0000 + 02512305 v 0101 ~ 01154237 n 0000 ~ 01154373 n 0000 ~ 01154487 n 0000 ~ 01154661 n 0000 ~ 01154772 n 0000 ~ 01154900 n 0000 ~ 01155044 n 0000 ~ 01155893 n 0000 | unfair treatment of a person or group on the basis of prejudice -01153861 04 n 01 patronage 1 004 @ 01123598 n 0000 ;c 06148148 n 0000 + 01185011 v 0101 ~ 01154083 n 0000 | (politics) granting favors or giving contracts or making appointments to office in return for political support -01154083 04 n 01 nomenklatura 0 001 @ 01153861 n 0000 | the system of patronage in communist countries; controlled by committees in the Communist Party -01154237 04 n 04 ableism 0 ablism 0 able-bodiedism 0 able-bodism 0 001 @ 01153548 n 0000 | discrimination in favor of the able-bodied -01154373 04 n 02 ageism 0 agism 0 001 @ 01153548 n 0000 | discrimination against middle-aged and elderly people -01154487 04 n 01 cronyism 0 001 @ 01153548 n 0000 | favoritism shown to friends and associates (as by appointing them to positions without regard for their qualifications) -01154661 04 n 02 fattism 0 fatism 0 001 @ 01153548 n 0000 | discrimination against people who are overweight -01154772 04 n 01 heterosexism 0 001 @ 01153548 n 0000 | discrimination in favor of heterosexual and against homosexual people -01154900 04 n 01 nepotism 0 001 @ 01153548 n 0000 | favoritism shown to relatives or close friends by those in power (as by giving them jobs) -01155044 04 n 03 racism 0 racialism 0 racial_discrimination 0 004 @ 01153548 n 0000 + 10502950 n 0202 + 10502950 n 0101 ~ 01155253 n 0000 | discriminatory or abusive behavior towards members of another race -01155253 04 n 01 racial_profiling 0 001 @ 01155044 n 0000 | a form of racism consisting of the (alleged) policy of policemen who stop and search vehicles driven by persons belonging to particular racial groups -01155465 04 n 02 secularization 1 secularisation 1 003 @ 00191142 n 0000 + 00136044 v 0202 + 00136044 v 0101 | the activity of changing something (art or education or society or morality etc.) so it is no longer under the control or influence of religion -01155722 04 n 01 rollover 0 002 @ 00191142 n 0000 + 02271490 v 0101 | the act of changing the institution that invests your pension plan without incurring a tax penalty -01155893 04 n 01 sexism 0 004 @ 01153548 n 0000 + 09912431 n 0102 ~ 01156070 n 0000 ~ 01156262 n 0000 | discriminatory or abusive behavior towards members of the opposite sex -01156070 04 n 03 male_chauvinism 0 chauvinism 1 antifeminism 0 003 @ 01155893 n 0000 + 09912243 n 0301 + 09912075 n 0201 | activity indicative of belief in the superiority of men over women -01156262 04 n 01 sexual_discrimination 0 001 @ 01155893 n 0000 | discrimination (usually in employment) that excludes one sex (usually women) to the benefit of the other sex -01156438 04 n 04 mobilization 1 mobilisation 1 militarization 0 militarisation 0 015 @ 01123598 n 0000 + 01098869 v 0402 + 00578116 v 0402 + 01098869 v 0301 + 00578116 v 0301 + 01097960 v 0203 + 01088381 v 0202 + 00270215 v 0202 + 01097960 v 0102 + 01088381 v 0101 + 00270215 v 0101 ! 01158190 n 0101 ~ 01156899 n 0000 ~ 01157850 n 0000 ~ 01158543 n 0000 | act of assembling and putting into readiness for war or other emergency: "mobilization of the troops" -01156899 04 n 03 arming 0 armament 0 equipping 0 007 @ 01156438 n 0000 + 02339413 v 0301 + 01087197 v 0201 ! 01157557 n 0202 ! 01157557 n 0101 ~ 01157138 n 0000 ~ 01157384 n 0000 | the act of equiping with weapons in preparation for war -01157138 04 n 01 outfitting 0 003 @ 01156899 n 0000 + 02339413 v 0104 ~ 01157275 n 0000 | the act of renovating and fitting out a ship -01157275 04 n 01 refit 0 001 @ 01157138 n 0000 | outfitting a ship again (by repairing or replacing parts) -01157384 04 n 01 rearmament 0 003 @ 01156899 n 0000 + 02335078 v 0101 + 01087559 v 0101 | the act of arming again; "he opposed the rearmament of Japan after World War II" -01157557 04 n 02 disarming 0 disarmament 0 008 @ 01158190 n 0000 + 01088005 v 0201 + 01087835 v 0201 ! 01156899 n 0202 + 01897948 a 0101 + 01088005 v 0101 + 01087835 v 0101 ! 01156899 n 0101 | act of reducing or depriving of arms; "the disarmament of the aggressor nations must be complete" -01157850 04 n 04 conscription 0 muster 0 draft 3 selective_service 0 006 @ 01156438 n 0000 ;c 08199025 n 0000 + 01097500 v 0302 + 00793271 v 0201 + 01098706 v 0101 ~ 01158064 n 0000 | compulsory military service -01158064 04 n 02 levy 1 levy_en_masse 0 002 @ 01157850 n 0000 + 01098452 v 0102 | the act of drafting into military service -01158190 04 n 02 demobilization 0 demobilisation 0 007 @ 01123598 n 0000 + 01098206 v 0203 + 01088192 v 0202 + 01098206 v 0101 + 01088192 v 0101 ! 01156438 n 0101 ~ 01157557 n 0000 | act of changing from a war basis to a peace basis including disbanding or discharging troops; "demobilization of factories"; "immediate demobilization of the reserves" -01158543 04 n 02 remilitarization 0 remilitarisation 0 003 @ 01156438 n 0000 + 01099220 v 0202 + 01099220 v 0101 | the act of militarizing again -01158690 04 n 04 standardization 1 standardisation 1 normalization 0 normalisation 0 007 @ 01123598 n 0000 + 00468236 v 0402 + 00468236 v 0301 + 00467717 v 0202 + 00682436 v 0101 ~ 01159025 n 0000 ~ 01159776 n 0000 | the imposition of standards or regulations; "a committee was appointed to recommend terminological standardization" -01159025 04 n 02 stabilization 0 stabilisation 0 007 @ 01158690 n 0000 + 00270826 v 0202 + 00271946 v 0202 ! 01159461 n 0202 + 00270826 v 0101 ! 01159461 n 0101 ~ 01265632 n 0000 | the act of stabilizing something or making it more stable; "he worked for price stabilization for farm products"; "wage stabilization is necessary for industrial peace"; "stabilization means that the product can be handled under atmospheric conditions" -01159461 04 n 02 destabilization 0 destabilisation 0 008 @ 00037396 n 0000 ;c 01124794 n 0000 + 00272177 v 0202 + 00271711 v 0202 ! 01159025 n 0202 + 00272177 v 0101 + 00271711 v 0101 ! 01159025 n 0101 | the action of destabilizing; making something less stable (especially of a government or country or economy) -01159776 04 n 02 stylization 0 stylisation 0 004 @ 01158690 n 0000 + 01687569 v 0202 + 01687569 v 0101 ~ 01159964 n 0000 | the act of stylizing; causing to conform to a particular style -01159964 04 n 02 conventionalization 0 conventionalisation 0 004 @ 01159776 n 0000 + 00527367 v 0202 + 01687569 v 0103 + 00527367 v 0101 | the act of conventionalizing; conforming to a conventional style -01160170 04 n 01 taxation 0 002 @ 01127623 n 0000 + 02307547 v 0101 | the imposition of taxes; the practice of the government in levying taxes on the subjects of a state -01160342 04 n 04 punishment 0 penalty 0 penalization 0 penalisation 0 016 @ 01123598 n 0000 + 02499629 v 0403 + 02499629 v 0302 + 02499629 v 0203 + 02499629 v 0101 ~ 01161017 n 0000 ~ 01161161 n 0000 ~ 01161411 n 0000 ~ 01161635 n 0000 ~ 01161821 n 0000 ~ 01162062 n 0000 ~ 01162376 n 0000 ~ 01162529 n 0000 ~ 01162672 n 0000 ~ 01162928 n 0000 ~ 01165537 n 0000 | the act of punishing -01160729 04 n 07 beating 0 thrashing 0 licking 0 drubbing 0 lacing 0 trouncing 1 whacking 0 007 @ 01161161 n 0000 + 01415807 v 0701 + 01411085 v 0608 + 01416193 v 0201 + 01397210 v 0101 ~ 01163047 n 0000 ~ 01163316 n 0000 | the act of inflicting corporal punishment with repeated blows -01161017 04 n 02 castigation 0 chastisement 0 004 @ 01160342 n 0000 + 00824292 v 0201 + 02500144 v 0101 + 00824292 v 0102 | verbal punishment -01161161 04 n 01 corporal_punishment 0 007 @ 01160342 n 0000 ~ 01160729 n 0000 ~ 01163586 n 0000 ~ 01163779 n 0000 ~ 01164063 n 0000 ~ 01164275 n 0000 ~ 01164394 n 0000 | the infliction of physical injury on someone convicted of committing a crime -01161411 04 n 01 cruel_and_unusual_punishment 0 001 @ 01160342 n 0000 | punishment prohibited by the 8th amendment to the U.S. Constitution; includes torture or degradation or punishment too severe for the crime committed -01161635 04 n 01 detention 0 002 @ 01160342 n 0000 + 02495038 v 0102 | a punishment in which a student must stay at school after others have gone home; "the detention of tardy pupils" -01161821 04 n 02 discipline 1 correction 2 006 @ 01160342 n 0000 + 01902703 a 0201 + 02553428 v 0202 + 03061455 a 0101 + 02553428 v 0101 ~ 01162784 n 0000 | the act of punishing; "the offenders deserved the harsh discipline they received" -01162062 04 n 01 economic_strangulation 0 001 @ 01160342 n 0000 | punishment of a group by cutting off commercial dealings with them; "the economic strangulation of the Jews by the Nazi Party" -01162257 04 n 01 self-flagellation 0 002 @ 01163047 n 0000 @ 01162672 n 0000 | self-punishment inflicted by whipping -01162376 04 n 01 imprisonment 1 003 @ 01160342 n 0000 ;c 08441203 n 0000 + 02494356 v 0101 | putting someone in prison or in jail as lawful punishment -01162529 04 n 02 music 2 medicine 2 001 @ 01160342 n 0000 | punishment for one's actions; "you have to face the music"; "take your medicine" -01162672 04 n 01 self-punishment 0 002 @ 01160342 n 0000 ~ 01162257 n 0000 | punishment inflicted on yourself -01162784 04 n 01 spanking 0 002 @ 01161821 n 0000 + 01420928 v 0101 | the act of slapping on the buttocks; "he gave the brat a good spanking" -01162928 04 n 01 stick 0 001 @ 01160342 n 0000 | threat of a penalty; "the policy so far is all stick and no carrot" -01163047 04 n 05 whipping 0 tanning 1 flogging 0 lashing 0 flagellation 0 007 @ 01160729 n 0000 + 01398443 v 0501 + 01412204 v 0302 + 01411085 v 0301 + 01411085 v 0103 ~ 01162257 n 0000 ~ 01163429 n 0000 | beating with a whip or strap or rope as a form of punishment -01163316 04 n 01 flagellation 1 001 @ 01160729 n 0000 | beating as a source of erotic or religious stimulation -01163429 04 n 01 horsewhipping 0 002 @ 01163047 n 0000 + 01398772 v 0101 | the act of whipping with a horsewhip; "that villain needs a good horsewhipping" -01163586 04 n 01 electric_shock 1 002 @ 01161161 n 0000 @ 00421437 n 0000 | the use of electricity to administer punishment or torture; "they used cattle prods to administer electric shocks" -01163779 04 n 04 execution 0 executing 0 capital_punishment 0 death_penalty 0 009 @ 01161161 n 0000 + 02483267 v 0201 + 10069427 n 0101 + 02483267 v 0101 ~ 01164618 n 0000 ~ 01164874 n 0000 ~ 01165112 n 0000 ~ 01165224 n 0000 ~ 01165337 n 0000 | putting a condemned person to death -01164063 04 n 02 gauntlet 0 gantlet 0 001 @ 01161161 n 0000 | a form of punishment in which a person is forced to run between two lines of men facing each other and armed with clubs or whips to beat the victim -01164275 04 n 01 kick_in_the_butt 0 001 @ 01161161 n 0000 | punishment inflicted by kicking the victim in the behind -01164394 04 n 02 stoning 0 lapidation 0 004 @ 01161161 n 0000 + 01232554 v 0201 + 01323518 v 0202 + 01323518 v 0101 | the act of pelting with stones; punishment inflicted by throwing stones at the victim (even unto death) -01164618 04 n 02 burning 2 burning_at_the_stake 0 002 @ 01163779 n 0000 ~ 01164730 n 0000 | execution by fire -01164730 04 n 01 auto-da-fe 0 002 @ 01164618 n 0000 ;r 09023321 n 0000 | the burning to death of heretics (as during the Spanish Inquisition) -01164874 04 n 01 hanging 2 002 @ 01163779 n 0000 + 02485451 v 0101 | a form of capital punishment; victim is suspended by the neck from a gallows or gibbet until dead; "in those days the hanging of criminals was a public entertainment" -01165112 04 n 02 electrocution 1 burning 1 002 @ 01163779 n 0000 + 02484957 v 0101 | execution by electricity -01165224 04 n 02 decapitation 1 beheading 1 001 @ 01163779 n 0000 | execution by cutting off the victim's head -01165337 04 n 01 crucifixion 0 002 @ 01163779 n 0000 + 02484049 v 0101 | the act of executing by a method widespread in the ancient world; the victim's hands and feet are bound or nailed to a cross -01165537 04 n 03 penance 0 self-mortification 0 self-abasement 0 001 @ 01160342 n 0000 | voluntary self-punishment in order to atone for some wrongdoing -01165692 04 n 03 commitment 1 committal 0 consignment 0 004 @ 01146576 n 0000 + 02348324 v 0301 + 02348568 v 0201 + 02348568 v 0101 | the official act of consigning a person to confinement (as in a prison or mental hospital) -01165919 04 n 02 commutation 1 re-sentencing 0 003 @ 01071411 n 0000 ;c 08441203 n 0000 + 00161987 v 0101 | (law) the reduction in severity of a punishment imposed by law -01166092 04 n 01 corrections 0 001 @ 01123598 n 0000 | the social control of offenders through a system of imprisonment and rehabilitation and probation and parole -01166258 04 n 02 exchange 2 interchange 0 003 @ 01080366 n 0000 + 00161987 v 0103 ~ 01166760 n 0000 | the act of changing one thing for another thing; "Adam was promised immortality in exchange for his disobedience"; "there was an interchange of prisoners" -01166517 04 n 02 rally 0 exchange 6 005 @ 01080366 n 0000 ;c 00480508 n 0000 ;c 00499263 n 0000 ;c 00482298 n 0000 ;c 00479887 n 0000 | (sports) an unbroken sequence of several successive strokes; "after a short rally Connors won the point" -01166760 04 n 02 tradeoff 0 trade-off 0 001 @ 01166258 n 0000 | an exchange that occurs as a compromise; "I faced a tradeoff between eating and buying my medicine" -01166926 04 n 02 submission 1 compliance 1 006 @ 01080366 n 0000 + 01118081 v 0101 + 00878348 v 0101 + 00669762 v 0102 ~ 01167146 n 0000 ~ 01167548 n 0000 | the act of submitting; usually surrendering power to another -01167146 04 n 02 obedience 0 obeisance 0 006 @ 01166926 n 0000 + 02542795 v 0201 + 01612053 a 0101 + 02542795 v 0101 ! 01179707 n 0101 ~ 01167385 n 0000 | the act of obeying; dutiful or submissive behavior with respect to another person -01167385 04 n 01 truckling 0 002 @ 01167146 n 0000 + 00880978 v 0103 | the act of obeying meanly (especially obeying in a humble manner or for unworthy reasons) -01167548 04 n 01 prostration 1 003 @ 01166926 n 0000 + 02063610 v 0101 + 00558219 v 0101 | abject submission; the emotional equivalent of prostrating your body -01167710 04 n 01 strife 0 003 @ 00958896 n 0000 ~ 01168199 n 0000 ~ 01170175 n 0000 | bitter conflict; heated often violent dissension -01167847 04 n 01 tug-of-war 0 001 @ 00958896 n 0000 | any hard struggle between equally matched groups -01167952 04 n 01 turf_war 0 001 @ 00958896 n 0000 | a bitter struggle for territory or power or control or rights; "a turf war erupted between street gangs"; "the president's resignation was the result of a turf war with the board of directors" -01168199 04 n 02 countercurrent 0 crosscurrent 0 001 @ 01167710 n 0000 | actions counter to the main group activity; "political crosscurrents disrupted the conference" -01168369 04 n 01 direct_action 0 005 @ 01177033 n 0000 ~ 01179927 n 0000 ~ 01242164 n 0000 ~ 01242716 n 0000 ~ 01243453 n 0000 | a protest action by labor or minority groups to obtain their demands -01168569 04 n 03 competition 0 contention 0 rivalry 0 006 @ 01080366 n 0000 + 01122194 v 0301 + 01072262 v 0203 + 01072262 v 0101 ! 01202904 n 0101 ~ 01168961 n 0000 | the act of competing as for profit or a prize; "the teams were in fierce contention for first place" -01168840 04 n 01 battle_of_wits 0 001 @ 01168961 n 0000 | a contest in which intelligence rather than violence is used -01168961 04 n 01 contest 0 005 @ 01168569 n 0000 + 00869596 v 0101 ~ 01168840 n 0000 ~ 01169112 n 0000 ~ 01169200 n 0000 | a struggle between rivals -01169112 04 n 01 bidding_contest 0 001 @ 01168961 n 0000 | a series of competing bids -01169200 04 n 01 popularity_contest 0 001 @ 01168961 n 0000 | competition (real or figurative) for popular support -01169317 04 n 01 resistance 0 011 @ 01080366 n 0000 + 00695938 a 0102 + 02583545 v 0101 ~ 01169744 n 0000 ~ 01170047 n 0000 ~ 01170320 n 0000 ~ 01170813 n 0000 ~ 01176931 n 0000 ~ 01177033 n 0000 ~ 01177327 n 0000 ~ 01179393 n 0000 | group action in opposition to those in power -01169598 04 n 01 nonresistance 0 002 @ 01080366 n 0000 + 00697089 a 0101 | group refusal to resort to violence even in defense against violence -01169744 04 n 02 confrontation 0 opposition 0 005 @ 01169317 n 0000 + 01091427 v 0202 + 02742638 v 0101 + 01078783 v 0101 ~ 00621198 n 0000 | the act of hostile groups opposing each other; "the government was not ready for a confrontation with the unions"; "the invaders encountered stiff opposition" -01170047 04 n 01 sales_resistance 0 001 @ 01169317 n 0000 | resistance by potential customers to aggressive selling practices -01170175 04 n 02 discord 1 discordance 0 003 @ 01167710 n 0000 + 00553899 a 0201 + 02718543 v 0203 | strife resulting from a lack of agreement -01170320 04 n 01 defiance 1 002 @ 01169317 n 0000 + 00695523 a 0101 | a defiant act -01170406 04 n 01 road_rage 0 001 @ 00965404 n 0000 | violence exhibited by drivers in traffic -01170502 04 n 02 riot 0 public_violence 0 004 @ 00965404 n 0000 + 01923720 a 0102 + 02584661 v 0101 ~ 01170666 n 0000 | a public act of violence by an unruly mob -01170666 04 n 01 race_riot 0 001 @ 01170502 n 0000 | a riot caused by hatred for one another of members of different races in the same community -01170813 04 n 02 dispute 0 contravention 0 004 @ 01169317 n 0000 + 02567147 v 0204 + 00603804 a 0103 + 00775156 v 0102 | coming into conflict with -01170962 04 n 04 fight 2 fighting 0 combat 1 scrap 0 025 @ 00958896 n 0000 + 00084661 a 0401 + 00775156 v 0403 + 01092366 v 0302 + 01090335 v 0202 + 01090335 v 0102 ~ 00124617 n 0000 ~ 00959376 n 0000 ~ 00959537 n 0000 ~ 00971802 n 0000 ~ 01171644 n 0000 ~ 01172031 n 0000 ~ 01172173 n 0000 ~ 01172252 n 0000 ~ 01172441 n 0000 ~ 01172784 n 0000 %p 01173038 n 0000 ~ 01173826 n 0000 ~ 01176115 n 0000 ~ 01176219 n 0000 ~ 01176335 n 0000 ~ 01176431 n 0000 ~ 01176540 n 0000 ~ 01176649 n 0000 ~ 01176757 n 0000 | the act of fighting; any contest or struggle; "a fight broke out at the hockey game"; "there was fighting in the streets"; "the unhappy couple got into a terrible scrap" -01171644 04 n 01 fencing 0 012 @ 01170962 n 0000 @ 00041468 n 0000 + 01146918 v 0101 -c 01174251 n 0000 -c 01174495 n 0000 -c 01174645 n 0000 -c 01174825 n 0000 -c 03292475 n 0000 -c 03375575 n 0000 -c 03948347 n 0000 -c 04121511 n 0000 -c 02062503 v 0000 | the art or sport of fighting with swords (especially the use of foils or epees or sabres to score points under a set of rules) -01172031 04 n 01 in-fighting 1 001 @ 01170962 n 0000 | conflict between members of the same organization (usually concealed from outsiders) -01172173 04 n 01 set-to 0 001 @ 01170962 n 0000 | a brief but vigorous fight -01172252 04 n 02 shock 1 impact 1 002 @ 01170962 n 0000 + 01561713 v 0101 | the violent interaction of individuals or groups entering into combat; "the armies met in the shock of battle" -01172441 04 n 05 hassle 0 scuffle 0 tussle 0 dogfight 2 rough-and-tumble 0 003 @ 01170962 n 0000 + 01504480 v 0302 + 01504480 v 0201 | disorderly fighting -01172598 04 n 01 aggro 0 003 @ 01221790 n 0000 ;u 07075172 n 0000 ;r 08860123 n 0000 | (informal British usage) aggravation or aggression; "I skipped it because it was too much aggro" -01172784 04 n 02 duel 0 affaire_d'honneur 0 004 @ 01170962 n 0000 + 10038929 n 0104 + 10038929 n 0103 + 01121948 v 0101 | a prearranged fight with deadly weapons by two people (accompanied by seconds) in order to settle a quarrel over a point of honor -01173038 04 n 01 blow 1 024 @ 00349369 n 0000 #p 01170962 n 0000 ~ 00133160 n 0000 ~ 00133234 n 0000 ~ 00133338 n 0000 ~ 00133567 n 0000 ~ 00133668 n 0000 ~ 00133875 n 0000 ~ 00133981 n 0000 ~ 00134099 n 0000 ~ 00134391 n 0000 ~ 00134574 n 0000 ~ 00134780 n 0000 ~ 00135148 n 0000 ~ 00136329 n 0000 ~ 01173569 n 0000 ~ 01173660 n 0000 ~ 01173965 n 0000 ~ 01174988 n 0000 ~ 01175099 n 0000 ~ 01175195 n 0000 ~ 01175316 n 0000 ~ 01175633 n 0000 ~ 01176031 n 0000 | a powerful stroke with the fist or a weapon; "a blow on the head" -01173569 04 n 01 counterblow 0 001 @ 01173038 n 0000 | a return blow; a retaliatory blow -01173660 04 n 01 swing 6 004 @ 01173038 n 0000 + 01152040 v 0101 + 01593763 v 0101 + 02087745 v 0101 | a sweeping blow or stroke; "he took a wild swing at my head" -01173826 04 n 03 fistfight 0 fisticuffs 1 slugfest 0 003 @ 01170962 n 0000 + 01082153 v 0101 ~ 01177583 n 0000 | a fight with bare fists -01173965 04 n 03 stab 0 thrust 1 knife_thrust 0 007 @ 01173038 n 0000 + 01441510 v 0202 + 02062212 v 0204 + 01230350 v 0101 + 01231652 v 0102 ~ 01174251 n 0000 ~ 01174645 n 0000 | a strong blow with a knife or other sharp pointed instrument; "one strong stab to the heart killed him" -01174251 04 n 03 lunge 1 straight_thrust 0 passado 0 003 @ 01173965 n 0000 ;c 01171644 n 0000 %p 01174645 n 0000 | (fencing) an attacking thrust made with one foot forward and the back leg straight and with the sword arm outstretched forward -01174495 04 n 01 parry 1 002 @ 00562398 n 0000 ;c 01171644 n 0000 | (fencing) blocking a lunge or deflecting it with a circular motion of the sword -01174645 04 n 01 remise 0 003 @ 01173965 n 0000 #p 01174251 n 0000 ;c 01171644 n 0000 | (fencing) a second thrust made on the same lunge (as when your opponent fails to riposte) -01174825 04 n 01 riposte 0 002 @ 00978173 n 0000 ;c 01171644 n 0000 | (fencing) a counterattack made immediately after successfully parrying the opponents lunge -01174988 04 n 01 stinger 0 003 @ 01173038 n 0000 + 02120451 v 0102 + 02123424 v 0102 | a sharp stinging blow -01175099 04 n 01 thump 0 002 @ 01173038 n 0000 + 01414626 v 0101 | a heavy blow with the hand -01175195 04 n 01 uppercut 0 001 @ 01173038 n 0000 | a swinging blow directed upward (especially at an opponent's chin) -01175316 04 n 04 hammer 0 pound 0 hammering 0 pounding 0 006 @ 01173038 n 0000 + 01414626 v 0402 + 01416539 v 0301 + 00331514 v 0201 + 01575146 v 0203 + 01414626 v 0202 | the act of pounding (delivering repeated heavy blows); "the sudden hammer of fists caught him off guard"; "the pounding of feet on the hallway" -01175633 04 n 01 shot 9 002 @ 01173038 n 0000 ~ 01175831 n 0000 | a blow hard enough to cause injury; "he is still recovering from a shot to his leg"; "I caught him with a solid shot to the chin" -01175831 04 n 01 cheap_shot 0 001 @ 01175633 n 0000 | an illegal and unsportsmanlike act of unnecessary violence; "he called a penalty on them when the lineman took a cheap shot at the quarterback" -01176031 04 n 01 wallop 0 002 @ 01173038 n 0000 + 01415807 v 0104 | a severe blow -01176115 04 n 02 battering 0 banging 0 001 @ 01170962 n 0000 | the act of subjecting to strong attack -01176219 04 n 02 beating 1 whipping 2 002 @ 01170962 n 0000 + 01101913 v 0101 | the act of overcoming or outdoing -01176335 04 n 04 affray 1 disturbance 1 fray 0 ruffle 0 001 @ 01170962 n 0000 | a noisy fight -01176431 04 n 02 brawl 0 free-for-all 0 002 @ 01170962 n 0000 + 00774344 v 0101 | a noisy fight in a crowd -01176540 04 n 03 knife_fight 0 snickersnee 0 cut-and-thrust 0 001 @ 01170962 n 0000 | fighting with knives -01176649 04 n 02 rumble 0 gang_fight 0 001 @ 01170962 n 0000 | a fight between rival gangs of adolescents -01176757 04 n 01 single_combat 0 001 @ 01170962 n 0000 | a fight between two people; "in all armies there were officers who needed to prove their bravery by single combat" -01176931 04 n 01 obstructionism 0 002 @ 01169317 n 0000 + 10349243 n 0101 | deliberate interference -01177033 04 n 03 protest 0 objection 1 dissent 1 009 @ 01169317 n 0000 + 02521410 v 0303 + 02753865 v 0201 + 00807461 v 0201 + 02521410 v 0101 ~ 00206130 n 0000 ~ 01168369 n 0000 ~ 01177703 n 0000 ~ 01178195 n 0000 | the act of protesting; a public (often organized) manifestation of dissent -01177327 04 n 01 rebellion 1 004 @ 01169317 n 0000 + 02331088 a 0101 + 00589960 a 0104 + 02583379 v 0101 | refusal to accept some authority or code or convention; "each generation must have its own rebellion"; "his body was in rebellion against fatigue" -01177583 04 n 01 punch-up 0 002 @ 01173826 n 0000 ;r 08860123 n 0000 | a fistfight; "the quarrel ended in a punch-up" -01177703 04 n 02 demonstration 1 manifestation 0 006 @ 01177033 n 0000 ;c 06148148 n 0000 + 02521816 v 0101 ~i 01178415 n 0000 ~ 01179004 n 0000 ~ 01179167 n 0000 | a public display of group feelings (usually of a political nature); "there were violent demonstrations against the war" -01177990 04 n 01 counterdemonstration 0 001 @ 00521562 n 0000 | a demonstration held in opposition to another demonstration; "supporters of the president organized a counterdemonstration in his support" -01178195 04 n 01 walkout 1 002 @ 01177033 n 0000 + 02010400 v 0101 | the act of walking out (of a meeting or organization) as a sign of protest; "there was a walkout by the Black members as the chairman rose to speak" -01178415 04 n 01 Boston_Tea_Party 0 003 @i 01177703 n 0000 ;r 09044862 n 0000 ;c 06155567 n 0000 | demonstration (1773) by citizens of Boston who (disguised as Indians) raided three British ships in Boston harbor and dumped hundreds of chests of tea into the harbor; organized as a protest against taxes on tea -01178728 04 n 01 peace_march 0 001 @ 01179167 n 0000 | a protest march against (a particular) war and in favor of peace -01178850 04 n 01 sit-in 0 002 @ 01179927 n 0000 + 02543482 v 0101 | a form of civil disobedience in which demonstrators occupy seats and refuse to move -01179004 04 n 01 work-in 0 001 @ 01177703 n 0000 | occasion when workers continue to work as a protest against e.g. proposed dismissal or closure of the factory -01179167 04 n 01 protest_march 0 004 @ 01179927 n 0000 @ 01177703 n 0000 ;c 01124794 n 0000 ~ 01178728 n 0000 | occasion when you can express opposition by marching (usually on some government institution) without a license -01179393 04 n 02 insubordination 0 rebelliousness 0 005 @ 01169317 n 0000 + 02331088 a 0201 + 00963671 a 0201 ~ 01179564 n 0000 ~ 01179707 n 0000 | an insubordinate act -01179564 04 n 01 contumacy 2 002 @ 01179393 n 0000 + 02330574 a 0101 | obstinate rebelliousness and insubordination; resistance to authority -01179707 04 n 02 disobedience 0 noncompliance 0 008 @ 01179393 n 0000 + 00695523 a 0202 ! 01203676 n 0203 + 01613463 a 0101 + 02543181 v 0101 ! 01167146 n 0101 ~ 01180200 n 0000 ~ 01180858 n 0000 | the failure to obey -01179927 04 n 01 civil_disobedience 0 003 @ 01168369 n 0000 ~ 01178850 n 0000 ~ 01179167 n 0000 | a group's refusal to obey a law because they believe the law is immoral (as in protest against discrimination); "Thoreau wrote a famous essay justifying civil disobedience" -01180200 04 n 01 contempt 0 004 @ 01179707 n 0000 ;c 08441203 n 0000 ~ 01180398 n 0000 ~ 01180557 n 0000 | a willful disobedience to or disrespect for the authority of a court or legislative body -01180398 04 n 01 contempt_of_Congress 0 002 @ 01180200 n 0000 ;c 08441203 n 0000 | deliberate obstruction of the operation of the federal legislative branch -01180557 04 n 01 contempt_of_court 0 004 @ 01180200 n 0000 ;c 08441203 n 0000 ~ 01180718 n 0000 ~ 01181066 n 0000 | disrespect for the rules of a court of law -01180718 04 n 01 civil_contempt 0 002 @ 01180557 n 0000 ;c 08441203 n 0000 | a failure to follow a court order that benefits someone else -01180858 04 n 01 contumacy 0 003 @ 01179707 n 0000 ;c 08441203 n 0000 + 02330574 a 0101 | willful refusal to appear before a court or comply with a court order; can result in a finding of contempt of court -01181066 04 n 01 criminal_contempt 0 002 @ 01180557 n 0000 ;c 08441203 n 0000 | an act of disrespect that impedes the administration of justice -01181212 04 n 01 obstruction_of_justice 0 002 @ 01074498 n 0000 ;c 08441203 n 0000 | impeding those who seek justice in a court (as by trying to influence or intimidate any juror or witness or officer of the court); can result in a finding of contempt of court -01181475 04 n 02 due_process 0 due_process_of_law 0 008 @ 01080366 n 0000 ;c 08441203 n 0000 ~ 01184814 n 0000 ~ 01187463 n 0000 ~ 01187810 n 0000 ~ 01194331 n 0000 ~ 01197928 n 0000 ~ 01198750 n 0000 | (law) the administration of justice according to established rules and principles; based on the principle that a person cannot be deprived of life or liberty or property without appropriate legal procedures and safeguards -01181902 04 n 03 legal_action 0 action 1 action_at_law 0 010 @ 01184814 n 0000 ;c 08441203 n 0000 + 02582042 v 0201 ~ 01184045 n 0000 ~ 01184230 n 0000 ~ 01184407 n 0000 ~ 01184565 n 0000 ~ 01184720 n 0000 ~ 01198307 n 0000 ~ 01198588 n 0000 | a judicial proceeding brought by one party against another; one party prosecutes another for a wrong done or for protection of a right or for prevention of a wrong -01182312 04 n 01 action 4 001 @ 01080366 n 0000 | an act by a government body or supranational organization; "recent federal action undermined the segregationist position"; "the United Nations must have the power to propose and organize action without being hobbled by irrelevant issues"; "the Union action of emancipating Southern slaves" -01182654 04 n 05 lawsuit 0 suit 0 case 0 cause 0 causa 0 009 @ 01184814 n 0000 ;c 08441203 n 0000 + 02582042 v 0202 ~ 01183031 n 0000 ~ 01183166 n 0000 ~ 01183373 n 0000 ~ 01183497 n 0000 ~ 01183638 n 0000 ~ 01183798 n 0000 | a comprehensive term for any proceeding in a court of law whereby an individual seeks a legal remedy; "the family brought suit against the landlord" -01183031 04 n 01 civil_suit 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a lawsuit alleging violations of civil law by the defendant -01183166 04 n 02 class_action 0 class-action_suit 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a lawsuit brought by a representative member of a large group of people on behalf of all members of the group -01183373 04 n 01 countersuit 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a suit brought against someone who has sued you -01183497 04 n 01 criminal_suit 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a lawsuit alleging violations of criminal law by the defendant -01183638 04 n 01 moot 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a hypothetical case that law students argue as an exercise; "he organized the weekly moot" -01183798 04 n 02 paternity_suit 0 bastardy_proceeding 0 002 @ 01182654 n 0000 ;c 08441203 n 0000 | a lawsuit filed to determine the father of a child born out of wedlock (and to provide for the support of the child once paternity is determined) -01184045 04 n 01 antitrust_case 0 002 @ 01181902 n 0000 ;c 08441203 n 0000 | a legal action brought against parties who are charged with limiting free competition in the market place -01184230 04 n 01 civil_action 0 001 @ 01181902 n 0000 | legal action to protect a private civil right or to compel a civil remedy (as distinguished from criminal prosecution) -01184407 04 n 01 counterclaim 0 003 @ 01181902 n 0000 ;c 08441203 n 0000 + 01018645 v 0101 | a claim filed in opposition to another claim in a legal action -01184565 04 n 01 custody_case 0 002 @ 01181902 n 0000 ;c 08441203 n 0000 | a legal action to determine custody (usually of children following a divorce) -01184720 04 n 01 lis_pendens 0 002 @ 01181902 n 0000 ;c 08441203 n 0000 | a pending lawsuit -01184814 04 n 03 proceeding 0 legal_proceeding 0 proceedings 0 018 @ 01181475 n 0000 ;c 08441203 n 0000 + 02372605 v 0302 + 02372605 v 0102 ~ 00090076 n 0000 ~ 01023242 n 0000 ~ 01023636 n 0000 ~ 01181902 n 0000 ~ 01182654 n 0000 ~ 01185292 n 0000 ~ 01185611 n 0000 ~ 01186397 n 0000 ~ 01186578 n 0000 ~ 01186810 n 0000 ~ 01187620 n 0000 ~ 01195867 n 0000 ~ 01197258 n 0000 ~ 01199697 n 0000 | (law) the institution of a sequence of steps by which legal judgments are invoked -01185292 04 n 01 adoption 2 003 @ 01184814 n 0000 ;c 08441203 n 0000 + 00413195 v 0101 | a legal proceeding that creates a parent-child relation between persons not related by blood; the adopted child is entitled to all privileges belonging to a natural child of the adoptive parents (including the right to inherit) -01185611 04 n 01 appeal 0 004 @ 01184814 n 0000 ;c 08441203 n 0000 + 02497824 v 0101 + 02497586 v 0101 | (law) a legal proceeding in which the appellant resorts to a higher court for the purpose of obtaining a review of a lower court decision and a reversal of the lower court's judgment or the granting of a new trial; "their appeal was denied in the superior court" -01185981 04 n 01 reversal 6 004 @ 01187810 n 0000 ;c 08441203 n 0000 + 00716130 v 0105 ! 01186192 n 0101 | a judgment by a higher court that the judgment of a lower court was incorrect and should be set aside -01186192 04 n 01 affirmation 0 004 @ 01187810 n 0000 ;c 08441203 n 0000 + 00665886 v 0106 ! 01185981 n 0101 | a judgment by a higher court that the judgment of a lower court was correct and should stand -01186397 04 n 01 bankruptcy 0 002 @ 01184814 n 0000 ;c 08441203 n 0000 | a legal process intended to insure equality among the creditors of a corporation declared to be insolvent -01186578 04 n 01 receivership 1 003 @ 01184814 n 0000 ;c 08441203 n 0000 + 10265532 n 0102 | a court action that places property under the control of a receiver during litigation so that it can be preserved for the benefit of all -01186810 04 n 02 litigation 0 judicial_proceeding 0 007 @ 01184814 n 0000 ;c 08441203 n 0000 + 02859221 a 0101 + 02582450 v 0101 + 02582042 v 0103 ~ 01187085 n 0000 ~ 01187230 n 0000 | a legal proceeding in a court; a judicial contest to determine and enforce legal rights -01187085 04 n 01 custody_battle 0 002 @ 01186810 n 0000 ;c 08441203 n 0000 | litigation to settle custody of the children of a divorced couple -01187230 04 n 01 vexatious_litigation 0 002 @ 01186810 n 0000 ;c 08441203 n 0000 | litigation shown to have been instituted maliciously and without probable cause; "he got an injunction against vexatious litigation by his enemies" -01187463 04 n 02 presentment 0 notification 2 002 @ 01181475 n 0000 ;c 08441203 n 0000 | an accusation of crime made by a grand jury on its own initiative -01187620 04 n 02 naturalization 0 naturalisation 0 004 @ 01184814 n 0000 ;c 08441203 n 0000 + 00412292 v 0202 + 00412292 v 0101 | the proceeding whereby a foreigner is granted citizenship -01187810 04 n 03 judgment 0 judgement 0 judicial_decision 0 017 @ 01181475 n 0000 ;c 08441203 n 0000 + 02501278 v 0101 ~ 01185981 n 0000 ~ 01186192 n 0000 ~ 01188273 n 0000 ~ 01188537 n 0000 ~ 01188783 n 0000 ~ 01189001 n 0000 ~ 01189650 n 0000 ~ 01189929 n 0000 ~ 01190172 n 0000 ~ 01190364 n 0000 ~ 01190561 n 0000 ~ 01190884 n 0000 ~ 01191158 n 0000 ~ 01191975 n 0000 | (law) the determination by a court of competent jurisdiction on matters submitted to it -01188273 04 n 04 confession_of_judgment 0 confession_of_judgement 0 cognovit_judgment 0 cognovit_judgement 0 002 @ 01187810 n 0000 ;c 08441203 n 0000 | a judgment entered after a written confession by the debtor without the expense of ordinary legal proceedings -01188537 04 n 04 default_judgment 0 default_judgement 0 judgment_by_default 0 judgement_by_default 0 002 @ 01187810 n 0000 ;c 08441203 n 0000 | a judgment entered in favor of the plaintiff when the defendant defaults (fails to appear in court) -01188783 04 n 02 non_prosequitur 0 non_pros 0 002 @ 01187810 n 0000 ;c 08441203 n 0000 | a judgment entered in favor of the defendant when the plaintiff has not continued his action (e.g., has not appeared in court) -01189001 04 n 02 final_judgment 0 final_decision 0 004 @ 01187810 n 0000 ;c 08441203 n 0000 ~ 01189282 n 0000 ~ 01193886 n 0000 | a judgment disposing of the case before the court; after the judgment (or an appeal from it) is rendered all that remains is to enforce the judgment -01189282 04 n 04 conviction 0 judgment_of_conviction 0 condemnation 1 sentence 0 008 @ 01189001 n 0000 ;c 06539178 n 0000 + 00906735 v 0401 + 00906367 v 0101 ! 01193886 n 0101 ~ 01194021 n 0000 ~ 01194125 n 0000 ~ 01194225 n 0000 | (criminal law) a final judgment of guilty in a criminal case and the punishment that is imposed; "the conviction came as no surprise" -01189650 04 n 04 judgment_in_personam 0 judgement_in_personam 0 personal_judgment 0 personal_judgement 0 004 @ 01187810 n 0000 ;c 08059412 n 0000 ;c 08441203 n 0000 ! 01189929 n 0101 | a judgment rendered against an individual (or corporation) for the payment of money damages -01189929 04 n 02 judgment_in_rem 0 judgement_in_rem 0 003 @ 01187810 n 0000 ;c 08441203 n 0000 ! 01189650 n 0101 | a judgment pronounced on the status of some particular subject or property or thing (as opposed to one pronounced on persons) -01190172 04 n 03 judgment_of_dismissal 0 judgement_of_dismissal 0 dismissal 1 003 @ 01187810 n 0000 ;c 08441203 n 0000 + 00801626 v 0301 | a judgment disposing of the matter without a trial -01190364 04 n 02 judgment_on_the_merits 0 judgement_on_the_merits 0 002 @ 01187810 n 0000 ;c 08441203 n 0000 | judgment rendered through analysis and adjudication of the factual issues presented -01190561 04 n 04 summary_judgment 0 summary_judgement 0 judgment_on_the_pleadings 0 judgement_on_the_pleadings 0 002 @ 01187810 n 0000 ;c 08441203 n 0000 | a judgment rendered by the court prior to a verdict because no material issue of fact exists and one party or the other is entitled to a judgment as a matter of law -01190884 04 n 03 arbitration 0 arbitrament 0 arbitrement 0 005 @ 01187810 n 0000 + 00760956 v 0305 + 00760956 v 0205 + 02637730 a 0102 + 00760956 v 0105 | the act of deciding as an arbiter; giving authoritative judgment; "they submitted their disagreement to arbitration" -01191158 04 n 02 opinion 1 ruling 0 005 @ 01187810 n 0000 ;c 08441203 n 0000 + 00971999 v 0201 ~i 01191364 n 0000 ~ 01191610 n 0000 | the reason for a court's judgment (as opposed to the decision itself) -01191364 04 n 01 Bakke_decision 0 002 @i 01191158 n 0000 ;c 08441203 n 0000 | a ruling by the Supreme Court on affirmative action; the Court ruled in 1978 that medical schools are entitled to consider race as a factor in their admission policy -01191610 04 n 01 fatwa 0 002 @ 01191158 n 0000 ;c 08455829 n 0000 | a ruling on a point of Islamic law that is given by a recognized authority -01191755 04 n 04 umpirage 0 officiation 0 officiating 0 refereeing 0 005 @ 05788149 n 0000 + 01085237 v 0401 + 01096497 v 0301 + 01096497 v 0201 + 01085237 v 0102 | the act of umpiring; "the officiating was excellent" -01191975 04 n 01 finding 1 005 @ 01187810 n 0000 ;c 08441203 n 0000 + 00971999 v 0102 ~ 01192150 n 0000 ~ 01192463 n 0000 | the decision of a court on issues of fact or law -01192150 04 n 02 verdict 0 finding_of_fact 0 008 @ 01191975 n 0000 ;c 08441203 n 0000 ~ 01192633 n 0000 ~ 01192814 n 0000 ~ 01193044 n 0000 ~ 01193176 n 0000 ~ 01193362 n 0000 ~ 01193672 n 0000 | (law) the findings of a jury on issues of fact submitted to it for decision; can be used in formulating a judgment -01192463 04 n 02 finding_of_law 0 conclusion_of_law 0 002 @ 01191975 n 0000 ;c 08441203 n 0000 | a finding as to the applicability of a rule of law to particular facts -01192633 04 n 01 compromise_verdict 0 003 @ 01192150 n 0000 ;c 08441203 n 0000 ~ 01193535 n 0000 | a verdict resulting from improper compromises between jurors on material issues -01192814 04 n 01 directed_verdict 0 002 @ 01192150 n 0000 ;c 08441203 n 0000 | a verdict entered by the court in a jury trial without consideration by the jury; "there cannot be a directed verdict of guilty in a criminal trial" -01193044 04 n 01 false_verdict 0 002 @ 01192150 n 0000 ;c 08441203 n 0000 | a manifestly unjust verdict; not true to the evidence -01193176 04 n 01 general_verdict 0 003 @ 01192150 n 0000 ;c 08441203 n 0000 ! 01193672 n 0101 | an ordinary verdict declaring which party prevails without any special findings of fact -01193362 04 n 01 partial_verdict 0 002 @ 01192150 n 0000 ;c 06539178 n 0000 | (criminal law) a finding that the defendant is guilty of some charges but innocent of others -01193535 04 n 01 quotient_verdict 0 002 @ 01192633 n 0000 ;c 08441203 n 0000 | an improper and unacceptable kind of compromise verdict -01193672 04 n 01 special_verdict 0 003 @ 01192150 n 0000 ;c 08441203 n 0000 ! 01193176 n 0101 | a verdict rendered on certain specific factual issues posed by the court without finding for one party or the other -01193886 04 n 01 acquittal 0 004 @ 01189001 n 0000 ;c 08441203 n 0000 + 00904046 v 0101 ! 01189282 n 0101 | a judgment of not guilty -01194021 04 n 01 murder_conviction 0 002 @ 01189282 n 0000 ;c 08441203 n 0000 | conviction for murder -01194125 04 n 01 rape_conviction 0 002 @ 01189282 n 0000 ;c 08441203 n 0000 | conviction for rape -01194225 04 n 01 robbery_conviction 0 002 @ 01189282 n 0000 ;c 08441203 n 0000 | conviction for robbery -01194331 04 n 03 eviction 0 dispossession 0 legal_ouster 0 007 @ 01181475 n 0000 ;c 08441203 n 0000 + 02314658 v 0201 + 01468058 v 0101 ~ 01194615 n 0000 ~ 01194711 n 0000 ~ 01195187 n 0000 | the expulsion of someone (such as a tenant) from the possession of land by process of law -01194615 04 n 01 ouster 1 002 @ 01194331 n 0000 ;c 08441203 n 0000 | a wrongful dispossession -01194711 04 n 01 actual_eviction 0 002 @ 01194331 n 0000 ;c 08441203 n 0000 | the physical ouster of a tenant from the leased premises; the tenant is relieved of any further duty to pay rent -01194904 04 n 02 eviction 1 constructive_eviction 0 003 @ 00156812 n 0000 ;c 08441203 n 0000 + 01468327 v 0101 | action by a landlord that compels a tenant to leave the premises (as by rendering the premises unfit for occupancy); no physical expulsion or legal process is involved -01195187 04 n 01 retaliatory_eviction 0 002 @ 01194331 n 0000 ;c 08441203 n 0000 | an eviction in reprisal for the tenant's good-faith complaints against the landlord; illegal in many states -01195380 04 n 03 legalization 0 legalisation 0 legitimation 0 006 @ 01080366 n 0000 ;c 08441203 n 0000 + 02481436 v 0307 + 00896677 v 0301 + 02481436 v 0202 + 02481436 v 0101 | the act of making lawful -01195584 04 n 01 legitimation 1 003 @ 00030358 n 0000 ;c 08441203 n 0000 + 00575359 v 0101 | the act of rendering a person legitimate; "he has filial rights because he obtained letters of legitimation from the king"; "his parents' subsequent marriage resulted in his legitimation" -01195867 04 n 01 trial 2 012 @ 01184814 n 0000 ;c 08441203 n 0000 + 02501278 v 0103 ~ 01196316 n 0000 ~ 01196477 n 0000 ~ 01196759 n 0000 ~ 01197119 n 0000 %p 01197928 n 0000 %p 01198307 n 0000 %p 01198750 n 0000 ~ 01199252 n 0000 ~ 01199365 n 0000 | (law) the determination of a person's innocence or guilt by due process of law; "he had a fair trial and the jury found him guilty"; "most of these complaints are settled before they go to trial" -01196316 04 n 01 court-martial 0 004 @ 01195867 n 0000 ;c 08199025 n 0000 ;c 08455271 n 0000 + 02499172 v 0101 | a trial that is conducted by a military court -01196477 04 n 02 ordeal 0 trial_by_ordeal 0 001 @ 01195867 n 0000 | a primitive method of determining a person's guilt or innocence by subjecting the accused person to dangerous or painful tests believed to be under divine control; escape was usually taken as a sign of innocence -01196759 04 n 01 Scopes_trial 0 003 @ 01195867 n 0000 ;c 08441203 n 0000 ;c 13477023 n 0000 | a highly publicized trial in 1925 when John Thomas Scopes violated a Tennessee state law by teaching evolution in high school; Scopes was prosecuted by William Jennings Bryan and defended by Clarence Darrow; Scopes was convicted but the verdict was later reversed -01197119 04 n 01 show_trial 0 001 @ 01195867 n 0000 | a trial held for show; the guilt of the accused person has been decided in advance -01197258 04 n 01 review 3 005 @ 01184814 n 0000 ;c 08441203 n 0000 + 00696189 v 0101 ~ 01197479 n 0000 ~ 01197658 n 0000 | (law) a judicial reexamination of the proceedings of a court (especially by an appellate court) -01197479 04 n 01 bill_of_review 0 001 @ 01197258 n 0000 | a proceeding brought to obtain an explanation or an alteration or a reversal of a decree by the court that rendered it -01197658 04 n 01 judicial_review 0 002 @ 01197258 n 0000 ;c 08441203 n 0000 | review by a court of law of actions of a government official or entity or of some other legally appointed person or body or the review by an appellate court of the decision of a trial court -01197928 04 n 01 plea 1 003 @ 01181475 n 0000 #p 01195867 n 0000 ;c 08441203 n 0000 | an answer indicating why a suit should be dismissed -01198068 04 n 01 double_jeopardy 0 002 @ 01198307 n 0000 ;c 08441203 n 0000 | the prosecution of a defendant for a criminal offense for which he has already been tried; prohibited in the fifth amendment to the United States Constitution -01198307 04 n 02 prosecution 0 criminal_prosecution 0 007 @ 01181902 n 0000 #p 01195867 n 0000 ;c 08441203 n 0000 + 02581900 v 0101 + 02581477 v 0101 ! 01198750 n 0101 ~ 01198068 n 0000 | the institution and conduct of legal proceedings against a defendant for criminal behavior -01198588 04 n 02 test_case 0 test_suit 0 002 @ 01181902 n 0000 ;c 08441203 n 0000 | a representative legal action whose outcome is likely to become a precedent -01198750 04 n 04 defense 2 defence 2 denial 0 demurrer 0 006 @ 01181475 n 0000 #p 01195867 n 0000 ;c 08441203 n 0000 + 01068380 v 0302 ! 01198307 n 0101 ~ 01199035 n 0000 | a defendant's answer or plea denying the truth of the charges against him; "he gave evidence for the defense" -01199035 04 n 01 entrapment 0 003 @ 01198750 n 0000 ;c 08441203 n 0000 + 02578008 v 0102 | a defense that claims the defendant would not have broken the law if not tricked into doing it by law enforcement officials -01199252 04 n 01 mistrial 0 002 @ 01195867 n 0000 ;c 08441203 n 0000 | a trial that is invalid or inconclusive -01199365 04 n 01 retrial 0 003 @ 01195867 n 0000 ;c 08441203 n 0000 + 02501159 v 0102 | a new trial in which issues already litigated and to which the court has already rendered a verdict or decision are reexamined by the same court; occurs when the initial trial is found to have been improper or unfair due to procedural errors -01199697 04 n 01 hearing 1 006 @ 01184814 n 0000 ;c 08441203 n 0000 ~ 01200000 n 0000 ~ 01200266 n 0000 ~ 01200502 n 0000 ~ 01200857 n 0000 | (law) a proceeding (usually by a court) where evidence is taken for the purpose of determining an issue of fact and reaching a decision based on that evidence -01200000 04 n 01 administrative_hearing 0 002 @ 01199697 n 0000 ;c 08441203 n 0000 | a hearing that takes place outside the judicial process before hearing examiners who have been granted judicial authority specifically for the purpose of conducting such hearings -01200266 04 n 01 competence_hearing 0 002 @ 01199697 n 0000 ;c 08441203 n 0000 | a hearing to determine legal capacity (to determine whether the defendant can understand the charges and cooperate with a lawyer in preparing a defense) -01200502 04 n 01 fair_hearing 0 002 @ 01199697 n 0000 ;c 08441203 n 0000 | a hearing that is granted in extraordinary situations where the normal judicial process would be inadequate to secure due process because the person would be harmed or denied their rights before a judicial remedy became available (as in deportation or loss of welfare benefits) -01200857 04 n 01 quo_warranto 0 002 @ 01199697 n 0000 ;c 08441203 n 0000 | a hearing to determine by what authority someone has an office or franchise or liberty -01201021 04 n 01 separation 0 007 @ 01080366 n 0000 + 02030158 v 0101 ~ 01201271 n 0000 ~ 01201773 n 0000 ~ 01202029 n 0000 ~ 01202184 n 0000 ~ 01202665 n 0000 | the social act of separating or parting company; "the separation of church and state" -01201271 04 n 02 divorce 0 divorcement 0 004 @ 01201021 n 0000 ;c 08441203 n 0000 + 02490634 v 0201 + 02490634 v 0101 | the legal dissolution of a marriage -01201429 04 n 02 legal_separation 0 separation 2 003 @ 07362075 n 0000 ;c 08441203 n 0000 + 02431320 v 0201 | (law) the cessation of cohabitation of man and wife (either by mutual agreement or under a court order) -01201645 04 n 01 quarantine 0 002 @ 01202029 n 0000 + 00496266 v 0101 | isolation to prevent the spread of infectious disease -01201773 04 n 01 seclusion 0 003 @ 01201021 n 0000 + 00495998 v 0101 ~ 01201906 n 0000 | the act of secluding yourself from others -01201906 04 n 01 cocooning 0 001 @ 01201773 n 0000 | retreating to the seclusion of your home (as for privacy or escape) -01202029 04 n 02 isolation 0 closing_off 0 002 @ 01201021 n 0000 ~ 01201645 n 0000 | the act of isolating something; setting something apart from others -01202184 04 n 02 segregation 0 sequestration 0 006 @ 01201021 n 0000 + 00495998 v 0202 + 10576316 n 0102 + 01558218 v 0101 + 00494613 v 0101 ! 01202415 n 0101 | the act of segregating or sequestering; "sequestration of the jury" -01202415 04 n 03 integration 0 integrating 0 desegregation 0 006 @ 01080366 n 0000 + 02481900 v 0301 + 02481900 v 0202 + 00467451 v 0201 + 02481900 v 0102 ! 01202184 n 0101 | the action of incorporating a racial or religious group into a community -01202665 04 n 02 separationism 0 separatism 0 001 @ 01201021 n 0000 | advocacy of a policy of strict separation of church and state -01202799 04 n 01 withdrawal 6 001 @ 00383606 n 0000 | the act of ceasing to participate in an activity -01202904 04 n 01 cooperation 1 013 @ 01080366 n 0000 + 02416278 v 0103 ! 01168569 n 0101 ~ 01203494 n 0000 ~ 01203676 n 0000 ~ 01205156 n 0000 ~ 01205341 n 0000 ~ 01205564 n 0000 ~ 01205702 n 0000 ~ 01205827 n 0000 ~ 01205961 n 0000 ~ 01206153 n 0000 ~ 01217499 n 0000 | joint operation or action; "their cooperation with us was essential for the success of our mission" -01203277 04 n 01 brainstorming 0 002 @ 01080366 n 0000 + 00630223 v 0101 | a group problem-solving technique in which members spontaneously share ideas and solutions; "we had an intense brainstorming session today" -01203494 04 n 01 teamwork 0 001 @ 01202904 n 0000 | cooperative work done by a team (especially when it is effective); "it will take money, good planning and, above all, teamwork" -01203676 04 n 04 conformity 0 conformation 1 compliance 2 abidance 2 009 @ 01202904 n 0000 + 02542280 v 0301 ! 01179707 n 0302 + 02662979 v 0201 ! 01204845 n 0101 ~ 01204055 n 0000 ~ 01204294 n 0000 ~ 01204419 n 0000 ~ 01205010 n 0000 | acting according to certain accepted standards; "their financial statements are in conformity with generally accepted accounting practices" -01204055 04 n 01 formality 0 008 @ 01203676 n 0000 + 01041916 a 0101 -u 01673434 a 0000 -u 00240707 r 0000 -u 00255614 r 0000 -u 09636106 n 0000 -u 10171219 n 0000 -u 14404831 n 0000 | compliance with formal rules; "courtroom formality" -01204294 04 n 01 line 1 001 @ 01203676 n 0000 | acting in conformity; "in line with"; "he got out of line"; "toe the line" -01204419 04 n 02 honoring 0 observance 2 006 @ 01203676 n 0000 + 01395821 a 0202 + 02578872 v 0201 ! 01204711 n 0201 + 02457233 v 0102 ~ 01204623 n 0000 | conformity with law or custom or practice etc. -01204623 04 n 01 punctilio 0 001 @ 01204419 n 0000 | strict observance of formalities -01204711 04 n 01 nonobservance 0 002 @ 01204845 n 0000 ! 01204419 n 0102 | a lack of conformity with law or custom or practice etc. -01204845 04 n 02 nonconformity 0 nonconformance 0 003 @ 00066636 n 0000 ! 01203676 n 0101 ~ 01204711 n 0000 | failure to conform to accepted standards of behavior -01205010 04 n 01 keeping 1 002 @ 01203676 n 0000 + 02578872 v 0102 | conformity or harmony; "his behavior was not in keeping with the occasion" -01205156 04 n 02 collaboration 1 coaction 0 003 @ 01202904 n 0000 + 02417098 v 0201 + 02416278 v 0101 | act of working jointly; "they worked either in collaboration or independently" -01205341 04 n 03 collaboration 2 collaborationism 0 quislingism 0 004 @ 01202904 n 0000 + 09935793 n 0202 + 09935793 n 0102 + 02416751 v 0101 | act of cooperating traitorously with an enemy that is occupying your country -01205564 04 n 02 compromise 0 via_media 0 003 @ 01202904 n 0000 + 01035803 v 0101 + 01035380 v 0101 | a middle way between two extremes -01205702 04 n 02 concurrence 0 concurrency 0 001 @ 01202904 n 0000 | acting together, as agents or circumstances or events -01205827 04 n 02 reconciliation 1 rapprochement 0 002 @ 01202904 n 0000 + 00764902 v 0101 | the reestablishing of cordial relations -01205961 04 n 02 selflessness 0 self-sacrifice 0 003 @ 01202904 n 0000 + 00101609 a 0102 ~ 00205649 n 0000 | acting with less concern for yourself than for the success of the joint activity -01206153 04 n 04 commitment 0 allegiance 0 loyalty 0 dedication 0 009 @ 01202904 n 0000 + 00887463 v 0402 + 00961667 a 0201 + 00887463 v 0104 ~ 01040943 n 0000 ~ 01041111 n 0000 ~ 01206553 n 0000 ~ 01206986 n 0000 ~ 01207187 n 0000 | the act of binding yourself (intellectually or emotionally) to a course of action; "his long commitment to public service"; "they felt no loyalty to a losing team" -01206553 04 n 01 devotion 1 006 @ 01206153 n 0000 + 00887463 v 0105 ~ 01206774 n 0000 ~ 01206910 n 0000 ~ 01207342 n 0000 ~ 01207521 n 0000 | commitment to some purpose; "the devotion of his time and wealth to science" -01206774 04 n 01 cultism 1 002 @ 01206553 n 0000 + 09982370 n 0101 | devotion to the doctrine or a cult or to the practices of a cult -01206910 04 n 01 hobbyism 0 001 @ 01206553 n 0000 | a devotion to hobbies -01206986 04 n 01 enlistment 0 002 @ 01206153 n 0000 ~ 01207108 n 0000 | the act of enlisting (as in a military service) -01207108 04 n 01 reenlistment 0 001 @ 01206986 n 0000 | a renewed enlistment -01207187 04 n 01 faith 0 001 @ 01206153 n 0000 | loyalty or allegiance to a cause or a person; "keep the faith"; "they broke faith with their investors" -01207342 04 n 02 fetish 0 fetich 0 003 @ 01206553 n 0000 + 10085548 n 0101 + 00320911 v 0101 | excessive or irrational devotion to some activity; "made a fetish of cleanliness" -01207521 04 n 01 party_spirit 0 001 @ 01206553 n 0000 | devotion to a political party -01207609 04 n 04 aid 0 assist 1 assistance 0 help 0 021 @ 00407535 n 0000 + 00206998 v 0401 + 02555434 v 0401 + 00082081 v 0401 + 02735897 v 0401 + 02547586 v 0401 + 02547586 v 0302 + 02547586 v 0202 + 02540670 v 0205 ~ 00802111 n 0000 ~ 01208291 n 0000 ~ 01208460 n 0000 ~ 01208597 n 0000 ~ 01208797 n 0000 ~ 01209220 n 0000 ~ 01209487 n 0000 ~ 01209576 n 0000 ~ 01210816 n 0000 ~ 01211019 n 0000 ~ 01211185 n 0000 ~ 01212519 n 0000 | the activity of contributing to the fulfillment of a need or furtherance of an effort or purpose; "he gave me an assist with the housework"; "could not walk without assistance"; "rescue party went to their aid"; "offered his help in unloading" -01208291 04 n 01 facilitation 0 003 @ 01207609 n 0000 + 02735897 v 0102 + 00518395 v 0101 | act of assisting or making easier the progress or improvement of something -01208460 04 n 02 hand 0 helping_hand 0 002 @ 01207609 n 0000 + 02000133 v 0101 | physical assistance; "give me a hand with the chores" -01208597 04 n 03 recourse 0 resort 0 refuge 0 002 @ 01207609 n 0000 + 02590072 v 0202 | act of turning to for assistance; "have recourse to the courts"; "an appeal to his uncle was his last resort" -01208797 04 n 01 thanks 0 001 @ 01207609 n 0000 | with the help of or owing to; "thanks to hard work it was a great success" -01208924 04 n 01 social_work 0 001 @ 00582195 n 0000 | any of various services designed to aid the poor and aged and to increase the welfare of children -01209079 04 n 01 casework 0 001 @ 00582195 n 0000 | close sociological study of a maladjusted person or family for diagnosis and treatment -01209220 04 n 04 relief 2 succor 0 succour 0 ministration 0 006 @ 01207609 n 0000 + 02549392 v 0401 + 02548710 v 0302 + 02548710 v 0201 ~ 01211667 n 0000 ~ 01227495 n 0000 | assistance in time of difficulty; "the contributions provided some relief for the victims" -01209487 04 n 01 lift 2 001 @ 01207609 n 0000 | the act of giving temporary assistance -01209576 04 n 01 service 0 007 @ 01207609 n 0000 ! 01209791 n 0101 ~ 01209963 n 0000 ~ 01210102 n 0000 ~ 01210281 n 0000 ~ 01210547 n 0000 ~ 01210699 n 0000 | an act of help or assistance; "he did them a service" -01209791 04 n 03 disservice 0 ill_service 0 ill_turn 0 002 @ 00744443 n 0000 ! 01209576 n 0101 | an act intended to help that turns out badly; "he did them a disservice" -01209963 04 n 02 childcare 0 child_care 0 002 @ 01209576 n 0000 ~ 01210439 n 0000 | a service involving care for other people's children -01210102 04 n 01 community_service 0 001 @ 01209576 n 0000 | an unpaid service for the benefit of the public that is performed by lawbreakers as part (or all) of their sentence -01210281 04 n 02 community_service 1 public_service 1 001 @ 01209576 n 0000 | a service that is performed for the benefit of the public or its institutions -01210439 04 n 02 daycare 0 day_care 0 001 @ 01209963 n 0000 | childcare during the day while parents work -01210547 04 n 02 help_desk 0 helpdesk 0 001 @ 01209576 n 0000 | a service that provides information and assistance to the users of a computer network -01210699 04 n 01 seating 0 002 @ 01209576 n 0000 + 01543998 v 0101 | the service of ushering people to their seats -01210816 04 n 01 accommodation 0 005 @ 01207609 n 0000 + 02651424 v 0102 + 01184453 v 0101 + 00885925 v 0102 ~ 00098625 n 0000 | the act of providing something (lodging or seat or food) to meet a need -01211019 04 n 02 boost 0 encouragement 0 004 @ 01207609 n 0000 + 02554922 v 0205 + 00310937 v 0101 ~ 01211489 n 0000 | the act of giving hope or support to someone -01211185 04 n 01 comfort 1 001 @ 01207609 n 0000 | assistance, such as that provided to an enemy or to a known criminal; "it gave comfort to the enemy" -01211339 04 n 01 boost 1 003 @ 00112312 n 0000 + 02554922 v 0103 + 01516071 v 0101 | the act of giving a push; "he gave her a boost over the fence" -01211489 04 n 02 morale_building 0 morale_booster 0 001 @ 01211019 n 0000 | anything that serves to increase morale; "the sight of flowers every morning was my morale builder" -01211667 04 n 03 consolation 0 comfort 0 solace 0 004 @ 01209220 n 0000 + 01814815 v 0304 + 01814815 v 0201 + 01814815 v 0103 | the act of consoling; giving relief in affliction; "his presence was a consolation to her" -01211888 04 n 01 simplification 0 004 @ 00395333 n 0000 + 00400427 v 0101 ~ 01212037 n 0000 ~ 01212225 n 0000 | elimination of superfluous details -01212037 04 n 02 oversimplification 0 simplism 0 002 @ 01211888 n 0000 + 02569235 v 0101 | an act of excessive simplification; the act of making something seem simpler than it really is -01212225 04 n 02 rationalization 1 rationalisation 1 004 @ 01211888 n 0000 ;c 06000644 n 0000 + 00568879 v 0202 + 00568879 v 0101 | (mathematics) the simplification of an expression or equation by eliminating radicals without changing the value of the expression or the roots of the equation -01212519 04 n 01 support 0 010 @ 01207609 n 0000 + 00895304 v 0102 + 00806314 v 0102 + 02453889 v 0106 ~ 01212882 n 0000 ~ 01214171 n 0000 ~ 01215036 n 0000 ~ 01215168 n 0000 ~ 01215392 n 0000 ~ 01215719 n 0000 | aiding the cause or policy or interests of; "the president no longer has the support of his own party"; "they developed a scheme of mutual support" -01212882 04 n 03 attachment 2 adherence 0 adhesion 0 007 @ 01212519 n 0000 + 02638845 v 0301 + 02538086 v 0103 ~ 01213234 n 0000 ~ 01213406 n 0000 ~ 01213548 n 0000 ~ 01213702 n 0000 | faithful support for a cause or political party or religion; "attachment to a formal agenda"; "adherence to a fat-free diet"; "the adhesion of Seville was decisive" -01213234 04 n 01 ecclesiasticism 0 001 @ 01212882 n 0000 | excessive adherence to ecclesiastical forms and activities; "their ecclesiasticism overwhelmed their religion" -01213406 04 n 02 kabbalism 0 cabalism 0 001 @ 01212882 n 0000 | adherence to some extreme traditional theological concept or interpretation -01213548 04 n 01 royalism 0 002 @ 01212882 n 0000 + 10327824 n 0102 | adherence or attachment to a monarchy or to the principle of monarchal government -01213702 04 n 01 traditionalism 0 004 @ 01212882 n 0000 ;c 05946687 n 0000 + 00611754 a 0101 + 10721124 n 0101 | adherence to tradition (especially in cultural or religious matters) -01213886 04 n 04 backing 0 backup 0 championship 0 patronage 0 005 @ 01215392 n 0000 + 02556126 v 0202 + 02556817 v 0102 + 02453889 v 0101 + 02217695 v 0101 | the act of providing approval and support; "his vigorous backing of the conservatives got him in trouble with progressives" -01214171 04 n 02 advocacy 0 protagonism 0 005 @ 01212519 n 0000 + 00827730 v 0102 ~ 01214408 n 0000 ~ 01214557 n 0000 ~ 01214746 n 0000 | active support of an idea or cause etc.; especially the act of pleading or arguing for something -01214408 04 n 01 drumbeat 0 001 @ 01214171 n 0000 | a vehement and vociferous advocacy of a cause; "the warmongers kept up their drumbeat on Iraq" -01214557 04 n 02 insistence 0 insistency 0 002 @ 01214171 n 0000 + 00777931 v 0102 | the act of insisting on something; "insistence on grammatical correctness is a conservative position" -01214746 04 n 01 urging 0 002 @ 01214171 n 0000 + 00858781 v 0104 | the act of earnestly supporting or encouraging -01214863 04 n 03 auspices 0 protection 2 aegis 0 001 @ 01215168 n 0000 | kindly endorsement and guidance; "the tournament was held under the auspices of the city council" -01215036 04 n 01 sponsorship 1 002 @ 01212519 n 0000 + 10407954 n 0102 | the act of sponsoring (either officially or financially) -01215168 04 n 02 endorsement 0 indorsement 0 005 @ 01212519 n 0000 + 02453889 v 0203 + 02556817 v 0103 + 02453889 v 0102 ~ 01214863 n 0000 | the act of endorsing; "a star athlete can make a lot of money from endorsements" -01215392 04 n 03 blessing 1 approval 2 approving 0 008 @ 01212519 n 0000 + 00803815 v 0201 + 00806502 v 0201 ! 00874621 n 0201 ~ 00180413 n 0000 ~ 01213886 n 0000 ~ 01218593 n 0000 ~ 01219551 n 0000 | the formal act of approving; "he gave the project his blessing"; "his decision merited the approval of any sensible person" -01215719 04 n 01 reassurance 0 005 @ 01212519 n 0000 + 01766407 v 0101 + 01019808 v 0101 = 00196934 a 0000 = 00197447 a 0000 | the act of reassuring; restoring someone's confidence -01215902 04 n 01 support 4 004 @ 00407535 n 0000 + 02219094 v 0101 ~ 01216191 n 0000 ~ 01216515 n 0000 | the activity of providing for or maintaining by supplying with money or necessities; "his support kept the family together"; "they gave him emotional support during difficult times" -01216191 04 n 05 sustenance 0 sustentation 0 sustainment 0 maintenance 1 upkeep 1 005 @ 01215902 n 0000 + 01184625 v 0403 + 01202728 v 0303 + 02806435 a 0201 + 02679530 v 0102 | the act of sustaining life by food or providing a means of subsistence; "they were in want of sustenance"; "fishing was their main sustainment" -01216515 04 n 02 logistic_support 0 logistic_assistance 0 006 @ 01215902 n 0000 ;c 08199025 n 0000 ~ 01216738 n 0000 ~ 01216908 n 0000 ~ 01217052 n 0000 ~ 01217306 n 0000 | assistance between and within military commands -01216738 04 n 01 integrated_logistic_support 0 001 @ 01216515 n 0000 | the pooling of specific resources by subscribing nations for the support of some joint operation -01216908 04 n 02 mutual_aid 0 international_logistic_support 0 001 @ 01216515 n 0000 | arrangements made between nations to assist each other -01217052 04 n 02 interdepartmental_support 0 interagency_support 0 001 @ 01216515 n 0000 | provision of logistic (or administrative) support by one or more of the military services to one or more departments or agencies of the United States government -01217306 04 n 01 inter-service_support 0 002 @ 01216515 n 0000 ;c 08199025 n 0000 | action by one military service to provide logistic (or administrative) support to another military service -01217499 04 n 01 representation 1 004 @ 01202904 n 0000 + 02581675 v 0102 + 02541509 v 0101 ~ 01217720 n 0000 | the act of representing; standing in for someone or some group and speaking with authority in their behalf -01217720 04 n 01 proportional_representation 0 001 @ 01217499 n 0000 | representation of all parties in proportion to their popular vote -01217859 04 n 02 employment 2 engagement 2 006 @ 00037396 n 0000 + 02409412 v 0202 + 02409412 v 0103 ~ 01218050 n 0000 ~ 01218213 n 0000 ~ 01218327 n 0000 | the act of giving someone a job -01218050 04 n 01 shape-up 0 001 @ 01217859 n 0000 | a way of hiring longshoremen by the day; applicants gather around a union boss who selects those to be hired -01218213 04 n 01 call-back 0 002 @ 01217859 n 0000 + 00791506 v 0102 | the recall of an employee after a layoff -01218327 04 n 02 booking 0 reservation 1 005 @ 01217859 n 0000 + 02498320 v 0201 + 02599754 v 0101 + 02498320 v 0103 + 00795632 v 0201 | the act of reserving (a place or passage) or engaging the services of (a person or group); "wondered who had made the booking" -01218593 04 n 02 admiration 0 appreciation 0 003 @ 01215392 n 0000 ~ 01218766 n 0000 ~ 01219075 n 0000 | a favorable judgment; "a small token in admiration of your works" -01218766 04 n 03 adoration 1 idolization 1 idolisation 1 004 @ 01218593 n 0000 + 01778017 v 0302 + 01778017 v 0201 ~ 01218932 n 0000 | the act of admiring strongly -01218932 04 n 01 glorification 0 002 @ 01218766 n 0000 + 00860620 v 0104 | the act of glorifying (as in worship); "the glorification of God" -01219075 04 n 03 idealization 0 idealisation 0 glorification 1 004 @ 01218593 n 0000 + 00489496 v 0301 + 00692907 v 0101 ~ 01219306 n 0000 | a portrayal of something as ideal; "the idealization of rural life was very misleading" -01219306 04 n 04 sentimentalization 0 sentimentalisation 0 romanticization 0 romanticisation 0 006 @ 01219075 n 0000 + 00693172 v 0402 + 00693172 v 0301 + 00533185 v 0202 + 00012944 v 0201 + 00012944 v 0102 | the act of indulging in sentiment -01219551 04 n 02 reward 1 reinforcement 0 004 @ 01215392 n 0000 + 00787660 v 0201 + 00787660 v 0102 ~ 01219722 n 0000 | an act performed to strengthen approved behavior -01219722 04 n 01 carrot 0 001 @ 01219551 n 0000 | promise of reward as in "carrot and stick"; "used the carrot of subsidized housing for the workers to get their vote"; -01219893 04 n 02 disparagement 0 dispraise 0 005 @ 00874621 n 0000 + 00845909 v 0101 ~ 01220074 n 0000 ~ 01220152 n 0000 ~ 01220754 n 0000 | the act of speaking contemptuously of -01220074 04 n 01 belittling 0 001 @ 01219893 n 0000 | the act of belittling -01220152 04 n 02 deprecation 0 denigration 0 004 @ 01219893 n 0000 + 00864475 v 0203 + 00856429 v 0101 + 00855933 v 0101 | the act of expressing disapproval (especially of yourself) -01220336 04 n 05 aspersion 0 calumny 1 slander 1 defamation 1 denigration 1 008 @ 01220619 n 0000 + 00846509 v 0505 + 00846509 v 0401 + 01161233 a 0309 + 00846509 v 0302 + 01161233 a 0202 + 00846509 v 0206 + 00846509 v 0104 | an abusive attack on a person's character or good name -01220619 04 n 01 attack 5 002 @ 06710546 n 0000 ~ 01220336 n 0000 | strong criticism; "he published an unexpected attack on my work" -01220754 04 n 01 detraction 0 002 @ 01219893 n 0000 + 00532115 v 0102 | the act of discrediting or detracting from someone's reputation (especially by slander); "let it be no detraction from his merits to say he is plainspoken" -01220984 04 n 04 behavior 0 behaviour 0 conduct 0 doings 0 009 @ 00407535 n 0000 + 02518161 v 0305 ~ 01221611 n 0000 ~ 01223672 n 0000 ~ 01223766 n 0000 ~ 01223877 n 0000 ~ 01224031 n 0000 ~ 01224346 n 0000 ~ 01226289 n 0000 | manner of acting or controlling yourself -01221254 04 n 02 behavior 1 behaviour 1 003 @ 00407535 n 0000 ;c 06136258 n 0000 ~ 01221464 n 0000 | (psychology) the aggregate of the responses or reactions or movements made by an organism in any situation -01221464 04 n 01 territoriality 0 002 @ 01221254 n 0000 + 02409500 a 0101 | the behavior of a male animal that defines and defends its territory -01221611 04 n 01 aggression 1 006 @ 01220984 n 0000 ~ 01221790 n 0000 ~ 01222333 n 0000 ~ 01222477 n 0000 ~ 01223032 n 0000 ~ 01223143 n 0000 | deliberately unfriendly behavior -01221790 04 n 03 aggravation 0 irritation 0 provocation 0 007 @ 01221611 n 0000 + 01789514 v 030b + 01787955 v 0206 + 01820901 v 0103 ~ 01172598 n 0000 ~ 01222034 n 0000 ~ 01222859 n 0000 | unfriendly behavior that causes anger or resentment -01222034 04 n 01 last_straw 0 001 @ 01221790 n 0000 | the final irritation that stretches your patience beyond the limit -01222157 04 n 01 exacerbation 0 002 @ 00425451 n 0000 + 01820901 v 0101 | violent and bitter exasperation; "his foolishness was followed by an exacerbation of their quarrel" -01222333 04 n 01 bitchery 0 002 @ 01221611 n 0000 + 00907657 v 0102 | aggressive remarks and behavior like that of a spiteful malicious woman -01222477 04 n 02 bullying 0 intimidation 1 004 @ 01221611 n 0000 + 01819554 v 0201 + 01781180 v 0201 ~ 01222666 n 0000 | the act of intimidating a weaker person to make them do something -01222666 04 n 03 terrorization 0 terrorisation 0 frightening 0 005 @ 01222477 n 0000 ;c 00759694 n 0000 + 01779165 v 0301 + 01780941 v 0203 + 01780941 v 0102 | the act of inspiring with fear -01222859 04 n 03 twit 0 taunt 0 taunting 0 004 @ 01221790 n 0000 + 00850501 v 0308 + 00850501 v 0208 + 00850501 v 0109 | aggravation by deriding or mocking or criticizing -01223032 04 n 02 raising_hell 0 hell_raising 0 001 @ 01221611 n 0000 | making trouble just for the fun of it -01223143 04 n 01 self-assertion 0 001 @ 01221611 n 0000 | the act of asserting yourself in an aggressive manner -01223257 04 n 01 condemnation 0 003 @ 00874621 n 0000 ;c 08441203 n 0000 + 00856578 v 0101 | (law) the act of condemning (as land forfeited for public use) or judging to be unfit for use (as a food product or an unsafe building) -01223488 04 n 03 stigmatization 0 stigmatisation 0 branding 0 005 @ 00874621 n 0000 + 02508245 v 0202 + 00508645 v 0202 + 02508245 v 0101 + 00508645 v 0101 | the act of stigmatizing -01223672 04 n 01 bohemianism 0 001 @ 01220984 n 0000 | conduct characteristic of a bohemian -01223766 04 n 01 dirty_pool 0 001 @ 01220984 n 0000 | conduct that is unfair or unethical or unsportsmanlike -01223877 04 n 01 dirty_tricks 0 002 @ 01220984 n 0000 ;u 06295235 n 0000 | underhand commercial or political behavior designed to discredit an opponent -01224031 04 n 04 discourtesy 0 offense 2 offence 2 offensive_activity 0 008 @ 01220984 n 0000 + 01793177 v 0205 ~ 01224517 n 0000 ~ 01224828 n 0000 ~ 01224914 n 0000 ~ 01225027 n 0000 ~ 01225562 n 0000 ~ 01225783 n 0000 | a lack of politeness; a failure to show regard for others; wounding the feelings or others -01224346 04 n 01 easiness 0 001 @ 01220984 n 0000 | the quality of being easy in behavior or style; "there was an easiness between them"; "a natural easiness of manner" -01224517 04 n 02 derision 0 ridicule 0 005 @ 01224031 n 0000 + 00752847 a 0202 + 00851933 v 0201 + 00852922 v 0101 ~ 01224700 n 0000 | the act of deriding or treating with contempt -01224700 04 n 01 mock 0 002 @ 01224517 n 0000 + 00849332 v 0101 | the act of mocking or ridiculing; "they made a mock of him" -01224828 04 n 01 indelicacy 0 001 @ 01224031 n 0000 | an impolite act or expression -01224914 04 n 01 insolence 0 002 @ 01224031 n 0000 + 01996051 a 0102 | an offensive disrespectful impudent act -01225027 04 n 02 insult 0 affront 0 005 @ 01224031 n 0000 + 00848420 v 0203 + 00848420 v 0102 ~ 01225299 n 0000 ~ 01225397 n 0000 | a deliberately offensive act or something producing the effect of deliberate disrespect; "turning his back on me was a deliberate insult" -01225299 04 n 01 indignity 0 001 @ 01225027 n 0000 | an affront to one's dignity or self-esteem -01225397 04 n 03 scandalization 0 scandalisation 0 outrage 0 004 @ 01225027 n 0000 + 01810447 v 0307 + 01810447 v 0204 + 01810447 v 0103 | the act of scandalizing -01225562 04 n 01 presumption 0 005 @ 01224031 n 0000 + 00205696 a 0103 + 02374924 v 0103 + 00011551 v 0101 + 00632236 v 0102 | a kind of discourtesy in the form of an act of presuming; "his presumption was intolerable" -01225783 04 n 02 rebuff 0 slight 0 005 @ 01224031 n 0000 + 00617413 v 0201 + 00798539 v 0101 ~ 01225997 n 0000 ~ 01226181 n 0000 | a deliberate discourteous act (usually as an expression of anger or disapproval) -01225997 04 n 03 snub 0 cut 3 cold_shoulder 0 003 @ 01225783 n 0000 + 00617413 v 0302 + 01059564 v 0103 | a refusal to recognize someone you know; "the snub was clearly intentional" -01226181 04 n 01 silent_treatment 0 001 @ 01225783 n 0000 | an aloof refusal to speak to someone you know -01226289 04 n 02 the_way_of_the_world 0 the_ways_of_the_world 0 001 @ 01220984 n 0000 | the manner in which people typically behave or things typically happen; "the ordinary reader is endowed with considerable wisdom and knowledge of the way of the world"; "she was well-versed in the ways of the world before she had taken the veil"; "he was amazingly innocent of the ways of the world" -01226679 04 n 02 benevolence 0 benefaction 0 003 @ 00034574 n 0000 + 02548219 v 0201 + 02661446 a 0101 | an act intending or showing kindness and good will -01226837 04 n 01 cupboard_love 0 001 @ 00034574 n 0000 | a show of affection motivated by selfishness -01226941 04 n 02 favor 0 favour 0 004 @ 00034574 n 0000 + 02453692 v 0203 + 02464725 v 0101 ~ 01227083 n 0000 | an act of gracious kindness -01227083 04 n 02 turn 4 good_turn 0 001 @ 01226941 n 0000 | a favor for someone; "he did me a good turn" -01227190 04 n 02 forgiveness 0 pardon 0 004 @ 00034574 n 0000 + 00905852 v 0202 ~ 01227351 n 0000 ~ 01227691 n 0000 | the act of excusing a mistake or offense -01227351 04 n 01 condonation 0 002 @ 01227190 n 0000 + 00893167 v 0102 | a pardon by treating the offender as if the offense had not occurred -01227495 04 n 01 mercy 1 001 @ 01209220 n 0000 | alleviation of distress; showing great kindness toward the distressed; "distributing food and clothing to the flood victims was an act of mercy" -01227691 04 n 01 exculpation 0 002 @ 01227190 n 0000 + 00904046 v 0106 | the act of freeing from guilt or blame -01227805 04 n 01 endearment 0 002 @ 00034574 n 0000 + 01807170 v 0101 | the act of showing affection -01227908 04 n 02 politeness 0 civility 0 006 @ 00037396 n 0000 + 00642379 a 0201 + 00641158 a 0101 ~ 01228245 n 0000 ~ 01228877 n 0000 ~ 01229712 n 0000 | the act of showing regard for others -01228102 04 n 01 reverence 0 003 @ 00037396 n 0000 ~ 07274425 n 0000 ~ 07274890 n 0000 | an act showing respect (especially a bow or curtsy) -01228245 04 n 01 courtesy 0 003 @ 01227908 n 0000 ~ 01228645 n 0000 ~ 01228792 n 0000 | a courteous or respectful or considerate act -01228380 04 n 01 gesture 2 002 @ 06797169 n 0000 ~ 01228544 n 0000 | something done as an indication of intention; "a political gesture"; "a gesture of defiance" -01228544 04 n 01 beau_geste 0 001 @ 01228380 n 0000 | a gracious (but usually meaningless) gesture -01228645 04 n 01 attention 2 001 @ 01228245 n 0000 | a courteous act indicating affection; "she tried to win his heart with her many attentions" -01228792 04 n 01 gallantry 0 001 @ 01228245 n 0000 | polite attentiveness to women -01228877 04 n 02 deference 0 respect 3 008 @ 01227908 n 0000 + 02457233 v 0201 + 00694068 v 0201 + 01994180 a 0102 + 01994180 a 0101 ~ 01229223 n 0000 ~ 01229350 n 0000 ~ 01229549 n 0000 | a courteous expression (by word or deed) of esteem or regard; "his deference to her wishes was very flattering"; "be sure to give my respects to the dean" -01229223 04 n 02 court 0 homage 0 002 @ 01228877 n 0000 + 02534936 v 0102 | respectful deference; "pay court to the emperor" -01229350 04 n 01 last_respects 0 002 @ 01228877 n 0000 ;u 06295235 n 0000 | the act of expressing respect for someone who has died; "he paid his last respects by standing quietly at the graveside" -01229549 04 n 01 props 0 002 @ 01228877 n 0000 ;u 06295235 n 0000 | proper respect; "I have to give my props to the governor for the way he handled the problem" -01229712 04 n 01 devoir 0 001 @ 01227908 n 0000 | formal expression of respect -01229793 04 n 02 consideration 2 thoughtfulness 0 003 @ 00034574 n 0000 + 02119971 a 0201 + 00691312 v 0101 | a considerate and thoughtful act -01229938 04 n 03 assembly 0 assemblage 0 gathering 0 012 @ 01080366 n 0000 + 02598143 v 0302 + 02428924 v 0302 + 02598143 v 0201 + 02428924 v 0203 ! 00912274 n 0103 ~ 01230283 n 0000 ~ 01230850 n 0000 ~ 01230965 n 0000 ~ 01231686 n 0000 ~ 01231819 n 0000 ~ 01231980 n 0000 | the social act of assembling; "they demanded the right of assembly" -01230283 04 n 02 mobilization 0 mobilisation 0 006 @ 01229938 n 0000 + 01097960 v 0203 + 00270215 v 0202 + 00270215 v 0101 ~ 01230566 n 0000 ~ 01230685 n 0000 | act of marshaling and organizing and making ready for use or action; "mobilization of the country's economic resources" -01230566 04 n 02 economic_mobilization 0 economic_mobilisation 0 001 @ 01230283 n 0000 | mobilization of the economy -01230685 04 n 01 rallying 0 001 @ 01230283 n 0000 | the act of mobilizing for a common purpose; "the bell was a signal for the rallying of the whole neighborhood" -01230850 04 n 02 convocation 0 calling_together 0 002 @ 01229938 n 0000 + 00793037 v 0101 | the act of convoking -01230965 04 n 02 meeting 0 coming_together 0 009 @ 01229938 n 0000 + 02486932 v 0101 + 02428924 v 0101 ~ 01231548 n 0000 ~ 01232091 n 0000 ~ 01232412 n 0000 ~ 01232684 n 0000 ~ 01232842 n 0000 ~ 01233156 n 0000 | the social act of assembling for some common purpose; "his meeting with the salesmen was the high point of his day" -01231296 04 n 01 service_call 0 001 @ 00308370 n 0000 | a trip made by a repairman to visit the location of something in need of service -01231435 04 n 02 assignation 0 tryst 0 001 @ 01231548 n 0000 | a secret rendezvous (especially between lovers) -01231548 04 n 01 rendezvous 0 003 @ 01230965 n 0000 + 02487226 v 0101 ~ 01231435 n 0000 | a meeting planned at a certain time and place -01231686 04 n 02 congregation 0 congregating 0 003 @ 01229938 n 0000 + 02023600 v 0201 + 02023600 v 0101 | the act of congregating -01231819 04 n 02 convention 0 convening 0 005 @ 01229938 n 0000 + 02024508 v 0201 + 00793037 v 0202 + 02024508 v 0101 + 00793037 v 0102 | the act of convening -01231980 04 n 01 concentration 2 002 @ 01229938 n 0000 + 02032934 v 0101 | bringing together military forces -01232091 04 n 01 session 0 002 @ 01230965 n 0000 ~ 01232246 n 0000 | a meeting devoted to a particular activity; "a filming session"; "a gossip session" -01232246 04 n 03 course_session 0 class_period 0 recitation 1 002 @ 01232091 n 0000 #p 00884466 n 0000 | a regularly scheduled session as part of a course of study -01232412 04 n 04 socialization 1 socialisation 1 socializing 0 socialising 0 005 @ 01230965 n 0000 + 02388950 v 0402 + 02388950 v 0301 + 02388950 v 0202 + 02388950 v 0101 | the act of meeting for social purposes; "there was too much socialization with the enlisted men" -01232684 04 n 01 visit 0 002 @ 01230965 n 0000 ~ 01055493 n 0000 | the act of going to see some person in a professional capacity; "a visit to the dentist" -01232842 04 n 01 visit 1 002 @ 01230965 n 0000 ~ 01232978 n 0000 | the act of visiting in an official capacity (as for an inspection) -01232978 04 n 01 flying_visit 0 001 @ 01232842 n 0000 | a visit that last for only a very short time; "he wanted to hear all about my flying visit to his old stamping grounds" -01233156 04 n 01 visit 2 006 @ 01230965 n 0000 + 02487573 v 0101 ~ 00652069 n 0000 ~ 00652311 n 0000 ~ 01055954 n 0000 ~ 01056236 n 0000 | the act of going to see some person or place or thing for a short time; "he dropped by for a visit" -01233397 04 n 02 attendance 0 attending 1 007 @ 01080366 n 0000 + 01846815 a 0101 + 02612762 v 0101 ! 01234090 n 0101 ~ 01233627 n 0000 ~ 01233802 n 0000 ~ 01233917 n 0000 | the act of being present (at a meeting or event etc.) -01233627 04 n 03 appearance 1 appearing 0 coming_into_court 0 002 @ 01233397 n 0000 + 02597762 v 0101 | formal attendance (in court or at a hearing) of a party in an action -01233802 04 n 01 presence 0 003 @ 01233397 n 0000 + 01846413 a 0101 ! 01234345 n 0101 | the act of being present -01233917 04 n 01 turnout 0 002 @ 01233397 n 0000 + 02429475 v 0101 | attendance for a particular event or purpose (as to vote in an election); "the turnout for the rally" -01234090 04 n 01 nonattendance 0 005 @ 01080366 n 0000 ! 01233397 n 0101 ~ 01234243 n 0000 ~ 01234345 n 0000 ~ 01234612 n 0000 | the failure to attend -01234243 04 n 01 nonappearance 0 001 @ 01234090 n 0000 | failure to appear (especially as at court) -01234345 04 n 01 absence 0 007 @ 01234090 n 0000 + 01847672 a 0101 + 00421535 v 0101 ! 01233802 n 0101 ~ 00067254 n 0000 ~ 00067397 n 0000 ~ 01234528 n 0000 | failure to be present -01234528 04 n 01 absenteeism 0 001 @ 01234345 n 0000 | habitual absence from work -01234612 04 n 02 truancy 0 hooky 0 002 @ 01234090 n 0000 + 01848171 a 0101 | failure to attend (especially school) -01234729 04 n 03 return 6 paying_back 0 getting_even 0 005 @ 01080366 n 0000 ~ 01235137 n 0000 ~ 01235258 n 0000 ~ 01236049 n 0000 ~ 01237080 n 0000 | a reciprocal group action; "in return we gave them as good as we got" -01234952 04 n 01 answer 0 003 @ 00859001 n 0000 + 00718308 v 0101 + 00719590 v 0101 | a nonverbal reaction; "his answer to any problem was to get drunk"; "their answer was to sue me" -01235137 04 n 02 requital 0 payment 1 002 @ 01234729 n 0000 + 02344060 v 0101 | an act of requiting; returning in kind -01235258 04 n 02 retaliation 0 revenge 0 006 @ 01234729 n 0000 + 01153486 v 0201 + 01153486 v 0103 + 01153165 v 0101 ~ 01235463 n 0000 ~ 01235946 n 0000 | action taken in return for an injury or offense -01235463 04 n 03 vengeance 0 retribution 1 payback 0 002 @ 01235258 n 0000 + 01153947 v 0301 | the act of taking revenge (harming someone in retaliation for something harmful that they have done) especially in the next life; "Vengeance is mine; I will repay, saith the Lord"--Romans 12:19; "For vengeance I would do nothing. This nation is too great to look for mere revenge"--James Garfield; "he swore vengeance on the man who betrayed him"; "the swiftness of divine retribution" -01235946 04 n 01 reprisal 0 001 @ 01235258 n 0000 | a retaliatory action against an enemy in wartime -01236049 04 n 01 reciprocation 0 002 @ 01234729 n 0000 + 02372326 v 0101 | the act of making or doing something in return -01236173 04 n 01 feud 0 003 @ 00958896 n 0000 + 01123261 v 0101 ~ 01236947 n 0000 | a bitter quarrel between two parties -01236296 04 n 02 war 2 warfare 2 003 @ 00958896 n 0000 ~ 01236491 n 0000 ~ 01236633 n 0000 | an active struggle between competing entities; "a price war"; "a war of wits"; "diplomatic warfare" -01236491 04 n 01 drug_war 0 002 @ 01236296 n 0000 ;c 08441203 n 0000 | conflict between law enforcement and those who deal in illegal drugs -01236633 04 n 01 trench_warfare 1 001 @ 01236296 n 0000 | a struggle (usually prolonged) between competing entities in which neither side is able to win; "the hope that his superior campaigning skills would make a difference evaporated in the realization that electioneering had become a form of trench warfare" -01236947 04 n 02 vendetta 0 blood_feud 0 001 @ 01236173 n 0000 | a feud in which members of the opposing parties murder each other -01237080 04 n 01 tit_for_tat 0 001 @ 01234729 n 0000 | an equivalent given in return -01237167 04 n 01 aggression 2 003 @ 00964343 n 0000 #p 00973077 n 0000 + 01118449 v 0102 | the act of initiating hostilities -01237294 04 n 02 democratization 0 democratisation 0 001 @ 01080366 n 0000 | the action of making something democratic -01237415 04 n 02 consolidation 0 integration 2 010 @ 00378985 n 0000 + 00467451 v 0201 + 00466651 v 0201 + 00242747 v 0101 + 00242580 v 0101 ~ 01237872 n 0000 ~ 01238267 n 0000 ~ 01238424 n 0000 ~ 01238607 n 0000 ~ 01238847 n 0000 | the act of combining into an integral whole; "a consolidation of two corporations"; "after their consolidation the two bills were passed unanimously"; "the defendants asked for a consolidation of the actions against them" -01237872 04 n 02 centralization 0 centralisation 0 004 @ 01237415 n 0000 + 00405236 v 0202 + 00405236 v 0101 ! 01238058 n 0101 | the act of consolidating power under a central control -01238058 04 n 02 decentralization 0 decentralisation 0 004 @ 00367976 n 0000 + 00405540 v 0203 + 00405540 v 0101 ! 01237872 n 0101 | the spread of power away from the center to local branches or governments -01238267 04 n 01 incorporation 1 003 @ 01237415 n 0000 + 01541000 v 0101 + 00466651 v 0102 | consolidating two or more things; union in (or into) one body -01238424 04 n 03 amalgamation 0 merger 0 uniting 1 004 @ 01237415 n 0000 + 00243124 v 0301 + 00243124 v 0203 + 00367685 v 0203 | the combination of two or more commercial companies -01238607 04 n 02 vertical_integration 0 vertical_combination 0 002 @ 01237415 n 0000 + 02824040 a 0101 | absorption into a single firm of several firms involved in all aspects of a product's manufacture from raw materials to distribution -01238847 04 n 02 horizontal_integration 0 horizontal_combination 0 001 @ 01237415 n 0000 | absorption into a single firm of several firms involved in the same level of production and sharing resources at that level -01239064 04 n 04 engagement 0 participation 0 involvement 0 involution 2 012 @ 01080366 n 0000 + 02677567 v 0401 + 02677567 v 0301 ! 01239487 n 0303 + 02450256 v 0201 + 01082606 v 0202 ! 01239487 n 0202 + 02375131 v 0102 ! 01239487 n 0101 ~ 01239868 n 0000 ~ 01240210 n 0000 ~ 01240745 n 0000 | the act of sharing in the activities of a group; "the teacher tried to increase his students' engagement in class activities" -01239487 04 n 03 non-engagement 0 nonparticipation 0 non-involvement 0 006 @ 01080366 n 0000 ! 01239064 n 0303 ! 01239064 n 0202 ! 01239064 n 0101 ~ 01239717 n 0000 ~ 01240850 n 0000 | withdrawing from the activities of a group -01239717 04 n 01 isolation 1 001 @ 01239487 n 0000 | a country's withdrawal from international politics; "he opposed a policy of American isolation" -01239868 04 n 01 commitment 2 003 @ 01239064 n 0000 + 02271137 v 0103 ~ 01240064 n 0000 | an engagement by contract involving financial obligation; "his business commitments took him to London" -01240064 04 n 01 incurrence 0 002 @ 01239868 n 0000 + 02721031 v 0101 | the act of incurring (making yourself subject to something undesirable) -01240210 04 n 02 intervention 0 intercession 0 004 @ 01239064 n 0000 + 00760956 v 0201 + 02538765 v 0101 ~ 01240432 n 0000 | the act of intervening (as to mediate a dispute, etc.); "it occurs without human intervention" -01240432 04 n 02 mediation 0 intermediation 0 004 @ 01240210 n 0000 + 00760956 v 0203 + 00760956 v 0102 ~ 01240628 n 0000 | the act of intervening for the purpose of bringing about a settlement -01240628 04 n 01 matchmaking 0 001 @ 01240432 n 0000 | mediation in order to bring about a marriage between others -01240745 04 n 01 group_participation 0 001 @ 01239064 n 0000 | participation by all members of a group -01240850 04 n 01 neutrality 0 003 @ 01239487 n 0000 + 00732160 a 0101 + 10355306 n 0101 | nonparticipation in a dispute or war -01240979 04 n 02 annulment 0 invalidation 0 006 @ 00215314 n 0000 ;c 08441203 n 0000 + 02478059 v 0201 + 00448440 v 0201 + 02478059 v 0102 ~ 01241216 n 0000 | (law) a formal termination (of a relationship or a judicial proceeding etc) -01241216 04 n 01 dissolution_of_marriage 0 002 @ 01240979 n 0000 ;c 08441203 n 0000 | an annulment of a marriage -01241331 04 n 02 vindication 1 exoneration 0 005 @ 01247647 n 0000 + 00904046 v 0205 + 00904690 v 0101 ~ 01241767 n 0000 ~ 01241997 n 0000 | the act of vindicating or defending against criticism or censure etc.; "friends provided a vindication of his position" -01241594 04 n 01 whitewash 0 003 @ 01247647 n 0000 + 02148109 v 0101 + 00904878 v 0101 | a specious or deceptive clearing that attempts to gloss over failings and defects -01241767 04 n 01 justification 0 003 @ 01241331 n 0000 + 00894738 v 0104 + 00896803 v 0101 | the act of defending or explaining or making excuses for by reasoning; "the justification of barbarous means by holy ends"- H.J.Muller -01241997 04 n 01 rehabilitation 3 002 @ 01241331 n 0000 + 02565272 v 0101 | vindication of a person's character and the re-establishment of that person's reputation -01242164 04 n 01 job_action 0 004 @ 01168369 n 0000 ~ 01242354 n 0000 ~ 01242539 n 0000 ~ 01243674 n 0000 | a temporary action by workers to protest management decision or to make demands -01242354 04 n 01 go-slow 0 002 @ 01242164 n 0000 ;r 08860123 n 0000 | a form of protest by workers in which they deliberately slow down in order to cause problem from their employers -01242539 04 n 01 work_to_rule 0 001 @ 01242164 n 0000 | a job action in which workers cause a slowdown by doing only the minimum amount required by the rules of the workplace -01242716 04 n 03 passive_resistance 0 nonviolent_resistance 0 nonviolence 0 005 @ 01168369 n 0000 + 00249576 a 0301 + 02512922 a 0301 ~ 01242962 n 0000 ~ 01243262 n 0000 | peaceful resistance to a government by fasting or refusing to cooperate -01242962 04 n 01 hunger_strike 0 002 @ 01069980 n 0000 @ 01242716 n 0000 | a voluntary fast undertaken as a means of protest -01243089 04 n 01 Ramadan 0 002 @ 01069980 n 0000 ;c 06234825 n 0000 | (Islam) a fast (held from sunrise to sunset) that is carried out during the Islamic month of Ramadan -01243262 04 n 01 Satyagraha 0 001 @ 01242716 n 0000 | the form of nonviolent resistance initiated in India by Mahatma Gandhi in order to oppose British rule and to hasten political reforms -01243453 04 n 01 recusancy 0 003 @ 01168369 n 0000 + 01691302 a 0102 + 01614558 a 0101 | refusal to submit to established authority; originally the refusal of Roman Catholics to attend services of the Church of England -01243674 04 n 02 strike 0 work_stoppage 0 006 @ 01242164 n 0000 + 02412647 v 0101 ~ 01243969 n 0000 ~ 01244127 n 0000 ~ 01244341 n 0000 ~ 01244451 n 0000 | a group's refusal to work in protest against low pay or bad work conditions; "the strike lasted more than a month before it was settled" -01243969 04 n 02 sit-down 0 sit-down_strike 0 001 @ 01243674 n 0000 | a strike in which workers refuse to leave the workplace until a settlement is reached -01244127 04 n 02 sympathy_strike 0 sympathetic_strike 0 001 @ 01243674 n 0000 | a strike in support of other workers who are on strike; a strike not resulting from direct grievances against the workers' employer -01244341 04 n 01 walkout 0 002 @ 01243674 n 0000 + 02412647 v 0102 | a strike in which the workers walk out -01244451 04 n 01 wildcat_strike 0 001 @ 01243674 n 0000 | a strike undertaken by workers without approval from the officials of their union -01244593 04 n 04 unsnarling 0 untangling 0 disentanglement 1 extrication 0 009 @ 00095502 n 0000 + 01585759 v 0401 + 02678070 v 0303 + 01585759 v 0303 + 01523823 v 0302 + 01463520 v 0301 + 00038365 v 0303 + 01585759 v 0202 + 01463520 v 0102 | the act of releasing from a snarled or tangled condition -01244895 04 n 01 sabotage 0 003 @ 00217014 n 0000 + 02543607 v 0101 ~ 00979742 n 0000 | a deliberate act of destruction or disruption in which equipment is damaged -01245061 04 n 02 extermination 0 liquidation 1 001 @ 00217014 n 0000 | the act of exterminating -01245159 04 n 03 genocide 0 race_murder 0 racial_extermination 0 002 @ 00219012 n 0000 ~i 01245471 n 0000 | systematic killing of a racial or cultural group -01245318 04 n 01 holocaust 0 001 @ 00217014 n 0000 | an act of mass destruction and loss of life (especially in war or by fire); "a nuclear holocaust" -01245471 04 n 02 Holocaust 1 final_solution 0 001 @i 01245159 n 0000 | the mass murder of Jews under the German Nazi regime from 1941 until 1945 -01245618 04 n 01 throw 1 003 @ 00430140 n 0000 ~ 01245813 n 0000 ~ 01246086 n 0000 | casting an object in order to determine an outcome randomly; "he risked his fortune on a throw of the dice" -01245813 04 n 02 cast 1 roll 3 004 @ 01245618 n 0000 #p 00508952 n 0000 + 01078050 v 0102 ~ 01245950 n 0000 | the act of throwing dice -01245950 04 n 01 natural 0 002 @ 01245813 n 0000 ;c 00508952 n 0000 | (craps) a first roll of 7 or 11 that immediately wins the stake -01246086 04 n 02 flip 1 toss 1 003 @ 01245618 n 0000 + 01893079 v 0202 + 01893079 v 0101 | the act of flipping a coin -01246206 04 n 01 flip 4 001 @ 00104539 n 0000 | a sudden, quick movement; "with a flip of the wrist"; "the fish flipped over" -01246334 04 n 01 strafe 0 002 @ 00972621 n 0000 + 01136142 v 0101 | an attack of machine-gun fire or cannon fire from a low flying airplane; "the next morning they carried out a strafe of enemy airfields" -01246541 04 n 02 surprise_attack 0 coup_de_main 0 004 @ 00972621 n 0000 ~ 01246697 n 0000 ~ 01246926 n 0000 ~ 01247156 n 0000 | an attack without warning -01246697 04 n 01 terrorist_attack 0 003 @ 01246541 n 0000 @ 00759694 n 0000 ~i 15300051 n 0000 | a surprise attack involving the deliberate use of violence against civilians in the hope of attaining political or religious aims -01246926 04 n 04 ambush 0 ambuscade 0 lying_in_wait 0 trap 0 005 @ 01246541 n 0000 + 01138204 v 0206 + 01142203 v 0102 + 01138204 v 0101 ~ 01247306 n 0000 | the act of concealing yourself and lying in wait to attack by surprise -01247156 04 n 01 pre-emptive_strike 0 001 @ 01246541 n 0000 | a surprise attack that is launched in order to prevent the enemy from doing it to you -01247306 04 n 01 dry-gulching 0 002 @ 01246926 n 0000 @ 00220522 n 0000 | the act of killing from ambush -01247413 04 n 01 emancipation 0 004 @ 00095502 n 0000 + 09756637 n 0102 + 02497400 v 0101 + 02496498 v 0102 | freeing someone from the control of another; especially a parent's relinquishing authority and control over a minor child -01247647 04 n 01 clearing 0 005 @ 00095502 n 0000 + 00904046 v 0103 ~ 00252662 n 0000 ~ 01241331 n 0000 ~ 01241594 n 0000 | the act of freeing from suspicion -01247807 04 n 01 manumission 0 002 @ 00095502 n 0000 + 02496498 v 0101 | the formal act of freeing from slavery; "he believed in the manumission of the slaves" -01247969 04 n 01 radio_observation 0 001 @ 01002956 n 0000 | an observation made with a radio telescope -01248075 04 n 05 stupidity 0 betise 0 folly 1 foolishness 1 imbecility 0 001 @ 00070965 n 0000 | a stupid mistake -01248191 04 n 02 admission 0 admittance 0 004 @ 00049003 n 0000 + 02502536 v 0101 ~ 01248418 n 0000 ~ 01248608 n 0000 | the act of admitting someone to enter; "the surgery was performed on his second admission to the clinic" -01248418 04 n 01 readmission 0 003 @ 01248191 n 0000 + 02390786 v 0101 + 02503212 v 0101 | the act of admitting someone again; "the surgery was performed on his readmission to the clinic" -01248608 04 n 02 matriculation 0 matric 0 002 @ 01248191 n 0000 + 02471203 v 0101 | admission to a group (especially a college or university) -01248752 04 n 01 remarriage 0 002 @ 01036996 n 0000 + 02490247 v 0101 | the act of marrying again -01248852 04 n 01 renewal 1 003 @ 01018630 n 0000 + 01631072 v 0102 ~ 01248961 n 0000 | the act of renewing -01248961 04 n 01 self-renewal 0 001 @ 01248852 n 0000 | the act of renewing yourself (or itself) -01249060 04 n 01 replication 1 002 @ 01018630 n 0000 + 01734502 v 0105 | the repetition of an experiment in order to test the validity of its conclusion; "scientists will not believe an experimental result until they have seen at least one replication" -01249315 04 n 03 amnesty 0 pardon 1 free_pardon 0 004 @ 01071411 n 0000 ;c 08441203 n 0000 + 00905399 v 0201 + 00905677 v 0101 | the formal act of liberating someone -01249483 04 n 01 demolition 0 004 @ 00217014 n 0000 + 01800195 v 0103 + 01656458 v 0101 + 01083373 v 0101 | the act of demolishing -01249616 04 n 01 spoliation 1 003 @ 00217014 n 0000 ;c 08441203 n 0000 + 00203081 v 0102 | (law) the intentional destruction of a document or an alteration of it that destroys its value as evidence -01249816 04 n 03 vandalism 0 hooliganism 0 malicious_mischief 0 002 @ 00736375 n 0000 @ 00217014 n 0000 | willful wanton and malicious destruction of the property of others -01249991 04 n 02 recession 1 ceding_back 0 002 @ 00213052 n 0000 + 01113806 v 0105 | the act of ceding back -01250101 04 n 01 amendment 0 002 @ 00258854 n 0000 + 00996328 v 0101 | the act of amending or correcting -01250208 04 n 01 emendation 0 001 @ 00258854 n 0000 | a correction by emending; a correction resulting from critical editing -01250335 04 n 01 hit 4 002 @ 00220522 n 0000 + 02482425 v 0103 | a murder carried out by an underworld syndicate; "it has all the earmarks of a Mafia hit" -01250492 04 n 01 infanticide 0 001 @ 00220522 n 0000 | murdering an infant -01250569 04 n 01 shoot-down 0 001 @ 00220522 n 0000 | murder by shooting someone down in cold blood -01250671 04 n 01 tyrannicide 0 001 @ 00220522 n 0000 | killing a tyrant -01250745 04 n 01 thuggee 0 001 @ 00220522 n 0000 | murder and robbery by thugs -01250826 04 n 02 transmutation 0 transubstantiation 0 003 @ 00400083 n 0000 + 00382635 v 0203 + 00382635 v 0102 | an act that changes the form or character or substance of something -01251010 04 n 01 barrage_jamming 0 001 @ 01253379 n 0000 | electronic jamming over a wide range of frequencies simultaneously -01251138 04 n 02 spot_jamming 0 selective_jamming 0 001 @ 01253379 n 0000 | electronic jamming of a specific channel or frequency -01251270 04 n 01 electronic_deception 0 004 @ 00995134 n 0000 ~ 01251489 n 0000 ~ 01251724 n 0000 ~ 01251923 n 0000 | the deliberate use of electromagnetic energy in a manner intended to convey misleading information -01251489 04 n 02 manipulative_electronic_deception 0 electronic_manipulative_deception 0 001 @ 01251270 n 0000 | actions to eliminate revealing telltale indicators that could be used by the enemy (or to convey misleading indicators) -01251724 04 n 02 simulative_electronic_deception 0 electronic_simulative_deception 0 001 @ 01251270 n 0000 | actions to represent friendly notional or actual capabilities to mislead hostile forces -01251923 04 n 02 imitative_electronic_deception 0 electronic_imitative_deception 0 001 @ 01251270 n 0000 | the introduction of electromagnetic energy into enemy systems that imitates enemy emissions -01252124 04 n 02 waste 1 permissive_waste 0 002 @ 00030358 n 0000 ;c 08441203 n 0000 | (law) reduction in the value of an estate caused by act or neglect -01252280 04 n 03 colonization 0 colonisation 0 settlement 1 007 @ 00237078 n 0000 + 00413876 v 0301 + 02590340 v 0202 + 00414174 v 0202 + 02590340 v 0101 + 00414174 v 0101 ~ 01257969 n 0000 | the act of colonizing; the establishment of colonies; "the British colonization of America" -01252566 04 n 02 resettlement 0 relocation 2 004 @ 00315986 n 0000 + 00414409 v 0201 + 00414627 v 0201 + 00415828 v 0101 | the transportation of people (as a family or colony) to a new settlement (as after an upheaval of some kind) -01252800 04 n 01 dismount 0 002 @ 01022483 n 0000 + 01958452 v 0102 | the act of dismounting (a horse or bike etc.) -01252918 04 n 01 radiation 0 003 @ 01253060 n 0000 + 02686952 v 0101 ~ 00978580 n 0000 | the act of spreading outward from a central source -01253060 04 n 02 emission 0 emanation 0 007 @ 00044455 n 0000 + 00546192 v 0201 + 00004605 v 0203 + 02767308 v 0101 + 00105333 v 0101 ~ 01252918 n 0000 ~ 01253277 n 0000 | the act of emitting; causing to flow forth -01253277 04 n 02 discharge 4 venting 0 002 @ 01253060 n 0000 + 00488770 v 0201 | the act of venting -01253379 04 n 03 jamming 0 electronic_jamming 0 jam 0 005 @ 00995134 n 0000 + 01057034 v 0301 + 01057034 v 0101 ~ 01251010 n 0000 ~ 01251138 n 0000 | deliberate radiation or reflection of electromagnetic energy for the purpose of disrupting enemy use of electronic devices or systems -01253665 04 n 01 vacation 1 002 @ 00231887 n 0000 + 00799798 v 0109 | the act of making something legally void -01253778 04 n 02 harmonization 0 harmonisation 0 005 @ 00545501 n 0000 + 01706889 v 0202 + 00482180 v 0202 + 01706889 v 0101 + 00482180 v 0101 | singing in harmony -01253944 04 n 01 humming 0 002 @ 00545501 n 0000 + 01055829 v 0101 | the act of singing with closed lips -01254051 04 n 03 winnow 0 winnowing 0 sifting 0 004 @ 01254253 n 0000 + 01460029 v 0301 + 01460937 v 0201 + 01460937 v 0101 | the act of separating grain from chaff; "the winnowing was done by women" -01254253 04 n 01 separation 3 004 @ 01016832 n 0000 + 01458973 v 0101 ~ 00393161 n 0000 ~ 01254051 n 0000 | sorting one thing from others; "the separation of wheat from chaff"; "the separation of mail by postal zones" -01254473 04 n 01 teleportation 0 003 @ 00315986 n 0000 ;c 06368628 n 0000 + 02104690 v 0101 | a hypothetical mode of instantaneous transportation; matter is dematerialized at one place and recreated at another -01254685 04 n 02 intonation 0 chanting 0 006 @ 00545501 n 0000 + 01049737 v 0201 + 01066775 v 0103 + 01049737 v 0102 + 01049737 v 0103 ~ 01254882 n 0000 | the act of singing in a monotonous tone -01254882 04 n 01 cantillation 0 002 @ 01254685 n 0000 + 01049737 v 0104 | liturgical chanting -01254978 04 n 01 intonation 1 003 @ 00545501 n 0000 + 01049737 v 0102 + 01049737 v 0103 | singing by a soloist of the opening piece of plainsong -01255125 04 n 01 fixed_intonation 0 001 @ 00544842 n 0000 | the intonation of keyboard instruments where the pitch of each note is fixed and cannot be varied by the performer -01255302 04 n 01 karaoke 0 001 @ 00545501 n 0000 | singing popular songs accompanied by a recording of an orchestra (usually in bars or nightclubs) -01255452 04 n 01 part-singing 0 001 @ 00545501 n 0000 | singing with three or more voice parts -01255549 04 n 02 psalmody 0 hymnody 0 001 @ 00545501 n 0000 | the act of singing psalms or hymns -01255648 04 n 02 singalong 0 singsong 0 004 @ 00545501 n 0000 + 02095696 v 0201 + 01050165 v 0201 + 01728613 v 0101 | informal group singing of popular songs -01255808 04 n 02 solfege 0 solfeggio 0 001 @ 00545501 n 0000 | a voice exercise; singing scales or runs to the same syllable -01255935 04 n 03 solmization 0 solfege 1 solfeggio 1 003 @ 00545501 n 0000 + 01731353 v 0101 + 01730384 v 0101 | singing using solfa syllables to denote the notes of the scale of C major -01256124 04 n 01 yodeling 0 002 @ 00545501 n 0000 + 01050651 v 0101 | singing by changing back and forth between the chest voice and a falsetto -01256270 04 n 01 lead 0 002 @ 00457382 n 0000 #p 00488225 n 0000 | the playing of a card to start a trick in bridge; "the lead was in the dummy" -01256417 04 n 02 leadership 0 leading 0 005 @ 00407535 n 0000 + 09623038 n 0101 ~ 01256615 n 0000 ~ 01256743 n 0000 ~ 01257033 n 0000 | the activity of leading; "his leadership inspired the team" -01256615 04 n 01 helm 0 001 @ 01256417 n 0000 | a position of leadership; "the President is at the helm of the Ship of State" -01256743 04 n 01 lead 1 004 @ 01256417 n 0000 + 00813790 v 0103 + 01732921 v 0102 + 02440244 v 0102 | a position of leadership (especially in the phrase `take the lead'); "he takes the lead in any group"; "we were just waiting for someone to take the lead"; "they didn't follow our lead" -01257033 04 n 01 trend_setting 0 001 @ 01256417 n 0000 | the initiating or popularizing of a trend or fashion -01257145 04 n 03 precession 0 precedence 0 precedency 0 008 @ 00407535 n 0000 + 00126497 a 0301 + 01999218 v 0301 + 00126497 a 0201 + 02407766 v 0201 + 02692686 v 0101 + 02712443 v 0102 + 02407766 v 0101 | the act of preceding in time or order or rank (as in a ceremony) -01257418 04 n 01 solo 1 002 @ 00407535 n 0000 + 10623650 n 0101 | any activity that is performed alone without assistance -01257542 04 n 02 flood 0 flowage 0 004 @ 00402535 n 0000 + 00217427 v 0201 + 00452220 v 0101 + 01524523 v 0102 | the act of flooding; filling to overflowing -01257701 04 n 01 parole 0 003 @ 00095502 n 0000 ;c 08441203 n 0000 + 02591893 v 0101 | (law) a conditional release from imprisonment that entitles the person to serve the remainder of the sentence outside the prison as long as the terms of release are complied with -01257969 04 n 01 population 0 002 @ 01252280 n 0000 + 00451279 v 0101 | the act of populating (causing to live in a place); "he deplored the population of colonies with convicted criminals" -01258161 04 n 01 pounce 0 002 @ 00120202 n 0000 + 02064358 v 0101 | the act of pouncing -01258251 04 n 01 probation 0 003 @ 00095502 n 0000 ;c 08441203 n 0000 + 02643872 v 0101 | (law) a way of dealing with offenders without imprisoning them; a defendant found guilty of a crime is released by the court without imprisonment subject to conditions imposed by the court; "probation is part of the sentencing process" -01258579 04 n 01 quarter 0 001 @ 01071411 n 0000 | clemency or mercy shown to a defeated opponent; "he surrendered but asked for quarter" -01258719 04 n 01 recall 1 003 @ 00231887 n 0000 ;r 09044862 n 0000 + 00791506 v 0101 | the act of removing an official by petition -01258852 04 n 01 revocation 0 002 @ 00231887 n 0000 + 00799798 v 0101 | the act (by someone having the authority) of annulling something previously done; "the revocation of a law" -01259034 04 n 02 reprieve 0 respite 1 004 @ 01071411 n 0000 ;c 08441203 n 0000 + 02644035 v 0202 + 02644035 v 0101 | the act of reprieving; postponing or remitting punishment -01259211 04 n 02 revoke 0 renege 0 004 @ 00070965 n 0000 #p 00488225 n 0000 + 00800242 v 0201 + 01074357 v 0101 | the mistake of not following suit when able to do so -01259380 04 n 02 ruff 0 trumping 0 005 @ 00457382 n 0000 #p 00490569 n 0000 ;c 00488225 n 0000 + 01078235 v 0201 + 01078235 v 0102 | (card games) the act of taking a trick with a trump when unable to follow suit -01259594 04 n 01 trick 1 002 @ 00457382 n 0000 ;c 00488225 n 0000 | (card games) in a single round, the sequence of cards played by all the players; the high card is the winner -01259773 04 n 03 awakening 0 wakening 0 waking_up 0 005 @ 00242808 n 0000 + 00018526 v 0207 + 00018526 v 0104 + 00018813 v 0101 ~ 00243102 n 0000 | the act of waking; "it was an early awakening"; "it was the waking up he hated most" -01260008 04 n 01 buzz 0 002 @ 00407535 n 0000 + 02706605 v 0102 | a confusion of activity and gossip; "the buzz of excitement was so great that a formal denial was issued" -01260182 04 n 01 fixation 1 002 @ 00147595 n 0000 + 00486998 v 0101 | the activity of fastening something firmly in position -01260309 04 n 02 immobilization 1 immobilisation 1 003 @ 00819024 n 0000 + 01207149 v 0204 + 01207149 v 0103 | fixation (as by a plaster cast) of a body part in order to promote proper healing; "immobilization of the injured knee was necessary" -01260556 04 n 01 fun 1 002 @ 00407535 n 0000 ;u 07075172 n 0000 | violent and excited activity; "she asked for money and then the fun began"; "they began to fight like fun" -01260731 04 n 02 sin 1 hell 1 002 @ 00407535 n 0000 ;u 07075172 n 0000 | violent and excited activity; "they began to fight like sin" -01260867 04 n 02 excitation 0 excitement 0 006 @ 00242808 n 0000 + 01762528 v 0206 + 00503164 v 0202 + 00503164 v 0102 ~ 01261113 n 0000 ~ 01261293 n 0000 | something that agitates and arouses; "he looked forward to the excitements of the day" -01261113 04 n 02 hair-raiser 0 chiller 0 001 @ 01260867 n 0000 | excitation that makes your hair stand up or that chills your bones; "the movie was an old-fashioned hair-raiser" -01261293 04 n 01 thrill 0 003 @ 01260867 n 0000 + 01812324 v 0104 + 01796346 v 0101 | something that causes you to experience a sudden intense feeling or sensation; "the thrills of space travel" -01261490 04 n 02 incitation 0 incitement 2 004 @ 00242808 n 0000 + 00851239 v 0201 + 01230710 v 0102 + 00851239 v 0101 | an act of urging on or spurring on or rousing to action or instigating; "the incitement of mutiny" -01261712 04 n 02 inflammation 0 inflaming 0 003 @ 00242808 n 0000 + 01761120 v 0201 + 01761120 v 0101 | arousal to violent emotion -01261845 04 n 02 inspiration 1 stirring 1 002 @ 00242808 n 0000 + 01770802 v 0202 | arousing to a particular emotion or action -01261974 04 n 01 stimulation 0 003 @ 00242808 n 0000 + 00770437 v 0102 ~ 01262109 n 0000 | the act of arousing an organism to action -01262109 04 n 02 galvanization 1 galvanisation 1 003 @ 01261974 n 0000 + 01821634 v 0203 + 01821634 v 0102 | stimulation that arouses a person to lively action; "the unexpected news produced a kind of galvanization of the whole team" -01262345 04 n 01 titillation 1 002 @ 00242808 n 0000 + 01816219 v 0101 | an agreeable arousal -01262441 04 n 02 deforestation 0 disforestation 0 003 @ 00394803 n 0000 + 00196024 v 0202 + 00196024 v 0101 | the removal of trees -01262574 04 n 01 skimming 0 002 @ 00391599 n 0000 + 01261018 v 0101 | the act of removing floating material from the surface of a liquid -01262713 04 n 01 withdrawal 3 004 @ 00391599 n 0000 + 02311387 v 0101 ~ 00396213 n 0000 ~ 00396509 n 0000 | the act of taking out money or other capital -01262868 04 n 01 withdrawal 5 001 @ 00391599 n 0000 | the act of withdrawing blood, tumors, etc.; "the nurse was expert at the withdrawal of blood" -01263018 04 n 03 spoil 1 spoiling 0 spoilage 0 005 @ 00744443 n 0000 + 02527651 v 030b + 02527651 v 020b + 00477941 v 0103 + 02527651 v 010b | the act of spoiling something by causing damage to it; "her spoiling my dress was deliberate" -01263257 04 n 03 swerve 0 swerving 0 veering 0 004 @ 00350030 n 0000 + 02033295 v 0305 + 02033295 v 0201 + 02033295 v 0101 | the act of turning aside suddenly -01263418 04 n 01 three-point_turn 0 001 @ 00350030 n 0000 | the act of turning a vehicle around in a limited space by moving in a series of back and forward arcs -01263582 04 n 02 face_saver 0 face_saving 0 001 @ 00035189 n 0000 | an act that avoids a loss of face (of dignity or prestige) -01263711 04 n 02 recruitment 0 enlisting 0 004 @ 00035189 n 0000 + 01097500 v 0201 + 02240319 v 0101 + 01098452 v 0101 | the act of getting recruits; enlisting people for the army (or for a job or a cause etc.) -01263924 04 n 01 smooth 0 002 @ 00035189 n 0000 + 01252971 v 0101 | the act of smoothing; "he gave his hair a quick smooth" -01264050 04 n 02 reference 0 consultation 0 003 @ 00037396 n 0000 + 00877083 v 0201 + 01952898 v 0101 | the act of referring or consulting; "reference to an encyclopedia produced the answer" -01264243 04 n 03 emphasizing 0 accenting 0 accentuation 0 004 @ 00037396 n 0000 + 01013367 v 0306 + 01014609 v 0103 + 01013367 v 0102 | the act of giving special importance or significance to something -01264447 04 n 03 release 0 outlet 0 vent 0 002 @ 00407535 n 0000 + 00944548 v 0301 | activity that frees or expresses creative energy or emotion; "she had no other outlet for her feelings"; "he gave vent to his anger" -01264667 04 n 01 last 0 001 @ 00407535 n 0000 | a person's dying act; the final thing a person can do; "he breathed his last" -01264795 04 n 01 slapshot 0 002 @ 00788632 n 0000 #p 00463543 n 0000 | a fast shot made with a short powerful swing of the hockey stick -01264933 04 n 01 headshot 1 002 @ 00788632 n 0000 #p 00478262 n 0000 | an attempt to put the soccer ball into the net by using the head -01265071 04 n 01 cornhusking 0 001 @ 00394803 n 0000 | the act of removing the husks from ears of corn -01265176 04 n 01 palpebration 0 002 @ 00117959 n 0000 + 00008055 v 0101 | repeated blinking or winking (especially if uncontrolled and persistent) -01265325 04 n 01 bank_examination 0 001 @ 00635850 n 0000 | an examination of the affairs and records of a bank by a state or federal bank examiner -01265475 04 n 01 beatification 1 003 @ 00037396 n 0000 + 01812324 v 0106 + 01812068 v 0101 | the action of rendering supremely blessed and extremely happy -01265632 04 n 01 equilibration 0 001 @ 01159025 n 0000 | stabilization by bringing into equilibrium -01265734 04 n 01 ethnic_cleansing 0 001 @ 01080366 n 0000 | the mass expulsion and killing of one ethnic or religious group in an area by another ethnic or religious group in that area -01265921 04 n 02 jumpstart 0 jump-start 0 001 @ 00037396 n 0000 | starting an automobile engine that has a weak battery by means of jumper cables to another car; "my battery was dead so I had to get a jumpstart from my neighbor" -01266152 04 n 02 mystification 0 obfuscation 0 004 @ 00407535 n 0000 + 00940214 v 0201 + 00622384 v 0106 + 00518653 v 0101 | the activity of obscuring people's understanding, leaving them baffled or bewildered -01266364 04 n 01 negotiation 0 001 @ 00407535 n 0000 | the activity or business of negotiating an agreement; coming to terms -01266491 04 n 02 proclamation 0 promulgation 0 005 @ 00030358 n 0000 + 00861560 v 0201 + 00977336 v 0203 + 00978173 v 0101 + 00977336 v 0101 | the formal act of proclaiming; giving public notice; "his promulgation of the policy proved to be premature" -01266745 04 n 02 socialization 2 socialisation 2 003 @ 01080366 n 0000 + 00405853 v 0202 + 00405853 v 0101 | the action of establishing on a socialist basis; "the socialization of medical services" -01266945 04 n 02 stabilization 1 stabilisation 1 003 @ 00248977 n 0000 ;c 02686568 n 0000 + 01219993 v 0103 | the act of making something (as a vessel or aircraft) less likely to overturn -01267135 04 n 01 stupefaction 0 003 @ 00037396 n 0000 + 02115618 v 0102 + 00268968 v 0102 | the action of stupefying; making dull or lethargic; "the professor was noted for his stupefaction of the students" -01267344 04 n 01 transfusion_reaction 0 001 @ 00859001 n 0000 | reaction of the body to a transfusion of blood that is not compatible with its own blood; an adverse reaction can range from fever and hives to renal failure and shock and death -01267588 04 n 01 upgrade 0 001 @ 00248977 n 0000 | the act of improving something (especially machinery) by raising it to a higher grade (as by adding or replacing components); "the power plant received a new upgrade" -01267808 04 n 01 vampirism 0 001 @ 00037396 n 0000 | the actions or practices of a vampire -01267901 04 n 01 version 0 001 @ 00350030 n 0000 | manual turning of a fetus in the uterus (usually to aid delivery) -01268020 04 n 02 vulgarization 1 vulgarisation 1 003 @ 00271263 n 0000 + 00582318 v 0201 + 00582318 v 0102 | the act of rendering something coarse and unrefined -01268183 04 n 01 witching 0 001 @ 00631378 n 0000 | the use or practice of witchcraft -01268271 04 n 02 xenotransplant 0 xenotransplantation 0 001 @ 00693679 n 0000 | a surgical procedure in which tissue or whole organs are transfered from one species to another species -01268457 04 n 01 Actium 0 002 @i 00958477 n 0000 ;r 08780881 n 0000 | the naval battle in which Antony and Cleopatra were defeated by Octavian's fleet under Agrippa in 31 BC -01268633 04 n 02 Aegates_Isles 0 Aegadean_Isles 0 002 @i 00958477 n 0000 #p 01307299 n 0000 | islands west of Sicily (now known as the Egadi Islands) where the Romans won a naval victory over the Carthaginians that ended the first Punic War in 241 BC -01268886 04 n 02 Aegospotami 0 Aegospotamos 0 002 @i 00958477 n 0000 #p 01306911 n 0000 | a river in ancient Thrace (now Turkey); in the mouth of this river the Spartan fleet under Lysander destroyed the Athenian fleet in the final battle of the Peloponnesian War (404 BC) -01269161 04 n 01 Agincourt 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | a battle in northern France in which English longbowmen under Henry V decisively defeated a much larger French army in 1415 -01269360 04 n 01 Alamo 0 003 @i 01075117 n 0000 @i 00223983 n 0000 ;r 09146111 n 0000 | a siege and massacre at a mission in San Antonio in 1836; Mexican forces under Santa Anna besieged and massacred American rebels who were fighting to make Texas independent of Mexico -01269633 04 n 02 Atlanta 0 battle_of_Atlanta 0 003 @i 01075117 n 0000 #p 01301630 n 0000 ;r 09076675 n 0000 | a siege in which Federal troops under Sherman cut off the railroads supplying the city and then burned it; 1864 -01269857 04 n 02 Austerlitz 0 battle_of_Austerlitz 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08758172 n 0000 | a decisive battle during the Napoleonic campaigns (1805); the French under Napoleon defeated the Russian armies of Czar Alexander I and the Austrian armies of Emperor Francis II -01270153 04 n 01 Bannockburn 0 002 @i 00956485 n 0000 ;r 08890097 n 0000 | a battle in which the Scots under Robert the Bruce defeated the English and assured the independence of Scotland -01270343 04 n 02 Bataan 0 Corregidor 0 003 @i 01075117 n 0000 #p 01312096 n 0000 ;r 08980300 n 0000 | the peninsula and island in the Philippines where Japanese forces besieged American forces in World War II; United States forces surrendered in 1942 and recaptured the area in 1945 -01270628 04 n 01 Battle_of_Britain 0 003 @i 00953559 n 0000 #p 01312096 n 0000 ;r 08860123 n 0000 | the prolonged bombardment of British cities by the German Luftwaffe during World War II and the aerial combat that accompanied it -01270860 04 n 01 Battle_of_Kerbala 0 002 @i 00956485 n 0000 ;r 08914573 n 0000 | a battle in 680 in which the grandson of Mohammed and his followers were killed; "the Battle of Kerbala is the basis for the Ta'ziyehs that are performed annually" -01271107 04 n 03 Battle_of_the_Ardennes_Bulge 0 Battle_of_the_Bulge 0 Ardennes_counteroffensive 0 003 @i 00956485 n 0000 #p 01312096 n 0000 ;r 08941681 n 0000 | a battle during World War II; in December 1944 von Rundstedt launched a powerful counteroffensive in the forest at Ardennes and caught the Allies by surprise -01271428 04 n 04 Battle_of_the_Marne 0 Belleau_Wood 0 Chateau-Thierry 0 Marne_River 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08929922 n 0000 | a World War I battle in northwestern France where the Allies defeated the Germans in 1918 -01271669 04 n 02 Bismarck_Sea 0 battle_of_the_Bismarck_Sea 0 003 @i 00958477 n 0000 #p 01312096 n 0000 ;r 09221900 n 0000 | a naval battle in World War II; Allied land-based bombers destroyed a Japanese convoy in the Bismarck Sea in March 1943 -01271915 04 n 01 Blenheim 0 003 @i 00956485 n 0000 #p 01310789 n 0000 ;r 08766988 n 0000 | the First Duke of Marlborough and Prince Eugene of Savoy defeated the French in 1704 during the War of the Spanish Succession -01272134 04 n 01 Borodino 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 09007723 n 0000 | Napoleon defeated the Russians in 1812 in a pitched battle at a village in western Russia west of Moscow, but irreparably weakened his army -01272367 04 n 01 Bosworth_Field 0 003 @i 00956485 n 0000 #p 01311045 n 0000 ;r 08884012 n 0000 | the battle that ended the Wars of the Roses (1485); Richard III was killed and Henry Tudor was crowned as Henry VII -01272582 04 n 01 Bouvines 0 002 @i 00956485 n 0000 ;r 08849753 n 0000 | in 1214 the French under Philip Augustus defeated a coalition formed against him in one of the greatest battles of the middle ages -01272787 04 n 02 Boyne 0 battle_of_Boyne 0 003 @i 00956485 n 0000 #p 01310536 n 0000 ;r 08859173 n 0000 | a battle in the War of the Grand Alliance in Ireland in 1690; William III defeated the deposed James II and so ended the Catholicism that had been reintroduced in England by the Stuarts -01273081 04 n 02 Brunanburh 0 battle_of_Brunanburh 0 002 @i 00956485 n 0000 ;r 08890097 n 0000 | a battle in 937 when Athelstan defeated the Scots -01273230 04 n 01 Buena_Vista 0 003 @i 00956485 n 0000 #p 01306007 n 0000 ;r 08740875 n 0000 | a pitched battle in the Mexican War in 1847; United States forces under Zachary Taylor defeated the Mexican forces under Santa Anna at a locality in northern Mexico -01273491 04 n 02 Bull_Run 0 Battle_of_Bull_Run 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09148970 n 0000 | either of two battles during the American Civil War (1861 and 1862); Confederate forces defeated the Federal army in both battles -01273735 04 n 02 Bunker_Hill 0 battle_of_Bunker_Hill 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09095751 n 0000 | the first important battle of the American War of Independence (1775) which was fought at Breed's Hill; the British defeated the colonial forces -01274000 04 n 01 Cannae 0 003 @i 00956485 n 0000 #p 01307299 n 0000 ;r 08801678 n 0000 | ancient city is southeastern Italy where Hannibal defeated the Romans in 216 BC -01274171 04 n 02 Caporetto 0 battle_of_Caporetto 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08801678 n 0000 | battle of World War I (1917); Italians were defeated by the Austrian and German forces -01274374 04 n 01 Caudine_Forks 0 002 @i 00956485 n 0000 ;r 09200874 n 0000 | a battle in the Apennines in 321 BC in which the Samnites defeated the Romans -01274531 04 n 01 Chaeronea 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | a battle in which Philip II of Macedon defeated the Athenians and Thebans (338 BC) and also Sulla defeated Mithridates (86 BC) -01274733 04 n 02 Chalons 0 Chalons-sur-Marne 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | the battle in which Attila the Hun was defeated by the Romans and Visigoths in 451 -01274909 04 n 01 Chancellorsville 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09148970 n 0000 | a major battle in the American Civil War (1863); the Confederates under Robert E. Lee defeated the Union forces under Joseph Hooker -01275142 04 n 01 Chapultepec 0 003 @i 00956485 n 0000 #p 01306007 n 0000 ;r 08740875 n 0000 | a pitched battle in the Mexican War that resulted in a major victory for American forces over Mexican forces at a locality south of Mexico City (1847) -01275389 04 n 02 Chattanooga 0 battle_of_Chattanooga 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09140148 n 0000 | in the American Civil War (1863) the Union armies of Hooker, Thomas, and Sherman under the command of Ulysses S. Grant won a decisive victory over the Confederate Army under Braxton Bragg -01275697 04 n 02 Chickamauga 0 battle_of_Chickamauga 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09053185 n 0000 | a Confederate victory in the American Civil War (1863); Confederate forces under Braxton Bragg defeated Union forces -01275934 04 n 02 Chino-Japanese_War 0 Sino-Japanese_War 0 003 @i 00973077 n 0000 ;r 08954611 n 0000 ;r 08722844 n 0000 | a war between China and Japan (1894 and 1895) over the control of the Korean Peninsula; China was overwhelmingly defeated at Port Arthur -01276194 04 n 02 Coral_Sea 0 battle_of_the_Coral_Sea 0 003 @i 00958477 n 0000 #p 01312096 n 0000 ;r 09256663 n 0000 | a Japanese defeat in World War II (May 1942); the first naval battle fought entirely by planes based on aircraft carriers -01276436 04 n 02 Cowpens 0 battle_of_Cowpens 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09137869 n 0000 | battle in the American Revolution; Americans under Daniel Morgan defeated the British -01276634 04 n 02 Crecy 0 battle_of_Crecy 0 003 @i 00956485 n 0000 #p 01305147 n 0000 ;r 08929922 n 0000 | the first decisive battle of the Hundred Years' War; in 1346 the English under Edward III defeated the French under Philip of Valois -01276875 04 n 02 Cunaxa 0 battle_of_Cunaxa 0 002 @i 00956485 n 0000 ;r 08917503 n 0000 | battle in 401 BC when the Artaxerxes II defeated his younger brother who tried to usurp the throne -01277065 04 n 02 Cynoscephalae 0 battle_of_Cynoscephalae 0 002 @i 00956485 n 0000 ;r 08789970 n 0000 | the battle that ended the second Macedonian War (197 BC); the Romans defeated Philip V who lost his control of Greece -01277288 04 n 02 Dardanelles 0 Dardanelles_campaign 0 003 @i 00968155 n 0000 #p 01311520 n 0000 ;r 09039411 n 0000 | the unsuccessful campaign in World War I (1915) by the English and French to open a passage for aid to Russia; defeated by the Turks -01277540 04 n 01 Dien_Bien_Phu 0 002 @i 01075117 n 0000 ;r 09163192 n 0000 | the French military base fell after a siege by Vietnam troops that lasted 56 days; ended the involvement of France in Indochina in 1954 -01277755 04 n 01 Drogheda 0 003 @i 00953559 n 0000 #p 01304121 n 0000 ;r 08859173 n 0000 | in 1649 the place was captured by Oliver Cromwell, who massacred the Catholic inhabitants -01277938 04 n 02 Dunkirk 0 Dunkerque 0 004 @i 00981180 n 0000 #p 01312096 n 0000 @i 00054821 n 0000 ;r 08929922 n 0000 | an amphibious evacuation in World War II (1940) when 330,000 Allied troops had to be evacuated from the beaches in northern France in a desperate retreat under enemy fire -01278232 04 n 03 El_Alamein 0 Al_Alamayn 0 Battle_of_El_Alamein 0 003 @i 00956485 n 0000 #p 01312096 n 0000 ;r 08897065 n 0000 | a pitched battle in World War II (1942) resulting in a decisive Allied victory by British troops under Montgomery over German troops under Rommel -01278509 04 n 01 Eniwetok 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08839475 n 0000 | World War II (February 1944); American infantry landed and captured a Japanese stronghold -01278692 04 n 02 Flodden 0 Battle_of_Flodden_Field 0 002 @i 00956485 n 0000 ;r 08871007 n 0000 | a battle in 1513; the English defeated the invading Scots and James IV was killed -01278873 04 n 02 Fontenoy 0 Battle_of_Fontenoy 0 003 @i 00956485 n 0000 #p 01310347 n 0000 ;r 08849753 n 0000 | a battle in 1745 in which the French army under Marshal Saxe defeated the English army and their allies under the duke of Cumberland -01279120 04 n 02 Fort_Ticonderoga 0 Ticonderoga 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09118181 n 0000 | a pitched battle in which American revolutionary troops captured Fort Ticonderoga from the British in 1775 -01279342 04 n 02 Fredericksburg 0 Battle_of_Fredericksburg 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09148970 n 0000 | an important battle in the American Civil War (1862); the Union Army under A. E. Burnside was defeated by the Confederate Army under Robert E. Lee -01279615 04 n 02 Gettysburg 0 Battle_of_Gettysburg 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09134386 n 0000 | a battle of the American Civil War (1863); the defeat of Robert E. Lee's invading Confederate Army was a major victory for the Union -01279866 04 n 02 Granicus 0 Battle_of_Granicus_River 0 002 @i 00956485 n 0000 ;r 08701942 n 0000 | the battle in which Alexander won his first major victory against the Persians (334 BC) -01280055 04 n 02 Guadalcanal 0 Battle_of_Guadalcanal 0 003 @i 00956485 n 0000 #p 01312096 n 0000 ;r 08843735 n 0000 | a battle in World War II in the Pacific (1942-1943); the island was occupied by the Japanese and later recaptured by American forces -01280308 04 n 01 Hampton_Roads 0 003 @i 00958477 n 0000 #p 01301630 n 0000 ;r 09301249 n 0000 | a naval battle of the American Civil War (1862); the indecisive battle between the Monitor and the Merrimac -01280514 04 n 02 Hastings 0 battle_of_Hastings 0 003 @i 00956485 n 0000 #p 01306736 n 0000 ;r 08871007 n 0000 | the decisive battle in which William the Conqueror (duke of Normandy) defeated the Saxons under Harold II (1066) and thus left England open for the Norman Conquest -01280792 04 n 02 Hohenlinden 0 battle_of_Hohenlinden 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08771596 n 0000 | a battle during the Napoleonic Wars (1800); the French defeated the Austrians -01280990 04 n 01 Inchon 0 003 @i 00981369 n 0000 #p 01305551 n 0000 ;r 08955626 n 0000 | a battle in the Korean War (1950); United States forces landed at Inchon -01281154 04 n 02 Indian_Mutiny 0 Sepoy_Mutiny 0 002 @i 00962129 n 0000 ;r 08900535 n 0000 | discontent with British administration in India led to numerous mutinies in 1857 and 1858; the revolt was put down after several battles and sieges (notably the siege at Lucknow) -01281427 04 n 02 Ipsus 0 battle_of_Ipsus 0 002 @i 00956485 n 0000 ;r 08701942 n 0000 | a battle between the successors of Alexander the Great (301 BC); Lysimachus and Seleucus defeated Antigonus and Demetrius -01281638 04 n 02 Issus 0 battle_of_Issus 0 002 @i 00956485 n 0000 ;r 08701942 n 0000 | a battle (333 BC) in which Alexander the Great defeated the Persians under Darius III -01281813 04 n 03 Ivry 0 battle_of_Ivry 0 Ivry_la_Bataille 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | a battle (1590) in which the Huguenots under Henry IV defeated the Catholics under the duke of Mayenne -01282022 04 n 03 Iwo 0 Iwo_Jima 0 invasion_of_Iwo 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 09382990 n 0000 | a bloody and prolonged operation on the island of Iwo Jima in which American marines landed and defeated Japanese defenders (February and March 1945) -01282289 04 n 02 Jena 0 Battle_of_Jena 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08766988 n 0000 | the battle in 1806 in which Napoleon decisively defeated the Prussians -01282466 04 n 02 Jutland 0 battle_of_Jutland 0 003 @i 00958477 n 0000 #p 01311520 n 0000 ;r 08761244 n 0000 | an indecisive naval battle in World War I (1916); fought between the British and German fleets off the northwestern coast of Denmark -01282711 04 n 01 Kennesaw_Mountain 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09075842 n 0000 | battle of the American Civil War (1864); Union forces under William Tecumseh Sherman were repulsed by Confederate troops under Joseph Eggleston Johnston -01282966 04 n 01 Kwajalein 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08839714 n 0000 | an amphibious assault in the Pacific in World War II (January 1944); American forces landed and captured a Japanese air base -01283185 04 n 02 Lake_Trasimenus 0 Battle_of_Lake_Trasimenus 0 003 @i 00956485 n 0000 #p 01307299 n 0000 ;r 08801678 n 0000 | a battle in 217 BC in which Hannibal ambushed a Roman army led by Flaminius -01283389 04 n 02 Langside 0 battle_of_Langside 0 002 @i 00956485 n 0000 ;r 08890097 n 0000 | (1568) Catholic forces supporting Mary Queen of Scots were routed by Protestants -01283565 04 n 02 Lepanto 0 Battle_of_Lepanto 0 002 @i 00958477 n 0000 ;r 08780881 n 0000 | Turkish sea power was destroyed in 1571 by a league of Christian nations organized by the Pope -01283753 04 n 02 Leuctra 0 battle_of_Leuctra 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | Thebes defeated Sparta in 371 BC; the battle ended Sparta's military supremacy in Greece -01283935 04 n 03 Lexington 0 Concord 0 Lexington_and_Concord 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09095023 n 0000 | the first battle of the American Revolution (April 19, 1775) -01284124 04 n 03 Leyte 0 Leyte_Island 0 Leyte_invasion 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08980300 n 0000 | a battle in World War II; the return of United States troops to the Philippines began with landings on Leyte Island in October 1944; the battle marked first use of kamikaze aircraft by the Japanese -01284444 04 n 04 Little_Bighorn 0 Battle_of_Little_Bighorn 0 Battle_of_the_Little_Bighorn 0 Custer's_Last_Stand 0 002 @i 00223983 n 0000 ;r 09108164 n 0000 | a battle in Montana near the Little Bighorn River between United States cavalry under Custer and several groups of Native Americans (1876); Custer was pursuing Sioux led by Sitting Bull; Custer underestimated the size of the Sioux forces (which were supported by Cheyenne warriors) and was killed along with all his command -01284928 04 n 01 Lucknow 0 002 @i 01075117 n 0000 ;r 08900535 n 0000 | the British residents of Lucknow were besieged by Indian insurgents during the Indian Mutiny (1857) -01285101 04 n 02 Lule_Burgas 0 battle_of_Lule_Burgas 0 003 @i 00956485 n 0000 #p 01302935 n 0000 ;r 08915784 n 0000 | the principal battle of the Balkan Wars (1912); Bulgarian forces defeated the Turks -01285305 04 n 02 Lutzen 0 battle_of_Lutzen 0 003 @i 00956485 n 0000 #p 01309109 n 0000 ;r 08766988 n 0000 | a battle in the Thirty Years' War (1632); Swedes under Gustavus Adolphus defeated the Holy Roman Empire under Wallenstein; Gustavus Adolphus was killed -01285567 04 n 01 Macedonian_War 0 001 @i 00973077 n 0000 | one the four wars between Macedonia and Rome in the 3rd and 2nd centuries BC, which ended in the defeat of Macedonia and its annexation as a Roman province -01285784 04 n 02 Magenta 0 Battle_of_Magenta 0 002 @i 00956485 n 0000 ;r 08801678 n 0000 | a battle in 1859 in which the French and Sardinian forces under Napoleon III defeated the Austrians under Francis Joseph I -01286000 04 n 02 Maldon 0 Battle_of_Maldon 0 002 @i 00956485 n 0000 ;r 08871007 n 0000 | a battle in which the Danes defeated the Saxons in 991; celebrated in an old English poem -01286181 04 n 01 Manila_Bay 0 003 @i 00958477 n 0000 #p 01308668 n 0000 ;r 08981244 n 0000 | a naval battle in the Spanish-American War (1898); the American fleet under Admiral Dewey defeated the Spanish fleet -01286393 04 n 02 Mantinea 0 Mantineia 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | the site of three famous battles among Greek city-states: in 418 BC and 362 BC and 207 BC -01286569 04 n 02 Marathon 1 battle_of_Marathon 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | a battle in 490 BC in which the Athenians and their allies defeated the Persians -01286745 04 n 01 Marengo 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08801678 n 0000 | a battle in 1800 in which the French under Napoleon Bonaparte won a great victory over the Austrians -01286938 04 n 02 Marston_Moor 0 battle_of_Marston_Moor 0 003 @i 00956485 n 0000 #p 01304121 n 0000 ;r 08871007 n 0000 | a battle in 1644 in which the Parliamentarians under the earl of Manchester defeated the Royalists under Prince Rupert -01287179 04 n 01 Metaurus_River 0 003 @i 00956485 n 0000 #p 01307299 n 0000 ;r 08801678 n 0000 | a battle during the second Punic War (207 BC); Hannibal's brother Hasdrubal was defeated by the Romans which ended Hannibal's hopes for success in Italy -01287431 04 n 06 Meuse 0 Meuse_River 0 Argonne 0 Argonne_Forest 0 Meuse-Argonne 0 Meuse-Argonne_operation 0 004 @i 00955060 n 0000 #p 01311520 n 0000 ;r 08929922 n 0000 %p 01293167 n 0000 | an American operation in World War I (1918); American troops under Pershing drove back the German armies which were saved only by the armistice on November 11 -01287782 04 n 02 Midway 0 Battle_of_Midway 0 003 @i 00958477 n 0000 #p 01312096 n 0000 ;r 09080989 n 0000 | naval battle of World War II (June 1942); American planes based on land and on carriers decisively defeated a Japanese fleet on its way to invade the Midway Islands -01288057 04 n 02 Minden 0 battle_of_Minden 0 003 @i 00956485 n 0000 #p 01308438 n 0000 ;r 08766988 n 0000 | a battle in the Seven Years' War (1759) in which the English forces and their allies defeated the French -01288272 04 n 03 Monmouth_Court_House 0 Battle_of_Monmouth_Court_House 0 Battle_of_Monmouth 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09112282 n 0000 | a pitched battle in New Jersey during the American Revolution (1778) that ended with the withdrawal of British forces -01288549 04 n 02 Naseby 0 Battle_of_Naseby 0 003 @i 00956485 n 0000 #p 01304121 n 0000 ;r 08871007 n 0000 | a battle in 1645 that settled the outcome of the first English Civil War as the Parliamentarians won a major victory over the Royalists -01288795 04 n 02 Navarino 0 battle_of_Navarino 0 002 @i 00958477 n 0000 ;r 08780881 n 0000 | a decisive naval battle in the War of Greek Independence (1827); the Turkish and Egyptian fleet was defeated by an allied fleet of British and French and Russian warships -01289061 04 n 02 Okinawa 0 Okinawa_campaign 0 003 @i 00968155 n 0000 #p 01312096 n 0000 ;r 08924400 n 0000 | a campaign in the closing days of World War II in the Pacific (April to June 1945); in savage close-quarter fighting United States marines and regular army troops took the island from the Japanese; considered the greatest victory of the Pacific campaign for the Americans -01289444 04 n 02 Omdurman 0 battle_of_Omdurman 0 002 @i 00956485 n 0000 ;r 09029242 n 0000 | a battle (1898) in which an English and Egyptian army under Kitchener defeated the Sudanese -01289631 04 n 01 Operation_Desert_Storm 0 003 @i 00955060 n 0000 #p 01307090 n 0000 ;r 08791167 n 0000 | the United States and its allies defeated Iraq in a ground war that lasted 100 hours (1991) -01289830 04 n 02 Orleans 0 siege_of_Orleans 0 002 @i 01075117 n 0000 ;r 08929922 n 0000 | a long siege of Orleans by the English was relieved by Joan of Arc in 1429 -01289997 04 n 02 Panipat 0 battle_of_Panipat 0 002 @i 00956485 n 0000 ;r 08900535 n 0000 | battle in which the ruler of Afghanistan defeated the Mahrattas in 1761 -01290162 04 n 02 Passero 0 Cape_Passero 0 002 @i 00958477 n 0000 ;r 08810999 n 0000 | a naval battle in the Mediterranean Sea off Cape Passero in which the Spanish navy was destroyed by France and England while attempting to recover Sicily and Sardinia from Italy (1719) -01290435 04 n 02 Petersburg 0 Petersburg_Campaign 0 004 @i 00968155 n 0000 @i 01075117 n 0000 #p 01301630 n 0000 ;r 09148970 n 0000 | the final campaign of the American Civil War (1864-65); Union forces under Grant besieged and finally defeated Confederate forces under Lee -01290711 04 n 02 Pharsalus 0 battle_of_Pharsalus 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | Caesar defeated Pompey in 48 BC -01290840 04 n 02 Philippi 0 battle_of_Philippi 0 002 @i 00956485 n 0000 ;r 08961630 n 0000 | Octavian and Mark Antony defeated Brutus and Cassius in 42 BC -01290997 04 n 02 Philippine_Sea 0 battle_of_the_Philippine_Sea 0 003 @i 00958477 n 0000 #p 01312096 n 0000 ;r 09382990 n 0000 | a naval battle in World War II (1944); a decisive naval victory for the United States fleet over the Japanese who were trying to block supplies from reaching American troops on Leyte -01291310 04 n 02 Plassey 0 battle_of_Plassey 0 002 @i 00956485 n 0000 ;r 08900535 n 0000 | the victory in 1757 by the British under Clive over Siraj-ud-daula that established British supremacy over Bengal -01291517 04 n 02 Plataea 0 battle_of_Plataea 0 002 @i 00956485 n 0000 ;r 08789243 n 0000 | a defeat of the Persian army by the Greeks at Plataea in 479 BC -01291674 04 n 02 Plevna 0 Pleven 0 002 @i 01075117 n 0000 ;r 08714132 n 0000 | the town was taken from the Turks by the Russians in 1877 after a siege of 143 days -01291839 04 n 02 Poitiers 0 battle_of_Poitiers 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | the battle in 1356 in which the English under the Black Prince defeated the French -01292017 04 n 01 Port_Arthur 0 002 @i 00956485 n 0000 ;r 08722844 n 0000 | a battle in the Chino-Japanese War (1894); Japanese captured the port and fortifications from the Chinese -01292200 04 n 01 Battle_of_Puebla 0 002 @i 00956485 n 0000 ;r 08740875 n 0000 | a battle in which Mexican forces defeated the French in 1862 -01292343 04 n 02 Pydna 0 Battle_of_Pydna 0 002 @i 00956485 n 0000 ;r 08915372 n 0000 | a major victory by the Romans over the Macedonians in 168 BC; resulted in the downfall of the ancient Macedonian kingdom -01292553 04 n 02 Ravenna 0 Battle_of_Ravenna 0 002 @i 00956485 n 0000 ;r 08801678 n 0000 | a battle between the French and an alliance of Spaniards and Swiss and Venetians in 1512 -01292735 04 n 02 Rocroi 0 Battle_of_Rocroi 0 003 @i 00956485 n 0000 #p 01309109 n 0000 ;r 08929922 n 0000 | a battle in the Thirty Years' War (1643); the French defeated the Spanish invaders -01292928 04 n 02 Rossbach 0 battle_of_Rossbach 0 003 @i 00956485 n 0000 #p 01308438 n 0000 ;r 08766988 n 0000 | a battle in the Seven Years' War (1757); Prussian forces under Frederick the Great defeated the armies of France and Austria -01293167 04 n 03 Saint-Mihiel 0 St_Mihiel 0 battle_of_St_Mihiel 0 003 @i 00956485 n 0000 #p 01287431 n 0000 ;r 08929922 n 0000 | a battle in the Meuse-Argonne operation in World War I (1918); the battle in which American troops launched their first offensive in France -01293438 04 n 01 Saipan 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08838070 n 0000 | US forces captured the island from the Japanese in July 1944; it was an important air base until the end of World War II -01293650 04 n 01 Salerno 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08801678 n 0000 | a battle in World War II; the port was captured by United States troops in September 1943 -01293832 04 n 02 Santiago 0 Santiago_de_Cuba 0 003 @i 00958477 n 0000 #p 01308668 n 0000 ;r 08750151 n 0000 | a naval battle in the Spanish-American War (1898); the United States fleet bottled up the Spanish ships in the harbor of Santiago de Cuba and destroyed them when they tried to escape -01294127 04 n 02 Saratoga 0 battle_of_Saratoga 0 003 @i 00956485 n 0000 #p 01302086 n 0000 ;r 09117351 n 0000 | a battle during the American Revolution (1777); the British under Burgoyne were defeated -01294330 04 n 02 Sempatch 0 battle_of_Sempatch 0 002 @i 00956485 n 0000 ;r 09031653 n 0000 | the Swiss Confederation escaped Hapsburg domination by their victory in 1386 -01294502 04 n 03 Shiloh 0 battle_of_Shiloh 0 battle_of_Pittsburgh_Landing 0 003 @i 00956485 n 0000 #p 01301630 n 0000 ;r 09140148 n 0000 | the second great battle of the American Civil War (1862); the battle ended with the withdrawal of Confederate troops but it was not a Union victory -01294791 04 n 04 Soissons 0 battle_of_Soissons-Reims 0 battle_of_the_Chemin-des-Dames 0 battle_of_the_Aisne 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08929922 n 0000 | a battle in World War I (May 1918); the Germans tried to attack before the American numbers were too great to defeat; the tactical success of the Germans proved to be a strategic failure -01295153 04 n 02 Solferino 0 battle_of_Solferino 0 002 @i 00956485 n 0000 ;r 08801678 n 0000 | an indecisive battle in 1859 between the French and Sardinians under Napoleon III and the Austrians under Francis Joseph I -01295373 04 n 03 Somme 1 Somme_River 1 Battle_of_the_Somme 1 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08929922 n 0000 | battle in World War I (1916) -01295528 04 n 03 Somme 2 Somme_River 2 Battle_of_the_Somme 2 003 @i 00956485 n 0000 #p 01312096 n 0000 ;r 08929922 n 0000 | battle of World War II (1944) -01295684 04 n 01 Battle_of_the_Spanish_Armada 0 002 @i 00958477 n 0000 ;r 09273447 n 0000 | in the English Channel a small fleet of British ships successfully defeated the large armada sent from Spain by Philip II to invade England -01295918 04 n 02 Spotsylvania 0 battle_of_Spotsylvania_Courthouse 0 003 @i 00956485 n 0000 #p 01299735 n 0000 ;r 09148970 n 0000 | a battle between the armies of Grant and Lee during the Wilderness Campaign -01296127 04 n 02 Syracuse 0 siege_of_Syracuse 0 002 @i 01075117 n 0000 ;r 08810999 n 0000 | the Athenian siege of Syracuse (415-413 BC) was eventually won by Syracuse -01296296 04 n 02 Syracuse 1 siege_of_Syracuse 1 002 @i 01075117 n 0000 ;r 08810999 n 0000 | the Roman siege of Syracuse (214-212 BC) was eventually won by the Romans who sacked the city (killing Archimedes) -01296505 04 n 02 Tannenberg 0 battle_of_Tannenberg 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08982587 n 0000 | a battle in World War I (1914); decisive German victory over the Russians -01296697 04 n 03 Tarawa 0 Makin 0 Tarawa-Makin 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08839916 n 0000 | battles in World War II in the Pacific (November 1943); United States Marines took the islands from the Japanese after bitter fighting -01296946 04 n 02 Tertry 0 battle_of_Tertry 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | a battle in France in 687 among the descendants of Clovis -01297095 04 n 02 Teutoburger_Wald 0 battle_of_Teutoburger_Wald 0 002 @i 00956485 n 0000 ;r 08766988 n 0000 | a battle in 9 AD in which the Germans under Arminius annihilated three Roman Legions -01297291 04 n 02 Tewkesbury 0 battle_of_Tewkesbury 0 002 @i 00956485 n 0000 ;r 08871007 n 0000 | the final battle of the War of the Roses in 1471 in which Edward IV defeated the Lancastrians -01297484 04 n 02 Thermopylae 0 battle_of_Thermopylae 0 002 @i 00956485 n 0000 ;r 08780881 n 0000 | a famous battle in 480 BC; a Greek army under Leonidas was annihilated by the Persians who were trying to conquer Greece -01297706 04 n 02 Trafalgar 0 battle_of_Trafalgar 0 003 @i 00958477 n 0000 #p 01306358 n 0000 ;r 09209263 n 0000 | a naval battle in 1805 off the southwest coast of Spain; the French and Spanish fleets were defeated by the English under Nelson (who was mortally wounded) -01297978 04 n 02 Trasimeno 0 battle_of_Trasimeno 0 002 @i 00956485 n 0000 ;r 08801678 n 0000 | a battle in central Italy where Hannibal defeated the Romans under Flaminius in 217 BC -01298162 04 n 01 Tsushima 0 003 @i 00958477 n 0000 #p 01308260 n 0000 ;r 09327361 n 0000 | a naval battle in the Russo-Japanese War (1905); the Japanese fleet defeated the Russian fleet in the Korean Strait -01298371 04 n 02 Valmy 0 battle_of_Valmy 0 002 @i 00956485 n 0000 ;r 08929922 n 0000 | the French defeated the Austrian and Prussian troops in 1792 (with a famous cannonade from the French artillery) -01298573 04 n 02 Verdun 0 battle_of_Verdun 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08929922 n 0000 | a battle in World War I (1916); in some of the bloodiest fighting in World War I the German offensive was stopped -01298797 04 n 02 Vicksburg 0 siege_of_Vicksburg 0 003 @i 01075117 n 0000 #p 01301630 n 0000 ;r 09103943 n 0000 | a decisive battle in the American Civil War (1863); after being besieged for nearly seven weeks the Confederates surrendered -01299037 04 n 02 Wagram 0 battle_of_Wagram 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08845555 n 0000 | a battle in the Napoleonic campaigns (1809); Napoleon defeated the Austrians -01299224 04 n 02 Battle_of_Wake 0 Battle_of_Wake_Island 0 003 @i 00981369 n 0000 #p 01312096 n 0000 ;r 08838556 n 0000 | in December 1941 the island was captured by the Japanese after a gallant last-ditch stand by a few hundred United States marines -01299476 04 n 02 Waterloo 0 Battle_of_Waterloo 0 003 @i 00956485 n 0000 #p 01306358 n 0000 ;r 08849753 n 0000 | the battle on 18 June 1815 in which Prussian and British forces under Blucher and the Duke of Wellington routed the French forces under Napoleon -01299735 04 n 01 Wilderness_Campaign 0 004 @i 00968155 n 0000 #p 01301630 n 0000 ;r 09148970 n 0000 %p 01295918 n 0000 | American Civil War; a series of indecisive battles in Grant's campaign (1864) against Lee in which both armies suffered terrible losses -01299994 04 n 01 Yalu_River 0 003 @i 00956485 n 0000 #p 01305551 n 0000 ;r 08955082 n 0000 | a battle in the Korean War (November 1950); when UN troops advanced north to the Yalu River 200,000 Chinese troops crossed the river and drove them back -01300242 04 n 02 Yorktown 0 siege_of_Yorktown 0 003 @i 01075117 n 0000 #p 01302086 n 0000 ;r 09148970 n 0000 | in 1781 the British under Cornwallis surrendered after a siege of three weeks by American and French troops; the surrender ended the American Revolution -01300508 04 n 03 Ypres 1 battle_of_Ypres 1 first_battle_of_Ypres 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08849753 n 0000 | battle in World War I (1914); heavy but indecisive fighting as the Allies and the Germans both tried to break through the lines of the others -01300782 04 n 03 Ypres 2 battle_of_Ypres 2 second_battle_of_Ypres 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08849753 n 0000 | battle in World War I (1915); Germans wanted to try chlorine (a toxic yellow gas) as a weapon and succeeded in taking considerable territory from the Allied salient -01301080 04 n 03 Ypres 3 battle_of_Ypres 3 third_battle_of_Ypres 0 003 @i 00956485 n 0000 #p 01311520 n 0000 ;r 08849753 n 0000 | battle in World War I (1917); an Allied offensive which eventually failed because tanks bogged down in the waterlogged soil of Flanders; Germans introduced mustard gas which interfered with the Allied artillery -01301423 04 n 02 Zama 0 battle_of_Zama 0 003 @i 00956485 n 0000 #p 01307299 n 0000 ;r 09037394 n 0000 | the battle in 202 BC in which Scipio decisively defeated Hannibal at the end of the second Punic War -01301630 04 n 03 American_Civil_War 0 United_States_Civil_War 0 War_between_the_States 0 015 @i 00962567 n 0000 ;r 09044862 n 0000 %p 01269633 n 0000 %p 01273491 n 0000 %p 01274909 n 0000 %p 01275389 n 0000 %p 01275697 n 0000 %p 01279342 n 0000 %p 01279615 n 0000 %p 01280308 n 0000 %p 01282711 n 0000 %p 01290435 n 0000 %p 01294502 n 0000 %p 01298797 n 0000 %p 01299735 n 0000 | civil war in the United States between the North and the South; 1861-1865 -01302086 04 n 04 American_Revolution 0 American_Revolutionary_War 0 War_of_American_Independence 0 American_War_of_Independence 0 008 @i 00962722 n 0000 %p 01273735 n 0000 %p 01276436 n 0000 %p 01279120 n 0000 %p 01283935 n 0000 %p 01288272 n 0000 %p 01294127 n 0000 %p 01300242 n 0000 | the revolution of the American Colonies against Great Britain; 1775-1783 -01302449 04 n 03 Arab-Israeli_War 0 Six-Day_War 0 Six_Day_War 0 002 @i 00973077 n 0000 ;r 08791167 n 0000 | tension between Arabs and Israeli erupted into a brief war in June 1967; Israel emerged as a major power in the Middle East -01302683 04 n 02 Arab-Israeli_War 1 Yom_Kippur_War 0 002 @i 00973077 n 0000 ;r 08791167 n 0000 | Egypt and Syria attacked Israel in October 1973 (on Yom Kippur); Israel counterattacked and drove the Syrians back and crossed the Suez Canal into Egypt -01302935 04 n 01 Balkan_Wars 0 004 @i 00973077 n 0000 #p 08713772 n 0000 ;r 08780881 n 0000 %p 01285101 n 0000 | two wars (1912-1913) that were fought over the last of the European territories of the Ottoman Empire and that left the area around Constantinople (now Istanbul) as the only Ottoman territory in Europe -01303252 04 n 01 Boer_War 0 002 @i 00973077 n 0000 ;r 09189411 n 0000 | either of two wars: the first when the Boers fought England in order to regain the independence they had given up to obtain British help against the Zulus (1880-1881); the second when the Orange Free State and Transvaal declared war on Britain (1899-1902) -01303582 04 n 01 Chinese_Revolution 0 002 @i 00962722 n 0000 ;r 08723006 n 0000 | the republican revolution against the Manchu dynasty in China; 1911-1912 -01303739 04 n 01 Crimean_War 0 002 @i 00973077 n 0000 ;r 09015460 n 0000 | a war in Crimea between Russia and a group of nations including England and France and Turkey and Sardinia; 1853-1856 -01303934 04 n 01 Cuban_Revolution 0 001 @i 00962722 n 0000 | the revolution led by Fidel Castro and a small band of guerrilla fighters against a corrupt dictatorship in Cuba; 1956-1959 -01304121 04 n 01 English_Civil_War 0 005 @i 00962567 n 0000 ;r 08871007 n 0000 %p 01277755 n 0000 %p 01286938 n 0000 %p 01288549 n 0000 | civil war in England between the Parliamentarians and the Royalists under Charles I; 1644-1648 -01304356 04 n 03 English_Revolution 0 Glorious_Revolution 0 Bloodless_Revolution 0 001 @i 00962722 n 0000 | the revolution against James II; there was little armed resistance to William and Mary in England although battles were fought in Scotland and Ireland (1688-1689) -01304629 04 n 01 Franco-Prussian_War 0 001 @i 00973077 n 0000 | a war between France and Prussia that ended the Second Empire in France and led to the founding of modern Germany; 1870-1871 -01304820 04 n 01 French_and_Indian_War 0 002 @i 00973077 n 0000 #p 01308438 n 0000 | a war in North America between France and Britain (both aided by American Indian tribes); 1755-1760 -01305007 04 n 01 French_Revolution 0 002 @i 00962722 n 0000 ;r 08929922 n 0000 | the revolution in France against the Bourbons; 1789-1799 -01305147 04 n 01 Hundred_Years'_War 0 002 @i 00973077 n 0000 %p 01276634 n 0000 | the series of wars fought intermittently between France and England; 1337-1453 -01305310 04 n 02 Iran-Iraq_War 0 Gulf_War 1 001 @i 00973077 n 0000 | a dispute over control of the waterway between Iraq and Iran broke out into open fighting in 1980 and continued until 1988, when they accepted a UN cease-fire resolution -01305551 04 n 01 Korean_War 0 004 @i 00973077 n 0000 ;r 08954611 n 0000 %p 01280990 n 0000 %p 01299994 n 0000 | a war between North and South Korea; South Korea was aided by the United States and other members of the United Nations; 1950-1953 -01305796 04 n 01 Mexican_Revolution 0 002 @i 00962722 n 0000 ;r 08740875 n 0000 | a revolution for agrarian reforms led in northern Mexico by Pancho Villa and in southern Mexico by Emiliano Zapata (1910-1911) -01306007 04 n 01 Mexican_War 0 003 @i 00973077 n 0000 %p 01273230 n 0000 %p 01275142 n 0000 | after disputes over Texas lands that were settled by Mexicans the United States declared war on Mexico in 1846 and by treaty in 1848 took Texas and California and Arizona and New Mexico and Nevada and Utah and part of Colorado and paid Mexico $15,000,000 -01306358 04 n 01 Napoleonic_Wars 0 009 @i 00973077 n 0000 %p 01269857 n 0000 %p 01272134 n 0000 %p 01280792 n 0000 %p 01282289 n 0000 %p 01286745 n 0000 %p 01297706 n 0000 %p 01299037 n 0000 %p 01299476 n 0000 | a series of wars fought between France (led by Napoleon Bonaparte) and alliances involving England and Prussia and Russia and Austria at different times; 1799-1815 -01306736 04 n 01 Norman_Conquest 0 002 @i 00089027 n 0000 %p 01280514 n 0000 | the invasion and settlement of England by the Normans following the battle of Hastings (1066) -01306911 04 n 01 Peloponnesian_War 0 002 @i 00973077 n 0000 %p 01268886 n 0000 | a war in which Athens and its allies were defeated by the league centered on Sparta; 431-404 BC -01307090 04 n 02 Persian_Gulf_War 0 Gulf_War 0 002 @i 00973077 n 0000 %p 01289631 n 0000 | a war fought between Iraq and a coalition led by the United States that freed Kuwait from Iraqi invaders; 1990-1991 -01307299 04 n 01 Punic_War 0 006 @i 00973077 n 0000 %p 01268633 n 0000 %p 01274000 n 0000 %p 01283185 n 0000 %p 01287179 n 0000 %p 01301423 n 0000 | one of the three wars between Carthage and Rome that resulted in the destruction of Carthage and its annexation by Rome; 264-241 BC, 218-201 BC, 149-146 BC -01307606 04 n 01 Restoration 2 003 @i 01080366 n 0000 ;r 08871007 n 0000 + 02426799 v 0101 | the re-establishment of the British monarchy in 1660 -01307754 04 n 02 Russian_Revolution 1 February_Revolution 0 002 @i 00962722 n 0000 ;r 09003284 n 0000 | the revolution against the czarist government which led to the abdication of Nicholas II and the creation of a provisional government in March 1917 -01308008 04 n 02 Russian_Revolution 2 October_Revolution 0 002 @i 01145015 n 0000 ;r 09003284 n 0000 | the coup d'etat by the Bolsheviks under Lenin in November 1917 that led to a period of civil war which ended in victory for the Bolsheviks in 1922 -01308260 04 n 01 Russo-Japanese_War 0 002 @i 00973077 n 0000 %p 01298162 n 0000 | Japanese victory in the war with Russia (1904-1905) gave Japan power over Korea and Manchuria -01308438 04 n 01 Seven_Years'_War 0 004 @i 00973077 n 0000 %p 01288057 n 0000 %p 01292928 n 0000 %p 01304820 n 0000 | a war of England and Prussia against France and Austria (1756-1763); Britain and Prussia got the better of it -01308668 04 n 02 Spanish-American_War 0 Spanish_War 0 003 @i 00973077 n 0000 %p 01286181 n 0000 %p 01293832 n 0000 | a war between the United States and Spain in 1898 -01308837 04 n 01 Spanish_Civil_War 0 002 @i 00962567 n 0000 ;r 09023321 n 0000 | civil war in Spain in which Franco succeeded in overthrowing the republican government; during the war Spain became a battleground for fascists and socialists from all countries; 1936-1939 -01309109 04 n 01 Thirty_Years'_War 0 003 @i 00973077 n 0000 %p 01285305 n 0000 %p 01292735 n 0000 | a series of conflicts (1618-1648) between Protestants and Catholics starting in Germany and spreading until France and Denmark and Sweden were opposing the Holy Roman Empire and Spain -01309395 04 n 01 Trojan_War 0 002 @i 00973077 n 0000 ;c 07979425 n 0000 | (Greek mythology) a great war fought between Greece and Troy; the Greeks sailed to Troy to recover Helen of Troy, the beautiful wife of Menelaus who had been abducted by Paris; after ten years the Greeks (via the Trojan Horse) achieved final victory and burned Troy to the ground; "the story of the Trojan War is told in Homer's Iliad" -01309807 04 n 02 Vietnam_War 0 Vietnam 0 002 @i 00973077 n 0000 ;r 09163192 n 0000 | a prolonged war (1954-1975) between the communist armies of North Vietnam who were supported by the Chinese and the armies of South Vietnam who were supported by the United States -01310074 04 n 01 War_of_Greek_Independence 0 001 @i 00973077 n 0000 | the Greeks rebelled against Turkish rule in 1821; with the support of England and France and Russia they won independence in 1828 at Navarino (although the country included only half its present size) -01310347 04 n 01 War_of_the_Austrian_Succession 0 002 @i 00973077 n 0000 %p 01278873 n 0000 | Prussia and Austria fought over Silesia and most of the rest of Europe took sides; 1740-1748 -01310536 04 n 02 War_of_the_Grand_Alliance 0 War_of_the_League_of_Augsburg 0 002 @i 00973077 n 0000 %p 01272787 n 0000 | an aggressive war waged by Louis XIV against Spain and the Holy Roman Empire and England and Holland and other states (1689-1697) -01310789 04 n 01 War_of_the_Spanish_Succession 0 002 @i 00973077 n 0000 %p 01271915 n 0000 | a general war in Europe (1701-1714) that broke out when Louis XIV installed his grandson on the throne of Spain; England and Holland hoped to limit Louis' power -01311045 04 n 02 War_of_the_Roses 0 Wars_of_the_Roses 0 003 @i 00973077 n 0000 ;r 08871007 n 0000 %p 01272367 n 0000 | struggle for the English throne (1455-1485) between the house of York (white rose) and the house of Lancaster (red rose) ending with the accession of the Tudor monarch Henry VII -01311344 04 n 01 War_of_1812 0 001 @i 00973077 n 0000 | a war (1812-1814) between the United States and England which was trying to interfere with American trade with France -01311520 04 n 05 World_War_I 0 World_War_1 0 Great_War 0 First_World_War 0 War_to_End_War 0 013 @i 00996817 n 0000 %p 01271428 n 0000 %p 01274171 n 0000 %p 01277288 n 0000 %p 01282466 n 0000 %p 01287431 n 0000 %p 01294791 n 0000 %p 01295373 n 0000 %p 01296505 n 0000 %p 01298573 n 0000 %p 01300508 n 0000 %p 01300782 n 0000 %p 01301080 n 0000 | a war between the allies (Russia, France, British Empire, Italy, United States, Japan, Rumania, Serbia, Belgium, Greece, Portugal, Montenegro) and the Central Powers (Germany, Austria-Hungary, Turkey, Bulgaria) from 1914 to 1918 -01312096 04 n 03 World_War_II 0 World_War_2 0 Second_World_War 0 022 @i 00996817 n 0000 %p 01270343 n 0000 %p 01270628 n 0000 %p 01271107 n 0000 %p 01271669 n 0000 %p 01276194 n 0000 %p 01277938 n 0000 %p 01278232 n 0000 %p 01278509 n 0000 %p 01280055 n 0000 %p 01282022 n 0000 %p 01282966 n 0000 %p 01284124 n 0000 %p 01287782 n 0000 %p 01289061 n 0000 %p 01290997 n 0000 %p 01293438 n 0000 %p 01293650 n 0000 %p 01295528 n 0000 %p 01296697 n 0000 %p 01299224 n 0000 -c 08114581 n 0000 | a war between the Allies (Australia, Belgium, Bolivia, Brazil, Canada, China, Colombia, Costa Rica, Cuba, Czechoslovakia, Dominican Republic, El Salvador, Ethiopia, France, Greece, Guatemala, Haiti, Honduras, India, Iran, Iraq, Luxembourg, Mexico, Netherlands, New Zealand, Nicaragua, Norway, Panama, Philippines, Poland, South Africa, United Kingdom, United States, USSR, Yugoslavia) and the Axis (Albania, Bulgaria, Finland, Germany, Hungary, Italy, Japan, Rumania, Slovakia, Thailand) from 1939 to 1945 -01313093 05 n 03 Animalia 0 kingdom_Animalia 0 animal_kingdom 0 035 @ 07940552 n 0000 %m 00015388 n 0000 %m 01342529 n 0000 %m 01465994 n 0000 %m 01759182 n 0000 %m 01762525 n 0000 %m 01767199 n 0000 %m 01906328 n 0000 %m 01908287 n 0000 %m 01908415 n 0000 %m 01908703 n 0000 %m 01918010 n 0000 %m 01918152 n 0000 %m 01918310 n 0000 %m 01921559 n 0000 %m 01921887 n 0000 %m 01923171 n 0000 %m 01923637 n 0000 %m 01924590 n 0000 %m 01928360 n 0000 %m 01928737 n 0000 %m 01929047 n 0000 %m 01929396 n 0000 %m 01934207 n 0000 %m 01938850 n 0000 %m 01939598 n 0000 %m 01940488 n 0000 %m 02313195 n 0000 %m 02313495 n 0000 %m 02314717 n 0000 %m 02315309 n 0000 %m 02315696 n 0000 %m 02316038 n 0000 %m 02316180 n 0000 %m 02316392 n 0000 | taxonomic kingdom comprising all living or extinct animals -01313888 05 n 01 recombinant 0 002 @ 00006484 n 0000 @ 00004475 n 0000 | a cell or organism in which genetic recombination has occurred -01314026 05 n 01 conspecific 0 001 @ 00004475 n 0000 | an organism belonging to the same species as another organism -01314145 05 n 01 carrier 0 002 @ 00004475 n 0000 ;c 06075527 n 0000 | (genetics) an organism that possesses a recessive gene whose effect is masked by a dominant allele; the associated trait is not apparent but can be passed on to offspring -01314388 05 n 01 pest 0 002 @ 00015388 n 0000 ~ 01315980 n 0000 | any unwanted and destructive insect or other animal that attacks food or crops or livestock etc.; "he sprayed the garden to get rid of pests"; "many pests have developed resistance to the common pesticides" -01314663 05 n 01 critter 0 001 @ 00015388 n 0000 | a regional term for `creature' (especially for domestic animals) -01314781 05 n 01 creepy-crawly 0 001 @ 00015388 n 0000 | an animal that creeps or crawls (such as worms or spiders or insects) -01314910 05 n 01 darter 0 002 @ 00015388 n 0000 + 01899708 v 0101 | a person or other animal that moves abruptly and rapidly; "squirrels are darters" -01315062 05 n 01 denizen 0 001 @ 00004475 n 0000 | a plant or animal naturalized in a region; "denizens of field and forest"; "denizens of the deep" -01315213 05 n 01 peeper 0 002 @ 00015388 n 0000 + 01052301 v 0101 | an animal that makes short high-pitched sounds -01315330 05 n 03 homeotherm 0 homoiotherm 0 homotherm 0 004 @ 00015388 n 0000 + 02532681 a 0303 + 02532681 a 0201 + 02532681 a 0102 | an animal that has a body temperature that is relatively constant and independent of the environmental temperature -01315581 05 n 02 poikilotherm 0 ectotherm 0 003 @ 00015388 n 0000 + 02533075 a 0101 + 02533075 a 0102 | an animal whose body temperature varies with the temperature of its surroundings; any animal except birds and mammals -01315805 05 n 01 range_animal 0 001 @ 00015388 n 0000 | any animal that lives and grazes in the grassy open land of western North America (especially horses, cattle, sheep) -01315980 05 n 01 vermin 0 002 @ 01314388 n 0000 + 01627315 a 0101 | any of various small animals or insects that are pests; e.g. cockroaches or rats; "cereals must be protected from mice and other vermin"; "he examined the child's head for vermin"; "boys in the village have probably been shooting vermin" -01316288 05 n 02 varmint 0 varment 0 001 @ 00015388 n 0000 | any usually predatory wild animal considered undesirable; e.g., coyote -01316422 05 n 01 scavenger 0 003 @ 00015388 n 0000 + 01177973 v 0101 ~ 01316734 n 0000 | any animal that feeds on refuse and other decaying organic matter -01316579 05 n 02 bottom-feeder 0 bottom-dweller 0 002 @ 02512053 n 0000 ~ 02599958 n 0000 | a fish that lives and feeds on the bottom of a body of water -01316734 05 n 01 bottom-feeder 1 001 @ 01316422 n 0000 | a scavenger that feeds low on the food chain -01316838 05 n 01 bottom_lurkers 0 001 @ 02512053 n 0000 | a fish that lurks on the bottom of a body of water -01316949 05 n 01 work_animal 0 003 @ 00015388 n 0000 ~ 01317089 n 0000 ~ 01317294 n 0000 | an animal trained for and used for heavy labor -01317089 05 n 02 beast_of_burden 0 jument 0 003 @ 01316949 n 0000 + 02753345 a 0201 ~ 01317391 n 0000 | an animal such as a donkey or ox or elephant used for transporting loads or doing other heavy work -01317294 05 n 01 draft_animal 0 001 @ 01316949 n 0000 | an animal used for pulling heavy loads -01317391 05 n 02 pack_animal 0 sumpter 0 002 @ 01317089 n 0000 ~ 02386746 n 0000 | an animal (such as a mule or burro or horse) used to carry loads -01317541 05 n 02 domestic_animal 0 domesticated_animal 0 007 @ 00015388 n 0000 ~ 01317813 n 0000 ~ 01318053 n 0000 ~ 01318381 n 0000 ~ 02084071 n 0000 ~ 02121808 n 0000 ~ 02122580 n 0000 | any of various animals that have been tamed and made fit for a human environment -01317813 05 n 01 feeder 0 001 @ 01317541 n 0000 | an animal being fattened or suitable for fattening -01317916 05 n 01 feeder 1 001 @ 00015388 n 0000 | an animal that feeds on a particular source of food; "a bark feeder"; "a mud feeder" -01318053 05 n 01 stocker 0 003 @ 01317541 n 0000 + 13367070 n 0102 + 01887474 n 0102 | a domestic animal (especially a young steer or heifer) kept as stock until fattened or matured and suitable for a breeding establishment -01318279 05 n 01 hatchling 0 001 @ 01321579 n 0000 | any recently hatched animal (especially birds) -01318381 05 n 01 head 0 001 @ 01317541 n 0000 | a single domestic animal; "200 head of cattle" -01318478 05 n 01 migrator 0 002 @ 00015388 n 0000 + 01856626 v 0101 | an animal (especially birds and fish) that travels between different habitats at particular times of the year -01318660 05 n 02 molter 0 moulter 0 003 @ 00015388 n 0000 + 00009147 v 0204 + 00009147 v 0102 | an animal (especially birds and arthropods and reptiles) that periodically shed their outer layer (feathers or cuticle or skin or hair) -01318894 05 n 01 pet 0 001 @ 00015388 n 0000 | a domesticated animal kept for companionship or amusement -01319001 05 n 01 stayer 0 002 @ 00015388 n 0000 + 02619122 v 0102 | a person or other animal having powers of endurance or perseverance; "the horse that won the race is a good stayer" -01319187 05 n 01 stunt 0 002 @ 00015388 n 0000 + 02452413 v 0101 | a creature (especially a whale) that has been prevented from attaining full growth -01319339 05 n 01 pollard 0 001 @ 02399000 n 0000 | a usually horned animal that has either shed its horns or had them removed -01319467 05 n 04 marine_animal 0 marine_creature 0 sea_animal 0 sea_creature 0 002 @ 00015388 n 0000 ~ 01319685 n 0000 | any of numerous animals inhabiting the sea including e.g. fishes and molluscs and many mammals -01319685 05 n 02 by-catch 0 bycatch 0 001 @ 01319467 n 0000 | unwanted marine creatures that are caught in the nets while fishing for another species; "thousands of dolphins and porpoises and whales are killed as part of the by-catch each year" -01319932 05 n 01 amphidiploid 0 002 @ 00004475 n 0000 ;c 06075527 n 0000 | (genetics) an organism or cell having a diploid set of chromosomes from each parent -01320093 05 n 01 diploid 0 003 @ 00004475 n 0000 ;c 06075527 n 0000 + 01147622 a 0101 | (genetics) an organism or cell having the normal amount of DNA per cell; i.e., two sets of chromosomes or twice the haploid number -01320314 05 n 01 haploid 0 003 @ 00004475 n 0000 ;c 06075527 n 0000 + 01147433 a 0101 | (genetics) an organism or cell having only one complete set of chromosomes -01320479 05 n 01 heteroploid 0 002 @ 00004475 n 0000 ;c 06075527 n 0000 | (genetics) an organism or cell having a chromosome number that is not an even multiple of the haploid chromosome number for that species -01320692 05 n 01 polyploid 0 003 @ 00004475 n 0000 ;c 06075527 n 0000 + 01147836 a 0101 | (genetics) an organism or cell having more than twice the haploid number of chromosomes -01320872 05 n 01 female 0 007 @ 00015388 n 0000 + 01477806 a 0101 ! 01321230 n 0101 ~ 01321123 n 0000 ~ 01323493 n 0000 ~ 01862399 n 0000 ~ 02376679 n 0000 | an animal that produces gametes (ova) that can be fertilized by male gametes (spermatozoa) -01321123 05 n 01 hen 3 001 @ 01320872 n 0000 | female of certain aquatic animals e.g. octopus or lobster -01321230 05 n 01 male 0 006 @ 00015388 n 0000 ! 01320872 n 0101 ~ 01323355 n 0000 ~ 02376791 n 0000 ~ 02376918 n 0000 ~ 02403231 n 0000 | an animal that produces gametes (spermatozoa) that can fertilize female gametes (ova) -01321456 05 n 01 adult 0 004 @ 00015388 n 0000 + 01488616 a 0101 + 15152817 n 0101 + 14425103 n 0101 | any mature animal -01321579 05 n 02 young 0 offspring 0 007 @ 00015388 n 0000 ~ 01318279 n 0000 ~ 01321770 n 0000 ~ 01321854 n 0000 ~ 01613615 n 0000 ~ 01956344 n 0000 ~ 02513560 n 0000 | any immature animal -01321770 05 n 01 orphan 0 001 @ 01321579 n 0000 | a young animal without a mother -01321854 05 n 01 young_mammal 0 017 @ 01321579 n 0000 #m 01861465 n 0000 ~ 01322221 n 0000 ~ 01322343 n 0000 ~ 01322508 n 0000 ~ 01322685 n 0000 ~ 01323155 n 0000 ~ 01323261 n 0000 ~ 01887896 n 0000 ~ 01888045 n 0000 ~ 02122948 n 0000 ~ 02376542 n 0000 ~ 02395694 n 0000 ~ 02403740 n 0000 ~ 02403820 n 0000 ~ 02412440 n 0000 ~ 02430830 n 0000 | any immature mammal -01322221 05 n 01 baby 0 003 @ 01321854 n 0000 + 15145586 n 0102 + 14427239 n 0102 | a very young mammal; "baby rabbits" -01322343 05 n 02 pup 0 whelp 0 004 @ 01321854 n 0000 + 00058516 v 0201 + 00058516 v 0102 ~ 01322604 n 0000 | young of any of various canines such as a dog or wolf -01322508 05 n 02 wolf_pup 0 wolf_cub 0 002 @ 01321854 n 0000 @ 02114100 n 0000 | a young wolf -01322604 05 n 01 puppy 0 002 @ 01322343 n 0000 @ 02084071 n 0000 | a young dog -01322685 05 n 02 cub 0 young_carnivore 0 005 @ 01321854 n 0000 + 00058014 v 0101 ~ 01322898 n 0000 ~ 01322983 n 0000 ~ 01323068 n 0000 | the young of certain carnivorous mammals such as the bear or wolf or lion -01322898 05 n 01 lion_cub 0 002 @ 01322685 n 0000 @ 02129165 n 0000 | a young lion -01322983 05 n 01 bear_cub 0 002 @ 01322685 n 0000 @ 02131653 n 0000 | a young bear -01323068 05 n 01 tiger_cub 0 002 @ 01322685 n 0000 @ 02129604 n 0000 | a young tiger -01323155 05 n 01 kit 0 001 @ 01321854 n 0000 | young of any of various fur-bearing animals; "a fox kit" -01323261 05 n 01 suckling 0 001 @ 01321854 n 0000 | a young mammal that has not been weaned -01323355 05 n 01 sire 0 002 @ 01321230 n 0000 + 00054628 v 0106 | male parent of an animal especially a domestic animal such as a horse -01323493 05 n 01 dam 0 001 @ 01320872 n 0000 | female parent of an animal especially domestic livestock -01323599 05 n 03 thoroughbred 0 purebred 0 pureblood 0 003 @ 00015388 n 0000 + 01903965 a 0303 + 01903617 a 0201 | a pedigreed animal of unmixed lineage; used especially of horses -01323781 05 n 01 giant 0 003 @ 00015388 n 0000 + 01385773 a 0103 + 01386538 a 0101 | any creature of exceptional size -01323901 05 n 01 vent 0 001 @ 05249636 n 0000 | external opening of urinary or genital system of a lower vertebrate -01324019 05 n 02 animalcule 0 animalculum 0 001 @ 00004475 n 0000 | microscopic organism such as an amoeba or paramecium -01324142 05 n 01 survivor 0 001 @ 00015388 n 0000 | an animal that survives in spite of adversity; "only the fittest animals were survivors of the cold winters" -01324305 05 n 01 mutant 0 003 @ 00015388 n 0000 + 02987454 a 0101 + 00119873 v 0101 | an animal that has undergone mutation -01324431 05 n 01 carnivore 2 001 @ 02152740 n 0000 | any animal that feeds on flesh; "Tyrannosaurus Rex was a large carnivore"; "insectivorous plants are considered carnivores" -01324610 05 n 01 herbivore 0 001 @ 00015388 n 0000 | any animal that feeds chiefly on grass and other plants; "horses are herbivores"; "the sauropod dinosaurs were apparently herbivores" -01324799 05 n 01 insectivore 2 002 @ 00015388 n 0000 + 00315383 a 0101 | any organism that feeds mainly on insects -01324916 05 n 01 acrodont 0 001 @ 00015388 n 0000 | an animal having teeth consolidated with the summit of the alveolar ridge without sockets -01325060 05 n 01 pleurodont 0 001 @ 00015388 n 0000 | an animal having teeth fused with the inner surface of the alveolar ridge without sockets -01325206 05 n 01 form_genus 0 001 @ 08108972 n 0000 | an artificial taxonomic category established on the basis of morphological resemblance for organisms of obscure true relationships especially fossil forms -01325417 05 n 01 horn 1 008 @ 05470189 n 0000 #p 02412080 n 0000 #p 02416519 n 0000 #p 02403325 n 0000 + 02034592 a 0101 + 01445027 v 0101 ~ 01325658 n 0000 %s 05269901 n 0000 | one of the bony outgrowths on the heads of certain ungulates -01325658 05 n 01 antler 0 002 @ 01325417 n 0000 #p 02430045 n 0000 | deciduous horn of a member of the deer family -01325775 05 n 01 tuft 0 001 @ 01326015 n 0000 | a bunch of feathers or hair -01325853 05 n 01 horn 2 002 @ 05470189 n 0000 + 01445027 v 0101 | any hard protuberance from the head of an organism that is similar to or suggestive of a horn -01326015 05 n 01 crest 0 004 @ 05470189 n 0000 ~ 01325775 n 0000 ~ 01326198 n 0000 ~ 01792255 n 0000 | a showy growth of e.g. feathers or skin on the head of a bird or other animal -01326198 05 n 01 topknot 0 001 @ 01326015 n 0000 | showy crest or knot of hair or feathers -01326291 05 n 02 microorganism 0 micro-organism 0 020 @ 00004475 n 0000 ;c 00015388 n 0000 ;c 00017222 n 0000 -c 00045735 a 0000 -c 01523567 a 0000 -c 01525502 a 0000 ~ 01326751 n 0000 ~ 01328515 n 0000 ~ 01328702 n 0000 ~ 01342269 n 0000 ~ 01348530 n 0000 ~ 01384491 n 0000 ~ 01386007 n 0000 ~ 01387065 n 0000 ~ 01387451 n 0000 %p 01902132 n 0000 -c 05166560 n 0000 -c 09469285 n 0000 ~ 11530008 n 0000 -c 14110219 n 0000 | any organism of microscopic size -01326751 05 n 01 monad 0 002 @ 01326291 n 0000 ;c 06037666 n 0000 | (biology) a single-celled microorganism (especially a flagellate protozoan) -01326897 05 n 01 aerobe 0 001 @ 00004475 n 0000 | an organism (especially a bacterium) that requires air or free oxygen for life -01327028 05 n 01 anaerobe 0 003 @ 00004475 n 0000 + 00069060 a 0102 ~ 01327204 n 0000 | an organism (especially a bacterium) that does not require air or free oxygen to live -01327204 05 n 01 obligate_anaerobe 0 001 @ 01327028 n 0000 | an organism that cannot grow in the presence of oxygen -01327322 05 n 03 hybrid 0 crossbreed 0 cross 0 008 @ 00004475 n 0000 ;c 06075527 n 0000 + 01429953 v 0302 + 01429953 v 0201 + 01904485 a 0101 + 01429953 v 0103 ~ 01327765 n 0000 ~ 01327909 n 0000 | (genetics) an organism that is the offspring of genetically dissimilar parents or stock; especially offspring produced by breeding plants or animals of different varieties or breeds or species; "a mule is a cross between a horse and a donkey" -01327765 05 n 01 dihybrid 0 001 @ 01327322 n 0000 | a hybrid produced by parents that differ only at two gene loci that have two alleles each -01327909 05 n 01 monohybrid 0 001 @ 01327322 n 0000 | a hybrid produced by crossing parents that are homozygous except for a single gene locus that has two alleles (as in Mendel's experiments with garden peas) -01328121 05 n 01 polymorph 0 003 @ 00004475 n 0000 + 01967041 a 0101 + 02855185 a 0101 | an organism that can assume more than one adult form as in the castes of ants or termites -01328302 05 n 04 relative 0 congener 0 congenator 0 congeneric 0 001 @ 00004475 n 0000 | an animal or plant that bears a relationship to another (as related by common descent or by membership in the same genus) -01328515 05 n 01 intestinal_flora 0 001 @ 01326291 n 0000 | harmless microorganisms (as Escherichia coli) that inhabit the intestinal tract and are essential for its normal functioning -01328702 05 n 01 virus 0 014 @ 01326291 n 0000 @ 09312843 n 0000 ;c 06065640 n 0000 + 02880201 a 0101 ~ 01329186 n 0000 -c 01329935 n 0000 ~ 01334862 n 0000 ~ 01335460 n 0000 ~ 01335659 n 0000 ~ 01341410 n 0000 ~ 01371777 n 0000 ~ 01372038 n 0000 -c 14186738 n 0000 -c 14919272 n 0000 | (virology) ultramicroscopic infectious agent that replicates itself only within cells of living hosts; many are pathogenic; a piece of nucleic acid (DNA or RNA) wrapped in a thin coat of protein -01329186 05 n 02 arbovirus 0 arborvirus 0 007 @ 01328702 n 0000 ~ 01331345 n 0000 ~ 01332347 n 0000 ~ 01332653 n 0000 ~ 01333082 n 0000 ~ 01333301 n 0000 ~ 01333610 n 0000 | a large heterogeneous group of RNA viruses divisible into groups on the basis of the virions; they have been recovered from arthropods, bats, and rodents; most are borne by arthropods; they are linked by the epidemiologic concept of transmission between vertebrate hosts by arthropod vectors (mosquitoes, ticks, sandflies, midges, etc.) that feed on blood; they can cause mild fevers, hepatitis, hemorrhagic fever, and encephalitis -01329794 05 n 01 capsid 0 002 @ 14728724 n 0000 #p 01329935 n 0000 | the outer covering of protein surrounding the nucleic acid of a virus -01329935 05 n 01 virion 0 003 @ 09386422 n 0000 ;c 01328702 n 0000 %p 01329794 n 0000 | (virology) a complete viral particle; nucleic acid and capsid (and a lipid envelope in some viruses) -01330126 05 n 01 adenovirus 0 002 @ 01335659 n 0000 ~ 01330314 n 0000 | any of a group of viruses including those that in humans cause upper respiratory infections or infectious pinkeye -01330314 05 n 01 parainfluenza_virus 0 001 @ 01330126 n 0000 | a virus that causes upper respiratory infection (including the common cold and bronchiolitis); most often in children -01330497 05 n 01 arenavirus 0 006 @ 01335659 n 0000 #m 01333082 n 0000 ~ 01330696 n 0000 ~ 01330852 n 0000 ~ 01330966 n 0000 ~ 01331188 n 0000 | animal viruses belonging to the family Arenaviridae -01330696 05 n 01 Junin_virus 0 002 @ 01330497 n 0000 #m 01333082 n 0000 | the RNA virus that causes Argentine hemorrhagic fever; carried by rats and mice -01330852 05 n 01 Lassa_virus 0 002 @ 01330497 n 0000 #m 01333082 n 0000 | the RNA virus that causes Lassa fever -01330966 05 n 01 lymphocytic_choriomeningitis_virus 0 002 @ 01330497 n 0000 #m 01333082 n 0000 | the RNA virus that causes lymphocytic choriomeningitis; infects mice and monkeys and dogs and guinea pigs and human beings -01331188 05 n 01 Machupo_virus 0 002 @ 01330497 n 0000 #m 01333082 n 0000 | the RNA virus that causes Bolivian hemorrhagic fever; carried by rats and mice -01331345 05 n 01 Bunyaviridae 0 002 @ 01329186 n 0000 #m 08107499 n 0000 | a large family of arboviruses that affect a wide range of hosts (mainly vertebrates and arthropods) -01331522 05 n 01 bunyavirus 0 001 @ 01335659 n 0000 | an animal virus belonging to the family Bunyaviridae; can be used as a bioweapon -01331659 05 n 01 Filoviridae 0 003 @ 08107499 n 0000 %m 01332009 n 0000 %m 01332181 n 0000 | a family of threadlike RNA viruses that cause diseases in humans and nonhuman primates (monkeys and chimpanzees) -01331867 05 n 01 filovirus 0 003 @ 01335659 n 0000 ~ 01332009 n 0000 ~ 01332181 n 0000 | animal viruses belonging to the family Filoviridae -01332009 05 n 01 Ebola_virus 0 002 @ 01331867 n 0000 #m 01331659 n 0000 | a filovirus that causes Ebola hemorrhagic fever; carried by animals; can be used as a bioweapon -01332181 05 n 01 Marburg_virus 0 002 @ 01331867 n 0000 #m 01331659 n 0000 | a filovirus that causes Marburg disease; carried by animals; can be used as a bioweapon -01332347 05 n 01 Togaviridae 0 003 @ 01329186 n 0000 #m 08107499 n 0000 %m 01332488 n 0000 | a family of arboviruses carried by arthropods -01332488 05 n 01 alphavirus 0 002 @ 01335659 n 0000 #m 01332347 n 0000 | an arbovirus of the family Togaviridae that can cause a variety of encephalitis in horses -01332653 05 n 01 Flaviviridae 0 003 @ 01329186 n 0000 #m 08107499 n 0000 %m 01332795 n 0000 | a family of arboviruses carried by arthropods -01332795 05 n 01 flavivirus 0 003 @ 01335659 n 0000 #m 01332653 n 0000 ~ 01332940 n 0000 | animal viruses belonging to the family Flaviviridae -01332940 05 n 02 West_Nile_virus 0 West_Nile_encephalitis_virus 0 001 @ 01332795 n 0000 | the flavivirus that causes West Nile encephalitis -01333082 05 n 01 Arenaviridae 0 007 @ 01329186 n 0000 #m 08107499 n 0000 %m 01330497 n 0000 %m 01330696 n 0000 %m 01330852 n 0000 %m 01330966 n 0000 %m 01331188 n 0000 | a family of arborviruses carried by arthropods -01333301 05 n 01 Rhabdoviridae 0 005 @ 01329186 n 0000 #m 08107499 n 0000 %m 01333483 n 0000 %m 01340648 n 0000 %m 01340785 n 0000 | a family of arborviruses carried by arthropods -01333483 05 n 01 vesiculovirus 0 002 @ 01335659 n 0000 #m 01333301 n 0000 | an animal virus that causes vesicular stomatitis -01333610 05 n 01 Reoviridae 0 002 @ 01329186 n 0000 #m 08107499 n 0000 | a family of arboviruses carried by arthropods -01333731 05 n 01 poxvirus 0 003 @ 01335659 n 0000 ~ 01333890 n 0000 ~ 01334036 n 0000 | any of a group of viruses that can cause pox diseases in vertebrates -01333890 05 n 01 myxoma_virus 0 001 @ 01333731 n 0000 | a poxvirus closely related to smallpox virus; causes benign gelatinous tumors in humans -01334036 05 n 02 variola_virus 0 smallpox_virus 0 003 @ 01333731 n 0000 ~ 01334217 n 0000 ~ 01334368 n 0000 | the virus that causes smallpox in humans; can be used as a bioweapon -01334217 05 n 02 variola_major 0 variola_major_virus 0 001 @ 01334036 n 0000 | a type of smallpox virus that has a fatality rate of up to 25 percent -01334368 05 n 02 variola_minor 0 variola_minor_virus 0 001 @ 01334036 n 0000 | a type of smallpox virus that has a fatality rate of about 1 percent -01334518 05 n 02 tobacco_mosaic_virus 0 TMV 0 001 @ 01335460 n 0000 | the widely studied plant virus that causes tobacco mosaic; it was the first virus discovered (1892) -01334690 05 n 02 viroid 0 virusoid 0 001 @ 01335460 n 0000 | the smallest of viruses; a plant virus with its RNA arranged in a circular chromosome without a protein coat -01334862 05 n 02 bacteriophage 0 phage 0 005 @ 01328702 n 0000 + 02657454 a 0101 + 02657454 a 0102 ~ 01335218 n 0000 ~ 01335333 n 0000 | a virus that is parasitic (reproduces itself) in bacteria; "phage uses the bacterium's machinery and energy to produce more phage until the bacterium is destroyed and phage is released to invade surrounding bacteria" -01335218 05 n 01 coliphage 0 001 @ 01334862 n 0000 | a bacteriophage that infects the bacterium Escherichia coli -01335333 05 n 01 typhoid_bacteriophage 0 001 @ 01334862 n 0000 | a bacteriophage specific for the bacterium Salmonella typhi -01335460 05 n 01 plant_virus 0 005 @ 01328702 n 0000 ~ 01334518 n 0000 ~ 01334690 n 0000 ~ 01341580 n 0000 ~ 01341727 n 0000 | a plant pathogen that is a virus consisting of a single strand of RNA -01335659 05 n 01 animal_virus 0 019 @ 01328702 n 0000 ~ 01330126 n 0000 ~ 01330497 n 0000 ~ 01331522 n 0000 ~ 01331867 n 0000 ~ 01332488 n 0000 ~ 01332795 n 0000 ~ 01333483 n 0000 ~ 01333731 n 0000 ~ 01336076 n 0000 ~ 01336282 n 0000 ~ 01336910 n 0000 ~ 01337583 n 0000 ~ 01338685 n 0000 ~ 01340155 n 0000 ~ 01340648 n 0000 ~ 01340785 n 0000 ~ 01340935 n 0000 ~ 01341183 n 0000 | an animal pathogen that is a virus -01336076 05 n 01 hepadnavirus 0 001 @ 01335659 n 0000 | a group of animal DNA viruses including viruses of ducks and woodchucks and squirrels and others as well as the virus causing hepatitis B in humans -01336282 05 n 01 retrovirus 0 003 @ 01335659 n 0000 ~ 01336599 n 0000 ~ 01336718 n 0000 | any of a group of viruses that contain two single-strand linear RNA molecules per virion and reverse transcriptase (RNA to DNA); the virus transcribes its RNA into a cDNA provirus that is then incorporated into the host cell -01336599 05 n 02 human_T-cell_leukemia_virus-1 0 HTLV-1 0 001 @ 01336282 n 0000 | retrovirus causing T-cell leukemia -01336718 05 n 02 human_immunodeficiency_virus 0 HIV 0 001 @ 01336282 n 0000 | the virus that causes acquired immune deficiency syndrome (AIDS); it replicates in and kills the helper T cells -01336910 05 n 01 myxovirus 0 003 @ 01335659 n 0000 ~ 01337078 n 0000 ~ 01337191 n 0000 | any of a group of RNA viruses including those that cause influenza and mumps -01337078 05 n 01 orthomyxovirus 0 001 @ 01336910 n 0000 | a group of viruses including those causing influenza -01337191 05 n 01 paramyxovirus 0 002 @ 01336910 n 0000 ~ 01337329 n 0000 | a group of viruses including those causing mumps and measles -01337329 05 n 01 respiratory_syncytial_virus 0 001 @ 01337191 n 0000 | a paramyxovirus that forms syncytia in tissue culture and that is responsible for severe respiratory diseases such as bronchiolitis and bronchial pneumonia (especially in children) -01337583 05 n 01 picornavirus 0 003 @ 01335659 n 0000 ~ 01337915 n 0000 ~ 01338537 n 0000 | a group of single-strand RNA viruses with a protein coat -01337734 05 n 01 poliovirus 0 001 @ 01337915 n 0000 | the virus causing poliomyelitis -01337822 05 n 01 hepatitis_A_virus 0 001 @ 01337915 n 0000 | the virus causing hepatitis A -01337915 05 n 01 enterovirus 0 005 @ 01337583 n 0000 ~ 01337734 n 0000 ~ 01337822 n 0000 ~ 01338178 n 0000 ~ 01338333 n 0000 | any of a group of picornaviruses that infect the gastrointestinal tract and can spread to other areas (especially the nervous system) -01338178 05 n 02 coxsackievirus 0 Coxsackie_virus 0 001 @ 01337915 n 0000 | enterovirus causing a disease resembling poliomyelitis but without paralysis -01338333 05 n 01 echovirus 0 001 @ 01337915 n 0000 | any of a group of viruses associated with various diseases including viral meningitis and mild respiratory disorders and diarrhea in newborn infants -01338537 05 n 01 rhinovirus 0 001 @ 01337583 n 0000 | any of a group of picornaviruses that are responsible for many upper respiratory infections -01338685 05 n 02 herpes 0 herpes_virus 0 006 @ 01335659 n 0000 ~ 01338908 n 0000 ~ 01339336 n 0000 ~ 01339623 n 0000 ~ 01339801 n 0000 ~ 01340014 n 0000 | any of the animal viruses that cause painful blisters on the skin -01338908 05 n 02 herpes_simplex 0 herpes_simplex_virus 0 003 @ 01338685 n 0000 ~ 01339083 n 0000 ~ 01339206 n 0000 | a herpes virus that affects the skin and nervous system -01339083 05 n 04 herpes_simplex_1 0 HS1 0 HSV-1 0 HSV-I 0 001 @ 01338908 n 0000 | a herpes virus that causes oral herpes -01339206 05 n 04 herpes_simplex_2 0 HS2 0 HSV-2 0 HSV-II 0 001 @ 01338908 n 0000 | a herpes virus that can cause genital herpes -01339336 05 n 02 herpes_zoster 0 herpes_zoster_virus 0 002 @ 01338685 n 0000 ~ 01339471 n 0000 | a herpes virus that causes shingles -01339471 05 n 02 herpes_varicella_zoster 0 herpes_varicella_zoster_virus 0 001 @ 01339336 n 0000 | a herpes virus that causes chickenpox and shingles -01339623 05 n 02 Epstein-Barr_virus 0 EBV 0 001 @ 01338685 n 0000 | the herpes virus that causes infectious mononucleosis; associated with specific cancers in Africa and China -01339801 05 n 02 cytomegalovirus 0 CMV 0 001 @ 01338685 n 0000 | any of a group of herpes viruses that enlarge epithelial cells and can cause birth defects; can affect humans with impaired immunological systems -01340014 05 n 01 varicella_zoster_virus 0 001 @ 01338685 n 0000 | the member of the herpes virus family that is responsible for chickenpox -01340155 05 n 01 papovavirus 0 003 @ 01335659 n 0000 ~ 01340331 n 0000 ~ 01340522 n 0000 | any of a group of animal viruses associated with or causing papillomas or polyomas -01340331 05 n 01 human_papilloma_virus 0 001 @ 01340155 n 0000 | any of a group of papovaviruses associated with genital or oral carcinomas or a group associated with benign genital tumors -01340522 05 n 02 polyoma 0 polyoma_virus 0 001 @ 01340155 n 0000 | a virus the can initiate various kinds of tumors in mice -01340648 05 n 01 rhabdovirus 0 002 @ 01335659 n 0000 #m 01333301 n 0000 | any of a group of arboviruses including those causing rabies -01340785 05 n 01 lyssavirus 0 002 @ 01335659 n 0000 #m 01333301 n 0000 | a neurotropic non-arbovirus of the family Rhabdoviridae that causes rabies -01340935 05 n 01 reovirus 0 002 @ 01335659 n 0000 ~ 01341090 n 0000 | any of a group of non-arboviruses including the rotavirus causing infant enteritis -01341090 05 n 01 rotavirus 0 001 @ 01340935 n 0000 | the reovirus causing infant enteritis -01341183 05 n 02 parvovirus 0 parvo 0 001 @ 01335659 n 0000 | any of a group of viruses containing DNA in an icosahedral protein shell and causing disease in dogs and cattle; not known to be associated with any human disease -01341410 05 n 01 slow_virus 0 001 @ 01328702 n 0000 | a virus that remains dormant in the body for a long time before symptoms appear; "kuru is caused by a slow virus" -01341580 05 n 01 onion_yellow-dwarf_virus 0 001 @ 01335460 n 0000 | the virus that produces stunting and yellowing of the leaves of onion plants -01341727 05 n 01 potato_yellow-dwarf_virus 0 001 @ 01335460 n 0000 | the virus that produces stunting and yellowing of the leaves of potato plants -01341876 05 n 04 Monera 0 kingdom_Monera 0 Prokayotae 0 kingdom_Prokaryotae 0 006 @ 07940552 n 0000 %m 01342269 n 0000 %m 01347431 n 0000 %m 01354869 n 0000 %m 01379636 n 0000 %m 01388992 n 0000 | prokaryotic bacteria and blue-green algae and various primitive pathogens; because of lack of consensus on how to divide the organisms into phyla informal names are used for the major divisions -01342269 05 n 02 moneran 0 moneron 0 004 @ 01326291 n 0000 #m 01341876 n 0000 ~ 01347583 n 0000 ~ 01355326 n 0000 | organisms that typically reproduce by asexual budding or fission and whose nutritional mode is absorption or photosynthesis or chemosynthesis -01342529 05 n 01 animal_order 0 256 @ 08106934 n 0000 #m 01313093 n 0000 ~ 01356086 n 0000 ~ 01360330 n 0000 ~ 01370913 n 0000 ~ 01373272 n 0000 ~ 01374989 n 0000 ~ 01377906 n 0000 ~ 01381399 n 0000 ~ 01390627 n 0000 ~ 01390899 n 0000 ~ 01391569 n 0000 ~ 01392843 n 0000 ~ 01393873 n 0000 ~ 01403805 n 0000 ~ 01409940 n 0000 ~ 01417041 n 0000 ~ 01418794 n 0000 ~ 01419082 n 0000 ~ 01422835 n 0000 ~ 01423464 n 0000 ~ 01423757 n 0000 ~ 01425983 n 0000 ~ 01426466 n 0000 ~ 01427005 n 0000 ~ 01427241 n 0000 ~ 01427547 n 0000 ~ 01428155 n 0000 ~ 01437805 n 0000 ~ 01450081 n 0000 ~ 01452496 n 0000 ~ 01453852 n 0000 ~ 01474641 n 0000 ~ 01475025 n 0000 ~ 01475421 n 0000 ~ 01475794 n 0000 ~ 01476135 n 0000 ~ 01476829 n 0000 ~ 01477184 n 0000 ~ 01478073 n 0000 ~ 01496037 n 0000 ~ 01496617 n 0000 ~ 01518170 n 0000 ~ 01518347 n 0000 ~ 01519046 n 0000 ~ 01520058 n 0000 ~ 01520789 n 0000 ~ 01521980 n 0000 ~ 01522594 n 0000 ~ 01523656 n 0000 ~ 01523908 n 0000 ~ 01524885 n 0000 ~ 01545149 n 0000 ~ 01546223 n 0000 ~ 01546660 n 0000 ~ 01547143 n 0000 ~ 01604123 n 0000 ~ 01604625 n 0000 ~ 01620967 n 0000 ~ 01628450 n 0000 ~ 01639369 n 0000 ~ 01654957 n 0000 ~ 01655577 n 0000 ~ 01656078 n 0000 ~ 01656340 n 0000 ~ 01656576 n 0000 ~ 01662274 n 0000 ~ 01672950 n 0000 ~ 01673503 n 0000 ~ 01673668 n 0000 ~ 01696282 n 0000 ~ 01696525 n 0000 ~ 01700076 n 0000 ~ 01701334 n 0000 ~ 01702623 n 0000 ~ 01702862 n 0000 ~ 01703341 n 0000 ~ 01705247 n 0000 ~ 01707895 n 0000 ~ 01708332 n 0000 ~ 01708648 n 0000 ~ 01708778 n 0000 ~ 01711662 n 0000 ~ 01712432 n 0000 ~ 01713310 n 0000 ~ 01715692 n 0000 ~ 01716732 n 0000 ~ 01719645 n 0000 ~ 01721404 n 0000 ~ 01721718 n 0000 ~ 01722828 n 0000 ~ 01723678 n 0000 ~ 01724055 n 0000 ~ 01725240 n 0000 ~ 01725427 n 0000 ~ 01725933 n 0000 ~ 01726390 n 0000 ~ 01769635 n 0000 ~ 01770263 n 0000 ~ 01770553 n 0000 ~ 01771246 n 0000 ~ 01771966 n 0000 ~ 01775879 n 0000 ~ 01785831 n 0000 ~ 01786879 n 0000 ~ 01787401 n 0000 ~ 01788420 n 0000 ~ 01789064 n 0000 ~ 01809977 n 0000 ~ 01810466 n 0000 ~ 01816635 n 0000 ~ 01822423 n 0000 ~ 01825417 n 0000 ~ 01825758 n 0000 ~ 01831519 n 0000 ~ 01834702 n 0000 ~ 01837746 n 0000 ~ 01843805 n 0000 ~ 01845272 n 0000 ~ 01846156 n 0000 ~ 01871699 n 0000 ~ 01874126 n 0000 ~ 01888520 n 0000 ~ 01888821 n 0000 ~ 01888948 n 0000 ~ 01912272 n 0000 ~ 01914415 n 0000 ~ 01915093 n 0000 ~ 01915290 n 0000 ~ 01916010 n 0000 ~ 01916738 n 0000 ~ 01919714 n 0000 ~ 01919912 n 0000 ~ 01920582 n 0000 ~ 01921216 n 0000 ~ 01950457 n 0000 ~ 01952162 n 0000 ~ 01952812 n 0000 ~ 01954340 n 0000 ~ 01956924 n 0000 ~ 01969550 n 0000 ~ 01970866 n 0000 ~ 01973375 n 0000 ~ 01975880 n 0000 ~ 01976477 n 0000 ~ 01982482 n 0000 ~ 01986367 n 0000 ~ 01988319 n 0000 ~ 01988481 n 0000 ~ 01988971 n 0000 ~ 01989701 n 0000 ~ 01990627 n 0000 ~ 01992516 n 0000 ~ 01995137 n 0000 ~ 01995803 n 0000 ~ 01997436 n 0000 ~ 02001428 n 0000 ~ 02012306 n 0000 ~ 02018485 n 0000 ~ 02021438 n 0000 ~ 02022135 n 0000 ~ 02022498 n 0000 ~ 02040698 n 0000 ~ 02048514 n 0000 ~ 02049299 n 0000 ~ 02051213 n 0000 ~ 02055280 n 0000 ~ 02057478 n 0000 ~ 02062209 n 0000 ~ 02062991 n 0000 ~ 02066450 n 0000 ~ 02073041 n 0000 ~ 02074915 n 0000 ~ 02075727 n 0000 ~ 02082358 n 0000 ~ 02138921 n 0000 ~ 02139479 n 0000 ~ 02140970 n 0000 ~ 02161737 n 0000 ~ 02161944 n 0000 ~ 02163144 n 0000 ~ 02163616 n 0000 ~ 02163982 n 0000 ~ 02183353 n 0000 ~ 02183697 n 0000 ~ 02185337 n 0000 ~ 02185973 n 0000 ~ 02188065 n 0000 ~ 02199712 n 0000 ~ 02205896 n 0000 ~ 02222718 n 0000 ~ 02225959 n 0000 ~ 02230782 n 0000 ~ 02232606 n 0000 ~ 02233096 n 0000 ~ 02235575 n 0000 ~ 02236495 n 0000 ~ 02241184 n 0000 ~ 02245592 n 0000 ~ 02260183 n 0000 ~ 02261883 n 0000 ~ 02262679 n 0000 ~ 02263038 n 0000 ~ 02265471 n 0000 ~ 02267975 n 0000 ~ 02268334 n 0000 ~ 02268746 n 0000 ~ 02269015 n 0000 ~ 02269829 n 0000 ~ 02271427 n 0000 ~ 02272707 n 0000 ~ 02273545 n 0000 ~ 02319423 n 0000 ~ 02319689 n 0000 ~ 02323186 n 0000 ~ 02329093 n 0000 ~ 02330582 n 0000 ~ 02346315 n 0000 ~ 02354950 n 0000 ~ 02371471 n 0000 ~ 02372251 n 0000 ~ 02373093 n 0000 ~ 02394068 n 0000 ~ 02398732 n 0000 ~ 02453373 n 0000 ~ 02453890 n 0000 ~ 02461372 n 0000 ~ 02469588 n 0000 ~ 02470451 n 0000 ~ 02494538 n 0000 ~ 02495789 n 0000 ~ 02496576 n 0000 ~ 02497214 n 0000 ~ 02501101 n 0000 ~ 02502085 n 0000 ~ 02502902 n 0000 ~ 02517169 n 0000 ~ 02521241 n 0000 ~ 02521472 n 0000 ~ 02525866 n 0000 ~ 02528534 n 0000 ~ 02544596 n 0000 ~ 02547213 n 0000 ~ 02549533 n 0000 ~ 02551824 n 0000 ~ 02553196 n 0000 ~ 02554512 n 0000 ~ 02574489 n 0000 ~ 02600953 n 0000 ~ 02612393 n 0000 ~ 02623170 n 0000 ~ 02638323 n 0000 ~ 02641608 n 0000 ~ 02641825 n 0000 ~ 02652335 n 0000 ~ 02657083 n 0000 | the order of animals -01347199 05 n 01 protoctist_order 0 009 @ 08106934 n 0000 #m 01386494 n 0000 ~ 01401296 n 0000 ~ 01402831 n 0000 ~ 01408253 n 0000 ~ 01408880 n 0000 ~ 01410847 n 0000 ~ 01411556 n 0000 ~ 01412279 n 0000 | the order of protoctists -01347431 05 n 01 division_Archaebacteria 0 003 @ 08221348 n 0000 #m 01341876 n 0000 %m 01347583 n 0000 | in some classifications considered a kingdom -01347583 05 n 04 archaebacteria 0 archaebacterium 0 archaeobacteria 0 archeobacteria 0 005 @ 01342269 n 0000 #m 01347431 n 0000 ~ 01347858 n 0000 ~ 01348075 n 0000 ~ 01348388 n 0000 | considered ancient life forms that evolved separately from bacteria and blue-green algae -01347858 05 n 01 methanogen 0 001 @ 01347583 n 0000 | archaebacteria found in anaerobic environments such as animal intestinal tracts or sediments or sewage and capable of producing methane; a source of natural gas -01348075 05 n 02 halophile 0 halophil 0 002 @ 01347583 n 0000 ~ 01348232 n 0000 | archaebacteria requiring a salt-rich environment for growth and survival -01348232 05 n 03 halobacteria 0 halobacterium 0 halobacter 0 001 @ 01348075 n 0000 | halophiles in saline environments such as the Dead Sea or salt flats -01348388 05 n 01 thermoacidophile 0 001 @ 01347583 n 0000 | archaebacteria that thrive in strongly acidic environments at high temperatures -01348530 05 n 02 bacteria 0 bacterium 0 028 @ 01326291 n 0000 ;c 06077648 n 0000 + 02657741 a 0203 + 02833544 a 0201 + 00138360 v 0201 + 00138360 v 0202 + 02833544 a 0101 -c 01696999 a 0000 -c 01820684 a 0000 -c 01821078 a 0000 -c 00860434 n 0000 -c 01135163 n 0000 ~ 01349333 n 0000 ~ 01349495 n 0000 ~ 01349735 n 0000 ~ 01355326 n 0000 ~ 01365122 n 0000 ~ 01365474 n 0000 ~ 01365885 n 0000 ~ 01374224 n 0000 ~ 01374457 n 0000 ~ 01377392 n 0000 ~ 01377510 n 0000 ~ 01377602 n 0000 ~ 01380610 n 0000 ~ 02247950 n 0000 -c 05213894 n 0000 -c 05453815 n 0000 | (microbiology) single-celled or noncellular spherical or spiral or rod-shaped organisms lacking chlorophyll that reproduce by fission; important as pathogens and for biochemical properties; taxonomy is difficult; often considered to be plants -01349333 05 n 02 acidophil 0 acidophile 0 003 @ 01348530 n 0000 + 00026895 a 0201 + 00026895 a 0101 | an organism that thrives in a relatively acid environment -01349495 05 n 04 probiotic 0 probiotic_bacterium 0 probiotic_microflora 0 probiotic_flora 0 002 @ 01348530 n 0000 ~ 01380298 n 0000 | a beneficial bacterium found in the intestinal tract of healthy mammals; often considered to be a plant -01349735 05 n 01 bacteroid 0 003 @ 01348530 n 0000 + 02657741 a 0102 + 02657741 a 0101 | a rodlike bacterium (especially any of the rod-shaped or branched bacteria in the root nodules of nitrogen-fixing plants) -01349948 05 n 02 bacillus 0 B 0 007 @ 01355326 n 0000 #m 01356670 n 0000 + 02144988 a 0102 + 02656930 a 0102 ~ 01350226 n 0000 ~ 01350485 n 0000 ~ 01350701 n 0000 | aerobic rod-shaped spore-producing bacterium; often occurring in chainlike formations; found primarily in soil -01350226 05 n 02 Bacillus_anthracis 0 anthrax_bacillus 0 002 @ 01349948 n 0000 @ 02842303 n 0000 | a species of bacillus that causes anthrax in humans and in animals (cattle and swine and sheep and rabbits and mice and guinea pigs); can be used a bioweapon -01350485 05 n 04 Bacillus_subtilis 0 Bacillus_globigii 0 grass_bacillus 0 hay_bacillus 0 001 @ 01349948 n 0000 | a species of bacillus found in soil and decomposing organic matter; some strains produce antibiotics -01350701 05 n 01 Yersinia_pestis 0 001 @ 01349948 n 0000 | a bacillus bacterium that causes the plague; aerosolized bacteria can be used as a bioweapon -01350855 05 n 02 coccus 0 cocci 0 003 @ 01355326 n 0000 + 02698898 a 0101 ~ 01379389 n 0000 | any spherical or nearly spherical bacteria -01350994 05 n 01 coccobacillus 0 002 @ 01355326 n 0000 ~ 01351170 n 0000 | a bacterial cell intermediate in morphology between a coccus and a bacillus; a very short bacillus -01351170 05 n 01 Brucella 0 001 @ 01350994 n 0000 | an aerobic Gram-negative coccobacillus that causes brucellosis; can be used as a bioweapon -01351315 05 n 02 spirillum 1 spirilla 0 001 @ 01355326 n 0000 | any flagellated aerobic bacteria having a spirally twisted rodlike form -01351453 05 n 02 Heliobacter 0 genus_Heliobacter 0 001 @ 01352574 n 0000 | a genus of helical or curved or straight aerobic bacteria with rounded ends and multiple flagella; found in the gastric mucosa of primates (including humans) -01351688 05 n 02 Heliobacter_pylori 0 H._pylori 0 001 @ 01353411 n 0000 | the type species of genus Heliobacter; produces urease and is associated with several gastroduodenal diseases (including gastritis and gastric ulcers and duodenal ulcers and other peptic ulcers) -01351959 05 n 01 bacteria_order 0 002 @ 08456993 n 0000 #m 01354869 n 0000 | an order of bacteria -01352059 05 n 01 bacteria_family 0 025 @ 08107499 n 0000 #m 01354869 n 0000 ~ 01354149 n 0000 ~ 01356459 n 0000 ~ 01358904 n 0000 ~ 01359070 n 0000 ~ 01359488 n 0000 ~ 01360712 n 0000 ~ 01361840 n 0000 ~ 01362769 n 0000 ~ 01363423 n 0000 ~ 01364587 n 0000 ~ 01366015 n 0000 ~ 01367430 n 0000 ~ 01371092 n 0000 ~ 01372372 n 0000 ~ 01373440 n 0000 ~ 01375460 n 0000 ~ 01375913 n 0000 ~ 01376801 n 0000 ~ 01378137 n 0000 ~ 01378800 n 0000 ~ 01379636 n 0000 ~ 01381604 n 0000 ~ 01382273 n 0000 | a family of bacteria -01352574 05 n 01 bacteria_genus 0 043 @ 08108972 n 0000 #m 01354869 n 0000 ~ 01351453 n 0000 ~ 01353773 n 0000 ~ 01354324 n 0000 ~ 01354521 n 0000 ~ 01356670 n 0000 ~ 01356888 n 0000 ~ 01359203 n 0000 ~ 01359631 n 0000 ~ 01360937 n 0000 ~ 01361465 n 0000 ~ 01361973 n 0000 ~ 01362196 n 0000 ~ 01362480 n 0000 ~ 01362999 n 0000 ~ 01363600 n 0000 ~ 01364008 n 0000 ~ 01364866 n 0000 ~ 01366415 n 0000 ~ 01366881 n 0000 ~ 01368095 n 0000 ~ 01368552 n 0000 ~ 01368853 n 0000 ~ 01369633 n 0000 ~ 01370142 n 0000 ~ 01370581 n 0000 ~ 01371342 n 0000 ~ 01372544 n 0000 ~ 01373675 n 0000 ~ 01375617 n 0000 ~ 01376092 n 0000 ~ 01376948 n 0000 ~ 01378346 n 0000 ~ 01379116 n 0000 ~ 01379252 n 0000 ~ 01379954 n 0000 ~ 01380489 n 0000 ~ 01380902 n 0000 ~ 01381829 n 0000 ~ 01382482 n 0000 ~ 01382839 n 0000 ~ 01383332 n 0000 | a genus of bacteria -01353411 05 n 01 bacteria_species 0 010 @ 08110373 n 0000 #m 01354869 n 0000 ~ 01351688 n 0000 ~ 01353658 n 0000 ~ 01353932 n 0000 ~ 01354724 n 0000 ~ 01365322 n 0000 ~ 01365684 n 0000 ~ 01369819 n 0000 ~ 01381285 n 0000 | a species of bacteria -01353658 05 n 01 Pseudomonas_pyocanea 0 002 @ 01353411 n 0000 #m 01360937 n 0000 | a species of aerobic bacteria -01353773 05 n 02 Aerobacter 0 genus_Aerobacter 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01353932 n 0000 | aerobic bacteria widely distributed in nature -01353932 05 n 01 Aerobacter_aerogenes 0 002 @ 01353411 n 0000 #m 01353773 n 0000 | a species of Gram-negative aerobic bacteria that produce gas and acid from sugars and are sometimes involved in the souring of milk -01354149 05 n 02 Rhizobiaceae 0 family_Rhizobiaceae 0 004 @ 01352059 n 0000 #m 01356086 n 0000 %m 01354324 n 0000 %m 01354521 n 0000 | a small family of rod-shaped bacteria -01354324 05 n 02 Rhizobium 0 genus_Rhizobium 0 002 @ 01352574 n 0000 #m 01354149 n 0000 | the type genus of Rhizobiaceae; usually occur in the root nodules of legumes; can fix atmospheric oxygen -01354521 05 n 02 Agrobacterium 0 genus_Agrobacterium 0 003 @ 01352574 n 0000 #m 01354149 n 0000 %m 01354724 n 0000 | small motile bacterial rods that can reduce nitrates and cause galls on plant stems -01354724 05 n 01 Agrobacterium_tumefaciens 0 002 @ 01353411 n 0000 #m 01354521 n 0000 | the bacteria that produce crown gall disease in plants -01354869 05 n 01 division_Eubacteria 0 017 @ 08221348 n 0000 #m 01341876 n 0000 %m 01351959 n 0000 %m 01352059 n 0000 %m 01352574 n 0000 %m 01353411 n 0000 %m 01355326 n 0000 %m 01356086 n 0000 %m 01357707 n 0000 %m 01357967 n 0000 %m 01360330 n 0000 %m 01370913 n 0000 %m 01373272 n 0000 %m 01374989 n 0000 %m 01377906 n 0000 %m 01378800 n 0000 %m 01381399 n 0000 | one-celled monerans having simple cells with rigid walls and (in motile types) flagella -01355326 05 n 03 eubacteria 0 eubacterium 0 true_bacteria 0 034 @ 01348530 n 0000 @ 01342269 n 0000 #m 01354869 n 0000 ~ 01349948 n 0000 ~ 01350855 n 0000 ~ 01350994 n 0000 ~ 01351315 n 0000 ~ 01357156 n 0000 ~ 01357328 n 0000 ~ 01357507 n 0000 ~ 01358572 n 0000 ~ 01359945 n 0000 ~ 01361261 n 0000 ~ 01361683 n 0000 ~ 01362336 n 0000 ~ 01362623 n 0000 ~ 01363121 n 0000 ~ 01363719 n 0000 ~ 01364162 n 0000 ~ 01366276 n 0000 ~ 01367083 n 0000 ~ 01367772 n 0000 ~ 01370816 n 0000 ~ 01371483 n 0000 ~ 01372709 n 0000 ~ 01373826 n 0000 ~ 01375204 n 0000 ~ 01375760 n 0000 ~ 01377092 n 0000 ~ 01378545 n 0000 ~ 01380118 n 0000 ~ 01381044 n 0000 ~ 01382033 n 0000 %p 01458302 n 0000 | a large group of bacteria having rigid cell walls; motile types have flagella -01356086 05 n 02 Eubacteriales 0 order_Eubacteriales 0 007 @ 01342529 n 0000 #m 01354869 n 0000 %m 01354149 n 0000 %m 01356459 n 0000 %m 01364587 n 0000 %m 01366015 n 0000 %m 01367430 n 0000 | one of two usually recognized orders of true bacteria; Gram-positive spherical or rod-shaped forms; some are motile; in some classifications considered an order of Schizomycetes -01356459 05 n 02 Bacillaceae 0 family_Bacillaceae 0 004 @ 01352059 n 0000 #m 01356086 n 0000 %m 01356670 n 0000 %m 01356888 n 0000 | typically rod-shaped usually Gram-positive bacteria that produce endospores -01356670 05 n 01 genus_Bacillus 0 003 @ 01352574 n 0000 #m 01356459 n 0000 %m 01349948 n 0000 | type genus of the Bacillaceae; includes many saprophytes important in decay of organic matter and a number of parasites -01356888 05 n 01 genus_Clostridium 0 005 @ 01352574 n 0000 #m 01356459 n 0000 %m 01357156 n 0000 %m 01357328 n 0000 %m 01357507 n 0000 | anaerobic or micro-aerophilic rod-shaped or spindle-shaped saprophytes; nearly cosmopolitan in soil, animal intestines, and dung -01357156 05 n 02 clostridium 0 clostridia 0 002 @ 01355326 n 0000 #m 01356888 n 0000 | spindle-shaped bacterial cell especially one swollen at the center by an endospore -01357328 05 n 03 botulinus 0 botulinum 0 Clostridium_botulinum 0 002 @ 01355326 n 0000 #m 01356888 n 0000 | anaerobic bacterium producing botulin the toxin that causes botulism -01357507 05 n 01 clostridium_perfringens 0 003 @ 01355326 n 0000 @ 02842303 n 0000 #m 01356888 n 0000 | anaerobic Gram-positive rod bacterium that produces epsilon toxin; can be used as a bioweapon -01357707 05 n 02 Cyanophyta 0 division_Cyanophyta 0 003 @ 08221348 n 0000 #m 01354869 n 0000 %m 01358259 n 0000 | prokaryotic organisms sometimes considered a class or phylum or subkingdom; coextensive with the Cyanophyceae: cyanobacteria (blue-green algae) -01357967 05 n 02 Schizophyta 0 division_Schizophyta 0 004 @ 08221348 n 0000 #m 01354869 n 0000 %m 01358135 n 0000 %m 01358904 n 0000 | former term for the Cyanophyta -01358135 05 n 02 Schizomycetes 0 class_Schizomycetes 0 002 @ 08103777 n 0000 #m 01357967 n 0000 | a former classification -01358259 05 n 03 class_Cyanobacteria 0 Cyanophyceae 0 class_Cyanophyceae 0 005 @ 08103777 n 0000 #m 01357707 n 0000 %m 01358572 n 0000 %m 01359070 n 0000 %m 01359488 n 0000 | photosynthetic bacteria found in fresh and salt water, having chlorophyll a and phycobilins; once thought to be algae: blue-green algae -01358572 05 n 02 cyanobacteria 0 blue-green_algae 0 005 @ 01355326 n 0000 #m 01358259 n 0000 + 02833979 a 0101 ~ 01359365 n 0000 ~ 01359762 n 0000 | predominantly photosynthetic prokaryotic organisms containing a blue pigment in addition to chlorophyll; occur singly or in colonies in diverse habitats; important as phytoplankton -01358904 05 n 04 Myxophyceae 0 family_Myxophyceae 0 Schizophyceae 0 family_Schizophyceae 0 002 @ 01352059 n 0000 #m 01357967 n 0000 | former terms for Cyanophyceae -01359070 05 n 02 Nostocaceae 0 family_Nostocaceae 0 003 @ 01352059 n 0000 #m 01358259 n 0000 %m 01359203 n 0000 | blue-green algae -01359203 05 n 01 genus_Nostoc 0 003 @ 01352574 n 0000 #m 01359070 n 0000 %m 01359365 n 0000 | type genus of the family Nostocaceae: freshwater blue-green algae -01359365 05 n 01 nostoc 0 002 @ 01358572 n 0000 #m 01359203 n 0000 | found in moist places as rounded jellylike colonies -01359488 05 n 02 Oscillatoriaceae 0 family_Oscillatoriaceae 0 003 @ 01352059 n 0000 #m 01358259 n 0000 %m 01359631 n 0000 | blue green algae -01359631 05 n 01 genus_Trichodesmium 0 003 @ 01352574 n 0000 #m 01359488 n 0000 %m 01359762 n 0000 | a genus of blue-green algae -01359762 05 n 01 trichodesmium 0 002 @ 01358572 n 0000 #m 01359631 n 0000 | large colonial bacterium common in tropical open-ocean waters; important in carbon and nitrogen fixation -01359945 05 n 02 phototrophic_bacteria 0 phototropic_bacteria 0 002 @ 01355326 n 0000 ~ 01360180 n 0000 | green and purple bacteria; energy for growth is derived from sunlight; carbon is derived from carbon dioxide or organic carbon -01360180 05 n 01 purple_bacteria 0 001 @ 01359945 n 0000 | free-living Gram-negative pink to purplish-brown bacteria containing bacteriochlorophyll -01360330 05 n 02 Pseudomonadales 0 order_Pseudomonadales 0 007 @ 01342529 n 0000 #m 01354869 n 0000 %m 01360712 n 0000 %m 01361840 n 0000 %m 01361973 n 0000 %m 01362769 n 0000 %m 01363423 n 0000 | one of two usually recognized orders of true bacteria; Gram-negative spiral or spherical or rod-shaped bacteria usually motile by polar flagella; some contain photosynthetic pigments -01360712 05 n 02 Pseudomonodaceae 0 family_Pseudomonodaceae 0 004 @ 01352059 n 0000 #m 01360330 n 0000 %m 01360937 n 0000 %m 01361465 n 0000 | rod-shaped Gram-negative bacteria; include important plant and animal pathogens -01360937 05 n 02 Pseudomonas 0 genus_Pseudomonas 0 004 @ 01352574 n 0000 #m 01360712 n 0000 %m 01353658 n 0000 %m 01361261 n 0000 | type genus of the family Pseudomonodaceae -01361113 05 n 02 ring_rot_bacteria 0 Pseudomonas_solanacearum 0 001 @ 01361261 n 0000 | causes brown rot in tomatoes and potatoes and tobacco etc -01361261 05 n 01 pseudomonad 0 003 @ 01355326 n 0000 #m 01360937 n 0000 ~ 01361113 n 0000 | bacteria usually producing greenish fluorescent water-soluble pigment; some pathogenic for plants and animals -01361465 05 n 02 Xanthomonas 0 genus_Xanthomonas 0 003 @ 01352574 n 0000 #m 01360712 n 0000 %m 01361683 n 0000 | a genus of bacteria similar to Pseudomonas but producing a yellow pigment that is not soluble in water -01361683 05 n 01 xanthomonad 0 002 @ 01355326 n 0000 #m 01361465 n 0000 | bacteria producing yellow non-water-soluble pigments; some pathogenic for plants -01361840 05 n 02 Athiorhodaceae 0 family_Athiorhodaceae 0 002 @ 01352059 n 0000 #m 01360330 n 0000 | small motile sulphur bacteria -01361973 05 n 02 Nitrobacteriaceae 0 family_Nitrobacteriaceae 0 004 @ 01352574 n 0000 #m 01360330 n 0000 %m 01362196 n 0000 %m 01362480 n 0000 | usually rod-shaped bacteria that oxidize ammonia or nitrites: nitrobacteria -01362196 05 n 02 Nitrobacter 0 genus_Nitrobacter 0 003 @ 01352574 n 0000 #m 01361973 n 0000 %m 01362336 n 0000 | rod-shaped soil bacteria -01362336 05 n 02 nitric_bacteria 0 nitrobacteria 0 002 @ 01355326 n 0000 #m 01362196 n 0000 | soil bacteria that convert nitrites to nitrates -01362480 05 n 02 Nitrosomonas 0 genus_Nitrosomonas 0 003 @ 01352574 n 0000 #m 01361973 n 0000 %m 01362623 n 0000 | ellipsoidal soil bacteria -01362623 05 n 02 nitrosobacteria 0 nitrous_bacteria 0 002 @ 01355326 n 0000 #m 01362480 n 0000 | soil bacteria that oxidize ammonia to nitrites -01362769 05 n 02 Thiobacteriaceae 0 family_Thiobacteriaceae 0 003 @ 01352059 n 0000 #m 01360330 n 0000 %m 01362999 n 0000 | free-living coccoid to rod-shaped bacteria that derive energy from oxidizing sulfur or sulfur compounds -01362999 05 n 01 genus_Thiobacillus 0 003 @ 01352574 n 0000 #m 01362769 n 0000 %m 01363121 n 0000 | a genus of bacteria -01363121 05 n 01 thiobacillus 0 003 @ 01355326 n 0000 #m 01362999 n 0000 ~ 01363288 n 0000 | small rod-shaped bacteria living in sewage or soil and oxidizing sulfur -01363288 05 n 03 thiobacteria 0 sulphur_bacteria 0 sulfur_bacteria 0 001 @ 01363121 n 0000 | any bacterium of the genus Thiobacillus -01363423 05 n 02 Spirillaceae 0 family_Spirillaceae 0 004 @ 01352059 n 0000 #m 01360330 n 0000 %m 01363600 n 0000 %m 01364008 n 0000 | rigid spirally curved elongate bacteria -01363600 05 n 01 genus_Spirillum 0 003 @ 01352574 n 0000 #m 01363423 n 0000 %m 01363719 n 0000 | a genus of bacteria -01363719 05 n 01 spirillum 2 003 @ 01355326 n 0000 #m 01363600 n 0000 ~ 01363887 n 0000 | spirally twisted elongate rodlike bacteria usually living in stagnant water -01363887 05 n 02 ratbite_fever_bacterium 0 Spirillum_minus 0 001 @ 01363719 n 0000 | a bacterium causing ratbite fever -01364008 05 n 01 genus_Vibrio 0 005 @ 01352574 n 0000 #m 01363423 n 0000 %m 01364162 n 0000 %m 01364329 n 0000 %m 01364472 n 0000 | a genus of bacteria -01364162 05 n 02 vibrio 0 vibrion 0 005 @ 01355326 n 0000 #m 01364008 n 0000 + 03128963 a 0101 ~ 01364329 n 0000 ~ 01364472 n 0000 | curved rodlike motile bacterium -01364329 05 n 02 comma_bacillus 0 Vibrio_comma 0 002 @ 01364162 n 0000 #m 01364008 n 0000 | comma-shaped bacteria that cause Asiatic cholera -01364472 05 n 01 Vibrio_fetus 0 002 @ 01364162 n 0000 #m 01364008 n 0000 | bacteria that cause abortion in sheep -01364587 05 n 02 Bacteroidaceae 0 family_Bacteroidaceae 0 003 @ 01352059 n 0000 #m 01356086 n 0000 %m 01364866 n 0000 | family of bacteria living usually in the alimentary canal or on mucous surfaces of warm-blooded animals; sometimes associated with acute infective processes -01364866 05 n 02 Bacteroides 0 genus_Bacteroides 0 002 @ 01352574 n 0000 #m 01364587 n 0000 | type genus of Bacteroidaceae; genus of Gram-negative rodlike anaerobic bacteria producing no endospores and no pigment and living in the gut of man and animals -01365122 05 n 02 Calymmatobacterium 0 genus_Calymmatobacterium 0 002 @ 01348530 n 0000 %m 01365322 n 0000 | a genus of bacterial rods containing only the one species that causes granuloma inguinale -01365322 05 n 01 Calymmatobacterium_granulomatis 0 002 @ 01353411 n 0000 #m 01365122 n 0000 | the species of bacteria that causes granuloma inguinale -01365474 05 n 02 Francisella 0 genus_Francisella 0 002 @ 01348530 n 0000 %m 01365684 n 0000 | a genus of Gram-negative aerobic bacteria that occur as pathogens and parasite in many animals (including humans) -01365684 05 n 01 Francisella_tularensis 0 002 @ 01353411 n 0000 #m 01365474 n 0000 | the type species of the genus Francisella and the causal agent of tularemia in humans; can be used as a bioweapon -01365885 05 n 02 gonococcus 0 Neisseria_gonorrhoeae 0 001 @ 01348530 n 0000 | the pus-producing bacterium that causes gonorrhea -01366015 05 n 02 Corynebacteriaceae 0 family_Corynebacteriaceae 0 004 @ 01352059 n 0000 #m 01356086 n 0000 %m 01366415 n 0000 %m 01366881 n 0000 | a large family of mostly Gram-positive and aerobic and nonmotile rod-shaped bacteria of the order Eubacteriales -01366276 05 n 01 corynebacterium 0 003 @ 01355326 n 0000 #m 01366415 n 0000 ~ 01366700 n 0000 | any species of the genus Corynebacterium -01366415 05 n 01 genus_Corynebacterium 0 004 @ 01352574 n 0000 #m 01366015 n 0000 %m 01366276 n 0000 %m 01366700 n 0000 | the type genus of the family Corynebacteriaceae which is widely distributed in nature; the best known are parasites and pathogens of humans and domestic animals -01366700 05 n 03 Corynebacterium_diphtheriae 0 C._diphtheriae 0 Klebs-Loeffler_bacillus 0 002 @ 01366276 n 0000 #m 01366415 n 0000 | a species of bacterium that causes diphtheria -01366881 05 n 01 genus_Listeria 0 003 @ 01352574 n 0000 #m 01366015 n 0000 %m 01367083 n 0000 | a genus of aerobic motile bacteria of the family Corynebacteriaceae containing small Gram-positive rods -01367083 05 n 01 listeria 0 003 @ 01355326 n 0000 #m 01366881 n 0000 ~ 01367208 n 0000 | any species of the genus Listeria -01367208 05 n 02 Listeria_monocytogenes 0 L._monocytogenes 0 001 @ 01367083 n 0000 | the type species of the genus Listeria; can cause meningitis, encephalitis, septicemia, endocarditis, abortion, abscesses, listeriosis -01367430 05 n 02 Enterobacteriaceae 0 family_Enterobacteriaceae 0 010 @ 01352059 n 0000 #m 01356086 n 0000 %m 01353773 n 0000 %m 01367772 n 0000 %m 01368095 n 0000 %m 01368552 n 0000 %m 01368853 n 0000 %m 01369633 n 0000 %m 01370142 n 0000 %m 01370581 n 0000 | a large family of Gram-negative rod-shaped bacteria of the order Eubacteriales -01367772 05 n 04 enteric_bacteria 0 enterobacteria 0 enterics 0 entric 0 007 @ 01355326 n 0000 #m 01367430 n 0000 ~ 01368216 n 0000 ~ 01368672 n 0000 ~ 01368973 n 0000 ~ 01370260 n 0000 ~ 01370698 n 0000 | rod-shaped Gram-negative bacteria; most occur normally or pathogenically in intestines of humans and other animals -01368095 05 n 01 genus_Escherichia 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01368216 n 0000 | a genus of bacteria -01368216 05 n 01 escherichia 0 003 @ 01367772 n 0000 #m 01368095 n 0000 ~ 01368338 n 0000 | a genus of enteric bacteria -01368338 05 n 02 Escherichia_coli 0 E._coli 0 001 @ 01368216 n 0000 | a species of bacterium normally present in intestinal tract of humans and other animals; sometimes pathogenic; can be a threat to food safety -01368552 05 n 01 genus_Klebsiella 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01368672 n 0000 | a genus of bacteria -01368672 05 n 01 klebsiella 0 002 @ 01367772 n 0000 #m 01368552 n 0000 | a genus of nonmotile rod-shaped Gram-negative enterobacteria; some cause respiratory and other infections -01368853 05 n 01 genus_Salmonella 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01368973 n 0000 | a genus of bacteria -01368973 05 n 01 salmonella 0 005 @ 01367772 n 0000 #m 01368853 n 0000 ~ 01369210 n 0000 ~ 01369358 n 0000 ~ 01369484 n 0000 | rod-shaped Gram-negative enterobacteria; cause typhoid fever and food poisoning; can be used as a bioweapon -01369210 05 n 02 Salmonella_enteritidis 0 Gartner's_bacillus 0 001 @ 01368973 n 0000 | a form of salmonella that causes gastroenteritis in humans -01369358 05 n 01 Salmonella_typhimurium 0 001 @ 01368973 n 0000 | a form of salmonella that causes food poisoning in humans -01369484 05 n 03 typhoid_bacillus 0 Salmonella_typhosa 0 Salmonella_typhi 0 001 @ 01368973 n 0000 | a form of salmonella that causes typhoid fever -01369633 05 n 02 genus_Serratia 0 Serratia 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01369819 n 0000 | a genus of motile peritrichous bacteria that contain small Gram-negative rod -01369819 05 n 01 Serratia_marcescens 0 002 @ 01353411 n 0000 #m 01369633 n 0000 | the type species of the genus Serratia; a species found in water and soil and milk and foods and insects; can cause infections of the endocardium and blood and wounds and urinary tract and respiratory tract; has been tested as a bioweapon -01370142 05 n 01 genus_Shigella 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01370260 n 0000 | a genus of bacteria -01370260 05 n 01 shigella 0 003 @ 01367772 n 0000 #m 01370142 n 0000 ~ 01370465 n 0000 | rod-shaped Gram-negative enterobacteria; some are pathogenic for warm-blooded animals; can be used as a bioweapon -01370465 05 n 02 shiga_bacillus 0 Shigella_dysentariae 0 001 @ 01370260 n 0000 | a bacillus that causes dysentery -01370581 05 n 01 genus_Erwinia 0 003 @ 01352574 n 0000 #m 01367430 n 0000 %m 01370698 n 0000 | a genus of bacteria -01370698 05 n 01 erwinia 0 002 @ 01367772 n 0000 #m 01370581 n 0000 | rod-shaped motile bacteria that attack plants -01370816 05 n 01 endospore-forming_bacteria 0 001 @ 01355326 n 0000 | a group of true bacteria -01370913 05 n 02 Rickettsiales 0 order_Rickettsiales 0 004 @ 01342529 n 0000 #m 01354869 n 0000 %m 01371092 n 0000 %m 01372372 n 0000 | pleomorphic Gram-negative microorganisms -01371092 05 n 02 Rickettsiaceae 0 family_Rickettsiaceae 0 004 @ 01352059 n 0000 #m 01370913 n 0000 %m 01371342 n 0000 %m 01371483 n 0000 | microorganism resembling bacteria inhabiting arthropod tissues but capable of causing disease in vertebrates -01371342 05 n 01 genus_Rickettsia 0 002 @ 01352574 n 0000 #m 01371092 n 0000 | can cause typhus and Rocky Mountain spotted fever in humans -01371483 05 n 01 rickettsia 0 003 @ 01355326 n 0000 #m 01371092 n 0000 + 02892277 a 0101 | any of a group of very small rod-shaped bacteria that live in biting arthropods (as ticks and mites) and cause disease in vertebrate hosts; they cause typhus and other febrile diseases in human beings -01371777 05 n 01 tumor_virus 0 002 @ 01328702 n 0000 ~ 01371928 n 0000 | a cell-free filtrate held to be a virus responsible for a specific neoplasm -01371928 05 n 02 wound_tumor_virus 0 WTV 0 001 @ 01371777 n 0000 | a tumor virus transmitted by leafhoppers -01372038 05 n 01 vector 0 003 @ 01328702 n 0000 ;c 06075527 n 0000 ~ 01372199 n 0000 | (genetics) a virus or other agent that is used to deliver DNA to a cell -01372199 05 n 01 cosmid 0 002 @ 01372038 n 0000 ;c 06075527 n 0000 | (genetics) a large vector that is made from a bacteriophage and used to clone genes or gene fragments -01372372 05 n 02 Chlamydiaceae 0 family_Chlamydiaceae 0 003 @ 01352059 n 0000 #m 01370913 n 0000 %m 01372544 n 0000 | Gram-negative parasites in warm-blooded vertebrates -01372544 05 n 01 genus_Chlamydia 0 003 @ 01352574 n 0000 #m 01372372 n 0000 %m 01372709 n 0000 | type genus of the family Chlamydiaceae: disease-causing parasites -01372709 05 n 01 chlamydia 0 005 @ 01355326 n 0000 #m 01372544 n 0000 + 02695045 a 0101 ~ 01372944 n 0000 ~ 01373090 n 0000 | coccoid rickettsia infesting birds and mammals; cause infections of eyes and lungs and genitourinary tract -01372944 05 n 02 Chlamydia_psittaci 0 C._psittaci 0 001 @ 01372709 n 0000 | bacteria responsible for the sexually transmitted disease chlamydia -01373090 05 n 02 Chlamydia_trachomatis 0 C._trachomatis 0 001 @ 01372709 n 0000 | bacteria responsible for the sexually transmitted diseases chlamydia and lymphogranuloma venereum -01373272 05 n 02 Mycoplasmatales 0 order_Mycoplasmatales 0 003 @ 01342529 n 0000 #m 01354869 n 0000 %m 01373440 n 0000 | coextensive with the family Mycoplasmataceae -01373440 05 n 02 Mycoplasmataceae 0 family_Mycoplasmataceae 0 003 @ 01352059 n 0000 #m 01373272 n 0000 %m 01373675 n 0000 | pleomorphic Gram-negative nonmotile microorganism similar to both viruses and bacteria; parasitic in mammals -01373675 05 n 01 genus_Mycoplasma 0 003 @ 01352574 n 0000 #m 01373440 n 0000 %m 01373826 n 0000 | type and sole genus of the family Mycoplasmataceae -01373826 05 n 01 mycoplasma 0 003 @ 01355326 n 0000 #m 01373675 n 0000 ~ 01374063 n 0000 | any of a group of small parasitic bacteria that lack cell walls and can survive without oxygen; can cause pneumonia and urinary tract infection -01374063 05 n 02 pleuropneumonialike_organism 0 PPLO 0 001 @ 01373826 n 0000 | a mycoplasma resistant to antibiotics that causes a kind of pneumonia in humans -01374224 05 n 02 Legionella_pneumophilia 0 legionella 0 001 @ 01348530 n 0000 | the motile aerobic rod-shaped Gram-negative bacterium that thrives in central heating and air conditioning systems and can cause Legionnaires' disease -01374457 05 n 01 nitrobacterium 0 003 @ 01348530 n 0000 ~ 01374703 n 0000 ~ 01374846 n 0000 | any of the bacteria in the soil that take part in the nitrogen cycle; they oxidize ammonium compounds into nitrites or oxidize nitrites into nitrates -01374703 05 n 02 nitrate_bacterium 0 nitric_bacterium 0 001 @ 01374457 n 0000 | any of the nitrobacteria that oxidize nitrites into nitrates -01374846 05 n 02 nitrite_bacterium 0 nitrous_bacterium 0 001 @ 01374457 n 0000 | any of the nitrobacteria that oxidize ammonia into nitrites -01374989 05 n 02 Actinomycetales 0 order_Actinomycetales 0 006 @ 01342529 n 0000 #m 01354869 n 0000 %m 01375204 n 0000 %m 01375460 n 0000 %m 01375913 n 0000 %m 01376801 n 0000 | filamentous or rod-shaped bacteria -01375204 05 n 01 actinomycete 0 006 @ 01355326 n 0000 #m 01374989 n 0000 ;c 00015388 n 0000 + 02602784 a 0102 + 02602784 a 0101 ~ 01376237 n 0000 | any bacteria (some of which are pathogenic for humans and animals) belonging to the order Actinomycetales -01375460 05 n 02 Actinomycetaceae 0 family_Actinomycetaceae 0 003 @ 01352059 n 0000 #m 01374989 n 0000 %m 01375617 n 0000 | filamentous anaerobic bacteria -01375617 05 n 01 genus_Actinomyces 0 003 @ 01352574 n 0000 #m 01375460 n 0000 %m 01375760 n 0000 | type genus of the family Actinomycetaceae -01375760 05 n 01 actinomyces 0 002 @ 01355326 n 0000 #m 01375617 n 0000 | soil-inhabiting saprophytes and disease-producing plant and animal parasites -01375913 05 n 02 Streptomycetaceae 0 family_Streptomycetaceae 0 003 @ 01352059 n 0000 #m 01374989 n 0000 %m 01376092 n 0000 | higher bacteria typically aerobic soil saprophytes -01376092 05 n 01 genus_Streptomyces 0 003 @ 01352574 n 0000 #m 01375913 n 0000 %m 01376237 n 0000 | type genus of the family Streptomycetaceae -01376237 05 n 01 streptomyces 0 005 @ 01375204 n 0000 #m 01376092 n 0000 ~ 01376437 n 0000 ~ 01376543 n 0000 ~ 01376647 n 0000 | aerobic bacteria (some of which produce the antibiotic streptomycin) -01376437 05 n 01 Streptomyces_erythreus 0 001 @ 01376237 n 0000 | source of the antibiotic erythromycin -01376543 05 n 01 Streptomyces_griseus 0 001 @ 01376237 n 0000 | source of the antibiotic streptomycin -01376647 05 n 02 potato_scab_bacteria 0 Streptomyces_scabies 0 001 @ 01376237 n 0000 | cause of a potato disease characterized by brownish corky tissue -01376801 05 n 02 Mycobacteriaceae 0 family_Mycobacteriaceae 0 003 @ 01352059 n 0000 #m 01374989 n 0000 %m 01376948 n 0000 | a family of bacteria -01376948 05 n 01 genus_Mycobacterium 0 003 @ 01352574 n 0000 #m 01376801 n 0000 %m 01377092 n 0000 | nonmotile Gram-positive aerobic bacteria -01377092 05 n 02 mycobacteria 0 mycobacterium 0 004 @ 01355326 n 0000 #m 01376948 n 0000 ~ 01377278 n 0000 ~ 01377804 n 0000 | rod-shaped bacteria some saprophytic or causing diseases -01377278 05 n 02 tubercle_bacillus 0 Mycobacterium_tuberculosis 0 001 @ 01377092 n 0000 | cause of tuberculosis -01377392 05 n 01 penicillin-resistant_bacteria 0 001 @ 01348530 n 0000 | bacteria that are unaffected by penicillin -01377510 05 n 01 pus-forming_bacteria 0 001 @ 01348530 n 0000 | bacteria that produce pus -01377602 05 n 01 rod 0 002 @ 01348530 n 0000 ~ 01377694 n 0000 | any rod-shaped bacterium -01377694 05 n 01 streptobacillus 0 001 @ 01377602 n 0000 | any of various rod-shaped Gram-negative bacteria -01377804 05 n 02 leprosy_bacillus 0 Mycobacterium_leprae 0 001 @ 01377092 n 0000 | cause of leprosy -01377906 05 n 05 order_Myxobacteria 0 Myxobacterales 0 order_Myxobacterales 0 Myxobacteriales 0 order_Myxobacteriales 0 004 @ 01342529 n 0000 #m 01354869 n 0000 %m 01378137 n 0000 %m 01378545 n 0000 | an order of higher bacteria -01378137 05 n 04 Polyangiaceae 0 family_Polyangiaceae 0 Myxobacteriaceae 0 family_Myxobacteriaceae 0 003 @ 01352059 n 0000 #m 01377906 n 0000 %m 01378346 n 0000 | bacteria living mostly in soils and on dung -01378346 05 n 02 Polyangium 0 genus_Polyangium 0 002 @ 01352574 n 0000 #m 01378137 n 0000 | type genus of the family Polyangiaceae: myxobacteria with rounded fruiting bodies enclosed in a membrane -01378545 05 n 05 myxobacteria 0 myxobacterium 0 myxobacter 0 gliding_bacteria 0 slime_bacteria 0 002 @ 01355326 n 0000 #m 01377906 n 0000 | bacteria that form colonies in self-produced slime; inhabit moist soils or decaying plant matter or animal waste -01378800 05 n 02 Micrococcaceae 0 family_Micrococcaceae 0 004 @ 01352059 n 0000 #m 01354869 n 0000 %m 01379116 n 0000 %m 01379252 n 0000 | spherical or elliptical usually aerobic eubacteria that produce yellow or orange or red pigment; includes toxin-producing forms as well as harmless commensals and saprophytes -01379116 05 n 02 Micrococcus 0 genus_Micrococcus 0 002 @ 01352574 n 0000 #m 01378800 n 0000 | type genus of the family Micrococcaceae -01379252 05 n 01 genus_Staphylococcus 0 003 @ 01352574 n 0000 #m 01378800 n 0000 %m 01379389 n 0000 | includes many pathogenic species -01379389 05 n 03 staphylococcus 0 staphylococci 0 staph 0 003 @ 01350855 n 0000 #m 01379252 n 0000 + 02802694 a 0101 | spherical Gram-positive parasitic bacteria that tend to form irregular colonies; some cause boils or septicemia or infections -01379636 05 n 04 Lactobacillaceae 0 family_Lactobacillaceae 0 Lactobacteriaceae 0 family_Lactobacteriaceae 0 005 @ 01352059 n 0000 #m 01341876 n 0000 %m 01379954 n 0000 %m 01380489 n 0000 %m 01380902 n 0000 | lactic acid bacteria and important pathogens; bacteria that ferment carbohydrates chiefly into lactic acid -01379954 05 n 01 genus_Lactobacillus 0 004 @ 01352574 n 0000 #m 01379636 n 0000 %m 01380118 n 0000 %m 01380298 n 0000 | type genus of the family Lactobacillaceae -01380118 05 n 01 lactobacillus 0 003 @ 01355326 n 0000 #m 01379954 n 0000 ~ 01380298 n 0000 | a Gram-positive rod-shaped bacterium that produces lactic acid (especially in milk) -01380298 05 n 02 acidophilus 0 Lactobacillus_acidophilus 0 003 @ 01380118 n 0000 @ 01349495 n 0000 #m 01379954 n 0000 | a bacterium that is used to make yogurt and to supplement probiotics -01380489 05 n 01 genus_Diplococcus 0 003 @ 01352574 n 0000 #m 01379636 n 0000 %m 01380610 n 0000 | a genus of bacteria -01380610 05 n 01 diplococcus 0 003 @ 01348530 n 0000 #m 01380489 n 0000 ~ 01380754 n 0000 | Gram-positive bacteria usually occurring in pairs -01380754 05 n 02 pneumococcus 0 Diplococcus_pneumoniae 0 002 @ 01380610 n 0000 + 02839036 a 0101 | bacterium causing pneumonia in mice and humans -01380902 05 n 01 genus_Streptococcus 0 004 @ 01352574 n 0000 #m 01379636 n 0000 %m 01381044 n 0000 %m 01381285 n 0000 | a genus of bacteria -01381044 05 n 03 streptococcus 0 streptococci 0 strep 0 004 @ 01355326 n 0000 #m 01380902 n 0000 + 03142114 a 0303 + 03142114 a 0101 | spherical Gram-positive bacteria occurring in pairs or chains; cause e.g. scarlet fever and tonsillitis -01381285 05 n 01 Streptococcus_anhemolyticus 0 002 @ 01353411 n 0000 #m 01380902 n 0000 | a species of bacteria -01381399 05 n 02 Spirochaetales 0 order_Spirochaetales 0 005 @ 01342529 n 0000 #m 01354869 n 0000 %m 01381604 n 0000 %m 01382033 n 0000 %m 01382273 n 0000 | higher bacteria; slender spiral rodlike forms -01381604 05 n 02 Spirochaetaceae 0 family_Spirochaetaceae 0 003 @ 01352059 n 0000 #m 01381399 n 0000 %m 01381829 n 0000 | large coarsely spiral bacteria; free-living in fresh or salt water or commensal in bodies of oysters -01381829 05 n 02 Spirochaeta 0 genus_Spirochaeta 0 002 @ 01352574 n 0000 #m 01381604 n 0000 | the type genus of the family Spirochaetaceae; a bacterium that is flexible, undulating, and chiefly aquatic -01382033 05 n 02 spirochete 0 spirochaete 0 006 @ 01355326 n 0000 #m 01381399 n 0000 ~ 01382699 n 0000 ~ 01383027 n 0000 ~ 01383151 n 0000 ~ 01383502 n 0000 | parasitic or free-living bacteria; many pathogenic to humans and other animals -01382273 05 n 02 Treponemataceae 0 family_Treponemataceae 0 005 @ 01352059 n 0000 #m 01381399 n 0000 %m 01382482 n 0000 %m 01382839 n 0000 %m 01383332 n 0000 | small spirochetes some parasitic or pathogenic -01382482 05 n 01 genus_Treponema 0 003 @ 01352574 n 0000 #m 01382273 n 0000 %m 01382699 n 0000 | type genus of Treponemataceae: anaerobic spirochetes with an undulating rigid body; parasitic in warm-blooded animals -01382699 05 n 01 treponema 0 002 @ 01382033 n 0000 #m 01382482 n 0000 | spirochete that causes disease in humans (e.g. syphilis and yaws) -01382839 05 n 01 genus_Borrelia 0 004 @ 01352574 n 0000 #m 01382273 n 0000 %m 01383027 n 0000 %m 01383151 n 0000 | small flexible parasitic spirochetes having three to five wavy spirals -01383027 05 n 01 borrelia 0 002 @ 01382033 n 0000 #m 01382839 n 0000 | cause of e.g. European and African relapsing fever -01383151 05 n 02 Borrelia_burgdorferi 0 Lime_disease_spirochete 0 002 @ 01382033 n 0000 #m 01382839 n 0000 | cause of Lyme disease; transmitted primarily by ticks of genus Ixodes -01383332 05 n 01 genus_Leptospira 0 003 @ 01352574 n 0000 #m 01382273 n 0000 %m 01383502 n 0000 | very slender aerobic spirochetes; free-living or parasitic in mammals -01383502 05 n 01 leptospira 0 002 @ 01382033 n 0000 #m 01383332 n 0000 | important pathogens causing Weil's disease or canicola fever -01383638 05 n 01 plankton 0 006 @ 00004475 n 0000 #m 08418103 n 0000 + 02778943 a 0101 %m 01383896 n 0000 %m 01384164 n 0000 %p 01996585 n 0000 | the aggregate of small plant and animal organisms that float or drift in great numbers in fresh or salt water -01383896 05 n 01 phytoplankton 0 004 @ 00017222 n 0000 #m 01383638 n 0000 ~ 01384084 n 0000 ~ 01401106 n 0000 | photosynthetic or plant constituent of plankton; mainly unicellular algae -01384084 05 n 01 planktonic_algae 0 001 @ 01383896 n 0000 | unicellular algae -01384164 05 n 01 zooplankton 0 002 @ 00015388 n 0000 #m 01383638 n 0000 | animal constituent of plankton; mainly small crustaceans and fish larvae -01384313 05 n 01 nekton 0 002 @ 00004475 n 0000 #m 08418103 n 0000 | the aggregate of actively swimming animals in a body of water ranging from microscopic organisms to whales -01384491 05 n 03 microbe 0 bug 3 germ 0 003 @ 01326291 n 0000 + 02116934 a 0301 + 03014485 a 0101 | a minute life form (especially a disease-causing bacterium); the term is not in technical use -01384687 05 n 01 parasite 0 008 @ 00004475 n 0000 ;c 00017222 n 0000 + 02833692 a 0101 + 02833692 a 0102 ! 01385527 n 0101 ~ 01385017 n 0000 ~ 01385330 n 0000 ~ 13120446 n 0000 | an animal or plant that lives in or on a host (another animal or plant); it obtains nourishment from the host without benefiting or killing the host -01385017 05 n 05 endoparasite 0 entoparasite 0 entozoan 0 entozoon 0 endozoan 0 007 @ 01384687 n 0000 + 03064076 a 0502 + 03064076 a 0401 + 00889490 a 0402 + 03064076 a 0301 + 00889490 a 0302 + 02915666 a 0101 | any of various parasites that live in the internal organs of animals (especially intestinal worms) -01385330 05 n 05 ectoparasite 0 ectozoan 0 ectozoon 0 epizoan 0 epizoon 0 004 @ 01384687 n 0000 + 03064239 a 0501 + 03064239 a 0302 ~ 02186153 n 0000 | any external parasitic organism (as fleas) -01385527 05 n 01 host 0 004 @ 00004475 n 0000 ! 01384687 n 0101 ~ 01385749 n 0000 ~ 01385878 n 0000 | an animal or plant that nourishes and supports a parasite; it does not benefit and is often harmed by the association -01385749 05 n 01 intermediate_host 0 001 @ 01385527 n 0000 | a host that is used by a parasite in the course of its life cycle -01385878 05 n 01 definitive_host 0 001 @ 01385527 n 0000 | the host in which the sexual reproduction of a parasite takes place -01386007 05 n 01 pathogen 0 003 @ 01326291 n 0000 @ 09312843 n 0000 + 01168434 a 0103 | any disease-producing agent (especially a virus or bacterium or other microorganism) -01386182 05 n 01 commensal 0 002 @ 00004475 n 0000 + 02700792 a 0101 | either of two different animal or plant species living in close association but not interdependent -01386354 05 n 01 myrmecophile 0 001 @ 00004475 n 0000 | an organism such as an insect that habitually shares the nest of a species of ant -01386494 05 n 02 Protoctista 0 kingdom_Protoctista 0 013 @ 07940552 n 0000 %m 01347199 n 0000 %m 01387065 n 0000 %m 01387208 n 0000 %m 01387617 n 0000 %m 01388130 n 0000 %m 01389188 n 0000 %m 01399529 n 0000 %m 01399772 n 0000 %m 01406092 n 0000 %m 01407065 n 0000 %m 01413551 n 0000 %m 01421012 n 0000 | in most modern classifications, replacement for the Protista; includes: Protozoa; Euglenophyta; Chlorophyta; Cryptophyta; Heterokontophyta; Rhodophyta; unicellular protists and their descendant multicellular organisms: regarded as distinct from plants and animals -01387065 05 n 01 protoctist 0 004 @ 01326291 n 0000 #m 01386494 n 0000 ~ 01389507 n 0000 ~ 01397114 n 0000 | any of the unicellular protists -01387208 05 n 02 Protista 0 division_Protista 0 003 @ 08220891 n 0000 #m 01386494 n 0000 %m 01387451 n 0000 | eukaryotic one-celled living organisms distinct from multicellular plants and animals: protozoa, slime molds, and eukaryotic algae -01387451 05 n 02 protist 0 protistan 0 002 @ 01326291 n 0000 #m 01387208 n 0000 | free-living or colonial organisms with diverse nutritional and reproductive modes -01387617 05 n 01 protoctist_family 0 024 @ 08107499 n 0000 #m 01386494 n 0000 ~ 01393237 n 0000 ~ 01393604 n 0000 ~ 01394193 n 0000 ~ 01401517 n 0000 ~ 01403052 n 0000 ~ 01404129 n 0000 ~ 01406426 n 0000 ~ 01408383 n 0000 ~ 01409065 n 0000 ~ 01409477 n 0000 ~ 01410109 n 0000 ~ 01411727 n 0000 ~ 01412479 n 0000 ~ 01413188 n 0000 ~ 01414359 n 0000 ~ 01414841 n 0000 ~ 01415256 n 0000 ~ 01417807 n 0000 ~ 01423001 n 0000 ~ 01424165 n 0000 ~ 01424607 n 0000 ~ 01425336 n 0000 | any of the families of Protoctista -01388130 05 n 01 protoctist_genus 0 044 @ 08108972 n 0000 #m 01386494 n 0000 ~ 01391779 n 0000 ~ 01392122 n 0000 ~ 01393364 n 0000 ~ 01394366 n 0000 ~ 01394635 n 0000 ~ 01395885 n 0000 ~ 01396170 n 0000 ~ 01396458 n 0000 ~ 01396776 n 0000 ~ 01401686 n 0000 ~ 01403284 n 0000 ~ 01404813 n 0000 ~ 01405442 n 0000 ~ 01405737 n 0000 ~ 01406565 n 0000 ~ 01408547 n 0000 ~ 01409244 n 0000 ~ 01409665 n 0000 ~ 01410330 n 0000 ~ 01410568 n 0000 ~ 01411036 n 0000 ~ 01411240 n 0000 ~ 01411871 n 0000 ~ 01412925 n 0000 ~ 01413071 n 0000 ~ 01413324 n 0000 ~ 01414502 n 0000 ~ 01414986 n 0000 ~ 01415393 n 0000 ~ 01417553 n 0000 ~ 01417982 n 0000 ~ 01419444 n 0000 ~ 01419740 n 0000 ~ 01420000 n 0000 ~ 01420164 n 0000 ~ 01420314 n 0000 ~ 01423160 n 0000 ~ 01424282 n 0000 ~ 01424938 n 0000 ~ 01425076 n 0000 ~ 01425501 n 0000 ~ 01426160 n 0000 | any genus of Protoctista -01388992 05 n 02 Pyrrophyta 0 phylum_Pyrrophyta 0 002 @ 08102555 n 0000 #m 01341876 n 0000 | a division of lower plants comprising unicellular and biflagellate algae that form starchy compounds -01389188 05 n 02 Protozoa 0 phylum_Protozoa 0 007 @ 08102555 n 0000 #m 01386494 n 0000 %m 01389507 n 0000 %m 01389875 n 0000 %m 01394901 n 0000 %m 01416354 n 0000 %m 01421496 n 0000 | in some classifications considered a superphylum or a subkingdom; comprises flagellates; ciliates; sporozoans; amoebas; foraminifers -01389507 05 n 02 protozoan 0 protozoon 0 013 @ 01387065 n 0000 #m 01389188 n 0000 + 02891869 a 0202 ~ 01390123 n 0000 ~ 01391391 n 0000 ~ 01394492 n 0000 ~ 01394771 n 0000 ~ 01395254 n 0000 ~ 01406736 n 0000 ~ 01416585 n 0000 ~ 01420860 n 0000 ~ 01421807 n 0000 %p 01458010 n 0000 | any of diverse minute acellular or unicellular organisms usually nonphotosynthetic -01389875 05 n 02 Sarcodina 0 class_Sarcodina 0 005 @ 08103777 n 0000 #m 01389188 n 0000 %m 01390123 n 0000 %m 01390287 n 0000 %m 01391174 n 0000 | characterized by the formation of pseudopods for locomotion and taking food: Actinopoda; Rhizopoda -01390123 05 n 02 sarcodinian 0 sarcodine 0 003 @ 01389507 n 0000 #m 01389875 n 0000 ~ 01390466 n 0000 | protozoa that move and capture food by forming pseudopods -01390287 05 n 02 Actinopoda 0 subclass_Actinopoda 0 005 @ 08103777 n 0000 #m 01389875 n 0000 %m 01390466 n 0000 %m 01390627 n 0000 %m 01390899 n 0000 | heliozoans; radiolarians -01390466 05 n 01 actinopod 0 004 @ 01390123 n 0000 #m 01390287 n 0000 ~ 01390763 n 0000 ~ 01391028 n 0000 | protozoa having stiff rodlike radiating pseudopods -01390627 05 n 02 Heliozoa 0 order_Heliozoa 0 003 @ 01342529 n 0000 #m 01390287 n 0000 %m 01390763 n 0000 | mostly freshwater protozoa -01390763 05 n 01 heliozoan 0 002 @ 01390466 n 0000 #m 01390627 n 0000 | protozoa with spherical bodies and stiff radiating pseudopods -01390899 05 n 02 Radiolaria 0 order_Radiolaria 0 003 @ 01342529 n 0000 #m 01390287 n 0000 %m 01391028 n 0000 | marine protozoa -01391028 05 n 01 radiolarian 0 002 @ 01390466 n 0000 #m 01390899 n 0000 | protozoa with amoeba-like bodies and radiating filamentous pseudopods -01391174 05 n 02 Rhizopoda 0 subclass_Rhizopoda 0 006 @ 08103777 n 0000 #m 01389875 n 0000 %m 01391391 n 0000 %m 01391569 n 0000 %m 01392843 n 0000 %m 01393873 n 0000 | creeping protozoans: amoebas and foraminifers -01391391 05 n 02 rhizopod 0 rhizopodan 0 005 @ 01389507 n 0000 #m 01391174 n 0000 ~ 01392380 n 0000 ~ 01393030 n 0000 ~ 01394040 n 0000 | protozoa characterized by a pseudopod -01391569 05 n 04 Amoebida 0 order_Amoebida 0 Amoebina 0 order_Amoebina 0 005 @ 01342529 n 0000 #m 01391174 n 0000 %m 01391779 n 0000 %m 01391933 n 0000 %m 01392380 n 0000 | the animal order including amoebas -01391779 05 n 01 genus_Amoeba 0 002 @ 01388130 n 0000 #m 01391569 n 0000 | protozoan inhabiting moist soils or bottom vegetation in fresh or salt water -01391933 05 n 02 Endamoebidae 0 family_Endamoebidae 0 003 @ 08107499 n 0000 #m 01391569 n 0000 %m 01392122 n 0000 | a large family of endoparasitic amebas that invade the digestive tract -01392122 05 n 02 Endamoeba 0 genus_Endamoeba 0 003 @ 01388130 n 0000 #m 01391933 n 0000 %m 01392692 n 0000 | the type genus of the family Endamoebidae -01392275 05 n 01 endameba 0 002 @ 01392380 n 0000 ~ 01392692 n 0000 | any ameba of the genus Endamoeba -01392380 05 n 02 ameba 0 amoeba 0 009 @ 01391391 n 0000 #m 01391569 n 0000 + 03040974 a 0201 + 03040974 a 0205 + 03040974 a 0203 + 03040974 a 0102 + 03040974 a 0106 + 03040974 a 0104 ~ 01392275 n 0000 | naked freshwater or marine or parasitic protozoa that form temporary pseudopods for feeding and locomotion -01392692 05 n 01 Endamoeba_histolytica 0 002 @ 01392275 n 0000 #m 01392122 n 0000 | the parasitic ameba that causes amebic dysentery in human beings -01392843 05 n 02 Foraminifera 0 order_Foraminifera 0 006 @ 01342529 n 0000 #m 01391174 n 0000 %m 01393030 n 0000 %m 01393237 n 0000 %m 01393364 n 0000 %m 01393604 n 0000 | foraminifers -01393030 05 n 02 foram 0 foraminifer 0 004 @ 01391391 n 0000 #m 01392843 n 0000 ~ 01393486 n 0000 ~ 01393753 n 0000 | marine microorganism having a calcareous shell with openings where pseudopods protrude -01393237 05 n 02 Globigerinidae 0 family_Globigerinidae 0 002 @ 01387617 n 0000 #m 01392843 n 0000 | a family of protoctists -01393364 05 n 01 genus_Globigerina 0 002 @ 01388130 n 0000 #m 01392843 n 0000 | type genus of the family Globigerinidae -01393486 05 n 01 globigerina 0 001 @ 01393030 n 0000 | marine protozoan having a rounded shell with spiny processes -01393604 05 n 02 Nummulitidae 0 family_Nummulitidae 0 003 @ 01387617 n 0000 #m 01392843 n 0000 %m 01393753 n 0000 | a family of fossil protoctists -01393753 05 n 01 nummulite 0 002 @ 01393030 n 0000 #m 01393604 n 0000 | large fossil protozoan of the Tertiary period -01393873 05 n 02 Testacea 0 order_Testacea 0 005 @ 01342529 n 0000 #m 01391174 n 0000 %m 01394040 n 0000 %m 01394193 n 0000 %m 01394635 n 0000 | testacean rhizopods -01394040 05 n 01 testacean 0 002 @ 01391391 n 0000 #m 01393873 n 0000 | any of various rhizopods of the order Testacea characterized by having a shell -01394193 05 n 02 Arcellidae 0 family_Arcellidae 0 003 @ 01387617 n 0000 #m 01393873 n 0000 %m 01394366 n 0000 | soil and freshwater protozoa; cosmopolitan in distribution -01394366 05 n 01 genus_Arcella 0 003 @ 01388130 n 0000 #m 01394193 n 0000 %m 01394492 n 0000 | type genus of the Arcellidae -01394492 05 n 01 arcella 0 002 @ 01389507 n 0000 #m 01394366 n 0000 | an amoeba-like protozoan with a chitinous shell resembling an umbrella -01394635 05 n 01 genus_Difflugia 0 003 @ 01388130 n 0000 #m 01393873 n 0000 %m 01394771 n 0000 | genus of protozoans related to ameba -01394771 05 n 01 difflugia 0 002 @ 01389507 n 0000 #m 01394635 n 0000 | a protozoan with an ovoid shell of cemented sand grains -01394901 05 n 04 Ciliata 0 class_Ciliata 0 Ciliophora 0 class_Ciliophora 0 008 @ 08103777 n 0000 #m 01389188 n 0000 %m 01395254 n 0000 %m 01395531 n 0000 %m 01395885 n 0000 %m 01396170 n 0000 %m 01396458 n 0000 %m 01396776 n 0000 | class of protozoa having cilia or hairlike appendages on part or all of the surface during some part of the life cycle -01395254 05 n 03 ciliate 0 ciliated_protozoan 0 ciliophoran 0 007 @ 01389507 n 0000 #m 01394901 n 0000 ~ 01395773 n 0000 ~ 01396048 n 0000 ~ 01396322 n 0000 ~ 01396617 n 0000 ~ 01396951 n 0000 | a protozoan with a microscopic appendage extending from the surface of the cell -01395531 05 n 02 Infusoria 0 subclass_Infusoria 0 003 @ 08103777 n 0000 #m 01394901 n 0000 %m 01395773 n 0000 | in some recent classifications, coextensive with the Ciliata: minute organisms found in decomposing infusions of organic matter -01395773 05 n 01 infusorian 0 002 @ 01395254 n 0000 #m 01395531 n 0000 | any member of the subclass Infusoria -01395885 05 n 01 genus_Paramecium 0 003 @ 01388130 n 0000 #m 01394901 n 0000 %m 01396048 n 0000 | freshwater ciliate with an oval body and long deep oral groove -01396048 05 n 02 paramecium 0 paramecia 0 002 @ 01395254 n 0000 #m 01395885 n 0000 | any member of the genus Paramecium -01396170 05 n 01 genus_Tetrahymena 0 003 @ 01388130 n 0000 #m 01394901 n 0000 %m 01396322 n 0000 | protozoa having four membranous ciliary organelles -01396322 05 n 01 tetrahymena 0 002 @ 01395254 n 0000 #m 01396170 n 0000 | relative of the paramecium; often used in genetics research -01396458 05 n 01 genus_Stentor 0 003 @ 01388130 n 0000 #m 01394901 n 0000 %m 01396617 n 0000 | trumpet-shaped protozoa with a ciliated spiral feeding funnel -01396617 05 n 01 stentor 0 002 @ 01395254 n 0000 #m 01396458 n 0000 | any of several trumpet-shaped ciliate protozoans that are members of the genus Stentor -01396776 05 n 01 genus_Vorticella 0 003 @ 01388130 n 0000 #m 01394901 n 0000 %m 01396951 n 0000 | ciliated protozoans that have a goblet-shaped body with a retractile stalk -01396951 05 n 01 vorticella 0 002 @ 01395254 n 0000 #m 01396776 n 0000 | any of various protozoa having a transparent goblet-shaped body with a retractile stalk -01397114 05 n 02 alga 0 algae 0 013 @ 01387065 n 0000 + 02832586 a 0101 ~ 01397497 n 0000 ~ 01400247 n 0000 ~ 01400391 n 0000 ~ 01401106 n 0000 ~ 01402039 n 0000 ~ 01402600 n 0000 ~ 01406904 n 0000 ~ 01407798 n 0000 ~ 01411450 n 0000 ~ 01413942 n 0000 ~ 01421333 n 0000 | primitive chlorophyll-containing mainly aquatic eukaryotic organisms lacking true stems and roots and leaves -01397497 05 n 01 seaweed 0 006 @ 01397114 n 0000 ~ 01397690 n 0000 ~ 01397778 n 0000 ~ 01397871 n 0000 ~ 01398064 n 0000 ~ 01403713 n 0000 | plant growing in the sea, especially marine algae -01397690 05 n 01 arame 0 001 @ 01397497 n 0000 | an edible seaweed with a mild flavor -01397778 05 n 01 wrack 1 001 @ 01397497 n 0000 | dried seaweed especially that cast ashore -01397871 05 n 01 seagrass 0 001 @ 01397497 n 0000 | any of various seaweeds that grow underwater in shallow beds; "seagrass provides a protective environment in which young fish can develop" -01398064 05 n 02 sea_wrack 0 wrack 2 001 @ 01397497 n 0000 | growth of marine vegetation especially of the large forms such as rockweeds and kelp -01398212 05 n 02 chlorophyll 0 chlorophyl 0 006 @ 14989820 n 0000 + 02695229 a 0102 ~ 01398481 n 0000 ~ 01398632 n 0000 ~ 01398803 n 0000 ~ 01398941 n 0000 | any of a group of green pigments found in photosynthetic organisms; there are four naturally occurring forms -01398481 05 n 01 chlorophyll_a 0 001 @ 01398212 n 0000 | a blue-black plant pigment having a blue-green alcohol solution; found in all higher plants -01398632 05 n 01 chlorophyll_b 0 001 @ 01398212 n 0000 | a dark-green plant pigment having a brilliant green alcohol solution; generally characteristic of higher plants -01398803 05 n 02 chlorophyll_c 0 chlorofucin 0 001 @ 01398212 n 0000 | the chlorophyll present in brown algae, diatoms, and flagellates -01398941 05 n 01 chlorophyll_d 0 001 @ 01398212 n 0000 | the chlorophyll found (together with chlorophyll a) in red algae -01399065 05 n 01 bacteriochlorophyll 0 001 @ 14989820 n 0000 | a substance in photosensitive bacteria that is related to but different from chlorophyll of higher plants -01399236 05 n 01 phycobilin 0 001 @ 14989820 n 0000 | water-soluble proteinaceous pigments found in red algae and cyanobacteria -01399366 05 n 01 phycoerythrin 0 001 @ 14989820 n 0000 | red pigment in red algae -01399450 05 n 01 phycocyanin 0 001 @ 14989820 n 0000 | blue pigment in algae -01399529 05 n 02 Heterokontophyta 0 division_Heterokontophyta 0 002 @ 08221348 n 0000 #m 01386494 n 0000 | algae having chlorophyll a and usually c, and flagella of unequal lengths; terminology supersedes Chrysophyta in some classifications -01399772 05 n 02 Chrysophyta 0 division_Chrysophyta 0 008 @ 08221348 n 0000 #m 01386494 n 0000 %m 01400247 n 0000 %m 01400391 n 0000 %m 01400575 n 0000 %m 01400772 n 0000 %m 01400891 n 0000 %m 01401296 n 0000 | mostly freshwater eukaryotic algae having the chlorophyll masked by brown or yellow pigment; yellow-green and golden-brown algae and diatoms: Xanthophyceae, Chrysophyceae, Bacillariophyceae; some classification systems superseded or subsumed by Heterokontophyta -01400247 05 n 01 golden_algae 0 002 @ 01397114 n 0000 #m 01399772 n 0000 | algae having the pigments chlorophyll and carotene and xanthophyll -01400391 05 n 01 yellow-green_algae 0 003 @ 01397114 n 0000 #m 01399772 n 0000 ~ 01401842 n 0000 | any alga of the division Chrysophyta with its chlorophyll masked by yellow pigment -01400575 05 n 04 Chrysophyceae 0 class_Chrysophyceae 0 Heterokontae 0 class_Heterokontae 0 002 @ 08103777 n 0000 #m 01399772 n 0000 | all the yellow-green algae having flagella of unequal length -01400772 05 n 02 Xanthophyceae 0 class_Xanthophyceae 0 002 @ 08103777 n 0000 #m 01399772 n 0000 | yellow-green algae -01400891 05 n 04 Bacillariophyceae 0 class_Bacillariophyceae 0 Diatomophyceae 0 class_Diatomophyceae 0 003 @ 08103777 n 0000 #m 01399772 n 0000 %m 01401106 n 0000 | marine and freshwater eukaryotic algae: diatoms -01401106 05 n 01 diatom 0 003 @ 01397114 n 0000 @ 01383896 n 0000 #m 01400891 n 0000 | microscopic unicellular marine or freshwater colonial alga having cell walls impregnated with silica -01401296 05 n 02 Heterotrichales 0 order_Heterotrichales 0 003 @ 01347199 n 0000 #m 01399772 n 0000 %m 01401517 n 0000 | yellow-green algae with simple or branching filaments; comprising the single family Tribonemaceae -01401517 05 n 02 Tribonemaceae 0 family_Tribonemaceae 0 003 @ 01387617 n 0000 #m 01401296 n 0000 %m 01401686 n 0000 | simple filamentous freshwater yellow-green algae -01401686 05 n 03 Tribonema 0 genus_Tribonema 0 genus_Conferva 0 003 @ 01388130 n 0000 #m 01401517 n 0000 %m 01401842 n 0000 | type genus of Tribonemaceae -01401842 05 n 01 conferva 0 002 @ 01400391 n 0000 #m 01401686 n 0000 | any of various algae of the genus Tribonema; algae with branching filaments that form scum in still or stagnant fresh water -01402039 05 n 01 confervoid_algae 0 001 @ 01397114 n 0000 | algae resembling confervae especially in having branching filaments -01402169 05 n 02 Phaeophyceae 0 class_Phaeophyceae 0 005 @ 08103777 n 0000 #m 01402381 n 0000 %m 01402600 n 0000 %m 01402831 n 0000 %m 01403805 n 0000 | brown algae; mostly marine and littoral eukaryotic algae -01402381 05 n 02 Phaeophyta 0 division_Phaeophyta 0 003 @ 08221348 n 0000 %m 01402169 n 0000 %m 01403968 n 0000 | coextensive with class Phaeophyceae; in some classifications subsumed in the division Heterokontophyta -01402600 05 n 01 brown_algae 0 007 @ 01397114 n 0000 #m 01402169 n 0000 ~ 01403457 n 0000 ~ 01404365 n 0000 ~ 01404628 n 0000 ~ 01405107 n 0000 ~ 01405858 n 0000 | algae having the chlorophyll masked by brown and yellow pigments -01402831 05 n 02 Laminariales 0 order_Laminariales 0 003 @ 01347199 n 0000 #m 01402169 n 0000 %m 01403052 n 0000 | in some classifications coextensive with family Laminariaceae: marine brown algae of cold or polar seas -01403052 05 n 02 Laminariaceae 0 family_Laminariaceae 0 003 @ 01387617 n 0000 #m 01402831 n 0000 %m 01403284 n 0000 | large family of marine brown algae including many economically important large kelps chiefly of northern waters -01403284 05 n 02 Laminaria 0 genus_Laminaria 0 003 @ 01388130 n 0000 #m 01403052 n 0000 %m 01403457 n 0000 | type genus of the family Laminariaceae: perennial brown kelps -01403457 05 n 01 kelp 0 003 @ 01402600 n 0000 #m 01403284 n 0000 ~ 01403595 n 0000 | large brown seaweeds having fluted leathery fronds -01403595 05 n 02 sea_tangle 0 tang 1 001 @ 01403457 n 0000 | any of various kelps especially of the genus Laminaria -01403713 05 n 02 tang 2 sea_tang 0 001 @ 01397497 n 0000 | any of various coarse seaweeds -01403805 05 n 02 Fucales 0 order_Fucales 0 004 @ 01342529 n 0000 #m 01402169 n 0000 %m 01404129 n 0000 %m 01404495 n 0000 | coextensive with the family Fucaceae -01403968 05 n 02 Cyclosporeae 0 class_Cyclosporeae 0 002 @ 08103777 n 0000 #m 01402381 n 0000 | in more recent classifications superseded by the order Fucales -01404129 05 n 02 Fucaceae 0 family_Fucaceae 0 007 @ 01387617 n 0000 #m 01403805 n 0000 %m 01404365 n 0000 %m 01404628 n 0000 %m 01404813 n 0000 %m 01405442 n 0000 %m 01405737 n 0000 | small family of brown algae: gulfweeds; rockweeds -01404365 05 n 02 fucoid 1 fucoid_algae 0 002 @ 01402600 n 0000 #m 01404129 n 0000 | any of various algae of the family Fucaceae -01404495 05 n 01 fucoid 2 002 @ 09284589 n 0000 #m 01403805 n 0000 | a fossilized cast or impression of algae of the order Fucales -01404628 05 n 01 rockweed 0 005 @ 01402600 n 0000 #m 01404129 n 0000 ~ 01405007 n 0000 ~ 01405250 n 0000 ~ 01405616 n 0000 | coarse brown seaweed growing on rocks exposed at low tide -01404813 05 n 01 genus_Fucus 0 005 @ 01388130 n 0000 #m 01404129 n 0000 %m 01405007 n 0000 %m 01405107 n 0000 %m 01405250 n 0000 | type genus of the family Fucaceae: cartilaginous brown algae -01405007 05 n 01 fucus 0 002 @ 01404628 n 0000 #m 01404813 n 0000 | any member of the genus Fucus -01405107 05 n 03 serrated_wrack 0 Fucus_serratus 0 tang 3 002 @ 01402600 n 0000 #m 01404813 n 0000 | brown algae seaweed with serrated edges -01405250 05 n 05 bladderwrack 1 black_rockweed 0 bladder_fucus 0 tang 4 Fucus_vesiculosus 0 002 @ 01404628 n 0000 #m 01404813 n 0000 | a common rockweed used in preparing kelp and as manure -01405442 05 n 02 Ascophyllum 0 genus_Ascophyllum 0 002 @ 01388130 n 0000 #m 01404129 n 0000 | brown algae distinguished by compressed or inflated branchlets along the axis -01405616 05 n 02 bladderwrack 2 Ascophyllum_nodosum 0 001 @ 01404628 n 0000 | similar to and found with black rockweed -01405737 05 n 01 genus_Sargassum 0 003 @ 01388130 n 0000 #m 01404129 n 0000 %m 01405858 n 0000 | a genus of protoctist -01405858 05 n 04 gulfweed 0 sargassum 0 sargasso 0 Sargassum_bacciferum 0 002 @ 01402600 n 0000 #m 01405737 n 0000 | brown algae with rounded bladders forming dense floating masses in tropical Atlantic waters as in the Sargasso Sea -01406092 05 n 02 Euglenophyta 0 division_Euglenophyta 0 004 @ 08221348 n 0000 #m 01386494 n 0000 %m 01406262 n 0000 %m 01406904 n 0000 | free-swimming flagellate algae -01406262 05 n 02 Euglenophyceae 0 class_Euglenophyceae 0 003 @ 08103777 n 0000 #m 01406092 n 0000 %m 01406426 n 0000 | coextensive with the division Euglenophyta -01406426 05 n 02 Euglenaceae 0 family_Euglenaceae 0 003 @ 01387617 n 0000 #m 01406262 n 0000 %m 01406565 n 0000 | considered green algae -01406565 05 n 01 genus_Euglena 0 003 @ 01388130 n 0000 #m 01406426 n 0000 %m 01406736 n 0000 | type genus of the family Euglenaceae: green algae with a single flagellum -01406736 05 n 01 euglena 0 002 @ 01389507 n 0000 #m 01406565 n 0000 | minute single-celled green freshwater organism having a single flagella; often classed as algae -01406904 05 n 03 euglenoid 0 euglenophyte 0 euglenid 0 002 @ 01397114 n 0000 #m 01406092 n 0000 | marine and freshwater green or colorless flagellate organism -01407065 05 n 02 Chlorophyta 0 division_Chlorophyta 0 006 @ 08221348 n 0000 #m 01386494 n 0000 %m 01407465 n 0000 %m 01407798 n 0000 %m 01408088 n 0000 %m 01412085 n 0000 | large division of chiefly freshwater eukaryotic algae that possess chlorophyll a and b, store food as starch, and cellulose cell walls; classes Chlorophyceae, Ulvophyceae, and Charophyceae; obviously ancestral to land plants -01407465 05 n 02 Chlorophyceae 0 class_Chlorophyceae 0 007 @ 08103777 n 0000 #m 01407065 n 0000 %m 01408253 n 0000 %m 01408880 n 0000 %m 01409940 n 0000 %m 01410847 n 0000 %m 01411556 n 0000 | algae distinguished chiefly by having flagella and a clear green color, their chlorophyll being masked little if at all by other pigments -01407798 05 n 02 green_algae 0 chlorophyte 0 007 @ 01397114 n 0000 #m 01407065 n 0000 ~ 01408743 n 0000 ~ 01410457 n 0000 ~ 01410689 n 0000 ~ 01412694 n 0000 ~ 01413457 n 0000 | algae that are clear green in color; often growing on wet ricks or damp wood or the surface of stagnant water -01408088 05 n 02 Ulvophyceae 0 class_Ulvophyceae 0 002 @ 08103777 n 0000 #m 01407065 n 0000 | alternative name for the class Chlorophyceae in some classifications -01408253 05 n 02 Ulvales 0 order_Ulvales 0 003 @ 01347199 n 0000 #m 01407465 n 0000 %m 01408383 n 0000 | an order of protoctist -01408383 05 n 03 Ulvaceae 0 family_Ulvaceae 0 sea-lettuce_family 0 003 @ 01387617 n 0000 #m 01408253 n 0000 %m 01408547 n 0000 | thin flat or tubular green algae -01408547 05 n 02 Ulva 0 genus_Ulva 0 003 @ 01388130 n 0000 #m 01408383 n 0000 %m 01408743 n 0000 | type genus of the family Ulvaceae; green seaweed having a thallus two cells thick: sea lettuce -01408743 05 n 02 sea_lettuce 0 laver 1 002 @ 01407798 n 0000 #m 01408547 n 0000 | seaweed with edible translucent crinkly green fronds -01408880 05 n 02 Volvocales 0 order_Volvocales 0 004 @ 01347199 n 0000 #m 01407465 n 0000 %m 01409065 n 0000 %m 01409477 n 0000 | chiefly freshwater green algae; solitary or colonial -01409065 05 n 02 Volvocaceae 0 family_Volvocaceae 0 003 @ 01387617 n 0000 #m 01408880 n 0000 %m 01409244 n 0000 | unicellular or colonial biflagellate free-swimming flagellates -01409244 05 n 02 Volvox 0 genus_Volvox 0 002 @ 01388130 n 0000 #m 01409065 n 0000 | type genus of the Volvocaceae; minute pale green flagellates occurring in tiny spherical colonies; minute flagella rotate the colony about an axis -01409477 05 n 02 Chlamydomonadaceae 0 family_Chlamydomonadaceae 0 003 @ 01387617 n 0000 #m 01408880 n 0000 %m 01409665 n 0000 | green algae some of which are colored red by hematochrome -01409665 05 n 02 Chlamydomonas 0 genus_Chlamydomonas 0 002 @ 01388130 n 0000 #m 01409477 n 0000 | type genus of the Chlamydomonadaceae; solitary doubly-flagellated plant-like algae common in fresh water and damp soil; multiply freely; often a pest around filtration plants -01409940 05 n 04 Zygnematales 0 order_Zygnematales 0 Zygnemales 0 order_Zygnemales 0 003 @ 01342529 n 0000 #m 01407465 n 0000 %m 01410109 n 0000 | pond scums; desmids -01410109 05 n 02 Zygnemataceae 0 family_Zygnemataceae 0 005 @ 01387617 n 0000 #m 01409940 n 0000 %m 01410330 n 0000 %m 01410457 n 0000 %m 01410568 n 0000 | pond scums: common freshwater algae forming green slimy masses -01410330 05 n 02 Zygnema 0 genus_Zygnema 0 002 @ 01388130 n 0000 #m 01410109 n 0000 | type genus of the family Zygnemataceae -01410457 05 n 01 pond_scum 0 002 @ 01407798 n 0000 #m 01410109 n 0000 | free-floating freshwater green algae -01410568 05 n 01 genus_Spirogyra 0 003 @ 01388130 n 0000 #m 01410109 n 0000 %m 01410689 n 0000 | a genus of protoctist -01410689 05 n 01 spirogyra 0 002 @ 01407798 n 0000 #m 01410568 n 0000 | freshwater algae consisting of minute filaments containing spiral chlorophyll bands -01410847 05 n 02 Chlorococcales 0 order_Chlorococcales 0 004 @ 01347199 n 0000 #m 01407465 n 0000 %m 01411036 n 0000 %m 01411240 n 0000 | unicellular green algae that reproduce by spores -01411036 05 n 02 Chlorococcum 0 genus_Chlorococcum 0 002 @ 01388130 n 0000 #m 01410847 n 0000 | type genus of Chlorococcales; unicellular green algae occurring singly or in a layer on soil or damp rock -01411240 05 n 01 genus_Chlorella 0 003 @ 01388130 n 0000 #m 01410847 n 0000 %m 01411450 n 0000 | nonmotile unicellular green algae potentially important as source of high-grade protein and B-complex vitamins -01411450 05 n 01 chlorella 0 002 @ 01397114 n 0000 #m 01411240 n 0000 | any alga of the genus Chlorella -01411556 05 n 02 Oedogoniales 0 order_oedogoniales 0 003 @ 01347199 n 0000 #m 01407465 n 0000 %m 01411727 n 0000 | simple or branched filamentous freshwater green algae -01411727 05 n 02 Oedogoniaceae 0 family_Oedogoniaceae 0 003 @ 01387617 n 0000 #m 01411556 n 0000 %m 01411871 n 0000 | filamentous green algae -01411871 05 n 02 Oedogonium 0 genus_Oedogonium 0 002 @ 01388130 n 0000 #m 01411727 n 0000 | type genus of Oedogoniaceae; freshwater green algae having long unbranched filaments; usually free-floating when mature -01412085 05 n 02 Charophyceae 0 class_Charophyceae 0 004 @ 08103777 n 0000 #m 01407065 n 0000 %m 01412279 n 0000 %m 01413188 n 0000 | in some classifications: contains only the order Charales -01412279 05 n 02 Charales 0 order_Charales 0 003 @ 01347199 n 0000 #m 01412085 n 0000 %m 01412479 n 0000 | small order of macroscopic fresh and brackish water algae with a distinct axis: stoneworts -01412479 05 n 02 Characeae 0 family_Characeae 0 005 @ 01387617 n 0000 #m 01412279 n 0000 %m 01412694 n 0000 %m 01412925 n 0000 %m 01413071 n 0000 | green algae superficially resembling horsetail ferns: stoneworts -01412694 05 n 01 stonewort 0 002 @ 01407798 n 0000 #m 01412479 n 0000 | any of various submerged aquatic algae of the genus Chara having nodes with whorled filamentlike branches; usually encrusted with calcium carbonate deposits -01412925 05 n 02 Chara 0 genus_Chara 0 002 @ 01388130 n 0000 #m 01412479 n 0000 | green algae common in freshwater lakes of limestone districts -01413071 05 n 02 Nitella 0 genus_Nitella 0 002 @ 01388130 n 0000 #m 01412479 n 0000 | fragile branching stoneworts -01413188 05 n 02 Desmidiaceae 0 family_Desmidiaceae 0 003 @ 01387617 n 0000 #m 01412085 n 0000 %m 01413324 n 0000 | unicellular algae -01413324 05 n 02 Desmidium 0 genus_Desmidium 0 003 @ 01388130 n 0000 #m 01413188 n 0000 %m 01413457 n 0000 | a genus of protoctist -01413457 05 n 01 desmid 0 002 @ 01407798 n 0000 #m 01413324 n 0000 | freshwater green algae -01413551 05 n 02 Rhodophyta 0 division_Rhodophyta 0 004 @ 08221348 n 0000 #m 01386494 n 0000 %m 01413744 n 0000 %m 01413942 n 0000 | lower plants; mostly marine and littoral eukaryotic algae -01413744 05 n 02 Rhodophyceae 0 class_Rhodophyceae 0 005 @ 08103777 n 0000 #m 01413551 n 0000 %m 01414359 n 0000 %m 01414841 n 0000 %m 01415256 n 0000 | coextensive with the Rhodophyta: red algae -01413942 05 n 01 red_algae 0 007 @ 01397114 n 0000 #m 01413551 n 0000 ~ 01414216 n 0000 ~ 01414633 n 0000 ~ 01415139 n 0000 ~ 01415524 n 0000 %p 11548728 n 0000 | marine algae in which the chlorophyll is masked by a red or purplish pigment; source of agar and carrageenan -01414216 05 n 01 sea_moss 2 001 @ 01413942 n 0000 | any of various red algae having graceful rose to purple fronds (e.g. dulse or carrageen) -01414359 05 n 02 Gigartinaceae 0 family_Gigartinaceae 0 003 @ 01387617 n 0000 #m 01413744 n 0000 %m 01414502 n 0000 | a family of protoctist -01414502 05 n 02 Chondrus 0 genus_Chondrus 0 003 @ 01388130 n 0000 #m 01414359 n 0000 %m 01414633 n 0000 | a genus of protoctist -01414633 05 n 05 Irish_moss 0 carrageen 0 carageen 0 carragheen 0 Chondrus_crispus 0 002 @ 01413942 n 0000 #m 01414502 n 0000 | dark purple edible seaweed of the Atlantic coasts of Europe and North America -01414841 05 n 02 Rhodymeniaceae 0 family_Rhodymeniaceae 0 003 @ 01387617 n 0000 #m 01413744 n 0000 %m 01414986 n 0000 | a family of protoctist -01414986 05 n 02 Rhodymenia 0 genus_Rhodymenia 0 003 @ 01388130 n 0000 #m 01414841 n 0000 %m 01415139 n 0000 | type genus of the family Rhodymeniaceae -01415139 05 n 02 dulse 0 Rhodymenia_palmata 0 002 @ 01413942 n 0000 #m 01414986 n 0000 | coarse edible red seaweed -01415256 05 n 02 Bangiaceae 0 family_Bangiaceae 0 003 @ 01387617 n 0000 #m 01413744 n 0000 %m 01415393 n 0000 | a family of protoctist -01415393 05 n 02 Porphyra 0 genus_Porphyra 0 003 @ 01388130 n 0000 #m 01415256 n 0000 %m 01415524 n 0000 | a genus of protoctist -01415524 05 n 02 red_laver 0 laver 2 002 @ 01413942 n 0000 #m 01415393 n 0000 | edible red seaweeds -01415626 05 n 02 eukaryote 0 eucaryote 0 004 @ 00004475 n 0000 + 02859974 a 0202 + 02859974 a 0101 ! 01415920 n 0101 | an organism with cells characteristic of all life forms except primitive microorganisms such as bacteria; i.e. an organism with `good' or membrane-bound nuclei in its cells -01415920 05 n 02 prokaryote 0 procaryote 0 004 @ 00004475 n 0000 + 02860183 a 0202 + 02860183 a 0101 ! 01415626 n 0101 | a unicellular organism having cells lacking membrane-bound nuclei; bacteria are the prime example but also included are blue-green algae and actinomycetes and mycoplasma -01416213 05 n 01 zooid 0 001 @ 00004475 n 0000 | one of the distinct individuals forming a colonial animal such as a bryozoan or hydrozoan -01416354 05 n 04 Mastigophora 0 class_Mastigophora 0 Flagellata 0 class_Flagellata 0 006 @ 08103777 n 0000 #m 01389188 n 0000 %m 01416585 n 0000 %m 01417041 n 0000 %m 01418237 n 0000 %m 01420655 n 0000 | protozoa having flagella -01416585 05 n 05 flagellate 0 flagellate_protozoan 0 flagellated_protozoan 0 mastigophoran 0 mastigophore 0 012 @ 01389507 n 0000 #m 01416354 n 0000 + 03015113 a 0101 + 01458302 n 0101 ~ 01417361 n 0000 ~ 01418498 n 0000 ~ 01418620 n 0000 ~ 01418947 n 0000 ~ 01419332 n 0000 ~ 01419573 n 0000 ~ 01419888 n 0000 ~ 01420525 n 0000 | a usually nonphotosynthetic free-living protozoan with whiplike appendages; some are pathogens of humans and other animals -01417041 05 n 04 Dinoflagellata 0 order_Dinoflagellata 0 Cilioflagellata 0 order_Cilioflagellata 0 005 @ 01342529 n 0000 #m 01416354 n 0000 %m 01417361 n 0000 %m 01417553 n 0000 %m 01417807 n 0000 | in some classifications considered a phylum of the kingdom Protista; in others included in the plant phylum Pyrrophyta -01417361 05 n 01 dinoflagellate 0 004 @ 01416585 n 0000 #m 01417041 n 0000 ~ 01417674 n 0000 ~ 01418114 n 0000 | chiefly marine protozoa having two flagella; a chief constituent of plankton -01417553 05 n 01 genus_Noctiluca 0 003 @ 01388130 n 0000 #m 01417041 n 0000 %m 01417674 n 0000 | a genus of protoctist -01417674 05 n 02 noctiluca 0 Noctiluca_miliaris 0 002 @ 01417361 n 0000 #m 01417553 n 0000 | large bioluminescent marine protozoan -01417807 05 n 02 Peridiniidae 0 family_Peridiniidae 0 004 @ 01387617 n 0000 #m 01417041 n 0000 %m 01417982 n 0000 %m 01418114 n 0000 | marine and freshwater dinoflagellates -01417982 05 n 02 Peridinium 0 genus_Peridinium 0 002 @ 01388130 n 0000 #m 01417807 n 0000 | type genus of the family Peridiniidae -01418114 05 n 01 peridinian 0 002 @ 01417361 n 0000 #m 01417807 n 0000 | flagellate with a thick test composed of plates -01418237 05 n 02 Zoomastigina 0 subclass_Zoomastigina 0 005 @ 08103777 n 0000 #m 01416354 n 0000 %m 01418620 n 0000 %m 01418794 n 0000 %m 01419082 n 0000 | in some classifications considered a phylum of the kingdom Protista; holozoic or saprozoic flagellates -01418498 05 n 02 Leishmania 0 genus_Leishmania 0 001 @ 01416585 n 0000 | flagellate protozoan that causes leishmaniasis -01418620 05 n 02 zoomastigote 0 zooflagellate 0 002 @ 01416585 n 0000 #m 01418237 n 0000 | flagellate protozoan lacking photosynthesis and other plant-like characteristics -01418794 05 n 02 Hypermastigina 0 order_Hypermastigina 0 003 @ 01342529 n 0000 #m 01418237 n 0000 %m 01418947 n 0000 | cellulose-producing flagellates -01418947 05 n 01 hypermastigote 0 002 @ 01416585 n 0000 #m 01418794 n 0000 | flagellate symbiotic in the intestines of e.g. termites -01419082 05 n 02 Polymastigina 0 order_Polymastigina 0 008 @ 01342529 n 0000 #m 01418237 n 0000 %m 01419332 n 0000 %m 01419444 n 0000 %m 01419740 n 0000 %m 01420000 n 0000 %m 01420164 n 0000 %m 01420314 n 0000 | small usually parasitic flagellates -01419332 05 n 01 polymastigote 0 002 @ 01416585 n 0000 #m 01419082 n 0000 | flagellates with several flagella -01419444 05 n 01 genus_Costia 0 003 @ 01388130 n 0000 #m 01419082 n 0000 %m 01419573 n 0000 | a genus of flagellate protoctist -01419573 05 n 02 costia 0 Costia_necatrix 0 002 @ 01416585 n 0000 #m 01419444 n 0000 | a flagellate that is the cause of the frequently fatal fish disease costiasis -01419740 05 n 01 genus_Giardia 0 003 @ 01388130 n 0000 #m 01419082 n 0000 %m 01419888 n 0000 | flagellates parasitic in intestines of vertebrates -01419888 05 n 01 giardia 0 002 @ 01416585 n 0000 #m 01419740 n 0000 | a suspected cause of diarrhea in humans -01420000 05 n 02 Chilomastix 0 genus_Chilomastix 0 002 @ 01388130 n 0000 #m 01419082 n 0000 | flagellates parasitic in intestines of vertebrates including humans -01420164 05 n 02 Hexamita 0 genus_Hexamita 0 002 @ 01388130 n 0000 #m 01419082 n 0000 | flagellates free-living or parasitic in intestines of birds -01420314 05 n 01 genus_Trichomonas 0 003 @ 01388130 n 0000 #m 01419082 n 0000 %m 01420525 n 0000 | flagellates parasitic in alimentary or genitourinary tracts of vertebrates and invertebrates including humans -01420525 05 n 01 trichomonad 0 002 @ 01416585 n 0000 #m 01420314 n 0000 | cause of trichomoniasis in women and cattle and birds -01420655 05 n 02 Phytomastigina 0 subclass_Phytomastigina 0 003 @ 08103777 n 0000 #m 01416354 n 0000 %m 01420860 n 0000 | plantlike flagellates containing chlorophyll; often considered unicellular algae -01420860 05 n 01 plantlike_flagellate 0 002 @ 01389507 n 0000 #m 01420655 n 0000 | unicellular organisms having many characteristics of typical algae -01421012 05 n 02 Cryptophyta 0 phylum_Cryptophyta 0 003 @ 08102555 n 0000 #m 01386494 n 0000 %m 01421164 n 0000 | a phylum in the kingdom Protoctista -01421164 05 n 02 Cryptophyceae 0 class_Cryptophyceae 0 003 @ 08103777 n 0000 #m 01421012 n 0000 %m 01421333 n 0000 | motile usually brownish-green protozoa-like algae -01421333 05 n 02 cryptomonad 0 cryptophyte 0 002 @ 01397114 n 0000 #m 01421164 n 0000 | common in fresh and salt water appearing along the shore as algal blooms -01421496 05 n 02 Sporozoa 0 class_Sporozoa 0 007 @ 08103777 n 0000 #m 01389188 n 0000 %m 01421807 n 0000 %m 01422594 n 0000 %m 01424282 n 0000 %m 01425817 n 0000 %m 01426784 n 0000 | strictly parasitic protozoans that are usually immobile; includes plasmodia and coccidia and piroplasms and malaria parasites -01421807 05 n 01 sporozoan 0 017 @ 01389507 n 0000 #m 01421496 n 0000 ~ 01422185 n 0000 ~ 01422335 n 0000 ~ 01422450 n 0000 ~ 01423302 n 0000 ~ 01423617 n 0000 ~ 01423971 n 0000 ~ 01424420 n 0000 ~ 01424782 n 0000 ~ 01425223 n 0000 ~ 01425634 n 0000 ~ 01426314 n 0000 ~ 01426625 n 0000 ~ 01427143 n 0000 ~ 01427399 n 0000 ~ 01427703 n 0000 | parasitic spore-forming protozoan -01422185 05 n 01 sporozoite 0 001 @ 01421807 n 0000 | one of the minute active bodies into which sporozoans divide in one stage of their life cycle -01422335 05 n 01 trophozoite 0 001 @ 01421807 n 0000 | a sporozoan in the active feeding stage of its life cycle -01422450 05 n 01 merozoite 0 001 @ 01421807 n 0000 | a cell that arises from the asexual division of a parent sporozoan during its life cycle -01422594 05 n 02 Telosporidia 0 subclass_Telosporidia 0 005 @ 08103777 n 0000 #m 01421496 n 0000 %m 01422835 n 0000 %m 01423464 n 0000 %m 01423757 n 0000 | parasitic sporozoans that form spores containing one or more infective sporozoites -01422835 05 n 02 Coccidia 0 order_Coccidia 0 004 @ 01342529 n 0000 #m 01422594 n 0000 %m 01423001 n 0000 %m 01423302 n 0000 | an order in the subclass Telosporidia -01423001 05 n 02 Eimeriidae 0 family_Eimeriidae 0 003 @ 01387617 n 0000 #m 01422835 n 0000 %m 01423160 n 0000 | a family of protoctist in the order Coccidia -01423160 05 n 01 genus_Eimeria 0 002 @ 01388130 n 0000 #m 01423001 n 0000 | type genus of the family Eimeriidae; includes serious pathogens -01423302 05 n 02 coccidium 0 eimeria 0 002 @ 01421807 n 0000 #m 01422835 n 0000 | parasitic on the digestive epithelium of vertebrates and higher invertebrates -01423464 05 n 02 Gregarinida 0 order_Gregarinida 0 003 @ 01342529 n 0000 #m 01422594 n 0000 %m 01423617 n 0000 | an order in the subclass Telosporidia -01423617 05 n 01 gregarine 0 002 @ 01421807 n 0000 #m 01423464 n 0000 | vermiform protozoans parasitic in insects and other invertebrates -01423757 05 n 02 Haemosporidia 0 order_Haemosporidia 0 006 @ 01342529 n 0000 #m 01422594 n 0000 %m 01423971 n 0000 %m 01424165 n 0000 %m 01424607 n 0000 %m 01425336 n 0000 | an order in the subclass Telosporidia -01423971 05 n 01 haemosporidian 0 002 @ 01421807 n 0000 #m 01423757 n 0000 | minute protozoans parasitic at some stage of the life cycle in blood cells of vertebrates including many pathogens -01424165 05 n 02 Plasmodiidae 0 family_Plasmodiidae 0 002 @ 01387617 n 0000 #m 01423757 n 0000 | malaria parasites -01424282 05 n 01 genus_Plasmodium 0 003 @ 01388130 n 0000 #m 01421496 n 0000 %m 01424420 n 0000 | type genus of the family Plasmodiidae -01424420 05 n 03 plasmodium 0 Plasmodium_vivax 0 malaria_parasite 0 002 @ 01421807 n 0000 #m 01424282 n 0000 | parasitic protozoan of the genus Plasmodium that causes malaria in humans -01424607 05 n 02 Haemoproteidae 0 family_Haemoproteidae 0 005 @ 01387617 n 0000 #m 01423757 n 0000 %m 01424782 n 0000 %m 01424938 n 0000 %m 01425076 n 0000 | bird parasites -01424782 05 n 01 haemoproteid 0 002 @ 01421807 n 0000 #m 01424607 n 0000 | related to malaria parasite and having a phase in the viscera of various birds -01424938 05 n 02 Haemoproteus 0 genus_Haemoproteus 0 002 @ 01388130 n 0000 #m 01424607 n 0000 | type genus of the family Haemoproteidae -01425076 05 n 02 genus_Leucocytozoon 0 genus_Leucocytozoan 0 003 @ 01388130 n 0000 #m 01424607 n 0000 %m 01425223 n 0000 | a genus of protoctist -01425223 05 n 02 leucocytozoan 0 leucocytozoon 0 002 @ 01421807 n 0000 #m 01425076 n 0000 | parasitic in birds -01425336 05 n 02 Babesiidae 0 family_Babesiidae 0 004 @ 01387617 n 0000 #m 01423757 n 0000 %m 01425501 n 0000 %m 01425634 n 0000 | piroplasms and cattle pathogens -01425501 05 n 02 genus_Babesia 0 genus_Piroplasma 0 002 @ 01388130 n 0000 #m 01425336 n 0000 | type genus of the family Babesiidae -01425634 05 n 01 piroplasm 0 002 @ 01421807 n 0000 #m 01425336 n 0000 | minute parasite of red blood cells of mammals transmitted by a tick and causing diseases of domestic animals -01425817 05 n 02 Acnidosporidia 0 subclass_Acnidosporidia 0 004 @ 08103777 n 0000 #m 01421496 n 0000 %m 01425983 n 0000 %m 01426466 n 0000 | a subclass of Sporozoa -01425983 05 n 02 Sarcosporidia 0 order_Sarcosporidia 0 003 @ 01342529 n 0000 #m 01425817 n 0000 %m 01426160 n 0000 | imperfectly known parasites of the muscles of vertebrates -01426160 05 n 02 Sarcocystis 0 genus_Sarcocystis 0 003 @ 01388130 n 0000 #m 01425983 n 0000 %m 01426314 n 0000 | chief genus of the order Sarcosporidia -01426314 05 n 03 sarcosporidian 0 sarcocystidean 0 sarcocystieian 0 002 @ 01421807 n 0000 #m 01426160 n 0000 | parasite of the muscles of vertebrates -01426466 05 n 02 Haplosporidia 0 order_Haplosporidia 0 003 @ 01342529 n 0000 #m 01425817 n 0000 %m 01426625 n 0000 | an order in the subclass Acnidosporidia -01426625 05 n 01 haplosporidian 0 002 @ 01421807 n 0000 #m 01426466 n 0000 | parasite in invertebrates and lower vertebrates of no known economic importance -01426784 05 n 02 Cnidosporidia 0 subclass_Cnidosporidia 0 005 @ 08103777 n 0000 #m 01421496 n 0000 %m 01427005 n 0000 %m 01427241 n 0000 %m 01427547 n 0000 | single-host parasites of lower vertebrates and invertebrates -01427005 05 n 02 Actinomyxidia 0 order_Actinomyxidia 0 003 @ 01342529 n 0000 #m 01426784 n 0000 %m 01427143 n 0000 | parasites of worms -01427143 05 n 01 actinomyxidian 0 002 @ 01421807 n 0000 #m 01427005 n 0000 | parasites of worms -01427241 05 n 02 Mycrosporidia 0 order_Mycrosporidia 0 003 @ 01342529 n 0000 #m 01426784 n 0000 %m 01427399 n 0000 | an order in the subclass Cnidosporidia -01427399 05 n 01 microsporidian 0 002 @ 01421807 n 0000 #m 01427241 n 0000 | parasite of arthropods and fishes that invade and destroy host cells -01427547 05 n 02 Myxosporidia 0 order_Myxosporidia 0 003 @ 01342529 n 0000 #m 01426784 n 0000 %m 01427703 n 0000 | an order in the subclass Cnidosporidia -01427703 05 n 01 myxosporidian 0 002 @ 01421807 n 0000 #m 01427547 n 0000 | mostly parasitic in fishes and including various serious pathogens -01427848 05 n 02 pseudopod 0 pseudopodium 0 001 @ 05470189 n 0000 | temporary outgrowth used by some microorganisms as an organ of feeding or locomotion -01428003 05 n 01 plasmodium 2 001 @ 05432948 n 0000 | multinucleate sheet of cytoplasm characteristic of some stages of such organisms as slime molds -01428155 05 n 02 Malacopterygii 0 superorder_Malacopterygii 0 014 @ 01342529 n 0000 #m 02527813 n 0000 %m 01428580 n 0000 %m 01437805 n 0000 %m 02517169 n 0000 %m 02521241 n 0000 %m 02521472 n 0000 %m 02525866 n 0000 %m 02528534 n 0000 %m 02543412 n 0000 %m 02543737 n 0000 %m 02545569 n 0000 %m 02546177 n 0000 %m 02546744 n 0000 | an extensive group of teleost fishes having fins supported by flexible cartilaginous rays -01428580 05 n 02 soft-finned_fish 0 malacopterygian 0 027 @ 02528163 n 0000 #m 01428155 n 0000 ! 02552171 n 0101 ~ 01429172 n 0000 ~ 01438208 n 0000 ~ 02517442 n 0000 ~ 02521646 n 0000 ~ 02526121 n 0000 ~ 02529293 n 0000 ~ 02529772 n 0000 %m 02530052 n 0000 ~ 02533834 n 0000 ~ 02534559 n 0000 ~ 02538985 n 0000 ~ 02540412 n 0000 ~ 02541687 n 0000 ~ 02542432 n 0000 ~ 02542958 n 0000 ~ 02543255 n 0000 ~ 02543565 n 0000 ~ 02543952 n 0000 ~ 02544274 n 0000 ~ 02544475 n 0000 ~ 02545841 n 0000 ~ 02546028 n 0000 ~ 02546331 n 0000 ~ 02547014 n 0000 | any fish of the superorder Malacopterygii -01429172 05 n 02 Ostariophysi 0 order_Ostariophysi 0 001 @ 01428580 n 0000 | in some classifications considered a superorder comprising the Cypriniformes and the Siluriformes -01429349 05 n 01 fish_family 0 172 @ 08107499 n 0000 #m 01471070 n 0000 ~ 01438461 n 0000 ~ 01438720 n 0000 ~ 01443998 n 0000 ~ 01444520 n 0000 ~ 01446283 n 0000 ~ 01448767 n 0000 ~ 01450281 n 0000 ~ 01451524 n 0000 ~ 01452633 n 0000 ~ 01453188 n 0000 ~ 01454260 n 0000 ~ 01454702 n 0000 ~ 01455592 n 0000 ~ 01456939 n 0000 ~ 01457276 n 0000 ~ 01457576 n 0000 ~ 01477373 n 0000 ~ 01478300 n 0000 ~ 01481063 n 0000 ~ 01482754 n 0000 ~ 01483188 n 0000 ~ 01483370 n 0000 ~ 01485306 n 0000 ~ 01485673 n 0000 ~ 01486241 n 0000 ~ 01487077 n 0000 ~ 01487743 n 0000 ~ 01488234 n 0000 ~ 01488539 n 0000 ~ 01491991 n 0000 ~ 01493366 n 0000 ~ 01494188 n 0000 ~ 01495192 n 0000 ~ 01496199 n 0000 ~ 01496944 n 0000 ~ 01497579 n 0000 ~ 01497878 n 0000 ~ 01498822 n 0000 ~ 01499898 n 0000 ~ 01500995 n 0000 ~ 02515410 n 0000 ~ 02516427 n 0000 ~ 02517768 n 0000 ~ 02518813 n 0000 ~ 02520391 n 0000 ~ 02520669 n 0000 ~ 02521916 n 0000 ~ 02525543 n 0000 ~ 02526486 n 0000 ~ 02527145 n 0000 ~ 02527498 n 0000 ~ 02528949 n 0000 ~ 02529515 n 0000 ~ 02533708 n 0000 ~ 02534352 n 0000 ~ 02538730 n 0000 ~ 02540255 n 0000 ~ 02541431 n 0000 ~ 02542162 n 0000 ~ 02542598 n 0000 ~ 02543093 n 0000 ~ 02543412 n 0000 ~ 02543737 n 0000 ~ 02544754 n 0000 ~ 02545569 n 0000 ~ 02546177 n 0000 ~ 02546744 n 0000 ~ 02547562 n 0000 ~ 02547947 n 0000 ~ 02548522 n 0000 ~ 02548990 n 0000 ~ 02549796 n 0000 ~ 02550296 n 0000 ~ 02550915 n 0000 ~ 02551316 n 0000 ~ 02552737 n 0000 ~ 02556014 n 0000 ~ 02556623 n 0000 ~ 02558350 n 0000 ~ 02558724 n 0000 ~ 02558980 n 0000 ~ 02559232 n 0000 ~ 02559606 n 0000 ~ 02560823 n 0000 ~ 02562085 n 0000 ~ 02565728 n 0000 ~ 02570648 n 0000 ~ 02571300 n 0000 ~ 02571983 n 0000 ~ 02572904 n 0000 ~ 02573406 n 0000 ~ 02573918 n 0000 ~ 02574651 n 0000 ~ 02575766 n 0000 ~ 02581803 n 0000 ~ 02582437 n 0000 ~ 02582919 n 0000 ~ 02583211 n 0000 ~ 02583457 n 0000 ~ 02585732 n 0000 ~ 02586382 n 0000 ~ 02588108 n 0000 ~ 02590237 n 0000 ~ 02593863 n 0000 ~ 02599784 n 0000 ~ 02601200 n 0000 ~ 02602215 n 0000 ~ 02602970 n 0000 ~ 02603737 n 0000 ~ 02604014 n 0000 ~ 02604657 n 0000 ~ 02605139 n 0000 ~ 02606194 n 0000 ~ 02607630 n 0000 ~ 02610541 n 0000 ~ 02610834 n 0000 ~ 02611425 n 0000 ~ 02611767 n 0000 ~ 02612046 n 0000 ~ 02612982 n 0000 ~ 02613960 n 0000 ~ 02614788 n 0000 ~ 02615494 n 0000 ~ 02616572 n 0000 ~ 02617029 n 0000 ~ 02618244 n 0000 ~ 02618697 n 0000 ~ 02619029 n 0000 ~ 02619738 n 0000 ~ 02620033 n 0000 ~ 02620318 n 0000 ~ 02620826 n 0000 ~ 02621107 n 0000 ~ 02621721 n 0000 ~ 02622823 n 0000 ~ 02623868 n 0000 ~ 02629048 n 0000 ~ 02629435 n 0000 ~ 02630052 n 0000 ~ 02632239 n 0000 ~ 02632694 n 0000 ~ 02635310 n 0000 ~ 02635911 n 0000 ~ 02636666 n 0000 ~ 02637637 n 0000 ~ 02638835 n 0000 ~ 02639312 n 0000 ~ 02640093 n 0000 ~ 02641063 n 0000 ~ 02642430 n 0000 ~ 02644967 n 0000 ~ 02646377 n 0000 ~ 02646985 n 0000 ~ 02647503 n 0000 ~ 02648456 n 0000 ~ 02649400 n 0000 ~ 02649689 n 0000 ~ 02650696 n 0000 ~ 02651215 n 0000 ~ 02651846 n 0000 ~ 02652979 n 0000 ~ 02653655 n 0000 ~ 02654256 n 0000 ~ 02654890 n 0000 ~ 02655355 n 0000 ~ 02656426 n 0000 ~ 02657805 n 0000 ~ 02660769 n 0000 ~ 02663352 n 0000 ~ 02663657 n 0000 | any of various families of fish -01432517 05 n 01 fish_genus 0 290 @ 08108972 n 0000 #m 01471070 n 0000 ~ 01439657 n 0000 ~ 01440344 n 0000 ~ 01440655 n 0000 ~ 01440949 n 0000 ~ 01441625 n 0000 ~ 01442055 n 0000 ~ 01442335 n 0000 ~ 01442591 n 0000 ~ 01442855 n 0000 ~ 01443126 n 0000 ~ 01443398 n 0000 ~ 01444164 n 0000 ~ 01445173 n 0000 ~ 01445305 n 0000 ~ 01445718 n 0000 ~ 01445998 n 0000 ~ 01447001 n 0000 ~ 01447551 n 0000 ~ 01447822 n 0000 ~ 01448165 n 0000 ~ 01448496 n 0000 ~ 01449252 n 0000 ~ 01449586 n 0000 ~ 01449857 n 0000 ~ 01450453 n 0000 ~ 01451726 n 0000 ~ 01452051 n 0000 ~ 01452200 n 0000 ~ 01452954 n 0000 ~ 01453330 n 0000 ~ 01453591 n 0000 ~ 01454393 n 0000 ~ 01455141 n 0000 ~ 01455986 n 0000 ~ 01456296 n 0000 ~ 01456631 n 0000 ~ 01457708 n 0000 ~ 01477745 n 0000 ~ 01478816 n 0000 ~ 01479066 n 0000 ~ 01479329 n 0000 ~ 01481203 n 0000 ~ 01482887 n 0000 ~ 01483707 n 0000 ~ 01483980 n 0000 ~ 01484717 n 0000 ~ 01485073 n 0000 ~ 01485801 n 0000 ~ 01486411 n 0000 ~ 01486706 n 0000 ~ 01487312 n 0000 ~ 01487914 n 0000 ~ 01489275 n 0000 ~ 01490546 n 0000 ~ 01490885 n 0000 ~ 01491235 n 0000 ~ 01491520 n 0000 ~ 01492212 n 0000 ~ 01493012 n 0000 ~ 01493687 n 0000 ~ 01494339 n 0000 ~ 01495340 n 0000 ~ 01497278 n 0000 ~ 01498268 n 0000 ~ 01498577 n 0000 ~ 01499261 n 0000 ~ 01499595 n 0000 ~ 01500360 n 0000 ~ 01500721 n 0000 ~ 01501450 n 0000 ~ 02515560 n 0000 ~ 02516615 n 0000 ~ 02516867 n 0000 ~ 02518178 n 0000 ~ 02518488 n 0000 ~ 02518990 n 0000 ~ 02519576 n 0000 ~ 02520015 n 0000 ~ 02520985 n 0000 ~ 02522247 n 0000 ~ 02522990 n 0000 ~ 02523338 n 0000 ~ 02523750 n 0000 ~ 02524081 n 0000 ~ 02524424 n 0000 ~ 02524811 n 0000 ~ 02525012 n 0000 ~ 02525287 n 0000 ~ 02526673 n 0000 ~ 02529111 n 0000 ~ 02530294 n 0000 ~ 02531362 n 0000 ~ 02531503 n 0000 ~ 02531820 n 0000 ~ 02533075 n 0000 ~ 02533424 n 0000 ~ 02534036 n 0000 ~ 02535349 n 0000 ~ 02535909 n 0000 ~ 02537847 n 0000 ~ 02539251 n 0000 ~ 02539752 n 0000 ~ 02540637 n 0000 ~ 02541139 n 0000 ~ 02541583 n 0000 ~ 02541875 n 0000 ~ 02542283 n 0000 ~ 02542804 n 0000 ~ 02544086 n 0000 ~ 02544960 n 0000 ~ 02545687 n 0000 ~ 02546477 n 0000 ~ 02546873 n 0000 ~ 02548128 n 0000 ~ 02551494 n 0000 ~ 02552894 n 0000 ~ 02556195 n 0000 ~ 02557033 n 0000 ~ 02557461 n 0000 ~ 02558079 n 0000 ~ 02559974 n 0000 ~ 02560383 n 0000 ~ 02560964 n 0000 ~ 02562680 n 0000 ~ 02563497 n 0000 ~ 02564130 n 0000 ~ 02564572 n 0000 ~ 02566325 n 0000 ~ 02567201 n 0000 ~ 02567484 n 0000 ~ 02567960 n 0000 ~ 02568326 n 0000 ~ 02568636 n 0000 ~ 02569151 n 0000 ~ 02569770 n 0000 ~ 02570038 n 0000 ~ 02570312 n 0000 ~ 02571034 n 0000 ~ 02571486 n 0000 ~ 02572369 n 0000 ~ 02572628 n 0000 ~ 02573075 n 0000 ~ 02573563 n 0000 ~ 02574093 n 0000 ~ 02575168 n 0000 ~ 02575455 n 0000 ~ 02576460 n 0000 ~ 02577291 n 0000 ~ 02577532 n 0000 ~ 02577823 n 0000 ~ 02578125 n 0000 ~ 02578604 n 0000 ~ 02579420 n 0000 ~ 02580055 n 0000 ~ 02580546 n 0000 ~ 02580991 n 0000 ~ 02581289 n 0000 ~ 02582591 n 0000 ~ 02583768 n 0000 ~ 02584004 n 0000 ~ 02584325 n 0000 ~ 02586129 n 0000 ~ 02586865 n 0000 ~ 02587761 n 0000 ~ 02588580 n 0000 ~ 02589486 n 0000 ~ 02589955 n 0000 ~ 02591205 n 0000 ~ 02591493 n 0000 ~ 02591757 n 0000 ~ 02592244 n 0000 ~ 02592607 n 0000 ~ 02592866 n 0000 ~ 02593353 n 0000 ~ 02594807 n 0000 ~ 02595217 n 0000 ~ 02595569 n 0000 ~ 02595902 n 0000 ~ 02596592 n 0000 ~ 02596888 n 0000 ~ 02597173 n 0000 ~ 02598438 n 0000 ~ 02598747 n 0000 ~ 02599207 n 0000 ~ 02600135 n 0000 ~ 02600657 n 0000 ~ 02601589 n 0000 ~ 02602620 n 0000 ~ 02603174 n 0000 ~ 02604342 n 0000 ~ 02604811 n 0000 ~ 02605571 n 0000 ~ 02605809 n 0000 ~ 02606590 n 0000 ~ 02606926 n 0000 ~ 02607345 n 0000 ~ 02608151 n 0000 ~ 02608429 n 0000 ~ 02608708 n 0000 ~ 02609169 n 0000 ~ 02609466 n 0000 ~ 02609951 n 0000 ~ 02610234 n 0000 ~ 02611154 n 0000 ~ 02613434 n 0000 ~ 02613687 n 0000 ~ 02614288 n 0000 ~ 02615157 n 0000 ~ 02615829 n 0000 ~ 02616251 n 0000 ~ 02616705 n 0000 ~ 02617402 n 0000 ~ 02617689 n 0000 ~ 02617956 n 0000 ~ 02618372 n 0000 ~ 02619409 n 0000 ~ 02620443 n 0000 ~ 02621419 n 0000 ~ 02622130 n 0000 ~ 02622408 n 0000 ~ 02624377 n 0000 ~ 02625132 n 0000 ~ 02625418 n 0000 ~ 02626590 n 0000 ~ 02627686 n 0000 ~ 02628467 n 0000 ~ 02628856 n 0000 ~ 02629581 n 0000 ~ 02630468 n 0000 ~ 02630926 n 0000 ~ 02631899 n 0000 ~ 02632359 n 0000 ~ 02633287 n 0000 ~ 02633555 n 0000 ~ 02633844 n 0000 ~ 02634156 n 0000 ~ 02634414 n 0000 ~ 02634717 n 0000 ~ 02635013 n 0000 ~ 02635459 n 0000 ~ 02636035 n 0000 ~ 02637046 n 0000 ~ 02637337 n 0000 ~ 02637839 n 0000 ~ 02638960 n 0000 ~ 02639464 n 0000 ~ 02639786 n 0000 ~ 02640453 n 0000 ~ 02641215 n 0000 ~ 02642935 n 0000 ~ 02643448 n 0000 ~ 02643713 n 0000 ~ 02643989 n 0000 ~ 02645143 n 0000 ~ 02645823 n 0000 ~ 02646117 n 0000 ~ 02646508 n 0000 ~ 02647144 n 0000 ~ 02647903 n 0000 ~ 02648174 n 0000 ~ 02648769 n 0000 ~ 02649082 n 0000 ~ 02650282 n 0000 ~ 02650928 n 0000 ~ 02651412 n 0000 ~ 02652005 n 0000 ~ 02653359 n 0000 ~ 02653965 n 0000 ~ 02654609 n 0000 ~ 02655694 n 0000 ~ 02656171 n 0000 ~ 02656550 n 0000 ~ 02658381 n 0000 ~ 02658670 n 0000 ~ 02658944 n 0000 ~ 02659342 n 0000 ~ 02659667 n 0000 ~ 02659961 n 0000 ~ 02660412 n 0000 ~ 02661317 n 0000 ~ 02661765 n 0000 ~ 02662081 n 0000 ~ 02662688 n 0000 ~ 02663086 n 0000 ~ 02664136 n 0000 ~ 02664511 n 0000 ~ 02664823 n 0000 ~ 02665119 n 0000 | any of various genus of fish -01437805 05 n 02 Cypriniformes 0 order_Cypriniformes 0 010 @ 01342529 n 0000 #m 01428155 n 0000 %m 01438208 n 0000 %m 01438461 n 0000 %m 01438720 n 0000 %m 01443998 n 0000 %m 01444520 n 0000 %m 01446283 n 0000 %m 01448767 n 0000 %m 02583211 n 0000 | an order of animals including almost entirely freshwater fishes: characins; loaches; carp; suckers; sometimes classified as a suborder of Ostariophysi -01438208 05 n 01 cypriniform_fish 0 009 @ 01428580 n 0000 #m 01437805 n 0000 ~ 01438581 n 0000 ~ 01439121 n 0000 ~ 01444339 n 0000 ~ 01444783 n 0000 ~ 01446589 n 0000 ~ 01448951 n 0000 ~ 02583567 n 0000 | a soft-finned fish of the order Cypriniformes -01438461 05 n 02 Cobitidae 0 family_Cobitidae 0 003 @ 01429349 n 0000 #m 01437805 n 0000 %m 01438581 n 0000 | loaches -01438581 05 n 01 loach 0 002 @ 01438208 n 0000 #m 01438461 n 0000 | slender freshwater fishes of Eurasia and Africa resembling catfishes -01438720 05 n 02 Cyprinidae 0 family_Cyprinidae 0 015 @ 01429349 n 0000 #m 01437805 n 0000 %m 01439121 n 0000 %m 01439514 n 0000 %m 01439657 n 0000 %m 01440344 n 0000 %m 01440655 n 0000 %m 01440949 n 0000 %m 01441625 n 0000 %m 01442055 n 0000 %m 01442335 n 0000 %m 01442591 n 0000 %m 01442855 n 0000 %m 01443126 n 0000 %m 01443398 n 0000 | a family of fish including: carp; tench; roach; rudd; dace -01439121 05 n 02 cyprinid 0 cyprinid_fish 0 014 @ 01438208 n 0000 #m 01438720 n 0000 + 02846168 a 0101 ~ 01439514 n 0000 ~ 01440764 n 0000 ~ 01441117 n 0000 ~ 01441272 n 0000 ~ 01441425 n 0000 ~ 01442450 n 0000 ~ 01442710 n 0000 ~ 01442972 n 0000 ~ 01443243 n 0000 ~ 01443537 n 0000 ~ 01443831 n 0000 | soft-finned mainly freshwater fishes typically having toothless jaws and cycloid scales -01439514 05 n 01 carp 0 003 @ 01439121 n 0000 #m 01438720 n 0000 ~ 01439808 n 0000 | any of various freshwater fish of the family Cyprinidae -01439657 05 n 02 Cyprinus 0 genus_Cyprinus 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01439808 n 0000 | type genus of the family Cyprinidae: carp -01439808 05 n 02 domestic_carp 0 Cyprinus_carpio 0 005 @ 01439514 n 0000 #m 01439657 n 0000 ~ 01440160 n 0000 ~ 01440242 n 0000 %p 07779123 n 0000 | large Old World freshwater bottom-feeding fish introduced into Europe from Asia; inhabits ponds and sluggish streams and often raised for food; introduced into United States where it has become a pest -01440160 05 n 01 leather_carp 0 001 @ 01439808 n 0000 | scaleless domestic carp -01440242 05 n 01 mirror_carp 0 001 @ 01439808 n 0000 | domestic carp with some large shining scales -01440344 05 n 02 Abramis 0 genus_Abramis 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01440467 n 0000 | European fishes -01440467 05 n 02 European_bream 0 Abramis_brama 0 002 @ 02563182 n 0000 #m 01440344 n 0000 | European freshwater fish having a flattened body and silvery scales; of little value as food -01440655 05 n 02 Tinca 0 genus_Tinca 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01440764 n 0000 | tench -01440764 05 n 02 tench 0 Tinca_tinca 0 002 @ 01439121 n 0000 #m 01440655 n 0000 | freshwater dace-like game fish of Europe and western Asia noted for ability to survive outside water -01440949 05 n 02 Leuciscus 0 genus_Leuciscus 0 004 @ 01432517 n 0000 #m 01438720 n 0000 %m 01441117 n 0000 %m 01441272 n 0000 | a genus of fish including: dace, chub -01441117 05 n 02 dace 0 Leuciscus_leuciscus 0 002 @ 01439121 n 0000 #m 01440949 n 0000 | small European freshwater fish with a slender bluish-green body -01441272 05 n 02 chub 1 Leuciscus_cephalus 0 002 @ 01439121 n 0000 #m 01440949 n 0000 | European freshwater game fish with a thick spindle-shaped body -01441425 05 n 01 shiner 0 004 @ 01439121 n 0000 ~ 01441742 n 0000 ~ 01441910 n 0000 ~ 01442166 n 0000 | any of numerous small silvery North American cyprinid fishes especially of the genus Notropis -01441625 05 n 02 Notropis 0 genus_Notropis 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01441910 n 0000 | shiners -01441742 05 n 02 emerald_shiner 0 Notropis_atherinoides 0 001 @ 01441425 n 0000 | small blunt-nosed fish of Great Lakes and Mississippi valley with a greenish luster -01441910 05 n 03 common_shiner 0 silversides 2 Notropis_cornutus 0 002 @ 01441425 n 0000 #m 01441625 n 0000 | the common North American shiner -01442055 05 n 02 Notemigonus 0 genus_Notemigonus 0 002 @ 01432517 n 0000 #m 01438720 n 0000 | golden shiners -01442166 05 n 02 golden_shiner 0 Notemigonus_crysoleucas 0 001 @ 01441425 n 0000 | shiner of eastern North America having golden glints; sometimes also called `bream' -01442335 05 n 02 Rutilus 0 genus_Rutilus 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01442450 n 0000 | roaches -01442450 05 n 02 roach 2 Rutilus_rutilus 0 002 @ 01439121 n 0000 #m 01442335 n 0000 | European freshwater food fish having a greenish back -01442591 05 n 02 Scardinius 0 genus_Scardinius 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01442710 n 0000 | rudds -01442710 05 n 02 rudd 0 Scardinius_erythrophthalmus 0 002 @ 01439121 n 0000 #m 01442591 n 0000 | European freshwater fish resembling the roach -01442855 05 n 02 Phoxinus 0 genus_Phoxinus 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01442972 n 0000 | minnows -01442972 05 n 02 minnow 1 Phoxinus_phoxinus 0 002 @ 01439121 n 0000 #m 01442855 n 0000 | very small European freshwater fish common in gravelly streams -01443126 05 n 02 Gobio 0 genus_Gobio 0 003 @ 01432517 n 0000 #m 01438720 n 0000 %m 01443243 n 0000 | true gudgeons -01443243 05 n 02 gudgeon 1 Gobio_gobio 0 002 @ 01439121 n 0000 #m 01443126 n 0000 | small slender European freshwater fish often used as bait by anglers -01443398 05 n 02 Carassius 0 genus_Carassius 0 004 @ 01432517 n 0000 #m 01438720 n 0000 %m 01443537 n 0000 %m 01443831 n 0000 | goldfish -01443537 05 n 02 goldfish 0 Carassius_auratus 0 003 @ 01439121 n 0000 #m 01443398 n 0000 ~ 01443736 n 0000 | small golden or orange-red freshwater fishes of Eurasia used as pond or aquarium fishes -01443736 05 n 01 silverfish 0 001 @ 01443537 n 0000 | a silvery variety of Carassius auratus -01443831 05 n 03 crucian_carp 0 Carassius_carassius 0 Carassius_vulgaris 0 002 @ 01439121 n 0000 #m 01443398 n 0000 | European carp closely resembling wild goldfish -01443998 05 n 02 Electrophoridae 0 family_Electrophoridae 0 003 @ 01429349 n 0000 #m 01437805 n 0000 %m 01444164 n 0000 | small family comprising the electric eels -01444164 05 n 02 Electrophorus 0 genus_Electrophorus 0 003 @ 01432517 n 0000 #m 01443998 n 0000 %m 01444339 n 0000 | type genus of the family Electrophoridae; electric eels -01444339 05 n 02 electric_eel 0 Electrophorus_electric 0 002 @ 01438208 n 0000 #m 01444164 n 0000 | eel-shaped freshwater fish of South America having electric organs in its body -01444520 05 n 02 Catostomidae 0 family_Catostomidae 0 008 @ 01429349 n 0000 #m 01437805 n 0000 %m 01444783 n 0000 %m 01444922 n 0000 %m 01445173 n 0000 %m 01445305 n 0000 %m 01445718 n 0000 %m 01445998 n 0000 | suckers; closely related to the family Cyprinidae -01444783 05 n 01 catostomid 0 003 @ 01438208 n 0000 #m 01444520 n 0000 ~ 01444922 n 0000 | a cypriniform fish of the family Catostomidae -01444922 05 n 01 sucker 1 006 @ 01444783 n 0000 #m 01444520 n 0000 ~ 01445429 n 0000 ~ 01445857 n 0000 ~ 01446152 n 0000 %p 07779895 n 0000 | mostly North American freshwater fishes with a thick-lipped mouth for feeding by suction; related to carps -01445173 05 n 02 Catostomus 0 genus_Catostomus 0 002 @ 01432517 n 0000 #m 01444520 n 0000 | type genus of the family Catostomidae -01445305 05 n 02 Ictiobus 0 genus_Ictiobus 0 003 @ 01432517 n 0000 #m 01444520 n 0000 %m 01445593 n 0000 | buffalo fishes -01445429 05 n 02 buffalo_fish 0 buffalofish 0 003 @ 01444922 n 0000 ~ 01445593 n 0000 %p 07779263 n 0000 | any of several large suckers of the Mississippi valley -01445593 05 n 02 black_buffalo 0 Ictiobus_niger 0 002 @ 01445429 n 0000 #m 01445305 n 0000 | fish of the lower Mississippi -01445718 05 n 02 Hypentelium 0 genus_Hypentelium 0 002 @ 01432517 n 0000 #m 01444520 n 0000 | a genus of fish in the family Catostomidae -01445857 05 n 03 hog_sucker 0 hog_molly 0 Hypentelium_nigricans 0 001 @ 01444922 n 0000 | widely distributed in warm clear shallow streams -01445998 05 n 02 Maxostoma 0 genus_Maxostoma 0 003 @ 01432517 n 0000 #m 01444520 n 0000 %m 01446152 n 0000 | a genus of fish in the family Catostomidae -01446152 05 n 02 redhorse 0 redhorse_sucker 0 002 @ 01444922 n 0000 #m 01445998 n 0000 | North American sucker with reddish fins -01446283 05 n 02 Cyprinodontidae 0 family_Cyprinodontidae 0 008 @ 01429349 n 0000 #m 01437805 n 0000 %m 01446589 n 0000 %m 01447001 n 0000 %m 01447551 n 0000 %m 01447822 n 0000 %m 01448165 n 0000 %m 01448496 n 0000 | large family of small soft-finned fishes; killifishes; flagfishes; swordtails; guppies -01446589 05 n 01 cyprinodont 0 005 @ 01438208 n 0000 #m 01446283 n 0000 ~ 01446760 n 0000 ~ 01448291 n 0000 ~ 01448594 n 0000 | any member of the family Cyprinodontidae -01446760 05 n 01 killifish 0 005 @ 01446589 n 0000 ~ 01447139 n 0000 ~ 01447331 n 0000 ~ 01447658 n 0000 ~ 01447946 n 0000 | small mostly marine warm-water carp-like schooling fishes; used as bait or aquarium fishes or in mosquito control -01447001 05 n 02 Fundulus 0 genus_Fundulus 0 004 @ 01432517 n 0000 #m 01446283 n 0000 %m 01447139 n 0000 %m 01447331 n 0000 | killifish -01447139 05 n 02 mummichog 0 Fundulus_heteroclitus 0 002 @ 01446760 n 0000 #m 01447001 n 0000 | silver-and-black killifish of saltwater marshes along the Atlantic coast of the United States -01447331 05 n 04 striped_killifish 0 mayfish 0 may_fish 0 Fundulus_majalis 0 002 @ 01446760 n 0000 #m 01447001 n 0000 | black-barred fish of bays and coastal marshes of the Atlantic and Gulf Coast of the United States -01447551 05 n 01 genus_Rivulus 0 003 @ 01432517 n 0000 #m 01446283 n 0000 %m 01447658 n 0000 | killifish -01447658 05 n 01 rivulus 0 002 @ 01446760 n 0000 #m 01447551 n 0000 | found in small streams of tropical America; often kept in aquariums; usually hermaphroditic -01447822 05 n 02 Jordanella 0 genus_Jordanella 0 003 @ 01432517 n 0000 #m 01446283 n 0000 %m 01447946 n 0000 | flagfishes -01447946 05 n 03 flagfish 0 American_flagfish 0 Jordanella_floridae 0 002 @ 01446760 n 0000 #m 01447822 n 0000 | a fish with a dark-blue back and whitish sides with red stripes; found in swamps and streams of Florida -01448165 05 n 02 Xyphophorus 0 genus_Xyphophorus 0 003 @ 01432517 n 0000 #m 01446283 n 0000 %m 01448291 n 0000 | swordtails -01448291 05 n 04 swordtail 0 helleri 0 topminnow 2 Xyphophorus_helleri 0 002 @ 01446589 n 0000 #m 01448165 n 0000 | freshwater fish of Central America having a long swordlike tail; popular aquarium fish -01448496 05 n 02 Lebistes 0 genus_Lebistes 0 002 @ 01432517 n 0000 #m 01446283 n 0000 | guppies -01448594 05 n 03 guppy 0 rainbow_fish 0 Lebistes_reticulatus 0 001 @ 01446589 n 0000 | small freshwater fish of South America and the West Indies; often kept in aquariums -01448767 05 n 02 Poeciliidae 0 family_Poeciliidae 0 006 @ 01429349 n 0000 #m 01437805 n 0000 %m 01448951 n 0000 %m 01449252 n 0000 %m 01449586 n 0000 %m 01449857 n 0000 | topminnows -01448951 05 n 04 topminnow 1 poeciliid_fish 0 poeciliid 0 live-bearer 0 005 @ 01438208 n 0000 #m 01448767 n 0000 ~ 01449374 n 0000 ~ 01449712 n 0000 ~ 01449980 n 0000 | small usually brightly-colored viviparous surface-feeding fishes of fresh or brackish warm waters; often used in mosquito control -01449252 05 n 02 Gambusia 0 genus_Gambusia 0 003 @ 01432517 n 0000 #m 01448767 n 0000 %m 01449374 n 0000 | mosquitofish -01449374 05 n 02 mosquitofish 0 Gambusia_affinis 0 002 @ 01448951 n 0000 #m 01449252 n 0000 | silvery topminnow with rows of black spots of tropical North America and West Indies; important in mosquito control -01449586 05 n 02 Platypoecilus 0 genus_Platypoecilus 0 003 @ 01432517 n 0000 #m 01448767 n 0000 %m 01449712 n 0000 | platys -01449712 05 n 02 platy 0 Platypoecilus_maculatus 0 002 @ 01448951 n 0000 #m 01449586 n 0000 | small stocky Mexican fish; popular aquarium fish -01449857 05 n 02 Mollienesia 0 genus_Mollienesia 0 003 @ 01432517 n 0000 #m 01448767 n 0000 %m 01449980 n 0000 | mollies -01449980 05 n 02 mollie 0 molly 0 002 @ 01448951 n 0000 #m 01449857 n 0000 | popular aquarium fish -01450081 05 n 02 Berycomorphi 0 order_Berycomorphi 0 004 @ 01342529 n 0000 #m 02551824 n 0000 %m 01450281 n 0000 %m 01451524 n 0000 | an order of spiny-finned fish in the superorder Acanthopterygii -01450281 05 n 02 Holocentridae 0 family_Holocentridae 0 004 @ 01429349 n 0000 #m 01450081 n 0000 %m 01450453 n 0000 %m 01450661 n 0000 | squirrelfishes and soldierfishes -01450453 05 n 02 Holocentrus 0 genus_Holocentrus 0 005 @ 01432517 n 0000 #m 01450281 n 0000 %m 01450950 n 0000 %m 01451115 n 0000 %m 01451295 n 0000 | type genus of the family Holocentridae; squirrelfishes -01450661 05 n 01 squirrelfish 0 006 @ 02552171 n 0000 #m 01450281 n 0000 ~ 01450950 n 0000 ~ 01451115 n 0000 ~ 01451295 n 0000 ~ 01451426 n 0000 | very small, brightly colored (especially red) nocturnal fishes of shallow waters or tropical reefs; they make sounds like a squirrel's bark -01450950 05 n 02 reef_squirrelfish 0 Holocentrus_coruscus 0 002 @ 01450661 n 0000 #m 01450453 n 0000 | on reefs from Bermuda and Florida to northern South America -01451115 05 n 02 deepwater_squirrelfish 0 Holocentrus_bullisi 0 002 @ 01450661 n 0000 #m 01450453 n 0000 | a squirrelfish found from South Carolina to Bermuda and Gulf of Mexico -01451295 05 n 01 Holocentrus_ascensionis 0 002 @ 01450661 n 0000 #m 01450453 n 0000 | bright red fish of West Indies and Bermuda -01451426 05 n 02 soldierfish 0 soldier-fish 0 001 @ 01450661 n 0000 | the larger squirrelfishes -01451524 05 n 02 Anomalopidae 0 family_Anomalopidae 0 005 @ 01429349 n 0000 #m 01450081 n 0000 %m 01451726 n 0000 %m 01452051 n 0000 %m 01452200 n 0000 | a family of fish including: flashlight fishes -01451726 05 n 01 genus_Anomalops 0 003 @ 01432517 n 0000 #m 01451524 n 0000 %m 01451863 n 0000 | type genus of the family Anomalopidae -01451863 05 n 02 anomalops 0 flashlight_fish 1 002 @ 02552171 n 0000 #m 01451726 n 0000 | fish having a luminous organ beneath eye; of warm waters of the western Pacific and Puerto Rico -01452051 05 n 02 Krypterophaneron 0 genus_Krypterophaneron 0 002 @ 01432517 n 0000 #m 01451524 n 0000 | a genus of fish in the family Anomalopidae -01452200 05 n 02 Photoblepharon 0 genus_Photoblepharon 0 002 @ 01432517 n 0000 #m 01451524 n 0000 | a genus of fish in the family Anomalopidae -01452345 05 n 02 flashlight_fish 2 Photoblepharon_palpebratus 0 001 @ 02552171 n 0000 | fish of deep dark waters having a light organ below each eye -01452496 05 n 02 Zeomorphi 0 order_Zeomorphi 0 004 @ 01342529 n 0000 #m 02551824 n 0000 %m 01452633 n 0000 %m 01453188 n 0000 | dories -01452633 05 n 02 Zeidae 0 family_Zeidae 0 004 @ 01429349 n 0000 #m 01452496 n 0000 %m 01452798 n 0000 %m 01452954 n 0000 | a family of fish in the order Zeomorphi -01452798 05 n 01 dory 0 003 @ 02552171 n 0000 #m 01452633 n 0000 ~ 01453087 n 0000 | marine fishes widely distributed in mid-waters and deep slope waters -01452954 05 n 02 Zeus 0 genus_Zeus 0 003 @ 01432517 n 0000 #m 01452633 n 0000 %m 01453087 n 0000 | type genus of the family Zeidae -01453087 05 n 02 John_Dory 0 Zeus_faber 0 002 @ 01452798 n 0000 #m 01452954 n 0000 | European dory -01453188 05 n 02 Caproidae 0 family_Caproidae 0 004 @ 01429349 n 0000 #m 01452496 n 0000 %m 01453330 n 0000 %m 01453591 n 0000 | boarfishes -01453330 05 n 02 Capros 0 genus_Capros 0 003 @ 01432517 n 0000 #m 01453188 n 0000 %m 01453475 n 0000 | a genus of fish in the family Caproidae -01453475 05 n 02 boarfish 1 Capros_aper 0 002 @ 02552171 n 0000 #m 01453330 n 0000 | fish with a projecting snout -01453591 05 n 02 Antigonia 0 genus_Antigonia 0 003 @ 01432517 n 0000 #m 01453188 n 0000 %m 01453742 n 0000 | a genus of fish in the family Caproidae -01453742 05 n 01 boarfish 2 002 @ 02552171 n 0000 #m 01453591 n 0000 | fish with large eyes and long snouts -01453852 05 n 02 Solenichthyes 0 order_Solenichthyes 0 008 @ 01342529 n 0000 #m 02527813 n 0000 %m 01454260 n 0000 %m 01454702 n 0000 %m 01455592 n 0000 %m 01456939 n 0000 %m 01457276 n 0000 %m 01457576 n 0000 | bellows fishes; shrimpfishes; cornetfishes; pipefishes; small order of chiefly tropical marine fishes of varied and bizarre form all having a small mouth at the end of a drawn-out tubular snout -01454260 05 n 02 Fistulariidae 0 family_Fistulariidae 0 003 @ 01429349 n 0000 #m 01453852 n 0000 %m 01454393 n 0000 | cornetfishes -01454393 05 n 02 Fistularia 0 genus_Fistularia 0 003 @ 01432517 n 0000 #m 01454260 n 0000 %m 01454545 n 0000 | type genus of the family Fistulariidae -01454545 05 n 01 cornetfish 0 002 @ 02528163 n 0000 #m 01454393 n 0000 | slender tropical fish with a long tubular snout and bony plates instead of scales -01454702 05 n 02 Gasterosteidae 0 family_Gasterosteidae 0 004 @ 01429349 n 0000 #m 01453852 n 0000 %m 01454856 n 0000 %m 01455141 n 0000 | sticklebacks -01454856 05 n 02 stickleback 0 prickleback 1 004 @ 02552171 n 0000 #m 01454702 n 0000 ~ 01455317 n 0000 ~ 01455461 n 0000 | small (2-4 inches) pugnacious mostly scaleless spiny-backed fishes of northern fresh and littoral waters having elaborate courtship; subjects of much research -01455141 05 n 02 Gasterosteus 0 genus_gasterosteus 0 004 @ 01432517 n 0000 #m 01454702 n 0000 %m 01455317 n 0000 %m 01455461 n 0000 | type genus of the family Gasterosteidae -01455317 05 n 02 three-spined_stickleback 0 Gasterosteus_aculeatus 0 002 @ 01454856 n 0000 #m 01455141 n 0000 | of rivers and coastal regions -01455461 05 n 02 ten-spined_stickleback 0 Gasterosteus_pungitius 0 002 @ 01454856 n 0000 #m 01455141 n 0000 | confined to rivers -01455592 05 n 02 Syngnathidae 0 family_Syngnathidae 0 006 @ 01429349 n 0000 #m 01453852 n 0000 %m 01455778 n 0000 %m 01455986 n 0000 %m 01456296 n 0000 %m 01456631 n 0000 | pipefishes -01455778 05 n 02 pipefish 0 needlefish 1 005 @ 02528163 n 0000 #m 01455592 n 0000 ~ 01456137 n 0000 ~ 01456454 n 0000 ~ 01456756 n 0000 | fish with long tubular snout and slim body covered with bony plates -01455986 05 n 02 Syngnathus 0 genus_Syngnathus 0 003 @ 01432517 n 0000 #m 01455592 n 0000 %m 01456137 n 0000 | type genus of the family Syngnathidae -01456137 05 n 02 dwarf_pipefish 0 Syngnathus_hildebrandi 0 002 @ 01455778 n 0000 #m 01455986 n 0000 | small (4 inches) fish found off the Florida Gulf Coast -01456296 05 n 02 Cosmocampus 0 genus_Cosmocampus 0 003 @ 01432517 n 0000 #m 01455592 n 0000 %m 01456454 n 0000 | a genus of fish in the family Syngnathidae -01456454 05 n 02 deepwater_pipefish 0 Cosmocampus_profundus 0 002 @ 01455778 n 0000 #m 01456296 n 0000 | a fish 8 inches long; found from eastern Florida to western Caribbean -01456631 05 n 02 Hippocampus 0 genus_Hippocampus 0 003 @ 01432517 n 0000 #m 01455592 n 0000 %m 01456756 n 0000 | seahorses -01456756 05 n 02 seahorse 0 sea_horse 0 002 @ 01455778 n 0000 #m 01456631 n 0000 | small fish with horse-like heads bent sharply downward and curled tails; swim in upright position -01456939 05 n 02 Macrorhamphosidae 0 family_Macrorhamphosidae 0 003 @ 01429349 n 0000 #m 01453852 n 0000 %m 01457082 n 0000 | bellows fishes -01457082 05 n 02 snipefish 0 bellows_fish 0 002 @ 02528163 n 0000 #m 01456939 n 0000 | small bottom-dwelling fish of warm seas having a compressed body and a long snout with a toothless mouth -01457276 05 n 02 Centriscidae 0 family_Centriscidae 0 003 @ 01429349 n 0000 #m 01453852 n 0000 %m 01457407 n 0000 | shrimpfishes -01457407 05 n 02 shrimpfish 0 shrimp-fish 0 002 @ 02528163 n 0000 #m 01457276 n 0000 | slender tropical shallow-water East Indian fish covered with transparent plates -01457576 05 n 02 Aulostomidae 0 family_Aulostomidae 0 003 @ 01429349 n 0000 #m 01453852 n 0000 %m 01457708 n 0000 | trumpetfishes -01457708 05 n 02 Aulostomus 0 genus_Aulostomus 0 003 @ 01432517 n 0000 #m 01457576 n 0000 %m 01457852 n 0000 | type genus of the Aulostomidae -01457852 05 n 02 trumpetfish 0 Aulostomus_maculatus 0 002 @ 02528163 n 0000 #m 01457708 n 0000 | tropical Atlantic fish with a long snout; swims snout down -01458010 05 n 01 cytostome 0 002 @ 05301908 n 0000 #p 01389507 n 0000 | mouth of a protozoan -01458105 05 n 01 cilium 0 003 @ 05445668 n 0000 + 02845379 a 0103 + 02845379 a 0101 | a hairlike projection from the surface of a cell; provides locomotion in free-swimming unicellular organisms -01458302 05 n 01 flagellum 0 004 @ 05470189 n 0000 #p 01355326 n 0000 #p 05457469 n 0000 + 01416585 n 0101 | a lash-like appendage used for locomotion (e.g., in sperm cells and some bacteria and protozoa) -01458509 05 n 01 flame_cell 0 002 @ 05333259 n 0000 #p 01924916 n 0000 | organ of excretion in flatworms -01458616 05 n 01 investment 0 002 @ 05238282 n 0000 ~ 01458746 n 0000 | outer layer or covering of an organ or part or organism -01458746 05 n 01 pellicle 0 001 @ 01458616 n 0000 | thin protective membrane in some protozoa -01458842 05 n 03 embryo 0 conceptus 0 fertilized_egg 0 009 @ 00015388 n 0000 + 01490257 a 0103 + 00818581 a 0102 + 01490257 a 0101 + 00818581 a 0101 ~ 01461646 n 0000 ~ 01462544 n 0000 ~ 01462803 n 0000 %p 05520479 n 0000 | an animal organism in the early stages of growth and differentiation that in higher forms merge into fetal stages but in lower forms terminate in commencement of larval life -01459242 05 n 05 blastocoel 0 blastocoele 0 blastocele 0 segmentation_cavity 0 cleavage_cavity 0 005 @ 05303402 n 0000 #p 01461646 n 0000 + 03050012 a 0301 + 03050012 a 0201 + 03050012 a 0101 | the fluid-filled cavity inside a blastula -01459480 05 n 04 blastoderm 0 germinal_disc 0 blastodisc 0 germinal_area 0 003 @ 01463259 n 0000 + 03050164 a 0102 + 03050164 a 0101 | a layer of cells on the inside of the blastula -01459664 05 n 01 blastomere 0 002 @ 00006484 n 0000 + 03050324 a 0101 | any cell resulting from cleavage of a fertilized egg -01459791 05 n 02 fetus 0 foetus 0 008 @ 01471682 n 0000 + 02892819 a 0202 + 02892819 a 0101 ~ 01460108 n 0000 ~ 01460303 n 0000 %p 05418177 n 0000 %p 05520479 n 0000 ~ 09828216 n 0000 | an unborn or unhatched vertebrate in the later stages of development showing the main recognizable features of the mature animal -01460108 05 n 02 monster 0 teras 0 005 @ 01459791 n 0000 ;c 06043075 n 0000 + 00221627 a 0102 %p 14019296 n 0000 %p 14019441 n 0000 | (medicine) a grossly malformed and usually nonviable fetus -01460303 05 n 01 abortus 0 001 @ 01459791 n 0000 | a human fetus whose weight is less than 0.5 kilogram when removed or expelled from the mother's body -01460457 05 n 01 egg 0 008 @ 05457973 n 0000 %p 01460963 n 0000 ~ 01461146 n 0000 ~ 01461315 n 0000 ~ 01461445 n 0000 ~ 01464766 n 0000 %p 01464844 n 0000 ~ 02322624 n 0000 | animal reproductive body consisting of an ovum or embryo together with nutritive and protective envelopes; especially the thin-shelled reproductive body laid by e.g. female birds -01460813 05 n 01 ovipositor 0 001 @ 05297523 n 0000 | egg-laying tubular structure at the end of the abdomen in many female insects and some fishes -01460963 05 n 01 chalaza 0 002 @ 05267548 n 0000 #p 01460457 n 0000 | one of two spiral bands of tissue connecting the egg yolk to the enclosing membrane at either end of the shell -01461146 05 n 01 nit 0 001 @ 01460457 n 0000 | egg or young of an insect parasitic on mammals especially a sucking louse; often attached to a hair or item of clothing -01461315 05 n 01 spawn 0 002 @ 01460457 n 0000 ~ 01461532 n 0000 | the mass of eggs deposited by fish or amphibians or molluscs -01461445 05 n 01 roe 1 001 @ 01460457 n 0000 | the eggs or egg-laden ovary of a fish -01461532 05 n 01 roe 2 001 @ 01461315 n 0000 | the egg mass or spawn of certain crustaceans such as the lobster -01461646 05 n 02 blastula 0 blastosphere 0 006 @ 01458842 n 0000 + 03050716 a 0201 + 03050716 a 0102 %p 01459242 n 0000 ~ 01462042 n 0000 %p 01462209 n 0000 | early stage of an embryo produced by cleavage of an ovum; a liquid-filled sphere whose wall is composed of a single layer of cells; during this stage (about eight days after fertilization) implantation in the wall of the uterus occurs -01462042 05 n 02 blastocyst 0 blastodermic_vessicle 0 001 @ 01461646 n 0000 | the blastula of a placental mammal in which some differentiation of cells has occurred -01462209 05 n 01 trophoblast 0 003 @ 05426243 n 0000 #p 01461646 n 0000 + 03126787 a 0101 | the membrane that forms the wall of the blastocyst in early development; aids implantation in the uterine wall; "after implantation of the blastocyst in the uterine wall the trophoblast divides into two layers, the chorion and the placenta" -01462544 05 n 01 gastrula 0 002 @ 01458842 n 0000 %p 01462945 n 0000 | double-walled stage of the embryo resulting from invagination of the blastula; the outer layer of cells is the ectoderm and the inner layer differentiates into the mesoderm and endoderm -01462803 05 n 01 morula 0 001 @ 01458842 n 0000 | a solid mass of blastomeres that forms when the zygote splits; develops into the blastula -01462945 05 n 01 archenteron 0 003 @ 05303402 n 0000 #p 01462544 n 0000 %p 01463115 n 0000 | central cavity of the gastrula; becomes the intestinal or digestive cavity -01463115 05 n 01 blastopore 0 004 @ 05249636 n 0000 #p 01462945 n 0000 + 03050560 a 0102 + 03050560 a 0101 | the opening into the archenteron -01463259 05 n 01 layer 0 004 @ 05225602 n 0000 + 01262113 v 0101 ~ 01459480 n 0000 ~ 01895850 n 0000 | thin structure composed of a single thickness of cells -01463419 05 n 01 embryonic_tissue 0 002 @ 05267548 n 0000 ~ 01463519 n 0000 | tissue in an embryo -01463519 05 n 01 germ_layer 0 005 @ 01463419 n 0000 ;c 06071426 n 0000 ~ 01463739 n 0000 ~ 01464077 n 0000 ~ 01464573 n 0000 | (embryology) any of the 3 layers of cells differentiated in embryos following gastrulation -01463739 05 n 03 ectoderm 0 exoderm 0 ectoblast 0 004 @ 01463519 n 0000 + 02876360 a 0102 + 02876360 a 0101 ~ 01463933 n 0000 | the outer germ layer that develops into skin and nervous tissue -01463933 05 n 01 neural_tube 0 001 @ 01463739 n 0000 | a tube of ectodermal tissue in the embryo from which the brain and spinal cord develop -01464077 05 n 02 mesoderm 0 mesoblast 0 005 @ 01463519 n 0000 + 02866976 a 0201 + 02866976 a 0102 ~ 01464318 n 0000 ~ 01464441 n 0000 | the middle germ layer that develops into muscle and bone and cartilage and blood and connective tissue -01464318 05 n 02 chordamesoderm 0 chordomesoderm 0 001 @ 01464077 n 0000 | the area of mesoderm that forms the notochord -01464441 05 n 01 mesenchyme 0 001 @ 01464077 n 0000 | mesodermal tissue that forms connective tissue and blood and smooth muscles -01464573 05 n 05 endoderm 0 entoderm 0 endoblast 0 entoblast 0 hypoblast 0 001 @ 01463519 n 0000 | the inner germ layer that develops into the lining of the digestive and respiratory systems -01464766 05 n 01 silkworm_seed 0 001 @ 01460457 n 0000 | eggs of a silkworm -01464844 05 n 02 yolk 0 vitellus 0 002 @ 00021265 n 0000 #p 01460457 n 0000 | nutritive material of an ovum stored for the nutrition of an embryo (especially the yellow mass of a bird or reptile egg) -01465046 05 n 01 yolk_sac 1 001 @ 05515670 n 0000 | membranous structure enclosing the yolk of eggs in birds, reptiles, marsupials, and some fishes; circulates nutrients to the developing embryo -01465243 05 n 04 yolk_sac 2 vitelline_sac 0 umbilical_vesicle 0 vesicula_umbilicus 0 001 @ 05515670 n 0000 | membranous structure that functions as the circulatory system in mammalian embryos until the heart becomes functional -01465472 05 n 01 fang 0 001 @ 05282746 n 0000 | hollow or grooved tooth of a venomous snake; used to inject its poison -01465593 05 n 01 fang 1 001 @ 05307091 n 0000 | canine tooth of a carnivorous animal; used to seize and tear its prey -01465713 05 n 01 tusk 0 008 @ 05282746 n 0000 #p 01871265 n 0000 #p 02503517 n 0000 #p 02396427 n 0000 + 00198213 v 0101 + 01445027 v 0102 + 02439499 a 0101 %s 14757547 n 0000 | a long pointed tooth specialized for fighting or digging; especially in an elephant or walrus or hog -01465994 05 n 02 Chordata 0 phylum_Chordata 0 008 @ 08102555 n 0000 #m 01313093 n 0000 %m 01466257 n 0000 %m 01466828 n 0000 %m 01466996 n 0000 %m 01467180 n 0000 %m 01467986 n 0000 %m 01471070 n 0000 | comprises true vertebrates and animals having a notochord -01466257 05 n 01 chordate 0 006 @ 00015388 n 0000 #m 01465994 n 0000 + 02695966 a 0101 ~ 01467336 n 0000 ~ 01468238 n 0000 ~ 01471682 n 0000 | any animal of the phylum Chordata having a notochord or spinal column -01466472 05 n 01 notochord 0 002 @ 05588174 n 0000 ~ 01466701 n 0000 | a flexible rodlike structure that forms the supporting axis of the body in the lowest chordates and lowest vertebrates and in embryos of higher vertebrates -01466701 05 n 01 urochord 0 001 @ 01466472 n 0000 | a notochord of a larval tunicate typically confined to the caudal region -01466828 05 n 01 chordate_family 0 005 @ 08107499 n 0000 #m 01465994 n 0000 ~ 01467504 n 0000 ~ 01469425 n 0000 ~ 01469886 n 0000 | any family in the phylum Chordata -01466996 05 n 01 chordate_genus 0 006 @ 08108972 n 0000 #m 01465994 n 0000 ~ 01467675 n 0000 ~ 01469586 n 0000 ~ 01470018 n 0000 ~ 01470586 n 0000 | any genus in the phylum Chordata -01467180 05 n 02 Cephalochordata 0 subphylum_Cephalochordata 0 004 @ 08102555 n 0000 #m 01465994 n 0000 %m 01467336 n 0000 %m 01467504 n 0000 | lancelets -01467336 05 n 01 cephalochordate 0 003 @ 01466257 n 0000 #m 01467180 n 0000 ~ 01467804 n 0000 | fish-like animals having a notochord rather than a true spinal column -01467504 05 n 04 Amphioxidae 0 family_Amphioxidae 0 Branchiostomidae 0 family_Branchiostomidae 0 003 @ 01466828 n 0000 #m 01467180 n 0000 %m 01467675 n 0000 | lancelets -01467675 05 n 01 genus_Amphioxus 0 003 @ 01466996 n 0000 #m 01467504 n 0000 %m 01467804 n 0000 | type genus of the Amphioxidae -01467804 05 n 02 lancelet 0 amphioxus 0 002 @ 01467336 n 0000 #m 01467675 n 0000 | small translucent lancet-shaped burrowing marine animal; primitive forerunner of the vertebrates -01467986 05 n 06 Urochordata 0 subphylum_Urochordata 0 Urochorda 0 subphylum_Urochorda 0 Tunicata 0 subphylum_Tunicata 0 006 @ 08102555 n 0000 #m 01465994 n 0000 %m 01468238 n 0000 %m 01468532 n 0000 %m 01469222 n 0000 %m 01470287 n 0000 | tunicates -01468238 05 n 03 tunicate 0 urochordate 0 urochord 2 007 @ 01466257 n 0000 #m 01467986 n 0000 ~ 01468712 n 0000 ~ 01469723 n 0000 ~ 01470145 n 0000 ~ 01470479 n 0000 ~ 01470733 n 0000 | primitive marine animal having a saclike unsegmented body and a urochord that is conspicuous in the larva -01468532 05 n 02 Ascidiaceae 0 class_Ascidiaceae 0 004 @ 08103777 n 0000 #m 01467986 n 0000 %m 01468712 n 0000 %m 01470895 n 0000 | sometimes classified as an order: sea squirts -01468712 05 n 01 ascidian 0 003 @ 01468238 n 0000 #m 01468532 n 0000 ~ 01469103 n 0000 | minute sedentary marine invertebrate having a saclike body with siphons through which water enters and leaves -01468913 05 n 02 siphon 0 syphon 0 002 @ 05297523 n 0000 ;c 06083243 n 0000 | a tubular organ in an aquatic animal (especially in mollusks) through which water can be taken in or expelled -01469103 05 n 01 sea_squirt 0 001 @ 01468712 n 0000 | ascidian that can contract its body and eject streams of water -01469222 05 n 02 Thaliacea 0 class_Thaliacea 0 004 @ 08103777 n 0000 #m 01467986 n 0000 %m 01469425 n 0000 %m 01469886 n 0000 | small class of free-swimming tunicates; sometimes classified as an order -01469425 05 n 02 Salpidae 0 family_Salpidae 0 003 @ 01466828 n 0000 #m 01469222 n 0000 %m 01469586 n 0000 | a small family of tunicates in the class Thaliacea -01469586 05 n 01 genus_Salpa 0 003 @ 01466996 n 0000 #m 01469425 n 0000 %m 01469723 n 0000 | type (perhaps sole) genus of the Salpidae -01469723 05 n 02 salp 0 salpa 0 002 @ 01468238 n 0000 #m 01469586 n 0000 | minute floating marine tunicate having a transparent body with an opening at each end -01469886 05 n 02 Doliolidae 0 family_Doliolidae 0 003 @ 01466828 n 0000 #m 01469222 n 0000 %m 01470018 n 0000 | oceanic tunicates -01470018 05 n 01 genus_Doliolum 0 003 @ 01466996 n 0000 #m 01469886 n 0000 %m 01470145 n 0000 | type genus of the Doliolidae -01470145 05 n 01 doliolum 0 002 @ 01468238 n 0000 #m 01470018 n 0000 | free-swimming oceanic tunicate with a barrel-shaped transparent body -01470287 05 n 02 Larvacea 0 class_Larvacea 0 004 @ 08103777 n 0000 #m 01467986 n 0000 %m 01470479 n 0000 %m 01470586 n 0000 | small free-swimming tunicates; sometimes classified as an order -01470479 05 n 01 larvacean 0 002 @ 01468238 n 0000 #m 01470287 n 0000 | any member of the class Larvacea -01470586 05 n 01 genus_Appendicularia 0 003 @ 01466996 n 0000 #m 01470287 n 0000 %m 01470733 n 0000 | a genus of chordates in the class Larvacea -01470733 05 n 01 appendicularia 0 002 @ 01468238 n 0000 #m 01470586 n 0000 | free-swimming tadpole-shaped pelagic tunicate resembling larvae of other tunicates -01470895 05 n 01 ascidian_tadpole 0 002 @ 02311060 n 0000 #m 01468532 n 0000 | free-swimming larva of ascidians; they have a tail like a tadpole that contains the notochord -01471070 05 n 04 Vertebrata 0 subphylum_Vertebrata 0 Craniata 0 subphylum_Craniata 0 025 @ 08102555 n 0000 #m 01465994 n 0000 %m 01429349 n 0000 %m 01432517 n 0000 %m 01471682 n 0000 %m 01472303 n 0000 %m 01473990 n 0000 %m 01479643 n 0000 %m 01479937 n 0000 %m 01480336 n 0000 %m 01502262 n 0000 %m 01504437 n 0000 %m 01507175 n 0000 %m 01625747 n 0000 %m 01626134 n 0000 %m 01626600 n 0000 %m 01656813 n 0000 %m 01657723 n 0000 %m 01660719 n 0000 %m 01861465 n 0000 %m 01862557 n 0000 %m 01864707 n 0000 %m 02511824 n 0000 %m 02514198 n 0000 %m 02514575 n 0000 | fishes; amphibians; reptiles; birds; mammals -01471682 05 n 02 vertebrate 0 craniate 0 024 @ 01466257 n 0000 #m 01471070 n 0000 + 02510062 a 0101 ~ 01459791 n 0000 ~ 01472303 n 0000 ~ 01472502 n 0000 ~ 01473806 n 0000 ~ 01479820 n 0000 ~ 01503061 n 0000 ~ 01627424 n 0000 ~ 01661091 n 0000 ~ 01861778 n 0000 ~ 02156732 n 0000 %p 02157415 n 0000 %p 02157557 n 0000 %p 02158213 n 0000 %p 05279026 n 0000 -c 05279026 n 0000 -c 05399847 n 0000 -c 05515287 n 0000 %p 05552607 n 0000 %p 05563034 n 0000 %p 05566097 n 0000 -c 05586446 n 0000 | animals having a bony or cartilaginous skeleton with a segmented spinal column and a large brain enclosed in a skull or cranium -01472303 05 n 01 Amniota 0 004 @ 01471682 n 0000 #m 01471070 n 0000 ;c 01861778 n 0000 %m 01472502 n 0000 | higher vertebrates (reptiles, birds and mammals) possessing an amnion during development -01472502 05 n 01 amniote 0 004 @ 01471682 n 0000 #m 01472303 n 0000 %p 01472638 n 0000 %p 01472939 n 0000 | any member of the Amniota -01472638 05 n 03 amnion 0 amniotic_sac 0 amnios 0 007 @ 05515670 n 0000 #p 01472502 n 0000 #p 05310790 n 0000 ;c 01861778 n 0000 + 02618108 a 0101 + 02618108 a 0102 + 02618108 a 0103 | thin innermost membranous sac enclosing the developing embryo of higher vertebrates (reptiles, birds and mammals) -01472939 05 n 01 chorion 0 006 @ 05515670 n 0000 #p 01472502 n 0000 #p 05310790 n 0000 ;c 01861778 n 0000 + 02874700 a 0101 %p 01473188 n 0000 | the outermost membranous sac enclosing the embryo in higher vertebrates (reptiles, birds and mammals) -01473188 05 n 01 chorionic_villus 0 002 @ 01901492 n 0000 #p 01472939 n 0000 | one of the tiny villi that stick out of the fetal chorion and combine with the mother's uterine tissue to form the placenta -01473393 05 n 01 allantois 0 002 @ 05310790 n 0000 ;c 01861778 n 0000 | the vascular fetal membrane that lies below the chorion and develops from the hindgut in many embryonic higher vertebrates (reptiles, birds and mammals) -01473620 05 n 02 chorioallantois 0 chorioallantoic_membrane 0 001 @ 05426243 n 0000 | the very vascular fetal membrane composed of the fused chorion and adjacent wall of the allantois -01473806 05 n 01 aquatic_vertebrate 0 005 @ 01471682 n 0000 ~ 01474283 n 0000 ~ 01480106 n 0000 %p 02465084 n 0000 ~ 02512053 n 0000 | animal living wholly or chiefly in or on water -01473990 05 n 02 Agnatha 0 superclass_Agnatha 0 007 @ 08103777 n 0000 #m 01471070 n 0000 %m 01474283 n 0000 %m 01474641 n 0000 %m 01475794 n 0000 %m 01476135 n 0000 %m 01476829 n 0000 | superclass of eel-shaped chordates lacking jaws and pelvic fins: lampreys; hagfishes; some extinct forms -01474283 05 n 03 jawless_vertebrate 0 jawless_fish 0 agnathan 0 010 @ 01473806 n 0000 #m 01473990 n 0000 ~ 01474864 n 0000 ~ 01475232 n 0000 ~ 01475648 n 0000 ~ 01475940 n 0000 ~ 01476418 n 0000 ~ 01477080 n 0000 ~ 01477525 n 0000 ~ 01478511 n 0000 | eel-shaped vertebrate without jaws or paired appendages including the cyclostomes and some extinct forms -01474641 05 n 02 Ostracodermi 0 order_Ostracodermi 0 005 @ 01342529 n 0000 #m 01473990 n 0000 %m 01474864 n 0000 %m 01475025 n 0000 %m 01475421 n 0000 | extinct group of armored jawless vertebrates; taxonomy is not clear -01474864 05 n 01 ostracoderm 0 002 @ 01474283 n 0000 #m 01474641 n 0000 | extinct fish-like jawless vertebrate having a heavily armored body; of the Paleozoic -01475025 05 n 02 Heterostraci 0 suborder_Heterostraci 0 003 @ 01342529 n 0000 #m 01474641 n 0000 %m 01475232 n 0000 | extinct group of armored jawless fishes or fish-like vertebrate; taxonomy is not clear -01475232 05 n 01 heterostracan 0 002 @ 01474283 n 0000 #m 01475025 n 0000 | extinct jawless fish with the anterior part of the body covered with bony plates; of the Silurian and Devonian -01475421 05 n 04 Osteostraci 0 suborder_Osteostraci 0 Cephalaspida 0 suborder_Cephalaspida 0 003 @ 01342529 n 0000 #m 01474641 n 0000 %m 01475648 n 0000 | extinct group of armored fish-like vertebrates; taxonomy is not clear -01475648 05 n 02 osteostracan 0 cephalaspid 0 002 @ 01474283 n 0000 #m 01475421 n 0000 | extinct jawless fish of the Devonian with armored head -01475794 05 n 02 Anaspida 0 order_Anaspida 0 003 @ 01342529 n 0000 #m 01473990 n 0000 %m 01475940 n 0000 | extinct order of jawless vertebrates -01475940 05 n 01 anaspid 0 002 @ 01474283 n 0000 #m 01475794 n 0000 | extinct small freshwater jawless fish usually having a heterocercal tail and an armored head; of the Silurian and Devonian -01476135 05 n 04 Conodonta 0 order_Conodonta 0 Conodontophorida 0 order_Conodontophorida 0 003 @ 01342529 n 0000 #m 01473990 n 0000 %m 01476418 n 0000 | extinct order of primitive vertebrates; the precise taxonomy is not clear; in some classifications considered a separate phylum -01476418 05 n 01 conodont 1 002 @ 01474283 n 0000 #m 01476135 n 0000 | small (2 inches long) extinct eellike fish with a finned tail and a notochord and having cone-shaped teeth containing cellular bone; late Cambrian to late Triassic; possible predecessor of the cyclostomes -01476696 05 n 01 conodont 2 001 @ 05282746 n 0000 | the tiny fossil cone-shaped tooth of a primitive vertebrate of order Conodonta -01476829 05 n 02 Cyclostomata 0 order_Cyclostomata 0 007 @ 01342529 n 0000 #m 01473990 n 0000 %m 01477080 n 0000 %m 01477184 n 0000 %m 01477373 n 0000 %m 01478073 n 0000 %m 01478300 n 0000 | primitive jawless aquatic vertebrate: lampreys; hagfishes -01477080 05 n 01 cyclostome 0 002 @ 01474283 n 0000 #m 01476829 n 0000 | primitive aquatic vertebrate -01477184 05 n 04 Petromyzoniformes 0 suborder_Petromyzoniformes 0 Hyperoartia 0 suborder_Hyperoartia 0 002 @ 01342529 n 0000 #m 01476829 n 0000 | lampreys as distinguished from hagfishes -01477373 05 n 02 Petromyzontidae 0 family_Petromyzontidae 0 004 @ 01429349 n 0000 #m 01476829 n 0000 %m 01477525 n 0000 %m 01477745 n 0000 | lampreys -01477525 05 n 03 lamprey 0 lamprey_eel 0 lamper_eel 0 003 @ 01474283 n 0000 #m 01477373 n 0000 ~ 01477875 n 0000 | primitive eellike freshwater or anadromous cyclostome having round sucking mouth with a rasping tongue -01477745 05 n 02 Petromyzon 0 genus_Petromyzon 0 003 @ 01432517 n 0000 #m 01477373 n 0000 %m 01477875 n 0000 | typical lampreys -01477875 05 n 02 sea_lamprey 0 Petromyzon_marinus 0 002 @ 01477525 n 0000 #m 01477745 n 0000 | large anadromous lamprey sometimes used as food; destructive of native fish fauna in the Great Lakes -01478073 05 n 07 Myxiniformes 0 suborder_Myxiniformes 0 Hyperotreta 0 suborder_Hyperotreta 0 Myxinoidei 0 Myxinoidea 0 suborder_Myxinoidei 0 002 @ 01342529 n 0000 #m 01476829 n 0000 | hagfishes as distinguished from lampreys -01478300 05 n 02 Myxinidae 0 family_Myxinidae 0 006 @ 01429349 n 0000 #m 01476829 n 0000 %m 01478511 n 0000 %m 01478816 n 0000 %m 01479066 n 0000 %m 01479329 n 0000 | slime-producing marine animals: hagfishes -01478511 05 n 03 hagfish 0 hag 0 slime_eels 0 005 @ 01474283 n 0000 #m 01478300 n 0000 ~ 01478969 n 0000 ~ 01479213 n 0000 ~ 01479459 n 0000 | eellike cyclostome having a tongue with horny teeth in a round mouth surrounded by eight tentacles; feeds on dead or trapped fishes by boring into their bodies -01478816 05 n 02 Myxine 0 genus_Myxine 0 003 @ 01432517 n 0000 #m 01478300 n 0000 %m 01478969 n 0000 | type genus of the Myxinidae (typical hagfishes) -01478969 05 n 01 Myxine_glutinosa 0 002 @ 01478511 n 0000 #m 01478816 n 0000 | typical hagfish -01479066 05 n 01 genus_Eptatretus 0 003 @ 01432517 n 0000 #m 01478300 n 0000 %m 01479213 n 0000 | a genus of fossil fish of the family Myxinidae -01479213 05 n 01 eptatretus 0 002 @ 01478511 n 0000 #m 01479066 n 0000 | a fossil hagfish of the genus Eptatretus -01479329 05 n 02 Myxinikela 0 genus_Myxinikela 0 003 @ 01432517 n 0000 #m 01478300 n 0000 %m 01479459 n 0000 | fossil hagfishes -01479459 05 n 01 Myxinikela_siroka 0 002 @ 01478511 n 0000 #m 01479329 n 0000 | fossil hagfish of the Pennsylvanian period (c. 300 million years ago) that resembled modern hagfishes -01479643 05 n 02 Gnathostomata 0 superclass_Gnathostomata 0 003 @ 08103777 n 0000 #m 01471070 n 0000 %m 01479820 n 0000 | comprising all vertebrates with upper and lower jaws -01479820 05 n 01 gnathostome 0 002 @ 01471682 n 0000 #m 01479643 n 0000 | a vertebrate animal possessing true jaws -01479937 05 n 02 Placodermi 0 class_Placodermi 0 003 @ 08103777 n 0000 #m 01471070 n 0000 %m 01480106 n 0000 | extinct group of bony-plated fishes with primitive jaws -01480106 05 n 01 placoderm 0 002 @ 01473806 n 0000 #m 01479937 n 0000 | fish-like vertebrate with bony plates on head and upper body; dominant in seas and rivers during the Devonian; considered the earliest vertebrate with jaws -01480336 05 n 02 Chondrichthyes 0 class_Chondrichthyes 0 005 @ 08103777 n 0000 #m 01471070 n 0000 %m 01480516 n 0000 %m 01480715 n 0000 %m 01481599 n 0000 | cartilaginous fishes -01480516 05 n 02 cartilaginous_fish 0 chondrichthian 0 004 @ 02512053 n 0000 #m 01480336 n 0000 ~ 01480880 n 0000 ~ 01482071 n 0000 | fishes in which the skeleton may be calcified but not ossified -01480715 05 n 02 Holocephali 0 subclass_Holocephali 0 004 @ 08103777 n 0000 #m 01480336 n 0000 %m 01480880 n 0000 %m 01481063 n 0000 | chimaeras and extinct forms -01480880 05 n 02 holocephalan 0 holocephalian 0 003 @ 01480516 n 0000 #m 01480715 n 0000 ~ 01481331 n 0000 | fish with high compressed head and a body tapering off into a long tail -01481063 05 n 02 Chimaeridae 0 family_Chimaeridae 0 003 @ 01429349 n 0000 #m 01480715 n 0000 %m 01481203 n 0000 | a family of Holocephali -01481203 05 n 01 genus_Chimaera 0 003 @ 01432517 n 0000 #m 01481063 n 0000 %m 01481331 n 0000 | type genus of the Chimaeridae -01481331 05 n 01 chimaera 1 003 @ 01480880 n 0000 #m 01481203 n 0000 ~ 01481498 n 0000 | a deep-sea fish with a tapering body, smooth skin, and long threadlike tail -01481498 05 n 02 rabbitfish 0 Chimaera_monstrosa 0 001 @ 01481331 n 0000 | large European chimaera -01481599 05 n 04 Elasmobranchii 0 subclass_Elasmobranchii 0 Selachii 0 subclass_Selachii 0 018 @ 08103777 n 0000 #m 01480336 n 0000 %m 01482071 n 0000 %m 01482754 n 0000 %m 01483188 n 0000 %m 01485306 n 0000 %m 01485673 n 0000 %m 01486241 n 0000 %m 01487077 n 0000 %m 01487743 n 0000 %m 01488234 n 0000 %m 01488539 n 0000 %m 01491991 n 0000 %m 01493366 n 0000 %m 01494188 n 0000 %m 01495192 n 0000 %m 01496037 n 0000 %m 01496617 n 0000 | sharks; rays; dogfishes; skates -01482071 05 n 02 elasmobranch 0 selachian 0 004 @ 01480516 n 0000 #m 01481599 n 0000 ~ 01482330 n 0000 ~ 01495701 n 0000 | any of numerous fishes of the class Chondrichthyes characterized by a cartilaginous skeleton and placoid scales: sharks; rays; skates -01482330 05 n 01 shark 0 014 @ 01482071 n 0000 + 01143614 v 0101 ~ 01483021 n 0000 ~ 01483522 n 0000 ~ 01486010 n 0000 ~ 01486540 n 0000 ~ 01486838 n 0000 ~ 01487506 n 0000 ~ 01488038 n 0000 ~ 01488385 n 0000 ~ 01488918 n 0000 ~ 01491874 n 0000 ~ 01494475 n 0000 ~ 01495493 n 0000 | any of numerous elongate mostly marine carnivorous fishes with heterocercal caudal fins and tough skin covered with small toothlike scales -01482754 05 n 02 Hexanchidae 0 family_Hexanchidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01482887 n 0000 | primitive sharks -01482887 05 n 02 Hexanchus 0 genus_Hexanchus 0 003 @ 01432517 n 0000 #m 01482754 n 0000 %m 01483021 n 0000 | a genus of Hexanchidae -01483021 05 n 03 cow_shark 0 six-gilled_shark 0 Hexanchus_griseus 0 002 @ 01482330 n 0000 #m 01482887 n 0000 | large primitive shark widely distributed in warm seas -01483188 05 n 02 Lamnidae 0 family_Lamnidae 0 006 @ 01429349 n 0000 #m 01481599 n 0000 %m 01483522 n 0000 %m 01483707 n 0000 %m 01484717 n 0000 %m 01485073 n 0000 | oceanic sharks -01483370 05 n 02 Isuridae 0 family_Isuridae 0 002 @ 01429349 n 0000 %m 01483980 n 0000 | in some classifications another name for the family Lamnidae -01483522 05 n 01 mackerel_shark 0 006 @ 01482330 n 0000 #m 01483188 n 0000 ~ 01483830 n 0000 ~ 01484097 n 0000 ~ 01484850 n 0000 ~ 01485479 n 0000 | fierce pelagic and oceanic sharks -01483707 05 n 02 Lamna 0 genus_Lamna 0 003 @ 01432517 n 0000 #m 01483188 n 0000 %m 01483830 n 0000 | a genus of Lamnidae -01483830 05 n 02 porbeagle 0 Lamna_nasus 0 002 @ 01483522 n 0000 #m 01483707 n 0000 | voracious pointed-nose shark of northern Atlantic and Pacific -01483980 05 n 02 Isurus 0 genus_Isurus 0 003 @ 01432517 n 0000 #m 01483370 n 0000 %m 01484097 n 0000 | mako sharks -01484097 05 n 02 mako 0 mako_shark 0 005 @ 01483522 n 0000 #m 01483980 n 0000 ~ 01484285 n 0000 ~ 01484447 n 0000 ~ 01484562 n 0000 | powerful mackerel shark of the Atlantic and Pacific -01484285 05 n 02 shortfin_mako 0 Isurus_oxyrhincus 0 001 @ 01484097 n 0000 | very swift active bluish shark found worldwide in warm waters; important game fish -01484447 05 n 02 longfin_mako 0 Isurus_paucus 0 001 @ 01484097 n 0000 | similar to shortfin mako but darker blue -01484562 05 n 03 bonito_shark 0 blue_pointed 0 Isurus_glaucus 0 001 @ 01484097 n 0000 | common blue-grey shark of southwest Pacific; sport and food fish -01484717 05 n 02 Carcharodon 0 genus_Carcharodon 0 003 @ 01432517 n 0000 #m 01483188 n 0000 %m 01484850 n 0000 | man-eating sharks -01484850 05 n 05 great_white_shark 0 white_shark 0 man-eater 0 man-eating_shark 0 Carcharodon_carcharias 0 002 @ 01483522 n 0000 #m 01484717 n 0000 | large aggressive shark widespread in warm seas; known to attack humans -01485073 05 n 02 Cetorhinus 0 genus_Cetorhinus 0 003 @ 01432517 n 0000 #m 01483188 n 0000 %m 01485479 n 0000 | comprising only the basking sharks; in some classifications considered the type genus of a separate family Cetorhinidae -01485306 05 n 02 Cetorhinidae 0 family_Cetorhinidae 0 002 @ 01429349 n 0000 #m 01481599 n 0000 | in some older classifications considered the family of the basking sharks -01485479 05 n 02 basking_shark 0 Cetorhinus_maximus 0 002 @ 01483522 n 0000 #m 01485073 n 0000 | large harmless plankton-eating northern shark; often swims slowly or floats at the sea surface -01485673 05 n 02 Alopiidae 0 family_Alopiidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01485801 n 0000 | thresher sharks -01485801 05 n 02 Alopius 0 genus_Alopius 0 003 @ 01432517 n 0000 #m 01485673 n 0000 %m 01486010 n 0000 | type genus of the family Alopiidae; in some classifications considered a genus of the family Lamnidae -01486010 05 n 05 thresher 0 thrasher 1 thresher_shark 0 fox_shark 0 Alopius_vulpinus 0 002 @ 01482330 n 0000 #m 01485801 n 0000 | large pelagic shark of warm seas with a whiplike tail used to round up small fish on which to feed -01486241 05 n 02 Orectolobidae 0 family_Orectolobidae 0 004 @ 01429349 n 0000 #m 01481599 n 0000 %m 01486411 n 0000 %m 01486706 n 0000 | nurse sharks and carpet sharks -01486411 05 n 02 Orectolobus 0 genus_Orectolobus 0 003 @ 01432517 n 0000 #m 01486241 n 0000 %m 01486540 n 0000 | carpet sharks -01486540 05 n 02 carpet_shark 0 Orectolobus_barbatus 0 002 @ 01482330 n 0000 #m 01486411 n 0000 | shark of the western Pacific with flattened body and mottled skin -01486706 05 n 02 Ginglymostoma 0 genus_Ginglymostoma 0 003 @ 01432517 n 0000 #m 01486241 n 0000 %m 01486838 n 0000 | nurse sharks -01486838 05 n 02 nurse_shark 0 Ginglymostoma_cirratum 0 002 @ 01482330 n 0000 #m 01486706 n 0000 | small bottom-dwelling shark of warm shallow waters on both coasts of North America and South America and from southeast Asia to Australia -01487077 05 n 04 Carchariidae 0 family_Carchariidae 0 Odontaspididae 0 family_Odontaspididae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01487312 n 0000 | sand sharks; in some classifications coextensive with family Carcharhinidae -01487312 05 n 04 Carcharias 0 genus_Carcharias 0 Odontaspis 0 genus_Odontaspis 0 003 @ 01432517 n 0000 #m 01487077 n 0000 %m 01487506 n 0000 | type and sole genus of Carchariidae: sand sharks -01487506 05 n 04 sand_tiger 0 sand_shark 0 Carcharias_taurus 0 Odontaspis_taurus 0 002 @ 01482330 n 0000 #m 01487312 n 0000 | shallow-water shark with sharp jagged teeth found on both sides of Atlantic; sometimes dangerous to swimmers -01487743 05 n 02 Rhincodontidae 0 family_Rhincodontidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01487914 n 0000 | small-toothed sharks comprising only one species -01487914 05 n 02 Rhincodon 0 genus_Rhincodon 0 003 @ 01432517 n 0000 #m 01487743 n 0000 %m 01488038 n 0000 | whale sharks -01488038 05 n 02 whale_shark 0 Rhincodon_typus 0 002 @ 01482330 n 0000 #m 01487914 n 0000 | large spotted shark of warm surface waters worldwide; resembles a whale and feeds chiefly on plankton -01488234 05 n 02 Scyliorhinidae 0 family_Scyliorhinidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01488385 n 0000 | small bottom-dwelling sharks -01488385 05 n 01 cat_shark 0 002 @ 01482330 n 0000 #m 01488234 n 0000 | small bottom-dwelling sharks with cat-like eyes; found along continental slopes -01488539 05 n 02 Carcharhinidae 0 family_Carcharhinidae 0 008 @ 01429349 n 0000 #m 01481599 n 0000 %m 01488918 n 0000 %m 01489275 n 0000 %m 01490546 n 0000 %m 01490885 n 0000 %m 01491235 n 0000 %m 01491520 n 0000 | largest family of living sharks; found worldwide especially in tropical waters; dorsal fin lacks spines: requiem sharks including tiger sharks and soupfin sharks -01488918 05 n 01 requiem_shark 0 011 @ 01482330 n 0000 #m 01488539 n 0000 ~ 01489501 n 0000 ~ 01489709 n 0000 ~ 01489920 n 0000 ~ 01490112 n 0000 ~ 01490360 n 0000 ~ 01490670 n 0000 ~ 01491006 n 0000 ~ 01491361 n 0000 ~ 01491661 n 0000 | any of numerous sharks from small relatively harmless bottom-dwellers to large dangerous oceanic and coastal species -01489275 05 n 02 Carcharhinus 0 genus_Carcharhinus 0 007 @ 01432517 n 0000 #m 01488539 n 0000 %m 01489501 n 0000 %m 01489709 n 0000 %m 01489920 n 0000 %m 01490112 n 0000 %m 01490360 n 0000 | type genus of the Carcharhinidae -01489501 05 n 03 bull_shark 0 cub_shark 0 Carcharhinus_leucas 0 002 @ 01488918 n 0000 #m 01489275 n 0000 | a most common shark in temperate and tropical coastal waters worldwide; heavy-bodied and dangerous -01489709 05 n 02 sandbar_shark 1 Carcharhinus_plumbeus 0 002 @ 01488918 n 0000 #m 01489275 n 0000 | most common grey shark along coasts of middle Atlantic states; sluggish and occasionally caught by fishermen -01489920 05 n 03 blacktip_shark 0 sandbar_shark 2 Carcharhinus_limbatus 0 002 @ 01488918 n 0000 #m 01489275 n 0000 | widely distributed shallow-water shark with fins seemingly dipped in ink -01490112 05 n 04 whitetip_shark 1 oceanic_whitetip_shark 0 white-tipped_shark 0 Carcharinus_longimanus 0 002 @ 01488918 n 0000 #m 01489275 n 0000 | large deep-water shark with white-tipped dorsal fin; worldwide distribution; most dangerous shark -01490360 05 n 02 dusky_shark 0 Carcharhinus_obscurus 0 002 @ 01488918 n 0000 #m 01489275 n 0000 | relatively slender blue-grey shark; nearly worldwide in tropical and temperate waters -01490546 05 n 02 Negaprion 0 genus_Negaprion 0 003 @ 01432517 n 0000 #m 01488539 n 0000 %m 01490670 n 0000 | lemon sharks -01490670 05 n 02 lemon_shark 0 Negaprion_brevirostris 0 002 @ 01488918 n 0000 #m 01490546 n 0000 | common shallow-water schooling shark of the Atlantic from North Carolina to Brazil and off west Africa; dangerous -01490885 05 n 02 Prionace 0 genus_Prionace 0 003 @ 01432517 n 0000 #m 01488539 n 0000 %m 01491006 n 0000 | blue sharks -01491006 05 n 03 blue_shark 0 great_blue_shark 0 Prionace_glauca 0 002 @ 01488918 n 0000 #m 01490885 n 0000 | slender cosmopolitan, pelagic shark; blue body shades to white belly; dangerous especially during maritime disasters -01491235 05 n 02 Galeocerdo 0 genus_Galeocerdo 0 003 @ 01432517 n 0000 #m 01488539 n 0000 %m 01491361 n 0000 | tiger sharks -01491361 05 n 02 tiger_shark 0 Galeocerdo_cuvieri 0 002 @ 01488918 n 0000 #m 01491235 n 0000 | large dangerous warm-water shark with striped or spotted body -01491520 05 n 02 Galeorhinus 0 genus_Galeorhinus 0 003 @ 01432517 n 0000 #m 01488539 n 0000 %m 01491661 n 0000 | a genus of Carcharhinidae -01491661 05 n 04 soupfin_shark 0 soupfin 0 soup-fin 0 Galeorhinus_zyopterus 0 002 @ 01488918 n 0000 #m 01491520 n 0000 | Pacific shark valued for its fins (used by Chinese in soup) and liver (rich in vitamin A) -01491874 05 n 01 dogfish 0 003 @ 01482330 n 0000 ~ 01492357 n 0000 ~ 01493541 n 0000 | any of several small sharks -01491991 05 n 02 Triakidae 0 family_Triakidae 0 005 @ 01429349 n 0000 #m 01481599 n 0000 %m 01492212 n 0000 %m 01492357 n 0000 %m 01493012 n 0000 | small sharks with smooth skins and lacking spines on their dorsal fins -01492212 05 n 02 Mustelus 0 genus_Mustelus 0 004 @ 01432517 n 0000 #m 01491991 n 0000 %m 01492708 n 0000 %m 01492860 n 0000 | smooth dogfishes -01492357 05 n 01 smooth_dogfish 0 006 @ 01491874 n 0000 #m 01491991 n 0000 ~ 01492569 n 0000 ~ 01492708 n 0000 ~ 01492860 n 0000 ~ 01493146 n 0000 | small bottom-dwelling shark found along both Atlantic coasts -01492569 05 n 03 smoothhound 0 smoothhound_shark 0 Mustelus_mustelus 0 001 @ 01492357 n 0000 | smooth dogfish of European coastal waters -01492708 05 n 02 American_smooth_dogfish 0 Mustelus_canis 0 002 @ 01492357 n 0000 #m 01492212 n 0000 | found along the Atlantic coast of the Americas -01492860 05 n 02 Florida_smoothhound 0 Mustelus_norrisi 0 002 @ 01492357 n 0000 #m 01492212 n 0000 | found from the northern Gulf of Mexico to Brazil -01493012 05 n 02 Triaenodon 0 genus_Triaenodon 0 003 @ 01432517 n 0000 #m 01491991 n 0000 %m 01493146 n 0000 | a genus of Triakidae -01493146 05 n 03 whitetip_shark 2 reef_whitetip_shark 0 Triaenodon_obseus 0 002 @ 01492357 n 0000 #m 01493012 n 0000 | smooth dogfish of Pacific and Indian Oceans and Red Sea having white-tipped dorsal and caudal fins -01493366 05 n 02 Squalidae 0 family_Squalidae 0 004 @ 01429349 n 0000 #m 01481599 n 0000 %m 01493541 n 0000 %m 01493687 n 0000 | dogfishes having a spine in each dorsal fin -01493541 05 n 01 spiny_dogfish 0 004 @ 01491874 n 0000 #m 01493366 n 0000 ~ 01493829 n 0000 ~ 01494041 n 0000 | small bottom-dwelling dogfishes -01493687 05 n 02 Squalus 0 genus_Squalus 0 004 @ 01432517 n 0000 #m 01493366 n 0000 %m 01493829 n 0000 %m 01494041 n 0000 | spiny dogfishes -01493829 05 n 02 Atlantic_spiny_dogfish 0 Squalus_acanthias 0 002 @ 01493541 n 0000 #m 01493687 n 0000 | destructive dogfish of the Atlantic coastal waters of America and Europe; widely used in anatomy classes -01494041 05 n 02 Pacific_spiny_dogfish 0 Squalus_suckleyi 0 002 @ 01493541 n 0000 #m 01493687 n 0000 | dogfish of Pacific coast of North America -01494188 05 n 02 Sphyrnidae 0 family_Sphyrnidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01494339 n 0000 | hammerhead sharks; bonnethead sharks -01494339 05 n 02 Sphyrna 0 genus_Sphyrna 0 003 @ 01432517 n 0000 #m 01494188 n 0000 %m 01494475 n 0000 | type genus of the Sphyrnidae -01494475 05 n 02 hammerhead 0 hammerhead_shark 0 005 @ 01482330 n 0000 #m 01494339 n 0000 ~ 01494757 n 0000 ~ 01494882 n 0000 ~ 01495006 n 0000 | medium-sized live-bearing shark with eyes at either end of a flattened hammer-shaped head; worldwide in warm waters; can be dangerous -01494757 05 n 02 smooth_hammerhead 0 Sphyrna_zygaena 0 001 @ 01494475 n 0000 | fished for the hides and vitamin-rich liver -01494882 05 n 02 smalleye_hammerhead 0 Sphyrna_tudes 0 001 @ 01494475 n 0000 | fished for the hide and vitamin-rich liver -01495006 05 n 04 shovelhead 0 bonnethead 0 bonnet_shark 0 Sphyrna_tiburo 0 001 @ 01494475 n 0000 | small harmless hammerhead having a spade-shaped head; abundant in bays and estuaries -01495192 05 n 02 Squatinidae 0 family_Squatinidae 0 003 @ 01429349 n 0000 #m 01481599 n 0000 %m 01495340 n 0000 | bottom-dwelling ray-like sharks -01495340 05 n 02 Squatina 0 genus_Squatina 0 003 @ 01432517 n 0000 #m 01495192 n 0000 %m 01495493 n 0000 | type genus of the Squatinidae: angel sharks -01495493 05 n 04 angel_shark 0 angelfish 1 Squatina_squatina 0 monkfish 1 002 @ 01482330 n 0000 #m 01495340 n 0000 | sharks with broad flat bodies and winglike pectoral fins but that swim the way sharks do -01495701 05 n 01 ray 0 008 @ 01482071 n 0000 ~ 01496331 n 0000 ~ 01497118 n 0000 ~ 01497738 n 0000 ~ 01498041 n 0000 ~ 01498989 n 0000 ~ 01500091 n 0000 ~ 01501160 n 0000 | cartilaginous fishes having horizontally flattened bodies and enlarged winglike pectoral fins with gills on the underside; most swim by moving the pectoral fins -01496037 05 n 02 Torpediniformes 0 order_Torpediniformes 0 003 @ 01342529 n 0000 #m 01481599 n 0000 %m 01496199 n 0000 | rays with bodies shaped like torpedoes -01496199 05 n 02 Torpedinidae 0 family_Torpedinidae 0 003 @ 01429349 n 0000 #m 01496037 n 0000 %m 01496331 n 0000 | electric rays -01496331 05 n 04 electric_ray 0 crampfish 0 numbfish 0 torpedo 0 002 @ 01495701 n 0000 #m 01496199 n 0000 | any sluggish bottom-dwelling ray of the order Torpediniformes having a rounded body and electric organs on each side of the head capable of emitting strong electric discharges -01496617 05 n 04 Rajiformes 0 order_Rajiformes 0 Batoidei 0 order_Batoidei 0 008 @ 01342529 n 0000 #m 01481599 n 0000 %m 01496944 n 0000 %m 01497579 n 0000 %m 01497878 n 0000 %m 01498822 n 0000 %m 01499898 n 0000 %m 01500995 n 0000 | fish with dorsoventrally flattened bodies; includes: rays; skates; guitarfishes; sawfishes -01496944 05 n 02 Pristidae 0 family_Pristidae 0 004 @ 01429349 n 0000 #m 01496617 n 0000 %m 01497118 n 0000 %m 01497278 n 0000 | large primitive rays with elongated snouts -01497118 05 n 01 sawfish 0 003 @ 01495701 n 0000 #m 01496944 n 0000 ~ 01497413 n 0000 | primitive ray with sharp teeth on each edge of a long flattened snout -01497278 05 n 02 Pristis 0 genus_Pristis 0 003 @ 01432517 n 0000 #m 01496944 n 0000 %m 01497413 n 0000 | type genus of the Pristidae -01497413 05 n 02 smalltooth_sawfish 0 Pristis_pectinatus 0 002 @ 01497118 n 0000 #m 01497278 n 0000 | commonly found in tropical bays and estuaries; not aggressive -01497579 05 n 02 Rhinobatidae 0 family_Rhinobatidae 0 003 @ 01429349 n 0000 #m 01496617 n 0000 %m 01497738 n 0000 | primitive rays with guitar-shaped bodies -01497738 05 n 01 guitarfish 0 002 @ 01495701 n 0000 #m 01497579 n 0000 | primitive tropical bottom-dwelling ray with a guitar-shaped body -01497878 05 n 02 Dasyatidae 0 family_Dasyatidae 0 005 @ 01429349 n 0000 #m 01496617 n 0000 %m 01498041 n 0000 %m 01498268 n 0000 %m 01498577 n 0000 | sting rays -01498041 05 n 01 stingray 0 004 @ 01495701 n 0000 #m 01497878 n 0000 ~ 01498406 n 0000 ~ 01498699 n 0000 | large venomous ray with large barbed spines near the base of a thin whiplike tail capable of inflicting severe wounds -01498268 05 n 02 Dasyatis 0 genus_Dasyatis 0 003 @ 01432517 n 0000 #m 01497878 n 0000 %m 01498406 n 0000 | type genus of the Dasyatidae -01498406 05 n 02 roughtail_stingray 0 Dasyatis_centroura 0 002 @ 01498041 n 0000 #m 01498268 n 0000 | one of the largest stingrays; found from Cape Cod to Cape Hatteras -01498577 05 n 02 Gymnura 0 genus_Gymnura 0 003 @ 01432517 n 0000 #m 01497878 n 0000 %m 01498699 n 0000 | butterfly rays -01498699 05 n 01 butterfly_ray 0 002 @ 01498041 n 0000 #m 01498577 n 0000 | a stingray with a short tail and a broad fin -01498822 05 n 02 Myliobatidae 0 family_Myliobatidae 0 005 @ 01429349 n 0000 #m 01496617 n 0000 %m 01498989 n 0000 %m 01499261 n 0000 %m 01499595 n 0000 | eagle rays -01498989 05 n 01 eagle_ray 0 004 @ 01495701 n 0000 #m 01498822 n 0000 ~ 01499396 n 0000 ~ 01499732 n 0000 | powerful free-swimming tropical ray noted for `soaring' by flapping winglike fins; usually harmless but has venomous tissue near base of the tail as in stingrays -01499261 05 n 02 Aetobatus 0 genus_Aetobatus 0 003 @ 01432517 n 0000 #m 01498822 n 0000 %m 01499396 n 0000 | a genus of Myliobatidae -01499396 05 n 03 spotted_eagle_ray 0 spotted_ray 0 Aetobatus_narinari 0 002 @ 01498989 n 0000 #m 01499261 n 0000 | ray with back covered with white or yellow spots; widely distributed in warm seas -01499595 05 n 02 Rhinoptera 0 genus_Rhinoptera 0 003 @ 01432517 n 0000 #m 01498822 n 0000 %m 01499732 n 0000 | a genus of Myliobatidae -01499732 05 n 03 cownose_ray 0 cow-nosed_ray 0 Rhinoptera_bonasus 0 002 @ 01498989 n 0000 #m 01499595 n 0000 | large ray found along eastern coast of North America -01499898 05 n 02 Mobulidae 0 family_Mobulidae 0 005 @ 01429349 n 0000 #m 01496617 n 0000 %m 01500091 n 0000 %m 01500360 n 0000 %m 01500721 n 0000 | large rays lacking venomous spines: mantas -01500091 05 n 03 manta 0 manta_ray 0 devilfish 0 004 @ 01495701 n 0000 #m 01499898 n 0000 ~ 01500476 n 0000 ~ 01500854 n 0000 | extremely large pelagic tropical ray that feeds on plankton and small fishes; usually harmless but its size make it dangerous if harpooned -01500360 05 n 01 genus_Manta 0 003 @ 01432517 n 0000 #m 01499898 n 0000 %m 01500476 n 0000 | a genus of Mobulidae -01500476 05 n 02 Atlantic_manta 0 Manta_birostris 0 002 @ 01500091 n 0000 #m 01500360 n 0000 | largest manta (to 22 feet across wings); found worldwide but common in Gulf of Mexico and along southern coasts of United States; primarily oceanic -01500721 05 n 02 Mobula 0 genus_Mobula 0 003 @ 01432517 n 0000 #m 01499898 n 0000 %m 01500854 n 0000 | type genus of the Mobulidae -01500854 05 n 02 devil_ray 0 Mobula_hypostoma 0 002 @ 01500091 n 0000 #m 01500721 n 0000 | small manta (to 4 feet) that travels in schools -01500995 05 n 02 Rajidae 0 family_Rajidae 0 004 @ 01429349 n 0000 #m 01496617 n 0000 %m 01501160 n 0000 %m 01501450 n 0000 | bottom-dwelling tropical rays: skates -01501160 05 n 01 skate 0 006 @ 01495701 n 0000 #m 01500995 n 0000 ~ 01501641 n 0000 ~ 01501777 n 0000 ~ 01501948 n 0000 ~ 01502101 n 0000 | large edible rays having a long snout and thick tail with pectoral fins continuous with the head; swim by undulating the edges of the pectoral fins -01501450 05 n 02 Raja 0 genus_Raja 0 006 @ 01432517 n 0000 #m 01500995 n 0000 %m 01501641 n 0000 %m 01501777 n 0000 %m 01501948 n 0000 %m 01502101 n 0000 | type genus of the family Rajidae -01501641 05 n 03 grey_skate 0 gray_skate 0 Raja_batis 0 002 @ 01501160 n 0000 #m 01501450 n 0000 | common European skate used as food -01501777 05 n 02 little_skate 0 Raja_erinacea 0 002 @ 01501160 n 0000 #m 01501450 n 0000 | most plentiful skate in North American inshore waters in summer; to 21 inches -01501948 05 n 02 thorny_skate 0 Raja_radiata 0 002 @ 01501160 n 0000 #m 01501450 n 0000 | cold-water bottom fish with spines on the back; to 40 inches -01502101 05 n 02 barndoor_skate 0 Raja_laevis 0 002 @ 01501160 n 0000 #m 01501450 n 0000 | one of the largest skates (to 5 feet); an active skate easy to hook -01502262 05 n 02 Aves 0 class_Aves 0 038 @ 08103777 n 0000 #m 01471070 n 0000 ;c 06073494 n 0000 %m 01503061 n 0000 %m 01515398 n 0000 %m 01515811 n 0000 %m 01518170 n 0000 %m 01518347 n 0000 %m 01519046 n 0000 %m 01520058 n 0000 %m 01520789 n 0000 %m 01521980 n 0000 %m 01522594 n 0000 %m 01523656 n 0000 %m 01523908 n 0000 %m 01604123 n 0000 %m 01604625 n 0000 %m 01613615 n 0000 %m 01620967 n 0000 %m 01789064 n 0000 %m 01810466 n 0000 %m 01816635 n 0000 %m 01822423 n 0000 %m 01825417 n 0000 %m 01825758 n 0000 %m 01831519 n 0000 %m 01834702 n 0000 %m 01837746 n 0000 %m 01843805 n 0000 %m 01845272 n 0000 %m 02001428 n 0000 %m 02012306 n 0000 %m 02021438 n 0000 %m 02048514 n 0000 %m 02049299 n 0000 %m 02051213 n 0000 %m 02055280 n 0000 %m 02057478 n 0000 | (ornithology) the class of birds -01503061 05 n 01 bird 0 043 @ 01471682 n 0000 #m 01502262 n 0000 #m 07990956 n 0000 + 01139865 v 0101 -c 02694784 a 0101 ~ 01503976 n 0000 ~ 01514668 n 0000 ~ 01514859 n 0000 ~ 01514926 n 0000 ~ 01515078 n 0000 ~ 01515303 n 0000 ~ 01515583 n 0000 ~ 01516212 n 0000 ~ 01516609 n 0000 ~ 01517036 n 0000 ~ 01517389 n 0000 ~ 01517565 n 0000 ~ 01517966 n 0000 ~ 01524359 n 0000 ~ 01524761 n 0000 ~ 01604330 n 0000 %p 01758308 n 0000 ~ 01789386 n 0000 ~ 01816887 n 0000 ~ 01822602 n 0000 ~ 01825930 n 0000 ~ 01831712 n 0000 ~ 01834918 n 0000 ~ 01838038 n 0000 ~ 01844231 n 0000 ~ 01844917 n 0000 %p 01895355 n 0000 %p 01896031 n 0000 %p 02151625 n 0000 %p 02152446 n 0000 %p 02154416 n 0000 %p 02158354 n 0000 %p 02463611 n 0000 %p 02467746 n 0000 %p 02468017 n 0000 %p 02511633 n 0000 ~ 02511730 n 0000 %p 07644382 n 0000 | warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings -01503976 05 n 04 dickeybird 0 dickey-bird 0 dickybird 0 dicky-bird 0 002 @ 01503061 n 0000 ;u 07075172 n 0000 | small bird; adults talking to children sometimes use these words to refer to small birds -01504179 05 n 02 fledgling 0 fledgeling 0 003 @ 01613615 n 0000 + 01096123 a 0202 + 01096123 a 0101 | young bird that has just fledged or become capable of flying -01504344 05 n 02 nestling 0 baby_bird 0 001 @ 01613615 n 0000 | young bird not yet fledged -01504437 05 n 01 bird_family 0 144 @ 08107499 n 0000 #m 01471070 n 0000 ~ 01518564 n 0000 ~ 01519228 n 0000 ~ 01520284 n 0000 ~ 01521014 n 0000 ~ 01522147 n 0000 ~ 01522789 n 0000 ~ 01526635 n 0000 ~ 01526925 n 0000 ~ 01527480 n 0000 ~ 01528087 n 0000 ~ 01529036 n 0000 ~ 01530691 n 0000 ~ 01536916 n 0000 ~ 01538775 n 0000 ~ 01539377 n 0000 ~ 01542567 n 0000 ~ 01544544 n 0000 ~ 01545303 n 0000 ~ 01545752 n 0000 ~ 01546348 n 0000 ~ 01547459 n 0000 ~ 01550429 n 0000 ~ 01551430 n 0000 ~ 01552523 n 0000 ~ 01552956 n 0000 ~ 01554139 n 0000 ~ 01554708 n 0000 ~ 01555586 n 0000 ~ 01556671 n 0000 ~ 01557028 n 0000 ~ 01562584 n 0000 ~ 01562978 n 0000 ~ 01566386 n 0000 ~ 01566888 n 0000 ~ 01570969 n 0000 ~ 01571578 n 0000 ~ 01575577 n 0000 ~ 01576506 n 0000 ~ 01578341 n 0000 ~ 01579868 n 0000 ~ 01582625 n 0000 ~ 01584004 n 0000 ~ 01586541 n 0000 ~ 01588172 n 0000 ~ 01589125 n 0000 ~ 01590443 n 0000 ~ 01591490 n 0000 ~ 01593705 n 0000 ~ 01594157 n 0000 ~ 01596761 n 0000 ~ 01597194 n 0000 ~ 01598432 n 0000 ~ 01599919 n 0000 ~ 01600480 n 0000 ~ 01601550 n 0000 ~ 01602353 n 0000 ~ 01603316 n 0000 ~ 01605119 n 0000 ~ 01610758 n 0000 ~ 01615825 n 0000 ~ 01618220 n 0000 ~ 01618671 n 0000 ~ 01621714 n 0000 ~ 01625275 n 0000 ~ 01793818 n 0000 ~ 01794813 n 0000 ~ 01799086 n 0000 ~ 01800759 n 0000 ~ 01802309 n 0000 ~ 01807265 n 0000 ~ 01808785 n 0000 ~ 01809446 n 0000 ~ 01810132 n 0000 ~ 01810946 n 0000 ~ 01811682 n 0000 ~ 01815431 n 0000 ~ 01817424 n 0000 ~ 01820190 n 0000 ~ 01822773 n 0000 ~ 01825009 n 0000 ~ 01826223 n 0000 ~ 01826998 n 0000 ~ 01828714 n 0000 ~ 01829143 n 0000 ~ 01829602 n 0000 ~ 01830183 n 0000 ~ 01830623 n 0000 ~ 01831078 n 0000 ~ 01831930 n 0000 ~ 01833283 n 0000 ~ 01833619 n 0000 ~ 01835087 n 0000 ~ 01836809 n 0000 ~ 01837230 n 0000 ~ 01838326 n 0000 ~ 01842111 n 0000 ~ 01842380 n 0000 ~ 01842655 n 0000 ~ 01842942 n 0000 ~ 01843238 n 0000 ~ 01843932 n 0000 ~ 01845627 n 0000 ~ 01854047 n 0000 ~ 01858023 n 0000 ~ 01860337 n 0000 ~ 02001821 n 0000 ~ 02005102 n 0000 ~ 02005598 n 0000 ~ 02006510 n 0000 ~ 02007422 n 0000 ~ 02007721 n 0000 ~ 02012715 n 0000 ~ 02013889 n 0000 ~ 02014646 n 0000 ~ 02018638 n 0000 ~ 02019566 n 0000 ~ 02020777 n 0000 ~ 02023133 n 0000 ~ 02025530 n 0000 ~ 02036399 n 0000 ~ 02036864 n 0000 ~ 02037278 n 0000 ~ 02038617 n 0000 ~ 02039942 n 0000 ~ 02040872 n 0000 ~ 02042923 n 0000 ~ 02043497 n 0000 ~ 02043999 n 0000 ~ 02045024 n 0000 ~ 02048832 n 0000 ~ 02049672 n 0000 ~ 02051701 n 0000 ~ 02052511 n 0000 ~ 02052936 n 0000 ~ 02053720 n 0000 ~ 02054251 n 0000 ~ 02054834 n 0000 ~ 02055431 n 0000 ~ 02058074 n 0000 ~ 02058933 n 0000 ~ 02060719 n 0000 ~ 02061716 n 0000 | a family of warm-blooded egg-laying vertebrates characterized by feathers and forelimbs modified as wings -01507175 05 n 01 bird_genus 0 400 @ 08108972 n 0000 #m 01471070 n 0000 ~ 01515398 n 0000 ~ 01516064 n 0000 ~ 01516487 n 0000 ~ 01516878 n 0000 ~ 01517265 n 0000 ~ 01518718 n 0000 ~ 01519401 n 0000 ~ 01519719 n 0000 ~ 01520442 n 0000 ~ 01521197 n 0000 ~ 01521602 n 0000 ~ 01522305 n 0000 ~ 01522952 n 0000 ~ 01523379 n 0000 ~ 01527055 n 0000 ~ 01527774 n 0000 ~ 01528244 n 0000 ~ 01528542 n 0000 ~ 01530256 n 0000 ~ 01530846 n 0000 ~ 01532107 n 0000 ~ 01532664 n 0000 ~ 01533169 n 0000 ~ 01533780 n 0000 ~ 01534034 n 0000 ~ 01534321 n 0000 ~ 01535005 n 0000 ~ 01535310 n 0000 ~ 01535842 n 0000 ~ 01536474 n 0000 ~ 01537360 n 0000 ~ 01537710 n 0000 ~ 01538498 n 0000 ~ 01539136 n 0000 ~ 01539772 n 0000 ~ 01540432 n 0000 ~ 01540697 n 0000 ~ 01540969 n 0000 ~ 01541261 n 0000 ~ 01541618 n 0000 ~ 01542055 n 0000 ~ 01542316 n 0000 ~ 01543059 n 0000 ~ 01543272 n 0000 ~ 01543508 n 0000 ~ 01543817 n 0000 ~ 01544067 n 0000 ~ 01544877 n 0000 ~ 01545425 n 0000 ~ 01545889 n 0000 ~ 01548143 n 0000 ~ 01549314 n 0000 ~ 01549769 n 0000 ~ 01550033 n 0000 ~ 01550625 n 0000 ~ 01550953 n 0000 ~ 01551549 n 0000 ~ 01551915 n 0000 ~ 01552192 n 0000 ~ 01552654 n 0000 ~ 01553380 n 0000 ~ 01553620 n 0000 ~ 01553879 n 0000 ~ 01554311 n 0000 ~ 01554825 n 0000 ~ 01555172 n 0000 ~ 01556040 n 0000 ~ 01556368 n 0000 ~ 01557697 n 0000 ~ 01559294 n 0000 ~ 01559964 n 0000 ~ 01560511 n 0000 ~ 01561059 n 0000 ~ 01561318 n 0000 ~ 01561613 n 0000 ~ 01561884 n 0000 ~ 01562116 n 0000 ~ 01563313 n 0000 ~ 01563579 n 0000 ~ 01564630 n 0000 ~ 01565238 n 0000 ~ 01565480 n 0000 ~ 01565804 n 0000 ~ 01566082 n 0000 ~ 01566509 n 0000 ~ 01567530 n 0000 ~ 01568019 n 0000 ~ 01568493 n 0000 ~ 01569713 n 0000 ~ 01570112 n 0000 ~ 01570549 n 0000 ~ 01571297 n 0000 ~ 01572174 n 0000 ~ 01572910 n 0000 ~ 01573483 n 0000 ~ 01573775 n 0000 ~ 01574270 n 0000 ~ 01574671 n 0000 ~ 01574997 n 0000 ~ 01575270 n 0000 ~ 01575941 n 0000 ~ 01576212 n 0000 ~ 01576863 n 0000 ~ 01577265 n 0000 ~ 01577818 n 0000 ~ 01578086 n 0000 ~ 01578821 n 0000 ~ 01580225 n 0000 ~ 01580644 n 0000 ~ 01581041 n 0000 ~ 01581607 n 0000 ~ 01582111 n 0000 ~ 01583043 n 0000 ~ 01583373 n 0000 ~ 01583636 n 0000 ~ 01584529 n 0000 ~ 01584994 n 0000 ~ 01585577 n 0000 ~ 01585890 n 0000 ~ 01586170 n 0000 ~ 01586791 n 0000 ~ 01587148 n 0000 ~ 01587406 n 0000 ~ 01587713 n 0000 ~ 01588589 n 0000 ~ 01588858 n 0000 ~ 01589582 n 0000 ~ 01590042 n 0000 ~ 01590837 n 0000 ~ 01591910 n 0000 ~ 01592892 n 0000 ~ 01593156 n 0000 ~ 01593423 n 0000 ~ 01593857 n 0000 ~ 01594611 n 0000 ~ 01595330 n 0000 ~ 01595841 n 0000 ~ 01596142 n 0000 ~ 01596479 n 0000 ~ 01596887 n 0000 ~ 01597551 n 0000 ~ 01598820 n 0000 ~ 01600197 n 0000 ~ 01600909 n 0000 ~ 01601268 n 0000 ~ 01601919 n 0000 ~ 01602506 n 0000 ~ 01603478 n 0000 ~ 01606335 n 0000 ~ 01607103 n 0000 ~ 01608086 n 0000 ~ 01608685 n 0000 ~ 01608934 n 0000 ~ 01609236 n 0000 ~ 01609549 n 0000 ~ 01610426 n 0000 ~ 01611252 n 0000 ~ 01612803 n 0000 ~ 01613909 n 0000 ~ 01614195 n 0000 ~ 01614769 n 0000 ~ 01615949 n 0000 ~ 01616970 n 0000 ~ 01617289 n 0000 ~ 01617633 n 0000 ~ 01617949 n 0000 ~ 01618356 n 0000 ~ 01619152 n 0000 ~ 01619675 n 0000 ~ 01620003 n 0000 ~ 01620282 n 0000 ~ 01620575 n 0000 ~ 01621994 n 0000 ~ 01622230 n 0000 ~ 01622596 n 0000 ~ 01623284 n 0000 ~ 01624406 n 0000 ~ 01624707 n 0000 ~ 01624987 n 0000 ~ 01625417 n 0000 ~ 01790943 n 0000 ~ 01793988 n 0000 ~ 01794460 n 0000 ~ 01795425 n 0000 ~ 01796222 n 0000 ~ 01796870 n 0000 ~ 01797180 n 0000 ~ 01797472 n 0000 ~ 01797767 n 0000 ~ 01798052 n 0000 ~ 01798352 n 0000 ~ 01799540 n 0000 ~ 01799876 n 0000 ~ 01800042 n 0000 ~ 01800286 n 0000 ~ 01800963 n 0000 ~ 01801371 n 0000 ~ 01801753 n 0000 ~ 01802033 n 0000 ~ 01802895 n 0000 ~ 01803548 n 0000 ~ 01803764 n 0000 ~ 01804029 n 0000 ~ 01804340 n 0000 ~ 01804796 n 0000 ~ 01805199 n 0000 ~ 01805446 n 0000 ~ 01805692 n 0000 ~ 01806740 n 0000 ~ 01806984 n 0000 ~ 01807701 n 0000 ~ 01807988 n 0000 ~ 01808447 n 0000 ~ 01808989 n 0000 ~ 01809592 n 0000 ~ 01811104 n 0000 ~ 01811394 n 0000 ~ 01812471 n 0000 ~ 01813256 n 0000 ~ 01813811 n 0000 ~ 01814091 n 0000 ~ 01815135 n 0000 ~ 01815855 n 0000 ~ 01816336 n 0000 ~ 01817772 n 0000 ~ 01818169 n 0000 ~ 01818409 n 0000 ~ 01818704 n 0000 ~ 01818959 n 0000 ~ 01819600 n 0000 ~ 01819918 n 0000 ~ 01820664 n 0000 ~ 01820937 n 0000 ~ 01821418 n 0000 ~ 01821727 n 0000 ~ 01822164 n 0000 ~ 01823279 n 0000 ~ 01823610 n 0000 ~ 01823912 n 0000 ~ 01824227 n 0000 ~ 01824443 n 0000 ~ 01825155 n 0000 ~ 01826542 n 0000 ~ 01827658 n 0000 ~ 01827948 n 0000 ~ 01828267 n 0000 ~ 01828397 n 0000 ~ 01828856 n 0000 ~ 01829288 n 0000 ~ 01829739 n 0000 ~ 01830316 n 0000 ~ 01830799 n 0000 ~ 01831231 n 0000 ~ 01832381 n 0000 ~ 01832684 n 0000 ~ 01832979 n 0000 ~ 01834039 n 0000 ~ 01834284 n 0000 ~ 01834412 n 0000 ~ 01835584 n 0000 ~ 01836246 n 0000 ~ 01836527 n 0000 ~ 01836953 n 0000 ~ 01837363 n 0000 ~ 01838961 n 0000 ~ 01839221 n 0000 ~ 01839470 n 0000 ~ 01840278 n 0000 ~ 01840643 n 0000 ~ 01840968 n 0000 ~ 01841569 n 0000 ~ 01841815 n 0000 ~ 01843576 n 0000 ~ 01844125 n 0000 ~ 01844414 n 0000 ~ 01847565 n 0000 ~ 01849348 n 0000 ~ 01849747 n 0000 ~ 01850035 n 0000 ~ 01850676 n 0000 ~ 01851996 n 0000 ~ 01852544 n 0000 ~ 01853072 n 0000 ~ 01853379 n 0000 ~ 01853763 n 0000 ~ 01854223 n 0000 ~ 01855343 n 0000 ~ 01856225 n 0000 ~ 01856748 n 0000 ~ 01857171 n 0000 ~ 01858162 n 0000 ~ 01858989 n 0000 ~ 01860713 n 0000 ~ 01861025 n 0000 ~ 02002384 n 0000 ~ 02002875 n 0000 ~ 02003456 n 0000 ~ 02003735 n 0000 ~ 02003994 n 0000 ~ 02004343 n 0000 ~ 02004661 n 0000 ~ 02005238 n 0000 ~ 02005962 n 0000 ~ 02006211 n 0000 ~ 02006827 n 0000 ~ 02007161 n 0000 ~ 02008316 n 0000 ~ 02009015 n 0000 ~ 02009620 n 0000 ~ 02010144 n 0000 ~ 02010592 n 0000 ~ 02010881 n 0000 ~ 02011156 n 0000 ~ 02011668 n 0000 ~ 02012063 n 0000 ~ 02013034 n 0000 ~ 02013362 n 0000 ~ 02014061 n 0000 ~ 02014406 n 0000 ~ 02015221 n 0000 ~ 02015685 n 0000 ~ 02015944 n 0000 ~ 02016198 n 0000 ~ 02017093 n 0000 ~ 02017335 n 0000 ~ 02017607 n 0000 ~ 02017878 n 0000 ~ 02019044 n 0000 ~ 02019308 n 0000 ~ 02019762 n 0000 ~ 02020450 n 0000 ~ 02020902 n 0000 ~ 02023664 n 0000 ~ 02024353 n 0000 ~ 02024636 n 0000 ~ 02024923 n 0000 ~ 02026498 n 0000 ~ 02026798 n 0000 ~ 02027209 n 0000 ~ 02027730 n 0000 ~ 02028556 n 0000 ~ 02029243 n 0000 ~ 02029571 n 0000 ~ 02029914 n 0000 ~ 02030442 n 0000 ~ 02030709 n 0000 ~ 02031143 n 0000 ~ 02031455 n 0000 ~ 02031752 n 0000 ~ 02032646 n 0000 ~ 02032915 n 0000 ~ 02033444 n 0000 ~ 02034016 n 0000 ~ 02034394 n 0000 ~ 02035845 n 0000 ~ 02036548 n 0000 ~ 02036982 n 0000 ~ 02037713 n 0000 ~ 02038010 n 0000 ~ 02038329 n 0000 ~ 02038837 n 0000 ~ 02039377 n 0000 ~ 02039660 n 0000 ~ 02040113 n 0000 ~ 02041492 n 0000 ~ 02042342 n 0000 ~ 02042637 n 0000 ~ 02043207 n 0000 ~ 02043659 n 0000 ~ 02044358 n 0000 ~ 02044659 n 0000 ~ 02045705 n 0000 ~ 02046045 n 0000 ~ 02046321 n 0000 ~ 02046613 n 0000 ~ 02047152 n 0000 ~ 02047835 n 0000 ~ 02048242 n 0000 ~ 02048952 n 0000 ~ 02049855 n 0000 ~ 02050921 n 0000 ~ 02052044 n 0000 ~ 02052639 n 0000 ~ 02053279 n 0000 ~ 02053859 n 0000 ~ 02054376 n 0000 ~ 02054966 n 0000 ~ 02056091 n 0000 ~ 02056421 n 0000 ~ 02056873 n 0000 ~ 02057208 n 0000 ~ 02058453 n 0000 ~ 02059393 n 0000 ~ 02059723 n 0000 ~ 02060016 n 0000 ~ 02060290 n 0000 ~ 02061073 n 0000 ~ 02061425 n 0000 | a genus of birds -01514431 05 n 01 breast 0 001 @ 05225090 n 0000 | the part of an animal's body that corresponds to a person's chest -01514549 05 n 01 throat 0 001 @ 05225090 n 0000 | the part of an animal's body that corresponds to a person's throat -01514668 05 n 01 cock 0 002 @ 01503061 n 0000 ~ 01514752 n 0000 | adult male bird -01514752 05 n 02 gamecock 0 fighting_cock 0 001 @ 01514668 n 0000 | a cock bred and trained for fighting -01514859 05 n 01 hen 2 001 @ 01503061 n 0000 | adult female bird -01514926 05 n 01 nester 0 004 @ 01503061 n 0000 + 02654947 v 0101 + 01383393 v 0101 + 01529766 v 0101 | a bird that has built (or is building) a nest -01515078 05 n 01 night_bird 0 002 @ 01503061 n 0000 ~ 01515217 n 0000 | any bird associated with night: owl; nightingale; nighthawk; etc -01515217 05 n 01 night_raven 1 001 @ 01515078 n 0000 | any bird that cries at night -01515303 05 n 01 bird_of_passage 0 001 @ 01503061 n 0000 | any bird that migrates seasonally -01515398 05 n 01 genus_Protoavis 0 003 @ 01507175 n 0000 #m 01502262 n 0000 %m 01515583 n 0000 | extinct primitive birds of the Triassic period; 70 million years before archaeopteryx -01515583 05 n 01 protoavis 0 002 @ 01503061 n 0000 #m 01515398 n 0000 | most primitive avian type known; extinct bird of the Triassic having bird-like jaw and hollow limbs and breastbone with dinosaur-like tail and hind limbs -01515811 05 n 02 Archaeornithes 0 subclass_Archaeornithes 0 006 @ 08103777 n 0000 #m 01502262 n 0000 %m 01516064 n 0000 %m 01516487 n 0000 %m 01516878 n 0000 %m 01517265 n 0000 | primitive reptile-like fossil birds of the Jurassic or early Cretaceous -01516064 05 n 02 genus_Archaeopteryx 0 genus_Archeopteryx 0 003 @ 01507175 n 0000 #m 01515811 n 0000 %m 01516212 n 0000 | a genus of fossil birds -01516212 05 n 03 archaeopteryx 0 archeopteryx 0 Archaeopteryx_lithographica 0 002 @ 01503061 n 0000 #m 01516064 n 0000 | extinct primitive toothed bird of the Jurassic period having a long feathered tail and hollow bones; usually considered the most primitive of all birds -01516487 05 n 01 genus_Sinornis 0 003 @ 01507175 n 0000 #m 01515811 n 0000 %m 01516609 n 0000 | a genus of fossil birds -01516609 05 n 01 Sinornis 0 002 @ 01503061 n 0000 #m 01516487 n 0000 | sparrow-sized fossil bird of the Jurassic period to the Cretaceous period having a keeled breastbone and vestigial tail; found in China; considered possibly the second most primitive of all birds -01516878 05 n 01 genus_Ibero-mesornis 0 003 @ 01507175 n 0000 #m 01515811 n 0000 %m 01517036 n 0000 | a genus of fossil bird of the subclass Archaeornithes -01517036 05 n 01 Ibero-mesornis 0 002 @ 01503061 n 0000 #m 01516878 n 0000 | sparrow-sized fossil bird of the Cretaceous period having a vestigial tail; found in Spain; considered possibly the third most primitive of all birds -01517265 05 n 01 genus_Archaeornis 0 003 @ 01507175 n 0000 #m 01515811 n 0000 %m 01517389 n 0000 | a genus of fossil bird -01517389 05 n 01 archaeornis 0 002 @ 01503061 n 0000 #m 01517265 n 0000 | extinct primitive toothed bird with a long feathered tail and three free clawed digits on each wing -01517565 05 n 03 ratite 0 ratite_bird 0 flightless_bird 1 010 @ 01503061 n 0000 ! 01517966 n 0101 ~ 01518878 n 0000 ~ 01519563 n 0000 ~ 01519873 n 0000 ~ 01520576 n 0000 ~ 01521399 n 0000 ~ 01521756 n 0000 ~ 01522450 n 0000 ~ 01523105 n 0000 | flightless birds having flat breastbones lacking a keel for attachment of flight muscles: ostriches; cassowaries; emus; moas; rheas; kiwis; elephant birds -01517966 05 n 03 carinate 0 carinate_bird 0 flying_bird 0 004 @ 01503061 n 0000 + 03153361 a 0102 ! 01517565 n 0101 %p 05228374 n 0000 | birds having keeled breastbones for attachment of flight muscles -01518170 05 n 02 Ratitae 0 superorder_Ratitae 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01809977 n 0000 | used in former classifications to include all ratite bird orders -01518347 05 n 02 Struthioniformes 0 order_Struthioniformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01518564 n 0000 | a ratite bird order: ostriches and related extinct birds; known from the Pleistocene onward -01518564 05 n 02 Struthionidae 0 family_Struthionidae 0 003 @ 01504437 n 0000 #m 01518347 n 0000 %m 01518718 n 0000 | tall terrestrial birds: ostriches -01518718 05 n 02 Struthio 0 genus_Struthio 0 003 @ 01507175 n 0000 #m 01518564 n 0000 %m 01518878 n 0000 | type genus of the Struthionidae: African ostriches -01518878 05 n 02 ostrich 0 Struthio_camelus 0 002 @ 01517565 n 0000 #m 01518718 n 0000 | fast-running African flightless bird with two-toed feet; largest living bird -01519046 05 n 02 Casuariiformes 0 order_Casuariiformes 0 004 @ 01342529 n 0000 #m 01502262 n 0000 %m 01519228 n 0000 %m 01519719 n 0000 | a ratite bird order: cassowaries and emus -01519228 05 n 02 Casuaridae 0 family_Casuaridae 0 003 @ 01504437 n 0000 #m 01519046 n 0000 %m 01519401 n 0000 | a family of large ostrich-like birds including cassowaries -01519401 05 n 02 Casuarius 0 genus_Casuarius 0 003 @ 01507175 n 0000 #m 01519228 n 0000 %m 01519563 n 0000 | type and sole genus of the Casuaridae: cassowaries -01519563 05 n 01 cassowary 0 002 @ 01517565 n 0000 #m 01519401 n 0000 | large black flightless bird of Australia and New Guinea having a horny head crest -01519719 05 n 02 Dromaius 0 genus_Dromaius 0 003 @ 01507175 n 0000 #m 01519046 n 0000 %m 01519873 n 0000 | a genus of birds in the order Casuariiformes -01519873 05 n 03 emu 0 Dromaius_novaehollandiae 0 Emu_novaehollandiae 0 002 @ 01517565 n 0000 #m 01519719 n 0000 | large Australian flightless bird similar to the ostrich but smaller -01520058 05 n 02 Apterygiformes 0 order_Apterygiformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01520284 n 0000 | a ratite bird order: flightless ground birds having vestigial wings and long bills and small eyes: kiwis -01520284 05 n 02 Apterygidae 0 family_Apterygidae 0 003 @ 01504437 n 0000 #m 01520058 n 0000 %m 01520442 n 0000 | coextensive with the order Apterygiformes -01520442 05 n 01 genus_Apteryx 0 003 @ 01507175 n 0000 #m 01520284 n 0000 %m 01520576 n 0000 | type genus of the Apterygidae: kiwis -01520576 05 n 02 kiwi 0 apteryx 0 002 @ 01517565 n 0000 #m 01520442 n 0000 | nocturnal flightless bird of New Zealand having a long neck and stout legs; only surviving representative of the order Apterygiformes -01520789 05 n 02 Rheiformes 0 order_Rheiformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01521014 n 0000 | a ratite bird order: birds intermediate in characteristics between ostriches and emus: recent and extinct rheas -01521014 05 n 02 Rheidae 0 family_Rheidae 0 004 @ 01504437 n 0000 #m 01520789 n 0000 %m 01521197 n 0000 %m 01521602 n 0000 | a family of birds coextensive with the order Rheiformes -01521197 05 n 01 genus_Rhea 0 003 @ 01507175 n 0000 #m 01521014 n 0000 %m 01521399 n 0000 | type genus of the Rheidae; large tall flightless South American birds similar to but smaller than ostriches -01521399 05 n 02 rhea 1 Rhea_americana 0 002 @ 01517565 n 0000 #m 01521197 n 0000 | larger of two tall fast-running flightless birds similar to ostriches but three-toed; found from Brazil to Patagonia -01521602 05 n 02 Pterocnemia 0 genus_Pterocnemia 0 003 @ 01507175 n 0000 #m 01521014 n 0000 %m 01521756 n 0000 | a genus of birds of the family Rheidae -01521756 05 n 03 rhea 2 nandu 0 Pterocnemia_pennata 0 002 @ 01517565 n 0000 #m 01521602 n 0000 | smaller of two tall fast-running flightless birds similar to ostriches but three-toed; found from Peru to Strait of Magellan -01521980 05 n 02 Aepyorniformes 0 order_Aepyorniformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01522147 n 0000 | huge extinct flightless birds: elephant birds -01522147 05 n 02 Aepyornidae 0 family_Aepyornidae 0 003 @ 01504437 n 0000 #m 01521980 n 0000 %m 01522305 n 0000 | coextensive with the order Aepyorniformes -01522305 05 n 01 genus_Aepyornis 0 003 @ 01507175 n 0000 #m 01522147 n 0000 %m 01522450 n 0000 | type genus of the Aepyornidae: elephant birds -01522450 05 n 02 elephant_bird 0 aepyornis 0 002 @ 01517565 n 0000 #m 01522305 n 0000 | huge (to 9 ft.) extinct flightless bird of Madagascar -01522594 05 n 02 Dinornithiformes 0 order_Dinornithiformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01522789 n 0000 | a ratite bird order: recently extinct flightless birds of New Zealand -01522789 05 n 02 Dinornithidae 0 family_Dinornithidae 0 005 @ 01504437 n 0000 #m 01522594 n 0000 %m 01522952 n 0000 %m 01523105 n 0000 %m 01523379 n 0000 | moas -01522952 05 n 02 Dinornis 0 genus_Dinornis 0 003 @ 01507175 n 0000 #m 01522789 n 0000 %m 01523248 n 0000 | type genus of the Dinornithidae: large moas -01523105 05 n 01 moa 0 004 @ 01517565 n 0000 #m 01522789 n 0000 ~ 01523248 n 0000 ~ 01523493 n 0000 | extinct flightless bird of New Zealand -01523248 05 n 02 giant_moa 0 Dinornis_giganteus 0 002 @ 01523105 n 0000 #m 01522952 n 0000 | the largest moa; about 12 feet high -01523379 05 n 01 genus_Anomalopteryx 0 003 @ 01507175 n 0000 #m 01522789 n 0000 %m 01523493 n 0000 | small moas -01523493 05 n 02 anomalopteryx 0 Anomalopteryx_oweni 0 002 @ 01523105 n 0000 #m 01523379 n 0000 | the smallest moa; slender moa about the size of a large turkey -01523656 05 n 04 Insessores 0 order_Insessores 0 perching_bird 0 percher 0 003 @ 01342529 n 0000 #m 01502262 n 0000 + 01543731 v 0401 | a bird with feet adapted for perching (as on tree branches); this order is now generally abandoned by taxonomists -01523908 05 n 02 Passeriformes 0 order_Passeriformes 0 009 @ 01342529 n 0000 #m 01502262 n 0000 %m 01524359 n 0000 %m 01524885 n 0000 %m 01545149 n 0000 %m 01546223 n 0000 %m 01546660 n 0000 %m 01547143 n 0000 %m 01584004 n 0000 | largest order of birds comprising about half the known species; rooks; finches; sparrows; tits; warblers; robins; wrens; swallows; etc.; the four suborders are Eurylaimi and Tyranni and Menurae and Oscines or Passeres -01524359 05 n 02 passerine 0 passeriform_bird 0 010 @ 01503061 n 0000 #m 01523908 n 0000 + 02775029 a 0101 ~ 01525720 n 0000 ~ 01539573 n 0000 ~ 01545574 n 0000 ~ 01546039 n 0000 ~ 01546506 n 0000 ~ 01546921 n 0000 ~ 01584225 n 0000 | perching birds mostly small and living near the ground with feet having 4 toes arranged to allow for gripping the perch; most are songbirds; hatchlings are helpless -01524761 05 n 01 nonpasserine_bird 0 001 @ 01503061 n 0000 | chiefly arboreal birds especially of the order Coraciiformes -01524885 05 n 04 Oscines 0 suborder_Oscines 0 Passeres 0 suborder_Passeres 0 037 @ 01342529 n 0000 #m 01523908 n 0000 %m 01525720 n 0000 %m 01526635 n 0000 %m 01526925 n 0000 %m 01527480 n 0000 %m 01528087 n 0000 %m 01529036 n 0000 %m 01538775 n 0000 %m 01539377 n 0000 %m 01542567 n 0000 %m 01544544 n 0000 %m 01555586 n 0000 %m 01556671 n 0000 %m 01562584 n 0000 %m 01566386 n 0000 %m 01566888 n 0000 %m 01570969 n 0000 %m 01571578 n 0000 %m 01575577 n 0000 %m 01576506 n 0000 %m 01578341 n 0000 %m 01582625 n 0000 %m 01586541 n 0000 %m 01588172 n 0000 %m 01589125 n 0000 %m 01590443 n 0000 %m 01591490 n 0000 %m 01593705 n 0000 %m 01594157 n 0000 %m 01596761 n 0000 %m 01597194 n 0000 %m 01598432 n 0000 %m 01600480 n 0000 %m 01601550 n 0000 %m 01602353 n 0000 %m 01603316 n 0000 | two names for the suborder of typical songbirds -01525720 05 n 02 oscine 0 oscine_bird 0 039 @ 01524359 n 0000 #m 01524885 n 0000 + 03138122 a 0101 ~ 01526521 n 0000 ~ 01526766 n 0000 ~ 01527194 n 0000 ~ 01527617 n 0000 ~ 01528396 n 0000 ~ 01528654 n 0000 ~ 01529672 n 0000 ~ 01538955 n 0000 ~ 01542786 n 0000 ~ 01555809 n 0000 ~ 01557185 n 0000 ~ 01563128 n 0000 ~ 01566645 n 0000 ~ 01571126 n 0000 ~ 01571904 n 0000 ~ 01575745 n 0000 ~ 01576695 n 0000 ~ 01578575 n 0000 ~ 01582856 n 0000 ~ 01586941 n 0000 ~ 01587278 n 0000 ~ 01587526 n 0000 ~ 01587834 n 0000 ~ 01588431 n 0000 ~ 01589286 n 0000 ~ 01590583 n 0000 ~ 01591697 n 0000 ~ 01594004 n 0000 ~ 01594372 n 0000 ~ 01597022 n 0000 ~ 01597336 n 0000 ~ 01598588 n 0000 ~ 01600657 n 0000 ~ 01601694 n 0000 ~ 01602630 n 0000 ~ 01603600 n 0000 | passerine bird having specialized vocal apparatus -01526521 05 n 02 songbird 0 songster 0 002 @ 01525720 n 0000 + 06796642 n 0204 | any bird having a musical call -01526635 05 n 02 Meliphagidae 0 family_Meliphagidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01526766 n 0000 | honey eaters -01526766 05 n 02 honey_eater 0 honeysucker 0 002 @ 01525720 n 0000 #m 01526635 n 0000 | Australasian bird with tongue and bill adapted for extracting nectar -01526925 05 n 02 Prunellidae 0 family_Prunellidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01527055 n 0000 | hedge sparrow -01527055 05 n 02 Prunella 0 genus_Prunella 0 003 @ 01507175 n 0000 #m 01526925 n 0000 %m 01527194 n 0000 | type genus of the Prunellidae -01527194 05 n 01 accentor 0 003 @ 01525720 n 0000 #m 01527055 n 0000 ~ 01527347 n 0000 | small sparrow-like songbird of mountainous regions of Eurasia -01527347 05 n 04 hedge_sparrow 0 sparrow 3 dunnock 0 Prunella_modularis 0 001 @ 01527194 n 0000 | small brownish European songbird -01527480 05 n 02 Alaudidae 0 family_Alaudidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01527617 n 0000 %m 01527774 n 0000 | larks -01527617 05 n 01 lark 1 003 @ 01525720 n 0000 #m 01527480 n 0000 ~ 01527917 n 0000 | any of numerous predominantly Old World birds noted for their singing -01527774 05 n 02 Alauda 0 genus_Alauda 0 003 @ 01507175 n 0000 #m 01527480 n 0000 %m 01527917 n 0000 | type genus of the Alaudidae: skylarks -01527917 05 n 02 skylark 0 Alauda_arvensis 0 002 @ 01527617 n 0000 #m 01527774 n 0000 | brown-speckled European lark noted for singing while hovering at a great height -01528087 05 n 02 Motacillidae 0 family_Motacillidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01528244 n 0000 %m 01528542 n 0000 | pipits and wagtails -01528244 05 n 02 Motacilla 0 genus_Motacilla 0 003 @ 01507175 n 0000 #m 01528087 n 0000 %m 01528396 n 0000 | type genus of the Motacillidae: wagtails -01528396 05 n 01 wagtail 0 002 @ 01525720 n 0000 #m 01528244 n 0000 | Old World bird having a very long tail that jerks up and down as it walks -01528542 05 n 02 Anthus 0 genus_Anthus 0 003 @ 01507175 n 0000 #m 01528087 n 0000 %m 01528654 n 0000 | pipits -01528654 05 n 03 pipit 0 titlark 0 lark 2 003 @ 01525720 n 0000 #m 01528542 n 0000 ~ 01528845 n 0000 | a songbird that lives mainly on the ground in open country; has streaky brown plumage -01528845 05 n 02 meadow_pipit 0 Anthus_pratensis 0 001 @ 01528654 n 0000 | a common pipit that is brown above and white below; widely distributed in northern and central Europe and in Asia -01529036 05 n 02 Fringillidae 0 family_Fringillidae 0 024 @ 01504437 n 0000 #m 01524885 n 0000 %m 01529672 n 0000 %m 01530256 n 0000 %m 01530691 n 0000 %m 01530846 n 0000 %m 01532107 n 0000 %m 01532664 n 0000 %m 01533169 n 0000 %m 01533780 n 0000 %m 01534034 n 0000 %m 01534321 n 0000 %m 01535005 n 0000 %m 01535310 n 0000 %m 01535842 n 0000 %m 01536474 n 0000 %m 01536916 n 0000 %m 01540432 n 0000 %m 01540697 n 0000 %m 01540969 n 0000 %m 01541261 n 0000 %m 01541618 n 0000 %m 01542055 n 0000 %m 01542316 n 0000 | finches: goldfinches; bullfinches; chaffinches; siskins; canaries; cardinals; grosbeaks; crossbills; linnets; buntings -01529672 05 n 01 finch 0 026 @ 01525720 n 0000 #m 01529036 n 0000 ~ 01530439 n 0000 ~ 01530575 n 0000 ~ 01531178 n 0000 ~ 01531344 n 0000 ~ 01531512 n 0000 ~ 01531639 n 0000 ~ 01531811 n 0000 ~ 01531971 n 0000 ~ 01532325 n 0000 ~ 01532511 n 0000 ~ 01532829 n 0000 ~ 01533000 n 0000 ~ 01533339 n 0000 ~ 01533651 n 0000 ~ 01533893 n 0000 ~ 01534155 n 0000 ~ 01534433 n 0000 ~ 01534762 n 0000 ~ 01537134 n 0000 ~ 01540233 n 0000 ~ 01541386 n 0000 ~ 01541760 n 0000 ~ 01541922 n 0000 ~ 01544704 n 0000 | any of numerous small songbirds with short stout bills adapted for crushing seeds -01530256 05 n 02 Fringilla 0 genus_Fringilla 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01530439 n 0000 %m 01530575 n 0000 | type genus of the Fringillidae: chaffinch, brambling -01530439 05 n 02 chaffinch 0 Fringilla_coelebs 0 002 @ 01529672 n 0000 #m 01530256 n 0000 | small European finch with a cheerful song -01530575 05 n 02 brambling 0 Fringilla_montifringilla 0 002 @ 01529672 n 0000 #m 01530256 n 0000 | Eurasian finch -01530691 05 n 02 Carduelinae 0 subfamily_Carduelinae 0 002 @ 01504437 n 0000 #m 01529036 n 0000 | used in some classifications for a subgroup of finches -01530846 05 n 02 Carduelis 0 genus_Carduelis 0 007 @ 01507175 n 0000 #m 01529036 n 0000 %m 01531178 n 0000 %m 01531344 n 0000 %m 01531639 n 0000 %m 01531811 n 0000 %m 01531971 n 0000 | in some classifications considered the type genus of a subfamily Carduelinae of the family Fringillidae: goldfinches; siskins; redpolls; linnets -01531178 05 n 02 goldfinch 1 Carduelis_carduelis 0 002 @ 01529672 n 0000 #m 01530846 n 0000 | small European finch having a crimson face and yellow-and-black wings -01531344 05 n 03 linnet 1 lintwhite 0 Carduelis_cannabina 0 002 @ 01529672 n 0000 #m 01530846 n 0000 | small Old World finch whose male has a red breast and forehead -01531512 05 n 02 siskin 0 Carduelis_spinus 0 001 @ 01529672 n 0000 | small yellow-and-black Eurasian finch with a sharp beak -01531639 05 n 02 red_siskin 0 Carduelis_cucullata 0 002 @ 01529672 n 0000 #m 01530846 n 0000 | South American species of scarlet finch with black head and wings and tail -01531811 05 n 02 redpoll 1 Carduelis_flammea 0 002 @ 01529672 n 0000 #m 01530846 n 0000 | small siskin-like finch with a red crown and a rosy breast and rump -01531971 05 n 02 redpoll 2 Carduelis_hornemanni 0 002 @ 01529672 n 0000 #m 01530846 n 0000 | small siskin-like finch with a red crown -01532107 05 n 02 Spinus 0 genus_Spinus 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01532325 n 0000 %m 01532511 n 0000 | in some classifications considered a subgenus of Carduelis: siskins and New World goldfinches -01532325 05 n 04 New_World_goldfinch 0 goldfinch 2 yellowbird 1 Spinus_tristis 0 002 @ 01529672 n 0000 #m 01532107 n 0000 | American finch whose male has yellow body plumage in summer -01532511 05 n 03 pine_siskin 0 pine_finch 0 Spinus_pinus 0 002 @ 01529672 n 0000 #m 01532107 n 0000 | small finch of North American coniferous forests -01532664 05 n 02 Carpodacus 0 genus_Carpodacus 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01532829 n 0000 %m 01533000 n 0000 | house finches and purple finches -01532829 05 n 03 house_finch 0 linnet 2 Carpodacus_mexicanus 0 002 @ 01529672 n 0000 #m 01532664 n 0000 | small finch originally of the western United States and Mexico -01533000 05 n 02 purple_finch 0 Carpodacus_purpureus 0 002 @ 01529672 n 0000 #m 01532664 n 0000 | North American finch having a raspberry-red head and breast and rump -01533169 05 n 02 Serinus 0 genus_Serinus 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01533339 n 0000 %m 01533651 n 0000 | Old World finches; e.g. canaries and serins -01533339 05 n 02 canary 0 canary_bird 0 003 @ 01529672 n 0000 #m 01533169 n 0000 ~ 01533481 n 0000 | any of several small Old World finches -01533481 05 n 02 common_canary 0 Serinus_canaria 0 001 @ 01533339 n 0000 | native to the Canary Islands and Azores; popular usually yellow cage bird noted for its song -01533651 05 n 01 serin 0 002 @ 01529672 n 0000 #m 01533169 n 0000 | any of various brown and yellow finches of parts of Europe -01533780 05 n 02 Loxia 0 genus_Loxia 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01533893 n 0000 | crossbill -01533893 05 n 02 crossbill 0 Loxia_curvirostra 0 002 @ 01529672 n 0000 #m 01533780 n 0000 | finch with a bill whose tips cross when closed -01534034 05 n 02 Pyrrhula 0 genus_Pyrrhula 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01534155 n 0000 | bullfinches -01534155 05 n 02 bullfinch 0 Pyrrhula_pyrrhula 0 002 @ 01529672 n 0000 #m 01534034 n 0000 | common European finch mostly black and white with red throat and breast -01534321 05 n 01 genus_Junco 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01534433 n 0000 | American finches -01534433 05 n 02 junco 0 snowbird 2 003 @ 01529672 n 0000 #m 01534321 n 0000 ~ 01534582 n 0000 | small North American finch seen chiefly in winter -01534582 05 n 03 dark-eyed_junco 0 slate-colored_junco 0 Junco_hyemalis 0 001 @ 01534433 n 0000 | common North American junco having grey plumage and eyes with dark brown irises -01534762 05 n 01 New_World_sparrow 0 009 @ 01529672 n 0000 ~ 01535140 n 0000 ~ 01535469 n 0000 ~ 01535690 n 0000 ~ 01536035 n 0000 ~ 01536186 n 0000 ~ 01536334 n 0000 ~ 01536644 n 0000 ~ 01536780 n 0000 | sparrow-like North American finches -01535005 05 n 02 Pooecetes 0 genus_Pooecetes 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01535140 n 0000 | a genus of Fringillidae -01535140 05 n 03 vesper_sparrow 0 grass_finch 2 Pooecetes_gramineus 0 002 @ 01534762 n 0000 #m 01535005 n 0000 | common North American finch noted for its evening song -01535310 05 n 02 Zonotrichia 0 genus_Zonotrichia 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01535469 n 0000 %m 01535690 n 0000 | large New World sparrows -01535469 05 n 03 white-throated_sparrow 0 whitethroat 0 Zonotrichia_albicollis 0 002 @ 01534762 n 0000 #m 01535310 n 0000 | common North American finch with a white patch on the throat and black-and-white striped crown -01535690 05 n 02 white-crowned_sparrow 0 Zonotrichia_leucophrys 0 002 @ 01534762 n 0000 #m 01535310 n 0000 | finch with black-and-white striped crown -01535842 05 n 02 Spizella 0 genus_Spizella 0 005 @ 01507175 n 0000 #m 01529036 n 0000 %m 01536035 n 0000 %m 01536186 n 0000 %m 01536334 n 0000 | chipping sparrow; field sparrow; tree sparrow -01536035 05 n 02 chipping_sparrow 0 Spizella_passerina 0 002 @ 01534762 n 0000 #m 01535842 n 0000 | small North American finch common in urban areas -01536186 05 n 02 field_sparrow 0 Spizella_pusilla 0 002 @ 01534762 n 0000 #m 01535842 n 0000 | common North American finch of brushy pasturelands -01536334 05 n 02 tree_sparrow 2 Spizella_arborea 0 002 @ 01534762 n 0000 #m 01535842 n 0000 | finch common in winter in the northern U.S. -01536474 05 n 02 Melospiza 0 genus_Melospiza 0 004 @ 01507175 n 0000 #m 01529036 n 0000 %m 01536644 n 0000 %m 01536780 n 0000 | American song sparrow and swamp sparrow -01536644 05 n 02 song_sparrow 0 Melospiza_melodia 0 002 @ 01534762 n 0000 #m 01536474 n 0000 | small songbird common in North America -01536780 05 n 02 swamp_sparrow 0 Melospiza_georgiana 0 002 @ 01534762 n 0000 #m 01536474 n 0000 | North American finch of marshy area -01536916 05 n 03 Emberizidae 0 subfamily_Emberizidae 0 subfamily_Emberizinae 0 005 @ 01504437 n 0000 #m 01529036 n 0000 %m 01537360 n 0000 %m 01537710 n 0000 %m 01538498 n 0000 | buntings and some New World sparrows -01537134 05 n 01 bunting 0 007 @ 01529672 n 0000 ~ 01537544 n 0000 ~ 01537895 n 0000 ~ 01538059 n 0000 ~ 01538200 n 0000 ~ 01538362 n 0000 ~ 01538630 n 0000 | any of numerous seed-eating songbirds of Europe or North America -01537360 05 n 02 Passerina 0 genus_Passerina 0 003 @ 01507175 n 0000 #m 01536916 n 0000 %m 01537544 n 0000 | a genus of small North American finches including the New World buntings -01537544 05 n 04 indigo_bunting 0 indigo_finch 0 indigo_bird 0 Passerina_cyanea 0 002 @ 01537134 n 0000 #m 01537360 n 0000 | small deep blue North American bunting -01537710 05 n 02 Emberiza 0 genus_Emberiza 0 006 @ 01507175 n 0000 #m 01536916 n 0000 %m 01537895 n 0000 %m 01538059 n 0000 %m 01538200 n 0000 %m 01538362 n 0000 | Old World buntings -01537895 05 n 03 ortolan 0 ortolan_bunting 0 Emberiza_hortulana 0 002 @ 01537134 n 0000 #m 01537710 n 0000 | brownish Old World bunting often eaten as a delicacy -01538059 05 n 02 reed_bunting 0 Emberiza_schoeniclus 0 002 @ 01537134 n 0000 #m 01537710 n 0000 | European bunting inhabiting marshy areas -01538200 05 n 03 yellowhammer 1 yellow_bunting 0 Emberiza_citrinella 0 002 @ 01537134 n 0000 #m 01537710 n 0000 | European bunting the male being bright yellow -01538362 05 n 02 yellow-breasted_bunting 0 Emberiza_aureola 0 002 @ 01537134 n 0000 #m 01537710 n 0000 | common in Russia and Siberia -01538498 05 n 02 Plectrophenax 0 genus_Plectrophenax 0 003 @ 01507175 n 0000 #m 01536916 n 0000 %m 01538630 n 0000 | snow bunting -01538630 05 n 04 snow_bunting 0 snowbird 1 snowflake 0 Plectrophenax_nivalis 0 002 @ 01537134 n 0000 #m 01538498 n 0000 | white Arctic bunting -01538775 05 n 04 Coerebidae 0 family_Coerebidae 0 Dacninae 0 family_Dacninae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01538955 n 0000 %m 01539136 n 0000 | the honeycreepers -01538955 05 n 01 honeycreeper 1 003 @ 01525720 n 0000 #m 01538775 n 0000 ~ 01539272 n 0000 | small bright-colored tropical American songbird with a curved bill for sucking nectar -01539136 05 n 02 Coereba 0 genus_Coereba 0 003 @ 01507175 n 0000 #m 01538775 n 0000 %m 01539272 n 0000 | type genus of the Coerebidae -01539272 05 n 01 banana_quit 0 002 @ 01538955 n 0000 #m 01539136 n 0000 | any of several honeycreepers -01539377 05 n 02 Passeridae 0 family_Passeridae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01539573 n 0000 %m 01539772 n 0000 | true sparrows: Old world birds formerly considered weaverbirds -01539573 05 n 02 sparrow 0 true_sparrow 0 004 @ 01524359 n 0000 #m 01539377 n 0000 ~ 01539925 n 0000 ~ 01540090 n 0000 | any of several small dull-colored singing birds feeding on seeds or insects -01539772 05 n 02 Passer 0 genus_Passer 0 004 @ 01507175 n 0000 #m 01539377 n 0000 %m 01539925 n 0000 %m 01540090 n 0000 | type genus of the Passeridae -01539925 05 n 03 English_sparrow 0 house_sparrow 0 Passer_domesticus 0 002 @ 01539573 n 0000 #m 01539772 n 0000 | small hardy brown-and-grey bird native to Europe -01540090 05 n 02 tree_sparrow 1 Passer_montanus 0 002 @ 01539573 n 0000 #m 01539772 n 0000 | Eurasian sparrow smaller than the house sparrow -01540233 05 n 02 grosbeak 0 grossbeak 0 004 @ 01529672 n 0000 ~ 01540566 n 0000 ~ 01540832 n 0000 ~ 01541102 n 0000 | any of various finches of Europe or America having a massive and powerful bill -01540432 05 n 02 Hesperiphona 0 genus_Hesperiphona 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01540566 n 0000 | evening grosbeak -01540566 05 n 02 evening_grosbeak 0 Hesperiphona_vespertina 0 002 @ 01540233 n 0000 #m 01540432 n 0000 | North American grosbeak -01540697 05 n 02 Coccothraustes 0 genus_Coccothraustes 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01540832 n 0000 | large finches -01540832 05 n 02 hawfinch 0 Coccothraustes_coccothraustes 0 002 @ 01540233 n 0000 #m 01540697 n 0000 | a common large finch of Eurasia -01540969 05 n 02 Pinicola 0 genus_Pinicola 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01541102 n 0000 | a genus of Fringillidae -01541102 05 n 02 pine_grosbeak 0 Pinicola_enucleator 0 002 @ 01540233 n 0000 #m 01540969 n 0000 | large grosbeak of coniferous forests of Old and New Worlds -01541261 05 n 02 Richmondena 0 genus_Richmondena 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01541386 n 0000 | cardinals -01541386 05 n 05 cardinal 0 cardinal_grosbeak 0 Richmondena_Cardinalis 0 Cardinalis_cardinalis 0 redbird 1 002 @ 01529672 n 0000 #m 01541261 n 0000 | crested thick-billed North American finch having bright red plumage in the male -01541618 05 n 01 genus_Pyrrhuloxia 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01541760 n 0000 | large showy finches related to cardinals -01541760 05 n 02 pyrrhuloxia 0 Pyrrhuloxia_sinuata 0 002 @ 01529672 n 0000 #m 01541618 n 0000 | crested grey-and-red bird of southwest United States and Mexico -01541922 05 n 01 towhee 0 003 @ 01529672 n 0000 ~ 01542168 n 0000 ~ 01542433 n 0000 | any of numerous long-tailed American finches -01542055 05 n 02 Pipilo 0 genus_Pipilo 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01542168 n 0000 | towhees -01542168 05 n 03 chewink 0 cheewink 0 Pipilo_erythrophthalmus 0 002 @ 01541922 n 0000 #m 01542055 n 0000 | common towhee of eastern North America -01542316 05 n 02 Chlorura 0 genus_Chlorura 0 003 @ 01507175 n 0000 #m 01529036 n 0000 %m 01542433 n 0000 | towhees -01542433 05 n 02 green-tailed_towhee 0 Chlorura_chlorura 0 002 @ 01541922 n 0000 #m 01542316 n 0000 | towhee of the Rocky Mountains -01542567 05 n 02 Ploceidae 0 family_Ploceidae 0 008 @ 01504437 n 0000 #m 01524885 n 0000 %m 01542786 n 0000 %m 01543059 n 0000 %m 01543272 n 0000 %m 01543508 n 0000 %m 01543817 n 0000 %m 01544067 n 0000 | weaverbirds -01542786 05 n 03 weaver 0 weaverbird 0 weaver_finch 0 007 @ 01525720 n 0000 #m 01542567 n 0000 ~ 01543175 n 0000 ~ 01543383 n 0000 ~ 01543632 n 0000 ~ 01543936 n 0000 ~ 01544208 n 0000 | finch-like African and Asian colonial birds noted for their elaborately woven nests -01543059 05 n 02 Ploceus 0 genus_Ploceus 0 002 @ 01507175 n 0000 #m 01542567 n 0000 | type genus of the Ploceidae -01543175 05 n 02 baya 0 Ploceus_philippinus 0 001 @ 01542786 n 0000 | common Indian weaverbird -01543272 05 n 02 Vidua 0 genus_Vidua 0 003 @ 01507175 n 0000 #m 01542567 n 0000 %m 01543383 n 0000 | whydahs -01543383 05 n 03 whydah 0 whidah 0 widow_bird 0 002 @ 01542786 n 0000 #m 01543272 n 0000 | mostly black African weaverbird -01543508 05 n 02 Padda 0 genus_Padda 0 003 @ 01507175 n 0000 #m 01542567 n 0000 %m 01543632 n 0000 | a genus of Ploceidae -01543632 05 n 04 Java_sparrow 0 Java_finch 0 ricebird 2 Padda_oryzivora 0 002 @ 01542786 n 0000 #m 01543508 n 0000 | small finch-like Indonesian weaverbird that frequents rice fields -01543817 05 n 02 Estrilda 0 genus_Estrilda 0 003 @ 01507175 n 0000 #m 01542567 n 0000 %m 01543936 n 0000 | avadavats -01543936 05 n 02 avadavat 0 amadavat 0 002 @ 01542786 n 0000 #m 01543817 n 0000 | red Asian weaverbirds often kept as cage birds -01544067 05 n 02 Poephila 0 genus_Poephila 0 004 @ 01507175 n 0000 #m 01542567 n 0000 %m 01544208 n 0000 %m 01544389 n 0000 | grassfinches -01544208 05 n 02 grassfinch 1 grass_finch 1 003 @ 01542786 n 0000 #m 01544067 n 0000 ~ 01544389 n 0000 | usually brightly-colored Australian weaverbirds; often kept as cage birds -01544389 05 n 02 zebra_finch 0 Poephila_castanotis 0 002 @ 01544208 n 0000 #m 01544067 n 0000 | small Australian weaverbird with markings like a zebra's -01544544 05 n 02 Drepanididae 0 family_Drepanididae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01544704 n 0000 %m 01544877 n 0000 | Hawaiian honeycreepers -01544704 05 n 02 honeycreeper 2 Hawaiian_honeycreeper 0 003 @ 01529672 n 0000 #m 01544544 n 0000 ~ 01545010 n 0000 | small to medium-sized finches of the Hawaiian islands -01544877 05 n 02 Drepanis 0 genus_Drepanis 0 003 @ 01507175 n 0000 #m 01544544 n 0000 %m 01545010 n 0000 | a genus of Drepanididae -01545010 05 n 01 mamo 0 002 @ 01544704 n 0000 #m 01544877 n 0000 | black honeycreepers with yellow feathers around the tail; now extinct -01545149 05 n 02 Menurae 0 suborder_Menurae 0 004 @ 01342529 n 0000 #m 01523908 n 0000 %m 01545303 n 0000 %m 01545752 n 0000 | lyrebirds and scrubbirds -01545303 05 n 02 Menuridae 0 family_Menuridae 0 003 @ 01504437 n 0000 #m 01545149 n 0000 %m 01545425 n 0000 | lyrebirds -01545425 05 n 02 Menura 0 genus_Menura 0 003 @ 01507175 n 0000 #m 01545303 n 0000 %m 01545574 n 0000 | type and sole genus of the family Menuridae -01545574 05 n 01 lyrebird 0 002 @ 01524359 n 0000 #m 01545425 n 0000 | Australian bird that resembles a pheasant; the courting male displays long tail feathers in a lyre shape -01545752 05 n 02 Atrichornithidae 0 family_Atrichornithidae 0 003 @ 01504437 n 0000 #m 01545149 n 0000 %m 01545889 n 0000 | scrubbirds -01545889 05 n 02 Atrichornis 0 genus_Atrichornis 0 003 @ 01507175 n 0000 #m 01545752 n 0000 %m 01546039 n 0000 | type genus of the Atrichornithidae -01546039 05 n 03 scrubbird 0 scrub-bird 0 scrub_bird 0 002 @ 01524359 n 0000 #m 01545889 n 0000 | small fast-running Australian bird resembling a wren and frequenting brush or scrub -01546223 05 n 02 Eurylaimi 0 suborder_Eurylaimi 0 003 @ 01342529 n 0000 #m 01523908 n 0000 %m 01546348 n 0000 | broadbills -01546348 05 n 02 Eurylaimidae 0 family_Eurylaimidae 0 003 @ 01504437 n 0000 #m 01546223 n 0000 %m 01546506 n 0000 | coextensive with the suborder Eurylaimi -01546506 05 n 01 broadbill 1 002 @ 01524359 n 0000 #m 01546348 n 0000 | small birds of the Old World tropics having bright plumage and short wide bills -01546660 05 n 02 Tyranni 0 suborder_Tyranni 0 008 @ 01342529 n 0000 #m 01523908 n 0000 %m 01546921 n 0000 %m 01547459 n 0000 %m 01551430 n 0000 %m 01552523 n 0000 %m 01552956 n 0000 %m 01554139 n 0000 | New World flycatchers; antbirds; oven birds; woodhewers -01546921 05 n 01 tyrannid 0 008 @ 01524359 n 0000 #m 01546660 n 0000 ~ 01547832 n 0000 ~ 01551711 n 0000 ~ 01552813 n 0000 ~ 01553142 n 0000 ~ 01554448 n 0000 ~ 01555004 n 0000 | a passerine bird of the suborder Tyranni -01547143 05 n 02 Clamatores 0 suborder_Clamatores 0 003 @ 01342529 n 0000 #m 01523908 n 0000 + 02697677 a 0101 | used in some classification systems; a suborder or superfamily nearly coextensive with suborder Tyranni; Passeriformes having relatively simple vocal organs and little power of song; clamatorial birds -01547459 05 n 02 Tyrannidae 0 superfamily_Tyrannidae 0 010 @ 01504437 n 0000 #m 01546660 n 0000 %m 01547832 n 0000 %m 01548143 n 0000 %m 01549314 n 0000 %m 01549769 n 0000 %m 01550033 n 0000 %m 01550429 n 0000 %m 01554708 n 0000 %m 01555172 n 0000 | New World tyrant flycatchers most numerous in Central America and South America but also in the United States and Canada -01547832 05 n 04 New_World_flycatcher 0 flycatcher 2 tyrant_flycatcher 0 tyrant_bird 0 008 @ 01546921 n 0000 #m 01547459 n 0000 ~ 01548301 n 0000 ~ 01549430 n 0000 ~ 01549886 n 0000 ~ 01550172 n 0000 ~ 01550761 n 0000 ~ 01555305 n 0000 | large American birds that characteristically catch insects on the wing -01548143 05 n 02 Tyrannus 0 genus_Tyrannus 0 003 @ 01507175 n 0000 #m 01547459 n 0000 %m 01548301 n 0000 | type genus of the Tyrannidae: tyrant flycatchers -01548301 05 n 02 kingbird 0 Tyrannus_tyrannus 0 006 @ 01547832 n 0000 #m 01548143 n 0000 ~ 01548492 n 0000 ~ 01548694 n 0000 ~ 01548865 n 0000 ~ 01549053 n 0000 | large American flycatcher -01548492 05 n 02 Arkansas_kingbird 0 western_kingbird 0 001 @ 01548301 n 0000 | a kingbird seen in western United States; head and back are pale grey and the breast is yellowish and the tail is black -01548694 05 n 02 Cassin's_kingbird 0 Tyrannus_vociferans 0 001 @ 01548301 n 0000 | a kingbird seen in the southwestern United States; largely grey with a yellow abdomen -01548865 05 n 01 eastern_kingbird 0 001 @ 01548301 n 0000 | a kingbird that breeds in North America and winters in tropical America; distinguished by a white band on the tip of the tail -01549053 05 n 04 grey_kingbird 0 gray_kingbird 0 petchary 0 Tyrannus_domenicensis_domenicensis 0 001 @ 01548301 n 0000 | a kingbird that breeds in the southeastern United States and winters in tropical America; similar to but larger than the eastern kingbird -01549314 05 n 02 Contopus 0 genus_Contopus 0 003 @ 01507175 n 0000 #m 01547459 n 0000 %m 01549430 n 0000 | pewees -01549430 05 n 06 pewee 0 peewee 0 peewit 2 pewit 2 wood_pewee 0 Contopus_virens 0 003 @ 01547832 n 0000 #m 01549314 n 0000 ~ 01549641 n 0000 | small olive-colored woodland flycatchers of eastern North America -01549641 05 n 02 western_wood_pewee 0 Contopus_sordidulus 0 001 @ 01549430 n 0000 | small flycatcher of western North America -01549769 05 n 02 Sayornis 0 genus_Sayornis 0 003 @ 01507175 n 0000 #m 01547459 n 0000 %m 01549886 n 0000 | phoebes -01549886 05 n 03 phoebe 0 phoebe_bird 0 Sayornis_phoebe 0 002 @ 01547832 n 0000 #m 01549769 n 0000 | small dun-colored North American flycatcher -01550033 05 n 02 Pyrocephalus 0 genus_Pyrocephalus 0 003 @ 01507175 n 0000 #m 01547459 n 0000 %m 01550172 n 0000 | a genus of Tyrannidae -01550172 05 n 03 vermillion_flycatcher 0 firebird 3 Pyrocephalus_rubinus_mexicanus 0 002 @ 01547832 n 0000 #m 01550033 n 0000 | tropical American flycatcher found as far north as southern Texas and Arizona; adult male has bright scarlet and black plumage -01550429 05 n 02 Cotingidae 0 family_Cotingidae 0 006 @ 01504437 n 0000 #m 01547459 n 0000 %m 01550625 n 0000 %m 01550953 n 0000 %m 01551915 n 0000 %m 01552192 n 0000 | cotingas; umbrella birds -01550625 05 n 01 genus_Cotinga 0 003 @ 01507175 n 0000 #m 01550429 n 0000 %m 01550761 n 0000 | type genus of the Cotingidae: cotingas -01550761 05 n 02 cotinga 0 chatterer 0 006 @ 01547832 n 0000 #m 01550625 n 0000 ~ 01551080 n 0000 ~ 01551300 n 0000 ~ 01552034 n 0000 ~ 01552333 n 0000 | passerine bird of New World tropics -01550953 05 n 02 Rupicola 0 genus_Rupicola 0 003 @ 01507175 n 0000 #m 01550429 n 0000 %m 01551080 n 0000 | cock of the rocks -01551080 05 n 02 cock_of_the_rock 1 Rupicola_rupicola 0 002 @ 01550761 n 0000 #m 01550953 n 0000 | tropical bird of northern South America the male having brilliant red or orange plumage and an erectile disklike crest -01551300 05 n 02 cock_of_the_rock 2 Rupicola_peruviana 0 001 @ 01550761 n 0000 | bird of the Andes similar to Rupicola rupicola -01551430 05 n 02 Pipridae 0 family_Pipridae 0 003 @ 01504437 n 0000 #m 01546660 n 0000 %m 01551549 n 0000 | manakins -01551549 05 n 02 Pipra 0 genus_Pipra 0 003 @ 01507175 n 0000 #m 01551430 n 0000 %m 01551711 n 0000 | type genus of the Pipridae containing the typical manakins -01551711 05 n 01 manakin 0 002 @ 01546921 n 0000 #m 01551549 n 0000 | any of numerous small bright-colored birds of Central America and South America having short bills and elaborate courtship behavior -01551915 05 n 02 Procnias 0 genus_Procnias 0 003 @ 01507175 n 0000 #m 01550429 n 0000 %m 01552034 n 0000 | bellbirds -01552034 05 n 01 bellbird 0 002 @ 01550761 n 0000 #m 01551915 n 0000 | any of several tropical American birds of the genus Procnias having a bell-like call -01552192 05 n 02 Cephalopterus 0 genus_Cephalopterus 0 003 @ 01507175 n 0000 #m 01550429 n 0000 %m 01552333 n 0000 | a genus of Cotingidae -01552333 05 n 02 umbrella_bird 0 Cephalopterus_ornatus 0 002 @ 01550761 n 0000 #m 01552192 n 0000 | black tropical American bird having a large overhanging crest and long feathered wattle -01552523 05 n 02 Furnariidae 0 family_Furnariidae 0 003 @ 01504437 n 0000 #m 01546660 n 0000 %m 01552654 n 0000 | e.g. ovenbirds -01552654 05 n 02 Furnarius 0 genus_Furnarius 0 003 @ 01507175 n 0000 #m 01552523 n 0000 %m 01552813 n 0000 | type genus of the family Furnariidae: ovenbirds -01552813 05 n 01 ovenbird 2 002 @ 01546921 n 0000 #m 01552654 n 0000 | small brownish South American birds that build oven-shaped clay nests -01552956 05 n 02 Formicariidae 0 family_Formicariidae 0 006 @ 01504437 n 0000 #m 01546660 n 0000 %m 01553142 n 0000 %m 01553380 n 0000 %m 01553620 n 0000 %m 01553879 n 0000 | antbirds -01553142 05 n 02 antbird 0 ant_bird 0 005 @ 01546921 n 0000 #m 01552956 n 0000 ~ 01553527 n 0000 ~ 01553762 n 0000 ~ 01554017 n 0000 | any of various dull-colored South American birds that feeding on ants some following army ant swarms -01553380 05 n 02 Formicarius 0 genus_Formicarius 0 003 @ 01507175 n 0000 #m 01552956 n 0000 %m 01553527 n 0000 | type genus of the Formicariidae -01553527 05 n 01 ant_thrush 0 002 @ 01553142 n 0000 #m 01553380 n 0000 | a kind of antbird -01553620 05 n 02 Thamnophilus 0 genus_Thamnophilus 0 003 @ 01507175 n 0000 #m 01552956 n 0000 %m 01553762 n 0000 | a genus of Formicariidae -01553762 05 n 01 ant_shrike 0 002 @ 01553142 n 0000 #m 01553620 n 0000 | antbirds superficially resembling shrikes -01553879 05 n 02 Hylophylax 0 genus_Hylophylax 0 003 @ 01507175 n 0000 #m 01552956 n 0000 %m 01554017 n 0000 | a genus of Formicariidae -01554017 05 n 02 spotted_antbird 0 Hylophylax_naevioides 0 002 @ 01553142 n 0000 #m 01553879 n 0000 | a kind of antbird -01554139 05 n 02 Dendrocolaptidae 0 family_Dendrocolaptidae 0 004 @ 01504437 n 0000 #m 01546660 n 0000 %m 01554311 n 0000 %m 01554448 n 0000 | woodhewers or woodcreepers -01554311 05 n 02 Dendrocolaptes 0 genus_Dendrocolaptes 0 002 @ 01507175 n 0000 #m 01554139 n 0000 | type genus of the Dendrocolaptidae -01554448 05 n 04 woodhewer 0 woodcreeper 0 wood-creeper 0 tree_creeper 2 002 @ 01546921 n 0000 #m 01554139 n 0000 | any of numerous South American and Central American birds with a curved bill and stiffened tail feathers that climb and feed like woodpeckers -01554708 05 n 02 Pittidae 0 family_Pittidae 0 003 @ 01504437 n 0000 #m 01547459 n 0000 %m 01554825 n 0000 | pittas -01554825 05 n 01 genus_Pitta 0 002 @ 01507175 n 0000 #m 01554708 n 0000 | type genus of the Pittidae; a large genus of birds of southern Asia and Australia and adjacent islands -01555004 05 n 01 pitta 0 001 @ 01546921 n 0000 | any bird of the genus Pitta; brilliantly colored chiefly terrestrial birds with short wings and tail and stout bills -01555172 05 n 02 Muscivora 0 genus_Muscivora 0 003 @ 01507175 n 0000 #m 01547459 n 0000 %m 01555305 n 0000 | a genus of Tyrannidae -01555305 05 n 03 scissortail 0 scissortailed_flycatcher 0 Muscivora-forficata 0 002 @ 01547832 n 0000 #m 01555172 n 0000 | grey flycatcher of the southwestern United States and Mexico and Central America having a long forked tail and white breast and salmon and scarlet markings -01555586 05 n 02 Muscicapidae 0 family_Muscicapidae 0 007 @ 01504437 n 0000 #m 01524885 n 0000 %m 01555809 n 0000 %m 01556040 n 0000 %m 01556368 n 0000 %m 01557028 n 0000 %m 01562978 n 0000 | Old World (true) flycatchers -01555809 05 n 03 Old_World_flycatcher 0 true_flycatcher 0 flycatcher 1 004 @ 01525720 n 0000 #m 01555586 n 0000 ~ 01556182 n 0000 ~ 01556514 n 0000 | any of a large group of small songbirds that feed on insects taken on the wing -01556040 05 n 02 Muscicapa 0 genus_Muscicapa 0 003 @ 01507175 n 0000 #m 01555586 n 0000 %m 01556182 n 0000 | type genus of the Muscicapidae -01556182 05 n 03 spotted_flycatcher 0 Muscicapa_striata 0 Muscicapa_grisola 0 002 @ 01555809 n 0000 #m 01556040 n 0000 | common European woodland flycatcher with greyish-brown plumage -01556368 05 n 02 Pachycephala 0 genus_Pachycephala 0 003 @ 01507175 n 0000 #m 01555586 n 0000 %m 01556514 n 0000 | arboreal insectivorous birds -01556514 05 n 02 thickhead 0 whistler 1 002 @ 01555809 n 0000 #m 01556368 n 0000 | Australian and southeastern Asian birds with a melodious whistling call -01556671 05 n 02 Turdidae 0 family_Turdidae 0 011 @ 01504437 n 0000 #m 01524885 n 0000 %m 01557185 n 0000 %m 01557697 n 0000 %m 01559294 n 0000 %m 01559964 n 0000 %m 01560511 n 0000 %m 01561059 n 0000 %m 01561318 n 0000 %m 01561613 n 0000 %m 01562116 n 0000 | thrushes; in some classifications considered a subfamily (Turdinae) of the family Muscicapidae -01557028 05 n 02 Turdinae 0 subfamily_Turdinae 0 003 @ 01504437 n 0000 #m 01555586 n 0000 %m 01561884 n 0000 | alternative classification for the thrushes -01557185 05 n 01 thrush 0 022 @ 01525720 n 0000 #m 01556671 n 0000 ~ 01557962 n 0000 ~ 01558149 n 0000 ~ 01558307 n 0000 ~ 01558461 n 0000 ~ 01558594 n 0000 ~ 01558765 n 0000 ~ 01558993 n 0000 ~ 01559160 n 0000 ~ 01559477 n 0000 ~ 01559639 n 0000 ~ 01559804 n 0000 ~ 01560105 n 0000 ~ 01560280 n 0000 ~ 01560636 n 0000 ~ 01561181 n 0000 ~ 01561452 n 0000 ~ 01561732 n 0000 ~ 01562014 n 0000 ~ 01562265 n 0000 ~ 01562451 n 0000 | songbirds characteristically having brownish upper plumage with a spotted breast -01557697 05 n 02 Turdus 0 genus_Turdus 0 010 @ 01507175 n 0000 #m 01556671 n 0000 %m 01557962 n 0000 %m 01558149 n 0000 %m 01558307 n 0000 %m 01558461 n 0000 %m 01558594 n 0000 %m 01558765 n 0000 %m 01558993 n 0000 %m 01559160 n 0000 | type genus of the Turdidae -01557962 05 n 04 missel_thrush 0 mistle_thrush 0 mistletoe_thrush 0 Turdus_viscivorus 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | large European thrush that feeds on mistletoe berries -01558149 05 n 04 song_thrush 0 mavis 0 throstle 0 Turdus_philomelos 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | common Old World thrush noted for its song -01558307 05 n 03 fieldfare 0 snowbird 3 Turdus_pilaris 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | medium-sized Eurasian thrush seen chiefly in winter -01558461 05 n 02 redwing 1 Turdus_iliacus 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | small European thrush having reddish flanks -01558594 05 n 07 blackbird 2 merl 0 merle 0 ouzel 1 ousel 1 European_blackbird 0 Turdus_merula 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | common black European thrush -01558765 05 n 04 ring_ouzel 0 ring_blackbird 0 ring_thrush 0 Turdus_torquatus 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | European thrush common in rocky areas; the male has blackish plumage with a white band around the neck -01558993 05 n 03 robin 1 American_robin 0 Turdus_migratorius 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | large American thrush having a rust-red breast and abdomen -01559160 05 n 02 clay-colored_robin 0 Turdus_greyi 0 002 @ 01557185 n 0000 #m 01557697 n 0000 | robin of Mexico and Central America -01559294 05 n 02 Hylocichla 0 genus_Hylocichla 0 004 @ 01507175 n 0000 #m 01556671 n 0000 %m 01559477 n 0000 %m 01559639 n 0000 | American thrush: wood thrush; hermit thrush; veery -01559477 05 n 02 hermit_thrush 0 Hylocichla_guttata 0 002 @ 01557185 n 0000 #m 01559294 n 0000 | North American thrush noted for its complex and appealing song -01559639 05 n 03 veery 0 Wilson's_thrush 0 Hylocichla_fuscescens 0 002 @ 01557185 n 0000 #m 01559294 n 0000 | tawny brown North American thrush noted for its song -01559804 05 n 02 wood_thrush 0 Hylocichla_mustelina 0 001 @ 01557185 n 0000 | large thrush common in eastern American woodlands; noted for its melodious song -01559964 05 n 02 Luscinia 0 genus_Luscinia 0 004 @ 01507175 n 0000 #m 01556671 n 0000 %m 01560105 n 0000 %m 01560280 n 0000 | nightingales -01560105 05 n 02 nightingale 0 Luscinia_megarhynchos 0 003 @ 01557185 n 0000 #m 01559964 n 0000 ~ 01560419 n 0000 | European songbird noted for its melodious nocturnal song -01560280 05 n 02 thrush_nightingale 0 Luscinia_luscinia 0 002 @ 01557185 n 0000 #m 01559964 n 0000 | large nightingale of eastern Europe -01560419 05 n 01 bulbul 0 001 @ 01560105 n 0000 | nightingale spoken of in Persian poetry -01560511 05 n 02 Saxicola 0 genus_Saxicola 0 003 @ 01507175 n 0000 #m 01556671 n 0000 %m 01560636 n 0000 | Old World chats -01560636 05 n 02 Old_World_chat 0 chat 1 004 @ 01557185 n 0000 #m 01560511 n 0000 ~ 01560793 n 0000 ~ 01560935 n 0000 | songbirds having a chattering call -01560793 05 n 02 stonechat 0 Saxicola_torquata 0 001 @ 01560636 n 0000 | common European chat with black plumage and a reddish-brown breast -01560935 05 n 02 whinchat 0 Saxicola_rubetra 0 001 @ 01560636 n 0000 | brown-and-buff European songbird of grassy meadows -01561059 05 n 02 Myadestes 0 genus_Myadestes 0 003 @ 01507175 n 0000 #m 01556671 n 0000 %m 01561181 n 0000 | solitaires -01561181 05 n 01 solitaire 1 002 @ 01557185 n 0000 #m 01561059 n 0000 | a dull grey North American thrush noted for its beautiful song -01561318 05 n 02 Phoenicurus 0 genus_Phoenicurus 0 003 @ 01507175 n 0000 #m 01556671 n 0000 %m 01561452 n 0000 | Old World thrushes -01561452 05 n 02 redstart 1 redtail 2 002 @ 01557185 n 0000 #m 01561318 n 0000 | European songbird with a reddish breast and tail; related to Old World robins -01561613 05 n 02 Oenanthe 0 genus_Oenanthe 0 003 @ 01507175 n 0000 #m 01556671 n 0000 %m 01561732 n 0000 | wheatears -01561732 05 n 01 wheatear 0 002 @ 01557185 n 0000 #m 01561613 n 0000 | small songbird of northern America and Eurasia having a distinctive white rump -01561884 05 n 02 Sialia 0 genus_Sialia 0 003 @ 01507175 n 0000 #m 01557028 n 0000 %m 01562014 n 0000 | North American bluebirds -01562014 05 n 01 bluebird 1 002 @ 01557185 n 0000 #m 01561884 n 0000 | blue North American songbird -01562116 05 n 02 Erithacus 0 genus_Erithacus 0 004 @ 01507175 n 0000 #m 01556671 n 0000 %m 01562265 n 0000 %m 01562451 n 0000 | Old World thrushes -01562265 05 n 05 robin 2 redbreast 0 robin_redbreast 2 Old_World_robin 0 Erithacus_rubecola 0 002 @ 01557185 n 0000 #m 01562116 n 0000 | small Old World songbird with a reddish breast -01562451 05 n 02 bluethroat 0 Erithacus_svecicus 0 002 @ 01557185 n 0000 #m 01562116 n 0000 | songbird of northern Europe and Asia -01562584 05 n 02 Sylviidae 0 family_Sylviidae 0 010 @ 01504437 n 0000 #m 01524885 n 0000 %m 01563313 n 0000 %m 01563579 n 0000 %m 01564394 n 0000 %m 01564630 n 0000 %m 01565238 n 0000 %m 01565480 n 0000 %m 01565804 n 0000 %m 01566082 n 0000 | in some classifications considered a subfamily (Sylviinae) of the family Muscicapidae: Old World (true) warblers; American kinglets and gnatcatchers -01562978 05 n 02 Sylviinae 0 subfamily_Sylviinae 0 002 @ 01504437 n 0000 #m 01555586 n 0000 | alternative classification for the Old World warblers -01563128 05 n 01 warbler 0 007 @ 01525720 n 0000 ~ 01563449 n 0000 ~ 01563746 n 0000 ~ 01564394 n 0000 ~ 01564914 n 0000 ~ 01565078 n 0000 ~ 01567133 n 0000 | a small active songbird -01563313 05 n 02 Polioptila 0 genus_Polioptila 0 003 @ 01507175 n 0000 #m 01562584 n 0000 %m 01563449 n 0000 | New World gnatcatchers -01563449 05 n 01 gnatcatcher 0 002 @ 01563128 n 0000 #m 01563313 n 0000 | very small North American and South American warblers -01563579 05 n 02 Regulus 0 genus_Regulus 0 003 @ 01507175 n 0000 #m 01562584 n 0000 %m 01563746 n 0000 | a genus of birds of the family Sylviidae including kinglets -01563746 05 n 01 kinglet 0 005 @ 01563128 n 0000 #m 01563579 n 0000 ~ 01563945 n 0000 ~ 01564101 n 0000 ~ 01564217 n 0000 | small birds resembling warblers but having some of the habits of titmice -01563945 05 n 03 goldcrest 0 golden-crested_kinglet 0 Regulus_regulus 0 001 @ 01563746 n 0000 | European kinglet with a black-bordered yellow crown patch -01564101 05 n 02 gold-crowned_kinglet 0 Regulus_satrata 0 001 @ 01563746 n 0000 | American golden-crested kinglet -01564217 05 n 03 ruby-crowned_kinglet 0 ruby-crowned_wren 0 Regulus_calendula 0 001 @ 01563746 n 0000 | American kinglet with a notable song and in the male a red crown patch -01564394 05 n 02 Old_World_warbler 0 true_warbler 0 007 @ 01563128 n 0000 #m 01562584 n 0000 ~ 01564773 n 0000 ~ 01565345 n 0000 ~ 01565599 n 0000 ~ 01565930 n 0000 ~ 01566207 n 0000 | small active brownish or greyish Old World birds -01564630 05 n 02 Silvia 0 genus_Silvia 0 003 @ 01507175 n 0000 #m 01562584 n 0000 %m 01564773 n 0000 | type genus of the Sylviidae: warblers -01564773 05 n 02 blackcap 1 Silvia_atricapilla 0 002 @ 01564394 n 0000 #m 01564630 n 0000 | small brownish-grey warbler with a black crown -01564914 05 n 03 greater_whitethroat 0 whitethroat 1 Sylvia_communis 0 001 @ 01563128 n 0000 | greyish-brown Old World warbler with a white throat and underparts -01565078 05 n 03 lesser_whitethroat 0 whitethroat 2 Sylvia_curruca 0 001 @ 01563128 n 0000 | Old World warbler similar to the greater whitethroat but smaller -01565238 05 n 02 Phylloscopus 0 genus_Phylloscopus 0 002 @ 01507175 n 0000 #m 01562584 n 0000 | warblers -01565345 05 n 02 wood_warbler 2 Phylloscopus_sibilatrix 0 001 @ 01564394 n 0000 | European woodland warbler with dull yellow plumage -01565480 05 n 02 Acrocephalus 0 genus_Acrocephalus 0 002 @ 01507175 n 0000 #m 01562584 n 0000 | a genus of Sylviidae -01565599 05 n 05 sedge_warbler 0 sedge_bird 0 sedge_wren 1 reedbird 2 Acrocephalus_schoenobaenus 0 001 @ 01564394 n 0000 | small European warbler that breeds among reeds and wedges and winters in Africa -01565804 05 n 02 Prinia 0 genus_Prinia 0 003 @ 01507175 n 0000 #m 01562584 n 0000 %m 01565930 n 0000 | a genus of Sylviidae -01565930 05 n 01 wren_warbler 0 002 @ 01564394 n 0000 #m 01565804 n 0000 | small Asiatic and African bird; constructs nests like those of tailorbirds -01566082 05 n 02 Orthotomus 0 genus_Orthotomus 0 003 @ 01507175 n 0000 #m 01562584 n 0000 %m 01566207 n 0000 | tailorbirds -01566207 05 n 02 tailorbird 0 Orthotomus_sutorius 0 002 @ 01564394 n 0000 #m 01566082 n 0000 | tropical Asian warbler that stitches leaves together to form and conceal its nest -01566386 05 n 02 Timaliidae 0 family_Timaliidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01566509 n 0000 | babblers -01566509 05 n 02 Timalia 0 genus_Timalia 0 003 @ 01507175 n 0000 #m 01566386 n 0000 %m 01566645 n 0000 | type genus of the Timaliidae -01566645 05 n 02 babbler 0 cackler 2 003 @ 01525720 n 0000 #m 01566509 n 0000 + 01056369 v 0201 | any of various insectivorous Old World birds with a loud incessant song; in some classifications considered members of the family Muscicapidae -01566888 05 n 02 Parulidae 0 family_Parulidae 0 009 @ 01504437 n 0000 #m 01524885 n 0000 %m 01567133 n 0000 %m 01567530 n 0000 %m 01568019 n 0000 %m 01568493 n 0000 %m 01569713 n 0000 %m 01570112 n 0000 %m 01570549 n 0000 | New World warblers -01567133 05 n 02 New_World_warbler 0 wood_warbler 1 015 @ 01563128 n 0000 #m 01566888 n 0000 ~ 01567678 n 0000 ~ 01567879 n 0000 ~ 01568132 n 0000 ~ 01568720 n 0000 ~ 01568892 n 0000 ~ 01569060 n 0000 ~ 01569262 n 0000 ~ 01569423 n 0000 ~ 01569566 n 0000 ~ 01569836 n 0000 ~ 01570267 n 0000 ~ 01570421 n 0000 ~ 01570676 n 0000 | small bright-colored American songbird with a weak unmusical song -01567530 05 n 02 Parula 0 genus_Parula 0 003 @ 01507175 n 0000 #m 01566888 n 0000 %m 01567678 n 0000 | type genus of the Parulidae: wood warblers -01567678 05 n 03 parula_warbler 0 northern_parula 0 Parula_americana 0 002 @ 01567133 n 0000 #m 01567530 n 0000 | small grey-blue wood warbler with yellow throat and breast; of eastern North America -01567879 05 n 03 Wilson's_warbler 0 Wilson's_blackcap 0 Wilsonia_pusilla 0 001 @ 01567133 n 0000 | yellow wood warbler with a black crown -01568019 05 n 02 Setophaga 0 genus_Setophaga 0 002 @ 01507175 n 0000 #m 01566888 n 0000 | a genus of Parulidae -01568132 05 n 01 flycatching_warbler 0 002 @ 01567133 n 0000 ~ 01568294 n 0000 | any of numerous American wood warblers that feed on insects caught on the wing -01568294 05 n 03 American_redstart 0 redstart 2 Setophaga_ruticilla 0 001 @ 01568132 n 0000 | flycatching warbler of eastern North America the male having bright orange on sides and wings and tail -01568493 05 n 02 Dendroica 0 genus_Dendroica 0 008 @ 01507175 n 0000 #m 01566888 n 0000 %m 01568720 n 0000 %m 01568892 n 0000 %m 01569060 n 0000 %m 01569262 n 0000 %m 01569423 n 0000 %m 01569566 n 0000 | a genus of Parulidae -01568720 05 n 02 Cape_May_warbler 0 Dendroica_tigrina 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | North American wood warbler; olive green and yellow striped with black -01568892 05 n 04 yellow_warbler 0 golden_warbler 0 yellowbird 2 Dendroica_petechia 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | yellow-throated American wood warbler -01569060 05 n 03 Blackburn 0 Blackburnian_warbler 0 Dendroica_fusca 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | black-and-white North American wood warbler having an orange-and-black head and throat -01569262 05 n 03 Audubon's_warbler 0 Audubon_warbler 0 Dendroica_auduboni 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | common warbler of western North America -01569423 05 n 03 myrtle_warbler 0 myrtle_bird 0 Dendroica_coronata 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | similar to Audubon's warbler -01569566 05 n 02 blackpoll 0 Dendroica_striate 0 002 @ 01567133 n 0000 #m 01568493 n 0000 | North American warbler having a black-and-white head -01569713 05 n 02 Icteria 0 genus_Icteria 0 003 @ 01507175 n 0000 #m 01566888 n 0000 %m 01569836 n 0000 | New World chats -01569836 05 n 02 New_World_chat 0 chat 2 003 @ 01567133 n 0000 #m 01569713 n 0000 ~ 01569971 n 0000 | birds having a chattering call -01569971 05 n 02 yellow-breasted_chat 0 Icteria_virens 0 001 @ 01569836 n 0000 | American warbler noted for imitating songs of other birds -01570112 05 n 02 Seiurus 0 genus_Seiurus 0 004 @ 01507175 n 0000 #m 01566888 n 0000 %m 01570267 n 0000 %m 01570421 n 0000 | ovenbirds and water thrushes -01570267 05 n 02 ovenbird 1 Seiurus_aurocapillus 0 002 @ 01567133 n 0000 #m 01570112 n 0000 | American warbler; builds a dome-shaped nest on the ground -01570421 05 n 01 water_thrush 0 002 @ 01567133 n 0000 #m 01570112 n 0000 | brownish North American warbler found near streams -01570549 05 n 02 Geothlypis 0 genus_Geothlypis 0 003 @ 01507175 n 0000 #m 01566888 n 0000 %m 01570676 n 0000 | yellowthroats -01570676 05 n 01 yellowthroat 0 003 @ 01567133 n 0000 #m 01570549 n 0000 ~ 01570839 n 0000 | small olive-colored American warblers with yellow breast and throat -01570839 05 n 03 common_yellowthroat 0 Maryland_yellowthroat 0 Geothlypis_trichas 0 001 @ 01570676 n 0000 | an American warbler -01570969 05 n 02 Paradisaeidae 0 family_Paradisaeidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01571126 n 0000 %m 01571297 n 0000 | birds of paradise -01571126 05 n 01 bird_of_paradise 0 003 @ 01525720 n 0000 #m 01570969 n 0000 ~ 01571410 n 0000 | any of numerous brilliantly colored plumed birds of the New Guinea area -01571297 05 n 02 Ptloris 0 genus_Ptloris 0 002 @ 01507175 n 0000 #m 01570969 n 0000 | a genus of Paradisaeidae -01571410 05 n 02 riflebird 0 Ptloris_paradisea 0 001 @ 01571126 n 0000 | velvety black Australian bird of paradise with green and purple iridescence on head and tail -01571578 05 n 02 Icteridae 0 family_Icteridae 0 011 @ 01504437 n 0000 #m 01524885 n 0000 %m 01571904 n 0000 %m 01572174 n 0000 %m 01572910 n 0000 %m 01573483 n 0000 %m 01573775 n 0000 %m 01574270 n 0000 %m 01574671 n 0000 %m 01574997 n 0000 %m 01575270 n 0000 | American orioles; American blackbirds; bobolinks; meadowlarks -01571904 05 n 03 New_World_oriole 0 American_oriole 0 oriole 1 008 @ 01525720 n 0000 #m 01571578 n 0000 ~ 01572328 n 0000 ~ 01572782 n 0000 ~ 01573074 n 0000 ~ 01573627 n 0000 ~ 01573898 n 0000 ~ 01574045 n 0000 | American songbird; male is black and orange or yellow -01572174 05 n 02 Icterus 0 genus_Icterus 0 004 @ 01507175 n 0000 #m 01571578 n 0000 %m 01572328 n 0000 %m 01572782 n 0000 | type genus of the Icteridae -01572328 05 n 02 northern_oriole 0 Icterus_galbula 0 004 @ 01571904 n 0000 #m 01572174 n 0000 ~ 01572489 n 0000 ~ 01572654 n 0000 | a kind of New World oriole -01572489 05 n 05 Baltimore_oriole 0 Baltimore_bird 0 hangbird 0 firebird 1 Icterus_galbula_galbula 0 001 @ 01572328 n 0000 | eastern subspecies of northern oriole -01572654 05 n 02 Bullock's_oriole 0 Icterus_galbula_bullockii 0 001 @ 01572328 n 0000 | western subspecies of northern oriole -01572782 05 n 02 orchard_oriole 0 Icterus_spurius 0 002 @ 01571904 n 0000 #m 01572174 n 0000 | the male is chestnut-and-black -01572910 05 n 02 Sturnella 0 genus_Sturnella 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01573074 n 0000 | a genus of passerine birds including the meadowlarks -01573074 05 n 02 meadowlark 0 lark 3 004 @ 01571904 n 0000 #m 01572910 n 0000 ~ 01573240 n 0000 ~ 01573360 n 0000 | North American songbirds having a yellow breast -01573240 05 n 02 eastern_meadowlark 0 Sturnella_magna 0 001 @ 01573074 n 0000 | a meadowlark of eastern North America -01573360 05 n 02 western_meadowlark 0 Sturnella_neglecta 0 001 @ 01573074 n 0000 | a meadowlark of western North America -01573483 05 n 02 Cacicus 0 genus_Cacicus 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01573627 n 0000 | a genus of tropical American orioles -01573627 05 n 02 cacique 0 cazique 0 002 @ 01571904 n 0000 #m 01573483 n 0000 | black-and-red or black-and-yellow orioles of the American tropics -01573775 05 n 02 Dolichonyx 0 genus_Dolichonyx 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01573898 n 0000 | bobolinks -01573898 05 n 04 bobolink 0 ricebird 1 reedbird 1 Dolichonyx_oryzivorus 0 002 @ 01571904 n 0000 #m 01573775 n 0000 | migratory American songbird -01574045 05 n 02 New_World_blackbird 0 blackbird 1 005 @ 01571904 n 0000 ~ 01574390 n 0000 ~ 01574801 n 0000 ~ 01575117 n 0000 ~ 01575401 n 0000 | any bird of the family Icteridae whose male is black or predominantly black -01574270 05 n 02 Quiscalus 0 genus_Quiscalus 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01574390 n 0000 | grackles -01574390 05 n 02 grackle 1 crow_blackbird 0 003 @ 01574045 n 0000 #m 01574270 n 0000 ~ 01574560 n 0000 | long-tailed American blackbird having iridescent black plumage -01574560 05 n 02 purple_grackle 0 Quiscalus_quiscula 0 001 @ 01574390 n 0000 | eastern United States grackle -01574671 05 n 02 Euphagus 0 genus_Euphagus 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01574801 n 0000 | a genus of Icteridae -01574801 05 n 03 rusty_blackbird 0 rusty_grackle 0 Euphagus_carilonus 0 002 @ 01574045 n 0000 #m 01574671 n 0000 | North American blackbird whose bluish-black plumage is rusty-edged in the fall -01574997 05 n 02 Molothrus 0 genus_Molothrus 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01575117 n 0000 | cowbirds -01575117 05 n 01 cowbird 0 002 @ 01574045 n 0000 #m 01574997 n 0000 | North American blackbird that follows cattle and lays eggs in other birds' nests -01575270 05 n 02 Agelaius 0 genus_Agelaius 0 003 @ 01507175 n 0000 #m 01571578 n 0000 %m 01575401 n 0000 | red-winged blackbirds -01575401 05 n 03 red-winged_blackbird 0 redwing 2 Agelaius_phoeniceus 0 002 @ 01574045 n 0000 #m 01575270 n 0000 | North American blackbird with scarlet patches on the wings -01575577 05 n 02 Oriolidae 0 family_Oriolidae 0 005 @ 01504437 n 0000 #m 01524885 n 0000 %m 01575745 n 0000 %m 01575941 n 0000 %m 01576212 n 0000 | Old World orioles -01575745 05 n 02 Old_World_oriole 0 oriole 2 004 @ 01525720 n 0000 #m 01575577 n 0000 ~ 01576076 n 0000 ~ 01576358 n 0000 | mostly tropical songbird; the male is usually bright orange and black -01575941 05 n 02 Oriolus 0 genus_Oriolus 0 003 @ 01507175 n 0000 #m 01575577 n 0000 %m 01576076 n 0000 | type genus of the Oriolidae -01576076 05 n 02 golden_oriole 0 Oriolus_oriolus 0 002 @ 01575745 n 0000 #m 01575941 n 0000 | bright yellow songbird with black wings -01576212 05 n 02 Sphecotheres 0 genus_Sphecotheres 0 003 @ 01507175 n 0000 #m 01575577 n 0000 %m 01576358 n 0000 | a genus of Old World orioles -01576358 05 n 01 fig-bird 0 002 @ 01575745 n 0000 #m 01576212 n 0000 | greenish-yellow Australian oriole feeding chiefly on figs and other fruits -01576506 05 n 02 Sturnidae 0 family_Sturnidae 0 006 @ 01504437 n 0000 #m 01524885 n 0000 %m 01576695 n 0000 %m 01576863 n 0000 %m 01577818 n 0000 %m 01578086 n 0000 | Old World starlings -01576695 05 n 01 starling 0 005 @ 01525720 n 0000 #m 01576506 n 0000 ~ 01577035 n 0000 ~ 01577458 n 0000 ~ 01577659 n 0000 | gregarious birds native to the Old World -01576863 05 n 02 Sturnus 0 genus_Sturnus 0 004 @ 01507175 n 0000 #m 01576506 n 0000 %m 01577035 n 0000 %m 01577265 n 0000 | type genus of the Sturnidae: common starlings -01577035 05 n 02 common_starling 0 Sturnus_vulgaris 0 002 @ 01576695 n 0000 #m 01576863 n 0000 | gregarious bird having plumage with dark metallic gloss; builds nests around dwellings and other structures; naturalized worldwide -01577265 05 n 02 Pastor 0 subgenus_Pastor 0 003 @ 01507175 n 0000 #m 01576863 n 0000 %m 01577458 n 0000 | only the rose-colored starlings; in some classifications considered a separate genus -01577458 05 n 04 rose-colored_starling 0 rose-colored_pastor 0 Pastor_sturnus 0 Pastor_roseus 0 002 @ 01576695 n 0000 #m 01577265 n 0000 | glossy black bird with pink back and abdomen; chiefly Asian -01577659 05 n 06 myna 0 mynah 0 mina 0 minah 0 myna_bird 0 mynah_bird 0 003 @ 01576695 n 0000 ~ 01577941 n 0000 ~ 01578180 n 0000 | tropical Asian starlings -01577818 05 n 02 Acridotheres 0 genus_Acridotheres 0 003 @ 01507175 n 0000 #m 01576506 n 0000 %m 01577941 n 0000 | mynas -01577941 05 n 02 crested_myna 0 Acridotheres_tristis 0 002 @ 01577659 n 0000 #m 01577818 n 0000 | dark brown crested bird of southeastern Asia -01578086 05 n 02 Gracula 0 genus_Gracula 0 002 @ 01507175 n 0000 #m 01576506 n 0000 | mynas -01578180 05 n 04 hill_myna 0 Indian_grackle 0 grackle 2 Gracula_religiosa 0 001 @ 01577659 n 0000 | glossy black Asiatic starling often taught to mimic speech -01578341 05 n 02 Corvidae 0 family_Corvidae 0 007 @ 01504437 n 0000 #m 01524885 n 0000 %m 01578575 n 0000 %m 01578821 n 0000 %m 01579868 n 0000 %m 01581607 n 0000 %m 01582111 n 0000 | crow; raven; rook; jackdaw; chough; magpie; jay -01578575 05 n 01 corvine_bird 0 010 @ 01525720 n 0000 #m 01578341 n 0000 ~ 01579028 n 0000 ~ 01579260 n 0000 ~ 01579410 n 0000 ~ 01579578 n 0000 ~ 01579729 n 0000 ~ 01580077 n 0000 ~ 01581730 n 0000 ~ 01582220 n 0000 | birds of the crow family -01578821 05 n 02 Corvus 0 genus_Corvus 0 006 @ 01507175 n 0000 #m 01578341 n 0000 %m 01579028 n 0000 %m 01579260 n 0000 %m 01579410 n 0000 %m 01579578 n 0000 | type genus of the Corvidae: crows and ravens -01579028 05 n 01 crow 0 003 @ 01578575 n 0000 #m 01578821 n 0000 ~ 01579149 n 0000 | black birds having a raucous call -01579149 05 n 02 American_crow 0 Corvus_brachyrhyncos 0 001 @ 01579028 n 0000 | common crow of North America -01579260 05 n 02 raven 0 Corvus_corax 0 002 @ 01578575 n 0000 #m 01578821 n 0000 | large black bird with a straight bill and long wedge-shaped tail -01579410 05 n 02 rook 0 Corvus_frugilegus 0 002 @ 01578575 n 0000 #m 01578821 n 0000 | common gregarious Old World bird about the size and color of the American crow -01579578 05 n 03 jackdaw 0 daw 0 Corvus_monedula 0 002 @ 01578575 n 0000 #m 01578821 n 0000 | common black-and-grey Eurasian bird noted for thievery -01579729 05 n 01 chough 0 001 @ 01578575 n 0000 | a European corvine bird of small or medium size with red legs and glossy black plumage -01579868 05 n 02 Garrulinae 0 subfamily_Garrulinae 0 006 @ 01504437 n 0000 #m 01578341 n 0000 %m 01580077 n 0000 %m 01580225 n 0000 %m 01580644 n 0000 %m 01581041 n 0000 | subfamily of the crow family: jays -01580077 05 n 01 jay 0 005 @ 01578575 n 0000 #m 01579868 n 0000 ~ 01580379 n 0000 ~ 01580772 n 0000 ~ 01581166 n 0000 | crested largely blue bird -01580225 05 n 02 Garrulus 0 genus_Garrulus 0 003 @ 01507175 n 0000 #m 01579868 n 0000 %m 01580379 n 0000 | type genus of the Garrulinae: Old World jays -01580379 05 n 01 Old_World_jay 0 003 @ 01580077 n 0000 #m 01580225 n 0000 ~ 01580490 n 0000 | a European jay -01580490 05 n 02 common_European_jay 0 Garullus_garullus 0 001 @ 01580379 n 0000 | fawn-colored jay with black-and-white crest and blue-and-black wings -01580644 05 n 02 Cyanocitta 0 genus_Cyanocitta 0 003 @ 01507175 n 0000 #m 01579868 n 0000 %m 01580870 n 0000 | New World jays -01580772 05 n 01 New_World_jay 0 002 @ 01580077 n 0000 ~ 01580870 n 0000 | a North American jay -01580870 05 n 03 blue_jay 0 jaybird 0 Cyanocitta_cristata 0 002 @ 01580772 n 0000 #m 01580644 n 0000 | common jay of eastern North America; bright blue with grey breast -01581041 05 n 02 Perisoreus 0 genus_Perisoreus 0 003 @ 01507175 n 0000 #m 01579868 n 0000 %m 01581166 n 0000 | Canada jays -01581166 05 n 06 Canada_jay 0 grey_jay 0 gray_jay 0 camp_robber 0 whisker_jack 0 Perisoreus_canadensis 0 003 @ 01580077 n 0000 #m 01581041 n 0000 ~ 01581434 n 0000 | a jay of northern North America with black-capped head and no crest; noted for boldness in thievery -01581434 05 n 02 Rocky_Mountain_jay 0 Perisoreus_canadensis_capitalis 0 001 @ 01581166 n 0000 | a Canada jay with a white head; widely distributed from Montana to Arizona -01581607 05 n 02 Nucifraga 0 genus_Nucifraga 0 003 @ 01507175 n 0000 #m 01578341 n 0000 %m 01581730 n 0000 | nutcrackers -01581730 05 n 01 nutcracker 0 004 @ 01578575 n 0000 #m 01581607 n 0000 ~ 01581874 n 0000 ~ 01581984 n 0000 | speckled birds that feed on nuts -01581874 05 n 02 common_nutcracker 0 Nucifraga_caryocatactes 0 001 @ 01581730 n 0000 | Old World nutcracker -01581984 05 n 02 Clark's_nutcracker 0 Nucifraga_columbiana 0 001 @ 01581730 n 0000 | nutcracker of the western United States -01582111 05 n 02 Pica 0 genus_Pica 0 003 @ 01507175 n 0000 #m 01578341 n 0000 %m 01582220 n 0000 | magpies -01582220 05 n 01 magpie 0 004 @ 01578575 n 0000 #m 01582111 n 0000 ~ 01582398 n 0000 ~ 01582498 n 0000 | long-tailed black-and-white crow that utters a raucous chattering call -01582398 05 n 02 European_magpie 0 Pica_pica 0 001 @ 01582220 n 0000 | a common magpie of Eurasia -01582498 05 n 02 American_magpie 0 Pica_pica_hudsonia 0 001 @ 01582220 n 0000 | a magpie of Rocky Mountains in North America -01582625 05 n 02 Cracticidae 0 family_Cracticidae 0 006 @ 01504437 n 0000 #m 01524885 n 0000 %m 01582856 n 0000 %m 01583043 n 0000 %m 01583373 n 0000 %m 01583636 n 0000 | Australian birds formerly included in the family Laniidae -01582856 05 n 01 Australian_magpie 0 005 @ 01525720 n 0000 #m 01582625 n 0000 ~ 01583209 n 0000 ~ 01583495 n 0000 ~ 01583828 n 0000 | black-and-white oscine birds that resemble magpies -01583043 05 n 02 Cracticus 0 genus_Cracticus 0 003 @ 01507175 n 0000 #m 01582625 n 0000 %m 01583209 n 0000 | type genus of the Cracticidae: Australian butcherbirds -01583209 05 n 01 butcherbird 2 002 @ 01582856 n 0000 #m 01583043 n 0000 | large carnivorous Australian bird with the shrike-like habit of impaling prey on thorns -01583373 05 n 02 Strepera 0 genus_Strepera 0 003 @ 01507175 n 0000 #m 01582625 n 0000 %m 01583495 n 0000 | bell magpies -01583495 05 n 02 currawong 0 bell_magpie 0 002 @ 01582856 n 0000 #m 01583373 n 0000 | bluish black fruit-eating bird with a bell-like call -01583636 05 n 02 Gymnorhina 0 genus_Gymnorhina 0 003 @ 01507175 n 0000 #m 01582625 n 0000 %m 01583828 n 0000 | in some classifications placed in the family Laniidae: Australian piping crows -01583828 05 n 03 piping_crow 0 piping_crow-shrike 0 Gymnorhina_tibicen 0 002 @ 01582856 n 0000 #m 01583636 n 0000 | crow-sized black-and-white bird; a good mimic often caged -01584004 05 n 02 Troglodytidae 0 family_Troglodytidae 0 008 @ 01504437 n 0000 #m 01523908 n 0000 %m 01584225 n 0000 %m 01584529 n 0000 %m 01584994 n 0000 %m 01585577 n 0000 %m 01585890 n 0000 %m 01586170 n 0000 | wrens -01584225 05 n 02 wren 0 jenny_wren 0 008 @ 01524359 n 0000 #m 01584004 n 0000 ~ 01584695 n 0000 ~ 01584853 n 0000 ~ 01585121 n 0000 ~ 01585715 n 0000 ~ 01586020 n 0000 ~ 01586374 n 0000 | any of several small active brown birds of the northern hemisphere with short upright tails; they feed on insects -01584529 05 n 02 Troglodytes 0 genus_Troglodytes 0 004 @ 01507175 n 0000 #m 01584004 n 0000 %m 01584695 n 0000 %m 01584853 n 0000 | type genus of the Troglodytidae -01584695 05 n 02 winter_wren 0 Troglodytes_troglodytes 0 002 @ 01584225 n 0000 #m 01584529 n 0000 | small wren of coniferous forests of northern hemisphere -01584853 05 n 02 house_wren 0 Troglodytes_aedon 0 002 @ 01584225 n 0000 #m 01584529 n 0000 | common American wren that nests around houses -01584994 05 n 02 Cistothorus 0 genus_Cistothorus 0 003 @ 01507175 n 0000 #m 01584004 n 0000 %m 01585121 n 0000 | marsh wrens -01585121 05 n 01 marsh_wren 0 004 @ 01584225 n 0000 #m 01584994 n 0000 ~ 01585287 n 0000 ~ 01585422 n 0000 | a wren of the genus Cistothorus that frequents marshes -01585287 05 n 02 long-billed_marsh_wren 0 Cistothorus_palustris 0 001 @ 01585121 n 0000 | American wren that inhabits tall reed beds -01585422 05 n 03 sedge_wren 2 short-billed_marsh_wren 0 Cistothorus_platensis 0 001 @ 01585121 n 0000 | small American wren inhabiting wet sedgy meadows -01585577 05 n 02 Salpinctes 0 genus_Salpinctes 0 003 @ 01507175 n 0000 #m 01584004 n 0000 %m 01585715 n 0000 | a genus of Troglodytidae -01585715 05 n 02 rock_wren 1 Salpinctes_obsoletus 0 002 @ 01584225 n 0000 #m 01585577 n 0000 | wren inhabiting badlands and mesa country of western United States and Mexico -01585890 05 n 02 Thryothorus 0 genus_Thryothorus 0 003 @ 01507175 n 0000 #m 01584004 n 0000 %m 01586020 n 0000 | Carolina wrens -01586020 05 n 02 Carolina_wren 0 Thryothorus_ludovicianus 0 002 @ 01584225 n 0000 #m 01585890 n 0000 | large United States wren with a musical call -01586170 05 n 04 Campylorhynchus 0 genus_Campylorhynchus 0 Heleodytes 0 genus_Heleodytes 0 003 @ 01507175 n 0000 #m 01584004 n 0000 %m 01586374 n 0000 | alternative classifications for the cactus wrens -01586374 05 n 01 cactus_wren 0 002 @ 01584225 n 0000 #m 01586170 n 0000 | large harsh-voiced American wren of arid regions of the United States southwest and Mexico -01586541 05 n 02 Mimidae 0 family_Mimidae 0 006 @ 01504437 n 0000 #m 01524885 n 0000 %m 01586791 n 0000 %m 01587148 n 0000 %m 01587406 n 0000 %m 01587713 n 0000 | sometimes considered a subfamily of Troglodytidae: mockingbirds; catbirds; thrashers -01586791 05 n 02 Mimus 0 genus_Mimus 0 003 @ 01507175 n 0000 #m 01586541 n 0000 %m 01586941 n 0000 | type genus of the family Mimidae: mockingbirds -01586941 05 n 03 mockingbird 0 mocker 0 Mimus_polyglotktos 0 002 @ 01525720 n 0000 #m 01586791 n 0000 | long-tailed grey-and-white songbird of the southern United States able to mimic songs of other birds -01587148 05 n 02 Melanotis 0 genus_Melanotis 0 003 @ 01507175 n 0000 #m 01586541 n 0000 %m 01587278 n 0000 | a genus of Mimidae -01587278 05 n 02 blue_mockingbird 0 Melanotis_caerulescens 0 002 @ 01525720 n 0000 #m 01587148 n 0000 | mockingbird of Mexico -01587406 05 n 02 Dumetella 0 genus_Dumetella 0 003 @ 01507175 n 0000 #m 01586541 n 0000 %m 01587526 n 0000 | catbirds -01587526 05 n 04 catbird 1 grey_catbird 0 gray_catbird 0 Dumetella_carolinensis 0 002 @ 01525720 n 0000 #m 01587406 n 0000 | North American songbird whose call resembles a cat's mewing -01587713 05 n 02 Toxostoma 0 genus_Toxostoma 0 003 @ 01507175 n 0000 #m 01586541 n 0000 %m 01587834 n 0000 | thrashers -01587834 05 n 02 thrasher 0 mocking_thrush 0 003 @ 01525720 n 0000 #m 01587713 n 0000 ~ 01588002 n 0000 | thrush-like American songbird able to mimic other birdsongs -01588002 05 n 03 brown_thrasher 0 brown_thrush 0 Toxostoma_rufums 0 001 @ 01587834 n 0000 | common large songbird of eastern United States having reddish-brown plumage -01588172 05 n 04 Xenicidae 0 family_Xenicidae 0 Acanthisittidae 0 family_Acanthisittidae 0 005 @ 01504437 n 0000 #m 01524885 n 0000 %m 01588431 n 0000 %m 01588589 n 0000 %m 01588858 n 0000 | alternative names for the family comprising the New Zealand wrens -01588431 05 n 01 New_Zealand_wren 0 004 @ 01525720 n 0000 #m 01588172 n 0000 ~ 01588725 n 0000 ~ 01588996 n 0000 | birds of New Zealand that resemble wrens -01588589 05 n 02 Xenicus 0 genus_Xenicus 0 003 @ 01507175 n 0000 #m 01588172 n 0000 %m 01588725 n 0000 | type genus for the Xenicidae -01588725 05 n 02 rock_wren 2 Xenicus_gilviventris 0 002 @ 01588431 n 0000 #m 01588589 n 0000 | short-tailed bird resembling a wren -01588858 05 n 02 Acanthisitta 0 genus_Acanthisitta 0 003 @ 01507175 n 0000 #m 01588172 n 0000 %m 01588996 n 0000 | a genus of Xenicidae -01588996 05 n 02 rifleman_bird 0 Acanthisitta_chloris 0 002 @ 01588431 n 0000 #m 01588858 n 0000 | small green-and-bronze bird -01589125 05 n 02 Certhiidae 0 family_Certhiidae 0 005 @ 01504437 n 0000 #m 01524885 n 0000 %m 01589286 n 0000 %m 01589582 n 0000 %m 01590042 n 0000 | creepers -01589286 05 n 02 creeper 0 tree_creeper 1 005 @ 01525720 n 0000 #m 01589125 n 0000 ~ 01589718 n 0000 ~ 01589893 n 0000 ~ 01590220 n 0000 | any of various small insectivorous birds of the northern hemisphere that climb up a tree trunk supporting themselves on stiff tail feathers and their feet -01589582 05 n 02 Certhia 0 genus_Certhia 0 003 @ 01507175 n 0000 #m 01589125 n 0000 %m 01589718 n 0000 | type genus of the Certhiidae -01589718 05 n 03 brown_creeper 0 American_creeper 0 Certhia_americana 0 002 @ 01589286 n 0000 #m 01589582 n 0000 | a common creeper in North America with a down-curved bill -01589893 05 n 02 European_creeper 0 Certhia_familiaris 0 001 @ 01589286 n 0000 | common European brown-and-buff tree creeper with down-curved bill -01590042 05 n 02 Tichodroma 0 genus_Tichodroma 0 003 @ 01507175 n 0000 #m 01589125 n 0000 %m 01590220 n 0000 | wall creepers; in some classifications placed in family Sittidae -01590220 05 n 03 wall_creeper 0 tichodrome 0 Tichodroma_muriaria 0 002 @ 01589286 n 0000 #m 01590042 n 0000 | crimson-and-grey songbird that inhabits town walls and mountain cliffs of southern Eurasia and northern Africa -01590443 05 n 02 Sittidae 0 family_Sittidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01590583 n 0000 %m 01590837 n 0000 | nuthatches -01590583 05 n 02 nuthatch 0 nutcracker 2 005 @ 01525720 n 0000 #m 01590443 n 0000 ~ 01591005 n 0000 ~ 01591123 n 0000 ~ 01591301 n 0000 | any of various small short-tailed songbirds with strong feet and a sharp beak that feed on small nuts and insects -01590837 05 n 02 Sitta 0 genus_Sitta 0 005 @ 01507175 n 0000 #m 01590443 n 0000 %m 01591005 n 0000 %m 01591123 n 0000 %m 01591301 n 0000 | type genus of the Sittidae -01591005 05 n 02 European_nuthatch 0 Sitta_europaea 0 002 @ 01590583 n 0000 #m 01590837 n 0000 | a kind of nuthatch -01591123 05 n 02 red-breasted_nuthatch 0 Sitta_canadensis 0 002 @ 01590583 n 0000 #m 01590837 n 0000 | bluish-grey nuthatch with reddish breast; of northern coniferous forests -01591301 05 n 02 white-breasted_nuthatch 0 Sitta_carolinensis 0 002 @ 01590583 n 0000 #m 01590837 n 0000 | bluish-grey nuthatch with black head and white breast; of eastern North America -01591490 05 n 02 Paridae 0 family_Paridae 0 007 @ 01504437 n 0000 #m 01524885 n 0000 %m 01591697 n 0000 %m 01591910 n 0000 %m 01592892 n 0000 %m 01593156 n 0000 %m 01593423 n 0000 | titmice and chickadees -01591697 05 n 02 titmouse 0 tit 0 008 @ 01525720 n 0000 #m 01591490 n 0000 ~ 01592084 n 0000 ~ 01592387 n 0000 ~ 01592694 n 0000 ~ 01593028 n 0000 ~ 01593282 n 0000 ~ 01593553 n 0000 | small insectivorous birds -01591910 05 n 02 Parus 0 genus_Parus 0 005 @ 01507175 n 0000 #m 01591490 n 0000 %m 01592084 n 0000 %m 01592387 n 0000 %m 01592694 n 0000 | type genus of the family Paridae -01592084 05 n 01 chickadee 0 004 @ 01591697 n 0000 #m 01591910 n 0000 ~ 01592257 n 0000 ~ 01592540 n 0000 | any of various small grey-and-black songbirds of North America -01592257 05 n 03 black-capped_chickadee 0 blackcap 2 Parus_atricapillus 0 001 @ 01592084 n 0000 | chickadee having a dark crown -01592387 05 n 02 tufted_titmouse 0 Parus_bicolor 0 002 @ 01591697 n 0000 #m 01591910 n 0000 | crested titmouse of eastern and midwestern United States -01592540 05 n 02 Carolina_chickadee 0 Parus_carolinensis 0 001 @ 01592084 n 0000 | southern United States chickadee similar to the blackcap but smaller -01592694 05 n 03 blue_tit 0 tomtit 0 Parus_caeruleus 0 002 @ 01591697 n 0000 #m 01591910 n 0000 | widely distributed European titmouse with bright cobalt blue wings and tail and crown of the head -01592892 05 n 02 Psaltriparus 0 genus_Psaltriparus 0 003 @ 01507175 n 0000 #m 01591490 n 0000 %m 01593028 n 0000 | a genus of Paridae -01593028 05 n 02 bushtit 0 bush_tit 0 002 @ 01591697 n 0000 #m 01592892 n 0000 | active grey titmice of western North America -01593156 05 n 02 Chamaea 0 genus_Chamaea 0 003 @ 01507175 n 0000 #m 01591490 n 0000 %m 01593282 n 0000 | a genus of Paridae -01593282 05 n 02 wren-tit 0 Chamaea_fasciata 0 002 @ 01591697 n 0000 #m 01593156 n 0000 | small brown bird of California resembling a wren -01593423 05 n 02 Auriparus 0 genus_Auriparus 0 003 @ 01507175 n 0000 #m 01591490 n 0000 %m 01593553 n 0000 | a genus of Paridae -01593553 05 n 02 verdin 0 Auriparus_flaviceps 0 002 @ 01591697 n 0000 #m 01593423 n 0000 | very small yellow-headed titmouse of western North America -01593705 05 n 02 Irenidae 0 family_Irenidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01593857 n 0000 | a family of birds of the suborder Oscines -01593857 05 n 02 Irena 0 genus_Irena 0 003 @ 01507175 n 0000 #m 01593705 n 0000 %m 01594004 n 0000 | type genus of the Irenidae: fairy bluebirds -01594004 05 n 02 fairy_bluebird 0 bluebird 2 002 @ 01525720 n 0000 #m 01593857 n 0000 | fruit-eating mostly brilliant blue songbird of the East Indies -01594157 05 n 02 Hirundinidae 0 family_Hirundinidae 0 007 @ 01504437 n 0000 #m 01524885 n 0000 %m 01594611 n 0000 %m 01595330 n 0000 %m 01595841 n 0000 %m 01596142 n 0000 %m 01596479 n 0000 | swallows and martins -01594372 05 n 01 swallow 0 006 @ 01525720 n 0000 ~ 01594787 n 0000 ~ 01594968 n 0000 ~ 01595168 n 0000 ~ 01595450 n 0000 ~ 01595624 n 0000 | small long-winged songbird noted for swift graceful flight and the regularity of its migrations -01594611 05 n 02 Hirundo 0 genus_Hirundo 0 005 @ 01507175 n 0000 #m 01594157 n 0000 %m 01594787 n 0000 %m 01594968 n 0000 %m 01595168 n 0000 | type genus of the Hirundinidae -01594787 05 n 03 barn_swallow 0 chimney_swallow 1 Hirundo_rustica 0 002 @ 01594372 n 0000 #m 01594611 n 0000 | common swallow of North America and Europe that nests in barns etc. -01594968 05 n 02 cliff_swallow 0 Hirundo_pyrrhonota 0 002 @ 01594372 n 0000 #m 01594611 n 0000 | North American swallow that lives in colonies and builds bottle-shaped mud nests on cliffs and walls -01595168 05 n 03 tree_swallow 1 tree_martin 0 Hirundo_nigricans 0 002 @ 01594372 n 0000 #m 01594611 n 0000 | of Australia and Polynesia; nests in tree cavities -01595330 05 n 02 Iridoprocne 0 genus_Iridoprocne 0 002 @ 01507175 n 0000 #m 01594157 n 0000 | a genus of Hirundinidae -01595450 05 n 03 white-bellied_swallow 0 tree_swallow 2 Iridoprocne_bicolor 0 001 @ 01594372 n 0000 | bluish-green-and-white North American swallow; nests in tree cavities -01595624 05 n 01 martin 0 004 @ 01594372 n 0000 ~ 01595974 n 0000 ~ 01596273 n 0000 ~ 01596608 n 0000 | any of various swallows with squarish or slightly forked tail and long pointed wings; migrate around Martinmas -01595841 05 n 02 Delichon 0 genus_Delichon 0 003 @ 01507175 n 0000 #m 01594157 n 0000 %m 01595974 n 0000 | a genus of Hirundinidae -01595974 05 n 02 house_martin 0 Delichon_urbica 0 002 @ 01595624 n 0000 #m 01595841 n 0000 | common small European martin that builds nests under the eaves of houses -01596142 05 n 02 Riparia 0 genus_Riparia 0 003 @ 01507175 n 0000 #m 01594157 n 0000 %m 01596273 n 0000 | a genus of Hirundinidae -01596273 05 n 04 bank_martin 0 bank_swallow 0 sand_martin 0 Riparia_riparia 0 002 @ 01595624 n 0000 #m 01596142 n 0000 | swallow of the northern hemisphere that nests in tunnels dug in clay or sand banks -01596479 05 n 02 Progne 0 genus_Progne 0 003 @ 01507175 n 0000 #m 01594157 n 0000 %m 01596608 n 0000 | a genus of Hirundinidae -01596608 05 n 02 purple_martin 0 Progne_subis 0 002 @ 01595624 n 0000 #m 01596479 n 0000 | large North American martin of which the male is blue-black -01596761 05 n 02 Artamidae 0 family_Artamidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01596887 n 0000 | wood swallows -01596887 05 n 02 Artamus 0 genus_Artamus 0 003 @ 01507175 n 0000 #m 01596761 n 0000 %m 01597022 n 0000 | type genus of the Artamidae -01597022 05 n 02 wood_swallow 0 swallow_shrike 0 002 @ 01525720 n 0000 #m 01596887 n 0000 | Australasian and Asiatic bird related to the shrikes and resembling a swallow -01597194 05 n 02 Thraupidae 0 family_Thraupidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01597336 n 0000 %m 01597551 n 0000 | tanagers -01597336 05 n 01 tanager 0 006 @ 01525720 n 0000 #m 01597194 n 0000 ~ 01597737 n 0000 ~ 01597906 n 0000 ~ 01598074 n 0000 ~ 01598271 n 0000 | any of numerous New World woodland birds having brightly colored males -01597551 05 n 02 Piranga 0 genus_Piranga 0 006 @ 01507175 n 0000 #m 01597194 n 0000 %m 01597737 n 0000 %m 01597906 n 0000 %m 01598074 n 0000 %m 01598271 n 0000 | a genus of Thraupidae -01597737 05 n 04 scarlet_tanager 0 Piranga_olivacea 0 redbird 2 firebird 2 002 @ 01597336 n 0000 #m 01597551 n 0000 | the male is bright red with black wings and tail -01597906 05 n 02 western_tanager 0 Piranga_ludoviciana 0 002 @ 01597336 n 0000 #m 01597551 n 0000 | of western North America; male is black and yellow and orange-red -01598074 05 n 03 summer_tanager 0 summer_redbird 0 Piranga_rubra 0 002 @ 01597336 n 0000 #m 01597551 n 0000 | of middle and southern United States; male is deep rose-red the female mostly yellow -01598271 05 n 02 hepatic_tanager 0 Piranga_flava_hepatica 0 002 @ 01597336 n 0000 #m 01597551 n 0000 | common tanager of southwestern United States and Mexico -01598432 05 n 02 Laniidae 0 family_Laniidae 0 005 @ 01504437 n 0000 #m 01524885 n 0000 %m 01598588 n 0000 %m 01598820 n 0000 %m 01599919 n 0000 | shrikes -01598588 05 n 01 shrike 0 006 @ 01525720 n 0000 #m 01598432 n 0000 ~ 01598988 n 0000 ~ 01599556 n 0000 ~ 01599741 n 0000 ~ 01600085 n 0000 | any of numerous Old World birds having a strong hooked bill that feed on smaller animals -01598820 05 n 02 Lanius 0 genus_Lanius 0 004 @ 01507175 n 0000 #m 01598432 n 0000 %m 01598988 n 0000 %m 01599556 n 0000 | type genus of the Laniidae: typical shrikes -01598988 05 n 01 butcherbird 1 005 @ 01598588 n 0000 #m 01598820 n 0000 ~ 01599159 n 0000 ~ 01599269 n 0000 ~ 01599388 n 0000 | shrikes that impale their prey on thorns -01599159 05 n 02 European_shrike 0 Lanius_excubitor 0 001 @ 01598988 n 0000 | a common European butcherbird -01599269 05 n 02 northern_shrike 0 Lanius_borealis 0 001 @ 01598988 n 0000 | a butcherbird of northern North America -01599388 05 n 02 white-rumped_shrike 0 Lanius_ludovicianus_excubitorides 0 001 @ 01598988 n 0000 | a butcherbird of western North America; grey with white underparts -01599556 05 n 02 loggerhead_shrike 0 Lanius_lucovicianus 0 002 @ 01598588 n 0000 #m 01598820 n 0000 | a common shrike of southeastern United States having black bands around the eyes -01599741 05 n 02 migrant_shrike 0 Lanius_ludovicianus_migrans 0 001 @ 01598588 n 0000 | a shrike of central North America; winters in Texas and the southern Mississippi valley -01599919 05 n 02 Malaconotinae 0 subfamily_Malaconotinae 0 004 @ 01504437 n 0000 #m 01598432 n 0000 %m 01600085 n 0000 %m 01600197 n 0000 | an African bush shrikes -01600085 05 n 01 bush_shrike 0 003 @ 01598588 n 0000 #m 01599919 n 0000 ~ 01600341 n 0000 | an African shrike -01600197 05 n 02 Chlorophoneus 0 genus_Chlorophoneus 0 003 @ 01507175 n 0000 #m 01599919 n 0000 %m 01600341 n 0000 | a genus of Malaconotinae -01600341 05 n 02 black-fronted_bush_shrike 0 Chlorophoneus_nigrifrons 0 002 @ 01600085 n 0000 #m 01600197 n 0000 | a kind of bush shrike -01600480 05 n 02 Ptilonorhynchidae 0 family_Ptilonorhynchidae 0 005 @ 01504437 n 0000 #m 01524885 n 0000 %m 01600657 n 0000 %m 01600909 n 0000 %m 01601268 n 0000 | bowerbirds -01600657 05 n 02 bowerbird 0 catbird 2 004 @ 01525720 n 0000 #m 01600480 n 0000 ~ 01601068 n 0000 ~ 01601410 n 0000 | any of various birds of the Australian region whose males build ornamented structures resembling bowers in order to attract females -01600909 05 n 02 Ptilonorhynchus 0 genus_Ptilonorhynchus 0 003 @ 01507175 n 0000 #m 01600480 n 0000 %m 01601068 n 0000 | type genus of the Ptilonorhynchidae -01601068 05 n 03 satin_bowerbird 0 satin_bird 0 Ptilonorhynchus_violaceus 0 002 @ 01600657 n 0000 #m 01600909 n 0000 | of southeast Australia; male is glossy violet blue; female is light grey-green -01601268 05 n 02 Chlamydera 0 genus_Chlamydera 0 003 @ 01507175 n 0000 #m 01600480 n 0000 %m 01601410 n 0000 | a genus of Ptilonorhynchidae -01601410 05 n 02 great_bowerbird 0 Chlamydera_nuchalis 0 002 @ 01600657 n 0000 #m 01601268 n 0000 | large bowerbird of northern Australia -01601550 05 n 02 Cinclidae 0 family_Cinclidae 0 004 @ 01504437 n 0000 #m 01524885 n 0000 %m 01601694 n 0000 %m 01601919 n 0000 | water ouzels -01601694 05 n 02 water_ouzel 0 dipper 2 004 @ 01525720 n 0000 #m 01601550 n 0000 ~ 01602080 n 0000 ~ 01602209 n 0000 | small stocky diving bird without webbed feet; frequents fast-flowing streams and feeds along the bottom -01601919 05 n 02 Cinclus 0 genus_Cinclus 0 004 @ 01507175 n 0000 #m 01601550 n 0000 %m 01602080 n 0000 %m 01602209 n 0000 | type genus of the family Cinclidae -01602080 05 n 02 European_water_ouzel 0 Cinclus_aquaticus 0 002 @ 01601694 n 0000 #m 01601919 n 0000 | a water ouzel of Europe -01602209 05 n 02 American_water_ouzel 0 Cinclus_mexicanus 0 002 @ 01601694 n 0000 #m 01601919 n 0000 | a water ouzel of western North America -01602353 05 n 02 Vireonidae 0 family_Vireonidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01602506 n 0000 | small insectivorous American songbirds -01602506 05 n 01 genus_Vireo 0 003 @ 01507175 n 0000 #m 01602353 n 0000 %m 01602630 n 0000 | type genus of the Vireonidae -01602630 05 n 01 vireo 0 005 @ 01525720 n 0000 #m 01602506 n 0000 ~ 01602832 n 0000 ~ 01603000 n 0000 ~ 01603152 n 0000 | any of various small insectivorous American birds chiefly olive-grey in color -01602832 05 n 02 red-eyed_vireo 0 Vireo_olivaceous 0 001 @ 01602630 n 0000 | of northern North America having red irises and an olive-grey body with white underparts -01603000 05 n 02 solitary_vireo 0 Vireo_solitarius 0 001 @ 01602630 n 0000 | of eastern North America having a bluish-grey head and mostly green body -01603152 05 n 02 blue-headed_vireo 0 Vireo_solitarius_solitarius 0 001 @ 01602630 n 0000 | common vireo of northeastern North America with bluish slaty-grey head -01603316 05 n 02 Bombycillidae 0 family_Bombycillidae 0 003 @ 01504437 n 0000 #m 01524885 n 0000 %m 01603478 n 0000 | a family of birds of the suborder Oscines -01603478 05 n 02 Bombycilla 0 genus_bombycilla 0 003 @ 01507175 n 0000 #m 01603316 n 0000 %m 01603600 n 0000 | waxwings -01603600 05 n 01 waxwing 0 004 @ 01525720 n 0000 #m 01603478 n 0000 ~ 01603812 n 0000 ~ 01603953 n 0000 | brown velvety-plumaged songbirds of the northern hemisphere having crested heads and red waxy wing tips -01603812 05 n 03 cedar_waxwing 0 cedarbird 0 Bombycilla_cedrorun 0 001 @ 01603600 n 0000 | widely distributed over temperate North America -01603953 05 n 02 Bohemian_waxwing 0 Bombycilla_garrulus 0 001 @ 01603600 n 0000 | large waxwing of northern North America; similar to but larger than the cedar waxwing -01604123 05 n 02 Raptores 0 order_Raptores 0 002 @ 01342529 n 0000 #m 01502262 n 0000 | term used in former classifications; erroneously grouped together birds of the orders Falconiformes and Strigiformes -01604330 05 n 03 bird_of_prey 0 raptor 0 raptorial_bird 0 009 @ 01503061 n 0000 + 00084022 a 0203 + 02836314 a 0201 ~ 01604968 n 0000 ~ 01605630 n 0000 ~ 01613294 n 0000 ~ 01616318 n 0000 ~ 01618503 n 0000 ~ 01621127 n 0000 | any of numerous carnivorous birds that hunt and kill other animals -01604625 05 n 02 Falconiformes 0 order_Falconiformes 0 007 @ 01342529 n 0000 #m 01502262 n 0000 %m 01605119 n 0000 %m 01610758 n 0000 %m 01615825 n 0000 %m 01618220 n 0000 %m 01618671 n 0000 | chiefly diurnal carnivorous birds having hooked beaks and long talons with opposable hind toe: falcons; hawks; eagles; ospreys; caracaras; vultures -01604968 05 n 02 Accipitriformes 0 order_Accipitriformes 0 001 @ 01604330 n 0000 | in some classifications an alternative name for the Falconiformes -01605119 05 n 02 Accipitridae 0 family_Accipitridae 0 021 @ 01504437 n 0000 #m 01604625 n 0000 %m 01605630 n 0000 %m 01606335 n 0000 %m 01607103 n 0000 %m 01608086 n 0000 %m 01608432 n 0000 %m 01608685 n 0000 %m 01608934 n 0000 %m 01609236 n 0000 %m 01609549 n 0000 %m 01610426 n 0000 %m 01613294 n 0000 %m 01613909 n 0000 %m 01614195 n 0000 %m 01614769 n 0000 %m 01616764 n 0000 %m 01616970 n 0000 %m 01617289 n 0000 %m 01617633 n 0000 %m 01617949 n 0000 | hawks; Old World vultures; kites; harriers; eagles -01605630 05 n 01 hawk 0 020 @ 01604330 n 0000 #m 01605119 n 0000 + 01145612 v 0101 ~ 01606097 n 0000 ~ 01606177 n 0000 ~ 01606522 n 0000 ~ 01606672 n 0000 ~ 01606809 n 0000 ~ 01606978 n 0000 ~ 01607309 n 0000 ~ 01607429 n 0000 ~ 01607600 n 0000 ~ 01607812 n 0000 ~ 01607962 n 0000 ~ 01608265 n 0000 ~ 01608432 n 0000 ~ 01609751 n 0000 ~ 01610552 n 0000 ~ 01610955 n 0000 ~ 01616086 n 0000 | diurnal bird of prey typically having short rounded wings and a long tail -01606097 05 n 01 eyas 0 001 @ 01605630 n 0000 | an unfledged or nestling hawk -01606177 05 n 03 tiercel 0 tercel 0 tercelet 0 003 @ 01605630 n 0000 + 01606177 n 0302 + 01606177 n 0203 | male hawk especially male peregrine or gyrfalcon -01606335 05 n 02 Accipiter 0 genus_Accipiter 0 005 @ 01507175 n 0000 #m 01605119 n 0000 %m 01606522 n 0000 %m 01606672 n 0000 %m 01606809 n 0000 | type genus of the family Accipitridae -01606522 05 n 02 goshawk 0 Accipiter_gentilis 0 002 @ 01605630 n 0000 #m 01606335 n 0000 | large hawk of Eurasia and North America used in falconry -01606672 05 n 02 sparrow_hawk 2 Accipiter_nisus 0 002 @ 01605630 n 0000 #m 01606335 n 0000 | small hawk of Eurasia and northern Africa -01606809 05 n 03 Cooper's_hawk 0 blue_darter 0 Accipiter_cooperii 0 002 @ 01605630 n 0000 #m 01606335 n 0000 | bluish-grey North American hawk having a darting flight -01606978 05 n 02 chicken_hawk 0 hen_hawk 0 001 @ 01605630 n 0000 | nontechnical term for any hawks said to prey on poultry -01607103 05 n 02 Buteo 0 genus_Buteo 0 007 @ 01507175 n 0000 #m 01605119 n 0000 %m 01607309 n 0000 %m 01607429 n 0000 %m 01607600 n 0000 %m 01607812 n 0000 %m 01607962 n 0000 | broad-winged soaring hawks -01607309 05 n 01 buteonine 0 003 @ 01605630 n 0000 #m 01607103 n 0000 + 02672219 a 0101 | any hawk of the genus Buteo -01607429 05 n 03 redtail 1 red-tailed_hawk 0 Buteo_jamaicensis 0 002 @ 01605630 n 0000 #m 01607103 n 0000 | dark brown American hawk species having a reddish-brown tail -01607600 05 n 03 rough-legged_hawk 0 roughleg 0 Buteo_lagopus 0 002 @ 01605630 n 0000 #m 01607103 n 0000 | large hawk of the northern hemisphere that feeds chiefly on small rodents and is beneficial to farmers -01607812 05 n 02 red-shouldered_hawk 0 Buteo_lineatus 0 002 @ 01605630 n 0000 #m 01607103 n 0000 | North American hawk with reddish brown shoulders -01607962 05 n 02 buzzard 2 Buteo_buteo 0 002 @ 01605630 n 0000 #m 01607103 n 0000 | the common European short-winged hawk -01608086 05 n 02 Pernis 0 genus_Pernis 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01608265 n 0000 | a common European bird of prey; dull brown with white-streaked underparts -01608265 05 n 02 honey_buzzard 0 Pernis_apivorus 0 002 @ 01605630 n 0000 #m 01608086 n 0000 | Old World hawk that feeds on bee larvae and small rodents and reptiles -01608432 05 n 01 kite 0 005 @ 01605630 n 0000 #m 01605119 n 0000 ~ 01608814 n 0000 ~ 01609062 n 0000 ~ 01609391 n 0000 | any of several small graceful hawks of the family Accipitridae having long pointed wings and feeding on insects and small animals -01608685 05 n 02 Milvus 0 genus-Milvus 0 002 @ 01507175 n 0000 #m 01605119 n 0000 | a genus including the common European kits -01608814 05 n 02 black_kite 0 Milvus_migrans 0 001 @ 01608432 n 0000 | dark Old World kite feeding chiefly on carrion -01608934 05 n 02 Elanoides 0 genus_Elanoides 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01609062 n 0000 | a genus of kites -01609062 05 n 03 swallow-tailed_kite 0 swallow-tailed_hawk 0 Elanoides_forficatus 0 002 @ 01608432 n 0000 #m 01608934 n 0000 | graceful North American black-and-white kite -01609236 05 n 02 Elanus 0 genus_Elanus 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01609391 n 0000 | a genus of small kites of both Old and New Worlds -01609391 05 n 02 white-tailed_kite 0 Elanus_leucurus 0 002 @ 01608432 n 0000 #m 01609236 n 0000 | grey-and-white American kite of warm and tropical regions -01609549 05 n 02 Circus 0 genus_Circus 0 006 @ 01507175 n 0000 #m 01605119 n 0000 %m 01609751 n 0000 %m 01609956 n 0000 %m 01610100 n 0000 %m 01610226 n 0000 | a genus of haws comprising the harriers -01609751 05 n 01 harrier 0 005 @ 01605630 n 0000 #m 01609549 n 0000 ~ 01609956 n 0000 ~ 01610100 n 0000 ~ 01610226 n 0000 | hawks that hunt over meadows and marshes and prey on small terrestrial animals -01609956 05 n 02 marsh_harrier 0 Circus_Aeruginosus 0 002 @ 01609751 n 0000 #m 01609549 n 0000 | Old World harrier frequenting marshy regions -01610100 05 n 02 Montagu's_harrier 0 Circus_pygargus 0 002 @ 01609751 n 0000 #m 01609549 n 0000 | brownish European harrier -01610226 05 n 04 marsh_hawk 0 northern_harrier 0 hen_harrier 0 Circus_cyaneus 0 002 @ 01609751 n 0000 #m 01609549 n 0000 | common harrier of North America and Europe; nests in marshes and open land -01610426 05 n 02 Circaetus 0 genus_Circaetus 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01610552 n 0000 | harrier eagles -01610552 05 n 02 harrier_eagle 0 short-toed_eagle 0 002 @ 01605630 n 0000 #m 01610426 n 0000 | any of numerous large Old World hawks intermediate in some respects between typical hawks and typical eagles -01610758 05 n 02 Falconidae 0 family_Falconidae 0 005 @ 01504437 n 0000 #m 01604625 n 0000 %m 01610955 n 0000 %m 01611252 n 0000 %m 01612803 n 0000 | a family of birds of the order Falconiformes -01610955 05 n 01 falcon 0 010 @ 01605630 n 0000 #m 01610758 n 0000 + 01145766 v 0101 ~ 01611472 n 0000 ~ 01611800 n 0000 ~ 01611969 n 0000 ~ 01612122 n 0000 ~ 01612275 n 0000 ~ 01612476 n 0000 ~ 01612628 n 0000 | diurnal birds of prey having long pointed powerful wings adapted for swift flight -01611252 05 n 02 Falco 0 genus_Falco 0 008 @ 01507175 n 0000 #m 01610758 n 0000 %m 01611472 n 0000 %m 01611800 n 0000 %m 01611969 n 0000 %m 01612122 n 0000 %m 01612275 n 0000 %m 01612476 n 0000 | a genus of Falconidae -01611472 05 n 03 peregrine 0 peregrine_falcon 0 Falco_peregrinus 0 004 @ 01610955 n 0000 #m 01611252 n 0000 + 02128084 a 0103 ~ 01611674 n 0000 | a widely distributed falcon formerly used in falconry -01611674 05 n 02 falcon-gentle 0 falcon-gentil 0 001 @ 01611472 n 0000 | female falcon especially a female peregrine falcon -01611800 05 n 03 gyrfalcon 0 gerfalcon 0 Falco_rusticolus 0 002 @ 01610955 n 0000 #m 01611252 n 0000 | large and rare Arctic falcon having white and dark color phases -01611969 05 n 02 kestrel 1 Falco_tinnunculus 0 002 @ 01610955 n 0000 #m 01611252 n 0000 | small Old World falcon that hovers in the air against a wind -01612122 05 n 04 sparrow_hawk 1 American_kestrel 0 kestrel 2 Falco_sparverius 0 002 @ 01610955 n 0000 #m 01611252 n 0000 | small North American falcon -01612275 05 n 03 pigeon_hawk 0 merlin 0 Falco_columbarius 0 002 @ 01610955 n 0000 #m 01611252 n 0000 | small falcon of Europe and America having dark plumage with black-barred tail; used in falconry -01612476 05 n 02 hobby 0 Falco_subbuteo 0 002 @ 01610955 n 0000 #m 01611252 n 0000 | small Old World falcon formerly trained and flown at small birds -01612628 05 n 01 caracara 0 003 @ 01610955 n 0000 ~ 01612955 n 0000 ~ 01613177 n 0000 | any of various long-legged carrion-eating hawks of South America and Central America -01612803 05 n 02 Polyborus 0 genus_Polyborus 0 004 @ 01507175 n 0000 #m 01610758 n 0000 %m 01612955 n 0000 %m 01613177 n 0000 | a genus of Falconidae -01612955 05 n 02 Audubon's_caracara 0 Polyborus_cheriway_audubonii 0 002 @ 01612628 n 0000 #m 01612803 n 0000 | widespread from southern United States to Central America; rusty black with black-and-white breast and tail -01613177 05 n 02 carancha 0 Polyborus_plancus 0 002 @ 01612628 n 0000 #m 01612803 n 0000 | South American caracara -01613294 05 n 02 eagle 0 bird_of_Jove 0 009 @ 01604330 n 0000 #m 01605119 n 0000 + 01613807 n 0101 ~ 01613807 n 0000 ~ 01614038 n 0000 ~ 01614343 n 0000 ~ 01614556 n 0000 ~ 01614925 n 0000 ~ 01615121 n 0000 | any of various large keen-sighted diurnal birds of prey noted for their broad wings and strong soaring flight -01613615 05 n 01 young_bird 0 007 @ 01321579 n 0000 #m 01502262 n 0000 ~ 01504179 n 0000 ~ 01504344 n 0000 ~ 01613807 n 0000 ~ 01792042 n 0000 ~ 01858906 n 0000 | a bird that is still young -01613807 05 n 01 eaglet 0 003 @ 01613294 n 0000 @ 01613615 n 0000 + 01613294 n 0101 | a young eagle -01613909 05 n 02 Harpia 0 genus_Harpia 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01614038 n 0000 | a genus of Accipitridae -01614038 05 n 03 harpy 1 harpy_eagle 0 Harpia_harpyja 0 002 @ 01613294 n 0000 #m 01613909 n 0000 | large black-and-white crested eagle of tropical America -01614195 05 n 02 Aquila 0 genus_Aquila 0 004 @ 01507175 n 0000 #m 01605119 n 0000 %m 01614343 n 0000 %m 01614556 n 0000 | a genus of Accipitridae -01614343 05 n 02 golden_eagle 0 Aquila_chrysaetos 0 003 @ 01613294 n 0000 #m 01614195 n 0000 ~ 01614690 n 0000 | large eagle of mountainous regions of the northern hemisphere having a golden-brown head and neck -01614556 05 n 02 tawny_eagle 0 Aquila_rapax 0 002 @ 01613294 n 0000 #m 01614195 n 0000 | brownish eagle of Africa and parts of Asia -01614690 05 n 01 ringtail 1 001 @ 01614343 n 0000 | an immature golden eagle -01614769 05 n 02 Haliaeetus 0 genus_Haliaeetus 0 004 @ 01507175 n 0000 #m 01605119 n 0000 %m 01614925 n 0000 %m 01615121 n 0000 | a genus of Accipitridae -01614925 05 n 03 bald_eagle 0 American_eagle 0 Haliaeetus_leucocephalus 0 002 @ 01613294 n 0000 #m 01614769 n 0000 | a large eagle of North America that has a white head and dark wings and body -01615121 05 n 01 sea_eagle 1 005 @ 01613294 n 0000 #m 01614769 n 0000 ~ 01615303 n 0000 ~ 01615458 n 0000 ~ 01615703 n 0000 | any of various large eagles that usually feed on fish -01615303 05 n 03 Kamchatkan_sea_eagle 0 Stellar's_sea_eagle 0 Haliaeetus_pelagicus 0 001 @ 01615121 n 0000 | found on coasts of the northwestern Pacific -01615458 05 n 07 ern 0 erne 0 grey_sea_eagle 0 gray_sea_eagle 0 European_sea_eagle 0 white-tailed_sea_eagle 0 Haliatus_albicilla 0 001 @ 01615121 n 0000 | bulky greyish-brown eagle with a short wedge-shaped white tail; of Europe and Greenland -01615703 05 n 02 fishing_eagle 0 Haliaeetus_leucorhyphus 0 001 @ 01615121 n 0000 | of southeast Europe and central Asia -01615825 05 n 02 Pandionidae 0 family_Pandionidae 0 003 @ 01504437 n 0000 #m 01604625 n 0000 %m 01615949 n 0000 | ospreys -01615949 05 n 02 Pandion 0 genus_Pandion 0 003 @ 01507175 n 0000 #m 01615825 n 0000 %m 01616086 n 0000 | type genus of the Pandionidae -01616086 05 n 05 osprey 0 fish_hawk 0 fish_eagle 0 sea_eagle 2 Pandion_haliaetus 0 002 @ 01605630 n 0000 #m 01615949 n 0000 | large harmless hawk found worldwide that feeds on fish and builds a bulky nest often occupied for years -01616318 05 n 01 vulture 0 005 @ 01604330 n 0000 + 00084022 a 0106 ~ 01616551 n 0000 ~ 01616764 n 0000 ~ 01618922 n 0000 | any of various large diurnal birds of prey having naked heads and weak claws and feeding chiefly on carrion -01616551 05 n 02 Aegypiidae 0 family_Aegypiidae 0 001 @ 01616318 n 0000 | in some classifications considered the family comprising the Old World vultures which are more often included in the family Accipitridae -01616764 05 n 01 Old_World_vulture 0 006 @ 01616318 n 0000 #m 01605119 n 0000 ~ 01617095 n 0000 ~ 01617443 n 0000 ~ 01617766 n 0000 ~ 01618082 n 0000 | any of several large vultures of Africa and Eurasia -01616970 05 n 02 Gyps 0 genus_Gyps 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01617095 n 0000 | a genus of Accipitridae -01617095 05 n 03 griffon_vulture 0 griffon 3 Gyps_fulvus 0 002 @ 01616764 n 0000 #m 01616970 n 0000 | large vulture of southern Europe and northern Africa having pale plumage with black wings -01617289 05 n 02 Gypaetus 0 genus_Gypaetus 0 002 @ 01507175 n 0000 #m 01605119 n 0000 | in some classifications the type genus of the family Aegypiidae -01617443 05 n 04 bearded_vulture 0 lammergeier 0 lammergeyer 0 Gypaetus_barbatus 0 001 @ 01616764 n 0000 | the largest Eurasian bird of prey; having black feathers hanging around the bill -01617633 05 n 02 Neophron 0 genus_Neophron 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01617766 n 0000 | a genus of Accipitridae -01617766 05 n 03 Egyptian_vulture 0 Pharaoh's_chicken 0 Neophron_percnopterus 0 002 @ 01616764 n 0000 #m 01617633 n 0000 | small mostly white vulture of Africa and southern Eurasia -01617949 05 n 02 Aegypius 0 genus_Aegypius 0 003 @ 01507175 n 0000 #m 01605119 n 0000 %m 01618082 n 0000 | a genus of Accipitridae -01618082 05 n 02 black_vulture 1 Aegypius_monachus 0 002 @ 01616764 n 0000 #m 01617949 n 0000 | of southern Eurasia and northern Africa -01618220 05 n 02 Sagittariidae 0 family_Sagittariidae 0 003 @ 01504437 n 0000 #m 01604625 n 0000 %m 01618356 n 0000 | secretary birds -01618356 05 n 02 Sagittarius 0 genus_Sagittarius 0 003 @ 01507175 n 0000 #m 01618220 n 0000 %m 01618503 n 0000 | type genus of the Sagittariidae -01618503 05 n 02 secretary_bird 0 Sagittarius_serpentarius 0 002 @ 01604330 n 0000 #m 01618356 n 0000 | large long-legged African bird of prey that feeds on reptiles -01618671 05 n 02 Cathartidae 0 family_Cathartidae 0 008 @ 01504437 n 0000 #m 01604625 n 0000 %m 01618922 n 0000 %m 01619152 n 0000 %m 01619675 n 0000 %m 01620003 n 0000 %m 01620282 n 0000 %m 01620575 n 0000 | condors; turkey buzzards; king vultures -01618922 05 n 02 New_World_vulture 0 cathartid 0 006 @ 01616318 n 0000 #m 01618671 n 0000 ~ 01619310 n 0000 ~ 01619536 n 0000 ~ 01620414 n 0000 ~ 01620735 n 0000 | large birds of prey superficially similar to Old World vultures -01619152 05 n 02 Cathartes 0 genus_Cathartes 0 003 @ 01507175 n 0000 #m 01618671 n 0000 %m 01619310 n 0000 | type genus of the Cathartidae: turkey vultures -01619310 05 n 04 buzzard 1 turkey_buzzard 0 turkey_vulture 0 Cathartes_aura 0 002 @ 01618922 n 0000 #m 01619152 n 0000 | a New World vulture that is common in South America and Central America and the southern United States -01619536 05 n 01 condor 0 003 @ 01618922 n 0000 ~ 01619835 n 0000 ~ 01620135 n 0000 | the largest flying birds in the western hemisphere -01619675 05 n 02 Vultur 0 genus_Vultur 0 003 @ 01507175 n 0000 #m 01618671 n 0000 %m 01619835 n 0000 | a bird that is usually restricted to the Andean condor -01619835 05 n 02 Andean_condor 0 Vultur_gryphus 0 002 @ 01619536 n 0000 #m 01619675 n 0000 | large vulture of the high Andes having black plumage and white neck ruff -01620003 05 n 02 Gymnogyps 0 genus_Gymnogyps 0 002 @ 01507175 n 0000 #m 01618671 n 0000 | containing solely the California condor -01620135 05 n 02 California_condor 0 Gymnogyps_californianus 0 001 @ 01619536 n 0000 | North American condor; chiefly dull black; almost extinct -01620282 05 n 02 Coragyps 0 genus_Coragyps 0 003 @ 01507175 n 0000 #m 01618671 n 0000 %m 01620414 n 0000 | a genus of Cathartidae -01620414 05 n 03 black_vulture 2 carrion_crow 0 Coragyps_atratus 0 002 @ 01618922 n 0000 #m 01620282 n 0000 | American vulture smaller than the turkey buzzard -01620575 05 n 02 Sarcorhamphus 0 genus_Sarcorhamphus 0 003 @ 01507175 n 0000 #m 01618671 n 0000 %m 01620735 n 0000 | usually containing only the king vulture -01620735 05 n 02 king_vulture 0 Sarcorhamphus_papa 0 002 @ 01618922 n 0000 #m 01620575 n 0000 | large black-and-white vulture of South America and Central America; have colorful wattles and wartlike protuberances on head and neck -01620967 05 n 02 Strigiformes 0 order_Strigiformes 0 005 @ 01342529 n 0000 #m 01502262 n 0000 %m 01621127 n 0000 %m 01621714 n 0000 %m 01625275 n 0000 | owls -01621127 05 n 04 owl 0 bird_of_Minerva 0 bird_of_night 0 hooter 0 019 @ 01604330 n 0000 #m 01620967 n 0000 + 01621635 n 0101 ~ 01621635 n 0000 ~ 01622120 n 0000 ~ 01622352 n 0000 ~ 01622779 n 0000 ~ 01622959 n 0000 ~ 01623110 n 0000 ~ 01623425 n 0000 ~ 01623615 n 0000 ~ 01623706 n 0000 ~ 01623880 n 0000 ~ 01624305 n 0000 ~ 01624537 n 0000 ~ 01624833 n 0000 ~ 01625121 n 0000 ~ 01625562 n 0000 + 01053221 v 0401 | nocturnal bird of prey with hawk-like beak and claws and large head with front-facing eyes -01621635 05 n 01 owlet 0 002 @ 01621127 n 0000 + 01621127 n 0101 | young owl -01621714 05 n 02 Strigidae 0 family_Strigidae 0 009 @ 01504437 n 0000 #m 01620967 n 0000 %m 01621994 n 0000 %m 01622230 n 0000 %m 01622596 n 0000 %m 01623284 n 0000 %m 01624406 n 0000 %m 01624707 n 0000 %m 01624987 n 0000 | a family of nocturnal birds of the order Strigiformes -01621994 05 n 02 Athene 0 genus_Athene 0 003 @ 01507175 n 0000 #m 01621714 n 0000 %m 01622120 n 0000 | a genus of Strigidae -01622120 05 n 02 little_owl 0 Athene_noctua 0 002 @ 01621127 n 0000 #m 01621994 n 0000 | small European owl -01622230 05 n 02 Bubo 0 genus_Bubo 0 003 @ 01507175 n 0000 #m 01621714 n 0000 %m 01622352 n 0000 | a genus of Strigidae -01622352 05 n 01 horned_owl 0 003 @ 01621127 n 0000 #m 01622230 n 0000 ~ 01622483 n 0000 | large owls having prominent ear tufts -01622483 05 n 02 great_horned_owl 0 Bubo_virginianus 0 001 @ 01622352 n 0000 | brown North American horned owl -01622596 05 n 02 Strix 0 genus_Strix 0 006 @ 01507175 n 0000 #m 01621714 n 0000 %m 01622779 n 0000 %m 01622959 n 0000 %m 01623110 n 0000 %m 01623880 n 0000 | owls lacking ear tufts -01622779 05 n 03 great_grey_owl 0 great_gray_owl 0 Strix_nebulosa 0 002 @ 01621127 n 0000 #m 01622596 n 0000 | large dish-faced owl of northern North America and western Eurasia -01622959 05 n 02 tawny_owl 0 Strix_aluco 0 002 @ 01621127 n 0000 #m 01622596 n 0000 | reddish-brown European owl having a round head with black eyes -01623110 05 n 02 barred_owl 0 Strix_varia 0 002 @ 01621127 n 0000 #m 01622596 n 0000 | large owl of eastern North America having its breast and abdomen streaked with brown -01623284 05 n 02 Otus 0 genus_Otus 0 004 @ 01507175 n 0000 #m 01621714 n 0000 %m 01623425 n 0000 %m 01623706 n 0000 | a genus of Strigidae -01623425 05 n 02 screech_owl 1 Otus_asio 0 002 @ 01621127 n 0000 #m 01623284 n 0000 | small North American owl having hornlike tufts of feathers whose call sounds like a quavering whistle -01623615 05 n 01 screech_owl 2 001 @ 01621127 n 0000 | any owl that has a screeching cry -01623706 05 n 01 scops_owl 0 004 @ 01621127 n 0000 #m 01623284 n 0000 ~ 01624115 n 0000 ~ 01624212 n 0000 | any of several small owls having ear tufts and a whistling call -01623880 05 n 02 spotted_owl 0 Strix_occidentalis 0 002 @ 01621127 n 0000 #m 01622596 n 0000 | a large owl of North America found in forests from British Columbia to central Mexico; has dark brown plumage and a heavily spotted chest -01624115 05 n 02 Old_World_scops_owl 0 Otus_scops 0 001 @ 01623706 n 0000 | European scops owl -01624212 05 n 02 Oriental_scops_owl 0 Otus_sunia 0 001 @ 01623706 n 0000 | Asian scops owl -01624305 05 n 01 hoot_owl 0 001 @ 01621127 n 0000 | any owl that hoots as distinct from screeching -01624406 05 n 02 Surnia 0 genus_Surnia 0 003 @ 01507175 n 0000 #m 01621714 n 0000 %m 01624537 n 0000 | a genus of hawk-like owls -01624537 05 n 02 hawk_owl 0 Surnia_ulula 0 002 @ 01621127 n 0000 #m 01624406 n 0000 | grey-and-white diurnal hawk-like owl of northern parts of the northern hemisphere -01624707 05 n 02 Asio 0 genus_Asio 0 003 @ 01507175 n 0000 #m 01621714 n 0000 %m 01624833 n 0000 | a genus of European owls -01624833 05 n 02 long-eared_owl 0 Asio_otus 0 002 @ 01621127 n 0000 #m 01624707 n 0000 | slender European owl of coniferous forests with long ear tufts -01624987 05 n 02 Sceloglaux 0 genus_Sceloglaux 0 003 @ 01507175 n 0000 #m 01621714 n 0000 %m 01625121 n 0000 | a genus of Strigidae -01625121 05 n 03 laughing_owl 0 laughing_jackass 2 Sceloglaux_albifacies 0 002 @ 01621127 n 0000 #m 01624987 n 0000 | almost extinct owl of New Zealand -01625275 05 n 02 Tytonidae 0 family_Tytonidae 0 003 @ 01504437 n 0000 #m 01620967 n 0000 %m 01625417 n 0000 | comprising only the barn owls -01625417 05 n 02 Tyto 0 genus_Tyto 0 003 @ 01507175 n 0000 #m 01625275 n 0000 %m 01625562 n 0000 | type and only genus of the family Tytonidae -01625562 05 n 02 barn_owl 0 Tyto_alba 0 002 @ 01621127 n 0000 #m 01625417 n 0000 | mottled buff and white owl often inhabiting barns and other structures; important in rodent control -01625747 05 n 02 amphibia 0 class_Amphibia 0 012 @ 08103777 n 0000 #m 01471070 n 0000 + 02831979 a 0101 %m 01627424 n 0000 %m 01627786 n 0000 %m 01628148 n 0000 %m 01628450 n 0000 %m 01639369 n 0000 %m 01654957 n 0000 %m 01655577 n 0000 %m 01656340 n 0000 %m 02469472 n 0000 | the class of vertebrates that live on land but breed in water; frogs; toads; newts; salamanders; caecilians -01626134 05 n 01 amphibian_family 0 022 @ 08107499 n 0000 #m 01471070 n 0000 ~ 01628885 n 0000 ~ 01631759 n 0000 ~ 01633047 n 0000 ~ 01634684 n 0000 ~ 01635659 n 0000 ~ 01638482 n 0000 ~ 01638952 n 0000 ~ 01640383 n 0000 ~ 01642671 n 0000 ~ 01644104 n 0000 ~ 01644542 n 0000 ~ 01645093 n 0000 ~ 01645634 n 0000 ~ 01647803 n 0000 ~ 01648818 n 0000 ~ 01649948 n 0000 ~ 01652583 n 0000 ~ 01653610 n 0000 ~ 01654245 n 0000 ~ 01655116 n 0000 | any family of amphibians -01626600 05 n 01 amphibian_genus 0 042 @ 08108972 n 0000 #m 01471070 n 0000 ~ 01627786 n 0000 ~ 01628148 n 0000 ~ 01629093 n 0000 ~ 01630533 n 0000 ~ 01630795 n 0000 ~ 01631035 n 0000 ~ 01631903 n 0000 ~ 01633250 n 0000 ~ 01633578 n 0000 ~ 01633949 n 0000 ~ 01634092 n 0000 ~ 01634392 n 0000 ~ 01634891 n 0000 ~ 01635343 n 0000 ~ 01635964 n 0000 ~ 01636675 n 0000 ~ 01636984 n 0000 ~ 01637478 n 0000 ~ 01637796 n 0000 ~ 01638611 n 0000 ~ 01639071 n 0000 ~ 01640567 n 0000 ~ 01643092 n 0000 ~ 01643374 n 0000 ~ 01643687 n 0000 ~ 01644245 n 0000 ~ 01644699 n 0000 ~ 01645278 n 0000 ~ 01646134 n 0000 ~ 01648001 n 0000 ~ 01648494 n 0000 ~ 01648993 n 0000 ~ 01650509 n 0000 ~ 01651370 n 0000 ~ 01651900 n 0000 ~ 01652163 n 0000 ~ 01652850 n 0000 ~ 01653384 n 0000 ~ 01653975 n 0000 ~ 01654429 n 0000 | any genus of amphibians -01627424 05 n 01 amphibian 0 011 @ 01471682 n 0000 #m 01625747 n 0000 + 02831979 a 0102 ~ 01627976 n 0000 ~ 01628331 n 0000 ~ 01628770 n 0000 ~ 01629276 n 0000 ~ 01639765 n 0000 ~ 01655344 n 0000 ~ 01655951 n 0000 %p 02465929 n 0000 | cold-blooded vertebrate typically living on land but breeding in water; aquatic larvae undergo metamorphosis into adult form -01627786 05 n 02 Hynerpeton 0 genus_Hynerpeton 0 003 @ 01626600 n 0000 #m 01625747 n 0000 %m 01627976 n 0000 | earliest fossil amphibian ever found; of the Devonian; found in Pennsylvania -01627976 05 n 01 Hynerpeton_bassetti 0 002 @ 01627424 n 0000 #m 01627786 n 0000 | fossil amphibian of the Devonian having well-developed forelimbs; found in Pennsylvania -01628148 05 n 01 genus_Ichthyostega 0 003 @ 01626600 n 0000 #m 01625747 n 0000 %m 01628331 n 0000 | second earliest fossil amphibian ever found; of the Devonian; found in Greenland -01628331 05 n 01 Ichyostega 0 002 @ 01627424 n 0000 #m 01628148 n 0000 | early tetrapod amphibian found in Greenland -01628450 05 n 04 Urodella 0 order_Urodella 0 Caudata 0 order_Caudata 0 011 @ 01342529 n 0000 #m 01625747 n 0000 %m 01628770 n 0000 %m 01628885 n 0000 %m 01631759 n 0000 %m 01633047 n 0000 %m 01633949 n 0000 %m 01634684 n 0000 %m 01635659 n 0000 %m 01638482 n 0000 %m 01638952 n 0000 | salamanders; newts; congo snakes -01628770 05 n 02 urodele 0 caudate 0 002 @ 01627424 n 0000 #m 01628450 n 0000 | amphibians that resemble lizards -01628885 05 n 02 Salamandridae 0 family_Salamandridae 0 007 @ 01626134 n 0000 #m 01628450 n 0000 %m 01629093 n 0000 %m 01630284 n 0000 %m 01630533 n 0000 %m 01630795 n 0000 %m 01631035 n 0000 | salamanders -01629093 05 n 02 Salamandra 0 genus_Salamandra 0 005 @ 01626600 n 0000 #m 01628885 n 0000 %m 01629819 n 0000 %m 01629962 n 0000 %m 01630148 n 0000 | type genus of the Salamandridae -01629276 05 n 01 salamander 0 022 @ 01627424 n 0000 ~ 01629819 n 0000 ~ 01629962 n 0000 ~ 01630148 n 0000 ~ 01630284 n 0000 ~ 01632047 n 0000 ~ 01633406 n 0000 ~ 01633781 n 0000 ~ 01634227 n 0000 ~ 01634522 n 0000 ~ 01635027 n 0000 ~ 01635176 n 0000 ~ 01635480 n 0000 ~ 01636127 n 0000 ~ 01636352 n 0000 ~ 01636510 n 0000 ~ 01636829 n 0000 ~ 01637112 n 0000 ~ 01637615 n 0000 ~ 01637932 n 0000 ~ 01638722 n 0000 ~ 01639187 n 0000 | any of various typically terrestrial amphibians that resemble lizards and that return to water only to breed -01629819 05 n 02 European_fire_salamander 0 Salamandra_salamandra 0 002 @ 01629276 n 0000 #m 01629093 n 0000 | a kind of European salamander -01629962 05 n 03 spotted_salamander 1 fire_salamander 0 Salamandra_maculosa 0 002 @ 01629276 n 0000 #m 01629093 n 0000 | European salamander having dark skin with usually yellow spots -01630148 05 n 02 alpine_salamander 0 Salamandra_atra 0 002 @ 01629276 n 0000 #m 01629093 n 0000 | ovoviviparous amphibian of the Alps -01630284 05 n 02 newt 0 triton 1 006 @ 01629276 n 0000 #m 01628885 n 0000 ~ 01630670 n 0000 ~ 01630901 n 0000 ~ 01631175 n 0000 ~ 01631663 n 0000 | small usually bright-colored semiaquatic salamanders of North America and Europe and northern Asia -01630533 05 n 02 Triturus 0 genus_Triturus 0 003 @ 01626600 n 0000 #m 01628885 n 0000 %m 01630670 n 0000 | chiefly aquatic salamanders -01630670 05 n 02 common_newt 0 Triturus_vulgaris 0 002 @ 01630284 n 0000 #m 01630533 n 0000 | small semiaquatic salamander -01630795 05 n 02 Notophthalmus 0 genus_Notophthalmus 0 002 @ 01626600 n 0000 #m 01628885 n 0000 | newts -01630901 05 n 02 red_eft 0 Notophthalmus_viridescens 0 001 @ 01630284 n 0000 | red terrestrial form of a common North American newt -01631035 05 n 02 Taricha 0 genus_Taricha 0 004 @ 01626600 n 0000 #m 01628885 n 0000 %m 01631175 n 0000 %m 01631354 n 0000 | Pacific newts -01631175 05 n 01 Pacific_newt 0 004 @ 01630284 n 0000 #m 01631035 n 0000 ~ 01631354 n 0000 ~ 01631512 n 0000 | any of several rough-skinned newts found in western North America -01631354 05 n 02 rough-skinned_newt 0 Taricha_granulosa 0 002 @ 01631175 n 0000 #m 01631035 n 0000 | newt of humid coast from Alaska to southern California -01631512 05 n 02 California_newt 0 Taricha_torosa 0 001 @ 01631175 n 0000 | newt that is similar to Taricha granulosa in characteristics and habitat -01631663 05 n 01 eft 0 001 @ 01630284 n 0000 | a newt in its terrestrial stage of development -01631759 05 n 02 Ambystomatidae 0 family_Ambystomatidae 0 003 @ 01626134 n 0000 #m 01628450 n 0000 %m 01631903 n 0000 | New World salamanders -01631903 05 n 02 Ambystoma 0 genus_Ambystoma 0 003 @ 01626600 n 0000 #m 01631759 n 0000 %m 01632047 n 0000 | type genus of the Ambystomatidae -01632047 05 n 02 ambystomid 0 ambystomid_salamander 0 007 @ 01629276 n 0000 #m 01631903 n 0000 ~ 01632308 n 0000 ~ 01632458 n 0000 ~ 01632601 n 0000 ~ 01632777 n 0000 ~ 01632952 n 0000 | small to moderate-sized terrestrial or semiaquatic New World salamander -01632308 05 n 02 mole_salamander 0 Ambystoma_talpoideum 0 001 @ 01632047 n 0000 | brownish-black burrowing salamander of southeastern United States -01632458 05 n 02 spotted_salamander 2 Ambystoma_maculatum 0 001 @ 01632047 n 0000 | glossy black North American salamander with yellow spots -01632601 05 n 02 tiger_salamander 0 Ambystoma_tigrinum 0 001 @ 01632047 n 0000 | widely distributed brown or black North American salamander with vertical yellowish blotches -01632777 05 n 03 axolotl 0 mud_puppy 2 Ambystoma_mexicanum 0 001 @ 01632047 n 0000 | larval salamander of mountain lakes of Mexico that usually lives without metamorphosing -01632952 05 n 01 waterdog 0 001 @ 01632047 n 0000 | any of several large aquatic salamanders -01633047 05 n 02 Cryptobranchidae 0 family_Cryptobranchidae 0 004 @ 01626134 n 0000 #m 01628450 n 0000 %m 01633250 n 0000 %m 01633578 n 0000 | large aquatic salamanders: hellbenders; giant salamanders -01633250 05 n 02 Cryptobranchus 0 genus_Cryptobranchus 0 003 @ 01626600 n 0000 #m 01633047 n 0000 %m 01633406 n 0000 | type genus of the Cryptobranchidae -01633406 05 n 03 hellbender 0 mud_puppy 3 Cryptobranchus_alleganiensis 0 002 @ 01629276 n 0000 #m 01633250 n 0000 | large salamander of North American rivers and streams -01633578 05 n 02 Megalobatrachus 0 genus_Megalobatrachus 0 003 @ 01626600 n 0000 #m 01633047 n 0000 %m 01633781 n 0000 | giant salamanders; in some classifications included in the genus Cryptobranchus -01633781 05 n 02 giant_salamander 0 Megalobatrachus_maximus 0 002 @ 01629276 n 0000 #m 01633578 n 0000 | large (up to more than three feet) edible salamander of Asia -01633949 05 n 02 Proteidae 0 family_Proteidae 0 004 @ 01626600 n 0000 #m 01628450 n 0000 %m 01634092 n 0000 %m 01634392 n 0000 | mud puppies -01634092 05 n 02 Proteus 0 genus_Proteus 0 003 @ 01626600 n 0000 #m 01633949 n 0000 %m 01634227 n 0000 | type genus of the Proteidae -01634227 05 n 02 olm 0 Proteus_anguinus 0 002 @ 01629276 n 0000 #m 01634092 n 0000 | European aquatic salamander with permanent external gills that lives in caves -01634392 05 n 02 Necturus 0 genus_Necturus 0 003 @ 01626600 n 0000 #m 01633949 n 0000 %m 01634522 n 0000 | a genus of Proteidae -01634522 05 n 02 mud_puppy 1 Necturus_maculosus 0 002 @ 01629276 n 0000 #m 01634392 n 0000 | aquatic North American salamander with red feathery external gills -01634684 05 n 02 Dicamptodontidae 0 family_Dicamptodontidae 0 005 @ 01626134 n 0000 #m 01628450 n 0000 %m 01634891 n 0000 %m 01635027 n 0000 %m 01635343 n 0000 | large and small highly aquatic salamanders -01634891 05 n 01 genus_Dicamptodon 0 003 @ 01626600 n 0000 #m 01634684 n 0000 %m 01635176 n 0000 | type genus of the Dicamptodontidae -01635027 05 n 02 dicamptodon 0 dicamptodontid 0 002 @ 01629276 n 0000 #m 01634684 n 0000 | salamanders found near cold streams throughout the year -01635176 05 n 02 Pacific_giant_salamander 0 Dicamptodon_ensatus 0 002 @ 01629276 n 0000 #m 01634891 n 0000 | large (to 7 inches) salamander of western North America -01635343 05 n 02 Rhyacotriton 0 genus_Rhyacotriton 0 003 @ 01626600 n 0000 #m 01634684 n 0000 %m 01635480 n 0000 | olympic salamanders -01635480 05 n 02 olympic_salamander 0 Rhyacotriton_olympicus 0 002 @ 01629276 n 0000 #m 01635343 n 0000 | small large-eyed semiaquatic salamander of the United States Northwest -01635659 05 n 02 Plethodontidae 0 family_Plethodontidae 0 008 @ 01626134 n 0000 #m 01628450 n 0000 %m 01635964 n 0000 %m 01636127 n 0000 %m 01636675 n 0000 %m 01636984 n 0000 %m 01637478 n 0000 %m 01637796 n 0000 | small mostly terrestrial New World salamanders having neither lungs nor gills as adults -01635964 05 n 02 Plethodon 0 genus_Plethodon 0 004 @ 01626600 n 0000 #m 01635659 n 0000 %m 01636352 n 0000 %m 01636510 n 0000 | type genus of the Plethodontidae -01636127 05 n 02 lungless_salamander 0 plethodont 0 002 @ 01629276 n 0000 #m 01635659 n 0000 | mostly terrestrial salamanders that breathe through their thin moist skin; lay eggs in moist places on land; rarely enter water -01636352 05 n 02 eastern_red-backed_salamander 0 Plethodon_cinereus 0 002 @ 01629276 n 0000 #m 01635964 n 0000 | common salamander of eastern North America -01636510 05 n 02 western_red-backed_salamander 0 Plethodon_vehiculum 0 002 @ 01629276 n 0000 #m 01635964 n 0000 | salamander of the Pacific coast of North America -01636675 05 n 02 Desmograthus 0 genus_Desmograthus 0 003 @ 01626600 n 0000 #m 01635659 n 0000 %m 01636829 n 0000 | an amphibian genus of Plethodontidae -01636829 05 n 01 dusky_salamander 0 002 @ 01629276 n 0000 #m 01636675 n 0000 | common North American salamander mottled with dull brown or greyish-black -01636984 05 n 02 Aneides 0 genus_Aneides 0 003 @ 01626600 n 0000 #m 01635659 n 0000 %m 01637112 n 0000 | climbing salamanders -01637112 05 n 01 climbing_salamander 0 003 @ 01629276 n 0000 #m 01636984 n 0000 ~ 01637338 n 0000 | any of several North American salamanders adapted for climbing with well-developed limbs and long somewhat squared-off toes -01637338 05 n 02 arboreal_salamander 0 Aneides_lugubris 0 001 @ 01637112 n 0000 | yellow-spotted brown salamander of California woodlands -01637478 05 n 02 Batrachoseps 0 genus_Batrachoseps 0 003 @ 01626600 n 0000 #m 01635659 n 0000 %m 01637615 n 0000 | slender salamanders -01637615 05 n 02 slender_salamander 0 worm_salamander 0 002 @ 01629276 n 0000 #m 01637478 n 0000 | any of several small slim salamanders of the Pacific coast of the United States -01637796 05 n 02 Hydromantes 0 genus_Hydromantes 0 003 @ 01626600 n 0000 #m 01635659 n 0000 %m 01637932 n 0000 | web-toed salamanders -01637932 05 n 01 web-toed_salamander 0 004 @ 01629276 n 0000 #m 01637796 n 0000 ~ 01638194 n 0000 ~ 01638329 n 0000 | any of several salamanders with webbed toes and very long extensile tongues; excellent climbers that move with ease over smooth rock surfaces -01638194 05 n 02 Shasta_salamander 0 Hydromantes_shastae 0 001 @ 01637932 n 0000 | primarily a cave dweller in the Mount Shasta area -01638329 05 n 02 limestone_salamander 0 Hydromantes_brunus 0 001 @ 01637932 n 0000 | similar to Shasta salamander; lives in cliff crevices and taluses -01638482 05 n 02 Amphiumidae 0 family_Amphiumidae 0 003 @ 01626134 n 0000 #m 01628450 n 0000 %m 01638611 n 0000 | congo snakes -01638611 05 n 01 genus_Amphiuma 0 003 @ 01626600 n 0000 #m 01638482 n 0000 %m 01638722 n 0000 | congo snakes -01638722 05 n 04 amphiuma 0 congo_snake 0 congo_eel 0 blind_eel 0 002 @ 01629276 n 0000 #m 01638611 n 0000 | aquatic eel-shaped salamander having two pairs of very small feet; of still muddy waters in the southern United States -01638952 05 n 02 Sirenidae 0 family_Sirenidae 0 003 @ 01626134 n 0000 #m 01628450 n 0000 %m 01639071 n 0000 | sirens -01639071 05 n 01 genus_Siren 0 003 @ 01626600 n 0000 #m 01638952 n 0000 %m 01639187 n 0000 | a genus of Sirenidae -01639187 05 n 01 siren 0 002 @ 01629276 n 0000 #m 01639071 n 0000 | eellike aquatic North American salamander with small forelimbs and no hind limbs; have permanent external gills -01639369 05 n 06 Salientia 0 order_Salientia 0 Anura 0 order_Anura 0 Batrachia 0 order_Batrachia 0 014 @ 01342529 n 0000 #m 01625747 n 0000 + 02631238 a 0103 %m 01640383 n 0000 %m 01642671 n 0000 %m 01644104 n 0000 %m 01644542 n 0000 %m 01645093 n 0000 %m 01645634 n 0000 %m 01647803 n 0000 %m 01648818 n 0000 %m 01649948 n 0000 %m 01652583 n 0000 %m 01653610 n 0000 | frogs, toads, tree toads -01639765 05 n 06 frog 0 toad 0 toad_frog 0 anuran 0 batrachian 0 salientian 0 023 @ 01627424 n 0000 + 02631238 a 0502 + 02631238 a 0401 + 01382818 v 0101 ~ 01640846 n 0000 ~ 01642943 n 0000 ~ 01643255 n 0000 ~ 01643507 n 0000 ~ 01643896 n 0000 ~ 01644373 n 0000 ~ 01644900 n 0000 ~ 01645466 n 0000 ~ 01645776 n 0000 ~ 01648139 n 0000 ~ 01648356 n 0000 ~ 01648620 n 0000 ~ 01649170 n 0000 ~ 01650167 n 0000 ~ 01653026 n 0000 ~ 01653223 n 0000 ~ 01653509 n 0000 ~ 01653773 n 0000 ~ 01654863 n 0000 | any of various tailless stout-bodied amphibians with long hind limbs for leaping; semiaquatic and terrestrial species -01640383 05 n 02 Ranidae 0 family_Ranidae 0 004 @ 01626134 n 0000 #m 01639369 n 0000 %m 01640567 n 0000 %m 01640846 n 0000 | a family nearly cosmopolitan in distribution: true frogs -01640567 05 n 02 Rana 0 genus_Rana 0 011 @ 01626600 n 0000 #m 01640383 n 0000 %m 01641206 n 0000 %m 01641391 n 0000 %m 01641577 n 0000 %m 01641739 n 0000 %m 01641930 n 0000 %m 01642097 n 0000 %m 01642257 n 0000 %m 01642391 n 0000 %m 01642539 n 0000 | type genus of the Ranidae -01640846 05 n 02 true_frog 0 ranid 0 012 @ 01639765 n 0000 #m 01640383 n 0000 ~ 01641206 n 0000 ~ 01641391 n 0000 ~ 01641577 n 0000 ~ 01641739 n 0000 ~ 01641930 n 0000 ~ 01642097 n 0000 ~ 01642257 n 0000 ~ 01642391 n 0000 ~ 01642539 n 0000 %p 07868684 n 0000 | insectivorous usually semiaquatic web-footed amphibian with smooth moist skin and long hind legs -01641206 05 n 03 wood-frog 0 wood_frog 0 Rana_sylvatica 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | wide-ranging light-brown frog of moist North American woodlands especially spruce -01641391 05 n 03 leopard_frog 0 spring_frog 1 Rana_pipiens 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | common North American green or brownish frog having white-edged dark oval spots -01641577 05 n 02 bullfrog 0 Rana_catesbeiana 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | largest North American frog; highly aquatic with a deep-pitched voice -01641739 05 n 03 green_frog 0 spring_frog 2 Rana_clamitans 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | similar to bullfrog; found in or near marshes and ponds; of United States and Canada -01641930 05 n 02 cascades_frog 0 Rana_cascadae 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | mountain frog found near water; of United States Northwest to California -01642097 05 n 02 goliath_frog 0 Rana_goliath 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | largest living frog; up to a foot and weighing up to 10 lbs; Africa -01642257 05 n 02 pickerel_frog 0 Rana_palustris 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | a meadow frog of eastern North America -01642391 05 n 02 tarahumara_frog 0 Rana_tarahumarae 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | Mexican frog found within a jump or two of water -01642539 05 n 02 grass_frog 0 Rana_temporaria 0 002 @ 01640846 n 0000 #m 01640567 n 0000 | a common semiterrestrial European frog -01642671 05 n 02 Leptodactylidae 0 family_Leptodactylidae 0 006 @ 01626134 n 0000 #m 01639369 n 0000 %m 01642943 n 0000 %m 01643092 n 0000 %m 01643374 n 0000 %m 01643687 n 0000 | New World frogs; in some classifications essentially coextensive with the family Bufonidae -01642943 05 n 02 leptodactylid_frog 0 leptodactylid 0 002 @ 01639765 n 0000 #m 01642671 n 0000 | toothed frogs: terrestrial or aquatic or arboreal -01643092 05 n 02 Eleutherodactylus 0 genus_Eleutherodactylus 0 003 @ 01626600 n 0000 #m 01642671 n 0000 %m 01643255 n 0000 | completely terrestrial robber frogs -01643255 05 n 01 robber_frog 1 002 @ 01639765 n 0000 #m 01643092 n 0000 | small terrestrial frog of tropical America -01643374 05 n 02 Hylactophryne 0 genus_Hylactophryne 0 003 @ 01626600 n 0000 #m 01642671 n 0000 %m 01643507 n 0000 | barking frogs -01643507 05 n 03 barking_frog 0 robber_frog 2 Hylactophryne_augusti 0 002 @ 01639765 n 0000 #m 01643374 n 0000 | of southwest United States and Mexico; call is like a dog's bark -01643687 05 n 02 Leptodactylus 0 genus_Leptodactylus 0 003 @ 01626600 n 0000 #m 01642671 n 0000 %m 01643896 n 0000 | type genus of the Leptodactylidae; in some classifications placed in the family Bufonidae -01643896 05 n 03 crapaud 0 South_American_bullfrog 0 Leptodactylus_pentadactylus 0 002 @ 01639765 n 0000 #m 01643687 n 0000 | large toothed frog of South America and Central America resembling the bullfrog -01644104 05 n 02 Polypedatidae 0 family_Polypedatidae 0 003 @ 01626134 n 0000 #m 01639369 n 0000 %m 01644245 n 0000 | Old World tree frogs -01644245 05 n 02 Polypedates 0 genus_Polypedates 0 002 @ 01626600 n 0000 #m 01644104 n 0000 | type genus of the Polypedatidae -01644373 05 n 02 tree_frog 1 tree-frog 1 001 @ 01639765 n 0000 | any of various Old World arboreal frogs distinguished from true frogs by adhesive suckers on the toes -01644542 05 n 02 Ascaphidae 0 family_Ascaphidae 0 003 @ 01626134 n 0000 #m 01639369 n 0000 %m 01644699 n 0000 | family of one species of frog: tailed frog -01644699 05 n 02 Ascaphus 0 genus_Ascaphus 0 003 @ 01626600 n 0000 #m 01644542 n 0000 %m 01644900 n 0000 | type genus of the Ascaphidae; in some classifications included in the family Leiopelmatidae -01644900 05 n 05 tailed_frog 0 bell_toad 0 ribbed_toad 0 tailed_toad 0 Ascaphus_trui 0 002 @ 01639765 n 0000 #m 01644699 n 0000 | western North American frog with a taillike copulatory organ -01645093 05 n 04 Leiopelmatidae 0 family_Leiopelmatidae 0 Liopelmidae 0 family_Liopelmidae 0 003 @ 01626134 n 0000 #m 01639369 n 0000 %m 01645278 n 0000 | primitive New Zealand frogs -01645278 05 n 04 Leiopelma 0 genus_Leiopelma 0 Liopelma 0 genus_Liopelma 0 003 @ 01626600 n 0000 #m 01645093 n 0000 %m 01645466 n 0000 | type and sole genus of the family Leiopelmatidae -01645466 05 n 01 Liopelma_hamiltoni 0 002 @ 01639765 n 0000 #m 01645278 n 0000 | primitive New Zealand frog with four unwebbed toes on forefeet and five on hind feet -01645634 05 n 02 Bufonidae 0 family_Bufonidae 0 004 @ 01626134 n 0000 #m 01639369 n 0000 %m 01645776 n 0000 %m 01646134 n 0000 | true toads -01645776 05 n 01 true_toad 0 013 @ 01639765 n 0000 #m 01645634 n 0000 ~ 01646292 n 0000 ~ 01646388 n 0000 ~ 01646555 n 0000 ~ 01646648 n 0000 ~ 01646802 n 0000 ~ 01646902 n 0000 ~ 01647033 n 0000 ~ 01647180 n 0000 ~ 01647303 n 0000 ~ 01647466 n 0000 ~ 01647640 n 0000 | tailless amphibian similar to a frog but more terrestrial and having drier warty skin -01646134 05 n 01 genus_Bufo 0 003 @ 01626600 n 0000 #m 01645634 n 0000 %m 01646292 n 0000 | type genus of the Bufonidae; common toads of New and Old Worlds -01646292 05 n 01 bufo 0 002 @ 01645776 n 0000 #m 01646134 n 0000 | any toad of the genus Bufo -01646388 05 n 03 agua 0 agua_toad 0 Bufo_marinus 0 001 @ 01645776 n 0000 | largest known toad species; native to Central America; valuable destroyer of insect pests -01646555 05 n 02 European_toad 0 Bufo_bufo 0 001 @ 01645776 n 0000 | common toad of Europe -01646648 05 n 02 natterjack 0 Bufo_calamita 0 001 @ 01645776 n 0000 | common brownish-yellow short-legged toad of western Europe; runs rather than hops -01646802 05 n 02 American_toad 0 Bufo_americanus 0 001 @ 01645776 n 0000 | common toad of America -01646902 05 n 02 Eurasian_green_toad 0 Bufo_viridis 0 001 @ 01645776 n 0000 | Eurasian toad with variable chiefly green coloring -01647033 05 n 02 American_green_toad 0 Bufo_debilis 0 001 @ 01645776 n 0000 | small green or yellow-green toad with small black bars and stripes -01647180 05 n 02 Yosemite_toad 0 Bufo_canorus 0 001 @ 01645776 n 0000 | of high Sierra Nevada meadows and forest borders -01647303 05 n 02 Texas_toad 0 Bufo_speciosus 0 001 @ 01645776 n 0000 | nocturnal burrowing toad of mesquite woodland and prairies of the United States southwest -01647466 05 n 02 southwestern_toad 0 Bufo_microscaphus 0 001 @ 01645776 n 0000 | a uniformly warty stocky toad of washes and streams of semiarid southwestern United States -01647640 05 n 02 western_toad 0 Bufo_boreas 0 001 @ 01645776 n 0000 | of a great variety of habitats from southern Alaska to Baja California west of the Rockies -01647803 05 n 02 Discoglossidae 0 family_Discoglossidae 0 004 @ 01626134 n 0000 #m 01639369 n 0000 %m 01648001 n 0000 %m 01648494 n 0000 | family of Old World toads having a fixed disklike tongue -01648001 05 n 02 Alytes 0 genus_Alytes 0 004 @ 01626600 n 0000 #m 01647803 n 0000 %m 01648139 n 0000 %m 01648356 n 0000 | midwife toads -01648139 05 n 03 obstetrical_toad 0 midwife_toad 1 Alytes_obstetricans 0 002 @ 01639765 n 0000 #m 01648001 n 0000 | European toad whose male carries the fertilized eggs wrapped around its hind legs until they hatch -01648356 05 n 02 midwife_toad 2 Alytes_cisternasi 0 002 @ 01639765 n 0000 #m 01648001 n 0000 | similar in habit to Alytes obstetricians -01648494 05 n 02 Bombina 0 genus_Bombina 0 003 @ 01626600 n 0000 #m 01647803 n 0000 %m 01648620 n 0000 | fire-bellied toads -01648620 05 n 02 fire-bellied_toad 0 Bombina_bombina 0 002 @ 01639765 n 0000 #m 01648494 n 0000 | toad of central and eastern Europe having red or orange patches mixed with black on its underside -01648818 05 n 02 Pelobatidae 0 family_Pelobatidae 0 004 @ 01626134 n 0000 #m 01639369 n 0000 %m 01648993 n 0000 %m 01649170 n 0000 | the amphibian family of spadefoot toads -01648993 05 n 02 Scaphiopus 0 genus_Scaphiopus 0 005 @ 01626600 n 0000 #m 01648818 n 0000 %m 01649412 n 0000 %m 01649556 n 0000 %m 01649726 n 0000 | New World spadefoot toads -01649170 05 n 02 spadefoot 0 spadefoot_toad 0 005 @ 01639765 n 0000 #m 01648818 n 0000 ~ 01649412 n 0000 ~ 01649556 n 0000 ~ 01649726 n 0000 | a burrowing toad of the northern hemisphere with a horny spade-like projection on each hind foot -01649412 05 n 02 western_spadefoot 0 Scaphiopus_hammondii 0 002 @ 01649170 n 0000 #m 01648993 n 0000 | this spadefoot toad live in California -01649556 05 n 02 southern_spadefoot 0 Scaphiopus_multiplicatus 0 002 @ 01649170 n 0000 #m 01648993 n 0000 | this spadefoot toad lives in the southwestern United States -01649726 05 n 02 plains_spadefoot 0 Scaphiopus_bombifrons 0 002 @ 01649170 n 0000 #m 01648993 n 0000 | this spadefoot toad lives in plains and hills and river bottoms in areas of low rainfall east of the Rocky Mountains -01649948 05 n 02 Hylidae 0 family_Hylidae 0 007 @ 01626134 n 0000 #m 01639369 n 0000 %m 01650167 n 0000 %m 01650509 n 0000 %m 01651370 n 0000 %m 01651900 n 0000 %m 01652163 n 0000 | the amphibian family of tree frogs -01650167 05 n 03 tree_toad 0 tree_frog 2 tree-frog 2 009 @ 01639765 n 0000 #m 01649948 n 0000 ~ 01650690 n 0000 ~ 01650901 n 0000 ~ 01651059 n 0000 ~ 01651285 n 0000 ~ 01651487 n 0000 ~ 01652026 n 0000 ~ 01652297 n 0000 | arboreal amphibians usually having adhesive disks at the tip of each toe; of southeast Asia and Australia and America -01650509 05 n 02 Hyla 0 genus_Hyla 0 005 @ 01626600 n 0000 #m 01649948 n 0000 %m 01650690 n 0000 %m 01650901 n 0000 %m 01651059 n 0000 | the type genus of the Hylidae; tree toads -01650690 05 n 02 spring_peeper 0 Hyla_crucifer 0 002 @ 01650167 n 0000 #m 01650509 n 0000 | a small brown tree toad having a shrill call heard near wetlands of eastern United States and Canada in early spring -01650901 05 n 02 Pacific_tree_toad 0 Hyla_regilla 0 002 @ 01650167 n 0000 #m 01650509 n 0000 | the most commonly heard frog on the Pacific coast of America -01651059 05 n 02 canyon_treefrog 0 Hyla_arenicolor 0 002 @ 01650167 n 0000 #m 01650509 n 0000 | a small chiefly ground dweller that stays within easy jumping distance of water; of United States southwest and northern Mexico -01651285 05 n 01 chameleon_tree_frog 0 001 @ 01650167 n 0000 | a form of tree toad -01651370 05 n 02 Acris 0 genus_Acris 0 003 @ 01626600 n 0000 #m 01649948 n 0000 %m 01651487 n 0000 | cricket frogs -01651487 05 n 01 cricket_frog 0 004 @ 01650167 n 0000 #m 01651370 n 0000 ~ 01651641 n 0000 ~ 01651778 n 0000 | either of two frogs with a clicking call -01651641 05 n 02 northern_cricket_frog 0 Acris_crepitans 0 001 @ 01651487 n 0000 | a cricket frog of eastern and central United States -01651778 05 n 02 eastern_cricket_frog 0 Acris_gryllus 0 001 @ 01651487 n 0000 | a cricket frog of eastern United States -01651900 05 n 02 Pseudacris 0 genus_Pseudacris 0 003 @ 01626600 n 0000 #m 01649948 n 0000 %m 01652026 n 0000 | chorus frogs -01652026 05 n 01 chorus_frog 0 002 @ 01650167 n 0000 #m 01651900 n 0000 | any of several small North American frogs having a loud call -01652163 05 n 02 Pternohyla 0 genus_Pternohyla 0 003 @ 01626600 n 0000 #m 01649948 n 0000 %m 01652297 n 0000 | burrowing tree frogs -01652297 05 n 03 lowland_burrowing_treefrog 0 northern_casque-headed_frog 0 Pternohyla_fodiens 0 002 @ 01650167 n 0000 #m 01652163 n 0000 | terrestrial burrowing nocturnal frog of grassy terrain and scrub forests having very hard upper surface of head; of the United States southwest -01652583 05 n 04 Microhylidae 0 family_Microhylidae 0 Brevicipitidae 0 family_Brevicipitidae 0 004 @ 01626134 n 0000 #m 01639369 n 0000 %m 01652850 n 0000 %m 01653384 n 0000 | narrow-mouthed toads and sheep frogs; some burrow and some are arboreal; found worldwide -01652850 05 n 02 Gastrophryne 0 genus_Gastrophryne 0 004 @ 01626600 n 0000 #m 01652583 n 0000 %m 01653026 n 0000 %m 01653223 n 0000 | primarily tropical narrow-mouthed toads -01653026 05 n 02 western_narrow-mouthed_toad 0 Gastrophryne_olivacea 0 002 @ 01639765 n 0000 #m 01652850 n 0000 | small secretive toad with smooth tough skin of central and western North America -01653223 05 n 02 eastern_narrow-mouthed_toad 0 Gastrophryne_carolinensis 0 002 @ 01639765 n 0000 #m 01652850 n 0000 | small toad of southeastern United States -01653384 05 n 02 Hypopachus 0 genus_Hypopachus 0 003 @ 01626600 n 0000 #m 01652583 n 0000 %m 01653509 n 0000 | sheep frogs -01653509 05 n 01 sheep_frog 0 002 @ 01639765 n 0000 #m 01653384 n 0000 | mostly of Central America -01653610 05 n 02 Pipidae 0 family_Pipidae 0 005 @ 01626134 n 0000 #m 01639369 n 0000 %m 01653773 n 0000 %m 01653975 n 0000 %m 01654429 n 0000 | tongueless frogs -01653773 05 n 01 tongueless_frog 0 004 @ 01639765 n 0000 #m 01653610 n 0000 ~ 01654083 n 0000 ~ 01654637 n 0000 | almost completely aquatic frog native to Africa and Panama and northern South America -01653975 05 n 02 Pipa 0 genus_Pipa 0 002 @ 01626600 n 0000 #m 01653610 n 0000 | type genus of the Pipidae -01654083 05 n 03 Surinam_toad 0 Pipa_pipa 0 Pipa_americana 0 001 @ 01653773 n 0000 | a South American toad; incubates its young in pits in the skin of its back -01654245 05 n 02 Xenopodidae 0 family_Xenopodidae 0 001 @ 01626134 n 0000 | in some classifications the family of the genus Xenopus which is otherwise included in the family Pipidae -01654429 05 n 02 Xenopus 0 genus_Xenopus 0 003 @ 01626600 n 0000 #m 01653610 n 0000 %m 01654637 n 0000 | an African clawed frog; in some classifications made the type genus of a separate family Xenopodidae -01654637 05 n 02 African_clawed_frog 0 Xenopus_laevis 0 002 @ 01653773 n 0000 #m 01654429 n 0000 | a tongueless frog native to Africa; established in the United States as result of release of laboratory and aquarium animals -01654863 05 n 01 South_American_poison_toad 0 001 @ 01639765 n 0000 | a South American toad -01654957 05 n 02 Gymnophiona 0 order_Gymnophiona 0 003 @ 01342529 n 0000 #m 01625747 n 0000 %m 01655116 n 0000 | an order of amphibians including caecilians -01655116 05 n 04 Caeciliidae 0 family_Caeciliidae 0 Caeciliadae 0 family_Caeciliadae 0 004 @ 01626134 n 0000 #m 01654957 n 0000 + 02673446 a 0101 %m 01655344 n 0000 | coextensive with the order Gymnophiona: legless amphibians -01655344 05 n 02 caecilian 0 blindworm 2 003 @ 01627424 n 0000 #m 01655116 n 0000 + 02673446 a 0101 | any of the small slender limbless burrowing wormlike amphibians of the order Gymnophiona; inhabit moist soil in tropical regions -01655577 05 n 04 Labyrinthodontia 0 superorder_Labyrinthodontia 0 Labyrinthodonta 0 superorder_Labyrinthodonta 0 005 @ 01342529 n 0000 #m 01625747 n 0000 %m 01655951 n 0000 %m 01656078 n 0000 %m 01656576 n 0000 | extinct amphibians typically resembling heavy-bodied salamanders or crocodiles and having a solid flattened skull and conical teeth; Devonian through Triassic -01655951 05 n 01 labyrinthodont 0 002 @ 01627424 n 0000 #m 01655577 n 0000 | an amphibian of the superorder Labyrinthodontia -01656078 05 n 02 Stereospondyli 0 order_Stereospondyli 0 002 @ 01342529 n 0000 #m 01655577 n 0000 | formerly a suborder of Stegocephalia; amphibia having vertebrae whose component elements are fused into a single piece; "most vertebrates are stereospondylous" -01656340 05 n 02 Stegocephalia 0 order_Stegocephalia 0 002 @ 01342529 n 0000 #m 01625747 n 0000 | in former classifications a division of class Amphibia comprising all pre-Jurassic and some later extinct large salamandriform amphibia -01656576 05 n 02 Temnospondyli 0 order_Temnospondyli 0 002 @ 01342529 n 0000 #m 01655577 n 0000 | formerly a suborder of Stegocephalia; large Carboniferous and Permian amphibians having vertebrae in which some elements remain separate -01656813 05 n 01 reptile_family 0 047 @ 08107499 n 0000 #m 01471070 n 0000 ~ 01663169 n 0000 ~ 01665238 n 0000 ~ 01665761 n 0000 ~ 01666802 n 0000 ~ 01667570 n 0000 ~ 01669883 n 0000 ~ 01671874 n 0000 ~ 01674850 n 0000 ~ 01675964 n 0000 ~ 01676313 n 0000 ~ 01682920 n 0000 ~ 01683428 n 0000 ~ 01683724 n 0000 ~ 01685277 n 0000 ~ 01687441 n 0000 ~ 01689226 n 0000 ~ 01690703 n 0000 ~ 01691085 n 0000 ~ 01691384 n 0000 ~ 01691782 n 0000 ~ 01692713 n 0000 ~ 01693472 n 0000 ~ 01694430 n 0000 ~ 01696849 n 0000 ~ 01698144 n 0000 ~ 01699415 n 0000 ~ 01703866 n 0000 ~ 01705717 n 0000 ~ 01707433 n 0000 ~ 01710348 n 0000 ~ 01715249 n 0000 ~ 01717666 n 0000 ~ 01722085 n 0000 ~ 01723259 n 0000 ~ 01724470 n 0000 ~ 01726960 n 0000 ~ 01740283 n 0000 ~ 01740393 n 0000 ~ 01741744 n 0000 ~ 01743223 n 0000 ~ 01743449 n 0000 ~ 01744657 n 0000 ~ 01751621 n 0000 ~ 01751979 n 0000 ~ 01753721 n 0000 | a family of reptiles -01657723 05 n 01 reptile_genus 0 163 @ 08108972 n 0000 #m 01471070 n 0000 ~ 01663659 n 0000 ~ 01663939 n 0000 ~ 01664244 n 0000 ~ 01664862 n 0000 ~ 01665372 n 0000 ~ 01666102 n 0000 ~ 01666431 n 0000 ~ 01666967 n 0000 ~ 01667302 n 0000 ~ 01667959 n 0000 ~ 01668257 n 0000 ~ 01669068 n 0000 ~ 01669527 n 0000 ~ 01670378 n 0000 ~ 01670673 n 0000 ~ 01670961 n 0000 ~ 01671312 n 0000 ~ 01672275 n 0000 ~ 01673118 n 0000 ~ 01675225 n 0000 ~ 01675599 n 0000 ~ 01676113 n 0000 ~ 01677242 n 0000 ~ 01677613 n 0000 ~ 01677913 n 0000 ~ 01678237 n 0000 ~ 01678522 n 0000 ~ 01678887 n 0000 ~ 01679178 n 0000 ~ 01679494 n 0000 ~ 01679837 n 0000 ~ 01680137 n 0000 ~ 01681200 n 0000 ~ 01681513 n 0000 ~ 01681812 n 0000 ~ 01682293 n 0000 ~ 01682588 n 0000 ~ 01683036 n 0000 ~ 01683900 n 0000 ~ 01684012 n 0000 ~ 01684435 n 0000 ~ 01684941 n 0000 ~ 01685107 n 0000 ~ 01685679 n 0000 ~ 01687009 n 0000 ~ 01687856 n 0000 ~ 01688106 n 0000 ~ 01688428 n 0000 ~ 01688812 n 0000 ~ 01689678 n 0000 ~ 01690005 n 0000 ~ 01690339 n 0000 ~ 01690857 n 0000 ~ 01691525 n 0000 ~ 01692143 n 0000 ~ 01693020 n 0000 ~ 01693995 n 0000 ~ 01694558 n 0000 ~ 01696026 n 0000 ~ 01696151 n 0000 ~ 01697002 n 0000 ~ 01697837 n 0000 ~ 01698303 n 0000 ~ 01698936 n 0000 ~ 01699537 n 0000 ~ 01700754 n 0000 ~ 01701052 n 0000 ~ 01701697 n 0000 ~ 01702087 n 0000 ~ 01703996 n 0000 ~ 01704184 n 0000 ~ 01704497 n 0000 ~ 01704847 n 0000 ~ 01706247 n 0000 ~ 01706533 n 0000 ~ 01706865 n 0000 ~ 01707149 n 0000 ~ 01707566 n 0000 ~ 01709278 n 0000 ~ 01709723 n 0000 ~ 01710035 n 0000 ~ 01710529 n 0000 ~ 01711297 n 0000 ~ 01712606 n 0000 ~ 01713040 n 0000 ~ 01713635 n 0000 ~ 01714059 n 0000 ~ 01714404 n 0000 ~ 01714686 n 0000 ~ 01714982 n 0000 ~ 01715383 n 0000 ~ 01716122 n 0000 ~ 01716459 n 0000 ~ 01717335 n 0000 ~ 01717957 n 0000 ~ 01718276 n 0000 ~ 01718632 n 0000 ~ 01720117 n 0000 ~ 01720867 n 0000 ~ 01721269 n 0000 ~ 01722254 n 0000 ~ 01722538 n 0000 ~ 01723425 n 0000 ~ 01724703 n 0000 ~ 01724947 n 0000 ~ 01725570 n 0000 ~ 01726079 n 0000 ~ 01728445 n 0000 ~ 01728738 n 0000 ~ 01729133 n 0000 ~ 01729533 n 0000 ~ 01729838 n 0000 ~ 01730429 n 0000 ~ 01730679 n 0000 ~ 01731418 n 0000 ~ 01732445 n 0000 ~ 01733094 n 0000 ~ 01733346 n 0000 ~ 01733634 n 0000 ~ 01734273 n 0000 ~ 01735062 n 0000 ~ 01735898 n 0000 ~ 01736256 n 0000 ~ 01736569 n 0000 ~ 01736696 n 0000 ~ 01737197 n 0000 ~ 01737356 n 0000 ~ 01738175 n 0000 ~ 01738470 n 0000 ~ 01738965 n 0000 ~ 01739260 n 0000 ~ 01739518 n 0000 ~ 01740005 n 0000 ~ 01740721 n 0000 ~ 01741116 n 0000 ~ 01742310 n 0000 ~ 01742680 n 0000 ~ 01742967 n 0000 ~ 01743787 n 0000 ~ 01745780 n 0000 ~ 01746063 n 0000 ~ 01746565 n 0000 ~ 01746818 n 0000 ~ 01747144 n 0000 ~ 01747466 n 0000 ~ 01747739 n 0000 ~ 01748560 n 0000 ~ 01749141 n 0000 ~ 01749428 n 0000 ~ 01750027 n 0000 ~ 01750315 n 0000 ~ 01750598 n 0000 ~ 01750920 n 0000 ~ 01751353 n 0000 ~ 01752433 n 0000 ~ 01752889 n 0000 ~ 01753354 n 0000 ~ 01754190 n 0000 ~ 01755274 n 0000 ~ 01757547 n 0000 ~ 01758019 n 0000 | a genus of reptiles -01660719 05 n 02 Reptilia 0 class_Reptilia 0 008 @ 08103777 n 0000 #m 01471070 n 0000 + 02832458 a 0101 %m 01661091 n 0000 %m 01661404 n 0000 %m 01672767 n 0000 %m 01695259 n 0000 %m 01719175 n 0000 | class of cold-blooded air-breathing vertebrates with completely ossified skeleton and a body usually covered with scales or horny plates; once the dominant land animals -01661091 05 n 02 reptile 0 reptilian 0 007 @ 01471682 n 0000 #m 01660719 n 0000 + 02832458 a 0201 ~ 01661592 n 0000 ~ 01661818 n 0000 ~ 01662060 n 0000 ~ 01719403 n 0000 | any cold-blooded vertebrate of the class Reptilia including tortoises, turtles, snakes, lizards, alligators, crocodiles, and extinct forms -01661404 05 n 02 Anapsida 0 subclass_Anapsida 0 004 @ 08103777 n 0000 #m 01660719 n 0000 %m 01661592 n 0000 %m 01662274 n 0000 | oldest known reptiles; turtles and extinct Permian forms -01661592 05 n 02 anapsid 0 anapsid_reptile 0 004 @ 01661091 n 0000 #m 01661404 n 0000 ! 01661818 n 0101 ~ 01662622 n 0000 | primitive reptile having no opening in the temporal region of the skull; all extinct except turtles -01661818 05 n 02 diapsid 0 diapsid_reptile 0 007 @ 01661091 n 0000 ! 01661592 n 0101 ~ 01673282 n 0000 ~ 01674216 n 0000 ~ 01695681 n 0000 ~ 01696633 n 0000 ~ 01726692 n 0000 | reptile having a pair of openings in the skull behind each eye -01662060 05 n 02 Diapsida 0 subclass_Diapsida 0 001 @ 01661091 n 0000 | used in former classifications to include all living reptiles except turtles; superseded by the two subclasses Lepidosauria and Archosauria -01662274 05 n 06 Chelonia 1 order_Chelonia 0 Testudinata 0 order_Testudinata 0 Testudines 0 order_Testudines 0 011 @ 01342529 n 0000 #m 01661404 n 0000 + 02692471 a 0101 %m 01662622 n 0000 %m 01663169 n 0000 %m 01665238 n 0000 %m 01665761 n 0000 %m 01666802 n 0000 %m 01667570 n 0000 %m 01669883 n 0000 %m 01671874 n 0000 | tortoises and turtles -01662622 05 n 02 chelonian 0 chelonian_reptile 0 004 @ 01661592 n 0000 #m 01662274 n 0000 + 02692471 a 0101 ~ 01662784 n 0000 | a reptile of the order Chelonia -01662784 05 n 01 turtle 0 014 @ 01662622 n 0000 ~ 01663401 n 0000 ~ 01665932 n 0000 ~ 01667114 n 0000 ~ 01667778 n 0000 ~ 01668436 n 0000 ~ 01668665 n 0000 ~ 01668892 n 0000 ~ 01669191 n 0000 ~ 01669654 n 0000 ~ 01670092 n 0000 ~ 01672032 n 0000 %p 01903756 n 0000 %p 01904029 n 0000 | any of various aquatic and land reptiles having a bony shell and flipper-like limbs for swimming -01663169 05 n 04 Cheloniidae 0 family_Cheloniidae 0 Chelonidae 0 family_Chelonidae 0 006 @ 01656813 n 0000 #m 01662274 n 0000 %m 01663659 n 0000 %m 01663939 n 0000 %m 01664244 n 0000 %m 01664862 n 0000 | green turtles; hawksbills -01663401 05 n 02 sea_turtle 0 marine_turtle 0 006 @ 01662784 n 0000 ~ 01663782 n 0000 ~ 01664065 n 0000 ~ 01664369 n 0000 ~ 01664990 n 0000 ~ 01665541 n 0000 | any of various large turtles with limbs modified into flippers; widely distributed in warm seas -01663659 05 n 02 Chelonia 2 genus_Chelonia 0 003 @ 01657723 n 0000 #m 01663169 n 0000 %m 01663782 n 0000 | green turtles -01663782 05 n 02 green_turtle 0 Chelonia_mydas 0 002 @ 01663401 n 0000 #m 01663659 n 0000 | large tropical turtle with greenish flesh used for turtle soup -01663939 05 n 02 Caretta 0 genus_Caretta 0 003 @ 01657723 n 0000 #m 01663169 n 0000 %m 01664065 n 0000 | loggerhead turtles -01664065 05 n 03 loggerhead 0 loggerhead_turtle 0 Caretta_caretta 0 002 @ 01663401 n 0000 #m 01663939 n 0000 | very large carnivorous sea turtle; wide-ranging in warm open seas -01664244 05 n 02 Lepidochelys 0 genus_Lepidochelys 0 003 @ 01657723 n 0000 #m 01663169 n 0000 %m 01664369 n 0000 | ridleys -01664369 05 n 01 ridley 0 004 @ 01663401 n 0000 #m 01664244 n 0000 ~ 01664492 n 0000 ~ 01664674 n 0000 | a marine turtle -01664492 05 n 04 Atlantic_ridley 0 bastard_ridley 0 bastard_turtle 0 Lepidochelys_kempii 0 001 @ 01664369 n 0000 | grey sea turtle of the Atlantic and Gulf Coasts of North America -01664674 05 n 03 Pacific_ridley 0 olive_ridley 0 Lepidochelys_olivacea 0 001 @ 01664369 n 0000 | olive-colored sea turtle of tropical Pacific and Indian and the southern Atlantic oceans -01664862 05 n 02 Eretmochelys 0 genus_Eretmochelys 0 003 @ 01657723 n 0000 #m 01663169 n 0000 %m 01664990 n 0000 | hawksbills -01664990 05 n 05 hawksbill_turtle 0 hawksbill 0 hawkbill 0 tortoiseshell_turtle 0 Eretmochelys_imbricata 0 002 @ 01663401 n 0000 #m 01664862 n 0000 | pugnacious tropical sea turtle with a hawk-like beak; source of food and the best tortoiseshell -01665238 05 n 02 Dermochelyidae 0 family_Dermochelyidae 0 003 @ 01656813 n 0000 #m 01662274 n 0000 %m 01665372 n 0000 | sea turtles -01665372 05 n 02 Dermochelys 0 genus_Dermochelys 0 003 @ 01657723 n 0000 #m 01665238 n 0000 %m 01665541 n 0000 | type genus of the Dermochelyidae: leatherback turtles -01665541 05 n 04 leatherback_turtle 0 leatherback 0 leathery_turtle 0 Dermochelys_coriacea 0 002 @ 01663401 n 0000 #m 01665372 n 0000 | wide-ranging marine turtle with flexible leathery carapace; largest living turtle -01665761 05 n 02 Chelydridae 0 family_Chelydridae 0 005 @ 01656813 n 0000 #m 01662274 n 0000 %m 01665932 n 0000 %m 01666102 n 0000 %m 01666431 n 0000 | snapping turtles -01665932 05 n 01 snapping_turtle 0 004 @ 01662784 n 0000 #m 01665761 n 0000 ~ 01666228 n 0000 ~ 01666585 n 0000 | large aggressive freshwater turtle with powerful jaws -01666102 05 n 02 Chelydra 0 genus_Chelydra 0 003 @ 01657723 n 0000 #m 01665761 n 0000 %m 01666228 n 0000 | snapping turtles -01666228 05 n 03 common_snapping_turtle 0 snapper 0 Chelydra_serpentina 0 002 @ 01665932 n 0000 #m 01666102 n 0000 | large-headed turtle with powerful hooked jaws found in or near water; prone to bite -01666431 05 n 02 Macroclemys 0 genus_Macroclemys 0 003 @ 01657723 n 0000 #m 01665761 n 0000 %m 01666585 n 0000 | includes the alligator snapping turtle -01666585 05 n 03 alligator_snapping_turtle 0 alligator_snapper 0 Macroclemys_temmincki 0 002 @ 01665932 n 0000 #m 01666431 n 0000 | large species having three ridges on its back; found in southeastern United States -01666802 05 n 02 Kinosternidae 0 family_Kinosternidae 0 004 @ 01656813 n 0000 #m 01662274 n 0000 %m 01666967 n 0000 %m 01667302 n 0000 | mud turtles; musk turtles -01666967 05 n 02 Kinosternon 0 genus_Kinosternon 0 003 @ 01657723 n 0000 #m 01666802 n 0000 %m 01667114 n 0000 | type genus of the Kinosternidae -01667114 05 n 01 mud_turtle 0 003 @ 01662784 n 0000 #m 01666967 n 0000 ~ 01667432 n 0000 | bottom-dwelling freshwater turtle inhabiting muddy rivers of North America and Central America -01667302 05 n 02 Sternotherus 0 genus_Sternotherus 0 003 @ 01657723 n 0000 #m 01666802 n 0000 %m 01667432 n 0000 | musk turtles -01667432 05 n 02 musk_turtle 0 stinkpot 0 002 @ 01667114 n 0000 #m 01667302 n 0000 | small freshwater turtle having a strong musky odor -01667570 05 n 02 Emydidae 0 family_Emydidae 0 007 @ 01656813 n 0000 #m 01662274 n 0000 %m 01667778 n 0000 %m 01667959 n 0000 %m 01668257 n 0000 %m 01669068 n 0000 %m 01669527 n 0000 | box and water turtles -01667778 05 n 01 terrapin 0 003 @ 01662784 n 0000 #m 01667570 n 0000 ~ 01668091 n 0000 | any of various edible North American web-footed turtles living in fresh or brackish water -01667959 05 n 02 Malaclemys 0 genus_Malaclemys 0 003 @ 01657723 n 0000 #m 01667570 n 0000 %m 01668091 n 0000 | American terrapins -01668091 05 n 02 diamondback_terrapin 0 Malaclemys_centrata 0 002 @ 01667778 n 0000 #m 01667959 n 0000 | of marshes along Atlantic and Gulf Coasts of United States -01668257 05 n 02 Pseudemys 0 genus_Pseudemys 0 005 @ 01657723 n 0000 #m 01667570 n 0000 %m 01668436 n 0000 %m 01668665 n 0000 %m 01668892 n 0000 | sliders; red-bellied terrapin -01668436 05 n 04 red-bellied_terrapin 0 red-bellied_turtle 0 redbelly 0 Pseudemys_rubriventris 0 002 @ 01662784 n 0000 #m 01668257 n 0000 | freshwater turtle of Chesapeake Bay tributaries having red markings on the lower shell -01668665 05 n 03 slider 0 yellow-bellied_terrapin 0 Pseudemys_scripta 0 002 @ 01662784 n 0000 #m 01668257 n 0000 | freshwater turtle of United States and South America; frequently raised commercially; some young sold as pets -01668892 05 n 03 cooter 0 river_cooter 0 Pseudemys_concinna 0 002 @ 01662784 n 0000 #m 01668257 n 0000 | large river turtle of the southern United States and northern Mexico -01669068 05 n 02 Terrapene 0 genus_Terrapene 0 003 @ 01657723 n 0000 #m 01667570 n 0000 %m 01669191 n 0000 | box turtles -01669191 05 n 02 box_turtle 0 box_tortoise 0 003 @ 01662784 n 0000 #m 01669068 n 0000 ~ 01669372 n 0000 | chiefly terrestrial turtle of North America; shell can be closed tightly -01669372 05 n 02 Western_box_turtle 0 Terrapene_ornata 0 001 @ 01669191 n 0000 | primarily a prairie turtle of western United States and northern Mexico -01669527 05 n 02 Chrysemys 0 genus_Chrysemys 0 003 @ 01657723 n 0000 #m 01667570 n 0000 %m 01669654 n 0000 | painted turtles -01669654 05 n 04 painted_turtle 0 painted_terrapin 0 painted_tortoise 0 Chrysemys_picta 0 002 @ 01662784 n 0000 #m 01669527 n 0000 | freshwater turtles having bright yellow and red markings; common in the eastern United States -01669883 05 n 02 Testudinidae 0 family_Testudinidae 0 007 @ 01656813 n 0000 #m 01662274 n 0000 %m 01670092 n 0000 %m 01670378 n 0000 %m 01670673 n 0000 %m 01670961 n 0000 %m 01671312 n 0000 | land tortoises -01670092 05 n 01 tortoise 0 007 @ 01662784 n 0000 #m 01669883 n 0000 ~ 01670535 n 0000 ~ 01670802 n 0000 ~ 01671125 n 0000 ~ 01671479 n 0000 ~ 01671705 n 0000 | usually herbivorous land turtles having clawed elephant-like limbs; worldwide in arid area except Australia and Antarctica -01670378 05 n 02 Testudo 0 genus_Testudo 0 004 @ 01657723 n 0000 #m 01669883 n 0000 %m 01670535 n 0000 %m 01670802 n 0000 | type genus of the Testudinidae -01670535 05 n 02 European_tortoise 0 Testudo_graeca 0 002 @ 01670092 n 0000 #m 01670378 n 0000 | small land tortoise of southern Europe -01670673 05 n 02 Geochelone 0 genus_Geochelone 0 003 @ 01657723 n 0000 #m 01669883 n 0000 %m 01670802 n 0000 | giant tortoises -01670802 05 n 01 giant_tortoise 0 003 @ 01670092 n 0000 #m 01670378 n 0000 #m 01670673 n 0000 | very large tortoises of the Galapagos and Seychelles islands -01670961 05 n 02 Gopherus 0 genus_Gopherus 0 005 @ 01657723 n 0000 #m 01669883 n 0000 %m 01671125 n 0000 %m 01671479 n 0000 %m 01671705 n 0000 | gopher tortoises -01671125 05 n 04 gopher_tortoise 0 gopher_turtle 0 gopher 2 Gopherus_polypemus 0 002 @ 01670092 n 0000 #m 01670961 n 0000 | burrowing edible land tortoise of southeastern North America -01671312 05 n 02 Xerobates 0 genus_Xerobates 0 002 @ 01657723 n 0000 #m 01669883 n 0000 | possible new genus for desert and Texas tortoises based on recent research -01671479 05 n 02 desert_tortoise 0 Gopherus_agassizii 0 002 @ 01670092 n 0000 #m 01670961 n 0000 | burrowing tortoise of the arid western United States and northern Mexico; may be reclassified as a member of genus Xerobates -01671705 05 n 01 Texas_tortoise 0 002 @ 01670092 n 0000 #m 01670961 n 0000 | close relative to the desert tortoise; may be reclassified as a member of genus Xerobates -01671874 05 n 02 Trionychidae 0 family_Trionychidae 0 004 @ 01656813 n 0000 #m 01662274 n 0000 %m 01672032 n 0000 %m 01672275 n 0000 | soft-shelled turtles -01672032 05 n 02 soft-shelled_turtle 0 pancake_turtle 0 004 @ 01662784 n 0000 #m 01671874 n 0000 ~ 01672432 n 0000 ~ 01672611 n 0000 | voracious aquatic turtle with a flat flexible shell covered by a leathery skin; can inflict painful bites -01672275 05 n 02 Trionyx 0 genus_Trionyx 0 004 @ 01657723 n 0000 #m 01671874 n 0000 %m 01672432 n 0000 %m 01672611 n 0000 | type genus of the Trionychidae -01672432 05 n 02 spiny_softshell 0 Trionyx_spiniferus 0 002 @ 01672032 n 0000 #m 01672275 n 0000 | river turtle of western United States with a warty shell; prefers quiet water -01672611 05 n 02 smooth_softshell 0 Trionyx_muticus 0 002 @ 01672032 n 0000 #m 01672275 n 0000 | river turtle of Mississippi basin; prefers running water -01672767 05 n 02 Lepidosauria 0 subclass_Lepidosauria 0 004 @ 08103777 n 0000 #m 01660719 n 0000 %m 01672950 n 0000 %m 01673503 n 0000 | diapsid reptiles: lizards; snakes; tuataras -01672950 05 n 02 Rhynchocephalia 0 order_Rhynchocephalia 0 003 @ 01342529 n 0000 #m 01672767 n 0000 %m 01673118 n 0000 | tuataras; extinct forms from middle Triassic -01673118 05 n 02 Sphenodon 0 genus_Sphenodon 0 003 @ 01657723 n 0000 #m 01672950 n 0000 %m 01673282 n 0000 | coextensive with the order Rhynchocephalia: tuataras -01673282 05 n 02 tuatara 0 Sphenodon_punctatum 0 002 @ 01661818 n 0000 #m 01673118 n 0000 | only extant member of the order Rhynchocephalia of large spiny lizard-like diapsid reptiles of coastal islands off New Zealand -01673503 05 n 02 Squamata 0 order_Squamata 0 004 @ 01342529 n 0000 #m 01672767 n 0000 %m 01673668 n 0000 %m 01726390 n 0000 | diapsid reptiles: snakes and lizards -01673668 05 n 04 Sauria 0 suborder_Sauria 0 Lacertilia 0 suborder_Lacertilia 0 022 @ 01342529 n 0000 #m 01673503 n 0000 + 02853740 a 0302 + 02853740 a 0101 %m 01674216 n 0000 %m 01674850 n 0000 %m 01675964 n 0000 %m 01676313 n 0000 %m 01682920 n 0000 %m 01683428 n 0000 %m 01683724 n 0000 %m 01684941 n 0000 %m 01685277 n 0000 %m 01687441 n 0000 %m 01689226 n 0000 %m 01690703 n 0000 %m 01691085 n 0000 %m 01691384 n 0000 %m 01691782 n 0000 %m 01692713 n 0000 %m 01693472 n 0000 %m 01694430 n 0000 | true lizards; including chameleons and geckos -01674216 05 n 01 saurian 0 004 @ 01661818 n 0000 #m 01673668 n 0000 + 02853740 a 0101 ~ 01674464 n 0000 | any of various reptiles of the suborder Sauria which includes lizards; in former classifications included also the crocodiles and dinosaurs -01674464 05 n 01 lizard 0 015 @ 01674216 n 0000 ~ 01674990 n 0000 ~ 01676755 n 0000 ~ 01683201 n 0000 ~ 01683558 n 0000 ~ 01684133 n 0000 ~ 01685439 n 0000 ~ 01687665 n 0000 ~ 01689411 n 0000 ~ 01691217 n 0000 ~ 01691652 n 0000 ~ 01691951 n 0000 ~ 01692864 n 0000 ~ 01693783 n 0000 ~ 01694709 n 0000 | relatively long-bodied reptile with usually two pairs of legs and a tapering tail -01674850 05 n 02 Gekkonidae 0 family_Gekkonidae 0 004 @ 01656813 n 0000 #m 01673668 n 0000 %m 01675225 n 0000 %m 01675599 n 0000 | geckos -01674990 05 n 01 gecko 0 003 @ 01674464 n 0000 ~ 01675352 n 0000 ~ 01675722 n 0000 | any of various small chiefly tropical and usually nocturnal insectivorous terrestrial lizards typically with immovable eyelids; completely harmless -01675225 05 n 02 Ptychozoon 0 genus_Ptychozoon 0 003 @ 01657723 n 0000 #m 01674850 n 0000 %m 01675352 n 0000 | flying geckos -01675352 05 n 03 flying_gecko 0 fringed_gecko 0 Ptychozoon_homalocephalum 0 002 @ 01674990 n 0000 #m 01675225 n 0000 | a gecko that has membranous expansions along the sides of its body and limbs and tail that enable it to glide short distances -01675599 05 n 02 Coleonyx 0 genus_Coleonyx 0 003 @ 01657723 n 0000 #m 01674850 n 0000 %m 01675722 n 0000 | banded geckos -01675722 05 n 01 banded_gecko 0 002 @ 01674990 n 0000 #m 01675599 n 0000 | any of several geckos with dark bands across the body and differing from typical geckos in having movable eyelids; of United States southwest and Florida Gulf Coast -01675964 05 n 02 Pygopodidae 0 family_Pygopodidae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01676113 n 0000 | Australian and Tasmanian lizards -01676113 05 n 02 Pygopus 0 genus_Pygopus 0 002 @ 01657723 n 0000 #m 01675964 n 0000 | type genus of the Pygopodidae; snake-shaped pleurodont lizard with no forelimbs and only rudimentary hind limbs -01676313 05 n 04 Iguanidae 0 family_Iguanidae 0 Iguania 0 family_Iguania 0 018 @ 01656813 n 0000 #m 01673668 n 0000 %m 01676755 n 0000 %m 01677242 n 0000 %m 01677613 n 0000 %m 01677913 n 0000 %m 01678237 n 0000 %m 01678522 n 0000 %m 01678887 n 0000 %m 01679178 n 0000 %m 01679494 n 0000 %m 01679837 n 0000 %m 01680137 n 0000 %m 01681200 n 0000 %m 01681513 n 0000 %m 01681812 n 0000 %m 01682293 n 0000 %m 01682588 n 0000 | New World lizards -01676755 05 n 02 iguanid 0 iguanid_lizard 0 017 @ 01674464 n 0000 #m 01676313 n 0000 ~ 01677366 n 0000 ~ 01677747 n 0000 ~ 01678043 n 0000 ~ 01678343 n 0000 ~ 01678657 n 0000 ~ 01679005 n 0000 ~ 01679307 n 0000 ~ 01679626 n 0000 ~ 01679962 n 0000 ~ 01680264 n 0000 ~ 01681328 n 0000 ~ 01681653 n 0000 ~ 01681940 n 0000 ~ 01682435 n 0000 ~ 01682714 n 0000 | lizards of the New World and Madagascar and some Pacific islands; typically having a long tail and bright throat patch in males -01677242 05 n 01 genus_Iguana 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01677366 n 0000 | type genus of the Iguanidae -01677366 05 n 03 common_iguana 0 iguana 0 Iguana_iguana 0 002 @ 01676755 n 0000 #m 01677242 n 0000 | large herbivorous tropical American arboreal lizards with a spiny crest along the back; used as human food in Central America and South America -01677613 05 n 02 Amblyrhynchus 0 genus_Amblyrhynchus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01677747 n 0000 | marine iguanas -01677747 05 n 02 marine_iguana 0 Amblyrhynchus_cristatus 0 002 @ 01676755 n 0000 #m 01677613 n 0000 | shore-dwelling seaweed-eating lizard of the Galapagos Islands -01677913 05 n 02 Dipsosaurus 0 genus_Dipsosaurus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01678043 n 0000 | desert iguanas -01678043 05 n 02 desert_iguana 0 Dipsosaurus_dorsalis 0 002 @ 01676755 n 0000 #m 01677913 n 0000 | small long-tailed lizard of arid areas of southwestern United States and northwestern Mexico -01678237 05 n 02 Sauromalus 0 genus_Sauromalus 0 002 @ 01657723 n 0000 #m 01676313 n 0000 | chuckwallas -01678343 05 n 02 chuckwalla 0 Sauromalus_obesus 0 001 @ 01676755 n 0000 | a herbivorous lizard that lives among rocks in the arid parts of southwestern United States and Mexico -01678522 05 n 02 Callisaurus 0 genus_Callisaurus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01678657 n 0000 | zebra-tailed lizard -01678657 05 n 03 zebra-tailed_lizard 0 gridiron-tailed_lizard 0 Callisaurus_draconoides 0 002 @ 01676755 n 0000 #m 01678522 n 0000 | swift lizard with long black-banded tail and long legs; of deserts of United States and Mexico -01678887 05 n 02 Uma 0 genus_Uma 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01679005 n 0000 | fringe-toed lizard -01679005 05 n 02 fringe-toed_lizard 0 Uma_notata 0 002 @ 01676755 n 0000 #m 01678887 n 0000 | with long pointed scales around toes; of deserts of United States and Mexico -01679178 05 n 02 Holbrookia 0 genus_Holbrookia 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01679307 n 0000 | earless lizards -01679307 05 n 01 earless_lizard 0 002 @ 01676755 n 0000 #m 01679178 n 0000 | any of several slender lizards without external ear openings: of plains of western United States and Mexico -01679494 05 n 02 Crotaphytus 0 genus_Crotaphytus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01679626 n 0000 | collared lizards -01679626 05 n 01 collared_lizard 0 002 @ 01676755 n 0000 #m 01679494 n 0000 | any of several robust long-tailed lizards with collars of two dark bands; of central and western United States and northern Mexico -01679837 05 n 02 Gambelia 0 genus_Gambelia 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01679962 n 0000 | leopard lizards -01679962 05 n 01 leopard_lizard 0 002 @ 01676755 n 0000 #m 01679837 n 0000 | any of several large lizards with many dark spots; of western United States and northern Mexico -01680137 05 n 02 Sceloporus 0 genus_Sceloporus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01680264 n 0000 | spiny lizards -01680264 05 n 01 spiny_lizard 1 004 @ 01676755 n 0000 #m 01680137 n 0000 ~ 01680478 n 0000 ~ 01680983 n 0000 | any of numerous lizards with overlapping ridged pointed scales; of North America and Central America -01680478 05 n 01 fence_lizard 0 003 @ 01680264 n 0000 ~ 01680655 n 0000 ~ 01680813 n 0000 | spiny lizard often seen basking on fences in the United States and northern Mexico -01680655 05 n 04 western_fence_lizard 0 swift 2 blue-belly 0 Sceloporus_occidentalis 0 001 @ 01680478 n 0000 | common western lizard; seen on logs or rocks -01680813 05 n 03 eastern_fence_lizard 0 pine_lizard 0 Sceloporus_undulatus 0 001 @ 01680478 n 0000 | small active lizard of United States and north to British Columbia -01680983 05 n 02 sagebrush_lizard 0 Sceloporus_graciosus 0 001 @ 01680264 n 0000 | a ground dweller that prefers open ground and scattered low bushes; of United States west between Rocky and Sierra Nevada Mountains -01681200 05 n 02 Uta 0 genus_Uta 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01681328 n 0000 | a reptile genus of Iguanidae -01681328 05 n 03 side-blotched_lizard 0 sand_lizard 2 Uta_stansburiana 0 002 @ 01676755 n 0000 #m 01681200 n 0000 | one of the most abundant lizards in the arid western United States -01681513 05 n 02 Urosaurus 0 genus_Urosaurus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01681653 n 0000 | a reptile genus of Iguanidae -01681653 05 n 02 tree_lizard 0 Urosaurus_ornatus 0 002 @ 01676755 n 0000 #m 01681513 n 0000 | a climbing lizard of western United States and northern Mexico -01681812 05 n 02 Phrynosoma 0 genus_Phrynosoma 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01681940 n 0000 | horned lizards -01681940 05 n 03 horned_lizard 0 horned_toad 2 horny_frog 0 003 @ 01676755 n 0000 #m 01681812 n 0000 ~ 01682172 n 0000 | insectivorous lizard with hornlike spines on the head and spiny scales on the body; of western North America -01682172 05 n 02 Texas_horned_lizard 0 Phrynosoma_cornutum 0 001 @ 01681940 n 0000 | of arid and semiarid open country -01682293 05 n 02 Basiliscus 0 genus_Basiliscus 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01682435 n 0000 | a reptile genus of Iguanidae -01682435 05 n 01 basilisk 1 002 @ 01676755 n 0000 #m 01682293 n 0000 | small crested arboreal lizard able to run on its hind legs; of tropical America -01682588 05 n 02 Anolis 0 genus_Anolis 0 003 @ 01657723 n 0000 #m 01676313 n 0000 %m 01682714 n 0000 | New World chameleons -01682714 05 n 03 American_chameleon 0 anole 0 Anolis_carolinensis 0 002 @ 01676755 n 0000 #m 01682588 n 0000 | small arboreal tropical American insectivorous lizards with the ability to change skin color -01682920 05 n 02 Amphisbaenidae 0 family_Amphisbaenidae 0 002 @ 01656813 n 0000 #m 01673668 n 0000 | worm lizards -01683036 05 n 04 Amphisbaena 0 genus_Amphisbaena 0 Amphisbaenia 0 genus_Amphisbaenia 0 002 @ 01657723 n 0000 %m 01683201 n 0000 | type genus of the Amphisbaenidae -01683201 05 n 01 worm_lizard 0 002 @ 01674464 n 0000 #m 01683036 n 0000 | a lizard of the genus Amphisbaena; harmless wormlike limbless lizard of warm or tropical regions having concealed eyes and ears and a short blunt tail -01683428 05 n 02 Xantusiidae 0 family_Xantusiidae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01683558 n 0000 | night lizards -01683558 05 n 01 night_lizard 0 002 @ 01674464 n 0000 #m 01683428 n 0000 | small secretive nocturnal lizard of southwestern North America and Cuba; bear live young -01683724 05 n 02 Scincidae 0 family_Scincidae 0 006 @ 01656813 n 0000 #m 01673668 n 0000 %m 01683900 n 0000 %m 01684012 n 0000 %m 01684133 n 0000 %m 01684435 n 0000 | skinks -01683900 05 n 02 Scincus 0 genus_Scincus 0 002 @ 01657723 n 0000 #m 01683724 n 0000 | type genus of Scincidae -01684012 05 n 02 Scincella 0 genus_Scincella 0 002 @ 01657723 n 0000 #m 01683724 n 0000 | a reptile genus of Scincidae -01684133 05 n 03 skink 0 scincid 0 scincid_lizard 0 004 @ 01674464 n 0000 #m 01683724 n 0000 ~ 01684578 n 0000 ~ 01684741 n 0000 | alert agile lizard with reduced limbs and an elongated body covered with shiny scales; more dependent on moisture than most lizards; found in tropical regions worldwide -01684435 05 n 02 Eumeces 0 genus_Eumeces 0 004 @ 01657723 n 0000 #m 01683724 n 0000 %m 01684578 n 0000 %m 01684741 n 0000 | New World skinks -01684578 05 n 02 western_skink 0 Eumeces_skiltonianus 0 002 @ 01684133 n 0000 #m 01684435 n 0000 | found in western North American grasslands and open woodlands -01684741 05 n 02 mountain_skink 0 Eumeces_callicephalus 0 002 @ 01684133 n 0000 #m 01684435 n 0000 | frequents oak and pine habitats in rocky mountainous areas of United States southwest and Mexico -01684941 05 n 02 Cordylidae 0 family_Cordylidae 0 003 @ 01657723 n 0000 #m 01673668 n 0000 %m 01685107 n 0000 | small family of spiny ovoviviparous African lizards -01685107 05 n 02 Cordylus 0 genus_Cordylus 0 002 @ 01657723 n 0000 #m 01684941 n 0000 | type genus of the Cordylidae; spiny lizards somewhat resembling tiny crocodiles -01685277 05 n 02 Teiidae 0 family_Teiidae 0 005 @ 01656813 n 0000 #m 01673668 n 0000 %m 01685439 n 0000 %m 01685679 n 0000 %m 01687009 n 0000 | whiptails; etc. -01685439 05 n 02 teiid_lizard 0 teiid 0 005 @ 01674464 n 0000 #m 01685277 n 0000 ~ 01685808 n 0000 ~ 01687128 n 0000 ~ 01687290 n 0000 | tropical New World lizard with a long tail and large rectangular scales on the belly and a long tail -01685679 05 n 02 Cnemidophorus 0 genus_Cnemidophorus 0 003 @ 01657723 n 0000 #m 01685277 n 0000 %m 01685808 n 0000 | whiptails -01685808 05 n 02 whiptail 0 whiptail_lizard 0 007 @ 01685439 n 0000 #m 01685679 n 0000 ~ 01686044 n 0000 ~ 01686220 n 0000 ~ 01686403 n 0000 ~ 01686609 n 0000 ~ 01686808 n 0000 | any of numerous very agile and alert New World lizards -01686044 05 n 04 racerunner 0 race_runner 0 six-lined_racerunner 0 Cnemidophorus_sexlineatus 0 001 @ 01685808 n 0000 | very swift lizard of eastern and central United States -01686220 05 n 02 plateau_striped_whiptail 0 Cnemidophorus_velox 0 001 @ 01685808 n 0000 | having distinct longitudinal stripes: of Colorado Plateau from Arizona to western Colorado -01686403 05 n 02 Chihuahuan_spotted_whiptail 0 Cnemidophorus_exsanguis 0 001 @ 01685808 n 0000 | having longitudinal stripes overlaid with light spots; upland lizard of United States southwest and Mexico -01686609 05 n 02 western_whiptail 0 Cnemidophorus_tigris 0 001 @ 01685808 n 0000 | active lizard having a network of dusky dark markings; of semiarid areas from Oregon and Idaho to Baja California -01686808 05 n 02 checkered_whiptail 0 Cnemidophorus_tesselatus 0 001 @ 01685808 n 0000 | markings are darker and more marked than in western whiptail; from southeastern Colorado to eastern Chihuahua -01687009 05 n 02 Tupinambis 0 genus_Tupinambis 0 003 @ 01657723 n 0000 #m 01685277 n 0000 %m 01687128 n 0000 | tejus -01687128 05 n 01 teju 0 002 @ 01685439 n 0000 #m 01687009 n 0000 | large (to 3 feet) blackish yellow-banded South American lizard; raid henhouses; used as food -01687290 05 n 01 caiman_lizard 0 001 @ 01685439 n 0000 | crocodile-like lizard of South America having powerful jaws for crushing snails and mussels -01687441 05 n 02 Agamidae 0 family_Agamidae 0 007 @ 01656813 n 0000 #m 01673668 n 0000 %m 01687665 n 0000 %m 01687856 n 0000 %m 01688106 n 0000 %m 01688428 n 0000 %m 01688812 n 0000 | an Old World reptile family of Sauria -01687665 05 n 02 agamid 0 agamid_lizard 0 006 @ 01674464 n 0000 #m 01687441 n 0000 ~ 01687978 n 0000 ~ 01688243 n 0000 ~ 01688589 n 0000 ~ 01688961 n 0000 | a lizard of the family Agamidae -01687856 05 n 01 genus_Agama 0 003 @ 01657723 n 0000 #m 01687441 n 0000 %m 01687978 n 0000 | type genus of the Agamidae -01687978 05 n 01 agama 0 002 @ 01687665 n 0000 #m 01687856 n 0000 | small terrestrial lizard of warm regions of the Old World -01688106 05 n 02 Chlamydosaurus 0 genus_Chlamydosaurus 0 003 @ 01657723 n 0000 #m 01687441 n 0000 %m 01688243 n 0000 | frilled lizards -01688243 05 n 02 frilled_lizard 0 Chlamydosaurus_kingi 0 002 @ 01687665 n 0000 #m 01688106 n 0000 | large arboreal insectivorous Australian lizard with a ruff of skin around the neck -01688428 05 n 02 Draco 0 genus_Draco 0 003 @ 01657723 n 0000 #m 01687441 n 0000 %m 01688589 n 0000 | a reptile genus known as flying dragons or flying lizards -01688589 05 n 03 dragon 2 flying_dragon 0 flying_lizard 0 002 @ 01687665 n 0000 #m 01688428 n 0000 | any of several small tropical Asian lizards capable of gliding by spreading winglike membranes on each side of the body -01688812 05 n 01 genus_Moloch 0 004 @ 01657723 n 0000 #m 01687441 n 0000 %m 01688961 n 0000 %m 01689081 n 0000 | genus of Australian desert lizard -01688961 05 n 01 moloch 0 003 @ 01687665 n 0000 #m 01688812 n 0000 ~ 01689081 n 0000 | any lizard of the genus Moloch -01689081 05 n 03 mountain_devil 0 spiny_lizard 2 Moloch_horridus 0 002 @ 01688961 n 0000 #m 01688812 n 0000 | desert lizard that feeds on ants -01689226 05 n 02 Anguidae 0 family_Anguidae 0 006 @ 01656813 n 0000 #m 01673668 n 0000 %m 01689411 n 0000 %m 01689678 n 0000 %m 01690005 n 0000 %m 01690339 n 0000 | alligator lizards -01689411 05 n 01 anguid_lizard 0 005 @ 01674464 n 0000 #m 01689226 n 0000 ~ 01689811 n 0000 ~ 01690149 n 0000 ~ 01690466 n 0000 | any of a small family of lizards widely distributed in warm areas; all are harmless and useful as destroyers of e.g. slugs and insects -01689678 05 n 02 Gerrhonotus 0 genus_Gerrhonotus 0 003 @ 01657723 n 0000 #m 01689226 n 0000 %m 01689811 n 0000 | alligator lizards -01689811 05 n 01 alligator_lizard 0 002 @ 01689411 n 0000 #m 01689678 n 0000 | slim short-limbed lizard having a distinctive fold on each side that permits expansion; of western North America -01690005 05 n 02 Anguis 0 genus_Anguis 0 003 @ 01657723 n 0000 #m 01689226 n 0000 %m 01690149 n 0000 | type genus of the Anguidae: blindworms -01690149 05 n 03 blindworm 1 slowworm 0 Anguis_fragilis 0 002 @ 01689411 n 0000 #m 01690005 n 0000 | small burrowing legless European lizard with tiny eyes; popularly believed to be blind -01690339 05 n 02 Ophisaurus 0 genus_Ophisaurus 0 003 @ 01657723 n 0000 #m 01689226 n 0000 %m 01690466 n 0000 | glass lizards -01690466 05 n 03 glass_lizard 0 glass_snake 0 joint_snake 0 002 @ 01689411 n 0000 #m 01690339 n 0000 | snakelike lizard of Europe and Asia and North America with vestigial hind limbs and the ability to regenerate its long fragile tail -01690703 05 n 02 Xenosauridae 0 family_Xenosauridae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01690857 n 0000 | monotypic family of Mexican lizards -01690857 05 n 02 Xenosaurus 0 genus_Xenosaurus 0 002 @ 01657723 n 0000 #m 01690703 n 0000 | type and sole genus of Xenosauridae: slender-bodied Mexican lizards having the upper surface covered with tiny granules and tubercles -01691085 05 n 02 Anniellidae 0 family_Anniellidae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01691217 n 0000 | legless lizards -01691217 05 n 01 legless_lizard 0 002 @ 01674464 n 0000 #m 01691085 n 0000 | degenerate wormlike burrowing lizard of California closely related to alligator lizards -01691384 05 n 02 Lanthanotidae 0 family_Lanthanotidae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01691525 n 0000 | stout-bodied lizards -01691525 05 n 02 Lanthanotus 0 genus_Lanthanotus 0 003 @ 01657723 n 0000 #m 01691384 n 0000 %m 01691652 n 0000 | one species -01691652 05 n 01 Lanthanotus_borneensis 0 002 @ 01674464 n 0000 #m 01691525 n 0000 | a stout-bodied pleurodont lizard of Borneo -01691782 05 n 02 Helodermatidae 0 family_Helodermatidae 0 004 @ 01656813 n 0000 #m 01673668 n 0000 %m 01691951 n 0000 %m 01692143 n 0000 | only known venomous lizards -01691951 05 n 01 venomous_lizard 0 004 @ 01674464 n 0000 #m 01691782 n 0000 ~ 01692333 n 0000 ~ 01692523 n 0000 | any of two or three large heavy-bodied lizards; only known venomous lizards -01692143 05 n 02 Heloderma 0 genus_Heloderma 0 004 @ 01657723 n 0000 #m 01691782 n 0000 %m 01692333 n 0000 %m 01692523 n 0000 | type genus of the Helodermatidae; American venomous lizards -01692333 05 n 02 Gila_monster 0 Heloderma_suspectum 0 002 @ 01691951 n 0000 #m 01692143 n 0000 | large orange and black lizard of southwestern United States; not dangerous unless molested -01692523 05 n 03 beaded_lizard 0 Mexican_beaded_lizard 0 Heloderma_horridum 0 002 @ 01691951 n 0000 #m 01692143 n 0000 | lizard with black and yellowish beadlike scales; of western Mexico -01692713 05 n 02 Lacertidae 0 family_Lacertidae 0 004 @ 01656813 n 0000 #m 01673668 n 0000 %m 01692864 n 0000 %m 01693020 n 0000 | Old World lizards -01692864 05 n 02 lacertid_lizard 0 lacertid 0 004 @ 01674464 n 0000 #m 01692713 n 0000 ~ 01693175 n 0000 ~ 01693334 n 0000 | Old World terrestrial lizard -01693020 05 n 02 Lacerta 0 genus_Lacerta 0 004 @ 01657723 n 0000 #m 01692713 n 0000 %m 01693175 n 0000 %m 01693334 n 0000 | type genus of the Lacertidae -01693175 05 n 02 sand_lizard 1 Lacerta_agilis 0 002 @ 01692864 n 0000 #m 01693020 n 0000 | a common and widely distributed lizard of Europe and central Asia -01693334 05 n 02 green_lizard 0 Lacerta_viridis 0 002 @ 01692864 n 0000 #m 01693020 n 0000 | a common Eurasian lizard about a foot long -01693472 05 n 06 Chamaeleontidae 0 family_Chamaeleontidae 0 Chamaeleonidae 0 family_Chamaeleonidae 0 Rhiptoglossa 0 family_Rhiptoglossa 0 004 @ 01656813 n 0000 #m 01673668 n 0000 %m 01693783 n 0000 %m 01693995 n 0000 | Old World chameleons; in some classifications they are considered a superfamily of Sauria -01693783 05 n 02 chameleon 0 chamaeleon 0 004 @ 01674464 n 0000 #m 01693472 n 0000 ~ 01694178 n 0000 ~ 01694311 n 0000 | lizard of Africa and Madagascar able to change skin color and having a projectile tongue -01693995 05 n 03 Chamaeleo 0 genus_Chamaeleo 0 genus_Chamaeleon 0 004 @ 01657723 n 0000 #m 01693472 n 0000 %m 01694178 n 0000 %m 01694311 n 0000 | type genus of the Chamaeleontidae -01694178 05 n 02 African_chameleon 0 Chamaeleo_chamaeleon 0 002 @ 01693783 n 0000 #m 01693995 n 0000 | a chameleon found in Africa -01694311 05 n 02 horned_chameleon 0 Chamaeleo_oweni 0 002 @ 01693783 n 0000 #m 01693995 n 0000 | a kind of chameleon -01694430 05 n 02 Varanidae 0 family_Varanidae 0 003 @ 01656813 n 0000 #m 01673668 n 0000 %m 01694558 n 0000 | monitor lizards -01694558 05 n 02 Varanus 0 genus_Varanus 0 003 @ 01657723 n 0000 #m 01694430 n 0000 %m 01694709 n 0000 | type and sole extant genus of the Varanidae -01694709 05 n 03 monitor 0 monitor_lizard 0 varan 0 004 @ 01674464 n 0000 #m 01694558 n 0000 ~ 01694955 n 0000 ~ 01695060 n 0000 | any of various large tropical carnivorous lizards of Africa and Asia and Australia; fabled to warn of crocodiles -01694955 05 n 02 African_monitor 0 Varanus_niloticus 0 001 @ 01694709 n 0000 | destroys crocodile eggs -01695060 05 n 05 Komodo_dragon 0 Komodo_lizard 0 dragon_lizard 0 giant_lizard 0 Varanus_komodoensis 0 001 @ 01694709 n 0000 | the largest lizard in the world (10 feet); found on Indonesian islands -01695259 05 n 02 Archosauria 0 subclass_Archosauria 0 012 @ 08103777 n 0000 #m 01660719 n 0000 %m 01695681 n 0000 %m 01696026 n 0000 %m 01696151 n 0000 %m 01696282 n 0000 %m 01700076 n 0000 %m 01707895 n 0000 %m 01722828 n 0000 %m 01723678 n 0000 %m 01724055 n 0000 %m 01725240 n 0000 | a large subclass of diapsid reptiles including: crocodiles; alligators; dinosaurs; pterosaurs; plesiosaurs; ichthyosaurs; thecodonts -01695681 05 n 03 archosaur 0 archosaurian 0 archosaurian_reptile 0 010 @ 01661818 n 0000 #m 01695259 n 0000 + 02640354 a 0201 + 02640354 a 0101 ~ 01699831 n 0000 ~ 01722998 n 0000 ~ 01723883 n 0000 ~ 01724231 n 0000 ~ 01725713 n 0000 ~ 01726203 n 0000 | extinct reptiles including: dinosaurs; plesiosaurs; pterosaurs; ichthyosaurs; thecodonts -01696026 05 n 02 Saurosuchus 0 genus_Saurosuchus 0 002 @ 01657723 n 0000 #m 01695259 n 0000 | early archosaurian carnivore -01696151 05 n 02 Proterochampsa 0 genus_Proterochampsa 0 002 @ 01657723 n 0000 #m 01695259 n 0000 | early archosaurian carnivore -01696282 05 n 04 Crocodylia 0 order_Crocodylia 0 Crocodilia 0 order_Crocodilia 0 006 @ 01342529 n 0000 #m 01695259 n 0000 %m 01696633 n 0000 %m 01696849 n 0000 %m 01698144 n 0000 %m 01699415 n 0000 | crocodiles; alligators; caimans; gavials -01696525 05 n 02 Loricata 0 order_Loricata 0 001 @ 01342529 n 0000 | former name for the order Crocodylia -01696633 05 n 02 crocodilian_reptile 0 crocodilian 0 007 @ 01661818 n 0000 #m 01696282 n 0000 ~ 01697178 n 0000 ~ 01697978 n 0000 ~ 01698434 n 0000 ~ 01699040 n 0000 ~ 01699675 n 0000 | extant archosaurian reptile -01696849 05 n 02 Crocodylidae 0 family_Crocodylidae 0 004 @ 01656813 n 0000 #m 01696282 n 0000 %m 01697002 n 0000 %m 01697837 n 0000 | true crocodiles -01697002 05 n 04 Crocodylus 0 genus_Crocodylus 0 Crocodilus 0 genus_Crocodilus 0 003 @ 01657723 n 0000 #m 01696849 n 0000 %m 01697178 n 0000 | type genus of the Crocodylidae -01697178 05 n 01 crocodile 0 005 @ 01696633 n 0000 #m 01697002 n 0000 ~ 01697457 n 0000 ~ 01697611 n 0000 ~ 01697749 n 0000 | large voracious aquatic reptile having a long snout with massive jaws and sharp teeth and a body covered with bony plates; of sluggish tropical waters -01697457 05 n 03 African_crocodile 0 Nile_crocodile 0 Crocodylus_niloticus 0 001 @ 01697178 n 0000 | a dangerous crocodile widely distributed in Africa -01697611 05 n 02 Asian_crocodile 0 Crocodylus_porosus 0 001 @ 01697178 n 0000 | estuarine crocodile of eastern Asia and Pacific islands -01697749 05 n 01 Morlett's_crocodile 0 001 @ 01697178 n 0000 | a variety of crocodile -01697837 05 n 02 Tomistoma 0 genus_Tomistoma 0 003 @ 01657723 n 0000 #m 01696849 n 0000 %m 01697978 n 0000 | a genus of Malayan crocodiles -01697978 05 n 02 false_gavial 0 Tomistoma_schlegeli 0 002 @ 01696633 n 0000 #m 01697837 n 0000 | crocodile of southeast Asia similar to but smaller than the gavial -01698144 05 n 02 Alligatoridae 0 family_Alligatoridae 0 004 @ 01656813 n 0000 #m 01696282 n 0000 %m 01698303 n 0000 %m 01698936 n 0000 | alligators; caimans -01698303 05 n 01 genus_Alligator 0 003 @ 01657723 n 0000 #m 01698144 n 0000 %m 01698434 n 0000 | type genus of the Alligatoridae -01698434 05 n 02 alligator 0 gator 0 004 @ 01696633 n 0000 #m 01698303 n 0000 ~ 01698640 n 0000 ~ 01698782 n 0000 | either of two amphibious reptiles related to crocodiles but with shorter broader snouts -01698640 05 n 02 American_alligator 0 Alligator_mississipiensis 0 001 @ 01698434 n 0000 | large alligator of the southeastern United States -01698782 05 n 02 Chinese_alligator 0 Alligator_sinensis 0 001 @ 01698434 n 0000 | small alligator of the Yangtze valley of China having unwebbed digits -01698936 05 n 01 genus_Caiman 0 003 @ 01657723 n 0000 #m 01698144 n 0000 %m 01699040 n 0000 | caimans -01699040 05 n 02 caiman 0 cayman 0 003 @ 01696633 n 0000 #m 01698936 n 0000 ~ 01699254 n 0000 | a semiaquatic reptile of Central and South America that resembles an alligator but has a more heavily armored belly -01699254 05 n 02 spectacled_caiman 0 Caiman_sclerops 0 001 @ 01699040 n 0000 | caiman with bony ridges about the eyes; found from southern Mexico to Argentina -01699415 05 n 02 Gavialidae 0 family_Gavialidae 0 003 @ 01656813 n 0000 #m 01696282 n 0000 %m 01699537 n 0000 | gavials -01699537 05 n 02 Gavialis 0 genus_Gavialis 0 003 @ 01657723 n 0000 #m 01699415 n 0000 %m 01699675 n 0000 | type genus of the Gavialidae -01699675 05 n 02 gavial 0 Gavialis_gangeticus 0 002 @ 01696633 n 0000 #m 01699537 n 0000 | large fish-eating Indian crocodilian with a long slender snout -01699831 05 n 01 dinosaur 0 008 @ 01695681 n 0000 ~ 01700470 n 0000 ~ 01707698 n 0000 ~ 01708106 n 0000 ~ 01710177 n 0000 ~ 01710747 n 0000 ~ 01711160 n 0000 ~ 01711496 n 0000 | any of numerous extinct terrestrial reptiles of the Mesozoic era -01700076 05 n 02 Ornithischia 0 order_Ornithischia 0 008 @ 01342529 n 0000 #m 01695259 n 0000 %m 01700470 n 0000 %m 01700754 n 0000 %m 01701052 n 0000 %m 01701334 n 0000 %m 01702623 n 0000 %m 01705247 n 0000 | extinct terrestrial reptiles having bird-like pelvises: armored dinosaurs (thyreophorans); boneheaded and horned dinosaurs (marginocephalians); duck-billed dinosaurs (euronithopods) -01700470 05 n 02 ornithischian 0 ornithischian_dinosaur 0 009 @ 01699831 n 0000 #m 01700076 n 0000 ~ 01700924 n 0000 ~ 01701205 n 0000 ~ 01701551 n 0000 ~ 01703011 n 0000 ~ 01703569 n 0000 ~ 01705591 n 0000 ~ 01705934 n 0000 | herbivorous dinosaur with a pelvis like that of a bird -01700754 05 n 01 genus_Pisanosaurus 0 003 @ 01657723 n 0000 #m 01700076 n 0000 %m 01700924 n 0000 | primitive ornithischian dinosaur found in Argentina; early Triassic -01700924 05 n 02 pisanosaur 0 pisanosaurus 0 002 @ 01700470 n 0000 #m 01700754 n 0000 | primitive dinosaur found in Argentina -01701052 05 n 01 genus_Staurikosaurus 0 003 @ 01657723 n 0000 #m 01700076 n 0000 %m 01701205 n 0000 | primitive ornithischian dinosaur found in Brazil -01701205 05 n 02 staurikosaur 0 staurikosaurus 0 002 @ 01700470 n 0000 #m 01701052 n 0000 | primitive dinosaur found in Brazil -01701334 05 n 03 Thyreophora 0 suborder_Thyreophora 0 thyreophoran 0 005 @ 01342529 n 0000 #m 01700076 n 0000 %m 01701551 n 0000 %m 01701697 n 0000 %m 01702087 n 0000 | armored dinosaurs: stegosaurs and ankylosaurs -01701551 05 n 01 armored_dinosaur 0 004 @ 01700470 n 0000 #m 01701334 n 0000 ~ 01701859 n 0000 ~ 01702256 n 0000 | dinosaurs having bony armour -01701697 05 n 01 genus_Stegosaurus 0 003 @ 01657723 n 0000 #m 01701334 n 0000 %m 01701859 n 0000 | quadrupedal armored herbivore of the Jurassic and Cretaceous -01701859 05 n 03 stegosaur 0 stegosaurus 0 Stegosaur_stenops 0 002 @ 01701551 n 0000 #m 01701697 n 0000 | herbivorous ornithischian dinosaur with a row of bony plates along its back and a spiked tail probably used as a weapon -01702087 05 n 01 genus_Ankylosaurus 0 004 @ 01657723 n 0000 #m 01701334 n 0000 %m 01702256 n 0000 %m 01702479 n 0000 | armored herbivorous dinosaurs of the Cretaceous -01702256 05 n 02 ankylosaur 0 ankylosaurus 0 003 @ 01701551 n 0000 #m 01702087 n 0000 ~ 01702479 n 0000 | having the back covered with thick bony plates; thought to have walked with a sprawling gait resembling a lizard's -01702479 05 n 01 Edmontonia 0 002 @ 01702256 n 0000 #m 01702087 n 0000 | heavily armored and highly spiked dinosaur with semi-upright posture -01702623 05 n 03 Marginocephalia 0 suborder_Marginocephalia 0 marginocephalian 0 004 @ 01342529 n 0000 #m 01700076 n 0000 %m 01702862 n 0000 %m 01703341 n 0000 | includes boneheaded (pachycephalosaurs) and horned (ceratopsian) dinosaurs -01702862 05 n 01 suborder_Pachycephalosaurus 0 003 @ 01342529 n 0000 #m 01702623 n 0000 %m 01703011 n 0000 | boneheaded dinosaurs; late Cretaceous -01703011 05 n 01 bone-headed_dinosaur 0 003 @ 01700470 n 0000 #m 01702862 n 0000 ~ 01703161 n 0000 | bipedal herbivorous dinosaurs with bony crowns -01703161 05 n 02 pachycephalosaur 0 pachycephalosaurus 0 001 @ 01703011 n 0000 | bipedal herbivore having 10 inches of bone atop its head; largest boneheaded dinosaur ever found -01703341 05 n 02 Ceratopsia 0 suborder_Ceratopsia 0 008 @ 01342529 n 0000 #m 01702623 n 0000 %m 01703569 n 0000 %m 01703866 n 0000 %m 01703996 n 0000 %m 01704184 n 0000 %m 01704497 n 0000 %m 01704847 n 0000 | horned dinosaurs -01703569 05 n 02 ceratopsian 0 horned_dinosaur 0 006 @ 01700470 n 0000 #m 01703341 n 0000 ~ 01704103 n 0000 ~ 01704323 n 0000 ~ 01704626 n 0000 ~ 01705010 n 0000 | any of several four-footed herbivorous dinosaurs with enormous beaked skulls; of the late Cretaceous in North America and Mongolia -01703866 05 n 02 Ceratopsidae 0 family_Ceratopsidae 0 002 @ 01656813 n 0000 #m 01703341 n 0000 | American ceratopsian dinosaurs -01703996 05 n 01 genus_Protoceratops 0 002 @ 01657723 n 0000 #m 01703341 n 0000 | small horned dinosaurs -01704103 05 n 01 protoceratops 0 001 @ 01703569 n 0000 | small horned dinosaur -01704184 05 n 01 genus_Triceratops 0 003 @ 01657723 n 0000 #m 01703341 n 0000 %m 01704323 n 0000 | genus of herbivorous horned dinosaurs -01704323 05 n 01 triceratops 0 002 @ 01703569 n 0000 #m 01704184 n 0000 | huge ceratopsian dinosaur having three horns and the neck heavily armored with a very solid frill -01704497 05 n 01 genus_Styracosaurus 0 003 @ 01657723 n 0000 #m 01703341 n 0000 %m 01704626 n 0000 | genus of horned dinosaurs -01704626 05 n 02 styracosaur 0 styracosaurus 0 002 @ 01703569 n 0000 #m 01704497 n 0000 | an unusual ceratopsian dinosaur having many large spikes around the edge of its bony frill and a long nose horn; late Cretaceous -01704847 05 n 01 genus_Psittacosaurus 0 003 @ 01657723 n 0000 #m 01703341 n 0000 %m 01705010 n 0000 | most primitive genus of horned dinosaurs; early Cretaceous -01705010 05 n 02 psittacosaur 0 psittacosaurus 0 002 @ 01703569 n 0000 #m 01704847 n 0000 | primitive dinosaur actually lacking horns and having only the beginning of a frill; long hind limbs and short forelimbs; may have been bipedal -01705247 05 n 05 Euronithopoda 0 suborder_Euronithopoda 0 euronithopod 0 Ornithopoda 0 suborder_Ornithopoda 0 006 @ 01342529 n 0000 #m 01700076 n 0000 %m 01705591 n 0000 %m 01705717 n 0000 %m 01707149 n 0000 %m 01707433 n 0000 | widespread group including duck-billed dinosaurs and their early relatives (hadrosaurs, trachodon and iguanodon) -01705591 05 n 02 ornithopod 0 ornithopod_dinosaur 0 002 @ 01700470 n 0000 #m 01705247 n 0000 | bipedal herbivorous dinosaur -01705717 05 n 02 Hadrosauridae 0 family_Hadrosauridae 0 006 @ 01656813 n 0000 #m 01705247 n 0000 %m 01705934 n 0000 %m 01706247 n 0000 %m 01706533 n 0000 %m 01706865 n 0000 | duck-billed dinosaurs; upper Cretaceous -01705934 05 n 03 hadrosaur 0 hadrosaurus 0 duck-billed_dinosaur 0 006 @ 01700470 n 0000 #m 01705717 n 0000 ~ 01706401 n 0000 ~ 01706686 n 0000 ~ 01707000 n 0000 ~ 01707294 n 0000 | any of numerous large bipedal ornithischian dinosaurs having a horny duck-like bill and webbed feet; may have been partly aquatic -01706247 05 n 01 genus_Anatotitan 0 003 @ 01657723 n 0000 #m 01705717 n 0000 %m 01706401 n 0000 | genus of large duck-billed dinosaurs; late Cretaceous -01706401 05 n 01 anatotitan 0 002 @ 01705934 n 0000 #m 01706247 n 0000 | one of the largest and most famous duck-billed dinosaurs -01706533 05 n 01 genus_Corythosaurus 0 003 @ 01657723 n 0000 #m 01705717 n 0000 %m 01706686 n 0000 | genus of duck-billed dinosaurs of late Cretaceous -01706686 05 n 02 corythosaur 0 corythosaurus 0 002 @ 01705934 n 0000 #m 01706533 n 0000 | duck-billed dinosaur with nasal passages that expand into a crest like a hollow helmet -01706865 05 n 01 genus_Edmontosaurus 0 003 @ 01657723 n 0000 #m 01705717 n 0000 %m 01707000 n 0000 | duck-billed dinosaurs of Canada -01707000 05 n 01 edmontosaurus 0 002 @ 01705934 n 0000 #m 01706865 n 0000 | duck-billed dinosaur from Canada found as a fossilized mummy with skin -01707149 05 n 01 genus_Trachodon 0 003 @ 01657723 n 0000 #m 01705247 n 0000 %m 01707294 n 0000 | a reptile genus of the suborder Euronithopoda -01707294 05 n 02 trachodon 0 trachodont 0 002 @ 01705934 n 0000 #m 01707149 n 0000 | large duck-billed dinosaur of the Cretaceous period -01707433 05 n 02 Iguanodontidae 0 family_Iguanodontidae 0 003 @ 01656813 n 0000 #m 01705247 n 0000 %m 01707566 n 0000 | iguanodons -01707566 05 n 01 genus_Iguanodon 0 003 @ 01657723 n 0000 #m 01707433 n 0000 %m 01707698 n 0000 | type genus of the Iguanodontidae -01707698 05 n 01 iguanodon 0 002 @ 01699831 n 0000 #m 01707566 n 0000 | massive herbivorous bipedal dinosaur with a long heavy tail; common in Europe and northern Africa; early Cretaceous period -01707895 05 n 02 Saurischia 0 order_Saurischia 0 004 @ 01342529 n 0000 #m 01695259 n 0000 %m 01708106 n 0000 %m 01708332 n 0000 | extinct terrestrial reptiles: theropods (carnivorous); sauropods (herbivorous) -01708106 05 n 02 saurischian 0 saurischian_dinosaur 0 004 @ 01699831 n 0000 #m 01707895 n 0000 ~ 01708998 n 0000 ~ 01712008 n 0000 | herbivorous or carnivorous dinosaur having a three-pronged pelvis like that of a crocodile -01708332 05 n 02 Sauropodomorpha 0 suborder_Sauropodomorpha 0 005 @ 01342529 n 0000 #m 01707895 n 0000 %m 01708648 n 0000 %m 01708778 n 0000 %m 01711662 n 0000 | gigantic herbivorous dinosaurs having huge bodies with long necks and small heads: Prosauropoda and Sauropoda (apatosaurus, diplodocus and titanosaurs) -01708648 05 n 02 Prosauropoda 0 suborder_Prosauropoda 0 002 @ 01342529 n 0000 #m 01708332 n 0000 | the earliest known dinosaurs -01708778 05 n 02 Sauropoda 0 suborder_Sauropoda 0 007 @ 01342529 n 0000 #m 01708332 n 0000 %m 01708998 n 0000 %m 01709278 n 0000 %m 01709723 n 0000 %m 01710035 n 0000 %m 01710348 n 0000 | any of the sauropod dinosaurs -01708998 05 n 02 sauropod 0 sauropod_dinosaur 0 004 @ 01708106 n 0000 #m 01708778 n 0000 ~ 01709484 n 0000 ~ 01709876 n 0000 | very large herbivorous dinosaur of the Jurassic and Cretaceous having a small head a long neck and tail and five-toed limbs; largest known land animal -01709278 05 n 02 genus_Apatosaurus 0 genus_Brontosaurus 0 003 @ 01657723 n 0000 #m 01708778 n 0000 %m 01709484 n 0000 | large quadrupedal herbivorous dinosaurs with very long neck and tail; late Jurassic -01709484 05 n 06 apatosaur 0 apatosaurus 0 brontosaur 0 brontosaurus 0 thunder_lizard 0 Apatosaurus_excelsus 0 002 @ 01708998 n 0000 #m 01709278 n 0000 | huge quadrupedal herbivorous dinosaur common in North America in the late Jurassic -01709723 05 n 01 genus_Barosaurus 0 003 @ 01657723 n 0000 #m 01708778 n 0000 %m 01709876 n 0000 | huge quadrupedal herbivorous dinosaur; late Jurassic -01709876 05 n 02 barosaur 0 barosaurus 0 002 @ 01708998 n 0000 #m 01709723 n 0000 | a dinosaur that could grow to be as tall as a building five stories tall -01710035 05 n 01 genus_Diplodocus 0 003 @ 01657723 n 0000 #m 01708778 n 0000 %m 01710177 n 0000 | a reptile genus of the suborder Sauropoda -01710177 05 n 01 diplodocus 0 002 @ 01699831 n 0000 #m 01710035 n 0000 | a huge quadrupedal herbivore with long neck and tail; of late Jurassic in western North America -01710348 05 n 02 Titanosauridae 0 family_Titanosauridae 0 004 @ 01656813 n 0000 #m 01708778 n 0000 %m 01710529 n 0000 %m 01711297 n 0000 | herbivorous dinosaurs of the Cretaceous -01710529 05 n 02 Titanosaurus 0 genus_Titanosaurus 0 004 @ 01657723 n 0000 #m 01710348 n 0000 %m 01710747 n 0000 %m 01710993 n 0000 | genus of herbivorous dinosaurs flourishing during the Cretaceous in South America -01710747 05 n 02 titanosaur 0 titanosaurian 0 003 @ 01699831 n 0000 #m 01710529 n 0000 ~ 01710993 n 0000 | amphibious quadrupedal herbivorous dinosaur with a long thin neck and whiplike tail; of the Cretaceous mostly in the southern hemisphere -01710993 05 n 01 genus_Argentinosaurus 0 003 @ 01710747 n 0000 #m 01710529 n 0000 %m 01711160 n 0000 | enormous dinosaur of the middle Cretaceous found in Argentina -01711160 05 n 01 argentinosaur 0 002 @ 01699831 n 0000 #m 01710993 n 0000 | huge herbivorous dinosaur of Cretaceous found in Argentina -01711297 05 n 02 Seismosaurus 0 genus_Seismosaurus 0 003 @ 01657723 n 0000 #m 01710348 n 0000 %m 01711496 n 0000 | genus of large herbivorous dinosaurs of Cretaceous found in western North America -01711496 05 n 02 ground-shaker 0 seismosaur 0 002 @ 01699831 n 0000 #m 01711297 n 0000 | huge herbivorous dinosaur of the Cretaceous found in western North America -01711662 05 n 02 Theropoda 0 suborder_Theropoda 0 011 @ 01342529 n 0000 #m 01708332 n 0000 %m 01712008 n 0000 %m 01712432 n 0000 %m 01713310 n 0000 %m 01714404 n 0000 %m 01714686 n 0000 %m 01714982 n 0000 %m 01715249 n 0000 %m 01715692 n 0000 %m 01716732 n 0000 | carnivorous saurischian dinosaurs with short forelimbs; Jurassic and Cretaceous -01712008 05 n 03 theropod 0 theropod_dinosaur 0 bird-footed_dinosaur 0 012 @ 01708106 n 0000 #m 01711662 n 0000 ~ 01712752 n 0000 ~ 01713508 n 0000 ~ 01713764 n 0000 ~ 01714231 n 0000 ~ 01714536 n 0000 ~ 01714843 n 0000 ~ 01715134 n 0000 ~ 01715518 n 0000 ~ 01715888 n 0000 ~ 01717016 n 0000 | any of numerous carnivorous dinosaurs of the Triassic to Cretaceous with short forelimbs that walked or ran on strong hind legs -01712432 05 n 01 suborder_Ceratosaura 0 005 @ 01342529 n 0000 #m 01711662 n 0000 %m 01712606 n 0000 %m 01712752 n 0000 %m 01713040 n 0000 | primitive saurischian dinosaurs -01712606 05 n 01 genus_Ceratosaurus 0 003 @ 01657723 n 0000 #m 01712432 n 0000 %m 01713170 n 0000 | primitive saurischian carnivorous dinosaurs -01712752 05 n 02 ceratosaur 0 ceratosaurus 0 003 @ 01712008 n 0000 #m 01712432 n 0000 ~ 01713170 n 0000 | primitive medium-sized theropod; swift-running bipedal carnivorous dinosaur having grasping hands with sharp claws and a short horn between the nostrils; Jurassic in North America -01713040 05 n 01 genus_Coelophysis 0 002 @ 01657723 n 0000 #m 01712432 n 0000 | late Triassic carnivorous saurischian dinosaurs -01713170 05 n 01 coelophysis 0 002 @ 01712752 n 0000 #m 01712606 n 0000 | one of the oldest known dinosaurs; late Triassic; cannibalistic -01713310 05 n 02 Carnosaura 0 suborder_Carnosaura 0 005 @ 01342529 n 0000 #m 01711662 n 0000 %m 01713508 n 0000 %m 01713635 n 0000 %m 01714059 n 0000 | largest carnivorous land animals ever known -01713508 05 n 01 carnosaur 0 002 @ 01712008 n 0000 #m 01713310 n 0000 | large carnivorous bipedal dinosaur having huge claws -01713635 05 n 01 genus_Tyrannosaurus 0 003 @ 01657723 n 0000 #m 01713310 n 0000 %m 01713764 n 0000 | includes a single species -01713764 05 n 03 tyrannosaur 0 tyrannosaurus 0 Tyrannosaurus_rex 0 002 @ 01712008 n 0000 #m 01713635 n 0000 | large carnivorous bipedal dinosaur having enormous teeth with knifelike serrations; may have been a scavenger rather than an active predator; later Cretaceous period in North America -01714059 05 n 02 genus_Allosaurus 0 genus_Antrodemus 0 003 @ 01657723 n 0000 #m 01713310 n 0000 %m 01714231 n 0000 | carnivorous dinosaur of North America; late Jurassic -01714231 05 n 02 allosaur 0 allosaurus 0 002 @ 01712008 n 0000 #m 01714059 n 0000 | late Jurassic carnivorous dinosaur; similar to but somewhat smaller than tyrannosaurus -01714404 05 n 01 genus_Compsognathus 0 003 @ 01657723 n 0000 #m 01711662 n 0000 %m 01714536 n 0000 | a reptile genus of Theropoda -01714536 05 n 01 compsognathus 0 002 @ 01712008 n 0000 #m 01714404 n 0000 | very small bipedal carnivorous dinosaur of the late Jurassic in Bavaria -01714686 05 n 01 genus_Herrerasaurus 0 003 @ 01657723 n 0000 #m 01711662 n 0000 %m 01714843 n 0000 | primitive theropod found in Argentina; early Triassic -01714843 05 n 02 herrerasaur 0 herrerasaurus 0 002 @ 01712008 n 0000 #m 01714686 n 0000 | a kind of theropod dinosaur found in Argentina -01714982 05 n 01 genus_Eoraptor 0 003 @ 01657723 n 0000 #m 01711662 n 0000 %m 01715134 n 0000 | primitive theropod found in Argentina; early Triassic -01715134 05 n 01 eoraptor 0 002 @ 01712008 n 0000 #m 01714982 n 0000 | a theropod dinosaur of the genus Eoraptor -01715249 05 n 02 Megalosauridae 0 family_Megalosauridae 0 003 @ 01656813 n 0000 #m 01711662 n 0000 %m 01715383 n 0000 | megalosaurs -01715383 05 n 01 genus_Megalosaurus 0 003 @ 01657723 n 0000 #m 01715249 n 0000 %m 01715518 n 0000 | type genus of the Megalosauridae -01715518 05 n 02 megalosaur 0 megalosaurus 0 002 @ 01712008 n 0000 #m 01715383 n 0000 | gigantic carnivorous bipedal dinosaur of the Jurassic or early Cretaceous in Europe -01715692 05 n 02 Ornithomimida 0 suborder_Ornithomimida 0 005 @ 01342529 n 0000 #m 01711662 n 0000 %m 01715888 n 0000 %m 01716122 n 0000 %m 01716459 n 0000 | lightly built medium-size theropods -01715888 05 n 01 ornithomimid 0 004 @ 01712008 n 0000 #m 01715692 n 0000 ~ 01716298 n 0000 ~ 01716594 n 0000 | lightly built medium-sized dinosaur having extremely long limbs and necks with small heads and big brains and large eyes -01716122 05 n 01 genus_Struthiomimus 0 003 @ 01657723 n 0000 #m 01715692 n 0000 %m 01716298 n 0000 | small toothless saurischian dinosaurs; later Cretaceous period in Canada -01716298 05 n 01 struthiomimus 0 002 @ 01715888 n 0000 #m 01716122 n 0000 | small light-boned toothless dinosaur resembling an ostrich in size and proportions -01716459 05 n 01 genus_Deinocheirus 0 003 @ 01657723 n 0000 #m 01715692 n 0000 %m 01716594 n 0000 | a reptile genus of Ornithomimida -01716594 05 n 01 deinocheirus 0 002 @ 01715888 n 0000 #m 01716459 n 0000 | lightly built medium-sized theropod with long limbs and neck -01716732 05 n 02 Maniraptora 0 suborder_Maniraptora 0 007 @ 01342529 n 0000 #m 01711662 n 0000 %m 01717016 n 0000 %m 01717229 n 0000 %m 01717335 n 0000 %m 01717666 n 0000 %m 01718632 n 0000 | advanced theropods including oviraptorids and dromaeosaurs and possibly even modern birds -01717016 05 n 01 maniraptor 0 008 @ 01712008 n 0000 #m 01716732 n 0000 ~ 01717229 n 0000 ~ 01717467 n 0000 ~ 01717860 n 0000 ~ 01718096 n 0000 ~ 01718414 n 0000 ~ 01718808 n 0000 | advanced carnivorous theropod -01717229 05 n 01 oviraptorid 0 002 @ 01717016 n 0000 #m 01716732 n 0000 | advanced carnivorous theropod -01717335 05 n 01 genus_Velociraptor 0 003 @ 01657723 n 0000 #m 01716732 n 0000 %m 01717467 n 0000 | advanced carnivorous theropod -01717467 05 n 01 velociraptor 0 002 @ 01717016 n 0000 #m 01717335 n 0000 | small active carnivore that probably fed on protoceratops; possibly related more closely to birds than to other dinosaurs -01717666 05 n 02 Dromaeosauridae 0 family_Dromaeosauridae 0 005 @ 01656813 n 0000 #m 01716732 n 0000 %m 01717860 n 0000 %m 01717957 n 0000 %m 01718276 n 0000 | swift-running bipedal dinosaurs -01717860 05 n 01 dromaeosaur 0 002 @ 01717016 n 0000 #m 01717666 n 0000 | a kind of maniraptor -01717957 05 n 01 genus_Deinonychus 0 003 @ 01657723 n 0000 #m 01717666 n 0000 %m 01718096 n 0000 | advanced bipedal carnivorous dinosaur -01718096 05 n 01 deinonychus 0 002 @ 01717016 n 0000 #m 01717957 n 0000 | swift agile wolf-sized bipedal dinosaur having a large curved claw on each hind foot; of the Cretaceous -01718276 05 n 01 genus_Utahraptor 0 003 @ 01657723 n 0000 #m 01717666 n 0000 %m 01718414 n 0000 | advanced bipedal carnivorous dinosaur -01718414 05 n 02 utahraptor 0 superslasher 0 002 @ 01717016 n 0000 #m 01718276 n 0000 | large (20-ft) and swift carnivorous dinosaur having an upright slashing claw 15 inches long on each hind foot; early Cretaceous -01718632 05 n 01 genus_Mononychus 0 003 @ 01657723 n 0000 #m 01716732 n 0000 %m 01718808 n 0000 | authorities disagree over whether to classify the genus as bird or dinosaur -01718808 05 n 01 Mononychus_olecranus 0 002 @ 01717016 n 0000 #m 01718632 n 0000 | a turkey-sized long-legged fossil 75 million years old found in the Gobi Desert having bird-like fused wrist bones and keeled breastbone and a long tail resembling a dinosaur's; short forelimbs end in a single claw instead of wings; classification as bird or dinosaur is in dispute -01719175 05 n 02 Synapsida 0 subclass_Synapsida 0 005 @ 08103777 n 0000 #m 01660719 n 0000 %m 01719645 n 0000 %m 01721404 n 0000 %m 01721718 n 0000 | extinct reptiles of the Permian to Jurassic considered ancestral to mammals -01719403 05 n 02 synapsid 0 synapsid_reptile 0 006 @ 01661091 n 0000 ~ 01719914 n 0000 ~ 01721567 n 0000 ~ 01721898 n 0000 ~ 01722389 n 0000 ~ 01722670 n 0000 | extinct reptile having a single pair of lateral temporal openings in the skull -01719645 05 n 02 Therapsida 0 order_Therapsida 0 006 @ 01342529 n 0000 #m 01719175 n 0000 %m 01719914 n 0000 %m 01720117 n 0000 %m 01720496 n 0000 %m 01721010 n 0000 | extinct mammal-like reptiles found inhabiting all continents from the mid Permian to late Triassic -01719914 05 n 02 therapsid 0 protomammal 0 005 @ 01719403 n 0000 #m 01719645 n 0000 ~ 01720266 n 0000 ~ 01720767 n 0000 ~ 01721174 n 0000 | probably warm-blooded; considered direct ancestor of mammals -01720117 05 n 02 Chronoperates 0 genus_Chronoperates 0 003 @ 01657723 n 0000 #m 01719645 n 0000 %m 01720266 n 0000 | a reptile genus of Therapsida -01720266 05 n 01 Chronoperates_paradoxus 0 002 @ 01719914 n 0000 #m 01720117 n 0000 | shrew-sized protomammal from the Alberta region of Canada; from about 55 million years ago (much more recent than other mammal-like reptiles) -01720496 05 n 02 Cynodontia 0 division_Cynodontia 0 004 @ 08221348 n 0000 #m 01719645 n 0000 %m 01720767 n 0000 %m 01720867 n 0000 | a division of the order Therapsida from the Triassic period comprising small carnivorous tetrapod reptiles often with mammal-like teeth -01720767 05 n 01 cynodont 0 002 @ 01719914 n 0000 #m 01720496 n 0000 | small carnivorous reptiles -01720867 05 n 02 Exaeretodon 0 genus_Exaeretodon 0 002 @ 01657723 n 0000 #m 01720496 n 0000 | a genus of reptiles of the division Cynodontia -01721010 05 n 02 Dicynodontia 0 division_Dicynodontia 0 004 @ 08221348 n 0000 #m 01719645 n 0000 %m 01721174 n 0000 %m 01721269 n 0000 | a division of Therapsida -01721174 05 n 01 dicynodont 0 002 @ 01719914 n 0000 #m 01721010 n 0000 | a kind of therapsid -01721269 05 n 02 Ischigualastia 0 genus_Ischigualastia 0 002 @ 01657723 n 0000 #m 01721010 n 0000 | early reptile found in Argentina -01721404 05 n 02 Ictodosauria 0 order_Ictodosauria 0 003 @ 01342529 n 0000 #m 01719175 n 0000 %m 01721567 n 0000 | extinct reptiles of the later Triassic period -01721567 05 n 01 ictodosaur 0 002 @ 01719403 n 0000 #m 01721404 n 0000 | intermediate in form between the therapsids and most primitive true mammals -01721718 05 n 02 Pelycosauria 0 order_Pelycosauria 0 005 @ 01342529 n 0000 #m 01719175 n 0000 %m 01721898 n 0000 %m 01722085 n 0000 %m 01722538 n 0000 | edaphosaurus; dimetrodon -01721898 05 n 01 pelycosaur 0 002 @ 01719403 n 0000 #m 01721718 n 0000 | large primitive reptile having a tall spinal sail; of the Permian or late Paleozoic in Europe and North America -01722085 05 n 02 Edaphosauridae 0 family_Edaphosauridae 0 003 @ 01656813 n 0000 #m 01721718 n 0000 %m 01722254 n 0000 | a family of reptiles of the order Pelycosauria -01722254 05 n 01 genus_Edaphosaurus 0 003 @ 01657723 n 0000 #m 01722085 n 0000 %m 01722389 n 0000 | type genus of the Edaphosauridae -01722389 05 n 01 edaphosaurus 0 002 @ 01719403 n 0000 #m 01722254 n 0000 | heavy-bodied reptile with a dorsal sail or crest; of the late Paleozoic -01722538 05 n 01 genus_Dimetrodon 0 003 @ 01657723 n 0000 #m 01721718 n 0000 %m 01722670 n 0000 | a reptile genus of Pelycosauria -01722670 05 n 01 dimetrodon 0 002 @ 01719403 n 0000 #m 01722538 n 0000 | carnivorous dinosaur of the Permian in North America having a crest or dorsal sail -01722828 05 n 02 Pterosauria 0 order_Pterosauria 0 004 @ 01342529 n 0000 #m 01695259 n 0000 %m 01722998 n 0000 %m 01723259 n 0000 | extinct flying reptiles: pterosaurs -01722998 05 n 02 pterosaur 0 flying_reptile 0 003 @ 01695681 n 0000 #m 01722828 n 0000 ~ 01723579 n 0000 | an extinct reptile of the Jurassic and Cretaceous having a bird-like beak and membranous wings supported by the very long fourth digit of each forelimb -01723259 05 n 02 Pterodactylidae 0 family_Pterodactylidae 0 003 @ 01656813 n 0000 #m 01722828 n 0000 %m 01723425 n 0000 | a reptile family in the order Pterosauria -01723425 05 n 02 Pterodactylus 0 genus_Pterodactylus 0 003 @ 01657723 n 0000 #m 01723259 n 0000 %m 01723579 n 0000 | a reptile genus of Pterodactylidae -01723579 05 n 01 pterodactyl 0 002 @ 01722998 n 0000 #m 01723425 n 0000 | extinct flying reptile -01723678 05 n 02 Thecodontia 0 order_Thecodontia 0 003 @ 01342529 n 0000 #m 01695259 n 0000 %m 01723883 n 0000 | extinct terrestrial reptiles having teeth set in sockets; of the late Permian to Triassic -01723883 05 n 02 thecodont 0 thecodont_reptile 0 002 @ 01695681 n 0000 #m 01723678 n 0000 | presumably in the common ancestral line to dinosaurs and crocodiles and birds -01724055 05 n 02 Ichthyosauria 0 order_Ichthyosauria 0 004 @ 01342529 n 0000 #m 01695259 n 0000 %m 01724231 n 0000 %m 01724470 n 0000 | extinct marine reptiles: ichthyosaurs -01724231 05 n 01 ichthyosaur 0 004 @ 01695681 n 0000 #m 01724055 n 0000 ~ 01724840 n 0000 ~ 01725086 n 0000 | any of several marine reptiles of the Mesozoic having a body like a porpoise with dorsal and tail fins and paddle-shaped limbs -01724470 05 n 02 Ichthyosauridae 0 family_Ichthyosauridae 0 004 @ 01656813 n 0000 #m 01724055 n 0000 %m 01724703 n 0000 %m 01724947 n 0000 | later ichthyosaurs of the Jurassic and Cretaceous; widely distributed in both hemispheres -01724703 05 n 01 genus_Ichthyosaurus 0 003 @ 01657723 n 0000 #m 01724470 n 0000 %m 01724840 n 0000 | type genus of the Ichthyosauridae -01724840 05 n 01 ichthyosaurus 0 002 @ 01724231 n 0000 #m 01724703 n 0000 | ichthyosaurs of the Jurassic -01724947 05 n 01 genus_Stenopterygius 0 003 @ 01657723 n 0000 #m 01724470 n 0000 %m 01725086 n 0000 | a reptile genus of Ichthyosauridae -01725086 05 n 02 stenopterygius 0 Stenopterygius_quadrisicissus 0 002 @ 01724231 n 0000 #m 01724947 n 0000 | an ichthyosaur of the genus Stenopterygius -01725240 05 n 02 Sauropterygia 0 order_Sauropterygia 0 004 @ 01342529 n 0000 #m 01695259 n 0000 %m 01725427 n 0000 %m 01725933 n 0000 | extinct marine reptiles: plesiosaurs; nothosaurs -01725427 05 n 02 Plesiosauria 0 suborder_Plesiosauria 0 003 @ 01342529 n 0000 #m 01725240 n 0000 %m 01725570 n 0000 | any of the plesiosaurs -01725570 05 n 01 genus_Plesiosaurus 0 003 @ 01657723 n 0000 #m 01725427 n 0000 %m 01725713 n 0000 | a reptile genus of suborder Plesiosauria -01725713 05 n 02 plesiosaur 0 plesiosaurus 0 002 @ 01695681 n 0000 #m 01725570 n 0000 | extinct marine reptile with a small head on a long neck a short tail and four paddle-shaped limbs; of the Jurassic and Cretaceous -01725933 05 n 02 Nothosauria 0 suborder_Nothosauria 0 003 @ 01342529 n 0000 #m 01725240 n 0000 %m 01726079 n 0000 | a suborder of Sauropterygia -01726079 05 n 01 genus_Nothosaurus 0 003 @ 01657723 n 0000 #m 01725933 n 0000 %m 01726203 n 0000 | a genus of Nothosauria -01726203 05 n 01 nothosaur 0 002 @ 01695681 n 0000 #m 01726079 n 0000 | extinct marine reptile with longer more slender limbs than plesiosaurs and less completely modified for swimming -01726390 05 n 04 Serpentes 0 suborder_Serpentes 0 Ophidia 0 suborder_Ophidia 0 011 @ 01342529 n 0000 #m 01673503 n 0000 %m 01726692 n 0000 %m 01726960 n 0000 %m 01740283 n 0000 %m 01740393 n 0000 %m 01741744 n 0000 %m 01744657 n 0000 %m 01751621 n 0000 %m 01751979 n 0000 %m 01753721 n 0000 | snakes -01726692 05 n 03 snake 0 serpent 0 ophidian 0 009 @ 01661818 n 0000 #m 01726390 n 0000 + 02316820 a 0102 ~ 01727646 n 0000 ~ 01740551 n 0000 ~ 01741562 n 0000 ~ 01745125 n 0000 ~ 01751748 n 0000 ~ 01752165 n 0000 | limbless scaly elongate reptile; some are venomous -01726960 05 n 02 Colubridae 0 family_Colubridae 0 030 @ 01656813 n 0000 #m 01726390 n 0000 %m 01727646 n 0000 %m 01728445 n 0000 %m 01728738 n 0000 %m 01729133 n 0000 %m 01729533 n 0000 %m 01729838 n 0000 %m 01730429 n 0000 %m 01730679 n 0000 %m 01731418 n 0000 %m 01732445 n 0000 %m 01733094 n 0000 %m 01733346 n 0000 %m 01733634 n 0000 %m 01734273 n 0000 %m 01735062 n 0000 %m 01735898 n 0000 %m 01736256 n 0000 %m 01736569 n 0000 %m 01736696 n 0000 %m 01737197 n 0000 %m 01737356 n 0000 %m 01738175 n 0000 %m 01738470 n 0000 %m 01738965 n 0000 %m 01739260 n 0000 %m 01739518 n 0000 %m 01740005 n 0000 %m 01741116 n 0000 | nonvenomous snakes; about two-thirds of all living species -01727646 05 n 02 colubrid_snake 0 colubrid 0 027 @ 01726692 n 0000 #m 01726960 n 0000 ~ 01728266 n 0000 ~ 01728572 n 0000 ~ 01728920 n 0000 ~ 01729322 n 0000 ~ 01729672 n 0000 ~ 01729977 n 0000 ~ 01730563 n 0000 ~ 01730812 n 0000 ~ 01731545 n 0000 ~ 01732244 n 0000 ~ 01733466 n 0000 ~ 01733757 n 0000 ~ 01734418 n 0000 ~ 01735189 n 0000 ~ 01736032 n 0000 ~ 01736375 n 0000 ~ 01736796 n 0000 ~ 01737021 n 0000 ~ 01738306 n 0000 ~ 01738601 n 0000 ~ 01739094 n 0000 ~ 01739381 n 0000 ~ 01739647 n 0000 ~ 01740131 n 0000 ~ 01741232 n 0000 | mostly harmless temperate-to-tropical terrestrial or arboreal or aquatic snakes -01728266 05 n 01 hoop_snake 0 001 @ 01727646 n 0000 | any of various harmless North American snakes that were formerly believed to take tail in mouth and roll along like a hoop -01728445 05 n 02 Carphophis 0 genus_Carphophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01728572 n 0000 | thunder snake -01728572 05 n 03 thunder_snake 0 worm_snake 2 Carphophis_amoenus 0 002 @ 01727646 n 0000 #m 01728445 n 0000 | small reddish wormlike snake of eastern United States -01728738 05 n 02 Diadophis 0 genus_Diadophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01728920 n 0000 | a genus of reptiles of the family Colubridae including ringneck snakes -01728920 05 n 03 ringneck_snake 0 ring-necked_snake 0 ring_snake 2 002 @ 01727646 n 0000 #m 01728738 n 0000 | any of numerous small nonvenomous North American snakes with a yellow or orange ring around the neck -01729133 05 n 02 Heterodon 0 genus_Heterodon 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01729322 n 0000 | a genus of small colubrid snakes containing the North American hognose snakes -01729322 05 n 03 hognose_snake 0 puff_adder 2 sand_viper 2 002 @ 01727646 n 0000 #m 01729133 n 0000 | harmless North American snake with upturned nose; may spread its head and neck or play dead when disturbed -01729533 05 n 02 Phyllorhynchus 0 genus_Phyllorhynchus 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01729672 n 0000 | leaf-nosed snakes -01729672 05 n 01 leaf-nosed_snake 0 002 @ 01727646 n 0000 #m 01729533 n 0000 | any of various pale blotched snakes with a blunt snout of southwestern North America -01729838 05 n 02 Opheodrys 0 genus_Opheodrys 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01729977 n 0000 | North American green snakes -01729977 05 n 02 green_snake 1 grass_snake 3 004 @ 01727646 n 0000 #m 01729838 n 0000 ~ 01730185 n 0000 ~ 01730307 n 0000 | either of two North American chiefly insectivorous snakes that are green in color -01730185 05 n 02 smooth_green_snake 0 Opheodrys_vernalis 0 001 @ 01729977 n 0000 | of western and central United States -01730307 05 n 02 rough_green_snake 0 Opheodrys_aestivus 0 001 @ 01729977 n 0000 | of southern and eastern United States -01730429 05 n 02 Chlorophis 0 genus_Chlorophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01730563 n 0000 | African green snakes -01730563 05 n 01 green_snake 2 002 @ 01727646 n 0000 #m 01730429 n 0000 | any of numerous African colubrid snakes -01730679 05 n 02 Coluber 0 genus_Coluber 0 004 @ 01657723 n 0000 #m 01726960 n 0000 %m 01730812 n 0000 %m 01731277 n 0000 | racers -01730812 05 n 01 racer 1 004 @ 01727646 n 0000 #m 01730679 n 0000 ~ 01730960 n 0000 ~ 01731277 n 0000 | slender fast-moving North American snakes -01730960 05 n 03 blacksnake 1 black_racer 0 Coluber_constrictor 0 002 @ 01730812 n 0000 ~ 01731137 n 0000 | blackish racer of the eastern United States that grows to six feet -01731137 05 n 02 blue_racer 0 Coluber_constrictor_flaviventris 0 001 @ 01730960 n 0000 | bluish-green blacksnake found from Ohio to Texas -01731277 05 n 02 horseshoe_whipsnake 0 Coluber_hippocrepis 0 002 @ 01730812 n 0000 #m 01730679 n 0000 | slender fast-moving Eurasian snake -01731418 05 n 02 Masticophis 0 genus_Masticophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01731545 n 0000 | whip snakes -01731545 05 n 03 whip-snake 0 whip_snake 0 whipsnake 0 005 @ 01727646 n 0000 #m 01731418 n 0000 ~ 01731764 n 0000 ~ 01731941 n 0000 ~ 01732093 n 0000 | any of several small fast-moving snakes with long whiplike tails -01731764 05 n 03 coachwhip 0 coachwhip_snake 0 Masticophis_flagellum 0 001 @ 01731545 n 0000 | a whipsnake of southern United States and Mexico; tail resembles a braided whip -01731941 05 n 03 California_whipsnake 0 striped_racer 0 Masticophis_lateralis 0 001 @ 01731545 n 0000 | a whipsnake of scrublands and rocky hillsides -01732093 05 n 02 Sonoran_whipsnake 0 Masticophis_bilineatus 0 001 @ 01731545 n 0000 | both terrestrial and arboreal snake of United States southwest -01732244 05 n 01 rat_snake 0 005 @ 01727646 n 0000 ~ 01732614 n 0000 ~ 01732789 n 0000 ~ 01732989 n 0000 ~ 01733214 n 0000 | any of various nonvenomous rodent-eating snakes of North America and Asia -01732445 05 n 02 Elaphe 0 genus_Elaphe 0 005 @ 01657723 n 0000 #m 01726960 n 0000 %m 01732614 n 0000 %m 01732789 n 0000 %m 01732989 n 0000 | North American rat snakes -01732614 05 n 03 corn_snake 0 red_rat_snake 0 Elaphe_guttata 0 002 @ 01732244 n 0000 #m 01732445 n 0000 | large harmless snake of southeastern United States; often on farms -01732789 05 n 05 black_rat_snake 0 blacksnake 2 pilot_blacksnake 0 mountain_blacksnake 0 Elaphe_obsoleta 0 002 @ 01732244 n 0000 #m 01732445 n 0000 | large harmless shiny black North American snake -01732989 05 n 01 chicken_snake 0 002 @ 01732244 n 0000 #m 01732445 n 0000 | large North American snake -01733094 05 n 02 Ptyas 0 genus_Ptyas 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01733214 n 0000 | Asian rat snakes -01733214 05 n 02 Indian_rat_snake 0 Ptyas_mucosus 0 002 @ 01732244 n 0000 #m 01733094 n 0000 | enter buildings in pursuit of prey -01733346 05 n 02 Arizona 0 genus_Arizona 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01733466 n 0000 | glossy snake -01733466 05 n 02 glossy_snake 0 Arizona_elegans 0 002 @ 01727646 n 0000 #m 01733346 n 0000 | nocturnal burrowing snake of western United States with shiny tan scales -01733634 05 n 02 Pituophis 0 genus_Pituophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01733757 n 0000 | bull snakes -01733757 05 n 02 bull_snake 0 bull-snake 0 004 @ 01727646 n 0000 #m 01733634 n 0000 ~ 01733957 n 0000 ~ 01734104 n 0000 | any of several large harmless rodent-eating North American burrowing snakes -01733957 05 n 02 gopher_snake 2 Pituophis_melanoleucus 0 001 @ 01733757 n 0000 | bull snake of western North America that invades rodent burrows -01734104 05 n 01 pine_snake 0 001 @ 01733757 n 0000 | any of several bull snakes of eastern and southeastern United States found chiefly in pine woods; now threatened -01734273 05 n 02 Lampropeltis 0 genus_Lampropeltis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01734418 n 0000 | king snakes and milk snakes -01734418 05 n 02 king_snake 0 kingsnake 0 004 @ 01727646 n 0000 #m 01734273 n 0000 ~ 01734637 n 0000 ~ 01734808 n 0000 | any of numerous nonvenomous North American constrictors; feed on other snakes and small mammals -01734637 05 n 02 common_kingsnake 0 Lampropeltis_getulus 0 001 @ 01734418 n 0000 | widespread in United States except northern regions; black or brown with yellow bands -01734808 05 n 05 milk_snake 0 house_snake 0 milk_adder 0 checkered_adder 0 Lampropeltis_triangulum 0 001 @ 01734418 n 0000 | nonvenomous tan and brown king snake with an arrow-shaped occipital spot; southeastern ones have red stripes like coral snakes -01735062 05 n 02 Thamnophis 0 genus_Thamnophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01735189 n 0000 | garter snakes -01735189 05 n 02 garter_snake 0 grass_snake 2 005 @ 01727646 n 0000 #m 01735062 n 0000 ~ 01735439 n 0000 ~ 01735577 n 0000 ~ 01735728 n 0000 | any of numerous nonvenomous longitudinally-striped viviparous North American and Central American snakes -01735439 05 n 02 common_garter_snake 0 Thamnophis_sirtalis 0 001 @ 01735189 n 0000 | a garter snake that is widespread in North America -01735577 05 n 02 ribbon_snake 0 Thamnophis_sauritus 0 001 @ 01735189 n 0000 | slender yellow-striped North American garter snake; prefers wet places -01735728 05 n 02 Western_ribbon_snake 0 Thamnophis_proximus 0 001 @ 01735189 n 0000 | yellow- or reddish-striped snake of temperate woodlands and grasslands to tropics -01735898 05 n 02 Tropidoclonion 0 genus_Tropidoclonion 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01736032 n 0000 | lined snakes -01736032 05 n 02 lined_snake 0 Tropidoclonion_lineatum 0 002 @ 01727646 n 0000 #m 01735898 n 0000 | secretive snake of city dumps and parks as well as prairies and open woods; feeds on earthworms; of central United States -01736256 05 n 02 Sonora 0 genus_Sonora 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01736375 n 0000 | ground snakes -01736375 05 n 02 ground_snake 0 Sonora_semiannulata 0 002 @ 01727646 n 0000 #m 01736256 n 0000 | small shy brightly-ringed terrestrial snake of arid or semiarid areas of western North America -01736569 05 n 02 Potamophis 0 genus_Potamophis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01736796 n 0000 | ground snakes -01736696 05 n 02 Haldea 0 genus_Haldea 0 002 @ 01657723 n 0000 #m 01726960 n 0000 | ground snakes -01736796 05 n 03 eastern_ground_snake 0 Potamophis_striatula 0 Haldea_striatula 0 002 @ 01727646 n 0000 #m 01736569 n 0000 | in some classifications placed in genus Haldea; small reddish-grey snake of eastern North America -01737021 05 n 01 water_snake 0 004 @ 01727646 n 0000 ~ 01737472 n 0000 ~ 01737728 n 0000 ~ 01737875 n 0000 | any of various mostly harmless snakes that live in or near water -01737197 05 n 02 Natrix 0 genus_Natrix 0 004 @ 01657723 n 0000 #m 01726960 n 0000 %m 01737472 n 0000 %m 01737728 n 0000 | water snakes; a cosmopolitan genus -01737356 05 n 02 Nerodia 0 genus_Nerodia 0 002 @ 01657723 n 0000 #m 01726960 n 0000 | North American water snakes -01737472 05 n 04 common_water_snake 0 banded_water_snake 0 Natrix_sipedon 0 Nerodia_sipedon 0 002 @ 01737021 n 0000 #m 01737197 n 0000 | in some classifications placed in the genus Nerodia; western United States snake that seldom ventures far from water -01737728 05 n 01 water_moccasin 2 002 @ 01737021 n 0000 #m 01737197 n 0000 | any of numerous North American water snakes inhabiting fresh waters -01737875 05 n 04 grass_snake 0 ring_snake 1 ringed_snake 0 Natrix_natrix 0 002 @ 01737021 n 0000 ~ 01738065 n 0000 | harmless European snake with a bright yellow collar; common in England -01738065 05 n 02 viperine_grass_snake 0 Natrix_maura 0 001 @ 01737875 n 0000 | a small harmless grass snake -01738175 05 n 02 Storeria 0 genus_Storeria 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01738306 n 0000 | a genus of Colubridae -01738306 05 n 02 red-bellied_snake 0 Storeria_occipitamaculata 0 002 @ 01727646 n 0000 #m 01738175 n 0000 | harmless woodland snake of southeastern United States -01738470 05 n 02 Chilomeniscus 0 genus_Chilomeniscus 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01738601 n 0000 | sand snakes -01738601 05 n 01 sand_snake 0 003 @ 01727646 n 0000 #m 01738470 n 0000 ~ 01738731 n 0000 | small North American burrowing snake -01738731 05 n 02 banded_sand_snake 0 Chilomeniscus_cinctus 0 001 @ 01738601 n 0000 | a sand snake of southwestern United States; lives in fine to coarse sand or loamy soil in which it `swims'; banding resembles that of coral snakes -01738965 05 n 02 Tantilla 0 genus_Tantilla 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01739094 n 0000 | black-headed snakes -01739094 05 n 01 black-headed_snake 0 002 @ 01727646 n 0000 #m 01738965 n 0000 | small secretive ground-living snake; found from central United States to Argentina -01739260 05 n 02 Oxybelis 0 genus_Oxybelis 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01739381 n 0000 | vine snakes -01739381 05 n 01 vine_snake 0 002 @ 01727646 n 0000 #m 01739260 n 0000 | slender arboreal snake found from southern Arizona to Bolivia -01739518 05 n 02 Trimorphodon 0 genus_Trimorphodon 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01739647 n 0000 | lyre snakes -01739647 05 n 01 lyre_snake 0 003 @ 01727646 n 0000 #m 01739518 n 0000 ~ 01739871 n 0000 | mildly venomous snake with a lyre-shaped mark on the head; found in rocky areas from southwestern United States to Central America -01739871 05 n 02 Sonoran_lyre_snake 0 Trimorphodon_lambda 0 001 @ 01739647 n 0000 | of desert regions of southwestern North America -01740005 05 n 02 Hypsiglena 0 genus_Hypsiglena 0 003 @ 01657723 n 0000 #m 01726960 n 0000 %m 01740131 n 0000 | night snakes -01740131 05 n 02 night_snake 0 Hypsiglena_torquata 0 002 @ 01727646 n 0000 #m 01740005 n 0000 | nocturnal prowler of western United States and Mexico -01740283 05 n 02 Typhlopidae 0 family_Typhlopidae 0 002 @ 01656813 n 0000 #m 01726390 n 0000 | blind snakes -01740393 05 n 02 Leptotyphlopidae 0 family_Leptotyphlopidae 0 004 @ 01656813 n 0000 #m 01726390 n 0000 %m 01740551 n 0000 %m 01740721 n 0000 | blind snakes -01740551 05 n 02 blind_snake 0 worm_snake 1 003 @ 01726692 n 0000 #m 01740393 n 0000 ~ 01740885 n 0000 | wormlike burrowing snake of warm regions having vestigial eyes -01740721 05 n 02 Leptotyphlops 0 genus_Leptotyphlops 0 003 @ 01657723 n 0000 #m 01740393 n 0000 %m 01740885 n 0000 | blind snakes of Asia and Africa and Americas -01740885 05 n 02 western_blind_snake 0 Leptotyphlops_humilis 0 002 @ 01740551 n 0000 #m 01740721 n 0000 | burrows among roots of shrubs and beneath rocks in desert and rocky hillside areas and beach sand of western United States -01741116 05 n 02 Drymarchon 0 genus_Drymarchon 0 002 @ 01657723 n 0000 #m 01726960 n 0000 | a genus of Colubridae -01741232 05 n 03 indigo_snake 0 gopher_snake 1 Drymarchon_corais 0 002 @ 01727646 n 0000 ~ 01741442 n 0000 | large dark-blue nonvenomous snake that invades burrows; found in southern North America and Mexico -01741442 05 n 02 eastern_indigo_snake 0 Drymarchon_corais_couperi 0 001 @ 01741232 n 0000 | a variety of indigo snake -01741562 05 n 01 constrictor 0 003 @ 01726692 n 0000 + 01387786 v 0102 ~ 01741943 n 0000 | any of various large nonvenomous snakes that kill their prey by crushing it in its coils -01741744 05 n 02 Boidae 0 family_Boidae 0 007 @ 01656813 n 0000 #m 01726390 n 0000 %m 01741943 n 0000 %m 01742310 n 0000 %m 01742680 n 0000 %m 01742967 n 0000 %m 01743223 n 0000 | boas and pythons -01741943 05 n 01 boa 0 007 @ 01741562 n 0000 #m 01741744 n 0000 ~ 01742172 n 0000 ~ 01742447 n 0000 ~ 01742821 n 0000 ~ 01743086 n 0000 ~ 01743605 n 0000 | any of several chiefly tropical constrictors with vestigial hind limbs -01742172 05 n 02 boa_constrictor 0 Constrictor_constrictor 0 001 @ 01741943 n 0000 | very large boa of tropical America and West Indies -01742310 05 n 02 Charina 0 genus_Charina 0 003 @ 01657723 n 0000 #m 01741744 n 0000 %m 01742447 n 0000 | boas of western North America -01742447 05 n 03 rubber_boa 0 tow-headed_snake 0 Charina_bottae 0 002 @ 01741943 n 0000 #m 01742310 n 0000 | boa of grasslands and woodlands of western North America; looks and feels like rubber with tail and head of similar shape -01742680 05 n 02 Lichanura 0 genus_Lichanura 0 003 @ 01657723 n 0000 #m 01741744 n 0000 %m 01742821 n 0000 | boas of western North America -01742821 05 n 02 rosy_boa 0 Lichanura_trivirgata 0 002 @ 01741943 n 0000 #m 01742680 n 0000 | boa of rocky desert of southwestern United States -01742967 05 n 02 Eunectes 0 genus_Eunectes 0 003 @ 01657723 n 0000 #m 01741744 n 0000 %m 01743086 n 0000 | anacondas -01743086 05 n 02 anaconda 0 Eunectes_murinus 0 002 @ 01741943 n 0000 #m 01742967 n 0000 | large arboreal boa of tropical South America -01743223 05 n 02 Pythoninae 0 subfamily_Pythoninae 0 004 @ 01656813 n 0000 #m 01741744 n 0000 %m 01743605 n 0000 %m 01743787 n 0000 | Old World boas: pythons; in some classifications considered a separate family from Boidae -01743449 05 n 02 Pythonidae 0 family_Pythonidae 0 001 @ 01656813 n 0000 | in some classifications a family separate from Boidae comprising Old World boas -01743605 05 n 01 python 0 007 @ 01741943 n 0000 #m 01743223 n 0000 ~ 01743936 n 0000 ~ 01744100 n 0000 ~ 01744270 n 0000 ~ 01744401 n 0000 ~ 01744555 n 0000 | large Old World boas -01743787 05 n 01 genus_Python 0 005 @ 01657723 n 0000 #m 01743223 n 0000 %m 01744100 n 0000 %m 01744270 n 0000 %m 01744401 n 0000 | Old World boas -01743936 05 n 03 carpet_snake 0 Python_variegatus 0 Morelia_spilotes_variegatus 0 001 @ 01743605 n 0000 | Australian python with a variegated pattern on its back -01744100 05 n 02 reticulated_python 0 Python_reticulatus 0 002 @ 01743605 n 0000 #m 01743787 n 0000 | of southeast Asia and East Indies; the largest snake in the world -01744270 05 n 02 Indian_python 0 Python_molurus 0 002 @ 01743605 n 0000 #m 01743787 n 0000 | very large python of southeast Asia -01744401 05 n 03 rock_python 0 rock_snake 0 Python_sebae 0 002 @ 01743605 n 0000 #m 01743787 n 0000 | very large python of tropical and southern Africa -01744555 05 n 01 amethystine_python 0 001 @ 01743605 n 0000 | a python having the color of amethyst -01744657 05 n 02 Elapidae 0 family_Elapidae 0 018 @ 01656813 n 0000 #m 01726390 n 0000 %m 01745125 n 0000 %m 01745780 n 0000 %m 01746063 n 0000 %m 01746565 n 0000 %m 01746818 n 0000 %m 01747144 n 0000 %m 01747466 n 0000 %m 01747739 n 0000 %m 01748560 n 0000 %m 01749141 n 0000 %m 01749428 n 0000 %m 01750027 n 0000 %m 01750315 n 0000 %m 01750598 n 0000 %m 01750920 n 0000 %m 01751353 n 0000 | cobras; kraits; mambas; coral snakes; Australian taipan and tiger snakes -01745125 05 n 02 elapid 0 elapid_snake 0 013 @ 01726692 n 0000 #m 01744657 n 0000 ~ 01745484 n 0000 ~ 01746359 n 0000 ~ 01747589 n 0000 ~ 01747885 n 0000 ~ 01749244 n 0000 ~ 01749582 n 0000 ~ 01750167 n 0000 ~ 01750437 n 0000 ~ 01750743 n 0000 ~ 01751036 n 0000 ~ 01751472 n 0000 | any of numerous venomous fanged snakes of warmer parts of both hemispheres -01745484 05 n 03 coral_snake 1 harlequin-snake 0 New_World_coral_snake 0 003 @ 01745125 n 0000 ~ 01745902 n 0000 ~ 01746191 n 0000 | any of several venomous New World snakes brilliantly banded in red and black and either yellow or white; widely distributed in South America and Central America -01745780 05 n 02 Micrurus 0 genus_Micrurus 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01745902 n 0000 | coral snakes -01745902 05 n 02 eastern_coral_snake 0 Micrurus_fulvius 0 002 @ 01745484 n 0000 #m 01745780 n 0000 | ranges from Central America to southeastern United States -01746063 05 n 02 Micruroides 0 genus_Micruroides 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01746191 n 0000 | coral snakes -01746191 05 n 02 western_coral_snake 0 Micruroides_euryxanthus 0 002 @ 01745484 n 0000 #m 01746063 n 0000 | ranges from Central America to southwestern United States -01746359 05 n 02 coral_snake 2 Old_World_coral_snake 0 004 @ 01745125 n 0000 ~ 01746727 n 0000 ~ 01746952 n 0000 ~ 01747285 n 0000 | any of various venomous elapid snakes of Asia and Africa and Australia -01746565 05 n 04 Calliophis 0 genus_Calliophis 0 Callophis 0 genus_Callophis 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01746727 n 0000 | Asian coral snakes -01746727 05 n 01 Asian_coral_snake 0 002 @ 01746359 n 0000 #m 01746565 n 0000 | of India -01746818 05 n 02 Aspidelaps 0 genus_Aspidelaps 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01746952 n 0000 | African coral snakes -01746952 05 n 02 African_coral_snake 0 Aspidelaps_lubricus 0 002 @ 01746359 n 0000 #m 01746818 n 0000 | small widely distributed arboreal snake of southern Africa banded in black and orange -01747144 05 n 02 Rhynchoelaps 0 genus_Rhynchoelaps 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01747285 n 0000 | Australian coral snakes -01747285 05 n 02 Australian_coral_snake 0 Rhynchoelaps_australis 0 002 @ 01746359 n 0000 #m 01747144 n 0000 | small venomous but harmless snake marked with black-and-white on red -01747466 05 n 02 Denisonia 0 genus_Denisonia 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01747589 n 0000 | copperheads -01747589 05 n 02 copperhead 2 Denisonia_superba 0 002 @ 01745125 n 0000 #m 01747466 n 0000 | venomous but sluggish reddish-brown snake of Australia -01747739 05 n 02 Naja 0 genus_Naja 0 005 @ 01657723 n 0000 #m 01744657 n 0000 %m 01748264 n 0000 %m 01748389 n 0000 %m 01748686 n 0000 | cobras -01747885 05 n 01 cobra 0 005 @ 01745125 n 0000 ~ 01748264 n 0000 ~ 01748389 n 0000 ~ 01748686 n 0000 ~ 01748906 n 0000 | venomous Asiatic and African elapid snakes that can expand the skin of the neck into a hood -01748100 05 n 01 hood 0 002 @ 05225090 n 0000 ;c 06083243 n 0000 | (zoology) an expandable part or marking that resembles a hood on the head or neck of an animal -01748264 05 n 02 Indian_cobra 0 Naja_naja 0 002 @ 01747885 n 0000 #m 01747739 n 0000 | a cobra of tropical Africa and Asia -01748389 05 n 03 asp 2 Egyptian_cobra 0 Naja_haje 0 002 @ 01747885 n 0000 #m 01747739 n 0000 | cobra used by the Pharaohs as a symbol of their power over life and death -01748560 05 n 02 Ophiophagus 0 genus_Ophiophagus 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01748906 n 0000 | king cobra -01748686 05 n 03 black-necked_cobra 0 spitting_cobra 0 Naja_nigricollis 0 002 @ 01747885 n 0000 #m 01747739 n 0000 | aggressive cobra widely distributed in Africa; rarely bites but spits venom that may cause blindness -01748906 05 n 04 hamadryad 0 king_cobra 0 Ophiophagus_hannah 0 Naja_hannah 0 002 @ 01747885 n 0000 #m 01748560 n 0000 | large cobra of southeastern Asia and the East Indies; the largest venomous snake; sometimes placed in genus Naja -01749141 05 n 02 Hemachatus 0 genus_Hemachatus 0 002 @ 01657723 n 0000 #m 01744657 n 0000 | ringhals -01749244 05 n 04 ringhals 0 rinkhals 0 spitting_snake 0 Hemachatus_haemachatus 0 001 @ 01745125 n 0000 | highly venomous snake of southern Africa able to spit venom up to seven feet -01749428 05 n 04 Dendroaspis 0 genus_Dendroaspis 0 Dendraspis 0 genus_Dendraspis 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01749582 n 0000 | mambas -01749582 05 n 01 mamba 0 003 @ 01745125 n 0000 #m 01749428 n 0000 ~ 01749742 n 0000 | arboreal snake of central and southern Africa whose bite is often fatal -01749742 05 n 02 black_mamba 0 Dendroaspis_augusticeps 0 002 @ 01749582 n 0000 ~ 01749939 n 0000 | a highly venomous southern African mamba dreaded because of its quickness and readiness to bite -01749939 05 n 01 green_mamba 0 001 @ 01749742 n 0000 | green phase of the black mamba -01750027 05 n 02 Acanthophis 0 genus_Acanthophis 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01750167 n 0000 | Australian elapid snakes -01750167 05 n 02 death_adder 0 Acanthophis_antarcticus 0 002 @ 01745125 n 0000 #m 01750027 n 0000 | venomous Australian snake resembling an adder -01750315 05 n 02 Notechis 0 genus_Notechis 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01750437 n 0000 | tiger snakes -01750437 05 n 02 tiger_snake 0 Notechis_scutatus 0 002 @ 01745125 n 0000 #m 01750315 n 0000 | highly venomous brown-and-yellow snake of Australia and Tasmania -01750598 05 n 02 Pseudechis 0 genus_Pseudechis 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01750743 n 0000 | venomous Australian blacksnakes -01750743 05 n 02 Australian_blacksnake 0 Pseudechis_porphyriacus 0 002 @ 01745125 n 0000 #m 01750598 n 0000 | large semiaquatic snake of Australia; black above with red belly -01750920 05 n 02 Bungarus 0 genus_Bungarus 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01751036 n 0000 | kraits -01751036 05 n 01 krait 0 003 @ 01745125 n 0000 #m 01750920 n 0000 ~ 01751215 n 0000 | brightly colored venomous but nonaggressive snake of southeastern Asia and Malay peninsula -01751215 05 n 03 banded_krait 0 banded_adder 0 Bungarus_fasciatus 0 001 @ 01751036 n 0000 | sluggish krait banded with black and yellow -01751353 05 n 02 Oxyuranus 0 genus_Oxyuranus 0 003 @ 01657723 n 0000 #m 01744657 n 0000 %m 01751472 n 0000 | taipans -01751472 05 n 02 taipan 0 Oxyuranus_scutellatus 0 002 @ 01745125 n 0000 #m 01751353 n 0000 | large highly venomous snake of northeastern Australia -01751621 05 n 02 Hydrophidae 0 family_Hydrophidae 0 003 @ 01656813 n 0000 #m 01726390 n 0000 %m 01751748 n 0000 | sea snakes -01751748 05 n 01 sea_snake 0 002 @ 01726692 n 0000 #m 01751621 n 0000 | any of numerous venomous aquatic viviparous snakes having a fin-like tail; of warm littoral seas; feed on fish which they immobilize with quick-acting venom -01751979 05 n 02 Viperidae 0 family_Viperidae 0 006 @ 01656813 n 0000 #m 01726390 n 0000 %m 01752165 n 0000 %m 01752433 n 0000 %m 01752889 n 0000 %m 01753354 n 0000 | Old World vipers -01752165 05 n 01 viper 0 008 @ 01726692 n 0000 #m 01751979 n 0000 ~ 01752585 n 0000 ~ 01752736 n 0000 ~ 01753032 n 0000 ~ 01753180 n 0000 ~ 01753488 n 0000 ~ 01753959 n 0000 | venomous Old World snakes characterized by hollow venom-conducting fangs in the upper jaw -01752433 05 n 02 Vipera 0 genus_Vipera 0 004 @ 01657723 n 0000 #m 01751979 n 0000 %m 01752585 n 0000 %m 01752736 n 0000 | type genus of the Viperidae -01752585 05 n 03 adder 0 common_viper 0 Vipera_berus 0 002 @ 01752165 n 0000 #m 01752433 n 0000 | small terrestrial viper common in northern Eurasia -01752736 05 n 03 asp 1 asp_viper 0 Vipera_aspis 0 002 @ 01752165 n 0000 #m 01752433 n 0000 | of southern Europe; similar to but smaller than the adder -01752889 05 n 02 Bitis 0 genus_Bitis 0 004 @ 01657723 n 0000 #m 01751979 n 0000 %m 01753032 n 0000 %m 01753180 n 0000 | a genus of Viperidae -01753032 05 n 02 puff_adder 1 Bitis_arietans 0 002 @ 01752165 n 0000 #m 01752889 n 0000 | large African viper that inflates its body when alarmed -01753180 05 n 02 gaboon_viper 0 Bitis_gabonica 0 002 @ 01752165 n 0000 #m 01752889 n 0000 | large heavy-bodied brilliantly marked and extremely venomous west African viper -01753354 05 n 03 genus_Cerastes 0 Aspis 0 genus_Aspis 0 003 @ 01657723 n 0000 #m 01751979 n 0000 %m 01753488 n 0000 | horned vipers -01753488 05 n 05 horned_viper 0 cerastes 0 sand_viper 1 horned_asp 0 Cerastes_cornutus 0 002 @ 01752165 n 0000 #m 01753354 n 0000 | highly venomous viper of northern Africa and southwestern Asia having a horny spine above each eye -01753721 05 n 02 Crotalidae 0 family_Crotalidae 0 008 @ 01656813 n 0000 #m 01726390 n 0000 %m 01753959 n 0000 %m 01754190 n 0000 %m 01754876 n 0000 %m 01755274 n 0000 %m 01757547 n 0000 %m 01758019 n 0000 | New World vipers: pit vipers -01753959 05 n 01 pit_viper 0 006 @ 01752165 n 0000 #m 01753721 n 0000 ~ 01754370 n 0000 ~ 01754533 n 0000 ~ 01754876 n 0000 ~ 01758141 n 0000 | New World vipers with hollow fangs and a heat-sensitive pit on each side of the head -01754190 05 n 04 Agkistrodon 0 genus_Agkistrodon 0 Ancistrodon 0 genus_Ancistrodon 0 004 @ 01657723 n 0000 #m 01753721 n 0000 %m 01754370 n 0000 %m 01754533 n 0000 | copperheads -01754370 05 n 02 copperhead 1 Agkistrodon_contortrix 0 002 @ 01753959 n 0000 #m 01754190 n 0000 | common coppery brown pit viper of upland eastern United States -01754533 05 n 04 water_moccasin 1 cottonmouth 0 cottonmouth_moccasin 0 Agkistrodon_piscivorus 0 002 @ 01753959 n 0000 #m 01754190 n 0000 | venomous semiaquatic snake of swamps in southern United States -01754737 05 n 01 rattle 0 002 @ 02157557 n 0000 #p 01754876 n 0000 | loosely connected horny sections at the end of a rattlesnake's tail -01754876 05 n 02 rattlesnake 0 rattler 0 015 @ 01753959 n 0000 #m 01753721 n 0000 + 01890626 v 0201 %p 01754737 n 0000 ~ 01755581 n 0000 ~ 01755740 n 0000 ~ 01756089 n 0000 ~ 01756291 n 0000 ~ 01756508 n 0000 ~ 01756733 n 0000 ~ 01756916 n 0000 ~ 01757115 n 0000 ~ 01757343 n 0000 ~ 01757677 n 0000 ~ 01757901 n 0000 | pit viper with horny segments at the end of the tail that rattle when shaken -01755274 05 n 02 Crotalus 0 genus_Crotalus 0 010 @ 01657723 n 0000 #m 01753721 n 0000 %m 01755740 n 0000 %m 01756089 n 0000 %m 01756291 n 0000 %m 01756508 n 0000 %m 01756733 n 0000 %m 01756916 n 0000 %m 01757115 n 0000 %m 01757343 n 0000 | large rattlesnakes; seldom bite unless startled or pursuing prey -01755581 05 n 03 diamondback 0 diamondback_rattlesnake 0 Crotalus_adamanteus 0 001 @ 01754876 n 0000 | large deadly rattlesnake with diamond-shaped markings -01755740 05 n 03 timber_rattlesnake 0 banded_rattlesnake 0 Crotalus_horridus_horridus 0 003 @ 01754876 n 0000 #m 01755274 n 0000 ~ 01755952 n 0000 | widely distributed in rugged ground of eastern United States -01755952 05 n 03 canebrake_rattlesnake 0 canebrake_rattler 0 Crotalus_horridus_atricaudatus 0 001 @ 01755740 n 0000 | southern variety -01756089 05 n 04 prairie_rattlesnake 0 prairie_rattler 0 Western_rattlesnake 0 Crotalus_viridis 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | widely distributed between the Mississippi and the Rockies -01756291 05 n 03 sidewinder 0 horned_rattlesnake 0 Crotalus_cerastes 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | small pale-colored desert rattlesnake of southwestern United States; body moves in an s-shaped curve -01756508 05 n 03 Western_diamondback 0 Western_diamondback_rattlesnake 0 Crotalus_atrox 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | largest and most dangerous North American snake; of southwestern United States and Mexico -01756733 05 n 02 rock_rattlesnake 0 Crotalus_lepidus 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | mountain rock dweller of Mexico and most southern parts of United States southwest -01756916 05 n 02 tiger_rattlesnake 0 Crotalus_tigris 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | having irregularly cross-banded back; of arid foothills and canyons of southern Arizona and Mexico -01757115 05 n 02 Mojave_rattlesnake 0 Crotalus_scutulatus 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | extremely dangerous; most common in areas of scattered scrubby growth; from Mojave Desert to western Texas and into Mexico -01757343 05 n 02 speckled_rattlesnake 0 Crotalus_mitchellii 0 002 @ 01754876 n 0000 #m 01755274 n 0000 | markings vary but usually harmonize with background; of southwestern Arizona and Baja California -01757547 05 n 02 Sistrurus 0 genus_Sistrurus 0 003 @ 01657723 n 0000 #m 01753721 n 0000 %m 01757677 n 0000 | pygmy rattlesnakes -01757677 05 n 03 massasauga 1 massasauga_rattler 0 Sistrurus_catenatus 0 002 @ 01754876 n 0000 #m 01757547 n 0000 | pygmy rattlesnake found in moist areas from the Great Lakes to Mexico; feeds on mice and small amphibians -01757901 05 n 03 ground_rattler 0 massasauga 2 Sistrurus_miliaris 0 001 @ 01754876 n 0000 | small pygmy rattlesnake -01758019 05 n 02 Bothrops 0 genus_Bothrops 0 003 @ 01657723 n 0000 #m 01753721 n 0000 %m 01758141 n 0000 | fer-de-lance -01758141 05 n 02 fer-de-lance 0 Bothrops_atrops 0 002 @ 01753959 n 0000 #m 01758019 n 0000 | large extremely venomous pit viper of Central America and South America -01758308 05 n 05 beak 0 bill 0 neb 1 nib 0 pecker 1 006 @ 05301908 n 0000 #p 01503061 n 0000 + 01243474 v 0501 + 01173813 v 0501 + 01243474 v 0103 ~ 01758637 n 0000 | horny projecting mouth of a bird -01758510 05 n 01 beak 1 002 @ 05301908 n 0000 + 01243474 v 0103 | beaklike mouth of animals other than birds (e.g., turtles) -01758637 05 n 01 cere 0 001 @ 01758308 n 0000 | the fleshy, waxy covering at the base of the upper beak of some birds -01758757 05 n 02 carcase 0 carcass 0 001 @ 05217859 n 0000 | the dead body of an animal especially one slaughtered and dressed for food -01758895 05 n 01 carrion 0 001 @ 05217859 n 0000 | the dead and rotting body of an animal; unfit for human food -01759009 05 n 01 roadkill 0 001 @ 05217859 n 0000 | the dead body of an animal that has been killed on a road by a vehicle; "vultures usually feed on carrion or roadkill" -01759182 05 n 01 arthropod_family 0 182 @ 08107499 n 0000 #m 01313093 n 0000 ~ 01769789 n 0000 ~ 01772782 n 0000 ~ 01773930 n 0000 ~ 01774595 n 0000 ~ 01774918 n 0000 ~ 01775592 n 0000 ~ 01776546 n 0000 ~ 01779340 n 0000 ~ 01780026 n 0000 ~ 01780302 n 0000 ~ 01780551 n 0000 ~ 01781274 n 0000 ~ 01782050 n 0000 ~ 01785392 n 0000 ~ 01786048 n 0000 ~ 01787546 n 0000 ~ 01977684 n 0000 ~ 01978744 n 0000 ~ 01980328 n 0000 ~ 01980993 n 0000 ~ 01981543 n 0000 ~ 01982895 n 0000 ~ 01983958 n 0000 ~ 01984416 n 0000 ~ 01984958 n 0000 ~ 01985947 n 0000 ~ 01986538 n 0000 ~ 01987228 n 0000 ~ 01987938 n 0000 ~ 01989097 n 0000 ~ 01990186 n 0000 ~ 01991233 n 0000 ~ 01991676 n 0000 ~ 01991982 n 0000 ~ 01992935 n 0000 ~ 01995975 n 0000 ~ 01998467 n 0000 ~ 01998920 n 0000 ~ 02000036 n 0000 ~ 02000618 n 0000 ~ 02164973 n 0000 ~ 02165247 n 0000 ~ 02166986 n 0000 ~ 02168121 n 0000 ~ 02168542 n 0000 ~ 02169345 n 0000 ~ 02170269 n 0000 ~ 02170848 n 0000 ~ 02171254 n 0000 ~ 02171633 n 0000 ~ 02174153 n 0000 ~ 02175263 n 0000 ~ 02175791 n 0000 ~ 02176073 n 0000 ~ 02177068 n 0000 ~ 02177376 n 0000 ~ 02177644 n 0000 ~ 02178244 n 0000 ~ 02178886 n 0000 ~ 02179429 n 0000 ~ 02180742 n 0000 ~ 02181013 n 0000 ~ 02181863 n 0000 ~ 02184114 n 0000 ~ 02184881 n 0000 ~ 02186399 n 0000 ~ 02189214 n 0000 ~ 02189822 n 0000 ~ 02190015 n 0000 ~ 02190963 n 0000 ~ 02191449 n 0000 ~ 02192673 n 0000 ~ 02193357 n 0000 ~ 02193799 n 0000 ~ 02194414 n 0000 ~ 02195403 n 0000 ~ 02195693 n 0000 ~ 02195996 n 0000 ~ 02196542 n 0000 ~ 02197413 n 0000 ~ 02198332 n 0000 ~ 02199999 n 0000 ~ 02202509 n 0000 ~ 02203008 n 0000 ~ 02203457 n 0000 ~ 02203739 n 0000 ~ 02204460 n 0000 ~ 02205095 n 0000 ~ 02205383 n 0000 ~ 02206624 n 0000 ~ 02207942 n 0000 ~ 02210096 n 0000 ~ 02210728 n 0000 ~ 02211099 n 0000 ~ 02212323 n 0000 ~ 02214972 n 0000 ~ 02215334 n 0000 ~ 02215941 n 0000 ~ 02216547 n 0000 ~ 02217334 n 0000 ~ 02218235 n 0000 ~ 02218563 n 0000 ~ 02219234 n 0000 ~ 02220393 n 0000 ~ 02223009 n 0000 ~ 02224141 n 0000 ~ 02224323 n 0000 ~ 02225231 n 0000 ~ 02226598 n 0000 ~ 02227773 n 0000 ~ 02228874 n 0000 ~ 02229385 n 0000 ~ 02231307 n 0000 ~ 02231930 n 0000 ~ 02233577 n 0000 ~ 02235321 n 0000 ~ 02235761 n 0000 ~ 02237239 n 0000 ~ 02238474 n 0000 ~ 02238743 n 0000 ~ 02239347 n 0000 ~ 02240223 n 0000 ~ 02240706 n 0000 ~ 02242004 n 0000 ~ 02242293 n 0000 ~ 02242942 n 0000 ~ 02243351 n 0000 ~ 02244007 n 0000 ~ 02244963 n 0000 ~ 02246284 n 0000 ~ 02248147 n 0000 ~ 02248744 n 0000 ~ 02249365 n 0000 ~ 02249995 n 0000 ~ 02250464 n 0000 ~ 02252039 n 0000 ~ 02252429 n 0000 ~ 02254370 n 0000 ~ 02255567 n 0000 ~ 02256010 n 0000 ~ 02256365 n 0000 ~ 02257536 n 0000 ~ 02258780 n 0000 ~ 02258910 n 0000 ~ 02259565 n 0000 ~ 02259844 n 0000 ~ 02260623 n 0000 ~ 02261184 n 0000 ~ 02262324 n 0000 ~ 02263717 n 0000 ~ 02264734 n 0000 ~ 02265177 n 0000 ~ 02265717 n 0000 ~ 02266580 n 0000 ~ 02267019 n 0000 ~ 02267356 n 0000 ~ 02267644 n 0000 ~ 02270326 n 0000 ~ 02271087 n 0000 ~ 02271740 n 0000 ~ 02273120 n 0000 ~ 02274516 n 0000 ~ 02277556 n 0000 ~ 02279442 n 0000 ~ 02280223 n 0000 ~ 02281552 n 0000 ~ 02283728 n 0000 ~ 02285359 n 0000 ~ 02286815 n 0000 ~ 02288473 n 0000 ~ 02291024 n 0000 ~ 02291391 n 0000 ~ 02292850 n 0000 ~ 02293135 n 0000 ~ 02294761 n 0000 ~ 02298379 n 0000 ~ 02300018 n 0000 ~ 02301072 n 0000 ~ 02305245 n 0000 ~ 02306159 n 0000 | any of the arthropods -01762525 05 n 01 arthropod_genus 0 256 @ 08108972 n 0000 #m 01313093 n 0000 ~ 01769930 n 0000 ~ 01770967 n 0000 ~ 01771624 n 0000 ~ 01772985 n 0000 ~ 01773319 n 0000 ~ 01774252 n 0000 ~ 01775230 n 0000 ~ 01777032 n 0000 ~ 01778984 n 0000 ~ 01780919 n 0000 ~ 01781410 n 0000 ~ 01782378 n 0000 ~ 01783571 n 0000 ~ 01785532 n 0000 ~ 01786219 n 0000 ~ 01787693 n 0000 ~ 01788157 n 0000 ~ 01972017 n 0000 ~ 01977366 n 0000 ~ 01977832 n 0000 ~ 01979124 n 0000 ~ 01979395 n 0000 ~ 01979738 n 0000 ~ 01980053 n 0000 ~ 01980471 n 0000 ~ 01981137 n 0000 ~ 01981884 n 0000 ~ 01982211 n 0000 ~ 01983277 n 0000 ~ 01984131 n 0000 ~ 01984547 n 0000 ~ 01985331 n 0000 ~ 01985667 n 0000 ~ 01986072 n 0000 ~ 01986681 n 0000 ~ 01987353 n 0000 ~ 01988064 n 0000 ~ 01989254 n 0000 ~ 01989390 n 0000 ~ 01990383 n 0000 ~ 01991367 n 0000 ~ 01991808 n 0000 ~ 01992113 n 0000 ~ 01993065 n 0000 ~ 01993400 n 0000 ~ 01993714 n 0000 ~ 01994801 n 0000 ~ 01995323 n 0000 ~ 01996091 n 0000 ~ 01997002 n 0000 ~ 01998599 n 0000 ~ 01999048 n 0000 ~ 02000195 n 0000 ~ 02000354 n 0000 ~ 02000764 n 0000 ~ 02165754 n 0000 ~ 02166024 n 0000 ~ 02166436 n 0000 ~ 02166674 n 0000 ~ 02167375 n 0000 ~ 02167645 n 0000 ~ 02168876 n 0000 ~ 02169833 n 0000 ~ 02172387 n 0000 ~ 02173240 n 0000 ~ 02173571 n 0000 ~ 02174521 n 0000 ~ 02174870 n 0000 ~ 02175440 n 0000 ~ 02176611 n 0000 ~ 02178563 n 0000 ~ 02179714 n 0000 ~ 02180046 n 0000 ~ 02181599 n 0000 ~ 02182220 n 0000 ~ 02182498 n 0000 ~ 02182796 n 0000 ~ 02184270 n 0000 ~ 02185007 n 0000 ~ 02185694 n 0000 ~ 02186586 n 0000 ~ 02186834 n 0000 ~ 02187427 n 0000 ~ 02187759 n 0000 ~ 02189535 n 0000 ~ 02190648 n 0000 ~ 02191131 n 0000 ~ 02191617 n 0000 ~ 02192127 n 0000 ~ 02192388 n 0000 ~ 02193496 n 0000 ~ 02193955 n 0000 ~ 02194078 n 0000 ~ 02194599 n 0000 ~ 02194887 n 0000 ~ 02196761 n 0000 ~ 02197048 n 0000 ~ 02197545 n 0000 ~ 02198021 n 0000 ~ 02198714 n 0000 ~ 02198996 n 0000 ~ 02199352 n 0000 ~ 02200705 n 0000 ~ 02201252 n 0000 ~ 02201758 n 0000 ~ 02202878 n 0000 ~ 02203332 n 0000 ~ 02204084 n 0000 ~ 02204585 n 0000 ~ 02205523 n 0000 ~ 02208143 n 0000 ~ 02209230 n 0000 ~ 02209508 n 0000 ~ 02209755 n 0000 ~ 02210291 n 0000 ~ 02210567 n 0000 ~ 02211283 n 0000 ~ 02211773 n 0000 ~ 02212811 n 0000 ~ 02213362 n 0000 ~ 02213967 n 0000 ~ 02214203 n 0000 ~ 02215496 n 0000 ~ 02216066 n 0000 ~ 02216924 n 0000 ~ 02217050 n 0000 ~ 02217201 n 0000 ~ 02217997 n 0000 ~ 02218912 n 0000 ~ 02219901 n 0000 ~ 02220676 n 0000 ~ 02220960 n 0000 ~ 02221240 n 0000 ~ 02222199 n 0000 ~ 02222459 n 0000 ~ 02223151 n 0000 ~ 02223694 n 0000 ~ 02224466 n 0000 ~ 02225407 n 0000 ~ 02225577 n 0000 ~ 02227119 n 0000 ~ 02227430 n 0000 ~ 02228215 n 0000 ~ 02228565 n 0000 ~ 02229023 n 0000 ~ 02229867 n 0000 ~ 02230355 n 0000 ~ 02231680 n 0000 ~ 02232086 n 0000 ~ 02233767 n 0000 ~ 02234181 n 0000 ~ 02234719 n 0000 ~ 02235078 n 0000 ~ 02235465 n 0000 ~ 02235911 n 0000 ~ 02237730 n 0000 ~ 02238113 n 0000 ~ 02239073 n 0000 ~ 02239659 n 0000 ~ 02239934 n 0000 ~ 02240377 n 0000 ~ 02240852 n 0000 ~ 02242669 n 0000 ~ 02242816 n 0000 ~ 02243065 n 0000 ~ 02243744 n 0000 ~ 02244396 n 0000 ~ 02244670 n 0000 ~ 02245239 n 0000 ~ 02246487 n 0000 ~ 02246822 n 0000 ~ 02247076 n 0000 ~ 02247363 n 0000 ~ 02249011 n 0000 ~ 02249673 n 0000 ~ 02250133 n 0000 ~ 02250653 n 0000 ~ 02251452 n 0000 ~ 02252608 n 0000 ~ 02253592 n 0000 ~ 02254110 n 0000 ~ 02254531 n 0000 ~ 02255144 n 0000 ~ 02255698 n 0000 ~ 02256542 n 0000 ~ 02256882 n 0000 ~ 02257149 n 0000 ~ 02258065 n 0000 ~ 02258354 n 0000 ~ 02261286 n 0000 ~ 02261630 n 0000 ~ 02263848 n 0000 ~ 02265860 n 0000 ~ 02266732 n 0000 ~ 02270473 n 0000 ~ 02270810 n 0000 ~ 02272152 n 0000 ~ 02272428 n 0000 ~ 02273254 n 0000 ~ 02275372 n 0000 ~ 02275921 n 0000 ~ 02276527 n 0000 ~ 02277895 n 0000 ~ 02278343 n 0000 ~ 02278601 n 0000 ~ 02278704 n 0000 ~ 02279127 n 0000 ~ 02279819 n 0000 ~ 02280845 n 0000 ~ 02281987 n 0000 ~ 02282716 n 0000 ~ 02284367 n 0000 ~ 02284513 n 0000 ~ 02284771 n 0000 ~ 02285052 n 0000 ~ 02285909 n 0000 ~ 02286271 n 0000 ~ 02287204 n 0000 ~ 02287476 n 0000 ~ 02289061 n 0000 ~ 02289177 n 0000 ~ 02289466 n 0000 ~ 02289845 n 0000 ~ 02290153 n 0000 ~ 02290521 n 0000 ~ 02291940 n 0000 ~ 02292272 n 0000 ~ 02292564 n 0000 ~ 02293560 n 0000 ~ 02293974 n 0000 ~ 02294279 n 0000 ~ 02295570 n 0000 ~ 02295717 n 0000 ~ 02296150 n 0000 ~ 02296480 n 0000 ~ 02296756 n 0000 ~ 02297127 n 0000 ~ 02297635 n 0000 ~ 02298833 n 0000 ~ 02299715 n 0000 ~ 02300378 n 0000 ~ 02301782 n 0000 ~ 02302124 n 0000 ~ 02302853 n 0000 ~ 02303167 n 0000 ~ 02303448 n 0000 ~ 02303917 n 0000 ~ 02304229 n 0000 ~ 02304967 n 0000 ~ 02305799 n 0000 ~ 02306672 n 0000 ~ 02307007 n 0000 ~ 02308325 n 0000 ~ 02308852 n 0000 | a genus of arthropods -01767199 05 n 02 Arthropoda 0 phylum_Arthropoda 0 017 @ 08102555 n 0000 #m 01313093 n 0000 + 02642634 a 0101 + 02642634 a 0103 %m 01767661 n 0000 %m 01768402 n 0000 %m 01782675 n 0000 %m 01783205 n 0000 %m 01783384 n 0000 %m 01783936 n 0000 %m 01784427 n 0000 %m 01786402 n 0000 %m 01788730 n 0000 %m 01974399 n 0000 %m 01999374 n 0000 %m 02159271 n 0000 %m 02159955 n 0000 | jointed-foot invertebrates: arachnids; crustaceans; insects; millipedes; centipedes -01767661 05 n 01 arthropod 0 025 @ 01905661 n 0000 #m 01767199 n 0000 + 02642634 a 0101 ~ 01768244 n 0000 ~ 01769347 n 0000 ~ 01783017 n 0000 ~ 01783706 n 0000 ~ 01784293 n 0000 ~ 01784675 n 0000 ~ 01786646 n 0000 ~ 01787006 n 0000 ~ 01787191 n 0000 ~ 01787835 n 0000 ~ 01788291 n 0000 ~ 01788579 n 0000 ~ 01788864 n 0000 %p 01903498 n 0000 %p 01903756 n 0000 %p 01905121 n 0000 ~ 01974773 n 0000 ~ 01999767 n 0000 ~ 02159955 n 0000 ~ 02309242 n 0000 %p 05225439 n 0000 %p 05553618 n 0000 | invertebrate having jointed limbs and a segmented body with an exoskeleton made of chitin -01768244 05 n 01 trilobite 0 001 @ 01767661 n 0000 | an extinct arthropod that was abundant in Paleozoic times; had an exoskeleton divided into three parts -01768402 05 n 02 Chelicerata 0 superclass_Chelicerata 0 005 @ 08103777 n 0000 #m 01767199 n 0000 %m 01768969 n 0000 %m 01786879 n 0000 %m 01787191 n 0000 | spiders; scorpions; horseshoe crabs -01768596 05 n 01 chelicera 0 003 @ 05559908 n 0000 + 02692378 a 0101 + 02692229 a 0101 | either of the first pair of fang-like appendages near the mouth of an arachnid; often modified for grasping and piercing -01768808 05 n 01 mouthpart 0 001 @ 05559908 n 0000 | any part of the mouth of an insect or other arthropod especially one adapted to a specific way of feeding -01768969 05 n 02 Arachnida 0 class_Arachnida 0 010 @ 08103777 n 0000 #m 01768402 n 0000 + 02636811 a 0102 %m 01769347 n 0000 %m 01769635 n 0000 %m 01770263 n 0000 %m 01770553 n 0000 %m 01771246 n 0000 %m 01771966 n 0000 %m 01775879 n 0000 | a large class of arthropods including spiders and ticks and scorpions and daddy longlegs; have four pairs of walking legs and no wings -01769347 05 n 02 arachnid 0 arachnoid 0 009 @ 01767661 n 0000 #m 01768969 n 0000 + 02636811 a 0201 ~ 01770081 n 0000 ~ 01770393 n 0000 ~ 01770795 n 0000 ~ 01771417 n 0000 ~ 01772222 n 0000 ~ 01776192 n 0000 | air-breathing arthropods characterized by simple eyes and four pairs of legs -01769635 05 n 04 Phalangida 0 order_Phalangida 0 Opiliones 0 order_Opiliones 0 003 @ 01342529 n 0000 #m 01768969 n 0000 %m 01769789 n 0000 | harvestmen -01769789 05 n 02 Phalangiidae 0 family_Phalangiidae 0 003 @ 01759182 n 0000 #m 01769635 n 0000 %m 01769930 n 0000 | a family of Phalangida -01769930 05 n 02 Phalangium 0 genus_Phalangium 0 003 @ 01762525 n 0000 #m 01769789 n 0000 %m 01770081 n 0000 | type genus of the family Phalangiidae -01770081 05 n 03 harvestman 0 daddy_longlegs 2 Phalangium_opilio 0 002 @ 01769347 n 0000 #m 01769930 n 0000 | spiderlike arachnid with a small rounded body and very long thin legs -01770263 05 n 02 Scorpionida 0 order_Scorpionida 0 003 @ 01342529 n 0000 #m 01768969 n 0000 %m 01770393 n 0000 | true scorpions -01770393 05 n 01 scorpion 0 002 @ 01769347 n 0000 #m 01770263 n 0000 | arachnid of warm dry regions having a long segmented tail ending in a venomous stinger -01770553 05 n 06 Chelonethida 0 order_Chelonethida 0 Pseudoscorpionida 0 order_Pseudoscorpionida 0 Pseudoscorpiones 0 order_Pseudoscorpiones 0 004 @ 01342529 n 0000 #m 01768969 n 0000 %m 01770795 n 0000 %m 01770967 n 0000 | false scorpions -01770795 05 n 02 false_scorpion 0 pseudoscorpion 0 003 @ 01769347 n 0000 #m 01770553 n 0000 ~ 01771100 n 0000 | small nonvenomous arachnid resembling a tailless scorpion -01770967 05 n 02 Chelifer 0 genus_Chelifer 0 003 @ 01762525 n 0000 #m 01770553 n 0000 %m 01771100 n 0000 | a genus of Chelonethida -01771100 05 n 02 book_scorpion 0 Chelifer_cancroides 0 002 @ 01770795 n 0000 #m 01770967 n 0000 | minute arachnid sometimes found in old papers -01771246 05 n 04 Pedipalpi 0 order_Pedipalpi 0 Uropygi 0 order_Uropygi 0 004 @ 01342529 n 0000 #m 01768969 n 0000 %m 01771417 n 0000 %m 01771624 n 0000 | whip scorpions -01771417 05 n 02 whip-scorpion 0 whip_scorpion 0 003 @ 01769347 n 0000 #m 01771246 n 0000 ~ 01771766 n 0000 | nonvenomous arachnid that resembles a scorpion and that has a long thin tail without a stinger -01771624 05 n 02 Mastigoproctus 0 genus_Mastigoproctus 0 003 @ 01762525 n 0000 #m 01771246 n 0000 %m 01771766 n 0000 | giant whip scorpions -01771766 05 n 02 vinegarroon 0 Mastigoproctus_giganteus 0 002 @ 01771417 n 0000 #m 01771624 n 0000 | large whip-scorpion of Mexico and southern United States that emits a vinegary odor when alarmed -01771966 05 n 04 Araneae 0 order_Araneae 0 Araneida 0 order_Araneida 0 009 @ 01342529 n 0000 #m 01768969 n 0000 + 02637380 a 0301 %m 01772222 n 0000 %m 01772782 n 0000 %m 01773930 n 0000 %m 01774595 n 0000 %m 01774918 n 0000 %m 01775592 n 0000 | spiders -01772222 05 n 01 spider 0 012 @ 01769347 n 0000 #m 01771966 n 0000 + 02636811 a 0103 ~ 01772664 n 0000 ~ 01773157 n 0000 ~ 01773549 n 0000 ~ 01773797 n 0000 ~ 01774097 n 0000 ~ 01774384 n 0000 ~ 01774750 n 0000 ~ 01775062 n 0000 ~ 01775730 n 0000 | predatory arachnid with eight legs, two poison fangs, two feelers, and usually two silk-spinning organs at the back end of the body; they spin silk to make cocoons for eggs or traps for prey -01772664 05 n 01 orb-weaving_spider 0 001 @ 01772222 n 0000 | a spider that spins a circular (or near circular) web -01772782 05 n 03 Argiopidae 0 family_Argiopidae 0 orb-weaver 0 004 @ 01759182 n 0000 #m 01771966 n 0000 %m 01772985 n 0000 %m 01773319 n 0000 | spiders that spin orb webs; cosmopolitan in distribution -01772985 05 n 02 Argiope 0 genus_Argiope 0 003 @ 01762525 n 0000 #m 01772782 n 0000 %m 01773157 n 0000 | the type genus of Argiopidae; small genus of orb-weaving spiders -01773157 05 n 02 black_and_gold_garden_spider 0 Argiope_aurantia 0 002 @ 01772222 n 0000 #m 01772985 n 0000 | a widely distributed North American garden spider -01773319 05 n 04 Aranea 0 genus_Aranea 0 Araneus 0 genus_Araneus 0 004 @ 01762525 n 0000 #m 01772782 n 0000 %m 01773549 n 0000 %m 01773797 n 0000 | a genus of orb-weaving spiders including common garden spiders and barn spiders -01773549 05 n 02 barn_spider 0 Araneus_cavaticus 0 002 @ 01772222 n 0000 #m 01773319 n 0000 | an orange and tan spider with darkly banded legs that spins an orb web daily; "the barn spider was made famous in E. B. White's book `Charlotte's Web'" -01773797 05 n 02 garden_spider 0 Aranea_diademata 0 002 @ 01772222 n 0000 #m 01773319 n 0000 | a spider common in European gardens -01773930 05 n 02 Theridiidae 0 family_Theridiidae 0 004 @ 01759182 n 0000 #m 01771966 n 0000 %m 01774097 n 0000 %m 01774252 n 0000 | a family of comb-footed spiders -01774097 05 n 02 comb-footed_spider 0 theridiid 0 002 @ 01772222 n 0000 #m 01773930 n 0000 | spider having a comb-like row of bristles on each hind foot -01774252 05 n 02 Latrodectus 0 genus_Latrodectus 0 003 @ 01762525 n 0000 #m 01773930 n 0000 %m 01774384 n 0000 | venomous spiders -01774384 05 n 02 black_widow 0 Latrodectus_mactans 0 002 @ 01772222 n 0000 #m 01774252 n 0000 | venomous New World spider; the female is black with an hourglass-shaped red mark on the underside of the abdomen -01774595 05 n 02 Theraphosidae 0 family_Theraphosidae 0 003 @ 01759182 n 0000 #m 01771966 n 0000 %m 01774750 n 0000 | large tropical spiders; tarantulas -01774750 05 n 01 tarantula 1 002 @ 01772222 n 0000 #m 01774595 n 0000 | large hairy tropical spider with fangs that can inflict painful but not highly venomous bites -01774918 05 n 02 Lycosidae 0 family_Lycosidae 0 004 @ 01759182 n 0000 #m 01771966 n 0000 %m 01775062 n 0000 %m 01775230 n 0000 | wolf spiders -01775062 05 n 02 wolf_spider 0 hunting_spider 0 003 @ 01772222 n 0000 #m 01774918 n 0000 ~ 01775370 n 0000 | ground spider that hunts its prey instead of using a web -01775230 05 n 02 Lycosa 0 genus_Lycosa 0 003 @ 01762525 n 0000 #m 01774918 n 0000 %m 01775370 n 0000 | type genus of the family Lycosidae -01775370 05 n 03 European_wolf_spider 0 tarantula 2 Lycosa_tarentula 0 002 @ 01775062 n 0000 #m 01775230 n 0000 | large southern European spider once thought to be the cause of tarantism (uncontrollable bodily movement) -01775592 05 n 02 Ctenizidae 0 family_Ctenizidae 0 003 @ 01759182 n 0000 #m 01771966 n 0000 %m 01775730 n 0000 | large burrowing spiders -01775730 05 n 01 trap-door_spider 0 002 @ 01772222 n 0000 #m 01775592 n 0000 | American spider that constructs a silk-lined nest with a hinged lid -01775879 05 n 02 Acarina 0 order_Acarina 0 013 @ 01342529 n 0000 #m 01768969 n 0000 %m 01776192 n 0000 %m 01776313 n 0000 %m 01776546 n 0000 %m 01779340 n 0000 %m 01779629 n 0000 %m 01780026 n 0000 %m 01780302 n 0000 %m 01780551 n 0000 %m 01781274 n 0000 %m 01781570 n 0000 %m 01782050 n 0000 | mites and ticks -01776192 05 n 01 acarine 0 004 @ 01769347 n 0000 #m 01775879 n 0000 ~ 01776313 n 0000 ~ 01779629 n 0000 | mite or tick -01776313 05 n 01 tick 0 005 @ 01776192 n 0000 #m 01775879 n 0000 + 02175578 v 0101 ~ 01776705 n 0000 ~ 01779463 n 0000 | any of two families of small parasitic arachnids with barbed proboscis; feed on blood of warm-blooded animals -01776546 05 n 02 Ixodidae 0 family_Ixodidae 0 005 @ 01759182 n 0000 #m 01775879 n 0000 %m 01776705 n 0000 %m 01777032 n 0000 %m 01778984 n 0000 | hard ticks -01776705 05 n 02 hard_tick 0 ixodid 0 011 @ 01776313 n 0000 #m 01776546 n 0000 ~ 01777304 n 0000 ~ 01777467 n 0000 ~ 01777649 n 0000 ~ 01777909 n 0000 ~ 01778217 n 0000 ~ 01778487 n 0000 ~ 01778621 n 0000 ~ 01778801 n 0000 ~ 01779148 n 0000 | ticks having a hard shield on the back and mouth parts that project from the head -01777032 05 n 02 Ixodes 0 genus_Ixodes 0 010 @ 01762525 n 0000 #m 01776546 n 0000 %m 01777304 n 0000 %m 01777467 n 0000 %m 01777649 n 0000 %m 01777909 n 0000 %m 01778217 n 0000 %m 01778487 n 0000 %m 01778621 n 0000 %m 01778801 n 0000 | type genus of the family Ixodidae -01777304 05 n 02 Ixodes_dammini 0 deer_tick 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | a northeastern tick now recognized as same species as Ixodes scapularis -01777467 05 n 01 Ixodes_neotomae 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | a tick that usually does not bite humans; transmits Lyme disease spirochete to dusky-footed wood rats -01777649 05 n 02 Ixodes_pacificus 0 western_black-legged_tick 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | a tick that feeds on dusky-footed wood rat and bites humans; principal vector for Lyme disease in western United States especially northern California -01777909 05 n 02 Ixodes_scapularis 0 black-legged_tick 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | parasitic on mice of genus Peromyscus and bites humans; principal vector for Lyme disease in eastern United States (especially New England); northern form was for a time known as Ixodes dammini (deer tick) -01778217 05 n 03 sheep-tick 2 sheep_tick 2 Ixodes_ricinus 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | parasitic on sheep and cattle as well as humans; can transmit looping ill in sheep (acute viral disease of the nervous system); a vector for Lyme disease spirochete -01778487 05 n 01 Ixodes_persulcatus 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | bites humans; a vector for Lyme disease spirochete -01778621 05 n 01 Ixodes_dentatus 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats -01778801 05 n 01 Ixodes_spinipalpis 0 002 @ 01776705 n 0000 #m 01777032 n 0000 | usually does not bite humans; transmits Lyme disease spirochete to cottontail rabbits and wood rats -01778984 05 n 02 Dermacentor 0 genus_Dermacentor 0 003 @ 01762525 n 0000 #m 01776546 n 0000 %m 01779148 n 0000 | vectors of important diseases of man and animals -01779148 05 n 03 wood_tick 0 American_dog_tick 0 Dermacentor_variabilis 0 002 @ 01776705 n 0000 #m 01778984 n 0000 | common tick that can transmit Rocky Mountain spotted fever and tularemia -01779340 05 n 02 Argasidae 0 family_Argasidae 0 003 @ 01759182 n 0000 #m 01775879 n 0000 %m 01779463 n 0000 | soft ticks -01779463 05 n 02 soft_tick 0 argasid 0 002 @ 01776313 n 0000 #m 01779340 n 0000 | tick lacking a dorsal shield and having mouth parts on the under side of the head -01779629 05 n 01 mite 0 010 @ 01776192 n 0000 #m 01775879 n 0000 ~ 01779939 n 0000 ~ 01780142 n 0000 ~ 01780426 n 0000 ~ 01780696 n 0000 ~ 01781570 n 0000 ~ 01781698 n 0000 ~ 01781875 n 0000 ~ 01782209 n 0000 | any of numerous very small to minute arachnids often infesting animals or plants or stored foods -01779939 05 n 01 web-spinning_mite 0 001 @ 01779629 n 0000 | a mite that spins a web -01780026 05 n 02 Acaridae 0 family_Acaridae 0 003 @ 01759182 n 0000 #m 01775879 n 0000 %m 01780142 n 0000 | mites -01780142 05 n 01 acarid 0 002 @ 01779629 n 0000 #m 01780026 n 0000 | very small free-living arachnid that is parasitic on animals or plants; related to ticks -01780302 05 n 02 Trombidiidae 0 family_Trombidiidae 0 003 @ 01759182 n 0000 #m 01775879 n 0000 %m 01780426 n 0000 | mites -01780426 05 n 01 trombidiid 0 002 @ 01779629 n 0000 #m 01780302 n 0000 | mite that in all stages feeds on other arthropods -01780551 05 n 02 Trombiculidae 0 family_Trombiculidae 0 004 @ 01759182 n 0000 #m 01775879 n 0000 %m 01780696 n 0000 %m 01780919 n 0000 | mites -01780696 05 n 01 trombiculid 0 003 @ 01779629 n 0000 #m 01780551 n 0000 ~ 01781071 n 0000 | mite that as nymph and adult feeds on early stages of small arthropods but whose larvae are parasitic on terrestrial vertebrates -01780919 05 n 02 Trombicula 0 genus_Trombicula 0 003 @ 01762525 n 0000 #m 01780551 n 0000 %m 01781071 n 0000 | type genus of the family Trombiculidae -01781071 05 n 04 harvest_mite 0 chigger 1 jigger 0 redbug 0 002 @ 01780696 n 0000 #m 01780919 n 0000 | larval mite that sucks the blood of vertebrates including human beings causing intense irritation -01781274 05 n 02 Sarcoptidae 0 family_Sarcoptidae 0 003 @ 01759182 n 0000 #m 01775879 n 0000 %m 01781410 n 0000 | small whitish mites -01781410 05 n 02 Sarcoptes 0 genus_Sarcoptes 0 003 @ 01762525 n 0000 #m 01781274 n 0000 %m 01781698 n 0000 | type genus of the family Sarcoptidae: itch mites -01781570 05 n 02 acarus 0 genus_Acarus 0 002 @ 01779629 n 0000 #m 01775879 n 0000 | any of several mites of the order Acarina -01781698 05 n 02 itch_mite 0 sarcoptid 0 002 @ 01779629 n 0000 #m 01781410 n 0000 | whitish mites that attack the skin of humans and other animals; "itch mites cause scabies" -01781875 05 n 01 rust_mite 0 001 @ 01779629 n 0000 | any of several varieties of mite that burrow into plants and cause a reddish-brown discoloration on the leaves or fruit -01782050 05 n 02 Tetranychidae 0 family_Tetranychidae 0 004 @ 01759182 n 0000 #m 01775879 n 0000 %m 01782209 n 0000 %m 01782378 n 0000 | plant-feeding mites -01782209 05 n 02 spider_mite 0 tetranychid 0 003 @ 01779629 n 0000 #m 01782050 n 0000 ~ 01782516 n 0000 | web-spinning mite that attacks garden plants and fruit trees -01782378 05 n 02 Panonychus 0 genus_Panonychus 0 003 @ 01762525 n 0000 #m 01782050 n 0000 %m 01782516 n 0000 | a genus of Tetranychidae -01782516 05 n 03 red_spider 0 red_spider_mite 0 Panonychus_ulmi 0 002 @ 01782209 n 0000 #m 01782378 n 0000 | small web-spinning mite; a serious orchard pest -01782675 05 n 01 superclass_Myriapoda 0 002 @ 08103777 n 0000 #m 01767199 n 0000 | used in some classifications to encompass the millipedes (Diplopoda) and centipedes (Chilopoda); formerly a large taxon including also the Pauropoda and Symphyla; the term Myriapoda now usually used synonymously with Diplopoda and limited to the millipedes -01783017 05 n 01 myriapod 0 001 @ 01767661 n 0000 | general term for any terrestrial arthropod having an elongated body composed of many similar segments: e.g. centipedes and millipedes -01783205 05 n 02 Pauropoda 0 class_Pauropoda 0 002 @ 08103777 n 0000 #m 01767199 n 0000 | an obscure class of minute arthropods with branched antennae and 8 to 10 pairs of legs -01783384 05 n 02 Symphyla 0 class_Symphyla 0 003 @ 08103777 n 0000 #m 01767199 n 0000 %m 01783571 n 0000 | small class of minute arthropods; unimportant except for the garden centipede -01783571 05 n 02 Scutigerella 0 genus_Scutigerella 0 003 @ 01762525 n 0000 #m 01783384 n 0000 %m 01783706 n 0000 | garden centipedes -01783706 05 n 04 garden_centipede 0 garden_symphilid 0 symphilid 0 Scutigerella_immaculata 0 002 @ 01767661 n 0000 #m 01783571 n 0000 | minute arthropod often infesting the underground parts of truck-garden and greenhouse crops -01783936 05 n 02 Tardigrada 0 class_Tardigrada 0 003 @ 08103777 n 0000 #m 01767199 n 0000 %m 01784293 n 0000 | in some classifications considered a separate phylum: microscopic arachnid-like invertebrates living in water or damp moss having 4 pairs of legs and instead of a mouth a pair of stylets or needlelike piercing organs connected with the pharynx -01784293 05 n 01 tardigrade 0 003 @ 01767661 n 0000 #m 01783936 n 0000 %p 01901348 n 0000 | an arthropod of the division Tardigrada -01784427 05 n 02 Chilopoda 0 class_Chilopoda 0 005 @ 08103777 n 0000 #m 01767199 n 0000 %m 01784675 n 0000 %m 01785392 n 0000 %m 01785831 n 0000 | arthropods having the trunk composed of numerous somites each bearing one pair of legs: centipedes -01784675 05 n 01 centipede 0 003 @ 01767661 n 0000 #m 01784427 n 0000 ~ 01785667 n 0000 | chiefly nocturnal predacious arthropod having a flattened body of 15 to 173 segments each with a pair of legs, the foremost pair being modified as prehensors -01784925 05 n 01 prehensor 0 001 @ 05561507 n 0000 | the anterior pair of legs of a centipede that are modified to seize prey and inject venom from the toxicognaths -01785092 05 n 01 toxicognath 0 001 @ 01785234 n 0000 | either of a pair of poison fangs in the modified front pair of legs of the centipede -01785234 05 n 01 fang 2 002 @ 05559908 n 0000 ~ 01785092 n 0000 | an appendage of insects that is capable of injecting venom; usually evolved from the legs -01785392 05 n 02 Scutigeridae 0 family_Scutigeridae 0 003 @ 01759182 n 0000 #m 01784427 n 0000 %m 01785532 n 0000 | a family of Chilopoda -01785532 05 n 02 Scutigera 0 genus_Scutigera 0 003 @ 01762525 n 0000 #m 01785392 n 0000 %m 01785667 n 0000 | a genus of Scutigeridae -01785667 05 n 02 house_centipede 0 Scutigera_coleoptrata 0 002 @ 01784675 n 0000 #m 01785532 n 0000 | long-legged centipede common in damp places as e.g. cellars -01785831 05 n 02 Geophilomorpha 0 order_Geophilomorpha 0 003 @ 01342529 n 0000 #m 01784427 n 0000 %m 01786048 n 0000 | small elongate centipedes living in soil and under stones and having more than 30 pairs of legs -01786048 05 n 02 Geophilidae 0 family_Geophilidae 0 003 @ 01759182 n 0000 #m 01785831 n 0000 %m 01786219 n 0000 | small extremely elongate centipedes that live in earth -01786219 05 n 02 Geophilus 0 genus_Geophilus 0 002 @ 01762525 n 0000 #m 01786048 n 0000 | type genus of the Geophilidae: a cosmopolitan genus of centipedes sometimes called earwigs -01786402 05 n 04 Diplopoda 0 class_Diplopoda 0 Myriapoda 0 class_Myriapoda 0 003 @ 08103777 n 0000 #m 01767199 n 0000 %m 01786646 n 0000 | arthropods having the body composed of numerous double somites each with two pairs of legs: millipedes -01786646 05 n 03 millipede 0 millepede 0 milliped 0 002 @ 01767661 n 0000 #m 01786402 n 0000 | any of numerous herbivorous nonpoisonous arthropods having a cylindrical body of 20 to 100 or more segments most with two pairs of legs -01786879 05 n 02 Pycnogonida 0 order_Pycnogonida 0 003 @ 01342529 n 0000 #m 01768402 n 0000 %m 01787006 n 0000 | sea spiders -01787006 05 n 02 sea_spider 1 pycnogonid 0 002 @ 01767661 n 0000 #m 01786879 n 0000 | any of various small spiderlike marine arthropods having small thin bodies and long slender legs -01787191 05 n 02 Merostomata 0 class_Merostomata 0 004 @ 01767661 n 0000 #m 01768402 n 0000 %m 01787401 n 0000 %m 01788420 n 0000 | used in some classifications; includes the orders Xiphosura and Eurypterida -01787401 05 n 02 Xiphosura 0 order_Xiphosura 0 003 @ 01342529 n 0000 #m 01787191 n 0000 %m 01787546 n 0000 | horseshoe crabs and extinct forms -01787546 05 n 02 Limulidae 0 family_Limulidae 0 004 @ 01759182 n 0000 #m 01787401 n 0000 %m 01787693 n 0000 %m 01788157 n 0000 | horseshoe crabs -01787693 05 n 02 Limulus 0 genus_Limulus 0 003 @ 01762525 n 0000 #m 01787546 n 0000 %m 01787835 n 0000 | type genus of the family Limulidae -01787835 05 n 04 horseshoe_crab 0 king_crab 2 Limulus_polyphemus 0 Xiphosurus_polyphemus 0 002 @ 01767661 n 0000 #m 01787693 n 0000 | large marine arthropod of the Atlantic coast of North America having a domed carapace that is shaped like a horseshoe and a stiff pointed tail; a living fossil related to the wood louse -01788157 05 n 02 Tachypleus 0 genus_Tachypleus 0 003 @ 01762525 n 0000 #m 01787546 n 0000 %m 01788291 n 0000 | a genus of Limulidae -01788291 05 n 01 Asian_horseshoe_crab 0 002 @ 01767661 n 0000 #m 01788157 n 0000 | horseshoe crab of the coast of eastern Asia -01788420 05 n 02 Eurypterida 0 order_Eurypterida 0 003 @ 01342529 n 0000 #m 01787191 n 0000 %m 01788579 n 0000 | extinct aquatic arthropods of the Paleozoic -01788579 05 n 01 eurypterid 0 002 @ 01767661 n 0000 #m 01788420 n 0000 | large extinct scorpion-like arthropod considered related to horseshoe crabs -01788730 05 n 02 Pentastomida 0 subphylum_Pentastomida 0 003 @ 08102555 n 0000 #m 01767199 n 0000 %m 01788864 n 0000 | tongue worms -01788864 05 n 02 tongue_worm 0 pentastomid 0 002 @ 01767661 n 0000 #m 01788730 n 0000 | wormlike arthropod having two pairs of hooks at the sides of the mouth; parasitic in nasal sinuses of mammals -01789064 05 n 02 Galliformes 0 order_Galliformes 0 009 @ 01342529 n 0000 #m 01502262 n 0000 %m 01789386 n 0000 %m 01793818 n 0000 %m 01794813 n 0000 %m 01799086 n 0000 %m 01800759 n 0000 %m 01802309 n 0000 %m 01809446 n 0000 | pheasants; turkeys; grouse; partridges; quails; chickens; brush turkeys; curassows; hoatzins -01789386 05 n 02 gallinaceous_bird 0 gallinacean 0 013 @ 01503061 n 0000 #m 01789064 n 0000 ~ 01789740 n 0000 ~ 01791107 n 0000 %p 01792255 n 0000 ~ 01794651 n 0000 ~ 01799302 n 0000 ~ 01799679 n 0000 ~ 01800424 n 0000 ~ 01801088 n 0000 ~ 01809752 n 0000 ~ 01810700 n 0000 ~ 02153203 n 0000 | heavy-bodied largely ground-feeding domestic or game birds -01789740 05 n 03 domestic_fowl 0 fowl 0 poultry 0 016 @ 01789386 n 0000 #m 01790943 n 0000 + 01145944 v 0201 + 01142899 v 0201 ~ 01790171 n 0000 ~ 01790304 n 0000 ~ 01790398 n 0000 ~ 01790557 n 0000 ~ 01790711 n 0000 ~ 01790812 n 0000 ~ 01791625 n 0000 ~ 01791954 n 0000 ~ 01794158 n 0000 ~ 01809106 n 0000 %p 01895219 n 0000 %p 07644706 n 0000 | a domesticated gallinaceous bird thought to be descended from the red jungle fowl -01790171 05 n 01 Dorking 0 001 @ 01789740 n 0000 | an English breed of large domestic fowl having five toes (the hind toe doubled) -01790304 05 n 01 Plymouth_Rock 0 001 @ 01789740 n 0000 | an American breed of domestic fowl -01790398 05 n 02 Cornish 0 Cornish_fowl 0 001 @ 01789740 n 0000 | English breed of compact domestic fowl; raised primarily to crossbreed to produce roasters -01790557 05 n 01 Rock_Cornish 0 002 @ 01789740 n 0000 %p 07646163 n 0000 | small plump hybrid developed by crossbreeding Plymouth Rock and Cornish fowl -01790711 05 n 01 game_fowl 0 001 @ 01789740 n 0000 | any of several breeds reared for cockfighting -01790812 05 n 02 cochin 0 cochin_china 0 001 @ 01789740 n 0000 | Asian breed of large fowl with dense plumage and feathered legs -01790943 05 n 02 Gallus 0 genus_Gallus 0 004 @ 01507175 n 0000 #m 01802309 n 0000 %m 01789740 n 0000 %m 01791107 n 0000 | common domestic birds and related forms -01791107 05 n 02 jungle_fowl 0 gallina 0 005 @ 01789386 n 0000 #m 01790943 n 0000 ~ 01791314 n 0000 ~ 01791388 n 0000 ~ 01791463 n 0000 | small Asiatic wild bird; believed to be ancestral to domestic fowl -01791314 05 n 01 jungle_cock 0 001 @ 01791107 n 0000 | male jungle fowl -01791388 05 n 01 jungle_hen 0 001 @ 01791107 n 0000 | female jungle fowl -01791463 05 n 02 red_jungle_fowl 0 Gallus_gallus 0 001 @ 01791107 n 0000 | a jungle fowl of southeastern Asia that is considered ancestral to the domestic fowl -01791625 05 n 02 chicken 1 Gallus_gallus 2 010 @ 01789740 n 0000 ~ 01792042 n 0000 ~ 01792158 n 0000 ~ 01792530 n 0000 ~ 01792640 n 0000 ~ 01793340 n 0000 ~ 01793435 n 0000 ~ 01793565 n 0000 ~ 01793715 n 0000 %p 07644967 n 0000 | a domestic fowl bred for flesh or eggs; believed to have been developed from the red jungle fowl -01791954 05 n 01 bantam 0 001 @ 01789740 n 0000 | any of various small breeds of fowl -01792042 05 n 02 chick 0 biddy 1 002 @ 01791625 n 0000 @ 01613615 n 0000 | young bird especially of domestic fowl -01792158 05 n 02 cock 1 rooster 0 002 @ 01791625 n 0000 ~ 01792429 n 0000 | adult male chicken -01792255 05 n 03 comb 1 cockscomb 0 coxcomb 0 002 @ 01326015 n 0000 #p 01789386 n 0000 | the fleshy red crest on the head of the domestic fowl and other gallinaceous birds -01792429 05 n 01 cockerel 0 001 @ 01792158 n 0000 | a young domestic cock; not older than one year -01792530 05 n 01 capon 0 003 @ 01791625 n 0000 + 00061079 v 0101 + 00061079 v 0102 | castrated male chicken -01792640 05 n 02 hen 1 biddy 2 006 @ 01791625 n 0000 ~ 01792808 n 0000 ~ 01792955 n 0000 ~ 01793085 n 0000 ~ 01793159 n 0000 ~ 01793249 n 0000 | adult female chicken -01792808 05 n 01 cackler 1 003 @ 01792640 n 0000 + 01056554 v 0101 + 01056369 v 0101 | a hen that has just laid an egg and emits a shrill squawk -01792955 05 n 05 brood_hen 0 broody 0 broody_hen 0 setting_hen 0 sitter 0 001 @ 01792640 n 0000 | a domestic hen ready to brood -01793085 05 n 01 mother_hen 0 001 @ 01792640 n 0000 | a hen with chicks -01793159 05 n 01 layer 1 002 @ 01792640 n 0000 + 01545079 v 0101 | a hen that lays eggs -01793249 05 n 01 pullet 0 001 @ 01792640 n 0000 | young hen usually less than a year old -01793340 05 n 01 spring_chicken 0 001 @ 01791625 n 0000 | a young chicken having tender meat -01793435 05 n 01 Rhode_Island_red 0 001 @ 01791625 n 0000 | American breed of heavy-bodied brownish-red general-purpose chicken -01793565 05 n 02 Dominique 0 Dominick 0 001 @ 01791625 n 0000 | American breed of chicken having barred grey plumage raised for meat and brown eggs -01793715 05 n 01 Orpington 0 001 @ 01791625 n 0000 | English breed of large chickens with white skin -01793818 05 n 02 Meleagrididae 0 family_Meleagrididae 0 004 @ 01504437 n 0000 #m 01789064 n 0000 %m 01793988 n 0000 %m 01794460 n 0000 | turkeys and some extinct forms -01793988 05 n 02 Meleagris 0 genus_Meleagris 0 003 @ 01507175 n 0000 #m 01793818 n 0000 %m 01794158 n 0000 | type genus of the Meleagrididae: wild and domestic turkeys -01794158 05 n 02 turkey 0 Meleagris_gallopavo 0 003 @ 01789740 n 0000 #m 01793988 n 0000 ~ 01794344 n 0000 | large gallinaceous bird with fan-shaped tail; widely domesticated for food -01794344 05 n 04 turkey_cock 0 gobbler 0 tom 2 tom_turkey 0 002 @ 01794158 n 0000 + 01058426 v 0201 | male turkey -01794460 05 n 02 Agriocharis 0 genus_Agriocharis 0 003 @ 01507175 n 0000 #m 01793818 n 0000 %m 01794651 n 0000 | a genus of birds of the family Meleagrididae including the ocellated turkey -01794651 05 n 02 ocellated_turkey 0 Agriocharis_ocellata 0 002 @ 01789386 n 0000 #m 01794460 n 0000 | wild turkey of Central America and northern South America -01794813 05 n 02 Tetraonidae 0 family_Tetraonidae 0 011 @ 01504437 n 0000 #m 01789064 n 0000 %m 01795088 n 0000 %m 01795425 n 0000 %m 01796222 n 0000 %m 01796870 n 0000 %m 01797180 n 0000 %m 01797472 n 0000 %m 01797767 n 0000 %m 01798052 n 0000 %m 01798352 n 0000 | grouse -01795088 05 n 01 grouse 0 013 @ 02153203 n 0000 #m 07991868 n 0000 #m 01794813 n 0000 + 01143028 v 0101 ~ 01795545 n 0000 ~ 01796340 n 0000 ~ 01797020 n 0000 ~ 01797307 n 0000 ~ 01797601 n 0000 ~ 01797886 n 0000 ~ 01798168 n 0000 ~ 01798484 n 0000 %p 07647115 n 0000 | popular game bird having a plump body and feathered legs and feet -01795425 05 n 02 Lyrurus 0 genus_Lyrurus 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01795545 n 0000 | black grouse -01795545 05 n 01 black_grouse 0 006 @ 01795088 n 0000 #m 01795425 n 0000 ~ 01795735 n 0000 ~ 01795900 n 0000 ~ 01796019 n 0000 ~ 01796105 n 0000 | grouse of which the male is bluish-black -01795735 05 n 03 European_black_grouse 0 heathfowl 0 Lyrurus_tetrix 0 001 @ 01795545 n 0000 | large northern European grouse that is black with a lyre-shaped tail -01795900 05 n 02 Asian_black_grouse 2 Lyrurus_mlokosiewiczi 0 001 @ 01795545 n 0000 | a black grouse of western Asia -01796019 05 n 02 blackcock 0 black_cock 0 001 @ 01795545 n 0000 | male black grouse -01796105 05 n 05 greyhen 0 grayhen 0 grey_hen 0 gray_hen 0 heath_hen 2 001 @ 01795545 n 0000 | female black grouse -01796222 05 n 02 Lagopus 0 genus_Lagopus 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01796340 n 0000 | ptarmigans -01796340 05 n 01 ptarmigan 0 003 @ 01795088 n 0000 #m 01796222 n 0000 ~ 01796519 n 0000 | large Arctic and subarctic grouse with feathered feet and usually white winter plumage -01796519 05 n 06 red_grouse 0 moorfowl 0 moorbird 0 moor-bird 0 moorgame 0 Lagopus_scoticus 0 003 @ 01796340 n 0000 ~ 01796729 n 0000 ~ 01796800 n 0000 | reddish-brown grouse of upland moors of Great Britain -01796729 05 n 01 moorhen 2 001 @ 01796519 n 0000 | female red grouse -01796800 05 n 01 moorcock 0 001 @ 01796519 n 0000 | male red grouse -01796870 05 n 02 Tetrao 0 genus_Tetrao 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01797020 n 0000 | type genus of the Tetraonidae: capercaillies -01797020 05 n 04 capercaillie 0 capercailzie 0 horse_of_the_wood 0 Tetrao_urogallus 0 002 @ 01795088 n 0000 #m 01796870 n 0000 | large black Old World grouse -01797180 05 n 02 Canachites 0 genus_Canachites 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01797307 n 0000 | spruce grouse -01797307 05 n 02 spruce_grouse 0 Canachites_canadensis 0 002 @ 01795088 n 0000 #m 01797180 n 0000 | North American grouse that feeds on evergreen buds and needles -01797472 05 n 02 Centrocercus 0 genus_Centrocercus 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01797601 n 0000 | sage grouse -01797601 05 n 03 sage_grouse 0 sage_hen 0 Centrocercus_urophasianus 0 002 @ 01795088 n 0000 #m 01797472 n 0000 | large grouse of sagebrush regions of North America -01797767 05 n 02 Bonasa 0 genus_Bonasa 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01797886 n 0000 | ruffed grouse -01797886 05 n 03 ruffed_grouse 0 partridge 3 Bonasa_umbellus 0 002 @ 01795088 n 0000 #m 01797767 n 0000 | valued as a game bird in eastern United States and Canada -01798052 05 n 02 Pedioecetes 0 genus_Pedioecetes 0 002 @ 01507175 n 0000 #m 01794813 n 0000 | sharp-tailed grouse -01798168 05 n 04 sharp-tailed_grouse 0 sprigtail 0 sprig_tail 0 Pedioecetes_phasianellus 0 001 @ 01795088 n 0000 | large grouse of prairies and open forests of western North America -01798352 05 n 02 Tympanuchus 0 genus_Tympanuchus 0 003 @ 01507175 n 0000 #m 01794813 n 0000 %m 01798484 n 0000 | prairie chickens -01798484 05 n 03 prairie_chicken 0 prairie_grouse 0 prairie_fowl 0 005 @ 01795088 n 0000 #m 01798352 n 0000 ~ 01798706 n 0000 ~ 01798839 n 0000 ~ 01798979 n 0000 | brown mottled North American grouse of western prairies -01798706 05 n 02 greater_prairie_chicken 0 Tympanuchus_cupido 0 001 @ 01798484 n 0000 | the most common variety of prairie chicken -01798839 05 n 02 lesser_prairie_chicken 0 Tympanuchus_pallidicinctus 0 001 @ 01798484 n 0000 | a smaller prairie chicken of western Texas -01798979 05 n 02 heath_hen 1 Tympanuchus_cupido_cupido 0 001 @ 01798484 n 0000 | extinct prairie chicken -01799086 05 n 02 Cracidae 0 family_Cracidae 0 007 @ 01504437 n 0000 #m 01789064 n 0000 %m 01799302 n 0000 %m 01799540 n 0000 %m 01799876 n 0000 %m 01800042 n 0000 %m 01800286 n 0000 | curassows; guans; chachalacas -01799302 05 n 01 guan 0 003 @ 01789386 n 0000 #m 01799086 n 0000 ~ 01800195 n 0000 | any of several large turkey-like game birds of the family Cracidae; native to jungles of tropical America; resembling the curassows and valued as food -01799540 05 n 02 Crax 0 genus_Crax 0 003 @ 01507175 n 0000 #m 01799086 n 0000 %m 01799679 n 0000 | type genus of the Cracidae: curassows -01799679 05 n 01 curassow 0 002 @ 01789386 n 0000 #m 01799540 n 0000 | large crested arboreal game bird of warm parts of the Americas having long legs and tails; highly esteemed as game and food -01799876 05 n 02 Penelope 0 genus_Penelope 0 002 @ 01507175 n 0000 #m 01799086 n 0000 | a genus of guans (turkey-like arboreal birds valued as game and food birds) -01800042 05 n 02 Pipile 0 genus_Pipile 0 003 @ 01507175 n 0000 #m 01799086 n 0000 %m 01800195 n 0000 | genus of large crested guans (the piping guans) -01800195 05 n 01 piping_guan 0 002 @ 01799302 n 0000 #m 01800042 n 0000 | a kind of guan -01800286 05 n 02 Ortalis 0 genus_Ortalis 0 004 @ 01507175 n 0000 #m 01799086 n 0000 %m 01800424 n 0000 %m 01800633 n 0000 | chachalacas -01800424 05 n 01 chachalaca 0 003 @ 01789386 n 0000 #m 01800286 n 0000 ~ 01800633 n 0000 | slender arboreal guan resembling a wild turkey; native to Central America and Mexico; highly regarded as game birds -01800633 05 n 02 Texas_chachalaca 0 Ortilis_vetula_macalli 0 002 @ 01800424 n 0000 #m 01800286 n 0000 | of Mexico and Texas -01800759 05 n 02 Megapodiidae 0 family_Megapodiidae 0 007 @ 01504437 n 0000 #m 01789064 n 0000 %m 01800963 n 0000 %m 01801088 n 0000 %m 01801371 n 0000 %m 01801753 n 0000 %m 01802033 n 0000 | megapodes -01800963 05 n 02 Megapodius 0 genus-Megapodius 0 002 @ 01507175 n 0000 #m 01800759 n 0000 | type genus of the Megapodiidae -01801088 05 n 05 megapode 0 mound_bird 0 mound-bird 0 mound_builder 0 scrub_fowl 0 005 @ 01789386 n 0000 #m 01800759 n 0000 ~ 01801479 n 0000 ~ 01801876 n 0000 ~ 01802159 n 0000 | large-footed short-winged birds of Australasia; build mounds of decaying vegetation to incubate eggs -01801371 05 n 01 genus_Leipoa 0 003 @ 01507175 n 0000 #m 01800759 n 0000 %m 01801479 n 0000 | mallee fowl -01801479 05 n 04 mallee_fowl 0 leipoa 0 lowan 0 Leipoa_ocellata 0 003 @ 01801088 n 0000 #m 01801371 n 0000 ~ 01801672 n 0000 | Australian mound bird; incubates eggs naturally in sandy mounds -01801672 05 n 01 mallee_hen 0 001 @ 01801479 n 0000 | adult female mallee fowl -01801753 05 n 02 Alectura 0 genus_Alectura 0 003 @ 01507175 n 0000 #m 01800759 n 0000 %m 01801876 n 0000 | brush turkeys -01801876 05 n 02 brush_turkey 0 Alectura_lathami 0 002 @ 01801088 n 0000 #m 01801753 n 0000 | black megapode of wooded regions of Australia and New Guinea -01802033 05 n 02 Macrocephalon 0 genus_Macrocephalon 0 003 @ 01507175 n 0000 #m 01800759 n 0000 %m 01802159 n 0000 | maleos -01802159 05 n 02 maleo 0 Macrocephalon_maleo 0 002 @ 01801088 n 0000 #m 01802033 n 0000 | Celebes megapode that lays eggs in holes in sandy beaches -01802309 05 n 02 Phasianidae 0 family_Phasianidae 0 017 @ 01504437 n 0000 #m 01789064 n 0000 %m 01790943 n 0000 %m 01802721 n 0000 %m 01802895 n 0000 %m 01803548 n 0000 %m 01803764 n 0000 %m 01804029 n 0000 %m 01804340 n 0000 %m 01804796 n 0000 %m 01805199 n 0000 %m 01805446 n 0000 %m 01805692 n 0000 %m 01806740 n 0000 %m 01806984 n 0000 %m 01807265 n 0000 %m 01808785 n 0000 | pheasants; quails; partridges -01802721 05 n 01 phasianid 0 005 @ 02153203 n 0000 #m 01802309 n 0000 ~ 01803078 n 0000 ~ 01806567 n 0000 ~ 01807496 n 0000 | a kind of game bird in the family Phasianidae -01802895 05 n 02 Phasianus 0 genus_Phasianus 0 004 @ 01507175 n 0000 #m 01802309 n 0000 %m 01803078 n 0000 %m 01803362 n 0000 | type genus of the Phasianidae: the typical pheasants -01803078 05 n 01 pheasant 0 009 @ 01802721 n 0000 #m 01802895 n 0000 ~ 01803362 n 0000 ~ 01803641 n 0000 ~ 01803893 n 0000 ~ 01804163 n 0000 ~ 01805321 n 0000 ~ 01805801 n 0000 ~ 01807105 n 0000 | large long-tailed gallinaceous bird native to the Old World but introduced elsewhere -01803362 05 n 02 ring-necked_pheasant 0 Phasianus_colchicus 0 003 @ 01803078 n 0000 #m 01802895 n 0000 %p 07647602 n 0000 | common pheasant having bright plumage and a white neck ring -01803548 05 n 01 genus_Afropavo 0 002 @ 01507175 n 0000 #m 01802309 n 0000 | Congo peafowl -01803641 05 n 03 afropavo 0 Congo_peafowl 0 Afropavo_congensis 0 001 @ 01803078 n 0000 | both sexes are brightly colored -01803764 05 n 02 Argusianus 0 genus_Argusianus 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01803893 n 0000 | argus pheasants -01803893 05 n 02 argus 0 argus_pheasant 0 002 @ 01803078 n 0000 #m 01803764 n 0000 | large brilliantly patterned East Indian pheasant -01804029 05 n 02 Chrysolophus 0 genus_Chrysolophus 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01804163 n 0000 | golden pheasants -01804163 05 n 02 golden_pheasant 0 Chrysolophus_pictus 0 002 @ 01803078 n 0000 #m 01804029 n 0000 | brightly colored crested pheasant of mountains of western and central Asia -01804340 05 n 02 Colinus 0 genus_Colinus 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01804478 n 0000 | New World quail: the bobwhites -01804478 05 n 03 bobwhite 0 bobwhite_quail 0 partridge 2 003 @ 01806567 n 0000 #m 01804340 n 0000 ~ 01804653 n 0000 | a popular North American game bird; named for its call -01804653 05 n 02 northern_bobwhite 0 Colinus_virginianus 0 001 @ 01804478 n 0000 | a favorite game bird of eastern and central United States -01804796 05 n 02 Coturnix 0 genus_Coturnix 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01804921 n 0000 | Old World quail -01804921 05 n 01 Old_World_quail 0 003 @ 01806567 n 0000 #m 01804796 n 0000 ~ 01805070 n 0000 | small game bird with a rounded body and small tail -01805070 05 n 03 migratory_quail 0 Coturnix_coturnix 0 Coturnix_communis 0 001 @ 01804921 n 0000 | the typical Old World quail -01805199 05 n 02 Lophophorus 0 genus_Lophophorus 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01805321 n 0000 | monals -01805321 05 n 02 monal 0 monaul 0 002 @ 01803078 n 0000 #m 01805199 n 0000 | brilliantly colored pheasant of southern Asia -01805446 05 n 02 Odontophorus 0 genus_Odontophorus 0 002 @ 01507175 n 0000 #m 01802309 n 0000 | genus of Central and South American crested partridges resembling quails; sometimes placed in a distinct subfamily or isolated in a distinct family -01805692 05 n 02 Pavo 0 genus_Pavo 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01805801 n 0000 | peafowl -01805801 05 n 02 peafowl 0 bird_of_Juno 0 007 @ 01803078 n 0000 #m 01805692 n 0000 ~ 01806061 n 0000 ~ 01806143 n 0000 ~ 01806297 n 0000 ~ 01806364 n 0000 ~ 01806467 n 0000 | very large terrestrial southeast Asian pheasant often raised as an ornamental bird -01806061 05 n 02 peachick 0 pea-chick 0 001 @ 01805801 n 0000 | a young peafowl -01806143 05 n 01 peacock 1 001 @ 01805801 n 0000 | male peafowl; having a crested head and very large fanlike tail marked with iridescent eyes or spots -01806297 05 n 01 peahen 0 001 @ 01805801 n 0000 | female peafowl -01806364 05 n 02 blue_peafowl 0 Pavo_cristatus 0 001 @ 01805801 n 0000 | peafowl of India and Ceylon -01806467 05 n 02 green_peafowl 0 Pavo_muticus 0 001 @ 01805801 n 0000 | peafowl of southeast Asia -01806567 05 n 01 quail 1 006 @ 01802721 n 0000 #m 07991579 n 0000 ~ 01804478 n 0000 ~ 01804921 n 0000 ~ 01806847 n 0000 %p 07647321 n 0000 | small gallinaceous game birds -01806740 05 n 02 Lofortyx 0 genus_Lofortyx 0 002 @ 01507175 n 0000 #m 01802309 n 0000 | California quail -01806847 05 n 02 California_quail 0 Lofortyx_californicus 0 001 @ 01806567 n 0000 | plump chunky bird of coastal California and Oregon -01806984 05 n 01 genus_Tragopan 0 003 @ 01507175 n 0000 #m 01802309 n 0000 %m 01807105 n 0000 | a genus of Phasianidae -01807105 05 n 01 tragopan 0 002 @ 01803078 n 0000 #m 01806984 n 0000 | brilliantly colored Asian pheasant having wattles and two fleshy processes on the head -01807265 05 n 04 Perdicidae 0 subfamily_Perdicidae 0 Perdicinae 0 subfamily_Perdicinae 0 006 @ 01504437 n 0000 #m 01802309 n 0000 %m 01807496 n 0000 %m 01807701 n 0000 %m 01807988 n 0000 %m 01808447 n 0000 | Old World partridges -01807496 05 n 01 partridge 1 007 @ 01802721 n 0000 #m 01807265 n 0000 #m 07991868 n 0000 ~ 01807828 n 0000 ~ 01808140 n 0000 ~ 01808291 n 0000 ~ 01808596 n 0000 | small Old World gallinaceous game birds -01807701 05 n 02 Perdix 0 genus_Perdix 0 003 @ 01507175 n 0000 #m 01807265 n 0000 %m 01807828 n 0000 | a genus of Perdicinae -01807828 05 n 04 Hungarian_partridge 0 grey_partridge 0 gray_partridge 0 Perdix_perdix 0 002 @ 01807496 n 0000 #m 01807701 n 0000 | common European partridge -01807988 05 n 02 Alectoris 0 genus_Alectoris 0 004 @ 01507175 n 0000 #m 01807265 n 0000 %m 01808140 n 0000 %m 01808291 n 0000 | a genus of Perdicidae -01808140 05 n 02 red-legged_partridge 0 Alectoris_ruffa 0 002 @ 01807496 n 0000 #m 01807988 n 0000 | common western European partridge with red legs -01808291 05 n 03 Greek_partridge 0 rock_partridge 0 Alectoris_graeca 0 002 @ 01807496 n 0000 #m 01807988 n 0000 | of mountainous areas of southern Europe -01808447 05 n 02 Oreortyx 0 genus_Oreortyx 0 003 @ 01507175 n 0000 #m 01807265 n 0000 %m 01808596 n 0000 | mountain quail of western United States -01808596 05 n 03 mountain_quail 0 mountain_partridge 0 Oreortyx_picta_palmeri 0 002 @ 01807496 n 0000 #m 01808447 n 0000 | California partridge; slightly larger than the California quail -01808785 05 n 04 Numididae 0 subfamily_Numididae 0 Numidinae 0 subfamily_Numidinae 0 003 @ 01504437 n 0000 #m 01802309 n 0000 %m 01808989 n 0000 | guinea fowl and related birds of Africa and Madagascar -01808989 05 n 02 Numida 0 genus_Numida 0 003 @ 01507175 n 0000 #m 01808785 n 0000 %m 01809106 n 0000 | guinea fowl -01809106 05 n 03 guinea_fowl 0 guinea 0 Numida_meleagris 0 004 @ 01789740 n 0000 #m 01808989 n 0000 ~ 01809371 n 0000 %p 07646284 n 0000 | a west African bird having dark plumage mottled with white; native to Africa but raised for food in many parts of the world -01809371 05 n 01 guinea_hen 0 001 @ 01809106 n 0000 | female guinea fowl -01809446 05 n 02 Opisthocomidae 0 family_Opisthocomidae 0 003 @ 01504437 n 0000 #m 01789064 n 0000 %m 01809592 n 0000 | comprising the hoatzins -01809592 05 n 02 Opisthocomus 0 genus_Opisthocomus 0 003 @ 01507175 n 0000 #m 01809446 n 0000 %m 01809752 n 0000 | type genus of the Opisthocomidae: hoatzins -01809752 05 n 04 hoatzin 0 hoactzin 0 stinkbird 0 Opisthocomus_hoazin 0 002 @ 01789386 n 0000 #m 01809592 n 0000 | crested ill-smelling South American bird whose young have claws on the first and second digits of the wings -01809977 05 n 02 Tinamiformes 0 order_Tinamiformes 0 003 @ 01342529 n 0000 #m 01518170 n 0000 %m 01810132 n 0000 | coextensive with the family Tinamidae -01810132 05 n 02 Tinamidae 0 family_Tinamidae 0 003 @ 01504437 n 0000 #m 01809977 n 0000 %m 01810268 n 0000 | comprising the tinamous -01810268 05 n 02 tinamou 0 partridge 4 002 @ 02153203 n 0000 #m 01810132 n 0000 | heavy-bodied small-winged South American game bird resembling a gallinaceous bird but related to the ratite birds -01810466 05 n 02 Columbiformes 0 order_Columbiformes 0 006 @ 01342529 n 0000 #m 01502262 n 0000 %m 01810700 n 0000 %m 01810946 n 0000 %m 01811682 n 0000 %m 01815431 n 0000 | sand grouse; pigeons; doves; extinct dodos and solitaires -01810700 05 n 01 columbiform_bird 0 006 @ 01789386 n 0000 #m 01810466 n 0000 ~ 01811243 n 0000 ~ 01811542 n 0000 ~ 01811909 n 0000 ~ 01815601 n 0000 | a cosmopolitan order of land birds having small heads and short legs with four unwebbed toes -01810946 05 n 02 Raphidae 0 family_Raphidae 0 004 @ 01504437 n 0000 #m 01810466 n 0000 %m 01811104 n 0000 %m 01811394 n 0000 | extinct dodos and solitaires -01811104 05 n 02 Raphus 0 genus_Raphus 0 003 @ 01507175 n 0000 #m 01810946 n 0000 %m 01811243 n 0000 | type genus of the Raphidae: dodos -01811243 05 n 02 dodo 0 Raphus_cucullatus 0 002 @ 01810700 n 0000 #m 01811104 n 0000 | extinct heavy flightless bird of Mauritius related to pigeons -01811394 05 n 02 Pezophaps 0 genus_Pezophaps 0 003 @ 01507175 n 0000 #m 01810946 n 0000 %m 01811542 n 0000 | constituted by the extinct solitaire -01811542 05 n 02 solitaire 2 Pezophaps_solitaria 0 002 @ 01810700 n 0000 #m 01811394 n 0000 | extinct flightless bird related to the dodo -01811682 05 n 02 Columbidae 0 family_Columbidae 0 008 @ 01504437 n 0000 #m 01810466 n 0000 %m 01811909 n 0000 %m 01812471 n 0000 %m 01813256 n 0000 %m 01813811 n 0000 %m 01814091 n 0000 %m 01815135 n 0000 | doves and pigeons -01811909 05 n 01 pigeon 0 010 @ 01810700 n 0000 #m 01811682 n 0000 ~ 01812187 n 0000 ~ 01812337 n 0000 ~ 01812662 n 0000 ~ 01812866 n 0000 ~ 01813088 n 0000 ~ 01814370 n 0000 ~ 01814549 n 0000 ~ 01815270 n 0000 | wild and domesticated birds having a heavy body and short legs -01812187 05 n 02 pouter_pigeon 0 pouter 0 001 @ 01811909 n 0000 | one of a breed of pigeon that enlarge their crop until their breast is puffed out -01812337 05 n 01 dove 0 004 @ 01811909 n 0000 ~ 01813385 n 0000 ~ 01813948 n 0000 ~ 01814217 n 0000 | any of numerous small pigeons -01812471 05 n 02 Columba 0 genus_Columba 0 005 @ 01507175 n 0000 #m 01811682 n 0000 %m 01812662 n 0000 %m 01812866 n 0000 %m 01813088 n 0000 | type genus of the Columbidae: typical pigeons -01812662 05 n 03 rock_dove 0 rock_pigeon 0 Columba_livia 0 002 @ 01811909 n 0000 #m 01812471 n 0000 | pale grey Eurasian pigeon having black-striped wings from which most domestic species are descended -01812866 05 n 04 band-tailed_pigeon 0 band-tail_pigeon 0 bandtail 0 Columba_fasciata 0 002 @ 01811909 n 0000 #m 01812471 n 0000 | wild pigeon of western North America; often mistaken for the now extinct passenger pigeon -01813088 05 n 04 wood_pigeon 0 ringdove 2 cushat 0 Columba_palumbus 0 002 @ 01811909 n 0000 #m 01812471 n 0000 | Eurasian pigeon with white patches on wings and neck -01813256 05 n 02 Streptopelia 0 genus_Streptopelia 0 003 @ 01507175 n 0000 #m 01811682 n 0000 %m 01813385 n 0000 | turtledoves -01813385 05 n 01 turtledove 0 004 @ 01812337 n 0000 #m 01813256 n 0000 ~ 01813532 n 0000 ~ 01813658 n 0000 | any of several Old World wild doves -01813532 05 n 01 Streptopelia_turtur 0 001 @ 01813385 n 0000 | the common European wild dove noted for its plaintive cooing -01813658 05 n 02 ringdove 1 Streptopelia_risoria 0 001 @ 01813385 n 0000 | greyish Old World turtledove with a black band around the neck; often caged -01813811 05 n 02 Stictopelia 0 genus_Stictopelia 0 003 @ 01507175 n 0000 #m 01811682 n 0000 %m 01813948 n 0000 | a genus of Columbidae -01813948 05 n 03 Australian_turtledove 0 turtledove 2 Stictopelia_cuneata 0 002 @ 01812337 n 0000 #m 01813811 n 0000 | small Australian dove -01814091 05 n 02 Zenaidura 0 genus_Zenaidura 0 003 @ 01507175 n 0000 #m 01811682 n 0000 %m 01814217 n 0000 | mourning doves -01814217 05 n 02 mourning_dove 0 Zenaidura_macroura 0 002 @ 01812337 n 0000 #m 01814091 n 0000 | wild dove of the United States having a mournful call -01814370 05 n 01 domestic_pigeon 0 005 @ 01811909 n 0000 ~ 01814620 n 0000 ~ 01814755 n 0000 ~ 01814921 n 0000 %p 07646403 n 0000 | domesticated pigeon raised for sport or food -01814549 05 n 01 squab 0 001 @ 01811909 n 0000 | an unfledged pigeon -01814620 05 n 01 fairy_swallow 0 001 @ 01814370 n 0000 | fancy domestic pigeon having blue-and-white plumage and heavily muffed feet -01814755 05 n 03 roller 2 tumbler 0 tumbler_pigeon 0 002 @ 01814370 n 0000 + 01867997 v 0201 | pigeon that executes backward somersaults in flight or on the ground -01814921 05 n 02 homing_pigeon 0 homer 0 002 @ 01814370 n 0000 ~ 01815036 n 0000 | pigeon trained to return home -01815036 05 n 01 carrier_pigeon 0 001 @ 01814921 n 0000 | a homing pigeon used to carry messages -01815135 05 n 02 Ectopistes 0 genus_Ectopistes 0 003 @ 01507175 n 0000 #m 01811682 n 0000 %m 01815270 n 0000 | a genus of Columbidae -01815270 05 n 02 passenger_pigeon 0 Ectopistes_migratorius 0 002 @ 01811909 n 0000 #m 01815135 n 0000 | gregarious North American migratory pigeon now extinct -01815431 05 n 02 Pteroclididae 0 family_Pteroclididae 0 005 @ 01504437 n 0000 #m 01810466 n 0000 %m 01815601 n 0000 %m 01815855 n 0000 %m 01816336 n 0000 | sandgrouses -01815601 05 n 02 sandgrouse 0 sand_grouse 0 005 @ 01810700 n 0000 #m 01815431 n 0000 ~ 01816017 n 0000 ~ 01816140 n 0000 ~ 01816474 n 0000 | pigeon-like bird of arid regions of the Old World having long pointed wings and tail and precocial downy young -01815855 05 n 02 Pterocles 0 genus_Pterocles 0 004 @ 01507175 n 0000 #m 01815431 n 0000 %m 01816017 n 0000 %m 01816140 n 0000 | type genus of the Pteroclididae -01816017 05 n 02 painted_sandgrouse 0 Pterocles_indicus 0 002 @ 01815601 n 0000 #m 01815855 n 0000 | sandgrouse of India -01816140 05 n 03 pin-tailed_sandgrouse 0 pin-tailed_grouse 0 Pterocles_alchata 0 002 @ 01815601 n 0000 #m 01815855 n 0000 | sandgrouse of Europe and Africa having elongated middle tail feathers -01816336 05 n 02 Syrrhaptes 0 genus_Syrrhaptes 0 003 @ 01507175 n 0000 #m 01815431 n 0000 %m 01816474 n 0000 | a genus of Pteroclididae -01816474 05 n 02 pallas's_sandgrouse 0 Syrrhaptes_paradoxus 0 002 @ 01815601 n 0000 #m 01816336 n 0000 | Eurasiatic sandgrouse with a black patch on the belly -01816635 05 n 02 Psittaciformes 0 order_Psittaciformes 0 004 @ 01342529 n 0000 #m 01502262 n 0000 %m 01816887 n 0000 %m 01817424 n 0000 | an order of birds including parrots and amazons and cockatoos and lorikeets and lories and macaws and parakeets -01816887 05 n 01 parrot 0 013 @ 01503061 n 0000 #m 01816635 n 0000 ~ 01817263 n 0000 ~ 01817346 n 0000 ~ 01817953 n 0000 ~ 01818299 n 0000 ~ 01818515 n 0000 ~ 01818832 n 0000 ~ 01819115 n 0000 ~ 01819734 n 0000 ~ 01820052 n 0000 ~ 01820348 n 0000 ~ 01821203 n 0000 | usually brightly colored zygodactyl tropical birds with short hooked beaks and the ability to mimic sounds -01817263 05 n 01 popinjay 0 001 @ 01816887 n 0000 | an archaic term for a parrot -01817346 05 n 02 poll 0 poll_parrot 0 001 @ 01816887 n 0000 | a tame parrot -01817424 05 n 02 Psittacidae 0 family_Psittacidae 0 013 @ 01504437 n 0000 #m 01816635 n 0000 %m 01817772 n 0000 %m 01818169 n 0000 %m 01818409 n 0000 %m 01818704 n 0000 %m 01818959 n 0000 %m 01819600 n 0000 %m 01819918 n 0000 %m 01820190 n 0000 %m 01821418 n 0000 %m 01821727 n 0000 %m 01822164 n 0000 | coextensive with the order Psittaciformes -01817772 05 n 02 Psittacus 0 genus_Psittacus 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01817953 n 0000 | type genus of the Psittacidae: usually restricted to the African grey -01817953 05 n 03 African_grey 0 African_gray 0 Psittacus_erithacus 0 002 @ 01816887 n 0000 #m 01817772 n 0000 | commonly domesticated grey parrot with red-and-black tail and white face; native to equatorial Africa -01818169 05 n 02 Amazona 0 genus_Amazona 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01818299 n 0000 | a genus of Psittacidae -01818299 05 n 01 amazon 0 002 @ 01816887 n 0000 #m 01818169 n 0000 | mainly green tropical American parrots -01818409 05 n 02 Ara 0 genus_Ara 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01818515 n 0000 | macaws -01818515 05 n 01 macaw 0 002 @ 01816887 n 0000 #m 01818409 n 0000 | long-tailed brilliantly colored parrot of Central America and South America; among the largest and showiest of parrots -01818704 05 n 02 Nestor 0 genus_Nestor 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01818832 n 0000 | a genus of Psittacidae -01818832 05 n 02 kea 0 Nestor_notabilis 0 002 @ 01816887 n 0000 #m 01818704 n 0000 | large brownish-green New Zealand parrot -01818959 05 n 04 Kakatoe 0 genus_Kakatoe 0 Cacatua 0 genus_Cacatua 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01819115 n 0000 | a genus of Psittacidae -01819115 05 n 01 cockatoo 0 004 @ 01816887 n 0000 #m 01818959 n 0000 ~ 01819313 n 0000 ~ 01819465 n 0000 | white or light-colored crested parrot of the Australian region; often kept as cage birds -01819313 05 n 03 sulphur-crested_cockatoo 0 Kakatoe_galerita 0 Cacatua_galerita 0 001 @ 01819115 n 0000 | white cockatoo with a yellow erectile crest -01819465 05 n 02 pink_cockatoo 0 Kakatoe_leadbeateri 0 001 @ 01819115 n 0000 | white Australian cockatoo with roseate tinged plumage -01819600 05 n 02 Nymphicus 0 genus_Nymphicus 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01819734 n 0000 | a genus of Psittacidae -01819734 05 n 04 cockateel 0 cockatiel 0 cockatoo_parrot 0 Nymphicus_hollandicus 0 002 @ 01816887 n 0000 #m 01819600 n 0000 | small grey Australian parrot with a yellow crested head -01819918 05 n 02 Agapornis 0 genus_Agapornis 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01820052 n 0000 | a genus of Psittacidae -01820052 05 n 01 lovebird 1 002 @ 01816887 n 0000 #m 01819918 n 0000 | small African parrot noted for showing affection for their mates -01820190 05 n 02 Loriinae 0 subfamily_Loriinae 0 005 @ 01504437 n 0000 #m 01817424 n 0000 %m 01820348 n 0000 %m 01820664 n 0000 %m 01820937 n 0000 | lories -01820348 05 n 01 lory 0 003 @ 01816887 n 0000 #m 01820190 n 0000 ~ 01820546 n 0000 | small brightly colored Australasian parrots having a brush-tipped tongue for feeding on nectar and soft fruits -01820546 05 n 01 lorikeet 0 003 @ 01820348 n 0000 ~ 01820801 n 0000 ~ 01821076 n 0000 | any of various small lories -01820664 05 n 02 Glossopsitta 0 genus_Glossopsitta 0 003 @ 01507175 n 0000 #m 01820190 n 0000 %m 01820801 n 0000 | a genus of Loriinae -01820801 05 n 02 varied_Lorikeet 0 Glossopsitta_versicolor 0 002 @ 01820546 n 0000 #m 01820664 n 0000 | lorikeet with a colorful coat -01820937 05 n 02 Trichoglossus 0 genus_Trichoglossus 0 003 @ 01507175 n 0000 #m 01820190 n 0000 %m 01821076 n 0000 | a genus of Loriinae -01821076 05 n 02 rainbow_lorikeet 0 Trichoglossus_moluccanus 0 002 @ 01820546 n 0000 #m 01820937 n 0000 | a kind of lorikeet -01821203 05 n 06 parakeet 0 parrakeet 0 parroket 0 paraquet 0 paroquet 0 parroquet 0 004 @ 01816887 n 0000 ~ 01821554 n 0000 ~ 01821869 n 0000 ~ 01822300 n 0000 | any of numerous small slender long-tailed parrots -01821418 05 n 02 Conuropsis 0 genus_Conuropsis 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01821554 n 0000 | a genus of Psittacidae -01821554 05 n 02 Carolina_parakeet 0 Conuropsis_carolinensis 0 002 @ 01821203 n 0000 #m 01821418 n 0000 | extinct parakeet whose range extended far into the United States -01821727 05 n 02 Melopsittacus 0 genus_Melopsittacus 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01821869 n 0000 | a genus of Psittacidae -01821869 05 n 08 budgerigar 0 budgereegah 0 budgerygah 0 budgie 0 grass_parakeet 0 lovebird 2 shell_parakeet 0 Melopsittacus_undulatus 0 002 @ 01821203 n 0000 #m 01821727 n 0000 | small Australian parakeet usually light green with black and yellow markings in the wild but bred in many colors -01822164 05 n 02 Psittacula 0 genus_Psittacula 0 003 @ 01507175 n 0000 #m 01817424 n 0000 %m 01822300 n 0000 | a genus of Psittacidae -01822300 05 n 02 ring-necked_parakeet 0 Psittacula_krameri 0 002 @ 01821203 n 0000 #m 01822164 n 0000 | African parakeet -01822423 05 n 02 Cuculiformes 0 order_Cuculiformes 0 005 @ 01342529 n 0000 #m 01502262 n 0000 %m 01822602 n 0000 %m 01822773 n 0000 %m 01825009 n 0000 | cuckoos; touracos; etc. -01822602 05 n 01 cuculiform_bird 0 004 @ 01503061 n 0000 #m 01822423 n 0000 ~ 01823013 n 0000 ~ 01825278 n 0000 | birds having zygodactyl feet (except for the touracos) -01822773 05 n 02 Cuculidae 0 family_Cuculidae 0 008 @ 01504437 n 0000 #m 01822423 n 0000 %m 01823013 n 0000 %m 01823279 n 0000 %m 01823610 n 0000 %m 01823912 n 0000 %m 01824227 n 0000 %m 01824443 n 0000 | includes cuckoo; ani; roadrunner -01823013 05 n 01 cuckoo 0 008 @ 01822602 n 0000 #m 01822773 n 0000 + 00957945 v 0101 ~ 01823414 n 0000 ~ 01823740 n 0000 ~ 01824035 n 0000 ~ 01824344 n 0000 ~ 01824575 n 0000 | any of numerous European and North American birds having pointed wings and a long tail -01823279 05 n 02 Cuculus 0 genus_Cuculus 0 003 @ 01507175 n 0000 #m 01822773 n 0000 %m 01823414 n 0000 | type genus of the Cuculidae -01823414 05 n 02 European_cuckoo 0 Cuculus_canorus 0 002 @ 01823013 n 0000 #m 01823279 n 0000 | common cuckoo of Europe having a distinctive two-note call; lays eggs in the nests of other birds -01823610 05 n 02 Coccyzus 0 genus_Coccyzus 0 003 @ 01507175 n 0000 #m 01822773 n 0000 %m 01823740 n 0000 | a genus of Cuculidae -01823740 05 n 02 black-billed_cuckoo 0 Coccyzus_erythropthalmus 0 002 @ 01823013 n 0000 #m 01823610 n 0000 | North American cuckoo; builds a nest and rears its own young -01823912 05 n 02 Geococcyx 0 genus_Geococcyx 0 003 @ 01507175 n 0000 #m 01822773 n 0000 %m 01824035 n 0000 | roadrunners -01824035 05 n 03 roadrunner 0 chaparral_cock 0 Geococcyx_californianus 0 002 @ 01823013 n 0000 #m 01823912 n 0000 | speedy largely terrestrial bird found from California and Mexico to Texas -01824227 05 n 02 Crotophaga 0 genus_Crotophaga 0 003 @ 01507175 n 0000 #m 01822773 n 0000 %m 01824344 n 0000 | ani -01824344 05 n 01 ani 0 002 @ 01823013 n 0000 #m 01824227 n 0000 | black tropical American cuckoo -01824443 05 n 02 Centropus 0 genus_Centropus 0 003 @ 01507175 n 0000 #m 01822773 n 0000 %m 01824575 n 0000 | a genus of Cuculidae -01824575 05 n 01 coucal 0 004 @ 01823013 n 0000 #m 01824443 n 0000 ~ 01824749 n 0000 ~ 01824862 n 0000 | Old World ground-living cuckoo having a long dagger-like hind claw -01824749 05 n 02 crow_pheasant 0 Centropus_sinensis 0 001 @ 01824575 n 0000 | common coucal of India and China -01824862 05 n 03 pheasant_coucal 0 pheasant_cuckoo 0 Centropus_phasianinus 0 001 @ 01824575 n 0000 | Australian bird with a tail like a pheasant -01825009 05 n 02 Musophagidae 0 family_Musophagidae 0 004 @ 01504437 n 0000 #m 01822423 n 0000 %m 01825155 n 0000 %m 01825278 n 0000 | touracos -01825155 05 n 02 Musophaga 0 genus_Musophaga 0 002 @ 01507175 n 0000 #m 01825009 n 0000 | type genus of the Musophagidae -01825278 05 n 04 touraco 0 turaco 0 turacou 0 turakoo 0 002 @ 01822602 n 0000 #m 01825009 n 0000 | large brightly crested bird of Africa -01825417 05 n 02 Coraciiformes 0 order_Coraciiformes 0 011 @ 01342529 n 0000 #m 01502262 n 0000 %m 01825930 n 0000 %m 01826223 n 0000 %m 01826998 n 0000 %m 01828714 n 0000 %m 01829143 n 0000 %m 01829602 n 0000 %m 01830183 n 0000 %m 01830623 n 0000 %m 01831078 n 0000 | rollers; kingfishers; hornbills; hoopoes; motmots; bee eaters; todies -01825758 05 n 02 Picariae 0 order_Picariae 0 002 @ 01342529 n 0000 #m 01502262 n 0000 | term used in some classifications as nearly equivalent to the order Coraciiformes -01825930 05 n 01 coraciiform_bird 0 010 @ 01503061 n 0000 #m 01825417 n 0000 ~ 01826364 n 0000 ~ 01827403 n 0000 ~ 01828970 n 0000 ~ 01829413 n 0000 ~ 01829869 n 0000 ~ 01830479 n 0000 ~ 01830915 n 0000 ~ 01831360 n 0000 | chiefly short-legged arboreal nonpasserine birds that nest in holes -01826223 05 n 02 Coraciidae 0 family_Coraciidae 0 004 @ 01504437 n 0000 #m 01825417 n 0000 %m 01826364 n 0000 %m 01826542 n 0000 | rollers -01826364 05 n 01 roller 1 004 @ 01825930 n 0000 #m 01826223 n 0000 ~ 01826680 n 0000 ~ 01826844 n 0000 | Old World bird that tumbles or rolls in flight; related to kingfishers -01826542 05 n 02 Coracias 0 genus_Coracias 0 003 @ 01507175 n 0000 #m 01826223 n 0000 %m 01826680 n 0000 | type genus of the Coraciidae -01826680 05 n 02 European_roller 0 Coracias_garrulus 0 002 @ 01826364 n 0000 #m 01826542 n 0000 | common European blue-and-green roller with a reddish-brown back -01826844 05 n 01 ground_roller 0 001 @ 01826364 n 0000 | Madagascan roller with terrestrial and crepuscular habits that feeds on e.g. insects and worms -01826998 05 n 02 Alcedinidae 0 family_Alcedinidae 0 007 @ 01504437 n 0000 #m 01825417 n 0000 %m 01827403 n 0000 %m 01827658 n 0000 %m 01827948 n 0000 %m 01828267 n 0000 %m 01828397 n 0000 | kingfishers -01827202 05 n 01 halcyon 1 001 @ 09484664 n 0000 | a mythical bird said to breed at the time of the winter solstice in a nest floating on the sea and to have the power of calming the winds and waves -01827403 05 n 01 kingfisher 0 005 @ 01825930 n 0000 #m 01826998 n 0000 ~ 01827793 n 0000 ~ 01828096 n 0000 ~ 01828556 n 0000 | nonpasserine large-headed bird with a short tail and long sharp bill; usually crested and bright-colored; feed mostly on fish -01827658 05 n 02 Alcedo 0 genus_Alcedo 0 003 @ 01507175 n 0000 #m 01826998 n 0000 %m 01827793 n 0000 | type genus of the Alcedinidae -01827793 05 n 02 Eurasian_kingfisher 0 Alcedo_atthis 0 002 @ 01827403 n 0000 #m 01827658 n 0000 | small kingfisher with greenish-blue and orange plumage -01827948 05 n 02 Ceryle 0 genus_Ceryle 0 003 @ 01507175 n 0000 #m 01826998 n 0000 %m 01828096 n 0000 | a genus of birds of the family Alcedinidae -01828096 05 n 02 belted_kingfisher 0 Ceryle_alcyon 0 002 @ 01827403 n 0000 #m 01827948 n 0000 | greyish-blue North American kingfisher with a chestnut band on its chest -01828267 05 n 02 Dacelo 0 genus_Dacelo 0 003 @ 01507175 n 0000 #m 01826998 n 0000 %m 01828556 n 0000 | Australasian kingfishers -01828397 05 n 02 Halcyon 0 genus_Halcyon 0 002 @ 01507175 n 0000 #m 01826998 n 0000 | a large kingfisher widely distributed in warmer parts of the Old World -01828556 05 n 03 kookaburra 0 laughing_jackass 1 Dacelo_gigas 0 002 @ 01827403 n 0000 #m 01828267 n 0000 | Australian kingfisher having a loud cackling cry -01828714 05 n 02 Meropidae 0 family_Meropidae 0 004 @ 01504437 n 0000 #m 01825417 n 0000 %m 01828856 n 0000 %m 01828970 n 0000 | bee-eaters -01828856 05 n 02 Merops 0 genus_Merops 0 002 @ 01507175 n 0000 #m 01828714 n 0000 | type genus of the Meropidae -01828970 05 n 01 bee_eater 0 002 @ 01825930 n 0000 #m 01828714 n 0000 | colorful chiefly tropical Old World bird having a strong graceful flight; feeds on especially bees -01829143 05 n 02 Bucerotidae 0 family_Bucerotidae 0 004 @ 01504437 n 0000 #m 01825417 n 0000 %m 01829288 n 0000 %m 01829413 n 0000 | hornbills -01829288 05 n 02 Buceros 0 genus_Buceros 0 002 @ 01507175 n 0000 #m 01829143 n 0000 | type genus of the family Bucerotidae -01829413 05 n 01 hornbill 0 002 @ 01825930 n 0000 #m 01829143 n 0000 | bird of tropical Africa and Asia having a very large bill surmounted by a bony protuberance; related to kingfishers -01829602 05 n 02 Upupidae 0 family_Upupidae 0 004 @ 01504437 n 0000 #m 01825417 n 0000 %m 01829739 n 0000 %m 01829869 n 0000 | hoopoes -01829739 05 n 02 Upupa 0 genus_Upupa 0 003 @ 01507175 n 0000 #m 01829602 n 0000 %m 01830042 n 0000 | type genus of the Upupidae -01829869 05 n 02 hoopoe 0 hoopoo 0 003 @ 01825930 n 0000 #m 01829602 n 0000 ~ 01830042 n 0000 | any of several crested Old World birds with a slender downward-curved bill -01830042 05 n 02 Euopean_hoopoe 0 Upupa_epops 0 002 @ 01829869 n 0000 #m 01829739 n 0000 | pinkish-brown hoopoe with black-and-white wings -01830183 05 n 02 Phoeniculidae 0 family_Phoeniculidae 0 003 @ 01504437 n 0000 #m 01825417 n 0000 %m 01830316 n 0000 | wood hoopoes -01830316 05 n 02 Phoeniculus 0 genus_Phoeniculus 0 003 @ 01507175 n 0000 #m 01830183 n 0000 %m 01830479 n 0000 | type and only genus of the family Phoeniculidae -01830479 05 n 01 wood_hoopoe 0 002 @ 01825930 n 0000 #m 01830316 n 0000 | tropical African bird having metallic blackish plumage but no crest -01830623 05 n 02 Momotidae 0 family_Momotidae 0 004 @ 01504437 n 0000 #m 01825417 n 0000 %m 01830799 n 0000 %m 01830915 n 0000 | a family of birds of the order Coraciiformes -01830799 05 n 02 Momotus 0 genus_Momotus 0 002 @ 01507175 n 0000 #m 01830623 n 0000 | type genus of the Momotidae -01830915 05 n 02 motmot 0 momot 0 002 @ 01825930 n 0000 #m 01830623 n 0000 | tropical American bird resembling a blue jay and having greenish and bluish plumage -01831078 05 n 02 Todidae 0 family_Todidae 0 003 @ 01504437 n 0000 #m 01825417 n 0000 %m 01831231 n 0000 | a family of birds of the order Coraciiformes -01831231 05 n 02 Todus 0 genus_Todus 0 003 @ 01507175 n 0000 #m 01831078 n 0000 %m 01831360 n 0000 | type genus of the Todidae -01831360 05 n 01 tody 0 002 @ 01825930 n 0000 #m 01831231 n 0000 | tiny insectivorous West Indian bird having red-and-green plumage and a long straight bill -01831519 05 n 02 Apodiformes 0 order_Apodiformes 0 006 @ 01342529 n 0000 #m 01502262 n 0000 %m 01831712 n 0000 %m 01831930 n 0000 %m 01833283 n 0000 %m 01833619 n 0000 | swifts; hummingbirds -01831712 05 n 01 apodiform_bird 0 005 @ 01503061 n 0000 #m 01831519 n 0000 ~ 01832167 n 0000 ~ 01833415 n 0000 ~ 01833805 n 0000 | nonpasserine bird having long wings and weak feet; spends much of its time in flight -01831930 05 n 02 Apodidae 0 family_Apodidae 0 006 @ 01504437 n 0000 #m 01831519 n 0000 %m 01832167 n 0000 %m 01832381 n 0000 %m 01832684 n 0000 %m 01832979 n 0000 | swifts; in former classifications included in the order Coraciiformes -01832167 05 n 01 swift 0 006 @ 01831712 n 0000 #m 01831930 n 0000 + 01833112 n 0101 ~ 01832493 n 0000 ~ 01832813 n 0000 ~ 01833112 n 0000 | a small bird that resembles a swallow and is noted for its rapid flight -01832381 05 n 02 Apus 0 genus_Apus 0 003 @ 01507175 n 0000 #m 01831930 n 0000 %m 01832493 n 0000 | type genus -01832493 05 n 02 European_swift 0 Apus_apus 0 002 @ 01832167 n 0000 #m 01832381 n 0000 | common European bird with a shrieking call that nests chiefly about eaves of buildings or on cliffs -01832684 05 n 02 Chateura 0 genus_Chateura 0 003 @ 01507175 n 0000 #m 01831930 n 0000 %m 01832813 n 0000 | a genus of Apodidae -01832813 05 n 03 chimney_swift 0 chimney_swallow 2 Chateura_pelagica 0 002 @ 01832167 n 0000 #m 01832684 n 0000 | American swift that nests in e.g. unused chimneys -01832979 05 n 02 Collocalia 0 genus_Collocalia 0 003 @ 01507175 n 0000 #m 01831930 n 0000 %m 01833112 n 0000 | a genus of Apodidae -01833112 05 n 02 swiftlet 0 Collocalia_inexpectata 0 003 @ 01832167 n 0000 #m 01832979 n 0000 + 01832167 n 0101 | swift of eastern Asia; produces the edible bird's nest -01833283 05 n 02 Hemiprocnidae 0 family_Hemiprocnidae 0 003 @ 01504437 n 0000 #m 01831519 n 0000 %m 01833415 n 0000 | tree swifts -01833415 05 n 02 tree_swift 0 crested_swift 0 002 @ 01831712 n 0000 #m 01833283 n 0000 | birds of southeast Asia and East Indies differing from true swifts in having upright crests and nesting in trees -01833619 05 n 02 Trochilidae 0 family_Trochilidae 0 006 @ 01504437 n 0000 #m 01831519 n 0000 %m 01833805 n 0000 %m 01834039 n 0000 %m 01834284 n 0000 %m 01834412 n 0000 | hummingbirds -01833805 05 n 01 hummingbird 0 004 @ 01831712 n 0000 #m 01833619 n 0000 ~ 01834177 n 0000 ~ 01834540 n 0000 | tiny American bird having brilliant iridescent plumage and long slender bills; wings are specialized for vibrating flight -01834039 05 n 02 Archilochus 0 genus_Archilochus 0 003 @ 01507175 n 0000 #m 01833619 n 0000 %m 01834177 n 0000 | a genus of Trochilidae -01834177 05 n 01 Archilochus_colubris 0 002 @ 01833805 n 0000 #m 01834039 n 0000 | a kind of hummingbird -01834284 05 n 02 Chalcostigma 0 genus_Chalcostigma 0 003 @ 01507175 n 0000 #m 01833619 n 0000 %m 01834540 n 0000 | thornbills -01834412 05 n 02 Ramphomicron 0 genus_Ramphomicron 0 003 @ 01507175 n 0000 #m 01833619 n 0000 %m 01834540 n 0000 | thornbills -01834540 05 n 01 thornbill 1 003 @ 01833805 n 0000 #m 01834284 n 0000 #m 01834412 n 0000 | any of various South American hummingbirds with a sharp pointed bill -01834702 05 n 02 Caprimulgiformes 0 order_Caprimulgiformes 0 006 @ 01342529 n 0000 #m 01502262 n 0000 %m 01834918 n 0000 %m 01835087 n 0000 %m 01836809 n 0000 %m 01837230 n 0000 | goatsuckers; frogmouths; oilbirds -01834918 05 n 01 caprimulgiform_bird 0 005 @ 01503061 n 0000 #m 01834702 n 0000 ~ 01835276 n 0000 ~ 01837072 n 0000 ~ 01837526 n 0000 | long-winged nonpasserine birds -01835087 05 n 02 Caprimulgidae 0 family_Caprimulgidae 0 006 @ 01504437 n 0000 #m 01834702 n 0000 %m 01835276 n 0000 %m 01835584 n 0000 %m 01836246 n 0000 %m 01836527 n 0000 | goatsuckers -01835276 05 n 03 goatsucker 0 nightjar 0 caprimulgid 0 007 @ 01834918 n 0000 #m 01835087 n 0000 ~ 01835769 n 0000 ~ 01835918 n 0000 ~ 01836087 n 0000 ~ 01836384 n 0000 ~ 01836673 n 0000 | mainly crepuscular or nocturnal nonpasserine birds with mottled greyish-brown plumage and large eyes; feed on insects -01835584 05 n 02 Caprimulgus 0 genus_Caprimulgus 0 005 @ 01507175 n 0000 #m 01835087 n 0000 %m 01835769 n 0000 %m 01835918 n 0000 %m 01836087 n 0000 | type genus of the Caprimulgidae -01835769 05 n 03 European_goatsucker 0 European_nightjar 0 Caprimulgus_europaeus 0 002 @ 01835276 n 0000 #m 01835584 n 0000 | Old World goatsucker -01835918 05 n 02 chuck-will's-widow 0 Caprimulgus_carolinensis 0 002 @ 01835276 n 0000 #m 01835584 n 0000 | large whippoorwill-like bird of the southern United States -01836087 05 n 02 whippoorwill 0 Caprimulgus_vociferus 0 002 @ 01835276 n 0000 #m 01835584 n 0000 | American nocturnal goatsucker with grey-and-white plumage -01836246 05 n 02 Chordeiles 0 genus_Chordeiles 0 003 @ 01507175 n 0000 #m 01835087 n 0000 %m 01836384 n 0000 | a genus of Caprimulgidae -01836384 05 n 03 nighthawk 0 bullbat 0 mosquito_hawk 1 002 @ 01835276 n 0000 #m 01836246 n 0000 | mainly nocturnal North American goatsucker -01836527 05 n 02 Phalaenoptilus 0 genus_Phalaenoptilus 0 003 @ 01507175 n 0000 #m 01835087 n 0000 %m 01836673 n 0000 | a genus of Caprimulgidae -01836673 05 n 02 poorwill 0 Phalaenoptilus_nuttallii 0 002 @ 01835276 n 0000 #m 01836527 n 0000 | goatsucker of western North America -01836809 05 n 02 Podargidae 0 family_Podargidae 0 004 @ 01504437 n 0000 #m 01834702 n 0000 %m 01836953 n 0000 %m 01837072 n 0000 | frogmouths -01836953 05 n 02 Podargus 0 genus_Podargus 0 002 @ 01507175 n 0000 #m 01836809 n 0000 | type genus of the Podargidae -01837072 05 n 01 frogmouth 0 002 @ 01834918 n 0000 #m 01836809 n 0000 | insectivorous bird of Australia and southeastern Asia having a wide frog-like mouth -01837230 05 n 02 Steatornithidae 0 family_Steatornithidae 0 003 @ 01504437 n 0000 #m 01834702 n 0000 %m 01837363 n 0000 | oilbirds -01837363 05 n 02 Steatornis 0 genus_Steatornis 0 003 @ 01507175 n 0000 #m 01837230 n 0000 %m 01837526 n 0000 | type and sole genus of the family Steatornithidae -01837526 05 n 03 oilbird 0 guacharo 0 Steatornis_caripensis 0 002 @ 01834918 n 0000 #m 01837363 n 0000 | nocturnal fruit-eating bird of South America that has fatty young yielding an oil that is used instead of butter -01837746 05 n 02 Piciformes 0 order_Piciformes 0 009 @ 01342529 n 0000 #m 01502262 n 0000 %m 01838038 n 0000 %m 01838326 n 0000 %m 01842111 n 0000 %m 01842380 n 0000 %m 01842655 n 0000 %m 01842942 n 0000 %m 01843238 n 0000 | woodpeckers; jacamars; puffbirds; barbets; honey guides; toucans -01838038 05 n 01 piciform_bird 0 008 @ 01503061 n 0000 #m 01837746 n 0000 ~ 01838598 n 0000 ~ 01842235 n 0000 ~ 01842504 n 0000 ~ 01842788 n 0000 ~ 01843065 n 0000 ~ 01843383 n 0000 | any of numerous nonpasserine insectivorous climbing birds usually having strong bills for boring wood -01838326 05 n 02 Picidae 0 family_Picidae 0 011 @ 01504437 n 0000 #m 01837746 n 0000 %m 01838598 n 0000 %m 01838961 n 0000 %m 01839221 n 0000 %m 01839470 n 0000 %m 01840278 n 0000 %m 01840643 n 0000 %m 01840968 n 0000 %m 01841569 n 0000 %m 01841815 n 0000 | woodpeckers -01838598 05 n 03 woodpecker 0 peckerwood 0 pecker 0 010 @ 01838038 n 0000 #m 01838326 n 0000 ~ 01839086 n 0000 ~ 01839330 n 0000 ~ 01839598 n 0000 ~ 01840412 n 0000 ~ 01840775 n 0000 ~ 01841102 n 0000 ~ 01841679 n 0000 ~ 01841943 n 0000 | bird with strong claws and a stiff tail adapted for climbing and a hard chisel-like bill for boring into wood for insects -01838961 05 n 02 Picus 0 genus_Picus 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01839086 n 0000 | type genus of Picidae -01839086 05 n 02 green_woodpecker 0 Picus_viridis 0 002 @ 01838598 n 0000 #m 01838961 n 0000 | woodpecker of Europe and western Asia -01839221 05 n 02 Picoides 0 genus_Picoides 0 002 @ 01507175 n 0000 #m 01838326 n 0000 | a genus of Picidae -01839330 05 n 01 downy_woodpecker 0 001 @ 01838598 n 0000 | small North American woodpecker with black and white plumage and a small bill -01839470 05 n 02 Colaptes 0 genus_Colaptes 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01839598 n 0000 | a genus of Picidae -01839598 05 n 01 flicker 0 005 @ 01838598 n 0000 #m 01839470 n 0000 ~ 01839750 n 0000 ~ 01839949 n 0000 ~ 01840120 n 0000 | North American woodpecker -01839750 05 n 03 yellow-shafted_flicker 0 Colaptes_auratus 0 yellowhammer 2 001 @ 01839598 n 0000 | large flicker of eastern North America with a red neck and yellow undersurface to wings and tail -01839949 05 n 02 gilded_flicker 0 Colaptes_chrysoides 0 001 @ 01839598 n 0000 | southwestern United States bird like the yellow-shafted flicker but lacking the red neck -01840120 05 n 02 red-shafted_flicker 0 Colaptes_caper_collaris 0 001 @ 01839598 n 0000 | western United States bird with red undersurface to wings and tail -01840278 05 n 02 Campephilus 0 genus_Campephilus 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01840412 n 0000 | a genus of Picidae -01840412 05 n 03 ivorybill 0 ivory-billed_woodpecker 0 Campephilus_principalis 0 002 @ 01838598 n 0000 #m 01840278 n 0000 | large black-and-white woodpecker of southern United States and Cuba having an ivory bill; nearly extinct -01840643 05 n 02 Melanerpes 0 genus_Melanerpes 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01840775 n 0000 | a genus of Picidae -01840775 05 n 03 redheaded_woodpecker 0 redhead 1 Melanerpes_erythrocephalus 0 002 @ 01838598 n 0000 #m 01840643 n 0000 | black-and-white North American woodpecker having a red head and neck -01840968 05 n 02 Sphyrapicus 0 genus_Sphyrapicus 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01841102 n 0000 | a genus of Picidae -01841102 05 n 01 sapsucker 0 004 @ 01838598 n 0000 #m 01840968 n 0000 ~ 01841288 n 0000 ~ 01841441 n 0000 | small American woodpecker that feeds on sap from e.g. apple and maple trees -01841288 05 n 02 yellow-bellied_sapsucker 0 Sphyrapicus_varius 0 001 @ 01841102 n 0000 | eastern North American sapsucker having a pale yellow abdomen -01841441 05 n 02 red-breasted_sapsucker 0 Sphyrapicus_varius_ruber 0 001 @ 01841102 n 0000 | western North American sapsucker -01841569 05 n 02 Jynx 0 genus_Jynx 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01841679 n 0000 | wrynecks -01841679 05 n 01 wryneck 0 002 @ 01838598 n 0000 #m 01841569 n 0000 | Old World woodpecker with a peculiar habit of twisting the neck -01841815 05 n 02 Picumnus 0 genus_Picumnus 0 003 @ 01507175 n 0000 #m 01838326 n 0000 %m 01841943 n 0000 | a genus of Picidae -01841943 05 n 01 piculet 0 002 @ 01838598 n 0000 #m 01841815 n 0000 | small woodpeckers of South America and Africa and East Indies having soft rounded tail feathers -01842111 05 n 02 Capitonidae 0 family_Capitonidae 0 003 @ 01504437 n 0000 #m 01837746 n 0000 %m 01842235 n 0000 | barbets -01842235 05 n 01 barbet 0 002 @ 01838038 n 0000 #m 01842111 n 0000 | small brightly colored stout-billed tropical bird having short weak wings -01842380 05 n 02 Bucconidae 0 family_Bucconidae 0 003 @ 01504437 n 0000 #m 01837746 n 0000 %m 01842504 n 0000 | puffbirds -01842504 05 n 01 puffbird 0 002 @ 01838038 n 0000 #m 01842380 n 0000 | brownish tropical American bird having a large head with fluffed out feathers -01842655 05 n 02 Indicatoridae 0 family_Indicatoridae 0 003 @ 01504437 n 0000 #m 01837746 n 0000 %m 01842788 n 0000 | honey guides -01842788 05 n 01 honey_guide 0 002 @ 01838038 n 0000 #m 01842655 n 0000 | small bird of tropical Africa and Asia; feeds on beeswax and honey and larvae -01842942 05 n 02 Galbulidae 0 family_Galbulidae 0 003 @ 01504437 n 0000 #m 01837746 n 0000 %m 01843065 n 0000 | jacamars -01843065 05 n 01 jacamar 0 002 @ 01838038 n 0000 #m 01842942 n 0000 | tropical American insectivorous bird having a long sharp bill and iridescent green or bronze plumage -01843238 05 n 02 Ramphastidae 0 family_Ramphastidae 0 004 @ 01504437 n 0000 #m 01837746 n 0000 %m 01843383 n 0000 %m 01843576 n 0000 | toucans -01843383 05 n 01 toucan 0 003 @ 01838038 n 0000 #m 01843238 n 0000 ~ 01843719 n 0000 | brilliantly colored arboreal fruit-eating bird of tropical America having a very large thin-walled beak -01843576 05 n 02 Aulacorhyncus 0 genus_Aulacorhyncus 0 003 @ 01507175 n 0000 #m 01843238 n 0000 %m 01843719 n 0000 | a genus of Ramphastidae -01843719 05 n 01 toucanet 0 002 @ 01843383 n 0000 #m 01843576 n 0000 | small toucan -01843805 05 n 02 Trogoniformes 0 order_Trogoniformes 0 003 @ 01342529 n 0000 #m 01502262 n 0000 %m 01843932 n 0000 | trogons -01843932 05 n 02 Trogonidae 0 family_Trogonidae 0 005 @ 01504437 n 0000 #m 01843805 n 0000 %m 01844125 n 0000 %m 01844231 n 0000 %m 01844414 n 0000 | coextensive with the order Trogoniformes -01844125 05 n 01 genus_Trogon 0 002 @ 01507175 n 0000 #m 01843932 n 0000 | type genus of the Trogonidae -01844231 05 n 01 trogon 0 003 @ 01503061 n 0000 #m 01843932 n 0000 ~ 01844551 n 0000 | forest bird of warm regions of the New World having brilliant lustrous plumage and long tails -01844414 05 n 02 Pharomacrus 0 genus_Pharomacrus 0 003 @ 01507175 n 0000 #m 01843932 n 0000 %m 01844551 n 0000 | a genus of Trogonidae -01844551 05 n 02 quetzal 0 quetzal_bird 0 003 @ 01844231 n 0000 #m 01844414 n 0000 ~ 01844746 n 0000 | large trogon of Central America and South America having golden-green and scarlet plumage -01844746 05 n 03 resplendent_quetzel 0 resplendent_trogon 0 Pharomacrus_mocino 0 001 @ 01844551 n 0000 | very rare Central American bird; the national bird of Guatemala -01844917 05 n 01 aquatic_bird 0 006 @ 01503061 n 0000 ~ 01845132 n 0000 ~ 01858441 n 0000 ~ 02000954 n 0000 ~ 02016358 n 0000 ~ 02021795 n 0000 | wading and swimming and diving birds of either fresh or salt water -01845132 05 n 03 waterfowl 0 water_bird 0 waterbird 0 003 @ 01844917 n 0000 ~ 01845477 n 0000 ~ 01860497 n 0000 | freshwater aquatic bird -01845272 05 n 02 Anseriformes 0 order_Anseriformes 0 006 @ 01342529 n 0000 #m 01502262 n 0000 %m 01845477 n 0000 %m 01845627 n 0000 %m 01846156 n 0000 %m 01860337 n 0000 | ducks; geese; swans; screamers -01845477 05 n 01 anseriform_bird 0 004 @ 01845132 n 0000 #m 01845272 n 0000 ~ 01846331 n 0000 ~ 01855672 n 0000 | chiefly web-footed swimming birds -01845627 05 n 02 Anatidae 0 family_Anatidae 0 020 @ 01504437 n 0000 #m 01845272 n 0000 %m 01846331 n 0000 %m 01847565 n 0000 %m 01849348 n 0000 %m 01849747 n 0000 %m 01850035 n 0000 %m 01850676 n 0000 %m 01851996 n 0000 %m 01852544 n 0000 %m 01853072 n 0000 %m 01853379 n 0000 %m 01854047 n 0000 %m 01855672 n 0000 %m 01856225 n 0000 %m 01857171 n 0000 %m 01858023 n 0000 %m 01858162 n 0000 %m 01858441 n 0000 %m 01858989 n 0000 | swimming birds having heavy short-legged bodies and bills with a horny tip: swans; geese; ducks -01846156 05 n 02 Anseres 0 suborder_Anseres 0 002 @ 01342529 n 0000 #m 01845272 n 0000 | used in some especially older classifications; coextensive with the family Anatidae -01846331 05 n 01 duck 0 029 @ 01845477 n 0000 #m 01845627 n 0000 + 01847170 n 0101 ~ 01847000 n 0000 ~ 01847089 n 0000 ~ 01847170 n 0000 ~ 01847253 n 0000 ~ 01847407 n 0000 ~ 01847806 n 0000 ~ 01847978 n 0000 ~ 01848123 n 0000 ~ 01848648 n 0000 ~ 01848976 n 0000 ~ 01849157 n 0000 ~ 01849466 n 0000 ~ 01849863 n 0000 ~ 01850192 n 0000 ~ 01850373 n 0000 ~ 01850873 n 0000 ~ 01851038 n 0000 ~ 01851207 n 0000 ~ 01851375 n 0000 ~ 01851895 n 0000 ~ 01852142 n 0000 ~ 01852400 n 0000 ~ 01852671 n 0000 ~ 01852861 n 0000 %p 01896735 n 0000 %p 07646578 n 0000 | small wild or domesticated web-footed broad-billed swimming bird usually having a depressed body and short legs -01847000 05 n 01 drake 0 001 @ 01846331 n 0000 | adult male of a wild or domestic duck -01847089 05 n 01 quack-quack 0 001 @ 01846331 n 0000 | child's word for a duck -01847170 05 n 01 duckling 0 002 @ 01846331 n 0000 + 01846331 n 0101 | young duck -01847253 05 n 01 diving_duck 0 002 @ 01846331 n 0000 ! 01847407 n 0101 | any of various ducks of especially bays and estuaries that dive for their food -01847407 05 n 02 dabbling_duck 0 dabbler 0 002 @ 01846331 n 0000 ! 01847253 n 0101 | any of numerous shallow-water ducks that feed by upending and dabbling -01847565 05 n 02 Anas 0 genus_Anas 0 008 @ 01507175 n 0000 #m 01845627 n 0000 %m 01847806 n 0000 %m 01847978 n 0000 %m 01848123 n 0000 %m 01848648 n 0000 %m 01848976 n 0000 %m 01849157 n 0000 | type genus of the Anatidae: freshwater ducks -01847806 05 n 02 mallard 0 Anas_platyrhynchos 0 002 @ 01846331 n 0000 #m 01847565 n 0000 | wild dabbling duck from which domestic ducks are descended; widely distributed -01847978 05 n 02 black_duck 0 Anas_rubripes 0 002 @ 01846331 n 0000 #m 01847565 n 0000 | a dusky duck of northeastern United States and Canada -01848123 05 n 01 teal 0 005 @ 01846331 n 0000 #m 01847565 n 0000 ~ 01848323 n 0000 ~ 01848453 n 0000 ~ 01848555 n 0000 | any of various small short-necked dabbling river ducks of Europe and America -01848323 05 n 03 greenwing 0 green-winged_teal 0 Anas_crecca 0 001 @ 01848123 n 0000 | common teal of Eurasia and North America -01848453 05 n 03 bluewing 0 blue-winged_teal 0 Anas_discors 0 001 @ 01848123 n 0000 | American teal -01848555 05 n 02 garganey 0 Anas_querquedula 0 001 @ 01848123 n 0000 | small Eurasian teal -01848648 05 n 03 widgeon 0 wigeon 0 Anas_penelope 0 003 @ 01846331 n 0000 #m 01847565 n 0000 ~ 01848840 n 0000 | freshwater duck of Eurasia and northern Africa related to mallards and teals -01848840 05 n 03 American_widgeon 0 baldpate 0 Anas_americana 0 001 @ 01848648 n 0000 | a widgeon the male of which has a white crown -01848976 05 n 04 shoveler 0 shoveller 0 broadbill 2 Anas_clypeata 0 002 @ 01846331 n 0000 #m 01847565 n 0000 | freshwater duck of the northern hemisphere having a broad flat bill -01849157 05 n 03 pintail 1 pin-tailed_duck 0 Anas_acuta 0 002 @ 01846331 n 0000 #m 01847565 n 0000 | long-necked river duck of the Old and New Worlds having elongated central tail feathers -01849348 05 n 02 Tadorna 0 genus_Tadorna 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01849466 n 0000 | sheldrakes -01849466 05 n 01 sheldrake 1 003 @ 01846331 n 0000 #m 01849348 n 0000 ~ 01849676 n 0000 | Old World gooselike duck slightly larger than a mallard with variegated mostly black-and-white plumage and a red bill -01849676 05 n 01 shelduck 0 001 @ 01849466 n 0000 | female sheldrake -01849747 05 n 02 Oxyura 0 genus_Oxyura 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01849863 n 0000 | ruddy duck -01849863 05 n 02 ruddy_duck 0 Oxyura_jamaicensis 0 002 @ 01846331 n 0000 #m 01849747 n 0000 | reddish-brown stiff-tailed duck of North America and northern South America -01850035 05 n 02 Bucephala 0 genus_Bucephala 0 004 @ 01507175 n 0000 #m 01845627 n 0000 %m 01850192 n 0000 %m 01850373 n 0000 | buffleheads and goldeneyes -01850192 05 n 04 bufflehead 0 butterball 0 dipper 1 Bucephela_albeola 0 002 @ 01846331 n 0000 #m 01850035 n 0000 | small North American diving duck; males have bushy head plumage -01850373 05 n 03 goldeneye 1 whistler 2 Bucephela_clangula 0 003 @ 01846331 n 0000 #m 01850035 n 0000 ~ 01850553 n 0000 | large-headed swift-flying diving duck of Arctic regions -01850553 05 n 02 Barrow's_goldeneye 0 Bucephala_islandica 0 001 @ 01850373 n 0000 | North American goldeneye diving duck -01850676 05 n 02 Aythya 0 genus_Aythya 0 006 @ 01507175 n 0000 #m 01845627 n 0000 %m 01850873 n 0000 %m 01851038 n 0000 %m 01851207 n 0000 %m 01851375 n 0000 | canvasback; redhead; pochard; etc. -01850873 05 n 03 canvasback 0 canvasback_duck 0 Aythya_valisineria 0 002 @ 01846331 n 0000 #m 01850676 n 0000 | North American wild duck valued for sport and food -01851038 05 n 02 pochard 0 Aythya_ferina 0 002 @ 01846331 n 0000 #m 01850676 n 0000 | heavy-bodied Old World diving duck having a grey-and-black body and reddish head -01851207 05 n 02 redhead 2 Aythya_americana 0 002 @ 01846331 n 0000 #m 01850676 n 0000 | North American diving duck with a grey-and-black body and reddish-brown head -01851375 05 n 04 scaup 0 scaup_duck 0 bluebill 0 broadbill 3 004 @ 01846331 n 0000 #m 01850676 n 0000 ~ 01851573 n 0000 ~ 01851731 n 0000 | diving ducks of North America having a bluish-grey bill -01851573 05 n 02 greater_scaup 0 Aythya_marila 0 001 @ 01851375 n 0000 | large scaup of North America having a greenish iridescence on the head of the male -01851731 05 n 04 lesser_scaup 0 lesser_scaup_duck 0 lake_duck 0 Aythya_affinis 0 001 @ 01851375 n 0000 | common scaup of North America; males have purplish heads -01851895 05 n 01 wild_duck 0 001 @ 01846331 n 0000 | an undomesticated duck (especially a mallard) -01851996 05 n 02 Aix 0 genus_Aix 0 004 @ 01507175 n 0000 #m 01845627 n 0000 %m 01852142 n 0000 %m 01852400 n 0000 | wood duck and mandarin duck -01852142 05 n 04 wood_duck 0 summer_duck 0 wood_widgeon 0 Aix_sponsa 0 003 @ 01846331 n 0000 #m 01851996 n 0000 ~ 01852329 n 0000 | showy North American duck that nests in hollow trees -01852329 05 n 01 wood_drake 0 001 @ 01852142 n 0000 | male wood duck -01852400 05 n 02 mandarin_duck 0 Aix_galericulata 0 002 @ 01846331 n 0000 #m 01851996 n 0000 | showy crested Asiatic duck; often domesticated -01852544 05 n 02 Cairina 0 genus_Cairina 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01852671 n 0000 | a genus of Anatidae -01852671 05 n 03 muscovy_duck 0 musk_duck 0 Cairina_moschata 0 002 @ 01846331 n 0000 #m 01852544 n 0000 | large crested wild duck of Central America and South America; widely domesticated -01852861 05 n 01 sea_duck 0 005 @ 01846331 n 0000 ~ 01853195 n 0000 ~ 01853498 n 0000 ~ 01853870 n 0000 ~ 01854415 n 0000 | any of various large diving ducks found along the seacoast: eider; scoter; merganser -01853072 05 n 02 Somateria 0 genus_Somateria 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01853195 n 0000 | eider ducks -01853195 05 n 02 eider 0 eider_duck 0 003 @ 01852861 n 0000 #m 01853072 n 0000 %p 01896844 n 0000 | duck of the northern hemisphere much valued for the fine soft down of the females -01853379 05 n 02 Melanitta 0 genus_Melanitta 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01853498 n 0000 | scoters -01853498 05 n 02 scoter 0 scooter 0 003 @ 01852861 n 0000 #m 01853379 n 0000 ~ 01853666 n 0000 | large black diving duck of northern parts of the northern hemisphere -01853666 05 n 02 common_scoter 0 Melanitta_nigra 0 001 @ 01853498 n 0000 | a variety of scoter -01853763 05 n 02 Clangula 0 genus_Clangula 0 002 @ 01507175 n 0000 %m 01853870 n 0000 | a genus of ducks -01853870 05 n 03 old_squaw 0 oldwife 1 Clangula_hyemalis 0 002 @ 01852861 n 0000 #m 01853763 n 0000 | a common long-tailed sea duck of the northern parts of the United States -01854047 05 n 02 Merginae 0 subfamily_Merginae 0 004 @ 01504437 n 0000 #m 01845627 n 0000 %m 01854223 n 0000 %m 01855343 n 0000 | mergansers and closely related diving birds -01854223 05 n 02 Mergus 0 genus_Mergus 0 007 @ 01507175 n 0000 #m 01854047 n 0000 %m 01854415 n 0000 %m 01854700 n 0000 %m 01854838 n 0000 %m 01855032 n 0000 %m 01855188 n 0000 | mergansers -01854415 05 n 04 merganser 0 fish_duck 0 sawbill 0 sheldrake 2 007 @ 01852861 n 0000 #m 01854223 n 0000 ~ 01854700 n 0000 ~ 01854838 n 0000 ~ 01855032 n 0000 ~ 01855188 n 0000 ~ 01855476 n 0000 | large crested fish-eating diving duck having a slender hooked bill with serrated edges -01854700 05 n 02 goosander 0 Mergus_merganser 0 002 @ 01854415 n 0000 #m 01854223 n 0000 | common merganser of Europe and North America -01854838 05 n 02 American_merganser 0 Mergus_merganser_americanus 0 002 @ 01854415 n 0000 #m 01854223 n 0000 | common North American diving duck considered a variety of the European goosander -01855032 05 n 02 red-breasted_merganser 0 Mergus_serrator 0 002 @ 01854415 n 0000 #m 01854223 n 0000 | widely distributed merganser of America and Europe -01855188 05 n 02 smew 0 Mergus_albellus 0 002 @ 01854415 n 0000 #m 01854223 n 0000 | smallest merganser and most expert diver; found in northern Eurasia -01855343 05 n 02 Lophodytes 0 genus_Lophodytes 0 003 @ 01507175 n 0000 #m 01854047 n 0000 %m 01855476 n 0000 | a genus of Merginae -01855476 05 n 03 hooded_merganser 0 hooded_sheldrake 0 Lophodytes_cucullatus 0 002 @ 01854415 n 0000 #m 01855343 n 0000 | small North American duck with a high circular crest on the male's head -01855672 05 n 01 goose 0 014 @ 01845477 n 0000 #m 01845627 n 0000 #m 07992116 n 0000 + 01856072 n 0101 ~ 01856072 n 0000 ~ 01856155 n 0000 ~ 01856380 n 0000 ~ 01856553 n 0000 ~ 01856890 n 0000 ~ 01857325 n 0000 ~ 01857632 n 0000 ~ 01857851 n 0000 %p 01896960 n 0000 %p 07646821 n 0000 | web-footed long-necked typically gregarious migratory aquatic birds usually larger and less aquatic than ducks -01856072 05 n 01 gosling 0 002 @ 01855672 n 0000 + 01855672 n 0101 | young goose -01856155 05 n 01 gander 0 001 @ 01855672 n 0000 | mature male goose -01856225 05 n 02 Anser 0 genus_Anser 0 005 @ 01507175 n 0000 #m 01845627 n 0000 %m 01856380 n 0000 %m 01856553 n 0000 %m 01856748 n 0000 | typical geese -01856380 05 n 02 Chinese_goose 0 Anser_cygnoides 0 002 @ 01855672 n 0000 #m 01856225 n 0000 | very large wild goose of northeast Asia; interbreeds freely with the greylag -01856553 05 n 05 greylag 0 graylag 0 greylag_goose 0 graylag_goose 0 Anser_anser 0 002 @ 01855672 n 0000 #m 01856225 n 0000 | common grey wild goose of Europe; ancestor of many domestic breeds -01856748 05 n 02 Chen 0 subgenus_Chen 0 003 @ 01507175 n 0000 #m 01856225 n 0000 %m 01856890 n 0000 | wild goose having white adult plumage -01856890 05 n 02 blue_goose 0 Chen_caerulescens 0 003 @ 01855672 n 0000 #m 01856748 n 0000 ~ 01857079 n 0000 | North American wild goose having dark plumage in summer but white in winter -01857079 05 n 01 snow_goose 0 001 @ 01856890 n 0000 | blue goose in the white color phase -01857171 05 n 02 Branta 0 genus_Branta 0 005 @ 01507175 n 0000 #m 01845627 n 0000 %m 01857325 n 0000 %m 01857632 n 0000 %m 01857851 n 0000 | wild geese -01857325 05 n 04 brant 0 brant_goose 0 brent 0 brent_goose 0 003 @ 01855672 n 0000 #m 01857171 n 0000 ~ 01857512 n 0000 | small dark geese that breed in the north and migrate southward -01857512 05 n 02 common_brant_goose 0 Branta_bernicla 0 001 @ 01857325 n 0000 | the best known variety of brant goose -01857632 05 n 04 honker 0 Canada_goose 0 Canadian_goose 0 Branta_canadensis 0 003 @ 01855672 n 0000 #m 01857171 n 0000 + 01053339 v 0101 | common greyish-brown wild goose of North America with a loud, trumpeting call -01857851 05 n 03 barnacle_goose 0 barnacle 2 Branta_leucopsis 0 002 @ 01855672 n 0000 #m 01857171 n 0000 | European goose smaller than the brant; breeds in the far north -01858023 05 n 02 Anserinae 0 subfamily_Anserinae 0 002 @ 01504437 n 0000 #m 01845627 n 0000 | used in some classifications for the swans -01858162 05 n 01 genus_Coscoroba 0 003 @ 01507175 n 0000 #m 01845627 n 0000 %m 01858281 n 0000 | a genus of Anatidae -01858281 05 n 01 coscoroba 0 002 @ 01858441 n 0000 #m 01858162 n 0000 | large white South American bird intermediate in some respects between ducks and swans -01858441 05 n 01 swan 0 012 @ 01844917 n 0000 #m 01845627 n 0000 ~ 01858281 n 0000 ~ 01858780 n 0000 ~ 01858845 n 0000 ~ 01858906 n 0000 ~ 01859190 n 0000 ~ 01859325 n 0000 ~ 01859496 n 0000 ~ 01860002 n 0000 ~ 01860187 n 0000 %p 01897053 n 0000 | stately heavy-bodied aquatic bird with very long neck and usually white plumage as adult -01858780 05 n 01 cob 1 001 @ 01858441 n 0000 | adult male swan -01858845 05 n 01 pen 0 001 @ 01858441 n 0000 | female swan -01858906 05 n 01 cygnet 0 002 @ 01858441 n 0000 @ 01613615 n 0000 | a young swan -01858989 05 n 02 Cygnus 0 genus_Cygnus 0 007 @ 01507175 n 0000 #m 01845627 n 0000 %m 01859190 n 0000 %m 01859325 n 0000 %m 01859496 n 0000 %m 01860002 n 0000 %m 01860187 n 0000 | a genus of Anatidae -01859190 05 n 02 mute_swan 0 Cygnus_olor 0 002 @ 01858441 n 0000 #m 01858989 n 0000 | soundless Eurasian swan; commonly domesticated -01859325 05 n 03 whooper 0 whooper_swan 0 Cygnus_cygnus 0 003 @ 01858441 n 0000 #m 01858989 n 0000 + 00914215 v 0101 | common Old World swan noted for its whooping call -01859496 05 n 02 tundra_swan 0 Cygnus_columbianus 0 004 @ 01858441 n 0000 #m 01858989 n 0000 ~ 01859689 n 0000 ~ 01859852 n 0000 | swan that nests in tundra regions of the New and Old Worlds -01859689 05 n 02 whistling_swan 0 Cygnus_columbianus_columbianus 0 001 @ 01859496 n 0000 | North American subspecies of tundra swan having a soft whistling note -01859852 05 n 02 Bewick's_swan 0 Cygnus_columbianus_bewickii 0 001 @ 01859496 n 0000 | Eurasian subspecies of tundra swan; smaller than the whooper -01860002 05 n 03 trumpeter 2 trumpeter_swan 0 Cygnus_buccinator 0 002 @ 01858441 n 0000 #m 01858989 n 0000 | large pure white wild swan of western North America having a sonorous cry -01860187 05 n 02 black_swan 0 Cygnus_atratus 0 002 @ 01858441 n 0000 #m 01858989 n 0000 | large Australian swan having black plumage and a red bill -01860337 05 n 02 Anhimidae 0 family_Anhimidae 0 005 @ 01504437 n 0000 #m 01845272 n 0000 %m 01860497 n 0000 %m 01860713 n 0000 %m 01861025 n 0000 | screamers -01860497 05 n 01 screamer 0 006 @ 01845132 n 0000 #m 01860337 n 0000 + 00912833 v 0102 + 00913065 v 0106 ~ 01860864 n 0000 ~ 01861148 n 0000 | gooselike aquatic bird of South America having a harsh trumpeting call -01860713 05 n 02 Anhima 0 genus_Anhima 0 003 @ 01507175 n 0000 #m 01860337 n 0000 %m 01860864 n 0000 | type genus of the Anhimidae; horned screamers -01860864 05 n 02 horned_screamer 0 Anhima_cornuta 0 002 @ 01860497 n 0000 #m 01860713 n 0000 | screamer having a hornlike process projecting from the forehead -01861025 05 n 02 Chauna 0 genus_Chauna 0 003 @ 01507175 n 0000 #m 01860337 n 0000 %m 01861148 n 0000 | crested screamers -01861148 05 n 01 crested_screamer 0 003 @ 01860497 n 0000 #m 01861025 n 0000 ~ 01861330 n 0000 | distinguished from the horned screamer by a feathery crest on the back of the head -01861330 05 n 02 chaja 0 Chauna_torquata 0 001 @ 01861148 n 0000 | largest crested screamer; native to southern Brazil and Argentina -01861465 05 n 02 Mammalia 0 class_Mammalia 0 010 @ 08103777 n 0000 #m 01471070 n 0000 %m 01321854 n 0000 %m 01861778 n 0000 %m 01871406 n 0000 %m 01873622 n 0000 %m 01873850 n 0000 %m 01886220 n 0000 %m 02370525 n 0000 %m 02371125 n 0000 | warm-blooded vertebrates characterized by mammary glands in the female -01861778 05 n 02 mammal 0 mammalian 0 022 @ 01471682 n 0000 #m 01861465 n 0000 + 02832272 a 0201 -c 00751170 a 0000 -c 00751353 a 0000 -c 02137806 a 0000 -c 02138257 a 0000 -c 02539034 a 0000 -c 01472303 n 0000 -c 01472638 n 0000 -c 01472939 n 0000 -c 01473393 n 0000 ~ 01862399 n 0000 ~ 01871265 n 0000 ~ 01871543 n 0000 ~ 01873982 n 0000 ~ 01886756 n 0000 %p 01898731 n 0000 ~ 02153809 n 0000 %p 05254393 n 0000 -c 05389310 n 0000 -c 01429322 v 0000 | any warm-blooded vertebrate having the skin more or less covered with hair; young are born alive except for the small subclass of monotremes and nourished with milk -01862399 05 n 01 female_mammal 0 004 @ 01320872 n 0000 @ 01861778 n 0000 %p 02370265 n 0000 %p 05554189 n 0000 | animals that nourish their young with milk -01862557 05 n 01 mammal_family 0 116 @ 08107499 n 0000 #m 01471070 n 0000 ~ 01872094 n 0000 ~ 01873007 n 0000 ~ 01874784 n 0000 ~ 01875717 n 0000 ~ 01876180 n 0000 ~ 01876843 n 0000 ~ 01879983 n 0000 ~ 01880937 n 0000 ~ 01882948 n 0000 ~ 01883212 n 0000 ~ 01885724 n 0000 ~ 01889328 n 0000 ~ 01890274 n 0000 ~ 01891438 n 0000 ~ 01893535 n 0000 ~ 01894040 n 0000 ~ 01894670 n 0000 ~ 02063516 n 0000 ~ 02064154 n 0000 ~ 02065932 n 0000 ~ 02066950 n 0000 ~ 02067941 n 0000 ~ 02068735 n 0000 ~ 02071905 n 0000 ~ 02072209 n 0000 ~ 02073532 n 0000 ~ 02074004 n 0000 ~ 02076535 n 0000 ~ 02079170 n 0000 ~ 02081282 n 0000 ~ 02082498 n 0000 ~ 02083038 n 0000 ~ 02116959 n 0000 ~ 02120692 n 0000 ~ 02131418 n 0000 ~ 02134589 n 0000 ~ 02142064 n 0000 ~ 02143293 n 0000 ~ 02143594 n 0000 ~ 02144442 n 0000 ~ 02145084 n 0000 ~ 02149136 n 0000 ~ 02150306 n 0000 ~ 02323715 n 0000 ~ 02328270 n 0000 ~ 02330830 n 0000 ~ 02331479 n 0000 ~ 02334849 n 0000 ~ 02335349 n 0000 ~ 02343487 n 0000 ~ 02346823 n 0000 ~ 02347865 n 0000 ~ 02348405 n 0000 ~ 02350845 n 0000 ~ 02351518 n 0000 ~ 02352390 n 0000 ~ 02353529 n 0000 ~ 02355711 n 0000 ~ 02362025 n 0000 ~ 02362721 n 0000 ~ 02363681 n 0000 ~ 02364221 n 0000 ~ 02365244 n 0000 ~ 02365672 n 0000 ~ 02366702 n 0000 ~ 02367131 n 0000 ~ 02368563 n 0000 ~ 02369012 n 0000 ~ 02371647 n 0000 ~ 02372397 n 0000 ~ 02373601 n 0000 ~ 02391782 n 0000 ~ 02393300 n 0000 ~ 02394822 n 0000 ~ 02397251 n 0000 ~ 02398252 n 0000 ~ 02400139 n 0000 ~ 02401305 n 0000 ~ 02429123 n 0000 ~ 02429695 n 0000 ~ 02435689 n 0000 ~ 02436813 n 0000 ~ 02438774 n 0000 ~ 02440705 n 0000 ~ 02444500 n 0000 ~ 02445564 n 0000 ~ 02447220 n 0000 ~ 02454119 n 0000 ~ 02456776 n 0000 ~ 02457586 n 0000 ~ 02458356 n 0000 ~ 02459001 n 0000 ~ 02459808 n 0000 ~ 02461556 n 0000 ~ 02471467 n 0000 ~ 02479896 n 0000 ~ 02482820 n 0000 ~ 02483915 n 0000 ~ 02489288 n 0000 ~ 02490030 n 0000 ~ 02491590 n 0000 ~ 02494866 n 0000 ~ 02497408 n 0000 ~ 02497832 n 0000 ~ 02498355 n 0000 ~ 02499990 n 0000 ~ 02501275 n 0000 ~ 02502212 n 0000 ~ 02503313 n 0000 ~ 02505646 n 0000 ~ 02506466 n 0000 ~ 02507337 n 0000 ~ 02508458 n 0000 ~ 02510065 n 0000 | a family of mammals -01864707 05 n 01 mammal_genus 0 361 @ 08108972 n 0000 #m 01471070 n 0000 ~ 01872244 n 0000 ~ 01872635 n 0000 ~ 01873144 n 0000 ~ 01875165 n 0000 ~ 01875880 n 0000 ~ 01876535 n 0000 ~ 01877407 n 0000 ~ 01878203 n 0000 ~ 01878500 n 0000 ~ 01878803 n 0000 ~ 01879095 n 0000 ~ 01879379 n 0000 ~ 01879701 n 0000 ~ 01880355 n 0000 ~ 01880570 n 0000 ~ 01881416 n 0000 ~ 01881717 n 0000 ~ 01881991 n 0000 ~ 01882372 n 0000 ~ 01882607 n 0000 ~ 01883762 n 0000 ~ 01884348 n 0000 ~ 01884703 n 0000 ~ 01885032 n 0000 ~ 01885367 n 0000 ~ 01885856 n 0000 ~ 01889740 n 0000 ~ 01890033 n 0000 ~ 01890411 n 0000 ~ 01890718 n 0000 ~ 01891145 n 0000 ~ 01891865 n 0000 ~ 01892271 n 0000 ~ 01892876 n 0000 ~ 01893294 n 0000 ~ 01893666 n 0000 ~ 01894381 n 0000 ~ 01894803 n 0000 ~ 02063846 n 0000 ~ 02064608 n 0000 ~ 02065599 n 0000 ~ 02066086 n 0000 ~ 02067100 n 0000 ~ 02067462 n 0000 ~ 02068408 n 0000 ~ 02069271 n 0000 ~ 02069569 n 0000 ~ 02070311 n 0000 ~ 02070923 n 0000 ~ 02071173 n 0000 ~ 02071506 n 0000 ~ 02072355 n 0000 ~ 02072665 n 0000 ~ 02073679 n 0000 ~ 02074214 n 0000 ~ 02074542 n 0000 ~ 02077023 n 0000 ~ 02077533 n 0000 ~ 02078159 n 0000 ~ 02078436 n 0000 ~ 02078882 n 0000 ~ 02079706 n 0000 ~ 02080022 n 0000 ~ 02080291 n 0000 ~ 02080586 n 0000 ~ 02080934 n 0000 ~ 02081423 n 0000 ~ 02082632 n 0000 ~ 02083863 n 0000 ~ 02115775 n 0000 ~ 02116079 n 0000 ~ 02116322 n 0000 ~ 02116630 n 0000 ~ 02117369 n 0000 ~ 02117772 n 0000 ~ 02118058 n 0000 ~ 02118854 n 0000 ~ 02119961 n 0000 ~ 02120387 n 0000 ~ 02121234 n 0000 ~ 02126951 n 0000 ~ 02128120 n 0000 ~ 02130190 n 0000 ~ 02130795 n 0000 ~ 02131076 n 0000 ~ 02131942 n 0000 ~ 02132974 n 0000 ~ 02133512 n 0000 ~ 02133902 n 0000 ~ 02134240 n 0000 ~ 02135486 n 0000 ~ 02135726 n 0000 ~ 02135981 n 0000 ~ 02136623 n 0000 ~ 02136901 n 0000 ~ 02137172 n 0000 ~ 02137428 n 0000 ~ 02138042 n 0000 ~ 02138323 n 0000 ~ 02139914 n 0000 ~ 02140357 n 0000 ~ 02140719 n 0000 ~ 02142295 n 0000 ~ 02142575 n 0000 ~ 02142993 n 0000 ~ 02143759 n 0000 ~ 02144110 n 0000 ~ 02144792 n 0000 ~ 02145767 n 0000 ~ 02146064 n 0000 ~ 02146526 n 0000 ~ 02147034 n 0000 ~ 02147452 n 0000 ~ 02147747 n 0000 ~ 02148377 n 0000 ~ 02148698 n 0000 ~ 02149297 n 0000 ~ 02150016 n 0000 ~ 02150730 n 0000 ~ 02151108 n 0000 ~ 02324717 n 0000 ~ 02325211 n 0000 ~ 02326237 n 0000 ~ 02328662 n 0000 ~ 02331960 n 0000 ~ 02332315 n 0000 ~ 02332606 n 0000 ~ 02333368 n 0000 ~ 02334079 n 0000 ~ 02334337 n 0000 ~ 02334609 n 0000 ~ 02335007 n 0000 ~ 02336129 n 0000 ~ 02336451 n 0000 ~ 02337480 n 0000 ~ 02337774 n 0000 ~ 02338029 n 0000 ~ 02338319 n 0000 ~ 02338592 n 0000 ~ 02339768 n 0000 ~ 02340521 n 0000 ~ 02340813 n 0000 ~ 02341108 n 0000 ~ 02341805 n 0000 ~ 02342109 n 0000 ~ 02342413 n 0000 ~ 02342727 n 0000 ~ 02343187 n 0000 ~ 02343633 n 0000 ~ 02344006 n 0000 ~ 02344785 n 0000 ~ 02345213 n 0000 ~ 02345471 n 0000 ~ 02345890 n 0000 ~ 02347140 n 0000 ~ 02347443 n 0000 ~ 02348036 n 0000 ~ 02349040 n 0000 ~ 02349730 n 0000 ~ 02349980 n 0000 ~ 02350537 n 0000 ~ 02351212 n 0000 ~ 02351686 n 0000 ~ 02352175 n 0000 ~ 02352804 n 0000 ~ 02353037 n 0000 ~ 02353297 n 0000 ~ 02353709 n 0000 ~ 02354470 n 0000 ~ 02356108 n 0000 ~ 02357280 n 0000 ~ 02357741 n 0000 ~ 02359204 n 0000 ~ 02359775 n 0000 ~ 02360135 n 0000 ~ 02360643 n 0000 ~ 02361222 n 0000 ~ 02362420 n 0000 ~ 02362862 n 0000 ~ 02363511 n 0000 ~ 02363818 n 0000 ~ 02364377 n 0000 ~ 02364989 n 0000 ~ 02365356 n 0000 ~ 02365848 n 0000 ~ 02366203 n 0000 ~ 02366453 n 0000 ~ 02366825 n 0000 ~ 02367360 n 0000 ~ 02367678 n 0000 ~ 02367993 n 0000 ~ 02368280 n 0000 ~ 02368687 n 0000 ~ 02369170 n 0000 ~ 02369424 n 0000 ~ 02371801 n 0000 ~ 02372813 n 0000 ~ 02373843 n 0000 ~ 02375592 n 0000 ~ 02376016 n 0000 ~ 02376303 n 0000 ~ 02392282 n 0000 ~ 02392710 n 0000 ~ 02393024 n 0000 ~ 02393445 n 0000 ~ 02395244 n 0000 ~ 02396667 n 0000 ~ 02396970 n 0000 ~ 02397377 n 0000 ~ 02398386 n 0000 ~ 02401661 n 0000 ~ 02408217 n 0000 ~ 02408903 n 0000 ~ 02409369 n 0000 ~ 02409702 n 0000 ~ 02410313 n 0000 ~ 02411075 n 0000 ~ 02411427 n 0000 ~ 02415971 n 0000 ~ 02416410 n 0000 ~ 02418341 n 0000 ~ 02418648 n 0000 ~ 02418934 n 0000 ~ 02419217 n 0000 ~ 02419515 n 0000 ~ 02420389 n 0000 ~ 02420675 n 0000 ~ 02420994 n 0000 ~ 02421308 n 0000 ~ 02421612 n 0000 ~ 02421962 n 0000 ~ 02422249 n 0000 ~ 02422561 n 0000 ~ 02422860 n 0000 ~ 02423465 n 0000 ~ 02423787 n 0000 ~ 02425393 n 0000 ~ 02425756 n 0000 ~ 02426054 n 0000 ~ 02426339 n 0000 ~ 02426634 n 0000 ~ 02427337 n 0000 ~ 02427958 n 0000 ~ 02428229 n 0000 ~ 02428653 n 0000 ~ 02429276 n 0000 ~ 02430929 n 0000 ~ 02432139 n 0000 ~ 02432867 n 0000 ~ 02433205 n 0000 ~ 02433426 n 0000 ~ 02433796 n 0000 ~ 02434598 n 0000 ~ 02434834 n 0000 ~ 02435099 n 0000 ~ 02435386 n 0000 ~ 02436067 n 0000 ~ 02436514 n 0000 ~ 02436993 n 0000 ~ 02437825 n 0000 ~ 02438452 n 0000 ~ 02438897 n 0000 ~ 02439286 n 0000 ~ 02441723 n 0000 ~ 02443683 n 0000 ~ 02444103 n 0000 ~ 02444647 n 0000 ~ 02445276 n 0000 ~ 02446014 n 0000 ~ 02446512 n 0000 ~ 02446888 n 0000 ~ 02447591 n 0000 ~ 02447896 n 0000 ~ 02448200 n 0000 ~ 02448502 n 0000 ~ 02448754 n 0000 ~ 02449060 n 0000 ~ 02449464 n 0000 ~ 02449582 n 0000 ~ 02449921 n 0000 ~ 02450992 n 0000 ~ 02451292 n 0000 ~ 02454657 n 0000 ~ 02454999 n 0000 ~ 02455310 n 0000 ~ 02455584 n 0000 ~ 02455887 n 0000 ~ 02456147 n 0000 ~ 02456505 n 0000 ~ 02457249 n 0000 ~ 02457756 n 0000 ~ 02458675 n 0000 ~ 02459313 n 0000 ~ 02460275 n 0000 ~ 02460684 n 0000 ~ 02461014 n 0000 ~ 02461701 n 0000 ~ 02472012 n 0000 ~ 02475821 n 0000 ~ 02476074 n 0000 ~ 02477647 n 0000 ~ 02477890 n 0000 ~ 02478416 n 0000 ~ 02478539 n 0000 ~ 02478662 n 0000 ~ 02478990 n 0000 ~ 02479205 n 0000 ~ 02479482 n 0000 ~ 02480346 n 0000 ~ 02480673 n 0000 ~ 02481629 n 0000 ~ 02483224 n 0000 ~ 02483564 n 0000 ~ 02484813 n 0000 ~ 02485865 n 0000 ~ 02486138 n 0000 ~ 02486565 n 0000 ~ 02486787 n 0000 ~ 02487217 n 0000 ~ 02488149 n 0000 ~ 02488578 n 0000 ~ 02489060 n 0000 ~ 02490435 n 0000 ~ 02490686 n 0000 ~ 02490964 n 0000 ~ 02491906 n 0000 ~ 02492240 n 0000 ~ 02492536 n 0000 ~ 02492833 n 0000 ~ 02493109 n 0000 ~ 02493390 n 0000 ~ 02493673 n 0000 ~ 02493974 n 0000 ~ 02494257 n 0000 ~ 02495099 n 0000 ~ 02495446 n 0000 ~ 02497550 n 0000 ~ 02497983 n 0000 ~ 02498620 n 0000 ~ 02498888 n 0000 ~ 02499178 n 0000 ~ 02499434 n 0000 ~ 02499700 n 0000 ~ 02500144 n 0000 ~ 02500472 n 0000 ~ 02501432 n 0000 ~ 02502357 n 0000 ~ 02503868 n 0000 ~ 02504323 n 0000 ~ 02504635 n 0000 ~ 02505342 n 0000 ~ 02505809 n 0000 ~ 02506630 n 0000 ~ 02507863 n 0000 ~ 02508615 n 0000 ~ 02509071 n 0000 ~ 02509405 n 0000 ~ 02509694 n 0000 ~ 02510240 n 0000 | a genus of mammals -01871265 05 n 01 tusker 0 002 @ 01861778 n 0000 %p 01465713 n 0000 | any mammal with prominent tusks (especially an elephant or wild boar) -01871406 05 n 02 Prototheria 0 subclass_Prototheria 0 003 @ 08103777 n 0000 #m 01861465 n 0000 %m 01871699 n 0000 | echidnas; platypus -01871543 05 n 01 prototherian 0 002 @ 01861778 n 0000 ~ 01871875 n 0000 | primitive oviparous mammals found only in Australia and Tasmania and New Guinea -01871699 05 n 02 Monotremata 0 order_Monotremata 0 004 @ 01342529 n 0000 #m 01871406 n 0000 %m 01872094 n 0000 %m 01873007 n 0000 | coextensive with the subclass Prototheria -01871875 05 n 02 monotreme 0 egg-laying_mammal 0 004 @ 01871543 n 0000 ~ 01872401 n 0000 ~ 01872772 n 0000 ~ 01873310 n 0000 | the most primitive mammals comprising the only extant members of the subclass Prototheria -01872094 05 n 02 Tachyglossidae 0 family_Tachyglossidae 0 004 @ 01862557 n 0000 #m 01871699 n 0000 %m 01872244 n 0000 %m 01872635 n 0000 | echidnas -01872244 05 n 02 Tachyglossus 0 genus_Tachyglossus 0 003 @ 01864707 n 0000 #m 01872094 n 0000 %m 01872401 n 0000 | type genus of the family Tachyglossidae -01872401 05 n 03 echidna 1 spiny_anteater 1 anteater 2 002 @ 01871875 n 0000 #m 01872244 n 0000 | a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to Australia -01872635 05 n 02 Zaglossus 0 genus_Zaglossus 0 003 @ 01864707 n 0000 #m 01872094 n 0000 %m 01872772 n 0000 | a genus of Tachyglossidae -01872772 05 n 03 echidna 2 spiny_anteater 2 anteater 3 002 @ 01871875 n 0000 #m 01872635 n 0000 | a burrowing monotreme mammal covered with spines and having a long snout and claws for hunting ants and termites; native to New Guinea -01873007 05 n 02 Ornithorhynchidae 0 family_Ornithorhynchidae 0 003 @ 01862557 n 0000 #m 01871699 n 0000 %m 01873144 n 0000 | platypus -01873144 05 n 02 Ornithorhynchus 0 genus_Ornithorhynchus 0 003 @ 01864707 n 0000 #m 01873007 n 0000 %m 01873310 n 0000 | type genus of the family Ornithorhynchidae -01873310 05 n 05 platypus 0 duckbill 1 duckbilled_platypus 0 duck-billed_platypus 0 Ornithorhynchus_anatinus 0 002 @ 01871875 n 0000 #m 01873144 n 0000 | small densely furred aquatic monotreme of Australia and Tasmania having a broad bill and tail and webbed feet; only species in the family Ornithorhynchidae -01873622 05 n 02 Pantotheria 0 subclass_Pantotheria 0 002 @ 08103777 n 0000 #m 01861465 n 0000 | generalized extinct mammals widespread during the Jurassic; commonly conceded to be ancestral to marsupial and placental mammals -01873850 05 n 02 Metatheria 0 subclass_Metatheria 0 003 @ 08103777 n 0000 #m 01861465 n 0000 %m 01874126 n 0000 | pouched animals -01873982 05 n 01 metatherian 0 002 @ 01861778 n 0000 ~ 01874434 n 0000 | primitive pouched mammals found mainly in Australia and the Americas -01874126 05 n 02 Marsupialia 0 order_Marsupialia 0 011 @ 01342529 n 0000 #m 01873850 n 0000 %m 01874434 n 0000 %m 01874784 n 0000 %m 01875717 n 0000 %m 01876180 n 0000 %m 01876843 n 0000 %m 01880937 n 0000 %m 01882948 n 0000 %m 01883212 n 0000 %m 01885724 n 0000 | coextensive with the subclass Metatheria -01874434 05 n 02 marsupial 0 pouched_mammal 0 010 @ 01873982 n 0000 #m 01874126 n 0000 ~ 01874928 n 0000 ~ 01876034 n 0000 ~ 01876326 n 0000 ~ 01877134 n 0000 ~ 01881171 n 0000 ~ 01883070 n 0000 ~ 01883513 n 0000 ~ 01886045 n 0000 | mammals of which the females have a pouch (the marsupium) containing the teats where the young are fed and carried -01874784 05 n 02 Didelphidae 0 family_Didelphidae 0 004 @ 01862557 n 0000 #m 01874126 n 0000 %m 01874928 n 0000 %m 01875165 n 0000 | opossums -01874928 05 n 02 opossum 1 possum 1 004 @ 01874434 n 0000 #m 01874784 n 0000 ~ 01875313 n 0000 ~ 01875610 n 0000 | nocturnal arboreal marsupial having a naked prehensile tail found from southern North America to northern South America -01875165 05 n 02 Didelphis 0 genus_Didelphis 0 003 @ 01864707 n 0000 #m 01874784 n 0000 %m 01875610 n 0000 | type genus of the family Didelphidae -01875313 05 n 03 common_opossum 0 Didelphis_virginiana 0 Didelphis_marsupialis 0 001 @ 01874928 n 0000 | omnivorous opossum of the eastern United States; noted for feigning death when in danger; esteemed as food in some areas; considered same species as the crab-eating opossum of South America -01875610 05 n 01 crab-eating_opossum 0 002 @ 01874928 n 0000 #m 01875165 n 0000 | South American opossum -01875717 05 n 02 Caenolestidae 0 family_Caenolestidae 0 003 @ 01862557 n 0000 #m 01874126 n 0000 %m 01875880 n 0000 | small marsupials of southern South America -01875880 05 n 02 Caenolestes 0 genus_Caenolestes 0 003 @ 01864707 n 0000 #m 01875717 n 0000 %m 01876034 n 0000 | type genus of the family Caenolestidae -01876034 05 n 01 opossum_rat 0 002 @ 01874434 n 0000 #m 01875880 n 0000 | terrestrial marsupials of southern South America that resemble shrews -01876180 05 n 02 Peramelidae 0 family_Peramelidae 0 004 @ 01862557 n 0000 #m 01874126 n 0000 %m 01876326 n 0000 %m 01876535 n 0000 | bandicoots -01876326 05 n 01 bandicoot 0 003 @ 01874434 n 0000 #m 01876180 n 0000 ~ 01876667 n 0000 | any of various agile ratlike terrestrial marsupials of Australia and adjacent islands; insectivorous and herbivorous -01876535 05 n 02 Macrotis 0 genus_Macrotis 0 003 @ 01864707 n 0000 #m 01876180 n 0000 %m 01876667 n 0000 | a genus of Peramelidae -01876667 05 n 04 rabbit-eared_bandicoot 0 rabbit_bandicoot 0 bilby 0 Macrotis_lagotis 0 002 @ 01876326 n 0000 #m 01876535 n 0000 | bandicoot with leathery ears like a rabbit -01876843 05 n 02 Macropodidae 0 family_Macropodidae 0 011 @ 01862557 n 0000 #m 01874126 n 0000 %m 01877134 n 0000 %m 01877407 n 0000 %m 01878203 n 0000 %m 01878500 n 0000 %m 01878803 n 0000 %m 01879095 n 0000 %m 01879379 n 0000 %m 01879701 n 0000 %m 01879983 n 0000 | kangaroos; wallabies -01877134 05 n 01 kangaroo 0 006 @ 01874434 n 0000 #m 01876843 n 0000 ~ 01877606 n 0000 ~ 01877812 n 0000 ~ 01879837 n 0000 ~ 01880152 n 0000 | any of several herbivorous leaping marsupials of Australia and New Guinea having large powerful hind legs and a long thick tail -01877407 05 n 02 Macropus 0 genus_Macropus 0 004 @ 01864707 n 0000 #m 01876843 n 0000 %m 01877606 n 0000 %m 01878061 n 0000 | type genus of the family Macropodidae: typical kangaroos and wallabies -01877606 05 n 03 giant_kangaroo 0 great_grey_kangaroo 0 Macropus_giganteus 0 002 @ 01877134 n 0000 #m 01877407 n 0000 | very large greyish-brown Australian kangaroo formerly abundant in open wooded areas -01877812 05 n 02 wallaby 0 brush_kangaroo 0 007 @ 01877134 n 0000 ~ 01878061 n 0000 ~ 01878335 n 0000 ~ 01878639 n 0000 ~ 01878929 n 0000 ~ 01879217 n 0000 ~ 01879509 n 0000 | any of various small or medium-sized kangaroos; often brightly colored -01878061 05 n 02 common_wallaby 0 Macropus_agiles 0 002 @ 01877812 n 0000 #m 01877407 n 0000 | a small wallaby having a height of 30 inches -01878203 05 n 02 Lagorchestes 0 genus_Lagorchestes 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01878335 n 0000 | hare wallabies -01878335 05 n 02 hare_wallaby 0 kangaroo_hare 0 002 @ 01877812 n 0000 #m 01878203 n 0000 | small Australian wallaby that resembles a hare and has persistent teeth -01878500 05 n 02 Onychogalea 0 genus_Onychogalea 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01878639 n 0000 | a genus of Macropodidae -01878639 05 n 02 nail-tailed_wallaby 0 nail-tailed_kangaroo 0 002 @ 01877812 n 0000 #m 01878500 n 0000 | small wallabies with a horny nail on the tip of the tail -01878803 05 n 02 Petrogale 0 genus_Petrogale 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01878929 n 0000 | rock wallabies -01878929 05 n 02 rock_wallaby 0 rock_kangaroo 0 002 @ 01877812 n 0000 #m 01878803 n 0000 | slender long-legged Australian wallabies living in caves and rocky areas -01879095 05 n 02 Thylogale 0 genus_Thylogale 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01879217 n 0000 | pademelons -01879217 05 n 02 pademelon 0 paddymelon 0 002 @ 01877812 n 0000 #m 01879095 n 0000 | small reddish-brown wallabies of scrubby areas of Australia and New Guinea -01879379 05 n 02 Dendrolagus 0 genus_Dendrolagus 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01879509 n 0000 | tree wallabies -01879509 05 n 02 tree_wallaby 0 tree_kangaroo 0 002 @ 01877812 n 0000 #m 01879379 n 0000 | arboreal wallabies of New Guinea and northern Australia having hind and forelegs of similar length -01879701 05 n 02 Hypsiprymnodon 0 genus_Hypsiprymnodon 0 003 @ 01864707 n 0000 #m 01876843 n 0000 %m 01879837 n 0000 | musk kangaroos -01879837 05 n 02 musk_kangaroo 0 Hypsiprymnodon_moschatus 0 002 @ 01877134 n 0000 #m 01879701 n 0000 | small kangaroo of northeastern Australia -01879983 05 n 02 Potoroinae 0 subfamily_Potoroinae 0 005 @ 01862557 n 0000 #m 01876843 n 0000 %m 01880152 n 0000 %m 01880355 n 0000 %m 01880570 n 0000 | rat kangaroos -01880152 05 n 02 rat_kangaroo 0 kangaroo_rat 2 005 @ 01877134 n 0000 #m 01879983 n 0000 ~ 01880473 n 0000 ~ 01880716 n 0000 ~ 01880813 n 0000 | any of several rabbit-sized ratlike Australian kangaroos -01880355 05 n 02 Potorous 0 genus_Potorous 0 003 @ 01864707 n 0000 #m 01879983 n 0000 %m 01880473 n 0000 | potoroos -01880473 05 n 01 potoroo 0 002 @ 01880152 n 0000 #m 01880355 n 0000 | Australian rat kangaroos -01880570 05 n 02 Bettongia 0 genus_Bettongia 0 004 @ 01864707 n 0000 #m 01879983 n 0000 %m 01880716 n 0000 %m 01880813 n 0000 | jerboa kangaroo -01880716 05 n 01 bettong 0 002 @ 01880152 n 0000 #m 01880570 n 0000 | short-nosed rat kangaroo -01880813 05 n 02 jerboa_kangaroo 0 kangaroo_jerboa 0 002 @ 01880152 n 0000 #m 01880570 n 0000 | brush-tailed rat kangaroo -01880937 05 n 02 Phalangeridae 0 family_Phalangeridae 0 008 @ 01862557 n 0000 #m 01874126 n 0000 %m 01881171 n 0000 %m 01881416 n 0000 %m 01881717 n 0000 %m 01881991 n 0000 %m 01882372 n 0000 %m 01882607 n 0000 | phalangers; koalas -01881171 05 n 03 phalanger 0 opossum 2 possum 2 006 @ 01874434 n 0000 #m 01880937 n 0000 ~ 01881564 n 0000 ~ 01881857 n 0000 ~ 01882125 n 0000 ~ 01882714 n 0000 | small furry Australian arboreal marsupials having long usually prehensile tails -01881416 05 n 01 genus_Phalanger 0 003 @ 01864707 n 0000 #m 01880937 n 0000 %m 01881564 n 0000 | type genus of the family Phalangeridae: cuscuses -01881564 05 n 01 cuscus 0 002 @ 01881171 n 0000 #m 01881416 n 0000 | woolly-haired monkey-like arboreal marsupial of New Guinea and northern Australia -01881717 05 n 02 Trichosurus 0 genus_Trichosurus 0 003 @ 01864707 n 0000 #m 01880937 n 0000 %m 01881857 n 0000 | a genus of Phalangeridae -01881857 05 n 02 brush-tailed_phalanger 0 Trichosurus_vulpecula 0 002 @ 01881171 n 0000 #m 01881717 n 0000 | bushy-tailed phalanger -01881991 05 n 02 Petaurus 0 genus_Petaurus 0 003 @ 01864707 n 0000 #m 01880937 n 0000 %m 01882125 n 0000 | a genus of Phalangeridae -01882125 05 n 03 flying_phalanger 0 flying_opossum 0 flying_squirrel 2 003 @ 01881171 n 0000 #m 01881991 n 0000 ~ 01882508 n 0000 | nocturnal phalangers that move with gliding leaps using parachute-like folds of skin along the sides of the body -01882372 05 n 02 Acrobates 0 genus_Acrobates 0 003 @ 01864707 n 0000 #m 01880937 n 0000 %m 01882508 n 0000 | a genus of Phalangeridae -01882508 05 n 01 flying_mouse 0 002 @ 01882125 n 0000 #m 01882372 n 0000 | tiny flying phalanger -01882607 05 n 02 Phascolarctos 0 genus_Phascolarctos 0 002 @ 01864707 n 0000 #m 01880937 n 0000 | koalas -01882714 05 n 05 koala 0 koala_bear 0 kangaroo_bear 0 native_bear 0 Phascolarctos_cinereus 0 001 @ 01881171 n 0000 | sluggish tailless Australian arboreal marsupial with grey furry ears and coat; feeds on eucalyptus leaves and bark -01882948 05 n 02 Vombatidae 0 family_Vombatidae 0 003 @ 01862557 n 0000 #m 01874126 n 0000 %m 01883070 n 0000 | wombats -01883070 05 n 01 wombat 0 002 @ 01874434 n 0000 #m 01882948 n 0000 | burrowing herbivorous Australian marsupials about the size of a badger -01883212 05 n 03 Dasyuridae 0 family_Dasyuridae 0 family_Dasyurinae 0 008 @ 01862557 n 0000 #m 01874126 n 0000 %m 01883513 n 0000 %m 01883762 n 0000 %m 01884348 n 0000 %m 01884703 n 0000 %m 01885032 n 0000 %m 01885367 n 0000 | dasyures; native cats; pouched mice; banded anteaters; Tasmanian devils -01883513 05 n 02 dasyurid_marsupial 0 dasyurid 0 007 @ 01874434 n 0000 #m 01883212 n 0000 ~ 01883920 n 0000 ~ 01884476 n 0000 ~ 01884834 n 0000 ~ 01885158 n 0000 ~ 01885498 n 0000 | small carnivorous nocturnal marsupials of Australia and Tasmania -01883762 05 n 02 Dasyurus 0 genus_Dasyurus 0 003 @ 01864707 n 0000 #m 01883212 n 0000 %m 01883920 n 0000 | type genus of the family Dasyuridae: native cats -01883920 05 n 01 dasyure 0 004 @ 01883513 n 0000 #m 01883762 n 0000 ~ 01884104 n 0000 ~ 01884203 n 0000 | any of several more or less arboreal marsupials somewhat resembling martens -01884104 05 n 02 eastern_dasyure 0 Dasyurus_quoll 0 001 @ 01883920 n 0000 | a variety of dasyure -01884203 05 n 02 native_cat 0 Dasyurus_viverrinus 0 001 @ 01883920 n 0000 | carnivorous arboreal cat-like marsupials of Australia and Tasmania -01884348 05 n 02 Thylacinus 0 genus_Thylacinus 0 003 @ 01864707 n 0000 #m 01883212 n 0000 %m 01884476 n 0000 | Tasmanian wolf -01884476 05 n 04 thylacine 0 Tasmanian_wolf 0 Tasmanian_tiger 0 Thylacinus_cynocephalus 0 002 @ 01883513 n 0000 #m 01884348 n 0000 | rare doglike carnivorous marsupial of Tasmania having stripes on its back; probably extinct -01884703 05 n 02 Sarcophilus 0 genus_Sarcophilus 0 003 @ 01864707 n 0000 #m 01883212 n 0000 %m 01884834 n 0000 | Tasmanian devil -01884834 05 n 03 Tasmanian_devil 0 ursine_dasyure 0 Sarcophilus_hariisi 0 002 @ 01883513 n 0000 #m 01884703 n 0000 | small ferocious carnivorous marsupial having a mostly black coat and long tail -01885032 05 n 02 Phascogale 0 genus_Phascogale 0 003 @ 01864707 n 0000 #m 01883212 n 0000 %m 01885158 n 0000 | pouched mice -01885158 05 n 03 pouched_mouse 0 marsupial_mouse 0 marsupial_rat 0 002 @ 01883513 n 0000 #m 01885032 n 0000 | any of numerous small sharp-nosed insectivorous marsupials superficially resembling mice or rats -01885367 05 n 02 Myrmecobius 0 genus_Myrmecobius 0 003 @ 01864707 n 0000 #m 01883212 n 0000 %m 01885498 n 0000 | banded anteater -01885498 05 n 04 numbat 0 banded_anteater 0 anteater 5 Myrmecobius_fasciatus 0 002 @ 01883513 n 0000 #m 01885367 n 0000 | small Australian marsupial having long snout and strong claws for feeding on termites; nearly extinct -01885724 05 n 02 Notoryctidae 0 family_Notoryctidae 0 003 @ 01862557 n 0000 #m 01874126 n 0000 %m 01885856 n 0000 | pouched moles -01885856 05 n 02 Notoryctus 0 genus_Notoryctus 0 003 @ 01864707 n 0000 #m 01885724 n 0000 %m 01886045 n 0000 | type genus of the family Notoryctidae: comprising solely the marsupial mole -01886045 05 n 03 pouched_mole 0 marsupial_mole 0 Notoryctus_typhlops 0 002 @ 01874434 n 0000 #m 01885856 n 0000 | small burrowing Australian marsupial that resembles a mole -01886220 05 n 02 Eutheria 0 subclass_Eutheria 0 023 @ 08103777 n 0000 #m 01861465 n 0000 + 03018964 a 0101 %m 01886756 n 0000 %m 01888520 n 0000 %m 02062209 n 0000 %m 02073041 n 0000 %m 02074915 n 0000 %m 02082056 n 0000 %m 02082358 n 0000 %m 02138921 n 0000 %m 02323186 n 0000 %m 02329093 n 0000 %m 02372251 n 0000 %m 02373093 n 0000 %m 02394068 n 0000 %m 02453373 n 0000 %m 02461372 n 0000 %m 02469588 n 0000 %m 02494538 n 0000 %m 02502085 n 0000 %m 02502902 n 0000 %m 02510065 n 0000 | all mammals except monotremes and marsupials -01886756 05 n 04 placental 0 placental_mammal 0 eutherian 0 eutherian_mammal 0 031 @ 01861778 n 0000 #m 01886220 n 0000 + 01830946 a 0101 ~ 01887474 n 0000 ~ 01887623 n 0000 ~ 01887787 n 0000 ~ 01888181 n 0000 ~ 01888264 n 0000 ~ 01888411 n 0000 ~ 01889074 n 0000 ~ 02062017 n 0000 ~ 02075296 n 0000 ~ 02082056 n 0000 ~ 02082791 n 0000 ~ 02139199 n 0000 ~ 02323449 n 0000 ~ 02329401 n 0000 ~ 02370525 n 0000 ~ 02370806 n 0000 ~ 02371125 n 0000 ~ 02371344 n 0000 ~ 02372584 n 0000 ~ 02453108 n 0000 ~ 02453611 n 0000 ~ 02461830 n 0000 ~ 02469914 n 0000 ~ 02495242 n 0000 ~ 02502514 n 0000 ~ 02503127 n 0000 ~ 02506947 n 0000 ~ 02507148 n 0000 | mammals having a placenta; all mammals except monotremes and marsupials -01887474 05 n 03 livestock 0 stock 0 farm_animal 0 003 @ 01886756 n 0000 + 01318053 n 0201 -c 01203074 v 0000 | any animals kept for use or profit -01887623 05 n 01 bull 2 001 @ 01886756 n 0000 | mature male of various mammals of which the female is called `cow'; e.g. whales or elephants or especially cattle -01887787 05 n 01 cow 2 001 @ 01886756 n 0000 | mature female of mammals of which the male is called `bull' -01887896 05 n 01 calf 0 005 @ 01321854 n 0000 #m 02402425 n 0000 ~ 02403920 n 0000 ~ 02404028 n 0000 %p 07665308 n 0000 | young of domestic cattle -01888045 05 n 01 calf 1 001 @ 01321854 n 0000 | young of various large placental mammals e.g. whale or giraffe or elephant or buffalo -01888181 05 n 01 yearling 1 001 @ 01886756 n 0000 | an animal in its second year -01888264 05 n 01 buck 0 003 @ 01886756 n 0000 + 01884383 v 0101 ~ 02430559 n 0000 | mature male of various mammals (especially deer or antelope) -01888411 05 n 01 doe 0 001 @ 01886756 n 0000 | mature female of mammals of which the male is called `buck' -01888520 05 n 02 Insectivora 0 order_Insectivora 0 011 @ 01342529 n 0000 #m 01886220 n 0000 %m 01888821 n 0000 %m 01888948 n 0000 %m 01889074 n 0000 %m 01889328 n 0000 %m 01890274 n 0000 %m 01891438 n 0000 %m 01893535 n 0000 %m 01894040 n 0000 %m 01894670 n 0000 | shrews; moles; hedgehogs; tenrecs -01888821 05 n 02 Lipotyphla 0 suborder_Lipotyphla 0 002 @ 01342529 n 0000 #m 01888520 n 0000 | moles; hedgehogs; true shrews -01888948 05 n 02 Menotyphla 0 suborder_Menotyphla 0 002 @ 01342529 n 0000 #m 01888520 n 0000 | elephant shrews; tree shrews -01889074 05 n 01 insectivore 0 008 @ 01886756 n 0000 #m 01888520 n 0000 + 00315383 a 0101 ~ 01889520 n 0000 ~ 01891633 n 0000 ~ 01893825 n 0000 ~ 01894207 n 0000 ~ 01894956 n 0000 | small insect-eating mainly nocturnal terrestrial or fossorial mammals -01889328 05 n 02 Talpidae 0 family_Talpidae 0 007 @ 01862557 n 0000 #m 01888520 n 0000 %m 01889520 n 0000 %m 01889740 n 0000 %m 01890033 n 0000 %m 01890718 n 0000 %m 01891145 n 0000 | moles -01889520 05 n 01 mole 0 006 @ 01889074 n 0000 #m 01889328 n 0000 ~ 01889849 n 0000 ~ 01890144 n 0000 ~ 01890564 n 0000 ~ 01890860 n 0000 | small velvety-furred burrowing mammal having small eyes and fossorial forefeet -01889740 05 n 02 Condylura 0 genus_Condylura 0 002 @ 01864707 n 0000 #m 01889328 n 0000 | star-nosed moles -01889849 05 n 03 starnose_mole 0 star-nosed_mole 0 Condylura_cristata 0 001 @ 01889520 n 0000 | amphibious mole of eastern North America having pink fleshy tentacles around the nose -01890033 05 n 02 Parascalops 0 genus_Parascalops 0 002 @ 01864707 n 0000 #m 01889328 n 0000 | brewer's moles -01890144 05 n 03 brewer's_mole 0 hair-tailed_mole 0 Parascalops_breweri 0 001 @ 01889520 n 0000 | mole of eastern North America -01890274 05 n 02 Chrysochloridae 0 family_Chrysochloridae 0 003 @ 01862557 n 0000 #m 01888520 n 0000 %m 01890411 n 0000 | golden moles -01890411 05 n 02 Chrysochloris 0 genus_Chrysochloris 0 003 @ 01864707 n 0000 #m 01890274 n 0000 %m 01890564 n 0000 | type genus of the Chrysochloridae -01890564 05 n 01 golden_mole 0 002 @ 01889520 n 0000 #m 01890411 n 0000 | mole of southern Africa having iridescent guard hairs mixed with the underfur -01890718 05 n 02 Uropsilus 0 genus_Uropsilus 0 004 @ 01864707 n 0000 #m 01889328 n 0000 %m 01890860 n 0000 %m 01891013 n 0000 | shrew moles -01890860 05 n 01 shrew_mole 0 004 @ 01889520 n 0000 #m 01890718 n 0000 ~ 01891013 n 0000 ~ 01891274 n 0000 | slender mole having a long snout and tail -01891013 05 n 02 Asiatic_shrew_mole 0 Uropsilus_soricipes 0 002 @ 01890860 n 0000 #m 01890718 n 0000 | shrew mole of eastern Asia -01891145 05 n 02 Neurotrichus 0 genus_Neurotrichus 0 003 @ 01864707 n 0000 #m 01889328 n 0000 %m 01891274 n 0000 | shrew moles -01891274 05 n 02 American_shrew_mole 0 Neurotrichus_gibbsii 0 002 @ 01890860 n 0000 #m 01891145 n 0000 | greyish-black shrew mole of the United States and Canada -01891438 05 n 02 Soricidae 0 family_Soricidae 0 007 @ 01862557 n 0000 #m 01888520 n 0000 %m 01891633 n 0000 %m 01891865 n 0000 %m 01892271 n 0000 %m 01892876 n 0000 %m 01893294 n 0000 | shrews -01891633 05 n 02 shrew 0 shrewmouse 0 007 @ 01889074 n 0000 #m 01891438 n 0000 ~ 01892030 n 0000 ~ 01892145 n 0000 ~ 01892385 n 0000 ~ 01892551 n 0000 ~ 01893399 n 0000 | small mouselike mammal with a long snout; related to moles -01891865 05 n 02 Sorex 0 genus_Sorex 0 004 @ 01864707 n 0000 #m 01891438 n 0000 %m 01892030 n 0000 %m 01892744 n 0000 | type genus of the family Soricidae: shrews -01892030 05 n 02 common_shrew 0 Sorex_araneus 0 002 @ 01891633 n 0000 #m 01891865 n 0000 | common American shrew -01892145 05 n 02 masked_shrew 0 Sorex_cinereus 0 001 @ 01891633 n 0000 | commonest shrew of moist habitats in North America -01892271 05 n 02 Blarina 0 genus_Blarina 0 003 @ 01864707 n 0000 #m 01891438 n 0000 %m 01892385 n 0000 | shrews -01892385 05 n 02 short-tailed_shrew 0 Blarina_brevicauda 0 002 @ 01891633 n 0000 #m 01892271 n 0000 | North American shrew with tail less than half its body length -01892551 05 n 01 water_shrew 0 004 @ 01891633 n 0000 ~ 01892744 n 0000 ~ 01893021 n 0000 ~ 01893164 n 0000 | any of several small semiaquatic shrews usually living near swift-flowing streams -01892744 05 n 02 American_water_shrew 0 Sorex_palustris 0 002 @ 01892551 n 0000 #m 01891865 n 0000 | water shrew of North America -01892876 05 n 02 Neomys 0 genus_Neomys 0 004 @ 01864707 n 0000 #m 01891438 n 0000 %m 01893021 n 0000 %m 01893164 n 0000 | a genus of Soricidae -01893021 05 n 02 European_water_shrew 0 Neomys_fodiens 0 002 @ 01892551 n 0000 #m 01892876 n 0000 | widely distributed Old World water shrew -01893164 05 n 02 Mediterranean_water_shrew 0 Neomys_anomalus 0 002 @ 01892551 n 0000 #m 01892876 n 0000 | a type of water shrew -01893294 05 n 02 Cryptotis 0 genus_Cryptotis 0 002 @ 01864707 n 0000 #m 01891438 n 0000 | least shrews -01893399 05 n 02 least_shrew 0 Cryptotis_parva 0 001 @ 01891633 n 0000 | small brown shrew of grassy regions of eastern United States -01893535 05 n 02 Erinaceidae 0 family_Erinaceidae 0 003 @ 01862557 n 0000 #m 01888520 n 0000 %m 01893666 n 0000 | true hedgehogs -01893666 05 n 02 Erinaceus 0 genus_Erinaceus 0 003 @ 01864707 n 0000 #m 01893535 n 0000 %m 01893825 n 0000 | type genus of the family Erinaceidae: hedgehogs -01893825 05 n 03 hedgehog 0 Erinaceus_europaeus 0 Erinaceus_europeaeus 0 003 @ 01889074 n 0000 #m 01893666 n 0000 %p 01900837 n 0000 | small nocturnal Old World mammal covered with both hair and protective spines -01894040 05 n 02 Tenrecidae 0 family_Tenrecidae 0 004 @ 01862557 n 0000 #m 01888520 n 0000 %m 01894207 n 0000 %m 01894381 n 0000 | tenrecs and extinct related forms -01894207 05 n 02 tenrec 0 tendrac 0 003 @ 01889074 n 0000 #m 01894040 n 0000 ~ 01894522 n 0000 | small often spiny insectivorous mammal of Madagascar; resembles a hedgehog -01894381 05 n 01 genus_Tenrec 0 003 @ 01864707 n 0000 #m 01894040 n 0000 %m 01894522 n 0000 | type genus of the family Tenrecidae: tenrecs -01894522 05 n 02 tailless_tenrec 0 Tenrec_ecaudatus 0 002 @ 01894207 n 0000 #m 01894381 n 0000 | prolific animal that feeds chiefly on earthworms -01894670 05 n 02 Potamogalidae 0 family_Potamogalidae 0 003 @ 01862557 n 0000 #m 01888520 n 0000 %m 01894803 n 0000 | otter shrews -01894803 05 n 01 genus_Potamogale 0 003 @ 01864707 n 0000 #m 01894670 n 0000 %m 01894956 n 0000 | type genus of the family Potamogalidae: otter shrews -01894956 05 n 03 otter_shrew 0 potamogale 0 Potamogale_velox 0 002 @ 01889074 n 0000 #m 01894803 n 0000 | amphibious African insectivorous mammal that resembles an otter -01895128 05 n 01 chine 0 002 @ 05588174 n 0000 + 01323202 v 0101 | backbone of an animal -01895219 05 n 01 saddle 0 003 @ 05220461 n 0000 #p 05558717 n 0000 #p 01789740 n 0000 | posterior part of the back of a domestic fowl -01895355 05 n 01 furcula 0 003 @ 05269901 n 0000 #p 01503061 n 0000 ~ 01895511 n 0000 | a forked bone formed by the fusion of the clavicles of most birds -01895511 05 n 02 wishbone 0 wishing_bone 0 002 @ 01895355 n 0000 #p 07644382 n 0000 | the furcula of a domestic fowl -01895630 05 n 01 cuticula 0 002 @ 01903756 n 0000 + 02876088 a 0101 | the outer body wall of an insect -01895735 05 n 03 hide 0 pelt 0 skin 1 002 @ 05237755 n 0000 + 01309478 v 0301 | body covering of a living animal -01895850 05 n 01 hypodermis 0 004 @ 01463259 n 0000 #p 05237755 n 0000 + 02876936 a 0101 + 02876829 a 0101 | layer of cells that secretes the chitinous cuticle in e.g. arthropods -01896031 05 n 03 feather 0 plume 0 plumage 0 022 @ 05237755 n 0000 @ 14755804 n 0000 #p 01503061 n 0000 + 01680132 v 0201 + 01392080 v 0202 + 00998207 a 0102 + 00998040 a 0101 + 00058554 a 0101 + 01272798 v 0101 + 00094312 v 0102 ~ 01896561 n 0000 ~ 01897257 n 0000 ~ 01897536 n 0000 ~ 01897667 n 0000 ~ 01897851 n 0000 %p 01897991 n 0000 ~ 01898459 n 0000 %p 02468617 n 0000 ~ 02468864 n 0000 ~ 02469248 n 0000 %s 14732472 n 0000 %s 14757172 n 0000 | the light horny waterproof structure forming the external covering of birds -01896561 05 n 02 down 0 down_feather 0 006 @ 01896031 n 0000 + 01154030 a 0101 ~ 01896735 n 0000 ~ 01896960 n 0000 ~ 01897053 n 0000 ~ 01897146 n 0000 | soft fine feathers -01896735 05 n 01 duck_down 0 003 @ 01896561 n 0000 #p 01846331 n 0000 ~ 01896844 n 0000 | down of the duck -01896844 05 n 01 eiderdown 0 003 @ 01896735 n 0000 #p 01853195 n 0000 #s 03266749 n 0000 | down of the eider duck -01896960 05 n 01 goose_down 0 002 @ 01896561 n 0000 #p 01855672 n 0000 | down of the goose -01897053 05 n 01 swan's_down 0 002 @ 01896561 n 0000 #p 01858441 n 0000 | down of the swan -01897146 05 n 01 plumule 0 001 @ 01896561 n 0000 | down feather of young birds; persists in some adult birds -01897257 05 n 01 aftershaft 0 001 @ 01896031 n 0000 | a supplementary feather (usually small) on the underside of the base of the shaft of some feathers in some birds -01897426 05 n 01 sickle_feather 0 001 @ 02469344 n 0000 | one of the long curved tail feathers of a rooster -01897536 05 n 01 contour_feather 0 001 @ 01896031 n 0000 | feathers covering the body of an adult bird and determining its shape -01897667 05 n 03 bastard_wing 0 alula 0 spurious_wing 0 003 @ 01896031 n 0000 #p 02151625 n 0000 + 02615079 a 0201 | tuft of small stiff feathers on the first digit of a bird's wing -01897851 05 n 01 marabou 2 002 @ 01896031 n 0000 #p 02003204 n 0000 | the downy feathers of marabou storks are used for trimming garments -01897991 05 n 02 vane 0 web 1 003 @ 05236029 n 0000 #p 01896031 n 0000 %p 01898185 n 0000 | the flattened weblike part of a feather consisting of a series of barbs on either side of the shaft -01898185 05 n 01 barb 0 002 @ 14867858 n 0000 #p 01897991 n 0000 | one of the parallel filaments projecting from the main shaft of a feather -01898328 05 n 01 web 2 002 @ 05426243 n 0000 #p 02154620 n 0000 | membrane connecting the toes of some aquatic birds and mammals -01898459 05 n 01 hackle 0 002 @ 01896031 n 0000 ~ 01898593 n 0000 | long slender feather on the necks of e.g. turkeys and pheasants -01898593 05 n 02 saddle_hackle 0 saddle_feather 0 001 @ 01898459 n 0000 | a long narrow feather on the back (saddle) of a domestic fowl -01898731 05 n 02 coat 0 pelage 0 004 @ 05254795 n 0000 #p 01861778 n 0000 ~ 01899062 n 0000 ~ 01899593 n 0000 | growth of hair or wool or fur covering the body of an animal -01898906 05 n 01 guard_hair 0 002 @ 05254795 n 0000 #p 01899062 n 0000 | coarse hairs that form the outer fur and protect the underfur of certain mammals -01899062 05 n 01 fur 0 004 @ 01898731 n 0000 + 00214001 a 0102 %p 01898906 n 0000 ~ 01899238 n 0000 | dense coat of fine silky hairs on mammals (e.g., cat or seal or weasel) -01899238 05 n 02 undercoat 0 underfur 0 001 @ 01899062 n 0000 | thick soft fur lying beneath the longer and coarser guard hair -01899367 05 n 01 underpart 0 002 @ 05220461 n 0000 ~ 02157415 n 0000 | a part lying on the lower side or underneath an animal's body; "the warbler has a white throat and underparts"; "a woodland mouse with white underparts" -01899593 05 n 02 wool 0 fleece 0 004 @ 01898731 n 0000 + 01560369 v 0201 + 00216668 a 0101 + 00216668 a 0102 | outer coat of especially sheep and yaks -01899746 05 n 01 mane 0 003 @ 05254795 n 0000 #p 02129165 n 0000 ~ 01899894 n 0000 | long coarse hair growing from the crest of the animal's neck -01899894 05 n 01 encolure 0 003 @ 01899746 n 0000 #p 02374451 n 0000 %p 01900006 n 0000 | the mane of a horse -01900006 05 n 02 forelock 0 foretop 0 002 @ 05254795 n 0000 #p 01899894 n 0000 | a lock of a horse's mane that grows forward between the ears -01900150 05 n 01 hair 2 006 @ 05470189 n 0000 + 00212173 a 0101 ~ 01901610 n 0000 ~ 01901828 n 0000 ~ 01902022 n 0000 ~ 01902132 n 0000 | a filamentous projection or process on an organism -01900341 05 n 01 cirrus 0 001 @ 05470189 n 0000 | a slender flexible animal appendage as on barnacles or crinoids or many insects; often tactile -01900488 05 n 01 spine 0 005 @ 05470189 n 0000 + 02884456 a 0101 + 01810011 a 0103 ~ 01900719 n 0000 ~ 01900837 n 0000 | a sharp rigid animal process or appendage; as a porcupine quill or a ridge on a bone or a ray of a fish fin -01900719 05 n 01 ray 1 002 @ 01900488 n 0000 #p 02466132 n 0000 | any of the stiff bony spines in the fin of a fish -01900837 05 n 01 quill 1 003 @ 01900488 n 0000 #p 02346627 n 0000 #p 01893825 n 0000 | a stiff hollow protective spine on a porcupine or hedgehog -01900985 05 n 01 aculea 0 001 @ 05470189 n 0000 | small spiny outgrowth on the wings of certain insects -01901091 05 n 01 aculeus 0 001 @ 02465693 n 0000 | a sharp-pointed process especially a sting of a hymenopterous insect -01901213 05 n 01 style 0 002 @ 05470189 n 0000 ~ 01901348 n 0000 | a slender bristlelike or tubular process; "a cartilaginous style" -01901348 05 n 01 stylet 0 002 @ 01901213 n 0000 #p 01784293 n 0000 | small needlelike appendage; especially the feeding organ of a tardigrade -01901492 05 n 01 villus 0 002 @ 05470189 n 0000 ~ 01473188 n 0000 | a minute hairlike projection on mucous membrane -01901610 05 n 01 bristle 0 002 @ 01900150 n 0000 + 01983597 v 0101 | a stiff hair -01901694 05 n 01 chaeta 0 002 @ 01902022 n 0000 + 02690153 a 0101 | a stiff chitinous seta or bristle especially of an annelid worm -01901828 05 n 03 whisker 0 vibrissa 0 sensory_hair 0 003 @ 01900150 n 0000 + 02153965 a 0105 + 02332173 v 0102 | a long stiff hair growing from the snout or brow of most mammals as e.g. a cat -01902022 05 n 01 seta 0 003 @ 01900150 n 0000 + 00145083 a 010b ~ 01901694 n 0000 | a stiff hair or bristle -01902132 05 n 01 pilus 0 002 @ 01900150 n 0000 #p 01326291 n 0000 | hairlike structure especially on the surface of a cell or microorganism -01902274 05 n 01 horseback 0 002 @ 05220461 n 0000 #p 02374451 n 0000 | the back of a horse -01902368 05 n 01 operculum 0 001 @ 05581349 n 0000 | a hard flap serving as a cover for (a) the gill slits in fishes or (b) the opening of the shell in certain gastropods when the body is retracted -01902568 05 n 01 protective_covering 0 005 @ 05237755 n 0000 ~ 01902750 n 0000 ~ 01903346 n 0000 ~ 01903498 n 0000 ~ 01903631 n 0000 | the tough natural covering of some organisms -01902750 05 n 02 armor 0 armour 0 001 @ 01902568 n 0000 | tough more-or-less rigid protective covering of an animal or plant -01902877 05 n 01 scale 0 007 @ 09257949 n 0000 + 02241247 a 0104 + 00147160 a 0101 + 00147160 a 0102 + 01264148 v 0101 ~ 01903110 n 0000 ~ 01903234 n 0000 | a flattened rigid plate forming part of the body covering of many animals -01903110 05 n 01 fish_scale 0 002 @ 01902877 n 0000 #p 02512053 n 0000 | scale of the kind that covers the bodies of fish -01903234 05 n 01 squama 0 002 @ 01902877 n 0000 ~ 02190465 n 0000 | a protective structure resembling a scale -01903346 05 n 01 scute 0 002 @ 01902568 n 0000 ~ 01903756 n 0000 | large bony or horny plate as on an armadillo or turtle or the underside of a snake -01903498 05 n 01 sclerite 0 002 @ 01902568 n 0000 #p 01767661 n 0000 | hard plate or element of the exoskeleton of some arthropods -01903631 05 n 01 clypeus 0 002 @ 01902568 n 0000 #p 02159955 n 0000 | a shield-like plate on the front of an insect's head -01903756 05 n 04 carapace 0 shell 2 cuticle 0 shield 0 007 @ 01903346 n 0000 #p 01940736 n 0000 #p 01767661 n 0000 #p 01662784 n 0000 + 02876088 a 0301 ~ 01895630 n 0000 %s 14758536 n 0000 | hard outer covering or case of certain organisms such as arthropods and turtles -01904029 05 n 01 plastron 0 003 @ 05586759 n 0000 #p 01662784 n 0000 ;c 06083243 n 0000 | (zoology) the part of a turtle's shell forming its underside -01904182 05 n 01 shell 1 010 @ 09257949 n 0000 + 00197744 v 0101 + 01316813 v 0101 ~ 01904461 n 0000 ~ 01904583 n 0000 ~ 01904806 n 0000 ~ 01904886 n 0000 ~ 01904965 n 0000 ~ 01956764 n 0000 ~ 01956849 n 0000 | the hard largely calcareous covering of a mollusc or a brachiopod -01904461 05 n 01 valve 0 001 @ 01904182 n 0000 | one of the paired hinged shells of certain molluscs and of brachiopods -01904583 05 n 01 valve 1 001 @ 01904182 n 0000 | the entire one-piece shell of a snail and certain other molluscs -01904699 05 n 01 test 0 001 @ 09257949 n 0000 | a hard outer covering as of some amoebas and sea urchins -01904806 05 n 01 scallop_shell 0 001 @ 01904182 n 0000 | a shell of a scallop -01904886 05 n 01 oyster_shell 0 001 @ 01904182 n 0000 | a shell of an oyster -01904965 05 n 02 phragmocone 0 phragmacone 0 001 @ 01904182 n 0000 | the thin conical chambered internal shell (either straight or curved) of a belemnite -01905121 05 n 01 apodeme 0 002 @ 05225602 n 0000 #p 01767661 n 0000 | ridge-like ingrowth of the exoskeleton of an arthropod that supports internal organs and provides attachment points for muscles -01905321 05 n 01 theca 2 001 @ 05238036 n 0000 | outer sheath of the pupa of certain insects -01905416 05 n 01 lorica 0 001 @ 05238036 n 0000 | a hard protective sheath (as secreted by certain protoctists, for example) -01905543 05 n 01 coelenteron 0 002 @ 05515670 n 0000 #p 01909422 n 0000 | the saclike body cavity of a coelenterate -01905661 05 n 01 invertebrate 0 021 @ 00015388 n 0000 ~ 01767661 n 0000 ~ 01906178 n 0000 ~ 01906749 n 0000 ~ 01909422 n 0000 ~ 01918744 n 0000 ~ 01922303 n 0000 ~ 01923025 n 0000 ~ 01929186 n 0000 ~ 01940736 n 0000 ~ 02313360 n 0000 ~ 02313709 n 0000 ~ 02314158 n 0000 ~ 02314492 n 0000 ~ 02315024 n 0000 ~ 02315487 n 0000 ~ 02315821 n 0000 ~ 02316707 n 0000 %p 02322213 n 0000 %p 02511510 n 0000 -c 05586759 n 0000 | any animal lacking a backbone or notochord; the term is not used as a scientific classification -01906178 05 n 01 zoophyte 0 001 @ 01905661 n 0000 | any of various invertebrate animals resembling a plant such as a sea anemone or coral or sponge -01906328 05 n 02 Parazoa 0 subkingdom_Parazoa 0 003 @ 07940865 n 0000 #m 01313093 n 0000 %m 01906552 n 0000 | multicellular organisms having less-specialized cells than in the Metazoa; comprises the single phylum Porifera -01906552 05 n 02 Porifera 0 phylum_Porifera 0 005 @ 08102555 n 0000 #m 01906328 n 0000 %m 01906749 n 0000 %m 01907034 n 0000 %m 01907495 n 0000 | coextensive with the subkingdom Parazoa: sponges -01906749 05 n 03 sponge 0 poriferan 0 parazoan 0 005 @ 01905661 n 0000 #m 01906552 n 0000 + 01154964 a 0101 + 01383646 v 0101 ~ 01907738 n 0000 | primitive multicellular marine animal whose porous body is supported by a fibrous skeletal framework; usually occurs in sessile colonies -01907034 05 n 01 sponge_genus 0 003 @ 08108972 n 0000 #m 01906552 n 0000 ~ 01907902 n 0000 | a genus of Porifera -01907149 05 n 01 flagellated_cell 0 002 @ 00006484 n 0000 ~ 01907287 n 0000 | any cell or one-celled organism equipped with a flagellum -01907287 05 n 02 choanocyte 0 collar_cell 0 001 @ 01907149 n 0000 | any of the flagellated cells in sponges having a collar of cytoplasm around the flagellum; they maintain a flow of water through the body -01907495 05 n 02 Hyalospongiae 0 class_Hyalospongiae 0 004 @ 08103777 n 0000 #m 01906552 n 0000 %m 01907738 n 0000 %m 01907902 n 0000 | sponges with siliceous spicules that have six rays; choanocytes are restricted to finger-shaped chambers -01907738 05 n 01 glass_sponge 0 003 @ 01906749 n 0000 #m 01907495 n 0000 ~ 01908042 n 0000 | a siliceous sponge (with glassy spicules) of the class Hyalospongiae -01907902 05 n 02 Euplectella 0 genus_Euplectella 0 003 @ 01907034 n 0000 #m 01907495 n 0000 %m 01908042 n 0000 | a genus of Hyalospongiae -01908042 05 n 01 Venus's_flower_basket 0 002 @ 01907738 n 0000 #m 01907902 n 0000 | a deep-water marine sponge having a cylindrical skeleton of intricate glassy latticework; found in the waters of the East Indies and the eastern coast of Asia -01908287 05 n 01 coelenterate_family 0 003 @ 08107499 n 0000 #m 01313093 n 0000 ~ 01915414 n 0000 | a family of coelenterates -01908415 05 n 01 coelenterate_genus 0 012 @ 08108972 n 0000 #m 01313093 n 0000 ~ 01911271 n 0000 ~ 01912050 n 0000 ~ 01912688 n 0000 ~ 01913035 n 0000 ~ 01913533 n 0000 ~ 01914961 n 0000 ~ 01915541 n 0000 ~ 01917167 n 0000 ~ 01917434 n 0000 ~ 01917751 n 0000 | a genus of coelenterates -01908703 05 n 02 Metazoa 0 subkingdom_Metazoa 0 004 @ 07940865 n 0000 #m 01313093 n 0000 %m 01908958 n 0000 %m 01909111 n 0000 | multicellular animals having cells differentiated into tissues and organs and usually a digestive cavity and nervous system -01908958 05 n 01 metazoan 0 002 @ 00015388 n 0000 #m 01908703 n 0000 | any animal of the subkingdom Metazoa; all animals except protozoans and sponges -01909111 05 n 04 Cnidaria 0 phylum_Cnidaria 0 Coelenterata 0 phylum_Coelenterata 0 009 @ 08102555 n 0000 #m 01908703 n 0000 %m 01909422 n 0000 %m 01909906 n 0000 %m 01910252 n 0000 %m 01910529 n 0000 %m 01910747 n 0000 %m 01911511 n 0000 %m 01913838 n 0000 | hydras; polyps; jellyfishes; sea anemones; corals -01909422 05 n 02 coelenterate 0 cnidarian 0 009 @ 01905661 n 0000 #m 01909111 n 0000 %p 01905543 n 0000 ~ 01909906 n 0000 ~ 01910252 n 0000 ~ 01910747 n 0000 ~ 01911063 n 0000 ~ 01911839 n 0000 ~ 01914163 n 0000 | radially symmetrical animals having saclike bodies with only one opening and tentacles with stinging structures; they occur in polyp and medusa forms -01909788 05 n 01 planula 0 001 @ 01911839 n 0000 | the flat ciliated free-swimming larva of hydrozoan coelenterates -01909906 05 n 01 polyp 0 002 @ 01909422 n 0000 #m 01909111 n 0000 | one of two forms that coelenterates take (e.g. a hydra or coral): usually sedentary with a hollow cylindrical body usually with a ring of tentacles around the mouth; "in some species of coelenterate, polyps are a phase in the life cycle that alternates with a medusoid phase" -01910252 05 n 03 medusa 1 medusoid 0 medusan 0 002 @ 01909422 n 0000 #m 01909111 n 0000 | one of two forms that coelenterates take: it is the free-swimming sexual phase in the life cycle of a coelenterate; in this phase it has a gelatinous umbrella-shaped body and tentacles -01910529 05 n 02 Scyphozoa 0 class_Scyphozoa 0 004 @ 08103777 n 0000 #m 01909111 n 0000 %m 01911063 n 0000 %m 01911271 n 0000 | coelenterates in which the polyp stage is absent or at least inconspicuous: jellyfishes -01910747 05 n 01 jellyfish 0 004 @ 01909422 n 0000 #m 01909111 n 0000 ~ 01910998 n 0000 ~ 01911403 n 0000 | any of numerous usually marine and free-swimming coelenterates that constitute the sexually reproductive forms of hydrozoans and scyphozoans -01910998 05 n 01 Aegina 0 001 @ 01910747 n 0000 | small medusa -01911063 05 n 01 scyphozoan 0 002 @ 01909422 n 0000 #m 01910529 n 0000 | any of various usually free-swimming marine coelenterates having a gelatinous medusoid stage as the dominant phase of its life cycle -01911271 05 n 02 Chrysaora 0 genus_Chrysaora 0 003 @ 01908415 n 0000 #m 01910529 n 0000 %m 01911403 n 0000 | a genus of Scyphozoa -01911403 05 n 01 Chrysaora_quinquecirrha 0 002 @ 01910747 n 0000 #m 01911271 n 0000 | a type of jellyfish -01911511 05 n 02 Hydrozoa 0 class_Hydrozoa 0 006 @ 08103777 n 0000 #m 01909111 n 0000 %m 01911839 n 0000 %m 01912050 n 0000 %m 01912272 n 0000 %m 01913533 n 0000 | coelenterates typically having alternation of generations; hydroid phase is usually colonial giving rise to the medusoid phase by budding: hydras and jellyfishes -01911839 05 n 02 hydrozoan 0 hydroid 0 006 @ 01909422 n 0000 #m 01911511 n 0000 ~ 01909788 n 0000 ~ 01912152 n 0000 ~ 01912454 n 0000 ~ 01913691 n 0000 | colonial coelenterates having the polyp phase dominant -01912050 05 n 01 genus_Hydra 0 003 @ 01908415 n 0000 #m 01911511 n 0000 %m 01912152 n 0000 | hydras -01912152 05 n 01 hydra 0 002 @ 01911839 n 0000 #m 01912050 n 0000 | small tubular solitary freshwater hydrozoan polyp -01912272 05 n 02 Siphonophora 0 order_Siphonophora 0 005 @ 01342529 n 0000 #m 01911511 n 0000 %m 01912454 n 0000 %m 01912688 n 0000 %m 01913035 n 0000 | marine colonial hydrozoans -01912454 05 n 01 siphonophore 0 006 @ 01911839 n 0000 #m 01912272 n 0000 ~ 01912809 n 0000 ~ 01913166 n 0000 ~ 01913346 n 0000 ~ 01913440 n 0000 | a floating or swimming oceanic colony of polyps often transparent or showily colored -01912688 05 n 01 genus_Nanomia 0 003 @ 01908415 n 0000 #m 01912272 n 0000 %m 01912809 n 0000 | a genus of Siphonophora -01912809 05 n 01 nanomia 0 002 @ 01912454 n 0000 #m 01912688 n 0000 | small creatures resembling pieces of fuzzy rope; each with a cluster of swimming bells serving as the head and long elastic tentacles for drawing in prey -01913035 05 n 02 Physalia 0 genus_Physalia 0 003 @ 01908415 n 0000 #m 01912272 n 0000 %m 01913166 n 0000 | Portuguese man-of-war -01913166 05 n 03 Portuguese_man-of-war 0 man-of-war 0 jellyfish 3 002 @ 01912454 n 0000 #m 01913035 n 0000 | large siphonophore having a bladderlike float and stinging tentacles -01913346 05 n 01 praya 0 001 @ 01912454 n 0000 | colonial siphonophore of up to 130 ft long -01913440 05 n 01 apolemia 0 001 @ 01912454 n 0000 | large siphonophore of up to 50 ft long -01913533 05 n 02 Sertularia 0 genus_Sertularia 0 003 @ 01908415 n 0000 #m 01911511 n 0000 %m 01913691 n 0000 | sessile hydroid that forms feathery colonies -01913691 05 n 01 sertularian 0 002 @ 01911839 n 0000 #m 01913533 n 0000 | feathery colony of long-branched stems bearing stalkless paired polyps -01913838 05 n 04 Anthozoa 0 class_Anthozoa 0 Actinozoa 0 class_Actinozoa 0 006 @ 08103777 n 0000 #m 01909111 n 0000 %m 01914163 n 0000 %m 01914415 n 0000 %m 01915093 n 0000 %m 01916738 n 0000 | a large class of sedentary marine coelenterates that includes sea anemones and corals; the medusoid phase is entirely suppressed -01914163 05 n 02 anthozoan 0 actinozoan 0 005 @ 01909422 n 0000 #m 01913838 n 0000 ~ 01914609 n 0000 ~ 01915700 n 0000 ~ 01915811 n 0000 | sessile marine coelenterates including solitary and colonial polyps; the medusoid phase is entirely suppressed -01914415 05 n 04 Actiniaria 0 order_Actiniaria 0 Actinaria 0 order_Actinaria 0 005 @ 01342529 n 0000 #m 01913838 n 0000 %m 01914609 n 0000 %m 01914830 n 0000 %m 01914961 n 0000 | sea anemones -01914609 05 n 02 sea_anemone 0 anemone 0 003 @ 01914163 n 0000 #m 01914415 n 0000 ~ 01914830 n 0000 | marine polyps that resemble flowers but have oral rings of tentacles; differ from corals in forming no hard skeleton -01914830 05 n 03 actinia 2 actinian 0 actiniarian 0 002 @ 01914609 n 0000 #m 01914415 n 0000 | any sea anemone or related animal -01914961 05 n 02 Actinia 0 genus_Actinia 0 002 @ 01908415 n 0000 #m 01914415 n 0000 | a genus of sea anemone common in rock pools -01915093 05 n 02 Alcyonaria 0 order_Alcyonaria 0 005 @ 01342529 n 0000 #m 01913838 n 0000 %m 01915290 n 0000 %m 01915414 n 0000 %m 01916010 n 0000 | corals and sea anemones having eight branches -01915290 05 n 02 Alcyonacea 0 suborder_Alcyonacea 0 002 @ 01342529 n 0000 #m 01915093 n 0000 | comprising the soft corals -01915414 05 n 02 Pennatulidae 0 family_Pennatulidae 0 003 @ 01908287 n 0000 #m 01915093 n 0000 %m 01915541 n 0000 | sea pens -01915541 05 n 02 Pennatula 0 genus_Pennatula 0 003 @ 01908415 n 0000 #m 01915414 n 0000 %m 01915700 n 0000 | type genus of the family Pennatulidae: sea pens -01915700 05 n 01 sea_pen 0 002 @ 01914163 n 0000 #m 01915541 n 0000 | fleshy featherlike warm-water colonies -01915811 05 n 01 coral 0 003 @ 01914163 n 0000 ~ 01916187 n 0000 ~ 01916925 n 0000 | marine colonial polyp characterized by a calcareous skeleton; masses in a variety of shapes often forming reefs -01916010 05 n 04 Gorgonacea 0 suborder_Gorgonacea 0 Gorgoniacea 0 suborder_Gorgoniacea 0 003 @ 01342529 n 0000 #m 01915093 n 0000 %m 01916187 n 0000 | red corals and sea fans -01916187 05 n 02 gorgonian 0 gorgonian_coral 0 005 @ 01915811 n 0000 #m 01916010 n 0000 ~ 01916388 n 0000 ~ 01916481 n 0000 ~ 01916588 n 0000 | corals having a horny or calcareous branching skeleton -01916388 05 n 01 sea_feather 0 001 @ 01916187 n 0000 | corals forming featherlike colonies -01916481 05 n 01 sea_fan 0 001 @ 01916187 n 0000 | corals having a treelike or fan-shaped horny skeleton -01916588 05 n 01 red_coral 0 001 @ 01916187 n 0000 | corals of especially the Mediterranean having pink or red color used for ornaments and jewelry -01916738 05 n 02 Madreporaria 0 order_Madreporaria 0 006 @ 01342529 n 0000 #m 01913838 n 0000 %m 01916925 n 0000 %m 01917167 n 0000 %m 01917434 n 0000 %m 01917751 n 0000 | stony corals -01916925 05 n 03 stony_coral 0 madrepore 0 madriporian_coral 0 005 @ 01915811 n 0000 #m 01916738 n 0000 ~ 01917289 n 0000 ~ 01917611 n 0000 ~ 01917882 n 0000 | corals having calcareous skeletons aggregations of which form reefs and islands -01917167 05 n 02 Maeandra 0 genus_Maeandra 0 003 @ 01908415 n 0000 #m 01916738 n 0000 %m 01917289 n 0000 | brain corals -01917289 05 n 01 brain_coral 0 002 @ 01916925 n 0000 #m 01917167 n 0000 | massive reef-building coral having a convoluted and furrowed surface -01917434 05 n 02 Acropora 0 genus_Acropora 0 003 @ 01908415 n 0000 #m 01916738 n 0000 %m 01917611 n 0000 | coelenterate genus of order Madreporaria, including staghorn corals -01917611 05 n 02 staghorn_coral 0 stag's-horn_coral 0 002 @ 01916925 n 0000 #m 01917434 n 0000 | large branching coral resembling antlers -01917751 05 n 02 Fungia 0 genus_Fungia 0 002 @ 01908415 n 0000 #m 01916738 n 0000 | a genus comprising the usual mushroom corals -01917882 05 n 01 mushroom_coral 0 001 @ 01916925 n 0000 | flattened disk-shaped stony coral (usually solitary and unattached) -01918010 05 n 01 ctenophore_family 0 004 @ 08107499 n 0000 #m 01313093 n 0000 ~ 01920178 n 0000 ~ 01920735 n 0000 | a family of ctenophores -01918152 05 n 01 ctenophore_genus 0 005 @ 08108972 n 0000 #m 01313093 n 0000 ~ 01919258 n 0000 ~ 01920302 n 0000 ~ 01920939 n 0000 | a genus of ctenophores -01918310 05 n 02 Ctenophora 0 phylum_Ctenophora 0 007 @ 08102555 n 0000 #m 01313093 n 0000 %m 01918744 n 0000 %m 01919099 n 0000 %m 01919504 n 0000 %m 01920178 n 0000 %m 01920302 n 0000 | comb jellies; sea acorns; a small phylum formerly considered a class of Coelenterata -01918585 05 n 02 ctene 0 comb-plate 0 002 @ 05297523 n 0000 #p 01918744 n 0000 | a locomotor organ consisting of a row of strong cilia whose bases are fused -01918744 05 n 02 ctenophore 0 comb_jelly 0 008 @ 01905661 n 0000 #m 01918310 n 0000 %p 01918585 n 0000 ~ 01919385 n 0000 ~ 01920051 n 0000 ~ 01920438 n 0000 ~ 01921059 n 0000 %p 01921440 n 0000 | biradially symmetrical hermaphroditic solitary marine animals resembling jellyfishes having for locomotion eight rows of cilia arranged like teeth in a comb -01919099 05 n 02 Nuda 0 class_Nuda 0 003 @ 08103777 n 0000 #m 01918310 n 0000 %m 01919258 n 0000 | ctenophores lacking tentacles; comprises one genus: beroe -01919258 05 n 01 genus_Beroe 0 003 @ 01918152 n 0000 #m 01919099 n 0000 %m 01919385 n 0000 | coextensive with the class Nuda -01919385 05 n 01 beroe 0 002 @ 01918744 n 0000 #m 01919258 n 0000 | delicately iridescent thimble-shaped ctenophores -01919504 05 n 02 Tentaculata 0 class_Tentaculata 0 006 @ 08103777 n 0000 #m 01918310 n 0000 %m 01919714 n 0000 %m 01919912 n 0000 %m 01920582 n 0000 %m 01921216 n 0000 | ctenophores have retractile tentacles -01919714 05 n 06 Cydippida 0 order_Cydippida 0 Cydippidea 0 order_Cydippidea 0 Cydippea 0 order_Cydippea 0 002 @ 01342529 n 0000 #m 01919504 n 0000 | ctenophores having two long pinnate tentacles -01919912 05 n 02 Platyctenea 0 order_Platyctenea 0 003 @ 01342529 n 0000 #m 01919504 n 0000 %m 01920051 n 0000 | an order of Tentaculata -01920051 05 n 01 platyctenean 0 002 @ 01918744 n 0000 #m 01919912 n 0000 | ctenophore have long tentacles and flattened body -01920178 05 n 02 Pleurobrachiidae 0 family_Pleurobrachiidae 0 002 @ 01918010 n 0000 #m 01918310 n 0000 | sea gooseberries -01920302 05 n 02 Pleurobrachia 0 genus_Pleurobrachia 0 003 @ 01918152 n 0000 #m 01918310 n 0000 %m 01920438 n 0000 | sea gooseberries -01920438 05 n 01 sea_gooseberry 0 002 @ 01918744 n 0000 #m 01920302 n 0000 | ctenophore having a rounded body with longitudinal rows of cilia -01920582 05 n 02 Cestida 0 order_Cestida 0 003 @ 01342529 n 0000 #m 01919504 n 0000 %m 01920735 n 0000 | ctenophore having short tentacles; one family -01920735 05 n 02 Cestidae 0 family_Cestidae 0 003 @ 01918010 n 0000 #m 01920582 n 0000 %m 01920939 n 0000 | coextensive with the order Cestida; ctenophores having a greatly flattened and elongated body -01920939 05 n 02 Cestum 0 genus_Cestum 0 003 @ 01918152 n 0000 #m 01920735 n 0000 %m 01921059 n 0000 | Venus's girdle -01921059 05 n 02 Venus's_girdle 0 Cestum_veneris 0 002 @ 01918744 n 0000 #m 01920939 n 0000 | ctenophore having a ribbon-shaped iridescent gelatinous body -01921216 05 n 02 Lobata 0 order_Lobata 0 002 @ 01342529 n 0000 #m 01919504 n 0000 | ctenophore having tentacles only in the immature stage; body compressed vertically having two large oral lobes and four pointed processes -01921440 05 n 01 comb 0 002 @ 05581349 n 0000 #p 01918744 n 0000 | ciliated comb-like swimming plate of a ctenophore -01921559 05 n 01 worm_family 0 015 @ 08107499 n 0000 #m 01313093 n 0000 ~ 01926090 n 0000 ~ 01926840 n 0000 ~ 01927665 n 0000 ~ 01930485 n 0000 ~ 01931277 n 0000 ~ 01931845 n 0000 ~ 01932358 n 0000 ~ 01932800 n 0000 ~ 01933342 n 0000 ~ 01933686 n 0000 ~ 01935743 n 0000 ~ 01937015 n 0000 ~ 01938155 n 0000 | a family of worms -01921887 05 n 01 worm_genus 0 020 @ 08108972 n 0000 #m 01313093 n 0000 ~ 01924151 n 0000 ~ 01924416 n 0000 ~ 01926247 n 0000 ~ 01926549 n 0000 ~ 01926988 n 0000 ~ 01927816 n 0000 ~ 01928073 n 0000 ~ 01930672 n 0000 ~ 01930995 n 0000 ~ 01931398 n 0000 ~ 01931984 n 0000 ~ 01932495 n 0000 ~ 01933834 n 0000 ~ 01935997 n 0000 ~ 01937234 n 0000 ~ 01937422 n 0000 ~ 01938312 n 0000 ~ 01938618 n 0000 | a genus of worms -01922303 05 n 01 worm 0 011 @ 01905661 n 0000 + 02584203 a 0103 ~ 01922717 n 0000 ~ 01922948 n 0000 ~ 01923404 n 0000 ~ 01923890 n 0000 ~ 01924916 n 0000 ~ 01928517 n 0000 ~ 01928865 n 0000 ~ 01930112 n 0000 ~ 01934440 n 0000 | any of numerous relatively small elongated soft-bodied animals especially of the phyla Annelida and Chaetognatha and Nematoda and Nemertea and Platyhelminthes; also many insect larvae -01922717 05 n 02 helminth 0 parasitic_worm 0 004 @ 01922303 n 0000 #m 01929396 n 0000 #m 01925469 n 0000 #m 01927301 n 0000 | worm that is parasitic on the intestines of vertebrates especially roundworms and tapeworms and flukes -01922948 05 n 01 woodworm 0 001 @ 01922303 n 0000 | a larva of a woodborer -01923025 05 n 02 woodborer 0 borer 0 002 @ 01905661 n 0000 + 01443021 v 0201 | any of various insects or larvae or mollusks that bore into wood -01923171 05 n 02 Acanthocephala 0 phylum_Acanthocephala 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 01923404 n 0000 | phylum or class of elongated wormlike parasites that live in the intestines of vertebrates: spiny-headed worms -01923404 05 n 02 acanthocephalan 0 spiny-headed_worm 0 002 @ 01922303 n 0000 #m 01923171 n 0000 | any of various worms living parasitically in intestines of vertebrates having a retractile proboscis covered with many hooked spines -01923637 05 n 02 Chaetognatha 0 phylum_Chaetognatha 0 007 @ 08102555 n 0000 #m 01313093 n 0000 + 02690270 a 0102 + 02690270 a 0101 %m 01923890 n 0000 %m 01924151 n 0000 %m 01924416 n 0000 | arrowworms: a group of small active transparent marine worms -01923890 05 n 02 arrowworm 0 chaetognath 0 003 @ 01922303 n 0000 #m 01923637 n 0000 ~ 01924309 n 0000 | any worm of the Chaetognatha; transparent marine worm with horizontal lateral and caudal fins and a row of movable curved spines at each side of the mouth -01924151 05 n 01 genus_Sagitta 0 003 @ 01921887 n 0000 #m 01923637 n 0000 %m 01924309 n 0000 | chief genus of Chaetognatha including the largest arrowworms -01924309 05 n 01 sagitta 0 002 @ 01923890 n 0000 #m 01924151 n 0000 | any arrowworm of the genus Sagitta -01924416 05 n 01 genus_Spadella 0 002 @ 01921887 n 0000 #m 01923637 n 0000 | marine worms resembling the sagittas but with a broader body and only one pair of lateral fins -01924590 05 n 02 Platyhelminthes 0 phylum_Platyhelminthes 0 007 @ 08102555 n 0000 #m 01313093 n 0000 %m 01924800 n 0000 %m 01924916 n 0000 %m 01925133 n 0000 %m 01925469 n 0000 %m 01927301 n 0000 | flatworms -01924800 05 n 01 bladder_worm 0 002 @ 02311060 n 0000 #m 01924590 n 0000 | encysted saclike larva of the tapeworm -01924916 05 n 02 flatworm 0 platyhelminth 0 006 @ 01922303 n 0000 #m 01924590 n 0000 %p 01458509 n 0000 ~ 01925270 n 0000 ~ 01925695 n 0000 ~ 01927456 n 0000 | parasitic or free-living worms having a flattened body -01925133 05 n 02 Turbellaria 0 class_Turbellaria 0 003 @ 08103777 n 0000 #m 01924590 n 0000 %m 01925270 n 0000 | free-living flatworms -01925270 05 n 02 planarian 0 planaria 0 002 @ 01924916 n 0000 #m 01925133 n 0000 | free-swimming mostly freshwater flatworms; popular in laboratory studies for the ability to regenerate lost parts -01925469 05 n 02 Trematoda 0 class_Trematoda 0 007 @ 08103777 n 0000 #m 01924590 n 0000 %m 01922717 n 0000 %m 01925695 n 0000 %m 01925916 n 0000 %m 01926090 n 0000 %m 01926840 n 0000 | parasitic flatworms (including flukes) -01925695 05 n 03 fluke 0 trematode 0 trematode_worm 0 005 @ 01924916 n 0000 #m 01925469 n 0000 ~ 01926379 n 0000 ~ 01926689 n 0000 ~ 01927159 n 0000 | parasitic flatworms having external suckers for attaching to a host -01925916 05 n 01 cercaria 0 003 @ 02311060 n 0000 #m 01925469 n 0000 + 02688523 a 0101 | tadpole-shaped parasitic larva of a trematode worm; tail disappears in adult stage -01926090 05 n 02 Fasciolidae 0 family_Fasciolidae 0 004 @ 01921559 n 0000 #m 01925469 n 0000 %m 01926247 n 0000 %m 01926549 n 0000 | a family of Trematoda -01926247 05 n 02 Fasciola 0 genus_Fasciola 0 003 @ 01921887 n 0000 #m 01926090 n 0000 %m 01926379 n 0000 | a genus of Fasciolidae -01926379 05 n 02 liver_fluke 0 Fasciola_hepatica 0 002 @ 01925695 n 0000 #m 01926247 n 0000 | flatworm parasitic in liver and bile ducts of domestic animals and humans -01926549 05 n 02 Fasciolopsis 0 genus_Fasciolopsis 0 003 @ 01921887 n 0000 #m 01926090 n 0000 %m 01926689 n 0000 | a genus of Fasciolidae -01926689 05 n 01 Fasciolopsis_buski 0 002 @ 01925695 n 0000 #m 01926549 n 0000 | fluke that is parasitic on humans and swine; common in eastern Asia -01926840 05 n 02 Schistosomatidae 0 family_Schistosomatidae 0 003 @ 01921559 n 0000 #m 01925469 n 0000 %m 01926988 n 0000 | a family of Trematoda -01926988 05 n 02 Schistosoma 0 genus_Schistosoma 0 003 @ 01921887 n 0000 #m 01926840 n 0000 %m 01927159 n 0000 | type genus of the family Schistosomatidae: blood flukes -01927159 05 n 02 schistosome 0 blood_fluke 0 002 @ 01925695 n 0000 #m 01926988 n 0000 | flatworms parasitic in the blood vessels of mammals -01927301 05 n 02 Cestoda 0 class_Cestoda 0 005 @ 08103777 n 0000 #m 01924590 n 0000 %m 01922717 n 0000 %m 01927456 n 0000 %m 01927665 n 0000 | tapeworms -01927456 05 n 02 tapeworm 0 cestode 0 004 @ 01924916 n 0000 #m 01927301 n 0000 ~ 01927928 n 0000 ~ 01928215 n 0000 | ribbonlike flatworms that are parasitic in the intestines of humans and other vertebrates -01927665 05 n 02 Taeniidae 0 family_Taeniidae 0 004 @ 01921559 n 0000 #m 01927301 n 0000 %m 01927816 n 0000 %m 01928073 n 0000 | a family of Cestoda -01927816 05 n 01 genus_Echinococcus 0 003 @ 01921887 n 0000 #m 01927665 n 0000 %m 01927928 n 0000 | tapeworms -01927928 05 n 01 echinococcus 0 002 @ 01927456 n 0000 #m 01927816 n 0000 | tapeworms whose larvae are parasitic in humans and domestic animals -01928073 05 n 01 genus_Taenia 0 003 @ 01921887 n 0000 #m 01927665 n 0000 %m 01928215 n 0000 | type genus of the family Taeniidae: tapeworms -01928215 05 n 01 taenia 0 002 @ 01927456 n 0000 #m 01928073 n 0000 | tapeworms parasitic in humans which uses the pig as its intermediate host -01928360 05 n 04 Nemertea 0 phylum_Nemertea 0 Nemertina 0 phylum_Nemertina 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 01928517 n 0000 | proboscis worms -01928517 05 n 04 ribbon_worm 0 nemertean 0 nemertine 0 proboscis_worm 0 002 @ 01922303 n 0000 #m 01928360 n 0000 | soft unsegmented marine worms that have a threadlike proboscis and the ability to stretch and contract -01928737 05 n 02 Pogonophora 0 phylum_Pogonophora 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 01928865 n 0000 | beard worms -01928865 05 n 02 beard_worm 0 pogonophoran 0 002 @ 01922303 n 0000 #m 01928737 n 0000 | slender animal with tentacles and a tubelike outer covering; lives on the deep ocean bottom -01929047 05 n 02 Rotifera 0 phylum_Rotifera 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 01929186 n 0000 | a phylum including: rotifers -01929186 05 n 01 rotifer 0 002 @ 01905661 n 0000 #m 01929047 n 0000 | minute aquatic multicellular organisms having a ciliated wheel-like organ for feeding and locomotion; constituents of freshwater plankton -01929396 05 n 04 Nematoda 0 phylum_Nematoda 0 Aschelminthes 0 phylum_Aschelminthes 0 013 @ 08102555 n 0000 #m 01313093 n 0000 %m 01922717 n 0000 %m 01929788 n 0000 %m 01929951 n 0000 %m 01930112 n 0000 %m 01930485 n 0000 %m 01931277 n 0000 %m 01931845 n 0000 %m 01932358 n 0000 %m 01932800 n 0000 %m 01933342 n 0000 %m 01933686 n 0000 | unsegmented worms: roundworms; threadworms; eelworms -01929788 05 n 02 Aphasmidia 0 class_Aphasmidia 0 002 @ 08103777 n 0000 #m 01929396 n 0000 | one of two subgroups of Nematoda used in some classification systems -01929951 05 n 02 Phasmidia 0 class_Phasmidia 0 002 @ 08103777 n 0000 #m 01929396 n 0000 | one of two subgroups of Nematoda used in some classification systems -01930112 05 n 03 nematode 0 nematode_worm 0 roundworm 0 011 @ 01922303 n 0000 #m 01929396 n 0000 ~ 01930852 n 0000 ~ 01931140 n 0000 ~ 01931520 n 0000 ~ 01931714 n 0000 ~ 01932643 n 0000 ~ 01932936 n 0000 ~ 01933151 n 0000 ~ 01933478 n 0000 ~ 01933988 n 0000 | unsegmented worms with elongated rounded body pointed at both ends; mostly free-living but some are parasitic -01930485 05 n 02 Ascaridae 0 family_Ascaridae 0 004 @ 01921559 n 0000 #m 01929396 n 0000 %m 01930672 n 0000 %m 01930995 n 0000 | large roundworms parasitic in intestines of vertebrates -01930672 05 n 02 Ascaris 0 genus_Ascaris 0 003 @ 01921887 n 0000 #m 01930485 n 0000 %m 01930852 n 0000 | type genus of the family Ascaridae: roundworms with a three-lipped mouth -01930852 05 n 02 common_roundworm 0 Ascaris_lumbricoides 0 002 @ 01930112 n 0000 #m 01930672 n 0000 | intestinal parasite of humans and pigs -01930995 05 n 02 Ascaridia 0 genus_Ascaridia 0 003 @ 01921887 n 0000 #m 01930485 n 0000 %m 01931140 n 0000 | roundworm having a preanal sucker -01931140 05 n 02 chicken_roundworm 0 Ascaridia_galli 0 002 @ 01930112 n 0000 #m 01930995 n 0000 | intestinal parasite of domestic fowl -01931277 05 n 02 Oxyuridae 0 family_Oxyuridae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01931398 n 0000 | pinworms -01931398 05 n 02 Enterobius 0 genus_Enterobius 0 003 @ 01921887 n 0000 #m 01931277 n 0000 %m 01931520 n 0000 | pinworms -01931520 05 n 03 pinworm 0 threadworm 0 Enterobius_vermicularis 0 002 @ 01930112 n 0000 #m 01931398 n 0000 | small threadlike worm infesting human intestines and rectum especially in children -01931714 05 n 01 eelworm 0 002 @ 01930112 n 0000 ~ 01932151 n 0000 | any of various small free-living plant-parasitic roundworms -01931845 05 n 02 Cephalobidae 0 family_Cephalobidae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01931984 n 0000 | a family of Nematoda -01931984 05 n 04 Anguillula 0 genus_Anguillula 0 Turbatrix 0 genus_Turbatrix 0 003 @ 01921887 n 0000 #m 01931845 n 0000 %m 01932151 n 0000 | a genus of Cephalobidae -01932151 05 n 04 vinegar_eel 0 vinegar_worm 0 Anguillula_aceti 0 Turbatrix_aceti 0 002 @ 01931714 n 0000 #m 01931984 n 0000 | minute eelworm that feeds on organisms that cause fermentation in e.g. vinegar -01932358 05 n 02 Tylenchidae 0 family_Tylenchidae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01932495 n 0000 | a family of Nematoda -01932495 05 n 02 Tylenchus 0 genus_Tylenchus 0 003 @ 01921887 n 0000 #m 01932358 n 0000 %m 01932643 n 0000 | type genus of the family Tylenchidae -01932643 05 n 04 wheatworm 0 wheat_eel 0 wheat_eelworm 0 Tylenchus_tritici 0 002 @ 01930112 n 0000 #m 01932495 n 0000 | small roundworm parasitic on wheat -01932800 05 n 02 Ancylostomatidae 0 family_Ancylostomatidae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01933151 n 0000 | hookworms -01932936 05 n 02 trichina 0 Trichinella_spiralis 0 001 @ 01930112 n 0000 | parasitic nematode occurring in the intestines of pigs and rats and human beings and producing larvae that form cysts in skeletal muscles -01933151 05 n 01 hookworm 0 002 @ 01930112 n 0000 #m 01932800 n 0000 | parasitic bloodsucking roundworms having hooked mouth parts to fasten to the intestinal wall of human and other hosts -01933342 05 n 02 Filariidae 0 family_Filariidae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01933478 n 0000 | threadlike roundworms -01933478 05 n 01 filaria 0 003 @ 01930112 n 0000 #m 01933342 n 0000 + 02728532 a 0101 | slender threadlike roundworms living in the blood and tissues of vertebrates; transmitted as larvae by biting insects -01933686 05 n 02 Dracunculidae 0 family_Dracunculidae 0 003 @ 01921559 n 0000 #m 01929396 n 0000 %m 01933834 n 0000 | greatly elongated roundworm -01933834 05 n 02 Dracunculus 0 genus_Dracunculus 0 003 @ 01921887 n 0000 #m 01933686 n 0000 %m 01933988 n 0000 | type genus of the family Dracunculidae -01933988 05 n 02 Guinea_worm 0 Dracunculus_medinensis 0 002 @ 01930112 n 0000 #m 01933834 n 0000 | parasitic roundworm of India and Africa that lives in the abdomen or beneath the skin of humans and other vertebrates -01934207 05 n 02 Annelida 0 phylum_Annelida 0 007 @ 08102555 n 0000 #m 01313093 n 0000 %m 01934440 n 0000 %m 01934705 n 0000 %m 01935012 n 0000 %m 01936219 n 0000 %m 01937719 n 0000 | segmented worms: earthworms; lugworms; leeches -01934440 05 n 03 annelid 0 annelid_worm 0 segmented_worm 0 007 @ 01922303 n 0000 #m 01934207 n 0000 + 02625975 a 0101 ~ 01934844 n 0000 ~ 01935176 n 0000 ~ 01936391 n 0000 ~ 01937909 n 0000 | worms with cylindrical bodies segmented both internally and externally -01934705 05 n 02 Archiannelida 0 class_Archiannelida 0 003 @ 08103777 n 0000 #m 01934207 n 0000 %m 01934844 n 0000 | a class of Annelida -01934844 05 n 01 archiannelid 0 002 @ 01934440 n 0000 #m 01934705 n 0000 | small primitive marine worm lacking external segmentation and resembling polychaete larvae -01935012 05 n 02 Oligochaeta 0 class_Oligochaeta 0 005 @ 08103777 n 0000 #m 01934207 n 0000 %m 01935176 n 0000 %m 01935395 n 0000 %m 01935743 n 0000 | earthworms -01935176 05 n 02 oligochaete 0 oligochaete_worm 0 003 @ 01934440 n 0000 #m 01935012 n 0000 ~ 01935395 n 0000 | hermaphroditic terrestrial and aquatic annelids having bristles borne singly along the length of the body -01935395 05 n 0a earthworm 0 angleworm 0 fishworm 0 fishing_worm 0 wiggler 1 nightwalker 0 nightcrawler 0 crawler 0 dew_worm 0 red_worm 0 004 @ 01935176 n 0000 #m 01935012 n 0000 + 01885845 v 0801 + 01898282 v 0503 | terrestrial worm that burrows into and helps aerate soil; often surfaces when the ground is cool or wet; used as bait by anglers -01935743 05 n 02 Branchiobdellidae 0 family_Branchiobdellidae 0 003 @ 01921559 n 0000 #m 01935012 n 0000 %m 01935997 n 0000 | small annelid worms with the posterior end modified into an adhesive sucker; especially formerly regarded as modified leeches -01935997 05 n 02 Branchiobdella 0 genus_Branchiobdella 0 002 @ 01921887 n 0000 #m 01935743 n 0000 | type genus of the Branchiobdellidae: a small worm that lives on the gills or surface of a crayfish attached by a sucker -01936219 05 n 02 Polychaeta 0 class_Polychaeta 0 005 @ 08103777 n 0000 #m 01934207 n 0000 %m 01936391 n 0000 %m 01936671 n 0000 %m 01937015 n 0000 | marine annelid worms -01936391 05 n 04 polychaete 0 polychete 0 polychaete_worm 0 polychete_worm 0 005 @ 01934440 n 0000 #m 01936219 n 0000 ~ 01936671 n 0000 ~ 01936858 n 0000 ~ 01937579 n 0000 | chiefly marine annelids possessing both sexes and having paired appendages (parapodia) bearing bristles -01936671 05 n 03 lugworm 0 lug 0 lobworm 0 002 @ 01936391 n 0000 #m 01936219 n 0000 | marine worms having a row of tufted gills along each side of the back; often used for fishing bait -01936858 05 n 01 sea_mouse 0 001 @ 01936391 n 0000 | any of several large worms having a broad flattened body with a mat of coarse hairs covering the back -01937015 05 n 02 Terebellidae 0 family_Terebellidae 0 004 @ 01921559 n 0000 #m 01936219 n 0000 %m 01937234 n 0000 %m 01937422 n 0000 | marine burrowing or tube-forming polychete worms usually having long thick bodies -01937234 05 n 02 Terebella 0 genus_Terebella 0 002 @ 01921887 n 0000 #m 01937015 n 0000 | type genus of Terebellidae; tube-forming marine polychete worms with many filamentous tentacles -01937422 05 n 02 Polycirrus 0 genus_Polycirrus 0 003 @ 01921887 n 0000 #m 01937015 n 0000 %m 01937579 n 0000 | genus of soft-bodied polychete marine worms -01937579 05 n 01 bloodworm 0 002 @ 01936391 n 0000 #m 01937422 n 0000 | a segmented marine worm with bright red body; often used for bait -01937719 05 n 02 Hirudinea 0 class_Hirudinea 0 004 @ 08103777 n 0000 #m 01934207 n 0000 %m 01937909 n 0000 %m 01938155 n 0000 | hermaphroditic aquatic or terrestrial or parasitic annelids -01937909 05 n 03 leech 0 bloodsucker 0 hirudinean 0 005 @ 01934440 n 0000 #m 01937719 n 0000 + 00086077 v 0102 ~ 01938454 n 0000 ~ 01938735 n 0000 | carnivorous or bloodsucking aquatic or terrestrial worms typically having a sucker at each end -01938155 05 n 02 Hirudinidae 0 family_Hirudinidae 0 004 @ 01921559 n 0000 #m 01937719 n 0000 %m 01938312 n 0000 %m 01938618 n 0000 | a family of Hirudinea -01938312 05 n 02 Hirudo 0 genus_Hirudo 0 003 @ 01921887 n 0000 #m 01938155 n 0000 %m 01938454 n 0000 | type genus of the family Hirudinidae -01938454 05 n 02 medicinal_leech 0 Hirudo_medicinalis 0 002 @ 01937909 n 0000 #m 01938312 n 0000 | large European freshwater leech formerly used for bloodletting -01938618 05 n 02 Haemopis 0 genus_Haemopis 0 003 @ 01921887 n 0000 #m 01938155 n 0000 %m 01938735 n 0000 | leeches -01938735 05 n 01 horseleech 0 002 @ 01937909 n 0000 #m 01938618 n 0000 | any of several large freshwater leeches -01938850 05 n 01 mollusk_family 0 038 @ 08107499 n 0000 #m 01313093 n 0000 ~ 01942601 n 0000 ~ 01943213 n 0000 ~ 01944217 n 0000 ~ 01945443 n 0000 ~ 01946118 n 0000 ~ 01947275 n 0000 ~ 01947613 n 0000 ~ 01947874 n 0000 ~ 01948154 n 0000 ~ 01948788 n 0000 ~ 01949195 n 0000 ~ 01949684 n 0000 ~ 01950952 n 0000 ~ 01951721 n 0000 ~ 01952429 n 0000 ~ 01953032 n 0000 ~ 01957075 n 0000 ~ 01957591 n 0000 ~ 01958790 n 0000 ~ 01959187 n 0000 ~ 01959668 n 0000 ~ 01960301 n 0000 ~ 01961736 n 0000 ~ 01962223 n 0000 ~ 01963017 n 0000 ~ 01963730 n 0000 ~ 01964636 n 0000 ~ 01965747 n 0000 ~ 01966797 n 0000 ~ 01967677 n 0000 ~ 01968591 n 0000 ~ 01969893 n 0000 ~ 01970342 n 0000 ~ 01972283 n 0000 ~ 01972733 n 0000 ~ 01973566 n 0000 | a family of mollusks -01939598 05 n 01 mollusk_genus 0 046 @ 08108972 n 0000 #m 01313093 n 0000 ~ 01942724 n 0000 ~ 01943367 n 0000 ~ 01943754 n 0000 ~ 01944617 n 0000 ~ 01945580 n 0000 ~ 01946487 n 0000 ~ 01947020 n 0000 ~ 01948284 n 0000 ~ 01948917 n 0000 ~ 01949330 n 0000 ~ 01949817 n 0000 ~ 01951107 n 0000 ~ 01951472 n 0000 ~ 01951845 n 0000 ~ 01952557 n 0000 ~ 01953197 n 0000 ~ 01954962 n 0000 ~ 01957202 n 0000 ~ 01957739 n 0000 ~ 01957923 n 0000 ~ 01958914 n 0000 ~ 01959333 n 0000 ~ 01959834 n 0000 ~ 01960900 n 0000 ~ 01961468 n 0000 ~ 01961862 n 0000 ~ 01962350 n 0000 ~ 01962662 n 0000 ~ 01963136 n 0000 ~ 01963876 n 0000 ~ 01964821 n 0000 ~ 01965111 n 0000 ~ 01965404 n 0000 ~ 01966204 n 0000 ~ 01966961 n 0000 ~ 01967396 n 0000 ~ 01967812 n 0000 ~ 01968732 n 0000 ~ 01970030 n 0000 ~ 01970502 n 0000 ~ 01971517 n 0000 ~ 01971728 n 0000 ~ 01972411 n 0000 ~ 01972947 n 0000 | a genus of mollusks -01940488 05 n 02 Mollusca 0 phylum_Mollusca 0 008 @ 08102555 n 0000 #m 01313093 n 0000 %m 01940736 n 0000 %m 01941030 n 0000 %m 01941670 n 0000 %m 01954729 n 0000 %m 01955463 n 0000 %m 01968115 n 0000 | gastropods; bivalves; cephalopods; chitons -01940736 05 n 03 mollusk 0 mollusc 0 shellfish 1 009 @ 01905661 n 0000 #m 01940488 n 0000 %p 01903756 n 0000 ~ 01941223 n 0000 ~ 01942177 n 0000 ~ 01955084 n 0000 ~ 01955933 n 0000 ~ 01968315 n 0000 %p 07783210 n 0000 | invertebrate having a soft unsegmented body usually enclosed in a shell -01941030 05 n 02 Scaphopoda 0 class_Scaphopoda 0 003 @ 08103777 n 0000 #m 01940488 n 0000 %m 01941223 n 0000 | small class of bilaterally symmetrical marine forms comprising the tooth shells -01941223 05 n 01 scaphopod 0 003 @ 01940736 n 0000 #m 01941030 n 0000 ~ 01941340 n 0000 | burrowing marine mollusk -01941340 05 n 02 tooth_shell 0 tusk_shell 0 001 @ 01941223 n 0000 | any of various seashore mollusks having a tapering tubular shell open at each end and a foot pointed like a spade for burrowing -01941538 05 n 01 lip 0 001 @ 13903387 n 0000 | either the outer margin or the inner margin of the aperture of a gastropod's shell -01941670 05 n 04 Gastropoda 0 class_Gastropoda 0 Gasteropoda 0 class_Gasteropoda 0 020 @ 08103777 n 0000 #m 01940488 n 0000 %m 01942177 n 0000 %m 01942601 n 0000 %m 01943213 n 0000 %m 01945443 n 0000 %m 01946118 n 0000 %m 01947275 n 0000 %m 01947613 n 0000 %m 01947874 n 0000 %m 01948154 n 0000 %m 01948573 n 0000 %m 01948788 n 0000 %m 01949195 n 0000 %m 01949684 n 0000 %m 01950195 n 0000 %m 01951721 n 0000 %m 01952162 n 0000 %m 01952812 n 0000 %m 01954202 n 0000 | snails and slugs and their relatives -01942177 05 n 02 gastropod 0 univalve 0 014 @ 01940736 n 0000 #m 01941670 n 0000 ~ 01942869 n 0000 ~ 01943899 n 0000 ~ 01944390 n 0000 ~ 01945685 n 0000 ~ 01945845 n 0000 ~ 01949973 n 0000 ~ 01950731 n 0000 ~ 01951274 n 0000 ~ 01952029 n 0000 ~ 01952712 n 0000 ~ 01953361 n 0000 ~ 01954516 n 0000 | a class of mollusks typically having a one-piece coiled shell and flattened muscular foot with a head bearing stalked eyes -01942601 05 n 02 Haliotidae 0 family_Haliotidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01942724 n 0000 | abalones -01942724 05 n 02 Haliotis 0 genus_Haliotis 0 003 @ 01939598 n 0000 #m 01942601 n 0000 %m 01942869 n 0000 | type genus of the family Haliotidae -01942869 05 n 02 abalone 0 ear-shell 0 003 @ 01942177 n 0000 #m 01942724 n 0000 ~ 01943087 n 0000 | any of various large edible marine gastropods of the genus Haliotis having an ear-shaped shell with pearly interior -01943087 05 n 03 ormer 0 sea-ear 0 Haliotis_tuberculata 0 001 @ 01942869 n 0000 | an abalone found near the Channel Islands -01943213 05 n 02 Strombidae 0 family_Strombidae 0 004 @ 01938850 n 0000 #m 01941670 n 0000 %m 01943367 n 0000 %m 01943754 n 0000 | the family of conchs -01943367 05 n 02 Lambis 0 genus_Lambis 0 003 @ 01939598 n 0000 #m 01943213 n 0000 %m 01943541 n 0000 | scorpion shells of shallow tropical waters of the eastern hemisphere -01943541 05 n 01 scorpion_shell 0 002 @ 01944390 n 0000 #m 01943367 n 0000 | any of numerous tropical marine snails that as adults have the outer lip of the aperture produced into a series of long curved spines -01943754 05 n 02 Strombus 0 genus_Strombus 0 003 @ 01939598 n 0000 #m 01943213 n 0000 %m 01943899 n 0000 | type genus of the family Strombidae -01943899 05 n 01 conch 0 003 @ 01942177 n 0000 #m 01943754 n 0000 ~ 01944118 n 0000 | any of various edible tropical marine gastropods of the genus Strombus having a brightly-colored spiral shell with large outer lip -01944118 05 n 02 giant_conch 0 Strombus_gigas 0 001 @ 01943899 n 0000 | a large variety of conch -01944217 05 n 02 Helicidae 0 family_Helicidae 0 003 @ 01938850 n 0000 #m 01952162 n 0000 %m 01944617 n 0000 | land snails including the common edible snail and some pests -01944390 05 n 01 snail 0 005 @ 01942177 n 0000 + 01382917 v 0101 ~ 01943541 n 0000 ~ 01944812 n 0000 ~ 01944955 n 0000 | freshwater or marine or terrestrial gastropod mollusk usually having an external enclosing spiral shell -01944617 05 n 02 Helix 0 genus_Helix 0 006 @ 01939598 n 0000 #m 01944217 n 0000 %m 01944812 n 0000 %m 01944955 n 0000 %m 01945143 n 0000 %m 01945340 n 0000 | type genus of the family Helicidae -01944812 05 n 02 edible_snail 0 Helix_pomatia 0 003 @ 01944390 n 0000 #m 01944617 n 0000 %s 07782475 n 0000 | one of the chief edible snails -01944955 05 n 01 garden_snail 0 004 @ 01944390 n 0000 #m 01944617 n 0000 ~ 01945143 n 0000 ~ 01945340 n 0000 | any of several inedible snails of the genus Helix; often destructive pests -01945143 05 n 02 brown_snail 0 Helix_aspersa 0 002 @ 01944955 n 0000 #m 01944617 n 0000 | serious garden pest having a brown shell with paler zigzag markings; nearly cosmopolitan in distribution -01945340 05 n 01 Helix_hortensis 0 002 @ 01944955 n 0000 #m 01944617 n 0000 | a kind of garden snail -01945443 05 n 02 Limacidae 0 family_Limacidae 0 004 @ 01938850 n 0000 #m 01941670 n 0000 %m 01945580 n 0000 %m 01945685 n 0000 | slugs -01945580 05 n 02 Limax 0 genus_Limax 0 002 @ 01939598 n 0000 #m 01945443 n 0000 | a genus of Limacidae -01945685 05 n 01 slug 0 002 @ 01942177 n 0000 #m 01945443 n 0000 | any of various terrestrial gastropods having an elongated slimy body and no external shell -01945845 05 n 01 seasnail 2 007 @ 01942177 n 0000 ~ 01946277 n 0000 ~ 01947396 n 0000 ~ 01947735 n 0000 ~ 01947997 n 0000 ~ 01948446 n 0000 ~ 01948573 n 0000 | any of several creeping marine gastropods with a spirally coiled shell: whelks; tritons; moon shells; neritids -01946118 05 n 02 Neritidae 0 family_Neritidae 0 005 @ 01938850 n 0000 #m 01941670 n 0000 %m 01946277 n 0000 %m 01946487 n 0000 %m 01947020 n 0000 | neritids -01946277 05 n 02 neritid 0 neritid_gastropod 0 005 @ 01945845 n 0000 #m 01946118 n 0000 ~ 01946630 n 0000 ~ 01946827 n 0000 ~ 01947139 n 0000 | operculate seasnail of coastal waters with a short spiral shell -01946487 05 n 01 genus_Nerita 0 004 @ 01939598 n 0000 #m 01946118 n 0000 %m 01946630 n 0000 %m 01946827 n 0000 | type genus of the Neritidae -01946630 05 n 01 nerita 0 002 @ 01946277 n 0000 #m 01946487 n 0000 | a neritid gastropod having a short smooth or spirally ridged shell with thick usually toothed outer lip and toothed operculum -01946827 05 n 02 bleeding_tooth 0 Nerita_peloronta 0 002 @ 01946277 n 0000 #m 01946487 n 0000 | gastropod having reddish toothlike projections around the shell opening; of the Caribbean area -01947020 05 n 01 genus_Neritina 0 003 @ 01939598 n 0000 #m 01946118 n 0000 %m 01947139 n 0000 | a genus of Neritidae -01947139 05 n 01 neritina 0 002 @ 01946277 n 0000 #m 01947020 n 0000 | ornately marked and brightly colored snails of brackish waters -01947275 05 n 02 Buccinidae 0 family_Buccinidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01947396 n 0000 | whelks -01947396 05 n 01 whelk 0 004 @ 01945845 n 0000 #m 01947275 n 0000 + 01143147 v 0101 %s 07782804 n 0000 | large carnivorous marine gastropods of coastal waters and intertidal regions having a strong snail-like shell -01947613 05 n 02 Cymatiidae 0 family_Cymatiidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01947735 n 0000 | tritons -01947735 05 n 01 triton 2 002 @ 01945845 n 0000 #m 01947613 n 0000 | tropical marine gastropods having beautifully colored spiral shells -01947874 05 n 02 Naticidae 0 family_Naticidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01947997 n 0000 | moonshells -01947997 05 n 02 moon_shell 0 moonshell 0 002 @ 01945845 n 0000 #m 01947874 n 0000 | marine gastropods having smooth rounded shells that form short spires -01948154 05 n 02 Littorinidae 0 family_Littorinidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01948284 n 0000 | periwinkles -01948284 05 n 02 Littorina 0 genus_Littorina 0 003 @ 01939598 n 0000 #m 01948154 n 0000 %m 01948446 n 0000 | type genus of the family Littorinidae: periwinkles -01948446 05 n 02 periwinkle 0 winkle 0 003 @ 01945845 n 0000 #m 01948284 n 0000 %s 07782668 n 0000 | edible marine gastropod -01948573 05 n 01 limpet 0 004 @ 01945845 n 0000 #m 01941670 n 0000 ~ 01949085 n 0000 ~ 01949499 n 0000 | any of various usually marine gastropods with low conical shells; found clinging to rocks in littoral areas -01948788 05 n 02 Patellidae 0 family_Patellidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01948917 n 0000 | marine limpets -01948917 05 n 02 Patella 0 genus_Patella 0 003 @ 01939598 n 0000 #m 01948788 n 0000 %m 01949085 n 0000 | type genus of the family Patellidae: common European limpets -01949085 05 n 02 common_limpet 0 Patella_vulgata 0 002 @ 01948573 n 0000 #m 01948917 n 0000 | marine limpet -01949195 05 n 02 Fissurellidae 0 family_Fissurellidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01949330 n 0000 | marine limpets -01949330 05 n 02 Fissurella 0 genus_Fissurella 0 003 @ 01939598 n 0000 #m 01949195 n 0000 %m 01949499 n 0000 | type genus of the family Fissurellidae: keyhole limpets -01949499 05 n 03 keyhole_limpet 0 Fissurella_apertura 0 Diodora_apertura 0 002 @ 01948573 n 0000 #m 01949330 n 0000 | marine limpet having a conical shell with an opening at the apex -01949684 05 n 02 Ancylidae 0 family_Ancylidae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01949817 n 0000 | freshwater gastropod -01949817 05 n 02 Ancylus 0 genus_Ancylus 0 003 @ 01939598 n 0000 #m 01949684 n 0000 %m 01949973 n 0000 | type genus of the family Ancylidae: river limpet -01949973 05 n 03 river_limpet 0 freshwater_limpet 0 Ancylus_fluviatilis 0 002 @ 01942177 n 0000 #m 01949817 n 0000 | minute conical gastropod superficially resembling a limpet but living and feeding on freshwater plants -01950195 05 n 02 Opisthobranchia 0 subclass_Opisthobranchia 0 003 @ 08103777 n 0000 #m 01941670 n 0000 %m 01950457 n 0000 | gastropods having the gills when present posterior to the heart and having no operculum: includes sea slugs; sea butterflies; sea hares -01950457 05 n 02 Nudibranchia 0 order_Nudibranchia 0 005 @ 01342529 n 0000 #m 01950195 n 0000 %m 01950731 n 0000 %m 01950952 n 0000 %m 01951472 n 0000 | comprising numerous marine gastropod mollusks lacking a shell in the adult state and usually having a body like a slug -01950731 05 n 02 sea_slug 0 nudibranch 0 003 @ 01942177 n 0000 #m 01950457 n 0000 ~ 01951613 n 0000 | any of various marine gastropods of the suborder Nudibranchia having a shell-less and often beautifully colored body -01950952 05 n 04 Aplysiidae 0 family_Aplysiidae 0 Tethyidae 0 family_Tethyidae 0 003 @ 01938850 n 0000 #m 01950457 n 0000 %m 01951107 n 0000 | sea hares -01951107 05 n 04 Aplysia 0 genus_Aplysia 0 Tethys 0 genus_Tethus 0 003 @ 01939598 n 0000 #m 01950952 n 0000 %m 01951274 n 0000 | type genus of the family Aplysiidae -01951274 05 n 02 sea_hare 0 Aplysia_punctata 0 002 @ 01942177 n 0000 #m 01951107 n 0000 | naked marine gastropod having a soft body with reduced internal shell and two pairs of ear-like tentacles -01951472 05 n 02 Hermissenda 0 genus_Hermissenda 0 003 @ 01939598 n 0000 #m 01950457 n 0000 %m 01951613 n 0000 | genus of marine sea slugs -01951613 05 n 01 Hermissenda_crassicornis 0 002 @ 01950731 n 0000 #m 01951472 n 0000 | a kind of sea slug -01951721 05 n 02 Akeridae 0 family_Akeridae 0 003 @ 01938850 n 0000 #m 01941670 n 0000 %m 01951845 n 0000 | bubble shells -01951845 05 n 02 Haminoea 0 genus_Haminoea 0 003 @ 01939598 n 0000 #m 01951721 n 0000 %m 01952029 n 0000 | common genus of marine bubble shells of the Pacific coast of North America -01952029 05 n 01 bubble_shell 0 002 @ 01942177 n 0000 #m 01951845 n 0000 | marine gastropod mollusk having a very small thin shell -01952162 05 n 02 Pulmonata 0 order_Pulmonata 0 004 @ 01342529 n 0000 #m 01941670 n 0000 %m 01944217 n 0000 %m 01952429 n 0000 | large order of gastropods usually breathing by means of a lung-like sac comprising most land snails and slugs and many freshwater snails -01952429 05 n 02 Physidae 0 family_Physidae 0 003 @ 01938850 n 0000 #m 01952162 n 0000 %m 01952557 n 0000 | freshwater snails -01952557 05 n 01 genus_Physa 0 003 @ 01939598 n 0000 #m 01952429 n 0000 %m 01952712 n 0000 | type genus of the Physidae; freshwater air-breathing snails -01952712 05 n 01 physa 0 002 @ 01942177 n 0000 #m 01952557 n 0000 | any member of the genus Physa -01952812 05 n 02 Pectinibranchia 0 order_Pectinibranchia 0 003 @ 01342529 n 0000 #m 01941670 n 0000 %m 01953032 n 0000 | large order of gastropods comprising univalve mollusks that have a single gill resembling a comb -01953032 05 n 02 Cypraeidae 0 family_Cypraeidae 0 003 @ 01938850 n 0000 #m 01952812 n 0000 %m 01953197 n 0000 | family of marine gastropods comprising the cowries -01953197 05 n 02 Cypraea 0 genus_Cypraea 0 003 @ 01939598 n 0000 #m 01953032 n 0000 %m 01953361 n 0000 | type genus of the family Cypraeidae: the typical cowries -01953361 05 n 02 cowrie 0 cowry 0 004 @ 01942177 n 0000 #m 01953197 n 0000 ~ 01953594 n 0000 ~ 01953762 n 0000 | any of numerous tropical marine gastropods of the genus Cypraea having highly polished usually brightly marked shells -01953594 05 n 02 money_cowrie 0 Cypraea_moneta 0 001 @ 01953361 n 0000 | cowrie whose shell is used for money in parts of the southern Pacific and in parts of Africa -01953762 05 n 02 tiger_cowrie 0 Cypraea_tigris 0 001 @ 01953361 n 0000 | cowrie whose shell is used for ornament -01953877 05 n 01 ctenidium 0 001 @ 02510769 n 0000 | comb-like respiratory structure serving as the gill of certain mollusks -01954004 05 n 01 ceras 0 001 @ 02510769 n 0000 | one of the often brightly colored and branching hornlike structures on the back of the nudibranch (and other related mollusks) that serve as gills -01954202 05 n 02 Amphineura 0 subclass_Amphineura 0 003 @ 08103777 n 0000 #m 01941670 n 0000 %m 01954340 n 0000 | a class of Gastropoda -01954340 05 n 04 Solenogastres 0 order_Solenogastres 0 Aplacophora 0 order_Aplacophora 0 003 @ 01342529 n 0000 #m 01954202 n 0000 %m 01954516 n 0000 | an order of Amphineura -01954516 05 n 02 solenogaster 0 aplacophoran 0 002 @ 01942177 n 0000 #m 01954340 n 0000 | deep-water wormlike mollusks lacking calcareous plates on the body but having fine slimy spicules on the covering mantle -01954729 05 n 02 Polyplacophora 0 class_Polyplacophora 0 003 @ 08103777 n 0000 #m 01940488 n 0000 %m 01954962 n 0000 | small class of marine mollusks comprising the chitons; sometimes considered an order of the subclass Amphineura -01954962 05 n 01 genus_Chiton 0 003 @ 01939598 n 0000 #m 01954729 n 0000 %m 01955084 n 0000 | a genus of Polyplacophora -01955084 05 n 04 chiton 0 coat-of-mail_shell 0 sea_cradle 0 polyplacophore 0 002 @ 01940736 n 0000 #m 01954962 n 0000 | primitive elongated bilaterally symmetrical marine mollusk having a mantle covered with eight calcareous plates -01955318 05 n 02 byssus 0 beard 0 001 @ 14866889 n 0000 | tuft of strong filaments by which e.g. a mussel makes itself fast to a fixed surface -01955463 05 n 05 Bivalvia 0 class_Bivalvia 0 Lamellibranchia 0 class_Lamellibranchia 0 class_Pelecypoda 0 017 @ 08103777 n 0000 #m 01940488 n 0000 %m 01955933 n 0000 %m 01956344 n 0000 %m 01956924 n 0000 %m 01959187 n 0000 %m 01959668 n 0000 %m 01960301 n 0000 %m 01961736 n 0000 %m 01962223 n 0000 %m 01962662 n 0000 %m 01963017 n 0000 %m 01963730 n 0000 %m 01964636 n 0000 %m 01965747 n 0000 %m 01966797 n 0000 %m 01967677 n 0000 | oysters; clams; scallops; mussels -01955933 05 n 03 bivalve 0 pelecypod 0 lamellibranch 0 013 @ 01940736 n 0000 #m 01955463 n 0000 + 02484078 a 0202 + 02484078 a 0203 + 02483908 a 0101 ~ 01956481 n 0000 ~ 01959985 n 0000 ~ 01960459 n 0000 ~ 01963317 n 0000 ~ 01963479 n 0000 ~ 01963571 n 0000 ~ 01965889 n 0000 ~ 01967963 n 0000 | marine or freshwater mollusks having a soft body with platelike gills enclosed within two shells hinged together -01956344 05 n 01 spat 0 004 @ 01321579 n 0000 #m 01955463 n 0000 + 00056829 v 0101 + 01538785 v 0101 | a young oyster or other bivalve -01956481 05 n 01 clam 0 009 @ 01955933 n 0000 + 01383947 v 0101 ~ 01957335 n 0000 ~ 01958038 n 0000 ~ 01958531 n 0000 ~ 01959029 n 0000 ~ 01959492 n 0000 ~ 01967094 n 0000 %p 07786686 n 0000 | burrowing marine mollusk living on sand or mud; the shell closes with viselike firmness -01956764 05 n 01 seashell 0 001 @ 01904182 n 0000 | the shell of a marine organism -01956849 05 n 01 clamshell 0 001 @ 01904182 n 0000 | the shell of a clam -01956924 05 n 02 Myaceae 0 order_Myaceae 0 005 @ 01342529 n 0000 #m 01955463 n 0000 %m 01957075 n 0000 %m 01957591 n 0000 %m 01958790 n 0000 | clams -01957075 05 n 02 Myacidae 0 family_Myacidae 0 003 @ 01938850 n 0000 #m 01956924 n 0000 %m 01957202 n 0000 | soft-shell clams -01957202 05 n 02 Mya 0 genus_Mya 0 003 @ 01939598 n 0000 #m 01957075 n 0000 %m 01957335 n 0000 | type genus of the family Myacidae -01957335 05 n 05 soft-shell_clam 0 steamer 0 steamer_clam 0 long-neck_clam 0 Mya_arenaria 0 003 @ 01956481 n 0000 #m 01957202 n 0000 %p 07787429 n 0000 | an edible clam with thin oval-shaped shell found in coastal regions of the United States and Europe -01957591 05 n 02 Veneridae 0 family_Veneridae 0 004 @ 01938850 n 0000 #m 01956924 n 0000 %m 01957739 n 0000 %m 01957923 n 0000 | hard-shell clams -01957739 05 n 02 Venus 0 genus_Venus 0 003 @ 01939598 n 0000 #m 01957591 n 0000 %m 01958038 n 0000 | type genus of the family Veneridae: genus of edible clams with thick oval shells -01957923 05 n 02 Mercenaria 0 genus_Mercenaria 0 002 @ 01939598 n 0000 #m 01957591 n 0000 | a genus of Veneridae -01958038 05 n 07 quahog 0 quahaug 0 hard-shell_clam 0 hard_clam 0 round_clam 0 Venus_mercenaria 0 Mercenaria_mercenaria 0 005 @ 01956481 n 0000 #m 01957739 n 0000 ~ 01958346 n 0000 ~ 01958435 n 0000 %p 07786856 n 0000 | an edible American clam; the heavy shells were used as money by some American Indians -01958346 05 n 02 littleneck 0 littleneck_clam 0 001 @ 01958038 n 0000 | a young quahog -01958435 05 n 02 cherrystone 0 cherrystone_clam 0 001 @ 01958038 n 0000 | a half-grown quahog -01958531 05 n 01 geoduck 0 001 @ 01956481 n 0000 | a large edible clam found burrowing deeply in sandy mud along the Pacific coast of North America; weighs up to six pounds; has siphons that can extend to several feet and cannot be withdrawn into the shell -01958790 05 n 02 Solenidae 0 family_Solenidae 0 003 @ 01938850 n 0000 #m 01956924 n 0000 %m 01958914 n 0000 | razor clams -01958914 05 n 02 Ensis 0 genus_Ensis 0 003 @ 01939598 n 0000 #m 01958790 n 0000 %m 01959029 n 0000 | razor clams -01959029 05 n 03 razor_clam 0 jackknife_clam 0 knife-handle 0 002 @ 01956481 n 0000 #m 01958914 n 0000 | marine clam having a long narrow curved thin shell -01959187 05 n 02 Tridacnidae 0 family_Tridacnidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01959333 n 0000 | large marine hard-shell clams -01959333 05 n 02 Tridacna 0 genus_Tridacna 0 003 @ 01939598 n 0000 #m 01959187 n 0000 %m 01959492 n 0000 | type genus of the family Tridacnidae: giant clams -01959492 05 n 02 giant_clam 0 Tridacna_gigas 0 002 @ 01956481 n 0000 #m 01959333 n 0000 | a large clam inhabiting reefs in the southern Pacific and weighing up to 500 pounds -01959668 05 n 02 Cardiidae 0 family_Cardiidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01959834 n 0000 | somewhat heart-shaped sand-burrowing bivalve mollusks -01959834 05 n 02 Cardium 0 genus_Cardium 0 003 @ 01939598 n 0000 #m 01959668 n 0000 %m 01959985 n 0000 | type genus of the family Cardiidae: cockles -01959985 05 n 01 cockle 0 003 @ 01955933 n 0000 #m 01959834 n 0000 ~ 01960177 n 0000 | common edible, burrowing European bivalve mollusk that has a strong, rounded shell with radiating ribs -01960177 05 n 02 edible_cockle 0 Cardium_edule 0 002 @ 01959985 n 0000 %p 07787613 n 0000 | common edible European cockle -01960301 05 n 02 Ostreidae 0 family_Ostreidae 0 005 @ 01938850 n 0000 #m 01955463 n 0000 %m 01960459 n 0000 %m 01960900 n 0000 %m 01961468 n 0000 | oysters -01960459 05 n 01 oyster 0 011 @ 01955933 n 0000 #m 01960301 n 0000 + 01383511 v 0101 ~ 01960787 n 0000 ~ 01961059 n 0000 ~ 01961234 n 0000 ~ 01961600 n 0000 ~ 01961985 n 0000 ~ 01962506 n 0000 ~ 01962788 n 0000 %p 07786164 n 0000 | marine mollusks having a rough irregular shell; found on the sea bed mostly in coastal waters -01960787 05 n 01 seed_oyster 0 001 @ 01960459 n 0000 | a young oyster especially of a size for transplantation -01960900 05 n 02 Ostrea 0 genus_Ostrea 0 004 @ 01939598 n 0000 #m 01960301 n 0000 %m 01961059 n 0000 %m 01961234 n 0000 | type genus of the family Ostreidae -01961059 05 n 02 bluepoint 0 blue_point 1 003 @ 01960459 n 0000 #m 01960900 n 0000 %p 07786484 n 0000 | small edible oyster typically from the southern shore of Long Island -01961234 05 n 02 Japanese_oyster 0 Ostrea_gigas 0 002 @ 01960459 n 0000 #m 01960900 n 0000 | a large oyster native to Japan and introduced along the Pacific coast of the United States; a candidate for introduction in Chesapeake Bay -01961468 05 n 02 Crassostrea 0 genus_Crassostrea 0 003 @ 01939598 n 0000 #m 01960301 n 0000 %m 01961600 n 0000 | Virginia oysters -01961600 05 n 01 Virginia_oyster 0 002 @ 01960459 n 0000 #m 01961468 n 0000 | common edible oyster of Atlantic coast of North America -01961736 05 n 02 Pteriidae 0 family_Pteriidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01961862 n 0000 | pearl oysters -01961862 05 n 02 Pinctada 0 genus_Pinctada 0 003 @ 01939598 n 0000 #m 01961736 n 0000 %m 01961985 n 0000 | pearl oysters -01961985 05 n 02 pearl_oyster 0 Pinctada_margaritifera 0 002 @ 01960459 n 0000 #m 01961862 n 0000 | tropical marine bivalve found chiefly off eastern Asia and Pacific coast of North America and Central America; a major source of pearls -01962223 05 n 02 Anomiidae 0 family_Anomiidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01962350 n 0000 | saddle oysters -01962350 05 n 02 Anomia 0 genus_Anomia 0 003 @ 01939598 n 0000 #m 01962223 n 0000 %m 01962506 n 0000 | type genus of the family Anomiidae: saddle oysters -01962506 05 n 02 saddle_oyster 0 Anomia_ephippium 0 002 @ 01960459 n 0000 #m 01962350 n 0000 | thin-shelled bivalve having the right valve deeply notched -01962662 05 n 02 Placuna 0 genus_Placuna 0 003 @ 01939598 n 0000 #m 01955463 n 0000 %m 01962788 n 0000 | windowpane oysters -01962788 05 n 04 window_oyster 0 windowpane_oyster 0 capiz 0 Placuna_placenta 0 002 @ 01960459 n 0000 #m 01962662 n 0000 | marine bivalve common in Philippine coastal waters characterized by a large thin flat translucent shell -01963017 05 n 02 Arcidae 0 family_Arcidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01963136 n 0000 | ark shells -01963136 05 n 02 Arca 0 genus_Arca 0 004 @ 01939598 n 0000 #m 01963017 n 0000 %m 01963317 n 0000 %m 01963479 n 0000 | type genus of the family Arcidae: ark shells and blood clams -01963317 05 n 01 ark_shell 0 002 @ 01955933 n 0000 #m 01963136 n 0000 | marine bivalve mollusk having a heavy toothed shell with a deep boat-like inner surface -01963479 05 n 01 blood_clam 0 002 @ 01955933 n 0000 #m 01963136 n 0000 | red-blooded clam -01963571 05 n 01 mussel 0 003 @ 01955933 n 0000 ~ 01964049 n 0000 ~ 01964441 n 0000 | marine or freshwater bivalve mollusk that lives attached to rocks etc. -01963730 05 n 02 Mytilidae 0 family_Mytilidae 0 004 @ 01938850 n 0000 #m 01955463 n 0000 %m 01963876 n 0000 %m 01964049 n 0000 | marine mussels -01963876 05 n 02 Mytilus 0 genus_Mytilus 0 003 @ 01939598 n 0000 #m 01963730 n 0000 %m 01964271 n 0000 | type genus of the family Mytilidae: smooth-shelled marine mussels -01964049 05 n 02 marine_mussel 0 mytilid 0 003 @ 01963571 n 0000 #m 01963730 n 0000 ~ 01964271 n 0000 | marine bivalve mollusk having a dark elongated shell; live attached to solid objects especially in intertidal zones -01964271 05 n 02 edible_mussel 0 Mytilus_edulis 0 003 @ 01964049 n 0000 #m 01963876 n 0000 %p 07783550 n 0000 | a mussel with a dark shell that lives attached to rocks -01964441 05 n 02 freshwater_mussel 0 freshwater_clam 0 004 @ 01963571 n 0000 ~ 01964957 n 0000 ~ 01965252 n 0000 ~ 01965529 n 0000 | bivalve mollusk abundant in rivers of central United States -01964636 05 n 02 Unionidae 0 family_Unionidae 0 005 @ 01938850 n 0000 #m 01955463 n 0000 %m 01964821 n 0000 %m 01965111 n 0000 %m 01965404 n 0000 | freshwater mussels found worldwide -01964821 05 n 02 Unio 0 genus_Unio 0 003 @ 01939598 n 0000 #m 01964636 n 0000 %m 01964957 n 0000 | type genus of the family Unionidae -01964957 05 n 01 pearly-shelled_mussel 0 002 @ 01964441 n 0000 #m 01964821 n 0000 | the pearly lining of the dark shells is a source of mother-of-pearl -01965111 05 n 02 Anodonta 0 genus_Anodonta 0 003 @ 01939598 n 0000 #m 01964636 n 0000 %m 01965252 n 0000 | thin-shelled freshwater mussels -01965252 05 n 01 thin-shelled_mussel 0 002 @ 01964441 n 0000 #m 01965111 n 0000 | mussel with thin fragile shells having only rudimentary hinge teeth -01965404 05 n 02 Dreissena 0 genus_Dreissena 0 003 @ 01939598 n 0000 #m 01964636 n 0000 %m 01965529 n 0000 | zebra mussels -01965529 05 n 02 zebra_mussel 0 Dreissena_polymorpha 0 002 @ 01964441 n 0000 #m 01965404 n 0000 | inch long mollusk imported accidentally from Europe; clogs utility inlet pipes and feeds on edible freshwater mussels -01965747 05 n 02 Pectinidae 0 family_Pectinidae 0 004 @ 01938850 n 0000 #m 01955463 n 0000 %m 01965889 n 0000 %m 01966204 n 0000 | scallops -01965889 05 n 03 scallop 0 scollop 0 escallop 0 007 @ 01955933 n 0000 #m 01965747 n 0000 + 01140315 v 0202 + 01140315 v 0101 ~ 01966377 n 0000 ~ 01966586 n 0000 %p 07797641 n 0000 | edible marine bivalve having a fluted fan-shaped shell that swim by expelling water from the shell in a series of snapping motions -01966204 05 n 01 genus_Pecten 0 004 @ 01939598 n 0000 #m 01965747 n 0000 %m 01966377 n 0000 %m 01966586 n 0000 | type genus of the family Pectinidae: sea and bay scallops -01966377 05 n 02 bay_scallop 0 Pecten_irradians 0 003 @ 01965889 n 0000 #m 01966204 n 0000 %p 07798025 n 0000 | a small scallop inhabiting shallow waters and mud flats of the Atlantic coast of North America -01966586 05 n 03 sea_scallop 0 giant_scallop 0 Pecten_magellanicus 0 003 @ 01965889 n 0000 #m 01966204 n 0000 %p 07797913 n 0000 | a large scallop inhabiting deep waters of the Atlantic coast of North America -01966797 05 n 02 Teredinidae 0 family_Teredinidae 0 005 @ 01938850 n 0000 #m 01955463 n 0000 %m 01966961 n 0000 %m 01967094 n 0000 %m 01967396 n 0000 | shipworms -01966961 05 n 01 genus_Teredo 0 003 @ 01939598 n 0000 #m 01966797 n 0000 %m 01967308 n 0000 | type genus of the family Teredinidae -01967094 05 n 02 shipworm 0 teredinid 0 004 @ 01956481 n 0000 #m 01966797 n 0000 ~ 01967308 n 0000 ~ 01967517 n 0000 | wormlike marine bivalve that bores into wooden piers and ships by means of drill-like shells -01967308 05 n 01 teredo 0 002 @ 01967094 n 0000 #m 01966961 n 0000 | typical shipworm -01967396 05 n 02 Bankia 0 genus_Bankia 0 003 @ 01939598 n 0000 #m 01966797 n 0000 %m 01967517 n 0000 | giant shipworms -01967517 05 n 02 giant_northwest_shipworm 0 Bankia_setaceae 0 002 @ 01967094 n 0000 #m 01967396 n 0000 | giant shipworm of the Pacific coast of North America -01967677 05 n 02 Pholadidae 0 family_Pholadidae 0 003 @ 01938850 n 0000 #m 01955463 n 0000 %m 01967812 n 0000 | a family of Bivalvia -01967812 05 n 02 Pholas 0 genus_Pholas 0 003 @ 01939598 n 0000 #m 01967677 n 0000 %m 01967963 n 0000 | type genus of the family Pholadidae: piddocks -01967963 05 n 01 piddock 0 002 @ 01955933 n 0000 #m 01967812 n 0000 | marine bivalve that bores into rock or clay or wood by means of saw-like shells -01968115 05 n 02 Cephalopoda 0 class_Cephalopoda 0 005 @ 08103777 n 0000 #m 01940488 n 0000 %m 01968315 n 0000 %m 01968591 n 0000 %m 01969103 n 0000 | octopuses; squids; cuttlefish; pearly nautilus -01968315 05 n 02 cephalopod 0 cephalopod_mollusk 0 007 @ 01940736 n 0000 #m 01968115 n 0000 + 02688369 a 0101 ~ 01968897 n 0000 ~ 01969429 n 0000 ~ 01969726 n 0000 ~ 01971094 n 0000 | marine mollusk characterized by well-developed head and eyes and sucker-bearing tentacles -01968591 05 n 02 Nautilidae 0 family_Nautilidae 0 003 @ 01938850 n 0000 #m 01968115 n 0000 %m 01968732 n 0000 | spiral-shelled cephalopods -01968732 05 n 01 genus_Nautilus 0 003 @ 01939598 n 0000 #m 01968591 n 0000 %m 01968897 n 0000 | type genus and sole recent representative of the family Nautilidae -01968897 05 n 03 chambered_nautilus 0 pearly_nautilus 0 nautilus 1 002 @ 01968315 n 0000 #m 01968732 n 0000 | cephalopod of the Indian and Pacific oceans having a spiral shell with pale pearly partitions -01969103 05 n 04 Dibranchiata 0 subclass_Dibranchiata 0 Dibranchia 0 subclass_Dibranchia 0 005 @ 08103777 n 0000 #m 01968115 n 0000 %m 01969550 n 0000 %m 01970866 n 0000 %m 01973375 n 0000 | comprising all living cephalopods except the family Nautilidae: the orders Octopoda (octopuses) and Decapoda (squids and cuttlefish) -01969429 05 n 03 dibranchiate 0 dibranchiate_mollusk 0 dibranch 0 001 @ 01968315 n 0000 | cephalopods having two gills -01969550 05 n 02 Octopoda 0 order_Octopoda 0 005 @ 01342529 n 0000 #m 01969103 n 0000 %m 01969726 n 0000 %m 01969893 n 0000 %m 01970342 n 0000 | octopuses and paper nautilus -01969726 05 n 01 octopod 0 004 @ 01968315 n 0000 #m 01969550 n 0000 ~ 01970164 n 0000 ~ 01970667 n 0000 | a cephalopod with eight arms but lacking an internal shell -01969893 05 n 02 Octopodidae 0 family_Octopodidae 0 003 @ 01938850 n 0000 #m 01969550 n 0000 %m 01970030 n 0000 | a family of Octopoda -01970030 05 n 01 genus_Octopus 0 003 @ 01939598 n 0000 #m 01969893 n 0000 %m 01970164 n 0000 | type genus of the family Octopodidae -01970164 05 n 02 octopus 0 devilfish 1 003 @ 01969726 n 0000 #m 01970030 n 0000 %p 07782365 n 0000 | bottom-living cephalopod having a soft oval body with eight long tentacles -01970342 05 n 02 Argonautidae 0 family_Argonautidae 0 003 @ 01938850 n 0000 #m 01969550 n 0000 %m 01970502 n 0000 | represented solely by the genus Argonauta -01970502 05 n 02 Argonauta 0 genus_Argonauta 0 003 @ 01939598 n 0000 #m 01970342 n 0000 %m 01970667 n 0000 | type genus of the family Argonautidae: paper nautilus -01970667 05 n 04 paper_nautilus 0 nautilus 2 Argonaut 0 Argonauta_argo 0 002 @ 01969726 n 0000 #m 01970502 n 0000 | cephalopod mollusk of warm seas whose females have delicate papery spiral shells -01970866 05 n 02 Decapoda 2 order_Decapoda 2 008 @ 01342529 n 0000 #m 01969103 n 0000 %m 01971094 n 0000 %m 01971517 n 0000 %m 01971728 n 0000 %m 01972017 n 0000 %m 01972283 n 0000 %m 01972733 n 0000 | squids and cuttlefishes -01971094 05 n 01 decapod 2 005 @ 01968315 n 0000 #m 01970866 n 0000 ~ 01971280 n 0000 ~ 01972541 n 0000 ~ 01973148 n 0000 | cephalopods having eight short tentacles plus two long ones -01971280 05 n 01 squid 0 005 @ 01971094 n 0000 ~ 01971620 n 0000 ~ 01971850 n 0000 ~ 01972131 n 0000 %p 07781801 n 0000 | widely distributed fast-moving ten-armed cephalopod mollusk having a long tapered body with triangular tail fins -01971517 05 n 01 genus_Loligo 0 003 @ 01939598 n 0000 #m 01970866 n 0000 %m 01971620 n 0000 | squids -01971620 05 n 01 loligo 0 002 @ 01971280 n 0000 #m 01971517 n 0000 | somewhat flattened cylindrical squid -01971728 05 n 01 genus_Ommastrephes 0 003 @ 01939598 n 0000 #m 01970866 n 0000 %m 01971850 n 0000 | a genus of Decapoda -01971850 05 n 01 ommastrephes 0 002 @ 01971280 n 0000 #m 01971728 n 0000 | extremely active cylindrical squid with short strong arms and large rhombic terminal fins -01972017 05 n 01 genus_Architeuthis 0 003 @ 01762525 n 0000 #m 01970866 n 0000 %m 01972131 n 0000 | giant squid -01972131 05 n 02 architeuthis 0 giant_squid 0 002 @ 01971280 n 0000 #m 01972017 n 0000 | largest mollusk known about but never seen (to 60 feet long) -01972283 05 n 02 Sepiidae 0 family_Sepiidae 0 003 @ 01938850 n 0000 #m 01970866 n 0000 %m 01972411 n 0000 | true cuttlefishes -01972411 05 n 02 Sepia 0 genus_Sepia 0 003 @ 01939598 n 0000 #m 01972283 n 0000 %m 01972541 n 0000 | type genus of the Sepiidae -01972541 05 n 02 cuttlefish 0 cuttle 0 002 @ 01971094 n 0000 #m 01972411 n 0000 | ten-armed oval-bodied cephalopod with narrow fins as long as the body and a large calcareous internal shell -01972733 05 n 02 Spirulidae 0 family_Spirulidae 0 003 @ 01938850 n 0000 #m 01970866 n 0000 %m 01972947 n 0000 | coextensive with the genus Spirula; included in the order Belemnoidea in some older classifications -01972947 05 n 01 genus_Spirula 0 003 @ 01939598 n 0000 #m 01972733 n 0000 %m 01973148 n 0000 | genus of small cephalopods with many-chambered spiral shells resembling those of the extinct belemnites -01973148 05 n 02 spirula 0 Spirula_peronii 0 002 @ 01971094 n 0000 #m 01972947 n 0000 | a small tropical cephalopod of the genus Spirula having prominent eyes and short arms and a many-chambered shell coiled in a flat spiral -01973375 05 n 02 Belemnoidea 0 order_Belemnoidea 0 003 @ 01342529 n 0000 #m 01969103 n 0000 %m 01973566 n 0000 | order of extinct dibranchiate cephalopods related to the surviving spirulas -01973566 05 n 02 Belemnitidae 0 family_Belemnitidae 0 003 @ 01938850 n 0000 #m 01973375 n 0000 %m 01973723 n 0000 | family of extinct Mesozoic cephalopods -01973723 05 n 01 belemnite 0 003 @ 09284589 n 0000 #m 01973566 n 0000 + 02661099 a 0101 | a conical calcareous fossil tapering to a point at one end and with a conical cavity at the other end containing (when unbroken) a small chambered phragmocone from the shell of any of numerous extinct cephalopods of the family Belemnitidae -01974055 05 n 02 craw 0 crop 0 001 @ 05395690 n 0000 | a pouch in many birds and some lower animals that resembles a stomach for storage and preliminary maceration of food -01974229 05 n 03 gizzard 0 ventriculus 0 gastric_mill 0 001 @ 05516848 n 0000 | thick-walled muscular pouch below the crop in many birds and reptiles for grinding food -01974399 05 n 02 Crustacea 0 class_Crustacea 0 011 @ 08103777 n 0000 #m 01767199 n 0000 + 02706160 a 0101 %m 01974773 n 0000 %m 01975312 n 0000 %m 01989701 n 0000 %m 01993949 n 0000 %m 01994176 n 0000 %m 01996392 n 0000 %m 01997698 n 0000 %m 01998019 n 0000 | class of mandibulate arthropods including: lobsters; crabs; shrimps; woodlice; barnacles; decapods; water fleas -01974773 05 n 01 crustacean 0 012 @ 01767661 n 0000 #m 01974399 n 0000 %p 01975117 n 0000 ~ 01975687 n 0000 ~ 01976146 n 0000 ~ 01976868 n 0000 ~ 01989869 n 0000 ~ 01994492 n 0000 ~ 01996585 n 0000 ~ 01997825 n 0000 ~ 01998183 n 0000 %p 02156532 n 0000 | any mainly aquatic arthropod usually having a segmented body and chitinous exoskeleton -01975117 05 n 01 green_gland 0 002 @ 05327767 n 0000 #p 01974773 n 0000 | one of a pair of glands (believed to have excretory functions) in some crustaceans near the base of the large antennae -01975312 05 n 02 Malacostraca 0 subclass_Malacostraca 0 008 @ 08103777 n 0000 #m 01974399 n 0000 %m 01975687 n 0000 %m 01975880 n 0000 %m 01988481 n 0000 %m 01988971 n 0000 %m 01990627 n 0000 %m 01992516 n 0000 | largest subclass of Crustacea including most of the well-known marine, freshwater, and terrestrial crustaceans: crabs; lobsters; shrimps; sow bugs; beach flies -01975687 05 n 01 malacostracan_crustacean 0 006 @ 01974773 n 0000 #m 01975312 n 0000 ~ 01988701 n 0000 ~ 01989516 n 0000 ~ 01990800 n 0000 ~ 01992773 n 0000 | a major subclass of crustaceans -01975880 05 n 02 Decapoda 1 order_Decapoda 1 009 @ 01342529 n 0000 #m 01975312 n 0000 %m 01976146 n 0000 %m 01982482 n 0000 %m 01983958 n 0000 %m 01984416 n 0000 %m 01984958 n 0000 %m 01985947 n 0000 %m 01986367 n 0000 | lobsters; crayfish; crabs; shrimps; prawns -01976146 05 n 02 decapod_crustacean 0 decapod 1 009 @ 01974773 n 0000 #m 01975880 n 0000 ~ 01976957 n 0000 ~ 01982650 n 0000 ~ 01985128 n 0000 ~ 01986214 n 0000 ~ 01986806 n 0000 ~ 01987545 n 0000 ~ 01988203 n 0000 | crustaceans characteristically having five pairs of locomotor appendages each joined to a segment of the thorax -01976477 05 n 02 Brachyura 0 suborder_Brachyura 0 012 @ 01342529 n 0000 #m 01982482 n 0000 + 02669373 a 0101 %m 01976868 n 0000 %m 01976957 n 0000 %m 01977366 n 0000 %m 01977684 n 0000 %m 01978744 n 0000 %m 01980053 n 0000 %m 01980328 n 0000 %m 01980993 n 0000 %m 01981543 n 0000 | an order of crustaceans (including true crabs) having a reduced abdomen folded against the ventral surface -01976868 05 n 01 brachyuran 0 002 @ 01974773 n 0000 #m 01976477 n 0000 | typical crabs -01976957 05 n 01 crab 0 014 @ 01976146 n 0000 #m 01976477 n 0000 + 01140065 v 0101 ~ 01977485 n 0000 ~ 01978010 n 0000 ~ 01978136 n 0000 ~ 01978287 n 0000 ~ 01978455 n 0000 ~ 01978587 n 0000 ~ 01978930 n 0000 ~ 01980166 n 0000 ~ 01980655 n 0000 ~ 01981276 n 0000 ~ 01981702 n 0000 | decapod having eyes on short stalks and a broad flattened carapace with a small abdomen folded under the thorax and pincers -01977366 05 n 02 Menippe 0 genus_Menippe 0 003 @ 01762525 n 0000 #m 01976477 n 0000 %m 01977485 n 0000 | stone crabs -01977485 05 n 02 stone_crab 0 Menippe_mercenaria 0 003 @ 01976957 n 0000 #m 01977366 n 0000 %p 07788730 n 0000 | large edible crab of the southern coast of the United States (particularly Florida) -01977684 05 n 02 Cancridae 0 family_Cancridae 0 003 @ 01759182 n 0000 #m 01976477 n 0000 %m 01977832 n 0000 | many of the best known edible crabs -01977832 05 n 02 Cancer 0 genus_Cancer 0 005 @ 01762525 n 0000 #m 01977684 n 0000 %m 01978287 n 0000 %m 01978455 n 0000 %m 01978587 n 0000 | type genus of the family Cancridae -01978010 05 n 01 hard-shell_crab 0 001 @ 01976957 n 0000 | edible crab that has not recently molted and so has a hard shell -01978136 05 n 02 soft-shell_crab 0 soft-shelled_crab 0 001 @ 01976957 n 0000 | edible crab that has recently molted and not yet formed its new shell -01978287 05 n 02 Dungeness_crab 0 Cancer_magister 0 003 @ 01976957 n 0000 #m 01977832 n 0000 %p 07788609 n 0000 | small edible crab of Pacific coast of North America -01978455 05 n 02 rock_crab 0 Cancer_irroratus 0 002 @ 01976957 n 0000 #m 01977832 n 0000 | crab of eastern coast of North America -01978587 05 n 02 Jonah_crab 0 Cancer_borealis 0 002 @ 01976957 n 0000 #m 01977832 n 0000 | large red deep-water crab of the eastern coast of North America -01978744 05 n 02 Portunidae 0 family_Portunidae 0 006 @ 01759182 n 0000 #m 01976477 n 0000 %m 01978930 n 0000 %m 01979124 n 0000 %m 01979395 n 0000 %m 01979738 n 0000 | swimming crabs -01978930 05 n 01 swimming_crab 0 005 @ 01976957 n 0000 #m 01978744 n 0000 ~ 01979269 n 0000 ~ 01979526 n 0000 ~ 01979874 n 0000 | marine crab with some legs flattened and fringed for swimming -01979124 05 n 02 Portunus 0 genus_Portunus 0 003 @ 01762525 n 0000 #m 01978744 n 0000 %m 01979269 n 0000 | type genus of the family Portunidae -01979269 05 n 02 English_lady_crab 0 Portunus_puber 0 002 @ 01978930 n 0000 #m 01979124 n 0000 | crab of the English coasts -01979395 05 n 02 Ovalipes 0 genus_Ovalipes 0 003 @ 01762525 n 0000 #m 01978744 n 0000 %m 01979526 n 0000 | a genus of Portunidae -01979526 05 n 04 American_lady_crab 0 lady_crab 0 calico_crab 0 Ovalipes_ocellatus 0 002 @ 01978930 n 0000 #m 01979395 n 0000 | brightly spotted crab of sandy beaches of the Atlantic coast of the United States -01979738 05 n 02 Callinectes 0 genus_Callinectes 0 003 @ 01762525 n 0000 #m 01978744 n 0000 %m 01979874 n 0000 | New World blue crabs -01979874 05 n 02 blue_crab 0 Callinectes_sapidus 0 003 @ 01978930 n 0000 #m 01979738 n 0000 %p 07787980 n 0000 | bluish edible crab of Atlantic and Gulf Coasts of North America -01980053 05 n 02 Uca 0 genus_Uca 0 003 @ 01762525 n 0000 #m 01976477 n 0000 %m 01980166 n 0000 | fiddler crabs -01980166 05 n 01 fiddler_crab 0 002 @ 01976957 n 0000 #m 01980053 n 0000 | burrowing crab of American coastal regions having one claw much enlarged in the male -01980328 05 n 02 Pinnotheridae 0 family_Pinnotheridae 0 003 @ 01759182 n 0000 #m 01976477 n 0000 %m 01980471 n 0000 | tiny soft-bodied crabs -01980471 05 n 02 Pinnotheres 0 genus_Pinnotheres 0 004 @ 01762525 n 0000 #m 01980328 n 0000 %m 01980655 n 0000 %m 01980830 n 0000 | type genus of the family Pinnotheridae: pea crabs -01980655 05 n 01 pea_crab 0 003 @ 01976957 n 0000 #m 01980471 n 0000 ~ 01980830 n 0000 | tiny soft-bodied crab living commensally in the mantles of certain bivalve mollusks -01980830 05 n 02 oyster_crab 0 Pinnotheres_ostreum 0 002 @ 01980655 n 0000 #m 01980471 n 0000 | tiny soft-bodied crab living within the mantle cavity of oysters -01980993 05 n 02 Lithodidae 0 family_Lithodidae 0 003 @ 01759182 n 0000 #m 01976477 n 0000 %m 01981137 n 0000 | deep-sea crabs of cold waters -01981137 05 n 02 Paralithodes 0 genus_Paralithodes 0 003 @ 01762525 n 0000 #m 01980993 n 0000 %m 01981276 n 0000 | a genus of Lithodidae -01981276 05 n 05 king_crab 1 Alaska_crab 0 Alaskan_king_crab 0 Alaska_king_crab 0 Paralithodes_camtschatica 0 003 @ 01976957 n 0000 #m 01981137 n 0000 %p 07788435 n 0000 | large edible crab of northern Pacific waters especially along the coasts of Alaska and Japan -01981543 05 n 02 Majidae 0 family_Majidae 0 005 @ 01759182 n 0000 #m 01976477 n 0000 %m 01981702 n 0000 %m 01981884 n 0000 %m 01982211 n 0000 | spider crabs -01981702 05 n 01 spider_crab 0 004 @ 01976957 n 0000 #m 01981543 n 0000 ~ 01982068 n 0000 ~ 01982347 n 0000 | any of numerous crabs with very long legs and small triangular bodies -01981884 05 n 04 Maja 0 genus_Maja 0 Maia 0 genus_Maia 0 003 @ 01762525 n 0000 #m 01981543 n 0000 %m 01982068 n 0000 | type genus of the Majidae; nearly cosmopolitan in distribution -01982068 05 n 03 European_spider_crab 0 king_crab 3 Maja_squinado 0 002 @ 01981702 n 0000 #m 01981884 n 0000 | a large spider crab of Europe -01982211 05 n 02 Macrocheira 0 genus_Macrocheira 0 003 @ 01762525 n 0000 #m 01981543 n 0000 %m 01982347 n 0000 | giant crabs of Japan -01982347 05 n 02 giant_crab 0 Macrocheira_kaempferi 0 002 @ 01981702 n 0000 #m 01982211 n 0000 | very large deep-water Japanese crab -01982482 05 n 02 Reptantia 0 suborder_Reptantia 0 005 @ 01342529 n 0000 #m 01975880 n 0000 %m 01976477 n 0000 %m 01982650 n 0000 %m 01982895 n 0000 | lobsters; crabs -01982650 05 n 01 lobster 0 006 @ 01976146 n 0000 #m 01982482 n 0000 ~ 01983048 n 0000 ~ 01984245 n 0000 ~ 01984695 n 0000 %p 02585446 n 0000 | any of several edible marine crustaceans of the families Homaridae and Nephropsidae and Palinuridae -01982895 05 n 02 Homaridae 0 family_Homaridae 0 004 @ 01759182 n 0000 #m 01982482 n 0000 %m 01983048 n 0000 %m 01983277 n 0000 | large-clawed lobsters -01983048 05 n 01 true_lobster 0 006 @ 01982650 n 0000 #m 01982895 n 0000 ~ 01983481 n 0000 ~ 01983674 n 0000 ~ 01983829 n 0000 %p 07792725 n 0000 | large edible marine crustaceans having large pincers on the first pair of legs -01983277 05 n 02 Homarus 0 genus_Homarus 0 005 @ 01762525 n 0000 #m 01982895 n 0000 %m 01983481 n 0000 %m 01983674 n 0000 %m 01983829 n 0000 | type genus of the family Homaridae: common edible lobsters -01983481 05 n 04 American_lobster 0 Northern_lobster 0 Maine_lobster 0 Homarus_americanus 0 003 @ 01983048 n 0000 #m 01983277 n 0000 %p 07792926 n 0000 | lobster of Atlantic coast of America -01983674 05 n 02 European_lobster 0 Homarus_vulgaris 0 003 @ 01983048 n 0000 #m 01983277 n 0000 %m 07793133 n 0000 | lobster of Atlantic coast of Europe -01983829 05 n 02 Cape_lobster 0 Homarus_capensis 0 002 @ 01983048 n 0000 #m 01983277 n 0000 | small lobster of southern Africa -01983958 05 n 02 Nephropsidae 0 family_Nephropsidae 0 003 @ 01759182 n 0000 #m 01975880 n 0000 %m 01984131 n 0000 | in some classifications coextensive with the Homaridae -01984131 05 n 02 Nephrops 0 genus_Nephrops 0 002 @ 01762525 n 0000 #m 01983958 n 0000 | a genus of Nephropsidae -01984245 05 n 02 Norway_lobster 0 Nephrops_norvegicus 0 002 @ 01982650 n 0000 %p 07793521 n 0000 | edible European lobster resembling the American lobster but slenderer -01984416 05 n 02 Palinuridae 0 family_Palinuridae 0 003 @ 01759182 n 0000 #m 01975880 n 0000 %m 01984547 n 0000 | spiny lobsters -01984547 05 n 02 Palinurus 0 genus_Palinurus 0 003 @ 01762525 n 0000 #m 01984416 n 0000 %m 01984695 n 0000 | type genus of the family Palinuridae -01984695 05 n 06 spiny_lobster 0 langouste 0 rock_lobster 0 crawfish 1 crayfish 1 sea_crawfish 0 003 @ 01982650 n 0000 #m 01984547 n 0000 %p 07793260 n 0000 | large edible marine crustacean having a spiny carapace but lacking the large pincers of true lobsters -01984958 05 n 03 Astacidae 0 family_Astacidae 0 Astacura 0 005 @ 01759182 n 0000 #m 01975880 n 0000 %m 01985128 n 0000 %m 01985331 n 0000 %m 01985667 n 0000 | crayfish -01985128 05 n 04 crayfish 2 crawfish 2 crawdad 0 crawdaddy 0 004 @ 01976146 n 0000 #m 01984958 n 0000 ~ 01985493 n 0000 ~ 01985797 n 0000 | small freshwater decapod crustacean that resembles a lobster -01985331 05 n 02 Astacus 0 genus_Astacus 0 003 @ 01762525 n 0000 #m 01984958 n 0000 %m 01985493 n 0000 | type genus of the family Astacidae; Old World crayfish -01985493 05 n 02 Old_World_crayfish 0 ecrevisse 0 003 @ 01985128 n 0000 #m 01985331 n 0000 %p 07788885 n 0000 | small crayfish of Europe and Asia and western North America -01985667 05 n 02 Cambarus 0 genus_Cambarus 0 003 @ 01762525 n 0000 #m 01984958 n 0000 %m 01985797 n 0000 | a genus of Astacidae -01985797 05 n 01 American_crayfish 0 003 @ 01985128 n 0000 #m 01985667 n 0000 %p 07788885 n 0000 | common large crayfishes of eastern North America -01985947 05 n 02 Paguridae 0 family_Paguridae 0 003 @ 01759182 n 0000 #m 01975880 n 0000 %m 01986072 n 0000 | hermit crabs -01986072 05 n 02 Pagurus 0 genus_Pagurus 0 003 @ 01762525 n 0000 #m 01985947 n 0000 %m 01986214 n 0000 | type genus of the family Paguridae -01986214 05 n 01 hermit_crab 0 002 @ 01976146 n 0000 #m 01986072 n 0000 | small soft-bodied marine crustaceans living in cast-off shells of gastropods -01986367 05 n 02 Natantia 0 suborder_Natantia 0 005 @ 01342529 n 0000 #m 01975880 n 0000 %m 01986538 n 0000 %m 01987228 n 0000 %m 01987938 n 0000 | shrimp; prawns; etc. -01986538 05 n 02 Crangonidae 0 family_Crangonidae 0 004 @ 01759182 n 0000 #m 01986367 n 0000 %m 01986681 n 0000 %m 01986806 n 0000 | shrimps -01986681 05 n 02 Crangon 0 genus_Crangon 0 002 @ 01762525 n 0000 #m 01986538 n 0000 | type genus of the family Crangonidae -01986806 05 n 01 shrimp 0 006 @ 01976146 n 0000 #m 01986538 n 0000 + 01142070 v 0101 ~ 01987076 n 0000 %p 02585446 n 0000 %p 07794159 n 0000 | small slender-bodied chiefly marine decapod crustaceans with a long tail and single pair of pincers; many species are edible -01987076 05 n 02 snapping_shrimp 0 pistol_shrimp 0 001 @ 01986806 n 0000 | small shrimp that makes a snapping noise with one of their enlarged chelae -01987228 05 n 02 Palaemonidae 0 family_Palaemonidae 0 003 @ 01759182 n 0000 #m 01986367 n 0000 %m 01987353 n 0000 | prawns -01987353 05 n 02 Palaemon 0 genus_Palaemon 0 004 @ 01762525 n 0000 #m 01987228 n 0000 %m 01987545 n 0000 %m 01987727 n 0000 | type genus of the family Palaemonidae; widely distributed genus -01987545 05 n 01 prawn 0 004 @ 01976146 n 0000 #m 01987353 n 0000 + 01382606 v 0101 ~ 01987727 n 0000 | shrimp-like decapod crustacean having two pairs of pincers; most are edible -01987727 05 n 03 long-clawed_prawn 0 river_prawn 0 Palaemon_australis 0 003 @ 01987545 n 0000 #m 01987353 n 0000 %p 07794353 n 0000 | large (a foot or more) edible freshwater prawn common in Australian rivers -01987938 05 n 02 Peneidae 0 family_Peneidae 0 003 @ 01759182 n 0000 #m 01986367 n 0000 %m 01988064 n 0000 | tropical prawns -01988064 05 n 02 Peneus 0 genus_Peneus 0 003 @ 01762525 n 0000 #m 01987938 n 0000 %m 01988203 n 0000 | type genus of the family Peneidae -01988203 05 n 01 tropical_prawn 0 002 @ 01976146 n 0000 #m 01988064 n 0000 | edible tropical and warm-water prawn -01988319 05 n 01 Schizopoda 0 001 @ 01342529 n 0000 | in former classifications a division of Malacostraca; superseded by the orders Mysidacea and Euphausiacea -01988481 05 n 02 Euphausiacea 0 order_Euphausiacea 0 004 @ 01342529 n 0000 #m 01975312 n 0000 %m 01988701 n 0000 %m 01988869 n 0000 | small commonly luminescent crustaceans; important element of marine plankton: krill -01988701 05 n 01 krill 0 003 @ 01975687 n 0000 #m 01988481 n 0000 ~ 01988869 n 0000 | shrimp-like planktonic crustaceans; major source of food for e.g. baleen whales -01988869 05 n 01 Euphausia_pacifica 0 002 @ 01988701 n 0000 #m 01988481 n 0000 | food for jellyfish -01988971 05 n 02 Mysidacea 0 order_Mysidacea 0 003 @ 01342529 n 0000 #m 01975312 n 0000 %m 01989097 n 0000 | opossum shrimp -01989097 05 n 02 Mysidae 0 family_Mysidae 0 004 @ 01759182 n 0000 #m 01988971 n 0000 %m 01989254 n 0000 %m 01989390 n 0000 | small shrimp-like crustaceans -01989254 05 n 02 Mysis 0 genus_Mysis 0 003 @ 01762525 n 0000 #m 01989097 n 0000 %m 01989516 n 0000 | type genus of the family Mysidae -01989390 05 n 02 Praunus 0 genus_Praunus 0 003 @ 01762525 n 0000 #m 01989097 n 0000 %m 01989516 n 0000 | a genus of Mysidae -01989516 05 n 01 opossum_shrimp 0 003 @ 01975687 n 0000 #m 01989254 n 0000 #m 01989390 n 0000 | shrimp-like crustaceans whose females carry eggs and young in a pouch between the legs -01989701 05 n 02 Stomatopoda 0 order_Stomatopoda 0 005 @ 01342529 n 0000 #m 01974399 n 0000 %m 01989869 n 0000 %m 01990007 n 0000 %m 01990186 n 0000 | mantis shrimps -01989869 05 n 02 stomatopod 0 stomatopod_crustacean 0 003 @ 01974773 n 0000 #m 01989701 n 0000 ~ 01990007 n 0000 | a kind of crustacean -01990007 05 n 02 mantis_shrimp 0 mantis_crab 0 003 @ 01989869 n 0000 #m 01989701 n 0000 ~ 01990516 n 0000 | tropical marine burrowing crustaceans with large grasping appendages -01990186 05 n 02 Squillidae 0 family_Squillidae 0 003 @ 01759182 n 0000 #m 01989701 n 0000 %m 01990383 n 0000 | crustaceans that burrow in mud or under stones in shallow water along the seashore -01990383 05 n 01 genus_Squilla 0 003 @ 01762525 n 0000 #m 01990186 n 0000 %m 01990516 n 0000 | type genus of the family Squillidae -01990516 05 n 02 squilla 0 mantis_prawn 0 002 @ 01990007 n 0000 #m 01990383 n 0000 | a kind of mantis shrimp -01990627 05 n 02 Isopoda 0 order_Isopoda 0 006 @ 01342529 n 0000 #m 01975312 n 0000 %m 01990800 n 0000 %m 01991233 n 0000 %m 01991676 n 0000 %m 01991982 n 0000 | woodlice -01990800 05 n 01 isopod 0 005 @ 01975687 n 0000 #m 01990627 n 0000 ~ 01991028 n 0000 ~ 01992423 n 0000 %p 02585446 n 0000 | any of various small terrestrial or aquatic crustaceans with seven pairs of legs adapted for crawling -01991028 05 n 02 woodlouse 1 slater 1 003 @ 01990800 n 0000 ~ 01991520 n 0000 ~ 01992262 n 0000 | any of various small terrestrial isopods having a flat elliptical segmented body; found in damp habitats -01991233 05 n 02 Armadillidiidae 0 family_Armadillidiidae 0 003 @ 01759182 n 0000 #m 01990627 n 0000 %m 01991367 n 0000 | pill bugs -01991367 05 n 02 Armadillidium 0 genus_Armadillidium 0 003 @ 01762525 n 0000 #m 01991233 n 0000 %m 01991520 n 0000 | type genus of the Armadillidiidae -01991520 05 n 01 pill_bug 0 002 @ 01991028 n 0000 #m 01991367 n 0000 | small terrestrial isopod with a convex segmented body that can roll up into a ball -01991676 05 n 02 Oniscidae 0 family_Oniscidae 0 003 @ 01759182 n 0000 #m 01990627 n 0000 %m 01991808 n 0000 | a family of Isopoda -01991808 05 n 02 Oniscus 0 genus_Oniscus 0 003 @ 01762525 n 0000 #m 01991676 n 0000 %m 01992262 n 0000 | type genus of the Oniscidae; woodlice that cannot roll into a ball -01991982 05 n 02 Porcellionidae 0 family_Porcellionidae 0 003 @ 01759182 n 0000 #m 01990627 n 0000 %m 01992113 n 0000 | sow bugs -01992113 05 n 02 Porcellio 0 genus_Porcellio 0 003 @ 01762525 n 0000 #m 01991982 n 0000 %m 01992262 n 0000 | Old World genus of isopod crustaceans -01992262 05 n 01 sow_bug 0 003 @ 01991028 n 0000 #m 01992113 n 0000 #m 01991808 n 0000 | terrestrial isopod having an oval segmented body (a shape like a sow) -01992423 05 n 02 sea_louse 0 sea_slater 0 001 @ 01990800 n 0000 | marine isopod crustacean -01992516 05 n 02 Amphipoda 0 order_Amphipoda 0 006 @ 01342529 n 0000 #m 01975312 n 0000 %m 01992773 n 0000 %m 01992935 n 0000 %m 01993400 n 0000 %m 01993714 n 0000 | small flat-bodied semiterrestrial crustaceans: whale lice; sand-hoppers; skeleton shrimp -01992773 05 n 01 amphipod 0 005 @ 01975687 n 0000 #m 01992516 n 0000 ~ 01993214 n 0000 ~ 01993525 n 0000 ~ 01993830 n 0000 | a kind of malacostracan crustacean -01992935 05 n 02 Orchestiidae 0 family_Orchestiidae 0 003 @ 01759182 n 0000 #m 01992516 n 0000 %m 01993065 n 0000 | beach fleas -01993065 05 n 02 Orchestia 0 genus_Orchestia 0 003 @ 01762525 n 0000 #m 01992935 n 0000 %m 01993214 n 0000 | type genus of the family Orchestiidae -01993214 05 n 04 beach_flea 0 sand_hopper 0 sandhopper 0 sand_flea 0 002 @ 01992773 n 0000 #m 01993065 n 0000 | small amphipod crustaceans that hop like fleas; common on ocean beaches -01993400 05 n 02 Caprella 0 genus_Caprella 0 003 @ 01762525 n 0000 #m 01992516 n 0000 %m 01993525 n 0000 | skeleton shrimp -01993525 05 n 01 skeleton_shrimp 0 002 @ 01992773 n 0000 #m 01993400 n 0000 | small amphipod crustacean having a grotesque form suggestive of the praying mantis; found chiefly on seaweed -01993714 05 n 02 Cyamus 0 genus_Cyamus 0 003 @ 01762525 n 0000 #m 01992516 n 0000 %m 01993830 n 0000 | whale lice -01993830 05 n 01 whale_louse 0 002 @ 01992773 n 0000 #m 01993714 n 0000 | amphipod crustacean parasitic on cetaceans -01993949 05 n 02 Entomostraca 0 subclass_Entomostraca 0 002 @ 08103777 n 0000 #m 01974399 n 0000 | in some older classifications includes the Branchiopoda and Copepoda and Ostracoda and Cirripedia; no longer in technical use -01994176 05 n 02 Branchiopoda 0 subclass_Branchiopoda 0 007 @ 08103777 n 0000 #m 01974399 n 0000 + 02670202 a 0103 %m 01994801 n 0000 %m 01995137 n 0000 %m 01995803 n 0000 %m 01996091 n 0000 | primitive aquatic mainly freshwater crustaceans: fairy shrimps; brine shrimps; tadpole shrimps; can shrimps; water fleas -01994492 05 n 03 branchiopod_crustacean 0 branchiopod 0 branchiopodan 0 005 @ 01974773 n 0000 ~ 01994910 n 0000 ~ 01995514 n 0000 ~ 01995686 n 0000 ~ 01996280 n 0000 | aquatic crustaceans typically having a carapace and many pairs of leaflike appendages used for swimming as well as respiration and feeding -01994801 05 n 01 genus_Daphnia 0 003 @ 01762525 n 0000 #m 01994176 n 0000 %m 01994910 n 0000 | water fleas -01994910 05 n 02 daphnia 0 water_flea 1 002 @ 01994492 n 0000 #m 01994801 n 0000 | minute freshwater crustacean having a round body enclosed in a transparent shell; moves about like a flea by means of hairy branched antennae -01995137 05 n 02 Anostraca 0 order_Anostraca 0 003 @ 01342529 n 0000 #m 01994176 n 0000 %m 01995323 n 0000 | small aquatic crustaceans lacking a carapace: fairy shrimps; brine shrimps -01995323 05 n 04 Artemia 0 genus_Artemia 0 Chirocephalus 0 genus_Chirocephalus 0 004 @ 01762525 n 0000 #m 01995137 n 0000 %m 01995514 n 0000 %m 01995686 n 0000 | fairy shrimp; brine shrimp -01995514 05 n 01 fairy_shrimp 0 002 @ 01994492 n 0000 #m 01995323 n 0000 | small freshwater branchiopod having a transparent body with many appendages; swims on its back -01995686 05 n 02 brine_shrimp 0 Artemia_salina 0 002 @ 01994492 n 0000 #m 01995323 n 0000 | common to saline lakes -01995803 05 n 02 Notostraca 0 order_Notostraca 0 003 @ 01342529 n 0000 #m 01994176 n 0000 %m 01995975 n 0000 | small freshwater crustaceans with a shield-shaped carapace -01995975 05 n 02 Triopidae 0 family_Triopidae 0 002 @ 01759182 n 0000 #m 01995803 n 0000 | a family of Notostraca -01996091 05 n 02 Triops 0 genus_Triops 0 003 @ 01762525 n 0000 #m 01994176 n 0000 %m 01996280 n 0000 | type genus of the family Triopidae: small crustaceans with a small third median eye -01996280 05 n 01 tadpole_shrimp 0 002 @ 01994492 n 0000 #m 01996091 n 0000 | a kind of branchiopod crustacean -01996392 05 n 02 Copepoda 0 subclass_Copepoda 0 005 @ 08103777 n 0000 #m 01974399 n 0000 %m 01996585 n 0000 %m 01997002 n 0000 %m 01997436 n 0000 | minute planktonic or parasitic crustaceans -01996585 05 n 02 copepod 0 copepod_crustacean 0 006 @ 01974773 n 0000 #m 01996392 n 0000 #p 01383638 n 0000 ~ 01996895 n 0000 ~ 01997119 n 0000 ~ 01997605 n 0000 | minute marine or freshwater crustaceans usually having six pairs of limbs on the thorax; some abundant in plankton and others parasitic on fish -01996895 05 n 02 brit 2 britt 2 001 @ 01996585 n 0000 | minute crustaceans forming food for right whales -01997002 05 n 01 genus_Cyclops 0 003 @ 01762525 n 0000 #m 01996392 n 0000 %m 01997119 n 0000 | copepod water fleas -01997119 05 n 02 cyclops 0 water_flea 2 002 @ 01996585 n 0000 #m 01997002 n 0000 | minute free-swimming freshwater copepod having a large median eye and pear-shaped body and long antennae used in swimming; important in some food chains and as intermediate hosts of parasitic worms that affect man e.g. Guinea worms -01997436 05 n 02 Branchiura 0 order_Branchiura 0 003 @ 01342529 n 0000 #m 01996392 n 0000 %m 01997605 n 0000 | copepods with suctorial mouthparts; parasitic on fishes -01997605 05 n 01 fish_louse 0 002 @ 01996585 n 0000 #m 01997436 n 0000 | a kind of copepod -01997698 05 n 02 Ostracoda 0 subclass_Ostracoda 0 003 @ 08103777 n 0000 #m 01974399 n 0000 %m 01997825 n 0000 | seed shrimps -01997825 05 n 03 seed_shrimp 0 mussel_shrimp 0 ostracod 0 002 @ 01974773 n 0000 #m 01997698 n 0000 | tiny marine and freshwater crustaceans with a shrimp-like body enclosed in a bivalve shell -01998019 05 n 02 Cirripedia 0 subclass_Cirripedia 0 005 @ 08103777 n 0000 #m 01974399 n 0000 %m 01998183 n 0000 %m 01998467 n 0000 %m 01998920 n 0000 | barnacles -01998183 05 n 03 barnacle 1 cirriped 0 cirripede 0 004 @ 01974773 n 0000 #m 01998019 n 0000 ~ 01998741 n 0000 ~ 01999186 n 0000 | marine crustaceans with feathery food-catching appendages; free-swimming as larvae; as adults form a hard shell and live attached to submerged surfaces -01998467 05 n 02 Balanidae 0 family_Balanidae 0 003 @ 01759182 n 0000 #m 01998019 n 0000 %m 01998599 n 0000 | stalkless barnacles -01998599 05 n 02 Balanus 0 genus_Balanus 0 003 @ 01762525 n 0000 #m 01998467 n 0000 %m 01998741 n 0000 | type genus of the family Balanidae -01998741 05 n 03 acorn_barnacle 0 rock_barnacle 0 Balanus_balanoides 0 002 @ 01998183 n 0000 #m 01998599 n 0000 | barnacle that attaches to rocks especially in intertidal zones -01998920 05 n 02 Lepadidae 0 family_Lepadidae 0 003 @ 01759182 n 0000 #m 01998019 n 0000 %m 01999048 n 0000 | goose barnacles -01999048 05 n 02 Lepas 0 genus_Lepas 0 003 @ 01762525 n 0000 #m 01998920 n 0000 %m 01999186 n 0000 | type genus of the family Lepadidae -01999186 05 n 03 goose_barnacle 0 gooseneck_barnacle 0 Lepas_fascicularis 0 002 @ 01998183 n 0000 #m 01999048 n 0000 | stalked barnacle that attaches to ship bottoms or floating timbers -01999374 05 n 02 Onychophora 0 class_Onychophora 0 005 @ 08103777 n 0000 #m 01767199 n 0000 %m 01999767 n 0000 %m 02000036 n 0000 %m 02000618 n 0000 | enigmatic small elongated wormlike terrestrial invertebrates of damp dark habitats in warm regions; distinct from the phylum Annelida; resemble slugs with legs and are sometimes described as the missing link between arthropods and annelids -01999767 05 n 03 onychophoran 0 velvet_worm 0 peripatus 0 003 @ 01767661 n 0000 #m 01999374 n 0000 ~ 02000502 n 0000 | any of numerous velvety-skinned wormlike carnivorous animals common in tropical forests having characteristics of both arthropods and annelid worms -02000036 05 n 02 Peripatidae 0 family_Peripatidae 0 004 @ 01759182 n 0000 #m 01999374 n 0000 %m 02000195 n 0000 %m 02000354 n 0000 | a family of Onychophora -02000195 05 n 01 genus_Peripatus 0 002 @ 01762525 n 0000 #m 02000036 n 0000 | type genus of Peripatidae; onychophorans of chiefly New World tropical regions -02000354 05 n 02 Plicatoperipatus 0 genus_Plicatoperipatus 0 003 @ 01762525 n 0000 #m 02000036 n 0000 %m 02000502 n 0000 | a genus of Peripatidae -02000502 05 n 01 Plicatoperipatus_jamaicensis 0 002 @ 01999767 n 0000 #m 02000354 n 0000 | a kind of onychophoran -02000618 05 n 02 Peripatopsidae 0 family_Peripatopsidae 0 003 @ 01759182 n 0000 #m 01999374 n 0000 %m 02000764 n 0000 | a family of Onychophora -02000764 05 n 02 Peripatopsis 0 genus_Peripatopsis 0 002 @ 01762525 n 0000 #m 02000618 n 0000 | type genus of Peripatopsidae; onychophorans of chiefly Asiatic and African tropical regions -02000954 05 n 02 wading_bird 0 wader 1 020 @ 01844917 n 0000 + 01916214 v 0201 ~ 02002075 n 0000 ~ 02005399 n 0000 ~ 02005790 n 0000 ~ 02006656 n 0000 ~ 02007558 n 0000 ~ 02008041 n 0000 ~ 02012849 n 0000 ~ 02013567 n 0000 ~ 02013706 n 0000 ~ 02014237 n 0000 ~ 02014524 n 0000 ~ 02014941 n 0000 ~ 02018795 n 0000 ~ 02019929 n 0000 ~ 02020345 n 0000 ~ 02020578 n 0000 ~ 02021050 n 0000 ~ 02022684 n 0000 | any of many long-legged birds that wade in water in search of food -02001428 05 n 02 Ciconiiformes 0 order_Ciconiiformes 0 008 @ 01342529 n 0000 #m 01502262 n 0000 %m 02001821 n 0000 %m 02005102 n 0000 %m 02005598 n 0000 %m 02006510 n 0000 %m 02007422 n 0000 %m 02007721 n 0000 | order of chiefly tropical marsh-dwelling fish-eating wading birds with long legs and bills and (except for flamingos) unwebbed feet: herons; storks; spoonbills; flamingos; ibises -02001821 05 n 02 Ciconiidae 0 family_Ciconiidae 0 010 @ 01504437 n 0000 #m 02001428 n 0000 %m 02002075 n 0000 %m 02002384 n 0000 %m 02002875 n 0000 %m 02003456 n 0000 %m 02003735 n 0000 %m 02003994 n 0000 %m 02004343 n 0000 %m 02004661 n 0000 | storks -02002075 05 n 01 stork 0 011 @ 02000954 n 0000 #m 02001821 n 0000 ~ 02002556 n 0000 ~ 02002724 n 0000 ~ 02003037 n 0000 ~ 02003204 n 0000 ~ 02003577 n 0000 ~ 02003839 n 0000 ~ 02004131 n 0000 ~ 02004492 n 0000 ~ 02004855 n 0000 | large mostly Old World wading birds typically having white-and-black plumage -02002384 05 n 02 Ciconia 0 genus_Ciconia 0 004 @ 01507175 n 0000 #m 02001821 n 0000 %m 02002556 n 0000 %m 02002724 n 0000 | type genus of the Ciconiidae: European storks -02002556 05 n 02 white_stork 0 Ciconia_ciconia 0 002 @ 02002075 n 0000 #m 02002384 n 0000 | the common stork of Europe; white with black wing feathers and a red bill -02002724 05 n 02 black_stork 0 Ciconia_nigra 0 002 @ 02002075 n 0000 #m 02002384 n 0000 | Old World stork that is glossy black above and white below -02002875 05 n 02 Leptoptilus 0 genus_Leptoptilus 0 004 @ 01507175 n 0000 #m 02001821 n 0000 %m 02003037 n 0000 %m 02003204 n 0000 | adjutant birds and marabous -02003037 05 n 04 adjutant_bird 0 adjutant 0 adjutant_stork 0 Leptoptilus_dubius 0 002 @ 02002075 n 0000 #m 02002875 n 0000 | large Indian stork with a military gait -02003204 05 n 04 marabou 1 marabout 0 marabou_stork 0 Leptoptilus_crumeniferus 0 003 @ 02002075 n 0000 #m 02002875 n 0000 %p 01897851 n 0000 | large African black-and-white carrion-eating stork; its downy underwing feathers are used to trim garments -02003456 05 n 02 Anastomus 0 genus_Anastomus 0 003 @ 01507175 n 0000 #m 02001821 n 0000 %m 02003577 n 0000 | openbills -02003577 05 n 01 openbill 0 002 @ 02002075 n 0000 #m 02003456 n 0000 | stork with a grooved bill whose upper and lower parts touch only at the base and tip -02003735 05 n 01 genus_Jabiru 0 003 @ 01507175 n 0000 #m 02001821 n 0000 %m 02003839 n 0000 | jabirus -02003839 05 n 02 jabiru 1 Jabiru_mycteria 0 002 @ 02002075 n 0000 #m 02003735 n 0000 | large white stork of warm regions of the world especially America -02003994 05 n 02 Ephippiorhynchus 0 genus_Ephippiorhynchus 0 003 @ 01507175 n 0000 #m 02001821 n 0000 %m 02004131 n 0000 | saddlebills -02004131 05 n 03 saddlebill 0 jabiru 2 Ephippiorhynchus_senegalensis 0 002 @ 02002075 n 0000 #m 02003994 n 0000 | large black-and-white stork of tropical Africa; its red bill has a black band around the middle -02004343 05 n 02 Xenorhyncus 0 genus_Xenorhyncus 0 003 @ 01507175 n 0000 #m 02001821 n 0000 %m 02004492 n 0000 | East Indian and Australian storks -02004492 05 n 04 policeman_bird 0 black-necked_stork 0 jabiru 3 Xenorhyncus_asiaticus 0 002 @ 02002075 n 0000 #m 02004343 n 0000 | large mostly white Australian stork -02004661 05 n 02 Mycteria 0 genus_Mycteria 0 003 @ 01507175 n 0000 #m 02001821 n 0000 %m 02004855 n 0000 | a genus of storks of the family Ciconiidae now including only the American wood ibis -02004855 05 n 04 wood_ibis 1 wood_stork 1 flinthead 0 Mycteria_americana 0 002 @ 02002075 n 0000 #m 02004661 n 0000 | an American stork that resembles the true ibises in having a downward-curved bill; inhabits wooded swamps of New World tropics -02005102 05 n 02 Balaenicipitidae 0 family_Balaenicipitidae 0 003 @ 01504437 n 0000 #m 02001428 n 0000 %m 02005238 n 0000 | shoebills -02005238 05 n 02 Balaeniceps 0 genus_Balaeniceps 0 003 @ 01507175 n 0000 #m 02005102 n 0000 %m 02005399 n 0000 | type genus of the Balaenicipitidae: shoebills -02005399 05 n 03 shoebill 0 shoebird 0 Balaeniceps_rex 0 002 @ 02000954 n 0000 #m 02005238 n 0000 | large stork-like bird of the valley of the White Nile with a broad bill suggesting a wooden shoe -02005598 05 n 03 Threskiornithidae 0 family_Threskiornithidae 0 family_Ibidiidae 0 005 @ 01504437 n 0000 #m 02001428 n 0000 %m 02005790 n 0000 %m 02005962 n 0000 %m 02006211 n 0000 | ibises -02005790 05 n 01 ibis 0 004 @ 02000954 n 0000 #m 02005598 n 0000 ~ 02006063 n 0000 ~ 02006364 n 0000 | wading birds of warm regions having long slender down-curved bills -02005962 05 n 01 genus_Ibis 0 003 @ 01507175 n 0000 #m 02005598 n 0000 %m 02006063 n 0000 | ibises -02006063 05 n 03 wood_ibis 2 wood_stork 2 Ibis_ibis 0 002 @ 02005790 n 0000 #m 02005962 n 0000 | any of several Old World birds of the genus Ibis -02006211 05 n 02 Threskiornis 0 genus_Threskiornis 0 003 @ 01507175 n 0000 #m 02005598 n 0000 %m 02006364 n 0000 | type genus of the Threskiornithidae -02006364 05 n 02 sacred_ibis 0 Threskiornis_aethiopica 0 002 @ 02005790 n 0000 #m 02006211 n 0000 | African ibis venerated by ancient Egyptians -02006510 05 n 02 Plataleidae 0 family_Plataleidae 0 004 @ 01504437 n 0000 #m 02001428 n 0000 %m 02006656 n 0000 %m 02006827 n 0000 | spoonbills -02006656 05 n 01 spoonbill 0 004 @ 02000954 n 0000 #m 02006510 n 0000 ~ 02006985 n 0000 ~ 02007284 n 0000 | wading birds having a long flat bill with a tip like a spoon -02006827 05 n 02 Platalea 0 genus_Platalea 0 004 @ 01507175 n 0000 #m 02006510 n 0000 %m 02006985 n 0000 %m 02007161 n 0000 | type genus of the Plataleidae -02006985 05 n 02 common_spoonbill 0 Platalea_leucorodia 0 002 @ 02006656 n 0000 #m 02006827 n 0000 | pure white crested spoonbill of southern Eurasia and northeastern Africa -02007161 05 n 02 Ajaia 0 genus_Ajaia 0 003 @ 01507175 n 0000 #m 02006827 n 0000 %m 02007284 n 0000 | a genus of Platalea -02007284 05 n 02 roseate_spoonbill 0 Ajaia_ajaja 0 002 @ 02006656 n 0000 #m 02007161 n 0000 | tropical rose-colored New World spoonbill -02007422 05 n 02 Phoenicopteridae 0 family_Phoenicopteridae 0 003 @ 01504437 n 0000 #m 02001428 n 0000 %m 02007558 n 0000 | flamingos -02007558 05 n 01 flamingo 0 002 @ 02000954 n 0000 #m 02007422 n 0000 | large pink to scarlet web-footed wading bird with down-bent bill; inhabits brackish lakes -02007721 05 n 02 Ardeidae 0 family_Ardeidae 0 012 @ 01504437 n 0000 #m 02001428 n 0000 %m 02008041 n 0000 %m 02008316 n 0000 %m 02009015 n 0000 %m 02009620 n 0000 %m 02010144 n 0000 %m 02010592 n 0000 %m 02010881 n 0000 %m 02011156 n 0000 %m 02011668 n 0000 %m 02012063 n 0000 | herons; egrets; night herons; bitterns -02008041 05 n 01 heron 0 009 @ 02000954 n 0000 #m 02007721 n 0000 ~ 02008497 n 0000 ~ 02008643 n 0000 ~ 02008796 n 0000 ~ 02009229 n 0000 ~ 02010453 n 0000 ~ 02011281 n 0000 ~ 02011460 n 0000 | grey or white wading bird with long neck and long legs and (usually) long bill -02008316 05 n 02 Ardea 0 genus_Ardea 0 004 @ 01507175 n 0000 #m 02007721 n 0000 %m 02008497 n 0000 %m 02008643 n 0000 | type genus of the Ardeidae: large New and Old World herons -02008497 05 n 02 great_blue_heron 0 Ardea_herodius 0 002 @ 02008041 n 0000 #m 02008316 n 0000 | large American heron having bluish-grey plumage -02008643 05 n 02 great_white_heron 1 Ardea_occidentalis 0 002 @ 02008041 n 0000 #m 02008316 n 0000 | large white heron of Florida and the Florida Keys -02008796 05 n 01 egret 0 006 @ 02008041 n 0000 ~ 02009380 n 0000 ~ 02009508 n 0000 ~ 02009750 n 0000 ~ 02009912 n 0000 ~ 02010272 n 0000 | any of various usually white herons having long plumes during breeding season -02009015 05 n 02 Egretta 0 genus_Egretta 0 007 @ 01507175 n 0000 #m 02007721 n 0000 %m 02009229 n 0000 %m 02009380 n 0000 %m 02009508 n 0000 %m 02009750 n 0000 %m 02009912 n 0000 | small Old and New World herons -02009229 05 n 02 little_blue_heron 0 Egretta_caerulea 0 002 @ 02008041 n 0000 #m 02009015 n 0000 | small bluish-grey heron of the western hemisphere -02009380 05 n 03 snowy_egret 0 snowy_heron 0 Egretta_thula 0 002 @ 02008796 n 0000 #m 02009015 n 0000 | small New World egret -02009508 05 n 02 little_egret 0 Egretta_garzetta 0 002 @ 02008796 n 0000 #m 02009015 n 0000 | Old World egret -02009620 05 n 02 Casmerodius 0 genus_Casmerodius 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02009750 n 0000 | a white egrets -02009750 05 n 02 great_white_heron 2 Casmerodius_albus 0 003 @ 02008796 n 0000 #m 02009620 n 0000 #m 02009015 n 0000 | widely distributed Old World white egret -02009912 05 n 03 American_egret 0 great_white_heron 3 Egretta_albus 0 002 @ 02008796 n 0000 #m 02009015 n 0000 | a common egret of the genus Egretta found in America; it is a variety of the Old World white egret Casmerodius albus -02010144 05 n 02 Bubulcus 0 genus_Bubulcus 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02010272 n 0000 | small white egrets -02010272 05 n 02 cattle_egret 0 Bubulcus_ibis 0 002 @ 02008796 n 0000 #m 02010144 n 0000 | small white egret widely distributed in warm regions often found around grazing animals -02010453 05 n 02 night_heron 0 night_raven 2 003 @ 02008041 n 0000 ~ 02010728 n 0000 ~ 02011016 n 0000 | nocturnal or crepuscular herons -02010592 05 n 02 Nycticorax 0 genus_Nycticorax 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02010728 n 0000 | Old World night herons -02010728 05 n 02 black-crowned_night_heron 0 Nycticorax_nycticorax 0 002 @ 02010453 n 0000 #m 02010592 n 0000 | night heron of both Old and New Worlds -02010881 05 n 02 Nyctanassa 0 genus_Nyctanassa 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02011016 n 0000 | American night herons -02011016 05 n 02 yellow-crowned_night_heron 0 Nyctanassa_violacea 0 002 @ 02010453 n 0000 #m 02010881 n 0000 | North American night heron -02011156 05 n 02 Cochlearius 0 genus_Cochlearius 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02011281 n 0000 | boatbills -02011281 05 n 04 boatbill 0 boat-billed_heron 0 broadbill 4 Cochlearius_cochlearius 0 002 @ 02008041 n 0000 #m 02011156 n 0000 | tropical American heron related to night herons -02011460 05 n 01 bittern 0 004 @ 02008041 n 0000 ~ 02011805 n 0000 ~ 02011943 n 0000 ~ 02012185 n 0000 | relatively small compact tawny-brown heron with nocturnal habits and a booming cry; found in marshes -02011668 05 n 02 Botaurus 0 genus_Botaurus 0 004 @ 01507175 n 0000 #m 02007721 n 0000 %m 02011805 n 0000 %m 02011943 n 0000 | bitterns -02011805 05 n 03 American_bittern 0 stake_driver 0 Botaurus_lentiginosus 0 002 @ 02011460 n 0000 #m 02011668 n 0000 | a kind of bittern -02011943 05 n 02 European_bittern 0 Botaurus_stellaris 0 002 @ 02011460 n 0000 #m 02011668 n 0000 | a kind of bittern -02012063 05 n 02 Ixobrychus 0 genus_Ixobrychus 0 003 @ 01507175 n 0000 #m 02007721 n 0000 %m 02012185 n 0000 | bitterns -02012185 05 n 02 least_bittern 0 Ixobrychus_exilis 0 002 @ 02011460 n 0000 #m 02012063 n 0000 | small American bittern -02012306 05 n 02 Gruiformes 0 order_Gruiformes 0 012 @ 01342529 n 0000 #m 01502262 n 0000 %m 02012715 n 0000 %m 02013362 n 0000 %m 02013567 n 0000 %m 02013706 n 0000 %m 02013889 n 0000 %m 02014646 n 0000 %m 02018485 n 0000 %m 02018638 n 0000 %m 02019566 n 0000 %m 02020777 n 0000 | inland marsh-dwelling birds with long legs and necks and bills that wade in water in search of food: cranes; rails; bustards -02012715 05 n 02 Gruidae 0 family_Gruidae 0 004 @ 01504437 n 0000 #m 02012306 n 0000 %m 02012849 n 0000 %m 02013034 n 0000 | cranes -02012849 05 n 01 crane 0 004 @ 02000954 n 0000 #m 02012715 n 0000 + 00028167 v 0101 ~ 02013177 n 0000 | large long-necked wading bird of marshes and plains in many parts of the world -02013034 05 n 02 Grus 0 genus_Grus 0 003 @ 01507175 n 0000 #m 02012715 n 0000 %m 02013177 n 0000 | type genus of the Gruidae: typical cranes -02013177 05 n 03 whooping_crane 0 whooper 1 Grus_americana 0 002 @ 02012849 n 0000 #m 02013034 n 0000 | rare North American crane having black-and-white plumage and a trumpeting call -02013362 05 n 02 Aramus 0 genus_Aramus 0 002 @ 01507175 n 0000 #m 02012306 n 0000 | genus of large brown long-billed wading birds found in warm swampy regions of the western hemisphere: courlan; limpkin -02013567 05 n 02 courlan 0 Aramus_guarauna 0 002 @ 02000954 n 0000 #m 02012306 n 0000 | wading bird of South America and Central America -02013706 05 n 02 limpkin 0 Aramus_pictus 0 002 @ 02000954 n 0000 #m 02012306 n 0000 | wading bird of Florida, Cuba and Jamaica having a drooping bill and a distinctive wailing call -02013889 05 n 02 Cariamidae 0 family_Cariamidae 0 004 @ 01504437 n 0000 #m 02012306 n 0000 %m 02014061 n 0000 %m 02014406 n 0000 | crane-like South American wading birds -02014061 05 n 02 Cariama 0 genus_Cariama 0 003 @ 01507175 n 0000 #m 02013889 n 0000 %m 02014237 n 0000 | the type genus of the Cariamidae comprising only the crested cariama -02014237 05 n 03 crested_cariama 0 seriema 1 Cariama_cristata 0 002 @ 02000954 n 0000 #m 02014061 n 0000 | Brazilian Cariama; sole representative of the genus Cariama -02014406 05 n 01 genus_Chunga 0 003 @ 01507175 n 0000 #m 02013889 n 0000 %m 02014524 n 0000 | a genus of Cariamidae -02014524 05 n 03 chunga 0 seriema 2 Chunga_burmeisteri 0 002 @ 02000954 n 0000 #m 02014406 n 0000 | Argentinian Cariama -02014646 05 n 02 Rallidae 0 family_Rallidae 0 011 @ 01504437 n 0000 #m 02012306 n 0000 %m 02014941 n 0000 %m 02015221 n 0000 %m 02015685 n 0000 %m 02015944 n 0000 %m 02016198 n 0000 %m 02017093 n 0000 %m 02017335 n 0000 %m 02017607 n 0000 %m 02017878 n 0000 | rails; crakes; gallinules; coots -02014941 05 n 01 rail 0 006 @ 02000954 n 0000 #m 02014646 n 0000 ~ 02015357 n 0000 ~ 02015554 n 0000 ~ 02017725 n 0000 ~ 02018027 n 0000 | any of numerous widely distributed small wading birds of the family Rallidae having short wings and very long toes for running on soft mud -02015221 05 n 02 Gallirallus 0 genus_Gallirallus 0 003 @ 01507175 n 0000 #m 02014646 n 0000 %m 02015357 n 0000 | rails of New Zealand -02015357 05 n 03 weka 0 maori_hen 0 wood_hen 0 002 @ 02014941 n 0000 #m 02015221 n 0000 | flightless New Zealand rail of thievish disposition having short wings each with a spur used in fighting -02015554 05 n 01 crake 0 003 @ 02014941 n 0000 ~ 02015797 n 0000 ~ 02016066 n 0000 | any of several short-billed Old World rails -02015685 05 n 02 Crex 0 genus_Crex 0 003 @ 01507175 n 0000 #m 02014646 n 0000 %m 02015797 n 0000 | corncrakes -02015797 05 n 03 corncrake 0 land_rail 0 Crex_crex 0 002 @ 02015554 n 0000 #m 02015685 n 0000 | common Eurasian rail that frequents grain fields -02015944 05 n 02 Porzana 0 genus_Porzana 0 003 @ 01507175 n 0000 #m 02014646 n 0000 %m 02016066 n 0000 | spotted crakes -02016066 05 n 02 spotted_crake 0 Porzana_porzana 0 002 @ 02015554 n 0000 #m 02015944 n 0000 | Eurasian rail of swamps and marshes -02016198 05 n 02 Gallinula 0 genus_Gallinula 0 005 @ 01507175 n 0000 #m 02014646 n 0000 %m 02016358 n 0000 %m 02016659 n 0000 %m 02016816 n 0000 | gallinules -02016358 05 n 04 gallinule 0 marsh_hen 1 water_hen 1 swamphen 0 005 @ 01844917 n 0000 #m 02016198 n 0000 ~ 02016659 n 0000 ~ 02016816 n 0000 ~ 02016956 n 0000 | any of various small aquatic birds of the genus Gallinula distinguished from rails by a frontal shield and a resemblance to domestic hens -02016659 05 n 02 Florida_gallinule 0 Gallinula_chloropus_cachinnans 0 002 @ 02016358 n 0000 #m 02016198 n 0000 | North American dark bluish-grey gallinule -02016816 05 n 02 moorhen 1 Gallinula_chloropus 0 002 @ 02016358 n 0000 #m 02016198 n 0000 | black gallinule that inhabits ponds and lakes -02016956 05 n 01 purple_gallinule 0 003 @ 02016358 n 0000 ~ 02017213 n 0000 ~ 02017475 n 0000 | gallinules with showy purplish plumage -02017093 05 n 02 Porphyrio 0 genus_Porphyrio 0 002 @ 01507175 n 0000 #m 02014646 n 0000 | Old World purple gallinules -02017213 05 n 02 European_gallinule 0 Porphyrio_porphyrio 0 001 @ 02016956 n 0000 | purple gallinule of southern Europe -02017335 05 n 02 Porphyrula 0 genus_Porphyrula 0 003 @ 01507175 n 0000 #m 02014646 n 0000 %m 02017475 n 0000 | American purple gallinules -02017475 05 n 02 American_gallinule 0 Porphyrula_martinica 0 002 @ 02016956 n 0000 #m 02017335 n 0000 | American purple gallinule -02017607 05 n 01 genus_Notornis 0 003 @ 01507175 n 0000 #m 02014646 n 0000 %m 02017725 n 0000 | a genus of Rallidae -02017725 05 n 03 notornis 0 takahe 0 Notornis_mantelli 0 002 @ 02014941 n 0000 #m 02017607 n 0000 | flightless New Zealand birds similar to gallinules -02017878 05 n 02 Fulica 0 genus_Fulica 0 005 @ 01507175 n 0000 #m 02014646 n 0000 %m 02018027 n 0000 %m 02018207 n 0000 %m 02018368 n 0000 | coots -02018027 05 n 01 coot 0 005 @ 02014941 n 0000 #m 02017878 n 0000 #m 07991780 n 0000 ~ 02018207 n 0000 ~ 02018368 n 0000 | slate-black slow-flying birds somewhat resembling ducks -02018207 05 n 05 American_coot 0 marsh_hen 2 mud_hen 0 water_hen 2 Fulica_americana 0 002 @ 02018027 n 0000 #m 02017878 n 0000 | a coot found in North America -02018368 05 n 02 Old_World_coot 0 Fulica_atra 0 002 @ 02018027 n 0000 #m 02017878 n 0000 | a coot found in Eurasia -02018485 05 n 02 Otides 0 suborder_Otides 0 002 @ 01342529 n 0000 #m 02012306 n 0000 | terrestrial game birds of the Old World and Australia: bustards -02018638 05 n 02 Otididae 0 family_Otididae 0 005 @ 01504437 n 0000 #m 02012306 n 0000 %m 02018795 n 0000 %m 02019044 n 0000 %m 02019308 n 0000 | bustards -02018795 05 n 01 bustard 0 004 @ 02000954 n 0000 #m 02018638 n 0000 ~ 02019190 n 0000 ~ 02019438 n 0000 | large heavy-bodied chiefly terrestrial game bird capable of powerful swift flight; classified with wading birds but frequents grassy steppes -02019044 05 n 02 Otis 0 genus_Otis 0 003 @ 01507175 n 0000 #m 02018638 n 0000 %m 02019190 n 0000 | type genus of the Otididae: European bustard -02019190 05 n 02 great_bustard 0 Otis_tarda 0 002 @ 02018795 n 0000 #m 02019044 n 0000 | largest European land bird -02019308 05 n 02 Choriotis 0 genus_Choriotis 0 003 @ 01507175 n 0000 #m 02018638 n 0000 %m 02019438 n 0000 | Australian bustard -02019438 05 n 02 plain_turkey 0 Choriotis_australis 0 002 @ 02018795 n 0000 #m 02019308 n 0000 | popular Australian game bird -02019566 05 n 02 Turnicidae 0 family_Turnicidae 0 004 @ 01504437 n 0000 #m 02012306 n 0000 %m 02019762 n 0000 %m 02020450 n 0000 | small Old World birds resembling but not related to true quail -02019762 05 n 02 Turnix 0 genus_Turnix 0 004 @ 01507175 n 0000 #m 02019566 n 0000 %m 02019929 n 0000 %m 02020345 n 0000 | type genus of the Turnicidae: button quail -02019929 05 n 04 button_quail 0 button-quail 0 bustard_quail 0 hemipode 0 003 @ 02000954 n 0000 #m 02019762 n 0000 ~ 02020219 n 0000 | small quail-like terrestrial bird of southern Eurasia and northern Africa that lacks a hind toe; classified with wading birds but inhabits grassy plains -02020219 05 n 02 striped_button_quail 0 Turnix_sylvatica 0 001 @ 02019929 n 0000 | a variety of button quail having stripes -02020345 05 n 01 ortygan 0 002 @ 02000954 n 0000 #m 02019762 n 0000 | any of several East Indian birds -02020450 05 n 02 Pedionomus 0 genus_Pedionomus 0 003 @ 01507175 n 0000 #m 02019566 n 0000 %m 02020578 n 0000 | plain wanderer -02020578 05 n 02 plain_wanderer 0 Pedionomus_torquatus 0 002 @ 02000954 n 0000 #m 02020450 n 0000 | small Australian bird related to the button quail; classified as wading bird but inhabits plains -02020777 05 n 02 Psophiidae 0 family_Psophiidae 0 003 @ 01504437 n 0000 #m 02012306 n 0000 %m 02020902 n 0000 | trumpeters -02020902 05 n 02 Psophia 0 genus_Psophia 0 003 @ 01507175 n 0000 #m 02020777 n 0000 %m 02021050 n 0000 | type genus of the Psophiidae: trumpeters -02021050 05 n 01 trumpeter 1 003 @ 02000954 n 0000 #m 02020902 n 0000 ~ 02021281 n 0000 | large gregarious crane-like bird of the forests of South America having glossy black plumage and a loud prolonged cry; easily domesticated -02021281 05 n 02 Brazilian_trumpeter 0 Psophia_crepitans 0 001 @ 02021050 n 0000 | trumpeter of Brazil and Guiana; often kept to protect poultry in Brazil -02021438 05 n 02 Charadriiformes 0 order_Charadriiformes 0 008 @ 01342529 n 0000 #m 01502262 n 0000 %m 02022135 n 0000 %m 02022498 n 0000 %m 02036982 n 0000 %m 02040505 n 0000 %m 02040698 n 0000 %m 02045024 n 0000 | large diverse order of aquatic birds found along seacoasts and inland waters: shorebirds and coastal diving birds; most feed on anima life -02021795 05 n 03 seabird 0 sea_bird 0 seafowl 0 009 @ 01844917 n 0000 ~ 02040505 n 0000 ~ 02045369 n 0000 ~ 02047614 n 0000 ~ 02048698 n 0000 ~ 02049532 n 0000 ~ 02051474 n 0000 ~ 02055658 n 0000 ~ 02057731 n 0000 | a bird that frequents coastal waters and the open ocean: gulls; pelicans; gannets; cormorants; albatrosses; petrels; etc. -02022135 05 n 02 Charadrii 0 suborder_Charadrii 0 012 @ 01342529 n 0000 #m 02021438 n 0000 %m 02022684 n 0000 %m 02023133 n 0000 %m 02025530 n 0000 %m 02034394 n 0000 %m 02035845 n 0000 %m 02036399 n 0000 %m 02036864 n 0000 %m 02037278 n 0000 %m 02038617 n 0000 %m 02039942 n 0000 | shorebirds: plovers; sandpipers; avocets; phalaropes; coursers; stone curlews -02022498 05 n 02 Limicolae 0 suborder_Limicolae 0 002 @ 01342529 n 0000 #m 02021438 n 0000 | term used in some classifications for migratory shorebirds; coextensive with the Charadrii -02022684 05 n 03 shorebird 0 shore_bird 0 limicoline_bird 0 017 @ 02000954 n 0000 #m 02022135 n 0000 ~ 02023341 n 0000 ~ 02026059 n 0000 ~ 02026629 n 0000 ~ 02030996 n 0000 ~ 02031934 n 0000 ~ 02033561 n 0000 ~ 02034129 n 0000 ~ 02034661 n 0000 ~ 02036053 n 0000 ~ 02036711 n 0000 ~ 02037110 n 0000 ~ 02037464 n 0000 ~ 02038993 n 0000 ~ 02039171 n 0000 ~ 02040266 n 0000 | any of numerous wading birds that frequent mostly seashores and estuaries -02023133 05 n 02 Charadriidae 0 family_Charadriidae 0 007 @ 01504437 n 0000 #m 02022135 n 0000 %m 02023341 n 0000 %m 02023664 n 0000 %m 02024353 n 0000 %m 02024636 n 0000 %m 02024923 n 0000 | plover family -02023341 05 n 01 plover 0 008 @ 02022684 n 0000 #m 02023133 n 0000 ~ 02023855 n 0000 ~ 02023992 n 0000 ~ 02024185 n 0000 ~ 02024479 n 0000 ~ 02024763 n 0000 ~ 02025043 n 0000 | any of numerous chiefly shorebirds of relatively compact build having straight bills and large pointed wings; closely related to the sandpipers -02023664 05 n 02 Charadrius 0 genus_Charadrius 0 005 @ 01507175 n 0000 #m 02023133 n 0000 %m 02023855 n 0000 %m 02023992 n 0000 %m 02024185 n 0000 | type genus of the Charadriidae: plovers -02023855 05 n 02 piping_plover 0 Charadrius_melodus 0 002 @ 02023341 n 0000 #m 02023664 n 0000 | small plover of eastern North America -02023992 05 n 04 killdeer 0 kildeer 0 killdeer_plover 0 Charadrius_vociferus 0 002 @ 02023341 n 0000 #m 02023664 n 0000 | American plover of inland waters and fields having a distinctive cry -02024185 05 n 04 dotterel 0 dotrel 0 Charadrius_morinellus 0 Eudromias_morinellus 0 002 @ 02023341 n 0000 #m 02023664 n 0000 | rare plover of upland areas of Eurasia -02024353 05 n 02 Pluvialis 0 genus_Pluvialis 0 003 @ 01507175 n 0000 #m 02023133 n 0000 %m 02024479 n 0000 | golden plovers -02024479 05 n 01 golden_plover 0 002 @ 02023341 n 0000 #m 02024353 n 0000 | plovers of Europe and America having the backs marked with golden-yellow spots -02024636 05 n 02 Vanellus 0 genus_Vanellus 0 003 @ 01507175 n 0000 #m 02023133 n 0000 %m 02024763 n 0000 | Eurasian lapwings -02024763 05 n 04 lapwing 0 green_plover 0 peewit 1 pewit 1 002 @ 02023341 n 0000 #m 02024636 n 0000 | large crested Old World plover having wattles and spurs -02024923 05 n 02 Arenaria 0 genus_Arenaria 0 003 @ 01507175 n 0000 #m 02023133 n 0000 %m 02025043 n 0000 | turnstones -02025043 05 n 01 turnstone 0 004 @ 02023341 n 0000 #m 02024923 n 0000 ~ 02025239 n 0000 ~ 02025389 n 0000 | migratory shorebirds of the plover family that turn over stones in searching for food -02025239 05 n 02 ruddy_turnstone 0 Arenaria_interpres 0 001 @ 02025043 n 0000 | common Arctic turnstone that winters in South America and Australia -02025389 05 n 02 black_turnstone 0 Arenaria-Melanocephala 0 001 @ 02025043 n 0000 | common turnstone of the Pacific coast of North America -02025530 05 n 02 Scolopacidae 0 family_Scolopacidae 0 020 @ 01504437 n 0000 #m 02022135 n 0000 %m 02026059 n 0000 %m 02026498 n 0000 %m 02026798 n 0000 %m 02027209 n 0000 %m 02027730 n 0000 %m 02028556 n 0000 %m 02029243 n 0000 %m 02029571 n 0000 %m 02029914 n 0000 %m 02030442 n 0000 %m 02030709 n 0000 %m 02031143 n 0000 %m 02031455 n 0000 %m 02031752 n 0000 %m 02032646 n 0000 %m 02032915 n 0000 %m 02033444 n 0000 %m 02034016 n 0000 | sandpiper family: sandpipers; woodcocks; snipes; tattlers; curlews; godwits; dowitchers -02026059 05 n 01 sandpiper 0 016 @ 02022684 n 0000 #m 02025530 n 0000 ~ 02026948 n 0000 ~ 02027075 n 0000 ~ 02027357 n 0000 ~ 02027492 n 0000 ~ 02027897 n 0000 ~ 02028035 n 0000 ~ 02028175 n 0000 ~ 02028727 n 0000 ~ 02028900 n 0000 ~ 02029087 n 0000 ~ 02029378 n 0000 ~ 02029706 n 0000 ~ 02030035 n 0000 ~ 02030287 n 0000 | any of numerous usually small wading birds having a slender bill and piping call; closely related to the plovers -02026498 05 n 02 Aphriza 0 genus_Aphriza 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02026629 n 0000 | a genus of Scolopacidae -02026629 05 n 02 surfbird 0 Aphriza_virgata 0 002 @ 02022684 n 0000 #m 02026498 n 0000 | sandpiper-like shorebird of Pacific coasts of North America and South America -02026798 05 n 02 Actitis 0 genus_Actitis 0 004 @ 01507175 n 0000 #m 02025530 n 0000 %m 02026948 n 0000 %m 02027075 n 0000 | a genus of Scolopacidae -02026948 05 n 02 European_sandpiper 0 Actitis_hypoleucos 0 002 @ 02026059 n 0000 #m 02026798 n 0000 | a variety of sandpiper -02027075 05 n 02 spotted_sandpiper 0 Actitis_macularia 0 002 @ 02026059 n 0000 #m 02026798 n 0000 | common North American sandpiper -02027209 05 n 02 Erolia 0 genus_Erolia 0 004 @ 01507175 n 0000 #m 02025530 n 0000 %m 02027357 n 0000 %m 02027492 n 0000 | a genus of Scolopacidae -02027357 05 n 03 least_sandpiper 0 stint 0 Erolia_minutilla 0 002 @ 02026059 n 0000 #m 02027209 n 0000 | smallest American sandpiper -02027492 05 n 03 red-backed_sandpiper 0 dunlin 0 Erolia_alpina 0 002 @ 02026059 n 0000 #m 02027209 n 0000 | small common sandpiper that breeds in northern or Arctic regions and winters in southern United States or Mediterranean regions -02027730 05 n 02 Tringa 0 genus_Tringa 0 005 @ 01507175 n 0000 #m 02025530 n 0000 %m 02027897 n 0000 %m 02028035 n 0000 %m 02028175 n 0000 | a genus of Scolopacidae -02027897 05 n 02 greenshank 0 Tringa_nebularia 0 002 @ 02026059 n 0000 #m 02027730 n 0000 | large European sandpiper with greenish legs -02028035 05 n 02 redshank 0 Tringa_totanus 0 002 @ 02026059 n 0000 #m 02027730 n 0000 | a common Old World wading bird with long red legs -02028175 05 n 01 yellowlegs 0 004 @ 02026059 n 0000 #m 02027730 n 0000 ~ 02028342 n 0000 ~ 02028451 n 0000 | either of two North American shorebird with yellow legs -02028342 05 n 02 greater_yellowlegs 0 Tringa_melanoleuca 0 001 @ 02028175 n 0000 | a variety of yellowlegs -02028451 05 n 02 lesser_yellowlegs 0 Tringa_flavipes 0 001 @ 02028175 n 0000 | a variety of yellowlegs -02028556 05 n 02 Calidris 0 genus_Calidris 0 005 @ 01507175 n 0000 #m 02025530 n 0000 %m 02028727 n 0000 %m 02028900 n 0000 %m 02029087 n 0000 | a genus of Scolopacidae -02028727 05 n 03 pectoral_sandpiper 0 jacksnipe 1 Calidris_melanotos 0 002 @ 02026059 n 0000 #m 02028556 n 0000 | American sandpiper that inflates its chest when courting -02028900 05 n 04 knot 0 greyback 2 grayback 2 Calidris_canutus 0 002 @ 02026059 n 0000 #m 02028556 n 0000 | a sandpiper that breeds in the Arctic and winters in the southern hemisphere -02029087 05 n 02 curlew_sandpiper 0 Calidris_Ferruginea 0 002 @ 02026059 n 0000 #m 02028556 n 0000 | Old World sandpiper with a curved bill like a curlew -02029243 05 n 02 Crocethia 0 genus_Crocethia 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02029378 n 0000 | a genus of Scolopacidae -02029378 05 n 02 sanderling 0 Crocethia_alba 0 002 @ 02026059 n 0000 #m 02029243 n 0000 | small sandpiper that breeds in the Arctic and migrates southward along sandy coasts in most of world -02029571 05 n 02 Bartramia 0 genus_Bartramia 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02029706 n 0000 | a genus of Scolopacidae -02029706 05 n 04 upland_sandpiper 0 upland_plover 0 Bartramian_sandpiper 0 Bartramia_longicauda 0 002 @ 02026059 n 0000 #m 02029571 n 0000 | large plover-like sandpiper of North American fields and uplands -02029914 05 n 02 Philomachus 0 genus_Philomachus 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02030035 n 0000 | ruffs -02030035 05 n 02 ruff 0 Philomachus_pugnax 0 003 @ 02026059 n 0000 #m 02029914 n 0000 ~ 02030224 n 0000 | common Eurasian sandpiper; the male has an erectile neck ruff in breeding season -02030224 05 n 01 reeve 0 001 @ 02030035 n 0000 | female ruff -02030287 05 n 01 tattler 0 003 @ 02026059 n 0000 ~ 02030568 n 0000 ~ 02030837 n 0000 | any of several long-legged shorebirds having a loud whistling cry -02030442 05 n 02 Heteroscelus 0 genus_Heteroscelus 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02030568 n 0000 | tattlers -02030568 05 n 02 Polynesian_tattler 0 Heteroscelus_incanus 0 002 @ 02030287 n 0000 #m 02030442 n 0000 | tattler of Pacific coastal regions -02030709 05 n 02 Catoptrophorus 0 genus_Catoptrophorus 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02030837 n 0000 | willet -02030837 05 n 02 willet 0 Catoptrophorus_semipalmatus 0 002 @ 02030287 n 0000 #m 02030709 n 0000 | large North American shorebird of eastern and Gulf Coasts -02030996 05 n 01 woodcock 0 003 @ 02022684 n 0000 ~ 02031298 n 0000 ~ 02031585 n 0000 | game bird of the sandpiper family that resembles a snipe -02031143 05 n 02 Scolopax 0 genus_Scolopax 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02031298 n 0000 | type of the Scolopacidae: Old World woodcocks -02031298 05 n 02 Eurasian_woodcock 0 Scolopax_rusticola 0 002 @ 02030996 n 0000 #m 02031143 n 0000 | short-legged long-billed migratory Old World woodcock -02031455 05 n 02 Philohela 0 genus_Philohela 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02031585 n 0000 | American woodcocks -02031585 05 n 03 American_woodcock 0 woodcock_snipe 1 Philohela_minor 0 002 @ 02030996 n 0000 #m 02031455 n 0000 | small long-billed woodcock; prized as a game bird -02031752 05 n 04 Gallinago 0 genus_Gallinago 0 Capella 0 genus_Capella 0 005 @ 01507175 n 0000 #m 02025530 n 0000 %m 02032222 n 0000 %m 02032355 n 0000 %m 02032480 n 0000 | snipes -02031934 05 n 01 snipe 0 008 @ 02022684 n 0000 #m 07992222 n 0000 + 01135683 v 0101 ~ 02032222 n 0000 ~ 02032355 n 0000 ~ 02032480 n 0000 ~ 02032769 n 0000 ~ 02033041 n 0000 | Old or New World straight-billed game bird of the sandpiper family; of marshy areas; similar to the woodcocks -02032222 05 n 02 whole_snipe 0 Gallinago_gallinago 0 002 @ 02031934 n 0000 #m 02031752 n 0000 | common snipe of Eurasia and Africa -02032355 05 n 02 Wilson's_snipe 0 Gallinago_gallinago_delicata 0 002 @ 02031934 n 0000 #m 02031752 n 0000 | American snipe -02032480 05 n 03 great_snipe 0 woodcock_snipe 2 Gallinago_media 0 002 @ 02031934 n 0000 #m 02031752 n 0000 | Old World snipe larger and darker than the whole snipe -02032646 05 n 02 Limnocryptes 0 genus_Limnocryptes 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02032769 n 0000 | snipe -02032769 05 n 03 jacksnipe 2 half_snipe 0 Limnocryptes_minima 0 002 @ 02031934 n 0000 #m 02032646 n 0000 | a small short-billed Old World snipe -02032915 05 n 02 Limnodromus 0 genus_Limnodromus 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02033041 n 0000 | dowitchers -02033041 05 n 01 dowitcher 0 004 @ 02031934 n 0000 #m 02032915 n 0000 ~ 02033208 n 0000 ~ 02033324 n 0000 | shorebird of the sandpiper family that resembles a snipe -02033208 05 n 03 greyback 1 grayback 1 Limnodromus_griseus 0 001 @ 02033041 n 0000 | a dowitcher with a grey back -02033324 05 n 02 red-breasted_snipe 0 Limnodromus_scolopaceus 0 001 @ 02033041 n 0000 | a dowitcher with a red breast -02033444 05 n 02 Numenius 0 genus_Numenius 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02033561 n 0000 | curlews -02033561 05 n 01 curlew 0 004 @ 02022684 n 0000 #m 02033444 n 0000 ~ 02033779 n 0000 ~ 02033882 n 0000 | large migratory shorebirds of the sandpiper family; closely related to woodcocks but having a down-curved bill -02033779 05 n 02 European_curlew 0 Numenius_arquata 0 001 @ 02033561 n 0000 | common Eurasian curlew -02033882 05 n 02 Eskimo_curlew 0 Numenius_borealis 0 001 @ 02033561 n 0000 | New World curlew that breeds in northern North America -02034016 05 n 02 Limosa 0 genus_Limosa 0 003 @ 01507175 n 0000 #m 02025530 n 0000 %m 02034129 n 0000 | godwits -02034129 05 n 01 godwit 0 003 @ 02022684 n 0000 #m 02034016 n 0000 ~ 02034295 n 0000 | large wading bird that resembles a curlew; has a long slightly upturned bill -02034295 05 n 02 Hudsonian_godwit 0 Limosa_haemastica 0 001 @ 02034129 n 0000 | New World godwit -02034394 05 n 02 Himantopus 0 genus_Himantopus 0 007 @ 01507175 n 0000 #m 02022135 n 0000 %m 02034661 n 0000 %m 02034971 n 0000 %m 02035210 n 0000 %m 02035402 n 0000 %m 02035656 n 0000 | major one of two genera of stilts; similar to avocets but with straight bills -02034661 05 n 06 stilt 1 stiltbird 1 longlegs 0 long-legs 0 stilt_plover 0 Himantopus_stilt 0 006 @ 02022684 n 0000 #m 02034394 n 0000 ~ 02034971 n 0000 ~ 02035210 n 0000 ~ 02035402 n 0000 ~ 02035656 n 0000 | long-legged three-toed black-and-white wading bird of inland ponds and marshes or brackish lagoons -02034971 05 n 02 black-necked_stilt 0 Himantopus_mexicanus 0 002 @ 02034661 n 0000 #m 02034394 n 0000 | stilt of southwestern United States to northern South America having black plumage extending from the head down the back of the neck -02035210 05 n 02 black-winged_stilt 0 Himantopus_himantopus 0 002 @ 02034661 n 0000 #m 02034394 n 0000 | stilt of Europe and Africa and Asia having mostly white plumage but with black wings -02035402 05 n 02 white-headed_stilt 0 Himantopus_himantopus_leucocephalus 0 002 @ 02034661 n 0000 #m 02034394 n 0000 | stilt of the southwest Pacific including Australia and New Zealand having mostly white plumage but with black wings and nape of neck -02035656 05 n 02 kaki 0 Himantopus_novae-zelandiae 0 002 @ 02034661 n 0000 #m 02034394 n 0000 | blackish stilt of New Zealand sometimes considered a color phase of the white-headed stilt -02035845 05 n 02 Cladorhyncus 0 genus_Cladorhyncus 0 004 @ 01507175 n 0000 #m 02022135 n 0000 %m 02036053 n 0000 %m 02036228 n 0000 | one of two genera of stilts; similar to avocets but with straight bills -02036053 05 n 02 stilt 2 Australian_stilt 0 003 @ 02022684 n 0000 #m 02035845 n 0000 ~ 02036228 n 0000 | long-legged three-toed wading bird of brackish marshes of Australia -02036228 05 n 02 banded_stilt 0 Cladorhyncus_leucocephalum 0 002 @ 02036053 n 0000 #m 02035845 n 0000 | web-footed Australian stilt with reddish-brown pectoral markings -02036399 05 n 02 Recurvirostridae 0 family_Recurvirostridae 0 003 @ 01504437 n 0000 #m 02022135 n 0000 %m 02036548 n 0000 | long-legged shorebirds -02036548 05 n 02 Recurvirostra 0 genus_Recurvirostra 0 003 @ 01507175 n 0000 #m 02036399 n 0000 %m 02036711 n 0000 | type genus of the Recurvirostridae: avocets -02036711 05 n 01 avocet 0 002 @ 02022684 n 0000 #m 02036548 n 0000 | long-legged web-footed black-and-white shorebird with slender upward-curving bill -02036864 05 n 02 Haematopodidae 0 family_Haematopodidae 0 002 @ 01504437 n 0000 #m 02022135 n 0000 | oystercatchers -02036982 05 n 02 Haematopus 0 genus_Haematopus 0 003 @ 01507175 n 0000 #m 02021438 n 0000 %m 02037110 n 0000 | oystercatchers -02037110 05 n 02 oystercatcher 0 oyster_catcher 0 002 @ 02022684 n 0000 #m 02036982 n 0000 | black-and-white shorebird with stout legs and bill; feed on oysters etc. -02037278 05 n 02 Phalaropidae 0 family_Phalaropidae 0 006 @ 01504437 n 0000 #m 02022135 n 0000 %m 02037464 n 0000 %m 02037713 n 0000 %m 02038010 n 0000 %m 02038329 n 0000 | phalaropes -02037464 05 n 01 phalarope 0 005 @ 02022684 n 0000 #m 02037278 n 0000 ~ 02037869 n 0000 ~ 02038141 n 0000 ~ 02038466 n 0000 | small sandpiper-like shorebird having lobate toes and being good swimmers; breed in the Arctic and winter in the tropics -02037713 05 n 02 Phalaropus 0 genus_Phalaropus 0 003 @ 01507175 n 0000 #m 02037278 n 0000 %m 02037869 n 0000 | type genus of the Phalaropidae: phalaropes -02037869 05 n 02 red_phalarope 0 Phalaropus_fulicarius 0 002 @ 02037464 n 0000 #m 02037713 n 0000 | phalarope of northern oceans and lakes -02038010 05 n 02 Lobipes 0 genus_Lobipes 0 003 @ 01507175 n 0000 #m 02037278 n 0000 %m 02038141 n 0000 | a genus of Phalaropidae -02038141 05 n 02 northern_phalarope 0 Lobipes_lobatus 0 002 @ 02037464 n 0000 #m 02038010 n 0000 | breeds in Arctic regions of Old and New Worlds; large flocks often seen far out at sea -02038329 05 n 02 Steganopus 0 genus_Steganopus 0 003 @ 01507175 n 0000 #m 02037278 n 0000 %m 02038466 n 0000 | a genus of Phalaropidae -02038466 05 n 02 Wilson's_phalarope 0 Steganopus_tricolor 0 002 @ 02037464 n 0000 #m 02038329 n 0000 | breeds on the northern great plains of Canada -02038617 05 n 02 Glareolidae 0 family_Glareolidae 0 006 @ 01504437 n 0000 #m 02022135 n 0000 %m 02038837 n 0000 %m 02039171 n 0000 %m 02039377 n 0000 %m 02039660 n 0000 | Old World shorebirds: pratincoles and coursers -02038837 05 n 02 Glareola 0 genus_Glareola 0 003 @ 01507175 n 0000 #m 02038617 n 0000 %m 02038993 n 0000 | type genus of the Glareolidae: the pratincoles -02038993 05 n 02 pratincole 0 glareole 0 002 @ 02022684 n 0000 #m 02038837 n 0000 | Old World shorebird with long pointed wings and short legs; closely related to the coursers -02039171 05 n 01 courser 0 004 @ 02022684 n 0000 #m 02038617 n 0000 ~ 02039497 n 0000 ~ 02039780 n 0000 | swift-footed terrestrial plover-like bird of southern Asia and Africa; related to the pratincoles -02039377 05 n 02 Cursorius 0 genus_Cursorius 0 003 @ 01507175 n 0000 #m 02038617 n 0000 %m 02039497 n 0000 | coursers -02039497 05 n 02 cream-colored_courser 0 Cursorius_cursor 0 002 @ 02039171 n 0000 #m 02039377 n 0000 | courser of desert and semidesert regions of the Old World -02039660 05 n 02 Pluvianus 0 genus_Pluvianus 0 003 @ 01507175 n 0000 #m 02038617 n 0000 %m 02039780 n 0000 | coursers -02039780 05 n 02 crocodile_bird 0 Pluvianus_aegyptius 0 002 @ 02039171 n 0000 #m 02039660 n 0000 | African courser that feeds on insect parasites on crocodiles -02039942 05 n 02 Burhinidae 0 family_Burhinidae 0 003 @ 01504437 n 0000 #m 02022135 n 0000 %m 02040113 n 0000 | large wading birds resembling the plovers: stone curlews -02040113 05 n 02 Burhinus 0 genus_Burhinus 0 003 @ 01507175 n 0000 #m 02039942 n 0000 %m 02040266 n 0000 | type genus of the Burhinidae: stone curlews -02040266 05 n 03 stone_curlew 0 thick-knee 0 Burhinus_oedicnemus 0 002 @ 02022684 n 0000 #m 02040113 n 0000 | large-headed large-eyed crepuscular or nocturnal shorebird of the Old World and tropical America having a thickened knee joint -02040505 05 n 01 coastal_diving_bird 0 005 @ 02021795 n 0000 #m 02021438 n 0000 ~ 02041085 n 0000 ~ 02043808 n 0000 ~ 02044178 n 0000 | gull family; skimmer family; jaeger family; auk family -02040698 05 n 02 Lari 0 suborder_Lari 0 005 @ 01342529 n 0000 #m 02021438 n 0000 %m 02040872 n 0000 %m 02043497 n 0000 %m 02043999 n 0000 | gulls; terns; jaegers; skimmers -02040872 05 n 02 Laridae 0 family_Laridae 0 007 @ 01504437 n 0000 #m 02040698 n 0000 %m 02041085 n 0000 %m 02041492 n 0000 %m 02042342 n 0000 %m 02042637 n 0000 %m 02042923 n 0000 | gull family: gulls and terns -02041085 05 n 01 larid 0 004 @ 02040505 n 0000 #m 02040872 n 0000 ~ 02041246 n 0000 ~ 02043063 n 0000 | long-winged web-footed aquatic bird of the gull family -02041246 05 n 03 gull 0 seagull 0 sea_gull 0 007 @ 02041085 n 0000 ~ 02041678 n 0000 ~ 02041875 n 0000 ~ 02042046 n 0000 ~ 02042180 n 0000 ~ 02042472 n 0000 ~ 02042759 n 0000 | mostly white aquatic bird having long pointed wings and short legs -02041492 05 n 02 Larus 0 genus_Larus 0 006 @ 01507175 n 0000 #m 02040872 n 0000 %m 02041678 n 0000 %m 02041875 n 0000 %m 02042046 n 0000 %m 02042180 n 0000 | type genus of the Laridae -02041678 05 n 04 mew 0 mew_gull 0 sea_mew 0 Larus_canus 0 004 @ 02041246 n 0000 #m 02041492 n 0000 + 01060198 v 0101 + 01052782 v 0102 | the common gull of Eurasia and northeastern North America -02041875 05 n 04 black-backed_gull 0 great_black-backed_gull 0 cob 3 Larus_marinus 0 002 @ 02041246 n 0000 #m 02041492 n 0000 | white gull having a black back and wings -02042046 05 n 02 herring_gull 0 Larus_argentatus 0 002 @ 02041246 n 0000 #m 02041492 n 0000 | large gull of the northern hemisphere -02042180 05 n 05 laughing_gull 0 blackcap 4 pewit 3 pewit_gull 0 Larus_ridibundus 0 002 @ 02041246 n 0000 #m 02041492 n 0000 | small black-headed European gull -02042342 05 n 02 Pagophila 0 genus_Pagophila 0 003 @ 01507175 n 0000 #m 02040872 n 0000 %m 02042472 n 0000 | a genus of Laridae -02042472 05 n 02 ivory_gull 0 Pagophila_eburnea 0 002 @ 02041246 n 0000 #m 02042342 n 0000 | white Arctic gull; migrates as far south as England and New Brunswick -02042637 05 n 02 Rissa 0 genus_Rissa 0 003 @ 01507175 n 0000 #m 02040872 n 0000 %m 02042759 n 0000 | a genus of Laridae -02042759 05 n 01 kittiwake 0 002 @ 02041246 n 0000 #m 02042637 n 0000 | small pearl-grey gull of northern regions; nests on cliffs and has a rudimentary hind toe -02042923 05 n 02 Sterninae 0 subfamily_Sterninae 0 004 @ 01504437 n 0000 #m 02040872 n 0000 %m 02043063 n 0000 %m 02043207 n 0000 | terns -02043063 05 n 01 tern 0 003 @ 02041085 n 0000 #m 02042923 n 0000 ~ 02043333 n 0000 | small slender gull having narrow wings and a forked tail -02043207 05 n 02 Sterna 0 genus_Sterna 0 003 @ 01507175 n 0000 #m 02042923 n 0000 %m 02043333 n 0000 | a genus of Sterninae -02043333 05 n 02 sea_swallow 0 Sterna_hirundo 0 002 @ 02043063 n 0000 #m 02043207 n 0000 | common tern of Eurasia and America having white black and grey plumage -02043497 05 n 02 Rynchopidae 0 family_Rynchopidae 0 003 @ 01504437 n 0000 #m 02040698 n 0000 %m 02043659 n 0000 | coextensive with the genus Rynchops: skimmers -02043659 05 n 02 Rynchops 0 genus_Rynchops 0 003 @ 01507175 n 0000 #m 02043497 n 0000 %m 02043808 n 0000 | type genus of the Rynchopidae: skimmers -02043808 05 n 01 skimmer 0 002 @ 02040505 n 0000 #m 02043659 n 0000 | gull-like seabird that flies along the surface of the water with an elongated lower mandible immersed to skim out food -02043999 05 n 02 Stercorariidae 0 family_Stercorariidae 0 005 @ 01504437 n 0000 #m 02040698 n 0000 %m 02044178 n 0000 %m 02044358 n 0000 %m 02044659 n 0000 | jaegers and skuas: -02044178 05 n 01 jaeger 0 004 @ 02040505 n 0000 #m 02043999 n 0000 ~ 02044517 n 0000 ~ 02044778 n 0000 | rapacious seabird that pursues weaker birds to make them drop their prey -02044358 05 n 02 Stercorarius 0 genus_Stercorarius 0 003 @ 01507175 n 0000 #m 02043999 n 0000 %m 02044517 n 0000 | type genus of the Stercorariidae: jaegers -02044517 05 n 03 parasitic_jaeger 0 arctic_skua 0 Stercorarius_parasiticus 0 002 @ 02044178 n 0000 #m 02044358 n 0000 | a variety of jaeger -02044659 05 n 02 Catharacta 0 genus_Catharacta 0 003 @ 01507175 n 0000 #m 02043999 n 0000 %m 02044778 n 0000 | skuas -02044778 05 n 02 skua 0 bonxie 0 003 @ 02044178 n 0000 #m 02044659 n 0000 ~ 02044908 n 0000 | gull-like jaeger of northern seas -02044908 05 n 02 great_skua 0 Catharacta_skua 0 001 @ 02044778 n 0000 | large brown skua of the northern Atlantic -02045024 05 n 02 Alcidae 0 family_Alcidae 0 011 @ 01504437 n 0000 #m 02021438 n 0000 %m 02045369 n 0000 %m 02045705 n 0000 %m 02046045 n 0000 %m 02046321 n 0000 %m 02046613 n 0000 %m 02047152 n 0000 %m 02047614 n 0000 %m 02047835 n 0000 %m 02048242 n 0000 | web-footed diving seabirds of northern seas: auks; puffins; guillemots; murres; etc. -02045369 05 n 01 auk 0 007 @ 02021795 n 0000 #m 02045024 n 0000 ~ 02045596 n 0000 ~ 02045864 n 0000 ~ 02046171 n 0000 ~ 02046442 n 0000 ~ 02046759 n 0000 | black-and-white short-necked web-footed diving bird of northern seas -02045596 05 n 01 auklet 0 001 @ 02045369 n 0000 | any of several small auks of the northern Pacific coasts -02045705 05 n 02 Alca 0 genus_Alca 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02045864 n 0000 | type genus of the Alcidae comprising solely the razorbill -02045864 05 n 03 razorbill 0 razor-billed_auk 0 Alca_torda 0 002 @ 02045369 n 0000 #m 02045705 n 0000 | black-and-white northern Atlantic auk having a compressed sharp-edged bill -02046045 05 n 02 Plautus 0 genus_Plautus 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02046171 n 0000 | a genus of Alcidae -02046171 05 n 03 little_auk 0 dovekie 0 Plautus_alle 0 002 @ 02045369 n 0000 #m 02046045 n 0000 | small short-billed auk abundant in Arctic regions -02046321 05 n 02 Pinguinus 0 genus_Pinguinus 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02046442 n 0000 | great auk -02046442 05 n 02 great_auk 0 Pinguinus_impennis 0 002 @ 02045369 n 0000 #m 02046321 n 0000 | large flightless auk of rocky islands off northern Atlantic coasts; extinct -02046613 05 n 02 Cepphus 0 genus_Cepphus 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02046759 n 0000 | a genus of birds including: guillemots -02046759 05 n 01 guillemot 0 005 @ 02045369 n 0000 #m 02046613 n 0000 ~ 02046939 n 0000 ~ 02047045 n 0000 ~ 02047260 n 0000 | small black or brown speckled auks of northern seas -02046939 05 n 02 black_guillemot 0 Cepphus_grylle 0 001 @ 02046759 n 0000 | northern Atlantic guillemot -02047045 05 n 02 pigeon_guillemot 0 Cepphus_columba 0 001 @ 02046759 n 0000 | northern Pacific guillemot -02047152 05 n 02 Uria 0 genus_Uria 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02047260 n 0000 | murres -02047260 05 n 01 murre 0 004 @ 02046759 n 0000 #m 02047152 n 0000 ~ 02047411 n 0000 ~ 02047517 n 0000 | black-and-white diving bird of northern seas -02047411 05 n 02 common_murre 0 Uria_aalge 0 001 @ 02047260 n 0000 | the most frequent variety of murre -02047517 05 n 02 thick-billed_murre 0 Uria_lomvia 0 001 @ 02047260 n 0000 | a variety of murre -02047614 05 n 01 puffin 0 005 @ 02021795 n 0000 #m 02045024 n 0000 ~ 02047975 n 0000 ~ 02048115 n 0000 ~ 02048353 n 0000 | any of two genera of northern seabirds having short necks and brightly colored compressed bills -02047835 05 n 02 Fratercula 0 genus_Fratercula 0 004 @ 01507175 n 0000 #m 02045024 n 0000 %m 02047975 n 0000 %m 02048115 n 0000 | puffins -02047975 05 n 02 Atlantic_puffin 0 Fratercula_arctica 0 002 @ 02047614 n 0000 #m 02047835 n 0000 | common puffin of the northern Atlantic -02048115 05 n 02 horned_puffin 0 Fratercula_corniculata 0 002 @ 02047614 n 0000 #m 02047835 n 0000 | northern Pacific puffin -02048242 05 n 02 Lunda 0 genus_Lunda 0 003 @ 01507175 n 0000 #m 02045024 n 0000 %m 02048353 n 0000 | puffins -02048353 05 n 02 tufted_puffin 0 Lunda_cirrhata 0 002 @ 02047614 n 0000 #m 02048242 n 0000 | northern Pacific puffin having a large yellow plume over each eye -02048514 05 n 02 Gaviiformes 0 order_Gaviiformes 0 004 @ 01342529 n 0000 #m 01502262 n 0000 %m 02048698 n 0000 %m 02048832 n 0000 | large aquatic birds: loons and some extinct forms -02048698 05 n 01 gaviiform_seabird 0 003 @ 02021795 n 0000 #m 02048514 n 0000 ~ 02049088 n 0000 | seabirds of the order Gaviiformes -02048832 05 n 02 Gavidae 0 family_Gavidae 0 003 @ 01504437 n 0000 #m 02048514 n 0000 %m 02048952 n 0000 | loon family -02048952 05 n 02 Gavia 0 genus_Gavia 0 003 @ 01507175 n 0000 #m 02048832 n 0000 %m 02049088 n 0000 | type genus of the Gavidae: loons -02049088 05 n 02 loon 0 diver 0 002 @ 02048698 n 0000 #m 02048952 n 0000 | large somewhat primitive fish-eating diving bird of the northern hemisphere having webbed feet placed far back; related to the grebes -02049299 05 n 06 Podicipitiformes 0 order_Podicipitiformes 0 Podicipediformes 0 order_Podicipediformes 0 Colymbiformes 0 order_Colymbiformes 0 004 @ 01342529 n 0000 #m 01502262 n 0000 %m 02049532 n 0000 %m 02049672 n 0000 | grebes -02049532 05 n 01 podicipitiform_seabird 0 003 @ 02021795 n 0000 #m 02049299 n 0000 ~ 02050004 n 0000 | aquatic birds related to the loons -02049672 05 n 02 Podicipedidae 0 family_Podicipedidae 0 004 @ 01504437 n 0000 #m 02049299 n 0000 %m 02049855 n 0000 %m 02050921 n 0000 | coextensive with the order Podicipitiformes -02049855 05 n 02 Podiceps 0 genus_Podiceps 0 003 @ 01507175 n 0000 #m 02049672 n 0000 %m 02050004 n 0000 | type genus of the Podicipedidae: grebes -02050004 05 n 01 grebe 0 007 @ 02049532 n 0000 #m 02049855 n 0000 ~ 02050313 n 0000 ~ 02050442 n 0000 ~ 02050586 n 0000 ~ 02050809 n 0000 ~ 02051059 n 0000 | small compact-bodied almost completely aquatic bird that builds floating nests; similar to loons but smaller and with lobate rather than webbed feet -02050313 05 n 02 great_crested_grebe 0 Podiceps_cristatus 0 001 @ 02050004 n 0000 | large Old World grebe with black ear tufts -02050442 05 n 02 red-necked_grebe 0 Podiceps_grisegena 0 001 @ 02050004 n 0000 | large stocky grebe of circumpolar regions having a dark neck -02050586 05 n 03 black-necked_grebe 0 eared_grebe 0 Podiceps_nigricollis 0 001 @ 02050004 n 0000 | small grebe with yellow ear tufts and a black neck; found in Eurasia and southern Africa as well as western United States -02050809 05 n 03 dabchick 0 little_grebe 0 Podiceps_ruficollis 0 001 @ 02050004 n 0000 | small European grebe -02050921 05 n 02 Podilymbus 0 genus_Podilymbus 0 003 @ 01507175 n 0000 #m 02049672 n 0000 %m 02051059 n 0000 | a genus of Podicipedidae -02051059 05 n 02 pied-billed_grebe 0 Podilymbus_podiceps 0 002 @ 02050004 n 0000 #m 02050921 n 0000 | American grebe having a black-banded whitish bill -02051213 05 n 02 Pelecaniformes 0 order_Pelecaniformes 0 008 @ 01342529 n 0000 #m 01502262 n 0000 %m 02051701 n 0000 %m 02052511 n 0000 %m 02052936 n 0000 %m 02053720 n 0000 %m 02054251 n 0000 %m 02054834 n 0000 | pelicans; frigate birds; gannets; cormorants -02051474 05 n 01 pelecaniform_seabird 0 007 @ 02021795 n 0000 ~ 02051845 n 0000 ~ 02052775 n 0000 ~ 02053083 n 0000 ~ 02054036 n 0000 ~ 02054502 n 0000 ~ 02055107 n 0000 | large fish-eating seabird with four-toed webbed feet -02051701 05 n 02 Pelecanidae 0 family_Pelecanidae 0 004 @ 01504437 n 0000 #m 02051213 n 0000 %m 02051845 n 0000 %m 02052044 n 0000 | pelicans -02051845 05 n 01 pelican 0 004 @ 02051474 n 0000 #m 02051701 n 0000 ~ 02052204 n 0000 ~ 02052365 n 0000 | large long-winged warm-water seabird having a large bill with a distensible pouch for fish -02052044 05 n 02 Pelecanus 0 genus_Pelecanus 0 004 @ 01507175 n 0000 #m 02051701 n 0000 %m 02052204 n 0000 %m 02052365 n 0000 | type genus of the Pelecanidae -02052204 05 n 02 white_pelican 0 Pelecanus_erythrorhynchos 0 002 @ 02051845 n 0000 #m 02052044 n 0000 | large American pelican; white with black wing feathers -02052365 05 n 02 Old_world_white_pelican 0 Pelecanus_onocrotalus 0 002 @ 02051845 n 0000 #m 02052044 n 0000 | similar to American white pelican -02052511 05 n 02 Fregatidae 0 family_Fregatidae 0 003 @ 01504437 n 0000 #m 02051213 n 0000 %m 02052639 n 0000 | frigate birds -02052639 05 n 02 Fregata 0 genus_Fregata 0 003 @ 01507175 n 0000 #m 02052511 n 0000 %m 02052775 n 0000 | type genus of the Fregatidae -02052775 05 n 02 frigate_bird 0 man-of-war_bird 0 002 @ 02051474 n 0000 #m 02052639 n 0000 | long-billed warm-water seabird with wide wingspan and forked tail -02052936 05 n 02 Sulidae 0 family_Sulidae 0 004 @ 01504437 n 0000 #m 02051213 n 0000 %m 02053083 n 0000 %m 02053279 n 0000 | gannets and boobies -02053083 05 n 01 gannet 0 004 @ 02051474 n 0000 #m 02052936 n 0000 ~ 02053425 n 0000 ~ 02053584 n 0000 | large heavily built seabird with a long stout bill noted for its plunging dives for fish -02053279 05 n 02 Sula 0 genus_Sula 0 004 @ 01507175 n 0000 #m 02052936 n 0000 %m 02053425 n 0000 %m 02053584 n 0000 | type genus of the Sulidae -02053425 05 n 04 solan 0 solan_goose 0 solant_goose 0 Sula_bassana 0 002 @ 02053083 n 0000 #m 02053279 n 0000 | very large white gannet with black wing tips -02053584 05 n 01 booby 0 002 @ 02053083 n 0000 #m 02053279 n 0000 | small tropical gannet having a bright bill or bright feet or both -02053720 05 n 02 Phalacrocoracidae 0 family_Phalacrocoracidae 0 003 @ 01504437 n 0000 #m 02051213 n 0000 %m 02053859 n 0000 | cormorants -02053859 05 n 02 Phalacrocorax 0 genus_Phalacrocorax 0 003 @ 01507175 n 0000 #m 02053720 n 0000 %m 02054036 n 0000 | type genus: coextensive with the family Phalacrocoracidae -02054036 05 n 02 cormorant 0 Phalacrocorax_carbo 0 002 @ 02051474 n 0000 #m 02053859 n 0000 | large voracious dark-colored long-necked seabird with a distensible pouch for holding fish; used in Asia to catch fish -02054251 05 n 02 Anhingidae 0 family_Anhingidae 0 003 @ 01504437 n 0000 #m 02051213 n 0000 %m 02054376 n 0000 | snakebirds -02054376 05 n 01 genus_Anhinga 0 003 @ 01507175 n 0000 #m 02054251 n 0000 %m 02054502 n 0000 | type genus of the Anhingidae -02054502 05 n 03 snakebird 0 anhinga 0 darter 1 003 @ 02051474 n 0000 #m 02054376 n 0000 ~ 02054711 n 0000 | fish-eating bird of warm inland waters having a long flexible neck and slender sharp-pointed bill -02054711 05 n 02 water_turkey 0 Anhinga_anhinga 0 001 @ 02054502 n 0000 | blackish New World snakebird of swampy regions -02054834 05 n 02 Phaethontidae 0 family_Phaethontidae 0 003 @ 01504437 n 0000 #m 02051213 n 0000 %m 02054966 n 0000 | tropicbirds -02054966 05 n 02 Phaethon 0 genus_Phaethon 0 003 @ 01507175 n 0000 #m 02054834 n 0000 %m 02055107 n 0000 | type genus of the Phaethontidae -02055107 05 n 03 tropic_bird 0 tropicbird 0 boatswain_bird 0 002 @ 02051474 n 0000 #m 02054966 n 0000 | mostly white web-footed tropical seabird often found far from land -02055280 05 n 02 Sphenisciformes 0 order_Sphenisciformes 0 004 @ 01342529 n 0000 #m 01502262 n 0000 %m 02055431 n 0000 %m 02055658 n 0000 | penguins -02055431 05 n 02 Spheniscidae 0 family_Spheniscidae 0 007 @ 01504437 n 0000 #m 02055280 n 0000 %m 02055803 n 0000 %m 02056091 n 0000 %m 02056421 n 0000 %m 02056873 n 0000 %m 02057208 n 0000 | comprising all existing penguins -02055658 05 n 01 sphenisciform_seabird 0 003 @ 02021795 n 0000 #m 02055280 n 0000 ~ 02055803 n 0000 | flightless cold-water seabirds: penguins -02055803 05 n 01 penguin 0 007 @ 02055658 n 0000 #m 02055431 n 0000 ~ 02056228 n 0000 ~ 02056570 n 0000 ~ 02056728 n 0000 ~ 02057035 n 0000 ~ 02057330 n 0000 | short-legged flightless birds of cold southern especially Antarctic regions having webbed feet and wings modified as flippers -02056091 05 n 02 Pygoscelis 0 genus_Pygoscelis 0 003 @ 01507175 n 0000 #m 02055431 n 0000 %m 02056228 n 0000 | a genus of Spheniscidae -02056228 05 n 03 Adelie 0 Adelie_penguin 0 Pygoscelis_adeliae 0 002 @ 02055803 n 0000 #m 02056091 n 0000 | medium-sized penguins occurring in large colonies on the Adelie Coast of Antarctica -02056421 05 n 02 Aptenodytes 0 genus_Aptenodytes 0 004 @ 01507175 n 0000 #m 02055431 n 0000 %m 02056570 n 0000 %m 02056728 n 0000 | large penguins -02056570 05 n 02 king_penguin 0 Aptenodytes_patagonica 0 002 @ 02055803 n 0000 #m 02056421 n 0000 | large penguin on islands bordering the Antarctic Circle -02056728 05 n 02 emperor_penguin 0 Aptenodytes_forsteri 0 002 @ 02055803 n 0000 #m 02056421 n 0000 | the largest penguin; an Antarctic penguin -02056873 05 n 02 Spheniscus 0 genus_Spheniscus 0 003 @ 01507175 n 0000 #m 02055431 n 0000 %m 02057035 n 0000 | type genus of the Spheniscidae: jackass penguins -02057035 05 n 02 jackass_penguin 0 Spheniscus_demersus 0 002 @ 02055803 n 0000 #m 02056873 n 0000 | small penguin of South America and southern Africa with a braying call -02057208 05 n 02 Eudyptes 0 genus_Eudyptes 0 003 @ 01507175 n 0000 #m 02055431 n 0000 %m 02057330 n 0000 | rock hoppers -02057330 05 n 02 rock_hopper 0 crested_penguin 0 002 @ 02055803 n 0000 #m 02057208 n 0000 | small penguin of the Falkland Islands and New Zealand -02057478 05 n 02 Procellariiformes 0 order_Procellariiformes 0 007 @ 01342529 n 0000 #m 01502262 n 0000 %m 02057898 n 0000 %m 02058074 n 0000 %m 02058933 n 0000 %m 02060719 n 0000 %m 02061716 n 0000 | petrels; albatrosses; shearwaters; diving petrels -02057731 05 n 02 pelagic_bird 0 oceanic_bird 0 005 @ 02021795 n 0000 ~ 02057898 n 0000 ~ 02058221 n 0000 ~ 02059162 n 0000 ~ 02061853 n 0000 | bird of the open seas -02057898 05 n 01 procellariiform_seabird 0 002 @ 02057731 n 0000 #m 02057478 n 0000 | large long-winged bird with hooked bill and tubular nostrils that wanders the open seas -02058074 05 n 02 Diomedeidae 0 family_Diomedeidae 0 004 @ 01504437 n 0000 #m 02057478 n 0000 %m 02058221 n 0000 %m 02058453 n 0000 | albatrosses -02058221 05 n 02 albatross 0 mollymawk 0 004 @ 02057731 n 0000 #m 02058074 n 0000 ~ 02058594 n 0000 ~ 02058747 n 0000 | large web-footed birds of the southern hemisphere having long narrow wings; noted for powerful gliding flight -02058453 05 n 01 genus_Diomedea 0 004 @ 01507175 n 0000 #m 02058074 n 0000 %m 02058594 n 0000 %m 02058747 n 0000 | type of the Diomedeidae -02058594 05 n 02 wandering_albatross 0 Diomedea_exulans 0 002 @ 02058221 n 0000 #m 02058453 n 0000 | very large albatross; white with wide black wings -02058747 05 n 06 black-footed_albatross 0 gooney 0 gooney_bird 0 goonie 0 goony 0 Diomedea_nigripes 0 002 @ 02058221 n 0000 #m 02058453 n 0000 | a variety of albatross with black feet -02058933 05 n 02 Procellariidae 0 family_Procellariidae 0 007 @ 01504437 n 0000 #m 02057478 n 0000 %m 02059162 n 0000 %m 02059393 n 0000 %m 02059723 n 0000 %m 02060016 n 0000 %m 02060290 n 0000 | petrels; fulmars; shearwaters; -02059162 05 n 01 petrel 0 007 @ 02057731 n 0000 #m 02058933 n 0000 ~ 02059541 n 0000 ~ 02059852 n 0000 ~ 02060133 n 0000 ~ 02060411 n 0000 ~ 02060889 n 0000 | relatively small long-winged tube-nosed bird that flies far from land -02059393 05 n 02 Procellaria 0 genus_Procellaria 0 003 @ 01507175 n 0000 #m 02058933 n 0000 %m 02059541 n 0000 | type genus of the Procellariidae -02059541 05 n 02 white-chinned_petrel 0 Procellaria_aequinoctialis 0 002 @ 02059162 n 0000 #m 02059393 n 0000 | large black petrel of southern seas having a white mark on the chin -02059723 05 n 02 Macronectes 0 genus_Macronectes 0 003 @ 01507175 n 0000 #m 02058933 n 0000 %m 02059852 n 0000 | giant petrels -02059852 05 n 03 giant_petrel 0 giant_fulmar 0 Macronectes_giganteus 0 002 @ 02059162 n 0000 #m 02059723 n 0000 | large brownish petrel chiefly of Antarctic seas -02060016 05 n 02 Fulmarus 0 genus_Fulmarus 0 003 @ 01507175 n 0000 #m 02058933 n 0000 %m 02060133 n 0000 | fulmars -02060133 05 n 03 fulmar 0 fulmar_petrel 0 Fulmarus_glacialis 0 002 @ 02059162 n 0000 #m 02060016 n 0000 | heavy short-tailed oceanic bird of polar regions -02060290 05 n 02 Puffinus 0 genus_Puffinus 0 003 @ 01507175 n 0000 #m 02058933 n 0000 %m 02060411 n 0000 | shearwaters -02060411 05 n 01 shearwater 0 003 @ 02059162 n 0000 #m 02060290 n 0000 ~ 02060569 n 0000 | long-winged oceanic bird that in flight skims close to the waves -02060569 05 n 02 Manx_shearwater 0 Puffinus_puffinus 0 001 @ 02060411 n 0000 | small black-and-white shearwater common in the northeastern Atlantic -02060719 05 n 02 Hydrobatidae 0 family_Hydrobatidae 0 005 @ 01504437 n 0000 #m 02057478 n 0000 %m 02060889 n 0000 %m 02061073 n 0000 %m 02061425 n 0000 | storm petrels -02060889 05 n 01 storm_petrel 0 004 @ 02059162 n 0000 #m 02060719 n 0000 ~ 02061217 n 0000 ~ 02061560 n 0000 | any of various small petrels having dark plumage with paler underparts -02061073 05 n 02 Hydrobates 0 genus_Hydrobates 0 003 @ 01507175 n 0000 #m 02060719 n 0000 %m 02061217 n 0000 | type genus of the Hydrobatidae -02061217 05 n 03 stormy_petrel 0 northern_storm_petrel 0 Hydrobates_pelagicus 0 002 @ 02060889 n 0000 #m 02061073 n 0000 | sooty black petrel with white markings; of the northern Atlantic and Mediterranean -02061425 05 n 02 Oceanites 0 genus_Oceanites 0 003 @ 01507175 n 0000 #m 02060719 n 0000 %m 02061560 n 0000 | a genus of Hydrobatidae -02061560 05 n 03 Mother_Carey's_chicken 0 Mother_Carey's_hen 0 Oceanites_oceanicus 0 002 @ 02060889 n 0000 #m 02061425 n 0000 | medium-sized storm petrel -02061716 05 n 02 Pelecanoididae 0 family_Pelecanoididae 0 003 @ 01504437 n 0000 #m 02057478 n 0000 %m 02061853 n 0000 | diving petrels -02061853 05 n 01 diving_petrel 0 002 @ 02057731 n 0000 #m 02061716 n 0000 | any of several small diving birds of southern hemisphere seas; somewhat resemble auks -02062017 05 n 01 aquatic_mammal 0 005 @ 01886756 n 0000 ~ 02062430 n 0000 ~ 02073250 n 0000 ~ 02075927 n 0000 %p 02465084 n 0000 | whales and dolphins; manatees and dugongs; walruses; seals -02062209 05 n 02 Cetacea 0 order_Cetacea 0 008 @ 01342529 n 0000 #m 01886220 n 0000 + 02689973 a 0102 + 02689973 a 0101 %m 02062430 n 0000 %m 02062991 n 0000 %m 02066450 n 0000 %m 02072209 n 0000 | an order of Eutheria -02062430 05 n 03 cetacean 0 cetacean_mammal 0 blower 0 007 @ 02062017 n 0000 #m 02062209 n 0000 #m 07995164 n 0000 + 02689973 a 0101 ~ 02062744 n 0000 %p 02158619 n 0000 %p 05250420 n 0000 | large aquatic carnivorous mammal with fin-like forelimbs no hind limbs, including: whales; dolphins; porpoises; narwhals -02062744 05 n 01 whale 0 006 @ 02062430 n 0000 + 01141938 v 0101 ~ 02063224 n 0000 ~ 02066707 n 0000 ~ 02072493 n 0000 ~ 02072953 n 0000 | any of the larger cetacean mammals having a streamlined body and breathing through a blowhole on the head -02062991 05 n 02 Mysticeti 0 suborder_Mysticeti 0 006 @ 01342529 n 0000 #m 02062209 n 0000 %m 02063224 n 0000 %m 02063516 n 0000 %m 02064154 n 0000 %m 02065932 n 0000 | baleen whales: right whales; rorquals; blue whales; humpbacks -02063224 05 n 02 baleen_whale 0 whalebone_whale 0 008 @ 02062744 n 0000 #m 02062991 n 0000 ~ 02063662 n 0000 ~ 02064000 n 0000 ~ 02064338 n 0000 ~ 02064816 n 0000 ~ 02065726 n 0000 ~ 02066245 n 0000 | whale with plates of whalebone along the upper jaw for filtering plankton from the water -02063516 05 n 02 Balaenidae 0 family_Balaenidae 0 004 @ 01862557 n 0000 #m 02062991 n 0000 %m 02063662 n 0000 %m 02063846 n 0000 | right whales -02063662 05 n 01 right_whale 0 002 @ 02063224 n 0000 #m 02063516 n 0000 | large Arctic whalebone whale; allegedly the `right' whale to hunt because of its valuable whalebone and oil -02063846 05 n 02 Balaena 0 genus_Balaena 0 003 @ 01864707 n 0000 #m 02063516 n 0000 %m 02064000 n 0000 | type genus of the Balaenidae: Greenland whales -02064000 05 n 04 bowhead 0 bowhead_whale 0 Greenland_whale 0 Balaena_mysticetus 0 002 @ 02063224 n 0000 #m 02063846 n 0000 | large-mouthed Arctic whale -02064154 05 n 02 Balaenopteridae 0 family_Balaenopteridae 0 005 @ 01862557 n 0000 #m 02062991 n 0000 %m 02064338 n 0000 %m 02064608 n 0000 %m 02065599 n 0000 | rorquals; blue whales -02064338 05 n 02 rorqual 0 razorback 2 005 @ 02063224 n 0000 #m 02064154 n 0000 ~ 02065026 n 0000 ~ 02065263 n 0000 ~ 02065407 n 0000 | any of several baleen whales of the family Balaenopteridae having longitudinal grooves on the throat and a small pointed dorsal fin -02064608 05 n 02 Balaenoptera 0 genus_Balaenoptera 0 006 @ 01864707 n 0000 #m 02064154 n 0000 %m 02064816 n 0000 %m 02065026 n 0000 %m 02065263 n 0000 %m 02065407 n 0000 | type genus of the Balaenopteridae -02064816 05 n 03 blue_whale 0 sulfur_bottom 0 Balaenoptera_musculus 0 002 @ 02063224 n 0000 #m 02064608 n 0000 | largest mammal ever known; bluish-grey migratory whalebone whale mostly of southern hemisphere -02065026 05 n 05 finback 0 finback_whale 0 fin_whale 0 common_rorqual 0 Balaenoptera_physalus 0 002 @ 02064338 n 0000 #m 02064608 n 0000 | large flat-headed whalebone whale having deep furrows along the throat; of Atlantic and Pacific -02065263 05 n 02 sei_whale 0 Balaenoptera_borealis 0 002 @ 02064338 n 0000 #m 02064608 n 0000 | similar to but smaller than the finback whale -02065407 05 n 04 lesser_rorqual 0 piked_whale 0 minke_whale 0 Balaenoptera_acutorostrata 0 002 @ 02064338 n 0000 #m 02064608 n 0000 | small finback of coastal waters of Atlantic and Pacific -02065599 05 n 02 Megaptera 0 genus_Megaptera 0 003 @ 01864707 n 0000 #m 02064154 n 0000 %m 02065726 n 0000 | humpback whales -02065726 05 n 03 humpback 0 humpback_whale 0 Megaptera_novaeangliae 0 002 @ 02063224 n 0000 #m 02065599 n 0000 | large whalebone whale with long flippers noted for arching or humping its back as it dives -02065932 05 n 02 Eschrichtiidae 0 family_Eschrichtiidae 0 003 @ 01862557 n 0000 #m 02062991 n 0000 %m 02066086 n 0000 | comprising only the grey whales -02066086 05 n 02 Eschrichtius 0 genus_Eschrichtius 0 003 @ 01864707 n 0000 #m 02065932 n 0000 %m 02066245 n 0000 | type and sole genus of the Eschrichtiidae -02066245 05 n 05 grey_whale 0 gray_whale 0 devilfish 3 Eschrichtius_gibbosus 0 Eschrichtius_robustus 0 002 @ 02063224 n 0000 #m 02066086 n 0000 | medium-sized greyish-black whale of the northern Pacific -02066450 05 n 02 Odontoceti 0 suborder_Odontoceti 0 007 @ 01342529 n 0000 #m 02062209 n 0000 %m 02066707 n 0000 %m 02066950 n 0000 %m 02067941 n 0000 %m 02068735 n 0000 %m 02071905 n 0000 | toothed whales: dolphins; porpoises; sperm whales; beaked whales -02066707 05 n 01 toothed_whale 0 007 @ 02062744 n 0000 #m 02066450 n 0000 ~ 02067240 n 0000 ~ 02067603 n 0000 ~ 02067768 n 0000 ~ 02068206 n 0000 ~ 02068974 n 0000 | any of several whales having simple conical teeth and feeding on fish etc. -02066950 05 n 02 Physeteridae 0 family_Physeteridae 0 004 @ 01862557 n 0000 #m 02066450 n 0000 %m 02067100 n 0000 %m 02067462 n 0000 | sperm whales -02067100 05 n 02 Physeter 0 genus_Physeter 0 003 @ 01864707 n 0000 #m 02066950 n 0000 %m 02067240 n 0000 | type genus of the Physeteridae -02067240 05 n 04 sperm_whale 0 cachalot 0 black_whale 1 Physeter_catodon 0 002 @ 02066707 n 0000 #m 02067100 n 0000 | large whale with a large cavity in the head containing spermaceti and oil; also a source of ambergris -02067462 05 n 02 Kogia 0 genus_Kogia 0 004 @ 01864707 n 0000 #m 02066950 n 0000 %m 02067603 n 0000 %m 02067768 n 0000 | pygmy sperm whales -02067603 05 n 02 pygmy_sperm_whale 0 Kogia_breviceps 0 002 @ 02066707 n 0000 #m 02067462 n 0000 | small sperm whale of warm waters of both coasts of North America -02067768 05 n 02 dwarf_sperm_whale 0 Kogia_simus 0 002 @ 02066707 n 0000 #m 02067462 n 0000 | very small (to 8 feet) sperm whale of central coasts of Atlantic and Pacific -02067941 05 n 04 Ziphiidae 0 family_Ziphiidae 0 Hyperodontidae 0 family_Hyperodontidae 0 004 @ 01862557 n 0000 #m 02066450 n 0000 %m 02068206 n 0000 %m 02068408 n 0000 | beaked whales; in some especially former classifications included in the family Physeteridae -02068206 05 n 01 beaked_whale 0 003 @ 02066707 n 0000 #m 02067941 n 0000 ~ 02068541 n 0000 | any of several whales inhabiting all oceans and having beaklike jaws with vestigial teeth in the upper jaw -02068408 05 n 02 Hyperoodon 0 genus_Hyperoodon 0 003 @ 01864707 n 0000 #m 02067941 n 0000 %m 02068541 n 0000 | bottle-nosed whales -02068541 05 n 04 bottle-nosed_whale 0 bottlenose_whale 0 bottlenose 1 Hyperoodon_ampullatus 0 002 @ 02068206 n 0000 #m 02068408 n 0000 | northern Atlantic beaked whale with a bulbous forehead -02068735 05 n 02 Delphinidae 0 family_Delphinidae 0 009 @ 01862557 n 0000 #m 02066450 n 0000 %m 02068974 n 0000 %m 02069271 n 0000 %m 02069569 n 0000 %m 02070311 n 0000 %m 02070923 n 0000 %m 02071173 n 0000 %m 02071506 n 0000 | dolphins -02068974 05 n 01 dolphin 0 010 @ 02066707 n 0000 #m 02068735 n 0000 ~ 02069412 n 0000 ~ 02069701 n 0000 ~ 02070430 n 0000 ~ 02071028 n 0000 ~ 02071294 n 0000 ~ 02071636 n 0000 ~ 02072040 n 0000 ~ 02072798 n 0000 | any of various small toothed whales with a beaklike snout; larger than porpoises -02069271 05 n 02 Delphinus 0 genus_Delphinus 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02069412 n 0000 | type genus of the Delphinidae -02069412 05 n 02 common_dolphin 0 Delphinus_delphis 0 002 @ 02068974 n 0000 #m 02069271 n 0000 | black-and-white dolphin that leaps high out of the water; -02069569 05 n 02 Tursiops 0 genus_Tursiops 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02069701 n 0000 | a genus of Delphinidae -02069701 05 n 03 bottlenose_dolphin 0 bottle-nosed_dolphin 0 bottlenose 2 004 @ 02068974 n 0000 #m 02069569 n 0000 ~ 02069974 n 0000 ~ 02070174 n 0000 | any of several dolphins with rounded forehead and well-developed beak; chiefly of northern Atlantic and Mediterranean -02069974 05 n 02 Atlantic_bottlenose_dolphin 0 Tursiops_truncatus 0 001 @ 02069701 n 0000 | the most common dolphin of northern Atlantic and Mediterranean; often kept captive and trained to perform -02070174 05 n 02 Pacific_bottlenose_dolphin 0 Tursiops_gilli 0 001 @ 02069701 n 0000 | a bottlenose dolphin found in the Pacific Ocean -02070311 05 n 02 Phocoena 0 genus_Phocoena 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02070430 n 0000 | porpoises -02070430 05 n 01 porpoise 0 004 @ 02068974 n 0000 #m 02070311 n 0000 ~ 02070624 n 0000 ~ 02070776 n 0000 | any of several small gregarious cetacean mammals having a blunt snout and many teeth -02070624 05 n 03 harbor_porpoise 0 herring_hog 0 Phocoena_phocoena 0 001 @ 02070430 n 0000 | the common porpoise of the northern Atlantic and Pacific -02070776 05 n 02 vaquita 0 Phocoena_sinus 0 001 @ 02070430 n 0000 | a short porpoise that lives in the Gulf of California; an endangered species -02070923 05 n 01 genus_Grampus 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02071028 n 0000 | grampus -02071028 05 n 02 grampus 1 Grampus_griseus 0 002 @ 02068974 n 0000 #m 02070923 n 0000 | slaty-grey blunt-nosed dolphin common in northern seas -02071173 05 n 02 Orcinus 0 genus_Orcinus 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02071294 n 0000 | killer whales -02071294 05 n 06 killer_whale 0 killer 0 orca 0 grampus 2 sea_wolf 0 Orcinus_orca 0 002 @ 02068974 n 0000 #m 02071173 n 0000 | predatory black-and-white toothed whale with large dorsal fin; common in cold seas -02071506 05 n 02 Globicephala 0 genus_Globicephala 0 003 @ 01864707 n 0000 #m 02068735 n 0000 %m 02071636 n 0000 | pilot whales -02071636 05 n 05 pilot_whale 0 black_whale 2 common_blackfish 0 blackfish 2 Globicephala_melaena 0 002 @ 02068974 n 0000 #m 02071506 n 0000 | small dark-colored whale of the Atlantic coast of the United States; the largest male acts as pilot or leader for the school -02071905 05 n 02 Platanistidae 0 family_Platanistidae 0 003 @ 01862557 n 0000 #m 02066450 n 0000 %m 02072040 n 0000 | river dolphins -02072040 05 n 01 river_dolphin 0 002 @ 02068974 n 0000 #m 02071905 n 0000 | any of several long-snouted usually freshwater dolphins of South America and southern Asia -02072209 05 n 02 Monodontidae 0 family_Monodontidae 0 004 @ 01862557 n 0000 #m 02062209 n 0000 %m 02072355 n 0000 %m 02072665 n 0000 | narwhals -02072355 05 n 02 Monodon 0 genus_Monodon 0 003 @ 01864707 n 0000 #m 02072209 n 0000 %m 02072493 n 0000 | type genus of the Monodontidae -02072493 05 n 04 narwhal 0 narwal 0 narwhale 0 Monodon_monoceros 0 002 @ 02062744 n 0000 #m 02072355 n 0000 | small Arctic whale the male having a long spiral ivory tusk -02072665 05 n 02 Delphinapterus 0 genus_Delphinapterus 0 003 @ 01864707 n 0000 #m 02072209 n 0000 %m 02072798 n 0000 | white whale -02072798 05 n 03 white_whale 0 beluga 2 Delphinapterus_leucas 0 002 @ 02068974 n 0000 #m 02072665 n 0000 | small northern whale that is white when adult -02072953 05 n 01 spouter 0 002 @ 02062744 n 0000 + 02068413 v 0104 | a spouting whale -02073041 05 n 02 Sirenia 0 order_Sirenia 0 005 @ 01342529 n 0000 #m 01886220 n 0000 %m 02073250 n 0000 %m 02073532 n 0000 %m 02074004 n 0000 | an animal order including: manatees; dugongs; Steller's sea cow -02073250 05 n 03 sea_cow 0 sirenian_mammal 0 sirenian 0 005 @ 02062017 n 0000 #m 02073041 n 0000 ~ 02073831 n 0000 ~ 02074367 n 0000 ~ 02074726 n 0000 | any of two families of large herbivorous aquatic mammals with paddle-shaped tails and flipper-like forelimbs and no hind limbs -02073532 05 n 02 Trichechidae 0 family_Trichechidae 0 003 @ 01862557 n 0000 #m 02073041 n 0000 %m 02073679 n 0000 | comprising only the manatees -02073679 05 n 02 Trichechus 0 genus_Trichecus 0 003 @ 01864707 n 0000 #m 02073532 n 0000 %m 02073831 n 0000 | type and sole genus of the Trichechidae -02073831 05 n 02 manatee 0 Trichechus_manatus 0 002 @ 02073250 n 0000 #m 02073679 n 0000 | sirenian mammal of tropical coastal waters of America; the flat tail is rounded -02074004 05 n 02 Dugongidae 0 family_Dugongidae 0 004 @ 01862557 n 0000 #m 02073041 n 0000 %m 02074214 n 0000 %m 02074542 n 0000 | a family of mammals of order Sirenia including dugongs and Steller's sea cow -02074214 05 n 01 genus_Dugong 0 003 @ 01864707 n 0000 #m 02074004 n 0000 %m 02074367 n 0000 | type genus of the Dugongidae comprising only the dugongs -02074367 05 n 02 dugong 0 Dugong_dugon 0 002 @ 02073250 n 0000 #m 02074214 n 0000 | sirenian tusked mammal found from eastern Africa to Australia; the flat tail is bilobate -02074542 05 n 02 Hydrodamalis 0 genus_Hydrodamalis 0 003 @ 01864707 n 0000 #m 02074004 n 0000 %m 02074726 n 0000 | a genus of the family Dugongidae comprising only Steller's sea cow -02074726 05 n 02 Steller's_sea_cow 0 Hydrodamalis_gigas 0 002 @ 02073250 n 0000 #m 02074542 n 0000 | extinct large sirenian mammal formerly found near the Asiatic coast of the Bering Sea -02074915 05 n 02 Carnivora 0 order_Carnivora 0 011 @ 01342529 n 0000 #m 01886220 n 0000 %m 02075296 n 0000 %m 02075727 n 0000 %m 02083038 n 0000 %m 02116959 n 0000 %m 02120692 n 0000 %m 02131418 n 0000 %m 02134589 n 0000 %m 02440705 n 0000 %m 02507337 n 0000 | cats; lions; tigers; panthers; dogs; wolves; jackals; bears; raccoons; skunks; and members of the suborder Pinnipedia -02075296 05 n 01 carnivore 0 009 @ 01886756 n 0000 #m 02074915 n 0000 ~ 02082190 n 0000 ~ 02083346 n 0000 ~ 02120997 n 0000 ~ 02131653 n 0000 ~ 02134971 n 0000 ~ 02441326 n 0000 ~ 02507649 n 0000 | a terrestrial or aquatic flesh-eating mammal; "terrestrial carnivores have four or five clawed digits on each limb" -02075612 05 n 01 omnivore 0 001 @ 00015388 n 0000 | an animal that feeds on both animal and vegetable substances -02075727 05 n 02 Pinnipedia 0 suborder_Pinnipedia 0 006 @ 01342529 n 0000 #m 02074915 n 0000 %m 02075927 n 0000 %m 02076535 n 0000 %m 02079170 n 0000 %m 02081282 n 0000 | seals; sea lions; walruses -02075927 05 n 03 pinniped_mammal 0 pinniped 0 pinnatiped 0 005 @ 02062017 n 0000 #m 02075727 n 0000 #m 07995164 n 0000 ~ 02076196 n 0000 ~ 02081571 n 0000 | aquatic carnivorous mammal having a streamlined body specialized for swimming with limbs modified as flippers -02076196 05 n 01 seal 0 005 @ 02075927 n 0000 + 01143498 v 0101 ~ 02076402 n 0000 ~ 02076779 n 0000 ~ 02079389 n 0000 | any of numerous marine mammals that come on shore to breed; chiefly of cold regions -02076402 05 n 02 crabeater_seal 0 crab-eating_seal 0 001 @ 02076196 n 0000 | silvery grey Antarctic seal subsisting on crustaceans -02076535 05 n 02 Otariidae 0 family_Otariidae 0 008 @ 01862557 n 0000 #m 02075727 n 0000 %m 02076779 n 0000 %m 02077023 n 0000 %m 02077533 n 0000 %m 02078159 n 0000 %m 02078436 n 0000 %m 02078882 n 0000 | eared seals: sea lions and fur seals -02076779 05 n 01 eared_seal 0 005 @ 02076196 n 0000 #m 02076535 n 0000 ~ 02077152 n 0000 ~ 02077658 n 0000 ~ 02077923 n 0000 | pinniped mammal having external ear flaps and hind limbs used for locomotion on land; valued for its soft underfur -02077023 05 n 02 Arctocephalus 0 genus_Arctocephalus 0 003 @ 01864707 n 0000 #m 02076535 n 0000 %m 02077152 n 0000 | fur seals -02077152 05 n 01 fur_seal 1 003 @ 02076779 n 0000 #m 02077023 n 0000 ~ 02077384 n 0000 | eared seal of the southern hemisphere; the thick soft underfur is the source of sealskin; "the male fur seal is much larger than the female" -02077384 05 n 02 guadalupe_fur_seal 0 Arctocephalus_philippi 0 001 @ 02077152 n 0000 | a fur seal of the Pacific coast of California and southward -02077533 05 n 02 Callorhinus 0 genus_Callorhinus 0 003 @ 01864707 n 0000 #m 02076535 n 0000 %m 02077658 n 0000 | fur seals -02077658 05 n 01 fur_seal 2 003 @ 02076779 n 0000 #m 02077533 n 0000 ~ 02077787 n 0000 | an eared seal of the northern Pacific -02077787 05 n 02 Alaska_fur_seal 0 Callorhinus_ursinus 0 001 @ 02077658 n 0000 | of Pacific coast from Alaska southward to California -02077923 05 n 01 sea_lion 0 005 @ 02076779 n 0000 ~ 02078292 n 0000 ~ 02078574 n 0000 ~ 02078738 n 0000 ~ 02079005 n 0000 | any of several large eared seals of the northern Pacific related to fur seals but lacking their valuable coat -02078159 05 n 02 Otaria 0 genus_Otaria 0 003 @ 01864707 n 0000 #m 02076535 n 0000 %m 02078292 n 0000 | type genus of the Otariidae -02078292 05 n 02 South_American_sea_lion 0 Otaria_Byronia 0 002 @ 02077923 n 0000 #m 02078159 n 0000 | of the southern coast of South America -02078436 05 n 02 Zalophus 0 genus_Zalophus 0 004 @ 01864707 n 0000 #m 02076535 n 0000 %m 02078574 n 0000 %m 02078738 n 0000 | sea lions -02078574 05 n 03 California_sea_lion 0 Zalophus_californianus 0 Zalophus_californicus 0 002 @ 02077923 n 0000 #m 02078436 n 0000 | often trained as a show animal -02078738 05 n 02 Australian_sea_lion 0 Zalophus_lobatus 0 002 @ 02077923 n 0000 #m 02078436 n 0000 | a variety of sea lion found in Australia -02078882 05 n 02 Eumetopias 0 genus_Eumetopias 0 003 @ 01864707 n 0000 #m 02076535 n 0000 %m 02079005 n 0000 | sea lions -02079005 05 n 03 Steller_sea_lion 0 Steller's_sea_lion 0 Eumetopias_jubatus 0 002 @ 02077923 n 0000 #m 02078882 n 0000 | largest sea lion; of the northern Pacific -02079170 05 n 02 Phocidae 0 family_Phocidae 0 008 @ 01862557 n 0000 #m 02075727 n 0000 %m 02079389 n 0000 %m 02079706 n 0000 %m 02080022 n 0000 %m 02080291 n 0000 %m 02080586 n 0000 %m 02080934 n 0000 | earless seals -02079389 05 n 03 earless_seal 0 true_seal 0 hair_seal 0 007 @ 02076196 n 0000 #m 02079170 n 0000 ~ 02079851 n 0000 ~ 02080146 n 0000 ~ 02080415 n 0000 ~ 02080713 n 0000 ~ 02081060 n 0000 | any of several seals lacking external ear flaps and having a stiff hairlike coat with hind limbs reduced to swimming flippers -02079706 05 n 02 Phoca 0 genus_Phoca 0 003 @ 01864707 n 0000 #m 02079170 n 0000 %m 02079851 n 0000 | type genus of the Phocidae: earless seals -02079851 05 n 03 harbor_seal 0 common_seal 0 Phoca_vitulina 0 002 @ 02079389 n 0000 #m 02079706 n 0000 | small spotted seal of coastal waters of the northern hemisphere -02080022 05 n 02 Pagophilus 0 genus_Pagophilus 0 003 @ 01864707 n 0000 #m 02079170 n 0000 %m 02080146 n 0000 | harp seals -02080146 05 n 02 harp_seal 0 Pagophilus_groenlandicus 0 002 @ 02079389 n 0000 #m 02080022 n 0000 | common Arctic seal; the young are all white -02080291 05 n 02 Mirounga 0 genus_Mirounga 0 003 @ 01864707 n 0000 #m 02079170 n 0000 %m 02080415 n 0000 | elephant seals -02080415 05 n 02 elephant_seal 0 sea_elephant 0 002 @ 02079389 n 0000 #m 02080291 n 0000 | either of two large northern Atlantic earless seals having snouts like trunks -02080586 05 n 02 Erignathus 0 genus_Erignathus 0 003 @ 01864707 n 0000 #m 02079170 n 0000 %m 02080713 n 0000 | bearded seals -02080713 05 n 03 bearded_seal 0 squareflipper_square_flipper 0 Erignathus_barbatus 0 002 @ 02079389 n 0000 #m 02080586 n 0000 | medium-sized greyish to yellow seal with bristles each side of muzzle; of the Arctic Ocean -02080934 05 n 02 Cystophora 0 genus_Cystophora 0 003 @ 01864707 n 0000 #m 02079170 n 0000 %m 02081060 n 0000 | hooded seals -02081060 05 n 03 hooded_seal 0 bladdernose 0 Cystophora_cristata 0 002 @ 02079389 n 0000 #m 02080934 n 0000 | medium-sized blackish-grey seal with large inflatable sac on the head; of Arctic and northern Atlantic waters -02081282 05 n 02 Odobenidae 0 family_Odobenidae 0 003 @ 01862557 n 0000 #m 02075727 n 0000 %m 02081423 n 0000 | walruses and extinct forms -02081423 05 n 02 Odobenus 0 genus_Odobenus 0 003 @ 01864707 n 0000 #m 02081282 n 0000 %m 02081571 n 0000 | type genus of the Odobenidae: walruses -02081571 05 n 03 walrus 0 seahorse 1 sea_horse 1 004 @ 02075927 n 0000 #m 02081423 n 0000 ~ 02081798 n 0000 ~ 02081927 n 0000 | either of two large northern marine mammals having ivory tusks and tough hide over thick blubber -02081798 05 n 02 Atlantic_walrus 0 Odobenus_rosmarus 0 001 @ 02081571 n 0000 | a walrus of northern Atlantic and Arctic waters -02081927 05 n 02 Pacific_walrus 0 Odobenus_divergens 0 001 @ 02081571 n 0000 | a walrus of the Bering Sea and northern Pacific -02082056 05 n 01 Fissipedia 0 002 @ 01886756 n 0000 #m 01886220 n 0000 | in some classifications considered a suborder of Carnivora -02082190 05 n 02 fissiped_mammal 0 fissiped 0 001 @ 02075296 n 0000 | terrestrial carnivores; having toes separated to the base: dogs; cats; bears; badgers; raccoons -02082358 05 n 02 Tubulidentata 0 order_Tubulidentata 0 003 @ 01342529 n 0000 #m 01886220 n 0000 %m 02082498 n 0000 | an order of Eutheria -02082498 05 n 02 Orycteropodidae 0 family_Orycteropodidae 0 003 @ 01862557 n 0000 #m 02082358 n 0000 %m 02082632 n 0000 | aardvarks -02082632 05 n 02 Orycteropus 0 genus_Orycteropus 0 003 @ 01864707 n 0000 #m 02082498 n 0000 %m 02082791 n 0000 | coextensive with the family Orycteropodidae -02082791 05 n 04 aardvark 0 ant_bear 1 anteater 1 Orycteropus_afer 0 002 @ 01886756 n 0000 #m 02082632 n 0000 | nocturnal burrowing mammal of the grasslands of Africa that feeds on termites; sole extant representative of the order Tubulidentata -02083038 05 n 02 Canidae 0 family_Canidae 0 012 @ 01862557 n 0000 #m 02074915 n 0000 %m 02083346 n 0000 %m 02083863 n 0000 %m 02115335 n 0000 %m 02115775 n 0000 %m 02116079 n 0000 %m 02116322 n 0000 %m 02116630 n 0000 %m 02118854 n 0000 %m 02119961 n 0000 %m 02120387 n 0000 | dogs; wolves; jackals; foxes -02083346 05 n 02 canine 0 canid 0 011 @ 02075296 n 0000 #m 02083038 n 0000 + 02677703 a 0101 ~ 02083672 n 0000 ~ 02084071 n 0000 ~ 02114100 n 0000 ~ 02115096 n 0000 ~ 02115335 n 0000 ~ 02117135 n 0000 ~ 02118333 n 0000 %p 02439929 n 0000 | any of various fissiped mammals with nonretractile claws and typically long muzzles -02083672 05 n 01 bitch 0 002 @ 02083346 n 0000 ~ 02083780 n 0000 | female of any member of the dog family -02083780 05 n 01 brood_bitch 0 001 @ 02083672 n 0000 | a bitch used for breeding -02083863 05 n 02 Canis 0 genus_Canis 0 005 @ 01864707 n 0000 #m 02083038 n 0000 %m 02084071 n 0000 %m 02114100 n 0000 %m 02115096 n 0000 | type genus of the Canidae: domestic and wild dogs; wolves; jackals -02084071 05 n 03 dog 0 domestic_dog 0 Canis_familiaris 0 023 @ 02083346 n 0000 @ 01317541 n 0000 #m 02083863 n 0000 #m 07994941 n 0000 ~ 01322604 n 0000 ~ 02084732 n 0000 ~ 02084861 n 0000 ~ 02085272 n 0000 ~ 02085374 n 0000 ~ 02087122 n 0000 ~ 02103406 n 0000 ~ 02110341 n 0000 ~ 02110806 n 0000 ~ 02110958 n 0000 ~ 02111129 n 0000 ~ 02111277 n 0000 ~ 02111500 n 0000 ~ 02111626 n 0000 ~ 02112497 n 0000 ~ 02112826 n 0000 ~ 02113335 n 0000 ~ 02113978 n 0000 %p 02158846 n 0000 | a member of the genus Canis (probably descended from the common wolf) that has been domesticated by man since prehistoric times; occurs in many breeds; "the dog barked all night" -02084732 05 n 05 pooch 0 doggie 0 doggy 0 barker 0 bow-wow 0 002 @ 02084071 n 0000 + 01047745 v 0401 | informal terms for dogs -02084861 05 n 03 cur 0 mongrel 0 mutt 0 004 @ 02084071 n 0000 + 01429663 v 0201 ~ 02085019 n 0000 ~ 02085118 n 0000 | an inferior dog or one of mixed breed -02085019 05 n 02 feist 0 fice 0 001 @ 02084861 n 0000 | a nervous belligerent little mongrel dog -02085118 05 n 03 pariah_dog 0 pye-dog 0 pie-dog 0 001 @ 02084861 n 0000 | ownerless half-wild mongrel dog common around Asian villages especially India -02085272 05 n 01 lapdog 0 001 @ 02084071 n 0000 | a dog small and tame enough to be held in the lap -02085374 05 n 02 toy_dog 0 toy 0 008 @ 02084071 n 0000 ~ 02085620 n 0000 ~ 02085782 n 0000 ~ 02085936 n 0000 ~ 02086079 n 0000 ~ 02086240 n 0000 ~ 02086346 n 0000 ~ 02087046 n 0000 | any of several breeds of very small dogs kept purely as pets -02085620 05 n 01 Chihuahua 0 001 @ 02085374 n 0000 | an old breed of tiny short-haired dog with protruding eyes from Mexico held to antedate Aztec civilization -02085782 05 n 01 Japanese_spaniel 0 001 @ 02085374 n 0000 | breed of toy dogs originating in Japan having a silky black-and-white or red-and-white coat -02085936 05 n 03 Maltese_dog 0 Maltese_terrier 0 Maltese 0 001 @ 02085374 n 0000 | breed of toy dogs having a long straight silky white coat -02086079 05 n 03 Pekinese 0 Pekingese 0 Peke 0 001 @ 02085374 n 0000 | a Chinese breed of small short-legged dogs with a long silky coat and broad flat muzzle -02086240 05 n 01 Shih-Tzu 0 001 @ 02085374 n 0000 | a Chinese breed of small dog similar to a Pekingese -02086346 05 n 01 toy_spaniel 0 004 @ 02085374 n 0000 ~ 02086478 n 0000 ~ 02086753 n 0000 ~ 02086910 n 0000 | a very small spaniel -02086478 05 n 01 English_toy_spaniel 0 002 @ 02086346 n 0000 ~ 02086646 n 0000 | British breed having a long silky coat and rounded head with a short upturned muzzle -02086646 05 n 01 Blenheim_spaniel 0 001 @ 02086478 n 0000 | red-and-white variety of English toy spaniel -02086753 05 n 01 King_Charles_spaniel 0 001 @ 02086346 n 0000 | a toy English spaniel with a black-and-tan coat; named after Charles II who popularized it -02086910 05 n 01 papillon 0 001 @ 02086346 n 0000 | small slender toy spaniel with erect ears and a black-spotted brown to white coat -02087046 05 n 01 toy_terrier 0 001 @ 02085374 n 0000 | a small active dog -02087122 05 n 01 hunting_dog 0 007 @ 02084071 n 0000 ~ 02087314 n 0000 ~ 02087394 n 0000 ~ 02087551 n 0000 ~ 02089232 n 0000 ~ 02092468 n 0000 ~ 02098550 n 0000 | a dog used in hunting game -02087314 05 n 01 courser 2 001 @ 02087122 n 0000 | a dog trained for coursing -02087394 05 n 01 Rhodesian_ridgeback 0 001 @ 02087122 n 0000 | a powerful short-haired African hunting dog having a crest of reversed hair along the spine -02087551 05 n 02 hound 0 hound_dog 0 023 @ 02087122 n 0000 #m 07994941 n 0000 + 02003601 v 0101 ~ 02088094 n 0000 ~ 02088238 n 0000 ~ 02088364 n 0000 ~ 02088466 n 0000 ~ 02088632 n 0000 ~ 02088745 n 0000 ~ 02088839 n 0000 ~ 02089555 n 0000 ~ 02090129 n 0000 ~ 02090253 n 0000 ~ 02090379 n 0000 ~ 02090475 n 0000 ~ 02090827 n 0000 ~ 02091244 n 0000 ~ 02091467 n 0000 ~ 02091635 n 0000 ~ 02091831 n 0000 ~ 02092002 n 0000 ~ 02092173 n 0000 ~ 02092339 n 0000 | any of several breeds of dog used for hunting typically having large drooping ears -02088094 05 n 02 Afghan_hound 0 Afghan 0 001 @ 02087551 n 0000 | tall graceful breed of hound with a long silky coat; native to the Near East -02088238 05 n 02 basset 0 basset_hound 0 001 @ 02087551 n 0000 | smooth-haired breed of hound with short legs and long ears -02088364 05 n 01 beagle 0 001 @ 02087551 n 0000 | a small short-legged smooth-coated breed of hound -02088466 05 n 02 bloodhound 0 sleuthhound 0 001 @ 02087551 n 0000 | a breed of large powerful hound of European origin having very acute smell and used in tracking -02088632 05 n 01 bluetick 0 001 @ 02087551 n 0000 | a very fast American hound; white mottled with bluish grey -02088745 05 n 01 boarhound 0 001 @ 02087551 n 0000 | large hound used in hunting wild boars -02088839 05 n 01 coonhound 0 003 @ 02087551 n 0000 ~ 02088992 n 0000 ~ 02089078 n 0000 | any of several breeds of hound developed for hunting raccoons -02088992 05 n 01 coondog 0 001 @ 02088839 n 0000 | any dog trained to hunt raccoons -02089078 05 n 01 black-and-tan_coonhound 0 001 @ 02088839 n 0000 | American breed of large powerful hound dogs used for hunting raccoons and other game -02089232 05 n 03 dachshund 0 dachsie 0 badger_dog 0 002 @ 02087122 n 0000 ~ 02089468 n 0000 | small long-bodied short-legged German breed of dog having a short sleek coat and long drooping ears; suited for following game into burrows -02089468 05 n 02 sausage_dog 0 sausage_hound 0 001 @ 02089232 n 0000 | informal term -02089555 05 n 01 foxhound 0 004 @ 02087551 n 0000 ~ 02089725 n 0000 ~ 02089867 n 0000 ~ 02089973 n 0000 | medium-sized glossy-coated hounds developed for hunting foxes -02089725 05 n 01 American_foxhound 0 001 @ 02089555 n 0000 | an American breed of foxhounds used for hunting both in packs and individually -02089867 05 n 02 Walker_hound 0 Walker_foxhound 0 001 @ 02089555 n 0000 | an American breed of foxhound -02089973 05 n 01 English_foxhound 0 001 @ 02089555 n 0000 | an English breed slightly larger than the American foxhounds originally used to hunt in packs -02090129 05 n 01 harrier 1 001 @ 02087551 n 0000 | a hound that resembles a foxhound but is smaller; used to hunt rabbits -02090253 05 n 01 Plott_hound 0 001 @ 02087551 n 0000 | a brindle-coated American hound used in hunting bears and wild boars -02090379 05 n 01 redbone 0 001 @ 02087551 n 0000 | a speedy red or red-and-tan American hound -02090475 05 n 01 wolfhound 0 003 @ 02087551 n 0000 ~ 02090622 n 0000 ~ 02090721 n 0000 | the largest breed of dogs; formerly used to hunt wolves -02090622 05 n 02 borzoi 0 Russian_wolfhound 0 001 @ 02090475 n 0000 | tall fast-moving dog breed -02090721 05 n 01 Irish_wolfhound 0 001 @ 02090475 n 0000 | large breed of hound with a rough thick coat -02090827 05 n 01 greyhound 0 004 @ 02087551 n 0000 @ 02384858 n 0000 ~ 02091032 n 0000 ~ 02091134 n 0000 | a tall slender dog of an ancient breed noted for swiftness and keen sight; used as a racing dog -02091032 05 n 01 Italian_greyhound 0 001 @ 02090827 n 0000 | a toy dog developed from the greyhound -02091134 05 n 01 whippet 0 001 @ 02090827 n 0000 | small slender dog of greyhound type developed in England -02091244 05 n 02 Ibizan_hound 0 Ibizan_Podenco 0 001 @ 02087551 n 0000 | breed of slender agile medium-sized hound found chiefly in the Balearic Islands; said to have been bred originally by the Pharaohs of ancient Egypt -02091467 05 n 02 Norwegian_elkhound 0 elkhound 0 001 @ 02087551 n 0000 | breed of compact medium-sized dog with a heavy grey coat developed in Norway for hunting elk -02091635 05 n 02 otterhound 0 otter_hound 0 001 @ 02087551 n 0000 | hardy British hound having long pendulous ears and a thick coarse shaggy coat with an oily undercoat; bred for hunting otters -02091831 05 n 02 Saluki 0 gazelle_hound 0 001 @ 02087551 n 0000 | old breed of tall swift keen-eyed hunting dogs resembling greyhounds; from Egypt and southwestern Asia -02092002 05 n 02 Scottish_deerhound 0 deerhound 0 001 @ 02087551 n 0000 | very large and tall rough-coated dog bred for hunting deer; known as the royal dog of Scotland -02092173 05 n 01 staghound 0 001 @ 02087551 n 0000 | a large heavy hound formerly used in hunting stags and other large game; similar to but larger than a foxhound -02092339 05 n 01 Weimaraner 0 001 @ 02087551 n 0000 | large breed of hound having a smooth greyish coat; originated in Germany -02092468 05 n 01 terrier 0 025 @ 02087122 n 0000 ~ 02093056 n 0000 ~ 02093647 n 0000 ~ 02093754 n 0000 ~ 02093859 n 0000 ~ 02093991 n 0000 ~ 02094114 n 0000 ~ 02094258 n 0000 ~ 02094433 n 0000 ~ 02094562 n 0000 ~ 02095050 n 0000 ~ 02095412 n 0000 ~ 02096051 n 0000 ~ 02096177 n 0000 ~ 02096294 n 0000 ~ 02096437 n 0000 ~ 02096585 n 0000 ~ 02096756 n 0000 ~ 02097298 n 0000 ~ 02097474 n 0000 ~ 02097658 n 0000 ~ 02097786 n 0000 ~ 02098105 n 0000 ~ 02098286 n 0000 ~ 02098413 n 0000 | any of several usually small short-bodied breeds originally trained to hunt animals living underground -02093056 05 n 02 bullterrier 0 bull_terrier 0 003 @ 02092468 n 0000 ~ 02093256 n 0000 ~ 02093428 n 0000 | a powerful short-haired terrier originated in England by crossing the bulldog with terriers -02093256 05 n 02 Staffordshire_bullterrier 0 Staffordshire_bull_terrier 0 001 @ 02093056 n 0000 | English breed of strong stocky dog having a broad skull and smooth coat -02093428 05 n 04 American_Staffordshire_terrier 0 Staffordshire_terrier 0 American_pit_bull_terrier 0 pit_bull_terrier 0 001 @ 02093056 n 0000 | American breed of muscular terriers with a short close-lying stiff coat -02093647 05 n 01 Bedlington_terrier 0 001 @ 02092468 n 0000 | a light terrier groomed to resemble a lamb -02093754 05 n 01 Border_terrier 0 001 @ 02092468 n 0000 | small rough-coated terrier of British origin -02093859 05 n 01 Kerry_blue_terrier 0 001 @ 02092468 n 0000 | an Irish breed of medium-sized terriers with a silky blue-grey coat -02093991 05 n 01 Irish_terrier 0 001 @ 02092468 n 0000 | medium-sized breed with a wiry brown coat; developed in Ireland -02094114 05 n 01 Norfolk_terrier 0 001 @ 02092468 n 0000 | English breed of small terrier with a straight wiry grizzled coat and dropped ears -02094258 05 n 01 Norwich_terrier 0 001 @ 02092468 n 0000 | English breed of small short-legged terrier with a straight wiry red or grey or black-and-tan coat and erect ears -02094433 05 n 01 Yorkshire_terrier 0 001 @ 02092468 n 0000 | very small breed having a long glossy coat of bluish-grey and tan -02094562 05 n 02 rat_terrier 0 ratter 0 003 @ 02092468 n 0000 + 01480641 v 0201 ~ 02094721 n 0000 | any of several breeds of terrier developed to catch rats -02094721 05 n 02 Manchester_terrier 0 black-and-tan_terrier 0 002 @ 02094562 n 0000 ~ 02094931 n 0000 | a breed of short-haired rat terrier with a black-and-tan coat that was developed in Manchester, England -02094931 05 n 02 toy_Manchester 0 toy_Manchester_terrier 0 001 @ 02094721 n 0000 | breed of small Manchester terrier -02095050 05 n 01 fox_terrier 0 003 @ 02092468 n 0000 ~ 02095212 n 0000 ~ 02095314 n 0000 | small lively black-and-white terriers formerly used to dig out foxes -02095212 05 n 01 smooth-haired_fox_terrier 0 001 @ 02095050 n 0000 | a fox terrier with smooth hair -02095314 05 n 01 wire-haired_fox_terrier 0 001 @ 02095050 n 0000 | a fox terrier with wiry hair -02095412 05 n 03 wirehair 0 wirehaired_terrier 0 wire-haired_terrier 0 003 @ 02092468 n 0000 ~ 02095570 n 0000 ~ 02095727 n 0000 | a terrier with wiry hair -02095570 05 n 01 Lakeland_terrier 0 001 @ 02095412 n 0000 | breed of wire-haired terrier originally from the Lake District of England and used for hunting -02095727 05 n 01 Welsh_terrier 0 002 @ 02095412 n 0000 ~ 02095889 n 0000 | wire-haired terrier resembling Airedales but smaller; developed in Wales for hunting -02095889 05 n 02 Sealyham_terrier 0 Sealyham 0 002 @ 02095727 n 0000 ;r 08894456 n 0000 | a wire-haired terrier with short legs that was first bred in Sealyham -02096051 05 n 02 Airedale 0 Airedale_terrier 0 001 @ 02092468 n 0000 | breed of large wiry-coated terrier bred in Yorkshire -02096177 05 n 02 cairn 0 cairn_terrier 0 001 @ 02092468 n 0000 | small rough-haired breed of terrier from Scotland -02096294 05 n 01 Australian_terrier 0 001 @ 02092468 n 0000 | small greyish wire-haired breed of terrier from Australia similar to the cairn -02096437 05 n 02 Dandie_Dinmont 0 Dandie_Dinmont_terrier 0 001 @ 02092468 n 0000 | a breed of small terrier with long wiry coat and drooping ears -02096585 05 n 02 Boston_bull 0 Boston_terrier 0 001 @ 02092468 n 0000 | small pug-faced American terrier breed having a smooth brindle or black coat with white markings -02096756 05 n 01 schnauzer 0 004 @ 02092468 n 0000 ~ 02097047 n 0000 ~ 02097130 n 0000 ~ 02097209 n 0000 | old German breed of sturdy black or greyish wire-haired terriers having a blunt muzzle ranging in size from fairly small to very large; used as ratters and guard dogs or police dogs -02097047 05 n 01 miniature_schnauzer 0 001 @ 02096756 n 0000 | a small schnauzer -02097130 05 n 01 giant_schnauzer 0 001 @ 02096756 n 0000 | a large schnauzer -02097209 05 n 01 standard_schnauzer 0 001 @ 02096756 n 0000 | a medium-sized schnauzer -02097298 05 n 03 Scotch_terrier 0 Scottish_terrier 0 Scottie 0 001 @ 02092468 n 0000 | old Scottish breed of small long-haired usually black terrier with erect tail and ears -02097474 05 n 02 Tibetan_terrier 0 chrysanthemum_dog 0 001 @ 02092468 n 0000 | breed of medium-sized terriers bred in Tibet resembling Old English sheepdogs with fluffy curled tails -02097658 05 n 02 silky_terrier 0 Sydney_silky 0 001 @ 02092468 n 0000 | Australian breed of toy dogs having a silky blue coat -02097786 05 n 01 Skye_terrier 0 002 @ 02092468 n 0000 ~ 02097967 n 0000 | Scottish breed of terrier with shaggy hair and long low body with short legs; native to the Isle of Skye -02097967 05 n 01 Clydesdale_terrier 0 001 @ 02097786 n 0000 | selectively bred small Skye terrier with erect ears and a long silky coat -02098105 05 n 01 soft-coated_wheaten_terrier 0 001 @ 02092468 n 0000 | Irish breed of medium-sized terrier with an abundant coat any shade of wheat and very hairy head and muzzle -02098286 05 n 01 West_Highland_white_terrier 0 001 @ 02092468 n 0000 | small white long-coated terrier developed in Scotland -02098413 05 n 02 Lhasa 0 Lhasa_apso 0 001 @ 02092468 n 0000 | a breed of terrier having a long heavy coat raised in Tibet as watchdogs -02098550 05 n 02 sporting_dog 0 gun_dog 0 008 @ 02087122 n 0000 ~ 02098806 n 0000 ~ 02098906 n 0000 ~ 02099029 n 0000 ~ 02099997 n 0000 ~ 02100399 n 0000 ~ 02101108 n 0000 ~ 02103181 n 0000 | a dog trained to work with sportsmen when they hunt with guns -02098806 05 n 01 bird_dog 0 001 @ 02098550 n 0000 | a gun dog trained to locate or retrieve birds -02098906 05 n 01 water_dog 0 001 @ 02098550 n 0000 | a dog accustomed to water and usually trained to retrieve waterfowl -02099029 05 n 01 retriever 0 007 @ 02098550 n 0000 + 01433809 v 0101 ~ 02099267 n 0000 ~ 02099429 n 0000 ~ 02099601 n 0000 ~ 02099712 n 0000 ~ 02099849 n 0000 | a dog with heavy water-resistant coat that can be trained to retrieve game -02099267 05 n 01 flat-coated_retriever 0 001 @ 02099029 n 0000 | an English breed having a shiny black or liver-colored coat; retrieves game from land or water -02099429 05 n 01 curly-coated_retriever 0 001 @ 02099029 n 0000 | an English breed having a tightly curled black or liver-colored coat; retrieves game from land or water -02099601 05 n 01 golden_retriever 0 001 @ 02099029 n 0000 | an English breed having a long silky golden coat -02099712 05 n 01 Labrador_retriever 0 001 @ 02099029 n 0000 | breed originally from Labrador having a short black or golden-brown coat -02099849 05 n 01 Chesapeake_Bay_retriever 0 001 @ 02099029 n 0000 | American breed having a short thick oily coat ranging from brown to light tan -02099997 05 n 02 pointer 0 Spanish_pointer 0 003 @ 02098550 n 0000 ~ 02100236 n 0000 ~ 02100583 n 0000 | a strong slender smooth-haired dog of Spanish origin having a white coat with brown or black patches; scents out and points to game -02100236 05 n 01 German_short-haired_pointer 0 001 @ 02099997 n 0000 | liver or liver-and-white hunting dog developed in Germany; 3/4 pointer and 1/4 bloodhound -02100399 05 n 01 setter 0 004 @ 02098550 n 0000 ~ 02100735 n 0000 ~ 02100877 n 0000 ~ 02101006 n 0000 | a long-haired dog formerly trained to crouch on finding game but now to point -02100583 05 n 02 vizsla 0 Hungarian_pointer 0 001 @ 02099997 n 0000 | Hungarian hunting dog resembling the Weimaraner but having a rich deep red coat -02100735 05 n 01 English_setter 0 001 @ 02100399 n 0000 | an English breed having a plumed tail and a soft silky coat that is chiefly white -02100877 05 n 02 Irish_setter 0 red_setter 0 001 @ 02100399 n 0000 | an Irish breed with a chestnut-brown or mahogany-red coat -02101006 05 n 01 Gordon_setter 0 001 @ 02100399 n 0000 | a Scottish breed with a black-and-tan coat -02101108 05 n 01 spaniel 0 008 @ 02098550 n 0000 ~ 02101388 n 0000 ~ 02101556 n 0000 ~ 02101670 n 0000 ~ 02101861 n 0000 ~ 02102318 n 0000 ~ 02102480 n 0000 ~ 02102605 n 0000 | any of several breeds of small to medium-sized gun dogs with a long silky coat and long frilled ears -02101388 05 n 01 Brittany_spaniel 0 001 @ 02101108 n 0000 | tall active short-tailed French breed of bird dog having a usually smooth orange- or liver-and-white coat -02101556 05 n 02 clumber 0 clumber_spaniel 0 001 @ 02101108 n 0000 | a thickset spaniel with longish silky hair -02101670 05 n 01 field_spaniel 0 001 @ 02101108 n 0000 | large usually black hunting and retrieving spaniel with a dense flat or slightly wavy coat; cross between cocker and Sussex spaniel -02101861 05 n 02 springer_spaniel 0 springer 1 003 @ 02101108 n 0000 ~ 02102040 n 0000 ~ 02102177 n 0000 | a large spaniel with wavy silky coat usually black or liver and white -02102040 05 n 02 English_springer 0 English_springer_spaniel 0 001 @ 02101861 n 0000 | a breed having typically a black-and-white coat -02102177 05 n 01 Welsh_springer_spaniel 0 001 @ 02101861 n 0000 | a red-and-white breed slightly smaller than the English springer spaniel -02102318 05 n 03 cocker_spaniel 0 English_cocker_spaniel 0 cocker 0 001 @ 02101108 n 0000 | a small breed with wavy silky hair; originally developed in England -02102480 05 n 01 Sussex_spaniel 0 001 @ 02101108 n 0000 | an English breed with short legs and a golden liver-colored coat -02102605 05 n 01 water_spaniel 0 005 @ 02101108 n 0000 ;r 08859173 n 0000 ;r 09044862 n 0000 ~ 02102806 n 0000 ~ 02102973 n 0000 | any dog of two large curly-coated breeds used for hunting waterfowl -02102806 05 n 01 American_water_spaniel 0 001 @ 02102605 n 0000 | breed of medium-sized spaniels originating in America having chocolate or liver-colored curly coat -02102973 05 n 01 Irish_water_spaniel 0 001 @ 02102605 n 0000 | breed of large spaniels developed in Ireland having a heavy coat of liver-colored curls and a topknot of long curls and a nearly hairless tail -02103181 05 n 02 griffon 2 wire-haired_pointing_griffon 0 001 @ 02098550 n 0000 | breed of medium-sized long-headed dogs with downy undercoat and harsh wiry outer coat; originated in Holland but largely developed in France -02103406 05 n 01 working_dog 0 016 @ 02084071 n 0000 ~ 02103841 n 0000 ~ 02104523 n 0000 ~ 02106854 n 0000 ~ 02107420 n 0000 ~ 02108089 n 0000 ~ 02108254 n 0000 ~ 02108422 n 0000 ~ 02108672 n 0000 ~ 02109047 n 0000 ~ 02109150 n 0000 ~ 02109391 n 0000 ~ 02109525 n 0000 ~ 02109687 n 0000 ~ 02109811 n 0000 ~ 02109961 n 0000 | any of several breeds of usually large powerful dogs bred to work as draft animals and guard and guide dogs -02103841 05 n 02 watchdog 0 guard_dog 0 006 @ 02103406 n 0000 ~ 02104029 n 0000 ~ 02104184 n 0000 ~ 02104280 n 0000 ~ 02104365 n 0000 ~ 02106966 n 0000 | a dog trained to guard property -02104029 05 n 01 kuvasz 0 001 @ 02103841 n 0000 | long-established Hungarian breed of tall light-footed but sturdy white dog; used also as a hunting dog -02104184 05 n 01 attack_dog 0 001 @ 02103841 n 0000 | a watchdog trained to attack on command -02104280 05 n 01 housedog 0 001 @ 02103841 n 0000 | a dog trained to guard a house -02104365 05 n 01 schipperke 0 001 @ 02103841 n 0000 | breed of small stocky black dogs originally used as watchdogs on boats in the Netherlands and Belgium -02104523 05 n 03 shepherd_dog 0 sheepdog 0 sheep_dog 0 012 @ 02103406 n 0000 ~ 02104882 n 0000 ~ 02105251 n 0000 ~ 02105412 n 0000 ~ 02105505 n 0000 ~ 02105641 n 0000 ~ 02105855 n 0000 ~ 02106030 n 0000 ~ 02106166 n 0000 ~ 02106382 n 0000 ~ 02106550 n 0000 ~ 02106662 n 0000 | any of various usually long-haired breeds of dog reared to herd and guard sheep -02104882 05 n 02 Belgian_sheepdog 0 Belgian_shepherd 0 003 @ 02104523 n 0000 ~ 02105056 n 0000 ~ 02105162 n 0000 | hardy working dog developed in Belgium for herding sheep -02105056 05 n 01 groenendael 0 001 @ 02104882 n 0000 | black-coated sheepdog with a heavily plumed tail -02105162 05 n 01 malinois 0 001 @ 02104882 n 0000 | fawn-colored short-haired sheepdog -02105251 05 n 01 briard 0 001 @ 02104523 n 0000 | old French breed of large strong usually black dogs having a long tail and long wavy and slightly stiff coat -02105412 05 n 01 kelpie 0 001 @ 02104523 n 0000 | an Australian sheepdog with pointed ears -02105505 05 n 01 komondor 0 001 @ 02104523 n 0000 | Hungarian breed of large powerful shaggy-coated white dog; used also as guard dog -02105641 05 n 02 Old_English_sheepdog 0 bobtail 1 001 @ 02104523 n 0000 | large sheepdog with a profuse shaggy bluish-grey-and-white coat and short tail; believed to trace back to the Roman occupation of Britain -02105855 05 n 03 Shetland_sheepdog 0 Shetland_sheep_dog 0 Shetland 0 001 @ 02104523 n 0000 | a small sheepdog resembling a collie that was developed in the Shetland Islands -02106030 05 n 01 collie 0 001 @ 02104523 n 0000 | a silky-coated sheepdog with a long ruff and long narrow head developed in Scotland -02106166 05 n 01 Border_collie 0 001 @ 02104523 n 0000 | developed in the area between Scotland and England usually having a black coat with white on the head and tip of tail used for herding both sheep and cattle -02106382 05 n 02 Bouvier_des_Flandres 0 Bouviers_des_Flandres 0 001 @ 02104523 n 0000 | rough-coated breed used originally in Belgium for herding and guarding cattle -02106550 05 n 01 Rottweiler 0 001 @ 02104523 n 0000 | German breed of large vigorous short-haired cattle dogs -02106662 05 n 04 German_shepherd 0 German_shepherd_dog 0 German_police_dog 0 alsatian 0 001 @ 02104523 n 0000 | breed of large shepherd dogs used in police work and as a guide for the blind -02106854 05 n 01 police_dog 0 001 @ 02103406 n 0000 | any dog trained to assist police especially in tracking -02106966 05 n 01 pinscher 0 004 @ 02103841 n 0000 ~ 02107142 n 0000 ~ 02107312 n 0000 ~ 02110627 n 0000 | any of three breeds of dogs whose ears and tail are usually cropped -02107142 05 n 02 Doberman 0 Doberman_pinscher 0 001 @ 02106966 n 0000 | medium large breed of dog of German origin with a glossy black and tan coat; used as a watchdog -02107312 05 n 01 miniature_pinscher 0 001 @ 02106966 n 0000 | small German version of a Doberman pinscher -02107420 05 n 01 Sennenhunde 0 005 @ 02103406 n 0000 ~ 02107574 n 0000 ~ 02107683 n 0000 ~ 02107908 n 0000 ~ 02108000 n 0000 | any of four Swiss breeds -02107574 05 n 01 Greater_Swiss_Mountain_dog 0 001 @ 02107420 n 0000 | the largest of the four Swiss breeds -02107683 05 n 01 Bernese_mountain_dog 0 001 @ 02107420 n 0000 | large powerful long-haired black-coated Swiss dog with deep tan or russet markings on legs and white blaze and feet and chest marking; formerly used for draft -02107908 05 n 01 Appenzeller 0 001 @ 02107420 n 0000 | a smaller of the four Swiss breeds -02108000 05 n 01 EntleBucher 0 001 @ 02107420 n 0000 | the smallest of the Sennenhunde -02108089 05 n 01 boxer 0 001 @ 02103406 n 0000 | a breed of stocky medium-sized short-haired dog with a brindled coat and square-jawed muzzle developed in Germany -02108254 05 n 01 mastiff 0 002 @ 02103406 n 0000 ~ 02108551 n 0000 | an old breed of powerful deep-chested smooth-coated dog used chiefly as a watchdog and guard dog -02108422 05 n 01 bull_mastiff 0 001 @ 02103406 n 0000 | large powerful breed developed by crossing the bulldog and the mastiff -02108551 05 n 01 Tibetan_mastiff 0 001 @ 02108254 n 0000 | very large powerful rough-coated dog native to central Asia -02108672 05 n 02 bulldog 0 English_bulldog 0 003 @ 02103406 n 0000 + 01119030 v 0101 ~ 02108915 n 0000 | a sturdy thickset short-haired breed with a large head and strong undershot lower jaw; developed originally in England for bull baiting -02108915 05 n 01 French_bulldog 0 001 @ 02108672 n 0000 | small stocky version of the bulldog having a sleek coat and square head -02109047 05 n 01 Great_Dane 0 001 @ 02103406 n 0000 | very large powerful smooth-coated breed of dog -02109150 05 n 01 guide_dog 0 002 @ 02103406 n 0000 ~ 02109256 n 0000 | a dog trained to guide the blind -02109256 05 n 01 Seeing_Eye_dog 0 002 @ 02109150 n 0000 ;u 06851742 n 0000 | (trademark) a guide dog trained to guide a blind person -02109391 05 n 01 hearing_dog 0 001 @ 02103406 n 0000 | dog trained to assist the deaf by signaling the occurrence of certain sounds -02109525 05 n 02 Saint_Bernard 0 St_Bernard 0 001 @ 02103406 n 0000 | a Swiss alpine breed of large powerful dog with a thick coat of hair used as a rescue dog -02109687 05 n 01 seizure-alert_dog 0 001 @ 02103406 n 0000 | a dog that can alert or assist people with seizure disorders -02109811 05 n 02 sled_dog 0 sledge_dog 0 003 @ 02103406 n 0000 ~ 02110063 n 0000 ~ 02110185 n 0000 | a dog trained to draw a sled usually in a team -02109961 05 n 02 Eskimo_dog 0 husky 0 001 @ 02103406 n 0000 | breed of heavy-coated Arctic sled dog -02110063 05 n 03 malamute 0 malemute 0 Alaskan_malamute 0 001 @ 02109811 n 0000 | breed of sled dog developed in Alaska -02110185 05 n 01 Siberian_husky 0 001 @ 02109811 n 0000 | breed of sled dog developed in northeastern Siberia; they resemble the larger Alaskan malamutes -02110341 05 n 03 dalmatian 0 coach_dog 0 carriage_dog 0 002 @ 02084071 n 0000 ~ 02110532 n 0000 | a large breed having a smooth white coat with black or brown spots; originated in Dalmatia -02110532 05 n 01 liver-spotted_dalmatian 0 001 @ 02110341 n 0000 | a brown-spotted dalmatian -02110627 05 n 03 affenpinscher 0 monkey_pinscher 0 monkey_dog 0 001 @ 02106966 n 0000 | European breed of small dog resembling a terrier with dark wiry hair and a tufted muzzle -02110806 05 n 01 basenji 0 001 @ 02084071 n 0000 | small smooth-haired breed of African origin having a tightly curled tail and the inability to bark -02110958 05 n 02 pug 0 pug-dog 0 001 @ 02084071 n 0000 | small compact smooth-coated breed of Asiatic origin having a tightly curled tail and broad flat wrinkled muzzle -02111129 05 n 01 Leonberg 0 001 @ 02084071 n 0000 | a large dog (usually with a golden coat) produced by crossing a St Bernard and a Newfoundland -02111277 05 n 02 Newfoundland 0 Newfoundland_dog 0 001 @ 02084071 n 0000 | a breed of very large heavy dogs with a thick coarse usually black coat; highly intelligent dogs and vigorous swimmers; developed in Newfoundland -02111500 05 n 01 Great_Pyrenees 0 001 @ 02084071 n 0000 | bred of large heavy-coated white dogs resembling the Newfoundland -02111626 05 n 01 spitz 0 005 @ 02084071 n 0000 ~ 02111889 n 0000 ~ 02112018 n 0000 ~ 02112137 n 0000 ~ 02112350 n 0000 | any of various stocky heavy-coated breeds of dogs native to northern regions having pointed muzzles and erect ears with a curled furry tail -02111889 05 n 02 Samoyed 0 Samoyede 0 001 @ 02111626 n 0000 | Siberian breed of white or cream-colored dog of the spitz family -02112018 05 n 01 Pomeranian 0 001 @ 02111626 n 0000 | breed of very small compact long-haired dogs of the spitz type -02112137 05 n 02 chow 0 chow_chow 0 001 @ 02111626 n 0000 | breed of medium-sized dogs with a thick coat and fluffy curled tails and distinctive blue-black tongues; believed to have originated in northern China -02112350 05 n 01 keeshond 0 001 @ 02111626 n 0000 | a spitz-like dog having a shaggy greyish coat and tightly curled tail originating in Holland -02112497 05 n 03 griffon 1 Brussels_griffon 0 Belgian_griffon 0 002 @ 02084071 n 0000 ~ 02112706 n 0000 | breed of various very small compact wiry-coated dogs of Belgian origin having a short bearded muzzle -02112706 05 n 01 Brabancon_griffon 0 001 @ 02112497 n 0000 | a variety of Brussels griffon having a short smooth coat -02112826 05 n 02 corgi 0 Welsh_corgi 0 003 @ 02084071 n 0000 ~ 02113023 n 0000 ~ 02113186 n 0000 | either of two Welsh breeds of long-bodied short-legged dogs with erect ears and a fox-like head -02113023 05 n 02 Pembroke 0 Pembroke_Welsh_corgi 0 001 @ 02112826 n 0000 | the smaller and straight-legged variety of corgi having pointed ears and a short tail -02113186 05 n 02 Cardigan 0 Cardigan_Welsh_corgi 0 001 @ 02112826 n 0000 | slightly bowlegged variety of corgi having rounded ears and a long tail -02113335 05 n 02 poodle 0 poodle_dog 0 005 @ 02084071 n 0000 ~ 02113624 n 0000 ~ 02113712 n 0000 ~ 02113799 n 0000 ~ 02113892 n 0000 | an intelligent dog with a heavy curly solid-colored coat that is usually clipped; an old breed sometimes trained as sporting dogs or as performing dogs -02113624 05 n 01 toy_poodle 0 001 @ 02113335 n 0000 | the breed of very small poodles -02113712 05 n 01 miniature_poodle 0 001 @ 02113335 n 0000 | a breed of small poodles -02113799 05 n 01 standard_poodle 0 001 @ 02113335 n 0000 | a breed or medium-sized poodles -02113892 05 n 01 large_poodle 0 001 @ 02113335 n 0000 | the largest breed of poodle -02113978 05 n 01 Mexican_hairless 0 001 @ 02084071 n 0000 | any of an old breed of small nearly hairless dogs of Mexico -02114100 05 n 01 wolf 0 007 @ 02083346 n 0000 #m 02083863 n 0000 ~ 01322508 n 0000 ~ 02114367 n 0000 ~ 02114548 n 0000 ~ 02114712 n 0000 ~ 02114855 n 0000 | any of various predatory carnivorous canine mammals of North America and Eurasia that usually hunt in packs -02114367 05 n 04 timber_wolf 0 grey_wolf 0 gray_wolf 0 Canis_lupus 0 001 @ 02114100 n 0000 | a wolf with a brindled grey coat living in forested northern regions of North America -02114548 05 n 03 white_wolf 0 Arctic_wolf 0 Canis_lupus_tundrarum 0 001 @ 02114100 n 0000 | wolf of Arctic North America having white fur and a black-tipped tail -02114712 05 n 04 red_wolf 0 maned_wolf 0 Canis_rufus 0 Canis_niger 0 001 @ 02114100 n 0000 | reddish-grey wolf of southwestern North America -02114855 05 n 04 coyote 0 prairie_wolf 0 brush_wolf 0 Canis_latrans 0 002 @ 02114100 n 0000 ~ 02115012 n 0000 | small wolf native to western North America -02115012 05 n 01 coydog 0 001 @ 02114855 n 0000 | offspring of a coyote and a dog -02115096 05 n 02 jackal 0 Canis_aureus 0 002 @ 02083346 n 0000 #m 02083863 n 0000 | Old World nocturnal canine mammal closely related to the dog; smaller than a wolf; sometimes hunts in a pack but usually singly or as a member of a pair -02115335 05 n 01 wild_dog 0 007 @ 02083346 n 0000 #m 02083038 n 0000 ~ 02115641 n 0000 ~ 02115913 n 0000 ~ 02116185 n 0000 ~ 02116450 n 0000 ~ 02116738 n 0000 | any of various undomesticated mammals of the family Canidae that are thought to resemble domestic dogs as distinguished from jackals or wolves -02115641 05 n 04 dingo 0 warrigal 1 warragal 1 Canis_dingo 0 001 @ 02115335 n 0000 | wolflike yellowish-brown wild dog of Australia -02115775 05 n 04 Cuon 0 Cyon 0 genus_Cuon 0 genus_Cyon 0 003 @ 01864707 n 0000 #m 02083038 n 0000 %m 02115913 n 0000 | Asiatic wild dog -02115913 05 n 02 dhole 0 Cuon_alpinus 0 002 @ 02115335 n 0000 #m 02115775 n 0000 | fierce wild dog of the forests of central and southeast Asia that hunts in packs -02116079 05 n 02 Dusicyon 0 genus_Dusicyon 0 002 @ 01864707 n 0000 #m 02083038 n 0000 | crab-eating dog -02116185 05 n 03 crab-eating_dog 0 crab-eating_fox 0 Dusicyon_cancrivorus 0 001 @ 02115335 n 0000 | wild dog of northern South America -02116322 05 n 02 Nyctereutes 0 genus_Nyctereutes 0 003 @ 01864707 n 0000 #m 02083038 n 0000 %m 02116450 n 0000 | raccoon dogs -02116450 05 n 02 raccoon_dog 0 Nyctereutes_procyonides 0 002 @ 02115335 n 0000 #m 02116322 n 0000 | small wild dog of eastern Asia having facial markings like those of a raccoon -02116630 05 n 02 Lycaeon 0 genus_Lycaeon 0 002 @ 01864707 n 0000 #m 02083038 n 0000 | African hunting dog -02116738 05 n 04 African_hunting_dog 0 hyena_dog 0 Cape_hunting_dog 0 Lycaon_pictus 0 001 @ 02115335 n 0000 | a powerful doglike mammal of southern and eastern Africa that hunts in large packs; now rare in settled area -02116959 05 n 02 Hyaenidae 0 family_Hyaenidae 0 006 @ 01862557 n 0000 #m 02074915 n 0000 %m 02117135 n 0000 %m 02117369 n 0000 %m 02117772 n 0000 %m 02118058 n 0000 | hyenas -02117135 05 n 02 hyena 0 hyaena 0 006 @ 02083346 n 0000 #m 02116959 n 0000 ~ 02117512 n 0000 ~ 02117646 n 0000 ~ 02117900 n 0000 ~ 02118176 n 0000 | doglike nocturnal mammal of Africa and southern Asia that feeds chiefly on carrion -02117369 05 n 01 genus_Hyaena 0 004 @ 01864707 n 0000 #m 02116959 n 0000 %m 02117512 n 0000 %m 02117646 n 0000 | type genus of the Hyaenidae -02117512 05 n 02 striped_hyena 0 Hyaena_hyaena 0 002 @ 02117135 n 0000 #m 02117369 n 0000 | of northern Africa and Arabia and India -02117646 05 n 03 brown_hyena 0 strand_wolf 0 Hyaena_brunnea 0 002 @ 02117135 n 0000 #m 02117369 n 0000 | of southern Africa -02117772 05 n 02 Crocuta 0 genus_Crocuta 0 003 @ 01864707 n 0000 #m 02116959 n 0000 %m 02117900 n 0000 | a genus of Hyaenidae -02117900 05 n 03 spotted_hyena 0 laughing_hyena 0 Crocuta_crocuta 0 002 @ 02117135 n 0000 #m 02117772 n 0000 | African hyena noted for its distinctive howl -02118058 05 n 02 Proteles 0 genus_Proteles 0 003 @ 01864707 n 0000 #m 02116959 n 0000 %m 02118176 n 0000 | aardwolf -02118176 05 n 02 aardwolf 0 Proteles_cristata 0 002 @ 02117135 n 0000 #m 02118058 n 0000 | striped hyena of southeast Africa that feeds chiefly on insects -02118333 05 n 01 fox 0 009 @ 02083346 n 0000 ~ 02118643 n 0000 ~ 02118707 n 0000 ~ 02119022 n 0000 ~ 02119477 n 0000 ~ 02119634 n 0000 ~ 02119789 n 0000 ~ 02120079 n 0000 ~ 02120505 n 0000 | alert carnivorous mammal with pointed muzzle and ears and a bushy tail; most are predators that do not hunt in packs -02118643 05 n 01 vixen 0 001 @ 02118333 n 0000 | a female fox -02118707 05 n 01 Reynard 0 001 @ 02118333 n 0000 | a conventional name for a fox used in tales following usage in the old epic `Reynard the Fox' -02118854 05 n 02 Vulpes 0 genus_Vulpes 0 006 @ 01864707 n 0000 #m 02083038 n 0000 %m 02119022 n 0000 %m 02119477 n 0000 %m 02119634 n 0000 %m 02119789 n 0000 | foxes -02119022 05 n 02 red_fox 0 Vulpes_vulpes 0 004 @ 02118333 n 0000 #m 02118854 n 0000 ~ 02119247 n 0000 ~ 02119359 n 0000 | the common Old World fox; having reddish-brown fur; commonly considered a single circumpolar species -02119247 05 n 01 black_fox 0 001 @ 02119022 n 0000 | red fox in the color phase when its pelt is mostly black -02119359 05 n 01 silver_fox 0 001 @ 02119022 n 0000 | red fox in the color phase when its pelt is tipped with white -02119477 05 n 02 red_fox 2 Vulpes_fulva 0 002 @ 02118333 n 0000 #m 02118854 n 0000 | New World fox; often considered the same species as the Old World fox -02119634 05 n 03 kit_fox 1 prairie_fox 0 Vulpes_velox 0 002 @ 02118333 n 0000 #m 02118854 n 0000 | small grey fox of the plains of western North America -02119789 05 n 02 kit_fox 2 Vulpes_macrotis 0 002 @ 02118333 n 0000 #m 02118854 n 0000 | small grey fox of southwestern United States; may be a subspecies of Vulpes velox -02119961 05 n 02 Alopex 0 genus_Alopex 0 003 @ 01864707 n 0000 #m 02083038 n 0000 %m 02120079 n 0000 | arctic foxes -02120079 05 n 03 Arctic_fox 0 white_fox 0 Alopex_lagopus 0 003 @ 02118333 n 0000 #m 02119961 n 0000 ~ 02120278 n 0000 | thickly-furred fox of Arctic regions; brownish in summer and white in winter -02120278 05 n 01 blue_fox 0 001 @ 02120079 n 0000 | a variety of Arctic fox having a pale grey winter coat -02120387 05 n 02 Urocyon 0 genus_Urocyon 0 003 @ 01864707 n 0000 #m 02083038 n 0000 %m 02120505 n 0000 | grey foxes -02120505 05 n 03 grey_fox 0 gray_fox 0 Urocyon_cinereoargenteus 0 002 @ 02118333 n 0000 #m 02120387 n 0000 | dark grey American fox; from Central America through southern United States -02120692 05 n 02 Felidae 0 family_Felidae 0 010 @ 01862557 n 0000 #m 02074915 n 0000 %m 02120997 n 0000 %m 02121234 n 0000 %m 02126951 n 0000 %m 02127808 n 0000 %m 02128120 n 0000 %m 02130190 n 0000 %m 02130795 n 0000 %m 02131076 n 0000 | cats; wildcats; lions; leopards; cheetahs; saber-toothed tigers -02120997 05 n 02 feline 0 felid 0 006 @ 02075296 n 0000 #m 02120692 n 0000 + 02881888 a 0101 ~ 02121620 n 0000 ~ 02127808 n 0000 %p 02439929 n 0000 | any of various lithe-bodied roundheaded fissiped mammals, many with retractile claws -02121234 05 n 02 Felis 0 genus_Felis 0 015 @ 01864707 n 0000 #m 02120692 n 0000 %m 02121808 n 0000 %m 02124623 n 0000 %m 02125081 n 0000 %m 02125311 n 0000 %m 02125494 n 0000 %m 02125689 n 0000 %m 02125872 n 0000 %m 02126028 n 0000 %m 02126139 n 0000 %m 02126317 n 0000 %m 02126465 n 0000 %m 02126640 n 0000 %m 02126787 n 0000 | type genus of the Felidae: true cats and most wildcats -02121620 05 n 02 cat 0 true_cat 0 003 @ 02120997 n 0000 ~ 02121808 n 0000 ~ 02124623 n 0000 | feline mammal usually having thick soft fur and no ability to roar: domestic cats; wildcats -02121808 05 n 04 domestic_cat 0 house_cat 0 Felis_domesticus 0 Felis_catus 0 020 @ 02121620 n 0000 @ 01317541 n 0000 #m 02121234 n 0000 #m 07995365 n 0000 ~ 02122298 n 0000 ~ 02122430 n 0000 ~ 02122510 n 0000 ~ 02122725 n 0000 ~ 02122878 n 0000 ~ 02123045 n 0000 ~ 02123159 n 0000 ~ 02123242 n 0000 ~ 02123394 n 0000 ~ 02123478 n 0000 ~ 02123597 n 0000 ~ 02123917 n 0000 ~ 02124075 n 0000 ~ 02124157 n 0000 ~ 02124313 n 0000 ~ 02124484 n 0000 | any domesticated member of the genus Felis -02122298 05 n 05 kitty 1 kitty-cat 0 puss 0 pussy 0 pussycat 0 001 @ 02121808 n 0000 | informal terms referring to a domestic cat -02122430 05 n 01 mouser 0 001 @ 02121808 n 0000 | a cat proficient at mousing -02122510 05 n 01 alley_cat 0 001 @ 02121808 n 0000 | a homeless cat -02122580 05 n 01 stray 0 003 @ 01317541 n 0000 + 01450443 a 0101 + 01881180 v 0104 | an animal that has strayed (especially a domestic animal) -02122725 05 n 02 tom 1 tomcat 0 002 @ 02121808 n 0000 ~ 02122810 n 0000 | male cat -02122810 05 n 01 gib 0 001 @ 02122725 n 0000 | a castrated tomcat -02122878 05 n 02 tabby 2 queen 3 001 @ 02121808 n 0000 | female cat -02122948 05 n 02 kitten 0 kitty 2 002 @ 01321854 n 0000 + 00058135 v 0101 | young domestic cat -02123045 05 n 02 tabby 1 tabby_cat 0 001 @ 02121808 n 0000 | a cat with a grey or tawny coat mottled with black -02123159 05 n 01 tiger_cat 2 001 @ 02121808 n 0000 | a cat having a striped coat -02123242 05 n 03 tortoiseshell 1 tortoiseshell-cat 0 calico_cat 0 001 @ 02121808 n 0000 | a cat having black and cream-colored and yellowish markings -02123394 05 n 01 Persian_cat 0 001 @ 02121808 n 0000 | a long-haired breed of cat -02123478 05 n 02 Angora 3 Angora_cat 0 001 @ 02121808 n 0000 | a long-haired breed of cat similar to the Persian cat -02123597 05 n 02 Siamese_cat 0 Siamese 0 002 @ 02121808 n 0000 ~ 02123785 n 0000 | a slender short-haired blue-eyed breed of cat having a pale coat with dark ears paws face and tail tip -02123785 05 n 01 blue_point_Siamese 0 001 @ 02123597 n 0000 | Siamese cat having a bluish cream-colored body and dark grey points -02123917 05 n 01 Burmese_cat 0 001 @ 02121808 n 0000 | a short-haired breed with body similar to the Siamese cat but having a solid dark brown or grey coat -02124075 05 n 01 Egyptian_cat 0 001 @ 02121808 n 0000 | a domestic cat of Egypt -02124157 05 n 02 Maltese 1 Maltese_cat 0 001 @ 02121808 n 0000 | a term applied indiscriminately in the United States to any short-haired bluish-grey cat -02124313 05 n 02 Abyssinian 0 Abyssinian_cat 0 001 @ 02121808 n 0000 | a small slender short-haired breed of African origin having brownish fur with a reddish undercoat -02124484 05 n 02 Manx 0 Manx_cat 0 001 @ 02121808 n 0000 | a short-haired tailless breed of cat believed to originate on the Isle of Man -02124623 05 n 01 wildcat 0 015 @ 02121620 n 0000 #m 02121234 n 0000 ~ 02125010 n 0000 ~ 02125081 n 0000 ~ 02125311 n 0000 ~ 02125494 n 0000 ~ 02125689 n 0000 ~ 02125872 n 0000 ~ 02126028 n 0000 ~ 02126139 n 0000 ~ 02126317 n 0000 ~ 02126465 n 0000 ~ 02126640 n 0000 ~ 02126787 n 0000 ~ 02127052 n 0000 | any small or medium-sized cat resembling the domestic cat and living in the wild -02125010 05 n 01 sand_cat 0 001 @ 02124623 n 0000 | a desert wildcat -02125081 05 n 03 European_wildcat 0 catamountain 0 Felis_silvestris 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | bushy-tailed wildcat of Europe that resembles the domestic cat and is regarded as the ancestor of the domestic cat -02125311 05 n 07 cougar 0 puma 0 catamount 1 mountain_lion 0 painter 0 panther 4 Felis_concolor 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | large American feline resembling a lion -02125494 05 n 03 ocelot 0 panther_cat 0 Felis_pardalis 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | nocturnal wildcat of Central America and South America having a dark-spotted buff-brown coat -02125689 05 n 05 jaguarundi 0 jaguarundi_cat 0 jaguarondi 0 eyra 0 Felis_yagouaroundi 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | long-bodied long-tailed tropical American wildcat -02125872 05 n 03 kaffir_cat 0 caffer_cat 0 Felis_ocreata 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | widely distributed wildcat of Africa and Asia Minor -02126028 05 n 02 jungle_cat 0 Felis_chaus 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | small Asiatic wildcat -02126139 05 n 02 serval 0 Felis_serval 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | slender long-legged African wildcat having large untufted ears and tawny black-spotted coat -02126317 05 n 02 leopard_cat 0 Felis_bengalensis 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | small spotted wildcat of southern Asia and Malaysia -02126465 05 n 02 tiger_cat 1 Felis_tigrina 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | medium-sized wildcat of Central America and South America having a dark-striped coat -02126640 05 n 03 margay 0 margay_cat 0 Felis_wiedi 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | small spotted wildcat found from Texas to Brazil -02126787 05 n 03 manul 0 Pallas's_cat 0 Felis_manul 0 002 @ 02124623 n 0000 #m 02121234 n 0000 | small wildcat of the mountains of Siberia and Tibet and Mongolia -02126951 05 n 01 genus_Lynx 0 003 @ 01864707 n 0000 #m 02120692 n 0000 %m 02127052 n 0000 | lynxes -02127052 05 n 02 lynx 0 catamount 2 007 @ 02124623 n 0000 #m 02126951 n 0000 ~ 02127292 n 0000 ~ 02127381 n 0000 ~ 02127482 n 0000 ~ 02127586 n 0000 ~ 02127678 n 0000 | short-tailed wildcats with usually tufted ears; valued for their fur -02127292 05 n 02 common_lynx 0 Lynx_lynx 0 001 @ 02127052 n 0000 | of northern Eurasia -02127381 05 n 02 Canada_lynx 0 Lynx_canadensis 0 001 @ 02127052 n 0000 | of northern North America -02127482 05 n 03 bobcat 0 bay_lynx 0 Lynx_rufus 0 001 @ 02127052 n 0000 | small lynx of North America -02127586 05 n 02 spotted_lynx 0 Lynx_pardina 0 001 @ 02127052 n 0000 | of southern Europe -02127678 05 n 03 caracal 0 desert_lynx 0 Lynx_caracal 0 001 @ 02127052 n 0000 | of deserts of northern Africa and southern Asia -02127808 05 n 02 big_cat 0 cat 2 011 @ 02120997 n 0000 #m 02120692 n 0000 ~ 02128385 n 0000 ~ 02128757 n 0000 ~ 02128925 n 0000 ~ 02129165 n 0000 ~ 02129604 n 0000 ~ 02129991 n 0000 ~ 02130086 n 0000 ~ 02130308 n 0000 ~ 02130545 n 0000 | any of several large cats typically able to roar and living in the wild -02128120 05 n 02 Panthera 0 genus_Panthera 0 007 @ 01864707 n 0000 #m 02120692 n 0000 %m 02128385 n 0000 %m 02128757 n 0000 %m 02128925 n 0000 %m 02129165 n 0000 %m 02129604 n 0000 | lions; leopards; snow leopards; jaguars; tigers; cheetahs; saber-toothed tigers -02128385 05 n 02 leopard 0 Panthera_pardus 0 004 @ 02127808 n 0000 #m 02128120 n 0000 ~ 02128598 n 0000 ~ 02128669 n 0000 | large feline of African and Asian forests usually having a tawny coat with black spots -02128598 05 n 01 leopardess 0 001 @ 02128385 n 0000 | female leopard -02128669 05 n 01 panther 2 001 @ 02128385 n 0000 | a leopard in the black color phase -02128757 05 n 03 snow_leopard 0 ounce 0 Panthera_uncia 0 002 @ 02127808 n 0000 #m 02128120 n 0000 | large feline of upland central Asia having long thick whitish fur -02128925 05 n 04 jaguar 0 panther 3 Panthera_onca 0 Felis_onca 0 002 @ 02127808 n 0000 #m 02128120 n 0000 | a large spotted feline of tropical America similar to the leopard; in some classifications considered a member of the genus Felis -02129165 05 n 03 lion 0 king_of_beasts 0 Panthera_leo 0 007 @ 02127808 n 0000 #m 02128120 n 0000 #m 07995278 n 0000 ~ 01322898 n 0000 %p 01899746 n 0000 ~ 02129463 n 0000 ~ 02129530 n 0000 | large gregarious predatory feline of Africa and India having a tawny coat with a shaggy mane in the male -02129463 05 n 01 lioness 0 001 @ 02129165 n 0000 | a female lion -02129530 05 n 01 lionet 0 001 @ 02129165 n 0000 | a small or young lion -02129604 05 n 02 tiger 0 Panthera_tigris 0 005 @ 02127808 n 0000 #m 02128120 n 0000 ~ 01323068 n 0000 ~ 02129837 n 0000 ~ 02129923 n 0000 | large feline of forests in most of Asia having a tawny coat with black stripes; endangered -02129837 05 n 01 Bengal_tiger 0 001 @ 02129604 n 0000 | southern short-haired tiger -02129923 05 n 01 tigress 0 001 @ 02129604 n 0000 | a female tiger -02129991 05 n 01 liger 0 001 @ 02127808 n 0000 | offspring of a male lion and a female tiger -02130086 05 n 02 tiglon 0 tigon 0 001 @ 02127808 n 0000 | offspring of a male tiger and a female lion -02130190 05 n 02 Acinonyx 0 genus_Acinonyx 0 003 @ 01864707 n 0000 #m 02120692 n 0000 %m 02130308 n 0000 | cheetahs -02130308 05 n 03 cheetah 0 chetah 0 Acinonyx_jubatus 0 002 @ 02127808 n 0000 #m 02130190 n 0000 | long-legged spotted cat of Africa and southwestern Asia having nonretractile claws; the swiftest mammal; can be trained to run down game -02130545 05 n 02 saber-toothed_tiger 0 sabertooth 0 003 @ 02127808 n 0000 ~ 02130925 n 0000 ~ 02131211 n 0000 | any of many extinct cats of the Old and New Worlds having long swordlike upper canine teeth; from the Oligocene through the Pleistocene -02130795 05 n 02 Smiledon 0 genus_Smiledon 0 003 @ 01864707 n 0000 #m 02120692 n 0000 %m 02130925 n 0000 | saber-toothed tigers -02130925 05 n 01 Smiledon_californicus 0 002 @ 02130545 n 0000 #m 02130795 n 0000 | North American sabertooth; culmination of sabertooth development -02131076 05 n 02 Nimravus 0 genus_Nimravus 0 003 @ 01864707 n 0000 #m 02120692 n 0000 %m 02131211 n 0000 | false sabertoothed tigers -02131211 05 n 01 false_saber-toothed_tiger 0 002 @ 02130545 n 0000 #m 02131076 n 0000 | North American cat of the Miocene and Pliocene; much earlier and less specialized than members of the genus Smiledon -02131418 05 n 02 Ursidae 0 family_Ursidae 0 008 @ 01862557 n 0000 #m 02074915 n 0000 %m 02131653 n 0000 %m 02131942 n 0000 %m 02132974 n 0000 %m 02133512 n 0000 %m 02133902 n 0000 %m 02134240 n 0000 | bears and extinct related forms -02131653 05 n 01 bear 0 009 @ 02075296 n 0000 #m 02131418 n 0000 ~ 01322983 n 0000 ~ 02132136 n 0000 ~ 02132320 n 0000 ~ 02133161 n 0000 ~ 02133704 n 0000 ~ 02134084 n 0000 ~ 02134418 n 0000 | massive plantigrade carnivorous or omnivorous mammals with long shaggy coats and strong claws -02131942 05 n 02 Ursus 0 genus_Ursus 0 003 @ 01864707 n 0000 #m 02131418 n 0000 %m 02132136 n 0000 | type genus of Ursidae: brown bears; in some classifications genus Ursus includes all bears -02132136 05 n 03 brown_bear 0 bruin 1 Ursus_arctos 0 005 @ 02131653 n 0000 #m 02131942 n 0000 ~ 02132466 n 0000 ~ 02132580 n 0000 ~ 02132788 n 0000 | large ferocious bear of Eurasia -02132320 05 n 01 bruin 2 001 @ 02131653 n 0000 | a conventional name for a bear used in tales following usage in the old epic `Reynard the Fox' -02132466 05 n 02 Syrian_bear 0 Ursus_arctos_syriacus 0 001 @ 02132136 n 0000 | yellowish-grey Syrian brown bear -02132580 05 n 06 grizzly 0 grizzly_bear 0 silvertip 0 silver-tip 0 Ursus_horribilis 0 Ursus_arctos_horribilis 0 001 @ 02132136 n 0000 | powerful brownish-yellow bear of the uplands of western North America -02132788 05 n 05 Alaskan_brown_bear 0 Kodiak_bear 0 Kodiak 0 Ursus_middendorffi 0 Ursus_arctos_middendorffi 0 001 @ 02132136 n 0000 | brown bear of coastal Alaska and British Columbia -02132974 05 n 02 Euarctos 0 genus_Euarctos 0 003 @ 01864707 n 0000 #m 02131418 n 0000 %m 02133161 n 0000 | American black bears; in some classifications not a separate genus from Ursus -02133161 05 n 04 American_black_bear 0 black_bear 1 Ursus_americanus 0 Euarctos_americanus 0 003 @ 02131653 n 0000 #m 02132974 n 0000 ~ 02133400 n 0000 | brown to black North American bear; smaller and less ferocious than the brown bear -02133400 05 n 01 cinnamon_bear 0 001 @ 02133161 n 0000 | reddish-brown color phase of the American black bear -02133512 05 n 02 Selenarctos 0 genus_Selenarctos 0 003 @ 01864707 n 0000 #m 02131418 n 0000 %m 02133704 n 0000 | Asiatic black bears; in some classifications not a separate genus from Ursus -02133704 05 n 04 Asiatic_black_bear 0 black_bear 2 Ursus_thibetanus 0 Selenarctos_thibetanus 0 002 @ 02131653 n 0000 #m 02133512 n 0000 | bear with a black coat living in central and eastern Asia -02133902 05 n 02 Thalarctos 0 genus_Thalarctos 0 003 @ 01864707 n 0000 #m 02131418 n 0000 %m 02134084 n 0000 | polar bears; in some classifications not a separate genus from Ursus -02134084 05 n 04 ice_bear 0 polar_bear 0 Ursus_Maritimus 0 Thalarctos_maritimus 0 002 @ 02131653 n 0000 #m 02133902 n 0000 | white bear of Arctic regions -02134240 05 n 02 Melursus 0 genus_Melursus 0 003 @ 01864707 n 0000 #m 02131418 n 0000 %m 02134418 n 0000 | sloth bears; in some classifications not a separate genus from Ursus -02134418 05 n 03 sloth_bear 0 Melursus_ursinus 0 Ursus_ursinus 0 002 @ 02131653 n 0000 #m 02134240 n 0000 | common coarse-haired long-snouted bear of south-central Asia -02134589 05 n 04 Viverridae 0 family_Viverridae 0 Viverrinae 0 family_Viverrinae 0 014 @ 01862557 n 0000 #m 02074915 n 0000 %m 02134971 n 0000 %m 02135220 n 0000 %m 02135486 n 0000 %m 02135726 n 0000 %m 02135981 n 0000 %m 02136285 n 0000 %m 02136623 n 0000 %m 02136901 n 0000 %m 02137172 n 0000 %m 02137428 n 0000 %m 02138042 n 0000 %m 02138323 n 0000 | genets; civets; mongooses -02134971 05 n 02 viverrine 0 viverrine_mammal 0 007 @ 02075296 n 0000 #m 02134589 n 0000 ~ 02135220 n 0000 ~ 02136452 n 0000 ~ 02137015 n 0000 ~ 02137549 n 0000 ~ 02138441 n 0000 | small cat-like predatory mammals of warmer parts of the Old World -02135220 05 n 02 civet 0 civet_cat 1 009 @ 02134971 n 0000 #m 02134589 n 0000 ~ 02135610 n 0000 ~ 02135844 n 0000 ~ 02136103 n 0000 ~ 02136285 n 0000 ~ 02136794 n 0000 ~ 02137302 n 0000 ~ 02138169 n 0000 | cat-like mammal typically secreting musk used in perfumes -02135486 05 n 02 Viverra 0 genus_Viverra 0 002 @ 01864707 n 0000 #m 02134589 n 0000 | type genus of the family Viverridae -02135610 05 n 02 large_civet 0 Viverra_zibetha 0 001 @ 02135220 n 0000 | common civet of India and southeast Asia -02135726 05 n 02 Viverricula 0 genus_Viverricula 0 002 @ 01864707 n 0000 #m 02134589 n 0000 | a genus of Viverridae -02135844 05 n 03 small_civet 0 Viverricula_indica 0 Viverricula_malaccensis 0 001 @ 02135220 n 0000 | a common civet of southeast Asia -02135981 05 n 02 Arctictis 0 genus_Arctictis 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02136103 n 0000 | binturongs -02136103 05 n 03 binturong 0 bearcat 0 Arctictis_bintourong 0 002 @ 02135220 n 0000 #m 02135981 n 0000 | arboreal civet of Asia having a long prehensile tail and shaggy black hair -02136285 05 n 02 Cryptoprocta 0 genus_Cryptoprocta 0 002 @ 02135220 n 0000 #m 02134589 n 0000 | large primitive cat-like carnivores inhabiting forests of Madagascar -02136452 05 n 03 fossa 1 fossa_cat 0 Cryptoprocta_ferox 0 001 @ 02134971 n 0000 | largest carnivore of Madagascar; intermediate in some respects between cats and civets -02136623 05 n 02 Fossa 0 genus_Fossa 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02136794 n 0000 | monotypic genus of Madagascar civets closely related to palm civets -02136794 05 n 02 fanaloka 0 Fossa_fossa 0 002 @ 02135220 n 0000 #m 02136623 n 0000 | civet of Madagascar -02136901 05 n 02 Genetta 0 genus_Genetta 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02137015 n 0000 | genets -02137015 05 n 02 genet 0 Genetta_genetta 0 002 @ 02134971 n 0000 #m 02136901 n 0000 | agile Old World viverrine having a spotted coat and long ringed tail -02137172 05 n 02 Hemigalus 0 genus_Hemigalus 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02137302 n 0000 | banded palm civets -02137302 05 n 02 banded_palm_civet 0 Hemigalus_hardwickii 0 002 @ 02135220 n 0000 #m 02137172 n 0000 | an East Indian civet -02137428 05 n 02 Herpestes 0 genus_Herpestes 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02137549 n 0000 | mongooses -02137549 05 n 01 mongoose 0 004 @ 02134971 n 0000 #m 02137428 n 0000 ~ 02137722 n 0000 ~ 02137888 n 0000 | agile grizzled Old World viverrine; preys on snakes and rodents -02137722 05 n 02 Indian_mongoose 0 Herpestes_nyula 0 001 @ 02137549 n 0000 | keen-sighted viverrine of southern Asia about the size of a ferret; often domesticated -02137888 05 n 02 ichneumon 0 Herpestes_ichneumon 0 001 @ 02137549 n 0000 | northern African mongoose; in ancient times thought to devour crocodile eggs -02138042 05 n 02 Paradoxurus 0 genus_Paradoxurus 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02138169 n 0000 | palm civets -02138169 05 n 02 palm_cat 0 palm_civet 0 002 @ 02135220 n 0000 #m 02138042 n 0000 | spotted or striped arboreal civet of southeast Asia and East Indies -02138323 05 n 02 Suricata 0 genus_Suricata 0 003 @ 01864707 n 0000 #m 02134589 n 0000 %m 02138441 n 0000 | meerkats -02138441 05 n 02 meerkat 0 mierkat 0 004 @ 02134971 n 0000 #m 02138323 n 0000 ~ 02138647 n 0000 ~ 02138777 n 0000 | a mongoose-like viverrine of South Africa having a face like a lemur and only four toes -02138647 05 n 02 slender-tailed_meerkat 0 Suricata_suricatta 0 001 @ 02138441 n 0000 | a meerkat with a thin and elongated tail -02138777 05 n 02 suricate 0 Suricata_tetradactyla 0 001 @ 02138441 n 0000 | burrowing diurnal meerkat of southern Africa; often kept as a pet -02138921 05 n 02 Chiroptera 0 order_Chiroptera 0 005 @ 01342529 n 0000 #m 01886220 n 0000 %m 02139199 n 0000 %m 02139479 n 0000 %m 02140970 n 0000 | an old order dating to early Eocene: bats: suborder Megachiroptera (fruit bats); suborder Microchiroptera (insectivorous bats) -02139199 05 n 02 bat 0 chiropteran 0 005 @ 01886756 n 0000 #m 02138921 n 0000 ~ 02139671 n 0000 ~ 02141306 n 0000 %p 02151625 n 0000 | nocturnal mouselike mammal with forelimbs modified to form membranous wings and anatomical adaptations for echolocation by which they navigate -02139479 05 n 02 Megachiroptera 0 suborder_Megachiroptera 0 006 @ 01342529 n 0000 #m 02138921 n 0000 %m 02139671 n 0000 %m 02139914 n 0000 %m 02140357 n 0000 %m 02140719 n 0000 | fruit bats -02139671 05 n 02 fruit_bat 0 megabat 0 007 @ 02139199 n 0000 #m 02139479 n 0000 ~ 02140049 n 0000 ~ 02140179 n 0000 ~ 02140268 n 0000 ~ 02140491 n 0000 ~ 02140858 n 0000 | large Old World bat of warm and tropical regions that feeds on fruit -02139914 05 n 02 Pteropus 0 genus_Pteropus 0 003 @ 01864707 n 0000 #m 02139479 n 0000 %m 02140049 n 0000 | a genus of Megachiroptera -02140049 05 n 01 flying_fox 0 002 @ 02139671 n 0000 #m 02139914 n 0000 | large bat with a head that resembles the head of a fox -02140179 05 n 01 Pteropus_capestratus 0 001 @ 02139671 n 0000 | a variety of fruit bat -02140268 05 n 01 Pteropus_hypomelanus 0 001 @ 02139671 n 0000 | a variety of fruit bat -02140357 05 n 02 Nyctimene 0 genus_Nyctimene 0 003 @ 01864707 n 0000 #m 02139479 n 0000 %m 02140491 n 0000 | East Indian fruit bats -02140491 05 n 04 harpy 2 harpy_bat 0 tube-nosed_bat 0 tube-nosed_fruit_bat 0 002 @ 02139671 n 0000 #m 02140357 n 0000 | any of various fruit bats of the genus Nyctimene distinguished by nostrils drawn out into diverging tubes -02140719 05 n 02 Cynopterus 0 genus_Cynopterus 0 003 @ 01864707 n 0000 #m 02139479 n 0000 %m 02140858 n 0000 | a genus of Megachiroptera -02140858 05 n 01 Cynopterus_sphinx 0 002 @ 02139671 n 0000 #m 02140719 n 0000 | a variety of fruit eating bat -02140970 05 n 02 Microchiroptera 0 suborder_Microchiroptera 0 010 @ 01342529 n 0000 #m 02138921 n 0000 %m 02141306 n 0000 %m 02142064 n 0000 %m 02143293 n 0000 %m 02143594 n 0000 %m 02144442 n 0000 %m 02145084 n 0000 %m 02149136 n 0000 %m 02150306 n 0000 | most of the bats in the world; all bats except fruit bats insectivorous bats -02141306 05 n 02 carnivorous_bat 0 microbat 0 009 @ 02139199 n 0000 #m 02140970 n 0000 ~ 02141611 n 0000 ~ 02141713 n 0000 ~ 02145424 n 0000 ~ 02146371 n 0000 ~ 02149420 n 0000 ~ 02150134 n 0000 ~ 02150482 n 0000 | typically having large ears and feeding primarily on insects; worldwide in distribution -02141611 05 n 01 mouse-eared_bat 0 001 @ 02141306 n 0000 | a carnivorous bat with ears like a mouse -02141713 05 n 02 leafnose_bat 0 leaf-nosed_bat 0 009 @ 02141306 n 0000 ~ 02142407 n 0000 ~ 02142734 n 0000 ~ 02142898 n 0000 ~ 02143142 n 0000 ~ 02143439 n 0000 ~ 02143891 n 0000 ~ 02144251 n 0000 ~ 02144593 n 0000 | bat having a leaflike flap at the end of the nose; especially of the families Phyllostomatidae and Rhinolophidae and Hipposideridae -02142064 05 n 04 Phyllostomidae 0 family_Phyllostomidae 0 Phyllostomatidae 0 family_Phyllostomatidae 0 005 @ 01862557 n 0000 #m 02140970 n 0000 %m 02142295 n 0000 %m 02142575 n 0000 %m 02142993 n 0000 | New World leaf-nosed bats -02142295 05 n 01 genus_Macrotus 0 003 @ 01864707 n 0000 #m 02142064 n 0000 %m 02142407 n 0000 | leafnose bats -02142407 05 n 02 macrotus 0 Macrotus_californicus 0 002 @ 02141713 n 0000 #m 02142295 n 0000 | large-eared greyish bat of southern California and northwestern Mexico -02142575 05 n 02 Phyllostomus 0 genus_Phyllostomus 0 003 @ 01864707 n 0000 #m 02142064 n 0000 %m 02142734 n 0000 | type genus of the family Phyllostomatidae -02142734 05 n 01 spearnose_bat 0 002 @ 02141713 n 0000 #m 02142575 n 0000 | New World bat with a pointed nose leaf; found from southern United States to Paraguay -02142898 05 n 01 Phyllostomus_hastatus 0 001 @ 02141713 n 0000 | a variety of leaf-nosed bat -02142993 05 n 02 Choeronycteris 0 genus_Choeronycteris 0 003 @ 01864707 n 0000 #m 02142064 n 0000 %m 02143142 n 0000 | a genus of Phyllostomatidae -02143142 05 n 02 hognose_bat 0 Choeronycteris_mexicana 0 002 @ 02141713 n 0000 #m 02142993 n 0000 | small-eared Mexican bat with a long slender nose -02143293 05 n 02 Rhinolophidae 0 family_Rhinolophidae 0 003 @ 01862557 n 0000 #m 02140970 n 0000 %m 02143439 n 0000 | Old World leaf-nosed bats -02143439 05 n 01 horseshoe_bat 1 002 @ 02141713 n 0000 #m 02143293 n 0000 | a bat of the family Rhinolophidae having a horseshoe-shaped leaf on the nose -02143594 05 n 02 Hipposideridae 0 family_Hipposideridae 0 004 @ 01862557 n 0000 #m 02140970 n 0000 %m 02143759 n 0000 %m 02144110 n 0000 | Old World leafnose bats -02143759 05 n 02 Hipposideros 0 genus_Hipposideros 0 003 @ 01864707 n 0000 #m 02143594 n 0000 %m 02143891 n 0000 | horseshoe bats -02143891 05 n 01 horseshoe_bat 2 002 @ 02141713 n 0000 #m 02143759 n 0000 | any of numerous bats of the family Hipposideridae of northwest Africa or Philippines or Australia having a horseshoe-shaped leaf on the nose -02144110 05 n 02 Rhinonicteris 0 genus_Rhinonicteris 0 003 @ 01864707 n 0000 #m 02143594 n 0000 %m 02144251 n 0000 | orange horseshoe bats -02144251 05 n 03 orange_bat 0 orange_horseshoe_bat 0 Rhinonicteris_aurantius 0 002 @ 02141713 n 0000 #m 02144110 n 0000 | a common bat of northwestern Australia having orange or yellow fur -02144442 05 n 02 Megadermatidae 0 family_Megadermatidae 0 003 @ 01862557 n 0000 #m 02140970 n 0000 %m 02144792 n 0000 | Old World false vampire bats -02144593 05 n 02 false_vampire 0 false_vampire_bat 0 002 @ 02141713 n 0000 ~ 02144936 n 0000 | any New or Old World carnivorous bat erroneously thought to suck blood but in fact feeding on insects -02144792 05 n 02 Megaderma 0 genus_Megaderma 0 003 @ 01864707 n 0000 #m 02144442 n 0000 %m 02144936 n 0000 | type genus of the Megadermatidae -02144936 05 n 02 big-eared_bat 0 Megaderma_lyra 0 002 @ 02144593 n 0000 #m 02144792 n 0000 | large carnivorous Old World bat with very large ears -02145084 05 n 02 Vespertilionidae 0 family_Vespertilionidae 0 011 @ 01862557 n 0000 #m 02140970 n 0000 %m 02145424 n 0000 %m 02145767 n 0000 %m 02146064 n 0000 %m 02146526 n 0000 %m 02147034 n 0000 %m 02147452 n 0000 %m 02147747 n 0000 %m 02148377 n 0000 %m 02148698 n 0000 | the majority of common bats of temperate regions of the world -02145424 05 n 02 vespertilian_bat 0 vespertilionid 0 014 @ 02141306 n 0000 #m 02145084 n 0000 ~ 02145910 n 0000 ~ 02146201 n 0000 ~ 02146700 n 0000 ~ 02146879 n 0000 ~ 02147173 n 0000 ~ 02147328 n 0000 ~ 02147591 n 0000 ~ 02147947 n 0000 ~ 02148088 n 0000 ~ 02148245 n 0000 ~ 02148512 n 0000 ~ 02148835 n 0000 | a variety of carnivorous bat -02145767 05 n 02 Vespertilio 0 genus_Vespertilio 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02145910 n 0000 | a genus of Vespertilionidae -02145910 05 n 02 frosted_bat 0 Vespertilio_murinus 0 002 @ 02145424 n 0000 #m 02145767 n 0000 | common Eurasian bat with white-tipped hairs in its coat -02146064 05 n 02 Lasiurus 0 genus_Lasiurus 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02146201 n 0000 | a genus of Vespertilionidae -02146201 05 n 02 red_bat 0 Lasiurus_borealis 0 002 @ 02145424 n 0000 #m 02146064 n 0000 | North American bat of a brick or rusty red color with hairs tipped with white -02146371 05 n 01 brown_bat 0 001 @ 02141306 n 0000 | any of numerous medium to small insectivorous bats found worldwide in caves and trees and buildings -02146526 05 n 02 Myotis 0 genus_Myotis 0 004 @ 01864707 n 0000 #m 02145084 n 0000 %m 02146700 n 0000 %m 02146879 n 0000 | largest and most widely distributed genus of bats -02146700 05 n 03 little_brown_bat 0 little_brown_myotis 0 Myotis_leucifugus 0 002 @ 02145424 n 0000 #m 02146526 n 0000 | the small common North American bat; widely distributed -02146879 05 n 02 cave_myotis 0 Myotis_velifer 0 002 @ 02145424 n 0000 #m 02146526 n 0000 | small bat of southwest United States that lives in caves etc. -02147034 05 n 02 Eptesicus 0 genus_Eptesicus 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02147173 n 0000 | a genus of Vespertilionidae -02147173 05 n 02 big_brown_bat 0 Eptesicus_fuscus 0 002 @ 02145424 n 0000 #m 02147034 n 0000 | rather large North American brown bat; widely distributed -02147328 05 n 03 serotine 0 European_brown_bat 0 Eptesicus_serotinus 0 001 @ 02145424 n 0000 | common brown bat of Europe -02147452 05 n 02 Antrozous 0 genus_Antrozous 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02147591 n 0000 | a genus of Vespertilionidae -02147591 05 n 03 pallid_bat 0 cave_bat 0 Antrozous_pallidus 0 002 @ 02145424 n 0000 #m 02147452 n 0000 | drab yellowish big-eared bat that lives in caves -02147747 05 n 02 Pipistrellus 0 genus_Pipistrellus 0 005 @ 01864707 n 0000 #m 02145084 n 0000 %m 02147947 n 0000 %m 02148088 n 0000 %m 02148245 n 0000 | nearly cosmopolitan genus of very small bats -02147947 05 n 03 pipistrelle 0 pipistrel 1 Pipistrellus_pipistrellus 0 002 @ 02145424 n 0000 #m 02147747 n 0000 | small European brown bat -02148088 05 n 02 eastern_pipistrel 0 Pipistrellus_subflavus 0 002 @ 02145424 n 0000 #m 02147747 n 0000 | one of the smallest bats of eastern North America -02148245 05 n 02 western_pipistrel 0 SPipistrellus_hesperus 0 002 @ 02145424 n 0000 #m 02147747 n 0000 | of western North America -02148377 05 n 02 Euderma 0 genus_Euderma 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02148512 n 0000 | a genus of Vespertilionidae -02148512 05 n 03 jackass_bat 0 spotted_bat 0 Euderma_maculata 0 002 @ 02145424 n 0000 #m 02148377 n 0000 | a large bat of the southwestern United States having spots and enormous ears -02148698 05 n 02 Plecotus 0 genus_Plecotus 0 003 @ 01864707 n 0000 #m 02145084 n 0000 %m 02148835 n 0000 | a genus of Vespertilionidae -02148835 05 n 01 long-eared_bat 0 003 @ 02145424 n 0000 #m 02148698 n 0000 ~ 02148991 n 0000 | any of various Old or New World bats having very long ears -02148991 05 n 02 western_big-eared_bat 0 Plecotus_townsendi 0 001 @ 02148835 n 0000 | bat of western North America having extremely large ears -02149136 05 n 02 Molossidae 0 family_Molossidae 0 004 @ 01862557 n 0000 #m 02140970 n 0000 %m 02149297 n 0000 %m 02150016 n 0000 | mastiff bats; freetail bats -02149297 05 n 02 Tadarida 0 genus_Tadarida 0 003 @ 01864707 n 0000 #m 02149136 n 0000 %m 02149420 n 0000 | freetail bats -02149420 05 n 03 freetail 0 free-tailed_bat 0 freetailed_bat 0 004 @ 02141306 n 0000 #m 02149297 n 0000 ~ 02149653 n 0000 ~ 02149861 n 0000 | small swift insectivorous bat with leathery ears and a long tail; common in warm regions -02149653 05 n 03 guano_bat 0 Mexican_freetail_bat 0 Tadarida_brasiliensis 0 001 @ 02149420 n 0000 | the common freetail bat of southern United States having short velvety fur; migrates southward for winter -02149861 05 n 03 pocketed_bat 0 pocketed_freetail_bat 0 Tadirida_femorosacca 0 001 @ 02149420 n 0000 | small brown bat of California and northern Mexico -02150016 05 n 02 Eumops 0 genus_Eumops 0 003 @ 01864707 n 0000 #m 02149136 n 0000 %m 02150134 n 0000 | mastiff bats -02150134 05 n 01 mastiff_bat 0 002 @ 02141306 n 0000 #m 02150016 n 0000 | a soft-furred chocolate-brown bat with folded ears and small wings; often runs along the ground -02150306 05 n 02 Desmodontidae 0 family_Desmodontidae 0 005 @ 01862557 n 0000 #m 02140970 n 0000 %m 02150482 n 0000 %m 02150730 n 0000 %m 02151108 n 0000 | true vampire bats -02150482 05 n 02 vampire_bat 0 true_vampire_bat 0 004 @ 02141306 n 0000 #m 02150306 n 0000 ~ 02150885 n 0000 ~ 02151230 n 0000 | any of various tropical American bats of the family Desmodontidae that bite mammals and birds to feed on their blood -02150730 05 n 02 Desmodus 0 genus_Desmodus 0 003 @ 01864707 n 0000 #m 02150306 n 0000 %m 02150885 n 0000 | type genus of the Desmodontidae: vampire bats -02150885 05 n 01 Desmodus_rotundus 0 002 @ 02150482 n 0000 #m 02150730 n 0000 | mouse-sized bat of tropical Central America and South America having sharp incisor and canine teeth; feeds on the blood of birds and mammals -02151108 05 n 02 Diphylla 0 genus_Diphylla 0 003 @ 01864707 n 0000 #m 02150306 n 0000 %m 02151230 n 0000 | vampire bats -02151230 05 n 02 hairy-legged_vampire_bat 0 Diphylla_ecaudata 0 002 @ 02150482 n 0000 #m 02151108 n 0000 | similar in size and habits to Desmodus rotundus; of tropical America including southern California and Texas -02151448 05 n 01 water_vascular_system 0 002 @ 05511286 n 0000 #p 02316707 n 0000 | system of fluid-filled tubes used by echinoderms in locomotion and feeding and respiration -02151625 05 n 01 wing 0 013 @ 05297523 n 0000 #p 01503061 n 0000 #p 02139199 n 0000 #p 02159955 n 0000 #p 09538915 n 0000 + 01940403 v 0102 %p 01897667 n 0000 ~ 02151940 n 0000 ~ 02152064 n 0000 ~ 02152212 n 0000 ~ 02152446 n 0000 ~ 02152559 n 0000 %p 02468864 n 0000 | a movable organ for flying (one of a pair) -02151940 05 n 01 ala 1 004 @ 02151625 n 0000 #p 02159955 n 0000 + 02567117 a 0102 + 02567281 a 0101 | a wing of an insect -02152064 05 n 03 forewing 0 fore-wing 0 fore_wing 0 001 @ 02151625 n 0000 | either of the anterior pair of wings on an insect that has four wings -02152212 05 n 03 halter 0 haltere 0 balancer 0 004 @ 02151625 n 0000 #p 02188699 n 0000 + 02743020 v 0301 + 01602318 v 0302 | either of the rudimentary hind wings of dipterous insects; used for maintaining equilibrium during flight -02152446 05 n 02 pennon 0 pinion 1 003 @ 02151625 n 0000 #p 01503061 n 0000 + 00512749 v 0201 | wing of a bird -02152559 05 n 02 wing_case 0 elytron 0 001 @ 02151625 n 0000 | either of the horny front wings in beetles and some other insects which cover and protect the functional hind wings -02152740 05 n 02 predator 0 predatory_animal 0 002 @ 00015388 n 0000 ~ 01324431 n 0000 | any animal that lives by preying on other animals -02152881 05 n 02 prey 0 quarry 0 002 @ 00015388 n 0000 + 01203500 v 0102 | animal hunted or caught for food -02152991 05 n 01 game 0 003 @ 00015388 n 0000 ~ 02153109 n 0000 ~ 02153203 n 0000 | animal hunted for food or sport -02153109 05 n 01 big_game 0 001 @ 02152991 n 0000 | large animals that are hunted for sport -02153203 05 n 01 game_bird 0 008 @ 02152991 n 0000 @ 01789386 n 0000 ~ 01795088 n 0000 ~ 01802721 n 0000 ~ 01810268 n 0000 -c 07647115 n 0000 -c 07647321 n 0000 -c 07647602 n 0000 | any bird (as grouse or pheasant) that is hunted for sport -02153445 05 n 02 animal_foot 0 foot 1 009 @ 05563034 n 0000 ~ 02153712 n 0000 ~ 02153959 n 0000 ~ 02154416 n 0000 ~ 02154620 n 0000 ~ 02439568 n 0000 ~ 02439728 n 0000 ~ 02439829 n 0000 ~ 02439929 n 0000 | the pedal extremity of vertebrates other than human beings -02153712 05 n 01 fossorial_foot 0 001 @ 02153445 n 0000 | foot adapted for digging as in moles -02153809 05 n 01 fossorial_mammal 0 003 @ 01861778 n 0000 ~ 02369680 n 0000 ~ 02370137 n 0000 | a burrowing mammal having limbs adapted for digging -02153959 05 n 01 hoof 0 006 @ 02153445 n 0000 #p 02370806 n 0000 %p 02154133 n 0000 ~ 02154264 n 0000 ~ 02159117 n 0000 %p 05577654 n 0000 | the foot of an ungulate mammal -02154133 05 n 01 hoof 1 002 @ 05581514 n 0000 #p 02153959 n 0000 | the horny covering of the end of the foot in ungulate mammals -02154264 05 n 02 cloven_foot 0 cloven_hoof 0 001 @ 02153959 n 0000 | a hoof divided into two parts at its distal extremity (as of ruminants or swine) -02154416 05 n 01 bird's_foot 0 008 @ 02153445 n 0000 #p 01503061 n 0000 ~ 02154742 n 0000 ~ 02154824 n 0000 ~ 02155014 n 0000 ~ 02155206 n 0000 ~ 02155313 n 0000 %p 02156413 n 0000 | the foot of a bird -02154620 05 n 01 webfoot 0 002 @ 02153445 n 0000 %p 01898328 n 0000 | a foot having the toes connected by folds of skin -02154742 05 n 01 claw 1 002 @ 02154416 n 0000 + 01306654 v 0101 | a bird's foot -02154824 05 n 01 zygodactyl_foot 0 002 @ 02154416 n 0000 ! 02155014 n 0101 | a bird's foot having the first and fourth toes of each foot directed backward and the second and third forward -02155014 05 n 01 heterodactyl_foot 0 002 @ 02154416 n 0000 ! 02154824 n 0101 | a bird's foot having the first and second toes of each foot directed backward and the third and fourth forward -02155206 05 n 01 webbed_foot 0 001 @ 02154416 n 0000 | a bird's foot with folds of skin between the toes -02155313 05 n 01 lobate_foot 0 001 @ 02154416 n 0000 | a bird's foot having separate toes each with membranous flaps along the sides -02155448 05 n 03 calyculus 0 caliculus 0 calycle 0 004 @ 05225602 n 0000 + 02676046 a 0101 + 02676046 a 0102 ~ 02155678 n 0000 | a small cup-shaped structure (as a taste bud or optic cup or cavity of a coral containing a polyp) -02155678 05 n 02 optic_cup 0 eyecup 0 002 @ 02155448 n 0000 ;c 06071426 n 0000 | (embryology) a two-walled cuplike depression that develops into the pigmented and sensory layers of the retina -02155872 05 n 01 tooth 2 002 @ 05225602 n 0000 ~ 02156031 n 0000 | toothlike structure in invertebrates found in the mouth or alimentary canal or on a shell -02156031 05 n 01 denticle 0 001 @ 02155872 n 0000 | small pointed ridge on the exoskeleton of an arthropod -02156140 05 n 01 claw 0 004 @ 05581514 n 0000 + 01306654 v 0101 ~ 02156320 n 0000 ~ 02156413 n 0000 | sharp curved horny process on the toe of a bird or some mammals or reptiles -02156320 05 n 01 bear_claw 0 001 @ 02156140 n 0000 | claw of a bear; often used in jewelry -02156413 05 n 01 talon 0 002 @ 02156140 n 0000 #p 02154416 n 0000 | a sharp hooked claw especially on a bird of prey -02156532 05 n 04 claw 2 chela 0 nipper 0 pincer 0 004 @ 05559908 n 0000 #p 01974773 n 0000 + 01456771 v 0305 + 01306654 v 0101 | a grasping structure on the limb of a crustacean or other arthropods -02156732 05 n 01 tetrapod 0 002 @ 01471682 n 0000 ~ 02156871 n 0000 | a vertebrate animal having four feet or legs or leglike appendages -02156871 05 n 01 quadruped 0 012 @ 02156732 n 0000 + 00241816 a 0101 %p 02439728 n 0000 %p 02439829 n 0000 %p 02463403 n 0000 %p 02463611 n 0000 %p 02463810 n 0000 %p 02464223 n 0000 %p 02464327 n 0000 %p 02464626 n 0000 %p 02464965 n 0000 -c 05078450 n 0000 | an animal especially a mammal having four limbs specialized for walking -02157206 05 n 01 hexapod 0 001 @ 00015388 n 0000 | an animal having six feet -02157285 05 n 01 biped 0 004 @ 00015388 n 0000 + 00241672 a 0102 + 00241672 a 0101 %p 02464327 n 0000 | an animal with two feet -02157415 05 n 01 belly 1 002 @ 01899367 n 0000 #p 01471682 n 0000 | the underpart of the body of certain vertebrates such as snakes or fish -02157557 05 n 01 tail 0 013 @ 05470189 n 0000 #p 01471682 n 0000 + 01556178 v 0102 ~ 01754737 n 0000 ~ 02157954 n 0000 ~ 02158066 n 0000 ~ 02158213 n 0000 ~ 02158354 n 0000 ~ 02158494 n 0000 ~ 02158619 n 0000 ~ 02158739 n 0000 ~ 02158846 n 0000 %p 02158972 n 0000 | the posterior part of the body of a vertebrate especially when elongated and extending beyond the trunk or main part of the body -02157954 05 n 01 brush 0 001 @ 02157557 n 0000 | a bushy tail or part of a bushy tail (especially of the fox) -02158066 05 n 03 bobtail 0 bob 0 dock 1 003 @ 02157557 n 0000 + 01556178 v 0301 + 01556178 v 0203 | a short or shortened tail of certain animals -02158213 05 n 01 caudal_appendage 0 002 @ 02157557 n 0000 #p 01471682 n 0000 | tail especially of a mammal posterior to and above the anus -02158354 05 n 01 uropygium 0 002 @ 02157557 n 0000 #p 01503061 n 0000 | posterior part of a bird's body from which the tail feathers grow -02158494 05 n 01 oxtail 0 002 @ 02157557 n 0000 #s 07586485 n 0000 | the skinned tail of cattle; used especially for soups -02158619 05 n 01 fluke 1 002 @ 02157557 n 0000 #p 02062430 n 0000 | either of the two lobes of the tail of a cetacean -02158739 05 n 01 scut 0 003 @ 02157557 n 0000 #p 02430045 n 0000 #p 02324045 n 0000 | a short erect tail -02158846 05 n 01 flag 0 003 @ 02157557 n 0000 #p 02430045 n 0000 #p 02084071 n 0000 | a conspicuously marked or shaped tail -02158972 05 n 01 dock 0 002 @ 05220461 n 0000 #p 02157557 n 0000 | the solid bony part of the tail of an animal as distinguished from the hair -02159117 05 n 01 horse's_foot 0 005 @ 02153959 n 0000 #p 02374451 n 0000 %p 02462066 n 0000 %p 02462349 n 0000 %p 02462464 n 0000 | the hoof of a horse -02159271 05 n 04 Insecta 0 class_Insecta 0 Hexapoda 0 class_Hexapoda 0 029 @ 08103777 n 0000 #m 01767199 n 0000 %m 02161737 n 0000 %m 02161944 n 0000 %m 02163144 n 0000 %m 02163616 n 0000 %m 02163982 n 0000 %m 02183353 n 0000 %m 02183697 n 0000 %m 02185337 n 0000 %m 02185973 n 0000 %m 02188065 n 0000 %m 02205896 n 0000 %m 02222718 n 0000 %m 02225959 n 0000 %m 02230782 n 0000 %m 02232408 n 0000 %m 02232606 n 0000 %m 02236495 n 0000 %m 02260183 n 0000 %m 02261883 n 0000 %m 02262679 n 0000 %m 02263038 n 0000 %m 02267975 n 0000 %m 02269015 n 0000 %m 02269829 n 0000 %m 02271427 n 0000 %m 02272707 n 0000 %m 02273545 n 0000 | insects; about five-sixths of all known animal species -02159955 05 n 01 insect 0 051 @ 01767661 n 0000 #m 01767199 n 0000 #m 07996149 n 0000 + 02832164 a 0101 -c 02694784 a 0101 %p 01903631 n 0000 %p 02151625 n 0000 %p 02151940 n 0000 ~ 02160947 n 0000 ~ 02161078 n 0000 ~ 02161225 n 0000 ~ 02161338 n 0000 ~ 02161457 n 0000 ~ 02161588 n 0000 ~ 02162235 n 0000 ~ 02163297 n 0000 ~ 02163763 n 0000 ~ 02164464 n 0000 ~ 02183507 n 0000 ~ 02183857 n 0000 ~ 02185481 n 0000 ~ 02186153 n 0000 ~ 02188699 n 0000 ~ 02198129 n 0000 ~ 02206270 n 0000 ~ 02207449 n 0000 ~ 02223266 n 0000 ~ 02226183 n 0000 ~ 02231052 n 0000 ~ 02232951 n 0000 ~ 02236355 n 0000 ~ 02236896 n 0000 ~ 02241569 n 0000 ~ 02246011 n 0000 ~ 02260421 n 0000 ~ 02262178 n 0000 ~ 02262803 n 0000 ~ 02263378 n 0000 ~ 02268148 n 0000 ~ 02269196 n 0000 ~ 02270011 n 0000 ~ 02271570 n 0000 ~ 02272871 n 0000 ~ 02274024 n 0000 ~ 02312427 n 0000 ~ 02312912 n 0000 ~ 02313008 n 0000 %p 02467884 n 0000 %p 02665543 n 0000 %p 05277100 n 0000 -c 13493692 n 0000 | small air-breathing arthropod -02160947 05 n 01 social_insect 0 001 @ 02159955 n 0000 | an insect that lives in a colony with other insects of the same species -02161078 05 n 02 ephemeron 0 ephemeral 0 001 @ 02159955 n 0000 | anything short-lived, as an insect that lives only for a day in its winged form -02161225 05 n 02 holometabola 0 metabola 0 001 @ 02159955 n 0000 | insects that undergo complete metamorphosis -02161338 05 n 01 defoliator 0 002 @ 02159955 n 0000 + 00195813 v 0101 | an insect that strips the leaves from plants -02161457 05 n 01 pollinator 0 002 @ 02159955 n 0000 + 00054059 v 0101 | an insect that carries pollen from one flower to another -02161588 05 n 01 gallfly 0 001 @ 02159955 n 0000 | any of various insects that deposit their eggs in plants causing galls in which the larvae feed -02161737 05 n 02 Mantophasmatodea 0 order_mantophasmatodea 0 002 @ 01342529 n 0000 #m 02159271 n 0000 | an order of insect identified in 2002 in a 45 million year old piece of amber from the Baltic region -02161944 05 n 02 Mecoptera 0 order_Mecoptera 0 006 @ 01342529 n 0000 #m 02159271 n 0000 + 02760011 a 0101 %m 02162235 n 0000 %m 02162404 n 0000 %m 02162831 n 0000 | an order of carnivorous insects usually having long membranous wings and long beaklike heads with chewing mouths at the tip -02162235 05 n 01 mecopteran 0 004 @ 02159955 n 0000 #m 02161944 n 0000 ~ 02162561 n 0000 ~ 02163008 n 0000 | any of various carnivorous insects of the order Mecoptera -02162404 05 n 02 Panorpidae 0 family_Panorpidae 0 003 @ 08107499 n 0000 #m 02161944 n 0000 %m 02162561 n 0000 | a family of insects of the order Mecoptera -02162561 05 n 01 scorpion_fly 0 002 @ 02162235 n 0000 #m 02162404 n 0000 | any of various mecopterous insects of the family Panorpidae of the northern hemisphere having a long beak and long antennae; males have a tail like that of a scorpion except it is not venomous -02162831 05 n 02 Bittacidae 0 family_Bittacidae 0 003 @ 08107499 n 0000 #m 02161944 n 0000 %m 02163008 n 0000 | a family of predacious tropical insects of the order Mecoptera -02163008 05 n 01 hanging_fly 0 002 @ 02162235 n 0000 #m 02162831 n 0000 | any of various mecopterous insects of the family Bittacidae -02163144 05 n 02 Collembola 0 order_Collembola 0 003 @ 01342529 n 0000 #m 02159271 n 0000 %m 02163297 n 0000 | minute wingless arthropods: springtails -02163297 05 n 02 collembolan 0 springtail 0 002 @ 02159955 n 0000 #m 02163144 n 0000 | any of numerous minute wingless primitive insects possessing a special abdominal appendage that allows the characteristic nearly perpetual springing pattern; found in soil rich in organic debris or on the surface of snow or water -02163616 05 n 02 Protura 0 order_Protura 0 003 @ 01342529 n 0000 #m 02159271 n 0000 %m 02163763 n 0000 | minute wingless arthropods: telsontails -02163763 05 n 02 proturan 0 telsontail 0 002 @ 02159955 n 0000 #m 02163616 n 0000 | any of several minute primitive wingless and eyeless insects having a cone-shaped head; inhabit damp soil or decaying organic matter -02163982 05 n 02 Coleoptera 0 order_Coleoptera 0 022 @ 01342529 n 0000 #m 02159271 n 0000 %m 02164464 n 0000 %m 02164973 n 0000 %m 02165247 n 0000 %m 02166986 n 0000 %m 02168121 n 0000 %m 02168542 n 0000 %m 02169345 n 0000 %m 02170269 n 0000 %m 02170848 n 0000 %m 02171254 n 0000 %m 02176073 n 0000 %m 02177068 n 0000 %m 02177376 n 0000 %m 02177644 n 0000 %m 02178244 n 0000 %m 02178886 n 0000 %m 02179429 n 0000 %m 02180742 n 0000 %m 02181013 n 0000 %m 02181863 n 0000 | beetles -02164464 05 n 01 beetle 0 020 @ 02159955 n 0000 #m 02163982 n 0000 ~ 02165105 n 0000 ~ 02165456 n 0000 ~ 02167151 n 0000 ~ 02168245 n 0000 ~ 02168699 n 0000 ~ 02169497 n 0000 ~ 02170400 n 0000 ~ 02170993 n 0000 ~ 02171453 n 0000 ~ 02176261 n 0000 ~ 02177196 n 0000 ~ 02177506 n 0000 ~ 02177775 n 0000 ~ 02177972 n 0000 ~ 02179012 n 0000 ~ 02180233 n 0000 ~ 02180875 n 0000 ~ 02183096 n 0000 | insect having biting mouthparts and front wings modified to form horny covers overlying the membranous rear wings -02164973 05 n 02 Cicindelidae 0 family_Cicindelidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02165105 n 0000 | tiger beetles -02165105 05 n 01 tiger_beetle 0 002 @ 02164464 n 0000 #m 02164973 n 0000 | active usually bright-colored beetle that preys on other insects -02165247 05 n 02 Coccinellidae 0 family_Coccinellidae 0 007 @ 01759182 n 0000 #m 02163982 n 0000 %m 02165456 n 0000 %m 02165754 n 0000 %m 02166024 n 0000 %m 02166436 n 0000 %m 02166674 n 0000 | the ladybugs -02165456 05 n 05 ladybug 0 ladybeetle 0 lady_beetle 0 ladybird 0 ladybird_beetle 0 006 @ 02164464 n 0000 #m 02165247 n 0000 ~ 02165877 n 0000 ~ 02166229 n 0000 ~ 02166567 n 0000 ~ 02166826 n 0000 | small round bright-colored and spotted beetle that usually feeds on aphids and other insect pests -02165754 05 n 02 Adalia 0 genus_Adalia 0 003 @ 01762525 n 0000 #m 02165247 n 0000 %m 02165877 n 0000 | genus of ladybugs -02165877 05 n 02 two-spotted_ladybug 0 Adalia_bipunctata 0 002 @ 02165456 n 0000 #m 02165754 n 0000 | red ladybug with a black spot on each wing -02166024 05 n 02 Epilachna 0 genus_Epilachna 0 003 @ 01762525 n 0000 #m 02165247 n 0000 %m 02166229 n 0000 | genus of ladybugs native to Mexico and Central America; both larvae and adults feed on plants -02166229 05 n 03 Mexican_bean_beetle 0 bean_beetle 0 Epilachna_varivestis 0 002 @ 02165456 n 0000 #m 02166024 n 0000 | introduced into the United States from Mexico; feeds on the foliage of the bean plant -02166436 05 n 02 Hippodamia 0 genus_Hippodamia 0 003 @ 01762525 n 0000 #m 02165247 n 0000 %m 02166567 n 0000 | genus of ladybugs -02166567 05 n 01 Hippodamia_convergens 0 002 @ 02165456 n 0000 #m 02166436 n 0000 | a variety of ladybug -02166674 05 n 03 Rodolia 0 genus_Rodolia 0 genus_Vedalia 0 003 @ 01762525 n 0000 #m 02165247 n 0000 %m 02166826 n 0000 | genus of Australian ladybugs -02166826 05 n 02 vedalia 0 Rodolia_cardinalis 0 002 @ 02165456 n 0000 #m 02166674 n 0000 | native to Australia; introduced elsewhere to control scale insects -02166986 05 n 02 Carabidae 0 family_Carabidae 0 005 @ 01759182 n 0000 #m 02163982 n 0000 %m 02167151 n 0000 %m 02167375 n 0000 %m 02167645 n 0000 | ground beetles -02167151 05 n 02 ground_beetle 0 carabid_beetle 0 004 @ 02164464 n 0000 #m 02166986 n 0000 ~ 02167505 n 0000 ~ 02167820 n 0000 | predacious shining black or metallic terrestrial beetle that destroys many injurious insects -02167375 05 n 02 Brachinus 0 genus_Brachinus 0 003 @ 01762525 n 0000 #m 02166986 n 0000 %m 02167505 n 0000 | bombardier beetles -02167505 05 n 01 bombardier_beetle 0 002 @ 02167151 n 0000 #m 02167375 n 0000 | beetle that ejects audibly a pungent vapor when disturbed -02167645 05 n 01 genus_Calosoma 0 003 @ 01762525 n 0000 #m 02166986 n 0000 %m 02167820 n 0000 | genus of large predaceous ground beetles that feed on injurious caterpillars -02167820 05 n 01 calosoma 0 003 @ 02167151 n 0000 #m 02167645 n 0000 ~ 02167944 n 0000 | any beetle of the genus Calosoma -02167944 05 n 03 searcher 0 searcher_beetle 0 Calosoma_scrutator 0 001 @ 02167820 n 0000 | large metallic blue-green beetle that preys on caterpillars; found in North America -02168121 05 n 02 Lampyridae 0 family_Lampyridae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02168245 n 0000 | fireflies -02168245 05 n 02 firefly 1 lightning_bug 0 003 @ 02164464 n 0000 #m 02168121 n 0000 ~ 02168427 n 0000 | nocturnal beetle common in warm regions having luminescent abdominal organs -02168427 05 n 01 glowworm 0 001 @ 02168245 n 0000 | the luminous larva or wingless grub-like female of a firefly -02168542 05 n 02 Cerambycidae 0 family_Cerambycidae 0 004 @ 01759182 n 0000 #m 02163982 n 0000 %m 02168699 n 0000 %m 02168876 n 0000 | long-horned beetles -02168699 05 n 03 long-horned_beetle 0 longicorn 0 longicorn_beetle 0 003 @ 02164464 n 0000 #m 02168542 n 0000 ~ 02169023 n 0000 | long-bodied beetle having very long antennae -02168876 05 n 02 Monochamus 0 genus_Monochamus 0 004 @ 01762525 n 0000 #m 02168542 n 0000 %m 02169023 n 0000 %m 02169218 n 0000 | sawyer beetles -02169023 05 n 02 sawyer 0 sawyer_beetle 0 003 @ 02168699 n 0000 #m 02168876 n 0000 ~ 02169218 n 0000 | any of several beetles whose larvae bore holes in dead or dying trees especially conifers -02169218 05 n 01 pine_sawyer 0 002 @ 02169023 n 0000 #m 02168876 n 0000 | large beetle whose larvae bore holes in pine trees -02169345 05 n 02 Chrysomelidae 0 family_Chrysomelidae 0 004 @ 01759182 n 0000 #m 02163982 n 0000 %m 02169497 n 0000 %m 02169833 n 0000 | leaf beetles -02169497 05 n 02 leaf_beetle 0 chrysomelid 0 004 @ 02164464 n 0000 #m 02169345 n 0000 ~ 02169705 n 0000 ~ 02169974 n 0000 | brightly colored beetle that feeds on plant leaves; larvae infest roots and stems -02169705 05 n 01 flea_beetle 0 001 @ 02169497 n 0000 | any small leaf beetle having enlarged hind legs and capable of jumping -02169833 05 n 02 Leptinotarsa 0 genus_Leptinotarsa 0 003 @ 01762525 n 0000 #m 02169345 n 0000 %m 02169974 n 0000 | Colorado potato beetles -02169974 05 n 05 Colorado_potato_beetle 0 Colorado_beetle 0 potato_bug 0 potato_beetle 0 Leptinotarsa_decemlineata 0 002 @ 02169497 n 0000 #m 02169833 n 0000 | black-and-yellow beetle that feeds in adult and larval stages on potato leaves; originally of eastern Rocky Mountains; now worldwide -02170269 05 n 02 Dermestidae 0 family_Dermestidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02170400 n 0000 | carpet beetles -02170400 05 n 02 carpet_beetle 0 carpet_bug 0 004 @ 02164464 n 0000 #m 02170269 n 0000 ~ 02170599 n 0000 ~ 02170738 n 0000 | small beetle whose larvae are household pests feeding on woolen fabrics -02170599 05 n 02 buffalo_carpet_beetle 0 Anthrenus_scrophulariae 0 001 @ 02170400 n 0000 | a small black and red and white carpet beetle -02170738 05 n 01 black_carpet_beetle 0 001 @ 02170400 n 0000 | a carpet beetle that is solid black in color -02170848 05 n 02 Cleridae 0 family_Cleridae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02170993 n 0000 | beetles that prey on other insects -02170993 05 n 02 clerid_beetle 0 clerid 0 003 @ 02164464 n 0000 #m 02170848 n 0000 ~ 02171164 n 0000 | predacious on other insects; usually brightly colored or metallic -02171164 05 n 01 bee_beetle 0 001 @ 02170993 n 0000 | European beetle; infests beehives -02171254 05 n 02 Lamellicornia 0 superfamily_Lamellicornia 0 005 @ 01759182 n 0000 #m 02163982 n 0000 %m 02171453 n 0000 %m 02171633 n 0000 %m 02175791 n 0000 | scarabaeid beetles and stag beetles -02171453 05 n 01 lamellicorn_beetle 0 004 @ 02164464 n 0000 #m 02171254 n 0000 ~ 02171869 n 0000 ~ 02175916 n 0000 | beetle having antennae with hard platelike terminal segments -02171633 05 n 02 Scarabaeidae 0 family_Scarabaeidae 0 008 @ 01759182 n 0000 #m 02171254 n 0000 %m 02171869 n 0000 %m 02172387 n 0000 %m 02173240 n 0000 %m 02173571 n 0000 %m 02174153 n 0000 %m 02175263 n 0000 | scarab or dung beetles -02171869 05 n 03 scarabaeid_beetle 0 scarabaeid 0 scarabaean 0 009 @ 02171453 n 0000 #m 02171633 n 0000 ~ 02172182 n 0000 ~ 02172870 n 0000 ~ 02173373 n 0000 ~ 02173784 n 0000 ~ 02174001 n 0000 ~ 02174355 n 0000 ~ 02175569 n 0000 | any of numerous species of stout-bodied beetles having heads with horny spikes -02172182 05 n 01 dung_beetle 0 004 @ 02171869 n 0000 ~ 02172518 n 0000 ~ 02172678 n 0000 ~ 02172761 n 0000 | any of numerous beetles that roll balls of dung on which they feed and in which they lay eggs -02172387 05 n 01 genus_Scarabaeus 0 003 @ 01762525 n 0000 #m 02171633 n 0000 %m 02172518 n 0000 | type genus of the Scarabaeidae -02172518 05 n 03 scarab 0 scarabaeus 0 Scarabaeus_sacer 0 002 @ 02172182 n 0000 #m 02172387 n 0000 | scarabaeid beetle considered divine by ancient Egyptians -02172678 05 n 01 tumblebug 0 001 @ 02172182 n 0000 | any of various dung beetles -02172761 05 n 01 dorbeetle 0 001 @ 02172182 n 0000 | Old World dung beetle that flies with a droning sound -02172870 05 n 04 June_beetle 0 June_bug 0 May_bug 2 May_beetle 2 002 @ 02171869 n 0000 ~ 02173113 n 0000 | any of various large usually brown North American leaf-eating beetles common in late spring; the larvae feed on roots of grasses etc. -02173113 05 n 02 green_June_beetle 0 figeater 0 001 @ 02172870 n 0000 | large greenish June beetle of southern United States -02173240 05 n 02 Popillia 0 genus_Popillia 0 003 @ 01762525 n 0000 #m 02171633 n 0000 %m 02173373 n 0000 | a genus of Scarabaeidae -02173373 05 n 02 Japanese_beetle 0 Popillia_japonica 0 002 @ 02171869 n 0000 #m 02173240 n 0000 | small metallic green and brown beetle native to eastern Asia; serious plant pest in North America -02173571 05 n 02 Anomala 0 genus_Anomala 0 003 @ 01762525 n 0000 #m 02171633 n 0000 %m 02173784 n 0000 | genus of beetles whose grubs feed mainly on roots of plants; includes several pests of cultivated grasses -02173784 05 n 03 Oriental_beetle 0 Asiatic_beetle 0 Anomala_orientalis 0 002 @ 02171869 n 0000 #m 02173571 n 0000 | introduced into United States from the Orient; larvae feed on roots of sugarcane and other grasses -02174001 05 n 01 rhinoceros_beetle 0 001 @ 02171869 n 0000 | any of various large chiefly tropical beetles having horns on the head; pest on coconuts -02174153 05 n 02 Melolonthidae 0 subfamily_Melolonthidae 0 004 @ 01759182 n 0000 #m 02171633 n 0000 %m 02174521 n 0000 %m 02174870 n 0000 | considered a separate family in some classification systems -02174355 05 n 01 melolonthid_beetle 0 003 @ 02171869 n 0000 ~ 02174659 n 0000 ~ 02175014 n 0000 | any of various beetles of the family (or subfamily) Melolonthidae -02174521 05 n 02 Melolontha 0 genus_Melolontha 0 003 @ 01762525 n 0000 #m 02174153 n 0000 %m 02174659 n 0000 | a genus of Melolonthidae -02174659 05 n 04 cockchafer 0 May_bug 1 May_beetle 1 Melolontha_melolontha 0 002 @ 02174355 n 0000 #m 02174521 n 0000 | any of various large European beetles destructive to vegetation as both larvae and adult -02174870 05 n 02 Macrodactylus 0 genus_Macrodactylus 0 003 @ 01762525 n 0000 #m 02174153 n 0000 %m 02175014 n 0000 | a genus of Melolonthidae -02175014 05 n 03 rose_chafer 0 rose_bug 0 Macrodactylus_subspinosus 0 002 @ 02174355 n 0000 #m 02174870 n 0000 | common North American beetle: larvae feed on roots and adults on leaves and flowers of e.g. rose bushes or apple trees or grape vines -02175263 05 n 02 Cetoniidae 0 subfamily_Cetoniidae 0 003 @ 01759182 n 0000 #m 02171633 n 0000 %m 02175440 n 0000 | considered a separate family in some classification systems -02175440 05 n 02 Cetonia 0 genus_Cetonia 0 003 @ 01762525 n 0000 #m 02175263 n 0000 %m 02175569 n 0000 | a genus of Cetoniidae -02175569 05 n 03 rose_chafer 2 rose_beetle 0 Cetonia_aurata 0 002 @ 02171869 n 0000 #m 02175440 n 0000 | a common metallic green European beetle: larvae feed on plant roots and adults on leaves and flowers of e.g. roses -02175791 05 n 02 Lucanidae 0 family_Lucanidae 0 003 @ 01759182 n 0000 #m 02171254 n 0000 %m 02175916 n 0000 | stag beetles -02175916 05 n 01 stag_beetle 0 002 @ 02171453 n 0000 #m 02175791 n 0000 | a kind of lamellicorn beetle; the male has branched mandibles resembling antlers -02176073 05 n 02 Elateridae 0 family_Elateridae 0 005 @ 01759182 n 0000 #m 02163982 n 0000 %m 02176261 n 0000 %m 02176611 n 0000 %m 02176916 n 0000 | click beetles and certain fireflies -02176261 05 n 03 elaterid_beetle 0 elater 0 elaterid 0 004 @ 02164464 n 0000 #m 02176073 n 0000 ~ 02176439 n 0000 ~ 02176747 n 0000 | any of various widely distributed beetles -02176439 05 n 03 click_beetle 0 skipjack 3 snapping_beetle 0 001 @ 02176261 n 0000 | able to right itself when on its back by flipping into the air with a clicking sound -02176611 05 n 02 Pyrophorus 0 genus_Pyrophorus 0 003 @ 01762525 n 0000 #m 02176073 n 0000 %m 02176747 n 0000 | tropical click beetles -02176747 05 n 03 firefly 2 fire_beetle 0 Pyrophorus_noctiluca 0 002 @ 02176261 n 0000 #m 02176611 n 0000 | tropical American click beetle having bright luminous spots -02176916 05 n 01 wireworm 0 002 @ 02311060 n 0000 #m 02176073 n 0000 | wormlike larva of various elaterid beetles; feeds on roots of many crop plants -02177068 05 n 02 Dytiscidae 0 family_Dytiscidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02177196 n 0000 | water beetles -02177196 05 n 01 water_beetle 0 002 @ 02164464 n 0000 #m 02177068 n 0000 | any of numerous aquatic beetles usually having a smooth oval body and flattened hind legs for swimming -02177376 05 n 02 Gyrinidae 0 family_Gyrinidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02177506 n 0000 | whirligig beetles -02177506 05 n 01 whirligig_beetle 0 002 @ 02164464 n 0000 #m 02177376 n 0000 | aquatic beetle that circles rapidly on the water surface -02177644 05 n 02 Anobiidae 0 family_Anobiidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02177775 n 0000 | deathwatch beetles -02177775 05 n 03 deathwatch_beetle 0 deathwatch 1 Xestobium_rufovillosum 0 002 @ 02164464 n 0000 #m 02177644 n 0000 | bores through wood making a ticking sound popularly thought to presage death -02177972 05 n 01 weevil 0 006 @ 02164464 n 0000 ~ 02178411 n 0000 ~ 02178717 n 0000 ~ 02181235 n 0000 ~ 02182045 n 0000 ~ 02182930 n 0000 | any of several families of mostly small beetles that feed on plants and plant products; especially snout beetles and seed beetles -02178244 05 n 02 Curculionidae 0 family_Curculionidae 0 004 @ 01759182 n 0000 #m 02163982 n 0000 %m 02178411 n 0000 %m 02178563 n 0000 | true weevils: snout beetles -02178411 05 n 01 snout_beetle 0 002 @ 02177972 n 0000 #m 02178244 n 0000 | small weevil having a prolonged snout; destructive to e.g. grains and nuts -02178563 05 n 02 Anthonomus 0 genus_Anthonomus 0 003 @ 01762525 n 0000 #m 02178244 n 0000 %m 02178717 n 0000 | weevils destructive of cultivated plants -02178717 05 n 02 boll_weevil 0 Anthonomus_grandis 0 002 @ 02177972 n 0000 #m 02178563 n 0000 | greyish weevil that lays its eggs in cotton bolls destroying the cotton -02178886 05 n 02 Meloidae 0 family_Meloidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02179012 n 0000 | blister beetles -02179012 05 n 02 blister_beetle 0 meloid 0 004 @ 02164464 n 0000 #m 02178886 n 0000 ~ 02179192 n 0000 ~ 02179340 n 0000 | beetle that produces a secretion that blisters the skin -02179192 05 n 01 oil_beetle 0 001 @ 02179012 n 0000 | any of various beetles that exude an oily substance from the leg joints that deters enemies -02179340 05 n 01 Spanish_fly 0 001 @ 02179012 n 0000 | green beetle of southern Europe -02179429 05 n 04 Scolytidae 0 family_Scolytidae 0 Ipidae 0 family_Ipidae 0 005 @ 01759182 n 0000 #m 02163982 n 0000 %m 02179714 n 0000 %m 02180046 n 0000 %m 02180233 n 0000 | large family of bark-boring or wood-boring short-beaked beetles; very destructive to forest and fruit trees -02179714 05 n 02 Scolytus 0 genus_Scolytus 0 003 @ 01762525 n 0000 #m 02179429 n 0000 %m 02179891 n 0000 | type genus of the Scolytidae comprising numerous small bark beetles -02179891 05 n 02 Dutch-elm_beetle 0 Scolytus_multistriatus 0 002 @ 02180233 n 0000 #m 02179714 n 0000 | a vector of the fungus causing Dutch elm disease -02180046 05 n 02 Dendroctonus 0 genus_Dendroctonus 0 003 @ 01762525 n 0000 #m 02179429 n 0000 %m 02180427 n 0000 | genus of small bark beetles destructive especially to mature conifers -02180233 05 n 01 bark_beetle 0 004 @ 02164464 n 0000 #m 02179429 n 0000 ~ 02179891 n 0000 ~ 02180427 n 0000 | small beetle that bores tunnels in the bark and wood of trees; related to weevils -02180427 05 n 02 spruce_bark_beetle 0 Dendroctonus_rufipennis 0 002 @ 02180233 n 0000 #m 02180046 n 0000 | small beetle that likes to bore through the bark of spruce trees and eat the cambium which eventually kills the tree; "the spruce bark beetle is the major tree-killing insect pest of Alaska spruce forests" -02180742 05 n 02 Staphylinidae 0 family_Staphylinidae 0 003 @ 01759182 n 0000 #m 02163982 n 0000 %m 02180875 n 0000 | rove beetles -02180875 05 n 01 rove_beetle 0 002 @ 02164464 n 0000 #m 02180742 n 0000 | active beetle typically having predatory or scavenging habits -02181013 05 n 02 Tenebrionidae 0 family_Tenebrionidae 0 005 @ 01759182 n 0000 #m 02163982 n 0000 %m 02181235 n 0000 %m 02181477 n 0000 %m 02181599 n 0000 | a family of arthropods including darkling beetles and mealworms -02181235 05 n 03 darkling_beetle 0 darkling_groung_beetle 0 tenebrionid 0 003 @ 02177972 n 0000 #m 02181013 n 0000 ~ 02181724 n 0000 | sluggish hard-bodied black terrestrial weevil whose larvae feed on e.g. decaying plant material or grain -02181477 05 n 01 mealworm 0 002 @ 02311060 n 0000 #m 02181013 n 0000 | the larva of beetles of the family Tenebrionidae -02181599 05 n 02 Tribolium 0 genus_Tribolium 0 003 @ 01762525 n 0000 #m 02181013 n 0000 %m 02181724 n 0000 | flour beetles -02181724 05 n 02 flour_beetle 0 flour_weevil 0 002 @ 02181235 n 0000 #m 02181599 n 0000 | an insect that infests flour and stored grains -02181863 05 n 02 Bruchidae 0 family_Bruchidae 0 006 @ 01759182 n 0000 #m 02163982 n 0000 %m 02182045 n 0000 %m 02182220 n 0000 %m 02182498 n 0000 %m 02182796 n 0000 | seed beetles -02182045 05 n 02 seed_beetle 0 seed_weevil 0 004 @ 02177972 n 0000 #m 02181863 n 0000 ~ 02182355 n 0000 ~ 02182642 n 0000 | a small beetle that infests the seeds of legumes -02182220 05 n 02 Bruchus 0 genus_Bruchus 0 003 @ 01762525 n 0000 #m 02181863 n 0000 %m 02182355 n 0000 | type genus of the Bruchidae -02182355 05 n 02 pea_weevil 0 Bruchus_pisorum 0 002 @ 02182045 n 0000 #m 02182220 n 0000 | larvae live in and feed on seeds of the pea plant -02182498 05 n 02 Acanthoscelides 0 genus_Acanthoscelides 0 003 @ 01762525 n 0000 #m 02181863 n 0000 %m 02182642 n 0000 | a genus of Bruchidae -02182642 05 n 02 bean_weevil 0 Acanthoscelides_obtectus 0 002 @ 02182045 n 0000 #m 02182498 n 0000 | larvae live in and feed on growing or stored beans -02182796 05 n 02 Sitophylus 0 genus_Sitophylus 0 003 @ 01762525 n 0000 #m 02181863 n 0000 %m 02182930 n 0000 | a genus of Bruchidae -02182930 05 n 03 rice_weevil 0 black_weevil 0 Sitophylus_oryzae 0 002 @ 02177972 n 0000 #m 02182796 n 0000 | brown weevil that infests stored grain especially rice -02183096 05 n 02 Asian_longhorned_beetle 0 Anoplophora_glabripennis 0 001 @ 02164464 n 0000 | a beetle from China that has been found in the United States and is a threat to hardwood trees; lives inside the tree; no natural predators in the United States -02183353 05 n 04 Embioptera 0 order_Embioptera 0 Embiodea 0 order_Embiodea 0 003 @ 01342529 n 0000 #m 02159271 n 0000 %m 02183507 n 0000 | web spinners -02183507 05 n 01 web_spinner 0 002 @ 02159955 n 0000 #m 02183353 n 0000 | any of a small order of slender typically tropical insects that nest in colonies in silken tunnels that they spin -02183697 05 n 02 Anoplura 0 order_Anoplura 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02183857 n 0000 %m 02184114 n 0000 %m 02184881 n 0000 | sucking lice -02183857 05 n 02 louse 1 sucking_louse 0 007 @ 02159955 n 0000 #m 02183697 n 0000 + 00422374 a 0101 ~ 02184473 n 0000 ~ 02184589 n 0000 ~ 02184720 n 0000 ~ 02185167 n 0000 | wingless usually flattened bloodsucking insect parasitic on warm-blooded animals -02184114 05 n 02 Pediculidae 0 family_Pediculidae 0 003 @ 01759182 n 0000 #m 02183697 n 0000 %m 02184270 n 0000 | true lice: human lice and related forms -02184270 05 n 02 Pediculus 0 genus_Pediculus 0 005 @ 01762525 n 0000 #m 02184114 n 0000 %m 02184473 n 0000 %m 02184589 n 0000 %m 02184720 n 0000 | type genus of Pediculidae: true lice infecting humans -02184473 05 n 02 common_louse 0 Pediculus_humanus 0 002 @ 02183857 n 0000 #m 02184270 n 0000 | head or body louse -02184589 05 n 02 head_louse 0 Pediculus_capitis 0 002 @ 02183857 n 0000 #m 02184270 n 0000 | infests the head and body of humans -02184720 05 n 03 body_louse 0 cootie 0 Pediculus_corporis 0 002 @ 02183857 n 0000 #m 02184270 n 0000 | a parasitic louse that infests the body of human beings -02184881 05 n 02 Phthiriidae 0 family_Phthiriidae 0 003 @ 01759182 n 0000 #m 02183697 n 0000 %m 02185007 n 0000 | crab lice -02185007 05 n 04 Phthirius 0 genus_Phthirius 0 Phthirus 0 genus_Phthirus 0 003 @ 01762525 n 0000 #m 02184881 n 0000 %m 02185167 n 0000 | true lice: crab lice -02185167 05 n 04 crab_louse 0 pubic_louse 0 crab 1 Phthirius_pubis 0 002 @ 02183857 n 0000 #m 02185007 n 0000 | a louse that infests the pubic region of the human body -02185337 05 n 02 Mallophaga 0 order_Mallophaga 0 004 @ 01342529 n 0000 #m 02159271 n 0000 %m 02185481 n 0000 %m 02185694 n 0000 | biting lice -02185481 05 n 03 bird_louse 0 biting_louse 0 louse 3 004 @ 02159955 n 0000 #m 02185337 n 0000 + 00422374 a 0301 ~ 02185814 n 0000 | wingless insect with mouth parts adapted for biting; mostly parasitic on birds -02185694 05 n 02 Menopon 0 genus_Menopon 0 003 @ 01762525 n 0000 #m 02185337 n 0000 %m 02185814 n 0000 | chicken lice -02185814 05 n 04 chicken_louse 0 shaft_louse 0 Menopon_palladum 0 Menopon_gallinae 0 002 @ 02185481 n 0000 #m 02185694 n 0000 | a louse parasitic on poultry -02185973 05 n 02 Siphonaptera 0 order_Siphonaptera 0 006 @ 01342529 n 0000 #m 02159271 n 0000 %m 02186153 n 0000 %m 02186399 n 0000 %m 02187427 n 0000 %m 02187759 n 0000 | fleas -02186153 05 n 01 flea 0 008 @ 02159955 n 0000 @ 01385330 n 0000 #m 02185973 n 0000 ~ 02186717 n 0000 ~ 02187150 n 0000 ~ 02187279 n 0000 ~ 02187554 n 0000 ~ 02187900 n 0000 | any wingless bloodsucking parasitic insect noted for ability to leap -02186399 05 n 02 Pulicidae 0 family_Pulicidae 0 004 @ 01759182 n 0000 #m 02185973 n 0000 %m 02186586 n 0000 %m 02186834 n 0000 | many common fleas attacking humans and domestic animals -02186586 05 n 02 Pulex 0 genus_Pulex 0 003 @ 01762525 n 0000 #m 02186399 n 0000 %m 02186717 n 0000 | type genus of the Pulicidae -02186717 05 n 01 Pulex_irritans 0 002 @ 02186153 n 0000 #m 02186586 n 0000 | the most common flea attacking humans -02186834 05 n 02 Ctenocephalides 0 genus_Ctenocephalides 0 005 @ 01762525 n 0000 #m 02186399 n 0000 ~ 02187022 n 0000 %m 02187150 n 0000 %m 02187279 n 0000 | an arthropod genus of fleas -02187022 05 n 02 Ctenocephalus 0 genus_Ctenocephalus 0 001 @ 02186834 n 0000 | a former usage synonymous with Ctenocephalides -02187150 05 n 02 dog_flea 0 Ctenocephalides_canis 0 002 @ 02186153 n 0000 #m 02186834 n 0000 | flea that attacks dogs and cats -02187279 05 n 02 cat_flea 0 Ctenocephalides_felis 0 002 @ 02186153 n 0000 #m 02186834 n 0000 | flea that breeds chiefly on cats and dogs and rats -02187427 05 n 02 Tunga 0 genus_Tunga 0 003 @ 01762525 n 0000 #m 02185973 n 0000 %m 02187554 n 0000 | a genus of Siphonaptera -02187554 05 n 04 chigoe 0 chigger 2 chigoe_flea 0 Tunga_penetrans 0 002 @ 02186153 n 0000 #m 02187427 n 0000 | small tropical flea; the fertile female burrows under the skin of the host including humans -02187759 05 n 02 Echidnophaga 0 genus_Echidnophaga 0 003 @ 01762525 n 0000 #m 02185973 n 0000 %m 02187900 n 0000 | a genus of Siphonaptera -02187900 05 n 03 sticktight 0 sticktight_flea 0 Echidnophaga_gallinacea 0 002 @ 02186153 n 0000 #m 02187759 n 0000 | parasitic on especially the heads of chickens -02188065 05 n 02 Diptera 0 order_Diptera 0 023 @ 01342529 n 0000 #m 02159271 n 0000 + 02713855 a 0101 %m 02188699 n 0000 %m 02189214 n 0000 %m 02189822 n 0000 %m 02190015 n 0000 %m 02190166 n 0000 %m 02190963 n 0000 %m 02191449 n 0000 %m 02192673 n 0000 %m 02193357 n 0000 %m 02193799 n 0000 %m 02194414 n 0000 %m 02195403 n 0000 %m 02195693 n 0000 %m 02195996 n 0000 %m 02196542 n 0000 %m 02197413 n 0000 %m 02198332 n 0000 %m 02199352 n 0000 %m 02199712 n 0000 %m 02205383 n 0000 | a large order of insects having a single pair of wings and sucking or piercing mouths; includes true flies and mosquitoes and gnats and crane flies -02188699 05 n 04 dipterous_insect 0 two-winged_insects 0 dipteran 0 dipteron 0 013 @ 02159955 n 0000 #m 02188065 n 0000 %p 02152212 n 0000 ~ 02189363 n 0000 ~ 02190166 n 0000 ~ 02196119 n 0000 ~ 02196344 n 0000 ~ 02198532 n 0000 ~ 02200198 n 0000 ~ 02202287 n 0000 ~ 02203592 n 0000 ~ 02204722 n 0000 ~ 02205219 n 0000 | insects having usually a single pair of functional wings (anterior pair) with the posterior pair reduced to small knobbed structures and mouth parts adapted for sucking or lapping or piercing -02189214 05 n 02 Cecidomyidae 0 family_Cecidomyidae 0 004 @ 01759182 n 0000 #m 02188065 n 0000 %m 02189363 n 0000 %m 02189535 n 0000 | gall midges -02189363 05 n 03 gall_midge 0 gallfly 3 gall_gnat 0 003 @ 02188699 n 0000 #m 02189214 n 0000 ~ 02189670 n 0000 | fragile mosquito-like flies that produce galls on plants -02189535 05 n 02 Mayetiola 0 genus_Mayetiola 0 003 @ 01762525 n 0000 #m 02189214 n 0000 %m 02189670 n 0000 | a genus of Cecidomyidae -02189670 05 n 02 Hessian_fly 0 Mayetiola_destructor 0 002 @ 02189363 n 0000 #m 02189535 n 0000 | small fly whose larvae damage wheat and other grains -02189822 05 n 02 Muscoidea 0 superfamily_Muscoidea 0 002 @ 01759182 n 0000 #m 02188065 n 0000 | two-winged flies especially the families: Muscidae; Gasterophilidae; Calliphoridae; Tachinidae -02190015 05 n 02 Muscidae 0 family_Muscidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02190648 n 0000 | two-winged flies especially the housefly -02190166 05 n 01 fly 0 012 @ 02188699 n 0000 #m 02188065 n 0000 + 01940403 v 0101 %p 02190465 n 0000 ~ 02190790 n 0000 ~ 02191273 n 0000 ~ 02191773 n 0000 ~ 02192513 n 0000 ~ 02192814 n 0000 ~ 02193009 n 0000 ~ 02195819 n 0000 ~ 02199502 n 0000 | two-winged insects characterized by active flight -02190465 05 n 02 alula 2 calypter 0 003 @ 01903234 n 0000 #p 02190166 n 0000 + 02615079 a 0101 | scalelike structure between the base of the wing and the halter of a two-winged fly -02190648 05 n 02 Musca 0 genus_Musca 0 003 @ 01762525 n 0000 #m 02190015 n 0000 %m 02190790 n 0000 | type genus of the Muscidae: houseflies -02190790 05 n 03 housefly 0 house_fly 0 Musca_domestica 0 002 @ 02190166 n 0000 #m 02190648 n 0000 | common fly that frequents human habitations and spreads many diseases -02190963 05 n 02 Glossinidae 0 family_Glossinidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02191131 n 0000 | flies closely related to the Muscidae: tsetse flies -02191131 05 n 01 genus_Glossina 0 003 @ 01762525 n 0000 #m 02190963 n 0000 %m 02191273 n 0000 | type genus of the Glossinidae: tsetse flies -02191273 05 n 05 tsetse_fly 0 tsetse 0 tzetze_fly 0 tzetze 0 glossina 0 002 @ 02190166 n 0000 #m 02191131 n 0000 | bloodsucking African fly; transmits sleeping sickness etc. -02191449 05 n 02 Calliphoridae 0 family_Calliphoridae 0 005 @ 01759182 n 0000 #m 02188065 n 0000 %m 02191617 n 0000 %m 02192127 n 0000 %m 02192388 n 0000 | blowflies -02191617 05 n 02 Calliphora 0 genus_Calliphora 0 003 @ 01762525 n 0000 #m 02191449 n 0000 %m 02191773 n 0000 | type genus of the Calliphoridae: blowflies -02191773 05 n 02 blowfly 0 blow_fly 0 004 @ 02190166 n 0000 #m 02191617 n 0000 ~ 02191979 n 0000 ~ 02192252 n 0000 | large usually hairy metallic blue or green fly; lays eggs in carrion or dung or wounds -02191979 05 n 02 bluebottle 0 Calliphora_vicina 0 001 @ 02191773 n 0000 | blowfly with iridescent blue body; makes a loud buzzing noise in flight -02192127 05 n 02 Lucilia 0 genus_Lucilia 0 003 @ 01762525 n 0000 #m 02191449 n 0000 %m 02192252 n 0000 | greenbottle flies -02192252 05 n 02 greenbottle 0 greenbottle_fly 0 002 @ 02191773 n 0000 #m 02192127 n 0000 | blowfly with brilliant coppery green body -02192388 05 n 02 Sarcophaga 0 genus_Sarcophaga 0 003 @ 01762525 n 0000 #m 02191449 n 0000 %m 02192513 n 0000 | flesh flies -02192513 05 n 02 flesh_fly 0 Sarcophaga_carnaria 0 002 @ 02190166 n 0000 #m 02192388 n 0000 | fly whose larvae feed on carrion or the flesh of living animals -02192673 05 n 02 Tachinidae 0 family_Tachinidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02192814 n 0000 | parasites on other insects -02192814 05 n 01 tachina_fly 0 002 @ 02190166 n 0000 #m 02192673 n 0000 | bristly fly whose larvae live parasitically in caterpillars and other insects; important in control of noxious insects -02193009 05 n 01 gadfly 0 004 @ 02190166 n 0000 ~ 02193163 n 0000 ~ 02195091 n 0000 ~ 02195526 n 0000 | any of various large flies that annoy livestock -02193163 05 n 01 botfly 0 004 @ 02193009 n 0000 ~ 02193665 n 0000 ~ 02194249 n 0000 ~ 02194750 n 0000 | stout-bodied hairy dipterous fly whose larvae are parasites on humans and other mammals -02193357 05 n 02 Gasterophilidae 0 family_Gasterophilidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02193496 n 0000 | horse botflies -02193496 05 n 02 Gasterophilus 0 genus_Gasterophilus 0 003 @ 01762525 n 0000 #m 02193357 n 0000 %m 02193665 n 0000 | type genus of the Gasterophilidae: horse botflies -02193665 05 n 02 horse_botfly 0 Gasterophilus_intestinalis 0 002 @ 02193163 n 0000 #m 02193496 n 0000 | parasitic chiefly on horses -02193799 05 n 02 Cuterebridae 0 family_Cuterebridae 0 004 @ 01759182 n 0000 #m 02188065 n 0000 %m 02193955 n 0000 %m 02194078 n 0000 | New World botflies -02193955 05 n 02 Cuterebra 0 genus_Cuterebra 0 002 @ 01762525 n 0000 #m 02193799 n 0000 | type genus of the Cuterebridae -02194078 05 n 02 Dermatobia 0 genus_Dermatobia 0 003 @ 01762525 n 0000 #m 02193799 n 0000 %m 02194249 n 0000 | larvae live under the skin of domestic mammals and humans -02194249 05 n 02 human_botfly 0 Dermatobia_hominis 0 002 @ 02193163 n 0000 #m 02194078 n 0000 | large tropical American fly; parasitic on humans and other mammals -02194414 05 n 04 Oestridae 0 family_Oestridae 0 Hypodermatidae 0 family_Hypodermatidae 0 004 @ 01759182 n 0000 #m 02188065 n 0000 %m 02194599 n 0000 %m 02194887 n 0000 | warble flies -02194599 05 n 02 Oestrus 0 genus_Oestrus 0 003 @ 01762525 n 0000 #m 02194414 n 0000 %m 02194750 n 0000 | type genus of the Oestridae: sheep botflies -02194750 05 n 03 sheep_botfly 0 sheep_gadfly 0 Oestrus_ovis 0 002 @ 02193163 n 0000 #m 02194599 n 0000 | larvae are parasitic on sheep -02194887 05 n 02 Hypoderma 0 genus_Hypoderma 0 003 @ 01762525 n 0000 #m 02194414 n 0000 %m 02195091 n 0000 | in some classifications considered the type genus of the family Hypodermatidae: warble flies -02195091 05 n 01 warble_fly 0 002 @ 02193009 n 0000 #m 02194887 n 0000 | hairy bee-like fly whose larvae produce lumpy abscesses (warbles) under the skin of cattle -02195257 05 n 01 warble 0 001 @ 14253124 n 0000 | a lumpy abscess under the hide of domestic mammals caused by larvae of a botfly or warble fly -02195403 05 n 02 Tabanidae 0 family_Tabanidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02195526 n 0000 | horseflies -02195526 05 n 04 horsefly 0 cleg 0 clegg 0 horse_fly 0 002 @ 02193009 n 0000 #m 02195403 n 0000 | large swift fly the female of which sucks blood of various animals -02195693 05 n 02 Bombyliidae 0 family_Bombyliidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02195819 n 0000 | bee flies -02195819 05 n 01 bee_fly 0 002 @ 02190166 n 0000 #m 02195693 n 0000 | hairy nectar-eating fly that resembles a bee; larvae are parasitic on larvae of bees and related insects -02195996 05 n 02 Asilidae 0 family_Asilidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02196119 n 0000 | robber flies -02196119 05 n 02 robber_fly 0 bee_killer 0 002 @ 02188699 n 0000 #m 02195996 n 0000 | swift predatory fly having a strong body like a bee with the proboscis hardened for sucking juices of other insects captured on the wing -02196344 05 n 02 fruit_fly 0 pomace_fly 0 005 @ 02188699 n 0000 ~ 02196896 n 0000 ~ 02197185 n 0000 ~ 02197689 n 0000 ~ 02197877 n 0000 | any of numerous small insects whose larvae feed on fruits -02196542 05 n 04 Trypetidae 0 family_Trypetidae 0 Trephritidae 0 family_Trephritidae 0 005 @ 01759182 n 0000 #m 02188065 n 0000 %m 02196761 n 0000 %m 02197048 n 0000 %m 02198021 n 0000 | fruit flies; some leaf miners -02196761 05 n 02 Rhagoletis 0 genus_Rhagoletis 0 003 @ 01762525 n 0000 #m 02196542 n 0000 %m 02196896 n 0000 | a genus of Trypetidae -02196896 05 n 03 apple_maggot 0 railroad_worm 0 Rhagoletis_pomonella 0 002 @ 02196344 n 0000 #m 02196761 n 0000 | larvae bore into and feed on apples -02197048 05 n 02 Ceratitis 0 genus_Ceratitis 0 003 @ 01762525 n 0000 #m 02196542 n 0000 %m 02197185 n 0000 | Mediterranean fruit flies -02197185 05 n 03 Mediterranean_fruit_fly 0 medfly 0 Ceratitis_capitata 0 002 @ 02196344 n 0000 #m 02197048 n 0000 | small black-and-white fly that damages citrus and other fruits by implanting eggs that hatch inside the fruit -02197413 05 n 02 Drosophilidae 0 family_Drosophilidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02197545 n 0000 | fruit flies -02197545 05 n 01 genus_Drosophila 0 004 @ 01762525 n 0000 #m 02197413 n 0000 %m 02197689 n 0000 %m 02197877 n 0000 | a genus of Drosophilidae -02197689 05 n 02 drosophila 0 Drosophila_melanogaster 0 002 @ 02196344 n 0000 #m 02197545 n 0000 | small fruit fly used by Thomas Hunt Morgan in studying basic mechanisms of inheritance -02197877 05 n 01 vinegar_fly 0 002 @ 02196344 n 0000 #m 02197545 n 0000 | flies whose larvae feed on pickles and imperfectly sealed preserves -02198021 05 n 02 Philophylla 0 genus_Philophylla 0 002 @ 01762525 n 0000 #m 02196542 n 0000 | leaf miners -02198129 05 n 02 leaf_miner 0 leaf-miner 0 001 @ 02159955 n 0000 | any of various small moths or dipterous flies whose larvae burrow into and feed on leaf tissue especially of the family Gracilariidae -02198332 05 n 02 Hippoboscidae 0 family_Hippoboscidae 0 005 @ 01759182 n 0000 #m 02188065 n 0000 %m 02198532 n 0000 %m 02198714 n 0000 %m 02198996 n 0000 | winged or wingless dipterans: louse flies -02198532 05 n 02 louse_fly 0 hippoboscid 0 004 @ 02188699 n 0000 #m 02198332 n 0000 ~ 02198859 n 0000 ~ 02199170 n 0000 | bloodsucking dipterous fly parasitic on birds and mammals -02198714 05 n 02 Hippobosca 0 genus_Hippobosca 0 003 @ 01762525 n 0000 #m 02198332 n 0000 %m 02198859 n 0000 | type genus of the Hippoboscidae -02198859 05 n 03 horse_tick 0 horsefly 2 Hippobosca_equina 0 002 @ 02198532 n 0000 #m 02198714 n 0000 | winged fly parasitic on horses -02198996 05 n 02 Melophagus 0 genus_Melophagus 0 003 @ 01762525 n 0000 #m 02198332 n 0000 %m 02199170 n 0000 | an arthropod genus of wingless flies including the sheep ked -02199170 05 n 04 sheep_ked 0 sheep-tick 1 sheep_tick 1 Melophagus_Ovinus 0 002 @ 02198532 n 0000 #m 02198996 n 0000 | wingless fly that is an external parasite on sheep and cattle -02199352 05 n 02 Haematobia 0 genus_Haematobia 0 003 @ 01762525 n 0000 #m 02188065 n 0000 %m 02199502 n 0000 | European genus of bloodsucking flies -02199502 05 n 02 horn_fly 0 Haematobia_irritans 0 002 @ 02190166 n 0000 #m 02199352 n 0000 | small black European fly introduced into North America; sucks blood from cattle especially at the base of the horn -02199712 05 n 02 Nematocera 0 suborder_Nematocera 0 009 @ 01342529 n 0000 #m 02188065 n 0000 %m 02199999 n 0000 %m 02202509 n 0000 %m 02203008 n 0000 %m 02203457 n 0000 %m 02203739 n 0000 %m 02204460 n 0000 %m 02205095 n 0000 | mosquitoes; fungus gnats; crane flies; gnats; sand flies -02199999 05 n 02 Culicidae 0 family_Culicidae 0 007 @ 01759182 n 0000 #m 02199712 n 0000 %m 02200198 n 0000 %m 02200509 n 0000 %m 02200705 n 0000 %m 02201252 n 0000 %m 02201758 n 0000 | mosquitoes -02200198 05 n 01 mosquito 0 009 @ 02188699 n 0000 #m 02199999 n 0000 ~ 02200630 n 0000 ~ 02200850 n 0000 ~ 02201000 n 0000 ~ 02201497 n 0000 ~ 02201626 n 0000 ~ 02202006 n 0000 ~ 02202124 n 0000 | two-winged insect whose female has a long proboscis to pierce the skin and suck the blood of humans and animals -02200509 05 n 02 wiggler 2 wriggler 0 003 @ 02311060 n 0000 #m 02199999 n 0000 + 01898282 v 0103 | larva of a mosquito -02200630 05 n 01 gnat 2 001 @ 02200198 n 0000 | (British usage) mosquito -02200705 05 n 02 Aedes 0 genus_Aedes 0 004 @ 01762525 n 0000 #m 02199999 n 0000 %m 02200850 n 0000 %m 02201000 n 0000 | yellow-fever mosquitos -02200850 05 n 02 yellow-fever_mosquito 0 Aedes_aegypti 0 002 @ 02200198 n 0000 #m 02200705 n 0000 | mosquito that transmits yellow fever and dengue -02201000 05 n 02 Asian_tiger_mosquito 0 Aedes_albopictus 0 002 @ 02200198 n 0000 #m 02200705 n 0000 | striped native of Japan thriving in southwestern and midwestern United States and spreading to the Caribbean; potential carrier of serious diseases -02201252 05 n 02 Anopheles 0 genus_Anopheles 0 004 @ 01762525 n 0000 #m 02199999 n 0000 %m 02201497 n 0000 %m 02201626 n 0000 | malaria mosquitoes; distinguished by the adult's head-downward stance and absence of breathing tubes in the larvae -02201497 05 n 01 anopheline 0 003 @ 02200198 n 0000 #m 02201252 n 0000 + 02627257 a 0101 | any mosquito of the genus Anopheles -02201626 05 n 02 malarial_mosquito 0 malaria_mosquito 0 002 @ 02200198 n 0000 #m 02201252 n 0000 | transmits the malaria parasite -02201758 05 n 02 Culex 0 genus_Culex 0 004 @ 01762525 n 0000 #m 02199999 n 0000 %m 02202006 n 0000 %m 02202124 n 0000 | type genus of the Culicidae: widespread genus of mosquitoes distinguished by holding the body parallel to the resting surface -02202006 05 n 02 common_mosquito 0 Culex_pipiens 0 002 @ 02200198 n 0000 #m 02201758 n 0000 | common house mosquito -02202124 05 n 02 Culex_quinquefasciatus 0 Culex_fatigans 0 002 @ 02200198 n 0000 #m 02201758 n 0000 | widespread tropical mosquito that transmits filarial worms -02202287 05 n 01 gnat 0 006 @ 02188699 n 0000 ~ 02202678 n 0000 ~ 02203152 n 0000 ~ 02203978 n 0000 ~ 02204249 n 0000 ~ 02205673 n 0000 | any of various small biting flies: midges; biting midges; black flies; sand flies -02202509 05 n 02 Ceratopogonidae 0 family_Ceratopogonidae 0 004 @ 01759182 n 0000 #m 02199712 n 0000 %m 02202678 n 0000 %m 02202878 n 0000 | biting midges; sand flies -02202678 05 n 05 punkie 0 punky 0 punkey 0 no-see-um 0 biting_midge 0 002 @ 02202287 n 0000 #m 02202509 n 0000 | minute two-winged insect that sucks the blood of mammals and birds and other insects -02202878 05 n 02 Ceratopogon 0 genus_Ceratopogon 0 002 @ 01762525 n 0000 #m 02202509 n 0000 | type genus of the Ceratopogonidae -02203008 05 n 02 Chironomidae 0 family_Chironomidae 0 004 @ 01759182 n 0000 #m 02199712 n 0000 %m 02203152 n 0000 %m 02203332 n 0000 | midges -02203152 05 n 01 midge 0 002 @ 02202287 n 0000 #m 02203008 n 0000 | minute two-winged mosquito-like fly lacking biting mouthparts; appear in dancing swarms especially near water -02203332 05 n 02 Chironomus 0 genus_Chironomus 0 002 @ 01762525 n 0000 #m 02203008 n 0000 | type genus of the Chironomidae -02203457 05 n 02 Mycetophilidae 0 family_Mycetophylidae 0 003 @ 01759182 n 0000 #m 02199712 n 0000 %m 02203592 n 0000 | fungus gnats -02203592 05 n 01 fungus_gnat 1 002 @ 02188699 n 0000 #m 02203457 n 0000 | mosquito-like insect whose larvae feed on fungi or decaying vegetation -02203739 05 n 02 Psychodidae 0 family_Psychodidae 0 004 @ 01759182 n 0000 #m 02199712 n 0000 %m 02203978 n 0000 %m 02204084 n 0000 | very small two-winged flies with hairy wings that develop in moss and damp vegetable matter: sand flies -02203978 05 n 01 psychodid 0 002 @ 02202287 n 0000 #m 02203739 n 0000 | a fly of the family Psychodidae -02204084 05 n 02 Phlebotomus 0 genus_Phlebotomus 0 003 @ 01762525 n 0000 #m 02203739 n 0000 %m 02204249 n 0000 | small bloodsucking sand flies that resemble moths -02204249 05 n 03 sand_fly 0 sandfly 0 Phlebotomus_papatasii 0 002 @ 02202287 n 0000 #m 02204084 n 0000 | any of various small dipterous flies; bloodsucking females can transmit sandfly fever and leishmaniasis -02204460 05 n 02 Sciaridae 0 family_Sciaridae 0 003 @ 01759182 n 0000 #m 02199712 n 0000 %m 02204585 n 0000 | fungus gnats -02204585 05 n 01 genus_Sciara 0 003 @ 01762525 n 0000 #m 02204460 n 0000 %m 02204722 n 0000 | type genus of the Sciaridae: fungus gnat -02204722 05 n 03 fungus_gnat 2 sciara 0 sciarid 0 003 @ 02188699 n 0000 #m 02204585 n 0000 ~ 02204907 n 0000 | minute blackish gregarious flies destructive to mushrooms and seedlings -02204907 05 n 01 armyworm 3 001 @ 02204722 n 0000 | larva of fungus gnat that feed on cereals and other grains; they march in large companies in regular order when the food is exhausted -02205095 05 n 02 Tipulidae 0 family_Tipulidae 0 003 @ 01759182 n 0000 #m 02199712 n 0000 %m 02205219 n 0000 | crane flies -02205219 05 n 02 crane_fly 0 daddy_longlegs 1 002 @ 02188699 n 0000 #m 02205095 n 0000 | long-legged slender flies that resemble large mosquitoes but do not bite -02205383 05 n 02 Simuliidae 0 family_Simuliidae 0 003 @ 01759182 n 0000 #m 02188065 n 0000 %m 02205523 n 0000 | blackflies and sand flies -02205523 05 n 02 Simulium 0 genus_Simulium 0 003 @ 01762525 n 0000 #m 02205383 n 0000 %m 02205673 n 0000 | type genus of the Simuliidae: blackflies -02205673 05 n 03 blackfly 1 black_fly 1 buffalo_gnat 0 002 @ 02202287 n 0000 #m 02205523 n 0000 | small blackish stout-bodied biting fly having aquatic larvae; sucks the blood of birds as well as humans and other mammals -02205896 05 n 02 Hymenoptera 0 order_Hymenoptera 0 012 @ 01342529 n 0000 #m 02159271 n 0000 + 02745075 a 0101 %m 02206270 n 0000 %m 02206624 n 0000 %m 02212323 n 0000 %m 02214972 n 0000 %m 02216547 n 0000 %m 02217334 n 0000 %m 02218235 n 0000 %m 02218563 n 0000 %m 02219234 n 0000 | an order of insects including: bees; wasps; ants; ichneumons; sawflies; gall wasps; etc. -02206270 05 n 04 hymenopterous_insect 0 hymenopteran 0 hymenopteron 0 hymenopter 0 009 @ 02159955 n 0000 #m 02205896 n 0000 ~ 02206856 n 0000 ~ 02212062 n 0000 ~ 02214660 n 0000 ~ 02217563 n 0000 ~ 02218371 n 0000 ~ 02218713 n 0000 ~ 02219486 n 0000 | insects having two pairs of membranous wings and an ovipositor specialized for stinging or piercing -02206624 05 n 02 Apoidea 0 superfamily_Apoidea 0 009 @ 01759182 n 0000 #m 02205896 n 0000 %m 02206856 n 0000 %m 02207345 n 0000 %m 02207805 n 0000 %m 02207942 n 0000 %m 02210096 n 0000 %m 02210728 n 0000 %m 02211099 n 0000 | bees -02206856 05 n 01 bee 0 012 @ 02206270 n 0000 #m 02206624 n 0000 ~ 02207179 n 0000 ~ 02208280 n 0000 ~ 02209354 n 0000 ~ 02209624 n 0000 ~ 02209964 n 0000 ~ 02210427 n 0000 ~ 02210921 n 0000 ~ 02211444 n 0000 ~ 02211627 n 0000 ~ 02211896 n 0000 | any of numerous hairy-bodied insects including social and solitary species -02207179 05 n 01 drone 0 001 @ 02206856 n 0000 | stingless male bee in a colony of social bees (especially honeybees) whose sole function is to mate with the queen -02207345 05 n 01 queen_bee 0 002 @ 02313008 n 0000 #m 02206624 n 0000 | fertile egg-laying female bee -02207449 05 n 01 worker 1 004 @ 02159955 n 0000 ~ 02207647 n 0000 ~ 02207805 n 0000 + 02413480 v 0101 | sterile member of a colony of social insects that forages for food and cares for the larvae -02207647 05 n 01 soldier 0 001 @ 02207449 n 0000 | a wingless sterile ant or termite having a large head and powerful jaws adapted for defending the colony -02207805 05 n 01 worker_bee 0 002 @ 02207449 n 0000 #m 02206624 n 0000 | sterile bee specialized to collect food and maintain the hive -02207942 05 n 02 Apidae 0 family_Apidae 0 006 @ 01759182 n 0000 #m 02206624 n 0000 %m 02208143 n 0000 %m 02209230 n 0000 %m 02209508 n 0000 %m 02209755 n 0000 | honeybees; carpenter bees; bumblebees -02208143 05 n 02 Apis 0 genus_Apis 0 003 @ 01762525 n 0000 #m 02207942 n 0000 %m 02208280 n 0000 | type genus of the Apidae: honeybees -02208280 05 n 02 honeybee 0 Apis_mellifera 0 006 @ 02206856 n 0000 #m 02208143 n 0000 ~ 02208498 n 0000 ~ 02208848 n 0000 ~ 02208979 n 0000 ~ 02209111 n 0000 | social bee often domesticated for the honey it produces -02208498 05 n 05 Africanized_bee 0 Africanized_honey_bee 0 killer_bee 0 Apis_mellifera_scutellata 0 Apis_mellifera_adansonii 0 001 @ 02208280 n 0000 | a strain of bees that originated in Brazil in the 1950s as a cross between an aggressive African bee and a honeybee; retains most of the traits of the African bee; now spread as far north as Texas -02208848 05 n 02 black_bee 0 German_bee 0 001 @ 02208280 n 0000 | dark-colored ill-tempered honeybee supposedly of German origin -02208979 05 n 01 Carniolan_bee 0 001 @ 02208280 n 0000 | greyish highly productive European honeybee that has a quiet disposition -02209111 05 n 01 Italian_bee 0 001 @ 02208280 n 0000 | yellowish honeybee resembling the Carniolan bee in its habits -02209230 05 n 02 Xylocopa 0 genus_Xylocopa 0 003 @ 01762525 n 0000 #m 02207942 n 0000 %m 02209354 n 0000 | carpenter bees -02209354 05 n 01 carpenter_bee 0 002 @ 02206856 n 0000 #m 02209230 n 0000 | large solitary bee that lays eggs in tunnels bored into wood or plant stems -02209508 05 n 02 Bombus 0 genus_Bombus 0 003 @ 01762525 n 0000 #m 02207942 n 0000 %m 02209624 n 0000 | bumblebees -02209624 05 n 02 bumblebee 0 humblebee 0 002 @ 02206856 n 0000 #m 02209508 n 0000 | robust hairy social bee of temperate regions -02209755 05 n 02 Psithyrus 0 genus_Psithyrus 0 003 @ 01762525 n 0000 #m 02207942 n 0000 %m 02209964 n 0000 | a large bee that resembles the bumblebee but lacks pollen-collecting apparatus and a worker caste -02209964 05 n 01 cuckoo-bumblebee 0 002 @ 02206856 n 0000 #m 02209755 n 0000 | a bee that is parasitic in the nests of bumblebees -02210096 05 n 02 Andrenidae 0 family_Andrenidae 0 003 @ 01759182 n 0000 #m 02206624 n 0000 %m 02210291 n 0000 | a large family of solitary short-tongued bees most of which burrow in the ground -02210291 05 n 01 genus_Andrena 0 003 @ 01762525 n 0000 #m 02210096 n 0000 %m 02210427 n 0000 | a solitary burrowing short-tongued bee -02210427 05 n 03 andrena 0 andrenid 0 mining_bee 0 002 @ 02206856 n 0000 #m 02210291 n 0000 | a bee that is a member of the genus Andrena -02210567 05 n 02 nomia 0 genus_Nomia 0 003 @ 01762525 n 0000 #m 02210728 n 0000 %m 02210921 n 0000 | a genus of bee; some are important pollinators of legumes -02210728 05 n 02 Halictidae 0 family_Halictidae 0 003 @ 01759182 n 0000 #m 02206624 n 0000 %m 02210567 n 0000 | a family of small solitary bees; many are valuable pollinators for agriculture -02210921 05 n 02 Nomia_melanderi 0 alkali_bee 0 002 @ 02206856 n 0000 #m 02210567 n 0000 | a common solitary bee important for pollinating alfalfa in the western United States -02211099 05 n 02 Megachilidae 0 family_Megachilidae 0 005 @ 01759182 n 0000 #m 02206624 n 0000 %m 02211283 n 0000 %m 02211627 n 0000 %m 02211773 n 0000 | leaf-cutting and mason bees -02211283 05 n 02 Megachile 0 genus_Megachile 0 003 @ 01762525 n 0000 #m 02211099 n 0000 %m 02211444 n 0000 | type genus of the Megachilidae: leaf-cutting bees -02211444 05 n 03 leaf-cutting_bee 0 leaf-cutter 0 leaf-cutter_bee 0 002 @ 02206856 n 0000 #m 02211283 n 0000 | bee that cuts rounded pieces from leaves and flowers to line its nest -02211627 05 n 01 mason_bee 0 002 @ 02206856 n 0000 #m 02211099 n 0000 | any of numerous solitary bees that build nests of hardened mud and sand -02211773 05 n 02 Anthidium 0 genus_Anthidium 0 003 @ 01762525 n 0000 #m 02211099 n 0000 %m 02211896 n 0000 | potter bees -02211896 05 n 01 potter_bee 0 002 @ 02206856 n 0000 #m 02211773 n 0000 | solitary bee that builds nests of mud or pebbles cemented together and attached to a plant -02212062 05 n 01 wasp 0 005 @ 02206270 n 0000 ~ 02212602 n 0000 ~ 02214773 n 0000 ~ 02215161 n 0000 ~ 02216740 n 0000 | social or solitary hymenopterans typically having a slender body with the abdomen attached by a narrow stalk and having a formidable sting -02212323 05 n 02 Vespidae 0 family_Vespidae 0 007 @ 01759182 n 0000 #m 02205896 n 0000 %m 02212602 n 0000 %m 02212811 n 0000 %m 02213362 n 0000 %m 02213967 n 0000 %m 02214203 n 0000 | an arthropod family of the order Hymenoptera including: yellow jackets; hornets; mason wasps -02212602 05 n 02 vespid 0 vespid_wasp 0 007 @ 02212062 n 0000 #m 02212323 n 0000 ~ 02212958 n 0000 ~ 02213107 n 0000 ~ 02213543 n 0000 ~ 02214341 n 0000 ~ 02214499 n 0000 | mostly social nest-building wasps -02212811 05 n 02 Vespa 0 genus_Vespa 0 002 @ 01762525 n 0000 #m 02212323 n 0000 | type genus of the Vespidae: various hornets and yellow jackets -02212958 05 n 01 paper_wasp 0 002 @ 02212602 n 0000 ~ 02214096 n 0000 | any of several social wasps that construct nests of a substance like paper -02213107 05 n 01 hornet 0 004 @ 02212602 n 0000 ~ 02213239 n 0000 ~ 02213663 n 0000 ~ 02213788 n 0000 | large stinging paper wasp -02213239 05 n 02 giant_hornet 0 Vespa_crabro 0 001 @ 02213107 n 0000 | European hornet introduced into the United States -02213362 05 n 02 Vespula 0 genus_Vespula 0 004 @ 01762525 n 0000 #m 02212323 n 0000 %m 02213543 n 0000 %m 02213788 n 0000 | sometimes considered a subgenus of Vespa: social wasps -02213543 05 n 02 common_wasp 0 Vespula_vulgaris 0 002 @ 02212602 n 0000 #m 02213362 n 0000 | a variety of vespid wasp -02213663 05 n 03 bald-faced_hornet 0 white-faced_hornet 0 Vespula_maculata 0 001 @ 02213107 n 0000 | North American hornet -02213788 05 n 03 yellow_jacket 0 yellow_hornet 0 Vespula_maculifrons 0 002 @ 02213107 n 0000 #m 02213362 n 0000 | small yellow-marked social wasp commonly nesting in the ground -02213967 05 n 02 Polistes 0 genus_Polistes 0 003 @ 01762525 n 0000 #m 02212323 n 0000 %m 02214096 n 0000 | a genus of Vespidae -02214096 05 n 01 Polistes_annularis 0 002 @ 02212958 n 0000 #m 02213967 n 0000 | a variety of paper wasp -02214203 05 n 02 Eumenes 0 genus_Eumenes 0 004 @ 01762525 n 0000 #m 02212323 n 0000 %m 02214341 n 0000 %m 02214499 n 0000 | mason wasps -02214341 05 n 01 mason_wasp 1 002 @ 02212602 n 0000 #m 02214203 n 0000 | any of various solitary wasps that construct nests of hardened mud for their young -02214499 05 n 01 potter_wasp 0 002 @ 02212602 n 0000 #m 02214203 n 0000 | any of various solitary wasps that construct vase-shaped cells of mud for their eggs -02214660 05 n 02 Mutillidae 0 family_Mutillidae 0 002 @ 02206270 n 0000 %m 02214773 n 0000 | a family of wasps -02214773 05 n 01 velvet_ant 0 002 @ 02212062 n 0000 #m 02214660 n 0000 | a solitary wasp of the family Mutillidae; the body has a coat of brightly colored velvety hair and the females are wingless -02214972 05 n 02 Sphecoidea 0 superfamily_Sphecoidea 0 005 @ 01759182 n 0000 #m 02205896 n 0000 %m 02215161 n 0000 %m 02215334 n 0000 %m 02215941 n 0000 | families Sphecidae and Stizidae -02215161 05 n 02 sphecoid_wasp 0 sphecoid 0 005 @ 02212062 n 0000 #m 02214972 n 0000 ~ 02215621 n 0000 ~ 02215770 n 0000 ~ 02216365 n 0000 | any of various solitary wasps -02215334 05 n 02 Sphecidae 0 family_Sphecidae 0 004 @ 01759182 n 0000 #m 02214972 n 0000 %m 02215496 n 0000 %m 02216365 n 0000 | mud daubers; some digger wasps -02215496 05 n 02 Sceliphron 0 genus_Sceliphron 0 003 @ 01762525 n 0000 #m 02215334 n 0000 %m 02215621 n 0000 | mud daubers -02215621 05 n 01 mason_wasp 2 002 @ 02215161 n 0000 #m 02215496 n 0000 | solitary wasp that constructs nests of hardened mud or clay for the young -02215770 05 n 01 digger_wasp 0 002 @ 02215161 n 0000 ~ 02216211 n 0000 | solitary wasp that digs nests in the soil and stocks them with paralyzed insects for the larvae -02215941 05 n 02 Stizidae 0 family_Stizidae 0 003 @ 01759182 n 0000 #m 02214972 n 0000 %m 02216066 n 0000 | cicada killers -02216066 05 n 02 Sphecius 0 genus_Sphecius 0 003 @ 01762525 n 0000 #m 02215941 n 0000 %m 02216211 n 0000 | large solitary wasps: cicada killer -02216211 05 n 02 cicada_killer 0 Sphecius_speciosis 0 002 @ 02215770 n 0000 #m 02216066 n 0000 | large black or rust-colored wasp that preys on cicadas -02216365 05 n 01 mud_dauber 0 002 @ 02215161 n 0000 #m 02215334 n 0000 | wasp that constructs mud cells on a solid base in which females place eggs laid in paralyzed insect larvae -02216547 05 n 02 Cynipidae 0 family_Cynipidae 0 006 @ 01759182 n 0000 #m 02205896 n 0000 %m 02216740 n 0000 %m 02216924 n 0000 %m 02217050 n 0000 %m 02217201 n 0000 | a family of Hymenoptera -02216740 05 n 04 gall_wasp 0 gallfly 2 cynipid_wasp 0 cynipid_gall_wasp 0 002 @ 02212062 n 0000 #m 02216547 n 0000 | small solitary wasp that produces galls on oaks and other plants -02216924 05 n 02 Cynips 0 genus_Cynips 0 002 @ 01762525 n 0000 #m 02216547 n 0000 | type genus of the Cynipidae: gall wasps -02217050 05 n 02 Amphibolips 0 genus_Amphibolips 0 002 @ 01762525 n 0000 #m 02216547 n 0000 | cynipid gall wasps, especially causing oak-apple galls -02217201 05 n 02 Andricus 0 genus_Andricus 0 002 @ 01762525 n 0000 #m 02216547 n 0000 | cynipid gall wasps, chiefly affecting oaks -02217334 05 n 04 Chalcididae 0 family_Chalcididae 0 Chalcidae 0 family_Chalcidae 0 005 @ 01759182 n 0000 #m 02205896 n 0000 %m 02217563 n 0000 %m 02217839 n 0000 %m 02217997 n 0000 | an arthropod family including: chalcidflies -02217563 05 n 04 chalcid_fly 0 chalcidfly 0 chalcid 0 chalcid_wasp 0 003 @ 02206270 n 0000 #m 02217334 n 0000 ~ 02218134 n 0000 | any of various tiny insects whose larvae are parasites on eggs and larvae of other insects; many are beneficial in destroying injurious insects -02217839 05 n 02 strawworm 1 jointworm 0 002 @ 02311060 n 0000 #m 02217334 n 0000 | larva of chalcid flies injurious to the straw of wheat and other grains -02217997 05 n 02 Chalcis 0 genus_Chalcis 0 003 @ 01762525 n 0000 #m 02217334 n 0000 %m 02218134 n 0000 | type genus of the Chalcididae -02218134 05 n 01 chalcis_fly 0 002 @ 02217563 n 0000 #m 02217997 n 0000 | a variety of chalcid fly -02218235 05 n 02 Ichneumonidae 0 family_Ichneumonidae 0 003 @ 01759182 n 0000 #m 02205896 n 0000 %m 02218371 n 0000 | ichneumon flies -02218371 05 n 01 ichneumon_fly 0 002 @ 02206270 n 0000 #m 02218235 n 0000 | hymenopterous insect that resembles a wasp and whose larvae are parasitic on caterpillars and other insect larvae -02218563 05 n 02 Tenthredinidae 0 family_Tenthredinidae 0 004 @ 01759182 n 0000 #m 02205896 n 0000 %m 02218713 n 0000 %m 02218912 n 0000 | sawflies -02218713 05 n 01 sawfly 0 003 @ 02206270 n 0000 #m 02218563 n 0000 ~ 02219015 n 0000 | insect whose female has a saw-like ovipositor for inserting eggs into the leaf or stem tissue of a host plant -02218912 05 n 02 Fenusa 0 genus-Fenusa 0 002 @ 01762525 n 0000 #m 02218563 n 0000 | birch leaf miner -02219015 05 n 02 birch_leaf_miner 0 Fenusa_pusilla 0 001 @ 02218713 n 0000 | small black sawfly native to Europe but established in eastern United States; larvae mine the leaves of birches causing serious defoliation -02219234 05 n 02 Formicidae 0 family_Formicidae 0 010 @ 01759182 n 0000 #m 02205896 n 0000 %m 02219486 n 0000 %m 02219901 n 0000 %m 02220393 n 0000 %m 02220676 n 0000 %m 02220960 n 0000 %m 02221240 n 0000 %m 02222199 n 0000 %m 02222459 n 0000 | ants -02219486 05 n 03 ant 0 emmet 0 pismire 0 011 @ 02206270 n 0000 #m 02219234 n 0000 ~ 02220055 n 0000 ~ 02220225 n 0000 ~ 02220518 n 0000 ~ 02220804 n 0000 ~ 02221083 n 0000 ~ 02221414 n 0000 ~ 02221571 n 0000 ~ 02221820 n 0000 ~ 02222321 n 0000 | social insect living in organized colonies; characteristically the males and fertile queen have wings during breeding season; wingless sterile females are the workers -02219901 05 n 02 Monomorium 0 genus_Monomorium 0 004 @ 01762525 n 0000 #m 02219234 n 0000 %m 02220055 n 0000 %m 02220225 n 0000 | a genus of Formicidae -02220055 05 n 03 pharaoh_ant 0 pharaoh's_ant 0 Monomorium_pharaonis 0 002 @ 02219486 n 0000 #m 02219901 n 0000 | small red ant of warm regions; a common household pest -02220225 05 n 02 little_black_ant 0 Monomorium_minimum 0 002 @ 02219486 n 0000 #m 02219901 n 0000 | tiny glossy black ant; nests outdoors but invades houses for food -02220393 05 n 02 Dorylinae 0 subfamily_Dorylinae 0 003 @ 01759182 n 0000 #m 02219234 n 0000 %m 02220518 n 0000 | army ants -02220518 05 n 03 army_ant 0 driver_ant 0 legionary_ant 0 002 @ 02219486 n 0000 #m 02220393 n 0000 | tropical nomadic ant that preys mainly on other insects -02220676 05 n 02 Camponotus 0 genus_Camponotus 0 003 @ 01762525 n 0000 #m 02219234 n 0000 %m 02220804 n 0000 | carpenter ants -02220804 05 n 01 carpenter_ant 0 002 @ 02219486 n 0000 #m 02220676 n 0000 | ant that nests in decaying wood in which it bores tunnels for depositing eggs -02220960 05 n 02 Solenopsis 0 genus_Solenopsis 0 003 @ 01762525 n 0000 #m 02219234 n 0000 %m 02221083 n 0000 | fire ants -02221083 05 n 01 fire_ant 0 002 @ 02219486 n 0000 #m 02220960 n 0000 | omnivorous ant of tropical and subtropical America that can inflict a painful sting -02221240 05 n 02 Formica 0 genus_Formica 0 005 @ 01762525 n 0000 #m 02219234 n 0000 %m 02221414 n 0000 %m 02221715 n 0000 %m 02222035 n 0000 | type genus of the Formicidae -02221414 05 n 02 wood_ant 0 Formica_rufa 0 002 @ 02219486 n 0000 #m 02221240 n 0000 | reddish-brown European ant typically living in anthills in woodlands -02221571 05 n 01 slave_ant 0 002 @ 02219486 n 0000 ~ 02221715 n 0000 | any of various ants captured as larvae and enslaved by another species -02221715 05 n 01 Formica_fusca 0 002 @ 02221571 n 0000 #m 02221240 n 0000 | an ant frequently enslaved -02221820 05 n 02 slave-making_ant 0 slave-maker 0 003 @ 02219486 n 0000 ~ 02222035 n 0000 ~ 02222582 n 0000 | an ant that attacks colonies of other ant species and carries off the young to be reared as slave ants -02222035 05 n 02 sanguinary_ant 0 Formica_sanguinea 0 002 @ 02221820 n 0000 #m 02221240 n 0000 | slave-making ant widely distributed over the northern hemisphere -02222199 05 n 02 Myrmecia 0 genus_Myrmecia 0 003 @ 01762525 n 0000 #m 02219234 n 0000 %m 02222321 n 0000 | bulldog ants -02222321 05 n 01 bulldog_ant 0 002 @ 02219486 n 0000 #m 02222199 n 0000 | any of the large fierce Australian ants of the genus Myrmecia -02222459 05 n 02 Polyergus 0 genus_Polyergus 0 003 @ 01762525 n 0000 #m 02219234 n 0000 %m 02222582 n 0000 | Amazon ants -02222582 05 n 02 Amazon_ant 0 Polyergus_rufescens 0 002 @ 02221820 n 0000 #m 02222459 n 0000 | small reddish slave-making ant species -02222718 05 n 02 Isoptera 0 order_Isoptera 0 007 @ 01342529 n 0000 #m 02159271 n 0000 %m 02223009 n 0000 %m 02223266 n 0000 %m 02224141 n 0000 %m 02224323 n 0000 %m 02225231 n 0000 | order of social insects that live in colonies, including: termites; often placed in subclass Exopterygota -02223009 05 n 02 Termitidae 0 family_Termitidae 0 004 @ 01759182 n 0000 #m 02222718 n 0000 %m 02223151 n 0000 %m 02223694 n 0000 | termites -02223151 05 n 02 Termes 0 genus_Termes 0 002 @ 01762525 n 0000 #m 02223009 n 0000 | type genus of the Termitidae -02223266 05 n 02 termite 0 white_ant 0 008 @ 02159955 n 0000 #m 02222718 n 0000 ~ 02223520 n 0000 ~ 02223901 n 0000 ~ 02224023 n 0000 ~ 02224713 n 0000 ~ 02224937 n 0000 ~ 02225081 n 0000 | whitish soft-bodied ant-like social insect that feeds on wood -02223520 05 n 01 dry-wood_termite 0 002 @ 02223266 n 0000 ~ 02225798 n 0000 | any of various termites that live in and feed on dry wood that is not connected with the soil -02223694 05 n 02 Reticulitermes 0 genus_Reticulitermes 0 004 @ 01762525 n 0000 #m 02223009 n 0000 %m 02223901 n 0000 %m 02224023 n 0000 | includes species highly destructive to structures and living trees -02223901 05 n 01 Reticulitermes_flanipes 0 002 @ 02223266 n 0000 #m 02223694 n 0000 | destructive United States termite -02224023 05 n 01 Reticulitermes_lucifugus 0 002 @ 02223266 n 0000 #m 02223694 n 0000 | destructive European termite -02224141 05 n 02 Rhinotermitidae 0 family_Rhinotermitidae 0 002 @ 01759182 n 0000 #m 02222718 n 0000 | large widely distributed family of termites of temperate to tropical regions -02224323 05 n 02 Mastotermitidae 0 family_Mastotermitidae 0 003 @ 01759182 n 0000 #m 02222718 n 0000 %m 02224466 n 0000 | primitive termites -02224466 05 n 02 Mastotermes 0 genus_Mastotermes 0 005 @ 01762525 n 0000 #m 02224323 n 0000 %m 02224713 n 0000 %m 02224937 n 0000 %m 02225081 n 0000 | primitive genus of termites; mostly extinct; sometimes considered the most primitive Isoptera -02224713 05 n 01 Mastotermes_darwiniensis 0 002 @ 02223266 n 0000 #m 02224466 n 0000 | Australian termite; sole living species of Mastotermes; called a living fossil; apparent missing link between cockroaches and termites -02224937 05 n 01 Mastotermes_electromexicus 0 002 @ 02223266 n 0000 #m 02224466 n 0000 | an extinct termite found in amber in southern Mexico -02225081 05 n 01 Mastotermes_electrodominicus 0 002 @ 02223266 n 0000 #m 02224466 n 0000 | extinct termite found in amber in the Dominican Republic -02225231 05 n 02 Kalotermitidae 0 family_Kalotermitidae 0 004 @ 01759182 n 0000 #m 02222718 n 0000 %m 02225407 n 0000 %m 02225577 n 0000 | primitive termites of warm regions -02225407 05 n 02 Kalotermes 0 genus_Kalotermes 0 002 @ 01762525 n 0000 #m 02225231 n 0000 | type genus of Kalotermitidae; termites destructive of wood and living trees -02225577 05 n 02 Cryptotermes 0 genus_Cryptotermes 0 003 @ 01762525 n 0000 #m 02225231 n 0000 %m 02225798 n 0000 | genus of dry wood termites; cosmopolitan in distribution; sometimes considered a subgenus of Kalotermes -02225798 05 n 02 powder-post_termite 0 Cryptotermes_brevis 0 002 @ 02223520 n 0000 #m 02225577 n 0000 | extremely destructive dry-wood termite of warm regions -02225959 05 n 02 Orthoptera 0 order_Orthoptera 0 007 @ 01342529 n 0000 #m 02159271 n 0000 %m 02226183 n 0000 %m 02226598 n 0000 %m 02227773 n 0000 %m 02228874 n 0000 %m 02229385 n 0000 | grasshoppers and locusts; crickets -02226183 05 n 03 orthopterous_insect 0 orthopteron 0 orthopteran 0 004 @ 02159955 n 0000 #m 02225959 n 0000 ~ 02226429 n 0000 ~ 02229544 n 0000 | any of various insects having leathery forewings and membranous hind wings and chewing mouthparts -02226429 05 n 02 grasshopper 0 hopper 0 003 @ 02226183 n 0000 ~ 02226821 n 0000 ~ 02227966 n 0000 | terrestrial plant-eating insect with hind legs adapted for leaping -02226598 05 n 04 Acrididae 0 family_Acrididae 0 Locustidae 0 family_Locustidae 0 005 @ 01759182 n 0000 #m 02225959 n 0000 %m 02226821 n 0000 %m 02227119 n 0000 %m 02227430 n 0000 | short-horned grasshoppers; true locusts -02226821 05 n 02 short-horned_grasshopper 0 acridid 0 003 @ 02226429 n 0000 #m 02226598 n 0000 ~ 02226970 n 0000 | grasshopper with short antennae -02226970 05 n 01 locust 0 003 @ 02226821 n 0000 ~ 02227247 n 0000 ~ 02227604 n 0000 | migratory grasshoppers of warm regions having short antennae -02227119 05 n 02 Locusta 0 genus_Locusta 0 003 @ 01762525 n 0000 #m 02226598 n 0000 %m 02227247 n 0000 | a genus of Acrididae -02227247 05 n 02 migratory_locust 0 Locusta_migratoria 0 002 @ 02226970 n 0000 #m 02227119 n 0000 | Old World locust that travels in vast swarms stripping large areas of vegetation -02227430 05 n 02 Melanoplus 0 genus_Melanoplus 0 003 @ 01762525 n 0000 #m 02226598 n 0000 %m 02227604 n 0000 | New World migratory locusts and common American grasshoppers -02227604 05 n 01 migratory_grasshopper 0 002 @ 02226970 n 0000 #m 02227430 n 0000 | serious pest of grain-growing and range areas of central and western United States -02227773 05 n 02 Tettigoniidae 0 family_Tettigoniidae 0 005 @ 01759182 n 0000 #m 02225959 n 0000 %m 02227966 n 0000 %m 02228215 n 0000 %m 02228565 n 0000 | long-horned grasshoppers; katydids -02227966 05 n 02 long-horned_grasshopper 0 tettigoniid 0 004 @ 02226429 n 0000 #m 02227773 n 0000 ~ 02228341 n 0000 ~ 02229156 n 0000 | grasshoppers with long threadlike antennae and well-developed stridulating organs on the forewings of the male -02228215 05 n 02 Microcentrum 0 genus_Microcentrum 0 003 @ 01762525 n 0000 #m 02227773 n 0000 %m 02228341 n 0000 | katydids -02228341 05 n 01 katydid 0 003 @ 02227966 n 0000 #m 02228215 n 0000 ~ 02228697 n 0000 | large green long-horned grasshopper of North America; males produce shrill sounds by rubbing together special organs on the forewings -02228565 05 n 02 Anabrus 0 genus_Anabrus 0 003 @ 01762525 n 0000 #m 02227773 n 0000 %m 02228697 n 0000 | a genus of Tettigoniidae -02228697 05 n 02 mormon_cricket 0 Anabrus_simplex 0 002 @ 02228341 n 0000 #m 02228565 n 0000 | large dark wingless cricket-like katydid of arid parts of western United States -02228874 05 n 02 Stenopelmatidae 0 family_Stenopelmatidae 0 003 @ 01759182 n 0000 #m 02225959 n 0000 %m 02229023 n 0000 | long-horned grasshoppers -02229023 05 n 02 Stenopelmatus 0 genus_Stenopelmatus 0 003 @ 01762525 n 0000 #m 02228874 n 0000 %m 02229156 n 0000 | sand crickets -02229156 05 n 03 sand_cricket 0 Jerusalem_cricket 0 Stenopelmatus_fuscus 0 002 @ 02227966 n 0000 #m 02229023 n 0000 | large wingless nocturnal grasshopper that burrows in loose soil along the Pacific coast of the United States -02229385 05 n 02 Gryllidae 0 family_Gryllidae 0 005 @ 01759182 n 0000 #m 02225959 n 0000 %m 02229544 n 0000 %m 02229867 n 0000 %m 02230355 n 0000 | crickets -02229544 05 n 01 cricket 0 006 @ 02226183 n 0000 #m 02229385 n 0000 ~ 02229765 n 0000 ~ 02230023 n 0000 ~ 02230187 n 0000 ~ 02230480 n 0000 | leaping insect; male makes chirping noises by rubbing the forewings together -02229765 05 n 01 mole_cricket 0 001 @ 02229544 n 0000 | digs in moist soil and feeds on plant roots -02229867 05 n 02 Acheta 0 genus_Acheta 0 004 @ 01762525 n 0000 #m 02229385 n 0000 %m 02230023 n 0000 %m 02230187 n 0000 | common house and field crickets -02230023 05 n 02 European_house_cricket 0 Acheta_domestica 0 002 @ 02229544 n 0000 #m 02229867 n 0000 | lives in human dwellings; naturalized in parts of America -02230187 05 n 02 field_cricket 0 Acheta_assimilis 0 002 @ 02229544 n 0000 #m 02229867 n 0000 | common American black cricket; attacks crops and also enters dwellings -02230355 05 n 02 Oecanthus 0 genus_Oecanthus 0 003 @ 01762525 n 0000 #m 02229385 n 0000 %m 02230480 n 0000 | tree crickets -02230480 05 n 01 tree_cricket 0 003 @ 02229544 n 0000 #m 02230355 n 0000 ~ 02230634 n 0000 | pale arboreal American cricket noted for loud stridulation -02230634 05 n 02 snowy_tree_cricket 0 Oecanthus_fultoni 0 001 @ 02230480 n 0000 | pale yellowish tree cricket widely distributed in North America -02230782 05 n 04 Phasmida 0 order_Phasmida 0 Phasmatodea 0 order_Phasmatodea 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02231052 n 0000 %m 02231307 n 0000 %m 02231930 n 0000 | in some classifications considered a suborder of Orthoptera: stick insects; leaf insects -02231052 05 n 02 phasmid 0 phasmid_insect 0 004 @ 02159955 n 0000 #m 02230782 n 0000 ~ 02231487 n 0000 ~ 02232223 n 0000 | large cylindrical or flattened mostly tropical insects with long strong legs that feed on plants; walking sticks and leaf insects -02231307 05 n 04 Phasmidae 0 family_Phasmidae 0 Phasmatidae 0 family_Phasmatidae 0 004 @ 01759182 n 0000 #m 02230782 n 0000 %m 02231487 n 0000 %m 02231680 n 0000 | stick insects -02231487 05 n 03 walking_stick 0 walkingstick 0 stick_insect 0 003 @ 02231052 n 0000 #m 02231307 n 0000 ~ 02231803 n 0000 | any of various mostly tropical insects having long twiglike bodies -02231680 05 n 01 genus_Diapheromera 0 003 @ 01762525 n 0000 #m 02231307 n 0000 %m 02231803 n 0000 | a genus of Phasmidae -02231803 05 n 02 diapheromera 0 Diapheromera_femorata 0 002 @ 02231487 n 0000 #m 02231680 n 0000 | a variety of stick insect -02231930 05 n 04 Phyllidae 0 family_Phyllidae 0 Phillidae 0 family_Phillidae 0 003 @ 01759182 n 0000 #m 02230782 n 0000 %m 02232086 n 0000 | leaf insects -02232086 05 n 02 Phyllium 0 genus_Phyllium 0 003 @ 01762525 n 0000 #m 02231930 n 0000 %m 02232223 n 0000 | type genus of the Phyllidae -02232223 05 n 02 walking_leaf 0 leaf_insect 0 002 @ 02231052 n 0000 #m 02232086 n 0000 | tropical insect having a flattened leaflike body; common in southern Asia and the East Indies -02232408 05 n 03 Exopterygota 0 subclass_Exopterygota 0 Hemimetabola 0 002 @ 08103777 n 0000 #m 02159271 n 0000 | subclass of insects characterized by gradual and usually incomplete metamorphosis -02232606 05 n 02 Dictyoptera 0 order_Dictyoptera 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02232951 n 0000 %m 02233096 n 0000 %m 02235575 n 0000 | in some classifications replaced by the orders (here suborders) Blattodea (cockroaches) and Manteodea (mantids); in former classifications often subsumed under a much broader order Orthoptera -02232951 05 n 01 dictyopterous_insect 0 004 @ 02159955 n 0000 #m 02232606 n 0000 ~ 02233338 n 0000 ~ 02236044 n 0000 | cockroaches and mantids -02233096 05 n 04 Blattodea 0 suborder_Blattodea 0 Blattaria 0 suborder_Blattaria 0 005 @ 01342529 n 0000 #m 02232606 n 0000 %m 02233338 n 0000 %m 02233577 n 0000 %m 02235321 n 0000 | cockroaches; in some classifications considered an order -02233338 05 n 02 cockroach 0 roach 1 007 @ 02232951 n 0000 #m 02233096 n 0000 ~ 02233943 n 0000 ~ 02234355 n 0000 ~ 02234570 n 0000 ~ 02234848 n 0000 ~ 02235205 n 0000 | any of numerous chiefly nocturnal insects; some are domestic pests -02233577 05 n 02 Blattidae 0 family_Blattidae 0 006 @ 01759182 n 0000 #m 02233096 n 0000 %m 02233767 n 0000 %m 02234181 n 0000 %m 02234719 n 0000 %m 02235078 n 0000 | domestic cockroaches -02233767 05 n 02 Blatta 0 genus_Blatta 0 003 @ 01762525 n 0000 #m 02233577 n 0000 %m 02233943 n 0000 | type genus of the Blattidae: cockroaches infesting buildings worldwide -02233943 05 n 05 oriental_cockroach 0 oriental_roach 0 Asiatic_cockroach 0 blackbeetle 0 Blatta_orientalis 0 002 @ 02233338 n 0000 #m 02233767 n 0000 | dark brown cockroach originally from orient now nearly cosmopolitan in distribution -02234181 05 n 02 Periplaneta 0 genus_Periplaneta 0 004 @ 01762525 n 0000 #m 02233577 n 0000 %m 02234355 n 0000 %m 02234570 n 0000 | cosmopolitan genus of large cockroaches -02234355 05 n 02 American_cockroach 0 Periplaneta_americana 0 002 @ 02233338 n 0000 #m 02234181 n 0000 | large reddish brown free-flying cockroach originally from southern United States but now widely distributed -02234570 05 n 02 Australian_cockroach 0 Periplaneta_australasiae 0 002 @ 02233338 n 0000 #m 02234181 n 0000 | widely distributed in warm countries -02234719 05 n 02 Blattella 0 genus_Blattella 0 003 @ 01762525 n 0000 #m 02233577 n 0000 %m 02234848 n 0000 | small cockroaches -02234848 05 n 05 German_cockroach 0 Croton_bug 0 crotonbug 0 water_bug 2 Blattella_germanica 0 002 @ 02233338 n 0000 #m 02234719 n 0000 | small light-brown cockroach brought to United States from Europe; a common household pest -02235078 05 n 02 Blaberus 0 genus_Blaberus 0 003 @ 01762525 n 0000 #m 02233577 n 0000 %m 02235205 n 0000 | giant cockroaches -02235205 05 n 01 giant_cockroach 0 002 @ 02233338 n 0000 #m 02235078 n 0000 | large tropical American cockroaches -02235321 05 n 02 Cryptocercidae 0 family_Cryptocercidae 0 003 @ 01759182 n 0000 #m 02233096 n 0000 %m 02235465 n 0000 | a family of Blattodea -02235465 05 n 02 Cryptocercus 0 genus_Cryptocercus 0 002 @ 01762525 n 0000 #m 02235321 n 0000 | cockroaches -02235575 05 n 02 Manteodea 0 suborder_Manteodea 0 003 @ 01342529 n 0000 #m 02232606 n 0000 %m 02235761 n 0000 | mantises; in former classifications considered a suborder of Orthoptera -02235761 05 n 04 Mantidae 0 family_Mantidae 0 Manteidae 0 family_Manteidae 0 003 @ 01759182 n 0000 #m 02235575 n 0000 %m 02235911 n 0000 | mantises -02235911 05 n 01 genus_Mantis 0 003 @ 01762525 n 0000 #m 02235761 n 0000 %m 02236044 n 0000 | type genus of the Mantidae: mantises -02236044 05 n 02 mantis 0 mantid 0 003 @ 02232951 n 0000 #m 02235911 n 0000 ~ 02236241 n 0000 | predacious long-bodied large-eyed insect of warm regions; rests with forelimbs raised as in prayer -02236241 05 n 03 praying_mantis 0 praying_mantid 0 Mantis_religioso 0 001 @ 02236044 n 0000 | the common mantis -02236355 05 n 01 bug 2 002 @ 02159955 n 0000 + 00421202 a 0101 | general term for any insect or similar creeping or crawling invertebrate -02236495 05 n 02 Hemiptera 0 order_Hemiptera 0 011 @ 01342529 n 0000 #m 02159271 n 0000 %m 02236896 n 0000 %m 02237239 n 0000 %m 02238474 n 0000 %m 02238743 n 0000 %m 02239347 n 0000 %m 02240223 n 0000 %m 02240706 n 0000 %m 02241184 n 0000 %m 02245592 n 0000 | plant bugs; bedbugs; some true bugs; also includes suborders Heteroptera (true bugs) and Homoptera (e.g., aphids, plant lice and cicadas) -02236896 05 n 04 hemipterous_insect 0 bug 1 hemipteran 0 hemipteron 0 008 @ 02159955 n 0000 #m 02236495 n 0000 ~ 02237424 n 0000 ~ 02238887 n 0000 ~ 02239528 n 0000 ~ 02240517 n 0000 ~ 02241008 n 0000 ~ 02241426 n 0000 | insects with sucking mouthparts and forewings thickened and leathery at the base; usually show incomplete metamorphosis -02237239 05 n 04 Miridae 0 family_Miridae 0 Capsidae 0 family_Capsidae 0 005 @ 01759182 n 0000 #m 02236495 n 0000 %m 02237581 n 0000 %m 02237730 n 0000 %m 02238113 n 0000 | leaf bugs -02237424 05 n 02 leaf_bug 0 plant_bug 0 003 @ 02236896 n 0000 ~ 02237581 n 0000 ~ 02238594 n 0000 | small bright-colored insect that feeds on plant juices -02237581 05 n 03 mirid_bug 0 mirid 0 capsid 1 004 @ 02237424 n 0000 #m 02237239 n 0000 ~ 02237868 n 0000 ~ 02238235 n 0000 | a variety of leaf bug -02237730 05 n 02 Poecilocapsus 0 genus_Poecilocapsus 0 003 @ 01762525 n 0000 #m 02237239 n 0000 %m 02237868 n 0000 | a genus of Miridae -02237868 05 n 03 four-lined_plant_bug 0 four-lined_leaf_bug 0 Poecilocapsus_lineatus 0 002 @ 02237581 n 0000 #m 02237730 n 0000 | yellow or orange leaf bug with four black stripes down the back; widespread in central and eastern North America -02238113 05 n 02 Lygus 0 genus_Lygus 0 003 @ 01762525 n 0000 #m 02237239 n 0000 %m 02238235 n 0000 | plant-sucking bugs -02238235 05 n 01 lygus_bug 0 003 @ 02237581 n 0000 #m 02238113 n 0000 ~ 02238358 n 0000 | vector of viral plant diseases -02238358 05 n 02 tarnished_plant_bug 0 Lygus_lineolaris 0 001 @ 02238235 n 0000 | widespread plant and fruit pest -02238474 05 n 02 Tingidae 0 family_Tingidae 0 003 @ 01759182 n 0000 #m 02236495 n 0000 %m 02238594 n 0000 | lace bugs -02238594 05 n 01 lace_bug 0 002 @ 02237424 n 0000 #m 02238474 n 0000 | small bug having body and wings covered with a lacy network of raised lines -02238743 05 n 02 Lygaeidae 0 family_Lygaeidae 0 004 @ 01759182 n 0000 #m 02236495 n 0000 %m 02238887 n 0000 %m 02239073 n 0000 | lygaeid bugs -02238887 05 n 02 lygaeid 0 lygaeid_bug 0 003 @ 02236896 n 0000 #m 02238743 n 0000 ~ 02239192 n 0000 | a true bug: usually bright-colored; pest of cultivated crops and some fruit trees -02239073 05 n 02 Blissus 0 genus_Blissus 0 003 @ 01762525 n 0000 #m 02238743 n 0000 %m 02239192 n 0000 | chinch bugs -02239192 05 n 02 chinch_bug 0 Blissus_leucopterus 0 002 @ 02238887 n 0000 #m 02239073 n 0000 | small black-and-white insect that feeds on cereal grasses -02239347 05 n 02 Coreidae 0 family_Coreidae 0 005 @ 01759182 n 0000 #m 02236495 n 0000 %m 02239528 n 0000 %m 02239659 n 0000 %m 02239934 n 0000 | squash bugs and leaf-footed bugs -02239528 05 n 02 coreid_bug 0 coreid 0 004 @ 02236896 n 0000 #m 02239347 n 0000 ~ 02239774 n 0000 ~ 02240068 n 0000 | a true bug -02239659 05 n 02 Anasa 0 genus_Anasa 0 003 @ 01762525 n 0000 #m 02239347 n 0000 %m 02239774 n 0000 | squash bugs -02239774 05 n 02 squash_bug 0 Anasa_tristis 0 002 @ 02239528 n 0000 #m 02239659 n 0000 | large black American bug that sucks sap of vines of the gourd family -02239934 05 n 02 Leptoglossus 0 genus_Leptoglossus 0 003 @ 01762525 n 0000 #m 02239347 n 0000 %m 02240068 n 0000 | leaf-footed bugs -02240068 05 n 02 leaf-footed_bug 0 leaf-foot_bug 0 002 @ 02239528 n 0000 #m 02239934 n 0000 | large sap-sucking bug with leaflike expansions on the legs -02240223 05 n 02 Cimicidae 0 family_Cimicidae 0 003 @ 01759182 n 0000 #m 02236495 n 0000 %m 02240377 n 0000 | wingless flat-bodied bloodsucking insects -02240377 05 n 02 Cimex 0 genus_Cimex 0 003 @ 01762525 n 0000 #m 02240223 n 0000 %m 02240517 n 0000 | type genus of the Cimicidae: bedbugs -02240517 05 n 04 bedbug 0 bed_bug 0 chinch 0 Cimex_lectularius 0 002 @ 02236896 n 0000 #m 02240377 n 0000 | bug of temperate regions that infests especially beds and feeds on human blood -02240706 05 n 02 Notonectidae 0 family_Notonectidae 0 003 @ 01759182 n 0000 #m 02236495 n 0000 %m 02240852 n 0000 | aquatic carnivorous insects -02240852 05 n 02 Notonecta 0 genus_Notonecta 0 003 @ 01762525 n 0000 #m 02240706 n 0000 %m 02241008 n 0000 | type genus of the Notonectidae: backswimmers -02241008 05 n 02 backswimmer 0 Notonecta_undulata 0 002 @ 02236896 n 0000 #m 02240852 n 0000 | predaceous aquatic insect that swims on its back and may inflict painful bites -02241184 05 n 02 Heteroptera 0 suborder_Heteroptera 0 009 @ 01342529 n 0000 #m 02236495 n 0000 %m 02241569 n 0000 %m 02242004 n 0000 %m 02242293 n 0000 %m 02242942 n 0000 %m 02243351 n 0000 %m 02244007 n 0000 %m 02244963 n 0000 | true bugs -02241426 05 n 01 true_bug 0 001 @ 02236896 n 0000 | any of various insects of the order Hemiptera and especially of the suborder Heteroptera -02241569 05 n 01 heteropterous_insect 0 006 @ 02159955 n 0000 #m 02241184 n 0000 ~ 02241799 n 0000 ~ 02244173 n 0000 ~ 02245111 n 0000 ~ 02245443 n 0000 | true bugs: insects whose forewings are membranous but have leathery tips -02241799 05 n 01 water_bug 0 005 @ 02241569 n 0000 ~ 02242137 n 0000 ~ 02242455 n 0000 ~ 02243209 n 0000 ~ 02243562 n 0000 | a true bug: large aquatic bug adapted to living in or on the surface of water -02242004 05 n 02 Belostomatidae 0 family_Belostomatidae 0 003 @ 01759182 n 0000 #m 02241184 n 0000 %m 02242137 n 0000 | water bugs -02242137 05 n 01 giant_water_bug 0 002 @ 02241799 n 0000 #m 02242004 n 0000 | large water bug with piercing and sucking mouthparts; feeds on young fishes -02242293 05 n 02 Nepidae 0 family_Nepidae 0 005 @ 01759182 n 0000 #m 02241184 n 0000 %m 02242455 n 0000 %m 02242669 n 0000 %m 02242816 n 0000 | water scorpions -02242455 05 n 01 water_scorpion 0 002 @ 02241799 n 0000 #m 02242293 n 0000 | long-legged aquatic insect having the front legs fitted for seizing and holding prey and the abdomen extended by a long breathing tube -02242669 05 n 02 Nepa 0 genus_Nepa 0 002 @ 01762525 n 0000 #m 02242293 n 0000 | type genus of the Nepidae: typical elongate-oval water scorpions -02242816 05 n 02 Ranatra 0 genus_Ranatra 0 002 @ 01762525 n 0000 #m 02242293 n 0000 | elongate very slender water scorpions -02242942 05 n 02 Corixidae 0 family_Corixidae 0 003 @ 01759182 n 0000 #m 02241184 n 0000 %m 02243065 n 0000 | water bugs -02243065 05 n 02 Corixa 0 genus_Corixa 0 003 @ 01762525 n 0000 #m 02242942 n 0000 %m 02243209 n 0000 | type genus of the Corixidae: boat bugs -02243209 05 n 02 water_boatman 0 boat_bug 1 002 @ 02241799 n 0000 #m 02243065 n 0000 | carnivorous aquatic bug having paddle-like hind legs -02243351 05 n 04 Gerrididae 0 family_Gerrididae 0 Gerridae 1 family_Gerridae 1 004 @ 01759182 n 0000 #m 02241184 n 0000 %m 02243562 n 0000 %m 02243744 n 0000 | an arthropod family that includes water striders -02243562 05 n 03 water_strider 0 pond-skater 0 water_skater 0 003 @ 02241799 n 0000 #m 02243351 n 0000 ~ 02243878 n 0000 | long-legged bug that skims about on the surface of water -02243744 05 n 02 Gerris 0 genus_Gerris 0 003 @ 01762525 n 0000 #m 02243351 n 0000 %m 02243878 n 0000 | type genus of the Gerrididae -02243878 05 n 02 common_pond-skater 0 Gerris_lacustris 0 002 @ 02243562 n 0000 #m 02243744 n 0000 | a variety of water strider -02244007 05 n 02 Reduviidae 0 family_Reduviidae 0 005 @ 01759182 n 0000 #m 02241184 n 0000 %m 02244173 n 0000 %m 02244396 n 0000 %m 02244670 n 0000 | assassin bugs -02244173 05 n 02 assassin_bug 0 reduviid 0 004 @ 02241569 n 0000 #m 02244007 n 0000 ~ 02244515 n 0000 ~ 02244797 n 0000 | a true bug: long-legged predacious bug living mostly on other insects; a few suck blood of mammals -02244396 05 n 02 Triatoma 0 genus_Triatoma 0 003 @ 01762525 n 0000 #m 02244007 n 0000 %m 02244515 n 0000 | conenoses -02244515 05 n 05 conenose 0 cone-nosed_bug 0 conenose_bug 0 big_bedbug 0 kissing_bug 0 002 @ 02244173 n 0000 #m 02244396 n 0000 | large bloodsucking bug -02244670 05 n 02 Arilus 0 genus_Arilus 0 003 @ 01762525 n 0000 #m 02244007 n 0000 %m 02244797 n 0000 | a genus of Reduviidae -02244797 05 n 02 wheel_bug 0 Arilus_cristatus 0 002 @ 02244173 n 0000 #m 02244670 n 0000 | large predatory North American bug that sucks the blood of other insects -02244963 05 n 02 Pyrrhocoridae 0 family_Pyrrhocoridae 0 004 @ 01759182 n 0000 #m 02241184 n 0000 %m 02245111 n 0000 %m 02245239 n 0000 | firebugs -02245111 05 n 01 firebug 0 002 @ 02241569 n 0000 #m 02244963 n 0000 | a true bug: brightly colored bug that can exude a stain -02245239 05 n 02 Dysdercus 0 genus_Dysdercus 0 003 @ 01762525 n 0000 #m 02244963 n 0000 %m 02245443 n 0000 | a genus of slender long-legged bugs that feed on the developing seeds of cotton and stain it -02245443 05 n 01 cotton_stainer 0 002 @ 02241569 n 0000 #m 02245239 n 0000 | a true bug: bug that damages and stains the lint of developing cotton -02245592 05 n 02 Homoptera 0 suborder_Homoptera 0 013 @ 01342529 n 0000 #m 02236495 n 0000 %m 02246011 n 0000 %m 02246284 n 0000 %m 02248147 n 0000 %m 02252039 n 0000 %m 02256010 n 0000 %m 02256365 n 0000 %m 02257536 n 0000 %m 02258780 n 0000 %m 02258910 n 0000 %m 02259565 n 0000 %m 02259844 n 0000 | plant lice (aphids); whiteflies; cicadas; leafhoppers; plant hoppers; scale insects and mealybugs; spittle insects -02246011 05 n 02 homopterous_insect 0 homopteran 0 009 @ 02159955 n 0000 #m 02245592 n 0000 ~ 02246628 n 0000 ~ 02248368 n 0000 ~ 02251775 n 0000 ~ 02256656 n 0000 ~ 02257715 n 0000 ~ 02259212 n 0000 ~ 02259377 n 0000 | insects having membranous forewings and hind wings -02246284 05 n 02 Aleyrodidae 0 family_Aleyrodidae 0 007 @ 01759182 n 0000 #m 02245592 n 0000 %m 02246487 n 0000 %m 02246628 n 0000 %m 02246822 n 0000 %m 02247076 n 0000 %m 02247363 n 0000 | whiteflies -02246487 05 n 02 Aleyrodes 0 genus_Aleyrodes 0 003 @ 01762525 n 0000 #m 02246284 n 0000 %m 02246941 n 0000 | type genus of the Aleyrodidae -02246628 05 n 01 whitefly 0 005 @ 02246011 n 0000 #m 02246284 n 0000 ~ 02246941 n 0000 ~ 02247216 n 0000 ~ 02247511 n 0000 | minute insect that feeds on plant juices; related to scale insects -02246822 05 n 02 Dialeurodes 0 genus_Dialeurodes 0 002 @ 01762525 n 0000 #m 02246284 n 0000 | a genus of Aleyrodidae -02246941 05 n 02 citrus_whitefly 0 Dialeurodes_citri 0 002 @ 02246628 n 0000 #m 02246487 n 0000 | whitefly that attacks citrus trees -02247076 05 n 02 Trialeurodes 0 genus_Trialeurodes 0 003 @ 01762525 n 0000 #m 02246284 n 0000 %m 02247216 n 0000 | a genus of Aleyrodidae -02247216 05 n 02 greenhouse_whitefly 0 Trialeurodes_vaporariorum 0 002 @ 02246628 n 0000 #m 02247076 n 0000 | whitefly that inhabits greenhouses -02247363 05 n 02 Bemisia 0 genus_Bemisia 0 004 @ 01762525 n 0000 #m 02246284 n 0000 %m 02247511 n 0000 %m 02247655 n 0000 | sweet-potato whitefly -02247511 05 n 01 sweet-potato_whitefly 0 004 @ 02246628 n 0000 #m 02247363 n 0000 ~ 02247655 n 0000 ~ 02248062 n 0000 | a variety of whitefly -02247655 05 n 03 superbug 1 Bemisia_tabaci 0 poinsettia_strain 0 002 @ 02247511 n 0000 #m 02247363 n 0000 | a strain of pest accidentally imported into Florida from the Middle East then spread to California where it is a very serious pest feeding on almost all vegetable crops and poinsettias -02247950 05 n 01 superbug 0 001 @ 01348530 n 0000 | a strain of bacteria that is resistant to all antibiotics -02248062 05 n 01 cotton_strain 0 001 @ 02247511 n 0000 | feeds primarily on cotton -02248147 05 n 02 Coccoidea 0 superfamily_Coccoidea 0 007 @ 01759182 n 0000 #m 02245592 n 0000 %m 02248368 n 0000 %m 02248744 n 0000 %m 02249365 n 0000 %m 02249995 n 0000 %m 02250464 n 0000 | scale insects and mealybugs -02248368 05 n 01 coccid_insect 0 004 @ 02246011 n 0000 #m 02248147 n 0000 ~ 02248510 n 0000 ~ 02250822 n 0000 | scale insects and mealybugs -02248510 05 n 01 scale_insect 0 005 @ 02248368 n 0000 ~ 02248887 n 0000 ~ 02249256 n 0000 ~ 02249515 n 0000 ~ 02250280 n 0000 | small homopterous insect that usually lives and feeds on plants and secretes a protective waxy covering -02248744 05 n 02 Coccidae 0 family_Coccidae 0 004 @ 01759182 n 0000 #m 02248147 n 0000 %m 02248887 n 0000 %m 02249011 n 0000 | scale insects -02248887 05 n 01 soft_scale 0 003 @ 02248510 n 0000 #m 02248744 n 0000 ~ 02249134 n 0000 | an insect active in all stages -02249011 05 n 01 genus_Coccus 0 003 @ 01762525 n 0000 #m 02248744 n 0000 %m 02249134 n 0000 | type genus of the Coccidae -02249134 05 n 02 brown_soft_scale 0 Coccus_hesperidum 0 002 @ 02248887 n 0000 #m 02249011 n 0000 | pest on citrus trees -02249256 05 n 01 wax_insect 0 001 @ 02248510 n 0000 | any of various insects that secrete a waxy substance -02249365 05 n 02 Diaspididae 0 family_Diaspididae 0 004 @ 01759182 n 0000 #m 02248147 n 0000 %m 02249515 n 0000 %m 02249673 n 0000 | armored scales -02249515 05 n 01 armored_scale 0 003 @ 02248510 n 0000 #m 02249365 n 0000 ~ 02249809 n 0000 | insect having a firm covering of wax especially in the female -02249673 05 n 02 Aspidiotus 0 genus_Aspidiotus 0 003 @ 01762525 n 0000 #m 02249365 n 0000 %m 02249809 n 0000 | a genus of Diaspididae -02249809 05 n 02 San_Jose_scale 0 Aspidiotus_perniciosus 0 002 @ 02249515 n 0000 #m 02249673 n 0000 | small east Asian insect naturalized in the United States that damages fruit trees -02249995 05 n 02 Dactylopiidae 0 family_Dactylopiidae 0 003 @ 01759182 n 0000 #m 02248147 n 0000 %m 02250133 n 0000 | cochineal insects -02250133 05 n 02 Dactylopius 0 genus_Dactylopius 0 003 @ 01762525 n 0000 #m 02249995 n 0000 %m 02250280 n 0000 | type genus of the Dactylopiidae -02250280 05 n 03 cochineal_insect 0 cochineal 0 Dactylopius_coccus 0 002 @ 02248510 n 0000 #m 02250133 n 0000 | Mexican red scale insect that feeds on cacti; the source of a red dye -02250464 05 n 02 Pseudococcidae 0 family_Pseudococcidae 0 005 @ 01759182 n 0000 #m 02248147 n 0000 %m 02250653 n 0000 %m 02250822 n 0000 %m 02251452 n 0000 | scalelike insects: mealybugs -02250653 05 n 02 Pseudococcus 0 genus_Pseudococcus 0 004 @ 01762525 n 0000 #m 02250464 n 0000 %m 02251067 n 0000 %m 02251233 n 0000 | type genus of the Pseudococcidae -02250822 05 n 02 mealybug 0 mealy_bug 0 005 @ 02248368 n 0000 #m 02250464 n 0000 ~ 02251067 n 0000 ~ 02251233 n 0000 ~ 02251593 n 0000 | scalelike plant-eating insect coated with a powdery waxy secretion; destructive especially of fruit trees -02251067 05 n 03 citrophilous_mealybug 0 citrophilus_mealybug 0 Pseudococcus_fragilis 0 002 @ 02250822 n 0000 #m 02250653 n 0000 | destructive especially to citrus -02251233 05 n 03 Comstock_mealybug 0 Comstock's_mealybug 0 Pseudococcus_comstocki 0 002 @ 02250822 n 0000 #m 02250653 n 0000 | Asiatic insect introduced accidentally into United States; pest on citrus and apple trees -02251452 05 n 02 Planococcus 0 genus_Planococcus 0 003 @ 01762525 n 0000 #m 02250464 n 0000 %m 02251593 n 0000 | a genus of Pseudococcidae -02251593 05 n 02 citrus_mealybug 0 Planococcus_citri 0 002 @ 02250822 n 0000 #m 02251452 n 0000 | feeds on a wide variety of cultivated plants but especially destructive to citrus -02251775 05 n 02 plant_louse 0 louse 2 007 @ 02246011 n 0000 + 00422374 a 0201 ~ 02252226 n 0000 ~ 02254697 n 0000 ~ 02255855 n 0000 ~ 02256172 n 0000 ~ 14218293 n 0000 | any of several small insects especially aphids that feed by sucking the juices from plants -02252039 05 n 02 Aphidoidea 0 superfamily_Aphidoidea 0 006 @ 01759182 n 0000 #m 02245592 n 0000 %m 02252226 n 0000 %m 02252429 n 0000 %m 02254370 n 0000 %m 02255567 n 0000 | plant lice -02252226 05 n 01 aphid 0 007 @ 02251775 n 0000 #m 02252039 n 0000 ~ 02252799 n 0000 ~ 02252972 n 0000 ~ 02253127 n 0000 ~ 02253494 n 0000 ~ 02253715 n 0000 | any of various small plant-sucking insects -02252429 05 n 02 Aphididae 0 family_Aphididae 0 005 @ 01759182 n 0000 #m 02252039 n 0000 %m 02252608 n 0000 %m 02253592 n 0000 %m 02254110 n 0000 | small soft-bodied plant lice -02252608 05 n 02 Aphis 0 genus_Aphis 0 004 @ 01762525 n 0000 #m 02252429 n 0000 %m 02252799 n 0000 %m 02252972 n 0000 | type genus of the Aphididae: injurious to fruit trees and vegetables -02252799 05 n 03 apple_aphid 0 green_apple_aphid 0 Aphis_pomi 0 002 @ 02252226 n 0000 #m 02252608 n 0000 | bright green aphid; feeds on and causes curling of apple leaves -02252972 05 n 03 blackfly 2 bean_aphid 0 Aphis_fabae 0 002 @ 02252226 n 0000 #m 02252608 n 0000 | blackish aphid that infests e.g. beans and sugar beets -02253127 05 n 01 greenfly 0 003 @ 02252226 n 0000 ~ 02253264 n 0000 ~ 02253391 n 0000 | greenish aphid; pest on garden and crop plants -02253264 05 n 01 green_peach_aphid 0 001 @ 02253127 n 0000 | yellowish green aphid that is especially destructive to peaches -02253391 05 n 01 pale_chrysanthemum_aphid 0 001 @ 02253127 n 0000 | important pest of chrysanthemums -02253494 05 n 01 ant_cow 0 001 @ 02252226 n 0000 | excretes a honeylike substance eaten by ants -02253592 05 n 02 Eriosoma 0 genus_Eriosoma 0 003 @ 01762525 n 0000 #m 02252429 n 0000 %m 02253913 n 0000 | woolly aphids -02253715 05 n 02 woolly_aphid 0 woolly_plant_louse 0 003 @ 02252226 n 0000 ~ 02253913 n 0000 ~ 02254246 n 0000 | secretes a waxy substance like a mass of fine curly white cotton or woolly threads -02253913 05 n 03 woolly_apple_aphid 0 American_blight 0 Eriosoma_lanigerum 0 002 @ 02253715 n 0000 #m 02253592 n 0000 | primarily a bark feeder on aerial parts and roots of apple and other trees -02254110 05 n 02 Prociphilus 0 genus_Prociphilus 0 003 @ 01762525 n 0000 #m 02252429 n 0000 %m 02254246 n 0000 | a genus of Aphididae -02254246 05 n 02 woolly_alder_aphid 0 Prociphilus_tessellatus 0 002 @ 02253715 n 0000 #m 02254110 n 0000 | attacks alders -02254370 05 n 02 Adelgidae 0 family_Adelgidae 0 005 @ 01759182 n 0000 #m 02252039 n 0000 %m 02254531 n 0000 %m 02254697 n 0000 %m 02255144 n 0000 | plant lice -02254531 05 n 02 Adelges 0 genus_Adelges 0 004 @ 01762525 n 0000 #m 02254370 n 0000 %m 02254901 n 0000 %m 02255023 n 0000 | type genus of the Adelgidae: plant lice -02254697 05 n 01 adelgid 0 006 @ 02251775 n 0000 #m 02254370 n 0000 ~ 02254901 n 0000 ~ 02255023 n 0000 ~ 02255270 n 0000 ~ 02255391 n 0000 | any of various insects that feed and form galls on conifers -02254901 05 n 02 balsam_woolly_aphid 0 Adelges_piceae 0 002 @ 02254697 n 0000 #m 02254531 n 0000 | a variety of adelgid -02255023 05 n 02 spruce_gall_aphid 0 Adelges_abietis 0 002 @ 02254697 n 0000 #m 02254531 n 0000 | a variety of adelgid -02255144 05 n 02 Pineus 0 genus_Pineus 0 003 @ 01762525 n 0000 #m 02254370 n 0000 %m 02255270 n 0000 | a genus of Adelgidae -02255270 05 n 02 pine_leaf_aphid 0 Pineus_pinifoliae 0 002 @ 02254697 n 0000 #m 02255144 n 0000 | a variety of adelgid -02255391 05 n 01 woolly_adelgid 0 001 @ 02254697 n 0000 | an insect that feeds on hemlocks; its egg sacs are small fuzzy white balls like artificial snow on a Christmas tree -02255567 05 n 02 Phylloxeridae 0 family_Phylloxeridae 0 003 @ 01759182 n 0000 #m 02252039 n 0000 %m 02255698 n 0000 | plant lice -02255698 05 n 02 Phylloxera 0 genus_Phylloxera 0 003 @ 01762525 n 0000 #m 02255567 n 0000 %m 02255855 n 0000 | type genus of the Phylloxeridae: plant lice -02255855 05 n 03 grape_louse 0 grape_phylloxera 0 Phylloxera_vitifoleae 0 002 @ 02251775 n 0000 #m 02255698 n 0000 | destructive to various grape plants -02256010 05 n 04 Psyllidae 0 family_Psyllidae 0 Chermidae 0 family_Chermidae 0 003 @ 01759182 n 0000 #m 02245592 n 0000 %m 02256172 n 0000 | jumping plant lice -02256172 05 n 03 jumping_plant_louse 0 psylla 0 psyllid 0 002 @ 02251775 n 0000 #m 02256010 n 0000 | small active cicada-like insect with hind legs adapted for leaping; feeds on plant juices -02256365 05 n 02 Cicadidae 0 family_Cicadidae 0 006 @ 01759182 n 0000 #m 02245592 n 0000 %m 02256542 n 0000 %m 02256656 n 0000 %m 02256882 n 0000 %m 02257149 n 0000 | cicadas -02256542 05 n 01 genus_Cicada 0 002 @ 01762525 n 0000 #m 02256365 n 0000 | type genus of the Cicadidae: cicadas -02256656 05 n 02 cicada 0 cicala 0 004 @ 02246011 n 0000 #m 02256365 n 0000 ~ 02257003 n 0000 ~ 02257284 n 0000 | stout-bodied insect with large membranous wings; male has drum-like organs for producing a high-pitched drone -02256882 05 n 02 Tibicen 0 genus_Tibicen 0 003 @ 01762525 n 0000 #m 02256365 n 0000 %m 02257003 n 0000 | harvest flies -02257003 05 n 02 dog-day_cicada 0 harvest_fly 0 002 @ 02256656 n 0000 #m 02256882 n 0000 | its distinctive song is heard during July and August -02257149 05 n 02 Magicicada 0 genus_Magicicada 0 003 @ 01762525 n 0000 #m 02256365 n 0000 %m 02257284 n 0000 | seventeen-year locust -02257284 05 n 03 seventeen-year_locust 0 periodical_cicada 0 Magicicada_septendecim 0 002 @ 02256656 n 0000 #m 02257149 n 0000 | North American cicada; appears in great numbers at infrequent intervals because the nymphs take 13 to 17 years to mature -02257536 05 n 02 Cercopidae 0 family_Cercopidae 0 005 @ 01759182 n 0000 #m 02245592 n 0000 %m 02257715 n 0000 %m 02258065 n 0000 %m 02258354 n 0000 | froghoppers or spittlebugs -02257715 05 n 02 spittle_insect 0 spittlebug 0 006 @ 02246011 n 0000 #m 02257536 n 0000 ~ 02257985 n 0000 ~ 02258198 n 0000 ~ 02258508 n 0000 ~ 02258629 n 0000 | small leaping herbivorous insect that lives in a mass of protective froth which it and its larvae secrete -02257985 05 n 01 froghopper 0 001 @ 02257715 n 0000 | a variety of spittlebug -02258065 05 n 02 Philaenus 0 genus_Philaenus 0 003 @ 01762525 n 0000 #m 02257536 n 0000 %m 02258198 n 0000 | a genus of Cercopidae -02258198 05 n 02 meadow_spittlebug 0 Philaenus_spumarius 0 002 @ 02257715 n 0000 #m 02258065 n 0000 | North American insect that severely damages grasses -02258354 05 n 02 Aphrophora 0 genus_Aphrophora 0 004 @ 01762525 n 0000 #m 02257536 n 0000 %m 02258508 n 0000 %m 02258629 n 0000 | a genus of Cercopidae -02258508 05 n 01 pine_spittlebug 0 002 @ 02257715 n 0000 #m 02258354 n 0000 | North American insect that attacks pines -02258629 05 n 02 Saratoga_spittlebug 0 Aphrophora_saratogensis 0 002 @ 02257715 n 0000 #m 02258354 n 0000 | feeds on pines in northern United States -02258780 05 n 02 Cicadellidae 0 family_Cicadellidae 0 003 @ 01759182 n 0000 #m 02245592 n 0000 %m 02259212 n 0000 | leafhoppers -02258910 05 n 02 Jassidae 0 family_Jassidae 0 003 @ 01759182 n 0000 #m 02245592 n 0000 %m 02259212 n 0000 | family of small leafhoppers coextensive with the Cicadellidae and not distinguished from it in some classifications -02259136 05 n 01 jassid 0 001 @ 02259212 n 0000 | a variety of leafhopper -02259212 05 n 01 leafhopper 0 004 @ 02246011 n 0000 #m 02258780 n 0000 #m 02258910 n 0000 ~ 02259136 n 0000 | small leaping insect that sucks the juices of plants -02259377 05 n 02 plant_hopper 0 planthopper 0 003 @ 02246011 n 0000 ~ 02259708 n 0000 ~ 02259987 n 0000 | related to the leafhoppers and spittlebugs but rarely damages cultivated plants -02259565 05 n 02 Membracidae 0 family_Membracidae 0 003 @ 01759182 n 0000 #m 02245592 n 0000 %m 02259708 n 0000 | plant hoppers: treehoppers -02259708 05 n 01 treehopper 0 002 @ 02259377 n 0000 #m 02259565 n 0000 | small leaping insect that sucks juices of branches and twigs -02259844 05 n 02 Fulgoridae 0 family_Fulgoridae 0 003 @ 01759182 n 0000 #m 02245592 n 0000 %m 02259987 n 0000 | plant hoppers: lantern flies -02259987 05 n 02 lantern_fly 0 lantern-fly 0 002 @ 02259377 n 0000 #m 02259844 n 0000 | large brightly marked tropical insect with a process like a snout that was formerly thought to emit light -02260183 05 n 04 Psocoptera 0 order_Psocoptera 0 Corrodentia 0 order_Corrodentia 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02260421 n 0000 %m 02260623 n 0000 %m 02261184 n 0000 | an order of insects: includes booklice and bark-lice -02260421 05 n 01 psocopterous_insect 0 004 @ 02159955 n 0000 #m 02260183 n 0000 ~ 02260863 n 0000 ~ 02261419 n 0000 | small soft-bodied insect with chewing mouthparts and either no wings or two pairs -02260623 05 n 02 Psocidae 0 family_Psocidae 0 005 @ 01759182 n 0000 #m 02260183 n 0000 %m 02260863 n 0000 %m 02261286 n 0000 %m 02261630 n 0000 | a family of small soft-bodied insects that feed on decaying vegetation; related to booklice -02260863 05 n 01 psocid 0 003 @ 02260421 n 0000 #m 02260623 n 0000 ~ 02261063 n 0000 | small winged insect living on the bark and leaves of trees and feeding on e.g. fungi and decaying plant matter -02261063 05 n 02 bark-louse 0 bark_louse 0 001 @ 02260863 n 0000 | any of several insects living on the bark of plants -02261184 05 n 02 Atropidae 0 family_Atropidae 0 002 @ 01759182 n 0000 #m 02260183 n 0000 | booklice -02261286 05 n 02 Liposcelis 0 genus_Liposcelis 0 003 @ 01762525 n 0000 #m 02260623 n 0000 %m 02261419 n 0000 | a genus of Psocidae -02261419 05 n 04 booklouse 0 book_louse 0 deathwatch 2 Liposcelis_divinatorius 0 003 @ 02260421 n 0000 #m 02261286 n 0000 ~ 02261757 n 0000 | minute wingless psocopterous insects injurious to books and papers -02261630 05 n 02 Trogium 0 genus_Trogium 0 003 @ 01762525 n 0000 #m 02260623 n 0000 %m 02261757 n 0000 | a genus of Psocidae -02261757 05 n 02 common_booklouse 0 Trogium_pulsatorium 0 002 @ 02261419 n 0000 #m 02261630 n 0000 | a variety of booklouse -02261883 05 n 04 Ephemeroptera 0 order_Ephemeroptera 0 Ephemerida 0 order_Ephemerida 0 004 @ 01342529 n 0000 #m 02159271 n 0000 %m 02262178 n 0000 %m 02262324 n 0000 | mayflies -02262062 05 n 01 Plectophera 0 001 @ 02262178 n 0000 | in some former classifications: name for the Ephemeroptera -02262178 05 n 02 ephemerid 0 ephemeropteran 0 004 @ 02159955 n 0000 #m 02261883 n 0000 ~ 02262062 n 0000 ~ 02262449 n 0000 | short-lived insect -02262324 05 n 02 Ephemeridae 0 family_Ephemeridae 0 003 @ 01759182 n 0000 #m 02261883 n 0000 %m 02262449 n 0000 | mayflies -02262449 05 n 03 mayfly 0 dayfly 0 shadfly 0 002 @ 02262178 n 0000 #m 02262324 n 0000 | slender insect with delicate membranous wings having an aquatic larval stage and terrestrial adult stage usually lasting less than two days -02262679 05 n 02 Plecoptera 0 order_Plecoptera 0 003 @ 01342529 n 0000 #m 02159271 n 0000 %m 02262803 n 0000 | stoneflies -02262803 05 n 03 stonefly 0 stone_fly 0 plecopteran 0 002 @ 02159955 n 0000 #m 02262679 n 0000 | primitive winged insect with a flattened body; used as bait by fishermen; aquatic gilled larvae are carnivorous and live beneath stones -02263038 05 n 02 Neuroptera 0 order_Neuroptera 0 009 @ 01342529 n 0000 #m 02159271 n 0000 %m 02263378 n 0000 %m 02263717 n 0000 %m 02264734 n 0000 %m 02265177 n 0000 %m 02265471 n 0000 %m 02267356 n 0000 %m 02267644 n 0000 | an order of insects including: lacewings; antlions; dobsonflies; alderflies; fish flies; mantispids; spongeflies -02263378 05 n 03 neuropteron 0 neuropteran 0 neuropterous_insect 0 010 @ 02159955 n 0000 #m 02263038 n 0000 ~ 02264021 n 0000 ~ 02264363 n 0000 ~ 02266050 n 0000 ~ 02266421 n 0000 ~ 02266864 n 0000 ~ 02267208 n 0000 ~ 02267483 n 0000 ~ 02267826 n 0000 | insect having biting mouthparts and four large membranous wings with netlike veins -02263717 05 n 02 Myrmeleontidae 0 family_Myrmeleontidae 0 003 @ 01759182 n 0000 #m 02263038 n 0000 %m 02263848 n 0000 | antlions -02263848 05 n 02 Myrmeleon 0 genus_Myrmeleon 0 004 @ 01762525 n 0000 #m 02263717 n 0000 %m 02264021 n 0000 %m 02264232 n 0000 | type genus of the Myrmeleontidae: antlions -02264021 05 n 03 ant_lion 0 antlion 0 antlion_fly 0 002 @ 02263378 n 0000 #m 02263848 n 0000 | winged insect resembling a dragonfly; the larvae (doodlebugs) dig conical pits where they wait to catch e.g. ants -02264232 05 n 03 doodlebug 0 ant_lion 1 antlion 1 002 @ 02311060 n 0000 #m 02263848 n 0000 | the larva of any of several insects -02264363 05 n 02 lacewing 0 lacewing_fly 0 003 @ 02263378 n 0000 ~ 02264885 n 0000 ~ 02265330 n 0000 | any of two families of insects with gauzy wings (Chrysopidae and Hemerobiidae); larvae feed on insect pests such as aphids -02264591 05 n 02 aphid_lion 0 aphis_lion 0 003 @ 02311060 n 0000 #m 02264734 n 0000 #m 02265177 n 0000 | carnivorous larva of lacewing flies -02264734 05 n 02 Chrysopidae 0 family_Chrysopidae 0 004 @ 01759182 n 0000 #m 02263038 n 0000 %m 02264591 n 0000 %m 02264885 n 0000 | green lacewings -02264885 05 n 03 green_lacewing 0 chrysopid 0 stink_fly 0 003 @ 02264363 n 0000 #m 02264734 n 0000 ~ 02265076 n 0000 | pale green unpleasant-smelling lacewing fly having carnivorous larvae -02265076 05 n 02 goldeneye 2 golden-eyed_fly 0 001 @ 02264885 n 0000 | a variety of green lacewing -02265177 05 n 02 Hemerobiidae 0 family_Hemerobiidae 0 004 @ 01759182 n 0000 #m 02263038 n 0000 %m 02264591 n 0000 %m 02265330 n 0000 | brown lacewings -02265330 05 n 03 brown_lacewing 0 hemerobiid 0 hemerobiid_fly 0 002 @ 02264363 n 0000 #m 02265177 n 0000 | small dark-colored lacewing fly -02265471 05 n 02 Megaloptera 0 suborder_Megaloptera 0 005 @ 01342529 n 0000 #m 02263038 n 0000 %m 02265717 n 0000 %m 02266580 n 0000 %m 02267019 n 0000 | in some classifications considered a separate order: alderflies; dobsonflies; snake flies -02265717 05 n 02 Corydalidae 0 family_Corydalidae 0 004 @ 01759182 n 0000 #m 02265471 n 0000 %m 02265860 n 0000 %m 02266421 n 0000 | dobsons -02265860 05 n 04 Corydalus 0 genus_Corydalus 0 Corydalis 0 genus_Corydalis 0 004 @ 01762525 n 0000 #m 02265717 n 0000 %m 02266050 n 0000 %m 02266269 n 0000 | type genus of the Corydalidae -02266050 05 n 04 dobson 1 dobsonfly 0 dobson_fly 0 Corydalus_cornutus 0 002 @ 02263378 n 0000 #m 02265860 n 0000 | large soft-bodied insect having long slender mandibles in the male; aquatic larvae often used as bait -02266269 05 n 02 hellgrammiate 0 dobson 2 002 @ 02311060 n 0000 #m 02265860 n 0000 | large brown aquatic larva of the dobsonfly; used as fishing bait -02266421 05 n 02 fish_fly 0 fish-fly 0 002 @ 02263378 n 0000 #m 02265717 n 0000 | similar to but smaller than the dobsonfly; larvae are used as fishing bait -02266580 05 n 02 Sialidae 0 family_Sialidae 0 003 @ 01759182 n 0000 #m 02265471 n 0000 %m 02266732 n 0000 | an arthropod family including: alderflies -02266732 05 n 02 Sialis 0 genus_Sialis 0 003 @ 01762525 n 0000 #m 02266580 n 0000 %m 02266864 n 0000 | type genus of the Sialidae -02266864 05 n 03 alderfly 0 alder_fly 0 Sialis_lutaria 0 002 @ 02263378 n 0000 #m 02266732 n 0000 | dark-colored insect having predaceous aquatic larvae -02267019 05 n 02 Raphidiidae 0 family_Raphidiidae 0 003 @ 01759182 n 0000 #m 02265471 n 0000 %m 02267208 n 0000 | a family of arthropods of the suborder Megaloptera, including snakeflies -02267208 05 n 01 snakefly 0 002 @ 02263378 n 0000 #m 02267019 n 0000 | predatory insect of western North America having a long necklike prothorax -02267356 05 n 02 Mantispidae 0 family_Mantispidae 0 003 @ 01759182 n 0000 #m 02263038 n 0000 %m 02267483 n 0000 | mantispids -02267483 05 n 01 mantispid 0 002 @ 02263378 n 0000 #m 02267356 n 0000 | insect that resembles a mantis; larvae are parasites in the nests of spiders and wasps -02267644 05 n 02 Sisyridae 0 family_Sisyridae 0 003 @ 01759182 n 0000 #m 02263038 n 0000 %m 02267826 n 0000 | an arthropod family of the order Neuroptera that includes spongeflies -02267826 05 n 02 spongefly 0 spongillafly 0 002 @ 02263378 n 0000 #m 02267644 n 0000 | hairy-bodied insect whose larvae feed on freshwater sponges -02267975 05 n 02 Odonata 0 order_Odonata 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02268148 n 0000 %m 02268334 n 0000 %m 02268746 n 0000 | dragonflies and damselflies -02268148 05 n 01 odonate 0 004 @ 02159955 n 0000 #m 02267975 n 0000 ~ 02268443 n 0000 ~ 02268853 n 0000 | large primitive predatory aquatic insect having two pairs of membranous wings -02268334 05 n 02 Anisoptera 0 suborder_Anisoptera 0 002 @ 01342529 n 0000 #m 02267975 n 0000 | dragonflies -02268443 05 n 08 dragonfly 0 darning_needle 0 devil's_darning_needle 0 sewing_needle 0 snake_feeder 0 snake_doctor 0 mosquito_hawk 0 skeeter_hawk 0 001 @ 02268148 n 0000 | slender-bodied non-stinging insect having iridescent wings that are outspread at rest; adults and nymphs feed on mosquitoes etc. -02268746 05 n 02 Zygoptera 0 suborder_Zygoptera 0 002 @ 01342529 n 0000 #m 02267975 n 0000 | damselflies -02268853 05 n 01 damselfly 0 001 @ 02268148 n 0000 | slender non-stinging insect similar to but smaller than the dragonfly but having wings folded when at rest -02269015 05 n 02 Trichoptera 0 order_Trichoptera 0 004 @ 01342529 n 0000 #m 02159271 n 0000 %m 02269196 n 0000 %m 02269657 n 0000 | an order of insects consisting of caddis flies -02269196 05 n 03 trichopterous_insect 0 trichopteran 0 trichopteron 0 003 @ 02159955 n 0000 #m 02269015 n 0000 ~ 02269340 n 0000 | caddis fly -02269340 05 n 04 caddis_fly 0 caddis-fly 0 caddice_fly 0 caddice-fly 0 001 @ 02269196 n 0000 | small moth-like insect having two pairs of hairy membranous wings and aquatic larvae -02269522 05 n 01 caseworm 0 002 @ 02311060 n 0000 ~ 02269657 n 0000 | insect larva that constructs a protective case around its body -02269657 05 n 02 caddisworm 0 strawworm 2 002 @ 02269522 n 0000 #m 02269015 n 0000 | larva of the caddis fly; constructs a case of silk covered with sand or plant debris -02269829 05 n 02 Thysanura 0 order_Thysanura 0 005 @ 01342529 n 0000 #m 02159271 n 0000 %m 02270011 n 0000 %m 02270326 n 0000 %m 02271087 n 0000 | firebrats; silverfish; machilids -02270011 05 n 02 thysanuran_insect 0 thysanuron 0 005 @ 02159955 n 0000 #m 02269829 n 0000 ~ 02270200 n 0000 ~ 02270623 n 0000 ~ 02271222 n 0000 | primitive wingless insects: bristletail -02270200 05 n 01 bristletail 0 002 @ 02270011 n 0000 ~ 02270945 n 0000 | small wingless insect with a long bristlelike tail -02270326 05 n 02 Lepismatidae 0 family_Lepismatidae 0 004 @ 01759182 n 0000 #m 02269829 n 0000 %m 02270473 n 0000 %m 02270810 n 0000 | firebrats -02270473 05 n 02 Lepisma 0 genus_Lepisma 0 003 @ 01762525 n 0000 #m 02270326 n 0000 %m 02270623 n 0000 | type genus of the Lepismatidae: silverfish -02270623 05 n 02 silverfish 2 Lepisma_saccharina 0 002 @ 02270011 n 0000 #m 02270473 n 0000 | silver-grey wingless insect found in houses feeding on book bindings and starched clothing -02270810 05 n 02 Thermobia 0 genus_Thermobia 0 003 @ 01762525 n 0000 #m 02270326 n 0000 %m 02270945 n 0000 | a genus of Lepismatidae -02270945 05 n 02 firebrat 0 Thermobia_domestica 0 002 @ 02270200 n 0000 #m 02270810 n 0000 | lives in warm moist areas e.g. around furnaces -02271087 05 n 02 Machilidae 0 family_Machilidae 0 003 @ 01759182 n 0000 #m 02269829 n 0000 %m 02271222 n 0000 | jumping bristletails -02271222 05 n 02 jumping_bristletail 0 machilid 0 002 @ 02270011 n 0000 #m 02271087 n 0000 | wingless insect living in dark moist places as under dead tree trunks; they make erratic leaps when disturbed -02271427 05 n 02 Thysanoptera 0 order_Thysanoptera 0 004 @ 01342529 n 0000 #m 02159271 n 0000 %m 02271570 n 0000 %m 02271740 n 0000 | thrips -02271570 05 n 03 thysanopter 0 thysanopteron 0 thysanopterous_insect 0 003 @ 02159955 n 0000 #m 02271427 n 0000 ~ 02271897 n 0000 | an insect of the order Thysanoptera -02271740 05 n 02 Thripidae 0 family_Thripidae 0 005 @ 01759182 n 0000 #m 02271427 n 0000 %m 02271897 n 0000 %m 02272152 n 0000 %m 02272428 n 0000 | thrips -02271897 05 n 03 thrips 0 thrip 0 thripid 0 004 @ 02271570 n 0000 #m 02271740 n 0000 ~ 02272286 n 0000 ~ 02272552 n 0000 | any of various small to minute sucking insects with narrow feathery wings if any; they feed on plant sap and many are destructive -02272152 05 n 02 Frankliniella 0 genus_Frankliniella 0 003 @ 01762525 n 0000 #m 02271740 n 0000 %m 02272286 n 0000 | tobacco thrips -02272286 05 n 02 tobacco_thrips 0 Frankliniella_fusca 0 002 @ 02271897 n 0000 #m 02272152 n 0000 | injurious to growing tobacco and peanuts -02272428 05 n 01 genus_Thrips 0 003 @ 01762525 n 0000 #m 02271740 n 0000 %m 02272552 n 0000 | type genus of the Thripidae -02272552 05 n 03 onion_thrips 0 onion_louse 0 Thrips_tobaci 0 002 @ 02271897 n 0000 #m 02272428 n 0000 | injurious to onion plants and sometimes tobacco -02272707 05 n 02 Dermaptera 0 order_Dermaptera 0 004 @ 01342529 n 0000 #m 02159271 n 0000 %m 02272871 n 0000 %m 02273120 n 0000 | earwigs and a few related forms -02272871 05 n 01 earwig 0 003 @ 02159955 n 0000 #m 02272707 n 0000 ~ 02273392 n 0000 | any of numerous insects of the order Dermaptera having elongate bodies and slender many-jointed antennae and a pair of large pincers at the rear of the abdomen -02273120 05 n 02 Forficulidae 0 family_Forficulidae 0 003 @ 01759182 n 0000 #m 02272707 n 0000 %m 02273254 n 0000 | typical earwigs -02273254 05 n 02 Forficula 0 genus_Forficula 0 003 @ 01762525 n 0000 #m 02273120 n 0000 %m 02273392 n 0000 | type genus of Forficulidae -02273392 05 n 02 common_European_earwig 0 Forficula_auricularia 0 002 @ 02272871 n 0000 #m 02273254 n 0000 | sometimes destructive to cultivated bulbs -02273545 05 n 02 Lepidoptera 0 order_Lepidoptera 0 021 @ 01342529 n 0000 #m 02159271 n 0000 %m 02274024 n 0000 %m 02274516 n 0000 %m 02277556 n 0000 %m 02279442 n 0000 %m 02280223 n 0000 %m 02281552 n 0000 %m 02283728 n 0000 %m 02285359 n 0000 %m 02286815 n 0000 %m 02288473 n 0000 %m 02291024 n 0000 %m 02293135 n 0000 %m 02294761 n 0000 %m 02298379 n 0000 %m 02300018 n 0000 %m 02301072 n 0000 %m 02305245 n 0000 %m 02306159 n 0000 %m 02309337 n 0000 | moths and butterflies -02274024 05 n 03 lepidopterous_insect 0 lepidopteron 0 lepidopteran 0 004 @ 02159955 n 0000 #m 02273545 n 0000 ~ 02274259 n 0000 ~ 02283201 n 0000 | insect that in the adult state has four wings more or less covered with tiny scales -02274259 05 n 01 butterfly 0 007 @ 02274024 n 0000 ~ 02274822 n 0000 ~ 02277742 n 0000 ~ 02279637 n 0000 ~ 02280458 n 0000 ~ 02281406 n 0000 ~ 02281787 n 0000 | diurnal insect typically having a slender body with knobbed antennae and broad colorful wings -02274516 05 n 02 Nymphalidae 0 family_Nymphalidae 0 011 @ 01759182 n 0000 #m 02273545 n 0000 %m 02274822 n 0000 %m 02275372 n 0000 %m 02275921 n 0000 %m 02276527 n 0000 %m 02277895 n 0000 %m 02278343 n 0000 %m 02278601 n 0000 %m 02278704 n 0000 %m 02279127 n 0000 | large beautifully colored butterflies -02274822 05 n 04 nymphalid 0 nymphalid_butterfly 0 brush-footed_butterfly 0 four-footed_butterfly 0 016 @ 02274259 n 0000 #m 02274516 n 0000 ~ 02275560 n 0000 ~ 02275773 n 0000 ~ 02276078 n 0000 ~ 02276258 n 0000 ~ 02276355 n 0000 ~ 02276749 n 0000 ~ 02276902 n 0000 ~ 02277094 n 0000 ~ 02277268 n 0000 ~ 02277422 n 0000 ~ 02278024 n 0000 ~ 02278210 n 0000 ~ 02278839 n 0000 ~ 02279257 n 0000 | medium to large butterflies found worldwide typically having brightly colored wings and much-reduced nonfunctional forelegs carried folded on the breast -02275372 05 n 02 Nymphalis 0 genus_Nymphalis 0 004 @ 01762525 n 0000 #m 02274516 n 0000 %m 02275560 n 0000 %m 02275773 n 0000 | type genus of the Nymphalidae: mourning cloak butterflies -02275560 05 n 04 mourning_cloak 0 mourning_cloak_butterfly 0 Camberwell_beauty 0 Nymphalis_antiopa 0 002 @ 02274822 n 0000 #m 02275372 n 0000 | of temperate regions; having dark purple wings with yellow borders -02275773 05 n 02 tortoiseshell 2 tortoiseshell_butterfly 0 002 @ 02274822 n 0000 #m 02275372 n 0000 | brilliantly colored; larvae feed on nettles -02275921 05 n 02 Vanessa 0 genus_Vanessa 0 004 @ 01762525 n 0000 #m 02274516 n 0000 %m 02276078 n 0000 %m 02276355 n 0000 | painted beauty and red admiral -02276078 05 n 02 painted_beauty 0 Vanessa_virginiensis 0 002 @ 02274822 n 0000 #m 02275921 n 0000 | American butterfly having dark brown wings with white and golden orange spots -02276258 05 n 01 admiral 0 001 @ 02274822 n 0000 | any of several brightly colored butterflies -02276355 05 n 02 red_admiral 0 Vanessa_atalanta 0 002 @ 02274822 n 0000 #m 02275921 n 0000 | of temperate Europe and Asia; having black wings with red and white markings -02276527 05 n 02 Limenitis 0 genus_Limenitis 0 006 @ 01762525 n 0000 #m 02274516 n 0000 %m 02276749 n 0000 %m 02276902 n 0000 %m 02277094 n 0000 %m 02277268 n 0000 | mainly dark northern butterflies with white wing bars -02276749 05 n 02 white_admiral 1 Limenitis_camilla 0 002 @ 02274822 n 0000 #m 02276527 n 0000 | Eurasian butterfly with brown wings and white markings -02276902 05 n 03 banded_purple 0 white_admiral 2 Limenitis_arthemis 0 002 @ 02274822 n 0000 #m 02276527 n 0000 | North American butterfly with blue-black wings crossed by a broad white band -02277094 05 n 02 red-spotted_purple 0 Limenitis_astyanax 0 002 @ 02274822 n 0000 #m 02276527 n 0000 | similar to the banded purple but with red spots on underwing surfaces -02277268 05 n 02 viceroy 0 Limenitis_archippus 0 002 @ 02274822 n 0000 #m 02276527 n 0000 | showy American butterfly resembling the monarch but smaller -02277422 05 n 01 anglewing 0 001 @ 02274822 n 0000 | nymphalid butterfly having angular notches on the outer edges of the forewings -02277556 05 n 02 Satyridae 0 family_Satyridae 0 003 @ 01759182 n 0000 #m 02273545 n 0000 %m 02277742 n 0000 | a widely distributed family of butterflies common near the edges of woods -02277742 05 n 02 ringlet 0 ringlet_butterfly 0 002 @ 02274259 n 0000 #m 02277556 n 0000 | any of various butterflies belonging to the family Satyridae -02277895 05 n 02 Polygonia 0 genus_Polygonia 0 003 @ 01762525 n 0000 #m 02274516 n 0000 %m 02278024 n 0000 | comma butterflies -02278024 05 n 03 comma 0 comma_butterfly 0 Polygonia_comma 0 002 @ 02274822 n 0000 #m 02277895 n 0000 | anglewing butterfly with a comma-shaped mark on the underside of each hind wing -02278210 05 n 01 fritillary 0 002 @ 02274822 n 0000 ~ 02278463 n 0000 | butterfly with brownish wings marked with black and silver -02278343 05 n 02 Spyeria 0 genus_Spyeria 0 003 @ 01762525 n 0000 #m 02274516 n 0000 %m 02278463 n 0000 | fritillaries -02278463 05 n 01 silverspot 0 002 @ 02278210 n 0000 #m 02278343 n 0000 | butterfly with silver spots on the underside of the hind wings -02278601 05 n 02 Argynnis 0 genus_Argynnis 0 002 @ 01762525 n 0000 #m 02274516 n 0000 | fritillaries -02278704 05 n 02 Apatura 0 genus_Apatura 0 003 @ 01762525 n 0000 #m 02274516 n 0000 %m 02278839 n 0000 | large Old World butterflies -02278839 05 n 02 emperor_butterfly 0 emperor 1 003 @ 02274822 n 0000 #m 02278704 n 0000 ~ 02278980 n 0000 | large richly colored butterfly -02278980 05 n 02 purple_emperor 0 Apatura_iris 0 001 @ 02278839 n 0000 | large European butterfly the male of which has wings shaded with purple -02279127 05 n 02 Inachis 0 genus_Inachis 0 003 @ 01762525 n 0000 #m 02274516 n 0000 %m 02279257 n 0000 | a genus of Nymphalidae -02279257 05 n 03 peacock 2 peacock_butterfly 0 Inachis_io 0 002 @ 02274822 n 0000 #m 02279127 n 0000 | European butterfly having reddish-brown wings each marked with a purple eyespot -02279442 05 n 02 Danaidae 0 family_Danaidae 0 004 @ 01759182 n 0000 #m 02273545 n 0000 %m 02279637 n 0000 %m 02279819 n 0000 | small family of usually tropical butterflies: monarch butterflies -02279637 05 n 02 danaid 0 danaid_butterfly 0 003 @ 02274259 n 0000 #m 02279442 n 0000 ~ 02279972 n 0000 | large tropical butterfly with degenerate forelegs and an unpleasant taste -02279819 05 n 02 Danaus 0 genus_Danaus 0 003 @ 01762525 n 0000 #m 02279442 n 0000 %m 02279972 n 0000 | type genus of the Danaidae: monarch butterflies -02279972 05 n 04 monarch 0 monarch_butterfly 0 milkweed_butterfly 0 Danaus_plexippus 0 002 @ 02279637 n 0000 #m 02279819 n 0000 | large migratory American butterfly having deep orange wings with black and white markings; the larvae feed on milkweed -02280223 05 n 02 Pieridae 0 family_Pieridae 0 006 @ 01759182 n 0000 #m 02273545 n 0000 %m 02280458 n 0000 %m 02280649 n 0000 %m 02280845 n 0000 %m 02281406 n 0000 | arthropod family including cabbage butterflies; sulphur butterflies -02280458 05 n 02 pierid 0 pierid_butterfly 0 003 @ 02274259 n 0000 #m 02280223 n 0000 ~ 02280649 n 0000 | any of numerous pale-colored butterflies having three pairs of well-developed legs -02280649 05 n 01 cabbage_butterfly 0 005 @ 02280458 n 0000 #m 02280223 n 0000 ~ 02281015 n 0000 ~ 02281136 n 0000 ~ 02281267 n 0000 | white butterfly whose larvae (cabbageworms) feed on cabbage -02280845 05 n 02 Pieris 0 genus_Pieris 0 005 @ 01762525 n 0000 #m 02280223 n 0000 %m 02281015 n 0000 %m 02281136 n 0000 %m 02310585 n 0000 | type genus of the Pieridae -02281015 05 n 02 small_white 0 Pieris_rapae 1 002 @ 02280649 n 0000 #m 02280845 n 0000 | small widely distributed form -02281136 05 n 02 large_white 0 Pieris_brassicae 0 002 @ 02280649 n 0000 #m 02280845 n 0000 | Old World form of cabbage butterfly -02281267 05 n 02 southern_cabbage_butterfly 0 Pieris_protodice 0 001 @ 02280649 n 0000 | common North American form of cabbage butterfly -02281406 05 n 02 sulphur_butterfly 0 sulfur_butterfly 0 002 @ 02274259 n 0000 #m 02280223 n 0000 | any of numerous yellow or orange butterflies -02281552 05 n 02 Lycaenidae 0 family_Lycaenidae 0 005 @ 01759182 n 0000 #m 02273545 n 0000 %m 02281787 n 0000 %m 02281987 n 0000 %m 02282716 n 0000 | family of small usually brilliantly colored butterflies; males have short forelegs -02281787 05 n 02 lycaenid 0 lycaenid_butterfly 0 005 @ 02274259 n 0000 #m 02281552 n 0000 ~ 02282257 n 0000 ~ 02282385 n 0000 ~ 02282903 n 0000 | any of various butterflies of the family Lycaenidae -02281987 05 n 02 Lycaena 0 genus_Lycaena 0 005 @ 01762525 n 0000 #m 02281552 n 0000 %m 02282257 n 0000 %m 02282385 n 0000 %m 02282553 n 0000 | type genus of the Lycaenidae; small slender butterflies with upper surface of wings usually metallic blue or green or copper -02282257 05 n 01 blue 0 002 @ 02281787 n 0000 #m 02281987 n 0000 | any of numerous small butterflies of the family Lycaenidae -02282385 05 n 01 copper 0 003 @ 02281787 n 0000 #m 02281987 n 0000 ~ 02282553 n 0000 | any of various small butterflies of the family Lycaenidae having coppery wings -02282553 05 n 02 American_copper 0 Lycaena_hypophlaeas 0 002 @ 02282385 n 0000 #m 02281987 n 0000 | common copper butterfly of central and eastern North America -02282716 05 n 02 Strymon 0 genus_Strymon 0 004 @ 01762525 n 0000 #m 02281552 n 0000 %m 02282903 n 0000 %m 02283077 n 0000 | large and widely distributed genus of hairstreak butterflies -02282903 05 n 02 hairstreak 0 hairstreak_butterfly 0 003 @ 02281787 n 0000 #m 02282716 n 0000 ~ 02283077 n 0000 | small butterflies having striped markings under the wings -02283077 05 n 01 Strymon_melinus 0 002 @ 02282903 n 0000 #m 02282716 n 0000 | larvae are pests of various economic plants -02283201 05 n 01 moth 0 016 @ 02274024 n 0000 + 02458408 a 0101 ~ 02283617 n 0000 ~ 02283951 n 0000 ~ 02285548 n 0000 ~ 02287004 n 0000 ~ 02288789 n 0000 ~ 02291220 n 0000 ~ 02293352 n 0000 ~ 02295064 n 0000 ~ 02298541 n 0000 ~ 02300173 n 0000 ~ 02301452 n 0000 ~ 02305407 n 0000 ~ 02306433 n 0000 ~ 02307176 n 0000 | typically crepuscular or nocturnal insect having a stout body and feathery or hairlike antennae -02283617 05 n 02 moth_miller 0 miller 0 001 @ 02283201 n 0000 | any of various moths that have powdery wings -02283728 05 n 02 Tortricidae 0 family_Tortricidae 0 007 @ 01759182 n 0000 #m 02273545 n 0000 %m 02283951 n 0000 %m 02284367 n 0000 %m 02284513 n 0000 %m 02284771 n 0000 %m 02285052 n 0000 | leaf rollers and codling moths -02283951 05 n 02 tortricid 0 tortricid_moth 0 006 @ 02283201 n 0000 #m 02283728 n 0000 ~ 02284224 n 0000 ~ 02284611 n 0000 ~ 02284884 n 0000 ~ 02285179 n 0000 | any of numerous small moths having lightly fringed wings; larvae are leaf rollers or live in fruits and galls -02284224 05 n 02 leaf_roller 0 leaf-roller 0 001 @ 02283951 n 0000 | moth whose larvae form nests by rolling and tying leaves with spun silk -02284367 05 n 01 genus_Tortrix 0 004 @ 01762525 n 0000 #m 02283728 n 0000 %m 02284611 n 0000 %m 02284884 n 0000 | type genus of the Tortricidae -02284513 05 n 02 Homona 0 genus_Homona 0 002 @ 01762525 n 0000 #m 02283728 n 0000 | tea tortrix -02284611 05 n 03 tea_tortrix 0 tortrix 1 Homona_coffearia 0 002 @ 02283951 n 0000 #m 02284367 n 0000 | small Indian moth infesting e.g. tea and coffee plants -02284771 05 n 02 Argyrotaenia 0 genus_Argyrotaenia 0 002 @ 01762525 n 0000 #m 02283728 n 0000 | orange tortrix -02284884 05 n 03 orange_tortrix 0 tortrix 2 Argyrotaenia_citrana 0 002 @ 02283951 n 0000 #m 02284367 n 0000 | California moth whose larvae live in especially oranges -02285052 05 n 02 Carpocapsa 0 genus_Carpocapsa 0 003 @ 01762525 n 0000 #m 02283728 n 0000 %m 02285179 n 0000 | codling moths -02285179 05 n 03 codling_moth 0 codlin_moth 0 Carpocapsa_pomonella 0 002 @ 02283951 n 0000 #m 02285052 n 0000 | a small grey moth whose larvae live in apples and English walnuts -02285359 05 n 02 Lymantriidae 0 family_Lymantriidae 0 006 @ 01759182 n 0000 #m 02273545 n 0000 %m 02285548 n 0000 %m 02285801 n 0000 %m 02285909 n 0000 %m 02286271 n 0000 | tussock moths -02285548 05 n 02 lymantriid 0 tussock_moth 0 005 @ 02283201 n 0000 #m 02285359 n 0000 ~ 02286089 n 0000 ~ 02286425 n 0000 ~ 02286654 n 0000 | dull-colored moth whose larvae have tufts of hair on the body and feed on the leaves of many deciduous trees -02285801 05 n 01 tussock_caterpillar 0 002 @ 02309337 n 0000 #m 02285359 n 0000 | larva of a tussock moth -02285909 05 n 02 Lymantria 0 genus_Lymantria 0 003 @ 01762525 n 0000 #m 02285359 n 0000 %m 02286089 n 0000 | type genus of the Lymantriidae; a pest (Lymantria means `destroyer') -02286089 05 n 03 gypsy_moth 0 gipsy_moth 0 Lymantria_dispar 0 002 @ 02285548 n 0000 #m 02285909 n 0000 | European moth introduced into North America; a serious pest of shade trees -02286271 05 n 02 Euproctis 0 genus_Euproctis 0 004 @ 01762525 n 0000 #m 02285359 n 0000 %m 02286425 n 0000 %m 02286654 n 0000 | a genus of Lymantriidae -02286425 05 n 03 browntail 0 brown-tail_moth 0 Euproctis_phaeorrhoea 0 002 @ 02285548 n 0000 #m 02286271 n 0000 | small brown and white European moth introduced into eastern United States; pest of various shade and fruit trees -02286654 05 n 02 gold-tail_moth 0 Euproctis_chrysorrhoea 0 002 @ 02285548 n 0000 #m 02286271 n 0000 | white furry-bodied European moth with a yellow tail tuft -02286815 05 n 02 Geometridae 0 family_Geometridae 0 006 @ 01759182 n 0000 #m 02273545 n 0000 %m 02287004 n 0000 %m 02287204 n 0000 %m 02287476 n 0000 %m 02287799 n 0000 | measuring worms -02287004 05 n 02 geometrid 0 geometrid_moth 0 004 @ 02283201 n 0000 #m 02286815 n 0000 ~ 02287352 n 0000 ~ 02287622 n 0000 | slender-bodied broad-winged moth whose larvae are called measuring worms -02287204 05 n 02 Paleacrita 0 genus_Paleacrita 0 004 @ 01762525 n 0000 #m 02286815 n 0000 %m 02287352 n 0000 %m 02287987 n 0000 | geometrid moths -02287352 05 n 01 Paleacrita_vernata 0 002 @ 02287004 n 0000 #m 02287204 n 0000 | moth whose larvae are spring cankerworms -02287476 05 n 02 Alsophila 0 genus_Alsophila 0 004 @ 01762525 n 0000 #m 02286815 n 0000 %m 02287622 n 0000 %m 02288122 n 0000 | geometrid moths -02287622 05 n 01 Alsophila_pometaria 0 002 @ 02287004 n 0000 #m 02287476 n 0000 | North American moth with grey-winged males and wingless females; larvae are fall cankerworms -02287799 05 n 01 cankerworm 0 004 @ 02309337 n 0000 #m 02286815 n 0000 ~ 02287987 n 0000 ~ 02288122 n 0000 | green caterpillar of a geometrid moth; pest of various fruit and shade trees -02287987 05 n 01 spring_cankerworm 2 002 @ 02287799 n 0000 #m 02287204 n 0000 | variably colored looper; larva of Paleacrita vernata -02288122 05 n 01 fall_cankerworm 2 002 @ 02287799 n 0000 #m 02287476 n 0000 | green or brown white-striped looper; larva of Alsophila pometaria -02288268 05 n 03 measuring_worm 0 inchworm 0 looper 0 001 @ 02309337 n 0000 | small hairless caterpillar having legs on only its front and rear segments; mostly larvae of moths of the family Geometridae -02288473 05 n 04 Pyralidae 0 family_Pyralidae 0 Pyralididae 0 family_Pyralididae 0 010 @ 01759182 n 0000 #m 02273545 n 0000 %m 02288789 n 0000 %m 02289061 n 0000 %m 02289177 n 0000 %m 02289466 n 0000 %m 02289845 n 0000 %m 02290153 n 0000 %m 02290521 n 0000 %m 02309841 n 0000 | bee moths; corn borers; flour moths -02288789 05 n 02 pyralid 0 pyralid_moth 0 008 @ 02283201 n 0000 #m 02288473 n 0000 ~ 02289307 n 0000 ~ 02289610 n 0000 ~ 02289988 n 0000 ~ 02290340 n 0000 ~ 02290664 n 0000 ~ 02290870 n 0000 | usually tropical slender-bodied long-legged moth whose larvae are crop pests -02289061 05 n 02 Pyralis 0 genus_Pyralis 0 002 @ 01762525 n 0000 #m 02288473 n 0000 | type genus of the Pyralidae -02289177 05 n 02 Galleria 0 genus_Galleria 0 003 @ 01762525 n 0000 #m 02288473 n 0000 %m 02289307 n 0000 | a genus of Pyralidae -02289307 05 n 03 bee_moth 0 wax_moth 0 Galleria_mellonella 0 002 @ 02288789 n 0000 #m 02289177 n 0000 | moth whose larvae live in and feed on bee honeycombs -02289466 05 n 02 Pyrausta 0 genus_Pyrausta 0 003 @ 01762525 n 0000 #m 02288473 n 0000 %m 02289610 n 0000 | moths whose larvae are corn borers -02289610 05 n 04 corn_borer 1 European_corn_borer_moth 0 corn_borer_moth 0 Pyrausta_nubilalis 1 002 @ 02288789 n 0000 #m 02289466 n 0000 | native to Europe; in America the larvae bore into the stem and crown of corn and other plants -02289845 05 n 02 Anagasta 0 genus_Anagasta 0 003 @ 01762525 n 0000 #m 02288473 n 0000 %m 02289988 n 0000 | moth whose larvae are flour moths -02289988 05 n 02 Mediterranean_flour_moth 0 Anagasta_kuehniella 0 002 @ 02288789 n 0000 #m 02289845 n 0000 | small moth whose larvae damage stored grain and flour -02290153 05 n 02 Ephestia 0 genus_Ephestia 0 003 @ 01762525 n 0000 #m 02288473 n 0000 %m 02290340 n 0000 | small moths whose larvae spin silken tunnels and feed on stored food products -02290340 05 n 03 tobacco_moth 0 cacao_moth 0 Ephestia_elutella 0 002 @ 02288789 n 0000 #m 02290153 n 0000 | small moth whose larvae feed on tobacco and other dried plant products -02290521 05 n 02 Cadra 0 genus_Cadra 0 004 @ 01762525 n 0000 #m 02288473 n 0000 %m 02290664 n 0000 %m 02290870 n 0000 | a genus of Pyralidae -02290664 05 n 03 almond_moth 0 fig_moth 0 Cadra_cautella 0 002 @ 02288789 n 0000 #m 02290521 n 0000 | a moth whose larvae feed on and mat together with webbing various stored products of vegetable origin -02290870 05 n 02 raisin_moth 0 Cadra_figulilella 0 002 @ 02288789 n 0000 #m 02290521 n 0000 | moth whose larvae attack dried fruits and cereal products -02291024 05 n 02 Tineoidea 0 superfamily_Tineoidea 0 005 @ 01759182 n 0000 #m 02273545 n 0000 %m 02291220 n 0000 %m 02291391 n 0000 %m 02292850 n 0000 | clothes moths; carpet moths; leaf miners -02291220 05 n 02 tineoid 0 tineoid_moth 0 004 @ 02283201 n 0000 #m 02291024 n 0000 ~ 02291572 n 0000 ~ 02292980 n 0000 | small dull-colored moth with chewing mouthparts -02291391 05 n 02 Tineidae 0 family_Tineidae 0 006 @ 01759182 n 0000 #m 02291024 n 0000 %m 02291572 n 0000 %m 02291940 n 0000 %m 02292272 n 0000 %m 02292564 n 0000 | clothes moths -02291572 05 n 02 tineid 0 tineid_moth 0 004 @ 02291220 n 0000 #m 02291391 n 0000 ~ 02291748 n 0000 ~ 02292692 n 0000 | small yellowish moths whose larvae feed on wool or fur -02291748 05 n 01 clothes_moth 0 003 @ 02291572 n 0000 ~ 02292085 n 0000 ~ 02292401 n 0000 | any of several small yellowish or buff-colored moths whose larvae eat organic matter e.g. woolens -02291940 05 n 02 Tinea 0 genus_Tinea 0 003 @ 01762525 n 0000 #m 02291391 n 0000 %m 02292085 n 0000 | type genus of the Tineidae: clothes moths -02292085 05 n 02 casemaking_clothes_moth 0 Tinea_pellionella 0 002 @ 02291748 n 0000 #m 02291940 n 0000 | the larvae live in tubes of its food material fastened with silk that it spins -02292272 05 n 02 Tineola 0 genus_Tineola 0 003 @ 01762525 n 0000 #m 02291391 n 0000 %m 02292401 n 0000 | webbing clothes moths -02292401 05 n 03 webbing_clothes_moth 0 webbing_moth 0 Tineola_bisselliella 0 002 @ 02291748 n 0000 #m 02292272 n 0000 | moth that forms a web in which it lives -02292564 05 n 02 Trichophaga 0 genus_Trichophaga 0 003 @ 01762525 n 0000 #m 02291391 n 0000 %m 02292692 n 0000 | carpet moths -02292692 05 n 03 carpet_moth 0 tapestry_moth 0 Trichophaga_tapetzella 0 002 @ 02291572 n 0000 #m 02292564 n 0000 | larvae feed on carpets and other woolens -02292850 05 n 03 Gracilariidae 0 Gracillariidae 0 family_Gracilariidae 0 002 @ 01759182 n 0000 #m 02291024 n 0000 | leaf miners -02292980 05 n 02 gracilariid 0 gracilariid_moth 0 001 @ 02291220 n 0000 | small dull or metallic-colored tineoid moths whose larvae mine in plant leaves -02293135 05 n 02 Gelechiidae 0 family_Gelechiidae 0 007 @ 01759182 n 0000 #m 02273545 n 0000 %m 02293352 n 0000 %m 02293560 n 0000 %m 02293974 n 0000 %m 02294279 n 0000 %m 02310149 n 0000 | important economic pests -02293352 05 n 02 gelechiid 0 gelechiid_moth 0 005 @ 02283201 n 0000 #m 02293135 n 0000 ~ 02293715 n 0000 ~ 02293868 n 0000 ~ 02294407 n 0000 | small slender-winged moths whose larvae are agricultural pests -02293560 05 n 02 Gelechia 0 genus_Gelechia 0 003 @ 01762525 n 0000 #m 02293135 n 0000 %m 02293715 n 0000 | type genus of the Gelechiidae: pink bollworms -02293715 05 n 01 Gelechia_gossypiella 1 002 @ 02293352 n 0000 #m 02293560 n 0000 | small brown moth whose larvae bore into flowers and bolls of cotton -02293868 05 n 01 grain_moth 0 002 @ 02293352 n 0000 ~ 02294097 n 0000 | moth whose larvae feed on grain -02293974 05 n 02 Sitotroga 0 genus_Sitotroga 0 003 @ 01762525 n 0000 #m 02293135 n 0000 %m 02294097 n 0000 | grain moths -02294097 05 n 03 angoumois_moth 0 angoumois_grain_moth 0 Sitotroga_cerealella 0 002 @ 02293868 n 0000 #m 02293974 n 0000 | small moth whose larvae feed on kernels of stored grains -02294279 05 n 02 Phthorimaea 0 genus_Phthorimaea 0 003 @ 01762525 n 0000 #m 02293135 n 0000 %m 02294577 n 0000 | potato moths -02294407 05 n 04 potato_moth 0 potato_tuber_moth 0 splitworm 0 Phthorimaea_operculella 1 001 @ 02293352 n 0000 | greyish-brown moth whose larva is the potato tuberworm -02294577 05 n 02 potato_tuberworm 0 Phthorimaea_operculella 2 002 @ 02309337 n 0000 #m 02294279 n 0000 | larva of potato moth; mines in leaves and stems of e.g. potatoes and tobacco -02294761 05 n 02 Noctuidae 0 family_Noctuidae 0 012 @ 01759182 n 0000 #m 02273545 n 0000 %m 02295064 n 0000 %m 02295390 n 0000 %m 02295570 n 0000 %m 02295717 n 0000 %m 02296150 n 0000 %m 02296480 n 0000 %m 02296756 n 0000 %m 02297127 n 0000 %m 02297635 n 0000 %m 02310334 n 0000 | cutworms; armyworms -02295064 05 n 03 noctuid_moth 0 noctuid 0 owlet_moth 0 008 @ 02283201 n 0000 #m 02294761 n 0000 ~ 02295870 n 0000 ~ 02296276 n 0000 ~ 02296612 n 0000 ~ 02297294 n 0000 ~ 02297819 n 0000 ~ 02298095 n 0000 | usually dull-colored medium-sized nocturnal moth; the usually smooth-bodied larvae are destructive agricultural pests -02295390 05 n 01 cutworm 0 003 @ 02309337 n 0000 #m 02294761 n 0000 ~ 02296912 n 0000 | North American moth whose larvae feed on young plant stems cutting them off at the ground -02295570 05 n 02 Noctua 0 genus_Noctua 0 002 @ 01762525 n 0000 #m 02294761 n 0000 | type genus of the Noctuidae: moths whose larvae are cutworms -02295717 05 n 02 Catacala 0 genus_Catacala 0 003 @ 01762525 n 0000 #m 02294761 n 0000 %m 02295870 n 0000 | moths whose larvae are cutworms: underwings -02295870 05 n 01 underwing 0 003 @ 02295064 n 0000 #m 02295717 n 0000 ~ 02296021 n 0000 | moth having dull forewings and brightly colored hind wings -02296021 05 n 02 red_underwing 0 Catocala_nupta 0 001 @ 02295870 n 0000 | moth having dull forewings and red-marked hind wings -02296150 05 n 02 Cerapteryx 0 genus_Cerapteryx 0 003 @ 01762525 n 0000 #m 02294761 n 0000 %m 02296276 n 0000 | antler moths -02296276 05 n 02 antler_moth 0 Cerapteryx_graminis 0 002 @ 02295064 n 0000 #m 02296150 n 0000 | European moth with white antler-like markings on the forewings; the larvae damage pastures and grasslands -02296480 05 n 02 Heliothis 0 genus_Heliothis 0 003 @ 01762525 n 0000 #m 02294761 n 0000 %m 02296612 n 0000 | a genus of Noctuidae -02296612 05 n 02 heliothis_moth 0 Heliothis_zia 1 002 @ 02295064 n 0000 #m 02296480 n 0000 | medium-sized moth whose larvae are corn earworms -02296756 05 n 02 Chorizagrotis 0 genus_Chorizagrotis 0 003 @ 01762525 n 0000 #m 02294761 n 0000 %m 02296912 n 0000 | moths whose larvae are army cutworms -02296912 05 n 02 army_cutworm 0 Chorizagrotis_auxiliaris 2 002 @ 02295390 n 0000 #m 02296756 n 0000 | larvae (of a noctuid moth) that travel in large groups and destroy grains and alfalfa in the midwestern states -02297127 05 n 02 Pseudaletia 0 genus_Pseudaletia 0 004 @ 01762525 n 0000 #m 02294761 n 0000 %m 02297294 n 0000 %m 02297442 n 0000 | moths whose larvae are armyworms -02297294 05 n 02 armyworm 1 Pseudaletia_unipuncta 1 002 @ 02295064 n 0000 #m 02297127 n 0000 | moth whose destructive larvae travel in multitudes -02297442 05 n 03 armyworm 2 army_worm 0 Pseudaletia_unipuncta 2 002 @ 02309337 n 0000 #m 02297127 n 0000 | noctuid moth larvae that travel in multitudes destroying especially grass and grain -02297635 05 n 02 Spodoptera 0 genus_Spodoptera 0 005 @ 01762525 n 0000 #m 02294761 n 0000 %m 02297819 n 0000 %m 02297938 n 0000 %m 02298095 n 0000 | moths whose larvae are armyworms -02297819 05 n 01 Spodoptera_exigua 1 002 @ 02295064 n 0000 #m 02297635 n 0000 | moth whose larvae are beet armyworms -02297938 05 n 02 beet_armyworm 0 Spodoptera_exigua 2 002 @ 02309337 n 0000 #m 02297635 n 0000 | moth larva that eats foliage of beets and other vegetables -02298095 05 n 01 Spodoptera_frugiperda 1 002 @ 02295064 n 0000 #m 02297635 n 0000 | moth whose larvae are fall armyworms -02298218 05 n 02 fall_armyworm 0 Spodoptera_frugiperda 0 001 @ 02309337 n 0000 | larva of a migratory American noctuid moth; destroys grasses and small grains -02298379 05 n 02 Sphingidae 0 family_Sphingidae 0 005 @ 01759182 n 0000 #m 02273545 n 0000 %m 02298541 n 0000 %m 02298833 n 0000 %m 02299715 n 0000 | hawkmoths -02298541 05 n 05 hawkmoth 0 hawk_moth 0 sphingid 0 sphinx_moth 0 hummingbird_moth 0 005 @ 02283201 n 0000 #m 02298379 n 0000 ~ 02299039 n 0000 ~ 02299378 n 0000 ~ 02299846 n 0000 | any of various moths with long narrow forewings capable of powerful flight and hovering over flowers to feed -02298833 05 n 02 Manduca 0 genus_Manduca 0 005 @ 01762525 n 0000 #m 02298379 n 0000 %m 02299039 n 0000 %m 02299157 n 0000 %m 02299378 n 0000 | moths whose larvae are tobacco hornworms or tomato hornworms -02299039 05 n 01 Manduca_sexta 1 002 @ 02298541 n 0000 #m 02298833 n 0000 | moth whose larvae are tobacco hornworms -02299157 05 n 03 tobacco_hornworm 0 tomato_worm 0 Manduca_sexta 2 002 @ 02309337 n 0000 #m 02298833 n 0000 | large green white-striped hawkmoth larva that feeds on tobacco and related plants; similar to tomato hornworm -02299378 05 n 01 Manduca_quinquemaculata 1 002 @ 02298541 n 0000 #m 02298833 n 0000 | moth whose larvae are tomato hornworms -02299505 05 n 03 tomato_hornworm 0 potato_worm 0 Manduca_quinquemaculata 2 001 @ 02309337 n 0000 | large green white-striped hawkmoth larva that feeds on tomato and potato plants; similar to tobacco hornworm -02299715 05 n 02 Acherontia 0 genus_Acherontia 0 003 @ 01762525 n 0000 #m 02298379 n 0000 %m 02299846 n 0000 | death's-head moth -02299846 05 n 02 death's-head_moth 0 Acherontia_atropos 0 002 @ 02298541 n 0000 #m 02299715 n 0000 | European hawkmoth with markings on the back resembling a human skull -02300018 05 n 02 Bombycidae 0 family_Bombycidae 0 004 @ 01759182 n 0000 #m 02273545 n 0000 %m 02300173 n 0000 %m 02300378 n 0000 | Chinese silkworm moth -02300173 05 n 03 bombycid 0 bombycid_moth 0 silkworm_moth 1 003 @ 02283201 n 0000 #m 02300018 n 0000 ~ 02300554 n 0000 | moderate-sized Asiatic moth whose larvae feed on mulberry leaves and produce silk -02300378 05 n 02 Bombyx 0 genus_Bombyx 0 004 @ 01762525 n 0000 #m 02300018 n 0000 %m 02300554 n 0000 %m 02300797 n 0000 | type genus of the Bombycidae: Chinese silkworm moth -02300554 05 n 03 domestic_silkworm_moth 0 domesticated_silkworm_moth 0 Bombyx_mori 0 002 @ 02300173 n 0000 #m 02300378 n 0000 | stocky creamy-white Asiatic moth found almost entirely under human care; the source of most of the silk commerce -02300797 05 n 01 silkworm 1 003 @ 02309337 n 0000 #m 02300378 n 0000 %p 02468178 n 0000 | the commercially bred hairless white caterpillar of the domestic silkworm moth which spins a cocoon that can be processed to yield silk fiber; the principal source of commercial silk -02301072 05 n 02 Saturniidae 0 family_Saturniidae 0 012 @ 01759182 n 0000 #m 02273545 n 0000 %m 02301452 n 0000 %m 02301782 n 0000 %m 02302124 n 0000 %m 02302620 n 0000 %m 02302853 n 0000 %m 02303167 n 0000 %m 02303448 n 0000 %m 02303917 n 0000 %m 02304229 n 0000 %m 02304967 n 0000 | important and widely distributed family of moths including some of the largest insects known -02301452 05 n 02 saturniid 0 saturniid_moth 0 011 @ 02283201 n 0000 #m 02301072 n 0000 ~ 02301935 n 0000 ~ 02302244 n 0000 ~ 02302459 n 0000 ~ 02302969 n 0000 ~ 02303284 n 0000 ~ 02304036 n 0000 ~ 02304432 n 0000 ~ 02304657 n 0000 ~ 02304797 n 0000 | large brightly colored and usually tropical moth; larvae spin silken cocoons -02301782 05 n 02 Saturnia 0 genus_Saturnia 0 003 @ 01762525 n 0000 #m 02301072 n 0000 %m 02301935 n 0000 | type genus of the Saturniidae: emperor moth -02301935 05 n 03 emperor 2 emperor_moth 0 Saturnia_pavonia 0 002 @ 02301452 n 0000 #m 02301782 n 0000 | large moth of temperate forests of Eurasia having heavily scaled transparent wings -02302124 05 n 02 Eacles 0 genus_Eacles 0 003 @ 01762525 n 0000 #m 02301072 n 0000 %m 02302244 n 0000 | imperial moths -02302244 05 n 02 imperial_moth 0 Eacles_imperialis 0 002 @ 02301452 n 0000 #m 02302124 n 0000 | large American moth having yellow wings with purplish or brownish markings; larvae feed on e.g. maple and pine trees -02302459 05 n 02 giant_silkworm_moth 0 silkworm_moth 2 003 @ 02301452 n 0000 ~ 02303585 n 0000 ~ 02305085 n 0000 | any silkworm moth of the family Saturniidae -02302620 05 n 03 silkworm 2 giant_silkworm 0 wild_wilkworm 0 004 @ 02309337 n 0000 #m 02301072 n 0000 ~ 02303777 n 0000 %p 02468178 n 0000 | larva of a saturniid moth; spins a large amount of strong silk in constructing its cocoon -02302853 05 n 02 Actias 0 genus_Actias 0 003 @ 01762525 n 0000 #m 02301072 n 0000 %m 02302969 n 0000 | luna moths -02302969 05 n 02 luna_moth 0 Actias_luna 0 002 @ 02301452 n 0000 #m 02302853 n 0000 | large pale-green American moth with long-tailed hind wings and a yellow crescent-shaped mark on each forewing -02303167 05 n 02 Hyalophora 0 genus_Hyalophora 0 002 @ 01762525 n 0000 #m 02301072 n 0000 | American silkworm moth -02303284 05 n 03 cecropia 0 cecropia_moth 0 Hyalophora_cecropia 0 001 @ 02301452 n 0000 | North American silkworm moth; larvae feed on the leaves of forest trees -02303448 05 n 02 Samia 0 genus_Samia 0 004 @ 01762525 n 0000 #m 02301072 n 0000 %m 02303585 n 0000 %m 02303777 n 0000 | silkworm moths -02303585 05 n 03 cynthia_moth 0 Samia_cynthia 1 Samia_walkeri 0 002 @ 02302459 n 0000 #m 02303448 n 0000 | large Asiatic moth introduced into the United States; larvae feed on the ailanthus -02303777 05 n 02 ailanthus_silkworm 0 Samia_cynthia 2 002 @ 02302620 n 0000 #m 02303448 n 0000 | large green silkworm of the cynthia moth -02303917 05 n 02 Automeris 0 genus_Automeris 0 003 @ 01762525 n 0000 #m 02301072 n 0000 %m 02304036 n 0000 | io moth -02304036 05 n 02 io_moth 0 Automeris_io 0 002 @ 02301452 n 0000 #m 02303917 n 0000 | large yellow American moth having a large eyelike spot on each hind wing; the larvae have stinging spines -02304229 05 n 02 Antheraea 0 genus_Antheraea 0 005 @ 01762525 n 0000 #m 02301072 n 0000 %m 02304432 n 0000 %m 02304657 n 0000 %m 02304797 n 0000 | large moths whose larvae produce silk of high quality -02304432 05 n 02 polyphemus_moth 0 Antheraea_polyphemus 0 002 @ 02301452 n 0000 #m 02304229 n 0000 | very large yellowish-brown American silkworm moth with large eyespots on hind wings; larvae feed on fruit and shade trees -02304657 05 n 02 pernyi_moth 0 Antheraea_pernyi 0 002 @ 02301452 n 0000 #m 02304229 n 0000 | a Chinese moth that produces a brownish silk -02304797 05 n 06 tussah 0 tusseh 0 tussur 0 tussore 0 tusser 0 Antheraea_mylitta 0 002 @ 02301452 n 0000 #m 02304229 n 0000 | oriental moth that produces brownish silk -02304967 05 n 02 Atticus 0 genus_Atticus 0 003 @ 01762525 n 0000 #m 02301072 n 0000 %m 02305085 n 0000 | atlas moth -02305085 05 n 02 atlas_moth 0 Atticus_atlas 0 002 @ 02302459 n 0000 #m 02304967 n 0000 | giant saturniid moth widespread in Asia; sometimes cultured for silk -02305245 05 n 02 Arctiidae 0 family_Arctiidae 0 005 @ 01759182 n 0000 #m 02273545 n 0000 %m 02305407 n 0000 %m 02305799 n 0000 %m 02310941 n 0000 | tiger moths -02305407 05 n 02 arctiid 0 arctiid_moth 0 004 @ 02283201 n 0000 #m 02305245 n 0000 ~ 02305636 n 0000 ~ 02305929 n 0000 | stout-bodied broad-winged moth with conspicuously striped or spotted wings; larvae are hairy caterpillars -02305636 05 n 01 tiger_moth 0 001 @ 02305407 n 0000 | medium-sized moth with long richly colored and intricately patterned wings; larvae are called woolly bears -02305799 05 n 02 Callimorpha 0 genus_Callimorpha 0 003 @ 01762525 n 0000 #m 02305245 n 0000 %m 02305929 n 0000 | cinnabar moths -02305929 05 n 03 cinnabar 0 cinnabar_moth 0 Callimorpha_jacobeae 0 002 @ 02305407 n 0000 #m 02305799 n 0000 | large red-and-black European moth; larvae feed on leaves of ragwort; introduced into United States to control ragwort -02306159 05 n 02 Lasiocampidae 0 family_Lasiocampidae 0 009 @ 01759182 n 0000 #m 02273545 n 0000 %m 02306433 n 0000 %m 02306672 n 0000 %m 02307007 n 0000 %m 02308033 n 0000 %m 02308139 n 0000 %m 02308325 n 0000 %m 02308852 n 0000 | tent caterpillars; eggars; lappet moths -02306433 05 n 02 lasiocampid 0 lasiocampid_moth 0 006 @ 02283201 n 0000 #m 02306159 n 0000 ~ 02306825 n 0000 ~ 02307515 n 0000 ~ 02307910 n 0000 ~ 02308471 n 0000 | medium-sized stout-bodied neutral-colored moths with comb-like antennae -02306672 05 n 02 Lasiocampa 0 genus_Lasiocampa 0 003 @ 01762525 n 0000 #m 02306159 n 0000 %m 02306825 n 0000 | type genus of the Lasiocampidae: eggars -02306825 05 n 02 eggar 0 egger 0 002 @ 02306433 n 0000 #m 02306672 n 0000 | moth having nonfunctional mouthparts as adults; larvae feed on tree foliage and spin egg-shaped cocoons -02307007 05 n 02 Malacosoma 0 genus_Malacosoma 0 005 @ 01762525 n 0000 #m 02306159 n 0000 %m 02307176 n 0000 %m 02307325 n 0000 %m 02307515 n 0000 | tent caterpillars -02307176 05 n 02 tent-caterpillar_moth 1 Malacosoma_americana 0 002 @ 02283201 n 0000 #m 02307007 n 0000 | moth whose larvae are tent caterpillars -02307325 05 n 01 tent_caterpillar 0 003 @ 02309337 n 0000 #m 02307007 n 0000 ~ 02307681 n 0000 | the larvae of moths that build and live in communal silken webs in orchard and shade trees -02307515 05 n 02 tent-caterpillar_moth 2 Malacosoma_disstria 1 002 @ 02306433 n 0000 #m 02307007 n 0000 | moth whose gregarious larvae spin webs resembling carpets -02307681 05 n 02 forest_tent_caterpillar 0 Malacosoma_disstria 2 001 @ 02307325 n 0000 | larvae of a gregarious North American moth that spins a web resembling a carpet rather than a tent; serious defoliator of deciduous trees -02307910 05 n 02 lappet 0 lappet_moth 0 001 @ 02306433 n 0000 | medium-sized hairy moths; larvae are lappet caterpillars -02308033 05 n 01 lappet_caterpillar 0 002 @ 02309337 n 0000 #m 02306159 n 0000 | larva of a lappet moth -02308139 05 n 01 webworm 0 004 @ 02309337 n 0000 #m 02306159 n 0000 ~ 02308735 n 0000 ~ 02309120 n 0000 | several gregarious moth larvae that spin webs over foliage on which they feed -02308325 05 n 02 Hyphantria 0 genus_Hyphantria 0 004 @ 01762525 n 0000 #m 02306159 n 0000 %m 02308618 n 0000 %m 02308735 n 0000 | fall webworms -02308471 05 n 01 webworm_moth 0 003 @ 02306433 n 0000 ~ 02308618 n 0000 ~ 02308998 n 0000 | a variety of moth that spins a web in which it lives -02308618 05 n 01 Hyphantria_cunea 1 002 @ 02308471 n 0000 #m 02308325 n 0000 | moth whose larvae are fall webworms -02308735 05 n 02 fall_webworm 0 Hyphantria_cunea 2 002 @ 02308139 n 0000 #m 02308325 n 0000 | a variety of webworm -02308852 05 n 02 Loxostege 0 genus_Loxostege 0 004 @ 01762525 n 0000 #m 02306159 n 0000 %m 02308998 n 0000 %m 02309120 n 0000 | garden webworms -02308998 05 n 01 Loxostege_similalis 1 002 @ 02308471 n 0000 #m 02308852 n 0000 | moth whose larvae are garden webworms -02309120 05 n 02 garden_webworm 0 Loxostege_similalis 2 002 @ 02308139 n 0000 #m 02308852 n 0000 | a variety of webworm -02309242 05 n 01 instar 0 001 @ 01767661 n 0000 | an insect or other arthropod between molts -02309337 05 n 01 caterpillar 0 021 @ 02311060 n 0000 #m 02273545 n 0000 ~ 02285801 n 0000 ~ 02287799 n 0000 ~ 02288268 n 0000 ~ 02294577 n 0000 ~ 02295390 n 0000 ~ 02297442 n 0000 ~ 02297938 n 0000 ~ 02298218 n 0000 ~ 02299157 n 0000 ~ 02299505 n 0000 ~ 02300797 n 0000 ~ 02302620 n 0000 ~ 02307325 n 0000 ~ 02308033 n 0000 ~ 02308139 n 0000 ~ 02309841 n 0000 ~ 02310000 n 0000 ~ 02310585 n 0000 ~ 02310717 n 0000 | a wormlike and often brightly colored and hairy or spiny larva of a butterfly or moth -02309841 05 n 02 corn_borer 2 Pyrausta_nubilalis 2 002 @ 02309337 n 0000 #m 02288473 n 0000 | larva of the European corn borer moth; a serious pest of maize -02310000 05 n 01 bollworm 0 003 @ 02309337 n 0000 ~ 02310149 n 0000 ~ 02310334 n 0000 | any of various moth caterpillars that destroy cotton bolls -02310149 05 n 02 pink_bollworm 0 Gelechia_gossypiella 2 002 @ 02310000 n 0000 #m 02293135 n 0000 | larvae of a gelechiid moth introduced from Asia; feeds on the seeds of cotton bolls -02310334 05 n 06 corn_earworm 0 cotton_bollworm 0 tomato_fruitworm 0 tobacco_budworm 0 vetchworm 0 Heliothis_zia 2 002 @ 02310000 n 0000 #m 02294761 n 0000 | larva of a noctuid moth; highly destructive to especially corn and cotton and tomato crops -02310585 05 n 02 cabbageworm 0 Pieris_rapae 2 002 @ 02309337 n 0000 #m 02280845 n 0000 | toxic green larva of a cabbage butterfly -02310717 05 n 02 woolly_bear 0 woolly_bear_caterpillar 0 002 @ 02309337 n 0000 ~ 02310941 n 0000 | caterpillar of numerous moths characterized by a dense coat of woolly hairs; feed on plants and some are destructive pests -02310941 05 n 01 woolly_bear_moth 0 002 @ 02310717 n 0000 #m 02305245 n 0000 | larva of moth of the family Arctiidae -02311060 05 n 01 larva 0 020 @ 00015388 n 0000 + 01490603 a 0101 + 03014166 a 0101 ~ 01470895 n 0000 ~ 01924800 n 0000 ~ 01925916 n 0000 ~ 02176916 n 0000 ~ 02181477 n 0000 ~ 02200509 n 0000 ~ 02217839 n 0000 ~ 02264232 n 0000 ~ 02264591 n 0000 ~ 02266269 n 0000 ~ 02269522 n 0000 ~ 02309337 n 0000 ~ 02311617 n 0000 ~ 02311748 n 0000 ~ 02311879 n 0000 ~ 02312006 n 0000 ~ 02469472 n 0000 | the immature free-living form of most invertebrates and amphibians and fish which at hatching from the egg is fundamentally unlike its parent and must metamorphose -02311617 05 n 01 nymph 0 001 @ 02311060 n 0000 | a larva of an insect with incomplete metamorphosis (as the dragonfly or mayfly) -02311748 05 n 01 leptocephalus 0 002 @ 02311060 n 0000 #m 02527813 n 0000 | slender transparent larva of eels and certain fishes -02311879 05 n 01 bot 0 001 @ 02311060 n 0000 | botfly larva; typically develops inside the body of a horse or sheep or human -02312006 05 n 01 grub 0 004 @ 02311060 n 0000 + 02737371 a 0101 ~ 02312175 n 0000 ~ 02312325 n 0000 | a soft thick wormlike larva of certain beetles and other insects -02312175 05 n 01 maggot 0 002 @ 02312006 n 0000 + 01069823 a 0102 | the larva of the housefly and blowfly commonly found in decaying organic matter -02312325 05 n 01 leatherjacket 3 001 @ 02312006 n 0000 | tough-skinned larva of certain crane flies -02312427 05 n 01 pupa 0 004 @ 02159955 n 0000 + 01491541 a 0101 + 00096520 v 0101 ~ 02312640 n 0000 | an insect in the inactive stage of development (when it is not feeding) intermediate between larva and adult -02312640 05 n 01 chrysalis 0 001 @ 02312427 n 0000 | pupa of a moth or butterfly enclosed in a cocoon -02312744 05 n 01 cocoon 0 002 @ 00019128 n 0000 + 01581933 v 0101 | silky envelope spun by the larvae of many insects to protect pupas and by spiders to protect eggs -02312912 05 n 01 imago 0 001 @ 02159955 n 0000 | an adult insect produced after metamorphosis -02313008 05 n 01 queen 1 002 @ 02159955 n 0000 ~ 02207345 n 0000 | the only fertile female in a colony of social insects such as bees and ants and termites; its function is to lay eggs -02313195 05 n 03 Phoronida 0 Phoronidea 0 phylum_Phoronida 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 02313360 n 0000 | small phylum of wormlike marine animals -02313360 05 n 01 phoronid 0 002 @ 01905661 n 0000 #m 02313195 n 0000 | hermaphrodite wormlike animal living in mud of the sea bottom -02313495 05 n 03 Bryozoa 0 phylum_Bryozoa 0 polyzoa 0 005 @ 08102555 n 0000 #m 01313093 n 0000 %m 02313709 n 0000 %m 02314001 n 0000 %m 02314321 n 0000 | marine or freshwater animals that form colonies of zooids -02313709 05 n 05 bryozoan 0 polyzoan 0 sea_mat 0 sea_moss 0 moss_animal 0 002 @ 01905661 n 0000 #m 02313495 n 0000 | sessile aquatic animal forming mossy colonies of small polyps each having a curved or circular ridge bearing tentacles; attach to stones or seaweed and reproduce by budding -02314001 05 n 02 Ectoprocta 0 phylum_Ectoprocta 0 003 @ 08102555 n 0000 #m 02313495 n 0000 %m 02314158 n 0000 | coextensive with or a subphylum of Bryozoa -02314158 05 n 01 ectoproct 0 002 @ 01905661 n 0000 #m 02314001 n 0000 | sessile mossy aquatic animal having the anus of the polyp outside the crown of tentacles -02314321 05 n 03 Entoprocta 0 phylum_Entoprocta 0 Endoprocta 0 003 @ 08102555 n 0000 #m 02313495 n 0000 %m 02314492 n 0000 | sometimes considered a subphylum of Bryozoa -02314492 05 n 01 entoproct 0 002 @ 01905661 n 0000 #m 02314321 n 0000 | any of various moss-like aquatic animals usually forming branching colonies; each polyp having a both mouth and anus within a closed ring of tentacles -02314717 05 n 02 Cycliophora 0 phylum_Cycliophora 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 02315024 n 0000 | tiny marine organisms each the size of a period found in great numbers on lobsters' lips; identified tentatively in 1995 as a new phylum or as possible link between Entoprocta and Ectoprocta -02315024 05 n 01 Symbion_pandora 0 002 @ 01905661 n 0000 #m 02314717 n 0000 | only known species of Cycliophora; lives symbiotically attached to a lobster's lip by an adhesive disk and feeding by means of a hairy mouth ring; its complex life cycle includes asexual and sexual phases -02315309 05 n 02 Brachiopoda 0 phylum_Brachiopoda 0 004 @ 08102555 n 0000 #m 01313093 n 0000 + 02669223 a 0102 %m 02315487 n 0000 | marine invertebrates that resemble mollusks -02315487 05 n 03 brachiopod 0 lamp_shell 0 lampshell 0 002 @ 01905661 n 0000 #m 02315309 n 0000 | marine animal with bivalve shell having a pair of arms bearing tentacles for capturing food; found worldwide -02315696 05 n 02 Sipuncula 0 phylum_Sipuncula 0 003 @ 08102555 n 0000 #m 01313093 n 0000 %m 02315821 n 0000 | peanut worms -02315821 05 n 02 peanut_worm 0 sipunculid 0 002 @ 01905661 n 0000 #m 02315696 n 0000 | small unsegmented marine worm that when disturbed retracts its anterior portion into the body giving the appearance of a peanut -02316038 05 n 01 echinoderm_family 0 004 @ 08107499 n 0000 #m 01313093 n 0000 ~ 02320621 n 0000 ~ 02321759 n 0000 | a family of echinoderms -02316180 05 n 01 echinoderm_genus 0 008 @ 08108972 n 0000 #m 01313093 n 0000 ~ 02318437 n 0000 ~ 02318538 n 0000 ~ 02318798 n 0000 ~ 02320339 n 0000 ~ 02320888 n 0000 ~ 02321903 n 0000 | a genus of echinoderms -02316392 05 n 02 Echinodermata 0 phylum_Echinodermata 0 008 @ 08102555 n 0000 #m 01313093 n 0000 %m 02316707 n 0000 %m 02317212 n 0000 %m 02317488 n 0000 %m 02318915 n 0000 %m 02319967 n 0000 %m 02321342 n 0000 | radially symmetrical marine invertebrates including e.g. starfish and sea urchins and sea cucumbers -02316707 05 n 01 echinoderm 0 011 @ 01905661 n 0000 #m 02316392 n 0000 %p 02151448 n 0000 %p 02317025 n 0000 ~ 02317335 n 0000 ~ 02317781 n 0000 ~ 02318167 n 0000 ~ 02319095 n 0000 ~ 02320127 n 0000 ~ 02321529 n 0000 %p 02322387 n 0000 | marine invertebrates with tube feet and five-part radially symmetrical bodies -02317025 05 n 01 ambulacrum 0 003 @ 05220461 n 0000 #p 02316707 n 0000 + 02616202 a 0101 | one of the five areas on the undersurface of an echinoderm on which the tube feet are located -02317212 05 n 02 Asteroidea 0 class_Asteroidea 0 003 @ 08103777 n 0000 #m 02316392 n 0000 %m 02317335 n 0000 | sea stars -02317335 05 n 02 starfish 0 sea_star 0 002 @ 02316707 n 0000 #m 02317212 n 0000 | echinoderms characterized by five arms extending from a central disk -02317488 05 n 02 Ophiuroidea 0 class_Ophiuroidea 0 004 @ 08103777 n 0000 #m 02316392 n 0000 %m 02317653 n 0000 %m 02317983 n 0000 | brittle stars and basket stars -02317653 05 n 02 Ophiurida 0 subclass_Ophiurida 0 003 @ 08103777 n 0000 #m 02317488 n 0000 %m 02317781 n 0000 | brittle stars -02317781 05 n 03 brittle_star 0 brittle-star 0 serpent_star 0 002 @ 02316707 n 0000 #m 02317653 n 0000 | an animal resembling a starfish with fragile whiplike arms radiating from a small central disc -02317983 05 n 02 Euryalida 0 subclass_Euryalida 0 006 @ 08103777 n 0000 #m 02317488 n 0000 %m 02318167 n 0000 %m 02318437 n 0000 %m 02318538 n 0000 %m 02318798 n 0000 | basket stars -02318167 05 n 02 basket_star 0 basket_fish 0 003 @ 02316707 n 0000 #m 02317983 n 0000 ~ 02318687 n 0000 | any starfish-like animal of the genera Euryale or Astrophyton or Gorgonocephalus having slender complexly branched interlacing arms radiating from a central disc -02318437 05 n 02 Euryale 0 genus_Euryale 0 002 @ 02316180 n 0000 #m 02317983 n 0000 | basket stars -02318538 05 n 02 Astrophyton 0 genus_Astrophyton 0 003 @ 02316180 n 0000 #m 02317983 n 0000 %m 02318687 n 0000 | includes many of the basket stars -02318687 05 n 01 Astrophyton_muricatum 0 002 @ 02318167 n 0000 #m 02318538 n 0000 | a variety of basket star -02318798 05 n 02 Gorgonocephalus 0 genus_Gorgonocephalus 0 002 @ 02316180 n 0000 #m 02317983 n 0000 | basket stars -02318915 05 n 02 Echinoidea 0 class_Echinoidea 0 005 @ 08103777 n 0000 #m 02316392 n 0000 %m 02319095 n 0000 %m 02319423 n 0000 %m 02319689 n 0000 | sea urchins and sand dollars -02319095 05 n 01 sea_urchin 0 005 @ 02316707 n 0000 #m 02318915 n 0000 ~ 02319308 n 0000 ~ 02319555 n 0000 ~ 02319829 n 0000 | shallow-water echinoderms having soft bodies enclosed in thin spiny globular shells -02319308 05 n 02 edible_sea_urchin 0 Echinus_esculentus 0 001 @ 02319095 n 0000 | a sea urchin that can be eaten -02319423 05 n 02 Exocycloida 0 order_Exocycloida 0 003 @ 01342529 n 0000 #m 02318915 n 0000 %m 02319555 n 0000 | flat sea urchins -02319555 05 n 01 sand_dollar 0 002 @ 02319095 n 0000 #m 02319423 n 0000 | flattened disklike sea urchins that live on sandy bottoms -02319689 05 n 02 Spatangoida 0 order_Spatangoida 0 003 @ 01342529 n 0000 #m 02318915 n 0000 %m 02319829 n 0000 | heart-shaped sea urchins -02319829 05 n 01 heart_urchin 0 002 @ 02319095 n 0000 #m 02319689 n 0000 | sea urchin having a heart-shaped body in a rigid spiny shell -02319967 05 n 02 Crinoidea 0 class_Crinoidea 0 005 @ 08103777 n 0000 #m 02316392 n 0000 %m 02320127 n 0000 %m 02320339 n 0000 %m 02320621 n 0000 | sea lilies -02320127 05 n 01 crinoid 0 005 @ 02316707 n 0000 #m 02319967 n 0000 + 02842320 a 0101 ~ 02320465 n 0000 ~ 02321170 n 0000 | primitive echinoderms having five or more feathery arms radiating from a central disk -02320339 05 n 02 Ptilocrinus 0 genus_Ptilocrinus 0 003 @ 02316180 n 0000 #m 02319967 n 0000 %m 02320465 n 0000 | sea lilies -02320465 05 n 01 sea_lily 0 002 @ 02320127 n 0000 #m 02320339 n 0000 | crinoid with delicate radiating arms and a stalked body attached to a hard surface -02320621 05 n 02 Antedonidae 0 family_Antedonidae 0 004 @ 02316038 n 0000 #m 02319967 n 0000 ~ 02320769 n 0000 %m 02320888 n 0000 | feather stars -02320769 05 n 02 Comatulidae 0 family_Comatulidae 0 001 @ 02320621 n 0000 | former usage synonymous with Antedonidae -02320888 05 n 02 Antedon 0 genus_Antedon 0 004 @ 02316180 n 0000 #m 02320621 n 0000 ~ 02321062 n 0000 %m 02321170 n 0000 | a genus of echinoderms of the family Antedonidae -02321062 05 n 02 Comatula 0 genus_Comatula 0 001 @ 02320888 n 0000 | former usage synonymous with Antedon -02321170 05 n 02 feather_star 0 comatulid 0 002 @ 02320127 n 0000 #m 02320888 n 0000 | free-swimming stalkless crinoid with ten feathery arms; found on muddy sea bottoms -02321342 05 n 02 Holothuroidea 0 class_Holothuroidea 0 004 @ 08103777 n 0000 #m 02316392 n 0000 %m 02321529 n 0000 %m 02321759 n 0000 | class of echinoderms including the sea cucumbers -02321529 05 n 02 sea_cucumber 0 holothurian 0 003 @ 02316707 n 0000 #m 02321342 n 0000 ~ 02322047 n 0000 | echinoderm having a flexible sausage-shaped body, tentacles surrounding the mouth and tube feet; free-living mud feeders -02321759 05 n 02 Holothuridae 0 family_Holothuridae 0 003 @ 02316038 n 0000 #m 02321342 n 0000 %m 02321903 n 0000 | a family of Holothuroidea -02321903 05 n 02 Holothuria 0 genus_Holothuria 0 003 @ 02316180 n 0000 #m 02321759 n 0000 %m 02322047 n 0000 | type genus of the Holothuridae -02322047 05 n 02 trepang 0 Holothuria_edulis 0 002 @ 02321529 n 0000 #m 02321903 n 0000 | of warm coasts from Australia to Asia; used as food especially by Chinese -02322213 05 n 02 foot 0 invertebrate_foot 0 003 @ 05297523 n 0000 #p 01905661 n 0000 ~ 02322387 n 0000 | any of various organs of locomotion or attachment in invertebrates -02322387 05 n 01 tube_foot 0 002 @ 02322213 n 0000 #p 02316707 n 0000 | tentacular tubular process of most echinoderms (starfish and sea urchins and holothurians) having a sucker at the end and used for e.g. locomotion and respiration -02322624 05 n 01 roe 0 002 @ 01460457 n 0000 #p 02512053 n 0000 | eggs of female fish -02322712 05 n 01 milt 0 002 @ 05404336 n 0000 #p 02512053 n 0000 | seminal fluid produced by male fish -02322817 05 n 01 splint_bone 0 001 @ 05269901 n 0000 | a rudimentary metacarpal or metatarsal bone on either side of the cannon bone in the leg of a horse or related animal -02322992 05 n 01 Duplicidentata 0 002 @ 02323449 n 0000 #m 02323186 n 0000 | in former classifications considered a suborder of Rodentia coextensive with the order Lagomorpha: gnawing animals -02323186 05 n 02 Lagomorpha 0 order_Lagomorpha 0 006 @ 01342529 n 0000 #m 01886220 n 0000 %m 02322992 n 0000 %m 02323449 n 0000 %m 02323715 n 0000 %m 02328270 n 0000 | rabbits; hares; pikas; formerly considered the suborder Duplicidentata of the order Rodentia -02323449 05 n 02 lagomorph 0 gnawing_mammal 2 005 @ 01886756 n 0000 #m 02323186 n 0000 ~ 02322992 n 0000 ~ 02323902 n 0000 ~ 02328429 n 0000 | relative large gnawing animals; distinguished from rodents by having two pairs of upper incisors specialized for gnawing -02323715 05 n 02 Leporidae 0 family_Leporidae 0 006 @ 01862557 n 0000 #m 02323186 n 0000 %m 02323902 n 0000 %m 02324717 n 0000 %m 02325211 n 0000 %m 02326237 n 0000 | hares and rabbits -02323902 05 n 02 leporid 0 leporid_mammal 0 004 @ 02323449 n 0000 #m 02323715 n 0000 ~ 02324045 n 0000 ~ 02326432 n 0000 | rabbits and hares -02324045 05 n 03 rabbit 0 coney 1 cony 1 011 @ 02323902 n 0000 #m 07996598 n 0000 + 01142761 v 0101 %p 02158739 n 0000 ~ 02324431 n 0000 ~ 02324514 n 0000 ~ 02324587 n 0000 ~ 02324850 n 0000 ~ 02325366 n 0000 ~ 02328009 n 0000 ~ 02328150 n 0000 | any of various burrowing animals of the family Leporidae having long ears and short tails; some domesticated and raised for pets or food -02324431 05 n 01 rabbit_ears 0 001 @ 02324045 n 0000 | the long ears of a rabbit -02324514 05 n 01 lapin 0 001 @ 02324045 n 0000 | castrated male rabbit -02324587 05 n 02 bunny 0 bunny_rabbit 0 002 @ 02324045 n 0000 ;u 07075172 n 0000 | (usually informal) especially a young rabbit -02324717 05 n 02 Oryctolagus 0 genus_Oryctolagus 0 003 @ 01864707 n 0000 #m 02323715 n 0000 %m 02324850 n 0000 | Old World rabbits -02324850 05 n 03 European_rabbit 0 Old_World_rabbit 0 Oryctolagus_cuniculus 0 003 @ 02324045 n 0000 #m 02324717 n 0000 %p 07666521 n 0000 | common greyish-brown burrowing animal native to southern Europe and northern Africa but introduced elsewhere; widely domesticated and developed in various colors and for various needs; young are born naked and helpless -02325211 05 n 02 Sylvilagus 0 genus_Sylvilagus 0 004 @ 01864707 n 0000 #m 02323715 n 0000 %m 02325366 n 0000 %m 02325884 n 0000 | North American rabbits -02325366 05 n 03 wood_rabbit 0 cottontail 0 cottontail_rabbit 0 006 @ 02324045 n 0000 #m 02325211 n 0000 ~ 02325722 n 0000 ~ 02325884 n 0000 ~ 02326074 n 0000 %p 07666521 n 0000 | common small rabbit of North America having greyish or brownish fur and a tail with a white underside; a host for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks) -02325722 05 n 02 eastern_cottontail 0 Sylvilagus_floridanus 0 001 @ 02325366 n 0000 | widely distributed in United States except northwest and far west regions -02325884 05 n 04 swamp_rabbit 1 canecutter 0 swamp_hare 0 Sylvilagus_aquaticus 0 002 @ 02325366 n 0000 #m 02325211 n 0000 | a wood rabbit of southeastern United States swamps and lowlands -02326074 05 n 03 marsh_hare 0 swamp_rabbit 2 Sylvilagus_palustris 0 001 @ 02325366 n 0000 | a wood rabbit of marshy coastal areas from North Carolina to Florida -02326237 05 n 02 Lepus 0 genus_Lepus 0 006 @ 01864707 n 0000 #m 02323715 n 0000 %m 02326432 n 0000 %m 02326862 n 0000 %m 02327028 n 0000 %m 02327656 n 0000 | type genus of the Leporidae: hares -02326432 05 n 01 hare 0 009 @ 02323902 n 0000 #m 02326237 n 0000 + 02085004 v 0101 ~ 02326763 n 0000 ~ 02326862 n 0000 ~ 02327028 n 0000 ~ 02327656 n 0000 ~ 02327842 n 0000 %p 07666521 n 0000 | swift timid long-eared mammal larger than a rabbit having a divided upper lip and long hind legs; young born furred and with open eyes -02326763 05 n 01 leveret 0 001 @ 02326432 n 0000 | a young hare especially one in its first year -02326862 05 n 02 European_hare 0 Lepus_europaeus 0 002 @ 02326432 n 0000 #m 02326237 n 0000 | large hare introduced in North America; does not turn white in winter -02327028 05 n 01 jackrabbit 0 004 @ 02326432 n 0000 #m 02326237 n 0000 ~ 02327175 n 0000 ~ 02327435 n 0000 | large hare of western North America -02327175 05 n 03 white-tailed_jackrabbit 0 whitetail_jackrabbit 0 Lepus_townsendi 0 001 @ 02327028 n 0000 | largest hare of northern plains and western mountains of United States; brownish-grey in summer and pale grey in winter; tail nearly always all white -02327435 05 n 02 blacktail_jackrabbit 0 Lepus_californicus 0 001 @ 02327028 n 0000 | the common jackrabbit of grasslands and open areas of western United States; has large black-tipped ears and black streak on the tail -02327656 05 n 03 polar_hare 0 Arctic_hare 0 Lepus_arcticus 0 002 @ 02326432 n 0000 #m 02326237 n 0000 | a large hare of northern North America; it is almost completely white in winter -02327842 05 n 04 snowshoe_hare 0 snowshoe_rabbit 0 varying_hare 0 Lepus_americanus 0 001 @ 02326432 n 0000 | large large-footed North American hare; white in winter -02328009 05 n 02 Belgian_hare 0 leporide 0 001 @ 02324045 n 0000 | red breed of domestic rabbits; hybrid between Old World rabbit and hare -02328150 05 n 02 Angora 2 Angora_rabbit 0 001 @ 02324045 n 0000 | domestic breed of rabbit with long white silky hair -02328270 05 n 02 Ochotonidae 0 family_Ochotonidae 0 004 @ 01862557 n 0000 #m 02323186 n 0000 %m 02328429 n 0000 %m 02328662 n 0000 | pikas and extinct forms -02328429 05 n 05 pika 0 mouse_hare 0 rock_rabbit 1 coney 2 cony 2 004 @ 02323449 n 0000 #m 02328270 n 0000 ~ 02328820 n 0000 ~ 02328942 n 0000 | small short-eared burrowing mammal of rocky uplands of Asia and western North America -02328662 05 n 02 Ochotona 0 genus_Ochotona 0 004 @ 01864707 n 0000 #m 02328270 n 0000 %m 02328820 n 0000 %m 02328942 n 0000 | type genus of the Ochotonidae -02328820 05 n 02 little_chief_hare 0 Ochotona_princeps 0 002 @ 02328429 n 0000 #m 02328662 n 0000 | North American pika -02328942 05 n 02 collared_pika 0 Ochotona_collaris 0 002 @ 02328429 n 0000 #m 02328662 n 0000 | similar to little chief hare and may be same species -02329093 05 n 02 Rodentia 0 order_Rodentia 0 007 @ 01342529 n 0000 #m 01886220 n 0000 %m 02329401 n 0000 %m 02330582 n 0000 %m 02346315 n 0000 %m 02354950 n 0000 %m 02369680 n 0000 | small gnawing animals: porcupines; rats; mice; squirrels; marmots; beavers; gophers; voles; hamsters; guinea pigs; agoutis -02329401 05 n 02 rodent 0 gnawer 0 038 @ 01886756 n 0000 #m 02329093 n 0000 + 01445597 v 0201 ~ 02330245 n 0000 ~ 02331046 n 0000 ~ 02331842 n 0000 ~ 02335127 n 0000 ~ 02336011 n 0000 ~ 02338145 n 0000 ~ 02338449 n 0000 ~ 02338722 n 0000 ~ 02338901 n 0000 ~ 02342885 n 0000 ~ 02343772 n 0000 ~ 02344528 n 0000 ~ 02346627 n 0000 ~ 02350989 n 0000 ~ 02351870 n 0000 ~ 02352591 n 0000 ~ 02355227 n 0000 ~ 02359324 n 0000 ~ 02361337 n 0000 ~ 02363005 n 0000 ~ 02363996 n 0000 ~ 02364520 n 0000 ~ 02365108 n 0000 ~ 02365480 n 0000 ~ 02366002 n 0000 ~ 02366301 n 0000 ~ 02366579 n 0000 ~ 02366959 n 0000 ~ 02367492 n 0000 ~ 02367812 n 0000 ~ 02368116 n 0000 ~ 02368399 n 0000 ~ 02368821 n 0000 ~ 02369293 n 0000 ~ 02369555 n 0000 | relatively small placental mammals having a single pair of constantly growing incisor teeth specialized for gnawing -02330245 05 n 01 mouse 0 008 @ 02329401 n 0000 + 02766469 a 0101 + 02766469 a 0102 ~ 02332156 n 0000 ~ 02332447 n 0000 ~ 02332755 n 0000 ~ 02332954 n 0000 ~ 02336641 n 0000 | any of numerous small rodents typically resembling diminutive rats having pointed snouts and small ears on elongated bodies with slender usually hairless tails -02330582 05 n 02 Myomorpha 0 suborder_Myomorpha 0 008 @ 01342529 n 0000 #m 02329093 n 0000 %m 02330830 n 0000 %m 02335349 n 0000 %m 02350845 n 0000 %m 02351518 n 0000 %m 02352390 n 0000 %m 02368563 n 0000 | true rats and mice and related rodents -02330830 05 n 02 Muroidea 0 superfamily_Muroidea 0 003 @ 01862557 n 0000 #m 02330582 n 0000 %m 02331479 n 0000 | a superfamily of rodents essentially equal to the suborder Myomorpha but with the Dipodidae excluded -02331046 05 n 01 rat 0 009 @ 02329401 n 0000 + 00422772 a 0101 + 01480641 v 0101 ~ 02331309 n 0000 ~ 02333546 n 0000 ~ 02333909 n 0000 ~ 02334201 n 0000 ~ 02334460 n 0000 ~ 02340640 n 0000 | any of various long-tailed rodents similar to but larger than a mouse -02331309 05 n 01 pocket_rat 0 005 @ 02331046 n 0000 ~ 02348788 n 0000 ~ 02350105 n 0000 ~ 02350670 n 0000 ~ 02353861 n 0000 | any of various rodents with cheek pouches -02331479 05 n 02 Muridae 0 family_Muridae 0 010 @ 01862557 n 0000 #m 02330830 n 0000 %m 02331960 n 0000 %m 02332315 n 0000 %m 02332606 n 0000 %m 02333368 n 0000 %m 02334079 n 0000 %m 02334337 n 0000 %m 02334609 n 0000 %m 02334849 n 0000 | originally Old World rats now distributed worldwide; distinguished from the Cricetidae by typically lacking cheek pouches -02331842 05 n 01 murine 0 002 @ 02329401 n 0000 + 02867611 a 0101 | a rodent that is a member of the family Muridae -02331960 05 n 02 Mus 0 genus_Mus 0 003 @ 01864707 n 0000 #m 02331479 n 0000 %m 02332156 n 0000 | type genus of the Muridae: common house mice; the tips of the upper incisors have a square notch -02332156 05 n 02 house_mouse 0 Mus_musculus 0 002 @ 02330245 n 0000 #m 02331960 n 0000 | brownish-grey Old World mouse now a common household pest worldwide -02332315 05 n 02 Micromyx 0 genus_Micromyx 0 003 @ 01864707 n 0000 #m 02331479 n 0000 %m 02332447 n 0000 | Old World harvest mice -02332447 05 n 02 harvest_mouse 1 Micromyx_minutus 0 002 @ 02330245 n 0000 #m 02332315 n 0000 | small reddish-brown Eurasian mouse inhabiting e.g. cornfields -02332606 05 n 02 Apodemus 0 genus_Apodemus 0 004 @ 01864707 n 0000 #m 02331479 n 0000 %m 02332755 n 0000 %m 02333190 n 0000 | Old World field mice -02332755 05 n 02 field_mouse 2 fieldmouse 0 003 @ 02330245 n 0000 #m 02332606 n 0000 ~ 02333190 n 0000 | any nocturnal Old World mouse of the genus Apodemus inhabiting woods and fields and gardens -02332954 05 n 01 nude_mouse 0 001 @ 02330245 n 0000 | a mouse with a genetic defect that prevents them from growing hair and also prevents them from immunologically rejecting human cells and tissues; widely used in preclinical trials -02333190 05 n 02 European_wood_mouse 0 Apodemus_sylvaticus 0 002 @ 02332755 n 0000 #m 02332606 n 0000 | nocturnal yellowish-brown mouse inhabiting woods and fields and gardens -02333368 05 n 02 Rattus 0 genus_Rattus 0 004 @ 01864707 n 0000 #m 02331479 n 0000 %m 02333546 n 0000 %m 02333909 n 0000 | common house rats; upper incisors have a beveled edge -02333546 05 n 03 brown_rat 0 Norway_rat 0 Rattus_norvegicus 0 004 @ 02331046 n 0000 #m 02333368 n 0000 ~ 02333733 n 0000 ~ 02333819 n 0000 | common domestic rat; serious pest worldwide -02333733 05 n 01 wharf_rat 0 001 @ 02333546 n 0000 | brown rat that infests wharves -02333819 05 n 01 sewer_rat 0 001 @ 02333546 n 0000 | brown rat commonly found in sewers -02333909 05 n 03 black_rat 0 roof_rat 0 Rattus_rattus 0 002 @ 02331046 n 0000 #m 02333368 n 0000 | common household pest originally from Asia that has spread worldwide -02334079 05 n 02 Nesokia 0 genus_Nesokia 0 003 @ 01864707 n 0000 #m 02331479 n 0000 %m 02334201 n 0000 | bandicoot rats -02334201 05 n 02 bandicoot_rat 0 mole_rat 2 002 @ 02331046 n 0000 #m 02334079 n 0000 | burrowing scaly-tailed rat of India and Ceylon -02334337 05 n 02 Conilurus 0 genus_Conilurus 0 003 @ 01864707 n 0000 #m 02331479 n 0000 %m 02334460 n 0000 | jerboa rats -02334460 05 n 01 jerboa_rat 0 003 @ 02331046 n 0000 #m 02334337 n 0000 ~ 02334728 n 0000 | large Australian rat with hind legs adapted for leaping -02334609 05 n 02 Notomys 0 genus_Notomys 0 003 @ 01864707 n 0000 #m 02331479 n 0000 %m 02334728 n 0000 | jerboa rats -02334728 05 n 01 kangaroo_mouse 1 002 @ 02334460 n 0000 #m 02334609 n 0000 | leaping rodent of Australian desert areas -02334849 05 n 02 Hydromyinae 0 subfamily_Hydromyinae 0 003 @ 01862557 n 0000 #m 02331479 n 0000 %m 02335007 n 0000 | water rats of Australia and New Guinea -02335007 05 n 02 Hydromys 0 genus_Hydromys 0 003 @ 01864707 n 0000 #m 02334849 n 0000 %m 02335231 n 0000 | water rats -02335127 05 n 01 water_rat 0 002 @ 02329401 n 0000 ~ 02335231 n 0000 | any of various amphibious rats -02335231 05 n 01 beaver_rat 0 002 @ 02335127 n 0000 #m 02335007 n 0000 | amphibious rat of Australia and New Guinea -02335349 05 n 02 Cricetidae 0 family_Cricetidae 0 027 @ 01862557 n 0000 #m 02330582 n 0000 %m 02336011 n 0000 %m 02336129 n 0000 %m 02336451 n 0000 %m 02337480 n 0000 %m 02337774 n 0000 %m 02338029 n 0000 %m 02338319 n 0000 %m 02338592 n 0000 %m 02338901 n 0000 %m 02339768 n 0000 %m 02340521 n 0000 %m 02340813 n 0000 %m 02341108 n 0000 %m 02341805 n 0000 %m 02342109 n 0000 %m 02342413 n 0000 %m 02342727 n 0000 %m 02343187 n 0000 %m 02343487 n 0000 %m 02344006 n 0000 %m 02344528 n 0000 %m 02344785 n 0000 %m 02345213 n 0000 %m 02345471 n 0000 %m 02345890 n 0000 | mostly small New World rodents including New World mice and lemmings and voles and hamsters -02336011 05 n 01 New_World_mouse 0 003 @ 02329401 n 0000 #m 02335349 n 0000 ~ 02336275 n 0000 | a variety of rodent -02336129 05 n 02 Reithrodontomys 0 genus_Reithrodontomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02336275 n 0000 | New World harvest mice -02336275 05 n 02 American_harvest_mouse 0 harvest_mouse 2 002 @ 02336011 n 0000 #m 02336129 n 0000 | any of several small greyish New World mice inhabiting e.g. grain fields -02336451 05 n 02 Peromyscus 0 genus_Peromyscus 0 006 @ 01864707 n 0000 #m 02335349 n 0000 %m 02336826 n 0000 %m 02337001 n 0000 %m 02337171 n 0000 %m 02337332 n 0000 | New World wood mice -02336641 05 n 01 wood_mouse 0 006 @ 02330245 n 0000 ~ 02336826 n 0000 ~ 02337001 n 0000 ~ 02337171 n 0000 ~ 02337332 n 0000 ~ 02337598 n 0000 | any of various New World woodland mice -02336826 05 n 03 white-footed_mouse 0 vesper_mouse 0 Peromyscus_leucopus 0 002 @ 02336641 n 0000 #m 02336451 n 0000 | American woodland mouse with white feet and underparts -02337001 05 n 02 deer_mouse 0 Peromyscus_maniculatus 0 002 @ 02336641 n 0000 #m 02336451 n 0000 | brownish New World mouse; most widely distributed member of the genus -02337171 05 n 02 cactus_mouse 0 Peromyscus_eremicus 0 002 @ 02336641 n 0000 #m 02336451 n 0000 | burrowing mouse of desert areas of southwestern United States -02337332 05 n 02 cotton_mouse 0 Peromyscus_gossypinus 0 002 @ 02336641 n 0000 #m 02336451 n 0000 | large dark mouse of southeastern United States -02337480 05 n 02 Baiomys 0 genus_Baiomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02337598 n 0000 | pygmy mice -02337598 05 n 02 pygmy_mouse 0 Baiomys_taylori 0 002 @ 02336641 n 0000 #m 02337480 n 0000 | very small dark greyish brown mouse resembling a house mouse; of Texas and Mexico -02337774 05 n 02 Onychomys 0 genus_Onychomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02337902 n 0000 | grasshopper mice -02337902 05 n 01 grasshopper_mouse 0 002 @ 02339376 n 0000 #m 02337774 n 0000 | insectivorous mouse of western North America -02338029 05 n 02 Ondatra 0 genus_Ondatra 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02338145 n 0000 | muskrats -02338145 05 n 03 muskrat 0 musquash 0 Ondatra_zibethica 0 002 @ 02329401 n 0000 #m 02338029 n 0000 | beaver-like aquatic rodent of North America with dark glossy brown fur -02338319 05 n 02 Neofiber 0 genus_Neofiber 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02338449 n 0000 | round-tailed muskrat -02338449 05 n 03 round-tailed_muskrat 0 Florida_water_rat 0 Neofiber_alleni 0 002 @ 02329401 n 0000 #m 02338319 n 0000 | of Florida wetlands -02338592 05 n 02 Sigmodon 0 genus_Sigmodon 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02338722 n 0000 | American cotton rats -02338722 05 n 02 cotton_rat 0 Sigmodon_hispidus 0 002 @ 02329401 n 0000 #m 02338592 n 0000 | destructive long-haired burrowing rat of southern North America and Central America -02338901 05 n 02 wood_rat 0 wood-rat 0 006 @ 02329401 n 0000 #m 02335349 n 0000 ~ 02339282 n 0000 ~ 02339376 n 0000 ~ 02339922 n 0000 ~ 02340358 n 0000 | any of various small short-tailed rodents of the northern hemisphere having soft fur grey above and white below with furred tails and large ears; some are hosts for Ixodes pacificus and Ixodes scapularis (Lyme disease ticks) -02339282 05 n 01 dusky-footed_wood_rat 0 001 @ 02338901 n 0000 | a wood rat with dusky feet -02339376 05 n 02 vole 0 field_mouse 1 009 @ 02338901 n 0000 ~ 02337902 n 0000 ~ 02340930 n 0000 ~ 02341288 n 0000 ~ 02341475 n 0000 ~ 02341616 n 0000 ~ 02341974 n 0000 ~ 02342250 n 0000 ~ 02342534 n 0000 | any of various small mouselike rodents of the family Cricetidae (especially of genus Microtus) having a stout short-tailed body and inconspicuous ears and inhabiting fields or meadows -02339768 05 n 02 Neotoma 0 genus_Neotoma 0 005 @ 01864707 n 0000 #m 02335349 n 0000 %m 02339922 n 0000 %m 02340186 n 0000 %m 02340358 n 0000 | packrats -02339922 05 n 05 packrat 0 pack_rat 0 trade_rat 0 bushytail_woodrat 0 Neotoma_cinerea 0 003 @ 02338901 n 0000 #m 02339768 n 0000 ~ 02340186 n 0000 | any of several bushy-tailed rodents of the genus Neotoma of western North America; hoards food and other objects -02340186 05 n 02 dusky-footed_woodrat 0 Neotoma_fuscipes 0 002 @ 02339922 n 0000 #m 02339768 n 0000 | host to Lyme disease tick (Ixodes pacificus) in northern California -02340358 05 n 02 eastern_woodrat 0 Neotoma_floridana 0 002 @ 02338901 n 0000 #m 02339768 n 0000 | large greyish-brown wood rat of the southeastern United States -02340521 05 n 02 Oryzomys 0 genus_Oryzomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02340640 n 0000 | rice rats -02340640 05 n 02 rice_rat 0 Oryzomys_palustris 0 002 @ 02331046 n 0000 #m 02340521 n 0000 | hardy agile rat of grassy marshes of Mexico and the southeastern United States -02340813 05 n 02 Pitymys 0 genus_Pitymys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02340930 n 0000 | pine mice -02340930 05 n 03 pine_vole 0 pine_mouse 0 Pitymys_pinetorum 0 002 @ 02339376 n 0000 #m 02340813 n 0000 | short-tailed glossy-furred burrowing vole of the eastern United States -02341108 05 n 02 Microtus 0 genus_Microtus 0 005 @ 01864707 n 0000 #m 02335349 n 0000 %m 02341288 n 0000 %m 02341475 n 0000 %m 02341616 n 0000 | voles of the northern hemisphere -02341288 05 n 03 meadow_vole 0 meadow_mouse 0 Microtus_pennsylvaticus 0 002 @ 02339376 n 0000 #m 02341108 n 0000 | widely distributed in grasslands of northern United States and Canada -02341475 05 n 03 water_vole 2 Richardson_vole 0 Microtus_richardsoni 0 002 @ 02339376 n 0000 #m 02341108 n 0000 | of western North America -02341616 05 n 02 prairie_vole 0 Microtus_ochrogaster 0 002 @ 02339376 n 0000 #m 02341108 n 0000 | typical vole of the extended prairie region of central United States and southern Canada -02341805 05 n 02 Arvicola 0 genus_Arvicola 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02341974 n 0000 | in some classifications considered synonymous with Microtus -02341974 05 n 03 water_vole 1 water_rat 2 Arvicola_amphibius 0 002 @ 02339376 n 0000 #m 02341805 n 0000 | common large Eurasian vole -02342109 05 n 02 Clethrionomys 0 genus_Clethrionomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02342250 n 0000 | a genus of Cricetidae -02342250 05 n 02 red-backed_mouse 0 redback_vole 0 002 @ 02339376 n 0000 #m 02342109 n 0000 | any of several voles of mountainous regions of Eurasia and America -02342413 05 n 01 genus_Phenacomys 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02342534 n 0000 | North American voles -02342534 05 n 01 phenacomys 0 002 @ 02339376 n 0000 #m 02342413 n 0000 | any of several vole-like terrestrial or arboreal rodents of cold forested regions of Canada and western United States -02342727 05 n 02 Cricetus 0 genus_Cricetus 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02342885 n 0000 | type genus of the Cricetidae: Old World hamsters -02342885 05 n 01 hamster 0 004 @ 02329401 n 0000 #m 02342727 n 0000 ~ 02343058 n 0000 ~ 02343320 n 0000 | short-tailed Old World burrowing rodent with large cheek pouches -02343058 05 n 02 Eurasian_hamster 0 Cricetus_cricetus 0 001 @ 02342885 n 0000 | a variety of hamster common to Europe and Asia -02343187 05 n 02 Mesocricetus 0 genus_Mesocricetus 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02343320 n 0000 | golden hamsters -02343320 05 n 03 golden_hamster 0 Syrian_hamster 0 Mesocricetus_auratus 0 002 @ 02342885 n 0000 #m 02343187 n 0000 | small light-colored hamster often kept as a pet -02343487 05 n 02 Gerbillinae 0 subfamily_Gerbillinae 0 004 @ 01862557 n 0000 #m 02335349 n 0000 %m 02343633 n 0000 %m 02343772 n 0000 | gerbils -02343633 05 n 02 Gerbillus 0 genus_Gerbillus 0 002 @ 01864707 n 0000 #m 02343487 n 0000 | type genus of the Gerbillinae: typical gerbils -02343772 05 n 02 gerbil 0 gerbille 0 005 @ 02329401 n 0000 #m 02343487 n 0000 ~ 02344175 n 0000 ~ 02344270 n 0000 ~ 02344408 n 0000 | small Old World burrowing desert rodent with long soft pale fur and hind legs adapted for leaping -02344006 05 n 02 Meriones 0 genus_Meriones 0 005 @ 01864707 n 0000 #m 02335349 n 0000 %m 02344175 n 0000 %m 02344270 n 0000 %m 02344408 n 0000 | a genus of Cricetidae -02344175 05 n 01 jird 0 002 @ 02343772 n 0000 #m 02344006 n 0000 | gerbil of northern Africa -02344270 05 n 02 tamarisk_gerbil 0 Meriones_unguiculatus 0 002 @ 02343772 n 0000 #m 02344006 n 0000 | a gerbil that is popular as a pet -02344408 05 n 02 sand_rat 1 Meriones_longifrons 0 002 @ 02343772 n 0000 #m 02344006 n 0000 | southern European gerbil -02344528 05 n 01 lemming 0 008 @ 02329401 n 0000 #m 02335349 n 0000 ~ 02344918 n 0000 ~ 02345078 n 0000 ~ 02345340 n 0000 ~ 02345600 n 0000 ~ 02345997 n 0000 ~ 02346170 n 0000 | any of various short-tailed furry-footed rodents of circumpolar distribution -02344785 05 n 02 Lemmus 0 genus_lemmus 0 004 @ 01864707 n 0000 #m 02335349 n 0000 %m 02344918 n 0000 %m 02345078 n 0000 | lemmings -02344918 05 n 02 European_lemming 0 Lemmus_lemmus 0 002 @ 02344528 n 0000 #m 02344785 n 0000 | notable for mass migrations even into the sea where many drown -02345078 05 n 02 brown_lemming 0 Lemmus_trimucronatus 0 002 @ 02344528 n 0000 #m 02344785 n 0000 | of northwestern Canada and Alaska -02345213 05 n 02 Myopus 0 genus_Myopus 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02345340 n 0000 | a genus of Cricetidae -02345340 05 n 03 grey_lemming 0 gray_lemming 0 red-backed_lemming 0 002 @ 02344528 n 0000 #m 02345213 n 0000 | Old World lemming -02345471 05 n 02 Dicrostonyx 0 genus_Dicrostonyx 0 003 @ 01864707 n 0000 #m 02335349 n 0000 %m 02345600 n 0000 | pied lemmings -02345600 05 n 01 pied_lemming 0 003 @ 02344528 n 0000 #m 02345471 n 0000 ~ 02345774 n 0000 | North American lemming having a white winter coat and some claws much enlarged -02345774 05 n 02 Hudson_bay_collared_lemming 0 Dicrostonyx_hudsonius 0 001 @ 02345600 n 0000 | of northern Canada -02345890 05 n 02 Synaptomys 0 genus_Synaptomys 0 002 @ 01864707 n 0000 #m 02335349 n 0000 | bog lemmings -02345997 05 n 02 southern_bog_lemming 0 Synaptomys_cooperi 0 001 @ 02344528 n 0000 | of low bogs and meadows of northeastern and central United States and southern Canada -02346170 05 n 02 northern_bog_lemming 0 Synaptomys_borealis 0 001 @ 02344528 n 0000 | of wet alpine and subalpine meadows of Canada and Alaska -02346315 05 n 02 Hystricomorpha 0 suborder_Hystricomorpha 0 009 @ 01342529 n 0000 #m 02329093 n 0000 %m 02346823 n 0000 %m 02347865 n 0000 %m 02364221 n 0000 %m 02365672 n 0000 %m 02366702 n 0000 %m 02367131 n 0000 %m 02369012 n 0000 | an order of rodents including: porcupines; guinea pigs; chinchillas; etc. -02346627 05 n 02 porcupine 0 hedgehog 2 004 @ 02329401 n 0000 %p 01900837 n 0000 ~ 02346998 n 0000 ~ 02347744 n 0000 | relatively large rodents with sharp erectile bristles mingled with the fur -02346823 05 n 02 Hystricidae 0 family_Hystricidae 0 005 @ 01862557 n 0000 #m 02346315 n 0000 %m 02346998 n 0000 %m 02347140 n 0000 %m 02347443 n 0000 | Old World porcupines -02346998 05 n 01 Old_World_porcupine 0 004 @ 02346627 n 0000 #m 02346823 n 0000 ~ 02347274 n 0000 ~ 02347573 n 0000 | terrestrial porcupine -02347140 05 n 02 Atherurus 0 genus_Atherurus 0 003 @ 01864707 n 0000 #m 02346823 n 0000 %m 02347274 n 0000 | a genus of Hystricidae -02347274 05 n 02 brush-tailed_porcupine 0 brush-tail_porcupine 0 002 @ 02346998 n 0000 #m 02347140 n 0000 | porcupine with a tuft of large beaded bristles on the tail -02347443 05 n 02 Trichys 0 genus_Trichys 0 003 @ 01864707 n 0000 #m 02346823 n 0000 %m 02347573 n 0000 | a genus of Hystricidae -02347573 05 n 02 long-tailed_porcupine 0 Trichys_lipura 0 002 @ 02346998 n 0000 #m 02347443 n 0000 | porcupine of Borneo and Sumatra having short spines and a long tail -02347744 05 n 01 New_World_porcupine 0 003 @ 02346627 n 0000 #m 02347865 n 0000 ~ 02348173 n 0000 | arboreal porcupine -02347865 05 n 02 Erethizontidae 0 family_Erethizontidae 0 004 @ 01862557 n 0000 #m 02346315 n 0000 %m 02347744 n 0000 %m 02348036 n 0000 | New World arboreal porcupines -02348036 05 n 02 Erethizon 0 genus_Erethizon 0 003 @ 01864707 n 0000 #m 02347865 n 0000 %m 02348173 n 0000 | a genus of Erethizontidae -02348173 05 n 02 Canada_porcupine 0 Erethizon_dorsatum 0 002 @ 02347744 n 0000 #m 02348036 n 0000 | porcupine of northeastern North America with barbed spines concealed in the coarse fur; often gnaws buildings for salt and grease -02348405 05 n 02 Heteromyidae 0 family_Heteromyidae 0 007 @ 01862557 n 0000 #m 02354950 n 0000 %m 02348788 n 0000 %m 02349040 n 0000 %m 02349730 n 0000 %m 02349980 n 0000 %m 02350537 n 0000 | small New World burrowing mouselike rodents with fur-lined cheek pouches and hind limbs and tail adapted to leaping; adapted to desert conditions: pocket mice; kangaroo mice; kangaroo rats -02348788 05 n 01 pocket_mouse 0 006 @ 02331309 n 0000 #m 02348405 n 0000 ~ 02349205 n 0000 ~ 02349390 n 0000 ~ 02349557 n 0000 ~ 02349847 n 0000 | any of various small nocturnal burrowing desert rodents with cheek pouches and long hind legs and tail -02349040 05 n 02 Perognathus 0 genus_Perognathus 0 005 @ 01864707 n 0000 #m 02348405 n 0000 %m 02349205 n 0000 %m 02349390 n 0000 %m 02349557 n 0000 | pocket mice -02349205 05 n 02 silky_pocket_mouse 0 Perognathus_flavus 0 002 @ 02348788 n 0000 #m 02349040 n 0000 | small pale yellowish soft-furred rodent of southwestern United States and Mexico -02349390 05 n 02 plains_pocket_mouse 0 Perognathus_flavescens 0 002 @ 02348788 n 0000 #m 02349040 n 0000 | small rodent of open areas of United States plains states -02349557 05 n 02 hispid_pocket_mouse 0 Perognathus_hispidus 0 002 @ 02348788 n 0000 #m 02349040 n 0000 | large stiff-haired rodent of shortgrass prairies of United States -02349730 05 n 02 Liomys 0 genus_Liomys 0 003 @ 01864707 n 0000 #m 02348405 n 0000 %m 02349847 n 0000 | pocket mice -02349847 05 n 02 Mexican_pocket_mouse 0 Liomys_irroratus 0 002 @ 02348788 n 0000 #m 02349730 n 0000 | large pocket mouse of Mexico -02349980 05 n 02 Dipodomys 0 genus_Dipodomys 0 003 @ 01864707 n 0000 #m 02348405 n 0000 %m 02350105 n 0000 | kangaroo rats -02350105 05 n 03 kangaroo_rat 1 desert_rat 0 Dipodomys_phillipsii 0 003 @ 02331309 n 0000 #m 02349980 n 0000 ~ 02350357 n 0000 | any of various leaping rodents of desert regions of North America and Mexico; largest members of the family Heteromyidae -02350357 05 n 02 Ord_kangaroo_rat 0 Dipodomys_ordi 0 001 @ 02350105 n 0000 | most widely distributed kangaroo rat: plains and mountain areas of central and western United States -02350537 05 n 02 Microdipodops 0 genus_Microdipodops 0 003 @ 01864707 n 0000 #m 02348405 n 0000 %m 02350670 n 0000 | kangaroo mice -02350670 05 n 02 kangaroo_mouse 0 dwarf_pocket_rat 0 002 @ 02331309 n 0000 #m 02350537 n 0000 | small silky-haired pouched rodent; similar to but smaller than kangaroo rats -02350845 05 n 02 Zapodidae 0 family_Zapodidae 0 004 @ 01862557 n 0000 #m 02330582 n 0000 %m 02350989 n 0000 %m 02351212 n 0000 | jumping mice -02350989 05 n 01 jumping_mouse 0 003 @ 02329401 n 0000 #m 02350845 n 0000 ~ 02351343 n 0000 | any of several primitive mouselike rodents with long hind legs and no cheek pouches; of woodlands of Eurasia and North America -02351212 05 n 02 Zapus 0 genus_Zapus 0 003 @ 01864707 n 0000 #m 02350845 n 0000 %m 02351343 n 0000 | type genus of the Zapodidae -02351343 05 n 02 meadow_jumping_mouse 0 Zapus_hudsonius 0 002 @ 02350989 n 0000 #m 02351212 n 0000 | widely distributed in northeastern and central United States and Canada -02351518 05 n 02 Dipodidae 0 family_Dipodidae 0 005 @ 01862557 n 0000 #m 02330582 n 0000 %m 02351686 n 0000 %m 02351870 n 0000 %m 02352175 n 0000 | Old World jerboas -02351686 05 n 02 Dipus 0 genus_Dipus 0 003 @ 01864707 n 0000 #m 02351518 n 0000 %m 02352002 n 0000 | type genus of the Dipodidae; typical jerboas having three toes on each hind foot -02351870 05 n 01 jerboa 0 004 @ 02329401 n 0000 #m 02351518 n 0000 ~ 02352002 n 0000 ~ 02352290 n 0000 | mouselike jumping rodent -02352002 05 n 01 typical_jerboa 0 002 @ 02351870 n 0000 #m 02351686 n 0000 | small nocturnal jumping rodent with long hind legs; of arid parts of Asia and northern Africa -02352175 05 n 02 Jaculus 0 genus_Jaculus 0 003 @ 01864707 n 0000 #m 02351518 n 0000 %m 02352290 n 0000 | jerboas -02352290 05 n 01 Jaculus_jaculus 0 002 @ 02351870 n 0000 #m 02352175 n 0000 | a variety of jerboa -02352390 05 n 02 Gliridae 0 family_Gliridae 0 006 @ 01862557 n 0000 #m 02330582 n 0000 %m 02352591 n 0000 %m 02352804 n 0000 %m 02353037 n 0000 %m 02353297 n 0000 | dormice and other Old World forms -02352591 05 n 01 dormouse 0 005 @ 02329401 n 0000 #m 02352390 n 0000 ~ 02352932 n 0000 ~ 02353172 n 0000 ~ 02353411 n 0000 | small furry-tailed squirrel-like Old World rodent that becomes torpid in cold weather -02352804 05 n 02 Glis 0 genus_Glis 0 003 @ 01864707 n 0000 #m 02352390 n 0000 %m 02352932 n 0000 | type genus of the Gliridae -02352932 05 n 02 loir 0 Glis_glis 0 002 @ 02352591 n 0000 #m 02352804 n 0000 | large European dormouse -02353037 05 n 02 Muscardinus 0 genus_Muscardinus 0 003 @ 01864707 n 0000 #m 02352390 n 0000 %m 02353172 n 0000 | a genus of Gliridae -02353172 05 n 02 hazel_mouse 0 Muscardinus_avellanarius 0 002 @ 02352591 n 0000 #m 02353037 n 0000 | a variety of dormouse -02353297 05 n 02 Eliomys 0 genus_Eliomys 0 003 @ 01864707 n 0000 #m 02352390 n 0000 %m 02353411 n 0000 | lerots -02353411 05 n 01 lerot 0 002 @ 02352591 n 0000 #m 02353297 n 0000 | dormouse of southern Europe and northern Africa -02353529 05 n 02 Geomyidae 0 family_Geomyidae 0 005 @ 01862557 n 0000 #m 02354950 n 0000 %m 02353709 n 0000 %m 02353861 n 0000 %m 02354470 n 0000 | North American pocket gophers -02353709 05 n 02 Geomys 0 genus_Geomys 0 004 @ 01864707 n 0000 #m 02353529 n 0000 %m 02354162 n 0000 %m 02354320 n 0000 | type genus of the Geomyidae -02353861 05 n 03 gopher 1 pocket_gopher 0 pouched_rat 1 006 @ 02331309 n 0000 #m 02353529 n 0000 ~ 02354162 n 0000 ~ 02354320 n 0000 ~ 02354621 n 0000 ~ 02354781 n 0000 | burrowing rodent of the family Geomyidae having large external cheek pouches; of Central America and southwestern North America -02354162 05 n 02 plains_pocket_gopher 0 Geomys_bursarius 0 002 @ 02353861 n 0000 #m 02353709 n 0000 | gopher of chiefly grasslands of central North America -02354320 05 n 02 southeastern_pocket_gopher 0 Geomys_pinetis 0 002 @ 02353861 n 0000 #m 02353709 n 0000 | gopher of Alabama and Georgia and Florida -02354470 05 n 02 Thomomys 0 genus_Thomomys 0 004 @ 01864707 n 0000 #m 02353529 n 0000 %m 02354621 n 0000 %m 02354781 n 0000 | western pocket gophers -02354621 05 n 02 valley_pocket_gopher 0 Thomomys_bottae 0 002 @ 02353861 n 0000 #m 02354470 n 0000 | of valleys and mountain meadows of western United States -02354781 05 n 02 northern_pocket_gopher 0 Thomomys_talpoides 0 002 @ 02353861 n 0000 #m 02354470 n 0000 | greyish to brown gopher of western and central United States -02354950 05 n 02 Sciuromorpha 0 suborder_Sciuromorpha 0 007 @ 01342529 n 0000 #m 02329093 n 0000 %m 02348405 n 0000 %m 02353529 n 0000 %m 02355711 n 0000 %m 02362721 n 0000 %m 02363681 n 0000 | large more or less primitive rodents: squirrels; marmots; gophers; beavers; etc. -02355227 05 n 01 squirrel 0 009 @ 02329401 n 0000 #m 02355711 n 0000 ~ 02355477 n 0000 ~ 02358091 n 0000 ~ 02359915 n 0000 ~ 02360282 n 0000 ~ 02360480 n 0000 ~ 02360781 n 0000 ~ 02362194 n 0000 | a kind of arboreal rodent having a long bushy tail -02355477 05 n 01 tree_squirrel 0 009 @ 02355227 n 0000 #m 02356108 n 0000 ~ 02356381 n 0000 ~ 02356612 n 0000 ~ 02356798 n 0000 ~ 02356977 n 0000 ~ 02357111 n 0000 ~ 02357401 n 0000 ~ 02357585 n 0000 | any typical arboreal squirrel -02355711 05 n 02 Sciuridae 0 family_Sciuridae 0 012 @ 01862557 n 0000 #m 02354950 n 0000 %m 02355227 n 0000 %m 02356108 n 0000 %m 02357280 n 0000 %m 02357741 n 0000 %m 02359204 n 0000 %m 02359775 n 0000 %m 02360135 n 0000 %m 02360643 n 0000 %m 02361222 n 0000 %m 02362025 n 0000 | a mammal family of true squirrels including: ground squirrels; marmots; chipmunks; flying squirrels; spermophiles -02356108 05 n 02 Sciurus 0 genus_Sciurus 0 008 @ 01864707 n 0000 #m 02355711 n 0000 %m 02355477 n 0000 %m 02356381 n 0000 %m 02356612 n 0000 %m 02356798 n 0000 %m 02356977 n 0000 %m 02357111 n 0000 | type genus of the Sciuridae; typical moderate-sized arboreal squirrels -02356381 05 n 04 eastern_grey_squirrel 0 eastern_gray_squirrel 0 cat_squirrel 1 Sciurus_carolinensis 0 002 @ 02355477 n 0000 #m 02356108 n 0000 | common medium-large squirrel of eastern North America; now introduced into England -02356612 05 n 03 western_grey_squirrel 0 western_gray_squirrel 0 Sciurus_griseus 0 002 @ 02355477 n 0000 #m 02356108 n 0000 | large grey squirrel of far western areas of United States -02356798 05 n 03 fox_squirrel 0 eastern_fox_squirrel 0 Sciurus_niger 0 002 @ 02355477 n 0000 #m 02356108 n 0000 | exceptionally large arboreal squirrel of eastern United States -02356977 05 n 01 black_squirrel 0 002 @ 02355477 n 0000 #m 02356108 n 0000 | fox squirrel or grey squirrel in the black color phase -02357111 05 n 03 red_squirrel 1 cat_squirrel 2 Sciurus_vulgaris 0 002 @ 02355477 n 0000 #m 02356108 n 0000 | common reddish-brown squirrel of Europe and parts of Asia -02357280 05 n 02 Tamiasciurus 0 genus_Tamiasciurus 0 002 @ 01864707 n 0000 #m 02355711 n 0000 | American red squirrels -02357401 05 n 05 American_red_squirrel 0 spruce_squirrel 0 red_squirrel 2 Sciurus_hudsonicus 0 Tamiasciurus_hudsonicus 0 001 @ 02355477 n 0000 | of northern United States and Canada -02357585 05 n 03 chickeree 0 Douglas_squirrel 0 Tamiasciurus_douglasi 0 001 @ 02355477 n 0000 | far western United States counterpart of the red squirrel -02357741 05 n 04 Citellus 0 genus_Citellus 0 Spermophilus 0 genus_Spermophilus 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02358091 n 0000 | typical ground squirrels -02357911 05 n 04 antelope_squirrel 0 whitetail_antelope_squirrel 0 antelope_chipmunk 0 Citellus_leucurus 0 001 @ 02358091 n 0000 | small ground squirrel of western United States -02358091 05 n 03 ground_squirrel 0 gopher 3 spermophile 0 008 @ 02355227 n 0000 #m 02357741 n 0000 ~ 02357911 n 0000 ~ 02358390 n 0000 ~ 02358584 n 0000 ~ 02358712 n 0000 ~ 02358890 n 0000 ~ 02359047 n 0000 | any of various terrestrial burrowing rodents of Old and New Worlds; often destroy crops -02358390 05 n 02 mantled_ground_squirrel 0 Citellus_lateralis 0 001 @ 02358091 n 0000 | common black-striped reddish-brown ground squirrel of western North America; resembles a large chipmunk -02358584 05 n 03 suslik 0 souslik 0 Citellus_citellus 0 001 @ 02358091 n 0000 | rather large central Eurasian ground squirrel -02358712 05 n 03 flickertail 0 Richardson_ground_squirrel 0 Citellus_richardsoni 0 001 @ 02358091 n 0000 | of sagebrush and grassland areas of western United States and Canada -02358890 05 n 02 rock_squirrel 0 Citellus_variegatus 0 001 @ 02358091 n 0000 | large grey ground squirrel of rocky areas of the southwestern United States -02359047 05 n 03 Arctic_ground_squirrel 0 parka_squirrel 0 Citellus_parryi 0 001 @ 02358091 n 0000 | large ground squirrel of the North American far north -02359204 05 n 02 Cynomys 0 genus_Cynomys 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02359324 n 0000 | prairie dogs -02359324 05 n 02 prairie_dog 0 prairie_marmot 0 004 @ 02329401 n 0000 #m 02359204 n 0000 ~ 02359556 n 0000 ~ 02359667 n 0000 | any of several rodents of North American prairies living in large complex burrows having a barking cry -02359556 05 n 02 blacktail_prairie_dog 0 Cynomys_ludovicianus 0 001 @ 02359324 n 0000 | tail is black tipped -02359667 05 n 02 whitetail_prairie_dog 0 Cynomys_gunnisoni 0 001 @ 02359324 n 0000 | tail is white tipped -02359775 05 n 02 Tamias 0 genus_Tamias 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02359915 n 0000 | chipmunks of eastern North America -02359915 05 n 05 eastern_chipmunk 0 hackee 0 striped_squirrel 0 ground_squirrel 2 Tamias_striatus 0 002 @ 02355227 n 0000 #m 02359775 n 0000 | small striped semiterrestrial eastern American squirrel with cheek pouches -02360135 05 n 02 Eutamias 0 genus_Eutamias 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02360282 n 0000 | chipmunks of western America and Asia -02360282 05 n 01 chipmunk 2 002 @ 02355227 n 0000 #m 02360135 n 0000 | a burrowing ground squirrel of western America and Asia; has cheek pouches and a light and dark stripe running down the body -02360480 05 n 06 baronduki 0 baranduki 0 barunduki 0 burunduki 0 Eutamius_asiaticus 0 Eutamius_sibiricus 0 001 @ 02355227 n 0000 | terrestrial Siberian squirrel -02360643 05 n 02 Glaucomys 0 genus_Glaucomys 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02360781 n 0000 | New World flying squirrels -02360781 05 n 01 American_flying_squirrel 0 004 @ 02355227 n 0000 #m 02360643 n 0000 ~ 02360933 n 0000 ~ 02361090 n 0000 | New World flying squirrels -02360933 05 n 02 southern_flying_squirrel 0 Glaucomys_volans 0 001 @ 02360781 n 0000 | small large-eyed nocturnal flying squirrel of eastern United States -02361090 05 n 02 northern_flying_squirrel 0 Glaucomys_sabrinus 0 001 @ 02360781 n 0000 | large flying squirrel; chiefly of Canada -02361222 05 n 02 Marmota 0 genus_Marmota 0 003 @ 01864707 n 0000 #m 02355711 n 0000 %m 02361337 n 0000 | marmots -02361337 05 n 01 marmot 0 005 @ 02329401 n 0000 #m 02361222 n 0000 ~ 02361587 n 0000 ~ 02361706 n 0000 ~ 02361850 n 0000 | stocky coarse-furred burrowing rodent with a short bushy tail found throughout the northern hemisphere; hibernates in winter -02361587 05 n 03 groundhog 0 woodchuck 0 Marmota_monax 0 001 @ 02361337 n 0000 | reddish brown North American marmot -02361706 05 n 04 hoary_marmot 0 whistler 3 whistling_marmot 0 Marmota_caligata 0 001 @ 02361337 n 0000 | large North American mountain marmot -02361850 05 n 03 yellowbelly_marmot 0 rockchuck 0 Marmota_flaviventris 0 001 @ 02361337 n 0000 | heavy-bodied yellowish-brown marmot of rocky areas of western North America -02362025 05 n 02 Petauristidae 0 subfamily_Petauristidae 0 004 @ 01862557 n 0000 #m 02355711 n 0000 %m 02362194 n 0000 %m 02362420 n 0000 | Old World flying squirrels -02362194 05 n 01 Asiatic_flying_squirrel 0 003 @ 02355227 n 0000 #m 02362025 n 0000 ~ 02362569 n 0000 | nocturnal rodent of Asia having furry folds of skin between forelegs and hind legs enabling it to move by gliding leaps -02362420 05 n 02 Petaurista 0 genus_Petaurista 0 003 @ 01864707 n 0000 #m 02362025 n 0000 %m 02362569 n 0000 | very large Asiatic flying squirrels -02362569 05 n 04 taguan 0 flying_marmot 0 flying_cat 1 Petaurista_petaurista 0 002 @ 02362194 n 0000 #m 02362420 n 0000 | East Indian flying squirrel -02362721 05 n 02 Castoridae 0 family_Castoridae 0 004 @ 01862557 n 0000 #m 02354950 n 0000 %m 02362862 n 0000 %m 02363511 n 0000 | beavers -02362862 05 n 02 Castor 0 genus_Castor 0 003 @ 01864707 n 0000 #m 02362721 n 0000 %m 02363005 n 0000 | type genus of the Castoridae: beavers -02363005 05 n 01 beaver 0 005 @ 02329401 n 0000 #m 02362862 n 0000 + 02414913 v 0101 ~ 02363245 n 0000 ~ 02363351 n 0000 | large semiaquatic rodent with webbed hind feet and a broad flat tail; construct complex dams and underwater lodges -02363245 05 n 02 Old_World_beaver 0 Castor_fiber 0 001 @ 02363005 n 0000 | a European variety of beaver -02363351 05 n 02 New_World_beaver 0 Castor_canadensis 0 001 @ 02363005 n 0000 | a variety of beaver found in almost all areas of North America except Florida -02363511 05 n 02 Castoroides 0 genus_Castoroides 0 002 @ 01864707 n 0000 #m 02362721 n 0000 | extinct beavers of the Pleistocene; of eastern and southern United States -02363681 05 n 02 Aplodontiidae 0 family_Aplodontiidae 0 003 @ 01862557 n 0000 #m 02354950 n 0000 %m 02363818 n 0000 | mountain beavers -02363818 05 n 02 Aplodontia 0 genus_Aplodontia 0 003 @ 01864707 n 0000 #m 02363681 n 0000 %m 02363996 n 0000 | type genus of the Aplodontiidae: comprising the mountain beavers -02363996 05 n 03 mountain_beaver 0 sewellel 0 Aplodontia_rufa 0 002 @ 02329401 n 0000 #m 02363818 n 0000 | bulky nocturnal burrowing rodent of uplands of the Pacific coast of North America; the most primitive living rodent -02364221 05 n 02 Caviidae 0 family_Caviidae 0 004 @ 01862557 n 0000 #m 02346315 n 0000 %m 02364377 n 0000 %m 02364989 n 0000 | a family of Hystricomorpha -02364377 05 n 02 Cavia 0 genus_Cavia 0 003 @ 01864707 n 0000 #m 02364221 n 0000 %m 02364520 n 0000 | type genus of the Caviidae: guinea pigs -02364520 05 n 01 cavy 0 004 @ 02329401 n 0000 #m 02364377 n 0000 ~ 02364673 n 0000 ~ 02364840 n 0000 | short-tailed rough-haired South American rodent -02364673 05 n 02 guinea_pig 0 Cavia_cobaya 0 001 @ 02364520 n 0000 | stout-bodied nearly tailless domesticated cavy; often kept as a pet and widely used in research -02364840 05 n 03 aperea 0 wild_cavy 0 Cavia_porcellus 0 001 @ 02364520 n 0000 | South American cavy; possibly ancestral to the domestic guinea pig -02364989 05 n 02 Dolichotis 0 genus_Dolichotis 0 003 @ 01864707 n 0000 #m 02364221 n 0000 %m 02365108 n 0000 | maras -02365108 05 n 02 mara 0 Dolichotis_patagonum 0 002 @ 02329401 n 0000 #m 02364989 n 0000 | hare-like rodent of the pampas of Argentina -02365244 05 n 02 Hydrochoeridae 0 family_Hydrochoeridae 0 002 @ 01862557 n 0000 %m 02365356 n 0000 | capybara -02365356 05 n 02 Hydrochoerus 0 genus_Hydrochoerus 0 002 @ 01864707 n 0000 #m 02365244 n 0000 | a genus of Hydrochoeridae -02365480 05 n 03 capybara 0 capibara 0 Hydrochoerus_hydrochaeris 0 001 @ 02329401 n 0000 | pig-sized tailless South American amphibious rodent with partly webbed feet; largest living rodent -02365672 05 n 02 Dasyproctidae 0 family_Dasyproctidae 0 005 @ 01862557 n 0000 #m 02346315 n 0000 %m 02365848 n 0000 %m 02366203 n 0000 %m 02366453 n 0000 | agoutis and pacas -02365848 05 n 02 Dasyprocta 0 genus_Dasyprocta 0 003 @ 01864707 n 0000 #m 02365672 n 0000 %m 02366002 n 0000 | type genus of the Dasyproctidae: agoutis -02366002 05 n 02 agouti 0 Dasyprocta_aguti 0 002 @ 02329401 n 0000 #m 02365848 n 0000 | agile long-legged rabbit-sized rodent of Central America and South America and the West Indies; valued as food -02366203 05 n 02 Cuniculus 0 genus_Cuniculus 0 002 @ 01864707 n 0000 #m 02365672 n 0000 | pacas -02366301 05 n 02 paca 0 Cuniculus_paca 0 001 @ 02329401 n 0000 | large burrowing rodent of South America and Central America; highly esteemed as food -02366453 05 n 02 Stictomys 0 genus_Stictomys 0 003 @ 01864707 n 0000 #m 02365672 n 0000 %m 02366579 n 0000 | mountain pacas -02366579 05 n 01 mountain_paca 0 002 @ 02329401 n 0000 #m 02366453 n 0000 | rodent of mountains of western South America -02366702 05 n 02 Capromyidae 0 family_Capromyidae 0 003 @ 01862557 n 0000 #m 02346315 n 0000 %m 02366825 n 0000 | coypus -02366825 05 n 02 Myocastor 0 genus_Myocastor 0 003 @ 01864707 n 0000 #m 02366702 n 0000 %m 02366959 n 0000 | a genus of Capromyidae -02366959 05 n 03 coypu 0 nutria 0 Myocastor_coypus 0 002 @ 02329401 n 0000 #m 02366825 n 0000 | aquatic South American rodent resembling a small beaver; bred for its fur -02367131 05 n 02 Chinchillidae 0 family_Chinchillidae 0 006 @ 01862557 n 0000 #m 02346315 n 0000 %m 02367360 n 0000 %m 02367678 n 0000 %m 02367993 n 0000 %m 02368280 n 0000 | small bushy-tailed South American burrowing rodents -02367360 05 n 01 genus_Chinchilla 0 003 @ 01864707 n 0000 #m 02367131 n 0000 %m 02367492 n 0000 | type genus of the Chinchillidae -02367492 05 n 02 chinchilla 0 Chinchilla_laniger 0 002 @ 02329401 n 0000 #m 02367360 n 0000 | small rodent with soft pearly grey fur; native to the Andes but bred in captivity for fur -02367678 05 n 02 Lagidium 0 genus_Lagidium 0 003 @ 01864707 n 0000 #m 02367131 n 0000 %m 02367812 n 0000 | a genus of Chinchillidae -02367812 05 n 02 mountain_chinchilla 0 mountain_viscacha 0 002 @ 02329401 n 0000 #m 02367678 n 0000 | a rodent native to the mountains of Chile and Peru and now bred in captivity -02367993 05 n 02 Lagostomus 0 genus_Lagostomus 0 003 @ 01864707 n 0000 #m 02367131 n 0000 %m 02368116 n 0000 | viscachas -02368116 05 n 03 viscacha 0 chinchillon 0 Lagostomus_maximus 0 002 @ 02329401 n 0000 #m 02367993 n 0000 | gregarious burrowing rodent larger than the chinchillas -02368280 05 n 02 Abrocoma 0 genus_Abrocoma 0 003 @ 01864707 n 0000 #m 02367131 n 0000 %m 02368399 n 0000 | abrocomes -02368399 05 n 03 abrocome 0 chinchilla_rat 0 rat_chinchilla 0 002 @ 02329401 n 0000 #m 02368280 n 0000 | ratlike rodent with soft fur and large ears of the Andes -02368563 05 n 02 Spalacidae 0 family_Spalacidae 0 003 @ 01862557 n 0000 #m 02330582 n 0000 %m 02368687 n 0000 | mole rats -02368687 05 n 02 Spalax 0 genus_Spalax 0 003 @ 01864707 n 0000 #m 02368563 n 0000 %m 02368821 n 0000 | type genus of the Spalacidae -02368821 05 n 01 mole_rat 3 002 @ 02329401 n 0000 #m 02368687 n 0000 | furry short-limbed tailless rodent resembling a true mole in habits and appearance; of eastern Europe and Middle East -02369012 05 n 02 Bathyergidae 0 family_Bathyergidae 0 004 @ 01862557 n 0000 #m 02346315 n 0000 %m 02369170 n 0000 %m 02369424 n 0000 | mole rats; sand rats -02369170 05 n 02 Bathyergus 0 genus_Bathyergus 0 003 @ 01864707 n 0000 #m 02369012 n 0000 %m 02369293 n 0000 | mole rats -02369293 05 n 01 mole_rat 1 002 @ 02329401 n 0000 #m 02369170 n 0000 | African rodent resembling a mole in habits and appearance -02369424 05 n 02 Heterocephalus 0 genus_Heterocephalus 0 003 @ 01864707 n 0000 #m 02369012 n 0000 %m 02369555 n 0000 | sand rats -02369555 05 n 01 sand_rat 2 002 @ 02329401 n 0000 #m 02369424 n 0000 | small nearly naked African mole rat of desert areas -02369680 05 n 01 naked_mole_rat 0 003 @ 02153809 n 0000 #m 02329093 n 0000 ~ 02369935 n 0000 | fetal-looking colonial rodent of East Africa; neither mole nor rat; they feed on tubers and have a social structure similar to that of honeybees and termites -02369935 05 n 02 queen 2 queen_mole_rat 0 001 @ 02369680 n 0000 | an especially large mole rat and the only member of a colony of naked mole rats to bear offspring which are sired by only a few males -02370137 05 n 01 Damaraland_mole_rat 0 001 @ 02153809 n 0000 | colonial mole rat of western Africa; similar to naked mole rat -02370265 05 n 01 dug 0 002 @ 05554189 n 0000 #p 01862399 n 0000 | an udder or breast or teat -02370360 05 n 02 udder 0 bag 0 004 @ 05554189 n 0000 #p 02403454 n 0000 #p 02411999 n 0000 #p 02416964 n 0000 | mammary gland of bovids (cows and sheep and goats) -02370525 05 n 01 Ungulata 0 003 @ 01886756 n 0000 #m 01861465 n 0000 %m 02371471 n 0000 | in former classifications a major division of Mammalia comprising all hoofed mammals; now divided into the orders Perissodactyla (odd-toed ungulates) and Artiodactyla (even-toed ungulates) -02370806 05 n 02 ungulate 0 hoofed_mammal 0 008 @ 01886756 n 0000 + 02489485 a 0101 %p 02153959 n 0000 ~ 02372046 n 0000 ~ 02373336 n 0000 ~ 02394477 n 0000 %p 02462828 n 0000 %p 02463205 n 0000 | any of a number of mammals with hooves that are superficially similar but not necessarily closely related taxonomically -02371125 05 n 01 Unguiculata 0 002 @ 01886756 n 0000 #m 01861465 n 0000 | in former classifications a major division of Mammalia comprising mammals with nails or claws; distinguished from hoofed mammals and cetaceans -02371344 05 n 02 unguiculate 0 unguiculate_mammal 0 002 @ 01886756 n 0000 + 02489745 a 0101 | a mammal having nails or claws -02371471 05 n 02 Dinocerata 0 order_Dinocerata 0 003 @ 01342529 n 0000 #m 02370525 n 0000 %m 02371647 n 0000 | small order of primitive ungulates of the Paleocene and Eocene -02371647 05 n 02 Uintatheriidae 0 family_Uintatheriidae 0 003 @ 01862557 n 0000 #m 02371471 n 0000 %m 02371801 n 0000 | an extinct family of Dinocerata -02371801 05 n 02 Uintatherium 0 genus_Uintatherium 0 003 @ 01864707 n 0000 #m 02371647 n 0000 %m 02372140 n 0000 | type genus of the Uintatheriidae; extinct large herbivorous ungulates somewhat resembling elephants; from the Eocene in Wyoming -02372046 05 n 01 dinocerate 0 002 @ 02370806 n 0000 ~ 02372140 n 0000 | an extinct ungulate -02372140 05 n 02 dinoceras 0 uintathere 0 002 @ 02372046 n 0000 #m 02371801 n 0000 | a variety of dinocerate -02372251 05 n 02 Hyracoidea 0 order_Hyracoidea 0 003 @ 01342529 n 0000 #m 01886220 n 0000 %m 02372397 n 0000 | hyraxes and some extinct animals -02372397 05 n 02 Procaviidae 0 family_Procaviidae 0 004 @ 01862557 n 0000 #m 02372251 n 0000 %m 02372584 n 0000 %m 02372813 n 0000 | includes all recent members of the order Hyracoidea -02372584 05 n 05 hyrax 0 coney 3 cony 3 dassie 0 das 0 003 @ 01886756 n 0000 #m 02372397 n 0000 ~ 02372952 n 0000 | any of several small ungulate mammals of Africa and Asia with rodent-like incisors and feet with hooflike toes -02372813 05 n 02 Procavia 0 genus_Procavia 0 003 @ 01864707 n 0000 #m 02372397 n 0000 %m 02372952 n 0000 | type genus of the Procaviidae -02372952 05 n 03 rock_hyrax 0 rock_rabbit 2 Procavia_capensis 0 002 @ 02372584 n 0000 #m 02372813 n 0000 | hyrax that lives in rocky areas -02373093 05 n 02 Perissodactyla 0 order_Perissodactyla 0 006 @ 01342529 n 0000 #m 01886220 n 0000 %m 02373336 n 0000 %m 02373601 n 0000 %m 02391782 n 0000 %m 02393300 n 0000 | nonruminant ungulates: horses; tapirs; rhinoceros; extinct forms -02373336 05 n 03 odd-toed_ungulate 0 perissodactyl 0 perissodactyl_mammal 0 006 @ 02370806 n 0000 #m 02373093 n 0000 ! 02394477 n 0101 ~ 02374149 n 0000 ~ 02391994 n 0000 ~ 02393580 n 0000 | placental mammals having hooves with an odd number of toes on each foot -02373601 05 n 02 Equidae 0 family_Equidae 0 008 @ 01862557 n 0000 #m 02373093 n 0000 %m 02373843 n 0000 %m 02374149 n 0000 %m 02375592 n 0000 %m 02376016 n 0000 %m 02376303 n 0000 %m 02377480 n 0000 | horses; asses; zebras; extinct animals -02373843 05 n 02 Equus 0 genus_Equus 0 010 @ 01864707 n 0000 #m 02373601 n 0000 %m 02374451 n 0000 %m 02389346 n 0000 %m 02389559 n 0000 %m 02390101 n 0000 %m 02390258 n 0000 %m 02390454 n 0000 %m 02391049 n 0000 %m 02391617 n 0000 | type genus of the Equidae: only surviving genus of the family Equidae -02374149 05 n 02 equine 0 equid 0 009 @ 02373336 n 0000 #m 02373601 n 0000 + 02721439 a 0101 ~ 02374451 n 0000 ~ 02389346 n 0000 ~ 02390101 n 0000 ~ 02390258 n 0000 ~ 02391049 n 0000 ~ 02391617 n 0000 | hoofed mammals having slender legs and a flat coat with a narrow mane along the back of the neck -02374451 05 n 02 horse 0 Equus_caballus 0 040 @ 02374149 n 0000 #m 02373843 n 0000 + 01184058 v 0101 %p 01899894 n 0000 %p 01902274 n 0000 %p 02159117 n 0000 ~ 02375302 n 0000 ~ 02375438 n 0000 ~ 02375757 n 0000 ~ 02375862 n 0000 ~ 02376135 n 0000 ~ 02376423 n 0000 %m 02376542 n 0000 ~ 02376918 n 0000 ~ 02377480 n 0000 ~ 02377703 n 0000 ~ 02380335 n 0000 ~ 02380464 n 0000 ~ 02381460 n 0000 ~ 02382132 n 0000 ~ 02382204 n 0000 ~ 02382437 n 0000 ~ 02382948 n 0000 ~ 02384741 n 0000 ~ 02385898 n 0000 ~ 02386014 n 0000 ~ 02386310 n 0000 ~ 02387722 n 0000 ~ 02387983 n 0000 ~ 02388588 n 0000 ~ 02388735 n 0000 ~ 02388832 n 0000 ~ 02388917 n 0000 ~ 02389026 n 0000 ~ 02389128 n 0000 ~ 02389261 n 0000 %p 02462602 n 0000 %p 02463913 n 0000 %p 05539012 n 0000 %p 07666406 n 0000 | solid-hoofed herbivorous quadruped domesticated since prehistoric times -02375302 05 n 01 roan 0 002 @ 02374451 n 0000 + 00400472 a 0101 | a horse having a brownish coat thickly sprinkled with white or gray -02375438 05 n 02 stablemate 0 stable_companion 0 001 @ 02374451 n 0000 | a horse stabled with another or one of several horses owned by the same person -02375592 05 n 02 Hyracotherium 0 genus_Hyracotherium 0 003 @ 01864707 n 0000 #m 02373601 n 0000 %m 02375862 n 0000 | extinct horse genus; formerly called eohippus -02375757 05 n 01 gee-gee 0 001 @ 02374451 n 0000 | a word for horse used by children or in adult slang -02375862 05 n 02 eohippus 0 dawn_horse 0 002 @ 02374451 n 0000 #m 02375592 n 0000 | earliest horse; extinct primitive dog-sized four-toed Eocene animal -02376016 05 n 01 genus_Mesohippus 0 003 @ 01864707 n 0000 #m 02373601 n 0000 %m 02376135 n 0000 | a genus of Equidae -02376135 05 n 01 mesohippus 0 002 @ 02374451 n 0000 #m 02376016 n 0000 | North American three-toed Oligocene animal; probably not directly ancestral to modern horses -02376303 05 n 01 genus_Protohippus 0 003 @ 01864707 n 0000 #m 02373601 n 0000 %m 02376423 n 0000 | a genus of Equidae -02376423 05 n 01 protohippus 0 002 @ 02374451 n 0000 #m 02376303 n 0000 | Pliocene horse approaching donkeys in size -02376542 05 n 01 foal 0 005 @ 01321854 n 0000 #m 02374451 n 0000 + 00057895 v 0101 ~ 02376679 n 0000 ~ 02376791 n 0000 | a young horse -02376679 05 n 01 filly 0 002 @ 02376542 n 0000 @ 01320872 n 0000 | a young female horse under the age of four -02376791 05 n 01 colt 2 003 @ 02376542 n 0000 @ 01321230 n 0000 ~ 02377063 n 0000 | a young male horse under the age of four -02376918 05 n 01 male_horse 0 004 @ 02374451 n 0000 @ 01321230 n 0000 ~ 02377181 n 0000 ~ 02377388 n 0000 | the male of species Equus caballus -02377063 05 n 04 ridgeling 0 ridgling 0 ridgel 0 ridgil 0 001 @ 02376791 n 0000 | a colt with undescended testicles -02377181 05 n 02 stallion 0 entire 0 002 @ 02376918 n 0000 ~ 02377291 n 0000 | uncastrated adult male horse -02377291 05 n 02 stud 0 studhorse 0 001 @ 02377181 n 0000 | adult male horse kept for breeding -02377388 05 n 01 gelding 0 002 @ 02376918 n 0000 + 00061219 v 0101 | castrated male horse -02377480 05 n 02 mare 0 female_horse 0 003 @ 02374451 n 0000 #m 02373601 n 0000 ~ 02377603 n 0000 | female equine animal -02377603 05 n 02 broodmare 0 stud_mare 0 001 @ 02377480 n 0000 | a female horse used for breeding -02377703 05 n 03 saddle_horse 0 riding_horse 0 mount 0 019 @ 02374451 n 0000 + 01923414 v 0302 ~ 02378149 n 0000 ~ 02378299 n 0000 ~ 02378415 n 0000 ~ 02378870 n 0000 ~ 02378969 n 0000 ~ 02379081 n 0000 ~ 02379183 n 0000 ~ 02379329 n 0000 ~ 02379430 n 0000 ~ 02379630 n 0000 ~ 02379743 n 0000 ~ 02379908 n 0000 ~ 02380052 n 0000 ~ 02381004 n 0000 ~ 02381119 n 0000 ~ 02381261 n 0000 ~ 02381364 n 0000 | a lightweight horse kept for riding only -02378149 05 n 01 remount 0 002 @ 02377703 n 0000 + 01184195 v 0101 | a fresh horse especially (formerly) to replace one killed or injured in battle -02378299 05 n 01 palfrey 0 002 @ 02377703 n 0000 ;u 07073447 n 0000 | especially a light saddle horse for a woman -02378415 05 n 01 warhorse 0 004 @ 02377703 n 0000 ~ 02378541 n 0000 ~ 02378625 n 0000 ~ 02378755 n 0000 | horse used in war -02378541 05 n 01 cavalry_horse 0 001 @ 02378415 n 0000 | horse trained for battle -02378625 05 n 02 charger 0 courser 1 002 @ 02378415 n 0000 + 01121719 v 0101 | formerly a strong swift horse ridden into battle -02378755 05 n 01 steed 0 002 @ 02378415 n 0000 ;c 06364641 n 0000 | (literary) a spirited horse for state or war -02378870 05 n 01 prancer 0 002 @ 02377703 n 0000 + 01916634 v 0104 | a mettlesome or fiery horse -02378969 05 n 01 hack 3 001 @ 02377703 n 0000 | a saddle horse used for transportation rather than sport etc. -02379081 05 n 01 cow_pony 0 001 @ 02377703 n 0000 | a light saddle horse trained for herding cattle -02379183 05 n 01 quarter_horse 0 001 @ 02377703 n 0000 | a small powerful horse originally bred for sprinting in quarter-mile races in Virginia -02379329 05 n 01 Morgan 0 001 @ 02377703 n 0000 | an American breed of small compact saddle horses -02379430 05 n 04 Tennessee_walker 0 Tennessee_walking_horse 0 Walking_horse 0 Plantation_walking_horse 0 001 @ 02377703 n 0000 | a horse marked by stamina and trained to move at a fast running walk -02379630 05 n 01 American_saddle_horse 0 001 @ 02377703 n 0000 | a high-stepping horse originating in Kentucky -02379743 05 n 01 Appaloosa 0 001 @ 02377703 n 0000 | a hardy breed of saddle horse developed in western North America and characteristically having a spotted rump -02379908 05 n 02 Arabian 0 Arab 0 002 @ 02377703 n 0000 + 03044462 a 0101 | a spirited graceful and intelligent riding horse native to Arabia -02380052 05 n 03 Lippizan 0 Lipizzan 0 Lippizaner 0 001 @ 02377703 n 0000 | a compact and sturdy saddle horse that is bred and trained in Vienna; smart and docile and excellent for dressage; "a Lippizan is black or brown when born but turns white by the time it is five years old" -02380335 05 n 01 pony 2 003 @ 02374451 n 0000 ~ 02380583 n 0000 ~ 02382039 n 0000 | a range horse of the western United States -02380464 05 n 01 polo_pony 0 001 @ 02374451 n 0000 | a small agile horse specially bred and trained for playing polo -02380583 05 n 01 mustang 0 002 @ 02380335 n 0000 ~ 02380745 n 0000 | small hardy range horse of the western plains descended from horses brought by the Spanish -02380745 05 n 03 bronco 0 bronc 0 broncho 0 002 @ 02380583 n 0000 ~ 02380875 n 0000 | an unbroken or imperfectly broken mustang -02380875 05 n 01 bucking_bronco 0 001 @ 02380745 n 0000 | a wild horse that is vicious and difficult or impossible to break in -02381004 05 n 01 buckskin 0 001 @ 02377703 n 0000 | horse of a light yellowish dun color with dark mane and tail -02381119 05 n 02 crowbait 0 crow-bait 0 001 @ 02377703 n 0000 | an emaciated horse likely soon to become carrion and so attractive to crows -02381261 05 n 01 dun 0 002 @ 02377703 n 0000 + 00312165 v 0101 | horse of a dull brownish grey color -02381364 05 n 02 grey 0 gray 0 001 @ 02377703 n 0000 | horse of a light gray or whitish color -02381460 05 n 01 wild_horse 0 004 @ 02374451 n 0000 ~ 02381609 n 0000 ~ 02381744 n 0000 ~ 02381831 n 0000 | undomesticated or feral domestic horse -02381609 05 n 02 tarpan 0 Equus_caballus_gomelini 0 001 @ 02381460 n 0000 | European wild horse extinct since the early 20th century -02381744 05 n 02 warrigal 2 warragal 2 001 @ 02381460 n 0000 | Australian wild horse -02381831 05 n 04 Przewalski's_horse 0 Przevalski's_horse 0 Equus_caballus_przewalskii 0 Equus_caballus_przevalskii 0 001 @ 02381460 n 0000 | wild horse of central Asia that resembles an ass; now endangered -02382039 05 n 02 cayuse 0 Indian_pony 0 001 @ 02380335 n 0000 | a small native range horse -02382132 05 n 01 hack 1 001 @ 02374451 n 0000 | a horse kept for hire -02382204 05 n 04 hack 2 jade 0 nag 0 plug 0 003 @ 02374451 n 0000 + 00075021 v 0206 + 00076114 v 0205 | an old or over-worked horse -02382338 05 n 02 plow_horse 0 plough_horse 0 001 @ 02386310 n 0000 | a horse used to pull a plow -02382437 05 n 01 pony 1 004 @ 02374451 n 0000 ~ 02382635 n 0000 ~ 02382750 n 0000 ~ 02382850 n 0000 | any of various breeds of small gentle horses usually less than five feet high at the shoulder -02382635 05 n 01 Shetland_pony 0 001 @ 02382437 n 0000 | breed of very small pony with long shaggy mane and tail -02382750 05 n 01 Welsh_pony 0 001 @ 02382437 n 0000 | breed of small ponies originally from Wales -02382850 05 n 01 Exmoor 2 001 @ 02382437 n 0000 | stocky breed of pony with a fawn-colored nose -02382948 05 n 03 racehorse 0 race_horse 0 bangtail 0 011 @ 02374451 n 0000 ~ 02383231 n 0000 ~ 02385098 n 0000 ~ 02385214 n 0000 ~ 02385348 n 0000 ~ 02385461 n 0000 ~ 02385580 n 0000 ~ 02385676 n 0000 ~ 02385776 n 0000 ~ 02388143 n 0000 ~ 02388276 n 0000 | a horse bred for racing -02383231 05 n 01 thoroughbred 1 012 @ 02382948 n 0000 ~i 02383604 n 0000 ~i 02383708 n 0000 ~i 02383813 n 0000 ~i 02383912 n 0000 ~i 02384017 n 0000 ~i 02384120 n 0000 ~i 02384225 n 0000 ~i 02384326 n 0000 ~i 02384428 n 0000 ~i 02384533 n 0000 ~i 02384639 n 0000 | a racehorse belonging to a breed that originated from a cross between Arabian stallions and English mares -02383604 05 n 01 Sir_Barton 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1919 -02383708 05 n 01 Gallant_Fox 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1930 -02383813 05 n 01 Omaha 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1935 -02383912 05 n 01 War_Admiral 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1937 -02384017 05 n 01 Whirlaway 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1941 -02384120 05 n 01 Count_Fleet 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1943 -02384225 05 n 01 Assault 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1946 -02384326 05 n 01 Citation 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1948 -02384428 05 n 01 Secretariat 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1973 -02384533 05 n 01 Seattle_Slew 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1977 -02384639 05 n 01 Affirmed 0 001 @i 02383231 n 0000 | thoroughbred that won the triple crown in 1978 -02384741 05 n 01 steeplechaser 0 002 @ 02374451 n 0000 @ 02384858 n 0000 | a horse trained to run in steeplechases -02384858 05 n 01 racer 0 005 @ 00015388 n 0000 + 01086103 v 0101 ~ 02090827 n 0000 ~ 02384741 n 0000 ~ 02385002 n 0000 | an animal that races -02385002 05 n 01 finisher 0 001 @ 02384858 n 0000 | an animal that wins in a contest of speed -02385098 05 n 01 pony 3 001 @ 02382948 n 0000 | an informal term for a racehorse; "he liked to bet on the ponies" -02385214 05 n 01 yearling 2 001 @ 02382948 n 0000 | a racehorse considered one year old until the second Jan. 1 following its birth -02385348 05 n 02 two-year-old_horse 0 two_year_old 0 001 @ 02382948 n 0000 | a racehorse that is two years old -02385461 05 n 02 three-year-old_horse 0 three_year_old 0 001 @ 02382948 n 0000 | a racehorse that is three years old -02385580 05 n 01 dark_horse 0 001 @ 02382948 n 0000 | a racehorse about which little is known -02385676 05 n 01 mudder 0 001 @ 02382948 n 0000 | a racehorse that runs well on a muddy racetrack -02385776 05 n 01 nonstarter 0 001 @ 02382948 n 0000 | a horse that fails to run in a race for which it has been entered -02385898 05 n 01 stalking-horse 0 001 @ 02374451 n 0000 | a horse behind which a hunter hides while stalking game -02386014 05 n 01 harness_horse 0 003 @ 02374451 n 0000 ~ 02386141 n 0000 ~ 02386224 n 0000 | horse used for pulling vehicles -02386141 05 n 01 cob 2 001 @ 02386014 n 0000 | stocky short-legged harness horse -02386224 05 n 01 hackney 0 001 @ 02386014 n 0000 | a compact breed of harness horse -02386310 05 n 01 workhorse 0 005 @ 02374451 n 0000 ~ 02382338 n 0000 ~ 02386496 n 0000 ~ 02386746 n 0000 ~ 02387254 n 0000 | a horse used for plowing and hauling and other heavy labor -02386496 05 n 03 draft_horse 0 draught_horse 0 dray_horse 0 008 @ 02386310 n 0000 ~ 02386853 n 0000 ~ 02386968 n 0000 ~ 02387093 n 0000 ~ 02387346 n 0000 ~ 02387452 n 0000 ~ 02387581 n 0000 ~ 02387887 n 0000 | horse adapted for drawing heavy loads -02386746 05 n 01 packhorse 0 002 @ 02386310 n 0000 @ 01317391 n 0000 | a workhorse used as a pack animal -02386853 05 n 03 carthorse 0 cart_horse 0 drayhorse 0 001 @ 02386496 n 0000 | draft horse kept for pulling carts -02386968 05 n 01 Clydesdale 0 001 @ 02386496 n 0000 | heavy feathered-legged breed of draft horse originally from Scotland -02387093 05 n 01 Percheron 0 001 @ 02386496 n 0000 | one of a breed of grey or black draft horses originally used in France to draw heavy coaches or artillery -02387254 05 n 02 farm_horse 0 dobbin 0 001 @ 02386310 n 0000 | a quiet plodding workhorse -02387346 05 n 02 shire 0 shire_horse 0 001 @ 02386496 n 0000 | British breed of large heavy draft horse -02387452 05 n 02 pole_horse 0 poler 0 001 @ 02386496 n 0000 | a draft horse harnessed alongside the shaft or pole of a vehicle -02387581 05 n 02 wheel_horse 0 wheeler 0 001 @ 02386496 n 0000 | a draft horse harnessed behind others and nearest the wheels of a vehicle -02387722 05 n 03 post_horse 0 post-horse 0 poster 0 001 @ 02374451 n 0000 | a horse kept at an inn or post house for use by mail carriers or for rent to travelers -02387887 05 n 01 coach_horse 0 001 @ 02386496 n 0000 | strong draft horse for drawing coaches -02387983 05 n 01 pacer 1 002 @ 02374451 n 0000 + 02091165 v 0101 | a horse trained to a special gait in which both feet on one side leave the ground together -02388143 05 n 03 pacer 2 pacemaker 0 pacesetter 0 002 @ 02382948 n 0000 + 00702601 v 0101 | a horse used to set the pace in racing -02388276 05 n 02 trotting_horse 0 trotter 0 003 @ 02382948 n 0000 + 01901447 v 0201 ~ 02388453 n 0000 | a horse trained to trot; especially a horse trained for harness racing -02388453 05 n 01 pole_horse 1 001 @ 02388276 n 0000 | the horse having a starting position next to the inside rail in a harness race -02388588 05 n 02 stepper 0 high_stepper 0 001 @ 02374451 n 0000 | a horse trained to lift its feet high off the ground while walking or trotting -02388735 05 n 01 chestnut 0 001 @ 02374451 n 0000 | a dark golden-brown or reddish-brown horse -02388832 05 n 01 liver_chestnut 0 001 @ 02374451 n 0000 | a solid dark brown horse -02388917 05 n 01 bay 0 002 @ 02374451 n 0000 + 00395977 a 0101 | a horse of a moderate reddish-brown color -02389026 05 n 01 sorrel 0 001 @ 02374451 n 0000 | a horse of a brownish orange to light brown color -02389128 05 n 01 palomino 0 001 @ 02374451 n 0000 | a horse of light tan or golden color with cream-colored or white mane and tail -02389261 05 n 01 pinto 0 001 @ 02374451 n 0000 | a spotted or calico horse or pony -02389346 05 n 01 ass 0 006 @ 02374149 n 0000 #m 02373843 n 0000 ~ 02389559 n 0000 ~ 02389943 n 0000 ~ 02390015 n 0000 ~ 02390454 n 0000 | hardy and sure-footed animal smaller and with longer ears than the horse -02389559 05 n 03 domestic_ass 0 donkey 0 Equus_asinus 1 004 @ 02389346 n 0000 #m 02373843 n 0000 ~ 02389779 n 0000 ~ 02389865 n 0000 | domestic beast of burden descended from the African wild ass; patient but stubborn -02389779 05 n 01 burro 0 001 @ 02389559 n 0000 | small donkey used as a pack animal -02389865 05 n 01 moke 0 001 @ 02389559 n 0000 | British informal for donkey -02389943 05 n 02 jack 1 jackass 0 001 @ 02389346 n 0000 | male donkey -02390015 05 n 03 jennet 0 jenny 0 jenny_ass 0 001 @ 02389346 n 0000 | female donkey -02390101 05 n 01 mule 0 003 @ 02374149 n 0000 #m 02373843 n 0000 + 10338094 n 0101 | hybrid offspring of a male donkey and a female horse; usually sterile -02390258 05 n 01 hinny 0 002 @ 02374149 n 0000 #m 02373843 n 0000 | hybrid offspring of a male horse and a female donkey or ass; usually sterile; "a hinny has a gentler disposition than a mule" -02390454 05 n 01 wild_ass 0 005 @ 02389346 n 0000 #m 02373843 n 0000 ~ 02390640 n 0000 ~ 02390738 n 0000 ~ 02390834 n 0000 | any of several equine mammals of Asia and northeast Africa -02390640 05 n 02 African_wild_ass 0 Equus_asinus 2 001 @ 02390454 n 0000 | a wild ass of Africa -02390738 05 n 02 kiang 0 Equus_kiang 0 001 @ 02390454 n 0000 | wild ass of Tibet and Mongolia -02390834 05 n 02 onager 0 Equus_hemionus 0 002 @ 02390454 n 0000 ~ 02390938 n 0000 | Asiatic wild ass -02390938 05 n 03 chigetai 0 dziggetai 0 Equus_hemionus_hemionus 0 001 @ 02390834 n 0000 | Mongolian wild ass -02391049 05 n 01 zebra 0 005 @ 02374149 n 0000 #m 02373843 n 0000 ~ 02391234 n 0000 ~ 02391373 n 0000 ~ 02391508 n 0000 | any of several fleet black-and-white striped African equines -02391234 05 n 03 common_zebra 0 Burchell's_zebra 0 Equus_Burchelli 0 001 @ 02391049 n 0000 | of the plains of central and eastern Africa -02391373 05 n 02 mountain_zebra 0 Equus_zebra_zebra 0 001 @ 02391049 n 0000 | narrow-striped nearly extinct zebra of southern Africa -02391508 05 n 02 grevy's_zebra 0 Equus_grevyi 0 001 @ 02391049 n 0000 | zebra with less continuous stripes -02391617 05 n 02 quagga 0 Equus_quagga 0 002 @ 02374149 n 0000 #m 02373843 n 0000 | mammal of South Africa that resembled a zebra; extinct since late 19th century -02391782 05 n 03 Rhinocerotidae 0 family_Rhinocerotidae 0 rhinoceros_family 0 006 @ 01862557 n 0000 #m 02373093 n 0000 %m 02391994 n 0000 %m 02392282 n 0000 %m 02392710 n 0000 %m 02393024 n 0000 | rhinoceroses -02391994 05 n 02 rhinoceros 0 rhino 0 006 @ 02373336 n 0000 #m 02391782 n 0000 ~ 02392434 n 0000 ~ 02392555 n 0000 ~ 02392824 n 0000 ~ 02393161 n 0000 | massive powerful herbivorous odd-toed ungulate of southeast Asia and Africa having very thick skin and one or two horns on the snout -02392282 05 n 01 genus_Rhinoceros 0 004 @ 01864707 n 0000 #m 02391782 n 0000 %m 02392434 n 0000 %m 02392555 n 0000 | type genus of the Rhinocerotidae -02392434 05 n 02 Indian_rhinoceros 0 Rhinoceros_unicornis 0 002 @ 02391994 n 0000 #m 02392282 n 0000 | having one horn -02392555 05 n 02 woolly_rhinoceros 0 Rhinoceros_antiquitatis 0 002 @ 02391994 n 0000 #m 02392282 n 0000 | extinct thick-haired species of Arctic regions -02392710 05 n 02 Ceratotherium 0 genus_Ceratotherium 0 002 @ 01864707 n 0000 #m 02391782 n 0000 | African genus -02392824 05 n 03 white_rhinoceros 0 Ceratotherium_simum 0 Diceros_simus 0 001 @ 02391994 n 0000 | large light-grey African rhinoceros having two horns; endangered; sometimes placed in genus Diceros -02393024 05 n 02 Diceros 0 genus_Diceros 0 003 @ 01864707 n 0000 #m 02391782 n 0000 %m 02393161 n 0000 | most common species in Africa -02393161 05 n 02 black_rhinoceros 0 Diceros_bicornis 0 002 @ 02391994 n 0000 #m 02393024 n 0000 | African rhino; in danger of extinction -02393300 05 n 02 Tapiridae 0 family_Tapiridae 0 003 @ 01862557 n 0000 #m 02373093 n 0000 %m 02393445 n 0000 | tapirs and extinct related forms -02393445 05 n 02 Tapirus 0 genus_Tapirus 0 003 @ 01864707 n 0000 #m 02393300 n 0000 %m 02393580 n 0000 | type genus of the Tapiridae -02393580 05 n 01 tapir 0 004 @ 02373336 n 0000 #m 02393445 n 0000 ~ 02393807 n 0000 ~ 02393940 n 0000 | large inoffensive chiefly nocturnal ungulate of tropical America and southeast Asia having a heavy body and fleshy snout -02393807 05 n 02 New_World_tapir 0 Tapirus_terrestris 0 001 @ 02393580 n 0000 | a tapir found in South America and Central America -02393940 05 n 03 Malayan_tapir 0 Indian_tapir 0 Tapirus_indicus 0 001 @ 02393580 n 0000 | a tapir found in Malaya and Sumatra -02394068 05 n 02 Artiodactyla 0 order_Artiodactyla 0 009 @ 01342529 n 0000 #m 01886220 n 0000 + 02643673 a 0102 %m 02394477 n 0000 %m 02394822 n 0000 %m 02397251 n 0000 %m 02398252 n 0000 %m 02398732 n 0000 %m 02436813 n 0000 | an order of hooved mammals of the subclass Eutheria (including pigs and peccaries and hippopotami and members of the suborder Ruminantia) having an even number of functional toes -02394477 05 n 03 even-toed_ungulate 0 artiodactyl 0 artiodactyl_mammal 0 010 @ 02370806 n 0000 #m 02394068 n 0000 ! 02373336 n 0101 ~ 02395003 n 0000 ~ 02397529 n 0000 ~ 02398521 n 0000 ~ 02399000 n 0000 ~ 02437136 n 0000 ~ 02437616 n 0000 ~ 02438580 n 0000 | placental mammal having hooves with an even number of functional toes on each foot -02394822 05 n 02 Suidae 0 family_Suidae 0 006 @ 01862557 n 0000 #m 02394068 n 0000 %m 02395003 n 0000 %m 02395244 n 0000 %m 02396667 n 0000 %m 02396970 n 0000 | pigs; hogs; boars -02395003 05 n 01 swine 0 009 @ 02394477 n 0000 #m 02394822 n 0000 ~ 02395406 n 0000 ~ 02396014 n 0000 ~ 02396088 n 0000 ~ 02396157 n 0000 ~ 02396427 n 0000 ~ 02396796 n 0000 ~ 02397096 n 0000 | stout-bodied short-legged omnivorous animals -02395244 05 n 02 Sus 0 genus_Sus 0 005 @ 01864707 n 0000 #m 02394822 n 0000 %m 02395406 n 0000 %m 02395694 n 0000 %m 02396427 n 0000 | type genus of the Suidae -02395406 05 n 05 hog 0 pig 0 grunter 0 squealer 0 Sus_scrofa 2 011 @ 02395003 n 0000 #m 02395244 n 0000 + 01054694 v 0401 + 01043231 v 0301 + 02395694 n 0201 + 00058645 v 0202 + 02615739 v 0201 ~ 02395931 n 0000 %p 02439568 n 0000 %p 07668702 n 0000 %s 07672421 n 0000 | domestic swine -02395694 05 n 04 piglet 0 piggy 0 shoat 0 shote 0 005 @ 01321854 n 0000 #m 02395244 n 0000 + 00011327 a 0203 + 02395406 n 0102 ~ 02395855 n 0000 | a young pig -02395855 05 n 01 sucking_pig 0 001 @ 02395694 n 0000 | an unweaned piglet -02395931 05 n 01 porker 0 001 @ 02395406 n 0000 | a pig fattened to provide meat -02396014 05 n 01 boar 1 001 @ 02395003 n 0000 | an uncastrated male hog -02396088 05 n 01 sow 0 001 @ 02395003 n 0000 | an adult female hog -02396157 05 n 03 razorback 1 razorback_hog 0 razorbacked_hog 0 002 @ 02395003 n 0000 + 00200603 a 0101 | a mongrel hog with a thin body and long legs and a ridged back; a wild or semi-wild descendant of improved breeds; found chiefly in the southeastern United States -02396427 05 n 03 wild_boar 0 boar 2 Sus_scrofa 1 003 @ 02395003 n 0000 #m 02395244 n 0000 %p 01465713 n 0000 | Old World wild swine having a narrow body and prominent tusks from which most domestic swine come; introduced in United States -02396667 05 n 02 Babyrousa 0 genus_Babyrousa 0 003 @ 01864707 n 0000 #m 02394822 n 0000 %m 02396796 n 0000 | a genus of Suidae -02396796 05 n 04 babirusa 0 babiroussa 0 babirussa 0 Babyrousa_Babyrussa 0 002 @ 02395003 n 0000 #m 02396667 n 0000 | Indonesian wild pig with enormous curved canine teeth -02396970 05 n 02 Phacochoerus 0 genus_Phacochoerus 0 003 @ 01864707 n 0000 #m 02394822 n 0000 %m 02397096 n 0000 | warthogs -02397096 05 n 01 warthog 0 002 @ 02395003 n 0000 #m 02396970 n 0000 | African wild swine with warty protuberances on the face and large protruding tusks -02397251 05 n 02 Tayassuidae 0 family_Tayassuidae 0 003 @ 01862557 n 0000 #m 02394068 n 0000 %m 02397377 n 0000 | peccaries -02397377 05 n 03 Tayassu 0 genus_Tayassu 0 genus_Pecari 0 003 @ 01864707 n 0000 #m 02397251 n 0000 %m 02397529 n 0000 | type genus of the Tayassuidae -02397529 05 n 02 peccary 0 musk_hog 0 005 @ 02394477 n 0000 #m 02397377 n 0000 ~ 02397744 n 0000 ~ 02397987 n 0000 ~ 02398141 n 0000 | nocturnal gregarious pig-like wild animals of North America and South America -02397744 05 n 05 collared_peccary 0 javelina 0 Tayassu_angulatus 0 Tayassu_tajacu 0 Peccari_angulatus 0 001 @ 02397529 n 0000 | dark grey peccary with an indistinct white collar; of semi desert areas of Mexico and southwestern United States -02397987 05 n 02 white-lipped_peccary 0 Tayassu_pecari 0 001 @ 02397529 n 0000 | blackish peccary with whitish cheeks; larger than the collared peccary -02398141 05 n 01 Chiacoan_peccary 0 001 @ 02397529 n 0000 | a recently discovered large wild pig of Paraguay -02398252 05 n 02 Hippopotamidae 0 family_Hippopotamidae 0 003 @ 01862557 n 0000 #m 02394068 n 0000 %m 02398386 n 0000 | hippopotami -02398386 05 n 01 genus_Hippopotamus 0 003 @ 01864707 n 0000 #m 02398252 n 0000 %m 02398521 n 0000 | type genus of the Hippopotamidae -02398521 05 n 04 hippopotamus 0 hippo 0 river_horse 0 Hippopotamus_amphibius 0 002 @ 02394477 n 0000 #m 02398386 n 0000 | massive thick-skinned herbivorous animal living in or around rivers of tropical Africa -02398732 05 n 02 Ruminantia 0 suborder_Ruminantia 0 007 @ 01342529 n 0000 #m 02394068 n 0000 %m 02399000 n 0000 %m 02400139 n 0000 %m 02429123 n 0000 %m 02429695 n 0000 %m 02435689 n 0000 | cattle; bison; sheep; goats; antelopes; deer; chevrotains; giraffes; camels -02399000 05 n 01 ruminant 0 015 @ 02394477 n 0000 #m 02398732 n 0000 + 01174555 v 0101 ~ 01319339 n 0000 %p 02399424 n 0000 %p 02399648 n 0000 %p 02399791 n 0000 %p 02399942 n 0000 ~ 02401031 n 0000 ~ 02429456 n 0000 ~ 02430045 n 0000 ~ 02435853 n 0000 ~ 02439033 n 0000 -c 01174555 v 0000 -c 01197870 v 0000 | any of various cud-chewing hoofed mammals having a stomach divided into four (occasionally three) compartments -02399424 05 n 02 rumen 0 first_stomach 0 003 @ 05395690 n 0000 #p 02399000 n 0000 + 01174555 v 0101 | the first compartment of the stomach of a ruminant; here food is collected and returned to the mouth as cud for chewing -02399648 05 n 02 reticulum 0 second_stomach 0 002 @ 05395690 n 0000 #p 02399000 n 0000 | the second compartment of the stomach of a ruminant -02399791 05 n 03 psalterium 0 omasum 0 third_stomach 0 002 @ 05395690 n 0000 #p 02399000 n 0000 | the third compartment of the stomach of a ruminant -02399942 05 n 02 abomasum 0 fourth_stomach 0 003 @ 05395690 n 0000 #p 02399000 n 0000 + 03138895 a 0101 | the fourth compartment of the stomach of a ruminant; the one where digestion takes place -02400139 05 n 02 Bovidae 0 family_Bovidae 0 042 @ 01862557 n 0000 #m 02398732 n 0000 %m 02401031 n 0000 %m 02401305 n 0000 %m 02401509 n 0000 %m 02401661 n 0000 %m 02407959 n 0000 %m 02408217 n 0000 %m 02408903 n 0000 %m 02409369 n 0000 %m 02409702 n 0000 %m 02410313 n 0000 %m 02411075 n 0000 %m 02411427 n 0000 %m 02415971 n 0000 %m 02416410 n 0000 %m 02418064 n 0000 %m 02418341 n 0000 %m 02418648 n 0000 %m 02418934 n 0000 %m 02419217 n 0000 %m 02419515 n 0000 %m 02420389 n 0000 %m 02420675 n 0000 %m 02420994 n 0000 %m 02421308 n 0000 %m 02421612 n 0000 %m 02421962 n 0000 %m 02422249 n 0000 %m 02422561 n 0000 %m 02422860 n 0000 %m 02423465 n 0000 %m 02423787 n 0000 %m 02425393 n 0000 %m 02425756 n 0000 %m 02426054 n 0000 %m 02426339 n 0000 %m 02426634 n 0000 %m 02427337 n 0000 %m 02427958 n 0000 %m 02428229 n 0000 %m 02428653 n 0000 | true antelopes; cattle; oxen; sheep; goats -02401031 05 n 01 bovid 0 012 @ 02399000 n 0000 #m 02400139 n 0000 ~ 02402010 n 0000 ~ 02407959 n 0000 ~ 02410509 n 0000 ~ 02411206 n 0000 ~ 02411705 n 0000 ~ 02414578 n 0000 ~ 02416519 n 0000 ~ 02418064 n 0000 ~ 02419796 n 0000 ~ 02428842 n 0000 | hollow-horned ruminants -02401305 05 n 02 Bovinae 0 subfamily_Bovinae 0 002 @ 01862557 n 0000 #m 02400139 n 0000 | term not used technically; essentially coextensive with genus Bos: cattle; buffalo; and sometimes includes kudu -02401509 05 n 02 Bovini 0 tribe_Bovini 0 002 @ 08108784 n 0000 #m 02400139 n 0000 | term not used technically; essentially coextensive with genus Bos -02401661 05 n 02 Bos 0 genus_Bos 0 011 @ 01864707 n 0000 #m 02400139 n 0000 %m 02402010 n 0000 %m 02402175 n 0000 %m 02402425 n 0000 %m 02403003 n 0000 %m 02404573 n 0000 %m 02404906 n 0000 %m 02405101 n 0000 %m 02405302 n 0000 %m 02405440 n 0000 | wild and domestic cattle; in some classifications placed in the subfamily Bovinae or tribe Bovini -02402010 05 n 01 bovine 0 005 @ 02401031 n 0000 #m 02401661 n 0000 ~ 02402175 n 0000 ~ 02402425 n 0000 ~ 02404573 n 0000 | any of various members of the genus Bos -02402175 05 n 02 ox 0 wild_ox 0 007 @ 02402010 n 0000 #m 02401661 n 0000 #m 02409702 n 0000 ~ 02405101 n 0000 ~ 02405302 n 0000 ~ 02405440 n 0000 ~ 02409870 n 0000 | any of various wild bovines especially of the genera Bos or closely related Bibos -02402425 05 n 05 cattle 0 cows 0 kine 0 oxen 0 Bos_taurus 0 018 @ 02402010 n 0000 #m 02401661 n 0000 #m 07994331 n 0000 + 02986348 n 0101 %m 01887896 n 0000 ~ 02403003 n 0000 ~ 02403153 n 0000 ~ 02403231 n 0000 ~ 02403325 n 0000 ~ 02403454 n 0000 ~ 02404186 n 0000 ~ 02405577 n 0000 ~ 02405692 n 0000 ~ 02406046 n 0000 ~ 02406174 n 0000 ~ 02406859 n 0000 ~ 02406952 n 0000 %p 07663592 n 0000 | domesticated bovine animals as a group regardless of sex or age; "so many head of cattle"; "wait till the cows come home"; "seven thin and ill-favored kine"- Bible; "a team of oxen" -02403003 05 n 01 ox 2 003 @ 02402425 n 0000 #m 02401661 n 0000 %p 02462602 n 0000 | an adult castrated bull of the genus Bos; especially Bos taurus -02403153 05 n 01 stirk 0 001 @ 02402425 n 0000 | yearling heifer or bullock -02403231 05 n 02 bullock 1 steer 0 002 @ 02402425 n 0000 @ 01321230 n 0000 | castrated bull -02403325 05 n 01 bull 1 003 @ 02402425 n 0000 %p 01325417 n 0000 ~ 02403820 n 0000 | uncastrated adult male of domestic cattle -02403454 05 n 02 cow 1 moo-cow 0 005 @ 02402425 n 0000 %p 02370360 n 0000 ~ 02403644 n 0000 ~ 02403740 n 0000 %p 05539012 n 0000 | female of domestic cattle: "`moo-cow' is a child's term" -02403644 05 n 02 springer 0 springing_cow 0 001 @ 02403454 n 0000 | a cow about to give birth -02403740 05 n 01 heifer 0 002 @ 02403454 n 0000 @ 01321854 n 0000 | young cow -02403820 05 n 01 bullock 2 003 @ 02403325 n 0000 @ 01321854 n 0000 + 02322248 a 0101 | young bull -02403920 05 n 03 dogie 0 dogy 0 leppy 0 001 @ 01887896 n 0000 | motherless calf in a range herd of cattle -02404028 05 n 01 maverick 0 001 @ 01887896 n 0000 | an unbranded range animal (especially a stray calf); belongs to the first person who puts a brand on it -02404186 05 n 02 beef 0 beef_cattle 0 009 @ 02402425 n 0000 ~ 02404432 n 0000 ~ 02405799 n 0000 ~ 02405929 n 0000 ~ 02406647 n 0000 ~ 02407071 n 0000 ~ 02407276 n 0000 ~ 02407625 n 0000 ~ 02407763 n 0000 | cattle that are reared for their meat -02404432 05 n 02 longhorn 0 Texas_longhorn 0 001 @ 02404186 n 0000 | long-horned beef cattle formerly common in southwestern United States -02404573 05 n 04 Brahman 0 Brahma 0 Brahmin 0 Bos_indicus 0 003 @ 02402010 n 0000 #m 02401661 n 0000 ~ 02404906 n 0000 | any of several breeds of Indian cattle; especially a large American heat and tick resistant greyish humped breed evolved in the Gulf States by interbreeding Indian cattle and now used chiefly for crossbreeding -02404906 05 n 01 zebu 0 002 @ 02404573 n 0000 #m 02401661 n 0000 | domesticated ox having a humped back and long horns and a large dewlap; used chiefly as a draft animal in India and east Asia -02405101 05 n 03 aurochs 1 urus 0 Bos_primigenius 0 002 @ 02402175 n 0000 #m 02401661 n 0000 | large recently extinct long-horned European wild ox; considered one of the ancestors of domestic cattle -02405302 05 n 02 yak 0 Bos_grunniens 0 002 @ 02402175 n 0000 #m 02401661 n 0000 | large long-haired wild ox of Tibet often domesticated -02405440 05 n 04 banteng 0 banting 0 tsine 0 Bos_banteng 0 002 @ 02402175 n 0000 #m 02401661 n 0000 | wild ox of the Malay Archipelago -02405577 05 n 02 Welsh 0 Welsh_Black 0 001 @ 02402425 n 0000 | a breed of dual-purpose cattle developed in Wales -02405692 05 n 01 red_poll 0 001 @ 02402425 n 0000 | hornless short-haired breed of beef and dairy cattle -02405799 05 n 01 Santa_Gertrudis 0 001 @ 02404186 n 0000 | Brahman and shorthorn crossbreed of red cattle; hardy in hot regions -02405929 05 n 03 Aberdeen_Angus 0 Angus 0 black_Angus 0 001 @ 02404186 n 0000 | black hornless breed from Scotland -02406046 05 n 01 Africander 0 001 @ 02402425 n 0000 | tall large-horned humped cattle of South Africa; used for meat or draft -02406174 05 n 06 dairy_cattle 0 dairy_cow 0 milch_cow 0 milk_cow 0 milcher 0 milker 0 007 @ 02402425 n 0000 ~ 02406432 n 0000 ~ 02406533 n 0000 ~ 02406749 n 0000 ~ 02407172 n 0000 ~ 02407390 n 0000 ~ 02407521 n 0000 | cattle that are reared for their milk -02406432 05 n 01 Ayrshire 0 001 @ 02406174 n 0000 | hardy breed of dairy cattle from Ayr, Scotland -02406533 05 n 01 Brown_Swiss 0 001 @ 02406174 n 0000 | large hardy brown breed of dairy cattle from Switzerland -02406647 05 n 01 Charolais 0 001 @ 02404186 n 0000 | large white or cream-colored breed from France -02406749 05 n 01 Jersey 0 001 @ 02406174 n 0000 | a breed of diary cattle developed on the island of Jersey -02406859 05 n 01 Devon 0 001 @ 02402425 n 0000 | red dual-purpose cattle of English origin -02406952 05 n 01 grade 0 001 @ 02402425 n 0000 | a variety of cattle produced by crossbreeding with a superior breed -02407071 05 n 02 Durham 0 shorthorn 0 001 @ 02404186 n 0000 | English breed of short-horned cattle -02407172 05 n 01 milking_shorthorn 0 001 @ 02406174 n 0000 | breed evolved from shorthorn beef cattle -02407276 05 n 01 Galloway 0 001 @ 02404186 n 0000 | breed of hardy black chiefly beef cattle native to Scotland -02407390 05 n 03 Friesian 0 Holstein 0 Holstein-Friesian 0 001 @ 02406174 n 0000 | a breed of dairy cattle from northern Holland -02407521 05 n 01 Guernsey 0 001 @ 02406174 n 0000 | breed of dairy cattle from the island of Guernsey -02407625 05 n 02 Hereford 0 whiteface 0 001 @ 02404186 n 0000 | hardy English breed of dairy cattle raised extensively in United States -02407763 05 n 02 cattalo 0 beefalo 0 001 @ 02404186 n 0000 | hardy breed of cattle resulting from crossing domestic cattle with the American buffalo; yields leaner beef than conventional breeds -02407959 05 n 02 Old_World_buffalo 0 buffalo 1 006 @ 02401031 n 0000 #m 02400139 n 0000 ~ 02408429 n 0000 ~ 02409038 n 0000 ~ 02409202 n 0000 ~ 02409508 n 0000 | any of several Old World animals resembling oxen including, e.g., water buffalo; Cape buffalo -02408217 05 n 03 Bubalus 0 genus_Bubalus 0 tribe_Bubalus 0 004 @ 01864707 n 0000 #m 02400139 n 0000 %m 02408429 n 0000 %m 02409202 n 0000 | in some classification systems included in genus Bos; water buffaloes -02408429 05 n 04 water_buffalo 0 water_ox 0 Asiatic_buffalo 0 Bubalus_bubalis 0 004 @ 02407959 n 0000 #m 02408217 n 0000 ~ 02408660 n 0000 ~ 02408817 n 0000 | an Asian buffalo that is often domesticated for use as a draft animal -02408660 05 n 01 Indian_buffalo 0 001 @ 02408429 n 0000 | upland buffalo of eastern Asia where true water buffaloes do not thrive; used for draft and milk -02408817 05 n 01 carabao 0 001 @ 02408429 n 0000 | water buffalo of the Philippines -02408903 05 n 01 genus_Anoa 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02409038 n 0000 | a genus of mammals of the family Bovidae -02409038 05 n 03 anoa 0 dwarf_buffalo 0 Anoa_depressicornis 0 002 @ 02407959 n 0000 #m 02408903 n 0000 | small buffalo of the Celebes having small straight horns -02409202 05 n 04 tamarau 0 tamarao 0 Bubalus_mindorensis 0 Anoa_mindorensis 0 002 @ 02407959 n 0000 #m 02408217 n 0000 | small buffalo of Mindoro in the Philippines -02409369 05 n 03 Synercus 0 genus_Synercus 0 tribe_synercus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02409508 n 0000 | Cape buffalo -02409508 05 n 02 Cape_buffalo 0 Synercus_caffer 0 002 @ 02407959 n 0000 #m 02409369 n 0000 | large often savage buffalo of southern Africa having upward-curving horns; mostly in game reserves -02409702 05 n 02 Bibos 0 genus_Bibos 0 006 @ 01864707 n 0000 #m 02400139 n 0000 %m 02402175 n 0000 %m 02409870 n 0000 %m 02410011 n 0000 %m 02410141 n 0000 | wild ox -02409870 05 n 01 Asian_wild_ox 0 004 @ 02402175 n 0000 #m 02409702 n 0000 ~ 02410011 n 0000 ~ 02410141 n 0000 | genus of Asiatic wild oxen -02410011 05 n 02 gaur 0 Bibos_gaurus 0 002 @ 02409870 n 0000 #m 02409702 n 0000 | wild ox of mountainous areas of eastern India -02410141 05 n 03 gayal 0 mithan 0 Bibos_frontalis 0 002 @ 02409870 n 0000 #m 02409702 n 0000 | ox of southeast Asia sometimes considered a domesticated breed of the gaur -02410313 05 n 01 genus_Bison 0 005 @ 01864707 n 0000 #m 02400139 n 0000 %m 02410509 n 0000 %m 02410702 n 0000 %m 02410900 n 0000 | sometimes considered a subgenus of genus Bos: American buffalo -02410509 05 n 01 bison 0 004 @ 02401031 n 0000 #m 02410313 n 0000 ~ 02410702 n 0000 ~ 02410900 n 0000 | any of several large humped bovids having shaggy manes and large heads and short horns -02410702 05 n 04 American_bison 0 American_buffalo 0 buffalo 2 Bison_bison 0 003 @ 02410509 n 0000 #m 02410313 n 0000 %p 07663492 n 0000 | large shaggy-haired brown bison of North American plains -02410900 05 n 03 wisent 0 aurochs 2 Bison_bonasus 0 002 @ 02410509 n 0000 #m 02410313 n 0000 | European bison having a smaller and higher head than the North American bison -02411075 05 n 02 Ovibos 0 genus_Ovibos 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02411206 n 0000 | consisting of the musk-ox -02411206 05 n 03 musk_ox 0 musk_sheep 0 Ovibos_moschatus 0 002 @ 02401031 n 0000 #m 02411075 n 0000 | large shaggy-coated bovid mammal of Canada and Greenland; intermediate in size and anatomy between an ox and a sheep -02411427 05 n 02 Ovis 0 genus_Ovis 0 012 @ 01864707 n 0000 #m 02400139 n 0000 %m 02411705 n 0000 %m 02412210 n 0000 %m 02412440 n 0000 %m 02413131 n 0000 %m 02414763 n 0000 %m 02414904 n 0000 %m 02415130 n 0000 %m 02415253 n 0000 %m 02415577 n 0000 %m 02415829 n 0000 | sheep -02411705 05 n 01 sheep 0 011 @ 02401031 n 0000 #m 02411427 n 0000 #m 07994331 n 0000 #m 07991169 n 0000 ~ 02411999 n 0000 ~ 02412080 n 0000 ~ 02412210 n 0000 ~ 02413050 n 0000 ~ 02413131 n 0000 %p 02439568 n 0000 %p 02462602 n 0000 | woolly usually horned ruminant mammal related to the goat -02411999 05 n 01 ewe 0 002 @ 02411705 n 0000 %p 02370360 n 0000 | female sheep -02412080 05 n 02 ram 0 tup 0 002 @ 02411705 n 0000 %p 01325417 n 0000 | uncastrated adult male sheep; "a British term is `tup'" -02412210 05 n 01 wether 0 003 @ 02411705 n 0000 #m 02411427 n 0000 ~ 02412337 n 0000 | male sheep especially a castrated one -02412337 05 n 01 bellwether 0 001 @ 02412210 n 0000 | sheep that leads the herd often wearing a bell -02412440 05 n 01 lamb 0 008 @ 01321854 n 0000 #m 02411427 n 0000 + 00058265 v 0101 ~ 02412629 n 0000 ~ 02412700 n 0000 ~ 02412787 n 0000 ~ 02412909 n 0000 ~ 02412977 n 0000 | young sheep -02412629 05 n 01 lambkin 0 001 @ 02412440 n 0000 | a very young lamb -02412700 05 n 01 baa-lamb 0 001 @ 02412440 n 0000 | child's word for a sheep or lamb -02412787 05 n 03 hog 2 hogget 0 hogg 0 001 @ 02412440 n 0000 | a sheep up to the age of one year; one yet to be sheared -02412909 05 n 01 teg 0 001 @ 02412440 n 0000 | two-year-old sheep -02412977 05 n 01 Persian_lamb 0 001 @ 02412440 n 0000 | a karakul lamb -02413050 05 n 01 black_sheep 0 001 @ 02411705 n 0000 | sheep with a black coat -02413131 05 n 02 domestic_sheep 0 Ovis_aries 0 013 @ 02411705 n 0000 #m 02411427 n 0000 ~ 02413484 n 0000 ~ 02413593 n 0000 ~ 02413717 n 0000 ~ 02413824 n 0000 ~ 02413917 n 0000 ~ 02414043 n 0000 ~ 02414209 n 0000 ~ 02414290 n 0000 ~ 02414442 n 0000 %p 07666733 n 0000 %p 07667151 n 0000 | any of various breeds raised for wool or edible meat or skin -02413484 05 n 01 Cotswold 0 001 @ 02413131 n 0000 | sheep with long wool originating in the Cotswold Hills -02413593 05 n 02 Hampshire 0 Hampshire_down 0 001 @ 02413131 n 0000 | British breed of hornless dark-faced domestic sheep -02413717 05 n 01 Lincoln 0 001 @ 02413131 n 0000 | long-wooled mutton sheep originally from Lincolnshire -02413824 05 n 01 Exmoor 1 001 @ 02413131 n 0000 | horned sheep of Devon; valued for mutton -02413917 05 n 01 Cheviot 0 001 @ 02413131 n 0000 | hardy hornless sheep of the Cheviot Hills noted for its short thick wool -02414043 05 n 03 broadtail 0 caracul 0 karakul 0 001 @ 02413131 n 0000 | hardy coarse-haired sheep of central Asia; lambs are valued for their soft curly black fur -02414209 05 n 01 longwool 0 001 @ 02413131 n 0000 | a domestic long-wool sheep -02414290 05 n 02 merino 0 merino_sheep 0 001 @ 02413131 n 0000 | white sheep originating in Spain and producing a heavy fleece of exceptional quality -02414442 05 n 01 Rambouillet 0 001 @ 02413131 n 0000 | hardy sheep developed from the merino producing both good mutton and fine wool -02414578 05 n 01 wild_sheep 0 007 @ 02401031 n 0000 ~ 02414763 n 0000 ~ 02414904 n 0000 ~ 02415130 n 0000 ~ 02415253 n 0000 ~ 02415435 n 0000 ~ 02416104 n 0000 | undomesticated sheep -02414763 05 n 03 argali 0 argal 0 Ovis_ammon 0 002 @ 02414578 n 0000 #m 02411427 n 0000 | wild sheep of semidesert regions in central Asia -02414904 05 n 03 Marco_Polo_sheep 0 Marco_Polo's_sheep 0 Ovis_poli 0 002 @ 02414578 n 0000 #m 02411427 n 0000 | Asiatic wild sheep with exceptionally large horns; sometimes considered a variety of the argali (or Ovis ammon) -02415130 05 n 02 urial 0 Ovis_vignei 0 002 @ 02414578 n 0000 #m 02411427 n 0000 | bearded reddish sheep of southern Asia -02415253 05 n 04 Dall_sheep 0 Dall's_sheep 0 white_sheep 0 Ovis_montana_dalli 0 002 @ 02414578 n 0000 #m 02411427 n 0000 | large white wild sheep of northwestern Canada and Alaska -02415435 05 n 01 mountain_sheep 0 003 @ 02414578 n 0000 ~ 02415577 n 0000 ~ 02415829 n 0000 | any wild sheep inhabiting mountainous regions -02415577 05 n 06 bighorn 0 bighorn_sheep 0 cimarron 0 Rocky_Mountain_bighorn 0 Rocky_Mountain_sheep 0 Ovis_canadensis 0 002 @ 02415435 n 0000 #m 02411427 n 0000 | wild sheep of mountainous regions of western North America having massive curled horns -02415829 05 n 03 mouflon 0 moufflon 0 Ovis_musimon 0 002 @ 02415435 n 0000 #m 02411427 n 0000 | wild mountain sheep of Corsica and Sardinia -02415971 05 n 02 Ammotragus 0 genus_Ammotragus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02416104 n 0000 | genus of wild sheep -02416104 05 n 06 aoudad 0 arui 0 audad 0 Barbary_sheep 0 maned_sheep 0 Ammotragus_lervia 0 002 @ 02414578 n 0000 #m 02415971 n 0000 | wild sheep of northern Africa -02416270 05 n 01 beard 1 003 @ 05254795 n 0000 #p 02416519 n 0000 + 02687730 v 0101 | hairy growth on or near the face of certain mammals -02416410 05 n 02 Capra 0 genus_Capra 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02416519 n 0000 | goats -02416519 05 n 02 goat 0 caprine_animal 0 009 @ 02401031 n 0000 #m 02416410 n 0000 %p 01325417 n 0000 %p 02416270 n 0000 ~ 02416820 n 0000 ~ 02416880 n 0000 ~ 02416964 n 0000 ~ 02417070 n 0000 ~ 02417534 n 0000 | any of numerous agile ruminants related to sheep but having a beard and straight horns -02416820 05 n 01 kid 0 001 @ 02416519 n 0000 | young goat -02416880 05 n 03 billy 0 billy_goat 0 he-goat 0 001 @ 02416519 n 0000 | male goat -02416964 05 n 03 nanny 0 nanny-goat 0 she-goat 0 002 @ 02416519 n 0000 %p 02370360 n 0000 | female goat -02417070 05 n 02 domestic_goat 0 Capra_hircus 0 003 @ 02416519 n 0000 ~ 02417242 n 0000 ~ 02417387 n 0000 | any of various breeds of goat raised for milk or meat or wool -02417242 05 n 02 Cashmere_goat 0 Kashmir_goat 0 001 @ 02417070 n 0000 | Himalayan goat having a silky undercoat highly prized as cashmere wool -02417387 05 n 02 Angora 1 Angora_goat 0 001 @ 02417070 n 0000 | a domestic breed of goat raised for its long silky hair which is the true mohair -02417534 05 n 01 wild_goat 0 004 @ 02416519 n 0000 ~ 02417663 n 0000 ~ 02417785 n 0000 ~ 02417914 n 0000 | undomesticated goat -02417663 05 n 03 bezoar_goat 0 pasang 1 Capra_aegagrus 0 001 @ 02417534 n 0000 | wild goat of Iran and adjacent regions -02417785 05 n 03 markhor 0 markhoor 0 Capra_falconeri 0 001 @ 02417534 n 0000 | large Himalayan goat with large spiraled horns -02417914 05 n 02 ibex 0 Capra_ibex 0 001 @ 02417534 n 0000 | wild goat of mountain areas of Eurasia and northern Africa having large recurved horns -02418064 05 n 01 goat_antelope 0 007 @ 02401031 n 0000 #m 02400139 n 0000 ~ 02418465 n 0000 ~ 02418770 n 0000 ~ 02419056 n 0000 ~ 02419336 n 0000 ~ 02419634 n 0000 | bovid related to goats but having antelope-like features: mountain goats; gorals; serows; chamois; gnu goats -02418341 05 n 02 Oreamnos 0 genus_Oreamnos 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02418465 n 0000 | mountain goats -02418465 05 n 03 mountain_goat 0 Rocky_Mountain_goat 0 Oreamnos_americanus 0 002 @ 02418064 n 0000 #m 02418341 n 0000 | sure-footed mammal of mountainous northwestern North America -02418648 05 n 02 Naemorhedus 0 genus_Naemorhedus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02418770 n 0000 | gorals -02418770 05 n 02 goral 0 Naemorhedus_goral 0 002 @ 02418064 n 0000 #m 02418648 n 0000 | small goat antelope with small conical horns; of southern Asian mountains -02418934 05 n 02 Capricornis 0 genus_Capricornis 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02419056 n 0000 | serows -02419056 05 n 01 serow 0 002 @ 02418064 n 0000 #m 02418934 n 0000 | short-horned dark-coated goat antelope of mountain areas of southern and southeastern Asia -02419217 05 n 02 Rupicapra 0 genus_Rupicapra 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02419336 n 0000 | chamois -02419336 05 n 02 chamois 0 Rupicapra_rupicapra 0 002 @ 02418064 n 0000 #m 02419217 n 0000 | hoofed mammal of mountains of Eurasia having upright horns with backward-hooked tips -02419515 05 n 02 Budorcas 0 genus_Budorcas 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02419634 n 0000 | gnu goats -02419634 05 n 03 takin 0 gnu_goat 0 Budorcas_taxicolor 0 002 @ 02418064 n 0000 #m 02419515 n 0000 | large heavily built goat antelope of eastern Himalayan area -02419796 05 n 01 antelope 0 022 @ 02401031 n 0000 ~ 02420509 n 0000 ~ 02420828 n 0000 ~ 02421136 n 0000 ~ 02421449 n 0000 ~ 02421792 n 0000 ~ 02422106 n 0000 ~ 02422391 n 0000 ~ 02422699 n 0000 ~ 02423022 n 0000 ~ 02424085 n 0000 ~ 02424305 n 0000 ~ 02424695 n 0000 ~ 02425086 n 0000 ~ 02425532 n 0000 ~ 02425887 n 0000 ~ 02426176 n 0000 ~ 02426481 n 0000 ~ 02426813 n 0000 ~ 02427724 n 0000 ~ 02428089 n 0000 ~ 02428349 n 0000 | graceful Old World ruminant with long legs and horns directed upward and backward; includes gazelles; springboks; impalas; addax; gerenuks; blackbucks; dik-diks -02420389 05 n 02 Antilope 0 genus_Antilope 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02420509 n 0000 | blackbucks -02420509 05 n 03 blackbuck 0 black_buck 0 Antilope_cervicapra 0 002 @ 02419796 n 0000 #m 02420389 n 0000 | common Indian antelope with a dark back and spiral horns -02420675 05 n 02 Litocranius 0 genus_Litocranius 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02420828 n 0000 | antelopes of eastern Africa: gerenuks -02420828 05 n 02 gerenuk 0 Litocranius_walleri 0 002 @ 02419796 n 0000 #m 02420675 n 0000 | slender East African antelope with slim neck and backward-curving horns -02420994 05 n 01 genus_Addax 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02421136 n 0000 | genus of antelopes of northern African deserts -02421136 05 n 02 addax 0 Addax_nasomaculatus 0 002 @ 02419796 n 0000 #m 02420994 n 0000 | large antelope with lightly spiraled horns of desert regions of northern Africa -02421308 05 n 02 Connochaetes 0 genus_Connochaetes 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02421449 n 0000 | African antelopes: gnus -02421449 05 n 02 gnu 0 wildebeest 0 002 @ 02419796 n 0000 #m 02421308 n 0000 | large African antelope having a head with horns like an ox and a long tufted tail -02421612 05 n 02 Madoqua 0 genus_Madoqua 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02421792 n 0000 | genus comprising some small antelopes of eastern and northeastern Africa -02421792 05 n 01 dik-dik 0 002 @ 02419796 n 0000 #m 02421612 n 0000 | any of several small antelopes of eastern Africa of the genus Madoqua; the size of a large rabbit -02421962 05 n 02 Alcelaphus 0 genus_Alcelaphus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02422106 n 0000 | African antelopes: hartebeests -02422106 05 n 01 hartebeest 0 002 @ 02419796 n 0000 #m 02421962 n 0000 | a large African antelope with lyre-shaped horns that curve backward -02422249 05 n 02 Damaliscus 0 genus_Damaliscus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02422391 n 0000 | African antelopes: sassabies -02422391 05 n 03 sassaby 0 topi 0 Damaliscus_lunatus 0 002 @ 02419796 n 0000 #m 02422249 n 0000 | a large South African antelope; considered the swiftest hoofed mammal -02422561 05 n 02 Aepyceros 0 genus_Aepyceros 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02422699 n 0000 | African antelopes: impalas -02422699 05 n 02 impala 0 Aepyceros_melampus 0 002 @ 02419796 n 0000 #m 02422561 n 0000 | African antelope with ridged curved horns; moves with enormous leaps -02422860 05 n 02 Gazella 0 genus_Gazella 0 005 @ 01864707 n 0000 #m 02400139 n 0000 %m 02423022 n 0000 %m 02423218 n 0000 %m 02423362 n 0000 | typical gazelles -02423022 05 n 01 gazelle 0 005 @ 02419796 n 0000 #m 02422860 n 0000 ~ 02423218 n 0000 ~ 02423362 n 0000 ~ 02423589 n 0000 | small swift graceful antelope of Africa and Asia having lustrous eyes -02423218 05 n 02 Thomson's_gazelle 0 Gazella_thomsoni 0 002 @ 02423022 n 0000 #m 02422860 n 0000 | East African gazelle; the smallest gazelle -02423362 05 n 01 Gazella_subgutturosa 0 002 @ 02423022 n 0000 #m 02422860 n 0000 | a kind of gazelle -02423465 05 n 02 Antidorcas 0 genus_Antidorcas 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02423589 n 0000 | springboks -02423589 05 n 04 springbok 0 springbuck 0 Antidorcas_marsupialis 0 Antidorcas_euchore 0 002 @ 02423022 n 0000 #m 02423465 n 0000 | a South African gazelle noted for springing lightly into the air -02423787 05 n 04 Tragelaphus 0 genus_Tragelaphus 0 Strepsiceros 0 genus_Strepsiceros 0 008 @ 01864707 n 0000 #m 02400139 n 0000 %m 02424085 n 0000 %m 02424305 n 0000 %m 02424695 n 0000 %m 02424909 n 0000 %m 02425086 n 0000 %m 02425228 n 0000 | African antelopes: kudus; bongos; nyalas; bushbucks -02424085 05 n 03 bongo 0 Tragelaphus_eurycerus 0 Boocercus_eurycerus 0 002 @ 02419796 n 0000 #m 02423787 n 0000 | large forest antelope of central Africa having a reddish-brown coat with white stripes and spiral horns -02424305 05 n 03 kudu 0 koodoo 0 koudou 0 004 @ 02419796 n 0000 #m 02423787 n 0000 ~ 02424486 n 0000 ~ 02424589 n 0000 | either of two spiral-horned antelopes of the African bush -02424486 05 n 02 greater_kudu 0 Tragelaphus_strepsiceros 0 001 @ 02424305 n 0000 | a variety of kudu -02424589 05 n 02 lesser_kudu 0 Tragelaphus_imberbis 0 001 @ 02424305 n 0000 | a smaller variety of kudu -02424695 05 n 01 harnessed_antelope 0 004 @ 02419796 n 0000 #m 02423787 n 0000 ~ 02424909 n 0000 ~ 02425228 n 0000 | any of several antelopes of the genus Tragelaphus having striped markings resembling a harness -02424909 05 n 02 nyala 0 Tragelaphus_angasi 0 002 @ 02424695 n 0000 #m 02423787 n 0000 | spiral-horned South African antelope with a fringe of white hairs along back and neck -02425086 05 n 02 mountain_nyala 0 Tragelaphus_buxtoni 0 002 @ 02419796 n 0000 #m 02423787 n 0000 | shaggy antelope of mountains of Ethiopia -02425228 05 n 03 bushbuck 0 guib 0 Tragelaphus_scriptus 0 002 @ 02424695 n 0000 #m 02423787 n 0000 | antelope with white markings like a harness and twisted horns -02425393 05 n 02 Boselaphus 0 genus_Boselaphus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02425532 n 0000 | Indian antelopes: nilgais -02425532 05 n 05 nilgai 0 nylghai 0 nylghau 0 blue_bull 0 Boselaphus_tragocamelus 0 002 @ 02419796 n 0000 #m 02425393 n 0000 | large Indian antelope; male is blue-grey with white markings; female is brownish with no horns -02425756 05 n 02 Hippotragus 0 genus_Hippotragus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02425887 n 0000 | sable antelopes -02425887 05 n 02 sable_antelope 0 Hippotragus_niger 0 002 @ 02419796 n 0000 #m 02425756 n 0000 | large black East African antelope with sharp backward-curving horns -02426054 05 n 01 genus_Saiga 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02426176 n 0000 | Eurasian antelopes: saigas -02426176 05 n 02 saiga 0 Saiga_tatarica 0 002 @ 02419796 n 0000 #m 02426054 n 0000 | goat-like antelope of central Eurasia having a stubby nose like a proboscis -02426339 05 n 02 Raphicerus 0 genus_Raphicerus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02426481 n 0000 | African antelopes: steenboks -02426481 05 n 03 steenbok 0 steinbok 0 Raphicerus_campestris 0 002 @ 02419796 n 0000 #m 02426339 n 0000 | small plains antelope of southeastern Africa -02426634 05 n 02 Taurotragus 0 genus_Taurotragus 0 005 @ 01864707 n 0000 #m 02400139 n 0000 %m 02426813 n 0000 %m 02427032 n 0000 %m 02427183 n 0000 | African antelopes: elands -02426813 05 n 01 eland 0 004 @ 02419796 n 0000 #m 02426634 n 0000 ~ 02427032 n 0000 ~ 02427183 n 0000 | either of two large African antelopes of the genus Taurotragus having short spirally twisted horns in both sexes -02427032 05 n 02 common_eland 0 Taurotragus_oryx 0 002 @ 02426813 n 0000 #m 02426634 n 0000 | dark fawn-colored eland of southern and eastern Africa -02427183 05 n 02 giant_eland 0 Taurotragus_derbianus 0 002 @ 02426813 n 0000 #m 02426634 n 0000 | large dark striped eland of western equatorial Africa -02427337 05 n 02 Kobus 0 genus_Kobus 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02427724 n 0000 | African antelopes: waterbucks -02427470 05 n 02 kob 0 Kobus_kob 0 001 @ 02427724 n 0000 | an orange-brown antelope of southeast Africa -02427576 05 n 02 lechwe 0 Kobus_leche 0 001 @ 02427724 n 0000 | tawny-colored African antelope inhabiting wet grassy plains; a threatened species -02427724 05 n 01 waterbuck 0 004 @ 02419796 n 0000 #m 02427337 n 0000 ~ 02427470 n 0000 ~ 02427576 n 0000 | any of several large African antelopes of the genus Kobus having curved ridged horns and frequenting e.g. swamps and rivers -02427958 05 n 02 Adenota 0 genus_Adenota 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02428089 n 0000 | African antelopes: puku -02428089 05 n 02 puku 0 Adenota_vardoni 0 002 @ 02419796 n 0000 #m 02427958 n 0000 | an African antelope closely related to the waterbuck -02428229 05 n 01 genus_Oryx 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02428349 n 0000 | African antelopes: oryxes -02428349 05 n 02 oryx 0 pasang 2 003 @ 02419796 n 0000 #m 02428229 n 0000 ~ 02428508 n 0000 | large African antelope with long straight nearly upright horns -02428508 05 n 03 gemsbok 0 gemsbuck 0 Oryx_gazella 0 001 @ 02428349 n 0000 | large South African oryx with a broad black band along its flanks -02428653 05 n 02 Pseudoryx 0 genus_Pseudoryx 0 003 @ 01864707 n 0000 #m 02400139 n 0000 %m 02428842 n 0000 | species of large cow-like mammals of Vietnam discovered by scientists in 1992 -02428842 05 n 03 forest_goat 0 spindle_horn 0 Pseudoryx_nghetinhensis 0 002 @ 02401031 n 0000 #m 02428653 n 0000 | cow-like creature with the glossy coat of a horse and the agility of a goat and the long horns of an antelope; characterized as a cow that lives the life of a goat -02429123 05 n 02 Antilocapridae 0 family_Antilocapridae 0 003 @ 01862557 n 0000 #m 02398732 n 0000 %m 02429276 n 0000 | comprising only the pronghorns -02429276 05 n 02 Antilocapra 0 genus_Antilocapra 0 003 @ 01864707 n 0000 #m 02429123 n 0000 %m 02429456 n 0000 | type and sole genus of the Antilocapridae comprising one species -02429456 05 n 05 pronghorn 0 prongbuck 0 pronghorn_antelope 0 American_antelope 0 Antilocapra_americana 0 002 @ 02399000 n 0000 #m 02429276 n 0000 | fleet antelope-like ruminant of western North American plains with small branched horns -02429695 05 n 02 Cervidae 0 family_Cervidae 0 013 @ 01862557 n 0000 #m 02398732 n 0000 %m 02430045 n 0000 %m 02430929 n 0000 %m 02432139 n 0000 %m 02432867 n 0000 %m 02433205 n 0000 %m 02433426 n 0000 %m 02433796 n 0000 %m 02434598 n 0000 %m 02434834 n 0000 %m 02435099 n 0000 %m 02435386 n 0000 | deer: reindeer; moose or elks; muntjacs; roe deer -02430045 05 n 02 deer 0 cervid 0 022 @ 02399000 n 0000 #m 02429695 n 0000 %p 01325658 n 0000 %p 02158739 n 0000 %p 02158846 n 0000 ~ 02430748 n 0000 ~ 02430830 n 0000 ~ 02431122 n 0000 ~ 02431628 n 0000 ~ 02431785 n 0000 ~ 02431976 n 0000 ~ 02432291 n 0000 ~ 02432511 n 0000 ~ 02432983 n 0000 ~ 02433318 n 0000 ~ 02433546 n 0000 ~ 02433925 n 0000 ~ 02434712 n 0000 ~ 02434954 n 0000 ~ 02435216 n 0000 ~ 02435517 n 0000 %p 02462602 n 0000 | distinguished from Bovidae by the male's having solid deciduous antlers -02430559 05 n 01 stag 0 002 @ 01888264 n 0000 ~ 02430643 n 0000 | adult male deer -02430643 05 n 02 royal 0 royal_stag 0 001 @ 02430559 n 0000 | stag with antlers of 12 or more branches -02430748 05 n 01 pricket 0 001 @ 02430045 n 0000 | male deer in his second year -02430830 05 n 01 fawn 0 003 @ 02430045 n 0000 @ 01321854 n 0000 + 00058794 v 0101 | a young deer -02430929 05 n 02 Cervus 0 genus_Cervus 0 006 @ 01864707 n 0000 #m 02429695 n 0000 %m 02431122 n 0000 %m 02431628 n 0000 %m 02431785 n 0000 %m 02431976 n 0000 | the type genus of the Cervidae -02431122 05 n 05 red_deer 0 elk 1 American_elk 1 wapiti 1 Cervus_elaphus 0 005 @ 02430045 n 0000 #m 02430929 n 0000 ~ 02431337 n 0000 ~ 02431441 n 0000 ~ 02431542 n 0000 | common deer of temperate Europe and Asia -02431337 05 n 02 hart 0 stag 2 001 @ 02431122 n 0000 | a male deer, especially an adult male red deer -02431441 05 n 01 hind 0 001 @ 02431122 n 0000 | a female deer, especially an adult female red deer -02431542 05 n 01 brocket 2 001 @ 02431122 n 0000 | male red deer in its second year -02431628 05 n 03 sambar 0 sambur 0 Cervus_unicolor 0 002 @ 02430045 n 0000 #m 02430929 n 0000 | a deer of southern Asia with antlers that have three tines -02431785 05 n 04 wapiti 0 elk 2 American_elk 0 Cervus_elaphus_canadensis 0 002 @ 02430045 n 0000 #m 02430929 n 0000 | large North American deer with large much-branched antlers in the male -02431976 05 n 04 Japanese_deer 0 sika 0 Cervus_nipon 0 Cervus_sika 0 002 @ 02430045 n 0000 #m 02430929 n 0000 | small deer of Japan with slightly forked antlers -02432139 05 n 02 Odocoileus 0 genus_Odocoileus 0 004 @ 01864707 n 0000 #m 02429695 n 0000 %m 02432291 n 0000 %m 02432511 n 0000 | North American deer -02432291 05 n 06 Virginia_deer 0 white_tail 0 whitetail 0 white-tailed_deer 0 whitetail_deer 0 Odocoileus_Virginianus 0 002 @ 02430045 n 0000 #m 02432139 n 0000 | common North American deer; tail has a white underside -02432511 05 n 03 mule_deer 0 burro_deer 0 Odocoileus_hemionus 0 003 @ 02430045 n 0000 #m 02432139 n 0000 ~ 02432704 n 0000 | long-eared deer of western North America with two-pronged antlers -02432704 05 n 04 black-tailed_deer 0 blacktail_deer 0 blacktail 0 Odocoileus_hemionus_columbianus 0 001 @ 02432511 n 0000 | mule deer of western Rocky Mountains -02432867 05 n 02 Alces 0 genus_Alces 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02432983 n 0000 | elk or moose -02432983 05 n 04 elk 0 European_elk 0 moose 0 Alces_alces 0 002 @ 02430045 n 0000 #m 02432867 n 0000 | large northern deer with enormous flattened antlers in the male; called `elk' in Europe and `moose' in North America -02433205 05 n 02 Dama 0 genus_Dama 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02433318 n 0000 | fallow deer -02433318 05 n 02 fallow_deer 0 Dama_dama 0 002 @ 02430045 n 0000 #m 02433205 n 0000 | small Eurasian deer -02433426 05 n 02 Capreolus 0 genus_Capreolus 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02433546 n 0000 | roe deer -02433546 05 n 02 roe_deer 0 Capreolus_capreolus 0 003 @ 02430045 n 0000 #m 02433426 n 0000 ~ 02433729 n 0000 | small graceful deer of Eurasian woodlands having small forked antlers -02433729 05 n 01 roebuck 0 001 @ 02433546 n 0000 | male roe deer -02433796 05 n 02 Rangifer 0 genus_Rangifer 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02433925 n 0000 | reindeer or caribou -02433925 05 n 04 caribou 0 reindeer 0 Greenland_caribou 0 Rangifer_tarandus 0 004 @ 02430045 n 0000 #m 02433796 n 0000 ~ 02434190 n 0000 ~ 02434415 n 0000 | Arctic deer with large antlers in both sexes; called `reindeer' in Eurasia and `caribou' in North America -02434190 05 n 02 woodland_caribou 0 Rangifer_caribou 0 001 @ 02433925 n 0000 | any of several large caribou living in coniferous forests of southern Canada; in some classifications included in the species Rangifer tarandus -02434415 05 n 02 barren_ground_caribou 0 Rangifer_arcticus 0 001 @ 02433925 n 0000 | of tundra of northern Canada; in some classifications included in the species Rangifer tarandus -02434598 05 n 02 Mazama 0 genus_Mazama 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02434712 n 0000 | brockets -02434712 05 n 01 brocket 1 002 @ 02430045 n 0000 #m 02434598 n 0000 | small South American deer with unbranched antlers -02434834 05 n 02 Muntiacus 0 genus_Muntiacus 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02434954 n 0000 | muntjacs -02434954 05 n 02 muntjac 0 barking_deer 0 002 @ 02430045 n 0000 #m 02434834 n 0000 | small Asian deer with small antlers and a cry like a bark -02435099 05 n 02 Moschus 0 genus_Moschus 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02435216 n 0000 | musk deer -02435216 05 n 02 musk_deer 0 Moschus_moschiferus 0 002 @ 02430045 n 0000 #m 02435099 n 0000 | small heavy-limbed upland deer of central Asia; male secretes valued musk -02435386 05 n 02 Elaphurus 0 genus_Elaphurus 0 003 @ 01864707 n 0000 #m 02429695 n 0000 %m 02435517 n 0000 | a genus of Cervidae -02435517 05 n 03 pere_david's_deer 0 elaphure 0 Elaphurus_davidianus 0 002 @ 02430045 n 0000 #m 02435386 n 0000 | large Chinese deer surviving only in domesticated herds -02435689 05 n 02 Tragulidae 0 family_Tragulidae 0 005 @ 01862557 n 0000 #m 02398732 n 0000 %m 02435853 n 0000 %m 02436067 n 0000 %m 02436514 n 0000 | chevrotains -02435853 05 n 02 chevrotain 0 mouse_deer 0 005 @ 02399000 n 0000 #m 02435689 n 0000 ~ 02436224 n 0000 ~ 02436353 n 0000 ~ 02436645 n 0000 | very small hornless deer-like ruminant of tropical Asia and west Africa -02436067 05 n 02 Tragulus 0 genus_Tragulus 0 004 @ 01864707 n 0000 #m 02435689 n 0000 %m 02436224 n 0000 %m 02436353 n 0000 | type genus of the Tragulidae -02436224 05 n 02 kanchil 0 Tragulus_kanchil 0 002 @ 02435853 n 0000 #m 02436067 n 0000 | small chevrotain of southeastern Asia -02436353 05 n 02 napu 0 Tragulus_Javanicus 0 002 @ 02435853 n 0000 #m 02436067 n 0000 | chevrotain somewhat larger than the kanchil; found in India and Malaya -02436514 05 n 02 Hyemoschus 0 genus_Hyemoschus 0 003 @ 01864707 n 0000 #m 02435689 n 0000 %m 02436645 n 0000 | water chevrotains -02436645 05 n 03 water_chevrotain 0 water_deer 0 Hyemoschus_aquaticus 0 002 @ 02435853 n 0000 #m 02436514 n 0000 | largest chevrotain; of marshy areas of west Africa -02436813 05 n 02 Camelidae 0 family_Camelidae 0 005 @ 01862557 n 0000 #m 02394068 n 0000 %m 02436993 n 0000 %m 02437825 n 0000 %m 02438452 n 0000 | camels and llamas and vicunas -02436993 05 n 02 Camelus 0 genus_Camelus 0 003 @ 01864707 n 0000 #m 02436813 n 0000 %m 02437136 n 0000 | type genus of the Camelidae: camels -02437136 05 n 01 camel 0 004 @ 02394477 n 0000 #m 02436993 n 0000 ~ 02437312 n 0000 ~ 02437482 n 0000 | cud-chewing mammal used as a draft or saddle animal in desert regions -02437312 05 n 03 Arabian_camel 0 dromedary 0 Camelus_dromedarius 0 001 @ 02437136 n 0000 | one-humped camel of the hot deserts of northern Africa and southwestern Asia -02437482 05 n 02 Bactrian_camel 0 Camelus_bactrianus 0 001 @ 02437136 n 0000 | two-humped camel of the cold deserts of central Asia -02437616 05 n 01 llama 0 004 @ 02394477 n 0000 ~ 02437971 n 0000 ~ 02438173 n 0000 ~ 02438272 n 0000 | wild or domesticated South American cud-chewing animal related to camels but smaller and lacking a hump -02437825 05 n 02 Lama 0 genus_Lama 0 005 @ 01864707 n 0000 #m 02436813 n 0000 %m 02437971 n 0000 %m 02438173 n 0000 %m 02438272 n 0000 | llamas -02437971 05 n 02 domestic_llama 0 Lama_peruana 0 002 @ 02437616 n 0000 #m 02437825 n 0000 | used in the Andes as a beast of burden and source of wool; considered a domesticated variety of the guanaco -02438173 05 n 02 guanaco 0 Lama_guanicoe 0 002 @ 02437616 n 0000 #m 02437825 n 0000 | wild llama -02438272 05 n 02 alpaca 0 Lama_pacos 0 002 @ 02437616 n 0000 #m 02437825 n 0000 | domesticated llama with long silky fleece; believed to be a domesticated variety of the guanaco -02438452 05 n 02 Vicugna 0 genus_Vicugna 0 003 @ 01864707 n 0000 #m 02436813 n 0000 %m 02438580 n 0000 | a genus of Camelidae -02438580 05 n 02 vicuna 0 Vicugna_vicugna 0 002 @ 02394477 n 0000 #m 02438452 n 0000 | small wild cud-chewing Andean animal similar to the guanaco but smaller; valued for its fleecy undercoat -02438774 05 n 02 Giraffidae 0 family_Giraffidae 0 003 @ 01862557 n 0000 %m 02438897 n 0000 %m 02439286 n 0000 | giraffes -02438897 05 n 02 Giraffa 0 genus_Giraffa 0 003 @ 01864707 n 0000 #m 02438774 n 0000 %m 02439033 n 0000 | type genus of the Giraffidae -02439033 05 n 03 giraffe 0 camelopard 0 Giraffa_camelopardalis 0 003 @ 02399000 n 0000 #m 02438897 n 0000 ~ 02439398 n 0000 | tallest living quadruped; having a spotted coat and small horns and very long neck and legs; of savannahs of tropical Africa -02439286 05 n 02 Okapia 0 genus_Okapia 0 003 @ 01864707 n 0000 #m 02438774 n 0000 %m 02439398 n 0000 | okapis -02439398 05 n 02 okapi 0 Okapia_johnstoni 0 002 @ 02439033 n 0000 #m 02439286 n 0000 | similar to the giraffe but smaller with much shorter neck and stripe on the legs -02439568 05 n 01 trotter 1 004 @ 02153445 n 0000 #p 02395406 n 0000 #p 02411705 n 0000 + 01901447 v 0101 | foot of a pig or sheep especially one used as food -02439728 05 n 01 forefoot 0 002 @ 02153445 n 0000 #p 02156871 n 0000 | a front foot of a quadruped -02439829 05 n 01 hindfoot 0 002 @ 02153445 n 0000 #p 02156871 n 0000 | a rear foot of a quadruped -02439929 05 n 01 paw 0 006 @ 02153445 n 0000 #p 02083346 n 0000 #p 02120997 n 0000 + 01211455 v 0101 ~ 02440121 n 0000 %p 02440523 n 0000 | a clawed foot of an animal especially a quadruped -02440121 05 n 01 forepaw 0 003 @ 02439929 n 0000 #p 02464785 n 0000 ~ 02440250 n 0000 | front paw; analogous to the human hand -02440250 05 n 01 hand 1 001 @ 02440121 n 0000 | terminal part of the forelimb in certain vertebrates (e.g. apes or kangaroos); "the kangaroo's forearms seem undeveloped but the powerful five-fingered hands are skilled at feinting and clouting"- Springfield (Mass.) Union -02440523 05 n 01 pad 0 004 @ 05225602 n 0000 #p 02439929 n 0000 #p 05566504 n 0000 + 01921204 v 0105 | the fleshy cushion-like underside of an animal's foot or of a human's finger -02440705 05 n 02 Mustelidae 0 family_Mustelidae 0 025 @ 01862557 n 0000 #m 02074915 n 0000 %m 02441326 n 0000 %m 02441723 n 0000 %m 02443683 n 0000 %m 02444103 n 0000 %m 02444500 n 0000 %m 02444647 n 0000 %m 02445276 n 0000 %m 02445564 n 0000 %m 02446014 n 0000 %m 02446512 n 0000 %m 02446888 n 0000 %m 02447220 n 0000 %m 02447591 n 0000 %m 02447896 n 0000 %m 02448200 n 0000 %m 02448502 n 0000 %m 02448754 n 0000 %m 02449060 n 0000 %m 02449464 n 0000 %m 02449582 n 0000 %m 02449921 n 0000 %m 02450992 n 0000 %m 02451292 n 0000 | weasels; polecats; ferrets; minks; fishers; otters; badgers; skunks; wolverines; martens -02441326 05 n 03 musteline_mammal 0 mustelid 0 musteline 0 016 @ 02075296 n 0000 #m 02440705 n 0000 ~ 02441942 n 0000 ~ 02442845 n 0000 ~ 02443114 n 0000 ~ 02443484 n 0000 ~ 02444819 n 0000 ~ 02445394 n 0000 ~ 02445715 n 0000 ~ 02447366 n 0000 ~ 02448318 n 0000 ~ 02449183 n 0000 ~ 02449350 n 0000 ~ 02449699 n 0000 ~ 02450034 n 0000 ~ 02451415 n 0000 | fissiped fur-bearing carnivorous mammals -02441723 05 n 02 Mustela 0 genus_Mustela 0 006 @ 01864707 n 0000 #m 02440705 n 0000 %m 02441942 n 0000 %m 02442845 n 0000 %m 02443114 n 0000 %m 02443484 n 0000 | type genus of the family Mustelidae: minks and weasels -02441942 05 n 01 weasel 0 007 @ 02441326 n 0000 #m 02441723 n 0000 ~ 02442172 n 0000 ~ 02442446 n 0000 ~ 02442572 n 0000 ~ 02442668 n 0000 ~ 02443808 n 0000 | small carnivorous mammal with short legs and elongated body and neck -02442172 05 n 03 ermine 0 shorttail_weasel 0 Mustela_erminea 0 002 @ 02441942 n 0000 ~ 02442336 n 0000 | mustelid of northern hemisphere in its white winter coat -02442336 05 n 01 stoat 0 001 @ 02442172 n 0000 | the ermine in its brown summer coat with black-tipped tail -02442446 05 n 02 New_World_least_weasel 0 Mustela_rixosa 0 001 @ 02441942 n 0000 | of Canada and northeastern United States -02442572 05 n 02 Old_World_least_weasel 0 Mustela_nivalis 0 001 @ 02441942 n 0000 | of Europe -02442668 05 n 03 longtail_weasel 0 long-tailed_weasel 0 Mustela_frenata 0 001 @ 02441942 n 0000 | the common American weasel distinguished by large size and black-tipped tail -02442845 05 n 01 mink 0 003 @ 02441326 n 0000 #m 02441723 n 0000 ~ 02443015 n 0000 | slender-bodied semiaquatic mammal having partially webbed feet; valued for its fur -02443015 05 n 02 American_mink 0 Mustela_vison 0 001 @ 02442845 n 0000 | usually rich dark brown -02443114 05 n 05 polecat 1 fitch 0 foulmart 0 foumart 0 Mustela_putorius 0 003 @ 02441326 n 0000 #m 02441723 n 0000 ~ 02443346 n 0000 | dark brown mustelid of woodlands of Eurasia that gives off an unpleasant odor when threatened -02443346 05 n 01 ferret 1 001 @ 02443114 n 0000 | domesticated albino variety of the European polecat bred for hunting rats and rabbits -02443484 05 n 03 black-footed_ferret 0 ferret 2 Mustela_nigripes 0 003 @ 02441326 n 0000 #m 02441723 n 0000 + 01144550 v 0201 | musteline mammal of prairie regions of United States; nearly extinct -02443683 05 n 02 Poecilogale 0 genus_Poecilogale 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02443808 n 0000 | muishonds -02443808 05 n 01 muishond 0 005 @ 02441942 n 0000 #m 02443683 n 0000 ~ 02443959 n 0000 ~ 02444251 n 0000 ~ 02444384 n 0000 | southern African weasel -02443959 05 n 02 snake_muishond 0 Poecilogale_albinucha 0 001 @ 02443808 n 0000 | small slender burrowing muishond with white top of the head -02444103 05 n 02 Ictonyx 0 genus_Ictonyx 0 004 @ 01864707 n 0000 #m 02440705 n 0000 %m 02444251 n 0000 %m 02444384 n 0000 | a genus of Mustelidae -02444251 05 n 02 striped_muishond 0 Ictonyx_striata 0 002 @ 02443808 n 0000 #m 02444103 n 0000 | ferret-sized muishond often tamed -02444384 05 n 02 zoril 0 Ictonyx_frenata 0 002 @ 02443808 n 0000 #m 02444103 n 0000 | muishond of northern Africa -02444500 05 n 02 Lutrinae 0 subfamily_Lutrinae 0 002 @ 01862557 n 0000 #m 02440705 n 0000 | subdivision not used in some classifications: otters -02444647 05 n 02 Lutra 0 genus_Lutra 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02444819 n 0000 | in some classifications considered a genus of the subfamily Lutrinae -02444819 05 n 01 otter 0 004 @ 02441326 n 0000 #m 02444647 n 0000 ~ 02445004 n 0000 ~ 02445171 n 0000 | freshwater carnivorous mammal having webbed and clawed feet and dark brown fur -02445004 05 n 02 river_otter 0 Lutra_canadensis 0 001 @ 02444819 n 0000 | sociable aquatic animal widely distributed along streams and lake borders in North America -02445171 05 n 02 Eurasian_otter 0 Lutra_lutra 0 001 @ 02444819 n 0000 | otter found in Europe and Asia -02445276 05 n 02 Enhydra 0 genus_Enhydra 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02445394 n 0000 | sea otters -02445394 05 n 02 sea_otter 0 Enhydra_lutris 0 002 @ 02441326 n 0000 #m 02445276 n 0000 | large marine otter of northern Pacific coasts having very thick dark brown fur -02445564 05 n 02 Mephitinae 0 subfamily_Mephitinae 0 002 @ 01862557 n 0000 #m 02440705 n 0000 | subdivision not used in some classifications: skunks -02445715 05 n 03 skunk 0 polecat 2 wood_pussy 0 005 @ 02441326 n 0000 ~ 02446206 n 0000 ~ 02446352 n 0000 ~ 02446645 n 0000 ~ 02447021 n 0000 | American musteline mammal typically ejecting an intensely malodorous fluid when startled; in some classifications put in a separate subfamily Mephitinae -02446014 05 n 02 Mephitis 0 genus_Mephitis 0 004 @ 01864707 n 0000 #m 02440705 n 0000 %m 02446206 n 0000 %m 02446352 n 0000 | in some classifications: type genus of the subfamily Mephitinae -02446206 05 n 02 striped_skunk 0 Mephitis_mephitis 0 002 @ 02445715 n 0000 #m 02446014 n 0000 | most common and widespread North American skunk -02446352 05 n 02 hooded_skunk 0 Mephitis_macroura 0 002 @ 02445715 n 0000 #m 02446014 n 0000 | of Mexico and southernmost parts of southwestern United States -02446512 05 n 02 Conepatus 0 genus_Conepatus 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02446645 n 0000 | a genus of Mustelidae -02446645 05 n 05 hog-nosed_skunk 0 hognosed_skunk 0 badger_skunk 0 rooter_skunk 0 Conepatus_leuconotus 0 002 @ 02445715 n 0000 #m 02446512 n 0000 | large naked-muzzled skunk with white back and tail; of southwestern North America and Mexico -02446888 05 n 02 Spilogale 0 genus_Spilogale 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02447021 n 0000 | a genus of Mustelidae -02447021 05 n 03 spotted_skunk 0 little_spotted_skunk 0 Spilogale_putorius 0 002 @ 02445715 n 0000 #m 02446888 n 0000 | small skunk with a marbled black and white coat; of United States and Mexico -02447220 05 n 02 Melinae 0 subfamily_Melinae 0 002 @ 01862557 n 0000 #m 02440705 n 0000 | subdivision not used in some classifications: badgers -02447366 05 n 01 badger 0 005 @ 02441326 n 0000 ~ 02447762 n 0000 ~ 02448060 n 0000 ~ 02448633 n 0000 ~ 02448885 n 0000 | sturdy carnivorous burrowing mammal with strong claws; widely distributed in the northern hemisphere -02447591 05 n 02 Taxidea 0 genus_Taxidea 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02447762 n 0000 | in some classifications considered a genus of subfamily Melinae -02447762 05 n 02 American_badger 0 Taxidea_taxus 0 002 @ 02447366 n 0000 #m 02447591 n 0000 | a variety of badger native to America -02447896 05 n 02 Meles 0 genus_Meles 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02448060 n 0000 | in some classifications: type genus of the subfamily Melinae -02448060 05 n 02 Eurasian_badger 0 Meles_meles 0 002 @ 02447366 n 0000 #m 02447896 n 0000 | a variety of badger native to Europe and Asia -02448200 05 n 02 Mellivora 0 genus_Mellivora 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02448318 n 0000 | ratels -02448318 05 n 03 ratel 0 honey_badger 0 Mellivora_capensis 0 002 @ 02441326 n 0000 #m 02448200 n 0000 | nocturnal badger-like carnivore of wooded regions of Africa and southern Asia -02448502 05 n 02 Melogale 0 genus_Melogale 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02448633 n 0000 | a genus of Mustelidae -02448633 05 n 01 ferret_badger 0 002 @ 02447366 n 0000 #m 02448502 n 0000 | small ferret-like badger of southeast Asia -02448754 05 n 02 Arctonyx 0 genus_Arctonyx 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02448885 n 0000 | a genus of Mustelidae -02448885 05 n 04 hog_badger 0 hog-nosed_badger 0 sand_badger 0 Arctonyx_collaris 0 002 @ 02447366 n 0000 #m 02448754 n 0000 | southeast Asian badger with a snout like a pig -02449060 05 n 02 Gulo 0 genus_Gulo 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02449183 n 0000 | a genus of Mustelidae -02449183 05 n 04 wolverine 1 carcajou 0 skunk_bear 0 Gulo_luscus 0 002 @ 02441326 n 0000 #m 02449060 n 0000 | stocky shaggy-coated North American carnivorous mammal -02449350 05 n 03 glutton 0 Gulo_gulo 0 wolverine 2 001 @ 02441326 n 0000 | musteline mammal of northern Eurasia -02449464 05 n 01 genus_Grison 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02449699 n 0000 | a genus of Mustelidae -02449582 05 n 01 genus_Galictis 0 002 @ 01864707 n 0000 #m 02440705 n 0000 | alternative name for the genus Grison -02449699 05 n 03 grison 0 Grison_vittatus 0 Galictis_vittatus 0 002 @ 02441326 n 0000 #m 02449464 n 0000 | carnivore of Central America and South America resembling a weasel with a greyish-white back and dark underparts -02449921 05 n 02 Martes 0 genus_Martes 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02450034 n 0000 | martens -02450034 05 n 02 marten 0 marten_cat 0 008 @ 02441326 n 0000 #m 02449921 n 0000 ~ 02450295 n 0000 ~ 02450426 n 0000 ~ 02450561 n 0000 ~ 02450677 n 0000 ~ 02450829 n 0000 ~ 02451125 n 0000 | agile slender-bodied arboreal mustelids somewhat larger than weasels -02450295 05 n 02 pine_marten 0 Martes_martes 0 001 @ 02450034 n 0000 | dark brown marten of northern Eurasian coniferous forests -02450426 05 n 02 sable 0 Martes_zibellina 0 001 @ 02450034 n 0000 | marten of northern Asian forests having luxuriant dark brown fur -02450561 05 n 03 American_marten 0 American_sable 0 Martes_americana 0 001 @ 02450034 n 0000 | valued for its fur -02450677 05 n 03 stone_marten 0 beech_marten 0 Martes_foina 0 001 @ 02450034 n 0000 | Eurasian marten having a brown coat with pale breast and throat -02450829 05 n 05 fisher 0 pekan 0 fisher_cat 0 black_cat 0 Martes_pennanti 0 001 @ 02450034 n 0000 | large dark brown North American arboreal carnivorous mammal -02450992 05 n 02 Charronia 0 genus_Charronia 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02451125 n 0000 | a genus of Mustelidae -02451125 05 n 02 yellow-throated_marten 0 Charronia_flavigula 0 002 @ 02450034 n 0000 #m 02450992 n 0000 | large yellow and black marten of southern China and Burma -02451292 05 n 02 Eira 0 genus_Eira 0 003 @ 01864707 n 0000 #m 02440705 n 0000 %m 02451415 n 0000 | a genus of Mustelidae -02451415 05 n 03 tayra 0 taira 0 Eira_barbara 0 002 @ 02441326 n 0000 #m 02451292 n 0000 | long-tailed arboreal mustelid of Central America and South America -02451575 05 n 01 fictional_animal 0 007 @ 00015388 n 0000 ~i 02451818 n 0000 ~i 02451912 n 0000 ~i 02452014 n 0000 ~i 02452138 n 0000 ~i 02452225 n 0000 ~i 02452347 n 0000 | animals that exist only in fiction (usually in children's stories) -02451818 05 n 01 Easter_bunny 0 001 @i 02451575 n 0000 | a rabbit that delivers Easter eggs -02451912 05 n 01 church_mouse 0 001 @i 02451575 n 0000 | a fictional mouse created by Lewis Carroll -02452014 05 n 01 Mickey_Mouse 0 001 @i 02451575 n 0000 | a fictional mouse created in animated film strips by Walt Disney -02452138 05 n 01 Minnie_Mouse 0 001 @i 02451575 n 0000 | the partner of Mickey Mouse -02452225 05 n 01 Donald_Duck 0 001 @i 02451575 n 0000 | a fictional duck created in animated film strips by Walt Disney -02452347 05 n 01 Mighty_Mouse 0 001 @i 02451575 n 0000 | a fictional mouse endowed with great strength and courage -02452464 05 n 01 muzzle 0 003 @ 05601198 n 0000 #p 05538625 n 0000 %p 02452637 n 0000 | forward projecting part of the head of certain animals; includes the jaws and nose -02452637 05 n 02 snout 0 neb 2 003 @ 05598147 n 0000 #p 02452464 n 0000 ~ 02452967 n 0000 | a long projecting or anterior elongation of an animal's head; especially the nose -02452813 05 n 02 snout 2 rostrum 0 001 @ 05598147 n 0000 | beaklike projection of the anterior part of the head of certain insects such as e.g. weevils -02452967 05 n 02 proboscis 0 trunk 1 003 @ 02452637 n 0000 #p 02503517 n 0000 #p 02504770 n 0000 | a long flexible snout as of an elephant -02453108 05 n 01 pachyderm 0 007 @ 01886756 n 0000 + 02772186 a 0103 + 02772186 a 0104 + 02772186 a 0101 + 02772186 a 0102 ~ 02503517 n 0000 %p 02665413 n 0000 | any of various nonruminant hoofed mammals having very thick skin: elephant; rhinoceros; hippopotamus -02453373 05 n 02 Edentata 0 order_Edentata 0 005 @ 01342529 n 0000 #m 01886220 n 0000 %m 02453611 n 0000 %m 02453890 n 0000 %m 02459001 n 0000 | order of mammals having few or no teeth including: New World anteaters; sloths; armadillos -02453611 05 n 01 edentate 0 008 @ 01886756 n 0000 #m 02453373 n 0000 ~ 02454379 n 0000 ~ 02456962 n 0000 ~ 02458517 n 0000 ~ 02459190 n 0000 ~ 02459485 n 0000 ~ 02460009 n 0000 | primitive terrestrial mammal with few if any teeth; of tropical Central America and South America -02453890 05 n 02 Xenarthra 0 suborder_Xenarthra 0 007 @ 01342529 n 0000 #m 02453373 n 0000 %m 02454119 n 0000 %m 02456776 n 0000 %m 02457586 n 0000 %m 02458356 n 0000 %m 02459808 n 0000 | armadillos; American anteaters; sloths -02454119 05 n 02 Dasypodidae 0 family_Dasypodidae 0 010 @ 01862557 n 0000 #m 02453890 n 0000 %m 02454379 n 0000 %m 02454657 n 0000 %m 02454999 n 0000 %m 02455310 n 0000 %m 02455584 n 0000 %m 02455887 n 0000 %m 02456147 n 0000 %m 02456505 n 0000 | armadillos -02454379 05 n 01 armadillo 0 009 @ 02453611 n 0000 #m 02454119 n 0000 ~ 02454794 n 0000 ~ 02455135 n 0000 ~ 02455428 n 0000 ~ 02455720 n 0000 ~ 02456008 n 0000 ~ 02456275 n 0000 ~ 02456645 n 0000 | burrowing chiefly nocturnal mammal with body covered with strong horny plates -02454657 05 n 02 Dasypus 0 genus_Dasypus 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02454794 n 0000 | type genus of the Dasypodidae -02454794 05 n 04 peba 0 nine-banded_armadillo 0 Texas_armadillo 0 Dasypus_novemcinctus 0 002 @ 02454379 n 0000 #m 02454657 n 0000 | having nine hinged bands of bony plates; ranges from Texas to Paraguay -02454999 05 n 02 Tolypeutes 0 genus_Tolypeutes 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02455135 n 0000 | a genus of Dasypodidae -02455135 05 n 03 apar 0 three-banded_armadillo 0 Tolypeutes_tricinctus 0 002 @ 02454379 n 0000 #m 02454999 n 0000 | South American armadillo with three bands of bony plates -02455310 05 n 01 genus_Cabassous 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02455428 n 0000 | solely the tatouay -02455428 05 n 03 tatouay 0 cabassous 0 Cabassous_unicinctus 0 002 @ 02454379 n 0000 #m 02455310 n 0000 | naked-tailed armadillo of tropical South America -02455584 05 n 02 Euphractus 0 genus_Euphractus 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02455720 n 0000 | a genus of Dasypodidae -02455720 05 n 03 peludo 0 poyou 0 Euphractus_sexcinctus 0 002 @ 02454379 n 0000 #m 02455584 n 0000 | Argentine armadillo with six movable bands and hairy underparts -02455887 05 n 02 Priodontes 0 genus_Priodontes 0 002 @ 01864707 n 0000 #m 02454119 n 0000 | solely the giant armadillo -02456008 05 n 04 giant_armadillo 0 tatou 0 tatu 0 Priodontes_giganteus 0 001 @ 02454379 n 0000 | about three feet long exclusive of tail -02456147 05 n 02 Chlamyphorus 0 genus_Chlamyphorus 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02456275 n 0000 | pichiciago -02456275 05 n 05 pichiciago 0 pichiciego 0 fairy_armadillo 0 chlamyphore 0 Chlamyphorus_truncatus 0 002 @ 02454379 n 0000 #m 02456147 n 0000 | very small Argentine armadillo with pale silky hair and pink plates on head and neck -02456505 05 n 02 Burmeisteria 0 genus_Burmeisteria 0 003 @ 01864707 n 0000 #m 02454119 n 0000 %m 02456645 n 0000 | a genus of Dasypodidae -02456645 05 n 02 greater_pichiciego 0 Burmeisteria_retusa 0 002 @ 02454379 n 0000 #m 02456505 n 0000 | of southern South America -02456776 05 n 02 Bradypodidae 0 family_Bradypodidae 0 004 @ 01862557 n 0000 #m 02453890 n 0000 %m 02456962 n 0000 %m 02457249 n 0000 | a family of edentates comprising the true sloths -02456962 05 n 02 sloth 0 tree_sloth 0 005 @ 02453611 n 0000 #m 02456776 n 0000 ~ 02457408 n 0000 ~ 02457945 n 0000 ~ 02458135 n 0000 | any of several slow-moving arboreal mammals of South America and Central America; they hang from branches back downward and feed on leaves and fruits -02457249 05 n 02 Bradypus 0 genus_Bradypus 0 003 @ 01864707 n 0000 #m 02456776 n 0000 %m 02457408 n 0000 | type genus of the Bradypodidae: three-toed sloths -02457408 05 n 03 three-toed_sloth 0 ai 0 Bradypus_tridactylus 0 002 @ 02456962 n 0000 #m 02457249 n 0000 | a sloth that has three long claws on each forefoot and each hindfoot -02457586 05 n 02 Megalonychidae 0 family_Megalonychidae 0 003 @ 01862557 n 0000 #m 02453890 n 0000 %m 02457756 n 0000 | mammal family consisting of the two-toed sloths -02457756 05 n 02 Choloepus 0 genus_Choloepus 0 004 @ 01864707 n 0000 #m 02457586 n 0000 %m 02457945 n 0000 %m 02458135 n 0000 | a genus of Megalonychidae consisting of the two-toed sloth -02457945 05 n 04 two-toed_sloth 1 unau 1 unai 1 Choloepus_didactylus 0 002 @ 02456962 n 0000 #m 02457756 n 0000 | relatively small fast-moving sloth with two long claws on each front foot -02458135 05 n 04 two-toed_sloth 2 unau 2 unai 2 Choloepus_hoffmanni 0 002 @ 02456962 n 0000 #m 02457756 n 0000 | a sloth of Central America that has two long claws on each forefoot and three long claws on each hindfoot -02458356 05 n 02 Megatheriidae 0 family_Megatheriidae 0 004 @ 01862557 n 0000 #m 02453890 n 0000 %m 02458517 n 0000 %m 02458675 n 0000 | extinct ground sloths -02458517 05 n 03 megatherian 0 megatheriid 0 megatherian_mammal 0 003 @ 02453611 n 0000 #m 02458356 n 0000 ~ 02458822 n 0000 | a large extinct ground sloth -02458675 05 n 02 Megatherium 0 genus_Megatherium 0 003 @ 01864707 n 0000 #m 02458356 n 0000 %m 02458822 n 0000 | type genus of the Megatheriidae -02458822 05 n 02 ground_sloth 0 megathere 0 002 @ 02458517 n 0000 #m 02458675 n 0000 | gigantic extinct terrestrial sloth-like mammal of the Pliocene and Pleistocene in America -02459001 05 n 02 Mylodontidae 0 family_Mylodontidae 0 005 @ 01862557 n 0000 #m 02453373 n 0000 %m 02459190 n 0000 %m 02459313 n 0000 %m 02459636 n 0000 | extinct South American edentates -02459190 05 n 01 mylodontid 0 003 @ 02453611 n 0000 #m 02459001 n 0000 ~ 02459636 n 0000 | a variety of extinct edentate -02459313 05 n 01 genus_Mylodon 0 003 @ 01864707 n 0000 #m 02459001 n 0000 %m 02459485 n 0000 | type genus of the Mylodontidae; sometimes included in family Megatheriidae -02459485 05 n 01 mylodon 0 002 @ 02453611 n 0000 #m 02459313 n 0000 | large (bear-sized) extinct edentate mammal of the Pleistocene in South America -02459636 05 n 01 mapinguari 0 002 @ 02459190 n 0000 #m 02459001 n 0000 | supposed human-sized sloth-like creature reportedly sighted by Indians in the Amazon rain forest -02459808 05 n 02 Myrmecophagidae 0 family_Myrmecophagidae 0 006 @ 01862557 n 0000 #m 02453890 n 0000 %m 02460009 n 0000 %m 02460275 n 0000 %m 02460684 n 0000 %m 02461014 n 0000 | New World anteaters -02460009 05 n 02 anteater 0 New_World_anteater 0 005 @ 02453611 n 0000 #m 02459808 n 0000 ~ 02460451 n 0000 ~ 02460817 n 0000 ~ 02461128 n 0000 | any of several tropical American mammals of the family Myrmecophagidae which lack teeth and feed on ants and termites -02460275 05 n 02 Myrmecophaga 0 genus_Myrmecophaga 0 003 @ 01864707 n 0000 #m 02459808 n 0000 %m 02460451 n 0000 | type genus of the Myrmecophagidae; South American ant bear -02460451 05 n 05 ant_bear 2 giant_anteater 0 great_anteater 0 tamanoir 0 Myrmecophaga_jubata 0 002 @ 02460009 n 0000 #m 02460275 n 0000 | large shaggy-haired toothless anteater with long tongue and powerful claws; of South America -02460684 05 n 02 Cyclopes 0 genus_Cyclopes 0 003 @ 01864707 n 0000 #m 02459808 n 0000 %m 02460817 n 0000 | only the silky anteater -02460817 05 n 03 silky_anteater 0 two-toed_anteater 0 Cyclopes_didactylus 0 002 @ 02460009 n 0000 #m 02460684 n 0000 | squirrel-sized South American toothless anteater with long silky golden fur -02461014 05 n 01 genus_Tamandua 0 003 @ 01864707 n 0000 #m 02459808 n 0000 %m 02461128 n 0000 | lesser anteater -02461128 05 n 04 tamandua 0 tamandu 0 lesser_anteater 0 Tamandua_tetradactyla 0 002 @ 02460009 n 0000 #m 02461014 n 0000 | small toothless anteater with prehensile tail and four-clawed forelimbs; of tropical South America and Central America -02461372 05 n 02 Pholidota 0 order_Pholidota 0 003 @ 01342529 n 0000 #m 01886220 n 0000 %m 02461556 n 0000 | pangolins; in some former classifications included in the order Edentata -02461556 05 n 02 Manidae 0 family_Manidae 0 003 @ 01862557 n 0000 #m 02461372 n 0000 %m 02461701 n 0000 | coextensive with the order Pholidota -02461701 05 n 02 Manis 0 genus_Manis 0 003 @ 01864707 n 0000 #m 02461556 n 0000 %m 02461830 n 0000 | type genus of the Manidae -02461830 05 n 03 pangolin 0 scaly_anteater 0 anteater 4 002 @ 01886756 n 0000 #m 02461701 n 0000 | toothless mammal of southern Africa and Asia having a body covered with horny scales and a long snout for feeding on ants and termites -02462066 05 n 02 pastern 0 fetter_bone 0 003 @ 05269901 n 0000 #p 02159117 n 0000 %p 02462213 n 0000 | the part between the fetlock and the hoof -02462213 05 n 01 coronet 0 002 @ 05267548 n 0000 #p 02462066 n 0000 | margin between the skin of the pastern and the horn of the hoof -02462349 05 n 01 fetlock 0 002 @ 05470189 n 0000 #p 02159117 n 0000 | projection behind and above a horse's hoof -02462464 05 n 02 fetlock 1 fetlock_joint 0 002 @ 05595083 n 0000 #p 02159117 n 0000 | the joint between the cannon bone and the pastern -02462602 05 n 01 withers 0 005 @ 05220461 n 0000 #p 02374451 n 0000 #p 02403003 n 0000 #p 02430045 n 0000 #p 02411705 n 0000 | the highest part of the back at the base of the neck of various animals especially draft animals -02462828 05 n 02 cannon 0 shank 0 004 @ 05220461 n 0000 #p 02464327 n 0000 #p 02370806 n 0000 %p 02463024 n 0000 | lower part of the leg extending from the hock to the fetlock in hoofed mammals -02463024 05 n 01 cannon_bone 0 002 @ 05269901 n 0000 #p 02462828 n 0000 | greatly developed metatarsal or metacarpal bone in the shank or cannon part of the leg in hoofed mammals -02463205 05 n 02 hock 0 hock-joint 0 004 @ 05595083 n 0000 #p 02464626 n 0000 #p 02370806 n 0000 + 02347220 v 0103 | tarsal joint of the hind leg of hoofed mammals; corresponds to the human ankle -02463403 05 n 02 loin 0 lumbus 0 004 @ 05220461 n 0000 #p 02156871 n 0000 #p 02472293 n 0000 + 03014770 a 0201 | either side of the backbone between the hipbone and the ribs in humans as well as quadrupeds -02463611 05 n 04 hindquarters 0 croup 0 croupe 0 rump 0 004 @ 05220461 n 0000 #p 01503061 n 0000 #p 02156871 n 0000 ~ 02463810 n 0000 | the part of an animal that corresponds to the human buttocks -02463810 05 n 01 haunch 0 002 @ 02463611 n 0000 #p 02156871 n 0000 | the loin and leg of a quadruped -02463913 05 n 01 gaskin 0 003 @ 05220461 n 0000 #p 02464626 n 0000 #p 02374451 n 0000 | lower part of a horse's thigh between the hock and the stifle -02464065 05 n 02 stifle 0 knee 1 002 @ 05595083 n 0000 #p 02464626 n 0000 | joint between the femur and tibia in a quadruped; corresponds to the human knee -02464223 05 n 01 flank 0 002 @ 05220461 n 0000 #p 02156871 n 0000 | the side between ribs and hipbone -02464327 05 n 01 animal_leg 0 004 @ 05561507 n 0000 #p 02156871 n 0000 #p 02157285 n 0000 %p 02462828 n 0000 | the leg of an animal -02464461 05 n 02 hind_limb 0 hindlimb 0 002 @ 05560244 n 0000 ~ 02464626 n 0000 | a posterior appendage such as a leg or the homologous structure in other animals -02464626 05 n 01 hind_leg 0 005 @ 02464461 n 0000 #p 02156871 n 0000 %p 02463205 n 0000 %p 02463913 n 0000 %p 02464065 n 0000 | the back limb of a quadruped -02464785 05 n 01 forelimb 0 003 @ 05560244 n 0000 %p 02440121 n 0000 ~ 02464965 n 0000 | the front limb (or the homologous structure in other animals, such as a flipper or wing) -02464965 05 n 01 foreleg 0 003 @ 02464785 n 0000 #p 02156871 n 0000 %p 02468368 n 0000 | the forelimb of a quadruped -02465084 05 n 01 flipper 0 004 @ 05560244 n 0000 #p 01473806 n 0000 #p 02062017 n 0000 + 01241614 v 0101 | the flat broad limb of aquatic animals specialized for swimming -02465257 05 n 01 parapodium 0 001 @ 05559908 n 0000 | one of a pair of fleshy appendages of a polychete annelid that functions in locomotion and breathing -02465414 05 n 01 sucker 2 003 @ 05297523 n 0000 + 01186428 v 0103 ~ 02465585 n 0000 | an organ specialized for sucking nourishment or for adhering to objects by suction -02465585 05 n 01 cupule 0 002 @ 02465414 n 0000 + 00536655 a 0101 | a sucker on the feet of certain flies -02465693 05 n 01 stinger 0 005 @ 05297523 n 0000 + 02120451 v 0102 + 02123424 v 0102 + 01445407 v 0101 ~ 01901091 n 0000 | a sharp organ of offense or defense (as of a wasp or stingray or scorpion) often connected with a poison gland -02465929 05 n 02 lateral_line 0 lateral_line_organ 0 003 @ 05299178 n 0000 #p 02512053 n 0000 #p 01627424 n 0000 | sense organs of fish and amphibians; believed to detect pressure changes in the water -02466132 05 n 01 fin 0 009 @ 05559908 n 0000 #p 02512053 n 0000 + 01961510 v 0101 + 01961691 v 0101 %p 01900719 n 0000 ~ 02466400 n 0000 ~ 02466564 n 0000 ~ 02466731 n 0000 ~ 02466957 n 0000 | organ of locomotion and balance in fishes and some other aquatic animals -02466400 05 n 01 dorsal_fin 0 001 @ 02466132 n 0000 | unpaired median fin on the backs of fishes and some other aquatic vertebrates that help to maintain balance -02466564 05 n 01 pectoral_fin 0 001 @ 02466132 n 0000 | either of a pair of fins situated just behind the head in fishes that help control the direction of movement -02466731 05 n 02 pelvic_fin 0 ventral_fin 0 001 @ 02466132 n 0000 | either of a pair of fins attached to the pelvic girdle in fishes that help control the direction of movement; correspond to hind limbs of a land vertebrate -02466957 05 n 02 tail_fin 0 caudal_fin 0 004 @ 02466132 n 0000 #p 02512053 n 0000 ~ 02467133 n 0000 ~ 02467320 n 0000 | the tail of fishes and some other aquatic vertebrates -02467133 05 n 01 heterocercal_fin 0 002 @ 02466957 n 0000 ! 02467320 n 0101 | a tail fin with unequal lobes in which the vertebral column turns upward into the larger lobe as in sharks -02467320 05 n 01 homocercal_fin 0 002 @ 02466957 n 0000 ! 02467133 n 0101 | symmetrical tail fin extending beyond the end of the vertebral column as in most bony fishes -02467491 05 n 01 fishbone 0 002 @ 05269901 n 0000 #p 02512053 n 0000 | a bone of a fish -02467581 05 n 03 air_bladder 0 swim_bladder 0 float 0 001 @ 05515670 n 0000 | an air-filled sac near the spinal column in many fishes that helps maintain buoyancy -02467746 05 n 01 air_sac 1 002 @ 05515670 n 0000 #p 01503061 n 0000 | any of the membranous air-filled extensions of the lungs of birds -02467884 05 n 01 air_sac 2 002 @ 05515670 n 0000 #p 02159955 n 0000 | any of the thin-walled extensions of the tracheae of insects -02468017 05 n 02 uropygial_gland 0 preen_gland 0 002 @ 05328115 n 0000 #p 01503061 n 0000 | oil-secreting gland situated at the base of the tail in most birds -02468178 05 n 03 silk_gland 0 serictery 0 sericterium 0 003 @ 05327767 n 0000 #p 02300797 n 0000 #p 02302620 n 0000 | silk-producing gland of insects (especially of a silkworm) or spiders -02468368 05 n 01 elbow 1 002 @ 05595083 n 0000 #p 02464965 n 0000 | the joint of a mammal or bird that corresponds to the human elbow -02468504 05 n 01 chestnut 1 001 @ 14363785 n 0000 | a small horny callus on the inner surface of a horse's leg -02468617 05 n 03 quill 2 calamus 1 shaft 0 002 @ 05235879 n 0000 #p 01896031 n 0000 | the hollow spine of a feather -02468735 05 n 02 vein 0 nervure 2 001 @ 05235879 n 0000 | one of the horny ribs that stiffen and support the wing of an insect -02468864 05 n 04 flight_feather 0 pinion 2 quill 3 quill_feather 0 005 @ 01896031 n 0000 #p 02151625 n 0000 + 00512749 v 0201 ~ 02469080 n 0000 ~ 02469344 n 0000 | any of the larger wing or tail feathers of a bird -02469080 05 n 03 primary 0 primary_feather 0 primary_quill 0 001 @ 02468864 n 0000 | one of the main flight feathers projecting along the outer edge of a bird's wing -02469248 05 n 01 scapular 0 001 @ 01896031 n 0000 | a feather covering the shoulder of a bird -02469344 05 n 01 tail_feather 0 002 @ 02468864 n 0000 ~ 01897426 n 0000 | feather growing from the tail (uropygium) of a bird -02469472 05 n 03 tadpole 0 polliwog 0 pollywog 0 002 @ 02311060 n 0000 #m 01625747 n 0000 | a larval frog or toad -02469588 05 n 02 Primates 0 order_Primates 0 010 @ 01342529 n 0000 #m 01886220 n 0000 %m 02469914 n 0000 %m 02470451 n 0000 %m 02495789 n 0000 %m 02496210 n 0000 %m 02496576 n 0000 %m 02497214 n 0000 %m 02500749 n 0000 %m 02501101 n 0000 | an animal order including lemurs and tarsiers and monkeys and apes and human beings -02469914 05 n 01 primate 0 011 @ 01886756 n 0000 #m 02469588 n 0000 ~ 02470238 n 0000 ~ 02470325 n 0000 ~ 02470709 n 0000 ~ 02471300 n 0000 ~ 02471762 n 0000 ~ 02484322 n 0000 ~ 02496052 n 0000 ~ 02496913 n 0000 ~ 02501583 n 0000 | any placental mammal of the order Primates; has good eyesight and flexible hands and feet -02470238 05 n 01 simian 0 002 @ 02469914 n 0000 + 02992241 a 0101 | an ape or monkey -02470325 05 n 01 ape 0 002 @ 02469914 n 0000 ~ 02470899 n 0000 | any of various primates with short tails or no tail at all -02470451 05 n 02 Anthropoidea 0 suborder_Anthropoidea 0 009 @ 01342529 n 0000 #m 02469588 n 0000 %m 02470899 n 0000 %m 02471072 n 0000 %m 02471467 n 0000 %m 02479896 n 0000 %m 02482820 n 0000 %m 02483915 n 0000 %m 02489288 n 0000 | monkeys; apes; hominids -02470709 05 n 01 anthropoid 0 004 @ 02469914 n 0000 + 01260282 a 0101 + 01259015 a 0101 + 01260282 a 0102 | any member of the suborder Anthropoidea including monkeys and apes and hominids -02470899 05 n 01 anthropoid_ape 0 004 @ 02470325 n 0000 #m 02470451 n 0000 ~ 02480153 n 0000 ~ 02483092 n 0000 | any tailless ape of the families Pongidae and Hylobatidae -02471072 05 n 02 Hominoidea 0 superfamily_Hominoidea 0 007 @ 08103777 n 0000 #m 02470451 n 0000 %m 02471300 n 0000 %m 02478662 n 0000 %m 02478990 n 0000 %m 02479205 n 0000 %m 02479482 n 0000 | anthropoid apes and human beings -02471300 05 n 01 hominoid 0 005 @ 02469914 n 0000 #m 02471072 n 0000 ~ 02478875 n 0000 ~ 02479332 n 0000 ~ 02479634 n 0000 | a primate of the superfamily Hominoidea -02471467 05 n 02 Hominidae 0 family_Hominidae 0 010 @ 01862557 n 0000 #m 02470451 n 0000 %m 02471762 n 0000 %m 02472012 n 0000 %m 02475821 n 0000 %m 02476074 n 0000 %m 02477647 n 0000 %m 02477890 n 0000 %m 02478416 n 0000 %m 02478539 n 0000 | modern man and extinct immediate ancestors of man -02471762 05 n 01 hominid 0 010 @ 02469914 n 0000 #m 02471467 n 0000 + 01259746 a 0102 ~ 02472293 n 0000 ~ 02473554 n 0000 ~ 02473983 n 0000 ~ 02474282 n 0000 ~ 02476219 n 0000 ~ 02477782 n 0000 ~ 02478077 n 0000 | a primate of the family Hominidae -02472012 05 n 01 genus_Homo 0 011 @ 01864707 n 0000 #m 02471467 n 0000 %m 02472293 n 0000 %m 02473307 n 0000 %m 02474110 n 0000 %m 02474605 n 0000 %m 02474777 n 0000 %m 02475078 n 0000 %m 02475358 n 0000 %m 02475478 n 0000 %m 02475669 n 0000 | type genus of the family Hominidae -02472293 05 n 04 homo 0 man 1 human_being 0 human 0 027 @ 02471762 n 0000 #m 02472012 n 0000 + 02743261 a 0401 + 01258617 a 0401 -c 01490855 a 0000 %p 02463403 n 0000 ~ 02472987 n 0000 ~ 02473307 n 0000 ~ 02474110 n 0000 ~ 02474605 n 0000 ~ 02474777 n 0000 ~ 02475078 n 0000 -c 05216365 n 0000 %p 05217168 n 0000 %p 05255578 n 0000 %p 05256085 n 0000 %p 05539138 n 0000 -c 05551318 n 0000 %p 05563266 n 0000 %p 05563770 n 0000 %p 05564590 n 0000 %p 05600637 n 0000 -c 06135915 n 0000 ~ 10528148 n 0000 -c 14224547 n 0000 -c 14471724 n 0000 -c 14471926 n 0000 | any living or extinct member of the family Hominidae characterized by superior intelligence, articulate speech, and erect carriage -02472987 05 n 08 world 0 human_race 0 humanity 0 humankind 0 human_beings 0 humans 0 mankind 0 man 0 003 @ 02472293 n 0000 @ 00031264 n 0000 %m 07942152 n 0000 | all of the living human inhabitants of the earth; "all the world loves a lover"; "she always used `humankind' because `mankind' seemed to slight the women" -02473307 05 n 01 Homo_erectus 0 004 @ 02472293 n 0000 #m 02472012 n 0000 ~ 02473720 n 0000 ~ 02473857 n 0000 | extinct species of primitive hominid with upright stature but small brain; "Homo erectus was formerly called Pithecanthropus erectus" -02473554 05 n 03 Pithecanthropus 0 Pithecanthropus_erectus 0 genus_Pithecanthropus 0 001 @ 02471762 n 0000 | former genus of primitive apelike men now Homo erectus -02473720 05 n 02 Java_man 0 Trinil_man 0 001 @ 02473307 n 0000 | fossil remains found in Java; formerly called Pithecanthropus erectus -02473857 05 n 01 Peking_man 0 001 @ 02473307 n 0000 | fossils found near Beijing, China; they were lost during World War II -02473983 05 n 02 Sinanthropus 0 genus_Sinanthropus 0 001 @ 02471762 n 0000 | genus to which Peking man was formerly assigned -02474110 05 n 01 Homo_soloensis 0 003 @ 02472293 n 0000 #m 02472012 n 0000 ~ 02474431 n 0000 | extinct primitive hominid of late Pleistocene; Java; formerly Javanthropus -02474282 05 n 02 Javanthropus 0 genus_Javanthropus 0 001 @ 02471762 n 0000 | former genus of primitive man; now Homo soloensis: comprises Solo man -02474431 05 n 01 Solo_man 0 001 @ 02474110 n 0000 | early man of late Pleistocene; skull resembles that of Neanderthal man but with smaller cranial capacity; found in Java -02474605 05 n 01 Homo_habilis 0 002 @ 02472293 n 0000 #m 02472012 n 0000 | extinct species of upright East African hominid having some advanced humanlike characteristics -02474777 05 n 01 Homo_sapiens 0 005 @ 02472293 n 0000 #m 02472012 n 0000 ~ 02475358 n 0000 ~ 02475478 n 0000 ~ 02475669 n 0000 | the only surviving hominid; species to which modern man belongs; bipedal primate having language and ability to make and use complex tools; brain volume at least 1400 cc -02475078 05 n 05 Neandertal_man 0 Neanderthal_man 0 Neandertal 0 Neanderthal 0 Homo_sapiens_neanderthalensis 0 005 @ 02472293 n 0000 #m 02472012 n 0000 + 03089121 a 0401 + 03089121 a 0402 + 03089121 a 0303 | extinct robust human of Middle Paleolithic in Europe and western Asia -02475358 05 n 01 Cro-magnon 0 002 @ 02474777 n 0000 #m 02472012 n 0000 | extinct human of Upper Paleolithic in Europe -02475478 05 n 01 Boskop_man 0 002 @ 02474777 n 0000 #m 02472012 n 0000 | possible early Homo sapiens represented by a cranium found in the Transvaal; formerly considered a separate species -02475669 05 n 02 Homo_sapiens_sapiens 0 modern_man 0 002 @ 02474777 n 0000 #m 02472012 n 0000 | subspecies of Homo sapiens; includes all modern races -02475821 05 n 02 genus_Australopithecus 0 Australopithecus 0 008 @ 01864707 n 0000 #m 02471467 n 0000 %m 02476219 n 0000 %m 02476567 n 0000 %m 02476736 n 0000 %m 02476870 n 0000 %m 02477028 n 0000 %m 02477329 n 0000 | extinct genus of African hominid -02476074 05 n 02 Plesianthropus 0 genus_Plesianthropus 0 002 @ 01864707 n 0000 #m 02471467 n 0000 | former name for the genus Australopithecus -02476219 05 n 01 australopithecine 0 009 @ 02471762 n 0000 #m 02475821 n 0000 + 02650537 a 0101 ~ 02476567 n 0000 ~ 02476870 n 0000 ~ 02477028 n 0000 ~ 02477187 n 0000 ~ 02477329 n 0000 ~ 02477516 n 0000 | any of several extinct humanlike bipedal primates with relatively small brains of the genus Australopithecus; from 1 to 4 million years ago -02476567 05 n 01 Australopithecus_afarensis 0 003 @ 02476219 n 0000 #m 02475821 n 0000 ~i 02476736 n 0000 | fossils found in Ethiopia; from 3.5 to 4 million years ago -02476736 05 n 01 Lucy 0 002 @i 02476567 n 0000 #m 02475821 n 0000 | incomplete skeleton of female found in eastern Ethiopia in 1974 -02476870 05 n 01 Australopithecus_africanus 0 002 @ 02476219 n 0000 #m 02475821 n 0000 | gracile hominid of southern Africa; from about 3 million years ago -02477028 05 n 01 Australopithecus_boisei 0 002 @ 02476219 n 0000 #m 02475821 n 0000 | large-toothed hominid of eastern Africa; from 1 to 2 million years ago -02477187 05 n 02 Zinjanthropus 0 genus_Zinjanthropus 0 001 @ 02476219 n 0000 | genus to which Australopithecus boisei was formerly assigned -02477329 05 n 01 Australopithecus_robustus 0 002 @ 02476219 n 0000 #m 02475821 n 0000 | large-toothed hominid of southern Africa; from 1.5 to 2 million years ago; formerly Paranthropus -02477516 05 n 02 Paranthropus 0 genus_Paranthropus 0 001 @ 02476219 n 0000 | former classification for Australopithecus robustus -02477647 05 n 01 genus_Sivapithecus 0 003 @ 01864707 n 0000 #m 02471467 n 0000 %m 02477782 n 0000 | extinct primates; lower Pliocene -02477782 05 n 01 Sivapithecus 0 002 @ 02471762 n 0000 #m 02477647 n 0000 | fossil primates found in India -02477890 05 n 02 Dryopithecus 0 genus_Dryopithecus 0 004 @ 01864707 n 0000 #m 02471467 n 0000 %m 02478077 n 0000 %m 02478239 n 0000 | genus of Old World hominoids; Miocene and Pliocene -02478077 05 n 01 dryopithecine 0 003 @ 02471762 n 0000 #m 02477890 n 0000 ~ 02478239 n 0000 | considered a possible ancestor to both anthropoid apes and humans -02478239 05 n 02 rudapithecus 0 Dryopithecus_Rudapithecus_hungaricus 0 002 @ 02478077 n 0000 #m 02477890 n 0000 | fossil hominoids from northern central Hungary; late Miocene -02478416 05 n 02 Ouranopithecus 0 genus_Ouranopithecus 0 002 @ 01864707 n 0000 #m 02471467 n 0000 | a genus of Hominidae -02478539 05 n 02 Lufengpithecus 0 genus_Lufengpithecus 0 002 @ 01864707 n 0000 #m 02471467 n 0000 | a genus of Hominidae -02478662 05 n 01 genus_Proconsul 0 003 @ 01864707 n 0000 #m 02471072 n 0000 %m 02478875 n 0000 | genus of extinct primitive African primates of the Miocene epoch; sometimes considered a subgenus of Dryopithecus -02478875 05 n 01 proconsul 0 002 @ 02471300 n 0000 #m 02478662 n 0000 | an anthropoid ape of the genus Proconsul -02478990 05 n 02 Kenyapithecus 0 genus_Kenyapithecus 0 002 @ 01864707 n 0000 #m 02471072 n 0000 | extinct primate having powerful chewing muscles along with large molars and small incisors; fossils found in Kenya -02479205 05 n 01 genus_Aegyptopithecus 0 003 @ 01864707 n 0000 #m 02471072 n 0000 %m 02479332 n 0000 | a genus of Hominoidea -02479332 05 n 01 Aegyptopithecus 0 002 @ 02471300 n 0000 #m 02479205 n 0000 | extinct primate of about 38 million years ago; fossils found in Egypt -02479482 05 n 02 Algeripithecus 0 genus_Algeripithecus 0 003 @ 01864707 n 0000 #m 02471072 n 0000 %m 02479634 n 0000 | an extinct genus of Hominoidea -02479634 05 n 01 Algeripithecus_minutus 0 002 @ 02471300 n 0000 #m 02479482 n 0000 | tiny (150 to 300 grams) extinct primate of 46 to 50 million years ago; fossils found in Algeria; considered by some authorities the leading candidate for the first anthropoid -02479896 05 n 02 Pongidae 0 family_Pongidae 0 006 @ 01862557 n 0000 #m 02470451 n 0000 %m 02480153 n 0000 %m 02480346 n 0000 %m 02480673 n 0000 %m 02481629 n 0000 | usually considered as comprising orangutans; gorillas; chimpanzees; and sometimes gibbons -02480153 05 n 02 great_ape 0 pongid 0 005 @ 02470899 n 0000 #m 02479896 n 0000 ~ 02480495 n 0000 ~ 02480855 n 0000 ~ 02481823 n 0000 | any of the large anthropoid apes of the family Pongidae -02480346 05 n 02 Pongo 0 genus_Pongo 0 003 @ 01864707 n 0000 #m 02479896 n 0000 %m 02480495 n 0000 | type genus of the family Pongidae: orangutans -02480495 05 n 04 orangutan 0 orang 0 orangutang 0 Pongo_pygmaeus 0 002 @ 02480153 n 0000 #m 02480346 n 0000 | large long-armed ape of Borneo and Sumatra having arboreal habits -02480673 05 n 01 genus_Gorilla 0 007 @ 01864707 n 0000 #m 02479896 n 0000 %m 02480855 n 0000 %m 02481103 n 0000 %m 02481235 n 0000 %m 02481366 n 0000 %m 02481500 n 0000 | gorillas -02480855 05 n 02 gorilla 0 Gorilla_gorilla 0 006 @ 02480153 n 0000 #m 02480673 n 0000 ~ 02481103 n 0000 ~ 02481235 n 0000 ~ 02481366 n 0000 ~ 02481500 n 0000 | largest anthropoid ape; terrestrial and vegetarian; of forests of central west Africa -02481103 05 n 02 western_lowland_gorilla 0 Gorilla_gorilla_gorilla 0 002 @ 02480855 n 0000 #m 02480673 n 0000 | a kind of gorilla -02481235 05 n 02 eastern_lowland_gorilla 0 Gorilla_gorilla_grauri 0 002 @ 02480855 n 0000 #m 02480673 n 0000 | a kind of gorilla -02481366 05 n 02 mountain_gorilla 0 Gorilla_gorilla_beringei 0 002 @ 02480855 n 0000 #m 02480673 n 0000 | gorilla of Kivu highlands -02481500 05 n 01 silverback 0 002 @ 02480855 n 0000 #m 02480673 n 0000 | an adult male gorilla with grey hairs across the back -02481629 05 n 02 Pan 0 genus_Pan 0 004 @ 01864707 n 0000 #m 02479896 n 0000 %m 02481823 n 0000 %m 02482650 n 0000 | chimpanzees; more closely related to Australopithecus than to other pongids -02481823 05 n 03 chimpanzee 0 chimp 0 Pan_troglodytes 0 006 @ 02480153 n 0000 #m 02481629 n 0000 ~ 02482060 n 0000 ~ 02482286 n 0000 ~ 02482474 n 0000 ~ 02482650 n 0000 | intelligent somewhat arboreal ape of equatorial African forests -02482060 05 n 02 western_chimpanzee 0 Pan_troglodytes_verus 0 001 @ 02481823 n 0000 | masked or pale-faced chimpanzees of western Africa; distantly related to the eastern and central chimpanzees; possibly a distinct species -02482286 05 n 02 eastern_chimpanzee 0 Pan_troglodytes_schweinfurthii 0 001 @ 02481823 n 0000 | long-haired chimpanzees of east-central Africa; closely related to the central chimpanzees -02482474 05 n 02 central_chimpanzee 0 Pan_troglodytes_troglodytes 0 001 @ 02481823 n 0000 | black-faced chimpanzees of central Africa; closely related to eastern chimpanzees -02482650 05 n 03 pygmy_chimpanzee 0 bonobo 0 Pan_paniscus 0 002 @ 02481823 n 0000 #m 02481629 n 0000 | small chimpanzee of swamp forests in Zaire; a threatened species -02482820 05 n 02 Hylobatidae 0 family_Hylobatidae 0 005 @ 01862557 n 0000 #m 02470451 n 0000 %m 02483092 n 0000 %m 02483224 n 0000 %m 02483564 n 0000 | used in some classifications for the lesser apes (gibbons and siamangs); sometimes considered a subfamily of Pongidae -02483092 05 n 01 lesser_ape 0 004 @ 02470899 n 0000 #m 02482820 n 0000 ~ 02483362 n 0000 ~ 02483708 n 0000 | gibbons and siamangs -02483224 05 n 02 Hylobates 0 genus_Hylobates 0 004 @ 01864707 n 0000 #m 02482820 n 0000 %m 02483362 n 0000 %m 02483708 n 0000 | gibbons -02483362 05 n 02 gibbon 0 Hylobates_lar 0 002 @ 02483092 n 0000 #m 02483224 n 0000 | smallest and most perfectly anthropoid arboreal ape having long arms and no tail; of southern Asia and East Indies -02483564 05 n 02 Symphalangus 0 genus_Symphalangus 0 002 @ 01864707 n 0000 #m 02482820 n 0000 | used in some classifications for the siamangs -02483708 05 n 03 siamang 0 Hylobates_syndactylus 0 Symphalangus_syndactylus 0 002 @ 02483092 n 0000 #m 02483224 n 0000 | large black gibbon of Sumatra having the 2nd and 3rd toes partially united by a web -02483915 05 n 02 Cercopithecidae 0 family_Cercopithecidae 0 012 @ 01862557 n 0000 #m 02470451 n 0000 %m 02484473 n 0000 %m 02484813 n 0000 %m 02485865 n 0000 %m 02486138 n 0000 %m 02486565 n 0000 %m 02486787 n 0000 %m 02487217 n 0000 %m 02488149 n 0000 %m 02488578 n 0000 %m 02489060 n 0000 | Old World monkeys: guenon; baboon; colobus monkey; langur; macaque; mandrill; mangabey; patas; proboscis monkey -02484322 05 n 01 monkey 0 003 @ 02469914 n 0000 ~ 02484473 n 0000 ~ 02489589 n 0000 | any of various long-tailed primates (excluding the prosimians) -02484473 05 n 02 Old_World_monkey 0 catarrhine 0 011 @ 02484322 n 0000 #m 02483915 n 0000 + 01408738 a 0202 ~ 02484975 n 0000 ~ 02485988 n 0000 ~ 02486261 n 0000 ~ 02486410 n 0000 ~ 02487347 n 0000 ~ 02488291 n 0000 ~ 02488702 n 0000 ~ 02489166 n 0000 | of Africa or Arabia or Asia; having nonprehensile tails and nostrils close together -02484813 05 n 02 Cercopithecus 0 genus_Cercopithecus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02484975 n 0000 | type genus of the Cercopithecidae: guenons -02484975 05 n 02 guenon 0 guenon_monkey 0 006 @ 02484473 n 0000 #m 02484813 n 0000 ~ 02485225 n 0000 ~ 02485371 n 0000 ~ 02485536 n 0000 ~ 02485688 n 0000 | small slender African monkey having long hind limbs and tail and long hair around the face -02485225 05 n 02 talapoin 0 Cercopithecus_talapoin 0 001 @ 02484975 n 0000 | smallest guenon monkey; of swampy central and west African forests -02485371 05 n 02 grivet 0 Cercopithecus_aethiops 0 001 @ 02484975 n 0000 | white and olive green East African monkey with long white tufts of hair beside the face -02485536 05 n 03 vervet 0 vervet_monkey 0 Cercopithecus_aethiops_pygerythrus 0 001 @ 02484975 n 0000 | South African monkey with black face and hands -02485688 05 n 03 green_monkey 0 African_green_monkey 0 Cercopithecus_aethiops_sabaeus 0 001 @ 02484975 n 0000 | common savannah monkey with greenish-grey back and yellow tail -02485865 05 n 02 Cercocebus 0 genus_Cercocebus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02485988 n 0000 | mangabeys -02485988 05 n 01 mangabey 0 002 @ 02484473 n 0000 #m 02485865 n 0000 | large agile arboreal monkey with long limbs and tail and white upper eyelids -02486138 05 n 02 Erythrocebus 0 genus_Erythrocebus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02486261 n 0000 | patas -02486261 05 n 03 patas 0 hussar_monkey 0 Erythrocebus_patas 0 002 @ 02484473 n 0000 #m 02486138 n 0000 | reddish long-tailed monkey of west Africa -02486410 05 n 01 baboon 0 004 @ 02484473 n 0000 ~ 02486657 n 0000 ~ 02486908 n 0000 ~ 02487079 n 0000 | large terrestrial monkeys having doglike muzzles -02486565 05 n 02 Papio 0 genus_Papio 0 002 @ 01864707 n 0000 #m 02483915 n 0000 | baboons -02486657 05 n 03 chacma 0 chacma_baboon 0 Papio_ursinus 0 001 @ 02486410 n 0000 | greyish baboon of southern and eastern Africa -02486787 05 n 02 Mandrillus 0 genus_Mandrillus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02486908 n 0000 | baboons -02486908 05 n 02 mandrill 0 Mandrillus_sphinx 0 002 @ 02486410 n 0000 #m 02486787 n 0000 | baboon of west Africa with a bright red and blue muzzle and blue hindquarters -02487079 05 n 02 drill 0 Mandrillus_leucophaeus 0 001 @ 02486410 n 0000 | similar to the mandrill but smaller and less brightly colored -02487217 05 n 02 Macaca 0 genus_Macaca 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02487347 n 0000 | macaques; rhesus monkeys -02487347 05 n 01 macaque 0 006 @ 02484473 n 0000 #m 02487217 n 0000 ~ 02487547 n 0000 ~ 02487675 n 0000 ~ 02487847 n 0000 ~ 02488003 n 0000 | short-tailed monkey of rocky regions of Asia and Africa -02487547 05 n 03 rhesus 0 rhesus_monkey 0 Macaca_mulatta 0 001 @ 02487347 n 0000 | of southern Asia; used in medical research -02487675 05 n 05 bonnet_macaque 0 bonnet_monkey 0 capped_macaque 0 crown_monkey 0 Macaca_radiata 0 001 @ 02487347 n 0000 | Indian macaque with a bonnet-like tuft of hair -02487847 05 n 02 Barbary_ape 0 Macaca_sylvana 0 001 @ 02487347 n 0000 | tailless macaque of rocky cliffs and forests of northwestern Africa and Gibraltar -02488003 05 n 03 crab-eating_macaque 0 croo_monkey 0 Macaca_irus 0 001 @ 02487347 n 0000 | monkey of southeast Asia, Borneo and the Philippines -02488149 05 n 03 Presbytes 0 genus_Presbytes 0 mammal_Semnopithecus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02488291 n 0000 | langurs -02488291 05 n 01 langur 0 003 @ 02484473 n 0000 #m 02488149 n 0000 ~ 02488415 n 0000 | slender long-tailed monkey of Asia -02488415 05 n 04 entellus 0 hanuman 0 Presbytes_entellus 0 Semnopithecus_entellus 0 001 @ 02488291 n 0000 | langur of southern Asia; regarded as sacred in India -02488578 05 n 01 genus_Colobus 0 003 @ 01864707 n 0000 #m 02483915 n 0000 %m 02488702 n 0000 | a genus of Cercopithecidae -02488702 05 n 02 colobus 0 colobus_monkey 0 003 @ 02484473 n 0000 #m 02488578 n 0000 ~ 02488894 n 0000 | arboreal monkey of western and central Africa with long silky fur and reduced thumbs -02488894 05 n 02 guereza 0 Colobus_guereza 0 001 @ 02488702 n 0000 | a colobus monkey with a reddish brown coat and white silky fringes down both sides of the body -02489060 05 n 02 Nasalis 0 genus_Nasalis 0 002 @ 01864707 n 0000 #m 02483915 n 0000 | proboscis monkeys -02489166 05 n 02 proboscis_monkey 0 Nasalis_larvatus 0 001 @ 02484473 n 0000 | Borneo monkey having a long bulbous nose -02489288 05 n 02 Platyrrhini 0 superfamily_Platyrrhini 0 005 @ 01862557 n 0000 #m 02470451 n 0000 %m 02489589 n 0000 %m 02490030 n 0000 %m 02491590 n 0000 | New World monkeys: capuchin; douroucouli; howler monkey; saki; spider monkey; squirrel monkey; titi; uakari; woolly monkey; marmoset; tamarin -02489589 05 n 03 New_World_monkey 0 platyrrhine 0 platyrrhinian 0 015 @ 02484322 n 0000 #m 02489288 n 0000 + 01408929 a 0202 + 01408929 a 0204 + 01408929 a 0205 ~ 02490219 n 0000 ~ 02492035 n 0000 ~ 02492356 n 0000 ~ 02492660 n 0000 ~ 02492948 n 0000 ~ 02493224 n 0000 ~ 02493509 n 0000 ~ 02493793 n 0000 ~ 02494079 n 0000 ~ 02494383 n 0000 | hairy-faced arboreal monkeys having widely separated nostrils and long usually prehensile tails -02490030 05 n 02 Callithricidae 0 family_Callithricidae 0 006 @ 01862557 n 0000 #m 02489288 n 0000 %m 02490219 n 0000 %m 02490435 n 0000 %m 02490686 n 0000 %m 02490964 n 0000 | marmosets -02490219 05 n 01 marmoset 0 005 @ 02489589 n 0000 #m 02490030 n 0000 ~ 02490597 n 0000 ~ 02490811 n 0000 ~ 02491107 n 0000 | small soft-furred South American and Central American monkey with claws instead of nails -02490435 05 n 02 Callithrix 0 genus_Callithrix 0 003 @ 01864707 n 0000 #m 02490030 n 0000 %m 02490597 n 0000 | type genus of the Callithricidae: true marmosets -02490597 05 n 01 true_marmoset 0 002 @ 02490219 n 0000 #m 02490435 n 0000 | a marmoset -02490686 05 n 02 Cebuella 0 genus_Cebuella 0 003 @ 01864707 n 0000 #m 02490030 n 0000 %m 02490811 n 0000 | pygmy marmosets -02490811 05 n 02 pygmy_marmoset 0 Cebuella_pygmaea 0 002 @ 02490219 n 0000 #m 02490686 n 0000 | the smallest monkey; of tropical forests of the Amazon -02490964 05 n 03 Leontocebus 0 genus_Leontocebus 0 genus_Leontideus 0 003 @ 01864707 n 0000 #m 02490030 n 0000 %m 02491107 n 0000 | tamarins -02491107 05 n 04 tamarin 0 lion_monkey 0 lion_marmoset 0 leoncita 0 004 @ 02490219 n 0000 #m 02490964 n 0000 ~ 02491329 n 0000 ~ 02491474 n 0000 | small South American marmoset with silky fur and long nonprehensile tail -02491329 05 n 02 silky_tamarin 0 Leontocebus_rosalia 0 001 @ 02491107 n 0000 | golden South American monkey with long soft hair forming a mane -02491474 05 n 02 pinche 0 Leontocebus_oedipus 0 001 @ 02491107 n 0000 | South American tamarin with a tufted head -02491590 05 n 02 Cebidae 0 family_Cebidae 0 011 @ 01862557 n 0000 #m 02489288 n 0000 %m 02491906 n 0000 %m 02492240 n 0000 %m 02492536 n 0000 %m 02492833 n 0000 %m 02493109 n 0000 %m 02493390 n 0000 %m 02493673 n 0000 %m 02493974 n 0000 %m 02494257 n 0000 | all the New World monkeys except marmosets and tamarins -02491906 05 n 02 Cebus 0 genus_Cebus 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02492035 n 0000 | type genus of the Cebidae -02492035 05 n 03 capuchin 0 ringtail 4 Cebus_capucinus 0 002 @ 02489589 n 0000 #m 02491906 n 0000 | monkey of Central America and South America having thick hair on the head that resembles a monk's cowl -02492240 05 n 02 Aotus 0 genus_Aotus 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02492356 n 0000 | douroucoulis -02492356 05 n 02 douroucouli 0 Aotus_trivirgatus 0 002 @ 02489589 n 0000 #m 02492240 n 0000 | nocturnal monkey of Central America and South America with large eyes and thick fur -02492536 05 n 02 Alouatta 0 genus_Alouatta 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02492660 n 0000 | howler monkeys -02492660 05 n 02 howler_monkey 0 howler 0 003 @ 02489589 n 0000 #m 02492536 n 0000 + 01047381 v 0201 | monkey of tropical South American forests having a loud howling cry -02492833 05 n 02 Pithecia 0 genus_Pithecia 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02492948 n 0000 | sakis -02492948 05 n 01 saki 0 002 @ 02489589 n 0000 #m 02492833 n 0000 | small arboreal monkey of tropical South America with long hair and bushy nonprehensile tail -02493109 05 n 02 Cacajao 0 genus_Cacajao 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02493224 n 0000 | uakaris -02493224 05 n 01 uakari 0 002 @ 02489589 n 0000 #m 02493109 n 0000 | medium-sized tree-dwelling monkey of the Amazon basin; only New World monkey with a short tail -02493390 05 n 02 Callicebus 0 genus_Callicebus 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02493509 n 0000 | titis -02493509 05 n 02 titi 0 titi_monkey 0 002 @ 02489589 n 0000 #m 02493390 n 0000 | small South American monkeys with long beautiful fur and long nonprehensile tail -02493673 05 n 02 Ateles 0 genus_Ateles 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02493793 n 0000 | spider monkeys -02493793 05 n 02 spider_monkey 0 Ateles_geoffroyi 0 002 @ 02489589 n 0000 #m 02493673 n 0000 | arboreal monkey of tropical America with long slender legs and long prehensile tail -02493974 05 n 02 Saimiri 0 genus_Saimiri 0 002 @ 01864707 n 0000 #m 02491590 n 0000 | squirrel monkeys -02494079 05 n 02 squirrel_monkey 0 Saimiri_sciureus 0 001 @ 02489589 n 0000 | small long-tailed monkey of Central American and South America with greenish fur and black muzzle -02494257 05 n 02 Lagothrix 0 genus_Lagothrix 0 003 @ 01864707 n 0000 #m 02491590 n 0000 %m 02494383 n 0000 | woolly monkeys -02494383 05 n 01 woolly_monkey 0 002 @ 02489589 n 0000 #m 02494257 n 0000 | large monkeys with dark skin and woolly fur of the Amazon and Orinoco basins -02494538 05 n 02 Scandentia 0 order_Scandentia 0 003 @ 01342529 n 0000 #m 01886220 n 0000 %m 02494866 n 0000 | a small order comprising only the tree shrews: in some classifications tree shrews are considered either primates (and included in the suborder Prosimii) or true insectivores (and included in the order Insectivora) -02494866 05 n 02 Tupaiidae 0 family_Tupaiidae 0 005 @ 01862557 n 0000 #m 02494538 n 0000 %m 02495099 n 0000 %m 02495242 n 0000 %m 02495446 n 0000 | tree shrews; in some classifications tree shrews are considered prosimian primates -02495099 05 n 02 Tupaia 0 genus_Tupaia 0 002 @ 01864707 n 0000 #m 02494866 n 0000 | the type genus of the Tupaia: chief genus of tree shrews -02495242 05 n 01 tree_shrew 0 003 @ 01886756 n 0000 #m 02494866 n 0000 ~ 02495570 n 0000 | insectivorous arboreal mammal of southeast Asia that resembles a squirrel with large eyes and long sharp snout -02495446 05 n 02 Ptilocercus 0 genus_Ptilocercus 0 003 @ 01864707 n 0000 #m 02494866 n 0000 %m 02495570 n 0000 | pentails -02495570 05 n 03 pentail 0 pen-tail 0 pen-tailed_tree_shrew 0 002 @ 02495242 n 0000 #m 02495446 n 0000 | brown tree shrew having a naked tail bilaterally fringed with long stiff hairs on the distal third; of Malaysia -02495789 05 n 02 Prosimii 0 suborder_Prosimii 0 003 @ 01342529 n 0000 #m 02469588 n 0000 %m 02496052 n 0000 | not used in all classifications; in some classifications considered coextensive with the Lemuroidea; in others includes both Lemuroidea and Tarsioidea -02496052 05 n 01 prosimian 0 002 @ 02469914 n 0000 #m 02495789 n 0000 | primitive primates having large ears and eyes and characterized by nocturnal habits -02496210 05 n 02 Adapid 0 Adapid_group 0 002 @ 07992450 n 0000 #m 02469588 n 0000 | extinct small mostly diurnal lower primates that fed on leaves and fruit; abundant in North America and Europe 30 to 50 million years ago; their descendents probably include the lemurs; some authorities consider them ancestral to anthropoids but others consider them only cousins -02496576 05 n 02 Lemuroidea 0 suborder_Lemuroidea 0 007 @ 01342529 n 0000 #m 02469588 n 0000 %m 02496913 n 0000 %m 02497408 n 0000 ~ 02497832 n 0000 %m 02498355 n 0000 %m 02499990 n 0000 | Lemuridae; Lorisidae; Daubentoniidae; Indriidae; used in some classifications instead of Prosimii; in others considered a subdivision of Prosimii -02496913 05 n 01 lemur 0 011 @ 02469914 n 0000 #m 02496576 n 0000 ~ 02497673 n 0000 ~ 02498153 n 0000 ~ 02498743 n 0000 ~ 02499022 n 0000 ~ 02499316 n 0000 ~ 02499568 n 0000 ~ 02499808 n 0000 ~ 02500267 n 0000 ~ 02500596 n 0000 | large-eyed arboreal prosimian having foxy faces and long furry tails -02497214 05 n 02 Strepsirhini 0 suborder_Strepsirhini 0 002 @ 01342529 n 0000 #m 02469588 n 0000 | in some classifications either coextensive with the Lemuroidea or comprising the true lemurs -02497408 05 n 02 Lemuridae 0 family_Lemuridae 0 003 @ 01862557 n 0000 #m 02496576 n 0000 %m 02497550 n 0000 | typical lemurs; of Madagascar -02497550 05 n 01 genus_Lemur 0 003 @ 01864707 n 0000 #m 02497408 n 0000 %m 02497673 n 0000 | type genus of the Lemuridae -02497673 05 n 03 Madagascar_cat 0 ring-tailed_lemur 0 Lemur_catta 0 002 @ 02496913 n 0000 #m 02497550 n 0000 | small lemur having its tail barred with black -02497832 05 n 02 Daubentoniidae 0 family_Daubentoniidae 0 003 @ 01862557 n 0000 @ 02496576 n 0000 %m 02497983 n 0000 | comprising solely the aye-aye -02497983 05 n 02 Daubentonia 0 genus_Daubentonia 0 003 @ 01864707 n 0000 #m 02497832 n 0000 %m 02498153 n 0000 | type genus; coextensive with the family Daubentoniidae -02498153 05 n 02 aye-aye 0 Daubentonia_madagascariensis 0 002 @ 02496913 n 0000 #m 02497983 n 0000 | nocturnal lemur with long bony fingers and rodent-like incisor teeth closely related to the lemurs -02498355 05 n 02 Lorisidae 0 family_Lorisidae 0 007 @ 01862557 n 0000 #m 02496576 n 0000 %m 02498620 n 0000 %m 02498888 n 0000 %m 02499178 n 0000 %m 02499434 n 0000 %m 02499700 n 0000 | slow-moving omnivorous nocturnal primates of tropical Asia; usually tailless -02498620 05 n 01 genus_Loris 0 003 @ 01864707 n 0000 #m 02498355 n 0000 %m 02498743 n 0000 | type genus of the Lorisidae -02498743 05 n 02 slender_loris 0 Loris_gracilis 0 002 @ 02496913 n 0000 #m 02498620 n 0000 | slim-bodied lemur of southern India and Sri Lanka -02498888 05 n 02 Nycticebus 0 genus_Nycticebus 0 003 @ 01864707 n 0000 #m 02498355 n 0000 %m 02499022 n 0000 | a genus of Lorisidae -02499022 05 n 03 slow_loris 0 Nycticebus_tardigradua 0 Nycticebus_pygmaeus 0 002 @ 02496913 n 0000 #m 02498888 n 0000 | stocky lemur of southeastern Asia -02499178 05 n 02 Perodicticus 0 genus_Perodicticus 0 003 @ 01864707 n 0000 #m 02498355 n 0000 %m 02499316 n 0000 | a genus of Lorisidae -02499316 05 n 03 potto 1 kinkajou 1 Perodicticus_potto 0 002 @ 02496913 n 0000 #m 02499178 n 0000 | a kind of lemur -02499434 05 n 02 Arctocebus 0 genus_Arctocebus 0 003 @ 01864707 n 0000 #m 02498355 n 0000 %m 02499568 n 0000 | a genus of Lorisidae -02499568 05 n 03 angwantibo 0 golden_potto 0 Arctocebus_calabarensis 0 002 @ 02496913 n 0000 #m 02499434 n 0000 | a kind of lemur -02499700 05 n 01 genus_Galago 0 003 @ 01864707 n 0000 #m 02498355 n 0000 %m 02499808 n 0000 | bush babies -02499808 05 n 03 galago 0 bushbaby 0 bush_baby 0 002 @ 02496913 n 0000 #m 02499700 n 0000 | agile long-tailed nocturnal African lemur with dense woolly fur and large eyes and ears -02499990 05 n 02 Indriidae 0 family_Indriidae 0 004 @ 01862557 n 0000 #m 02496576 n 0000 %m 02500144 n 0000 %m 02500472 n 0000 | a family of Lemuroidea -02500144 05 n 01 genus_Indri 0 003 @ 01864707 n 0000 #m 02499990 n 0000 %m 02500267 n 0000 | type genus of the Indriidae -02500267 05 n 04 indri 1 indris 0 Indri_indri 0 Indri_brevicaudatus 0 002 @ 02496913 n 0000 #m 02500144 n 0000 | large short-tailed lemur of Madagascar having thick silky fur in black and white and fawn -02500472 05 n 02 Avahi 0 genus_Avahi 0 003 @ 01864707 n 0000 #m 02499990 n 0000 %m 02500596 n 0000 | a genus of Indriidae -02500596 05 n 02 woolly_indris 0 Avahi_laniger 0 002 @ 02496913 n 0000 #m 02500472 n 0000 | nocturnal indris with thick grey-brown fur and a long tail -02500749 05 n 02 Omomyid 0 Omomyid_group 0 002 @ 07992450 n 0000 #m 02469588 n 0000 | extinct tiny nocturnal lower primates that fed on fruit and insects; abundant in North America and Europe 30 to 50 million years ago; probably gave rise to the tarsiers; some authorities consider them ancestral to anthropoids but others consider them only cousins -02501101 05 n 02 Tarsioidea 0 suborder_Tarsioidea 0 003 @ 01342529 n 0000 #m 02469588 n 0000 %m 02501275 n 0000 | in some classifications assigned to the suborder Prosimii -02501275 05 n 02 Tarsiidae 0 family_Tarsiidae 0 003 @ 01862557 n 0000 #m 02501101 n 0000 %m 02501432 n 0000 | coextensive with the genus Tarsius: tarsiers -02501432 05 n 02 Tarsius 0 genus_Tarsius 0 003 @ 01864707 n 0000 #m 02501275 n 0000 %m 02501583 n 0000 | type and sole genus of the family Tarsiidae -02501583 05 n 01 tarsier 0 004 @ 02469914 n 0000 #m 02501432 n 0000 ~ 02501923 n 0000 ~ 02502006 n 0000 | nocturnal arboreal primate of Indonesia and the Philippines having huge eyes and digits ending in pads to facilitate climbing; the only primate that spurns all plant material as food living entirely on insects and small vertebrates -02501923 05 n 01 Tarsius_syrichta 0 001 @ 02501583 n 0000 | a variety of tarsier -02502006 05 n 01 Tarsius_glis 0 001 @ 02501583 n 0000 | a variety of tarsier -02502085 05 n 02 Dermoptera 0 order_Dermoptera 0 003 @ 01342529 n 0000 #m 01886220 n 0000 %m 02502212 n 0000 | flying lemurs -02502212 05 n 02 Cynocephalidae 0 family_Cynocephalidae 0 003 @ 01862557 n 0000 #m 02502085 n 0000 %m 02502357 n 0000 | a family of Dermoptera -02502357 05 n 02 Cynocephalus 0 genus_Cynocephalus 0 003 @ 01864707 n 0000 #m 02502212 n 0000 %m 02502514 n 0000 | type genus of the family Cynocephalidae -02502514 05 n 03 flying_lemur 0 flying_cat 2 colugo 0 003 @ 01886756 n 0000 #m 02502357 n 0000 ~ 02502807 n 0000 | arboreal nocturnal mammal of southeast Asia and the Philippines resembling a lemur and having a fold of skin on each side from neck to tail that is used for long gliding leaps -02502807 05 n 01 Cynocephalus_variegatus 0 001 @ 02502514 n 0000 | a variety of flying lemur -02502902 05 n 02 Proboscidea 0 order_Proboscidea 0 006 @ 01342529 n 0000 #m 01886220 n 0000 %m 02503127 n 0000 %m 02503313 n 0000 %m 02505646 n 0000 %m 02506466 n 0000 | an order of animals including elephants and mammoths -02503127 05 n 02 proboscidean 0 proboscidian 0 004 @ 01886756 n 0000 #m 02502902 n 0000 ~ 02503517 n 0000 ~ 02505998 n 0000 | massive herbivorous mammals having tusks and a long trunk -02503313 05 n 02 Elephantidae 0 family_Elephantidae 0 007 @ 01862557 n 0000 #m 02502902 n 0000 %m 02503517 n 0000 %m 02503868 n 0000 %m 02504323 n 0000 %m 02504635 n 0000 %m 02505342 n 0000 | elephants -02503517 05 n 01 elephant 0 010 @ 02503127 n 0000 @ 02453108 n 0000 #m 02503313 n 0000 %p 01465713 n 0000 %p 02452967 n 0000 ~ 02503756 n 0000 ~ 02504013 n 0000 ~ 02504458 n 0000 ~ 02504770 n 0000 ~ 02506783 n 0000 | five-toed pachyderm -02503756 05 n 01 rogue_elephant 0 001 @ 02503517 n 0000 | a wild and vicious elephant separated from the herd -02503868 05 n 02 Elephas 0 genus_Elephas 0 003 @ 01864707 n 0000 #m 02503313 n 0000 %m 02504013 n 0000 | type genus of the family Elephantidae -02504013 05 n 02 Indian_elephant 0 Elephas_maximus 0 003 @ 02503517 n 0000 #m 02503868 n 0000 ~ 02504196 n 0000 | Asian elephant having smaller ears and tusks primarily in the male -02504196 05 n 01 white_elephant 0 001 @ 02504013 n 0000 | albinic Indian elephant; rare and sometimes venerated in east Asia -02504323 05 n 02 Loxodonta 0 genus_Loxodonta 0 003 @ 01864707 n 0000 #m 02503313 n 0000 %m 02504458 n 0000 | a genus of Elephantidae -02504458 05 n 02 African_elephant 0 Loxodonta_africana 0 002 @ 02503517 n 0000 #m 02504323 n 0000 | an elephant native to Africa having enormous flapping ears and ivory tusks -02504635 05 n 02 Mammuthus 0 genus_Mammuthus 0 003 @ 01864707 n 0000 #m 02503313 n 0000 %m 02504770 n 0000 | extinct genus: mammoths -02504770 05 n 01 mammoth 0 007 @ 02503517 n 0000 #m 02504635 n 0000 + 01386538 a 0102 %p 02452967 n 0000 ~ 02505063 n 0000 ~ 02505238 n 0000 ~ 02505485 n 0000 | any of numerous extinct elephants widely distributed in the Pleistocene; extremely large with hairy coats and long upcurved tusks -02505063 05 n 03 woolly_mammoth 0 northern_mammoth 0 Mammuthus_primigenius 0 001 @ 02504770 n 0000 | very hairy mammoth common in colder portions of the northern hemisphere -02505238 05 n 02 columbian_mammoth 0 Mammuthus_columbi 0 001 @ 02504770 n 0000 | a variety of mammoth -02505342 05 n 02 Archidiskidon 0 genus_Archidiskidon 0 003 @ 01864707 n 0000 #m 02503313 n 0000 %m 02505485 n 0000 | a genus of Elephantidae -02505485 05 n 03 imperial_mammoth 0 imperial_elephant 0 Archidiskidon_imperator 0 002 @ 02504770 n 0000 #m 02505342 n 0000 | largest known mammoth; of America -02505646 05 n 03 Mammutidae 0 family_Mammutidae 0 family_Mastodontidae 0 003 @ 01862557 n 0000 #m 02502902 n 0000 %m 02505809 n 0000 | extinct family: mastodons -02505809 05 n 03 Mammut 0 genus_Mammut 0 genus_Mastodon 0 004 @ 01864707 n 0000 #m 02505646 n 0000 %m 02505998 n 0000 %m 02506248 n 0000 | extinct type genus of the Mammutidae: mastodons -02505998 05 n 02 mastodon 0 mastodont 0 003 @ 02503127 n 0000 #m 02505809 n 0000 ~ 02506248 n 0000 | extinct elephant-like mammal that flourished worldwide from Miocene through Pleistocene times; differ from mammoths in the form of the molar teeth -02506248 05 n 03 American_mastodon 0 American_mastodont 0 Mammut_americanum 0 002 @ 02505998 n 0000 #m 02505809 n 0000 | mastodon of North America; in some classifications considered a mammoth rather than a mastodon -02506466 05 n 02 Gomphotheriidae 0 family_Gomphotheriidae 0 003 @ 01862557 n 0000 #m 02502902 n 0000 %m 02506630 n 0000 | elephants extinct since the Pleistocene -02506630 05 n 02 Gomphotherium 0 genus_Gomphotherium 0 003 @ 01864707 n 0000 #m 02506466 n 0000 %m 02506783 n 0000 | type genus of the Gomphotheriidae -02506783 05 n 01 gomphothere 0 002 @ 02503517 n 0000 #m 02506630 n 0000 | extinct elephants of Central American and South America; of the Miocene and Pleistocene -02506947 05 n 02 plantigrade_mammal 0 plantigrade 0 002 @ 01886756 n 0000 ! 02507148 n 0101 | an animal that walks with the entire sole of the foot touching the ground as e.g. bears and human beings -02507148 05 n 02 digitigrade_mammal 0 digitigrade 0 002 @ 01886756 n 0000 ! 02506947 n 0101 | an animal that walks so that only the toes touch the ground as e.g. dogs and cats and horses -02507337 05 n 02 Procyonidae 0 family_Procyonidae 0 010 @ 01862557 n 0000 #m 02074915 n 0000 %m 02507649 n 0000 %m 02507863 n 0000 %m 02508458 n 0000 %m 02508615 n 0000 %m 02509071 n 0000 %m 02509405 n 0000 %m 02509694 n 0000 %m 02510240 n 0000 | raccoons; coatis; cacomistles; kinkajous; and sometimes pandas -02507649 05 n 01 procyonid 0 008 @ 02075296 n 0000 #m 02507337 n 0000 ~ 02508021 n 0000 ~ 02508742 n 0000 ~ 02509197 n 0000 ~ 02509515 n 0000 ~ 02509815 n 0000 ~ 02510455 n 0000 | plantigrade carnivorous mammals -02507863 05 n 02 Procyon 0 genus_Procyon 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02508021 n 0000 | the type genus of the family Procyonidae: raccoons -02508021 05 n 02 raccoon 0 racoon 0 004 @ 02507649 n 0000 #m 02507863 n 0000 ~ 02508213 n 0000 ~ 02508346 n 0000 | an omnivorous nocturnal mammal native to North America and Central America -02508213 05 n 05 common_raccoon 0 common_racoon 0 coon 0 ringtail 2 Procyon_lotor 0 001 @ 02508021 n 0000 | North American raccoon -02508346 05 n 02 crab-eating_raccoon 0 Procyon_cancrivorus 0 001 @ 02508021 n 0000 | a South American raccoon -02508458 05 n 02 Bassariscidae 0 subfamily_Bassariscidae 0 002 @ 01862557 n 0000 #m 02507337 n 0000 | in some classifications considered a separate family -02508615 05 n 02 Bassariscus 0 genus_Bassariscus 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02508742 n 0000 | cacomistles -02508742 05 n 0a bassarisk 0 cacomistle 0 cacomixle 0 coon_cat 2 raccoon_fox 0 ringtail 3 ring-tailed_cat 0 civet_cat 2 miner's_cat 0 Bassariscus_astutus 0 002 @ 02507649 n 0000 #m 02508615 n 0000 | raccoon-like omnivorous mammal of Mexico and the southwestern United States having a long bushy tail with black and white rings -02509071 05 n 02 Potos 0 genus_Potos 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02509197 n 0000 | a genus of Procyonidae -02509197 05 n 05 kinkajou 2 honey_bear 0 potto 2 Potos_flavus 0 Potos_caudivolvulus 0 002 @ 02507649 n 0000 #m 02509071 n 0000 | arboreal fruit-eating mammal of tropical America with a long prehensile tail -02509405 05 n 02 Nasua 0 genus_Nasua 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02509515 n 0000 | coatis -02509515 05 n 05 coati 0 coati-mondi 0 coati-mundi 0 coon_cat 1 Nasua_narica 0 002 @ 02507649 n 0000 #m 02509405 n 0000 | omnivorous mammal of Central America and South America -02509694 05 n 02 Ailurus 0 genus_Ailurus 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02509815 n 0000 | lesser pandas -02509815 05 n 06 lesser_panda 0 red_panda 0 panda 2 bear_cat 0 cat_bear 0 Ailurus_fulgens 0 002 @ 02507649 n 0000 #m 02509694 n 0000 | reddish-brown Old World raccoon-like carnivore; in some classifications considered unrelated to the giant pandas -02510065 05 n 02 Ailuropodidae 0 family_Ailuropodidae 0 002 @ 01862557 n 0000 #m 01886220 n 0000 | in some classifications considered the family comprising the giant pandas -02510240 05 n 02 Ailuropoda 0 genus_Ailuropoda 0 003 @ 01864707 n 0000 #m 02507337 n 0000 %m 02510455 n 0000 | only the giant panda: in some classifications considered a genus of the separate family Ailuropodidae -02510455 05 n 05 giant_panda 0 panda 1 panda_bear 0 coon_bear 0 Ailuropoda_melanoleuca 0 002 @ 02507649 n 0000 #m 02510240 n 0000 | large black-and-white herbivorous mammal of bamboo forests of China and Tibet; in some classifications considered a member of the bear family or of a separate family Ailuropodidae -02510769 05 n 02 gill 0 branchia 0 005 @ 05528060 n 0000 + 02670050 a 0201 ~ 01953877 n 0000 ~ 01954004 n 0000 ~ 02510978 n 0000 | respiratory organ of aquatic animals that breathe oxygen dissolved in water -02510978 05 n 01 external_gill 0 001 @ 02510769 n 0000 | occurs in some mollusks and in tadpoles and other immature amphibians -02511107 05 n 03 gill_slit 0 branchial_cleft 0 gill_cleft 0 001 @ 05225602 n 0000 | one of a series of slit openings in the pharynxes of fishes and aquatic amphibians through which water passes -02511303 05 n 03 gill_arch 0 branchial_arch 0 gill_bar 0 001 @ 05225602 n 0000 | one of the bony or cartilaginous arches on each side of the pharynx that support the gills of fishes and aquatic amphibians -02511510 05 n 01 peristome 0 002 @ 05225602 n 0000 #p 01905661 n 0000 | region around the mouth in various invertebrates -02511633 05 n 01 syrinx 0 002 @ 05225602 n 0000 #p 01503061 n 0000 | the vocal organ of a bird -02511730 05 n 01 twitterer 0 002 @ 01503061 n 0000 + 01053623 v 0102 | a bird that twitters -02511824 05 n 01 Pisces 0 003 @ 08221348 n 0000 #m 01471070 n 0000 %m 02512053 n 0000 | a group of vertebrates comprising both cartilaginous and bony fishes and sometimes including the jawless vertebrates; not used technically -02512053 05 n 01 fish 0 026 @ 01473806 n 0000 #m 07995453 n 0000 #m 02511824 n 0000 + 02728929 a 0101 + 01140794 v 0101 + 01319346 v 0101 ~ 01316579 n 0000 ~ 01316838 n 0000 ~ 01480516 n 0000 %p 01903110 n 0000 %p 02322624 n 0000 %p 02322712 n 0000 %p 02465929 n 0000 %p 02466132 n 0000 %p 02466957 n 0000 %p 02467491 n 0000 ~ 02512752 n 0000 ~ 02512830 n 0000 ~ 02512938 n 0000 ~ 02513248 n 0000 ~ 02513560 n 0000 ~ 02513805 n 0000 ~ 02513939 n 0000 ~ 02514320 n 0000 ~ 02514825 n 0000 ~ 02556373 n 0000 | any of various mostly cold-blooded aquatic vertebrates usually having scales and breathing through gills; "the shark is a large fish"; "in the living room there was a tank of colorful fish" -02512752 05 n 01 fingerling 0 001 @ 02512053 n 0000 | a young or small fish -02512830 05 n 02 game_fish 0 sport_fish 0 001 @ 02512053 n 0000 | any fish providing sport for the angler -02512938 05 n 01 food_fish 0 013 @ 02512053 n 0000 ~ 02513355 n 0000 ~ 02514041 n 0000 ~ 02530421 n 0000 ~ 02532028 n 0000 ~ 02532602 n 0000 ~ 02534734 n 0000 ~ 02537085 n 0000 ~ 02538985 n 0000 ~ 02566834 n 0000 ~ 02586543 n 0000 ~ 02626762 n 0000 ~ 02663849 n 0000 | any fish used for food by human beings -02513248 05 n 01 rough_fish 0 001 @ 02512053 n 0000 | any fish useless for food or sport or even as bait -02513355 05 n 02 groundfish 0 bottom_fish 0 001 @ 02512938 n 0000 | fish that live on the sea bottom (particularly the commercially important gadoid fish like cod and haddock, or flatfish like flounder) -02513560 05 n 01 young_fish 0 006 @ 01321579 n 0000 @ 02512053 n 0000 ~ 02513727 n 0000 ~ 02530052 n 0000 ~ 02530188 n 0000 ~ 02535080 n 0000 | a fish that is young -02513727 05 n 01 parr 2 001 @ 02513560 n 0000 | the young of various fishes -02513805 05 n 01 mouthbreeder 0 001 @ 02512053 n 0000 | any of various fishes that carry their eggs and their young in their mouths -02513939 05 n 01 spawner 0 002 @ 02512053 n 0000 + 00056683 v 0101 | a female fish at spawning time -02514041 05 n 02 barracouta 0 snoek 0 001 @ 02512938 n 0000 | a large marine food fish common on the coasts of Australia, New Zealand, and southern Africa -02514198 05 n 02 Channidae 0 class_Channidae 0 003 @ 08103777 n 0000 #m 01471070 n 0000 %m 02514320 n 0000 | snakeheads -02514320 05 n 01 northern_snakehead 0 002 @ 02512053 n 0000 #m 02514198 n 0000 | a voracious freshwater fish that is native to northeastern China; can use fin to walk and can survive out of water for three days; a threat to American populations of fish -02514575 05 n 02 Osteichthyes 0 class_Osteichthyes 0 006 @ 08103777 n 0000 #m 01471070 n 0000 %m 02514825 n 0000 %m 02514988 n 0000 %m 02515914 n 0000 %m 02527813 n 0000 | a class of fish having a skeleton composed of bone in addition to cartilage -02514825 05 n 01 bony_fish 0 005 @ 02512053 n 0000 #m 02514575 n 0000 ~ 02515214 n 0000 ~ 02516188 n 0000 ~ 02528163 n 0000 | any fish of the class Osteichthyes -02514988 05 n 02 Crossopterygii 0 subclass_Crossopterygii 0 004 @ 08103777 n 0000 #m 02514575 n 0000 %m 02515214 n 0000 %m 02515410 n 0000 | fishes having paired fins resembling limbs and regarded as ancestral to amphibians -02515214 05 n 03 crossopterygian 0 lobefin 0 lobe-finned_fish 0 003 @ 02514825 n 0000 #m 02514988 n 0000 ~ 02515713 n 0000 | any fish of the order Crossopterygii; most known only in fossil form -02515410 05 n 02 Latimeridae 0 family_Latimeridae 0 003 @ 01429349 n 0000 #m 02514988 n 0000 %m 02515560 n 0000 | extinct except for the coelacanth -02515560 05 n 02 Latimeria 0 genus_Latimeria 0 003 @ 01432517 n 0000 #m 02515410 n 0000 %m 02515713 n 0000 | type genus of the Latimeridae: coelacanth -02515713 05 n 02 coelacanth 0 Latimeria_chalumnae 0 002 @ 02515214 n 0000 #m 02515560 n 0000 | fish thought to have been extinct since the Cretaceous period but found in 1938 off the coast of Africa -02515914 05 n 02 Dipnoi 0 subclass_Dipnoi 0 004 @ 08103777 n 0000 #m 02514575 n 0000 %m 02516188 n 0000 %m 02516427 n 0000 | bony fishes of the southern hemisphere that breathe by a modified air bladder as well as gills; sometimes classified as an order of Crossopterygii -02516188 05 n 01 lungfish 0 003 @ 02514825 n 0000 #m 02515914 n 0000 ~ 02516776 n 0000 | air-breathing fish having an elongated body and fleshy paired fins; certain species construct mucus-lined mud coverings in which to survive drought -02516427 05 n 02 Ceratodontidae 0 family_Ceratodontidae 0 004 @ 01429349 n 0000 #m 02515914 n 0000 %m 02516615 n 0000 %m 02516867 n 0000 | lungfishes having hornlike ridges on the teeth -02516615 05 n 01 genus_Ceratodus 0 003 @ 01432517 n 0000 #m 02516427 n 0000 %m 02516776 n 0000 | type genus of the Ceratodontidae: extinct genus of lungfishes -02516776 05 n 01 ceratodus 0 002 @ 02516188 n 0000 #m 02516615 n 0000 | extinct lungfish -02516867 05 n 02 Neoceratodus 0 genus_Neoceratodus 0 002 @ 01432517 n 0000 #m 02516427 n 0000 | extant Australian lungfishes -02516994 05 n 03 Australian_lungfish 0 Queensland_lungfish 0 Neoceratodus_forsteri 0 001 @ 08110866 n 0000 | an endangered species of lungfish found in rivers in Queensland -02517169 05 n 02 Siluriformes 0 order_Siluriformes 0 007 @ 01342529 n 0000 #m 01428155 n 0000 %m 02517442 n 0000 %m 02517768 n 0000 %m 02518813 n 0000 %m 02520391 n 0000 %m 02520669 n 0000 | an order of fish belonging to the superorder Malacopterygii including catfishes -02517442 05 n 02 catfish 1 siluriform_fish 0 008 @ 01428580 n 0000 #m 02517169 n 0000 ~ 02517938 n 0000 ~ 02519148 n 0000 ~ 02519686 n 0000 ~ 02520147 n 0000 ~ 02520525 n 0000 ~ 02520810 n 0000 | any of numerous mostly freshwater bottom-living fishes of Eurasia and North America with barbels like whiskers around the mouth -02517768 05 n 02 Siluridae 0 family_Siluridae 0 005 @ 01429349 n 0000 #m 02517169 n 0000 %m 02517938 n 0000 %m 02518178 n 0000 %m 02518488 n 0000 | Old World catfishes -02517938 05 n 02 silurid 0 silurid_fish 0 004 @ 02517442 n 0000 #m 02517768 n 0000 ~ 02518324 n 0000 ~ 02518622 n 0000 | Old World freshwater catfishes having naked skin and a long anal fin more or less merged with the eellike caudal fin -02518178 05 n 02 Silurus 0 genus_Silurus 0 003 @ 01432517 n 0000 #m 02517768 n 0000 %m 02518324 n 0000 | type genus of the Siluridae: catfishes -02518324 05 n 03 European_catfish 0 sheatfish 0 Silurus_glanis 0 002 @ 02517938 n 0000 #m 02518178 n 0000 | large elongated catfish of central and eastern Europe -02518488 05 n 02 Malopterurus 0 genus_Malopterurus 0 003 @ 01432517 n 0000 #m 02517768 n 0000 %m 02518622 n 0000 | electric catfish -02518622 05 n 02 electric_catfish 0 Malopterurus_electricus 0 002 @ 02517938 n 0000 #m 02518488 n 0000 | freshwater catfish of the Nile and tropical central Africa having an electric organ -02518813 05 n 02 Ameiuridae 0 family_Ameiuridae 0 005 @ 01429349 n 0000 #m 02517169 n 0000 %m 02518990 n 0000 %m 02519576 n 0000 %m 02520015 n 0000 | North American catfishes -02518990 05 n 02 Ameiurus 0 genus_Ameiurus 0 003 @ 01432517 n 0000 #m 02518813 n 0000 %m 02519148 n 0000 | type genus of the Ameiuridae: bullhead catfishes -02519148 05 n 02 bullhead 1 bullhead_catfish 0 004 @ 02517442 n 0000 #m 02518990 n 0000 ~ 02519340 n 0000 ~ 02519472 n 0000 | any of several common freshwater catfishes of the United States -02519340 05 n 04 horned_pout 0 hornpout 0 pout 1 Ameiurus_Melas 0 001 @ 02519148 n 0000 | catfish common in eastern United States -02519472 05 n 01 brown_bullhead 0 001 @ 02519148 n 0000 | freshwater catfish of eastern United States -02519576 05 n 02 Ictalurus 0 genus_Ictalurus 0 002 @ 01432517 n 0000 #m 02518813 n 0000 | channel catfishes -02519686 05 n 03 channel_catfish 0 channel_cat 0 Ictalurus_punctatus 0 002 @ 02517442 n 0000 ~ 02519862 n 0000 | freshwater food fish common throughout central United States -02519862 05 n 04 blue_catfish 0 blue_cat 0 blue_channel_catfish 0 blue_channel_cat 0 001 @ 02519686 n 0000 | a large catfish of the Mississippi valley -02520015 05 n 02 Pylodictus 0 genus_Pylodictus 0 003 @ 01432517 n 0000 #m 02518813 n 0000 %m 02520147 n 0000 | flathead catfishes -02520147 05 n 06 flathead_catfish 0 mudcat 0 goujon 0 shovelnose_catfish 0 spoonbill_catfish 0 Pylodictus_olivaris 0 002 @ 02517442 n 0000 #m 02520015 n 0000 | large catfish of central United States having a flattened head and projecting jaw -02520391 05 n 02 Laricariidae 0 family_Laricariidae 0 003 @ 01429349 n 0000 #m 02517169 n 0000 %m 02520525 n 0000 | armored catfish -02520525 05 n 01 armored_catfish 0 002 @ 02517442 n 0000 #m 02520391 n 0000 | South American catfish having the body covered with bony plates -02520669 05 n 02 Ariidae 0 family_Ariidae 0 004 @ 01429349 n 0000 #m 02517169 n 0000 %m 02520810 n 0000 %m 02520985 n 0000 | sea catfishes -02520810 05 n 01 sea_catfish 0 003 @ 02517442 n 0000 #m 02520669 n 0000 ~ 02521129 n 0000 | any of numerous marine fishes most of which are mouthbreeders; not used for food -02520985 05 n 02 Arius 0 genus_Arius 0 003 @ 01432517 n 0000 #m 02520669 n 0000 %m 02521129 n 0000 | type genus of the Ariidae: sea catfishes -02521129 05 n 01 crucifix_fish 0 002 @ 02520810 n 0000 #m 02520985 n 0000 | sea catfish of the Caribbean area -02521241 05 n 02 Gadiformes 0 order_Gadiformes 0 004 @ 01342529 n 0000 #m 01428155 n 0000 %m 02521916 n 0000 %m 02525543 n 0000 | cods, haddocks, grenadiers; in some classifications considered equivalent to the order Anacanthini -02521472 05 n 02 Anacanthini 0 order_Anacanthini 0 002 @ 01342529 n 0000 #m 01428155 n 0000 | at least partially equivalent to the order Gadiformes in some classifications -02521646 05 n 02 gadoid 0 gadoid_fish 0 010 @ 01428580 n 0000 #m 02521916 n 0000 ~ 02522399 n 0000 ~ 02523110 n 0000 ~ 02523877 n 0000 ~ 02524202 n 0000 ~ 02524524 n 0000 ~ 02525120 n 0000 ~ 02525382 n 0000 ~ 02525703 n 0000 | a soft-finned fish of the family Gadidae -02521916 05 n 02 Gadidae 0 family_Gadidae 0 012 @ 01429349 n 0000 #m 02521241 n 0000 %m 02521646 n 0000 %m 02522247 n 0000 %m 02522990 n 0000 %m 02523338 n 0000 %m 02523750 n 0000 %m 02524081 n 0000 %m 02524424 n 0000 %m 02524811 n 0000 %m 02525012 n 0000 %m 02525287 n 0000 | large family of important mostly marine food fishes -02522247 05 n 02 Gadus 0 genus_Gadus 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02522399 n 0000 | type genus of the Gadidae: the typical codfishes -02522399 05 n 02 cod 0 codfish 0 008 @ 02521646 n 0000 #m 02522247 n 0000 + 02522637 n 0101 ~ 02522637 n 0000 ~ 02522722 n 0000 ~ 02522866 n 0000 ~ 02523427 n 0000 ~ 02523617 n 0000 | major food fish of Arctic and cold-temperate waters -02522637 05 n 01 codling 0 002 @ 02522399 n 0000 + 02522399 n 0101 | young codfish -02522722 05 n 02 Atlantic_cod 0 Gadus_morhua 0 002 @ 02522399 n 0000 %p 07789063 n 0000 | one of the world's most important commercial fishes -02522866 05 n 03 Pacific_cod 0 Alaska_cod 0 Gadus_macrocephalus 0 001 @ 02522399 n 0000 | closely related to Atlantic cod -02522990 05 n 02 Merlangus 0 genus_Merlangus 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02523110 n 0000 | whitings -02523110 05 n 03 whiting 0 Merlangus_merlangus 0 Gadus_merlangus 0 003 @ 02521646 n 0000 #m 02522990 n 0000 %p 07778680 n 0000 | a food fish of the Atlantic waters of Europe resembling the cod; sometimes placed in genus Gadus -02523338 05 n 02 Lota 0 genus_Lota 0 002 @ 01432517 n 0000 #m 02521916 n 0000 | burbot -02523427 05 n 05 burbot 0 eelpout 2 ling 3 cusk 2 Lota_lota 0 001 @ 02522399 n 0000 | elongate freshwater cod of northern Europe and Asia and North America having barbels around its mouth -02523617 05 n 02 scrod 0 schrod 0 001 @ 02522399 n 0000 | young Atlantic cod or haddock especially one split and boned for cooking -02523750 05 n 02 Melanogrammus 0 genus_Melanogrammus 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02523877 n 0000 | haddock -02523877 05 n 02 haddock 0 Melanogrammus_aeglefinus 0 003 @ 02521646 n 0000 #m 02523750 n 0000 %p 07789541 n 0000 | important food fish on both sides of the Atlantic; related to cod but usually smaller -02524081 05 n 02 Pollachius 0 genus_Pollachius 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02524202 n 0000 | pollack -02524202 05 n 03 pollack 0 pollock 0 Pollachius_pollachius 0 003 @ 02521646 n 0000 #m 02524081 n 0000 %p 07789240 n 0000 | important food and game fish of northern seas (especially the northern Atlantic); related to cod -02524424 05 n 02 Merluccius 0 genus_Merluccius 0 002 @ 01432517 n 0000 #m 02521916 n 0000 | hakes -02524524 05 n 01 hake 0 003 @ 02521646 n 0000 ~ 02524659 n 0000 ~ 02524928 n 0000 | any of several marine food fishes related to cod -02524659 05 n 03 silver_hake 0 Merluccius_bilinearis 0 whiting 2 002 @ 02524524 n 0000 %p 07778494 n 0000 | found off Atlantic coast of North America -02524811 05 n 02 Urophycis 0 genus_Urophycis 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02524928 n 0000 | hakes -02524928 05 n 01 ling 2 002 @ 02524524 n 0000 #m 02524811 n 0000 | American hakes -02525012 05 n 02 Molva 0 genus_Molva 0 003 @ 01432517 n 0000 #m 02521916 n 0000 %m 02525120 n 0000 | ling -02525120 05 n 02 ling 1 Molva_molva 0 002 @ 02521646 n 0000 #m 02525012 n 0000 | elongated marine food fish of Greenland and northern Europe; often salted and dried -02525287 05 n 02 Brosmius 0 genus_Browmius 0 002 @ 01432517 n 0000 #m 02521916 n 0000 | cusk -02525382 05 n 03 cusk 1 torsk 0 Brosme_brosme 0 002 @ 02521646 n 0000 %p 07778810 n 0000 | large edible marine fish of northern coastal waters; related to cod -02525543 05 n 04 Macrouridae 0 family_Macrouridae 0 Macruridae 0 family_Macruridae 0 003 @ 01429349 n 0000 #m 02521241 n 0000 %m 02525703 n 0000 | grenadiers -02525703 05 n 03 grenadier 0 rattail 0 rattail_fish 0 002 @ 02521646 n 0000 #m 02525543 n 0000 | deep-sea fish with a large head and body and long tapering tail -02525866 05 n 03 Anguilliformes 0 order_Anguilliformes 0 order_Apodes 0 006 @ 01342529 n 0000 #m 01428155 n 0000 %m 02526121 n 0000 %m 02526486 n 0000 %m 02527145 n 0000 %m 02527498 n 0000 | elongate fishes with pelvic fins and girdle absent or reduced -02526121 05 n 01 eel 0 007 @ 01428580 n 0000 #m 02525866 n 0000 ~ 02526425 n 0000 ~ 02526818 n 0000 ~ 02527057 n 0000 ~ 02527271 n 0000 ~ 02527622 n 0000 | voracious snakelike marine or freshwater fishes with smooth slimy usually scaleless skin and having a continuous vertical fin but no ventral fins -02526425 05 n 01 elver 0 001 @ 02526121 n 0000 | young eel -02526486 05 n 02 Anguillidae 0 family_Anguillidae 0 003 @ 01429349 n 0000 #m 02525866 n 0000 %m 02526673 n 0000 | eels that live in fresh water as adults but return to the sea to spawn -02526673 05 n 02 Anguilla 0 genus_Anguilla 0 003 @ 01432517 n 0000 #m 02526486 n 0000 %m 02526818 n 0000 | type genus of the Anguillidae: eels -02526818 05 n 02 common_eel 0 freshwater_eel 0 003 @ 02526121 n 0000 #m 02526673 n 0000 %p 07783967 n 0000 | eels that live in fresh water as adults but return to sea to spawn; found in Europe and America; marketed both fresh and smoked -02527057 05 n 02 tuna 3 Anguilla_sucklandii 0 001 @ 02526121 n 0000 | New Zealand eel -02527145 05 n 02 Muraenidae 0 family_Muraenidae 0 003 @ 01429349 n 0000 #m 02525866 n 0000 %m 02527271 n 0000 | marine eels -02527271 05 n 02 moray 0 moray_eel 0 002 @ 02526121 n 0000 #m 02527145 n 0000 | family of brightly colored voracious eels of warm coastal waters; generally nonaggressive to humans but larger species are dangerous if provoked -02527498 05 n 02 Congridae 0 family_Congridae 0 003 @ 01429349 n 0000 #m 02525866 n 0000 %m 02527622 n 0000 | marine eels -02527622 05 n 02 conger 0 conger_eel 0 002 @ 02526121 n 0000 #m 02527498 n 0000 | large dark-colored scaleless marine eel found in temperate and tropical coastal waters; some used for food -02527813 05 n 02 Teleostei 0 subclass_Teleostei 0 012 @ 08103777 n 0000 #m 02514575 n 0000 %m 01428155 n 0000 %m 01453852 n 0000 %m 02311748 n 0000 %m 02528163 n 0000 %m 02544086 n 0000 %m 02544596 n 0000 %m 02549533 n 0000 %m 02551824 n 0000 %m 02603737 n 0000 %m 02638323 n 0000 | large diverse group of bony fishes; includes most living species -02528163 05 n 03 teleost_fish 0 teleost 0 teleostan 0 015 @ 02514825 n 0000 #m 02527813 n 0000 ~ 01428580 n 0000 ~ 01454545 n 0000 ~ 01455778 n 0000 ~ 01457082 n 0000 ~ 01457407 n 0000 ~ 01457852 n 0000 ~ 02549989 n 0000 ~ 02550460 n 0000 ~ 02551134 n 0000 ~ 02551668 n 0000 ~ 02552171 n 0000 ~ 02603862 n 0000 ~ 02638596 n 0000 | a bony fish of the subclass Teleostei -02528534 05 n 02 Isospondyli 0 order_Isospondyli 0 012 @ 01342529 n 0000 #m 01428155 n 0000 %m 02528949 n 0000 %m 02529515 n 0000 %m 02533708 n 0000 %m 02534352 n 0000 %m 02538730 n 0000 %m 02540255 n 0000 %m 02541431 n 0000 %m 02542162 n 0000 %m 02542598 n 0000 %m 02543093 n 0000 | most primitive teleost fishes; all are soft-finned: salmon; trout; herring; shad; sardines; anchovies; whitefish; smelts; tarpon -02528949 05 n 02 Gonorhynchidae 0 family_Gonorhynchidae 0 003 @ 01429349 n 0000 #m 02528534 n 0000 %m 02529111 n 0000 | coextensive with the genus Gonorhynchus -02529111 05 n 02 Gonorhynchus 0 genus_Gonorhynchus 0 003 @ 01432517 n 0000 #m 02528949 n 0000 %m 02529293 n 0000 | slender cylindrical marine fishes lacking air bladders and teeth -02529293 05 n 03 beaked_salmon 0 sandfish 2 Gonorhynchus_gonorhynchus 0 002 @ 01428580 n 0000 #m 02529111 n 0000 | fish of sandy areas of western Pacific and Indian oceans having an angular snout for burrowing into sand -02529515 05 n 02 Clupeidae 0 family_Clupeidae 0 009 @ 01429349 n 0000 #m 02528534 n 0000 %m 02529772 n 0000 %m 02530294 n 0000 %m 02531362 n 0000 %m 02531503 n 0000 %m 02531820 n 0000 %m 02533075 n 0000 %m 02533424 n 0000 | herrings; shad; sardines; etc. -02529772 05 n 02 clupeid_fish 0 clupeid 0 008 @ 01428580 n 0000 #m 02529515 n 0000 ~ 02530421 n 0000 ~ 02531114 n 0000 ~ 02531625 n 0000 ~ 02532028 n 0000 ~ 02532602 n 0000 ~ 02533209 n 0000 | any of numerous soft-finned schooling food fishes of shallow waters of northern seas -02530052 05 n 01 whitebait 0 002 @ 02513560 n 0000 #m 01428580 n 0000 | the edible young of especially herrings and sprats and smelts -02530188 05 n 02 brit 1 britt 1 001 @ 02513560 n 0000 | the young of a herring or sprat or similar fish -02530294 05 n 02 Alosa 0 genus_Alosa 0 004 @ 01432517 n 0000 #m 02529515 n 0000 %m 02530421 n 0000 %m 02531114 n 0000 | shad -02530421 05 n 01 shad 0 006 @ 02529772 n 0000 @ 02512938 n 0000 #m 02530294 n 0000 ~ 02530637 n 0000 ~ 02530831 n 0000 ~ 02530999 n 0000 | herring-like food fishes that migrate from the sea to fresh water to spawn -02530637 05 n 02 common_American_shad 0 Alosa_sapidissima 0 003 @ 02530421 n 0000 %p 07798357 n 0000 %p 07799874 n 0000 | shad of Atlantic coast of North America; naturalized to Pacific coast -02530831 05 n 02 river_shad 0 Alosa_chrysocloris 0 001 @ 02530421 n 0000 | shad that spawns in streams of the Mississippi drainage; very similar to Alosa sapidissima -02530999 05 n 05 allice_shad 0 allis_shad 0 allice 0 allis 0 Alosa_alosa 0 001 @ 02530421 n 0000 | European shad -02531114 05 n 03 alewife 0 Alosa_pseudoharengus 0 Pomolobus_pseudoharengus 0 003 @ 02529772 n 0000 #m 02530294 n 0000 %p 07785631 n 0000 | shad-like food fish that runs rivers to spawn; often salted or smoked; sometimes placed in genus Pomolobus -02531362 05 n 02 Pomolobus 0 genus_Pomolobus 0 002 @ 01432517 n 0000 #m 02529515 n 0000 | genus to which the alewife is sometimes assigned -02531503 05 n 02 Brevoortia 0 genus_Brevoortia 0 003 @ 01432517 n 0000 #m 02529515 n 0000 %m 02531625 n 0000 | menhaden -02531625 05 n 02 menhaden 0 Brevoortia_tyrannis 0 003 @ 02529772 n 0000 #m 02531503 n 0000 %s 14950129 n 0000 | shad-like North American marine fishes used for fish meal and oil and fertilizer -02531820 05 n 02 Clupea 0 genus_Clupea 0 006 @ 01432517 n 0000 #m 02529515 n 0000 %m 02532028 n 0000 %m 02532272 n 0000 %m 02532451 n 0000 %m 02532918 n 0000 | type genus of the Clupeidae: typical herrings -02532028 05 n 02 herring 0 Clupea_harangus 0 006 @ 02529772 n 0000 @ 02512938 n 0000 #m 02531820 n 0000 ~ 02532272 n 0000 ~ 02532451 n 0000 %p 07784522 n 0000 | commercially important food fish of northern waters of both Atlantic and Pacific -02532272 05 n 02 Atlantic_herring 0 Clupea_harengus_harengus 0 002 @ 02532028 n 0000 #m 02531820 n 0000 | important food fish; found in enormous shoals in the northern Atlantic -02532451 05 n 02 Pacific_herring 0 Clupea_harengus_pallasii 0 002 @ 02532028 n 0000 #m 02531820 n 0000 | important food fish of the northern Pacific -02532602 05 n 01 sardine 1 004 @ 02529772 n 0000 @ 02512938 n 0000 ~ 02532786 n 0000 ~ 02532918 n 0000 | any of various small edible herring or related food fishes frequently canned -02532786 05 n 01 sild 0 001 @ 02532602 n 0000 | any of various young herrings (other than brislings) canned as sardines in Norway -02532918 05 n 03 brisling 0 sprat 0 Clupea_sprattus 0 003 @ 02532602 n 0000 #m 02531820 n 0000 %p 07798985 n 0000 | small herring processed like a sardine -02533075 05 n 03 Sardina 0 genus_Sardina 0 genus_Sardinia 0 003 @ 01432517 n 0000 #m 02529515 n 0000 %m 02533209 n 0000 | pilchards -02533209 05 n 03 pilchard 0 sardine 2 Sardina_pilchardus 0 003 @ 02529772 n 0000 #m 02533075 n 0000 ~ 02533545 n 0000 | small fishes found in great schools along coasts of Europe; smaller and rounder than herring -02533424 05 n 02 Sardinops 0 genus_Sardinops 0 003 @ 01432517 n 0000 #m 02529515 n 0000 %m 02533545 n 0000 | pilchards -02533545 05 n 02 Pacific_sardine 0 Sardinops_caerulea 0 002 @ 02533209 n 0000 #m 02533424 n 0000 | small pilchards common off the pacific coast of North America -02533708 05 n 02 Engraulidae 0 family_Engraulidae 0 003 @ 01429349 n 0000 #m 02528534 n 0000 %m 02533834 n 0000 | anchovies -02533834 05 n 01 anchovy 0 003 @ 01428580 n 0000 #m 02533708 n 0000 ~ 02534165 n 0000 | small herring-like plankton-eating fishes often canned whole or as paste; abundant in tropical waters worldwide -02534036 05 n 02 Engraulis 0 genus_Engraulis 0 002 @ 01432517 n 0000 %m 02534165 n 0000 | type genus of the family Engraulidae -02534165 05 n 02 mediterranean_anchovy 0 Engraulis_encrasicholus 0 002 @ 02533834 n 0000 #m 02534036 n 0000 | esteemed for its flavor; usually preserved or used for sauces and relishes -02534352 05 n 02 Salmonidae 0 family_Salmonidae 0 007 @ 01429349 n 0000 #m 02528534 n 0000 %m 02534559 n 0000 %m 02534734 n 0000 %m 02535349 n 0000 %m 02535909 n 0000 %m 02537847 n 0000 | salmon and trout -02534559 05 n 01 salmonid 0 005 @ 01428580 n 0000 #m 02534352 n 0000 ~ 02534734 n 0000 ~ 02537085 n 0000 ~ 02538406 n 0000 | soft-finned fishes of cold and temperate waters -02534734 05 n 01 salmon 0 011 @ 02534559 n 0000 @ 02512938 n 0000 #m 02534352 n 0000 ~ 02535163 n 0000 ~ 02535258 n 0000 ~ 02535537 n 0000 ~ 02536165 n 0000 ~ 02536456 n 0000 ~ 02536685 n 0000 ~ 02536864 n 0000 %p 07795751 n 0000 | any of various large food and game fishes of northern waters; usually migrate from salt to fresh water to spawn -02535080 05 n 01 parr 0 001 @ 02513560 n 0000 | a young salmon up to 2 years old -02535163 05 n 01 blackfish 1 001 @ 02534734 n 0000 | female salmon that has recently spawned -02535258 05 n 01 redfish 1 001 @ 02534734 n 0000 | male salmon that has recently spawned -02535349 05 n 02 Salmo 0 genus_Salmo 0 005 @ 01432517 n 0000 #m 02534352 n 0000 %m 02535537 n 0000 %m 02537319 n 0000 %m 02537525 n 0000 | type genus of the Salmonidae: salmon and trout -02535537 05 n 02 Atlantic_salmon 0 Salmo_salar 0 004 @ 02534734 n 0000 #m 02535349 n 0000 ~ 02535759 n 0000 %p 07796005 n 0000 | found in northern coastal Atlantic waters or tributaries; adults do not die after spawning -02535759 05 n 02 landlocked_salmon 0 lake_salmon 0 001 @ 02535537 n 0000 | Atlantic salmon confined to lakes of New England and southeastern Canada -02535909 05 n 02 Oncorhynchus 0 genus_Oncorhynchus 0 006 @ 01432517 n 0000 #m 02534352 n 0000 %m 02536165 n 0000 %m 02536456 n 0000 %m 02536685 n 0000 %m 02536864 n 0000 | Pacific salmon including sockeye salmon; chinook salmon; chum salmon; coho salmon -02536165 05 n 05 sockeye 0 sockeye_salmon 0 red_salmon 0 blueback_salmon 0 Oncorhynchus_nerka 0 003 @ 02534734 n 0000 #m 02535909 n 0000 %p 07796165 n 0000 | small salmon with red flesh; found in rivers and tributaries of the northern Pacific and valued as food; adults die after spawning -02536456 05 n 05 chinook 0 chinook_salmon 0 king_salmon 0 quinnat_salmon 0 Oncorhynchus_tshawytscha 0 003 @ 02534734 n 0000 #m 02535909 n 0000 %p 07796321 n 0000 | large Pacific salmon valued as food; adults die after spawning -02536685 05 n 03 chum_salmon 0 chum 0 Oncorhynchus_keta 0 002 @ 02534734 n 0000 #m 02535909 n 0000 | a large Pacific salmon with small spots on its back; an important food fish -02536864 05 n 06 coho 0 cohoe 0 coho_salmon 0 blue_jack 0 silver_salmon 0 Oncorhynchus_kisutch 0 003 @ 02534734 n 0000 #m 02535909 n 0000 %p 07796468 n 0000 | small salmon of northern Pacific coasts and the Great Lakes -02537085 05 n 01 trout 0 006 @ 02534559 n 0000 @ 02512938 n 0000 ~ 02537319 n 0000 ~ 02537525 n 0000 ~ 02538010 n 0000 ~ 02538216 n 0000 | any of various game and food fishes of cool fresh waters mostly smaller than typical salmons -02537319 05 n 03 brown_trout 0 salmon_trout 1 Salmo_trutta 0 004 @ 02537085 n 0000 #m 02535349 n 0000 ~ 02537716 n 0000 %p 07794744 n 0000 | speckled trout of European rivers; introduced in North America -02537525 05 n 02 rainbow_trout 0 Salmo_gairdneri 0 003 @ 02537085 n 0000 #m 02535349 n 0000 %p 07794605 n 0000 | found in Pacific coastal waters and streams from lower California to Alaska -02537716 05 n 01 sea_trout 1 001 @ 02537319 n 0000 | silvery marine variety of brown trout that migrates to fresh water to spawn -02537847 05 n 02 Salvelinus 0 genus_Salvelinus 0 005 @ 01432517 n 0000 #m 02534352 n 0000 %m 02538010 n 0000 %m 02538216 n 0000 %m 02538406 n 0000 | brook trout -02538010 05 n 03 lake_trout 0 salmon_trout 0 Salvelinus_namaycush 0 003 @ 02537085 n 0000 #m 02537847 n 0000 %p 07795019 n 0000 | large fork-tailed trout of lakes of Canada and the northern United States -02538216 05 n 03 brook_trout 0 speckled_trout 0 Salvelinus_fontinalis 0 003 @ 02537085 n 0000 #m 02537847 n 0000 %p 07794893 n 0000 | North American freshwater trout; introduced in Europe -02538406 05 n 02 char 0 charr 0 003 @ 02534559 n 0000 #m 02537847 n 0000 ~ 02538562 n 0000 | any of several small trout-like fish of the genus Salvelinus -02538562 05 n 02 Arctic_char 0 Salvelinus_alpinus 0 001 @ 02538406 n 0000 | small trout of northern waters; landlocked populations in Quebec and northern New England -02538730 05 n 02 Coregonidae 0 family_Coregonidae 0 005 @ 01429349 n 0000 #m 02528534 n 0000 %m 02538985 n 0000 %m 02539251 n 0000 %m 02539752 n 0000 | soft-finned fishes comprising the freshwater whitefishes; formerly included in the family Salmonidae -02538985 05 n 01 whitefish 1 008 @ 01428580 n 0000 @ 02512938 n 0000 #m 02538730 n 0000 ~ 02539424 n 0000 ~ 02539573 n 0000 ~ 02539894 n 0000 ~ 02540091 n 0000 %p 07795133 n 0000 | silvery herring-like freshwater food fish of cold lakes of the northern hemisphere -02539251 05 n 02 Coregonus 0 genus_Coregonus 0 004 @ 01432517 n 0000 #m 02538730 n 0000 %m 02539424 n 0000 %m 02539573 n 0000 | type genus of the Coregonidae: whitefishes -02539424 05 n 02 lake_whitefish 0 Coregonus_clupeaformis 0 002 @ 02538985 n 0000 #m 02539251 n 0000 | found in the Great Lakes and north to Alaska -02539573 05 n 03 cisco 0 lake_herring 0 Coregonus_artedi 0 003 @ 02538985 n 0000 #m 02539251 n 0000 %p 07795459 n 0000 | important food fish of cold deep lakes of North America -02539752 05 n 02 Prosopium 0 genus_Prosopium 0 004 @ 01432517 n 0000 #m 02538730 n 0000 %m 02539894 n 0000 %m 02540091 n 0000 | whitefishes -02539894 05 n 03 round_whitefish 0 Menominee_whitefish 0 Prosopium_cylindraceum 0 002 @ 02538985 n 0000 #m 02539752 n 0000 | a whitefish with a bronze back; of northern North America and Siberia -02540091 05 n 02 Rocky_Mountain_whitefish 0 Prosopium_williamsonii 0 002 @ 02538985 n 0000 #m 02539752 n 0000 | whitefish of the western United States and Canada -02540255 05 n 02 Osmeridae 0 family_Osmeridae 0 005 @ 01429349 n 0000 #m 02528534 n 0000 %m 02540412 n 0000 %m 02540637 n 0000 %m 02541139 n 0000 | smelts -02540412 05 n 01 smelt 0 006 @ 01428580 n 0000 #m 02540255 n 0000 ~ 02540791 n 0000 ~ 02540983 n 0000 ~ 02541257 n 0000 %p 07798554 n 0000 | small trout-like silvery marine or freshwater food fishes of cold northern waters -02540637 05 n 02 Osmerus 0 genus_Osmerus 0 004 @ 01432517 n 0000 #m 02540255 n 0000 %m 02540791 n 0000 %m 02540983 n 0000 | type genus of the Osmeridae -02540791 05 n 02 rainbow_smelt 0 Osmerus_mordax 0 003 @ 02540412 n 0000 #m 02540637 n 0000 %p 07798728 n 0000 | important marine and landlocked food fish of eastern North America and Alaska -02540983 05 n 03 sparling 0 European_smelt 0 Osmerus_eperlanus 0 003 @ 02540412 n 0000 #m 02540637 n 0000 %p 07798872 n 0000 | the common smelt of Europe -02541139 05 n 02 Mallotus 0 genus_Mallotus 0 003 @ 01432517 n 0000 #m 02540255 n 0000 %m 02541257 n 0000 | capelins -02541257 05 n 03 capelin 0 capelan 0 caplin 0 002 @ 02540412 n 0000 #m 02541139 n 0000 | very small northern fish; forage for sea birds and marine mammals and other fishes -02541431 05 n 02 Elopidae 0 family_Elopidae 0 004 @ 01429349 n 0000 #m 02528534 n 0000 %m 02541583 n 0000 %m 02541875 n 0000 | tarpons and ladyfishes -02541583 05 n 01 genus_Tarpon 0 003 @ 01432517 n 0000 #m 02541431 n 0000 %m 02541687 n 0000 | tarpons -02541687 05 n 02 tarpon 0 Tarpon_atlanticus 0 003 @ 01428580 n 0000 #m 02541583 n 0000 ~ 02542017 n 0000 | large silvery game fish of warm Atlantic coastal waters especially off Florida -02541875 05 n 02 Elops 0 genus_Elops 0 003 @ 01432517 n 0000 #m 02541431 n 0000 %m 02542017 n 0000 | type genus of the Elopidae: tenpounder -02542017 05 n 03 ladyfish 0 tenpounder 0 Elops_saurus 0 002 @ 02541687 n 0000 #m 02541875 n 0000 | game fish resembling the tarpon but smaller -02542162 05 n 02 Albulidae 0 family_Albulidae 0 003 @ 01429349 n 0000 #m 02528534 n 0000 %m 02542283 n 0000 | bonefish -02542283 05 n 02 Albula 0 genus_Albula 0 003 @ 01432517 n 0000 #m 02542162 n 0000 %m 02542432 n 0000 | type and sole genus of the family Albulidae -02542432 05 n 02 bonefish 0 Albula_vulpes 0 002 @ 01428580 n 0000 #m 02542283 n 0000 | slender silvery marine fish found in tropical mud flats and mangrove lagoons -02542598 05 n 02 Argentinidae 0 family_Argentinidae 0 003 @ 01429349 n 0000 #m 02528534 n 0000 %m 02542804 n 0000 | small marine soft-finned fishes with long silvery bodies; related to salmons and trouts -02542804 05 n 02 Argentina 0 genus_Argentina 0 003 @ 01432517 n 0000 #m 02542598 n 0000 %m 02542958 n 0000 | type genus of the Argentinidae: argentines -02542958 05 n 01 argentine 0 002 @ 01428580 n 0000 #m 02542804 n 0000 | any of various small silver-scaled salmon-like marine fishes -02543093 05 n 02 Myctophidae 0 family_Myctophidae 0 003 @ 01429349 n 0000 #m 02528534 n 0000 %m 02543255 n 0000 | deep-sea fishes comprising the lantern fishes -02543255 05 n 01 lanternfish 0 002 @ 01428580 n 0000 #m 02543093 n 0000 | small fish having rows of luminous organs along each side; some surface at night -02543412 05 n 02 Synodontidae 0 family_Synodontidae 0 003 @ 01429349 n 0000 #m 01428155 n 0000 %m 02543565 n 0000 | soft-finned bottom-dwelling fishes -02543565 05 n 03 lizardfish 0 snakefish 0 snake-fish 0 002 @ 01428580 n 0000 #m 02543412 n 0000 | tropical fishes with large mouths in lizard-like heads; found worldwide -02543737 05 n 02 Chlorophthalmidae 0 family_Chlorophthalmidae 0 003 @ 01429349 n 0000 #m 01428155 n 0000 %m 02543952 n 0000 | small family of soft-finned bottom-dwellers with large eyes; relatives of lizardfishes -02543952 05 n 01 greeneye 0 002 @ 01428580 n 0000 #m 02543737 n 0000 | bottom-dwellers having large eyes with metallic green luster -02544086 05 n 02 Alepisaurus 0 genus_Alepisaurus 0 004 @ 01432517 n 0000 #m 02527813 n 0000 %m 02544274 n 0000 %m 02544475 n 0000 | slender scaleless predaceous tropical deep-sea fishes -02544274 05 n 03 lancetfish 0 lancet_fish 0 wolffish 2 002 @ 01428580 n 0000 #m 02544086 n 0000 | large elongate scaleless oceanic fishes with sharp teeth and a long dorsal fin that resembles a sail -02544475 05 n 01 handsaw_fish 0 002 @ 01428580 n 0000 #m 02544086 n 0000 | a soft-finned fish of the genus Alepisaurus -02544596 05 n 02 Osteoglossiformes 0 Order_Osteoglossiformes 0 003 @ 01342529 n 0000 #m 02527813 n 0000 %m 02544754 n 0000 | teleost fish with bony tongues -02544754 05 n 02 Osteoglossidae 0 family_Osteoglossidae 0 003 @ 01429349 n 0000 #m 02544596 n 0000 %m 02544960 n 0000 | a family of large fishes that live in freshwater; includes bandfish and bonytongues -02544960 05 n 02 Scleropages 0 genus_Scleropages 0 004 @ 01432517 n 0000 #m 02544754 n 0000 %m 02545153 n 0000 %m 02545387 n 0000 | a genus of large freshwater fishes of Australia and Borneo -02545153 05 n 06 Australian_arowana 0 Dawson_River_salmon 0 saratoga 0 spotted_barramundi 0 spotted_bonytongue 0 Scleropages_leichardti 0 002 @ 08111027 n 0000 #m 02544960 n 0000 | a species of large fish found in Australian rivers -02545387 05 n 03 Australian_bonytongue 0 northern_barramundi 0 Scleropages_jardinii 0 002 @ 08111027 n 0000 #m 02544960 n 0000 | a species of large fish found in Australian rivers -02545569 05 n 02 Lampridae 0 family_Lampridae 0 003 @ 01429349 n 0000 #m 01428155 n 0000 %m 02545687 n 0000 | opahs -02545687 05 n 02 Lampris 0 genus_Lampris 0 004 @ 01432517 n 0000 #m 02545569 n 0000 %m 02545841 n 0000 %m 02546028 n 0000 | type genus of the Lampridae -02545841 05 n 03 opah 0 moonfish 1 Lampris_regius 0 002 @ 01428580 n 0000 #m 02545687 n 0000 | large elliptical brightly colored deep-sea fish of Atlantic and Pacific and Mediterranean -02546028 05 n 02 New_World_opah 0 Lampris_guttatus 0 002 @ 01428580 n 0000 #m 02545687 n 0000 | from Nova Scotia to West Indies and Gulf of Mexico -02546177 05 n 02 Trachipteridae 0 family_Trachipteridae 0 004 @ 01429349 n 0000 #m 01428155 n 0000 %m 02546331 n 0000 %m 02546477 n 0000 | ribbonfishes -02546331 05 n 01 ribbonfish 1 003 @ 01428580 n 0000 #m 02546177 n 0000 ~ 02546627 n 0000 | marine fish having a long compressed ribbonlike body -02546477 05 n 02 Trachipterus 0 genus_Trachipterus 0 003 @ 01432517 n 0000 #m 02546177 n 0000 %m 02546627 n 0000 | type genus of the Trachipteridae -02546627 05 n 02 dealfish 0 Trachipterus_arcticus 0 002 @ 02546331 n 0000 #m 02546477 n 0000 | deep-sea ribbonfish -02546744 05 n 02 Regalecidae 0 family_Regalecidae 0 003 @ 01429349 n 0000 #m 01428155 n 0000 %m 02546873 n 0000 | ribbonfishes -02546873 05 n 02 Reglaecus 0 genus_Regalecus 0 003 @ 01432517 n 0000 #m 02546744 n 0000 %m 02547014 n 0000 | type genus of the Regalecidae -02547014 05 n 04 oarfish 0 king_of_the_herring 0 ribbonfish 2 Regalecus_glesne 0 002 @ 01428580 n 0000 #m 02546873 n 0000 | thin deep-water tropical fish 20 to 30 feet long having a red dorsal fin -02547213 05 n 02 Pediculati 0 order_Pediculati 0 006 @ 01342529 n 0000 #m 02551824 n 0000 %m 02547562 n 0000 %m 02547947 n 0000 %m 02548522 n 0000 %m 02548990 n 0000 | anglers and batfishes; spiny-finned marine fishes having pectoral fins at the ends of armlike processes and a long movable spine on the dorsal fin to lure prey to the large mouth -02547562 05 n 02 Ogcocephalidae 0 family_Ogcocephalidae 0 003 @ 01429349 n 0000 #m 02547213 n 0000 %m 02547733 n 0000 | batfishes: sluggish bottom-dwelling spiny fishes -02547733 05 n 01 batfish 0 002 @ 02552171 n 0000 #m 02547562 n 0000 | bottom-dweller of warm western Atlantic coastal waters having a flattened scaleless body that crawls about on fleshy pectoral and pelvic fins -02547947 05 n 02 Lophiidae 0 family_Lophiidae 0 004 @ 01429349 n 0000 #m 02547213 n 0000 %m 02548128 n 0000 %m 02548247 n 0000 | large-headed marine fishes comprising the anglers -02548128 05 n 02 Lophius 0 genus_Lophius 0 002 @ 01432517 n 0000 #m 02547947 n 0000 | type genus of family Lophiidae -02548247 05 n 08 goosefish 0 angler 0 anglerfish 0 angler_fish 0 monkfish 0 lotte 0 allmouth 0 Lophius_Americanus 0 004 @ 02552171 n 0000 #m 02547947 n 0000 + 01141612 v 0201 %p 07779747 n 0000 | fishes having large mouths with a wormlike filament attached for luring prey -02548522 05 n 02 Batrachoididae 0 family_Batrachoididae 0 003 @ 01429349 n 0000 #m 02547213 n 0000 %m 02548689 n 0000 | toadfishes; related to anglers and batfishes -02548689 05 n 02 toadfish 0 Opsanus_tau 0 003 @ 02552171 n 0000 #m 02548522 n 0000 ~ 02548884 n 0000 | bottom-dwelling fish having scaleless slimy skin and a broad thick head with a wide mouth -02548884 05 n 03 oyster_fish 0 oyster-fish 0 oysterfish 0 001 @ 02548689 n 0000 | a variety of toadfish -02548990 05 n 02 Antennariidae 0 family_Antennariidae 0 004 @ 01429349 n 0000 #m 02547213 n 0000 %m 02549248 n 0000 %m 02549376 n 0000 | frogfishes; tropical spiny-finned marine fishes having large nearly vertical mouths; related to toadfishes and anglers -02549248 05 n 01 frogfish 0 002 @ 02552171 n 0000 #m 02548990 n 0000 | fish having a frog-like mouth with a lure on the snout -02549376 05 n 01 sargassum_fish 0 002 @ 02552171 n 0000 #m 02548990 n 0000 | small fantastically formed and colored fishes found among masses of sargassum -02549533 05 n 02 Synentognathi 0 order_Synentognathi 0 006 @ 01342529 n 0000 #m 02527813 n 0000 %m 02549796 n 0000 %m 02550296 n 0000 %m 02550915 n 0000 %m 02551316 n 0000 | order of fishes having spineless fins; needlefishes; sauries; flying fishes; halfbeaks -02549796 05 n 02 Belonidae 0 family_Belonidae 0 003 @ 01429349 n 0000 #m 02549533 n 0000 %m 02549989 n 0000 | ferocious fishes of warm regions resembling but unrelated to the freshwater gars -02549989 05 n 03 needlefish 2 gar 2 billfish 2 003 @ 02528163 n 0000 #m 02549796 n 0000 ~ 02550203 n 0000 | elongate European surface-dwelling predacious fishes with long toothed jaws; abundant in coastal waters -02550203 05 n 01 timucu 0 001 @ 02549989 n 0000 | found in warm waters of western Atlantic -02550296 05 n 02 Exocoetidae 0 family_Exocoetidae 0 003 @ 01429349 n 0000 #m 02549533 n 0000 %m 02550460 n 0000 | flying fishes; closely related to the halfbeaks -02550460 05 n 01 flying_fish 0 004 @ 02528163 n 0000 #m 02550296 n 0000 ~ 02550655 n 0000 ~ 02550780 n 0000 | tropical marine fishes having enlarged winglike fins used for brief gliding flight -02550655 05 n 02 monoplane_flying_fish 0 two-wing_flying_fish 0 001 @ 02550460 n 0000 | having only pectoral fins enlarged -02550780 05 n 02 biplane_flying_fish 0 four-wing_flying_fish 0 001 @ 02550460 n 0000 | having both pectoral and pelvic fins enlarged -02550915 05 n 02 Hemiramphidae 0 family_Hemiramphidae 0 003 @ 01429349 n 0000 #m 02549533 n 0000 %m 02551134 n 0000 | halfbeaks; marine and freshwater fishes closely related to the flying fishes but not able to glide -02551134 05 n 01 halfbeak 0 002 @ 02528163 n 0000 #m 02550915 n 0000 | tropical and subtropical marine and freshwater fishes having an elongated body and long protruding lower jaw -02551316 05 n 04 Scomberesocidae 0 family_Scomberesocidae 0 Scombresocidae 0 family_Scombresocidae 0 003 @ 01429349 n 0000 #m 02549533 n 0000 %m 02551494 n 0000 | only sauries -02551494 05 n 04 Scomberesox 0 genus_Scomberesox 0 Scombresox 0 genus_Scombresox 0 003 @ 01432517 n 0000 #m 02551316 n 0000 %m 02551668 n 0000 | a genus of Scomberesocidae -02551668 05 n 03 saury 0 billfish 4 Scomberesox_saurus 0 002 @ 02528163 n 0000 #m 02551494 n 0000 | slender long-beaked fish of temperate Atlantic waters -02551824 05 n 02 Acanthopterygii 0 superorder_Acanthopterygii 0 012 @ 01342529 n 0000 #m 02527813 n 0000 %m 01450081 n 0000 %m 01452496 n 0000 %m 02547213 n 0000 %m 02552171 n 0000 %m 02553196 n 0000 %m 02574489 n 0000 %m 02641608 n 0000 %m 02641825 n 0000 %m 02652335 n 0000 %m 02657083 n 0000 | teleost fishes having fins with sharp bony rays -02552171 05 n 02 spiny-finned_fish 0 acanthopterygian 0 024 @ 02528163 n 0000 #m 02551824 n 0000 ! 01428580 n 0101 ~ 01450661 n 0000 ~ 01451863 n 0000 ~ 01452345 n 0000 ~ 01452798 n 0000 ~ 01453475 n 0000 ~ 01453742 n 0000 ~ 01454856 n 0000 ~ 02547733 n 0000 ~ 02548247 n 0000 ~ 02548689 n 0000 ~ 02549248 n 0000 ~ 02549376 n 0000 ~ 02554730 n 0000 ~ 02574910 n 0000 ~ 02602405 n 0000 ~ 02603317 n 0000 ~ 02618513 n 0000 ~ 02618827 n 0000 ~ 02642107 n 0000 ~ 02652668 n 0000 ~ 02657368 n 0000 | a teleost fish with fins that are supported by sharp inflexible rays -02552737 05 n 02 Ophiodontidae 0 family_Ophiodontidae 0 003 @ 01429349 n 0000 #m 02641825 n 0000 %m 02552894 n 0000 | fishes closely related to greenlings -02552894 05 n 02 Ophiodon 0 genus_Ophiodon 0 003 @ 01432517 n 0000 #m 02552737 n 0000 %m 02553028 n 0000 | a genus of Ophiodontidae -02553028 05 n 02 lingcod 0 Ophiodon_elongatus 0 003 @ 02642107 n 0000 #m 02552894 n 0000 %p 07784991 n 0000 | food fish of the northern Pacific related to greenlings -02553196 05 n 04 Perciformes 0 order_Perciformes 0 Percomorphi 0 order_Percomorphi 0 059 @ 01342529 n 0000 #m 02551824 n 0000 %m 02554512 n 0000 %m 02554730 n 0000 %m 02555863 n 0000 %m 02556014 n 0000 %m 02556623 n 0000 %m 02558350 n 0000 %m 02558724 n 0000 %m 02558980 n 0000 %m 02559232 n 0000 %m 02559606 n 0000 %m 02560823 n 0000 %m 02562085 n 0000 %m 02563182 n 0000 %m 02565728 n 0000 %m 02570648 n 0000 %m 02571300 n 0000 %m 02571983 n 0000 %m 02572904 n 0000 %m 02573406 n 0000 %m 02573918 n 0000 %m 02575766 n 0000 %m 02581803 n 0000 %m 02582437 n 0000 %m 02582919 n 0000 %m 02585732 n 0000 %m 02586382 n 0000 %m 02588108 n 0000 %m 02590237 n 0000 %m 02590702 n 0000 %m 02593863 n 0000 %m 02599784 n 0000 %m 02600953 n 0000 %m 02604014 n 0000 %m 02604657 n 0000 %m 02605139 n 0000 %m 02606194 n 0000 %m 02607630 n 0000 %m 02610541 n 0000 %m 02610834 n 0000 %m 02611425 n 0000 %m 02611767 n 0000 %m 02612393 n 0000 %m 02618244 n 0000 %m 02618697 n 0000 %m 02619029 n 0000 %m 02619738 n 0000 %m 02620033 n 0000 %m 02620318 n 0000 %m 02620826 n 0000 %m 02621107 n 0000 %m 02621721 n 0000 %m 02622823 n 0000 %m 02623170 n 0000 %m 02632694 n 0000 %m 02635310 n 0000 %m 02635911 n 0000 %m 02636666 n 0000 | one of the largest natural groups of fishes of both marine and fresh water: true perches; basses; tuna -02554512 05 n 02 Percoidea 0 suborder_Percoidea 0 003 @ 01342529 n 0000 #m 02553196 n 0000 %m 02637637 n 0000 | in some classifications nearly or exactly equivalent to the Perciformes which are considered a suborder -02554730 05 n 03 percoid_fish 0 percoid 0 percoidean 0 056 @ 02552171 n 0000 #m 02553196 n 0000 ~ 02555863 n 0000 ~ 02556846 n 0000 ~ 02558560 n 0000 ~ 02558860 n 0000 ~ 02559144 n 0000 ~ 02559383 n 0000 ~ 02559862 n 0000 ~ 02561108 n 0000 ~ 02562315 n 0000 ~ 02565573 n 0000 ~ 02566109 n 0000 ~ 02570838 n 0000 ~ 02571652 n 0000 ~ 02571810 n 0000 ~ 02572196 n 0000 ~ 02573249 n 0000 ~ 02573704 n 0000 ~ 02574271 n 0000 ~ 02576223 n 0000 ~ 02581957 n 0000 ~ 02583096 n 0000 ~ 02585872 n 0000 ~ 02586543 n 0000 ~ 02588286 n 0000 ~ 02590495 n 0000 ~ 02590702 n 0000 ~ 02594250 n 0000 ~ 02599958 n 0000 ~ 02601344 n 0000 ~ 02604157 n 0000 ~ 02604954 n 0000 ~ 02605316 n 0000 ~ 02606384 n 0000 ~ 02607862 n 0000 ~ 02610664 n 0000 ~ 02610980 n 0000 ~ 02611561 n 0000 ~ 02611898 n 0000 ~ 02612167 n 0000 ~ 02612657 n 0000 ~ 02619165 n 0000 ~ 02619861 n 0000 ~ 02620167 n 0000 ~ 02620578 n 0000 ~ 02620956 n 0000 ~ 02621258 n 0000 ~ 02621908 n 0000 ~ 02622955 n 0000 ~ 02623445 n 0000 ~ 02632989 n 0000 ~ 02635580 n 0000 ~ 02636170 n 0000 ~ 02636854 n 0000 ~ 02637977 n 0000 | any of numerous spiny-finned fishes of the order Perciformes -02555863 05 n 01 perch 2 002 @ 02554730 n 0000 #m 02553196 n 0000 | any of numerous spiny-finned fishes of various families of the order Perciformes -02556014 05 n 02 Anabantidae 0 family_Anabantidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02556195 n 0000 | small freshwater spiny-finned fishes of Africa and southern Asia -02556195 05 n 02 Anabas 0 genus_Anabas 0 003 @ 01432517 n 0000 #m 02556014 n 0000 %m 02556373 n 0000 | the type genus of the family Anabantidae; small fish that resemble perch -02556373 05 n 03 climbing_perch 0 Anabas_testudineus 0 A._testudineus 0 002 @ 02512053 n 0000 #m 02556195 n 0000 | a small perch of India whose gills are modified to allow it to breathe air; has spiny pectoral fins that enable it to travel on land -02556623 05 n 02 Percidae 0 family_Percidae 0 006 @ 01429349 n 0000 #m 02553196 n 0000 %m 02556846 n 0000 %m 02557033 n 0000 %m 02557461 n 0000 %m 02558079 n 0000 | active freshwater fishes; true perches and pike perches -02556846 05 n 01 perch 1 006 @ 02554730 n 0000 #m 02556623 n 0000 ~ 02557182 n 0000 ~ 02557318 n 0000 ~ 02557591 n 0000 ~ 02558206 n 0000 | spiny-finned freshwater food and game fishes -02557033 05 n 02 Perca 0 genus_Perca 0 004 @ 01432517 n 0000 #m 02556623 n 0000 %m 02557182 n 0000 %m 02557318 n 0000 | type genus of the Percidae -02557182 05 n 02 yellow_perch 0 Perca_flavescens 0 003 @ 02556846 n 0000 #m 02557033 n 0000 %p 07780173 n 0000 | North American perch -02557318 05 n 02 European_perch 0 Perca_fluviatilis 0 003 @ 02556846 n 0000 #m 02557033 n 0000 %p 07780173 n 0000 | a perch native to Europe -02557461 05 n 02 Stizostedion 0 genus_Stizostedion 0 003 @ 01432517 n 0000 #m 02556623 n 0000 %m 02557591 n 0000 | pike-perches -02557591 05 n 02 pike-perch 0 pike_perch 0 003 @ 02556846 n 0000 #m 02557461 n 0000 ~ 02557749 n 0000 | any of several pike-like fishes of the perch family -02557749 05 n 05 walleye 0 walleyed_pike 0 jack_salmon 0 dory 1 Stizostedion_vitreum 0 002 @ 02557591 n 0000 ~ 02557909 n 0000 | pike-like freshwater perches -02557909 05 n 05 blue_pike 0 blue_pickerel 0 blue_pikeperch 0 blue_walleye 0 Strizostedion_vitreum_glaucum 0 001 @ 02557749 n 0000 | variety inhabiting the Great Lakes -02558079 05 n 02 Percina 0 genus_Percina 0 003 @ 01432517 n 0000 #m 02556623 n 0000 %m 02558206 n 0000 | a genus of Percidae -02558206 05 n 02 snail_darter 0 Percina_tanasi 0 002 @ 02556846 n 0000 #m 02558079 n 0000 | a small snail-eating perch of the Tennessee River -02558350 05 n 02 Trichodontidae 0 family_Trichodontidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02558560 n 0000 | two species of elongate compressed scaleless large-eyed fishes that live in sand or mud -02558560 05 n 01 sandfish 1 002 @ 02554730 n 0000 #m 02558350 n 0000 | either of two small silvery scaleless fishes of the northern Pacific that burrow into sand -02558724 05 n 02 Ophidiidae 0 family_Ophidiidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02558860 n 0000 | eellike marine fishes -02558860 05 n 01 cusk-eel 0 002 @ 02554730 n 0000 #m 02558724 n 0000 | elongate compressed somewhat eel-shaped fishes -02558980 05 n 02 Brotulidae 0 family_Brotulidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02559144 n 0000 | chiefly deep-sea fishes related to the Ophidiidae -02559144 05 n 01 brotula 0 002 @ 02554730 n 0000 #m 02558980 n 0000 | deep-sea fishes -02559232 05 n 02 Carapidae 0 family_Carapidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02559383 n 0000 | pearlfishes: related to the Brotulidae -02559383 05 n 02 pearlfish 0 pearl-fish 0 002 @ 02554730 n 0000 #m 02559232 n 0000 | found living within the alimentary canals of e.g. sea cucumbers or between the shells of pearl oysters in or near shallow seagrass beds -02559606 05 n 02 Centropomidae 0 family_Centropomidae 0 007 @ 01429349 n 0000 #m 02553196 n 0000 %m 02559862 n 0000 %m 02559974 n 0000 %m 02560110 n 0000 %m 02560271 n 0000 %m 02560383 n 0000 | a family of fish or the order Perciformes including robalos -02559862 05 n 01 robalo 0 003 @ 02554730 n 0000 #m 02559606 n 0000 ~ 02560110 n 0000 | a kind of percoid fish -02559974 05 n 02 Centropomus 0 genus_Centropomus 0 002 @ 01432517 n 0000 #m 02559606 n 0000 | type genus of the Centropomidae: snooks -02560110 05 n 01 snook 0 002 @ 02559862 n 0000 #m 02559606 n 0000 | large tropical American food and game fishes of coastal and brackish waters; resemble pike -02560271 05 n 01 Latinae 0 002 @ 08108627 n 0000 #m 02559606 n 0000 | a subfamily of the family Centropomidae -02560383 05 n 02 Lates 0 genus_Lates 0 003 @ 01432517 n 0000 #m 02559606 n 0000 %m 02560546 n 0000 | a genus of large percoid fishes of fresh and brackish water -02560546 05 n 06 barramundi 0 giant_perch 0 giant_seaperch 0 Asian_seabass 0 white_seabass 0 Lates_calcarifer 0 002 @ 08111027 n 0000 #m 02560383 n 0000 | a species of large perch noted for its sporting and eating qualities; lives in marine, estuary, and freshwater habitats -02560823 05 n 02 Esocidae 0 family_Esocidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02560964 n 0000 | pikes; pickerels; muskellunges -02560964 05 n 02 Esox 0 genus_Esox 0 003 @ 01432517 n 0000 #m 02560823 n 0000 %m 02561108 n 0000 | type and only genus of the family Esocidae -02561108 05 n 01 pike 0 006 @ 02554730 n 0000 #m 02560964 n 0000 ~ 02561381 n 0000 ~ 02561514 n 0000 ~ 02561661 n 0000 %p 07779375 n 0000 | any of several elongate long-snouted freshwater game and food fishes widely distributed in cooler parts of the northern hemisphere -02561381 05 n 02 northern_pike 0 Esox_lucius 0 001 @ 02561108 n 0000 | voracious piscivorous pike of waters of northern hemisphere -02561514 05 n 02 muskellunge 0 Esox_masquinongy 0 002 @ 02561108 n 0000 %p 07779535 n 0000 | large (60 to 80 pounds) sport fish of North America -02561661 05 n 01 pickerel 0 003 @ 02561108 n 0000 ~ 02561803 n 0000 ~ 02561937 n 0000 | any of several North American species of small pike -02561803 05 n 03 chain_pickerel 0 chain_pike 0 Esox_niger 0 001 @ 02561661 n 0000 | common in quiet waters of eastern United States -02561937 05 n 03 redfin_pickerel 0 barred_pickerel 0 Esox_americanus 0 001 @ 02561661 n 0000 | small but gamy pickerel of Atlantic coastal states -02562085 05 n 02 Centrarchidae 0 family_Centrarchidae 0 008 @ 01429349 n 0000 #m 02553196 n 0000 %m 02562315 n 0000 %m 02562680 n 0000 %m 02563497 n 0000 %m 02564130 n 0000 %m 02564270 n 0000 %m 02564572 n 0000 | sunfish family -02562315 05 n 02 sunfish 1 centrarchid 0 008 @ 02554730 n 0000 #m 02562085 n 0000 ~ 02562796 n 0000 ~ 02563182 n 0000 ~ 02563648 n 0000 ~ 02564403 n 0000 ~ 02564720 n 0000 %p 07780307 n 0000 | small carnivorous freshwater percoid fishes of North America usually having a laterally compressed body and metallic luster: crappies; black bass; bluegills; pumpkinseed -02562680 05 n 02 Pomoxis 0 genus_Pomoxis 0 003 @ 01432517 n 0000 #m 02562085 n 0000 %m 02562796 n 0000 | crappies -02562796 05 n 01 crappie 0 005 @ 02562315 n 0000 #m 02562680 n 0000 ~ 02562971 n 0000 ~ 02563079 n 0000 %p 07780486 n 0000 | small sunfishes of central United States rivers -02562971 05 n 02 black_crappie 0 Pomoxis_nigromaculatus 0 001 @ 02562796 n 0000 | a crappie that is black -02563079 05 n 02 white_crappie 0 Pomoxis_annularis 0 001 @ 02562796 n 0000 | a crappie that is white -02563182 05 n 02 freshwater_bream 0 bream 0 006 @ 02562315 n 0000 #m 02553196 n 0000 ~ 01440467 n 0000 ~ 02563792 n 0000 ~ 02563949 n 0000 %p 07777358 n 0000 | any of various usually edible freshwater percoid fishes having compressed bodies and shiny scales; especially (but not exclusively) of the genus Lepomis -02563497 05 n 02 Lepomis 0 genus_Lepomis 0 005 @ 01432517 n 0000 #m 02562085 n 0000 %m 02563648 n 0000 %m 02563792 n 0000 %m 02563949 n 0000 | bream -02563648 05 n 02 pumpkinseed 0 Lepomis_gibbosus 0 002 @ 02562315 n 0000 #m 02563497 n 0000 | small brilliantly colored North American sunfish -02563792 05 n 02 bluegill 0 Lepomis_macrochirus 0 002 @ 02563182 n 0000 #m 02563497 n 0000 | important edible sunfish of eastern and central United States -02563949 05 n 03 spotted_sunfish 0 stumpknocker 0 Lepomis_punctatus 0 002 @ 02563182 n 0000 #m 02563497 n 0000 | inhabits streams from South Carolina to Florida; esteemed panfish -02564130 05 n 02 Ambloplites 0 genus_Ambloplites 0 003 @ 01432517 n 0000 #m 02562085 n 0000 %m 02564403 n 0000 | a genus of Centrarchidae -02564270 05 n 01 freshwater_bass 0 003 @ 02565573 n 0000 #m 02562085 n 0000 %p 07777512 n 0000 | North American food and game fish -02564403 05 n 03 rock_bass 1 rock_sunfish 0 Ambloplites_rupestris 0 002 @ 02562315 n 0000 #m 02564130 n 0000 | game and food fish of upper Mississippi and Great Lakes -02564572 05 n 02 Micropterus 0 genus_Micropterus 0 003 @ 01432517 n 0000 #m 02562085 n 0000 %m 02564720 n 0000 | American freshwater black basses -02564720 05 n 01 black_bass 1 005 @ 02562315 n 0000 #m 02564572 n 0000 ~ 02564935 n 0000 ~ 02565072 n 0000 ~ 02565324 n 0000 | widely distributed and highly prized American freshwater game fishes (sunfish family) -02564935 05 n 03 Kentucky_black_bass 0 spotted_black_bass 0 Micropterus_pseudoplites 0 001 @ 02564720 n 0000 | a variety of black bass -02565072 05 n 06 smallmouth 0 smallmouth_bass 0 smallmouthed_bass 0 smallmouth_black_bass 0 smallmouthed_black_bass 0 Micropterus_dolomieu 0 002 @ 02564720 n 0000 %p 07777840 n 0000 | a variety of black bass; the angle of the jaw falls below the eye -02565324 05 n 06 largemouth 0 largemouth_bass 0 largemouthed_bass 0 largemouth_black_bass 0 largemouthed_black_bass 0 Micropterus_salmoides 0 002 @ 02564720 n 0000 %p 07777735 n 0000 | a large black bass; the angle of the jaw falls behind the eye -02565573 05 n 01 bass 0 002 @ 02554730 n 0000 ~ 02564270 n 0000 | nontechnical name for any of numerous edible marine and freshwater spiny-finned fishes -02565728 05 n 02 Serranidae 0 family_Serranidae 0 014 @ 01429349 n 0000 #m 02553196 n 0000 %m 02566109 n 0000 %m 02566325 n 0000 %m 02566834 n 0000 %m 02567201 n 0000 %m 02567484 n 0000 %m 02567960 n 0000 %m 02568326 n 0000 %m 02568636 n 0000 %m 02569151 n 0000 %m 02569770 n 0000 %m 02570038 n 0000 %m 02570312 n 0000 | marine fishes: sea basses; sea perches; groupers; jewfish -02566109 05 n 02 serranid_fish 0 serranid 0 006 @ 02554730 n 0000 #m 02565728 n 0000 ~ 02566489 n 0000 ~ 02566665 n 0000 ~ 02566834 n 0000 ~ 02570484 n 0000 | marine food sport fishes mainly of warm coastal waters -02566325 05 n 02 Morone 0 genus_Morone 0 004 @ 01432517 n 0000 #m 02565728 n 0000 %m 02566489 n 0000 %m 02566665 n 0000 | carnivorous fresh and salt water fishes -02566489 05 n 03 white_perch 0 silver_perch 1 Morone_americana 0 002 @ 02566109 n 0000 #m 02566325 n 0000 | small silvery food and game fish of eastern United States streams -02566665 05 n 02 yellow_bass 0 Morone_interrupta 0 002 @ 02566109 n 0000 #m 02566325 n 0000 | North American freshwater bass resembling the larger marine striped bass -02566834 05 n 01 sea_bass 0 011 @ 02566109 n 0000 @ 02512938 n 0000 #m 02565728 n 0000 ~ 02567334 n 0000 ~ 02567633 n 0000 ~ 02567772 n 0000 ~ 02568087 n 0000 ~ 02568447 n 0000 ~ 02568807 n 0000 ~ 02568959 n 0000 %p 07777945 n 0000 | any of various food and sport fishes of the Atlantic coast of the United States having an elongated body and long spiny dorsal fin -02567201 05 n 02 Synagrops 0 genus_Synagrops 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02567334 n 0000 | a genus of Serranidae -02567334 05 n 02 blackmouth_bass 0 Synagrops_bellus 0 002 @ 02566834 n 0000 #m 02567201 n 0000 | small marine fish with black mouth and gill cavity -02567484 05 n 02 Centropristis 0 genus_Centropristis 0 004 @ 01432517 n 0000 #m 02565728 n 0000 %m 02567633 n 0000 %m 02567772 n 0000 | sea basses -02567633 05 n 03 rock_sea_bass 0 rock_bass 2 Centropristis_philadelphica 0 002 @ 02566834 n 0000 #m 02567484 n 0000 | a kind of sea bass -02567772 05 n 03 black_sea_bass 0 black_bass 2 Centropistes_striata 0 002 @ 02566834 n 0000 #m 02567484 n 0000 | bluish black-striped sea bass of the Atlantic coast of the United States -02567960 05 n 02 Roccus 0 genus_Roccus 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02568087 n 0000 | a genus of Serranidae -02568087 05 n 04 striped_bass 0 striper 0 Roccus_saxatilis 0 rockfish 2 002 @ 02566834 n 0000 #m 02567960 n 0000 | marine food and game fish with dark longitudinal stripes; migrates upriver to spawn; sometimes placed in the genus Morone -02568326 05 n 02 Polyprion 0 genus_Polyprion 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02568447 n 0000 | wreckfish -02568447 05 n 03 stone_bass 0 wreckfish 0 Polyprion_americanus 0 002 @ 02566834 n 0000 #m 02568326 n 0000 | brown fish of the Atlantic and Mediterranean found around rocks and shipwrecks -02568636 05 n 02 Serranus 0 genus_Serranus 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02568807 n 0000 | type genus of the Serranidae: mostly small Pacific sea basses -02568807 05 n 02 belted_sandfish 0 Serranus_subligarius 0 002 @ 02566834 n 0000 #m 02568636 n 0000 | found in warm shallow waters of western Atlantic -02568959 05 n 01 grouper 0 006 @ 02566834 n 0000 ~ 02569334 n 0000 ~ 02569484 n 0000 ~ 02569905 n 0000 ~ 02570164 n 0000 %p 07778224 n 0000 | usually solitary bottom sea basses of warm seas -02569151 05 n 02 Epinephelus 0 genus_Epinephelus 0 005 @ 01432517 n 0000 #m 02565728 n 0000 %m 02569334 n 0000 %m 02569484 n 0000 %m 02569631 n 0000 | genus of groupers or sea bass -02569334 05 n 02 coney 0 Epinephelus_fulvus 0 002 @ 02568959 n 0000 #m 02569151 n 0000 | black-spotted usually dusky-colored fish with reddish fins -02569484 05 n 01 hind 1 003 @ 02568959 n 0000 #m 02569151 n 0000 ~ 02569631 n 0000 | any of several mostly spotted fishes that resemble groupers -02569631 05 n 02 rock_hind 0 Epinephelus_adscensionis 0 002 @ 02569484 n 0000 #m 02569151 n 0000 | found around rocky coasts or on reefs -02569770 05 n 02 Paranthias 0 genus_Paranthias 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02569905 n 0000 | a genus of Serranidae -02569905 05 n 02 creole-fish 0 Paranthias_furcifer 0 002 @ 02568959 n 0000 #m 02569770 n 0000 | deep-sea fish of tropical Atlantic -02570038 05 n 02 Mycteroperca 0 genus_Mycteroperca 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02570164 n 0000 | groupers -02570164 05 n 02 jewfish 0 Mycteroperca_bonaci 0 002 @ 02568959 n 0000 #m 02570038 n 0000 | large dark grouper with a thick head and rough scales -02570312 05 n 02 Rypticus 0 genus_Rypticus 0 003 @ 01432517 n 0000 #m 02565728 n 0000 %m 02570484 n 0000 | a genus of fish of the family Serranidae, including soapfishes -02570484 05 n 01 soapfish 0 002 @ 02566109 n 0000 #m 02570312 n 0000 | fishes with slimy mucus-covered skin; found in the warm Atlantic coastal waters of America -02570648 05 n 02 Embiotocidae 0 family_Embiotocidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02570838 n 0000 %m 02571034 n 0000 | viviparous percoid fishes comprising the surf fishes -02570838 05 n 03 surfperch 0 surffish 1 surf_fish 1 003 @ 02554730 n 0000 #m 02570648 n 0000 ~ 02571167 n 0000 | small to medium-sized shallow-water fishes of the Pacific coast of North America -02571034 05 n 02 Hipsurus 0 genus_Hipsurus 0 003 @ 01432517 n 0000 #m 02570648 n 0000 %m 02571167 n 0000 | a genus of Embiotocidae -02571167 05 n 03 rainbow_seaperch 0 rainbow_perch 0 Hipsurus_caryi 0 002 @ 02570838 n 0000 #m 02571034 n 0000 | Pacific coast fish -02571300 05 n 02 Priacanthidae 0 family_Priacanthidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02571486 n 0000 | small carnivorous percoid fishes found worldwide in tropical seas -02571486 05 n 02 Priacanthus 0 genus_Priacanthus 0 004 @ 01432517 n 0000 #m 02571300 n 0000 %m 02571652 n 0000 %m 02571810 n 0000 | type genus of the Priacanthidae -02571652 05 n 01 bigeye 0 002 @ 02554730 n 0000 #m 02571486 n 0000 | red fishes of American coastal tropical waters having very large eyes and rough scales -02571810 05 n 02 catalufa 0 Priacanthus_arenatus 0 002 @ 02554730 n 0000 #m 02571486 n 0000 | brightly colored carnivorous fish of western Atlantic and West Indies waters -02571983 05 n 02 Apogonidae 0 family_Apogonidae 0 005 @ 01429349 n 0000 #m 02553196 n 0000 %m 02572196 n 0000 %m 02572369 n 0000 %m 02572628 n 0000 | bright-colored marine fishes that incubate eggs in the mouth -02572196 05 n 01 cardinalfish 0 004 @ 02554730 n 0000 #m 02571983 n 0000 ~ 02572484 n 0000 ~ 02572763 n 0000 | small red fishes of coral reefs and inshore tropical waters -02572369 05 n 02 Apogon 0 genus_Apogon 0 002 @ 01432517 n 0000 #m 02571983 n 0000 | type genus of the Apogonidae -02572484 05 n 03 flame_fish 0 flamefish 0 Apogon_maculatus 0 001 @ 02572196 n 0000 | a cardinalfish found in tropical Atlantic coastal waters -02572628 05 n 02 Astropogon 0 genus_Astropogon 0 002 @ 01432517 n 0000 #m 02571983 n 0000 | a genus of fish of the family Apogonidae -02572763 05 n 02 conchfish 0 Astropogon_stellatus 0 001 @ 02572196 n 0000 | found in West Indies; lives in mantle cavity of a living conch -02572904 05 n 02 Malacanthidae 0 family_Malacanthidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02573075 n 0000 | short-headed marine fishes; often brightly colored -02573075 05 n 02 Lopholatilus 0 genus_Lopholatilus 0 003 @ 01432517 n 0000 #m 02572904 n 0000 %m 02573249 n 0000 | large brightly colored food fish of deep Atlantic waters -02573249 05 n 02 tilefish 1 Lopholatilus_chamaeleonticeps 0 002 @ 02554730 n 0000 #m 02573075 n 0000 | yellow-spotted violet food fish of warm deep waters -02573406 05 n 02 Pomatomidae 0 family_Pomatomidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02573563 n 0000 | food and game fishes related to pompanos -02573563 05 n 02 Pomatomus 0 genus_Pomatomus 0 003 @ 01432517 n 0000 #m 02573406 n 0000 %m 02573704 n 0000 | type genus of the Pomatomidae -02573704 05 n 02 bluefish 0 Pomatomus_saltatrix 0 003 @ 02554730 n 0000 #m 02573563 n 0000 %p 07785783 n 0000 | bluish warm-water marine food and game fish that follow schools of small fishes into shallow waters -02573918 05 n 02 Rachycentridae 0 family_Rachycentridae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02574093 n 0000 | family of pelagic fishes containing solely the cobia -02574093 05 n 02 Rachycentron 0 genus_Rachycentron 0 003 @ 01432517 n 0000 #m 02573918 n 0000 %m 02574271 n 0000 | genus and family are coextensive and comprise only the cobia -02574271 05 n 03 cobia 0 Rachycentron_canadum 0 sergeant_fish 0 002 @ 02554730 n 0000 #m 02574093 n 0000 | large dark-striped tropical food and game fish related to remoras; found worldwide in coastal to open waters -02574489 05 n 02 Discocephali 0 order_Discocephali 0 003 @ 01342529 n 0000 #m 02551824 n 0000 %m 02574651 n 0000 | small order of fishes comprising the remoras -02574651 05 n 03 Echeneididae 0 family_Echeneididae 0 family_Echeneidae 0 005 @ 01429349 n 0000 #m 02574489 n 0000 %m 02574910 n 0000 %m 02575168 n 0000 %m 02575455 n 0000 | fishes having a sucking disk on the head for clinging to other fishes and to ships -02574910 05 n 03 remora 0 suckerfish 0 sucking_fish 0 004 @ 02552171 n 0000 #m 02574651 n 0000 ~ 02575325 n 0000 ~ 02575590 n 0000 | marine fishes with a flattened elongated body and a sucking disk on the head for attaching to large fish or moving objects -02575168 05 n 02 Echeneis 0 genus_Echeneis 0 003 @ 01432517 n 0000 #m 02574651 n 0000 %m 02575325 n 0000 | type genus of the Echeneididae: typical remoras -02575325 05 n 02 sharksucker 0 Echeneis_naucrates 0 002 @ 02574910 n 0000 #m 02575168 n 0000 | remoras found attached to sharks -02575455 05 n 02 Remilegia 0 genus_Remilegia 0 003 @ 01432517 n 0000 #m 02574651 n 0000 %m 02575590 n 0000 | a genus of Echeneididae -02575590 05 n 03 whale_sucker 0 whalesucker 0 Remilegia_australis 0 002 @ 02574910 n 0000 #m 02575455 n 0000 | large blue Pacific remora that attaches to whales and dolphins -02575766 05 n 02 Carangidae 0 family_Carangidae 0 016 @ 01429349 n 0000 #m 02553196 n 0000 %m 02576223 n 0000 %m 02576460 n 0000 %m 02576575 n 0000 %m 02577291 n 0000 %m 02577532 n 0000 %m 02577823 n 0000 %m 02578125 n 0000 %m 02578604 n 0000 %m 02579420 n 0000 %m 02580055 n 0000 %m 02580336 n 0000 %m 02580546 n 0000 %m 02580991 n 0000 %m 02581289 n 0000 | large family of narrow-bodied marine food fishes with widely forked tails; chiefly of warm seas -02576223 05 n 02 carangid_fish 0 carangid 0 008 @ 02554730 n 0000 #m 02575766 n 0000 + 02679063 a 0201 ~ 02576575 n 0000 ~ 02578233 n 0000 ~ 02579557 n 0000 ~ 02580188 n 0000 ~ 02580336 n 0000 | a percoid fish of the family Carangidae -02576460 05 n 02 Caranx 0 genus_Caranx 0 002 @ 01432517 n 0000 #m 02575766 n 0000 | type genus of the Carangidae -02576575 05 n 01 jack 0 012 @ 02576223 n 0000 #m 02575766 n 0000 ~ 02576906 n 0000 ~ 02577041 n 0000 ~ 02577164 n 0000 ~ 02577403 n 0000 ~ 02577662 n 0000 ~ 02577952 n 0000 ~ 02578771 n 0000 ~ 02578928 n 0000 ~ 02579091 n 0000 ~ 02579303 n 0000 | any of several fast-swimming predacious fishes of tropical to warm temperate seas -02576906 05 n 03 crevalle_jack 0 jack_crevalle 0 Caranx_hippos 0 001 @ 02576575 n 0000 | fish of western Atlantic and Gulf of Mexico -02577041 05 n 02 yellow_jack 0 Caranx_bartholomaei 0 001 @ 02576575 n 0000 | fish of western Atlantic and Gulf of Mexico -02577164 05 n 03 runner 0 blue_runner 0 Caranx_crysos 0 001 @ 02576575 n 0000 | fish of western Atlantic: Cape Cod to Brazil -02577291 05 n 02 Elagatis 0 genus_Elagatis 0 002 @ 01432517 n 0000 #m 02575766 n 0000 | a genus of Carangidae -02577403 05 n 02 rainbow_runner 0 Elagatis_bipinnulata 0 001 @ 02576575 n 0000 | streamlined cigar-shaped jack; good game fish -02577532 05 n 02 Oligoplites 0 genus_Oligoplites 0 003 @ 01432517 n 0000 #m 02575766 n 0000 %m 02577662 n 0000 | leatherjackets -02577662 05 n 02 leatherjacket 2 leatherjack 0 002 @ 02576575 n 0000 #m 02577532 n 0000 | any of several New World tropical fishes having tiny embedded scales -02577823 05 n 02 Alectis 0 genus_Alectis 0 003 @ 01432517 n 0000 #m 02575766 n 0000 %m 02577952 n 0000 | a genus of Carangidae -02577952 05 n 03 threadfish 0 thread-fish 0 Alectis_ciliaris 0 002 @ 02576575 n 0000 #m 02577823 n 0000 | fish having greatly elongated front rays on dorsal and anal fins -02578125 05 n 02 Selene 0 genus_Selene 0 002 @ 01432517 n 0000 #m 02575766 n 0000 | a genus of Carangidae -02578233 05 n 07 moonfish 2 Atlantic_moonfish 0 horsefish 0 horsehead 0 horse-head 0 dollarfish 2 Selene_setapinnis 0 002 @ 02576223 n 0000 ~ 02578454 n 0000 | any of several silvery marine fishes with very flat bodies -02578454 05 n 03 lookdown 0 lookdown_fish 0 Selene_vomer 0 001 @ 02578233 n 0000 | similar to moonfish but with eyes high on the truncated forehead -02578604 05 n 02 Seriola 0 genus_Seriola 0 005 @ 01432517 n 0000 #m 02575766 n 0000 %m 02578771 n 0000 %m 02578928 n 0000 %m 02579091 n 0000 | a genus of Carangidae -02578771 05 n 02 amberjack 0 amberfish 0 002 @ 02576575 n 0000 #m 02578604 n 0000 | any of several amber to coppery fork-tailed warm-water carangid fishes -02578928 05 n 02 yellowtail 3 Seriola_dorsalis 0 002 @ 02576575 n 0000 #m 02578604 n 0000 | game fish of southern California and Mexico having a yellow tail fin -02579091 05 n 03 rudderfish 1 banded_rudderfish 0 Seriola_zonata 0 002 @ 02576575 n 0000 #m 02578604 n 0000 | fish having the habit of following ships; found in North American and South American coastal waters -02579303 05 n 02 kingfish 4 Seriola_grandis 0 001 @ 02576575 n 0000 | large game fish of Australia and New Zealand -02579420 05 n 02 Trachinotus 0 genus_Trachinotus 0 003 @ 01432517 n 0000 #m 02575766 n 0000 %m 02579557 n 0000 | a genus of Carangidae -02579557 05 n 01 pompano 0 005 @ 02576223 n 0000 #m 02579420 n 0000 ~ 02579762 n 0000 ~ 02579928 n 0000 %p 07781689 n 0000 | any of several deep-bodied food fishes of western Atlantic and Gulf of Mexico -02579762 05 n 02 Florida_pompano 0 Trachinotus_carolinus 0 001 @ 02579557 n 0000 | found in coastal waters New England to Brazil except clear waters of West Indies -02579928 05 n 02 permit 0 Trachinotus_falcatus 0 001 @ 02579557 n 0000 | large game fish; found in waters of the West Indies -02580055 05 n 02 Naucrates 0 genus_Naucrates 0 003 @ 01432517 n 0000 #m 02575766 n 0000 %m 02580188 n 0000 | a genus of Carangidae -02580188 05 n 02 pilotfish 0 Naucrates_ductor 0 002 @ 02576223 n 0000 #m 02580055 n 0000 | small pelagic fish often accompanying sharks or mantas -02580336 05 n 01 scad 0 007 @ 02576223 n 0000 #m 02575766 n 0000 ~ 02580679 n 0000 ~ 02580830 n 0000 ~ 02581108 n 0000 ~ 02581482 n 0000 ~ 02581642 n 0000 | any of a number of fishes of the family Carangidae -02580546 05 n 02 Trachurus 0 genus_Trachurus 0 002 @ 01432517 n 0000 #m 02575766 n 0000 | the scads (particularly horse mackerels) -02580679 05 n 05 horse_mackerel 1 jack_mackerel 0 Spanish_mackerel 3 saurel 2 Trachurus_symmetricus 0 001 @ 02580336 n 0000 | a California food fish -02580830 05 n 03 horse_mackerel 2 saurel 1 Trachurus_trachurus 0 001 @ 02580336 n 0000 | large elongated compressed food fish of the Atlantic waters of Europe -02580991 05 n 02 Selar 0 genus_Selar 0 003 @ 01432517 n 0000 #m 02575766 n 0000 %m 02581108 n 0000 | big-eyed scad -02581108 05 n 04 bigeye_scad 0 big-eyed_scad 0 goggle-eye 0 Selar_crumenophthalmus 0 002 @ 02580336 n 0000 #m 02580991 n 0000 | of Atlantic coastal waters; commonly used for bait -02581289 05 n 02 Decapterus 0 genus_Decapterus 0 004 @ 01432517 n 0000 #m 02575766 n 0000 %m 02581482 n 0000 %m 02581642 n 0000 | scads especially mackerel scad; cosmopolitan in distribution -02581482 05 n 03 mackerel_scad 0 mackerel_shad 0 Decapterus_macarellus 0 002 @ 02580336 n 0000 #m 02581289 n 0000 | small silvery fish; Nova Scotia to Brazil -02581642 05 n 04 round_scad 0 cigarfish 0 quiaquia 0 Decapterus_punctatus 0 002 @ 02580336 n 0000 #m 02581289 n 0000 | small fusiform fish of western Atlantic -02581803 05 n 02 Coryphaenidae 0 family_Coryphaenidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02581957 n 0000 | large active pelagic percoid fish -02581957 05 n 03 dolphinfish 0 dolphin 1 mahimahi 0 006 @ 02554730 n 0000 #m 02581803 n 0000 ;r 09078231 n 0000 ~ 02582220 n 0000 ~ 02582349 n 0000 %p 07778938 n 0000 | large slender food and game fish widely distributed in warm seas (especially around Hawaii) -02582220 05 n 01 Coryphaena_hippurus 0 001 @ 02581957 n 0000 | the more common dolphinfish valued as food; about six feet long -02582349 05 n 01 Coryphaena_equisetis 0 001 @ 02581957 n 0000 | a kind of dolphinfish -02582437 05 n 02 Bramidae 0 family_Bramidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02582591 n 0000 | deep-bodied percoid fishes of the open seas -02582591 05 n 02 Brama 0 genus_Brama 0 003 @ 01432517 n 0000 #m 02582437 n 0000 %m 02582721 n 0000 | type genus of the Bramidae -02582721 05 n 02 pomfret 0 Brama_raii 0 002 @ 02590702 n 0000 #m 02582591 n 0000 | deep-bodied sooty-black pelagic spiny-finned fish of the northern Atlantic and northern Pacific; valued for food -02582919 05 n 02 Branchiostegidae 0 family_Branchiostegidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02583096 n 0000 | small family of marine fishes having covered gills -02583096 05 n 02 blanquillo 0 tilefish 2 002 @ 02554730 n 0000 #m 02582919 n 0000 | important marine food fishes -02583211 05 n 02 Characidae 0 family_Characidae 0 006 @ 01429349 n 0000 #m 01437805 n 0000 %m 02583567 n 0000 %m 02583768 n 0000 %m 02584004 n 0000 %m 02584325 n 0000 | tropical freshwater fishes of Africa and South America and Central America -02583457 05 n 02 Characinidae 0 family_Characinidae 0 001 @ 01429349 n 0000 | former name of the Characidae -02583567 05 n 03 characin 0 characin_fish 0 characid 0 005 @ 01438208 n 0000 #m 02583211 n 0000 ~ 02583890 n 0000 ~ 02584145 n 0000 ~ 02584449 n 0000 | any freshwater fish of the family Characinidae -02583768 05 n 02 Hemigrammus 0 genus_Hemigrammus 0 003 @ 01432517 n 0000 #m 02583211 n 0000 %m 02583890 n 0000 | tetras -02583890 05 n 01 tetra 0 002 @ 02583567 n 0000 #m 02583768 n 0000 | brightly colored tropical freshwater fishes -02584004 05 n 02 Paracheirodon 0 genus_Paracheirodon 0 003 @ 01432517 n 0000 #m 02583211 n 0000 %m 02584145 n 0000 | a genus of Characidae -02584145 05 n 02 cardinal_tetra 0 Paracheirodon_axelrodi 0 002 @ 02583567 n 0000 #m 02584004 n 0000 | small bright red and blue aquarium fish from streams in Brazil and Colombia -02584325 05 n 02 Serrasalmus 0 genus_Serrasalmus 0 003 @ 01432517 n 0000 #m 02583211 n 0000 %m 02584449 n 0000 | piranhas -02584449 05 n 03 piranha 0 pirana 0 caribe 0 002 @ 02583567 n 0000 #m 02584325 n 0000 | small voraciously carnivorous freshwater fishes of South America that attack and destroy living animals -02584643 05 n 01 tentacle 0 004 @ 05470189 n 0000 + 02811774 a 0101 ~ 02584915 n 0000 ~ 02585285 n 0000 | any of various elongated tactile or prehensile flexible organs that occur on the head or near the mouth in many animals; used for feeling or grasping or locomotion -02584915 05 n 02 antenna 0 feeler 1 005 @ 02584643 n 0000 + 02286027 v 0201 + 01209678 v 0201 + 02628337 a 0102 + 02628337 a 0101 | one of a pair of mobile appendages on the head of e.g. insects and crustaceans; typically sensitive to touch and taste -02585168 05 n 01 arista 0 001 @ 05470189 n 0000 | bristlelike process near the tip of the antenna of certain flies -02585285 05 n 02 barbel 0 feeler 2 004 @ 02584643 n 0000 + 02286027 v 0201 + 01209678 v 0201 + 00145083 a 0102 | slender tactile process on the jaws of a fish -02585446 05 n 02 swimmeret 0 pleopod 0 004 @ 05559908 n 0000 #p 01982650 n 0000 #p 01986806 n 0000 #p 01990800 n 0000 | one of the paired abdominal appendages of certain aquatic crustaceans that function primarily for carrying the eggs in females and are usually adapted for swimming -02585732 05 n 02 Cichlidae 0 family_Cichlidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02585872 n 0000 %m 02586129 n 0000 | cichlids -02585872 05 n 02 cichlid 0 cichlid_fish 0 003 @ 02554730 n 0000 #m 02585732 n 0000 ~ 02586238 n 0000 | freshwater fishes of tropical America and Africa and Asia similar to American sunfishes; some are food fishes; many small ones are popular in aquariums -02586129 05 n 02 Tilapia 0 genus_Tilapia 0 002 @ 01432517 n 0000 #m 02585732 n 0000 | a genus of Cichlidae -02586238 05 n 02 bolti 0 Tilapia_nilotica 0 001 @ 02585872 n 0000 | important food fish of the Nile and other rivers of Africa and Asia Minor -02586382 05 n 02 Lutjanidae 0 family_Lutjanidae 0 005 @ 01429349 n 0000 #m 02553196 n 0000 %m 02586543 n 0000 %m 02586865 n 0000 %m 02587761 n 0000 | snappers -02586543 05 n 01 snapper 1 009 @ 02554730 n 0000 @ 02512938 n 0000 #m 02586382 n 0000 ~ 02587051 n 0000 ~ 02587300 n 0000 ~ 02587479 n 0000 ~ 02587618 n 0000 ~ 02587877 n 0000 %p 07797189 n 0000 | any of several large sharp-toothed marine food and sport fishes of the family Lutjanidae of mainly tropical coastal waters -02586865 05 n 02 Lutjanus 0 genus_Lutjanus 0 005 @ 01432517 n 0000 #m 02586382 n 0000 %m 02587051 n 0000 %m 02587300 n 0000 %m 02587618 n 0000 | type genus of the Lutjanidae: snappers -02587051 05 n 02 red_snapper 0 Lutjanus_blackfordi 0 003 @ 02586543 n 0000 #m 02586865 n 0000 %p 07797357 n 0000 | an esteemed food fish with pinkish red head and body; common in the Atlantic coastal waters of North America and the Gulf of Mexico -02587300 05 n 04 grey_snapper 0 gray_snapper 0 mangrove_snapper 0 Lutjanus_griseus 0 002 @ 02586543 n 0000 #m 02586865 n 0000 | found in shallow waters off the coast of Florida -02587479 05 n 03 mutton_snapper 0 muttonfish 0 Lutjanus_analis 0 001 @ 02586543 n 0000 | similar to and often marketed as `red snapper'; -02587618 05 n 02 schoolmaster 0 Lutjanus_apodus 0 002 @ 02586543 n 0000 #m 02586865 n 0000 | food fish of warm Caribbean and Atlantic waters -02587761 05 n 02 Ocyurus 0 genus_Ocyurus 0 003 @ 01432517 n 0000 #m 02586382 n 0000 %m 02587877 n 0000 | snappers -02587877 05 n 03 yellowtail 2 yellowtail_snapper 0 Ocyurus_chrysurus 0 002 @ 02586543 n 0000 #m 02587761 n 0000 | superior food fish of the tropical Atlantic and Caribbean with broad yellow stripe along the sides and on the tail -02588108 05 n 02 Haemulidae 0 family_Haemulidae 0 006 @ 01429349 n 0000 #m 02553196 n 0000 %m 02588286 n 0000 %m 02588580 n 0000 %m 02589486 n 0000 %m 02589955 n 0000 | grunts -02588286 05 n 01 grunt 0 010 @ 02554730 n 0000 #m 02588108 n 0000 ~ 02588794 n 0000 ~ 02588945 n 0000 ~ 02589062 n 0000 ~ 02589196 n 0000 ~ 02589316 n 0000 ~ 02589623 n 0000 ~ 02589796 n 0000 ~ 02590094 n 0000 | medium-sized tropical marine food fishes that utter grunting sounds when caught -02588580 05 n 02 Haemulon 0 genus_Haemulon 0 007 @ 01432517 n 0000 #m 02588108 n 0000 %m 02588794 n 0000 %m 02588945 n 0000 %m 02589062 n 0000 %m 02589196 n 0000 %m 02589316 n 0000 | type genus of the Haemulidae -02588794 05 n 02 margate 0 Haemulon_album 0 002 @ 02588286 n 0000 #m 02588580 n 0000 | a grunt with a red mouth that is found from Florida to Brazil -02588945 05 n 02 Spanish_grunt 0 Haemulon_macrostomum 0 002 @ 02588286 n 0000 #m 02588580 n 0000 | a kind of grunt -02589062 05 n 02 tomtate 0 Haemulon_aurolineatum 0 002 @ 02588286 n 0000 #m 02588580 n 0000 | found off the West Indies and Florida -02589196 05 n 02 cottonwick 0 Haemulon_malanurum 0 002 @ 02588286 n 0000 #m 02588580 n 0000 | of warm Atlantic waters -02589316 05 n 03 sailor's-choice 1 sailors_choice 0 Haemulon_parra 0 002 @ 02588286 n 0000 #m 02588580 n 0000 | a grunt found from Florida to Brazil and Gulf of Mexico -02589486 05 n 02 Anisotremus 0 genus_Anisotremus 0 003 @ 01432517 n 0000 #m 02588108 n 0000 %m 02589623 n 0000 | a genus of Haemulidae -02589623 05 n 03 porkfish 0 pork-fish 0 Anisotremus_virginicus 0 002 @ 02588286 n 0000 #m 02589486 n 0000 | black and gold grunt found from Bermuda to Caribbean to Brazil -02589796 05 n 03 pompon 0 black_margate 0 Anisotremus_surinamensis 0 001 @ 02588286 n 0000 | dusky grey food fish found from Louisiana and Florida southward -02589955 05 n 02 Orthopristis 0 genus_Orthopristis 0 003 @ 01432517 n 0000 #m 02588108 n 0000 %m 02590094 n 0000 | a genus of Haemulidae -02590094 05 n 03 pigfish 0 hogfish 0 Orthopristis_chrysopterus 0 002 @ 02588286 n 0000 #m 02589955 n 0000 | found from Long Island southward -02590237 05 n 02 Sparidae 0 family_Sparidae 0 010 @ 01429349 n 0000 #m 02553196 n 0000 %m 02590495 n 0000 %m 02591205 n 0000 %m 02591493 n 0000 %m 02591757 n 0000 %m 02592244 n 0000 %m 02592607 n 0000 %m 02592866 n 0000 %m 02593353 n 0000 | porgies; scups -02590495 05 n 02 sparid 0 sparid_fish 0 005 @ 02554730 n 0000 #m 02590237 n 0000 ~ 02592055 n 0000 ~ 02592371 n 0000 ~ 02593019 n 0000 | spiny-finned food fishes of warm waters having well-developed teeth -02590702 05 n 02 sea_bream 0 bream 2 008 @ 02554730 n 0000 #m 02553196 n 0000 ~ 02582721 n 0000 ~ 02590987 n 0000 ~ 02591613 n 0000 ~ 02591911 n 0000 ~ 02593191 n 0000 %p 07777189 n 0000 | any of numerous marine percoid fishes especially (but not exclusively) of the family Sparidae -02590987 05 n 01 porgy 0 005 @ 02590702 n 0000 ~ 02591330 n 0000 ~ 02592734 n 0000 ~ 02593453 n 0000 ~ 02593679 n 0000 | important deep-bodied food and sport fish of warm and tropical coastal waters; found worldwide -02591205 05 n 02 Pagrus 0 genus_Pagrus 0 003 @ 01432517 n 0000 #m 02590237 n 0000 %m 02591330 n 0000 | a genus of Sparidae -02591330 05 n 02 red_porgy 0 Pagrus_pagrus 0 002 @ 02590987 n 0000 #m 02591205 n 0000 | food fish of the Mediterranean and Atlantic coasts of Europe and America -02591493 05 n 02 Pagellus 0 genus_Pagellus 0 003 @ 01432517 n 0000 #m 02590237 n 0000 %m 02591613 n 0000 | sea breams -02591613 05 n 02 European_sea_bream 0 Pagellus_centrodontus 0 002 @ 02590702 n 0000 #m 02591493 n 0000 | food fish of European coastal waters -02591757 05 n 02 Archosargus 0 genus_Archosargus 0 004 @ 01432517 n 0000 #m 02590237 n 0000 %m 02591911 n 0000 %m 02592055 n 0000 | a genus of Sparidae -02591911 05 n 02 Atlantic_sea_bream 0 Archosargus_rhomboidalis 0 002 @ 02590702 n 0000 #m 02591757 n 0000 | sea bream of warm Atlantic waters -02592055 05 n 02 sheepshead 0 Archosargus_probatocephalus 0 002 @ 02590495 n 0000 #m 02591757 n 0000 | large (up to 20 lbs) food fish of the eastern coast of the United States and Mexico -02592244 05 n 02 Lagodon 0 genus_Lagodon 0 003 @ 01432517 n 0000 #m 02590237 n 0000 %m 02592371 n 0000 | a genus of Sparidae -02592371 05 n 04 pinfish 0 sailor's-choice 2 squirrelfish 2 Lagodon_rhomboides 0 002 @ 02590495 n 0000 #m 02592244 n 0000 | similar to sea bream; small spiny-finned fish found in bays along the southeastern coast of the United States -02592607 05 n 02 Calamus 0 genus_Calamus 0 003 @ 01432517 n 0000 #m 02590237 n 0000 %m 02592734 n 0000 | a genus of Sparidae -02592734 05 n 02 sheepshead_porgy 0 Calamus_penna 0 002 @ 02590987 n 0000 #m 02592607 n 0000 | from Florida and Bahamas to Brazil -02592866 05 n 02 Chrysophrys 0 genus_Chrysophrys 0 004 @ 01432517 n 0000 #m 02590237 n 0000 %m 02593019 n 0000 %m 02593191 n 0000 | Australian snapper -02593019 05 n 02 snapper 2 Chrysophrys_auratus 0 003 @ 02590495 n 0000 #m 02592866 n 0000 %p 07797189 n 0000 | Australian food fish having a pinkish body with blue spots -02593191 05 n 02 black_bream 0 Chrysophrys_australis 0 002 @ 02590702 n 0000 #m 02592866 n 0000 | important dark-colored edible food and game fish of Australia -02593353 05 n 02 Stenotomus 0 genus_Stenotomus 0 002 @ 01432517 n 0000 #m 02590237 n 0000 | scups -02593453 05 n 04 scup 2 northern_porgy 0 northern_scup 0 Stenotomus_chrysops 0 002 @ 02590987 n 0000 %p 07790246 n 0000 | found in Atlantic coastal waters of North America from South Carolina to Maine; esteemed as a panfish -02593679 05 n 04 scup 1 southern_porgy 0 southern_scup 0 Stenotomus_aculeatus 0 002 @ 02590987 n 0000 %p 07790081 n 0000 | porgy of southern Atlantic coastal waters of North America -02593863 05 n 02 Sciaenidae 0 family_Sciaenidae 0 013 @ 01429349 n 0000 #m 02553196 n 0000 %m 02594250 n 0000 %m 02594807 n 0000 %m 02595217 n 0000 %m 02595569 n 0000 %m 02595902 n 0000 %m 02596592 n 0000 %m 02596888 n 0000 %m 02597173 n 0000 %m 02598438 n 0000 %m 02598747 n 0000 %m 02599207 n 0000 | warm-water marine fishes including the drums and grunts and croakers and sea trout -02594250 05 n 02 sciaenid_fish 0 sciaenid 0 008 @ 02554730 n 0000 #m 02593863 n 0000 ~ 02594552 n 0000 ~ 02596067 n 0000 ~ 02596252 n 0000 ~ 02596381 n 0000 ~ 02597367 n 0000 ~ 02599052 n 0000 | widely distributed family of carnivorous percoid fishes having a large air bladder used to produce sound -02594552 05 n 02 drum 0 drumfish 0 005 @ 02594250 n 0000 ~ 02594942 n 0000 ~ 02595056 n 0000 ~ 02595339 n 0000 ~ 02595702 n 0000 | small to medium-sized bottom-dwelling food and game fishes of shallow coastal and fresh waters that make a drumming noise -02594807 05 n 02 Equetus 0 genus_Equetus 0 004 @ 01432517 n 0000 #m 02593863 n 0000 %m 02594942 n 0000 %m 02595056 n 0000 | drumfish -02594942 05 n 02 striped_drum 0 Equetus_pulcher 0 002 @ 02594552 n 0000 #m 02594807 n 0000 | a kind of drumfish -02595056 05 n 02 jackknife-fish 0 Equetus_lanceolatus 0 002 @ 02594552 n 0000 #m 02594807 n 0000 | black-and-white drumfish with an erect elongated dorsal fin -02595217 05 n 02 Bairdiella 0 genus_Bairdiella 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02595339 n 0000 | drumfish -02595339 05 n 03 silver_perch 2 mademoiselle 0 Bairdiella_chrysoura 0 002 @ 02594552 n 0000 #m 02595217 n 0000 | small silvery drumfish often mistaken for white perch; found along coasts of United States from New York to Mexico -02595569 05 n 02 Sciaenops 0 genus_Sciaenops 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02595702 n 0000 | a genus of Sciaenidae -02595702 05 n 04 red_drum 0 channel_bass 0 redfish 2 Sciaenops_ocellatus 0 002 @ 02594552 n 0000 #m 02595569 n 0000 | large edible fish found off coast of United States from Massachusetts to Mexico -02595902 05 n 02 Sciaena 0 genus_Sciaena 0 004 @ 01432517 n 0000 #m 02593863 n 0000 %m 02596067 n 0000 %m 02596252 n 0000 | type genus of the Sciaenidae: croakers -02596067 05 n 03 mulloway 0 jewfish 2 Sciaena_antarctica 0 002 @ 02594250 n 0000 #m 02595902 n 0000 | large important food fish of Australia; almost indistinguishable from the maigre -02596252 05 n 03 maigre 0 maiger 0 Sciaena_aquila 0 002 @ 02594250 n 0000 #m 02595902 n 0000 | large European marine food fish -02596381 05 n 01 croaker 0 007 @ 02594250 n 0000 + 01064401 v 0101 ~ 02596720 n 0000 ~ 02597004 n 0000 ~ 02598573 n 0000 ~ 02598878 n 0000 %p 07778342 n 0000 | any of several fishes that make a croaking noise -02596592 05 n 02 Micropogonias 0 genus_Micropogonias 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02596720 n 0000 | croakers -02596720 05 n 02 Atlantic_croaker 0 Micropogonias_undulatus 0 002 @ 02596381 n 0000 #m 02596592 n 0000 | a silvery-bodied croaker with dark markings and tiny barbels -02596888 05 n 02 Umbrina 0 genus_Umbrina 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02597004 n 0000 | croakers -02597004 05 n 04 yellowfin_croaker 0 surffish 2 surf_fish 2 Umbrina_roncador 0 002 @ 02596381 n 0000 #m 02596888 n 0000 | a fish of the Pacific coast of North America -02597173 05 n 02 Menticirrhus 0 genus_Menticirrhus 0 006 @ 01432517 n 0000 #m 02593863 n 0000 %m 02597367 n 0000 %m 02597608 n 0000 %m 02597818 n 0000 %m 02598252 n 0000 | kingfishes; whiting -02597367 05 n 01 whiting 1 008 @ 02594250 n 0000 #m 02597173 n 0000 ~ 02597608 n 0000 ~ 02597818 n 0000 ~ 02597972 n 0000 ~ 02598134 n 0000 ~ 02598252 n 0000 %p 07778494 n 0000 | any of several food fishes of North American coastal waters -02597608 05 n 01 kingfish 1 003 @ 02597367 n 0000 #m 02597173 n 0000 %p 07784810 n 0000 | any of several food and game fishes of the drum family indigenous to warm Atlantic waters of the North American coast -02597818 05 n 02 king_whiting 0 Menticirrhus_americanus 0 002 @ 02597367 n 0000 #m 02597173 n 0000 | whiting of the southeastern coast of North America -02597972 05 n 02 northern_whiting 0 Menticirrhus_saxatilis 0 001 @ 02597367 n 0000 | whiting of the east coast of United States; closely resembles king whiting -02598134 05 n 02 corbina 0 Menticirrhus_undulatus 0 001 @ 02597367 n 0000 | bluish-grey whiting of California coast -02598252 05 n 02 silver_whiting 0 Menticirrhus_littoralis 0 002 @ 02597367 n 0000 #m 02597173 n 0000 | a dull silvery whiting of southern Atlantic and Gulf Coasts of the United States -02598438 05 n 02 Genyonemus 0 genus_Genyonemus 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02598573 n 0000 | a genus of Sciaenidae -02598573 05 n 04 white_croaker 1 chenfish 0 kingfish 3 Genyonemus_lineatus 0 002 @ 02596381 n 0000 #m 02598438 n 0000 | small silvery marine food fish found off California -02598747 05 n 02 Seriphus 0 genus_Seriphus 0 003 @ 01432517 n 0000 #m 02593863 n 0000 %m 02598878 n 0000 | a genus of Sciaenidae -02598878 05 n 03 white_croaker 2 queenfish 0 Seriphus_politus 0 002 @ 02596381 n 0000 #m 02598747 n 0000 | silvery and bluish drumfish of shallow California coastal waters -02599052 05 n 01 sea_trout 2 003 @ 02594250 n 0000 ~ 02599347 n 0000 ~ 02599557 n 0000 | any of several sciaenid fishes of North American coastal waters -02599207 05 n 02 Cynoscion 0 genus_Cynoscion 0 004 @ 01432517 n 0000 #m 02593863 n 0000 %m 02599347 n 0000 %m 02599557 n 0000 | sea trout -02599347 05 n 02 weakfish 0 Cynoscion_regalis 0 003 @ 02599052 n 0000 #m 02599207 n 0000 %p 07792470 n 0000 | food and game fish of North American coastal waters with a mouth from which hooks easily tear out -02599557 05 n 04 spotted_weakfish 0 spotted_sea_trout 0 spotted_squeateague 0 Cynoscion_nebulosus 0 003 @ 02599052 n 0000 #m 02599207 n 0000 %p 07792470 n 0000 | weakfish of southern Atlantic and Gulf Coasts of United States -02599784 05 n 02 Mullidae 0 family_Mullidae 0 005 @ 01429349 n 0000 #m 02553196 n 0000 %m 02599958 n 0000 %m 02600135 n 0000 %m 02600657 n 0000 | goatfishes or red mullets -02599958 05 n 01 mullet 1 004 @ 02554730 n 0000 @ 01316579 n 0000 #m 02599784 n 0000 ~ 02600298 n 0000 | bottom dwelling marine warm water fishes with two barbels on the chin -02600135 05 n 02 Mullus 0 genus_Mullus 0 004 @ 01432517 n 0000 #m 02599784 n 0000 %m 02600298 n 0000 %m 02600503 n 0000 | type genus of the Mullidae: goatfishes -02600298 05 n 04 goatfish 0 red_mullet 0 surmullet 0 Mullus_surmuletus 0 004 @ 02599958 n 0000 #m 02600135 n 0000 ~ 02600503 n 0000 ~ 02600798 n 0000 | brightly colored tropical fishes with chin barbels -02600503 05 n 02 red_goatfish 0 Mullus_auratus 0 002 @ 02600298 n 0000 #m 02600135 n 0000 | body bright scarlet with 2 yellow to reddish strips on side -02600657 05 n 02 Mulloidichthys 0 genus_Mulloidichthys 0 003 @ 01432517 n 0000 #m 02599784 n 0000 %m 02600798 n 0000 | a genus of Mullidae -02600798 05 n 02 yellow_goatfish 0 Mulloidichthys_martinicus 0 002 @ 02600298 n 0000 #m 02600657 n 0000 | schooling goatfish; greyish with yellow stripe -02600953 05 n 02 Mugiloidea 0 suborder_Mugiloidea 0 005 @ 01342529 n 0000 #m 02553196 n 0000 %m 02601200 n 0000 %m 02602215 n 0000 %m 02602970 n 0000 | fishes distinguished by abdominal pelvic fins: families Mugilidae; Atherinidae; Sphyraenidae -02601200 05 n 02 Mugilidae 0 family_Mugilidae 0 004 @ 01429349 n 0000 #m 02600953 n 0000 %m 02601344 n 0000 %m 02601589 n 0000 | grey mullets -02601344 05 n 03 mullet 2 grey_mullet 0 gray_mullet 0 006 @ 02554730 n 0000 #m 02601200 n 0000 ~ 02601767 n 0000 ~ 02601921 n 0000 ~ 02602059 n 0000 %p 07784367 n 0000 | freshwater or coastal food fishes a spindle-shaped body; found worldwide -02601589 05 n 02 Mugil 0 genus_Mugil 0 005 @ 01432517 n 0000 #m 02601200 n 0000 %m 02601767 n 0000 %m 02601921 n 0000 %m 02602059 n 0000 | type genus of the Mugilidae: mullets -02601767 05 n 02 striped_mullet 0 Mugil_cephalus 0 002 @ 02601344 n 0000 #m 02601589 n 0000 | most important commercial mullet in eastern United States -02601921 05 n 02 white_mullet 0 Mugil_curema 0 002 @ 02601344 n 0000 #m 02601589 n 0000 | silvery mullet of Atlantic and Pacific coasts -02602059 05 n 02 liza 0 Mugil_liza 0 002 @ 02601344 n 0000 #m 02601589 n 0000 | similar to the striped mullet and takes its place in the Caribbean region -02602215 05 n 02 Atherinidae 0 family_Atherinidae 0 004 @ 01429349 n 0000 #m 02600953 n 0000 %m 02602405 n 0000 %m 02602620 n 0000 | small spiny-finned fishes of both salt and fresh water -02602405 05 n 02 silversides 1 silverside 1 003 @ 02552171 n 0000 #m 02602215 n 0000 ~ 02602760 n 0000 | small fishes having a silver stripe along each side; abundant along the Atlantic coast of the United States -02602620 05 n 02 Atherinopsis 0 genus_Atherinopsis 0 003 @ 01432517 n 0000 #m 02602215 n 0000 %m 02602760 n 0000 | a genus of Atherinidae -02602760 05 n 02 jacksmelt 0 Atherinopsis_californiensis 0 002 @ 02602405 n 0000 #m 02602620 n 0000 | a relatively large silversides of the Pacific coast of North America (known to reach 18 inches in length) -02602970 05 n 02 Sphyraenidae 0 family_Sphyraenidae 0 003 @ 01429349 n 0000 #m 02600953 n 0000 %m 02603174 n 0000 | monotypic family of large active fishes of tropical and subtropical waters: barracuda -02603174 05 n 02 Sphyraena 0 genus_Sphyraena 0 002 @ 01432517 n 0000 #m 02602970 n 0000 | type and sole genus of the Sphyraenidae: barracuda -02603317 05 n 01 barracuda 0 002 @ 02552171 n 0000 ~ 02603540 n 0000 | any voracious marine fish of the genus Sphyraena having an elongated cylindrical body and large mouth with projecting lower jaw and long strong teeth -02603540 05 n 02 great_barracuda 0 Sphyraena_barracuda 0 001 @ 02603317 n 0000 | large (up to 6 ft) greyish-brown barracuda highly regarded as a food and sport fish; may be dangerous to swimmers -02603737 05 n 02 Pempheridae 0 family_Pempheridae 0 003 @ 01429349 n 0000 #m 02527813 n 0000 %m 02603862 n 0000 | sweepers -02603862 05 n 01 sweeper 0 002 @ 02528163 n 0000 #m 02603737 n 0000 | little-known nocturnal fish of warm shallow seas with an oblong compressed body -02604014 05 n 02 Kyphosidae 0 family_Kyphosidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02604157 n 0000 %m 02604342 n 0000 | sea chubs -02604157 05 n 01 sea_chub 0 003 @ 02554730 n 0000 #m 02604014 n 0000 ~ 02604480 n 0000 | schooling fishes mostly of Indian and western Pacific oceans; two species in western Atlantic -02604342 05 n 02 Kyphosus 0 genus_Kyphosus 0 003 @ 01432517 n 0000 #m 02604014 n 0000 %m 02604480 n 0000 | type genus of the Kyphosidae -02604480 05 n 03 Bermuda_chub 0 rudderfish 2 Kyphosus_sectatrix 0 002 @ 02604157 n 0000 #m 02604342 n 0000 | food and game fish around Bermuda and Florida; often follow ships -02604657 05 n 02 Ephippidae 0 family_Ephippidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02604811 n 0000 | small family comprising the spadefishes -02604811 05 n 02 Chaetodipterus 0 genus_Chaetodipterus 0 003 @ 01432517 n 0000 #m 02604657 n 0000 %m 02604954 n 0000 | a genus of Ephippidae -02604954 05 n 03 spadefish 0 angelfish 3 Chaetodipterus_faber 0 002 @ 02554730 n 0000 #m 02604811 n 0000 | deep-bodied disk-shaped food fish of warmer western Atlantic coastal waters -02605139 05 n 02 Chaetodontidae 0 family_Chaetodontidae 0 005 @ 01429349 n 0000 #m 02553196 n 0000 %m 02605316 n 0000 %m 02605571 n 0000 %m 02605809 n 0000 | butterfly fishes -02605316 05 n 01 butterfly_fish 0 005 @ 02554730 n 0000 #m 02605139 n 0000 ~ 02605703 n 0000 ~ 02605936 n 0000 ~ 02606052 n 0000 | small usually brilliantly colored tropical marine fishes having narrow deep bodies with large broad fins; found worldwide -02605571 05 n 01 genus_Chaetodon 0 003 @ 01432517 n 0000 #m 02605139 n 0000 %m 02605703 n 0000 | type genus of the Chaetodontidae -02605703 05 n 01 chaetodon 0 002 @ 02605316 n 0000 #m 02605571 n 0000 | any fish of the genus Chaetodon -02605809 05 n 02 Pomacanthus 0 genus_Pomacanthus 0 003 @ 01432517 n 0000 #m 02605139 n 0000 %m 02605936 n 0000 | angelfishes -02605936 05 n 01 angelfish 2 002 @ 02605316 n 0000 #m 02605809 n 0000 | a butterfly fish of the genus Pomacanthus -02606052 05 n 02 rock_beauty 0 Holocanthus_tricolor 0 001 @ 02605316 n 0000 | gold and black butterflyfish found from West Indies to Brazil -02606194 05 n 02 Pomacentridae 0 family_Pomacentridae 0 006 @ 01429349 n 0000 #m 02553196 n 0000 %m 02606384 n 0000 %m 02606590 n 0000 %m 02606926 n 0000 %m 02607345 n 0000 | damselfishes -02606384 05 n 02 damselfish 0 demoiselle 0 005 @ 02554730 n 0000 #m 02606194 n 0000 ~ 02606751 n 0000 ~ 02607072 n 0000 ~ 02607470 n 0000 | small brilliantly colored tropical marine fishes of coral reefs -02606590 05 n 02 Pomacentrus 0 genus_Pomacentrus 0 003 @ 01432517 n 0000 #m 02606194 n 0000 %m 02606751 n 0000 | type genus of the Pomacentridae: damselfishes -02606751 05 n 02 beaugregory 0 Pomacentrus_leucostictus 0 002 @ 02606384 n 0000 #m 02606590 n 0000 | a blue and yellow damselfish of Bermuda and Florida and the West Indies -02606926 05 n 02 Amphiprion 0 genus_Amphiprion 0 004 @ 01432517 n 0000 #m 02606194 n 0000 %m 02607072 n 0000 %m 02607201 n 0000 | damsel fishes -02607072 05 n 01 anemone_fish 0 003 @ 02606384 n 0000 #m 02606926 n 0000 ~ 02607201 n 0000 | live associated with sea anemones -02607201 05 n 02 clown_anemone_fish 0 Amphiprion_percula 0 002 @ 02607072 n 0000 #m 02606926 n 0000 | an anemone fish of the genus Amphiprion -02607345 05 n 02 Abudefduf 0 genus_Abudefduf 0 003 @ 01432517 n 0000 #m 02606194 n 0000 %m 02607470 n 0000 | damsel fishes -02607470 05 n 02 sergeant_major 0 Abudefduf_saxatilis 0 002 @ 02606384 n 0000 #m 02607345 n 0000 | large blue-grey black-striped damselfish; nearly worldwide -02607630 05 n 02 Labridae 0 family_Labridae 0 009 @ 01429349 n 0000 #m 02553196 n 0000 %m 02608151 n 0000 %m 02608429 n 0000 %m 02608708 n 0000 %m 02609169 n 0000 %m 02609466 n 0000 %m 02609951 n 0000 %m 02610234 n 0000 | wrasses -02607862 05 n 01 wrasse 0 009 @ 02554730 n 0000 ~ 02608284 n 0000 ~ 02608547 n 0000 ~ 02608860 n 0000 ~ 02608996 n 0000 ~ 02609302 n 0000 ~ 02609617 n 0000 ~ 02610066 n 0000 ~ 02610373 n 0000 | chiefly tropical marine fishes with fleshy lips and powerful teeth; usually brightly colored -02608151 05 n 02 Achoerodus 0 genus_Achoerodus 0 003 @ 01432517 n 0000 #m 02607630 n 0000 %m 02608284 n 0000 | a genus of Labridae -02608284 05 n 03 pigfish 1 giant_pigfish 0 Achoerodus_gouldii 0 002 @ 02607862 n 0000 #m 02608151 n 0000 | found around the Great Barrier Reef -02608429 05 n 02 Lachnolaimus 0 genus_Lachnolaimus 0 002 @ 01432517 n 0000 #m 02607630 n 0000 | a genus of Labridae -02608547 05 n 03 hogfish 1 hog_snapper 0 Lachnolaimus_maximus 0 001 @ 02607862 n 0000 | large wrasse of western Atlantic; head of male resembles a pig's snout -02608708 05 n 02 Halicoeres 0 genus_Halicoeres 0 004 @ 01432517 n 0000 #m 02607630 n 0000 %m 02608860 n 0000 %m 02608996 n 0000 | a genus of Labridae -02608860 05 n 02 slippery_dick 0 Halicoeres_bivittatus 0 002 @ 02607862 n 0000 #m 02608708 n 0000 | small wrasse of tropical Atlantic -02608996 05 n 03 puddingwife 0 pudding-wife 0 Halicoeres_radiatus 0 002 @ 02607862 n 0000 #m 02608708 n 0000 | bluish and bronze wrasse; found from Florida keys to Brazil -02609169 05 n 02 Thalassoma 0 genus_Thalassoma 0 003 @ 01432517 n 0000 #m 02607630 n 0000 %m 02609302 n 0000 | a genus of Labridae -02609302 05 n 02 bluehead 0 Thalassoma_bifasciatum 0 002 @ 02607862 n 0000 #m 02609169 n 0000 | small Atlantic wrasse the male of which has a brilliant blue head -02609466 05 n 02 Hemipteronatus 0 genus_Hemipteronatus 0 004 @ 01432517 n 0000 #m 02607630 n 0000 %m 02609617 n 0000 %m 02609823 n 0000 | razor fish -02609617 05 n 02 razor_fish 0 razor-fish 0 003 @ 02607862 n 0000 #m 02609466 n 0000 ~ 02609823 n 0000 | any of several small wrasses with compressed sharp-edged heads of the West Indies and Mediterranean -02609823 05 n 02 pearly_razorfish 0 Hemipteronatus_novacula 0 002 @ 02609617 n 0000 #m 02609466 n 0000 | a kind of razor fish -02609951 05 n 02 Tautoga 0 genus_Tautoga 0 003 @ 01432517 n 0000 #m 02607630 n 0000 %m 02610066 n 0000 | tautogs -02610066 05 n 03 tautog 0 blackfish 3 Tautoga_onitis 0 002 @ 02607862 n 0000 #m 02609951 n 0000 | large dark-colored food fish of the Atlantic coast of North America -02610234 05 n 02 Tautogolabrus 0 genus_Tautogolabrus 0 003 @ 01432517 n 0000 #m 02607630 n 0000 %m 02610373 n 0000 | a genus of Labridae -02610373 05 n 03 cunner 0 bergall 0 Tautogolabrus_adspersus 0 002 @ 02607862 n 0000 #m 02610234 n 0000 | common in north Atlantic coastal waters of the United States -02610541 05 n 02 Scaridae 0 family_Scaridae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02610664 n 0000 | parrotfishes -02610664 05 n 03 parrotfish 0 polly_fish 0 pollyfish 0 002 @ 02554730 n 0000 #m 02610541 n 0000 | gaudy tropical fishes with parrotlike beaks formed by fusion of teeth -02610834 05 n 02 Polynemidae 0 family_Polynemidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02610980 n 0000 %m 02611154 n 0000 | threadfins -02610980 05 n 01 threadfin 0 003 @ 02554730 n 0000 #m 02610834 n 0000 ~ 02611294 n 0000 | mullet-like tropical marine fishes having pectoral fins with long threadlike rays -02611154 05 n 02 Polydactylus 0 genus_Polydactylus 0 003 @ 01432517 n 0000 #m 02610834 n 0000 %m 02611294 n 0000 | a genus of Polynemidae -02611294 05 n 02 barbu 0 Polydactylus_virginicus 0 002 @ 02610980 n 0000 #m 02611154 n 0000 | found along western Atlantic coast -02611425 05 n 02 Opisthognathidae 0 family_Opisthognathidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02611561 n 0000 | jawfishes -02611561 05 n 01 jawfish 0 002 @ 02554730 n 0000 #m 02611425 n 0000 | small large-mouthed tropical marine fishes common along sandy bottoms; males brood egg balls in their mouths; popular aquarium fishes -02611767 05 n 02 Uranoscopidae 0 family_Uranoscopidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02611898 n 0000 | stargazers -02611898 05 n 01 stargazer 0 002 @ 02554730 n 0000 #m 02611767 n 0000 | heavy-bodied marine bottom-lurkers with eyes on flattened top of the head -02612046 05 n 02 Dactyloscopidae 0 family_Dactyloscopidae 0 002 @ 01429349 n 0000 %m 02612167 n 0000 | sand stargazers -02612167 05 n 01 sand_stargazer 0 002 @ 02554730 n 0000 #m 02612046 n 0000 | small pallid fishes of shoal tropical waters of North America and South America having eyes on stalks atop head; they burrow in sand to await prey -02612393 05 n 02 Blennioidea 0 suborder_Blennioidea 0 009 @ 01342529 n 0000 #m 02553196 n 0000 %m 02612657 n 0000 %m 02612982 n 0000 %m 02613960 n 0000 %m 02614788 n 0000 %m 02615494 n 0000 %m 02616572 n 0000 %m 02617029 n 0000 | blennies; butterfishes; gunnels -02612657 05 n 02 blennioid_fish 0 blennioid 0 010 @ 02554730 n 0000 #m 02612393 n 0000 ~ 02613181 n 0000 ~ 02614140 n 0000 ~ 02614482 n 0000 ~ 02614978 n 0000 ~ 02615642 n 0000 ~ 02616397 n 0000 ~ 02616851 n 0000 ~ 02617207 n 0000 | elongated mostly scaleless marine fishes with large pectoral fins and reduced pelvic fins -02612982 05 n 02 Blenniidae 0 family_Blenniidae 0 005 @ 01429349 n 0000 #m 02612393 n 0000 %m 02613181 n 0000 %m 02613434 n 0000 %m 02613687 n 0000 | a family of fish including: combtooth blennies -02613181 05 n 02 blenny 0 combtooth_blenny 0 004 @ 02612657 n 0000 #m 02612982 n 0000 ~ 02613572 n 0000 ~ 02613820 n 0000 | small usually scaleless fishes with comb-like teeth living about rocky shores; are territorial and live in holes between rocks -02613434 05 n 02 Blennius 0 genus_Blennius 0 003 @ 01432517 n 0000 #m 02612982 n 0000 %m 02613572 n 0000 | type genus of the Blenniidae -02613572 05 n 02 shanny 0 Blennius_pholis 0 002 @ 02613181 n 0000 #m 02613434 n 0000 | European scaleless blenny -02613687 05 n 02 Scartella 0 genus_Scartella 0 003 @ 01432517 n 0000 #m 02612982 n 0000 %m 02613820 n 0000 | a genus of Blenniidae -02613820 05 n 02 Molly_Miller 0 Scartella_cristata 0 002 @ 02613181 n 0000 #m 02613687 n 0000 | inhabits both coasts of tropical Atlantic -02613960 05 n 02 Clinidae 0 family_Clinidae 0 004 @ 01429349 n 0000 #m 02612393 n 0000 %m 02614140 n 0000 %m 02614288 n 0000 | viviparous blennies of temperate and tropical seas -02614140 05 n 02 clinid 0 clinid_fish 0 002 @ 02612657 n 0000 #m 02613960 n 0000 | mostly small blennioid fishes of coral reefs and seagrass beds -02614288 05 n 02 Chaenopsis 0 genus_Chaenopsis 0 004 @ 01432517 n 0000 #m 02613960 n 0000 %m 02614482 n 0000 %m 02614653 n 0000 | a genus of fish of the family Clinidae including pikeblennies -02614482 05 n 01 pikeblenny 0 003 @ 02612657 n 0000 #m 02614288 n 0000 ~ 02614653 n 0000 | tropical American fishes; males are aggressively defensive of their territory -02614653 05 n 02 bluethroat_pikeblenny 0 Chaenopsis_ocellata 0 002 @ 02614482 n 0000 #m 02614288 n 0000 | found from Florida to Cuba -02614788 05 n 03 Pholidae 0 family_Pholidae 0 family_Pholididae 0 004 @ 01429349 n 0000 #m 02612393 n 0000 %m 02614978 n 0000 %m 02615157 n 0000 | a family of fish of suborder Blennioidea -02614978 05 n 02 gunnel 0 bracketed_blenny 0 003 @ 02612657 n 0000 #m 02614788 n 0000 ~ 02615298 n 0000 | small eellike fishes common in shallow waters of the northern Atlantic -02615157 05 n 02 Pholis 0 genus_Pholis 0 003 @ 01432517 n 0000 #m 02614788 n 0000 %m 02615298 n 0000 | type genus of the Pholidae: gunnels -02615298 05 n 03 rock_gunnel 0 butterfish 2 Pholis_gunnellus 0 003 @ 02614978 n 0000 #m 02615157 n 0000 %p 07786005 n 0000 | slippery scaleless food fish of the northern Atlantic coastal waters -02615494 05 n 02 Stichaeidae 0 family_Stichaeidae 0 004 @ 01429349 n 0000 #m 02612393 n 0000 %m 02615829 n 0000 %m 02616251 n 0000 | pricklebacks -02615642 05 n 01 prickleback 0 003 @ 02612657 n 0000 ~ 02615980 n 0000 ~ 02616128 n 0000 | small elongate fishes of shallow northern seas; a long dorsal fin consists entirely of spines -02615829 05 n 02 Lumpenus 0 genus_Lumpenus 0 004 @ 01432517 n 0000 #m 02615494 n 0000 %m 02615980 n 0000 %m 02616128 n 0000 | a genus of Stichaeidae -02615980 05 n 02 snakeblenny 0 Lumpenus_lumpretaeformis 0 002 @ 02615642 n 0000 #m 02615829 n 0000 | found in Arctic and northern Atlantic waters -02616128 05 n 01 eelblenny 0 002 @ 02615642 n 0000 #m 02615829 n 0000 | eellike fishes found in subarctic coastal waters -02616251 05 n 02 Cryptacanthodes 0 genus_Cryptacanthodes 0 003 @ 01432517 n 0000 #m 02615494 n 0000 %m 02616397 n 0000 | a genus of Stichaeidae -02616397 05 n 03 wrymouth 0 ghostfish 0 Cryptacanthodes_maculatus 0 002 @ 02612657 n 0000 #m 02616251 n 0000 | eellike Atlantic bottom fish with large almost vertical mouth -02616572 05 n 02 Anarhichadidae 0 family_Anarhichadidae 0 003 @ 01429349 n 0000 #m 02612393 n 0000 %m 02616705 n 0000 | wolffishes -02616705 05 n 02 Anarhichas 0 genus_Anarhichas 0 003 @ 01432517 n 0000 #m 02616572 n 0000 %m 02616851 n 0000 | type genus of the Anarhichadidae -02616851 05 n 03 wolffish 1 wolf_fish 1 catfish 2 002 @ 02612657 n 0000 #m 02616705 n 0000 | large ferocious northern deep-sea food fishes with strong teeth and no pelvic fins -02617029 05 n 02 Zoarcidae 0 family_Zoarcidae 0 006 @ 01429349 n 0000 #m 02612393 n 0000 %m 02617207 n 0000 %m 02617402 n 0000 %m 02617689 n 0000 %m 02617956 n 0000 | eelpouts -02617207 05 n 02 eelpout 1 pout 2 005 @ 02612657 n 0000 #m 02617029 n 0000 ~ 02617537 n 0000 ~ 02617819 n 0000 ~ 02618094 n 0000 | marine eellike mostly bottom-dwelling fishes of northern seas -02617402 05 n 02 Zoarces 0 genus_Zoarces 0 003 @ 01432517 n 0000 #m 02617029 n 0000 %m 02617537 n 0000 | type genus of the Zoarcidae -02617537 05 n 02 viviparous_eelpout 0 Zoarces_viviparus 0 002 @ 02617207 n 0000 #m 02617402 n 0000 | an eelpout of northern Europe that is viviparous -02617689 05 n 02 Gymnelis 0 genus_Gymnelis 0 003 @ 01432517 n 0000 #m 02617029 n 0000 %m 02617819 n 0000 | a genus of Zoarcidae -02617819 05 n 02 fish_doctor 0 Gymnelis_viridis 0 002 @ 02617207 n 0000 #m 02617689 n 0000 | brightly colored scaleless Arctic eelpout -02617956 05 n 02 Macrozoarces 0 genus_Macrozoarces 0 003 @ 01432517 n 0000 #m 02617029 n 0000 %m 02618094 n 0000 | a genus of Zoarcidae -02618094 05 n 02 ocean_pout 0 Macrozoarces_americanus 0 002 @ 02617207 n 0000 #m 02617956 n 0000 | common along northeastern coast of North America -02618244 05 n 02 Ammodytidae 0 family_Ammodytidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02618372 n 0000 | sand lances -02618372 05 n 02 Ammodytes 0 genus_Ammodytes 0 003 @ 01432517 n 0000 #m 02618244 n 0000 %m 02618513 n 0000 | type genus of the Ammodytidae -02618513 05 n 04 sand_lance 0 sand_launce 0 sand_eel 0 launce 0 002 @ 02552171 n 0000 #m 02618372 n 0000 | very small silvery eellike schooling fishes that burrow into sandy beaches -02618697 05 n 02 Callionymidae 0 family_Callionymidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02618827 n 0000 | dragonets -02618827 05 n 01 dragonet 0 002 @ 02552171 n 0000 #m 02618697 n 0000 | small often brightly colored scaleless marine bottom-dwellers; found in tropical and warm temperate waters of Europe and America -02619029 05 n 02 Gobiidae 0 family_Gobiidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02619165 n 0000 %m 02619409 n 0000 | gobies -02619165 05 n 02 goby 0 gudgeon 2 003 @ 02554730 n 0000 #m 02619029 n 0000 ~ 02619550 n 0000 | small spiny-finned fish of coastal or brackish waters having a large head and elongated tapering body having the ventral fins modified as a sucker -02619409 05 n 02 Periophthalmus 0 genus_Periophthalmus 0 003 @ 01432517 n 0000 #m 02619029 n 0000 %m 02619550 n 0000 | a genus of Gobiidae -02619550 05 n 02 mudskipper 0 mudspringer 0 002 @ 02619165 n 0000 #m 02619409 n 0000 | found in tropical coastal regions of Africa and Asia; able to move on land on strong pectoral fins -02619738 05 n 02 Eleotridae 0 family_Eleotridae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02619861 n 0000 | sleepers -02619861 05 n 02 sleeper 0 sleeper_goby 0 002 @ 02554730 n 0000 #m 02619738 n 0000 | tropical fish that resembles a goby and rests quietly on the bottom in shallow water -02620033 05 n 02 Percophidae 0 family_Percophidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02620167 n 0000 | percoid flatheads -02620167 05 n 01 flathead 3 002 @ 02554730 n 0000 #m 02620033 n 0000 | pallid bottom-dwelling flat-headed fish with large eyes and a duck-like snout -02620318 05 n 02 Toxotidae 0 family_Toxotidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02620443 n 0000 | archerfishes -02620443 05 n 02 Toxotes 0 genus_Toxotes 0 003 @ 01432517 n 0000 #m 02620318 n 0000 %m 02620578 n 0000 | type genus of the Toxotidae -02620578 05 n 02 archerfish 0 Toxotes_jaculatrix 0 002 @ 02554730 n 0000 #m 02620443 n 0000 | any of several small freshwater fishes that catch insects by squirting water at them and knocking them into the water; found in Indonesia and Australia -02620826 05 n 02 Microdesmidae 0 family_Microdesmidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02620956 n 0000 | worm fish -02620956 05 n 01 worm_fish 0 002 @ 02554730 n 0000 #m 02620826 n 0000 | poorly known family of small tropical shallow-water fishes related to gobies -02621107 05 n 02 Acanthuridae 0 family_Acanthuridae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02621258 n 0000 %m 02621419 n 0000 | surgeonfishes -02621258 05 n 01 surgeonfish 0 003 @ 02554730 n 0000 #m 02621107 n 0000 ~ 02621577 n 0000 | brightly colored coral-reef fish with knifelike spines at the tail -02621419 05 n 02 Acanthurus 0 genus_Acanthurus 0 003 @ 01432517 n 0000 #m 02621107 n 0000 %m 02621577 n 0000 | type genus of the Acanthuridae: doctorfishes -02621577 05 n 03 doctorfish 0 doctor-fish 0 Acanthurus_chirurgus 0 002 @ 02621258 n 0000 #m 02621419 n 0000 | surgeon fish of the West Indies -02621721 05 n 02 Gempylidae 0 family_Gempylidae 0 006 @ 01429349 n 0000 #m 02553196 n 0000 %m 02621908 n 0000 %m 02622130 n 0000 %m 02622249 n 0000 %m 02622408 n 0000 | snake mackerels -02621908 05 n 01 gempylid 0 005 @ 02554730 n 0000 #m 02621721 n 0000 ~ 02622249 n 0000 ~ 02622547 n 0000 ~ 02622712 n 0000 | snake mackerels; elongated marine fishes with oily flesh; resembles mackerels; found worldwide -02622130 05 n 02 Gempylus 0 genus_Gempylus 0 002 @ 01432517 n 0000 #m 02621721 n 0000 | type genus of the Gempylidae -02622249 05 n 02 snake_mackerel 0 Gempylus_serpens 0 002 @ 02621908 n 0000 #m 02621721 n 0000 | predatory tropical fishes with jutting jaws and strong teeth -02622408 05 n 02 Lepidocybium 0 genus_Lepidocybium 0 003 @ 01432517 n 0000 #m 02621721 n 0000 %m 02622547 n 0000 | a genus of Gempylidae -02622547 05 n 02 escolar 0 Lepidocybium_flavobrunneum 0 002 @ 02621908 n 0000 #m 02622408 n 0000 | large snake mackerel with rings like spectacles around its eyes -02622712 05 n 02 oilfish 0 Ruvettus_pretiosus 0 001 @ 02621908 n 0000 | very large deep-water snake mackerel -02622823 05 n 02 Trichiuridae 0 family_Trichiuridae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02622955 n 0000 | cutlassfishes -02622955 05 n 03 cutlassfish 0 frost_fish 0 hairtail 0 002 @ 02554730 n 0000 #m 02622823 n 0000 | long-bodied marine fishes having a long whiplike scaleless body and sharp teeth; closely related to snake mackerel -02623170 05 n 02 Scombroidea 0 suborder_Scombroidea 0 008 @ 01342529 n 0000 #m 02553196 n 0000 %m 02623445 n 0000 %m 02623868 n 0000 %m 02629048 n 0000 %m 02629435 n 0000 %m 02630052 n 0000 %m 02632239 n 0000 | mackerels; tunas; albacores; bonitos; swordfishes; sailfishes -02623445 05 n 02 scombroid 0 scombroid_fish 0 012 @ 02554730 n 0000 #m 02623170 n 0000 ~ 02624167 n 0000 ~ 02626762 n 0000 ~ 02627835 n 0000 ~ 02628600 n 0000 ~ 02629230 n 0000 ~ 02629716 n 0000 ~ 02630281 n 0000 ~ 02630739 n 0000 ~ 02632494 n 0000 ~ 02634858 n 0000 | important marine food and game fishes found in all tropical and temperate seas; some are at least partially endothermic and can thrive in colder waters -02623868 05 n 02 Scombridae 0 family_Scombridae 0 010 @ 01429349 n 0000 #m 02623170 n 0000 %m 02624167 n 0000 %m 02624377 n 0000 %m 02625132 n 0000 %m 02625418 n 0000 %m 02626590 n 0000 %m 02627686 n 0000 %m 02628467 n 0000 %m 02628856 n 0000 | marine food fishes: mackerels; chub mackerels; tuna -02624167 05 n 01 mackerel 0 007 @ 02623445 n 0000 #m 02623868 n 0000 ~ 02624551 n 0000 ~ 02624807 n 0000 ~ 02624987 n 0000 ~ 02625258 n 0000 ~ 02625612 n 0000 | any of various fishes of the family Scombridae -02624377 05 n 02 Scomber 0 genus_Scomber 0 005 @ 01432517 n 0000 #m 02623868 n 0000 %m 02624551 n 0000 %m 02624807 n 0000 %m 02624987 n 0000 | type genus of the Scombridae -02624551 05 n 03 common_mackerel 0 shiner 2 Scomber_scombrus 0 003 @ 02624167 n 0000 #m 02624377 n 0000 %p 07781319 n 0000 | important food fish of the northern Atlantic and Mediterranean; its body is greenish-blue with dark bars and small if any scales -02624807 05 n 02 Spanish_mackerel 2 Scomber_colias 0 003 @ 02624167 n 0000 #m 02624377 n 0000 %p 07781497 n 0000 | medium-sized mackerel of temperate Atlantic and Gulf of Mexico -02624987 05 n 03 chub_mackerel 0 tinker 0 Scomber_japonicus 0 002 @ 02624167 n 0000 #m 02624377 n 0000 | small mackerel found nearly worldwide -02625132 05 n 02 Acanthocybium 0 genus_Acanthocybium 0 003 @ 01432517 n 0000 #m 02623868 n 0000 %m 02625258 n 0000 | wahoos -02625258 05 n 02 wahoo 0 Acanthocybium_solandri 0 002 @ 02624167 n 0000 #m 02625132 n 0000 | large fast-moving predacious food and game fish; found worldwide -02625418 05 n 02 Scomberomorus 0 genus_Scomberomorus 0 006 @ 01432517 n 0000 #m 02623868 n 0000 %m 02625612 n 0000 %m 02625851 n 0000 %m 02626089 n 0000 %m 02626265 n 0000 | Spanish mackerels -02625612 05 n 01 Spanish_mackerel 0 007 @ 02624167 n 0000 #m 02625418 n 0000 ~ 02625851 n 0000 ~ 02626089 n 0000 ~ 02626265 n 0000 ~ 02626471 n 0000 %p 07781497 n 0000 | any of several large marine food fishes of the genus Scomberomorus -02625851 05 n 04 king_mackerel 0 cavalla 0 cero 2 Scomberomorus_cavalla 0 002 @ 02625612 n 0000 #m 02625418 n 0000 | large mackerel with long pointed snout; important food and game fish of the eastern Atlantic coast southward to Brazil -02626089 05 n 01 Scomberomorus_maculatus 0 002 @ 02625612 n 0000 #m 02625418 n 0000 | a large commercially important mackerel of the Atlantic coastal waters of North America -02626265 05 n 04 cero 0 pintado 0 kingfish 2 Scomberomorus_regalis 0 003 @ 02625612 n 0000 #m 02625418 n 0000 %p 07784810 n 0000 | large edible mackerel of temperate United States coastal Atlantic waters -02626471 05 n 02 sierra 0 Scomberomorus_sierra 0 001 @ 02625612 n 0000 | a Spanish mackerel of western North America -02626590 05 n 02 Thunnus 0 genus_Thunnus 0 005 @ 01432517 n 0000 #m 02623868 n 0000 %m 02626762 n 0000 %m 02627292 n 0000 %m 02627532 n 0000 | tunas: warm-blooded fishes -02626762 05 n 02 tuna 1 tunny 0 007 @ 02623445 n 0000 @ 02512938 n 0000 #m 02626590 n 0000 ~ 02627037 n 0000 ~ 02627292 n 0000 ~ 02627532 n 0000 %p 07780627 n 0000 | any very large marine food and game fish of the genus Thunnus; related to mackerel; chiefly of warm waters -02627037 05 n 03 albacore 0 long-fin_tunny 0 Thunnus_alalunga 0 002 @ 02626762 n 0000 %p 07780874 n 0000 | large pelagic tuna the source of most canned tuna; reaches 93 pounds and has long pectoral fins; found worldwide in tropical and temperate waters -02627292 05 n 04 bluefin 0 bluefin_tuna 0 horse_mackerel 3 Thunnus_thynnus 0 003 @ 02626762 n 0000 #m 02626590 n 0000 %p 07781207 n 0000 | largest tuna; to 1500 pounds; of mostly temperate seas: feed in polar regions but breed in tropics -02627532 05 n 03 yellowfin 0 yellowfin_tuna 0 Thunnus_albacares 0 002 @ 02626762 n 0000 #m 02626590 n 0000 | may reach 400 pounds; worldwide in tropics -02627686 05 n 02 Sarda 0 genus_Sarda 0 005 @ 01432517 n 0000 #m 02623868 n 0000 %m 02627835 n 0000 %m 02628062 n 0000 %m 02628259 n 0000 | bonitos -02627835 05 n 01 bonito 1 005 @ 02623445 n 0000 #m 02627686 n 0000 ~ 02628062 n 0000 ~ 02628259 n 0000 %p 07781022 n 0000 | any of various scombroid fishes intermediate in size and characteristics between mackerels and tunas -02628062 05 n 03 skipjack 2 Atlantic_bonito 0 Sarda_sarda 0 002 @ 02627835 n 0000 #m 02627686 n 0000 | medium-sized tuna-like food fish of warm Atlantic and Pacific waters; less valued than tuna -02628259 05 n 04 Chile_bonito 0 Chilean_bonito 0 Pacific_bonito 0 Sarda_chiliensis 0 002 @ 02627835 n 0000 #m 02627686 n 0000 | common bonito of Pacific coast of the Americas; its dark oily flesh cans well -02628467 05 n 02 Euthynnus 0 genus_Euthynnus 0 003 @ 01432517 n 0000 #m 02623868 n 0000 %m 02628600 n 0000 | a genus of Scombridae -02628600 05 n 03 skipjack 1 skipjack_tuna 0 Euthynnus_pelamis 0 002 @ 02623445 n 0000 #m 02628467 n 0000 | oceanic schooling tuna of considerable value in Pacific but less in Atlantic; reaches 75 pounds; very similar to if not the same as oceanic bonito -02628856 05 n 02 Katsuwonus 0 genus_Katsuwonus 0 003 @ 01432517 n 0000 #m 02623868 n 0000 %m 02629230 n 0000 | oceanic bonitos; in some classifications placed in its own family Katsuwonidae -02629048 05 n 02 Katsuwonidae 0 family_Kasuwonidae 0 002 @ 01429349 n 0000 #m 02623170 n 0000 | in some classifications considered a separate family comprising the oceanic bonitos -02629230 05 n 03 bonito 2 oceanic_bonito 0 Katsuwonus_pelamis 0 002 @ 02623445 n 0000 #m 02628856 n 0000 | fish whose flesh is dried and flaked for Japanese cookery; may be same species as skipjack tuna -02629435 05 n 02 Xiphiidae 0 family_Xiphiidae 0 003 @ 01429349 n 0000 #m 02623170 n 0000 %m 02629581 n 0000 | comprising the common swordfishes -02629581 05 n 02 Xiphias 0 genus_Xiphias 0 003 @ 01432517 n 0000 #m 02629435 n 0000 %m 02629716 n 0000 | type genus of the Xiphiidae -02629716 05 n 02 swordfish 0 Xiphias_gladius 0 003 @ 02623445 n 0000 #m 02629581 n 0000 %p 07785887 n 0000 | large toothless marine food fish with a long swordlike upper jaw; not completely cold-blooded i.e. they are able to warm their brains and eyes: worldwide in warm waters but feed on cold ocean floor coming to surface at night -02630052 05 n 02 Istiophoridae 0 family_Istiophoridae 0 007 @ 01429349 n 0000 #m 02623170 n 0000 %m 02630281 n 0000 %m 02630468 n 0000 %m 02630739 n 0000 %m 02630926 n 0000 %m 02631899 n 0000 | sailfishes; spearfishes; marlins -02630281 05 n 01 sailfish 0 003 @ 02623445 n 0000 #m 02630052 n 0000 ~ 02630615 n 0000 | large pelagic game fish having an elongated upper jaw and long dorsal fin that resembles a sail -02630468 05 n 02 Istiophorus 0 genus_Istiophorus 0 003 @ 01432517 n 0000 #m 02630052 n 0000 %m 02630615 n 0000 | type genus of the Istiophoridae -02630615 05 n 02 Atlantic_sailfish 0 Istiophorus_albicans 0 002 @ 02630281 n 0000 #m 02630468 n 0000 | a kind of sailfish -02630739 05 n 01 billfish 1 004 @ 02623445 n 0000 #m 02630052 n 0000 ~ 02631041 n 0000 ~ 02632039 n 0000 | giant warm-water game fish having a prolonged and rounded toothless upper jaw -02630926 05 n 02 Makaira 0 genus_Makaira 0 003 @ 01432517 n 0000 #m 02630052 n 0000 %m 02631041 n 0000 | marlins -02631041 05 n 01 marlin 0 006 @ 02630739 n 0000 #m 02630926 n 0000 ~ 02631330 n 0000 ~ 02631475 n 0000 ~ 02631628 n 0000 ~ 02631775 n 0000 | large long-jawed oceanic sport fishes; related to sailfishes and spearfishes; not completely cold-blooded i.e. able to warm their brains and eyes -02631330 05 n 02 blue_marlin 0 Makaira_nigricans 0 001 @ 02631041 n 0000 | largest marlin; may reach 2000 pounds; found worldwide in warm seas -02631475 05 n 03 black_marlin 0 Makaira_mazara 0 Makaira_marlina 0 001 @ 02631041 n 0000 | large game fish in the Pacific Ocean; may reach 1000 pounds -02631628 05 n 02 striped_marlin 0 Makaira_mitsukurii 0 001 @ 02631041 n 0000 | Pacific food and game fish marked with dark blue vertical stripes -02631775 05 n 02 white_marlin 0 Makaira_albida 0 001 @ 02631041 n 0000 | small marlin (to 180 pounds) of western Atlantic -02631899 05 n 02 Tetrapturus 0 genus_Tetrapturus 0 003 @ 01432517 n 0000 #m 02630052 n 0000 %m 02632039 n 0000 | a genus of Istiophoridae -02632039 05 n 01 spearfish 1 002 @ 02630739 n 0000 #m 02631899 n 0000 | any of several large vigorous pelagic fishes resembling sailfishes but with first dorsal fin much reduced; worldwide but rare -02632239 05 n 02 Luvaridae 0 family_Luvaridae 0 003 @ 01429349 n 0000 #m 02623170 n 0000 %m 02632359 n 0000 | louvars -02632359 05 n 02 Luvarus 0 genus_Luvarus 0 003 @ 01432517 n 0000 #m 02632239 n 0000 %m 02632494 n 0000 | type genus of the Luvaridae -02632494 05 n 02 louvar 0 Luvarus_imperialis 0 002 @ 02623445 n 0000 #m 02632359 n 0000 | large silvery fish found worldwide in warm seas but nowhere common; resembles a whale and feeds on plankton -02632694 05 n 02 Stromateidae 0 family_Stromateidae 0 010 @ 01429349 n 0000 #m 02553196 n 0000 %m 02632989 n 0000 %m 02633287 n 0000 %m 02633555 n 0000 %m 02633844 n 0000 %m 02634156 n 0000 %m 02634414 n 0000 %m 02634717 n 0000 %m 02635013 n 0000 | butterfishes: harvest fishes; dollar fishes -02632989 05 n 03 butterfish 1 stromateid_fish 0 stromateid 0 009 @ 02554730 n 0000 #m 02632694 n 0000 ~ 02633422 n 0000 ~ 02633677 n 0000 ~ 02633977 n 0000 ~ 02634285 n 0000 ~ 02634545 n 0000 ~ 02635154 n 0000 %p 07786005 n 0000 | small marine fish with a short compressed body and feeble spines -02633287 05 n 02 Poronotus 0 genus_Poronotus 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02633422 n 0000 | a genus of Stromateidae -02633422 05 n 02 dollarfish 1 Poronotus_triacanthus 0 002 @ 02632989 n 0000 #m 02633287 n 0000 | small food fish of Atlantic coast -02633555 05 n 01 genus_Palometa 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02633677 n 0000 | a genus of Stromateidae -02633677 05 n 03 palometa 0 California_pompano 0 Palometa_simillima 0 002 @ 02632989 n 0000 #m 02633555 n 0000 | smaller than Florida pompano; common in West Indies -02633844 05 n 02 Paprilus 0 genus_Paprilus 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02633977 n 0000 | a genus of Stromateidae -02633977 05 n 02 harvestfish 0 Paprilus_alepidotus 0 002 @ 02632989 n 0000 #m 02633844 n 0000 | butterfish up to a foot long of Atlantic waters from Chesapeake Bay to Argentina -02634156 05 n 02 Psenes 0 genus_Psenes 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02634285 n 0000 | a genus of Stromateidae -02634285 05 n 01 driftfish 1 002 @ 02632989 n 0000 #m 02634156 n 0000 | small (6 inches) tropical butterfishes found worldwide -02634414 05 n 02 Ariomma 0 genus_Ariomma 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02634545 n 0000 | a genus of Stromateidae -02634545 05 n 01 driftfish 2 002 @ 02632989 n 0000 #m 02634414 n 0000 | larger butterfishes of the western Atlantic from the New York area to the northern Gulf of Mexico -02634717 05 n 02 Tetragonurus 0 genus_Tetragonurus 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02634858 n 0000 | a genus of Stromateidae -02634858 05 n 01 squaretail 0 002 @ 02623445 n 0000 #m 02634717 n 0000 | sluggish square-tailed fish armored with tough bony scales; of deep warm waters -02635013 05 n 02 Hyperoglyphe 0 genus_Hyperoglyphe 0 003 @ 01432517 n 0000 #m 02632694 n 0000 %m 02635154 n 0000 | a genus of Stromateidae -02635154 05 n 03 barrelfish 0 black_rudderfish 0 Hyperglyphe_perciformis 0 002 @ 02632989 n 0000 #m 02635013 n 0000 | blackish fish of New England waters -02635310 05 n 02 Gobiesocidae 0 family_Gobiesocidae 0 004 @ 01429349 n 0000 #m 02553196 n 0000 %m 02635459 n 0000 %m 02635580 n 0000 | clingfishes -02635459 05 n 02 Gobiesox 0 genus_Gobiesox 0 002 @ 01432517 n 0000 #m 02635310 n 0000 | type genus of the Gobiesocidae -02635580 05 n 01 clingfish 0 003 @ 02554730 n 0000 #m 02635310 n 0000 ~ 02635781 n 0000 | very small (to 3 inches) flattened marine fish with a sucking disc on the abdomen for clinging to rocks etc. -02635781 05 n 03 skillet_fish 0 skilletfish 0 Gobiesox_strumosus 0 001 @ 02635580 n 0000 | clingfish with typical skillet shape -02635911 05 n 02 Lobotidae 0 family_Lobotidae 0 003 @ 01429349 n 0000 #m 02553196 n 0000 %m 02636035 n 0000 | tripletails -02636035 05 n 02 Lobotes 0 genus_Lobotes 0 003 @ 01432517 n 0000 #m 02635911 n 0000 %m 02636170 n 0000 | type genus of the Lobotidae -02636170 05 n 01 tripletail 0 004 @ 02554730 n 0000 #m 02636035 n 0000 ~ 02636405 n 0000 ~ 02636550 n 0000 | large food fish of warm waters worldwide having long anal and dorsal fins that with a caudal fin suggest a three-lobed tail -02636405 05 n 02 Atlantic_tripletail 0 Lobotes_surinamensis 0 001 @ 02636170 n 0000 | tripletail found from Cape Cod to northern South America -02636550 05 n 02 Pacific_tripletail 0 Lobotes_pacificus 0 001 @ 02636170 n 0000 | tripletail found in the Pacific -02636666 05 n 04 Gerreidae 0 family_Gerreidae 0 Gerridae 2 family_Gerridae 2 005 @ 01429349 n 0000 #m 02553196 n 0000 %m 02636854 n 0000 %m 02637046 n 0000 %m 02637337 n 0000 | mojarras -02636854 05 n 01 mojarra 0 004 @ 02554730 n 0000 #m 02636666 n 0000 ~ 02637179 n 0000 ~ 02637475 n 0000 | small silvery schooling fishes with protrusible mouths found in warm coastal waters -02637046 05 n 02 Gerres 0 genus_Gerres 0 003 @ 01432517 n 0000 #m 02636666 n 0000 %m 02637179 n 0000 | type genus of the Gerreidae -02637179 05 n 02 yellowfin_mojarra 0 Gerres_cinereus 0 002 @ 02636854 n 0000 #m 02637046 n 0000 | popular panfish from Bermuda and Gulf of Mexico to Brazil -02637337 05 n 02 Eucinostomus 0 genus_Eucinostomus 0 003 @ 01432517 n 0000 #m 02636666 n 0000 %m 02637475 n 0000 | a genus of Gerreidae -02637475 05 n 02 silver_jenny 0 Eucinostomus_gula 0 002 @ 02636854 n 0000 #m 02637337 n 0000 | silvery mojarra found along sandy shores of the western Atlantic -02637637 05 n 02 Sillaginidae 0 family_Sillaginidae 0 003 @ 01429349 n 0000 #m 02554512 n 0000 %m 02637839 n 0000 | small family of small food fishes in shallow waters of the Pacific around Indonesia -02637839 05 n 02 Sillago 0 genus_Sillago 0 003 @ 01432517 n 0000 #m 02637637 n 0000 %m 02637977 n 0000 | type genus of the Sillaginidae -02637977 05 n 01 whiting 3 002 @ 02554730 n 0000 #m 02637839 n 0000 | a small fish of the genus Sillago; excellent food fish -02638104 05 n 02 ganoin 0 ganoine 0 001 @ 05404728 n 0000 | shiny substance that resemble enamel and is secreted by the corium of certain fishes (especially ganoid fishes) and composes the outer layer of their scales -02638323 05 n 02 Ganoidei 0 order_Ganoidei 0 007 @ 01342529 n 0000 #m 02527813 n 0000 %m 02638596 n 0000 %m 02638835 n 0000 %m 02639312 n 0000 %m 02640093 n 0000 %m 02641063 n 0000 | a group of mostly extinct primitive bony fishes characterized by armor-like bony scales -02638596 05 n 02 ganoid 0 ganoid_fish 0 007 @ 02528163 n 0000 #m 02638323 n 0000 ~ 02639087 n 0000 ~ 02639605 n 0000 ~ 02639922 n 0000 ~ 02640242 n 0000 ~ 02641379 n 0000 | primitive fishes having thick bony scales with a shiny covering -02638835 05 n 02 Amiidae 0 family_Amiidae 0 003 @ 01429349 n 0000 #m 02638323 n 0000 %m 02638960 n 0000 | only the bowfins -02638960 05 n 02 Amia 0 genus_Amia 0 003 @ 01432517 n 0000 #m 02638835 n 0000 %m 02639087 n 0000 | type genus of the Amiidae -02639087 05 n 04 bowfin 0 grindle 0 dogfish 1 Amia_calva 0 002 @ 02638596 n 0000 #m 02638960 n 0000 | primitive long-bodied carnivorous freshwater fish with a very long dorsal fin; found in sluggish waters of North America -02639312 05 n 02 Polyodontidae 0 family_Polyodontidae 0 004 @ 01429349 n 0000 #m 02638323 n 0000 %m 02639464 n 0000 %m 02639786 n 0000 | paddlefishes -02639464 05 n 02 Polyodon 0 genus_Polyodon 0 003 @ 01432517 n 0000 #m 02639312 n 0000 %m 02639605 n 0000 | type genus of the Polyodontidae -02639605 05 n 03 paddlefish 0 duckbill 2 Polyodon_spathula 0 002 @ 02638596 n 0000 #m 02639464 n 0000 | primitive fish of the Mississippi valley having a long paddle-shaped snout -02639786 05 n 02 Psephurus 0 genus_Psephurus 0 003 @ 01432517 n 0000 #m 02639312 n 0000 %m 02639922 n 0000 | a genus of Polyodontidae -02639922 05 n 02 Chinese_paddlefish 0 Psephurus_gladis 0 002 @ 02638596 n 0000 #m 02639786 n 0000 | fish of larger rivers of China similar to the Mississippi paddlefish -02640093 05 n 02 Acipenseridae 0 family_Acipenseridae 0 004 @ 01429349 n 0000 #m 02638323 n 0000 %m 02640242 n 0000 %m 02640453 n 0000 | sturgeons -02640242 05 n 01 sturgeon 0 004 @ 02638596 n 0000 #m 02640093 n 0000 ~ 02640626 n 0000 ~ 02640857 n 0000 | large primitive fishes valued for their flesh and roe; widely distributed in the North Temperate Zone -02640453 05 n 02 Acipenser 0 genus_Acipenser 0 004 @ 01432517 n 0000 #m 02640093 n 0000 %m 02640626 n 0000 %m 02640857 n 0000 | type genus of the Acipenseridae: sturgeons -02640626 05 n 04 Pacific_sturgeon 0 white_sturgeon 1 Sacramento_sturgeon 0 Acipenser_transmontanus 0 002 @ 02640242 n 0000 #m 02640453 n 0000 | food and game fish of marine and fresh waters of northwestern coast of North America -02640857 05 n 04 beluga 1 hausen 0 white_sturgeon 2 Acipenser_huso 0 003 @ 02640242 n 0000 #m 02640453 n 0000 %p 07799738 n 0000 | valuable source of caviar and isinglass; found in Black and Caspian seas -02641063 05 n 02 Lepisosteidae 0 family_Lepisosteidae 0 003 @ 01429349 n 0000 #m 02638323 n 0000 %m 02641215 n 0000 | comprises the genus Lepisosteus -02641215 05 n 02 Lepisosteus 0 genus_Lepisosteus 0 003 @ 01432517 n 0000 #m 02641063 n 0000 %m 02641379 n 0000 | type genus of the Lepisosteidae: freshwater gars -02641379 05 n 05 gar 1 garfish 0 garpike 0 billfish 3 Lepisosteus_osseus 0 002 @ 02638596 n 0000 #m 02641215 n 0000 | primitive predaceous North American fish covered with hard scales and having long jaws with needlelike teeth -02641608 05 n 02 Scleroparei 0 order_Scleroparei 0 005 @ 01342529 n 0000 #m 02551824 n 0000 %m 02647503 n 0000 %m 02648456 n 0000 %m 02651846 n 0000 | scorpionfishes; sculpins; gurnards; greenlings; flying gurnards -02641825 05 n 02 Scorpaenoidea 0 suborder_Scorpaenoidea 0 009 @ 01342529 n 0000 #m 02551824 n 0000 %m 02552737 n 0000 %m 02642107 n 0000 %m 02644967 n 0000 %m 02646377 n 0000 %m 02646985 n 0000 %m 02649400 n 0000 %m 02649689 n 0000 | mail-cheeked fishes: scorpionfishes; gurnards -02642107 05 n 02 scorpaenoid 0 scorpaenoid_fish 0 012 @ 02552171 n 0000 #m 02641825 n 0000 ~ 02553028 n 0000 ~ 02642644 n 0000 ~ 02645304 n 0000 ~ 02646667 n 0000 ~ 02647294 n 0000 ~ 02647660 n 0000 ~ 02648625 n 0000 ~ 02649546 n 0000 ~ 02650050 n 0000 ~ 02652132 n 0000 | fishes having the head armored with bony plates -02642430 05 n 02 Scorpaenidae 0 family_Scorpaenidae 0 006 @ 01429349 n 0000 %m 02642644 n 0000 %m 02642935 n 0000 %m 02643448 n 0000 %m 02643713 n 0000 %m 02643989 n 0000 | scorpionfishes; rockfishes; lionfishes -02642644 05 n 02 scorpaenid 0 scorpaenid_fish 0 006 @ 02642107 n 0000 #m 02642430 n 0000 ~ 02643112 n 0000 ~ 02643566 n 0000 ~ 02643836 n 0000 ~ 02644113 n 0000 | any of numerous carnivorous usually bottom-dwelling warm-water marine fishes found worldwide but most abundant in the Pacific -02642935 05 n 02 Scorpaena 0 genus_Scorpaena 0 004 @ 01432517 n 0000 #m 02642430 n 0000 %m 02643112 n 0000 %m 02643316 n 0000 | type genus of the Scorpaenidae: scorpionfishes -02643112 05 n 03 scorpionfish 0 scorpion_fish 0 sea_scorpion 0 003 @ 02642644 n 0000 #m 02642935 n 0000 ~ 02643316 n 0000 | marine fishes having a tapering body with an armored head and venomous spines -02643316 05 n 02 plumed_scorpionfish 0 Scorpaena_grandicornis 0 002 @ 02643112 n 0000 #m 02642935 n 0000 | a kind of scorpionfish -02643448 05 n 02 Pterois 0 genus_Pterois 0 003 @ 01432517 n 0000 #m 02642430 n 0000 %m 02643566 n 0000 | lionfishes -02643566 05 n 01 lionfish 0 002 @ 02642644 n 0000 #m 02643448 n 0000 | brightly striped fish of the tropical Pacific having elongated spiny fins -02643713 05 n 02 Synanceja 0 genus_Synanceja 0 003 @ 01432517 n 0000 #m 02642430 n 0000 %m 02643836 n 0000 | stonefishes -02643836 05 n 02 stonefish 0 Synanceja_verrucosa 0 002 @ 02642644 n 0000 #m 02643713 n 0000 | venomous tropical marine fish resembling a piece of rock -02643989 05 n 02 Sebastodes 0 genus_Sebastodes 0 003 @ 01432517 n 0000 #m 02642430 n 0000 %m 02644113 n 0000 | rockfishes -02644113 05 n 01 rockfish 1 007 @ 02642644 n 0000 #m 02643989 n 0000 ~ 02644360 n 0000 ~ 02644501 n 0000 ~ 02644665 n 0000 ~ 02644817 n 0000 %p 07792219 n 0000 | marine food fish found among rocks along the northern coasts of Europe and America -02644360 05 n 02 copper_rockfish 0 Sebastodes_caurinus 0 001 @ 02644113 n 0000 | a rockfish of the Pacific coastal waters of North America -02644501 05 n 03 vermillion_rockfish 0 rasher 0 Sebastodes_miniatus 0 001 @ 02644113 n 0000 | a commercially important fish of the Pacific coast of North America -02644665 05 n 02 red_rockfish 0 Sebastodes_ruberrimus 0 002 @ 02644113 n 0000 %p 07797518 n 0000 | a large fish of the Pacific coast of North America -02644817 05 n 03 rosefish 0 ocean_perch 0 Sebastodes_marinus 0 001 @ 02644113 n 0000 | large fish of northern Atlantic coasts of America and Europe -02644967 05 n 02 Cottidae 0 family_Cottidae 0 006 @ 01429349 n 0000 #m 02641825 n 0000 %m 02645143 n 0000 %m 02645304 n 0000 %m 02645823 n 0000 %m 02646117 n 0000 | sculpins -02645143 05 n 02 Cottus 0 genus_Cottus 0 004 @ 01432517 n 0000 #m 02644967 n 0000 %m 02645538 n 0000 %m 02645691 n 0000 | type genus of the Cottidae: sculpins -02645304 05 n 01 sculpin 0 006 @ 02642107 n 0000 #m 02644967 n 0000 ~ 02645538 n 0000 ~ 02645691 n 0000 ~ 02645953 n 0000 ~ 02646241 n 0000 | any of numerous spiny large-headed usually scaleless scorpaenoid fishes with broad mouths -02645538 05 n 01 bullhead 0 002 @ 02645304 n 0000 #m 02645143 n 0000 | freshwater sculpin with a large flattened bony-plated head with hornlike spines -02645691 05 n 01 miller's-thumb 0 002 @ 02645304 n 0000 #m 02645143 n 0000 | small freshwater sculpin of Europe and North America -02645823 05 n 02 Hemitripterus 0 genus_Hemitripterus 0 003 @ 01432517 n 0000 #m 02644967 n 0000 %m 02645953 n 0000 | sea ravens -02645953 05 n 02 sea_raven 0 Hemitripterus_americanus 0 002 @ 02645304 n 0000 #m 02645823 n 0000 | large sculpin of western Atlantic; inflates itself when caught -02646117 05 n 02 Myxocephalus 0 genus_Myxocephalus 0 003 @ 01432517 n 0000 #m 02644967 n 0000 %m 02646241 n 0000 | grubby -02646241 05 n 02 grubby 0 Myxocephalus_aenaeus 0 002 @ 02645304 n 0000 #m 02646117 n 0000 | small sculpin of the coast of New England -02646377 05 n 02 Cyclopteridae 0 family_Cyclopteridae 0 003 @ 01429349 n 0000 #m 02641825 n 0000 %m 02646508 n 0000 | lumpfishes -02646508 05 n 02 Cyclopterus 0 genus_Cyclopterus 0 003 @ 01432517 n 0000 #m 02646377 n 0000 %m 02646667 n 0000 | type genus of the Cyclopteridae: lumpfishes -02646667 05 n 02 lumpfish 0 Cyclopterus_lumpus 0 003 @ 02642107 n 0000 #m 02646508 n 0000 ~ 02646892 n 0000 | clumsy soft thick-bodied northern Atlantic fish with pelvic fins fused into a sucker; edible roe used for caviar -02646892 05 n 01 lumpsucker 0 001 @ 02646667 n 0000 | any of several very small lumpfishes -02646985 05 n 04 Liparididae 0 family_Liparididae 0 Liparidae 0 family_Liparidae 0 003 @ 01429349 n 0000 #m 02641825 n 0000 %m 02647144 n 0000 | snailfishes -02647144 05 n 02 Liparis 0 genus_Liparis 0 003 @ 01432517 n 0000 #m 02646985 n 0000 %m 02647294 n 0000 | type genus of the Liparididae: snailfishes -02647294 05 n 04 snailfish 0 seasnail 1 sea_snail 1 Liparis_liparis 0 002 @ 02642107 n 0000 #m 02647144 n 0000 | small tadpole-shaped cold-water fishes with pelvic fins forming a sucker; related to lumpfish -02647503 05 n 02 Agonidae 0 family_Agonidae 0 005 @ 01429349 n 0000 #m 02641608 n 0000 %m 02647660 n 0000 %m 02647903 n 0000 %m 02648174 n 0000 | poachers -02647660 05 n 03 poacher 0 sea_poacher 0 sea_poker 0 004 @ 02642107 n 0000 #m 02647503 n 0000 ~ 02648035 n 0000 ~ 02648313 n 0000 | small slender fish (to 8 inches) with body covered by bony plates; chiefly of deeper northern Pacific waters -02647903 05 n 02 Agonus 0 genus_Agonus 0 003 @ 01432517 n 0000 #m 02647503 n 0000 %m 02648035 n 0000 | type genus of the Agonidae -02648035 05 n 03 pogge 0 armed_bullhead 0 Agonus_cataphractus 0 002 @ 02647660 n 0000 #m 02647903 n 0000 | northern Atlantic sea poacher -02648174 05 n 02 Aspidophoroides 0 genus_Aspidophoroides 0 003 @ 01432517 n 0000 #m 02647503 n 0000 %m 02648313 n 0000 | alligatorfishes -02648313 05 n 02 alligatorfish 0 Aspidophoroides_monopterygius 0 002 @ 02647660 n 0000 #m 02648174 n 0000 | small very elongate sea poachers -02648456 05 n 02 Hexagrammidae 0 family_Hexagrammidae 0 005 @ 01429349 n 0000 #m 02641608 n 0000 %m 02648625 n 0000 %m 02648769 n 0000 %m 02649082 n 0000 | greenlings -02648625 05 n 01 greenling 1 004 @ 02642107 n 0000 #m 02648456 n 0000 ~ 02648916 n 0000 ~ 02649218 n 0000 | food fish of the northern Pacific -02648769 05 n 02 Hexagrammos 0 genus_Hexagrammos 0 003 @ 01432517 n 0000 #m 02648456 n 0000 %m 02648916 n 0000 | type genus of the Hexagrammidae -02648916 05 n 02 kelp_greenling 0 Hexagrammos_decagrammus 0 002 @ 02648625 n 0000 #m 02648769 n 0000 | common food and sport fish of western coast of North America -02649082 05 n 02 Oxylebius 0 genus_Oxylebius 0 003 @ 01432517 n 0000 #m 02648456 n 0000 %m 02649218 n 0000 | a genus of Hexagrammidae -02649218 05 n 04 painted_greenling 0 convict_fish 0 convictfish 0 Oxylebius_pictus 0 002 @ 02648625 n 0000 #m 02649082 n 0000 | greenling with whitish body marked with black bands -02649400 05 n 02 Platycephalidae 0 family_Platycephalidae 0 003 @ 01429349 n 0000 #m 02641825 n 0000 %m 02649546 n 0000 | scorpaenoid flatheads -02649546 05 n 01 flathead 2 002 @ 02642107 n 0000 #m 02649400 n 0000 | food fish of the Indonesian region of the Pacific; resembles gurnards -02649689 05 n 02 Triglidae 0 family_Triglidae 0 008 @ 01429349 n 0000 #m 02641825 n 0000 %m 02650050 n 0000 %m 02650282 n 0000 %m 02650696 n 0000 %m 02650928 n 0000 %m 02651215 n 0000 %m 02651412 n 0000 | in some classifications restricted to the gurnards and subdivided into the subfamilies Triglinae (true sea robins) and Peristediinae (armored sea robins) -02650050 05 n 01 gurnard 0 004 @ 02642107 n 0000 #m 02649689 n 0000 ~ 02650413 n 0000 ~ 02650541 n 0000 | bottom-dwelling coastal fishes with spiny armored heads and fingerlike pectoral fins used for crawling along the sea bottom -02650282 05 n 02 Triga 0 genus_Triga 0 003 @ 01432517 n 0000 #m 02649689 n 0000 %m 02650413 n 0000 | type genus of the Triglidae -02650413 05 n 03 tub_gurnard 0 yellow_gurnard 0 Trigla_lucerna 0 002 @ 02650050 n 0000 #m 02650282 n 0000 | a kind of gurnard -02650541 05 n 02 sea_robin 0 searobin 0 003 @ 02650050 n 0000 ~ 02651060 n 0000 ~ 02651617 n 0000 | American gurnard; mostly found in bays and estuaries -02650696 05 n 02 Triglinae 0 subfamily_Triglinae 0 002 @ 01429349 n 0000 #m 02649689 n 0000 | in some classifications considered a subfamily of Triglidae comprising searobins having ordinary scales and no barbels (true searobins) -02650928 05 n 02 Prionotus 0 genus_Prionotus 0 003 @ 01432517 n 0000 #m 02649689 n 0000 %m 02651060 n 0000 | a genus of Triglidae -02651060 05 n 02 northern_sea_robin 0 Prionotus_carolinus 0 002 @ 02650541 n 0000 #m 02650928 n 0000 | large searobin; found from Nova Scotia to Florida -02651215 05 n 02 Peristediinae 0 subfamily_Peristediinae 0 002 @ 01429349 n 0000 #m 02649689 n 0000 | in some classifications considered a subfamily of Triglidae comprising the armored searobins -02651412 05 n 02 Peristedion 0 genus_Peristedion 0 003 @ 01432517 n 0000 #m 02649689 n 0000 %m 02651617 n 0000 | in some classifications the type genus of the subfamily Peristediinae: armored sea robins -02651617 05 n 03 armored_searobin 0 armored_sea_robin 0 Peristedion_miniatum 0 002 @ 02650541 n 0000 #m 02651412 n 0000 | sea robins having bony scutes on the body and barbels on the chin; found mostly on the continental slope -02651846 05 n 02 Dactylopteridae 0 family_Dactylopteridae 0 004 @ 01429349 n 0000 #m 02641608 n 0000 %m 02652005 n 0000 %m 02652132 n 0000 | flying gurnards -02652005 05 n 02 Dactylopterus 0 genus_Dactylopterus 0 002 @ 01432517 n 0000 #m 02651846 n 0000 | a genus of Dactylopteridae -02652132 05 n 03 flying_gurnard 0 flying_robin 0 butterflyfish 1 002 @ 02642107 n 0000 #m 02651846 n 0000 | tropical fish with huge fanlike pectoral fins for underwater gliding; unrelated to searobins -02652335 05 n 03 Plectognathi 0 order_Plectognathi 0 order_Tetraodontiformes 0 009 @ 01342529 n 0000 #m 02551824 n 0000 %m 02652668 n 0000 %m 02652979 n 0000 %m 02653655 n 0000 %m 02654256 n 0000 %m 02654890 n 0000 %m 02655355 n 0000 %m 02656426 n 0000 | boxfishes; filefishes; globefishes; ocean sunfishes; triggerfishes; puffers -02652668 05 n 02 plectognath 0 plectognath_fish 0 008 @ 02552171 n 0000 #m 02652335 n 0000 ~ 02653145 n 0000 ~ 02653786 n 0000 ~ 02654425 n 0000 ~ 02655020 n 0000 ~ 02655523 n 0000 ~ 02656670 n 0000 | tropical marine fishes having the teeth fused into a beak and thick skin covered with bony plates or spines -02652979 05 n 02 Balistidae 0 family_Balistidae 0 005 @ 01429349 n 0000 #m 02652335 n 0000 %m 02653145 n 0000 %m 02653359 n 0000 %m 02653786 n 0000 | triggerfishes -02653145 05 n 01 triggerfish 0 003 @ 02652668 n 0000 #m 02652979 n 0000 ~ 02653497 n 0000 | any of numerous compressed deep-bodied tropical fishes with sandpapery skin and erectile spines in the first dorsal fin -02653359 05 n 02 Balistes 0 genus_Balistes 0 003 @ 01432517 n 0000 #m 02652979 n 0000 %m 02653497 n 0000 | type genus of the Balistidae -02653497 05 n 05 queen_triggerfish 0 Bessy_cerca 0 oldwench 0 oldwife 0 Balistes_vetula 0 002 @ 02653145 n 0000 #m 02653359 n 0000 | tropical Atlantic fish -02653655 05 n 02 Monocanthidae 0 family_Monocanthidae 0 003 @ 01429349 n 0000 #m 02652335 n 0000 %m 02653965 n 0000 | filefishes -02653786 05 n 01 filefish 0 003 @ 02652668 n 0000 #m 02652979 n 0000 ~ 02654112 n 0000 | narrow flattened warm-water fishes with leathery skin and a long file-like dorsal spine -02653965 05 n 02 Monocanthus 0 genus_Monocanthus 0 003 @ 01432517 n 0000 #m 02653655 n 0000 %m 02654112 n 0000 | type genus of the Monocanthidae -02654112 05 n 02 leatherjacket 1 leatherfish 0 002 @ 02653786 n 0000 #m 02653965 n 0000 | any of several brightly colored tropical filefishes -02654256 05 n 03 Ostraciidae 0 family_Ostraciidae 0 family_Ostraciontidae 0 004 @ 01429349 n 0000 #m 02652335 n 0000 %m 02654425 n 0000 %m 02654609 n 0000 | boxfishes -02654425 05 n 02 boxfish 0 trunkfish 0 003 @ 02652668 n 0000 #m 02654256 n 0000 ~ 02654745 n 0000 | any of numerous small tropical fishes having body and head encased in bony plates -02654609 05 n 02 Lactophrys 0 genus_Lactophrys 0 003 @ 01432517 n 0000 #m 02654256 n 0000 %m 02654745 n 0000 | a genus of Ostraciidae -02654745 05 n 02 cowfish 0 Lactophrys_quadricornis 0 002 @ 02654425 n 0000 #m 02654609 n 0000 | trunkfish having hornlike spines over the eyes -02654890 05 n 02 Tetraodontidae 0 family_Tetraodontidae 0 003 @ 01429349 n 0000 #m 02652335 n 0000 %m 02655020 n 0000 | puffers -02655020 05 n 04 puffer 0 pufferfish 0 blowfish 0 globefish 0 004 @ 02652668 n 0000 #m 02654890 n 0000 + 00263682 v 0101 %p 07781972 n 0000 | any of numerous marine fishes whose elongated spiny body can inflate itself with water or air to form a globe; several species contain a potent nerve poison; closely related to spiny puffers -02655355 05 n 02 Diodontidae 0 family_Diodontidae 0 005 @ 01429349 n 0000 #m 02652335 n 0000 %m 02655523 n 0000 %m 02655694 n 0000 %m 02656171 n 0000 | spiny puffers -02655523 05 n 01 spiny_puffer 0 005 @ 02652668 n 0000 #m 02655355 n 0000 ~ 02655848 n 0000 ~ 02656032 n 0000 ~ 02656301 n 0000 | puffers having rigid or erectile spines -02655694 05 n 02 Diodon 0 genus_Diodon 0 004 @ 01432517 n 0000 #m 02655355 n 0000 %m 02655848 n 0000 %m 02656032 n 0000 | type genus of the Diodontidae -02655848 05 n 03 porcupinefish 0 porcupine_fish 0 Diodon_hystrix 0 002 @ 02655523 n 0000 #m 02655694 n 0000 | spines become erect when the body is inflated; worldwide in warm waters -02656032 05 n 02 balloonfish 0 Diodon_holocanthus 0 002 @ 02655523 n 0000 #m 02655694 n 0000 | similar to but smaller than porcupinefish -02656171 05 n 02 Chilomycterus 0 genus_Chilomycterus 0 003 @ 01432517 n 0000 #m 02655355 n 0000 %m 02656301 n 0000 | burrfishes -02656301 05 n 01 burrfish 0 002 @ 02655523 n 0000 #m 02656171 n 0000 | any of several fishes having rigid flattened spines -02656426 05 n 02 Molidae 0 family_Molidae 0 003 @ 01429349 n 0000 #m 02652335 n 0000 %m 02656550 n 0000 | ocean sunfishes -02656550 05 n 01 genus_Mola 0 003 @ 01432517 n 0000 #m 02656426 n 0000 %m 02656670 n 0000 | type genus of the Molidae -02656670 05 n 04 ocean_sunfish 0 sunfish 2 mola 0 headfish 0 003 @ 02652668 n 0000 #m 02656550 n 0000 ~ 02656969 n 0000 | among the largest bony fish; pelagic fish having an oval compressed body with high dorsal and anal fins and caudal fin reduced to a rudder-like lobe; worldwide in warm waters -02656969 05 n 02 sharptail_mola 0 Mola_lanceolata 0 001 @ 02656670 n 0000 | caudal fin has a central projection -02657083 05 n 03 Heterosomata 0 order_Heterosomata 0 order_Pleuronectiformes 0 007 @ 01342529 n 0000 #m 02551824 n 0000 %m 02657368 n 0000 %m 02657805 n 0000 %m 02660769 n 0000 %m 02663352 n 0000 %m 02663657 n 0000 | flatfishes: halibut; sole; flounder; plaice; turbot; tonguefishes -02657368 05 n 01 flatfish 0 008 @ 02552171 n 0000 #m 02657083 n 0000 ~ 02657694 n 0000 ~ 02658079 n 0000 ~ 02660208 n 0000 ~ 02661017 n 0000 ~ 02663485 n 0000 ~ 02663849 n 0000 | any of several families of fishes having flattened bodies that swim along the sea floor on one side of the body with both eyes on the upper side -02657694 05 n 01 flounder 0 001 @ 02657368 n 0000 | any of various European and non-European marine flatfish -02657805 05 n 02 Pleuronectidae 0 family_Pleuronectidae 0 010 @ 01429349 n 0000 #m 02657083 n 0000 %m 02658079 n 0000 %m 02658381 n 0000 %m 02658670 n 0000 %m 02658944 n 0000 %m 02659342 n 0000 %m 02659667 n 0000 %m 02659961 n 0000 %m 02660412 n 0000 | righteye flounders -02658079 05 n 02 righteye_flounder 0 righteyed_flounder 0 010 @ 02657368 n 0000 #m 02657805 n 0000 ~ 02658531 n 0000 ~ 02658811 n 0000 ~ 02659176 n 0000 ~ 02659478 n 0000 ~ 02659808 n 0000 ~ 02660091 n 0000 ~ 02660519 n 0000 ~ 02660640 n 0000 | flounders with both eyes on the right side of the head -02658381 05 n 02 Pleuronectes 0 genus_Pleuronectes 0 003 @ 01432517 n 0000 #m 02657805 n 0000 %m 02658531 n 0000 | type genus of the Pleuronectidae -02658531 05 n 02 plaice 0 Pleuronectes_platessa 0 003 @ 02658079 n 0000 #m 02658381 n 0000 %p 07790935 n 0000 | large European food fish -02658670 05 n 02 Platichthys 0 genus_Platichthys 0 003 @ 01432517 n 0000 #m 02657805 n 0000 %m 02658811 n 0000 | a genus of Pleuronectidae -02658811 05 n 02 European_flatfish 0 Platichthys_flesus 0 002 @ 02658079 n 0000 #m 02658670 n 0000 | important food fish of Europe -02658944 05 n 02 Limanda 0 genus_Limanda 0 003 @ 01432517 n 0000 #m 02657805 n 0000 %m 02659176 n 0000 | a genus of Pleuronectidae; righteye flounders having a humped nose and small scales; the underside is often brightly colored -02659176 05 n 02 yellowtail_flounder 0 Limanda_ferruginea 0 003 @ 02658079 n 0000 #m 02658944 n 0000 %p 07790800 n 0000 | American flounder having a yellowish tail -02659342 05 n 02 Pseudopleuronectes 0 genus_Pseudopleuronectes 0 002 @ 01432517 n 0000 #m 02657805 n 0000 | a genus of Pleuronectidae -02659478 05 n 04 winter_flounder 0 blackback_flounder 0 lemon_sole 2 Pseudopleuronectes_americanus 0 002 @ 02658079 n 0000 %p 07791663 n 0000 | important American food fish in the winter -02659667 05 n 02 Microstomus 0 genus_Microstomus 0 003 @ 01432517 n 0000 #m 02657805 n 0000 %m 02659808 n 0000 | a genus of Pleuronectidae -02659808 05 n 02 lemon_sole 1 Microstomus_kitt 0 003 @ 02658079 n 0000 #m 02659667 n 0000 %p 07791535 n 0000 | European flatfish highly valued as food -02659961 05 n 02 Hippoglossoides 0 genus_Hippoglossoides 0 002 @ 01432517 n 0000 #m 02657805 n 0000 | a genus of Pleuronectidae -02660091 05 n 02 American_plaice 0 Hippoglossoides_platessoides 0 001 @ 02658079 n 0000 | large American food fish -02660208 05 n 02 halibut 0 holibut 0 002 @ 02657368 n 0000 %p 07791808 n 0000 | marine food fish of the northern Atlantic or northern Pacific; the largest flatfish and one of the largest teleost fishes -02660412 05 n 02 Hippoglossus 0 genus_Hippoglossus 0 002 @ 01432517 n 0000 #m 02657805 n 0000 | halibuts -02660519 05 n 02 Atlantic_halibut 0 Hippoglossus_hippoglossus 0 001 @ 02658079 n 0000 | largest United States flatfish -02660640 05 n 02 Pacific_halibut 0 Hippoglossus_stenolepsis 0 001 @ 02658079 n 0000 | a righteye flounder found in the Pacific -02660769 05 n 02 Bothidae 0 family_Bothidae 0 008 @ 01429349 n 0000 #m 02657083 n 0000 %m 02661017 n 0000 %m 02661317 n 0000 %m 02661765 n 0000 %m 02662081 n 0000 %m 02662688 n 0000 %m 02663086 n 0000 | a family of fish of the order Heterosomata -02661017 05 n 02 lefteye_flounder 0 lefteyed_flounder 0 010 @ 02657368 n 0000 #m 02660769 n 0000 ~ 02661473 n 0000 ~ 02661618 n 0000 ~ 02661892 n 0000 ~ 02662239 n 0000 ~ 02662559 n 0000 ~ 02662825 n 0000 ~ 02662993 n 0000 ~ 02663211 n 0000 | flatfishes with both eyes on the left side of the head -02661317 05 n 02 Paralichthys 0 genus_Paralichthys 0 004 @ 01432517 n 0000 #m 02660769 n 0000 %m 02661473 n 0000 %m 02661618 n 0000 | a genus of Bothidae -02661473 05 n 02 southern_flounder 0 Paralichthys_lethostigmus 0 002 @ 02661017 n 0000 #m 02661317 n 0000 | flounder of southern United States -02661618 05 n 02 summer_flounder 0 Paralichthys_dentatus 0 002 @ 02661017 n 0000 #m 02661317 n 0000 | flounder of eastern coast of North America -02661765 05 n 02 Etropus 0 genus_Etropus 0 003 @ 01432517 n 0000 #m 02660769 n 0000 %m 02661892 n 0000 | a genus of Bothidae -02661892 05 n 03 grey_flounder 0 gray_flounder 0 Etropus_rimosus 0 002 @ 02661017 n 0000 #m 02661765 n 0000 | flounder found from North Carolina to Florida and the eastern Gulf of Mexico -02662081 05 n 02 Citharichthys 0 genus_Citharichthys 0 004 @ 01432517 n 0000 #m 02660769 n 0000 %m 02662239 n 0000 %m 02662559 n 0000 | a genus of Bothidae -02662239 05 n 01 whiff 0 003 @ 02661017 n 0000 #m 02662081 n 0000 ~ 02662397 n 0000 | a lefteye flounder found in coastal waters from New England to Brazil -02662397 05 n 02 horned_whiff 0 Citharichthys_cornutus 0 001 @ 02662239 n 0000 | a whiff found in waters from the Bahamas and northern Gulf of Mexico to Brazil -02662559 05 n 01 sand_dab 0 002 @ 02661017 n 0000 #m 02662081 n 0000 | small food fishes of the Pacific coast of North America -02662688 05 n 02 Scophthalmus 0 genus_Scophthalmus 0 003 @ 01432517 n 0000 #m 02660769 n 0000 %m 02662825 n 0000 | a genus of Bothidae -02662825 05 n 02 windowpane 0 Scophthalmus_aquosus 0 002 @ 02661017 n 0000 #m 02662688 n 0000 | very thin translucent flounder of the Atlantic coast of North America -02662993 05 n 02 brill 0 Scophthalmus_rhombus 0 001 @ 02661017 n 0000 | European food fish -02663086 05 n 02 Psetta 0 genus_Psetta 0 003 @ 01432517 n 0000 #m 02660769 n 0000 %m 02663211 n 0000 | a genus of Bothidae -02663211 05 n 02 turbot 0 Psetta_maxima 0 003 @ 02661017 n 0000 #m 02663086 n 0000 %p 07791039 n 0000 | a large brownish European flatfish -02663352 05 n 02 Cynoglossidae 0 family_Cynoglossidae 0 003 @ 01429349 n 0000 #m 02657083 n 0000 %m 02663485 n 0000 | tonguefishes -02663485 05 n 02 tonguefish 0 tongue-fish 0 002 @ 02657368 n 0000 #m 02663352 n 0000 | left-eyed marine flatfish whose tail tapers to a point; of little commercial value -02663657 05 n 02 Soleidae 0 family_Soleidae 0 007 @ 01429349 n 0000 #m 02657083 n 0000 %m 02663849 n 0000 %m 02664136 n 0000 %m 02664511 n 0000 %m 02664823 n 0000 %m 02665119 n 0000 | soles -02663849 05 n 01 sole 0 009 @ 02657368 n 0000 @ 02512938 n 0000 #m 02663657 n 0000 ~ 02664285 n 0000 ~ 02664399 n 0000 ~ 02664642 n 0000 ~ 02664960 n 0000 ~ 02665250 n 0000 %p 07791274 n 0000 | right-eyed flatfish; many are valued as food; most common in warm seas especially European -02664136 05 n 02 Solea 0 genus_Solea 0 004 @ 01432517 n 0000 #m 02663657 n 0000 %m 02664285 n 0000 %m 02664399 n 0000 | type genus of the Soleidae -02664285 05 n 02 European_sole 0 Solea_solea 0 002 @ 02663849 n 0000 #m 02664136 n 0000 | highly valued as food -02664399 05 n 02 lemon_sole 0 Solea_lascaris 0 002 @ 02663849 n 0000 #m 02664136 n 0000 | small European sole -02664511 05 n 02 Parophrys 0 genus_Parophrys 0 003 @ 01432517 n 0000 #m 02663657 n 0000 %m 02664642 n 0000 | a genus of Soleidae -02664642 05 n 03 English_sole 0 lemon_sole 3 Parophrys_vitulus 0 002 @ 02663849 n 0000 #m 02664511 n 0000 | popular pale brown food flatfish of the Pacific coast of North America -02664823 05 n 02 Psettichthys 0 genus_Psettichthys 0 003 @ 01432517 n 0000 #m 02663657 n 0000 %m 02664960 n 0000 | a genus of Soleidae -02664960 05 n 02 sand_sole 0 Psettichthys_melanostichus 0 002 @ 02663849 n 0000 #m 02664823 n 0000 | a common flatfish of the Pacific coast of North America -02665119 05 n 02 Trinectes 0 genus_Trinectes 0 003 @ 01432517 n 0000 #m 02663657 n 0000 %m 02665250 n 0000 | a genus of Soleidae -02665250 05 n 02 hogchoker 0 Trinectes_maculatus 0 002 @ 02663849 n 0000 #m 02665119 n 0000 | useless as food; in coastal streams from Maine to Texas and Panama -02665413 05 n 01 thick_skin 0 002 @ 05238282 n 0000 #p 02453108 n 0000 | skin that is very thick (as an elephant or rhinoceros) -02665543 05 n 01 thorax 1 003 @ 05220461 n 0000 #p 02159955 n 0000 ~ 02665687 n 0000 | part of an insect's body that bears the wings and legs -02665687 05 n 01 prothorax 0 001 @ 02665543 n 0000 | the anterior part of an insect's thorax; bears the first pair of legs -02665812 05 n 02 metamere 0 somite 0 002 @ 09429387 n 0000 + 02481951 a 0101 | one of a series of similar body segments into which some animals are divided longitudinally -02665985 06 n 01 aba 0 001 @ 03309808 n 0000 | a fabric woven from goat hair and camel hair -02666079 06 n 01 aba 1 001 @ 03863923 n 0000 | a loose sleeveless outer garment made from aba cloth; worn by Arabs -02666196 06 n 01 abacus 0 001 @ 02938886 n 0000 | a calculator that performs arithmetic functions by manually sliding counters on rods or in grooves -02666347 06 n 01 abacus 1 001 @ 04381302 n 0000 | a tablet placed horizontally on top of the capital of a column as an aid in supporting the architrave -02666501 06 n 02 abandoned_ship 0 derelict 0 002 @ 04194289 n 0000 + 01313004 a 0202 | a ship abandoned on the high seas -02666624 06 n 01 A_battery 0 001 @ 02810471 n 0000 | the battery used to heat the filaments of a vacuum tube -02666735 06 n 02 abattis 0 abatis 0 001 @ 03672638 n 0000 | a line of defense consisting of a barrier of felled or live trees with branches (sharpened or with barbed wire entwined) pointed toward the enemy -02666943 06 n 04 abattoir 0 butchery 0 shambles 0 slaughterhouse 0 002 @ 02913152 n 0000 + 01322854 v 0201 | a building where animals are butchered -02667093 06 n 01 abaya 0 002 @ 04097866 n 0000 ;c 06988057 n 0000 | (Arabic) a loose black robe from head to toe; traditionally worn by Muslim women -02667244 06 n 01 Abbe_condenser 0 001 @ 03087366 n 0000 | a condenser having 2 or 3 lenses with wide aperture for use in microscopes -02667379 06 n 01 abbey 0 002 @ 03781244 n 0000 + 02598768 a 0101 | a monastery ruled by an abbot -02667478 06 n 01 abbey 1 002 @ 03099454 n 0000 + 02598768 a 0101 | a convent ruled by an abbess -02667576 06 n 01 abbey 2 002 @ 03028079 n 0000 + 02598768 a 0101 | a church associated with a monastery or convent -02667693 06 n 01 Abney_level 0 001 @ 04365751 n 0000 | a surveying instrument consisting of a spirit level and a sighting tube; used to measure the angle of inclination of a line from the observer to the target -02667906 06 n 03 abortifacient 0 aborticide 0 abortion-inducing_drug 0 003 @ 03247620 n 0000 + 00322844 a 0101 ~ 02668093 n 0000 | a drug (or other chemical agent) that causes abortion -02668093 06 n 03 abortion_pill 0 mifepristone 0 RU_486 0 002 @ 02667906 n 0000 ;u 06851742 n 0301 | an abortion-inducing drug (trade name RU_486) developed in France; when taken during the first five weeks of pregnancy it blocks the action of progesterone so that the uterus sloughs off the embryo -02668393 06 n 02 abrader 0 abradant 0 006 @ 04451818 n 0000 + 01254013 v 0201 + 01251651 v 0102 + 01254013 v 0101 ~ 02668613 n 0000 ~ 04312020 n 0000 | a tool or machine used for wearing down or smoothing or polishing -02668613 06 n 01 abrading_stone 0 001 @ 02668393 n 0000 | a primitive stone artifact (usually made of sandstone) used as an abrader -02668747 06 n 02 Abstract_Expressionism 0 action_painting 0 001 @ 08466643 n 0000 | a New York school of painting characterized by freely created abstractions; the first important school of American painting to develop independently of European styles -02669001 06 n 01 abstraction 0 001 @ 03876519 n 0000 | an abstract painting -02669079 06 n 02 abstractionism 0 abstract_art 0 003 @ 03434943 n 0000 + 09758424 n 0101 ~ 03847622 n 0000 | an abstract genre of art; artistic content depends on internal form rather than pictorial representation -02669295 06 n 01 abutment 0 001 @ 04360501 n 0000 | a masonry support that touches and directly receives thrust or pressure of an arch or bridge -02669442 06 n 01 abutment_arch 0 001 @ 02733524 n 0000 | an arch supported by an abutment -02669534 06 n 01 academic_costume 0 003 @ 03113835 n 0000 %p 02669723 n 0000 %p 03787032 n 0000 | a costume worn on formal occasions by the faculty or students of a university or college -02669723 06 n 03 academic_gown 0 academic_robe 0 judge's_robe 0 003 @ 03450516 n 0000 #p 02669534 n 0000 ~ 03434830 n 0000 | a gown worn by academics or judges -02669885 06 n 01 academy 0 004 @ 03297735 n 0000 + 09759501 n 0101 + 09759311 n 0101 + 09759069 n 0101 | a learned establishment for the advancement of knowledge -02670049 06 n 02 Acapulco_gold 0 Mexican_green 0 002 @ 02949691 n 0000 #p 12397210 n 0000 | a particularly potent variety of marijuana -02670186 06 n 03 accelerator 0 throttle 0 throttle_valve 0 004 @ 04519153 n 0000 #p 03401721 n 0000 + 00173159 v 0202 + 00439343 v 0101 | a valve that regulates the supply of fuel to the engine -02670382 06 n 03 accelerator 1 particle_accelerator 0 atom_smasher 0 008 @ 04147495 n 0000 ~ 02832838 n 0000 ~ 03008817 n 0000 ~ 03060728 n 0000 ~ 03070193 n 0000 ~ 03156071 n 0000 ~ 03671914 n 0000 %p 04328703 n 0000 | a scientific instrument that increases the kinetic energy of charged particles -02670683 06 n 06 accelerator 2 accelerator_pedal 0 gas_pedal 0 gas 0 throttle 1 gun 4 005 @ 03903424 n 0000 #p 02958343 n 0000 #p 02691156 n 0000 + 00173159 v 0502 + 00439343 v 0101 | a pedal that controls the throttle valve; "he stepped on the gas" -02670935 06 n 01 accelerometer 0 001 @ 03733925 n 0000 | an instrument for measuring the acceleration of aircraft or rockets -02671062 06 n 02 access 0 approach 0 002 @ 04564698 n 0000 ~ 03290771 n 0000 | a way of entering or leaving; "he took a wrong turn on the access to the bridge" -02671224 06 n 02 access 1 memory_access 0 004 @ 13524925 n 0000 ;c 06128570 n 0000 + 02248808 v 0101 ~ 03208815 n 0000 | (computer science) the operation of reading or writing stored information -02671421 06 n 04 accessory 0 appurtenance 0 supplement 0 add-on 1 013 @ 03081021 n 0000 + 01328705 v 0402 + 01854129 a 0304 + 01854129 a 0303 + 02342132 v 0301 + 02354897 a 0205 + 02653706 v 0202 + 02354897 a 0101 + 00902946 a 0101 ~ 02758753 n 0000 ~ 03084204 n 0000 ~ 03353616 n 0000 ~ 03354350 n 0000 | a supplementary component that improves capability -02671780 06 n 03 accessory 1 accoutrement 0 accouterment 0 004 @ 03051540 n 0000 + 00902946 a 0101 ~ 02827606 n 0000 ~ 03405595 n 0000 | clothing that is worn or carried, but not part of your main clothing -02671988 06 n 02 access_road 0 slip_road 0 001 @ 04096066 n 0000 | a short road giving access to an expressway; "in Britain they call an access road a slip road" -02672152 06 n 02 accommodating_lens_implant 0 accommodating_IOL 0 001 @ 03657239 n 0000 | a lens implant containing a hinge that allows for both near and far vision (thus mimicking the natural lens of a young person) -02672371 06 n 01 accommodation 0 008 @ 03679384 n 0000 + 02651424 v 0102 ~ 02932693 n 0000 ~ 03349892 n 0000 ~ 03685820 n 0000 ~ 04295353 n 0000 ~ 04312654 n 0000 ~ 04459243 n 0000 | living quarters provided for public convenience; "overnight accommodations are available" -02672646 06 n 01 accommodation_ladder 0 002 @ 04159676 n 0000 ;c 00314469 n 0000 | (nautical) a portable ladder hung over the side of a vessel to give access to small boats alongside -02672831 06 n 03 accordion 0 piano_accordion 0 squeeze_box 0 003 @ 03393324 n 0000 @ 03614532 n 0000 %p 03928814 n 0000 | a portable box-shaped free-reed instrument; the reeds are made to vibrate by air from the bellows controlled by the player -02673078 06 n 02 accumulator 1 accumulator_register 0 002 @ 04071876 n 0000 ;c 06128570 n 0000 | (computer science) a register that has a built-in adder that adds an input number to the contents of the register -02673291 06 n 01 ace 0 005 @ 03963982 n 0000 ~ 02674101 n 0000 ~ 02674184 n 0000 ~ 02674273 n 0000 ~ 02674358 n 0000 | one of four playing cards in a deck having a single pip on its face -02673480 06 n 02 acebutolol 0 Sectral 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | an oral beta blocker (trade name Sectral) used in treating hypertension -02673637 06 n 02 ACE_inhibitor 0 angiotensin-converting_enzyme_inhibitor 0 006 @ 02721160 n 0000 ~ 02958002 n 0000 ~ 03285106 n 0000 ~ 03677308 n 0000 ~ 04051068 n 0000 ~ 04470037 n 0000 | an antihypertensive drug that blocks the formation of angiotensin II in the kidney, leading to relaxation of the arteries; promotes the excretion of salt and water by inhibiting the activity of the angiotensin converting enzyme; also used to treat congestive heart failure -02674101 06 n 01 ace_of_clubs 0 001 @ 02673291 n 0000 | the ace in the club suit -02674184 06 n 01 ace_of_diamonds 0 001 @ 02673291 n 0000 | the ace in the diamond suit -02674273 06 n 01 ace_of_hearts 0 001 @ 02673291 n 0000 | the ace in the heart suit -02674358 06 n 01 ace_of_spades 0 001 @ 02673291 n 0000 | the ace in the spade suit; sometimes taken as a portent of death -02674482 06 n 07 acetaminophen 0 Datril 0 Tylenol 0 Panadol 0 Phenaphen 0 Tempra 0 Anacin_III 0 007 @ 02707683 n 0000 ;u 06851742 n 0701 ;u 06851742 n 0601 ;u 06851742 n 0501 ;u 06851742 n 0401 ;u 06851742 n 0301 ;u 06851742 n 0201 | an analgesic for mild pain but not for inflammation; also used as an antipyretic; (Datril, Tylenol, Panadol, Phenaphen, Tempra, and Anacin III are trademarks of brands of acetaminophen tablets) -02674912 06 n 03 acetanilide 0 acetanilid 0 phenylacetamide 0 001 @ 02707683 n 0000 | a white crystalline compound used as an analgesic and also as an antipyretic -02675077 06 n 02 acetate_disk 0 phonograph_recording_disk 0 002 @ 03208556 n 0000 #p 03924069 n 0000 | a disk coated with cellulose acetate -02675219 06 n 02 acetate_rayon 0 acetate 0 002 @ 04056932 n 0000 %s 14965135 n 0000 | a fabric made from fibers of cellulose acetate -02675354 06 n 03 acetophenetidin 0 acetphenetidin 0 phenacetin 0 001 @ 02707683 n 0000 | a white crystalline compound used as an analgesic and also as an antipyretic -02675522 06 n 01 achromatic_lens 0 001 @ 03081986 n 0000 | a compound lens system that forms an image free from chromatic aberration -02675657 06 n 0c acid 0 back_breaker 0 battery-acid 0 dose 1 dot 0 Elvis 0 loony_toons 0 Lucy_in_the_sky_with_diamonds 0 pane 2 superman 0 window_pane 0 Zen 0 001 @ 03699396 n 0000 | street name for lysergic acid diethylamide -02675885 06 n 01 acorn_tube 0 001 @ 04494204 n 0000 | a small vacuum tube; used at high frequencies -02675987 06 n 01 acoustic 0 002 @ 04074482 n 0000 + 02868489 a 0101 | a remedy for hearing loss or deafness -02676097 06 n 02 acoustic_delay_line 0 sonic_delay_line 0 002 @ 03172965 n 0000 #p 02676805 n 0000 | a delay line based on the time of propagation of sound waves -02676261 06 n 01 acoustic_device 0 012 @ 03183080 n 0000 ~ 02824448 n 0000 ~ 02843465 n 0000 ~ 03506560 n 0000 ~ 03743279 n 0000 ~ 03795123 n 0000 ~ 03802973 n 0000 ~ 04218564 n 0000 ~ 04224395 n 0000 ~ 04233960 n 0000 ~ 04270576 n 0000 ~ 04579432 n 0000 | a device for amplifying or transmitting sound -02676566 06 n 01 acoustic_guitar 0 001 @ 03467517 n 0000 | sound is not amplified by electrical means -02676670 06 n 01 acoustic_modem 0 001 @ 03777754 n 0000 | a modem that converts electrical signals to telephone tones and back again -02676805 06 n 01 acoustic_storage 0 002 @ 03744840 n 0000 %p 02676097 n 0000 | a storage device consisting of acoustic delay lines -02676938 06 n 01 acropolis 0 001 @ 02806088 n 0000 | the citadel in ancient Greek towns -02677028 06 n 01 acrylic 0 003 @ 03309808 n 0000 ~ 03121190 n 0000 ~ 03855756 n 0000 | a synthetic fabric -02677136 06 n 02 acrylic 1 acrylic_paint 0 001 @ 03875218 n 0000 | used especially by artists -02677232 06 n 01 Actifed 0 002 @ 02720725 n 0000 @ 03809939 n 0000 | trade name for a drug containing an antihistamine and a decongestant; used to treat upper respiratory conditions and minor allergies -02677436 06 n 01 actinometer 0 001 @ 03733925 n 0000 | an instrument for measuring the intensity of electromagnetic radiation (usually by the photochemical effect) -02677602 06 n 01 actinomycin 0 001 @ 02716866 n 0000 | any of various red antibiotics isolated from soil bacteria -02677718 06 n 02 action 0 action_mechanism 0 008 @ 03738472 n 0000 #p 03467984 n 0000 #p 03614007 n 0000 ~ 03469493 n 0000 %p 03613592 n 0000 ~ 03795758 n 0000 ~ 03928589 n 0000 ~ 04022434 n 0000 | the operating part that transmits power to a mechanism; "the piano had a very stiff action" -02678010 06 n 01 active_matrix_screen 0 001 @ 03676759 n 0000 | a type of LCD screen used for some portable computers; there is a separate circuit for each pixel -02678174 06 n 01 active_placebo 0 001 @ 03952696 n 0000 | a placebo used in experimental tests of a drug that has noticeable side effects; "an active placebo mimics the side effects of the experimental drug" -02678384 06 n 01 actuator 0 003 @ 03738472 n 0000 + 01643657 v 0102 ~ 04110439 n 0000 | a mechanism that puts something into automatic action -02678528 06 n 02 acyclovir 0 Zovirax 0 002 @ 03740161 n 0000 ;u 06851742 n 0201 | an oral antiviral drug (trade name Zovirax) used to treat genital herpes; does not cure the disease but relieves the symptoms -02678738 06 n 08 Adam 0 ecstasy 0 XTC 0 go 0 disco_biscuit 0 cristal 0 X 0 hug_drug 0 001 @ 03756184 n 0000 | street names for methylenedioxymethamphetamine -02678897 06 n 02 adapter 0 adaptor 0 003 @ 03183080 n 0000 + 00299580 v 0201 + 00299580 v 0101 | device that enables something to be used in a way different from that for which it was intended or makes different pieces of apparatus compatible -02679142 06 n 01 adder 0 003 @ 02938886 n 0000 + 00949288 v 0108 + 00640828 v 0101 | a machine that adds numbers -02679257 06 n 03 adding_machine 0 totalizer 0 totaliser 0 002 @ 02938886 n 0000 #p 02977438 n 0000 | a calculator that performs simple arithmetic functions -02679415 06 n 03 addition 0 add-on 0 improver 0 009 @ 03081021 n 0000 + 00205885 v 0302 + 00183757 v 0201 + 02324478 v 0105 ~ 02679788 n 0000 ~ 02683936 n 0000 ~ 02713594 n 0000 ~ 02755244 n 0000 ~ 03281935 n 0000 | a component that is added to something to improve it; "the addition of a bathroom was a major improvement"; "the addition of cinnamon improved the flavor" -02679788 06 n 01 additive 0 004 @ 02679415 n 0000 + 00048129 a 0101 ~ 02680947 n 0000 ~ 03377845 n 0000 | something added to enhance food or gasoline or paint or medicine -02679961 06 n 02 addressing_machine 0 Addressograph 0 001 @ 04004475 n 0000 | a printer that automatically prints addresses on letters for mailing -02680110 06 n 01 adhesive_bandage 0 003 @ 02785648 n 0000 ~ 02786058 n 0000 ~ 03268142 n 0000 | bandage consisting of a medical dressing of plain absorbent gauze held in place by a plastic or fabric tape coated with adhesive -02680337 06 n 01 adhesive_tape 0 006 @ 04391569 n 0000 ~ 02992795 n 0000 ~ 03253516 n 0000 ~ 03396841 n 0000 ~ 03725355 n 0000 ~ 03957420 n 0000 | tape coated with adhesive -02680512 06 n 01 adit 0 002 @ 03895293 n 0000 #p 03768346 n 0000 | a nearly horizontal passage from the surface into a mine -02680638 06 n 01 adjoining_room 0 001 @ 03542860 n 0000 | a hotel room that shares a wall with another hotel room -02680754 06 n 02 adjustable_wrench 0 adjustable_spanner 0 005 @ 04606574 n 0000 ~ 03130866 n 0000 ~ 03782794 n 0000 ~ 03947466 n 0000 ~ 04155177 n 0000 | can be changed to different settings -02680947 06 n 01 adjuvant 0 002 @ 02679788 n 0000 + 01196098 a 0101 | an additive that enhances the effectiveness of medical treatment -02681084 06 n 02 admixture 0 intermixture 0 003 @ 03570709 n 0000 + 01462468 v 0202 + 00396703 v 0101 | an additional ingredient that is added by mixing with the base; "the growing medium should be equal parts of sand and loam with an admixture of peat moss and cow manure"; "a large intermixture of sand" -02681392 06 n 02 adobe 0 adobe_brick 0 002 @ 02897820 n 0000 %s 14600927 n 0000 | sun-dried brick; used in hot dry climates -02681518 06 n 01 adornment 0 023 @ 03169390 n 0000 + 02748927 v 0102 ~ 02784732 n 0000 ~ 02787435 n 0000 ~ 02818027 n 0000 ~ 02879422 n 0000 ~ 03033267 n 0000 ~ 03107383 n 0000 ~ 03292210 n 0000 ~ 03374978 n 0000 ~ 03397532 n 0000 ~ 03398382 n 0000 ~ 03399579 n 0000 ~ 03597469 n 0000 ~ 03903290 n 0000 ~ 03908831 n 0000 ~ 03969998 n 0000 ~ 03980734 n 0000 ~ 04109899 n 0000 ~ 04173698 n 0000 ~ 04395201 n 0000 ~ 04484160 n 0000 ~ 04552195 n 0000 | a decoration of color or interest that is added to relieve plainness -02682038 06 n 02 adrenergic 0 adrenergic_drug 0 004 @ 04522421 n 0000 + 02604543 a 0101 ~ 03922863 n 0000 ~ 03923004 n 0000 | drug that has the effects of epinephrine -02682207 06 n 01 adumbration 0 001 @ 04076846 n 0000 | a sketchy or imperfect or faint representation -02682311 06 n 02 adz 0 adze 0 001 @ 03265032 n 0000 | an edge tool used to cut and shape wood -02682407 06 n 03 aeolian_harp 0 aeolian_lyre 0 wind_harp 0 001 @ 03495258 n 0000 | a harp having strings tuned in unison; they sound when wind passes over them -02682569 06 n 01 aerator 0 002 @ 02727825 n 0000 + 00190999 v 0102 | an apparatus for exposing something to the air (as sewage) -02682699 06 n 01 aerial_ladder 0 001 @ 03307156 n 0000 | mechanically extendible ladder; used on a fire truck -02682811 06 n 01 aerial_torpedo 0 001 @ 04456472 n 0000 | a torpedo designed to be launched from an airplane -02682922 06 n 05 aerosol 0 aerosol_container 0 aerosol_can 0 aerosol_bomb 0 spray_can 0 002 @ 03210683 n 0000 ~ 03914583 n 0000 | a dispenser that holds a substance under pressure and that can release it as a fine spray (usually by means of a propellant gas) -02683183 06 n 01 Aertex 0 001 @ 03309808 n 0000 | a trademark for a loosely woven cotton fabric that is used to make shirts and underwear -02683323 06 n 01 afghan 0 001 @ 02849154 n 0000 | a blanket knitted or crocheted in strips or squares; sometimes used as a shawl -02683454 06 n 01 Afro-wig 0 001 @ 03476083 n 0000 | a wig that gives the appearance of an Afro hairdo -02683558 06 n 01 afterburner 0 002 @ 03183080 n 0000 #p 03321103 n 0000 | a device injects fuel into a hot exhaust for extra thrust -02683692 06 n 01 afterdeck 0 002 @ 03167666 n 0000 %p 03321672 n 0000 | a deck abaft of midships -02683791 06 n 02 after-shave 0 after-shave_lotion 0 002 @ 03690938 n 0000 ~ 02813252 n 0000 | a fragrant lotion for a man's face after shaving -02683936 06 n 01 afterthought 0 001 @ 02679415 n 0000 | an addition that was not included in the original plan; "the garage was an afterthought" -02684083 06 n 01 agal 0 001 @ 03106110 n 0000 | a cord (usually of goat's hair) that Arabs (especially Bedouins) wind around their heads to hold down the kaffiyeh -02684248 06 n 01 agateware 0 001 @ 03992703 n 0000 | pottery that is veined and mottled to resemble agate -02684356 06 n 01 agglomerator 0 002 @ 03183080 n 0000 + 01484714 v 0101 | a device that causes material to gather into rounded balls; "a sonic agglomerator" -02684515 06 n 03 aglet 0 aiglet 0 aiguilette 0 001 @ 02889035 n 0000 | ornamental tagged cord or braid on the shoulder of a uniform -02684649 06 n 02 aglet 1 aiglet 1 002 @ 04187061 n 0000 #p 04200637 n 0000 | metal or plastic sheath over the end of a shoelace or ribbon -02684789 06 n 01 agonist 0 002 @ 03247620 n 0000 ;c 06079620 n 0000 | (biochemistry) a drug that can combine with a receptor on a cell to produce a physiological reaction -02684962 06 n 02 agora 0 public_square 0 001 @ 03722288 n 0000 | a place of assembly for the people in ancient Greece -02685082 06 n 02 aigrette 0 aigret 0 001 @ 03969998 n 0000 | a long plume (especially one of egret feathers) worn on a hat or a piece of jewelry in the shape of a plume -02685253 06 n 01 aileron 0 002 @ 02688443 n 0000 #p 04592741 n 0000 | an airfoil that controls lateral motion -02685365 06 n 01 air_bag 0 003 @ 02773037 n 0000 @ 04081844 n 0000 #p 02958343 n 0000 | a safety restraint in an automobile; the bag inflates on collision and prevents the driver or passenger from being thrown forward -02685585 06 n 02 air_base 0 air_station 0 002 @ 02798290 n 0000 ;c 08199025 n 0000 | a base for military aircraft -02685701 06 n 01 airbrake 0 002 @ 03995018 n 0000 #p 03791235 n 0000 | a vehicular brake that operates by compressed air; especially for heavy vehicles -02685855 06 n 02 airbrake 1 dive_brake 0 001 @ 04081844 n 0000 | a small parachute or articulated flap to reduce the speed of an aircraft -02685995 06 n 01 airbrush 0 002 @ 02754103 n 0000 + 01363320 v 0101 | an atomizer to spray paint by means of compressed air -02686121 06 n 01 airbus 0 001 @ 02690373 n 0000 | a subsonic jet airliner operated over short distances -02686227 06 n 01 air_compressor 0 001 @ 03082807 n 0000 | a compressor that takes in air at atmospheric pressure and delivers it at a higher pressure -02686379 06 n 02 air_conditioner 0 air_conditioning 0 005 @ 03102859 n 0000 + 02331575 v 0201 + 02331326 v 0202 + 02331326 v 0102 + 02331575 v 0101 | a system that keeps air cool and dry -02686568 06 n 01 aircraft 0 029 @ 03125870 n 0000 -c 01185636 a 0000 -c 01187322 a 0000 -c 02370894 a 0000 -c 02371077 a 0000 -c 00303297 n 0000 -c 00305519 n 0000 -c 00368939 n 0000 -c 01266945 n 0000 %p 02687423 n 0000 %p 02812631 n 0000 ~ 02863638 n 0000 %p 02932019 n 0000 %p 03061505 n 0000 ~ 03140771 n 0000 %p 03401721 n 0000 ~ 03510583 n 0000 ~ 03666917 n 0000 %p 03830835 n 0000 %p 04226537 n 0000 %p 04230093 n 0000 ~ 04308084 n 0000 -c 07356489 n 0000 -c 07366799 n 0000 #m 08293831 n 0000 -c 10433164 n 0000 -c 13984082 n 0000 -c 01941093 v 0000 -c 01979702 v 0000 | a vehicle that can fly -02687172 06 n 04 aircraft_carrier 0 carrier 1 flattop 0 attack_aircraft_carrier 0 004 @ 04552696 n 0000 + 01449974 v 0202 %p 02742468 n 0000 %p 03363216 n 0000 | a large warship that carries planes and has a long flat deck for takeoffs and landings -02687423 06 n 01 aircraft_engine 0 002 @ 03287733 n 0000 #p 02686568 n 0000 | the engine that powers and aircraft -02687539 06 n 02 air_cushion 0 inflatable_cushion 0 001 @ 03151500 n 0000 | a cushion usually made of rubber or plastic that can be inflated -02687682 06 n 02 air_cushion 2 air_spring 0 001 @ 04198797 n 0000 | a mechanical device using confined air to absorb the shock of motion -02687821 06 n 03 airdock 0 hangar 0 repair_shed 0 002 @ 04341686 n 0000 #p 02692232 n 0000 | a large structure at an airport where aircraft can be stored and maintained -02687992 06 n 04 airfield 0 landing_field 0 flying_field 0 field 0 009 @ 03315023 n 0000 #p 04473432 n 0000 ~ 02692232 n 0000 ~ 02693070 n 0000 %p 02731123 n 0000 ~ 02762609 n 0000 %p 04120842 n 0000 %p 04396466 n 0000 %p 08594543 n 0000 | a place where planes take off and land -02688273 06 n 02 air_filter 0 air_cleaner 0 003 @ 03339643 n 0000 #p 04526964 n 0000 ~ 03340306 n 0000 | a filter that removes dust from the air that passes through it -02688443 06 n 04 airfoil 0 aerofoil 0 control_surface 0 surface 1 014 @ 03183080 n 0000 ~ 02685253 n 0000 ~ 03281524 n 0000 ~ 03357716 n 0000 ~ 03536122 n 0000 %p 03651739 n 0000 ~ 04112252 n 0000 ~ 04117464 n 0000 ~ 04283096 n 0000 ~ 04283255 n 0000 ~ 04294426 n 0000 %p 04467899 n 0000 ~ 04530283 n 0000 ~ 04592741 n 0000 | a device that provides reactive force when in motion relative to the surrounding air; can lift or control a plane in flight -02688895 06 n 02 Air_Force_Research_Laboratory 0 AFRL 0 002 @i 08337324 n 0000 #p 08196230 n 0000 | a United States Air Force defense laboratory responsible for discovering and developing and integrating fighting technologies for aerospace forces -02689144 06 n 01 airframe 0 001 @ 03391770 n 0000 | the framework and covering of an airplane or rocket (excluding the engines) -02689274 06 n 03 air_gun 0 airgun 0 air_rifle 0 003 @ 03467984 n 0000 ~ 02814116 n 0000 ~ 03875955 n 0000 | a gun that propels a projectile by compressed air -02689434 06 n 03 air_hammer 0 jackhammer 0 pneumatic_hammer 0 001 @ 03481521 n 0000 | a hammer driven by compressed air -02689556 06 n 01 air_hole 0 001 @ 03526198 n 0000 | a hole that allows the passage of air -02689648 06 n 01 air_horn 0 002 @ 03576617 n 0000 #p 02962200 n 0000 | air intake of a carburetor -02689748 06 n 01 air_horn 1 001 @ 03536761 n 0000 | a pneumatic horn -02689819 06 n 01 airing_cupboard 0 001 @ 03148324 n 0000 | a warm cupboard where you put newly washed clothes until they are completely dry -02689961 06 n 01 air-intake 0 002 @ 03253398 n 0000 #p 02962200 n 0000 | a duct that admits air to be mixed with fuel -02690081 06 n 03 airline 0 airline_business 0 airway 0 003 @ 03671473 n 0000 + 02690373 n 0101 %p 08293831 n 0000 | a commercial enterprise that provides scheduled flights for passengers -02690270 06 n 02 airline 1 air_hose 0 001 @ 03539875 n 0000 | a hose that carries air under pressure -02690373 06 n 01 airliner 0 007 @ 02691156 n 0000 + 02690081 n 0101 ~ 02686121 n 0000 %p 03412387 n 0000 ~ 03809312 n 0000 %p 03955489 n 0000 ~ 04583620 n 0000 | a commercial airplane that carries passengers -02690583 06 n 02 airlock 0 air_lock 0 001 @ 03003730 n 0000 | a chamber that provides access to space where air is under pressure -02690715 06 n 01 airmailer 0 002 @ 03710528 n 0000 + 01032127 v 0101 | a mailer for airmail -02690809 06 n 01 air_mattress 0 002 @ 03731164 n 0000 ~ 03668803 n 0000 | a mattress that can be stored flat and inflated for use -02690941 06 n 03 air_passage 0 air_duct 0 airway 1 006 @ 03253398 n 0000 ~ 04071712 n 0000 ~ 04250850 n 0000 ~ 04513556 n 0000 %p 04526241 n 0000 ~ 04526800 n 0000 | a duct that provides ventilation (as in mines) -02691156 06 n 03 airplane 0 aeroplane 0 plane 1 040 @ 03510583 n 0000 -c 00275201 r 0000 -c 00296263 n 0000 %p 02670683 n 0000 ~ 02690373 n 0000 ~ 02704645 n 0000 ~ 02842573 n 0000 ~ 02867715 n 0000 -c 03172211 n 0000 ~ 03174079 n 0000 %p 03295928 n 0000 ~ 03335030 n 0000 %p 03408054 n 0000 ~ 03490784 n 0000 %p 03530910 n 0000 -c 03566555 n 0000 ~ 03595860 n 0000 %p 03638883 n 0000 ~ 03783873 n 0000 ~ 03798610 n 0000 %p 03813369 n 0000 %p 03973945 n 0000 ~ 04012084 n 0000 %p 04045255 n 0000 ~ 04062644 n 0000 -c 04103918 n 0000 ~ 04160586 n 0000 ~ 04230487 n 0000 ~ 04389999 n 0000 %p 04590553 n 0000 %p 04592741 n 0000 -c 06503884 n 0000 -c 08647616 n 0000 -c 10175725 n 0000 -c 10403876 n 0000 -c 13469674 n 0000 -c 13507210 n 0000 -c 14659211 n 0000 -c 01562627 v 0000 -c 02034147 v 0000 | an aircraft that has a fixed wing and is powered by propellers or jets; "the flight was delayed due to trouble with the airplane" -02692086 06 n 03 airplane_propeller 0 airscrew 0 prop 1 002 @ 04011827 n 0000 #p 04012084 n 0000 | a propeller that rotates to push against air -02692232 06 n 04 airport 0 airdrome 0 aerodrome 0 drome 0 006 @ 02687992 n 0000 %p 02687821 n 0000 %p 02693246 n 0000 %p 03098959 n 0000 ~ 03512830 n 0000 ~i 09124399 n 0000 | an airfield equipped with control tower and hangars as well as accommodations for passengers and cargo -02692513 06 n 02 air_pump 0 vacuum_pump 0 004 @ 04021798 n 0000 ~ 03087245 n 0000 ~ 03569494 n 0000 ~ 03583809 n 0000 | a pump that moves air in or out of something -02692680 06 n 01 air_search_radar 0 001 @ 03812382 n 0000 | a shipboard radar that searches for aircraft -02692787 06 n 02 air_shaft 0 air_well 0 001 @ 04182514 n 0000 | a shaft for ventilation -02692877 06 n 02 airship 0 dirigible 0 006 @ 03666917 n 0000 + 01475160 a 0202 ~ 02794972 n 0000 ~ 02850950 n 0000 %p 02960501 n 0000 ~i 04614372 n 0000 | a steerable self-propelled aircraft -02693070 06 n 04 airstrip 0 flight_strip 0 landing_strip 0 strip 2 003 @ 02687992 n 0000 ~ 03358046 n 0000 %p 04120842 n 0000 | an airfield without normal airport facilities -02693246 06 n 02 air_terminal 0 airport_terminal 0 003 @ 04412901 n 0000 #p 02692232 n 0000 %p 03427909 n 0000 | a terminal that serves air travelers or air freight -02693413 06 n 01 air-to-air_missile 0 001 @ 03773504 n 0000 | a missile designed to be launched from one airplane at another -02693540 06 n 02 air-to-ground_missile 0 air-to-surface_missile 0 001 @ 03773504 n 0000 | a missile designed to be launched from an airplane at a target on the ground -02693709 06 n 01 air_transportation_system 0 002 @ 04473432 n 0000 ~ 03547861 n 0000 | a transportation system for moving passengers or goods by air -02693860 06 n 02 aisle 0 gangway 2 001 @ 03895585 n 0000 | passageway between seating areas as in an auditorium or passenger vehicle or between areas of shelves of goods as in stores -02694045 06 n 01 aisle 2 001 @ 02735688 n 0000 | part of a church divided laterally from the nave proper by rows of pillars or columns -02694182 06 n 01 aisle 3 001 @ 03895293 n 0000 | a long narrow passage (as in a cave or woods) -02694279 06 n 01 Aladdin's_lamp 0 002 @ 03636248 n 0000 ;c 07222230 n 0000 | (Arabian Nights) a magical lamp from which Aladdin summoned a genie -02694426 06 n 03 alarm 0 warning_device 0 alarm_system 0 006 @ 03183080 n 0000 ~ 02761834 n 0000 ~ 02921756 n 0000 ~ 03343737 n 0000 ~ 03536761 n 0000 ~ 04224395 n 0000 | a device that signals the occurrence of some undesirable event -02694662 06 n 02 alarm_clock 0 alarm 1 001 @ 03046257 n 0000 | a clock that wakes a sleeper at some preset time -02694776 06 n 02 Alaskan_pipeline 0 trans-Alaska_pipeline 0 002 @i 03946325 n 0000 #p 09055015 n 0000 | an oil pipeline that runs 800 miles from wells at Prudhoe Bay to the port of Valdez -02694966 06 n 01 alb 0 001 @ 04532106 n 0000 | a white linen liturgical vestment with sleeves; worn by priests -02695079 06 n 01 album 0 006 @ 02870092 n 0000 ~ 02759615 n 0000 ~ 03923801 n 0000 ~ 03926061 n 0000 ~ 04150860 n 0000 ~ 04300281 n 0000 | a book of blank pages with pockets or envelopes; for organizing photographs or stamp collections etc -02695321 06 n 03 albuterol 0 Ventolin 0 Proventil 0 003 @ 02905612 n 0000 ;u 06851742 n 0301 ;u 06851742 n 0201 | a bronchodilator (trade names Ventolin or Proventil) used for asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects are tachycardia and shakiness -02695627 06 n 01 alcazar 0 002 @ 03877845 n 0000 @ 03386011 n 0000 | any of various Spanish fortresses or palaces built by the Moors -02695762 06 n 02 alcohol_thermometer 0 alcohol-in-glass_thermometer 0 001 @ 04421872 n 0000 | thermometer consisting of a glass capillary tube marked with degrees Celsius or Fahrenheit and containing alcohol which rises or falls as it expands or contracts with changes in temperature -02696048 06 n 02 alcove 0 bay 0 002 @ 04061969 n 0000 ~ 02968333 n 0000 | a small recess opening off a larger room -02696165 06 n 01 alehouse 0 001 @ 04018399 n 0000 | a tavern where ale is sold -02696246 06 n 01 alembic 0 001 @ 04083649 n 0000 | an obsolete kind of container used for distillation; two retorts connected by a tube -02696384 06 n 02 alendronate 0 Fosamax 0 002 @ 03740161 n 0000 ;u 06851742 n 0201 | a tablet (trade name Fosamax) prescribed to prevent or treat osteoporosis in women after menopause -02696569 06 n 01 algometer 0 001 @ 03733925 n 0000 | device for measuring pain caused by pressure -02696669 06 n 01 Alhambra 0 003 @i 03877845 n 0000 @i 03386011 n 0000 #p 09025863 n 0000 | a fortified Moorish palace built near Granada by Muslim kings in the Middle Ages -02696843 06 n 02 alidade 0 alidad 0 001 @ 04365484 n 0000 | surveying instrument used with a plane table for drawing lines of sight on a distant object and for measuring angles -02697022 06 n 02 alidade 1 alidad 1 002 @ 04365484 n 0000 #p 04419073 n 0000 | surveying instrument consisting of the upper movable part of a theodolite including the telescope and its attachments -02697221 06 n 01 A-line 0 001 @ 04596852 n 0000 | women's clothing that has a fitted top and a flared skirt that is widest at the hemline; "it is called the A-line because the effect resembles the capital letter A" -02697438 06 n 01 alkylating_agent 0 002 @ 02722458 n 0000 ~ 03021531 n 0000 | an antineoplastic drug used to treat some forms of cancer -02697576 06 n 01 Allen_screw 0 001 @ 04153751 n 0000 | a screw with a hexagonal hole in the head -02697675 06 n 01 Allen_wrench 0 001 @ 04606574 n 0000 | a wrench for Allen screws -02697759 06 n 03 alley 0 alleyway 0 back_street 0 001 @ 04334599 n 0000 | a narrow street with walls on both sides -02697876 06 n 01 alligator_wrench 0 001 @ 04606574 n 0000 | a wrench with a v-shaped jaw and serrations on one side (resembles the open jaws of an alligator) -02698036 06 n 02 allopurinol 0 Zyloprim 0 002 @ 03740161 n 0000 ;u 06851742 n 0201 | a drug (trade name Zyloprim) used to treat gout and other conditions in which there is an excessive buildup of uric acid -02698244 06 n 02 alms_dish 0 alms_tray 0 001 @ 04476259 n 0000 | a tray for collecting the offering from a congregation -02698366 06 n 02 aloes 0 bitter_aloes 0 001 @ 04025748 n 0000 | a purgative made from the leaves of aloe -02698473 06 n 01 alpaca 0 001 @ 03309808 n 0000 | a thin glossy fabric made of the wool of the Lama pacos, or made of a rayon or cotton imitation of that wool -02698634 06 n 01 alpenstock 0 002 @ 04296261 n 0000 %p 13902482 n 0000 | a stout staff with a metal point; used by mountain climbers -02698769 06 n 04 alpha_blocker 0 alpha-blocker 0 alpha-adrenergic_blocker 0 alpha-adrenergic_blocking_agent 0 003 @ 02854156 n 0000 ~ 03998525 n 0000 ~ 04412550 n 0000 | any of various drugs that block alpha-adrenergic receptors; used in treating benign prostatic hyperplasia; relaxes the muscles of the prostate and bladder -02699096 06 n 01 alpha-interferon 0 001 @ 03579137 n 0000 | a form of interferon that is produced endogenously and commercially for its pharmacological effects (including regulation of the immune system and antiviral and antineoplastic effects) -02699343 06 n 02 alprazolam 0 Xanax 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | an antianxiety agent (trade name Xanax) of the benzodiazepine class -02699494 06 n 01 altar 0 002 @ 04341686 n 0000 ~ 03517899 n 0000 | a raised structure on which gifts or sacrifices to a god are made -02699629 06 n 03 altar 1 communion_table 0 Lord's_table 0 001 @ 04379243 n 0000 | the table in Christian churches where communion is given -02699770 06 n 02 altarpiece 0 reredos 0 001 @ 04152387 n 0000 | a painted or carved screen placed above and behind an altar or communion table -02699915 06 n 01 altazimuth 0 001 @ 03733925 n 0000 | an instrument that measures the altitude and azimuth of celestial bodies; used in navigation -02700064 06 n 01 alternator 0 003 @ 03433877 n 0000 #p 03270165 n 0000 ;c 02958343 n 0000 | an old term for an electric generator that produces alternating current (especially in automobiles) -02700258 06 n 01 altimeter 0 003 @ 03733925 n 0000 %p 02710600 n 0000 ~ 03555862 n 0000 | an instrument that measures the height above ground; used in navigation -02700422 06 n 03 alto_relievo 0 alto_rilievo 0 high_relief 0 002 @ 04073669 n 0000 ! 02803129 n 0302 | a sculptural relief in which forms extend out from the background to at least half their depth -02700622 06 n 01 alum 0 001 @ 02750835 n 0000 | a double sulphate of aluminum and potassium that is used as an astringent (among other things) -02700767 06 n 03 aluminum_foil 0 aluminium_foil 0 tin_foil 1 002 @ 03375694 n 0000 %s 14627820 n 0000 | foil made of aluminum -02700895 06 n 01 Amati 0 001 @ 04536866 n 0000 | a violin made by Nicolo Amati or a member of his family -02701002 06 n 01 ambulance 0 002 @ 02958343 n 0000 ~ 03404012 n 0000 | a vehicle that takes people to and from hospitals -02701125 06 n 01 ambulatory 0 001 @ 04544979 n 0000 | a covered walkway (as in a cloister); "it has an ambulatory and seven chapels" -02701260 06 n 01 amen_corner 0 002 @ 03109881 n 0000 #p 03028079 n 0000 | area reserved for persons leading the responsive `amens' -02701393 06 n 01 Americana 0 003 @ 00021939 n 0000 ;c 03405725 n 0000 ;c 00933420 n 0000 | any artifact (such as books or furniture or art) that is distinctive of America -02701566 06 n 04 American_flag 0 Stars_and_Stripes 0 Star-Spangled_Banner 0 Old_Glory 0 001 @ 03354903 n 0000 | the national flag of the United States of America -02701730 06 n 01 American_organ 0 001 @ 03393324 n 0000 | a free-reed instrument in which air is drawn in through reeds by suction bellows -02701871 06 n 03 American_Stock_Exchange 0 AMEX 0 Curb 3 001 @i 04323026 n 0000 | a stock exchange in New York -02701984 06 n 01 aminophylline 0 001 @ 02905612 n 0000 | a theophylline derivative that is used as a bronchodilator in the treatment of bronchial asthma, emphysema, and bronchitis -02702166 06 n 02 aminopyrine 0 amidopyrine 0 001 @ 02707683 n 0000 | a white crystalline substance used as an analgesic and antipyretic -02702304 06 n 02 amiodarone 0 Cordarone 0 002 @ 02715941 n 0000 ;u 06851742 n 0201 | an antiarrhythmic drug (trade name Cordarone) that has potentially fatal side effects and is used to control serious heart rhythm problems only when safer agents have been ineffective -02702575 06 n 03 amitriptyline 0 amitriptyline_hydrochloride 0 Elavil 0 002 @ 04482543 n 0000 ;u 06851742 n 0301 | a tricyclic antidepressant drug (trade name Elavil) with serious side effects; interacts with many other medications -02702809 06 n 02 amlodipine_besylate 0 Norvasc 0 001 @ 04522904 n 0000 | a vasodilator (trade name Norvasc) taken in tablet form; prescribed for hypertension and angina pectoris -02702989 06 n 01 ammeter 0 002 @ 03753077 n 0000 ~ 03766218 n 0000 | a meter that measures the flow of electrical current in amperes -02703124 06 n 01 ammonia_clock 0 001 @ 02753394 n 0000 | an atomic clock based on vibrational frequency of the nitrogen atom in the ammonia molecule -02703275 06 n 02 ammunition 0 ammo 0 008 @ 04566257 n 0000 ~ 02828115 n 0000 ~ 02971691 n 0000 ~ 02976641 n 0000 ~ 03994297 n 0000 ~ 04113641 n 0000 ~ 04190464 n 0000 ~ 04462707 n 0000 | projectiles to be fired from a gun -02703499 06 n 01 amobarbital 0 003 @ 02792049 n 0000 @ 04492856 n 0000 ~ 02703692 n 0000 | a barbiturate with sedative and hypnotic effects; used to relieve insomnia and as an anticonvulsant -02703692 06 n 05 amobarbital_sodium 0 blue 0 blue_angel 0 blue_devil 0 Amytal 0 001 @ 02703499 n 0000 | the sodium salt of amobarbital that is used as a barbiturate; used as a sedative and a hypnotic -02703894 06 n 06 amoxicillin 0 Amoxil 0 Larotid 0 Polymox 0 Trimox 0 Augmentin 0 001 @ 03910033 n 0000 | an antibiotic; a semisynthetic oral penicillin (trade names Amoxil and Larotid and Polymox and Trimox and Augmentin) used to treat bacterial infections -02704153 06 n 04 amphetamine 0 pep_pill 0 upper 1 speed 0 006 @ 04320126 n 0000 @ 03248958 n 0000 ~ 02704462 n 0000 ~ 02830596 n 0000 ~ 03186005 n 0000 ~ 03754295 n 0000 | a central nervous system stimulant that increases energy and decreases appetite; used to treat narcolepsy and some forms of depression -02704462 06 n 02 amphetamine_sulfate 0 amphetamine_sulphate 0 001 @ 02704153 n 0000 | a sulfate derivative of amphetamine that is used as a stimulant for the central nervous system -02704645 06 n 02 amphibian 0 amphibious_aircraft 0 002 @ 02691156 n 0000 %p 03981464 n 0000 | an airplane designed to take off and land on water -02704792 06 n 02 amphibian 1 amphibious_vehicle 0 002 @ 03791235 n 0000 ~ 04368695 n 0000 | a flat-bottomed motor vehicle that can travel on land or water -02704949 06 n 03 amphitheater 0 amphitheatre 0 coliseum 0 005 @ 04295881 n 0000 + 02618468 a 0202 + 02618468 a 0101 ~i 03072828 n 0000 %p 04541662 n 0000 | an oval large stadium with tiers of seats; an arena in which contests and spectacles are held -02705201 06 n 02 amphitheater 1 amphitheatre 1 005 @ 03411544 n 0000 ;c 07006119 n 0000 + 02618468 a 0202 + 02618468 a 0101 %p 04434285 n 0000 | a sloping gallery with seats for spectators (as in an operating room or theater) -02705429 06 n 01 amphora 0 001 @ 03593526 n 0000 | an ancient jar with two handles and a narrow neck; used to hold oil or wine -02705558 06 n 01 amphotericin 0 001 @ 02716866 n 0000 | an antibiotic and antifungal agent -02705651 06 n 04 ampicillin 0 Principen 0 Polycillin 0 SK-Ampicillin 0 007 @ 03910033 n 0000 ;u 06851742 n 0401 ;u 06845599 n 0401 ;u 06851742 n 0301 ;u 06845599 n 0301 ;u 06851742 n 0201 ;u 06845599 n 0201 | semisynthetic penicillin (trade names Principen and Polycillin and SK-Ampicillin) -02705944 06 n 01 amplifier 0 009 @ 03278248 n 0000 #p 04043733 n 0000 #p 04315948 n 0000 #p 04018155 n 0000 + 00434077 v 0102 + 00263904 v 0101 ~ 02756854 n 0000 ~ 02872529 n 0000 ~ 03724176 n 0000 | electronic equipment that increases strength of signals passing through it -02706221 06 n 01 ampulla 0 003 @ 03359566 n 0000 + 02618880 a 0102 + 02618880 a 0101 | a flask that has two handles; used by Romans for wines or oils -02706373 06 n 02 amrinone 0 Inocor 0 003 @ 03740161 n 0000 ;u 06851742 n 0201 ;u 06845599 n 0201 | a drug (trade name Inocor) used intravenously in heart failure; increases strength of contraction of myocardium -02706586 06 n 02 amulet 0 talisman 0 003 @ 03009633 n 0000 + 01577327 a 0201 ~ 03459498 n 0000 | a trinket or piece of jewelry usually hung about the neck and thought to be a magical protection against evil or disease -02706806 06 n 01 amusement_arcade 0 001 @ 02733378 n 0000 | an arcade featuring coin-operated game machines -02706916 06 n 01 amyl_nitrate 0 001 @ 04522904 n 0000 | a vasodilator that is sometimes used to treat angina pectoris -02707036 06 n 01 anachronism 0 004 @ 00021939 n 0000 + 02379925 a 0103 + 02379925 a 0101 + 02379925 a 0102 | an artifact that belongs to another time -02707188 06 n 01 anaglyph 1 005 @ 03442288 n 0000 + 02619839 a 0103 + 02619839 a 0104 + 02619839 a 0102 ~ 02942577 n 0000 | anything carved in low relief -02707344 06 n 01 anaglyph 2 004 @ 04316275 n 0000 + 02619839 a 0103 + 02619839 a 0104 + 02619839 a 0102 | moving or still pictures in contrasting colors that appear three-dimensional when superimposed -02707547 06 n 01 analeptic 0 002 @ 04320126 n 0000 + 02309800 a 0101 | a medication used as a stimulant to the central nervous system -02707683 06 n 04 analgesic 0 anodyne 0 painkiller 0 pain_pill 0 017 @ 03740161 n 0000 + 01341490 a 0203 + 01341490 a 0101 ~ 02674482 n 0000 ~ 02674912 n 0000 ~ 02675354 n 0000 ~ 02702166 n 0000 ~ 02748618 n 0000 ~ 03062461 n 0000 ~ 03066965 n 0000 ~ 03328650 n 0000 ~ 03553708 n 0000 ~ 03786417 n 0000 ~ 03912664 n 0000 ~ 03921337 n 0000 ~ 04012852 n 0000 ~ 04256033 n 0000 | a medicine used to relieve pain -02708093 06 n 01 analog_clock 0 001 @ 03046257 n 0000 | a clock that displays the time of day by the position of hands on a dial -02708224 06 n 02 analog_computer 0 analogue_computer 0 003 @ 03082979 n 0000 ~ 03194170 n 0000 ~ 04238763 n 0000 | a computer that represents information by variable quantities (e.g., positions or voltages) -02708433 06 n 01 analog_watch 0 001 @ 04555897 n 0000 | a watch that represents time by the position of hands on a dial -02708555 06 n 02 analytical_balance 0 chemical_balance 0 001 @ 02816494 n 0000 | a beam balance of great precision used in quantitative chemical analysis -02708711 06 n 02 analyzer 0 analyser 0 005 @ 03574816 n 0000 + 00643473 v 0202 + 00644583 v 0202 + 00736216 v 0101 + 00643473 v 0101 | an instrument that performs analyses -02708885 06 n 02 anamorphosis 0 anamorphism 0 001 @ 03104594 n 0000 | a distorted projection or perspective; especially an image distorted in such a way that it becomes visible only when viewed in a special manner -02709101 06 n 01 anastigmat 0 001 @ 03656484 n 0000 | compound lens or lens system designed to be free of astigmatism and able to form approximately point images -02709265 06 n 01 anastigmatic_lens 0 001 @ 03656484 n 0000 | a lens designed to correct astigmatism -02709367 06 n 02 anchor 0 ground_tackle 0 009 @ 03532672 n 0000 #p 04530566 n 0000 + 01304716 v 0101 %p 03369640 n 0000 ~ 03454110 n 0000 ~ 03784666 n 0000 ~ 03800772 n 0000 %p 04184095 n 0000 ~ 04188985 n 0000 | a mechanical device that prevents a vessel from moving -02709637 06 n 02 anchor_chain 0 anchor_rope 0 001 @ 02999410 n 0000 | the chain or rope that attaches an anchor to a vessel -02709763 06 n 03 anchor_light 0 riding_light 0 riding_lamp 0 001 @ 03665366 n 0000 | a light in the rigging of a ship that is riding at anchor -02709908 06 n 02 AND_circuit 0 AND_gate 0 001 @ 03427656 n 0000 | a circuit in a computer that fires only when all of its inputs fire -02710044 06 n 04 andiron 0 firedog 0 dog 1 dog-iron 0 001 @ 04359589 n 0000 | metal supports for logs in a fireplace; "the andirons were too hot to touch" -02710201 06 n 03 android 0 humanoid 0 mechanical_man 0 001 @ 02761392 n 0000 | an automaton that resembles a human being -02710324 06 n 01 anechoic_chamber 0 001 @ 04105893 n 0000 | a chamber having very little reverberation -02710429 06 n 03 anemometer 0 wind_gauge 0 wind_gage 0 003 @ 03429288 n 0000 + 02622493 a 0101 + 02622493 a 0102 | a gauge for recording the speed and direction of wind -02710600 06 n 02 aneroid_barometer 0 aneroid 0 003 @ 02794156 n 0000 #p 02700258 n 0000 + 03042661 a 0201 | a barometer that measures pressure without using fluids -02710766 06 n 04 anesthetic 0 anaesthetic 0 anesthetic_agent 0 anaesthetic_agent 0 011 @ 03247620 n 0000 + 02103052 a 0202 + 00021065 v 0202 + 00021065 v 0204 + 02103052 a 0101 + 00021065 v 0101 + 00021065 v 0103 ~ 03433434 n 0000 ~ 03582305 n 0000 ~ 03681148 n 0000 ~ 04277204 n 0000 | a drug that causes temporary loss of bodily sensations -02711110 06 n 01 anesthyl 0 001 @ 03681148 n 0000 | a mixture of methyl and ethyl chloride; sprayed on as a local anesthetic -02711237 06 n 01 angiocardiogram 0 001 @ 04100620 n 0000 | a series of X rays representing the action of the heart and its blood vessels after the injection of a radiopaque substance -02711422 06 n 01 angiogenesis_inhibitor 0 001 @ 03740161 n 0000 | a drug that is designed to prevent the growth of blood vessels that nourish tumors -02711573 06 n 01 angiogram 0 002 @ 04100620 n 0000 ~ 03698977 n 0000 | an X-ray representation of blood vessels made after the injection of a radiopaque substance; "angiograms are produced by angiography" -02711780 06 n 01 angioscope 0 001 @ 03760671 n 0000 | a modified microscope used to study capillary vessels -02711890 06 n 03 angiotensin 0 angiotonin 0 Hypertensin 0 004 @ 04522421 n 0000 ;u 06851742 n 0301 ~ 02712134 n 0000 ~ 02712280 n 0000 | any of several vasoconstrictor substances (trade name Hypertensin) that cause narrowing of blood vessels -02712134 06 n 01 angiotensin_I 0 001 @ 02711890 n 0000 | a physiologically inactive form of angiotensin that is the precursor to angiotensin II -02712280 06 n 01 angiotensin_II 0 001 @ 02711890 n 0000 | a potent vasopressor agent formed from angiotensin I -02712393 06 n 01 angiotensin_II_inhibitor 0 002 @ 14724436 n 0000 ~ 04519019 n 0000 | an agent that retards or restrains the action of angiotensin II -02712545 06 n 02 angle_bracket 0 angle_iron 0 001 @ 02888569 n 0000 | an L-shaped metal bracket -02712643 06 n 01 angledozer 0 001 @ 02916179 n 0000 | a bulldozer with an angled moldboard to push earth to one side -02712762 06 n 01 Angostura_Bridge 0 002 @i 04366367 n 0000 #p 09162414 n 0000 | a suspension bridge across the Orinoco River at Ciudad Bolivar -02712907 06 n 01 animalization 0 001 @ 03173524 n 0000 | a depiction in the form of an animal -02713003 06 n 01 ankle_brace 0 001 @ 02887209 n 0000 | a brace worn to strengthen the ankle -02713097 06 n 02 anklet 0 ankle_bracelet 0 002 @ 02887970 n 0000 + 05578442 n 0101 | an ornament worn around the ankle -02713218 06 n 04 anklet 1 anklets 0 bobbysock 0 bobbysocks 0 002 @ 04254777 n 0000 + 05578442 n 0101 | a sock that reaches just above the ankle -02713364 06 n 01 anklet 2 002 @ 04199027 n 0000 + 05578442 n 0101 | a shoe for a child or woman that has a strap around the ankle -02713496 06 n 01 ankus 0 001 @ 04007664 n 0000 | an elephant goad with a sharp spike and a hook -02713594 06 n 04 annex 0 annexe 0 extension 0 wing 1 004 @ 02679415 n 0000 #p 02913152 n 0000 + 01329141 v 0101 ~ 03281821 n 0000 | an addition that extends a main building -02713769 06 n 01 annulet 0 001 @ 04092609 n 0000 | a small ring -02713835 06 n 05 annulet 1 bandelet 0 bandelette 0 bandlet 0 square_and_rabbet 0 001 @ 03780392 n 0000 | molding in the form of a ring; at top of a column -02713992 06 n 02 annulet 2 roundel 1 002 @ 03008565 n 0000 ;c 03515338 n 0000 | (heraldry) a charge in the shape of a circle; "a hollow roundel" -02714139 06 n 01 annunciator 0 002 @ 03568117 n 0000 + 00974173 v 0102 | an indicator that announces which electrical circuit has been active (as on a telephone switchboard) -02714315 06 n 01 anode 0 006 @ 03274796 n 0000 #p 03275864 n 0000 #p 04494204 n 0000 + 02626829 a 0102 ! 02984699 n 0101 ~ 03960950 n 0000 | a positively charged electrode by which electrons leave an electrical device -02714535 06 n 01 anode 1 005 @ 04413151 n 0000 #p 04328329 n 0000 #p 04540761 n 0000 + 02626829 a 0102 ! 02984937 n 0101 | the negatively charged terminal of a voltaic cell or storage battery that supplies current -02714751 06 n 01 answering_machine 0 001 @ 03277771 n 0000 | an electronic device that answers the telephone and records messages -02714883 06 n 01 antagonist 0 006 @ 03247620 n 0000 + 00623565 a 0101 + 01074252 n 0101 ! 04376259 n 0101 ~ 03298565 n 0000 ~ 03808977 n 0000 | a drug that neutralizes or counteracts the effects of another drug -02715096 06 n 01 antefix 0 001 @ 02734423 n 0000 | carved ornament at the eaves of a tile roof concealing the joints between tiles -02715229 06 n 03 antenna 0 aerial 0 transmitting_aerial 0 008 @ 03269401 n 0000 #p 04060647 n 0000 #p 04472726 n 0000 + 02628337 a 0102 + 02628337 a 0101 ~ 03204134 n 0000 ~ 03204955 n 0000 ~ 03846772 n 0000 | an electrical device that sends or receives radio or television signals -02715513 06 n 07 anteroom 0 antechamber 0 entrance_hall 0 hall 5 foyer 0 lobby 0 vestibule 0 003 @ 04105893 n 0000 #p 02913152 n 0000 ~ 03809686 n 0000 | a large entrance or reception room or area -02715712 06 n 07 antiaircraft 0 antiaircraft_gun 0 flak 0 flack 0 pom-pom 0 ack-ack 0 ack-ack_gun 0 004 @ 03467984 n 0000 + 01630439 a 0101 ~ 02863536 n 0000 %p 03998867 n 0000 | artillery designed to shoot upward at airplanes -02715941 06 n 03 antiarrhythmic 0 antiarrhythmic_drug 0 antiarrhythmic_medication 0 007 @ 03740161 n 0000 ~ 02702304 n 0000 ~ 03285348 n 0000 ~ 03362393 n 0000 ~ 03757925 n 0000 ~ 04034884 n 0000 ~ 04443918 n 0000 | a drug used to treat an abnormal heart rhythm -02716205 06 n 03 antibacterial 0 antibacterial_drug 0 bactericide 0 016 @ 03740161 n 0000 + 02116054 a 0301 ~ 02716866 n 0000 ~ 02765656 n 0000 ~ 03162171 n 0000 ~ 03192347 n 0000 ~ 03517271 n 0000 ~ 03587715 n 0000 ~ 03755140 n 0000 ~ 03806040 n 0000 ~ 03818629 n 0000 ~ 03826443 n 0000 ~ 04090064 n 0000 ~ 04352070 n 0000 ~ 04416530 n 0000 ~ 14770838 n 0000 | any drug that destroys bacteria or inhibits their growth -02716626 06 n 02 antiballistic_missile 0 ABM 0 001 @ 03466162 n 0000 | a defensive missile designed to shoot down incoming intercontinental ballistic missiles; "the Strategic Arms Limitation Talks placed limits on the deployment of ABMs" -02716866 06 n 02 antibiotic 0 antibiotic_drug 0 044 @ 02716205 n 0000 + 02629301 a 0101 ~ 02677602 n 0000 ~ 02705558 n 0000 ~ 02722349 n 0000 ~ 02722997 n 0000 ~ 02765868 n 0000 ~ 02767240 n 0000 ~ 02961714 n 0000 ~ 02996570 n 0000 ~ 02996703 n 0000 ~ 02996840 n 0000 ~ 03021858 n 0000 ~ 03023415 n 0000 ~ 03032576 n 0000 ~ 03155788 n 0000 ~ 03198028 n 0000 ~ 03230149 n 0000 ~ 03230247 n 0000 ~ 03295357 n 0000 ~ 03435382 n 0000 ~ 03452055 n 0000 ~ 03608356 n 0000 ~ 03670622 n 0000 ~ 03774842 n 0000 ~ 03803488 n 0000 ~ 03818090 n 0000 ~ 03833409 n 0000 ~ 03837157 n 0000 ~ 03869389 n 0000 ~ 03910033 n 0000 ~ 03979717 n 0000 ~ 04002536 n 0000 ~ 04028881 n 0000 ~ 04029015 n 0000 ~ 04272541 n 0000 ~ 04336380 n 0000 ~ 04336533 n 0000 ~ 04348854 n 0000 ~ 04443588 n 0000 ~ 04505706 n 0000 ~ 04506125 n 0000 ~ 04520618 n 0000 ~ 04537235 n 0000 | a chemical substance derivable from a mold or bacterium that can kill microorganisms and cure bacterial infections; "when antibiotics were first discovered they were called wonder drugs" -02717901 06 n 02 anticholinergic 0 anticholinergic_drug 0 003 @ 03740161 n 0000 + 00061088 a 0101 ~ 03869222 n 0000 | a substance that opposes or blocks the action of acetylcholine -02718084 06 n 01 anticholinesterase 0 002 @ 03740161 n 0000 ~ 03818843 n 0000 | a medicine that inhibits cholinesterase by combining with it and so has a cholinergic effect -02718259 06 n 03 anticoagulant 0 anticoagulant_medication 0 decoagulant 0 004 @ 03740161 n 0000 ~ 03192653 n 0000 ~ 03514974 n 0000 ~ 04551205 n 0000 | medicine that prevents or retards the clotting of blood -02718469 06 n 04 anticonvulsant 0 anticonvulsant_drug 0 antiepileptic 0 antiepileptic_drug 0 010 @ 03740161 n 0000 ~ 03300578 n 0000 ~ 03409070 n 0000 ~ 03550533 n 0000 ~ 03747281 n 0000 ~ 03747508 n 0000 ~ 03754979 n 0000 ~ 03922412 n 0000 ~ 04002931 n 0000 ~ 04518854 n 0000 | a drug used to treat or prevent convulsions (as in epilepsy) -02718811 06 n 02 antidepressant 0 antidepressant_drug 0 008 @ 03740161 n 0000 ~ 03783017 n 0000 ~ 03817062 n 0000 ~ 03829085 n 0000 ~ 04060316 n 0000 ~ 04169152 n 0000 ~ 04482543 n 0000 ~ 14946251 n 0000 | any of a class of drugs used to treat depression; often have undesirable side effects -02719105 06 n 02 antidiabetic 0 antidiabetic_drug 0 005 @ 03740161 n 0000 ~ 03440024 n 0000 ~ 03441930 n 0000 ~ 03753657 n 0000 ~ 04353189 n 0000 | a drug used to treat diabetes mellitus -02719294 06 n 02 antidiarrheal 0 antidiarrheal_drug 0 003 @ 03740161 n 0000 ~ 03608661 n 0000 ~ 03687604 n 0000 | a drug used to control or stop diarrhea -02719450 06 n 02 antidiuretic 0 antidiuretic_drug 0 002 @ 03740161 n 0000 ~ 03699138 n 0000 | a drug that limits the formation of urine -02719588 06 n 02 antidote 0 counterpoison 0 003 @ 04074482 n 0000 ~ 02754756 n 0000 ~ 15018169 n 0000 | a remedy that stops or controls the effects of a poison -02719750 06 n 02 antiemetic 0 antiemetic_drug 0 005 @ 03740161 n 0000 ~ 03198951 n 0000 ~ 03283717 n 0000 ~ 04007239 n 0000 ~ 04010348 n 0000 | a drug that prevents or alleviates nausea and vomiting -02719951 06 n 01 antiflatulent 0 001 @ 14778436 n 0000 | any agent that reduces intestinal gas -02720048 06 n 01 antifouling_paint 0 001 @ 03875218 n 0000 | a paint used to protect against the accumulation of barnacles etc. on underwater surfaces -02720201 06 n 05 antifungal 0 antifungal_agent 0 fungicide 0 antimycotic 0 antimycotic_agent 0 012 @ 14778436 n 0000 + 02832818 a 0301 + 02832818 a 0102 ~ 02874876 n 0000 ~ 03460674 n 0000 ~ 03583109 n 0000 ~ 03588668 n 0000 ~ 03758720 n 0000 ~ 03837157 n 0000 ~ 04412727 n 0000 ~ 04423174 n 0000 ~ 14770838 n 0000 | any agent that destroys or prevents the growth of fungi -02720576 06 n 02 anti-G_suit 0 G_suit 0 001 @ 04001845 n 0000 | worn by fliers and astronauts to counteract the forces of gravity and acceleration -02720725 06 n 01 antihistamine 0 014 @ 03740161 n 0000 ~ 02677232 n 0000 ~ 02905422 n 0000 ~ 03022978 n 0000 ~ 03157582 n 0000 ~ 03198951 n 0000 ~ 03199142 n 0000 ~ 03203225 n 0000 ~ 03739136 n 0000 ~ 03754676 n 0000 ~ 03921915 n 0000 ~ 03923229 n 0000 ~ 04010348 n 0000 ~ 04029541 n 0000 | a medicine used to treat allergies and hypersensitive reactions and colds; works by counteracting the effects of histamine on a receptor site -02721160 06 n 02 antihypertensive 0 antihypertensive_drug 0 015 @ 03740161 n 0000 ~ 02673637 n 0000 ~ 03022788 n 0000 ~ 03048412 n 0000 ~ 03229656 n 0000 ~ 03464266 n 0000 ~ 03550671 n 0000 ~ 03630544 n 0000 ~ 03732828 n 0000 ~ 03755991 n 0000 ~ 03998525 n 0000 ~ 04078236 n 0000 ~ 04410190 n 0000 ~ 04412550 n 0000 ~ 14754192 n 0000 | a drug that reduces high blood pressure -02721538 06 n 02 anti-inflammatory 0 anti-inflammatory_drug 0 009 @ 03740161 n 0000 ~ 03124700 n 0000 ~ 03553908 n 0000 ~ 03828465 n 0000 ~ 03869044 n 0000 ~ 03922722 n 0000 ~ 14753188 n 0000 ~ 14753414 n 0000 ~ 14753808 n 0000 | a medicine intended to reduce inflammation -02721813 06 n 01 antimacassar 0 001 @ 03050026 n 0000 | a piece of ornamented cloth that protects the back of a chair from hair oils -02721948 06 n 02 antimalarial 0 antimalarial_drug 0 006 @ 02723292 n 0000 ~ 03022634 n 0000 ~ 03742728 n 0000 ~ 04002452 n 0000 ~ 04034641 n 0000 ~ 04035086 n 0000 | a medicinal drug used to prevent or treat malaria -02722166 06 n 01 antimetabolite 0 004 @ 02722458 n 0000 ~ 03370821 n 0000 ~ 03748456 n 0000 ~ 03755712 n 0000 | an antineoplastic drug that inhibits the utilization of a metabolite -02722349 06 n 01 antimycin 0 001 @ 02716866 n 0000 | a crystalline antibiotic active against various fungi -02722458 06 n 03 antineoplastic 0 antineoplastic_drug 0 cancer_drug 0 013 @ 03157987 n 0000 + 02629410 a 0102 ~ 02697438 n 0000 ~ 02722166 n 0000 ~ 02722997 n 0000 ~ 02747915 n 0000 ~ 03368750 n 0000 ~ 03687688 n 0000 ~ 03743577 n 0000 ~ 03917455 n 0000 ~ 04007126 n 0000 ~ 04424826 n 0000 ~ 04425544 n 0000 | any of several drugs that control or kill neoplastic cells; used in chemotherapy to kill cancer cells; all have unpleasant side effects that may include nausea and vomiting and hair loss and suppression of bone marrow function -02722997 06 n 01 antineoplastic_antibiotic 0 003 @ 02716866 n 0000 @ 02722458 n 0000 ~ 03774673 n 0000 | an antibiotic drug used as an antineoplastic in chemotherapy -02723165 06 n 01 antiperspirant 0 001 @ 04447443 n 0000 | an astringent substance applied to the skin to reduce perspiration -02723292 06 n 02 antiprotozoal 0 antiprotozoal_drug 0 003 @ 03740161 n 0000 ~ 02721948 n 0000 ~ 03757428 n 0000 | a medicinal drug used to fight diseases (like malaria) that are caused by protozoa -02723491 06 n 01 antipruritic 0 001 @ 03681148 n 0000 | a substance that relieves or prevents itching -02723595 06 n 02 antipyretic 0 febrifuge 0 002 @ 03740161 n 0000 + 01170136 a 0101 | any medicine that lowers body temperature to prevent or alleviate fever -02723754 06 n 01 antique 0 006 @ 02724026 n 0000 + 01638962 a 0102 + 01639446 a 0101 + 00253501 v 0102 + 02326795 v 0101 + 00253501 v 0101 | any piece of furniture or decorative object or the like produced in a former period and valuable because of its beauty or rarity -02724026 06 n 01 antiquity 0 006 @ 00021939 n 0000 + 01639446 a 0101 ~ 02723754 n 0000 ~ 04073547 n 0000 ~ 04104500 n 0000 ~ 04313628 n 0000 | an artifact surviving from the past -02724207 06 n 01 antiseptic 0 011 @ 03740161 n 0000 + 02115324 a 0101 ~ 03021696 n 0000 ~ 03022250 n 0000 ~ 03452055 n 0000 ~ 03583252 n 0000 ~ 03748002 n 0000 ~ 03762809 n 0000 ~ 03818090 n 0000 ~ 04424003 n 0000 ~ 04439305 n 0000 | a substance that destroys micro-organisms that carry disease without harming body tissues -02724533 06 n 03 antispasmodic 0 spasmolytic 0 antispasmodic_agent 0 002 @ 03740161 n 0000 ~ 02754756 n 0000 | a drug used to relieve or prevent spasms (especially of the smooth muscles) -02724722 06 n 01 anti-submarine_rocket 0 001 @ 04196080 n 0000 | a shipboard system to fire rockets at submarines -02724838 06 n 01 antisyphilitic 0 001 @ 03247620 n 0000 | a drug (or other chemical agent) that is effective against syphilis -02724966 06 n 01 anti-TNF_compound 0 004 @ 03247620 n 0000 ~ 03299006 n 0000 ~ 03569657 n 0000 ~ 03654086 n 0000 | a class of drugs that block the action of tumor necrosis factor (TNF); used in cases of rheumatoid arthritis because TNF instigates inflammation of the joints -02725242 06 n 01 antitussive 0 002 @ 03740161 n 0000 ~ 03062461 n 0000 | any medicine used to suppress or relieve coughing -02725367 06 n 03 antiviral 0 antiviral_agent 0 antiviral_drug 0 007 @ 03740161 n 0000 ~ 03190763 n 0000 ~ 03190897 n 0000 ~ 03579137 n 0000 ~ 04013993 n 0000 ~ 04085365 n 0000 ~ 04087524 n 0000 | any drug that destroys viruses -02725596 06 n 01 Antonine_Wall 0 002 @i 04051825 n 0000 #p 08890097 n 0000 | a fortification 37 miles long across the narrowest part of southern Scotland (between the Firth of Forth and the Firth of Clyde); built in 140 to mark the frontier of the Roman province of Britain -02725872 06 n 01 anvil 0 002 @ 02852523 n 0000 #p 03383646 n 0000 | a heavy block of iron or steel on which hot metals are shaped by hammering -02726017 06 n 01 ao_dai 0 001 @ 02756098 n 0000 | the traditional dress of Vietnamese women consisting of a tunic with long sleeves and panels front and back; the tunic is worn over trousers -02726210 06 n 01 apadana 0 001 @ 03457008 n 0000 | the great hall in ancient Persian palaces -02726305 06 n 02 apartment 0 flat 0 015 @ 03546340 n 0000 #p 02726681 n 0000 + 03361297 n 0201 ~ 02822064 n 0000 ~ 03067810 n 0000 ~ 03257065 n 0000 ~ 03265754 n 0000 ~ 03361297 n 0000 %p 03620353 n 0000 ~ 03713254 n 0000 ~ 03912821 n 0000 ~ 04047949 n 0000 ~ 04344734 n 0000 ~ 04351550 n 0000 ~ 04546595 n 0000 | a suite of rooms usually on one floor of an apartment house -02726681 06 n 02 apartment_building 0 apartment_house 0 004 @ 02913152 n 0000 %p 02726305 n 0000 ~ 04409384 n 0000 ~ 04546481 n 0000 | a building that is divided into apartments -02726861 06 n 01 APC 0 001 @ 03740161 n 0000 | a drug combination found in some over-the-counter headache remedies (aspirin and phenacetin and caffeine) -02727016 06 n 01 aperture 0 003 @ 03848729 n 0000 ~ 03794798 n 0000 ~ 03795419 n 0000 | an man-made opening; usually small -02727141 06 n 01 aperture 1 003 @ 04072193 n 0000 #p 02942699 n 0000 #p 04403638 n 0000 | a device that controls amount of light admitted -02727281 06 n 01 aphrodisiac 0 003 @ 04320126 n 0000 + 02137538 a 0101 + 02137538 a 0102 | a drug or other agent that stimulates sexual desire -02727426 06 n 02 apiary 0 bee_house 0 003 @ 04187547 n 0000 + 02632696 a 0101 %p 02822865 n 0000 | a shed containing a number of beehives -02727566 06 n 01 apishamore 0 001 @ 04124202 n 0000 | a saddle blanket made of buffalo hide -02727660 06 n 01 apomorphine 0 001 @ 03786417 n 0000 | a morphine derivative that is not as strong as morphine; used as an emetic and in small doses as a sedative -02727825 06 n 02 apparatus 0 setup 0 029 @ 03294048 n 0000 ~ 02682569 n 0000 ~ 02923129 n 0000 ~ 02974454 n 0000 ~ 02995998 n 0000 ~ 03013006 n 0000 ~ 03087643 n 0000 ~ 03257586 n 0000 ~ 03275566 n 0000 ~ 03434188 n 0000 ~ 03509608 n 0000 ~ 03512452 n 0000 ~ 03567066 n 0000 ~ 03574416 n 0000 ~ 03618797 n 0000 ~ 03667235 n 0000 ~ 03834040 n 0000 ~ 03851219 n 0000 ~ 03909160 n 0000 ~ 04026053 n 0000 ~ 04070003 n 0000 ~ 04171208 n 0000 ~ 04173511 n 0000 ~ 04255670 n 0000 ~ 04318982 n 0000 ~ 04348359 n 0000 ~ 04400499 n 0000 ~ 04441790 n 0000 ~ 04609651 n 0000 | equipment designed to serve a specific function -02728440 06 n 04 apparel 0 wearing_apparel 0 dress 2 clothes 0 006 @ 03051540 n 0000 + 00043683 v 0304 + 00047945 v 0301 + 00046534 v 0301 + 00047945 v 010a ~ 04603872 n 0000 | clothing in general; "she was refined in her choice of apparel"; "he always bought his clothes at the same store"; "fastidious about his dress" -02728763 06 n 01 appendage 0 007 @ 03892891 n 0000 + 01328705 v 0101 + 01328513 v 0101 ~ 02728968 n 0000 ~ 03485575 n 0000 ~ 03485997 n 0000 ~ 04385431 n 0000 | a part that is joined to something larger -02728968 06 n 01 appendicle 0 002 @ 02728763 n 0000 + 02635611 a 0101 | a small appendage -02729060 06 n 01 Appian_Way 0 002 @i 03519981 n 0000 #p 08801678 n 0000 | an ancient Roman road in Italy extending south from Rome to Brindisi; begun in 312 BC -02729222 06 n 01 applecart 0 001 @ 03484083 n 0000 | a handcart from which apples and other fruit are sold in the street -02729345 06 n 01 apple_of_discord 0 002 @ 04487996 n 0000 ;c 07978924 n 0000 | (classical mythology) a golden apple thrown into a banquet of the gods by Eris (goddess of discord--who had not been invited); the apple had `for the fairest' written on it and Hera and Athena and Aphrodite all claimed it; when Paris (prince of Troy) awarded it to Aphrodite it began a chain of events that led to the Trojan War -02729755 06 n 01 apple_orchard 0 001 @ 03463832 n 0000 | a grove of apple trees -02729837 06 n 01 appliance 0 003 @ 03257877 n 0000 ~ 03251766 n 0000 ~ 03528263 n 0000 | durable goods for home or office use -02729965 06 n 08 appliance 1 contraption 0 contrivance 0 convenience 0 gadget 0 gizmo 0 gismo 0 widget 0 007 @ 03183080 n 0000 + 10117017 n 0501 + 00604617 a 0401 ~ 03409920 n 0000 ~ 03437581 n 0000 ~ 03571439 n 0000 ~ 03777126 n 0000 | a device or control that is very useful for a particular job -02730265 06 n 02 applicator 0 applier 0 005 @ 03183080 n 0000 + 01363648 v 0202 ~ 03372822 n 0000 ~ 03876231 n 0000 ~ 04287747 n 0000 | a device for applying a substance -02730437 06 n 01 applique 0 002 @ 04179385 n 0000 + 01670777 v 0101 | a decorative design made of one material sewn over another -02730568 06 n 02 appointment 0 fitting 1 003 @ 03405265 n 0000 ;u 06295235 n 0000 + 02339413 v 0202 | (usually plural) furnishings and equipment (especially for a ship or hotel) -02730748 06 n 02 approach_trench 0 communication_trench 0 001 @ 04478657 n 0000 | a trench that provides protected passage between the rear and front lines of a defensive position -02730930 06 n 01 apron 0 003 @ 04015204 n 0000 %p 02731251 n 0000 %p 02834397 n 0000 | a garment of cloth or leather or plastic that is tied about the waist and worn to protect your clothing -02731123 06 n 01 apron 1 002 @ 03900509 n 0000 #p 02687992 n 0000 | a paved surface where aircraft stand while not being used -02731251 06 n 01 apron_string 0 002 @ 03106110 n 0000 #p 02730930 n 0000 | (usually used in the plural) a cord used to tie an apron at the waist -02731398 06 n 02 apse 0 apsis 0 004 @ 04061969 n 0000 #p 03028079 n 0000 + 02636261 a 0101 ~ 04481255 n 0000 | a domed or vaulted recess or projection on a building especially the east end of a church; usually contains the altar -02731629 06 n 03 aqualung 0 Aqua-Lung 0 scuba 0 004 @ 02895606 n 0000 ;u 06851742 n 0201 %p 03156279 n 0000 %p 03868863 n 0000 | a device (trade name Aqua-Lung) that lets divers breathe under water; scuba is an acronym for self-contained underwater breathing apparatus -02731900 06 n 01 aquaplane 0 002 @ 02856463 n 0000 + 01942854 v 0101 | a board that is pulled by a speedboat as a person stands on it and skims over the top of the water -02732072 06 n 03 aquarium 0 fish_tank 0 marine_museum 0 004 @ 04539203 n 0000 @ 04388743 n 0000 ~ 03350204 n 0000 ~i 03721691 n 0000 | a tank or pool or bowl filled with water for keeping live fish and underwater animals -02732295 06 n 01 aquatint 0 002 @ 03299519 n 0000 + 01750668 v 0101 | an etching made by a process that makes it resemble a water color -02732433 06 n 01 aqueduct 0 002 @ 03089014 n 0000 %p 02733524 n 0000 | a conduit that resembles a bridge but carries water over a valley -02732572 06 n 01 arabesque 0 001 @ 03169390 n 0000 | an ornament that interlaces simulated foliage in an intricate design -02732696 06 n 03 araroba 0 Goa_powder 0 chrysarobin 0 001 @ 03994008 n 0000 | a bitter yellow powder used to treat skin diseases -02732827 06 n 04 arbor 0 arbour 0 bower 0 pergola 0 005 @ 03391770 n 0000 + 01701017 a 0301 + 01390210 v 0302 + 00613382 a 0101 ~ 03453443 n 0000 | a framework that supports climbing plants; "the arbor provided a shady resting place in the park" -02733075 06 n 02 arboretum 0 botanical_garden 0 001 @ 03315023 n 0000 | a facility where trees and shrubs are cultivated for exhibition -02733213 06 n 02 arcade 1 colonnade 2 003 @ 04341686 n 0000 %p 02733524 n 0000 ~ 03687137 n 0000 | a structure composed of a series of arches supported by columns -02733378 06 n 01 arcade 2 003 @ 03895585 n 0000 ~ 02706806 n 0000 ~ 03912105 n 0000 | a covered passageway with shops and stalls on either side -02733524 06 n 01 arch 0 030 @ 04341686 n 0000 #p 02898711 n 0000 #p 02732433 n 0000 #p 02733213 n 0000 ;c 06123363 n 0000 + 02034986 v 0101 ~ 02669442 n 0000 ~ 02905152 n 0000 ~ 02942015 n 0000 ~ 03105645 n 0000 ~ 03360133 n 0000 %p 03615133 n 0000 ~ 03934229 n 0000 ~ 03975035 n 0000 ~ 04013600 n 0000 ~ 04051705 n 0000 ~ 04113765 n 0000 ~ 04115542 n 0000 ~ 04125692 n 0000 ~ 04148464 n 0000 ~ 04168084 n 0000 ~ 04207596 n 0000 ~ 04226172 n 0000 ~ 04227787 n 0000 %p 04288784 n 0000 ~ 04293744 n 0000 ~ 04484024 n 0000 ~ 04486054 n 0000 ~ 04495555 n 0000 %p 04542329 n 0000 | (architecture) a masonry construction (usually curved) for spanning an opening and supporting the weight above it -02734217 06 n 02 arch 1 archway 0 003 @ 03290771 n 0000 #p 04546855 n 0000 + 02034986 v 0101 | a passageway under a curved masonry construction; "they built a triumphal arch to memorialize their victory" -02734423 06 n 01 architectural_ornament 0 010 @ 03169390 n 0000 ;c 06123363 n 0000 ~ 02715096 n 0000 ~ 03133744 n 0000 ~ 03218334 n 0000 ~ 03377077 n 0000 ~ 03396311 n 0000 ~ 03397087 n 0000 ~ 03466947 n 0000 ~ 04478257 n 0000 | (architecture) something added to a building to improve its appearance -02734725 06 n 01 architecture 0 002 @ 02913152 n 0000 ;c 06123363 n 0000 | an architectural product or work -02734835 06 n 01 architrave 0 002 @ 04360501 n 0000 #p 03290195 n 0000 | the lowest part of an entablature; rests immediately on the capitals of the columns -02734994 06 n 01 architrave 1 001 @ 03780392 n 0000 | the molding around a door or window -02735086 06 n 01 archive 0 005 @ 03177349 n 0000 + 09806944 n 0101 + 02640223 a 0101 + 01384638 v 0101 ~ 03005147 n 0000 | a depository containing historical records and documents -02735268 06 n 01 arch_support 0 001 @ 04359589 n 0000 | a support for the arch of the foot -02735361 06 n 02 arc_lamp 0 arc_light 0 002 @ 03272383 n 0000 ~ 02961947 n 0000 | a lamp that produces light when electric current flows across the gap between two electrodes -02735538 06 n 05 arctic 0 galosh 0 golosh 0 rubber 0 gumshoe 0 001 @ 03865949 n 0000 | a waterproof overshoe that protects shoes from water or snow -02735688 06 n 01 area 0 030 @ 04341686 n 0000 ~ 02694045 n 0000 ~ 02758134 n 0000 ~ 02775178 n 0000 ~ 02884607 n 0000 ~ 02894158 n 0000 ~ 02917964 n 0000 ~ 03004824 n 0000 ~ 03024064 n 0000 ~ 03109881 n 0000 ~ 03120198 n 0000 ~ 03165718 n 0000 ~ 03200231 n 0000 ~ 03285912 n 0000 ~ 03443005 n 0000 ~ 03517647 n 0000 ~ 03813078 n 0000 ~ 03853291 n 0000 ~ 03883944 n 0000 ~ 03899768 n 0000 ~ 03949761 n 0000 ~ 03949924 n 0000 ~ 04000716 n 0000 ~ 04020744 n 0000 ~ 04030518 n 0000 ~ 04105893 n 0000 ~ 04164199 n 0000 ~ 04328946 n 0000 ~ 04428382 n 0000 ~ 04499660 n 0000 | a part of a structure having some specific characteristic or function; "the spacious cooking area provided plenty of room for servants" -02736396 06 n 01 areaway 0 001 @ 03895585 n 0000 | a passageway between buildings or giving access to a basement -02736511 06 n 02 arena 0 scene_of_action 0 002 @ 08570758 n 0000 ~ 03034860 n 0000 | a playing field where sports events take place -02736645 06 n 02 arena_theater 0 theater_in_the_round 0 001 @ 04417809 n 0000 | a theater arranged with seats around at least three sides of the stage -02736798 06 n 02 argyle 0 argyll 0 001 @ 04254777 n 0000 | a sock knitted or woven with an argyle design (usually used in the plural) -02736934 06 n 02 argyle 1 argyll 1 001 @ 03178782 n 0000 | a design consisting of a pattern of varicolored diamonds on a solid background (originally for knitted articles); patterned after the tartan of a clan in western Scotland -02737166 06 n 02 argyll 2 argyle 2 001 @ 03456024 n 0000 | a covered gravy holder of silver or other metal containing a detachable central vessel for hot water to keep the gravy warm -02737351 06 n 01 ark 0 001 @ 02858304 n 0000 | a boat built by Noah to save his family and animals from the flood -02737467 06 n 02 Ark 1 Ark_of_the_Covenant 0 002 @i 03014705 n 0000 ;c 06232880 n 0000 | (Judaism) sacred chest where the ancient Hebrews kept the two tablets containing the Ten Commandments -02737660 06 n 01 arm 2 003 @ 02741475 n 0000 #p 02738535 n 0000 ~ 04607982 n 0000 | the part of an armchair or sofa that supports the elbow and forearm of a seated person -02737833 06 n 03 arm 3 branch 0 limb 0 001 @ 04008947 n 0000 | any projection that is thought to resemble a human arm; "the arm of the record player"; "an arm of the sea"; "a branch of the sewer" -02738031 06 n 01 armament 0 009 @ 04566257 n 0000 ;c 08199025 n 0000 + 02334867 v 0101 ~ 02743426 n 0000 ~ 02746365 n 0000 ~ 02904505 n 0000 ~ 03647520 n 0000 ~ 03799610 n 0000 ~ 04456472 n 0000 | weaponry used by military or naval force -02738271 06 n 01 armature 0 004 @ 03065708 n 0000 #p 03276179 n 0000 #p 03273061 n 0000 ~ 04111962 n 0000 | coil in which voltage is induced by motion through a magnetic field -02738449 06 n 01 armband 0 001 @ 02784218 n 0000 | a band worn around the upper arm -02738535 06 n 01 armchair 0 007 @ 03001627 n 0000 %p 02737660 n 0000 ~ 02957862 n 0000 ~ 03262932 n 0000 ~ 03325403 n 0000 ~ 03786621 n 0000 ~ 04062428 n 0000 | chair with a support on each side for arms -02738741 06 n 01 armet 0 002 @ 03513376 n 0000 #p 02862048 n 0000 | a medieval helmet with a visor and a neck guard -02738859 06 n 02 arm_guard 0 arm_pad 0 001 @ 04015204 n 0000 | a pad worn by football players and hockey goalkeepers -02738978 06 n 01 armhole 0 002 @ 03526198 n 0000 #p 03419014 n 0000 | a hole through which you put your arm and where a sleeve can be attached -02739123 06 n 01 armilla 0 002 @ 02887970 n 0000 ;c 06144081 n 0000 | (archeology) a bracelet worn around the wrist or arm -02739248 06 n 02 armillary_sphere 0 armilla 1 001 @ 02990920 n 0000 | a celestial globe consisting of metal hoops; used by early astronomers to determine the positions of stars -02739427 06 n 02 armlet 0 arm_band 0 002 @ 02784218 n 0000 + 05563770 n 0101 | a band worn around the arm for decoration -02739550 06 n 01 armoire 0 001 @ 04550184 n 0000 | a large wardrobe or cabinet; originally used for storing weapons -02739668 06 n 02 armor 0 armour 0 007 @ 04014297 n 0000 + 09808949 n 0202 + 02341684 v 0202 + 09808949 n 0101 + 02341684 v 0101 ~ 02862048 n 0000 ~ 04192698 n 0000 | protective covering made of metal and used in combat -02739889 06 n 02 armored_car 0 armoured_car 0 002 @ 02740533 n 0000 ;c 08199025 n 0000 | a military combat vehicle on wheels with light armor (and usually a machine gun) -02740061 06 n 02 armored_car 1 armoured_car 1 001 @ 02740533 n 0000 | an armor-plated truck with strong doors and locks used to transport money or valuables; "the paintings were delivered to the museum in an air-conditioned armored car" -02740300 06 n 03 armored_personnel_carrier 0 armoured_personnel_carrier 0 APC 1 002 @ 02740533 n 0000 ;c 08199025 n 0000 | (military) an armored vehicle (usually equipped with caterpillar treads) that is used to transport infantry -02740533 06 n 02 armored_vehicle 0 armoured_vehicle 0 007 @ 04170037 n 0000 ~ 02739889 n 0000 ~ 02740061 n 0000 ~ 02740300 n 0000 ~ 02749292 n 0000 ~ 04389033 n 0000 ~ 04389718 n 0000 | a vehicle that is protected by armor plate -02740764 06 n 05 armor_plate 0 armour_plate 0 armor_plating 0 plate_armor 0 plate_armour 0 023 @ 03959701 n 0000 ~ 02770078 n 0000 ~ 02818254 n 0000 ~ 02892392 n 0000 ~ 02895154 n 0000 ~ 02950632 n 0000 ~ 03005619 n 0000 ~ 03144873 n 0000 ~ 03146342 n 0000 ~ 03292362 n 0000 ~ 03325288 n 0000 ~ 03448590 n 0000 ~ 03457451 n 0000 ~ 03513376 n 0000 ~ 03623338 n 0000 ~ 03831899 n 0000 ~ 03879705 n 0000 ~ 04114069 n 0000 ~ 04231444 n 0000 ~ 04259468 n 0000 ~ 04395332 n 0000 ~ 04496404 n 0000 ~ 04538878 n 0000 | specially hardened steel plate used to protect fortifications or vehicles from enemy fire -02741367 06 n 03 armory 0 armoury 0 arsenal 2 001 @ 03387653 n 0000 | a place where arms are manufactured -02741475 06 n 01 armrest 0 003 @ 04081044 n 0000 #p 02963821 n 0000 ~ 02737660 n 0000 | a support for the arm -02741587 06 n 01 army_base 0 001 @ 02798290 n 0000 | a large base of operations for an army -02741681 06 n 02 Army_High_Performance_Computing_Research_Center 0 AHPCRC 0 002 @i 08337324 n 0000 #p 08394922 n 0000 | a United States defense laboratory to conduct research in high-performance computing for defense technology applications; a partnership of government and university and industry -02741981 06 n 01 arnica 0 001 @ 03845550 n 0000 | an ointment used in treating bruises -02742070 06 n 04 arquebus 0 harquebus 0 hackbut 0 hagbut 0 001 @ 03803116 n 0000 | an obsolete firearm with a long barrel -02742194 06 n 01 array 0 001 @ 03204955 n 0000 | an arrangement of aerials spaced to give desired directional characteristics -02742322 06 n 03 array 1 raiment 0 regalia 3 003 @ 03051540 n 0000 + 00047945 v 0205 ~ 04552097 n 0000 | especially fine or decorative clothing -02742468 06 n 02 arrester 0 arrester_hook 0 003 @ 04081844 n 0000 #p 02687172 n 0000 + 01859586 v 0103 | a restraint that slows airplanes as they land on the flight deck of an aircraft carrier -02742663 06 n 01 arrival_gate 0 001 @ 03427909 n 0000 | gate where passengers disembark -02742753 06 n 01 arrow 0 007 @ 04008634 n 0000 #p 02880393 n 0000 %p 02743050 n 0000 ~ 02902916 n 0000 ~ 02929462 n 0000 ~ 04031481 n 0000 %p 04520784 n 0000 | a projectile with a straight thin shaft and an arrowhead on one end and stabilizing vanes on the other; intended to be shot from a bow -02743050 06 n 01 arrowhead 0 004 @ 03974215 n 0000 #p 02742753 n 0000 %p 02790322 n 0000 %p 13902482 n 0000 | the pointed head or striking tip of an arrow -02743207 06 n 03 arsenal 1 armory 2 armoury 2 002 @ 03763133 n 0000 ;c 08199025 n 0000 | a military structure where arms and ammunition and other military equipment are stored and training is given in the use of arms -02743426 06 n 03 arsenal 3 armory 3 armoury 3 001 @ 02738031 n 0000 | all the weapons and equipment that a country has -02743547 06 n 02 art 0 fine_art 0 021 @ 03129123 n 0000 ;c 00933420 n 0000 + 01849740 a 0101 + 00069948 a 0101 + 02991122 a 0101 + 09812338 n 0101 ~ 02745395 n 0000 ~ 03076298 n 0000 ~ 03155055 n 0000 ~ 03170292 n 0000 ~ 03204810 n 0000 ~ 03432972 n 0000 ~ 03434943 n 0000 ~ 03453809 n 0000 ~ 03462441 n 0000 ~ 03621935 n 0000 ~ 03787759 n 0000 ~ 03958097 n 0000 ~ 04485423 n 0000 ~ 04601690 n 0000 ~ 07020538 n 0000 | the products of human creativity; works of art collectively; "an art exhibition"; "a fine collection of art" -02744077 06 n 01 Artemision_at_Ephesus 0 002 @i 04407435 n 0000 #m 04178329 n 0000 | the large temple of the Greek goddess Artemis which was begun at Ephesus in 541 BC and completed 220 years later; the temple was destroyed by the Goths in 262 -02744323 06 n 01 arterial_road 0 002 @ 03519981 n 0000 ;r 08860123 n 0000 | a major or main route -02744423 06 n 01 arteriogram 0 001 @ 04100620 n 0000 | an X ray of an artery filled with a contrast medium -02744532 06 n 01 artery 1 001 @ 04426618 n 0000 | a major thoroughfare that bears important traffic -02744634 06 n 01 artesian_well 0 001 @ 04572344 n 0000 | a well drilled through impermeable strata into strata that receive water from a higher altitude so there is pressure to force the water to flow upward -02744844 06 n 01 arthrogram 0 001 @ 04100620 n 0000 | an X ray of a joint after the injection of a contrast medium -02744961 06 n 01 arthroscope 0 001 @ 03286572 n 0000 | a type of endoscope that is inserted into a joint for visual examination -02745091 06 n 01 article_of_commerce 0 003 @ 04550840 n 0000 @ 00022903 n 0000 ~ 04440486 n 0000 | an article that is offered for sale -02745228 06 n 01 articulated_ladder 0 001 @ 03632277 n 0000 | a ladder consisting of segments (usually four) that are held together by joints that can lock in place -02745395 06 n 01 artificial_flower 0 001 @ 02743547 n 0000 | a handmade imitation of a blossom -02745492 06 n 01 artificial_heart 0 002 @ 03563710 n 0000 ~ 03593862 n 0000 | a pump that replaces the natural heart -02745611 06 n 03 artificial_horizon 0 gyro_horizon 0 flight_indicator 0 001 @ 03813176 n 0000 | a navigational instrument based on a gyroscope; it artificially provides a simulated horizon for the pilot -02745816 06 n 01 artificial_joint 0 001 @ 03563710 n 0000 | a metal or plastic part that is surgically implanted to replace a natural joint (possibly elbow or wrist but usually hip or knee) -02746008 06 n 02 artificial_kidney 0 hemodialyzer 0 001 @ 03187751 n 0000 | a machine that uses dialysis to remove impurities and waste products from the bloodstream before returning the blood to the patient's body -02746225 06 n 01 artificial_skin 0 001 @ 03122748 n 0000 | a synthetic covering with two layers used experimentally to treat burn victims -02746365 06 n 04 artillery 0 heavy_weapon 0 gun 1 ordnance 1 007 @ 02738031 n 0000 #p 07953827 n 0000 + 01136614 v 0301 ~ 02950256 n 0000 ~ 03332393 n 0000 ~ 03388711 n 0000 %p 04322026 n 0000 | large but transportable armament -02746595 06 n 01 artillery_shell 0 001 @ 04190464 n 0000 | a shell fired by artillery -02746683 06 n 01 artist's_loft 0 002 @ 03686470 n 0000 @ 02746841 n 0000 | a factory loft that has been converted into an artist's workroom and living area -02746841 06 n 02 artist's_workroom 0 atelier 0 002 @ 04344246 n 0000 ~ 02746683 n 0000 | a studio especially for an artist or designer -02746978 06 n 01 art_school 0 001 @ 03092314 n 0000 | a school specializing in art -02747063 06 n 01 ascot 0 001 @ 03128085 n 0000 | a cravat with wide square ends; secured with an ornamental pin -02747177 06 n 0a ashcan 0 trash_can 0 garbage_can 0 wastebin 0 ash_bin 0 ash-bin 0 ashbin 0 dustbin 0 trash_barrel 0 trash_bin 0 001 @ 02839910 n 0000 | a bin that holds rubbish until it is collected -02747379 06 n 02 Ash_Can 0 Ashcan_school 0 001 @ 08466643 n 0000 | early 20th-century United States painting; portrays realistic and sordid scenes of city life -02747541 06 n 01 ashlar 0 002 @ 04326084 n 0000 @ 02914813 n 0000 | a rectangular block of hewn stone used for building purposes -02747672 06 n 01 ash-pan 0 001 @ 04060904 n 0000 | a receptacle fitted beneath the grate in which ashes collect and are removed -02747802 06 n 01 ashtray 0 001 @ 04060904 n 0000 | a receptacle for the ash from smokers' cigars or cigarettes -02747915 06 n 02 asparaginase 0 Elspar 0 002 @ 02722458 n 0000 ;u 06851742 n 0201 | antineoplastic drug (trade name Elspar) sometimes used to treat lymphoblastic leukemia -02748088 06 n 01 asparagus_bed 0 001 @ 02819474 n 0000 | a bed in which asparagus is growing -02748183 06 n 02 aspergill 0 aspersorium 1 002 @ 03183080 n 0000 %p 03485997 n 0000 | a short-handled device with a globe containing a sponge; used for sprinkling holy water -02748359 06 n 01 aspersorium 0 001 @ 02801525 n 0000 | the basin or other vessel that holds holy water in Roman Catholic Churches -02748491 06 n 01 aspirator 0 002 @ 04021798 n 0000 + 00003316 v 0101 | a pump that draws air or another gas through a liquid -02748618 06 n 05 aspirin 0 acetylsalicylic_acid 0 Bayer 0 Empirin 0 St._Joseph 0 012 @ 15009843 n 0000 @ 02707683 n 0000 ;u 06851742 n 0501 ;u 06845599 n 0501 ;u 06851742 n 0401 ;u 06845599 n 0401 ;u 06851742 n 0301 ;u 06845599 n 0301 ~ 02749169 n 0000 ~ 02911890 n 0000 ~ 03290489 n 0000 %s 15010038 n 0000 | the acetylated derivative of salicylic acid; used as an analgesic anti-inflammatory drug (trade names Bayer, Empirin, and St. Joseph) usually taken in tablet form; used as an antipyretic; slows clotting of the blood by poisoning platelets -02749169 06 n 02 aspirin_powder 0 headache_powder 0 002 @ 02748618 n 0000 @ 03994008 n 0000 | a powdered form of aspirin -02749292 06 n 01 assault_gun 0 001 @ 02740533 n 0000 | an armored vehicle with the chassis of a tank (but no turret) and a large gun; used as an antitank weapon and to support infantry -02749479 06 n 02 assault_rifle 0 assault_gun 1 002 @ 02760855 n 0000 ;c 08199025 n 0000 | any of the automatic rifles or semiautomatic rifles with large magazines designed for military use -02749670 06 n 02 assegai 0 assagai 0 001 @ 04270891 n 0000 | the slender spear of the Bantu-speaking people of Africa -02749790 06 n 01 assembly 0 003 @ 03699975 n 0000 ~ 04346855 n 0000 ~ 04572235 n 0000 | a group of machine parts that fit together to form a self-contained unit -02749953 06 n 01 assembly 2 001 @ 00003553 n 0000 | a unit consisting of components that have been fitted together -02750070 06 n 01 assembly_hall 0 001 @ 02758134 n 0000 | a hall where many people can congregate -02750169 06 n 01 assembly_plant 0 002 @ 03316406 n 0000 ~ 03720665 n 0000 | a factory where manufactured parts are assembled into a finished product -02750320 06 n 01 astatic_coils 0 002 @ 03065708 n 0000 #p 02750652 n 0000 | an arrangement of coils used in sensitive electrical instruments; the coils are arranged to give zero resultant external magnetic field when a current passes through them and to have zero electromotive force induced in them by an external magnetic field -02750652 06 n 01 astatic_galvanometer 0 002 @ 03413264 n 0000 %p 02750320 n 0000 | has a moving magnet and astatic coils arranged to cancel the effect of the Earth's magnetic field -02750835 06 n 03 astringent 0 astringent_drug 0 styptic 0 006 @ 03740161 n 0000 + 00189833 a 0301 + 00189580 a 0101 + 01388386 v 0101 + 00304662 v 0101 ~ 02700622 n 0000 | a drug that causes contraction of body tissues and canals -02751067 06 n 01 astrodome 0 001 @ 03220513 n 0000 | a transparent dome on top of an airplane where the navigator can make celestial observations -02751215 06 n 01 astrolabe 0 001 @ 04180888 n 0000 | an early form of sextant -02751295 06 n 01 astronomical_telescope 0 003 @ 04403638 n 0000 ~ 03852688 n 0000 ~ 04044716 n 0000 | any telescope designed to collect and record electromagnetic radiation from cosmic sources -02751490 06 n 01 astronomy_satellite 0 001 @ 04137444 n 0000 | a satellite equipped with a telescope to observe infrared radiation -02751623 06 n 02 Aswan_High_Dam 0 High_Dam 0 002 @i 03160309 n 0000 #p 08897065 n 0000 | one of the world's largest dams on the Nile River in southern Egypt -02751782 06 n 02 atenolol 0 Tenormin 0 002 @ 02832168 n 0000 #s 04410190 n 0000 | an oral beta blocker (trade name Tenormin) used in treating hypertension and angina; has adverse side effects (depression and exacerbation of congestive heart failure etc.) -02752039 06 n 01 athanor 0 002 @ 03404449 n 0000 ;c 05778749 n 0000 | a furnace that feeds itself so as to maintain a uniform temperature; used by alchemists -02752199 06 n 02 athenaeum 0 atheneum 0 001 @ 03660664 n 0000 | a place where reading materials are available -02752311 06 n 01 athletic_facility 0 006 @ 03315023 n 0000 ~ 03333480 n 0000 ~ 03379204 n 0000 ~ 03472112 n 0000 %p 03683708 n 0000 ~ 04371225 n 0000 | a facility for athletic events -02752496 06 n 03 athletic_sock 0 sweat_sock 0 varsity_sock 0 001 @ 04254777 n 0000 | a sock worn for athletic events -02752615 06 n 05 athletic_supporter 0 supporter 1 suspensor 0 jockstrap 0 jock 0 002 @ 04015204 n 0000 @ 03746330 n 0000 | a support for the genitals worn by men engaging in strenuous exercise -02752810 06 n 02 atlas 0 telamon 0 001 @ 03073977 n 0000 | a figure of a man used as a supporting column -02752917 06 n 02 atmometer 0 evaporometer 0 001 @ 03733925 n 0000 | an instrument that measures rate of evaporation of water -02753044 06 n 05 atom_bomb 0 atomic_bomb 0 A-bomb 0 fission_bomb 0 plutonium_bomb 0 006 @ 03834604 n 0000 @ 02866578 n 0000 ~ 03039711 n 0000 ~ 03205903 n 0000 ~ 03821145 n 0000 %p 03970673 n 0000 | a nuclear weapon in which enormous energy is released by nuclear fission (splitting the nuclei of a heavy element like uranium 235 or plutonium 239) -02753394 06 n 01 atomic_clock 0 003 @ 04437953 n 0000 ~ 02703124 n 0000 ~ 02935490 n 0000 | a timepiece that derives its time scale from the vibration of atoms or molecules -02753569 06 n 01 atomic_cocktail 0 001 @ 03740161 n 0000 | an oral dose of radioactive substance used in treatment and diagnosis of cancer -02753710 06 n 04 atomic_pile 0 atomic_reactor 0 pile 0 chain_reactor 0 001 @ 03834040 n 0000 | a nuclear reactor that uses controlled nuclear fission to generate energy -02753881 06 n 04 atomic_warhead 0 nuclear_warhead 0 thermonuclear_warhead 0 nuke 0 004 @ 04551375 n 0000 #p 03834604 n 0000 + 01132980 v 0402 + 01133288 v 0401 | the warhead of a missile designed to deliver an atom bomb -02754103 06 n 06 atomizer 0 atomiser 0 spray 0 sprayer 0 nebulizer 0 nebuliser 0 009 @ 03210683 n 0000 + 01372682 v 0401 + 01372682 v 0301 + 01373844 v 0301 + 01373138 v 0202 + 00330144 v 0202 + 01373138 v 0101 + 00330144 v 0101 ~ 02685995 n 0000 | a dispenser that turns a liquid (such as perfume) into a fine mist -02754421 06 n 02 atorvastatin 0 Lipitor 0 002 @ 03676175 n 0000 ;u 06851742 n 0201 | an oral drug (trade name Lipitor) that is effective in lowering triglycerides; potent in reducing LDL cholesterol because higher doses can be given -02754656 06 n 01 atrium 0 001 @ 03120198 n 0000 | the central area in a building; open to the sky -02754756 06 n 01 atropine 0 006 @ 14712692 n 0000 @ 02724533 n 0000 @ 15032376 n 0000 @ 03803610 n 0000 @ 02719588 n 0000 ~ 02825004 n 0000 | a poisonous crystalline alkaloid extracted from the nightshade family; used as an antispasmodic and to dilate the eye pupil; also administered in large amounts as an antidote for organophosphate nerve agents or organophosphate insecticides -02755140 06 n 02 attache_case 0 attache 0 001 @ 02900705 n 0000 | a shallow and rectangular briefcase -02755244 06 n 01 attachment 0 002 @ 02679415 n 0000 ~ 03531808 n 0000 | a supplementary part or accessory -02755352 06 n 02 attachment 1 bond 1 005 @ 03091374 n 0000 + 01356750 v 0203 + 01290255 v 0101 + 01290422 v 0101 ~ 03664943 n 0000 | a connection that fastens things together -02755529 06 n 01 attack_submarine 0 002 @ 04347754 n 0000 ;c 08199025 n 0000 | a military submarine designed and armed to attack enemy shipping -02755675 06 n 01 attenuator 0 002 @ 03269401 n 0000 + 00220701 v 0101 | an electrical device for attenuating the strength of an electrical signal -02755823 06 n 01 attic 1 003 @ 04546855 n 0000 #p 03290195 n 0000 ;c 06123363 n 0000 | (architecture) a low wall at the top of the entablature; hides the roof -02755984 06 n 01 attic_fan 0 001 @ 03303217 n 0000 | a fan that blows heated air out of the attic of a building -02756098 06 n 03 attire 0 garb 0 dress 1 020 @ 03051540 n 0000 + 01795353 a 0301 + 00044797 v 0301 + 00047945 v 0204 + 00044149 v 010c ~ 02726017 n 0000 ~ 03113657 n 0000 ~ 03113835 n 0000 ~ 03114041 n 0000 ~ 03114236 n 0000 ~ 03206718 n 0000 ~ 03263338 n 0000 ~ 03340923 n 0000 ~ 03384891 n 0000 ~ 03473966 n 0000 ~ 03474167 n 0000 ~ 03476083 n 0000 ~ 03786194 n 0000 ~ 03859958 n 0000 ~ 04285803 n 0000 | clothing of a distinctive style or for a particular occasion; "formal attire"; "battle dress" -02756601 06 n 02 auction_block 0 block 5 001 @ 03961939 n 0000 | a platform from which an auctioneer sells; "they put their paintings on the block" -02756751 06 n 01 audio 0 002 @ 03081021 n 0000 #p 04404412 n 0000 | the sound elements of television -02756854 06 n 01 audio_amplifier 0 001 @ 02705944 n 0000 | an amplifier that increases the amplitude of reproduced sound -02756977 06 n 01 audiocassette 0 001 @ 02978881 n 0000 | a cassette for audiotape -02757061 06 n 02 audio_CD 0 audio_compact_disc 0 002 @ 03079230 n 0000 ;c 07020895 n 0000 | compact discs used to reproduce sound (voice and music) -02757211 06 n 01 audiogram 0 001 @ 04076846 n 0000 | a graphical representation of a person's auditory sensitivity to sound -02757337 06 n 02 audiometer 0 sonometer 0 001 @ 03733925 n 0000 | an instrument used to measure the sensitivity of hearing -02757462 06 n 02 audio_system 0 sound_system 0 007 @ 03278248 n 0000 @ 04377057 n 0000 %p 04043411 n 0000 ~ 04064213 n 0000 %p 04064401 n 0000 ~ 04077430 n 0000 %p 04392526 n 0000 | a system of electronic equipment for recording or reproducing sound -02757714 06 n 01 audiotape 0 001 @ 03708036 n 0000 | magnetic tape for use in recording sound -02757810 06 n 01 audiotape 1 003 @ 04391838 n 0000 @ 04262678 n 0000 ~ 03195959 n 0000 | a tape recording of sound -02757927 06 n 02 audiovisual 0 audiovisual_aid 0 002 @ 04397261 n 0000 + 02648392 a 0101 | materials using sight or sound to present information; "language tapes and videocassettes and other audiovisuals" -02758134 06 n 01 auditorium 0 002 @ 02735688 n 0000 ~ 02750070 n 0000 | the area of a theater or concert hall where the audience sits -02758270 06 n 01 Augean_stables 0 003 @i 04294879 n 0000 ;c 07979425 n 0000 ;u 06295235 n 0000 | (Greek mythology) the extremely dirty stables that were finally cleaned by Hercules who diverted two rivers through them -02758490 06 n 04 auger 0 gimlet 0 screw_auger 0 wimble 0 001 @ 03239726 n 0000 | hand tool for boring holes -02758600 06 n 01 Auschwitz 0 002 @i 03086183 n 0000 #p 08982587 n 0000 | a Nazi concentration camp for Jews in southwestern Poland during World War II -02758753 06 n 01 auto_accessory 0 002 @ 02671421 n 0000 #p 02958343 n 0000 | an accessory for an automobile -02758863 06 n 01 autobahn 0 001 @ 03306610 n 0000 | an expressway in a German-speaking country -02758960 06 n 03 autoclave 0 sterilizer 0 steriliser 0 006 @ 04531098 n 0000 + 00062582 v 0302 + 00062582 v 0201 + 00062973 v 0101 ~ 03195332 n 0000 ~ 04001265 n 0000 | a device for heating substances above their boiling point; used to manufacture chemicals or to sterilize surgical instruments -02759257 06 n 01 autofocus 0 001 @ 03851341 n 0000 | an optical device for focussing a camera or other instrument automatically -02759387 06 n 03 autogiro 0 autogyro 0 gyroplane 0 001 @ 03510583 n 0000 | an aircraft that is supported in flight by unpowered rotating horizontal wings (or blades); forward propulsion is provided by a conventional propeller -02759615 06 n 01 autograph_album 0 001 @ 02695079 n 0000 | an album for autographs -02759700 06 n 01 autoinjector 0 001 @ 03555662 n 0000 | a hypodermic syringe to use in injecting yourself with a liquid; "United States troops now carry atropine and autoinjectors in their first-aid kits to use in case of organophosphate nerve agent poisoning" -02759963 06 n 02 autoloader 0 self-loader 0 003 @ 03343853 n 0000 ~ 02760429 n 0000 ~ 04171459 n 0000 | a firearm that reloads itself -02760099 06 n 01 automat 0 001 @ 02935891 n 0000 | a cafeteria where food is served from machines -02760199 06 n 01 automat 1 001 @ 04525305 n 0000 | a vending machine from which you can get food -02760298 06 n 01 automatic_choke 0 001 @ 03024333 n 0000 | a choke that automatically controls the flow of air to the carburetor -02760429 06 n 03 automatic_firearm 0 automatic_gun 0 automatic_weapon 0 004 @ 02759963 n 0000 ~ 02760658 n 0000 ~ 02760855 n 0000 ~ 03701391 n 0000 | a firearm that reloads itself and keeps firing until the trigger is released -02760658 06 n 02 automatic_pistol 0 automatic 2 003 @ 03948459 n 0000 @ 02760429 n 0000 + 00181476 a 0201 | a pistol that will keep firing until the ammunition is gone or the trigger is released -02760855 06 n 03 automatic_rifle 0 automatic 1 machine_rifle 0 005 @ 02760429 n 0000 @ 03701391 n 0000 + 00181476 a 0201 ~ 02749479 n 0000 ~ 02907391 n 0000 | light machine gun -02761034 06 n 02 automatic_transmission 0 automatic_drive 0 001 @ 04472243 n 0000 | a transmission that automatically changes the gears according to the speed of the car -02761206 06 n 01 automation 0 001 @ 03294048 n 0000 | equipment used to achieve automatic control or operation; "this factory floor is a showcase for automation and robotic equipment" -02761392 06 n 03 automaton 0 robot 0 golem 0 004 @ 03738472 n 0000 + 00181476 a 0101 + 00480221 v 0101 ~ 02710201 n 0000 | a mechanism that can move automatically -02761557 06 n 01 automobile_engine 0 003 @ 03287733 n 0000 #p 02958343 n 0000 %p 03302938 n 0000 | the engine that propels an automobile -02761696 06 n 03 automobile_factory 0 auto_factory 0 car_factory 0 001 @ 03316406 n 0000 | a factory where automobiles are manufactured -02761834 06 n 05 automobile_horn 0 car_horn 0 motor_horn 0 horn 5 hooter 0 004 @ 02694426 n 0000 #p 02958343 n 0000 + 01042725 v 0501 %p 03537412 n 0000 | a device on an automobile for making a warning noise -02762044 06 n 02 auto_part 0 car_part 0 001 @ 03081021 n 0000 | a component of an automobile; "his business is auto parts" -02762169 06 n 03 autopilot 0 automatic_pilot 0 robot_pilot 0 002 @ 03183080 n 0000 %p 03569293 n 0000 | a navigational device that automatically keeps ships or planes or spacecraft on a steady course -02762371 06 n 01 autoradiograph 0 001 @ 04042358 n 0000 | a radiogram produced by radiation emitted by the specimen being photographed -02762508 06 n 01 autostrada 0 001 @ 03306610 n 0000 | an expressway in an Italian-speaking country -02762609 06 n 01 auxiliary_airfield 0 001 @ 02687992 n 0000 | an airfield that functions in a subsidiary capacity -02762725 06 n 02 auxiliary_boiler 0 donkey_boiler 0 002 @ 02863750 n 0000 ;c 04194289 n 0000 | (nautical) an extra boiler (as a ship's boiler that is used while the ship is in port) -02762909 06 n 02 auxiliary_engine 0 donkey_engine 0 002 @ 03287733 n 0000 ;c 04194289 n 0000 | (nautical) a small engine (as one used on board ships to operate a windlass) -02763083 06 n 02 auxiliary_pump 0 donkey_pump 0 001 @ 04021798 n 0000 | a supplementary pump available if needed -02763198 06 n 01 auxiliary_research_submarine 0 001 @ 04347754 n 0000 | a submarine for research purposes -02763306 06 n 03 auxiliary_storage 0 external_storage 0 secondary_storage 0 001 @ 03744840 n 0000 | a data storage device that is not the main memory of a computer -02763472 06 n 02 avenue 0 boulevard 0 003 @ 04334599 n 0000 ~i 09120939 n 0000 ~i 09121101 n 0000 | a wide street or thoroughfare -02763604 06 n 03 aviary 0 bird_sanctuary 0 volary 0 001 @ 02913152 n 0000 | a building where birds are kept -02763714 06 n 01 awl 0 005 @ 03489162 n 0000 ~ 02888898 n 0000 %p 03474896 n 0000 %p 03974215 n 0000 ~ 04155457 n 0000 | a pointed tool for marking surfaces or for punching small holes -02763901 06 n 03 awning 0 sunshade 0 sunblind 1 001 @ 02951843 n 0000 | a canopy made of canvas to shelter people or things from rain or sun -02764044 06 n 02 ax 0 axe 0 014 @ 03265032 n 0000 + 01257953 v 0201 + 01257953 v 0102 %p 02764398 n 0000 %p 02764505 n 0000 %p 02848216 n 0000 ~ 02903006 n 0000 ~ 03077442 n 0000 ~ 03226090 n 0000 ~ 03346289 n 0000 %p 03474896 n 0000 ~ 03498962 n 0000 ~ 03556679 n 0000 ~ 03977430 n 0000 | an edge tool with a heavy bladed head mounted across a handle -02764398 06 n 02 ax_handle 0 axe_handle 0 002 @ 03485997 n 0000 #p 02764044 n 0000 | the handle of an ax -02764505 06 n 02 ax_head 0 axe_head 0 002 @ 04569520 n 0000 #p 02764044 n 0000 | the cutting head of an ax -02764614 06 n 02 axis 0 axis_of_rotation 0 004 @ 03738472 n 0000 + 02654894 a 0101 ~ 03951971 n 0000 ~ 04112430 n 0000 | the center around which something rotates -02764779 06 n 01 axle 0 005 @ 04182322 n 0000 #p 04576211 n 0000 ~ 03165823 n 0000 ~ 03602465 n 0000 ~ 03678879 n 0000 | a shaft on which a wheel rotates -02764935 06 n 01 axle_bar 0 001 @ 02765028 n 0000 | an iron bar that serves as an axletree -02765028 06 n 01 axletree 0 005 @ 03165823 n 0000 #p 02968473 n 0000 #p 02970849 n 0000 #p 04543158 n 0000 ~ 02764935 n 0000 | a dead axle on a carriage or wagon that has terminal spindles on which the wheels revolve -02765247 06 n 02 azathioprine 0 Imuran 0 002 @ 03740161 n 0000 ;u 06851742 n 0201 | an immunosuppressive drug (trade name Imuran) used to prevent rejection of a transplanted organ -02765429 06 n 04 zidovudine 0 Retrovir 0 ZDV 0 AZT 0 001 @ 03834836 n 0000 | an antiviral drug (trade name Retrovir) used in the treatment of AIDS; adverse side effects include liver damage and suppression of the bone marrow -02765656 06 n 02 azithromycin 0 Zithromax 0 001 @ 02716205 n 0000 | a systemic antibacterial medicine (trade name Zithromax) that is prescribed to treat bacterial infections in many different parts of the body -02765868 06 n 02 aztreonam 0 Azactam 0 002 @ 02716866 n 0000 ;u 06851742 n 0201 | an antibiotic (trade name Azactam) used against severe infections; has minimal side effects -02766044 06 n 01 B-52 0 002 @i 02867715 n 0000 ;c 08199025 n 0000 | United States military aircraft; B- stands for bomber -02766168 06 n 01 babushka 0 001 @ 03505504 n 0000 | a woman's headscarf folded into a triangle and tied under the chin; worn by Russian peasant women -02766320 06 n 02 baby_bed 0 baby's_bed 0 005 @ 03405725 n 0000 ~ 02804414 n 0000 ~ 02970534 n 0000 ~ 03125729 n 0000 ~ 03131574 n 0000 | a small bed for babies; enclosed by sides to prevent the baby from falling -02766534 06 n 09 baby_buggy 0 baby_carriage 0 carriage 3 perambulator 0 pram 0 stroller 0 go-cart 0 pushchair 0 pusher 0 003 @ 04576211 n 0000 + 01871979 v 0901 ~ 02804515 n 0000 | a small vehicle with four wheels in which a baby or child is pushed around -02766792 06 n 06 baby_grand 0 baby_grand_piano 0 parlor_grand 0 parlor_grand_piano 0 parlour_grand 0 parlour_grand_piano 0 001 @ 03452741 n 0000 | a small grand piano -02766961 06 n 01 baby_oil 0 001 @ 03845550 n 0000 | an ointment for babies -02767038 06 n 01 baby_powder 0 001 @ 03994008 n 0000 | powder used to prevent a baby's diaper from chafing -02767147 06 n 01 baby_shoe 0 001 @ 04199027 n 0000 | a shoe designed to be worn by infants -02767240 06 n 01 bacitracin 0 001 @ 02716866 n 0000 | a polypeptide antibiotic of known chemical structure effective against several types of Gram-positive organisms; usually applied locally -02767433 06 n 02 back 1 backrest 0 005 @ 04359589 n 0000 #p 03001627 n 0000 #p 02970685 n 0000 ~ 02953455 n 0000 ~ 03632577 n 0000 | a support that you can lean against while sitting; "the back of the dental chair was adjustable" -02767665 06 n 01 back 2 001 @ 03050026 n 0000 | the part of a garment that covers the back of your body; "they pinned a `kick me' sign on his back" -02767815 06 n 01 backband 0 001 @ 02784218 n 0000 | a broad band that passes over the back of a horse and supports the shafts of a vehicle -02767956 06 n 01 backbench 0 003 @ 04161358 n 0000 ;r 08860123 n 0000 + 09830400 n 0101 | any of the seats occupied by backbenchers in the House of Commons -02768114 06 n 01 backboard 0 001 @ 04359589 n 0000 | a board used to support the back of someone or something -02768226 06 n 02 backboard 1 basketball_backboard 0 002 @ 03414162 n 0000 ;c 00480993 n 0000 | a raised vertical board with basket attached; used to play basketball; "he banked the shot off the backboard" -02768433 06 n 01 backbone 0 002 @ 03091374 n 0000 #p 03819595 n 0000 | the part of a network that connects other networks together; "the backbone is the part of a communication network that carries the heaviest traffic" -02768655 06 n 01 back_brace 0 001 @ 02887209 n 0000 | a brace worn to support the back -02768744 06 n 03 back_door 0 backdoor 0 back_entrance 0 001 @ 03307274 n 0000 | an entrance at the rear of a building -02768864 06 n 03 backdrop 0 background 0 backcloth 0 001 @ 04145056 n 0000 | scenery hung at back of stage -02768973 06 n 01 backgammon_board 0 001 @ 02857023 n 0000 | the board on which backgammon is played -02769075 06 n 03 background 1 desktop 0 screen_background 0 002 @ 04152593 n 0000 ;c 06128570 n 0000 | (computer science) the area of the screen in graphical user interfaces against which icons and windows appear -02769290 06 n 01 backhoe 0 002 @ 03996416 n 0000 %p 04149208 n 0000 | an excavator whose shovel bucket is attached to a hinged boom and is drawn backward to move earth -02769460 06 n 02 backing 0 mount 0 006 @ 03650173 n 0000 @ 04336034 n 0000 #p 03391770 n 0000 + 00407633 v 0201 + 01343204 v 0201 + 00185857 v 0101 | something forming a back that is added for strengthening -02769669 06 n 01 backlighting 0 001 @ 03667235 n 0000 | lighting from behind -02769748 06 n 06 backpack 0 back_pack 0 knapsack 0 packsack 0 rucksack 0 haversack 0 004 @ 02773037 n 0000 + 09830629 n 0101 + 01926031 v 0101 ~ 03619793 n 0000 | a bag carried by a strap on your back or shoulder -02769963 06 n 02 backpacking_tent 0 pack_tent 0 001 @ 04411264 n 0000 | a tent that can be carried in a backpack -02770078 06 n 01 backplate 0 002 @ 02740764 n 0000 #p 03146219 n 0000 | plate armor protecting the back; worn as part of a cuirass -02770211 06 n 01 back_porch 0 001 @ 03984381 n 0000 | a porch for the back door -02770293 06 n 01 back_room 0 001 @ 04105893 n 0000 | a room located in the rear of an establishment; usually accessible only to privileged groups -02770441 06 n 01 backroom 1 001 @ 03315023 n 0000 | the meeting place of a group of leaders who make their decisions via private negotiations -02770585 06 n 02 backsaw 0 back_saw 0 001 @ 03488188 n 0000 | a handsaw that is stiffened by metal reinforcement along the upper edge -02770721 06 n 01 backscratcher 0 001 @ 04151108 n 0000 | a long-handled scratcher for scratching your back -02770830 06 n 01 backseat 0 003 @ 04161358 n 0000 ;c 02958343 n 0000 ~ 03191776 n 0000 | a seat at the back of a vehicle (especially the seat at the back of an automobile) -02771004 06 n 03 backspace_key 0 backspace 0 backspacer 0 003 @ 03613592 n 0000 #p 04505470 n 0000 + 01005373 v 0301 | the typewriter key used for back spacing -02771166 06 n 01 backstairs 0 002 @ 04298308 n 0000 ;u 06295235 n 0000 | a second staircase at the rear of a building -02771286 06 n 01 backstay 0 001 @ 04307419 n 0000 | a stay that supports the back of something -02771383 06 n 01 backstitch 0 002 @ 04180314 n 0000 + 01330567 v 0101 | an overlapping stitch made by starting the next stitch at the middle of the preceding one -02771547 06 n 01 backstop 0 003 @ 03327234 n 0000 ;c 00471613 n 0000 + 01076130 v 0101 | (baseball) a fence or screen (as behind home plate) to prevent the ball from traveling out of the playing field -02771750 06 n 01 backsword 0 001 @ 04373894 n 0000 | a sword with only one cutting edge -02771840 06 n 02 backup 0 computer_backup 0 003 @ 03257343 n 0000 ;c 06128570 n 0000 + 01694620 v 0101 | (computer science) a copy of a file or directory on a separate storage device; "he made a backup in case the original was accidentally damaged or erased" -02772101 06 n 01 backup_system 0 001 @ 03085915 n 0000 | a computer system for making backups -02772197 06 n 01 backyard 0 001 @ 04610879 n 0000 | the grounds in back of a house -02772282 06 n 01 bacteria_bed 0 001 @ 03339643 n 0000 | layer of sand or gravel used to expose sewage effluent to air and the action of microorganisms -02772435 06 n 01 badminton_court 0 002 @ 03120491 n 0000 ;c 00480508 n 0000 | the court on which badminton is played -02772554 06 n 01 badminton_equipment 0 003 @ 04285146 n 0000 ;c 00480508 n 0000 ~ 04212282 n 0000 | equipment for playing the game of badminton -02772700 06 n 03 badminton_racket 0 badminton_racquet 0 battledore 0 002 @ 04039381 n 0000 ;c 00480508 n 0000 | a light long-handled racket used by badminton players -02772868 06 n 02 baffle 0 baffle_board 0 003 @ 03959936 n 0000 + 00234988 v 0101 ~ 03194992 n 0000 | a flat plate that controls or directs the flow of fluid or energy -02773037 06 n 01 bag 0 038 @ 03094503 n 0000 ~ 02685365 n 0000 ~ 02769748 n 0000 ~ 02816656 n 0000 ~ 02848118 n 0000 ~ 02862770 n 0000 ~ 02870676 n 0000 ~ 02922877 n 0000 ~ 02970408 n 0000 ~ 03235796 n 0000 ~ 03258192 n 0000 ~ 03291963 n 0000 ~ 03414029 n 0000 ~ 03445617 n 0000 ~ 03469903 n 0000 ~ 03557840 n 0000 ~ 03709823 n 0000 ~ 03831203 n 0000 ~ 03883524 n 0000 ~ 03958227 n 0000 ~ 03993180 n 0000 ~ 04026417 n 0000 ~ 04046091 n 0000 ~ 04110281 n 0000 ~ 04122685 n 0000 ~ 04122825 n 0000 ~ 04124098 n 0000 ~ 04134008 n 0000 ~ 04146343 n 0000 ~ 04204081 n 0000 ~ 04212943 n 0000 ~ 04230221 n 0000 ~ 04235860 n 0000 ~ 04369485 n 0000 ~ 04396808 n 0000 ~ 04446844 n 0000 ~ 04452528 n 0000 ~ 04495310 n 0000 | a flexible container with a single opening; "he stuffed his laundry into a large bag" -02773838 06 n 05 bag 1 traveling_bag 0 travelling_bag 0 grip 0 suitcase 0 007 @ 02774630 n 0000 ~ 02967294 n 0000 ~ 03420345 n 0000 ~ 03460455 n 0000 ~ 03865371 n 0000 ~ 03986949 n 0000 ~ 04570815 n 0000 | a portable rectangular container for carrying clothes; "he carried his small bag onto the plane with him" -02774152 06 n 04 bag 2 handbag 0 pocketbook 0 purse 0 008 @ 03094503 n 0000 + 01485839 v 0101 %p 03038281 n 0000 ~ 03055418 n 0000 ~ 03301291 n 0000 ~ 03301940 n 0000 ~ 04083309 n 0000 ~ 04207343 n 0000 | a container used for carrying money and small personal items or accessories (especially by women); "she reached into her bag and found a comb" -02774502 06 n 04 bagatelle 0 fluff 0 frippery 0 frivolity 0 001 @ 04486445 n 0000 | something of little value or significance -02774630 06 n 02 baggage 0 luggage 0 011 @ 02974697 n 0000 + 01454246 v 0201 ~ 02773838 n 0000 ~ 03237839 n 0000 %p 03485997 n 0000 ~ 03487533 n 0000 ~ 03498441 n 0000 ~ 03563611 n 0000 ~ 04137217 n 0000 %p 04333129 n 0000 ~ 04491769 n 0000 | cases used to carry belongings when traveling -02774921 06 n 01 baggage 1 002 @ 03730153 n 0000 ~ 03563358 n 0000 | the portable equipment and supplies of an army -02775039 06 n 02 baggage_car 0 luggage_van 0 002 @ 02959942 n 0000 #m 03896233 n 0000 | a railway car where passengers' bags are carried -02775178 06 n 01 baggage_claim 0 001 @ 02735688 n 0000 | an area in an airport where arriving passengers can collect the luggage that has been carried in the hold of the aircraft -02775359 06 n 01 bagger 0 002 @ 03699975 n 0000 + 01485839 v 0101 | a machine for putting objects or substances into bags -02775483 06 n 01 bagpipe 0 004 @ 03945615 n 0000 %p 03006626 n 0000 %p 03245724 n 0000 ~ 03800371 n 0000 | a tubular wind instrument; the player blows air into a bag and squeezes it out through the drone -02775689 06 n 01 bailey 0 001 @ 04051825 n 0000 | the outer defensive wall that surrounds the outer courtyard of a castle -02775813 06 n 01 bailey 1 001 @ 03120198 n 0000 | the outer courtyard of a castle -02775897 06 n 01 Bailey_bridge 0 001 @ 02898711 n 0000 | a temporary bridge designed for rapid construction -02776007 06 n 01 bain-marie 0 001 @ 03880323 n 0000 | a large pan that is filled with hot water; smaller pans containing food can be set in the larger pan to keep food warm or to cook food slowly -02776205 06 n 03 bait 0 decoy 0 lure 0 009 @ 03183080 n 0000 #p 04474466 n 0000 + 00782527 v 0302 + 02577755 v 0201 + 02577877 v 0101 ~ 03027797 n 0000 ~ 03350602 n 0000 ~ 03462972 n 0000 ~ 04327110 n 0000 | something used to lure fish or other animals into danger so they can be trapped or killed -02776505 06 n 01 baize 0 001 @ 03309808 n 0000 | a bright green fabric napped to resemble felt; used to cover gaming tables -02776631 06 n 03 bakery 0 bakeshop 0 bakehouse 0 003 @ 04602044 n 0000 @ 04202417 n 0000 ~ 03899933 n 0000 | a workplace where baked goods (breads and cakes and pastries) are produced or sold -02776825 06 n 02 balaclava 0 balaclava_helmet 0 001 @ 02954340 n 0000 | a cap that is close-fitting and woolen and covers all of the head but the face -02776978 06 n 01 balalaika 0 001 @ 03025886 n 0000 | a stringed instrument that has a triangular body and three strings -02777100 06 n 01 balance 0 006 @ 04141975 n 0000 ~ 02816494 n 0000 ~ 03277459 n 0000 ~ 03758894 n 0000 ~ 04288533 n 0000 ~ 04312154 n 0000 | a scale for weighing; depends on pull of gravity -02777292 06 n 02 balance_beam 0 beam 1 001 @ 03472232 n 0000 | a gymnastic apparatus used by women gymnasts -02777402 06 n 02 balance_wheel 0 balance 2 002 @ 04574999 n 0000 #p 04437953 n 0000 | a wheel that regulates the rate of movement in a machine; especially a wheel oscillating against the hairspring of a timepiece to regulate its beat -02777638 06 n 01 balbriggan 0 001 @ 03625355 n 0000 | a cotton knit fabric used for underwear -02777734 06 n 01 balcony 1 003 @ 04341686 n 0000 %p 02788148 n 0000 ~ 03411544 n 0000 | a platform projecting from the wall of a building and surrounded by a balustrade or railing or parapet -02777927 06 n 01 balcony 2 005 @ 04341686 n 0000 %p 02884225 n 0000 ~ 03687003 n 0000 ~ 03758220 n 0000 %p 04164199 n 0000 | an upper floor projecting from the rear over the main floor in an auditorium -02778131 06 n 01 baldachin 0 001 @ 02951843 n 0000 | ornamented canopy supported by columns or suspended from a roof or projected from a wall (as over an altar) -02778294 06 n 02 baldric 0 baldrick 0 001 @ 02827606 n 0000 | a wide (ornamented) belt worn over the right shoulder to support a sword or bugle by the left hip -02778456 06 n 01 bale 0 003 @ 02919414 n 0000 + 01386200 v 0101 ~ 03500389 n 0000 | a large bundle bound for storage or transport -02778588 06 n 01 baling_wire 0 001 @ 04594218 n 0000 | wire used to make bales -02778669 06 n 01 ball 1 031 @ 03414162 n 0000 ~ 02799071 n 0000 ~ 02802426 n 0000 ~ 02839351 n 0000 ~ 02861147 n 0000 ~ 02881546 n 0000 ~ 02882301 n 0000 ~ 03131967 n 0000 ~ 03134739 n 0000 ~ 03333252 n 0000 ~ 03378765 n 0000 ~ 03445777 n 0000 ~ 03482877 n 0000 ~ 03589672 n 0000 ~ 03632100 n 0000 ~ 03721047 n 0000 ~ 03742019 n 0000 ~ 03825442 n 0000 ~ 03942813 n 0000 ~ 03978575 n 0000 ~ 03982232 n 0000 ~ 04023962 n 0000 ~ 04039742 n 0000 ~ 04113316 n 0000 ~ 04118538 n 0000 ~ 04254680 n 0000 ~ 04256891 n 0000 ~ 04292221 n 0000 ~ 04409515 n 0000 ~ 04540053 n 0000 ~ 04584056 n 0000 | round object that is hit or thrown or kicked in games; "the ball travelled 90 mph on his serve"; "the mayor threw out the first ball"; "the ball rolled into the corner pocket" -02779435 06 n 01 ball 2 003 @ 03964744 n 0000 ~ 02814224 n 0000 ~ 04251560 n 0000 | a spherical object used as a plaything; "he played with his rubber ball in the bathtub" -02779609 06 n 01 ball_and_chain 0 001 @ 04181228 n 0000 | heavy iron ball attached to a prisoner by a chain -02779719 06 n 01 ball-and-socket_joint 0 002 @ 03600977 n 0000 %p 04255163 n 0000 | a joint that can rotate within a socket -02779845 06 n 01 ballast 0 002 @ 14580897 n 0000 + 00271403 v 0101 | any heavy material used to stabilize a ship or airship -02779971 06 n 02 ballast 1 light_ballast 0 001 @ 03269401 n 0000 | an electrical device for starting and regulating fluorescent and discharge lamps -02780121 06 n 03 ballast_resistor 0 ballast 2 barretter 0 001 @ 04079933 n 0000 | a resistor inserted into a circuit to compensate for changes (as those arising from temperature fluctuations) -02780315 06 n 03 ball_bearing 0 needle_bearing 0 roller_bearing 0 001 @ 02817031 n 0000 | bearings containing small metal balls -02780445 06 n 01 ball_cartridge 0 001 @ 02971691 n 0000 | a general purpose cartridge having a primer and a ball and a full charge of powder -02780588 06 n 02 ballcock 0 ball_cock 0 001 @ 04072193 n 0000 | floating ball that controls level in a water tank -02780704 06 n 01 balldress 0 002 @ 03384891 n 0000 ;r 08871007 n 0000 | a suit or dress for formal occasions -02780815 06 n 02 ballet_skirt 0 tutu 0 001 @ 04230808 n 0000 | very short skirt worn by ballerinas -02780916 06 n 03 ball_field 0 baseball_field 0 diamond 2 006 @ 08570758 n 0000 #p 02782778 n 0000 %p 02799593 n 0000 %p 02884607 n 0000 %p 03859717 n 0000 %p 08572726 n 0000 | the baseball playing field -02781121 06 n 01 ball_gown 0 001 @ 03450230 n 0000 | the most formal gown; worn to a ball -02781213 06 n 01 ballistic_galvanometer 0 001 @ 03796181 n 0000 | a moving-coil galvanometer that measures electric charge -02781338 06 n 01 ballistic_missile 0 002 @ 03773504 n 0000 ~ 03578251 n 0000 | a missile that is guided in the first part of its flight but falls freely as it approaches target -02781517 06 n 01 ballistic_pendulum 0 002 @ 03927792 n 0000 ~ 03470005 n 0000 | a physical pendulum consisting of a large mass suspended from a rod; when it is struck by a projectile its displacement is used to measure the projectile's velocity -02781764 06 n 02 ballistocardiograph 0 cardiograph 1 002 @ 03739693 n 0000 #p 02962938 n 0000 | a medical instrument that measures the mechanical force of cardiac contractions and the amount of blood passing through the heart during a specified period by measuring the recoil of the body as blood is pumped from the ventricles -02782093 06 n 01 balloon 0 008 @ 03666917 n 0000 + 09835348 n 0101 + 01948659 v 0101 %p 03291963 n 0000 ~ 03541923 n 0000 ~ 03752922 n 0000 %p 04094060 n 0000 ~ 04480527 n 0000 | large tough nonrigid bag filled with gas or heated air -02782329 06 n 01 balloon 1 001 @ 03964744 n 0000 | small thin inflatable rubber bag with narrow neck -02782432 06 n 02 balloon_bomb 0 Fugo 0 001 @ 02866578 n 0000 | a bomb carried by a balloon; "In World War II the Japanese launched balloon bombs against North America" -02782602 06 n 01 balloon_sail 0 001 @ 04127904 n 0000 | any light loose sail -02782681 06 n 01 ballot_box 0 001 @ 02883344 n 0000 | a box where voters deposit their ballots -02782778 06 n 02 ballpark 0 park 0 006 @ 04295881 n 0000 ;c 00471613 n 0000 %p 02780916 n 0000 %p 02917964 n 0000 %p 03254189 n 0000 %p 04300741 n 0000 | a facility in which ball games are played (especially baseball games); "take me out to the ballpark" -02783035 06 n 01 ball-peen_hammer 0 001 @ 03481172 n 0000 | a hammer with one round and one flat end; used in working metal -02783161 06 n 04 ballpoint 0 ballpoint_pen 0 ballpen 0 Biro 0 001 @ 03906997 n 0000 | a pen that has a small metal ball as the point of transfer of ink to paper -02783324 06 n 03 ballroom 0 dance_hall 0 dance_palace 0 002 @ 04105893 n 0000 ~ 03206282 n 0000 | large room used mainly for dancing -02783459 06 n 01 ball_valve 0 001 @ 04519153 n 0000 | any valve that checks flow by the seating of a ball -02783567 06 n 02 Balmoral 0 bluebonnet 0 001 @ 02954340 n 0000 | a brimless dark blue Scottish cap with a flat top and a plume on one side -02783708 06 n 01 balmoral 1 001 @ 04199027 n 0000 | a sturdy laced walking shoe -02783790 06 n 01 balsam 0 002 @ 03845550 n 0000 + 02658412 a 0101 | an ointment containing a fragrant resin -02783900 06 n 02 balsa_raft 0 Kon_Tiki 0 001 @ 04045397 n 0000 | a light raft made of balsa -02783994 06 n 01 baluster 0 002 @ 04359589 n 0000 #p 02788148 n 0000 | one of a number of closely spaced supports for a railing -02784124 06 n 01 banana_boat 0 001 @ 02965300 n 0000 | a ship designed to transport bananas -02784218 06 n 01 band 0 020 @ 04339291 n 0000 ~ 02738449 n 0000 ~ 02739427 n 0000 ~ 02767815 n 0000 ~ 02827148 n 0000 ~ 03068181 n 0000 ~ 03068486 n 0000 ~ 03421117 n 0000 ~ 03438071 n 0000 ~ 03502042 n 0000 ~ 03506028 n 0000 ~ 03533972 n 0000 ~ 04116098 n 0000 ~ 04333500 n 0000 ~ 04369618 n 0000 ~ 04369732 n 0000 ~ 04556204 n 0000 ~ 04570680 n 0000 ~ 04607398 n 0000 ~ 04607532 n 0000 | a thin flat strip of flexible material that is worn around the body or one of the limbs (especially to decorate the body) -02784732 06 n 03 band 1 banding 0 stripe 0 008 @ 02681518 n 0000 #p 03419014 n 0000 + 01790807 a 0302 + 01273263 v 0301 ~ 03030262 n 0000 ~ 03498316 n 0000 ~ 03814528 n 0000 ~ 03943714 n 0000 | an adornment consisting of a strip of a contrasting color or material -02784998 06 n 01 band 2 006 @ 04081844 n 0000 + 01304342 v 0101 ~ 02889856 n 0000 ~ 03069919 n 0000 ~ 03665232 n 0000 ~ 04596397 n 0000 | a restraint put around something to hold it together -02785191 06 n 02 band 4 ring 1 002 @ 04339291 n 0000 + 01297401 v 0201 | a strip of material attached to the leg of a bird to identify it (as in studies of bird migration) -02785365 06 n 01 band 5 002 @ 04339291 n 0000 @ 13875571 n 0000 | a thin flat strip or loop of flexible material that goes around or over something else, typically to hold it together or as a decoration -02785570 06 n 01 band 6 001 @ 02827883 n 0000 | a driving belt in machinery -02785648 06 n 02 bandage 0 patch 4 016 @ 03237639 n 0000 + 00083124 v 0101 ~ 02680110 n 0000 ~ 02955944 n 0000 ~ 02979836 n 0000 ~ 03082656 n 0000 ~ 03267821 n 0000 ~ 03389353 n 0000 %p 03430091 n 0000 ~ 03562565 n 0000 ~ 03838748 n 0000 ~ 04101860 n 0000 ~ 04239436 n 0000 ~ 04366832 n 0000 ~ 04369025 n 0000 ~ 04492585 n 0000 | a piece of soft material that covers and protects an injured part of the body -02786058 06 n 01 Band_Aid 0 002 @ 02680110 n 0000 ;u 06851742 n 0000 | trade name for an adhesive bandage to cover small cuts or blisters -02786198 06 n 02 bandanna 0 bandana 0 001 @ 03485794 n 0000 | large and brightly colored handkerchief; often used as a neckerchief -02786331 06 n 01 bandbox 0 001 @ 02883344 n 0000 | a light cylindrical box for holding light articles of attire (especially hats) -02786463 06 n 01 banderilla 0 001 @ 03162818 n 0000 | a decorated dart that is implanted in the neck or shoulders of the bull during a bull fight -02786611 06 n 02 bandoleer 0 bandolier 0 001 @ 02972397 n 0000 | a broad cartridge belt worn over the shoulder by soldiers -02786736 06 n 01 bandoneon 0 001 @ 03086670 n 0000 | a type of concertina popular in South America -02786837 06 n 02 bandsaw 0 band_saw 0 001 @ 03996145 n 0000 | an endless saw consisting of a toothed metal band that is driven around two wheels -02786984 06 n 03 bandstand 0 outdoor_stage 0 stand 2 001 @ 03961939 n 0000 | a platform where a (brass) band can play in the open air -02787120 06 n 01 bandwagon 0 001 @ 04543158 n 0000 | a large ornate wagon for carrying a musical band; "the gaudy bandwagon led the circus parade" -02787269 06 n 01 bangalore_torpedo 0 001 @ 04456472 n 0000 | a metal pipe filled with explosive, used to detonate land mines or to clear a path through barbed wire -02787435 06 n 07 bangle 0 bauble 0 gaud 0 gewgaw 0 novelty 0 fallal 0 trinket 0 003 @ 02681518 n 0000 #m 08464324 n 0000 + 02393791 a 0306 | cheap showy jewelry or ornament on clothing -02787622 06 n 01 banjo 0 002 @ 04338517 n 0000 %p 03341297 n 0000 | a stringed instrument of the guitar family that has long neck and circular body -02787772 06 n 02 bank 0 bank_building 0 005 @ 03177349 n 0000 + 02343374 v 0101 + 02343056 v 0101 + 02310855 v 0102 %p 04523831 n 0000 | a building in which the business of banking transacted; "the bank is on the corner of Nassau and Witherspoon" -02788021 06 n 02 banner 0 streamer 0 001 @ 03354903 n 0000 | long strip of cloth or paper used for decoration or advertising -02788148 06 n 05 bannister 0 banister 0 balustrade 0 balusters 0 handrail 0 004 @ 02796623 n 0000 #p 02777734 n 0000 %p 02783994 n 0000 %p 04047401 n 0000 | a railing at the side of a staircase or balcony to prevent people from falling -02788386 06 n 01 banquette 0 001 @ 02828884 n 0000 | an upholstered bench -02788462 06 n 02 banyan 0 banian 0 001 @ 03589791 n 0000 | a loose fitting jacket; originally worn in India -02788572 06 n 04 baptismal_font 0 baptistry 0 baptistery 0 font 0 001 @ 02801525 n 0000 | bowl for baptismal water -02788689 06 n 01 bar 0 023 @ 03563967 n 0000 + 01342910 v 0101 ~ 02824152 n 0000 ~ 02865931 n 0000 ~ 02866106 n 0000 ~ 02966786 n 0000 ~ 03019198 n 0000 ~ 03107716 n 0000 ~ 03135917 n 0000 ~ 03233624 n 0000 ~ 03396074 n 0000 ~ 03451120 n 0000 ~ 03487090 n 0000 ~ 03488784 n 0000 ~ 03510487 n 0000 ~ 03659292 n 0000 ~ 04046590 n 0000 ~ 04112147 n 0000 ~ 04181561 n 0000 ~ 04237174 n 0000 ~ 04294614 n 0000 ~ 04459909 n 0000 ~ 04463679 n 0000 | a rigid piece of metal or wood; usually used as a fastening or obstruction or weapon; "there were bars in the windows to prevent escape" -02789271 06 n 01 bar 2 004 @ 03839993 n 0000 #p 03442756 n 0000 + 01342910 v 0101 + 01478002 v 0107 | an obstruction (usually metal) placed at the top of a goal; "it was an excellent kick but the ball hit the bar" -02789487 06 n 01 bar 5 009 @ 03116530 n 0000 ~ 02976815 n 0000 ~ 03869838 n 0000 ~ 04130143 n 0000 ~ 04247736 n 0000 ~ 04255768 n 0000 ~ 04366033 n 0000 ~ 04573513 n 0000 ~ 04591631 n 0000 | a counter where you can obtain food or drink; "he bought a hot dog and a coke at the bar" -02789770 06 n 01 bar 7 003 @ 04047401 n 0000 #p 03120778 n 0000 ;c 08441203 n 0000 | (law) a railing that encloses the part of the courtroom where the judges and lawyers sit and the case is tried; "spectators were not allowed past the bar" -02790012 06 n 01 bar 8 002 @ 03508628 n 0000 ;r 08860123 n 0000 | a heating element in an electric fire; "an electric fire with three bars" -02790154 06 n 01 bar 9 003 @ 04359589 n 0000 #p 03535780 n 0000 #p 03888605 n 0000 | a horizontal rod that serves as a support for gymnasts as they perform exercises -02790322 06 n 01 barb 0 005 @ 03974215 n 0000 #p 03532342 n 0000 #p 02743050 n 0000 #p 04270891 n 0000 ~ 03369767 n 0000 | a subsidiary point facing opposite from the main point that makes an arrowhead or spear hard to remove -02790550 06 n 01 barb 1 003 @ 03974215 n 0000 #p 02790823 n 0000 + 01339181 v 0101 | the pointed part of barbed wire -02790669 06 n 02 barbecue 0 barbeque 0 002 @ 04038727 n 0000 + 00324806 v 0102 | a rack to hold meat for cooking over hot charcoal usually out of doors -02790823 06 n 02 barbed_wire 0 barbwire 0 003 @ 04594218 n 0000 %p 02790550 n 0000 ~ 03086868 n 0000 | strong wire with barbs at regular intervals used to prevent passage -02790996 06 n 01 barbell 0 001 @ 04571292 n 0000 | a bar to which heavy discs are attached at each end; used in weightlifting -02791124 06 n 01 barber_chair 0 002 @ 03001627 n 0000 #p 02791270 n 0000 | a large fixed adjustable chair in which barbers seat their customers -02791270 06 n 01 barbershop 0 002 @ 04202417 n 0000 %p 02791124 n 0000 | a shop where men can get their hair cut -02791385 06 n 01 barbette 0 001 @ 03792048 n 0000 | (formerly) a mound of earth inside a fort from which heavy gun can be fired over the parapet -02791532 06 n 01 barbette_carriage 0 001 @ 03468696 n 0000 | a gun carriage elevated so that the gun can be fired over the parapet -02791665 06 n 02 barbican 0 barbacan 0 001 @ 04460130 n 0000 | a tower that is part of a defensive structure (such as a castle) -02791795 06 n 01 bar_bit 0 001 @ 02844714 n 0000 | a bit for horses that is a solid bar of metal -02791894 06 n 05 barbital 0 veronal 0 barbitone 0 diethylbarbituric_acid 0 diethylmalonylurea 0 001 @ 02792049 n 0000 | a barbiturate used as a hypnotic -02792049 06 n 01 barbiturate 0 008 @ 04166841 n 0000 ~ 02703499 n 0000 ~ 02791894 n 0000 ~ 03747508 n 0000 ~ 03913129 n 0000 ~ 04163740 n 0000 ~ 04256152 n 0000 ~ 04424936 n 0000 | organic compound having powerful soporific effect; overdose can be fatal -02792305 06 n 01 bard 0 002 @ 02955540 n 0000 + 01670315 v 0102 | an ornamental caparison for a horse -02792409 06 n 01 bareboat 0 001 @ 04530566 n 0000 | a vessel (such as a yacht) that can be chartered without a captain or crew or provisions -02792552 06 n 04 barge 0 flatboat 0 hoy 0 lighter 1 008 @ 02858304 n 0000 + 01954852 v 0401 + 01950502 v 0101 ~ 03236423 n 0000 ~ 03545470 n 0000 ~ 03981566 n 0000 ~ 04150273 n 0000 ~ 04577293 n 0000 | a flatbottom boat for carrying heavy loads (especially on canals) -02792822 06 n 02 bargello 0 flame_stitch 0 001 @ 04180314 n 0000 | needlepoint embroidery stitch that produces zigzag lines -02792948 06 n 01 barge_pole 0 001 @ 03976657 n 0000 | a long pole used to propel or guide a barge; "I wouldn't touch it with a barge pole" -02793089 06 n 02 baritone 0 baritone_horn 0 001 @ 02891788 n 0000 | the second lowest brass wind instrument -02793199 06 n 02 bark 0 barque 0 001 @ 04128837 n 0000 | a sailing ship with 3 (or more) masts -02793296 06 n 01 bar_magnet 0 001 @ 03705379 n 0000 | a magnet in the form of a bar with magnetic poles at each end -02793414 06 n 01 bar_mask 0 001 @ 02983189 n 0000 | a catcher's mask with bars -02793495 06 n 01 barn 0 004 @ 03322570 n 0000 ~ 03123809 n 0000 %p 03500557 n 0000 ~ 04441662 n 0000 | an outlying farm building for storing grain or animal feed and housing farm animals -02793684 06 n 01 barndoor 0 001 @ 03357376 n 0000 | an opaque adjustable flap on a lamp fixture; used in photography to cut off light from particular areas -02793842 06 n 01 barn_door 0 001 @ 04239074 n 0000 | the large sliding door of a barn -02793930 06 n 01 barnyard 0 001 @ 04610503 n 0000 | a yard adjoining a barn -02794008 06 n 01 barograph 0 001 @ 02794156 n 0000 | a recording barometer; automatically records on paper the variations in atmospheric pressure -02794156 06 n 01 barometer 0 007 @ 03733925 n 0000 + 02658835 a 0101 + 02658835 a 0102 ~ 02710600 n 0000 ~ 02794008 n 0000 ~ 03749504 n 0000 ~ 04567098 n 0000 | an instrument that measures atmospheric pressure -02794368 06 n 01 barong 0 001 @ 03623556 n 0000 | a knife resembling a cleaver; used in the Philippines -02794474 06 n 01 barouche 0 001 @ 02968473 n 0000 | a horse-drawn carriage having four wheels; has an outside seat for the driver and facing inside seats for two couples and a folding top -02794664 06 n 01 bar_printer 0 001 @ 03563200 n 0000 | an impact printer that uses a bar to carry the type slugs -02794779 06 n 01 barrack 0 005 @ 03763727 n 0000 ;c 08199025 n 0000 + 02651745 v 0101 ~ 02976552 n 0000 %p 04290945 n 0000 | a building or group of buildings used to house military personnel -02794972 06 n 01 barrage_balloon 0 002 @ 02692877 n 0000 ~ 03621694 n 0000 | an elongated tethered balloon or blimp with cables or net suspended from it to deter enemy planes that are flying low -02795169 06 n 02 barrel 0 cask 0 015 @ 04531098 n 0000 + 01502540 v 0101 ~ 02823335 n 0000 %p 02895881 n 0000 %p 02919648 n 0000 ~ 02927608 n 0000 ~ 03524976 n 0000 %p 03533972 n 0000 ~ 03610418 n 0000 ~ 03930515 n 0000 ~ 04201618 n 0000 %p 04307269 n 0000 %p 04390977 n 0000 ~ 04497442 n 0000 ~ 04592005 n 0000 | a cylindrical container that holds liquids -02795528 06 n 02 barrel 1 gun_barrel 0 002 @ 04493505 n 0000 #p 03467984 n 0000 | a tube through which a bullet travels when a gun is fired -02795670 06 n 02 barrelhouse 0 honky-tonk 0 001 @ 02796995 n 0000 | a cheap drinking and dancing establishment -02795783 06 n 02 barrel_knot 0 blood_knot 0 001 @ 03627232 n 0000 | a knot used for tying fishing leaders together; the ends of the two leaders are wrapped around each other two or three times -02795978 06 n 06 barrel_organ 0 grind_organ 0 hand_organ 0 hurdy_gurdy 0 hurdy-gurdy 0 street_organ 0 002 @ 03800933 n 0000 ;c 07020895 n 0000 | a musical instrument that makes music by rotation of a cylinder studded with pegs -02796207 06 n 01 barrel_vault 0 001 @ 04523525 n 0000 | the simplest form of vault; a single continuous arch -02796318 06 n 01 barrette 0 001 @ 03940256 n 0000 | a pin for holding women's hair in place -02796412 06 n 01 barricade 1 004 @ 02796623 n 0000 + 01127075 v 0101 + 01127215 v 0101 + 01478002 v 0101 | a barrier (usually thrown up hastily) to impede the advance of an enemy; "they stormed the barricade" -02796623 06 n 01 barrier 0 016 @ 03839993 n 0000 ~ 02788148 n 0000 ~ 02796412 n 0000 ~ 02894605 n 0000 ~ 02918330 n 0000 ~ 03127531 n 0000 ~ 03160309 n 0000 ~ 03327234 n 0000 ~ 03327841 n 0000 ~ 03454707 n 0000 ~ 03549589 n 0000 ~ 03795580 n 0000 ~ 04047401 n 0000 ~ 04086066 n 0000 ~ 04096848 n 0000 ~ 04304680 n 0000 | a structure or object that impedes free movement -02796995 06 n 05 barroom 0 bar 4 saloon 0 ginmill 0 taproom 0 006 @ 04105893 n 0000 #p 04018399 n 0000 ~ 02795670 n 0000 ~ 03062122 n 0000 ~ 04140434 n 0000 ~ 04270276 n 0000 | a room or establishment where alcoholic drinks are served over a counter; "he drowned his sorrows in whiskey at the bar" -02797295 06 n 04 barrow 1 garden_cart 0 lawn_cart 0 wheelbarrow 0 001 @ 03484083 n 0000 | a cart for carrying small loads; has handles and one or more wheels -02797455 06 n 01 bar_soap 0 001 @ 04253437 n 0000 | soap in the form of a bar -02797535 06 n 01 bascule 0 001 @ 04341686 n 0000 | a structure or device in which one end is counterbalanced by the other (on the principle of the seesaw) -02797692 06 n 03 base 0 pedestal 0 stand 0 005 @ 04359589 n 0000 ~ 02893148 n 0000 ~ 04295777 n 0000 ~ 04486213 n 0000 ~ 04486322 n 0000 | a support or foundation; "the base of the lamp" -02797881 06 n 02 base 2 bag 3 006 @ 02799897 n 0000 #p 02799593 n 0000 ~ 03349771 n 0000 ~ 03528901 n 0000 ~ 04164406 n 0000 ~ 04425804 n 0000 | a place that the runner must touch before scoring; "he scrambled to get back to the bag" -02798117 06 n 01 base 3 003 @ 03274796 n 0000 #p 04471632 n 0000 ;c 06099269 n 0000 | (electronics) the part of a transistor that separates the emitter from the collector -02798290 06 n 02 base 4 base_of_operations 0 007 @ 03763133 n 0000 ;c 08199025 n 0000 ~ 02685585 n 0000 ~ 02741587 n 0000 ~ 03344205 n 0000 ~ 03813612 n 0000 ~ 04099649 n 0000 | installation from which a military force initiates operations; "the attack wiped out our forward bases" -02798574 06 n 01 base 5 004 @ 08511241 n 0000 #p 04531098 n 0000 #p 02883344 n 0000 #p 03636649 n 0000 | a flat bottom on which something is intended to sit; "a tub should sit on its own base" -02798769 06 n 01 base 7 002 @ 03570709 n 0000 + 01200068 v 0102 | the principal ingredient of a mixture; "glycerinated gelatin is used as a base for many ointments"; "he told the painter that he wanted a yellow base with just a hint of green"; "everything she cooked seemed to have rice as the base" -02799071 06 n 01 baseball 0 002 @ 02778669 n 0000 @ 02799897 n 0000 | a ball used in playing baseball -02799175 06 n 02 baseball_bat 0 lumber 0 003 @ 02806379 n 0000 @ 02799897 n 0000 %p 03485997 n 0000 | an implement used in baseball by the batter -02799323 06 n 03 baseball_cap 0 jockey_cap 0 golf_cap 0 002 @ 02954340 n 0000 %p 02838728 n 0000 | a cap with a bill -02799442 06 n 01 baseball_card 0 001 @ 04465795 n 0000 | a trading card with a picture of a baseball player and information about his playing record -02799593 06 n 03 baseball_diamond 0 diamond 0 infield 0 009 @ 08673395 n 0000 #p 02780916 n 0000 ;c 00471613 n 0000 + 10205457 n 0301 ! 03859717 n 0301 %p 02797881 n 0000 %p 02810270 n 0000 %p 03792334 n 0000 %p 04204619 n 0000 | the area of a baseball field that is enclosed by 3 bases and home plate -02799897 06 n 01 baseball_equipment 0 013 @ 04285146 n 0000 ;c 00471613 n 0000 ~ 02797881 n 0000 ~ 02799071 n 0000 ~ 02799175 n 0000 ~ 02800213 n 0000 ~ 02811059 n 0000 ~ 02811204 n 0000 ~ 02811350 n 0000 ~ 02983189 n 0000 ~ 03792334 n 0000 ~ 03942397 n 0000 ~ 04110281 n 0000 | equipment used in playing baseball -02800213 06 n 04 baseball_glove 0 glove 1 baseball_mitt 0 mitt 0 001 @ 02799897 n 0000 | the handwear used by fielders in playing baseball -02800354 06 n 03 baseboard 0 mopboard 0 skirting_board 0 001 @ 03780392 n 0000 | a molding covering the joint formed by a wall and the floor -02800497 06 n 02 basement 0 cellar 0 002 @ 03365991 n 0000 ~ 02991950 n 0000 | the lowermost portion of a structure partly or wholly below ground level; often used for storage -02800675 06 n 01 basement 1 001 @ 04360501 n 0000 | the ground floor facade or interior in Renaissance architecture -02800793 06 n 02 basic 0 staple 0 002 @ 03076708 n 0000 ;u 06295235 n 0000 | (usually plural) a necessary commodity for which demand is constant -02800940 06 n 01 basic_point_defense_missile_system 0 001 @ 04196080 n 0000 | a shipboard missile system -02801047 06 n 02 basilica 1 Roman_basilica 0 002 @ 04104500 n 0000 + 02659931 a 0101 | a Roman building used for public administration -02801184 06 n 01 basilica 2 003 @ 03028079 n 0000 + 02659931 a 0101 %p 03809802 n 0000 | an early Christian church designed like a Roman basilica; or a Roman Catholic church or cathedral accorded certain privileges; "the church was raised to the rank of basilica" -02801450 06 n 01 basilisk 0 001 @ 02950256 n 0000 | ancient brass cannon -02801525 06 n 01 basin 0 009 @ 04531098 n 0000 ~ 02748359 n 0000 ~ 02788572 n 0000 ~ 02836174 n 0000 ~ 02843158 n 0000 ~ 03283413 n 0000 ~ 03649288 n 0000 ~ 04330109 n 0000 ~ 04553703 n 0000 | a bowl-shaped vessel; usually used for holding food or liquids; "she mixed the dough in a large basin" -02801823 06 n 01 basinet 0 003 @ 03513376 n 0000 #p 02862048 n 0000 %p 02941845 n 0000 | a medieval steel helmet -02801938 06 n 02 basket 0 handbasket 0 010 @ 03094503 n 0000 ~ 02893608 n 0000 ~ 02925009 n 0000 ~ 03129848 n 0000 ~ 03390673 n 0000 ~ 03482405 n 0000 ~ 04024862 n 0000 ~ 04204238 n 0000 ~ 04227050 n 0000 ~ 04582349 n 0000 | a container that is usually woven and has handles -02802215 06 n 03 basket 1 basketball_hoop 0 hoop 3 003 @ 03442756 n 0000 @ 02802721 n 0000 + 09842047 n 0102 | horizontal circular metal hoop supporting a net through which players try to throw the basketball -02802426 06 n 01 basketball 0 002 @ 02778669 n 0000 @ 02802721 n 0000 | an inflated ball used in playing basketball -02802544 06 n 01 basketball_court 0 005 @ 03120491 n 0000 ;c 00480993 n 0000 %p 03393534 n 0000 ~ 03528622 n 0000 %p 08590909 n 0000 | the court on which basketball is played -02802721 06 n 01 basketball_equipment 0 004 @ 04285146 n 0000 ;c 00480993 n 0000 ~ 02802215 n 0000 ~ 02802426 n 0000 | sports equipment used in playing basketball -02802886 06 n 01 basket_hilt 0 001 @ 03520654 n 0000 | a hilt with a basket-shaped guard for the hand -02802990 06 n 01 basket_weave 0 001 @ 03309808 n 0000 | a cloth woven of two or more threads interlaced to suggest the weave of a basket -02803129 06 n 04 bas_relief 0 low_relief 0 basso_relievo 0 basso_rilievo 0 002 @ 04073669 n 0000 ! 02700422 n 0203 | a sculptural relief in which forms extend only slightly from the background; no figures are undercut -02803349 06 n 01 bass 2 005 @ 03800933 n 0000 ~ 02803934 n 0000 ~ 02804123 n 0000 ~ 02804252 n 0000 ~ 02867267 n 0000 | the member with the lowest range of a family of musical instruments -02803539 06 n 01 bass_clarinet 0 001 @ 03037709 n 0000 | a large clarinet whose range is an octave below the B-flat clarinet -02803666 06 n 02 bass_drum 0 gran_casa 0 001 @ 03249569 n 0000 | a large drum with two heads; makes a sound of indefinite but very low pitch -02803809 06 n 01 basset_horn 0 001 @ 03037709 n 0000 | a tenor clarinet; pitched in the key of F below the B-flat clarinet -02803934 06 n 06 bass_fiddle 0 bass_viol 1 bull_fiddle 0 double_bass 0 contrabass 0 string_bass 0 002 @ 02880546 n 0000 @ 02803349 n 0000 | largest and lowest member of the violin family -02804123 06 n 01 bass_guitar 0 002 @ 03467517 n 0000 @ 02803349 n 0000 | the guitar with six strings that has the lowest pitch -02804252 06 n 03 bass_horn 0 sousaphone 0 tuba 0 004 @ 02891788 n 0000 @ 02803349 n 0000 ~ 03301568 n 0000 ~ 03512030 n 0000 | the lowest brass wind instrument -02804414 06 n 01 bassinet 0 001 @ 02766320 n 0000 | a basket (usually hooded) used as a baby's bed -02804515 06 n 01 bassinet 1 001 @ 02766534 n 0000 | a perambulator that resembles a bassinet -02804610 06 n 01 bassoon 0 004 @ 03228016 n 0000 + 09842716 n 0101 ~ 03096439 n 0000 ~ 04410365 n 0000 | a double-reed instrument; the tenor of the oboe family -02804772 06 n 02 bastard 0 mongrel 0 006 @ 04521699 n 0000 + 01429663 v 0201 + 01117477 a 0105 + 00905039 a 0101 + 02580853 v 0101 + 02580853 v 0102 | derogatory term for a variation that is not genuine; something irregular or inferior or of dubious origin; "the architecture was a kind of bastard suggesting Gothic but not true Gothic" -02805111 06 n 04 baste 0 basting 0 basting_stitch 0 tacking 0 002 @ 04180314 n 0000 + 01331348 v 0101 | a loose temporary sewing stitch to hold layers of fabric together -02805283 06 n 01 baster 0 001 @ 03101986 n 0000 | a tube with a rubber bulb used to take up and release melted fat or gravy in order to moisten roasting meat -02805443 06 n 01 bastille 0 002 @ 03592245 n 0000 @ 04005630 n 0000 | a jail or prison (especially one that is run in a tyrannical manner) -02805584 06 n 01 Bastille 1 003 @i 03386011 n 0000 #p 08932568 n 0000 ;r 08929922 n 0000 | a fortress built in Paris in the 14th century and used as a prison in the 17th and 18th centuries; it was destroyed July 14, 1789 at the start of the French Revolution -02805845 06 n 01 bastinado 0 002 @ 03145384 n 0000 + 01399921 v 0101 | a cudgel used to give someone a beating on the soles of the feet -02805983 06 n 01 bastion 0 001 @ 03385557 n 0000 | projecting part of a rampart or other fortification -02806088 06 n 02 bastion 1 citadel 0 004 @ 04340935 n 0000 ~ 02676938 n 0000 ~ 03628511 n 0000 ~i 03628590 n 0000 | a stronghold into which people could go for shelter during a battle -02806274 06 n 01 basuco 0 001 @ 03060294 n 0000 | low-grade cocaine mixed with coca paste and cannabis -02806379 06 n 01 bat 0 004 @ 03053474 n 0000 + 01413173 v 0101 ~ 02799175 n 0000 ~ 03873848 n 0000 | a club used for hitting a ball in various games -02806530 06 n 01 bath 2 001 @ 04531098 n 0000 | a vessel containing liquid in which something is immersed (as to process it or to maintain it at a constant temperature or to lubricate it); "she soaked the etching in an acid bath" -02806762 06 n 01 bath_chair 0 001 @ 04576002 n 0000 | a wheelchair usually pushed by an attendant, as at a spa -02806875 06 n 02 bathhouse 0 bagnio 1 002 @ 03545150 n 0000 ~ 04350235 n 0000 | a building containing public baths -02806992 06 n 02 bathhouse 1 bathing_machine 0 002 @ 02913152 n 0000 %p 03238131 n 0000 | a building containing dressing rooms for bathers -02807133 06 n 02 bathing_cap 0 swimming_cap 0 001 @ 02954340 n 0000 | a tight-fitting cap that keeps hair dry while swimming -02807260 06 n 01 bath_linen 0 004 @ 03672352 n 0000 ~ 02807401 n 0000 ~ 02808304 n 0000 ~ 04554523 n 0000 | linens for use in the bathroom -02807401 06 n 01 bath_mat 0 001 @ 02807260 n 0000 | a heavy towel or mat to stand on while drying yourself after a bath -02807523 06 n 01 bath_oil 0 001 @ 04447443 n 0000 | a scented oil added to your bath water -02807616 06 n 01 bathrobe 0 001 @ 04097866 n 0000 | a loose-fitting robe of towelling; worn after a bath or swim -02807731 06 n 02 bathroom 0 bath 1 007 @ 04105893 n 0000 #p 03259505 n 0000 + 00037919 v 0202 %p 02808440 n 0000 %p 04209613 n 0000 %p 04446521 n 0000 %p 04553703 n 0000 | a room (as in a residence) containing a bathtub or shower and usually a washbasin and toilet -02807998 06 n 01 bathroom_cleaner 0 001 @ 03040587 n 0000 | a preparation for cleaning bathrooms -02808097 06 n 01 bathroom_fixture 0 001 @ 03354613 n 0000 | any fixture in a bathroom -02808185 06 n 01 bath_salts 0 002 @ 04447443 n 0000 ;u 06295235 n 0000 | a preparation that softens or scents a bath -02808304 06 n 01 bath_towel 0 003 @ 04459362 n 0000 @ 02807260 n 0000 ~ 04499446 n 0000 | a large towel; to dry yourself after a bath -02808440 06 n 04 bathtub 0 bathing_tub 0 bath 0 tub 1 006 @ 04531098 n 0000 #p 02807731 n 0000 + 00037919 v 0302 ~ 03379343 n 0000 ~ 03543603 n 0000 ~ 04225031 n 0000 | a relatively large open container that you fill with water and use to wash the body -02808695 06 n 02 bathymeter 0 bathometer 0 002 @ 03733925 n 0000 + 02660337 a 0102 | an instrument that measures the depth of water -02808829 06 n 03 bathyscaphe 0 bathyscaph 0 bathyscape 0 001 @ 04348359 n 0000 | navigable deep diving vessel for underwater exploration -02808968 06 n 01 bathysphere 0 001 @ 04348359 n 0000 | spherical deep diving apparatus (lowered by a cable) for underwater exploration -02809105 06 n 01 batik 0 002 @ 03309808 n 0000 + 00288814 v 0101 | a dyed fabric; a removable wax is used where the dye is not wanted -02809241 06 n 01 batiste 0 001 @ 03309808 n 0000 | a thin plain-weave cotton or linen fabric; used for shirts or dresses -02809364 06 n 02 baton 0 wand 1 001 @ 04100174 n 0000 | a thin tapered rod used by a conductor to lead an orchestra or choir -02809491 06 n 01 baton 1 001 @ 04285622 n 0000 | a hollow cylinder passed from runner to runner in a relay race -02809605 06 n 01 baton 2 001 @ 04100174 n 0000 | a hollow metal rod that is wielded or twirled by a drum major or drum majorette -02809736 06 n 01 baton 3 001 @ 04296261 n 0000 | a short staff carried by some officials to symbolize an office or an authority -02809866 06 n 01 Baton_Rouge_Bridge 1 002 @i 02953197 n 0000 #p 09091398 n 0000 | a cantilever bridge across the Mississippi at Baton Rouge -02810008 06 n 01 batten 0 003 @ 04339638 n 0000 + 01306425 v 0101 + 01306292 v 0101 | a strip fixed to something to hold it firm -02810139 06 n 01 battering_ram 0 002 @ 04050410 n 0000 @ 03288003 n 0000 | a ram used to break down doors of fortified buildings -02810270 06 n 01 batter's_box 0 002 @ 02884607 n 0000 #p 02799593 n 0000 | an area on a baseball diamond (on either side of home plate) marked by lines within which the batter must stand when at bat -02810471 06 n 02 battery 0 electric_battery 0 008 @ 03269401 n 0000 ~ 02666624 n 0000 ~ 02813981 n 0000 ~ 02987950 n 0000 %p 03274796 n 0000 %p 04413151 n 0000 ~ 04540547 n 0000 ~ 04541136 n 0000 | a device that produces electricity; may have several primary or secondary cells arranged in parallel or series -02810782 06 n 02 battery 3 stamp_battery 0 002 @ 04300358 n 0000 %p 04300080 n 0000 | a series of stamps operated in one mortar for crushing ores -02810930 06 n 02 batting 0 batten 1 001 @ 04345458 n 0000 | stuffing made of rolls or sheets of cotton wool or synthetic fiber -02811059 06 n 02 batting_cage 0 cage 2 001 @ 02799897 n 0000 | a movable screen placed behind home base to catch balls during batting practice -02811204 06 n 01 batting_glove 0 002 @ 03441112 n 0000 @ 02799897 n 0000 | a glove worn by batters in baseball to give a firmer grip on the bat -02811350 06 n 01 batting_helmet 0 002 @ 03513137 n 0000 @ 02799897 n 0000 | a helmet worn by the batter in baseball -02811468 06 n 02 battle-ax 0 battle-axe 0 004 @ 02903006 n 0000 #p 03477410 n 0000 ~ 03682380 n 0000 ~ 03977266 n 0000 | a broadax used as a weapon -02811618 06 n 01 battle_cruiser 0 001 @ 03140900 n 0000 | a cruiser of maximum speed and firepower -02811719 06 n 01 battle_dress 0 002 @ 03763968 n 0000 ;c 08199025 n 0000 | a military uniform designed for field service -02811842 06 n 01 battle_flag 0 001 @ 03354903 n 0000 | a flag that leads troops into battle -02811936 06 n 03 battlement 0 crenelation 0 crenellation 0 006 @ 04051825 n 0000 #p 03386011 n 0000 + 02335629 v 0303 + 02335629 v 0202 %p 03130340 n 0000 %p 03750614 n 0000 | a rampart built around the top of a castle with regular gaps for firing arrows or guns -02812201 06 n 02 battleship 0 battlewagon 0 003 @ 04552696 n 0000 ~ 03236093 n 0000 ~ 03973003 n 0000 | large and heavily armoured warship -02812342 06 n 02 battle_sight 0 battlesight 0 001 @ 03470387 n 0000 | an arrangement of sights that makes possible the rapid aiming of a firearm at short ranges -02812505 06 n 01 batwing 0 001 @ 04371979 n 0000 | one of a pair of swinging doors (as at the entrance to a western saloon) -02812631 06 n 01 bay 1 002 @ 03079741 n 0000 #p 02686568 n 0000 | a compartment in an aircraft used for some specific purpose; "he opened the bomb bay" -02812785 06 n 01 bay 2 002 @ 03079741 n 0000 #p 04194289 n 0000 | a compartment on a ship between decks; often used as a hospital; "they put him in the sick bay" -02812949 06 n 01 bayonet 0 002 @ 03624134 n 0000 + 01231980 v 0101 | a knife that can be fixed to the end of a rifle and used as a weapon -02813089 06 n 01 Bayonne_Bridge 0 002 @i 04311004 n 0000 #p 09113207 n 0000 | a steel arch bridge connecting New Jersey and Staten Island at Bayonne, New Jersey -02813252 06 n 01 bay_rum 0 001 @ 02683791 n 0000 | an aromatic liquid originally obtained by distilling the leaves of the bayberry tree with rum -02813399 06 n 02 bay_window 0 bow_window 0 002 @ 04587648 n 0000 ~ 03855333 n 0000 | a window that sticks out from the outside wall of a house -02813544 06 n 02 bazaar 0 bazar 0 001 @ 04202417 n 0000 | a shop where a variety of goods are sold -02813645 06 n 02 bazaar 1 bazar 1 001 @ 03722288 n 0000 | a street of small shops (especially in Orient) -02813752 06 n 01 bazooka 0 001 @ 03647520 n 0000 | a portable rocket launcher used by infantrymen as an antitank weapon -02813874 06 n 02 BB 0 BB_shot 0 001 @ 04205759 n 0000 | a small pellet fired from an air rifle or BB gun -02813981 06 n 01 B_battery 0 001 @ 02810471 n 0000 | battery for supplying a constant positive voltage to the plate of a vacuum tube -02814116 06 n 01 BB_gun 0 001 @ 02689274 n 0000 | an air gun in which BBs are propelled by compressed air -02814224 06 n 02 beach_ball 0 beachball 0 001 @ 02779435 n 0000 | large and light ball; for play at the seaside -02814338 06 n 01 beach_house 0 001 @ 03544360 n 0000 | a house built on or near a beach -02814428 06 n 01 beach_towel 0 001 @ 04459362 n 0000 | very large towel to dry yourself after swimming -02814533 06 n 07 beach_wagon 0 station_wagon 0 wagon 1 estate_car 0 beach_waggon 0 station_waggon 0 waggon 1 003 @ 02958343 n 0000 ~ 04201733 n 0000 %p 04384593 n 0000 | a car that has a long body and rear door with space behind rear seat -02814774 06 n 01 beachwear 0 001 @ 03051540 n 0000 | clothing to be worn at a beach -02814860 06 n 04 beacon 1 lighthouse 0 beacon_light 0 pharos 0 004 @ 04460130 n 0000 + 02160433 v 0101 + 01933204 v 0101 ~i 04461148 n 0000 | a tower with a light that gives warning of shoals to passing ships -02815071 06 n 01 bead 0 005 @ 03597469 n 0000 + 00056660 a 0101 + 01670511 v 0101 + 01360091 v 0101 ~ 02913035 n 0000 | a small ball with a hole through the middle -02815237 06 n 04 beading 0 bead 1 beadwork 0 astragal 0 002 @ 03780392 n 0000 ~ 04035481 n 0000 | a beaded molding for edging or decorating furniture -02815389 06 n 02 beading 1 beadwork 1 001 @ 03169390 n 0000 | ornamentation with beads -02815478 06 n 01 beading_plane 0 001 @ 03954731 n 0000 | a plane with a concave blade for making moulding with beadwork -02815600 06 n 02 beads 0 string_of_beads 0 003 @ 04338359 n 0000 ~ 04109335 n 0000 ~ 04549407 n 0000 | several beads threaded together on a string -02815749 06 n 01 beaker 0 001 @ 03147509 n 0000 | a cup (usually without a handle) -02815834 06 n 01 beaker 1 001 @ 03593526 n 0000 | a flatbottomed jar made of glass or plastic; used for chemistry -02815950 06 n 01 beam 0 018 @ 04341414 n 0000 @ 03932203 n 0000 ~ 02884859 n 0000 ~ 02953056 n 0000 ~ 03437941 n 0000 ~ 03502897 n 0000 ~ 03503233 n 0000 ~ 03601840 n 0000 ~ 03609542 n 0000 ~ 03609959 n 0000 ~ 04045644 n 0000 ~ 04088982 n 0000 ~ 04089152 n 0000 ~ 04204468 n 0000 ~ 04433377 n 0000 ~ 04436185 n 0000 ~ 04475496 n 0000 %s 15098161 n 0000 | long thick piece of wood or metal or concrete, etc., used in construction -02816381 06 n 01 beam 2 001 @ 04213626 n 0000 | the broad side of a ship; "they sighted land on the port beam" -02816494 06 n 01 beam_balance 0 002 @ 02777100 n 0000 ~ 02708555 n 0000 | a balance consisting of a lever with two equal arms and a pan suspended from each arm -02816656 06 n 01 beanbag 0 001 @ 02773037 n 0000 | a small cloth bag filled with dried beans; thrown in games -02816768 06 n 02 beanie 0 beany 0 001 @ 04232153 n 0000 | a small skullcap; formerly worn by schoolboys and college freshmen -02816895 06 n 01 bear_claw 0 001 @ 03178782 n 0000 | an incised design resembling the claw of a bear; used in Native American pottery -02817031 06 n 01 bearing 0 006 @ 04359589 n 0000 #p 04110955 n 0000 ~ 02780315 n 0000 ~ 03334775 n 0000 ~ 03602686 n 0000 ~ 04430475 n 0000 | a rotating support placed between moving parts to allow them to move easily -02817251 06 n 02 bearing_rein 0 checkrein 0 001 @ 04072551 n 0000 | a rein designed to keep the horse's head in the desired position -02817386 06 n 01 bearing_wall 0 002 @ 04546855 n 0000 @ 04359589 n 0000 | any wall supporting a floor or the roof of a building -02817516 06 n 03 bearskin 0 busby 0 shako 0 001 @ 03497657 n 0000 | tall hat; worn by some British soldiers on ceremonial occasions -02817650 06 n 01 beater 0 005 @ 03563967 n 0000 + 01418179 v 0101 + 01398919 v 0101 ~ 02967407 n 0000 ~ 03266371 n 0000 | an implement for beating -02817799 06 n 03 beating-reed_instrument 0 reed_instrument 0 reed 0 005 @ 04598582 n 0000 + 01921639 a 0301 ~ 03228016 n 0000 ~ 03393199 n 0000 ~ 04222847 n 0000 | a musical instrument that sounds by means of a vibrating reed -02818027 06 n 01 beauty_spot 0 001 @ 02681518 n 0000 | a spot that is worn on a lady's face for adornment -02818135 06 n 02 beaver 0 castor 0 001 @ 03404360 n 0000 | a hat made with the fur of a beaver (or similar material) -02818254 06 n 01 beaver 1 002 @ 02740764 n 0000 #p 03513137 n 0000 | a movable piece of armor on a medieval helmet used to protect the lower face -02818402 06 n 01 beaver_board 0 001 @ 04547991 n 0000 | a light wallboard made of compressed wood pulp -02818507 06 n 01 becket 0 002 @ 03670849 n 0000 ;c 00314469 n 0000 | (nautical) a short line with an eye at one end and a knot at the other; used to secure loose items on a ship -02818687 06 n 01 Beckman_thermometer 0 001 @ 03749807 n 0000 | a mercury thermometer that measures small differences or changes in temperature -02818832 06 n 01 bed 0 027 @ 02821943 n 0000 #p 02821627 n 0000 + 02337066 v 0101 + 01500082 v 0101 + 01426397 v 0115 %p 02822579 n 0000 ~ 02831724 n 0000 ~ 02915379 n 0000 ~ 02920083 n 0000 ~ 02920259 n 0000 ~ 03114504 n 0000 ~ 03115762 n 0000 ~ 03166600 n 0000 ~ 03225988 n 0000 ~ 03388549 n 0000 ~ 03482252 n 0000 ~ 03723439 n 0000 %p 03731164 n 0000 ~ 03799876 n 0000 ~ 03956531 n 0000 ~ 03962852 n 0000 ~ 04213264 n 0000 ~ 04222210 n 0000 ~ 04236809 n 0000 ~ 04491638 n 0000 ~ 04503413 n 0000 ~ 04557522 n 0000 | a piece of furniture that provides a place to sleep; "he sat on the edge of the bed"; "the room had only a bed and chair" -02819474 06 n 01 bed 1 006 @ 08674739 n 0000 ~ 02748088 n 0000 ~ 03368352 n 0000 ~ 03542073 n 0000 ~ 04167122 n 0000 ~ 04500613 n 0000 | a plot of ground in which plants are growing; "the gardener planted a bed of roses" -02819697 06 n 01 bed 2 003 @ 03387016 n 0000 ~ 04047834 n 0000 ~ 04096733 n 0000 | a foundation of earth or rock supporting a road or railroad track; "the track bed had washed away" -02819881 06 n 01 bed 3 002 @ 04362025 n 0000 #p 04000311 n 0000 | the flat surface of a printing press on which the type form is laid in the last stage of producing a newspaper or magazine or book etc. -02820085 06 n 02 bed_and_breakfast 0 bed-and-breakfast 0 001 @ 02857477 n 0000 | an overnight boardinghouse with breakfast -02820210 06 n 03 bedclothes 0 bed_clothing 0 bedding 0 007 @ 03050026 n 0000 ~ 02821543 n 0000 ~ 02822220 n 0000 ~ 02849154 n 0000 ~ 03731483 n 0000 ~ 04033995 n 0000 ~ 04429971 n 0000 | coverings that are used on a bed -02820432 06 n 03 bedding_material 0 bedding 1 litter 0 001 @ 14580897 n 0000 | material used to provide a bed for animals -02820556 06 n 01 Bedford_cord 0 001 @ 03106722 n 0000 | a heavy corded fabric similar to corduroy; used for clothing -02820675 06 n 01 bed_jacket 0 001 @ 03589791 n 0000 | a lightweight jacket worn over bedclothes (as when sitting in bed) -02820798 06 n 0c Bedlam 0 booby_hatch 0 crazy_house 0 cuckoo's_nest 0 funny_farm 0 funny_house 0 loony_bin 0 madhouse 0 nut_house 0 nuthouse 0 sanatorium 1 snake_pit 0 001 @ 03746574 n 0000 | pejorative terms for an insane asylum -02821030 06 n 01 bed_linen 0 004 @ 03672352 n 0000 ~ 02975412 n 0000 ~ 03938725 n 0000 ~ 04188179 n 0000 | linen or cotton articles for a bed (as sheets and pillowcases) -02821202 06 n 01 bedpan 0 001 @ 04531098 n 0000 | a shallow vessel used by a bedridden patient for defecation and urination -02821328 06 n 01 bed_pillow 0 001 @ 03938244 n 0000 | a soft pillow for use on a bed -02821415 06 n 01 bedpost 0 002 @ 04359589 n 0000 #p 02822579 n 0000 | any of 4 vertical supports at the corners of a bedstead -02821543 06 n 01 bedroll 0 001 @ 02820210 n 0000 | bedding rolled up for carrying -02821627 06 n 05 bedroom 0 sleeping_room 0 sleeping_accommodation 0 chamber 1 bedchamber 0 010 @ 04105893 n 0000 #p 03259505 n 0000 %p 02818832 n 0000 ~ 02878534 n 0000 ~ 03017070 n 0000 ~ 03225108 n 0000 ~ 03465718 n 0000 ~ 03542860 n 0000 ~ 03727465 n 0000 ~ 03788601 n 0000 | a room used primarily for sleeping -02821943 06 n 01 bedroom_furniture 0 002 @ 03405725 n 0000 ~ 02818832 n 0000 | furniture intended for use in a bedroom -02822064 06 n 03 bedsitting_room 0 bedsitter 0 bedsit 0 001 @ 02726305 n 0000 | a furnished sitting room with sleeping accommodations (and some plumbing) -02822220 06 n 06 bedspread 0 bedcover 0 bed_cover 0 bed_covering 0 counterpane 0 spread 0 003 @ 02820210 n 0000 ~ 03123553 n 0000 ~ 04034262 n 0000 | decorative cover for a bed -02822399 06 n 01 bedspring 0 004 @ 04288272 n 0000 #p 02822579 n 0000 ;u 06295235 n 0000 ~ 02886321 n 0000 | (usually plural) one of the springs holding up the mattress of a bed -02822579 06 n 02 bedstead 0 bedframe 0 006 @ 03405725 n 0000 #p 02818832 n 0000 %p 02821415 n 0000 %p 02822399 n 0000 %p 03379461 n 0000 %p 03502200 n 0000 | the framework of a bed -02822762 06 n 01 beefcake 0 001 @ 03925226 n 0000 | a photograph of a muscular man in minimal attire -02822865 06 n 02 beehive 0 hive 0 004 @ 04060904 n 0000 #p 02727426 n 0000 + 02306087 v 0201 ~ 04226962 n 0000 | a man-made receptacle that houses a swarm of bees -02823030 06 n 01 beehive 1 001 @ 04602044 n 0000 | any workplace where people are very busy -02823124 06 n 02 beeper 0 pager 0 004 @ 03277771 n 0000 + 00754560 v 0201 + 02183175 v 0103 + 00791372 v 0101 | an electronic device that generates a series of beeps when the person carrying it is being paged -02823335 06 n 02 beer_barrel 0 beer_keg 0 001 @ 02795169 n 0000 | a barrel that holds beer -02823428 06 n 01 beer_bottle 0 001 @ 02876657 n 0000 | a bottle that holds beer -02823510 06 n 01 beer_can 0 001 @ 02946921 n 0000 | a can that holds beer -02823586 06 n 01 beer_garden 0 001 @ 04395875 n 0000 | tavern with an outdoor area (usually resembling a garden) where beer and other alcoholic drinks are served -02823750 06 n 01 beer_glass 0 001 @ 03438257 n 0000 | a relatively large glass for serving beer -02823848 06 n 01 beer_hall 0 001 @ 03478907 n 0000 | a hall or barroom featuring beer and (usually) entertainment -02823964 06 n 01 beer_mat 0 001 @ 03242120 n 0000 | a drip mat placed under a glass of beer -02824058 06 n 02 beer_mug 0 stein 0 001 @ 03797390 n 0000 | a mug intended for serving beer -02824152 06 n 01 belaying_pin 0 002 @ 02788689 n 0000 ;c 04194289 n 0000 | a wood or metal bar to which a rope can be secured (as on a ship or in mountain climbing) -02824319 06 n 01 belfry 0 002 @ 04105893 n 0000 #p 02826886 n 0000 | a room (often at the top of a tower) where bells are hung -02824448 06 n 01 bell 0 017 @ 02676261 n 0000 @ 04217718 n 0000 + 01297274 v 0101 ~ 03028596 n 0000 %p 03037228 n 0000 ~ 03123917 n 0000 ~ 03166951 n 0000 ~ 03201529 n 0000 ~ 03270695 n 0000 ~ 03344305 n 0000 ~i 03660228 n 0000 ~ 04146504 n 0000 ~ 04187751 n 0000 ~ 04203356 n 0000 ~ 04236935 n 0000 %p 04261369 n 0000 ~ 04444121 n 0000 | a hollow device made of metal that makes a ringing sound when struck -02824858 06 n 01 bell 3 004 @ 03848729 n 0000 #p 04586932 n 0000 #p 03403643 n 0000 #p 02856237 n 0000 | the flared opening of a tubular device -02825004 06 n 01 belladonna 0 001 @ 02754756 n 0000 | an alkaloidal extract or tincture of the poisonous belladonna plant that is used medicinally -02825153 06 n 01 bell_arch 0 001 @ 04113765 n 0000 | a round arch resting on corbels -02825240 06 n 04 bellarmine 0 longbeard 0 long-beard 0 greybeard 0 001 @ 03603722 n 0000 | a stoneware drinking jug with a long neck; decorated with a caricature of Cardinal Bellarmine (17th century) -02825442 06 n 03 bellbottom_trousers 0 bell-bottoms 0 bellbottom_pants 0 002 @ 04489008 n 0000 ;u 06295235 n 0000 | trousers with legs that flare; worn by sailors; absurdly wide hems were fashionable in the 1960s -02825657 06 n 02 bell_cote 0 bell_cot 0 001 @ 04191943 n 0000 | a small shelter for bells; has a gable or shed roof -02825775 06 n 01 bell_deck 0 001 @ 03365592 n 0000 | a floor under the bells of an open belfry -02825872 06 n 01 bell_foundry 0 001 @ 03387653 n 0000 | a foundry where bells are cast -02825961 06 n 01 bell_gable 0 001 @ 03409393 n 0000 | an extension of a gable that serves as a bell cote -02826068 06 n 02 bell_jar 0 bell_glass 0 001 @ 04014297 n 0000 | a bell-shaped glass cover used to protect and display delicate objects or to cover scientific apparatus or to contain gases -02826259 06 n 01 bellows 0 002 @ 02855089 n 0000 ;u 06295235 n 0000 | a mechanical device that blows a strong current of air; used to make a fire burn more fiercely or to sound a musical instrument -02826459 06 n 01 bellpull 0 001 @ 04019696 n 0000 | a handle or cord that is pulled to ring a doorbell or a servant's bell etc. -02826589 06 n 01 bell_push 0 001 @ 04027023 n 0000 | a button that is pushed to ring a bell -02826683 06 n 02 bell_seat 0 balloon_seat 0 001 @ 04161358 n 0000 | a seat that has a bell shape (on some 18th century chairs) -02826812 06 n 01 bell_tent 0 001 @ 04411264 n 0000 | a bell-shaped tent -02826886 06 n 01 bell_tower 0 003 @ 04460130 n 0000 %p 02824319 n 0000 ~ 02946127 n 0000 | a tower that supports or shelters a bell -02827020 06 n 01 bellyband 0 001 @ 03323703 n 0000 | a strap around the belly of a draft animal holding the shafts of a wagon -02827148 06 n 01 bellyband 1 001 @ 02784218 n 0000 | a cloth band that is worn around the waist (as on infants until the navel has healed) -02827289 06 n 02 Belmont_Park 0 Belmont 0 002 @i 03205760 n 0000 #p 09124252 n 0000 | a racetrack for thoroughbred racing in Elmont on Long Island; site of the Belmont Stakes -02827466 06 n 01 Belsen 0 001 @i 03086183 n 0000 | a Nazi concentration camp for Jews created in northwestern Germany during World War II -02827606 06 n 01 belt 0 010 @ 02671780 n 0000 + 01366061 v 0101 ~ 02778294 n 0000 %p 02828299 n 0000 %s 02828427 n 0000 ~ 02972397 n 0000 ~ 03527565 n 0000 ~ 03781683 n 0000 ~ 04125853 n 0000 ~ 04132465 n 0000 | a band to tie or buckle around the body (usually at the waist) -02827883 06 n 01 belt 1 007 @ 13875571 n 0000 ~ 02785570 n 0000 %s 02828427 n 0000 ~ 03100897 n 0000 ~ 03244660 n 0000 ~ 03320262 n 0000 ~ 04464418 n 0000 | endless loop of flexible material between two rotating shafts or pulleys -02828115 06 n 03 belt 2 belt_ammunition 0 belted_ammunition 0 001 @ 02703275 n 0000 | ammunition (usually of small caliber) loaded in flexible linked strips for use in a machine gun -02828299 06 n 01 belt_buckle 0 003 @ 02910353 n 0000 #p 02827606 n 0000 %p 04010927 n 0000 | the buckle used to fasten a belt -02828427 06 n 01 belting 0 003 @ 03309808 n 0000 #s 02827606 n 0000 #s 02827883 n 0000 | the material of which belts are made -02828555 06 n 01 belvedere 0 001 @ 03430418 n 0000 | a gazebo sited to command a fine view -02828648 06 n 04 beltway 0 bypass 0 ring_road 0 ringway 0 004 @ 03519981 n 0000 ;r 08860123 n 0404 ;r 08860123 n 0304 + 00811171 v 0201 | a highway that encircles an urban area so that traffic does not have to pass through the center -02828884 06 n 01 bench 0 009 @ 04161981 n 0000 ~ 02788386 n 0000 ~ 03360622 n 0000 ~ 03891251 n 0000 ~ 03907908 n 0000 ~ 03920867 n 0000 ~ 04002371 n 0000 ~ 04177820 n 0000 ~ 04590021 n 0000 | a long seat for more than one person -02829116 06 n 01 bench 3 003 @ 04161981 n 0000 #p 03120778 n 0000 ;c 08441203 n 0000 | (law) the seat for judges in a courtroom -02829246 06 n 01 bench_clamp 0 001 @ 03036866 n 0000 | a clamp used to hold work in place on a workbench -02829353 06 n 01 bench_hook 0 001 @ 02982790 n 0000 | any of various stops on a workbench against which work can be pushed (as while chiseling or planing) -02829510 06 n 01 bench_lathe 0 001 @ 03646296 n 0000 | lathe mounted on a workbench -02829596 06 n 01 bench_press 0 001 @ 04024274 n 0000 | a small punch press mounted on a workbench -02829696 06 n 02 bend 0 curve 0 012 @ 04164989 n 0000 #p 04096066 n 0000 ;c 09411430 n 0000 + 02316071 a 0201 + 02316071 a 0202 + 00362128 v 0202 + 02738701 v 0203 + 02033295 v 0203 + 02033137 v 0101 ~ 02851795 n 0000 ~ 03268470 n 0000 ~ 03476458 n 0000 | curved segment (of a road or river or railroad track etc.) -02830013 06 n 02 bend 1 bend_dexter 0 001 @ 03853734 n 0000 | diagonal line traversing a shield from the upper right corner to the lower left -02830157 06 n 01 bender 0 003 @ 04451818 n 0000 + 02035919 v 0101 + 01280014 v 0102 | a tool for bending; "he used pliers as a bender" -02830294 06 n 01 Benjamin_Franklin_Bridge 0 002 @i 04366367 n 0000 #p 09136182 n 0000 | a suspension bridge across the Delaware River -02830430 06 n 01 bentwood 0 001 @ 15098161 n 0000 | wood that is steamed until it becomes pliable and then is shaped for use in making furniture; "bentwood chairs" -02830596 06 n 02 Benzedrine 0 bennie 0 003 @ 02704153 n 0000 ;u 07157273 n 0201 ;u 06851742 n 0101 | a form of amphetamine -02830721 06 n 02 benzocaine 0 ethyl_aminobenzoate 0 001 @ 03681148 n 0000 | a white crystalline ester used as a local anesthetic -02830852 06 n 01 benzodiazepine 0 011 @ 03771443 n 0000 @ 03800001 n 0000 ~ 02699343 n 0000 ~ 03022041 n 0000 ~ 03189995 n 0000 ~ 03298211 n 0000 ~ 03690005 n 0000 ~ 03761845 n 0000 ~ 03826331 n 0000 ~ 04407007 n 0000 ~ 04480625 n 0000 | any of several similar lipophilic amines used as tranquilizers or sedatives or hypnotics or muscle relaxants; chronic use can lead to dependency -02831237 06 n 01 beret 0 001 @ 02954340 n 0000 | a cap with no brim or bill; made of soft cloth -02831335 06 n 01 berlin 0 001 @ 03670208 n 0000 | a limousine with a glass partition between the front and back seats -02831455 06 n 04 Bermuda_rig 0 Bermudan_rig 0 Bermudian_rig 0 Marconi_rig 0 001 @ 04091247 n 0000 | a rig of triangular sails for a yacht -02831595 06 n 02 Bermuda_shorts 0 Jamaica_shorts 0 002 @ 04205318 n 0000 ;u 06295235 n 0000 | short pants that end at the knee -02831724 06 n 03 berth 0 bunk 0 built_in_bed 0 004 @ 02818832 n 0000 + 02336947 v 0101 ~ 03693973 n 0000 ~ 04514648 n 0000 | a bed on a ship or train; usually in tiers -02831894 06 n 01 besom 0 001 @ 02906734 n 0000 | a broom made of twigs tied together on a long handle -02831998 06 n 01 Bessemer_converter 0 002 @ 03099945 n 0000 #p 04311595 n 0000 | a refractory-lined furnace used to convert pig iron into steel by the Bessemer process -02832168 06 n 04 beta_blocker 0 beta-blocking_agent 0 beta-adrenergic_blocker 0 beta-adrenergic_blocking_agent 0 010 @ 02854156 n 0000 ~ 02673480 n 0000 ~ 02751782 n 0000 ~ 02973395 n 0000 ~ 03296759 n 0000 ~ 03756857 n 0000 ~ 03804311 n 0000 ~ 03942244 n 0000 ~ 04011409 n 0000 ~ 04438742 n 0000 | any of various drugs used in treating hypertension or arrhythmia; decreases force and rate of heart contractions by blocking beta-adrenergic receptors of the autonomic nervous system -02832652 06 n 01 beta-interferon 0 001 @ 03579137 n 0000 | a form of interferon that is produced by fibroblasts and have antiviral effects; used in the treatment of multiple sclerosis -02832838 06 n 02 betatron 0 induction_accelerator 0 001 @ 02670382 n 0000 | accelerates a continuous beam of electrons to high speeds by means of the electric field produced by changing magnetic flux -02833040 06 n 01 bethel 0 001 @ 03953416 n 0000 | a house of worship (especially one for sailors) -02833140 06 n 01 betting_shop 0 002 @ 04202417 n 0000 ;r 08860123 n 0000 | a licensed bookmaker's shop that is not at the race track -02833275 06 n 01 bevatron 0 001 @ 03156071 n 0000 | a cyclotron that accelerates protons up to several billion electron volts -02833403 06 n 02 bevel 0 bevel_square 0 001 @ 03489162 n 0000 | a hand tool consisting of two rules that are hinged together so you can draw or measure angles of any size -02833576 06 n 03 bevel 1 cant 0 chamfer 0 006 @ 03264136 n 0000 + 01583993 v 0302 + 01277649 v 0302 + 01884577 v 0201 + 01583993 v 0101 ~ 04281880 n 0000 | two surfaces meeting at an angle different from 90 degrees -02833793 06 n 03 bevel_gear 0 pinion_and_crown_wheel 0 pinion_and_ring_gear 0 002 @ 03430551 n 0000 ~ 03194297 n 0000 | gears that mesh at an angle -02833943 06 n 01 bezel 0 001 @ 03264136 n 0000 | a sloping edge on a cutting tool -02834027 06 n 02 B-flat_clarinet 0 licorice_stick 0 001 @ 03037709 n 0000 | the ordinary clarinet with a middle range -02834147 06 n 01 bhang 0 002 @ 04256993 n 0000 #p 12397431 n 0000 | a preparation of the leaves and flowers of the hemp plant; much used in India -02834295 06 n 01 bib 0 001 @ 03807537 n 0000 | a napkin tied under the chin of a child while eating -02834397 06 n 01 bib 1 002 @ 03932670 n 0000 #p 02730930 n 0000 | top part of an apron; covering the chest -02834506 06 n 01 bib-and-tucker 0 002 @ 03859958 n 0000 ;u 07075172 n 0000 | an attractive outfit; "she wore her best bib-and-tucker" -02834642 06 n 02 bicorn 0 bicorne 0 002 @ 03061050 n 0000 + 02034324 a 0101 | a cocked hat with the brim turned up to form two points -02834778 06 n 04 bicycle 0 bike 0 wheel 6 cycle 0 020 @ 04576211 n 0000 + 09986189 n 0401 + 01935476 v 0203 + 09986189 n 0102 + 01935476 v 0101 ~ 02835271 n 0000 %p 02835915 n 0000 %p 02836035 n 0000 %p 02999410 n 0000 %p 03056873 n 0000 %p 03487090 n 0000 %p 03616428 n 0000 ~ 03792782 n 0000 %p 03796605 n 0000 ~ 03853924 n 0000 %p 03903424 n 0000 ~ 04026813 n 0000 ~ 04126066 n 0000 %p 04289690 n 0000 ~ 04524716 n 0000 | a wheeled vehicle that has two wheels and is moved by foot pedals -02835271 06 n 03 bicycle-built-for-two 0 tandem_bicycle 0 tandem 0 001 @ 02834778 n 0000 | a bicycle with two sets of pedals and two seats -02835412 06 n 01 bicycle_chain 0 001 @ 02999410 n 0000 | a chain that transmits the power from the pedals to the rear wheel of a bicycle -02835551 06 n 02 bicycle_clip 0 trouser_clip 0 001 @ 03043958 n 0000 | a clip worn around a cyclist's ankles that keeps trousers from becoming caught in the bicycle chain -02835724 06 n 01 bicycle_pump 0 001 @ 04021798 n 0000 | a small pump that fills bicycle tires with air -02835829 06 n 01 bicycle_rack 0 001 @ 04038727 n 0000 | a rack for parking bicycles -02835915 06 n 02 bicycle_seat 0 saddle 2 002 @ 04161358 n 0000 #p 02834778 n 0000 | a seat for the rider of a bicycle -02836035 06 n 01 bicycle_wheel 0 004 @ 04574999 n 0000 #p 02834778 n 0000 %p 03971422 n 0000 %p 04283378 n 0000 | the wheel of a bicycle -02836174 06 n 01 bidet 0 001 @ 02801525 n 0000 | a basin for washing genitals and anal area -02836268 06 n 01 bier 0 002 @ 04038440 n 0000 ~ 02981198 n 0000 | a stand to support a corpse or a coffin prior to burial -02836392 06 n 01 bier 1 001 @ 03064758 n 0000 | a coffin along with its stand; "we followed the bier to the graveyard" -02836513 06 n 01 bi-fold_door 0 002 @ 03579538 n 0000 %p 03521076 n 0000 | an interior door -02836607 06 n 01 bifocals 0 002 @ 04272054 n 0000 ;u 06295235 n 0101 | eyeglasses having two focal lengths, one for near vision and the other for far vision -02836766 06 n 01 Big_Ben 0 002 @i 03046257 n 0000 #p 08873622 n 0000 | clock in the clock tower of the Houses of Parliament, London -02836900 06 n 02 Big_Blue 0 BLU-82 0 001 @ 03390327 n 0000 | a reliable and deadly 15,000-pound fragmentation bomb that explodes just above ground with a large radius; the largest conventional bomb in existence; used in Afghanistan -02837134 06 n 01 big_board 0 002 @ 03211616 n 0000 #p 03822951 n 0000 | the large display board at the New York Stock Exchange that reports on stocks traded on the exchange -02837309 06 n 01 biggin 0 001 @ 02954340 n 0000 | a child's tight-fitting cap; often ties under the chin -02837416 06 n 07 big_H 0 hell_dust 0 nose_drops 0 smack 0 thunder 0 skag 0 scag 0 002 @ 03516011 n 0000 ;u 06336537 n 0000 | street names for heroin -02837567 06 n 01 bight 0 002 @ 08521816 n 0000 #p 04108268 n 0000 | the middle part of a slack rope (as distinguished from its ends) -02837702 06 n 01 bijou 0 001 @ 03597469 n 0000 | a small and delicately worked piece -02837789 06 n 02 bikini 0 two-piece 1 001 @ 04371563 n 0000 | a woman's very brief bathing suit -02837887 06 n 01 bikini_pants 0 002 @ 04508489 n 0000 ;u 06295235 n 0000 | small and tight-fitting underpants; worn by women -02838014 06 n 01 bilge 0 004 @ 08511241 n 0000 #p 04530566 n 0000 + 00257947 v 0101 ~ 02838448 n 0000 | where the sides of the vessel curve in to form the bottom -02838178 06 n 01 bilge_keel 0 002 @ 03609542 n 0000 #p 04530566 n 0000 | either of two lengthwise fins attached along the outside of a ship's bilge; reduces rolling -02838345 06 n 01 bilge_pump 0 002 @ 04021798 n 0000 #p 04194289 n 0000 | a pump to remove bilgewater -02838448 06 n 01 bilges 0 001 @ 02838014 n 0000 | in a vessel with two hulls, an enclosed area between the frames at each side -02838577 06 n 01 bilge_well 0 003 @ 04572559 n 0000 #p 04194289 n 0000 ;c 00314469 n 0000 | (nautical) a well where seepage drains to be pumped away -02838728 06 n 05 bill 0 peak 0 eyeshade 0 visor 0 vizor 0 003 @ 02902079 n 0000 #p 02799323 n 0000 #p 03610682 n 0000 | a brim that projects to the front to shade the eyes; "he pulled down the bill of his cap and trudged ahead" -02838958 06 n 02 bill 1 billhook 0 001 @ 04140064 n 0000 | a long-handled saw with a curved blade; "he used a bill to prune branches off of the tree" -02839110 06 n 02 billboard 0 hoarding 0 001 @ 04217882 n 0000 | large outdoor signboard -02839200 06 n 01 billet 0 003 @ 03546340 n 0000 ;c 08199025 n 0000 + 02653159 v 0102 | lodging for military personnel (especially in a private home) -02839351 06 n 01 billiard_ball 0 003 @ 02778669 n 0000 ~ 03145719 n 0000 ~ 03838024 n 0000 | ball used in playing billiards -02839477 06 n 01 billiard_marker 0 001 @ 03183080 n 0000 | a device for keeping the score in a game of billiards -02839592 06 n 05 billiard_room 0 billiard_saloon 0 billiard_parlor 0 billiard_parlour 0 billiard_hall 0 001 @ 04105893 n 0000 | a room in which billiards is played -02839758 06 n 01 bimetallic_strip 0 002 @ 03269401 n 0000 #p 04422875 n 0000 | a strip consisting of two metals that bends with a rise in temperature -02839910 06 n 01 bin 0 009 @ 03094503 n 0000 + 01493142 v 0101 ~ 02747177 n 0000 ~ 03056010 n 0000 ~ 03131669 n 0000 ~ 03367969 n 0000 ~ 03678558 n 0000 ~ 03894677 n 0000 ~ 04065789 n 0000 | a container; usually has a lid -02840134 06 n 02 binder 0 ligature 0 002 @ 03664943 n 0000 + 01303242 v 0101 | something used to tie or bind -02840245 06 n 02 binder 1 ring-binder 0 002 @ 04014297 n 0000 + 01335804 v 0101 | holds loose papers or magazines -02840361 06 n 02 binder 3 reaper_binder 0 003 @ 03496892 n 0000 + 01285440 v 0102 + 01303242 v 0101 | a machine that cuts grain and binds it in sheaves -02840515 06 n 01 bindery 0 002 @ 04603081 n 0000 + 01335804 v 0101 | a workshop where books are bound -02840619 06 n 04 binding 0 book_binding 0 cover 4 back 3 008 @ 04014297 n 0000 #p 02870092 n 0000 + 00185857 v 0401 + 01207951 v 0301 + 01332730 v 0301 + 01335804 v 0101 ~ 03477512 n 0000 ~ 04427857 n 0000 | the protective covering on the front, back, and spine of a book; "the book had a leather binding" -02840927 06 n 01 binding 1 002 @ 04179385 n 0000 + 01335804 v 0101 | strip sewn over or along an edge for reinforcement or decoration -02841063 06 n 01 bin_liner 0 002 @ 03958227 n 0000 ;r 08860123 n 0000 | a plastic bag used to line a trash or garbage bin -02841187 06 n 01 binnacle 0 001 @ 03546766 n 0000 | a nonmagnetic housing for a ship's compass (usually in front of the helm) -02841315 06 n 03 binoculars 0 field_glasses 0 opera_glasses 0 003 @ 03852280 n 0000 ;u 06295235 n 0000 %p 03309465 n 0000 | an optical instrument designed for simultaneous use by both eyes -02841506 06 n 01 binocular_microscope 0 002 @ 03667829 n 0000 ~ 03850053 n 0000 | a light microscope adapted to the use of both eyes -02841641 06 n 01 biochip 0 001 @ 03020034 n 0000 | a microchip that uses tiny strands of DNA to latch onto and quickly recognize thousands of genes at a time; intended for use in a biological environment -02841847 06 n 01 biohazard_suit 0 001 @ 04015204 n 0000 | a loose one-piece garment worn to protect the wearer against dangerous biological or chemical agents -02842008 06 n 03 biology_lab 0 biology_laboratory 0 bio_lab 0 001 @ 03629986 n 0000 | a laboratory for biological research -02842133 06 n 01 bioscope 0 001 @ 03795976 n 0000 | a kind of early movie projector -02842219 06 n 01 bioscope 1 001 @ 03032252 n 0000 | a South African movie theater -02842303 06 n 03 bioweapon 0 biological_weapon 0 bioarm 0 006 @ 04565963 n 0000 ~ 01350226 n 0000 ~ 01357507 n 0000 ~ 14714645 n 0000 ~ 15035123 n 0000 ~ 15050695 n 0000 | any weapon usable in biological warfare; "they feared use of the smallpox virus as a bioweapon" -02842573 06 n 01 biplane 0 001 @ 02691156 n 0000 | old fashioned airplane; has two wings one above the other -02842684 06 n 01 biprism 0 002 @ 03851341 n 0000 %p 04005340 n 0000 | an optical device for obtaining interference fringes -02842809 06 n 02 birch 0 birch_rod 0 002 @ 04372171 n 0000 + 01411978 v 0101 | a switch consisting of a twig or a bundle of twigs from a birch tree; used to hit people as punishment; "my father never spared the birch" -02843029 06 n 03 birchbark_canoe 0 birchbark 0 birch_bark 0 001 @ 02951358 n 0000 | a canoe made with the bark of a birch tree -02843158 06 n 01 birdbath 0 001 @ 02801525 n 0000 | an ornamental basin (usually in a garden) for birds to bathe in -02843276 06 n 01 birdcage 0 001 @ 02936714 n 0000 | a cage in which a bird can be kept -02843365 06 n 01 birdcage_mask 0 001 @ 02983189 n 0000 | a catcher's mask with a strong wire face -02843465 06 n 01 birdcall 0 001 @ 02676261 n 0000 | a device for imitating a birdcall -02843553 06 n 03 bird_feeder 0 birdfeeder 0 feeder 1 001 @ 03183080 n 0000 | an outdoor device that supplies food for wild birds -02843684 06 n 01 birdhouse 0 002 @ 04191943 n 0000 ~ 03228692 n 0000 | a shelter for birds -02843777 06 n 03 bird_shot 0 buckshot 0 duck_shot 0 002 @ 04205759 n 0000 #p 04206570 n 0000 | small lead shot for shotgun shells -02843909 06 n 03 biretta 0 berretta 0 birretta 0 001 @ 02954340 n 0000 | a stiff cap with ridges across the crown; worn by Roman Catholic clergy -02844056 06 n 01 bishop 0 002 @ 03014440 n 0000 ;c 00503237 n 0000 | (chess) a piece that can be moved diagonally over unoccupied squares of the same color -02844214 06 n 01 bistro 0 001 @ 04081281 n 0000 | a small informal restaurant; serves wine -02844307 06 n 01 bit 0 012 @ 03154446 n 0000 #p 03239726 n 0000 ~ 02921292 n 0000 ~ 02993877 n 0000 ~ 03004531 n 0000 ~ 03117642 n 0000 ~ 03240327 n 0000 ~ 03304323 n 0000 ~ 03939062 n 0000 %p 04183819 n 0000 ~ 04266849 n 0000 ~ 04503593 n 0000 | the cutting part of a drill; usually pointed and threaded and is replaceable in a brace or bitstock or drill press; "he looked around for the right size bit" -02844714 06 n 01 bit 1 007 @ 04295081 n 0000 #p 02900160 n 0000 ~ 02791795 n 0000 ~ 02900594 n 0000 ~ 03149135 n 0000 ~ 03906463 n 0000 ~ 04247876 n 0000 | piece of metal held in horse's mouth by reins and used to control the horse while riding; "the horse was not accustomed to a bit" -02845002 06 n 01 bit 2 002 @ 03892891 n 0000 #p 03613294 n 0000 | the part of a key that enters a lock and lifts the tumblers -02845130 06 n 02 bite_plate 0 biteplate 0 001 @ 03175604 n 0000 | a removable dental appliance that is worn in the palate for diagnostic or therapeutic purposes -02845293 06 n 01 bitewing 0 001 @ 04609531 n 0000 | a dental X-ray film that can be held in place by the teeth during radiography -02845425 06 n 02 bitmap 0 electronic_image 0 001 @ 03931044 n 0000 | an image represented as a two dimensional array of brightness values for pixels -02845576 06 n 01 bitter_end 0 003 @ 08566028 n 0000 #p 03670849 n 0000 ;c 00314469 n 0000 | (nautical) the inboard end of a line or cable especially the end that is wound around a bitt -02845763 06 n 01 bitthead 0 002 @ 08566028 n 0000 #p 02864593 n 0000 | the upper end of a bitt -02845860 06 n 01 bitt_pin 0 001 @ 03940256 n 0000 | a pin through the bitthead to keep the mooring lines from slipping off -02845985 06 n 01 bitumastic 0 001 @ 03058107 n 0000 | a protective coating of asphalt and filter used on structural metals that are exposed to weathering -02846141 06 n 01 black 0 001 @ 03051540 n 0000 | black clothing (worn as a sign of mourning); "the widow wore black" -02846260 06 n 01 black 1 004 @ 03716327 n 0000 ;c 00503237 n 0000 ;c 00502952 n 0000 ! 04579986 n 0101 | (board games) the darker pieces -02846399 06 n 02 black_and_white 0 monochrome 0 001 @ 03925226 n 0000 | a black-and-white photograph or slide -02846511 06 n 02 blackboard 0 chalkboard 0 001 @ 04188643 n 0000 | sheet of slate; for writing with chalk -02846619 06 n 01 blackboard_eraser 0 001 @ 03294833 n 0000 | an eraser that removes chalk marks from blackboard -02846733 06 n 01 black_box 0 001 @ 04063373 n 0000 | equipment that records information about the performance of an aircraft during flight -02846874 06 n 01 blackface 0 001 @ 03714235 n 0000 | the makeup (usually burnt cork) used by a performer in order to imitate a Negro -02847009 06 n 04 black_flag 0 pirate_flag 0 Jolly_Roger 0 blackjack 1 002 @ 03354903 n 0000 %p 04232034 n 0000 | a flag usually bearing a white skull and crossbones on a black background; indicates a pirate ship -02847223 06 n 01 Black_Hole_of_Calcutta 0 001 @i 03610098 n 0000 | a dungeon (20 feet square) in a fort in Calcutta where as many as 146 English prisoners were held overnight by Siraj-ud-daula; the next morning only 23 were still alive -02847461 06 n 03 blackjack 0 cosh 0 sap 0 002 @ 02855793 n 0000 + 01401552 v 0201 | a piece of metal covered by leather with a flexible handle; used for hitting people -02847631 06 n 01 black_tie 0 001 @ 02883205 n 0000 | a black bow tie worn with a dinner jacket -02847728 06 n 01 Blackwall_hitch 0 001 @ 03522634 n 0000 | a simple hitch used for temporarily attaching a line to a hook -02847852 06 n 01 blackwash 0 001 @ 04553389 n 0000 | a wash that colors a surface black -02847942 06 n 02 blackwash 1 black_lotion 0 003 @ 03691128 n 0000 %s 14937093 n 0000 %s 14950937 n 0000 | a mixture of calomel and limewater that is used on syphilitic sores -02848118 06 n 01 bladder 0 002 @ 02773037 n 0000 #p 03378765 n 0000 | a bag that fills with air -02848216 06 n 01 blade 0 011 @ 03154446 n 0000 #p 02764044 n 0000 #p 03623556 n 0000 #p 04373894 n 0000 #p 04269944 n 0000 #p 04270147 n 0000 #p 04148054 n 0000 #p 03649909 n 0000 ~ 03624400 n 0000 %p 03624497 n 0000 ~ 04057215 n 0000 | the flat part of a tool or weapon that (usually) has a cutting edge -02848523 06 n 02 blade 2 vane 1 010 @ 04110955 n 0000 #p 04011827 n 0000 #p 03512147 n 0000 #p 04587404 n 0000 #p 04498523 n 0000 #p 03837422 n 0000 ~ 03320421 n 0000 ~ 03563460 n 0000 ~ 03873699 n 0000 ~ 04117639 n 0000 | flat surface that rotates and pushes against air or water -02848806 06 n 01 blade 3 002 @ 04120093 n 0000 #p 03558404 n 0000 | the part of the skate that slides on the ice -02848921 06 n 03 blank 0 dummy 1 blank_shell 0 001 @ 02971691 n 0000 | a cartridge containing an explosive charge but no bullet -02849051 06 n 01 blank 1 001 @ 04188643 n 0000 | a piece of material ready to be made into something -02849154 06 n 02 blanket 0 cover 1 007 @ 02820210 n 0000 + 03123553 n 0201 ~ 02683323 n 0000 ~ 03270854 n 0000 ~ 03703320 n 0000 ~ 03719249 n 0000 ~ 04165675 n 0000 | bedding that keeps a person warm in bed; "he pulled the covers over his head and went to sleep" -02849419 06 n 01 blanket 1 002 @ 03650173 n 0000 #p 02896949 n 0000 | a layer of lead surrounding the highly reactive core of a nuclear reactor -02849565 06 n 01 blanket_stitch 0 001 @ 04180314 n 0000 | a strong reinforcing stitch for edges of blanket and other thick material; similar to buttonhole stitch -02849729 06 n 01 Blarney_Stone 0 001 @i 04326084 n 0000 | a stone in a castle in Ireland that is said to impart skill in flattery to anyone who kisses it -02849885 06 n 01 blast_furnace 0 002 @ 03404449 n 0000 #p 04311595 n 0000 | a furnace for smelting of iron from iron oxide ores; combustion is intensified by a blast of air -02850060 06 n 01 blasting_cap 0 002 @ 03182232 n 0000 %p 14798815 n 0000 | a small tube filled with detonating substances; used to detonate high explosives -02850218 06 n 01 blasting_gelatin 0 003 @ 03305844 n 0000 %s 14794993 n 0000 %s 14886579 n 0000 | mixture of guncotton with nitroglycerin -02850358 06 n 05 blazer 0 sport_jacket 0 sport_coat 0 sports_jacket 0 sports_coat 0 001 @ 03589791 n 0000 | lightweight single-breasted jacket; often striped in the colors of a club or school -02850552 06 n 01 bleachers 0 002 @ 04300741 n 0000 ;u 06295235 n 0000 | an outdoor grandstand without a roof; patrons are exposed to the sun as linens are when they are bleached -02850732 06 n 03 blender 0 liquidizer 0 liquidiser 0 004 @ 03775199 n 0000 + 00444309 v 0204 + 00444309 v 0203 + 01462468 v 0101 | an electrically powered mixer with whirling blades that mix or chop or liquefy foods -02850950 06 n 03 blimp 0 sausage_balloon 0 sausage 0 001 @ 02692877 n 0000 | a small nonrigid airship used for observation or as a barrage balloon -02851099 06 n 02 blind 0 screen 4 007 @ 04014297 n 0000 + 01130169 v 0202 + 01477538 v 0201 ~ 03151077 n 0000 ~ 04211356 n 0000 ~ 04589190 n 0000 ~ 04593629 n 0000 | a protective covering that keeps things out or hinders sight; "they had just moved in and had not put up blinds yet" -02851384 06 n 01 blind 1 001 @ 04151940 n 0000 | a hiding place sometimes used by hunters (especially duck hunters); "he waited impatiently in the blind" -02851540 06 n 04 blind_alley 0 cul_de_sac 0 dead-end_street 0 impasse 0 001 @ 04426618 n 0000 | a street with only one way in or out -02851675 06 n 01 blind_corner 0 001 @ 03109486 n 0000 | a street corner that you cannot see around as you are driving -02851795 06 n 02 blind_curve 0 blind_bend 0 001 @ 02829696 n 0000 | a curve or bend in the road that you cannot see around as you are driving -02851939 06 n 01 blindfold 0 002 @ 03050026 n 0000 + 01337927 v 0101 | a cloth used to cover the eyes -02852043 06 n 02 bling 0 bling_bling 0 001 @ 03597469 n 0000 | flashy, ostentatious jewelry; "the rapper was loaded with bling" -02852173 06 n 02 blinker 0 flasher 1 004 @ 03665366 n 0000 + 00424869 v 0201 + 02159890 v 0201 + 02159890 v 0102 | a light that flashes on and off; used as a signal or to send messages -02852360 06 n 02 blister_pack 0 bubble_pack 0 001 @ 03871524 n 0000 | packaging in which a product is sealed between a cardboard backing and clear plastic cover -02852523 06 n 01 block 0 019 @ 00021939 n 0000 + 00657473 a 0102 ~ 02725872 n 0000 ~ 02902411 n 0000 ~ 02937469 n 0000 ~ 03023878 n 0000 ~ 03025357 n 0000 ~ 03137044 n 0000 ~ 03144592 n 0000 ~ 03220802 n 0000 ~ 03570526 n 0000 ~ 03827284 n 0000 ~ 03836191 n 0000 ~ 03872885 n 0000 ~ 04233405 n 0000 ~ 04304557 n 0000 ~ 04315185 n 0000 ~ 04368235 n 0000 ~ 04504486 n 0000 | a solid piece of something (usually having flat rectangular sides); "the pyramids were built with large stone blocks" -02853016 06 n 01 block 6 003 @ 03546340 n 0000 ~ 02992032 n 0000 ~ 04549919 n 0000 | housing in a large building that is divided into separate units; "there is a block of classrooms in the west wing" -02853218 06 n 01 blockade 0 003 @ 03839993 n 0000 + 01478002 v 0103 + 01126961 v 0101 | prevents access or progress -02853336 06 n 01 blockade-runner 0 001 @ 04194289 n 0000 | a ship that runs through or around a naval blockade -02853449 06 n 06 blockage 0 block 1 closure 0 occlusion 0 stop 1 stoppage 0 006 @ 03839993 n 0000 + 01479333 v 0204 + 01479333 v 0104 ~ 02896074 n 0000 ~ 03967942 n 0000 ~ 04521125 n 0000 | an obstruction in a pipe or tube; "we had to call a plumber to clear out the blockage in the drainpipe" -02853745 06 n 01 block_and_tackle 0 002 @ 03525074 n 0000 %p 04020298 n 0000 | pulley blocks with associated rope or cable -02853870 06 n 01 blockbuster 0 001 @ 03433637 n 0000 | a large bomb used to demolish extensive areas (as a city block) -02853991 06 n 01 block_diagram 0 001 @ 03186399 n 0000 | a diagram showing the interconnections between the components of system (especially an electronic system) -02854156 06 n 02 blocker 0 blocking_agent 0 006 @ 03740161 n 0000 + 02198423 v 0101 ~ 02698769 n 0000 ~ 02832168 n 0000 ~ 03630544 n 0000 ~ 14961512 n 0000 | a class of drugs that inhibit (block) some biological process -02854378 06 n 01 blockhouse 0 001 @ 04340935 n 0000 | a stronghold that is reinforced for protection from enemy fire; with apertures for defensive fire -02854532 06 n 01 block_plane 0 001 @ 03954731 n 0000 | a small plane used on end grains of wood -02854630 06 n 01 bloodmobile 0 001 @ 03791235 n 0000 | a motor vehicle equipped to collect blood donations -02854739 06 n 04 bloomers 0 pants 1 drawers 1 knickers 0 002 @ 04508489 n 0000 ;u 06295235 n 0000 | underpants worn by women; "she was afraid that her bloomers might have been showing" -02854926 06 n 01 blouse 0 006 @ 04453666 n 0000 ~ 03418749 n 0000 ~ 03467254 n 0000 ~ 03762238 n 0000 %p 03815278 n 0000 ~ 04198562 n 0000 | a top worn by women -02855089 06 n 01 blower 0 005 @ 03183080 n 0000 + 02101046 v 0101 + 02100632 v 0101 ~ 02826259 n 0000 ~ 03483316 n 0000 | a device that produces a current of air -02855253 06 n 04 blowgun 0 blowpipe 1 blowtube 1 blow_tube 1 001 @ 04493505 n 0000 | a tube through which darts can be shot by blowing -02855390 06 n 03 blowtorch 0 torch 1 blowlamp 0 003 @ 02923129 n 0000 + 00379280 v 0201 ~ 03868763 n 0000 | a burner that mixes air and gas to produce a very hot flame -02855560 06 n 03 blowtube 0 blow_tube 0 blowpipe 0 001 @ 04493505 n 0000 | a tube that directs air or gas into a flame to concentrate heat -02855701 06 n 01 blucher 0 001 @ 04199027 n 0000 | a high shoe with laces over the tongue -02855793 06 n 01 bludgeon 0 004 @ 03053474 n 0000 + 02505606 v 0101 + 01423929 v 0102 ~ 02847461 n 0000 | a club used as a weapon -02855925 06 n 01 blue 1 001 @ 03051540 n 0000 | blue clothing; "she was wearing blue" -02856013 06 n 01 blue_chip 0 001 @ 03020416 n 0000 | a blue poker chip with the highest value -02856109 06 n 01 blueprint 0 002 @ 03925226 n 0000 + 01683582 v 0101 | photographic print of plans or technical drawings etc. -02856237 06 n 01 blunderbuss 0 002 @ 03802007 n 0000 %p 02824858 n 0000 | a short musket of wide bore with a flared muzzle -02856362 06 n 01 blunt_file 0 002 @ 03336839 n 0000 ! 04393301 n 0101 | a file with parallel edges -02856463 06 n 01 board 0 024 @ 04188643 n 0000 ~ 02731900 n 0000 ~ 02893800 n 0000 ~ 02916538 n 0000 ~ 03025513 n 0000 ~ 03231024 n 0000 ~ 03232676 n 0000 ~ 03366630 n 0000 ~ 03586090 n 0000 ~ 03623073 n 0000 ~ 03787164 n 0000 ~ 03878674 n 0000 ~ 03954507 n 0000 ~ 04149813 n 0000 ~ 04214046 n 0000 ~ 04214154 n 0000 ~ 04225987 n 0000 ~ 04251791 n 0000 ~ 04288673 n 0000 ~ 04363559 n 0000 ~ 04479155 n 0000 ~ 04544626 n 0000 ~ 04547991 n 0000 ~ 04600627 n 0000 | a flat piece of material designed for a special purpose; "he nailed boards across the windows" -02857023 06 n 02 board 5 gameboard 0 010 @ 04362025 n 0000 ~ 02768973 n 0000 ~ 03011521 n 0000 ~ 03131791 n 0000 ~ 03162940 n 0000 ~ 03443461 n 0000 ~ 03783959 n 0000 ~ 03858662 n 0000 ~ 03906224 n 0000 ~ 04023422 n 0000 | a flat portable surface (usually rectangular) designed for board games; "he got out the board and set up the pieces" -02857365 06 n 01 boarding 0 003 @ 04341686 n 0000 ~ 02857907 n 0000 ~ 03358593 n 0000 | a structure of boards -02857477 06 n 02 boarding_house 0 boardinghouse 0 002 @ 03544360 n 0000 ~ 02820085 n 0000 | a private house that provides accommodations and meals for paying guests -02857644 06 n 02 boardroom 0 council_chamber 0 002 @ 04105893 n 0000 ~ 03215076 n 0000 | a room where a committee meets (such as the board of directors of a company) -02857812 06 n 01 board_rule 0 001 @ 03735637 n 0000 | a measure used in computing board feet -02857907 06 n 01 boards 0 003 @ 02857365 n 0000 #p 03557360 n 0000 ;u 06295235 n 0000 | the boarding that surrounds an ice hockey rink -02858044 06 n 01 boards 1 002 @ 04418818 n 0000 ;u 06295235 n 0000 | the stage of a theater; "most actors love to stride the boards" -02858179 06 n 01 boardwalk 0 002 @ 04544979 n 0000 ~ 03253187 n 0000 | a walkway made of wooden boards; usually at seaside -02858304 06 n 01 boat 0 039 @ 04530566 n 0000 + 01944692 v 0101 -c 00786624 a 0000 -c 00787002 a 0000 -c 02292421 a 0000 ~ 02737351 n 0000 ~ 02792552 n 0000 %p 02859829 n 0000 ~ 02918455 n 0000 ~ 02947660 n 0000 ~ 03329663 n 0000 ~ 03344393 n 0000 ~ 03447447 n 0000 ~ 03464628 n 0000 ~ 03468570 n 0000 ~ 03603594 n 0000 ~ 03687820 n 0000 ~ 03696445 n 0000 ~ 03703203 n 0000 ~ 03710079 n 0000 -c 03784475 n 0000 ~ 03790230 n 0000 -c 03876352 n 0000 ~ 03939178 n 0000 ~ 03977592 n 0000 -c 03981566 n 0000 ~ 04024983 n 0000 ~ 04095210 n 0000 ~ 04150371 n 0000 ~ 04158807 n 0000 ~ 04244997 n 0000 ~ 04308807 n 0000 ~ 04363671 n 0000 ~ 04409128 n 0000 ~ 04495843 n 0000 -c 10403876 n 0000 -c 10565764 n 0000 -c 01946408 v 0000 -c 01947352 v 0000 | a small vessel for travel on water -02859084 06 n 01 boat_deck 0 001 @ 04514738 n 0000 | the upper deck on which lifeboats are stored -02859184 06 n 07 boater 0 leghorn 0 Panama 0 Panama_hat 0 sailor 0 skimmer 0 straw_hat 0 001 @ 03497657 n 0000 | a stiff hat made of straw with a flat crown -02859343 06 n 01 boat_hook 0 001 @ 03532342 n 0000 | pole-handled hook used to pull or push boats -02859443 06 n 01 boathouse 0 001 @ 04187547 n 0000 | a shed at the edge of a river or lake; used to store boats -02859557 06 n 02 boatswain's_chair 0 bosun's_chair 0 001 @ 04161358 n 0000 | a seat consisting of a board and a rope; used while working aloft or over the side of a ship -02859729 06 n 01 boat_train 0 001 @ 04468005 n 0000 | a train taking passengers to or from a port -02859829 06 n 01 boat_whistle 0 002 @ 04579432 n 0000 #p 02858304 n 0000 | a whistle on a boat that is sounded as a warning -02859955 06 n 01 boatyard 0 001 @ 08513718 n 0000 | a place where boats are built or maintained or stored -02860063 06 n 04 bob 0 bobber 0 cork 1 bobfloat 0 003 @ 03364340 n 0000 #m 03351434 n 0000 + 01865383 v 0201 | a small float usually made of cork; attached to a fishing line -02860239 06 n 01 bob 1 005 @ 04571088 n 0000 #p 03909160 n 0000 ~ 03621826 n 0000 ~ 03968728 n 0000 ~ 04262410 n 0000 | a hanging weight, especially a metal ball on a string -02860415 06 n 03 bobbin 0 spool 0 reel 0 005 @ 04586421 n 0000 + 01523105 v 0301 + 01522878 v 0201 ~ 03336742 n 0000 ~ 04211857 n 0000 | a winder around which thread or tape or film or other flexible materials can be wound -02860640 06 n 03 bobby_pin 0 hairgrip 0 grip 2 001 @ 03476313 n 0000 | a flat wire hairpin whose prongs press tightly together; used to hold bobbed hair in place; "in Britain they call a bobby pin a grip" -02860847 06 n 03 bobsled 0 bobsleigh 0 bob 2 003 @ 04235291 n 0000 + 01939811 v 0302 + 01939811 v 0101 | a long racing sled (for 2 or more people) with a steering mechanism -02861022 06 n 02 bobsled 1 bobsleigh 1 002 @ 04235291 n 0000 + 01939811 v 0101 | formerly two short sleds coupled together -02861147 06 n 03 bocce_ball 0 bocci_ball 0 boccie_ball 0 001 @ 02778669 n 0000 | wooden ball that is bowled in the Italian game of bocce -02861286 06 n 01 bodega 0 001 @ 04202417 n 0000 | a small Hispanic shop selling wine and groceries -02861387 06 n 01 bodice 0 003 @ 04453666 n 0000 #p 03236735 n 0000 %p 03959227 n 0000 | part of a dress above the waist -02861509 06 n 02 bodkin 0 threader 0 003 @ 03489162 n 0000 + 01359432 v 0202 + 01521912 v 0201 | a blunt needle for threading ribbon through loops -02861658 06 n 01 bodkin 1 001 @ 03489162 n 0000 | a small sharp-pointed tool for punching holes in leather or fabric -02861777 06 n 01 bodkin 2 001 @ 03476313 n 0000 | formerly a long hairpin; usually with an ornamental head -02861886 06 n 01 body 0 003 @ 04341686 n 0000 ~ 02863426 n 0000 ~ 03408054 n 0000 | the external structure of a vehicle; "the body of the car was badly rusted" -02862048 06 n 06 body_armor 0 body_armour 0 suit_of_armor 0 suit_of_armour 0 coat_of_mail 0 cataphract 0 030 @ 02739668 n 0000 %p 02738741 n 0000 %p 02801823 n 0000 %p 02892392 n 0000 %p 02895154 n 0000 ~ 02916936 n 0000 %p 02950632 n 0000 %p 02978205 n 0000 ~ 03000247 n 0000 ~ 03112719 n 0000 %p 03144873 n 0000 ~ 03146219 n 0000 %p 03146342 n 0000 %p 03292362 n 0000 %p 03325288 n 0000 %p 03429771 n 0000 %p 03448590 n 0000 %p 03457451 n 0000 %p 03513376 n 0000 %p 03623338 n 0000 %p 03831899 n 0000 %p 03879705 n 0000 %p 04077594 n 0000 %p 04114069 n 0000 %p 04231444 n 0000 %p 04259468 n 0000 %p 04395332 n 0000 %p 04496404 n 0000 %p 04519887 n 0000 %p 04539648 n 0000 | armor that protects the wearer's whole body -02862770 06 n 03 body_bag 0 personnel_pouch 0 human_remains_pouch 0 001 @ 02773037 n 0000 | a bag in which the body of a dead soldier is placed -02862916 06 n 01 body_lotion 0 001 @ 03690938 n 0000 | lotion applied to the body after bathing -02863014 06 n 01 body_stocking 0 001 @ 04508163 n 0000 | a one-piece tight-fitting undergarment for women that covers the torso (and may have sleeves and legs) -02863176 06 n 01 body_plethysmograph 0 001 @ 03966325 n 0000 | plethysmograph consisting of a chamber surrounding the entire body; used in studies of respiration -02863340 06 n 01 body_pad 0 001 @ 04015204 n 0000 | a pad worn by hockey goalkeeper -02863426 06 n 01 bodywork 0 002 @ 02861886 n 0000 #p 03791235 n 0000 | the exterior body of a motor vehicle -02863536 06 n 01 Bofors_gun 0 001 @ 02715712 n 0000 | an automatic double-barreled antiaircraft gun -02863638 06 n 03 bogy 0 bogie 0 bogey 0 001 @ 02686568 n 0000 | an unidentified (and possibly enemy) aircraft -02863750 06 n 02 boiler 0 steam_boiler 0 008 @ 04531098 n 0000 #p 03509025 n 0000 #p 04309049 n 0000 + 00374668 v 0101 + 00375021 v 0101 ~ 02762725 n 0000 %m 02863995 n 0000 %p 04310721 n 0000 | sealed vessel where water is converted to steam -02863995 06 n 01 boilerplate 0 002 @ 03961250 n 0000 #m 02863750 n 0000 | thick plate iron used in the production of boilers -02864122 06 n 02 boiling_water_reactor 0 BWR 0 001 @ 04559023 n 0000 | a nuclear reactor that uses water as a coolant and moderator; the water boils in the reactor core and the steam produced can drive a steam turbine -02864342 06 n 01 bola 0 001 @ 04108268 n 0000 | a rope with weights attached to the ends; is thrown to entangle the legs of an animal; of South American origin -02864504 06 n 01 bolero 0 001 @ 03589791 n 0000 | a short jacket; worn mostly by women -02864593 06 n 02 bollard 0 bitt 0 006 @ 03988170 n 0000 #p 03933529 n 0000 ;c 04194289 n 0000 + 01286554 v 0201 %p 02845763 n 0000 ~ 04089522 n 0000 | a strong post (as on a wharf or quay or ship for attaching mooring lines); "the road was closed to vehicular traffic with bollards" -02864878 06 n 02 bollock 0 bullock_block 0 001 @ 04020298 n 0000 | a pulley-block at the head of a topmast -02864987 06 n 02 bolo 0 bolo_knife 0 001 @ 03623556 n 0000 | long heavy knife with a single edge; of Philippine origin -02865108 06 n 02 bologram 0 bolograph 0 001 @ 04063661 n 0000 | record or recording made by a bolometer -02865214 06 n 01 bolometer 0 002 @ 03733925 n 0000 + 02667637 a 0101 | an instrument that measures heat radiation; extremely sensitive -02865351 06 n 04 bolo_tie 0 bolo 1 bola_tie 0 bola 1 001 @ 03815615 n 0000 | a cord fastened around the neck with an ornamental clasp and worn as a necktie -02865509 06 n 02 bolster 0 long_pillow 0 002 @ 03938244 n 0000 + 01219282 v 0101 | a pillow that is often put across a bed underneath the regular pillows -02865665 06 n 01 bolt 0 010 @ 04153751 n 0000 #p 03836451 n 0000 ~ 02969163 n 0000 %p 03042829 n 0000 ~ 03304465 n 0000 %p 03501288 n 0000 ~ 03618546 n 0000 ~ 03701191 n 0000 %p 04183957 n 0000 ~ 04330669 n 0000 | a screw that screws into a nut to form a fastener -02865931 06 n 02 bolt 1 deadbolt 0 004 @ 02788689 n 0000 #p 03682487 n 0000 + 01348838 v 0101 ~ 04126244 n 0000 | the part of a lock that is engaged or withdrawn with a key -02866106 06 n 01 bolt 2 002 @ 02788689 n 0000 #p 04090263 n 0000 | a sliding bar in a breech-loading firearm that ejects an empty cartridge and replaces it and closes the breech -02866286 06 n 01 bolt 3 001 @ 04101232 n 0000 | a roll of cloth or wallpaper of a definite length -02866386 06 n 01 bolt_cutter 0 001 @ 03154073 n 0000 | an implement for cutting bolts -02866474 06 n 01 bolus 0 001 @ 03936568 n 0000 | a large pill; used especially in veterinary medicine -02866578 06 n 01 bomb 0 033 @ 03305522 n 0000 @ 04566257 n 0000 + 02868240 n 0101 + 01131902 v 0102 ~ 02753044 n 0000 ~ 02782432 n 0000 ~ 02868240 n 0000 ~ 02868546 n 0000 ~ 02900857 n 0000 ~ 02961544 n 0000 ~ 03012734 n 0000 ~ 03054605 n 0000 ~ 03140771 n 0000 ~ 03177856 n 0000 ~ 03255167 n 0000 ~ 03390327 n 0000 ~ 03421768 n 0000 ~ 03433637 n 0000 ~ 03458271 n 0000 ~ 03553248 n 0000 ~ 03565991 n 0000 ~ 03657918 n 0000 ~ 03743422 n 0000 ~ 03761333 n 0000 ~ 03909658 n 0000 ~ 03945817 n 0000 ~ 03958338 n 0000 ~ 04075160 n 0000 ~ 04245847 n 0000 ~ 04246459 n 0000 ~ 04320598 n 0000 ~ 04420461 n 0000 ~ 04436832 n 0000 | an explosive device fused to explode under specific conditions -02867267 06 n 02 bombardon 0 bombard 0 002 @ 04186624 n 0000 @ 02803349 n 0000 | a large shawm; the bass member of the shawm family -02867401 06 n 01 bombazine 0 001 @ 03309808 n 0000 | a twilled fabric used for dresses; the warp is silk and the weft is worsted; "black bombazine is frequently used for mourning garments" -02867592 06 n 02 bomb_calorimeter 0 bomb 1 001 @ 02941095 n 0000 | strong sealed vessel for measuring heat of combustion -02867715 06 n 01 bomber 0 009 @ 02691156 n 0000 @ 04552348 n 0000 ;c 08199025 n 0000 + 01131902 v 0102 ~i 02766044 n 0000 %p 02868429 n 0000 %p 02950482 n 0000 ~ 03215191 n 0000 ~ 04308273 n 0000 | a military aircraft that drops bombs during flight -02867966 06 n 01 bomber_jacket 0 001 @ 03589791 n 0000 | a jacket gathered into a band at the waist -02868068 06 n 01 bombie 0 001 @ 02868240 n 0000 | an unexploded bomblet; "unexploded bomblets known in Laos as `bombies' caused farmers to fear cultivating their fields" -02868240 06 n 02 bomblet 0 cluster_bomblet 0 004 @ 02866578 n 0000 #p 03054605 n 0000 + 02866578 n 0101 ~ 02868068 n 0000 | one of the smaller bombs that are released from a cluster bomb -02868429 06 n 01 bomb_rack 0 002 @ 02969886 n 0000 #p 02867715 n 0000 | a device on an aircraft for carrying bombs -02868546 06 n 01 bombshell 0 001 @ 02866578 n 0000 | an explosive bomb or artillery shell -02868638 06 n 03 bomb_shelter 0 air-raid_shelter 0 bombproof 0 002 @ 03003730 n 0000 + 00166220 v 0301 | a chamber (often underground) reinforced against bombing and provided with food and living facilities; used during air raids -02868870 06 n 01 bombsight 0 001 @ 04216963 n 0000 | a sighting device in an aircraft for aiming bombs -02868975 06 n 03 bone-ash_cup 0 cupel 0 refractory_pot 0 001 @ 04531098 n 0000 | a small porous bowl made of bone ash used in assaying to separate precious metals from e.g. lead -02869155 06 n 01 bone_china 0 001 @ 03018209 n 0000 | fine porcelain that contains bone ash -02869249 06 n 04 bones 0 castanets 0 clappers 0 finger_cymbals 0 002 @ 03915437 n 0000 ;u 06295235 n 0000 | a percussion instrument consisting of a pair of hollow pieces of wood or bone (usually held between the thumb and fingers) that are made to click together (as by Spanish dancers) in rhythm with the dance -02869563 06 n 01 boneshaker 0 001 @ 04576211 n 0000 | any wheeled vehicle that is dilapidated and uncomfortable; "that old bike without rubber tires was a real boneshaker" -02869737 06 n 02 bongo 0 bongo_drum 0 001 @ 03249569 n 0000 | a small drum; played with the hands -02869837 06 n 02 bonnet 0 poke_bonnet 0 003 @ 03497657 n 0000 + 00047511 v 0101 ~ 04354589 n 0000 | a hat tied under the chin -02869965 06 n 01 booby_prize 0 002 @ 04487996 n 0000 ~ 04598010 n 0000 | a prize given to one who finishes last in a contest -02870092 06 n 02 book 0 volume 0 016 @ 04007894 n 0000 + 06413889 n 0101 ~ 02695079 n 0000 %p 02840619 n 0000 ~ 03064118 n 0000 ~ 03377245 n 0000 %p 03382533 n 0000 ~ 03492391 n 0000 ~ 03602562 n 0000 ~ 03833065 n 0000 ~ 03853588 n 0000 ~ 03886432 n 0000 ~ 03931651 n 0000 ~ 04227370 n 0000 %p 04277980 n 0000 ~ 06415419 n 0000 | physical objects consisting of a number of pages bound together; "he used a large book as a doorstop" -02870526 06 n 01 book 2 001 @ 04007894 n 0000 | a number of sheets (ticket or stamps etc.) bound together on one edge; "he bought a book of stamps" -02870676 06 n 01 book_bag 0 001 @ 02773037 n 0000 | a bag in which students carry their books -02870772 06 n 01 bookbindery 0 001 @ 04603081 n 0000 | a bookbinder's workshop; a place for binding books -02870880 06 n 01 bookcase 0 002 @ 03405725 n 0000 %p 04190052 n 0000 | a piece of furniture with shelves for storing books -02871005 06 n 01 bookend 0 001 @ 04359589 n 0000 | a support placed at the end of a row of books to keep them upright (on a shelf or table) -02871147 06 n 02 bookmark 0 bookmarker 0 001 @ 03721797 n 0000 | a marker (a piece of paper or ribbon) placed between the pages of a book to mark the reader's place -02871314 06 n 01 bookmobile 0 001 @ 04520170 n 0000 | a van with shelves of books; serves as a mobile library or bookstore -02871439 06 n 01 bookshelf 0 001 @ 04190052 n 0000 | a shelf on which to keep books -02871525 06 n 03 bookshop 0 bookstore 0 bookstall 0 001 @ 04202417 n 0000 | a shop where books are sold -02871631 06 n 01 boom 0 002 @ 04267577 n 0000 #p 04128837 n 0000 | any of various more-or-less horizontal spars or poles used to extend the foot of a sail or for handling cargo or in mooring -02871824 06 n 02 boom 1 microphone_boom 0 001 @ 03976657 n 0000 | a pole carrying an overhead microphone projected over a film or tv set -02871963 06 n 03 boomerang 0 throwing_stick 0 throw_stick 0 004 @ 04008634 n 0000 ;r 08831004 n 0000 + 02005778 v 0101 ~ 03629401 n 0000 | a curved piece of wood; when properly thrown will return to thrower -02872172 06 n 04 booster 0 booster_dose 0 booster_shot 0 recall_dose 0 001 @ 03225238 n 0000 | an additional dose that makes sure the first dose was effective -02872333 06 n 05 booster 1 booster_rocket 0 booster_unit 0 takeoff_booster 0 takeoff_rocket 0 003 @ 04099175 n 0000 #p 03799375 n 0000 + 01516071 v 0101 | the first stage of a multistage rocket -02872529 06 n 06 booster 2 booster_amplifier 0 booster_station 0 relay_link 0 relay_station 0 relay_transmitter 0 002 @ 02705944 n 0000 #p 03077958 n 0000 | an amplifier for restoring the strength of a transmitted signal -02872752 06 n 01 boot 0 022 @ 03380867 n 0000 %p 02874537 n 0000 %p 02874642 n 0000 ~ 02925666 n 0000 %p 03068707 n 0000 %p 03116942 n 0000 ~ 03124043 n 0000 %p 03308853 n 0000 %p 03511426 n 0000 ~ 03516844 n 0000 ~ 03521544 n 0000 %p 03573848 n 0000 %p 03574243 n 0000 %p 03862190 n 0000 ~ 04089666 n 0000 ~ 04116294 n 0000 ~ 04228581 n 0000 %p 04290259 n 0000 %p 04444522 n 0000 %p 04444749 n 0000 %p 04450994 n 0000 %p 04514359 n 0000 | footwear that covers the whole foot and lower leg -02873244 06 n 01 boot 1 002 @ 03696065 n 0000 ;r 08860123 n 0000 | British term for the luggage compartment in a car -02873363 06 n 04 boot 2 the_boot 0 iron_boot 0 iron_heel 0 001 @ 03576215 n 0000 | an instrument of torture that is used to heat or crush the foot and leg -02873520 06 n 01 boot 3 001 @ 04190747 n 0000 | protective casing for something that resembles a leg -02873623 06 n 01 boot_camp 0 002 @ 02944826 n 0000 ;c 08199025 n 0000 | camp for training military recruits -02873733 06 n 02 bootee 0 bootie 0 001 @ 04241394 n 0000 | a slipper that is soft and wool (for babies) -02873839 06 n 04 booth 0 cubicle 0 stall 0 kiosk 0 008 @ 03049457 n 0000 ~ 03090172 n 0000 ~ 03978421 n 0000 ~ 04010566 n 0000 ~ 04209613 n 0000 ~ 04401680 n 0000 ~ 04449290 n 0000 ~ 04541987 n 0000 | small area set off by walls for special use -02874086 06 n 01 booth 1 002 @ 04202417 n 0000 ~ 04299215 n 0000 | a small shop at a fair; for selling goods or entertainment -02874214 06 n 01 booth 2 001 @ 04379243 n 0000 | a table (in a restaurant or bar) surrounded by two high-backed benches -02874336 06 n 01 boothose 0 001 @ 04323819 n 0000 | protective stockings worn with or in place of boots -02874442 06 n 01 bootjack 0 001 @ 03183080 n 0000 | has V-shaped notch for pulling off boots -02874537 06 n 01 bootlace 0 002 @ 03631445 n 0000 #p 02872752 n 0000 | a long lace for fastening boots -02874642 06 n 01 bootleg 0 002 @ 03122748 n 0000 #p 02872752 n 0000 | the part of a boot above the instep -02874750 06 n 01 bootstrap 0 001 @ 04333129 n 0000 | a strap that is looped and sewn to the top of a boot for pulling it on -02874876 06 n 01 Bordeaux_mixture 0 001 @ 02720201 n 0000 | antifungal agent consisting of a solution of copper sulphate and quicklime -02875013 06 n 01 border 0 006 @ 03264542 n 0000 + 01586850 v 0103 + 01467370 v 0105 ~ 03265479 n 0000 ~ 04171066 n 0000 ~ 04528256 n 0000 | a strip forming the outer edge of something; "the rug had a wide blue border" -02875233 06 n 03 bore 0 bore-hole 0 drill_hole 0 004 @ 03302121 n 0000 ;c 00922327 n 0000 + 01443021 v 0101 ~ 04206695 n 0000 | a hole or passage made by a drill; usually made for exploratory purposes -02875436 06 n 04 bore_bit 0 borer 0 rock_drill 0 stone_drill 0 005 @ 03239726 n 0000 + 01443021 v 0201 ~ 03136254 n 0000 ~ 04303852 n 0000 ~ 04331765 n 0000 | a drill for penetrating rock -02875626 06 n 01 boron_chamber 0 002 @ 03583621 n 0000 #p 02875815 n 0000 | an ionization chamber lined with boron or filled with boron trifluoride gas for counting low velocity neutrons -02875815 06 n 01 boron_counter_tube 0 002 @ 04012665 n 0000 %p 02875626 n 0000 | a proportional counter tube for counting neutrons -02875948 06 n 01 borstal 0 001 @ 04069777 n 0000 | formerly a British reform school for youths considered too young to send to prison -02876084 06 n 01 bosom 0 002 @ 03050026 n 0000 #p 03419014 n 0000 | cloth that covers the chest or breasts -02876193 06 n 01 Bosporus_Bridge 0 002 @i 04366367 n 0000 #p 09041785 n 0000 | a suspension bridge across the Bosporus at Istanbul -02876326 06 n 01 Boston_rocker 0 001 @ 04099969 n 0000 | a rocking chair that has a high spindle back and a decorative top panel -02876457 06 n 01 bota 0 001 @ 04591713 n 0000 | a wine bottle made of leather -02876537 06 n 01 botanical 0 001 @ 03247620 n 0000 | a drug made from part of a plant (as the bark or root or leaves) -02876657 06 n 01 bottle 0 023 @ 04531098 n 0000 + 02283080 v 0101 + 01502279 v 0101 ~ 02823428 n 0000 %p 02877765 n 0000 ~ 02960903 n 0000 ~ 02962061 n 0000 ~ 02985963 n 0000 ~ 03140431 n 0000 ~ 03174450 n 0000 ~ 03359566 n 0000 ~ 03449451 n 0000 ~ 03571625 n 0000 ~ 03603722 n 0000 %p 03794392 n 0000 ~ 03923379 n 0000 ~ 03937543 n 0000 ~ 03983396 n 0000 ~ 04246060 n 0000 ~ 04271793 n 0000 ~ 04557648 n 0000 ~ 04579056 n 0000 ~ 04591713 n 0000 | a glass or plastic vessel used for storing drinks or other liquids; typically cylindrical without handles and with a narrow neck that can be plugged or capped -02877266 06 n 03 bottle 1 feeding_bottle 0 nursing_bottle 0 002 @ 04531098 n 0000 %p 03825788 n 0000 | a vessel fitted with a flexible teat and filled with milk or formula; used as a substitute for breast feeding infants and very young children -02877513 06 n 01 bottle_bank 0 002 @ 04065789 n 0000 ;r 08860123 n 0000 | a place where bottles can be deposited for recycling -02877642 06 n 01 bottlebrush 0 001 @ 02908217 n 0000 | a cylindrical brush on a thin shaft that is used to clean bottles -02877765 06 n 01 bottlecap 0 002 @ 02954938 n 0000 #p 02876657 n 0000 | a cap that seals a bottle -02877865 06 n 01 bottleneck 0 001 @ 03892891 n 0000 | the narrow part of a bottle near the top -02877962 06 n 01 bottle_opener 0 003 @ 03848348 n 0000 ~ 02956795 n 0000 ~ 03109150 n 0000 | an opener for removing caps or corks from bottles -02878107 06 n 01 bottling_plant 0 001 @ 03956922 n 0000 | a plant where beverages are put into bottles with caps -02878222 06 n 04 bottom 0 freighter 0 merchantman 0 merchant_ship 0 003 @ 02965300 n 0000 + 01951276 v 0201 + 01489161 v 0201 | a cargo ship; "they did much of their overseas trade in foreign bottoms" -02878425 06 n 01 boucle 0 001 @ 03309808 n 0000 | a fabric of uneven yarn that has an uneven knobby effect -02878534 06 n 01 boudoir 0 001 @ 02821627 n 0000 | a lady's bedroom or private sitting room -02878628 06 n 03 boulle 0 boule 0 buhl 0 001 @ 03282401 n 0000 | an inlaid furniture decoration; tortoiseshell and yellow and white metal form scrolls in cabinetwork -02878796 06 n 01 bouncing_betty 0 001 @ 03639675 n 0000 | an antipersonnel land mine -02878883 06 n 02 Bounty 0 H.M.S._Bounty 0 001 @i 04194289 n 0000 | a ship of the British navy; in 1789 part of the crew mutinied against their commander William Bligh and set him afloat in an open boat -02879087 06 n 04 bouquet 0 corsage 0 posy 0 nosegay 0 001 @ 03368141 n 0000 | an arrangement of flowers that is usually given as a present -02879228 06 n 01 Bourse 0 001 @i 04323026 n 0000 | the stock exchange in Paris -02879309 06 n 02 boutique 0 dress_shop 0 001 @ 04202417 n 0000 | a shop that sells women's clothes and jewelry -02879422 06 n 01 boutonniere 0 001 @ 02681518 n 0000 | a flower that is worn in a buttonhole -02879517 06 n 01 bow 0 003 @ 04317420 n 0000 + 01729295 v 0101 ~ 03332271 n 0000 | a slightly curved piece of resilient wood with taut horsehair strands; used in playing certain stringed instruments -02879718 06 n 01 bow 1 008 @ 04565375 n 0000 #p 02880393 n 0000 %p 02883101 n 0000 ~ 03136369 n 0000 ~ 03148632 n 0000 ~ 03483531 n 0000 %p 03669094 n 0000 ~ 03687928 n 0000 | a weapon for shooting arrows, composed of a curved piece of resilient wood with a taut cord to propel the arrow -02880008 06 n 04 bow 2 fore 0 prow 0 stem 0 002 @ 03398467 n 0000 #p 04530566 n 0000 | front part of a vessel or aircraft; "he pointed the bow of the boat toward the finish line" -02880189 06 n 02 bow 3 bowknot 0 001 @ 03627232 n 0000 | a knot with two loops and loose ends; used to tie shoelaces -02880308 06 n 01 bow 4 001 @ 03169390 n 0000 | a decorative interlacing of ribbons -02880393 06 n 01 bow_and_arrow 0 003 @ 04565375 n 0000 %p 02742753 n 0000 %p 02879718 n 0000 | a weapon consisting of arrows and the bow to shoot them -02880546 06 n 02 bowed_stringed_instrument 0 string 5 008 @ 04338517 n 0000 + 01359145 v 0201 ~ 02803934 n 0000 ~ 02992211 n 0000 %p 03341297 n 0000 ~ 04536153 n 0000 ~ 04536335 n 0000 ~ 04536866 n 0000 | stringed instruments that are played with a bow; "the strings played superlatively well" -02880842 06 n 01 Bowie_knife 0 001 @ 03623556 n 0000 | a stout hunting knife with a single edge -02880940 06 n 01 bowl 0 009 @ 03206908 n 0000 ~ 02997910 n 0000 ~ 03341606 n 0000 ~ 03775546 n 0000 ~ 03984759 n 0000 ~ 04023695 n 0000 ~ 04130257 n 0000 ~ 04242704 n 0000 ~ 04263257 n 0000 | a dish that is round and open at the top for serving foods -02881193 06 n 01 bowl 1 005 @ 04531098 n 0000 ~ 03350204 n 0000 ~ 03602194 n 0000 ~ 03733465 n 0000 ~ 04447028 n 0000 | a round vessel that is open at the top; used chiefly for holding food or liquids; -02881397 06 n 02 bowl 2 pipe_bowl 0 002 @ 03094503 n 0000 #p 03945167 n 0000 | a small round container that is open at the top for holding tobacco -02881546 06 n 01 bowl 4 004 @ 02778669 n 0000 #p 00462804 n 0000 + 01887324 v 0101 + 01146507 v 0101 | a wooden ball (with flattened sides so that it rolls on a curved course) used in the game of lawn bowling -02881757 06 n 05 bowler_hat 0 bowler 0 derby_hat 0 derby 0 plug_hat 0 001 @ 03497657 n 0000 | a felt hat that is round and hard with a narrow brim -02881906 06 n 02 bowline 0 bowline_knot 0 001 @ 03689570 n 0000 | a loop knot that neither slips nor jams -02882014 06 n 03 bowling_alley 0 alley 1 skittle_alley 0 003 @ 03640660 n 0000 #p 02882483 n 0000 %p 08572877 n 0000 | a lane down which a bowling ball is rolled toward pins -02882190 06 n 01 bowling_alley 1 001 @ 02913152 n 0000 | a building that contains several alleys for bowling -02882301 06 n 02 bowling_ball 0 bowl 5 004 @ 02778669 n 0000 #p 02882483 n 0000 %p 03341707 n 0000 %p 04431025 n 0000 | a large ball with finger holes used in the sport of bowling -02882483 06 n 01 bowling_equipment 0 005 @ 03414162 n 0000 %p 02882014 n 0000 %p 02882301 n 0000 ~ 02882647 n 0000 %p 02882894 n 0000 | equipment used in bowling -02882647 06 n 02 bowling_pin 0 pin 4 006 @ 02882483 n 0000 ~ 02948293 n 0000 ~ 03253279 n 0000 ~ 03504293 n 0000 ~ 03825271 n 0000 ~ 04410565 n 0000 | a club-shaped wooden object used in bowling; set up in triangular groups of ten as the target -02882894 06 n 01 bowling_shoe 0 002 @ 04199027 n 0000 #p 02882483 n 0000 | a special shoe worn when bowling -02883004 06 n 01 bowsprit 0 001 @ 04267577 n 0000 | a spar projecting from the bow of a vessel -02883101 06 n 01 bowstring 0 002 @ 03106110 n 0000 #p 02879718 n 0000 | the string of an archer's bow -02883205 06 n 03 bow_tie 0 bow-tie 0 bowtie 0 003 @ 03815615 n 0000 ~ 02847631 n 0000 ~ 04580994 n 0000 | a man's tie that ties in a bow -02883344 06 n 01 box 0 030 @ 03094503 n 0000 + 00657600 a 0102 + 01485158 v 0101 ~ 02782681 n 0000 ~ 02786331 n 0000 %p 02798574 n 0000 ~ 02971356 n 0000 ~ 02978055 n 0000 ~ 02998003 n 0000 ~ 03014705 n 0000 ~ 03030353 n 0000 ~ 03064758 n 0000 ~ 03127925 n 0000 ~ 03360038 n 0000 ~ 03524287 n 0000 %p 03661340 n 0000 ~ 03710193 n 0000 ~ 03729402 n 0000 ~ 03876111 n 0000 ~ 03908618 n 0000 ~ 03963483 n 0000 ~ 03982767 n 0000 ~ 04030414 n 0000 ~ 04182152 n 0000 ~ 04200258 n 0000 ~ 04253057 n 0000 ~ 04340750 n 0000 ~ 04439505 n 0000 ~ 04495051 n 0000 ~ 04589325 n 0000 | a (usually rectangular) container; may have a lid; "he rummaged through a box of spare parts" -02884011 06 n 01 box 1 004 @ 03079741 n 0000 ~ 03606347 n 0000 ~ 04000592 n 0000 ~ 04596492 n 0000 | separate partitioned area in a public place for a few people; "the sentry stayed in his box to avoid the cold" -02884225 06 n 02 box 2 loge 1 004 @ 03079741 n 0000 #p 02777927 n 0000 %p 02886183 n 0000 ~ 04232312 n 0000 | private area in a theater or grandstand where a small group can watch the performance; "the royal box was empty" -02884450 06 n 02 box 3 box_seat 1 002 @ 04161981 n 0000 #p 03055670 n 0000 | the driver's seat on a coach; "an armed guard sat in the box with the driver" -02884607 06 n 01 box 4 003 @ 02735688 n 0000 #p 02780916 n 0000 ~ 02810270 n 0000 | any one of several designated areas on a ball field where the batter or catcher or coaches are positioned; "the umpire warned the batter to stay in the batter's box" -02884859 06 n 02 box_beam 0 box_girder 0 001 @ 02815950 n 0000 | a beam built up from boards; has a hollow rectangular cross section -02884994 06 n 02 box_camera 0 box_Kodak 0 001 @ 02942699 n 0000 | a simple camera shaped like a rectangular box -02885108 06 n 01 boxcar 0 002 @ 03393912 n 0000 ~ 04322692 n 0000 | a freight car with roof and sliding doors in the sides -02885233 06 n 01 box_coat 0 001 @ 03057021 n 0000 | a short coat that hangs loosely from the shoulders -02885338 06 n 01 boxing_equipment 0 003 @ 04285146 n 0000 ;c 00445802 n 0000 ~ 02885462 n 0000 | equipment used in boxing -02885462 06 n 02 boxing_glove 0 glove 2 002 @ 02885338 n 0000 ;c 00445802 n 0000 | boxing equipment consisting of big and padded coverings for the fists of the fighters; worn for the sport of boxing -02885663 06 n 02 boxing_ring 0 prize_ring 0 002 @ 04092959 n 0000 ;c 00445802 n 0000 | a square ring where boxers fight -02885785 06 n 01 box_kite 0 001 @ 03621473 n 0000 | a kite shaped like a box open at both ends -02885882 06 n 03 box_office 0 ticket_office 0 ticket_booth 0 002 @ 03841666 n 0000 #p 04417809 n 0000 | the office where tickets of admission are sold -02886035 06 n 01 box_pleat 0 002 @ 03965907 n 0000 #p 04230808 n 0000 | a flat double pleat made by folding under the fabric on either side of it -02886183 06 n 01 box_seat 0 003 @ 04161981 n 0000 #p 02884225 n 0000 #p 03452953 n 0000 | a special seat in a theater or grandstand box -02886321 06 n 01 box_spring 0 001 @ 02822399 n 0000 | a coiled bedspring in a frame that is covered with cloth -02886434 06 n 02 box_wrench 0 box_end_wrench 0 002 @ 04606574 n 0000 %p 04255163 n 0000 | a wrench with a closed loop (a socket) that fits over a nut or bolt head -02886599 06 n 02 brace 0 bracing 0 012 @ 04341414 n 0000 @ 04336034 n 0000 #p 03391770 n 0000 + 01219706 v 0201 + 01219706 v 0101 ~ 03137579 n 0000 ~ 03471347 n 0000 ~ 03471779 n 0000 ~ 04307419 n 0000 ~ 04339062 n 0000 ~ 04343148 n 0000 ~ 04433585 n 0000 | a structural member used to stiffen a framework -02886907 06 n 02 brace 1 bitstock 0 002 @ 04321804 n 0000 #p 02887832 n 0000 | a carpenter's tool having a crank handle for turning and a socket to hold a bit for boring -02887079 06 n 03 brace 3 braces 2 orthodontic_braces 0 001 @ 03175604 n 0000 | an appliance that corrects dental irregularities -02887209 06 n 01 brace 4 009 @ 04359589 n 0000 @ 04336034 n 0000 + 01219706 v 0101 + 01219993 v 0101 ~ 02713003 n 0000 ~ 02768655 n 0000 ~ 03622839 n 0000 ~ 03814639 n 0000 ~ 04226322 n 0000 | a support that steadies or strengthens something else; "he wore a brace on his knee" -02887489 06 n 03 brace 5 suspender 0 gallus 0 004 @ 03746330 n 0000 ;u 06295235 n 0000 + 01481154 v 0201 %p 04333500 n 0000 | elastic straps that hold trousers up (usually used in the plural) -02887683 06 n 01 brace 6 002 @ 04108268 n 0000 ~ 04115906 n 0000 | a rope on a square-rigged ship that is used to swing a yard about and secure it -02887832 06 n 01 brace_and_bit 0 002 @ 03239726 n 0000 %p 02886907 n 0000 | a drill consisting of a bit and a brace to hold and turn it -02887970 06 n 02 bracelet 0 bangle 1 004 @ 03597469 n 0000 ~ 02713097 n 0000 ~ 02739123 n 0000 %p 03038281 n 0000 | jewelry worn around the wrist for decoration -02888133 06 n 02 bracer 0 pick-me-up 0 002 @ 04451473 n 0000 + 00022686 v 0103 | a tonic or restorative (especially a drink of liquor) -02888270 06 n 02 bracer 1 armguard 0 001 @ 04014297 n 0000 | a protective covering for the wrist or arm that is used in archery and fencing and other sports -02888429 06 n 01 brace_wrench 0 001 @ 04606574 n 0000 | a wrench shaped like a brace (has a handle shaped like a crank) and a socket head -02888569 06 n 02 bracket 0 wall_bracket 0 008 @ 04359589 n 0000 + 01218791 v 0101 ~ 02712545 n 0000 ~ 03092476 n 0000 ~ 03105467 n 0000 ~ 03778459 n 0000 ~ 04148579 n 0000 ~ 04190376 n 0000 | a support projecting from a wall (as to hold a shelf) -02888817 06 n 01 brad 0 002 @ 03804744 n 0000 + 01342439 v 0101 | a small nail -02888898 06 n 02 bradawl 0 pricker 0 002 @ 02763714 n 0000 + 01440801 v 0202 | an awl for making small holes for brads or small screws -02889035 06 n 03 braid 0 gold_braid 0 braiding 0 005 @ 04484160 n 0000 + 01674717 v 0101 + 01519727 v 0101 ~ 02684515 n 0000 ~ 04264134 n 0000 | trimming used to decorate clothes or curtains -02889228 06 n 01 brail 0 001 @ 04108268 n 0000 | a small rope (one of several) used to draw a sail in -02889332 06 n 01 brail 1 001 @ 03819994 n 0000 | a small net used to draw fish into a boat -02889425 06 n 01 brake 0 008 @ 04081844 n 0000 #p 04576211 n 0000 + 01863817 v 0101 + 01863593 v 0101 ~ 02891188 n 0000 ~ 03056873 n 0000 ~ 03483637 n 0000 ~ 03995018 n 0000 | a restraint used to slow or stop a vehicle -02889646 06 n 01 brake 1 001 @ 04081844 n 0000 | anything that slows or hinders a process; "she wan not ready to put the brakes on her life with a marriage"; "new legislation will put the brakes on spending" -02889856 06 n 01 brake_band 0 002 @ 02784998 n 0000 #p 02891188 n 0000 | a band that can be tightened around a shaft to stop its rotation -02889996 06 n 03 brake_cylinder 0 hydraulic_brake_cylinder 0 master_cylinder 0 002 @ 03156405 n 0000 #p 03551084 n 0000 | a cylinder that contains brake fluid that is compressed by a piston -02890188 06 n 01 brake_disk 0 002 @ 03208556 n 0000 #p 03208938 n 0000 | a disk or plate that is fixed to the wheel; pressure is applied to it by the brake pads -02890351 06 n 02 brake_drum 0 drum 2 002 @ 13899804 n 0000 #p 03250089 n 0000 | a hollow cast-iron cylinder attached to the wheel that forms part of the brakes -02890513 06 n 01 brake_lining 0 002 @ 03673767 n 0000 #p 02890940 n 0000 | the lining on the brake shoes that comes in contact with the brake drum -02890662 06 n 01 brake_pad 0 002 @ 04081844 n 0000 #p 03208938 n 0000 | one of the pads that apply friction to both sides of the brake disk -02890804 06 n 01 brake_pedal 0 002 @ 03903424 n 0000 #p 03551084 n 0000 | foot pedal that moves a piston in the master brake cylinder -02890940 06 n 03 brake_shoe 0 shoe 2 skid 1 004 @ 04081844 n 0000 #p 03250089 n 0000 + 01871217 v 0301 %p 02890513 n 0000 | a restraint provided when the brake linings are moved hydraulically against the brake drum to retard the wheel's rotation -02891188 06 n 02 brake_system 0 brakes 0 005 @ 02889425 n 0000 #p 03791235 n 0000 %p 02889856 n 0000 ~ 03551084 n 0000 %p 07265990 n 0000 | a braking device consisting of a combination of interacting parts that work to slow a motor vehicle -02891430 06 n 03 branch_line 0 spur_track 0 spur 1 002 @ 03671272 n 0000 ~ 03689700 n 0000 | a railway line connected to a trunk line -02891566 06 n 02 brand-name_drug 0 proprietary_drug 0 002 @ 03247620 n 0000 ! 03434549 n 0101 | a drug that has a trade name and is protected by a patent (can be produced and sold only by the company holding the patent) -02891788 06 n 02 brass 0 brass_instrument 0 012 @ 04586932 n 0000 + 02670411 a 0101 ~ 02793089 n 0000 ~ 02804252 n 0000 ~ 02912894 n 0000 ~ 03037899 n 0000 ~ 03110669 n 0000 ~ 03369276 n 0000 ~ 03394916 n 0000 ~ 04141198 n 0000 ~ 04487394 n 0000 %p 04519536 n 0000 | a wind instrument that consists of a brass tube (usually of variable length) that is blown by means of a cup-shaped or funnel-shaped mouthpiece -02892201 06 n 03 brass 1 memorial_tablet 0 plaque 0 001 @ 03743902 n 0000 | a memorial made of brass -02892304 06 n 01 brass 2 001 @ 03169390 n 0000 | an ornament or utensil made of brass -02892392 06 n 01 brassard 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the arm -02892499 06 n 01 brasserie 0 001 @ 04081281 n 0000 | a small restaurant serving beer and wine as well as food; usually cheap -02892626 06 n 01 brassie 0 001 @ 04597066 n 0000 | (formerly) a golfing wood with a face more elevated that a driver but less than a spoon -02892767 06 n 03 brassiere 0 bra 0 bandeau 0 004 @ 04508163 n 0000 @ 04596852 n 0000 %p 04333500 n 0000 ~ 04514241 n 0000 | an undergarment worn by women to support their breasts -02892948 06 n 05 brass_knucks 0 knucks 0 brass_knuckles 0 knuckles 0 knuckle_duster 0 002 @ 04565375 n 0000 ;u 06295235 n 0000 | a small metal weapon; worn over the knuckles on the back of the hand -02893148 06 n 01 brass_monkey 0 001 @ 02797692 n 0000 | a metal stand that formerly held cannon balls on sailing ships -02893269 06 n 01 brattice 0 001 @ 03894379 n 0000 | a partition (often temporary) of planks or cloth that is used to control ventilation in a mine -02893418 06 n 02 brazier 0 brasier 0 002 @ 03508101 n 0000 ~ 03517509 n 0000 | large metal container in which coal or charcoal is burned; warms people who must stay outside for long times -02893608 06 n 01 breadbasket 0 001 @ 02801938 n 0000 | a basket for serving bread -02893692 06 n 02 bread-bin 0 breadbox 0 001 @ 03094503 n 0000 | a container used to keep bread or cake in -02893800 06 n 02 breadboard 0 bread_board 0 001 @ 02856463 n 0000 | a wooden or plastic board on which dough is kneaded or bread is sliced -02893941 06 n 01 bread_knife 0 001 @ 03623556 n 0000 | a knife used to cut bread -02894024 06 n 01 breakable 0 001 @ 00022903 n 0000 | an article that is fragile and easily broken; "pack the breakables separately" -02894158 06 n 02 breakfast_area 0 breakfast_nook 0 001 @ 02735688 n 0000 | a place for light meals (usually near a kitchen); "the breakfast nook had a built in table and seats" -02894337 06 n 01 breakfast_table 0 001 @ 04379243 n 0000 | a table where breakfast is eaten -02894431 06 n 01 break_seal 0 001 @ 04159354 n 0000 | a seal that must be broken when first used and cannot easily be resealed; "it was stored in a tube with a break seal" -02894605 06 n 07 breakwater 0 groin 0 groyne 0 mole 0 bulwark 0 seawall 0 jetty 0 002 @ 02796623 n 0000 + 01128071 v 0501 | a protective structure of stone or concrete; extends from shore into the water to prevent a beach from washing away -02894847 06 n 01 breast_drill 0 001 @ 03239726 n 0000 | a portable drill with a plate that is pressed against the chest to force the drill point into the work -02895008 06 n 01 breast_implant 0 001 @ 03563710 n 0000 | an implant for cosmetic purposes to replace a breast that has been surgically removed -02895154 06 n 03 breastplate 0 aegis 0 egis 0 003 @ 02740764 n 0000 #p 02862048 n 0000 ~ 03959014 n 0000 | armor plate that protects the chest; the front part of a cuirass -02895328 06 n 01 breast_pocket 0 002 @ 03972524 n 0000 #p 03057021 n 0000 | a pocket inside of a man's coat -02895438 06 n 02 breathalyzer 0 breathalyser 0 001 @ 03183080 n 0000 | a device that measures chemicals (especially the alcohol content) in a person's expired breath -02895606 06 n 04 breathing_device 0 breathing_apparatus 0 breathing_machine 0 ventilator 1 006 @ 03183080 n 0000 ~ 02731629 n 0000 ~ 03868863 n 0000 ~ 04080833 n 0000 ~ 04082344 n 0000 ~ 04251144 n 0000 | a device that facilitates breathing in cases of respiratory failure -02895881 06 n 03 breech 0 rear_of_barrel 0 rear_of_tube 0 003 @ 03848729 n 0000 #p 02795169 n 0000 %p 02896074 n 0000 | opening in the rear of the barrel of a gun where bullets can be loaded -02896074 06 n 02 breechblock 0 breech_closer 0 002 @ 02853449 n 0000 #p 02895881 n 0000 | a metal block in breech-loading firearms that is withdrawn to insert a cartridge and replaced to close the breech before firing -02896294 06 n 03 breechcloth 0 breechclout 0 loincloth 0 002 @ 03419014 n 0000 ~ 03186199 n 0000 | a garment that provides covering for the loins -02896442 06 n 05 breeches 0 knee_breeches 0 knee_pants 0 knickerbockers 0 knickers 1 007 @ 04489008 n 0000 ;u 06295235 n 0000 ~ 02902816 n 0000 ~ 02910864 n 0000 %p 03062651 n 0000 ~ 03970363 n 0000 ~ 04491934 n 0000 | trousers ending above the knee -02896694 06 n 01 breeches_buoy 0 001 @ 03662719 n 0000 | a life buoy in the form of a ring with short breeches for support; used to transfer people from a ship -02896856 06 n 01 breechloader 0 001 @ 03467984 n 0000 | a gun that is loaded at the breech -02896949 06 n 01 breeder_reactor 0 002 @ 03834040 n 0000 %p 02849419 n 0000 | a nuclear reactor that produces more fissile material than it burns -02897097 06 n 02 Bren 0 Bren_gun 0 001 @ 04347519 n 0000 | a submachine gun operated by gas pressure; used by the British in World War II -02897237 06 n 01 brewery 0 004 @ 03956922 n 0000 + 01663920 v 0101 ~ 02897389 n 0000 ~ 03758992 n 0000 | a plant where beer is brewed by fermentation -02897389 06 n 01 brewpub 0 002 @ 02897237 n 0000 @ 04081281 n 0000 | a combination brewery and restaurant; beer is brewed for consumption on the premises and served along with food -02897572 06 n 02 briar 0 briar_pipe 0 001 @ 03945167 n 0000 | a pipe made from the root (briarroot) of the tree heath -02897692 06 n 05 bric-a-brac 0 knickknack 0 nicknack 0 knickknackery 0 whatnot 0 001 @ 03149951 n 0000 | miscellaneous curios -02897820 06 n 01 brick 0 008 @ 02997391 n 0000 @ 14786479 n 0000 ~ 02681392 n 0000 ~ 03043693 n 0000 ~ 03344642 n 0000 ~ 03503097 n 0000 ~ 03796522 n 0000 %s 14813182 n 0000 | rectangular block of clay baked by the sun or in a kiln; used as a building or paving material -02898093 06 n 01 brickkiln 0 001 @ 03617095 n 0000 | a kiln for making bricks -02898173 06 n 01 bricklayer's_hammer 0 001 @ 03481172 n 0000 | a hammer used in laying bricks -02898269 06 n 02 brick_trowel 0 mason's_trowel 0 001 @ 04489817 n 0000 | a trowel used in masonry -02898369 06 n 01 brickwork 0 002 @ 03725717 n 0000 ~ 03827420 n 0000 | masonry done with bricks and mortar -02898478 06 n 02 brickyard 0 brickfield 0 001 @ 04603081 n 0000 | a place where bricks are made and sold -02898585 06 n 03 bridal_gown 0 wedding_gown 0 wedding_dress 0 001 @ 03450230 n 0000 | a gown worn by the bride at a wedding -02898711 06 n 02 bridge 0 span 0 022 @ 04341686 n 0000 #p 04473432 n 0000 + 01915131 v 0101 + 01296324 v 0101 %p 02733524 n 0000 ~ 02775897 n 0000 ~ 02953197 n 0000 ~ 02986160 n 0000 ~ 03122073 n 0000 ~ 03233744 n 0000 ~ 03379828 n 0000 ~ 03865557 n 0000 %p 03933933 n 0000 ~ 03981760 n 0000 ~ 04108822 n 0000 ~ 04311004 n 0000 ~ 04366367 n 0000 ~ 04449449 n 0000 %p 04479823 n 0000 ~ 04479939 n 0000 ~ 04492749 n 0000 ~ 04532670 n 0000 | a structure that allows people or vehicles to cross an obstacle such as a river or canal or railway etc. -02899257 06 n 02 bridge 1 bridge_deck 0 004 @ 04514738 n 0000 ~ 03091907 n 0000 ~ 03373752 n 0000 %p 03939677 n 0000 | an upper deck where a ship is steered and the captain stands -02899439 06 n 02 bridge 2 nosepiece 0 002 @ 03673971 n 0000 #p 04272054 n 0000 | the link between two lenses; rests on the nose -02899569 06 n 02 bridge 3 bridgework 0 001 @ 03176386 n 0000 | a denture anchored to teeth on either side of missing teeth -02899694 06 n 01 bridge 4 002 @ 04359589 n 0000 #p 04338517 n 0000 | a wooden support that holds the strings up -02899808 06 n 02 bridge 5 bridge_circuit 0 002 @ 03033362 n 0000 ~ 04574761 n 0000 | a circuit consisting of two branches (4 arms arranged in a diamond configuration) across which a meter is connected -02900011 06 n 01 bridged-T 0 001 @ 03033362 n 0000 | a circuit consisting of a T-network with an additional shunt bridging the two series circuits -02900160 06 n 01 bridle 0 009 @ 03503718 n 0000 #p 03494706 n 0000 + 01300655 v 0101 + 01056918 v 0101 %p 02844714 n 0000 %p 03012013 n 0000 %p 03506028 n 0000 %p 03831382 n 0000 %p 04072551 n 0000 | headgear for a horse; includes a headstall and bit and reins to give the rider or driver control -02900459 06 n 02 bridle_path 0 bridle_road 0 001 @ 03899328 n 0000 | a path suitable for riding or leading horses (but not for cars) -02900594 06 n 01 bridoon 0 001 @ 02844714 n 0000 | a bit resembling a snaffle bit; used with a separate curb -02900705 06 n 01 briefcase 0 003 @ 02974697 n 0000 ~ 02755140 n 0000 %p 03485997 n 0000 | a case with a handle; for carrying papers or files or books -02900857 06 n 01 briefcase_bomb 0 001 @ 02866578 n 0000 | a bomb consisting of an explosive and timer hidden inside a briefcase -02900987 06 n 01 briefcase_computer 0 001 @ 03985232 n 0000 | a portable computer housed in a box that resembles a briefcase -02901114 06 n 02 briefs 0 Jockey_shorts 0 002 @ 04508489 n 0000 ;u 06295235 n 0000 | short tight-fitting underpants (trade name Jockey shorts) -02901259 06 n 01 brig 0 002 @ 03907654 n 0000 ;c 04194289 n 0000 | a penal institution (especially on board a ship) -02901377 06 n 01 brig 1 001 @ 04128837 n 0000 | two-masted sailing vessel square-rigged on both masts -02901481 06 n 01 brigandine 0 001 @ 03000247 n 0000 | a medieval coat of chain mail consisting of metal rings sewn onto leather or cloth -02901620 06 n 02 brigantine 0 hermaphrodite_brig 0 001 @ 04128837 n 0000 | two-masted sailing vessel square-rigged on the foremast and fore-and-aft rigged on the mainmast -02901793 06 n 01 brilliantine 0 001 @ 03980026 n 0000 | a pomade to make the hair manageable and lustrous -02901901 06 n 01 brilliant_pebble 0 001 @ 03509843 n 0000 | a code name for a small computerized heat-seeking missile that was supposed to intercept and destroy enemy missiles -02902079 06 n 01 brim 0 004 @ 04008947 n 0000 #p 03497657 n 0000 ~ 02838728 n 0000 ~ 04248396 n 0000 | a circular projection that sticks outward from the crown of a hat -02902250 06 n 03 brim 1 rim 0 lip 0 004 @ 03264136 n 0000 #p 04531098 n 0000 + 00182269 v 0101 ~ 03068707 n 0000 | the top edge of a vessel or other container -02902411 06 n 02 briquette 0 briquet 0 001 @ 02852523 n 0000 | a block made from charcoal or coal dust and burned as fuel -02902535 06 n 01 bristle 0 003 @ 14866889 n 0000 #p 02908217 n 0000 + 00145083 a 0106 | a stiff fiber (coarse hair or filament); natural or synthetic -02902687 06 n 01 bristle_brush 0 001 @ 02908217 n 0000 | a brush that is made with the short stiff hairs of an animal or plant -02902816 06 n 01 britches 0 002 @ 02896442 n 0000 ;u 06295235 n 0000 | informal term for breeches -02902916 06 n 01 broad_arrow 0 001 @ 02742753 n 0000 | an arrow with a wide barbed head -02903006 06 n 02 broadax 0 broadaxe 0 002 @ 02764044 n 0000 ~ 02811468 n 0000 | a large ax with a broad cutting blade -02903126 06 n 01 brochette 0 001 @ 04280970 n 0000 | a small spit or skewer -02903204 06 n 02 broadcaster 0 spreader 1 003 @ 03736970 n 0000 + 02082690 v 0201 + 01501184 v 0101 | a mechanical device for scattering something (seed or fertilizer or sand etc.) in all directions -02903405 06 n 02 broadcasting_station 0 broadcast_station 0 003 @ 04306080 n 0000 ~ 04044119 n 0000 ~ 04406350 n 0000 | a station equipped to broadcast radio or television programs -02903588 06 n 01 broadcasting_studio 0 003 @ 04344246 n 0000 #p 04406350 n 0000 #p 04044119 n 0000 | a studio where broadcasts originate -02903727 06 n 01 broadcloth 0 001 @ 03309808 n 0000 | a closely woven silk or synthetic fabric with a narrow crosswise rib -02903852 06 n 01 broadcloth 1 001 @ 03309808 n 0000 | a densely textured woolen fabric with a lustrous finish -02903964 06 n 01 broad_gauge 0 002 @ 04048075 n 0000 @ 05130028 n 0000 | a railroad track (or its width) broader than the standard 56.5 inches -02904109 06 n 01 broad_hatchet 0 001 @ 03498962 n 0000 | a short-handled hatchet with a broad blade opposite a hammerhead -02904233 06 n 01 broadloom 0 001 @ 04118021 n 0000 | a carpet woven on a wide loom to obviate the need for seams -02904348 06 n 01 broadside 0 002 @ 04213626 n 0000 + 01237231 v 0101 | the whole side of a vessel from stem to stern; "the ship was broadside to the dock" -02904505 06 n 01 broadside 1 002 @ 02738031 n 0000 ;c 08191701 n 0000 | all of the armament that is fired from one side of a warship -02904640 06 n 01 broadsword 0 002 @ 04373894 n 0000 ~ 03039493 n 0000 | a sword with a broad blade and (usually) two cutting edges; used to cut rather than stab -02904803 06 n 01 brocade 0 002 @ 03309808 n 0000 + 01674243 v 0101 | thick heavy expensive material with a raised pattern -02904927 06 n 04 brogan 0 brogue 0 clodhopper 0 work_shoe 0 001 @ 04199027 n 0000 | a thick and heavy shoe -02905036 06 n 01 broiler 0 002 @ 03862676 n 0000 + 00328370 v 0101 | an oven or part of a stove used for broiling -02905152 06 n 01 broken_arch 0 001 @ 02733524 n 0000 | an arch with a gap at the apex; the gap is usually filled with some decoration -02905288 06 n 02 brokerage_house 0 brokerage 0 002 @ 04602044 n 0000 + 02261464 v 0201 | place where a broker conducts his business -02905422 06 n 02 brompheniramine_maleate 0 Dimetane 0 002 @ 02720725 n 0000 #s 03199142 n 0000 | antihistamine (trade name Dimetane) used to treat hypersensitivity reactions (as rhinitis) -02905612 06 n 01 bronchodilator 0 007 @ 03740161 n 0000 ~ 02695321 n 0000 ~ 02701984 n 0000 ~ 03584111 n 0000 ~ 03752649 n 0000 ~ 04419315 n 0000 ~ 14713487 n 0000 | a drug that relaxes and dilates the bronchial passageways and improves the passages of air into the lungs -02905886 06 n 01 bronchoscope 0 002 @ 03739693 n 0000 + 03141026 a 0101 | a slender tubular instrument used to examine the bronchial tubes -02906027 06 n 01 Bronx-Whitestone_Bridge 0 002 @i 04366367 n 0000 #p 09119277 n 0000 | a suspension bridge across the East River in New York City -02906175 06 n 01 bronze 0 001 @ 04157320 n 0000 | a sculpture made of bronze -02906254 06 n 01 bronze_medal 0 001 @ 04487996 n 0000 | a trophy made of bronze (or having the appearance of bronze) that is usually awarded for winning third place in a competition -02906438 06 n 03 brooch 0 broach 0 breastpin 0 003 @ 03940713 n 0000 + 01548576 v 0101 ~ 04354723 n 0000 | a decorative pin worn by women -02906578 06 n 01 Brooklyn_Bridge 0 002 @i 04366367 n 0000 #p 09119277 n 0000 | a suspension bridge across the East River in New York City; opened in 1883 -02906734 06 n 01 broom 0 006 @ 03039947 n 0000 + 01393714 v 0102 ~ 02831894 n 0000 %p 02907082 n 0000 ~ 04026918 n 0000 ~ 04578801 n 0000 | a cleaning implement for sweeping; bundle of straws or twigs attached to a long handle -02906963 06 n 01 broom_closet 0 001 @ 03148324 n 0000 | a small room for storing brooms and other cleaning equipment -02907082 06 n 02 broomstick 0 broom_handle 0 002 @ 03485997 n 0000 #p 02906734 n 0000 | the handle of a broom -02907194 06 n 01 brougham 0 001 @ 04166281 n 0000 | a sedan that has no roof over the driver's seat -02907296 06 n 01 brougham 1 001 @ 02968473 n 0000 | light carriage; pulled by a single horse -02907391 06 n 02 Browning_automatic_rifle 0 BAR 1 001 @ 02760855 n 0000 | a portable .30 caliber automatic rifle operated by gas pressure and fed by cartridges from a magazine; used by United States troops in World War I and in World War II and in the Korean War -02907656 06 n 02 Browning_machine_gun 0 Peacemaker 0 001 @ 03701391 n 0000 | a belt-fed machine gun capable of firing more than 500 rounds per minute; used by United States troops in World War II and the Korean War -02907873 06 n 01 brownstone 0 001 @ 04115256 n 0000 | a row house built of brownstone; reddish brown in color -02907985 06 n 02 Brown_University 0 Brown 0 003 @i 04511002 n 0000 #p 09137032 n 0000 #m 08232706 n 0000 | a university in Rhode Island -02908123 06 n 01 brunch_coat 0 001 @ 03817647 n 0000 | a woman's short housecoat or wrapper -02908217 06 n 01 brush 0 016 @ 03563967 n 0000 + 01243982 v 0101 + 01243809 v 0101 + 00555780 v 0101 ~ 02877642 n 0000 %p 02902535 n 0000 ~ 02902687 n 0000 ~ 03050453 n 0000 ~ 03475581 n 0000 %p 03485997 n 0000 ~ 03805180 n 0000 ~ 03876231 n 0000 ~ 04122349 n 0000 ~ 04156140 n 0000 ~ 04185946 n 0000 ~ 04453156 n 0000 | an implement that has hairs or bristles firmly set into a handle -02908605 06 n 01 brush 1 003 @ 03269401 n 0000 #p 03433877 n 0000 #p 03273061 n 0000 | conducts current between rotating and stationary parts of a generator or motor -02908773 06 n 01 Brussels_carpet 0 001 @ 04118021 n 0000 | a carpet with a strong linen warp and a heavy pile of colored woolen yarns drawn up in uncut loops to form a pattern -02908951 06 n 01 Brussels_lace 0 001 @ 03631177 n 0000 | fine lace with a raised or applique design -02909053 06 n 01 bubble 0 001 @ 03122748 n 0000 | a dome-shaped covering made of transparent glass or plastic -02909165 06 n 01 bubble_chamber 0 001 @ 03894051 n 0000 | an instrument that records the tracks of ionizing particles -02909285 06 n 03 bubble_jet_printer 0 bubble-jet_printer 0 bubblejet 0 001 @ 03571942 n 0000 | a kind of ink-jet printer -02909408 06 n 01 bubbler 1 001 @ 03183080 n 0000 | any of various devices in which air or some other gas is bubbled through a liquid -02909543 06 n 01 Buchenwald 0 002 @i 03086183 n 0000 #p 08766988 n 0000 | a Nazi concentration camp for Jews in World War II that was located in central Germany -02909706 06 n 01 buckboard 0 001 @ 02968473 n 0000 | an open horse-drawn carriage with four wheels; has a seat attached to a flexible board between the two axles -02909870 06 n 02 bucket 0 pail 0 010 @ 04531098 n 0000 #p 04563204 n 0000 + 01502441 v 0101 + 01433042 v 0101 ~ 02950186 n 0000 ~ 03201996 n 0000 ~ 03236580 n 0000 ~ 03615987 n 0000 ~ 04243003 n 0000 ~ 04591887 n 0000 | a roughly cylindrical vessel that is open at the top -02910145 06 n 01 bucket_seat 0 001 @ 04161358 n 0000 | a low single seat as in cars or planes -02910241 06 n 01 bucket_shop 1 001 @ 04395875 n 0000 | (formerly) a cheap saloon selling liquor by the bucket -02910353 06 n 01 buckle 0 004 @ 03323703 n 0000 + 01548290 v 0101 ~ 02828299 n 0000 %p 04010927 n 0000 | fastener that fastens together two ends of a belt or strap; often has loose prong -02910542 06 n 01 buckram 0 002 @ 03309808 n 0000 + 00417975 v 0101 | a coarse cotton fabric stiffened with glue; used in bookbinding and to stiffen clothing -02910701 06 n 01 bucksaw 0 001 @ 04140064 n 0000 | a saw that is set in a frame in the shape of an H; used with both hands to cut wood that is held in a sawbuck -02910864 06 n 01 buckskins 0 002 @ 02896442 n 0000 ;u 06295235 n 0000 | breeches made of buckskin -02910964 06 n 02 buff 0 buffer 4 003 @ 03563967 n 0000 + 01246095 v 0201 + 01246095 v 0101 | an implement consisting of soft material mounted on a block; used for polishing (as in manicuring) -02911158 06 n 02 buffer 0 fender 0 004 @ 03183080 n 0000 #p 02958343 n 0000 + 01115916 v 0203 + 01576917 v 0102 | a cushion-like device that reduces shock due to an impact -02911332 06 n 02 buffer 1 polisher 0 004 @ 03997484 n 0000 + 01245637 v 0201 + 01246095 v 0101 %p 02912319 n 0000 | a power tool used to buff surfaces -02911485 06 n 03 buffer 3 buffer_storage 0 buffer_store 0 007 @ 03744840 n 0000 #p 04052757 n 0000 ;c 06128570 n 0000 ~ 02935017 n 0000 ~ 03391613 n 0000 ~ 03614383 n 0000 ~ 04004099 n 0000 | (computer science) a part of RAM used for temporary storage of data that is waiting to be sent to a device; used to compensate for differences in the rate of flow of data between components of a computer system -02911890 06 n 02 buffered_aspirin 0 Bufferin 0 002 @ 02748618 n 0000 ;c 06851742 n 0201 | aspirin coated with a substance capable of neutralizing acid (trade name Bufferin) -02912065 06 n 03 buffet 0 counter 4 sideboard 0 006 @ 03405725 n 0000 #p 03200701 n 0000 ~ 03129753 n 0000 %p 03233905 n 0000 ~ 03769610 n 0000 %p 04190052 n 0000 | a piece of furniture that stands at the side of a dining room; has shelves and drawers -02912319 06 n 01 buffing_wheel 0 002 @ 04574999 n 0000 #p 02911332 n 0000 | a wheel that is covered with soft material -02912440 06 n 01 bug 0 002 @ 03759954 n 0000 + 02188848 v 0104 | a small hidden microphone; for listening secretly -02912557 06 n 02 buggy 0 roadster 0 001 @ 02968473 n 0000 | a small lightweight carriage; drawn by a single horse -02912673 06 n 01 buggy_whip 0 001 @ 03539754 n 0000 | a horsewhip once used by a driver of a buggy; "since buggies have been replaced by cars the buggy whip has become a symbol for anything that is hopelessly outmoded" -02912894 06 n 01 bugle 0 002 @ 02891788 n 0000 + 01726039 v 0101 | a brass instrument without valves; used for military calls and fanfares -02913035 06 n 01 bugle 1 001 @ 02815071 n 0000 | a tubular glass or plastic bead sewn onto clothing for decoration -02913152 06 n 02 building 0 edifice 0 079 @ 04341686 n 0000 ~ 02666943 n 0000 %p 02713594 n 0000 %p 02715513 n 0000 ~ 02726681 n 0000 ~ 02734725 n 0000 ~ 02763604 n 0000 ~ 02806992 n 0000 ~ 02882190 n 0000 ~ 02993546 n 0000 ~ 03007444 n 0000 ~ 03054311 n 0000 %p 03109693 n 0000 %p 03109881 n 0000 %p 03110332 n 0000 %p 03110470 n 0000 %p 03120198 n 0000 %p 03146687 n 0000 ~ 03224893 n 0000 %p 03281145 n 0000 %p 03307274 n 0000 ~ 03322570 n 0000 ~ 03326371 n 0000 ~ 03347731 n 0000 %p 03365991 n 0000 %p 03387506 n 0000 ~ 03413428 n 0000 ~ 03430418 n 0000 ~ 03449564 n 0000 ~ 03457902 n 0000 ~ 03478756 n 0000 ~ 03479121 n 0000 ~ 03479266 n 0000 %p 03509025 n 0000 ~ 03542333 n 0000 ~ 03542605 n 0000 ~ 03544360 n 0000 ~ 03545150 n 0000 ~i 03567474 n 0000 %p 03579538 n 0000 ~ 03661043 n 0000 ~ 03739518 n 0000 ~ 03770316 n 0000 ~ 03785499 n 0000 ~ 03839671 n 0000 ~ 03842012 n 0000 ~ 03851124 n 0000 ~ 03859280 n 0000 ~ 03872016 n 0000 ~ 03953416 n 0000 ~ 03956157 n 0000 ~ 03999160 n 0000 ~ 04081281 n 0000 ~ 04081699 n 0000 ~ 04093625 n 0000 ~ 04104500 n 0000 %p 04105068 n 0000 %p 04105893 n 0000 ~ 04112654 n 0000 ~ 04118635 n 0000 %p 04143365 n 0000 ~ 04146050 n 0000 %p 04182890 n 0000 ~ 04201992 n 0000 ~ 04217546 n 0000 %p 04226537 n 0000 ~ 04233124 n 0000 %p 04298308 n 0000 ~ 04343740 n 0000 ~ 04395875 n 0000 ~ 04400109 n 0000 ~ 04407686 n 0000 ~ 04417809 n 0000 %p 04515729 n 0000 %p 04546855 n 0000 ~ 04581595 n 0000 %p 04587648 n 0000 %p 08555710 n 0000 ~i 08876278 n 0000 | a structure that has a roof and walls and stands more or less permanently in one place; "there was a three-story building on the corner"; "it was an imposing edifice" -02914813 06 n 01 building_block 0 005 @ 14786479 n 0000 ~ 02747541 n 0000 ~ 03031957 n 0000 ~ 03615133 n 0000 ~ 04542329 n 0000 | a block of material used in construction work -02914991 06 n 02 building_complex 0 complex 0 004 @ 04341686 n 0000 ~ 03069752 n 0000 ~ 03956922 n 0000 ~ 04088229 n 0000 | a whole structure (as a building) made up of interconnected or related structures -02915199 06 n 02 building_supply_store 0 building_supply_house 0 001 @ 04202417 n 0000 | a store where builders can purchase materials for building houses and related structures -02915379 06 n 01 built-in_bed 1 001 @ 02818832 n 0000 | a bed that is built in and fixed to a wall -02915480 06 n 01 bulb 1 004 @ 03892891 n 0000 #p 03749807 n 0000 #p 04376876 n 0000 + 02041807 a 0102 | a rounded part of a cylindrical instrument (usually at one end); "the bulb of a syringe" -02915675 06 n 01 bulkhead 0 002 @ 03894379 n 0000 #p 04194289 n 0000 | a partition that divides a ship or plane into compartments -02915807 06 n 01 bulla 0 001 @ 04159058 n 0000 | the round leaden seal affixed to a papal bull -02915904 06 n 02 bulldog_clip 0 alligator_clip 0 003 @ 03043958 n 0000 #p 03044671 n 0000 %p 03594277 n 0000 | a clip with a spring that closes the metal jaws -02916065 06 n 01 bulldog_wrench 0 001 @ 04606574 n 0000 | a wrench designed to provide a firm grip on something -02916179 06 n 02 bulldozer 0 dozer 0 003 @ 04465501 n 0000 + 01575388 v 0101 ~ 02712643 n 0000 | large powerful tractor; a large blade in front flattens areas of ground -02916350 06 n 02 bullet 0 slug 0 006 @ 04008634 n 0000 #p 02971691 n 0000 ~ 03255488 n 0000 ~ 03402369 n 0000 ~ 04090548 n 0000 ~ 04116389 n 0000 | a projectile that is fired from a gun -02916538 06 n 02 bulletin_board 0 notice_board 0 002 @ 02856463 n 0000 ~ 02940289 n 0000 | a board that hangs on a wall; displays announcements -02916684 06 n 04 bulletin_board_system 0 bulletin_board 1 electronic_bulletin_board 0 bbs 0 002 @ 03196324 n 0000 ;c 06128570 n 0000 | a computer that is running software that allows users to leave messages and access information of general interest -02916936 06 n 01 bulletproof_vest 0 002 @ 04531873 n 0000 @ 02862048 n 0000 | a vest capable of resisting the impact of a bullet -02917067 06 n 02 bullet_train 0 bullet 1 001 @ 03896233 n 0000 | a high-speed passenger train -02917163 06 n 02 bullfight 0 corrida 0 002 @ 04271891 n 0000 ~ 03833294 n 0000 | a Spanish or Portuguese or Latin American spectacle; a matador baits and (usually) kills a bull in an arena before many spectators -02917377 06 n 03 bullhorn 0 loud_hailer 0 loud-hailer 0 001 @ 03691459 n 0000 | a portable loudspeaker with built-in microphone and amplifier -02917521 06 n 01 bullion 0 001 @ 03570526 n 0000 | gold or silver in bars or ingots -02917607 06 n 02 bullnose 0 bullnosed_plane 0 001 @ 03954731 n 0000 | a small carpenter's plane with the cutting edge near the front -02917742 06 n 03 bullpen 0 detention_cell 0 detention_centre 0 001 @ 02991302 n 0000 | a large cell where prisoners (people awaiting trial or sentence or refugees or illegal immigrants) are confined together temporarily -02917964 06 n 01 bullpen 1 002 @ 02735688 n 0000 #p 02782778 n 0000 | a place on a baseball field where relief pitchers can warm up during a game -02918112 06 n 01 bullring 0 001 @ 04295881 n 0000 | a stadium where bullfights take place -02918204 06 n 01 bull_tongue 0 001 @ 03967562 n 0000 | a heavy plow with a single wide blade; used chiefly in cotton fields -02918330 06 n 01 bulwark 2 002 @ 02796623 n 0000 #p 04194289 n 0000 | a fencelike structure around a deck (usually plural) -02918455 06 n 01 bumboat 0 001 @ 02858304 n 0000 | a small boat that ferries supplies and commodities for sale to a larger ship at anchor -02918595 06 n 01 bumper 0 005 @ 03736970 n 0000 #p 02958343 n 0000 #p 04490091 n 0000 + 01239619 v 0101 %p 02919148 n 0000 | a mechanical device consisting of bars at either end of a vehicle to absorb shock and prevent serious damage -02918831 06 n 01 bumper 1 001 @ 03438257 n 0000 | a glass filled to the brim (especially as a toast); "we quaffed a bumper of ale" -02918964 06 n 02 bumper_car 0 Dodgem 0 001 @ 04524313 n 0000 | a small low-powered electrically powered vehicle driven on a special platform where there are many others to be dodged -02919148 06 n 01 bumper_guard 0 002 @ 03736970 n 0000 #p 02918595 n 0000 | vertical bars attached to a bumper to prevent locking bumpers with another vehicle -02919308 06 n 01 bumper_jack 0 001 @ 03588951 n 0000 | a jack for lifting a motor vehicle by the bumper -02919414 06 n 02 bundle 0 sheaf 0 007 @ 03871083 n 0000 + 01484392 v 0103 + 01487008 v 0101 ~ 02778456 n 0000 ~ 03317233 n 0000 ~ 03870672 n 0000 ~ 04368109 n 0000 | a package of several things tied together for carrying or storing -02919648 06 n 02 bung 0 spile 0 003 @ 03967942 n 0000 #p 02795169 n 0000 + 01345769 v 0101 | a plug used to close a hole in a barrel or flask -02919792 06 n 02 bungalow 0 cottage 0 001 @ 03544360 n 0000 | a small house with a single story -02919890 06 n 02 bungee 0 bungee_cord 0 001 @ 04108268 n 0000 | an elasticized rope -02919976 06 n 01 bunghole 0 001 @ 03526198 n 0000 | a hole in a barrel or cask; used to fill or empty it -02920083 06 n 01 bunk 1 001 @ 02818832 n 0000 | a rough bed (as at a campsite) -02920164 06 n 02 bunk 3 feed_bunk 0 001 @ 03717131 n 0000 | a long trough for feeding cattle -02920259 06 n 02 bunk_bed 0 bunk 2 002 @ 02818832 n 0000 + 02337230 v 0201 | beds built one above the other -02920369 06 n 03 bunker 0 sand_trap 0 trap 2 003 @ 03501152 n 0000 #p 03446528 n 0000 + 01404278 v 0101 | a hazard on a golf course -02920503 06 n 02 bunker 1 dugout 0 003 @ 03385557 n 0000 ~ 03390075 n 0000 ~ 03403325 n 0000 | a fortification of earth; mostly or entirely below ground -02920658 06 n 01 bunker 2 001 @ 03094503 n 0000 | a large container for storing fuel; "the ship's bunkers were full of coal" -02920785 06 n 03 Bunker_Buster 0 Guided_Bomb_Unit-28 0 GBU-28 0 001 @i 03643491 n 0000 | a 5,000 pound laser-guided bomb that can be programmed to penetrate to a given depth before exploding; used to penetrate hardened underground facilities -02921029 06 n 03 bunsen_burner 0 bunsen 0 etna 0 001 @ 03422072 n 0000 | a gas burner used in laboratories; has an air valve to regulate the mixture of gas and air -02921195 06 n 01 bunting 0 001 @ 03309808 n 0000 | a loosely woven fabric used for flags, etc. -02921292 06 n 02 bur 0 burr 2 002 @ 02844307 n 0000 #p 03176238 n 0000 | small bit used in dentistry or surgery -02921406 06 n 01 Burberry 0 001 @ 04049405 n 0000 | a lightweight belted raincoat typically made of tan gabardine with a distinctive tartan lining; named for the original manufacturer -02921592 06 n 02 burette 0 buret 0 001 @ 03733925 n 0000 | measuring instrument consisting of a graduated glass tube with a tap at the bottom; used for titration -02921756 06 n 01 burglar_alarm 0 001 @ 02694426 n 0000 | a warning device that is tripped off by the occurrence of a burglary -02921884 06 n 04 burial_chamber 0 sepulcher 0 sepulchre 0 sepulture 0 009 @ 03455033 n 0000 @ 03003730 n 0000 + 01368464 a 0302 + 02796854 a 0301 ~ 03142431 n 0000 ~i 03527930 n 0000 ~ 03732114 n 0000 ~ 04076713 n 0000 ~ 04523690 n 0000 | a chamber that is used as a grave -02922159 06 n 01 burial_garment 0 002 @ 03050026 n 0000 ~ 03879116 n 0000 | cloth used to cover a corpse in preparation for burial -02922292 06 n 04 burial_mound 0 grave_mound 0 barrow 2 tumulus 0 002 @ 03792048 n 0000 ;c 06144081 n 0000 | (archeology) a heap of earth placed over prehistoric tombs -02922461 06 n 01 burin 0 001 @ 03020692 n 0000 | a chisel of tempered steel with a sharp point; used for engraving -02922578 06 n 02 burqa 0 burka 0 001 @ 03419014 n 0000 | a loose garment (usually with veiled holes for the eyes) worn by Muslim women especially in India and Pakistan; "the Taliban forced all women to wear the burqa" -02922798 06 n 02 burlap 0 gunny 0 001 @ 04123567 n 0000 | coarse jute fabric -02922877 06 n 01 burn_bag 0 001 @ 02773037 n 0000 | a bag into which secret documents are placed before being burned -02922996 06 n 01 burn_center 0 002 @ 02993546 n 0000 #p 03540595 n 0000 | a center where patients with severe burns can be treated -02923129 06 n 01 burner 0 005 @ 02727825 n 0000 + 00378042 v 0101 ~ 02855390 n 0000 ~ 03421960 n 0000 ~ 03422072 n 0000 | an apparatus for burning fuel (or refuse); "a diesel engine is an oil burner" -02923331 06 n 01 burner 1 001 @ 03508628 n 0000 | the heating elements of a stove or range on which pots and pans are placed for cooking; "the electric range had one large burner and three smaller one" -02923535 06 n 03 burnous 0 burnoose 0 burnouse 0 001 @ 03045337 n 0000 | a long hooded cloak woven of wool in one piece; worn by Arabs and Moors -02923682 06 n 02 burp_gun 0 machine_pistol 0 001 @ 04347519 n 0000 | a fully automatic pistol; a small submachine gun -02923802 06 n 01 burr 0 001 @ 04008947 n 0000 | rough projection left on a workpiece after drilling or cutting -02923915 06 n 01 burr 1 001 @ 03997484 n 0000 | rotary file for smoothing rough edges left on a workpiece -02924023 06 n 01 burthen 0 002 @ 03679986 n 0000 + 01487311 v 0102 | a variant of `burden' -02924116 06 n 0a bus 0 autobus 0 coach 2 charabanc 0 double-decker 0 jitney 0 motorbus 0 motorcoach 0 omnibus 0 passenger_vehicle 0 011 @ 04019101 n 0000 + 00528041 a 0901 + 01950128 v 0101 + 01949110 v 0101 ~ 03769881 n 0000 %p 04105438 n 0000 ~ 04146614 n 0000 ~ 04487081 n 0000 %p 04588365 n 0000 #m 08293490 n 0000 -c 10403876 n 0000 | a vehicle carrying many passengers; used for public transport; "he always rode the bus to work" -02924554 06 n 03 bus 1 jalopy 0 heap 1 002 @ 02958343 n 0000 @ 06605396 n 0000 | a car that is old and unreliable; "the fenders had fallen off that old bus" -02924713 06 n 02 busbar 0 bus 2 004 @ 03088707 n 0000 #p 03996655 n 0000 #p 03082979 n 0000 #p 03681477 n 0000 | an electrical conductor that makes a common connection between several circuits; "the busbar in this computer can transmit data either way between any two components of the system" -02925009 06 n 01 bushel_basket 0 001 @ 02801938 n 0000 | a basket large enough to hold a bushel -02925107 06 n 02 bushing 0 cylindrical_lining 0 002 @ 03673767 n 0000 + 02336255 v 0101 | a cylindrical metal lining used to reduce friction -02925250 06 n 01 bushing 1 002 @ 14821590 n 0000 + 02336255 v 0101 | an insulating liner in an opening through which conductors pass -02925385 06 n 01 bush_jacket 0 001 @ 03589791 n 0000 | a loose fitting jacket; resembles a shirt with four patch pockets and a belt -02925519 06 n 01 business_suit 0 003 @ 04350905 n 0000 ~ 04427715 n 0000 ~ 04504141 n 0000 | a suit of clothes traditionally worn by businessmen -02925666 06 n 05 buskin 0 combat_boot 0 desert_boot 0 half_boot 0 top_boot 0 001 @ 02872752 n 0000 | a boot reaching halfway up to the knee -02925808 06 n 01 bus_lane 0 001 @ 04466386 n 0000 | a traffic lane intended for buses only -02925901 06 n 01 bus_line 0 002 @ 04472098 n 0000 %p 08293490 n 0000 | an organization responsible for operating a bus transportation system -02926044 06 n 02 buspirone 0 BuSpar 0 002 @ 03771443 n 0000 ;u 06851742 n 0201 | a drug (trade name BuSpar) designed specifically for anxiety -02926188 06 n 01 bust 0 001 @ 04157320 n 0000 | a sculpture of the head and shoulders of a person -02926288 06 n 04 bus_terminal 0 bus_depot 0 bus_station 0 coach_station 0 001 @ 04412901 n 0000 | a terminal that serves bus passengers -02926426 06 n 01 bustier 0 001 @ 04453666 n 0000 | a close-fitting and strapless top without sleeves that is worn by women either as lingerie or for evening dress -02926591 06 n 01 bustle 0 001 @ 03391770 n 0000 | a framework worn at the back below the waist for giving fullness to a woman's skirt -02926727 06 n 02 butacaine 0 butacaine_sulfate 0 001 @ 03681148 n 0000 | a white crystalline ester that is applied to mucous membranes as a local anesthetic -02926886 06 n 02 butcher_board 0 butcher_block 0 001 @ 04233405 n 0000 | a thick wooden slab formed by bonding together thick laminated strips of unpainted hardwood -02927053 06 n 01 butcher_knife 0 001 @ 03623556 n 0000 | a large sharp knife for cutting or trimming meat -02927161 06 n 02 butcher_shop 0 meat_market 0 001 @ 04202417 n 0000 | a shop in which meat and poultry (and sometimes fish) are sold -02927296 06 n 02 butt 0 butt_end 0 002 @ 04321804 n 0000 ~ 04090682 n 0000 | thick end of the handle -02927399 06 n 02 butt 1 stub 0 004 @ 03892891 n 0000 ~ 03030433 n 0000 ~ 03030880 n 0000 ~ 04095853 n 0000 | the small unused part of something (especially the end of a cigarette that is left after smoking) -02927608 06 n 01 butt 2 002 @ 02795169 n 0000 ~ 04557751 n 0000 | a large cask (especially one holding a volume equivalent to 2 hogsheads or 126 gallons) -02927764 06 n 01 butter_dish 0 001 @ 03206908 n 0000 | a small dish (often with a cover) for holding butter at the table -02927887 06 n 01 butterfly_valve 0 002 @ 04519153 n 0000 #p 02962200 n 0000 | a valve in a carburetor that consists of a disc that turns and acts as a throttle -02928049 06 n 01 butter_knife 0 001 @ 04380346 n 0000 | a small knife with a dull blade; for cutting or spreading butter -02928172 06 n 01 buttery 0 001 @ 04398497 n 0000 | a teashop where students in British universities can purchase light meals -02928299 06 n 01 butt_hinge 0 001 @ 03521076 n 0000 | a hinge mortised flush into the edge of the door and jamb -02928413 06 n 02 butt_joint 0 butt 5 005 @ 03600977 n 0000 + 01466978 v 0206 + 01498713 v 0201 ~ 02929582 n 0000 ~ 03352232 n 0000 | a joint made by fastening ends together without overlapping -02928608 06 n 01 button 0 007 @ 03323703 n 0000 + 00280245 a 0103 + 00057390 a 0101 + 01368126 v 0101 + 01367862 v 0101 ~ 03057541 n 0000 ~ 04197781 n 0000 | a round fastener sewn to shirts and coats etc to fit through buttonholes -02928841 06 n 01 button 3 001 @ 00021939 n 0000 | any artifact that resembles a button -02928930 06 n 02 buttonhole 0 button_hole 0 002 @ 03526198 n 0000 #p 03419014 n 0000 | a hole through which buttons are pushed -02929059 06 n 01 buttonhole_stitch 0 001 @ 04180314 n 0000 | a reinforcing looped stitch for edges, as around a buttonhole -02929184 06 n 01 buttonhook 0 001 @ 03532342 n 0000 | a hook for pulling a button through a buttonhole -02929289 06 n 02 buttress 0 buttressing 0 003 @ 04360501 n 0000 + 00222861 v 0101 ~ 03373943 n 0000 | a support usually of stone or brick; supports the wall of a building -02929462 06 n 01 butt_shaft 0 001 @ 02742753 n 0000 | a blunt arrow without a barb; an arrow used for target practice -02929582 06 n 02 butt_weld 0 butt-weld 0 005 @ 02928413 n 0000 + 01596404 v 0202 + 01596404 v 0201 + 01596404 v 0102 + 01596404 v 0101 | a butt joint that is welded -02929749 06 n 02 butyl_nitrite 0 isobutyl_nitrite 0 002 @ 04522904 n 0000 @ 04320126 n 0000 | a colorless pungent liquid sometimes used as a stimulant drug by drug abusers -02929923 06 n 05 buzz_bomb 0 robot_bomb 0 flying_bomb 0 doodlebug 0 V-1 0 001 @ 03466162 n 0000 | a small jet-propelled winged missile that carries a bomb -02930080 06 n 01 buzzer 1 003 @ 04217718 n 0000 + 02182109 v 0101 + 00792304 v 0101 | a signaling device that makes a buzzing sound -02930214 06 n 02 BVD 0 BVD's 0 003 @ 04508949 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | trademark for men's underwear -02930339 06 n 02 bypass_condenser 0 bypass_capacitor 0 001 @ 02955247 n 0000 | a capacitor that provides low impedance over certain (high) frequencies -02930492 06 n 03 by-product 0 byproduct 0 spin-off 0 002 @ 04007894 n 0000 + 00345184 v 0301 | a product made during the manufacture of something else -02930645 06 n 03 byway 0 bypath 0 byroad 0 001 @ 04096066 n 0000 | a side road little traveled (as in the countryside) -02930766 06 n 04 cab 0 hack 0 taxi 0 taxicab 0 005 @ 02958343 n 0000 + 01949007 v 0301 ~ 03472937 n 0000 ~ 03769967 n 0000 #m 08293490 n 0000 | a car driven by a person whose job is to take passengers where they want to go in exchange for money -02931013 06 n 02 cab 1 cabriolet 0 001 @ 02968473 n 0000 | small two-wheeled horse-drawn carriage; with two seats and a folding hood -02931148 06 n 01 cab 2 002 @ 03079741 n 0000 #p 03791235 n 0000 | a compartment at the front of a motor vehicle or locomotive where driver sits -02931294 06 n 01 cabana 0 001 @ 04411264 n 0000 | a small tent used as a dressing room beside the sea or a swimming pool -02931417 06 n 05 cabaret 0 nightclub 0 night_club 0 club 4 nightspot 0 003 @ 04286128 n 0000 ~ 03530803 n 0000 ~ 04359124 n 0000 | a spot that is open late at night and that provides entertainment (as singers or dancers) as well as dancing and food and drink; "don't expect a good meal at a cabaret"; "the gossip columnist got his information by visiting nightclubs every night"; "he played the drums at a jazz club" -02931836 06 n 01 caber 0 001 @ 03976657 n 0000 | a heavy wooden pole (such as the trunk of a young fir) that is tossed as a test of strength (in the Highlands of northern Scotland) -02932019 06 n 01 cabin 0 005 @ 03079741 n 0000 #p 02686568 n 0000 #p 04264914 n 0000 + 01302577 v 0101 ~ 04001132 n 0000 | the enclosed compartment of an aircraft or spacecraft where passengers are carried -02932227 06 n 01 cabin 1 005 @ 03079741 n 0000 #p 03673027 n 0000 + 01302577 v 0101 %p 03864542 n 0000 ~ 04305572 n 0000 | small room on a ship or boat where people sleep -02932400 06 n 01 cabin 2 002 @ 03544360 n 0000 ~ 03686924 n 0000 | a small house built of wood; usually in a wooded area -02932523 06 n 02 cabin_car 0 caboose 0 002 @ 02959942 n 0000 #m 03394480 n 0000 | a car on a freight train for use of the train crew; usually the last car on the train -02932693 06 n 03 cabin_class 0 second_class 0 economy_class 0 001 @ 02672371 n 0000 | a class of accommodations on a ship or train or plane that are less expensive than first class accommodations -02932891 06 n 04 cabin_cruiser 0 cruiser 1 pleasure_boat 0 pleasure_craft 0 002 @ 03790230 n 0000 + 01844653 v 0201 | a large motorboat that has a cabin and plumbing and other conveniences necessary for living on board -02933112 06 n 01 cabinet 0 005 @ 03405725 n 0000 ~ 03018349 n 0000 ~ 03237340 n 0000 ~ 03742115 n 0000 %p 04190052 n 0000 | a piece of furniture resembling a cupboard with doors and shelves and drawers; for storage or display -02933340 06 n 02 cabinet 1 console 0 001 @ 03546766 n 0000 | housing for electronic instruments, as radio or television -02933462 06 n 03 cabinet 2 locker 0 storage_locker 0 003 @ 03079741 n 0000 #p 03683708 n 0000 ~ 03440876 n 0000 | a storage compartment for clothes and valuables; usually it has a lock -02933649 06 n 01 cabinetwork 0 001 @ 04598792 n 0000 | woodwork finished by hand by a cabinetmaker -02933750 06 n 01 cabin_liner 0 001 @ 03673027 n 0000 | a liner with cabins for passengers -02933842 06 n 01 cable 0 003 @ 04108268 n 0000 #p 04366367 n 0000 ~ 03463073 n 0000 | a very strong thick rope made of twisted hemp or steel wire -02933990 06 n 04 cable 1 cable_television 0 cable_system 0 cable_television_service 0 002 @ 04404412 n 0000 %p 02934168 n 0000 | a television system that transmits over cables -02934168 06 n 03 cable 2 line 1 transmission_line 0 008 @ 03088707 n 0000 #p 04402746 n 0000 #p 02933990 n 0000 ~ 03059366 n 0000 ~ 03268918 n 0000 ~ 03331599 n 0000 ~ 03995535 n 0000 ~ 04004990 n 0000 | a conductor for transmitting electrical or optical signals or electric power -02934451 06 n 02 cable_car 0 car 4 002 @ 03079741 n 0000 #p 02934641 n 0000 | a conveyance for passengers or freight on a cable railway; "they took a cable car to the top of the mountain" -02934641 06 n 03 cable_railway 0 funicular 0 funicular_railway 0 003 @ 04048568 n 0000 + 02848658 a 0201 %p 02934451 n 0000 | a railway up the side of a mountain pulled by a moving cable and having counterbalancing ascending and descending cars -02934888 06 n 01 cache 0 002 @ 04328946 n 0000 + 02305856 v 0103 | a hidden storage space (for money or provisions or weapons) -02935017 06 n 02 cache 1 memory_cache 0 003 @ 02911485 n 0000 ;c 06128570 n 0000 ~ 03209141 n 0000 | (computer science) RAM memory that is set aside as a specialized buffer storage that is continually updated; used to optimize data transfers between system elements with different characteristics -02935316 06 n 01 cachet 0 001 @ 04159058 n 0000 | a seal on a letter -02935387 06 n 02 caddy 0 tea_caddy 0 002 @ 02946921 n 0000 + 01096860 v 0102 | a can for storing tea -02935490 06 n 01 caesium_clock 0 001 @ 02753394 n 0000 | an atomic clock based on the energy difference between two states of the caesium nucleus in a magnetic field -02935658 06 n 04 cafe 0 coffeehouse 0 coffee_shop 0 coffee_bar 0 006 @ 04081281 n 0000 ~ 02936281 n 0000 ~ 03155178 n 0000 ~ 03297644 n 0000 ~ 03298089 n 0000 ~ 04020617 n 0000 | a small restaurant where drinks and snacks are sold -02935891 06 n 01 cafeteria 0 002 @ 04081281 n 0000 ~ 02760099 n 0000 | a restaurant where you serve yourself and pay a cashier -02936020 06 n 01 cafeteria_facility 0 002 @ 03315023 n 0000 ;u 06295235 n 0000 | (usually plural) facilities for providing food for employees or visitors -02936176 06 n 01 cafeteria_tray 0 001 @ 04476259 n 0000 | a tray for carrying your food in a cafeteria -02936281 06 n 01 caff 0 003 @ 02935658 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | informal British term for a cafe -02936402 06 n 02 caftan 0 kaftan 0 001 @ 03045337 n 0000 | a (cotton or silk) cloak with full sleeves and sash reaching down to the ankles; worn by men in the Levant -02936570 06 n 02 caftan 1 kaftan 1 001 @ 03236735 n 0000 | a woman's dress style that imitates the caftan cloaks worn by men in the Near East -02936714 06 n 02 cage 0 coop 0 005 @ 03285912 n 0000 + 02496036 v 0101 ~ 02843276 n 0000 ~ 03550289 n 0000 ~ 04293902 n 0000 | an enclosure made or wire or metal bars in which birds or animals can be kept -02936921 06 n 01 cage 1 001 @ 03820318 n 0000 | the net that is the goal in ice hockey -02937010 06 n 01 cagoule 0 001 @ 03891051 n 0000 | lightweight parka; waterproof -02937093 06 n 03 caisson 0 pneumatic_caisson 0 cofferdam 0 001 @ 03003730 n 0000 | large watertight chamber used for construction under water -02937237 06 n 02 caisson 2 ammunition_chest 0 001 @ 03014705 n 0000 | a chest to hold ammunition -02937336 06 n 01 caisson 3 002 @ 03764276 n 0000 ;c 08199025 n 0000 | a two-wheeled military vehicle carrying artillery ammunition -02937469 06 n 02 cake 0 bar 6 002 @ 02852523 n 0000 ~ 04381183 n 0000 | a block of solid substance (such as soap or wax); "a bar of chocolate" -02937614 06 n 02 calabash 1 calabash_pipe 0 001 @ 03945167 n 0000 | a pipe for smoking; has a curved stem and a large bowl made from a calabash gourd -02937766 06 n 01 calamine_lotion 0 002 @ 03691128 n 0000 %s 14678406 n 0000 | a lotion consisting of a liquid preparation containing calamine; used to treat itching or mild skin irritations -02937958 06 n 03 calash 0 caleche 0 calash_top 0 002 @ 03531447 n 0000 #p 03002555 n 0000 | the folding hood of a horse-drawn carriage -02938095 06 n 02 calash 1 caleche 1 001 @ 03531281 n 0000 | a woman's large folded hooped hood; worn in the 18th century -02938218 06 n 01 calceus 0 001 @ 04199027 n 0000 | a shoe covering the ankle; worn by ancient Romans -02938321 06 n 01 calcimine 0 003 @ 04557308 n 0000 @ 04553389 n 0000 + 01269988 v 0101 | a water-base paint containing zinc oxide and glue and coloring; used as a wash for walls and ceilings -02938514 06 n 02 calcium_blocker 0 calcium-channel_blocker 0 004 @ 03740161 n 0000 ~ 03198637 n 0000 ~ 03824014 n 0000 ~ 04527808 n 0000 | any of a class of drugs that block the flow of the electrolyte calcium (either in nerve cell conduction or smooth muscle contraction of the heart); has been used in the treatment of angina or arrhythmia or hypertension or migraine -02938886 06 n 02 calculator 0 calculating_machine 0 010 @ 03699975 n 0000 + 00637259 v 0101 ~ 02666196 n 0000 ~ 02679142 n 0000 ~ 02679257 n 0000 ~ 03116767 n 0000 ~ 03483823 n 0000 ~ 03807334 n 0000 ~ 04035231 n 0000 ~ 04348988 n 0000 | a small machine that is used for mathematical calculations -02939185 06 n 02 caldron 0 cauldron 0 001 @ 03990474 n 0000 | a very large pot that is used for boiling -02939291 06 n 01 Caledonian_Canal 0 002 @i 02947212 n 0000 #p 08890097 n 0000 | a canal in northern Scotland that links North Sea with the Atlantic Ocean; runs diagonally between Moray Firth at the northeastern end and Loch Linnhe at the southwestern end; now little used -02939565 06 n 01 calender 0 003 @ 03699975 n 0000 + 02674772 a 0102 + 01391095 v 0101 | a machine that smooths or glazes paper or cloth by pressing it between plates or passing it through rollers -02939763 06 n 01 calico 0 002 @ 03309808 n 0000 + 00398978 a 0102 | coarse cloth with a bright print -02939866 06 n 02 caliper 0 calliper 0 008 @ 03733925 n 0000 + 00647770 v 0202 + 00647770 v 0101 ~ 03573574 n 0000 ~ 03759661 n 0000 ~ 03841011 n 0000 ~ 03861596 n 0000 ~ 04528968 n 0000 | an instrument for measuring the distance between two points (often used in the plural) -02940143 06 n 02 calk 0 calkin 0 002 @ 03041265 n 0000 + 01358191 v 0101 | a metal cleat on the bottom front of a horseshoe to prevent slipping -02940289 06 n 01 call-board 0 001 @ 02916538 n 0000 | a bulletin board backstage in a theater -02940385 06 n 02 call_center 0 call_centre 0 001 @ 02993546 n 0000 | a center equipped to handle a large volume of telephone calls (especially for taking orders or serving customers) -02940570 06 n 01 caller_ID 0 001 @ 03211117 n 0000 | a small display that will show you the telephone number of the party calling you -02940706 06 n 02 calliope 0 steam_organ 0 002 @ 03800933 n 0000 %p 04310721 n 0000 | a musical instrument consisting of a series of steam whistles played from a keyboard -02940878 06 n 01 Caloosahatchee_Canal 0 002 @i 02947212 n 0000 #p 09071690 n 0000 | a canal that connects Lake Okeechobee with the Caloosahatchee River in southern Florida to form part of the Cross-Florida Waterway -02941095 06 n 01 calorimeter 0 002 @ 03733925 n 0000 ~ 02867592 n 0000 | a measuring instrument that determines quantities of heat -02941228 06 n 03 calpac 0 calpack 0 kalpac 0 001 @ 02954340 n 0000 | a high-crowned black cap (usually made of felt or sheepskin) worn by men in Turkey and Iran and the Caucasus -02941408 06 n 03 calumet 0 peace_pipe 0 pipe_of_peace 0 001 @ 03945167 n 0000 | a highly decorated ceremonial pipe of Amerindians; smoked on ceremonial occasions (especially as a token of peace) -02941605 06 n 02 Calvary_cross 0 cross_of_Calvary 0 001 @ 03135152 n 0000 | a Latin cross set on three steps -02941716 06 n 01 cam 0 002 @ 04110955 n 0000 ~ 03213361 n 0000 | a rotating disk shaped to convert circular into linear motion -02941845 06 n 03 camail 0 aventail 0 ventail 0 002 @ 03531281 n 0000 #p 02801823 n 0000 | a medieval hood of mail suspended from a basinet to protect the head and neck -02942015 06 n 01 camber_arch 0 001 @ 02733524 n 0000 | an arch with a straight horizontal extrados and a slightly arched intrados -02942147 06 n 01 cambric 0 001 @ 03309808 n 0000 | a finely woven white linen -02942227 06 n 02 Cambridge_University 0 Cambridge 0 002 @i 04511002 n 0000 #p 08878016 n 0000 | a university in England -02942349 06 n 01 camcorder 0 001 @ 04404997 n 0000 | a portable television camera and videocassette recorder -02942460 06 n 02 camel's_hair 0 camelhair 0 001 @ 03309808 n 0000 | a soft tan cloth made with the hair of a camel -02942577 06 n 01 cameo 0 001 @ 02707188 n 0000 | engraving or carving in low relief on a stone (as in a brooch or ring) -02942699 06 n 02 camera 0 photographic_camera 0 019 @ 03926148 n 0000 %p 02727141 n 0000 ~ 02884994 n 0000 %p 02943241 n 0000 ~ 02947977 n 0000 %p 03172738 n 0000 %p 03189083 n 0000 ~ 03196062 n 0000 %p 03340723 n 0000 ~ 03358726 n 0000 %p 03531808 n 0000 %p 03704376 n 0000 ~ 03789171 n 0000 ~ 03974915 n 0000 ~ 03976467 n 0000 ~ 03987266 n 0000 ~ 04069434 n 0000 %p 04211528 n 0000 %p 04289827 n 0000 | equipment for taking photographs (usually consisting of a lightproof box with a lens at one end and light-sensitive film at the other) -02943241 06 n 02 camera_lens 0 optical_lens 0 007 @ 03656484 n 0000 #p 02942699 n 0000 #p 04404997 n 0000 ~ 03049782 n 0000 ~ 03987376 n 0000 ~ 04403413 n 0000 ~ 04583212 n 0000 | a lens that focuses the image in a camera -02943465 06 n 01 camera_lucida 0 002 @ 03851341 n 0000 #p 03760671 n 0000 | an optical device consisting of an attachment that enables an observer to view simultaneously the image and a drawing surface for sketching it -02943686 06 n 01 camera_obscura 0 001 @ 03003730 n 0000 | a darkened enclosure in which images of outside objects are projected through a small aperture or lens onto a facing surface -02943871 06 n 01 camera_tripod 0 001 @ 04485082 n 0000 | a tripod used to support a camera -02943964 06 n 01 camise 0 001 @ 04197391 n 0000 | a loose shirt or tunic; originally worn in the Middle Ages -02944075 06 n 01 camisole 0 001 @ 03817647 n 0000 | a short negligee -02944146 06 n 02 camisole 1 underbodice 0 001 @ 04508163 n 0000 | a short sleeveless undergarment for women -02944256 06 n 01 camlet 0 001 @ 03309808 n 0000 | a fabric of Asian origin; originally made of silk and camel's hair -02944375 06 n 01 camlet 1 001 @ 03419014 n 0000 | a garment made of camlet fabric -02944459 06 n 01 camouflage 0 002 @ 04151940 n 0000 + 02158896 v 0101 | device or stratagem for concealment or deceit -02944579 06 n 02 camouflage 1 camo 0 002 @ 03309808 n 0000 + 02158896 v 0101 | fabric dyed with splotches of green and brown and black and tan; intended to make the wearer of a garment made of this fabric hard to distinguish from the background -02944826 06 n 04 camp 0 encampment 0 cantonment 0 bivouac 0 008 @ 03763727 n 0000 ;c 08199025 n 0000 + 02653996 v 0404 + 02653159 v 0303 + 02653996 v 0101 ~ 02873623 n 0000 ~ 03550420 n 0000 ~ 03629857 n 0000 | temporary living quarters specially built by the army for soldiers; "wherever he went in the camp the men were grumbling" -02945161 06 n 01 camp 1 004 @ 03546340 n 0000 + 02653996 v 0101 ~ 04409625 n 0000 ~ 04467506 n 0000 | temporary lodgings in the country for travelers or vacationers; "level ground is best for parking and camp areas" -02945379 06 n 01 camp 2 005 @ 03907654 n 0000 ~ 03086183 n 0000 ~ 03630849 n 0000 ~ 04005912 n 0000 ~ 04600764 n 0000 | a penal institution (often for forced labor); "China has many camps for political prisoners" -02945594 06 n 02 camp 3 summer_camp 0 002 @ 08651247 n 0000 ~ 03165343 n 0000 | a site where care and activities are provided for children during the summer months; "city kids get to see the country at a summer camp" -02945813 06 n 02 camp 4 refugee_camp 0 001 @ 04192238 n 0000 | shelter for persons displaced by war or political oppression or for religious beliefs -02945964 06 n 01 campaign_hat 0 001 @ 03497657 n 0000 | a broad-brimmed felt hat with a high crown; formerly worn by the United States Army and Marine personnel -02946127 06 n 02 campanile 0 belfry 1 002 @ 02826886 n 0000 ~i 03652530 n 0000 | a bell tower; usually stands alone unattached to a building -02946270 06 n 01 camp_chair 0 001 @ 03376595 n 0000 | a light folding chair -02946348 06 n 03 camper 0 camping_bus 0 motor_home 0 002 @ 04065272 n 0000 ~ 04520382 n 0000 | a recreational vehicle equipped for camping out while traveling -02946509 06 n 01 camper_trailer 0 001 @ 04467099 n 0000 | a trailer equipped for occupancy (especially for holiday trips) -02946633 06 n 01 camphor_ice 0 001 @ 02997773 n 0000 | a cerate made of camphor and wax and spermaceti and castor oil -02946753 06 n 01 campstool 0 001 @ 04326896 n 0000 | a folding stool -02946824 06 n 01 camshaft 0 002 @ 04111190 n 0000 #p 03287733 n 0000 | has cams attached to it -02946921 06 n 03 can 0 tin 0 tin_can 0 010 @ 03094503 n 0000 + 00213794 v 0202 + 00213794 v 0101 ~ 02823510 n 0000 ~ 02935387 n 0000 ~ 02950120 n 0000 ~ 03062985 n 0000 ~ 03764736 n 0000 ~ 03843316 n 0000 ~ 04255586 n 0000 | airtight sealed metal container for food or drink or paint etc. -02947212 06 n 01 canal 0 019 @ 04559275 n 0000 + 02336015 v 0101 + 02336015 v 0102 + 01933900 v 0102 + 02336015 v 0103 + 01933900 v 0103 ~i 02939291 n 0000 ~i 02940878 n 0000 ~ 03152743 n 0000 ~ 03569174 n 0000 %p 03683079 n 0000 %p 03683457 n 0000 ~ 04037873 n 0000 ~ 04196337 n 0000 ~i 08729094 n 0000 ~i 08813586 n 0000 ~i 09098358 n 0000 ~i 09118817 n 0000 ~i 09119070 n 0000 | long and narrow strip of water made for boats or for irrigation -02947660 06 n 03 canal_boat 0 narrow_boat 0 narrowboat 0 001 @ 02858304 n 0000 | a long boat that carries freight and is narrow enough to be used in canals -02947818 06 n 02 candelabrum 0 candelabra 0 003 @ 02948557 n 0000 ~ 03746005 n 0000 ~ 03746155 n 0000 | branched candlestick; ornamental; has several lights -02947977 06 n 01 candid_camera 0 001 @ 02942699 n 0000 | a miniature camera with a fast lens -02948072 06 n 03 candle 0 taper 0 wax_light 0 007 @ 03636248 n 0000 %p 02948719 n 0000 ~ 03005515 n 0000 ~ 03203089 n 0000 ~ 04121228 n 0000 ~ 04534895 n 0000 %p 04581829 n 0000 | stick of wax with a wick in the middle -02948293 06 n 01 candlepin 0 001 @ 02882647 n 0000 | a bowling pin that is thin by comparison with a tenpin -02948403 06 n 01 candlesnuffer 0 001 @ 03563967 n 0000 | an implement with a small cup at the end of a handle; used to extinguish the flame of a candle -02948557 06 n 02 candlestick 0 candle_holder 0 004 @ 03525454 n 0000 ~ 02947818 n 0000 ~ 03437829 n 0000 %p 04002262 n 0000 | a holder with sockets for candles -02948719 06 n 01 candlewick 0 003 @ 04581829 n 0000 #p 02948072 n 0000 %p 15044016 n 0000 | the wick of a candle -02948834 06 n 01 candlewick 1 001 @ 03282933 n 0000 | loops of soft yarn are cut to give a tufted pattern -02948942 06 n 01 candy_thermometer 0 001 @ 04421872 n 0000 | a thermometer used to determine the temperature of candy syrups during cooking -02949084 06 n 01 cane 0 002 @ 04372171 n 0000 + 01412204 v 0101 | a stiff switch used to hit students as punishment -02949202 06 n 01 cane 1 004 @ 04546194 n 0000 ~ 03715275 n 0000 ~ 04368365 n 0000 ~ 04374315 n 0000 | a stick that people can lean on to help them walk -02949356 06 n 01 cangue 0 001 @ 03575958 n 0000 | an instrument of punishment formerly used in China for petty criminals; consists of a heavy wooden collar enclosing the neck and arms -02949542 06 n 03 canister 0 cannister 0 tin 1 002 @ 03094503 n 0000 + 00213794 v 0302 | metal container for storing dry foods such as tea or flour -02949691 06 n 04 cannabis 0 marijuana 0 marihuana 0 ganja 0 006 @ 04256993 n 0000 @ 03097890 n 0000 #p 12396924 n 0000 #s 03600806 n 0000 ~ 02670049 n 0000 ~ 03990834 n 0000 | the most commonly used illicit drug; considered a soft drug, it consists of the dried leaves of the hemp plant; smoked or chewed for euphoric effect -02950018 06 n 01 cannery 0 002 @ 03316406 n 0000 + 00213794 v 0101 | a factory where food is canned -02950120 06 n 01 cannikin 0 001 @ 02946921 n 0000 | a small can -02950186 06 n 01 cannikin 1 001 @ 02909870 n 0000 | a wooden bucket -02950256 06 n 01 cannon 0 008 @ 02746365 n 0000 + 09811852 n 0102 + 01134522 v 0101 ~ 02801450 n 0000 ~ 03147156 n 0000 ~ 03495941 n 0000 ~ 03517982 n 0000 ~ 03688504 n 0000 | a large artillery gun that is usually on wheels -02950482 06 n 01 cannon 1 004 @ 03467984 n 0000 #p 02867715 n 0000 + 09811852 n 0102 + 01134522 v 0101 | heavy automatic gun fired from an airplane -02950632 06 n 01 cannon 2 005 @ 02740764 n 0000 #p 02862048 n 0000 ;c 15259284 n 0000 ~ 04077594 n 0000 ~ 04519887 n 0000 | (Middle Ages) a cylindrical piece of armor plate to protect the arm -02950826 06 n 01 cannon 3 003 @ 03467984 n 0000 #p 04389033 n 0000 + 09811852 n 0102 | heavy gun fired from a tank -02950943 06 n 03 cannonball 0 cannon_ball 0 round_shot 0 001 @ 04008634 n 0000 | a solid projectile that in former times was fired from a cannon -02951090 06 n 01 cannon_cracker 0 001 @ 03345115 n 0000 | a large firecracker -02951170 06 n 01 cannula 0 003 @ 04493505 n 0000 + 02264807 a 0102 + 01422172 v 0101 | a small flexible tube inserted into a body cavity for draining off fluid or introducing medication -02951358 06 n 01 canoe 0 007 @ 04244997 n 0000 + 09891470 n 0101 + 01947543 v 0101 ~ 02843029 n 0000 ~ 03254374 n 0000 ~ 03609235 n 0000 ~ 03861430 n 0000 | small and light boat; pointed at both ends; propelled with a paddle -02951585 06 n 02 can_opener 0 tin_opener 0 002 @ 03848348 n 0000 ~ 03029066 n 0000 | a device for cutting cans open -02951703 06 n 02 canopic_jar 0 canopic_vase 0 001 @ 03593526 n 0000 | a jar used in ancient Egypt to contain entrails of an embalmed body -02951843 06 n 01 canopy 0 008 @ 04191943 n 0000 + 01337526 v 0101 ~ 02763901 n 0000 ~ 02778131 n 0000 ~ 03723153 n 0000 ~ 03986071 n 0000 ~ 04415354 n 0000 ~ 04507155 n 0000 | a covering (usually of cloth) that serves as a roof to shelter an area from the weather -02952109 06 n 01 canopy 1 002 @ 03309808 n 0000 #p 03888257 n 0000 | the umbrellalike part of a parachute that fills with air -02952237 06 n 01 canopy 2 003 @ 03122748 n 0000 #p 03061505 n 0000 + 01337526 v 0101 | the transparent covering of an aircraft cockpit -02952374 06 n 01 canteen 0 001 @ 03359566 n 0000 | a flask for carrying water; used by soldiers or travelers -02952485 06 n 01 canteen 1 001 @ 04081281 n 0000 | restaurant in a factory; where workers can eat -02952585 06 n 01 canteen 2 001 @ 04065464 n 0000 | a recreation room in an institution -02952674 06 n 02 canteen 3 mobile_canteen 0 001 @ 04081281 n 0000 | a restaurant outside; often for soldiers or policemen -02952798 06 n 01 canteen 4 001 @ 04202417 n 0000 | sells food and personal items to personnel at an institution or school or camp etc. -02952935 06 n 01 cant_hook 0 001 @ 03903133 n 0000 | a peavey having a hook instead of a spike; used for handling logs -02953056 06 n 01 cantilever 0 003 @ 02815950 n 0000 + 02714865 v 0101 + 01656233 v 0101 | projecting horizontal beam fixed at one end only -02953197 06 n 01 cantilever_bridge 0 008 @ 02898711 n 0000 ~i 02809866 n 0000 ~i 03077304 n 0000 ~i 03456854 n 0000 ~i 03767846 n 0000 ~i 04033178 n 0000 ~i 04033647 n 0000 ~i 04393681 n 0000 | bridge constructed of two cantilevers that meet in the middle -02953455 06 n 01 cantle 0 002 @ 02767433 n 0000 #p 04123740 n 0000 | the back of a saddle seat -02953552 06 n 01 Canton_crepe 0 001 @ 03130563 n 0000 | a soft thick crinkled dress crepe; heavier than crepe de Chine -02953673 06 n 02 canvas 0 canvass 0 003 @ 03309808 n 0000 ~ 04395024 n 0000 %s 14906500 n 0000 | a heavy, closely woven fabric (used for clothing or chairs or sails or tents) -02953850 06 n 02 canvas 1 canvass 1 002 @ 03727946 n 0000 #p 04092959 n 0000 | the mat that forms the floor of the ring in which boxers or professional wrestlers compete; "the boxer picked himself up off the canvas" -02954068 06 n 02 canvas 4 canvass 4 001 @ 03844349 n 0000 | an oil painting on canvas fabric -02954163 06 n 03 canvas_tent 0 canvas 2 canvass 2 005 @ 04411264 n 0000 ~ 03035252 n 0000 ~ 03334291 n 0000 ~ 04212810 n 0000 ~ 04549028 n 0000 | a tent made of canvas fabric -02954340 06 n 01 cap 0 030 @ 03502509 n 0000 ~ 02776825 n 0000 ~ 02783567 n 0000 ~ 02799323 n 0000 ~ 02807133 n 0000 ~ 02831237 n 0000 ~ 02837309 n 0000 ~ 02843909 n 0000 ~ 02941228 n 0000 ~ 03049924 n 0000 ~ 03061893 n 0000 ~ 03103563 n 0000 %p 03261019 n 0000 ~ 03331077 n 0000 ~ 03420801 n 0000 ~ 03439631 n 0000 ~ 03607527 n 0000 ~ 03610682 n 0000 ~ 03660394 n 0000 ~ 03776167 n 0000 ~ 03787032 n 0000 ~ 03824284 n 0000 ~ 03943448 n 0000 ~ 04129688 n 0000 ~ 04209133 n 0000 ~ 04228693 n 0000 ~ 04232153 n 0000 ~ 04387095 n 0000 ~ 04556408 n 0000 ~ 04596116 n 0000 | a tight-fitting headdress -02954938 06 n 01 cap 2 004 @ 04453910 n 0000 ~ 02877765 n 0000 ~ 03825788 n 0000 ~ 04041243 n 0000 | a top (as for a bottle) -02955065 06 n 01 cap 3 006 @ 04014297 n 0000 ~ 03213538 n 0000 ~ 03329536 n 0000 ~ 03548086 n 0000 ~ 03657121 n 0000 ~ 04423845 n 0000 | something serving as a cover or protection -02955247 06 n 04 capacitor 0 capacitance 0 condenser 1 electrical_condenser 0 007 @ 03269401 n 0000 #p 03033362 n 0000 #p 03213014 n 0000 ~ 02930339 n 0000 ~ 03275681 n 0000 ~ 03655470 n 0000 ~ 04483779 n 0000 | an electrical device characterized by its capacity to store an electric charge -02955540 06 n 03 caparison 0 trapping 1 housing 2 004 @ 04295081 n 0000 + 01670315 v 0101 ~ 02792305 n 0000 ~ 03538542 n 0000 | stable gear consisting of a decorated covering for a horse, especially (formerly) for a warhorse -02955767 06 n 02 cape 0 mantle 0 005 @ 03045337 n 0000 ~ 03021228 n 0000 ~ 03719560 n 0000 ~ 03906789 n 0000 ~ 04440597 n 0000 | a sleeveless garment like a cloak but shorter -02955944 06 n 01 capeline_bandage 0 001 @ 02785648 n 0000 | bandage that covers the head or an amputation stump like a cap -02956069 06 n 03 capillary 0 capillary_tube 0 capillary_tubing 0 002 @ 04493505 n 0000 #p 04421872 n 0000 | a tube of small internal diameter; holds liquid by capillary action -02956247 06 n 03 capital 0 chapiter 0 cap 1 002 @ 08663860 n 0000 #p 03073977 n 0000 | the upper part of a column that supports the entablature -02956393 06 n 01 capital_ship 0 001 @ 04552696 n 0000 | a warship of the first rank in size and armament -02956500 06 n 02 Capitol 0 Capitol_Building 0 002 @i 03449564 n 0000 #p 09070793 n 0000 | the government building in Washington where the United States Senate and the House of Representatives meet -02956699 06 n 01 capitol 1 001 @ 03449564 n 0000 | a building occupied by a state legislature -02956795 06 n 01 cap_opener 0 001 @ 02877962 n 0000 | a bottle opener to pry off caps -02956883 06 n 02 capote 0 hooded_cloak 0 001 @ 03045337 n 0000 | a long cloak with a hood that can be pulled over the head -02957008 06 n 02 capote 1 hooded_coat 0 001 @ 03456665 n 0000 | a long overcoat with a hood that can be pulled over the head -02957135 06 n 01 cap_screw 0 001 @ 04153751 n 0000 | a threaded screw for machine parts; screws into a tapped hole -02957252 06 n 01 capstan 0 001 @ 04585745 n 0000 | a windlass rotated in a horizontal plane around a vertical axis; used on ships for weighing anchor or raising heavy sails -02957427 06 n 04 capstone 0 copestone 0 coping_stone 0 stretcher 1 002 @ 04326084 n 0000 #p 04546855 n 0000 | a stone that forms the top of wall or building -02957586 06 n 01 capsule 0 003 @ 03936568 n 0000 + 02678677 a 0101 + 01581070 v 0102 | a pill in the form of a small rounded gelatinous container with medicine inside -02957755 06 n 01 capsule 2 003 @ 03094503 n 0000 + 02678677 a 0101 ~ 03875806 n 0000 | a small container -02957862 06 n 01 captain's_chair 0 001 @ 02738535 n 0000 | a wooden armchair with a saddle seat and a low back that has vertical spindles -02958002 06 n 02 captopril 0 Capoten 0 002 @ 02673637 n 0000 ;u 06851742 n 0201 | a drug (trade name Capoten) that blocks the formation of angiotensin in the kidneys resulting in vasodilation; used in the treatment of hypertension and congestive heart failure -02958264 06 n 01 capuchin 0 001 @ 03045337 n 0000 | a hooded cloak for women -02958343 06 n 05 car 0 auto 0 automobile 0 machine 1 motorcar 0 076 @ 03791235 n 0000 + 10279018 n 0401 + 10334101 n 0302 + 01930738 v 0301 -c 01828987 a 0000 -c 01111375 n 0000 %p 02670683 n 0000 %p 02685365 n 0000 -c 02700064 n 0000 ~ 02701002 n 0000 %p 02758753 n 0000 %p 02761557 n 0000 %p 02761834 n 0000 -c 02770830 n 0000 ~ 02814533 n 0000 %p 02911158 n 0000 %p 02918595 n 0000 ~ 02924554 n 0000 ~ 02930766 n 0000 %p 02963821 n 0000 %p 02965783 n 0000 %p 02970685 n 0000 %p 02974219 n 0000 ~ 03079136 n 0000 ~ 03100240 n 0000 ~ 03119396 n 0000 ~ 03141065 n 0000 ~ 03268790 n 0000 %p 03327841 n 0000 %p 03350011 n 0000 %p 03366721 n 0000 ~ 03421669 n 0000 %p 03424630 n 0000 %p 03441345 n 0000 %p 03459775 n 0000 ~ 03493219 n 0000 ~ 03498781 n 0000 %p 03518631 n 0000 %p 03530910 n 0000 ~ 03539103 n 0000 ~ 03543394 n 0000 ~ 03594945 n 0000 ~ 03670208 n 0000 ~ 03680512 n 0000 %p 03696065 n 0000 ~ 03770085 n 0000 ~ 03770679 n 0000 ~ 03777568 n 0000 ~ 03870105 n 0000 ~ 04037443 n 0000 %p 04060065 n 0000 %p 04085017 n 0000 -c 04097256 n 0000 ~ 04097373 n 0000 %p 04105438 n 0000 %p 04120339 n 0000 ~ 04166281 n 0000 -c 04209811 n 0000 -c 04269086 n 0000 ~ 04285008 n 0000 ~ 04285965 n 0000 %p 04294614 n 0000 ~ 04302988 n 0000 ~ 04322924 n 0000 ~ 04347119 n 0000 %p 04357121 n 0000 %p 04384406 n 0000 %p 04425977 n 0000 ~ 04459122 n 0000 -c 04497962 n 0000 ~ 04516354 n 0000 %p 04588365 n 0000 -c 10403876 n 0000 -c 11460281 n 0000 -c 13245846 n 0000 -c 01562627 v 0000 | a motor vehicle with four wheels; usually propelled by an internal combustion engine; "he needs a car to get to work" -02959942 06 n 04 car 1 railcar 0 railway_car 0 railroad_car 0 014 @ 04576211 n 0000 #m 04468005 n 0000 ~ 02775039 n 0000 ~ 02932523 n 0000 ~ 03053976 n 0000 ~ 03393912 n 0000 ~ 03465320 n 0000 ~ 03483971 n 0000 ~ 03710294 n 0000 ~ 03895866 n 0000 ~ 04240576 n 0000 %p 04366116 n 0000 ~ 04409279 n 0000 ~ 04520480 n 0000 | a wheeled vehicle adapted to the rails of railroad; "three cars had jumped the rails" -02960352 06 n 02 car 2 elevator_car 0 002 @ 03079741 n 0000 #p 03281145 n 0000 | where passengers ride up and down; "the car was on the top floor" -02960501 06 n 02 car 3 gondola 3 002 @ 03079741 n 0000 #p 02692877 n 0000 | the compartment that is suspended from an airship and that carries personnel and the cargo and the power plant -02960690 06 n 03 carabiner 0 karabiner 0 snap_ring 0 002 @ 03533972 n 0000 @ 03323703 n 0000 | an oblong metal ring with a spring clip; used in mountaineering to attach a rope to a piton or to connect two ropes -02960903 06 n 02 carafe 0 decanter 0 002 @ 02876657 n 0000 + 02070296 v 0201 | a bottle with a stopper; for serving wine or water -02961035 06 n 04 caravansary 0 caravanserai 0 khan 0 caravan_inn 0 001 @ 03541696 n 0000 | an inn in some eastern countries with a large courtyard that provides accommodation for caravans -02961225 06 n 02 car_battery 0 automobile_battery 0 002 @ 03651388 n 0000 #p 03270165 n 0000 | a lead-acid storage battery in a motor vehicle; usually a 12-volt battery of six cells; the heart of the car's electrical system -02961451 06 n 01 carbine 0 002 @ 04090263 n 0000 + 09893746 n 0102 | light automatic rifle -02961544 06 n 01 car_bomb 0 001 @ 02866578 n 0000 | a bomb placed in a car and wired to explode when the ignition is started or by remote control or by a timing device -02961714 06 n 01 carbomycin 0 001 @ 02716866 n 0000 | a colorless basic antibiotic that inhibits the growth of Gram-positive organisms -02961851 06 n 02 carbon 0 carbon_copy 0 001 @ 03104594 n 0000 | a copy made with carbon paper -02961947 06 n 02 carbon_arc_lamp 0 carbon_arc 0 002 @ 02735361 n 0000 ~ 03622401 n 0000 | has carbon electrodes -02962061 06 n 01 carboy 0 001 @ 02876657 n 0000 | a large bottle for holding corrosive liquids; usually cushioned in a special container -02962200 06 n 02 carburetor 0 carburettor 0 006 @ 03736970 n 0000 #p 03401721 n 0000 %p 02689648 n 0000 %p 02689961 n 0000 %p 02927887 n 0000 %p 04527310 n 0000 | mixes air with gasoline vapor prior to explosion -02962414 06 n 01 car_carrier 0 001 @ 04467307 n 0000 | a trailer that can be loaded with new cars for delivery to sales agencies -02962545 06 n 01 card 0 005 @ 14974264 n 0000 ~ 03963982 n 0000 ~ 04023808 n 0000 ~ 04394821 n 0000 ~ 04465795 n 0000 | one of a set of small pieces of stiff paper marked in various ways and used for playing games or for telling fortunes; "he collected cards and traded them with the other boys" -02962843 06 n 01 cardcase 0 001 @ 02974697 n 0000 | a small case for carrying business cards -02962938 06 n 02 cardiac_monitor 0 heart_monitor 0 004 @ 03781787 n 0000 %p 02781764 n 0000 %p 02963503 n 0000 %p 03857828 n 0000 | a piece of electronic equipment for continual observation of the function of the heart -02963159 06 n 01 cardigan 0 002 @ 04370048 n 0000 %p 04238321 n 0000 | knitted jacket that is fastened up the front with buttons or a zipper -02963302 06 n 03 card_index 0 card_catalog 0 card_catalogue 0 002 @ 03337140 n 0000 ~ 04104147 n 0000 | an alphabetical listing of items (e.g., books in a library) with a separate card for each item -02963503 06 n 02 cardiograph 0 electrocardiograph 0 002 @ 03739693 n 0000 #p 02962938 n 0000 | medical instrument that records electric currents associated with contractions of the heart -02963692 06 n 01 cardioid_microphone 0 001 @ 03205143 n 0000 | a directional microphone with a cardioid pattern of sensitivity -02963821 06 n 01 car_door 0 006 @ 03221720 n 0000 #p 02958343 n 0000 %p 02741475 n 0000 %p 03223162 n 0000 ~ 03498662 n 0000 %p 03521076 n 0000 | the door of a car -02963987 06 n 01 cardroom 0 001 @ 04105893 n 0000 | a room for gambling on card games -02964075 06 n 01 card_table 0 001 @ 04379243 n 0000 | a small light table with folding legs; can be folded for storage -02964196 06 n 01 card_table 1 001 @ 04379243 n 0000 | a table for playing cards (as in a casino) -02964295 06 n 01 car-ferry 0 001 @ 03329663 n 0000 | a ferry that transports motor vehicles -02964389 06 n 08 cargo 0 lading 0 freight 0 load 2 loading 0 payload 0 shipment 0 consignment 0 006 @ 03748886 n 0000 + 01950798 v 0703 + 01612084 v 0401 + 01489989 v 0401 + 01489161 v 0301 + 01489989 v 0202 | goods carried by a large vehicle -02964634 06 n 05 cargo_area 0 cargo_deck 0 cargo_hold 0 hold 2 storage_area 0 004 @ 03285912 n 0000 #p 04194289 n 0000 + 02701210 v 0403 + 02700867 v 0401 | the space in a ship or aircraft for storing cargo -02964843 06 n 01 cargo_container 0 001 @ 03094503 n 0000 | a large container for freight -02964934 06 n 01 cargo_door 0 001 @ 03221720 n 0000 | door used to load or unload cargo -02965024 06 n 01 cargo_hatch 0 001 @ 03498536 n 0000 | hatch opening into the cargo compartment -02965122 06 n 01 cargo_helicopter 0 001 @ 03512147 n 0000 | a helicopter that carries cargo -02965216 06 n 01 cargo_liner 0 001 @ 03673027 n 0000 | a liner that carries cargo -02965300 06 n 02 cargo_ship 0 cargo_vessel 0 008 @ 04194289 n 0000 ~ 02784124 n 0000 ~ 02878222 n 0000 ~ 02986348 n 0000 ~ 03095699 n 0000 %p 03392908 n 0000 ~ 03660562 n 0000 ~ 03845190 n 0000 | a ship designed to carry cargo -02965529 06 n 01 carillon 0 001 @ 03017168 n 0000 | set of bells hung in a bell tower -02965617 06 n 01 carminative 0 002 @ 03740161 n 0000 + 01165665 a 0101 | medication that prevents the formation of gas in the alimentary tract or eases its passing -02965783 06 n 01 car_mirror 0 004 @ 03773035 n 0000 #p 02958343 n 0000 ~ 03861842 n 0000 ~ 04059947 n 0000 | a mirror that the driver of a car can use -02965936 06 n 01 Carnegie_Mellon_University 0 002 @i 04511002 n 0000 #p 09136582 n 0000 | an engineering university in Pittsburgh -02966068 06 n 01 caroche 0 001 @ 02968473 n 0000 | a luxurious carriage suitable for nobility in the 16th and 17th century -02966193 06 n 05 carousel 0 carrousel 0 merry-go-round 0 roundabout 1 whirligig 0 001 @ 04088797 n 0000 | a large, rotating machine with seats for children to ride or amusement -02966372 06 n 04 carousel 1 carrousel 1 luggage_carousel 0 luggage_carrousel 0 001 @ 03100897 n 0000 | a conveyer belt that carries luggage to be claimed by air travelers -02966545 06 n 03 carpenter's_hammer 0 claw_hammer 0 clawhammer 0 001 @ 03481172 n 0000 | a hammer with a cleft at one end for pulling nails -02966687 06 n 02 carpenter's_kit 0 tool_kit 0 001 @ 03619396 n 0000 | a set of carpenter's tools -02966786 06 n 01 carpenter's_level 0 003 @ 02788689 n 0000 %p 03658858 n 0000 ~ 03969510 n 0000 | a straight bar of light metal with a spirit level in it -02966942 06 n 01 carpenter's_mallet 0 001 @ 03715386 n 0000 | a short-handled mallet with a wooden head used to strike a chisel or wedge -02967081 06 n 01 carpenter's_rule 0 001 @ 04118776 n 0000 | a rule used by a carpenter -02967170 06 n 01 carpenter's_square 0 001 @ 04291242 n 0000 | a steel square used by carpenters; larger than a try square -02967294 06 n 01 carpetbag 0 001 @ 02773838 n 0000 | traveling bag made of carpet; widely used in 19th century -02967407 06 n 02 carpet_beater 0 rug_beater 0 002 @ 02817650 n 0000 %p 03485997 n 0000 | implement for beating dust out of carpets -02967540 06 n 01 carpet_loom 0 001 @ 03689157 n 0000 | a loom for weaving carpeting -02967626 06 n 04 carpet_pad 0 rug_pad 0 underlay 0 underlayment 0 003 @ 03872495 n 0000 + 01497292 v 0401 ~ 04508062 n 0000 | a pad placed under a carpet -02967782 06 n 02 carpet_sweeper 0 sweeper 0 003 @ 03039947 n 0000 + 01393996 v 0201 + 01393714 v 0201 | a cleaning implement with revolving brushes that pick up dirt as the implement is pushed over a carpet -02967991 06 n 01 carpet_tack 0 001 @ 04383130 n 0000 | used to nail down carpets -02968074 06 n 02 carport 0 car_port 0 001 @ 03416489 n 0000 | garage for one or two cars consisting of a flat roof supported on poles -02968210 06 n 02 carrack 0 carack 0 001 @ 03411339 n 0000 | a large galleon sailed in the Mediterranean as a merchantman -02968333 06 n 04 carrel 0 carrell 0 cubicle 1 stall 2 002 @ 02696048 n 0000 #p 03660664 n 0000 | small individual study area in a library -02968473 06 n 03 carriage 0 equipage 0 rig 3 024 @ 03538634 n 0000 %p 02765028 n 0000 ~ 02794474 n 0000 ~ 02907296 n 0000 ~ 02909706 n 0000 ~ 02912557 n 0000 ~ 02931013 n 0000 ~ 02966068 n 0000 ~ 03002555 n 0000 ~ 03009111 n 0000 ~ 03037590 n 0000 ~ 03055670 n 0000 ~ 03247351 n 0000 ~ 03435991 n 0000 ~ 03436656 n 0000 ~ 03474635 n 0000 ~ 03492087 n 0000 ~ 03638014 n 0000 ~ 03989199 n 0000 %p 04119091 n 0000 ~ 04302863 n 0000 ~ 04365112 n 0000 ~ 04474843 n 0000 ~ 04486616 n 0000 | a vehicle with wheels drawn by one or more horses -02969010 06 n 01 carriage 2 004 @ 03738472 n 0000 #p 04505036 n 0000 #p 03646296 n 0000 ~ 04505345 n 0000 | a machine part that carries something else -02969163 06 n 01 carriage_bolt 0 001 @ 02865665 n 0000 | a roundheaded bolt for timber; threaded along part of the shank; inserted into holes already drilled -02969323 06 n 01 carriageway 0 003 @ 04097622 n 0000 #p 03306610 n 0000 ;r 08860123 n 0000 | one of the two sides of a motorway where traffic travels in one direction only usually in two or three lanes -02969527 06 n 01 carriage_wrench 0 001 @ 04606574 n 0000 | a wrench designed for use with carriage bolts -02969634 06 n 01 carrick_bend 0 001 @ 03627232 n 0000 | a knot used to connect the ends of two large ropes or hawsers -02969754 06 n 01 carrick_bitt 0 001 @ 03988170 n 0000 | either of a pair of strong posts that support a windlass on a ship's deck -02969886 06 n 01 carrier 2 006 @ 04038727 n 0000 + 01218084 v 0101 ~ 02868429 n 0000 ~ 03695957 n 0000 ~ 03696301 n 0000 ~ 04230707 n 0000 | a rack attached to a vehicle; for carrying luggage or skis or the like -02970100 06 n 01 carrier 3 002 @ 04170037 n 0000 + 01449974 v 0102 | a self-propelled wheeled vehicle designed specifically to carry something; "refrigerated carriers have revolutionized the grocery business" -02970311 06 n 01 carron_oil 0 001 @ 03845550 n 0000 | an ointment formerly used to treat burns -02970408 06 n 04 carryall 0 holdall 0 tote 0 tote_bag 0 002 @ 02773037 n 0000 + 01454246 v 0302 | a capacious bag or basket -02970534 06 n 01 carrycot 0 002 @ 02766320 n 0000 %p 03485997 n 0000 | box-shaped baby bed with handles (for a baby to sleep in while being carried) -02970685 06 n 01 car_seat 0 006 @ 04161358 n 0000 #p 02958343 n 0000 %p 02767433 n 0000 ~ 03167153 n 0000 %p 03505207 n 0000 %p 04162706 n 0000 | a seat in a car -02970849 06 n 01 cart 0 012 @ 04543158 n 0000 + 01451502 v 0101 %p 02765028 n 0000 %p 02973236 n 0000 ~ 03217739 n 0000 ~ 03255899 n 0000 ~ 03538406 n 0000 ~ 03594010 n 0000 ~ 03599486 n 0000 ~ 03868242 n 0000 ~ 03981924 n 0000 ~ 04558059 n 0000 | a heavy open wagon usually having two wheels and drawn by an animal -02971167 06 n 04 car_tire 0 automobile_tire 0 auto_tire 0 rubber_tire 0 002 @ 04440749 n 0000 ~ 04083942 n 0000 | a tire consisting of a rubber ring around the rim of an automobile wheel -02971356 06 n 01 carton 0 002 @ 02883344 n 0000 ~ 04225222 n 0000 | a box made of cardboard; opens by flaps on top -02971473 06 n 02 cartouche 0 cartouch 0 001 @ 02971691 n 0000 | a cartridge (usually with paper casing) -02971579 06 n 01 car_train 0 001 @ 04468005 n 0000 | a train that transports passengers and their automobiles -02971691 06 n 01 cartridge 0 005 @ 02703275 n 0000 ~ 02780445 n 0000 ~ 02848921 n 0000 %p 02916350 n 0000 ~ 02971473 n 0000 | ammunition consisting of a cylindrical casing containing an explosive charge and a bullet; fired from a rifle or handgun -02971940 06 n 02 cartridge 2 pickup 1 004 @ 03274561 n 0000 #p 04064401 n 0000 ~ 03143982 n 0000 %p 04346679 n 0000 | an electro-acoustic transducer that is the part of the arm of a record player that holds the needle and that is removable -02972182 06 n 01 cartridge 3 003 @ 03778600 n 0000 ~ 03571706 n 0000 ~ 04392370 n 0000 | a module designed to be inserted into a larger piece of equipment; "he loaded a cartridge of fresh tape into the tape deck" -02972397 06 n 01 cartridge_belt 0 002 @ 02827606 n 0000 ~ 02786611 n 0000 | a broad belt with loops or pockets for holding ammunition -02972533 06 n 02 cartridge_ejector 0 ejector 0 003 @ 03738472 n 0000 #p 03467984 n 0000 + 01468576 v 0201 | a mechanism in a firearm that ejects the empty shell case after firing -02972714 06 n 03 cartridge_extractor 0 cartridge_remover 0 extractor 2 002 @ 03738472 n 0000 #p 03467984 n 0000 | a mechanism in a firearm that pulls an empty shell case out of the chamber and passes it to the ejector -02972934 06 n 01 cartridge_fuse 0 001 @ 03407369 n 0000 | a fuse cased in a tube -02973017 06 n 04 cartridge_holder 0 cartridge_clip 0 clip 0 magazine 3 003 @ 04359335 n 0000 #p 03467984 n 0000 ~ 03942028 n 0000 | a metal frame or container holding cartridges; can be inserted into an automatic gun -02973236 06 n 01 cartwheel 0 004 @ 04574999 n 0000 #p 02970849 n 0000 %p 04283378 n 0000 %p 04543636 n 0000 | a wheel that has wooden spokes and a metal rim -02973395 06 n 01 carvedilol 0 001 @ 02832168 n 0000 | beta blocker that can reduce the progression of heart failure in individuals whose disease is not advanced -02973558 06 n 01 carving 0 006 @ 04157320 n 0000 ~ 03032453 n 0000 ~ 03442288 n 0000 ~ 04155735 n 0000 ~ 04528490 n 0000 ~ 04597309 n 0000 | a sculpture created by removing material (as wood or ivory or stone) in order to create a desired shape -02973805 06 n 01 carving_fork 0 001 @ 03383948 n 0000 | a large fork used in carving cooked meat -02973904 06 n 01 carving_knife 0 001 @ 03623556 n 0000 | a large knife used to carve cooked meat -02974003 06 n 01 car_wheel 0 006 @ 04574999 n 0000 #p 03791235 n 0000 ~ 03334912 n 0000 %p 03547658 n 0000 %p 03548086 n 0000 %p 03971422 n 0000 | a wheel that has a tire and rim and hubcap; used to propel the car -02974219 06 n 01 car_window 0 004 @ 04588365 n 0000 #p 02958343 n 0000 ~ 04032242 n 0000 ~ 04060065 n 0000 | a window in a car -02974348 06 n 01 caryatid 0 001 @ 03073977 n 0000 | a supporting column carved in the shape of a person -02974454 06 n 01 cascade_liquefier 0 001 @ 02727825 n 0000 | an apparatus used to liquefy air or oxygen etc. -02974565 06 n 01 cascade_transformer 0 001 @ 04315828 n 0000 | a number of transformers in series; provides a high-voltage source -02974697 06 n 01 case 0 021 @ 03094503 n 0000 + 01486312 v 0103 ~ 02774630 n 0000 ~ 02900705 n 0000 ~ 02962843 n 0000 ~ 03031012 n 0000 ~ 03078995 n 0000 ~ 03210372 n 0000 ~ 03438863 n 0000 ~ 03468821 n 0000 ~ 03619650 n 0000 ~ 03658102 n 0000 ~ 03683995 n 0000 ~ 03937751 n 0000 ~ 03986355 n 0000 ~ 04035836 n 0000 ~ 04200000 n 0000 ~ 04236702 n 0000 ~ 04548362 n 0000 ~ 04556533 n 0000 ~ 04608435 n 0000 | a portable container for carrying several objects; "the musicians left their instrument cases backstage" -02975212 06 n 04 case 1 display_case 0 showcase 0 vitrine 0 003 @ 03094503 n 0000 + 01486312 v 0103 ~ 04488202 n 0000 | a glass container used to store and display items in a shop or museum or home -02975412 06 n 04 case 2 pillowcase 0 slip 2 pillow_slip 0 001 @ 02821030 n 0000 | bed linen consisting of a cover for a pillow; "the burglar carried his loot in a pillowcase" -02975589 06 n 03 case 3 compositor's_case 0 typesetter's_case 0 002 @ 04060904 n 0000 ;c 01103159 n 0000 | (printing) the receptacle in which a compositor has his type, which is divided into compartments for the different letters, spaces, or numbers; "for English, a compositor will ordinarily have two such cases, the upper case containing the capitals and the lower case containing the small letters" -02975994 06 n 02 casein_paint 0 casein 0 001 @ 04557308 n 0000 | a water-base paint made with a protein precipitated from milk -02976123 06 n 02 case_knife 1 sheath_knife 0 001 @ 03623556 n 0000 | a knife with a fixed blade that is carried in a sheath -02976249 06 n 01 case_knife 2 001 @ 04380346 n 0000 | a metal blade with a handle; used as cutlery -02976350 06 n 01 casement 0 001 @ 04136510 n 0000 | a window sash that is hinged (usually on one side) -02976455 06 n 01 casement_window 0 001 @ 04587648 n 0000 | a window with one or more casements -02976552 06 n 01 casern 0 001 @ 02794779 n 0000 | military barracks in a garrison town -02976641 06 n 03 case_shot 0 canister 1 canister_shot 0 002 @ 02703275 n 0000 %p 04205759 n 0000 | a metallic cylinder packed with shot and used as ammunition in a firearm -02976815 06 n 01 cash_bar 0 001 @ 02789487 n 0000 | a counter at a large party where you can purchase drinks by the glass -02976939 06 n 03 cashbox 0 money_box 0 till 0 002 @ 04340750 n 0000 ~ 02977438 n 0000 | a strongbox for holding cash -02977058 06 n 07 cash_machine 0 cash_dispenser 0 automated_teller_machine 0 automatic_teller_machine 0 automated_teller 0 automatic_teller 0 ATM 0 001 @ 03699975 n 0000 | an unattended machine (outside some banks) that dispenses money when a personal coded card is used -02977330 06 n 01 cashmere 0 001 @ 03309808 n 0000 | a soft fabric made from the wool of the Cashmere goat -02977438 06 n 02 cash_register 0 register 2 002 @ 02976939 n 0000 %p 02679257 n 0000 | a cashbox with an adding machine to register transactions; used in shops to add up the bill -02977619 06 n 02 casing 0 case 7 003 @ 03391770 n 0000 #p 03224032 n 0000 #p 04587648 n 0000 | the enclosing frame around a door or window opening; "the casings had rotted away and had to be replaced" -02977822 06 n 01 casing 2 002 @ 03122748 n 0000 #p 03971422 n 0000 | the outermost covering of a pneumatic tire -02977936 06 n 02 casino 0 gambling_casino 0 001 @ 03413428 n 0000 | a public building for gambling and entertainment -02978055 06 n 02 casket 0 jewel_casket 0 002 @ 02883344 n 0000 + 01599539 v 0101 | small and often ornate box for holding jewels or other valuables -02978205 06 n 01 casque 0 003 @ 03513376 n 0000 #p 02862048 n 0000 ~ 02978367 n 0000 | (15-16th century) any armor for the head; usually ornate without a visor -02978367 06 n 02 casquet 0 casquetel 0 001 @ 02978205 n 0000 | a light open casque without a visor or beaver -02978478 06 n 02 Cassegrainian_telescope 0 Gregorian_telescope 0 001 @ 04068601 n 0000 | a reflecting telescope that has a paraboloidal primary mirror and a hyperboloidal secondary mirror; light is brought to a focus through an aperture in the center of the primary mirror -02978753 06 n 01 casserole 0 002 @ 03206908 n 0000 ~ 03062336 n 0000 | large deep dish in which food can be cooked and served -02978881 06 n 01 cassette 0 004 @ 03094503 n 0000 ~ 02756977 n 0000 %p 02979399 n 0000 ~ 04533700 n 0000 | a container that holds a magnetic tape used for recording or playing sound or video -02979074 06 n 01 cassette_deck 0 001 @ 04392526 n 0000 | a tape deck for playing and recording cassette tapes -02979186 06 n 01 cassette_player 0 001 @ 03278248 n 0000 | electronic equipment for playing cassettes -02979290 06 n 01 cassette_recorder 0 001 @ 04063373 n 0000 | a recorder for recording or playing cassettes -02979399 06 n 01 cassette_tape 0 002 @ 03708036 n 0000 #p 02978881 n 0000 | a cassette that contains magnetic tape -02979516 06 n 01 cassock 0 002 @ 04532106 n 0000 ~ 04264233 n 0000 | a black garment reaching down to the ankles; worn by priests or choristers -02979662 06 n 02 cast 0 casting 1 006 @ 03104594 n 0000 + 01662771 v 0201 + 01662771 v 0101 ~ 03167053 n 0000 ~ 03288225 n 0000 ~ 03663332 n 0000 | object formed by a mold -02979836 06 n 03 cast 2 plaster_cast 0 plaster_bandage 0 001 @ 02785648 n 0000 | bandage consisting of a firm covering (often made of plaster of Paris) that immobilizes broken bones while they heal -02980036 06 n 02 caster 0 castor 1 001 @ 04101701 n 0000 | a pivoting roller attached to the bottom of furniture or trucks or portable machines to make them movable -02980203 06 n 02 caster 1 castor 2 001 @ 04183329 n 0000 | a shaker with a perforated top for sprinkling powdered sugar -02980325 06 n 01 castile_soap 0 001 @ 04253437 n 0000 | a good hard soap made from olive oil and sodium hydroxide -02980441 06 n 01 castle 0 004 @ 03385557 n 0000 %p 03610098 n 0000 %p 04501947 n 0000 ~i 08892428 n 0000 | a large building formerly occupied by a ruler and fortified against attack -02980625 06 n 02 castle 1 rook 0 003 @ 03014440 n 0000 ;c 00503237 n 0000 + 01077329 v 0101 | (chess) the piece that can move any number of unoccupied squares in a direction parallel to the sides of the chessboard -02980841 06 n 01 castor_oil 0 002 @ 04025748 n 0000 %s 14742601 n 0000 | a purgative extracted from the seed of the castor-oil plant; used in paint and varnish as well as medically -02981024 06 n 01 catacomb 0 003 @ 04497962 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | an underground tunnel with recesses where bodies were buried (as in ancient Rome) -02981198 06 n 01 catafalque 0 001 @ 02836268 n 0000 | a decorated bier on which a coffin rests in state during a funeral -02981321 06 n 01 catalytic_converter 0 001 @ 03099945 n 0000 | a converter that uses a platinum-iridium catalyst to oxidize pollutants and carbon monoxide into carbon dioxide and water; an antipollution device on an automotive exhaust system -02981565 06 n 02 catalytic_cracker 0 cat_cracker 0 002 @ 03013006 n 0000 #p 03844673 n 0000 | a chemical reactor for converting oils with high boiling points into fuels with lower boiling points in the presence of a catalyst -02981792 06 n 01 catamaran 0 001 @ 04128499 n 0000 | a sailboat with two parallel hulls held together by single deck -02981911 06 n 09 catapult 0 arbalest 0 arbalist 0 ballista 0 bricole 0 mangonel 0 onager 0 trebuchet 0 trebucket 0 004 @ 03288003 n 0000 + 02683419 a 0102 + 02683419 a 0101 + 01515566 v 0101 | an engine that provided medieval artillery used during sieges; a heavy war engine for hurling large stones and other missiles -02982232 06 n 02 catapult 2 launcher 1 005 @ 03183080 n 0000 + 01514655 v 0201 + 02683419 a 0102 + 02683419 a 0101 + 01515566 v 0101 | a device that launches aircraft from a warship -02982416 06 n 01 catboat 0 001 @ 04128499 n 0000 | a sailboat with a single mast set far forward -02982515 06 n 01 cat_box 0 001 @ 04060904 n 0000 | a receptacle for cat excrement -02982599 06 n 01 catch 0 006 @ 03323703 n 0000 + 01327816 v 0102 ~ 03497352 n 0000 ~ 03531982 n 0000 ~ 03532919 n 0000 ~ 03644858 n 0000 | a fastener that fastens or locks a door or window -02982790 06 n 02 catch 2 stop 0 008 @ 04081844 n 0000 + 01478002 v 0204 + 01440378 v 0202 + 01131473 v 0204 ~ 02829353 n 0000 ~ 03223923 n 0000 ~ 03901548 n 0000 ~ 04485226 n 0000 | a restraint that checks the motion of something; "he used a book as a stop to hold the door open" -02983072 06 n 01 catchall 0 002 @ 03285912 n 0000 @ 04060904 n 0000 | an enclosure or receptacle for odds and ends -02983189 06 n 01 catcher's_mask 0 004 @ 03314378 n 0000 @ 02799897 n 0000 ~ 02793414 n 0000 ~ 02843365 n 0000 | a mask to protect the face of the catcher in baseball -02983357 06 n 01 catchment 0 002 @ 04341686 n 0000 + 01480469 v 0101 | a structure in which water is collected (especially a natural drainage area) -02983507 06 n 02 Caterpillar 0 cat 1 003 @ 04464852 n 0000 ;u 07157273 n 0201 ;u 06851742 n 0101 | a large tracked vehicle that is propelled by two endless metal belts; frequently used for moving earth in construction and farm work -02983741 06 n 02 catgut 0 gut 0 003 @ 03106110 n 0000 #s 04367205 n 0000 + 01590747 v 0201 | a strong cord made from the intestines of sheep and used in surgery -02983904 06 n 02 cathedra 0 bishop's_throne 0 003 @ 04429376 n 0000 #p 02984061 n 0000 + 02684317 a 0101 | a throne that is the official chair of a bishop -02984061 06 n 01 cathedral 0 004 @ 03028079 n 0000 %p 02983904 n 0000 ~i 03010138 n 0000 ~ 03772077 n 0000 | any large and important church -02984203 06 n 02 cathedral 1 duomo 0 001 @ 03028079 n 0000 | the principal Christian church building of a bishop's diocese -02984328 06 n 02 catherine_wheel 0 pinwheel 0 001 @ 03348454 n 0000 | a circular firework that spins round and round emitting colored fire -02984469 06 n 01 catheter 0 004 @ 04493505 n 0000 + 00188721 v 0101 + 00188721 v 0102 ~ 03286878 n 0000 | a thin flexible tube inserted into the body to permit introduction or withdrawal of fluids or to keep the passageway open -02984699 06 n 01 cathode 0 006 @ 03274796 n 0000 #p 03275864 n 0000 #p 04494204 n 0000 ! 02714315 n 0101 ~ 03067093 n 0000 ~ 03924407 n 0000 | a negatively charged electrode that is the source of electrons entering an electrical device -02984937 06 n 01 cathode 1 004 @ 04412901 n 0000 #p 04328329 n 0000 #p 04540761 n 0000 ! 02714535 n 0101 | the positively charged terminal of a voltaic cell or storage battery that supplies current -02985137 06 n 02 cathode-ray_tube 0 CRT 0 008 @ 03422589 n 0000 #p 03857828 n 0000 #p 04404412 n 0000 #p 03082979 n 0000 ~ 03134394 n 0000 %p 03277149 n 0000 ~ 03617594 n 0000 %p 04152593 n 0000 | a vacuum tube in which a hot cathode emits a beam of electrons that pass through a high voltage anode and are focused or deflected before hitting a phosphorescent screen -02985506 06 n 01 catling 0 001 @ 04364827 n 0000 | a long double-edged knife used for amputations -02985606 06 n 02 cat-o'-nine-tails 0 cat 0 002 @ 04577769 n 0000 + 01411870 v 0201 | a whip with nine knotted cords; "British sailors feared the cat" -02985758 06 n 01 cat_rig 0 001 @ 04091247 n 0000 | rig of a catboat -02985828 06 n 01 cat's-paw 0 001 @ 03522634 n 0000 | a hitch in the middle of rope that has two eyes into which tackle can be hooked -02985963 06 n 02 catsup_bottle 0 ketchup_bottle 0 001 @ 02876657 n 0000 | a bottle that holds catsup -02986066 06 n 01 cattle_car 0 001 @ 03393912 n 0000 | a freight car for transporting cattle -02986160 06 n 02 cattle_guard 0 cattle_grid 0 001 @ 02898711 n 0000 | a bridge over a ditch consisting of parallel metal bars that allow pedestrians and vehicles to pass, but not cattle -02986348 06 n 02 cattleship 0 cattle_boat 0 002 @ 02965300 n 0000 + 02402425 n 0101 | a cargo ship for the transport of livestock -02986480 06 n 01 cattle_trail 0 002 @ 04466613 n 0000 ~i 03020927 n 0000 | a trail over which cattle were driven to market -02986605 06 n 01 catwalk 0 001 @ 04544979 n 0000 | narrow pathway high in the air (as above a stage or between parts of a building or along a bridge) -02986757 06 n 01 catwalk 1 001 @ 03961939 n 0000 | narrow platform extending out into an auditorium; "models displayed clothes on a catwalk at the fashion show" -02986920 06 n 01 causeway 0 002 @ 04096066 n 0000 + 01267742 v 0101 | a road that is raised above water or marshland or sand -02987047 06 n 02 cautery 0 cauterant 0 006 @ 03574816 n 0000 + 00373766 v 0201 + 00373766 v 0101 + 00373766 v 0102 ~ 03141991 n 0000 ~ 04161010 n 0000 | an instrument or substance used to destroy tissue for medical reasons (eg removal of a wart) by burning it with a hot iron or an electric current or a caustic or by freezing it -02987379 06 n 02 cavalier_hat 0 slouch_hat 0 001 @ 03497657 n 0000 | a soft felt hat with a wide flexible brim -02987492 06 n 03 cavalry_sword 0 saber 0 sabre 0 006 @ 04373894 n 0000 + 01554622 v 0301 + 01326730 v 0302 + 01326730 v 0201 + 01554622 v 0202 ~ 04147793 n 0000 | a stout sword with a curved blade and thick back -02987706 06 n 01 cavetto 0 001 @ 03780392 n 0000 | a concave molding shaped like a quarter circle in cross section -02987823 06 n 01 cavity_wall 0 001 @ 04546855 n 0000 | a wall formed of two thicknesses of masonry with a space between them -02987950 06 n 01 C_battery 0 001 @ 02810471 n 0000 | battery used to maintain the grid potential in a vacuum tube -02988066 06 n 01 C-clamp 0 001 @ 03036866 n 0000 | a clamp in the shape of the letter C -02988156 06 n 01 CD_drive 0 002 @ 03243218 n 0000 #p 02988304 n 0000 | a drive that reads a compact disc and that is connected to an audio system -02988304 06 n 01 CD_player 0 002 @ 03278248 n 0000 %p 02988156 n 0000 | a stand-alone piece of electronic equipment that either has its own display or attaches to a television set -02988486 06 n 04 CD-R 0 compact_disc_recordable 0 CD-WO 0 compact_disc_write-once 0 001 @ 03079230 n 0000 | a compact disc on which you can write only once and thereafter is read-only memory -02988679 06 n 02 CD-ROM 0 compact_disc_read-only_memory 0 002 @ 03079230 n 0000 @ 04058239 n 0000 | a compact disk that is used with a computer (rather than with an audio system); a large amount of digital information can be stored and accessed but it cannot be altered by the user -02988963 06 n 01 CD-ROM_drive 0 001 @ 03243218 n 0000 | a drive that is connected to a computer and on which a CD-ROM can be `played' -02989099 06 n 01 cedar_chest 0 001 @ 03014705 n 0000 | a chest made of cedar -02989178 06 n 02 cefadroxil 0 Ultracef 0 002 @ 02996840 n 0000 ;u 06845599 n 0201 | a cephalosporin antibiotic (trade name Ultracef) -02989313 06 n 02 cefoperazone 0 Cefobid 0 002 @ 02996840 n 0000 ;u 06845599 n 0201 | a parenteral cephalosporin (trade name Cefobid) used for severe infections -02989475 06 n 02 cefotaxime 0 Claforan 0 002 @ 02996840 n 0000 ;u 06845599 n 0201 | a parenteral cephalosporin (trade name Claforan) used for severe infections of the lungs or throat or ears or urinary tract -02989685 06 n 03 ceftazidime 0 Fortaz 0 Tazicef 0 003 @ 02996840 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | a parenteral cephalosporin (trade names Fortaz and Tazicef) used to treat moderate infections -02989893 06 n 02 ceftriaxone 0 Rocephin 0 002 @ 02996840 n 0000 ;u 06845599 n 0201 | a parenteral cephalosporin (trade name Rocephin) used for severe infection of the lungs or throat or ears or urinary tract -02990103 06 n 03 cefuroxime 0 Ceftin 0 Zinacef 0 001 @ 02996840 n 0000 | a cephalosporin that can be given parenterally (trade name Zinacef) or orally by tablets (trade name Ceftin); indicated for infections of the lungs or throat or ears or urinary tract or meninges -02990373 06 n 01 ceiling 0 004 @ 04514899 n 0000 #p 04105893 n 0000 #p 03479952 n 0000 ~ 03864542 n 0000 | the overhead upper surface of a covered space; "he hated painting the ceiling" -02990561 06 n 02 celecoxib 0 Celebrex 0 002 @ 03124700 n 0000 ;u 06845599 n 0201 | a Cox-2 inhibitor (trade name Celebrex) that relieves pain and inflammation without harming the digestive tract -02990758 06 n 01 celesta 0 001 @ 03614532 n 0000 | a musical instrument consisting of graduated steel plates that are struck by hammers activated by a keyboard -02990920 06 n 01 celestial_globe 0 002 @ 03440512 n 0000 ~ 02739248 n 0000 | a globe that is a spherical model of the heavens -02991048 06 n 02 cell 0 electric_cell 0 007 @ 03269401 n 0000 + 02685299 a 0101 ~ 03275864 n 0000 ~ 03400798 n 0000 ~ 04257986 n 0000 ~ 04328580 n 0000 ~ 04540761 n 0000 | a device that delivers an electric current as the result of a chemical reaction -02991302 06 n 03 cell 1 jail_cell 0 prison_cell 0 009 @ 04105893 n 0000 #p 02992032 n 0000 + 02685299 a 0101 ~ 02917742 n 0000 ~ 03102771 n 0000 ~ 03256928 n 0000 ~ 03465040 n 0000 ~ 03525252 n 0000 ~ 04369973 n 0000 | a room where a prisoner is kept -02991555 06 n 02 cell 2 cubicle 2 004 @ 04105893 n 0000 #p 03781244 n 0000 #p 03099454 n 0000 + 02685299 a 0101 | small room in which a monk or nun lives -02991711 06 n 01 cell 3 003 @ 03080309 n 0000 + 02685299 a 0101 + 00327031 a 0101 | any small compartment; "the cells of a honeycomb" -02991847 06 n 02 cellar 1 wine_cellar 0 001 @ 04328946 n 0000 | storage space where wines are stored -02991950 06 n 01 cellarage 0 001 @ 02800497 n 0000 | a storage area in a cellar -02992032 06 n 02 cellblock 0 ward 1 004 @ 02853016 n 0000 #p 04005630 n 0000 %p 02991302 n 0000 ~ 03166809 n 0000 | a division of a prison (usually consisting of several cells) -02992211 06 n 02 cello 0 violoncello 0 002 @ 02880546 n 0000 + 09903501 n 0101 | a large stringed instrument; seated player holds it upright while playing -02992368 06 n 01 cellophane 0 001 @ 03958752 n 0000 | a transparent paperlike product that is impervious to moisture and used to wrap candy or cigarettes etc. -02992529 06 n 05 cellular_telephone 0 cellular_phone 0 cellphone 0 cell 4 mobile_phone 0 002 @ 04044498 n 0000 + 00789934 v 0301 | a hand-held mobile radiotelephone for use in an area divided into small sections, each with its own short-range transmitter/receiver -02992795 06 n 03 cellulose_tape 0 Scotch_tape 0 Sellotape 0 005 @ 02680337 n 0000 ;u 06851742 n 0301 + 01331988 v 0201 ;u 06851742 n 0201 + 01331988 v 0302 | transparent or semitransparent adhesive tape (trade names Scotch tape and Sellotape) used for sealing or attaching or mending -02993081 06 n 01 Celtic_cross 0 001 @ 03135152 n 0000 | a Latin cross with a ring surrounding the intersection -02993194 06 n 02 cenotaph 0 empty_tomb 0 001 @ 03743902 n 0000 | a monument built to honor people whose remains are interred elsewhere or whose remains cannot be recovered -02993368 06 n 02 censer 0 thurible 0 002 @ 04531098 n 0000 ;c 05946687 n 0000 | a container for burning incense (especially one that is swung on a chain in a religious ritual) -02993546 06 n 02 center 0 centre 0 010 @ 02913152 n 0000 ~ 02922996 n 0000 ~ 02940385 n 0000 ~ 03078506 n 0000 ~ 03089753 n 0000 ~ 03097362 n 0000 ~ 04077889 n 0000 ~ 04175574 n 0000 ~ 04177931 n 0000 ~ 04343511 n 0000 | a building dedicated to a particular activity; "they were raising money to build a new center for research" -02993877 06 n 02 center_bit 0 centre_bit 0 001 @ 02844307 n 0000 | a bit with a sharp center point for guidance and two side cutters -02994012 06 n 04 centerboard 0 centreboard 0 drop_keel 0 sliding_keel 0 003 @ 03343047 n 0000 #p 04128499 n 0000 ~ 03159176 n 0000 | a retractable fin keel used on sailboats to prevent drifting to leeward -02994219 06 n 03 center_field 0 centerfield 0 center 2 002 @ 08673395 n 0000 #p 03859717 n 0000 | the piece of ground in the outfield directly ahead of the catcher; "he hit the ball to deep center" -02994419 06 n 02 centerpiece 0 centrepiece 0 002 @ 03169390 n 0000 ~ 03292603 n 0000 | something placed at the center of something else (as on a table) -02994573 06 n 01 center_punch 0 001 @ 04023249 n 0000 | a tool with a conical point that is used to make indentations in metal (especially to mark points for drilling) -02994743 06 n 01 Centigrade_thermometer 0 001 @ 04421872 n 0000 | a thermometer calibrated in degrees centigrade -02994858 06 n 03 central 0 telephone_exchange 0 exchange 1 005 @ 04602044 n 0000 #p 04402746 n 0000 + 00329831 a 0101 ~ 02995770 n 0000 ~ 04373264 n 0000 | a workplace that serves as a telecommunications facility where lines from telephones can be connected together to permit communication -02995151 06 n 01 central_heating 0 001 @ 03509025 n 0000 | a heating system in which air or water is heated at a central furnace and sent through the building via vents or pipes and radiators -02995345 06 n 06 central_processing_unit 0 CPU 0 C.P.U. 0 central_processor 0 processor 0 mainframe 0 006 @ 03278248 n 0000 @ 03493333 n 0000 #p 03082979 n 0000 ;c 06128570 n 0000 + 00638837 v 0501 %p 03125057 n 0000 | (computer science) the part of a computer (a microprocessor chip) that does most of the data processing; "the CPU and the memory form the central part of a computer to which the peripherals are attached" -02995770 06 n 01 centrex 0 001 @ 02994858 n 0000 | (CENTRal EXchange) a kind of telephone exchange -02995871 06 n 01 centrifugal_pump 0 001 @ 04021798 n 0000 | a pump that use centrifugal force to discharge fluid into a pipe -02995998 06 n 03 centrifuge 0 extractor 1 separator 0 006 @ 02727825 n 0000 + 01458973 v 0301 + 02047263 v 0102 + 02047263 v 0101 ~ 03514129 n 0000 ~ 04506506 n 0000 | an apparatus that uses centrifugal force to separate particles from a suspension -02996249 06 n 04 cephalexin 0 Keflex 0 Keflin 0 Keftab 0 004 @ 02996840 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | an oral cephalosporin (trade names Keflex and Keflin and Keftab) commonly prescribe for mild to moderately severe infections of the skin or ears or throat or lungs or urinary tract -02996570 06 n 02 cephaloglycin 0 Kafocin 0 001 @ 02716866 n 0000 | antibiotic related to cephalosporin but no longer in common use -02996703 06 n 01 cephaloridine 0 001 @ 02716866 n 0000 | a broad spectrum semisynthetic antibiotic produced by modifying cephalosporin -02996840 06 n 02 cephalosporin 0 Mefoxin 0 010 @ 02716866 n 0000 ;u 06845599 n 0201 ~ 02989178 n 0000 ~ 02989313 n 0000 ~ 02989475 n 0000 ~ 02989685 n 0000 ~ 02989893 n 0000 ~ 02990103 n 0000 ~ 02996249 n 0000 ~ 02997292 n 0000 | one of several broad spectrum antibiotic substances obtained from fungi and related to penicillin (trade names Mefoxin); addition of side chains has produced semisynthetic antibiotics with greater antibacterial activity -02997292 06 n 01 cephalothin 0 001 @ 02996840 n 0000 | a semisynthetic analogue of cephalosporin -02997391 06 n 01 ceramic 0 004 @ 03575240 n 0000 ;c 00935247 n 0000 + 03015441 a 0101 ~ 02897820 n 0000 | an artifact made of hard brittle material produced from nonmetallic minerals by firing at high temperatures -02997607 06 n 01 ceramic_ware 0 005 @ 04516672 n 0000 ~ 03262519 n 0000 ~ 03984234 n 0000 ~ 03992703 n 0000 ~ 04326676 n 0000 | utensils made from ceramic material -02997773 06 n 01 cerate 0 002 @ 03845550 n 0000 ~ 02946633 n 0000 | a hard medicated paste made of lard or oil mixed with wax or resin -02997910 06 n 01 cereal_bowl 0 001 @ 02880940 n 0000 | a bowl for holding breakfast cereal -02998003 06 n 01 cereal_box 0 001 @ 02883344 n 0000 | a paper box in which breakfast cereals are sold -02998107 06 n 01 cerecloth 0 001 @ 03309808 n 0000 | a waterproof waxed cloth once used as a shroud -02998209 06 n 02 cerivastatin 0 Baycol 0 002 @ 03676175 n 0000 ;u 06845599 n 0201 | an oral drug (trade name Baycol) to reduce blood cholesterol levels -02998363 06 n 01 cervical_cap 0 001 @ 03096593 n 0000 | a contraceptive device consisting of a small thimble-shaped cup that is placed over the uterine cervix to prevent the entrance of spermatozoa -02998563 06 n 04 cesspool 0 cesspit 0 sink 1 sump 2 001 @ 03035510 n 0000 | a covered cistern; waste water and sewage flow into it -02998696 06 n 04 chachka 0 tsatske 0 tshatshke 0 tchotchke 0 002 @ 03069213 n 0000 ;c 06951067 n 0000 | (Yiddish) an inexpensive showy trinket -02998841 06 n 04 chador 0 chadar 0 chaddar 0 chuddar 0 001 @ 03502331 n 0000 | a cloth used as a head covering (and veil and shawl) by Muslim and Hindu women -02999001 06 n 01 chaff 0 002 @ 03375694 n 0000 + 02690429 a 0101 | foil in thin strips; ejected into the air as a radar countermeasure -02999138 06 n 01 chafing_dish 0 001 @ 03101986 n 0000 | a metal pan over a heater; used to cook or to keep things warm at the table -02999272 06 n 01 chafing_gear 0 001 @ 03122748 n 0000 | covering (usually rope or canvas) of a line or spar to protect it from friction -02999410 06 n 01 chain 0 012 @ 03664943 n 0000 #p 03000530 n 0000 #p 03001282 n 0000 #p 02834778 n 0000 + 01288636 v 0101 ~ 02709637 n 0000 ~ 02835412 n 0000 ~ 03011018 n 0000 ~ 03374838 n 0000 ~ 03886641 n 0000 ~ 04020087 n 0000 ~ 04440963 n 0000 | a series of (usually metal) rings or links fitted into one another to make a flexible ligament -02999757 06 n 03 chain 1 string 2 strand 1 002 @ 03814906 n 0000 + 01359432 v 0201 | a necklace made by a stringing objects together; "a string of beads"; "a strand of pearls"; -02999936 06 n 01 chain 3 001 @ 04081844 n 0000 | anything that acts as a restraint -03000021 06 n 01 chain 4 001 @ 03814906 n 0000 | a linked or connected series of objects; "a chain of daisies" -03000134 06 n 01 chainlink_fence 0 001 @ 03327234 n 0000 | a fence of steel wires woven into a diamond pattern -03000247 06 n 07 chain_mail 0 ring_mail 0 mail 0 chain_armor 0 chain_armour 0 ring_armor 0 ring_armour 0 006 @ 02862048 n 0000 ;c 15259284 n 0000 ~ 02901481 n 0000 ~ 03473817 n 0000 ~ 03499468 n 0000 ~ 04539648 n 0000 | (Middle Ages) flexible armor made of interlinked metal rings -03000530 06 n 01 chain_printer 0 002 @ 03563200 n 0000 %p 02999410 n 0000 | an impact printer that carries the type slugs by links of a revolving chain -03000684 06 n 02 chain_saw 0 chainsaw 0 001 @ 03996145 n 0000 | portable power saw; teeth linked to form an endless chain -03000808 06 n 01 chain_stitch 0 002 @ 04180314 n 0000 ~ 03650973 n 0000 | a looped stitch resembling the links of a chain; used in embroidery and in sewing -03000966 06 n 01 chain_stitch 1 001 @ 03133177 n 0000 | the most basic of all crochet stitches made by pulling a loop of yarn through another loop -03001115 06 n 01 chain_store 0 002 #m 08057816 n 0000 @ 04202417 n 0000 | one of a chain of retail stores under the same management and selling the same merchandise -03001282 06 n 01 chain_tongs 0 004 @ 03947466 n 0000 ;u 06295235 n 0000 %p 02999410 n 0000 ~ 03001540 n 0000 | a pipe wrench used for turning large pipes; an adjustable chain circles the pipe with its ends connected to the head whose teeth engage the pipe -03001540 06 n 01 chain_wrench 0 001 @ 03001282 n 0000 | another name for chain tongs -03001627 06 n 01 chair 0 018 @ 04161981 n 0000 ~ 02738535 n 0000 %p 02767433 n 0000 ~ 02791124 n 0000 ~ 03002210 n 0000 ~ 03002711 n 0000 ~ 03260849 n 0000 ~ 03335333 n 0000 ~ 03376595 n 0000 ~ 03518445 n 0000 ~ 03632729 n 0000 ~ 03649674 n 0000 %p 03654826 n 0000 ~ 04099969 n 0000 ~ 04331277 n 0000 ~ 04373704 n 0000 ~ 04381450 n 0000 ~ 04576002 n 0000 | a seat for one person, with a support for the back; "he put his coat over the back of the chair and sat down" -03002096 06 n 01 chair 2 001 @ 04161358 n 0000 | a particular seat in an orchestra; "he is second chair violin" -03002210 06 n 01 chair_of_state 0 002 @ 03001627 n 0000 ~ 04429376 n 0000 | a ceremonial chair for an exalted or powerful person -03002341 06 n 02 chairlift 0 chair_lift 0 001 @ 04231693 n 0000 | a ski lift on which riders (skiers or sightseers) are seated and carried up or down a mountainside; seats are hung from an endless overhead cable -03002555 06 n 02 chaise 0 shay 0 002 @ 02968473 n 0000 %p 02937958 n 0000 | a carriage consisting of two wheels and a calash top; drawn by a single horse -03002711 06 n 03 chaise_longue 0 chaise 1 daybed 0 001 @ 03001627 n 0000 | a long chair; for reclining -03002816 06 n 01 chalet 0 001 @ 03544360 n 0000 | a Swiss house with a sloping roof and wide eaves or a house built in this style -03002948 06 n 02 chalice 0 goblet 1 002 @ 03147509 n 0000 ~i 03451909 n 0000 | a bowl-shaped drinking vessel; especially the Eucharistic cup -03003091 06 n 01 chalk 0 006 @ 04608567 n 0000 + 02673969 a 0102 + 01690163 v 0101 ~ 03234952 n 0000 ~ 04385157 n 0000 %s 14806598 n 0000 | a piece of calcite or a similar substance, usually in the shape of a crayon, that is used to write or draw on blackboards or other flat surfaces -03003378 06 n 03 chalk_line 0 snap_line 0 snapline 0 001 @ 04337974 n 0000 | a chalked string used in the building trades to make a straight line on a vertical surface -03003548 06 n 02 chalkpit 0 chalk_pit 0 001 @ 03949442 n 0000 | a quarry for chalk -03003633 06 n 01 challis 0 001 @ 03309808 n 0000 | a soft lightweight fabric (usually printed) -03003730 06 n 01 chamber 0 019 @ 03285912 n 0000 + 02656062 v 0101 ~ 02690583 n 0000 ~ 02868638 n 0000 ~ 02921884 n 0000 ~ 02937093 n 0000 ~ 02943686 n 0000 ~ 03107904 n 0000 ~ 03156405 n 0000 ~ 03348868 n 0000 ~ 03404449 n 0000 ~ 03555006 n 0000 ~ 03894051 n 0000 ~ 04080454 n 0000 ~ 04308915 n 0000 ~ 04325409 n 0000 ~ 04345595 n 0000 ~ 04448185 n 0000 ~ 04517999 n 0000 | a natural or artificial enclosed space -03004146 06 n 01 chamber 2 003 @ 04105893 n 0000 + 02656062 v 0101 ~ 03215076 n 0000 | a room where a judge transacts business -03004275 06 n 03 chamberpot 0 potty 0 thunder_mug 0 001 @ 04060904 n 0000 | a receptacle for urination or defecation in the bedroom -03004409 06 n 01 chambray 0 001 @ 03309808 n 0000 | a lightweight fabric woven with white threads across a colored warp -03004531 06 n 01 chamfer_bit 0 001 @ 02844307 n 0000 | a bit that is used for beveling -03004620 06 n 01 chamfer_plane 0 001 @ 03954731 n 0000 | a plane that makes a beveled edge -03004713 06 n 01 chamois_cloth 0 001 @ 03932670 n 0000 | a piece of chamois used for washing windows or cars -03004824 06 n 03 chancel 0 sanctuary 0 bema 0 003 @ 02735688 n 0000 #p 03028079 n 0000 %p 03024064 n 0000 | area around the altar of a church for the clergy and choir; often enclosed by a lattice or railing -03005033 06 n 01 chancellery 0 001 @ 03449564 n 0000 | a government building housing the office of a chancellor -03005147 06 n 01 chancery 0 001 @ 02735086 n 0000 | an office of archives for public or ecclesiastic records; a court of public records -03005285 06 n 03 chandelier 0 pendant 0 pendent 0 001 @ 03667380 n 0000 | branched lighting fixture; often ornate; hangs from the ceiling -03005425 06 n 01 chandlery 0 001 @ 04329477 n 0000 | a storeroom where candles are kept -03005515 06 n 01 chandlery 1 001 @ 02948072 n 0000 | candles and other commodities sold by a chandler -03005619 06 n 05 chanfron 0 chamfron 0 testiere 0 frontstall 0 front-stall 0 001 @ 02740764 n 0000 | medieval plate armor to protect a horse's head -03005769 06 n 01 change 0 002 @ 03051540 n 0000 + 00169458 v 0101 | a different or fresh set of clothes; "she brought a change in her overnight bag" -03005920 06 n 01 change 1 004 @ 04424418 n 0000 + 00123170 v 0101 + 00126264 v 0101 + 00109660 v 0101 | a thing that is different; "he inspected several changes before selecting one" -03006105 06 n 01 channel 0 004 @ 03895293 n 0000 + 01369059 v 0101 ~ 03471473 n 0000 ~ 03669367 n 0000 | a passage for water (or other fluids) to flow through; "the fields were crossed with irrigation channels"; "gutters carried off the rainwater into a series of channels under the street" -03006398 06 n 03 channel 2 television_channel 0 TV_channel 0 001 @ 04406350 n 0000 | a television station and its programs; "a satellite TV channel"; "surfing through the channels"; "they offer more than one hundred channels" -03006626 06 n 02 chanter 0 melody_pipe 0 003 @ 03945615 n 0000 #p 02775483 n 0000 + 01049737 v 0101 | reed pipe with finger holes on which the melody is played -03006788 06 n 01 chantry 0 001 @ 03007130 n 0000 | a chapel endowed for singing Masses for the soul of the donor -03006903 06 n 01 chap 0 002 @ 03655072 n 0000 ;u 06295235 n 0000 | (usually in the plural) leather leggings without a seat; joined by a belt; often have flared outer flaps; worn over trousers by cowboys to protect their legs -03007130 06 n 01 chapel 0 005 @ 03953416 n 0000 ~ 03006788 n 0000 ~ 03633341 n 0000 ~ 04214413 n 0000 ~i 04224671 n 0000 | a place of worship that has its own altar -03007297 06 n 03 chapterhouse 0 fraternity_house 0 frat_house 0 001 @ 03544360 n 0000 | a house used as a residence by a chapter of a fraternity -03007444 06 n 01 chapterhouse 1 001 @ 02913152 n 0000 | a building attached to a monastery or cathedral; used as a meeting place for the chapter -03007591 06 n 03 character_printer 0 character-at-a-time_printer 0 serial_printer 0 005 @ 04004475 n 0000 ~ 03160186 n 0000 ~ 04404200 n 0000 ~ 04432393 n 0000 ~ 04505036 n 0000 | a printer that prints a single character at a time -03007824 06 n 02 charcoal 0 fusain 0 002 @ 04608567 n 0000 + 01693138 v 0101 | a stick of black carbon material used for drawing -03007955 06 n 01 charcoal 1 002 @ 03234306 n 0000 + 01693138 v 0101 | a drawing made with a stick of black carbon material -03008080 06 n 01 charcoal_burner 0 001 @ 04330340 n 0000 | a stove that burns charcoal as fuel -03008177 06 n 01 charcuterie 0 001 @ 03173387 n 0000 | a delicatessen that specializes in meats -03008275 06 n 04 charge 0 burster 0 bursting_charge 0 explosive_charge 0 006 @ 03304730 n 0000 + 00306017 v 0202 + 01490336 v 0102 ~ 04205983 n 0000 ~ 04507609 n 0000 ~ 14692026 n 0000 | a quantity of explosive to be set off at one time; "this cartridge has a powder charge of 50 grains" -03008565 06 n 04 charge 1 bearing 1 heraldic_bearing 0 armorial_bearing 0 006 @ 03515338 n 0000 + 01685960 v 0101 ~ 02713992 n 0000 ~ 03015975 n 0000 ~ 03362890 n 0000 ~ 03853734 n 0000 | heraldry consisting of a design or image depicted on a shield -03008817 06 n 01 charge-exchange_accelerator 0 001 @ 02670382 n 0000 | an accelerator in which high-energy ions escape from plasma following charge exchange -03008976 06 n 02 charger 0 battery_charger 0 002 @ 03183080 n 0000 + 00517847 v 0101 | a device for charging or recharging batteries -03009111 06 n 01 chariot 0 004 @ 02968473 n 0000 + 09910222 n 0101 + 01949817 v 0101 + 01906687 v 0101 | a light four-wheel horse-drawn ceremonial carriage -03009269 06 n 01 chariot 1 004 @ 03538634 n 0000 + 09910222 n 0101 + 01949817 v 0101 + 01906687 v 0101 | a two-wheeled horse-drawn battle vehicle; used in war and races in ancient Egypt and Greece and Rome -03009477 06 n 01 Charlestown_Navy_Yard 0 002 @i 03813704 n 0000 #p 09095751 n 0000 | the navy yard in Boston where the frigate `Constitution' is anchored -03009633 06 n 02 charm 0 good_luck_charm 0 004 @ 00002684 n 0000 + 01130455 v 0101 ~ 02706586 n 0000 ~ 03603958 n 0000 | something believed to bring good luck -03009794 06 n 02 charnel_house 0 charnel 0 001 @ 04523690 n 0000 | a vault or building where corpses or bones are deposited -03009920 06 n 01 chart 0 003 @ 03720163 n 0000 + 00710803 v 0101 ~ 03811648 n 0000 | a map designed to assist navigation by air or sea -03010057 06 n 01 charterhouse 0 001 @ 03781244 n 0000 | a Carthusian monastery -03010138 06 n 01 Chartres_Cathedral 0 002 @i 02984061 n 0000 #p 08935516 n 0000 | a Gothic cathedral in northern France; built in 13th century -03010283 06 n 01 chase 0 001 @ 03391301 n 0000 | a rectangular metal frame used in letterpress printing to hold together the pages or columns of composed type that are printed at one time -03010473 06 n 01 chassis 0 002 @ 04226537 n 0000 #p 03791235 n 0000 | the skeleton of a motor vehicle consisting of a steel frame supported on springs that holds the body and motor -03010656 06 n 01 chassis 1 002 @ 03793186 n 0000 ~ 04042076 n 0000 | a metal mounting for the circuit components of an electronic device -03010795 06 n 01 chasuble 0 001 @ 04532106 n 0000 | a long sleeveless vestment worn by a priest when celebrating Mass -03010915 06 n 01 chateau 0 001 @ 03118969 n 0000 | an impressive country house (or castle) in France -03011018 06 n 01 chatelaine 0 001 @ 02999410 n 0000 | a chain formerly worn at the waist by women; for carrying a purse or bunch of keys etc. -03011162 06 n 01 check 0 003 @ 04568298 n 0000 + 01692978 v 0101 ~ 03543945 n 0000 | a textile pattern of squares or crossed lines (resembling a checkerboard); "she wore a skirt with checks" -03011355 06 n 02 checker 0 chequer 0 003 @ 03716327 n 0000 ;c 00502952 n 0000 ~ 03618339 n 0000 | one of the flat round pieces used in playing the game of checkers -03011521 06 n 02 checkerboard 0 checker_board 0 006 @ 02857023 n 0000 #p 00503237 n 0000 #p 00502952 n 0000 ~ 03014317 n 0000 %p 04291511 n 0000 %p 08270417 n 0000 | a board having 64 squares of two alternating colors -03011741 06 n 02 checkout 0 checkout_counter 0 002 @ 03116530 n 0000 + 02363742 v 0101 | a counter in a supermarket where you pay for your purchases -03011892 06 n 02 checkroom 0 left-luggage_office 0 001 @ 04105893 n 0000 | a room where baggage or parcels are checked -03012013 06 n 01 cheekpiece 0 002 @ 04333129 n 0000 #p 02900160 n 0000 | either of two straps of a bridle that connect the bit to the headpiece -03012159 06 n 02 cheeseboard 0 cheese_tray 0 001 @ 04476259 n 0000 | tray on which cheeses are served -03012263 06 n 01 cheesecake 0 001 @ 03925226 n 0000 | a photograph of an attractive woman in minimal attire -03012373 06 n 01 cheesecloth 0 001 @ 03429914 n 0000 | a coarse loosely woven cotton gauze; originally used to wrap cheeses -03012499 06 n 01 cheese_cutter 0 002 @ 03621049 n 0000 %p 03485997 n 0000 | a kitchen utensil (board or handle) with a wire for cutting cheese -03012644 06 n 01 cheese_press 0 001 @ 03999992 n 0000 | a press for shaping cheese curd -03012734 06 n 02 chemical_bomb 0 gas_bomb 0 002 @ 02866578 n 0000 @ 03013162 n 0000 | a bomb laden with chemical agents that are released when the bomb explodes -03012897 06 n 01 chemical_plant 0 001 @ 03316406 n 0000 | an industrial plant where chemicals are produced -03013006 06 n 01 chemical_reactor 0 002 @ 02727825 n 0000 ~ 02981565 n 0000 | an apparatus for holding substances that are undergoing a chemical reaction -03013162 06 n 01 chemical_weapon 0 005 @ 04565963 n 0000 ~ 03012734 n 0000 ~ 03914583 n 0000 ~ 14993378 n 0000 ~ 15067877 n 0000 | chemical substances that can be delivered using munitions and dispersal devices to cause death or severe harm to people and animals and plants -03013438 06 n 03 chemise 0 sack 1 shift 0 001 @ 03236735 n 0000 | a loose-fitting dress hanging straight from the shoulders without a waist -03013580 06 n 05 chemise 1 shimmy 0 shift 1 slip 0 teddy 0 002 @ 04508163 n 0000 %p 04333500 n 0000 | a woman's sleeveless undergarment -03013718 06 n 03 chemistry_lab 0 chemistry_laboratory 0 chem_lab 0 001 @ 03629986 n 0000 | a laboratory for research in chemistry -03013850 06 n 01 chenille 0 002 @ 03309808 n 0000 %s 03013992 n 0000 | a heavy fabric woven with chenille cord; used in rugs and bedspreads -03013992 06 n 02 chenille 1 chenille_cord 0 002 @ 03106110 n 0000 #s 03013850 n 0000 | a soft tufted cord used in embroidery -03014119 06 n 01 cheroot 0 001 @ 03030035 n 0000 | a cigar with both ends cut flat -03014204 06 n 01 cherry_bomb 0 001 @ 03345115 n 0000 | a red ball-shaped firecracker with high explosive power -03014317 06 n 02 chessboard 0 chess_board 0 002 @ 03011521 n 0000 #p 07997338 n 0000 | a checkerboard used to play chess -03014440 06 n 02 chessman 0 chess_piece 0 008 @ 03716327 n 0000 #p 07997338 n 0000 ~ 02844056 n 0000 ~ 02980625 n 0000 ~ 03618101 n 0000 ~ 03624767 n 0000 ~ 03901750 n 0000 ~ 04033287 n 0000 | any of 16 white and 16 black pieces used in playing the game of chess -03014705 06 n 01 chest 0 014 @ 02883344 n 0000 ~i 02737467 n 0000 ~ 02937237 n 0000 ~ 02989099 n 0000 ~ 03064350 n 0000 ~ 03535024 n 0000 %p 03661340 n 0000 ~i 03881625 n 0000 ~ 04030274 n 0000 ~ 04158956 n 0000 ~ 04397168 n 0000 ~ 04452615 n 0000 ~ 04462011 n 0000 ~ 04477548 n 0000 | box with a lid; used for storage; usually large and sturdy -03015052 06 n 01 chesterfield 0 001 @ 03456665 n 0000 | a fitted overcoat with a velvet collar -03015149 06 n 01 chesterfield 1 001 @ 03164605 n 0000 | an overstuffed davenport with upright armrests -03015254 06 n 04 chest_of_drawers 0 chest 1 bureau 0 dresser 0 006 @ 03405725 n 0000 ~ 03016953 n 0000 %p 03233905 n 0000 ~ 03518305 n 0000 ~ 03693860 n 0000 %p 04190052 n 0000 | furniture with drawers for keeping clothes -03015478 06 n 01 chest_protector 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn in baseball by catchers and by football players -03015631 06 n 02 cheval-de-frise 0 chevaux-de-frise 0 001 @ 03171356 n 0000 | defensive structure consisting of a movable obstacle composed of barbed wire or spikes attached to a wooden frame; used to obstruct cavalry -03015851 06 n 01 cheval_glass 0 001 @ 03773035 n 0000 | a full length mirror mounted in a frame in which it can be tilted -03015975 06 n 01 chevron 1 001 @ 03008565 n 0000 | an inverted V-shaped charge -03016056 06 n 01 chiaroscuro 0 002 @ 03931044 n 0000 ~ 03460526 n 0000 | a monochrome picture made by using several different shades of the same color -03016209 06 n 01 chicane 0 001 @ 03795580 n 0000 | a movable barrier used in motor racing; sometimes placed before a dangerous corner to reduce speed as cars pass in single file -03016389 06 n 04 chicken_coop 0 coop 1 hencoop 0 henhouse 0 001 @ 03322570 n 0000 | a farm building for housing poultry -03016511 06 n 01 chicken_farm 0 001 @ 03322099 n 0000 | farm where chickens are raised for sale -03016609 06 n 01 chicken_wire 0 001 @ 03819595 n 0000 | a galvanized wire network with a hexagonal mesh; used to build fences -03016737 06 n 04 chicken_yard 0 hen_yard 0 chicken_run 0 fowl_run 0 001 @ 04610503 n 0000 | an enclosed yard for keeping poultry -03016868 06 n 01 chiffon 0 001 @ 03309808 n 0000 | a sheer fabric of silk or rayon -03016953 06 n 02 chiffonier 0 commode 1 002 @ 03015254 n 0000 %p 03233905 n 0000 | a tall elegant chest of drawers -03017070 06 n 01 child's_room 0 002 @ 02821627 n 0000 ~ 03836062 n 0000 | a bedroom for a child -03017168 06 n 03 chime 0 bell 4 gong 1 005 @ 03915437 n 0000 + 02180152 v 0301 + 02182342 v 0101 ~ 02965529 n 0000 ~ 03483230 n 0000 | a percussion instrument consisting of a set of tuned bells that are struck with a hammer; used as an orchestral instrument -03017428 06 n 01 chimney 0 006 @ 03368878 n 0000 %p 03018058 n 0000 %p 03161725 n 0000 %p 03346455 n 0000 ~ 04247175 n 0000 ~ 04330746 n 0000 | a vertical flue that provides a path through which smoke from a fire is carried away through the wall or roof of a building -03017698 06 n 01 chimney_breast 0 001 @ 04546855 n 0000 | walls that project out from the wall of a room and surround the chimney base -03017835 06 n 02 chimney_corner 0 inglenook 0 001 @ 03109881 n 0000 | a corner by a fireplace -03017931 06 n 01 chimneypot 0 001 @ 03944672 n 0000 | a short earthenware pipe on the top of a chimney to increase the draft -03018058 06 n 01 chimneystack 0 002 @ 03368878 n 0000 #p 03017428 n 0000 | the part of the chimney that is above the roof; usually has several flues -03018209 06 n 01 china 0 003 @ 03984234 n 0000 ~ 02869155 n 0000 ~ 03125588 n 0000 | high quality porcelain originally made only in China -03018349 06 n 02 china_cabinet 0 china_closet 0 001 @ 02933112 n 0000 | a cabinet (usually with glass doors) for storing and displaying china -03018493 06 n 02 chinaware 0 china 1 002 @ 03133538 n 0000 ~ 04584944 n 0000 | dishware made of high quality porcelain -03018614 06 n 01 chinchilla 0 001 @ 03058603 n 0000 | a thick twilled fabric of wool and cotton -03018712 06 n 01 Chinese_lantern 0 001 @ 03640988 n 0000 | a collapsible paper lantern in bright colors; used for decorative purposes -03018848 06 n 01 Chinese_puzzle 0 001 @ 04028315 n 0000 | intricate or ingenious puzzle consisting of boxes within boxes -03018971 06 n 03 Chinese_Wall 0 Great_Wall 0 Great_Wall_of_China 0 002 @i 04051825 n 0000 #p 08723006 n 0000 | a fortification 1,500 miles long built across northern China in the 3rd century BC; it averages 6 meters in width -03019198 06 n 01 chinning_bar 0 001 @ 02788689 n 0000 | a horizontal bar on which you can chin yourself -03019304 06 n 01 chino 0 002 @ 03309808 n 0000 #s 03019434 n 0000 | a coarse twilled cotton fabric frequently used for uniforms -03019434 06 n 01 chino 1 002 @ 04489008 n 0000 %s 03019304 n 0000 | trousers made with chino cloth -03019535 06 n 01 chinoiserie 0 001 @ 03434943 n 0000 | a style in art reflecting Chinese influence; elaborately decorated and intricately patterned -03019685 06 n 01 chin_rest 0 002 @ 04081044 n 0000 #p 04536866 n 0000 | a rest on which a violinist can place the chin -03019806 06 n 01 chin_strap 0 001 @ 04333129 n 0000 | a strap attached to a hat; passes under the chin and holds the hat in place -03019938 06 n 01 chintz 0 001 @ 03309808 n 0000 | a brightly printed and glazed cotton fabric -03020034 06 n 05 chip 0 microchip 0 micro_chip 0 silicon_chip 0 microprocessor_chip 0 007 @ 04171831 n 0000 #p 03082979 n 0000 ~ 02841641 n 0000 ~ 03433247 n 0000 %p 03577090 n 0000 ~ 03744684 n 0000 ~ 03760310 n 0000 | electronic equipment consisting of a small crystal of a silicon semiconductor fabricated to carry out a number of electronic functions in an integrated circuit -03020416 06 n 02 chip 1 poker_chip 0 002 @ 03117199 n 0000 ~ 02856013 n 0000 | a small disk-shaped counter used to represent money when gambling -03020563 06 n 01 chip 2 002 @ 03364340 n 0000 ;c 00314469 n 0000 | a triangular wooden float attached to the end of a log line -03020692 06 n 01 chisel 0 008 @ 03265032 n 0000 + 01259328 v 0101 ~ 02922461 n 0000 ~ 03067212 n 0000 ~ 03247495 n 0000 ~ 03349367 n 0000 ~ 04094438 n 0000 ~ 04597400 n 0000 | an edge tool with a flat steel blade with a cutting edge -03020927 06 n 01 Chisholm_Trail 0 003 @i 02986480 n 0000 #p 09141526 n 0000 #p 09087599 n 0000 | a former cattle trail from San Antonio in Texas to Abilene in Kansas; not used after the 1880s -03021121 06 n 01 chiton 0 001 @ 04497570 n 0000 | a woolen tunic worn by men and women in ancient Greece -03021228 06 n 01 chlamys 0 001 @ 02955767 n 0000 | a short mantle or cape fastened at the shoulder; worn by men in ancient Greece -03021360 06 n 01 chloral_hydrate 0 002 @ 04166553 n 0000 ~ 03627021 n 0000 | a colorless crystalline drug used as a sedative; irritates the stomach and can be addictive -03021531 06 n 02 chlorambucil 0 Leukeran 0 002 @ 02697438 n 0000 ;u 06845599 n 0201 | an alkalating agent (trade name Leukeran) used to treat some kinds of cancer -03021696 06 n 02 chloramine 0 chloramine-T 0 001 @ 02724207 n 0000 | any of several compounds containing chlorine and nitrogen; used as an antiseptic in wounds -03021858 06 n 02 chloramphenicol 0 Chloromycetin 0 001 @ 02716866 n 0000 | an oral antibiotic (trade name Chloromycetin) used to treat serious infections (especially typhoid fever) -03022041 06 n 03 chlordiazepoxide 0 Librium 0 Libritabs 0 003 @ 02830852 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | a tranquilizer (trade names Librium and Libritabs) used in the treatment of alcoholism -03022250 06 n 01 chlorhexidine 0 001 @ 02724207 n 0000 | a long-lasting liquid antiseptic; used by surgeons to wash their hands before performing surgery -03022406 06 n 02 chloroform 0 trichloromethane 0 003 @ 14620895 n 0000 @ 03570838 n 0000 + 00021826 v 0101 | a volatile liquid haloform (CHCl3); formerly used as an anesthetic; "chloroform was the first inhalation anesthetic" -03022634 06 n 01 chloroquine 0 001 @ 02721948 n 0000 | an antimalarial drug used to treat malaria and amebic dysentery and systemic lupus erythematosus -03022788 06 n 02 chlorothiazide 0 Diuril 0 003 @ 04423288 n 0000 @ 02721160 n 0000 ;u 06845599 n 0201 | a diuretic drug (trade name Diuril) used in the treatment of edema and hypertension -03022978 06 n 03 chlorpheniramine_maleate 0 Coricidin 0 Chlor-Trimeton 0 003 @ 02720725 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an antihistamine (trade names Coricidin and Chlor-Trimeton) -03023175 06 n 02 chlorpromazine 0 Thorazine 0 003 @ 03713736 n 0000 @ 14771643 n 0000 ;u 06845599 n 0201 | a drug (trade name Thorazine) derived from phenothiazine that has antipsychotic effects and is used as a sedative and tranquilizer -03023415 06 n 02 chlortetracycline 0 Aureomycin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | a yellow crystalline antibiotic (trade name Aureomycin) used to treat certain bacterial and rickettsial diseases -03023623 06 n 03 chlorthalidone 0 Hygroton 0 Thalidone 0 001 @ 03214670 n 0000 | a diuretic (trade names Hygroton and Thalidone) used to control hypertension and conditions that cause edema; effective in lowering blood pressure to prevent heart attacks -03023878 06 n 02 chock 0 wedge 2 004 @ 02852523 n 0000 + 01342340 v 0101 + 01218396 v 0101 ~ 04287451 n 0000 | a block of wood used to prevent the sliding or rolling of a heavy object -03024064 06 n 01 choir 0 003 @ 02735688 n 0000 #p 03004824 n 0000 + 01730799 v 0101 | the area occupied by singers; the part of the chancel between sanctuary and nave -03024233 06 n 01 choir_loft 0 001 @ 03411544 n 0000 | a gallery in a church occupied by the choir -03024333 06 n 01 choke 0 004 @ 04519153 n 0000 #p 03401721 n 0000 + 00173159 v 0101 ~ 02760298 n 0000 | a valve that controls the flow of air into the carburetor of a gasoline engine -03024518 06 n 03 choke 1 choke_coil 0 choking_coil 0 002 @ 03065708 n 0000 #p 03033362 n 0000 | a coil of low resistance and high inductance used in electrical circuits to pass direct current and attenuate alternating current -03024746 06 n 04 choker 0 ruff 0 ruffle 0 neck_ruff 0 003 @ 03068181 n 0000 + 01570562 v 0101 ~ 03390886 n 0000 | a high tight collar -03024882 06 n 04 choker 1 collar 1 dog_collar 2 neckband 1 004 @ 03814906 n 0000 + 01215851 v 0201 + 01215694 v 0201 + 01570562 v 0101 | necklace that fits tightly around a woman's neck -03025070 06 n 02 chokey 0 choky 0 001 @ 04005630 n 0000 | British slang (dated) for a prison -03025165 06 n 01 choo-choo 0 001 @ 03684823 n 0000 | a child's word for locomotive -03025250 06 n 02 chopine 0 platform 2 001 @ 04199027 n 0000 | a woman's shoe with a very high thick sole -03025357 06 n 01 chopping_block 0 002 @ 02852523 n 0000 %s 15098161 n 0000 | a steady wooden block on which food can be cut or diced or wood can be split -03025513 06 n 02 chopping_board 0 cutting_board 0 001 @ 02856463 n 0000 | a wooden board where meats or vegetables can be cut -03025641 06 n 01 chop_shop 0 001 @ 04603081 n 0000 | a place where stolen cars are disassembled for their parts -03025755 06 n 01 chopstick 0 001 @ 04381994 n 0000 | one of a pair of slender sticks used as oriental tableware to eat food with -03025886 06 n 01 chordophone 0 005 @ 04338517 n 0000 ~ 02776978 n 0000 ~ 03495258 n 0000 ~ 03698360 n 0000 ~ 03716966 n 0000 | a stringed instrument of the group including harps, lutes, lyres, and zithers -03026093 06 n 01 choropleth_map 0 001 @ 03720163 n 0000 | a map that uses graded differences in shading or color or the placing of symbols inside defined areas on the map in order to indicate the average values of some property or quantity in those areas -03026350 06 n 04 chrism 0 chrisom 0 sacramental_oil 0 holy_oil 0 001 @ 03845550 n 0000 | a consecrated ointment consisting of a mixture of oil and balsam -03026506 06 n 01 Christmas_stocking 0 001 @ 04323819 n 0000 | a stocking that is filled with small Christmas presents -03026626 06 n 01 Christmas_tree 0 001 @ 03169390 n 0000 | an ornamented evergreen used as a Christmas decoration -03026741 06 n 01 chromatogram 0 001 @ 04063661 n 0000 | the recording (column or paper strip) on which the constituents of a mixture are adsorbed in chromatography -03026907 06 n 01 chronograph 0 001 @ 04438304 n 0000 | an accurate timer for recording time -03027001 06 n 01 chronometer 0 001 @ 03046257 n 0000 | an accurate clock (especially used in navigation) -03027108 06 n 01 chronoscope 0 002 @ 03733925 n 0000 ~ 04437380 n 0000 | an instrument for accurate measurements of small intervals of time -03027250 06 n 01 chuck 0 006 @ 03525827 n 0000 #p 03646296 n 0000 #p 03239726 n 0000 #p 03240140 n 0000 ~ 03070059 n 0000 %p 03594277 n 0000 | a holding device consisting of adjustable jaws that center a workpiece in a lathe or center a tool in a drill -03027505 06 n 01 chuck_wagon 0 001 @ 04543158 n 0000 | a wagon equipped with a cookstove and provisions (for cowboys) -03027625 06 n 02 chukka 0 chukka_boot 0 001 @ 04199027 n 0000 | a shoe that comes up to the ankle and is laced through two or three pairs of eyelets; often made of suede -03027797 06 n 01 chum 0 001 @ 02776205 n 0000 | bait consisting of chopped fish and fish oils that are dumped overboard to attract fish -03027935 06 n 02 chunnel 0 Channel_Tunnel 0 001 @i 04048441 n 0000 | the railroad tunnel between France and England under the English Channel -03028079 06 n 02 church 0 church_building 0 021 @ 03953416 n 0000 ;c 01032368 n 0000 + 01783522 a 0101 + 02079151 v 0101 ~ 02667576 n 0000 %p 02701260 n 0000 %p 02731398 n 0000 ~ 02801184 n 0000 ~ 02984061 n 0000 ~ 02984203 n 0000 %p 03004824 n 0000 %p 03029197 n 0000 ~ 03618982 n 0000 %p 03633341 n 0000 %p 03809686 n 0000 %p 03813078 n 0000 %p 03999160 n 0000 %p 04104925 n 0000 %p 04214413 n 0000 %p 04471148 n 0000 %p 04532504 n 0000 | a place for public (especially Christian) worship; "the church was empty" -03028596 06 n 01 church_bell 0 002 @ 02824448 n 0000 ;c 01032368 n 0000 | a bell in a church tower (usually sounded to summon people to church); "church bells were ringing all over town" -03028785 06 n 01 church_hat 0 001 @ 03766322 n 0000 | a fanciful hat of the kind worn by Black women for Sunday worship -03028907 06 n 01 Churchill_Downs 0 002 @i 03205760 n 0000 #p 09089923 n 0000 | a racetrack for thoroughbred racing in Louisville; site of the Kentucky Derby -03029066 06 n 01 church_key 0 001 @ 02951585 n 0000 | can opener that has a triangular pointed end that pierces the tops of cans -03029197 06 n 01 church_tower 0 002 @ 04460130 n 0000 #p 03028079 n 0000 | the tower of a church -03029296 06 n 01 churidars 0 001 @ 04489008 n 0000 | tight trousers worn by people from the Indian subcontinent (typically with a kameez or kurta) -03029445 06 n 02 churn 0 butter_churn 0 002 @ 04531098 n 0000 + 01418389 v 0101 | a vessel in which cream is agitated to separate butterfat from buttermilk -03029603 06 n 04 chute 0 slide 0 slideway 0 sloping_trough 0 005 @ 03471473 n 0000 ~ 03056215 n 0000 ~ 04121142 n 0000 %p 04228844 n 0000 ~ 04558199 n 0000 | sloping channel through which things can descend -03029812 06 n 01 cider_mill 0 001 @ 03765561 n 0000 | mill that extracts juice from apples to make apple cider -03029925 06 n 01 ciderpress 0 001 @ 03999992 n 0000 | a press that is used to extract the juice from apples -03030035 06 n 01 cigar 0 009 @ 04103491 n 0000 ~ 03014119 n 0000 %p 03030433 n 0000 ~ 03031306 n 0000 ~ 03038190 n 0000 ~ 03111483 n 0000 %p 03338009 n 0000 ~ 03881207 n 0000 ~ 04325335 n 0000 | a roll of tobacco for smoking -03030262 06 n 01 cigar_band 0 001 @ 02784732 n 0000 | a narrow paper band around a cigar -03030353 06 n 01 cigar_box 0 001 @ 02883344 n 0000 | a box for holding cigars -03030433 06 n 01 cigar_butt 0 002 @ 02927399 n 0000 #p 03030035 n 0000 | small part of a cigar that is left after smoking -03030557 06 n 01 cigar_cutter 0 001 @ 03154073 n 0000 | an implement for cutting the tip off of a cigar -03030663 06 n 05 cigarette 0 cigaret 0 coffin_nail 0 butt 4 fag 0 005 @ 04103491 n 0000 %p 03030880 n 0000 ~ 03144756 n 0000 ~ 03340463 n 0000 ~ 03600806 n 0000 | finely ground tobacco wrapped in paper; for smoking -03030880 06 n 01 cigarette_butt 0 002 @ 02927399 n 0000 #p 03030663 n 0000 | small part of a cigarette that is left after smoking -03031012 06 n 01 cigarette_case 0 001 @ 02974697 n 0000 | a small flat case for holding cigarettes; can be carried in a purse or a pocket -03031152 06 n 01 cigarette_holder 0 003 @ 03525454 n 0000 @ 04493505 n 0000 %p 03794957 n 0000 | a tube that holds a cigarette while it is being smoked -03031306 06 n 01 cigarillo 0 001 @ 03030035 n 0000 | small cigar or cigarette wrapped in tobacco instead of paper -03031422 06 n 03 cigar_lighter 0 cigarette_lighter 0 pocket_lighter 0 001 @ 03666591 n 0000 | a lighter for cigars or cigarettes -03031553 06 n 02 cimetidine 0 Tagamet 0 003 @ 03522239 n 0000 @ 14778019 n 0000 ;u 06845599 n 0201 | a drug (trade name Tagamet) used to treat peptic ulcers by decreasing the secretion of stomach acid -03031756 06 n 02 cinch 0 girth 0 004 @ 04295081 n 0000 #p 03494706 n 0000 + 01302982 v 0202 + 01302982 v 0101 | stable gear consisting of a band around a horse's belly that holds the saddle in place -03031957 06 n 03 cinder_block 0 clinker_block 0 breeze_block 0 001 @ 02914813 n 0000 | a light concrete building block made with cinder aggregate; "cinder blocks are called breeze blocks in Britain" -03032158 06 n 01 cinder_track 0 001 @ 04037625 n 0000 | a racetrack paved with fine cinders -03032252 06 n 05 cinema 0 movie_theater 0 movie_theatre 0 movie_house 0 picture_palace 0 004 @ 04417809 n 0000 ~ 02842219 n 0000 ~ 03362293 n 0000 ~ 03798982 n 0000 | a theater where films are shown -03032453 06 n 01 cinquefoil 0 001 @ 02973558 n 0000 | an ornamental carving consisting of five arcs arranged in a circle -03032576 06 n 02 ciprofloxacin 0 Cipro 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | an oral antibiotic (trade name Cipro) used against serious bacterial infections of the skin or respiratory tract or urinary tract or bones or joints -03032811 06 n 02 circle 0 round 0 005 @ 04110955 n 0000 + 01858910 v 0201 + 00676271 a 0101 + 02044278 v 0102 ~ 03208556 n 0000 | any circular or rotating mechanism; "the machine punched out metal circles" -03033019 06 n 02 circle 2 dress_circle 0 002 @ 04162998 n 0000 #p 04417809 n 0000 | a curved section or tier of seats in a hall or theater or opera house; usually the first tier above the orchestra; "they had excellent seats in the dress circle" -03033267 06 n 01 circlet 0 001 @ 02681518 n 0000 | decorated metal band worn around the head -03033362 06 n 03 circuit 0 electrical_circuit 0 electric_circuit 0 026 @ 03269401 n 0000 #p 03278248 n 0000 ~ 02899808 n 0000 ~ 02900011 n 0000 %p 02955247 n 0000 %p 03024518 n 0000 ~ 03048883 n 0000 ~ 03084420 n 0000 ~ 03172965 n 0000 ~ 03326073 n 0000 ~ 03363887 n 0000 ~ 03669886 n 0000 ~ 03674270 n 0000 ~ 03848033 n 0000 ~ 04021704 n 0000 %p 04072960 n 0000 %p 04079933 n 0000 ~ 04080237 n 0000 ~ 04174394 n 0000 %p 04204755 n 0000 %p 04211001 n 0000 ~ 04293258 n 0000 ~ 04389637 n 0000 ~ 04442016 n 0000 %p 04494204 n 0000 ~ 04595855 n 0000 | an electrical device that provides a path for electrical current to flow -03033986 06 n 06 circuit_board 0 circuit_card 0 board 4 card 1 plug-in 0 add-in 0 003 @ 04004210 n 0000 ~ 03125057 n 0000 ~ 03902220 n 0000 | a printed circuit that can be inserted into expansion slots in a computer to increase the computer's capabilities -03034244 06 n 02 circuit_breaker 0 breaker 0 002 @ 03407369 n 0000 + 00778745 v 0201 | a device that trips like a switch and opens the circuit when overloaded -03034405 06 n 01 circuitry 0 001 @ 03278248 n 0000 | electronic equipment consisting of a system of circuits -03034516 06 n 02 circular_plane 0 compass_plane 0 001 @ 03954731 n 0000 | a plane with a flexible face that can plane concave or convex surfaces -03034663 06 n 02 circular_saw 0 buzz_saw 0 003 @ 03996145 n 0000 ~ 03985441 n 0000 ~ 04380916 n 0000 | a power saw that has a steel disk with cutting teeth on the periphery; rotates on a spindle -03034860 06 n 01 circus 0 002 @ 02736511 n 0000 %p 03035252 n 0000 | an arena consisting of an oval or circular area enclosed by tiers of seats and usually covered by a tent; "they used the elephants to help put up the circus" -03035089 06 n 01 circus 1 003 @ 04295881 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (antiquity) an open-air stadium for chariot races and gladiatorial games -03035252 06 n 04 circus_tent 0 big_top 0 round_top 0 top 2 002 @ 02954163 n 0000 #p 03034860 n 0000 | a canvas tent to house the audience at a circus performance; "he was afraid of a fire in the circus tent"; "they had the big top up in less than an hour" -03035510 06 n 01 cistern 0 004 @ 04078574 n 0000 @ 03982060 n 0000 ~ 02998563 n 0000 ~ 04049303 n 0000 | an artificial reservoir for storing liquids; especially an underground tank for storing rainwater -03035715 06 n 02 cistern 1 water_tank 0 001 @ 04388743 n 0000 | a tank that holds the water used to flush a toilet -03035832 06 n 05 cittern 0 cithern 0 cither 1 citole 0 gittern 0 001 @ 03467517 n 0000 | a 16th century musical instrument resembling a guitar with a pear-shaped soundbox and wire strings -03036022 06 n 01 city_hall 0 001 @ 03478756 n 0000 | a building that houses administrative offices of a municipal government -03036149 06 n 01 cityscape 0 001 @ 03876519 n 0000 | painting depicting a city or urban area -03036244 06 n 01 city_university 0 001 @ 04511002 n 0000 | an urban university in a large city -03036341 06 n 02 civies 0 civvies 0 002 @ 03036469 n 0000 ;u 06295235 n 0000 | civilian garb as opposed to a military uniform -03036469 06 n 04 civilian_clothing 0 civilian_dress 0 civilian_garb 0 plain_clothes 0 003 @ 03051540 n 0000 ~ 03036341 n 0000 ~ 03797264 n 0000 | ordinary clothing as distinguished from uniforms, work clothes, clerical garb, etc. -03036701 06 n 03 clack_valve 0 clack 0 clapper_valve 0 001 @ 04519153 n 0000 | a simple valve with a hinge on one side; allows fluid to flow in only one direction -03036866 06 n 02 clamp 0 clinch 2 007 @ 03525827 n 0000 + 01343610 v 0101 ~ 02829246 n 0000 ~ 02988066 n 0000 ~ 03126251 n 0000 ~ 03947343 n 0000 ~ 04000480 n 0000 | a device (generally used by carpenters) that holds things firmly together -03037108 06 n 02 clamshell 0 grapple 1 001 @ 03236580 n 0000 | a dredging bucket with hinges like the shell of a clam -03037228 06 n 02 clapper 0 tongue 1 003 @ 04337740 n 0000 #p 02824448 n 0000 + 01237398 v 0101 | metal striker that hangs inside a bell and makes a sound by hitting the side -03037404 06 n 01 clapperboard 0 001 @ 03926148 n 0000 | photographic equipment used to synchronize sound and motion picture; boards held in front of a movie camera are banged together -03037590 06 n 01 clarence 0 001 @ 02968473 n 0000 | a closed carriage with four wheels and seats for four passengers -03037709 06 n 01 clarinet 0 006 @ 04222847 n 0000 + 09926246 n 0102 + 09926246 n 0101 ~ 02803539 n 0000 ~ 02803809 n 0000 ~ 02834027 n 0000 | a single-reed instrument with a straight tube -03037899 06 n 01 clarion 0 003 @ 02891788 n 0000 + 01733994 v 0101 + 00978055 v 0101 | a medieval brass instrument with a clear shrill tone -03038041 06 n 02 Clark_cell 0 Clark_standard_cell 0 001 @ 04301474 n 0000 | a form of voltaic cell once used as a standard for electromotive force -03038190 06 n 01 claro 0 001 @ 03030035 n 0000 | a cigar made with light-colored tobacco -03038281 06 n 01 clasp 0 005 @ 03323703 n 0000 #p 02887970 n 0000 #p 02774152 n 0000 + 01548576 v 0102 + 01548290 v 0102 | a fastener (as a buckle or hook) that is used to hold two things together -03038480 06 n 02 clasp_knife 0 jackknife 0 001 @ 03973628 n 0000 | a large knife with one or more folding blades -03038595 06 n 01 classic 0 001 @ 03129123 n 0000 | a creation of the highest excellence -03038685 06 n 02 classroom 0 schoolroom 0 005 @ 04105893 n 0000 #p 04146050 n 0000 ~ 03529175 n 0000 ~ 03653740 n 0000 ~ 04345201 n 0000 | a room in a school where lessons take place -03038870 06 n 01 clavichord 0 002 @ 03614532 n 0000 @ 04338517 n 0000 | an early stringed instrument like a piano but with more delicate sound -03039015 06 n 02 clavier 1 Klavier 0 003 @ 03614532 n 0000 @ 04338517 n 0000 ~ 03496296 n 0000 | a stringed instrument that has a keyboard -03039156 06 n 01 claw_hatchet 0 001 @ 03498962 n 0000 | a hatchet that has a cleft for pulling nails -03039259 06 n 01 clay_pigeon 0 001 @ 04394261 n 0000 | target used in skeet or trapshooting -03039353 06 n 02 claymore_mine 0 claymore 0 001 @ 03639675 n 0000 | an antipersonnel land mine whose blast is aimed at the oncoming enemy -03039493 06 n 01 claymore 1 001 @ 02904640 n 0000 | a large double-edged broadsword; formerly used by Scottish Highlanders -03039618 06 n 01 clay_pipe 0 002 @ 03945167 n 0000 ~ 03253714 n 0000 | a pipe made of clay -03039711 06 n 01 clean_bomb 0 001 @ 02753044 n 0000 | an atom bomb leaving little or no radioactive contamination -03039827 06 n 02 cleaners 0 dry_cleaners 0 002 @ 04202417 n 0000 ;u 06295235 n 0000 | shop where dry cleaning is done -03039947 06 n 03 cleaning_implement 0 cleaning_device 0 cleaning_equipment 0 008 @ 03563967 n 0000 ~ 02906734 n 0000 ~ 02967782 n 0000 ~ 03040229 n 0000 ~ 03945928 n 0000 ~ 04021164 n 0000 ~ 04292921 n 0000 ~ 04367480 n 0000 | any of a large class of implements used for cleaning -03040229 06 n 01 cleaning_pad 0 004 @ 03872495 n 0000 @ 03039947 n 0000 ~ 04150153 n 0000 ~ 04254450 n 0000 | a pad used as a cleaning implement -03040376 06 n 02 clean_room 0 white_room 0 002 @ 04105893 n 0000 ~ 03635516 n 0000 | a room that is virtually free of dust or bacteria; used in laboratory work and in assembly or repair of precision equipment -03040587 06 n 03 cleansing_agent 0 cleanser 0 cleaner 0 008 @ 14873641 n 0000 + 01532589 v 0301 + 00035758 v 0201 ~ 02807998 n 0000 ~ 03176084 n 0000 ~ 03181899 n 0000 ~ 04183516 n 0000 ~ 04253437 n 0000 | a preparation used in cleaning something -03040836 06 n 01 clearway 0 002 @ 04096066 n 0000 ;r 08860123 n 0000 | a road on which you are not allowed to stop (unless you have a breakdown) -03040983 06 n 01 cleat 0 001 @ 04339638 n 0000 | a strip of wood or metal used to strengthen the surface to which it is attached -03041114 06 n 01 cleat 1 002 @ 03323703 n 0000 + 01304602 v 0101 | a fastener (usually with two projecting horns) around which a rope can be secured -03041265 06 n 01 cleat 2 004 @ 04008947 n 0000 #p 03041449 n 0000 + 02352395 v 0101 ~ 02940143 n 0000 | a metal or leather projection (as from the sole of a shoe); prevents slipping -03041449 06 n 01 cleats 0 003 @ 04199027 n 0000 ;u 06295235 n 0000 %p 03041265 n 0000 | shoes with leather or metal projections on the soles; "the football players all wore cleats" -03041632 06 n 03 cleaver 0 meat_cleaver 0 chopper 0 004 @ 03623556 n 0000 + 01258091 v 0301 + 01257173 v 0301 + 01556572 v 0101 | a butcher's knife having a large square blade -03041810 06 n 02 clerestory 0 clearstory 0 001 @ 04587648 n 0000 | part of an interior wall rising above the adjacent roof with windows admitting light -03041964 06 n 03 clerical_collar 0 Roman_collar 0 dog_collar 1 001 @ 03068181 n 0000 | a stiff white collar with no opening in the front; a distinctive symbol of the clergy -03042139 06 n 01 clevis 0 001 @ 03119510 n 0000 | a coupler shaped like the letter U with holes through each end so a bolt or pin can pass through the holes to complete the coupling; used to attach a drawbar to a plow or wagon or trailer etc. -03042384 06 n 01 clews 0 002 @ 03106110 n 0000 ;u 06295235 n 0000 | the cords used to suspend a hammock -03042490 06 n 01 cliff_dwelling 0 001 @ 03259505 n 0000 | a rock and adobe dwelling built on sheltered ledges in the sides of a cliff; "the Anasazi built cliff dwellings in the southwestern United States" -03042697 06 n 01 climbing_frame 0 002 @ 03391770 n 0000 ;r 08860123 n 0000 | a framework of bars or logs for children to climb on -03042829 06 n 01 clinch 0 004 @ 03323703 n 0000 #p 03804744 n 0000 #p 02865665 n 0000 #p 04095342 n 0000 | the flattened part of a nail or bolt or rivet -03042984 06 n 02 clinch 1 clench 0 006 @ 03829563 n 0000 ;c 04530566 n 0000 + 01344903 v 0101 ~ 03226660 n 0000 ~ 03573739 n 0000 ~ 03861731 n 0000 | a small slip noose made with seizing -03043173 06 n 01 clincher 0 001 @ 04451818 n 0000 | a tool used to clinch nails or bolts or rivets -03043274 06 n 01 clinic 0 004 @ 03739518 n 0000 #p 03540595 n 0000 + 02885529 a 0101 ~ 03210552 n 0000 | a healthcare facility for outpatient care -03043423 06 n 02 clinical_thermometer 0 mercury-in-glass_clinical_thermometer 0 001 @ 03749807 n 0000 | a mercury thermometer designed to measure the temperature of the human body; graduated to cover a range a few degrees on either side of the normal body temperature -03043693 06 n 02 clinker 0 clinker_brick 0 001 @ 02897820 n 0000 | a hard brick used as a paving stone -03043798 06 n 02 clinometer 0 inclinometer 2 001 @ 04365484 n 0000 | an instrument used by surveyors in order to measure an angle of inclination or elevation -03043958 06 n 01 clip 1 006 @ 03323703 n 0000 + 01367616 v 0101 ~ 02835551 n 0000 ~ 02915904 n 0000 ~ 03476684 n 0000 ~ 03886762 n 0000 | any of various small fasteners used to hold loose articles together -03044166 06 n 01 clip 2 001 @ 03597469 n 0000 | an article of jewelry that can be clipped onto a hat or dress -03044278 06 n 01 clip_art 0 001 @ 03084647 n 0000 | ready-made pieces of computerized graphic art that can be used to decorate a document -03044418 06 n 01 clipboard 0 001 @ 04608127 n 0000 | a small writing board with a clip at the top for holding papers -03044537 06 n 01 clip_joint 0 001 @ 04286128 n 0000 | a place of entertainment where high prices are charged for poor entertainment -03044671 06 n 01 clip_lead 0 002 @ 03604843 n 0000 %p 02915904 n 0000 | a short piece of wire with alligator clips on both ends -03044801 06 n 01 clip-on 0 001 @ 03183080 n 0000 | a device (as an earring, sunglasses, microphone etc.) that is attached by clips -03044934 06 n 01 clipper 0 002 @ 04148054 n 0000 + 01456463 v 0103 | scissors for cutting hair or finger nails (often used in the plural) -03045074 06 n 01 clipper 1 003 @ 04186848 n 0000 + 01321002 v 0102 + 01456463 v 0103 | shears for cutting grass or shrubbery (often used in the plural) -03045228 06 n 02 clipper 2 clipper_ship 0 001 @ 04128837 n 0000 | a fast sailing ship used in former times -03045337 06 n 01 cloak 0 017 @ 03863923 n 0000 ~ 02923535 n 0000 ~ 02936402 n 0000 ~ 02955767 n 0000 ~ 02956883 n 0000 ~ 02958264 n 0000 ~ 03103904 n 0000 ~ 03219859 n 0000 ~ 03221205 n 0000 ~ 03595055 n 0000 ~ 03849943 n 0000 ~ 03880032 n 0000 ~ 03980874 n 0000 ~ 04186455 n 0000 ~ 04445040 n 0000 ~ 04497570 n 0000 ~ 04605446 n 0000 | a loose outer garment -03045698 06 n 01 cloak 1 002 @ 03122748 n 0000 + 02147603 v 0102 | anything that covers or conceals -03045800 06 n 02 cloakroom 0 coatroom 0 001 @ 04105893 n 0000 | a room where coats and other articles can be left temporarily -03045928 06 n 01 cloakroom 1 001 @ 03691817 n 0000 | a private lounge off of a legislative chamber -03046029 06 n 01 cloche 0 001 @ 03766322 n 0000 | a woman's close-fitting hat that resembles a helmet -03046133 06 n 01 cloche 1 001 @ 04014297 n 0000 | a low transparent cover put over young plants to protect them from cold -03046257 06 n 01 clock 0 018 @ 04437953 n 0000 + 00490968 v 0101 ~ 02694662 n 0000 ~ 02708093 n 0000 ~i 02836766 n 0000 ~ 03027001 n 0000 %p 03046657 n 0000 ~ 03145147 n 0000 ~ 03196217 n 0000 ~ 03271260 n 0000 %p 03407865 n 0000 %p 03795758 n 0000 ~ 03909406 n 0000 ~ 04378024 n 0000 ~ 04437276 n 0000 ~ 04502059 n 0000 ~ 04548280 n 0000 ~ 04558347 n 0000 | a timepiece that shows the time of day -03046657 06 n 02 clock_face 0 clock_dial 0 002 @ 03313602 n 0000 #p 03046257 n 0000 | the face of a clock showing hours and minutes of the day -03046802 06 n 01 clock_pendulum 0 001 @ 03927792 n 0000 | a physical pendulum used to regulate a clockwork mechanism -03046921 06 n 01 clock_radio 0 001 @ 04043733 n 0000 | a radio that includes a clock that can be set to turn it on automatically -03047052 06 n 01 clock_tower 0 001 @ 04460130 n 0000 | a tower with a large clock visible high up on an outside face -03047171 06 n 01 clockwork 0 002 @ 03738472 n 0000 %p 03712444 n 0000 | any mechanism of geared wheels that is driven by a coiled spring; resembles the works of a mechanical clock -03047353 06 n 02 clofibrate 0 Atromid-S 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | a drug (trade name Atromid-S) that reduces lipids in the blood serum; used to treat some cardiovascular diseases -03047553 06 n 01 clog 0 003 @ 03520811 n 0000 + 01478603 v 0101 + 00182037 v 0101 | any object that acts as a hindrance or obstruction -03047690 06 n 04 clog 1 geta 0 patten 0 sabot 0 001 @ 03380867 n 0000 | footwear usually with wooden soles -03047799 06 n 01 cloisonne 0 002 @ 03284981 n 0000 + 00057566 a 0102 | enamelware in which colored areas are separated by thin metal strips -03047941 06 n 01 cloister 1 003 @ 03120198 n 0000 ;c 05946687 n 0000 + 02724126 v 0101 | a courtyard with covered walks (as in religious institutions) -03048094 06 n 03 clomiphene 0 clomiphene_citrate 0 Clomid 0 002 @ 03329880 n 0000 ;u 06845599 n 0301 | a fertility drug (trade name Clomid) that is used to stimulate ovulation and that has been associated with multiple births -03048322 06 n 01 clomipramine 0 001 @ 04482543 n 0000 | a tricyclic antidepressant drug -03048412 06 n 02 clonidine 0 Catapres 0 002 @ 02721160 n 0000 ;u 06845599 n 0201 | an antihypertensive (trade name Catapres) that can be administered orally or via transdermal patches -03048598 06 n 02 clopidogrel_bisulfate 0 Plavix 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | a blood thinner (trade name Plavix) approved for the treatment of mild heart attacks; works by preventing blood platelets from sticking together to form clots that would restrict blood flow -03048883 06 n 02 closed_circuit 0 loop 3 003 @ 03033362 n 0000 ! 03848033 n 0101 ~ 03888808 n 0000 | a complete electrical circuit around which current flows or a signal circulates -03049066 06 n 01 closed-circuit_television 0 004 @ 04404412 n 0000 ;c 03316406 n 0000 ;c 07006119 n 0000 ~ 04365328 n 0000 | a television system that is not used for broadcasting but is connected by cables to designated monitors (as in a factory or theater) -03049326 06 n 02 closed_loop 0 closed-loop_system 0 001 @ 03098806 n 0000 | a control system with a feedback loop that is active -03049457 06 n 01 closet 0 004 @ 04105893 n 0000 + 01302717 v 0101 ~ 02873839 n 0000 %p 04190052 n 0000 | a small private room for study or prayer -03049605 06 n 01 closet_auger 0 001 @ 04248010 n 0000 | a snake used to unblock toilets -03049695 06 n 01 closeup 0 001 @ 03925226 n 0000 | a photograph taken at close range -03049782 06 n 01 closeup_lens 0 001 @ 02943241 n 0000 | a photographic lens with a short focal length used to take pictures at short ranges -03049924 06 n 02 cloth_cap 0 flat_cap 0 001 @ 02954340 n 0000 | a flat woolen cap with a stiff peak -03050026 06 n 01 cloth_covering 0 020 @ 03122748 n 0000 ~ 02721813 n 0000 ~ 02767665 n 0000 ~ 02820210 n 0000 ~ 02851939 n 0000 ~ 02876084 n 0000 ~ 02922159 n 0000 ~ 03114379 n 0000 ~ 03237639 n 0000 ~ 03268311 n 0000 ~ 03309356 n 0000 ~ 03499611 n 0000 ~ 03622698 n 0000 ~ 03641947 n 0000 ~ 03654576 n 0000 ~ 04162433 n 0000 ~ 04207151 n 0000 ~ 04231272 n 0000 ~ 04236377 n 0000 ~ 04240752 n 0000 | a covering made of cloth -03050453 06 n 01 clothesbrush 0 001 @ 02908217 n 0000 | a brush used for cleaning clothing -03050546 06 n 02 clothes_closet 0 clothespress 0 001 @ 04550184 n 0000 | a closet where clothes are stored -03050655 06 n 02 clothes_dryer 0 clothes_drier 0 006 @ 03251766 n 0000 @ 04580493 n 0000 ~ 03717285 n 0000 ~ 04277826 n 0000 ~ 04496726 n 0000 ~ 04607242 n 0000 | a dryer that dries clothes wet from washing -03050864 06 n 04 clothes_hamper 0 laundry_basket 0 clothes_basket 0 voider 0 001 @ 03482405 n 0000 | a hamper that holds dirty clothes to be washed or wet clothes to be dried -03051041 06 n 01 clotheshorse 0 001 @ 03391770 n 0000 | a framework on which to hang clothes (as for drying) -03051152 06 n 01 clothesline 0 001 @ 03106110 n 0000 | a cord on which clothes are hung to dry -03051249 06 n 03 clothespin 0 clothes_pin 0 clothes_peg 0 001 @ 03323703 n 0000 | wood or plastic fastener; for holding clothes on a clothesline -03051396 06 n 03 clothes_tree 0 coat_tree 0 coat_stand 0 001 @ 03976657 n 0000 | an upright pole with pegs or hooks on which to hang clothing -03051540 06 n 06 clothing 0 article_of_clothing 0 vesture 0 wear 0 wearable 0 habiliment 0 043 @ 03122748 n 0000 @ 03093574 n 0000 + 00047745 v 0401 + 00050652 v 0401 + 00052374 v 0401 + 03128583 a 0301 + 00052043 v 0301 + 00049197 v 0301 + 00047945 v 0102 ~ 02671780 n 0000 ~ 02728440 n 0000 ~ 02742322 n 0000 ~ 02756098 n 0000 ~ 02814774 n 0000 ~ 02846141 n 0000 ~ 02855925 n 0000 ~ 03005769 n 0000 ~ 03036469 n 0000 ~ 03231476 n 0000 ~ 03381126 n 0000 ~ 03419014 n 0000 ~ 03456186 n 0000 ~ 03490324 n 0000 ~ 03502509 n 0000 ~ 03625943 n 0000 ~ 03655720 n 0000 ~ 03692379 n 0000 ~ 03746330 n 0000 ~ 03815482 n 0000 ~ 03825080 n 0000 ~ 03859495 n 0000 ~ 04015204 n 0000 ~ 04059157 n 0000 ~ 04241249 n 0000 ~ 04243142 n 0000 ~ 04335693 n 0000 ~ 04385079 n 0000 ~ 04446162 n 0000 ~ 04509592 n 0000 ~ 04532022 n 0000 %p 04550426 n 0000 ~ 04596852 n 0000 ~ 04600912 n 0000 | a covering designed to be worn on a person's body -03052464 06 n 04 clothing_store 0 haberdashery 1 haberdashery_store 0 mens_store 0 002 @ 04202417 n 0000 ~ 04243251 n 0000 | a store where men's clothes are sold -03052628 06 n 02 cloud_chamber 0 Wilson_cloud_chamber 0 001 @ 03894051 n 0000 | apparatus that detects the path of high-energy particles passing through a supersaturated vapor; each particle ionizes molecules along its path and small droplets condense on them to produce a visible track -03052917 06 n 02 clout_nail 0 clout 1 001 @ 03804744 n 0000 | a short nail with a flat head; used to attach sheet metal to wood -03053047 06 n 01 clove_hitch 0 001 @ 03627232 n 0000 | a knot used to fasten a line temporarily to a post or spar -03053163 06 n 01 cloverleaf 0 001 @ 03577818 n 0000 | an interchange that does not require left-hand turns -03053272 06 n 02 clozapine 0 Clozaril 0 001 @ 03713736 n 0000 | an antipsychotic drug (trade name Clozaril) used as a sedative and for treatment-resistant schizophrenia; know to have few side effects -03053474 06 n 01 club 0 009 @ 04317420 n 0000 + 01423929 v 0101 ~ 02806379 n 0000 ~ 02855793 n 0000 ~ 03145384 n 0000 ~ 03567912 n 0000 ~ 03626502 n 0000 ~ 03646546 n 0000 ~ 04491388 n 0000 | stout stick that is larger at one end; "he carried a club in self defense"; "he felt as if he had been hit with a club" -03053788 06 n 01 club 3 002 @ 03963982 n 0000 #m 03771261 n 0000 | a playing card in the minor suit that has one or more black trefoils on it; "he led a small club"; "clubs were trumps" -03053976 06 n 02 club_car 0 lounge_car 0 001 @ 02959942 n 0000 | railroad car having a bar and tables and lounge chairs -03054098 06 n 01 club_drug 0 005 @ 03097890 n 0000 ~ 03370020 n 0000 ~ 03414814 n 0000 ~ 03611590 n 0000 ~ 03756184 n 0000 | a controlled substance that is usually taken by young people at dance clubs and raves -03054311 06 n 02 clubhouse 0 club 2 003 @ 02913152 n 0000 %p 03054491 n 0000 %p 04058096 n 0000 | a building that is occupied by a social club; "the clubhouse needed a new roof" -03054491 06 n 01 clubroom 0 002 @ 04105893 n 0000 #p 03054311 n 0000 | a room used for the activities of a club -03054605 06 n 01 cluster_bomb 0 003 @ 02866578 n 0000 %p 02868240 n 0000 %p 03390327 n 0000 | bomb consisting of a canister that is dropped from a plane and that opens to release a cluster of bomblets (usually fragmentation bombs) over a wide area; "cluster bombs cannot be targeted precisely" -03054901 06 n 01 clutch 0 005 @ 03119510 n 0000 #p 04472243 n 0000 %p 03055159 n 0000 ~ 03393761 n 0000 ~ 03396654 n 0000 | a coupling that connects or disconnects driving and driven parts of a driving mechanism; "this year's model has an improved clutch" -03055159 06 n 02 clutch 1 clutch_pedal 0 002 @ 03903424 n 0000 #p 03054901 n 0000 | a pedal or lever that engages or disengages a rotating shaft and a driving mechanism; "he smoothely released the clutch with one foot and stepped on the gas with the other" -03055418 06 n 02 clutch_bag 0 clutch 2 001 @ 02774152 n 0000 | a woman's strapless purse that is carried in the hand -03055537 06 n 01 CN_Tower 0 002 @i 04460130 n 0000 #p 08828432 n 0000 | a tower in Toronto; 1815 feet tall for broadcasting widely -03055670 06 n 03 coach 0 four-in-hand 0 coach-and-four 0 004 @ 02968473 n 0000 + 01931262 v 0101 %p 02884450 n 0000 ~ 04297098 n 0000 | a carriage pulled by four horses with one driver -03055857 06 n 03 coach_house 0 carriage_house 0 remise 0 001 @ 03859280 n 0000 | a small building for housing coaches and carriages and other vehicles -03056010 06 n 02 coalbin 0 coalhole 0 001 @ 02839910 n 0000 | a bin for holding coal -03056097 06 n 01 coal_car 0 001 @ 03393912 n 0000 | freight car with fixed sides and no roof; for transporting coal -03056215 06 n 01 coal_chute 0 001 @ 03029603 n 0000 | a chute for coal -03056288 06 n 01 coal_house 0 001 @ 04187547 n 0000 | a shed for storing coal -03056368 06 n 02 coal_mine 0 coalpit 0 002 @ 03768346 n 0000 #p 03070396 n 0000 | a mine where coal is dug from the ground -03056493 06 n 01 coal_shovel 0 001 @ 03488603 n 0000 | a hand shovel for shoveling coal -03056583 06 n 01 coaming 0 001 @ 03391770 n 0000 | a raised framework around a hatchway on a ship to keep water out -03056701 06 n 01 coaster 0 001 @ 04014297 n 0000 | a covering (plate or mat) that protects the surface of a table (i.e., from the condensation on a cold glass or bottle) -03056873 06 n 01 coaster_brake 0 002 @ 02889425 n 0000 #p 02834778 n 0000 | a brake on a bicycle that engages with reverse pressure on the pedals -03057021 06 n 01 coat 0 022 @ 03863923 n 0000 + 00051511 v 0101 ~ 02885233 n 0000 %p 02895328 n 0000 %p 03057541 n 0000 ~ 03057841 n 0000 %p 03059236 n 0000 ~ 03152830 n 0000 ~ 03254046 n 0000 ~ 03398228 n 0000 ~ 03404251 n 0000 ~ 03456665 n 0000 ~ 03589791 n 0000 ~ 03630383 n 0000 ~ 03703463 n 0000 ~ 03821898 n 0000 ~ 04049405 n 0000 ~ 04123448 n 0000 ~ 04187970 n 0000 ~ 04363777 n 0000 ~ 04455579 n 0000 %p 08583292 n 0000 | an outer garment that has sleeves and covers the body from shoulder down; worn outdoors -03057541 06 n 01 coat_button 0 002 @ 02928608 n 0000 #p 03057021 n 0000 | a button on a coat -03057636 06 n 01 coat_closet 0 001 @ 04550184 n 0000 | a closet for storing outerwear -03057724 06 n 01 coatdress 0 001 @ 03236735 n 0000 | a dress that is tailored like a coat and buttons up the front -03057841 06 n 01 coatee 0 001 @ 03057021 n 0000 | a short close-fitting coat -03057920 06 n 03 coat_hanger 0 clothes_hanger 0 dress_hanger 0 002 @ 03490884 n 0000 %p 03532672 n 0000 | a hanger that is shaped like a person's shoulders and used to hang garments on -03058107 06 n 02 coating 0 coat 1 022 @ 03122748 n 0000 + 01262321 v 0201 + 01264283 v 0201 + 01262321 v 0101 + 01264283 v 0101 ~ 02845985 n 0000 ~ 03058949 n 0000 ~ 03284482 n 0000 ~ 03284743 n 0000 ~ 03315990 n 0000 ~ 03342657 n 0000 ~ 03437430 n 0000 ~ 03631811 n 0000 ~ 03863657 n 0000 ~ 03875218 n 0000 ~ 03899612 n 0000 ~ 03963028 n 0000 ~ 04075715 n 0000 ~ 04159545 n 0000 ~ 04521987 n 0000 ~ 04525417 n 0000 ~ 04561857 n 0000 | a thin layer covering something; "a second coat of paint" -03058603 06 n 01 coating 1 003 @ 03309808 n 0000 + 00051511 v 0101 ~ 03018614 n 0000 | a heavy fabric suitable for coats -03058726 06 n 04 coat_of_arms 0 arms 1 blazon 0 blazonry 0 006 @ 03515338 n 0000 ;c 05801594 n 0000 + 01684180 v 0402 + 01684180 v 0302 %p 03131038 n 0000 ~ 04032049 n 0000 | the official symbols of a family, state, etc. -03058949 06 n 01 coat_of_paint 0 004 @ 03875218 n 0000 @ 03058107 n 0000 ~ 03342863 n 0000 ~ 03360845 n 0000 | a layer of paint covering something else -03059103 06 n 03 coatrack 0 coat_rack 0 hatrack 0 001 @ 04038727 n 0000 | a rack with hooks for temporarily holding coats and hats -03059236 06 n 01 coattail 0 002 @ 03357376 n 0000 #p 03057021 n 0000 | the loose back flap of a coat that hangs below the waist -03059366 06 n 03 coaxial_cable 0 coax 0 coax_cable 0 003 @ 02934168 n 0000 + 00768778 v 0205 ~ 03300443 n 0000 | a transmission line for high-frequency signals -03059528 06 n 03 cobble 0 cobblestone 0 sett 0 002 @ 03901074 n 0000 + 01267475 v 0101 | rectangular paving stone with curved top; once used to make roads -03059685 06 n 01 cobweb 0 001 @ 04275363 n 0000 | a dense elaborate spider web that is more efficient than the orb web -03059806 06 n 02 cobweb 1 gossamer 1 002 @ 14867858 n 0000 + 00706455 a 0202 | filaments from a web that was spun by a spider -03059934 06 n 01 cobweb 2 002 @ 03309808 n 0000 + 02413390 a 010b | a fabric so delicate and transparent as to resemble a web of a spider -03060074 06 n 01 coca 0 003 @ 14991927 n 0000 ;c 00017222 n 0000 %s 03060294 n 0000 | dried leaves of the coca plant (and related plants that also contain cocaine); chewed by Andean people for their stimulating effect -03060294 06 n 02 cocaine 0 cocain 0 007 @ 03492717 n 0000 #s 03060074 n 0000 + 00021679 v 0201 + 00021679 v 0202 ~ 02806274 n 0000 ~ 03066743 n 0000 ~ 03125184 n 0000 | a narcotic (alkaloid) extracted from coca leaves; used as a surface anesthetic or taken for pleasure; can become powerfully addictive -03060599 06 n 01 cockade 0 001 @ 03169390 n 0000 | an ornament (such as a knot of ribbon or a rosette) usually worn on the hat -03060728 06 n 04 Cockcroft_and_Walton_accelerator 0 Cockcroft-Walton_accelerator 0 Cockcroft_and_Walton_voltage_multiplier 0 Cockcroft-Walton_voltage_multiplier 0 001 @ 02670382 n 0000 | a high-voltage machine in which rectifiers charge capacitors that discharge and drive charged particles through an accelerating tube -03061050 06 n 01 cocked_hat 0 003 @ 03497657 n 0000 ~ 02834642 n 0000 ~ 04482177 n 0000 | hat with opposing brims turned up and caught together to form points -03061211 06 n 01 cockhorse 0 001 @ 03964744 n 0000 | anything used as a toy horse (such as a rocking horse or one knee of an adult) -03061345 06 n 01 cockleshell 0 001 @ 04244997 n 0000 | a small light flimsy boat -03061428 06 n 01 cockloft 0 001 @ 03686130 n 0000 | a small loft or garret -03061505 06 n 01 cockpit 0 004 @ 03079741 n 0000 #p 02686568 n 0000 %p 02952237 n 0000 %p 03267468 n 0000 | compartment where the pilot sits while flying the aircraft -03061674 06 n 01 cockpit 1 003 @ 04161358 n 0000 #p 04037443 n 0000 ;c 00449517 n 0000 | seat where the driver sits while driving a racing car -03061819 06 n 01 cockpit 2 001 @ 03950113 n 0000 | a pit for cockfights -03061893 06 n 02 cockscomb 0 coxcomb 0 001 @ 02954340 n 0000 | a cap worn by court jesters; adorned with a strip of red -03062015 06 n 02 cocktail_dress 0 sheath 1 001 @ 03236735 n 0000 | a dress suitable for formal occasions -03062122 06 n 01 cocktail_lounge 0 001 @ 02796995 n 0000 | a barroom in a hotel or restaurant where cocktails are served -03062245 06 n 01 cocktail_shaker 0 001 @ 04183329 n 0000 | a shaker for mixing cocktails -03062336 06 n 01 cocotte 0 001 @ 02978753 n 0000 | a small casserole in which individual portions can be cooked and served -03062461 06 n 01 codeine 0 003 @ 03850746 n 0000 @ 02707683 n 0000 @ 02725242 n 0000 | derivative of opium; used as an antitussive (to relieve coughing) and an analgesic (to relieve pain) -03062651 06 n 01 codpiece 0 002 @ 03357376 n 0000 #p 02896442 n 0000 | (15th-16th century) a flap for the crotch of men's tight-fitting breeches -03062798 06 n 01 coelostat 0 001 @ 03851341 n 0000 | optical device used to follow the path of a celestial body and reflect its light into a telescope; has a movable and a fixed mirror -03062985 06 n 01 coffee_can 0 001 @ 02946921 n 0000 | a can for storing ground coffee -03063073 06 n 01 coffee_cup 0 003 @ 03147509 n 0000 ~ 03174731 n 0000 %p 03485997 n 0000 | a cup from which coffee is drunk -03063199 06 n 01 coffee_filter 0 001 @ 03339643 n 0000 | filter (usually of paper) that passes the coffee and retains the coffee grounds -03063338 06 n 01 coffee_maker 0 003 @ 03620052 n 0000 ~ 03297495 n 0000 ~ 04219185 n 0000 | a kitchen appliance for brewing coffee automatically -03063485 06 n 02 coffee_mill 0 coffee_grinder 0 001 @ 03765561 n 0000 | a mill that grinds roasted coffee beans -03063599 06 n 01 coffee_mug 0 001 @ 03797390 n 0000 | a mug intended for serving coffee -03063689 06 n 01 coffeepot 0 004 @ 03990474 n 0000 ~ 03242506 n 0000 %p 03485997 n 0000 ~ 03915118 n 0000 | tall pot in which coffee is brewed -03063834 06 n 01 coffee_stall 0 001 @ 04299215 n 0000 | a stand (usually movable) selling hot coffee and food (especially at night) -03063968 06 n 02 coffee_table 0 cocktail_table 0 001 @ 04379243 n 0000 | low table where magazines can be placed and coffee or cocktails are served -03064118 06 n 01 coffee-table_book 0 001 @ 02870092 n 0000 | an elaborate oversize book suitable for displaying on a coffee table -03064250 06 n 01 coffee_urn 0 001 @ 04516214 n 0000 | an urn in which coffee is made and kept hot -03064350 06 n 01 coffer 0 001 @ 03014705 n 0000 | a chest especially for storing valuables -03064443 06 n 03 coffer 2 caisson 1 lacuna 1 001 @ 03882058 n 0000 | an ornamental sunken panel in a ceiling or dome -03064562 06 n 01 Coffey_still 0 002 @ 04318982 n 0000 #p 03212811 n 0000 | a still consisting of an apparatus for the fractional distillation of ethanol from fermentation on an industrial scale -03064758 06 n 02 coffin 0 casket 1 005 @ 02883344 n 0000 + 01599539 v 0201 + 01499948 v 0101 ~ 02836392 n 0000 ~ 04136045 n 0000 | box in which a corpse is buried or cremated -03064935 06 n 02 cog 0 sprocket 1 003 @ 04452848 n 0000 #p 03430551 n 0000 + 01293918 v 0101 | tooth on the rim of gear wheel -03065063 06 n 02 cog_railway 0 rack_railway 0 001 @ 04048568 n 0000 | railway for steep mountains; a cogwheel on the locomotive engages cogs on a center rail to provide traction -03065243 06 n 01 coif 0 002 @ 04232153 n 0000 + 01334647 v 0101 | a skullcap worn by nuns under a veil or by soldiers under a hood of mail or formerly by British sergeants-at-law -03065424 06 n 05 coil 0 spiral 0 volute 0 whorl 0 helix 0 007 @ 04341686 n 0000 + 02317598 a 0502 + 02317598 a 0305 + 02049190 v 0202 + 02049190 v 0103 + 01523986 v 0101 ~ 03491988 n 0000 | a structure consisting of something wound in a continuous series of loops; "a coil of rope" -03065708 06 n 01 coil 1 011 @ 04057846 n 0000 ~ 02738271 n 0000 ~ 02750320 n 0000 ~ 03024518 n 0000 ~ 03332591 n 0000 ~ 03568818 n 0000 ~ 04002629 n 0000 ~ 04058721 n 0000 ~ 04164002 n 0000 ~ 04259202 n 0000 ~ 04432785 n 0000 | reactor consisting of a spiral of insulated wire that introduces inductance into a circuit -03066029 06 n 01 coil 2 002 @ 04493505 n 0000 ~ 03087521 n 0000 | tubing that is wound in a spiral -03066130 06 n 01 coil 3 001 @ 03096593 n 0000 | a contraceptive device placed inside a woman's womb -03066232 06 n 01 coil 4 001 @ 04471315 n 0000 | a transformer that supplies high voltage to spark plugs in a gasoline engine -03066359 06 n 02 coil_spring 0 volute_spring 0 001 @ 04288272 n 0000 | a spring in the shape of a coil -03066464 06 n 01 coin_box 0 002 @ 04060904 n 0000 #p 04243941 n 0000 | the part of a slot machine that serves as a receptacle for the coins -03066606 06 n 01 coin_slot 0 002 @ 04243370 n 0000 #p 04243941 n 0000 | a slot through which coins can be inserted into a slot machine -03066743 06 n 05 coke 0 blow 0 nose_candy 0 snow 0 C 0 001 @ 03060294 n 0000 | street names for cocaine -03066849 06 n 02 colander 0 cullender 0 001 @ 04332243 n 0000 | bowl-shaped strainer; used to wash or drain foods -03066965 06 n 01 colchicine 0 001 @ 02707683 n 0000 | an analgesic drug derived from the saffron plant and used to treat gout -03067093 06 n 01 cold_cathode 0 001 @ 02984699 n 0000 | a cathode that is a source of electrons without being heated -03067212 06 n 02 cold_chisel 0 set_chisel 0 001 @ 03020692 n 0000 | narrow chisel made of steel; used to cut stone or bricks -03067339 06 n 04 cold_cream 0 coldcream 0 face_cream 0 vanishing_cream 0 001 @ 03128519 n 0000 | a cream used cosmetically (mostly by women) for softening and cleaning the skin -03067518 06 n 01 cold_frame 0 001 @ 04014297 n 0000 | protective covering consisting of a wooden frame with a glass top in which small plants are protected from the cold -03067690 06 n 01 cold_medicine 0 001 @ 03740161 n 0000 | medicine intended to relieve the symptoms of the common cold -03067810 06 n 01 cold-water_flat 0 001 @ 02726305 n 0000 | an apartment without modern conveniences -03067912 06 n 02 collage 0 montage 0 003 @ 03897334 n 0000 @ 03931044 n 0000 ~ 03927201 n 0000 | a paste-up made by sticking together pieces of paper or photographs to form an artistic image; "he used his computer to make a collage of pictures superimposed on a map" -03068181 06 n 02 collar 0 neckband 0 011 @ 02784218 n 0000 #p 03814112 n 0000 + 01215851 v 0101 + 01215694 v 0101 ~ 03024746 n 0000 ~ 03041964 n 0000 ~ 03301066 n 0000 %p 03315805 n 0000 ~ 03919974 n 0000 ~ 04036648 n 0000 ~ 04502364 n 0000 | a band that fits around the neck and is usually folded over -03068486 06 n 01 collar 2 005 @ 02784218 n 0000 + 01215851 v 0101 + 01215694 v 0101 ~ 03217814 n 0000 %p 03480973 n 0000 | a band of leather or rope that is placed around an animal's neck as a harness or to identify it -03068707 06 n 02 collar 3 shoe_collar 0 003 @ 02902250 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 | the stitching that forms the rim of a shoe or boot -03068862 06 n 01 collar 4 001 @ 03533972 n 0000 | a short ring fastened over a rod or shaft to limit, guide, or secure a machine part -03068998 06 n 01 collar 5 001 @ 03815482 n 0000 | anything worn or placed about the neck; "the thief was forced to wear a heavy wooden collar"; "a collar of flowers was placed about the neck of the winning horse" -03069213 06 n 02 collectible 0 collectable 0 002 @ 03149951 n 0000 ~ 02998696 n 0000 | things considered to be worth collecting (not necessarily valuable or antique) -03069381 06 n 01 collector 0 002 @ 03274796 n 0000 #p 04471632 n 0000 | the electrode in a transistor through which a primary flow of carriers leaves the region between the electrodes -03069567 06 n 03 collector's_item 0 showpiece 0 piece_de_resistance 0 002 @ 03149951 n 0000 ~ 04054566 n 0000 | the outstanding item (the prize piece or main exhibit) in a collection -03069752 06 n 01 college 0 003 @ 02914991 n 0000 + 02699524 a 0102 ~i 03163081 n 0000 | a complex of buildings in which an institution of higher education is housed -03069919 06 n 01 collet 0 002 @ 02784998 n 0000 #p 03793186 n 0000 | a band or collar that holds an individual stone in a jewelry setting -03070059 06 n 02 collet 2 collet_chuck 0 001 @ 03027250 n 0000 | a cone-shaped chuck used for holding cylindrical pieces in a lathe -03070193 06 n 01 collider 0 005 @ 02670382 n 0000 + 01562733 v 0101 ~ 03277004 n 0000 ~ 04015786 n 0000 ~ 04358256 n 0000 | an accelerator in which two beams of particles are forced to collide head on -03070396 06 n 02 colliery 0 pit 1 003 @ 04602044 n 0000 %p 03056368 n 0000 %p 03768346 n 0000 | a workplace consisting of a coal mine plus all the buildings and equipment connected with it -03070587 06 n 01 collimator 0 002 @ 03851341 n 0000 #p 04273064 n 0000 | optical device consisting of a tube containing a convex achromatic lens at one end and a slit at the other with the slit at the focus of the lens; light rays leave the slit as a parallel beam -03070854 06 n 01 collimator 1 002 @ 04403638 n 0000 + 00465461 v 0101 | a small telescope attached to a large telescope to use in setting the line of the larger one -03071021 06 n 03 cologne 0 cologne_water 0 eau_de_cologne 0 001 @ 03916031 n 0000 | a perfumed liquid made of essential oils and alcohol -03071160 06 n 01 colonnade 1 002 @ 04341686 n 0000 ~ 03917198 n 0000 | structure consisting of a row of evenly spaced columns -03071288 06 n 01 colonoscope 0 001 @ 03286572 n 0000 | an elongated fiberoptic endoscope for examining the entire colon from cecum to rectum -03071431 06 n 01 colophon 0 001 @ 03282591 n 0000 | a publisher's emblem printed in a book (usually on the title page) -03071552 06 n 02 colorimeter 0 tintometer 0 002 @ 03733925 n 0000 + 02700615 a 0101 | a measuring instrument used in colorimetric analysis to determine the quantity of a substance from the color it yields with specific reagents -03071782 06 n 01 coloring_book 0 001 @ 03931651 n 0000 | a picture book with line drawings intended to be colored with crayons by children -03071923 06 n 02 colors 0 colours 0 003 @ 03354903 n 0000 ;u 06295235 n 0000 ~ 03290096 n 0000 | a flag that shows its nationality -03072056 06 n 02 colors 1 colours 1 002 @ 03282591 n 0000 ;u 06295235 n 0000 | a distinguishing emblem; "his tie proclaimed his school colors" -03072201 06 n 06 color_television 0 colour_television 0 color_television_system 0 colour_television_system 0 color_TV 0 colour_TV 0 003 @ 04404412 n 0000 %p 03072440 n 0000 ~ 03334017 n 0000 | a television that transmits images in color -03072440 06 n 06 color_tube 0 colour_tube 0 color_television_tube 0 colour_television_tube 0 color_TV_tube 0 colour_TV_tube 0 003 @ 03617594 n 0000 #p 03072201 n 0000 ~ 04481946 n 0000 | a television tube that displays images in full color -03072682 06 n 02 color_wash 0 colour_wash 0 001 @ 04553389 n 0000 | a wash of whitewash or other water-base paint tinted with a colored pigment -03072828 06 n 02 Colosseum 0 Amphitheatrum_Flavium 0 002 @i 02704949 n 0000 #p 08806897 n 0000 | a large amphitheater in Rome whose construction was begun by Vespasian about AD 75 or 80 -03073016 06 n 01 Colossus_of_Rhodes 0 002 @i 04306847 n 0000 #m 04178329 n 0000 | a huge bronze statue of the sun god Helios that was built around 285 BC and that stood beside the harbor entrance on the island of Rhodes for about 50 years before it was toppled by an earthquake -03073296 06 n 01 Colt 0 002 @ 04086273 n 0000 ;u 06851742 n 0000 | a kind of revolver -03073384 06 n 02 colter 0 coulter 0 002 @ 04569520 n 0000 #p 03780047 n 0000 | a sharp steel wedge that precedes the plow and cuts vertically through the soil -03073545 06 n 01 columbarium 0 001 @ 04523690 n 0000 | a sepulchral vault or other structure having recesses in the walls to receive cinerary urns -03073694 06 n 02 columbarium 1 cinerarium 0 001 @ 04061969 n 0000 | a niche for a funeral urn containing the ashes of the cremated dead -03073832 06 n 02 Columbia_University 0 Columbia 0 003 @i 04511002 n 0000 #p 09119277 n 0000 #m 08232706 n 0000 | a university in New York City -03073977 06 n 02 column 0 pillar 0 014 @ 04515129 n 0000 #p 04407686 n 0000 ;c 06123363 n 0000 + 00140989 a 0101 ~ 02752810 n 0000 %p 02956247 n 0000 ~ 02974348 n 0000 ~ 03821424 n 0000 %p 03903868 n 0000 ~ 03935883 n 0000 ~ 03936269 n 0000 %p 04182708 n 0000 ~ 04360798 n 0000 %p 13864542 n 0000 | (architecture) a tall vertical cylindrical structure standing upright and used to support a structure -03074380 06 n 02 column 1 pillar 1 003 @ 04341686 n 0000 ~ 03837869 n 0000 ~ 04458633 n 0000 | a vertical cylindrical structure standing alone and not supporting anything (such as a monument) -03074574 06 n 02 column 2 chromatography_column 0 001 @ 04493505 n 0000 | a vertical glass tube used in column chromatography; a mixture is poured in the top and washed through a stationary substance where components of the mixture are adsorbed selectively to form colored bands -03074855 06 n 01 comb 0 007 @ 03183080 n 0000 + 01596645 v 0101 + 00038365 v 0101 ~ 03150661 n 0000 ~ 03341035 n 0000 ~ 03973285 n 0000 %p 04452848 n 0000 | a flat device with narrow pointed teeth on one edge; disentangles or arranges hair -03075097 06 n 01 comb 1 004 @ 04451818 n 0000 + 00038365 v 0101 ~ 03498866 n 0000 %p 04452848 n 0000 | any of several tools for straightening fibers -03075248 06 n 01 comber 0 001 @ 03699975 n 0000 | a machine that separates and straightens the fibers of cotton or wool -03075370 06 n 01 combination_lock 0 001 @ 03682487 n 0000 | lock that can be opened only by turning dials in a special sequence -03075500 06 n 01 combination_plane 0 001 @ 03954731 n 0000 | a woodworking plane that has interchangeable cutters of various shapes -03075634 06 n 01 combine 0 001 @ 03496892 n 0000 | harvester that heads and threshes and cleans grain while moving across the field -03075768 06 n 04 comforter 1 pacifier 0 baby's_dummy 0 teething_ring 0 003 @ 03183080 n 0000 + 01765392 v 0201 + 00082308 v 0101 | device used for an infant to suck or bite on -03075946 06 n 01 command_module 0 001 @ 03779000 n 0000 | a space module in which astronauts can live and control the spacecraft and communicate with earth -03076104 06 n 03 command_post 0 general_headquarters 0 GHQ 0 002 @ 03504420 n 0000 ;c 08199025 n 0000 | military headquarters from which a military commander controls and organizes the forces -03076298 06 n 01 commercial_art 0 001 @ 02743547 n 0000 | art used for commercial purposes (as in advertising) -03076411 06 n 01 commissary 0 005 @ 04202417 n 0000 ;c 08199025 n 0000 ~ 03989447 n 0000 ~ 04242871 n 0000 ~ 04245508 n 0000 | a retail store that sells equipment and provisions (usually to military personnel) -03076623 06 n 01 commissary 1 001 @ 04247736 n 0000 | a snack bar in a film studio -03076708 06 n 03 commodity 0 trade_good 0 good 0 016 @ 00021939 n 0000 ~ 02800793 n 0000 ~ 03093574 n 0000 ~ 03252064 n 0000 ~ 03291243 n 0000 ~ 03306207 n 0000 ~ 03320735 n 0000 ~ 03403169 n 0000 ~ 03408721 n 0000 ~ 03564667 n 0000 ~ 03748886 n 0000 ~ 03762067 n 0000 ~ 04203889 n 0000 ~ 04284735 n 0000 ~ 04600131 n 0000 ~ 13247554 n 0000 | articles of commerce -03077074 06 n 03 commodity_exchange 0 commodities_exchange 0 commodities_market 0 004 @ 03302487 n 0000 ~ 03408918 n 0000 %p 03949924 n 0000 ~ 04286796 n 0000 | an exchange for buying and selling commodities for future delivery -03077304 06 n 01 Commodore_John_Barry_Bridge 0 002 @i 02953197 n 0000 #p 09135993 n 0000 | a cantilever bridge in Chester, Pennsylvania -03077442 06 n 04 common_ax 0 common_axe 0 Dayton_ax 0 Dayton_axe 0 001 @ 02764044 n 0000 | an ax with a long handle and a head that has one cutting edge and one blunt side -03077616 06 n 01 common_room 0 002 @ 03679712 n 0000 ;r 08860123 n 0000 | a sitting room (usually at school or university) -03077741 06 n 01 communications_satellite 0 004 @ 04137444 n 0000 #p 03077958 n 0000 %p 04137773 n 0000 %p 04138131 n 0000 | an artificial satellite that relays signals back to earth; moves in a geostationary orbit -03077958 06 n 02 communication_system 0 communication_equipment 0 009 @ 03315023 n 0000 #p 03569964 n 0000 %p 02872529 n 0000 %p 03077741 n 0000 ~ 03331820 n 0000 ~ 03820474 n 0000 %p 04044119 n 0000 %p 04176528 n 0000 %p 04406350 n 0000 | facility consisting of the physical plants and equipment for disseminating information -03078287 06 n 01 communication_system 1 008 @ 04377057 n 0000 ~ 03463185 n 0000 ~ 03578055 n 0000 ~ 04018155 n 0000 ~ 04041544 n 0000 ~ 04042795 n 0000 ~ 04400289 n 0000 ~ 04402746 n 0000 | a system for communicating -03078506 06 n 02 community_center 0 civic_center 0 001 @ 02993546 n 0000 | a center where the members of a community can gather for social or cultural activities -03078670 06 n 01 commutator 0 002 @ 04372370 n 0000 + 00139367 v 0101 | switch for reversing the direction of an electric current -03078802 06 n 02 commuter 0 commuter_train 0 002 @ 03896233 n 0000 + 02061846 v 0101 | a passenger train that is ridden primarily by passengers who travel regularly from one place to another -03078995 06 n 02 compact 0 powder_compact 0 001 @ 02974697 n 0000 | a small cosmetics case with a mirror; to be carried in a woman's purse -03079136 06 n 02 compact 1 compact_car 0 001 @ 02958343 n 0000 | a small and economical car -03079230 06 n 03 compact_disk 0 compact_disc 0 CD 0 005 @ 03851787 n 0000 @ 04063868 n 0000 ~ 02757061 n 0000 ~ 02988486 n 0000 ~ 02988679 n 0000 | a digitally encoded recording on an optical disk that is smaller than a phonograph record; played back by a laser -03079494 06 n 02 compact-disk_burner 0 CD_burner 0 001 @ 04063373 n 0000 | recording equipment for making compact disks -03079616 06 n 01 companionway 0 001 @ 04298308 n 0000 | a stairway or ladder that leads from one deck to another on a ship -03079741 06 n 01 compartment 0 025 @ 04105893 n 0000 + 00329034 a 0101 + 00483801 v 0101 + 00483801 v 0102 ~ 02812631 n 0000 ~ 02812785 n 0000 ~ 02884011 n 0000 ~ 02884225 n 0000 ~ 02931148 n 0000 ~ 02932019 n 0000 ~ 02932227 n 0000 ~ 02933462 n 0000 ~ 02934451 n 0000 ~ 02960352 n 0000 ~ 02960501 n 0000 ~ 03061505 n 0000 ~ 03116008 n 0000 ~ 03235180 n 0000 ~ 03441345 n 0000 ~ 03696065 n 0000 ~ 03779000 n 0000 ~ 03939677 n 0000 ~ 04107598 n 0000 ~ 04299370 n 0000 ~ 04572559 n 0000 | a partitioned section, chamber, or separate room within a larger enclosed area -03080309 06 n 01 compartment 1 006 @ 13910384 n 0000 + 00483801 v 0101 + 00483801 v 0102 ~ 02991711 n 0000 ~ 03144486 n 0000 ~ 03990210 n 0000 | a space into which an area is subdivided -03080497 06 n 01 compass 0 003 @ 03813176 n 0000 ~ 03473078 n 0000 ~ 03706229 n 0000 | navigational instrument for finding directions -03080633 06 n 01 compass 1 001 @ 03231160 n 0000 | drafting instrument used for drawing circles -03080731 06 n 02 compass_card 0 mariner's_compass 0 001 @ 03706229 n 0000 | compass in the form of a card that rotates so that 0 degrees or North points to magnetic north -03080904 06 n 01 compass_saw 0 001 @ 03488188 n 0000 | a handsaw with a narrow triangular blade for cutting curves -03081021 06 n 03 component 0 constituent 0 element 0 019 @ 03892891 n 0000 + 01856238 a 0301 + 02621395 v 0202 ~ 02671421 n 0000 ~ 02679415 n 0000 ~ 02756751 n 0000 ~ 02762044 n 0000 ~ 03142912 n 0000 ~ 03493333 n 0000 ~ 03508628 n 0000 ~ 03570709 n 0000 ~ 03573154 n 0000 ~ 03640456 n 0000 ~ 03714899 n 0000 ~ 03778600 n 0000 ~ 03952277 n 0000 ~ 04084234 n 0000 ~ 04267870 n 0000 ~ 04268799 n 0000 | an artifact that is one of the individual parts of which a composite entity is made up; especially a part that can be separated from or attached to a system; "spare components for cars"; "a component or constituent element of a system" -03081660 06 n 01 composition 0 002 @ 03129123 n 0000 ~ 03897334 n 0000 | something that is created by arranging several things to form a unified whole; "he envied the composition of their faculty" -03081859 06 n 01 compound 0 001 @ 03285912 n 0000 | an enclosure of residences and other building (especially in the Orient) -03081986 06 n 01 compound_lens 0 002 @ 03656484 n 0000 ~ 02675522 n 0000 | a lens system consisting of two or more lenses on the same axis -03082127 06 n 01 compound_lever 0 004 @ 03659292 n 0000 ~ 03836602 n 0000 ~ 03966976 n 0000 ~ 04148054 n 0000 | a pair of levers hinged at the fulcrum -03082280 06 n 01 compound_microscope 0 002 @ 03667829 n 0000 %p 03838298 n 0000 | light microscope that has two converging lens systems: the objective and the eyepiece -03082450 06 n 01 compress 0 002 @ 03237639 n 0000 %s 14873056 n 0000 | a cloth pad or dressing (with or without medication) applied firmly to some part of the body (to relieve discomfort or reduce fever) -03082656 06 n 02 compression_bandage 0 tourniquet 0 001 @ 02785648 n 0000 | bandage that stops the flow of blood from an artery by applying pressure -03082807 06 n 01 compressor 0 005 @ 03736970 n 0000 + 01387786 v 0101 ~ 02686227 n 0000 %p 03156405 n 0000 ~ 04357930 n 0000 | a mechanical device that compresses gasses -03082979 06 n 06 computer 0 computing_machine 0 computing_device 0 data_processor 0 electronic_computer 0 information_processing_system 0 055 @ 03699975 n 0000 #p 03962685 n 0000 ;c 06128570 n 0000 + 00637259 v 0104 + 02337364 v 0101 + 02218759 v 0101 + 01718952 v 0102 + 02337364 v 0102 + 02218759 v 0102 + 01718952 v 0103 -c 00509039 a 0000 -c 00509206 a 0000 -c 01091995 a 0000 -c 00145929 n 0000 ~ 02708224 n 0000 %p 02924713 n 0000 %p 02985137 n 0000 %p 02995345 n 0000 %p 03020034 n 0000 %p 03084204 n 0000 %p 03084420 n 0000 -c 03092656 n 0000 %p 03163798 n 0000 ~ 03196324 n 0000 %p 03209141 n 0000 %p 03209910 n 0000 -c 03314608 n 0000 %p 03493333 n 0000 ~ 03528523 n 0000 %p 03614007 n 0000 %p 03744276 n 0000 -c 03778817 n 0000 %p 03782190 n 0000 ~ 03827107 n 0000 ~ 03835582 n 0000 ~ 03890514 n 0000 %p 03916720 n 0000 -c 03967396 n 0000 ~ 03998867 n 0000 -c 04151228 n 0000 ~ 04175147 n 0000 -c 04243727 n 0000 -c 04429756 n 0000 ~ 04499180 n 0000 -c 04539053 n 0000 -c 05728493 n 0000 -c 05799761 n 0000 -c 05799952 n 0000 -c 06128570 n 0000 -c 06278830 n 0000 ~ 06359193 n 0000 -c 06636806 n 0000 -c 07341860 n 0000 -c 07421859 n 0000 -c 01694620 v 0000 | a machine for performing calculations automatically -03084204 06 n 01 computer_accessory 0 002 @ 02671421 n 0000 #p 03082979 n 0000 | an accessory for a computer; "when you add in all the computer accessories you are going to need the computer gets pretty expensive" -03084420 06 n 01 computer_circuit 0 008 @ 03033362 n 0000 #p 03082979 n 0000 ;c 06128570 n 0000 ~ 03427656 n 0000 ~ 03577090 n 0000 ~ 03578656 n 0000 ~ 03778817 n 0000 ~ 04004210 n 0000 | a circuit that is part of a computer -03084647 06 n 01 computer_graphics 0 004 @ 03453985 n 0000 ~ 03044278 n 0000 -c 03391613 n 0000 -c 05665421 n 0000 | the pictorial representation and manipulation of data by a computer -03084834 06 n 02 computerized_axial_tomography_scanner 0 CAT_scanner 0 001 @ 04450243 n 0000 | a tomograph that constructs a 3-D model of an object by combining parallel planes -03085013 06 n 02 computer_keyboard 0 keypad 0 002 @ 03614007 n 0000 @ 03163973 n 0000 | a keyboard that is a data input device for computers; arrangement of keys is modelled after the typewriter keyboard -03085219 06 n 01 computer_monitor 0 001 @ 03782190 n 0000 | a device that displays signals on a computer screen -03085333 06 n 01 computer_network 0 010 @ 03820728 n 0000 ;c 06128570 n 0000 ~ 03577474 n 0000 ~ 03580615 n 0000 ~ 03581756 n 0000 ~ 03681477 n 0000 %p 03827107 n 0000 %p 04175147 n 0000 ~ 04583477 n 0000 ~ 04604276 n 0000 | (computer science) a network of computers -03085602 06 n 02 computer_screen 0 computer_display 0 003 @ 04152593 n 0000 ~ 04458843 n 0000 %p 04588739 n 0000 | a screen used to display the output of a computer to the user -03085781 06 n 01 computer_store 0 001 @ 04202417 n 0000 | a store that sells computers to the small businessperson or personal user -03085915 06 n 05 computer_system 0 computing_system 0 automatic_data_processing_system 0 ADP_system 0 ADPS 0 004 @ 04377057 n 0000 ~ 02772101 n 0000 %p 03842377 n 0000 ~ 03962685 n 0000 | a system of one or more computers and associated software with common storage -03086183 06 n 02 concentration_camp 0 stockade 0 006 @ 02945379 n 0000 ~i 02758600 n 0000 ~i 02827466 n 0000 ~i 02909543 n 0000 ~i 03158259 n 0000 ~ 03166685 n 0000 | a penal camp where political prisoners or prisoners of war are confined (usually under harsh conditions) -03086457 06 n 02 concert_grand 0 concert_piano 0 001 @ 03452741 n 0000 | a grand piano suitable for concert performances -03086580 06 n 01 concert_hall 0 001 @ 03478907 n 0000 | a hall where concerts are given -03086670 06 n 01 concertina 0 003 @ 03393324 n 0000 + 02083694 v 0101 ~ 02786736 n 0000 | free-reed instrument played like an accordion by pushing its ends together to force air through the reeds -03086868 06 n 01 concertina 1 001 @ 02790823 n 0000 | coiled barbed wire used as an obstacle -03086963 06 n 01 concourse 0 001 @ 03479952 n 0000 | a wide hallway in a building where people can walk -03087069 06 n 02 concrete_mixer 0 cement_mixer 0 001 @ 03699975 n 0000 | a machine with a large revolving drum in which cement is mixed with other materials to make concrete -03087245 06 n 02 condensation_pump 0 diffusion_pump 0 001 @ 02692513 n 0000 | vacuum pump used to obtain a high vacuum -03087366 06 n 02 condenser 0 optical_condenser 0 003 @ 03656484 n 0000 + 00244625 v 0102 ~ 02667244 n 0000 | lens used to concentrate light on an object -03087521 06 n 01 condenser 2 002 @ 03066029 n 0000 + 00366275 v 0101 | a hollow coil that condenses by abstracting heat -03087643 06 n 01 condenser 3 005 @ 02727825 n 0000 #p 04318982 n 0000 + 00366275 v 0101 ~ 03662301 n 0000 ~ 04069582 n 0000 | an apparatus that converts vapor into liquid -03087816 06 n 02 condenser_microphone 0 capacitor_microphone 0 001 @ 03759954 n 0000 | microphone consisting of a capacitor with one plate fixed and the other forming the diaphragm moved by sound waves -03088020 06 n 01 conditioner 0 002 @ 15055936 n 0000 + 00041687 v 0101 | a substance used in washing (clothing or hair) to make things softer -03088164 06 n 05 condom 0 rubber 1 safety 1 safe 1 prophylactic 0 002 @ 03096593 n 0000 + 01887819 a 0502 | contraceptive device consisting of a sheath of thin rubber or latex that is worn over the penis during intercourse -03088389 06 n 01 condominium 0 002 @ 03546340 n 0000 %p 03088580 n 0000 | housing consisting of a complex of dwelling units (as an apartment house) in which each unit is individually owned -03088580 06 n 02 condominium 1 condo 0 002 @ 03259505 n 0000 #p 03088389 n 0000 | one of the dwelling units in a condominium -03088707 06 n 01 conductor 0 012 @ 03183080 n 0000 + 02079933 v 0102 ~ 02924713 n 0000 ~ 02934168 n 0000 ~ 03106898 n 0000 ~ 03274796 n 0000 ~ 03510244 n 0000 ~ 03668067 n 0000 ~ 04171831 n 0000 ~ 04211001 n 0000 ~ 04564413 n 0000 ~ 04594489 n 0000 | a device designed to transmit electricity, heat, etc. -03089014 06 n 01 conduit 0 009 @ 03895293 n 0000 ~ 02732433 n 0000 ~ 03253398 n 0000 ~ 03368878 n 0000 ~ 03766816 n 0000 ~ 04244379 n 0000 ~ 04277034 n 0000 ~ 04493505 n 0000 ~ 04562496 n 0000 | a passage (a pipe or tunnel) through which water or electric wires can pass; "the computers were connected through a system of conduits" -03089348 06 n 01 cone 0 004 @ 00021939 n 0000 + 02844728 a 0101 + 02844728 a 0102 + 01584321 v 0101 | any cone-shaped artifact -03089477 06 n 02 cone_clutch 0 cone_friction_clutch 0 001 @ 03396654 n 0000 | a friction clutch in which the frictional surfaces are cone-shaped -03089624 06 n 03 confectionery 0 confectionary 0 candy_store 0 002 @ 04202417 n 0000 ~ 04495450 n 0000 | a confectioner's shop -03089753 06 n 02 conference_center 0 conference_house 0 001 @ 02993546 n 0000 | a center where conferences can be conducted -03089879 06 n 01 conference_room 0 002 @ 04105893 n 0000 %p 03090000 n 0000 | a room in which a conference can be held -03090000 06 n 03 conference_table 0 council_table 0 council_board 0 002 @ 04379243 n 0000 #p 03089879 n 0000 | the table that conferees sit around as they hold a meeting -03090172 06 n 01 confessional 0 001 @ 02873839 n 0000 | a booth where a priest sits to hear confessions -03090278 06 n 01 confetti 0 001 @ 14974264 n 0000 | small pieces or streamers of colored paper that are thrown around on festive occasions (as at a wedding) -03090437 06 n 02 conformal_projection 0 orthomorphic_projection 0 001 @ 03720443 n 0000 | a map projection in which a small area is rendered in its true shape -03090598 06 n 02 conge 0 congee 0 002 @ 03780392 n 0000 ;c 06123363 n 0000 | (architecture) a concave molding -03090710 06 n 03 congress_boot 0 congress_shoe 0 congress_gaiter 0 001 @ 04199027 n 0000 | an ankle high shoe with elastic gussets in the sides -03090856 06 n 02 conic_projection 0 conical_projection 0 002 @ 03720443 n 0000 ~ 03979212 n 0000 | a map projection of the globe onto a cone with its point over one of the earth's poles -03091044 06 n 01 connecting_rod 0 002 @ 04100174 n 0000 ~ 03949317 n 0000 | a rod that transmits motion (especially one that connects a rotating wheel to a reciprocating shaft) -03091223 06 n 01 connecting_room 0 001 @ 03542860 n 0000 | a hotel room that shares a wall with an adjoining room and is connected by a private door -03091374 06 n 05 connection 0 connexion 0 connector 0 connecter 0 connective 0 017 @ 03575240 n 0000 + 01354673 v 0401 + 01421122 v 0303 + 01354673 v 0301 + 01421122 v 0203 + 01421122 v 0103 ~ 02755352 n 0000 ~ 02768433 n 0000 ~ 03462747 n 0000 ~ 03522863 n 0000 ~ 03533654 n 0000 ~ 03604629 n 0000 ~ 03605915 n 0000 ~ 04241573 n 0000 ~ 04402057 n 0000 ~ 04408871 n 0000 ~ 04613158 n 0000 | an instrumentality that connects; "he soldered the connection"; "he didn't have the right connector between the amplifier and the speakers" -03091907 06 n 01 conning_tower 0 002 @ 02899257 n 0000 #p 04347754 n 0000 | a raised bridge on a submarine; often used for entering and exiting -03092053 06 n 01 conning_tower 1 002 @ 03939677 n 0000 #p 04552696 n 0000 | an armored pilothouse on a warship -03092166 06 n 03 conservatory 0 hothouse 0 indoor_garden 0 001 @ 03457902 n 0000 | a greenhouse in which plants are arranged in a pleasing manner -03092314 06 n 02 conservatory 1 conservatoire 0 003 @ 04146050 n 0000 ~ 02746978 n 0000 ~ 03801671 n 0000 | a schoolhouse with special facilities for fine arts -03092476 06 n 01 console 1 001 @ 02888569 n 0000 | an ornamental scroll-shaped bracket (especially one used to support a wall fixture); "the bust of Napoleon stood on a console" -03092656 06 n 01 console 2 002 @ 04147495 n 0000 ;c 03082979 n 0000 | a scientific instrument consisting of displays and an input device that an operator can use to monitor and control a system (especially a computer system) -03092883 06 n 02 console_table 0 console 3 001 @ 04379243 n 0000 | a small table fixed to a wall or designed to stand against a wall -03093018 06 n 02 Constitution 0 Old_Ironsides 0 001 @i 04129490 n 0000 | a United States 44-gun frigate that was one of the first three naval ships built by the United States; it won brilliant victories over British frigates during the War of 1812 and is without doubt the most famous ship in the history of the United States Navy; it has been rebuilt and is anchored in the Charlestown Navy Yard in Boston -03093427 06 n 01 consulate 0 002 @ 03203806 n 0000 + 03056304 a 0101 | diplomatic building that serves as the residence or workplace of a consul -03093574 06 n 01 consumer_goods 0 006 @ 03076708 n 0000 ;u 06295235 n 0000 ~ 03051540 n 0000 ~ 03257877 n 0000 ~ 03323593 n 0000 ~ 03461119 n 0000 | goods (as food or clothing) intended for direct use or consumption -03093792 06 n 02 contact 0 tangency 0 010 @ 03605915 n 0000 ;c 06099269 n 0000 ~ 03213826 n 0000 ~ 03269073 n 0000 ~ 03971960 n 0000 ~ 04204755 n 0000 ~ 04261369 n 0000 ~ 04413151 n 0000 ~ 04476972 n 0000 ~ 04593866 n 0000 | (electronics) a junction where things (as two electrical conductors) touch or are in physical contact; "they forget to solder the contacts" -03094159 06 n 02 contact 1 contact_lens 0 001 @ 03656484 n 0000 | a thin curved glass or plastic lens designed to fit over the cornea in order to correct vision or to deliver medication -03094347 06 n 01 contact_print 0 001 @ 04003597 n 0000 | a print made by exposing a photosensitive surface to direct contact with a photographic negative -03094503 06 n 01 container 0 055 @ 03575240 n 0000 + 02700867 v 0104 + 01482744 v 0101 + 01482744 v 0102 ~ 02773037 n 0000 ~ 02774152 n 0000 ~ 02801938 n 0000 ~ 02839910 n 0000 ~ 02881397 n 0000 ~ 02883344 n 0000 ~ 02893692 n 0000 ~ 02920658 n 0000 ~ 02946921 n 0000 ~ 02949542 n 0000 ~ 02957755 n 0000 ~ 02964843 n 0000 ~ 02974697 n 0000 ~ 02975212 n 0000 ~ 02978881 n 0000 ~ 03147509 n 0000 ~ 03156279 n 0000 ~ 03191286 n 0000 ~ 03206908 n 0000 ~ 03210683 n 0000 ~ 03233905 n 0000 ~ 03256032 n 0000 ~ 03284308 n 0000 ~ 03291819 n 0000 ~ 03438257 n 0000 ~ 03450974 n 0000 ~ 03705808 n 0000 ~ 03710528 n 0000 ~ 03717131 n 0000 ~ 03733644 n 0000 ~ 03779370 n 0000 ~ 03871083 n 0000 ~ 03880323 n 0000 ~ 03973945 n 0000 ~ 03991062 n 0000 ~ 03994614 n 0000 ~ 04060904 n 0000 ~ 04074185 n 0000 ~ 04131499 n 0000 ~ 04139859 n 0000 ~ 04158002 n 0000 ~ 04183329 n 0000 ~ 04284002 n 0000 ~ 04328703 n 0000 ~ 04423845 n 0000 ~ 04436992 n 0000 ~ 04531098 n 0000 ~ 04555700 n 0000 ~ 04560292 n 0000 ~ 04576211 n 0000 ~ 04600312 n 0000 | any object that can be used to hold things (especially a large metal boxlike object of standardized dimensions that can be loaded from one form of transport to another) -03095699 06 n 03 container_ship 0 containership 0 container_vessel 0 001 @ 02965300 n 0000 | a cargo ship designed to hold containerized cargoes; "the weight of the documentation of all the consignments on board a contemporary container ship can exceed 90 pounds" -03095965 06 n 01 containment 0 002 @ 04377057 n 0000 ;c 06090869 n 0000 | (physics) a system designed to prevent the accidental release of radioactive material from a reactor -03096142 06 n 02 contour_map 0 relief_map 0 001 @ 03720163 n 0000 | a map having contour lines through points of equal elevation -03096273 06 n 01 contraband 0 003 @ 03748886 n 0000 + 01402580 a 0104 + 10615334 n 0103 | goods whose importation or exportation or possession is prohibited by law -03096439 06 n 03 contrabassoon 0 contrafagotto 0 double_bassoon 0 001 @ 02804610 n 0000 | the bassoon that is the largest instrument in the oboe family -03096593 06 n 06 contraceptive 0 preventive 2 preventative 2 contraceptive_device 0 prophylactic_device 0 birth_control_device 0 010 @ 03183080 n 0000 + 01763813 a 0201 ~ 02998363 n 0000 ~ 03066130 n 0000 ~ 03088164 n 0000 ~ 03189461 n 0000 ~ 03582096 n 0000 ~ 03785843 n 0000 ~ 03936895 n 0000 ~ 04274396 n 0000 | an agent or device intended to prevent conception -03096960 06 n 02 control 0 controller 0 011 @ 03738472 n 0000 + 01224744 v 0102 ~ 03140652 n 0000 ~ 03187153 n 0000 ~ 03209477 n 0000 ~ 03450018 n 0000 ~ 03490449 n 0000 ~ 03602883 n 0000 ~ 04072193 n 0000 ~ 04372370 n 0000 ~ 04519153 n 0000 | a mechanism that controls the operation of a machine; "the speed controller on his turntable was not working properly"; "I turned the controls over to her" -03097362 06 n 01 control_center 0 001 @ 02993546 n 0000 | the operational center for a group of related activities; "the general in command never left the control center" -03097535 06 n 02 control_circuit 0 negative_feedback_circuit 0 001 @ 03326073 n 0000 | a feedback circuit that subtracts from the input -03097673 06 n 02 control_key 0 command_key 0 002 @ 03613592 n 0000 ;c 06128570 n 0000 | (computer science) the key on a computer keyboard that is used (in combination with some other key) to type control characters -03097890 06 n 01 controlled_substance 0 007 @ 03247620 n 0000 ~ 02949691 n 0000 ~ 03054098 n 0000 ~ 03492717 n 0000 ~ 03699396 n 0000 ~ 03754295 n 0000 ~ 03850966 n 0000 | a drug or chemical substance whose possession and use are controlled by law -03098140 06 n 05 control_panel 0 instrument_panel 0 control_board 0 board 2 panel 1 003 @ 03269401 n 0000 ~ 03163222 n 0000 %p 06874688 n 0000 | electrical device consisting of a flat insulated surface that contains switches and dials and meters for controlling other electrical devices; "he checked the instrument panel"; "suddenly the board lit up like a Christmas tree" -03098515 06 n 01 control_rod 0 002 @ 04100174 n 0000 #p 03834040 n 0000 | a steel or aluminum rod that can be moved up or down to control the rate of the nuclear reaction -03098688 06 n 01 control_room 0 001 @ 04105893 n 0000 | a room housing control equipment (as in a recording studio) -03098806 06 n 01 control_system 0 003 @ 04377057 n 0000 ~ 03049326 n 0000 ~ 04176295 n 0000 | a system for controlling the operation of another system -03098959 06 n 01 control_tower 0 002 @ 04460130 n 0000 #p 02692232 n 0000 | a tower with an elevated workspace enclosed in glass for the visual observation of aircraft around an airport -03099147 06 n 01 convector 0 001 @ 03508101 n 0000 | a space heater that transfers heat to the surrounding air by convection -03099274 06 n 01 convenience_store 0 001 @ 04202417 n 0000 | a store selling a limited variety of food and pharmaceutical items; open long hours for the convenience of customers -03099454 06 n 01 convent 0 005 @ 04073948 n 0000 + 02578894 a 0103 ~ 02667478 n 0000 %p 02991555 n 0000 ~ 03835853 n 0000 | a religious residence especially for nuns -03099622 06 n 02 conventicle 0 meetinghouse 0 001 @ 03953416 n 0000 | a building for religious assembly (especially Nonconformists, e.g., Quakers) -03099771 06 n 02 converging_lens 0 convex_lens 0 002 @ 03656484 n 0000 ~ 04355933 n 0000 | lens such that a beam of light passing through it is brought to a point or focus -03099945 06 n 02 converter 0 convertor 0 010 @ 03183080 n 0000 + 00115157 v 0201 + 00114837 v 0101 + 00381013 v 0101 ~ 02831998 n 0000 ~ 02981321 n 0000 ~ 03163798 n 0000 ~ 03269203 n 0000 ~ 03277602 n 0000 ~ 04457767 n 0000 | a device for changing one substance or form or state into another -03100240 06 n 01 convertible 0 001 @ 02958343 n 0000 | a car that has top that can be folded or removed -03100346 06 n 02 convertible 1 sofa_bed 0 003 @ 04256520 n 0000 ~ 03164605 n 0000 ~ 04344873 n 0000 | a sofa that can be converted into a bed -03100490 06 n 02 conveyance 0 transport 0 017 @ 03575240 n 0000 + 01435380 v 0203 + 01953810 v 0201 ~ 03219612 n 0000 ~ 03219732 n 0000 ~ 03538179 n 0000 ~ 03678362 n 0000 ~ 03709644 n 0000 ~ 04019101 n 0000 ~ 04103918 n 0000 ~ 04196502 n 0000 ~ 04214282 n 0000 ~ 04231693 n 0000 ~ 04406687 n 0000 ~ 04467307 n 0000 ~ 04469813 n 0000 ~ 04524313 n 0000 | something that serves as a means of transportation -03100897 06 n 05 conveyer_belt 0 conveyor_belt 0 conveyer 0 conveyor 0 transporter 1 006 @ 02827883 n 0000 #p 04008385 n 0000 ;c 03316406 n 0000 + 01449974 v 0501 + 02077656 v 0302 ~ 02966372 n 0000 | a moving belt that transports objects (as in a factory) -03101156 06 n 01 cooker 0 005 @ 03101986 n 0000 + 01664172 v 0101 + 00323377 v 0101 ~ 03133878 n 0000 ~ 03983712 n 0000 | a utensil for cooking -03101302 06 n 01 cookfire 0 001 @ 03343560 n 0000 | a fire for cooking -03101375 06 n 01 cookhouse 1 001 @ 04191595 n 0000 | a detached or outdoor shelter for cooking; "the circus used a tent as their cookhouse" -03101517 06 n 01 cookie_cutter 0 001 @ 03621049 n 0000 | a kitchen utensil used to cut a sheet of cookie dough into desired shapes before baking -03101664 06 n 02 cookie_jar 0 cooky_jar 0 001 @ 03593526 n 0000 | a jar in which cookies are kept (and sometimes money is hidden) -03101796 06 n 02 cookie_sheet 0 baking_tray 0 002 @ 03101986 n 0000 ;u 08860123 n 0204 | a cooking utensil consisting of a flat rectangular metal sheet used for baking cookies or biscuits -03101986 06 n 02 cooking_utensil 0 cookware 0 014 @ 03621049 n 0000 ~ 02805283 n 0000 ~ 02999138 n 0000 ~ 03101156 n 0000 ~ 03101796 n 0000 ~ 03284981 n 0000 ~ 03458422 n 0000 ~ 03459328 n 0000 ~ 03880531 n 0000 ~ 03972372 n 0000 ~ 03990474 n 0000 ~ 04229959 n 0000 ~ 04309548 n 0000 ~ 04500060 n 0000 | a kitchen utensil made of material that does not melt easily; used for cooking -03102371 06 n 01 cookstove 0 002 @ 04330340 n 0000 %p 04557111 n 0000 | a stove for cooking (especially a wood- or coal-burning kitchen stove) -03102516 06 n 01 coolant_system 0 001 @ 03102859 n 0000 | a cooling system that uses a fluid to transfer heat from one place to another -03102654 06 n 02 cooler 0 ice_chest 0 002 @ 04070727 n 0000 + 00370412 v 0101 | a refrigerator for cooling liquids -03102771 06 n 02 cooler 1 tank 3 001 @ 02991302 n 0000 | a cell for violent prisoners -03102859 06 n 02 cooling_system 0 cooling 0 008 @ 03738472 n 0000 + 00370412 v 0201 ~ 02686379 n 0000 ~ 03102516 n 0000 ~ 03103396 n 0000 ~ 03301833 n 0000 ~ 04070545 n 0000 %p 04561965 n 0000 | a mechanism for keeping something cool; "the cooling was overhead fans" -03103128 06 n 02 cooling_system 1 engine_cooling_system 0 008 @ 03294048 n 0000 #p 03791235 n 0000 %p 03320046 n 0000 %p 03320262 n 0000 %p 04021798 n 0000 %p 04040759 n 0000 %p 04041408 n 0000 %p 04422875 n 0000 | equipment in a motor vehicle that cools the engine -03103396 06 n 01 cooling_tower 0 001 @ 03102859 n 0000 | a cooling system used in industry to cool hot water (by partial evaporation) before reusing it as a coolant -03103563 06 n 02 coonskin_cap 0 coonskin 0 001 @ 02954340 n 0000 | a raccoon cap with the tail hanging down the back -03103682 06 n 02 Cooper_Union 0 Cooper_Union_for_the_Advancement_of_Science_and_Art 0 002 @i 04511002 n 0000 #p 09119277 n 0000 | university founded in 1859 by Peter Cooper to offer free courses in the arts and sciences -03103904 06 n 01 cope 1 001 @ 03045337 n 0000 | a long cloak; worn by a priest or bishop on ceremonial occasions -03104019 06 n 01 coping_saw 0 001 @ 03488188 n 0000 | a handsaw with a taut thin blade; used for cutting small curves in wood -03104147 06 n 01 copper_mine 0 001 @ 03768346 n 0000 | a mine where copper is dug from the ground -03104247 06 n 02 copperplate 0 copperplate_engraving 0 001 @ 03289025 n 0000 | an engraving consisting of a smooth plate of copper that has been etched or engraved -03104413 06 n 01 copperplate 1 001 @ 04003597 n 0000 | a print made from an engraved copperplate -03104512 06 n 01 copperware 0 001 @ 04516672 n 0000 | utensils made with copper -03104594 06 n 01 copy 0 018 @ 04076846 n 0000 + 01693881 v 0101 + 01742886 v 0102 ~ 02708885 n 0000 ~ 02961851 n 0000 ~ 02979662 n 0000 ~ 03257343 n 0000 ~ 03316274 n 0000 ~ 03562126 n 0000 ~ 03626925 n 0000 ~ 03769235 n 0000 ~ 03778302 n 0000 ~ 03924811 n 0000 ~ 04003982 n 0000 ~ 04031166 n 0000 ~ 04076533 n 0000 ~ 04484780 n 0000 ~ 04609235 n 0000 | a thing made to be similar or identical to another thing; "she made a copy of the designer dress"; "the clone was a copy of its ancestor" -03105088 06 n 01 copyholder 0 001 @ 03736970 n 0000 | mechanical device used in printing; holds the copy for the compositor -03105214 06 n 01 coquille 0 001 @ 03206908 n 0000 | a dish in the form of a scallop shell -03105306 06 n 01 coracle 0 001 @ 04244997 n 0000 | a small rounded boat made of hides stretched over a wicker frame; still used in some parts of Great Britain -03105467 06 n 02 corbel 0 truss 2 003 @ 02888569 n 0000 ;c 06123363 n 0000 + 02352824 v 0101 | (architecture) a triangular bracket of brick or stone (usually of slight extent) -03105645 06 n 01 corbel_arch 0 002 @ 02733524 n 0000 ;c 06123363 n 0000 | (architecture) an arch constructed of masonry courses that are corbelled until they meet -03105810 06 n 04 corbel_step 0 corbie-step 0 corbiestep 0 crow_step 0 002 @ 04314914 n 0000 ;c 06123363 n 0000 | (architecture) a step on the top of a gable wall -03105974 06 n 01 corbie_gable 0 002 @ 03409393 n 0000 ;c 06123363 n 0000 | (architecture) a gable having corbie-steps or corbel steps -03106110 06 n 01 cord 0 028 @ 03670849 n 0000 + 01286674 v 0101 ~ 02684083 n 0000 ~ 02731251 n 0000 ~ 02883101 n 0000 ~ 02983741 n 0000 ~ 03013992 n 0000 ~ 03042384 n 0000 ~ 03051152 n 0000 ~ 03351768 n 0000 ~ 03631445 n 0000 ~ 03641451 n 0000 ~ 03641569 n 0000 ~ 03687448 n 0000 ~ 03947681 n 0000 ~ 03969627 n 0000 ~ 04093915 n 0000 ~ 04094060 n 0000 ~ 04136676 n 0000 ~ 04233556 n 0000 ~ 04305641 n 0000 ~ 04337974 n 0000 ~ 04338143 n 0000 ~ 04426788 n 0000 ~ 04433185 n 0000 ~ 04578220 n 0000 ~ 04581829 n 0000 ~ 04582044 n 0000 | a line made of twisted fibers or threads; "the bundle was tied with a cord" -03106722 06 n 02 cord 1 corduroy 0 004 @ 03309808 n 0000 ~ 02820556 n 0000 ~ 03809603 n 0000 ~ 04583888 n 0000 | a cut pile fabric with vertical ribs; usually made of cotton -03106898 06 n 02 cord 2 electric_cord 0 003 @ 03088707 n 0000 ~ 03307037 n 0000 ~ 03995265 n 0000 | a light insulated conductor for household use -03107046 06 n 01 cordage 0 002 @ 04108268 n 0000 ~ 04172512 n 0000 | the ropes in the rigging of a ship -03107152 06 n 01 cordite 0 004 @ 03305135 n 0000 %s 14794993 n 0000 %s 14886579 n 0000 %s 14980910 n 0000 | explosive powder (nitroglycerin and guncotton and petrolatum) dissolved in acetone and dried and extruded in brown cords -03107383 06 n 01 cordon 0 001 @ 02681518 n 0000 | adornment consisting of an ornamental ribbon or cord -03107488 06 n 02 cords 4 corduroys 4 002 @ 04489008 n 0000 ;u 06295235 n 0000 | cotton trousers made of corduroy cloth -03107609 06 n 01 corduroy 1 002 @ 04096066 n 0000 + 01750895 v 0101 | a road made of logs laid crosswise -03107716 06 n 01 core 0 002 @ 02788689 n 0000 #p 03705379 n 0000 | a bar of magnetic material (as soft iron) that passes through a coil and serves to increase the inductance of the coil -03107904 06 n 01 core 1 002 @ 03003730 n 0000 #p 03834040 n 0000 | the chamber of a nuclear reactor containing the fissile material where the reaction takes place -03108069 06 n 02 core 2 magnetic_core 0 004 @ 13900088 n 0000 #p 03706415 n 0000 #p 04052757 n 0000 ;c 06128570 n 0000 | (computer science) a tiny ferrite toroid formerly used in a random access memory to store one bit of data; now superseded by semiconductor memories; "each core has three wires passing through it, providing the means to select and detect the contents of each bit" -03108455 06 n 01 core_bit 0 002 @ 03240327 n 0000 #p 03108624 n 0000 | a hollow drilling bit that is the cutting part of a core drill; allows core samples to be taken -03108624 06 n 01 core_drill 0 002 @ 03239726 n 0000 %p 03108455 n 0000 | a drill that removes a cylindrical core from the drill hole -03108759 06 n 01 corer 0 001 @ 03183080 n 0000 | a device for removing the core from apples -03108853 06 n 02 cork 0 bottle_cork 0 004 @ 03967942 n 0000 #p 04591713 n 0000 + 01126683 a 0102 + 01423623 v 0101 | the plug in the mouth of a bottle (especially a wine bottle) -03109033 06 n 01 corker 0 002 @ 03699975 n 0000 + 01423623 v 0101 | a machine that is used to put corks in bottles -03109150 06 n 02 corkscrew 0 bottle_screw 0 001 @ 02877962 n 0000 | a bottle opener that pulls corks -03109253 06 n 01 corncrib 0 001 @ 03131669 n 0000 | a crib for storing and drying ears of corn -03109350 06 n 01 Cornell_University 0 003 @i 04511002 n 0000 #p 09117351 n 0000 #m 08232706 n 0000 | a university in Ithaca, New York -03109486 06 n 03 corner 0 street_corner 0 turning_point 0 003 @ 03581125 n 0000 + 01909275 v 0101 ~ 02851675 n 0000 | the intersection of two streets; "standing on the corner watching all the girls go by" -03109693 06 n 02 corner 1 quoin 0 003 @ 04341686 n 0000 #p 02913152 n 0000 ;c 06123363 n 0000 | (architecture) solid exterior angle of a building; especially one formed by a cornerstone -03109881 06 n 02 corner 2 nook 0 005 @ 02735688 n 0000 #p 02913152 n 0000 + 01934205 v 0101 ~ 02701260 n 0000 ~ 03017835 n 0000 | an interior angle formed by two meeting walls; "a piano was in one corner of the room" -03110100 06 n 01 corner_pocket 0 001 @ 03972799 n 0000 | a pocket at the corner of a billiard table -03110202 06 n 01 corner_post 0 001 @ 03988170 n 0000 | a square post supporting a structural member at the corner of a building -03110332 06 n 01 cornerstone 0 002 @ 04326084 n 0000 #p 02913152 n 0000 | a stone at the outer corner of two intersecting masonry walls -03110470 06 n 01 cornerstone 1 002 @ 04326084 n 0000 #p 02913152 n 0000 | a stone in the exterior of a large and important building; usually carved with a date and laid with appropriate ceremonies -03110669 06 n 04 cornet 0 horn 1 trumpet 0 trump 1 005 @ 02891788 n 0000 + 02179154 v 0401 + 01733829 v 0301 + 10732010 n 0102 ~ 04174500 n 0000 | a brass musical instrument with a brilliant tone; has a narrow tube and a flared bell and is played by means of valves -03110937 06 n 01 corn_exchange 0 001 @ 03302487 n 0000 | an exchange where grains are bought and sold -03111041 06 n 01 cornice 0 003 @ 04008947 n 0000 #p 03290195 n 0000 + 02352946 v 0101 | the topmost projecting part of an entablature -03111177 06 n 01 cornice 1 001 @ 03780392 n 0000 | a molding at the corner between the ceiling and the top of a wall -03111296 06 n 04 cornice 2 valance 0 valance_board 0 pelmet 0 002 @ 03391770 n 0000 + 02352946 v 0101 | a decorative framework to conceal curtain fixtures at the top of a window casing -03111483 06 n 01 corona 0 001 @ 03030035 n 0000 | a long cigar with blunt ends -03111564 06 n 01 coronet 0 001 @ 03138669 n 0000 | a small crown; usually indicates a high rank but below that of sovereign -03111690 06 n 01 correctional_institution 0 006 @ 03907654 n 0000 ~ 03181667 n 0000 ~ 03592245 n 0000 ~ 03911513 n 0000 ~ 04005630 n 0000 ~ 04069777 n 0000 | a penal institution maintained by the government -03111899 06 n 02 corrective 0 restorative 0 006 @ 03183080 n 0000 + 01167540 a 0202 ~ 03870822 n 0000 ~ 03870980 n 0000 ~ 03930777 n 0000 ~ 04013729 n 0000 | a device for treating injury or disease -03112099 06 n 01 corridor 0 003 @ 03895585 n 0000 ~ 03411762 n 0000 ~ 03479952 n 0000 | an enclosed passageway; rooms usually open onto it -03112240 06 n 02 corrugated_fastener 0 wiggle_nail 0 001 @ 03323703 n 0000 | a small strip of corrugated steel with sharp points on one side; hammered across wood joints in rough carpentry -03112431 06 n 01 corrugated_iron 0 002 @ 04189482 n 0000 %s 14877100 n 0000 | usually galvanized sheet iron or sheet steel shaped into straight parallel ridges and hollows -03112605 06 n 01 corsair 0 001 @ 03947888 n 0000 | a swift pirate ship (often operating with official sanction) -03112719 06 n 02 corselet 0 corslet 0 001 @ 02862048 n 0000 | a piece of body armor for the trunk; usually consists of a breastplate and back piece -03112869 06 n 03 corset 0 girdle 0 stays 0 004 @ 03387323 n 0000 + 01467917 v 0201 + 00049669 v 0101 ~ 03885788 n 0000 | a woman's close-fitting foundation garment -03113035 06 n 01 corvette 0 001 @ 04552696 n 0000 | a highly maneuverable escort warship; smaller than a destroyer -03113152 06 n 01 cosmetic 0 006 @ 04447443 n 0000 ~ 03177165 n 0000 ~ 03519081 n 0000 ~ 03714235 n 0000 ~ 03805725 n 0000 ~ 03908456 n 0000 | a toiletry designed to beautify the body -03113337 06 n 01 cosmography 0 003 @ 04076846 n 0000 + 09819477 n 0102 + 09819477 n 0101 | a representation of the earth or the heavens; "the cosmography of Ptolemy" -03113505 06 n 01 cosmotron 0 001 @ 04375775 n 0000 | a large proton synchrotron; uses frequency modulation of an electric field to accelerate protons -03113657 06 n 01 costume 0 003 @ 02756098 n 0000 ~ 03320519 n 0000 %p 04550546 n 0000 | the attire worn in a play or at a fancy dress ball; "he won the prize for best costume" -03113835 06 n 01 costume 1 004 @ 02756098 n 0000 + 00051761 v 0101 ~ 02669534 n 0000 ~ 04092168 n 0000 | the attire characteristic of a country or a time or a social class; "he wore his national costume" -03114041 06 n 01 costume 2 001 @ 02756098 n 0000 | unusual or period attire not characteristic of or appropriate to the time and place; "in spite of the heat he insisted on his woolen costume" -03114236 06 n 01 costume 3 001 @ 02756098 n 0000 | the prevalent fashion of dress (including accessories and hair style as well as garments) -03114379 06 n 04 cosy 0 tea_cosy 0 cozy 0 tea_cozy 0 001 @ 03050026 n 0000 | a padded cloth covering to keep a teapot warm -03114504 06 n 02 cot 0 camp_bed 0 002 @ 02818832 n 0000 %p 03654826 n 0000 | a small bed that folds up for storage or transport -03114634 06 n 01 cote 0 001 @ 04191943 n 0000 | a small shelter for domestic animals (as sheep or pigeons) -03114743 06 n 01 cottage_tent 0 001 @ 04411264 n 0000 | a tent providing shelter for a family -03114839 06 n 02 cotter 0 cottar 0 002 @ 03323703 n 0000 ~ 03115014 n 0000 | fastener consisting of a wedge or pin inserted through a slot to hold two other pieces together -03115014 06 n 01 cotter_pin 0 001 @ 03114839 n 0000 | a cotter consisting of a split pin that is secured (after passing through a hole) by splitting the ends apart -03115180 06 n 01 cotton 0 003 @ 03309808 n 0000 ~ 03430091 n 0000 %s 14870078 n 0000 | fabric woven from cotton fibers -03115301 06 n 01 cotton 1 002 @ 04426788 n 0000 ~ 03677540 n 0000 | thread made of cotton fibers -03115400 06 n 02 cotton_flannel 0 Canton_flannel 0 001 @ 03309808 n 0000 | a stout cotton fabric with nap on only one side -03115525 06 n 02 cotton_gin 0 gin 0 002 @ 03699975 n 0000 + 01557517 v 0201 | a machine that separates the seeds from raw cotton fibers -03115663 06 n 01 cotton_mill 0 001 @ 04417361 n 0000 | a textile mill for making cotton textiles -03115762 06 n 01 couch 1 001 @ 02818832 n 0000 | a narrow bed on which a patient lies during psychiatric or psychoanalytic treatment -03115897 06 n 01 couch 2 001 @ 03360845 n 0000 | a flat coat of paint or varnish used by artists as a primer -03116008 06 n 01 couchette 0 002 @ 03079741 n 0000 #p 03896233 n 0000 | a compartment on a European passenger train; contains 4 to 6 berths for sleeping -03116163 06 n 02 coude_telescope 0 coude_system 0 001 @ 04068601 n 0000 | a reflecting telescope so constructed that the light is led to a plate holder or spectrograph -03116333 06 n 01 coulisse 0 001 @ 04436185 n 0000 | a timber member grooved to take a sliding panel -03116435 06 n 02 coulisse 1 wing_flat 0 001 @ 03359755 n 0000 | a flat situated in the wings -03116530 06 n 01 counter 0 007 @ 04379243 n 0000 ~ 02789487 n 0000 ~ 03011741 n 0000 %p 03118245 n 0000 ~ 03735963 n 0000 ~ 03832973 n 0000 ~ 04061681 n 0000 | table consisting of a horizontal surface over which business is transacted -03116767 06 n 02 counter 1 tabulator 0 003 @ 02938886 n 0000 + 00948071 v 0101 ~ 04021362 n 0000 | a calculator that keeps a record of the number of times something happens -03116942 06 n 02 counter 2 heel_counter 0 003 @ 03933183 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 | a piece of leather forming the back of a shoe or boot; "a counter may be used to stiffen the material around the heel and to give support to the foot" -03117199 06 n 01 counter 3 003 @ 03414162 n 0000 + 00948071 v 0101 ~ 03020416 n 0000 | game equipment (as a piece of wood, plastic, or ivory) used for keeping a count or reserving a space in various card or board games -03117420 06 n 01 counter 6 003 @ 04071876 n 0000 ;c 06128570 n 0000 + 00948071 v 0101 | (computer science) a register whose contents go through a regular series of states (usually states indicating consecutive integers) -03117642 06 n 03 counterbore 0 countersink 0 countersink_bit 0 001 @ 02844307 n 0000 | a bit for enlarging the upper part of a hole -03117776 06 n 01 counterirritant 0 001 @ 03740161 n 0000 | a medicine applied locally to produce superficial inflammation in order to reduce deeper inflammation -03117939 06 n 03 counterpart 0 similitude 0 twin 0 002 @ 03257343 n 0000 + 02659358 v 0301 | a duplicate copy -03118051 06 n 01 countersink 1 002 @ 03526198 n 0000 + 01530273 v 0102 | a hole (usually in wood) with the top part enlarged so that a screw or bolt will fit into it and lie below the surface -03118245 06 n 01 countertop 0 002 @ 04381860 n 0000 #p 03116530 n 0000 | the top side of a counter -03118346 06 n 01 counter_tube 0 005 @ 03733925 n 0000 ~ 03143255 n 0000 ~ 03432360 n 0000 ~ 04012665 n 0000 ~ 04147916 n 0000 | a measuring instrument for counting individual ionizing events -03118539 06 n 06 counterweight 0 counterbalance 0 counterpoise 0 balance 1 equalizer 0 equaliser 0 009 @ 04571088 n 0000 + 00417001 v 0604 + 00417001 v 0503 + 02666691 v 0302 + 02666531 v 0202 + 02672540 v 0202 + 02666691 v 0101 ~ 04136997 n 0000 ~ 04394031 n 0000 | a weight that balances another weight -03118846 06 n 01 countinghouse 0 002 @ 03841666 n 0000 ;r 08860123 n 0000 | office used by the accountants of a business -03118969 06 n 01 country_house 0 007 @ 03544360 n 0000 ~ 03010915 n 0000 ~ 03158186 n 0000 ~ 04202142 n 0000 ~ 04354026 n 0000 ~ 04535252 n 0000 ~ 04535370 n 0000 | a house (usually large and impressive) on an estate in the country -03119203 06 n 03 country_store 0 general_store 0 trading_post 0 001 @ 03748162 n 0000 | a retail store serving a sparsely populated region; usually stocked with a wide variety of merchandise -03119396 06 n 01 coupe 0 001 @ 02958343 n 0000 | a car with two doors and front seats and a luggage compartment -03119510 06 n 02 coupling 0 coupler 0 009 @ 03736970 n 0000 + 01297624 v 0201 + 01297624 v 0101 ~ 03042139 n 0000 ~ 03054901 n 0000 ~ 03369407 n 0000 ~ 04373563 n 0000 ~ 04499810 n 0000 ~ 04510706 n 0000 | a mechanical device that serves to connect the ends of adjacent objects -03119790 06 n 01 course 0 003 @ 03315023 n 0000 ~ 03446528 n 0000 ~ 04037625 n 0000 | facility consisting of a circumscribed area of land or water laid out for a sport; "the course had only nine holes"; "the course was less than a mile" -03120029 06 n 02 course 1 row 0 004 @ 03650173 n 0000 #p 04546855 n 0000 ~ 03161228 n 0000 ~ 04115670 n 0000 | (construction) a layer of masonry; "a course of bricks" -03120198 06 n 02 court 0 courtyard 0 008 @ 02735688 n 0000 #p 02913152 n 0000 ~ 02754656 n 0000 ~ 02775813 n 0000 ~ 03047941 n 0000 ~ 03378005 n 0000 ~ 03382292 n 0000 ~ 03895170 n 0000 | an area wholly or partly surrounded by walls or buildings; "the house was built around an inner court" -03120491 06 n 01 court 1 008 @ 08570758 n 0000 ~ 02772435 n 0000 ~ 02802544 n 0000 ~ 03482988 n 0000 ~ 03948347 n 0000 ~ 04292313 n 0000 ~ 04409712 n 0000 ~ 04540153 n 0000 | a specially marked horizontal area within which a game is played; "players had to reserve a court in advance" -03120778 06 n 02 court 2 courtroom 0 007 @ 04105893 n 0000 #p 03121298 n 0000 ;c 08441203 n 0000 %p 02789770 n 0000 %p 02829116 n 0000 %p 03606347 n 0000 %p 04596492 n 0000 | a room in which a lawcourt sits; "television cameras were admitted in the courtroom" -03121040 06 n 01 court 4 002 @ 04079244 n 0000 + 00751838 a 0101 | the residence of a sovereign or nobleman; "the king will visit the duke's court" -03121190 06 n 01 Courtelle 0 002 @ 02677028 n 0000 ;u 06851742 n 0000 | an acrylic fabric resembling wool -03121298 06 n 01 courthouse 0 003 @ 03545150 n 0000 ;c 08441203 n 0000 %p 03120778 n 0000 | a building that houses judicial courts -03121431 06 n 01 courthouse 1 001 @ 03449564 n 0000 | a government building that houses the offices of a county government -03121556 06 n 01 court_plaster 0 001 @ 03957420 n 0000 | a plaster composed of isinglass on silk; formerly used to dress superficial wounds -03121698 06 n 03 cover 0 cover_version 0 cover_song 0 001 @ 04063868 n 0000 | a recording of a song that was first recorded or made popular by somebody else; "they made a cover of a Beatles' song" -03121897 06 n 01 coverall 2 004 @ 04015204 n 0000 ~ 03258730 n 0000 ~ 03604763 n 0000 ~ 03863262 n 0000 | a loose-fitting protective garment that is worn over other clothing -03122073 06 n 01 covered_bridge 0 001 @ 02898711 n 0000 | a bridge whose passageway is protected by a roof and enclosing sides -03122202 06 n 01 covered_couch 0 001 @ 03678362 n 0000 | a litter with a cover for privacy -03122295 06 n 05 covered_wagon 0 Conestoga_wagon 0 Conestoga 0 prairie_wagon 0 prairie_schooner 0 002 @ 04543158 n 0000 #m 08427629 n 0000 | a large wagon with broad wheels and an arched canvas top; used by the United States pioneers to cross the prairies in the 19th century -03122573 06 n 02 cover_glass 0 cover_slip 0 002 @ 03961070 n 0000 #p 04237924 n 0000 | a small and very thin piece of glass used to cover the specimen on a microscope slide -03122748 06 n 01 covering 0 038 @ 00021939 n 0000 + 01332730 v 0101 ~ 02746225 n 0000 ~ 02874642 n 0000 ~ 02909053 n 0000 ~ 02952237 n 0000 ~ 02977822 n 0000 ~ 02999272 n 0000 ~ 03045698 n 0000 ~ 03050026 n 0000 ~ 03051540 n 0000 ~ 03058107 n 0000 ~ 03123666 n 0000 ~ 03232923 n 0000 ~ 03261603 n 0000 ~ 03335461 n 0000 ~ 03341153 n 0000 ~ 03357376 n 0000 ~ 03366823 n 0000 ~ 03376279 n 0000 ~ 03380867 n 0000 ~ 03531546 n 0000 ~ 03531691 n 0000 ~ 03561657 n 0000 ~ 03574243 n 0000 ~ 03724870 n 0000 ~ 03730893 n 0000 ~ 03750437 n 0000 ~ 03873996 n 0000 ~ 03956623 n 0000 ~ 04014297 n 0000 ~ 04151940 n 0000 ~ 04369146 n 0000 ~ 04430896 n 0000 ~ 04444218 n 0000 ~ 04453910 n 0000 ~ 04513827 n 0000 ~ 04605726 n 0000 | an artifact that covers something else (usually to protect or shelter or conceal it) -03123553 06 n 01 coverlet 0 002 @ 02822220 n 0000 + 02849154 n 0102 | a decorative bedspread (usually quilted) -03123666 06 n 01 cover_plate 0 001 @ 03122748 n 0000 | covering consisting of a plate used to cover over or close in a chamber or receptacle -03123809 06 n 05 cowbarn 0 cowshed 0 cow_barn 0 cowhouse 0 byre 0 001 @ 02793495 n 0000 | a barn for cows -03123917 06 n 01 cowbell 0 001 @ 02824448 n 0000 | a bell hung around the neck of cow so that the cow can be easily located -03124043 06 n 01 cowboy_boot 0 001 @ 02872752 n 0000 | a boot with a high arch and fancy stitching; worn by American cowboys -03124170 06 n 02 cowboy_hat 0 ten-gallon_hat 0 001 @ 03497657 n 0000 | a hat with a wide brim and a soft crown; worn by American ranch hands -03124313 06 n 01 cowhide 0 003 @ 04577769 n 0000 + 01411768 v 0101 %s 14762248 n 0000 | a heavy flexible whip braided from leather made from the hide of a cow -03124474 06 n 01 cowl 1 002 @ 03531281 n 0000 + 01337224 v 0101 | a loose hood or hooded robe (as worn by a monk) -03124590 06 n 03 cow_pen 0 cattle_pen 0 corral 0 002 @ 03907227 n 0000 + 01600478 v 0301 | a pen for cattle -03124700 06 n 01 Cox-2_inhibitor 0 004 @ 02721538 n 0000 ~ 02990561 n 0000 ~ 04100994 n 0000 ~ 04518468 n 0000 | an anti-inflammatory drug that fights pain and blocks Cox-2 activity without impeding the activity of Cox-1; increases the risk of heart attacks; "Cox-2 inhibitors reduce the symptoms of arthritis without endangering the stomach and kidneys" -03125057 06 n 02 CPU_board 0 mother_board 0 002 @ 03033986 n 0000 #p 02995345 n 0000 | the main circuit board for a computer -03125184 06 n 03 crack 1 crack_cocaine 0 tornado 0 001 @ 03060294 n 0000 | a purified and potent form of cocaine that is smoked rather than snorted; highly addictive -03125352 06 n 03 cracker 0 snapper 0 cracker_bonbon 0 003 @ 03894762 n 0000 + 01242208 v 0201 + 02182851 v 0102 | a party favor consisting of a paper roll (usually containing candy or a small favor) that pops when pulled at both ends -03125588 06 n 03 crackle 0 crackleware 0 crackle_china 0 001 @ 03018209 n 0000 | glazed china with a network of fine cracks on the surface -03125729 06 n 01 cradle 0 004 @ 02766320 n 0000 + 01222177 v 0101 + 01876735 v 0101 %p 04098513 n 0000 | a baby bed with sides and rockers -03125870 06 n 01 craft 0 006 @ 04524313 n 0000 ~ 02686568 n 0000 ~ 03547229 n 0000 ~ 03638623 n 0000 ~ 04264914 n 0000 ~ 04530566 n 0000 | a vehicle designed for navigation in or on water or air or through outer space -03126090 06 n 02 cramp 0 cramp_iron 0 002 @ 04339291 n 0000 + 01304466 v 0101 | a strip of metal with ends bent at right angles; used to hold masonry together -03126251 06 n 01 cramp 1 002 @ 03036866 n 0000 + 01304466 v 0101 | a clamp for holding pieces of wood together while they are glued -03126385 06 n 04 crampon 0 crampoon 0 climbing_iron 0 climber 0 002 @ 04275661 n 0000 + 01921964 v 0401 | an iron spike attached to the shoe to prevent slipping on ice when walking or climbing -03126580 06 n 02 crampon 1 crampoon 1 001 @ 03454211 n 0000 | a hinged pair of curved iron bars; used to raise heavy objects -03126707 06 n 01 crane 0 004 @ 03664675 n 0000 ~ 03164929 n 0000 ~ 03178430 n 0000 ~ 04473884 n 0000 | lifts and moves heavy objects; lifting tackle is suspended from a pivoted boom that rotates around a vertical axis -03126927 06 n 01 craniometer 0 001 @ 03733925 n 0000 | an instrument for measuring skull sizes -03127024 06 n 02 crank 0 starter 1 004 @ 03489162 n 0000 + 01280958 v 0101 + 01595149 v 0101 ~ 03127302 n 0000 | a hand tool consisting of a rotating shaft with parallel handle -03127203 06 n 01 crankcase 0 002 @ 03546766 n 0000 #p 04062179 n 0000 | housing for a crankshaft -03127302 06 n 02 crank_handle 0 starting_handle 0 001 @ 03127024 n 0000 | crank used to start an engine -03127408 06 n 01 crankshaft 0 002 @ 04111190 n 0000 #p 04062179 n 0000 | a rotating shaft driven by (or driving) a crank -03127531 06 n 01 crash_barrier 0 001 @ 02796623 n 0000 | a strong protective barrier that is erected around a racetrack or in the middle of a dual-lane highway in order to reduce the likelihood of severe accidents -03127747 06 n 01 crash_helmet 0 002 @ 03513137 n 0000 ~ 04229107 n 0000 | a padded helmet worn by people riding bicycles or motorcycles; protects the head in case of accidents -03127925 06 n 01 crate 0 004 @ 02883344 n 0000 + 01486678 v 0101 ~ 03871724 n 0000 ~ 04253931 n 0000 | a rugged box (usually made of wood); used for shipping -03128085 06 n 01 cravat 1 003 @ 03816005 n 0000 ~ 02747063 n 0000 ~ 03814727 n 0000 | neckwear worn in a slipknot with long ends overlapping vertically in front -03128248 06 n 02 crayon 0 wax_crayon 0 002 @ 04608567 n 0000 + 01692709 v 0101 | writing implement consisting of a colored stick of composition wax used for writing and drawing -03128427 06 n 01 crazy_quilt 0 001 @ 03898633 n 0000 | a patchwork quilt without a design -03128519 06 n 03 cream 0 ointment 1 emollient 0 008 @ 04447443 n 0000 + 01153844 a 0302 + 01364483 v 0101 ~ 03067339 n 0000 ~ 03484487 n 0000 ~ 03640850 n 0000 ~ 03809211 n 0000 ~ 04357314 n 0000 | toiletry consisting of any of various substances in the form of a thick liquid that have a soothing and moisturizing effect when applied to the skin -03128868 06 n 01 creamery 0 001 @ 04602044 n 0000 | a workplace where dairy products (butter and cheese etc.) are produced or sold -03129001 06 n 02 cream_pitcher 0 creamer 0 002 @ 03950228 n 0000 #m 04398309 n 0000 | a small pitcher for serving cream -03129123 06 n 01 creation 0 014 @ 00021939 n 0000 + 01621555 v 0103 + 01753788 v 0101 ~ 02743547 n 0000 ~ 03038595 n 0000 ~ 03081660 n 0000 ~ 03565402 n 0000 ~ 03582658 n 0000 ~ 03727274 n 0000 ~ 03816849 n 0000 ~ 04007894 n 0000 ~ 04074329 n 0000 ~ 04076846 n 0000 ~ 06269396 n 0000 | an artifact that has been brought into existence by someone -03129471 06 n 02 creche 0 foundling_hospital 0 001 @ 03540595 n 0000 | a hospital where foundlings (infant children of unknown parents) are taken in and cared for -03129636 06 n 01 creche 1 001 @ 04076846 n 0000 | a representation of Christ's nativity in the stable at Bethlehem -03129753 06 n 02 credenza 0 credence 0 001 @ 02912065 n 0000 | a kind of sideboard or buffet -03129848 06 n 01 creel 0 001 @ 02801938 n 0000 | a wicker basket used by anglers to hold fish -03129944 06 n 01 creep 0 001 @ 03907227 n 0000 | a pen that is fenced so that young animals can enter but adults cannot -03130066 06 n 03 crematory 0 crematorium 0 cremation_chamber 0 002 @ 03404449 n 0000 ~ 03425325 n 0000 | a furnace where a corpse can be burned and reduced to ashes -03130233 06 n 02 crematory 1 crematorium 1 001 @ 03785499 n 0000 | a mortuary where corpses are cremated -03130340 06 n 02 crenel 0 crenelle 0 006 @ 13910384 n 0000 #p 02811936 n 0000 + 02335629 v 0203 + 02335629 v 0202 + 02335629 v 0103 + 02335629 v 0102 | a notch or open space between two merlons in a crenelated battlement -03130563 06 n 02 crepe 0 crape 0 006 @ 03309808 n 0000 + 01599805 v 0201 + 01599805 v 0102 ~ 02953552 n 0000 ~ 03130761 n 0000 ~ 03722944 n 0000 | a soft thin light fabric with a crinkled surface -03130761 06 n 01 crepe_de_Chine 0 001 @ 03130563 n 0000 | a very thin crepe of silk or silklike fabric -03130866 06 n 01 crescent_wrench 0 001 @ 02680754 n 0000 | an adjustable wrench designed to fit hexagonal nuts with the adjusting screw built into the head of the wrench -03131038 06 n 01 crest 0 003 @ 03282591 n 0000 #p 03058726 n 0000 ;c 05801594 n 0000 | (heraldry) in medieval times, an emblem used to decorate a helmet -03131193 06 n 01 cretonne 0 001 @ 03309808 n 0000 | an unglazed heavy fabric; brightly printed; used for slipcovers and draperies -03131325 06 n 01 crewelwork 0 001 @ 03282933 n 0000 | embroidery done with loosely twisted worsted yarn -03131431 06 n 02 crew_neck 0 crew_neckline 0 001 @ 03815278 n 0000 | a plain straight neckline opening from shoulder to shoulder of sweaters -03131574 06 n 02 crib 0 cot 1 001 @ 02766320 n 0000 | baby bed with high sides made of slats -03131669 06 n 01 crib 1 003 @ 02839910 n 0000 @ 03452449 n 0000 ~ 03109253 n 0000 | a bin or granary for storing grains -03131791 06 n 01 cribbage_board 0 001 @ 02857023 n 0000 | a board with pegs and regularly spaced holes for holding the pegs; used for keeping the score in a game of cribbage -03131967 06 n 01 cricket_ball 0 002 @ 02778669 n 0000 @ 03132261 n 0000 | the ball used in playing cricket -03132076 06 n 02 cricket_bat 0 bat 2 002 @ 03132261 n 0000 %p 03485997 n 0000 | the club used in playing cricket; "a cricket bat has a narrow handle and a broad flat end for hitting" -03132261 06 n 01 cricket_equipment 0 005 @ 04285146 n 0000 ;c 00476389 n 0000 ~ 03131967 n 0000 ~ 03132076 n 0000 ~ 04582869 n 0000 | sports equipment used in playing cricket -03132438 06 n 05 cringle 0 eyelet 1 loop 1 grommet 0 grummet 0 003 @ 03323703 n 0000 + 01286290 v 0301 + 03308297 n 0201 | fastener consisting of a metal ring for lining a small hole to permit the attachment of cords or lines -03132666 06 n 01 crinoline 0 001 @ 03309808 n 0000 | a stiff coarse fabric used to stiffen hats or clothing -03132776 06 n 01 crinoline 1 001 @ 03920737 n 0000 | a full stiff petticoat made of crinoline fabric -03132879 06 n 02 crochet 0 crocheting 0 003 @ 03816849 n 0000 + 01672490 v 0201 + 01672753 v 0101 | needlework done by interlocking looped stitches with a hooked needle -03133050 06 n 02 crochet_needle 0 crochet_hook 0 001 @ 03816136 n 0000 | a needle with a hook on the end; used in crocheting -03133177 06 n 01 crochet_stitch 0 005 @ 04321238 n 0000 ~ 03000966 n 0000 ~ 03226743 n 0000 ~ 04191502 n 0000 ~ 04222594 n 0000 | any one of a number of stitches made by pulling a loop of yarn through another loop with a crochet needle -03133415 06 n 02 crock 0 earthenware_jar 0 002 @ 03593526 n 0000 + 01535002 v 0101 | an earthen jar (made of baked clay) -03133538 06 n 02 crockery 0 dishware 0 006 @ 04381994 n 0000 ~ 03018493 n 0000 ~ 03147509 n 0000 ~ 03206908 n 0000 ~ 03266498 n 0000 ~ 03862984 n 0000 | tableware (eating and serving dishes) collectively -03133744 06 n 01 crocket 0 001 @ 02734423 n 0000 | an architectural ornament of curved foliage used at the edge of a spire or gable -03133878 06 n 01 Crock_Pot 0 002 @ 03101156 n 0000 ;u 06851742 n 0000 | an electric cooker that maintains a relatively low temperature -03134015 06 n 01 croft 0 002 @ 03322099 n 0000 ;r 08860123 n 0000 | a small farm worked by a crofter -03134118 06 n 02 crook 0 shepherd's_crook 0 001 @ 04296261 n 0000 | a long staff with one end being hook shaped -03134232 06 n 01 Crookes_radiometer 0 001 @ 04042985 n 0000 | electromagnetic radiometer consisting of a small paddlewheel that rotates when placed in daylight -03134394 06 n 01 Crookes_tube 0 001 @ 02985137 n 0000 | the original gas-discharge cathode-ray tube -03134496 06 n 01 crop 0 002 @ 03485997 n 0000 #p 04577769 n 0000 | the stock or handle of a whip -03134595 06 n 01 crop 1 001 @ 03287178 n 0000 | the output of something in a season; "the latest crop of fashions is about to hit the stores" -03134739 06 n 01 croquet_ball 0 002 @ 02778669 n 0000 @ 03134853 n 0000 | a wooden ball used in playing croquet -03134853 06 n 01 croquet_equipment 0 005 @ 04285146 n 0000 ;c 00466880 n 0000 ~ 03134739 n 0000 ~ 03135030 n 0000 ~ 04582771 n 0000 | sports equipment used in playing croquet -03135030 06 n 01 croquet_mallet 0 002 @ 03715892 n 0000 @ 03134853 n 0000 | a mallet used to strike the ball in croquet -03135152 06 n 01 Cross 0 013 @ 03282591 n 0000 ~ 02941605 n 0000 ~ 02993081 n 0000 ~ 03140292 n 0000 ~ 03457578 n 0000 ~ 03595737 n 0000 ~ 03646695 n 0000 ~ 03690279 n 0000 ~ 03716091 n 0000 ~ 03886151 n 0000 ~ 03900104 n 0000 ~ 04302598 n 0000 ~ 04395760 n 0000 | a representation of the structure on which Jesus was crucified; used as an emblem of Christianity or in heraldry -03135532 06 n 01 cross 1 001 @ 04341686 n 0000 | a wooden structure consisting of an upright post with a transverse piece -03135656 06 n 01 crossbar 0 002 @ 03137579 n 0000 #p 03443149 n 0000 | long thin horizontal crosspiece between two vertical posts -03135788 06 n 01 crossbar 1 001 @ 03414162 n 0000 | game equipment consisting of a horizontal bar to be jumped or vaulted over -03135917 06 n 01 crossbar 2 003 @ 02788689 n 0000 ~ 03228365 n 0000 ~ 04577567 n 0000 | a horizontal bar that goes across something -03136051 06 n 01 crossbench 0 002 @ 04161358 n 0000 ;r 08860123 n 0000 | any of the seats in the House of Commons used by members who do not vote regularly with either the government or the Opposition -03136254 06 n 01 cross_bit 0 001 @ 02875436 n 0000 | a rock drill having cruciform cutting edges; used in mining -03136369 06 n 01 crossbow 0 001 @ 02879718 n 0000 | a bow fixed transversely on a wooden stock grooved to direct the arrow (quarrel) -03136504 06 n 03 crosscut_saw 0 crosscut_handsaw 0 cutoff_saw 0 001 @ 03488188 n 0000 | handsaw that cuts at right angles to the grain (or major axis) -03136657 06 n 01 crosse 0 001 @ 04039381 n 0000 | a long racket with a triangular frame; used in playing lacrosse -03136773 06 n 02 cross_hair 0 cross_wire 0 002 @ 06799897 n 0000 #p 04082886 n 0000 | either of two fine mutually perpendicular lines that cross in the focus plane of an optical instrument and are use for sighting or calibration; "he had the target in his cross hairs" -03137044 06 n 01 crosshead 0 002 @ 02852523 n 0000 #p 04309049 n 0000 | metal block that connects to a piston; it slides on parallel guides and moves a connecting rod back and forth -03137228 06 n 03 crossing 0 crosswalk 0 crossover 0 004 @ 03899328 n 0000 + 01912159 v 0104 ~ 03451365 n 0000 ~ 03904183 n 0000 | a path (often marked) where something (as a street or railroad) can be crossed to get from one side to the other -03137473 06 n 02 crossjack 0 mizzen_course 0 001 @ 04127904 n 0000 | the lowermost sail on a mizzenmast -03137579 06 n 01 crosspiece 0 006 @ 02886599 n 0000 ~ 03135656 n 0000 ~ 04119751 n 0000 ~ 04119892 n 0000 ~ 04432043 n 0000 ~ 04472961 n 0000 | a transverse brace -03137744 06 n 01 cross-stitch 0 001 @ 03282933 n 0000 | embroidery done with pairs of stitches that cross each other -03137863 06 n 01 cross-stitch 1 002 @ 04180314 n 0000 ~ 03477674 n 0000 | two stitches forming a cross or X -03137973 06 n 01 cross_street 0 001 @ 04334599 n 0000 | a street intersecting a main street (usually at right angles) and continuing on both sides of it -03138128 06 n 01 crotchet 0 001 @ 03532342 n 0000 | a small tool or hooklike implement -03138217 06 n 01 croupier's_rake 0 001 @ 04050066 n 0000 | a small rake used by a croupier to move chips around on the table -03138344 06 n 04 crowbar 0 wrecking_bar 0 pry 0 pry_bar 0 004 @ 03659292 n 0000 + 01593254 v 0301 ~ 03599111 n 0000 ~ 03599351 n 0000 | a heavy iron lever with one end forged into a wedge -03138534 06 n 01 crown 0 002 @ 08677801 n 0000 #p 03497657 n 0000 | the part of a hat (the vertex) that covers the crown of the head -03138669 06 n 02 crown 1 diadem 0 005 @ 03597317 n 0000 @ 03139464 n 0000 + 02390949 v 0101 + 02390949 v 0102 ~ 03111564 n 0000 | an ornamental jeweled headdress signifying sovereignty -03138856 06 n 01 crown 2 002 @ 04606014 n 0000 ~ 03139731 n 0000 | a wreath or garland worn on the head to signify victory -03138981 06 n 02 crown 3 crest 1 002 @ 08663354 n 0000 #p 04096066 n 0000 | the center of a cambered road -03139089 06 n 05 crown 4 crownwork 0 jacket 2 jacket_crown 0 cap 4 002 @ 03175604 n 0000 ;c 06047430 n 0000 | (dentistry) dental appliance consisting of an artificial crown for a broken or decayed tooth; "tomorrow my dentist will fit me for a crown" -03139341 06 n 01 crown_jewel 0 001 @ 03596787 n 0000 | a precious stone that is a valuable part of a sovereign's regalia -03139464 06 n 01 crown_jewels 0 003 @ 04071263 n 0000 ;u 06295235 n 0000 ~ 03138669 n 0000 | regalia (jewelry and other paraphernalia) worn by a sovereign on state occasions -03139640 06 n 01 crown_lens 0 001 @ 03656484 n 0000 | a lens made of optical crown glass -03139731 06 n 01 crown_of_thorns 0 001 @ 03138856 n 0000 | a mock crown made of thorn branches that Roman soldiers placed on Jesus before the Crucifixion -03139887 06 n 01 crown_saw 0 001 @ 04140064 n 0000 | a saw having teeth around the edge of a hollow cylinder -03139998 06 n 01 crow's_nest 0 002 @ 03961939 n 0000 #p 04194289 n 0000 | platform for a lookout at or near the top of a mast -03140126 06 n 02 crucible 0 melting_pot 0 001 @ 04531098 n 0000 | a vessel made of material that does not melt easily; used for high temperature chemical reactions -03140292 06 n 03 crucifix 0 rood 0 rood-tree 0 002 @ 03135152 n 0000 + 02484049 v 0101 | representation of the cross on which Jesus died -03140431 06 n 02 cruet 0 crewet 0 001 @ 02876657 n 0000 | bottle that holds wine or oil or vinegar for the table -03140546 06 n 01 cruet-stand 0 001 @ 04038440 n 0000 | a stand for cruets containing various condiments -03140652 06 n 01 cruise_control 0 001 @ 03096960 n 0000 | control mechanism for keeping an automobile at a set speed -03140771 06 n 01 cruise_missile 0 002 @ 02686568 n 0000 @ 02866578 n 0000 | an unmanned aircraft that is a self-contained bomb -03140900 06 n 01 cruiser 0 003 @ 04552696 n 0000 ~ 02811618 n 0000 ~ 03466493 n 0000 | a large fast warship; smaller than a battleship and larger than a destroyer -03141065 06 n 06 cruiser 2 police_cruiser 0 patrol_car 0 police_car 0 prowl_car 0 squad_car 0 003 @ 02958343 n 0000 + 01844859 v 0101 ~ 03881534 n 0000 | a car in which policemen cruise the streets; equipped with radiotelephonic communications to headquarters -03141327 06 n 02 cruise_ship 0 cruise_liner 0 001 @ 03673027 n 0000 | a passenger ship used commercially for pleasure cruises -03141455 06 n 01 crupper 0 001 @ 04333129 n 0000 | a strap from the back of a saddle passing under the horse's tail; prevents saddle from slipping forward -03141612 06 n 01 cruse 0 001 @ 03593526 n 0000 | small jar; holds liquid (oil or water) -03141702 06 n 01 crusher 0 003 @ 03183080 n 0000 + 01593937 v 0102 + 00339085 v 0101 | a device that crushes something -03141823 06 n 01 crutch 0 001 @ 04296261 n 0000 | a wooden or metal staff that fits under the armpit and reaches to the ground; used by disabled person while walking -03141991 06 n 01 cryocautery 0 001 @ 02987047 n 0000 | an instrument for destroying tissue by freezing it -03142099 06 n 01 cryometer 0 001 @ 04421872 n 0000 | a thermometer designed to measure low temperatures -03142205 06 n 01 cryoscope 0 001 @ 03733925 n 0000 | a measuring instrument for measuring freezing and melting points -03142325 06 n 01 cryostat 0 001 @ 04422875 n 0000 | a thermostat that operates at very low temperatures -03142431 06 n 01 crypt 0 002 @ 02921884 n 0000 ;c 01032368 n 0000 | a cellar or vault or underground burial chamber (especially beneath a church) -03142579 06 n 01 cryptograph 0 001 @ 03183080 n 0000 | a device for deciphering codes and ciphers -03142679 06 n 03 crystal 0 watch_crystal 0 watch_glass 0 002 @ 04014297 n 0000 #p 04555897 n 0000 | a protective cover that protects the face of a watch -03142834 06 n 01 crystal 1 001 @ 03439064 n 0000 | glassware made of quartz -03142912 06 n 01 crystal 2 006 @ 03081021 n 0000 #p 03143255 n 0000 #p 03143400 n 0000 #p 03143572 n 0000 #p 03143982 n 0000 ~ 03934780 n 0000 | a crystalline element used as a component in various electronic devices -03143131 06 n 01 crystal_ball 0 001 @ 13899404 n 0000 | a glass or crystal globe used in crystal gazing by fortunetellers -03143255 06 n 01 crystal_counter 0 002 @ 03118346 n 0000 %p 03142912 n 0000 | a counter tube in which an ionizing event increases conductivity -03143400 06 n 01 crystal_detector 0 002 @ 03181293 n 0000 %p 03142912 n 0000 | a detector consisting of a fine wire in contact with a galena crystal; acts as a rectifier -03143572 06 n 01 crystal_microphone 0 002 @ 03759954 n 0000 %p 03142912 n 0000 | a microphone in which sound waves vibrate a piezoelectric crystal that generates a varying voltage -03143754 06 n 02 crystal_oscillator 0 quartz_oscillator 0 001 @ 03857430 n 0000 | an oscillator that produces electrical oscillations at a frequency determined by the physical characteristics of a piezoelectric quartz crystal -03143982 06 n 01 crystal_pickup 0 002 @ 02971940 n 0000 %p 03142912 n 0000 | a cartridge in which an output voltage is produced by the vibration of a piezoelectric crystal -03144156 06 n 01 crystal_set 0 001 @ 04043733 n 0000 | an early radio receiver using a crystal detector -03144262 06 n 01 Cuban_heel 0 001 @ 03511426 n 0000 | a broad heel of medium height on women's shoes -03144365 06 n 04 cubby 0 cubbyhole 1 snuggery 0 snug 0 002 @ 04105893 n 0000 + 01399096 a 0401 | a small secluded room -03144486 06 n 02 cubbyhole 0 pigeonhole 0 002 @ 03080309 n 0000 + 01497634 v 0201 | a small compartment -03144592 06 n 02 cube 0 square_block 0 004 @ 02852523 n 0000 + 00657804 a 0103 ~ 03191029 n 0000 ~ 03557141 n 0000 | a block in the (approximate) shape of a cube -03144756 06 n 02 cubeb 0 cubeb_cigarette 0 002 @ 03030663 n 0000 %s 13150378 n 0000 | a cigarette containing cubeb -03144873 06 n 01 cubitiere 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | body armor that protects the elbow -03144982 06 n 02 cucking_stool 0 ducking_stool 0 001 @ 03575958 n 0000 | an instrument of punishment consisting of a chair in which offenders were ducked in water -03145147 06 n 01 cuckoo_clock 0 001 @ 03046257 n 0000 | clock that announces the hours with a sound like the call of the cuckoo -03145277 06 n 01 cuddy 0 002 @ 03412220 n 0000 #p 04245412 n 0000 | the galley or pantry of a small ship -03145384 06 n 01 cudgel 0 004 @ 03053474 n 0000 + 01424106 v 0101 ~ 02805845 n 0000 ~ 04193742 n 0000 | a club that is used as a weapon -03145522 06 n 04 cue 0 cue_stick 0 pool_cue 0 pool_stick 0 002 @ 04285622 n 0000 %p 04321804 n 0000 | sports implement consisting of a tapering rod used to strike a cue ball in pool or billiards -03145719 06 n 01 cue_ball 0 001 @ 02839351 n 0000 | the ball that the billiard player or pool player strikes with his cue -03145843 06 n 02 cuff 0 turnup 0 006 @ 03641706 n 0000 #p 04236377 n 0000 #p 03654576 n 0000 + 01277974 v 0203 %p 03315805 n 0000 ~ 04488742 n 0000 | the lap consisting of a turned-back hem encircling the end of the sleeve or leg -03146075 06 n 01 cufflink 0 001 @ 03597469 n 0000 | jewelry consisting of one of a pair of linked buttons used to fasten the cuffs of a shirt -03146219 06 n 01 cuirass 0 002 @ 02862048 n 0000 %p 02770078 n 0000 | medieval body armor that covers the chest and back -03146342 06 n 01 cuisse 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the thigh -03146449 06 n 03 cul 0 cul_de_sac 1 dead_end 0 001 @ 03895293 n 0000 | a passage with access only at one end -03146560 06 n 01 culdoscope 0 001 @ 03286572 n 0000 | a specialized endoscope for visually examining a woman's pelvic organs -03146687 06 n 01 cullis 0 002 @ 03471473 n 0000 #p 02913152 n 0000 | a gutter in a roof -03146777 06 n 01 culotte 0 001 @ 04230808 n 0000 | a divided skirt -03146846 06 n 02 cultivator 0 tiller 1 004 @ 03322940 n 0000 + 01740608 v 0201 + 01741446 v 0101 ~ 03496612 n 0000 | a farm implement used to break up the surface of the soil (for aeration and weed control and conservation of moisture) -03147084 06 n 01 culverin 0 001 @ 03802007 n 0000 | a medieval musket -03147156 06 n 01 culverin 1 001 @ 02950256 n 0000 | a heavy cannon with a long barrel used in the 16th and 17th centuries -03147280 06 n 01 culvert 0 001 @ 03231912 n 0000 | a transverse and totally enclosed drain under a road or railway -03147397 06 n 01 cummerbund 0 001 @ 03438071 n 0000 | a broad pleated sash worn as formal dress with a tuxedo -03147509 06 n 01 cup 0 012 @ 03133538 n 0000 @ 03094503 n 0000 + 00189062 v 0101 ~ 02815749 n 0000 ~ 03002948 n 0000 ~ 03063073 n 0000 ~ 03216710 n 0000 ~ 03451253 n 0000 ~ 03629520 n 0000 ~ 03802643 n 0000 ~ 04158138 n 0000 ~ 04397452 n 0000 | a small open container usually used for drinking; usually has a handle; "he put the cup back in the saucer"; "the handle of the cup was missing" -03147901 06 n 02 cup 1 loving_cup 0 002 @ 04487996 n 0000 ~ 03164809 n 0000 | a large metal vessel with two handles that is awarded as a trophy to the winner of a competition; "the school kept the cups is a special glass case" -03148130 06 n 01 cup 2 001 @ 03526198 n 0000 | the hole (or metal container in the hole) on a golf green; "he swore as the ball rimmed the cup and rolled away"; "put the flag back in the cup" -03148324 06 n 02 cupboard 0 closet 3 005 @ 04328946 n 0000 ~ 02689819 n 0000 ~ 02906963 n 0000 ~ 04125116 n 0000 ~ 04359500 n 0000 | a small room (or recess) or cabinet used for storage space -03148518 06 n 01 cup_hook 0 001 @ 03532342 n 0000 | hook (usually on the underside of a shelf) for hanging cups -03148632 06 n 01 Cupid's_bow 0 001 @ 02879718 n 0000 | a curved bow with reversed curve ends -03148727 06 n 01 cupola 0 001 @ 03220513 n 0000 | a roof in the form of a dome -03148808 06 n 01 cupola 1 001 @ 03404449 n 0000 | a vertical cylindrical furnace for melting iron for casting -03148920 06 n 03 curb 0 curbing 0 kerb 0 003 @ 03264136 n 0000 + 01300937 v 0101 %p 03149686 n 0000 | an edge between a sidewalk and a roadway consisting of a line of curbstones (usually forming part of a gutter) -03149135 06 n 02 curb 2 curb_bit 0 001 @ 02844714 n 0000 | a horse's bit with an attached chain or strap to check the horse -03149261 06 n 01 curb_market 0 001 @ 04323026 n 0000 | a stock market for trading in securities not listed on the New York Stock Exchange -03149401 06 n 01 curb_roof 0 002 @ 04105068 n 0000 ~ 03718789 n 0000 | a roof with two or more slopes on each side of the ridge -03149531 06 n 01 curbside 0 001 @ 03900750 n 0000 | the side of a sidewalk that is bordered by a curb; "policemen stood at intervals along the curbside" -03149686 06 n 02 curbstone 0 kerbstone 0 002 @ 03901074 n 0000 #p 03148920 n 0000 | a paving stone forming part of a curb -03149810 06 n 02 curette 0 curet 0 001 @ 04364545 n 0000 | a surgical instrument shaped like a scoop to remove tissue from a bodily cavity -03149951 06 n 06 curio 0 curiosity 0 oddity 0 oddment 1 peculiarity 0 rarity 0 008 @ 00002684 n 0000 + 01678112 a 0601 + 00968010 a 0504 + 00968010 a 0303 + 00968010 a 0201 ~ 02897692 n 0000 ~ 03069213 n 0000 ~ 03069567 n 0000 | something unusual -- perhaps worthy of collecting -03150232 06 n 04 curler 0 hair_curler 0 roller 1 crimper 0 003 @ 03736970 n 0000 + 01522276 v 0303 + 01223616 v 0101 | a mechanical device consisting of a cylindrical tube around which the hair is wound to curl it; "a woman with her head full of curlers is not a pretty sight" -03150511 06 n 01 curling_iron 0 001 @ 03528263 n 0000 | a cylindrical metal home appliance that heats a lock of hair that has been curled around it -03150661 06 n 01 currycomb 0 002 @ 03074855 n 0000 + 01596855 v 0101 | a square comb with rows of small teeth; used to curry horses -03150795 06 n 02 cursor 0 pointer 1 004 @ 03568117 n 0000 ;c 06128570 n 0000 + 01152670 v 0201 + 00923793 v 0202 | (computer science) indicator consisting of a movable spot of light (an icon) on a visual display; moving it allows the user to point to commands or screen positions -03151077 06 n 05 curtain 0 drape 0 drapery 0 mantle 1 pall 0 011 @ 02851099 n 0000 @ 03405265 n 0000 + 01335588 v 0501 + 02353537 v 0101 ~ 03246454 n 0000 %p 03308853 n 0000 ~ 03330665 n 0000 ~ 03398950 n 0000 ~ 03986857 n 0000 ~ 04209239 n 0000 ~ 04418357 n 0000 | hanging cloth used as a blind (especially for a window) -03151401 06 n 01 curtain_ring 0 001 @ 03533972 n 0000 | a circular ring for holding up a curtain -03151500 06 n 01 cushion 0 010 @ 03873064 n 0000 + 01153703 a 0102 ~ 02687539 n 0000 ~ 03409806 n 0000 ~ 03497531 n 0000 ~ 03505207 n 0000 ~ 03938244 n 0000 ~ 03942126 n 0000 ~ 04162895 n 0000 ~ 04430364 n 0000 | a soft bag filled with air or a mass of padding such as feathers or foam rubber etc. -03151800 06 n 01 cushion 2 001 @ 03650173 n 0000 | the layer of air that supports a hovercraft or similar vehicle -03151916 06 n 01 cusp 0 002 @ 03974215 n 0000 + 02048626 a 0104 | point formed by two intersecting arcs (as from the intrados of a Gothic arch) -03152062 06 n 01 cuspidation 0 001 @ 03282401 n 0000 | a decoration using cusps -03152144 06 n 01 custard_pie 0 001 @ 04012260 n 0000 | a prop consisting of an open pie filled with real or artificial custard; thrown in slapstick comedies -03152303 06 n 02 customhouse 0 customshouse 0 001 @ 03449564 n 0000 | a government building where customs are collected and where ships are cleared to enter or leave the country -03152483 06 n 02 custom-made 0 custom-built 0 002 @ 03588414 n 0000 ! 04058921 n 0101 | an item made to the customer's specifications -03152619 06 n 02 cut 0 gash 0 001 @ 03406966 n 0000 | a trench resembling a furrow that was made by erosion or excavation -03152743 06 n 01 cut 1 001 @ 02947212 n 0000 | a canal made by erosion or excavation -03152830 06 n 01 cutaway 0 001 @ 03057021 n 0000 | a man's coat cut diagonally from the waist to the back of the knees -03152951 06 n 03 cutaway 1 cutaway_drawing 0 cutaway_model 0 001 @ 04076846 n 0000 | a representation (drawing or model) of something in which the outside is omitted to reveal the inner parts -03153145 06 n 01 cut_glass 0 001 @ 03439064 n 0000 | glass decorated by cutting or grinding facets -03153246 06 n 02 cutlas 0 cutlass 0 001 @ 04373894 n 0000 | a short heavy curved sword with one edge; formerly used by sailors -03153375 06 n 02 cutlery 0 eating_utensil 0 006 @ 04381994 n 0000 ~ 03383948 n 0000 %p 03485997 n 0000 ~ 04284002 n 0000 ~ 04284438 n 0000 ~ 04380346 n 0000 | tableware implements for cutting and eating food -03153585 06 n 01 cutoff 1 001 @ 03183080 n 0000 | a device that terminates the flow in a pipe -03153681 06 n 01 cutout 0 003 @ 03892891 n 0000 + 00472671 v 0101 + 01554799 v 0101 | a part that is cut out or is intended to be cut out -03153821 06 n 01 cutout 1 002 @ 03926575 n 0000 ~ 04302034 n 0000 | a photograph from which the background has been cut away -03153948 06 n 01 cutout 2 001 @ 04372370 n 0000 | a switch that interrupts an electric circuit in the event of an overload -03154073 06 n 03 cutter 0 cutlery 1 cutting_tool 0 008 @ 03154446 n 0000 + 01552519 v 0101 ~ 02866386 n 0000 ~ 03030557 n 0000 ~ 03192907 n 0000 ~ 03265032 n 0000 ~ 03438780 n 0000 ~ 04435552 n 0000 | a cutting implement; a tool for cutting -03154316 06 n 01 cutter 2 001 @ 04128837 n 0000 | a sailing vessel with a single mast set further back than the mast of a sloop -03154446 06 n 01 cutting_implement 0 005 @ 04451818 n 0000 ~ 02844307 n 0000 ~ 02848216 n 0000 ~ 03154073 n 0000 ~ 03886940 n 0000 | a tool used for cutting or slicing -03154616 06 n 01 cutting_room 0 001 @ 04105893 n 0000 | a room where films or tapes are edited (by cutting out unwanted parts) -03154745 06 n 01 cutty_stool 0 001 @ 04326896 n 0000 | a low stool; formerly in Scotland, a seat in a church where an offender was publicly rebuked -03154895 06 n 01 cutwork 0 001 @ 03282933 n 0000 | embroidery in which the design is outlined in a buttonhole stitch and the intervening material is cut away -03155055 06 n 01 cyberart 0 001 @ 02743547 n 0000 | art that is produced with the help of computer hardware and software -03155178 06 n 01 cybercafe 0 001 @ 02935658 n 0000 | a cafe whose customers sit at computer terminals and log on to the internet while they eat and drink -03155334 06 n 02 cyclobenzaprine 0 Flexeril 0 002 @ 03800001 n 0000 ;u 06845599 n 0201 | muscle relaxant (trade name Flexeril) used for muscle spasms or acute injury -03155502 06 n 01 cyclopean_masonry 0 001 @ 04326799 n 0000 | a primitive style of masonry characterized by use of massive stones of irregular shape and size -03155661 06 n 01 cyclopropane 0 001 @ 03570838 n 0000 | a colorless flammable gas sometimes used as an inhalation anesthetic -03155788 06 n 01 cycloserine 0 001 @ 02716866 n 0000 | an antibiotic that is especially active against the tubercle bacillus -03155915 06 n 01 cyclostyle 0 002 @ 04608567 n 0000 + 01748578 v 0101 | a writing implement with a small toothed wheel that cuts small holes in a stencil -03156071 06 n 01 cyclotron 0 004 @ 02670382 n 0000 ~ 02833275 n 0000 ~ 04374907 n 0000 ~ 04375775 n 0000 | an accelerator that imparts energies of several million electron-volts to rapidly moving particles -03156279 06 n 01 cylinder 1 002 @ 03094503 n 0000 #p 02731629 n 0000 | a cylindrical container for oxygen or compressed air -03156405 06 n 02 cylinder 2 piston_chamber 0 006 @ 03003730 n 0000 #p 03288225 n 0000 #p 04021798 n 0000 #p 03082807 n 0000 ~ 02889996 n 0000 %p 03576955 n 0000 | a chamber within which piston moves -03156606 06 n 01 cylinder_head 0 001 @ 03959936 n 0000 | a detachable plate that covers the closed end of a cylinder chamber in a reciprocating engine or pump -03156767 06 n 01 cylinder_lock 0 002 @ 03682487 n 0000 %p 03941013 n 0000 | a lock in which a cylinder rotates to move a bolt; tumblers are pins; inserting the key lifts and aligns the pins to free the cylinder to rotate -03156990 06 n 02 cyma 0 cymatium 0 004 @ 03780392 n 0000 ;c 05841985 n 0000 ~ 03157215 n 0000 ~ 03842585 n 0000 | (architecture) a molding for a cornice; in profile it is shaped like an S (partly concave and partly convex) -03157215 06 n 01 cyma_recta 0 001 @ 03156990 n 0000 | a cyma in which the upper section is concave and the lower section is convex -03157348 06 n 01 cymbal 0 003 @ 03915437 n 0000 ~ 03518829 n 0000 ~ 04614844 n 0000 | a percussion instrument consisting of a concave brass disk; makes a loud crashing sound when hit with a drumstick or when two are struck together -03157582 06 n 02 cyproheptadine 0 Periactin 0 002 @ 02720725 n 0000 ;u 06845599 n 0201 | an antihistamine (trade name Periactin) used to treat some allergic reactions -03157751 06 n 01 cytophotometer 0 001 @ 03667664 n 0000 | a photometer that can be used to locate and identify chemical compounds in a cell by measuring the intensity of the light that passes through stained sections of the cytoplasm -03157987 06 n 01 cytotoxic_drug 0 002 @ 03740161 n 0000 ~ 02722458 n 0000 | any drug that has a toxic effect on cells; commonly used in chemotherapy to inhibit the proliferation of cancerous cells -03158186 06 n 01 dacha 0 001 @ 03118969 n 0000 | Russian country house -03158259 06 n 01 Dachau 0 002 @i 03086183 n 0000 #p 08766988 n 0000 | a concentration camp for Jews created by the Nazis near Munich in southern Germany -03158414 06 n 02 Dacron 0 Terylene 0 003 @ 03979377 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | a kind of polyester fabric -03158542 06 n 01 dado 1 001 @ 13893786 n 0000 | a rectangular groove cut into a board so that another piece can fit into it -03158668 06 n 01 dado 2 002 @ 04164989 n 0000 #p 03903868 n 0000 | the section of a pedestal between the base and the surbase -03158796 06 n 01 dado_plane 0 001 @ 03849275 n 0000 | a plane for making a dado groove -03158885 06 n 02 dagger 0 sticker 0 010 @ 03624134 n 0000 + 01441993 v 0201 + 01441793 v 0201 ~ 03205458 n 0000 %p 03474896 n 0000 %p 03520654 n 0000 ~ 03619050 n 0000 ~ 03628728 n 0000 ~ 03981094 n 0000 ~ 04318892 n 0000 | a short knife with a pointed blade used for piercing or stabbing -03159176 06 n 01 daggerboard 0 001 @ 02994012 n 0000 | a removable centerboard on a small sailboat that can be lowered into the water to serve as a keel -03159331 06 n 01 daguerreotype 0 001 @ 03925226 n 0000 | a photograph made by an early photographic process; the image was produced on a silver plate sensitized to iodine and developed in mercury vapor -03159535 06 n 02 dairy 0 dairy_farm 0 001 @ 03322099 n 0000 | a farm where dairy products are produced -03159640 06 n 07 dais 0 podium 0 pulpit 0 rostrum 0 ambo 0 stump 1 soapbox 0 001 @ 03961939 n 0000 | a platform raised above the surrounding level to give prominence to the person on it -03159828 06 n 01 daisy_chain 0 001 @ 03368508 n 0000 | flower chain consisting of a string of daisies linked by their stems; worn by students on class day at some schools -03160001 06 n 02 daisy_print_wheel 0 daisy_wheel 0 002 @ 04574999 n 0000 #p 03160186 n 0000 | a wheel around which is a set of print characters that make a typing impression on paper -03160186 06 n 01 daisywheel_printer 0 002 @ 03007591 n 0000 %p 03160001 n 0000 | a printer that uses a daisy print wheel -03160309 06 n 03 dam 0 dike 0 dyke 0 009 @ 02796623 n 0000 + 01587818 v 0302 + 01587818 v 0201 + 01477224 v 0101 ~i 02751623 n 0000 ~i 03439491 n 0000 ~i 03534890 n 0000 ~ 03765934 n 0000 ~ 04571566 n 0000 | a barrier constructed to contain the flow of water or to keep out the sea -03160593 06 n 01 damascene 0 003 @ 03178782 n 0000 + 01795610 a 0101 + 01682446 v 0101 | a design produced by inlaying gold or silver into steel -03160740 06 n 01 damask 0 002 @ 03309808 n 0000 + 01795799 a 0101 | a fabric of linen or cotton or silk or wool with a reversible pattern woven into it -03160894 06 n 01 damask 1 002 @ 04380617 n 0000 + 01795799 a 0101 | a table linen made from linen with a damask pattern -03161016 06 n 02 dampener 0 moistener 0 003 @ 03183080 n 0000 + 00217956 v 0201 + 00217956 v 0103 | a device that dampens or moistens something; "he used a dampener to moisten the shirts before he ironed them" -03161228 06 n 02 damp-proof_course 0 damp_course 0 001 @ 03120029 n 0000 | a course of some impermeable material laid in the foundation walls of building near the ground to prevent dampness from rising into the building -03161450 06 n 02 damper 0 muffler 2 007 @ 03183080 n 0000 + 02191311 v 0201 + 02191311 v 0104 + 00390560 v 0103 ~ 03161893 n 0000 ~ 03163488 n 0000 ~ 04198797 n 0000 | a device that decreases the amplitude of electronic, mechanical, acoustical, or aerodynamic oscillations -03161725 06 n 01 damper 1 003 @ 03959936 n 0000 #p 03017428 n 0000 + 00390215 v 0102 | a movable iron plate that regulates the draft in a stove or chimney or furnace -03161893 06 n 02 damper_block 0 piano_damper 0 002 @ 03161450 n 0000 #p 03928589 n 0000 | damper consisting of a small felted block that drops onto a piano string to stop its vibration -03162080 06 n 01 dance_floor 0 001 @ 03365592 n 0000 | a bare floor polished for dancing -03162171 06 n 01 dapsone 0 001 @ 02716205 n 0000 | antibacterial drug used to treat leprosy and some kinds of skin diseases -03162297 06 n 02 dark_lantern 0 bull's-eye 0 001 @ 03640988 n 0000 | a lantern with a single opening and a sliding panel that can be closed to conceal the light -03162460 06 n 01 darkroom 0 001 @ 04105893 n 0000 | a room in which photographs are developed -03162556 06 n 02 darning_needle 0 embroidery_needle 0 001 @ 04180063 n 0000 | a long needle with an eye large enough for heavy darning or embroidery thread -03162714 06 n 01 dart 0 002 @ 04494906 n 0000 #p 03419014 n 0000 | a tapered tuck made in dressmaking -03162818 06 n 01 dart 1 002 @ 04008634 n 0000 ~ 02786463 n 0000 | a small narrow pointed missile that is thrown or shot -03162940 06 n 02 dartboard 0 dart_board 0 001 @ 02857023 n 0000 | a circular board of wood or cork used as the target in the game of darts -03163081 06 n 02 Dartmouth_College 0 Dartmouth 0 003 @i 03069752 n 0000 #p 09111366 n 0000 #m 08232706 n 0000 | a college in New Hampshire -03163222 06 n 02 dashboard 0 fascia 0 002 @ 03098140 n 0000 ;r 08860123 n 0204 | instrument panel on an automobile or airplane containing dials and controls -03163381 06 n 02 dashiki 0 daishiki 0 001 @ 04197391 n 0000 | a loose and brightly colored African shirt -03163488 06 n 01 dash-pot 0 001 @ 03161450 n 0000 | a mechanical damper; the vibrating part is attached to a piston that moves in a chamber filled with liquid -03163649 06 n 01 dasymeter 0 001 @ 03175301 n 0000 | densimeter consisting of a thin glass globe that is weighed in a gas to determine its density -03163798 06 n 01 data_converter 0 004 @ 03099945 n 0000 #p 03082979 n 0000 ~ 03195799 n 0000 ~ 03197446 n 0000 | converter for changing information from one code to another -03163973 06 n 02 data_input_device 0 input_device 0 004 @ 03916720 n 0000 ~ 03085013 n 0000 ~ 03602883 n 0000 ~ 04143140 n 0000 | a device that can be used to insert data into a computer or other computational device -03164192 06 n 01 data_multiplexer 0 001 @ 03799113 n 0000 | a multiplexer that permits two or more data sources to share a common transmission medium -03164344 06 n 02 data_system 0 information_system 0 002 @ 04377057 n 0000 ~i 03810186 n 0000 | system consisting of the network of all communication channels used within an organization -03164532 06 n 01 daub 0 001 @ 03876519 n 0000 | an unskillful painting -03164605 06 n 01 davenport 0 002 @ 03100346 n 0000 ~ 03015149 n 0000 | a large sofa usually convertible into a bed -03164722 06 n 01 davenport 1 001 @ 03179701 n 0000 | a small decorative writing desk -03164809 06 n 01 Davis_Cup 0 001 @ 03147901 n 0000 | cup awarded for the annual international team tennis competition -03164929 06 n 01 davit 0 002 @ 03126707 n 0000 #p 04194289 n 0000 | a crane-like device (usually one of a pair) for suspending or lowering equipment (as a lifeboat) -03165096 06 n 02 daybed 1 divan_bed 0 001 @ 04256520 n 0000 | an armless couch; a seat by day and a bed by night -03165211 06 n 02 daybook 0 ledger 0 001 @ 03602562 n 0000 | an accounting journal as a physical object; "he bought a new daybook" -03165343 06 n 01 day_camp 0 001 @ 02945594 n 0000 | a camp providing care and activities for children during the daytime -03165466 06 n 02 day_nursery 0 day_care_center 0 001 @ 03836062 n 0000 | a nursery for the supervision of preschool children while the parents work -03165616 06 n 01 day_school 0 001 @ 04146050 n 0000 | a school building without boarding facilities -03165718 06 n 01 dead-air_space 0 001 @ 02735688 n 0000 | an unventilated area where no air circulates -03165823 06 n 01 dead_axle 0 002 @ 02764779 n 0000 ~ 02765028 n 0000 | an axle that carries a wheel but without power to drive it -03165955 06 n 01 deadeye 0 002 @ 03208556 n 0000 ;c 00314469 n 0000 | (nautical) a round hardwood disk with holes and a grooved perimeter used to tighten a shroud -03166120 06 n 01 deadhead 0 001 @ 04019101 n 0000 | a train or bus or taxi traveling empty -03166213 06 n 01 deadlight 0 002 @ 04211356 n 0000 #p 03986562 n 0000 | a strong shutter over a ship's porthole that is closed in stormy weather -03166360 06 n 01 dead_load 0 001 @ 03679986 n 0000 | a constant load on a structure (e.g. a bridge) due to the weight of the supported structure itself -03166514 06 n 01 deanery 0 001 @ 04079244 n 0000 | the official residence of a dean -03166600 06 n 01 deathbed 0 001 @ 02818832 n 0000 | the bed on which a person dies -03166685 06 n 01 death_camp 0 001 @ 03086183 n 0000 | a concentration camp where prisoners are likely to die or be killed -03166809 06 n 02 death_house 0 death_row 0 001 @ 02992032 n 0000 | the cellblock in a prison where those condemned to death await execution -03166951 06 n 02 death_knell 0 death_bell 0 001 @ 02824448 n 0000 | a bell rung to announce a death -03167053 06 n 01 death_mask 0 001 @ 02979662 n 0000 | a cast taken from the face of a dead person -03167153 06 n 01 death_seat 0 001 @ 02970685 n 0000 | the car seat beside the driver of an automobile; believed to be the most dangerous place to sit in a car in case of an accident -03167337 06 n 01 deathtrap 0 001 @ 04341686 n 0000 | any structure that is very unsafe; where people are likely to be killed -03167464 06 n 02 decal 0 decalcomania 0 002 @ 03178782 n 0000 @ 15077752 n 0000 | either a design that is fixed to some surface or a paper bearing the design which is to be transferred to the surface -03167666 06 n 01 deck 0 013 @ 03961939 n 0000 #p 04194289 n 0000 ~ 02683692 n 0000 ~ 03363216 n 0000 ~ 03382413 n 0000 ~ 03468900 n 0000 ~ 03549732 n 0000 ~ 03662207 n 0000 ~ 03694098 n 0000 ~ 03711459 n 0000 ~ 03855908 n 0000 ~ 04031770 n 0000 ~ 04514738 n 0000 | any of various platforms built into a vessel -03167978 06 n 01 deck 1 003 @ 03871628 n 0000 ;u 07157273 n 0000 ~ 03198819 n 0000 | street name for a packet of illegal drugs -03168107 06 n 01 deck 2 002 @ 03984381 n 0000 ~ 04355267 n 0000 | a porch that resembles the deck on a ship -03168217 06 n 02 deck_chair 0 beach_chair 0 001 @ 03376595 n 0000 | a folding chair for use outdoors; a wooden frame supports a length of canvas -03168364 06 n 01 decker 0 002 @ 00021939 n 0000 ;u 06307152 n 0000 | (often used in combinations) something constructed with multiple levels; "they rode in a double-decker bus" -03168543 06 n 01 deck-house 0 002 @ 04358874 n 0000 #p 04514738 n 0000 | a superstructure on the upper deck of a ship -03168663 06 n 01 deckle 0 001 @ 03391770 n 0000 | (paper making) a frame used to form paper pulp into sheets -03168774 06 n 02 deckle_edge 0 deckle 1 001 @ 03264136 n 0000 | rough edge left by a deckle on handmade paper or produced artificially on machine-made paper -03168933 06 n 02 declinometer 0 transit_declinometer 0 001 @ 03733925 n 0000 | an instrument for measuring magnetic declination -03169063 06 n 01 decoder 0 001 @ 03699975 n 0000 | a machine that converts a coded text into ordinary language -03169176 06 n 01 decolletage 0 001 @ 03815278 n 0000 | a low-cut neckline on a woman's dress -03169271 06 n 01 decongestant 0 002 @ 03740161 n 0000 ~ 03809939 n 0000 | a drug that decreases pulmonary congestion -03169390 06 n 03 decoration 0 ornament 0 ornamentation 0 045 @ 00021939 n 0000 + 01091234 a 0203 + 01675963 v 0204 + 02748927 v 0103 + 01675963 v 0101 + 01466543 v 0102 ~ 02681518 n 0000 ~ 02732572 n 0000 ~ 02734423 n 0000 ~ 02815389 n 0000 ~ 02880308 n 0000 ~ 02892304 n 0000 ~ 02994419 n 0000 ~ 03026626 n 0000 ~ 03060599 n 0000 ~ 03178782 n 0000 ~ 03282401 n 0000 ~ 03342529 n 0000 ~ 03368141 n 0000 ~ 03376438 n 0000 ~ 03418488 n 0000 ~ 03420440 n 0000 ~ 03451798 n 0000 ~ 03491178 n 0000 ~ 03532187 n 0000 ~ 03566860 n 0000 ~ 03572449 n 0000 ~ 03579355 n 0000 ~ 03626272 n 0000 ~ 03698123 n 0000 ~ 03780392 n 0000 ~ 03805503 n 0000 ~ 03815149 n 0000 ~ 03864834 n 0000 ~ 04109702 n 0000 ~ 04176889 n 0000 ~ 04181083 n 0000 ~ 04279666 n 0000 ~ 04288165 n 0000 ~ 04343346 n 0000 ~ 04384406 n 0000 ~ 04440210 n 0000 ~ 04463141 n 0000 ~ 04586225 n 0000 ~ 07621618 n 0000 | something used to beautify -03170292 06 n 01 decoupage 0 001 @ 02743547 n 0000 | art produced by decorating a surface with cutouts and then coating it with several layers of varnish or lacquer -03170459 06 n 01 dedicated_file_server 0 003 @ 03337494 n 0000 ;c 06128570 n 0000 ! 03827830 n 0101 | (computer science) a file server that can be used only as a file server -03170635 06 n 04 deep-freeze 0 Deepfreeze 0 deep_freezer 0 freezer 0 003 @ 03273913 n 0000 + 00375865 v 0401 + 00375417 v 0101 | electric refrigerator (trade name Deepfreeze) in which food is frozen and stored for long periods of time -03170872 06 n 01 deerstalker 0 001 @ 03497657 n 0000 | a tight-fitting hat with visors front and back; formerly worn by hunters -03171002 06 n 01 deer_trail 0 001 @ 04466613 n 0000 | a trail worn by the passage of deer -03171094 06 n 01 defense_laboratory 0 001 @ 03629986 n 0000 | a laboratory devoted to research and development for national defense -03171228 06 n 02 defense_system 0 defence_system 0 001 @ 04566257 n 0000 | the weaponry available for the defense of a region -03171356 06 n 03 defensive_structure 0 defense 0 defence 0 007 @ 04341686 n 0000 ~ 03015631 n 0000 ~ 03385557 n 0000 ~ 03386011 n 0000 ~ 03672638 n 0000 ~ 03862379 n 0000 ~ 04340935 n 0000 | a structure used to defend against attack; "the artillery battered down the defenses" -03171635 06 n 01 defibrillator 0 002 @ 03277771 n 0000 + 02553002 v 0101 | an electronic device that administers an electric shock of preset voltage to the heart through the chest wall in an attempt to restore the normal rhythm of the heart during ventricular fibrillation -03171910 06 n 01 defilade 0 001 @ 03385557 n 0000 | the arrangement of defensive fortifications to protect against enemy fire -03172038 06 n 01 deflector 0 003 @ 03183080 n 0000 + 02034300 v 0101 + 02033805 v 0101 | a device intended to turn aside the flow of something (water or air or smoke etc) -03172211 06 n 02 defroster 0 deicer 0 004 @ 03508101 n 0000 ;c 02691156 n 0000 + 00376807 v 0202 + 00376807 v 0101 | heater that removes ice or frost (as from a windshield or a refrigerator or the wings of an airplane) -03172432 06 n 02 delavirdine 0 Rescriptor 0 001 @ 03828155 n 0000 | a non-nucleoside reverse transcriptase inhibitor (trade name Rescriptor) used to treat AIDS and HIV -03172602 06 n 01 Delaware_Memorial_Bridge 0 002 @i 04366367 n 0000 #p 09070363 n 0000 | a suspension bridge across the Delaware River -03172738 06 n 01 delayed_action 0 002 @ 03738472 n 0000 #p 02942699 n 0000 | a mechanism that automatically delays the release of a camera shutter for a fixed period of time so that the photographer can appear in the picture -03172965 06 n 01 delay_line 0 003 @ 03033362 n 0000 ~ 02676097 n 0000 ~ 03276431 n 0000 | a circuit designed to introduce a calculated delay into the transmission of a signal -03173142 06 n 01 delf 0 003 @ 03302121 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | an excavation; usually a quarry or mine -03173270 06 n 01 delft 0 001 @ 03262519 n 0000 | a style of glazed earthenware; usually white with blue decoration -03173387 06 n 03 delicatessen 0 deli 0 food_shop 0 002 @ 04202417 n 0000 ~ 03008177 n 0000 | a shop selling ready-to-eat food products -03173524 06 n 04 delineation 0 depiction 0 limning 0 line_drawing 0 005 @ 03234306 n 0000 + 02736778 v 0102 + 01689379 v 0101 + 01582645 v 0105 ~ 02712907 n 0000 | a drawing of the outlines of forms or objects -03173736 06 n 01 deliverable 0 001 @ 04007894 n 0000 | something that can be provided as the product of development; "under this contract the deliverables include both software and hardware" -03173929 06 n 03 delivery_truck 0 delivery_van 0 panel_truck 0 001 @ 04520170 n 0000 | a van suitable for delivering goods or services to customers -03174079 06 n 01 delta_wing 0 001 @ 02691156 n 0000 | an airplane with wings that give it the appearance of an isosceles triangle -03174211 06 n 02 demeclocycline_hydrochloride 0 Declomycin 0 002 @ 04416530 n 0000 ;u 06845599 n 0201 | tetracycline antibacterial (trade name Declomycin) effective in the treatment of some bacterial and rickettsial and other infections -03174450 06 n 01 demijohn 0 001 @ 02876657 n 0000 | large bottle with a short narrow neck; often has small handles at neck and is enclosed in wickerwork -03174605 06 n 01 demister 0 002 @ 03508101 n 0000 + 00361641 v 0101 | heater that removes mist from the windshield of a car -03174731 06 n 01 demitasse 0 001 @ 03063073 n 0000 | small coffee cup; for serving black coffee -03174829 06 n 01 demulcent 0 002 @ 03740161 n 0000 + 01153844 a 0101 | a medication (in the form of an oil or salve etc.) that soothes inflamed or injured skin -03174991 06 n 01 Demulen 0 001 @ 03936895 n 0000 | trade name for an oral contraceptive -03175081 06 n 01 den 0 002 @ 04105893 n 0000 #p 03259505 n 0000 | a room that is comfortable and secluded -03175189 06 n 03 denim 0 dungaree 0 jean 0 001 @ 03309808 n 0000 | a coarse durable twill-weave cotton fabric -03175301 06 n 02 densimeter 0 densitometer 1 002 @ 03733925 n 0000 ~ 03163649 n 0000 | a measuring instrument for determining density or specific gravity -03175457 06 n 01 densitometer 0 002 @ 03733925 n 0000 ~ 03760164 n 0000 | a measuring instrument for determining optical or photographic density -03175604 06 n 01 dental_appliance 0 008 @ 03183080 n 0000 ;c 06047430 n 0000 ~ 02845130 n 0000 ~ 02887079 n 0000 ~ 03139089 n 0000 ~ 03176386 n 0000 ~ 03338287 n 0000 ~ 04082562 n 0000 | a device to repair teeth or replace missing teeth -03175843 06 n 02 dental_floss 0 floss 1 002 @ 04426788 n 0000 + 00041866 v 0201 | a soft thread for cleaning the spaces between the teeth -03175983 06 n 01 dental_implant 0 001 @ 03563710 n 0000 | an implant that replaces a natural tooth -03176084 06 n 01 dentifrice 0 003 @ 03040587 n 0000 ~ 04453298 n 0000 ~ 04453557 n 0000 | a substance for cleaning the teeth; applied with a toothbrush -03176238 06 n 02 dentist's_drill 0 burr_drill 0 002 @ 03239726 n 0000 %p 02921292 n 0000 | a high speed drill that dentists use to cut into teeth -03176386 06 n 03 denture 0 dental_plate 0 plate 9 005 @ 03175604 n 0000 + 10004019 n 0102 ~ 02899569 n 0000 ~ 03319576 n 0000 ~ 03893935 n 0000 | a dental appliance that artificially replaces missing teeth -03176594 06 n 02 deodorant 0 deodourant 0 003 @ 04447443 n 0000 + 02126863 v 0203 + 02126863 v 0101 | a toiletry applied to the skin in order to mask unpleasant odors -03176763 06 n 02 department_store 0 emporium 0 002 @ 03748162 n 0000 #m 08062206 n 0000 | a large retail store organized into departments offering a variety of merchandise; commonly part of a retail chain -03176970 06 n 01 departure_gate 0 001 @ 03427909 n 0000 | gate where passengers embark -03177059 06 n 01 departure_lounge 0 001 @ 03691817 n 0000 | lounge where passengers can await departure -03177165 06 n 03 depilatory 0 depilator 0 epilator 0 004 @ 03113152 n 0000 + 00037514 v 0202 + 00211221 a 0101 ~ 03293095 n 0000 | a cosmetic for temporary removal of undesired hair -03177349 06 n 04 depository 0 deposit 0 depositary 0 repository 0 012 @ 03315023 n 0000 ~ 02735086 n 0000 ~ 02787772 n 0000 ~ 03246052 n 0000 ~ 03660664 n 0000 ~ 03690695 n 0000 ~ 03800563 n 0000 ~ 04076433 n 0000 ~ 04274309 n 0000 %p 04328946 n 0000 ~ 04329190 n 0000 ~ 04477825 n 0000 | a facility where things can be deposited for storage or safekeeping -03177708 06 n 01 depressor 0 003 @ 03183080 n 0000 + 01574766 v 0102 ~ 04451318 n 0000 | a device used by physician to press a part down or aside -03177856 06 n 02 depth_charge 0 depth_bomb 0 001 @ 02866578 n 0000 | a bomb that explodes at a preset depth under water; antisubmarine device -03178000 06 n 01 depth_finder 0 002 @ 03813176 n 0000 ~ 04260192 n 0000 | navigational instrument used to measure the depth of a body of water (as by ultrasound or radar) -03178173 06 n 02 depth_gauge 0 depth_gage 0 001 @ 03429288 n 0000 | a gauge for measuring the depth of grooves or holes or other concavities -03178316 06 n 01 dermatome 0 001 @ 04364545 n 0000 | a surgical instrument used to cut very thin slices of skin -03178430 06 n 01 derrick 0 001 @ 03126707 n 0000 | a simple crane having lifting tackle slung from a boom -03178538 06 n 01 derrick 1 001 @ 03391770 n 0000 | a framework erected over an oil well to allow drill tubes to be raised and lowered -03178674 06 n 01 derringer 0 001 @ 03948459 n 0000 | a pocket pistol of large caliber with a short barrel -03178782 06 n 03 design 0 pattern 0 figure 1 023 @ 03169390 n 0000 + 01753596 v 0101 + 01640550 v 0101 ~ 02736934 n 0000 ~ 02816895 n 0000 ~ 03160593 n 0000 ~ 03167464 n 0000 ~ 03185746 n 0000 ~ 03282591 n 0000 ~ 03516367 n 0000 ~ 03674842 n 0000 ~ 03716656 n 0000 ~ 03762602 n 0000 ~ 03789014 n 0000 ~ 03978300 n 0000 ~ 04029647 n 0000 ~ 04153436 n 0000 ~ 04354828 n 0000 ~ 04395651 n 0000 ~ 04416901 n 0000 ~ 04485884 n 0000 ~ 04568298 n 0000 ~ 04680285 n 0000 | a decorative or artistic work; "the coach had a design on the doors" -03179318 06 n 01 design 1 003 @ 04227144 n 0000 + 01639714 v 0101 + 00709625 v 0101 | a preliminary sketch indicating the plan for something; "the design of a building" -03179489 06 n 01 designer_drug 0 001 @ 04017137 n 0000 | a psychoactive drug deliberately synthesized to avoid anti-drug laws; mimics the effects of a banned drug; law was revised in 1986 to ban designer drugs -03179701 06 n 01 desk 0 005 @ 04379243 n 0000 ~ 03164722 n 0000 %p 03233905 n 0000 ~ 04164868 n 0000 ~ 04608329 n 0000 | a piece of furniture with a writing surface and usually drawers or other compartments -03179910 06 n 01 desk_phone 0 001 @ 04401088 n 0000 | a telephone set that sits on a desk or table -03180011 06 n 01 desktop_computer 0 001 @ 03918480 n 0000 | a personal computer small enough to fit conveniently in an individual workspace -03180153 06 n 01 desipramine 0 001 @ 04482543 n 0000 | a tricyclic antidepressant drug that activates the psychomotor system -03180280 06 n 01 dessert_plate 0 001 @ 03959485 n 0000 | a small plate on which dessert can be served -03180384 06 n 01 dessert_spoon 0 001 @ 04284002 n 0000 | a spoon larger than a teaspoon and smaller than a tablespoon -03180504 06 n 02 destroyer 0 guided_missile_destroyer 0 006 @ 04552696 n 0000 + 01619929 v 0101 + 01564144 v 0101 ~ 04439039 n 0000 ~ 04457474 n 0000 ~i 04516477 n 0000 | a small fast lightly armored but heavily armed warship -03180732 06 n 01 destroyer_escort 0 001 @ 04552696 n 0000 | warship smaller than a destroyer; designed to escort fleets or convoys -03180865 06 n 02 detached_house 0 single_dwelling 0 001 @ 03544360 n 0000 | a house that stands alone -03180969 06 n 03 detector 0 sensor 0 sensing_element 0 007 @ 03183080 n 0000 + 02106006 v 0202 + 02154508 v 0101 ~ 03751757 n 0000 ~ 03768683 n 0000 ~ 03924978 n 0000 ~ 04462576 n 0000 | any device that receives a signal or stimulus (as heat or pressure or light or motion etc.) and responds to it in a distinctive manner -03181293 06 n 01 detector 1 005 @ 03278248 n 0000 #p 04043733 n 0000 + 02154508 v 0101 ~ 03143400 n 0000 ~ 04142731 n 0000 | electronic equipment that detects the presence of radio signals or radioactivity -03181501 06 n 02 detector 2 demodulator 0 003 @ 04065632 n 0000 #p 04043733 n 0000 + 01351601 v 0201 | rectifier that extracts modulation from a radio carrier wave -03181667 06 n 04 detention_home 0 detention_house 0 house_of_detention 0 detention_camp 0 001 @ 03111690 n 0000 | an institution where juvenile offenders can be held temporarily (usually under the supervision of a juvenile court) -03181899 06 n 01 detergent 0 006 @ 03040587 n 0000 + 02118181 a 0101 + 01393038 v 0101 ~ 03208062 n 0000 ~ 03648527 n 0000 ~ 03677026 n 0000 | a cleansing agent that differs from soap but can also emulsify oils and hold dirt in suspension -03182140 06 n 01 detonating_fuse 0 001 @ 03407122 n 0000 | a fuse containing an explosive -03182232 06 n 03 detonator 0 detonating_device 0 cap 5 004 @ 03305522 n 0000 + 00306723 v 0102 ~ 02850060 n 0000 ~ 03915320 n 0000 | a mechanical or electrical explosive device or a small amount of explosive; can be used to initiate the reaction of a disrupting explosive -03182506 06 n 02 detour 0 roundabout_way 0 002 @ 04096066 n 0000 + 02066203 v 0101 | a roundabout road (especially one that is used temporarily while a main route is blocked) -03182683 06 n 01 detox 0 001 @ 04549919 n 0000 | the hospital ward or clinic in which patients are detoxified -03182795 06 n 02 deuce 0 two 0 001 @ 03963982 n 0000 | one of the four playing cards in a deck that have two spots -03182912 06 n 01 developer 0 003 @ 03926148 n 0000 + 02138766 v 0101 ~ 04327544 n 0000 | photographic equipment consisting of a chemical solution for developing film -03183080 06 n 01 device 0 128 @ 03575240 n 0000 ~ 02676261 n 0000 ~ 02678897 n 0000 ~ 02683558 n 0000 ~ 02684356 n 0000 ~ 02688443 n 0000 ~ 02694426 n 0000 ~ 02729965 n 0000 ~ 02730265 n 0000 ~ 02748183 n 0000 ~ 02762169 n 0000 ~ 02776205 n 0000 ~ 02839477 n 0000 ~ 02843553 n 0000 ~ 02855089 n 0000 ~ 02874442 n 0000 ~ 02895438 n 0000 ~ 02895606 n 0000 ~ 02909408 n 0000 ~ 02911158 n 0000 ~ 02982232 n 0000 ~ 03008976 n 0000 ~ 03044801 n 0000 ~ 03074855 n 0000 ~ 03075768 n 0000 ~ 03088707 n 0000 ~ 03096593 n 0000 ~ 03099945 n 0000 ~ 03108759 n 0000 ~ 03111899 n 0000 ~ 03141702 n 0000 ~ 03142579 n 0000 ~ 03153585 n 0000 ~ 03161016 n 0000 ~ 03161450 n 0000 ~ 03172038 n 0000 ~ 03175604 n 0000 ~ 03177708 n 0000 ~ 03180969 n 0000 ~ 03193754 n 0000 ~ 03243218 n 0000 ~ 03246653 n 0000 ~ 03267972 n 0000 ~ 03269401 n 0000 ~ 03277771 n 0000 ~ 03287351 n 0000 ~ 03302790 n 0000 ~ 03305522 n 0000 ~ 03320046 n 0000 ~ 03339643 n 0000 ~ 03345837 n 0000 ~ 03357893 n 0000 ~ 03402785 n 0000 ~ 03423099 n 0000 ~ 03461988 n 0000 ~ 03464467 n 0000 ~ 03508101 n 0000 ~ 03508485 n 0000 ~ 03525827 n 0000 ~ 03537241 n 0000 ~ 03553019 n 0000 ~ 03565288 n 0000 ~ 03568117 n 0000 ~ 03574816 n 0000 ~ 03579791 n 0000 ~ 03580990 n 0000 ~ 03598385 n 0000 ~ 03613294 n 0000 ~ 03614007 n 0000 ~ 03617834 n 0000 ~ 03626760 n 0000 ~ 03664514 n 0000 ~ 03664675 n 0000 ~ 03666591 n 0000 ~ 03699975 n 0000 ~ 03705379 n 0000 ~ 03738472 n 0000 ~ 03744840 n 0000 ~ 03800933 n 0000 ~ 03819448 n 0000 ~ 03827536 n 0000 ~ 03851341 n 0000 ~ 03865820 n 0000 ~ 03887330 n 0000 ~ 03904909 n 0000 ~ 03929660 n 0000 ~ 03997274 n 0000 ~ 04007664 n 0000 ~ 04010779 n 0000 ~ 04019696 n 0000 ~ 04069276 n 0000 ~ 04073425 n 0000 ~ 04074963 n 0000 ~ 04078955 n 0000 ~ 04081844 n 0000 ~ 04114844 n 0000 ~ 04120093 n 0000 ~ 04151108 n 0000 ~ 04200537 n 0000 ~ 04200908 n 0000 ~ 04202282 n 0000 ~ 04210120 n 0000 ~ 04217718 n 0000 ~ 04252331 n 0000 ~ 04261767 n 0000 ~ 04263760 n 0000 ~ 04294212 n 0000 ~ 04313867 n 0000 ~ 04331639 n 0000 ~ 04336034 n 0000 ~ 04346679 n 0000 ~ 04349913 n 0000 ~ 04359589 n 0000 ~ 04369856 n 0000 ~ 04375080 n 0000 ~ 04386456 n 0000 ~ 04398167 n 0000 ~ 04430158 n 0000 ~ 04435870 n 0000 ~ 04450749 n 0000 ~ 04461879 n 0000 ~ 04474466 n 0000 ~ 04483073 n 0000 ~ 04519536 n 0000 ~ 04520962 n 0000 ~ 04526964 n 0000 ~ 04554406 n 0000 ~ 04559166 n 0000 | an instrumentality invented for a particular purpose; "the device is small enough to wear on your wrist"; "a device intended to conserve water" -03185562 06 n 01 device 1 003 @ 03282591 n 0000 ;c 05801594 n 0000 ~ 04509815 n 0000 | an emblematic design (especially in heraldry); "he was recognized by the device on his shield" -03185746 06 n 01 device 2 002 @ 03178782 n 0000 ~ 04159058 n 0000 | any ornamental pattern or design (as in embroidery) -03185868 06 n 02 Dewar_flask 0 Dewar 0 001 @ 04518132 n 0000 | vacuum flask that holds liquid air or helium for scientific experiments -03186005 06 n 02 dextroamphetamine_sulphate 0 Dexedrine 0 002 @ 02704153 n 0000 ;u 06845599 n 0201 | an isomer of amphetamine (trade name Dexedrine) used as a central nervous system stimulant -03186199 06 n 01 dhoti 0 001 @ 02896294 n 0000 | a long loincloth worn by Hindu men -03186285 06 n 01 dhow 0 002 @ 04128837 n 0000 %p 03645730 n 0000 | a lateen-rigged sailing vessel used by Arabs -03186399 06 n 01 diagram 0 009 @ 03234306 n 0000 + 01715430 a 0101 + 01715430 a 0102 + 01693453 v 0101 ~ 02853991 n 0000 ~ 03537714 n 0000 ~ 04145578 n 0000 ~ 04525821 n 0000 ~ 04615456 n 0000 | a drawing intended to explain how something works; a drawing showing the relation between the parts -03186696 06 n 01 dial 0 002 @ 03313602 n 0000 #p 04437953 n 0000 | the face of a timepiece; graduated to show the hours -03186818 06 n 02 dial 1 telephone_dial 0 005 @ 04169437 n 0000 #p 03187595 n 0000 + 00676135 v 0101 + 00790308 v 0101 %p 03341707 n 0000 | a disc on a telephone that is rotated a fixed distance for each number called -03187037 06 n 01 dial 2 001 @ 03568117 n 0000 | the circular graduated indicator on various measuring instruments -03187153 06 n 01 dial 3 001 @ 03096960 n 0000 | the control on a radio or television set that is used for tuning -03187268 06 n 02 dialog_box 0 panel 3 003 @ 04588739 n 0000 #p 06575681 n 0000 ;c 06128570 n 0000 | (computer science) a small temporary window in a graphical user interface that appears in order to request information from the user; after the information has been provided the user dismisses the box with `okay' or `cancel' -03187595 06 n 02 dial_telephone 0 dial_phone 0 002 @ 04401088 n 0000 %p 03186818 n 0000 | a telephone with a dial for registering the number to be called -03187751 06 n 02 dialyzer 0 dialysis_machine 0 003 @ 03739693 n 0000 + 00330426 v 0102 ~ 02746008 n 0000 | a medical instrument for separating substances in solution by unequal diffusion through semipermeable membranes -03187972 06 n 01 diamond 1 002 @ 03963982 n 0000 #m 03771261 n 0000 | a playing card in the minor suit that has one or more red rhombuses on it; "he led a small diamond"; "diamonds were trumps" -03188168 06 n 01 diamond_point 0 002 @ 03974215 n 0000 #p 04346679 n 0000 | a very hard small point made from a diamond -03188290 06 n 01 diamante 1 001 @ 03309808 n 0000 | fabric covered with glittering ornaments such as sequins or rhinestones -03188416 06 n 02 diapason 0 diapason_stop 0 001 @ 03854998 n 0000 | either of the two main stops on a pipe organ -03188531 06 n 03 diaper 0 nappy 0 napkin 1 001 @ 03419014 n 0000 | garment consisting of a folded cloth drawn up between the legs and fastened at the waist; worn by infants to catch excrement -03188725 06 n 01 diaper 1 001 @ 03309808 n 0000 | a fabric (usually cotton or linen) with a distinctive woven pattern of small repeated figures -03188871 06 n 01 diaphone 0 001 @ 03375171 n 0000 | a foghorn that makes a signal consisting of two tones -03188979 06 n 01 diaphoretic 0 002 @ 03740161 n 0000 + 02712125 a 0101 | used to produce perspiration -03189083 06 n 02 diaphragm 0 stop 2 003 @ 03736970 n 0000 #p 02942699 n 0000 ~ 03584649 n 0000 | a mechanical device in a camera that controls size of aperture of the lens; "the new cameras adjust the diaphragm automatically" -03189311 06 n 01 diaphragm 1 002 @ 03208556 n 0000 #p 03274561 n 0000 | electro-acoustic transducer that vibrates to receive or produce sound waves -03189461 06 n 03 diaphragm 2 pessary 0 contraceptive_diaphragm 0 001 @ 03096593 n 0000 | a contraceptive device consisting of a flexible dome-shaped cup made of rubber or plastic; it is filled with spermicide and fitted over the uterine cervix -03189707 06 n 01 diary 0 002 @ 03602562 n 0000 + 10011486 n 0101 | a personal journal (as a physical object) -03189818 06 n 01 diathermy_machine 0 003 @ 03739693 n 0000 ~ 03761588 n 0000 ~ 04205613 n 0000 | a medical instrument for local heating of bodily tissues for medical purposes -03189995 06 n 02 diazepam 0 Valium 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | a tranquilizer (trade name Valium) used to relieve anxiety and relax muscles; acts by enhancing the inhibitory actions of the neurotransmitter GABA; can also be used as an anticonvulsant drug in cases of nerve agent poisoning -03190303 06 n 02 diazoxide 0 Hyperstat 0 002 @ 04522904 n 0000 ;u 06845599 n 0201 | vasodilator (trade name Hyperstat) used to treat severe hypertension -03190458 06 n 02 dibble 0 dibber 0 003 @ 03489162 n 0000 + 01312123 v 0101 + 01567754 v 0101 | a wooden hand tool with a pointed end; used to make holes in the ground for planting seeds or bulbs -03190655 06 n 01 dibucaine 0 001 @ 03582305 n 0000 | a local anesthetic that is administered by injection -03190763 06 n 04 dideoxycytosine 0 ddC 0 DDC 1 zalcitabine 0 001 @ 02725367 n 0000 | an antiviral drug used to combat HIV infection -03190897 06 n 04 dideoxyinosine 0 ddI 0 DDI 1 didanosine 0 001 @ 02725367 n 0000 | an antiviral drug used to combat HIV infection -03191029 06 n 02 die 0 dice 0 007 @ 03144592 n 0000 + 01138733 v 0201 + 01256867 v 0202 ~ 03353783 n 0000 ~ 03388826 n 0000 ~ 03847214 n 0000 ~ 04225417 n 0000 | a small cube with 1 to 6 spots on the six faces; used in gambling to generate random numbers -03191286 06 n 02 dice_cup 0 dice_box 0 001 @ 03094503 n 0000 | a small container (open at one end) in which dice are shaken by hand and from which they are thrown -03191451 06 n 01 dicer 0 002 @ 03736970 n 0000 + 01256867 v 0102 | a mechanical device used for dicing food -03191561 06 n 04 dickey 0 dickie 0 dicky 0 shirtfront 0 004 @ 03573282 n 0000 #p 04197391 n 0000 + 01274741 a 0301 + 01274741 a 0102 | a man's detachable insert (usually starched) to simulate the front of a shirt -03191776 06 n 06 dickey 1 dickie 1 dicky 1 dickey-seat 0 dickie-seat 0 dicky-seat 0 002 @ 02770830 n 0000 ;r 08860123 n 0000 | a small third seat in the back of an old-fashioned two-seater -03191967 06 n 02 diclofenac_potassium 0 Cataflam 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14599168 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Cataflam) -03192142 06 n 02 diclofenac_sodium 0 Voltaren 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14599168 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Voltaren) that is administered only orally -03192347 06 n 02 dicloxacillin 0 Dynapen 0 002 @ 02716205 n 0000 ;u 06845599 n 0201 | antibacterial (trade name Dynapen) used to treat staphylococcal infections that are resistant to penicillin -03192543 06 n 01 Dictaphone 0 001 @ 04393095 n 0000 | a tape recorder that records and reproduces dictation -03192653 06 n 02 dicumarol 0 dicoumarol 0 001 @ 02718259 n 0000 | an anticoagulant drug that has now been largely replaced by warfarin -03192790 06 n 01 die 1 003 @ 04184600 n 0000 + 01555034 v 0101 ~ 04299963 n 0000 | a device used for shaping metal -03192907 06 n 01 die 2 002 @ 03154073 n 0000 + 01555034 v 0101 | a cutting tool that is fitted into a diestock and used for cutting male (external) screw threads on screws or bolts or pipes or rods -03193107 06 n 03 diesel 0 diesel_engine 0 diesel_motor 0 002 @ 03579982 n 0000 #p 03193597 n 0000 | an internal-combustion engine that burns heavy oil -03193260 06 n 02 diesel-electric_locomotive 0 diesel-electric 0 001 @ 03193597 n 0000 | a locomotive driven by the electric current generated by a diesel engine -03193423 06 n 02 diesel-hydraulic_locomotive 0 diesel-hydraulic 0 001 @ 03193597 n 0000 | a locomotive driven by a hydraulic transmission system powered by a diesel engine -03193597 06 n 01 diesel_locomotive 0 004 @ 03684823 n 0000 %p 03193107 n 0000 ~ 03193260 n 0000 ~ 03193423 n 0000 | a locomotive driven by a diesel engine -03193754 06 n 01 diestock 0 001 @ 03183080 n 0000 | a device that holds the dies that cut external threads on metal cylinders -03193882 06 n 03 diethylstilbesterol 0 DES 0 stilbesterol 0 001 @ 15058023 n 0000 | synthetic nonsteroid with the properties of estrogen; formerly used to treat menstrual problems but was found to be associated with vaginal cancers in the daughters of women so treated during pregnancy -03194170 06 n 01 differential_analyzer 0 001 @ 02708224 n 0000 | an analog computer designed to solve differential equations -03194297 06 n 02 differential_gear 0 differential 0 001 @ 02833793 n 0000 | a bevel gear that permits rotation of two shafts at different speeds; used on the rear axle of automobiles to allow wheels to rotate at different speeds on curves -03194538 06 n 02 diffraction_grating 0 grating 2 002 @ 03851341 n 0000 ~ 03263474 n 0000 | optical device consisting of a surface with many parallel grooves in it; disperses a beam of light (or other electromagnetic radiation) into its wavelengths to produce its spectrum -03194812 06 n 02 diffuser 0 diffusor 0 004 @ 03851341 n 0000 #p 03636649 n 0000 #p 03667380 n 0000 + 01229071 v 0205 | optical device that distributes the light of a lamp evenly -03194992 06 n 02 diffuser 1 diffusor 1 002 @ 02772868 n 0000 + 01229071 v 0205 | baffle that distributes sound waves evenly -03195118 06 n 02 diflunisal 0 Dolobid 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 15010038 n 0000 | nonsteroidal anti-inflammatory (trade name Dolobid) used to treat arthritis and other inflammatory conditions -03195332 06 n 01 digester 0 002 @ 02758960 n 0000 + 01197338 v 0101 | autoclave consisting of a vessel in which plant or animal materials are digested -03195485 06 n 05 diggings 0 digs 0 domiciliation 0 lodgings 0 pad 4 004 @ 03679384 n 0000 + 02652494 v 0401 + 02651424 v 0401 + 02459173 v 0303 | temporary living quarters -03195659 06 n 02 diggings 1 digs 1 002 @ 03302121 n 0000 ;u 06295235 n 0000 | an excavation for ore or precious stones or for archaeology -03195799 06 n 02 digital-analog_converter 0 digital-to-analog_converter 0 001 @ 03163798 n 0000 | device for converting digital signals into analogue signals -03195959 06 n 02 digital_audiotape 0 DAT 0 001 @ 02757810 n 0000 | a digital tape recording of sound -03196062 06 n 01 digital_camera 0 002 @ 02942699 n 0000 ~ 04569063 n 0000 | a camera that encodes an image digitally and store it for later reproduction -03196217 06 n 01 digital_clock 0 001 @ 03046257 n 0000 | a clock that displays the time of day digitally -03196324 06 n 01 digital_computer 0 009 @ 03082979 n 0000 ~ 02916684 n 0000 ~ 03337494 n 0000 ~ 03711711 n 0000 ~ 03770224 n 0000 ~ 03799240 n 0000 ~ 03918480 n 0000 ~ 04541777 n 0000 ~ 04603399 n 0000 | a computer that represents information by numerical (binary) digits -03196598 06 n 02 digital_display 0 alphanumeric_display 0 005 @ 03211117 n 0000 #p 03197201 n 0000 #p 03197337 n 0000 %p 03666362 n 0000 ~ 03676759 n 0000 | a display that gives the information in the form of characters (numbers or letters) -03196841 06 n 01 digital_plethysmograph 0 001 @ 03966325 n 0000 | plethysmograph applied to a digit of the hand or foot to measure skin blood flow -03196990 06 n 02 digital_subscriber_line 0 DSL 0 001 @ 04402057 n 0000 | a generic name for digital lines that are provided by telephone companies to their local subscribers and that carry data at high speeds -03197201 06 n 01 digital_voltmeter 0 002 @ 03279364 n 0000 %p 03196598 n 0000 | an electronic voltmeter that gives readings in digits -03197337 06 n 01 digital_watch 0 002 @ 04555897 n 0000 %p 03196598 n 0000 | a watch with a digital display -03197446 06 n 04 digitizer 0 digitiser 0 analog-digital_converter 0 analog-to-digital_converter 0 003 @ 03163798 n 0000 + 00563824 v 0202 + 00563824 v 0101 | device for converting analogue signals into digital signals -03197666 06 n 01 digitoxin 0 001 @ 15060131 n 0000 | digitalis preparation used to treat congestive heart failure or cardiac arrhythmia -03197804 06 n 02 digoxin 0 Lanoxin 0 002 @ 15060131 n 0000 ;u 06845599 n 0201 | digitalis preparation (trade name Lanoxin) used to treat congestive heart failure or cardiac arrhythmia; helps the heart beat more forcefully -03198028 06 n 01 dihydrostreptomycin 0 001 @ 02716866 n 0000 | antibiotic consisting of a hydrogenated form of streptomycin; used against tuberculosis and tularemia and Gram-negative organisms -03198223 06 n 02 dilator 0 dilater 0 002 @ 04364545 n 0000 + 00305537 v 0101 | a surgical instrument that is used to dilate or distend an opening or an organ -03198383 06 n 01 dilator 1 003 @ 03247620 n 0000 + 00305537 v 0101 ~ 04522904 n 0000 | a drug that causes dilation -03198500 06 n 01 dildo 0 001 @ 04533042 n 0000 | a vibrating device that substitutes for an erect penis to provide vaginal stimulation -03198637 06 n 02 diltiazem 0 Cardizem 0 002 @ 02938514 n 0000 ;u 06845599 n 0201 | a calcium blocker (trade name Cardizem) used in treating hypertension or angina or heart failure -03198819 06 n 02 dime_bag 0 dime 0 001 @ 03167978 n 0000 | street name for a packet of illegal drugs that is sold for ten dollars -03198951 06 n 02 dimenhydrinate 0 Dramamine 0 003 @ 02720725 n 0000 @ 02719750 n 0000 ;u 06845599 n 0201 | antihistamine and antiemetic (trade name Dramamine) used to treat motion sickness -03199142 06 n 01 Dimetapp 0 003 @ 02720725 n 0000 @ 03809939 n 0000 %s 02905422 n 0000 | trade name for a drug containing an antihistamine and a decongestant; used to relieve nasal congestion and to treat rhinitis -03199358 06 n 01 dimity 0 001 @ 03309808 n 0000 | a strong cotton fabric with a raised pattern; used for bedcovers and curtains -03199488 06 n 01 dimmer 0 001 @ 04086794 n 0000 | a rheostat that varies the current through an electric light in order to control the level of illumination -03199647 06 n 01 diner 1 003 @ 04081281 n 0000 + 01167780 v 0101 + 01167981 v 0101 | a restaurant that resembles a dining car -03199775 06 n 01 dinette 0 002 @ 04105893 n 0000 #p 03259505 n 0000 | a small area off of a kitchen that is used for dining -03199901 06 n 03 dinghy 0 dory 0 rowboat 0 005 @ 04244997 n 0000 %p 03905730 n 0000 ~ 04115456 n 0000 %p 04432043 n 0000 ~ 04577139 n 0000 | a small boat of shallow draft with cross thwarts for seats and rowlocks for oars with which it is propelled -03200152 06 n 02 dinky 0 dinkey 0 001 @ 03684823 n 0000 | a small locomotive -03200231 06 n 01 dining_area 0 001 @ 02735688 n 0000 | an area arranged for dining; "they put up tents for the dining area" -03200357 06 n 04 dining_car 0 diner 0 dining_compartment 0 buffet_car 0 003 @ 03895866 n 0000 + 01167780 v 0201 + 01167981 v 0201 | a passenger car where food is served in transit -03200539 06 n 01 dining-hall 0 003 @ 03200701 n 0000 %p 03519674 n 0000 ~ 04067818 n 0000 | a large room at a college or university; used especially for dining -03200701 06 n 02 dining_room 0 dining-room 0 007 @ 04105893 n 0000 #p 03259505 n 0000 %p 02912065 n 0000 ~ 03200539 n 0000 %p 03201035 n 0000 ~ 03751065 n 0000 ~ 04481642 n 0000 | a room used for dining -03200906 06 n 01 dining-room_furniture 0 002 @ 03405725 n 0000 ~ 03201035 n 0000 | furniture intended for use in a dining room -03201035 06 n 01 dining-room_table 0 003 @ 03201208 n 0000 @ 03200906 n 0000 #p 03200701 n 0000 | dining-room furniture consisting of a table on which meals can be served -03201208 06 n 02 dining_table 0 board 1 009 @ 04379964 n 0000 + 02656763 v 0201 + 01177118 v 0201 + 01176897 v 0201 ~ 03201035 n 0000 ~ 03202354 n 0000 ~ 03519674 n 0000 ~ 04067921 n 0000 ~ 04481524 n 0000 | a table at which meals are served; "he helped her clear the dining table"; "a feast was spread upon the board" -03201529 06 n 01 dinner_bell 0 001 @ 02824448 n 0000 | a bell rung to announce that dinner has been served -03201638 06 n 04 dinner_dress 0 dinner_gown 0 formal 0 evening_gown 0 002 @ 03450230 n 0000 @ 03384891 n 0000 | a gown for evening wear -03201776 06 n 04 dinner_jacket 0 tux 0 tuxedo 0 black_tie 1 001 @ 03384891 n 0000 | semiformal evening dress for men -03201895 06 n 01 dinner_napkin 0 001 @ 03807537 n 0000 | a large napkin used when dinner is served -03201996 06 n 02 dinner_pail 0 dinner_bucket 0 001 @ 02909870 n 0000 | a pail in which a workman carries his lunch or dinner -03202123 06 n 01 dinner_plate 0 001 @ 03959485 n 0000 | a plate from which a diner eats during the main course of a meal -03202246 06 n 02 dinner_service 0 dinner_set 0 001 @ 04175380 n 0000 | a table service for serving dinner -03202354 06 n 01 dinner_table 0 002 @ 03201208 n 0000 %p 03652226 n 0000 | the dining table where dinner is served and eaten -03202481 06 n 02 dinner_theater 0 dinner_theatre 0 001 @ 04417809 n 0000 | a theater at which dinner is included in the price of admission -03202622 06 n 01 dinnerware 0 001 @ 04381994 n 0000 | the tableware (plates and platters and serving bowls etc.) used in serving a meal -03202760 06 n 04 diode 0 semiconductor_diode 0 junction_rectifier 0 crystal_rectifier 0 002 @ 04171831 n 0000 ~ 03666362 n 0000 | a semiconductor that consists of a p-n junction -03202940 06 n 03 diode 1 rectifying_tube 0 rectifying_valve 0 001 @ 04494204 n 0000 | a thermionic tube having two electrodes; used as a rectifier -03203089 06 n 01 dip 0 002 @ 02948072 n 0000 + 01660976 v 0101 | a candle that is made by repeated dipping in a pool of wax or tallow -03203225 06 n 02 diphenhydramine 0 Benadryl 0 001 @ 02720725 n 0000 | antihistamine (trade name Benadryl) used to treat allergic reactions involving the nasal passages (hay fever) and also to treat motion sickness -03203441 06 n 03 diphenylhydantoin 0 phenytoin 0 Dilantin 0 002 @ 03550533 n 0000 ;u 06845599 n 0301 | an anticonvulsant drug (trade name Dilantin) used to treat epilepsy and that is not a sedative -03203641 06 n 01 diphenylbutyl_piperidine 0 002 @ 03713736 n 0000 ~ 03940154 n 0000 | a group of antipsychotic drugs used mainly in the treatment of schizophrenia -03203806 06 n 01 diplomatic_building 0 003 @ 03449564 n 0000 ~ 03093427 n 0000 ~ 03282295 n 0000 | government building in which diplomats live or work -03203959 06 n 01 diplomatic_pouch 0 001 @ 03709960 n 0000 | a mail pouch that is sealed shut and that is used to carry communications between a legation and its home office -03204134 06 n 02 dipole 0 dipole_antenna 0 001 @ 02715229 n 0000 | an aerial half a wavelength long consisting of two rods connected to a transmission line at the center -03204306 06 n 01 dipper 0 003 @ 03633091 n 0000 + 01192312 v 0102 + 01577093 v 0102 | a ladle that has a cup with a long handle -03204436 06 n 01 dipstick 0 001 @ 03429288 n 0000 | a graduated rod dipped into a container to indicate the fluid level -03204558 06 n 02 DIP_switch 0 dual_inline_package_switch 0 002 @ 04445952 n 0000 ;c 06128570 n 0000 | (computer science) one of a set of small on-off switches mounted in computer hardware; used in place of jumpers to configure the machine for a user -03204810 06 n 01 diptych 0 001 @ 02743547 n 0000 | a painting or carving (especially an altarpiece) on two panels (usually hinged like a book) -03204955 06 n 01 directional_antenna 0 004 @ 02715229 n 0000 ~ 02742194 n 0000 ~ 03207305 n 0000 ~ 04610274 n 0000 | an antenna that transmits or receives signals only in a narrow angle -03205143 06 n 01 directional_microphone 0 002 @ 03759954 n 0000 ~ 02963692 n 0000 | a microphone that is designed to receive sound from a particular direction -03205304 06 n 01 direction_finder 0 003 @ 04060647 n 0000 ~ 03447894 n 0000 ~ 04042204 n 0000 | radio; determines the direction of incoming radio waves -03205458 06 n 01 dirk 0 002 @ 03158885 n 0000 ;r 08890097 n 0000 | a relatively long dagger with a straight blade -03205574 06 n 01 dirndl 0 001 @ 03236735 n 0000 | a dress with a tight bodice and full skirt -03205669 06 n 01 dirndl 1 001 @ 03429003 n 0000 | a full skirt with a gathered waistband -03205760 06 n 01 dirt_track 0 004 @ 04037625 n 0000 ~i 02827289 n 0000 ~i 03028907 n 0000 ~i 03940022 n 0000 | a racetrack that is not paved -03205903 06 n 01 dirty_bomb 0 001 @ 02753044 n 0000 | an atom bomb that leaves considerable radioactive contamination -03206023 06 n 01 discharge_lamp 0 001 @ 03636248 n 0000 | a lamp that generates light by a discharge between two electrodes in a gas -03206158 06 n 01 discharge_pipe 0 002 @ 03944672 n 0000 ~ 03550916 n 0000 | a pipe through which fluids can be discharged -03206282 06 n 02 disco 0 discotheque 0 001 @ 02783324 n 0000 | a public dance hall for dancing to recorded popular music -03206405 06 n 04 discount_house 0 discount_store 0 discounter 0 wholesale_house 0 003 @ 03748162 n 0000 #m 08061695 n 0000 + 02319428 v 0301 | a sales outlet offering goods at a discounted price -03206602 06 n 02 discus 0 saucer 1 002 @ 03208556 n 0000 @ 04285146 n 0000 | a disk used in throwing competitions -03206718 06 n 01 disguise 0 004 @ 02756098 n 0000 + 02158587 v 0101 ~ 03320519 n 0000 ~ 03724870 n 0000 | any attire that modifies the appearance in order to conceal the wearer's identity -03206908 06 n 01 dish 0 013 @ 03133538 n 0000 @ 03094503 n 0000 + 01180351 v 0105 ~ 02880940 n 0000 ~ 02927764 n 0000 ~ 02978753 n 0000 ~ 03105214 n 0000 ~ 03456024 n 0000 ~ 03920288 n 0000 ~ 04050933 n 0000 ~ 04176190 n 0000 ~ 04350581 n 0000 ~ 04556664 n 0000 | a piece of dishware normally used as a container for holding or serving food; "we gave them a set of dishes for a wedding present" -03207305 06 n 04 dish 1 dish_aerial 0 dish_antenna 0 saucer 2 004 @ 03204955 n 0000 #p 04039848 n 0000 #p 04044716 n 0000 ~ 04142999 n 0000 | directional antenna consisting of a parabolic reflector for microwave or radio frequency radiation -03207548 06 n 01 dishpan 0 001 @ 03880323 n 0000 | large pan for washing dishes -03207630 06 n 01 dish_rack 0 001 @ 04038727 n 0000 | a rack for holding dishes as dishwater drains off of them -03207743 06 n 02 dishrag 0 dishcloth 0 001 @ 03932670 n 0000 | a cloth for washing dishes -03207835 06 n 03 dishtowel 0 dish_towel 0 tea_towel 0 001 @ 04459362 n 0000 | a towel for drying dishes -03207941 06 n 03 dishwasher 0 dish_washer 0 dishwashing_machine 0 001 @ 04580493 n 0000 | a machine for washing dishes -03208062 06 n 03 dishwasher_detergent 0 dishwashing_detergent 0 dishwashing_liquid 0 001 @ 03181899 n 0000 | a low-sudsing detergent designed for use in dishwashers -03208229 06 n 04 disinfectant 0 germicide 0 antimicrobic 0 antimicrobial 0 008 @ 14778436 n 0000 + 01165474 a 0401 + 01165474 a 0302 + 02116054 a 0203 + 02116054 a 0102 + 00089324 v 0101 ~ 14805550 n 0000 ~ 15045490 n 0000 | an agent (as heat or radiation or a chemical) that destroys microorganisms that might carry disease -03208556 06 n 02 disk 0 disc 0 011 @ 03959936 n 0000 @ 03032811 n 0000 ~ 02675077 n 0000 ~ 02890188 n 0000 ~ 03165955 n 0000 ~ 03189311 n 0000 ~ 03206602 n 0000 ~ 03397947 n 0000 ~ 03954393 n 0000 ~ 04019541 n 0000 ~ 04448361 n 0000 | a flat circular plate -03208815 06 n 01 disk_access 0 001 @ 02671224 n 0000 | memory access to the computer disk on which information is stored -03208938 06 n 02 disk_brake 0 disc_brake 0 003 @ 03551084 n 0000 %p 02890188 n 0000 %p 02890662 n 0000 | hydraulic brake in which friction is applied to both sides of a spinning disk by the brake pads -03209141 06 n 01 disk_cache 0 002 @ 02935017 n 0000 #p 03082979 n 0000 | a cache that stores copies of frequently used disk sectors in random access memory (RAM) so they can be read without accessing the slower disk -03209359 06 n 01 disk_clutch 0 001 @ 03396654 n 0000 | a friction clutch in which the frictional surfaces are disks -03209477 06 n 01 disk_controller 0 002 @ 03096960 n 0000 ;c 06128570 n 0000 | (computer science) a circuit or chip that translates commands into a form that can control a hard disk drive -03209666 06 n 04 disk_drive 0 disc_drive 0 hard_drive 0 Winchester_drive 0 003 @ 03243218 n 0000 ;c 06128570 n 0000 %p 03492542 n 0000 | computer hardware that holds and spins a magnetic or optical disk and reads and writes information on it -03209910 06 n 03 diskette 0 floppy 0 floppy_disk 0 003 @ 03706653 n 0000 #p 03082979 n 0000 + 03706653 n 0103 | a small plastic magnetic disk enclosed in a stiff envelope with a radial slit; used to store data or programs for a microcomputer; "floppy disks are noted for their relatively slow speed and small capacity and low price" -03210245 06 n 02 disk_harrow 0 disc_harrow 0 001 @ 03496612 n 0000 | a harrow with a series of disks set on edge at an angle -03210372 06 n 02 dispatch_case 0 dispatch_box 0 001 @ 02974697 n 0000 | case consisting of an oblong container (usually having a lock) for carrying dispatches or other valuables -03210552 06 n 01 dispensary 0 002 @ 03043274 n 0000 + 00081072 v 0102 | clinic where medicine and medical supplies are dispensed -03210683 06 n 01 dispenser 0 008 @ 03094503 n 0000 + 02294436 v 0107 ~ 02682922 n 0000 ~ 02754103 n 0000 ~ 03571280 n 0000 ~ 04103769 n 0000 ~ 04239900 n 0000 ~ 04254120 n 0000 | a container so designed that the contents can be used in prescribed amounts -03210940 06 n 02 display 0 presentation 0 005 @ 04076846 n 0000 + 01688771 v 0202 ~ 03364775 n 0000 ~ 04249705 n 0000 ~ 04271891 n 0000 | a visual representation of something -03211117 06 n 02 display 1 video_display 0 010 @ 03277771 n 0000 ~ 02940570 n 0000 ~ 03196598 n 0000 ~ 03211616 n 0000 ~ 03361380 n 0000 ~ 03782190 n 0000 %p 04054795 n 0000 ~ 04152593 n 0000 ~ 04539053 n 0000 ~ 04588739 n 0000 | an electronic device that represents information in visual form -03211413 06 n 02 display_adapter 0 display_adaptor 0 002 @ 03277771 n 0000 ;c 06128570 n 0000 | (computer science) an electronic device that converts information in memory to video output to a display -03211616 06 n 03 display_panel 0 display_board 0 board 3 002 @ 03211117 n 0000 ~ 02837134 n 0000 | a vertical surface on which information can be displayed to public view -03211789 06 n 04 display_window 0 shop_window 0 shopwindow 0 show_window 0 002 @ 04587648 n 0000 #p 04203705 n 0000 | a window of a store facing onto the street; used to display merchandise for sale in the store -03212003 06 n 01 disposable 0 001 @ 03588414 n 0000 | an item that can be disposed of after it has been used -03212114 06 n 03 disposal 0 electric_pig 0 garbage_disposal 0 001 @ 03620052 n 0000 | a kitchen appliance for disposing of garbage -03212247 06 n 02 disrupting_explosive 0 bursting_explosive 0 001 @ 14853210 n 0000 | a high explosive that is used to damage the target that is under attack -03212406 06 n 01 distaff 0 002 @ 04296261 n 0000 #p 04279462 n 0000 | the staff on which wool or flax is wound before spinning -03212535 06 n 01 distemper 0 002 @ 03876519 n 0000 + 01683422 v 0101 | a painting created with paint that is made by mixing the pigments with water and a binder -03212698 06 n 01 distemper 1 001 @ 03875218 n 0000 | paint made by mixing the pigments with water and a binder -03212811 06 n 02 distillery 0 still 2 005 @ 03956922 n 0000 + 00229280 v 0101 + 00229026 v 0101 %p 03064562 n 0000 ~ 04592465 n 0000 | a plant and works where alcoholic drinks are made by distillation -03213014 06 n 03 distributor 0 distributer 0 electrical_distributor 0 008 @ 03269401 n 0000 #p 03560567 n 0000 + 02294436 v 0201 %p 02955247 n 0000 %p 03213361 n 0000 %p 03213538 n 0000 %p 03213826 n 0000 %p 04112147 n 0000 | electrical device that distributes voltage to the spark plugs of a gasoline engine in the order of the firing sequence -03213361 06 n 01 distributor_cam 0 002 @ 02941716 n 0000 #p 03213014 n 0000 | the cam inside the distributor that rotates to contact spark plug terminals in the correct order -03213538 06 n 01 distributor_cap 0 002 @ 02955065 n 0000 #p 03213014 n 0000 | the cap of the distributor that holds in place the wires from the distributor to the spark plugs -03213715 06 n 01 distributor_housing 0 001 @ 03546766 n 0000 | the housing that supports the distributor cam -03213826 06 n 03 distributor_point 0 breaker_point 0 point 3 002 @ 03093792 n 0000 #p 03213014 n 0000 | a contact in the distributor; as the rotor turns its projecting arm contacts them and current flows to the spark plugs -03214051 06 n 02 disulfiram 0 Antabuse 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | a drug (trade name Antabuse) used in the treatment of alcoholism; causes nausea and vomiting if alcohol is ingested -03214253 06 n 01 ditch 0 007 @ 03302121 n 0000 + 01311896 v 0102 ~ 03232309 n 0000 ~ 03587205 n 0000 ~ 04356423 n 0000 ~ 04478657 n 0000 ~ 04478889 n 0000 | a long narrow excavation in the earth -03214450 06 n 02 ditch_spade 0 long-handled_spade 0 001 @ 04266486 n 0000 | a spade with a long handle for digging narrow ditches -03214582 06 n 01 ditty_bag 0 001 @ 03619650 n 0000 | kit used by sailors and soldiers -03214670 06 n 03 diuretic_drug 0 diuretic 0 water_pill 0 007 @ 03247620 n 0000 ~ 03023623 n 0000 ~ 03299648 n 0000 ~ 03406597 n 0000 ~ 03567325 n 0000 ~ 03718056 n 0000 ~ 04423288 n 0000 | any substance that tends to increase the flow of urine, which causes the body to get rid of excess water -03214966 06 n 01 divan 0 001 @ 04256520 n 0000 | a long backless sofa (usually with pillows against a wall) -03215076 06 n 02 divan 1 diwan 1 002 @ 02857644 n 0000 @ 03004146 n 0000 | a Muslim council chamber or law court -03215191 06 n 01 dive_bomber 0 002 @ 02867715 n 0000 + 01132667 v 0101 | a bomber that releases its bombs during a steep dive toward the target -03215337 06 n 02 diverging_lens 0 concave_lens 0 001 @ 03656484 n 0000 | a lens such that a parallel beam of light passing through it is caused to diverge or spread out -03215508 06 n 02 divided_highway 0 dual_carriageway 0 001 @ 03519981 n 0000 | a highway divided down the middle by a barrier that separates traffic going in different directions; "in Britain they call a divided highway a dual carriageway" -03215749 06 n 01 divider 1 001 @ 03231160 n 0000 | a drafting instrument resembling a compass that is used for dividing lines into equal segments or for transferring measurements -03215930 06 n 01 diving_bell 0 001 @ 04348359 n 0000 | diving apparatus for underwater work; has an open bottom and is supplied with compressed air -03216080 06 n 01 diving_board 0 002 @ 04288673 n 0000 ~ 03518230 n 0000 | a springboard from which swimmers can dive -03216199 06 n 05 divining_rod 0 dowser 0 dowsing_rod 0 waterfinder 0 water_finder 0 002 @ 04317420 n 0000 + 01315140 v 0201 | forked stick that is said to dip down to indicate underground water or oil -03216402 06 n 02 diving_suit 0 diving_dress 0 001 @ 04015204 n 0000 | a weighted and hermetically sealed garment supplied with air; worn by underwater divers -03216562 06 n 01 dixie 0 002 @ 03990474 n 0000 ;r 08860123 n 0000 | a large metal pot (12 gallon camp kettle) for cooking; used in military camps -03216710 06 n 02 Dixie_cup 0 paper_cup 0 001 @ 03147509 n 0000 | a disposable cup made of paper; for holding drinks -03216828 06 n 03 dock 0 dockage 0 docking_facility 0 007 @ 03638321 n 0000 #p 08639058 n 0000 + 02085742 v 0201 + 01305731 v 0101 + 02085742 v 0101 ~ 03251533 n 0000 ~ 03721590 n 0000 | landing in a harbor next to a pier where ships are loaded and unloaded or repaired; may have gates to let water in or out; "the ship arrived at the dock more than a day late" -03217191 06 n 01 dock 2 002 @ 03285912 n 0000 ;c 08441203 n 0000 | an enclosure in a court of law where the defendant sits during the trial -03217333 06 n 02 dock 3 loading_dock 0 001 @ 03961939 n 0000 | a platform where trucks or trains can be loaded or unloaded -03217458 06 n 01 document 0 004 @ 04076846 n 0000 + 02896789 a 0102 + 02896789 a 0101 ~ 06624161 n 0000 | anything serving as a representation of a person's thinking by means of symbolic marks -03217653 06 n 01 doeskin 0 001 @ 03309808 n 0000 | a fine smooth soft woolen fabric -03217739 06 n 01 dogcart 0 001 @ 02970849 n 0000 | a cart drawn by a dog -03217814 06 n 01 dog_collar 0 001 @ 03068486 n 0000 | a collar for a dog -03217889 06 n 02 doggie_bag 0 doggy_bag 0 001 @ 04122825 n 0000 | a bag for food that a customer did not eat at a restaurant; the transparent pretense is that the food is taken home to feed the customer's dog -03218100 06 n 01 dogleg 0 001 @ 03526805 n 0000 | a golf hole with a sharp angle in the fairway -03218198 06 n 03 dogsled 0 dog_sled 0 dog_sleigh 0 003 @ 04235291 n 0000 ;r 08820121 n 0000 + 01939406 v 0101 | a sled pulled by dogs -03218334 06 n 01 dogtooth 0 001 @ 02734423 n 0000 | a carved pyramidal ornament; used in 13th century England -03218446 06 n 01 dog_wrench 0 001 @ 04606574 n 0000 | a wrench with a handle shaped like a crank -03218545 06 n 12 doodad 0 doohickey 0 doojigger 0 gimmick 0 gizmo 1 gismo 1 gubbins 0 thingamabob 0 thingumabob 0 thingmabob 0 thingamajig 0 thingumajig 0 thingmajig 0 thingummy 0 whatchamacallit 0 whatchamacallum 0 whatsis 0 widget 1 001 @ 04345288 n 0000 | something unspecified whose name is either forgotten or not known; "she eased the ball-shaped doodad back into its socket"; "there may be some great new gizmo around the corner that you will want to use" -03219010 06 n 03 doily 0 doyley 0 doyly 0 001 @ 03672352 n 0000 | a small round piece of linen placed under a dish or bowl -03219135 06 n 02 doll 0 dolly 0 008 @ 03964744 n 0000 ~ 03447358 n 0000 ~ 03607029 n 0000 ~ 03887066 n 0000 ~ 04025130 n 0000 ~ 04046172 n 0000 ~ 04140340 n 0000 ~ 04462318 n 0000 | a small replica of a person; used as a toy -03219362 06 n 02 dollhouse 0 doll's_house 0 001 @ 03964744 n 0000 | a small model of a house used as a toy by children -03219483 06 n 02 dollhouse 1 doll's_house 1 001 @ 03544360 n 0000 | a house so small that it is likened to a child's plaything -03219612 06 n 01 dolly 1 001 @ 03100490 n 0000 | conveyance consisting of a wheeled platform for moving heavy objects -03219732 06 n 01 dolly 2 001 @ 03100490 n 0000 | conveyance consisting of a wheeled support on which a camera can be mounted -03219859 06 n 01 dolman 0 002 @ 03045337 n 0000 %p 03220095 n 0000 | a woman's cloak with dolman sleeves -03219966 06 n 02 dolman 1 dolman_jacket 0 002 @ 03589791 n 0000 %p 03220095 n 0000 | a hussar's jacket worn over the shoulders -03220095 06 n 01 dolman_sleeve 0 003 @ 04236377 n 0000 #p 03219859 n 0000 #p 03219966 n 0000 | a sleeve with a large armhole and tight cuff -03220237 06 n 03 dolmen 0 cromlech 0 portal_tomb 0 001 @ 03743016 n 0000 | a prehistoric megalithic tomb typically having two large upright stones and a capstone -03220401 06 n 02 dolphin_striker 0 martingale 2 001 @ 04267577 n 0000 | spar under the bowsprit of a sailboat -03220513 06 n 01 dome 0 007 @ 04105068 n 0000 ~ 02751067 n 0000 ~ 03148727 n 0000 ~ 03435593 n 0000 ~ 03847471 n 0000 ~ 04001397 n 0000 ~ 04579230 n 0000 | a hemispherical roof -03220692 06 n 03 dome 1 domed_stadium 0 covered_stadium 0 001 @ 04295881 n 0000 | a stadium that has a roof -03220802 06 n 01 domino 0 005 @ 02852523 n 0000 ~ 03353783 n 0000 ~ 03388826 n 0000 ~ 03847214 n 0000 ~ 04225417 n 0000 | a small rectangular block used in playing the game of dominoes; the face of each block has two equal areas that can bear 0 to 6 dots -03221059 06 n 03 domino 1 half_mask 0 eye_mask 0 001 @ 03724870 n 0000 | a mask covering the upper part of the face but with holes for the eyes -03221205 06 n 01 domino 2 002 @ 03045337 n 0000 #p 03320519 n 0000 | a loose hooded cloak worn with a half mask as part of a masquerade costume -03221351 06 n 01 dongle 0 002 @ 03277771 n 0000 ;c 06128570 n 0000 | (computer science) an electronic device that must be attached to a computer in order for it to use protected software -03221540 06 n 01 donkey_jacket 0 001 @ 03589791 n 0000 | a short thick jacket; often worn by workmen -03221643 06 n 01 doodlebug 1 001 @ 03791235 n 0000 | a small motor vehicle -03221720 06 n 01 door 0 015 @ 03795580 n 0000 #p 03224032 n 0000 ~ 02963821 n 0000 ~ 02964934 n 0000 ~ 03226880 n 0000 ~ 03345362 n 0000 ~ 03394649 n 0000 ~ 03579538 n 0000 %p 03682487 n 0000 ~ 04086446 n 0000 ~ 04153025 n 0000 ~ 04239074 n 0000 ~ 04329834 n 0000 ~ 04371979 n 0000 ~ 04475309 n 0000 | a swinging or sliding barrier that will close the entrance to a room or building or vehicle; "he knocked on the door"; "he slammed the door as he left" -03222176 06 n 01 door 3 001 @ 04105893 n 0000 | a room that is entered via a door; "his office is the third door down the hall on the left" -03222318 06 n 01 door 4 001 @ 04341686 n 0000 | a structure where people live or work (usually ordered along a street or road); "the office next door"; "they live two doors up the street from us" -03222516 06 n 03 doorbell 0 bell 2 buzzer 0 004 @ 04027023 n 0000 + 02182109 v 0301 + 00792304 v 0301 ~ 03824197 n 0000 | a push button at an outer door that gives a ringing or buzzing signal when pushed -03222722 06 n 02 doorframe 0 doorcase 0 003 @ 03391770 n 0000 #p 03224032 n 0000 %p 03222857 n 0000 | the frame that supports a door -03222857 06 n 02 doorjamb 0 doorpost 0 002 @ 03592773 n 0000 #p 03222722 n 0000 | a jamb for a door -03222959 06 n 02 doorknob 0 doorhandle 0 003 @ 03626014 n 0000 #p 03307274 n 0000 ;r 08860123 n 0000 | a knob used to release the catch when opening a door (often called `doorhandle' in Great Britain) -03223162 06 n 01 doorlock 0 004 @ 03682487 n 0000 #p 03307274 n 0000 #p 02963821 n 0000 ~ 03824589 n 0000 | a lock on an exterior door -03223299 06 n 02 doormat 0 welcome_mat 0 001 @ 03727837 n 0000 | a mat placed outside an exterior door for wiping the shoes before entering -03223441 06 n 01 doornail 0 001 @ 03804744 n 0000 | a nail with a large head; formerly used to decorate doors -03223553 06 n 01 doorplate 0 001 @ 03806652 n 0000 | a nameplate fastened to a door; indicates the person who works or lives there -03223686 06 n 03 doorsill 0 doorstep 0 threshold 1 002 @ 04220036 n 0000 #p 03224032 n 0000 | the sill of a door; a horizontal piece of wood or stone that forms the bottom of a doorway and offers support when passing through a doorway -03223923 06 n 02 doorstop 0 doorstopper 0 001 @ 02982790 n 0000 | a stop that keeps open doors from moving -03224032 06 n 04 doorway 0 door 1 room_access 0 threshold 2 007 @ 03290771 n 0000 #p 04546855 n 0000 %p 02977619 n 0000 %p 03221720 n 0000 %p 03222722 n 0000 %p 03223686 n 0000 ~ 03307274 n 0000 | the entrance (the space in a wall) through which you enter or leave a room or building; the space that a door can close; "he stuck his head in the doorway" -03224387 06 n 01 dooryard 0 001 @ 04610879 n 0000 | a yard outside the front or rear door of a house -03224490 06 n 01 Doppler_radar 0 001 @ 04039848 n 0000 | radar that uses the Doppler shift to measure velocity -03224603 06 n 02 dormer 0 dormer_window 0 001 @ 04587648 n 0000 | a gabled extension built out from a sloping roof to accommodate a vertical window -03224753 06 n 01 dormer_window 1 002 @ 04587648 n 0000 ~ 03868324 n 0000 | the window in a gabled extension built to accommodate a window -03224893 06 n 05 dormitory 0 dorm 0 residence_hall 0 hall 4 student_residence 0 003 @ 03679384 n 0000 @ 02913152 n 0000 ~ 03479397 n 0000 | a college or university building containing living quarters for students -03225108 06 n 03 dormitory 1 dormitory_room 0 dorm_room 0 001 @ 02821627 n 0000 | a large sleeping room containing several beds -03225238 06 n 02 dose 0 dosage 0 007 @ 03740161 n 0000 + 00084738 v 0102 ~ 02872172 n 0000 ~ 03230670 n 0000 ~ 03522559 n 0000 ~ 03657825 n 0000 ~ 03936568 n 0000 | a measured portion of medicine taken at any one time -03225458 06 n 02 dosemeter 0 dosimeter 0 001 @ 03733925 n 0000 | a measuring instrument for measuring doses of ionizing radiation (X-rays or radioactivity) -03225616 06 n 02 dossal 0 dossel 0 001 @ 03491178 n 0000 | an ornamental hanging of rich fabric hung behind the altar of a church or at the sides of a chancel -03225777 06 n 03 dot_matrix_printer 0 matrix_printer 0 dot_printer 0 003 @ 04004767 n 0000 ~ 03571942 n 0000 ~ 04595285 n 0000 | a printer that represents each character as a pattern of dots from a dot matrix -03225988 06 n 01 double_bed 0 001 @ 02818832 n 0000 | a bed wide enough to accommodate two sleepers -03226090 06 n 04 double-bitted_ax 0 double-bitted_axe 0 Western_ax 0 Western_axe 0 001 @ 02764044 n 0000 | an ax that has cutting edges on both sides of the head -03226254 06 n 02 double_boiler 0 double_saucepan 0 001 @ 04138977 n 0000 | two saucepans, one fitting inside the other -03226375 06 n 01 double-breasted_jacket 0 002 @ 03589791 n 0000 #p 03226538 n 0000 | a jacket having fronts that overlap enough for two separate rows of buttons -03226538 06 n 01 double-breasted_suit 0 002 @ 04350905 n 0000 %p 03226375 n 0000 | a suit with a double-breasted jacket -03226660 06 n 01 double_clinch 0 001 @ 03042984 n 0000 | a clinch with two loops -03226743 06 n 02 double_crochet 0 double_stitch 0 003 @ 03133177 n 0000 + 01673137 v 0202 + 01673137 v 0101 | a kind of crochet stitch -03226880 06 n 01 double_door 0 001 @ 03221720 n 0000 | two vertical doors that meet in the middle of the door frame when closed -03227010 06 n 01 double_glazing 0 001 @ 04587648 n 0000 | a window with two panes of glass and a space between them; reduces heat and noise transmission through the window -03227184 06 n 01 double-hung_window 0 002 @ 04587648 n 0000 %p 04211356 n 0000 | a window having two sashes that slide up and down -03227317 06 n 01 double_knit 0 001 @ 03625355 n 0000 | a knit fabric similar to jersey that is made with two sets of needles producing a double thickness joined by interlocking stitches -03227505 06 n 04 double-prop 0 double-propeller_plane 0 twin-prop 0 twin-propeller-plane 0 001 @ 04012084 n 0000 | a propeller plane with an engine that drives two propellers in opposite directions (for stability) -03227721 06 n 01 doubler 0 001 @ 03277771 n 0000 | an electronic device that doubles the voltage or the frequency of an input signal -03227856 06 n 01 double_reed 0 002 @ 04066888 n 0000 #p 03228016 n 0000 | a pair of joined reeds that vibrate together to produce the sound in some woodwinds -03228016 06 n 02 double-reed_instrument 0 double_reed 1 006 @ 02817799 n 0000 ~ 02804610 n 0000 %p 03227856 n 0000 ~ 03288742 n 0000 ~ 03628831 n 0000 ~ 03838899 n 0000 | a woodwind that has a pair of joined reeds that vibrate together -03228254 06 n 01 doublet 0 001 @ 03589791 n 0000 | a man's close-fitting jacket; worn during the Renaissance -03228365 06 n 01 doubletree 0 001 @ 03135917 n 0000 | a crossbar on a wagon or carriage to which two whiffletrees are attached in order to harness two horses abreast -03228533 06 n 02 douche 0 douche_bag 0 002 @ 04376876 n 0000 + 00038199 v 0101 | a small syringe with detachable nozzles; used for vaginal lavage and enemas -03228692 06 n 03 dovecote 0 columbarium 2 columbary 0 001 @ 02843684 n 0000 | a birdhouse for pigeons -03228796 06 n 01 Dover's_powder 0 001 @ 03994008 n 0000 | a medicinal powder made essentially of ipecac and opium; formerly used to relieve pain and induce perspiration -03228967 06 n 02 dovetail 0 dovetail_joint 0 002 @ 03787523 n 0000 + 02660290 v 0101 | a mortise joint formed by interlocking tenons and mortises -03229115 06 n 01 dovetail_plane 0 001 @ 03954731 n 0000 | a woodworking plane designed to make the grooves for dovetail joints -03229244 06 n 03 dowel 0 dowel_pin 0 joggle 0 002 @ 03323703 n 0000 + 01604586 v 0301 | a fastener that is inserted into holes in two adjacent pieces and holds them together -03229420 06 n 01 downcast 0 001 @ 04182514 n 0000 | a ventilation shaft through which air enters a mine -03229526 06 n 01 downstage 0 002 @ 04296562 n 0000 #p 04418818 n 0000 | the front half of the stage (as seen from the audience) -03229656 06 n 02 doxazosin 0 Cardura 0 001 @ 02721160 n 0000 | an antihypertensive drug (trade name Cardura) that works by relaxing blood vessels so that blood passes through them more easily; it is also used to treat benign prostatic hyperplasia -03229905 06 n 04 doxepin 0 doxepin_hydrochloride 0 Adapin 0 Sinequan 0 001 @ 04482543 n 0000 | a tricyclic antidepressant (trade names Adapin and Sinequan) with numerous side effects (dry mouth and sedation and gastrointestinal disturbances) -03230149 06 n 01 doxorubicin 0 001 @ 02716866 n 0000 | an antibiotic used as an anticancer drug -03230247 06 n 02 doxycycline 0 Vibramycin 0 001 @ 02716866 n 0000 | an antibiotic derived from tetracycline that is effective against many infections; "Vibramycin is the trade name of doxycycline" -03230446 06 n 01 DPT_vaccine 0 001 @ 04517535 n 0000 | abbreviation for combination vaccine against diphtheria and pertussis (whooping cough) and tetanus toxoids; usually given in a series of injections in early childhood -03230670 06 n 02 draft 0 draught 0 001 @ 03225238 n 0000 | a dose of liquid medicine; "he took a sleeping draft" -03230785 06 n 02 draft 1 rough_drawing 0 002 @ 04227144 n 0000 + 01683582 v 0102 | a preliminary sketch of a design or picture -03230914 06 n 01 draft 2 001 @ 04072193 n 0000 | a regulator for controlling the flow of air in a fireplace -03231024 06 n 02 drafting_board 0 drawing_board 0 001 @ 02856463 n 0000 | a smooth board on which paper is placed for making drawings -03231160 06 n 01 drafting_instrument 0 006 @ 03574816 n 0000 ~ 03080633 n 0000 ~ 03215749 n 0000 ~ 04015908 n 0000 ~ 04480995 n 0000 ~ 04493259 n 0000 | an instrument used by a draftsman in making drawings -03231368 06 n 02 drafting_table 0 drawing_table 0 001 @ 04603729 n 0000 | a worktable with adjustable top -03231476 06 n 01 drag 0 001 @ 03051540 n 0000 | clothing that is conventionally worn by the opposite sex (especially women's clothing when worn by a man); "he went to the party dressed in drag"; "the waitresses looked like missionaries in drag" -03231723 06 n 01 dragee 0 001 @ 03936568 n 0000 | pill that is a sugar-coated medicated candy -03231819 06 n 01 Dragunov 0 001 @ 04250224 n 0000 | a sniper rifle with a telescopic sight -03231912 06 n 03 drain 0 drainpipe 0 waste_pipe 0 008 @ 03944672 n 0000 + 00451648 v 0101 + 02071457 v 0101 ~ 03147280 n 0000 ~ 04157883 n 0000 ~ 04179126 n 0000 ~ 04257684 n 0000 ~ 04475032 n 0000 | a pipe through which liquid is carried away -03232158 06 n 01 drain 1 002 @ 04493505 n 0000 ;c 06063588 n 0000 | tube inserted into a body cavity (as during surgery) to remove unwanted material -03232309 06 n 01 drainage_ditch 0 001 @ 03214253 n 0000 | a ditch for carrying off excess water or sewage -03232417 06 n 01 drainage_system 0 001 @ 04377057 n 0000 | a system of watercourses or drains for carrying off excess water -03232543 06 n 01 drain_basket 0 002 @ 03339643 n 0000 #p 04223580 n 0000 | a filter in a sink drain; traps debris but passes water -03232676 06 n 02 drainboard 0 draining_board 0 001 @ 02856463 n 0000 | a board beside a kitchen sink and inclined to drain into the sink -03232815 06 n 01 drainplug 0 001 @ 03967942 n 0000 | a removable plug for holding water in a tub or basin -03232923 06 n 01 drape 1 001 @ 03122748 n 0000 | a sterile covering arranged over a patient's body during a medical examination or during surgery in order to reduce the possibility of contamination -03233123 06 n 01 drapery 1 002 @ 03309808 n 0000 + 01612487 v 0101 | cloth gracefully draped and arranged in loose folds -03233246 06 n 01 draw 0 003 @ 03963982 n 0000 + 01078050 v 0101 + 00675901 v 0101 | a playing card or cards dealt or taken from the pack; "he got a pair of kings in the draw" -03233423 06 n 02 draw 1 lot 0 003 @ 00002684 n 0000 + 01078050 v 0101 + 00675901 v 0101 | anything (straws or pebbles etc.) taken or chosen at random; "the luck of the draw"; "they drew lots for it" -03233624 06 n 01 drawbar 0 001 @ 02788689 n 0000 | a strong metal bar bearing a hook to attach something to be pulled -03233744 06 n 02 drawbridge 0 lift_bridge 0 001 @ 02898711 n 0000 | a bridge that can be raised to block passage or to allow boats or ships to pass beneath it -03233905 06 n 01 drawer 0 008 @ 03094503 n 0000 @ 04328946 n 0000 #p 03015254 n 0000 #p 02912065 n 0000 #p 03016953 n 0000 #p 03179701 n 0000 + 01995211 v 0101 %p 03682487 n 0000 | a boxlike container in a piece of furniture; made so as to slide in and out -03234164 06 n 05 drawers 2 underdrawers 0 shorts 1 boxers 0 boxershorts 0 002 @ 04508489 n 0000 ;u 06295235 n 0000 | underpants worn by men -03234306 06 n 01 drawing 0 016 @ 04076846 n 0000 + 01690294 v 0101 + 01582645 v 0102 ~ 03007955 n 0000 ~ 03173524 n 0000 ~ 03186399 n 0000 ~ 03737912 n 0000 ~ 03908111 n 0000 ~ 03954199 n 0000 ~ 04075615 n 0000 ~ 04155310 n 0000 ~ 04219277 n 0000 ~ 04221076 n 0000 ~ 04227144 n 0000 ~ 04318384 n 0000 ~ 04463273 n 0000 | a representation of forms or objects on a surface by means of lines; "drawings of abstract forms"; "he did complicated pen-and-ink drawings like medieval miniatures" -03234795 06 n 03 drawing_card 0 loss_leader 0 leader 0 001 @ 03325769 n 0000 | a featured article of merchandise sold at a loss in order to draw customers -03234952 06 n 01 drawing_chalk 0 001 @ 03003091 n 0000 | colored chalks used by artists -03235042 06 n 02 drawing_room 0 withdrawing_room 0 001 @ 04061793 n 0000 | a formal room where visitors can be received and entertained -03235180 06 n 01 drawing_room 1 002 @ 03079741 n 0000 #p 04236001 n 0000 | a private compartment on a sleeping car with three bunks and a toilet -03235327 06 n 02 drawknife 0 drawshave 0 001 @ 03623556 n 0000 | a woodworker's knife to shave surfaces -03235433 06 n 01 drawnwork 0 001 @ 03282933 n 0000 | ornamental needlework done by drawing threads to form lacelike patterns -03235560 06 n 03 drawstring 0 drawing_string 0 string 1 003 @ 04433185 n 0000 #p 03235796 n 0000 ~ 04026688 n 0000 | a tie consisting of a cord that goes through a seam around an opening; "he pulled the drawstring and closed the bag" -03235796 06 n 01 drawstring_bag 0 005 @ 02773037 n 0000 %p 03235560 n 0000 ~ 03253886 n 0000 ~ 03781594 n 0000 ~ 04158672 n 0000 | a bag that is closed at the top with a drawstring -03235979 06 n 02 dray 0 camion 1 001 @ 03538406 n 0000 | a low heavy horse cart without sides; used for haulage -03236093 06 n 02 dreadnought 0 dreadnaught 0 001 @ 02812201 n 0000 | battleship that has big guns all of the same caliber -03236217 06 n 01 dredge 0 006 @ 03996416 n 0000 #p 03236423 n 0000 + 01244692 v 0101 + 01244516 v 0101 %p 03236580 n 0000 %p 04149208 n 0000 | a power shovel to remove material from a channel or riverbed -03236423 06 n 01 dredger 0 003 @ 02792552 n 0000 + 01244516 v 0101 %p 03236217 n 0000 | a barge (or a vessel resembling a barge) that is used for dredging -03236580 06 n 01 dredging_bucket 0 003 @ 02909870 n 0000 #p 03236217 n 0000 ~ 03037108 n 0000 | a bucket for lifting material from a channel or riverbed -03236735 06 n 02 dress 0 frock 0 021 @ 04596852 n 0000 + 00048912 v 0201 %p 02861387 n 0000 ~ 02936570 n 0000 ~ 03013438 n 0000 ~ 03057724 n 0000 ~ 03062015 n 0000 ~ 03205574 n 0000 ~ 03450230 n 0000 ~ 03604400 n 0000 ~ 03619196 n 0000 ~ 03786096 n 0000 ~ 03788914 n 0000 %p 03815278 n 0000 ~ 03978815 n 0000 ~ 04136161 n 0000 ~ 04197878 n 0000 %p 04238321 n 0000 ~ 04334105 n 0000 ~ 04355511 n 0000 %p 08583292 n 0000 | a one-piece garment for a woman; has skirt and bodice -03237212 06 n 02 dress_blues 0 dress_whites 0 002 @ 03239259 n 0000 ;u 06295235 n 0000 | a dress uniform for formal occasions -03237340 06 n 01 dresser 1 001 @ 02933112 n 0000 | a cabinet with shelves -03237416 06 n 08 dress_hat 0 high_hat 2 opera_hat 0 silk_hat 0 stovepipe 1 top_hat 0 topper 0 beaver 2 002 @ 03497657 n 0000 @ 03746330 n 0000 | a man's hat with a tall crown; usually covered with silk or with beaver fur -03237639 06 n 02 dressing 0 medical_dressing 0 006 @ 03050026 n 0000 + 00082714 v 0101 ~ 02785648 n 0000 ~ 03082450 n 0000 ~ 03993403 n 0000 ~ 04364397 n 0000 | a cloth covering for a wound or sore -03237839 06 n 01 dressing_case 0 001 @ 02774630 n 0000 | a small piece of luggage for carrying brushes and bottles and toilet articles while traveling -03237992 06 n 03 dressing_gown 0 robe-de-chambre 0 lounging_robe 0 001 @ 04097866 n 0000 | a robe worn before dressing or while lounging -03238131 06 n 01 dressing_room 0 004 @ 04105893 n 0000 #p 03259505 n 0000 #p 04417809 n 0000 #p 02806992 n 0000 | a room in which you can change clothes -03238286 06 n 02 dressing_sack 0 dressing_sacque 0 001 @ 03589791 n 0000 | a woman's loose jacket; worn while dressing -03238407 06 n 02 dressing_station 0 aid_station 0 002 @ 03349599 n 0000 ;c 08199025 n 0000 | (military) a station located near a combat area for giving first aid to the wounded -03238586 06 n 04 dressing_table 0 dresser 2 vanity 0 toilet_table 0 001 @ 04379243 n 0000 | low table with mirror or mirrors where one sits while dressing or applying makeup -03238762 06 n 01 dress_rack 0 001 @ 04038440 n 0000 | a rack used primarily to display dresses for sale in a store -03238879 06 n 02 dress_shirt 0 evening_shirt 0 002 @ 04197391 n 0000 %p 03959123 n 0000 | a man's white shirt (with a starch front) for evening wear (usually with a tuxedo) -03239054 06 n 07 dress_suit 0 full_dress 0 tailcoat 0 tail_coat 0 tails 1 white_tie 1 white_tie_and_tails 0 002 @ 03384891 n 0000 %p 04368496 n 0000 | formalwear consisting of full evening dress for men -03239259 06 n 01 dress_uniform 0 003 @ 03763968 n 0000 ;c 08199025 n 0000 ~ 03237212 n 0000 | a military uniform worn on formal occasions -03239399 06 n 03 drift 0 heading 0 gallery 6 003 @ 03895585 n 0000 ;c 00922327 n 0000 + 01310964 v 0101 | a horizontal (or nearly horizontal) passageway in a mine; "they dug a drift parallel with the vein" -03239607 06 n 01 drift_net 0 001 @ 03352628 n 0000 | a large fishnet supported by floats; it drifts with the current -03239726 06 n 01 drill 0 014 @ 04451818 n 0000 + 01443021 v 0102 ~ 02758490 n 0000 %p 02844307 n 0000 ~ 02875436 n 0000 ~ 02887832 n 0000 ~ 02894847 n 0000 %p 03027250 n 0000 ~ 03108624 n 0000 ~ 03176238 n 0000 ~ 03484809 n 0000 ~ 03995372 n 0000 ~ 04059399 n 0000 ~ 04479405 n 0000 | a tool with a sharp point and cutting edges for making holes in hard materials (usually rotating rapidly or by repeated blows) -03240140 06 n 01 electric_drill 0 005 @ 03995372 n 0000 #p 03240892 n 0000 + 01443021 v 0102 %p 03027250 n 0000 %p 03273061 n 0000 | a rotating power drill powered by an electric motor -03240327 06 n 02 drilling_bit 0 drill_bit 0 004 @ 02844307 n 0000 ~ 03108455 n 0000 ~ 03353147 n 0000 ~ 04098399 n 0000 | a bit used in drilling for oil -03240482 06 n 01 drilling_pipe 0 001 @ 03944672 n 0000 | a series of tubes (joined by screwed collars) that connect a drilling platform to the drilling bit; rotates the bit and supplies drilling mud -03240683 06 n 02 drilling_platform 0 offshore_rig 0 001 @ 03241093 n 0000 | drilling rig consisting of an offshore platform (floating or fixed to the sea bed) from which many oil wells can be bored radially -03240892 06 n 01 drill_press 0 002 @ 03702248 n 0000 %p 03240140 n 0000 | a machine tool with a separate, upright stand; an electric drill is pressed into the work automatically or with a hand lever -03241093 06 n 04 drill_rig 0 drilling_rig 0 oilrig 0 oil_rig 0 002 @ 04091097 n 0000 ~ 03240683 n 0000 | rig used in drilling for oil or gas -03241236 06 n 01 drill_site 0 001 @ 04602044 n 0000 | workplace that is the site of a drill hole -03241335 06 n 03 drinking_fountain 0 water_fountain 0 bubbler 0 002 @ 03388043 n 0000 + 02187922 v 0305 | a public fountain to provide a jet of drinking water -03241496 06 n 01 drinking_vessel 0 005 @ 04531098 n 0000 ~ 03693707 n 0000 ~ 03797390 n 0000 ~ 04330189 n 0000 ~ 04389430 n 0000 | a vessel intended for drinking -03241660 06 n 03 drip 0 drip_mold 0 drip_mould 0 003 @ 04008947 n 0000 ;c 06123363 n 0000 ~ 03242595 n 0000 | (architecture) a projection from a cornice or sill designed to protect the area below from rainwater (as over a window or doorway) -03241903 06 n 01 drip_loop 0 002 @ 13875571 n 0000 #p 03670849 n 0000 | a downward hanging loop in a line that runs to a building; "when it rained water would fall from the drip loop before it reached the building" -03242120 06 n 01 drip_mat 0 002 @ 03728131 n 0000 ~ 02823964 n 0000 | a small mat placed under a glass to protect a surface from condensation -03242264 06 n 01 drip_pan 0 002 @ 03880323 n 0000 #p 04070727 n 0000 | pan under a refrigerator for collecting liquid waste -03242390 06 n 02 dripping_pan 0 drip_pan 1 001 @ 03880531 n 0000 | pan for catching drippings under roasting meat -03242506 06 n 01 drip_pot 0 001 @ 03063689 n 0000 | a coffeepot for making drip coffee -03242595 06 n 03 dripstone 0 hoodmold 0 hoodmould 0 001 @ 03241660 n 0000 | a protective drip that is made of stone -03242713 06 n 02 drive 0 parkway 0 008 @ 04096066 n 0000 + 01930482 v 0101 + 02057656 v 0101 + 02408281 v 0101 + 02742232 v 0101 + 02056971 v 0101 + 01930117 v 0101 + 01930874 v 0101 | a wide scenic road planted with trees; "the riverside drive offers many exciting scenic views" -03242995 06 n 01 drive 2 003 @ 03738472 n 0000 + 01181741 v 0101 ~ 03407865 n 0000 | a mechanism by which force or power is transmitted in a machine; "a variable speed drive permitted operation through a range of speeds" -03243218 06 n 01 drive 3 009 @ 03183080 n 0000 ;c 06128570 n 0000 ~ 02988156 n 0000 ~ 02988963 n 0000 ~ 03209666 n 0000 ~ 03307792 n 0000 ~ 03580518 n 0000 ~ 04050600 n 0000 %p 04277493 n 0000 | (computer science) a device that writes data onto or reads data from a storage medium -03243501 06 n 01 drive-in 0 001 @ 03315023 n 0000 | any installation designed to accommodate patrons in their automobiles -03243625 06 n 02 drive_line 0 drive_line_system 0 007 @ 03738472 n 0000 #p 03791235 n 0000 %p 03244231 n 0000 %p 03244919 n 0000 %p 03678879 n 0000 %p 04472243 n 0000 %p 04510706 n 0000 | mechanism that transmits power from the engine to the driving wheels of a motor vehicle -03243903 06 n 02 driven_well 0 tube_well 0 001 @ 04572344 n 0000 | a well made by driving a tube into the earth to a stratum that bears water -03244047 06 n 02 driver 0 number_one_wood 0 002 @ 04597066 n 0000 + 01407904 v 0101 | a golf club (a wood) with a near vertical face that is used for hitting long shots from the tee -03244231 06 n 01 driveshaft 0 002 @ 04111190 n 0000 #p 03243625 n 0000 | a rotating shaft that transmits power from the engine to the point of application -03244388 06 n 03 driveway 0 drive 1 private_road 0 008 @ 04096066 n 0000 + 01930874 v 0201 + 01930117 v 0201 + 02742232 v 0201 + 02408281 v 0201 + 01930482 v 0201 + 02057656 v 0201 %p 04499660 n 0000 | a road leading up to a private house; "they parked in the driveway" -03244660 06 n 01 driving_belt 0 001 @ 02827883 n 0000 | a belt that carries motion from a motor to the machinery -03244775 06 n 02 driving_iron 0 one_iron 0 002 @ 03585073 n 0000 ;c 00464894 n 0000 | (golf) the long iron with the most nearly vertical face -03244919 06 n 01 driving_wheel 0 002 @ 04574999 n 0000 #p 03243625 n 0000 | a wheel that drives a motor vehicle (transforms torque into a tractive force) -03245075 06 n 01 Drixoral 0 001 @ 03740161 n 0000 | the trade name for a drug used to treat upper respiratory congestion; it contains an antihistamine and a bronchodilator and a vasoconstrictor -03245271 06 n 03 drogue 0 drogue_chute 0 drogue_parachute 0 001 @ 03888257 n 0000 | a parachute used to decelerate an object that is moving rapidly -03245421 06 n 01 drogue_parachute 1 001 @ 03888257 n 0000 | a small parachute that pulls the main parachute from its storage pack -03245553 06 n 01 dronabinol 0 001 @ 04017137 n 0000 | psychoactive substance present in marijuana; used therapeutically to control nausea associated with cancer therapy -03245724 06 n 03 drone 0 drone_pipe 0 bourdon 0 002 @ 03945615 n 0000 #p 02775483 n 0000 | a pipe of the bagpipe that is tuned to produce a single continuous tone -03245889 06 n 03 drone 1 pilotless_aircraft 0 radio-controlled_aircraft 0 001 @ 03510583 n 0000 | an aircraft without a pilot that is operated by remote control -03246052 06 n 01 drop 0 003 @ 03177349 n 0000 + 01489465 v 0101 ~ 03710421 n 0000 | a central depository where things can be left or picked up -03246197 06 n 01 drop_arch 0 001 @ 03975035 n 0000 | a blunt pointed arch drawn from two centers within the span -03246312 06 n 01 drop_cloth 1 001 @ 03932670 n 0000 | a large piece of cloth laid over the floor or furniture while a room is being painted -03246454 06 n 03 drop_curtain 0 drop_cloth 0 drop 1 002 @ 03151077 n 0000 + 01985923 v 0302 | a curtain that can be lowered and raised onto a stage from the flies; often used as background scenery -03246653 06 n 03 drop_forge 0 drop_hammer 0 drop_press 0 002 @ 03183080 n 0000 #p 03383646 n 0000 | device for making large forgings -03246788 06 n 01 drop-leaf 0 002 @ 03652226 n 0000 #p 03246933 n 0000 | a hinged leaf on a table that can be raised and supported by a bracket -03246933 06 n 01 drop-leaf_table 0 003 @ 04379243 n 0000 %p 03246788 n 0000 ~ 03428226 n 0000 | a table that has a drop-leaf to enlarge its surface -03247083 06 n 02 dropper 0 eye_dropper 0 002 @ 03947111 n 0000 + 01611516 v 0103 | pipet consisting of a small tube with a vacuum bulb at one end for drawing liquid in and releasing it a drop at a time; "she used an eye dropper to administer medication to the eyes" -03247351 06 n 02 droshky 0 drosky 0 001 @ 02968473 n 0000 | an open horse-drawn carriage with four wheels; formerly used in Poland and Russia -03247495 06 n 02 drove 0 drove_chisel 0 001 @ 03020692 n 0000 | a stonemason's chisel with a broad edge for dressing stone -03247620 06 n 01 drug 0 047 @ 14778436 n 0000 #p 03921209 n 0000 + 10421470 n 0102 + 01200440 v 0101 + 00084738 v 0101 -c 01109599 a 0000 -c 01317678 a 0000 -c 01317831 a 0000 -c 00156654 r 0000 ~ 02667906 n 0000 ~ 02684789 n 0000 ~ 02710766 n 0000 ~ 02714883 n 0000 ~ 02724838 n 0000 ~ 02724966 n 0000 ~ 02876537 n 0000 ~ 02891566 n 0000 ~ 03097890 n 0000 ~ 03198383 n 0000 ~ 03214670 n 0000 ~ 03248958 n 0000 ~ 03329058 n 0000 ~ 03329180 n 0000 ~ 03329880 n 0000 ~ 03434549 n 0000 ~ 03581634 n 0000 ~ 03658373 n 0000 -c 03704640 n 0000 ~ 03740161 n 0000 ~ 03772881 n 0000 ~ 03803610 n 0000 ~ 03808564 n 0000 ~ 03913437 n 0000 ~ 04017137 n 0000 ~ 04017429 n 0000 ~ 04072811 n 0000 ~ 04260934 n 0000 ~ 04320126 n 0000 ~ 04361529 n 0000 ~ 04376259 n 0000 ~ 04537602 n 0000 -c 08583793 n 0000 -c 13426726 n 0000 -c 14533547 n 0000 ~ 14602721 n 0000 -c 00229801 v 0000 -c 01199755 v 0101 | a substance that is used as a medicine or narcotic -03248560 06 n 03 drug_cocktail 0 highly_active_antiretroviral_therapy 0 HAART 0 004 @ 03740161 n 0000 %p 03828155 n 0000 %p 03834836 n 0000 %p 04013993 n 0000 | a combination of protease inhibitors taken with reverse transcriptase inhibitors; used in treating AIDS and HIV -03248835 06 n 01 drugget 0 001 @ 04118021 n 0000 | a rug made of a coarse fabric having a cotton warp and a wool filling -03248958 06 n 02 drug_of_abuse 0 street_drug 0 008 @ 03247620 n 0000 ~ 02704153 n 0000 ~ 03428571 n 0000 ~ 03699396 n 0000 ~ 04166553 n 0000 ~ 04256993 n 0000 ~ 04442831 n 0000 ~ 07884567 n 0000 | a drug that is taken for nonmedicinal reasons (usually for mind-altering effects); drug abuse can lead to physical and mental damage and (with some substances) dependence and addiction -03249342 06 n 05 drugstore 0 apothecary's_shop 0 chemist's 0 chemist's_shop 0 pharmacy 0 004 @ 04202417 n 0000 + 03098803 a 0502 + 03098803 a 0501 %p 03921209 n 0000 | a retail shop where medicine and other articles are sold -03249569 06 n 03 drum 0 membranophone 0 tympan 0 012 @ 03915437 n 0000 + 10734963 n 0301 + 01732532 v 0101 ~ 02803666 n 0000 ~ 02869737 n 0000 %p 03250279 n 0000 ~ 04249415 n 0000 ~ 04382334 n 0000 ~ 04387201 n 0000 ~ 04387400 n 0000 ~ 04410086 n 0000 ~ 04436542 n 0000 | a musical percussion instrument; usually consists of a hollow cylinder with a membrane stretched across each end -03249956 06 n 02 drum 1 metal_drum 0 001 @ 04531098 n 0000 | a cylindrical metal container used for shipping or storage of liquids -03250089 06 n 01 drum_brake 0 003 @ 03551084 n 0000 %p 02890351 n 0000 %p 02890940 n 0000 | hydraulic brake in which friction is applied to the inside of a spinning drum by the brake shoe -03250279 06 n 02 drumhead 0 head 1 002 @ 03743761 n 0000 #p 03249569 n 0000 | a membrane that is stretched taut over a drum -03250405 06 n 01 drum_printer 0 001 @ 03672827 n 0000 | a line printer in which the type is mounted on a rotating drum that contains a full character set for each printing position -03250588 06 n 04 drum_sander 0 electric_sander 0 sander 0 smoother 0 004 @ 03997484 n 0000 + 01252971 v 0401 + 01386433 v 0302 %p 03273061 n 0000 | a power tool used for sanding wood; an endless loop of sandpaper is moved at high speed by an electric motor -03250847 06 n 01 drumstick 0 002 @ 04317420 n 0000 ~ 03715669 n 0000 | a stick used for playing a drum -03250952 06 n 01 dry_battery 0 003 @ 04540547 n 0000 %p 03251280 n 0000 ~ 03359285 n 0000 | a voltaic battery consisting of two or more dry cells -03251100 06 n 01 dry-bulb_thermometer 0 003 @ 04421872 n 0000 #p 04017571 n 0000 ! 04573625 n 0101 | an ordinary thermometer with a dry bulb; used to measure the air temperature -03251280 06 n 01 dry_cell 0 002 @ 03653454 n 0000 #p 03250952 n 0000 | a small Leclanche cell containing no free liquid; the electrolyte is a paste and the negative zinc pole forms the container of the cell; used in flashlights, portable radios, etc. -03251533 06 n 03 dry_dock 0 drydock 0 graving_dock 0 003 @ 03216828 n 0000 #p 04197235 n 0000 ~ 03364937 n 0000 | a large dock from which water can be pumped out; used for building ships or for repairing a ship below its waterline -03251766 06 n 02 dryer 0 drier 0 005 @ 02729837 n 0000 + 00218475 v 0201 + 00219403 v 0201 ~ 03050655 n 0000 ~ 03483316 n 0000 | an appliance that removes moisture -03251932 06 n 01 dry_fly 0 002 @ 03373237 n 0000 ! 04573937 n 0101 | a fly (fisherman's lure) that skims the surface of the water -03252064 06 n 02 drygoods 0 soft_goods 0 004 @ 03076708 n 0000 ;u 06295235 n 0000 ~ 03473704 n 0000 ~ 04580298 n 0000 | textiles or clothing and related merchandise -03252231 06 n 01 dry_kiln 0 001 @ 03617095 n 0000 | a kiln for drying and seasoning lumber -03252324 06 n 01 dry_masonry 0 002 @ 03725717 n 0000 ~ 03252637 n 0000 | masonry without mortar -03252422 06 n 01 dry_point 0 001 @ 03816136 n 0000 | a steel needle for engraving without acid on a bare copper plate -03252542 06 n 01 dry_point 1 001 @ 03289268 n 0000 | a print produced by dry point engraving -03252637 06 n 02 dry_wall 0 dry-stone_wall 0 002 @ 04326547 n 0000 @ 03252324 n 0000 | a stone wall made with stones fitted together without mortar -03252787 06 n 01 dual_scan_display 0 001 @ 03896628 n 0000 | a type of passive matrix display in which the top and bottom half of the screen are refreshed simultaneously -03252959 06 n 01 dubbing 0 002 @ 04262969 n 0000 + 00960562 v 0101 | a new soundtrack that is added to a film -03253071 06 n 01 duck 0 001 @ 03309808 n 0000 | a heavy cotton fabric of plain weave; used for clothing and tents -03253187 06 n 01 duckboard 0 001 @ 02858179 n 0000 | a boardwalk laid across muddy ground -03253279 06 n 01 duckpin 0 001 @ 02882647 n 0000 | a bowling pin that is short and squat by comparison with a tenpin -03253398 06 n 01 duct 0 003 @ 03089014 n 0000 ~ 02689961 n 0000 ~ 02690941 n 0000 | an enclosed conduit for a fluid -03253516 06 n 01 duct_tape 0 001 @ 02680337 n 0000 | a wide silvery adhesive tape intended to seal joints in sheet metal duct work but having many other uses; "duct tape holds the world together" -03253714 06 n 01 dudeen 0 001 @ 03039618 n 0000 | a clay pipe with a short stem -03253796 06 n 02 duffel 0 duffle 0 001 @ 03309808 n 0000 | a coarse heavy woolen fabric -03253886 06 n 04 duffel_bag 0 duffle_bag 0 duffel 1 duffle 1 001 @ 03235796 n 0000 | a large cylindrical bag of heavy cloth; for carrying personal belongings -03254046 06 n 02 duffel_coat 0 duffle_coat 0 001 @ 03057021 n 0000 | a warm coat made of duffel; usually has a hood and fastens with toggles -03254189 06 n 01 dugout 1 002 @ 04191595 n 0000 #p 02782778 n 0000 | either of two low shelters on either side of a baseball diamond where the players and coaches sit during the game -03254374 06 n 03 dugout_canoe 0 dugout 2 pirogue 0 001 @ 02951358 n 0000 | a canoe made by hollowing out and shaping a large log -03254505 06 n 01 Duke_University 0 002 @i 04511002 n 0000 #p 09128536 n 0000 | a university in Durham, North Carolina -03254625 06 n 01 dulciana 0 001 @ 03854998 n 0000 | the organ stop having a tone of soft sweet string quality -03254737 06 n 01 dulcimer 0 001 @ 04615226 n 0000 | a trapezoidal zither whose metal strings are struck with light hammers -03254862 06 n 01 dulcimer 1 001 @ 04338517 n 0000 | a stringed instrument used in American folk music; an elliptical body and a fretted fingerboard and three strings -03255030 06 n 01 dumbbell 0 001 @ 04571292 n 0000 | an exercising weight; two spheres connected by a short bar that serves as a handle -03255167 06 n 02 dumb_bomb 0 gravity_bomb 0 002 @ 02866578 n 0000 ! 04245847 n 0101 | a bomb that falls because of gravity and is not guided to a target -03255322 06 n 02 dumbwaiter 0 food_elevator 0 001 @ 03281145 n 0000 | a small elevator used to convey food (or other goods) from one floor of a building to another -03255488 06 n 02 dumdum 0 dumdum_bullet 0 001 @ 02916350 n 0000 | a soft-nosed small-arms bullet that expands when it hits a target and causes a gaping wound -03255648 06 n 01 dummy 0 004 @ 03335600 n 0000 ~ 03650682 n 0000 ~ 03717921 n 0000 ~ 04527182 n 0000 | a figure representing the human form -03255790 06 n 01 dump 0 001 @ 04329190 n 0000 | a place where supplies can be stored; "an ammunition dump" -03255899 06 n 01 dumpcart 0 002 @ 02970849 n 0000 ~ 04497249 n 0000 | a cart that can be tilted to empty contents without handling -03256032 06 n 01 Dumpster 0 002 @ 03094503 n 0000 ;u 06851742 n 0000 | a container designed to receive and transport and dump waste -03256166 06 n 06 dump_truck 0 dumper 0 tipper_truck 0 tipper_lorry 0 tip_truck 0 tipper 0 003 @ 04490091 n 0000 + 02039544 v 0601 + 01977545 v 0201 | truck whose contents can be emptied without handling; the front end of the platform can be pneumatically raised so that the load is discharged by gravity -03256472 06 n 01 Dumpy_level 0 001 @ 04365751 n 0000 | a surveyor's level having a short telescope fixed to a horizontally rotating table and a spirit level -03256631 06 n 03 dunce_cap 0 dunce's_cap 0 fool's_cap 0 001 @ 03497657 n 0000 | a cone-shaped paper hat formerly placed on the head of slow or lazy pupils -03256788 06 n 02 dune_buggy 0 beach_buggy 0 001 @ 04065272 n 0000 | a recreational vehicle with large tires used on beaches or sand dunes -03256928 06 n 01 dungeon 1 002 @ 02991302 n 0000 ~ 03858533 n 0000 | a dark cell (usually underground) where prisoners can be confined -03257065 06 n 02 duplex_apartment 0 duplex 1 001 @ 02726305 n 0000 | an apartment having rooms on two floors that are connected by a staircase -03257210 06 n 03 duplex_house 0 duplex 2 semidetached_house 0 001 @ 03544360 n 0000 | a house with two units sharing a common wall -03257343 06 n 02 duplicate 0 duplication 0 006 @ 03104594 n 0000 + 01735308 v 0201 + 01735308 v 0101 ~ 02771840 n 0000 ~ 03117939 n 0000 ~ 03728811 n 0000 | a copy that corresponds to an original exactly; "he made a duplicate for the files" -03257586 06 n 02 duplicator 0 copier 0 010 @ 02727825 n 0000 + 01693881 v 0201 + 01735308 v 0101 ~ 03316105 n 0000 ~ 03510987 n 0000 ~ 03677976 n 0000 ~ 03767459 n 0000 ~ 03924679 n 0000 ~ 03927299 n 0000 ~ 04608923 n 0000 | apparatus that makes copies of typed, written or drawn material -03257877 06 n 03 durables 0 durable_goods 0 consumer_durables 0 003 @ 03093574 n 0000 ;u 06295235 n 0000 ~ 02729837 n 0000 | consumer goods that are not destroyed by use -03258049 06 n 01 durbar 0 001 @ 04105893 n 0000 | the room in the palace of a native prince of India in which audiences and receptions occur -03258192 06 n 02 dust_bag 0 vacuum_bag 0 002 @ 02773037 n 0000 #p 04517823 n 0000 | a bag into which dirt is sucked by a vacuum cleaner -03258330 06 n 03 dustcloth 0 dustrag 0 duster 1 002 @ 03932670 n 0000 + 01244351 v 0301 | a piece of cloth used for dusting -03258456 06 n 01 dust_cover 0 001 @ 04014297 n 0000 | a removable plastic protective covering for a piece of equipment -03258577 06 n 02 dust_cover 1 dust_sheet 0 001 @ 03932670 n 0000 | a large piece of cloth used to cover furniture that is not in use for a long period -03258730 06 n 05 duster 0 gaberdine 0 gabardine 1 smock 0 dust_coat 0 002 @ 03121897 n 0000 + 01677509 v 0401 | a loose coverall (coat or frock) reaching down to the ankles -03258905 06 n 03 dustmop 0 dust_mop 0 dry_mop 0 001 @ 04367480 n 0000 | a dry swab for dusting floors -03259009 06 n 01 dustpan 0 001 @ 04060904 n 0000 | a short-handled receptacle into which dust can be swept -03259118 06 n 02 Dutch_door 0 half_door 0 001 @ 03307274 n 0000 | an exterior door divided in two horizontally; either half can be closed or open independently -03259280 06 n 01 Dutch_oven 0 001 @ 03862676 n 0000 | an oven consisting of a metal box for cooking in front of a fire -03259401 06 n 01 Dutch_oven 1 001 @ 03990474 n 0000 | iron or earthenware cooking pot; used for stews -03259505 06 n 06 dwelling 0 home 0 domicile 0 abode 0 habitation 0 dwelling_house 0 026 @ 03546340 n 0000 + 03062280 a 0301 + 02459633 v 0201 + 02649830 v 0102 %p 02807731 n 0000 %p 02821627 n 0000 ~ 03042490 n 0000 ~ 03088580 n 0000 %p 03175081 n 0000 %p 03199775 n 0000 %p 03200701 n 0000 %p 03238131 n 0000 %p 03319745 n 0000 ~ 03354207 n 0000 ~ 03507241 n 0000 ~ 03515934 n 0000 ~ 03529629 n 0000 ~ 03544360 n 0000 %p 03619890 n 0000 ~ 03634034 n 0000 %p 03679712 n 0000 ~ 03685307 n 0000 ~ 03751590 n 0000 ~ 04172107 n 0000 ~ 04517408 n 0000 ~ 04613696 n 0000 | housing that someone is living in; "he built a modest dwelling near the pond"; "they raise money to provide homes for the homeless" -03260206 06 n 01 dye-works 0 001 @ 04603081 n 0000 | a workshop where dyeing is done -03260293 06 n 01 dynamite 0 005 @ 03305135 n 0000 + 10040789 n 0102 + 00307419 v 0101 ~ 03432796 n 0000 %s 14886579 n 0000 | an explosive containing nitrate sensitized with nitroglycerin absorbed on wood pulp -03260504 06 n 01 dynamo 0 002 @ 03433877 n 0000 %p 03333851 n 0000 | generator consisting of a coil (the armature) that rotates between the poles of an electromagnet (the field magnet) causing a current to flow in the armature -03260733 06 n 02 dynamometer 0 ergometer 0 001 @ 03733925 n 0000 | measuring instrument designed to measure power -03260849 06 n 01 Eames_chair 0 001 @ 03001627 n 0000 | a chair designed by Charles Eames; originally made of molded plywood; seat and back shaped to fit the human body -03261019 06 n 02 earflap 0 earlap 0 002 @ 03357376 n 0000 #p 02954340 n 0000 | one of two flaps attached to a cap to keep the ears warm -03261157 06 n 01 ear_hole 0 001 @ 03526198 n 0000 | a hole (as in a helmet) for sound to reach the ears -03261263 06 n 01 early_warning_radar 0 002 @ 04039848 n 0000 #p 03261395 n 0000 | a radar that is part of an early warning system -03261395 06 n 01 early_warning_system 0 002 @ 03820728 n 0000 %p 03261263 n 0000 | a network of radar installations designed to detect enemy missiles or aircraft while there is still time to intercept them -03261603 06 n 01 earmuff 0 001 @ 03122748 n 0000 | either of a pair of ear coverings (usually connected by a headband) that are worn to keep the ears warm in cold weather -03261776 06 n 04 earphone 0 earpiece 0 headphone 0 phone 1 003 @ 03274561 n 0000 ~ 03262248 n 0000 ~ 04402580 n 0000 | electro-acoustic transducer for converting electric signals into sounds; it is held over or inserted into the ear; "it was not the typing but the earphones that she disliked" -03262072 06 n 01 earplug 0 001 @ 03967942 n 0000 | a plug of cotton, wax, or rubber that is fitted into the ear canal for protection against the entry of water or loud noise -03262248 06 n 01 earplug 1 001 @ 03261776 n 0000 | an earphone that is inserted into the ear canal -03262349 06 n 01 earring 0 002 @ 03597469 n 0000 ~ 03909020 n 0000 | jewelry to ornament the ear; usually clipped to the earlobe or fastened through a hole in the lobe -03262519 06 n 01 earthenware 0 006 @ 02997607 n 0000 ~ 03173270 n 0000 ~ 03317788 n 0000 ~ 03713436 n 0000 ~ 04414101 n 0000 ~ 04414319 n 0000 | ceramic ware made of porous clay fired at low heat -03262717 06 n 01 earthwork 0 002 @ 04051825 n 0000 ~ 04148801 n 0000 | an earthen rampart -03262809 06 n 01 easel 0 001 @ 04485082 n 0000 | an upright tripod for displaying something (usually an artist's canvas) -03262932 06 n 03 easy_chair 0 lounge_chair 0 overstuffed_chair 0 002 @ 02738535 n 0000 ~ 04593077 n 0000 | a comfortable upholstered armchair -03263076 06 n 01 eaves 0 003 @ 03864356 n 0000 #p 04105068 n 0000 ;u 06295235 n 0000 | the overhang at the lower edge of a roof -03263206 06 n 01 ecce_homo 0 001 @ 04076846 n 0000 | a representation (a picture or sculpture) of Jesus wearing a crown of thorns -03263338 06 n 02 ecclesiastical_attire 0 ecclesiastical_robe 0 001 @ 02756098 n 0000 | attire that is appropriate to wear in a church -03263474 06 n 01 echelon 0 001 @ 03194538 n 0000 | a diffraction grating consisting of a pile of plates of equal thickness arranged stepwise with a constant offset -03263640 06 n 01 echinus 0 001 @ 03866721 n 0000 | ovolo molding between the shaft and the abacus of a Doric column -03263758 06 n 01 echocardiograph 0 001 @ 04260589 n 0000 | a sonograph that creates an image of the heart and its abnormalities -03263888 06 n 01 echoencephalograph 0 001 @ 04260589 n 0000 | a sonograph that creates an image of the brain and its abnormalities -03264021 06 n 01 echo_chamber 0 001 @ 03285912 n 0000 | an enclosed space for producing reverberation of a sound -03264136 06 n 01 edge 0 015 @ 04213626 n 0000 + 01246843 v 0101 + 02361600 v 0102 ~ 02833576 n 0000 ~ 02833943 n 0000 ~ 02902250 n 0000 ~ 03148920 n 0000 ~ 03168774 n 0000 ~ 03325691 n 0000 ~ 03461783 n 0000 ~ 03624497 n 0000 ~ 03651739 n 0000 ~ 03766600 n 0000 ~ 04057323 n 0000 ~ 04467899 n 0000 | a sharp side formed by the intersection of two surfaces of an object; "he rounded the edges of the box" -03264542 06 n 01 edge 1 008 @ 08592656 n 0000 ~ 02875013 n 0000 ~ 03513627 n 0000 ~ 03695452 n 0000 ~ 03780247 n 0000 ~ 04170933 n 0000 ~ 04206948 n 0000 ~ 04565233 n 0000 | the outside limit of an object or area or surface; a place farthest away from the center of something; "the edge of the leaf is wavy"; "she sat on the edge of the bed"; "the water's edge" -03264906 06 n 01 edger 0 002 @ 03418242 n 0000 + 02361600 v 0102 | garden tool for cutting grass around the edges of a yard -03265032 06 n 01 edge_tool 0 018 @ 03154073 n 0000 ~ 02682311 n 0000 ~ 02764044 n 0000 ~ 03020692 n 0000 ~ 03449309 n 0000 ~ 03482727 n 0000 %p 03485997 n 0000 ~ 03523398 n 0000 ~ 03623556 n 0000 %p 03624497 n 0000 ~ 03929202 n 0000 ~ 03954731 n 0000 ~ 04057047 n 0000 ~ 04148054 n 0000 ~ 04158250 n 0000 ~ 04186709 n 0000 ~ 04213353 n 0000 ~ 04594828 n 0000 | any cutting tool with a sharp cutting edge (as a chisel or knife or plane or gouge) -03265479 06 n 01 edging 0 007 @ 02875013 n 0000 #p 04118021 n 0000 #p 03309808 n 0000 #p 04393404 n 0000 + 01466978 v 0103 ~ 03397762 n 0000 ~ 03856335 n 0000 | border consisting of anything placed on the edge to finish something (such as a fringe on clothing or on a rug) -03265754 06 n 01 efficiency_apartment 0 001 @ 02726305 n 0000 | a furnished apartment with a kitchenette and bathroom -03265874 06 n 03 effigy 0 image 1 simulacrum 0 006 @ 04076846 n 0000 + 01635432 v 0209 ~ 03471974 n 0000 ~ 03560161 n 0000 ~ 04143712 n 0000 ~ 04564581 n 0000 | a representation of a person (especially in the form of sculpture); "the coin bears an effigy of Lincoln"; "the emperor's tomb had his image carved in stone" -03266195 06 n 03 egg-and-dart 0 egg-and-anchor 0 egg-and-tongue 0 001 @ 03780392 n 0000 | a decorative molding; a series of egg-shaped figures alternating with another shape -03266371 06 n 02 eggbeater 0 eggwhisk 0 002 @ 02817650 n 0000 @ 03775199 n 0000 | a mixer for beating eggs or whipping cream -03266498 06 n 02 eggcup 0 egg_cup 0 001 @ 03133538 n 0000 | dishware consisting of a small cup for serving a boiled egg -03266620 06 n 01 egg_timer 0 001 @ 04134632 n 0000 | a sandglass that runs for three minutes; used to time the boiling of eggs -03266749 06 n 03 eiderdown 0 duvet 0 continental_quilt 0 002 @ 04033995 n 0000 %s 01896844 n 0000 | a soft quilt usually filled with the down of the eider -03266906 06 n 01 Eiffel_Tower 0 002 @i 04460130 n 0000 #p 08932568 n 0000 | a wrought iron tower 300 meters high that was constructed in Paris in 1889; for many years it was the tallest man-made structure -03267113 06 n 01 eight_ball 0 001 @ 03982232 n 0000 | a black pool ball bearing the number 8; should be the last to go in certain pool games -03267256 06 n 01 eightpenny_nail 0 001 @ 03804744 n 0000 | a nail 2.5 inches long -03267340 06 n 02 eight-spot 0 eight 0 001 @ 04286307 n 0000 | one of four playing cards in a deck with eight pips on the face -03267468 06 n 03 ejection_seat 0 ejector_seat 0 capsule 3 002 @ 04161358 n 0000 #p 03061505 n 0000 | a pilot's seat in an airplane that can be forcibly ejected in the case of an emergency; then the pilot descends by parachute -03267696 06 n 01 elastic 0 002 @ 03309808 n 0000 + 00843146 a 0101 | a fabric made of yarns containing an elastic material -03267821 06 n 01 elastic_bandage 0 002 @ 02785648 n 0000 ~ 03268142 n 0000 | a bandage containing stretchable material that can apply local pressure -03267972 06 n 01 elastic_device 0 003 @ 03183080 n 0000 ~ 04116098 n 0000 ~ 04288272 n 0000 | any flexible device that will return to its original shape when stretched -03268142 06 n 01 Elastoplast 0 004 @ 02680110 n 0000 @ 03267821 n 0000 ;r 08860123 n 0000 ;u 06851742 n 0000 | an elastic adhesive bandage for covering cuts or wounds -03268311 06 n 01 elbow 0 002 @ 03050026 n 0000 #p 04236377 n 0000 | the part of a sleeve that covers the elbow joint; "his coat had patches over the elbows" -03268470 06 n 01 elbow 1 001 @ 02829696 n 0000 | a sharp bend in a road or river -03268553 06 n 01 elbow 2 001 @ 03944672 n 0000 | a length of pipe with a sharp bend in it -03268645 06 n 01 elbow_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn over the elbow by football and hockey players -03268790 06 n 03 electric 0 electric_automobile 0 electric_car 0 001 @ 02958343 n 0000 | a car that is powered by electricity -03268918 06 n 01 electrical_cable 0 001 @ 02934168 n 0000 | a cable that provides an electrical connection for telephone or television or power stations -03269073 06 n 01 electrical_contact 0 001 @ 03093792 n 0000 | contact that allows current to pass from one conductor to another -03269203 06 n 01 electrical_converter 0 004 @ 03099945 n 0000 ~ 03582959 n 0000 ~ 03996004 n 0000 ~ 04375405 n 0000 | converter that converts alternating current into direct current or vice versa -03269401 06 n 01 electrical_device 0 037 @ 03183080 n 0000 ~ 02715229 n 0000 ~ 02755675 n 0000 ~ 02779971 n 0000 ~ 02810471 n 0000 ~ 02839758 n 0000 ~ 02908605 n 0000 ~ 02955247 n 0000 ~ 02991048 n 0000 ~ 03033362 n 0000 ~ 03098140 n 0000 ~ 03213014 n 0000 ~ 03275451 n 0000 ~ 03280394 n 0000 ~ 03340009 n 0000 ~ 03358841 n 0000 ~ 03407369 n 0000 ~ 03569014 n 0000 ~ 03589513 n 0000 ~ 03680248 n 0000 ~ 03968293 n 0000 ~ 03998673 n 0000 ~ 04057846 n 0000 ~ 04065632 n 0000 ~ 04072960 n 0000 ~ 04079933 n 0000 ~ 04165945 n 0000 ~ 04168199 n 0000 ~ 04257790 n 0000 ~ 04268275 n 0000 ~ 04269270 n 0000 ~ 04361641 n 0000 %p 04413151 n 0000 ~ 04470953 n 0000 ~ 04471315 n 0000 ~ 04473275 n 0000 ~ 04614083 n 0000 | a device that produces or is powered by electricity -03270165 06 n 01 electrical_system 0 010 @ 03294048 n 0000 #p 03791235 n 0000 %p 02700064 n 0000 %p 02961225 n 0000 %p 03503997 n 0000 %p 03560567 n 0000 %p 04304375 n 0000 %p 04384910 n 0000 %p 04540397 n 0000 %p 07262704 n 0000 | equipment in a motor vehicle that provides electricity to start the engine and ignite the fuel and operate the lights and windshield wiper and heater and air conditioner and radio -03270579 06 n 02 electrical_system 1 electrical_plant 0 001 @ 04516874 n 0000 | utility that provides electricity -03270695 06 n 01 electric_bell 0 003 @ 02824448 n 0000 %p 03276179 n 0000 ~ 04401578 n 0000 | a bell activated by the magnetic effect of an electric current -03270854 06 n 01 electric_blanket 0 001 @ 02849154 n 0000 | a blanket containing and electric heating element that can be controlled to the desired temperature by a rheostat -03271030 06 n 04 electric_chair 0 chair 1 death_chair 0 hot_seat 0 001 @ 03575691 n 0000 | an instrument of execution by electrocution; resembles an ordinary seat for one person; "the murderer was sentenced to die in the chair" -03271260 06 n 01 electric_clock 0 002 @ 03046257 n 0000 %p 03273061 n 0000 | a clock using a small electric motor -03271376 06 n 02 electric-discharge_lamp 0 gas-discharge_lamp 0 001 @ 03272383 n 0000 | an electric lamp in which the light comes from an electric discharge between two electrodes in a glass tube -03271574 06 n 02 electric_fan 0 blower 2 006 @ 03320046 n 0000 + 02101046 v 0201 + 02100632 v 0201 %p 03273061 n 0000 %p 03320421 n 0000 %p 03547658 n 0000 | a fan run by an electric motor -03271765 06 n 01 electric_frying_pan 0 001 @ 03400231 n 0000 | a frying pan heated by electricity -03271865 06 n 01 electric_furnace 0 002 @ 03404449 n 0000 ~ 04305016 n 0000 | any furnace in which the heat is provided by an electric current -03272010 06 n 01 electric_guitar 0 001 @ 03467517 n 0000 | a guitar whose sound is amplified by electrical means -03272125 06 n 01 electric_hammer 0 002 @ 03481521 n 0000 %p 03273061 n 0000 | a hammer driven by electric motor -03272239 06 n 02 electric_heater 0 electric_fire 0 003 @ 04265275 n 0000 %p 03508628 n 0000 ~ 03509394 n 0000 | a small electric space heater -03272383 06 n 01 electric_lamp 0 006 @ 03636248 n 0000 ~ 02735361 n 0000 ~ 03271376 n 0000 ~ 03359137 n 0000 ~ 03665924 n 0000 ~ 04242084 n 0000 | a lamp powered by electricity -03272562 06 n 01 electric_locomotive 0 002 @ 03684823 n 0000 %p 03273061 n 0000 | a locomotive that is powered by an electric motor -03272696 06 n 01 electric_main 0 002 @ 03711145 n 0000 #p 03997027 n 0000 | a main that distributes electricity -03272810 06 n 02 electric_meter 0 power_meter 0 001 @ 03753077 n 0000 | a meter for measuring the amount of electric power used -03272940 06 n 01 electric_mixer 0 002 @ 03775199 n 0000 %p 03273061 n 0000 | a food mixer powered by an electric motor -03273061 06 n 01 electric_motor 0 021 @ 03789946 n 0000 #p 03271260 n 0000 #p 03240140 n 0000 #p 03250588 n 0000 #p 03272125 n 0000 #p 03271574 n 0000 #p 03272562 n 0000 #p 03272940 n 0000 #p 03273913 n 0000 #p 03274265 n 0000 #p 03274435 n 0000 #p 04170515 n 0000 #p 04487081 n 0000 %p 02738271 n 0000 %p 02908605 n 0000 %p 03333851 n 0000 %p 04111962 n 0000 ~ 04304375 n 0000 %p 04306592 n 0000 ~ 04375615 n 0000 ~ 04594114 n 0000 | a motor that converts electricity to mechanical work -03273551 06 n 04 electric_organ 0 electronic_organ 0 Hammond_organ 0 organ 1 003 @ 03279153 n 0000 ;c 07020895 n 0000 + 10382825 n 0401 | (music) an electronic simulation of a pipe organ -03273740 06 n 01 electric_range 0 003 @ 04330340 n 0000 @ 04580493 n 0000 %p 03508628 n 0000 | a kitchen range in which the heat for cooking is provided by electric power -03273913 06 n 02 electric_refrigerator 0 fridge 0 005 @ 04070727 n 0000 ~ 03170635 n 0000 %p 03273061 n 0000 ~ 03557590 n 0000 %p 03557692 n 0000 | a refrigerator in which the coolant is pumped around by an electric motor -03274137 06 n 01 electric_socket 0 002 @ 04255034 n 0000 #p 03636649 n 0000 | a socket into which a lightbulb can be inserted -03274265 06 n 01 electric_toothbrush 0 002 @ 04453156 n 0000 %p 03273061 n 0000 | a toothbrush with an electric motor in the handle that vibrates the head of the brush -03274435 06 n 01 electric_typewriter 0 002 @ 04505036 n 0000 %p 03273061 n 0000 | a typewriter powered by an electric motor -03274561 06 n 01 electro-acoustic_transducer 0 006 @ 04470953 n 0000 ~ 02971940 n 0000 %p 03189311 n 0000 ~ 03261776 n 0000 ~ 03691459 n 0000 ~ 03759954 n 0000 | a transducer that converts electrical to acoustic energy or vice versa -03274796 06 n 01 electrode 0 012 @ 03088707 n 0000 #p 02810471 n 0000 #p 03275864 n 0000 #p 03278248 n 0000 #p 04494204 n 0000 ~ 02714315 n 0000 ~ 02798117 n 0000 ~ 02984699 n 0000 ~ 03069381 n 0000 ~ 03277149 n 0000 ~ 03283827 n 0000 ~ 03458552 n 0000 | a conductor used to make electrical contact with some part of a circuit -03275125 06 n 01 electrodynamometer 0 001 @ 03733925 n 0000 | measuring instrument that uses the interaction of the magnetic fields of two coils to measure current or voltage or power -03275311 06 n 01 electroencephalograph 0 001 @ 03739693 n 0000 | medical instrument that records electric currents generated by the brain -03275451 06 n 01 electrograph 0 001 @ 03269401 n 0000 | electrical device used for etching by electrolytic means -03275566 06 n 01 electrograph 1 001 @ 02727825 n 0000 | an apparatus for the electrical transmission of pictures -03275681 06 n 03 electrolytic 0 electrolytic_capacitor 0 electrolytic_condenser 0 001 @ 02955247 n 0000 | a fixed capacitor consisting of two electrodes separated by an electrolyte -03275864 06 n 01 electrolytic_cell 0 005 @ 02991048 n 0000 ! 04540761 n 0101 %p 02714315 n 0000 %p 02984699 n 0000 %p 03274796 n 0000 | a cell containing an electrolyte in which an applied voltage causes a reaction to occur that would not occur otherwise (such as the breakdown of water into hydrogen and oxygen) -03276179 06 n 01 electromagnet 0 005 @ 03705379 n 0000 #p 03270695 n 0000 #p 04072960 n 0000 %p 02738271 n 0000 ~ 03706939 n 0000 | a temporary magnet made by coiling wire around an iron core; when current flows in the coil the iron becomes a magnet -03276431 06 n 01 electromagnetic_delay_line 0 001 @ 03172965 n 0000 | a delay line based on the time of propagation of electromagnetic waves -03276574 06 n 01 electromechanical_device 0 001 @ 03736970 n 0000 | a mechanical device that is operated by electricity -03276696 06 n 01 electrometer 0 001 @ 03753077 n 0000 | meter to measure electrostatic voltage differences; draws no current from the source -03276839 06 n 01 electromyograph 0 001 @ 03739693 n 0000 | a medical instrument that records the electrical waves associated with the activity of skeletal muscles -03277004 06 n 01 electron_accelerator 0 001 @ 03070193 n 0000 | collider that consists of an accelerator that collides electrons and positrons -03277149 06 n 01 electron_gun 0 003 @ 03274796 n 0000 #p 02985137 n 0000 #p 03279508 n 0000 | the electrode that is the source of electrons in a cathode-ray tube or electron microscope; consists of a cathode that emits a stream of electrons and the electrostatic or electromagnetic apparatus that focuses it -03277459 06 n 01 electronic_balance 0 001 @ 02777100 n 0000 | a balance that generates a current proportional to the displacement of the pan -03277602 06 n 01 electronic_converter 0 002 @ 03099945 n 0000 ;c 06271778 n 0000 | (telecommunication) converter for converting a signal from one frequency to another -03277771 06 n 01 electronic_device 0 021 @ 03183080 n 0000 ~ 02714751 n 0000 ~ 02823124 n 0000 ~ 03171635 n 0000 ~ 03211117 n 0000 ~ 03211413 n 0000 ~ 03221351 n 0000 ~ 03227721 n 0000 ~ 03434285 n 0000 ~ 03506727 n 0000 ~ 03687306 n 0000 ~ 03793489 n 0000 ~ 03799113 n 0000 ~ 03870290 n 0000 ~ 03918737 n 0000 ~ 04058594 n 0000 ~ 04076052 n 0000 ~ 04143140 n 0000 ~ 04377842 n 0000 ~ 04464615 n 0000 ~ 04494204 n 0000 | a device that accomplishes its purpose electronically -03278248 06 n 01 electronic_equipment 0 028 @ 03294048 n 0000 ~ 02705944 n 0000 ~ 02757462 n 0000 ~ 02979186 n 0000 ~ 02988304 n 0000 ~ 02995345 n 0000 %p 03033362 n 0000 ~ 03034405 n 0000 ~ 03181293 n 0000 %p 03274796 n 0000 ~ 03293741 n 0000 ~ 03656957 n 0000 ~ 03775388 n 0000 ~ 03777754 n 0000 ~ 03781787 n 0000 ~ 03782006 n 0000 ~ 03842377 n 0000 ~ 03857828 n 0000 ~ 03916720 n 0000 ~ 03963294 n 0000 ~ 04043411 n 0000 ~ 04150474 n 0000 ~ 04176528 n 0000 ~ 04392526 n 0000 ~ 04392985 n 0000 ~ 04401088 n 0000 ~ 04405540 n 0000 ~ 04413419 n 0000 | equipment that involves the controlled conduction of electrons (especially in a gas or vacuum or semiconductor) -03278914 06 n 04 electronic_fetal_monitor 0 electronic_foetal_monitor 0 fetal_monitor 0 foetal_monitor 0 001 @ 03781787 n 0000 | an electronic monitor that monitors fetal heartbeat and the mother's uterine contractions during childbirth -03279153 06 n 02 electronic_instrument 0 electronic_musical_instrument 0 004 @ 03800933 n 0000 ~ 03273551 n 0000 ~ 04376400 n 0000 ~ 04419642 n 0000 | a musical instrument that generates sounds electronically -03279364 06 n 01 electronic_voltmeter 0 002 @ 04541320 n 0000 ~ 03197201 n 0000 | a voltmeter whose sensitivity is increased by amplification -03279508 06 n 01 electron_microscope 0 003 @ 03760671 n 0000 %p 03277149 n 0000 ~ 03332989 n 0000 | a microscope that is similar in purpose to a light microscope but achieves much greater resolving power by using a parallel beam of electrons to illuminate the object instead of a beam of light -03279804 06 n 01 electron_multiplier 0 001 @ 04494204 n 0000 | a vacuum tube that amplifies a flow of electrons -03279918 06 n 01 electrophorus 0 001 @ 03280394 n 0000 | a simple electrostatic generator that generates repeated charges of static electricity -03280064 06 n 01 electroplate 0 002 @ 00021939 n 0000 + 01395782 v 0101 | any artifact that has been plated with a thin coat of metal by electrolysis -03280216 06 n 01 electroscope 0 001 @ 03733925 n 0000 | measuring instrument that detects electric charge; two gold leaves diverge owing to repulsion of charges with like sign -03280394 06 n 04 electrostatic_generator 0 electrostatic_machine 0 Wimshurst_machine 0 Van_de_Graaff_generator 0 002 @ 03269401 n 0000 ~ 03279918 n 0000 | electrical device that produces a high voltage by building up a charge of static electricity -03280644 06 n 01 electrostatic_printer 0 003 @ 04004475 n 0000 %p 03571706 n 0000 ~ 03643737 n 0000 | a printer that uses an electric charge to deposit toner on paper -03280813 06 n 05 elevated_railway 0 elevated_railroad 0 elevated 0 el 0 overhead_railway 0 002 @ 04048568 n 0000 ~ 04102406 n 0000 | a railway that is powered by electricity and that runs on a track that is raised above the street level -03281052 06 n 01 elevation 0 001 @ 03954199 n 0000 | drawing of an exterior of a structure -03281145 06 n 02 elevator 0 lift 0 009 @ 03664675 n 0000 #p 02913152 n 0000 + 01455184 v 0202 + 01974062 v 0202 + 01974062 v 0103 %p 02960352 n 0000 ~ 03255322 n 0000 ~ 03394149 n 0000 ~ 03899100 n 0000 | lifting device consisting of a platform or cage that is raised and lowered mechanically in a vertical shaft in order to move people from one floor to another in a building -03281524 06 n 01 elevator 1 002 @ 02688443 n 0000 #p 03536568 n 0000 | the airfoil on the tailplane of an aircraft that makes it ascend or descend -03281673 06 n 01 elevator_shaft 0 001 @ 04182890 n 0000 | a vertical shaft in a building to permit the passage of an elevator from floor to floor -03281821 06 n 01 ell 0 001 @ 02713594 n 0000 | an extension at the end and at right angles to the main building -03281935 06 n 02 elongation 0 extension 1 002 @ 02679415 n 0000 + 00318816 v 0101 | an addition to the length of something -03282060 06 n 01 embankment 0 005 @ 03792048 n 0000 + 02711375 v 0101 ~ 03658635 n 0000 ~ 04051825 n 0000 %p 04085873 n 0000 | a long artificial mound of stone or earth; built to hold back water or to support a road or as protection -03282295 06 n 01 embassy 0 001 @ 03203806 n 0000 | a diplomatic building where ambassadors live or work -03282401 06 n 01 embellishment 0 007 @ 03169390 n 0000 ~ 02878628 n 0000 ~ 03152062 n 0000 ~ 03330441 n 0000 ~ 03337822 n 0000 ~ 04528490 n 0000 ~ 06890577 n 0000 | a superfluous ornament -03282591 06 n 01 emblem 0 013 @ 03178782 n 0000 + 02469119 a 0101 + 01982186 a 0101 ~ 03071431 n 0000 ~ 03072056 n 0000 ~ 03131038 n 0000 ~ 03135152 n 0000 ~ 03185562 n 0000 ~ 03354903 n 0000 ~ 03515338 n 0000 ~ 04232034 n 0000 ~ 04458409 n 0000 ~ 04458633 n 0000 | special design or visual object representing a quality, type, group, etc. -03282933 06 n 02 embroidery 0 fancywork 0 012 @ 03816849 n 0000 + 01667607 v 0101 ~ 02948834 n 0000 ~ 03131325 n 0000 ~ 03137744 n 0000 ~ 03154895 n 0000 ~ 03235433 n 0000 ~ 03317340 n 0000 ~ 03514588 n 0000 ~ 03816659 n 0000 ~ 04133211 n 0000 ~ 04246271 n 0000 | decorative needlework -03283221 06 n 02 emergency_room 0 ER 0 001 @ 03541091 n 0000 | a room in a hospital or clinic staffed and equipped to provide emergency care to persons requiring immediate medical treatment -03283413 06 n 01 emesis_basin 0 001 @ 02801525 n 0000 | a basin used by bedridden patients for vomiting -03283519 06 n 04 emetic 0 vomit 0 vomitive 0 nauseant 0 005 @ 04074482 n 0000 + 02195191 v 0402 + 00076400 v 0201 ~ 03583967 n 0000 ~ 03994417 n 0000 | a medicine that induces nausea and vomiting -03283717 06 n 01 Emetrol 0 001 @ 02719750 n 0000 | trade name for an antiemetic drug that has a mint flavor -03283827 06 n 01 emitter 0 003 @ 03274796 n 0000 #p 04471632 n 0000 + 02767308 v 0101 | the electrode in a transistor where electrons originate -03283973 06 n 01 Empire_State_Building 0 002 @i 04233124 n 0000 #p 09119277 n 0000 | a skyscraper built in New York City in 1931; 1250 feet tall -03284120 06 n 01 emplacement 0 004 @ 03763133 n 0000 ;c 08199025 n 0000 + 01496843 v 0101 ~ 03469031 n 0000 | military installation consisting of a prepared position for siting a weapon -03284308 06 n 01 empty 0 004 @ 03094503 n 0000 + 01488313 v 0101 + 00448680 v 0101 + 00449692 v 0101 | a container that has been emptied; "return all empties to the store" -03284482 06 n 02 emulsion 0 photographic_emulsion 0 005 @ 03058107 n 0000 + 00500834 v 0101 + 00500638 v 0101 %s 15014170 n 0000 %s 15015192 n 0000 | a light-sensitive coating on paper or film; consists of fine grains of silver bromide suspended in a gelatin -03284743 06 n 01 enamel 0 003 @ 03058107 n 0000 + 01681723 v 0101 ~ 03805725 n 0000 | any smooth glossy coating that resembles ceramic glaze -03284886 06 n 01 enamel 1 001 @ 03875218 n 0000 | a paint that dries to a hard glossy finish -03284981 06 n 01 enamelware 0 003 @ 03101986 n 0000 ~ 03047799 n 0000 ~ 03453231 n 0000 | cooking utensil of enameled iron -03285106 06 n 02 enalapril 0 Vasotec 0 002 @ 02673637 n 0000 ;u 06845599 n 0201 | an ACE inhibitor (trade name Vasotec) that blocks the formation of angiotensin in the kidney and so results in vasodilation; administered after heart attacks -03285348 06 n 02 encainide 0 Enkaid 0 002 @ 02715941 n 0000 ;u 06845599 n 0201 | antiarrhythmic drug (trade name Enkaid) used to treat life-threatening arrhythmias but increases the risk of sudden death in heart attack patients -03285578 06 n 01 encaustic 0 001 @ 03875218 n 0000 | a paint consisting of pigment mixed with melted beeswax; it is fixed with heat after application -03285730 06 n 02 encephalogram 0 pneumoencephalogram 0 001 @ 04100620 n 0000 | an X ray of the brain made by replacing spinal fluid with a gas (usually oxygen) to improve contrast -03285912 06 n 01 enclosure 0 020 @ 02735688 n 0000 + 02711114 v 0101 + 01580467 v 0105 ~ 02936714 n 0000 ~ 02964634 n 0000 ~ 02983072 n 0000 ~ 03003730 n 0000 ~ 03081859 n 0000 ~ 03217191 n 0000 ~ 03264021 n 0000 ~ 03683079 n 0000 ~ 03804211 n 0000 ~ 03907227 n 0000 ~ 03950113 n 0000 ~ 03964495 n 0000 ~ 03966206 n 0000 ~ 03993703 n 0000 ~ 04061969 n 0000 ~ 04539203 n 0000 ~ 04610503 n 0000 | a structure consisting of an area that has been enclosed for some purpose -03286383 06 n 04 end 2 remainder 0 remnant 0 oddment 0 003 @ 03932670 n 0000 + 02637592 v 0201 ~ 03317136 n 0000 | a piece of cloth that is left over after the rest has been used or sold -03286572 06 n 01 endoscope 0 009 @ 03739693 n 0000 + 03063601 a 0101 ~ 02744961 n 0000 ~ 03071288 n 0000 ~ 03146560 n 0000 ~ 03426462 n 0000 ~ 03642144 n 0000 ~ 04007415 n 0000 ~ 04217387 n 0000 | a long slender medical instrument for examining the interior of a bodily organ or performing minor surgery -03286878 06 n 01 endotracheal_tube 0 002 @ 02984469 n 0000 ~ 03810412 n 0000 | a catheter that is inserted into the trachea through the mouth or nose in order to maintain an open air passage or to deliver oxygen or to permit the suctioning of mucus or to prevent aspiration of the stomach contents -03287178 06 n 02 end_product 0 output 0 005 @ 04007894 n 0000 + 01622795 v 0201 ~ 03134595 n 0000 ~ 03841417 n 0000 ~ 04500504 n 0000 | final product; the things produced -03287351 06 n 02 energizer 0 energiser 0 001 @ 03183080 n 0000 | a device that supplies electrical energy -03287459 06 n 02 enflurane 0 Ethrane 0 002 @ 03299929 n 0000 ;u 06845599 n 0201 | a nonflammable liquid (trade name Ethrane) used as an inhalation general anesthetic -03287627 06 n 01 engagement_ring 0 001 @ 04092609 n 0000 | a ring given and worn as a sign of betrothal -03287733 06 n 01 engine 0 010 @ 03789946 n 0000 + 10057714 n 0101 ~ 02687423 n 0000 ~ 02761557 n 0000 ~ 02762909 n 0000 %p 02946824 n 0000 %p 03431745 n 0000 ~ 03433877 n 0000 ~ 03507963 n 0000 ~ 04057435 n 0000 | motor that converts thermal energy to mechanical work -03288003 06 n 01 engine 2 003 @ 03574816 n 0000 ~ 02810139 n 0000 ~ 02981911 n 0000 | an instrument or machine that is used in warfare, such as a battering ram, catapult, artillery piece, etc.; "medieval engines of war" -03288225 06 n 03 engine_block 0 cylinder_block 0 block 4 004 @ 02979662 n 0000 #p 03579982 n 0000 #p 04062179 n 0000 %p 03156405 n 0000 | a metal casting containing the cylinders and cooling ducts of an engine; "the engine had to be replaced because the block was cracked" -03288500 06 n 02 engineering 0 engine_room 0 002 @ 04105893 n 0000 ;c 04194289 n 0000 | a room (as on a ship) in which the engine is located -03288643 06 n 01 enginery 0 001 @ 03701640 n 0000 | machinery consisting of engines collectively -03288742 06 n 02 English_horn 0 cor_anglais 0 001 @ 03228016 n 0000 | a double-reed woodwind instrument similar to an oboe but lower in pitch -03288886 06 n 02 English_saddle 0 English_cavalry_saddle 0 001 @ 04123740 n 0000 | a saddle having a steel cantle and pommel and no horn -03289025 06 n 01 engraving 0 008 @ 03959936 n 0000 ~ 03104247 n 0000 ~ 03299406 n 0000 ~ 03455923 n 0000 ~ 03478261 n 0000 ~ 03672097 n 0000 ~ 04311397 n 0000 ~ 04597536 n 0000 | a block or plate or other hard surface that has been engraved -03289268 06 n 01 engraving 1 007 @ 04003597 n 0000 ~ 03252542 n 0000 ~ 03299519 n 0000 ~ 03478400 n 0000 ~ 03672245 n 0000 ~ 04311485 n 0000 ~ 04597706 n 0000 | a print made from an engraving -03289462 06 n 03 enlargement 0 blowup 0 magnification 0 005 @ 03925226 n 0000 + 00240293 v 0303 + 00434077 v 0301 + 00240293 v 0201 + 00240293 v 0102 | a photographic print that has been enlarged -03289660 06 n 01 enlarger 0 002 @ 03926148 n 0000 + 00240293 v 0102 | photographic equipment consisting of an optical projector used to enlarge a photograph -03289819 06 n 01 Enovid 0 003 @ 03936895 n 0000 %s 14746793 n 0000 %s 14751216 n 0000 | trade name for an oral contraceptive containing mestranol and norethynodrel -03289985 06 n 01 ensemble 0 002 @ 03859958 n 0000 ~ 04129766 n 0000 | a coordinated outfit (set of clothing) -03290096 06 n 01 ensign 1 001 @ 03071923 n 0000 | colors flown by a ship to show its nationality -03290195 06 n 01 entablature 0 007 @ 04341686 n 0000 #p 04407686 n 0000 ;c 06123363 n 0000 %p 02734835 n 0000 %p 02755823 n 0000 %p 03111041 n 0000 %p 03397087 n 0000 | (architecture) the structure consisting of the part of a classical temple above the columns between a capital and the roof -03290489 06 n 01 enteric-coated_aspirin 0 001 @ 02748618 n 0000 | aspirin that is treated to pass through the stomach unaltered and to dissolve in the intestines -03290653 06 n 01 entertainment_center 0 001 @ 04549122 n 0000 | a wall unit containing sound and television systems -03290771 06 n 05 entrance 0 entranceway 0 entryway 0 entry 0 entree 0 013 @ 02671062 n 0000 + 02016523 v 0501 + 02016523 v 0401 ~ 02734217 n 0000 ~ 03224032 n 0000 ~ 03428477 n 0000 ~ 03499142 n 0000 ~ 03950818 n 0000 ~ 03985684 n 0000 ~ 03986224 n 0000 ~ 04175669 n 0000 ~ 04297327 n 0000 ~ 04541662 n 0000 | something that provides access (to get in or get out); "they waited at the entrance to the garden"; "beggars waited just outside the entryway to the cathedral" -03291243 06 n 01 entrant 0 001 @ 03076708 n 0000 | a commodity that enters competition with established merchandise; "a well publicized entrant is the pocket computer" -03291413 06 n 02 entrenching_tool 0 trenching_spade 0 001 @ 03488603 n 0000 | a hand shovel carried by infantrymen for digging trenches -03291551 06 n 02 entrenchment 1 intrenchment 0 004 @ 03385557 n 0000 + 01531124 v 0101 ~ 04084089 n 0000 %p 04478657 n 0000 | an entrenched fortification; a position protected by trenches -03291741 06 n 01 envelope 0 001 @ 04605726 n 0000 | any wrapper or covering -03291819 06 n 01 envelope 1 002 @ 03094503 n 0000 ~ 04589434 n 0000 | a flat (usually rectangular) container for a letter, thin package, etc. -03291963 06 n 02 envelope 2 gasbag 0 002 @ 02773037 n 0000 #p 02782093 n 0000 | the bag containing the gas in a balloon -03292085 06 n 01 eolith 0 001 @ 04451818 n 0000 | a crude stone artifact (as a chipped flint); possibly the earliest tools -03292210 06 n 02 epaulet 0 epaulette 0 002 @ 02681518 n 0000 ~ 04207473 n 0000 | adornment consisting of an ornamental cloth pad worn on the shoulder -03292362 06 n 01 epauliere 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the shoulder -03292475 06 n 01 epee 0 002 @ 03327691 n 0000 ;c 01171644 n 0000 | a fencing sword similar to a foil but with a heavier blade -03292603 06 n 01 epergne 0 001 @ 02994419 n 0000 | a large table centerpiece with branching holders for fruit or sweets or flowers -03292736 06 n 02 epicyclic_train 0 epicyclic_gear_train 0 003 @ 03431745 n 0000 %p 03956331 n 0000 %p 04355821 n 0000 | a system of epicyclic gears in which at least one wheel axis itself revolves about another fixed axis -03292960 06 n 01 epidiascope 0 001 @ 04009552 n 0000 | an optical projector that gives images of both transparent and opaque objects -03293095 06 n 01 epilating_wax 0 001 @ 03177165 n 0000 | a mixture of resins and waxes to remove cosmetically undesirable hair; mixture is applied hot to the surface and after cooling is pulled away taking the hairs with it -03293321 06 n 01 Epsom_salts 0 002 @ 04025748 n 0000 ;u 06295235 n 0000 | (used with a singular noun) hydrated magnesium sulfate used as a laxative -03293471 06 n 02 equal-area_projection 0 equal-area_map_projection 0 003 @ 03720443 n 0000 ~ 03530326 n 0000 ~ 04223915 n 0000 | a map projection in which quadrilaterals formed by meridians and parallels have an area on the map proportional to their area on the globe -03293741 06 n 02 equalizer 1 equaliser 1 001 @ 03278248 n 0000 | electronic equipment that reduces frequency distortion -03293863 06 n 01 equatorial 0 001 @ 04403638 n 0000 | a telescope whose mounting has only two axes of motion, one parallel to the Earth's axis and the other one at right angles to it -03294048 06 n 01 equipment 0 025 @ 03575240 n 0000 + 02339413 v 0101 ~ 02727825 n 0000 ~ 02761206 n 0000 ~ 03103128 n 0000 ~ 03270165 n 0000 ~ 03278248 n 0000 ~ 03401721 n 0000 ~ 03414162 n 0000 ~ 03430959 n 0000 ~ 03663910 n 0000 ~ 03664159 n 0000 ~ 03729951 n 0000 ~ 03730153 n 0000 ~ 03811847 n 0000 ~ 03926148 n 0000 ~ 04044955 n 0000 ~ 04063373 n 0000 ~ 04077734 n 0000 ~ 04098169 n 0000 ~ 04137444 n 0000 ~ 04285146 n 0000 ~ 04324120 n 0000 ~ 04397261 n 0000 ~ 04415257 n 0000 | an instrumentality needed for an undertaking or to perform a service -03294604 06 n 02 erasable_programmable_read-only_memory 0 EPROM 0 002 @ 04058239 n 0000 ;c 06128570 n 0000 | (computer science) a read-only memory chip that can be erased by ultraviolet light and programmed again with new data -03294833 06 n 01 eraser 0 006 @ 03563967 n 0000 + 01548718 v 0101 + 00999815 v 0101 ~ 02846619 n 0000 ~ 03571853 n 0000 ~ 04116512 n 0000 | an implement used to erase something -03295012 06 n 01 erecting_prism 0 001 @ 04005340 n 0000 | a right-angled optical prism used to turn an inverted image upright -03295140 06 n 01 erection 0 002 @ 04341686 n 0000 + 01661243 v 0102 | a structure that has been erected -03295246 06 n 01 Erlenmeyer_flask 0 001 @ 03359566 n 0000 | a conical flask with a wide base and narrow neck -03295357 06 n 06 erythromycin 0 Erythrocin 0 E-Mycin 0 Ethril 0 Ilosone 0 Pediamycin 0 006 @ 02716866 n 0000 ;u 06845599 n 0601 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | an antibiotic (trade name Erythrocin or E-Mycin or Ethril or Ilosone or Pediamycin) obtained from the actinomycete Streptomyces erythreus; effective against many Gram-positive bacteria and some Gram-negative -03295773 06 n 03 escalator 0 moving_staircase 0 moving_stairway 0 001 @ 04298308 n 0000 | a stairway whose steps move continuously on a circulating belt -03295928 06 n 01 escape_hatch 0 003 @ 03499142 n 0000 #p 04347754 n 0000 #p 02691156 n 0000 | hatchway that provides a means of escape in an emergency -03296081 06 n 01 escapement 0 003 @ 03736970 n 0000 #p 04437953 n 0000 %p 03296217 n 0000 | mechanical device that regulates movement -03296217 06 n 01 escape_wheel 0 002 @ 03430551 n 0000 #p 03296081 n 0000 | gear that engages a rocking lever -03296328 06 n 04 escarpment 0 escarp 0 scarp 0 protective_embankment 0 001 @ 03385557 n 0000 | a steep artificial slope in front of a fortification -03296478 06 n 02 escutcheon 0 scutcheon 0 001 @ 04192698 n 0000 | a shield; especially one displaying a coat of arms -03296597 06 n 01 escutcheon 1 003 @ 03959936 n 0000 #p 04316646 n 0000 ;c 00314469 n 0000 | (nautical) a plate on a ship's stern on which the name is inscribed -03296759 06 n 02 esmolol 0 Brevibloc 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | intravenous beta blocker (trade name Brevibloc) that acts for only a short time; used primarily for cardiac arrhythmias -03296963 06 n 02 esophagoscope 0 oesophagoscope 0 001 @ 03852280 n 0000 | an optical instrument for examining the inside of the esophagus -03297103 06 n 01 espadrille 0 001 @ 04133789 n 0000 | a sandal with a sole made of rope or rubber and a cloth upper part -03297226 06 n 01 espalier 0 001 @ 04478512 n 0000 | a trellis on which ornamental shrub or fruit tree is trained to grow flat -03297354 06 n 01 esplanade 0 001 @ 04010205 n 0000 | a long stretch of open level ground (paved or grassy) for walking beside the seashore -03297495 06 n 01 espresso_maker 0 001 @ 03063338 n 0000 | a coffee maker that forces live steam under pressure through dark roasted coffee grounds -03297644 06 n 01 espresso_shop 0 001 @ 02935658 n 0000 | a cafe where espresso is served -03297735 06 n 01 establishment 0 010 @ 04341686 n 0000 ;c 01094725 n 0000 ~ 02669885 n 0000 ~ 03574555 n 0000 ~ 03916289 n 0000 ~ 03927652 n 0000 ~ 03953020 n 0000 ~ 03982895 n 0000 ~ 04146976 n 0000 ~ 04511002 n 0000 | a public or private structure (business or governmental or educational) including buildings and equipment for business or residence -03298089 06 n 01 estaminet 0 001 @ 02935658 n 0000 | a small (and usually shabby) cafe selling wine and beer and coffee -03298211 06 n 02 estazolam 0 ProSom 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | a frequently prescribed sleeping pill (trade name ProSom) -03298352 06 n 01 estradiol_patch 0 001 @ 04470741 n 0000 | a transdermal patch that allows estradiol to be absorbed into the blood stream; used in treating estrogen deficiency and in hormone replacement therapy -03298565 06 n 02 estrogen_antagonist 0 tamoxifen 0 001 @ 02714883 n 0000 | an antagonist for estrogen that is used in the treatment of breast cancer -03298716 06 n 01 etagere 0 002 @ 03405725 n 0000 %p 04190052 n 0000 | a piece of furniture with open shelves for displaying small ornaments -03298858 06 n 02 etamine 0 etamin 0 001 @ 03309808 n 0000 | a soft cotton or worsted fabric with an open mesh; used for curtains or clothing etc. -03299006 06 n 02 etanercept 0 Enbrel 0 002 @ 02724966 n 0000 ;u 06845599 n 0201 | a genetically engineered anti-TNF compound (trade name Enbrel) consisting of receptors that bind TNF; it is injected twice a week in the treatment of rheumatoid arthritis -03299261 06 n 01 etcetera 0 001 @ 04345288 n 0000 | additional unspecified odds and ends; more of the same; "his report was full of etceteras" -03299406 06 n 01 etching 0 002 @ 03289025 n 0000 + 01750421 v 0101 | an etched plate made with the use of acid -03299519 06 n 01 etching 1 003 @ 03289268 n 0000 + 01750421 v 0101 ~ 02732295 n 0000 | an impression made from an etched plate -03299648 06 n 02 ethacrynic_acid 0 Edecrin 0 002 @ 03214670 n 0000 ;u 06845599 n 0201 | diuretic (trade name Edecrin) used to treat edema -03299788 06 n 02 ethchlorvynol 0 Placidyl 0 002 @ 04166841 n 0000 ;u 06845599 n 0201 | a mild sedative-hypnotic drug (trade name Placidyl) -03299929 06 n 06 ether 0 ethoxyethane 0 divinyl_ether 0 vinyl_ether 0 diethyl_ether 0 ethyl_ether 0 005 @ 03570838 n 0000 + 02871060 a 0101 + 00021554 v 0101 + 00506377 v 0101 ~ 03287459 n 0000 | a colorless volatile highly inflammable liquid formerly used as an inhalation anesthetic -03300216 06 n 01 ethernet 0 002 @ 03681477 n 0000 %p 03300443 n 0000 | a type of network technology for local area networks; coaxial cable carries radio frequency signals between computers at a rate of 10 megabits per second -03300443 06 n 01 ethernet_cable 0 002 @ 03059366 n 0000 #p 03300216 n 0000 | any of several types of coaxial cable used in ethernets -03300578 06 n 03 ethosuximide 0 Emeside 0 Zarontin 0 003 @ 02718469 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an anticonvulsant drug (trade names Emeside and Zarontin) used to treat petit mal epilepsy -03300786 06 n 01 ethyl_chloride 0 001 @ 03681148 n 0000 | a colorless flammable gas used as a local surface anesthetic -03300907 06 n 02 etodolac 0 Lodine 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14599168 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Lodine) -03301066 06 n 01 Eton_collar 0 001 @ 03068181 n 0000 | broad white collar worn over the lapels of a jacket -03301175 06 n 01 Eton_jacket 0 001 @ 03589791 n 0000 | a jacket hanging to the waist and cut square at the bottom -03301291 06 n 01 etui 0 001 @ 02774152 n 0000 | small ornamental ladies' bag for small articles -03301389 06 n 01 eudiometer 0 001 @ 03733925 n 0000 | measuring instrument consisting of a graduated glass tube for measuring volume changes in chemical reactions between gases -03301568 06 n 01 euphonium 0 001 @ 02804252 n 0000 | a bass horn (brass wind instrument) that is the tenor of the tuba family -03301696 06 n 01 euphoriant 0 002 @ 04017137 n 0000 + 00909118 a 0101 | a psychoactive drug that tends to produce elation and euphoria -03301833 06 n 01 evaporative_cooler 0 001 @ 03102859 n 0000 | a cooling system that cools by evaporation -03301940 06 n 01 evening_bag 0 001 @ 02774152 n 0000 | a handbag used with evening wear -03302030 06 n 01 Excalibur 0 001 @i 04373894 n 0000 | the legendary sword of King Arthur -03302121 06 n 01 excavation 0 016 @ 00021939 n 0000 + 02143539 v 0101 + 01311378 v 0101 + 01310660 v 0101 + 01313923 v 0101 ~ 02875233 n 0000 ~ 03173142 n 0000 ~ 03195659 n 0000 ~ 03214253 n 0000 ~ 03768346 n 0000 ~ 03768916 n 0000 ~ 03949442 n 0000 ~ 03982060 n 0000 ~ 04108137 n 0000 ~ 04572344 n 0000 ~ 04601473 n 0000 | a hole in the ground made by excavating -03302487 06 n 01 exchange 0 005 @ 04602044 n 0000 ~ 03077074 n 0000 ~ 03110937 n 0000 %p 03366301 n 0000 ~ 04323026 n 0000 | a workplace for buying and selling; open only to members -03302671 06 n 02 exercise_bike 0 exercycle 0 001 @ 03302790 n 0000 | an exercise device resembling a stationary bike -03302790 06 n 01 exercise_device 0 003 @ 03183080 n 0000 ~ 03302671 n 0000 ~ 04477387 n 0000 | a device designed to provide exercise for the user -03302938 06 n 02 exhaust 0 exhaust_system 0 007 @ 04377057 n 0000 #p 02761557 n 0000 %p 03303333 n 0000 %p 03303510 n 0000 %p 03303669 n 0000 %p 04218564 n 0000 %p 04385536 n 0000 | system consisting of the parts of an engine through which burned gases or steam are discharged -03303217 06 n 01 exhaust_fan 0 002 @ 03320046 n 0000 ~ 02755984 n 0000 | a fan that moves air out of an enclosure -03303333 06 n 01 exhaust_manifold 0 002 @ 03717750 n 0000 #p 03302938 n 0000 | a manifold that receives exhaust gases from the cylinders and conducts them to the exhaust pipe -03303510 06 n 01 exhaust_pipe 0 002 @ 03944672 n 0000 #p 03302938 n 0000 | a pipe through which burned gases travel from the exhaust manifold to the muffler -03303669 06 n 01 exhaust_valve 0 002 @ 04519153 n 0000 #p 03302938 n 0000 | a valve through which burned gases from a cylinder escape into the exhaust manifold -03303831 06 n 02 exhibition_hall 0 exhibition_area 0 002 @ 03478907 n 0000 ~ 03878211 n 0000 | a large hall for holding exhibitions -03303965 06 n 04 exit 0 issue 0 outlet 0 way_out 0 004 @ 03848729 n 0000 + 00528990 v 0201 + 02015598 v 0101 ~ 03859608 n 0000 | an opening that permits escape or release; "he blocked the way out"; "the canyon had only one issue" -03304197 06 n 01 Exocet 0 001 @ 03466162 n 0000 | a guided missile developed by the French government for use against ships -03304323 06 n 02 expansion_bit 0 expansive_bit 0 001 @ 02844307 n 0000 | a bit with a cutting blade that can be adjusted to different sizes -03304465 06 n 01 expansion_bolt 0 001 @ 02865665 n 0000 | a bolt that has an attachment that expands as the bolt is driven into a surface -03304605 06 n 02 expectorant 0 expectorator 0 002 @ 03740161 n 0000 ~ 04098032 n 0000 | a medicine promoting expectoration -03304730 06 n 01 explosive 0 014 @ 14806838 n 0000 #p 03305522 n 0000 + 00474620 a 0101 ~ 03008275 n 0000 ~ 03305135 n 0000 ~ 03305844 n 0000 ~ 04011609 n 0000 ~ 04551375 n 0000 ~ 14612764 n 0000 ~ 14853210 n 0000 ~ 14853392 n 0000 ~ 15016314 n 0000 ~ 15016503 n 0000 ~ 15069584 n 0000 | a chemical substance that undergoes a rapid chemical change (with the production of gas) on being heated or struck -03305135 06 n 01 explosive_compound 0 005 @ 03304730 n 0000 ~ 03107152 n 0000 ~ 03260293 n 0000 ~ 03958448 n 0000 ~ 04442143 n 0000 | a compound that is explosive -03305300 06 n 02 explosive_detection_system 0 EDS 0 001 @ 04377057 n 0000 | a rapid automatic system to detect plastic explosives in passengers' luggage using X-ray technology and computers; designed for use in airports -03305522 06 n 01 explosive_device 0 012 @ 03183080 n 0000 ~ 02866578 n 0000 ~ 03182232 n 0000 %p 03304730 n 0000 ~ 03400389 n 0000 ~ 03565565 n 0000 ~ 03768132 n 0000 ~ 03919702 n 0000 ~ 04159850 n 0000 ~ 04200138 n 0000 ~ 04456734 n 0000 ~ 04457157 n 0000 | device that bursts with sudden violence from internal energy -03305844 06 n 01 explosive_mixture 0 002 @ 03304730 n 0000 ~ 02850218 n 0000 | a mixture that is explosive -03305953 06 n 02 explosive_trace_detection 0 ETD 0 001 @ 04377057 n 0000 | a system for screening luggage in airports; an agent passes a swab around or inside luggage and then runs the swab through a machine that can detect trace amounts of explosives -03306207 06 n 02 export 0 exportation 0 004 @ 03076708 n 0000 + 02346409 v 0201 + 02346409 v 0101 ! 03564667 n 0101 | commodities (goods or services) sold to a foreign country -03306385 06 n 02 express 0 limited 0 003 @ 04019101 n 0000 + 00977699 a 0101 ! 03680942 n 0101 | public transport consisting of a fast train or bus that makes only a few scheduled stops; "he caught the express to New York" -03306610 06 n 08 expressway 0 freeway 0 motorway 0 pike 1 state_highway 0 superhighway 0 throughway 0 thruway 0 005 @ 03519981 n 0000 ~ 02758863 n 0000 ~ 02762508 n 0000 %p 02969323 n 0000 ~ 04501018 n 0000 | a broad highway designed for high-speed traffic -03306869 06 n 03 extension 2 telephone_extension 0 extension_phone 0 001 @ 04401088 n 0000 | an additional telephone set that is connected to the same telephone line -03307037 06 n 01 extension_cord 0 001 @ 03106898 n 0000 | an electric cord used to extend the length of a power cord -03307156 06 n 01 extension_ladder 0 002 @ 03632277 n 0000 ~ 02682699 n 0000 | a ladder whose length can be extended -03307274 06 n 02 exterior_door 0 outside_door 0 010 @ 03224032 n 0000 #p 02913152 n 0000 ~ 02768744 n 0000 %p 03222959 n 0000 %p 03223162 n 0000 ~ 03259118 n 0000 ~ 03399240 n 0000 %p 03521076 n 0000 %p 03882611 n 0000 ~ 04214535 n 0000 | a doorway that allows entrance to or exit from a building -03307573 06 n 01 external-combustion_engine 0 002 @ 03507963 n 0000 ~ 04309049 n 0000 | a heat engine in which ignition occurs outside the chamber (cylinder or turbine) in which heat is converted to mechanical energy -03307792 06 n 01 external_drive 0 001 @ 03243218 n 0000 | a drive with its own power supply and fan mounted outside the computer system enclosure and connected to the computer by a cable -03307981 06 n 02 extra 0 duplicate 1 002 @ 00021939 n 0000 + 01735308 v 0201 | something additional of the same kind; "he always carried extras in case of an emergency" -03308152 06 n 01 extractor 0 003 @ 03574816 n 0000 + 01351170 v 0101 ~ 03381231 n 0000 | an instrument for extracting tight-fitting components -03308297 06 n 01 eye 0 004 @ 03526198 n 0000 #p 03816136 n 0000 + 03132438 n 0102 + 03308853 n 0101 | a small hole or loop (as in a needle); "the thread wouldn't go through the eye" -03308481 06 n 01 eyebrow_pencil 0 001 @ 03714235 n 0000 | makeup provided by a cosmetic pencil that is used to darken the eyebrows -03308614 06 n 03 eyecup 0 eyebath 0 eye_cup 0 001 @ 04531098 n 0000 | a small vessel with a rim curved to fit the orbit of the eye; use to apply medicated or cleansing solution to the eyeball; "an eyecup is called an eyebath in Britain" -03308853 06 n 02 eyelet 0 eyehole 0 005 @ 03526198 n 0000 #p 03419014 n 0000 #p 02872752 n 0000 #p 03151077 n 0000 + 03308297 n 0101 | a small hole (usually round and finished around the edges) in cloth or leather for the passage of a cord or hook or bar -03309110 06 n 01 eyeliner 0 001 @ 03714235 n 0000 | makeup applied to emphasize the shape of the eyes -03309214 06 n 03 eye-lotion 0 eyewash 0 collyrium 0 001 @ 03691128 n 0000 | lotion consisting of a solution used as a cleanser for the eyes -03309356 06 n 02 eyepatch 0 patch 2 001 @ 03050026 n 0000 | a protective cloth covering for an injured eye -03309465 06 n 02 eyepiece 0 ocular 0 006 @ 03656484 n 0000 #p 03852688 n 0000 #p 02841315 n 0000 #p 03667829 n 0000 #p 04216963 n 0000 %p 04082886 n 0000 | combination of lenses at the viewing end of optical instruments -03309687 06 n 01 eyeshadow 0 001 @ 03714235 n 0000 | makeup consisting of a cosmetic substance used to darken the eyes -03309808 06 n 04 fabric 0 cloth 0 material 0 textile 0 178 @ 00021939 n 0000 ~ 02665985 n 0000 ~ 02677028 n 0000 ~ 02683183 n 0000 ~ 02698473 n 0000 ~ 02776505 n 0000 ~ 02802990 n 0000 ~ 02809105 n 0000 ~ 02809241 n 0000 ~ 02828427 n 0000 ~ 02867401 n 0000 ~ 02878425 n 0000 ~ 02903727 n 0000 ~ 02903852 n 0000 ~ 02904803 n 0000 ~ 02910542 n 0000 ~ 02921195 n 0000 ~ 02939763 n 0000 ~ 02942147 n 0000 ~ 02942460 n 0000 ~ 02944256 n 0000 ~ 02944579 n 0000 ~ 02952109 n 0000 ~ 02953673 n 0000 ~ 02977330 n 0000 ~ 02998107 n 0000 ~ 03003633 n 0000 ~ 03004409 n 0000 ~ 03013850 n 0000 ~ 03016868 n 0000 ~ 03019304 n 0000 ~ 03019938 n 0000 ~ 03058603 n 0000 ~ 03059934 n 0000 ~ 03106722 n 0000 ~ 03115180 n 0000 ~ 03115400 n 0000 ~ 03130563 n 0000 ~ 03131193 n 0000 ~ 03132666 n 0000 ~ 03160740 n 0000 ~ 03175189 n 0000 ~ 03188290 n 0000 ~ 03188725 n 0000 ~ 03199358 n 0000 ~ 03217653 n 0000 ~ 03233123 n 0000 ~ 03253071 n 0000 ~ 03253796 n 0000 %p 03265479 n 0000 ~ 03267696 n 0000 ~ 03298858 n 0000 ~ 03317889 n 0000 ~ 03326795 n 0000 ~ 03331244 n 0000 ~ 03356982 n 0000 ~ 03357267 n 0000 ~ 03362639 n 0000 ~ 03386726 n 0000 ~ 03396997 n 0000 ~ 03408340 n 0000 ~ 03409297 n 0000 ~ 03435743 n 0000 ~ 03437741 n 0000 ~ 03461651 n 0000 ~ 03462110 n 0000 ~ 03475674 n 0000 %p 03513627 n 0000 ~ 03516266 n 0000 ~ 03529444 n 0000 ~ 03535647 n 0000 ~ 03538817 n 0000 ~ 03591313 n 0000 ~ 03591798 n 0000 ~ 03615300 n 0000 ~ 03615406 n 0000 ~ 03625355 n 0000 ~ 03631177 n 0000 ~ 03635330 n 0000 ~ 03653110 n 0000 ~ 03672521 n 0000 ~ 03675445 n 0000 ~ 03675780 n 0000 ~ 03677682 n 0000 ~ 03703075 n 0000 ~ 03703590 n 0000 ~ 03703862 n 0000 ~ 03723534 n 0000 ~ 03752071 n 0000 ~ 03779128 n 0000 ~ 03779246 n 0000 ~ 03780799 n 0000 ~ 03782929 n 0000 ~ 03785237 n 0000 ~ 03785361 n 0000 ~ 03789603 n 0000 ~ 03794291 n 0000 ~ 03802393 n 0000 ~ 03806904 n 0000 ~ 03819595 n 0000 ~ 03825673 n 0000 ~ 03836906 n 0000 ~ 03843438 n 0000 ~ 03846100 n 0000 ~ 03855214 n 0000 ~ 03877351 n 0000 ~ 03885194 n 0000 ~ 03914231 n 0000 ~ 03914831 n 0000 ~ 03917814 n 0000 ~ 03932670 n 0000 ~ 03939440 n 0000 ~ 03943833 n 0000 ~ 03947798 n 0000 ~ 03970546 n 0000 ~ 03979377 n 0000 ~ 03980986 n 0000 ~ 03983612 n 0000 ~ 04003856 n 0000 ~ 04034367 n 0000 ~ 04056932 n 0000 ~ 04075813 n 0000 ~ 04123228 n 0000 ~ 04123567 n 0000 ~ 04128710 n 0000 ~ 04132829 n 0000 ~ 04137355 n 0000 ~ 04138261 n 0000 ~ 04138398 n 0000 ~ 04153330 n 0000 ~ 04155625 n 0000 ~ 04167661 n 0000 ~ 04174026 n 0000 ~ 04183076 n 0000 ~ 04184316 n 0000 ~ 04184880 n 0000 ~ 04189282 n 0000 ~ 04198233 n 0000 ~ 04198453 n 0000 ~ 04219067 n 0000 ~ 04219424 n 0000 ~ 04267165 n 0000 ~ 04283784 n 0000 ~ 04299828 n 0000 ~ 04350458 n 0000 ~ 04351699 n 0000 ~ 04368840 n 0000 ~ 04383839 n 0000 ~ 04387531 n 0000 ~ 04391445 n 0000 ~ 04393549 n 0000 ~ 04395106 n 0000 ~ 04414476 n 0000 ~ 04432662 n 0000 ~ 04459610 n 0000 ~ 04502502 n 0000 ~ 04503155 n 0000 ~ 04513998 n 0000 ~ 04524594 n 0000 ~ 04524941 n 0000 ~ 04525038 n 0000 ~ 04525191 n 0000 ~ 04533594 n 0000 ~ 04539407 n 0000 ~ 04539794 n 0000 %s 04551950 n 0000 ~ 04553561 n 0000 ~ 04561734 n 0000 ~ 04568713 n 0000 ~ 04568841 n 0000 ~ 04578112 n 0000 ~ 04585456 n 0000 ~ 04594742 n 0000 %s 04598965 n 0000 ~ 04599235 n 0000 ~ 04605163 n 0000 ~ 04613015 n 0000 ~ 14592309 n 0000 | artifact made by weaving or felting or knitting or crocheting natural or synthetic fibers; "the fabric in the curtains was light and semitransparent"; "woven cloth originated in Mesopotamia around 5000 BC"; "she measured off enough material for a dress" -03313333 06 n 03 facade 0 frontage 0 frontal 2 002 @ 03398467 n 0000 ~ 03399500 n 0000 | the face or front of a building -03313456 06 n 01 face 0 004 @ 04530176 n 0000 + 01271189 v 0101 ~ 03917973 n 0000 ~ 08659331 n 0000 | a vertical surface of a building or cliff -03313602 06 n 01 face 1 006 @ 03398467 n 0000 #p 04555897 n 0000 #p 03963982 n 0000 + 02137907 v 0101 ~ 03046657 n 0000 ~ 03186696 n 0000 | the side upon which the use of a thing depends (usually the most prominent surface of an object); "he dealt the cards face down" -03313873 06 n 01 face 2 004 @ 04362025 n 0000 #p 03501614 n 0000 #p 04039381 n 0000 #p 03446268 n 0000 | the striking or working surface of an implement -03314028 06 n 03 face_card 0 picture_card 0 court_card 0 004 @ 03963982 n 0000 ~ 03589093 n 0000 ~ 03618219 n 0000 ~ 04033425 n 0000 | one of the twelve cards in a deck bearing a picture of a face -03314227 06 n 01 face_guard 0 002 @ 03314378 n 0000 #p 03379051 n 0000 | face mask consisting of a strong wire mesh on the front of football helmets -03314378 06 n 01 face_mask 0 005 @ 03725035 n 0000 ~ 02983189 n 0000 ~ 03314227 n 0000 ~ 03327553 n 0000 ~ 04229816 n 0000 | mask that provides a protective covering for the face in such sports as baseball or football or hockey -03314608 06 n 01 faceplate 0 002 @ 04014297 n 0000 ;c 03082979 n 0000 | a protective covering for the front of a machine or device (as a door lock or computer component) -03314780 06 n 01 face_powder 0 002 @ 03994008 n 0000 @ 03714235 n 0000 | cosmetic powder for the face -03314884 06 n 01 face_veil 0 002 @ 03502331 n 0000 ~ 03826039 n 0000 | a piece of more-or-less transparent material that covers the face -03315023 06 n 02 facility 0 installation 0 024 @ 00021939 n 0000 + 01570108 v 0201 ~ 02687992 n 0000 ~ 02733075 n 0000 ~ 02752311 n 0000 ~ 02770441 n 0000 ~ 02936020 n 0000 ~ 03077958 n 0000 ~ 03119790 n 0000 ~ 03177349 n 0000 ~ 03243501 n 0000 ~ 03386420 n 0000 ~ 03425956 n 0000 ~ 03745146 n 0000 ~ 03763133 n 0000 ~ 03997027 n 0000 ~ 04053218 n 0000 ~ 04065132 n 0000 ~ 04178897 n 0000 ~ 04263614 n 0000 ~ 04306080 n 0000 ~ 04473432 n 0000 ~ 04516874 n 0000 ~ 04562658 n 0000 | a building or place that provides a particular service or is used for a particular industry; "the assembly plant is an enormous facility" -03315644 06 n 02 facing 0 cladding 0 003 @ 04014297 n 0000 + 01271189 v 0101 ~ 04085873 n 0000 | a protective covering that protects the outside of a building -03315805 06 n 01 facing 1 004 @ 03673767 n 0000 #p 03068181 n 0000 #p 03145843 n 0000 + 01271936 v 0101 | a lining applied to the edge of a garment for ornamentation or strengthening -03315990 06 n 02 facing 2 veneer 0 002 @ 03058107 n 0000 + 01271189 v 0101 | an ornamental coating to a building -03316105 06 n 03 facsimile 0 facsimile_machine 0 fax 0 003 @ 03257586 n 0000 + 01007676 v 0301 + 01007676 v 0103 | duplicator that transmits the copy by wire or radio -03316274 06 n 02 facsimile 1 autotype 0 003 @ 03104594 n 0000 + 02653056 a 0201 + 01007676 v 0103 | an exact copy or reproduction -03316406 06 n 04 factory 0 mill 1 manufacturing_plant 0 manufactory 0 017 @ 03956922 n 0000 ~ 02750169 n 0000 ~ 02761696 n 0000 ~ 02950018 n 0000 ~ 03012897 n 0000 -c 03049066 n 0000 -c 03100897 n 0000 ~ 03387653 n 0000 ~ 03697007 n 0000 ~ 03887512 n 0000 %p 04008385 n 0000 %p 04203514 n 0000 ~ 04300358 n 0000 ~ 04311595 n 0000 ~ 04370600 n 0000 ~ 04417361 n 0000 -c 15117809 n 0000 | a plant consisting of one or more buildings with facilities for manufacturing -03316873 06 n 01 factory_ship 0 001 @ 04574471 n 0000 | a whaling ship equipped to process whale products at sea -03316988 06 n 01 factory_whistle 0 001 @ 04579432 n 0000 | a whistle at a factory that is sounded to announce times for starting or stopping work -03317136 06 n 01 fag_end 0 001 @ 03286383 n 0000 | the frayed end of a length of cloth or rope -03317233 06 n 02 fagot 0 faggot 0 001 @ 02919414 n 0000 | a bundle of sticks and branches bound together -03317340 06 n 02 fagoting 0 faggoting 0 002 @ 03282933 n 0000 %p 03317510 n 0000 | embroidery in which groups of parallel threads are tied together with fagot stitches -03317510 06 n 02 fagot_stitch 0 faggot_stitch 0 002 @ 04180314 n 0000 #p 03317340 n 0000 | the stitch that ties a group of parallel threads together in fagoting -03317673 06 n 01 Fahrenheit_thermometer 0 001 @ 04421872 n 0000 | a thermometer calibrated in degrees Fahrenheit -03317788 06 n 01 faience 0 001 @ 03262519 n 0000 | glazed earthenware decorated with opaque colors -03317889 06 n 01 faille 0 001 @ 03309808 n 0000 | a ribbed woven fabric of silk or rayon or cotton -03317990 06 n 01 fail-safe 0 001 @ 03738472 n 0000 | a mechanism capable of returning to a safe state in case there is a failure or malfunction -03318136 06 n 01 fairlead 0 002 @ 04020298 n 0000 ~ 04249582 n 0000 | a pulley-block used to guide a rope forming part of a ship's rigging to avoid chafing -03318294 06 n 01 fairy_light 0 002 @ 03665366 n 0000 ;r 08860123 n 0000 | a small colored light used for decoration (especially at Christmas) -03318438 06 n 03 fake 0 sham 0 postiche 1 009 @ 03562126 n 0000 + 01116857 a 0207 + 00838043 v 0202 + 01573238 a 0101 + 00839526 v 0104 + 02576921 v 0103 + 01654271 v 0102 ~ 03318707 n 0000 ~ 03991321 n 0000 | something that is a counterfeit; not what it seems to be -03318707 06 n 01 fake_book 0 001 @ 03318438 n 0000 | a fake in the form of an imitation book; used to fill bookcases of people who wish to appear scholarly -03318865 06 n 01 falchion 0 001 @ 04373894 n 0000 | a short broad slightly convex medieval sword with a sharp point -03318983 06 n 02 fallboard 0 fall-board 0 002 @ 04014297 n 0000 #p 03928116 n 0000 | the hinged protective covering that protects the keyboard of a piano when it is not being played -03319167 06 n 01 fallout_shelter 0 001 @ 04191595 n 0000 | a shelter to protect occupants from the fallout from an atomic bomb -03319296 06 n 01 false_bottom 0 001 @ 04341686 n 0000 | a horizontal structure that partitions a ship or box (especially one built close to the actual bottom) -03319457 06 n 01 false_face 0 002 @ 03724870 n 0000 #p 03320519 n 0000 | a mask worn as part of a masquerade costume -03319576 06 n 01 false_teeth 0 001 @ 03176386 n 0000 | a removable denture -03319653 06 n 01 falsie 0 001 @ 03873064 n 0000 | padding that is worn inside a brassiere -03319745 06 n 01 family_room 0 002 @ 04065464 n 0000 #p 03259505 n 0000 | a recreation room in a private house -03319858 06 n 02 famotidine 0 Pepcid 0 002 @ 03522239 n 0000 ;u 06845599 n 0201 | a histamine blocker (trade name Pepcid) used to treat peptic ulcers and gastritis and esophageal reflux -03320046 06 n 01 fan 0 006 @ 03183080 n 0000 #p 03103128 n 0000 + 01885580 v 0101 ~ 03271574 n 0000 ~ 03303217 n 0000 ~ 04024676 n 0000 | a device for creating a current of air by movement of a surface or surfaces -03320262 06 n 01 fan_belt 0 002 @ 02827883 n 0000 #p 03103128 n 0000 | a belt driven by the crankshaft that drives a fan that pulls air through the radiator -03320421 06 n 01 fan_blade 0 002 @ 02848523 n 0000 #p 03271574 n 0000 | blade of a rotating fan -03320519 06 n 03 fancy_dress 0 masquerade 0 masquerade_costume 0 005 @ 03113657 n 0000 @ 03206718 n 0000 + 02147962 v 0201 %p 03221205 n 0000 %p 03319457 n 0000 | a costume worn as a disguise at a masquerade party -03320735 06 n 01 fancy_goods 0 002 @ 03076708 n 0000 ;u 06295235 n 0000 | goods that are chiefly ornamental -03320845 06 n 01 fanion 0 001 @ 03354903 n 0000 | a small flag used by surveyors or soldiers to mark a position -03320959 06 n 01 fanlight 0 001 @ 04587648 n 0000 | a semicircular window over a door or window; usually has sash bars like the ribs of a fan -03321103 06 n 07 fanjet 0 fan-jet 0 fanjet_engine 0 turbojet 0 turbojet_engine 0 turbofan 0 turbofan_engine 0 005 @ 03596285 n 0000 #p 03321419 n 0000 #p 04012482 n 0000 %p 02683558 n 0000 %p 03426574 n 0000 | a jet engine in which a fan driven by a turbine provides extra air to the burner and gives extra thrust -03321419 06 n 04 fanjet 1 fan-jet 1 turbofan 1 turbojet 1 002 @ 03595860 n 0000 %p 03321103 n 0000 | an airplane propelled by a fanjet engine -03321563 06 n 02 fanny_pack 0 butt_pack 0 001 @ 04544450 n 0000 | a waist pack worn with the pouch in back -03321672 06 n 01 fantail 0 002 @ 03864356 n 0000 #p 02683692 n 0000 | an overhang consisting of the fan-shaped part of the deck extending aft of the sternpost of a ship -03321843 06 n 01 fan_tracery 0 002 @ 04463141 n 0000 #p 03321954 n 0000 | the carved tracery on fan vaulting -03321954 06 n 01 fan_vaulting 0 002 @ 04523993 n 0000 %p 03321843 n 0000 | an elaborate system of vaulting in which the ribs diverge like fans -03322099 06 n 01 farm 0 018 @ 04602044 n 0000 + 02420232 v 0101 + 01739814 v 0103 ~ 03016511 n 0000 ~ 03134015 n 0000 ~ 03159535 n 0000 %p 03322836 n 0000 ~ 03323096 n 0000 %p 03323211 n 0000 ~ 03453162 n 0000 ~ 03528761 n 0000 ~ 03935234 n 0000 ~ 04052442 n 0000 ~ 04178784 n 0000 ~ 04188064 n 0000 ~ 04343919 n 0000 ~ 04490614 n 0000 ~ 04536038 n 0000 | workplace consisting of farm buildings and cultivated land as a unit; "it takes several people to work the farm" -03322570 06 n 01 farm_building 0 004 @ 02913152 n 0000 ~ 02793495 n 0000 ~ 03016389 n 0000 ~ 04294879 n 0000 | a building on a farm -03322704 06 n 03 farmer's_market 0 green_market 0 greenmarket 0 001 @ 03847823 n 0000 | an open-air marketplace for farm products -03322836 06 n 01 farmhouse 0 002 @ 03544360 n 0000 #p 03322099 n 0000 | house for a farmer and family -03322940 06 n 01 farm_machine 0 005 @ 03699975 n 0000 ~ 03146846 n 0000 ~ 03496892 n 0000 ~ 03500699 n 0000 ~ 04428191 n 0000 | a machine used in farming -03323096 06 n 03 farmplace 0 farm-place 0 farmstead 0 001 @ 03322099 n 0000 | a farm together with its buildings -03323211 06 n 01 farmyard 0 002 @ 04610503 n 0000 #p 03322099 n 0000 | an area adjacent to farm buildings -03323319 06 n 01 farthingale 0 001 @ 03534429 n 0000 | a hoop worn beneath a skirt to extend it horizontally; worn by European women in the 16th and 17th centuries -03323485 06 n 01 fashion_plate 0 001 @ 03960664 n 0000 | a plate illustrating the latest fashion in dress -03323593 06 n 01 fashion 0 001 @ 03093574 n 0000 | consumer goods (especially clothing) in the current mode -03323703 06 n 04 fastener 0 fastening 0 holdfast 0 fixing 0 037 @ 04081844 n 0000 + 01356750 v 0302 + 01343892 v 0201 + 01340439 v 0101 + 01343892 v 0101 ~ 02827020 n 0000 ~ 02910353 n 0000 ~ 02928608 n 0000 ~ 02960690 n 0000 ~ 02982599 n 0000 ~ 03038281 n 0000 ~ 03041114 n 0000 ~ 03042829 n 0000 ~ 03043958 n 0000 ~ 03051249 n 0000 ~ 03112240 n 0000 ~ 03114839 n 0000 ~ 03132438 n 0000 ~ 03229244 n 0000 ~ 03338143 n 0000 ~ 03533392 n 0000 ~ 03627232 n 0000 ~ 03644073 n 0000 ~ 03673971 n 0000 ~ 03682487 n 0000 ~ 03683606 n 0000 ~ 03804744 n 0000 ~ 03836451 n 0000 ~ 03887185 n 0000 ~ 03940256 n 0000 ~ 04153751 n 0000 ~ 04159354 n 0000 ~ 04160036 n 0000 ~ 04238321 n 0000 ~ 04248209 n 0000 ~ 04445327 n 0000 ~ 04445610 n 0000 | restraint that attaches to something or holds something in place -03324502 06 n 01 fast_lane 0 002 @ 04466386 n 0000 ! 04244152 n 0101 | the traffic lane for vehicles that are moving rapidly -03324629 06 n 01 fast_reactor 0 002 @ 03834040 n 0000 ! 04420024 n 0101 | nuclear reactor in which nuclear fissions are caused by fast neutrons because little or no moderator is used -03324814 06 n 01 fat_farm 0 001 @ 03506370 n 0000 | a health spa that specializes in helping people lose weight -03324928 06 n 01 fatigues 0 003 @ 03763968 n 0000 ;c 08199025 n 0000 ;u 06295235 n 0000 | military uniform worn by military personnel when doing menial labor -03325088 06 n 02 faucet 1 spigot 0 005 @ 04072193 n 0000 %p 03485997 n 0000 ~ 03775636 n 0000 ~ 04327682 n 0000 ~ 04559451 n 0000 | a regulator for controlling the flow of a liquid from a reservoir -03325288 06 n 01 fauld 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | a piece of armor plate below the breastplate -03325403 06 n 01 fauteuil 0 001 @ 02738535 n 0000 | an upholstered armchair -03325481 06 n 02 feather_bed 0 featherbed 0 001 @ 03731164 n 0000 | a mattress stuffed with feathers -03325584 06 n 02 feather_boa 0 boa 0 001 @ 04143897 n 0000 | a long thin fluffy scarf of feathers or fur -03325691 06 n 01 featheredge 0 001 @ 03264136 n 0000 | a thin tapering edge -03325769 06 n 01 feature 0 003 @ 03748886 n 0000 + 02631659 v 0102 ~ 03234795 n 0000 | an article of merchandise that is displayed or advertised more than other articles -03325941 06 n 05 fedora 0 felt_hat 0 homburg 0 Stetson 0 trilby 0 001 @ 03497657 n 0000 | a hat made of felt with a creased crown -03326073 06 n 02 feedback_circuit 0 feedback_loop 0 002 @ 03033362 n 0000 ~ 03097535 n 0000 | a circuit that feeds back some of the output to the input of a system -03326239 06 n 01 feeder_line 0 001 @ 08616311 n 0000 | a branching path off of a main transportation line (especially an airline) -03326371 06 n 01 feedlot 0 001 @ 02913152 n 0000 | a building where livestock are fattened for market -03326475 06 n 02 fell 0 felled_seam 0 002 @ 04160372 n 0000 + 01331237 v 0101 | seam made by turning under or folding together and stitching the seamed materials to avoid rough edges -03326660 06 n 02 felloe 0 felly 0 002 @ 04092305 n 0000 #p 04574999 n 0000 | rim (or part of the rim) into which spokes are inserted -03326795 06 n 01 felt 0 004 @ 03309808 n 0000 + 00565592 v 0101 + 01316955 v 0101 + 01463212 v 0101 | a fabric made of compressed matted animal fibers -03326948 06 n 04 felt-tip_pen 0 felt-tipped_pen 0 felt_tip 0 Magic_Marker 0 002 @ 03906997 n 0000 ;u 06845599 n 0401 | a pen with a writing tip made of felt (trade name Magic Marker) -03327133 06 n 01 felucca 0 001 @ 04128837 n 0000 | a fast narrow sailing ship of the Mediterranean -03327234 06 n 02 fence 0 fencing 0 013 @ 02796623 n 0000 #p 08514865 n 0000 + 01588134 v 0201 + 01588134 v 0101 + 01130607 v 0103 ~ 02771547 n 0000 ~ 03000134 n 0000 ~ 03511175 n 0000 ~ 03930313 n 0000 ~ 04046974 n 0000 ~ 04326547 n 0000 ~ 04547592 n 0000 ~ 04571686 n 0000 | a barrier that serves to enclose an area -03327553 06 n 02 fencing_mask 0 fencer's_mask 0 001 @ 03314378 n 0000 | a face mask made of fine mesh that is worn over a fencer's face -03327691 06 n 01 fencing_sword 0 004 @ 04373894 n 0000 ~ 03292475 n 0000 ~ 03375575 n 0000 ~ 04121511 n 0000 | a sword used in the sport of fencing -03327841 06 n 02 fender 1 wing 2 004 @ 02796623 n 0000 #p 02958343 n 0000 + 01115916 v 0103 ~ 03796605 n 0000 | a barrier that surrounds the wheels of a vehicle to block splashing water or mud; "in Britain they call a fender a wing" -03328076 06 n 01 fender 2 002 @ 03464467 n 0000 + 01115916 v 0103 | a low metal guard to confine falling coals to a hearth -03328201 06 n 04 fender 3 buffer 2 cowcatcher 0 pilot 1 003 @ 03391770 n 0000 #p 03684823 n 0000 + 01115916 v 0103 | an inclined metal frame at the front of a locomotive to clear the track -03328392 06 n 03 fenoprofen 0 fenoprofen_calcium 0 Nalfon 0 003 @ 03828465 n 0000 ;u 06845599 n 0301 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Nalfon) used in the treatment of arthritis and other painful inflammatory disorders -03328650 06 n 02 Fentanyl 0 Sublimaze 0 002 @ 03850746 n 0000 @ 02707683 n 0000 | trade names of a narcotic analgesic that can be inhaled and that acts on the central nervous system and may become addictive; used as a veterinary anesthetic and with other drugs before, during, and after surgery; also used as a nonlethal gas to incapacitate people in hostage situations; also abused as a recreational drug -03329058 06 n 01 Feosol 0 001 @ 03247620 n 0000 | trade name of a drug rich in iron; used to treat some kinds of anemia -03329180 06 n 01 Fergon 0 001 @ 03247620 n 0000 | trade name of a drug rich in iron; used to treat some types of anemia -03329302 06 n 01 Ferris_wheel 0 002 @ 04110955 n 0000 @ 04088797 n 0000 | a vertical rotating mechanism consisting of a large wheel with suspended seats that remain upright as the wheel rotates; provides a ride at an amusement park -03329536 06 n 02 ferrule 0 collet 1 001 @ 02955065 n 0000 | a metal cap or band placed on a wooden pole to prevent splitting -03329663 06 n 02 ferry 0 ferryboat 0 004 @ 02858304 n 0000 + 01949435 v 0101 + 01949218 v 0101 ~ 02964295 n 0000 | a boat that transports people or vehicles across a body of water and operates on a regular schedule -03329880 06 n 01 fertility_drug 0 002 @ 03247620 n 0000 ~ 03048094 n 0000 | a drug used to increase a woman's fertility -03330002 06 n 01 ferule 0 001 @ 04372171 n 0000 | a switch (a stick or cane or flat paddle) used to punish children -03330120 06 n 02 fesse 0 fess 0 002 @ 03853734 n 0000 ;c 05801594 n 0000 | (heraldry) an ordinary consisting of a broad horizontal band across a shield -03330274 06 n 02 festoon 0 festoonery 0 003 @ 03368508 n 0000 + 01680267 v 0201 + 01680267 v 0101 | flower chains suspended in curves between points as a decoration -03330441 06 n 01 festoon 1 002 @ 03282401 n 0000 + 01680267 v 0101 | an embellishment consisting of a decorative representation of a string of flowers suspended between two points; used on pottery or in architectural work -03330665 06 n 01 festoon 2 001 @ 03151077 n 0000 | a curtain of fabric draped and bound at intervals to form graceful curves -03330792 06 n 02 fetoscope 0 foetoscope 0 001 @ 04317175 n 0000 | a stethoscope placed on the pregnant woman's abdomen to listen for the fetal heartbeat -03330947 06 n 02 fetter 0 hobble 0 003 @ 04181228 n 0000 + 01289633 v 0202 + 01288052 v 0101 | a shackle for the ankles or feet -03331077 06 n 02 fez 0 tarboosh 0 001 @ 02954340 n 0000 | a felt cap (usually red) for a man; shaped like a flat-topped cone with a tassel that hangs from the crown -03331244 06 n 03 fiber 1 fibre 1 vulcanized_fiber 0 001 @ 03309808 n 0000 | a leatherlike material made by compressing layers of paper or cloth -03331390 06 n 03 fiberboard 0 fibreboard 0 particle_board 0 002 @ 04547991 n 0000 ~ 03725506 n 0000 | wallboard composed of wood chips or shavings bonded together with resin and compressed into rigid sheets -03331599 06 n 02 fiber_optic_cable 0 fibre_optic_cable 0 003 @ 02934168 n 0000 #p 03331820 n 0000 %p 03852031 n 0000 | a cable made of optical fibers that can transmit large amounts of information at the speed of light -03331820 06 n 03 fiber-optic_transmission_system 0 fibre-optic_transmission_system 0 FOTS 0 002 @ 03077958 n 0000 %p 03331599 n 0000 | a communication system using fiber optic cables -03332005 06 n 01 fiberscope 0 002 @ 03739693 n 0000 %p 03852031 n 0000 | a flexible medical instrument involving fiber optics that is used to examine internal organs -03332173 06 n 01 fichu 0 001 @ 04143897 n 0000 | a lightweight triangular scarf worn by a woman -03332271 06 n 02 fiddlestick 0 violin_bow 0 002 @ 02879517 n 0000 #p 04536866 n 0000 | a bow used in playing the violin -03332393 06 n 02 field_artillery 0 field_gun 0 001 @ 02746365 n 0000 | movable artillery (other than antiaircraft) used by armies in the field (especially for direct support of front-line troops) -03332591 06 n 02 field_coil 0 field_winding 0 001 @ 03065708 n 0000 | the electric coil around a field magnet that produces the magneto motive force to set up the flux in an electric machine -03332784 06 n 02 field-effect_transistor 0 FET 0 001 @ 04471632 n 0000 | a transistor in which most current flows in a channel whose effective resistance can be controlled by a transverse electric field -03332989 06 n 01 field-emission_microscope 0 001 @ 03279508 n 0000 | electron microscope used to observe the surface structure of a solid -03333129 06 n 03 field_glass 0 glass 3 spyglass 0 002 @ 04070207 n 0000 + 02152690 v 0201 | a small refracting telescope -03333252 06 n 01 field_hockey_ball 0 001 @ 02778669 n 0000 | ball used in playing field hockey -03333349 06 n 01 field_hospital 0 002 @ 03762982 n 0000 ;c 08199025 n 0000 | a temporary military hospital near the battle lines -03333480 06 n 01 field_house 0 002 @ 02752311 n 0000 #p 04295881 n 0000 | an athletic facility where athletes prepare for sport -03333610 06 n 02 field_house 1 sports_arena 0 001 @ 03545150 n 0000 | a building for indoor sports -03333711 06 n 01 field_lens 0 001 @ 03656484 n 0000 | the lens that is farthest from the eye in an optical device with more than one lens -03333851 06 n 01 field_magnet 0 003 @ 03705379 n 0000 #p 03273061 n 0000 #p 03260504 n 0000 | a magnet that provides a magnetic field in a dynamo or electric motor -03334017 06 n 04 field-sequential_color_television 0 field-sequential_color_TV 0 field-sequential_color_television_system 0 field-sequential_color_TV_system 0 001 @ 03072201 n 0000 | an early form of color TV in which successive fields are scanned in three primary colors -03334291 06 n 01 field_tent 0 001 @ 02954163 n 0000 | a canvas tent for use in the field -03334382 06 n 01 fieldwork 0 001 @ 03385557 n 0000 | a temporary fortification built by troops in the field -03334492 06 n 01 fife 0 001 @ 03372029 n 0000 | a small high-pitched flute similar to a piccolo; has a shrill tone and is used chiefly to accompany drums in a marching band -03334667 06 n 01 fife_rail 0 001 @ 04047401 n 0000 | the railing surrounding the mast of a sailing vessel -03334775 06 n 01 fifth_wheel 0 001 @ 02817031 n 0000 | a steering bearing that enables the front axle of a horse-drawn wagon to rotate -03334912 06 n 02 fifth_wheel 1 spare 0 001 @ 02974003 n 0000 | an extra car wheel and tire for a four-wheel vehicle -03335030 06 n 03 fighter 0 fighter_aircraft 0 attack_aircraft 0 008 @ 02691156 n 0000 @ 04552348 n 0000 ;c 08199025 n 0000 + 01091427 v 0101 + 01090335 v 0102 ~ 03577672 n 0000 ~ 03608074 n 0000 ~ 04308397 n 0000 | a high-speed military or naval airplane designed to destroy enemy aircraft in the air -03335333 06 n 01 fighting_chair 0 001 @ 03001627 n 0000 | a fixed chair from which a saltwater angler can fight a hooked fish -03335461 06 n 01 fig_leaf 0 001 @ 03122748 n 0000 | a covering consisting of anything intended to conceal something regarded as shameful -03335600 06 n 01 figure 0 007 @ 03777283 n 0000 ~ 03255648 n 0000 ~ 03336070 n 0000 ~ 03336459 n 0000 ~ 04025350 n 0000 ~ 04251983 n 0000 ~i 04486718 n 0000 | a model of a bodily form (especially of a person); "he made a figure of Santa Claus" -03335846 06 n 02 figure_eight 0 figure_of_eight 0 001 @ 03627232 n 0000 | a knot having the shape of the numeral 8; tied in a rope that has been passed through a hole or pulley and that prevents the rope from coming loose -03336070 06 n 01 figurehead 0 001 @ 03335600 n 0000 | figure on the bow of some sailing vessels -03336168 06 n 02 figure_loom 0 figured-fabric_loom 0 001 @ 03689157 n 0000 | a loom for weaving figured fabrics -03336282 06 n 01 figure_skate 0 001 @ 03558404 n 0000 | an ice skate worn for figure skating; has a slightly curved blade and a row of jagged points at the front of the blade -03336459 06 n 02 figurine 0 statuette 0 002 @ 03335600 n 0000 + 04306847 n 0201 | a small carved or molded figure -03336575 06 n 01 filament 1 002 @ 04594489 n 0000 #p 03665924 n 0000 | a thin wire (usually tungsten) that is heated white hot by the passage of an electric current -03336742 06 n 01 filature 0 001 @ 02860415 n 0000 | a bobbin used in spinning silk into thread -03336839 06 n 01 file 0 009 @ 03489162 n 0000 ~ 02856362 n 0000 ~ 03361109 n 0000 %p 03474896 n 0000 ~ 03805280 n 0000 ~ 04054670 n 0000 ~ 04056073 n 0000 ~ 04114301 n 0000 ~ 04393301 n 0000 | a steel hand tool with small sharp teeth on some or all of its surfaces; used for smoothing wood or metal -03337140 06 n 03 file 1 file_cabinet 0 filing_cabinet 0 006 @ 03842156 n 0000 + 00869931 v 0103 + 01001643 v 0101 + 01001857 v 0101 ~ 02963302 n 0000 ~ 04529681 n 0000 | office furniture consisting of a container for keeping papers in order -03337383 06 n 01 file_folder 0 001 @ 03376279 n 0000 | folder that holds papers together in a filing cabinet -03337494 06 n 01 file_server 0 004 @ 03196324 n 0000 ;c 06128570 n 0000 ~ 03170459 n 0000 ~ 03827830 n 0000 | (computer science) a digital computer that provides workstations on a network with controlled access to shared resources -03337727 06 n 01 filet 0 002 @ 03631177 n 0000 + 01678957 v 0102 | lace having a square mesh -03337822 06 n 03 filigree 0 filagree 0 fillagree 0 002 @ 03282401 n 0000 + 01757871 v 0101 | delicate and intricate ornamentation (usually in gold or silver or other fine twisted wire) -03338009 06 n 01 filler 0 003 @ 04442831 n 0000 #p 03030035 n 0000 + 00452512 v 0101 | the tobacco used to form the core of a cigar -03338143 06 n 02 fillet 1 stopping 0 001 @ 03323703 n 0000 | fastener consisting of a narrow strip of welded metal used to join steel members -03338287 06 n 01 filling 1 004 @ 03175604 n 0000 ;c 06047430 n 0000 + 00261533 v 0101 ~ 03572631 n 0000 | (dentistry) a dental appliance consisting of any of various substances (as metal or plastic) inserted into a prepared cavity in a tooth; "when he yawned I could see the gold fillings in his teeth"; "an informal British term for `filling' is `stopping'" -03338648 06 n 01 film 0 004 @ 00002684 n 0000 ~ 04157703 n 0000 ~ 04237654 n 0000 ~ 04254205 n 0000 | a thin coating or layer; "the table was covered with a film of dust" -03338821 06 n 02 film 1 photographic_film 0 016 @ 03926412 n 0000 + 01711965 v 0101 + 01002740 v 0101 ~ 03378593 n 0000 ~ 03759432 n 0000 ~ 03789400 n 0000 ~ 03817191 n 0000 ~ 03857026 n 0000 ~ 03881404 n 0000 ~ 03987509 n 0000 ~ 04067658 n 0000 ~ 04101375 n 0000 ~ 04102872 n 0000 ~ 04173172 n 0000 ~ 04609531 n 0000 ~ 06621323 n 0000 | photographic material consisting of a base of celluloid covered with a photographic emulsion; used to make negatives or transparencies -03339296 06 n 02 film 2 plastic_film 0 005 @ 04188643 n 0000 @ 04605726 n 0000 + 02413390 a 0102 ~ 03976268 n 0000 ~ 04210591 n 0000 | a thin sheet of (usually plastic and usually transparent) material used to wrap or cover things -03339529 06 n 01 film_advance 0 001 @ 03738472 n 0000 | a mechanism for advancing film in a camera or projector -03339643 06 n 01 filter 0 015 @ 03183080 n 0000 + 01458664 v 0101 + 01458664 v 0102 ~ 02688273 n 0000 ~ 02772282 n 0000 ~ 03063199 n 0000 ~ 03232543 n 0000 ~ 03340183 n 0000 ~ 03400972 n 0000 ~ 03667060 n 0000 ~ 03843555 n 0000 ~ 04332243 n 0000 ~ 04559620 n 0000 ~ 14821852 n 0000 ~ 14843295 n 0000 | device that removes something from whatever passes through it -03340009 06 n 01 filter 1 003 @ 03269401 n 0000 ~ 03519226 n 0000 ~ 03694196 n 0000 | an electrical device that alters the frequency spectrum of signals passing through it -03340183 06 n 01 filter_bed 0 001 @ 03339643 n 0000 | filter consisting of a layer of sand or gravel for filtering water -03340306 06 n 01 filter_tip 0 002 @ 02688273 n 0000 #p 03340463 n 0000 | an air filter on the end of a cigarette; contains material that filters the smoke -03340463 06 n 01 filter-tipped_cigarette 0 002 @ 03030663 n 0000 %p 03340306 n 0000 | a cigarette with a filter tip -03340581 06 n 01 fin 0 003 @ 04294212 n 0000 #p 04194289 n 0000 ~ 04520784 n 0000 | a stabilizer on a ship that resembles the fin of a fish -03340723 06 n 03 finder 0 viewfinder 0 view_finder 0 004 @ 03851341 n 0000 #p 02942699 n 0000 #p 04403638 n 0000 #p 03470387 n 0000 | optical device that helps a user to find the target of interest -03340923 06 n 01 finery 0 002 @ 02756098 n 0000 ~ 04355115 n 0000 | elaborate or showy attire and accessories -03341035 06 n 02 fine-tooth_comb 0 fine-toothed_comb 0 001 @ 03074855 n 0000 | a comb with teeth set close together -03341153 06 n 01 finger 0 002 @ 03122748 n 0000 #p 03441112 n 0000 | one of the parts of a glove that provides covering for a finger or thumb -03341297 06 n 01 fingerboard 0 006 @ 04339638 n 0000 #p 02880546 n 0000 #p 03467517 n 0000 #p 02787622 n 0000 #p 03698360 n 0000 #p 03716966 n 0000 | a narrow strip of wood on the neck of some stringed instruments (violin or cello or guitar etc) where the strings are held against the wood with the fingers -03341606 06 n 01 finger_bowl 0 001 @ 02880940 n 0000 | small bowl for rinsing the fingers at table -03341707 06 n 01 finger_hole 0 004 @ 03526198 n 0000 #p 02882301 n 0000 #p 03186818 n 0000 ~ 04431025 n 0000 | a hole for inserting a finger -03341850 06 n 01 finger_hole 1 002 @ 03526198 n 0000 #p 04598582 n 0000 | one of a series of holes in a woodwind instrument; pitch changes when a finger covers it -03342015 06 n 02 finger_paint 0 fingerpaint 0 001 @ 03875218 n 0000 | paint that has the consistency of jelly -03342127 06 n 01 finger-painting 0 002 @ 03876519 n 0000 + 01681048 v 0101 | a painting produced by spreading paint with the fingers -03342262 06 n 03 finger_plate 0 escutcheon 2 scutcheon 2 001 @ 04014297 n 0000 | a flat protective covering (on a door or wall etc) to prevent soiling by dirty fingers -03342432 06 n 02 fingerstall 0 cot 2 001 @ 04187061 n 0000 | a sheath worn to protect a finger -03342529 06 n 01 finial 0 001 @ 03169390 n 0000 | an ornament at the top of a spire or gable; usually a foliated fleur-de-lis -03342657 06 n 02 finish_coat 0 finishing_coat 0 002 @ 03058107 n 0000 @ 14992287 n 0000 | the final coating of plaster applied to walls and ceilings; "we can't paint until they put on the finishing coat" -03342863 06 n 02 finish_coat 1 finishing_coat 1 001 @ 03058949 n 0000 | the final coat of paint -03342961 06 n 01 finisher 0 001 @ 04037443 n 0000 | a race car that finishes a race -03343047 06 n 01 fin_keel 0 003 @ 03959936 n 0000 #p 03609542 n 0000 ~ 02994012 n 0000 | a metal plate projecting from the keel of a shallow vessel to give it greater lateral stability -03343234 06 n 01 fipple 0 001 @ 03967942 n 0000 | a wooden plug forming a flue pipe (as the mouthpiece of a recorder) -03343354 06 n 04 fipple_flute 0 fipple_pipe 0 recorder 0 vertical_flute 0 003 @ 03945615 n 0000 ~ 03355468 n 0000 ~ 03912218 n 0000 | a tubular wind instrument with 8 finger holes and a fipple mouthpiece -03343560 06 n 01 fire 0 003 @ 03346455 n 0000 + 00378664 v 0102 ~ 03101302 n 0000 | a fireplace in which a relatively small fire is burning; "they sat by the fire and talked" -03343737 06 n 02 fire_alarm 0 smoke_alarm 0 001 @ 02694426 n 0000 | an alarm that is tripped off by fire or smoke -03343853 06 n 03 firearm 0 piece 3 small-arm 0 013 @ 03467984 n 0000 ~ 02759963 n 0000 %p 03349020 n 0000 %p 03683341 n 0000 ~ 03803116 n 0000 ~ 03948459 n 0000 ~ 04076284 n 0000 ~ 04090263 n 0000 ~ 04093775 n 0000 ~ 04206356 n 0000 %p 04216963 n 0000 ~ 04247544 n 0000 ~ 04502851 n 0000 | a portable gun; "he wore his firearm in a shoulder holster" -03344205 06 n 01 firebase 0 001 @ 02798290 n 0000 | an artillery base to support advancing troops -03344305 06 n 01 fire_bell 0 001 @ 02824448 n 0000 | a bell rung to give a fire alarm -03344393 06 n 01 fireboat 0 001 @ 02858304 n 0000 | a boat equipped to fight fires on ships or along a waterfront -03344509 06 n 01 firebox 0 002 @ 03404449 n 0000 #p 04310018 n 0000 | a furnace (as on a steam locomotive) in which fuel is burned -03344642 06 n 01 firebrick 0 002 @ 02897820 n 0000 %s 14813843 n 0000 | brick made of fire clay; used for lining e.g. furnaces and chimneys -03344784 06 n 01 fire_control_radar 0 002 @ 03812382 n 0000 ;c 08199025 n 0000 | naval radar that controls the delivery of fire on a military target -03344935 06 n 01 fire_control_system 0 002 @ 03812924 n 0000 ;c 08199025 n 0000 | naval weaponry consisting of a system for controlling the delivery of fire on a military target -03345115 06 n 03 firecracker 0 cracker 1 banger 0 006 @ 03348454 n 0000 + 02187693 v 0301 + 02183024 v 0201 ~ 02951090 n 0000 ~ 03014204 n 0000 ~ 04581262 n 0000 | firework consisting of a small explosive charge and fuse in a heavy paper casing -03345362 06 n 01 fire_door 0 001 @ 03221720 n 0000 | a fire-resistant door that can be closed to stop the spread of a fire -03345487 06 n 02 fire_engine 0 fire_truck 0 002 @ 04490091 n 0000 ~ 03632852 n 0000 | any of various large trucks that carry firemen and equipment to the site of a fire -03345658 06 n 02 fire_escape 0 emergency_exit 0 001 @ 04298308 n 0000 | a stairway (often on the outside of a building) that permits exit in the case of fire or other emergency -03345837 06 n 03 fire_extinguisher 0 extinguisher 0 asphyxiator 0 002 @ 03183080 n 0000 + 02761897 v 0203 | a manually operated device for extinguishing small fires -03346004 06 n 01 fire_hose 0 001 @ 03539875 n 0000 | a large hose that carries water from a fire hydrant to the site of the fire -03346135 06 n 01 fire_iron 0 005 @ 03563967 n 0000 #p 03346455 n 0000 ~ 03347472 n 0000 ~ 03975926 n 0000 ~ 04208427 n 0000 | metal fireside implements -03346289 06 n 02 fireman's_ax 0 fireman's_axe 0 001 @ 02764044 n 0000 | an ax that has a long handle and a head with one cutting edge and a point on the other side -03346455 06 n 03 fireplace 1 hearth 1 open_fireplace 0 008 @ 04061969 n 0000 #p 03017428 n 0000 ~ 03343560 n 0000 %p 03346135 n 0000 %p 03507241 n 0000 %p 03507554 n 0000 %p 03719343 n 0000 %p 04557111 n 0000 | an open recess in a wall at the base of a chimney where a fire can be built; "the fireplace was so large you could walk inside it"; "he laid a fire in the hearth and lit it"; "the hearth was black with the charcoal of many fires" -03346898 06 n 03 fireplug 0 fire_hydrant 0 plug 1 001 @ 03550916 n 0000 | an upright hydrant for drawing water to use in fighting a fire -03347037 06 n 02 fire_screen 0 fireguard 0 001 @ 04151581 n 0000 | a metal screen before an open fire for protection (especially against flying sparks) -03347191 06 n 01 fire_ship 0 001 @ 04565375 n 0000 | a weapon consisting of a ship carrying explosives that is set adrift to destroy enemy ships -03347338 06 n 02 fire_station 0 firehouse 0 002 @ 04306080 n 0000 #p 03569964 n 0000 | a station housing fire apparatus and firemen -03347472 06 n 02 fire_tongs 0 coal_tongs 0 003 @ 04450749 n 0000 @ 03346135 n 0000 ;u 06295235 n 0000 | tongs for taking hold of burning coals -03347617 06 n 01 fire_tower 0 001 @ 04556948 n 0000 | a watchtower where a lookout is posted to watch for fires -03347731 06 n 01 firetrap 0 001 @ 02913152 n 0000 | a building that would be hard to escape from if it were to catch fire -03347855 06 n 01 fire_trench 0 001 @ 04478657 n 0000 | a trench especially constructed for the delivery of small-arms fire -03347980 06 n 01 firewall 0 001 @ 04546855 n 0000 | a fireproof (or fire-resistant) wall designed to prevent the spread of fire through a building or a vehicle -03348142 06 n 01 firewall 1 002 @ 04166111 n 0000 ;c 06128570 n 0000 | (computing) a security system consisting of a combination of hardware and software that limits the exposure of a computer or computer network to attack from crackers; commonly used on local area networks that are connected to the internet -03348454 06 n 02 firework 0 pyrotechnic 0 012 @ 14853392 n 0000 ;u 06295235 n 0000 ~ 02984328 n 0000 ~ 03345115 n 0000 ~ 03354816 n 0000 ~ 03723054 n 0000 ~ 04104641 n 0000 ~ 04174596 n 0000 ~ 04232902 n 0000 ~ 04268969 n 0000 ~ 04293450 n 0000 ~ 04456964 n 0000 | (usually plural) a device with an explosive that burns at a low rate and with colored flames; can be used to illuminate areas or send signals etc. -03348868 06 n 02 firing_chamber 0 gun_chamber 0 002 @ 03003730 n 0000 #p 03467984 n 0000 | chamber that is the part of a gun that receives the charge -03349020 06 n 01 firing_pin 0 002 @ 04337740 n 0000 #p 03343853 n 0000 | striker that ignites the charge by striking the primer -03349150 06 n 02 firing_range 0 target_range 0 003 @ 03997745 n 0000 ~ 04099761 n 0000 ~ 04201845 n 0000 | a practice range for target practice -03349296 06 n 01 firkin 0 001 @ 03610418 n 0000 | a small wooden keg -03349367 06 n 01 firmer_chisel 0 001 @ 03020692 n 0000 | a chisel with a thin blade for woodworking -03349469 06 n 01 first-aid_kit 0 001 @ 03619396 n 0000 | kit consisting of a set of bandages and medicines for giving first aid -03349599 06 n 01 first-aid_station 0 002 @ 04306080 n 0000 ~ 03238407 n 0000 | a station providing emergency care or treatment before regular medical aid can be obtained -03349771 06 n 01 first_base 0 001 @ 02797881 n 0000 | the base that must be touched first by a base runner in baseball -03349892 06 n 01 first_class 0 001 @ 02672371 n 0000 | the most expensive accommodations on a ship or train or plane -03350011 06 n 04 first_gear 0 first 0 low_gear 0 low 0 002 @ 03431243 n 0000 #p 02958343 n 0000 | the lowest forward gear ratio in the gear box of a motor vehicle; used to start a car moving -03350204 06 n 03 fishbowl 0 fish_bowl 0 goldfish_bowl 0 002 @ 02881193 n 0000 @ 02732072 n 0000 | a transparent bowl in which small fish are kept -03350352 06 n 01 fisherman's_bend 0 001 @ 03627232 n 0000 | a knot for tying a line to a spar or ring -03350456 06 n 03 fisherman's_knot 0 true_lover's_knot 1 truelove_knot 0 001 @ 03627232 n 0000 | a knot for tying the ends of two lines together -03350602 06 n 02 fisherman's_lure 0 fish_lure 0 006 @ 02776205 n 0000 ;c 00454237 n 0000 ~ 03373237 n 0000 ~ 03598515 n 0000 ~ 04278605 n 0000 ~ 04486934 n 0000 | (angling) any bright artificial bait consisting of plastic or metal mounted with hooks and trimmed with feathers -03350880 06 n 02 fishery 0 piscary 0 003 @ 04602044 n 0000 + 01140794 v 0101 ~ 03902869 n 0000 | a workplace where fish are caught and processed and sold -03351036 06 n 01 fish_farm 0 001 @ 04602044 n 0000 | a workplace (usually a pond) where fish are raised for food -03351151 06 n 01 fishhook 0 002 @ 03532342 n 0000 #m 03351434 n 0000 | a sharp barbed hook for catching fish -03351262 06 n 03 fishing_boat 0 fishing_smack 0 fishing_vessel 0 002 @ 04530566 n 0000 ~ 04476116 n 0000 | a vessel for fishing; often has a well to keep the catch alive -03351434 06 n 05 fishing_gear 0 tackle 1 fishing_tackle 0 fishing_rig 0 rig 5 012 @ 03430959 n 0000 %m 02860063 n 0000 %m 03351151 n 0000 %m 03351768 n 0000 %m 03351979 n 0000 %m 03410022 n 0000 %p 03436990 n 0000 %m 03495671 n 0000 %m 03639077 n 0000 %m 04067472 n 0000 %m 04271148 n 0000 %m 04278605 n 0000 | gear used in fishing -03351768 06 n 01 fishing_line 0 005 @ 03106110 n 0000 #m 03351434 n 0000 ~ 03487222 n 0000 ~ 03824867 n 0000 ~ 04475900 n 0000 | a length of cord to which the leader and float and sinker and hook are attached -03351979 06 n 02 fishing_rod 0 fishing_pole 0 006 @ 04100174 n 0000 #m 03351434 n 0000 ~ 03374372 n 0000 %p 04067472 n 0000 ~ 04279353 n 0000 %p 04321804 n 0000 | a rod of wood or steel or fiberglass that is used in fishing to extend the fishing line -03352232 06 n 01 fish_joint 0 001 @ 02928413 n 0000 | a butt joint formed by bolting fish plates to the sides of two rails or beams -03352366 06 n 01 fish_knife 0 001 @ 04380346 n 0000 | a small table knife with a spatula blade used for eating fish -03352484 06 n 01 fish_ladder 0 001 @ 03895293 n 0000 | a series of ascending pools providing a passage for salmon to swim upstream past a dam -03352628 06 n 02 fishnet 0 fishing_net 0 007 @ 03819994 n 0000 ~ 03239607 n 0000 ~ 03437295 n 0000 ~ 03639077 n 0000 ~ 04168541 n 0000 ~ 04469345 n 0000 ~ 04475749 n 0000 | a net that will enclose fish when it is pulled in -03352853 06 n 01 fishplate 0 001 @ 03959936 n 0000 | metal plate bolted along sides of two rails or beams -03352961 06 n 01 fish_slice 0 002 @ 04500060 n 0000 ;r 08860123 n 0000 | a food turner with a broad blade used for turning or serving fish or other food that is cooked in a frying pan -03353147 06 n 02 fishtail_bit 0 blade_bit 0 001 @ 03240327 n 0000 | a drilling bit with cutting edges usually hardened against wear -03353281 06 n 01 fitment 0 002 @ 03405725 n 0000 ;c 03405725 n 0000 | any of the items furnishing or equipping a room (especially built-in furniture); "she liked the kitchen fitments" -03353467 06 n 02 fitted_sheet 0 contour_sheet 0 001 @ 04188179 n 0000 | a sheet (usually with elastic edges) tailored to fit a particular mattress -03353616 06 n 01 fitting 0 004 @ 02671421 n 0000 ~ 03422934 n 0000 ~ 03946162 n 0000 ~ 04061442 n 0000 | a small and often standardized accessory to a larger system -03353783 06 n 02 five-spot 0 five 0 003 @ 04286307 n 0000 @ 03220802 n 0000 @ 03191029 n 0000 | a playing card or a domino or a die whose upward face shows five pips -03353951 06 n 01 fixative 0 001 @ 04521987 n 0000 | a varnish dissolved in alcohol and sprayed over pictures to prevent smudging -03354082 06 n 01 fixed-combination_drug 0 001 @ 03740161 n 0000 | drug containing fixed amounts of two or more ingredients -03354207 06 n 01 fixer-upper 0 001 @ 03259505 n 0000 | a house or other dwelling in need of repair (usually offered for sale at a low price) -03354350 06 n 02 fixings 0 trimmings 0 002 @ 02671421 n 0000 ;u 06295235 n 0000 | the accessories that normally accompany (something or some activity); "an elaborate formal dinner with all the fixings"; "he bought a Christmas tree and trimmings to decorate it" -03354613 06 n 01 fixture 0 006 @ 00021939 n 0000 + 01340439 v 0102 ~ 02808097 n 0000 ~ 03667380 n 0000 ~ 03969259 n 0000 ~ 04254009 n 0000 | an object firmly fixed in place (especially in a household) -03354816 06 n 01 fizgig 0 001 @ 03348454 n 0000 | a firework that fizzes as it moves -03354903 06 n 01 flag 0 018 @ 03282591 n 0000 + 01670172 v 0101 + 01040550 v 0101 ~ 02701566 n 0000 ~ 02788021 n 0000 ~ 02811842 n 0000 ~ 02847009 n 0000 ~ 03071923 n 0000 ~ 03320845 n 0000 ~ 03589220 n 0000 ~ 03911866 n 0000 ~ 04301140 n 0000 ~ 04304084 n 0000 ~ 04481796 n 0000 ~ 04509985 n 0000 ~ 04580126 n 0000 ~ 04612623 n 0000 ~ 06882009 n 0000 | emblem usually consisting of a rectangular piece of cloth of distinctive design -03355339 06 n 02 flag 1 flagstone 0 001 @ 03901074 n 0000 | stratified stone that splits into pieces suitable as paving stones -03355468 06 n 03 flageolet 0 treble_recorder 0 shepherd's_pipe 1 002 @ 03343354 n 0000 ~ 03945459 n 0000 | a small fipple flute with four finger holes and two thumb holes -03355641 06 n 01 flagging 0 001 @ 04544979 n 0000 | a walk of flagstones; "the flagging in the garden was quite imaginative" -03355768 06 n 01 flagon 0 001 @ 04531098 n 0000 | a large metal or pottery vessel with a handle and spout; used to hold alcoholic beverages (usually wine) -03355925 06 n 02 flagpole 0 flagstaff 0 001 @ 04296261 n 0000 | a tall staff or pole on which a flag is raised -03356038 06 n 01 flagship 0 001 @ 04194289 n 0000 | the ship that carries the commander of a fleet and flies his flag -03356158 06 n 01 flagship 1 001 @ 04424218 n 0000 | the chief one of a related group; "it is their flagship newspaper" -03356279 06 n 01 flail 0 002 @ 03563967 n 0000 + 01416193 v 0104 | an implement consisting of handle with a free swinging stick at the end; used in manual threshing -03356446 06 n 01 flambeau 0 001 @ 04456115 n 0000 | a flaming torch (such as are used in processions at night) -03356559 06 n 01 flamethrower 0 001 @ 04565375 n 0000 | a weapon that squirts ignited fuel for several yards -03356670 06 n 01 Flaminian_Way 0 002 @i 03519981 n 0000 #p 08801678 n 0000 | an ancient Roman road in Italy built by Gaius Flaminius in 220 BC; extends north from Rome to cisalpine Gaul -03356858 06 n 02 flange 0 rim 1 001 @ 04008947 n 0000 | a projection used for strength or for attaching to another object -03356982 06 n 01 flannel 0 001 @ 03309808 n 0000 | a soft light woolen fabric; used for clothing -03357081 06 n 04 flannel 3 gabardine 3 tweed 3 white 3 002 @ 04489008 n 0000 ;u 06295235 n 0000 | (usually in the plural) trousers made of flannel or gabardine or tweed or white cloth -03357267 06 n 01 flannelette 0 002 @ 03309808 n 0000 ~ 04585626 n 0000 | a cotton fabric imitating flannel -03357376 06 n 01 flap 0 010 @ 03122748 n 0000 ~ 02793684 n 0000 ~ 03059236 n 0000 ~ 03062651 n 0000 ~ 03261019 n 0000 ~ 03591901 n 0000 ~ 03641706 n 0000 ~ 03973402 n 0000 ~ 04412097 n 0000 ~ 04450994 n 0000 | any broad thin and limber covering attached at one edge; hangs loose or projects freely; "he wrote on the flap of the envelope" -03357716 06 n 02 flap 1 flaps 0 003 @ 02688443 n 0000 #p 04592741 n 0000 ~ 03638743 n 0000 | a movable airfoil that is part of an aircraft wing; used to increase lift or drag -03357893 06 n 01 flare 0 002 @ 03183080 n 0000 ~ 03407744 n 0000 | a device that produces a bright light for warning or illumination or identification -03358046 06 n 01 flare_path 0 001 @ 02693070 n 0000 | an airstrip outline with lights to guide an airplane pilot in landing -03358172 06 n 06 flash 0 photoflash 0 flash_lamp 0 flashgun 0 flashbulb 0 flash_bulb 0 003 @ 03636248 n 0000 @ 03926148 n 0000 #p 03358726 n 0000 | a lamp for providing momentary light to take a photograph -03358380 06 n 01 flash 1 001 @ 03897943 n 0000 | a bright patch of color used for decoration or identification; "red flashes adorned the airplane"; "a flash sewn on his sleeve indicated the unit he belonged to" -03358593 06 n 02 flashboard 0 flashboarding 0 001 @ 02857365 n 0000 | boarding place along the top of a dam to increase its height -03358726 06 n 01 flash_camera 0 002 @ 02942699 n 0000 %p 03358172 n 0000 | a camera with a photoflash attachment -03358841 06 n 01 flasher 0 002 @ 03269401 n 0000 + 00424869 v 0101 | an electrical device that automatically turns a lamp on and off (as for an advertising display) -03359008 06 n 01 flashing 0 001 @ 04189482 n 0000 | sheet metal shaped and attached to a roof for strength and weatherproofing -03359137 06 n 02 flashlight 0 torch 0 003 @ 03272383 n 0000 %p 03359285 n 0000 ~ 03911767 n 0000 | a small portable battery-powered electric lamp -03359285 06 n 01 flashlight_battery 0 002 @ 03250952 n 0000 #p 03359137 n 0000 | a small dry battery containing dry cells; used to power flashlights -03359436 06 n 01 flash_memory 0 001 @ 03829340 n 0000 | nonvolatile storage that can be electrically erased and programmed anew -03359566 06 n 01 flask 0 007 @ 02876657 n 0000 ~ 02706221 n 0000 ~ 02952374 n 0000 ~ 03295246 n 0000 ~ 03521675 n 0000 ~ 04113968 n 0000 ~ 04518132 n 0000 | bottle that has a narrow neck -03359755 06 n 01 flat 1 004 @ 04145056 n 0000 #p 03773268 n 0000 ~ 03116435 n 0000 ~ 04456276 n 0000 | scenery consisting of a wooden frame covered with painted canvas; part of a stage setting -03359950 06 n 02 flat 2 flat_tire 0 001 @ 03971422 n 0000 | a deflated pneumatic tire -03360038 06 n 01 flat 4 001 @ 02883344 n 0000 | a shallow box in which seedlings are started -03360133 06 n 02 flat_arch 0 straight_arch 0 001 @ 02733524 n 0000 | an arch with mutually supporting voussoirs that has a straight horizontal extrados and intrados -03360300 06 n 01 flatbed 0 001 @ 04490490 n 0000 | an open truck bed or trailer with no sides; used to carry large heavy objects -03360431 06 n 02 flatbed_press 0 cylinder_press 0 001 @ 04000311 n 0000 | a printing press where the type is carried on a flat bed under a cylinder that holds paper and rolls over the type -03360622 06 n 01 flat_bench 0 001 @ 02828884 n 0000 | a bench on which a weightlifter lies to do exercises -03360731 06 n 03 flatcar 0 flatbed 1 flat 3 001 @ 03393912 n 0000 | freight car without permanent sides or roof -03360845 06 n 07 flat_coat 0 ground 0 primer 1 priming 1 primer_coat 0 priming_coat 0 undercoat 1 005 @ 03058949 n 0000 + 01365355 v 0703 + 01365355 v 0301 + 01365355 v 0202 ~ 03115897 n 0000 | the first or preliminary coat of paint or size applied to a surface -03361109 06 n 01 flat_file 0 001 @ 03336839 n 0000 | a file with two flat surfaces -03361194 06 n 01 flatiron 0 001 @ 03584829 n 0000 | an iron that was heated by placing it on a stove -03361297 06 n 01 flatlet 0 002 @ 02726305 n 0000 + 02726305 n 0102 | a tiny flat -03361380 06 n 02 flat_panel_display 0 FPD 0 002 @ 03211117 n 0000 #p 03985232 n 0000 | a type of video display that is thin and flat; commonly used in laptop computers -03361550 06 n 01 flats 0 002 @ 03380867 n 0000 ;u 06295235 n 0000 | footwear (shoes or slippers) with no heel (or a very low heel) -03361683 06 n 01 flat_tip_screwdriver 0 001 @ 04154565 n 0000 | a screwdriver with a flat wedge-shaped tip that fits into a slot in the head of a screw -03361837 06 n 02 flatware 0 silver 0 002 @ 04221424 n 0000 + 01395493 v 0201 | silverware eating utensils -03361945 06 n 01 flatware 1 004 @ 04381994 n 0000 ~ 03959485 n 0000 ~ 03963198 n 0000 ~ 04139291 n 0000 | tableware that is relatively flat and fashioned as a single piece -03362119 06 n 02 flatwork 0 flat_wash 0 001 @ 03585875 n 0000 | ironing that can be done mechanically -03362223 06 n 01 fleabag 0 001 @ 03542333 n 0000 | a run-down hotel -03362293 06 n 01 fleapit 0 002 @ 03032252 n 0000 ;r 08860123 n 0000 | an old shabby movie theater -03362393 06 n 02 flecainide 0 Tambocor 0 002 @ 02715941 n 0000 ;u 06845599 n 0201 | oral antiarrhythmic medication (trade name Tambocor) used as a last resort in treating arrhythmias; increases the risk of sudden death in heart attack patients -03362639 06 n 01 fleece 0 002 @ 03309808 n 0000 + 01153141 a 0102 | a soft bulky fabric with deep pile; used chiefly for clothing -03362771 06 n 01 fleet_ballistic_missile_submarine 0 001 @ 04347754 n 0000 | a submarine carrying ballistic missiles -03362890 06 n 02 fleur-de-lis 0 fleur-de-lys 0 002 @ 03008565 n 0000 ;c 05801594 n 0000 | (heraldry) charge consisting of a conventionalized representation of an iris -03363059 06 n 03 flight 0 flight_of_stairs 0 flight_of_steps 0 001 @ 04298308 n 0000 | a stairway (set of steps) between one floor or landing and the next -03363216 06 n 02 flight_deck 0 landing_deck 0 002 @ 03167666 n 0000 #p 02687172 n 0000 | the upper deck of an aircraft carrier; used as a runway -03363363 06 n 02 flight_simulator 0 trainer 0 002 @ 04221823 n 0000 ~ 03674731 n 0000 | simulator consisting of a machine on the ground that simulates the conditions of flying a plane -03363549 06 n 01 flintlock 0 003 @ 03469493 n 0000 #p 03363749 n 0000 %p 03469346 n 0000 | an obsolete gunlock that has flint embedded in the hammer; the flint makes a spark that ignites the charge -03363749 06 n 02 flintlock 1 firelock 0 002 @ 03803116 n 0000 %p 03363549 n 0000 | a muzzle loader that had a flintlock type of gunlock -03363887 06 n 01 flip-flop 0 001 @ 03033362 n 0000 | an electronic circuit that can assume either of two stable states -03364008 06 n 02 flip-flop 1 thong 2 001 @ 04133789 n 0000 | a backless sandal held to the foot by a thong between the big toe and the second toe -03364156 06 n 02 flipper 0 fin 2 003 @ 04199027 n 0000 + 01961691 v 0201 + 01241614 v 0101 | a shoe for swimming; the paddle-like front is an aid in swimming (especially underwater) -03364340 06 n 01 float 0 010 @ 00021939 n 0000 + 01187072 a 0102 + 01514887 v 0101 + 01874568 v 0101 + 01904293 v 0101 ~ 02860063 n 0000 ~ 03020563 n 0000 ~ 03663531 n 0000 ~ 03981464 n 0000 ~ 04045397 n 0000 | something that floats on the surface of water -03364599 06 n 02 float 1 plasterer's_float 0 001 @ 03489162 n 0000 | a hand tool with a flat face used for smoothing and finishing the surface of plaster or cement or stucco -03364775 06 n 01 float 2 001 @ 03210940 n 0000 | an elaborate display mounted on a platform carried by a truck (or pulled by a truck) in a procession or parade -03364937 06 n 02 floating_dock 0 floating_dry_dock 0 001 @ 03251533 n 0000 | dry dock that can be submerged under a vessel and then raised -03365078 06 n 02 floating_mine 0 marine_mine 0 002 @ 03768132 n 0000 ~ 03707171 n 0000 | an explosive mine designed to destroy ships that bump into it -03365231 06 n 02 floatplane 0 pontoon_plane 0 001 @ 04160586 n 0000 | a seaplane equipped with pontoons for landing or taking off from water -03365374 06 n 04 flood 0 floodlight 0 flood_lamp 0 photoflood 0 003 @ 03665366 n 0000 #p 03926148 n 0000 + 00292247 v 0201 | light that is a source of artificial illumination having a broad beam; used in photography -03365592 06 n 02 floor 0 flooring 0 009 @ 03536348 n 0000 #p 04105893 n 0000 #p 03479952 n 0000 + 01412346 v 0105 ~ 02825775 n 0000 ~ 03162080 n 0000 ~ 03366721 n 0000 ~ 03892178 n 0000 ~ 04490490 n 0000 | the inside lower horizontal surface (as of a room, hallway, tent, or other structure); "they needed rugs to cover the bare floors"; "we spread our sleeping bags on the dry floor of the tent" -03365991 06 n 04 floor 1 level 1 storey 0 story 0 007 @ 04341686 n 0000 #p 02913152 n 0000 ~ 02800497 n 0000 ~ 03463381 n 0000 ~ 03686130 n 0000 ~ 03686470 n 0000 ~ 03758089 n 0000 | a structure consisting of a room or set of rooms at a single position along a vertical scale; "what level is the office on?" -03366301 06 n 02 floor 2 trading_floor 0 002 @ 04105893 n 0000 #p 03302487 n 0000 | a large room in a exchange where the trading is done; "he is a floor trader" -03366464 06 n 01 floor 3 001 @ 03478907 n 0000 | the legislative hall where members debate and vote and conduct other business; "there was a motion from the floor" -03366630 06 n 02 floorboard 0 floor_board 0 001 @ 02856463 n 0000 | a board in the floor -03366721 06 n 01 floorboard 1 002 @ 03365592 n 0000 #p 02958343 n 0000 | the floor of an automobile -03366823 06 n 02 floor_cover 0 floor_covering 0 004 @ 03122748 n 0000 ~ 03727837 n 0000 ~ 03892425 n 0000 ~ 04118021 n 0000 | a covering for a floor -03366974 06 n 01 floor_joist 0 001 @ 03601840 n 0000 | joist that supports a floor -03367059 06 n 01 floor_lamp 0 001 @ 03636649 n 0000 | a lamp that stands on the floor -03367147 06 n 01 floor_plan 0 002 @ 03954199 n 0000 ~ 03463561 n 0000 | scale drawing of a horizontal section through a building at a given level; contrasts with elevation -03367321 06 n 02 flophouse 0 dosshouse 0 001 @ 03685820 n 0000 | a cheap lodging house -03367410 06 n 03 florist 0 florist_shop 0 flower_store 0 001 @ 04202417 n 0000 | a shop where flowers and ornamental plants are sold -03367545 06 n 01 floss 0 002 @ 04426788 n 0000 + 01154030 a 0103 | a soft loosely twisted thread used in embroidery -03367663 06 n 01 flotilla 0 001 @ 08292756 n 0000 | a fleet of small craft -03367740 06 n 01 flotilla 1 001 @ 08292756 n 0000 | a United States Navy fleet consisting of two or more squadrons of small warships -03367875 06 n 02 flotsam 0 jetsam 0 001 @ 04606358 n 0000 | the floating wreckage of a ship -03367969 06 n 01 flour_bin 0 001 @ 02839910 n 0000 | a bin for holding flour -03368048 06 n 01 flour_mill 0 001 @ 03765561 n 0000 | a mill for grinding grain into flour -03368141 06 n 02 flower_arrangement 0 floral_arrangement 0 006 @ 07938773 n 0000 @ 03169390 n 0000 ~ 02879087 n 0000 ~ 03368508 n 0000 ~ 04287610 n 0000 ~ 04606014 n 0000 | a decorative arrangement of flowers -03368352 06 n 03 flowerbed 0 flower_bed 0 bed_of_flowers 0 003 @ 02819474 n 0000 ~ 04109471 n 0000 ~ 04496519 n 0000 | a bed in which flowers are growing -03368508 06 n 01 flower_chain 0 003 @ 03368141 n 0000 ~ 03159828 n 0000 ~ 03330274 n 0000 | flowers strung together in a chain -03368637 06 n 01 flower_garden 0 002 @ 03417345 n 0000 ~ 03893603 n 0000 | a garden featuring flowering plants -03368750 06 n 01 floxuridine 0 001 @ 02722458 n 0000 | antineoplastic drug used to treat some cancers; can cause loss of hair -03368878 06 n 01 flue 0 004 @ 03089014 n 0000 ~ 03017428 n 0000 ~ 03018058 n 0000 ~ 03636891 n 0000 | a conduit to carry off smoke -03369011 06 n 03 flue_pipe 0 flue 1 labial_pipe 0 001 @ 03854815 n 0000 | organ pipe whose tone is produced by air passing across the sharp edge of a fissure or lip -03369178 06 n 01 flue_stop 0 001 @ 03854998 n 0000 | an organ stop with the tone of a flue pipe -03369276 06 n 02 flugelhorn 0 fluegelhorn 0 001 @ 02891788 n 0000 | a brass instrument resembling a cornet but with a wider bore -03369407 06 n 01 fluid_drive 0 002 @ 03119510 n 0000 #p 04472243 n 0000 | an automotive power coupling -03369512 06 n 01 fluid_flywheel 0 001 @ 03374649 n 0000 | a kind of fluid coupling in which the flywheel is the driving rotor -03369640 06 n 02 fluke 0 flue 2 002 @ 04008947 n 0000 #p 02709367 n 0000 | flat bladelike projection on the arm of an anchor -03369767 06 n 01 fluke 1 002 @ 02790322 n 0000 #p 03495671 n 0000 | a barb on a harpoon or arrow -03369866 06 n 01 flume 0 001 @ 04559275 n 0000 | watercourse that consists of an open artificial chute filled with water for power or for carrying logs -03370020 06 n 02 flunitrazepan 0 Rohypnol 0 002 @ 03054098 n 0000 ~ 04036494 n 0000 | a depressant and tranquilizer (trade name Rohypnol) often used in the commission of sexual assault; legally available in Europe and Mexico and Colombia -03370260 06 n 02 fluorescent 0 fluorescent_fixture 0 001 @ 03667380 n 0000 | a lighting fixture that uses a fluorescent lamp -03370387 06 n 01 fluorescent_lamp 0 001 @ 03636248 n 0000 | lamp consisting of a tube coated on the inside with a fluorescent material; mercury vapor in the tube emits ultraviolet radiation that is converted to visible radiation by the fluorescent material -03370646 06 n 02 fluoroscope 0 roentgenoscope 0 001 @ 04609651 n 0000 | an X-ray machine that combines an X-ray source and a fluorescent screen to enable direct observation -03370821 06 n 01 fluorouracil 0 001 @ 02722166 n 0000 | an antimetabolite used to treat certain cancers -03370927 06 n 04 fluoxetine 0 fluoxetine_hydrocholoride 0 Prozac 0 Sarafem 0 003 @ 04169152 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 | a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade names Prozac or Sarafem); it is thought to work by increasing the activity of serotonin in the brain -03371258 06 n 01 fluphenazine 0 001 @ 03713736 n 0000 | tranquilizer used to treat psychotic disorders -03371363 06 n 03 flurazepam 0 flurazepam_hydrochloride 0 Dalmane 0 002 @ 03771443 n 0000 ;u 06845599 n 0301 | tranquilizer (trade name Dalmane) used to treat insomnia -03371532 06 n 02 flurbiprofen 0 Ansaid 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Ansaid) that is administered only orally -03371728 06 n 01 flushless_toilet 0 001 @ 04446521 n 0000 | a toilet that relies on bacteria to break down waste matter (instead of using water) -03371875 06 n 02 flush_toilet 0 lavatory 2 002 @ 04446521 n 0000 %p 04020087 n 0000 | a toilet that is cleaned of waste by the flow of water through it -03372029 06 n 02 flute 0 transverse_flute 0 006 @ 04598582 n 0000 + 10098245 n 0101 + 10098245 n 0102 ~ 03334492 n 0000 ~ 03831757 n 0000 ~ 03929091 n 0000 | a high-pitched woodwind instrument; a slender tube closed at one end with finger holes on one end and an opening near the closed end across which the breath is blown -03372355 06 n 02 flute 2 fluting 0 003 @ 13893786 n 0000 + 01457376 v 0201 + 01457376 v 0101 | a groove or furrow in cloth etc (particularly a shallow concave groove on the shaft of a column) -03372549 06 n 03 flute 3 flute_glass 0 champagne_flute 0 001 @ 04592099 n 0000 | a tall narrow wineglass -03372656 06 n 02 fluvastatin 0 Lescol 0 002 @ 03676175 n 0000 ;u 06845599 n 0201 | least expensive statin drug (trade name Lescol); usually taken orally at bedtime -03372822 06 n 01 flux_applicator 0 001 @ 02730265 n 0000 | an applicator for applying flux (as in soldering) -03372933 06 n 01 fluxmeter 0 001 @ 03753077 n 0000 | meter that measures magnetic flux by the current it generates in a coil -03373060 06 n 02 fly 0 fly_front 0 002 @ 03848729 n 0000 #p 03419014 n 0000 | an opening in a garment that is closed by a zipper or by buttons concealed under a fold of cloth -03373237 06 n 01 fly 2 004 @ 03350602 n 0000 ~ 03251932 n 0000 ~ 04334365 n 0000 ~ 04573937 n 0000 | fisherman's lure consisting of a fishhook decorated to look like an insect -03373415 06 n 02 fly_gallery 0 fly_floor 0 001 @ 03961939 n 0000 | a narrow raised platform at the side of a stage in a theater; stagehands can work the ropes controlling equipment in the flies -03373611 06 n 01 flying_boat 0 001 @ 04160586 n 0000 | a large seaplane that floats with its fuselage in the water rather than on pontoons -03373752 06 n 04 flying_bridge 0 flybridge 0 fly_bridge 0 monkey_bridge 1 001 @ 02899257 n 0000 | the highest navigational bridge on a ship; a small (often open) deck above the pilot house -03373943 06 n 02 flying_buttress 0 arc-boutant 0 001 @ 02929289 n 0000 | a buttress that stands apart from the main structure and connected to it by an arch -03374102 06 n 01 flying_carpet 0 003 @ 04118021 n 0000 ;r 09207288 n 0000 ;c 07222050 n 0000 | (Asian folktale) an imaginary carpet that will fly people anywhere they wish to go -03374282 06 n 01 flying_jib 0 001 @ 03598151 n 0000 | the outermost of two or more jibs -03374372 06 n 01 fly_rod 0 001 @ 03351979 n 0000 | a long flexible fishing rod used in fly fishing -03374473 06 n 01 fly_tent 0 002 @ 04411264 n 0000 %p 04412097 n 0000 | a tent with a fly front -03374570 06 n 01 flytrap 0 001 @ 04474466 n 0000 | a trap for catching flies -03374649 06 n 01 flywheel 0 002 @ 03450018 n 0000 ~ 03369512 n 0000 | regulator consisting of a heavy wheel that stores kinetic energy and smooths the operation of a reciprocating engine -03374838 06 n 03 fob 0 watch_chain 0 watch_guard 0 001 @ 02999410 n 0000 | short chain or ribbon attaching a pocket watch to a man's vest -03374978 06 n 01 fob 1 001 @ 02681518 n 0000 | an adornment that hangs from a watch chain -03375070 06 n 02 fob 2 watch_pocket 0 001 @ 04532398 n 0000 | a vest pocket to hold a pocket watch -03375171 06 n 01 foghorn 0 003 @ 03536761 n 0000 @ 04217718 n 0000 ~ 03188871 n 0000 | a warning device consisting of a horn that generates a loud low tone -03375329 06 n 01 foglamp 0 001 @ 03503997 n 0000 | headlight that provides strong beam for use in foggy weather -03375443 06 n 01 foible 0 002 @ 03892891 n 0000 #p 04373894 n 0000 | the weaker part of a sword's blade from the forte to the tip -03375575 06 n 01 foil 0 002 @ 03327691 n 0000 ;c 01171644 n 0000 | a light slender flexible sword tipped by a button -03375694 06 n 01 foil 1 008 @ 04189482 n 0000 + 01335075 v 0101 + 01675522 v 0101 + 01266749 v 0101 ~ 02700767 n 0000 ~ 02999001 n 0000 ~ 03444728 n 0000 ~ 04439712 n 0000 | a piece of thin and flexible sheet metal; "the photographic film was wrapped in foil" -03375956 06 n 02 foil 2 transparency 1 003 @ 03931044 n 0000 ~ 04237773 n 0000 ~ 04534779 n 0000 | picture consisting of a positive photograph or drawing on a transparent base; viewed with a projector -03376159 06 n 04 fold 1 sheepfold 0 sheep_pen 0 sheepcote 0 002 @ 03907227 n 0000 + 01345877 v 0102 | a pen for sheep -03376279 06 n 01 folder 0 004 @ 03122748 n 0000 + 01277974 v 0101 ~ 03337383 n 0000 ~ 03729308 n 0000 | covering that is folded over to protect the contents -03376438 06 n 07 folderal 0 falderol 0 frill 1 gimcrackery 0 gimcrack 0 nonsense 0 trumpery 0 001 @ 03169390 n 0000 | ornamental objects of no great value -03376595 06 n 01 folding_chair 0 005 @ 03001627 n 0000 ~ 02946270 n 0000 ~ 03168217 n 0000 %p 04119892 n 0000 ~ 04610176 n 0000 | a chair that can be folded flat for storage -03376771 06 n 02 folding_door 0 accordion_door 0 001 @ 03579538 n 0000 | an interior door that opens by folding back in sections (rather than by swinging on hinges) -03376938 06 n 01 folding_saw 0 001 @ 04140064 n 0000 | a saw with a toothed blade that folds into a handle (the way a pocketknife folds) -03377077 06 n 02 foliation 0 foliage 0 004 @ 02734423 n 0000 ;c 06123363 n 0000 + 01670051 v 0201 + 01670051 v 0101 | (architecture) leaf-like architectural ornament -03377245 06 n 01 folio 0 001 @ 02870092 n 0000 | a book (or manuscript) consisting of large sheets of paper folded in the middle to make two leaves or four pages; "the first folio of Shakespeare's plays" -03377451 06 n 01 folk_art 0 001 @ 03434943 n 0000 | genre of art of unknown origin that reflects traditional values of a society -03377582 06 n 02 follow-up 0 followup 0 005 @ 04599396 n 0000 + 00486018 v 0202 + 00230276 v 0201 + 00486018 v 0102 + 00230276 v 0101 | a piece of work that exploits or builds on earlier work; "his new software is a follow-up to the programs they started with" -03377845 06 n 02 food_additive 0 artificial_additive 0 001 @ 02679788 n 0000 | an additive to food intended to improve its flavor or appearance or shelf-life -03378005 06 n 01 food_court 0 002 @ 03120198 n 0000 #p 03965456 n 0000 | an area (as in a shopping mall) where fast food is sold (usually around a common eating area) -03378174 06 n 01 food_processor 0 001 @ 03620052 n 0000 | a kitchen appliance with interchangeable blades; used for shredding or blending or chopping or slicing food -03378342 06 n 01 food_hamper 0 001 @ 03482405 n 0000 | a hamper for packing and transporting food -03378442 06 n 01 foot 1 002 @ 04359589 n 0000 #p 03654576 n 0000 | a support resembling a pedal extremity; "one foot of the chair was on the carpet" -03378593 06 n 01 footage 0 001 @ 03338821 n 0000 | film that has been shot; "they had stock footage of lightning, tornados, and hurricanes"; "he edited the news footage" -03378765 06 n 01 football 0 003 @ 02778669 n 0000 + 10101634 n 0102 %p 02848118 n 0000 | the inflated oblong ball used in playing American football -03378915 06 n 02 football_field 0 gridiron 1 002 @ 08570758 n 0000 #p 03379204 n 0000 | the playing field on which football is played -03379051 06 n 01 football_helmet 0 002 @ 03513137 n 0000 %p 03314227 n 0000 | a padded helmet with a face mask to protect the head of football players -03379204 06 n 01 football_stadium 0 003 @ 04295881 n 0000 @ 02752311 n 0000 %p 03378915 n 0000 | a stadium where football games are held -03379343 06 n 01 footbath 0 001 @ 02808440 n 0000 | a small bathtub for warming or washing or disinfecting the feet -03379461 06 n 01 footboard 0 002 @ 03882058 n 0000 #p 02822579 n 0000 | a vertical board or panel forming the foot of a bedstead -03379592 06 n 01 footboard 1 002 @ 03961939 n 0000 ~ 04120339 n 0000 | a narrow platform on which to stand or brace the feet -03379719 06 n 01 foot_brake 0 001 @ 03551084 n 0000 | hydraulic brake operated by pressing on a foot pedal -03379828 06 n 03 footbridge 0 overcrossing 0 pedestrian_bridge 0 003 @ 02898711 n 0000 ~ 03415486 n 0000 ~ 03596099 n 0000 | a bridge designed for pedestrians -03379989 06 n 02 foothold 0 footing 0 002 @ 04359589 n 0000 ~ 04444953 n 0000 | a place providing support for the foot in standing or climbing -03380134 06 n 01 footlights 0 003 @ 04418644 n 0000 #p 04013362 n 0000 ;u 06295235 n 0000 | theater light at the front of a stage that illuminate the set and actors -03380301 06 n 02 footlocker 0 locker 1 001 @ 04491769 n 0000 | a trunk for storing personal possessions; usually kept at the foot of a bed (as in a barracks) -03380461 06 n 01 footplate 0 003 @ 03961939 n 0000 #p 03684823 n 0000 ;r 08860123 n 0000 | the platform in the cab of a locomotive on which the engineer stands to operate the controls -03380647 06 n 01 foot_rule 0 001 @ 04118776 n 0000 | a ruler one foot long -03380724 06 n 04 footstool 0 footrest 0 ottoman 1 tuffet 0 001 @ 04326896 n 0000 | a low seat or a stool to rest the feet of a seated person -03380867 06 n 02 footwear 0 footgear 0 010 @ 03122748 n 0000 ~ 02872752 n 0000 ~ 03047690 n 0000 ~ 03361550 n 0000 %p 03478141 n 0000 ~ 03865949 n 0000 ~ 04199027 n 0000 ~ 04241394 n 0000 %p 04258982 n 0000 %p 04444218 n 0000 | covering for a person's feet -03381126 06 n 01 footwear 1 002 @ 03051540 n 0000 ~ 03540267 n 0000 | clothing worn on a person's feet -03381231 06 n 01 forceps 0 004 @ 03308152 n 0000 ;u 06295235 n 0000 ~ 03675907 n 0000 ~ 03793954 n 0000 | an extractor consisting of a pair of pincers used in medical treatment (especially for the delivery of babies) -03381450 06 n 01 force_pump 0 001 @ 04021798 n 0000 | pump used to force a liquid up and expel it under pressure -03381565 06 n 01 fore-and-after 0 001 @ 04128837 n 0000 | sailing vessel with a fore-and-aft rig -03381664 06 n 01 fore-and-aft_rig 0 001 @ 04091247 n 0000 | rig in which the principal sails are fore-and-aft -03381776 06 n 01 fore-and-aft_sail 0 011 @ 04127904 n 0000 ~ 03410423 n 0000 ~ 03410571 n 0000 ~ 03598151 n 0000 ~ 03645577 n 0000 %p 03695452 n 0000 ~ 03696568 n 0000 ~ 03775747 n 0000 ~ 04267435 n 0000 ~ 04289576 n 0000 ~ 04307767 n 0000 | any sail not set on a yard and whose normal position is in a fore-and-aft direction -03382104 06 n 02 forecastle 0 fo'c'sle 0 002 @ 03679384 n 0000 #p 04194289 n 0000 | living quarters consisting of a superstructure in the bow of a merchant ship where the crew is housed -03382292 06 n 01 forecourt 0 001 @ 03120198 n 0000 | the outer or front court of a building or of a group of buildings -03382413 06 n 01 foredeck 0 002 @ 03167666 n 0000 #p 04566862 n 0000 | the deck between the bridge and the forecastle -03382533 06 n 02 fore_edge 0 foredge 0 002 @ 03892891 n 0000 #p 02870092 n 0000 | the part of a book that faces inward when the book is shelved; the part opposite the spine -03382708 06 n 01 foreground 0 003 @ 04588739 n 0000 #p 04152593 n 0000 ;c 06128570 n 0000 | (computer science) a window for an active application -03382856 06 n 01 foremast 0 001 @ 03726760 n 0000 | the mast nearest the bow in vessels with two or more masts -03382969 06 n 01 fore_plane 0 001 @ 03954731 n 0000 | a carpenter's plane intermediate between a jack plane and a jointer plane -03383099 06 n 01 foresail 0 001 @ 04127904 n 0000 | the lowest sail on the foremast of a square-rigged vessel -03383211 06 n 01 forestay 0 002 @ 04307419 n 0000 ~ 03712637 n 0000 | an adjustable stay from the foremast to the deck or bowsprit; controls the bending of the mast -03383378 06 n 01 foretop 0 001 @ 03961939 n 0000 | a platform at the head of a foremast -03383468 06 n 01 fore-topmast 0 001 @ 04455250 n 0000 | the topmast next above the foremast -03383562 06 n 01 fore-topsail 0 001 @ 04455652 n 0000 | the topsail on a foremast -03383646 06 n 02 forge 0 smithy 0 004 @ 04602044 n 0000 + 01675245 v 0101 %p 02725872 n 0000 %p 03246653 n 0000 | a workplace where metal is worked by heating and hammering -03383821 06 n 01 forge 1 001 @ 03404449 n 0000 | furnace consisting of a special hearth where metal is heated before shaping -03383948 06 n 01 fork 0 008 @ 03153375 n 0000 + 00141914 v 0101 ~ 02973805 n 0000 %p 04010927 n 0000 ~ 04130357 n 0000 ~ 04380255 n 0000 %p 04439585 n 0000 ~ 04442582 n 0000 | cutlery used for serving and eating food -03384167 06 n 01 fork 2 004 @ 04451818 n 0000 + 01579340 v 0102 ~ 03500457 n 0000 %p 04010927 n 0000 | an agricultural tool used for lifting or digging; has a handle and metal prongs -03384352 06 n 01 forklift 0 001 @ 04170037 n 0000 | a small industrial vehicle with a power operated forked platform in front that can be inserted under loads to lift and move them -03384535 06 n 01 form 1 003 @ 03779370 n 0000 + 01659248 v 0102 + 00142191 v 0102 | a mold for setting concrete; "they built elaborate forms for pouring the foundation" -03384706 06 n 01 formal_garden 0 002 @ 03417345 n 0000 ~i 04496035 n 0000 | a garden laid out on regular lines with plants arranged in symmetrical locations or in geometrical designs -03384891 06 n 04 formalwear 0 eveningwear 0 evening_dress 0 evening_clothes 0 005 @ 02756098 n 0000 ~ 02780704 n 0000 ~ 03201638 n 0000 ~ 03201776 n 0000 ~ 03239054 n 0000 | attire to wear on formal occasions in the evening -03385117 06 n 01 formation 0 006 @ 05075602 n 0000 + 01659248 v 0102 + 00142191 v 0102 ~ 04054795 n 0000 ~ 04091247 n 0000 ~ 04282664 n 0000 | a particular spatial arrangement -03385295 06 n 01 Formica 0 002 @ 03958630 n 0000 ;u 06851742 n 0000 | any of various plastic laminates containing melamine -03385420 06 n 01 forte 0 002 @ 03892891 n 0000 #p 04373894 n 0000 | the stronger part of a sword blade between the hilt and the foible -03385557 06 n 02 fortification 0 munition 1 017 @ 03171356 n 0000 + 01606205 v 0101 ~ 02805983 n 0000 ~ 02920503 n 0000 ~ 02980441 n 0000 ~ 03171910 n 0000 ~ 03291551 n 0000 ~ 03296328 n 0000 ~ 03334382 n 0000 ~ 03697812 n 0000 ~i 03705134 n 0000 ~ 03878963 n 0000 ~ 03889503 n 0000 %p 04051825 n 0000 ~ 04066476 n 0000 ~i 04216508 n 0000 ~ 04322531 n 0000 | defensive structure consisting of walls or mounds built around a stronghold to strengthen it -03386011 06 n 02 fortress 0 fort 0 014 @ 03171356 n 0000 + 01606205 v 0202 + 01155421 v 0201 + 02023992 v 0201 + 01606205 v 0201 ~ 02695627 n 0000 ~i 02696669 n 0000 ~i 02805584 n 0000 %p 02811936 n 0000 ~ 03723781 n 0000 ~ 03999763 n 0000 ~ 04148801 n 0000 ~i 04460947 n 0000 ~i 08980119 n 0000 | a fortified defensive structure -03386343 06 n 01 forty-five 0 001 @ 03948459 n 0000 | a .45-caliber pistol -03386420 06 n 03 forum 0 assembly 1 meeting_place 0 001 @ 03315023 n 0000 | a public facility to meet for open discussion -03386544 06 n 01 Foucault_pendulum 0 001 @ 03909160 n 0000 | pendulum with a long wire; can swing in any direction; the change in the swing plane demonstrates the earth's rotation -03386726 06 n 01 foulard 0 001 @ 03309808 n 0000 | a light plain-weave or twill-weave silk or silklike fabric (usually with a printed design) -03386870 06 n 01 foul-weather_gear 0 001 @ 04015204 n 0000 | protective garment that is intended to keep the wearer dry and warm in bad weather -03387016 06 n 07 foundation 0 base 1 fundament 0 foot 0 groundwork 0 substructure 0 understructure 0 005 @ 04360501 n 0000 #p 04341686 n 0000 + 01856066 a 0201 ~ 02819697 n 0000 ~ 04045787 n 0000 | lowest support of a structure; "it was built on a base of solid rock"; "he stood at the foot of the tower" -03387323 06 n 02 foundation_garment 0 foundation 1 003 @ 04508163 n 0000 ~ 03112869 n 0000 ~ 04103665 n 0000 | a woman's undergarment worn to give shape to the contours of the body -03387506 06 n 01 foundation_stone 0 002 @ 04326084 n 0000 #p 02913152 n 0000 | a stone laid at a ceremony to mark the founding of a new building -03387653 06 n 02 foundry 0 metalworks 0 004 @ 03316406 n 0000 ~ 02741367 n 0000 ~ 02825872 n 0000 ~ 03585682 n 0000 | factory where metal castings are produced -03387815 06 n 02 fountain 0 fount 0 001 @ 03969259 n 0000 | a plumbing fixture that provides a flow of water -03387926 06 n 02 fountain 1 jet 1 002 @ 07405893 n 0000 + 01516290 v 0201 | an artificially produced flow of water -03388043 06 n 01 fountain 2 002 @ 04341686 n 0000 ~ 03241335 n 0000 | a structure from which an artificially produced jet of water arises -03388183 06 n 01 fountain_pen 0 002 @ 03906997 n 0000 %p 03571706 n 0000 | a pen that is supplied with ink from a reservoir in its barrel -03388323 06 n 01 four-in-hand 1 001 @ 03815615 n 0000 | a long necktie that is tied in a slipknot with one end hanging in front of the other -03388466 06 n 01 fourpenny_nail 0 001 @ 03804744 n 0000 | a nail 1.5 inches long -03388549 06 n 01 four-poster 0 002 @ 02818832 n 0000 %p 03654826 n 0000 | a bed with posts at the four corners that can be used to support a canopy or curtains -03388711 06 n 01 four-pounder 0 001 @ 02746365 n 0000 | an artillery gun that throws a shot weighing four pounds -03388826 06 n 02 four-spot 0 four 0 003 @ 04286307 n 0000 @ 03220802 n 0000 @ 03191029 n 0000 | a playing card or domino or die whose upward face shows four pips -03388990 06 n 02 four-stroke_engine 0 four-stroke_internal-combustion_engine 0 001 @ 03579982 n 0000 | an internal-combustion engine in which an explosive mixture is drawn into the cylinder on the first stroke and is compressed and ignited on the second stroke; work is done on the third stroke and the products of combustion are exhausted on the fourth stroke -03389353 06 n 01 four-tailed_bandage 0 001 @ 02785648 n 0000 | a bandage consisting of a strip of cloth split in two on both ends; the central part is placed under the chin to restrict motion of the mandible and the tails are tied over the top of the head -03389611 06 n 02 four-wheel_drive 0 4WD 0 001 @ 04472243 n 0000 | a transmission that provides power directly to all four wheels of a motor vehicle -03389761 06 n 02 four-wheel_drive 1 4WD 1 001 @ 03791235 n 0000 | a motor vehicle with a four-wheel drive transmission system -03389889 06 n 01 four-wheeler 0 001 @ 03474635 n 0000 | a hackney carriage with four wheels -03389983 06 n 01 fowling_piece 0 001 @ 04206356 n 0000 | a light shotgun used for fowling -03390075 06 n 02 foxhole 0 fox_hole 0 001 @ 02920503 n 0000 | a small dugout with a pit for individual shelter against enemy fire -03390207 06 n 01 fraction 0 002 @ 03892891 n 0000 + 00516539 a 0101 | a small part or item forming a piece of a whole -03390327 06 n 04 fragmentation_bomb 0 antipersonnel_bomb 0 anti-personnel_bomb 0 daisy_cutter 0 003 @ 02866578 n 0000 #p 03054605 n 0000 ~ 02836900 n 0000 | a bomb with only 10 to 20 per cent explosive and the remainder consisting of casings designed to break into many small high-velocity fragments; most effective against troops and vehicles -03390673 06 n 01 frail 0 001 @ 02801938 n 0000 | a basket for holding dried fruit (especially raisins or figs) -03390786 06 n 01 fraise 0 001 @ 04051825 n 0000 | sloping or horizontal rampart of pointed stakes -03390886 06 n 01 fraise 1 001 @ 03024746 n 0000 | a ruff for the neck worn in the 16th century -03390983 06 n 02 frame 0 framing 0 005 @ 03391770 n 0000 + 01586850 v 0201 + 02711835 v 0201 + 01586850 v 0101 + 02711835 v 0101 | a framework that supports and protects a picture or a mirror; "the frame enhances but is not itself the subject of attention"; "the frame was much more valuable than the miror it held" -03391301 06 n 01 frame 2 005 @ 03391770 n 0000 ~ 03010283 n 0000 %p 04272054 n 0000 + 00981276 v 0101 + 01586850 v 0101 | the framework for a pair of eyeglasses -03391464 06 n 01 frame 3 001 @ 03925226 n 0000 | a single one of a series of still transparent pictures forming a cinema, television or video film -03391613 06 n 01 frame_buffer 0 002 @ 02911485 n 0000 ;c 03084647 n 0000 | (computer science) a buffer that stores the contents of an image pixel by pixel -03391770 06 n 01 framework 0 044 @ 04361095 n 0000 ~ 02689144 n 0000 ~ 02732827 n 0000 %p 02769460 n 0000 %p 02886599 n 0000 ~ 02926591 n 0000 ~ 02977619 n 0000 ~ 03042697 n 0000 ~ 03051041 n 0000 ~ 03056583 n 0000 ~ 03111296 n 0000 ~ 03168663 n 0000 ~ 03178538 n 0000 ~ 03222722 n 0000 ~ 03328201 n 0000 ~ 03390983 n 0000 ~ 03391301 n 0000 ~ 03416094 n 0000 ~ 03454536 n 0000 ~ 03459591 n 0000 ~ 03468696 n 0000 ~ 03483086 n 0000 ~ 03500838 n 0000 ~ 03530642 n 0000 ~ 03646916 n 0000 ~ 03793186 n 0000 ~ 03867854 n 0000 ~ 03931765 n 0000 ~ 04038727 n 0000 ~ 04087826 n 0000 ~ 04136510 n 0000 ~ 04140631 n 0000 ~ 04324741 n 0000 ~ 04324910 n 0000 ~ 04337157 n 0000 ~ 04387261 n 0000 ~ 04411835 n 0000 ~ 04492375 n 0000 ~ 04507453 n 0000 ~ 04545305 n 0000 ~ 04545471 n 0000 ~ 04564118 n 0000 ~ 04587648 n 0000 ~ 04589593 n 0000 | a structure supporting or containing something -03392648 06 n 01 Francis_turbine 0 001 @ 03552449 n 0000 | a type of hydroelectric turbine -03392741 06 n 01 franking_machine 0 001 @ 03699975 n 0000 | a machine that automatically stamps letters or packages passing through it and computes the total charge -03392908 06 n 01 freeboard_deck 0 002 @ 04514738 n 0000 #p 02965300 n 0000 | the uppermost watertight deck -03393017 06 n 01 free_house 0 002 @ 04018399 n 0000 ;r 08860123 n 0000 | a public house that is not controlled by a brewery and so is free to sell different brands of beer and ale -03393199 06 n 01 free-reed 0 002 @ 02817799 n 0000 #p 03393324 n 0000 | a reed that does not fit closely over the aperture -03393324 06 n 01 free-reed_instrument 0 007 @ 04586932 n 0000 ~ 02672831 n 0000 ~ 02701730 n 0000 ~ 03086670 n 0000 %p 03393199 n 0000 ~ 03494278 n 0000 ~ 03494537 n 0000 | a wind instrument with a free reed -03393534 06 n 01 free_throw_lane 0 002 @ 03640660 n 0000 #p 02802544 n 0000 | a lane on a basketball court extending from the end line to 15 feet in front of the backboard; players may not enter this lane during a free throw -03393761 06 n 01 freewheel 0 001 @ 03054901 n 0000 | a clutch (as on the rear wheel of a bicycle) that allows wheels to turn freely (as in coasting) -03393912 06 n 01 freight_car 0 009 @ 02959942 n 0000 #m 03394480 n 0000 ~ 02885108 n 0000 ~ 02986066 n 0000 ~ 03056097 n 0000 ~ 03360731 n 0000 ~ 03447593 n 0000 ~ 04070964 n 0000 ~ 04389521 n 0000 | a railway car that carries freight -03394149 06 n 02 freight_elevator 0 service_elevator 0 001 @ 03281145 n 0000 | an elevator designed for carrying freight -03394272 06 n 02 freight_liner 0 liner_train 0 001 @ 03394480 n 0000 | a long-distance express freight train between industrial centers and seaports with facilities for rapid loading and unloading of goods -03394480 06 n 02 freight_train 0 rattler 0 004 @ 04468005 n 0000 %m 02932523 n 0000 %m 03393912 n 0000 ~ 03394272 n 0000 | a railroad train consisting of freight cars -03394649 06 n 01 French_door 0 003 @ 03221720 n 0000 ~ 03395514 n 0000 %p 03521076 n 0000 | a light door with transparent or glazed panels extending the full length -03394816 06 n 01 French_heel 0 001 @ 03511426 n 0000 | a fairly high narrow heel on women's shoes -03394916 06 n 02 French_horn 0 horn 0 001 @ 02891788 n 0000 | a brass musical instrument consisting of a conical tube that is coiled into a spiral and played by means of valves -03395095 06 n 01 French_knot 0 001 @ 04180314 n 0000 | a stitch made by looping the thread several times around the needle before inserting it into the fabric -03395256 06 n 02 French_polish 0 French_polish_shellac 0 001 @ 04191150 n 0000 | a varnish for wood consisting of shellac dissolved in alcohol -03395401 06 n 01 French_roof 0 001 @ 03718789 n 0000 | a mansard roof with sides that are nearly perpendicular -03395514 06 n 01 French_window 0 001 @ 03394649 n 0000 | a French door situated in an exterior wall of a building -03395630 06 n 01 fresco 0 002 @ 03799710 n 0000 + 01683271 v 0101 | a mural done with watercolors on wet plaster -03395745 06 n 01 freshener 0 003 @ 04424418 n 0000 + 00164444 v 0102 + 00024649 v 0102 | anything that freshens -03395859 06 n 01 Fresnel_lens 0 003 @ 03656484 n 0000 #p 03503997 n 0000 #p 04160847 n 0000 | lens composed of a number of small lenses arranged to make a lightweight lens of large diameter and short focal length -03396074 06 n 01 fret 0 002 @ 02788689 n 0000 + 02330109 v 0101 | a small bar of metal across the fingerboard of a musical instrument; when the string is stopped by a finger at the metal bar it will produce a note of the desired pitch -03396311 06 n 04 fret 1 Greek_fret 0 Greek_key 0 key_pattern 0 003 @ 02734423 n 0000 + 01751722 v 0101 + 01752025 v 0101 | an ornamental pattern consisting of repeated vertical and horizontal lines (often in relief); "there was a simple fret at the top of the walls" -03396580 06 n 01 friary 0 001 @ 03781244 n 0000 | a monastery of friars -03396654 06 n 01 friction_clutch 0 004 @ 03054901 n 0000 ~ 03089477 n 0000 ~ 03209359 n 0000 ~ 04240434 n 0000 | a clutch in which one part turns the other by the friction between them -03396841 06 n 02 friction_tape 0 insulating_tape 0 001 @ 02680337 n 0000 | a water-resistant adhesive tape used to insulate exposed electrical conductors -03396997 06 n 01 frieze 0 001 @ 03309808 n 0000 | a heavy woolen fabric with a long nap -03397087 06 n 01 frieze 1 002 @ 02734423 n 0000 #p 03290195 n 0000 | an architectural ornament consisting of a horizontal sculptured band between the architrave and the cornice -03397266 06 n 01 frigate 0 002 @ 04552696 n 0000 ~ 03466600 n 0000 | a United States warship larger than a destroyer and smaller than a cruiser -03397412 06 n 01 frigate 1 001 @ 04552696 n 0000 | a medium size square-rigged warship of the 18th and 19th centuries -03397532 06 n 04 frill 0 flounce 0 ruffle 1 furbelow 0 006 @ 02681518 n 0000 + 01387301 v 0301 + 00058696 a 0102 ~ 03443669 n 0000 ~ 03588841 n 0000 ~ 03914106 n 0000 | a strip of pleated material used as a decoration or a trim -03397762 06 n 01 fringe 0 004 @ 03265479 n 0000 + 00331889 a 0101 + 01467751 v 0101 + 01751021 v 0101 | an ornamental border consisting of short lengths of hanging threads or tassels -03397947 06 n 01 Frisbee 0 003 @ 03208556 n 0000 @ 03964744 n 0000 ;u 06851742 n 0000 | a light, plastic disk about 10 inches in diameter; propelled with a flip of the wrist for recreation or competition -03398153 06 n 01 frock 1 001 @ 03473966 n 0000 | a habit worn by clerics -03398228 06 n 01 frock_coat 0 002 @ 03057021 n 0000 ~ 04003359 n 0000 | a man's coat having knee-length skirts front and back; worn in the 19th century -03398382 06 n 01 frog 0 001 @ 02681518 n 0000 | a decorative loop of braid or cord -03398467 06 n 01 front 0 013 @ 04213626 n 0000 + 00131018 a 0101 + 01079172 v 0101 ! 04059701 n 0101 ~ 02880008 n 0000 ~ 03313333 n 0000 ~ 03313602 n 0000 ~ 03399391 n 0000 ~ 03830835 n 0000 ~ 03831062 n 0000 ~ 03831537 n 0000 ~ 04198015 n 0000 ~ 04203705 n 0000 | the side that is seen or that goes first -03398775 06 n 02 frontage_road 0 service_road 0 001 @ 03682024 n 0000 | a local road that runs parallel to an expressway and allows local traffic to gain access to property -03398950 06 n 01 frontal 1 001 @ 03151077 n 0000 | a drapery that covers the front of an altar -03399047 06 n 01 front_bench 0 003 @ 04161358 n 0000 ;r 08860123 n 0000 + 10113362 n 0101 | any of the front seats in the House of Commons that are reserved for ministers or former ministers -03399240 06 n 02 front_door 0 front_entrance 0 002 @ 03307274 n 0000 %p 03626760 n 0000 | exterior door (at the entrance) at the front of a building -03399391 06 n 01 frontispiece 0 001 @ 03398467 n 0000 | front illustration facing the title page of a book -03399500 06 n 01 frontispiece 1 001 @ 03313333 n 0000 | an ornamental facade -03399579 06 n 02 frontlet 0 frontal 0 001 @ 02681518 n 0000 | an adornment worn on the forehead -03399677 06 n 01 front_porch 0 001 @ 03984381 n 0000 | a porch for the front door -03399761 06 n 01 front_projector 0 001 @ 04009552 n 0000 | a projector for digital input -03399852 06 n 01 front_yard 0 001 @ 04610879 n 0000 | the yard in front of a house; between the house and the street -03399971 06 n 01 fruit_machine 0 002 @ 04243546 n 0000 ;r 08860123 n 0000 | a coin-operated gambling machine that produces random combinations of symbols (usually pictures of different fruits) on rotating dials; certain combinations win money for the player -03400231 06 n 03 frying_pan 0 frypan 0 skillet 0 004 @ 03880531 n 0000 ~ 03271765 n 0000 %p 03485997 n 0000 ~ 04275283 n 0000 | a pan used for frying foods -03400389 06 n 02 fuel-air_explosive 0 FAE 0 002 @ 03305522 n 0000 ~ 04420461 n 0000 | a device consisting of a container of fuel and two explosive charges; the first charge bursts open the fuel container at a predetermined height and spreads the fuel in a cloud that mixes with atmospheric oxygen; the second charge detonates the cloud which creates an enormous blast wave and incinerates whatever is below -03400798 06 n 01 fuel_cell 0 001 @ 02991048 n 0000 | cell that produces electricity by oxidation of fuel (hydrogen and oxygen or zinc and air); often used in electric cars -03400972 06 n 01 fuel_filter 0 002 @ 03339643 n 0000 #p 03401721 n 0000 | a filter in the fuel line that screens out dirt and rust particles from the fuel -03401129 06 n 02 fuel_gauge 0 fuel_indicator 0 002 @ 03568117 n 0000 #p 03401721 n 0000 | an indicator of the amount of fuel remaining in a vehicle -03401279 06 n 02 fuel_injection 0 fuel_injection_system 0 001 @ 03738241 n 0000 | mechanical system to inject atomized fuel directly into the cylinders of an internal-combustion engine; avoids the need for a carburetor -03401500 06 n 03 fuel_line 0 gas_line 1 petrol_line 0 002 @ 03944672 n 0000 #p 03401721 n 0000 | a pipe that carries gasoline from a tank to a gasoline engine; "the car wouldn't start because dirt clogged the gas line" -03401721 06 n 01 fuel_system 0 013 @ 03294048 n 0000 #p 03791235 n 0000 #p 02686568 n 0000 %p 02670186 n 0000 %p 02962200 n 0000 %p 03024333 n 0000 %p 03400972 n 0000 %p 03401129 n 0000 %p 03401500 n 0000 %p 03424862 n 0000 %p 03426134 n 0000 %p 03576779 n 0000 %p 04021798 n 0000 | equipment in a motor vehicle or aircraft that delivers fuel to the engine -03402080 06 n 01 fulcrum 0 002 @ 03951971 n 0000 #p 03659292 n 0000 | the pivot about which a lever turns -03402188 06 n 01 full-dress_uniform 0 002 @ 03763968 n 0000 ;c 08199025 n 0000 | the naval or military uniform that is specified by regulations to be worn on ceremonial occasions -03402369 06 n 01 full_metal_jacket 0 001 @ 02916350 n 0000 | a lead bullet that is covered with a jacket of a harder metal (usually copper) -03402511 06 n 01 full_skirt 0 002 @ 04230808 n 0000 %p 03448253 n 0000 | a long skirt gathered at the waist -03402621 06 n 01 full-wave_rectifier 0 001 @ 04065632 n 0000 | rectifier that converts the negative half wave of an alternating current into a positive half wave -03402785 06 n 01 fumigator 0 002 @ 03183080 n 0000 + 02127100 v 0101 | a device that generates a gas for the purpose of disinfecting or eradicating pests -03402941 06 n 06 funeral_home 0 funeral_parlor 0 funeral_parlour 0 funeral_chapel 0 funeral_church 0 funeral-residence 0 001 @ 03785499 n 0000 | a mortuary where those who knew the deceased can come to pay their last respects -03403169 06 n 01 fungible 0 002 @ 03076708 n 0000 + 00917956 a 0101 | a commodity that is freely interchangeable with another in satisfying an obligation -03403325 06 n 01 funk_hole 0 001 @ 02920503 n 0000 | dugout as a place of safe retreat (when in a funk) -03403431 06 n 01 funnel 0 003 @ 04247175 n 0000 #p 04194289 n 0000 ;c 04194289 n 0000 | (nautical) smokestack consisting of a shaft for ventilation or the passage of smoke (especially the smokestack of a ship) -03403643 06 n 01 funnel 1 003 @ 04516672 n 0000 + 01444146 v 0101 %p 02824858 n 0000 | a conically shaped utensil having a narrow tube at the small end; used to channel the flow of substances into a container with a small mouth -03403873 06 n 01 funnel_web 0 001 @ 04275363 n 0000 | a funnel-shaped spider web; the funnel-web spider perches in the center of the web -03404012 06 n 01 funny_wagon 0 002 @ 02701002 n 0000 ;u 07075172 n 0000 | an ambulance used to transport patients to a mental hospital -03404149 06 n 01 fur 0 001 @ 03419014 n 0000 | a garment made of the dressed hairy coat of a mammal -03404251 06 n 01 fur_coat 0 003 @ 03057021 n 0000 ~ 03770954 n 0000 ~ 04122492 n 0000 | a coat made of fur -03404360 06 n 01 fur_hat 0 002 @ 03497657 n 0000 ~ 02818135 n 0000 | a hat made of fur -03404449 06 n 01 furnace 0 017 @ 03003730 n 0000 ~ 02752039 n 0000 ~ 02849885 n 0000 ~ 03130066 n 0000 ~ 03148808 n 0000 ~ 03271865 n 0000 ~ 03344509 n 0000 ~ 03383821 n 0000 ~ 03423224 n 0000 %p 03454536 n 0000 ~ 03566193 n 0000 ~ 03617095 n 0000 ~ 03843221 n 0000 ~ 03848537 n 0000 %p 04071536 n 0000 ~ 04084682 n 0000 ~ 04390156 n 0000 | an enclosed chamber in which heat is produced to heat buildings, destroy refuse, smelt or refine ores, etc. -03404900 06 n 02 furnace_lining 0 refractory 0 003 @ 03673767 n 0000 %s 14813843 n 0000 %s 14823944 n 0000 | lining consisting of material with a high melting point; used to line the inside walls of a furnace -03405111 06 n 01 furnace_room 0 001 @ 04105893 n 0000 | a room (usually in the basement of a building) that contains a furnace for heating the building -03405265 06 n 01 furnishing 0 007 @ 03575240 n 0000 ;u 06295235 n 0000 + 02336483 v 0101 ~ 02730568 n 0000 ~ 03151077 n 0000 ~ 03405725 n 0000 ~ 04118021 n 0000 | (usually plural) the instrumentalities (furniture and appliances and other movable accessories including curtains and rugs) that make a home (or other area) livable -03405595 06 n 02 furnishing 1 trappings 0 002 @ 02671780 n 0000 ;u 06295235 n 0000 | (usually plural) accessory wearing apparel -03405725 06 n 03 furniture 0 piece_of_furniture 0 article_of_furniture 0 034 @ 03405265 n 0000 + 02336483 v 0101 -c 00467737 a 0000 -c 01096990 a 0000 -c 00607542 n 0000 -c 02701393 n 0000 ~ 02766320 n 0000 ~ 02821943 n 0000 ~ 02822579 n 0000 ~ 02870880 n 0000 ~ 02912065 n 0000 ~ 02933112 n 0000 ~ 03015254 n 0000 ~ 03200906 n 0000 ~ 03298716 n 0000 ~ 03353281 n 0000 -c 03353281 n 0000 ~ 03479502 n 0000 ~ 03636649 n 0000 ~ 03649797 n 0000 ~ 03819336 n 0000 ~ 03842156 n 0000 -c 04109702 n 0000 ~ 04161981 n 0000 ~ 04165409 n 0000 ~ 04192521 n 0000 ~ 04235646 n 0000 ~ 04379243 n 0000 ~ 04379964 n 0000 ~ 04549122 n 0000 ~ 04550184 n 0000 ~ 04555400 n 0000 -c 13245846 n 0000 -c 00286333 v 0000 | furnishings that make a room or other area ready for occupancy; "they had too much furniture for the small apartment"; "there was only one piece of furniture in the room" -03406597 06 n 02 furosemide 0 Lasix 0 002 @ 03214670 n 0000 ;u 06845599 n 0201 | commonly used diuretic (trade name Lasix) used to treat hypertension and edema -03406759 06 n 01 fur-piece 0 001 @ 03815482 n 0000 | a neckpiece made of fur -03406838 06 n 02 furring_strip 0 furring 0 001 @ 04339638 n 0000 | strip used to give a level surface for attaching wallboard -03406966 06 n 01 furrow 0 003 @ 04478889 n 0000 + 01277431 v 0101 ~ 03152619 n 0000 | a long shallow trench in the ground (especially one made by a plow) -03407122 06 n 06 fuse 0 fuze 0 fusee 0 fuzee 0 primer 0 priming 0 006 @ 03666591 n 0000 + 00408624 v 0501 + 01137829 v 0101 ~ 03182140 n 0000 ~ 04126659 n 0000 ~ 04437670 n 0000 | any igniter that is used to initiate the burning of a propellant -03407369 06 n 03 fuse 1 electrical_fuse 0 safety_fuse 1 005 @ 03269401 n 0000 + 01137829 v 0101 ~ 02972934 n 0000 ~ 03034244 n 0000 ~ 03968479 n 0000 | an electrical device that can interrupt the flow of electrical current when it is overloaded -03407616 06 n 02 fusee 1 fuzee 1 001 @ 03728437 n 0000 | a friction match with a large head that will stay alight in the wind -03407744 06 n 02 fusee 2 fuzee 2 001 @ 03357893 n 0000 | a colored flare used as a warning signal by trucks and trains -03407865 06 n 02 fusee_drive 0 fusee 3 002 @ 03242995 n 0000 #p 03046257 n 0000 | a spirally grooved spindle in a clock that counteracts the diminishing power of the uncoiling mainspring -03408054 06 n 01 fuselage 0 004 @ 02861886 n 0000 #p 02691156 n 0000 %p 03986562 n 0000 %p 04384016 n 0000 | the central body of an airplane that is designed to accommodate the crew and passengers (or cargo) -03408264 06 n 01 fusil 0 001 @ 03802007 n 0000 | a light flintlock musket -03408340 06 n 01 fustian 0 001 @ 03309808 n 0000 | a strong cotton and linen fabric with a slight nap -03408444 06 n 01 futon 0 002 @ 03731164 n 0000 ;r 08921850 n 0000 | mattress consisting of a pad of cotton batting that is used for sleeping on the floor or on a raised frame -03408621 06 n 01 futtock_shroud 0 001 @ 04188368 n 0000 | shroud that is part of a ship's rigging -03408721 06 n 01 future 0 004 @ 03076708 n 0000 ~ 03843724 n 0000 ~ 04264485 n 0000 ~ 04574861 n 0000 | bulk commodities bought or sold at an agreed price for delivery at a specified future date -03408918 06 n 03 futures_exchange 0 futures_market 0 forward_market 0 001 @ 03077074 n 0000 | a commodity exchange where futures contracts are traded -03409070 06 n 02 gabapentin 0 Neurontin 0 001 @ 02718469 n 0000 | an anticonvulsant (trade name Neurontin) used to control some types of seizures in the treatment of epilepsy; also used to manage neuralgia caused by shingles -03409297 06 n 01 gabardine 0 001 @ 03309808 n 0000 | a firm durable fabric with a twill weave -03409393 06 n 03 gable 0 gable_end 0 gable_wall 0 004 @ 04546855 n 0000 ~ 02825961 n 0000 ~ 03105974 n 0000 ~ 03904657 n 0000 | the vertical triangular wall between the sloping ends of gable roof -03409591 06 n 04 gable_roof 0 saddle_roof 0 saddleback 0 saddleback_roof 0 004 @ 04105068 n 0000 ~ 03413684 n 0000 %p 03471473 n 0000 %p 04089152 n 0000 | a double sloping roof with a ridge and gables at each end -03409806 06 n 01 gaddi 0 002 @ 03151500 n 0000 #p 03802507 n 0000 | a cushion on a throne for a prince in India -03409920 06 n 01 gadgetry 0 001 @ 02729965 n 0000 | appliances collectively; "laborsaving gadgetry" -03410022 06 n 01 gaff 0 002 @ 03532342 n 0000 #m 03351434 n 0000 | an iron hook with a handle; used for landing large fish -03410147 06 n 01 gaff 1 002 @ 04267577 n 0000 #p 04128837 n 0000 | a spar rising aft from a mast to support the head of a quadrilateral fore-and-aft sail -03410303 06 n 01 gaff 2 001 @ 04276531 n 0000 | a sharp metal spike or spur that is fastened to the leg of a gamecock -03410423 06 n 02 gaffsail 0 gaff-headed_sail 0 002 @ 03381776 n 0000 #p 04128837 n 0000 | a quadrilateral fore-and-aft sail suspended from a gaff -03410571 06 n 02 gaff_topsail 0 fore-and-aft_topsail 0 001 @ 03381776 n 0000 | a triangular fore-and-aft sail with its foot along the gaff and its luff on the topmast -03410740 06 n 02 gag 0 muzzle 0 005 @ 04081844 n 0000 + 01284683 v 0202 + 02190943 v 0202 + 01284683 v 0101 + 02190943 v 0101 | restraint put into a person's mouth to prevent speaking or shouting -03410938 06 n 01 gaiter 1 001 @ 03655072 n 0000 | legging consisting of a cloth or leather covering for the leg from the knee to the ankle -03411079 06 n 01 gaiter 3 002 @ 04199027 n 0000 %p 03448253 n 0000 | a shoe covering the ankle with elastic gores in the sides -03411208 06 n 01 Galilean_telescope 0 001 @ 04070207 n 0000 | a type of refracting telescope that is no longer used in astronomy -03411339 06 n 01 galleon 0 002 @ 04128837 n 0000 ~ 02968210 n 0000 | a large square-rigged sailing ship with three or more masts; used by the Spanish for commerce and war from the 15th to 18th centuries -03411544 06 n 01 gallery 1 004 @ 02777734 n 0000 ~ 02705201 n 0000 ~ 03024233 n 0000 ~ 03854722 n 0000 | narrow recessed balcony area along an upper floor on the interior of a building; usually marked by a colonnade -03411762 06 n 01 gallery 2 001 @ 03112099 n 0000 | a covered corridor (especially one extending along the wall of a building and supported with arches or columns) -03411927 06 n 01 gallery 3 001 @ 04105893 n 0000 | a long usually narrow room used for some specific purpose; "shooting gallery" -03412058 06 n 03 gallery 4 art_gallery 0 picture_gallery 0 002 @ 04105893 n 0000 ~ 04131113 n 0000 | a room or series of rooms where works of art are exhibited -03412220 06 n 04 galley 0 ship's_galley 0 caboose 1 cookhouse 0 003 @ 03619890 n 0000 #p 04194289 n 0000 ~ 03145277 n 0000 | the area for food preparation on a ship -03412387 06 n 01 galley 1 002 @ 03619890 n 0000 #p 02690373 n 0000 | the kitchen area for food preparation on an airliner -03412511 06 n 01 galley 2 003 @ 04530566 n 0000 ;c 15253139 n 0000 ~ 04485750 n 0000 | (classical antiquity) a crescent-shaped seagoing vessel propelled by oars -03412674 06 n 01 galley 3 001 @ 04530566 n 0000 | a large medieval vessel with a single deck propelled by sails and oars with guns at stern and prow; a complement of 1,000 men; used mainly in the Mediterranean for war and trading -03412906 06 n 01 gallows 0 004 @ 03575691 n 0000 ;u 06295235 n 0000 ~ 03413124 n 0000 %p 03491724 n 0000 | an instrument of execution consisting of a wooden frame from which a condemned person is executed by hanging -03413124 06 n 04 gallows_tree 0 gallows-tree 0 gibbet 0 gallous 0 002 @ 03412906 n 0000 + 02485731 v 0301 | alternative terms for gallows -03413264 06 n 01 galvanometer 0 003 @ 03753077 n 0000 ~ 02750652 n 0000 ~ 03796181 n 0000 | meter for detecting or comparing or measuring small electric currents -03413428 06 n 04 gambling_house 0 gambling_den 0 gambling_hell 0 gaming_house 0 004 @ 02913152 n 0000 @ 03953020 n 0000 ;c 01094725 n 0000 ~ 02977936 n 0000 | a public building in which a variety of games of chance can be played (operated as a business) -03413684 06 n 02 gambrel 0 gambrel_roof 0 001 @ 03409591 n 0000 | a gable roof with two slopes on each side and the lower slope being steeper -03413828 06 n 01 game 0 003 @ 03414162 n 0000 ;c 00455599 n 0000 ~ 04028315 n 0000 | the game equipment needed in order to play a particular game; "the child received several games for his birthday" -03414029 06 n 01 gamebag 0 001 @ 02773037 n 0000 | a canvas or leather bag for carrying game (especially birds) killed by a hunter -03414162 06 n 01 game_equipment 0 018 @ 03294048 n 0000 ~ 02768226 n 0000 ~ 02778669 n 0000 ~ 02882483 n 0000 ~ 03117199 n 0000 ~ 03135788 n 0000 ~ 03413828 n 0000 ~ 03442756 n 0000 ~ 03539546 n 0000 ~ 03589313 n 0000 ~ 03716327 n 0000 ~ 03820154 n 0000 ~ 03875955 n 0000 ~ 03941417 n 0000 ~ 03982430 n 0000 ~ 04036155 n 0000 ~ 04113406 n 0000 ~ 04278751 n 0000 | equipment or apparatus used in playing a game -03414574 06 n 01 gaming_card 0 001 @ 03963982 n 0000 | one of a set of cards used in gambling games -03414676 06 n 01 gaming_table 0 001 @ 04379243 n 0000 | a table used for gambling; may be equipped with a gameboard and slots for chips -03414814 06 n 02 gamma_hydroxybutyrate 0 GHB 0 002 @ 03054098 n 0000 ~ 04253751 n 0000 | a club drug available in liquid or powder form is taken orally (frequently combined with alcohol); used to incapacitate individuals for the commission of sexual assault and rape -03415083 06 n 01 gamma-interferon 0 001 @ 03579137 n 0000 | a form of interferon that is produced by T cells and macrophages; involved in the activation of phagocytes -03415252 06 n 02 gamp 0 brolly 0 002 @ 04507155 n 0000 ;r 08860123 n 0000 | colloquial terms for an umbrella -03415363 06 n 01 gang 0 001 @ 04451818 n 0000 | tool consisting of a combination of implements arranged to work together -03415486 06 n 03 gangplank 0 gangboard 0 gangway 1 001 @ 03379828 n 0000 | a temporary bridge for getting on and off a vessel at dockside -03415626 06 n 01 gangsaw 0 001 @ 03996145 n 0000 | a power saw that has several parallel blades making simultaneous cuts -03415749 06 n 01 gangway 0 001 @ 03895585 n 0000 | a temporary passageway of planks (as over mud on a building site) -03415868 06 n 01 gantlet 0 001 @ 04048075 n 0000 | the convergence of two parallel railroad tracks in a narrow place; the inner rails cross and run parallel and then diverge so a train remains on its own tracks at all times -03416094 06 n 02 gantry 0 gauntry 0 001 @ 03391770 n 0000 | a framework of steel bars raised on side supports to bridge over or around something; can display railway signals above several tracks or can support a traveling crane etc. -03416329 06 n 02 gap 0 crack 0 004 @ 03848729 n 0000 + 01593614 v 0101 ~ 03632189 n 0000 ~ 04268680 n 0000 | a narrow opening; "he opened the window a crack" -03416489 06 n 01 garage 0 003 @ 03859280 n 0000 + 02282946 v 0101 ~ 02968074 n 0000 | an outbuilding (or part of a building) for housing automobiles -03416640 06 n 02 garage 1 service_department 0 001 @ 04075916 n 0000 | a repair shop where cars and trucks are serviced and repaired -03416775 06 n 04 Garand_rifle 0 Garand 0 M-1 0 M-1_rifle 0 002 @ 04171459 n 0000 @ 04090263 n 0000 | a semiautomatic rifle -03416900 06 n 01 garbage 0 001 @ 04060904 n 0000 | a receptacle where waste can be discarded; "she tossed the moldy bread into the garbage" -03417042 06 n 02 garbage_truck 0 dustcart 0 001 @ 04490091 n 0000 | a truck for collecting domestic refuse; "in Britain a garbage truck is called a dustcart" -03417202 06 n 03 garboard 0 garboard_plank 0 garboard_strake 0 001 @ 04544805 n 0000 | the first wale laid next to the keel of a wooden ship -03417345 06 n 01 garden 0 018 @ 08674739 n 0000 + 01740969 v 0101 ~ 03368637 n 0000 ~ 03384706 n 0000 ~ 03463832 n 0000 ~i 03491491 n 0000 ~ 03515644 n 0000 ~ 03535186 n 0000 ~ 03620443 n 0000 ~ 03640288 n 0000 ~ 03722169 n 0000 ~ 03991969 n 0000 ~ 04099854 n 0000 ~ 04105609 n 0000 ~ 04109599 n 0000 ~ 04356306 n 0000 ~ 04397553 n 0000 ~ 04454908 n 0000 | a plot of ground where plants are cultivated -03417749 06 n 01 garden 1 003 @ 04610879 n 0000 + 01740969 v 0101 %p 03899768 n 0000 | a yard or lawn adjoining a house -03417871 06 n 01 garden_hose 0 001 @ 03539875 n 0000 | a hose used for watering a lawn or garden -03417970 06 n 01 garden_rake 0 001 @ 04050066 n 0000 | a rake used by gardeners -03418052 06 n 01 garden_roller 0 001 @ 04101497 n 0000 | heavy cast-iron cylinder used to flatten lawns -03418158 06 n 01 garden_spade 0 001 @ 04266486 n 0000 | a spade used by gardeners -03418242 06 n 02 garden_tool 0 lawn_tool 0 004 @ 04451818 n 0000 ~ 03264906 n 0000 ~ 03511333 n 0000 ~ 03649909 n 0000 | used for working in gardens or yards -03418402 06 n 01 garden_trowel 0 001 @ 04489817 n 0000 | a trowel used by gardeners -03418488 06 n 01 gargoyle 0 001 @ 03169390 n 0000 | an ornament consisting of a grotesquely carved figure of a person or animal -03418618 06 n 01 gargoyle 1 001 @ 04287153 n 0000 | a spout that terminates in a grotesquely carved figure of a person or animal -03418749 06 n 01 garibaldi 0 001 @ 02854926 n 0000 | a loose high-necked blouse with long sleeves; styled after the red flannel shirts worn by Garibaldi's soldiers -03418915 06 n 01 garlic_press 0 001 @ 03999992 n 0000 | a press for extracting juice from garlic -03419014 06 n 01 garment 0 068 @ 03051540 n 0000 + 00047945 v 0107 %p 02738978 n 0000 %p 02784732 n 0000 %p 02876084 n 0000 ~ 02896294 n 0000 ~ 02922578 n 0000 %p 02928930 n 0000 ~ 02944375 n 0000 %p 03162714 n 0000 ~ 03188531 n 0000 %p 03308853 n 0000 %p 03373060 n 0000 ~ 03404149 n 0000 ~ 03450734 n 0000 %p 03471190 n 0000 ~ 03475421 n 0000 ~ 03487642 n 0000 ~ 03502331 n 0000 ~ 03540090 n 0000 ~ 03585875 n 0000 %p 03591901 n 0000 %p 03592055 n 0000 ~ 03605598 n 0000 ~ 03608504 n 0000 ~ 03648219 n 0000 ~ 03655072 n 0000 ~ 03657511 n 0000 %p 03673270 n 0000 ~ 03745487 n 0000 ~ 03789794 n 0000 %p 03814112 n 0000 ~ 03816005 n 0000 ~ 03863923 n 0000 ~ 03913930 n 0000 %p 03972524 n 0000 ~ 04046277 n 0000 ~ 04085574 n 0000 ~ 04097866 n 0000 ~ 04104770 n 0000 ~ 04123317 n 0000 ~ 04143492 n 0000 ~ 04143897 n 0000 ~ 04160261 n 0000 ~ 04172904 n 0000 ~ 04197391 n 0000 %p 04207151 n 0000 ~ 04219580 n 0000 ~ 04230808 n 0000 %p 04231272 n 0000 %p 04236377 n 0000 ~ 04325804 n 0000 ~ 04332580 n 0000 ~ 04350905 n 0000 ~ 04357531 n 0000 ~ 04367950 n 0000 ~ 04370048 n 0000 ~ 04370774 n 0000 ~ 04371563 n 0000 ~ 04488530 n 0000 ~ 04489008 n 0000 ~ 04508163 n 0000 ~ 04531873 n 0000 ~ 04570532 n 0000 ~ 04574067 n 0000 ~ 04605572 n 0000 %p 04613015 n 0000 %p 08583554 n 0000 | an article of clothing; "garments of the finest silk" -03420345 06 n 01 garment_bag 0 001 @ 02773838 n 0000 | a suitcase that unfolds to be hung up -03420440 06 n 01 garnish 0 002 @ 03169390 n 0000 + 01679433 v 0102 | any decoration added as a trimming or adornment -03420559 06 n 02 garrison 0 fort 1 008 @ 03763403 n 0000 ;c 08199025 n 0000 + 01155421 v 0201 + 02023992 v 0201 + 01606205 v 0201 + 01087197 v 0203 + 01089137 v 0101 ~i 09094581 n 0000 | a fortified military post where troops are stationed -03420801 06 n 02 garrison_cap 0 overseas_cap 0 001 @ 02954340 n 0000 | a wedge-shaped wool or cotton cap; worn as part of a uniform -03420935 06 n 04 garrote 0 garotte 0 garrotte 0 iron_collar 0 003 @ 03575691 n 0000 + 01571744 v 0302 + 01571744 v 0203 | an instrument of execution for execution by strangulation -03421117 06 n 02 garter 0 supporter 0 003 @ 02784218 n 0000 + 01217043 v 0202 + 01287681 v 0101 | a band (usually elastic) worn around the leg to hold up a stocking (or around the arm to hold up a sleeve) -03421324 06 n 02 garter_belt 0 suspender_belt 0 001 @ 04508163 n 0000 | a wide belt of elastic with straps hanging from it; worn by women to hold up stockings -03421485 06 n 01 garter_stitch 0 001 @ 03625783 n 0000 | a knitting stitch that results in a pattern of horizontal ridges formed by knitting both sides (instead of purling one side) -03421669 06 n 01 gas_guzzler 0 001 @ 02958343 n 0000 | a car with relatively low fuel efficiency -03421768 06 n 01 gas_shell 0 002 @ 02866578 n 0000 ;c 08199025 n 0000 | (military) bomb consisting of an explosive projectile filled with a toxic gas that is released when the bomb explodes -03421960 06 n 01 gas_bracket 0 001 @ 02923129 n 0000 | a pipe with one or more burners projecting from a wall -03422072 06 n 02 gas_burner 0 gas_jet 0 005 @ 02923129 n 0000 ~ 02921029 n 0000 ~ 03425769 n 0000 %p 03833564 n 0000 ~ 03939281 n 0000 | burner such that combustible gas issues from a nozzle to form a steady flame -03422288 06 n 02 gas_chamber 0 death_chamber 0 001 @ 03575691 n 0000 | instrument of execution consisting of a sealed chamber into which poison gas is introduced; used to kill people or animals -03422484 06 n 01 gas-cooled_reactor 0 001 @ 03834040 n 0000 | a nuclear reactor using gas as a coolant -03422589 06 n 01 gas-discharge_tube 0 004 @ 04494204 n 0000 ~ 02985137 n 0000 ~ 03441465 n 0000 ~ 03441582 n 0000 | a tube in which an electric discharge takes place through a gas -03422771 06 n 01 gas_engine 0 001 @ 03579982 n 0000 | an internal-combustion engine similar to a gasoline engine but using natural gas instead of gasoline vapor -03422934 06 n 01 gas_fitting 0 001 @ 03353616 n 0000 | the fitting (pipes or valves or meters) that convey gas from the gas main to the gas fixtures of a building -03423099 06 n 01 gas_fixture 0 001 @ 03183080 n 0000 | a device to convey illuminating gas from the pipe to the gas burner -03423224 06 n 01 gas_furnace 0 001 @ 03404449 n 0000 | a furnace that burns gas -03423306 06 n 01 gas_gun 0 001 @ 03467984 n 0000 | a gun that fires gas shells -03423387 06 n 01 gas_heat 0 001 @ 03509025 n 0000 | heating system that burns natural gas -03423479 06 n 01 gas_heater 0 001 @ 03508101 n 0000 | a heater that burns gas for heat -03423568 06 n 02 gas_holder 0 gasometer 0 001 @ 04388743 n 0000 | a large gas-tight spherical or cylindrical tank for holding gas to be used as fuel -03423719 06 n 01 gasket 0 003 @ 04159354 n 0000 ~ 03503477 n 0000 ~ 03855604 n 0000 | seal consisting of a ring for packing pistons or sealing a pipe joint -03423877 06 n 01 gas_lamp 0 001 @ 03636248 n 0000 | a lamp that burns illuminating gas -03423966 06 n 01 gas_line 0 001 @ 03946325 n 0000 | a pipeline used to transport natural gas; "the workmen broke through the gas line" -03424103 06 n 01 gas_main 0 002 @ 03711145 n 0000 #p 03425956 n 0000 | a main that distributes gas -03424204 06 n 01 gas_maser 0 001 @ 03724176 n 0000 | a maser in which microwave radiation interacts with gas molecules -03424325 06 n 03 gasmask 0 respirator 1 gas_helmet 0 001 @ 03725035 n 0000 | a protective mask with a filter; protects the face and lungs against poisonous gases -03424489 06 n 02 gas_meter 0 gasometer 1 001 @ 03753077 n 0000 | a meter for measuring the amount of gas flowing through a particular pipe -03424630 06 n 02 gasoline_engine 0 petrol_engine 0 004 @ 03579982 n 0000 #p 02958343 n 0000 %p 03572832 n 0000 ~ 04027820 n 0000 | an internal-combustion engine that burns gasoline; most automobiles are driven by gasoline engines -03424862 06 n 06 gasoline_gauge 0 gasoline_gage 0 gas_gauge 0 gas_gage 0 petrol_gauge 0 petrol_gage 0 002 @ 03429288 n 0000 #p 03401721 n 0000 | gauge that indicates the amount of gasoline left in the gasoline tank of a vehicle -03425092 06 n 04 gasoline_station 0 gas_station 0 filling_station 0 petrol_station 0 001 @ 04175859 n 0000 | a service station that sells gasoline -03425241 06 n 01 gas_oven 0 001 @ 03862676 n 0000 | a domestic oven fueled by gas -03425325 06 n 01 gas_oven 1 001 @ 03130066 n 0000 | a cremation chamber fueled by gas -03425413 06 n 04 gas_pump 0 gasoline_pump 0 petrol_pump 0 island_dispenser 0 001 @ 04021798 n 0000 | a pump in a service station that draws gasoline from underground storage tanks -03425595 06 n 03 gas_range 0 gas_stove 0 gas_cooker 0 003 @ 04330340 n 0000 %p 03425769 n 0000 %p 03508628 n 0000 | a range with gas rings and an oven for cooking with gas -03425769 06 n 01 gas_ring 0 002 @ 03422072 n 0000 #p 03425595 n 0000 | gas burner consisting of a circular metal pipe with several small holes through which gas can escape to be burned -03425956 06 n 01 gas_system 0 004 @ 03315023 n 0000 #p 03569964 n 0000 ;c 03956922 n 0000 %p 03424103 n 0000 | facility (plant and equipment) for providing natural-gas service -03426134 06 n 03 gas_tank 0 gasoline_tank 0 petrol_tank 0 002 @ 04388743 n 0000 #p 03401721 n 0000 | a tank for holding gasoline to supply a vehicle -03426285 06 n 02 gas_thermometer 0 air_thermometer 0 001 @ 04421872 n 0000 | thermometer that measures temperature by changes in the pressure of a gas kept at constant volume -03426462 06 n 01 gastroscope 0 001 @ 03286572 n 0000 | a type of endoscope for visually examining the stomach -03426574 06 n 01 gas_turbine 0 003 @ 04498523 n 0000 #p 03426871 n 0000 #p 03321103 n 0000 | turbine that converts the chemical energy of a liquid fuel into mechanical energy by internal combustion; gaseous products of the fuel (which is burned in compressed air) are expanded through a turbine -03426871 06 n 01 gas-turbine_ship 0 002 @ 04194289 n 0000 %p 03426574 n 0000 | a ship powered by a gas turbine -03426984 06 n 01 gas_well 0 001 @ 04572344 n 0000 | a well that yields or has yielded natural gas -03427084 06 n 01 gasworks 0 002 @ 04602044 n 0000 ;u 06295235 n 0000 | the workplace where coal gas is manufactured -03427202 06 n 02 gat 0 rod 1 002 @ 03948459 n 0000 ;u 07157273 n 0000 | a gangster's pistol -03427296 06 n 01 gate 0 016 @ 03795580 n 0000 + 02353844 v 0101 ~ 03503567 n 0000 %p 03521076 n 0000 %p 03682487 n 0000 ~ 03684143 n 0000 ~ 03698815 n 0000 ~ 03985881 n 0000 ~ 03989349 n 0000 ~ 04384593 n 0000 ~ 04384757 n 0000 ~ 04449550 n 0000 ~ 04501127 n 0000 ~ 04501370 n 0000 ~ 04582625 n 0000 ~i 08785958 n 0000 | a movable barrier in a fence or wall -03427656 06 n 02 gate 1 logic_gate 0 005 @ 03084420 n 0000 ~ 02709908 n 0000 ~ 03806748 n 0000 ~ 03853454 n 0000 ~ 04609354 n 0000 | a computer circuit with several inputs but only one output that can be activated by particular combinations of inputs -03427909 06 n 01 gate 2 004 @ 03895585 n 0000 #p 02693246 n 0000 ~ 02742663 n 0000 ~ 03176970 n 0000 | passageway (as in an air terminal) where passengers can embark or disembark -03428090 06 n 01 gatehouse 0 002 @ 03544360 n 0000 ~ 03685640 n 0000 | a house built at a gateway; usually the gatekeeper's residence -03428226 06 n 01 gateleg_table 0 001 @ 03246933 n 0000 | a drop-leaf table with the drop-leaves supported by hinged legs -03428349 06 n 01 gatepost 0 003 @ 03988170 n 0000 ~ 03521431 n 0000 ~ 04211755 n 0000 | either of two posts that bound a gate -03428477 06 n 01 gateway 0 001 @ 03290771 n 0000 | an entrance that can be closed by a gate -03428571 06 n 01 gateway_drug 0 001 @ 03248958 n 0000 | a habit-forming drug that is not addictive but its use may lead to the use of other addictive drugs; "one college athlete recently called beer a gateway drug for young people" -03428805 06 n 02 gather 0 gathering 0 003 @ 04179385 n 0000 + 01330822 v 0201 + 01330822 v 0101 | sewing consisting of small folds or puckers made by pulling tight a thread in a line of stitching -03429003 06 n 01 gathered_skirt 0 002 @ 04230808 n 0000 ~ 03205669 n 0000 | a skirt whose fabric is drawn together around the waist -03429137 06 n 01 Gatling_gun 0 001 @ 03701391 n 0000 | an early form of machine gun having several barrels that fire in sequence as they are rotated -03429288 06 n 02 gauge 0 gage 0 013 @ 03733925 n 0000 + 00919424 v 0101 ~ 02710429 n 0000 ~ 03178173 n 0000 ~ 03204436 n 0000 ~ 03424862 n 0000 ~ 04001499 n 0000 ~ 04049585 n 0000 ~ 04332466 n 0000 ~ 04362624 n 0000 ~ 04518343 n 0000 ~ 04559730 n 0000 ~ 04594919 n 0000 | a measuring instrument for measuring and indicating a quantity such as the thickness of wire or the amount of rain etc. -03429682 06 n 02 gauntlet 2 gantlet 2 001 @ 03441112 n 0000 | a glove with long sleeve -03429771 06 n 03 gauntlet 1 gantlet 1 metal_glove 0 002 @ 03441112 n 0000 #p 02862048 n 0000 | a glove of armored leather; protects the hand -03429914 06 n 03 gauze 0 netting 0 veiling 0 004 @ 03819595 n 0000 + 02413390 a 0103 ~ 03012373 n 0000 ~ 03448696 n 0000 | a net of transparent fabric with a loose open weave -03430091 06 n 02 gauze 1 gauze_bandage 0 005 @ 03115180 n 0000 #p 02785648 n 0000 #p 04364397 n 0000 ;c 06043075 n 0000 ~ 03920384 n 0000 | (medicine) bleached cotton cloth of plain weave used for bandages and dressings -03430313 06 n 01 gavel 0 001 @ 03715386 n 0000 | a small mallet used by a presiding officer or a judge -03430418 06 n 02 gazebo 0 summerhouse 0 002 @ 02913152 n 0000 ~ 02828555 n 0000 | a small roofed building affording shade and rest -03430551 06 n 04 gear 0 gear_wheel 0 geared_wheel 0 cogwheel 0 012 @ 04574999 n 0000 ~ 02833793 n 0000 %p 03064935 n 0000 ~ 03296217 n 0000 ~ 03943115 n 0000 ~ 03956331 n 0000 ~ 04039209 n 0000 ~ 04290507 n 0000 ~ 04355821 n 0000 %p 04453037 n 0000 ~ 04604806 n 0000 ~ 04605057 n 0000 | a toothed wheel that engages another toothed mechanism in order to change the speed or direction of transmitted motion -03430959 06 n 03 gear 1 paraphernalia 0 appurtenance 1 007 @ 03294048 n 0000 ~ 03351434 n 0000 ~ 03619396 n 0000 ~ 04071263 n 0000 ~ 04091097 n 0000 ~ 04091693 n 0000 ~ 04295081 n 0000 | equipment consisting of miscellaneous articles needed for a particular operation or sport etc. -03431243 06 n 02 gear 4 gear_mechanism 0 010 @ 03738472 n 0000 ~ 03350011 n 0000 ~ 03432061 n 0000 ~ 03518631 n 0000 ~ 03890881 n 0000 ~ 04085017 n 0000 ~ 04164529 n 0000 ~ 04312756 n 0000 ~ 04425977 n 0000 ~ 04472243 n 0000 | a mechanism for transmitting motion for some specific purpose (as the steering gear of a vehicle) -03431570 06 n 03 gearbox 0 gear_box 0 gear_case 0 003 @ 04190747 n 0000 #p 04472243 n 0000 %p 04472563 n 0000 | the shell (metal casing) in which a train of gears is sealed -03431745 06 n 05 gearing 0 gear 2 geartrain 0 power_train 0 train 1 004 @ 04576971 n 0000 #p 03287733 n 0000 ~ 03292736 n 0000 ~ 04066767 n 0000 | wheelwork consisting of a connected set of rotating gears by which force is transmitted or motion or torque is changed; "the fool got his tie caught in the geartrain" -03432061 06 n 01 gearset 0 001 @ 03431243 n 0000 | a set of gears -03432129 06 n 04 gearshift 0 gearstick 0 shifter 0 gear_lever 0 003 @ 03736970 n 0000 #p 03791235 n 0000 + 00551065 v 0301 | a mechanical device for engaging and disengaging gears; "in Britain they call a gearshift a gear lever" -03432360 06 n 02 Geiger_counter 0 Geiger-Muller_counter 0 002 @ 03118346 n 0000 %p 03432509 n 0000 | counter tube that detects ionizing radiations -03432509 06 n 02 Geiger_tube 0 Geiger-Muller_tube 0 002 @ 03583621 n 0000 #p 03432360 n 0000 | an ionization chamber contained in a tube in a Geiger counter -03432668 06 n 02 gelatin 0 gel 0 001 @ 03743761 n 0000 | a thin translucent membrane used over stage lights for color effects -03432796 06 n 02 gelignite 0 gelly 0 001 @ 03260293 n 0000 | a type of dynamite in which the nitroglycerin is absorbed in a base of wood pulp and sodium or potassium nitrate -03432972 06 n 02 gem 1 treasure 0 001 @ 02743547 n 0000 | art highly prized for its beauty or perfection -03433079 06 n 02 gemfibrozil 0 Lopid 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | medication (trade name Lopid) used to lower the levels of triglyceride in the blood -03433247 06 n 02 gene_chip 0 DNA_chip 0 001 @ 03020034 n 0000 | a microchip that holds DNA probes that form half of the DNA double helix and can recognize DNA from samples being tested -03433434 06 n 02 general_anesthetic 0 general_anaesthetic 0 003 @ 02710766 n 0000 ~ 03570838 n 0000 ~ 03611590 n 0000 | an anesthetic that anesthetizes the entire body and causes loss of consciousness -03433637 06 n 02 general-purpose_bomb 0 GP_bomb 0 002 @ 02866578 n 0000 ~ 02853870 n 0000 | a large bomb (500 to 2,000 pounds that is 50% explosive) whose explosion creates a blast and whose metal casing creates some fragmentation effect -03433877 06 n 01 generator 0 010 @ 03287733 n 0000 + 01628197 v 0101 ~ 02700064 n 0000 %p 02908605 n 0000 ~ 03260504 n 0000 ~ 03708425 n 0000 %p 04111962 n 0000 %p 04306592 n 0000 ~ 04498873 n 0000 ~ 04587404 n 0000 | engine that converts mechanical energy into electrical energy by electromagnetic induction -03434188 06 n 01 generator 1 001 @ 02727825 n 0000 | an apparatus that produces a vapor or gas -03434285 06 n 01 generator 2 003 @ 03277771 n 0000 ~ 03857430 n 0000 ~ 04021503 n 0000 | an electronic device for producing a signal voltage -03434428 06 n 01 generic 0 002 @ 03748886 n 0000 ~ 03434549 n 0000 | any product that can be sold without a brand name -03434549 06 n 01 generic_drug 0 003 @ 03434428 n 0000 @ 03247620 n 0000 ! 02891566 n 0101 | when the patent protection for a brand-name drug expires generic versions of the drug can be offered for sale if the FDA agrees; "generic drugs are usually cheaper than brand-name drugs" -03434830 06 n 01 Geneva_gown 0 001 @ 02669723 n 0000 | black academic gown widely used by Protestant clergymen -03434943 06 n 01 genre 0 013 @ 02743547 n 0000 ~ 02669079 n 0000 ~ 03019535 n 0000 ~ 03377451 n 0000 ~ 03435290 n 0000 ~ 03640011 n 0000 ~ 03704926 n 0000 ~ 03777961 n 0000 ~ 03861959 n 0000 ~ 03975419 n 0000 ~ 03990025 n 0000 ~ 04003110 n 0000 ~ 04376715 n 0000 | a class of art (or artistic endeavor) having a characteristic form or technique -03435290 06 n 01 genre_painting 0 001 @ 03434943 n 0000 | a genre depicting everyday life -03435382 06 n 02 gentamicin 0 Garamycin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | an antibiotic (trade name Garamycin) that is derived from an actinomycete; used in treating infections of the urinary tract -03435593 06 n 01 geodesic_dome 0 001 @ 03220513 n 0000 | a lightweight dome constructed of interlocking polygons; invented by R. Buckminster Fuller -03435743 06 n 01 georgette 0 001 @ 03309808 n 0000 | a thin silk dress material -03435825 06 n 01 George_Washington_Bridge 0 002 @i 04366367 n 0000 #p 09119277 n 0000 | a suspension bridge across the Hudson River between New York and New Jersey -03435991 06 n 01 gharry 0 001 @ 02968473 n 0000 | a horse-drawn carriage in India -03436075 06 n 01 ghat 0 001 @ 04298308 n 0000 | stairway in India leading down to a landing on the water -03436182 06 n 02 ghetto_blaster 0 boom_box 0 002 @ 04315948 n 0000 ;u 07075172 n 0000 | a portable stereo -03436290 06 n 02 ghillie 0 gillie 0 001 @ 04199027 n 0000 | a shoe without a tongue and with decorative lacing up the instep -03436417 06 n 02 gift_shop 0 novelty_shop 0 001 @ 04202417 n 0000 | a shop that sells miscellaneous articles appropriate as gifts -03436549 06 n 01 gift_wrapping 0 002 @ 04605726 n 0000 + 01284160 v 0101 | ornamental wrapping for gifts -03436656 06 n 01 gig 0 001 @ 02968473 n 0000 | small two-wheeled horse-drawn carriage; with two seats and no hood -03436772 06 n 01 gig 1 001 @ 04409128 n 0000 | tender that is a light ship's boat; often for personal use of captain -03436891 06 n 01 gig 2 001 @ 04244997 n 0000 | long and light rowing boat; especially for racing -03436990 06 n 01 gig 4 002 @ 03532342 n 0000 #p 03351434 n 0000 | a cluster of hooks (without barbs) that is drawn through a school of fish to hook their bodies; used when fish are not biting -03437184 06 n 01 gildhall 0 002 @ 03466839 n 0000 ;u 07073447 n 0000 | the meeting place of a medieval guild -03437295 06 n 01 gill_net 0 001 @ 03352628 n 0000 | a flat fishnet suspended vertically in the water to entangle fish by their gills -03437430 06 n 02 gilt 0 gilding 0 003 @ 03058107 n 0000 + 01683101 v 0201 + 00369941 a 0103 | a coating of gold or of something that looks like gold -03437581 06 n 01 gimbal 0 001 @ 02729965 n 0000 | an appliance that allows an object (such as a ship's compass) to remain horizontal even as its support tips -03437741 06 n 01 gingham 0 001 @ 03309808 n 0000 | a clothing fabric in a plaid weave -03437829 06 n 02 girandole 0 girandola 0 001 @ 02948557 n 0000 | an ornate candle holder; often with a mirror -03437941 06 n 01 girder 0 002 @ 02815950 n 0000 ~ 03556173 n 0000 | a beam made usually of steel; a main support in a structure -03438071 06 n 05 girdle 1 cincture 0 sash 1 waistband 0 waistcloth 0 002 @ 02784218 n 0000 ~ 03147397 n 0000 | a band of material around the waist that strengthens a skirt or trousers -03438257 06 n 02 glass 0 drinking_glass 0 017 @ 03094503 n 0000 + 00188580 v 0101 ~ 02823750 n 0000 ~ 02918831 n 0000 ~ 03443371 n 0000 ~ 03518135 n 0000 ~ 03676623 n 0000 ~ 03890233 n 0000 ~ 04119360 n 0000 ~ 04147291 n 0000 ~ 04168472 n 0000 ~ 04206225 n 0000 ~ 04249882 n 0000 ~ 04496872 n 0000 ~ 04559910 n 0000 ~ 04592099 n 0000 %p 14881303 n 0000 | a container for holding liquids while drinking -03438661 06 n 01 glass 4 002 @ 03439064 n 0000 + 00188580 v 0101 | glassware collectively; "She collected old glass" -03438780 06 n 01 glass_cutter 0 001 @ 03154073 n 0000 | a tool for cutting glass -03438863 06 n 01 glasses_case 0 001 @ 02974697 n 0000 | a case for carrying spectacles -03438952 06 n 01 glass_eye 0 001 @ 04013729 n 0000 | prosthesis consisting of an artificial eye made of glass -03439064 06 n 02 glassware 0 glasswork 0 006 @ 04381994 n 0000 ~ 03142834 n 0000 ~ 03153145 n 0000 ~ 03438661 n 0000 ~ 04525729 n 0000 %s 14881303 n 0000 | an article of tableware made of glass -03439260 06 n 01 glassworks 0 001 @ 04602044 n 0000 | a workplace where glass is made -03439348 06 n 01 glebe_house 0 002 @ 03892557 n 0000 ;r 08860123 n 0000 | a parsonage (especially one provided for the holder of a benefice) -03439491 06 n 01 Glen_Canyon_Dam 0 002 @i 03160309 n 0000 #p 09057311 n 0000 | a large dam built in 1964 on the Colorado River in Arizona -03439631 06 n 01 Glengarry 0 001 @ 02954340 n 0000 | a Scottish cap with straight sides and a crease along the top from front to back; worn by Highlanders as part of military dress -03439814 06 n 02 glider 0 sailplane 0 005 @ 03510583 n 0000 + 01942959 v 0201 + 01942347 v 0101 + 01887576 v 0101 ~ 03491032 n 0000 | aircraft supported only by the dynamic action of air against its surfaces -03440024 06 n 02 glipizide 0 Glucotrol 0 002 @ 02719105 n 0000 ;u 06845599 n 0201 | an oral antidiabetic drug (trade name Glucotrol) that stimulates the release of insulin from the pancreas -03440216 06 n 02 Global_Positioning_System 0 GPS 0 001 @ 03811444 n 0000 | a navigational system involving satellites and computers that can determine the latitude and longitude of a receiver on Earth by computing the time difference for signals from different satellites to reach the receiver -03440512 06 n 01 globe 0 004 @ 04274530 n 0000 @ 03777283 n 0000 + 02041229 a 0104 ~ 02990920 n 0000 | a sphere on which a map (especially of the earth) is represented -03440682 06 n 02 glockenspiel 0 orchestral_bells 0 001 @ 03915437 n 0000 | a percussion instrument consisting of a set of graduated metal bars mounted on a frame and played with small hammers -03440876 06 n 02 glory_hole 0 lazaretto 2 001 @ 02933462 n 0000 | a small locker at the stern of a boat or between decks of a ship -03441009 06 n 01 glossy 0 001 @ 03925226 n 0000 | a photograph that is printed on smooth shiny paper -03441112 06 n 01 glove 0 009 @ 03490324 n 0000 ~ 02811204 n 0000 %p 03341153 n 0000 ~ 03429682 n 0000 ~ 03429771 n 0000 ~ 03447075 n 0000 ~ 03616979 n 0000 ~ 03775071 n 0000 %p 04430896 n 0000 | handwear: covers the hand and wrist -03441345 06 n 01 glove_compartment 0 002 @ 03079741 n 0000 #p 02958343 n 0000 | compartment on the dashboard of a car -03441465 06 n 01 glow_lamp 0 001 @ 03422589 n 0000 | a gas-discharge tube with a hot cathode; used in stroboscopes -03441582 06 n 01 glow_tube 0 001 @ 03422589 n 0000 | a gas-discharge tube consisting of a cold cathode and a diode in a tube filled with gas; the color of the glow depends on the particular gas -03441778 06 n 02 glutethimide 0 Doriden 0 002 @ 04166553 n 0000 ;u 06845599 n 0201 | sedative (trade name Doriden) used to treat some sleep disorders -03441930 06 n 03 glyburide 0 DiaBeta 0 Micronase 0 003 @ 02719105 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an oral antidiabetic drug (trade names DiaBeta and Micronase) that stimulates the release of insulin from the pancreas -03442164 06 n 01 glyph 0 001 @ 03442288 n 0000 | glyptic art in the form of a symbolic figure carved or incised in relief -03442288 06 n 02 glyptic_art 0 glyptography 0 005 @ 02973558 n 0000 ~ 02707188 n 0000 ~ 03442164 n 0000 ~ 03442487 n 0000 ~ 03576443 n 0000 | carvings or engravings (especially on precious stones) -03442487 06 n 02 glyptics 0 lithoglyptics 0 001 @ 03442288 n 0000 | the art of engraving on precious stones -03442597 06 n 01 gnomon 0 002 @ 03568117 n 0000 #p 04355338 n 0000 | indicator provided by the stationary arm whose shadow indicates the time on the sundial -03442756 06 n 01 goal 0 005 @ 03414162 n 0000 %p 02789271 n 0000 ~ 02802215 n 0000 %p 03443149 n 0000 ~ 03820318 n 0000 | game equipment consisting of the place toward which players of a game try to advance a ball or puck in order to score points -03443005 06 n 01 goalmouth 0 003 @ 02735688 n 0000 ;c 00467995 n 0000 ;c 00478262 n 0000 | (sports) the area immediately in front of the goal -03443149 06 n 01 goalpost 0 004 @ 03988170 n 0000 #p 03442756 n 0000 %p 03135656 n 0000 %p 04515129 n 0000 | one of a pair of posts (usually joined by a crossbar) that are set up as a goal at each end of a playing field -03443371 06 n 01 goblet 0 001 @ 03438257 n 0000 | a drinking glass with a base and stem -03443461 06 n 01 go_board 0 001 @ 02857023 n 0000 | a board used for playing go -03443543 06 n 01 godown 0 003 @ 04551055 n 0000 ;r 08900535 n 0000 ;r 08963369 n 0000 | (in India and Malaysia) a warehouse -03443669 06 n 02 goffer 0 gauffer 0 001 @ 03397532 n 0000 | an ornamental frill made by pressing pleats -03443775 06 n 04 goffer 1 gauffer 1 goffering_iron 0 gauffering_iron 0 001 @ 03584829 n 0000 | an iron used to press pleats and ridges -03443912 06 n 01 goggles 0 002 @ 04272054 n 0000 ;u 06295235 n 0000 | tight-fitting spectacles worn to protect the eyes -03444034 06 n 01 go-kart 0 001 @ 03791235 n 0000 | a small low motor vehicle with four wheels and an open framework; used for racing -03444169 06 n 01 Golconda 0 001 @ 04263614 n 0000 | a source of great wealth (especially a mine) -03444268 06 n 01 goldbrick 0 001 @ 13914608 n 0000 | a brick-shaped block that looks like gold but is not -03444376 06 n 01 golden_calf 0 002 @ 03560161 n 0000 ;c 06449735 n 0000 | (Old Testament) an idol made by Aaron for the Israelites to worship; destroyed by Moses; it is now used to refer to anything worshipped undeservedly -03444601 06 n 01 Golden_Gate_Bridge 0 002 @i 04366367 n 0000 #p 09065557 n 0000 | a suspension bridge across the Golden Gate -03444728 06 n 01 gold_foil 0 003 @ 03375694 n 0000 ~ 03444838 n 0000 %s 14638799 n 0000 | foil made of gold -03444838 06 n 01 gold_leaf 0 002 @ 03444728 n 0000 %s 14638799 n 0000 | a very thin form of gold foil -03444942 06 n 01 gold_medal 0 001 @ 04487996 n 0000 | a trophy made of gold (or having the appearance of gold) that is usually awarded for winning first place in a competition -03445120 06 n 02 goldmine 0 gold_mine 0 001 @ 03768346 n 0000 | a mine where gold ore is found -03445217 06 n 02 goldmine 1 gold_mine 1 001 @ 04263614 n 0000 | a good source of something that is desired -03445326 06 n 01 gold_plate 0 004 @ 03963028 n 0000 + 01396091 v 0101 + 01396091 v 0102 + 01396091 v 0103 | a thin plating of gold on something -03445472 06 n 01 gold_plate 1 004 @ 04381994 n 0000 + 01396091 v 0101 + 01396091 v 0102 + 01396091 v 0103 | tableware that is plated with gold -03445617 06 n 01 golf_bag 0 003 @ 02773037 n 0000 @ 03446832 n 0000 %p 04333500 n 0000 | golf equipment consisting of a bag for carrying golf clubs and balls -03445777 06 n 01 golf_ball 0 002 @ 02778669 n 0000 @ 03446832 n 0000 | a small hard ball used in playing golf; dimpled to reduce wind resistance -03445924 06 n 02 golfcart 0 golf_cart 0 002 @ 03791235 n 0000 @ 03446832 n 0000 | a small motor vehicle in which golfers can ride between shots -03446070 06 n 03 golf_club 0 golf-club 0 club 1 005 @ 03446832 n 0000 + 01423929 v 0301 %p 03446268 n 0000 ~ 03585073 n 0000 ~ 04597066 n 0000 | golf equipment used by a golfer to hit a golf ball -03446268 06 n 04 golf-club_head 0 club_head 0 club-head 0 clubhead 0 007 @ 03501614 n 0000 #p 03446070 n 0000 ;c 00464894 n 0000 %p 03313873 n 0000 %p 03511786 n 0000 %p 04258982 n 0000 %p 04444345 n 0000 | (golf) the head of the club which strikes the ball -03446528 06 n 02 golf_course 0 links_course 0 010 @ 03119790 n 0000 ;c 00464894 n 0000 %p 02920369 n 0000 %p 03501152 n 0000 %p 03526805 n 0000 ~ 03674591 n 0000 %p 08569319 n 0000 %p 08579780 n 0000 %p 08640962 n 0000 %p 08661277 n 0000 | course consisting of a large landscaped area for playing golf -03446832 06 n 01 golf_equipment 0 009 @ 04285146 n 0000 ;c 00464894 n 0000 ~ 03445617 n 0000 ~ 03445777 n 0000 ~ 03445924 n 0000 ~ 03446070 n 0000 ~ 03447075 n 0000 ~ 03940894 n 0000 ~ 04399537 n 0000 | sports equipment used in playing golf -03447075 06 n 01 golf_glove 0 002 @ 03441112 n 0000 @ 03446832 n 0000 | a glove worn by golfers to give a firm grip on the handle of the golf club -03447224 06 n 02 golf_range 0 driving_range 0 002 @ 03997745 n 0000 ;c 00464894 n 0000 | a practice range for practicing golf shots -03447358 06 n 02 golliwog 0 golliwogg 0 001 @ 03219135 n 0000 | a grotesque black doll -03447447 06 n 01 gondola 1 001 @ 02858304 n 0000 | long narrow flat-bottomed boat propelled by sculling; traditionally used on canals of Venice -03447593 06 n 02 gondola_car 0 gondola 2 001 @ 03393912 n 0000 | a low flat-bottomed freight car with fixed sides but no roof -03447721 06 n 02 gong 0 tam-tam 0 002 @ 03915437 n 0000 + 02180152 v 0101 | a percussion instrument consisting of a metal plate that is struck with a softheaded drumstick -03447894 06 n 01 goniometer 0 001 @ 03205304 n 0000 | direction finder that determines the angular direction of incoming radio signals -03448031 06 n 01 Gordian_knot 0 001 @ 03627232 n 0000 | an intricate knot tied by Gordius, the king of Phrygia, and cut by the sword of Alexander the Great after he heard that whoever undid it would become ruler of Asia -03448253 06 n 02 gore 0 panel 4 005 @ 03932670 n 0000 #p 04507155 n 0000 #p 03402511 n 0000 #p 03411079 n 0000 + 01559230 v 0101 | a piece of cloth that is generally triangular or tapering; used in making garments or umbrellas or sails -03448491 06 n 02 gorgerin 0 necking 0 001 @ 03780392 n 0000 | the molding at the top of a column -03448590 06 n 01 gorget 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the neck -03448696 06 n 01 gossamer 0 002 @ 03429914 n 0000 + 00706455 a 0102 | a gauze fabric with an extremely fine texture -03448814 06 n 01 Gota_Canal 0 002 @i 04196337 n 0000 #p 08765890 n 0000 | a canal for small oceangoing ships to enter Lake Vanern in Sweden -03448956 06 n 01 Gothic_arch 0 002 @ 03975035 n 0000 ~ 03637787 n 0000 | a pointed arch; usually has a joint (instead of a keystone) at the apex -03449103 06 n 01 gouache 0 001 @ 04558578 n 0000 | a watercolor executed with opaque watercolors mixed with gum -03449217 06 n 01 gouache 1 001 @ 04558804 n 0000 | an opaque watercolor prepared with gum -03449309 06 n 01 gouge 0 002 @ 03265032 n 0000 + 01281782 v 0102 | and edge tool with a blade like a trough for cutting channels or grooves -03449451 06 n 02 gourd 0 calabash 0 001 @ 02876657 n 0000 | bottle made from the dried shell of a bottle gourd -03449564 06 n 01 government_building 0 011 @ 02913152 n 0000 ~i 02956500 n 0000 ~ 02956699 n 0000 ~ 03005033 n 0000 ~ 03121431 n 0000 ~ 03152303 n 0000 ~ 03203806 n 0000 ~i 03912496 n 0000 ~ 04305210 n 0000 ~ 04461437 n 0000 ~i 04580777 n 0000 | a building that houses a branch of government -03449858 06 n 01 government_office 0 004 @ 03841666 n 0000 ~ 03599964 n 0000 ~ 03639880 n 0000 ~i 03862531 n 0000 | an office where government employees work -03450018 06 n 02 governor 0 regulator 1 004 @ 03096960 n 0000 + 02511551 v 0105 ~ 03374649 n 0000 ~ 04438507 n 0000 | a control that maintains a steady speed in a machine (as by controlling the supply of fuel) -03450230 06 n 01 gown 0 008 @ 03236735 n 0000 + 00106592 v 0101 ~ 02781121 n 0000 ~ 02898585 n 0000 ~ 03201638 n 0000 ~ 03719911 n 0000 ~ 04397645 n 0000 %p 04468476 n 0000 | a woman's dress, usually with a close-fitting bodice and a long flared skirt, often worn on formal occasions -03450516 06 n 02 gown 1 robe 1 005 @ 03859495 n 0000 + 00052043 v 0202 + 00106592 v 0101 ~ 02669723 n 0000 ~ 04532106 n 0000 | outerwear consisting of a long flowing garment used for official or ceremonial occasions -03450734 06 n 03 gown 2 surgical_gown 0 scrubs 0 002 @ 03419014 n 0000 + 00106592 v 0101 | protective garment worn by surgeons during operations -03450881 06 n 01 grab 0 001 @ 03736970 n 0000 | a mechanical device for gripping an object -03450974 06 n 01 grab_bag 0 001 @ 03094503 n 0000 | a container from which a person draws a wrapped item at random without knowing the contents -03451120 06 n 01 grab_bar 0 001 @ 02788689 n 0000 | a bar attached parallel to a wall to provide a handgrip for steadying yourself -03451253 06 n 01 grace_cup 0 001 @ 03147509 n 0000 | cup to be passed around for the final toast after a meal -03451365 06 n 01 grade_separation 0 001 @ 03137228 n 0000 | a crossing that uses an underpass or overpass -03451473 06 n 01 graduate 0 003 @ 03733925 n 0000 + 00295697 v 0102 ~ 03451711 n 0000 | a measuring instrument for measuring fluid volume; a glass container (cup or cylinder or flask) whose sides are marked with or divided into amounts -03451711 06 n 01 graduated_cylinder 0 001 @ 03451473 n 0000 | a cylindrical graduate -03451798 06 n 02 graffito 0 graffiti 0 001 @ 03169390 n 0000 | a rude decoration inscribed on rocks or walls -03451909 06 n 03 grail 0 Holy_Grail 0 Sangraal 0 002 @i 03002948 n 0000 ;c 06371413 n 0000 | (legend) chalice used by Christ at the Last Supper -03452055 06 n 01 gramicidin 0 002 @ 02716866 n 0000 @ 02724207 n 0000 | an antibiotic produced by a soil bacterium; used chiefly as an antiseptic in treating local infections produced by Gram-positive bacteria -03452267 06 n 02 gramophone 0 acoustic_gramophone 0 002 @ 04064401 n 0000 ~ 04533499 n 0000 | an antique record player; the sound of the vibrating needle is amplified acoustically -03452449 06 n 02 granary 0 garner 0 003 @ 04329190 n 0000 + 01493041 v 0201 ~ 03131669 n 0000 | a storehouse for threshed grain or animal feed -03452594 06 n 02 grandfather_clock 0 longcase_clock 0 002 @ 03909406 n 0000 %p 04190747 n 0000 | a pendulum clock enclosed in a tall narrow case -03452741 06 n 02 grand_piano 0 grand 0 004 @ 03928116 n 0000 ~ 02766792 n 0000 ~ 03086457 n 0000 %p 03654826 n 0000 | a piano with the strings on a horizontal harp-shaped frame; usually supported by three legs -03452953 06 n 02 grandstand 0 covered_stand 0 002 @ 04300741 n 0000 %p 02886183 n 0000 | a stand at a racecourse or stadium consisting of tiers with rows of individual seats that are under a protective roof -03453162 06 n 01 grange 0 001 @ 03322099 n 0000 | an outlying farm -03453231 06 n 01 graniteware 0 001 @ 03284981 n 0000 | a kind of stone-grey enamelware -03453320 06 n 02 granny_knot 0 granny 0 001 @ 04067353 n 0000 | a reef knot crossed the wrong way and therefore insecure -03453443 06 n 02 grape_arbor 0 grape_arbour 0 001 @ 02732827 n 0000 | an arbor where grapes are grown -03453547 06 n 02 grapeshot 0 grape 0 001 @ 04205759 n 0000 | a cluster of small projectiles fired together from a cannon to produce a hail of shot -03453696 06 n 02 graphic 0 computer_graphic 0 001 @ 03931044 n 0000 | an image that is generated by a computer -03453809 06 n 01 graphic_art 0 005 @ 02743547 n 0000 ~ 03453985 n 0000 ~ 03876519 n 0000 ~ 04003597 n 0000 ~ 04144782 n 0000 | the arts of drawing or painting or printmaking -03453985 06 n 01 graphics 0 002 @ 03453809 n 0000 ~ 03084647 n 0000 | the drawings and photographs in the layout of a book -03454110 06 n 02 grapnel 0 grapnel_anchor 0 001 @ 02709367 n 0000 | a light anchor for small boats -03454211 06 n 05 grapnel 1 grapple 0 grappler 0 grappling_hook 0 grappling_iron 0 003 @ 04451818 n 0000 ~ 03126580 n 0000 %p 03532672 n 0000 | a tool consisting of several hooks for grasping and holding; often thrown with a rope -03454442 06 n 01 grass_skirt 0 001 @ 04230808 n 0000 | a skirt made of long blades of grass -03454536 06 n 02 grate 0 grating 1 005 @ 03391770 n 0000 #p 04330340 n 0000 #p 03404449 n 0000 + 02330583 v 0201 + 02330583 v 0101 | a frame of iron bars to hold a fire -03454707 06 n 02 grate 1 grating 0 003 @ 02796623 n 0000 + 02330583 v 0101 ~ 03459775 n 0000 | a barrier that has parallel or crossed bars blocking a passage but admitting air -03454885 06 n 01 grater 0 002 @ 03621049 n 0000 + 01574077 v 0101 | utensil with sharp perforations for shredding foods (as vegetables or cheese) -03455033 06 n 02 grave 0 tomb 0 004 @ 08664443 n 0000 ~ 02921884 n 0000 %p 03455488 n 0000 ~ 03727067 n 0000 | a place for the burial of a corpse (especially beneath the ground and marked by a tombstone); "he put flowers on his mother's grave" -03455279 06 n 01 gravel_pit 0 001 @ 03949442 n 0000 | a quarry for gravel -03455355 06 n 04 graver 0 graving_tool 0 pointel 0 pointrel 0 002 @ 03489162 n 0000 ~ 04144651 n 0000 | a tool used by an engraver -03455488 06 n 03 gravestone 0 headstone 1 tombstone 0 003 @ 04326084 n 0000 @ 03743902 n 0000 #p 03455033 n 0000 | a stone that is used to mark a grave -03455642 06 n 02 gravimeter 1 gravity_meter 0 001 @ 03733925 n 0000 | a measuring instrument for measuring variations in the gravitational field of the earth -03455802 06 n 03 gravure 0 photogravure 0 heliogravure 0 001 @ 04003597 n 0000 | an intaglio print produced by gravure -03455923 06 n 01 gravure 1 001 @ 03289025 n 0000 | a printing plate used in the process of gravure -03456024 06 n 04 gravy_boat 0 gravy_holder 0 sauceboat 0 boat 1 002 @ 03206908 n 0000 ~ 02737166 n 0000 | a dish (often boat-shaped) for serving gravy or sauce -03456186 06 n 02 grey 0 gray 0 001 @ 03051540 n 0000 | clothing that is a grey color; "he was dressed in grey" -03456299 06 n 02 grease-gun 0 gun 3 001 @ 04021798 n 0000 | a hand-operated pump that resembles a revolver; forces grease into parts of a machine -03456447 06 n 01 greasepaint 0 001 @ 03714235 n 0000 | a greasy substance used as makeup by actors -03456548 06 n 01 greasy_spoon 0 001 @ 04081281 n 0000 | a small restaurant specializing in short-order fried foods -03456665 06 n 03 greatcoat 0 overcoat 0 topcoat 0 005 @ 03057021 n 0000 ~ 02957008 n 0000 ~ 03015052 n 0000 ~ 04365229 n 0000 ~ 04506402 n 0000 | a heavy coat worn over clothes in winter -03456854 06 n 01 Greater_New_Orleans_Bridge 0 002 @i 02953197 n 0000 #p 09091909 n 0000 | twin cantilever bridges across the Mississippi at New Orleans -03457008 06 n 01 great_hall 0 003 @ 03478907 n 0000 #p 03878066 n 0000 ~ 02726210 n 0000 | the principal hall in a castle or mansion; can be used for dining or entertainment -03457184 06 n 01 great_seal 0 002 @ 04159058 n 0000 ~i 03457332 n 0000 | the principal seal of a government, symbolizing authority or sovereignty -03457332 06 n 01 Great_Seal_of_the_United_States 0 001 @i 03457184 n 0000 | the seal of the United States government -03457451 06 n 02 greave 0 jambeau 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects legs below the knee -03457578 06 n 01 Greek_cross 0 001 @ 03135152 n 0000 | a cross with each of the four arms the same length -03457686 06 n 01 greengrocery 0 002 @ 03461385 n 0000 ;r 08860123 n 0000 | a greengrocer's grocery store -03457793 06 n 01 greengrocery 1 002 @ 03461119 n 0000 ;r 08860123 n 0000 | groceries sold by a greengrocer -03457902 06 n 03 greenhouse 0 nursery 0 glasshouse 0 003 @ 02913152 n 0000 ~ 03092166 n 0000 ~ 13252672 n 0000 | a building with glass walls and roof; for the cultivation and exhibition of plants under controlled conditions -03458128 06 n 01 greenroom 0 002 @ 04105893 n 0000 #p 04417809 n 0000 | a backstage room in a theater where performers rest or have visitors -03458271 06 n 01 grenade 0 003 @ 02866578 n 0000 ~ 03485309 n 0000 ~ 04090781 n 0000 | a small explosive bomb thrown by hand or fired from a missile -03458422 06 n 02 grid 0 gridiron 0 001 @ 03101986 n 0000 | a cooking utensil of parallel metal bars; used to grill fish or meat -03458552 06 n 02 grid 1 control_grid 0 002 @ 03274796 n 0000 #p 04494204 n 0000 | an electrode placed between the cathode and anode of a vacuum tube to control the flow of electrons through the tube -03458753 06 n 02 grid 3 storage-battery_grid 0 002 @ 03959936 n 0000 #p 04328329 n 0000 | a perforated or corrugated metal plate used in a storage battery as a conductor and support for the active material -03458961 06 n 01 reef 0 002 @ 04339291 n 0000 #p 04127904 n 0000 | one of several strips across a sail that can be taken in or rolled up to lessen the area of the sail that is exposed to the wind -03459159 06 n 01 reference_grid 0 001 @ 05931512 n 0000 | a pattern of horizontal and vertical lines that provide coordinates for locating points on an image or a map -03459328 06 n 01 griddle 0 002 @ 03101986 n 0000 + 00325910 v 0101 | cooking utensil consisting of a flat heated surface (as on top of a stove) on which food is cooked -03459498 06 n 03 grigri 0 gres-gris 0 greegree 0 001 @ 02706586 n 0000 | an African amulet -03459591 06 n 03 grill 0 grille 0 grillwork 1 002 @ 03391770 n 0000 + 00326773 v 0101 | a framework of metal bars used as a partition or a grate; "he cooked hamburgers on the grill" -03459775 06 n 02 grille 1 radiator_grille 0 002 @ 03454707 n 0000 #p 02958343 n 0000 | grating that admits cooling air to car's radiator -03459914 06 n 02 grillroom 0 grill 1 002 @ 04081281 n 0000 + 00326773 v 0201 | a restaurant where food is cooked on a grill -03460040 06 n 01 grinder 0 002 @ 03702248 n 0000 %p 03460147 n 0000 | a machine tool that polishes metal -03460147 06 n 02 grinding_wheel 0 emery_wheel 0 002 @ 04574999 n 0000 #p 03460040 n 0000 | a wheel composed of abrasive material; used for grinding -03460297 06 n 01 grindstone 0 002 @ 04326084 n 0000 @ 04185071 n 0000 | a revolving stone shaped like a disk; used to grind or sharpen or polish edge tools -03460455 06 n 01 gripsack 0 001 @ 02773838 n 0000 | a small suitcase -03460526 06 n 01 grisaille 0 001 @ 03016056 n 0000 | chiaroscuro painting or stained glass etc., in shades of grey imitating the effect of relief -03460674 06 n 02 griseofulvin 0 Fulvicin 0 003 @ 03910033 n 0000 @ 02720201 n 0000 ;u 06845599 n 0201 | a kind of penicillin (a fungicidal antibiotic with the trade name Fulvicin) produced by molds of the genus Penicillium -03460899 06 n 01 gristmill 0 002 @ 03765561 n 0000 %p 03766935 n 0000 | a mill for grinding grain (especially the customer's own grain) -03461037 06 n 01 grizzle 0 002 @ 04584207 n 0000 + 01645678 a 0107 | a grey wig -03461119 06 n 02 grocery 1 foodstuff 0 004 @ 03093574 n 0000 ;u 06295235 n 0000 ~ 03457793 n 0000 ~ 03871255 n 0000 | (usually plural) consumer goods sold by a grocer -03461288 06 n 01 grocery_bag 0 001 @ 04122825 n 0000 | a sack for holding customer's groceries -03461385 06 n 04 grocery_store 0 grocery 0 food_market 0 market 0 006 @ 03722288 n 0000 + 02326198 v 0401 + 02298471 v 0401 ~ 03457686 n 0000 %p 04190052 n 0000 ~ 04358707 n 0000 | a marketplace where groceries are sold; "the grocery store included a meat market" -03461651 06 n 01 grogram 0 001 @ 03309808 n 0000 | a coarse fabric of silk mixed with wool or mohair and often stiffened with gum -03461783 06 n 01 groin 1 001 @ 03264136 n 0000 | a curved edge formed by two intersecting vaults -03461882 06 n 01 groined_vault 0 001 @ 04523525 n 0000 | two barrel vaults intersecting at right angles -03461988 06 n 01 groover 0 002 @ 03183080 n 0000 + 01457489 v 0101 | a device that makes grooves by cutting or punching -03462110 06 n 01 grosgrain 0 001 @ 03309808 n 0000 | a silk or silklike fabric with crosswise ribs -03462211 06 n 01 gros_point 0 001 @ 03816659 n 0000 | needlepoint embroidery done with large stitches -03462315 06 n 01 gros_point 1 001 @ 04180314 n 0000 | a needlepoint stitch covering two horizontal and two vertical threads -03462441 06 n 01 grotesque 0 001 @ 02743547 n 0000 | art characterized by an incongruous mixture of parts of humans and animals interwoven with plants -03462594 06 n 01 ground 1 002 @ 04362025 n 0000 ;c 00933420 n 0000 | (art) the surface (as a wall or canvas) prepared to take the paint for a painting -03462747 06 n 02 ground 2 earth 0 003 @ 03091374 n 0000 ;c 11449907 n 0000 + 01292534 v 0101 | a connection between an electrical device and a large conducting body, such as the earth (which is taken to be at zero voltage) -03462972 06 n 01 ground_bait 0 001 @ 02776205 n 0000 | bait scattered on the water to attract fish -03463073 06 n 01 ground_cable 0 001 @ 02933842 n 0000 | a mooring cable; runs from a buoy to a mooring anchor -03463185 06 n 01 ground_control 0 001 @ 03078287 n 0000 | a communication system for sending continuous radio messages to an airplane pilot who is making a ground-controlled approach to landing -03463381 06 n 03 ground_floor 0 first_floor 0 ground_level 0 001 @ 03365991 n 0000 | the floor of a building that is at or nearest to the level of the ground around the building -03463561 06 n 01 ground_plan 0 001 @ 03367147 n 0000 | a floor plan for the ground level of a building -03463666 06 n 02 groundsheet 0 ground_cloth 0 001 @ 03932670 n 0000 | a waterproofed piece of cloth spread on the ground (as under a tent) to protect from moisture -03463832 06 n 04 grove 0 woodlet 0 orchard 0 plantation 0 005 @ 03417345 n 0000 ~ 02729755 n 0000 ~ 03656011 n 0000 ~ 03853023 n 0000 ~ 03902482 n 0000 | garden consisting of a small cultivated wood without undergrowth -03464053 06 n 02 G-string 1 thong 3 001 @ 04596852 n 0000 | minimal clothing worn by stripteasers; a narrow strip of fabric that covers the pubic area, passes between the thighs, and is supported by a waistband -03464266 06 n 02 guanabenz 0 Wytensin 0 002 @ 02721160 n 0000 ;u 06845599 n 0201 | antihypertensive drug (trade name Wytensin) that reduces blood pressure by its effect on the central nervous system -03464467 06 n 03 guard 0 safety 0 safety_device 0 003 @ 03183080 n 0000 ~ 03328076 n 0000 ~ 04126373 n 0000 | a device designed to prevent injury or accidents -03464628 06 n 01 guard_boat 0 001 @ 02858304 n 0000 | a boat that is on guard duty (as in a harbor) around a fleet of warships -03464757 06 n 01 guardhouse 0 002 @ 03504420 n 0000 ;c 08199025 n 0000 | a military facility that serves as the headquarters for military police and in which military prisoners can be detained -03464952 06 n 01 guardroom 0 001 @ 04105893 n 0000 | a room used by soldiers on guard -03465040 06 n 01 guardroom 1 001 @ 02991302 n 0000 | a cell in which soldiers who are prisoners are confined -03465151 06 n 01 guard_ship 0 001 @ 04552696 n 0000 | a warship (at anchor or under way) required to maintain a higher degree of readiness than others in its squadron -03465320 06 n 01 guard's_van 0 001 @ 02959942 n 0000 | the car on a train that is occupied by the guard -03465426 06 n 01 gueridon 0 001 @ 04379243 n 0000 | a small round table -03465500 06 n 01 Guarnerius 0 001 @ 04536866 n 0000 | a violin made by a member of the Guarneri family -03465605 06 n 01 guesthouse 0 001 @ 03544360 n 0000 | a house separate from the main house; for housing guests -03465718 06 n 01 guestroom 0 001 @ 02821627 n 0000 | a bedroom that is kept for the use of guests -03465818 06 n 02 guidance_system 0 guidance_device 0 003 @ 04377057 n 0000 #p 03466162 n 0000 ~ 03601442 n 0000 | a system of equipment for automatically guiding the path of a vehicle (especially a missile) -03466027 06 n 01 guide 0 001 @ 04341686 n 0000 | a structure or marking that serves to direct the motion or positioning of something -03466162 06 n 01 guided_missile 0 009 @ 03773504 n 0000 ~ 02716626 n 0000 ~ 02929923 n 0000 ~ 03304197 n 0000 %p 03465818 n 0000 %p 03530041 n 0000 ~ 04265668 n 0000 ~ 04363210 n 0000 %p 04551375 n 0000 | a rocket-propelled missile whose path can be controlled during flight either by radio signals or by internal homing devices -03466493 06 n 01 guided_missile_cruiser 0 001 @ 03140900 n 0000 | a cruiser that carries guided missiles -03466600 06 n 01 guided_missile_frigate 0 002 @ 03397266 n 0000 #m 08292756 n 0000 | a frigate that carries guided missiles -03466726 06 n 01 guide_rope 0 001 @ 04108268 n 0000 | a rope used to guide the movement of the load of a crane -03466839 06 n 01 guildhall 0 002 @ 03478756 n 0000 ~ 03437184 n 0000 | the hall of a guild or corporation -03466947 06 n 01 guilloche 0 001 @ 02734423 n 0000 | an architectural decoration formed by two intersecting wavy bands -03467068 06 n 01 guillotine 0 002 @ 03575691 n 0000 + 01571538 v 0101 | instrument of execution that consists of a weighted blade between two vertical poles; used for beheading people -03467254 06 n 01 guimpe 0 001 @ 02854926 n 0000 | a short blouse with sleeves that is worn under a jumper or pinafore dress -03467380 06 n 01 guimpe 1 002 @ 03932670 n 0000 #p 03835941 n 0000 | a piece of starched cloth covering the shoulders of a nun's habit -03467517 06 n 01 guitar 0 009 @ 04338517 n 0000 + 10151760 n 0101 ~ 02676566 n 0000 ~ 02804123 n 0000 ~ 03035832 n 0000 ~ 03272010 n 0000 %p 03341297 n 0000 ~ 03499907 n 0000 ~ 04506289 n 0000 | a stringed instrument usually having six strings; played by strumming or plucking -03467796 06 n 01 guitar_pick 0 001 @ 03929660 n 0000 | a plectrum used to pluck a guitar -03467887 06 n 01 gulag 0 001 @ 04005912 n 0000 | a Russian prison camp for political prisoners -03467984 06 n 01 gun 0 025 @ 04565375 n 0000 + 01136614 v 0101 %p 02677718 n 0000 ~ 02689274 n 0000 ~ 02715712 n 0000 %p 02795528 n 0000 ~ 02896856 n 0000 ~ 02950482 n 0000 ~ 02950826 n 0000 %p 02972533 n 0000 %p 02972714 n 0000 %p 02973017 n 0000 ~ 03343853 n 0000 %p 03348868 n 0000 ~ 03423306 n 0000 %p 03469493 n 0000 %p 03469687 n 0000 %p 03470387 n 0000 %p 03470629 n 0000 ~ 03772417 n 0000 ~ 04031370 n 0000 %p 04126373 n 0000 ~ 04177041 n 0000 %p 04322026 n 0000 ~ 04574606 n 0000 | a weapon that discharges a missile at high velocity (especially from a metal tube or barrel) -03468570 06 n 01 gunboat 0 001 @ 02858304 n 0000 | a small shallow-draft boat carrying mounted guns; used by costal patrols -03468696 06 n 01 gun_carriage 0 002 @ 03391770 n 0000 ~ 02791532 n 0000 | a framework on which a gun is mounted for firing -03468821 06 n 01 gun_case 0 001 @ 02974697 n 0000 | a case for storing a gun -03468900 06 n 01 gun_deck 0 001 @ 03167666 n 0000 | formerly any deck other than the weather deck having cannons from end to end -03469031 06 n 02 gun_emplacement 0 weapons_emplacement 0 003 @ 03284120 n 0000 ~ 03819217 n 0000 ~ 03937633 n 0000 | an emplacement for a gun -03469175 06 n 03 gun_enclosure 0 gun_turret 0 turret 1 002 @ 03962525 n 0000 #p 04389033 n 0000 | a self-contained weapons platform housing guns and capable of rotation -03469346 06 n 01 gunflint 0 002 @ 14871078 n 0000 #p 03363549 n 0000 | the piece of flint that provides the igniting spark in a flintlock weapon -03469493 06 n 02 gunlock 0 firing_mechanism 0 005 @ 02677718 n 0000 #p 03467984 n 0000 ~ 03363549 n 0000 %p 03481824 n 0000 ~ 04576861 n 0000 | the action that ignites the charge in a firearm -03469687 06 n 02 gun_muzzle 0 muzzle 1 003 @ 03848729 n 0000 #p 03467984 n 0000 ~ 03974769 n 0000 | the open circular discharging end of a gun -03469832 06 n 01 gunnery 0 001 @ 04566257 n 0000 | guns collectively -03469903 06 n 03 gunnysack 0 gunny_sack 0 burlap_bag 0 001 @ 02773037 n 0000 | a bag made of burlap -03470005 06 n 01 gun_pendulum 0 001 @ 02781517 n 0000 | a ballistic pendulum consisting of a suspended gun; the velocity of a projectile in the bore of a gun can be measured by the recoil when the gun is discharged -03470222 06 n 01 gun_room 0 003 @ 03763727 n 0000 ;c 08199025 n 0000 ;r 08860123 n 0000 | military quarters of midshipmen and junior officers on a British warship -03470387 06 n 02 gunsight 0 gun-sight 0 009 @ 04216963 n 0000 #p 03467984 n 0000 ~ 02812342 n 0000 %p 03340723 n 0000 ~ 03849412 n 0000 ~ 03884232 n 0000 ~ 03905361 n 0000 ~ 04217200 n 0000 ~ 04403925 n 0000 | a sight used for aiming a gun -03470629 06 n 02 gun_trigger 0 trigger 0 004 @ 03659292 n 0000 #p 03467984 n 0000 + 01135371 v 0201 ~ 03477303 n 0000 | lever that activates the firing mechanism of a gun -03470802 06 n 03 gunwale 0 gunnel 0 gun_rest 0 001 @ 04544805 n 0000 | wale at the top of the side of boat; topmost planking of a wooden vessel -03470948 06 n 01 gurney 0 001 @ 04336792 n 0000 | a metal stretcher with wheels -03471030 06 n 01 gusher 0 003 @ 03845360 n 0000 + 02068413 v 0103 + 01516290 v 0102 | an oil well with a strong natural flow so that pumping is not necessary -03471190 06 n 02 gusset 0 inset 0 003 @ 03932670 n 0000 #p 03419014 n 0000 + 00188466 v 0201 | a piece of material used to strengthen or enlarge a garment -03471347 06 n 02 gusset 1 gusset_plate 0 002 @ 03959936 n 0000 @ 02886599 n 0000 | a metal plate used to strengthen a joist -03471473 06 n 02 gutter 0 trough 0 005 @ 03006105 n 0000 #p 03409591 n 0000 + 01204677 v 0101 ~ 03029603 n 0000 ~ 03146687 n 0000 | a channel along the eaves or on the roof; collects and carries away rainwater -03471685 06 n 01 gutter 1 002 @ 03489162 n 0000 + 01590747 v 0101 | a tool for gutting fish -03471779 06 n 04 guy 0 guy_cable 0 guy_wire 0 guy_rope 0 003 @ 02886599 n 0000 #p 04411264 n 0000 + 00271520 v 0101 | a cable, wire, or rope that is used to brace something (especially a tent) -03471974 06 n 01 Guy 1 002 @ 03265874 n 0000 ;r 08860123 n 0000 | an effigy of Guy Fawkes that is burned on a bonfire on Guy Fawkes Day -03472112 06 n 02 gymnasium 0 gym 0 001 @ 02752311 n 0000 | athletic facility equipped for sports or physical training -03472232 06 n 02 gymnastic_apparatus 0 exerciser 0 011 @ 04285146 n 0000 ;c 00433802 n 0000 + 00100551 v 0201 + 00099721 v 0201 ~ 02777292 n 0000 ~ 03535780 n 0000 ~ 03538037 n 0000 ~ 03888605 n 0000 ~ 04093223 n 0000 ~ 04299526 n 0000 ~ 04469514 n 0000 | sports equipment used in gymnastic exercises -03472535 06 n 03 gym_shoe 0 sneaker 0 tennis_shoe 0 002 @ 04199027 n 0000 ~ 03967270 n 0000 | a canvas shoe with a pliable rubber sole -03472672 06 n 01 gym_suit 0 001 @ 04285803 n 0000 | clothes prescribed for wear while participating in gymnastic exercise -03472796 06 n 01 gymslip 0 002 @ 04497570 n 0000 ;r 08860123 n 0000 | a sleeveless tunic worn by English girls as part of a school uniform -03472937 06 n 01 gypsy_cab 0 001 @ 02930766 n 0000 | a taxicab that cruises for customers although it is licensed only to respond to calls -03473078 06 n 01 gyrocompass 0 002 @ 03080497 n 0000 %p 03473227 n 0000 | a compass that does not depend on magnetism but uses a gyroscope instead -03473227 06 n 02 gyroscope 0 gyro 0 004 @ 04110955 n 0000 #p 03473078 n 0000 #p 03473465 n 0000 + 03071535 a 0101 | rotating mechanism in the form of a universally mounted spinning wheel that offers resistance to turns in any direction -03473465 06 n 02 gyrostabilizer 0 gyrostabiliser 0 003 @ 04294212 n 0000 #p 04194289 n 0000 %p 03473227 n 0000 | a stabilizer consisting of a heavy gyroscope that spins on a vertical axis; reduces side-to-side rolling of a ship or plane -03473704 06 n 02 haberdashery 0 men's_furnishings 0 001 @ 03252064 n 0000 | the drygoods sold by a haberdasher -03473817 06 n 01 habergeon 0 002 @ 03000247 n 0000 ;c 15259284 n 0000 | (Middle Ages) a light sleeveless coat of chain mail worn under the hauberk -03473966 06 n 01 habit 0 006 @ 02756098 n 0000 ;c 05946687 n 0000 + 00049102 v 0101 ~ 03398153 n 0000 ~ 03781467 n 0000 ~ 03835941 n 0000 | a distinctive attire worn by a member of a religious order -03474167 06 n 02 habit 1 riding_habit 0 003 @ 02756098 n 0000 %p 03600285 n 0000 %p 04089666 n 0000 | attire that is typically worn by a horseback rider (especially a woman's attire) -03474352 06 n 01 hacienda 0 002 @ 03544360 n 0000 #p 13252395 n 0000 | the main house on a ranch or large estate -03474467 06 n 01 hack 1 003 @ 04451818 n 0000 + 01257817 v 0101 + 01257173 v 0102 | a tool (as a hoe or pick or mattock) used for breaking up the surface of the soil -03474635 06 n 03 hackney 0 hackney_carriage 0 hackney_coach 0 003 @ 02968473 n 0000 ~ 03389889 n 0000 ~ 04074876 n 0000 | a carriage for hire -03474779 06 n 03 hacksaw 0 hack_saw 0 metal_saw 0 001 @ 04140064 n 0000 | saw used with one hand for cutting metal -03474896 06 n 02 haft 0 helve 0 008 @ 03485997 n 0000 #p 02764044 n 0000 #p 03623556 n 0000 #p 04373894 n 0000 #p 03158885 n 0000 #p 04213353 n 0000 #p 02763714 n 0000 #p 03336839 n 0000 | the handle of a weapon or tool -03475118 06 n 04 Hagia_Sophia 0 Hagia_Sofia 0 Santa_Sophia 0 Santa_Sofia 0 002 @i 03800563 n 0000 #p 09041785 n 0000 | a 6th century masterpiece of Byzantine architecture in Istanbul; built as a Christian church, converted to a mosque in 1453, and made into a museum in the middle of the 20th century -03475421 06 n 02 haik 0 haick 0 001 @ 03419014 n 0000 | an outer garment consisting of a large piece of white cloth; worn by men and women in northern Africa -03475581 06 n 01 hairbrush 0 001 @ 02908217 n 0000 | a brush used to groom a person's hair -03475674 06 n 02 haircloth 0 hair 0 001 @ 03309808 n 0000 | cloth woven from horsehair or camelhair; used for upholstery or stiffening in garments -03475823 06 n 04 hairdressing 0 hair_tonic 0 hair_oil 0 hair_grease 0 002 @ 04447443 n 0000 ~ 03980026 n 0000 | a toiletry for the hair -03475961 06 n 01 hairnet 0 001 @ 03819595 n 0000 | a small net that some women wear over their hair to keep it in place -03476083 06 n 03 hairpiece 0 false_hair 0 postiche 2 005 @ 02756098 n 0000 ~ 02683454 n 0000 ~ 04372948 n 0000 ~ 04459018 n 0000 ~ 04584207 n 0000 | a covering or bunch of human or artificial hair used for disguise or adornment -03476313 06 n 01 hairpin 0 003 @ 03940256 n 0000 ~ 02860640 n 0000 ~ 02861777 n 0000 | a double pronged pin used to hold women's hair in place -03476458 06 n 01 hairpin_bend 0 001 @ 02829696 n 0000 | a U-shaped bend in a road -03476542 06 n 01 hair_shirt 0 001 @ 04197391 n 0000 | an uncomfortable shirt made of coarse animal hair; worn next to the skin as a penance -03476684 06 n 01 hair_slide 0 002 @ 03043958 n 0000 ;r 08860123 n 0000 | a decorative hinged clip that girls and women put in their hair to hold it in place -03476843 06 n 01 hair_space 0 002 @ 04030655 n 0000 ;c 06677302 n 0000 | (printing) the narrowest of the spaces used to separate words or letters -03476991 06 n 01 hair_spray 0 001 @ 04447443 n 0000 | toiletry consisting of a commercial preparation that is sprayed on the hair to hold it in place -03477143 06 n 01 hairspring 0 002 @ 04280259 n 0000 #p 04437953 n 0000 | a fine spiral spring that regulates the movement of the balance wheel in a timepiece -03477303 06 n 01 hair_trigger 0 001 @ 03470629 n 0000 | a gun trigger that responds with little pressure -03477410 06 n 01 halberd 0 002 @ 03935450 n 0000 %p 02811468 n 0000 | a pike fitted with an ax head -03477512 06 n 01 half_binding 0 001 @ 02840619 n 0000 | book binding in which the spine and part of the sides are bound in one material and the rest in another -03477674 06 n 01 half_cross_stitch 0 001 @ 03137863 n 0000 | a single cross stitch at a diagonal -03477773 06 n 01 half_hatchet 0 001 @ 03498962 n 0000 | a hatchet with a broad blade on one end and a hammer head of the other -03477902 06 n 01 half_hitch 0 001 @ 03627232 n 0000 | a knot used to fasten a rope temporarily to an object; usually tied double -03478033 06 n 01 half-length 0 001 @ 03987079 n 0000 | a portrait showing the body from only the waist up -03478141 06 n 01 half_sole 0 002 @ 04258982 n 0000 #p 03380867 n 0000 | shoe sole extending from the shank to the toe -03478261 06 n 03 halftone 0 halftone_engraving 0 photoengraving 0 001 @ 03289025 n 0000 | an engraving used to reproduce an illustration -03478400 06 n 01 halftone 1 001 @ 03289268 n 0000 | a print obtained from photoengraving -03478491 06 n 01 half_track 0 001 @ 04464418 n 0000 | a track that goes around only rear wheels -03478589 06 n 01 half_track 1 003 @ 04464852 n 0000 @ 03764276 n 0000 ;c 08199025 n 0000 | a motor vehicle propelled by half tracks; frequently used by the military -03478756 06 n 01 hall 1 004 @ 02913152 n 0000 ~ 03036022 n 0000 ~ 03466839 n 0000 ~ 03698723 n 0000 | a large building for meetings or entertainment -03478907 06 n 01 hall 2 006 @ 04105893 n 0000 ~ 02823848 n 0000 ~ 03086580 n 0000 ~ 03303831 n 0000 ~ 03366464 n 0000 ~ 03457008 n 0000 | a large room for gatherings or entertainment; "lecture hall"; "pool hall" -03479121 06 n 01 hall 8 001 @ 02913152 n 0000 | a large building used by a college or university for teaching or research; "halls of learning" -03479266 06 n 01 Hall_of_Fame 0 002 @ 02913152 n 0000 ~i 03810561 n 0000 | a building containing trophies honoring famous people -03479397 06 n 01 hall_of_residence 0 002 @ 03224893 n 0000 ;r 08860123 n 0000 | a university dormitory -03479502 06 n 01 hallstand 0 001 @ 03405725 n 0000 | a piece of furniture where coats and hats and umbrellas can be hung; usually has a mirror -03479647 06 n 04 hallucinogen 0 hallucinogenic_drug 0 psychedelic_drug 0 psychodelic_drug 0 007 @ 04017137 n 0000 + 01777212 a 0101 ~ 03699396 n 0000 ~ 03750912 n 0000 ~ 03921499 n 0000 ~ 04017019 n 0000 ~ 04132056 n 0000 | a psychoactive drug that induces hallucinations or altered sensory experiences -03479952 06 n 02 hallway 0 hall 3 005 @ 03112099 n 0000 %p 02990373 n 0000 ~ 03086963 n 0000 %p 03365592 n 0000 %p 04546855 n 0000 | an interior passage or corridor onto which rooms open; "the elevators were at the end of the hall" -03480186 06 n 02 haloperidol 0 Haldol 0 002 @ 03713736 n 0000 ;u 06845599 n 0201 | tranquilizer (trade name Haldol) used to treat some psychotic disorders and Tourette's syndrome -03480367 06 n 01 halothane 0 001 @ 03570838 n 0000 | a nonflammable inhalation anesthetic that produces general anesthesia; used along with analgesics and muscle relaxants for many types of surgical procedures -03480579 06 n 01 halter 0 001 @ 04453666 n 0000 | a woman's top that fastens behind the back and neck leaving the back and arms uncovered -03480719 06 n 02 halter 1 hackamore 0 002 @ 03503718 n 0000 #p 03494706 n 0000 | rope or canvas headgear for a horse, with a rope for leading -03480863 06 n 02 halyard 0 halliard 0 001 @ 04108268 n 0000 | a rope for raising or lowering a sail or flag -03480973 06 n 01 hame 0 002 @ 04295081 n 0000 #p 03068486 n 0000 | stable gear consisting of either of two curved supports that are attached to the collar of a draft horse and that hold the traces -03481172 06 n 01 hammer 0 012 @ 03489162 n 0000 + 01675245 v 0102 + 01416539 v 0101 ~ 02783035 n 0000 ~ 02898173 n 0000 ~ 02966545 n 0000 %p 03482128 n 0000 %p 03501614 n 0000 ~ 03715386 n 0000 ~ 03731695 n 0000 ~ 03966751 n 0000 ~ 04383301 n 0000 | a hand tool with a heavy rigid head and a handle; used to deliver an impulsive force by striking -03481521 06 n 02 hammer 1 power_hammer 0 004 @ 03997484 n 0000 ~ 02689434 n 0000 ~ 03272125 n 0000 ~ 04484647 n 0000 | a power tool for drilling rocks -03481674 06 n 01 hammer 2 002 @ 04337740 n 0000 #p 03928589 n 0000 | a striker that is covered in felt and that causes the piano strings to vibrate -03481824 06 n 02 hammer 4 cock 1 003 @ 04337740 n 0000 #p 03469493 n 0000 + 01247426 v 0201 | the part of a gunlock that strikes the percussion cap when the trigger is pulled -03482001 06 n 01 hammer 5 001 @ 04285146 n 0000 | a heavy metal sphere attached to a flexible wire; used in the hammer throw -03482128 06 n 01 hammerhead 0 003 @ 03501614 n 0000 #p 03481172 n 0000 %p 03905053 n 0000 | the striking part of a hammer -03482252 06 n 02 hammock 0 sack 2 001 @ 02818832 n 0000 | a hanging bed of canvas or rope netting (usually suspended between two trees); swings easily -03482405 06 n 01 hamper 0 003 @ 02801938 n 0000 ~ 03050864 n 0000 ~ 03378342 n 0000 | a basket usually with a cover -03482523 06 n 01 hand 0 005 @ 03975232 n 0000 #p 04437953 n 0000 ~ 03544238 n 0000 ~ 03772584 n 0000 ~ 04164757 n 0000 | a rotating pointer on the face of a timepiece; "the big hand counts the minutes" -03482727 06 n 02 hand_ax 0 hand_axe 0 001 @ 03265032 n 0000 | a stone tool with a cutting edge; the stone is held in the hand and used for chopping -03482877 06 n 01 handball 0 001 @ 02778669 n 0000 | a small rubber ball used in playing the game of handball -03482988 06 n 01 handball_court 0 001 @ 03120491 n 0000 | the court on which handball is played -03483086 06 n 01 handbarrow 0 002 @ 03391770 n 0000 %p 03485997 n 0000 | a rectangular frame with handles at both ends; carried by two people -03483230 06 n 01 handbell 0 001 @ 03017168 n 0000 | a bell that is held in the hand -03483316 06 n 05 hand_blower 0 blow_dryer 0 blow_drier 0 hair_dryer 0 hair_drier 0 002 @ 02855089 n 0000 @ 03251766 n 0000 | a hand-held electric blower that can blow warm air onto the hair; used for styling hair -03483531 06 n 01 handbow 0 001 @ 02879718 n 0000 | a bow drawn by hand as distinguished from a crossbow -03483637 06 n 04 hand_brake 0 emergency 0 emergency_brake 0 parking_brake 0 002 @ 02889425 n 0000 #p 03791235 n 0000 | a brake operated by hand; usually operates by mechanical linkage -03483823 06 n 02 hand_calculator 0 pocket_calculator 0 001 @ 02938886 n 0000 | a calculator small enough to hold in the hand or carry in a pocket -03483971 06 n 01 handcar 0 001 @ 02959942 n 0000 | a small railroad car propelled by hand or by a small motor -03484083 06 n 04 handcart 0 pushcart 0 cart 1 go-cart 2 009 @ 04576211 n 0000 + 01451502 v 0301 ~ 02729222 n 0000 ~ 02797295 n 0000 %p 03485997 n 0000 ~ 03490119 n 0000 ~ 03648431 n 0000 ~ 04176068 n 0000 ~ 04204347 n 0000 | wheeled vehicle that can be pushed by a person; may have one or two or four wheels; "he used a handcart to carry the rocks away"; "their pushcart was piled high with groceries" -03484487 06 n 01 hand_cream 0 001 @ 03128519 n 0000 | moisturizing cream for the hands -03484576 06 n 04 handcuff 0 cuff 1 handlock 0 manacle 0 004 @ 04181228 n 0000 + 01288201 v 0401 + 01288201 v 0202 + 01288201 v 0103 | shackle that consists of a metal loop that can be locked around the wrist; usually used in pairs -03484809 06 n 02 hand_drill 0 handheld_drill 0 001 @ 03239726 n 0000 | a small portable drill held and operated by hand -03484931 06 n 03 hand_glass 0 simple_microscope 0 magnifying_glass 0 002 @ 03667829 n 0000 ~ 03692522 n 0000 | light microscope consisting of a single convex lens that is used to produce an enlarged image; "the magnifying glass was invented by Roger Bacon in 1250" -03485198 06 n 02 hand_glass 1 hand_mirror 0 001 @ 03773035 n 0000 | a mirror intended to be held in the hand -03485309 06 n 01 hand_grenade 0 001 @ 03458271 n 0000 | a grenade designed to be thrown by hand -03485407 06 n 02 hand-held_computer 0 hand-held_microcomputer 0 001 @ 03985232 n 0000 | a portable battery-powered computer small enough to be carried in your pocket -03485575 06 n 01 handhold 0 001 @ 02728763 n 0000 | an appendage to hold onto -03485655 06 n 04 handicraft 0 handcraft 0 handiwork 0 handwork 0 002 @ 04599396 n 0000 + 01659007 v 0201 | a work produced by hand labor -03485794 06 n 04 handkerchief 0 hankie 0 hanky 0 hankey 0 003 @ 03932670 n 0000 ~ 02786198 n 0000 ~ 03973520 n 0000 | a square piece of cloth used for wiping the eyes or nose or as a costume accessory -03485997 06 n 04 handle 0 grip 1 handgrip 0 hold 0 046 @ 02728763 n 0000 #p 03265032 n 0000 #p 03489162 n 0000 #p 04507155 n 0000 #p 02774630 n 0000 #p 03153375 n 0000 #p 02908217 n 0000 #p 02900705 n 0000 #p 03483086 n 0000 #p 03484083 n 0000 #p 02799175 n 0000 #p 03132076 n 0000 #p 04039381 n 0000 #p 03633091 n 0000 #p 04138977 n 0000 #p 03400231 n 0000 #p 04270147 n 0000 #p 02967407 n 0000 #p 03012499 n 0000 #p 03063689 n 0000 #p 03063073 n 0000 #p 04397452 n 0000 #p 03797390 n 0000 #p 04560292 n 0000 #p 02970534 n 0000 #p 03325088 n 0000 #p 03487090 n 0000 #p 03488438 n 0000 #p 02748183 n 0000 + 01224001 v 0201 + 01210737 v 0101 ~ 02764398 n 0000 ~ 02907082 n 0000 ~ 03134496 n 0000 ~ 03474896 n 0000 ~ 03520654 n 0000 ~ 03524745 n 0000 ~ 03626014 n 0000 ~ 03785142 n 0000 ~ 03882960 n 0000 ~ 03980178 n 0000 ~ 03980332 n 0000 ~ 04050313 n 0000 %p 04184095 n 0000 ~ 04321804 n 0000 ~ 04322026 n 0000 | the appendage to an object that is designed to be held in order to use or move it; "he grabbed the hammer by the handle"; "it was an old briefcase but it still had a good grip" -03487090 06 n 01 handlebar 0 003 @ 02788689 n 0000 #p 02834778 n 0000 %p 03485997 n 0000 | the shaped bar used to steer a bicycle -03487222 06 n 02 handline 0 hand_line 0 001 @ 03351768 n 0000 | a fishing line managed principally by hand -03487331 06 n 01 handloom 0 003 @ 03689157 n 0000 ~ 03519848 n 0000 ~ 03694356 n 0000 | a loom powered by hand -03487444 06 n 01 hand_lotion 0 001 @ 03690938 n 0000 | lotion used to soften the hands -03487533 06 n 01 hand_luggage 0 001 @ 02774630 n 0000 | luggage that is light enough to be carried by hand -03487642 06 n 01 hand-me-down 0 002 @ 03419014 n 0000 + 01639720 a 0101 | outgrown garment passed down from one person to another -03487774 06 n 01 hand_mower 0 002 @ 03649909 n 0000 ! 03995856 n 0101 | a lawn mower that is operated by hand -03487886 06 n 01 hand_pump 0 001 @ 04021798 n 0000 | a pump worked by hand -03487963 06 n 03 hand_puppet 0 glove_puppet 0 glove_doll 0 001 @ 04025130 n 0000 | a puppet with a cloth body and hollow head; fits over the hand -03488111 06 n 01 handrest 0 001 @ 04359589 n 0000 | a support for the hand -03488188 06 n 03 handsaw 0 hand_saw 0 carpenter's_saw 0 008 @ 04140064 n 0000 ~ 02770585 n 0000 ~ 03080904 n 0000 ~ 03104019 n 0000 ~ 03136504 n 0000 ~ 03614887 n 0000 ~ 04016576 n 0000 ~ 04094608 n 0000 | a saw used with one hand for cutting wood -03488438 06 n 02 handset 0 French_telephone 0 002 @ 04401088 n 0000 %p 03485997 n 0000 | telephone set with the mouthpiece and earpiece mounted on a single handle -03488603 06 n 01 hand_shovel 0 006 @ 04208210 n 0000 @ 03489162 n 0000 ~ 03056493 n 0000 ~ 03291413 n 0000 ~ 04266486 n 0000 ~ 04289964 n 0000 | a shovel that is operated by hand -03488784 06 n 01 handspike 0 001 @ 02788689 n 0000 | a metal bar (or length of pipe) used as a lever -03488887 06 n 02 handstamp 0 rubber_stamp 0 002 @ 04159058 n 0000 + 01273632 v 0102 | a stamp (usually made of rubber) for imprinting a mark or design by hand -03489048 06 n 01 hand_throttle 0 001 @ 03659292 n 0000 | a hand-operated lever that controls the throttle valve -03489162 06 n 01 hand_tool 0 043 @ 04451818 n 0000 ~ 02763714 n 0000 ~ 02833403 n 0000 ~ 02861509 n 0000 ~ 02861658 n 0000 ~ 03127024 n 0000 ~ 03190458 n 0000 ~ 03336839 n 0000 ~ 03364599 n 0000 ~ 03455355 n 0000 ~ 03471685 n 0000 ~ 03481172 n 0000 %p 03485997 n 0000 ~ 03488603 n 0000 ~ 03722646 n 0000 ~ 03774327 n 0000 ~ 03848348 n 0000 ~ 03879456 n 0000 ~ 03919289 n 0000 ~ 03929443 n 0000 ~ 03941684 n 0000 ~ 03946076 n 0000 ~ 03950359 n 0000 ~ 03954731 n 0000 ~ 03966976 n 0000 ~ 03968886 n 0000 ~ 03970156 n 0000 ~ 04056599 n 0000 ~ 04134170 n 0000 ~ 04140064 n 0000 ~ 04150980 n 0000 ~ 04154565 n 0000 ~ 04208210 n 0000 ~ 04258859 n 0000 ~ 04269944 n 0000 ~ 04287986 n 0000 ~ 04291242 n 0000 ~ 04331443 n 0000 ~ 04441093 n 0000 ~ 04489817 n 0000 ~ 04570416 n 0000 ~ 04595611 n 0000 ~ 04606574 n 0000 | a tool used with workers' hands -03490006 06 n 02 hand_towel 0 face_towel 0 001 @ 04459362 n 0000 | a small towel used to dry the hands or face -03490119 06 n 02 hand_truck 0 truck 1 001 @ 03484083 n 0000 | a handcart that has a frame with two low wheels and a ledge at the bottom and handles at the top; used to move crates or other heavy objects -03490324 06 n 02 handwear 0 hand_wear 0 003 @ 03051540 n 0000 ~ 03441112 n 0000 ~ 03796974 n 0000 | clothing for the hands -03490449 06 n 01 handwheel 0 004 @ 03096960 n 0000 #p 04519153 n 0000 #p 03646296 n 0000 ~ 04313503 n 0000 | control consisting of a wheel whose rim serves as the handle by which a part is operated -03490649 06 n 01 handwheel 1 004 @ 04574999 n 0000 #p 04302200 n 0000 #p 04519153 n 0000 #p 03646296 n 0000 | a wheel worked by hand -03490784 06 n 01 hangar_queen 0 001 @ 02691156 n 0000 | an airplane with a bad maintenance record -03490884 06 n 01 hanger 0 004 @ 04359589 n 0000 + 01481360 v 0101 ~ 03057920 n 0000 ~ 04333709 n 0000 | anything from which something can be hung -03491032 06 n 01 hang_glider 0 001 @ 03439814 n 0000 | a glider resembling a large kite; the rider hangs from it while descending from a height -03491178 06 n 02 hanging 0 wall_hanging 0 008 @ 03169390 n 0000 + 01677716 v 0101 + 01482075 v 0101 + 01481360 v 0101 ~ 03225616 n 0000 ~ 03607358 n 0000 ~ 03635108 n 0000 ~ 04393404 n 0000 | decoration that is hung (as a tapestry) on a wall or over a window; "the cold castle walls were covered with hangings" -03491491 06 n 01 Hanging_Gardens_of_Babylon 0 003 @i 03417345 n 0000 #p 08916832 n 0000 #m 04178329 n 0000 | a terraced garden at Babylon watered by pumps from the Euphrates; construction attributed to Nebuchadnezzar around 600 BC -03491724 06 n 05 hangman's_rope 0 hangman's_halter 0 halter 2 hemp 0 hempen_necktie 0 004 @ 04108268 n 0000 #p 03412906 n 0000 + 02485631 v 0301 %p 03829563 n 0000 | a rope that is used by a hangman to execute persons who have been condemned to death by hanging -03491988 06 n 01 hank 0 002 @ 03065424 n 0000 ~ 04226464 n 0000 | a coil of rope or wool or yarn -03492087 06 n 02 hansom 0 hansom_cab 0 001 @ 02968473 n 0000 | a two-wheeled horse-drawn covered carriage with the driver's seat above and behind the passengers -03492250 06 n 02 harbor 0 harbour 0 003 @ 04071102 n 0000 + 02656189 v 0202 + 02656189 v 0101 | a place of refuge and comfort and security -03492391 06 n 02 hardback 0 hardcover 0 003 @ 02870092 n 0000 + 00200258 a 0204 + 00200258 a 0102 | a book with cardboard or cloth or leather covers -03492542 06 n 03 hard_disc 0 hard_disk 0 fixed_disk 0 003 @ 03706653 n 0000 #p 03209666 n 0000 ~ 04075468 n 0000 | a rigid magnetic disk mounted permanently in a drive unit -03492717 06 n 01 hard_drug 0 005 @ 03808564 n 0000 @ 03097890 n 0000 ! 04256993 n 0101 ~ 03060294 n 0000 ~ 03516011 n 0000 | a narcotic that is considered relatively strong and likely to cause addiction -03492922 06 n 03 hard_hat 0 tin_hat 0 safety_hat 0 001 @ 03513137 n 0000 | a lightweight protective helmet (plastic or metal) worn by construction workers -03493079 06 n 01 hard_shoulder 0 002 @ 04206948 n 0000 ;r 08860123 n 0000 | a paved strip beside a motorway (for stopping in emergencies) -03493219 06 n 01 hardtop 0 001 @ 02958343 n 0000 | a car that resembles a convertible but has a fixed rigid top -03493333 06 n 02 hardware 1 computer_hardware 0 009 @ 03081021 n 0000 #p 03082979 n 0000 ;c 06128570 n 0000 ! 06566077 n 0101 ~ 02995345 n 0000 ~ 03744276 n 0000 ~ 04145417 n 0000 ~ 04173344 n 0000 ~ 04513686 n 0000 | (computer science) the mechanical, magnetic, electronic, and electrical components making up a computer system -03493664 06 n 01 hardware 2 002 @ 04566257 n 0000 ;c 08199025 n 0000 | major items of military weaponry (as tanks or missile) -03493792 06 n 02 hardware 3 ironware 0 001 @ 03575240 n 0000 | instrumentalities (tools or implements) made of metal -03493911 06 n 03 hardware_store 0 ironmonger 0 ironmonger's_shop 0 001 @ 04202417 n 0000 | a store selling hardware; "in Great Britain they used to call a hardware store an ironmonger's shop" -03494105 06 n 04 harem 0 hareem 0 seraglio 0 serail 0 001 @ 03679384 n 0000 | living quarters reserved for wives and concubines and female relatives in a Muslim household -03494278 06 n 04 harmonica 0 mouth_organ 0 harp 2 mouth_harp 0 003 @ 03393324 n 0000 + 10160770 n 0301 + 01732713 v 0301 | a small rectangular free-reed instrument having a row of free reeds set back in air holes and played by blowing into the desired hole -03494537 06 n 03 harmonium 0 organ 2 reed_organ 0 002 @ 03393324 n 0000 + 10382825 n 0201 | a free-reed instrument in which air is forced through the reeds by bellows -03494706 06 n 01 harness 0 009 @ 04295081 n 0000 + 02442737 v 0101 + 01491697 v 0101 %p 02900160 n 0000 %p 03031756 n 0000 %p 03480719 n 0000 %p 03503718 n 0000 %p 03723885 n 0000 %p 04462407 n 0000 | stable gear consisting of an arrangement of leather straps fitted to a draft animal so that it can be attached to and pull a cart -03495039 06 n 01 harness 1 002 @ 04359589 n 0000 #p 03888257 n 0000 | a support consisting of an arrangement of straps for holding something to the body (especially one supporting a person suspended from a parachute) -03495258 06 n 01 harp 0 005 @ 03025886 n 0000 + 10160770 n 0101 + 01732713 v 0101 ~ 02682407 n 0000 ~ 03699280 n 0000 | a chordophone that has a triangular frame consisting of a sounding board and a pillar and a curved neck; the strings stretched between the neck and the soundbox are plucked with the fingers -03495570 06 n 01 harp 1 001 @ 04359589 n 0000 | a pair of curved vertical supports for a lampshade -03495671 06 n 01 harpoon 0 006 @ 04271148 n 0000 #m 03351434 n 0000 + 10160913 n 0102 + 01140515 v 0101 %p 03369767 n 0000 %p 03496042 n 0000 | a spear with a shaft and barbed point for throwing; used for catching large fish or whales; a strong line is attached to it -03495941 06 n 01 harpoon_gun 0 001 @ 02950256 n 0000 | a cannon or similar gun that fires harpoons -03496042 06 n 01 harpoon_line 0 002 @ 04108268 n 0000 #p 03495671 n 0000 | a strong rope for making the catch fast to the harpooner's boat -03496183 06 n 01 harpoon_log 0 001 @ 03686658 n 0000 | a cylindrical log with a device that registers distance -03496296 06 n 02 harpsichord 0 cembalo 0 004 @ 03039015 n 0000 + 10161047 n 0101 ~ 04278247 n 0000 ~ 04537436 n 0000 | a clavier with strings that are plucked by plectra mounted on pivots -03496486 06 n 01 Harris_Tweed 0 002 @ 04502502 n 0000 ;u 06851742 n 0000 | a loosely woven tweed made in the Outer Hebrides -03496612 06 n 01 harrow 0 003 @ 03146846 n 0000 + 01742415 v 0101 ~ 03210245 n 0000 | a cultivator that pulverizes or smooths the soil -03496749 06 n 02 Harvard_University 0 Harvard 0 003 @i 04511002 n 0000 #p 09096664 n 0000 #m 08232706 n 0000 | a university in Massachusetts -03496892 06 n 02 harvester 0 reaper 0 006 @ 03322940 n 0000 + 01320009 v 0201 + 01320009 v 0102 ~ 02840361 n 0000 ~ 03075634 n 0000 ~ 03502777 n 0000 | farm machine that gathers a food crop from the fields -03497100 06 n 01 hash_house 0 001 @ 04081281 n 0000 | an inexpensive restaurant -03497182 06 n 04 hashish 0 hasheesh 0 haschisch 0 hash 0 002 @ 04256993 n 0000 #p 12397431 n 0000 | purified resinous extract of the hemp plant; used as a hallucinogen -03497352 06 n 01 hasp 0 002 @ 02982599 n 0000 + 01348599 v 0101 | a fastener for a door or lid; a hinged metal plate is fitted over a staple and is locked with a pin or padlock -03497531 06 n 01 hassock 0 002 @ 03151500 n 0000 ;c 01032368 n 0000 | a cushion for kneeling on (as when praying in church) -03497657 06 n 03 hat 0 chapeau 0 lid 1 029 @ 03502509 n 0000 + 10162354 n 0102 + 02363128 v 0101 + 00047172 v 0101 ~ 02817516 n 0000 ~ 02859184 n 0000 ~ 02869837 n 0000 ~ 02881757 n 0000 %p 02902079 n 0000 ~ 02945964 n 0000 ~ 02987379 n 0000 ~ 03061050 n 0000 ~ 03124170 n 0000 %p 03138534 n 0000 ~ 03170872 n 0000 ~ 03237416 n 0000 ~ 03256631 n 0000 ~ 03325941 n 0000 ~ 03404360 n 0000 %p 03498316 n 0000 ~ 03766322 n 0000 ~ 04208582 n 0000 ~ 04248507 n 0000 ~ 04259630 n 0000 ~ 04264361 n 0000 ~ 04356595 n 0000 ~ 04441528 n 0000 ~ 04456011 n 0000 ~ 04505888 n 0000 | headdress that protects the head from bad weather; has shaped crown and usually a brim -03498316 06 n 01 hatband 0 002 @ 02784732 n 0000 #p 03497657 n 0000 | a band around the crown of a hat just above the brim -03498441 06 n 01 hatbox 0 001 @ 02774630 n 0000 | a round piece of luggage for carrying hats -03498536 06 n 01 hatch 0 003 @ 03795580 n 0000 #p 03499142 n 0000 ~ 02965024 n 0000 | a movable barrier covering a hatchway -03498662 06 n 02 hatchback 0 hatchback_door 0 001 @ 02963821 n 0000 | a sloping rear car door that is lifted to open -03498781 06 n 01 hatchback 1 001 @ 02958343 n 0000 | a car having a hatchback door -03498866 06 n 02 hatchel 0 heckle 0 001 @ 03075097 n 0000 | a comb for separating flax fibers -03498962 06 n 01 hatchet 0 004 @ 02764044 n 0000 ~ 02904109 n 0000 ~ 03039156 n 0000 ~ 03477773 n 0000 | a small ax with a short handle used with one hand (usually to chop wood) -03499142 06 n 03 hatchway 0 opening 1 scuttle 1 004 @ 03290771 n 0000 + 02744651 v 0201 ~ 03295928 n 0000 %p 03498536 n 0000 | an entrance equipped with a hatch; especially a passageway between decks of a ship -03499354 06 n 01 hatpin 0 001 @ 03940256 n 0000 | a long sturdy pin used by women to secure a hat to their hair -03499468 06 n 02 hauberk 0 byrnie 0 001 @ 03000247 n 0000 | a long (usually sleeveless) tunic of chain mail formerly worn as defensive armor -03499611 06 n 01 havelock 0 001 @ 03050026 n 0000 | a cloth covering for a service cap with a flap extending over the back of the neck to protect the neck from direct rays of the sun -03499796 06 n 02 haven 0 oasis 0 001 @ 04191595 n 0000 | a shelter serving as a place of safety or sanctuary -03499907 06 n 02 Hawaiian_guitar 0 steel_guitar 0 001 @ 03467517 n 0000 | guitar whose steel strings are twanged while being pressed with a movable steel bar for a glissando effect -03500090 06 n 03 hawse 0 hawsehole 0 hawsepipe 0 001 @ 03526198 n 0000 | the hole that an anchor rope passes through -03500209 06 n 01 hawser 0 001 @ 04108268 n 0000 | large heavy rope for nautical use -03500295 06 n 01 hawser_bend 0 001 @ 03627232 n 0000 | a knot uniting the ends of two lines -03500389 06 n 01 hay_bale 0 001 @ 02778456 n 0000 | a bale of hay -03500457 06 n 01 hayfork 0 001 @ 03384167 n 0000 | a long-handled fork for turning or lifting hay -03500557 06 n 03 hayloft 0 haymow 0 mow 0 003 @ 03686130 n 0000 #p 02793495 n 0000 + 01319562 v 0301 | a loft in a barn where hay is stored -03500699 06 n 02 haymaker 0 hay_conditioner 0 001 @ 03322940 n 0000 | a farm machine that treats hay to cause more rapid and even drying -03500838 06 n 02 hayrack 0 hayrig 0 001 @ 03391770 n 0000 | a frame attached to a wagon to increase the amount of hay it can carry -03500971 06 n 01 hayrack 1 001 @ 04038727 n 0000 | a rack that holds hay for feeding livestock -03501068 06 n 01 haywire 0 001 @ 04594218 n 0000 | wire for tying up bales of hay -03501152 06 n 01 hazard 0 004 @ 03839795 n 0000 #p 03446528 n 0000 ~ 02920369 n 0000 ~ 04559994 n 0000 | an obstacle on a golf course -03501288 06 n 01 head 0 006 @ 04008947 n 0000 #p 03804744 n 0000 #p 04153751 n 0000 #p 03940256 n 0000 #p 02865665 n 0000 ~ 03942920 n 0000 | a projection out from one end; "the head of the nail", "a pinhead is the head of a pin" -03501520 06 n 01 head 2 001 @ 04446276 n 0000 | (nautical) a toilet on board a boat or ship -03501614 06 n 01 head 3 006 @ 04337740 n 0000 #p 03481172 n 0000 #p 04050410 n 0000 %p 03313873 n 0000 ~ 03446268 n 0000 ~ 03482128 n 0000 | the striking part of a tool; "the head of the hammer" -03501811 06 n 01 head 4 004 @ 03840507 n 0000 #p 13388245 n 0000 ;u 06295235 n 0000 ! 04384199 n 0101 | (usually plural) the obverse side of a coin that usually bears the representation of a person's head; "call heads or tails!" -03502042 06 n 01 headband 0 002 @ 02784218 n 0000 ~ 04383696 n 0000 | a band worn around or over the head; "the earphones were held in place by a headband" -03502200 06 n 01 headboard 0 002 @ 03882058 n 0000 #p 02822579 n 0000 | a vertical board or panel forming the head of a bedstead -03502331 06 n 02 head_covering 0 veil 0 005 @ 03419014 n 0000 + 01483247 v 0201 ~ 02998841 n 0000 ~ 03314884 n 0000 ~ 04612159 n 0000 | a garment that covers the head and face -03502509 06 n 02 headdress 0 headgear 0 011 @ 03051540 n 0000 ~ 02954340 n 0000 ~ 03497657 n 0000 ~ 03513137 n 0000 ~ 03531281 n 0000 ~ 03597317 n 0000 ~ 03607186 n 0000 ~ 03773970 n 0000 ~ 04455048 n 0000 ~ 04498389 n 0000 ~ 04585318 n 0000 | clothing for the head -03502777 06 n 01 header 0 001 @ 03496892 n 0000 | a machine that cuts the heads off grain and moves them into a wagon -03502897 06 n 01 header 1 001 @ 02815950 n 0000 | a framing member crossing and supporting the ends of joists, studs, or rafters so as to transfer their weight to parallel joists, studs, or rafters -03503097 06 n 03 header 2 coping 0 cope 0 002 @ 02897820 n 0000 #p 04546855 n 0000 | brick that is laid sideways at the top of a wall -03503233 06 n 02 header 3 lintel 0 001 @ 02815950 n 0000 | horizontal beam used as a finishing piece over a door or window -03503358 06 n 01 headfast 0 001 @ 03784475 n 0000 | a mooring line that secures the bow of a boat or ship to a wharf -03503477 06 n 01 head_gasket 0 001 @ 03423719 n 0000 | a gasket to seal a cylinder head -03503567 06 n 01 head_gate 0 001 @ 03427296 n 0000 | a gate upstream from a lock or canal that is used to control the flow of water at the upper end -03503718 06 n 01 headgear 1 004 @ 04295081 n 0000 #p 03494706 n 0000 ~ 02900160 n 0000 ~ 03480719 n 0000 | stable gear consisting of any part of a harness that fits about the horse's head -03503908 06 n 01 headgear 2 001 @ 03525074 n 0000 | the hoist at the pithead of a mine -03503997 06 n 02 headlight 0 headlamp 0 004 @ 03665366 n 0000 #p 03270165 n 0000 ~ 03375329 n 0000 %p 03395859 n 0000 | a powerful light with reflector; attached to the front of an automobile or locomotive -03504205 06 n 01 headpiece 0 001 @ 03513137 n 0000 | a protective helmet for the head -03504293 06 n 02 headpin 0 kingpin 1 001 @ 02882647 n 0000 | the front bowling pin in the triangular arrangement of ten pins -03504420 06 n 03 headquarters 0 HQ 0 military_headquarters 0 005 @ 03763133 n 0000 ;c 08199025 n 0000 ;u 06295235 n 0000 ~ 03076104 n 0000 ~ 03464757 n 0000 | the military installation from which a commander performs the functions of command; "the general's headquarters were a couple of large tents" -03504723 06 n 05 headquarters 1 central_office 0 main_office 0 home_office 0 home_base 0 003 @ 03841666 n 0000 ;u 06295235 n 0000 ~ 03797703 n 0000 | (usually plural) the office that serves as the administrative center of an enterprise; "many companies have their headquarters in New York" -03505015 06 n 01 headrace 0 001 @ 04559275 n 0000 | a waterway that feeds water to a mill or water wheel or turbine -03505133 06 n 01 headrest 0 001 @ 04081044 n 0000 | a rest for the head -03505207 06 n 02 headrest 1 head_restraint 0 002 @ 03151500 n 0000 #p 02970685 n 0000 | a cushion attached to the top of the back of an automobile's seat to prevent whiplash -03505383 06 n 01 headsail 0 002 @ 04127904 n 0000 ~ 04278447 n 0000 | any sail set forward of the foremast of a vessel -03505504 06 n 01 headscarf 0 004 @ 03610992 n 0000 ~ 02766168 n 0000 ~ 03520493 n 0000 ~ 03615655 n 0000 | a kerchief worn over the head and tied under the chin -03505667 06 n 01 headset 0 001 @ 04402580 n 0000 | receiver consisting of a pair of headphones -03505764 06 n 01 head_shop 0 001 @ 04202417 n 0000 | a shop specializing in articles of interest to drug users; "he bought some roach clips and hashish pipes at the head shop" -03505942 06 n 01 headshot 0 001 @ 03925226 n 0000 | a photograph of a person's head -03506028 06 n 02 headstall 0 headpiece 1 002 @ 02784218 n 0000 #p 02900160 n 0000 | the band that is the part of a bridle that fits around a horse's head -03506184 06 n 01 headstock 0 001 @ 04359589 n 0000 | the stationary support in a machine or power tool that supports and drives a revolving part (as a chuck or the spindle on a lathe) -03506370 06 n 03 health_spa 0 spa 1 health_club 0 002 @ 03953020 n 0000 ~ 03324814 n 0000 | a place of business with equipment and facilities for exercising and improving physical fitness -03506560 06 n 02 hearing_aid 0 ear_trumpet 0 001 @ 02676261 n 0000 | a conical acoustic device formerly used to direct sound to the ear of a hearing-impaired person -03506727 06 n 02 hearing_aid 1 deaf-aid 0 001 @ 03277771 n 0000 | an electronic device that amplifies sound and is worn to compensate for poor hearing -03506880 06 n 01 hearse 0 001 @ 03791235 n 0000 | a vehicle for carrying a coffin to a church or a cemetery; formerly drawn by horses but now usually a motor vehicle -03507048 06 n 01 heart 0 002 @ 03963982 n 0000 #m 03713556 n 0000 | a playing card in the major suit that has one or more red hearts on it; "he led the queen of hearts"; "hearts were trumps" -03507241 06 n 02 hearth 0 fireside 0 003 @ 03259505 n 0000 #p 03346455 n 0000 ;u 07108453 n 0000 | home symbolized as a part of the fireplace; "driven from hearth and home"; "fighting in defense of their firesides" -03507458 06 n 01 hearthrug 0 001 @ 04118021 n 0000 | a rug spread out in front of a fireplace -03507554 06 n 01 hearthstone 0 002 @ 04326084 n 0000 #p 03346455 n 0000 | a stone that forms a hearth -03507658 06 n 01 heart-lung_machine 0 001 @ 04021798 n 0000 | a pump to maintain circulation during heart surgery; diverts blood from the heart and oxygenates it and then pumps it through the body -03507857 06 n 01 heart_valve 0 001 @ 03563710 n 0000 | an implant that replaces a natural cardiac valve -03507963 06 n 01 heat_engine 0 003 @ 03287733 n 0000 ~ 03307573 n 0000 ~ 03579982 n 0000 | any engine that makes use of heat to do work -03508101 06 n 02 heater 0 warmer 0 016 @ 03183080 n 0000 + 00372958 v 0201 + 02333358 v 0101 + 00371264 v 0101 ~ 02893418 n 0000 ~ 03099147 n 0000 ~ 03172211 n 0000 ~ 03174605 n 0000 ~ 03423479 n 0000 ~ 03508881 n 0000 ~ 03843883 n 0000 ~ 04041069 n 0000 ~ 04258333 n 0000 ~ 04265275 n 0000 ~ 04330267 n 0000 ~ 04560113 n 0000 | device that heats water or supplies warmth to a room -03508485 06 n 01 heat_exchanger 0 001 @ 03183080 n 0000 | device that transfers heat from one liquid to another without allowing them to mix -03508628 06 n 01 heating_element 0 007 @ 03081021 n 0000 #p 03272239 n 0000 #p 03273740 n 0000 #p 03425595 n 0000 ~ 02790012 n 0000 ~ 02923331 n 0000 ~ 03562408 n 0000 | the component of a heater or range that transforms fuel or electricity into heat -03508881 06 n 02 heating_pad 0 hot_pad 1 001 @ 03508101 n 0000 | heater consisting of electrical heating elements contained in a flexible pad -03509025 06 n 04 heating_system 0 heating_plant 0 heating 0 heat 0 011 @ 04516874 n 0000 #p 02913152 n 0000 + 00372665 v 0401 + 02333358 v 0401 + 02333358 v 0301 %p 02863750 n 0000 ~ 02995151 n 0000 ~ 03423387 n 0000 ~ 03882430 n 0000 %p 04041069 n 0000 ~ 04309682 n 0000 | utility to warm a building; "the heating system wasn't working"; "they have radiant heating" -03509394 06 n 02 heat_lamp 0 infrared_lamp 0 001 @ 03272239 n 0000 | electric heater consisting of a high-power incandescent lamp that emits infrared radiation; "the bathroom could be warmed by an infrared lamp" -03509608 06 n 01 heat_pump 0 001 @ 02727825 n 0000 | apparatus that extracts heat from a liquid that is at a higher temperature than its surroundings; can be used to transfer heat from a reservoir outside in order to heat a building -03509843 06 n 01 heat-seeking_missile 0 003 @ 03773504 n 0000 ~ 02901901 n 0000 ~ 04320405 n 0000 | a missile with a guidance system that directs it toward targets emitting infrared radiation (as the emissions of a jet engine) -03510072 06 n 01 heat_shield 0 003 @ 04014297 n 0000 #p 04264914 n 0000 %p 03831537 n 0000 | a protective covering that protects a spacecraft from overheating on reentry -03510244 06 n 01 heat_sink 0 002 @ 03088707 n 0000 @ 13555915 n 0000 | a metal conductor specially designed to conduct (and radiate) heat -03510384 06 n 01 heaume 0 001 @ 03513376 n 0000 | a large medieval helmet supported on the shoulders -03510487 06 n 01 heaver 0 001 @ 02788689 n 0000 | a bar used as a lever (as in twisting rope) -03510583 06 n 01 heavier-than-air_craft 0 008 @ 02686568 n 0000 ~ 02691156 n 0000 ~ 02759387 n 0000 ~ 03245889 n 0000 ~ 03439814 n 0000 ~ 03512147 n 0000 ~ 03857156 n 0000 ~ 04552348 n 0000 | a non-buoyant aircraft that requires a source of power to hold it aloft and to propel it -03510866 06 n 02 heckelphone 0 basset_oboe 0 001 @ 03838899 n 0000 | an oboe pitched an octave below the ordinary oboe -03510987 06 n 02 hectograph 0 heliotype 0 003 @ 03257586 n 0000 @ 06679726 n 0000 + 01694850 v 0101 | duplicator consisting of a gelatin plate from which ink can be taken to make a copy -03511175 06 n 02 hedge 0 hedgerow 0 003 @ 03327234 n 0000 ~ 04006330 n 0000 ~ 04586072 n 0000 | a fence formed by a row of closely planted shrubs or bushes -03511333 06 n 01 hedge_trimmer 0 001 @ 03418242 n 0000 | a garden tool for trimming hedges -03511426 06 n 01 heel 0 012 @ 08511241 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 + 01751545 v 0101 + 01992114 v 0101 ~ 03144262 n 0000 ~ 03394816 n 0000 %p 03664374 n 0000 ~ 04276808 n 0000 ~ 04295475 n 0000 ~ 04569983 n 0000 ~ 04592243 n 0000 | the bottom of a shoe or boot; the back part of a shoe or boot that touches the ground and provides elevation -03511786 06 n 01 heel 2 004 @ 03892891 n 0000 #p 03446268 n 0000 ;c 00464894 n 0000 + 01403987 v 0101 | (golf) the part of the clubhead where it joins the shaft -03511949 06 n 01 heel 3 001 @ 08566028 n 0000 | the lower end of a ship's mast -03512030 06 n 02 helicon 0 bombardon 1 001 @ 02804252 n 0000 | a tuba that coils over the shoulder of the musician -03512147 06 n 04 helicopter 0 chopper 1 whirlybird 0 eggbeater 1 008 @ 03510583 n 0000 %p 02848523 n 0000 ~ 02965122 n 0000 %p 03639230 n 0000 %p 04111668 n 0000 ~ 04212467 n 0000 ~ 04223066 n 0000 ~ 04232543 n 0000 | an aircraft without wings that obtains its lift from the rotation of overhead blades -03512452 06 n 01 heliograph 0 002 @ 02727825 n 0000 + 01040400 v 0101 | an apparatus for sending telegraphic messages by using a mirror to turn the sun's rays off and on -03512624 06 n 01 heliometer 0 001 @ 03733925 n 0000 | an instrument used to measure the angular separation of two stars that are too far apart to be included in the field of view of an ordinary telescope -03512830 06 n 01 heliport 0 001 @ 02692232 n 0000 | an airport for helicopters -03512911 06 n 01 helm 0 006 @ 04313220 n 0000 #p 03790230 n 0000 #p 04128837 n 0000 #p 04194289 n 0000 #p 04495843 n 0000 ~ 04575723 n 0000 | steering mechanism for a vessel; a mechanical device by which a vessel is steered -03513137 06 n 01 helmet 0 008 @ 03502509 n 0000 ~ 02811350 n 0000 %p 02818254 n 0000 ~ 03127747 n 0000 ~ 03379051 n 0000 ~ 03492922 n 0000 ~ 03504205 n 0000 ~ 04265428 n 0000 | a protective headgear made of hard material to resist blows -03513376 06 n 01 helmet 1 010 @ 02740764 n 0000 #p 02862048 n 0000 ~ 02738741 n 0000 ~ 02801823 n 0000 ~ 02978205 n 0000 ~ 03510384 n 0000 ~ 03785721 n 0000 ~ 03929855 n 0000 ~ 04130907 n 0000 %p 04538878 n 0000 | armor plate that protects the head -03513627 06 n 01 hem 0 003 @ 03264542 n 0000 #p 03309808 n 0000 + 01329732 v 0101 | the edge of a piece of cloth; especially the finished edge that has been doubled under and stitched down; "the hem of her dress was stained"; "let down the hem"; "he stitched weights into the curtain's hem"; "it seeped along the hem of his jacket" -03513961 06 n 02 hematinic 0 haematinic 0 001 @ 03740161 n 0000 | a medicine that increases the hemoglobin content of the blood; used to treat iron-deficiency anemia -03514129 06 n 02 hematocrit 0 haematocrit 0 002 @ 03733925 n 0000 @ 02995998 n 0000 | a measuring instrument to determine (usually by centrifugation) the relative amounts of corpuscles and plasma in the blood -03514340 06 n 01 hemming-stitch 0 001 @ 04180314 n 0000 | a stitch used in sewing hems on skirts and dresses -03514451 06 n 02 hemostat 0 haemostat 0 001 @ 04364545 n 0000 | a surgical instrument that stops bleeding by clamping the blood vessel -03514588 06 n 01 hemstitch 0 002 @ 03282933 n 0000 + 01331518 v 0101 | embroidery similar to drawnwork -03514693 06 n 02 hemstitch 1 hemstitching 0 003 @ 04180314 n 0000 + 01331518 v 0201 + 01331518 v 0101 | a stitch in which parallel threads are drawn and exposed threads are caught together in groups -03514894 06 n 01 henroost 0 001 @ 04107984 n 0000 | a roost for hens at night -03514974 06 n 03 heparin 0 Lipo-Hepin 0 Liquaemin 0 002 @ 14994004 n 0000 @ 02718259 n 0000 | a polysaccharide produced in basophils (especially in the lung and liver) and that inhibits the activity of thrombin in coagulation of the blood; it (trade names Lipo-Hepin and Liquaemin) is used as an anticoagulant in the treatment of thrombosis and in heart surgery -03515338 06 n 01 heraldry 0 004 @ 03282591 n 0000 -c 02713992 n 0000 ~ 03008565 n 0000 ~ 03058726 n 0000 | emblem indicating the right of a person to bear arms -03515500 06 n 01 herbal_medicine 0 001 @ 03740161 n 0000 | a medicine made from plants and used to prevent or treat disease or promote health -03515644 06 n 01 herb_garden 0 001 @ 03417345 n 0000 | a garden for growing herbs -03515728 06 n 01 herm 0 001 @ 04306847 n 0000 | a statue consisting of a squared stone pillar with a carved head (usually a bearded Hermes) on top; used in ancient Greece as a boundary marker or signpost -03515934 06 n 01 hermitage 0 001 @ 03259505 n 0000 | the abode of a hermit -03516011 06 n 02 heroin 0 diacetylmorphine 0 003 @ 03850746 n 0000 @ 03492717 n 0000 ~ 02837416 n 0000 | a narcotic that is considered a hard drug; a highly addictive morphine derivative; intravenous injection provides the fastest and most intense rush -03516266 06 n 01 herringbone 0 001 @ 03309808 n 0000 | a twilled fabric with a herringbone pattern -03516367 06 n 02 herringbone 1 herringbone_pattern 0 001 @ 03178782 n 0000 | a pattern of columns of short parallel lines with all the lines in one column sloping one way and lines in adjacent columns sloping the other way; it is used in weaving, masonry, parquetry, embroidery -03516647 06 n 02 Herschelian_telescope 0 off-axis_reflector 0 001 @ 04068601 n 0000 | a reflecting telescope with the mirror slightly tilted to throw the image to the side where it can be viewed -03516844 06 n 05 Hessian_boot 0 hessian 0 jackboot 0 Wellington 0 Wellington_boot 0 001 @ 02872752 n 0000 | (19th century) a man's high tasseled boot -03516996 06 n 03 heterodyne_receiver 0 superheterodyne_receiver 0 superhet 0 002 @ 04043733 n 0000 %p 03681813 n 0000 | a radio receiver that combines a locally generated frequency with the carrier frequency to produce a supersonic signal that is demodulated and amplified -03517271 06 n 01 hexachlorophene 0 001 @ 02716205 n 0000 | antibacterial substance that is a water-soluble powder used in antiseptic soaps and toothpaste -03517427 06 n 01 hex_nut 0 001 @ 03836191 n 0000 | a nut with a hexagonal shape -03517509 06 n 01 hibachi 0 002 @ 02893418 n 0000 + 00327010 v 0101 | a portable brazier that burns charcoal and has a grill for cooking -03517647 06 n 02 hideaway 0 retreat 0 002 @ 02735688 n 0000 + 02092476 v 0201 | an area where you can be alone -03517760 06 n 02 hi-fi 0 high_fidelity_sound_system 0 001 @ 04077430 n 0000 | equipment for the reproduction of sound with high fidelity -03517899 06 n 01 high_altar 0 001 @ 02699494 n 0000 | the main altar in a church -03517982 06 n 01 high-angle_gun 0 002 @ 02950256 n 0000 ~ 03786715 n 0000 | a cannon that can be fired at a high elevation for relatively short ranges -03518135 06 n 01 highball_glass 0 001 @ 03438257 n 0000 | a tall glass for serving highballs -03518230 06 n 01 highboard 0 001 @ 03216080 n 0000 | a high diving board -03518305 06 n 02 highboy 0 tallboy 0 001 @ 03015254 n 0000 | a tall chest of drawers divided into two sections and supported on four legs -03518445 06 n 02 highchair 0 feeding_chair 0 002 @ 03001627 n 0000 %p 04119892 n 0000 | a chair for feeding a very young child; has four long legs and a footrest and a detachable tray -03518631 06 n 02 high_gear 0 high 0 003 @ 03431243 n 0000 #p 02958343 n 0000 ~ 03863783 n 0000 | a forward gear with a gear ratio that gives the greatest vehicle velocity for a given engine speed -03518829 06 n 02 high-hat_cymbal 0 high_hat 1 001 @ 03157348 n 0000 | cymbals that are operated by a foot pedal -03518943 06 n 01 highlighter 0 002 @ 03722007 n 0000 + 00514069 v 0102 | a fluorescent marker used to mark important passages in a text -03519081 06 n 01 highlighter 1 003 @ 03113152 n 0000 + 00514069 v 0102 + 00041206 v 0101 | a cosmetic used to highlight the eyes or cheekbones -03519226 06 n 01 high-pass_filter 0 001 @ 03340009 n 0000 | a filter that passes frequencies above a certain value and attenuates frequencies below that value -03519387 06 n 02 high-rise 0 tower_block 0 001 @ 04460130 n 0000 | tower consisting of a multistoried building of offices or apartments; "`tower block' is the British term for `high-rise'" -03519578 06 n 02 highroad 0 trunk_road 0 002 @ 03519981 n 0000 ;r 08860123 n 0000 | a highway -03519674 06 n 01 high_table 0 002 @ 03201208 n 0000 #p 03200539 n 0000 | a dining table in a dining-hall raised on a platform; seats are reserved for distinguished persons -03519848 06 n 01 high-warp_loom 0 001 @ 03487331 n 0000 | a handloom in which the warp is carried vertically; for weaving tapestry -03519981 06 n 02 highway 0 main_road 0 011 @ 04096066 n 0000 ~i 02729060 n 0000 ~ 02744323 n 0000 ~ 02828648 n 0000 ~ 03215508 n 0000 ~ 03306610 n 0000 ~i 03356670 n 0000 ~ 03519578 n 0000 %p 03577818 n 0000 ~ 03581354 n 0000 %p 04466386 n 0000 | a major road for any form of motor transport -03520275 06 n 01 highway_system 0 001 @ 04473432 n 0000 | a transportation system consisting of roads for motor transport -03520399 06 n 01 high_wire 0 001 @ 04434780 n 0000 | a tightrope very high above the ground -03520493 06 n 01 hijab 0 001 @ 03505504 n 0000 | a headscarf worn by Muslim women; conceals the hair and neck and usually has a face veil that covers the face -03520654 06 n 01 hilt 0 005 @ 03485997 n 0000 #p 04373894 n 0000 #p 03158885 n 0000 ~ 02802886 n 0000 %p 03626272 n 0000 | the handle of a sword or dagger -03520811 06 n 08 hindrance 0 hinderance 0 hitch 2 preventive 3 preventative 3 encumbrance 0 incumbrance 0 interference 0 005 @ 03839993 n 0000 + 01763813 a 0401 + 02451370 v 0102 ~ 03047553 n 0000 ~ 04273659 n 0000 | any obstruction that impedes or is burdensome -03521076 06 n 02 hinge 0 flexible_joint 0 012 @ 03600977 n 0000 #p 03307274 n 0000 #p 04371979 n 0000 #p 03394649 n 0000 #p 02836513 n 0000 #p 02963821 n 0000 #p 03427296 n 0000 + 01297174 v 0101 ~ 02928299 n 0000 %p 03944024 n 0000 ~ 04333869 n 0000 ~ 04399846 n 0000 | a joint that holds two parts together so that one can swing relative to the other -03521431 06 n 02 hinging_post 0 swinging_post 0 001 @ 03428349 n 0000 | the gatepost on which the gate is hung -03521544 06 n 02 hip_boot 0 thigh_boot 0 002 @ 02872752 n 0000 ~ 04542715 n 0000 | a very high boot; used especially for fishing -03521675 06 n 02 hipflask 0 pocket_flask 0 001 @ 03359566 n 0000 | a flask that holds spirits -03521771 06 n 01 hip_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn by football and hockey players -03521899 06 n 01 hip_pocket 0 002 @ 03972524 n 0000 #p 04489008 n 0000 | a pocket in rear of trousers -03522003 06 n 01 hippodrome 0 001 @ 04295881 n 0000 | a stadium for horse shows or horse races -03522100 06 n 02 hip_roof 0 hipped_roof 0 002 @ 04105068 n 0000 %p 13890679 n 0000 | a roof having sloping ends as well as sloping sides -03522239 06 n 01 histamine_blocker 0 004 @ 03740161 n 0000 ~ 03031553 n 0000 ~ 03319858 n 0000 ~ 04053995 n 0000 | a medicine used to treat the gastric effects of histamine in cases of peptic ulcers and gastritis and gastroesophageal reflux; works by blocking the effects of histamine on the receptor site known as H2 -03522559 06 n 01 hit 0 001 @ 03225238 n 0000 | a dose of a narcotic drug -03522634 06 n 01 hitch 0 006 @ 03627232 n 0000 ~ 02847728 n 0000 ~ 02985828 n 0000 ~ 04102962 n 0000 ~ 04189092 n 0000 ~ 04436401 n 0000 | a knot that can be undone by pulling against the strain that holds it; a temporary knot -03522863 06 n 01 hitch 1 002 @ 03091374 n 0000 + 01614774 v 0101 | a connection between a vehicle and the load that it pulls -03522990 06 n 01 hitching_post 0 001 @ 03988170 n 0000 | a fixed post with a ring to which a horse can be hitched to prevent it from straying -03523134 06 n 02 hitchrack 0 hitching_bar 0 001 @ 04046590 n 0000 | a fixed horizontal rail to which a horse can be hitched to prevent it from straying -03523288 06 n 01 hob 0 001 @ 04190052 n 0000 | a shelf beside an open fire where something can be kept warm -03523398 06 n 01 hob 1 002 @ 03265032 n 0000 + 01403447 v 0101 | a hard steel edge tool used to cut gears -03523506 06 n 01 hobble_skirt 0 001 @ 04230808 n 0000 | a long skirt very narrow below the knees, worn between 1910 and 1914 -03523633 06 n 03 hobby 0 hobbyhorse 0 rocking_horse 0 002 @ 03964744 n 0000 %p 04098513 n 0000 | a child's plaything consisting of an imitation horse mounted on rockers; the child straddles it and pretends to ride -03523849 06 n 01 hobnail 0 002 @ 03804744 n 0000 + 02332788 v 0101 | a short nail with a thick head; used to protect the soles of boots -03523987 06 n 01 hockey_skate 0 001 @ 03558404 n 0000 | an ice skate worn for playing hockey; has a short blade and a strong boot to protect the feet and ankles -03524150 06 n 01 hockey_stick 0 001 @ 04318131 n 0000 | sports implement consisting of a stick used by hockey players to move the puck -03524287 06 n 01 hod 0 001 @ 02883344 n 0000 | an open box attached to a long pole handle; bricks or mortar are carried on the shoulder -03524425 06 n 01 hodoscope 0 002 @ 04147495 n 0000 ;c 06090869 n 0000 | (physics) scientific instrument that traces the path of a charged particle -03524574 06 n 01 hoe 0 004 @ 04451818 n 0000 + 01742556 v 0101 %p 03524745 n 0000 ~ 04156591 n 0000 | a tool with a flat blade attached at right angles to a long handle -03524745 06 n 01 hoe_handle 0 002 @ 03485997 n 0000 #p 03524574 n 0000 | the handle of a hoe -03524840 06 n 01 hogan 0 001 @ 03685307 n 0000 | a Navajo lodge covered with earth; traditionally built with the entrance facing east -03524976 06 n 01 hogshead 0 001 @ 02795169 n 0000 | a large cask especially one holding 63 gals -03525074 06 n 01 hoist 0 005 @ 03664675 n 0000 + 01455184 v 0101 ~ 02853745 n 0000 ~ 03503908 n 0000 ~ 04575824 n 0000 | lifting device for raising heavy or cumbersome objects -03525252 06 n 02 hold 1 keep 1 003 @ 02991302 n 0000 + 01302019 v 0201 + 01301410 v 0103 | a cell in a jail or prison -03525372 06 n 01 hold 3 002 @ 04340935 n 0000 ;u 07073447 n 0000 | a stronghold -03525454 06 n 01 holder 0 007 @ 03525827 n 0000 + 01217043 v 0101 ~ 02948557 n 0000 ~ 03031152 n 0000 ~ 03613873 n 0000 ~ 03905730 n 0000 ~ 04614244 n 0000 | a holding device; "a towel holder"; "a cigarette holder"; "an umbrella holder" -03525693 06 n 01 holding_cell 0 001 @ 03592245 n 0000 | a jail in a courthouse where accused persons can be confined during a trial -03525827 06 n 01 holding_device 0 009 @ 03183080 n 0000 ~ 03027250 n 0000 ~ 03036866 n 0000 ~ 03525454 n 0000 ~ 03594277 n 0000 ~ 03644532 n 0000 ~ 04019881 n 0000 ~ 04276050 n 0000 ~ 04538552 n 0000 | a device for holding something -03526062 06 n 03 holding_pen 0 holding_paddock 0 holding_yard 0 001 @ 03907227 n 0000 | a pen where livestock is temporarily confined -03526198 06 n 01 hole 0 029 @ 03848729 n 0000 + 01282023 v 0101 ~ 02689556 n 0000 ~ 02738978 n 0000 ~ 02919976 n 0000 ~ 02928930 n 0000 ~ 03118051 n 0000 ~ 03148130 n 0000 ~ 03261157 n 0000 ~ 03308297 n 0000 ~ 03308853 n 0000 ~ 03341707 n 0000 ~ 03341850 n 0000 ~ 03500090 n 0000 ~ 03614782 n 0000 ~ 03689443 n 0000 ~ 03694949 n 0000 ~ 03717447 n 0000 ~ 03787308 n 0000 ~ 03794540 n 0000 ~ 03805634 n 0000 ~ 03905208 n 0000 ~ 03915900 n 0000 ~ 03968581 n 0000 ~ 03989553 n 0000 ~ 04024396 n 0000 ~ 04262010 n 0000 ~ 04431158 n 0000 ~ 04526241 n 0000 | an opening deliberately made in or through something -03526805 06 n 02 hole 1 golf_hole 0 004 @ 15256915 n 0000 #p 03446528 n 0000 + 01408153 v 0101 ~ 03218100 n 0000 | one playing period (from tee to green) on a golf course; "he played 18 holes" -03527000 06 n 01 hole_card 0 002 @ 03963982 n 0000 ;c 00498220 n 0000 | (poker) a playing card dealt face down and not revealed until the showdown -03527149 06 n 02 hollowware 0 holloware 0 001 @ 04221424 n 0000 | silverware serving dishes -03527243 06 n 02 hologram 0 holograph 0 001 @ 03925226 n 0000 | the intermediate photograph (or photographic record) that contains information for reproducing a three-dimensional image by holography -03527444 06 n 01 holster 0 002 @ 04187061 n 0000 ~ 04207763 n 0000 | a sheath (usually leather) for carrying a handgun -03527565 06 n 01 holster 1 001 @ 02827606 n 0000 | a belt with loops or slots for carrying small hand tools -03527675 06 n 02 holy_of_holies 0 sanctum_sanctorum 0 003 @ 04133648 n 0000 #p 04378651 n 0000 ;c 06232880 n 0000 | (Judaism) sanctuary comprised of the innermost chamber of the Tabernacle in the temple of Solomon where the Ark of the Covenant was kept -03527930 06 n 02 Holy_Sepulcher 0 Holy_Sepulchre 0 002 @i 02921884 n 0000 #p 08794798 n 0000 | the sepulcher in which Christ's body lay between burial and resurrection -03528100 06 n 03 home 1 nursing_home 0 rest_home 0 002 @ 03574555 n 0000 + 02459633 v 0101 | an institution where people are cared for; "a home for the elderly" -03528263 06 n 02 home_appliance 0 household_appliance 0 008 @ 02729837 n 0000 ~ 03150511 n 0000 ~ 03584829 n 0000 ~ 03620052 n 0000 ~ 04179913 n 0000 ~ 04488857 n 0000 ~ 04517823 n 0000 ~ 04580493 n 0000 | an appliance that does a particular job in the home -03528523 06 n 01 home_computer 0 001 @ 03082979 n 0000 | a computer intended for use in the home -03528622 06 n 01 home_court 0 002 @ 02802544 n 0000 ;c 00480993 n 0000 | (basketball) the court where the host team plays its home games -03528761 06 n 01 home-farm 0 002 @ 03322099 n 0000 ;r 08860123 n 0000 | a farm that supplies the needs of a large estate of establishment -03528901 06 n 04 home_plate 0 home_base 1 home 2 plate 4 002 @ 02797881 n 0000 ;c 00471613 n 0000 | (baseball) base consisting of a rubber slab where the batter stands; it must be touched by a base runner in order to score; "he ruled that the runner failed to touch home" -03529175 06 n 02 home_room 0 homeroom 0 001 @ 03038685 n 0000 | a classroom in which all students in a particular grade (or in a division of a grade) meet at certain times under the supervision of a teacher who takes attendance and does other administrative business -03529444 06 n 01 homespun 0 004 @ 03309808 n 0000 + 02240795 a 0101 + 00674913 a 0101 ~ 04121342 n 0000 | a rough loosely woven fabric originally made with yarn that was spun at home -03529629 06 n 01 homestead 0 001 @ 03259505 n 0000 | dwelling that is usually a farmhouse and adjoining land -03529740 06 n 01 homestretch 0 001 @ 04336645 n 0000 | the straight stretch of a racetrack leading to the finish line -03529860 06 n 02 home_theater 0 home_theatre 0 001 @ 04417809 n 0000 | television and video equipment designed to reproduce in the home the experience of being in a movie theater -03530041 06 n 01 homing_device 0 002 @ 03738472 n 0000 #p 03466162 n 0000 | the mechanism in a guided missile that guides it toward its objective -03530189 06 n 01 homing_torpedo 0 001 @ 04456472 n 0000 | a torpedo that is guided to its target (as by the sound of a ship's engines) -03530326 06 n 01 homolosine_projection 0 001 @ 03293471 n 0000 | an equal-area projection map of the globe; oceans are distorted in order to minimize the distortion of the continents -03530511 06 n 01 hone 0 002 @ 04577426 n 0000 + 01247181 v 0101 | a whetstone made of fine gritstone; used for sharpening razors -03530642 06 n 01 honeycomb 0 003 @ 03391770 n 0000 + 00533773 v 0101 + 01752162 v 0101 | a framework of hexagonal cells resembling the honeycomb built by bees -03530803 06 n 02 honkytonk 0 dive 1 001 @ 02931417 n 0000 | a cheap disreputable nightclub or dance hall -03530910 06 n 04 hood 0 bonnet 1 cowl 0 cowling 0 006 @ 04014297 n 0000 #p 02958343 n 0000 #p 02691156 n 0000 + 01337224 v 0401 + 01337224 v 0301 %p 03532187 n 0000 | protective covering consisting of a metal part that covers the engine; "there are powerful engines under the hoods of new cars"; "the mechanic removed the cowling in order to repair the plane's engine" -03531281 06 n 01 hood 2 005 @ 03502509 n 0000 + 01337092 v 0101 ~ 02938095 n 0000 ~ 02941845 n 0000 ~ 03124474 n 0000 | a headdress that protects the head and face -03531447 06 n 01 hood 3 002 @ 04105438 n 0000 ~ 02937958 n 0000 | the folding roof of a carriage -03531546 06 n 02 hood 4 exhaust_hood 0 002 @ 03122748 n 0000 ~ 04053677 n 0000 | metal covering leading to a vent that exhausts smoke or fumes -03531691 06 n 01 hood 5 002 @ 03122748 n 0000 ;c 05635448 n 0000 | (falconry) a leather covering for a hawk's head -03531808 06 n 02 hood 6 lens_hood 0 003 @ 02755244 n 0000 #p 02942699 n 0000 #p 04404997 n 0000 | a tubular attachment used to keep stray light out of the lens of a camera -03531982 06 n 01 hood_latch 0 001 @ 02982599 n 0000 | a catch that holds the hood of a car shut -03532080 06 n 01 hoodoo 2 002 @ 00002684 n 0000 + 02726717 v 0101 | something believed to bring bad luck -03532187 06 n 01 hood_ornament 0 002 @ 03169390 n 0000 #p 03530910 n 0000 | an ornament on the front of the hood of a car emblematic of the manufacturer -03532342 06 n 01 hook 0 013 @ 03563967 n 0000 + 01365709 v 0101 + 01672490 v 0102 %p 02790322 n 0000 ~ 02859343 n 0000 ~ 02929184 n 0000 ~ 03138128 n 0000 ~ 03148518 n 0000 ~ 03351151 n 0000 ~ 03410022 n 0000 ~ 03436990 n 0000 ~ 03736147 n 0000 ~ 04232437 n 0000 | a curved or bent implement for suspending or pulling something -03532672 06 n 02 hook 1 claw 0 007 @ 03736970 n 0000 #p 03057920 n 0000 #p 03454211 n 0000 + 01365549 v 0101 ~ 02709367 n 0000 ~ 03992208 n 0000 ~ 04411966 n 0000 | a mechanical device that is curved or bent to suspend or hold or pull something -03532919 06 n 01 hook 3 002 @ 02982599 n 0000 + 01365549 v 0101 | a catch for locking a door -03533014 06 n 0b hookah 0 narghile 0 nargileh 0 sheesha 0 shisha 0 chicha 0 calean 0 kalian 0 water_pipe 0 hubble-bubble 0 hubbly-bubbly 0 001 @ 03945167 n 0000 | an oriental tobacco pipe with a long flexible tube connected to a container where the smoke is cooled by passing through water; "a bipolar world with the hookah and Turkish coffee versus hamburgers and Coca Cola" -03533392 06 n 01 hook_and_eye 0 001 @ 03323703 n 0000 | a kind of fastener used on clothing -03533486 06 n 02 hookup 0 assemblage 0 003 @ 04377057 n 0000 + 01656788 v 0201 + 01366426 v 0101 | a system of components assembled together for a particular purpose -03533654 06 n 01 hookup 1 002 @ 03091374 n 0000 + 01366426 v 0101 | a device providing a connection between a power source and a user; "some campsites have electrical hookups for trailers" -03533845 06 n 02 hook_wrench 0 hook_spanner 0 001 @ 04606574 n 0000 | a wrench with a hook that fits over a nut or bolt head -03533972 06 n 02 hoop 0 ring 2 014 @ 02784218 n 0000 #p 04543772 n 0000 #p 02795169 n 0000 + 01303123 v 0101 ~ 02960690 n 0000 ~ 03068862 n 0000 ~ 03151401 n 0000 ~ 03615037 n 0000 ~ 03807780 n 0000 ~ 03832008 n 0000 ~ 04092305 n 0000 ~ 04092447 n 0000 ~ 04440749 n 0000 ~ 04460038 n 0000 | a rigid circular band of metal or wood or other material used for holding or fastening or hanging or pulling; "there was still a rusty iron hoop for tying a horse" -03534429 06 n 01 hoop 1 004 @ 04226537 n 0000 #p 03534580 n 0000 ~ 03323319 n 0000 ~ 03883278 n 0000 | a light curved skeleton to spread out a skirt -03534580 06 n 02 hoopskirt 0 crinoline 2 002 @ 04230808 n 0000 %p 03534429 n 0000 | a skirt stiffened with hoops -03534695 06 n 02 hoosegow 0 hoosgow 0 001 @ 03592245 n 0000 | slang for a jail -03534776 06 n 01 Hoover 0 003 @ 04517823 n 0000 ;u 06851742 n 0000 + 01244853 v 0103 | a kind of vacuum cleaner -03534890 06 n 01 Hoover_Dam 0 002 @i 03160309 n 0000 #p 09110422 n 0000 | a large dam built in 1933 on the Colorado River in Nevada -03535024 06 n 02 hope_chest 0 wedding_chest 0 001 @ 03014705 n 0000 | chest for storage of clothing (trousseau) and household goods in anticipation of marriage -03535186 06 n 02 hop_garden 0 hop_field 0 001 @ 03417345 n 0000 | a garden where hops are grown -03535284 06 n 01 hopper 0 002 @ 04060904 n 0000 + 01966861 v 0101 | funnel-shaped receptacle; contents pass by gravity into a receptacle below -03535429 06 n 02 hop-picker 0 hopper 2 001 @ 03699975 n 0000 | a machine used for picking hops -03535526 06 n 01 hop_pole 0 001 @ 03988170 n 0000 | a tall pole to support the wires on which the hop plant is trained -03535647 06 n 02 hopsacking 0 hopsack 0 001 @ 03309808 n 0000 | a loosely woven coarse fabric of cotton or linen; used in clothing -03535780 06 n 02 horizontal_bar 0 high_bar 0 002 @ 03472232 n 0000 %p 02790154 n 0000 | gymnastic apparatus consisting of a bar supported in a horizontal position by uprights at both ends -03535970 06 n 01 horizontal_section 0 001 @ 03737912 n 0000 | a mechanical drawing of an object as if made by a plane cutting through it horizontally -03536122 06 n 03 horizontal_stabilizer 0 horizontal_stabiliser 0 tailplane 0 002 @ 02688443 n 0000 #p 03536568 n 0000 | the horizontal airfoil of an aircraft's tail assembly that is fixed and to which the elevator is hinged -03536348 06 n 02 horizontal_surface 0 level 3 005 @ 04362025 n 0000 + 01661804 v 0201 ~ 03365592 n 0000 ~ 03900509 n 0000 ~ 03961939 n 0000 | a flat surface at right angles to a plumb line; "park the car on the level" -03536568 06 n 01 horizontal_tail 0 004 @ 04294426 n 0000 #p 04384016 n 0000 %p 03281524 n 0000 %p 03536122 n 0000 | the horizontal stabilizer and elevator in the tail assembly of an aircraft -03536761 06 n 01 horn 3 005 @ 02694426 n 0000 ~ 02689748 n 0000 ~ 03375171 n 0000 ~ 03622058 n 0000 ~ 04201064 n 0000 | an alarm device that makes a loud warning sound -03536931 06 n 02 horn 4 saddle_horn 0 002 @ 03980178 n 0000 #p 04325041 n 0000 | a high pommel of a Western saddle (usually metal covered with leather) -03537085 06 n 01 horn 6 002 @ 03827536 n 0000 ;c 00455599 n 0000 | a noisemaker (as at parties or games) that makes a loud noise when you blow through it -03537241 06 n 01 horn 7 001 @ 03183080 n 0000 | a device having the shape of a horn; "horns at the ends of a new moon"; "the hornof an anvil"; "the cleat had two horns" -03537412 06 n 01 horn_button 0 002 @ 04027023 n 0000 #p 02761834 n 0000 | a button that you press to activate the horn of an automobile -03537550 06 n 03 hornpipe 0 pibgorn 0 stockhorn 0 002 @ 04222847 n 0000 ;u 07073447 n 0000 | an ancient (now obsolete) single-reed woodwind; usually made of bone -03537714 06 n 01 horoscope 0 001 @ 03186399 n 0000 | a diagram of the positions of the planets and signs of the zodiac at a particular time and place -03537866 06 n 01 horror 0 001 @ 04424418 n 0000 | something that inspires dislike; something horrible; "the painting that others found so beautiful was a horror to him" -03538037 06 n 02 horse 3 gymnastic_horse 0 003 @ 03472232 n 0000 ~ 03980478 n 0000 ~ 04524142 n 0000 | a padded gymnastic apparatus on legs -03538179 06 n 01 horsebox 0 001 @ 03100490 n 0000 | a conveyance (railroad car or trailer) for transporting racehorses -03538300 06 n 01 horsecar 0 001 @ 04335435 n 0000 | an early form of streetcar that was drawn by horses -03538406 06 n 02 horse_cart 0 horse-cart 0 002 @ 02970849 n 0000 ~ 03235979 n 0000 | heavy cart; drawn by a horse; used for farm work -03538542 06 n 01 horsecloth 0 001 @ 02955540 n 0000 | a cloth for the trapping of a horse -03538634 06 n 01 horse-drawn_vehicle 0 005 @ 04576211 n 0000 ~ 02968473 n 0000 ~ 03009269 n 0000 ~ 03669245 n 0000 ~ 04353573 n 0000 | a wheeled vehicle drawn by one or more horses -03538817 06 n 01 horsehair 0 001 @ 03309808 n 0000 | a fabric made from fibers taken from the mane or tail of horses; used for upholstery -03538957 06 n 01 horsehair_wig 0 001 @ 04584207 n 0000 | a wig made of horsehair; "the English judiciary wear their traditional horsehair wigs" -03539103 06 n 01 horseless_carriage 0 001 @ 02958343 n 0000 | an early term for an automobile; "when automobiles first replaced horse-drawn carriages they were called horseless carriages" -03539293 06 n 02 horse_pistol 0 horse-pistol 0 001 @ 03948459 n 0000 | a large pistol (usually in a holster) formerly carried by horsemen -03539433 06 n 02 horseshoe 0 shoe 1 001 @ 03959701 n 0000 | U-shaped plate nailed to underside of horse's hoof -03539546 06 n 01 horseshoe 1 001 @ 03414162 n 0000 | game equipment consisting of an open ring of iron used in playing horseshoes -03539678 06 n 01 horse-trail 0 001 @ 04466613 n 0000 | a trail for horses -03539754 06 n 01 horsewhip 0 003 @ 04577769 n 0000 + 01398772 v 0101 ~ 02912673 n 0000 | a whip for controlling horses -03539875 06 n 02 hose 1 hosepipe 0 007 @ 04493505 n 0000 + 00228521 v 0101 ~ 02690270 n 0000 ~ 03346004 n 0000 ~ 03417871 n 0000 ~ 04041408 n 0000 ~ 04557872 n 0000 | a flexible pipe for conveying a liquid or gas -03540090 06 n 01 hose 2 001 @ 03419014 n 0000 | man's close-fitting garment of the 16th and 17th centuries covering the legs and reaching up to the waist; worn with a doublet -03540267 06 n 02 hosiery 0 hose 0 005 @ 03381126 n 0000 ;r 08860123 n 0000 ~ 04254777 n 0000 ~ 04323819 n 0000 ~ 04434932 n 0000 | socks and stockings and tights collectively (the British include underwear) -03540476 06 n 01 hospice 0 001 @ 03546340 n 0000 | a lodging for travelers (especially one kept by a monastic order) -03540595 06 n 02 hospital 0 infirmary 0 012 @ 03739518 n 0000 + 02348927 v 0101 %p 02922996 n 0000 %p 03043274 n 0000 ~ 03129471 n 0000 %p 03541091 n 0000 ~ 03650803 n 0000 ~ 03730334 n 0000 ~ 03746574 n 0000 ~ 03762982 n 0000 ~ 04133497 n 0000 %p 04549919 n 0000 | a health facility where patients receive treatment -03540914 06 n 01 hospital_bed 0 002 @ 04222210 n 0000 %p 03654826 n 0000 | a single bed with a frame in three sections so the head or middle or foot can be raised as required -03541091 06 n 01 hospital_room 0 005 @ 04105893 n 0000 #p 03540595 n 0000 ~ 03283221 n 0000 ~ 03850245 n 0000 ~ 04064862 n 0000 | a room in a hospital for the care of patients -03541269 06 n 01 hospital_ship 0 001 @ 04194289 n 0000 | a ship built to serve as a hospital; used for wounded in wartime -03541393 06 n 01 hospital_train 0 002 @ 04468005 n 0000 ;c 08199025 n 0000 | a military train built to transport wounded troops to a hospital -03541537 06 n 03 hostel 0 youth_hostel 0 student_lodging 0 001 @ 03546340 n 0000 | inexpensive supervised lodging (especially for youths on bicycling trips) -03541696 06 n 05 hostel 1 hostelry 0 inn 0 lodge 1 auberge 0 006 @ 03542333 n 0000 + 02652494 v 0401 ~ 02961035 n 0000 ~ 03561573 n 0000 ~ 03989898 n 0000 ~ 04097085 n 0000 | a hotel providing overnight lodging for travelers -03541923 06 n 01 hot-air_balloon 0 001 @ 02782093 n 0000 | balloon for travel through the air in a basket suspended below a large bag of heated air -03542073 06 n 01 hotbed 0 001 @ 02819474 n 0000 | a bed of earth covered with glass and heated by rotting manure to promote the growth of plants -03542220 06 n 01 hotbox 0 001 @ 03602686 n 0000 | a journal bearing (as of a railroad car) that has overheated -03542333 06 n 01 hotel 0 009 @ 02913152 n 0000 ~ 03362223 n 0000 ~ 03541696 n 0000 %p 03542860 n 0000 ~ 03790755 n 0000 ~ 04080705 n 0000 ~ 04095109 n 0000 ~ 04229737 n 0000 ~ 08640531 n 0000 | a building where travelers can pay for lodging and meals and other services -03542605 06 n 02 hotel-casino 0 casino-hotel 0 001 @ 02913152 n 0000 | a building that houses both a hotel and a casino -03542727 06 n 02 hotel-casino 2 casino-hotel 2 001 @ 03953020 n 0000 | a business establishment that combines a casino and a hotel -03542860 06 n 01 hotel_room 0 004 @ 02821627 n 0000 #p 03542333 n 0000 ~ 02680638 n 0000 ~ 03091223 n 0000 | a bedroom (usually with bath) in a hotel -03543012 06 n 01 hot_line 0 001 @ 04402057 n 0000 | a direct telephone line between two officials -03543112 06 n 01 hot_pants 0 002 @ 04205318 n 0000 ;u 06295235 n 0000 | skin-tight very short pants worn by young women as an outer garment -03543254 06 n 02 hot_plate 0 hotplate 0 001 @ 03620052 n 0000 | a portable electric appliance for heating or cooking or keeping food warm -03543394 06 n 02 hot_rod 0 hot-rod 0 001 @ 02958343 n 0000 | a car modified to increase its speed and acceleration -03543511 06 n 02 hot_spot 0 hotspot 0 001 @ 04286128 n 0000 | a lively entertainment spot -03543603 06 n 01 hot_tub 0 001 @ 02808440 n 0000 | a very large tub (large enough for more than one bather) filled with hot water -03543735 06 n 02 hot-water_bottle 0 hot-water_bag 0 001 @ 04060904 n 0000 | a stoppered receptacle (usually made of rubber) that is to be filled with hot water and used for warming a bed or parts of the body -03543945 06 n 05 houndstooth_check 0 hound's-tooth_check 0 dogstooth_check 0 dogs-tooth_check 0 dog's-tooth_check 0 001 @ 03011162 n 0000 | textile with a pattern of small broken or jagged checks -03544143 06 n 01 hourglass 0 001 @ 04134632 n 0000 | a sandglass that runs for sixty minutes -03544238 06 n 02 hour_hand 0 little_hand 0 001 @ 03482523 n 0000 | the shorter hand of a clock that points to the hours -03544360 06 n 01 house 0 034 @ 03259505 n 0000 @ 02913152 n 0000 + 02459173 v 0101 ~ 02814338 n 0000 ~ 02857477 n 0000 ~ 02919792 n 0000 ~ 02932400 n 0000 ~ 03002816 n 0000 ~ 03007297 n 0000 ~ 03118969 n 0000 ~ 03180865 n 0000 ~ 03219483 n 0000 ~ 03257210 n 0000 ~ 03322836 n 0000 ~ 03428090 n 0000 ~ 03465605 n 0000 ~ 03474352 n 0000 %p 03660909 n 0000 ~ 03685486 n 0000 ~ 03685820 n 0000 %p 03686130 n 0000 ~ 03713151 n 0000 ~ 03719053 n 0000 %p 03984381 n 0000 ~ 04052658 n 0000 ~ 04079244 n 0000 ~ 04115256 n 0000 ~ 04125541 n 0000 ~ 04131368 n 0000 ~ 04255899 n 0000 ~ 04258438 n 0000 %p 04345028 n 0000 ~ 04465050 n 0000 ~ 04535524 n 0000 | a dwelling that serves as living quarters for one or more families; "he has a house on Cape Cod"; "she felt she had to get out of the house" -03545150 06 n 01 house 1 011 @ 02913152 n 0000 + 02459173 v 0101 ~ 02806875 n 0000 ~ 03121298 n 0000 ~ 03333610 n 0000 ~ 03557512 n 0000 ~ 03736269 n 0000 ~ 03837698 n 0000 ~ 04022708 n 0000 ~ 04246731 n 0000 ~ 04304812 n 0000 | a building in which something is sheltered or located; "they had a large carriage house" -03545470 06 n 01 houseboat 0 001 @ 02792552 n 0000 | a barge that is designed and equipped for use as a dwelling -03545585 06 n 01 houselights 0 003 @ 03665366 n 0000 #m 04418644 n 0000 ;u 06295235 n 0000 | lights that illuminate the audience's part of a theater or other auditorium -03545756 06 n 04 house_of_cards 0 cardhouse 0 card-house 0 cardcastle 0 001 @ 04341686 n 0000 | an unstable construction with playing cards; "he built three levels of his cardcastle before it collapsed" -03545961 06 n 01 house_of_correction 0 001 @ 03592245 n 0000 | (formerly) a jail or other place of detention for persons convicted of minor offences -03546112 06 n 02 house_paint 0 housepaint 0 001 @ 03875218 n 0000 | paint used to cover the exterior woodwork of a house -03546235 06 n 01 housetop 0 001 @ 04105068 n 0000 | the roof of a house; "shout it from the housetops" -03546340 06 n 03 housing 0 lodging 0 living_accommodations 0 017 @ 04341686 n 0000 + 02459173 v 0101 ~ 02726305 n 0000 ~ 02839200 n 0000 ~ 02853016 n 0000 ~ 02945161 n 0000 ~ 03088389 n 0000 ~ 03259505 n 0000 ~ 03540476 n 0000 ~ 03541537 n 0000 ~ 03679384 n 0000 ~ 03776460 n 0000 ~ 03933391 n 0000 ~ 04031884 n 0000 ~ 04056491 n 0000 ~ 04192238 n 0000 ~ 04465203 n 0000 | structures collectively in which people are housed -03546766 06 n 01 housing 1 010 @ 04014297 n 0000 + 02701828 v 0101 ~ 02841187 n 0000 ~ 02933340 n 0000 ~ 03127203 n 0000 ~ 03213715 n 0000 ~ 03602790 n 0000 ~ 03637027 n 0000 ~ 04045255 n 0000 ~ 04190747 n 0000 | a protective cover designed to contain or support a mechanical component -03547054 06 n 05 hovel 0 hut 0 hutch 1 shack 0 shanty 0 004 @ 04191595 n 0000 + 02650552 v 0402 ~ 03560430 n 0000 ~ 03796848 n 0000 | small crude shelter used as a dwelling -03547229 06 n 02 hovercraft 0 ground-effect_machine 0 001 @ 03125870 n 0000 | a craft capable of moving over water or land on a cushion of air created by jet engines -03547397 06 n 02 howdah 0 houdah 0 001 @ 04161358 n 0000 | a (usually canopied) seat for riding on the back of a camel or elephant -03547530 06 n 02 huarache 0 huaraches 0 001 @ 04133789 n 0000 | a sandal with flat heels and an upper of woven leather straps -03547658 06 n 01 hub 0 004 @ 03892891 n 0000 #p 02974003 n 0000 #p 03271574 n 0000 #p 04011827 n 0000 | the central part of a car wheel (or fan or propeller etc) through which the shaft or axle passes -03547861 06 n 02 hub-and-spoke 0 hub-and-spoke_system 0 001 @ 02693709 n 0000 | a system of air transportation in which local airports offer air transportation to a central airport where long-distance flights are available -03548086 06 n 01 hubcap 0 002 @ 02955065 n 0000 #p 02974003 n 0000 | cap that fits over the hub of a wheel -03548195 06 n 02 huck 0 huckaback 0 001 @ 04459610 n 0000 | toweling consisting of coarse absorbent cotton or linen fabric -03548320 06 n 01 hug-me-tight 0 001 @ 03589791 n 0000 | a woman's fitted jacket -03548402 06 n 01 hula-hoop 0 001 @ 03964744 n 0000 | plaything consisting of a tubular plastic hoop for swinging around the hips -03548533 06 n 01 hulk 0 001 @ 04194289 n 0000 | a ship that has been wrecked and abandoned -03548626 06 n 01 hull 0 006 @ 04341686 n 0000 #p 04530566 n 0000 %p 03609542 n 0000 %p 03609959 n 0000 %p 04087126 n 0000 %p 04088982 n 0000 | the frame or body of ship -03548797 06 n 01 Humber_Bridge 0 002 @i 04366367 n 0000 #p 08877208 n 0000 | a suspension bridge at Hull, England; 4,626 feet long -03548930 06 n 02 humeral_veil 0 veil 1 002 @ 04532106 n 0000 + 01483247 v 0201 | a vestment worn by a priest at High Mass in the Roman Catholic Church; a silk shawl -03549097 06 n 01 humming_top 0 001 @ 04454240 n 0000 | a top that makes a humming noise as it spins -03549199 06 n 02 Humvee 0 Hum-Vee 0 002 @ 03764276 n 0000 ;u 06851742 n 0000 | a high mobility, multipurpose, military vehicle with four-wheel drive -03549350 06 n 02 hunter 0 hunting_watch 0 001 @ 04555897 n 0000 | a watch with a hinged metal lid to protect the crystal -03549473 06 n 01 hunting_knife 0 001 @ 03623556 n 0000 | a large sharp knife with a handle shaped to fit the grip -03549589 06 n 01 hurdle 0 002 @ 02796623 n 0000 + 01967205 v 0101 | a light movable barrier that competitors must leap over in certain races -03549732 06 n 04 hurricane_deck 0 hurricane_roof 0 promenade_deck 0 awning_deck 0 002 @ 03167666 n 0000 #p 03896103 n 0000 | a deck at the top of a passenger ship -03549897 06 n 05 hurricane_lamp 0 hurricane_lantern 0 tornado_lantern 0 storm_lantern 0 storm_lamp 0 001 @ 03636248 n 0000 | an oil lamp with a glass chimney and perforated metal lid to protect the flame from high winds; candlestick with a glass chimney -03550153 06 n 03 hut 1 army_hut 0 field_hut 0 003 @ 04191595 n 0000 ;c 08199025 n 0000 ~ 03826186 n 0000 | temporary military shelter -03550289 06 n 01 hutch 0 002 @ 02936714 n 0000 ~ 04037220 n 0000 | a cage (usually made of wood and wire mesh) for small animals -03550420 06 n 01 hutment 0 002 @ 02944826 n 0000 ;c 08199025 n 0000 | an encampment of huts (chiefly military) -03550533 06 n 01 hydantoin 0 002 @ 02718469 n 0000 ~ 03203441 n 0000 | any of a group of anticonvulsant drugs used in treating epilepsy -03550671 06 n 02 hydralazine 0 Apresoline 0 002 @ 02721160 n 0000 @ 04522904 n 0000 | an antihypertensive drug (trade name Apresoline) that dilates blood vessels; used (often with a diuretic) to treat hypertension and congestive heart failure -03550916 06 n 01 hydrant 0 002 @ 03206158 n 0000 ~ 03346898 n 0000 | a discharge pipe with a valve and spout at which water may be drawn from the mains of waterworks -03551084 06 n 02 hydraulic_brake 0 hydraulic_brakes 0 006 @ 02891188 n 0000 %p 02889996 n 0000 %p 02890804 n 0000 ~ 03208938 n 0000 ~ 03250089 n 0000 ~ 03379719 n 0000 | brake system in which a brake pedal moves a piston in the master cylinder; brake fluid then applies great force to the brake pads or shoes -03551395 06 n 01 hydraulic_press 0 001 @ 03999992 n 0000 | press in which a force applied by a piston to a small area is transmitted through water to another piston having a large area -03551582 06 n 02 hydraulic_pump 0 hydraulic_ram 0 001 @ 04021798 n 0000 | a water pump that uses the kinetic energy of flowing water to force a small fraction of that water to a reservoir at a higher level -03551790 06 n 01 hydraulic_system 0 002 @ 03738472 n 0000 ~ 03552001 n 0000 | a mechanism operated by the resistance offered or the pressure transmitted when a liquid is forced through a small opening or tube -03552001 06 n 02 hydraulic_transmission 0 hydraulic_transmission_system 0 002 @ 04472243 n 0000 @ 03551790 n 0000 | a transmission that depends on a hydraulic system -03552169 06 n 04 hydrochlorothiazide 0 Microzide 0 Esidrix 0 HydroDIURIL 0 005 @ 04423288 n 0000 #s 03732828 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | a diuretic drug (trade name Microzide, Esidrix, and HydroDIURIL) used in the treatment of hypertension -03552449 06 n 01 hydroelectric_turbine 0 002 @ 04498523 n 0000 ~ 03392648 n 0000 | turbine consisting of a large and efficient version of a water wheel used to drive an electric generator -03552639 06 n 01 hydroflumethiazide 0 001 @ 04423288 n 0000 | diuretic used to treat hypertension and edema -03552749 06 n 02 hydrofoil 0 hydroplane 1 002 @ 04273569 n 0000 + 01943153 v 0201 | a speedboat that is equipped with winglike structures that lift it so that it skims the water at high speeds; "the museum houses a replica of the jet hydroplane that broke the record" -03553019 06 n 02 hydrofoil 1 foil 3 001 @ 03183080 n 0000 | a device consisting of a flat or curved piece (as a metal plate) so that its surface reacts to the water it is passing through; "the fins of a fish act as hydrofoils" -03553248 06 n 04 hydrogen_bomb 0 H-bomb 0 fusion_bomb 0 thermonuclear_bomb 0 002 @ 03834604 n 0000 @ 02866578 n 0000 | a nuclear weapon that releases atomic energy by union of light (hydrogen) nuclei at high temperatures to form helium -03553486 06 n 02 hydrometer 0 gravimeter 0 005 @ 03733925 n 0000 + 03002841 a 0202 + 03002841 a 0101 ~ 04130566 n 0000 ~ 04421582 n 0000 | a measuring instrument for determining the specific gravity of a liquid or solid -03553708 06 n 03 hydromorphone_hydrochloride 0 hydromorphone 0 Dilaudid 0 002 @ 02707683 n 0000 ;u 06845599 n 0301 | a narcotic analgesic (trade name Dilaudid) used to treat moderate to severe pain -03553908 06 n 02 hydroxychloroquine 0 Plaquenil 0 002 @ 02721538 n 0000 ;u 06845599 n 0201 | anti-inflammatory drug (trade name Plaquenil) used in the treatment of rheumatoid arthritis and malaria and lupus erythematosus -03554131 06 n 04 hydroxyzine_hydrochloride 0 hydroxyzine 0 Atarax 0 Vistaril 0 003 @ 03771443 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 | a drug (trade names Atarax and Vistaril) used as a tranquilizer to treat anxiety and motion sickness -03554375 06 n 01 hygrodeik 0 001 @ 03554460 n 0000 | a wet and dry bulb hygrometer -03554460 06 n 01 hygrometer 0 004 @ 03733925 n 0000 ~ 03554375 n 0000 ~ 03554645 n 0000 ~ 04017571 n 0000 | measuring instrument for measuring the relative humidity of the atmosphere -03554645 06 n 01 hygroscope 0 002 @ 03554460 n 0000 + 00007096 a 0101 | hygrometer that shows variations in the relative humidity of the atmosphere -03554795 06 n 01 hyoscyamine 0 002 @ 14712692 n 0000 @ 15032376 n 0000 | a poisonous crystalline alkaloid (isometric with atropine but more potent); used to treat excess motility of the gastrointestinal tract -03555006 06 n 01 hyperbaric_chamber 0 001 @ 03003730 n 0000 | a large chamber in which the oxygen pressure is above normal for the atmosphere; used in treating breathing disorders or carbon monoxide poisoning -03555217 06 n 01 hypercoaster 0 001 @ 04102406 n 0000 | a roller coaster that goes up 200 feet or higher and can catapult riders from 0 to 70 mph in 4 seconds by motors originally designed to launch rockets -03555426 06 n 01 hypermarket 0 002 @ 04358707 n 0000 ;r 08860123 n 0000 | a huge supermarket (usually built on the outskirts of a town) -03555564 06 n 01 hypodermic_needle 0 002 @ 03816136 n 0000 #p 03555662 n 0000 | a hollow needle -03555662 06 n 03 hypodermic_syringe 0 hypodermic 0 hypo 0 003 @ 04376876 n 0000 ~ 02759700 n 0000 %p 03555564 n 0000 | a piston syringe that is fitted with a hypodermic needle for giving injections -03555862 06 n 01 hypsometer 0 001 @ 02700258 n 0000 | an altimeter that uses the boiling point of water to determine land elevation -03555996 06 n 01 hysterosalpingogram 0 001 @ 04100620 n 0000 | X ray of the uterus and Fallopian tubes; usually done in diagnosing infertility (to see if there any blockages) -03556173 06 n 01 I-beam 0 001 @ 03437941 n 0000 | girder having a cross section resembling the letter `I' -03556281 06 n 05 ibuprofen 0 isobutylphenyl_propionic_acid 0 Advil 0 Motrin 0 Nuprin 0 005 @ 03828465 n 0000 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory and analgesic medicine (trade names Advil and Motrin and Nuprin) used to relieve the pain of arthritis and as an antipyretic; "daily use of ibuprofen can irritate the stomach" -03556679 06 n 03 ice_ax 0 ice_axe 0 piolet 0 001 @ 02764044 n 0000 | an ax used by mountain climbers for cutting footholds in ice -03556811 06 n 03 iceboat 1 ice_yacht 0 scooter 2 002 @ 04530566 n 0000 + 02061495 v 0303 | a sailing vessel with runners and a cross-shaped frame; suitable for traveling over ice -03556992 06 n 02 icebreaker 0 iceboat 0 001 @ 04194289 n 0000 | a ship with a reinforced bow to break up ice and keep channels open for navigation -03557141 06 n 01 ice_cube 0 002 @ 03144592 n 0000 %s 14915184 n 0000 | a small cube of artificial ice; used for cooling drinks -03557270 06 n 01 iced-tea_spoon 0 001 @ 04398688 n 0000 | a teaspoon with a long handle -03557360 06 n 02 ice_hockey_rink 0 ice-hockey_rink 0 003 @ 03558176 n 0000 %p 02857907 n 0000 %p 03907908 n 0000 | an ice rink for playing ice hockey -03557512 06 n 01 icehouse 0 001 @ 03545150 n 0000 | a house for storing ice -03557590 06 n 01 ice_machine 0 001 @ 03273913 n 0000 | an electric refrigerator to supply ice cubes -03557692 06 n 01 ice_maker 0 002 @ 03620052 n 0000 #p 03273913 n 0000 | an appliance included in some electric refrigerators for making ice cubes -03557840 06 n 02 ice_pack 0 ice_bag 0 001 @ 02773037 n 0000 | a waterproof bag filled with ice: applied to the body (especially the head) to cool or reduce swelling -03558007 06 n 02 icepick 0 ice_pick 0 002 @ 03929443 n 0000 %p 03974215 n 0000 | pick consisting of a steel rod with a sharp point; used for breaking up blocks of ice -03558176 06 n 03 ice_rink 0 ice-skating_rink 0 ice 0 003 @ 04093625 n 0000 + 01079240 a 0301 ~ 03557360 n 0000 | a rink with a floor of ice for ice hockey or ice skating; "the crowd applauded when she skated out onto the ice" -03558404 06 n 01 ice_skate 0 007 @ 04225729 n 0000 + 01937222 v 0101 %p 02848806 n 0000 ~ 03336282 n 0000 ~ 03523987 n 0000 ~ 04098710 n 0000 ~ 04273972 n 0000 | skate consisting of a boot with a steel blade fitted to the sole -03558633 06 n 01 ice_tongs 0 002 @ 04450749 n 0000 ;u 06295235 n 0000 | tongs for lifting blocks of ice -03558739 06 n 01 icetray 0 001 @ 04476259 n 0000 | a tray for making cubes of ice in a refrigerator -03558841 06 n 02 ice_wagon 0 ice-wagon 0 001 @ 04543158 n 0000 | (formerly) a horse-drawn wagon that delivered ice door to door -03558971 06 n 02 icon 2 ikon 2 002 @ 03876519 n 0000 + 02851550 a 0101 | a conventional religious painting in oil on a small wooden panel; venerated in the Eastern Church -03559144 06 n 01 iconography 0 001 @ 03931044 n 0000 | the images and symbolic representations that are traditionally associated with a person or a subject; "religious iconography"; "the propagandistic iconography of a despot" -03559373 06 n 01 iconoscope 0 001 @ 04405309 n 0000 | the first practical television-camera for picture pickup; invented in 1923 by Vladimir Kosma Zworykin -03559531 06 n 02 Identikit 0 Identikit_picture 0 003 @ 03668642 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | a likeness of a person's face constructed from descriptions given to police; uses a set of transparencies of various facial features that can be combined to build up a picture of the person sought -03559841 06 n 01 Iditarod_Trail 0 002 @i 04466613 n 0000 #p 09055015 n 0000 | a trail that extends 1,100 miles from Anchorage over the Alaska Range to Nome -03559999 06 n 03 idle_pulley 0 idler_pulley 0 idle_wheel 0 001 @ 04020298 n 0000 | a pulley on a shaft that presses against a guide belt to guide or tighten it -03560161 06 n 03 idol 0 graven_image 0 god 0 006 @ 03265874 n 0000 + 01778017 v 0101 + 01778017 v 0102 ~ 03444376 n 0000 ~ 03602267 n 0000 ~ 03603878 n 0000 | a material effigy that is worshipped; "thou shalt not make unto thee any graven image"; "money was his god" -03560430 06 n 02 igloo 0 iglu 0 001 @ 03547054 n 0000 | an Eskimo hut; usually built of blocks (of sod or snow) in the shape of a dome -03560567 06 n 02 ignition 0 ignition_system 0 009 @ 03738472 n 0000 #p 03270165 n 0000 %p 03213014 n 0000 %p 03560860 n 0000 %p 03561169 n 0000 %p 03708425 n 0000 %p 04268565 n 0000 %p 04268799 n 0000 %p 04269270 n 0000 | the mechanism that ignites the fuel in an internal-combustion engine -03560860 06 n 01 ignition_coil 0 002 @ 03568818 n 0000 #p 03560567 n 0000 | an induction coil that converts current from a battery into the high-voltage current required by spark plugs -03561047 06 n 01 ignition_key 0 001 @ 03613294 n 0000 | a key that operates the ignition switch of an automotive engine -03561169 06 n 01 ignition_switch 0 003 @ 04372370 n 0000 #p 03560567 n 0000 %p 03682877 n 0000 | switch that operates a solenoid that closes a circuit to operate the starter -03561345 06 n 01 illustration 0 004 @ 04076846 n 0000 + 01668421 v 0101 + 01687401 v 0101 ~ 03960664 n 0000 | a visual representation (a picture or diagram) that is used make some subject more pleasing or easier to understand -03561573 06 n 01 imaret 0 001 @ 03541696 n 0000 | a hostel for pilgrims in Turkey -03561657 06 n 03 imbrication 0 overlapping 0 lapping 0 004 @ 03122748 n 0000 + 02688794 v 0201 + 02689146 v 0101 + 02689008 v 0101 | covering with a design in which one element covers a part of another (as with tiles or shingles) -03561889 06 n 04 imipramine 0 impramine_hydrochloride 0 Imavate 0 Tofranil 0 003 @ 04482543 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 | a tricyclic antidepressant (trade names Imavate and Tofranil) used to treat clinical depression -03562126 06 n 01 imitation 0 003 @ 03104594 n 0000 ~ 03318438 n 0000 ~ 03562262 n 0000 | something copied or derived from an original -03562262 06 n 02 counterfeit 0 forgery 0 003 @ 03562126 n 0000 + 01654271 v 0201 + 01654271 v 0103 | a copy that is represented as the original -03562408 06 n 01 immersion_heater 0 001 @ 03508628 n 0000 | a heating element that is immersed in the liquid that is to be heated (as in a hot-water tank) -03562565 06 n 01 immovable_bandage 0 001 @ 02785648 n 0000 | a bandage of cloth impregnated with a substance (e.g., plaster of Paris) that hardens soon after it is applied -03562739 06 n 02 immunogen 0 immunizing_agent 0 003 @ 15037339 n 0000 ~ 04517535 n 0000 ~ 15028555 n 0000 | any substance or organism that provokes an immune response (produces immunity) when introduced into the body -03562958 06 n 05 immunosuppressant 0 immunosuppressor 0 immunosuppressive_drug 0 immunosuppressive 0 immune_suppressant_drug 0 003 @ 03740161 n 0000 ~ 03748456 n 0000 ~ 03755712 n 0000 | a drug that lowers the body's normal immune response -03563200 06 n 01 impact_printer 0 004 @ 04004475 n 0000 ~ 02794664 n 0000 ~ 03000530 n 0000 ~ 04595285 n 0000 | a printer that prints by mechanical impacts -03563358 06 n 01 impedimenta 0 001 @ 02774921 n 0000 | the baggage and equipment carried by an army -03563460 06 n 01 impeller 0 003 @ 02848523 n 0000 #p 04111668 n 0000 + 01511706 v 0102 | the blade of a rotor (as in the compressor of a jet engine) -03563611 06 n 01 imperial 0 001 @ 02774630 n 0000 | a piece of luggage carried on top of a coach -03563710 06 n 01 implant 0 010 @ 04013729 n 0000 + 01528821 v 0101 ~ 02745492 n 0000 ~ 02745816 n 0000 ~ 02895008 n 0000 ~ 03175983 n 0000 ~ 03507857 n 0000 ~ 03657239 n 0000 ~ 03911406 n 0000 ~ 04210858 n 0000 | a prosthesis placed permanently in tissue -03563967 06 n 01 implement 0 033 @ 03575240 n 0000 + 01196775 a 0101 + 02408965 v 0101 ~ 02788689 n 0000 ~ 02817650 n 0000 ~ 02908217 n 0000 ~ 02910964 n 0000 ~ 02948403 n 0000 ~ 03039947 n 0000 ~ 03294833 n 0000 ~ 03346135 n 0000 ~ 03356279 n 0000 ~ 03532342 n 0000 ~ 03585337 n 0000 ~ 03653220 n 0000 ~ 03816136 n 0000 ~ 03837422 n 0000 ~ 04100174 n 0000 ~ 04185071 n 0000 ~ 04253168 n 0000 ~ 04271148 n 0000 ~ 04276249 n 0000 ~ 04285622 n 0000 ~ 04317420 n 0000 ~ 04317833 n 0000 ~ 04320871 n 0000 ~ 04337503 n 0000 ~ 04367746 n 0000 ~ 04369282 n 0000 ~ 04451818 n 0000 ~ 04497801 n 0000 ~ 04516672 n 0000 ~ 04608567 n 0000 | instrumentation (a piece of equipment or tool) used to effect an end -03564667 06 n 02 import 0 importation 0 004 @ 03076708 n 0000 + 02346136 v 0201 + 02346136 v 0101 ! 03306207 n 0101 | commodities (goods or services) bought from a foreign country -03564849 06 n 01 impression 0 002 @ 03565288 n 0000 ;c 06047430 n 0000 | (dentistry) an imprint of the teeth and gums in wax or plaster; "the dentist took an impression for use in preparing an inlay" -03565051 06 n 01 Impressionism 0 003 @ 08466643 n 0000 + 02747466 a 0102 + 10201956 n 0101 | a school of late 19th century French painters who pictured appearances by strokes of unmixed colors to give the impression of reflected light -03565288 06 n 01 imprint 0 002 @ 03183080 n 0000 ~ 03564849 n 0000 | a device produced by pressure on a surface -03565402 06 n 01 improvisation 0 002 @ 03129123 n 0000 + 01728840 v 0101 | a creation spoken or written or composed extemporaneously (without prior preparation) -03565565 06 n 03 improvised_explosive_device 0 I.E.D. 0 IED 0 002 @ 03305522 n 0000 ~ 03781055 n 0000 | an explosive device that is improvised -03565710 06 n 01 impulse_turbine 0 001 @ 04498523 n 0000 | a turbine that is driven by jets direct against the blades -03565830 06 n 02 in-basket 0 in-tray 0 002 @ 04060904 n 0000 ! 03858837 n 0101 | a wood or metal receptacle placed on your desk to hold your incoming material -03565991 06 n 03 incendiary_bomb 0 incendiary 0 firebomb 0 002 @ 02866578 n 0000 + 01133667 v 0301 | a bomb that is designed to start fires; is most effective against flammable targets (such as fuel) -03566193 06 n 01 incinerator 0 002 @ 03404449 n 0000 + 00378042 v 0102 | a furnace for incinerating (especially to dispose of refuse) -03566329 06 n 01 inclined_plane 0 004 @ 03700963 n 0000 ~ 04051549 n 0000 ~ 04154340 n 0000 ~ 04569520 n 0000 | a simple machine for elevating objects; consists of plane surface that makes an acute angle with the horizontal -03566555 06 n 02 inclinometer 0 dip_circle 0 002 @ 03733925 n 0000 ;c 02691156 n 0000 | a measuring instrument for measuring the angle of magnetic dip (as from an airplane) -03566730 06 n 01 inclinometer 1 001 @ 03813176 n 0000 | an instrument showing the angle that an aircraft makes with the horizon -03566860 06 n 02 incrustation 0 encrustation 0 003 @ 03169390 n 0000 + 01517355 v 0201 + 01517355 v 0102 | a decorative coating of contrasting material that is applied to a surface as an inlay or overlay -03567066 06 n 02 incubator 0 brooder 0 004 @ 02727825 n 0000 + 00060185 v 0201 + 00060185 v 0104 %p 04422875 n 0000 | apparatus consisting of a box designed to maintain a constant temperature by the use of a thermostat; used for chicks or premature infants -03567325 06 n 02 indapamide 0 Lozal 0 002 @ 03214670 n 0000 ;u 06845599 n 0201 | diuretic (trade name Lozal) used in the treatment of hypertension -03567474 06 n 01 Independence_Hall 0 002 @i 02913152 n 0000 #p 09136182 n 0000 | the building in Philadelphia where the Declaration of Independence was signed -03567635 06 n 01 index_register 0 002 @ 04071876 n 0000 ;c 06128570 n 0000 | (computer science) a register used to determine the address of an operand -03567788 06 n 01 Indiaman 0 001 @ 04128837 n 0000 | a large sailing ship that was engaged in the British trade with India -03567912 06 n 01 Indian_club 0 001 @ 03053474 n 0000 | a bottle-shaped club used in exercises -03568008 06 n 01 Indian_trail 0 001 @ 04466613 n 0000 | a trail through the wilderness worn by Amerindians -03568117 06 n 01 indicator 0 012 @ 03183080 n 0000 ~ 02714139 n 0000 ~ 03150795 n 0000 ~ 03187037 n 0000 ~ 03401129 n 0000 ~ 03442597 n 0000 ~ 03658858 n 0000 ~ 03939844 n 0000 ~ 03975232 n 0000 ~ 04141838 n 0000 ~ 04415460 n 0000 ~ 04432942 n 0000 | a device for showing the operating condition of some system -03568430 06 n 02 indinavir 0 Crixivan 0 001 @ 04013993 n 0000 | a protease inhibitor (trade name Crixivan) used for treating HIV -03568561 06 n 01 indirect_lighting 0 001 @ 03667380 n 0000 | a concealed lighting fixture -03568653 06 n 02 indomethacin 0 Indocin 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14599168 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Indocin) -03568818 06 n 01 induction_coil 0 005 @ 03065708 n 0000 #p 04471315 n 0000 ~ 03560860 n 0000 ~ 04268565 n 0000 %p 04268680 n 0000 | a coil for producing a high voltage from a low-voltage source -03569014 06 n 02 inductor 0 inductance 0 001 @ 03269401 n 0000 | an electrical device (typically a conducting coil) that introduces inductance into a circuit -03569174 06 n 01 industrial_watercourse 0 001 @ 02947212 n 0000 | a canal that is operated by one or more industries -03569293 06 n 02 inertial_guidance_system 0 inertial_navigation_system 0 003 @ 04377057 n 0000 #p 04264914 n 0000 #p 02762169 n 0000 | a system to control a plane or spacecraft; uses inertial forces -03569494 06 n 02 inflater 0 inflator 0 003 @ 02692513 n 0000 + 00264034 v 0201 + 00264034 v 0101 | an air pump operated by hand to inflate something (as a tire) -03569657 06 n 02 infliximab 0 Remicade 0 002 @ 02724966 n 0000 ;u 06845599 n 0201 | an anti-TNF compound (trade name Remicade) consisting of an antibody directed against TNF; it is given intravenously at one-month to three-month intervals; used in treatment of regional enteritis and rheumatoid arthritis -03569964 06 n 02 infrastructure 0 base 6 012 @ 13367070 n 0000 %p 03077958 n 0000 %p 03347338 n 0000 %p 03425956 n 0000 %p 03711145 n 0000 %p 03907654 n 0000 %p 03997027 n 0000 %p 04019335 n 0000 %p 04146976 n 0000 %p 04178897 n 0000 %p 04473432 n 0000 %p 04562658 n 0000 | the stock of basic facilities and capital equipment needed for the functioning of a country or area; "the industrial base of Japan" -03570372 06 n 02 infrastructure 1 substructure 1 002 @ 04931965 n 0000 #p 04377057 n 0000 | the basic structure or features of a system or organization -03570526 06 n 03 ingot 0 metal_bar 0 block_of_metal 0 003 @ 02852523 n 0000 ~ 02917521 n 0000 ~ 03934998 n 0000 | metal that is cast in the shape of a block for convenient handling -03570709 06 n 01 ingredient 0 003 @ 03081021 n 0000 ~ 02681084 n 0000 ~ 02798769 n 0000 | a component of a mixture or compound -03570838 06 n 04 inhalation_anesthetic 0 inhalation_anaesthetic 0 inhalation_general_anesthetic 0 inhalation_general_anaesthetic 0 007 @ 03433434 n 0000 ~ 03022406 n 0000 ~ 03155661 n 0000 ~ 03299929 n 0000 ~ 03480367 n 0000 ~ 03587623 n 0000 ~ 03826945 n 0000 | a gas that produces general anesthesia when inhaled -03571155 06 n 02 inhalant 0 inhalation 0 002 @ 03740161 n 0000 + 01198779 v 0201 | a medication to be taken by inhaling it -03571280 06 n 02 inhaler 0 inhalator 0 001 @ 03210683 n 0000 | a dispenser that produces a chemical vapor to be inhaled in order to relieve nasal congestion -03571439 06 n 01 injector 0 002 @ 02729965 n 0000 + 01585523 v 0101 | a contrivance for injecting (e.g., water into the boiler of a steam engine or particles into an accelerator etc.) -03571625 06 n 02 ink_bottle 0 inkpot 0 001 @ 02876657 n 0000 | a bottle of ink -03571706 06 n 01 ink_cartridge 0 003 @ 02972182 n 0000 #p 03280644 n 0000 #p 03388183 n 0000 | a cartridge that contains ink and can be replaced -03571853 06 n 01 ink_eraser 0 001 @ 03294833 n 0000 | an eraser that removes ink marks -03571942 06 n 01 ink-jet_printer 0 002 @ 03225777 n 0000 ~ 02909285 n 0000 | a printer that produces characters by projecting electrically charged droplets of ink -03572107 06 n 01 inkle 0 001 @ 04391569 n 0000 | a linen tape used for trimming as a decoration -03572205 06 n 01 inkstand 0 001 @ 04476259 n 0000 | a tray or stand for writing implements and containers for ink -03572321 06 n 02 inkwell 0 inkstand 1 001 @ 04572935 n 0000 | a small well holding writing ink into which a pen can be dipped -03572449 06 n 01 inlay 0 004 @ 03169390 n 0000 + 01682039 v 0101 ~ 03723267 n 0000 ~ 03892425 n 0000 | a decoration made by fitting pieces of wood into prepared slots in a surface -03572631 06 n 01 inlay 1 002 @ 03338287 n 0000 ;c 06047430 n 0000 | (dentistry) a filling consisting of a solid substance (as gold or porcelain) fitted to a cavity in a tooth and cemented into place -03572832 06 n 01 inlet_manifold 0 002 @ 03717750 n 0000 #p 03424630 n 0000 | manifold that carries vaporized fuel from the carburetor to the inlet valves of the cylinders -03573005 06 n 01 inner_tube 0 002 @ 04493505 n 0000 #p 03971422 n 0000 | an inflatable rubber tube that fits inside the casing of a pneumatic tire -03573154 06 n 01 input 0 001 @ 03081021 n 0000 | a component of production; something that goes into the production of output -03573282 06 n 02 insert 0 inset 1 005 @ 00021939 n 0000 + 00188466 v 0201 + 00187526 v 0101 + 01421622 v 0101 ~ 03191561 n 0000 | an artifact that is inserted or is to be inserted -03573464 06 n 01 inset 2 001 @ 03931044 n 0000 | a small picture inserted within the bounds or a larger one -03573574 06 n 01 inside_caliper 0 001 @ 02939866 n 0000 | caliper for measuring inside dimensions (the size of a cavity or hole); points on its legs curve outward -03573739 06 n 01 inside_clinch 0 001 @ 03042984 n 0000 | a clinch with the end of the line inside the loop -03573848 06 n 02 insole 0 innersole 0 003 @ 04258982 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 | the inner sole of a shoe or boot where the foot rests -03574004 06 n 02 inspiration 0 brainchild 0 001 @ 04007894 n 0000 | a product of your creative thinking and work; "he had little respect for the inspirations of other artists"; "after years of work his brainchild was a tangible reality" -03574243 06 n 01 instep 0 004 @ 03122748 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 #p 04323819 n 0000 | the part of a shoe or stocking that covers the arch of the foot -03574416 06 n 01 instillator 0 002 @ 02727825 n 0000 + 01422662 v 0101 | medical apparatus that puts a liquid into a cavity drop by drop -03574555 06 n 01 institution 0 005 @ 03297735 n 0000 + 02749778 a 0101 ~ 03528100 n 0000 ~ 03856012 n 0000 ~ 03907654 n 0000 | an establishment consisting of a building or complex of buildings where an organization for the promotion of some cause is situated -03574816 06 n 01 instrument 0 019 @ 03183080 n 0000 ~ 02708711 n 0000 ~ 02987047 n 0000 ~ 03231160 n 0000 ~ 03288003 n 0000 ~ 03308152 n 0000 ~ 03575691 n 0000 ~ 03575958 n 0000 ~ 03733925 n 0000 ~ 03739693 n 0000 ~ 03813176 n 0000 ~ 03852280 n 0000 ~ 03967396 n 0000 ~ 04147495 n 0000 ~ 04260589 n 0000 ~ 04365484 n 0000 ~ 04463017 n 0000 ~ 04565375 n 0000 ~ 04577769 n 0000 | a device that requires skill for proper use -03575240 06 n 02 instrumentality 0 instrumentation 0 017 @ 00021939 n 0000 + 02340543 v 0201 + 01196775 a 0102 ~ 02997391 n 0000 ~ 03091374 n 0000 ~ 03094503 n 0000 ~ 03100490 n 0000 ~ 03183080 n 0000 ~ 03294048 n 0000 ~ 03405265 n 0000 ~ 03493792 n 0000 ~ 03563967 n 0000 ~ 03733547 n 0000 ~ 04377057 n 0000 ~ 04447443 n 0000 ~ 04566257 n 0000 ~ 06254669 n 0000 | an artifact (or system of artifacts) that is instrumental in accomplishing some end -03575691 06 n 01 instrument_of_execution 0 008 @ 03574816 n 0000 ~ 03271030 n 0000 ~ 03412906 n 0000 ~ 03420935 n 0000 ~ 03422288 n 0000 ~ 03467068 n 0000 %p 04141573 n 0000 ~ 04298906 n 0000 | an instrument designed and used to take the life of a condemned person -03575958 06 n 01 instrument_of_punishment 0 008 @ 03574816 n 0000 ~ 02949356 n 0000 ~ 03144982 n 0000 ~ 03576215 n 0000 ~ 03873574 n 0000 ~ 03938037 n 0000 ~ 04324515 n 0000 ~ 04372171 n 0000 | an instrument designed and used to punish a condemned person -03576215 06 n 01 instrument_of_torture 0 005 @ 03575958 n 0000 ~ 02873363 n 0000 ~ 03586448 n 0000 ~ 04039041 n 0000 ~ 04431547 n 0000 | an instrument of punishment designed and used to inflict torture on the condemned person -03576443 06 n 02 intaglio 0 diaglyph 0 001 @ 03442288 n 0000 | glyptic art consisting of a sunken or depressed engraving or carving on a stone or gem (as opposed to cameo) -03576617 06 n 02 intake 0 inlet 0 003 @ 03848729 n 0000 ~ 02689648 n 0000 ~ 04212573 n 0000 | an opening through which fluid is admitted to a tube or container -03576779 06 n 01 intake_manifold 0 002 @ 03717750 n 0000 #p 03401721 n 0000 | a manifold consisting of a pipe to carry fuel to each cylinder in an internal-combustion engine -03576955 06 n 01 intake_valve 0 002 @ 04519153 n 0000 #p 03156405 n 0000 | a valve that controls the flow of fluid through an intake -03577090 06 n 02 integrated_circuit 0 microcircuit 0 002 @ 03084420 n 0000 #p 03020034 n 0000 | a microelectronic computer circuit incorporated into a chip or semiconductor; a whole system rather than a single component -03577312 06 n 02 integrator 0 planimeter 0 002 @ 03733925 n 0000 + 00642980 v 0101 | a measuring instrument for measuring the area of an irregular plane figure -03577474 06 n 01 Intelnet 0 001 @ 03085333 n 0000 | a computer network similar to but separate from the internet; devoted to the dissemination of information to and for the Intelligence Community -03577672 06 n 01 interceptor 0 002 @ 03335030 n 0000 + 01440378 v 0101 | a fast maneuverable fighter plane designed to intercept enemy aircraft -03577818 06 n 01 interchange 0 004 @ 03605722 n 0000 #p 03519981 n 0000 ~ 03053163 n 0000 ~ 04266968 n 0000 | a junction of highways on different levels that permits traffic to move from one to another without crossing traffic streams -03578055 06 n 02 intercommunication_system 0 intercom 0 003 @ 03078287 n 0000 ~ 03580845 n 0000 %p 04292572 n 0000 | a communication system linking different rooms within a building or ship etc -03578251 06 n 02 intercontinental_ballistic_missile 0 ICBM 0 002 @ 02781338 n 0000 ~ 03772674 n 0000 | a ballistic missile that is capable of traveling from one continent to another -03578435 06 n 01 interface 0 004 @ 08660339 n 0000 ;c 06089447 n 0000 + 02878680 a 0101 ~ 09377511 n 0000 | (chemistry) a surface forming a common boundary between two things (two objects or liquids or chemical phases) -03578656 06 n 02 interface 1 port 1 005 @ 03084420 n 0000 ;c 06128570 n 0000 ~ 03888998 n 0000 ~ 04174234 n 0000 ~ 04245218 n 0000 | (computer science) computer circuit consisting of the hardware and associated circuitry that links one device with another (especially a computer and a hard disk drive or other peripherals) -03578981 06 n 01 interferometer 0 001 @ 03733925 n 0000 | any measuring instrument that uses interference patterns to make accurate measurements of waves -03579137 06 n 01 interferon 0 004 @ 02725367 n 0000 ~ 02699096 n 0000 ~ 02832652 n 0000 ~ 03415083 n 0000 | an antiviral protein produced by cells that have been invaded by a virus; inhibits replication of the virus -03579355 06 n 02 interior_decoration 0 decor 0 003 @ 03169390 n 0000 + 01675963 v 0201 + 01466543 v 0202 | decoration consisting of the layout and furnishings of a livable interior -03579538 06 n 01 interior_door 0 004 @ 03221720 n 0000 #p 02913152 n 0000 ~ 02836513 n 0000 ~ 03376771 n 0000 | a door that closes off rooms within a building -03579699 06 n 01 interlayer 0 001 @ 03650173 n 0000 | a layer placed between other layers -03579791 06 n 02 interlock 0 ignition_interlock 0 001 @ 03183080 n 0000 | a device that prevents an automotive engine from starting; "car theives know how to bypass the ignition interlock" -03579982 06 n 02 internal-combustion_engine 0 ICE 1 017 @ 03507963 n 0000 #p 03790230 n 0000 #p 03791235 n 0000 ~ 03193107 n 0000 %p 03288225 n 0000 ~ 03388990 n 0000 ~ 03422771 n 0000 ~ 03424630 n 0000 %p 03695122 n 0000 ~ 03859000 n 0000 %p 03983928 n 0000 ~ 04040373 n 0000 ~ 04062179 n 0000 ~ 04110654 n 0000 %p 04170515 n 0000 %p 04357930 n 0000 ~ 04519728 n 0000 | a heat engine in which combustion occurs inside the engine rather than in a separate furnace; heat expands a gas that either moves a piston or turns a gas turbine -03580518 06 n 01 internal_drive 0 001 @ 03243218 n 0000 | a drive mounted inside of a computer -03580615 06 n 03 internet 0 net 1 cyberspace 0 001 @ 03085333 n 0000 | a computer network consisting of a worldwide network of computer networks that use the TCP/IP network protocols to facilitate data transmission and exchange -03580845 06 n 01 interphone 0 001 @ 03578055 n 0000 | a telephonic intercommunication system linking different rooms in a building or ship etc -03580990 06 n 01 interrupter 0 002 @ 03183080 n 0000 + 00778275 v 0101 | a device for automatically interrupting an electric current -03581125 06 n 05 intersection 0 crossroad 0 crossway 0 crossing 1 carrefour 0 005 @ 03605722 n 0000 #p 04096066 n 0000 + 02023396 v 0402 ~ 03109486 n 0000 ~ 03659122 n 0000 | a junction where one street or road crosses another -03581354 06 n 02 interstate 0 interstate_highway 0 001 @ 03519981 n 0000 | one of the system of highways linking major cities in the 48 contiguous states of the United States -03581531 06 n 01 interstice 0 002 @ 03848729 n 0000 + 02828564 a 0101 | small opening between things -03581634 06 n 01 intoxicant 0 002 @ 03247620 n 0000 + 00088532 v 0101 | a drug that can produce a state of intoxication -03581756 06 n 01 intranet 0 001 @ 03085333 n 0000 | a restricted computer network; a private network created using World Wide Web software -03581897 06 n 01 intraocular_lens 0 001 @ 03656484 n 0000 | an artificial lens that is implanted into the eye of someone to replace a damaged natural lens or someone who has had a cataract removed -03582096 06 n 02 intrauterine_device 0 IUD 0 002 @ 03096593 n 0000 ~ 03689347 n 0000 | contraceptive device consisting of a piece of bent plastic or metal that is inserted through the vagina into the uterus -03582305 06 n 01 intravenous_anesthetic 0 004 @ 02710766 n 0000 ~ 03190655 n 0000 ~ 04481144 n 0000 ~ 04492856 n 0000 | an anesthetic that produces anesthesia when injected into the circulatory system -03582508 06 n 02 intravenous_pyelogram 0 IVP 0 001 @ 04028472 n 0000 | X-ray picture of the kidneys and ureters after injection of a radiopaque dye -03582658 06 n 02 invention 0 innovation 0 003 @ 03129123 n 0000 + 01687586 a 0202 + 01642437 v 0202 | a creation (a new device or process) resulting from study and experimentation -03582840 06 n 01 inverted_pleat 0 001 @ 03965907 n 0000 | a box pleat reversed so that the fullness is turned inward -03582959 06 n 01 inverter 0 002 @ 03269203 n 0000 + 00386715 v 0102 | an electrical converter that converts direct current into alternating current -03583109 06 n 02 iodochlorhydroxyquin 0 Clioquinol 0 001 @ 02720201 n 0000 | drug used to treat certain fungal infection (as athlete's foot) -03583252 06 n 02 iodoform 0 triiodomethane 0 001 @ 02724207 n 0000 | a yellowish crystalline solid with a penetrating odor; sometimes used as an antiseptic dressing -03583419 06 n 01 ion_engine 0 001 @ 04057435 n 0000 | a type of reaction-propulsion engine to propel rockets in space; a stream of positive ions is accelerated to a high velocity by an electric field -03583621 06 n 02 ionization_chamber 0 ionization_tube 0 003 @ 03733925 n 0000 ~ 02875626 n 0000 ~ 03432509 n 0000 | a measuring instrument that measures the amount of ionizing radiation -03583809 06 n 01 ion_pump 0 001 @ 02692513 n 0000 | a vacuum pump that removes gas by ionizing the atoms or molecules and adsorbing them on a metal surface -03583967 06 n 01 ipecac 0 001 @ 03283519 n 0000 | a medicinal drug used to evoke vomiting (especially in cases of drug overdose or poisoning) -03584111 06 n 02 ipratropium_bromide 0 Atrovent 0 002 @ 02905612 n 0000 ;u 06845599 n 0201 | an inhaled bronchodilator (trade name Atrovent) -03584254 06 n 01 iPod 0 003 @ 04315948 n 0000 ;u 06851742 n 0000 ~ 03584400 n 0000 | (trademark) a pocket-sized device used to play music files -03584400 06 n 01 video_iPod 0 002 @ 03584254 n 0000 ;u 06851742 n 0000 | (trademark) an iPod that can also play video files -03584526 06 n 01 iproclozide 0 001 @ 03783017 n 0000 | an antidepressant drug that acts as a monoamine oxidase inhibitor -03584649 06 n 02 iris 0 iris_diaphragm 0 001 @ 03189083 n 0000 | diaphragm consisting of thin overlapping plates that can be adjusted to change the diameter of a central opening -03584829 06 n 02 iron 0 smoothing_iron 0 006 @ 03528263 n 0000 + 01390833 v 0101 ~ 03361194 n 0000 ~ 03443775 n 0000 ~ 04309833 n 0000 ~ 04475631 n 0000 | home appliance consisting of a flat metal base that is heated and used to smooth cloth -03585073 06 n 01 iron 1 010 @ 03446070 n 0000 ~ 03244775 n 0000 ~ 03688066 n 0000 ~ 03724538 n 0000 ~ 03724623 n 0000 ~ 03762332 n 0000 ~ 03823216 n 0000 ~ 04028074 n 0000 ~ 04205062 n 0000 ~ 04569822 n 0000 | a golf club that has a relatively narrow metal head -03585337 06 n 02 iron 2 branding_iron 0 001 @ 03563967 n 0000 | implement used to brand live stock -03585438 06 n 02 irons 0 chains 0 002 @ 04181228 n 0000 ;u 06295235 n 0000 | metal shackles; for hands or legs -03585551 06 n 01 ironclad 0 001 @ 04552696 n 0000 | a wooden warship of the 19th century that is plated with iron or steel armor -03585682 06 n 01 iron_foundry 0 001 @ 03387653 n 0000 | a foundry where cast iron is produced -03585778 06 n 01 iron_horse 0 001 @ 03684823 n 0000 | (c. 1840) an early term for a locomotive -03585875 06 n 01 ironing 0 004 @ 03419014 n 0000 @ 04580298 n 0000 + 01390833 v 0101 ~ 03362119 n 0000 | garments (clothes or linens) that are to be (or have been) ironed; "there was a basketful of ironing to do" -03586090 06 n 01 ironing_board 0 001 @ 02856463 n 0000 | narrow padded board on collapsible supports; used for ironing clothes -03586219 06 n 01 iron_lung 0 001 @ 04080833 n 0000 | respirator that produces alternations in air pressure in a chamber surrounding a patient's chest to force air into and out of the lungs thus providing artificial respiration -03586448 06 n 01 iron_maiden 0 001 @ 03576215 n 0000 | instrument of torture consisting of a hollow iron frame shaped like the human body and lined with spikes to impale the victim -03586631 06 n 01 ironmongery 0 002 @ 03748886 n 0000 ;r 08860123 n 0000 | the merchandise that is sold in an ironmonger's shop -03586760 06 n 01 ironwork 0 001 @ 04599396 n 0000 | work made of iron (gratings or rails or railings etc); "the houses had much ornamental ironwork" -03586911 06 n 01 ironworks 0 002 @ 04602044 n 0000 ;u 06295235 n 0000 | the workplace where iron is smelted or where iron goods are made -03587050 06 n 02 irregular 0 second 1 001 @ 03748886 n 0000 | merchandise that has imperfections; usually sold at a reduced price without the brand name -03587205 06 n 01 irrigation_ditch 0 001 @ 03214253 n 0000 | a ditch to supply dry land with water artificially -03587318 06 n 01 island 0 003 @ 08688247 n 0000 ~ 03620600 n 0000 ~ 04466169 n 0000 | a zone or area resembling an island -03587442 06 n 02 isocarboxazid 0 Marplan 0 002 @ 03783017 n 0000 ;u 06845599 n 0201 | a monoamine oxidase inhibitor (trade name Marplan) that is used to treat clinical depression -03587623 06 n 01 isoflurane 0 001 @ 03570838 n 0000 | a widely used inhalation anesthetic -03587715 06 n 03 isoniazid 0 INH 0 Nydrazid 0 002 @ 02716205 n 0000 ;u 06845599 n 0301 | antibacterial drug (trade name Nydrazid) used to treat tuberculosis -03587874 06 n 02 isoproterenol 0 Isuprel 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | drug (trade name Isuprel) used to treat bronchial asthma and to stimulate the heart -03588046 06 n 02 isosorbide 0 Isordil 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | drug (trade name Isordil) used to treat angina pectoris and congestive heart failure -03588216 06 n 01 izar 0 001 @ 03863923 n 0000 | a voluminous cotton outer garment (usually white) traditionally worn by Muslim women of northern Africa and the Middle East; covers the entire body -03588414 06 n 01 item 0 006 @ 00003553 n 0000 + 00946105 v 0103 + 00946105 v 0104 ~ 03152483 n 0000 ~ 03212003 n 0000 ~ 03932499 n 0000 | a whole individual unit; especially when included in a list or collection; "they reduced the price on many items" -03588668 06 n 02 itraconazole 0 Sporanox 0 002 @ 02720201 n 0000 ;u 06845599 n 0201 | an oral antifungal drug (trade name Sporanox) taken for cases of fungal nail disease -03588841 06 n 01 jabot 0 001 @ 03397532 n 0000 | a ruffle on the front of a woman's blouse or a man's shirt -03588951 06 n 01 jack 0 004 @ 04451818 n 0000 + 01219544 v 0101 ~ 02919308 n 0000 ~ 03591028 n 0000 | tool for exerting pressure or lifting -03589093 06 n 02 jack 1 knave 0 001 @ 03314028 n 0000 | one of four face cards in a deck bearing a picture of a young prince -03589220 06 n 01 jack 2 001 @ 03354903 n 0000 | small flag indicating a ship's nationality -03589313 06 n 02 jack 3 jackstones 0 001 @ 03414162 n 0000 | game equipment consisting of one of several small six-pointed metal pieces that are picked up while bouncing a ball in the game of jacks -03589513 06 n 01 jack 4 002 @ 03269401 n 0000 ~ 04401949 n 0000 | an electrical device consisting of a connector socket designed for the insertion of a plug -03589672 06 n 01 jack 5 002 @ 02778669 n 0000 #p 00462804 n 0000 | a small ball at which players aim in lawn bowling -03589791 06 n 01 jacket 0 026 @ 03057021 n 0000 + 00048790 v 0101 ~ 02788462 n 0000 ~ 02820675 n 0000 ~ 02850358 n 0000 ~ 02864504 n 0000 ~ 02867966 n 0000 ~ 02925385 n 0000 ~ 03219966 n 0000 ~ 03221540 n 0000 ~ 03226375 n 0000 ~ 03228254 n 0000 ~ 03238286 n 0000 ~ 03301175 n 0000 ~ 03548320 n 0000 ~ 03595264 n 0000 ~ 03604536 n 0000 ~ 03696909 n 0000 ~ 03720005 n 0000 ~ 03751269 n 0000 ~ 03829857 n 0000 ~ 03891051 n 0000 ~ 03902756 n 0000 ~ 04123026 n 0000 ~ 04222307 n 0000 ~ 04368496 n 0000 | a short coat -03590306 06 n 01 jacket 1 003 @ 04605726 n 0000 ~ 04064307 n 0000 ~ 07248320 n 0000 | an outer wrapping or casing; "phonograph records were sold in cardboard jackets" -03590475 06 n 01 jacket 3 001 @ 04190747 n 0000 | the tough metal shell casing for certain kinds of ammunition -03590588 06 n 01 jack-in-the-box 0 001 @ 03964744 n 0000 | plaything consisting of a toy clown that jumps out of a box when the lid is opened -03590732 06 n 01 jacklight 0 001 @ 03665366 n 0000 | a light used as a lure in hunting or fishing at night -03590841 06 n 01 jack-o'-lantern 0 001 @ 03640988 n 0000 | lantern carved from a pumpkin -03590932 06 n 01 jack_plane 0 001 @ 03954731 n 0000 | a carpenter's plane for rough finishing -03591028 06 n 02 jackscrew 0 screw_jack 0 001 @ 03588951 n 0000 | screw-operated jack -03591116 06 n 03 Jacob's_ladder 0 jack_ladder 0 pilot_ladder 0 002 @ 03632277 n 0000 ;c 00314469 n 0000 | (nautical) a hanging ladder of ropes or chains supporting wooden or metal rungs or steps -03591313 06 n 01 jaconet 0 001 @ 03309808 n 0000 | a lightweight cotton cloth with a smooth and slightly stiff finish; used for clothing and bandages -03591465 06 n 02 jackstraw 0 spillikin 0 001 @ 04339638 n 0000 | a thin strip of wood used in playing the game of jackstraws -03591592 06 n 02 Jacquard_loom 0 Jacquard 0 001 @ 03689157 n 0000 | a loom with an attachment for forming openings for the passage of the shuttle between the warp threads; used in weaving figured fabrics -03591798 06 n 01 jacquard 1 001 @ 03309808 n 0000 | a highly figured fabric woven on a Jacquard loom -03591901 06 n 02 jag 0 dag 0 003 @ 03357376 n 0000 #p 03419014 n 0000 + 01255624 v 0101 | a flap along the edge of a garment; used in medieval clothing -03592055 06 n 01 jag 1 003 @ 04241940 n 0000 #p 03419014 n 0000 + 01255624 v 0101 | a slit in a garment that exposes material of a different color underneath; used in Renaissance clothing -03592245 06 n 07 jail 0 jailhouse 0 gaol 0 clink 0 slammer 0 poky 0 pokey 0 009 @ 03111690 n 0000 + 02494356 v 0308 + 02494356 v 0106 ~ 02805443 n 0000 ~ 03525693 n 0000 ~ 03534695 n 0000 ~ 03545961 n 0000 ~ 03684740 n 0000 ~ 04601041 n 0000 | a correctional institution used to detain persons who are in the lawful custody of the government (either accused persons awaiting trial or convicted persons serving a sentence) -03592669 06 n 01 jalousie 0 002 @ 04211356 n 0000 %p 03692676 n 0000 | a shutter made of angled slats -03592773 06 n 01 jamb 0 003 @ 04515129 n 0000 #p 04589593 n 0000 ~ 03222857 n 0000 | upright consisting of a vertical side member of a door or window frame -03592931 06 n 01 jammer 0 001 @ 04472726 n 0000 | a transmitter used to broadcast electronic jamming -03593034 06 n 01 jampan 0 001 @ 04166436 n 0000 | a kind of sedan chair used in India -03593122 06 n 02 jampot 0 jamjar 0 001 @ 03593526 n 0000 | a jar for holding jellies or preserves -03593222 06 n 01 japan 0 002 @ 03631811 n 0000 + 01682946 v 0101 | lacquer with a durable glossy black finish, originally from the orient -03593362 06 n 01 japan 1 002 @ 03631922 n 0000 + 01682946 v 0101 | lacquerware decorated and varnished in the Japanese manner with a glossy durable black lacquer -03593526 06 n 01 jar 0 013 @ 04531098 n 0000 + 01497864 v 0101 ~ 02705429 n 0000 ~ 02815834 n 0000 ~ 02951703 n 0000 ~ 03101664 n 0000 ~ 03133415 n 0000 ~ 03141612 n 0000 ~ 03593122 n 0000 %p 03661340 n 0000 ~ 03725600 n 0000 %p 03794392 n 0000 ~ 04522168 n 0000 | a vessel (usually cylindrical) with a wide mouth and without handles -03593862 06 n 02 Jarvik_heart 0 Jarvik_artificial_heart 0 001 @ 02745492 n 0000 | a kind of artificial heart that has been used with some success -03594010 06 n 02 jaunting_car 0 jaunty_car 0 001 @ 02970849 n 0000 | an open two-wheeled one-horse cart formerly widely used in Ireland -03594148 06 n 01 javelin 0 002 @ 04270891 n 0000 @ 04285146 n 0000 | a spear thrown as a weapon or in competitive field events -03594277 06 n 01 jaw 0 006 @ 03525827 n 0000 #p 02915904 n 0000 #p 03027250 n 0000 #p 04606574 n 0000 #p 04538552 n 0000 #p 03966976 n 0000 | holding device consisting of one or both of the opposing parts of a tool that close to hold an object -03594523 06 n 01 Jaws_of_Life 0 002 @ 04451818 n 0000 ;u 06851742 n 0000 | hydraulic tool inserted into a wrecked vehicle and used to pry the wreckage apart in order to provide access to people trapped inside -03594734 06 n 03 jean 3 blue_jean 0 denim 3 004 @ 04489008 n 0000 @ 04603872 n 0000 ;u 06295235 n 0000 ~ 03660124 n 0000 | (usually plural) close-fitting trousers of heavy denim for manual work or casual wear -03594945 06 n 02 jeep 0 landrover 0 001 @ 02958343 n 0000 | a car suitable for traveling over rough terrain -03595055 06 n 01 jellaba 0 001 @ 03045337 n 0000 | a loose cloak with a hood; worn in the Middle East and northern Africa -03595179 06 n 01 je_ne_sais_quoi 0 001 @ 00002684 n 0000 | something indescribable -03595264 06 n 01 jerkin 0 001 @ 03589791 n 0000 | a tight sleeveless and collarless jacket (often made of leather) worn by men in former times -03595409 06 n 02 jeroboam 0 double-magnum 0 001 @ 04591713 n 0000 | a large wine bottle (holds 4/5 of a gallon) -03595523 06 n 01 jersey 0 001 @ 03625355 n 0000 | a slightly elastic machine-knit fabric -03595614 06 n 03 jersey 1 T-shirt 0 tee_shirt 0 002 @ 04197391 n 0000 ~ 04502197 n 0000 | a close-fitting pullover shirt -03595737 06 n 01 Jerusalem_cross 0 001 @ 03135152 n 0000 | a cross with equal arms, each terminating in a small crossbar -03595860 06 n 03 jet 0 jet_plane 0 jet-propelled_plane 0 007 @ 02691156 n 0000 + 01942234 v 0101 ~ 03321419 n 0000 %p 03596285 n 0000 ~ 03596543 n 0000 ~ 03604311 n 0000 ~ 04503499 n 0000 | an airplane powered by one or more jet engines -03596099 06 n 01 jet_bridge 0 001 @ 03379828 n 0000 | an extendible bridge for loading passengers onto large commercial airplanes; provides protected access to the plane from the gate -03596285 06 n 01 jet_engine 0 007 @ 04057435 n 0000 #p 03595860 n 0000 ~ 03321103 n 0000 ~ 04051269 n 0000 ~ 04099175 n 0000 %p 04111668 n 0000 -c 07422629 n 0000 | a gas turbine produces a stream of hot gas that propels a jet plane by reaction propulsion -03596543 06 n 01 jetliner 0 001 @ 03595860 n 0000 | a large jet plane that carries passengers -03596639 06 n 01 jetsam 1 001 @ 03892891 n 0000 | the part of a ship's equipment or cargo that is thrown overboard to lighten the load in a storm -03596787 06 n 03 jewel 0 gem 0 precious_stone 0 013 @ 03597469 n 0000 + 10221956 n 0102 + 10221777 n 0101 + 10221956 n 0103 + 10221777 n 0102 + 01678685 v 0102 ~ 03139341 n 0000 ~ 04259364 n 0000 ~ 13371958 n 0000 ~ 13372262 n 0000 ~ 13372403 n 0000 ~ 13372665 n 0000 ~ 13372812 n 0000 | a precious or semiprecious stone incorporated into a piece of jewelry -03597147 06 n 01 jeweler's_glass 0 001 @ 03852280 n 0000 | an optical instrument used by jewelers; has one or more lenses and is used to view features not readily seen -03597317 06 n 02 jewelled_headdress 0 jeweled_headdress 0 003 @ 03502509 n 0000 ~ 03138669 n 0000 ~ 04432203 n 0000 | a headdress adorned with jewels -03597469 06 n 02 jewelry 0 jewellery 0 016 @ 02681518 n 0000 + 01678685 v 0202 + 01678685 v 0102 ~ 02815071 n 0000 ~ 02837702 n 0000 ~ 02852043 n 0000 ~ 02887970 n 0000 ~ 03044166 n 0000 ~ 03146075 n 0000 ~ 03262349 n 0000 ~ 03596787 n 0000 ~ 03814906 n 0000 ~ 03940713 n 0000 ~ 04092609 n 0000 ~ 04433800 n 0000 %p 14699752 n 0000 | an adornment (as a bracelet or ring or necklace) made of precious metals and set with gems (or imitation gems) -03597916 06 n 03 jew's_harp 0 jews'_harp 0 mouth_bow 0 001 @ 03800933 n 0000 | a small lyre-shaped musical instrument that is placed between the teeth and played by twanging a wire tongue while changing the shape of the mouth cavity -03598151 06 n 01 jib 0 003 @ 03381776 n 0000 + 01946817 v 0103 ~ 03374282 n 0000 | any triangular fore-and-aft sail (set forward of the foremast) -03598299 06 n 01 jibboom 0 001 @ 04267577 n 0000 | a spar that extends the bowsprit -03598385 06 n 01 jig 0 001 @ 03183080 n 0000 | a device that holds a piece of machine work and guides the tools operating on it -03598515 06 n 01 jig 1 001 @ 03350602 n 0000 | a fisherman's lure with one or more hooks that is jerked up and down in the water -03598646 06 n 02 jiggermast 0 jigger 1 001 @ 03726760 n 0000 | any small mast on a sailing vessel; especially the mizzenmast of a yawl -03598783 06 n 03 jigsaw 0 scroll_saw 0 fretsaw 0 001 @ 03996145 n 0000 | fine-toothed power saw with a narrow blade; used to cut curved outlines -03598930 06 n 01 jigsaw_puzzle 0 001 @ 04028315 n 0000 | a puzzle that requires you to reassemble a picture that has been mounted on a stiff base and cut into interlocking pieces -03599111 06 n 01 jim_crow 0 001 @ 03138344 n 0000 | a crowbar fitted with a claw for pulling nails -03599212 06 n 03 jimdandy 0 jimhickey 0 crackerjack 0 001 @ 04424418 n 0000 | something excellent of its kind; "the bike was a jimdandy" -03599351 06 n 02 jimmy 0 jemmy 0 002 @ 03138344 n 0000 + 01593254 v 0105 | a short crowbar; "in Britain they call a jimmy and jemmy" -03599486 06 n 03 jinrikisha 0 ricksha 0 rickshaw 0 001 @ 02970849 n 0000 | a small two-wheeled cart for one passenger; pulled by one person -03599628 06 n 01 job 0 003 @ 04602044 n 0000 + 02420789 v 0101 + 02461063 v 0103 | a workplace; as in the expression "on the job"; -03599761 06 n 01 job 1 003 @ 04007894 n 0000 + 02420789 v 0101 + 02461063 v 0103 | an object worked on; a result produced by working; "he held the job in his left hand and worked on it with his right" -03599964 06 n 01 jobcentre 0 002 @ 03449858 n 0000 ;r 08860123 n 0000 | a government office in a town where information about available jobs is displayed and where unemployment benefits are administered -03600169 06 n 01 job-oriented_terminal 0 001 @ 04413419 n 0000 | a terminal designed for a particular application -03600285 06 n 03 jodhpurs 0 jodhpur_breeches 0 riding_breeches 0 003 @ 04489008 n 0000 #p 03474167 n 0000 ;u 06295235 n 0000 | flared trousers ending at the calves; worn with riding boots -03600475 06 n 03 jodhpur 1 jodhpur_boot 0 jodhpur_shoe 0 001 @ 04089666 n 0000 | a short riding boot that fastens with a buckle at the side -03600617 06 n 01 Johns_Hopkins 0 002 @i 04511002 n 0000 #p 09094381 n 0000 | a university in Baltimore -03600722 06 n 01 joinery 0 001 @ 04598792 n 0000 | fine woodwork done by a joiner -03600806 06 n 05 joint 0 marijuana_cigarette 0 reefer 0 stick 2 spliff 0 002 @ 03030663 n 0000 %s 02949691 n 0000 | marijuana leaves rolled into a cigarette for smoking -03600977 06 n 01 joint 1 015 @ 03605915 n 0000 + 01604696 v 0101 + 02660147 v 0101 ~ 02779719 n 0000 ~ 02928413 n 0000 ~ 03521076 n 0000 ~ 03627954 n 0000 ~ 03642573 n 0000 ~ 03774461 n 0000 ~ 03787523 n 0000 ~ 04036963 n 0000 ~ 04144241 n 0000 ~ 04160372 n 0000 ~ 04445782 n 0000 ~ 04571958 n 0000 | junction by which parts or objects are joined together -03601335 06 n 01 joint 2 002 @ 04286128 n 0000 ~ 03603199 n 0000 | a disreputable place of entertainment -03601442 06 n 02 Joint_Direct_Attack_Munition 0 JDAM 0 001 @ 03465818 n 0000 | a pinpoint bomb guidance device that can be strapped to a gravity bomb thus converting dumb bombs into smart bombs -03601638 06 n 04 jointer 0 jointer_plane 0 jointing_plane 0 long_plane 0 002 @ 03954731 n 0000 + 02354287 v 0101 | a long carpenter's plane used to shape the edges of boards so they will fit together -03601840 06 n 01 joist 0 003 @ 02815950 n 0000 ~ 03366974 n 0000 ~ 04483584 n 0000 | beam used to support floors or roofs -03601964 06 n 01 joker 0 001 @ 03963982 n 0000 | a playing card that is usually printed with a picture of a jester -03602081 06 n 02 jolly_boat 0 jolly 0 001 @ 04612504 n 0000 | a yawl used by a ship's sailors for general work -03602194 06 n 01 jorum 0 001 @ 02881193 n 0000 | a large drinking bowl -03602267 06 n 01 joss 0 001 @ 03560161 n 0000 | a Chinese god worshipped in the form of an idol -03602365 06 n 01 joss_house 0 001 @ 04407435 n 0000 | a Chinese temple or shrine for idol worship -03602465 06 n 01 journal 0 001 @ 02764779 n 0000 | the part of the axle contained by a bearing -03602562 06 n 01 journal 1 003 @ 02870092 n 0000 ~ 03165211 n 0000 ~ 03189707 n 0000 | a record book as a physical object -03602686 06 n 01 journal_bearing 0 002 @ 02817031 n 0000 ~ 03542220 n 0000 | the bearing of a journal -03602790 06 n 01 journal_box 0 001 @ 03546766 n 0000 | metal housing for a journal bearing -03602883 06 n 01 joystick 1 002 @ 03096960 n 0000 @ 03163973 n 0000 | a manual control consisting of a vertical handle that can move freely in two directions; used as an input device to computers or to devices controlled by computers -03603119 06 n 01 judas 0 001 @ 03905208 n 0000 | a one-way peephole in a door -03603199 06 n 06 juke 0 jook 0 juke_joint 0 jook_joint 0 juke_house 0 jook_house 0 001 @ 03601335 n 0000 | a small roadside establishment in the southeastern United States where you can eat and drink and dance to music provided by a jukebox -03603442 06 n 01 jungle_gym 0 002 @ 04341686 n 0000 @ 03964744 n 0000 | a structure of vertical and horizontal rods where children can climb and play -03603594 06 n 01 junk 1 002 @ 02858304 n 0000 %p 03696568 n 0000 | any of various Chinese boats with a high poop and lugsails -03603722 06 n 01 jug 0 005 @ 02876657 n 0000 + 00324071 v 0101 ~ 02825240 n 0000 ~ 04560804 n 0000 ~ 04579145 n 0000 | a large bottle with a narrow mouth -03603878 06 n 01 Juggernaut 0 001 @ 03560161 n 0000 | a crude idol of Krishna -03603958 06 n 05 juju 0 voodoo 0 hoodoo 0 fetish 0 fetich 0 004 @ 03009633 n 0000 + 10085548 n 0401 + 02726717 v 0301 + 00777391 v 0201 | a charm superstitiously believed to embody magical powers -03604156 06 n 02 jukebox 0 nickelodeon 0 001 @ 04064401 n 0000 | a cabinet containing an automatic record player; records are played by inserting a coin -03604311 06 n 02 jumbojet 0 jumbo_jet 0 001 @ 03595860 n 0000 | a very large jet plane -03604400 06 n 03 jumper 0 pinafore 0 pinny 0 001 @ 03236735 n 0000 | a sleeveless dress resembling an apron; worn over other clothing -03604536 06 n 01 jumper 1 001 @ 03589791 n 0000 | a loose jacket or blouse worn by workmen -03604629 06 n 01 jumper 2 002 @ 03091374 n 0000 ~ 03604843 n 0000 | a small connector used to make temporary electrical connections -03604763 06 n 01 jumper 3 001 @ 03121897 n 0000 | a coverall worn by children -03604843 06 n 04 jumper_cable 0 jumper_lead 0 lead 1 booster_cable 0 003 @ 03604629 n 0000 @ 04594489 n 0000 ~ 03044671 n 0000 | a jumper that consists of a short piece of wire; "it was a tangle of jumper cables and clip leads" -03605073 06 n 01 jumping_jack 0 001 @ 03964744 n 0000 | plaything consisting of a toy figure with movable joints that can be made to dance by pulling strings -03605233 06 n 03 jump_rope 0 skip_rope 0 skipping_rope 0 001 @ 04108268 n 0000 | a length of rope (usually with handles on each end) that is swung around while someone jumps over it -03605417 06 n 01 jump_seat 0 001 @ 04161358 n 0000 | a folding seat in an automobile -03605504 06 n 01 jump_suit 0 001 @ 04509592 n 0000 | one-piece uniform worn by parachutists -03605598 06 n 02 jump_suit 1 jumpsuit 0 001 @ 03419014 n 0000 | one-piece garment fashioned after a parachutist's uniform -03605722 06 n 01 junction 0 006 @ 08664443 n 0000 ~ 03577818 n 0000 ~ 03581125 n 0000 ~ 04048979 n 0000 ~ 04441902 n 0000 ~ 04465933 n 0000 | the place where two or more things come together -03605915 06 n 02 junction 1 conjunction 0 006 @ 03091374 n 0000 ~ 03093792 n 0000 ~ 03600977 n 0000 ~ 03606106 n 0000 ~ 04281998 n 0000 ~ 04421740 n 0000 | something that joins or connects -03606106 06 n 02 junction_barrier 0 barrier_strip 0 001 @ 03605915 n 0000 | a junction unit for connecting 2 cables without the need for plugs -03606251 06 n 01 junk_shop 0 001 @ 04202417 n 0000 | a shop that sells cheap secondhand goods -03606347 06 n 01 jury_box 0 002 @ 02884011 n 0000 #p 03120778 n 0000 | an enclosure within a courtroom for the jury -03606465 06 n 01 jury_mast 0 001 @ 03726760 n 0000 | a temporary mast to replace one that has broken off -03606572 06 n 08 K 0 jet 2 super_acid 0 special_K 0 honey_oil 0 green 0 cat_valium 0 super_C 0 001 @ 03611590 n 0000 | street names for ketamine -03606719 06 n 02 Kaaba 0 Caaba 0 003 @i 04210390 n 0000 #p 08994090 n 0000 ;c 06234825 n 0000 | (Islam) a black stone building in Mecca that is shaped like a cube and that is the most sacred Muslim pilgrim shrine; believed to have been given by Gabriel to Abraham; Muslims turn in its direction when praying -03607029 06 n 01 kachina 0 001 @ 03219135 n 0000 | a carved doll wearing the costume of a particular Pueblo spirit; usually presented to a child as a gift -03607186 06 n 01 kaffiyeh 0 001 @ 03502509 n 0000 | an Arab headdress consisting of a square piece of cloth folded into a triangle and fastened over the crown by an agal -03607358 06 n 01 Kakemono 0 001 @ 03491178 n 0000 | a Japanese (paper or silk) wall hanging; usually narrow with a picture or writing on it and a roller at the bottom -03607527 06 n 01 kalansuwa 0 001 @ 02954340 n 0000 | a cap that is wrapped around by a turban and worn by Muslim religious elders -03607659 06 n 01 Kalashnikov 0 001 @ 04347519 n 0000 | a type of submachine gun made in Russia -03607756 06 n 01 kaleidoscope 0 001 @ 03964744 n 0000 | an optical toy in a tube; it produces symmetrical patterns as bits of colored glass are reflected by mirrors -03607923 06 n 01 kameez 0 001 @ 04497570 n 0000 | a long tunic worn by many people from the Indian subcontinent (usually with a salwar or churidars) -03608074 06 n 01 kamikaze 0 002 @ 03335030 n 0000 ;r 08921850 n 0000 | a fighter plane used for suicide missions by Japanese pilots in World War II -03608224 06 n 01 Kammon_Strait_Bridge 0 002 @i 04366367 n 0000 #p 08921850 n 0000 | a suspension bridge between Kyushu and Honshu -03608356 06 n 02 kanamycin 0 Kantrex 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | antibiotic (trade name Kantrex) used to treat severe infections -03608504 06 n 01 kanzu 0 002 @ 03419014 n 0000 ;c 06995792 n 0000 | (Swahili) a long garment (usually white) with long sleeves; worn by men in East Africa -03608661 06 n 01 Kaopectate 0 003 @ 02719294 n 0000 %s 14670639 n 0000 %s 14978232 n 0000 | trade name for a fixed-combination antidiarrheal drug that use kaolin as the adsorbent and pectin as the emollient -03608870 06 n 07 kat 0 khat 0 qat 0 quat 0 cat 2 Arabian_tea 0 African_tea 0 001 @ 04320126 n 0000 | the leaves of the shrub Catha edulis which are chewed like tobacco or used to make tea; has the effect of a euphoric stimulant; "in Yemen kat is used daily by 85% of adults" -03609147 06 n 01 katharometer 0 001 @ 03733925 n 0000 | measures thermal conductivity -03609235 06 n 01 kayak 0 002 @ 02951358 n 0000 + 01947735 v 0101 | a small canoe consisting of a light frame made watertight with animal skins; used by Eskimos -03609397 06 n 01 kazoo 0 001 @ 04586932 n 0000 | a toy wind instrument that has a membrane that makes a sound when you hum into the mouthpiece -03609542 06 n 01 keel 0 004 @ 02815950 n 0000 #p 03548626 n 0000 ~ 02838178 n 0000 %p 03343047 n 0000 | one of the main longitudinal beams (or plates) of the hull of a vessel; can extend vertically into the water to provide lateral stability -03609786 06 n 01 keelboat 0 001 @ 04095210 n 0000 | river boat with a shallow draught and a keel but no sails; used to carry freight; moved by rowing or punting or towing -03609959 06 n 01 keelson 0 002 @ 02815950 n 0000 #p 03548626 n 0000 | a longitudinal beam connected to the keel of ship to strengthen it -03610098 06 n 03 keep 0 donjon 0 dungeon 0 003 @ 04340935 n 0000 #p 02980441 n 0000 ~i 02847223 n 0000 | the main tower within the walls of a medieval castle or fortress -03610270 06 n 04 keepsake 0 souvenir 0 token 1 relic 1 003 @ 00002684 n 0000 ~ 03693617 n 0000 ~ 03894762 n 0000 | something of sentimental value -03610418 06 n 01 keg 0 003 @ 02795169 n 0000 ~ 03349296 n 0000 ~ 03994757 n 0000 | small cask or barrel -03610524 06 n 03 kennel 0 doghouse 0 dog_house 0 003 @ 03859280 n 0000 @ 04191943 n 0000 + 02459799 v 0101 | outbuilding that serves as a shelter for a dog -03610682 06 n 04 kepi 0 peaked_cap 0 service_cap 0 yachting_cap 0 002 @ 02954340 n 0000 %p 02838728 n 0000 | a cap with a flat circular top and a visor -03610836 06 n 01 keratoscope 0 001 @ 03739693 n 0000 | medical instrument to examine the cornea in order to detect irregularities in its anterior surface -03610992 06 n 01 kerchief 0 003 @ 04143897 n 0000 ~ 03505504 n 0000 ~ 03814817 n 0000 | a square scarf that is folded into a triangle and worn over the head or about the neck -03611169 06 n 01 kern 0 003 @ 04504486 n 0000 + 02365936 v 0101 + 02366105 v 0101 | the part of a metal typeface that projects beyond its body -03611314 06 n 01 Kerr_cell 0 001 @ 03851341 n 0000 | optical device consisting of a transparent cell with two electrodes between two polarizing media; passes light only if the two planes of polarization are parallel; used as a high-speed shutter or to modulate a laser beam -03611590 06 n 03 ketamine 0 ketamine_hydrochloride 0 Ketalar 0 003 @ 03433434 n 0000 @ 03054098 n 0000 ~ 03606572 n 0000 | a general anesthetic and tranquilizer (not a barbiturate) that is administered intravenously or intramuscularly; used mainly by veterinarians or for minor surgery with geriatric or pediatric patients; taken in large doses it causes hallucinations similar to those associated with the use of PCP -03612010 06 n 01 ketch 0 001 @ 04128837 n 0000 | a sailing vessel with two masts; the mizzen is forward of the rudderpost -03612134 06 n 04 ketoprofen 0 Orudis 0 Orudis_KT 0 Oruvail 0 005 @ 03828465 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 %s 14862753 n 0000 | nonsteroidal anti-inflammatory drug (trade names Orudis or Orudis KT or Oruvail) -03612378 06 n 02 ketorolac 0 Torodal 1 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14599168 n 0000 | nonsteroidal anti-inflammatory (trade name Torodal) that is given only orally -03612559 06 n 03 ketorolac_tromethamine 0 Acular 0 Toradol 0 004 @ 03828465 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 %s 14599168 n 0000 | nonsteroidal anti-inflammatory drug (trade names Acular and Toradol) that is administered only intramuscularly -03612814 06 n 02 kettle 0 boiler 1 003 @ 03990474 n 0000 + 00328128 v 0201 ~ 04397768 n 0000 | a metal pot for stewing or boiling; usually has a lid -03612965 06 n 05 kettle 1 kettledrum 0 tympanum 0 tympani 0 timpani 0 007 @ 03915437 n 0000 + 10734963 n 0502 + 10734963 n 0401 + 10734963 n 0402 + 02945202 a 0401 + 10734963 n 0301 + 10734963 n 0302 | a large hemispherical brass or copper percussion instrument with a drumhead that can be tuned by adjusting the tension on it -03613294 06 n 01 key 0 008 @ 03183080 n 0000 + 01520655 v 0101 + 02338227 v 0101 %p 02845002 n 0000 ~ 03561047 n 0000 ~ 03645290 n 0000 ~ 03896984 n 0000 %p 04184095 n 0000 | metal device shaped in such a way that when it is inserted into the appropriate lock the lock's mechanism can be rotated -03613592 06 n 01 key 1 010 @ 03659292 n 0000 #m 03614007 n 0000 #p 02677718 n 0000 ~ 02771004 n 0000 ~ 03097673 n 0000 ~ 04084517 n 0000 ~ 04193377 n 0000 ~ 04264628 n 0000 ~ 04379096 n 0000 ~ 04400737 n 0000 | a lever (as in a keyboard) that actuates a mechanism when depressed -03613873 06 n 01 keyboard 0 001 @ 03525454 n 0000 | holder consisting of an arrangement of hooks on which keys or locks can be hung -03614007 06 n 01 keyboard 1 012 @ 03183080 n 0000 #p 03928116 n 0000 #p 03854065 n 0000 #p 04505036 n 0000 #p 03082979 n 0000 #p 04413419 n 0000 #p 04504770 n 0000 %p 02677718 n 0000 ~ 03085013 n 0000 %m 03613592 n 0000 ~ 03928814 n 0000 ~ 04505470 n 0000 | device consisting of a set of keys on a piano or organ or typewriter or typesetting machine or computer or the like -03614383 06 n 01 keyboard_buffer 0 001 @ 02911485 n 0000 | a buffer that keeps track of key strokes until the computer is ready to respond to them -03614532 06 n 01 keyboard_instrument 0 008 @ 03800933 n 0000 ~ 02672831 n 0000 ~ 02990758 n 0000 ~ 03038870 n 0000 ~ 03039015 n 0000 ~ 03854065 n 0000 ~ 03928116 n 0000 ~ 04376400 n 0000 | a musical instrument that is played by means of a keyboard -03614782 06 n 01 keyhole 0 002 @ 03526198 n 0000 #p 03682487 n 0000 | the hole where a key is inserted -03614887 06 n 01 keyhole_saw 0 001 @ 03488188 n 0000 | a handsaw with a long narrow blade for cutting short radius curves; similar to a compass saw -03615037 06 n 01 key_ring 0 001 @ 03533972 n 0000 | a circular ring of metal for holding keys -03615133 06 n 03 keystone 0 key 3 headstone 0 003 @ 02914813 n 0000 #p 02733524 n 0000 ~ 04035912 n 0000 | the central building block at the top of an arch or vault -03615300 06 n 02 khadi 0 khaddar 0 001 @ 03309808 n 0000 | a coarse homespun cotton cloth made in India -03615406 06 n 01 khaki 0 002 @ 03309808 n 0000 + 00376821 a 0101 | a sturdy twilled cloth of a yellowish brown color used especially for military uniforms -03615563 06 n 01 khakis 0 001 @ 03763968 n 0000 | a military uniform made of khaki fabric -03615655 06 n 01 khimar 0 001 @ 03505504 n 0000 | a headscarf worn by observant Muslim women that hangs down to just above the waist -03615790 06 n 01 khukuri 0 002 @ 03624134 n 0000 ;r 08906374 n 0000 | a curved steel knife with a razor-sharp edge used in combat by the Gurkhas; has cultural and religious significance in Nepal -03615987 06 n 01 kibble 0 001 @ 02909870 n 0000 | an iron bucket used for hoisting in wells or mining -03616091 06 n 01 kick_pleat 0 002 @ 03965907 n 0000 #p 04230808 n 0000 | pleat in back of a straight skirt to allow ease in walking -03616225 06 n 02 kicksorter 0 pulse_height_analyzer 0 001 @ 04147495 n 0000 | scientific instrument consisting of an electronic circuit that permits only voltage pulses of predetermined height to pass -03616428 06 n 01 kickstand 0 003 @ 04100174 n 0000 #p 02834778 n 0000 #p 03790512 n 0000 | a swiveling metal rod attached to a bicycle or motorcycle or other two-wheeled vehicle; the rod lies horizontally when not in use but can be kicked into a vertical position as a support to hold the vehicle upright when it is not being ridden -03616763 06 n 02 kick_starter 0 kick_start 0 004 @ 04304375 n 0000 #p 03790512 n 0000 + 01858016 v 0201 + 01858016 v 0101 | a starter (as on a motorcycle) that is activated with the foot and the weight of the body -03616979 06 n 02 kid_glove 0 suede_glove 0 001 @ 03441112 n 0000 | a glove made of fine soft leather (as kidskin) -03617095 06 n 01 kiln 0 006 @ 03404449 n 0000 ~ 02898093 n 0000 ~ 03252231 n 0000 ~ 03669534 n 0000 ~ 03797062 n 0000 ~ 03837606 n 0000 | a furnace for firing or burning or drying such things as porcelain or bricks -03617312 06 n 01 kilt 0 001 @ 04230808 n 0000 | a knee-length pleated tartan skirt worn by men as part of the traditional dress in the Highlands of northern Scotland -03617480 06 n 01 kimono 0 001 @ 04097866 n 0000 | a loose robe; imitated from robes originally worn by Japanese -03617594 06 n 03 kinescope 0 picture_tube 0 television_tube 0 003 @ 02985137 n 0000 #p 04405907 n 0000 ~ 03072440 n 0000 | a cathode-ray tube in a television receiver; translates the received signal into a picture on a luminescent screen -03617834 06 n 01 Kinetoscope 0 002 @ 03183080 n 0000 ;u 06845599 n 0000 | a device invented by Edison that gave an impression of movement as an endless loop of film moved continuously over a light source with a rapid shutter; precursor of the modern motion picture -03618101 06 n 01 king 0 002 @ 03014440 n 0000 ;c 00503237 n 0000 | (chess) the weakest but the most important piece -03618219 06 n 01 king 1 001 @ 03314028 n 0000 | one of the four playing cards in a deck bearing the picture of a king -03618339 06 n 01 king 2 002 @ 03011355 n 0000 ;c 00502952 n 0000 | a checker that has been moved to the opponent's first row where it is promoted to a piece that is free to move either forward or backward -03618546 06 n 03 kingbolt 0 kingpin 0 swivel_pin 0 001 @ 02865665 n 0000 | bolt that provides a steering joint in a motor vehicle -03618678 06 n 01 king_post 0 001 @ 03988170 n 0000 | post connecting the crossbeam to the apex of a triangular truss -03618797 06 n 01 Kipp's_apparatus 0 001 @ 02727825 n 0000 | a laboratory apparatus for producing a gas (usually hydrogen sulfide) by the action of a liquid on a solid without heating -03618982 06 n 01 kirk 0 001 @ 03028079 n 0000 | a Scottish church -03619050 06 n 01 kirpan 0 001 @ 03158885 n 0000 | a ceremonial four-inch curved dagger that Sikh men and women are obliged to wear at all times -03619196 06 n 01 kirtle 0 001 @ 03236735 n 0000 | a long dress worn by women -03619275 06 n 01 kirtle 2 001 @ 04497570 n 0000 | a garment resembling a tunic that was worn by men in the Middle Ages -03619396 06 n 02 kit 0 outfit 0 008 @ 03430959 n 0000 + 02339413 v 0204 + 02341200 v 0103 ~ 02966687 n 0000 ~ 03349469 n 0000 ~ 03650551 n 0000 ~ 03751458 n 0000 ~ 04179824 n 0000 | gear consisting of a set of articles or tools for a specified purpose -03619650 06 n 01 kit 1 004 @ 02974697 n 0000 + 02341200 v 0103 ~ 03214582 n 0000 ~ 04447156 n 0000 | a case for containing a set of articles -03619793 06 n 02 kitbag 0 kit_bag 0 001 @ 02769748 n 0000 | a knapsack (usually for a soldier) -03619890 06 n 01 kitchen 0 005 @ 04105893 n 0000 #p 03259505 n 0000 ~ 03412220 n 0000 ~ 03412387 n 0000 ~ 03620353 n 0000 | a room equipped for preparing meals -03620052 06 n 01 kitchen_appliance 0 012 @ 03528263 n 0000 ~ 03063338 n 0000 ~ 03212114 n 0000 ~ 03378174 n 0000 ~ 03543254 n 0000 ~ 03557692 n 0000 ~ 03761084 n 0000 ~ 03862676 n 0000 ~ 04330340 n 0000 ~ 04442312 n 0000 ~ 04442441 n 0000 ~ 04542943 n 0000 | a home appliance used in preparing food -03620353 06 n 01 kitchenette 0 002 @ 03619890 n 0000 #p 02726305 n 0000 | small kitchen -03620443 06 n 03 kitchen_garden 0 vegetable_garden 0 vegetable_patch 0 002 @ 03417345 n 0000 ~ 04533373 n 0000 | a small garden where vegetables are grown -03620600 06 n 01 kitchen_island 0 001 @ 03587318 n 0000 | an unattached counter in a kitchen that permits access from all sides -03620730 06 n 01 kitchen_match 0 001 @ 03728437 n 0000 | a wooden friction match that will light on any granular surface; useful to light wood or gas stoves -03620889 06 n 01 kitchen_sink 0 001 @ 04223580 n 0000 | a sink in a kitchen -03620967 06 n 01 kitchen_table 0 001 @ 04379243 n 0000 | a table in the kitchen -03621049 06 n 01 kitchen_utensil 0 014 @ 04516672 n 0000 ~ 03012499 n 0000 ~ 03101517 n 0000 ~ 03101986 n 0000 ~ 03454885 n 0000 ~ 03621377 n 0000 ~ 03724417 n 0000 ~ 03767966 n 0000 ~ 03775199 n 0000 ~ 04088441 n 0000 ~ 04103206 n 0000 ~ 04167228 n 0000 ~ 04293119 n 0000 ~ 04396902 n 0000 | a utensil used in preparing food -03621377 06 n 01 kitchenware 0 001 @ 03621049 n 0000 | hardware utensils for use in a kitchen -03621473 06 n 01 kite 0 005 @ 03964744 n 0000 + 01848190 v 0101 ~ 02885785 n 0000 %p 03621826 n 0000 ~ 04284869 n 0000 | plaything consisting of a light frame covered with tissue paper; flown in wind at end of a string -03621694 06 n 01 kite_balloon 0 001 @ 02794972 n 0000 | a barrage balloon with lobes at one end that keep it headed into the wind -03621826 06 n 01 kite_tail 0 002 @ 02860239 n 0000 #p 03621473 n 0000 | a bob on a kite to provide balance -03621935 06 n 01 kitsch 0 001 @ 02743547 n 0000 | excessively garish or sentimental art; usually considered in bad taste -03622058 06 n 02 klaxon 0 claxon 0 003 @ 03536761 n 0000 + 02183175 v 0204 + 01053495 v 0202 | a kind of loud horn formerly used on motor vehicles -03622207 06 n 01 Klein_bottle 0 001 @ 04362025 n 0000 | a closed surface with only one side; formed by passing one end of a tube through the side of the tube and joining it with the other end -03622401 06 n 01 klieg_light 0 001 @ 02961947 n 0000 | carbon arc lamp that emits an intense light used in producing films -03622526 06 n 01 klystron 0 001 @ 04494204 n 0000 | an electron tube used to generate or amplify electromagnetic radiation in the microwave region by velocity modulation -03622698 06 n 01 knee 0 002 @ 03050026 n 0000 #p 03654576 n 0000 | the part of a trouser leg that provides the cloth covering for the knee -03622839 06 n 01 knee_brace 0 001 @ 02887209 n 0000 | a brace worn to strengthen the knee -03622931 06 n 02 knee-high 0 knee-hi 0 002 @ 04254777 n 0000 @ 04323819 n 0000 | a sock or stocking that reaches up to just below the knees -03623073 06 n 01 kneeler 0 002 @ 02856463 n 0000 + 01545649 v 0101 | a board (sometimes cushioned) for someone to kneel on -03623198 06 n 01 knee_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn by football or baseball or hockey players -03623338 06 n 01 knee_piece 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the knee -03623448 06 n 02 knickknack 1 novelty 1 001 @ 00022903 n 0000 | a small inexpensive mass-produced article -03623556 06 n 01 knife 0 025 @ 03265032 n 0000 + 01231652 v 0101 ~ 02794368 n 0000 %p 02848216 n 0000 ~ 02864987 n 0000 ~ 02880842 n 0000 ~ 02893941 n 0000 ~ 02927053 n 0000 ~ 02973904 n 0000 ~ 02976123 n 0000 ~ 03041632 n 0000 ~ 03235327 n 0000 %p 03474896 n 0000 ~ 03549473 n 0000 %p 03624400 n 0000 ~ 03658185 n 0000 ~ 03675076 n 0000 ~ 03889397 n 0000 ~ 03890093 n 0000 ~ 03973628 n 0000 %p 03974215 n 0000 ~ 04016479 n 0000 ~ 04237287 n 0000 ~ 04364827 n 0000 ~ 04380346 n 0000 | edge tool used as a cutting instrument; has a pointed blade with a sharp edge and a handle -03624134 06 n 01 knife 1 010 @ 04565375 n 0000 + 01231652 v 0101 ~ 02812949 n 0000 ~ 03158885 n 0000 ~ 03615790 n 0000 ~ 03699591 n 0000 ~ 04198722 n 0000 ~ 04479287 n 0000 ~ 04612257 n 0000 %p 13902482 n 0000 | a weapon with a handle and blade with a sharp point -03624400 06 n 01 knife_blade 0 002 @ 02848216 n 0000 #p 03623556 n 0000 | the blade of a knife -03624497 06 n 02 knife_edge 0 cutting_edge 0 003 @ 03264136 n 0000 #p 02848216 n 0000 #p 03265032 n 0000 | the sharp cutting side of the blade of a knife -03624653 06 n 01 knife_pleat 0 002 @ 03965907 n 0000 ~ 04354966 n 0000 | a single pleat turned in one direction -03624767 06 n 02 knight 0 horse 0 002 @ 03014440 n 0000 ;c 00503237 n 0000 | a chessman shaped to resemble the head of a horse; can move two squares horizontally and one vertically (or vice versa) -03624966 06 n 03 knit 0 knitting 0 knitwork 0 005 @ 03816849 n 0000 + 01671039 v 0201 + 01671039 v 0101 + 01672014 v 0101 -c 01286038 v 0000 | needlework created by interlacing yarn in a series of connected loops using straight eyeless needles or by machine -03625226 06 n 04 knit 1 knit_stitch 0 plain 0 plain_stitch 0 002 @ 03625783 n 0000 + 01671039 v 0101 | a basic knitting stitch -03625355 06 n 01 knit 2 007 @ 03309808 n 0000 + 01671039 v 0101 ~ 02777638 n 0000 ~ 03227317 n 0000 ~ 03595523 n 0000 ~ 04323519 n 0000 ~ 04482297 n 0000 | a fabric made by knitting -03625539 06 n 01 knitting_machine 0 001 @ 04417180 n 0000 | a textile machine that makes knitted fabrics -03625646 06 n 01 knitting_needle 0 001 @ 03816136 n 0000 | needle consisting of a slender rod with pointed ends; usually used in pairs -03625783 06 n 01 knitting_stitch 0 005 @ 04321238 n 0000 ~ 03421485 n 0000 ~ 03625226 n 0000 ~ 04026180 n 0000 ~ 04323645 n 0000 | a stitch taken in knitting -03625943 06 n 01 knitwear 0 001 @ 03051540 n 0000 | knitted clothing -03626014 06 n 01 knob 0 003 @ 03485997 n 0000 ~ 03222959 n 0000 ~ 04327324 n 0000 | a round handle -03626115 06 n 02 knob 1 boss 0 004 @ 04008947 n 0000 + 01531265 v 0202 ~ 03626418 n 0000 ~ 03805374 n 0000 | a circular rounded projection or protuberance -03626272 06 n 02 knob 2 pommel 1 002 @ 03169390 n 0000 #p 03520654 n 0000 | an ornament in the shape of a ball on the hilt of a sword or dagger -03626418 06 n 01 knobble 0 002 @ 03626115 n 0000 + 02141735 a 0102 | a small knob -03626502 06 n 02 knobkerrie 0 knobkerry 0 001 @ 03053474 n 0000 | a short wooden club with a heavy knob on one end; used by aborigines in southern Africa -03626658 06 n 01 knockabout 0 001 @ 04242408 n 0000 | a sloop with a simplified rig and no bowsprit -03626760 06 n 03 knocker 0 doorknocker 0 rapper 0 002 @ 03183080 n 0000 #p 03399240 n 0000 | a device (usually metal and ornamental) attached by a hinge to a door -03626925 06 n 02 knockoff 0 clone 0 001 @ 03104594 n 0000 | an unauthorized copy or imitation -03627021 06 n 01 knockout_drops 0 003 @ 03021360 n 0000 ;u 06295235 n 0000 ~ 03758614 n 0000 | chloral hydrate in combination with alcohol; usually administered surreptitiously to make the drinker unconscious -03627232 06 n 01 knot 0 024 @ 03323703 n 0000 + 00255720 a 0101 + 01300144 v 0101 ~ 02795783 n 0000 ~ 02880189 n 0000 ~ 02969634 n 0000 ~ 03053047 n 0000 ~ 03335846 n 0000 ~ 03350352 n 0000 ~ 03350456 n 0000 ~ 03448031 n 0000 ~ 03477902 n 0000 ~ 03500295 n 0000 ~ 03522634 n 0000 ~ 03689570 n 0000 ~ 03693293 n 0000 ~ 03864139 n 0000 ~ 04010057 n 0000 ~ 04187885 n 0000 ~ 04241042 n 0000 ~ 04291759 n 0000 ~ 04328054 n 0000 ~ 04363874 n 0000 ~ 04499554 n 0000 | any of various fastenings formed by looping and tying a rope (or cord) upon itself or to another rope or to another object -03627819 06 n 01 knout 0 001 @ 04577769 n 0000 | a whip with a lash of leather thongs twisted with wire; used for flogging prisoners -03627954 06 n 02 knuckle_joint 0 hinge_joint 0 001 @ 03600977 n 0000 | a joint allowing movement in one plane only -03628071 06 n 01 kohl 0 001 @ 03714235 n 0000 | a cosmetic preparation used by women in Egypt and Arabia to darken the edges of their eyelids -03628215 06 n 01 koto 0 001 @ 04338517 n 0000 | Japanese stringed instrument that resembles a zither; has a rectangular wooden sounding board and usually 13 silk strings that are plucked with the fingers -03628421 06 n 01 kraal 0 001 @ 03907227 n 0000 | a pen for livestock in southern Africa -03628511 06 n 01 kremlin 0 001 @ 02806088 n 0000 | citadel of a Russian town -03628590 06 n 01 Kremlin 1 002 @i 02806088 n 0000 #p 09004068 n 0000 | citadel of Moscow, housing the offices of the Russian government -03628728 06 n 03 kris 0 creese 0 crease 0 001 @ 03158885 n 0000 | a Malayan dagger with a wavy blade -03628831 06 n 03 krummhorn 0 crumhorn 0 cromorne 0 001 @ 03228016 n 0000 | a Renaissance woodwind with a double reed and a curving tube (crooked horn) -03628984 06 n 01 Kundt's_tube 0 001 @ 03733925 n 0000 | a measuring instrument used to measure the speed of sound -03629100 06 n 01 Kurdistan 0 001 @ 04118021 n 0000 | an oriental rug woven by Kurds that is noted for fine colors and durability -03629231 06 n 01 kurta 0 001 @ 04197391 n 0000 | a loose collarless shirt worn by many people on the Indian subcontinent (usually with a salwar or churidars or pyjama) -03629401 06 n 02 kylie 0 kiley 0 001 @ 02871963 n 0000 | an Australian boomerang; one side flat and the other convex -03629520 06 n 02 kylix 0 cylix 0 001 @ 03147509 n 0000 | a shallow drinking cup with two handles; used in ancient Greece -03629643 06 n 02 kymograph 0 cymograph 0 001 @ 04147495 n 0000 | scientific instrument consisting of a rotating drum holding paper on which a stylus traces a continuous record (as of breathing or blood pressure) -03629857 06 n 02 laager 0 lager 0 002 @ 02944826 n 0000 ;r 08999482 n 0000 | a camp defended by a circular formation of wagons -03629986 06 n 06 lab 0 laboratory 0 research_lab 0 research_laboratory 0 science_lab 0 science_laboratory 0 006 @ 04602044 n 0000 ~ 02842008 n 0000 ~ 03013718 n 0000 ~ 03171094 n 0000 %p 03630262 n 0000 ~ 03928001 n 0000 | a workplace for the conduct of scientific research -03630262 06 n 02 lab_bench 0 laboratory_bench 0 002 @ 04600486 n 0000 #p 03629986 n 0000 | a workbench in a laboratory -03630383 06 n 02 lab_coat 0 laboratory_coat 0 001 @ 03057021 n 0000 | a light coat worn to protect clothing from substances used while working in a laboratory -03630544 06 n 04 labetalol 0 labetalol_hydrochloride 0 Trandate 0 Normodyne 0 002 @ 02854156 n 0000 @ 02721160 n 0000 | antihypertensive drug (trade names Trandate and Normodyne) that blocks alpha and beta-adrenergic receptors of the sympathetic nervous system (leading to a decrease in blood pressure) -03630849 06 n 02 labor_camp 0 labour_camp 0 001 @ 02945379 n 0000 | a penal institution for political prisoners who are used as forced labor -03630992 06 n 01 Labyrinth_of_Minos 0 002 @i 03733281 n 0000 #p 08784333 n 0000 | a vast labyrinth built in Crete by Daedalus at the command of Minos in order to contain the Minotaur -03631177 06 n 01 lace 0 009 @ 03309808 n 0000 + 01796600 a 0101 + 01674375 v 0101 + 01674717 v 0102 ~ 02908951 n 0000 ~ 03337727 n 0000 ~ 03703730 n 0000 ~ 03938522 n 0000 ~ 03975788 n 0000 | a delicate decorative fabric woven in an open web of symmetrical patterns -03631445 06 n 02 lace 1 lacing 0 006 @ 03106110 n 0000 #p 04199027 n 0000 + 01521603 v 0201 + 01521603 v 0101 ~ 02874537 n 0000 ~ 04200637 n 0000 | a cord that is drawn through eyelets or around hooks in order to draw together two edges (as of a shoe or garment) -03631710 06 n 01 lacework 0 001 @ 04599396 n 0000 | work consisting of (or resembling) lace fabric -03631811 06 n 01 lacquer 0 003 @ 03058107 n 0000 + 01682761 v 0101 ~ 03593222 n 0000 | a hard glossy coating -03631922 06 n 01 lacquerware 0 002 @ 04599396 n 0000 ~ 03593362 n 0000 | a decorative work made of wood and covered with lacquer and often inlaid with ivory or precious metals -03632100 06 n 01 lacrosse_ball 0 001 @ 02778669 n 0000 | ball used in playing lacrosse -03632189 06 n 02 lacuna 0 blank 2 001 @ 03416329 n 0000 | a blank gap or missing part -03632277 06 n 01 ladder 0 010 @ 04298171 n 0000 ~ 02745228 n 0000 ~ 03307156 n 0000 ~ 03591116 n 0000 ~ 03782689 n 0000 ~ 04108908 n 0000 %p 04119751 n 0000 ~ 04142327 n 0000 ~ 04159676 n 0000 ~ 04315599 n 0000 | steps consisting of two parallel members connected by rungs; for climbing up or down -03632577 06 n 01 ladder-back 0 002 @ 02767433 n 0000 #p 03632729 n 0000 | the backrest of a chair that consists of two uprights with connecting slats -03632729 06 n 02 ladder-back 1 ladder-back_chair 0 002 @ 03001627 n 0000 %p 03632577 n 0000 | a chair with a ladder-back -03632852 06 n 02 ladder_truck 0 aerial_ladder_truck 0 001 @ 03345487 n 0000 | a fire engine carrying ladders -03632963 06 n 02 ladies'_room 0 powder_room 0 001 @ 04018667 n 0000 | a woman's restroom in a public (or semipublic) building -03633091 06 n 01 ladle 0 006 @ 04531098 n 0000 + 01578993 v 0101 ~ 03204306 n 0000 %p 03485997 n 0000 ~ 04149083 n 0000 ~ 04263336 n 0000 | a spoon-shaped vessel with a long handle; frequently used to transfer liquids from one container to another -03633341 06 n 01 lady_chapel 0 002 @ 03007130 n 0000 #p 03028079 n 0000 | a small chapel in a church; dedicated to the Virgin Mary -03633474 06 n 03 lagan 0 lagend 0 ligan 0 001 @ 04606358 n 0000 | goods (or wreckage) on the sea bed that is attached to a buoy so that it can be recovered -03633632 06 n 01 lagerphone 0 002 @ 03915437 n 0000 ;r 08831004 n 0000 | an Australian percussion instrument used for playing bush music; a long stick with bottle caps nailed loosely to it; played by hitting it with a stick or banging it on the ground -03633886 06 n 02 lag_screw 0 lag_bolt 0 001 @ 04598136 n 0000 | a heavy woodscrew with a square or hexagonal head that is driven in with a wrench -03634034 06 n 02 lake_dwelling 0 pile_dwelling 0 001 @ 03259505 n 0000 | dwelling built on piles in or near a lake; specifically in prehistoric villages -03634189 06 n 01 Lake_Mead 0 003 @i 04078747 n 0000 #p 09057311 n 0000 #p 09110422 n 0000 | the largest reservoir in the United States; located in southeastern Nevada and northwestern Arizona and formed by the Hoover Dam on the Colorado River; the center of a recreational area -03634469 06 n 01 Lake_Powell 0 003 @i 04078747 n 0000 #p 09057311 n 0000 #p 09147046 n 0000 | the second largest reservoir in the United States; located in southern Utah and north central Arizona and formed by the Glen Canyon Dam on the Colorado River -03634723 06 n 01 Lake_Volta 0 002 @i 04078747 n 0000 #p 08946187 n 0000 | the Volta river in southeastern has been dammed to create one of the world's largest man-made lakes -03634899 06 n 02 lally 0 lally_column 0 001 @ 04360798 n 0000 | support column consisting of a steel cylinder filled with concrete -03635032 06 n 01 lamasery 0 001 @ 03781244 n 0000 | a monastery for lamas -03635108 06 n 01 lambrequin 0 001 @ 03491178 n 0000 | short and decorative hanging for a shelf edge or top of a window casing -03635236 06 n 01 lambrequin 1 001 @ 04143897 n 0000 | a scarf that covers a knight's helmet -03635330 06 n 01 lame 0 001 @ 03309808 n 0000 | a fabric interwoven with threads of metal; "she wore a gold lame dress" -03635452 06 n 01 lamella 0 001 @ 03959936 n 0000 | thin plate -03635516 06 n 01 laminar_flow_clean_room 0 001 @ 03040376 n 0000 | a clean room free of all extraneous particles; used in fabricating microprocessors -03635668 06 n 01 laminate 0 009 @ 04188643 n 0000 @ 03635932 n 0000 + 01232387 v 0101 + 01365131 v 0101 + 01391538 v 0101 + 01625666 v 0101 %p 03650173 n 0000 ~ 03958630 n 0000 ~ 03971218 n 0000 | a sheet of material made by bonding two or more sheets or layers -03635932 06 n 01 lamination 0 004 @ 04341686 n 0000 + 01625666 v 0101 + 01365131 v 0101 ~ 03635668 n 0000 | a layered structure -03636062 06 n 02 lamivudine 0 3TC 0 001 @ 03834836 n 0000 | a nucleoside reverse transcriptase inhibitor that is very effective in combination with zidovudine in treating AIDS and HIV -03636248 06 n 01 lamp 0 018 @ 04263760 n 0000 ~ 02694279 n 0000 ~ 02948072 n 0000 ~ 03206023 n 0000 ~ 03272383 n 0000 ~ 03358172 n 0000 ~ 03370387 n 0000 ~ 03423877 n 0000 ~ 03549897 n 0000 ~ 03640988 n 0000 ~ 03669665 n 0000 ~ 03818343 n 0000 ~ 03844045 n 0000 ~ 04256318 n 0000 ~ 04280373 n 0000 ~ 04286575 n 0000 ~ 04335886 n 0000 ~ 04384910 n 0000 | an artificial source of visible illumination -03636649 06 n 01 lamp 1 008 @ 03405725 n 0000 %p 02798574 n 0000 %p 03194812 n 0000 %p 03274137 n 0000 ~ 03367059 n 0000 %p 03637318 n 0000 ~ 04057981 n 0000 ~ 04380533 n 0000 | a piece of furniture holding one or more electric light bulbs -03636891 06 n 02 lamp_chimney 0 chimney 1 002 @ 03368878 n 0000 #p 03844045 n 0000 | a glass flue surrounding the wick of an oil lamp -03637027 06 n 03 lamp_house 0 lamphouse 0 lamp_housing 0 002 @ 03546766 n 0000 #p 03795976 n 0000 | housing that holds a lamp (as in a movie projector) -03637181 06 n 01 lamppost 0 002 @ 03988170 n 0000 #p 04335886 n 0000 | a metal post supporting an outdoor lamp (such as a streetlight) -03637318 06 n 02 lampshade 0 lamp_shade 0 002 @ 04181718 n 0000 #p 03636649 n 0000 | a protective ornamental shade used to screen a light bulb from direct view -03637480 06 n 01 lanai 0 002 @ 04527648 n 0000 ;r 09078231 n 0000 | a veranda or roofed patio often furnished and used as a living room -03637618 06 n 02 lancet 0 lance 2 002 @ 04364827 n 0000 + 01603885 v 0201 | a surgical knife with a pointed double-edged blade; used for punctures and small incisions -03637787 06 n 02 lancet_arch 0 lancet 1 001 @ 03448956 n 0000 | an acutely pointed Gothic arch, like a lance -03637898 06 n 01 lancet_window 0 001 @ 04587648 n 0000 | a narrow window having a lancet arch and without tracery -03638014 06 n 01 landau 0 001 @ 02968473 n 0000 | a four-wheel covered carriage with a roof divided into two parts (front and back) that can be let down separately -03638180 06 n 01 lander 0 002 @ 04264914 n 0000 + 01979901 v 0101 | a space vehicle that is designed to land on the moon or another planet -03638321 06 n 02 landing 0 landing_place 0 004 @ 04341686 n 0000 #p 08639058 n 0000 ~ 03216828 n 0000 %p 03639360 n 0000 | structure providing a place where boats can land people or goods -03638511 06 n 01 landing 1 002 @ 03961939 n 0000 #p 04298308 n 0000 | an intermediate platform in a staircase -03638623 06 n 01 landing_craft 0 001 @ 03125870 n 0000 | naval craft designed for putting ashore troops and equipment -03638743 06 n 01 landing_flap 0 001 @ 03357716 n 0000 | a flap on the underside of the wing that is lowered to slow the plane for landing -03638883 06 n 01 landing_gear 0 004 @ 04507453 n 0000 #p 02691156 n 0000 ~ 03639230 n 0000 %p 03832144 n 0000 | an undercarriage that supports the weight of the plane when it is on the ground -03639077 06 n 01 landing_net 0 002 @ 03352628 n 0000 #m 03351434 n 0000 | a bag-shaped fishnet on a long handle to take a captured fish from the water -03639230 06 n 01 landing_skid 0 002 @ 03638883 n 0000 #p 03512147 n 0000 | one of two parts of the landing gear of a helicopter -03639360 06 n 01 landing_stage 0 002 @ 03961939 n 0000 #p 03638321 n 0000 | platform from which passengers and cargo can be (un)loaded -03639497 06 n 02 land_line 0 landline 0 001 @ 04402057 n 0000 | a telephone line that travels over terrestrial circuits; "a land line can be wire or fiber optics or microwave" -03639675 06 n 03 land_mine 0 ground-emplaced_mine 0 booby_trap 0 003 @ 03768132 n 0000 ~ 02878796 n 0000 ~ 03039353 n 0000 | an explosive mine hidden underground; explodes when stepped on or driven over -03639880 06 n 01 land_office 0 001 @ 03449858 n 0000 | a government office where business relating to public lands is transacted -03640011 06 n 02 landscape 0 landscape_painting 0 002 @ 03434943 n 0000 + 10246176 n 0101 | a genre of art dealing with the depiction of natural scenery -03640166 06 n 01 landscape 1 002 @ 03876519 n 0000 + 10246176 n 0101 | painting depicting an expanse of natural scenery -03640288 06 n 01 landscaping 0 002 @ 03417345 n 0000 + 01751836 v 0101 | a garden laid out for esthetic effect; "they spent a great deal of money on the landscaping" -03640456 06 n 01 landside 0 002 @ 03081021 n 0000 #p 03780047 n 0000 | component consisting of a side piece opposite the moldboard -03640589 06 n 01 lane 0 001 @ 04564698 n 0000 | a narrow way or road -03640660 06 n 01 lane 1 005 @ 03899328 n 0000 ~ 02882014 n 0000 ~ 03393534 n 0000 ~ 04163364 n 0000 ~ 04466386 n 0000 | a well-defined track or path; for e.g. swimmers or lines of traffic -03640850 06 n 01 lanolin 0 001 @ 03128519 n 0000 | an emollient containing wool fat (a fatty substance obtained from the wool of sheep) -03640988 06 n 01 lantern 0 004 @ 03636248 n 0000 ~ 03018712 n 0000 ~ 03162297 n 0000 ~ 03590841 n 0000 | light in a transparent protective case -03641134 06 n 02 lantern_pinion 0 lantern_wheel 0 001 @ 03943115 n 0000 | a small pinion having cylindrical bars instead of teeth, used chiefly in inexpensive clocks -03641302 06 n 02 lanyard 0 laniard 0 002 @ 03670849 n 0000 ;c 00314469 n 0000 | (nautical) a line used for extending or fastening rigging on ships -03641451 06 n 02 lanyard 1 laniard 1 001 @ 03106110 n 0000 | a cord worn around the neck to hold a knife or whistle -03641569 06 n 02 lanyard 2 laniard 2 001 @ 03106110 n 0000 | a cord with an attached hook that is used to fire certain types of cannon -03641706 06 n 02 lap 0 overlap 0 006 @ 03357376 n 0000 + 02688794 v 0201 + 02692197 v 0101 ~ 03145843 n 0000 ~ 03642444 n 0000 ~ 03642716 n 0000 | a flap that lies over another part; "the lap of the shingles should be at least ten inches" -03641947 06 n 02 lap 1 lap_covering 0 003 @ 03050026 n 0000 #p 04231272 n 0000 #p 04489008 n 0000 | the part of a piece of clothing that covers the thighs; "his lap was covered with food stains" -03642144 06 n 01 laparoscope 0 001 @ 03286572 n 0000 | a slender endoscope inserted through an incision in the abdominal wall in order to examine the abdominal organs or to perform minor surgery -03642341 06 n 01 lapboard 0 001 @ 04608127 n 0000 | writing board used on the lap as a table or desk -03642444 06 n 01 lapel 0 002 @ 03641706 n 0000 ~ 04084889 n 0000 | lap at the front of a coat; continuation of the coat collar -03642573 06 n 02 lap_joint 0 splice 0 002 @ 03600977 n 0000 + 01559868 v 0201 | joint made by overlapping two ends and joining them together -03642716 06 n 01 lappet 0 001 @ 03641706 n 0000 | a small lap on a garment or headdress -03642806 06 n 02 laptop 0 laptop_computer 0 001 @ 03985232 n 0000 | a portable computer small enough to use in your lap -03642928 06 n 02 larboard 0 port 2 005 @ 04213626 n 0000 + 02033742 a 0201 + 01908204 v 0201 + 02090854 v 0201 ! 04303672 n 0101 | the left side of a ship or aircraft to someone who is aboard and facing the bow or nose -03643149 06 n 01 laryngoscope 0 001 @ 03739693 n 0000 | a medical instrument for examining the larynx -03643253 06 n 02 laser 0 optical_maser 0 002 @ 03851341 n 0000 #p 03924532 n 0000 | an acronym for light amplification by stimulated emission of radiation; an optical device that produces an intense monochromatic beam of coherent light -03643491 06 n 02 laser-guided_bomb 0 LGB 0 002 @ 04245847 n 0000 ~i 02920785 n 0000 | a smart bomb that seeks the laser light reflected off of the target and uses it to correct its descent; "laser-guided bombs cannot be used in cloudy weather" -03643737 06 n 01 laser_printer 0 001 @ 03280644 n 0000 | electrostatic printer that focuses a laser beam to form images that are transferred to paper electrostatically -03643907 06 n 02 lash 1 thong 0 004 @ 03653220 n 0000 #p 04577769 n 0000 + 01398032 v 0102 + 01411085 v 0105 | leather strip that forms the flexible part of a whip -03644073 06 n 01 lashing 0 002 @ 04108268 n 0000 @ 03323703 n 0000 | rope that is used for fastening something to something else; "the boats were held together by lashings" -03644248 06 n 02 lash-up 0 contrivance 1 002 @ 07938773 n 0000 ~ 04408871 n 0000 | any improvised arrangement for temporary use -03644378 06 n 04 lasso 0 lariat 0 riata 0 reata 0 003 @ 04108268 n 0000 + 01604251 v 0101 %p 03829563 n 0000 | a long noosed rope used to catch animals -03644532 06 n 03 last 0 shoemaker's_last 0 cobbler's_last 0 001 @ 03525827 n 0000 | holding device shaped like a human foot that is used to fashion or repair shoes -03644698 06 n 01 Lastex 0 002 @ 04426788 n 0000 ;u 06851742 n 0000 | yarn that has an elastic core wound around with cotton or silk or nylon or rayon threads -03644858 06 n 01 latch 0 002 @ 02982599 n 0000 + 01286777 v 0101 | catch for fastening a door or gate; a bar that can be lowered or slid into a groove -03645011 06 n 02 latch 1 door_latch 0 002 @ 03682487 n 0000 + 01286777 v 0101 | spring-loaded doorlock that can only be opened from the outside with a key -03645168 06 n 01 latchet 0 001 @ 04333129 n 0000 | a leather strap or thong used to attach a sandal or shoe to the foot -03645290 06 n 01 latchkey 0 001 @ 03613294 n 0000 | key for raising or drawing back a latch or opening an outside door -03645411 06 n 01 latchstring 0 001 @ 03848348 n 0000 | opener consisting of a string that can be passed through a hole in a door for raising the latch from outside -03645577 06 n 02 lateen 0 lateen_sail 0 002 @ 03381776 n 0000 #p 03645730 n 0000 | a triangular fore-and-aft sail used especially in the Mediterranean -03645730 06 n 01 lateen-rig 0 003 @ 04091247 n 0000 #p 03186285 n 0000 %p 03645577 n 0000 | the rig on a lateen-rigged sailing vessel -03645866 06 n 01 Lateran_Palace 0 002 @i 03877845 n 0000 #p 08807554 n 0000 | a palace that served as the residence of the popes until the 14th century -03646020 06 n 03 latex_paint 0 latex 0 rubber-base_paint 0 001 @ 04557308 n 0000 | a water-base paint that has a latex binder -03646148 06 n 01 lath 0 002 @ 04234455 n 0000 #p 03646916 n 0000 | a narrow thin strip of wood used as backing for plaster or to make latticework -03646296 06 n 01 lathe 0 006 @ 04184435 n 0000 ~ 02829510 n 0000 %p 02969010 n 0000 %p 03027250 n 0000 %p 03490449 n 0000 %p 03490649 n 0000 | machine tool for shaping metal or wood; the workpiece turns about a horizontal axis against a fixed tool -03646546 06 n 02 lathi 0 lathee 0 001 @ 03053474 n 0000 | club consisting of a heavy stick (often bamboo) bound with iron; used by police in India -03646695 06 n 01 Latin_cross 0 001 @ 03135152 n 0000 | a cross with the lowest arm being longer than the others -03646809 06 n 01 latrine 0 002 @ 04018667 n 0000 ;c 08199025 n 0000 | a public toilet in a military area -03646916 06 n 03 lattice 0 latticework 0 fretwork 0 003 @ 03391770 n 0000 %p 03646148 n 0000 ~ 04478512 n 0000 | framework consisting of an ornamental design made of strips of wood or metal -03647108 06 n 02 laudanum 0 tincture_of_opium 0 001 @ 03850746 n 0000 | narcotic consisting of an alcohol solution of opium or any preparation in which opium is the main ingredient -03647291 06 n 01 laugh_track 0 001 @ 04262969 n 0000 | prerecorded laughter added to the soundtrack of a radio or television show -03647423 06 n 01 launch 0 001 @ 03790230 n 0000 | a motorboat with an open deck or a half deck -03647520 06 n 02 launcher 0 rocket_launcher 0 003 @ 02738031 n 0000 + 01514655 v 0101 ~ 02813752 n 0000 | armament in the form of a device capable of launching a rocket -03647691 06 n 05 launching_pad 0 launchpad 0 launch_pad 0 launch_area 0 pad 2 002 @ 03961939 n 0000 #p 08591486 n 0000 | a platform from which rockets or space craft are launched -03647872 06 n 02 launderette 0 Laundromat 0 001 @ 03648066 n 0000 | a self-service laundry (service mark Laundromat) where coin-operated washing machines are available to individual customers -03648066 06 n 01 laundry 0 004 @ 04602044 n 0000 + 01535246 v 0102 ~ 03647872 n 0000 ~ 04554998 n 0000 | workplace where clothes are washed and ironed -03648219 06 n 04 laundry 1 wash 0 washing 0 washables 0 005 @ 03419014 n 0000 @ 04580298 n 0000 + 01270199 v 0201 + 01535246 v 0201 + 01535246 v 0102 | garments or white goods that can be cleaned by laundering -03648431 06 n 01 laundry_cart 0 001 @ 03484083 n 0000 | handcart for moving a load of laundry -03648527 06 n 01 laundry_detergent 0 001 @ 03181899 n 0000 | any of various detergents designed for use in a washing machine for clothing -03648667 06 n 01 laundry_truck 0 001 @ 04520170 n 0000 | van that picks up and delivers laundry; "a laundry truck stops by every week" -03648804 06 n 03 laurel 0 laurel_wreath 0 bay_wreath 0 003 @ 04606014 n 0000 ;r 08780881 n 0000 ;c 15253139 n 0000 | (antiquity) a wreath of laurel foliage worn on the head as an emblem of victory -03649003 06 n 01 lavalava 0 001 @ 04230808 n 0000 | a skirt consisting of a rectangle of calico or printed cotton; worn by Polynesians (especially Samoans) -03649161 06 n 03 lavaliere 0 lavalier 0 lavalliere 0 001 @ 03908831 n 0000 | jeweled pendant worn on a chain around the neck -03649288 06 n 01 laver 0 002 @ 02801525 n 0000 ;c 06449735 n 0000 | (Old Testament) large basin used by a priest in an ancient Jewish temple to perform ritual ablutions -03649459 06 n 04 court 5 lawcourt 0 court_of_law 0 court_of_justice 0 001 @ 08329453 n 0000 | a tribunal that is presided over by a magistrate or by one or more judges who administer justice according to the laws -03649674 06 n 02 lawn_chair 0 garden_chair 0 001 @ 03001627 n 0000 | chair left outside for use on a lawn or in a garden -03649797 06 n 01 lawn_furniture 0 001 @ 03405725 n 0000 | furniture intended for use on a lawn or in a garden -03649909 06 n 02 lawn_mower 0 mower 0 005 @ 03418242 n 0000 + 01319562 v 0201 %p 02848216 n 0000 ~ 03487774 n 0000 ~ 03995856 n 0000 | garden tool for mowing grass on lawns -03650084 06 n 01 laxative 0 002 @ 04025748 n 0000 ~ 03922109 n 0000 | a mild cathartic -03650173 06 n 02 layer 0 bed 4 013 @ 00021939 n 0000 #p 03635668 n 0000 + 01262113 v 0101 ~ 02769460 n 0000 ~ 02849419 n 0000 ~ 03120029 n 0000 ~ 03151800 n 0000 ~ 03579699 n 0000 ~ 03664374 n 0000 ~ 03864834 n 0000 ~ 03970884 n 0000 ~ 04433905 n 0000 ~ 04547821 n 0000 | single thickness of usually some homogeneous substance; "slices of hard-boiled egg on a bed of spinach" -03650551 06 n 01 layette 0 001 @ 03619396 n 0000 | kit consisting of a complete outfit (clothing and accessories) for a new baby -03650682 06 n 01 lay_figure 0 001 @ 03255648 n 0000 | dummy in the form of an artist's jointed model of the human body -03650803 06 n 05 lazaretto 0 lazaret 0 lazarette 0 lazar_house 0 pesthouse 0 001 @ 03540595 n 0000 | hospital for persons with infectious diseases (especially leprosy) -03650973 06 n 01 lazy_daisy_stitch 0 001 @ 03000808 n 0000 | long chain stitches arranged in flower patterns -03651084 06 n 02 lead 0 pencil_lead 0 002 @ 14796575 n 0000 #p 03652100 n 0000 | mixture of graphite with clay in different degrees of hardness; the marking substance in a pencil -03651265 06 n 02 lead 2 leading 0 001 @ 04339291 n 0000 | thin strip of metal used to separate lines of type in printing -03651388 06 n 02 lead-acid_battery 0 lead-acid_accumulator 0 002 @ 04328329 n 0000 ~ 02961225 n 0000 | a battery with lead electrodes with dilute sulphuric acid as the electrolyte; each cell generates about 2 volts -03651605 06 n 01 lead-in 0 001 @ 04594489 n 0000 | wire connecting an antenna to a receiver or a transmitter to a transmission line -03651739 06 n 01 leading_edge 0 002 @ 03264136 n 0000 #p 02688443 n 0000 | forward edge of an airfoil -03651843 06 n 01 leading_rein 0 001 @ 04072551 n 0000 | rein to direct the horse's head left or right -03651947 06 n 02 lead_line 0 sounding_line 0 003 @ 03969627 n 0000 ;c 00314469 n 0000 %p 04262410 n 0000 | (nautical) plumb line for determining depth -03652100 06 n 01 lead_pencil 1 002 @ 03908204 n 0000 %p 03651084 n 0000 | pencil that has graphite as the marking substance -03652226 06 n 01 leaf 0 004 @ 04164989 n 0000 #p 03202354 n 0000 + 05389625 n 0102 ~ 03246788 n 0000 | hinged or detachable flat section (as of a table or door) -03652389 06 n 01 leaf_spring 0 001 @ 04288272 n 0000 | long narrow spring consisting of several layers of metal springs bracketed together -03652530 06 n 02 Leaning_Tower 0 Leaning_Tower_of_Pisa 0 002 @i 02946127 n 0000 #p 08809910 n 0000 | a tall round marble campanile in Pisa that is not perpendicular; construction was begun in 1174 -03652729 06 n 01 lean-to 0 001 @ 04191943 n 0000 | rough shelter whose roof has only one slope -03652826 06 n 01 lean-to_tent 0 001 @ 04411264 n 0000 | tent that is attached to the side of a building -03652932 06 n 03 leash 0 tether 0 lead 3 003 @ 04081844 n 0000 + 01290009 v 0201 + 01289155 v 0102 | restraint consisting of a rope (or light chain) used to restrain an animal -03653110 06 n 02 leatherette 0 imitation_leather 0 001 @ 03309808 n 0000 | fabric made to look like leather -03653220 06 n 01 leather_strip 0 004 @ 03563967 n 0000 ~ 03643907 n 0000 ~ 04333129 n 0000 ~ 04426316 n 0000 | implement consisting of a strip of leather -03653376 06 n 01 leatherwork 0 001 @ 04599396 n 0000 | work made of leather -03653454 06 n 01 Leclanche_cell 0 002 @ 04540761 n 0000 ~ 03251280 n 0000 | voltaic cell that produces approximately 1.5 volts -03653583 06 n 02 lectern 0 reading_desk 0 001 @ 04301000 n 0000 | desk or stand with a slanted top used to hold a text at the proper height for a lecturer -03653740 06 n 01 lecture_room 0 001 @ 03038685 n 0000 | classroom where lectures are given -03653833 06 n 01 lederhosen 0 001 @ 04205318 n 0000 | leather shorts often worn with suspenders; worn especially by men and boys in Bavaria -03653975 06 n 01 ledger_board 0 002 @ 04046590 n 0000 #p 04047401 n 0000 | top rail of a fence or balustrade -03654086 06 n 02 leflunomide 0 Arava 0 002 @ 02724966 n 0000 ;u 06845599 n 0201 | an anti-TNF compound (trade name Arava) that is given orally; can slow the progression of rheumatoid arthritis by slowing the proliferation of white blood cells which reduces inflammation in the synovium -03654374 06 n 03 left_field 0 leftfield 0 left 0 003 @ 08673395 n 0000 #p 03859717 n 0000 + 10387586 n 0101 | the piece of ground in the outfield on the catcher's left; "the batter flied out to left" -03654576 06 n 01 leg 0 007 @ 03050026 n 0000 #p 04489008 n 0000 + 02385851 a 0101 %p 03145843 n 0000 %p 03378442 n 0000 %p 03622698 n 0000 ~ 03885293 n 0000 | a cloth covering consisting of the part of a pair of trousers that covers a person's leg -03654826 06 n 01 leg 1 009 @ 04359589 n 0000 #p 04379243 n 0000 #p 03001627 n 0000 #p 04485082 n 0000 #p 04279462 n 0000 #p 03452741 n 0000 #p 03540914 n 0000 #p 03114504 n 0000 #p 03388549 n 0000 | one of the supports for a piece of furniture -03655072 06 n 03 legging 0 leging 0 leg_covering 0 005 @ 03419014 n 0000 ~ 03006903 n 0000 ~ 03410938 n 0000 ~ 04027935 n 0000 ~ 04269822 n 0000 | a garment covering the leg (usually extending from the knee to the ankle) -03655295 06 n 02 Lego 0 Lego_set 0 003 @ 03964744 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | (trademark) a child's plastic construction set for making mechanical models -03655470 06 n 02 Leiden_jar 0 Leyden_jar 0 001 @ 02955247 n 0000 | an electrostatic capacitor of historical interest -03655589 06 n 01 leister 0 001 @ 04271148 n 0000 | a spear with three or more prongs; used for spearing fish (especially salmon) -03655720 06 n 01 leisure_wear 0 001 @ 03051540 n 0000 | informal clothing designed to be worn when you are relaxing -03655838 06 n 02 lemon 0 stinker 0 003 @ 00021939 n 0000 ;u 07075172 n 0000 + 02674173 v 0201 | an artifact (especially an automobile) that is defective or unsatisfactory -03656011 06 n 01 lemon_grove 0 001 @ 03463832 n 0000 | a grove of lemon trees -03656091 06 n 02 lending_library 0 circulating_library 0 001 @ 03660664 n 0000 | library that provides books for use outside the building -03656231 06 n 01 length 0 001 @ 04164989 n 0000 | a section of something that is long and narrow; "a length of timber"; "a length of tubing" -03656374 06 n 01 lenitive 0 002 @ 04074482 n 0000 + 01341153 a 0103 | remedy that eases pain and discomfort -03656484 06 n 03 lens 0 lense 0 lens_system 0 018 @ 03851341 n 0000 #p 03852280 n 0000 ~ 02709101 n 0000 ~ 02709265 n 0000 ~ 02943241 n 0000 ~ 03081986 n 0000 ~ 03087366 n 0000 ~ 03094159 n 0000 ~ 03099771 n 0000 ~ 03139640 n 0000 ~ 03215337 n 0000 ~ 03309465 n 0000 ~ 03333711 n 0000 ~ 03395859 n 0000 ~ 03581897 n 0000 ~ 03745864 n 0000 ~ 03783430 n 0000 ~ 03838298 n 0000 | a transparent optical device used to converge or diverge transmitted light and to form images -03656957 06 n 02 lens 1 electron_lens 0 001 @ 03278248 n 0000 | electronic equipment that uses a magnetic or electric field in order to focus a beam of electrons -03657121 06 n 02 lens_cap 0 lens_cover 0 001 @ 02955065 n 0000 | cap used to keep lens free of dust when not in use -03657239 06 n 03 lens_implant 0 interocular_lens_implant 0 IOL 0 004 @ 03563710 n 0000 ~ 02672152 n 0000 ~ 03783575 n 0000 ~ 03798729 n 0000 | a clear plastic lens that is implanted in the eye; usually done when the natural lens has been removed in a cataract operation -03657511 06 n 04 leotard 0 unitard 0 body_suit 0 cat_suit 0 001 @ 03419014 n 0000 | a tight-fitting garment of stretchy material that covers the body from the shoulders to the thighs (and may have long sleeves or legs reaching down to the ankles); worn by ballet dancers and acrobats for practice or performance -03657825 06 n 01 lethal_dose 0 001 @ 03225238 n 0000 | the size dose that will cause death -03657918 06 n 03 letter_bomb 0 parcel_bomb 0 package_bomb 0 002 @ 02866578 n 0000 + 01133488 v 0101 | a thin explosive device inside an envelope or package and detonated when opened -03658102 06 n 01 letter_case 0 001 @ 02974697 n 0000 | case for carrying letters -03658185 06 n 03 letter_opener 0 paper_knife 0 paperknife 0 001 @ 03623556 n 0000 | dull knife used to cut open the envelopes in which letters are mailed or to slit uncut pages of books -03658373 06 n 02 levallorphan 0 Lorfan 0 002 @ 03247620 n 0000 ;u 06845599 n 0201 | drug (trade name Lorfan) that is related to morphine but that counteracts the respiratory depression produced by morphine poisoning but without affecting its analgesic effects -03658635 06 n 01 levee 0 001 @ 03282060 n 0000 | an embankment that is built in order to prevent a river from overflowing -03658759 06 n 01 levee 1 001 @ 03933529 n 0000 | a pier that provides a landing place on a river -03658858 06 n 02 level 0 spirit_level 0 007 @ 03568117 n 0000 #p 02966786 n 0000 #p 04365751 n 0000 + 00356649 v 0101 + 01307142 v 0102 + 01661804 v 0101 ~ 03725869 n 0000 | indicator that establishes the horizontal when a bubble is centered in a tube of liquid -03659122 06 n 02 level_crossing 0 grade_crossing 0 001 @ 03581125 n 0000 | intersection of a railway and a road on the same level; barriers close road when trains pass -03659292 06 n 01 lever 0 018 @ 02788689 n 0000 + 01593254 v 0104 ~ 03082127 n 0000 ~ 03138344 n 0000 %p 03402080 n 0000 ~ 03470629 n 0000 ~ 03489048 n 0000 ~ 03613592 n 0000 ~ 03903133 n 0000 ~ 03903424 n 0000 ~ 03941887 n 0000 ~ 04094250 n 0000 ~ 04099003 n 0000 ~ 04269086 n 0000 ~ 04317976 n 0000 ~ 04393808 n 0000 ~ 04435759 n 0000 ~ 04441093 n 0000 | a rigid bar pivoted about a fulcrum -03659686 06 n 02 lever 1 lever_tumbler 0 002 @ 04497005 n 0000 #p 03659950 n 0000 | a flat metal tumbler in a lever lock -03659809 06 n 01 lever 2 002 @ 03700963 n 0000 + 01593254 v 0104 | a simple machine that gives a mechanical advantage when given a fulcrum -03659950 06 n 01 lever_lock 0 002 @ 03682487 n 0000 %p 03659686 n 0000 | a lock whose tumblers are levers that must be raised to a given position so that the bolt can move -03660124 06 n 02 Levi's 0 levis 0 002 @ 03594734 n 0000 ;u 06851742 n 0101 | a popular brand of jeans -03660228 06 n 01 Liberty_Bell 0 001 @i 02824448 n 0000 | the bell of Independence Hall; rung 8 July 1776 to announce the signing of the Declaration of Independence -03660394 06 n 01 liberty_cap 0 001 @ 02954340 n 0000 | close-fitting conical cap worn as a symbol of liberty during the French Revolution and in the U.S. before 1800 -03660562 06 n 01 Liberty_ship 0 001 @ 02965300 n 0000 | a slow cargo ship built during World War II -03660664 06 n 02 library 0 depository_library 0 006 @ 03177349 n 0000 ~ 02752199 n 0000 %p 02968333 n 0000 ~ 03656091 n 0000 %p 04058096 n 0000 %p 04295571 n 0000 | a depository built to contain books and other materials for reading and study -03660909 06 n 01 library 1 002 @ 04105893 n 0000 #p 03544360 n 0000 | a room where books are kept; "they had brandy in the library" -03661043 06 n 01 library 2 002 @ 02913152 n 0000 ~i 03810741 n 0000 | a building that houses a collection of books and other materials -03661180 06 n 02 license_plate 0 numberplate 0 001 @ 03959936 n 0000 | a plate mounted on the front and back of car and bearing the car's registration number -03661340 06 n 01 lid 0 006 @ 04453910 n 0000 #p 02883344 n 0000 #p 03014705 n 0000 #p 03593526 n 0000 %p 03682487 n 0000 ~ 04492060 n 0000 | a movable top or cover (hinged or separate) for closing the opening at the top of a box, chest, jar, pan, etc.; "he raised the piano lid" -03661621 06 n 01 lidar 0 001 @ 03733925 n 0000 | a measuring system that detects and locates objects on the same principle as radar but uses light from a laser; a potential technology for detecting air turbulence that can affect aircraft -03661861 06 n 01 lido 0 003 @ 04065132 n 0000 ;r 08860123 n 0000 %p 04371225 n 0000 | a recreational facility including a swimming pool for water sports -03662016 06 n 02 Lidocaine 0 Xylocaine 0 002 @ 03681148 n 0000 ;u 06845599 n 0000 | a local anesthetic (trade names Lidocaine and Xylocaine) used topically on the skin and mucous membranes -03662207 06 n 01 lido_deck 0 001 @ 03167666 n 0000 | an open deck including a swimming pool -03662301 06 n 01 Liebig_condenser 0 001 @ 03087643 n 0000 | a condenser: during distillation the vapor passes through a tube that is cooled by water -03662452 06 n 01 lie_detector 0 002 @ 03979492 n 0000 %p 00860011 n 0000 | a polygraph that records bodily changes sometimes associated with lying -03662601 06 n 01 lifeboat 0 001 @ 04158807 n 0000 | a strong sea boat designed to rescue people from a sinking ship -03662719 06 n 04 life_buoy 0 lifesaver 0 life_belt 0 life_ring 0 002 @ 03663531 n 0000 ~ 02896694 n 0000 | a life preserver in the form of a ring of buoyant material -03662887 06 n 03 life_jacket 0 life_vest 0 cork_jacket 0 002 @ 03663531 n 0000 ~ 03703945 n 0000 | life preserver consisting of a sleeveless jacket of buoyant or inflatable design -03663069 06 n 01 lifeline 0 002 @ 03670849 n 0000 ~ 04089376 n 0000 | line thrown from a vessel that people can cling to in order to save themselves from drowning -03663234 06 n 01 lifeline 1 001 @ 03670849 n 0000 | line that raises or lowers a deep-sea diver -03663332 06 n 01 life_mask 0 001 @ 02979662 n 0000 | a cast taken from the face of a living person -03663433 06 n 01 life_office 0 002 @ 03841666 n 0000 ;r 08860123 n 0000 | life assurance office -03663531 06 n 03 life_preserver 0 preserver 0 flotation_device 0 005 @ 03364340 n 0000 @ 04077734 n 0000 ~ 03662719 n 0000 ~ 03662887 n 0000 ~ 04563560 n 0000 | rescue equipment consisting of a buoyant belt or jacket to keep a person from drowning -03663781 06 n 02 life_raft 0 Carling_float 0 001 @ 04045397 n 0000 | a raft to use if a ship must be abandoned in an emergency -03663910 06 n 02 life-support_system 0 life_support 0 001 @ 03294048 n 0000 | medical equipment that assists or replaces important bodily functions and so enables a patient to live who otherwise might not survive; "the patient is on life support" -03664159 06 n 02 life-support_system 1 life_support 1 001 @ 03294048 n 0000 | equipment that makes life possible in otherwise deadly environmental conditions; "the astronauts relied on their life-support systems" -03664374 06 n 01 lift 2 003 @ 03650173 n 0000 #p 03511426 n 0000 ~ 04455169 n 0000 | one of the layers forming the heel of a shoe or boot -03664514 06 n 01 lift 3 002 @ 03183080 n 0000 + 01974062 v 0102 | a device worn in a shoe or boot to make the wearer look taller or to correct a shortened leg -03664675 06 n 01 lifting_device 0 005 @ 03183080 n 0000 ~ 03126707 n 0000 ~ 03281145 n 0000 ~ 03525074 n 0000 ~ 04585745 n 0000 | a device for lifting heavy loads -03664840 06 n 01 lift_pump 0 001 @ 04021798 n 0000 | pump used to lift rather than force a liquid up -03664943 06 n 01 ligament 0 004 @ 02755352 n 0000 ~ 02840134 n 0000 ~ 02999410 n 0000 ~ 04594218 n 0000 | any connection or unifying bond -03665083 06 n 01 ligature 1 002 @ 04426788 n 0000 + 00083334 v 0101 | thread used by surgeons to bind a vessel (as to constrict the flow of blood) -03665232 06 n 01 ligature 2 001 @ 02784998 n 0000 | a metal band used to attach a reed to the mouthpiece of a clarinet or saxophone -03665366 06 n 02 light 0 light_source 0 019 @ 04263760 n 0000 + 00291873 v 0101 ~ 02709763 n 0000 ~ 02852173 n 0000 ~ 03318294 n 0000 ~ 03365374 n 0000 ~ 03503997 n 0000 ~ 03545585 n 0000 ~ 03590732 n 0000 ~ 03813369 n 0000 ~ 03824713 n 0000 ~ 03882861 n 0000 ~ 04107743 n 0000 ~ 04148703 n 0000 ~ 04160847 n 0000 ~ 04214649 n 0000 ~ 04339879 n 0000 ~ 04418644 n 0000 ~ 04456115 n 0000 | any device serving as a source of illumination; "he stopped the car and turned off the lights" -03665851 06 n 01 light_arm 0 001 @ 04565375 n 0000 | a rifle or pistol -03665924 06 n 06 light_bulb 0 lightbulb 0 bulb 0 incandescent_lamp 0 electric_light 0 electric-light_bulb 0 002 @ 03272383 n 0000 %p 03336575 n 0000 | electric lamp consisting of a transparent or translucent glass housing containing a wire filament (usually tungsten) that emits light when heated by electricity -03666238 06 n 02 light_circuit 0 lighting_circuit 0 001 @ 04595855 n 0000 | wiring that provides power to electric lights -03666362 06 n 02 light-emitting_diode 0 LED 0 003 @ 03202760 n 0000 #p 03196598 n 0000 ~ 03854506 n 0000 | diode such that light emitted at a p-n junction is proportional to the bias current; color depends on the material used -03666591 06 n 04 lighter 0 light 1 igniter 0 ignitor 0 010 @ 03183080 n 0000 + 02759614 v 0401 + 02759614 v 0301 + 02759614 v 0202 + 01199881 v 0203 + 02759614 v 0102 ~ 03031422 n 0000 ~ 03407122 n 0000 ~ 03728437 n 0000 ~ 03728982 n 0000 | a device for lighting or igniting fuel or charges or fires; "do you have a light?" -03666917 06 n 01 lighter-than-air_craft 0 003 @ 02686568 n 0000 ~ 02692877 n 0000 ~ 02782093 n 0000 | aircraft supported by its own buoyancy -03667060 06 n 02 light_filter 0 diffusing_screen 0 001 @ 03339643 n 0000 | a transparent filter that reduces the light (or some wavelengths of the light) passing through it -03667235 06 n 01 lighting 0 002 @ 02727825 n 0000 ~ 02769669 n 0000 | apparatus for supplying artificial light effects for the stage or a film -03667380 06 n 01 lighting_fixture 0 005 @ 03354613 n 0000 ~ 03005285 n 0000 %p 03194812 n 0000 ~ 03370260 n 0000 ~ 03568561 n 0000 | a fixture providing artificial light -03667552 06 n 01 light_machine_gun 0 001 @ 04347519 n 0000 | a submachine gun not greater than .30 millimeter -03667664 06 n 03 light_meter 0 exposure_meter 0 photometer 0 002 @ 03926148 n 0000 ~ 03157751 n 0000 | photographic equipment that measures the intensity of light -03667829 06 n 01 light_microscope 0 006 @ 03760671 n 0000 ~ 02841506 n 0000 ~ 03082280 n 0000 %p 03309465 n 0000 ~ 03484931 n 0000 ~ 04506688 n 0000 | microscope consisting of an optical instrument that magnifies the image of an object -03668067 06 n 02 lightning_rod 0 lightning_conductor 0 001 @ 03088707 n 0000 | a metallic conductor that is attached to a high point and leads to the ground; protects the building from destruction by lightning -03668279 06 n 02 light_pen 0 electronic_stylus 0 002 @ 03975232 n 0000 ;c 06128570 n 0000 | (computer science) a pointer that when pointed at a computer display senses whether or not the spot is illuminated -03668488 06 n 01 lightship 0 001 @ 04194289 n 0000 | a ship equipped like a lighthouse and anchored where a permanent lighthouse would be impracticable -03668642 06 n 02 likeness 0 semblance 0 003 @ 03931044 n 0000 ~ 03559531 n 0000 ~ 03987079 n 0000 | picture consisting of a graphic image of a person or thing -03668803 06 n 01 Lilo 0 002 @ 02690809 n 0000 ;u 06851742 n 0000 | a type of inflatable air mattress -03668906 06 n 01 limb 1 003 @ 13874384 n 0000 #p 03840823 n 0000 #p 04180888 n 0000 | the graduated arc that is attached to an instrument for measuring angles; "the limb of the sextant" -03669094 06 n 01 limb 2 002 @ 03892891 n 0000 #p 02879718 n 0000 | either of the two halves of a bow from handle to tip; "the upper limb of the bow" -03669245 06 n 01 limber 0 001 @ 03538634 n 0000 | a two-wheeled horse-drawn vehicle used to pull a field gun or caisson -03669367 06 n 01 limbers 0 002 @ 03006105 n 0000 ;u 06295235 n 0000 | a channel or gutter on either side of a ship's keelson; carries bilge water into the pump well -03669534 06 n 01 limekiln 0 001 @ 03617095 n 0000 | a kiln used to reduce naturally occurring forms of calcium carbonate to lime -03669665 06 n 02 limelight 0 calcium_light 0 002 @ 03636248 n 0000 #m 04418644 n 0000 | a lamp consisting of a flame directed at a cylinder of lime with a lens to concentrate the light; formerly used for stage lighting -03669886 06 n 02 limiter 0 clipper 3 003 @ 03033362 n 0000 ;c 06099269 n 0000 + 00233335 v 0104 | (electronics) a nonlinear electronic circuit whose output is limited in amplitude; used to limit the instantaneous amplitude of a waveform (to clip off the peaks of a waveform); "a limiter introduces amplitude distortion" -03670208 06 n 02 limousine 0 limo 0 002 @ 02958343 n 0000 ~ 02831335 n 0000 | large luxurious car; usually driven by a chauffeur -03670339 06 n 02 linchpin 0 lynchpin 0 001 @ 03940256 n 0000 | pin inserted through an axletree to hold a wheel on -03670456 06 n 01 Lincoln_Memorial 0 002 @i 03743902 n 0000 #p 09070793 n 0000 | memorial building in Washington containing a large marble statue of Abraham Lincoln -03670622 06 n 02 lincomycin 0 Lincocin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | antibiotic (trade name Lincocin) obtained from a streptomyces bacterium and used in the treatment of certain penicillin-resistant infections -03670849 06 n 01 line 0 017 @ 00021939 n 0000 ~ 02818507 n 0000 %p 02845576 n 0000 ~ 03106110 n 0000 %p 03241903 n 0000 ~ 03641302 n 0000 ~ 03663069 n 0000 ~ 03663234 n 0000 ~ 03784475 n 0000 ~ 03876352 n 0000 ~ 04055861 n 0000 ~ 04108268 n 0000 ~ 04188368 n 0000 ~ 04210723 n 0000 ~ 04332783 n 0000 ~ 04461294 n 0000 ~ 04462407 n 0000 | something (as a cord or rope) that is long and thin and flexible; "a washing line" -03671272 06 n 03 line 3 railway_line 0 rail_line 0 005 @ 04096066 n 0000 ~ 02891430 n 0000 %p 04047834 n 0000 %p 04048075 n 0000 ~ 04492264 n 0000 | the road consisting of railroad track and roadbed -03671473 06 n 01 line 5 006 @ 08057633 n 0000 #p 04473432 n 0000 ~ 02690081 n 0000 ~ 04048568 n 0000 ~ 04310347 n 0000 ~ 04472098 n 0000 | a commercial organization serving as a common carrier -03671668 06 n 06 line 8 product_line 0 line_of_products 0 line_of_merchandise 0 business_line 0 line_of_business 0 003 @ 03748886 n 0000 ~ 04214871 n 0000 %p 04455442 n 0000 | a particular kind of product or merchandise; "a nice line of shoes" -03671914 06 n 02 linear_accelerator 0 linac 0 002 @ 02670382 n 0000 ~ 03761731 n 0000 | ions are accelerated along a linear path by voltage differences on electrodes along the path -03672097 06 n 03 linecut 0 line_block 0 line_engraving 0 001 @ 03289025 n 0000 | engraving consisting of a block that has been etched or engraved -03672245 06 n 02 linecut 1 line_engraving 1 001 @ 03289268 n 0000 | a print obtained from a line drawing -03672352 06 n 01 linen 0 005 @ 04580298 n 0000 ~ 02807260 n 0000 ~ 02821030 n 0000 ~ 03219010 n 0000 ~ 04380617 n 0000 | white goods or clothing made with linen cloth -03672521 06 n 01 linen 1 002 @ 03309808 n 0000 %s 14869829 n 0000 | a fabric woven with fibers from the flax plant -03672638 06 n 02 line_of_defense 0 line_of_defence 0 002 @ 03171356 n 0000 ~ 02666735 n 0000 | defensive structure consisting of a barrier that can be employed for defense against attack -03672827 06 n 02 line_printer 0 line-at-a-time_printer 0 002 @ 04004475 n 0000 ~ 03250405 n 0000 | printer that serves as an output device on a computer; prints a whole line of characters at a time -03673027 06 n 02 liner 0 ocean_liner 0 006 @ 03896103 n 0000 %p 02932227 n 0000 ~ 02933750 n 0000 ~ 02965216 n 0000 ~ 03141327 n 0000 ~ 03698604 n 0000 | a large commercial ship (especially one that carries passengers on a regular schedule) -03673270 06 n 02 liner 1 lining 1 004 @ 03932670 n 0000 #p 03419014 n 0000 + 01270784 v 0201 + 01270784 v 0101 | a piece of cloth that is used as the inside surface of a garment -03673450 06 n 02 lingerie 0 intimate_apparel 0 003 @ 04508949 n 0000 ~ 03824381 n 0000 ~ 04509171 n 0000 | women's underwear and nightclothes -03673594 06 n 02 liniment 0 embrocation 0 002 @ 03691128 n 0000 + 00085626 v 0205 | a medicinal liquid that is rubbed into the skin to relieve muscular stiffness and pain -03673767 06 n 02 lining 0 liner 2 006 @ 04014297 n 0000 + 01270784 v 0101 ~ 02890513 n 0000 ~ 02925107 n 0000 ~ 03315805 n 0000 ~ 03404900 n 0000 | a protective covering that protects an inside surface -03673971 06 n 04 link 0 linkup 0 tie 4 tie-in 0 006 @ 03323703 n 0000 + 01354673 v 0303 + 01285440 v 0301 + 01354673 v 0204 + 01354673 v 0102 ~ 02899439 n 0000 | a fastener that serves to join or connect; "the walls are held together with metal links placed in the wet mortar during construction" -03674270 06 n 02 link 3 data_link 0 001 @ 03033362 n 0000 | an interconnecting circuit between two or more locations for the purpose of transmitting and receiving data -03674440 06 n 01 linkage 0 002 @ 03738241 n 0000 + 02622234 v 0102 | a mechanical system of rods or springs or pivots that transmits power or motion -03674591 06 n 02 links 0 golf_links 0 002 @ 03446528 n 0000 ;u 06295235 n 0000 | a golf course that is built on sandy ground near a shore -03674731 06 n 01 Link_trainer 0 002 @ 03363363 n 0000 ;u 06851742 n 0000 | an early form of flight simulator -03674842 06 n 01 linocut 0 001 @ 03178782 n 0000 | a design carved in relief into a block of linoleum -03674946 06 n 01 linocut 1 001 @ 04003597 n 0000 | a print that is made from a design carved in relief into a block of linoleum -03675076 06 n 02 linoleum_knife 0 linoleum_cutter 0 001 @ 03623556 n 0000 | a knife having a short stiff blade with a curved point used for cutting linoleum -03675235 06 n 02 Linotype 0 Linotype_machine 0 003 @ 04504770 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | a typesetting machine operated from a keyboard that casts an entire line as a single slug of metal -03675445 06 n 01 linsey-woolsey 0 001 @ 03309808 n 0000 | a rough fabric of linen warp and wool or cotton woof -03675558 06 n 01 linstock 0 001 @ 04317420 n 0000 | a stick about a meter long with a point on one end (to stick in the ground) and a forked head on the other end (to hold a lighted match); formerly used to fire cannons -03675780 06 n 01 lint 0 001 @ 03309808 n 0000 | cotton or linen fabric with the nap raised on one side; used to dress wounds -03675907 06 n 01 lion-jaw_forceps 0 002 @ 03381231 n 0000 ;u 06295235 n 0000 | a type of forceps -03676006 06 n 01 lip_balm 0 001 @ 03845550 n 0000 | a balm applied to the lips -03676087 06 n 01 lip-gloss 0 001 @ 03714235 n 0000 | makeup that makes the lips shiny -03676175 06 n 04 lipid-lowering_medicine 0 lipid-lowering_medication 0 statin_drug 0 statin 0 007 @ 03740161 n 0000 ~ 02754421 n 0000 ~ 02998209 n 0000 ~ 03372656 n 0000 ~ 03693089 n 0000 ~ 03997980 n 0000 ~ 04221994 n 0000 | a medicine that lowers blood cholesterol levels by inhibiting HMG-CoA reductase -03676483 06 n 02 lipstick 0 lip_rouge 0 003 @ 03714235 n 0000 + 00041417 v 0101 + 01689589 v 0101 | makeup that is used to color the lips -03676623 06 n 01 liqueur_glass 0 001 @ 03438257 n 0000 | a small glass for serving a small amount of liqueur (typically after dinner) -03676759 06 n 02 liquid_crystal_display 0 LCD 0 003 @ 03196598 n 0000 ~ 02678010 n 0000 ~ 03896628 n 0000 | a digital display that uses liquid crystal cells that change reflectivity in an applied electric field; used for portable computer displays and watches etc. -03677026 06 n 01 liquid_detergent 0 001 @ 03181899 n 0000 | a detergent in liquid form -03677115 06 n 01 liquid_metal_reactor 0 001 @ 03834040 n 0000 | a nuclear reactor using liquid metal as a coolant -03677231 06 n 01 liquid_soap 0 001 @ 04253437 n 0000 | soap in liquid form -03677308 06 n 03 lisinopril 0 Prinival 0 Zestril 0 003 @ 02673637 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an ACE inhibiting drug (trade names Prinival or Zestril) administered as an antihypertensive and after heart attacks -03677540 06 n 02 lisle 0 lisle_thread 0 001 @ 03115301 n 0000 | a strong tightly twisted cotton thread (usually made of long-staple cotton) -03677682 06 n 01 lisle 1 001 @ 03309808 n 0000 | a fabric woven with lisle thread -03677766 06 n 05 lister 0 lister_plow 0 lister_plough 0 middlebreaker 0 middle_buster 0 001 @ 03780047 n 0000 | moldboard plow with a double moldboard designed to move dirt to either side of a central furrow -03677976 06 n 02 lithograph 0 lithograph_machine 0 003 @ 03257586 n 0000 + 10266486 n 0101 + 01749394 v 0101 | duplicator that prints by lithography; a flat surface (of stone or metal) is treated to absorb or repel ink in the desired pattern -03678220 06 n 01 lithograph 1 004 @ 04003597 n 0000 + 10266486 n 0101 + 01749394 v 0101 ~ 03926757 n 0000 | a print produced by lithography -03678362 06 n 01 litter 1 005 @ 03100490 n 0000 ~ 03122202 n 0000 ~ 03878294 n 0000 ~ 04166436 n 0000 ~ 04336792 n 0000 | conveyance consisting of a chair or bed carried on two poles by bearers -03678558 06 n 03 litterbin 0 litter_basket 0 litter-basket 0 001 @ 02839910 n 0000 | bin (usually in or outside a public building) into which the public can put rubbish -03678729 06 n 02 little_theater 0 little_theatre 0 001 @ 04417809 n 0000 | a small theater for experimental drama or collegiate or community groups -03678879 06 n 02 live_axle 0 driving_axle 0 002 @ 02764779 n 0000 #p 03243625 n 0000 | the axle of a self-propelled vehicle that provides the driving power -03679037 06 n 02 live_load 0 superload 0 001 @ 03679986 n 0000 | a variable load on a structure (e.g. a bridge) such as moving traffic -03679174 06 n 01 livery 0 001 @ 04509592 n 0000 | uniform worn by some menservants and chauffeurs -03679274 06 n 01 livery_stable 0 001 @ 04294879 n 0000 | stable where horses and vehicles are kept for hire -03679384 06 n 02 living_quarters 0 quarters 0 009 @ 03546340 n 0000 ;u 06295235 n 0000 + 02653159 v 0201 ~ 02672371 n 0000 ~ 03195485 n 0000 ~ 03224893 n 0000 ~ 03382104 n 0000 ~ 03494105 n 0000 ~ 03763727 n 0000 | housing available for people to live in; "he found quarters for his family"; "I visited his bachelor quarters" -03679712 06 n 06 living_room 0 living-room 0 sitting_room 0 front_room 0 parlor 1 parlour 1 005 @ 04105893 n 0000 #p 03259505 n 0000 ~ 03077616 n 0000 ~ 03786313 n 0000 ~ 04131015 n 0000 | a room in a private house or establishment where people can sit and talk and relax -03679986 06 n 03 load 0 loading 1 burden 1 010 @ 04571088 n 0000 + 01487311 v 0301 + 01612084 v 0101 + 01489989 v 0101 ~ 02924023 n 0000 ~ 03166360 n 0000 ~ 03679037 n 0000 ~ 03767112 n 0000 ~ 03864994 n 0000 ~ 03865171 n 0000 | weight to be borne or conveyed -03680248 06 n 01 load 3 001 @ 03269401 n 0000 | electrical device to which electrical power is delivered -03680355 06 n 01 Loafer 0 002 @ 04199027 n 0000 ;u 06851742 n 0000 | a low leather step-in shoe; the top resembles a moccasin but it has a broad flat heel -03680512 06 n 01 loaner 0 001 @ 02958343 n 0000 | a car that is lent as a replacement for one that is under repair -03680629 06 n 01 loan_office 0 001 @ 03841666 n 0000 | an office where loans are negotiated and repaid -03680734 06 n 01 lobe 0 002 @ 04008947 n 0000 + 02934314 a 0101 | a rounded projection that is part of a larger structure -03680858 06 n 01 lobster_pot 0 001 @ 04474466 n 0000 | trap for catching lobsters -03680942 06 n 01 local 0 002 @ 04019101 n 0000 ! 03306385 n 0101 | public transport consisting of a bus or train that stops at all stations or stops; "the local seemed to take forever to get to New York" -03681148 06 n 05 local_anesthetic 0 local_anaesthetic 0 local 1 topical_anesthetic 0 topical_anaesthetic 0 009 @ 02710766 n 0000 ~ 02711110 n 0000 ~ 02723491 n 0000 ~ 02830721 n 0000 ~ 02926727 n 0000 ~ 03300786 n 0000 ~ 03662016 n 0000 ~ 04006727 n 0000 ~ 04416201 n 0000 | anesthetic that numbs a particular area of the body -03681477 06 n 02 local_area_network 0 LAN 0 004 @ 03085333 n 0000 %p 02924713 n 0000 ~ 03300216 n 0000 ~ 04595028 n 0000 | a local computer network for communication between computers; especially a network connecting computers and word processors and other electronic office equipment to create a communication system between offices -03681813 06 n 02 local_oscillator 0 heterodyne_oscillator 0 002 @ 03857430 n 0000 #p 03516996 n 0000 | an oscillator whose output heterodynes with the incoming radio signal to produce sum and difference tones -03682024 06 n 02 local_road 0 local_street 0 002 @ 04334599 n 0000 ~ 03398775 n 0000 | a street that is primarily used to gain access to the property bordering it -03682189 06 n 01 location 0 002 @ 04602044 n 0000 ! 04344544 n 0101 | a workplace away from a studio at which some or all of a movie may be made; "they shot the film on location in Nevada" -03682380 06 n 01 Lochaber_ax 0 001 @ 02811468 n 0000 | a battle-ax formerly used by Scottish Highlanders -03682487 06 n 01 lock 0 016 @ 03323703 n 0000 #p 03427296 n 0000 #p 03233905 n 0000 #p 03221720 n 0000 #p 03661340 n 0000 + 01348174 v 0101 %p 02865931 n 0000 ~ 03075370 n 0000 ~ 03156767 n 0000 ~ 03223162 n 0000 %p 03614782 n 0000 ~ 03645011 n 0000 ~ 03659950 n 0000 ~ 03874599 n 0000 ~ 04136800 n 0000 %p 04497005 n 0000 | a fastener fitted to a door or drawer to keep it firmly closed -03682877 06 n 02 lock 1 ignition_lock 0 002 @ 04081844 n 0000 #p 03561169 n 0000 | a restraint incorporated into the ignition switch to prevent the use of a vehicle by persons who do not have the key -03683079 06 n 02 lock 2 lock_chamber 0 004 @ 03285912 n 0000 #p 02947212 n 0000 + 01655347 v 0101 + 02050865 v 0101 | enclosure consisting of a section of canal that can be closed to control the water level; used to raise or lower vessels that pass through it -03683341 06 n 01 lock 3 002 @ 03738472 n 0000 #p 03343853 n 0000 | a mechanism that detonates the charge of a gun -03683457 06 n 01 lockage 0 004 @ 04377057 n 0000 #p 02947212 n 0000 + 02050865 v 0101 + 01655347 v 0101 | a system of locks in a canal or waterway -03683606 06 n 01 locker 2 002 @ 03323703 n 0000 + 01348174 v 0101 | a fastener that locks or closes -03683708 06 n 01 locker_room 0 004 @ 04105893 n 0000 #p 02752311 n 0000 #p 04602044 n 0000 %p 02933462 n 0000 | a room (as at an athletic facility or workplace) where you can change clothes and which contains lockers for the temporary storage of your clothing and personal possessions -03683995 06 n 01 locket 0 001 @ 02974697 n 0000 | a small ornamental case; usually contains a picture or a lock of hair and is worn on a necklace -03684143 06 n 01 lock-gate 0 001 @ 03427296 n 0000 | a gate that can be locked -03684224 06 n 01 locking_pliers 0 002 @ 03966976 n 0000 ;u 06295235 n 0000 | pliers that can be locked in place -03684338 06 n 02 locknut 0 safety_nut 0 001 @ 03836191 n 0000 | supplementary nut that is screwed down on a primary nut to prevent it from loosening -03684489 06 n 03 lockring 0 lock_ring 0 lock_washer 0 001 @ 04554871 n 0000 | washer that prevents a nut from loosening -03684611 06 n 01 lockstitch 0 001 @ 03702067 n 0000 | machine stitch in which the top thread interlocks with the bobbin thread -03684740 06 n 01 lockup 0 001 @ 03592245 n 0000 | jail in a local police station -03684823 06 n 04 locomotive 0 engine 1 locomotive_engine 0 railway_locomotive 0 016 @ 04170037 n 0000 #m 04468005 n 0000 + 10057714 n 0201 ~ 03025165 n 0000 ~ 03193597 n 0000 ~ 03200152 n 0000 ~ 03272562 n 0000 %p 03328201 n 0000 %p 03380461 n 0000 ~ 03585778 n 0000 ~ 03939565 n 0000 ~ 04211219 n 0000 ~ 04310018 n 0000 ~ 04373428 n 0000 ~ 04389854 n 0000 ~ 04465358 n 0000 | a wheeled vehicle consisting of a self-propelled engine that is used to draw trains along railway tracks -03685307 06 n 02 lodge 0 indian_lodge 0 005 @ 03259505 n 0000 ~ 03524840 n 0000 ~ 04412416 n 0000 ~ 04583022 n 0000 ~ 04584373 n 0000 | any of various Native American dwellings -03685486 06 n 02 lodge 2 hunting_lodge 0 003 @ 03544360 n 0000 + 02652494 v 0101 + 02651424 v 0101 | a small (rustic) house used as a temporary shelter -03685640 06 n 01 lodge 3 002 @ 03428090 n 0000 ;r 08860123 n 0000 | small house at the entrance to the grounds of a country mansion; usually occupied by a gatekeeper or gardener -03685820 06 n 02 lodging_house 0 rooming_house 0 003 @ 03544360 n 0000 @ 02672371 n 0000 ~ 03367321 n 0000 | a house where rooms are rented -03685962 06 n 01 Loestrin 0 003 @ 03936895 n 0000 %s 14746417 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norethindrone -03686130 06 n 03 loft 0 attic 0 garret 0 005 @ 03365991 n 0000 #p 03544360 n 0000 + 02282252 v 0101 ~ 03061428 n 0000 ~ 03500557 n 0000 | floor consisting of open space at the top of a house just below roof; often used for storage -03686363 06 n 02 loft 1 pigeon_loft 0 001 @ 04191595 n 0000 | a raised shelter in which pigeons are kept -03686470 06 n 01 loft 2 003 @ 03365991 n 0000 + 02282252 v 0101 ~ 02746683 n 0000 | floor consisting of a large unpartitioned space over a factory or warehouse or other commercial space -03686658 06 n 01 log 1 005 @ 03733925 n 0000 #p 04194289 n 0000 ~ 03496183 n 0000 %p 03687448 n 0000 ~ 03898787 n 0000 | measuring instrument that consists of a float that trails from a ship by a knotted line in order to measure the ship's speed through the water -03686924 06 n 01 log_cabin 0 001 @ 02932400 n 0000 | a cabin built with logs -03687003 06 n 01 loge 0 002 @ 02777927 n 0000 #p 03758220 n 0000 | balcony consisting of the forward section of a theater mezzanine -03687137 06 n 01 loggia 0 001 @ 02733213 n 0000 | a roofed arcade or gallery with open sides stretching along the front or side of a building; often at an upper level -03687306 06 n 01 logic_element 0 002 @ 03277771 n 0000 ~ 04428502 n 0000 | an electronic device that performs an elementary logic operation -03687448 06 n 01 log_line 0 002 @ 03106110 n 0000 #p 03686658 n 0000 | a knotted cord that runs out from a reel to a piece of wood that is attached to it -03687604 06 n 01 Lomotil 0 001 @ 02719294 n 0000 | trade name of an antidiarrheal -03687688 06 n 01 lomustine 0 001 @ 02722458 n 0000 | an antineoplastic drug often used to treat brain tumors or Hodgkin's disease -03687820 06 n 01 longboat 0 001 @ 02858304 n 0000 | the largest boat carried by a merchant sailing vessel -03687928 06 n 01 longbow 0 001 @ 02879718 n 0000 | a powerful wooden bow drawn by hand; usually 5-6 feet long; used in medieval England -03688066 06 n 01 long_iron 0 001 @ 03585073 n 0000 | an iron with a long shaft and a steep face; for hitting long low shots -03688192 06 n 01 long_johns 0 003 @ 04508949 n 0000 ;u 07075172 n 0000 ;u 06295235 n 0000 | warm underwear with long legs -03688316 06 n 01 longshot 0 001 @ 03925226 n 0000 | a photograph taken from a distance -03688405 06 n 01 long_sleeve 0 001 @ 04236377 n 0000 | a sleeve extending from shoulder to wrist -03688504 06 n 01 long_tom 0 001 @ 02950256 n 0000 | a long swivel cannon formerly used by the navy -03688605 06 n 02 long_trousers 0 long_pants 0 001 @ 04489008 n 0000 | trousers reaching to the foot -03688707 06 n 02 long_underwear 0 union_suit 0 001 @ 04508163 n 0000 | an undergarment with shirt and drawers in one piece -03688832 06 n 02 looking_glass 0 glass 2 001 @ 03773035 n 0000 | a mirror; usually a ladies' dressing mirror -03688943 06 n 04 lookout 0 observation_tower 0 lookout_station 0 observatory 1 004 @ 04341686 n 0000 + 02151966 v 0102 ~ 03839424 n 0000 ~ 04583967 n 0000 | a structure commanding a wide view of its surroundings -03689157 06 n 01 loom 0 006 @ 04417180 n 0000 ~ 02967540 n 0000 ~ 03336168 n 0000 ~ 03487331 n 0000 ~ 03591592 n 0000 ~ 03995661 n 0000 | a textile machine for weaving yarn into a textile -03689347 06 n 01 loop 0 001 @ 03582096 n 0000 | an intrauterine device in the shape of a loop -03689443 06 n 01 loophole 0 001 @ 03526198 n 0000 | a small hole in a fortified wall; for observation or discharging weapons -03689570 06 n 01 loop_knot 0 002 @ 03627232 n 0000 ~ 02881906 n 0000 | any of various knots used to make a fixed loop in a rope -03689700 06 n 01 loop-line 0 001 @ 02891430 n 0000 | a railway branch line that branches from the trunk line and then rejoins it later on -03689840 06 n 01 Lo/Ovral 0 003 @ 03936895 n 0000 %s 14747007 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norgestrel -03690005 06 n 02 lorazepam 0 Ativan 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | tranquilizer (trade name Ativan) used to treat anxiety and tension and insomnia -03690168 06 n 01 lorgnette 0 001 @ 04272054 n 0000 | eyeglasses that are held to the eyes with a long handle -03690279 06 n 02 Lorraine_cross 0 cross_of_Lorraine 0 001 @ 03135152 n 0000 | a cross with two crossbars, one above and one below the midpoint of the vertical, the lower longer than the upper -03690473 06 n 02 lorry 0 camion 2 001 @ 04490091 n 0000 | a large truck designed to carry heavy loads; usually without sides -03690600 06 n 01 lorry 1 001 @ 04543158 n 0000 | a large low horse-drawn wagon without sides -03690695 06 n 01 lost-and-found 0 001 @ 03177349 n 0000 | repository in a public building where lost articles can be kept until their owners reclaim them -03690851 06 n 01 lota 0 001 @ 04557648 n 0000 | a globular water bottle used in Asia -03690938 06 n 01 lotion 0 005 @ 04447443 n 0000 ~ 02683791 n 0000 ~ 02862916 n 0000 ~ 03487444 n 0000 ~ 04450640 n 0000 | any of various cosmetic preparations that are applied to the skin -03691128 06 n 02 lotion 1 application 0 009 @ 04074482 n 0000 + 01363648 v 0202 ~ 02847942 n 0000 ~ 02937766 n 0000 ~ 03309214 n 0000 ~ 03673594 n 0000 ~ 03746861 n 0000 ~ 04116919 n 0000 ~ 04596224 n 0000 | liquid preparation having a soothing or antiseptic or medicinal action when applied to the skin; "a lotion for dry skin" -03691459 06 n 05 loudspeaker 0 speaker 0 speaker_unit 0 loudspeaker_system 0 speaker_system 0 008 @ 03274561 n 0000 #p 04018155 n 0000 ~ 02917377 n 0000 ~ 04292572 n 0000 ~ 04349401 n 0000 ~ 04390873 n 0000 ~ 04502670 n 0000 ~ 04599124 n 0000 | electro-acoustic transducer that converts electrical signals into sounds loud enough to be heard at a distance -03691817 06 n 03 lounge 0 waiting_room 0 waiting_area 0 003 @ 04105893 n 0000 ~ 03045928 n 0000 ~ 03177059 n 0000 | a room (as in a hotel or airport) with seating where people can wait -03692004 06 n 01 lounger 1 002 @ 03692379 n 0000 + 01528339 v 0101 | an article of clothing designed for comfort and leisure wear -03692136 06 n 02 lounging_jacket 0 smoking_jacket 0 001 @ 03692379 n 0000 | a man's soft jacket usually with a tie belt; worn at home -03692272 06 n 02 lounging_pajama 0 lounging_pyjama 0 001 @ 03692379 n 0000 | pajamas worn while lounging -03692379 06 n 01 loungewear 0 004 @ 03051540 n 0000 ~ 03692004 n 0000 ~ 03692136 n 0000 ~ 03692272 n 0000 | clothing suitable for relaxation -03692522 06 n 02 loupe 0 jeweler's_loupe 0 001 @ 03484931 n 0000 | small magnifying glass (usually set in an eyepiece) used by jewelers and horologists -03692676 06 n 03 louver 0 louvre 0 fin 1 002 @ 04234455 n 0000 #p 03592669 n 0000 | one of a set of parallel slats in a door or window to admit air and reject rain -03692842 06 n 02 louvered_window 0 jalousie 1 001 @ 04587648 n 0000 | a window with glass louvers -03692942 06 n 02 Louvre 1 Louvre_Museum 0 002 @i 03800563 n 0000 #p 08932568 n 0000 | an art museum that is a famous tourist attraction in Paris -03693089 06 n 02 lovastatin 0 Mevacor 0 002 @ 03676175 n 0000 ;u 06845599 n 0201 | an oral drug (trade name Mevacor) to reduce blood cholesterol levels; used when dietary changes have proved inadequate -03693293 06 n 05 love_knot 0 lovers'_knot 0 lover's_knot 0 true_lovers'_knot 0 true_lover's_knot 0 001 @ 03627232 n 0000 | a stylized or decorative knot used as an emblem of love -03693474 06 n 04 love_seat 0 loveseat 0 tete-a-tete 0 vis-a-vis 0 002 @ 04256520 n 0000 + 01860890 a 0301 | small sofa that seats two people -03693617 06 n 01 love-token 0 001 @ 03610270 n 0000 | keepsake given as a token of love -03693707 06 n 01 loving_cup 1 001 @ 03241496 n 0000 | a large drinking vessel (usually with two handles) that people drink out of in turn at a banquet -03693860 06 n 01 lowboy 0 001 @ 03015254 n 0000 | a low chest or table with drawers and supported on four legs -03693973 06 n 02 lower_berth 0 lower 0 003 @ 02831724 n 0000 + 01574923 v 0201 + 01973125 v 0201 | the lower of two berths -03694098 06 n 02 lower_deck 0 third_deck 0 001 @ 03167666 n 0000 | the deck below the main deck -03694196 06 n 01 low-pass_filter 0 001 @ 03340009 n 0000 | a filter that passes frequencies below a certain value and attenuates frequencies above that value -03694356 06 n 01 low-warp-loom 0 001 @ 03487331 n 0000 | a handloom in which the warp is carried horizontally; for weaving tapestry -03694490 06 n 02 loxapine 0 Loxitane 0 002 @ 03713736 n 0000 ;u 06845599 n 0201 | a tranquilizer (trade name Loxitane) used to treat schizophrenia -03694639 06 n 02 LP 0 L-P 0 001 @ 03924069 n 0000 | a long-playing phonograph record; designed to be played at 33.3 rpm -03694761 06 n 01 L-plate 0 002 @ 03959936 n 0000 ;r 08860123 n 0000 | a square plate bearing the letter L that is attached to both ends of a car to indicate that the driver is a learner -03694949 06 n 01 lubber's_hole 0 002 @ 03526198 n 0000 #p 04194289 n 0000 | hole in a platform on a mast through which a sailor can climb without going out on the shrouds -03695122 06 n 05 lubricating_system 0 force-feed_lubricating_system 0 force_feed 0 pressure-feed_lubricating_system 0 pressure_feed 0 004 @ 03738241 n 0000 #p 03579982 n 0000 %p 03843555 n 0000 %p 03844550 n 0000 | mechanical system of lubricating internal combustion engines in which a pump forces oil into the engine bearings -03695452 06 n 01 luff 0 003 @ 03264542 n 0000 #p 03381776 n 0000 ;c 00314469 n 0000 | (nautical) the forward edge of a fore-and-aft sail that is next to the mast -03695616 06 n 01 lug 0 002 @ 04008947 n 0000 #p 03696746 n 0000 | a projecting piece that is used to lift or support or turn something -03695753 06 n 01 luge 0 002 @ 04235291 n 0000 + 01940034 v 0102 | a racing sled for one or two people -03695857 06 n 01 Luger 0 002 @ 04171629 n 0000 ;u 06851742 n 0000 | a German semiautomatic pistol -03695957 06 n 01 luggage_carrier 0 001 @ 02969886 n 0000 | carrier (as behind a bicycle seat) for luggage -03696065 06 n 03 luggage_compartment 0 automobile_trunk 0 trunk 1 003 @ 03079741 n 0000 #p 02958343 n 0000 ~ 02873244 n 0000 | compartment in an automobile that carries luggage or shopping or tools; "he put his golf bag in the trunk" -03696301 06 n 02 luggage_rack 0 roof_rack 0 001 @ 02969886 n 0000 | carrier for holding luggage above the seats of a train or on top of a car -03696445 06 n 01 lugger 0 002 @ 02858304 n 0000 %p 03696568 n 0000 | small fishing boat rigged with one or more lugsails -03696568 06 n 02 lugsail 0 lug 1 003 @ 03381776 n 0000 #p 03603594 n 0000 #p 03696445 n 0000 | a sail with four corners that is hoisted from a yard that is oblique to the mast -03696746 06 n 01 lug_wrench 0 002 @ 04606574 n 0000 %p 03695616 n 0000 | a wrench with jaws that have projecting lugs to engage the object that is to be rotated -03696909 06 n 02 lumberjack 0 lumber_jacket 0 001 @ 03589791 n 0000 | a short warm outer jacket -03697007 06 n 02 lumbermill 0 sawmill 0 001 @ 03316406 n 0000 | a mill for dressing logs and lumber -03697109 06 n 01 lumber_room 0 002 @ 04329477 n 0000 ;r 08860123 n 0000 | a storeroom in a house where odds and ends can be stored (especially furniture) -03697265 06 n 01 lumberyard 0 001 @ 04602044 n 0000 | a workplace where lumber is stocked for sale -03697366 06 n 03 lunar_excursion_module 0 lunar_module 0 LEM 0 001 @ 04264914 n 0000 | a spacecraft that carries astronauts from the command module to the surface of the moon and back -03697552 06 n 01 lunchroom 0 001 @ 04081281 n 0000 | a restaurant (in a facility) where lunch can be purchased -03697665 06 n 02 lunette 0 fenestella 0 002 @ 03848729 n 0000 #p 04523525 n 0000 | oval or circular opening; to allow light into a dome or vault -03697812 06 n 01 lunette 1 001 @ 03385557 n 0000 | temporary fortification like a detached bastion -03697913 06 n 03 lungi 0 lungyi 0 longyi 0 001 @ 03932670 n 0000 | a long piece of brightly colored cloth (cotton or silk) used as clothing (a skirt or loincloth or sash etc.) in India and Pakistan and Burma -03698123 06 n 01 lunula 0 001 @ 03169390 n 0000 | a crescent-shaped metal ornament of the Bronze Age -03698226 06 n 01 lusterware 0 001 @ 03992703 n 0000 | pottery with a metallic sheen produced by adding metallic oxides to the glaze -03698360 06 n 01 lute 0 005 @ 03025886 n 0000 + 10277638 n 0101 + 10277638 n 0103 + 10277638 n 0102 %p 03341297 n 0000 | chordophone consisting of a plucked instrument having a pear-shaped body, a usually bent neck, and a fretted fingerboard -03698604 06 n 02 luxury_liner 0 express_luxury_liner 0 001 @ 03673027 n 0000 | a liner equipped for sumptuous living -03698723 06 n 01 lyceum 0 001 @ 03478756 n 0000 | a public hall for lectures and concerts -03698815 06 n 02 lychgate 0 lichgate 0 001 @ 03427296 n 0000 | a roofed gate to a churchyard, formerly used as a temporary shelter for the bier during funerals -03698977 06 n 01 lymphangiogram 0 001 @ 02711573 n 0000 | an angiogram of the lymph nodes and lymph vessels made after the injection of a radiopaque substance -03699138 06 n 01 lypressin 0 002 @ 02719450 n 0000 @ 04522421 n 0000 | an antidiuretic and vasoconstrictor used to treat diabetes insipidus -03699280 06 n 01 lyre 0 002 @ 03495258 n 0000 ~ 04483210 n 0000 | a harp used by ancient Greeks for accompaniment -03699396 06 n 02 lysergic_acid_diethylamide 0 LSD 0 004 @ 03479647 n 0000 @ 03248958 n 0000 @ 03097890 n 0000 ~ 02675657 n 0000 | a powerful hallucinogenic drug manufactured from lysergic acid -03699591 06 n 03 machete 0 matchet 0 panga 0 001 @ 03624134 n 0000 | a large heavy knife used in Central and South America as a weapon or for cutting vegetation -03699754 06 n 01 machicolation 0 002 @ 03889503 n 0000 + 02361811 v 0101 | a projecting parapet supported by corbels on a medieval castle; has openings through which stones or boiling water could be dropped on an enemy -03699975 06 n 01 machine 0 046 @ 03183080 n 0000 + 10279018 n 0101 + 01623967 v 0101 + 01624169 v 0101 ~ 02749790 n 0000 ~ 02775359 n 0000 ~ 02938886 n 0000 ~ 02939565 n 0000 ~ 02977058 n 0000 ~ 03075248 n 0000 ~ 03082979 n 0000 ~ 03087069 n 0000 ~ 03109033 n 0000 ~ 03115525 n 0000 ~ 03169063 n 0000 ~ 03322940 n 0000 ~ 03392741 n 0000 ~ 03535429 n 0000 ~ 03701640 n 0000 ~ 03702248 n 0000 ~ 03764995 n 0000 ~ 03789946 n 0000 ~ 03901229 n 0000 ~ 03918074 n 0000 ~ 03936466 n 0000 ~ 03996416 n 0000 ~ 03997484 n 0000 ~ 03999992 n 0000 ~ 04000311 n 0000 ~ 04004475 n 0000 ~ 04064401 n 0000 ~ 04095577 n 0000 ~ 04169707 n 0000 ~ 04221823 n 0000 ~ 04237423 n 0000 ~ 04243941 n 0000 ~ 04252653 n 0000 ~ 04261116 n 0000 ~ 04300080 n 0000 ~ 04303357 n 0000 ~ 04303497 n 0000 ~ 04417180 n 0000 ~ 04437793 n 0000 ~ 04483925 n 0000 ~ 04601291 n 0000 ~ 04613939 n 0000 | any mechanical or electrical device that transmits or modifies energy to perform or assist in the performance of human tasks -03700963 06 n 02 machine 2 simple_machine 0 005 @ 03736970 n 0000 ~ 03566329 n 0000 ~ 03659809 n 0000 ~ 04020298 n 0000 ~ 04574999 n 0000 | a device for overcoming resistance at one point by applying force at some other point -03701191 06 n 01 machine_bolt 0 001 @ 02865665 n 0000 | a bolt with a square or hexagonal head on one end and a threaded shaft on the other end; tightened with a wrench; used to connect metal parts -03701391 06 n 01 machine_gun 0 009 @ 02760429 n 0000 + 01136835 v 0101 ~ 02760855 n 0000 ~ 02907656 n 0000 ~ 03429137 n 0000 ~ 03732543 n 0000 ~ 04267091 n 0000 %p 04322026 n 0000 ~ 04347519 n 0000 | a rapidly firing automatic gun (often mounted) -03701640 06 n 01 machinery 0 004 @ 03699975 n 0000 + 01623967 v 0101 ~ 03288643 n 0000 ~ 03765561 n 0000 | machines or machine systems collectively -03701790 06 n 01 machine_screw 0 001 @ 04153751 n 0000 | a screw used either with a nut or with a tapped hole; slotted head can be driven by a screwdriver -03701947 06 n 01 machine_shop 0 001 @ 04603081 n 0000 | workshop where metal is cut and shaped etc., by machine tools -03702067 06 n 02 machine_stitch 0 sewing-machine_stitch 0 002 @ 04180314 n 0000 ~ 03684611 n 0000 | a sewing stitch made by a sewing machine, sometimes using more than one thread -03702248 06 n 01 machine_tool 0 004 @ 03699975 n 0000 ~ 03240892 n 0000 ~ 03460040 n 0000 ~ 04184435 n 0000 | a powered machine for cutting or shaping or finishing metals or other materials -03702440 06 n 02 machinist's_vise 0 metalworking_vise 0 001 @ 04538552 n 0000 | a vise with two parallel iron jaws and a wide opening below -03702582 06 n 01 machmeter 0 001 @ 04273796 n 0000 | speedometer for measuring the speed of an aircraft relative to the speed of sound -03702719 06 n 04 macintosh 0 mackintosh 1 mac 0 mack 0 004 @ 04049405 n 0000 ;r 08860123 n 0000 %s 03703590 n 0000 ~ 03844815 n 0000 | a waterproof raincoat made of rubberized fabric -03702904 06 n 01 Mackinac_Bridge 0 002 @i 04366367 n 0000 #p 09099526 n 0000 | a suspension bridge across the channel between the lower and upper peninsulas of Michigan -03703075 06 n 01 mackinaw 0 001 @ 03309808 n 0000 | a heavy woolen cloth heavily napped and felted, often with a plaid design -03703203 06 n 02 mackinaw 1 Mackinaw_boat 0 001 @ 02858304 n 0000 | a flat-bottomed boat used on upper Great Lakes -03703320 06 n 02 mackinaw 2 Mackinaw_blanket 0 001 @ 02849154 n 0000 | a thick plaid blanket formerly used in the northwestern United States -03703463 06 n 02 mackinaw 3 Mackinaw_coat 0 001 @ 03057021 n 0000 | a short plaid coat made of made of thick woolen material -03703590 06 n 02 mackintosh 0 macintosh 1 002 @ 03309808 n 0000 #s 03702719 n 0000 | a lightweight waterproof (usually rubberized) fabric -03703730 06 n 01 macrame 0 002 @ 03631177 n 0000 + 01670901 v 0101 | a relatively coarse lace; made by weaving and knotting cords -03703862 06 n 01 madras 0 001 @ 03309808 n 0000 | a light patterned cotton cloth -03703945 06 n 02 Mae_West 0 air_jacket 0 001 @ 03662887 n 0000 | an inflatable life jacket -03704038 06 n 03 magazine 1 powder_store 0 powder_magazine 0 001 @ 04329190 n 0000 | a storehouse (as a compartment on a warship) where weapons and ammunition are stored -03704210 06 n 01 magazine 2 001 @ 04007894 n 0000 | product consisting of a paperback periodic publication as a physical object; "tripped over a pile of magazines" -03704376 06 n 02 magazine 4 cartridge 4 002 @ 04359335 n 0000 #p 02942699 n 0000 | a light-tight supply chamber holding the film and supplying it for exposure as required -03704549 06 n 01 magazine_rack 0 001 @ 04038440 n 0000 | a rack for displaying magazines -03704640 06 n 01 magic_bullet 0 002 @ 04074482 n 0000 ;c 03247620 n 0000 | a remedy (drug or therapy or preventive) that cures or prevents a disease; "there is no magic bullet against cancer" -03704834 06 n 01 magic_lantern 0 001 @ 04238617 n 0000 | an early form of slide projector -03704926 06 n 01 magic_realism 0 001 @ 03434943 n 0000 | a literary or artistic genre in which realistic narrative or meticulously realistic painting are combined with surreal elements of fantasy or dreams -03705134 06 n 01 Maginot_Line 0 002 @i 03385557 n 0000 #p 08929922 n 0000 | a fortification built before World War II to protect France's eastern border; initially considered to be impregnable, it was easily overrun by the German army in 1940 -03705379 06 n 01 magnet 0 018 ;c 06090869 n 0000 @ 03183080 n 0000 + 02926188 a 0101 + 01470813 a 0101 + 01470298 a 0101 + 01469677 a 0101 + 00777522 v 0101 + 00399788 v 0101 + 00399788 v 0102 ~ 02793296 n 0000 %p 03107716 n 0000 ~ 03276179 n 0000 ~ 03333851 n 0000 ~ 03707372 n 0000 ~ 03889208 n 0000 ~ 03917622 n 0000 %p 03976960 n 0000 ~ 04259202 n 0000 | (physics) a device that attracts iron and produces a magnetic field -03705808 06 n 01 magnetic_bottle 0 002 @ 03094503 n 0000 #p 04448185 n 0000 | container consisting of any configuration of magnetic fields used to contain a plasma during controlled thermonuclear reactions -03706016 06 n 01 magnetic_bubble_memory 0 001 @ 03829340 n 0000 | a nonvolatile storage device that holds information in the form of bubbles on a thin film of magnetic silicate; no longer used in most computers -03706229 06 n 01 magnetic_compass 0 003 @ 03080497 n 0000 ~ 03080731 n 0000 %p 03707372 n 0000 | compass based on an indicator (as a magnetic needle) that points to the magnetic north -03706415 06 n 02 magnetic_core_memory 0 core_memory 0 003 @ 04052757 n 0000 ;c 06128570 n 0000 %p 03108069 n 0000 | (computer science) a computer memory consisting of an array of magnetic cores; now superseded by semiconductor memories -03706653 06 n 04 magnetic_disk 0 magnetic_disc 0 disk 3 disc 3 005 @ 03744840 n 0000 ;c 06128570 n 0000 + 03209910 n 0301 ~ 03209910 n 0000 ~ 03492542 n 0000 | (computer science) a memory device consisting of a flat disk covered with a magnetic coating on which information is stored -03706939 06 n 01 magnetic_head 0 002 @ 03276179 n 0000 #p 04393095 n 0000 | an electromagnet (as on a tape recorder) that converts electrical variations into magnetic variations that can be stored on a surface and later retrieved -03707171 06 n 01 magnetic_mine 0 002 @ 03365078 n 0000 ;c 04194289 n 0000 | (nautical) a marine mine that is detonated by a mechanism that responds to magnetic material (as the steel hull of a ship) -03707372 06 n 01 magnetic_needle 0 002 @ 03705379 n 0000 #p 03706229 n 0000 | a slender magnet suspended in a magnetic compass on a mounting with little friction; used to indicate the direction of the earth's magnetic pole -03707597 06 n 01 magnetic_recorder 0 003 @ 04063373 n 0000 ~ 04393095 n 0000 ~ 04595501 n 0000 | recorder consisting of equipment for making records on magnetic media -03707766 06 n 01 magnetic_stripe 0 003 @ 03708036 n 0000 #p 13376012 n 0000 #p 13376764 n 0000 | a short strip of magnetic tape attached to a credit card or debit card; it contains data that will tell a reading device who you are and what your account number is, etc. -03708036 06 n 03 magnetic_tape 0 mag_tape 0 tape 4 007 @ 03744840 n 0000 + 00998399 v 0302 + 01003049 v 0302 ~ 02757714 n 0000 ~ 02979399 n 0000 ~ 03707766 n 0000 ~ 04534359 n 0000 | memory device consisting of a long thin plastic strip coated with iron oxide; used to record audio or video signals or to store computer information; "he took along a dozen tapes to record the interview" -03708425 06 n 02 magneto 0 magnetoelectric_machine 0 002 @ 03433877 n 0000 #p 03560567 n 0000 | a small dynamo with a secondary winding that produces a high voltage enabling a spark to jump between the poles of a spark plug in a gasoline engine -03708672 06 n 01 magnetograph 0 001 @ 04147495 n 0000 | a scientific instrument that registers magnetic variations (especially variations of the earth's magnetic field) -03708843 06 n 02 magnetometer 0 gaussmeter 0 001 @ 03753077 n 0000 | a meter to compare strengths of magnetic fields -03708962 06 n 01 magnetron 0 001 @ 04494204 n 0000 | a diode vacuum tube in which the flow of electrons from a central cathode to a cylindrical anode is controlled by crossed magnetic and electric fields; used mainly in microwave oscillators -03709206 06 n 01 magnifier 0 004 @ 04147495 n 0000 + 00240293 v 0103 ~ 03760671 n 0000 ~ 04403638 n 0000 | a scientific instrument that magnifies an image -03709363 06 n 01 magnum 0 001 @ 04591713 n 0000 | a large wine bottle for liquor or wine -03709454 06 n 01 magnum_opus 0 001 @ 04601690 n 0000 | a great work of art or literature -03709545 06 n 01 magnus_hitch 0 001 @ 04102962 n 0000 | a rolling hitch similar to a clove hitch -03709644 06 n 01 mail 1 003 @ 03100490 n 0000 + 01031256 v 0101 + 01437888 v 0101 | a conveyance that transports the letters and packages that are conveyed by the postal system -03709823 06 n 02 mailbag 0 postbag 0 001 @ 02773037 n 0000 | letter carrier's shoulder bag; "in Britain they call a mailbag a postbag" -03709960 06 n 02 mailbag 1 mail_pouch 0 002 @ 03993180 n 0000 ~ 03203959 n 0000 | pouch used in the shipment of mail -03710079 06 n 04 mailboat 0 mail_boat 0 packet 1 packet_boat 0 001 @ 02858304 n 0000 | a boat for carrying mail -03710193 06 n 02 mailbox 0 letter_box 0 001 @ 02883344 n 0000 | a private box for delivery of mail -03710294 06 n 01 mail_car 0 002 @ 02959942 n 0000 #m 03711044 n 0000 | a railway car in which mail is transported and sorted -03710421 06 n 01 maildrop 0 002 @ 03246052 n 0000 ~ 03989074 n 0000 | a drop where mail can be deposited -03710528 06 n 01 mailer 0 002 @ 03094503 n 0000 ~ 02690715 n 0000 | a container for something to be mailed -03710637 06 n 01 maillot 0 001 @ 04434932 n 0000 | tights for dancers or gymnasts -03710721 06 n 02 maillot 1 tank_suit 0 001 @ 04371563 n 0000 | a woman's one-piece bathing suit -03710819 06 n 01 mail_slot 0 001 @ 04243370 n 0000 | a slot (usually in a door) through which mail can be delivered -03710937 06 n 01 mailsorter 0 001 @ 04261116 n 0000 | a sorter for sorting mail according to the address -03711044 06 n 01 mail_train 0 002 @ 04468005 n 0000 %m 03710294 n 0000 | a train that carries mail -03711145 06 n 01 main 0 006 @ 03944672 n 0000 #p 03569964 n 0000 ~ 03272696 n 0000 ~ 03424103 n 0000 ~ 04179271 n 0000 ~ 04561167 n 0000 | a principal pipe in a system that distributes water or gas or electricity or that collects sewage -03711384 06 n 01 main_course 0 001 @ 03712337 n 0000 | a square mainsail -03711459 06 n 02 main_deck 0 second_deck 0 001 @ 03167666 n 0000 | the uppermost sheltered deck that runs the entire length of a large vessel -03711603 06 n 01 main_drag 0 002 @ 03712729 n 0000 ;u 07075172 n 0000 | the main street of a town or city -03711711 06 n 02 mainframe 1 mainframe_computer 0 002 @ 03196324 n 0000 ~ 04358117 n 0000 | a large digital computer serving 100-400 users and occupying a special air-conditioned room -03711897 06 n 01 main_line 0 001 @ 08616311 n 0000 | the principal route of a transportation system -03711999 06 n 01 mainmast 0 001 @ 03726760 n 0000 | the chief mast of a sailing vessel with two or more masts -03712111 06 n 01 main_rotor 0 003 @ 04111668 n 0000 %p 04112252 n 0000 %p 04112430 n 0000 | rotor consisting of large rotating airfoils on a single-rotor helicopter that produce the lift to support the helicopter in the air -03712337 06 n 01 mainsail 0 002 @ 04127904 n 0000 ~ 03711384 n 0000 | the lowermost sail on the mainmast -03712444 06 n 01 mainspring 0 002 @ 04288272 n 0000 #p 03047171 n 0000 | the most important spring in a mechanical device (especially a clock or watch); as it uncoils it drives the mechanism -03712637 06 n 01 mainstay 0 001 @ 03383211 n 0000 | the forestay that braces the mainmast -03712729 06 n 02 main_street 0 high_street 0 002 @ 04334599 n 0000 ~ 03711603 n 0000 | street that serves as a principal thoroughfare for traffic in a town -03712887 06 n 01 main-topmast 0 001 @ 04455250 n 0000 | the topmast next above the mainmast -03712981 06 n 01 main-topsail 0 001 @ 04127904 n 0000 | a topsail set on the mainmast -03713069 06 n 01 main_yard 0 001 @ 04610676 n 0000 | yard for a square mainsail -03713151 06 n 02 maisonette 0 maisonnette 0 002 @ 03544360 n 0000 ;r 08929922 n 0000 | a small house -03713254 06 n 02 maisonette 1 maisonnette 1 001 @ 02726305 n 0000 | a self-contained apartment (usually on two floors) in a larger house and with its own entrance from the outside -03713436 06 n 02 majolica 0 maiolica 0 001 @ 03262519 n 0000 | highly decorated earthenware with a glaze of tin oxide -03713556 06 n 01 major_suit 0 004 @ 04351233 n 0000 ;c 00490569 n 0000 %m 03507048 n 0000 %m 04266660 n 0000 | (bridge) a suit of superior scoring value, either spades or hearts -03713736 06 n 09 major_tranquilizer 0 major_tranquillizer 0 major_tranquilliser 0 antipsychotic_drug 0 antipsychotic_agent 0 antipsychotic 0 neuroleptic_drug 0 neuroleptic_agent 0 neuroleptic 0 012 @ 04470232 n 0000 ~ 03023175 n 0000 ~ 03053272 n 0000 ~ 03203641 n 0000 ~ 03371258 n 0000 ~ 03480186 n 0000 ~ 03694490 n 0000 ~ 03780896 n 0000 ~ 04007239 n 0000 ~ 04425262 n 0000 ~ 04425656 n 0000 ~ 14941884 n 0000 | tranquilizer used to treat psychotic conditions when a calming effect is desired -03714235 06 n 03 makeup 0 make-up 0 war_paint 2 014 @ 03113152 n 0000 + 00040928 v 0201 + 00040928 v 0101 ~ 02846874 n 0000 ~ 03308481 n 0000 ~ 03309110 n 0000 ~ 03309687 n 0000 ~ 03314780 n 0000 ~ 03456447 n 0000 ~ 03628071 n 0000 ~ 03676087 n 0000 ~ 03676483 n 0000 ~ 03724066 n 0000 ~ 04112752 n 0000 | cosmetics applied to the face to improve or change your appearance -03714610 06 n 01 makeweight 0 001 @ 04571088 n 0000 | a weight added to the scale to reach a required weight -03714721 06 n 02 makeweight 1 filler 1 002 @ 00002684 n 0000 + 00452512 v 0201 | anything added to fill out a whole; "some of the items in the collection are mere makeweights" -03714899 06 n 01 making 0 003 @ 03081021 n 0000 + 02748627 v 0101 + 02748759 v 0101 | (usually plural) the components needed for making or doing something; "the recipe listed all the makings for a chocolate cake" -03715114 06 n 01 Maksutov_telescope 0 001 @ 04068601 n 0000 | reflecting telescope in which the aberration of the concave mirror is reduced by a meniscus lens -03715275 06 n 02 malacca 0 malacca_cane 0 001 @ 02949202 n 0000 | a cane made from the stem of a rattan palm -03715386 06 n 02 mallet 0 beetle 0 004 @ 03481172 n 0000 + 01399821 v 0201 ~ 02966942 n 0000 ~ 03430313 n 0000 | a tool resembling a hammer but with a large head (usually wooden); used to drive wedges or ram down paving stones or for crushing or beating or flattening or smoothing -03715669 06 n 02 mallet 1 hammer 3 002 @ 03250847 n 0000 #p 03915437 n 0000 | a light drumstick with a rounded head that is used to strike such percussion instruments as chimes, kettledrums, marimbas, glockenspiels, etc. -03715892 06 n 01 mallet 2 003 @ 04285622 n 0000 ~ 03135030 n 0000 ~ 03978686 n 0000 | a sports implement with a long handle and a head like a hammer; used in sports (polo or croquet) to hit a ball -03716091 06 n 01 Maltese_cross 0 001 @ 03135152 n 0000 | a cross with triangular or arrow-shaped arms and the points toward the center -03716228 06 n 01 mammogram 0 001 @ 04100620 n 0000 | X-ray film of the soft tissue of the breast -03716327 06 n 02 man 0 piece 2 006 @ 03414162 n 0000 ~ 02846260 n 0000 ~ 03011355 n 0000 ~ 03014440 n 0000 ~ 04435378 n 0000 ~ 04579986 n 0000 | game equipment consisting of an object used in playing certain board games; "he taught me to set up the men on the chess board"; "he sacrificed a piece to get a strategic advantage" -03716656 06 n 01 mandala 0 003 @ 03178782 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | any of various geometric designs (usually circular) symbolizing the universe; used chiefly in Hinduism and Buddhism as an aid to meditation -03716887 06 n 01 mandola 0 001 @ 03716966 n 0000 | an early type of mandolin -03716966 06 n 01 mandolin 0 003 @ 03025886 n 0000 %p 03341297 n 0000 ~ 03716887 n 0000 | a stringed instrument related to the lute, usually played with a plectrum -03717131 06 n 02 manger 0 trough 1 002 @ 03094503 n 0000 ~ 02920164 n 0000 | a container (usually in a barn or stable) from which cattle or horses feed -03717285 06 n 01 mangle 0 002 @ 03050655 n 0000 + 01390486 v 0101 | clothes dryer for drying and ironing laundry by passing it between two heavy heated rollers -03717447 06 n 01 manhole 0 002 @ 03526198 n 0000 %p 03717622 n 0000 | a hole (usually with a flush cover) through which a person can gain access to an underground structure -03717622 06 n 01 manhole_cover 0 002 @ 04453910 n 0000 #p 03717447 n 0000 | a flush iron cover for a manhole (as in a street) -03717750 06 n 01 manifold 0 004 @ 03944672 n 0000 ~ 03303333 n 0000 ~ 03572832 n 0000 ~ 03576779 n 0000 | a pipe that has several lateral outlets to or from other pipes -03717921 06 n 05 mannequin 0 manikin 0 mannikin 0 manakin 0 form 0 001 @ 03255648 n 0000 | a life-size dummy used to display clothes -03718056 06 n 02 mannitol 0 Osmitrol 0 002 @ 03214670 n 0000 ;u 06845599 n 0201 | a diuretic (trade name Osmitrol) used to promote the excretion of urine -03718212 06 n 02 man-of-war 0 ship_of_the_line 0 002 @ 04552696 n 0000 ~ 04129490 n 0000 | a warship intended for combat -03718335 06 n 01 manometer 0 002 @ 04001499 n 0000 ~ 04410663 n 0000 | a pressure gauge for comparing pressures of a gas -03718458 06 n 02 manor 0 manor_house 0 002 @ 03719053 n 0000 + 03084397 a 0101 | the mansion of a lord or wealthy person -03718581 06 n 02 manor_hall 0 hall 6 002 @ 04105893 n 0000 #p 03719053 n 0000 | the large room of a manor or castle -03718699 06 n 01 MANPAD 0 001 @ 04363210 n 0000 | a man-portable surface-to-air missile -03718789 06 n 02 mansard 0 mansard_roof 0 003 @ 03149401 n 0000 + 01221875 a 0101 ~ 03395401 n 0000 | a hip roof having two slopes on each side -03718935 06 n 01 manse 0 001 @ 04079244 n 0000 | the residence of a clergyman (especially a Presbyterian clergyman) -03719053 06 n 05 mansion 0 mansion_house 0 manse 1 hall 7 residence 1 005 @ 03544360 n 0000 ~ 03718458 n 0000 %p 03718581 n 0000 ~ 03878066 n 0000 ~ 04305323 n 0000 | a large and imposing house -03719249 06 n 01 manta 0 001 @ 02849154 n 0000 | a blanket that is used as a cloak or shawl -03719343 06 n 05 mantel 0 mantelpiece 0 mantle 2 mantlepiece 0 chimneypiece 0 002 @ 04190052 n 0000 #p 03346455 n 0000 | shelf that projects from wall above fireplace; "in Britain they call a mantel a chimneypiece" -03719560 06 n 02 mantelet 0 mantilla 2 001 @ 02955767 n 0000 | short cape worn by women -03719650 06 n 02 mantelet 1 mantlet 0 001 @ 04191595 n 0000 | portable bulletproof shelter -03719743 06 n 01 mantilla 0 001 @ 04143897 n 0000 | a woman's silk or lace scarf -03719826 06 n 01 mantrap 0 001 @ 04474466 n 0000 | a trap for catching trespassers -03719911 06 n 01 mantua 0 001 @ 03450230 n 0000 | loose gown of the 17th and 18th centuries -03720005 06 n 01 Mao_jacket 0 001 @ 03589791 n 0000 | a light weight jacket with a high collar; worn by Mao Zedong and the Chinese people during his regime -03720163 06 n 01 map 0 010 @ 04076846 n 0000 + 00710606 v 0101 + 01687876 v 0101 ~ 03009920 n 0000 ~ 03026093 n 0000 ~ 03096142 n 0000 ~ 03959350 n 0000 ~ 04097256 n 0000 ~ 04227618 n 0000 ~ 04567222 n 0000 | a diagrammatic representation of the earth's surface (or part of it) -03720443 06 n 01 map_projection 0 005 @ 04009382 n 0000 ~ 03090437 n 0000 ~ 03090856 n 0000 ~ 03293471 n 0000 ~ 03748691 n 0000 | a projection of the globe onto a flat map using a grid of lines of latitude and longitude -03720665 06 n 01 maquiladora 0 002 @ 02750169 n 0000 ;r 09044862 n 0000 | an assembly plant in Mexico (near the United States border); parts are shipped into Mexico and the finished product is shipped back across the border -03720891 06 n 01 maraca 0 001 @ 03915437 n 0000 | a percussion instrument consisting of a hollow gourd containing pebbles or beans; often played in pairs -03721047 06 n 01 marble 0 002 @ 02778669 n 0000 ~ 04396093 n 0000 | a small ball of glass that is used in various games -03721169 06 n 01 marble 1 001 @ 04157320 n 0000 | a sculpture carved from marble -03721252 06 n 01 marching_order 0 001 @ 03730153 n 0000 | equipage for marching; "the company was dressed in full marching order" -03721384 06 n 02 marimba 0 xylophone 0 002 @ 03915437 n 0000 + 10801697 n 0201 | a percussion instrument with wooden bars tuned to produce a chromatic scale and with resonators; played with small mallets -03721590 06 n 01 marina 0 001 @ 03216828 n 0000 | a fancy dock for small yachts and cabin cruisers -03721691 06 n 01 Marineland 0 001 @i 02732072 n 0000 | a commercial aquarium featuring trained dolphins -03721797 06 n 01 marker 0 004 @ 00021939 n 0000 + 00921738 v 0101 ~ 02871147 n 0000 ~ 04611795 n 0000 | some conspicuous object used to distinguish or mark something; "the buoys were markers for the channel" -03722007 06 n 01 marker 1 005 @ 04608567 n 0000 + 00921738 v 0101 + 01004062 v 0102 + 00508032 v 0101 ~ 03518943 n 0000 | a writing implement for making a mark -03722169 06 n 01 market_garden 0 001 @ 03417345 n 0000 | a garden where fruit and vegetables are grown for marketing -03722288 06 n 04 marketplace 0 market_place 0 mart 0 market 1 007 @ 03748162 n 0000 ~ 02684962 n 0000 ~ 02813645 n 0000 ~ 03461385 n 0000 ~ 03847823 n 0000 ~ 04234969 n 0000 ~ 08492461 n 0000 | an area in a town where a public mercantile establishment is set up -03722552 06 n 01 marline 0 001 @ 04245703 n 0000 | a small usually tarred line of 2 strands -03722646 06 n 03 marlinespike 0 marlinspike 0 marlingspike 0 001 @ 03489162 n 0000 | a pointed iron hand tool that is used to separate strands of a rope or cable (as in splicing) -03722827 06 n 01 marmite 0 001 @ 03990474 n 0000 | a large pot especially one with legs used e.g. for cooking soup -03722944 06 n 02 marocain 0 crepe_marocain 0 001 @ 03130563 n 0000 | a dress crepe; similar to Canton crepe -03723054 06 n 01 maroon 0 001 @ 03348454 n 0000 | an exploding firework used as a warning signal -03723153 06 n 02 marquee 0 marquise 0 001 @ 02951843 n 0000 | permanent canopy over an entrance of a hotel etc. -03723267 06 n 02 marquetry 0 marqueterie 0 001 @ 03572449 n 0000 | inlaid veneers are fitted together to form a design or picture that is then used to ornament furniture -03723439 06 n 01 marriage_bed 0 001 @ 02818832 n 0000 | the bed shared by a newly wed couple -03723534 06 n 01 marseille 0 001 @ 03309808 n 0000 | strong cotton fabric with a raised pattern; used for bedspreads -03723653 06 n 01 marshalling_yard 0 001 @ 04611154 n 0000 | a railway yard in which trains are assembled and goods are loaded -03723781 06 n 01 martello_tower 0 001 @ 03386011 n 0000 | a circular masonry fort for coastal defence -03723885 06 n 01 martingale 0 002 @ 04295081 n 0000 #p 03494706 n 0000 | a harness strap that connects the nose piece to the girth; prevents the horse from throwing back its head -03724066 06 n 01 mascara 0 001 @ 03714235 n 0000 | makeup that is used to darken and thicken the eye lashes -03724176 06 n 01 maser 0 002 @ 02705944 n 0000 ~ 03424204 n 0000 | an acronym for microwave amplification by stimulated emission of radiation; an amplifier that works on the same principle as a laser and emits coherent microwave radiation -03724417 06 n 01 masher 0 002 @ 03621049 n 0000 + 00331082 v 0102 | a kitchen utensil used for mashing (e.g. potatoes) -03724538 06 n 02 mashie 0 five_iron 0 001 @ 03585073 n 0000 | middle-distance iron -03724623 06 n 02 mashie_niblick 0 seven_iron 0 001 @ 03585073 n 0000 | iron with a lofted face for hitting high shots to the green -03724756 06 n 02 masjid 0 musjid 0 002 @ 03953416 n 0000 ;c 06234825 n 0000 | (Islam) a Muslim place of worship -03724870 06 n 01 mask 0 005 @ 03122748 n 0000 @ 03206718 n 0000 + 01358328 v 0101 ~ 03221059 n 0000 ~ 03319457 n 0000 | a covering to disguise or conceal the face -03725035 06 n 01 mask 1 005 @ 04014297 n 0000 + 01358328 v 0101 ~ 03314378 n 0000 ~ 03424325 n 0000 ~ 04572121 n 0000 | a protective covering worn over the face -03725198 06 n 02 masking_piece 0 masking 0 001 @ 04145056 n 0000 | scenery used to block the audience's view of parts of the stage that should not be seen -03725355 06 n 02 masking_tape 0 masking_paper 0 001 @ 02680337 n 0000 | adhesive tape used to cover the part of a surface that should not be painted -03725506 06 n 01 Masonite 0 002 @ 03331390 n 0000 ;u 06851742 n 0000 | a type of fiberboard -03725600 06 n 01 Mason_jar 0 001 @ 03593526 n 0000 | a glass jar with an air-tight screw top; used in home canning -03725717 06 n 01 masonry 0 004 @ 04341686 n 0000 ~ 02898369 n 0000 ~ 03252324 n 0000 ~ 04326799 n 0000 | structure built of stone or brick by a mason -03725869 06 n 01 mason's_level 0 001 @ 03658858 n 0000 | a level longer than a carpenter's level -03725968 06 n 02 Massachusetts_Institute_of_Technology 0 MIT 0 002 @i 04511002 n 0000 #p 09096664 n 0000 | an engineering university in Cambridge -03726116 06 n 01 massage_parlor 0 001 @ 03953020 n 0000 | a business establishment that offers therapeutic massage -03726233 06 n 01 massage_parlor 1 001 @ 04581595 n 0000 | a place where illicit sex is available under the guise of therapeutic massage -03726371 06 n 01 mass_spectrograph 0 001 @ 03726516 n 0000 | a mass spectrometer that produces a graphical representation of the mass spectrum -03726516 06 n 02 mass_spectrometer 0 spectrometer 0 003 @ 04273064 n 0000 + 02918132 a 0201 ~ 03726371 n 0000 | spectroscope for obtaining a mass spectrum by deflecting ions into a thin slit and measuring the ion current with an electrometer -03726760 06 n 01 mast 0 009 @ 04267577 n 0000 #p 04128837 n 0000 ~ 03382856 n 0000 ~ 03598646 n 0000 ~ 03606465 n 0000 ~ 03711999 n 0000 %p 03727738 n 0000 ~ 03775847 n 0000 ~ 04455250 n 0000 | a vertical spar for supporting sails -03726993 06 n 01 mast 1 001 @ 03976657 n 0000 | any sturdy upright pole -03727067 06 n 02 mastaba 0 mastabah 0 001 @ 03455033 n 0000 | an ancient Egyptian mud-brick tomb with a rectangular base and sloping sides and flat roof; "the Egyptian pyramids developed from the mastaba" -03727274 06 n 03 master 0 master_copy 0 original 0 003 @ 03129123 n 0000 + 00699207 a 0301 + 01686439 a 0301 | an original creation (i.e., an audio recording) from which copies can be made -03727465 06 n 01 master_bedroom 0 001 @ 02821627 n 0000 | the principal bedroom in a house; usually occupied by the head of the household -03727605 06 n 02 masterpiece 0 chef-d'oeuvre 0 001 @ 04599396 n 0000 | the most outstanding work of a creative artist or craftsman -03727738 06 n 01 masthead 0 002 @ 08663860 n 0000 #p 03726760 n 0000 | the head or top of a mast -03727837 06 n 01 mat 0 002 @ 03366823 n 0000 ~ 03223299 n 0000 | a thick flat pad used as a floor covering -03727946 06 n 02 mat 2 gym_mat 0 003 @ 04285146 n 0000 ~ 02953850 n 0000 ~ 04607035 n 0000 | sports equipment consisting of a piece of thick padding on the floor for gymnastic sports -03728131 06 n 01 mat 3 004 @ 03872495 n 0000 ~ 03242120 n 0000 ~ 03794655 n 0000 ~ 03952886 n 0000 | a small pad of material that is used to protect surface from an object placed on it -03728318 06 n 02 mat 4 matting 1 001 @ 03793186 n 0000 | mounting consisting of a border or background for a picture -03728437 06 n 03 match 0 lucifer 0 friction_match 0 006 @ 03666591 n 0000 ~ 03407616 n 0000 ~ 03620730 n 0000 %p 03729826 n 0000 ~ 04126980 n 0000 ~ 04244278 n 0000 | lighter consisting of a thin piece of wood or cardboard tipped with combustible chemical; ignites with friction; "he always carries matches to light his pipe"; "as long you've a lucifer to light your fag" -03728811 06 n 02 match 1 mate 0 003 @ 03257343 n 0000 + 01292885 v 0202 + 02657219 v 0101 | an exact duplicate; "when a match is found an entry is made in the notebook" -03728982 06 n 01 match 2 001 @ 03666591 n 0000 | a burning piece of wood or cardboard; "if you drop a match in there the whole place will explode" -03729131 06 n 01 matchboard 0 001 @ 15101854 n 0000 | a board that has a groove cut into one edge and a tongue cut into the other so they fit tightly together (as in a floor) -03729308 06 n 01 matchbook 0 001 @ 03376279 n 0000 | a small folder of paper safety matches -03729402 06 n 01 matchbox 0 001 @ 02883344 n 0000 | a box for holding matches -03729482 06 n 01 matchlock 0 001 @ 03802007 n 0000 | an early style of musket; a slow-burning wick would be lowered into a hole in the breech to ignite the charge -03729647 06 n 02 match_plane 0 tonguing_and_grooving_plane 0 001 @ 03954731 n 0000 | a plane having cutters designed to make the tongues and grooves on the edges of matchboards -03729826 06 n 01 matchstick 0 002 @ 04317420 n 0000 #p 03728437 n 0000 | a short thin stick of wood used in making matches -03729951 06 n 01 material 1 004 @ 03294048 n 0000 ~ 03871524 n 0000 ~ 04047733 n 0000 ~ 04105704 n 0000 | things needed for doing or making something; "writing materials"; "useful teaching materials" -03730153 06 n 02 materiel 0 equipage 1 005 @ 03294048 n 0000 ;c 08199025 n 0000 + 02339413 v 0201 ~ 02774921 n 0000 ~ 03721252 n 0000 | equipment and supplies of a military force -03730334 06 n 01 maternity_hospital 0 001 @ 03540595 n 0000 | a hospital that provides care for women during pregnancy and childbirth and for newborn infants -03730494 06 n 01 maternity_ward 0 001 @ 04549919 n 0000 | a hospital ward that provides care for women during pregnancy and childbirth and for newborn infants -03730655 06 n 01 matrix 0 001 @ 03779370 n 0000 | mold used in the production of phonograph records, type, or other relief surface -03730788 06 n 02 Matthew_Walker 0 Matthew_Walker_knot 0 001 @ 04328054 n 0000 | a kind of stopper knot -03730893 06 n 01 matting 0 002 @ 03122748 n 0000 + 00565592 v 0107 | a covering of coarse fabric (usually of straw or hemp) -03731019 06 n 01 mattock 0 001 @ 03929202 n 0000 | a kind of pick that is used for digging; has a flat blade set at right angles to the handle -03731164 06 n 01 mattress 0 009 @ 03872495 n 0000 #p 02818832 n 0000 ~ 02690809 n 0000 ~ 03325481 n 0000 ~ 03408444 n 0000 ~ 03875088 n 0000 ~ 03879336 n 0000 ~ 04288919 n 0000 ~ 04432308 n 0000 | a large thick pad filled with resilient material and often incorporating coiled springs, used as a bed or part of a bed -03731483 06 n 01 mattress_cover 0 001 @ 02820210 n 0000 | bedclothes that provide a cover for a mattress -03731590 06 n 01 mattress_pad 0 001 @ 03872495 n 0000 | a protective pad over a mattress to protect it -03731695 06 n 03 maul 0 sledge 0 sledgehammer 0 004 @ 03481172 n 0000 + 01416732 v 0301 + 01416732 v 0202 + 01232272 v 0101 | a heavy long-handled hammer used to drive stakes or wedges -03731882 06 n 02 maulstick 0 mahlstick 0 001 @ 04317420 n 0000 | a long stick that a painter uses to support the hand holding the brush -03732020 06 n 01 Mauser 0 001 @ 04076284 n 0000 | trademark for a repeating rifle or pistol -03732114 06 n 01 mausoleum 0 003 @ 02921884 n 0000 ~i 03732252 n 0000 ~i 04386283 n 0000 | a large burial chamber, usually above ground -03732252 06 n 01 Mausoleum_at_Halicarnasus 0 002 @i 03732114 n 0000 #m 04178329 n 0000 | a white marble mausoleum 140 feet high built in 352 BC at Halicarnassus as a memorial to a king; destroyed in 1402 -03732458 06 n 01 maxi 0 001 @ 04230808 n 0000 | a long skirt ending below the calf -03732543 06 n 01 Maxim_gun 0 001 @ 03701391 n 0000 | an obsolete water-cooled machine gun having a single barrel -03732658 06 n 01 maximum_and_minimum_thermometer 0 001 @ 04421872 n 0000 | thermometer that records the highest and lowest temperatures reached during a period of time -03732828 06 n 01 Maxzide 0 002 @ 02721160 n 0000 %s 03552169 n 0000 | trade name for an antihypertensive drug containing hydrochlorothiazide and another diuretic -03732992 06 n 01 Mayflower 0 001 @i 04194289 n 0000 | the ship in which the Pilgrim Fathers sailed from England to Massachusetts in 1620 -03733131 06 n 01 maypole 0 001 @ 03988170 n 0000 | a vertical pole or post decorated with streamers that can be held by dancers celebrating May Day -03733281 06 n 02 maze 0 labyrinth 0 004 @ 04377057 n 0000 + 02178628 a 0202 + 02178628 a 0103 ~i 03630992 n 0000 | complex system of paths or tunnels in which it is easy to get lost -03733465 06 n 01 mazer 0 001 @ 02881193 n 0000 | a large hardwood drinking bowl -03733547 06 n 01 means 0 001 @ 03575240 n 0000 | an instrumentality for accomplishing some end -03733644 06 n 01 measure 1 002 @ 03094503 n 0000 ~ 03733805 n 0000 | a container of some standard capacity that is used to obtain fixed amounts of a substance -03733805 06 n 01 measuring_cup 0 001 @ 03733644 n 0000 | graduated cup used to measure liquid or granular ingredients -03733925 06 n 03 measuring_instrument 0 measuring_system 0 measuring_device 0 086 @ 03574816 n 0000 ~ 02670935 n 0000 ~ 02677436 n 0000 ~ 02696569 n 0000 ~ 02699915 n 0000 ~ 02700258 n 0000 ~ 02752917 n 0000 ~ 02757337 n 0000 ~ 02794156 n 0000 ~ 02808695 n 0000 ~ 02865214 n 0000 ~ 02921592 n 0000 ~ 02939866 n 0000 ~ 02941095 n 0000 ~ 03027108 n 0000 ~ 03071552 n 0000 ~ 03118346 n 0000 ~ 03126927 n 0000 ~ 03142205 n 0000 ~ 03168933 n 0000 ~ 03175301 n 0000 ~ 03175457 n 0000 ~ 03225458 n 0000 ~ 03260733 n 0000 ~ 03275125 n 0000 ~ 03280216 n 0000 ~ 03301389 n 0000 ~ 03429288 n 0000 ~ 03451473 n 0000 ~ 03455642 n 0000 ~ 03512624 n 0000 ~ 03514129 n 0000 ~ 03553486 n 0000 ~ 03554460 n 0000 ~ 03566555 n 0000 ~ 03577312 n 0000 ~ 03578981 n 0000 ~ 03583621 n 0000 ~ 03609147 n 0000 ~ 03628984 n 0000 ~ 03661621 n 0000 ~ 03686658 n 0000 ~ 03735637 n 0000 ~ 03753077 n 0000 ~ 03819047 n 0000 ~ 03840823 n 0000 ~ 03868643 n 0000 ~ 03904782 n 0000 ~ 03906894 n 0000 ~ 03926876 n 0000 ~ 03934890 n 0000 ~ 03947111 n 0000 ~ 03951213 n 0000 ~ 03951453 n 0000 ~ 03966325 n 0000 ~ 03991837 n 0000 ~ 04030846 n 0000 ~ 04039848 n 0000 ~ 04053508 n 0000 ~ 04070415 n 0000 ~ 04086663 n 0000 ~ 04141975 n 0000 ~ 04148285 n 0000 ~ 04165551 n 0000 ~ 04168840 n 0000 ~ 04172607 n 0000 ~ 04180888 n 0000 ~ 04259771 n 0000 ~ 04274686 n 0000 ~ 04280706 n 0000 ~ 04280845 n 0000 ~ 04305947 n 0000 ~ 04375926 n 0000 ~ 04382880 n 0000 ~ 04392113 n 0000 ~ 04410760 n 0000 ~ 04410886 n 0000 ~ 04411019 n 0000 ~ 04421872 n 0000 ~ 04437953 n 0000 ~ 04451636 n 0000 ~ 04458045 n 0000 ~ 04521863 n 0000 ~ 04527475 n 0000 ~ 04538249 n 0000 ~ 04564278 n 0000 | instrument that shows the extent or amount or quantity or degree of something -03735637 06 n 03 measuring_stick 0 measure 0 measuring_rod 0 008 @ 03733925 n 0000 + 00681429 v 0201 + 02704349 v 0201 + 00489837 v 0202 + 00647094 v 0201 ~ 02857812 n 0000 ~ 04118776 n 0000 ~ 04225578 n 0000 | measuring instrument having a sequence of marks at regular intervals; used as a reference in making measurements -03735963 06 n 01 meat_counter 0 001 @ 03116530 n 0000 | counter where meats are displayed for sale -03736064 06 n 01 meat_grinder 0 001 @ 03765561 n 0000 | a mill for grinding meat -03736147 06 n 01 meat_hook 0 001 @ 03532342 n 0000 | a strong pointed hook from which the carcasses of animals are hung -03736269 06 n 01 meat_house 0 001 @ 03545150 n 0000 | a small house (on a farm) where meat is stored -03736372 06 n 01 meat_safe 0 002 @ 04125116 n 0000 ;r 08860123 n 0000 | a safe for storing meat -03736470 06 n 01 meat_thermometer 0 001 @ 04421872 n 0000 | a thermometer that is inserted into the center of a roast (with the top away from the heat source); used to measure how well done the meat is -03736674 06 n 01 mebendazole 0 001 @ 04528630 n 0000 | an anthelmintic used to treat hookworm and pinworm and roundworm infestations -03736809 06 n 02 Meccano 0 Meccano_set 0 003 @ 03964744 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | a child's construction set for making mechanical models -03736970 06 n 01 mechanical_device 0 046 @ 03738472 n 0000 ~ 02903204 n 0000 ~ 02918595 n 0000 ~ 02919148 n 0000 ~ 02962200 n 0000 ~ 03082807 n 0000 ~ 03105088 n 0000 ~ 03119510 n 0000 ~ 03150232 n 0000 ~ 03189083 n 0000 ~ 03191451 n 0000 ~ 03276574 n 0000 ~ 03296081 n 0000 ~ 03432129 n 0000 ~ 03450881 n 0000 ~ 03532672 n 0000 ~ 03700963 n 0000 ~ 03885410 n 0000 ~ 03948950 n 0000 ~ 04011827 n 0000 ~ 04021798 n 0000 ~ 04055180 n 0000 ~ 04063154 n 0000 ~ 04088797 n 0000 ~ 04167346 n 0000 ~ 04211528 n 0000 ~ 04228215 n 0000 ~ 04282231 n 0000 ~ 04282494 n 0000 ~ 04289027 n 0000 ~ 04306592 n 0000 ~ 04325592 n 0000 ~ 04336996 n 0000 ~ 04337740 n 0000 ~ 04359335 n 0000 ~ 04371774 n 0000 ~ 04450465 n 0000 ~ 04474922 n 0000 ~ 04533042 n 0000 ~ 04533199 n 0000 ~ 04542095 n 0000 ~ 04568069 n 0000 ~ 04576971 n 0000 ~ 04586421 n 0000 ~ 04586581 n 0000 ~ 04590746 n 0000 | mechanism consisting of a device that works on mechanical principles -03737912 06 n 01 mechanical_drawing 0 003 @ 03234306 n 0000 ~ 03535970 n 0000 ~ 04529795 n 0000 | scale drawing of a machine or architectural plan etc, -03738066 06 n 03 mechanical_piano 0 Pianola 0 player_piano 0 001 @ 03928116 n 0000 | a mechanically operated piano that uses a roll of perforated paper to activate the keys -03738241 06 n 01 mechanical_system 0 007 @ 04377057 n 0000 ~ 03401279 n 0000 ~ 03674440 n 0000 ~ 03695122 n 0000 ~ 04008385 n 0000 ~ 04366116 n 0000 ~ 04526520 n 0000 | a system of elements that interact on mechanical principles -03738472 06 n 01 mechanism 0 030 @ 03183080 n 0000 + 01499686 a 0101 ~ 02677718 n 0000 ~ 02678384 n 0000 ~ 02761392 n 0000 ~ 02764614 n 0000 ~ 02969010 n 0000 ~ 02972533 n 0000 ~ 02972714 n 0000 ~ 03047171 n 0000 ~ 03096960 n 0000 ~ 03102859 n 0000 ~ 03172738 n 0000 ~ 03242995 n 0000 ~ 03243625 n 0000 ~ 03317990 n 0000 ~ 03339529 n 0000 ~ 03431243 n 0000 ~ 03530041 n 0000 ~ 03551790 n 0000 ~ 03560567 n 0000 ~ 03683341 n 0000 ~ 03736970 n 0000 ~ 04040759 n 0000 ~ 04110955 n 0000 ~ 04312916 n 0000 ~ 04313220 n 0000 ~ 04392764 n 0000 ~ 04578708 n 0000 ~ 04602840 n 0000 | device consisting of a piece of machinery; has moving parts that perform some function -03739136 06 n 03 meclizine 0 meclizine_hydrochloride 0 Antivert 0 002 @ 02720725 n 0000 ;u 06845599 n 0301 | an antihistamine (trade name Antivert) used to treat or prevent motion sickness -03739327 06 n 03 meclofenamate 0 meclofenamate_sodium 0 Meclomen 0 002 @ 03828465 n 0000 ;u 06845599 n 0301 | a nonsteroidal anti-inflammatory (trade name Meclomen) used to treat arthritis -03739518 06 n 03 medical_building 0 health_facility 0 healthcare_facility 0 003 @ 02913152 n 0000 ~ 03043274 n 0000 ~ 03540595 n 0000 | building where medicine is practiced -03739693 06 n 01 medical_instrument 0 021 @ 03574816 n 0000 ~ 02781764 n 0000 ~ 02905886 n 0000 ~ 02963503 n 0000 ~ 03187751 n 0000 ~ 03189818 n 0000 ~ 03275311 n 0000 ~ 03276839 n 0000 ~ 03286572 n 0000 ~ 03332005 n 0000 ~ 03610836 n 0000 ~ 03643149 n 0000 ~ 03850613 n 0000 ~ 03858183 n 0000 ~ 03979492 n 0000 ~ 04086937 n 0000 ~ 04273285 n 0000 ~ 04317175 n 0000 ~ 04364545 n 0000 ~ 04376876 n 0000 ~ 04421417 n 0000 | instrument used in the practice of medicine -03740161 06 n 04 medicine 0 medication 0 medicament 0 medicinal_drug 0 094 @ 03247620 n 0000 ;c 06043075 n 0000 + 00084230 v 0201 + 01166656 a 0102 + 00084230 v 0102 + 00084562 v 0101 + 00084230 v 0101 -c 01846049 a 0000 -c 01846204 a 0000 ~ 02678528 n 0000 ~ 02696384 n 0000 ~ 02698036 n 0000 ~ 02706373 n 0000 ~ 02707683 n 0000 ~ 02711422 n 0000 ~ 02715941 n 0000 ~ 02716205 n 0000 ~ 02717901 n 0000 ~ 02718084 n 0000 ~ 02718259 n 0000 ~ 02718469 n 0000 ~ 02718811 n 0000 ~ 02719105 n 0000 ~ 02719294 n 0000 ~ 02719450 n 0000 ~ 02719750 n 0000 ~ 02720725 n 0000 ~ 02721160 n 0000 ~ 02721538 n 0000 ~ 02723292 n 0000 ~ 02723595 n 0000 ~ 02724207 n 0000 ~ 02724533 n 0000 ~ 02725242 n 0000 ~ 02725367 n 0000 ~ 02726861 n 0000 ~ 02750835 n 0000 ~ 02753569 n 0000 ~ 02765247 n 0000 ~ 02854156 n 0000 ~ 02905612 n 0000 ~ 02938514 n 0000 ~ 02965617 n 0000 ~ 03047353 n 0000 ~ 03048598 n 0000 ~ 03067690 n 0000 ~ 03117776 n 0000 ~ 03157987 n 0000 ~ 03169271 n 0000 ~ 03174829 n 0000 ~ 03188979 n 0000 ~ 03214051 n 0000 ~ 03225238 n 0000 ~ 03245075 n 0000 ~ 03248560 n 0000 ~ 03304605 n 0000 ~ 03354082 n 0000 ~ 03433079 n 0000 ~ 03513961 n 0000 ~ 03515500 n 0000 ~ 03522239 n 0000 ~ 03562958 n 0000 ~ 03571155 n 0000 ~ 03587874 n 0000 ~ 03588046 n 0000 ~ 03676175 n 0000 ~ 03753826 n 0000 ~ 03836699 n 0000 ~ 03866176 n 0000 ~ 03869685 n 0000 ~ 03889974 n 0000 ~ 03898936 n 0000 ~ 03909835 n 0000 ~ 03913702 n 0000 ~ 03920989 n 0000 ~ 03952696 n 0000 ~ 03994008 n 0000 ~ 03999280 n 0000 ~ 04006584 n 0000 ~ 04025748 n 0000 ~ 04074482 n 0000 ~ 04117089 n 0000 ~ 04166553 n 0000 ~ 04260816 n 0000 ~ 04271640 n 0000 ~ 04349701 n 0000 ~ 04350347 n 0000 ~ 04361381 n 0000 ~ 04439122 n 0000 ~ 04451473 n 0000 ~ 04506005 n 0000 ~ 04528354 n 0000 ~ 04528630 n 0000 %s 12487262 n 0000 | (medicine) something that treats or prevents or alleviates the symptoms of disease -03742019 06 n 01 medicine_ball 0 001 @ 02778669 n 0000 | heavy ball used in physical training -03742115 06 n 02 medicine_chest 0 medicine_cabinet 0 001 @ 02933112 n 0000 | cabinet that holds medicines and toiletries -03742238 06 n 01 MEDLINE 0 001 @ 04402746 n 0000 | the computer-based telephone system of the United States National Library of Medicine that provides rapid linkage to MEDLARS -03742416 06 n 01 meerschaum 0 002 @ 03945167 n 0000 %s 14681445 n 0000 | a pipe having a bowl made of meerschaum -03742531 06 n 02 mefenamic_acid 0 Ponstel 0 001 @ 03828465 n 0000 | a nonsteroidal anti-inflammatory and analgesic drug (trade name Ponstel) used to treat mild pain (especially menstrual cramps) -03742728 06 n 04 mefloquine 0 mefloquine_hydrochloride 0 Larium 0 Mephaquine 0 001 @ 02721948 n 0000 | an antimalarial drug (trade name Larium and Mephaquine) that is effective in cases that do not respond to chloroquine; said to produce harmful neuropsychiatric effects on some people -03743016 06 n 02 megalith 0 megalithic_structure 0 005 @ 03743902 n 0000 ;r 09275473 n 0000 + 03085394 a 0101 ~ 03220237 n 0000 ~ 03745571 n 0000 | memorial consisting of a very large stone forming part of a prehistoric structure (especially in western Europe) -03743279 06 n 01 megaphone 0 001 @ 02676261 n 0000 | a cone-shaped acoustic device held to the mouth to intensify and direct the human voice -03743422 06 n 01 megaton_bomb 0 002 @ 03834604 n 0000 @ 02866578 n 0000 | a nuclear weapon with an explosive power equivalent to one million tons of TNT -03743577 06 n 02 melphalan 0 Alkeran 0 002 @ 02722458 n 0000 ;u 06845599 n 0201 | antineoplastic drug (trade name Alkeran) used to treat multiple myeloma and some other malignancies -03743761 06 n 01 membrane 0 004 @ 04188643 n 0000 + 03085572 a 0101 ~ 03250279 n 0000 ~ 03432668 n 0000 | a thin pliable sheet of material -03743902 06 n 02 memorial 0 monument 0 015 @ 04341686 n 0000 + 02864165 a 0201 + 00612042 v 0102 ~ 02892201 n 0000 ~ 02993194 n 0000 ~ 03455488 n 0000 ~i 03670456 n 0000 ~ 03743016 n 0000 ~ 03810952 n 0000 ~ 03884926 n 0000 ~i 04029125 n 0000 ~ 04178329 n 0000 ~i 04307106 n 0000 ~ 04486054 n 0000 ~i 04555101 n 0000 | a structure erected to commemorate persons or events -03744276 06 n 06 memory 0 computer_memory 0 storage 1 computer_storage 0 store 3 memory_board 0 010 @ 03744840 n 0000 @ 03493333 n 0000 #p 03082979 n 0000 ~ 03829340 n 0000 ~ 04058239 n 0000 ~ 04059298 n 0000 %p 04071876 n 0000 ~ 04151228 n 0000 ~ 04537919 n 0000 ~ 04539876 n 0000 | an electronic memory device; "a memory and the CPU form the central part of a computer to which peripherals are attached" -03744684 06 n 01 memory_chip 0 002 @ 03020034 n 0000 ~ 04058486 n 0000 | a RAM microchip that can be plugged into a computer to provide additional memory -03744840 06 n 02 memory_device 0 storage_device 0 011 @ 03183080 n 0000 ~ 02676805 n 0000 ~ 02763306 n 0000 ~ 02911485 n 0000 ~ 03706653 n 0000 ~ 03708036 n 0000 ~ 03744276 n 0000 ~ 03851787 n 0000 ~ 04027504 n 0000 ~ 04063868 n 0000 ~ 04071876 n 0000 | a device that preserves information for retrieval -03745146 06 n 03 menagerie 0 zoo 0 zoological_garden 0 001 @ 03315023 n 0000 | the facility where wild animals are housed for exhibition -03745285 06 n 03 mend 0 patch 1 darn 0 003 @ 04179385 n 0000 + 00262703 v 0201 + 01590171 v 0201 | sewing that repairs a worn or torn hole (especially in a garment); "her stockings had several mends" -03745487 06 n 01 mending 0 001 @ 03419014 n 0000 | garments that must be repaired -03745571 06 n 02 menhir 0 standing_stone 0 001 @ 03743016 n 0000 | a tall upright megalith; found primarily in England and northern France -03745712 06 n 01 meniscus 0 002 @ 04362025 n 0000 ;c 06090869 n 0000 | (physics) the curved upper surface of a nonturbulent liquid in a vertical tube -03745864 06 n 01 meniscus 1 002 @ 03656484 n 0000 ;c 06100778 n 0000 | (optics) a lens that is concave on one side and convex on the other -03746005 06 n 01 menorah 0 002 @ 02947818 n 0000 ;c 06232880 n 0000 | (Judaism) a candelabrum with nine branches; used during the Hanukkah festival -03746155 06 n 01 Menorah 1 002 @ 02947818 n 0000 ;c 06232880 n 0000 | (Judaism) a candelabrum with seven branches used in ceremonies to symbolize the seven days of Creation -03746330 06 n 01 man's_clothing 0 004 @ 03051540 n 0000 ~ 02752615 n 0000 ~ 02887489 n 0000 ~ 03237416 n 0000 | clothing that is designed for men to wear -03746486 06 n 02 men's_room 0 men's 0 001 @ 04018667 n 0000 | a public toilet for men -03746574 06 n 07 mental_hospital 0 psychiatric_hospital 0 mental_institution 0 institution 1 mental_home 0 insane_asylum 0 asylum 0 005 @ 03540595 n 0000 + 02749778 a 0401 + 02348568 v 0402 + 02348568 v 0403 ~ 02820798 n 0000 | a hospital for mentally incompetent or unbalanced person -03746861 06 n 01 menthol 0 002 @ 03691128 n 0000 %s 14950394 n 0000 | a lotion containing menthol which gives it the smell of mint -03746994 06 n 01 mentholated_salve 0 002 @ 03845550 n 0000 %s 14950394 n 0000 | a salve containing menthol -03747103 06 n 03 meperidine 0 meperidine_hydrochloride 0 Demerol 0 002 @ 03808564 n 0000 ;u 06845599 n 0301 | a synthetic narcotic drug (trade name Demerol) used to treat pain -03747281 06 n 02 mephenytoin 0 Mesantoin 0 002 @ 02718469 n 0000 ;u 06845599 n 0201 | a toxic anticonvulsant drug (trade name Mesantoin) used in the treatment of epilepsy when less toxic anticonvulsants have been ineffective -03747508 06 n 02 mephobarbital 0 Mebaral 0 003 @ 02792049 n 0000 @ 02718469 n 0000 ;u 06845599 n 0201 | a long-acting crystalline barbiturate (trade name Mebaral) used as a sedative and as an anticonvulsant in the treatment of epilepsy -03747746 06 n 04 meprobamate 0 Miltown 0 Equanil 0 Meprin 0 004 @ 03771443 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | a sedative and tranquilizer (trade name Miltown and Equanil and Meprin) used to treat muscle tension and anxiety -03748002 06 n 02 merbromine 0 Mercurochrome 0 001 @ 02724207 n 0000 | a mercurial compound applied topically as an antiseptic; Mercurochrome is the trademark -03748162 06 n 04 mercantile_establishment 0 retail_store 0 sales_outlet 0 outlet 1 009 @ 03953020 n 0000 ~ 03119203 n 0000 ~ 03176763 n 0000 ~ 03206405 n 0000 ~ 03722288 n 0000 %p 03748886 n 0000 ~ 03965456 n 0000 ~ 04202417 n 0000 ~ 04340019 n 0000 | a place of business for retailing goods -03748456 06 n 02 mercaptopurine 0 Purinethol 0 003 @ 02722166 n 0000 @ 03562958 n 0000 ;u 06845599 n 0201 | a drug (trade name Purinethol) that interferes with the metabolism of purine and is used to treat acute lymphocytic leukemia -03748691 06 n 02 Mercator_projection 0 Mercator's_projection 0 001 @ 03720443 n 0000 | a map projection of the earth onto a cylinder; areas appear greater the farther they are from the equator -03748886 06 n 03 merchandise 0 ware 1 product 1 019 @ 03076708 n 0000 #p 03748162 n 0000 + 01621555 v 0301 + 02260362 v 0102 ~ 02964389 n 0000 ~ 03096273 n 0000 ~ 03325769 n 0000 ~ 03434428 n 0000 ~ 03586631 n 0000 ~ 03587050 n 0000 ~ 03671668 n 0000 ~ 03835412 n 0000 ~ 04068055 n 0000 ~ 04073208 n 0000 ~ 04145735 n 0000 ~ 04257533 n 0000 ~ 04321534 n 0000 ~ 04455442 n 0000 ~ 04611654 n 0000 | commodities offered for sale; "good business depends on having good merchandise"; "that store offers a variety of products" -03749409 06 n 01 mercurial_ointment 0 001 @ 03845550 n 0000 | an ointment containing mercury -03749504 06 n 01 mercury_barometer 0 001 @ 02794156 n 0000 | barometer that shows pressure by the height of a column of mercury -03749634 06 n 01 mercury_cell 0 001 @ 04540761 n 0000 | a primary cell consisting of a zinc anode and a cathode of mercury oxide and an electrolyte of potassium hydroxide -03749807 06 n 02 mercury_thermometer 0 mercury-in-glass_thermometer 0 004 @ 04421872 n 0000 ~ 02818687 n 0000 %p 02915480 n 0000 ~ 03043423 n 0000 | thermometer consisting of mercury contained in a bulb at the bottom of a graduated sealed glass capillary tube marked in degrees Celsius or Fahrenheit; mercury expands with a rise in temperature causing a thin thread of mercury to rise in the tube -03750206 06 n 01 mercury-vapor_lamp 0 003 @ 04506994 n 0000 ~ 04032936 n 0000 ~ 04356772 n 0000 | ultraviolet lamp that emits a strong bluish light (rich in ultraviolet radiation) as electric current passes through mercury vapor -03750437 06 n 01 mercy_seat 0 001 @ 03122748 n 0000 | the golden covering of the ark of the covenant -03750540 06 n 01 mercy_seat 1 001 @ 04429376 n 0000 | the throne of God -03750614 06 n 01 merlon 0 002 @ 04051825 n 0000 #p 02811936 n 0000 | a solid section between two crenels in a crenelated battlement -03750748 06 n 01 Merrimac 0 001 @i 04530566 n 0000 | an ironclad vessel built by the Confederate forces in the hope of breaking the blockade imposed by the North -03750912 06 n 02 mescaline 0 peyote 0 002 @ 03479647 n 0000 #s 11849467 n 0000 | the hallucinatory alkaloid that is the active agent in mescal buttons -03751065 06 n 02 mess 0 mess_hall 0 005 @ 03200701 n 0000 ;c 08199025 n 0000 + 01176079 v 0101 ~ 03842276 n 0000 %p 07565458 n 0000 | a (large) military dining room where service personnel eat or relax -03751269 06 n 03 mess_jacket 0 monkey_jacket 0 shell_jacket 0 001 @ 03589791 n 0000 | waist-length jacket tapering to a point at the back; worn by officers in the mess for formal dinners -03751458 06 n 01 mess_kit 0 001 @ 03619396 n 0000 | kit containing a metal dish and eating utensils; used by soldiers and campers -03751590 06 n 01 messuage 0 002 @ 03259505 n 0000 ;c 08441203 n 0000 | (law) a dwelling house and its adjacent buildings and the adjacent land used by the household -03751757 06 n 01 metal_detector 0 001 @ 03180969 n 0000 | detector that gives a signal when it detects the presence of metal; used to detect the presence of stray bits of metal in food products or to find buried metal -03751977 06 n 01 metallic 0 001 @ 04426788 n 0000 | a yarn made partly or entirely of metal -03752071 06 n 01 metallic 1 001 @ 03309808 n 0000 | a fabric made of a yarn that is partly or entirely of metal -03752185 06 n 01 metal_screw 0 001 @ 04153751 n 0000 | screw made of metal -03752262 06 n 01 metalware 0 002 @ 04550840 n 0000 ~ 04449046 n 0000 | household articles made of metal (especially for use at table) -03752398 06 n 01 metal_wood 0 001 @ 04597066 n 0000 | golf wood with a metal head instead of the traditional wooden head -03752521 06 n 01 metalwork 0 001 @ 04599396 n 0000 | the metal parts of something; "there were bullet holes in the metalwork" -03752649 06 n 02 metaproterenol 0 Alupent 0 002 @ 02905612 n 0000 ;u 06845599 n 0201 | a bronchodilator (trade name Alupent) used to treat asthma and emphysema and other lung conditions; available in oral or inhalant forms; side effects include tachycardia and shakiness -03752922 06 n 01 meteorological_balloon 0 002 @ 02782093 n 0000 ~ 03938951 n 0000 | a small unmanned balloon set aloft to observe atmospheric conditions -03753077 06 n 01 meter 0 019 @ 03733925 n 0000 + 00490586 v 0101 ~ 02702989 n 0000 ~ 03272810 n 0000 ~ 03276696 n 0000 ~ 03372933 n 0000 ~ 03413264 n 0000 ~ 03424489 n 0000 ~ 03708843 n 0000 ~ 03841143 n 0000 ~ 03842986 n 0000 ~ 03988758 n 0000 ~ 04042985 n 0000 ~ 04069166 n 0000 ~ 04273796 n 0000 ~ 04396335 n 0000 ~ 04541320 n 0000 ~ 04541475 n 0000 ~ 04561287 n 0000 | any of various measuring instruments for measuring a quantity -03753514 06 n 02 meterstick 0 metrestick 0 001 @ 04118776 n 0000 | a rule one meter long (usually marked off in centimeters and millimeters) -03753657 06 n 02 metformin 0 Glucophage 0 002 @ 02719105 n 0000 ;u 06845599 n 0201 | an antidiabetic drug (trade name Glucophage) prescribed to treat type II diabetes -03753826 06 n 02 methacholine 0 Mecholyl 0 002 @ 03740161 n 0000 ;u 06851742 n 0201 | parasympathomimetic drug (trademark Mecholyl) that stimulates secretions and smooth muscle activity -03754014 06 n 06 methadone 0 methadone_hydrochloride 0 methadon 0 dolophine_hydrochloride 0 fixer 0 synthetic_heroin 0 001 @ 03808564 n 0000 | synthetic narcotic drug similar to morphine but less habit-forming; used in narcotic detoxification and maintenance of heroin addiction -03754295 06 n 0c methamphetamine 0 methamphetamine_hydrochloride 0 Methedrine 0 meth 0 deoxyephedrine 0 chalk 1 chicken_feed 0 crank 1 glass 1 ice 2 shabu 0 trash 0 002 @ 02704153 n 0000 @ 03097890 n 0000 | an amphetamine derivative (trade name Methedrine) used in the form of a crystalline hydrochloride; used as a stimulant to the nervous system and as an appetite suppressant -03754676 06 n 01 methapyrilene 0 001 @ 02720725 n 0000 | antihistamine used to treat allergic responses (as rhinitis or dermatitis or pruritus) -03754822 06 n 02 methaqualone 0 Quaalude 0 002 @ 04166841 n 0000 ;u 06845599 n 0201 | sedative-hypnotic drug (trade name Quaalude) that is a drug of abuse -03754979 06 n 02 metharbital 0 Gemonil 0 002 @ 02718469 n 0000 ;u 06845599 n 0201 | anticonvulsant drug (trade name Gemonil) used in the treatment of epilepsy -03755140 06 n 03 methenamine 0 Mandelamine 0 Urex 0 003 @ 02716205 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | antibacterial agent (trade names Mandelamine and Urex) that is contained in many products that are used to treat urinary infections -03755388 06 n 01 methicillin 0 001 @ 03910033 n 0000 | antibiotic drug of the penicillin family used in the treatment of certain staphylococcal infections -03755545 06 n 02 methocarbamol 0 Robaxin 0 002 @ 03800001 n 0000 ;u 06845599 n 0201 | muscle relaxant for skeletal muscles (trade name Robaxin) used to treat spasms -03755712 06 n 03 methotrexate 0 methotrexate_sodium 0 amethopterin 0 002 @ 02722166 n 0000 @ 03562958 n 0000 | toxic antimetabolite that limits cellular reproduction by acting as an antagonist to folic acid; used to treat certain cancers and psoriasis and rheumatoid arthritis -03755991 06 n 03 methyldopa 0 alpha_methyl_dopa 0 Aldomet 0 002 @ 02721160 n 0000 ;u 06845599 n 0301 | antihypertensive drug (trade name Aldomet) used in the treatment of high blood pressure -03756184 06 n 02 methylenedioxymethamphetamine 0 MDMA 0 002 @ 03054098 n 0000 ~ 02678738 n 0000 | a stimulant drug that is chemically related to mescaline and amphetamine and is used illicitly for its euphoric and hallucinogenic effects; it was formerly used in psychotherapy but in 1985 it was declared illegal in the United States; "MDMA is often used at parties because it enables partygoers to remain active for long periods of time" -03756624 06 n 02 methylphenidate 0 Ritalin 0 002 @ 04320126 n 0000 ;u 06845599 n 0201 | central nervous system stimulant (trade name Ritalin) used in the treatment of narcolepsy in adults and attention deficit disorder in children -03756857 06 n 02 metoprolol 0 Lopressor 0 001 @ 02832168 n 0000 | beta blocker (trade name Lopressor) used in treating hypertension and angina and arrhythmia and acute myocardial infarction; has adverse side effects (depression and exacerbation of congestive heart failure etc.) -03757138 06 n 05 metro 0 tube 1 underground 0 subway_system 0 subway 0 001 @ 04048568 n 0000 | an electric railway operating below the surface of the ground (usually in a city); "in Paris the subway system is called the `metro' and in London it is called the `tube' or the `underground'" -03757428 06 n 02 metronidazole 0 Flagyl 0 002 @ 02723292 n 0000 ;u 06845599 n 0201 | antiprotozoal medication (trade name Flagyl) used to treat trichomoniasis and giardiasis -03757604 06 n 01 metronome 0 001 @ 03909160 n 0000 | clicking pendulum indicates the exact tempo of a piece of music -03757723 06 n 01 mews 0 002 @ 04334599 n 0000 ;r 08860123 n 0000 | street lined with buildings that were originally private stables but have been remodeled as dwellings; "she lives in a Chelsea mews" -03757925 06 n 02 mexiletine 0 Mexitil 0 002 @ 02715941 n 0000 ;u 06845599 n 0201 | antiarrhythmic drug (trade name Mexitil) used to treat ventricular arrhythmias -03758089 06 n 03 mezzanine 0 mezzanine_floor 0 entresol 0 001 @ 03365991 n 0000 | intermediate floor just above the ground floor -03758220 06 n 02 mezzanine 1 first_balcony 0 002 @ 02777927 n 0000 %p 03687003 n 0000 | first or lowest balcony -03758334 06 n 03 mezzo-relievo 0 mezzo-rilievo 0 half-relief 0 001 @ 04073669 n 0000 | a sculptural relief between low relief and high relief -03758478 06 n 01 mezzotint 0 001 @ 04003597 n 0000 | print produced by an engraving that has been scraped to represent light or shade -03758614 06 n 01 Mickey_Finn 0 002 @ 03627021 n 0000 ;u 07157273 n 0000 | slang term for knockout drops -03758720 06 n 02 miconazole 0 Monistat 0 002 @ 02720201 n 0000 ;u 06845599 n 0201 | an antifungal agent usually administered in the form of a nitrate (trade name Monistat) -03758894 06 n 01 microbalance 0 001 @ 02777100 n 0000 | balance for weighing very small objects -03758992 06 n 01 microbrewery 0 001 @ 02897237 n 0000 | a small brewery; consumption of the product is mainly elsewhere -03759114 06 n 01 microdot 0 001 @ 03925226 n 0000 | photograph reduced to the size of a dot (usually for purposes of security) -03759243 06 n 01 microfiche 0 001 @ 03759432 n 0000 | small sheet of microfilm on which many pages of material have been photographed; a magnification system is used to read the material -03759432 06 n 01 microfilm 0 003 @ 03338821 n 0000 + 01712450 v 0101 ~ 03759243 n 0000 | film on which materials are photographed at greatly reduced size; useful for storage; a magnification system is used to read the material -03759661 06 n 03 micrometer 0 micrometer_gauge 0 micrometer_caliper 0 001 @ 02939866 n 0000 | caliper for measuring small distances -03759795 06 n 01 Micronor 0 002 @ 03936895 n 0000 %s 14746417 n 0000 | trade name for and oral contraceptive containing the progestin compound norethindrone -03759954 06 n 02 microphone 0 mike 0 006 @ 03274561 n 0000 ~ 02912440 n 0000 ~ 03087816 n 0000 ~ 03143572 n 0000 ~ 03205143 n 0000 ~ 04276929 n 0000 | device for converting sound waves into electrical energy -03760164 06 n 01 microphotometer 0 001 @ 03175457 n 0000 | special kind of densitometer that measures density variations over a very small area -03760310 06 n 01 microprocessor 0 002 @ 03020034 n 0000 #p 03918480 n 0000 | integrated circuit semiconductor chip that performs the bulk of the processing and controls the parts of a system; "a microprocessor functions as the central processing unit of a microcomputer"; "a disk drive contains a microprocessor to handle the internal functions of the drive" -03760671 06 n 01 microscope 0 007 @ 03709206 n 0000 + 02918844 a 0101 + 02918844 a 0102 ~ 02711780 n 0000 %p 02943465 n 0000 ~ 03279508 n 0000 ~ 03667829 n 0000 | magnifier of the image of small objects; "the invention of the microscope led to the discovery of the cell" -03760944 06 n 01 microtome 0 001 @ 04147495 n 0000 | scientific instrument that cuts thin slices of something for microscopic examination -03761084 06 n 02 microwave 0 microwave_oven 0 002 @ 03620052 n 0000 + 00321936 v 0101 | kitchen appliance that cooks food by passing an electromagnetic wave through it; heat results from the absorption of energy by the water molecules in the food -03761333 06 n 02 microwave_bomb 0 E-bomb 0 001 @ 02866578 n 0000 | a bomb that explodes in midair and releases a massive burst of electromagnetic energy sufficient to disable computers and telecommunications without killing people or damaging buildings -03761588 06 n 01 microwave_diathermy_machine 0 001 @ 03189818 n 0000 | diathermy machine that uses microwave radiation as the source of heat -03761731 06 n 01 microwave_linear_accelerator 0 001 @ 03671914 n 0000 | linear accelerator that uses microwaves -03761845 06 n 02 midazolam 0 Versed 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | an injectable form of benzodiazepine (trade name Versed) useful for sedation and for reducing pain during uncomfortable medical procedures -03762067 06 n 01 middling 0 001 @ 03076708 n 0000 | any commodity of intermediate quality or size (especially when coarse particles of ground wheat are mixed with bran) -03762238 06 n 02 middy 0 middy_blouse 0 001 @ 02854926 n 0000 | blouse with a sailor collar -03762332 06 n 02 midiron 0 two_iron 0 001 @ 03585073 n 0000 | long iron with a nearly vertical face -03762434 06 n 01 mihrab 0 003 @ 04061969 n 0000 #p 03788195 n 0000 ;c 06234825 n 0000 | (Islam) a niche in the wall of a mosque that indicates the direction of Mecca -03762602 06 n 01 mihrab 1 003 @ 03178782 n 0000 #p 03998194 n 0000 ;c 06234825 n 0000 | (Islam) a design in the shape of niche in a Muslim prayer rug; during worship the niche must be pointed toward Mecca -03762809 06 n 02 mild_silver_protein 0 Argyrol 0 002 @ 02724207 n 0000 ;u 06845599 n 0201 | antiseptic consisting of a compound of protein and silver (trade name Argyrol) -03762982 06 n 01 military_hospital 0 003 @ 03540595 n 0000 ;c 08199025 n 0000 ~ 03333349 n 0000 | hospital for soldiers and other military personnel -03763133 06 n 01 military_installation 0 010 @ 03315023 n 0000 ;c 08199025 n 0000 ~ 02743207 n 0000 ~ 02798290 n 0000 ~ 03284120 n 0000 ~ 03504420 n 0000 ~ 03763403 n 0000 ~ 03812119 n 0000 ~ 04220344 n 0000 ~i 09123809 n 0000 | any facility servicing military forces -03763403 06 n 02 military_post 0 post 1 005 @ 03763133 n 0000 ;c 08199025 n 0000 ~ 03420559 n 0000 %p 03763727 n 0000 ~ 03860741 n 0000 | military installation at which a body of troops is stationed; "this military post provides an important source of income for the town nearby"; "there is an officer's club on the post" -03763727 06 n 01 military_quarters 0 008 @ 03679384 n 0000 #p 03763403 n 0000 ;c 08199025 n 0000 ;u 06295235 n 0000 ~ 02794779 n 0000 ~ 02944826 n 0000 ~ 03470222 n 0000 ~ 04550676 n 0000 | living quarters for personnel on a military post -03763968 06 n 01 military_uniform 0 012 @ 04509592 n 0000 ;c 08199025 n 0000 ~ 02811719 n 0000 ~ 03239259 n 0000 ~ 03324928 n 0000 ~ 03402188 n 0000 ~ 03615563 n 0000 ~ 03846234 n 0000 ~ 04071393 n 0000 %p 04132465 n 0000 %p 04207473 n 0000 %p 04208065 n 0000 | prescribed identifying uniform for soldiers -03764276 06 n 01 military_vehicle 0 014 @ 04524313 n 0000 ;c 08199025 n 0000 ~ 02937336 n 0000 ~ 03478589 n 0000 ~ 03549199 n 0000 ~ 03919096 n 0000 ~ 03930087 n 0000 ~ 04062807 n 0000 ~ 04389033 n 0000 ~ 04399269 n 0000 ~ 04487724 n 0000 ~ 04552348 n 0000 ~ 04552696 n 0000 ~ 04566561 n 0000 | vehicle used by the armed forces -03764606 06 n 01 milk_bar 0 001 @ 04247736 n 0000 | snack bar that sells milk drinks and light refreshments (such as ice cream) -03764736 06 n 01 milk_can 0 001 @ 02946921 n 0000 | large can for transporting milk -03764822 06 n 01 milk_float 0 002 @ 04520170 n 0000 ;r 08860123 n 0000 | a van (typically powered by electricity) with an open side that is used to deliver milk to houses -03764995 06 n 01 milking_machine 0 001 @ 03699975 n 0000 | machine consisting of a suction apparatus for milking cows mechanically -03765128 06 n 01 milking_stool 0 001 @ 04326896 n 0000 | low three-legged stool with a half round seat; used to sit on while milking a cow -03765269 06 n 01 milk_of_magnesia 0 001 @ 04025748 n 0000 | purgative consisting of a milky white liquid suspension of magnesium hydroxide; used as a laxative and (in smaller doses) as an antacid -03765467 06 n 02 milk_wagon 0 milkwagon 0 001 @ 04543158 n 0000 | wagon for delivering milk -03765561 06 n 03 mill 0 grinder 1 milling_machinery 0 014 @ 03701640 n 0000 + 00331082 v 0201 + 00332017 v 0101 ~ 03029812 n 0000 ~ 03063485 n 0000 ~ 03368048 n 0000 ~ 03460899 n 0000 ~ 03736064 n 0000 ~ 03914337 n 0000 ~ 04033801 n 0000 ~ 04275093 n 0000 ~ 04477219 n 0000 ~ 04561422 n 0000 ~ 04587559 n 0000 | machinery that processes materials by grinding or crushing -03765934 06 n 01 milldam 0 001 @ 03160309 n 0000 | dam to make a millpond to provide power for a water mill -03766044 06 n 02 miller 0 milling_machine 0 001 @ 04184435 n 0000 | machine tool in which metal that is secured to a carriage is fed against rotating cutters that shape it -03766218 06 n 01 milliammeter 0 001 @ 02702989 n 0000 | a sensitive ammeter graduated in milliamperes -03766322 06 n 02 millinery 0 woman's_hat 0 005 @ 03497657 n 0000 ~ 03028785 n 0000 ~ 03046029 n 0000 ~ 03931885 n 0000 ~ 03937835 n 0000 | hats for women; the wares sold by a milliner -03766508 06 n 02 millinery 1 hat_shop 0 001 @ 04202417 n 0000 | shop selling women's hats -03766600 06 n 01 milling 0 002 @ 03264136 n 0000 + 01457825 v 0101 | corrugated edge of a coin -03766697 06 n 01 millivoltmeter 0 001 @ 04541320 n 0000 | sensitive voltmeter that can measure voltage in millivolts -03766816 06 n 02 millrace 0 millrun 0 001 @ 03089014 n 0000 | a channel for the water current that turns a millwheel -03766935 06 n 01 millstone 0 002 @ 04326084 n 0000 #p 03460899 n 0000 | one of a pair of heavy flat disk-shaped stones that are rotated against one another to grind the grain -03767112 06 n 01 millstone 1 001 @ 03679986 n 0000 | any load that is difficult to carry -03767203 06 n 02 millwheel 0 mill_wheel 0 003 @ 04563204 n 0000 #p 04561422 n 0000 %p 03873699 n 0000 | water wheel that is used to drive machinery in a mill -03767363 06 n 01 millwork 0 001 @ 04598792 n 0000 | woodwork that has been machined at a mill -03767459 06 n 05 mimeograph 0 mimeo 0 mimeograph_machine 0 Roneo 0 Roneograph 0 006 @ 03257586 n 0000 ;u 06851742 n 0501 + 01695459 v 0401 ;u 06851742 n 0401 + 01695257 v 0202 + 01695257 v 0101 | a rotary duplicator that uses a stencil through which ink is pressed (trade mark Roneo) -03767745 06 n 01 minaret 0 002 @ 04460130 n 0000 #p 03788195 n 0000 | slender tower with balconies -03767846 06 n 01 Minato_Ohashi_Bridge 0 002 @i 02953197 n 0000 #p 08924023 n 0000 | cantilever bridge at Osaka, Japan -03767966 06 n 02 mincer 0 mincing_machine 0 002 @ 03621049 n 0000 + 01560583 v 0101 | a kitchen utensil that cuts or chops food (especially meat) into small pieces -03768132 06 n 01 mine 0 004 @ 03305522 n 0000 + 01125724 v 0101 ~ 03365078 n 0000 ~ 03639675 n 0000 | explosive device that explodes on contact; designed to destroy vehicles or ships or to kill or maim personnel -03768346 06 n 01 mine 1 013 @ 03302121 n 0000 #p 03070396 n 0000 + 01163620 v 0101 %p 02680512 n 0000 ~ 03056368 n 0000 ~ 03104147 n 0000 ~ 03445120 n 0000 %p 03768916 n 0000 ~ 04131610 n 0000 %p 04182514 n 0000 ~ 04220717 n 0000 ~ 04340231 n 0000 ~ 04353687 n 0000 | excavation in the earth from which ores and minerals are extracted -03768683 06 n 01 mine_detector 0 001 @ 03180969 n 0000 | detector consisting of an electromagnetic device; used to locate explosive mines -03768823 06 n 01 minelayer 0 001 @ 04194289 n 0000 | ship equipped for laying marine mines -03768916 06 n 01 mineshaft 0 002 @ 03302121 n 0000 #p 03768346 n 0000 | excavation consisting of a vertical or sloping passageway for finding or mining ore or for ventilating a mine -03769100 06 n 01 minesweeper 0 001 @ 04194289 n 0000 | ship equipped to detect and then destroy or neutralize or remove marine mines -03769235 06 n 02 miniature 1 toy 1 003 @ 03104594 n 0000 + 00241496 v 0101 + 00241496 v 0102 | a copy that reproduces a person or thing in greatly reduced size -03769397 06 n 02 miniature 2 illumination 0 004 @ 03876519 n 0000 ;c 15259284 n 0000 + 01683758 v 0201 + 10320106 n 0101 | painting or drawing included in a book (especially in illuminated medieval manuscripts) -03769610 06 n 02 minibar 0 cellaret 0 001 @ 02912065 n 0000 | sideboard with compartments for holding bottles -03769722 06 n 02 minibike 0 motorbike 0 002 @ 03790512 n 0000 ~ 03785016 n 0000 | small motorcycle with a low frame and small wheels and elevated handlebars -03769881 06 n 01 minibus 0 001 @ 02924116 n 0000 | a light bus (4 to 10 passengers) -03769967 06 n 01 minicab 0 003 @ 02930766 n 0000 @ 03770085 n 0000 ;r 08860123 n 0000 | a minicar used as a taxicab -03770085 06 n 01 minicar 0 003 @ 02958343 n 0000 ;r 08860123 n 0000 ~ 03769967 n 0000 | a car that is even smaller than a subcompact car -03770224 06 n 01 minicomputer 0 001 @ 03196324 n 0000 | a digital computer of medium size -03770316 06 n 01 ministry 0 001 @ 02913152 n 0000 | building where the business of a government department is transacted -03770439 06 n 02 miniskirt 0 mini 0 001 @ 04230808 n 0000 | a very short skirt -03770520 06 n 02 minisub 0 minisubmarine 0 001 @ 04348359 n 0000 | submersible vessel for one or two persons; for naval operations or underwater exploration -03770679 06 n 01 minivan 0 002 @ 03896419 n 0000 @ 02958343 n 0000 | a small box-shaped passenger van; usually has removable seats; used as a family car -03770834 06 n 01 miniver 0 001 @ 04484160 n 0000 | trimming on ceremonial robes consisting of white or light grey fur -03770954 06 n 02 mink 0 mink_coat 0 001 @ 03404251 n 0000 | fur coat made from the soft lustrous fur of minks -03771066 06 n 02 minocycline 0 Minocin 0 002 @ 04416530 n 0000 ;u 06845599 n 0201 | tetracycline antibiotic (trade name Minocin) used to treat a variety of bacterial and rickettsial infections -03771261 06 n 01 minor_suit 0 004 @ 04351233 n 0000 ;c 00490569 n 0000 %m 03053788 n 0000 %m 03187972 n 0000 | ( bridge) a suit of inferior scoring value, either diamonds or clubs -03771443 06 n 06 minor_tranquilizer 0 minor_tranquillizer 0 minor_tranquilliser 0 antianxiety_drug 0 anxiolytic 0 anxiolytic_drug 0 009 @ 04470232 n 0000 + 02631594 a 0501 ~ 02830852 n 0000 ~ 02926044 n 0000 ~ 03371363 n 0000 ~ 03554131 n 0000 ~ 03747746 n 0000 ~ 03867675 n 0000 ~ 03918297 n 0000 | a tranquilizer used to relieve anxiety and reduce tension and irritability -03771820 06 n 03 minoxidil 0 Loniten 0 Rogaine 0 001 @ 04522904 n 0000 | a vasodilator (trade name Loniten) used to treat severe hypertension; one side effect is hirsutism so it is also sold (trade name Rogaine) as a treatment for male-patterned baldness -03772077 06 n 01 minster 0 004 @ 02984061 n 0000 #p 03781244 n 0000 ;r 08860123 n 0000 ~i 08876435 n 0000 | any of certain cathedrals and large churches; originally connected to a monastery -03772269 06 n 01 mint 0 003 @ 03956922 n 0000 + 01639105 v 0101 ~i 04510456 n 0000 | a plant where money is coined by authority of the government -03772417 06 n 01 minute_gun 0 002 @ 03467984 n 0000 ;c 08199025 n 0000 | (military) gun that is discharged once every minute (usually as part of a military funeral) -03772584 06 n 02 minute_hand 0 big_hand 0 001 @ 03482523 n 0000 | points to the minutes -03772674 06 n 01 Minuteman 0 001 @ 03578251 n 0000 | a strategic weapon system using a guided missile of intercontinental range; missiles are equipped with nuclear warheads and dispersed in hardened silos -03772881 06 n 04 miotic_drug 0 myotic_drug 0 miotic 0 myotic 0 001 @ 03247620 n 0000 | a drug that causes miosis (constriction of the pupil of the eye) -03773035 06 n 01 mirror 0 008 @ 04069276 n 0000 + 02766925 v 0101 ~ 02965783 n 0000 ~ 03015851 n 0000 ~ 03485198 n 0000 ~ 03688832 n 0000 ~ 03934311 n 0000 ~ 04273433 n 0000 | polished surface that forms images by reflecting light -03773268 06 n 03 mise_en_scene 0 stage_setting 0 setting 1 004 @ 04296562 n 0000 %p 03359755 n 0000 %p 04012260 n 0000 %p 04297476 n 0000 | arrangement of scenery and properties to represent the place where a play or movie is enacted -03773504 06 n 01 missile 1 010 @ 04099429 n 0000 @ 04565375 n 0000 ~ 02693413 n 0000 ~ 02693540 n 0000 ~ 02781338 n 0000 ~ 03466162 n 0000 ~ 03509843 n 0000 %p 03830835 n 0000 ~ 04215910 n 0000 %p 04520784 n 0000 | a rocket carrying a warhead of conventional or nuclear explosives; may be ballistic or directed by remote control -03773835 06 n 02 missile_defense_system 0 missile_defence_system 0 001 @ 03812924 n 0000 | naval weaponry providing a defense system -03773970 06 n 02 miter 0 mitre 0 003 @ 03502509 n 0000 + 03019709 a 0101 + 02263958 v 0101 | a liturgical headdress worn by bishops on formal occasions -03774124 06 n 02 miter 1 mitre 1 002 @ 04362025 n 0000 + 01584199 v 0101 | the surface of a beveled end of a piece where a miter joint is made; "he covered the miter with glue before making the joint" -03774327 06 n 02 miter_box 0 mitre_box 0 001 @ 03489162 n 0000 | hand tool for guiding handsaws in making crosscuts or miter joints -03774461 06 n 04 miter_joint 0 mitre_joint 0 miter 2 mitre 2 002 @ 03600977 n 0000 + 01291707 v 0301 | joint that forms a corner; usually both sides are bevelled at a 45-degree angle to form a 90-degree corner -03774673 06 n 02 mithramycin 0 Mithracin 0 002 @ 02722997 n 0000 ;u 06845599 n 0201 | an antineoplastic drug (trade name Mithracin) used to treat cancer of the testes -03774842 06 n 02 mitomycin 0 Mutamycin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | a complex of antibiotic substances obtained from a streptomyces bacterium; one form (trade name Mutamycin) shows promise as an anticancer drug -03775071 06 n 01 mitten 0 001 @ 03441112 n 0000 | glove that encases the thumb separately and the other four fingers together -03775199 06 n 01 mixer 0 006 @ 03621049 n 0000 + 00394813 v 0103 ~ 02850732 n 0000 ~ 03266371 n 0000 ~ 03272940 n 0000 ~ 04578934 n 0000 | a kitchen utensil that is used for mixing foods -03775388 06 n 01 mixer 1 002 @ 03278248 n 0000 + 00556193 v 0101 | electronic equipment that mixes two or more input signals to give a single output signal -03775546 06 n 01 mixing_bowl 0 001 @ 02880940 n 0000 | bowl used with an electric mixer -03775636 06 n 01 mixing_faucet 0 001 @ 03325088 n 0000 | single faucet for separate hot and cold water pipes -03775747 06 n 02 mizzen 1 mizen 1 001 @ 03381776 n 0000 | fore-and-aft sail set on the mizzenmast -03775847 06 n 04 mizzenmast 0 mizenmast 0 mizzen 0 mizen 0 001 @ 03726760 n 0000 | third mast from the bow in a vessel having three or more masts; the after and shorter mast of a yawl, ketch, or dandy -03776050 06 n 02 moat 0 fosse 0 001 @ 04478657 n 0000 | ditch dug as a fortification and usually filled with water -03776167 06 n 01 mobcap 0 001 @ 02954340 n 0000 | large high frilly cap with a full crown; formerly worn indoors by women -03776291 06 n 01 mobile 0 002 @ 04157320 n 0000 ! 04294041 n 0101 | sculpture suspended in midair whose delicately balanced parts can be set in motion by air currents -03776460 06 n 02 mobile_home 0 manufactured_home 0 002 @ 04467099 n 0000 @ 03546340 n 0000 | a large house trailer that can be connected to utilities and can be parked in one place and used as permanent housing -03776673 06 n 01 Mobius_strip 0 001 @ 04362025 n 0000 | a continuous closed surface with only one side; formed from a rectangular strip by rotating one end 180 degrees and joining it with the other end -03776877 06 n 02 moccasin 0 mocassin 0 001 @ 04199027 n 0000 | soft leather shoe; originally worn by Native Americans -03776997 06 n 01 mock-up 0 001 @ 03777283 n 0000 | full-scale working model of something built for study or testing or display -03777126 06 n 01 mod_con 0 002 @ 02729965 n 0000 ;r 08860123 n 0000 | modern convenience; the appliances and conveniences characteristic of a modern house -03777283 06 n 02 model 0 simulation 0 010 @ 04076846 n 0000 + 01697406 v 0101 + 01697027 v 0101 + 01743784 v 0101 ~ 03335600 n 0000 ~ 03440512 n 0000 ~ 03776997 n 0000 ~ 03955809 n 0000 ~ 04062989 n 0000 ~ 04112921 n 0000 | representation of something (sometimes on a smaller scale) -03777568 06 n 01 Model_T 0 002 @ 02958343 n 0000 ;u 06851742 n 0000 | the first widely available automobile powered by a gasoline engine; mass-produced by Henry Ford from 1908 to 1927 -03777754 06 n 01 modem 0 002 @ 03278248 n 0000 ~ 02676670 n 0000 | (from a combination of MOdulate and DEModulate) electronic equipment consisting of a device used to connect computers by a telephone line -03777961 06 n 01 modernism 0 003 @ 03434943 n 0000 + 00972902 a 0103 + 10326643 n 0101 | genre of art and literature that makes a self-conscious break with previous genres -03778135 06 n 01 Modicon 0 003 @ 03936895 n 0000 %s 14746417 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norethindrone -03778302 06 n 01 modification 0 002 @ 03104594 n 0000 + 00169806 v 0101 | slightly modified copy; not an exact copy; "a modification of last year's model" -03778459 06 n 01 modillion 0 002 @ 02888569 n 0000 ;c 06123363 n 0000 | (architecture) one of a set of ornamental brackets under a cornice -03778600 06 n 01 module 0 005 @ 03081021 n 0000 #p 04377057 n 0000 + 02296415 a 0101 ~ 02972182 n 0000 ~ 03995746 n 0000 | a self-contained component (unit or item) that is used in combination with other components -03778817 06 n 01 module 1 003 @ 03084420 n 0000 ;c 03082979 n 0000 + 02296415 a 0101 | computer circuit consisting of an assembly of electronic components (as of computer hardware) -03779000 06 n 01 module 2 003 @ 03079741 n 0000 #p 04264914 n 0000 ~ 03075946 n 0000 | detachable compartment of a spacecraft -03779128 06 n 01 mohair 0 001 @ 03309808 n 0000 | fabric made with yarn made from the silky hair of the Angora goat -03779246 06 n 02 moire 0 watered-silk 0 002 @ 03309808 n 0000 + 01789359 a 0101 | silk fabric with a wavy surface pattern -03779370 06 n 03 mold 0 mould 0 cast 3 007 @ 03094503 n 0000 + 01662771 v 0102 + 01697027 v 0102 ~ 03384535 n 0000 ~ 03730655 n 0000 ~ 03935116 n 0000 ~ 04134523 n 0000 | container into which liquid is poured to create a given shape when it hardens -03779621 06 n 06 mold 2 mould 2 molding 2 moulding 2 modeling 0 clay_sculpture 0 008 @ 04157320 n 0000 + 01697027 v 0501 + 01662771 v 0403 + 01662771 v 0302 + 01662771 v 0203 + 01697027 v 0203 + 01662771 v 0102 + 01697027 v 0102 | sculpture produced by molding -03779884 06 n 02 moldboard 0 mouldboard 0 002 @ 04569520 n 0000 #p 03780047 n 0000 | wedge formed by the curved part of a steel plow blade that turns the furrow -03780047 06 n 02 moldboard_plow 0 mouldboard_plough 0 006 @ 03967562 n 0000 %p 03073384 n 0000 %p 03640456 n 0000 ~ 03677766 n 0000 %p 03779884 n 0000 %p 03967788 n 0000 | plow that has a moldboard -03780247 06 n 03 molding 0 moulding 0 border 1 002 @ 03264542 n 0000 #p 03931765 n 0000 | a decorative recessed or relieved surface on an edge -03780392 06 n 02 molding 1 moulding 1 017 @ 03169390 n 0000 ~ 02713835 n 0000 ~ 02734994 n 0000 ~ 02800354 n 0000 ~ 02815237 n 0000 ~ 02987706 n 0000 ~ 03090598 n 0000 ~ 03111177 n 0000 ~ 03156990 n 0000 ~ 03266195 n 0000 ~ 03448491 n 0000 ~ 03866721 n 0000 ~ 04035634 n 0000 ~ 04087290 n 0000 ~ 04347004 n 0000 ~ 04361801 n 0000 ~ 04458299 n 0000 | a decorative strip used for ornamentation or finishing -03780799 06 n 01 moleskin 0 001 @ 03309808 n 0000 | a durable cotton fabric with a velvety nap -03780896 06 n 02 molindone 0 Moban 0 002 @ 03713736 n 0000 ;u 06845599 n 0201 | antipsychotic drug (trade name Moban) used in the treatment of schizophrenia -03781055 06 n 03 Molotov_cocktail 0 petrol_bomb 0 gasoline_bomb 0 001 @ 03565565 n 0000 | a crude incendiary bomb made of a bottle filled with flammable liquid and fitted with a rag wick -03781244 06 n 01 monastery 0 008 @ 04073948 n 0000 ~ 02667379 n 0000 %p 02991555 n 0000 ~ 03010057 n 0000 ~ 03396580 n 0000 ~ 03635032 n 0000 %p 03772077 n 0000 %p 04155889 n 0000 | the residence of a religious community -03781467 06 n 01 monastic_habit 0 002 @ 03473966 n 0000 %p 04143492 n 0000 | a long loose habit worn by monks in a monastery -03781594 06 n 01 moneybag 0 001 @ 03235796 n 0000 | a drawstring bag for holding money -03781683 06 n 01 money_belt 0 001 @ 02827606 n 0000 | belt with a concealed section for holding money -03781787 06 n 01 monitor 0 004 @ 03278248 n 0000 + 02163301 v 0101 ~ 02962938 n 0000 ~ 03278914 n 0000 | a piece of electronic equipment that keeps track of the operation of a system continuously and warns of trouble -03782006 06 n 01 monitor 1 003 @ 03278248 n 0000 #p 04404412 n 0000 ~ 04405762 n 0000 | electronic equipment that is used to check the quality or content of electronic transmissions -03782190 06 n 02 monitor 2 monitoring_device 0 004 @ 03211117 n 0000 #p 03082979 n 0000 ~ 03085219 n 0000 %p 03857828 n 0000 | display produced by a device that takes signals and displays them on a television screen or a computer monitor -03782430 06 n 01 Monitor 3 001 @i 04530566 n 0000 | an ironclad vessel built by Federal forces to do battle with the Merrimac -03782558 06 n 01 monkey_bridge 0 001 @ 03961939 n 0000 | a high narrow platform above a deck or in an engine room or boiler room -03782689 06 n 01 monkey_ladder 0 001 @ 03632277 n 0000 | a light ladder to the monkey bridge on a ship -03782794 06 n 02 monkey-wrench 0 monkey_wrench 0 001 @ 02680754 n 0000 | adjustable wrench that has one fixed and one adjustable jaw -03782929 06 n 01 monk's_cloth 0 001 @ 03309808 n 0000 | a heavy cloth in basket weave -03783017 06 n 02 monoamine_oxidase_inhibitor 0 MAOI 0 005 @ 02718811 n 0000 ~ 03584526 n 0000 ~ 03587442 n 0000 ~ 03921749 n 0000 ~ 04474317 n 0000 | any of a group of antidepressant drugs that inhibit the action of monoamine oxidase in the brain and so allow monoamines to accumulate -03783304 06 n 01 monochrome 1 002 @ 03876519 n 0000 + 00398816 a 0102 | painting done in a range of tones of a single color -03783430 06 n 02 monocle 0 eyeglass 0 001 @ 03656484 n 0000 | lens for correcting defective vision in one eye; held in place by facial muscles -03783575 06 n 02 monofocal_lens_implant 0 monofocal_IOL 0 001 @ 03657239 n 0000 | a lens with a single focus that is used after cataract surgery to provide clear distance vision -03783755 06 n 01 monolith 0 001 @ 04326084 n 0000 | a single great stone (often in the form of a column or obelisk) -03783873 06 n 01 monoplane 0 001 @ 02691156 n 0000 | an airplane with a single wing -03783959 06 n 01 monopoly_board 0 001 @ 02857023 n 0000 | a board used for playing monopoly -03784053 06 n 01 monorail 0 001 @ 04048568 n 0000 | a railway having a single track -03784139 06 n 01 monotype 0 001 @ 04504770 n 0000 | a typesetting machine operated from a keyboard that sets separate characters -03784270 06 n 02 monstrance 0 ostensorium 0 002 @ 04531098 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a vessel (usually of gold or silver) in which the consecrated Host is exposed for adoration -03784475 06 n 02 mooring 0 mooring_line 0 004 @ 03670849 n 0000 ;c 02858304 n 0000 + 01305099 v 0101 ~ 03503358 n 0000 | (nautical) a line that holds an object (especially a boat) in place -03784666 06 n 01 mooring_anchor 0 001 @ 02709367 n 0000 | an anchor used to hold a mooring buoy or a channel marker in place -03784793 06 n 02 mooring_tower 0 mooring_mast 0 001 @ 04460130 n 0000 | a tower for mooring airships -03784896 06 n 02 Moorish_arch 0 horseshoe_arch 0 001 @ 04113765 n 0000 | a round arch that widens before rounding off -03785016 06 n 01 moped 0 001 @ 03769722 n 0000 | a motorbike that can be pedaled or driven by a low-powered gasoline engine -03785142 06 n 01 mop_handle 0 002 @ 03485997 n 0000 #p 04367480 n 0000 | the handle of a mop -03785237 06 n 01 moquette 0 001 @ 03309808 n 0000 | a thick velvety synthetic fabric used for carpets and soft upholstery -03785361 06 n 01 moreen 0 001 @ 03309808 n 0000 | a heavy fabric of wool (or wool and cotton) used mostly in upholstery or for curtains -03785499 06 n 03 morgue 0 mortuary 0 dead_room 0 005 @ 02913152 n 0000 + 02950471 a 0201 + 02950371 a 0201 ~ 03130233 n 0000 ~ 03402941 n 0000 | a building (or room) where dead bodies are kept before burial or cremation -03785721 06 n 02 morion 0 cabasset 0 001 @ 03513376 n 0000 | a metal helmet worn by common soldiers in the 16th century -03785843 06 n 01 morning-after_pill 0 001 @ 03096593 n 0000 | a large dose of estrogen taken orally within 24 to 72 hours after intercourse; prevents implantation of a fertilized ovum and so acts as a contraceptive; commonly used after rape or incest -03786096 06 n 01 morning_dress 0 001 @ 03236735 n 0000 | a woman's informal dress for housework -03786194 06 n 01 morning_dress 1 002 @ 02756098 n 0000 %p 04368496 n 0000 | formal attire for men during the daytime -03786313 06 n 01 morning_room 0 001 @ 03679712 n 0000 | a sitting room used during the daylight hours -03786417 06 n 02 morphine 0 morphia 0 003 @ 03850746 n 0000 @ 02707683 n 0000 ~ 02727660 n 0000 | an alkaloid narcotic drug extracted from opium; a powerful, habit-forming narcotic used to relieve pain -03786621 06 n 01 Morris_chair 0 001 @ 02738535 n 0000 | an armchair with an adjustable back -03786715 06 n 03 mortar 0 howitzer 0 trench_mortar 0 001 @ 03517982 n 0000 | a muzzle-loading high-angle gun with a short barrel that fires shells at high elevations for a short range -03786901 06 n 01 mortar 1 001 @ 04531098 n 0000 | a bowl-shaped vessel in which substances can be ground and mixed with a pestle -03787032 06 n 01 mortarboard 0 002 @ 02954340 n 0000 #p 02669534 n 0000 | an academic cap with a flat square with a tassel on top -03787164 06 n 02 mortarboard 1 hawk 0 001 @ 02856463 n 0000 | a square board with a handle underneath; used by masons to hold or carry mortar -03787308 06 n 02 mortise 0 mortice 0 006 @ 03526198 n 0000 #p 03787523 n 0000 + 01293644 v 0201 + 01293782 v 0202 + 01293644 v 0102 + 01293782 v 0101 | a square hole made to receive a tenon and so to form a joint -03787523 06 n 02 mortise_joint 0 mortise-and-tenon_joint 0 005 @ 03600977 n 0000 ~ 03228967 n 0000 %p 03787308 n 0000 %p 04409911 n 0000 ~ 04451139 n 0000 | a joint made by inserting tenon on one piece into mortise holes in the other -03787759 06 n 01 mosaic 0 002 @ 02743547 n 0000 %p 04414909 n 0000 | art consisting of a design made of small pieces of colored stone or glass -03787904 06 n 03 mosaic 1 arial_mosaic 0 photomosaic 0 001 @ 03925226 n 0000 | arrangement of aerial photographs forming a composite picture -03788047 06 n 01 mosaic 2 002 @ 04470953 n 0000 #p 04404997 n 0000 | transducer formed by the light-sensitive surface on a television camera tube -03788195 06 n 01 mosque 0 004 @ 03953416 n 0000 ;c 06234825 n 0000 %p 03762434 n 0000 %p 03767745 n 0000 | (Islam) a Muslim place of worship that usually has a minaret -03788365 06 n 01 mosquito_net 0 001 @ 04151581 n 0000 | a fine net or screen (especially around beds) to protect against mosquitos -03788498 06 n 01 motel 0 003 @ 03790755 n 0000 ;u 06288527 n 0000 %p 03788601 n 0000 | a motor hotel -03788601 06 n 01 motel_room 0 002 @ 02821627 n 0000 #p 03788498 n 0000 | a sleeping room in a motel -03788703 06 n 02 mothball 0 camphor_ball 0 004 @ 13899404 n 0000 + 02281641 v 0101 %s 14790979 n 0000 %s 14958564 n 0000 | a small sphere of camphor or naphthalene used to keep moths away from stored clothing -03788914 06 n 02 Mother_Hubbard 0 muumuu 0 001 @ 03236735 n 0000 | a woman's loose unbelted dress -03789014 06 n 02 motif 0 motive 0 001 @ 03178782 n 0000 | a design or figure that consists of recurring shapes or colors, as in architecture or decoration -03789171 06 n 03 motion-picture_camera 0 movie_camera 0 cine-camera 0 002 @ 02942699 n 0000 ~ 04261638 n 0000 | a camera that takes a sequence of photographs that can give the illusion of motion when viewed in rapid succession -03789400 06 n 03 motion-picture_film 0 movie_film 0 cine-film 0 002 @ 03338821 n 0000 ~ 04261868 n 0000 | photographic film several hundred feet long and wound on a spool; to be used in a movie camera -03789603 06 n 01 motley 0 004 @ 03309808 n 0000 #s 03789794 n 0000 + 00398978 a 0101 + 00284669 v 0101 | a multicolored woolen fabric woven of mixed threads in 14th to 17th century England -03789794 06 n 01 motley 1 003 @ 03419014 n 0000 + 00398978 a 0101 %s 03789603 n 0000 | a garment made of motley (especially a court jester's costume) -03789946 06 n 01 motor 0 009 @ 03699975 n 0000 + 00324481 a 0102 + 02226013 v 0101 + 00480751 v 0103 + 01930117 v 0102 ~ 03273061 n 0000 ~ 03287733 n 0000 ~ 04315444 n 0000 + 02226172 v 0101 | machine that converts other forms of energy into mechanical energy and so imparts motion -03790230 06 n 02 motorboat 0 powerboat 0 010 @ 02858304 n 0000 + 01945277 v 0101 ~ 02932891 n 0000 %p 03512911 n 0000 %p 03579982 n 0000 ~ 03647423 n 0000 ~ 03859170 n 0000 ~ 04273569 n 0000 ~ 04562122 n 0000 %p 04590553 n 0000 | a boat propelled by an internal-combustion engine -03790512 06 n 02 motorcycle 0 bike 2 008 @ 03791235 n 0000 + 01935476 v 0203 + 01936048 v 0102 %p 03616428 n 0000 %p 03616763 n 0000 ~ 03769722 n 0000 %p 03796605 n 0000 ~ 04466871 n 0000 | a motor vehicle with two wheels and a strong frame -03790755 06 n 05 motor_hotel 0 motor_inn 0 motor_lodge 0 tourist_court 0 court 3 002 @ 03542333 n 0000 ~ 03788498 n 0000 | a hotel for motorists; provides direct access from rooms to parking area -03790953 06 n 01 motorized_wheelchair 0 001 @ 04576002 n 0000 | a wheelchair propelled by a motor -03791053 06 n 02 motor_scooter 0 scooter 1 002 @ 04576211 n 0000 + 02061495 v 0203 | a wheeled vehicle with small wheels and a low-powered gasoline engine geared to the rear wheel -03791235 06 n 02 motor_vehicle 0 automotive_vehicle 0 037 @ 04170037 n 0000 -c 02053631 a 0000 %p 02685701 n 0000 ~ 02704792 n 0000 ~ 02854630 n 0000 %p 02863426 n 0000 %p 02891188 n 0000 %p 02931148 n 0000 ~ 02958343 n 0000 %p 02974003 n 0000 %p 03010473 n 0000 %p 03103128 n 0000 ~ 03221643 n 0000 %p 03243625 n 0000 %p 03270165 n 0000 ~ 03389761 n 0000 %p 03401721 n 0000 %p 03432129 n 0000 ~ 03444034 n 0000 ~ 03445924 n 0000 %p 03483637 n 0000 ~ 03506880 n 0000 %p 03579982 n 0000 ~ 03790512 n 0000 %p 03841143 n 0000 %p 03903424 n 0000 %p 03995018 n 0000 %p 04164529 n 0000 ~ 04252225 n 0000 %p 04273796 n 0000 -c 04313220 n 0000 %p 04366116 n 0000 ~ 04490091 n 0000 %p 04590553 n 0000 %p 04590746 n 0000 -c 04807626 n 0000 -c 07317369 n 0000 | a self-propelled wheeled vehicle that does not run on rails -03792048 06 n 02 mound 0 hill 1 007 @ 04341686 n 0000 + 01660640 v 0201 + 01660386 v 0101 ~ 02791385 n 0000 ~ 02922292 n 0000 ~ 03282060 n 0000 ~ 04251701 n 0000 | structure consisting of an artificial heap or bank usually of earth or stones; "they built small mounds to hide behind" -03792334 06 n 03 mound 1 hill 0 pitcher's_mound 0 004 @ 02799897 n 0000 #p 02799593 n 0000 ;c 00471613 n 0000 + 01660640 v 0201 | (baseball) the slight elevation on which the pitcher stands -03792526 06 n 02 mount 1 setting 0 004 @ 03793186 n 0000 + 01607445 v 0201 + 00407633 v 0101 ~ 03900393 n 0000 | a mounting consisting of a piece of metal (as in a ring or other jewelry) that holds a gem in place; "the diamond was in a plain gold mount" -03792782 06 n 03 mountain_bike 0 all-terrain_bike 0 off-roader 0 001 @ 02834778 n 0000 | a bicycle with a sturdy frame and fat tires; originally designed for riding in mountainous country -03792972 06 n 01 mountain_tent 0 001 @ 04411264 n 0000 | a lightweight tent with a floor; flaps close with a zipper -03793090 06 n 01 mountain_trail 0 001 @ 04466613 n 0000 | a trail through mountainous country -03793186 06 n 01 mounting 0 007 @ 03391770 n 0000 + 00407633 v 0101 ~ 03010656 n 0000 %p 03069919 n 0000 ~ 03728318 n 0000 ~ 03792526 n 0000 ~ 03896526 n 0000 | framework used for support or display -03793387 06 n 01 mourning_ring 0 001 @ 04092609 n 0000 | a ring worn as a memorial to a dead person -03793489 06 n 02 mouse 0 computer_mouse 0 003 @ 03277771 n 0000 + 01212115 v 0101 %p 03793850 n 0000 | a hand-operated electronic device that controls the coordinates of a cursor on your computer screen as you move it around on a pad; on the bottom of the device is a ball that rolls on the surface of the pad; "a mouse takes much more room than a trackball" -03793850 06 n 01 mouse_button 0 002 @ 04027023 n 0000 #p 03793489 n 0000 | a push button on the mouse -03793954 06 n 01 mouse-tooth_forceps 0 002 @ 03381231 n 0000 ;u 06295235 n 0000 | a type of forceps -03794056 06 n 01 mousetrap 0 001 @ 04474466 n 0000 | a trap for catching mice -03794136 06 n 03 mousse 0 hair_mousse 0 hair_gel 0 002 @ 04447443 n 0000 + 00039950 v 0101 | toiletry consisting of an aerosol foam used in hair styling -03794291 06 n 01 mousseline_de_sole 0 001 @ 03309808 n 0000 | a gauze-like fabric of silk or rayon -03794392 06 n 01 mouth 0 003 @ 03848729 n 0000 #p 03593526 n 0000 #p 02876657 n 0000 | the opening of a jar or bottle; "the jar had a wide mouth" -03794540 06 n 01 mouth_hole 0 002 @ 03526198 n 0000 #p 04229816 n 0000 | a hole (as in a ski mask) for the mouth -03794655 06 n 02 mousepad 0 mouse_mat 0 001 @ 03728131 n 0000 | a small portable pad that provides traction for the ball of a computer mouse -03794798 06 n 02 mouthpiece 0 embouchure 0 002 @ 02727016 n 0000 #p 04586932 n 0000 | the aperture of a wind instrument into which the player blows directly -03794957 06 n 01 mouthpiece 1 003 @ 04493505 n 0000 #p 03945167 n 0000 #p 03031152 n 0000 | the tube of a pipe or cigarette holder that a smoker holds in the mouth -03795123 06 n 01 mouthpiece 2 002 @ 02676261 n 0000 #p 04401088 n 0000 | an acoustic device; the part of a telephone into which a person speaks -03795269 06 n 02 mouthpiece 3 gumshield 0 002 @ 04285146 n 0000 ;c 00445802 n 0000 | (especially boxing) equipment that protects an athlete's mouth -03795419 06 n 01 mouthpiece 4 002 @ 02727016 n 0000 #p 04080833 n 0000 | a part that goes over or into the mouth of a person; "the mouthpiece of a respirator" -03795580 06 n 01 movable_barrier 0 005 @ 02796623 n 0000 ~ 03016209 n 0000 ~ 03221720 n 0000 ~ 03427296 n 0000 ~ 03498536 n 0000 | a barrier that can be moved to allow passage -03795758 06 n 01 movement 0 003 @ 02677718 n 0000 #p 04555897 n 0000 #p 03046257 n 0000 | the driving and regulating parts of a mechanism (as of a watch or clock); "it was an expensive watch with a diamond movement" -03795976 06 n 03 movie_projector 0 cine_projector 0 film_projector 0 003 @ 04009552 n 0000 ~ 02842133 n 0000 %p 03637027 n 0000 | projects successive frames from a reel of film to create moving pictures -03796181 06 n 01 moving-coil_galvanometer 0 002 @ 03413264 n 0000 ~ 02781213 n 0000 | a galvanometer that is operated by the force exerted by an electric current flowing in a movable coil suspended in a magnetic field -03796401 06 n 01 moving_van 0 002 @ 04520170 n 0000 ~ 03884639 n 0000 | a van used for moving home or office furniture -03796522 06 n 01 mud_brick 0 001 @ 02897820 n 0000 | a brick made from baked mud -03796605 06 n 03 mudguard 0 splash_guard 0 splash-guard 0 003 @ 03327841 n 0000 #p 03790512 n 0000 #p 02834778 n 0000 | a curved piece above the wheel of a bicycle or motorcycle to protect the rider from water or mud thrown up by the wheels -03796848 06 n 01 mudhif 0 001 @ 03547054 n 0000 | a reed hut in the marshlands of Iraq; rare since the marshes were drained -03796974 06 n 01 muff 0 001 @ 03490324 n 0000 | a warm tubular covering for the hands -03797062 06 n 01 muffle 0 001 @ 03617095 n 0000 | a kiln with an inner chamber for firing things at a low temperature -03797182 06 n 01 muffler 0 001 @ 04143897 n 0000 | a scarf worn around the neck -03797264 06 n 01 mufti 0 001 @ 03036469 n 0000 | civilian dress worn by a person who is entitled to wear a military uniform -03797390 06 n 01 mug 0 005 @ 03241496 n 0000 ~ 02824058 n 0000 ~ 03063599 n 0000 %p 03485997 n 0000 ~ 04443766 n 0000 | with handle and usually cylindrical -03797548 06 n 02 mug_shot 0 mugshot 0 002 @ 03925226 n 0000 #m 06511396 n 0000 | a photograph of someone's face (especially one made for police records) -03797703 06 n 01 mukataa 0 002 @ 03504723 n 0000 ;c 06988057 n 0000 | an Arabic word for headquarters or administrative center; "Arafat was holed up in the mukataa of his West Bank compound" -03797896 06 n 01 mulch 0 002 @ 04014297 n 0000 + 01234379 v 0101 | a protective covering of rotting vegetable matter spread to reduce evaporation and soil erosion -03798061 06 n 02 mule 0 scuff 0 001 @ 04241394 n 0000 | a slipper that has no fitting around the heel -03798165 06 n 01 muller 1 002 @ 04531098 n 0000 + 02196540 v 0101 | a vessel in which wine is mulled -03798268 06 n 01 mullion 0 002 @ 04339291 n 0000 #p 04587648 n 0000 | a nonstructural vertical strip between the casements or panes of a window (or the panels of a screen) -03798442 06 n 01 multichannel_recorder 0 001 @ 04063373 n 0000 | a recorder with two or more channels; makes continuous records of two or more signals simultaneously -03798610 06 n 02 multiengine_airplane 0 multiengine_plane 0 001 @ 02691156 n 0000 | a plane with two or more engines -03798729 06 n 02 multifocal_lens_implant 0 multifocal_IOL 0 001 @ 03657239 n 0000 | a type of lens implant that contains several rings with a common center and adjusts for near or far vision; the eye is in focus for near and far vision simultaneously -03798982 06 n 01 multiplex 0 001 @ 03032252 n 0000 | a movie theater than has several different auditoriums in the same building -03799113 06 n 01 multiplexer 0 002 @ 03277771 n 0000 ~ 03164192 n 0000 | a device that can interleave two or more activities -03799240 06 n 01 multiprocessor 0 001 @ 03196324 n 0000 | a computer that uses two or more processing units under integrated control -03799375 06 n 02 multistage_rocket 0 step_rocket 0 002 @ 04099429 n 0000 %p 02872333 n 0000 | a rocket having two or more rocket engines (each with its own fuel) that are fired in succession and jettisoned when the fuel is exhausted -03799610 06 n 03 munition 2 ordnance 0 ordnance_store 0 001 @ 02738031 n 0000 | military supplies -03799710 06 n 02 mural 0 wall_painting 0 004 @ 03876519 n 0000 + 02879424 a 0101 + 10338498 n 0101 ~ 03395630 n 0000 | a painting that is applied to a wall surface -03799876 06 n 01 Murphy_bed 0 001 @ 02818832 n 0000 | a bed that can be folded or swung into a cabinet when not being used -03800001 06 n 01 muscle_relaxant 0 009 @ 04072811 n 0000 ~ 02830852 n 0000 ~ 03155334 n 0000 ~ 03755545 n 0000 ~ 03856148 n 0000 ~ 03886237 n 0000 ~ 04007510 n 0000 ~ 04349526 n 0000 ~ 14859622 n 0000 | a drug that reduces muscle contractility by blocking the transmission of nerve impulses or by decreasing the excitability of the motor end plate or by other actions -03800371 06 n 02 musette 0 shepherd's_pipe 2 001 @ 02775483 n 0000 | a small bagpipe formerly popular in France -03800485 06 n 01 musette_pipe 0 001 @ 03838899 n 0000 | a small simple oboe -03800563 06 n 01 museum 0 004 @ 03177349 n 0000 ~i 03475118 n 0000 ~i 03692942 n 0000 ~ 04147364 n 0000 | a depository for collecting and displaying objects having scientific or historical or artistic value -03800772 06 n 01 mushroom_anchor 0 001 @ 02709367 n 0000 | an anchor used for semipermanent moorings; has a bowl-shaped head that will dig in however it falls -03800933 06 n 02 musical_instrument 0 instrument 1 015 @ 03183080 n 0000 + 02825770 a 0201 + 10340312 n 0202 + 01707925 v 0201 + 01707925 v 0202 ~ 02795978 n 0000 ~ 02803349 n 0000 ~ 02940706 n 0000 ~ 03279153 n 0000 ~ 03597916 n 0000 ~ 03614532 n 0000 ~ 03801353 n 0000 ~ 03915437 n 0000 ~ 04338517 n 0000 ~ 04586932 n 0000 | any of various devices or contrivances that can be used to produce musical tones or sounds -03801353 06 n 02 music_box 0 musical_box 0 001 @ 03800933 n 0000 | produces music by means of pins on a revolving cylinder that strike the tuned teeth of a comb-like metal plate -03801533 06 n 03 music_hall 0 vaudeville_theater 0 vaudeville_theatre 0 001 @ 04417809 n 0000 | a theater in which vaudeville is staged -03801671 06 n 01 music_school 0 001 @ 03092314 n 0000 | a school specializing in music -03801760 06 n 02 music_stand 0 music_rack 0 001 @ 04038440 n 0000 | a light stand for holding sheets of printed music -03801880 06 n 02 music_stool 0 piano_stool 0 001 @ 04326896 n 0000 | a stool for piano players; usually adjustable in height -03802007 06 n 01 musket 0 006 @ 03803116 n 0000 + 10341446 n 0101 ~ 02856237 n 0000 ~ 03147084 n 0000 ~ 03408264 n 0000 ~ 03729482 n 0000 | a muzzle-loading shoulder gun with a long barrel; formerly used by infantrymen -03802228 06 n 02 musket_ball 0 ball 3 001 @ 04205759 n 0000 | a solid projectile that is shot by a musket; "they had to carry a ramrod as well as powder and ball" -03802393 06 n 01 muslin 0 003 @ 03309808 n 0000 ~ 03805933 n 0000 ~ 03854421 n 0000 | plain-woven cotton fabric -03802507 06 n 01 musnud 0 002 @ 04429376 n 0000 %p 03409806 n 0000 | a seat with a cushion that is used as a throne by Indian princes -03802643 06 n 02 mustache_cup 0 moustache_cup 0 001 @ 03147509 n 0000 | a drinking cup with a bar inside the rim to keep a man's mustache out of the drink -03802800 06 n 02 mustard_plaster 0 sinapism 0 001 @ 03993403 n 0000 | a plaster containing powdered black mustard; applied to the skin as a counterirritant or rubefacient -03802973 06 n 01 mute 0 003 @ 02676261 n 0000 + 02191311 v 0102 ~ 04264050 n 0000 | a device used to soften the tone of a musical instrument -03803116 06 n 01 muzzle_loader 0 004 @ 03343853 n 0000 ~ 02742070 n 0000 ~ 03363749 n 0000 ~ 03802007 n 0000 | an obsolete firearm that was loaded through the muzzle -03803284 06 n 01 muzzle 2 002 @ 04081844 n 0000 + 02340897 v 0101 | a leather or wire restraint that fits over an animal's snout (especially a dog's nose and jaws) and prevents it from eating or biting -03803488 06 n 01 mycomycin 0 001 @ 02716866 n 0000 | a highly unsaturated antibiotic acid obtained from an actinomycete -03803610 06 n 02 mydriatic 0 mydriatic_drug 0 002 @ 03247620 n 0000 ~ 02754756 n 0000 | a drug that causes the pupil of the eye to dilate; used to aid eye examinations -03803780 06 n 01 myelogram 0 001 @ 04100620 n 0000 | X-ray film of the spinal cord and spinal nerve roots and subarachnoid space -03803911 06 n 01 mystification 0 003 @ 00021939 n 0000 + 00622384 v 0106 + 00518653 v 0101 | something designed to mystify or bewilder -03804048 06 n 02 nabumetone 0 Relafen 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14926294 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Relafen) -03804211 06 n 01 nacelle 0 001 @ 03285912 n 0000 | a streamlined enclosure for an aircraft engine -03804311 06 n 02 nadolol 0 Corgard 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | a beta-adrenergic blocking agent (trade name Corgard) that is used to treat hypertension and angina -03804493 06 n 02 nafcillin 0 Nafcil 0 001 @ 03910417 n 0000 | a penicillinase-resistant form of penicillin (trade name Nafcil) used (usually in the form of its sodium salt) to treat infections caused by penicillin-resistant strains of staphylococci -03804744 06 n 01 nail 0 018 @ 03323703 n 0000 + 01357831 v 0101 ~ 02888817 n 0000 %p 03042829 n 0000 ~ 03052917 n 0000 ~ 03223441 n 0000 ~ 03267256 n 0000 ~ 03388466 n 0000 %p 03501288 n 0000 ~ 03523849 n 0000 %p 03805374 n 0000 %p 04184095 n 0000 ~ 04225337 n 0000 ~ 04275904 n 0000 ~ 04303258 n 0000 ~ 04343272 n 0000 ~ 04383130 n 0000 ~ 04410485 n 0000 | a thin pointed piece of metal that is hammered into materials as a fastener -03805180 06 n 01 nailbrush 0 001 @ 02908217 n 0000 | a brush used to clean a person's fingernails -03805280 06 n 01 nailfile 0 001 @ 03336839 n 0000 | a small flat file for shaping the nails -03805374 06 n 01 nailhead 0 002 @ 03626115 n 0000 #p 03804744 n 0000 | flattened boss on the end of nail opposite to the point -03805503 06 n 01 nailhead 1 001 @ 03169390 n 0000 | something resembling the head of a nail that is used as an ornamental device -03805634 06 n 01 nail_hole 0 001 @ 03526198 n 0000 | a hole left after a nail is removed -03805725 06 n 03 nail_polish 0 nail_enamel 0 nail_varnish 0 002 @ 03113152 n 0000 @ 03284743 n 0000 | a cosmetic lacquer that dries quickly and that is applied to the nails to color them or make them shiny -03805933 06 n 01 nainsook 0 001 @ 03802393 n 0000 | a soft lightweight muslin used especially for babies -03806040 06 n 02 nalidixic_acid 0 NegGram 0 001 @ 02716205 n 0000 | antibacterial agent used especially to treat genitourinary infections -03806180 06 n 02 nalorphine 0 Nalline 0 001 @ 03808977 n 0000 | a narcotic antagonist (trade name Nalline) that counteracts the effects of narcotics (especially the effects of poisoning by morphine) -03806381 06 n 02 naloxone 0 Narcan 0 002 @ 03808977 n 0000 ;u 06845599 n 0201 | a potent narcotic antagonist (trade name Narcan) especially effective with morphine -03806547 06 n 01 naltrexone 0 001 @ 03808977 n 0000 | an oral antagonist against the action of opiates -03806652 06 n 01 nameplate 0 002 @ 03959936 n 0000 ~ 03223553 n 0000 | a plate bearing a name -03806748 06 n 02 NAND_circuit 0 NAND_gate 0 001 @ 03427656 n 0000 | a logic gate that produces an output that is the inverse of the output of an AND gate -03806904 06 n 01 nankeen 0 001 @ 03309808 n 0000 | a durable fabric formerly loomed by hand in China from natural cotton having a yellowish color -03807052 06 n 03 naphazoline 0 Privine 0 Sudafed 0 004 @ 04522421 n 0000 @ 03809939 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | vasoconstrictor (trade names Privine and Sudafed) used in nasal sprays to treat symptoms of nasal congestion and in eyedrops to treat eye irritation -03807334 06 n 02 Napier's_bones 0 Napier's_rods 0 002 @ 02938886 n 0000 ;u 06295235 n 0000 | a set of graduated rods formerly used to do multiplication and division by a method invented by John Napier -03807537 06 n 03 napkin 0 table_napkin 0 serviette 0 004 @ 04380617 n 0000 ~ 02834295 n 0000 ~ 03201895 n 0000 ~ 04397949 n 0000 | a small piece of table linen that is used to wipe the mouth and to cover the lap in order to protect clothing -03807780 06 n 01 napkin_ring 0 001 @ 03533972 n 0000 | a circular band used to hold a particular person's napkin -03807895 06 n 02 naproxen 0 Naprosyn 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Naprosyn) used in the treatment of arthritis and musculoskeletal inflammation and moderate pain -03808144 06 n 04 naproxen_sodium 0 Aleve 0 Anaprox 0 Aflaxen 0 005 @ 03828465 n 0000 ;u 06851742 n 0401 ;u 06851742 n 0301 ;u 06851742 n 0201 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory drug (trademarks Aleve and Anaprox and Aflaxen) that fights pain and inflammation -03808424 06 n 01 narcoleptic 0 002 @ 04260934 n 0000 + 02767110 a 0101 | a soporific drug that produces an uncontrollable desire to sleep -03808564 06 n 01 narcotic 0 014 @ 03247620 n 0000 + 02308840 a 0101 + 00085506 v 0101 ~ 03492717 n 0000 ~ 03747103 n 0000 ~ 03754014 n 0000 ~ 03850746 n 0000 ~ 03850966 n 0000 ~ 04064988 n 0000 ~ 04256993 n 0000 -c 09956035 n 0000 -c 10629142 n 0000 -c 14062725 n 0000 -c 14064408 n 0000 | a drug that produces numbness or stupor; often taken for pleasure or to reduce pain; extensive use can lead to addiction -03808977 06 n 01 narcotic_antagonist 0 004 @ 02714883 n 0000 ~ 03806180 n 0000 ~ 03806381 n 0000 ~ 03806547 n 0000 | an antagonist used to counteract the effects of narcotics (especially to counteract the depression of respiration) -03809211 06 n 02 nard 0 spikenard 0 001 @ 03128519 n 0000 | an aromatic ointment used in antiquity -03809312 06 n 03 narrowbody_aircraft 0 narrow-body_aircraft 0 narrow-body 0 001 @ 02690373 n 0000 | a commercial airliner with a single aisle -03809456 06 n 01 narrow_gauge 0 002 @ 04048075 n 0000 @ 05130028 n 0000 | a railroad track (or its width) narrower than the standard 56.5 inches -03809603 06 n 01 narrow_wale 0 001 @ 03106722 n 0000 | corduroy with narrow ribs -03809686 06 n 01 narthex 1 002 @ 02715513 n 0000 #p 03028079 n 0000 | a vestibule leading to the nave of a church -03809802 06 n 01 narthex 2 002 @ 03986704 n 0000 #p 02801184 n 0000 | portico at the west end of an early Christian basilica or church -03809939 06 n 01 nasal_decongestant 0 004 @ 03169271 n 0000 ~ 02677232 n 0000 ~ 03199142 n 0000 ~ 03807052 n 0000 | a decongestant that provides temporary relief of nasal symptoms of the common cold and rhinitis and upper respiratory infections -03810186 06 n 02 National_Association_of_Securities_Dealers_Automated_Quotations 0 NASDAQ 0 001 @i 03164344 n 0000 | a computerized data system to provide brokers with price quotations for securities traded over the counter -03810412 06 n 01 nasotracheal_tube 0 001 @ 03286878 n 0000 | a tube inserted into the trachea through the nose and pharynx; used to deliver oxygen -03810561 06 n 01 National_Baseball_Hall_of_Fame 0 002 @i 03479266 n 0000 #p 09118639 n 0000 | a Hall of Fame and museum in Cooperstown, New York, honoring great baseball players -03810741 06 n 03 National_Library_of_Medicine 0 United_States_National_Library_of_Medicine 0 U.S._National_Library_of_Medicine 0 002 @i 03661043 n 0000 #p 08134081 n 0000 | the world's largest medical library -03810952 06 n 01 national_monument 0 001 @ 03743902 n 0000 | memorial consisting of a structure or natural landmark of historic interest; set aside by national government for preservation and public enjoyment -03811163 06 n 02 naumachy 0 naumachia 0 001 @ 04271891 n 0000 | a naval spectacle; a mock sea battle put on by the ancient Romans -03811295 06 n 03 nautilus 0 nuclear_submarine 0 nuclear-powered_submarine 0 001 @ 04347754 n 0000 | a submarine that is propelled by nuclear power -03811444 06 n 01 navigational_system 0 003 @ 04377057 n 0000 ~ 03440216 n 0000 ~ 03846970 n 0000 | a system that provides information useful in determining the position and course of a ship or aircraft -03811648 06 n 03 naval_chart 0 navigational_chart 0 pilot_chart 0 001 @ 03009920 n 0000 | a chart for a navigator showing the prevailing meteorological and hydrographic and navigational conditions -03811847 06 n 01 naval_equipment 0 003 @ 03294048 n 0000 ~ 03812382 n 0000 ~ 04196080 n 0000 | equipment for a navy -03811965 06 n 01 naval_gun 0 003 @ 03812924 n 0000 #p 04552696 n 0000 ~ 04316815 n 0000 | naval weaponry consisting of a large gun carried on a warship -03812119 06 n 02 naval_installation 0 shore_station 0 002 @ 03763133 n 0000 ;c 08199025 n 0000 | military installation servicing naval forces -03812263 06 n 01 naval_missile 0 001 @ 03812924 n 0000 | naval weaponry consisting of a missile carried on a warship -03812382 06 n 01 naval_radar 0 004 @ 03811847 n 0000 ~ 02692680 n 0000 ~ 03344784 n 0000 ~ 04362972 n 0000 | naval equipment consisting of a shipboard radar -03812541 06 n 02 Naval_Research_Laboratory 0 NRL 0 002 @i 08337324 n 0000 #p 08191987 n 0000 | the United States Navy's defense laboratory that conducts basic and applied research for the Navy in a variety of scientific and technical disciplines -03812789 06 n 01 naval_tactical_data_system 0 001 @ 04196080 n 0000 | a shipboard system for collecting and displaying tactical data -03812924 06 n 01 naval_weaponry 0 005 @ 04566257 n 0000 ~ 03344935 n 0000 ~ 03773835 n 0000 ~ 03811965 n 0000 ~ 03812263 n 0000 | weaponry for warships -03813078 06 n 01 nave 0 002 @ 02735688 n 0000 #p 03028079 n 0000 | the central area of a church -03813176 06 n 01 navigational_instrument 0 006 @ 03574816 n 0000 ~ 02745611 n 0000 ~ 03080497 n 0000 ~ 03178000 n 0000 ~ 03566730 n 0000 ~ 04259771 n 0000 | an instrument used for navigating -03813369 06 n 01 navigation_light 0 002 @ 03665366 n 0000 #p 02691156 n 0000 | light on an airplane that indicates the plane's position and orientation; red light on the left (port) wing tip and green light on the right (starboard) wing tip -03813612 06 n 01 navy_base 0 001 @ 02798290 n 0000 | base of operations for a naval fleet -03813704 06 n 02 navy_yard 0 naval_shipyard 0 003 @ 04197235 n 0000 ;c 08199025 n 0000 ~i 03009477 n 0000 | a military shipyard -03813834 06 n 01 nearside 0 002 @ 04213626 n 0000 ;r 08860123 n 0000 | the side of a vehicle nearest the kerb -03813946 06 n 01 nebuchadnezzar 0 001 @ 04591713 n 0000 | a very large wine bottle holding the equivalent of 20 normal bottles of wine; used especially for display -03814112 06 n 02 neck 0 neck_opening 0 005 @ 03848729 n 0000 #p 03419014 n 0000 %p 03068181 n 0000 ~ 03815278 n 0000 ~ 04539535 n 0000 | an opening in a garment for the neck of the wearer; a part of the garment near the wearer's neck -03814348 06 n 01 neck 1 001 @ 03892891 n 0000 | a narrow part of an artifact that resembles a neck in position or form; "the banjo had a long neck"; "the bottle had a wide neck" -03814528 06 n 01 neckband 2 002 @ 02784732 n 0000 #p 04370048 n 0000 | a band around the collar of a garment -03814639 06 n 01 neck_brace 0 001 @ 02887209 n 0000 | a brace worn to steady the neck -03814727 06 n 02 neckcloth 0 stock 3 001 @ 03128085 n 0000 | an ornamental white cravat -03814817 06 n 01 neckerchief 0 001 @ 03610992 n 0000 | a kerchief worn around the neck -03814906 06 n 01 necklace 0 005 @ 03597469 n 0000 ~ 02999757 n 0000 ~ 03000021 n 0000 ~ 03024882 n 0000 %p 03908831 n 0000 | jewelry consisting of a cord or chain (often bearing gems) worn about the neck as an ornament (especially by women) -03815149 06 n 01 necklet 0 001 @ 03169390 n 0000 | decoration worn about the neck (fur piece or tight necklace) as an ornament -03815278 06 n 01 neckline 0 006 @ 03814112 n 0000 #p 03236735 n 0000 #p 02854926 n 0000 #p 04370048 n 0000 ~ 03131431 n 0000 ~ 03169176 n 0000 | the line formed by the edge of a garment around the neck -03815482 06 n 01 neckpiece 0 003 @ 03051540 n 0000 ~ 03068998 n 0000 ~ 03406759 n 0000 | an article of apparel worn about the neck -03815615 06 n 02 necktie 0 tie 1 008 @ 03816005 n 0000 + 00141632 v 0201 ~ 02865351 n 0000 ~ 02883205 n 0000 ~ 03388323 n 0000 ~ 03845990 n 0000 ~ 04339191 n 0000 ~ 04591157 n 0000 | neckwear consisting of a long narrow piece of material worn (mostly by men) under a collar and tied in knot at the front; "he stood in front of the mirror tightening his necktie"; "he wore a vest and tie" -03816005 06 n 01 neckwear 0 003 @ 03419014 n 0000 ~ 03128085 n 0000 ~ 03815615 n 0000 | articles of clothing worn about the neck -03816136 06 n 01 needle 0 010 @ 03563967 n 0000 + 01331027 v 0101 ~ 03133050 n 0000 ~ 03252422 n 0000 %p 03308297 n 0000 ~ 03555564 n 0000 ~ 03625646 n 0000 ~ 03872167 n 0000 %p 03974215 n 0000 ~ 04180063 n 0000 | a sharp pointed implement (usually steel) -03816394 06 n 01 needle 1 001 @ 03975232 n 0000 | a slender pointer for indicating the reading on the scale of a measuring instrument -03816530 06 n 01 needlenose_pliers 0 002 @ 03966976 n 0000 ;u 06295235 n 0000 | small pliers with long thin jaws for fine work -03816659 06 n 02 needlepoint 0 needlepoint_embroidery 0 003 @ 03282933 n 0000 ~ 03462211 n 0000 ~ 03920087 n 0000 | embroidery consisting of allover embroidered canvas resembling tapestry -03816849 06 n 02 needlework 0 needlecraft 0 006 @ 03129123 n 0000 ~ 03132879 n 0000 ~ 03282933 n 0000 ~ 03624966 n 0000 ~ 04179385 n 0000 ~ 04395495 n 0000 | a creation created or assembled by needle and thread -03817062 06 n 02 nefazodone 0 Serzone 0 002 @ 02718811 n 0000 ;u 06845599 n 0201 | an antidepressant drug (trade name Serzone) -03817191 06 n 01 negative 0 001 @ 03338821 n 0000 | a piece of photographic film showing an image with light and shade or colors reversed -03817331 06 n 03 negative_magnetic_pole 0 negative_pole 0 south-seeking_pole 0 001 @ 03976960 n 0000 | the pole of a magnet that points toward the south when the magnet is suspended freely -03817522 06 n 01 negative_pole 1 001 @ 04413151 n 0000 | the terminal of a battery that is connected to the negative plate -03817647 06 n 05 negligee 0 neglige 0 peignoir 0 wrapper 1 housecoat 0 004 @ 04596852 n 0000 + 01283208 v 0401 ~ 02908123 n 0000 ~ 02944075 n 0000 | a loose dressing gown for women -03817830 06 n 02 nelfinavir 0 Viracept 0 001 @ 04013993 n 0000 | a protease inhibitor (trade name Viracept) used in treating HIV usually in combination with other drugs -03818001 06 n 01 neolith 0 001 @ 04451818 n 0000 | a stone tool from the Neolithic Age -03818090 06 n 03 neomycin 0 fradicin 0 Neobiotic 0 003 @ 02716866 n 0000 @ 02724207 n 0000 ;u 06845599 n 0301 | an antibiotic obtained from an actinomycete and used (as a sulphate under the trade name Neobiotic) as an intestinal antiseptic in surgery -03818343 06 n 03 neon_lamp 0 neon_induction_lamp 0 neon_tube 0 001 @ 03636248 n 0000 | a lamp consisting of a small gas-discharge tube containing neon at low pressure; luminescence is produced by the action of currents at high frequencies that are wrapped a few turns around the tube -03818629 06 n 01 Neosporin 0 001 @ 02716205 n 0000 | trade name for a topical drug containing several antibacterials; used as an ointment for skin irritations and in the form of eyedrops for minor eye infections -03818843 06 n 02 neostigmine 0 Prostigmin 0 002 @ 02718084 n 0000 ;u 06845599 n 0201 | a cholinergic drug (trade name Prostigmin) used to treat some ophthalmic conditions and to treat myasthenia gravis -03819047 06 n 01 nephoscope 0 001 @ 03733925 n 0000 | a measuring instrument that uses a grid for measuring the altitude, direction, and velocity of movement of clouds -03819217 06 n 01 nest 0 001 @ 03469031 n 0000 | a kind of gun emplacement; "a machine-gun nest"; "a nest of snipers" -03819336 06 n 01 nest 1 002 @ 03405725 n 0000 + 01529766 v 0101 | furniture pieces made to fit close together -03819448 06 n 01 nest_egg 0 001 @ 03183080 n 0000 | device consisting of an artificial egg left in a nest to induce hens to lay their eggs in it -03819595 06 n 05 net 0 network 0 mesh 0 meshing 1 meshwork 0 014 @ 03309808 n 0000 + 01463340 v 0302 + 01672168 v 0102 %p 02768433 n 0000 ~ 03016609 n 0000 ~ 03429914 n 0000 ~ 03475961 n 0000 ~ 04078150 n 0000 ~ 04127117 n 0000 ~ 04139534 n 0000 ~ 04250692 n 0000 ~ 04268142 n 0000 ~ 04496614 n 0000 ~ 04595762 n 0000 | an open fabric of string or rope or wire woven together at regular intervals -03819994 06 n 01 net 2 004 @ 04474466 n 0000 + 01365945 v 0101 ~ 02889332 n 0000 ~ 03352628 n 0000 | a trap made of netting to catch fish or birds or insects -03820154 06 n 01 net 3 002 @ 03414162 n 0000 ~ 04540255 n 0000 | game equipment consisting of a strip of netting dividing the playing area in tennis or badminton -03820318 06 n 01 net 4 004 @ 03442756 n 0000 ;c 00478262 n 0000 ;c 00467995 n 0000 ~ 02936921 n 0000 | a goal lined with netting (as in soccer or hockey) -03820474 06 n 01 network 1 002 @ 03077958 n 0000 ;c 06276697 n 0000 | (broadcasting) a communication system consisting of a group of broadcasting stations that all transmit the same programs; "the networks compete to broadcast important sports events" -03820728 06 n 02 network 2 electronic_network 0 005 @ 04377057 n 0000 ;c 06099269 n 0000 ~ 03085333 n 0000 ~ 03261395 n 0000 ~ 04358491 n 0000 | (electronics) a system of interconnected electronic components or circuits -03820950 06 n 01 network 3 004 @ 04377057 n 0000 ~ 04078002 n 0000 ~ 04082886 n 0000 ~ 04083113 n 0000 | a system of intersecting lines or channels; "a railroad network"; "a network of canals" -03821145 06 n 01 neutron_bomb 0 001 @ 02753044 n 0000 | atom bomb that produces lethal neutrons with less blast -03821259 06 n 02 nevirapine 0 Viramune 0 001 @ 03828155 n 0000 | a non-nucleoside reverse transcriptase inhibitor (trade name Viramune) used to treat AIDS and HIV -03821424 06 n 01 newel 0 001 @ 03073977 n 0000 | the central pillar of a circular staircase -03821518 06 n 02 newel_post 0 newel 2 001 @ 03988170 n 0000 | the post at the top or bottom of a flight of stairs; it supports the handrail -03821660 06 n 01 Newgate 0 002 @i 04005630 n 0000 #p 08873622 n 0000 | a former prison in London notorious for its unsanitary conditions and burnt down in riots in 1780; a new prison was built on the same spot but was torn down in 1902 -03821898 06 n 01 newmarket 0 001 @ 03057021 n 0000 | a long close-fitting coat worn for riding in the 19th century -03822015 06 n 01 New_River_Gorge_Bridge 0 002 @i 04311004 n 0000 #p 09156095 n 0000 | a steel arch bridge across New River at Fayetteville, West Virginia -03822171 06 n 02 newspaper 0 paper 0 001 @ 04007894 n 0000 | the physical object that is the product of a newspaper publisher; "when it began to rain he covered his head with a newspaper" -03822361 06 n 01 newsroom 0 001 @ 04058096 n 0000 | a reading room (in a library or club) where newspapers and other periodicals can be read -03822504 06 n 01 newsroom 1 001 @ 03841666 n 0000 | an office in which news is processed by a newspaper or news agency or television or radio station -03822656 06 n 01 newsstand 0 001 @ 04299215 n 0000 | a stall where newspapers and other periodicals are sold -03822767 06 n 02 Newtonian_telescope 0 Newtonian_reflector 0 001 @ 04068601 n 0000 | reflecting telescope in which the image is viewed through an eyepiece perpendicular to main axis -03822951 06 n 04 New_York_Stock_Exchange 0 N._Y._Stock_Exchange 0 NYSE 0 big_board 1 002 @i 04323026 n 0000 %p 02837134 n 0000 | a stock exchange in New York -03823111 06 n 02 nib 0 pen_nib 0 002 @ 03974215 n 0000 #p 03906997 n 0000 | the writing point of a pen -03823216 06 n 02 niblick 0 nine_iron 0 001 @ 03585073 n 0000 | an iron with considerable loft -03823312 06 n 02 nicad 0 nickel-cadmium_accumulator 0 001 @ 04328329 n 0000 | a rechargeable battery with a nickel cathode and a cadmium anode; often used in emergency systems because of its low discharge rate when not in use -03823540 06 n 01 nick 0 003 @ 04005630 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | (British slang) a prison; "he's in the nick" -03823673 06 n 02 nickel-iron_battery 0 nickel-iron_accumulator 0 001 @ 04328329 n 0000 | a storage battery having a nickel oxide cathode and an iron anode with an electrolyte of potassium hydroxide; each cell gives about 1.2 volts -03823906 06 n 01 Nicol_prism 0 001 @ 03851341 n 0000 | optical device that produces plane-polarized light -03824014 06 n 02 nifedipine 0 Procardia 0 002 @ 02938514 n 0000 ;u 06845599 n 0201 | calcium blocker (trade name Procardia); appears to increase the risk of recurrent heart attacks -03824197 06 n 01 night_bell 0 001 @ 03222516 n 0000 | a doorbell to be used at night -03824284 06 n 01 nightcap 0 002 @ 02954340 n 0000 #p 03824381 n 0000 | a cloth cap worn in bed -03824381 06 n 05 nightgown 0 gown 3 nightie 0 night-robe 0 nightdress 0 003 @ 03673450 n 0000 @ 03825080 n 0000 %p 03824284 n 0000 | lingerie consisting of a loose dress designed to be worn in bed by women -03824589 06 n 01 night_latch 0 001 @ 03223162 n 0000 | doorlock operated by a knob on the inside and a key on the outside -03824713 06 n 01 night-light 0 001 @ 03665366 n 0000 | light (as a candle or small bulb) that burns in a bedroom at night (as for children or invalids) -03824867 06 n 01 night-line 0 001 @ 03351768 n 0000 | a fishing line with baited hooks left in the water to catch fish over night -03824999 06 n 01 nightshirt 0 001 @ 03825080 n 0000 | nightclothes worn by men -03825080 06 n 03 nightwear 0 sleepwear 0 nightclothes 0 005 @ 03051540 n 0000 ;u 06295235 n 0301 ~ 03824381 n 0000 ~ 03824999 n 0000 ~ 03877472 n 0000 | garments designed to be worn in bed -03825271 06 n 03 ninepin 0 skittle 0 skittle_pin 0 002 @ 02882647 n 0000 + 01146697 v 0201 | a bowling pin of the type used in playing ninepins or (in England) skittles -03825442 06 n 02 ninepin_ball 0 skittle_ball 0 001 @ 02778669 n 0000 | ball used to knock down ninepins -03825548 06 n 02 nine-spot 0 nine 0 001 @ 04286307 n 0000 | one of four playing cards in a deck with nine pips on the face -03825673 06 n 01 ninon 0 001 @ 03309808 n 0000 | a fine strong sheer silky fabric made of silk or rayon or nylon -03825788 06 n 01 nipple 0 002 @ 02954938 n 0000 #p 02877266 n 0000 | a flexible cap on a baby's feeding bottle or pacifier -03825913 06 n 01 nipple_shield 0 001 @ 04192858 n 0000 | a rubber or plastic shield to protect the nipples of nursing women -03826039 06 n 01 niqab 0 001 @ 03314884 n 0000 | a face veil covering the lower part of the face (up to the eyes) worn by observant Muslim women -03826186 06 n 02 Nissen_hut 0 Quonset_hut 0 001 @ 03550153 n 0000 | a prefabricated hut of corrugated iron having a semicircular cross section -03826331 06 n 01 nitrazepam 0 001 @ 02830852 n 0000 | a hypnotic and sedative drug of the benzodiazepine type -03826443 06 n 02 nitrofurantoin 0 Macrodantin 0 003 @ 02716205 n 0000 ;u 06845599 n 0201 %s 14963634 n 0000 | derivative of nitrofuran used as an antibacterial medicine (trade name Macrodantin) effective against a broad range of Gram-positive and Gram-negative bacteria; used to treat infections of the urinary tract -03826762 06 n 02 Nitrospan 0 Nitrostat 0 002 @ 04522904 n 0000 %s 14886579 n 0000 | trade names for nitroglycerin used as a coronary vasodilator in the treatment of angina pectoris -03826945 06 n 02 nitrous_oxide 0 laughing_gas 0 002 @ 03570838 n 0000 %s 15014012 n 0000 | inhalation anesthetic used as an anesthetic in dentistry and surgery -03827107 06 n 03 node 0 client 0 guest 0 003 @ 03082979 n 0000 #p 03085333 n 0000 ;c 06128570 n 0000 | (computer science) any computer that is hooked up to a computer network -03827284 06 n 01 nog 0 001 @ 02852523 n 0000 | a wooden block built into a masonry wall so that joinery structure can be nailed to it -03827420 06 n 01 nogging 0 001 @ 02898369 n 0000 | rough brick masonry used to fill in the gaps in a wooden frame -03827536 06 n 01 noisemaker 0 003 @ 03183080 n 0000 ~ 03537085 n 0000 ~ 04431925 n 0000 | a device (such as a clapper or bell or horn) used to make a loud noise at a celebration -03827716 06 n 02 nomogram 0 nomograph 0 001 @ 04076846 n 0000 | a graphic representation of numerical relations -03827830 06 n 01 non-dedicated_file_server 0 003 @ 03337494 n 0000 ;c 06128570 n 0000 ! 03170459 n 0101 | (computer science) a file server that can be used simultaneously as a workstation -03828020 06 n 02 nonsmoker 0 nonsmoking_car 0 001 @ 03895866 n 0000 | a passenger car for passengers who want to avoid tobacco smoke -03828155 06 n 02 non-nucleoside_reverse_transcriptase_inhibitor 0 NNRTI 0 004 @ 04085365 n 0000 #p 03248560 n 0000 ~ 03172432 n 0000 ~ 03821259 n 0000 | an antiviral drug used against HIV; binds directly to reverse transcriptase and prevents RNA conversion to DNA; often used in combination with other drugs -03828465 06 n 03 nonsteroidal_anti-inflammatory 0 nonsteroidal_anti-inflammatory_drug 0 NSAID 0 022 @ 02721538 n 0000 ~ 03191967 n 0000 ~ 03192142 n 0000 ~ 03195118 n 0000 ~ 03300907 n 0000 ~ 03328392 n 0000 ~ 03371532 n 0000 ~ 03556281 n 0000 ~ 03568653 n 0000 ~ 03612134 n 0000 ~ 03612378 n 0000 ~ 03612559 n 0000 ~ 03739327 n 0000 ~ 03742531 n 0000 ~ 03804048 n 0000 ~ 03807895 n 0000 ~ 03808144 n 0000 ~ 03867515 n 0000 ~ 03948041 n 0000 ~ 04353410 n 0000 ~ 04449796 n 0000 ~ 15009843 n 0000 | an anti-inflammatory drug that does not contain steroids; "NSAIDs inhibit the activity of both Cox-1 and Cox-2 enzymes" -03829085 06 n 04 nontricyclic 0 nontricyclic_drug 0 nontricyclic_antidepressant 0 nontricyclic_antidepressant_drug 0 002 @ 02718811 n 0000 ~ 04476633 n 0000 | a class of antidepressant drugs that are not tricyclic drugs and do not act by inhibiting MAO -03829340 06 n 02 non-volatile_storage 0 nonvolatile_storage 0 005 @ 03744276 n 0000 ! 04539876 n 0201 ! 04539876 n 0101 ~ 03359436 n 0000 ~ 03706016 n 0000 | computer storage that is not lost when the power is turned off -03829563 06 n 03 noose 1 running_noose 0 slip_noose 0 007 @ 13875571 n 0000 #p 03491724 n 0000 #p 03644378 n 0000 + 01342124 v 0101 + 01673630 v 0101 ~ 03042984 n 0000 %p 04241042 n 0000 | a loop formed in a cord or rope by means of a slipknot; it binds tighter as the cord or rope is pulled -03829857 06 n 01 Norfolk_jacket 0 001 @ 03589791 n 0000 | loose-fitting single-breasted jacket -03829954 06 n 01 noria 0 001 @ 04563204 n 0000 | a water wheel with buckets attached to the rim; used to raise water for transfer to an irrigation channel -03830111 06 n 01 Norinyl 0 003 @ 03936895 n 0000 %s 14746417 n 0000 %s 14751216 n 0000 | trade name for an oral contraceptive containing norethindrone and mestranol -03830278 06 n 01 Norlestrin 0 003 @ 03936895 n 0000 %s 14746417 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norethindrone -03830448 06 n 01 Nor-Q-D 0 002 @ 03936895 n 0000 %s 14746417 n 0000 | trade name for an oral contraceptive containing norethindrone -03830582 06 n 02 nortriptyline 0 Pamelor 0 002 @ 04482543 n 0000 ;u 06845599 n 0201 | a tricyclic antidepressant drug (trade name Pamelor) used along with psychotherapy to treat dysthymic depression; may interact dangerously if taken with other drugs -03830835 06 n 01 nose 0 004 @ 03398467 n 0000 #p 02686568 n 0000 #p 03773504 n 0000 + 01994128 v 0101 | a front that resembles a human nose (especially the front of an aircraft); "the nose of the rocket heated up on reentry" -03831062 06 n 01 nose 2 001 @ 03398467 n 0000 | the front or forward projection of a tool or weapon; "he ducked under the nose of the gun" -03831203 06 n 02 nosebag 0 feedbag 0 001 @ 02773037 n 0000 | a canvas bag that is used to feed an animal (such as a horse); covers the muzzle and fastens at the top of the head -03831382 06 n 02 noseband 0 nosepiece 2 002 @ 04333129 n 0000 #p 02900160 n 0000 | a strap that is the part of a bridle that goes over the animal's nose -03831537 06 n 02 nose_cone 0 ogive 0 002 @ 03398467 n 0000 #p 03510072 n 0000 | front consisting of the conical head of a missile or rocket that protects the payload from heat during its passage through the atmosphere -03831757 06 n 01 nose_flute 0 001 @ 03372029 n 0000 | a flute that is played by blowing through the nostrils (used in some Asian countries) -03831899 06 n 01 nosepiece 1 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the nose -03832008 06 n 01 nose_ring 0 001 @ 03533972 n 0000 | a ring worn on the nose as an ornament or on the nose of an animal to control it -03832144 06 n 01 nosewheel 0 002 @ 04574999 n 0000 #p 03638883 n 0000 | a wheel located under the nose of an airplane that is part of the plane's landing gear -03832305 06 n 01 nostrum 0 001 @ 03898936 n 0000 | patent medicine whose efficacy is questionable -03832405 06 n 01 notch 0 006 @ 13908021 n 0000 + 01004550 v 0101 + 01276970 v 0101 ~ 04174705 n 0000 ~ 04431296 n 0000 ~ 04507891 n 0000 | a V-shaped or U-shaped indentation carved or scratched into a surface; "there were four notches in the handle of his revolver" -03832673 06 n 02 notebook 0 notebook_computer 0 002 @ 03985232 n 0000 ~ 03956785 n 0000 | a small compact portable computer -03832799 06 n 01 notion 0 002 @ 00022903 n 0000 ~ 04087899 n 0000 | (usually plural) small personal articles or clothing or sewing items; "buttons and needles are notions" -03832973 06 n 01 notions_counter 0 001 @ 03116530 n 0000 | counter where notions are sold -03833065 06 n 01 novel 0 003 @ 02870092 n 0000 + 10363573 n 0101 + 06368962 n 0101 | a printed and bound book that is an extended work of fiction; "his bookcases were filled with nothing but novels"; "he burned all the novels" -03833294 06 n 01 novillada 0 001 @ 02917163 n 0000 | a bullfight in which the bulls are less than four years old -03833409 06 n 01 novobiocin 0 001 @ 02716866 n 0000 | an antibiotic obtained from an actinomycete and used to treat infections by Gram-positive bacteria -03833564 06 n 02 nozzle 0 nose 1 005 @ 04287153 n 0000 #p 03843316 n 0000 #p 04289195 n 0000 #p 03422072 n 0000 ~ 04209383 n 0000 | a projecting spout from which a fluid is discharged -03833750 06 n 01 n-type_semiconductor 0 001 @ 04171831 n 0000 | a semiconductor in which electrical conduction is due chiefly to the movement of electrons -03833907 06 n 01 nuclear-powered_ship 0 001 @ 04194289 n 0000 | ship whose motive power comes from the energy of a nuclear reactor -03834040 06 n 02 nuclear_reactor 0 reactor 0 013 @ 02727825 n 0000 ;c 06090869 n 0000 ~ 02753710 n 0000 ~ 02896949 n 0000 %p 03098515 n 0000 %p 03107904 n 0000 ~ 03324629 n 0000 ~ 03422484 n 0000 ~ 03677115 n 0000 ~ 04420024 n 0000 ~ 04422409 n 0000 ~ 04559023 n 0000 %p 14727355 n 0000 | (physics) any of several kinds of apparatus that maintain and control a nuclear reaction for the production of energy or artificial elements -03834472 06 n 01 nuclear_rocket 0 001 @ 04099175 n 0000 | a rocket engine in which a nuclear reactor is used to heat a propellant -03834604 06 n 02 nuclear_weapon 0 atomic_weapon 0 005 @ 04565963 n 0000 ~ 02753044 n 0000 %p 02753881 n 0000 ~ 03553248 n 0000 ~ 03743422 n 0000 | a weapon of mass destruction whose explosive power derives from a nuclear reaction -03834836 06 n 02 nucleoside_reverse_transcriptase_inhibitor 0 NRTI 0 004 @ 04085365 n 0000 #p 03248560 n 0000 ~ 02765429 n 0000 ~ 03636062 n 0000 | an antiviral drug used against HIV; is incorporated into the DNA of the virus and stops the building process; results in incomplete DNA that cannot create a new virus; often used in combination with other drugs -03835197 06 n 02 nude 0 nude_painting 0 001 @ 03876519 n 0000 | a painting of a naked human figure -03835298 06 n 03 nude 1 nude_sculpture 0 nude_statue 0 001 @ 04306847 n 0000 | a statue of a naked human figure -03835412 06 n 01 number 0 001 @ 03748886 n 0000 | an item of merchandise offered for sale; "she preferred the black nylon number"; "this sweater is an all-wool number" -03835582 06 n 01 number_cruncher 0 001 @ 03082979 n 0000 | a computer capable of performing a large number of mathematical operations per second -03835729 06 n 03 numdah 0 numdah_rug 0 nammad 0 001 @ 04118021 n 0000 | an embroidered rug made from a coarse Indian felt -03835853 06 n 01 nunnery 0 001 @ 03099454 n 0000 | the convent of a community of nuns -03835941 06 n 01 nun's_habit 0 002 @ 03473966 n 0000 %p 03467380 n 0000 | a long loose habit worn by nuns in a convent -03836062 06 n 02 nursery 1 baby's_room 0 003 @ 03017070 n 0000 + 01186428 v 0104 ~ 03165466 n 0000 | a child's room for a baby -03836191 06 n 01 nut 0 007 @ 02852523 n 0000 #p 03836451 n 0000 ~ 03517427 n 0000 ~ 03684338 n 0000 ~ 04291912 n 0000 ~ 04345787 n 0000 ~ 04593185 n 0000 | a small (usually square or hexagonal) metal block with internal screw thread to be fitted onto a bolt -03836451 06 n 01 nut_and_bolt 0 003 @ 03323703 n 0000 %p 02865665 n 0000 %p 03836191 n 0000 | a fastener made by screwing a nut onto a threaded bolt -03836602 06 n 01 nutcracker 0 001 @ 03082127 n 0000 | a compound lever used to crack nuts open -03836699 06 n 01 nux_vomica 0 003 @ 03740161 n 0000 %s 14715008 n 0000 %s 14715189 n 0000 | a medicine made from the seeds of an Asiatic tree; contains strychnine and brucine; formerly used as a stimulant -03836906 06 n 01 nylon 0 001 @ 03309808 n 0000 | a synthetic fabric -03836976 06 n 05 nylons 0 nylon_stocking 0 rayons 0 rayon_stocking 0 silk_stocking 0 001 @ 04323819 n 0000 | women's stockings made from a sheer material (nylon or rayon or silk) -03837157 06 n 03 nystatin 0 Mycostatin 0 Nystan 0 004 @ 02720201 n 0000 @ 02716866 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an antifungal and antibiotic (trade names Mycostatin and Nystan) discovered in New York State; derived from soil fungi actinomycetes -03837422 06 n 01 oar 0 006 @ 03563967 n 0000 %p 02848523 n 0000 ~ 03873416 n 0000 ~ 04156814 n 0000 ~ 04156946 n 0000 ~ 04370955 n 0000 | an implement used to propel or steer a boat -03837606 06 n 01 oast 0 002 @ 03617095 n 0000 #p 03837698 n 0000 | a kiln for drying hops -03837698 06 n 01 oast_house 0 002 @ 03545150 n 0000 %p 03837606 n 0000 | a building containing an oast (a kiln for drying hops); usually has a conical or pyramidal roof -03837869 06 n 01 obelisk 0 002 @ 03074380 n 0000 ~i 04555101 n 0000 | a stone pillar having a rectangular cross section tapering towards a pyramidal top -03838024 06 n 01 object_ball 0 001 @ 02839351 n 0000 | the billiard ball that is intended to be the first ball struck by the cue ball -03838160 06 n 01 objectification 0 002 @ 04076846 n 0000 + 00532607 v 0105 | a concrete representation of an abstract idea or principle -03838298 06 n 04 objective 0 objective_lens 0 object_lens 0 object_glass 0 003 @ 03656484 n 0000 #p 03852688 n 0000 #p 03082280 n 0000 | the lens or system of lenses in a telescope or microscope that is nearest the object being viewed -03838535 06 n 03 objet_d'art 0 art_object 0 piece 4 002 @ 04601690 n 0000 ~ 04537816 n 0000 | a work of art of some artistic value; "this store sells only objets d'art"; "it is not known who created this piece" -03838748 06 n 01 oblique_bandage 0 002 @ 02785648 n 0000 ~ 04279858 n 0000 | a bandage in which successive turns proceed obliquely up or down a limb -03838899 06 n 03 oboe 0 hautboy 0 hautbois 0 007 @ 03228016 n 0000 + 10369317 n 0101 ~ 03510866 n 0000 ~ 03800485 n 0000 ~ 03839172 n 0000 ~ 03839276 n 0000 ~ 04186624 n 0000 | a slender double-reed instrument; a woodwind with a conical bore and a double-reed mouthpiece -03839172 06 n 01 oboe_da_caccia 0 001 @ 03838899 n 0000 | an alto oboe; precursor of the English horn -03839276 06 n 01 oboe_d'amore 0 001 @ 03838899 n 0000 | an oboe pitched a minor third lower than the ordinary oboe; used to perform baroque music -03839424 06 n 01 observation_dome 0 001 @ 03688943 n 0000 | lookout consisting of a dome-shaped observatory -03839534 06 n 01 observation_station 0 002 @ 04306080 n 0000 ~ 04133346 n 0000 | a station set up for making observations of something -03839671 06 n 01 observatory 0 001 @ 02913152 n 0000 | a building designed and equipped to observe astronomical phenomena -03839795 06 n 01 obstacle 0 004 @ 03839993 n 0000 ~ 03501152 n 0000 ~ 04345915 n 0000 ~ 04560882 n 0000 | an obstruction that stands in the way (and must be removed or surmounted or circumvented) -03839993 06 n 05 obstruction 0 obstructor 0 obstructer 0 impediment 0 impedimenta 1 011 @ 04341686 n 0000 + 01476483 v 0403 + 01476483 v 0301 + 01476483 v 0201 ~ 02789271 n 0000 ~ 02796623 n 0000 ~ 02853218 n 0000 ~ 02853449 n 0000 ~ 03520811 n 0000 ~ 03839795 n 0000 ~ 04497005 n 0000 | any structure that makes progress difficult -03840327 06 n 01 obturator 0 002 @ 04013729 n 0000 + 01476483 v 0102 | a prosthesis used to close an opening (as to close an opening of the hard palate in cases of cleft palate) -03840507 06 n 01 obverse 0 004 @ 04213626 n 0000 #p 13388245 n 0000 ! 04085181 n 0101 ~ 03501811 n 0000 | the side of a coin or medal bearing the principal stamp or design -03840681 06 n 02 ocarina 0 sweet_potato 0 001 @ 04586932 n 0000 | egg-shaped terra cotta wind instrument with a mouthpiece and finger holes -03840823 06 n 01 octant 0 002 @ 03733925 n 0000 %p 03668906 n 0000 | a measuring instrument for measuring angles to a celestial body; similar to a sextant but with 45 degree calibration -03841011 06 n 01 odd-leg_caliper 0 001 @ 02939866 n 0000 | caliper having the points on its legs both curve in the same direction -03841143 06 n 04 odometer 0 hodometer 0 mileometer 0 milometer 0 002 @ 03753077 n 0000 #p 03791235 n 0000 | a meter that shows mileage traversed -03841290 06 n 01 oeil_de_boeuf 0 001 @ 04587648 n 0000 | a circular or oval window; 17th or 18th century French architecture -03841417 06 n 03 oeuvre 0 work 2 body_of_work 0 002 @ 03287178 n 0000 ~ 06363778 n 0000 | the total output of a writer or artist (or a substantial part of it); "he studied the entire Wagnerian oeuvre"; "Picasso's work can be divided into periods" -03841666 06 n 02 office 0 business_office 0 010 @ 03953020 n 0000 #p 03842012 n 0000 ~ 02885882 n 0000 ~ 03118846 n 0000 ~ 03449858 n 0000 ~ 03504723 n 0000 ~ 03663433 n 0000 ~ 03680629 n 0000 ~ 03822504 n 0000 ~ 04196677 n 0000 | place of business where professional or clerical duties are performed; "he rented an office in the new building" -03842012 06 n 02 office_building 0 office_block 0 002 @ 02913152 n 0000 %p 03841666 n 0000 | a building containing offices where work is done -03842156 06 n 01 office_furniture 0 002 @ 03405725 n 0000 ~ 03337140 n 0000 | furniture intended for use in an office -03842276 06 n 01 officer's_mess 0 001 @ 03751065 n 0000 | a mess for the exclusive use of officers -03842377 06 n 02 off-line_equipment 0 auxiliary_equipment 0 002 @ 03278248 n 0000 #p 03085915 n 0000 | electronic equipment not in direct communication (or under the control of) the central processing unit -03842585 06 n 02 ogee 0 cyma_reversa 0 001 @ 03156990 n 0000 | a molding that (in section) has the shape of an S with the convex part above and the concave part below -03842754 06 n 02 ogee_arch 0 keel_arch 0 001 @ 03975035 n 0000 | a pointed arch having an S-shape on both sides -03842868 06 n 01 Ohio_State_University 0 002 @i 04511002 n 0000 #p 09131001 n 0000 | a university in Columbus, Ohio -03842986 06 n 01 ohmmeter 0 001 @ 03753077 n 0000 | a meter for measuring electrical resistance in ohms -03843092 06 n 03 oil 1 oil_color 0 oil_colour 0 001 @ 03844233 n 0000 | oil paint containing pigment that is used by an artist -03843221 06 n 02 oil_burner 0 oil_furnace 0 001 @ 03404449 n 0000 | a furnace that burns oil -03843316 06 n 01 oilcan 0 002 @ 02946921 n 0000 %p 03833564 n 0000 | a can with a long nozzle to apply oil to machinery -03843438 06 n 01 oilcloth 0 001 @ 03309808 n 0000 | cloth treated on one side with a drying oil or synthetic resin -03843555 06 n 01 oil_filter 0 002 @ 03339643 n 0000 #p 03695122 n 0000 | a filter that removes impurities from the oil used to lubricate an internal-combustion engine -03843724 06 n 02 oil_future 0 petroleum_future 0 001 @ 03408721 n 0000 | petroleum bought or sold at an agreed price for delivery at a specified future date -03843883 06 n 04 oil_heater 0 oilstove 0 kerosene_heater 0 kerosine_heater 0 001 @ 03508101 n 0000 | heater that burns oil (as kerosine) for heating or cooking -03844045 06 n 03 oil_lamp 0 kerosene_lamp 0 kerosine_lamp 0 004 @ 03636248 n 0000 %p 03636891 n 0000 ~ 04126852 n 0000 %p 04581829 n 0000 | a lamp that burns oil (as kerosine) for light -03844233 06 n 01 oil_paint 0 002 @ 03875218 n 0000 ~ 03843092 n 0000 | paint in which a drying oil is the vehicle -03844349 06 n 01 oil_painting 0 002 @ 03876519 n 0000 ~ 02954068 n 0000 | a picture painted with oil paints -03844459 06 n 01 oil_pipeline 0 001 @ 03946325 n 0000 | a pipeline used to transport oil -03844550 06 n 01 oil_pump 0 002 @ 04021798 n 0000 #p 03695122 n 0000 | a pump that keeps a supply of oil on moving parts -03844673 06 n 02 oil_refinery 0 petroleum_refinery 0 003 @ 04068441 n 0000 %p 02981565 n 0000 %p 04070003 n 0000 | a refinery for petroleum -03844815 06 n 02 oilskin 0 slicker 0 001 @ 03702719 n 0000 | a macintosh made from cotton fabric treated with oil and pigment to make it waterproof -03844965 06 n 01 oil_slick 0 001 @ 04237654 n 0000 | a thin film of oil floating on top of water (especially crude oil spilled from a ship) -03845107 06 n 01 oilstone 0 001 @ 04577426 n 0000 | a whetstone for use with oil -03845190 06 n 04 oil_tanker 0 oiler 0 tanker 0 tank_ship 0 003 @ 02965300 n 0000 + 14966667 n 0201 ~ 04359034 n 0000 | a cargo ship designed to carry crude oil in bulk -03845360 06 n 02 oil_well 0 oiler 1 006 @ 04572344 n 0000 + 14966667 n 0201 ~ 03471030 n 0000 ~ 04287351 n 0000 ~ 04340378 n 0000 ~ 04584639 n 0000 | a well that yields or has yielded oil -03845550 06 n 05 ointment 0 unction 0 unguent 0 balm 0 salve 0 014 @ 04074482 n 0000 ;c 06043075 n 0000 + 00085907 v 0501 ~ 02741981 n 0000 ~ 02766961 n 0000 ~ 02783790 n 0000 ~ 02970311 n 0000 ~ 02997773 n 0000 ~ 03026350 n 0000 ~ 03676006 n 0000 ~ 03746994 n 0000 ~ 03749409 n 0000 ~ 04615018 n 0000 %s 14816181 n 0000 | semisolid preparation (usually containing a medicine) applied externally as a remedy or for soothing an irritation -03845990 06 n 01 old_school_tie 0 001 @ 03815615 n 0000 | necktie indicating the school the wearer attended -03846100 06 n 01 olive_drab 0 002 @ 03309808 n 0000 #s 03846234 n 0000 | a cloth of an olive-brown color used for military uniforms -03846234 06 n 02 olive_drab 1 olive-drab_uniform 0 003 @ 03763968 n 0000 ;c 08199025 n 0000 %s 03846100 n 0000 | military uniform of the United States Army; made from cloth of a dull olive color -03846431 06 n 01 Olympian_Zeus 0 002 @ 04306847 n 0000 #m 04178329 n 0000 | a seated statue of the supreme god of ancient Greek mythology created for the temple at Olympia; the statue was 40 feet tall and rested on a base that was 12 feet high -03846677 06 n 02 omelet_pan 0 omelette_pan 0 001 @ 03880531 n 0000 | pan for cooking omelets -03846772 06 n 02 omnidirectional_antenna 0 nondirectional_antenna 0 003 @ 02715229 n 0000 ~ 04041747 n 0000 ~ 04404817 n 0000 | an antenna that sends or receives signals equally in all directions -03846970 06 n 03 omnirange 0 omnidirectional_range 0 omnidirectional_radio_range 0 001 @ 03811444 n 0000 | a navigational system consisting of a network of radio beacons that provide aircraft with information about exact position and bearing -03847214 06 n 01 one-spot 0 002 @ 03220802 n 0000 @ 03191029 n 0000 | a domino or die whose upward face shows one pip -03847334 06 n 01 one-way_street 0 001 @ 04335209 n 0000 | a street on which vehicular traffic is allowed to move in only one direction -03847471 06 n 01 onion_dome 0 001 @ 03220513 n 0000 | a dome that is shaped like a bulb; characteristic of Russian and Byzantine church architecture -03847622 06 n 01 op_art 0 001 @ 02669079 n 0000 | a style of abstractionism popular in the 1960s; produces dramatic visual effects with colors and contrasts that are difficult for the eye to resolve -03847823 06 n 03 open-air_market 0 open-air_marketplace 0 market_square 0 004 @ 03722288 n 0000 ~ 03322704 n 0000 ~ 04261281 n 0000 ~ 08571898 n 0000 | a public marketplace where food and merchandise is sold -03848033 06 n 01 open_circuit 0 002 @ 03033362 n 0000 ! 03048883 n 0101 | an incomplete electrical circuit in which no current flows -03848168 06 n 02 open-end_wrench 0 tappet_wrench 0 002 @ 04606574 n 0000 ~ 04374521 n 0000 | a wrench having parallel jaws at fixed separation (often on both ends of the handle) -03848348 06 n 01 opener 0 005 @ 03489162 n 0000 + 01346003 v 0101 ~ 02877962 n 0000 ~ 02951585 n 0000 ~ 03645411 n 0000 | a hand tool used for opening sealed containers (bottles or cans) -03848537 06 n 01 open-hearth_furnace 0 001 @ 03404449 n 0000 | a furnace for making steel in which the steel is placed on a shallow hearth and flames of burning gas and hot air play over it -03848729 06 n 01 opening 0 022 @ 00021939 n 0000 ~ 02727016 n 0000 ~ 02824858 n 0000 ~ 02895881 n 0000 ~ 03303965 n 0000 ~ 03373060 n 0000 ~ 03416329 n 0000 ~ 03469687 n 0000 ~ 03526198 n 0000 ~ 03576617 n 0000 ~ 03581531 n 0000 ~ 03697665 n 0000 ~ 03794392 n 0000 ~ 03814112 n 0000 ~ 03897130 n 0000 ~ 03984908 n 0000 ~ 04241940 n 0000 ~ 04287153 n 0000 ~ 04428920 n 0000 ~ 04582454 n 0000 ~ 04588365 n 0000 ~ 04588986 n 0000 | a vacant or unobstructed space that is man-made; "they left a small opening for the cat at the bottom of the door" -03849275 06 n 02 openside_plane 0 rabbet_plane 0 002 @ 03954731 n 0000 ~ 03158796 n 0000 | a woodworking plane designed to cut rabbets -03849412 06 n 01 open_sight 0 001 @ 03470387 n 0000 | rear gunsight having an open notch instead of a peephole or telescope -03849538 06 n 01 open_weave 0 001 @ 04568298 n 0000 | a weave in which warp threads never come together, leaving interstices in the fabric -03849679 06 n 01 openwork 0 001 @ 04599396 n 0000 | ornamental work (such as embroidery or latticework) having a pattern of openings -03849814 06 n 02 opera 0 opera_house 0 002 @ 04417809 n 0000 + 02912383 a 0101 | a building where musical dramas are performed -03849943 06 n 02 opera_cloak 0 opera_hood 0 001 @ 03045337 n 0000 | a large cloak worn over evening clothes -03850053 06 n 01 operating_microscope 0 001 @ 02841506 n 0000 | binocular microscope used in surgery to provide a clear view of small and inaccessible parts of the body (as in microsurgery) -03850245 06 n 05 operating_room 0 OR 0 operating_theater 0 operating_theatre 0 surgery 0 001 @ 03541091 n 0000 | a room in a hospital equipped for the performance of surgical operations; "great care is taken to keep the operating rooms aseptic" -03850492 06 n 01 operating_table 0 001 @ 04379243 n 0000 | table on which the patient lies during a surgical operation -03850613 06 n 01 ophthalmoscope 0 002 @ 03739693 n 0000 ~ 03857291 n 0000 | medical instrument for examining the retina of the eye -03850746 06 n 01 opiate 0 007 @ 03808564 n 0000 ~ 03062461 n 0000 ~ 03328650 n 0000 ~ 03516011 n 0000 ~ 03647108 n 0000 ~ 03786417 n 0000 %s 03850966 n 0000 | a narcotic drug that contains opium or an opium derivative -03850966 06 n 01 opium 0 003 @ 03808564 n 0000 @ 03097890 n 0000 #s 03850746 n 0000 | an addictive narcotic extracted from seed capsules of the opium poppy -03851124 06 n 01 opium_den 0 001 @ 02913152 n 0000 | a building where opium is sold and used -03851219 06 n 01 optical_bench 0 001 @ 02727825 n 0000 | apparatus for observation and measurement of optical phenomena -03851341 06 n 01 optical_device 0 020 @ 03183080 n 0000 ~ 02759257 n 0000 ~ 02842684 n 0000 ~ 02943465 n 0000 ~ 03062798 n 0000 ~ 03070587 n 0000 ~ 03194538 n 0000 ~ 03194812 n 0000 ~ 03340723 n 0000 ~ 03611314 n 0000 ~ 03643253 n 0000 ~ 03656484 n 0000 ~ 03823906 n 0000 ~ 03955941 n 0000 ~ 03976105 n 0000 ~ 04005340 n 0000 ~ 04009801 n 0000 ~ 04098260 n 0000 ~ 04316498 n 0000 ~ 04534651 n 0000 | a device for producing or controlling light -03851787 06 n 02 optical_disk 0 optical_disc 0 003 @ 03744840 n 0000 ~ 03079230 n 0000 ~ 04533946 n 0000 | a disk coated with plastic that can store digital data as tiny pits etched in the surface; is read with a laser that scans the surface -03852031 06 n 04 optical_fiber 0 glass_fiber 0 optical_fibre 0 glass_fibre 0 003 @ 14866889 n 0000 #p 03331599 n 0000 #p 03332005 n 0000 | a very thin fiber made of glass that functions as a waveguide for light; used in bundles to transmit images -03852280 06 n 01 optical_instrument 0 010 @ 03574816 n 0000 ~ 02841315 n 0000 ~ 03296963 n 0000 ~ 03597147 n 0000 %p 03656484 n 0000 ~ 03917048 n 0000 ~ 04009552 n 0000 ~ 04216963 n 0000 ~ 04272054 n 0000 ~ 04273064 n 0000 | an instrument designed to aid vision -03852544 06 n 02 optical_pyrometer 0 pyroscope 0 001 @ 04029734 n 0000 | a pyrometer that uses the color of the light emitted by a hot object -03852688 06 n 01 optical_telescope 0 005 @ 02751295 n 0000 %p 03309465 n 0000 %p 03838298 n 0000 ~ 04068601 n 0000 ~ 04070207 n 0000 | an astronomical telescope designed to collect and record light from cosmic sources -03852908 06 n 01 oracle 0 002 @ 04210390 n 0000 ~i 04407844 n 0000 | a shrine where an oracular god is consulted -03853023 06 n 01 orange_grove 0 001 @ 03463832 n 0000 | grove of orange trees -03853103 06 n 01 orb_web 0 001 @ 04275363 n 0000 | a circular spider web -03853178 06 n 01 orchestra 0 002 @ 04162998 n 0000 #p 04417809 n 0000 | seating on the main floor in a theater -03853291 06 n 02 orchestra_pit 0 pit 3 002 @ 02735688 n 0000 #p 04417809 n 0000 | lowered area in front of a stage where an orchestra accompanies the performers -03853454 06 n 02 OR_circuit 0 OR_gate 0 001 @ 03427656 n 0000 | a gate circuit in a computer that fires when any of its inputs fire -03853588 06 n 01 order_book 0 001 @ 02870092 n 0000 | a book in which customers' orders are entered; usually makes multiple copies of the order -03853734 06 n 01 ordinary 0 005 @ 03008565 n 0000 ;c 05801594 n 0000 ~ 02830013 n 0000 ~ 03330120 n 0000 ~ 06795290 n 0000 | (heraldry) any of several conventional figures used on shields -03853924 06 n 02 ordinary 1 ordinary_bicycle 0 001 @ 02834778 n 0000 | an early bicycle with a very large front wheel and small back wheel -03854065 06 n 02 organ 0 pipe_organ 0 008 @ 03614532 n 0000 @ 04586932 n 0000 + 10382825 n 0101 %p 03614007 n 0000 %p 03854815 n 0000 %p 03903424 n 0000 %p 03928814 n 0000 %p 04327324 n 0000 | wind instrument whose sound is produced by means of pipes arranged in sets supplied with air from a bellows and controlled from a large complex musical keyboard -03854421 06 n 02 organdy 0 organdie 0 001 @ 03802393 n 0000 | a sheer stiff muslin -03854506 06 n 02 organic_light-emitting_diode 0 OLED 0 001 @ 03666362 n 0000 | a self-luminous diode (it glows when an electrical field is applied to the electrodes) that does not require backlighting or diffusers -03854722 06 n 01 organ_loft 0 001 @ 03411544 n 0000 | a gallery occupied by a church organ -03854815 06 n 03 organ_pipe 0 pipe 3 pipework 0 005 @ 04586932 n 0000 #p 03854065 n 0000 ~ 03369011 n 0000 ~ 03854998 n 0000 ~ 04067143 n 0000 | the flues and stops on a pipe organ -03854998 06 n 01 organ_stop 0 007 @ 03854815 n 0000 ~ 03188416 n 0000 ~ 03254625 n 0000 ~ 03369178 n 0000 ~ 04067231 n 0000 ~ 04263950 n 0000 ~ 04542474 n 0000 | a graduated set of organ pipes of like tone quality -03855214 06 n 01 organza 0 001 @ 03309808 n 0000 | a fabric made of silk or a silklike fabric that resembles organdy -03855333 06 n 02 oriel 0 oriel_window 0 001 @ 02813399 n 0000 | a projecting bay window corbeled or cantilevered out from a wall -03855464 06 n 01 oriflamme 0 002 @ 04301140 n 0000 ;r 08929922 n 0000 | a red or orange-red flag used as a standard by early French kings -03855604 06 n 01 O_ring 0 001 @ 03423719 n 0000 | a gasket consisting of a flat ring of rubber or plastic; used to seal a joint against high pressure -03855756 06 n 01 Orlon 0 002 @ 02677028 n 0000 ;u 06851742 n 0000 | an acrylic fiber or the lightweight crease-resistant fabric made with Orlon yarns -03855908 06 n 03 orlop_deck 0 orlop 0 fourth_deck 0 001 @ 03167666 n 0000 | the fourth or lowest deck -03856012 06 n 02 orphanage 0 orphans'_asylum 0 002 @ 03574555 n 0000 + 02315277 v 0101 | a public institution for the care of orphans -03856148 06 n 02 orphenadrine 0 Norflex 0 002 @ 03800001 n 0000 ;u 06845599 n 0201 | a skeletal muscle relaxant (trade name Norflex) used to treat severe muscle strain and Parkinsonism -03856335 06 n 01 orphrey 0 002 @ 03265479 n 0000 #p 04532106 n 0000 | a richly embroidered edging on an ecclesiastical vestment -03856465 06 n 01 orrery 0 001 @ 03955809 n 0000 | planetarium consisting of an apparatus that illustrates the relative positions and motions of bodies in the solar system by rotation and revolution of balls moved by wheelwork; sometimes incorporated in a clock -03856728 06 n 02 orthicon 0 image_orthicon 0 001 @ 04405309 n 0000 | a now obsolete picture pickup tube in a television camera; electrons emitted from a photoemissive surface in proportion to the intensity of the incident light are focused onto the target causing secondary emission of electrons -03857026 06 n 01 orthochromatic_film 0 001 @ 03338821 n 0000 | a photographic film sensitive to green and blue and violet light -03857156 06 n 02 orthopter 0 ornithopter 0 001 @ 03510583 n 0000 | heavier-than-air craft that is propelled by the flapping of wings -03857291 06 n 01 orthoscope 0 001 @ 03850613 n 0000 | an ophthalmoscope with a layer of water to neutralize the refraction of the cornea -03857430 06 n 01 oscillator 0 003 @ 03434285 n 0000 ~ 03143754 n 0000 ~ 03681813 n 0000 | generator that produces sonic oscillations or alternating current -03857588 06 n 01 oscillogram 0 001 @ 04063661 n 0000 | the recording produced by an oscillograph -03857687 06 n 01 oscillograph 0 001 @ 04063373 n 0000 | a device for making a record of the wave forms of fluctuating voltages or currents -03857828 06 n 04 oscilloscope 0 scope 1 cathode-ray_oscilloscope 0 CRO 0 005 @ 03278248 n 0000 #p 04039848 n 0000 #p 02962938 n 0000 #p 03782190 n 0000 %p 02985137 n 0000 | electronic equipment that provides visual images of varying electrical quantities -03858085 06 n 01 ossuary 0 001 @ 04060904 n 0000 | any receptacle for the burial of human bones -03858183 06 n 03 otoscope 0 auriscope 0 auroscope 0 001 @ 03739693 n 0000 | medical instrument consisting of a magnifying lens and light; used for examining the external ear (the auditory meatus and especially the tympanic membrane) -03858418 06 n 05 ottoman 0 pouf 0 pouffe 0 puff 2 hassock 1 001 @ 04161981 n 0000 | thick cushion used as a seat -03858533 06 n 01 oubliette 0 001 @ 03256928 n 0000 | a dungeon with the only entrance or exit being a trap door in the ceiling -03858662 06 n 02 Ouija 0 Ouija_board 0 002 @ 02857023 n 0000 %p 03954507 n 0000 | a board with the alphabet on it; used with a planchette to spell out supernatural messages -03858837 06 n 02 out-basket 0 out-tray 0 002 @ 04060904 n 0000 ! 03565830 n 0101 | a wood or metal receptacle placed on your desk to hold your outgoing material -03859000 06 n 02 outboard_motor 0 outboard 0 003 @ 03579982 n 0000 + 01291391 a 0201 %p 04154152 n 0000 | internal-combustion engine that mounts at stern of small boat -03859170 06 n 02 outboard_motorboat 0 outboard 1 001 @ 03790230 n 0000 | a motorboat with an outboard motor -03859280 06 n 01 outbuilding 0 006 @ 02913152 n 0000 ~ 03055857 n 0000 ~ 03416489 n 0000 ~ 03610524 n 0000 ~ 03860404 n 0000 ~ 04187547 n 0000 | a building that is subordinate to and separate from a main building -03859495 06 n 02 outerwear 0 overclothes 0 002 @ 03051540 n 0000 ~ 03450516 n 0000 | clothing for use outdoors -03859608 06 n 01 outfall 0 001 @ 03303965 n 0000 | the outlet of a river or drain or other source of water -03859717 06 n 01 outfield 0 007 @ 08673395 n 0000 #p 02780916 n 0000 + 10386984 n 0101 ! 02799593 n 0103 %p 02994219 n 0000 %p 03654374 n 0000 %p 04091839 n 0000 | the area of a baseball playing field beyond the lines connecting the bases -03859958 06 n 04 outfit 1 getup 0 rig 2 turnout 2 008 @ 02756098 n 0000 + 02340360 v 0401 + 00044149 v 020d + 02339413 v 0104 ~ 02834506 n 0000 ~ 03289985 n 0000 ~ 03964611 n 0000 ~ 04489695 n 0000 | a set of clothing (with accessories); "his getup was exceedingly elegant" -03860234 06 n 01 outfitter 0 001 @ 04202417 n 0000 | a shop that provides equipment for some specific purpose; "an outfitter provided everything needed for the safari" -03860404 06 n 04 outhouse 0 privy 0 earth-closet 0 jakes 0 001 @ 03859280 n 0000 | a small outbuilding with a bench having holes through which a user can defecate -03860569 06 n 01 outlet_box 0 002 @ 04061442 n 0000 ;c 11449907 n 0000 | (electricity) receptacle consisting of the metal box designed for connections to a wiring system -03860741 06 n 01 outpost 0 002 @ 03763403 n 0000 ;c 08199025 n 0000 | a military post stationed at a distance from the main body of troops -03860882 06 n 03 output 1 outturn 0 turnout 0 004 @ 04007894 n 0000 + 01623792 v 0301 + 01622795 v 0101 ~ 04429756 n 0000 | what is produced in a given time period -03861048 06 n 01 output_device 0 001 @ 03916720 n 0000 | electronic or electromechanical equipment connected to a computer and used to transfer data out of the computer in the form of text, images, sounds, or other media -03861271 06 n 01 outrigger 0 002 @ 04294212 n 0000 #p 03861430 n 0000 | a stabilizer for a canoe; spars attach to a shaped log or float parallel to the hull -03861430 06 n 01 outrigger_canoe 0 002 @ 02951358 n 0000 %p 03861271 n 0000 | a seagoing canoe (as in South Pacific) with an outrigger to prevent it from upsetting -03861596 06 n 01 outside_caliper 0 001 @ 02939866 n 0000 | caliper for measuring outside dimensions; points on its legs curve inward -03861731 06 n 01 outside_clinch 0 001 @ 03042984 n 0000 | a clinch with the end of the line outside the loop -03861842 06 n 01 outside_mirror 0 001 @ 02965783 n 0000 | car mirror that reflects the view at side and behind car -03861959 06 n 05 outsider_art 0 self-taught_art 0 vernacular_art 0 naive_art 0 primitive_art 0 001 @ 03434943 n 0000 | a genre of art and outdoor constructions made by untrained artists who do not recognize themselves as artists -03862190 06 n 01 outsole 0 003 @ 04258982 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 | the outer sole of a shoe or boot that is the bottom of the shoe and makes contact with the ground -03862379 06 n 01 outwork 0 001 @ 03171356 n 0000 | subsidiary defensive structure lying outside the main fortified area; "the outworks of the castle" -03862531 06 n 01 Oval_Office 0 002 @i 03449858 n 0000 #p 04580777 n 0000 | the office of the President of the United States in the White House -03862676 06 n 01 oven 0 006 @ 03620052 n 0000 ~ 02905036 n 0000 ~ 03259280 n 0000 ~ 03425241 n 0000 ~ 04111531 n 0000 ~ 04388473 n 0000 | kitchen appliance used for baking or roasting -03862862 06 n 01 oven_thermometer 0 001 @ 04421872 n 0000 | a thermometer that registers the temperature inside an oven -03862984 06 n 01 ovenware 0 001 @ 03133538 n 0000 | heat-resistant dishware in which food can be cooked as well as served -03863108 06 n 01 overall 0 001 @ 04600912 n 0000 | (usually plural) work clothing consisting of denim trousers (usually with a bib and shoulder straps) -03863262 06 n 03 overall 2 boilersuit 0 boilers_suit 0 002 @ 03121897 n 0000 ;r 08860123 n 0000 | a loose protective coverall or smock worn over ordinary clothing for dirty work -03863442 06 n 02 overcast 0 overcasting 0 005 @ 04578559 n 0000 + 01330269 v 0201 + 01330093 v 0201 + 01330093 v 0101 + 01330269 v 0101 | a long whipstitch or overhand stitch overlying an edge to prevent raveling -03863657 06 n 02 overcoat 1 overcoating 0 001 @ 03058107 n 0000 | an additional protective coating (as of paint or varnish) -03863783 06 n 01 overdrive 0 001 @ 03518631 n 0000 | a high gear used at high speeds to maintain the driving speed with less output power -03863923 06 n 02 overgarment 0 outer_garment 0 007 @ 03419014 n 0000 ! 04508163 n 0101 ~ 02666079 n 0000 ~ 03045337 n 0000 ~ 03057021 n 0000 ~ 03588216 n 0000 ~ 04252560 n 0000 | a garment worn over other garments -03864139 06 n 01 overhand_knot 0 001 @ 03627232 n 0000 | a simple small knot (often used as part of other knots) -03864254 06 n 01 overhand_stitch 0 001 @ 04180314 n 0000 | a stitch passing over an edge vertically -03864356 06 n 01 overhang 0 005 @ 04008947 n 0000 + 02697435 v 0101 + 02713748 v 0101 ~ 03263076 n 0000 ~ 03321672 n 0000 | projection that extends beyond or hangs over something else -03864542 06 n 01 overhead 0 003 @ 02990373 n 0000 #p 02932227 n 0000 ;c 00314469 n 0000 | (nautical) the top surface of an enclosed space on a ship -03864692 06 n 01 overhead_projector 0 001 @ 04009552 n 0000 | a projector operated by a speaker; projects the image over the speaker's head -03864834 06 n 01 overlay 1 002 @ 03650173 n 0000 @ 03169390 n 0000 | a layer of decorative material (such as gold leaf or wood veneer) applied over a surface -03864994 06 n 02 overload 0 overburden 0 006 @ 03679986 n 0000 + 01487718 v 0201 + 00750842 v 0201 + 01488555 v 0101 + 00182037 v 0102 + 01488847 v 0101 | an excessive burden -03865171 06 n 01 overload 2 001 @ 03679986 n 0000 | an electrical load that exceeds the available electrical power -03865288 06 n 01 overmantel 0 001 @ 04190052 n 0000 | a shelf over a mantelpiece -03865371 06 n 03 overnighter 0 overnight_bag 0 overnight_case 0 002 @ 02773838 n 0000 ~ 04518764 n 0000 | a small traveling bag to carry clothing and accessories for staying overnight -03865557 06 n 02 overpass 0 flyover 0 001 @ 02898711 n 0000 | bridge formed by the upper level of a crossing of two highways at different levels -03865704 06 n 02 overprint 0 surprint 0 002 @ 04003597 n 0000 + 01748273 v 0101 | something added by overprinting -03865820 06 n 01 override 0 001 @ 03183080 n 0000 | a manually operated device to correct the operation of an automatic device -03865949 06 n 01 overshoe 0 002 @ 03380867 n 0000 ~ 02735538 n 0000 | footwear that protects your shoes from water or snow or cold -03866082 06 n 01 overskirt 0 001 @ 04230808 n 0000 | an outer skirt worn over another skirt -03866176 06 n 02 over-the-counter_drug 0 over-the-counter_medicine 0 003 @ 03740161 n 0000 ! 03999280 n 0203 ! 03999280 n 0101 | a drug that is sold without a prescription -03866350 06 n 02 over-the-counter_market 0 OTC_market 0 001 @ 04323026 n 0000 | a stock exchange where securities transactions are made via telephone and computer rather than on the floor of an exchange -03866555 06 n 01 Ovocon 0 003 @ 03936895 n 0000 %s 14746417 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norethindrone -03866721 06 n 03 ovolo 0 thumb 1 quarter_round 0 002 @ 03780392 n 0000 ~ 03263640 n 0000 | a convex molding having a cross section in the form of a quarter of a circle or of an ellipse -03866908 06 n 01 Ovral 0 003 @ 03936895 n 0000 %s 14747007 n 0000 %s 14750316 n 0000 | trade name for an oral contraceptive containing estradiol and norgestrel -03867070 06 n 01 Ovrette 0 002 @ 03936895 n 0000 %s 14747007 n 0000 | trade name for an oral contraceptive containing norgestrel -03867201 06 n 01 Ovulen 0 002 @ 03936895 n 0000 %s 14751216 n 0000 | trade name for an oral contraceptive containing mestranol and a progestin compound -03867355 06 n 01 oxacillin 0 001 @ 03910417 n 0000 | a form of penicillin resistant to penicillinase and effective against penicillin-resistant staphylococci -03867515 06 n 02 oxaprozin 0 Daypro 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14862753 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Daypro) -03867675 06 n 02 oxazepam 0 Serax 0 002 @ 03771443 n 0000 ;u 06845599 n 0201 | a tranquilizing drug (trade name Serax) used to treat anxiety and insomnia and alcohol withdrawal -03867854 06 n 01 oxbow 0 001 @ 03391770 n 0000 | a wooden framework bent in the shape of a U; its upper ends are attached to the horizontal yoke and the loop goes around the neck of an ox -03868044 06 n 01 Oxbridge 0 002 @ 04511002 n 0000 ;r 08860123 n 0000 | general term for an ancient and prestigious and privileged university (especially Oxford University or Cambridge University) -03868242 06 n 01 oxcart 0 001 @ 02970849 n 0000 | a cart that is drawn by an ox -03868324 06 n 01 oxeye 0 001 @ 03224753 n 0000 | an oval or round dormer window -03868406 06 n 01 oxford 0 002 @ 04199027 n 0000 ~ 04124370 n 0000 | a low shoe laced over the instep -03868509 06 n 02 Oxford_University 0 Oxford 1 003 @i 04511002 n 0000 #p 08877807 n 0000 + 03095813 a 0201 | a university in England -03868643 06 n 01 oximeter 0 001 @ 03733925 n 0000 | a measuring instrument that measures the oxygen in arterial blood -03868763 06 n 01 oxyacetylene_torch 0 001 @ 02855390 n 0000 | a blowtorch that burns oxyacetylene -03868863 06 n 01 oxygen_mask 0 002 @ 02895606 n 0000 #p 02731629 n 0000 | a breathing device that is placed over the mouth and nose; supplies oxygen from an attached storage tank -03869044 06 n 02 oxyphenbutazone 0 Tandearil 0 002 @ 02721538 n 0000 ;u 06845599 n 0201 | an anti-inflammatory drug (trade name Tandearil) used to treat arthritis and bursitis -03869222 06 n 02 oxyphencyclimine 0 Daricon 0 002 @ 02717901 n 0000 ;u 06845599 n 0201 | an anticholinergic drug (trade name Daricon) used in treating peptic ulcers -03869389 06 n 04 oxytetracycline 0 hydroxytetracycline 0 oxytetracycline_hydrochloride 0 Terramycin 0 002 @ 02716866 n 0000 ;u 06851742 n 0401 | a yellow crystalline antibiotic (trademark Terramycin) obtained from a soil actinomycete; used to treat various bacterial and rickettsial infections -03869685 06 n 02 oxytocic 0 oxytocic_drug 0 001 @ 03740161 n 0000 | a drug that induces labor by stimulating contractions of the muscles of the uterus -03869838 06 n 01 oyster_bar 0 001 @ 02789487 n 0000 | a bar (as in a restaurant) that specializes in oysters prepared in different ways -03869976 06 n 03 oyster_bed 0 oyster_bank 0 oyster_park 0 001 @ 04602044 n 0000 | a workplace where oysters are bred and grown -03870105 06 n 01 pace_car 0 002 @ 02958343 n 0000 ;c 00449517 n 0000 | a high-performance car that leads a parade of competing cars through the pace lap and then pulls off the course -03870290 06 n 02 pacemaker 0 artificial_pacemaker 0 001 @ 03277771 n 0000 | an implanted electronic device that takes over the function of the natural cardiac pacemaker -03870461 06 n 01 pacifier 1 001 @ 04424418 n 0000 | anything that serves to pacify -03870546 06 n 01 pack 0 002 @ 03871083 n 0000 + 01482449 v 0101 | a convenient package or parcel (as of cigarettes or film) -03870672 06 n 01 pack 2 004 @ 02919414 n 0000 + 01483131 v 0101 + 01926031 v 0102 + 01451176 v 0101 | a bundle (especially one carried on the back) -03870822 06 n 01 pack 3 002 @ 03111899 n 0000 + 00108909 v 0101 | a sheet or blanket (either dry or wet) to wrap around the body for its therapeutic effect -03870980 06 n 02 pack 4 face_pack 0 001 @ 03111899 n 0000 | a cream that cleanses and tones the skin -03871083 06 n 02 package 0 parcel 0 006 @ 03094503 n 0000 + 01283746 v 0201 + 01485158 v 0102 ~ 02919414 n 0000 ~ 03870546 n 0000 ~ 03871628 n 0000 | a wrapped container -03871255 06 n 01 packaged_goods 0 002 @ 03461119 n 0000 ;u 06295235 n 0000 | groceries that are packaged for sale -03871371 06 n 03 package_store 0 liquor_store 0 off-licence 0 001 @ 04202417 n 0000 | a store that sells alcoholic beverages for consumption elsewhere -03871524 06 n 01 packaging 0 002 @ 03729951 n 0000 ~ 02852360 n 0000 | material used to make packages -03871628 06 n 01 packet 0 002 @ 03871083 n 0000 ~ 03167978 n 0000 | a small package or bundle -03871724 06 n 02 packing_box 1 packing_case 0 001 @ 03127925 n 0000 | a large crate in which goods are packed for shipment or storage -03871860 06 n 02 packinghouse 0 packing_plant 0 001 @ 03956922 n 0000 | a plant where livestock are slaughtered and processed and packed as meat products -03872016 06 n 01 packinghouse 1 001 @ 02913152 n 0000 | a building where foodstuffs are processed and packed; "they came from an apple packinghouse" -03872167 06 n 01 packing_needle 0 001 @ 03816136 n 0000 | a large needle used to sew up canvas packages -03872273 06 n 01 packsaddle 0 001 @ 04123740 n 0000 | a saddle for pack animals to which loads can be attached -03872386 06 n 01 packthread 0 001 @ 04337974 n 0000 | a strong three-ply twine used to sew or tie packages -03872495 06 n 01 pad 0 016 @ 03873064 n 0000 + 00321486 v 0101 + 01526956 v 0101 ~ 02967626 n 0000 ~ 03040229 n 0000 ~ 03728131 n 0000 ~ 03731164 n 0000 ~ 03731590 n 0000 ~ 03882346 n 0000 ~ 03958910 n 0000 ~ 03992115 n 0000 ~ 03994874 n 0000 ~ 04055030 n 0000 ~ 04135315 n 0000 ~ 04380801 n 0000 ~ 04470741 n 0000 | a flat mass of soft material used for protection, stuffing, or comfort -03872885 06 n 04 pad 5 inkpad 0 inking_pad 0 stamp_pad 0 001 @ 02852523 n 0000 | a block of absorbent material saturated with ink; used to transfer ink evenly to a rubber stamp -03873064 06 n 02 padding 0 cushioning 0 011 @ 00021939 n 0000 + 01576917 v 0201 + 01526956 v 0101 + 00321486 v 0101 ~ 03151500 n 0000 ~ 03319653 n 0000 ~ 03872495 n 0000 ~ 04345458 n 0000 %s 14870078 n 0000 %s 14925776 n 0000 %s 14959939 n 0000 | artifact consisting of soft or resilient material used to fill or give shape or protect or add comfort -03873416 06 n 02 paddle 0 boat_paddle 0 002 @ 03837422 n 0000 + 01947887 v 0101 | a short light oar used without an oarlock to propel a canoe or small boat -03873574 06 n 01 paddle 1 002 @ 03575958 n 0000 + 01420928 v 0102 | an instrument of punishment consisting of a flat board -03873699 06 n 01 paddle 2 004 @ 02848523 n 0000 #p 03767203 n 0000 #p 03874293 n 0000 + 01419373 v 0101 | a blade of a paddle wheel or water wheel -03873848 06 n 01 paddle 3 002 @ 02806379 n 0000 ~ 04381724 n 0000 | small wooden bat with a flat surface; used for hitting balls in various games -03873996 06 n 02 paddle_box 0 paddle-box 0 002 @ 03122748 n 0000 #p 03874293 n 0000 | a wooden covering for the upper part of a paddlewheel -03874138 06 n 02 paddle_steamer 0 paddle-wheeler 0 003 @ 04309348 n 0000 ~ 04215800 n 0000 ~ 04317063 n 0000 | a steam vessel propelled by paddle wheels -03874293 06 n 02 paddlewheel 0 paddle_wheel 0 003 @ 04574999 n 0000 %p 03873699 n 0000 %p 03873996 n 0000 | a large wheel fitted with paddles and driven by an engine in order to propel a boat -03874487 06 n 01 paddock 0 001 @ 03907227 n 0000 | pen where racehorses are saddled and paraded before a race -03874599 06 n 01 padlock 0 003 @ 03682487 n 0000 + 01342012 v 0101 %p 04181561 n 0000 | a detachable lock; has a hinged shackle that can be passed through the staple of a hasp or the links in a chain and then snapped shut -03874823 06 n 02 page_printer 0 page-at-a-time_printer 0 002 @ 04004475 n 0000 ~ 04608809 n 0000 | a printer that prints one page at a time -03874965 06 n 01 pagoda 0 001 @ 04407435 n 0000 | an Asian temple; usually a pyramidal tower with an upward curving roof -03875088 06 n 02 paillasse 0 palliasse 0 001 @ 03731164 n 0000 | mattress consisting of a thin pad filled with straw or sawdust -03875218 06 n 02 paint 0 pigment 0 019 @ 03058107 n 0000 @ 14984973 n 0000 + 01363482 v 0101 + 01684663 v 0101 + 01362736 v 0101 + 01684899 v 0101 ~ 02677136 n 0000 ~ 02720048 n 0000 ~ 03058949 n 0000 ~ 03212698 n 0000 ~ 03284886 n 0000 ~ 03285578 n 0000 ~ 03342015 n 0000 ~ 03546112 n 0000 ~ 03844233 n 0000 ~ 04172230 n 0000 ~ 04287898 n 0000 ~ 04557308 n 0000 %s 14989820 n 0000 | a substance used as a coating to protect or decorate a surface (especially a mixture of pigment suspended in a liquid); dries to form a hard coating; "artists use `paint' and `pigment' interchangeably" -03875806 06 n 01 paintball 0 001 @ 02957755 n 0000 | a capsule filled with water-soluble dye used as a projectile in playing the game of paintball -03875955 06 n 01 paintball_gun 0 002 @ 02689274 n 0000 @ 03414162 n 0000 | an air gun used in the game of paintball; designed to simulate a semiautomatic -03876111 06 n 01 paintbox 0 001 @ 02883344 n 0000 | a box containing a collection of cubes or tubes of artists' paint -03876231 06 n 01 paintbrush 0 002 @ 02908217 n 0000 @ 02730265 n 0000 | a brush used as an applicator (to apply paint) -03876352 06 n 01 painter 0 002 @ 03670849 n 0000 ;c 02858304 n 0000 | a line that is attached to the bow of a boat and used for tying up (as when docking or towing) -03876519 06 n 02 painting 0 picture 1 026 @ 03453809 n 0000 + 02861617 a 0202 + 01686956 v 0201 + 01688256 v 0202 + 01684899 v 0101 + 01684663 v 0101 ~ 02669001 n 0000 ~ 03036149 n 0000 ~ 03164532 n 0000 ~ 03212535 n 0000 ~ 03342127 n 0000 ~ 03558971 n 0000 ~ 03640166 n 0000 ~ 03769397 n 0000 ~ 03783304 n 0000 ~ 03799710 n 0000 ~ 03835197 n 0000 ~ 03844349 n 0000 ~ 03912929 n 0000 ~ 04134862 n 0000 ~ 04161233 n 0000 ~ 04171373 n 0000 ~ 04319432 n 0000 ~ 04389340 n 0000 ~ 04487576 n 0000 ~ 04558578 n 0000 | graphic art consisting of an artistic composition made by applying paints to a surface; "a small painting by Picasso"; "he bought the painting as an investment"; "his pictures hang in the Louvre" -03877229 06 n 01 paint_roller 0 001 @ 04101497 n 0000 | a roller that has an absorbent surface used for spreading paint -03877351 06 n 01 paisley 0 001 @ 03309808 n 0000 | a soft wool fabric with a colorful swirled pattern of curved shapes -03877472 06 n 04 pajama 0 pyjama 0 pj's 0 jammies 0 002 @ 03825080 n 0000 ~ 04235771 n 0000 | (usually plural) loose-fitting nightclothes worn for sleeping or lounging; have a jacket top and trousers -03877674 06 n 02 pajama 2 pyjama 2 001 @ 04489008 n 0000 | a pair of loose trousers tied by a drawstring around the waist; worn by men and women in some Asian countries -03877845 06 n 01 palace 0 007 @ 04079244 n 0000 + 03096141 a 0101 ~ 02695627 n 0000 ~i 02696669 n 0000 ~i 03645866 n 0000 ~i 04496173 n 0000 ~i 04529486 n 0000 | official residence of an exalted person (as a sovereign) -03878066 06 n 02 palace 1 castle 2 004 @ 03719053 n 0000 + 01286093 a 0101 %p 03457008 n 0000 ~i 08875843 n 0000 | a large and stately mansion -03878211 06 n 01 palace 2 001 @ 03303831 n 0000 | a large ornate exhibition hall -03878294 06 n 02 palanquin 0 palankeen 0 001 @ 03678362 n 0000 | a closed litter carried on the shoulders of four bearers -03878418 06 n 01 paleolith 0 001 @ 04451818 n 0000 | a stone tool from the Paleolithic age -03878511 06 n 02 palestra 0 palaestra 0 001 @ 08570758 n 0000 | a public place in ancient Greece or Rome devoted to the training of wrestlers and other athletes -03878674 06 n 02 palette 0 pallet 1 001 @ 02856463 n 0000 | board that provides a flat surface on which artists mix paints and the range of colors used -03878828 06 n 01 palette_knife 0 001 @ 04269944 n 0000 | a spatula used by artists for mixing or applying or scraping off oil paints -03878963 06 n 01 palisade 0 002 @ 03385557 n 0000 + 01130607 v 0102 | fortification consisting of a strong fence made of stakes driven into the ground -03879116 06 n 05 pall 1 shroud 0 cerement 0 winding-sheet 0 winding-clothes 0 005 @ 02922159 n 0000 + 02749768 v 0201 + 01582200 v 0201 + 01300437 v 0201 + 01335588 v 0101 | burial garment in which a corpse is wrapped -03879336 06 n 01 pallet 0 001 @ 03731164 n 0000 | a mattress filled with straw or a pad made of quilts; used as a bed -03879456 06 n 01 pallet 2 001 @ 03489162 n 0000 | a hand tool with a flat blade used by potters for mixing and shaping clay -03879582 06 n 01 pallet 3 001 @ 03961939 n 0000 | a portable platform for storing or moving goods that are stacked on it -03879705 06 n 02 pallette 0 palette 1 002 @ 02740764 n 0000 #p 02862048 n 0000 | one of the rounded armor plates at the armpits of a suit of armor -03879854 06 n 03 palliative 0 alleviant 0 alleviator 0 004 @ 04074482 n 0000 + 00064095 v 0302 + 00064095 v 0202 + 01341153 a 0106 | remedy that alleviates pain without curing -03880032 06 n 01 pallium 0 001 @ 03045337 n 0000 | cloak or mantle worn by men in ancient Rome -03880129 06 n 01 pallium 1 002 @ 04532106 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) vestment consisting of a band encircling the shoulders with two lappets hanging in front and back -03880323 06 n 01 pan 0 008 @ 03094503 n 0000 + 01536508 v 0101 ~ 02776007 n 0000 ~ 03207548 n 0000 ~ 03242264 n 0000 %p 03882960 n 0000 ~ 03883664 n 0000 ~ 04551833 n 0000 | shallow container made of metal -03880531 06 n 02 pan 1 cooking_pan 0 008 @ 03101986 n 0000 ~ 03242390 n 0000 ~ 03400231 n 0000 ~ 03846677 n 0000 ~ 03900301 n 0000 ~ 04097760 n 0000 ~ 04138977 n 0000 ~ 04596742 n 0000 | cooking utensil consisting of a wide metal vessel -03880770 06 n 04 panacea 0 nostrum 1 catholicon 0 cure-all 0 002 @ 04074482 n 0000 ~ 07883384 n 0000 | hypothetical remedy for all ills or diseases; once sought by the alchemists -03880951 06 n 01 panache 0 001 @ 03969998 n 0000 | a feathered plume on a helmet -03881034 06 n 01 Panama_Canal 0 002 @i 04196337 n 0000 #p 08739206 n 0000 | a ship canal 40 miles long across the Isthmus of Panama built by the United States (1904-1914) -03881207 06 n 03 panatela 0 panetela 0 panetella 0 001 @ 03030035 n 0000 | a long slender cigar -03881305 06 n 01 pancake_turner 0 001 @ 04500060 n 0000 | turner for serving or turning pancakes -03881404 06 n 01 panchromatic_film 0 001 @ 03338821 n 0000 | photographic film sensitive to light of all colors (including red) -03881534 06 n 01 panda_car 0 002 @ 03141065 n 0000 ;r 08860123 n 0000 | a police cruiser -03881625 06 n 01 Pandora's_box 0 002 @i 03014705 n 0000 ;c 07979425 n 0000 | (Greek mythology) a box that Zeus gave to Pandora with instructions that she not open it; she gave in to her curiosity and opened it; all the miseries and evils flew out to afflict mankind -03881893 06 n 03 pane 0 pane_of_glass 0 window_glass 0 003 @ 03961070 n 0000 #p 04587648 n 0000 ~ 04589745 n 0000 | sheet glass cut in shapes for windows or doors -03882058 06 n 01 panel 0 009 @ 04188643 n 0000 + 01678519 v 0101 ~ 03064443 n 0000 ~ 03379461 n 0000 ~ 03502200 n 0000 ~ 03882611 n 0000 ~ 04543996 n 0000 ~ 04544138 n 0000 ~ 04588587 n 0000 | sheet that forms a distinct (usually flat and rectangular) section or component of something -03882346 06 n 01 panel 2 001 @ 03872495 n 0000 | a soft pad placed under a saddle -03882430 06 n 01 panel_heating 0 001 @ 03509025 n 0000 | heating system consisting of wall or floor or baseboard or ceiling panels containing electric conductors or heating pipes -03882611 06 n 03 paneling 0 panelling 0 pane 1 008 @ 03882058 n 0000 #p 04546855 n 0000 #p 04371979 n 0000 #p 03307274 n 0000 #p 04239074 n 0000 + 01678519 v 0201 + 01678519 v 0101 ~ 04548503 n 0000 | a panel or section of panels in a wall or door -03882861 06 n 01 panel_light 0 001 @ 03665366 n 0000 | a light to illuminate an instrument panel -03882960 06 n 01 panhandle 0 002 @ 03485997 n 0000 #p 03880323 n 0000 | the handle of a pan -03883054 06 n 01 panic_button 0 001 @ 04027023 n 0000 | a button to push in order to summon help in case of an emergency; "the circuit is operated by a panic button"; "when he saw that I was angry he hit the panic button" -03883278 06 n 01 pannier 0 001 @ 03534429 n 0000 | set of small hoops used to add fullness over the hips -03883385 06 n 01 pannier 1 001 @ 04582349 n 0000 | a large basket (usually one of a pair) carried by a beast of burden or on by a person -03883524 06 n 01 pannier 2 001 @ 02773037 n 0000 | either of a pair of bags or boxes hung over the rear wheel of a vehicle (as a bicycle) -03883664 06 n 01 pannikin 0 002 @ 03880323 n 0000 ;r 08860123 n 0000 | a small pan or cup (usually of tin) -03883773 06 n 01 panopticon 0 001 @ 04005630 n 0000 | a circular prison with cells distributed around a central surveillance station; proposed by Jeremy Bentham in 1791 -03883944 06 n 01 panopticon 1 003 @ 02735688 n 0000 + 02516785 a 0102 ~ 04209811 n 0000 | an area where everything is visible -03884072 06 n 03 panorama 0 cyclorama 0 diorama 0 002 @ 03931044 n 0000 + 02561123 a 0102 | a picture (or series of pictures) representing a continuous scene -03884232 06 n 01 panoramic_sight 0 001 @ 03470387 n 0000 | gunsight (a telescopic device for an artillery piece) that can be rotated horizontally in a full circle -03884397 06 n 03 panpipe 0 pandean_pipe 0 syrinx 0 001 @ 03945615 n 0000 | a primitive wind instrument consisting of several parallel pipes bound together -03884554 06 n 01 pantaloon 0 001 @ 04489008 n 0000 | trousers worn in former times -03884639 06 n 01 pantechnicon 1 002 @ 03796401 n 0000 ;r 08860123 n 0000 | a large moving van (especially one used for moving furniture) -03884778 06 n 01 pantheon 0 004 @ 04407435 n 0000 ;r 08780881 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (antiquity) a temple to all the gods -03884926 06 n 01 pantheon 1 001 @ 03743902 n 0000 | a monument commemorating a nation's dead heroes -03885028 06 n 04 pantie 0 panty 0 scanty 0 step-in 0 002 @ 04508489 n 0000 ;u 06295235 n 0000 | short underpants for women or children (usually used in the plural) -03885194 06 n 02 panting 0 trousering 0 001 @ 03309808 n 0000 | any fabric used to make trousers -03885293 06 n 02 pant_leg 0 trouser_leg 0 002 @ 03654576 n 0000 #p 04489008 n 0000 | the leg of a pair of trousers -03885410 06 n 01 pantograph 0 001 @ 03736970 n 0000 | mechanical device used to copy a figure or plan on a different scale -03885535 06 n 03 pantry 0 larder 0 buttery 1 002 @ 04329477 n 0000 ~ 04319545 n 0000 | a small storeroom for storing foods or wines -03885669 06 n 02 pants_suit 0 pantsuit 0 001 @ 04233832 n 0000 | a pair of pants and a matching jacket worn by women -03885788 06 n 01 panty_girdle 0 001 @ 03112869 n 0000 | a woman's undergarment that combines a girdle and panties -03885904 06 n 01 pantyhose 0 003 @ 04434932 n 0000 %p 04323819 n 0000 %p 04508489 n 0000 | a woman's tights consisting of underpants and stockings -03886053 06 n 01 panzer 0 002 @ 04389033 n 0000 ;r 08766988 n 0000 | an armored vehicle or tank -03886151 06 n 01 papal_cross 0 001 @ 03135152 n 0000 | a cross with three crossbars -03886237 06 n 02 papaverine 0 Kavrin 0 002 @ 03800001 n 0000 ;u 06845599 n 0201 | an alkaloid medicine (trade name Kavrin) obtained from opium; used to relax smooth muscles; it is nonaddictive -03886432 06 n 07 paperback_book 0 paper-back_book 0 paperback 0 softback_book 0 softback 0 soft-cover_book 0 soft-cover 0 003 @ 02870092 n 0000 + 00257232 a 0301 ~ 03973170 n 0000 | a book with paper covers -03886641 06 n 01 paper_chain 0 001 @ 02999410 n 0000 | a chain made of loops of colored paper; used to decorate a room -03886762 06 n 03 paper_clip 0 paperclip 0 gem_clip 0 001 @ 03043958 n 0000 | a wire or plastic clip for holding sheets of paper together; "the paper clip was invented in 1900" -03886940 06 n 01 paper_cutter 0 001 @ 03154446 n 0000 | a cutting implement for cutting sheets of paper to the desired size -03887066 06 n 01 paper_doll 0 001 @ 03219135 n 0000 | a piece of paper cut or folded into the shape of a human being -03887185 06 n 01 paper_fastener 0 003 @ 03323703 n 0000 ~ 04303095 n 0000 ~ 04431745 n 0000 | a fastener for holding a sheet of paper in place -03887330 06 n 01 paper_feed 0 001 @ 03183080 n 0000 | a device for inserting sheets of paper into a printer or typewriter; "the job was delayed because the paper feed was clogged" -03887512 06 n 01 paper_mill 0 001 @ 03316406 n 0000 | a mill where paper is manufactured -03887603 06 n 01 paper_plate 0 001 @ 03959485 n 0000 | a disposable plate made of cardboard -03887697 06 n 01 paper_towel 0 001 @ 04459362 n 0000 | a disposable towel made of absorbent paper -03887797 06 n 01 paperweight 0 001 @ 04571088 n 0000 | a weight used to hold down a stack of papers -03887899 06 n 01 parabolic_mirror 0 002 @ 03888022 n 0000 #p 04068601 n 0000 | a parabolic reflector for light radiation -03888022 06 n 02 parabolic_reflector 0 paraboloid_reflector 0 002 @ 04069276 n 0000 ~ 03887899 n 0000 | a concave reflector used to produce a parallel beam when the source is placed at its focus or to focus an incoming parallel beam -03888257 06 n 02 parachute 0 chute 1 012 @ 04077734 n 0000 + 01968275 v 0201 + 10397482 n 0101 + 01968275 v 0102 %p 02952109 n 0000 ~ 03245271 n 0000 ~ 03245421 n 0000 %p 03495039 n 0000 ~ 03889726 n 0000 %p 04093915 n 0000 %p 04210723 n 0000 %p 04305641 n 0000 | rescue equipment consisting of a device that fills with air and retards your fall -03888605 06 n 02 parallel_bars 0 bars 0 004 @ 03472232 n 0000 ;u 06295235 n 0000 %p 02790154 n 0000 ~ 04509260 n 0000 | gymnastic apparatus consisting of two parallel wooden rods supported on uprights -03888808 06 n 02 parallel_circuit 0 shunt_circuit 0 001 @ 03048883 n 0000 | a closed circuit in which the current divides into two or more paths before recombining to complete the circuit -03888998 06 n 02 parallel_interface 0 parallel_port 0 001 @ 03578656 n 0000 | an interface between a computer and a printer where the computer sends multiple bits of information to the printer simultaneously -03889208 06 n 01 paramagnet 0 002 @ 03705379 n 0000 + 03002617 a 0101 | magnet made of a substance whose magnetization is proportional to the strength of the magnetic field applied to it -03889397 06 n 01 parang 0 001 @ 03623556 n 0000 | a stout straight knife used in Malaysia and Indonesia -03889503 06 n 02 parapet 0 breastwork 0 002 @ 03385557 n 0000 ~ 03699754 n 0000 | fortification consisting of a low wall -03889626 06 n 01 parapet 1 001 @ 04546855 n 0000 | a low wall along the edge of a roof or balcony -03889726 06 n 01 parasail 0 001 @ 03888257 n 0000 | parachute that will lift a person up into the air when it is towed by a motorboat or a car -03889871 06 n 02 parasol 0 sunshade 1 001 @ 04181718 n 0000 | a handheld collapsible source of shade -03889974 06 n 02 paregoric 0 camphorated_tincture_of_opium 0 001 @ 03740161 n 0000 | medicine used to treat diarrhea -03890093 06 n 02 parer 0 paring_knife 0 002 @ 03623556 n 0000 + 01262936 v 0103 | a small sharp knife used in paring fruits or vegetables -03890233 06 n 01 parfait_glass 0 001 @ 03438257 n 0000 | a tall slender glass with a short stem in which parfait is served -03890358 06 n 03 pargeting 0 pargetting 0 pargetry 0 004 @ 03957567 n 0000 + 01361561 v 0301 + 01361561 v 0201 + 01361561 v 0101 | ornamental plasterwork -03890514 06 n 05 pari-mutuel_machine 0 totalizer 1 totaliser 1 totalizator 0 totalisator 0 001 @ 03082979 n 0000 | computer that registers bets and divides the total amount bet among those who won -03890713 06 n 03 Paris_University 0 University_of_Paris 0 Sorbonne 0 002 @i 04511002 n 0000 #p 08932568 n 0000 | a university in Paris; intellectual center of France -03890881 06 n 01 park 1 003 @ 03431243 n 0000 + 01934427 v 0101 + 01493380 v 0101 | a gear position that acts as a parking brake; "the put the car in park and got out" -03891051 06 n 04 parka 0 windbreaker 0 windcheater 0 anorak 0 004 @ 03589791 n 0000 ;r 08860123 n 0000 ~ 02937010 n 0000 ~ 04230387 n 0000 | a kind of heavy jacket (`windcheater' is a British term) -03891251 06 n 01 park_bench 0 001 @ 02828884 n 0000 | a bench in a public park -03891332 06 n 01 parking_meter 0 001 @ 04438304 n 0000 | a coin-operated timer located next to a parking space; depositing money into it entitles you to park your car there for a specified length of time -03891538 06 n 02 parlor 0 parlour 0 001 @ 04061793 n 0000 | reception room in an inn or club where visitors can be received -03891664 06 n 05 parlor_car 0 parlour_car 0 drawing-room_car 0 palace_car 0 chair_car 0 001 @ 03895866 n 0000 | a passenger car for day travel; you pay extra fare for individual chairs -03891851 06 n 02 paroxetime 0 Paxil 0 002 @ 04169152 n 0000 ;u 06845599 n 0201 | a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Paxil) -03892035 06 n 01 parquet 0 002 @ 04162998 n 0000 #p 04417809 n 0000 | seating on the main floor between the orchestra and the parquet circle -03892178 06 n 02 parquet 1 parquet_floor 0 001 @ 03365592 n 0000 | a floor made of parquetry -03892273 06 n 02 parquet_circle 0 parterre 0 002 @ 04162998 n 0000 #p 04417809 n 0000 | seating at the rear of the main floor (beneath the balconies) -03892425 06 n 02 parquetry 0 parqueterie 0 002 @ 03572449 n 0000 @ 03366823 n 0000 | a patterned wood inlay used to cover a floor -03892557 06 n 03 parsonage 0 vicarage 0 rectory 0 002 @ 04079244 n 0000 ~ 03439348 n 0000 | an official residence provided by a church for its parson or vicar or rector -03892728 06 n 01 Parsons_table 0 001 @ 04379243 n 0000 | a sturdy rectangular table with block legs at the four corners; the top and the legs are the same width -03892891 06 n 02 part 0 portion 0 031 @ 00002684 n 0000 #p 00003553 n 0000 + 00524693 a 0101 ~ 02728763 n 0000 ~ 02845002 n 0000 ~ 02877865 n 0000 ~ 02915480 n 0000 ~ 02927399 n 0000 ~ 03081021 n 0000 ~ 03153681 n 0000 ~ 03375443 n 0000 ~ 03382533 n 0000 ~ 03385420 n 0000 ~ 03390207 n 0000 ~ 03511786 n 0000 ~ 03547658 n 0000 ~ 03596639 n 0000 ~ 03669094 n 0000 ~ 03814348 n 0000 ~ 03905053 n 0000 ~ 03932203 n 0000 ~ 04000867 n 0000 ~ 04162599 n 0000 ~ 04164989 n 0000 ~ 04183663 n 0000 ~ 04277980 n 0000 ~ 04444345 n 0000 ~ 04500866 n 0000 ~ 04515630 n 0000 ~ 04515729 n 0000 ~ 04606358 n 0000 | something less than the whole of a human artifact; "the rear part of the house"; "glue the two parts together" -03893603 06 n 01 parterre 1 001 @ 03368637 n 0000 | an ornamental flower garden; beds and paths are arranged to form a pattern -03893732 06 n 01 Parthenon 0 002 @i 04407435 n 0000 #p 08785343 n 0000 | the main temple of the goddess Athena; built on the acropolis in Athens more than 400 years B.C.; example of Doric architecture -03893935 06 n 01 partial_denture 0 001 @ 03176386 n 0000 | a denture replacing one or more teeth in a dental arch -03894051 06 n 01 particle_detector 0 004 @ 03003730 n 0000 ~ 02909165 n 0000 ~ 03052628 n 0000 ~ 04268418 n 0000 | a chamber in which particles can be made visible -03894217 06 n 02 partisan 0 partizan 0 001 @ 03935450 n 0000 | a pike with a long tapering double-edged blade with lateral projections; 16th and 17th centuries -03894379 06 n 02 partition 0 divider 0 009 @ 04341686 n 0000 + 02621853 v 0202 + 02467662 v 0201 + 01563724 v 0101 + 00332835 v 0101 ~ 02893269 n 0000 ~ 02915675 n 0000 ~ 04152387 n 0000 ~ 04546855 n 0000 | a vertical structure that divides or separates (as a wall divides one room from another) -03894677 06 n 01 parts_bin 0 001 @ 02839910 n 0000 | a bin for holding spare parts -03894762 06 n 04 party_favor 0 party_favour 0 favor 0 favour 0 002 @ 03610270 n 0000 ~ 03125352 n 0000 | souvenir consisting of a small gift given to a guest at a party -03894933 06 n 01 party_line 0 001 @ 04402057 n 0000 | a telephone line serving two or more subscribers -03895038 06 n 01 party_wall 0 001 @ 04547592 n 0000 | a wall erected on the line between two properties and shared by both owners -03895170 06 n 01 parvis 0 001 @ 03120198 n 0000 | a courtyard or portico in front of a building (especially a cathedral) -03895293 06 n 01 passage 0 011 @ 04564698 n 0000 ~ 02680512 n 0000 ~ 02694182 n 0000 ~ 03006105 n 0000 ~ 03089014 n 0000 ~ 03146449 n 0000 ~ 03352484 n 0000 ~ 03895585 n 0000 ~ 04092013 n 0000 ~ 04182514 n 0000 ~ 04428763 n 0000 | a way through or along which someone or something may pass -03895585 06 n 01 passageway 0 011 @ 03895293 n 0000 ~ 02693860 n 0000 ~ 02733378 n 0000 ~ 02736396 n 0000 ~ 03112099 n 0000 ~ 03239399 n 0000 ~ 03415749 n 0000 ~ 03427909 n 0000 ~ 04182890 n 0000 ~ 04497962 n 0000 ~ 04546734 n 0000 | a passage between rooms or between buildings -03895866 06 n 03 passenger_car 0 coach 1 carriage 1 008 @ 02959942 n 0000 #m 03896233 n 0000 ~ 03200357 n 0000 ~ 03828020 n 0000 ~ 03891664 n 0000 ~ 04020912 n 0000 ~ 04236001 n 0000 ~ 04246855 n 0000 | a railcar where passengers ride -03896103 06 n 01 passenger_ship 0 003 @ 04194289 n 0000 %p 03549732 n 0000 ~ 03673027 n 0000 | a ship built to carry passengers -03896233 06 n 01 passenger_train 0 006 @ 04468005 n 0000 %m 02775039 n 0000 ~ 02917067 n 0000 ~ 03078802 n 0000 %p 03116008 n 0000 %m 03895866 n 0000 | a train that carries passengers -03896419 06 n 01 passenger_van 0 002 @ 04520170 n 0000 ~ 03770679 n 0000 | a van that carries passengers -03896526 06 n 01 passe-partout 1 001 @ 03793186 n 0000 | a mounting for a picture using gummed tape -03896628 06 n 01 passive_matrix_display 0 002 @ 03676759 n 0000 ~ 03252787 n 0000 | a type of LCD display used for some portable computers; parallel wires run both vertically and horizontally and pixels are turned on when the wires intersecting at that pixel are both energized; "passive matrix displays are generally inferior to active matrix displays" -03896984 06 n 04 passkey 0 passe-partout 0 master_key 0 master 1 002 @ 03613294 n 0000 ~ 04226826 n 0000 | key that secures entrance everywhere -03897130 06 n 01 pass-through 0 001 @ 03848729 n 0000 | an opening that resembles a window between two rooms (especially a shelved opening between a kitchen and dining room that is used to pass dishes) -03897334 06 n 01 paste-up 0 002 @ 03081660 n 0000 ~ 03067912 n 0000 | a composition of flat objects pasted on a board or other backing; "they showed him a paste-up of the book jacket" -03897520 06 n 01 pastiche 0 001 @ 04601690 n 0000 | a work of art that imitates the style of some previous work -03897634 06 n 01 pastry_cart 0 001 @ 04176068 n 0000 | a serving cart for displaying pastry desserts to restaurant patrons -03897759 06 n 01 pasty 0 001 @ 03897943 n 0000 | (usually used in the plural) one of a pair of adhesive patches worn to cover the nipples of exotic dancers and striptease performers -03897943 06 n 01 patch 0 005 @ 03932670 n 0000 + 01590171 v 0101 ~ 03358380 n 0000 ~ 03897759 n 0000 ~ 04208065 n 0000 | a piece of cloth used as decoration or to mend or cover a hole -03898129 06 n 01 patchcord 0 001 @ 04594489 n 0000 | a length of wire that has a plug at each end; used to make connections at a patchboard -03898271 06 n 03 patchouli 0 patchouly 0 pachouli 0 001 @ 03916031 n 0000 | a heavy perfume made from the patchouli plant -03898395 06 n 01 patch_pocket 0 001 @ 03972524 n 0000 | a flat pocket sewn to the outside of a garment -03898500 06 n 01 patchwork 0 001 @ 04179385 n 0000 | sewing consisting of pieces of different materials sewn together in a pattern -03898633 06 n 02 patchwork 1 patchwork_quilt 0 002 @ 04033995 n 0000 ~ 03128427 n 0000 | a quilt made by sewing patches of different materials together -03898787 06 n 03 patent_log 0 screw_log 0 taffrail_log 0 001 @ 03686658 n 0000 | a cigar-shaped log with rotary fins that measure the ship's speed -03898936 06 n 01 patent_medicine 0 002 @ 03740161 n 0000 ~ 03832305 n 0000 | medicine that is protected by a patent and available without a doctor's prescription -03899100 06 n 01 paternoster 0 002 @ 03281145 n 0000 ;r 08860123 n 0000 | a type of lift having a chain of open compartments that move continually in an endless loop so that (agile) passengers can step on or off at each floor -03899328 06 n 01 path 0 007 @ 04564698 n 0000 ~ 02900459 n 0000 ~ 03137228 n 0000 ~ 03640660 n 0000 ~ 03899533 n 0000 ~ 04461570 n 0000 ~ 04544979 n 0000 | a way especially designed for a particular use -03899533 06 n 02 pathway 0 footpath 0 001 @ 03899328 n 0000 | a trodden path -03899612 06 n 01 patina 0 004 @ 03058107 n 0000 + 01265499 v 0101 + 01265499 v 0102 ~ 04528079 n 0000 | a fine coating of oxide on the surface of a metal -03899768 06 n 02 patio 0 terrace 0 004 @ 02735688 n 0000 #p 03417749 n 0000 + 02226380 v 0201 ~ 04357639 n 0000 | usually paved outdoor area adjoining a residence -03899933 06 n 01 patisserie 0 001 @ 02776631 n 0000 | a bakery specializing in French pastry -03900028 06 n 01 patka 0 001 @ 04143897 n 0000 | a scarf worn by Sikh men -03900104 06 n 01 patriarchal_cross 0 001 @ 03135152 n 0000 | a cross with two crossbars -03900194 06 n 02 patrol_boat 0 patrol_ship 0 001 @ 04530566 n 0000 | a vessel assigned to patrol an area -03900301 06 n 01 patty-pan 0 001 @ 03880531 n 0000 | a pan for cooking patties or pasties -03900393 06 n 01 pave 0 001 @ 03792526 n 0000 | a setting with precious stones so closely set that no metal shows -03900509 06 n 01 paved_surface 0 008 @ 03536348 n 0000 ~ 02731123 n 0000 ~ 03900750 n 0000 ~ 04097527 n 0000 ~ 04120842 n 0000 ~ 04229195 n 0000 ~ 04394630 n 0000 ~ 04396466 n 0000 | a level horizontal surface covered with paving material -03900750 06 n 02 pavement 0 paving 0 008 @ 03900509 n 0000 #s 04096066 n 0000 #s 04334599 n 0000 #s 04215402 n 0000 + 01267098 v 0201 + 01267098 v 0101 ~ 03149531 n 0000 %s 03901074 n 0000 | the paved surface of a thoroughfare -03900979 06 n 02 pavilion 0 marquee 1 001 @ 04411264 n 0000 | large and often sumptuous tent -03901074 06 n 01 paving_stone 0 005 @ 04326084 n 0000 #s 03900750 n 0000 ~ 03059528 n 0000 ~ 03149686 n 0000 ~ 03355339 n 0000 | a stone used for paving -03901229 06 n 03 pavior 0 paviour 0 paving_machine 0 001 @ 03699975 n 0000 | a machine for laying pavement -03901338 06 n 02 pavis 0 pavise 0 002 @ 04192698 n 0000 ;c 15259284 n 0000 | (Middle Ages) a large heavy oblong shield protecting the whole body; originally carried but sometimes set up in permanent position -03901548 06 n 04 pawl 0 detent 0 click 0 dog 0 002 @ 02982790 n 0000 #p 04055180 n 0000 | a hinged catch that fits into a notch of a ratchet to move a wheel forward or prevent it from moving backward -03901750 06 n 01 pawn 0 002 @ 03014440 n 0000 ;c 00503237 n 0000 | (chess) the least powerful piece; moves only forward and captures only to the side; it can be promoted to a more powerful piece if it reaches the 8th rank -03901974 06 n 03 pawnbroker's_shop 0 pawnshop 0 loan_office 1 001 @ 04202417 n 0000 | a shop where loans are made with personal property as security -03902125 06 n 02 pay-phone 0 pay-station 0 001 @ 04401088 n 0000 | a coin-operated telephone -03902220 06 n 01 PC_board 0 002 @ 03033986 n 0000 #p 03918480 n 0000 | a removable circuit board for a personal computer; fits into a slot in the mother board -03902381 06 n 01 peacekeeper 0 001 @ 03948459 n 0000 | the pistol of a law officer in the old West -03902482 06 n 01 peach_orchard 0 001 @ 03463832 n 0000 | a grove of peach trees -03902564 06 n 01 peacock-throne 0 001 @ 04429376 n 0000 | the golden throne of former kings of Delhi; stolen by the Persians in 1739 and subsequently lost; symbol of the former Shah of Iran -03902756 06 n 02 pea_jacket 0 peacoat 0 001 @ 03589791 n 0000 | a sailor's heavy woolen double-breasted jacket -03902869 06 n 01 pearl_fishery 0 001 @ 03350880 n 0000 | a fishery where they fish for pearl oysters -03902972 06 n 01 pea_shooter 0 002 @ 04493505 n 0000 @ 03964744 n 0000 | a straight narrow tube through which pellets (as dried peas) can be blown at a target -03903133 06 n 04 peavey 0 peavy 0 cant_dog 0 dog_hook 0 002 @ 03659292 n 0000 ~ 02952935 n 0000 | a stout lever with a sharp spike; used for handling logs -03903290 06 n 02 pectoral 0 pectoral_medallion 0 002 @ 02681518 n 0000 + 02860389 a 0101 | an adornment worn on the chest or breast -03903424 06 n 04 pedal 0 treadle 0 foot_pedal 0 foot_lever 0 011 @ 03659292 n 0000 #p 03854065 n 0000 #p 03791235 n 0000 #p 02834778 n 0000 + 01225461 v 0201 + 01935476 v 0104 ~ 02670683 n 0000 ~ 02890804 n 0000 ~ 03055159 n 0000 ~ 04257223 n 0000 ~ 04367011 n 0000 | a lever that is operated with the foot -03903733 06 n 02 pedal_pusher 0 toreador_pants 0 001 @ 04489008 n 0000 | snug trousers ending at the calves; worn by women and girls -03903868 06 n 03 pedestal 1 plinth 0 footstall 0 004 @ 04360501 n 0000 #p 03073977 n 0000 %p 03158668 n 0000 ~ 04255499 n 0000 | an architectural support or base (as for a column or statue) -03904060 06 n 01 pedestal_table 0 002 @ 04379243 n 0000 ~ 04436012 n 0000 | a table supported by a single central column -03904183 06 n 02 pedestrian_crossing 0 zebra_crossing 0 004 @ 03137228 n 0000 ;u 08860123 n 0204 ~ 03906590 n 0000 ~ 04146721 n 0000 | street crossing where pedestrians have right of way; often marked in some way (especially with diagonal stripes) -03904433 06 n 02 pedicab 0 cycle_rickshaw 0 001 @ 04482393 n 0000 | a tricycle (usually propelled by pedalling); used in the Orient for transporting passengers for hire; "boys who once pulled rickshaws now pedal pedicabs" -03904657 06 n 01 pediment 0 001 @ 03409393 n 0000 | a triangular gable between a horizontal entablature and a sloping roof -03904782 06 n 01 pedometer 0 001 @ 03733925 n 0000 | measuring instrument for recording the number of steps taken in walking -03904909 06 n 01 peeler 0 002 @ 03183080 n 0000 + 01262936 v 0102 | a device for peeling vegetables or fruits; "she invented a potato peeler" -03905053 06 n 01 peen 0 002 @ 03892891 n 0000 #p 03482128 n 0000 | the part of a hammerhead opposite the flat striking surface (may have various shapes) -03905208 06 n 03 peephole 0 spyhole 0 eyehole 1 002 @ 03526198 n 0000 ~ 03603119 n 0000 | a hole (in a door or an oven etc) through which you can peep -03905361 06 n 01 peep_sight 0 001 @ 03470387 n 0000 | rear gunsight having an adjustable eyepiece with a small aperture through which the front sight and the target are aligned -03905540 06 n 02 peg 0 nog 1 006 @ 03940256 n 0000 + 01340283 v 0101 + 01442203 v 0101 ~ 04399537 n 0000 ~ 04412300 n 0000 ~ 04478066 n 0000 | a wooden pin pushed or driven into a surface -03905730 06 n 06 peg 1 pin 3 thole 0 tholepin 0 rowlock 0 oarlock 0 002 @ 03525454 n 0000 #p 03199901 n 0000 | a holder attached to the gunwale of a boat that holds the oar in place and acts as a fulcrum for rowing -03905947 06 n 01 peg 2 002 @ 04072193 n 0000 #p 04338517 n 0000 | regulator that can be turned to regulate the pitch of the strings of a stringed instrument -03906106 06 n 04 peg 3 wooden_leg 0 leg 2 pegleg 0 001 @ 04013729 n 0000 | a prosthesis that replaces a missing leg -03906224 06 n 01 pegboard 0 001 @ 02857023 n 0000 | a board perforated with regularly spaced holes into which pegs can be fitted -03906355 06 n 01 peg_top 0 001 @ 04454240 n 0000 | a pear-shaped top made of wood with a metal center pin -03906463 06 n 01 Pelham 0 001 @ 02844714 n 0000 | a bit with a bar mouthpiece that is designed to combine a curb and snaffle -03906590 06 n 01 pelican_crossing 0 002 @ 03904183 n 0000 ;r 08860123 n 0000 | an acronym for pedestrian light control; a pedestrian crossing with traffic lights that are controlled by pedestrians -03906789 06 n 01 pelisse 0 001 @ 02955767 n 0000 | a sleeveless cape that is lined or trimmed with fur -03906894 06 n 01 pelvimeter 0 001 @ 03733925 n 0000 | measuring instrument for performing pelvimetry -03906997 06 n 01 pen 0 008 @ 04608567 n 0000 + 01698271 v 0103 ~ 02783161 n 0000 ~ 03326948 n 0000 ~ 03388183 n 0000 %p 03823111 n 0000 ~ 04033901 n 0000 ~ 04185529 n 0000 | a writing implement with a point from which ink flows -03907227 06 n 01 pen 1 010 @ 03285912 n 0000 ~ 03124590 n 0000 ~ 03129944 n 0000 ~ 03376159 n 0000 ~ 03526062 n 0000 ~ 03628421 n 0000 ~ 03874487 n 0000 ~ 03942600 n 0000 ~ 04100519 n 0000 ~ 04346428 n 0000 | an enclosure for confining livestock -03907475 06 n 01 penal_colony 0 001 @ 03907654 n 0000 | a penal institution where prisoners are exiled (often located on an island from which escape is difficult or impossible) -03907654 06 n 02 penal_institution 0 penal_facility 0 006 @ 03574555 n 0000 #p 03569964 n 0000 ~ 02901259 n 0000 ~ 02945379 n 0000 ~ 03111690 n 0000 ~ 03907475 n 0000 | an institution where persons are confined for punishment and to protect the public -03907908 06 n 01 penalty_box 0 003 @ 02828884 n 0000 #p 03557360 n 0000 ;c 00463543 n 0000 | (ice hockey) an enclosed bench to the side of an ice-hockey rink for players who are serving time penalties -03908111 06 n 01 pen-and-ink 0 001 @ 03234306 n 0000 | a drawing executed with pen and ink -03908204 06 n 01 pencil 0 007 @ 04608567 n 0000 + 01688604 v 0101 ~ 03652100 n 0000 %p 03974215 n 0000 %p 04116512 n 0000 ~ 04234763 n 0000 %p 13902482 n 0000 | a thin cylindrical pointed writing implement; a rod of marking substance encased in wood -03908456 06 n 01 pencil 1 001 @ 03113152 n 0000 | a cosmetic in a long thin stick; designed to be applied to a particular part of the face; "an eyebrow pencil" -03908618 06 n 02 pencil_box 0 pencil_case 0 001 @ 02883344 n 0000 | a box for holding pencils -03908714 06 n 01 pencil_sharpener 0 001 @ 04185071 n 0000 | a rotary implement for sharpening the point on pencils -03908831 06 n 02 pendant 1 pendent 1 004 @ 02681518 n 0000 #p 03814906 n 0000 #p 03909020 n 0000 ~ 03649161 n 0000 | an adornment that hangs from a piece of jewelry (necklace or earring) -03909020 06 n 03 pendant_earring 0 drop_earring 0 eardrop 0 002 @ 03262349 n 0000 %p 03908831 n 0000 | an earring with a pendant ornament -03909160 06 n 01 pendulum 0 006 @ 02727825 n 0000 %p 02860239 n 0000 ~ 03386544 n 0000 ~ 03757604 n 0000 ~ 03927792 n 0000 ~ 04221673 n 0000 | an apparatus consisting of an object mounted so that it swings freely under the influence of gravity -03909406 06 n 01 pendulum_clock 0 002 @ 03046257 n 0000 ~ 03452594 n 0000 | a clock regulated by a pendulum -03909516 06 n 01 pendulum_watch 0 001 @ 04555897 n 0000 | (18th century) a watch with a balance wheel having a fake pendulum attached to it -03909658 06 n 01 penetration_bomb 0 001 @ 02866578 n 0000 | a bomb with about 30% explosive and a casing designed to penetrate hardened targets before the explosive detonates -03909835 06 n 02 penicillamine 0 Cuprimine 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | a drug (trade name Cuprimine) used to treat heavy metal poisoning and Wilson's disease and severe arthritis -03910033 06 n 01 penicillin 0 011 @ 02716866 n 0000 ~ 02703894 n 0000 ~ 02705651 n 0000 ~ 03460674 n 0000 ~ 03755388 n 0000 ~ 03910417 n 0000 ~ 03910601 n 0000 ~ 03910723 n 0000 ~ 03910887 n 0000 ~ 03911039 n 0000 ~ 03946532 n 0000 | any of various antibiotics obtained from Penicillium molds (or produced synthetically) and used in the treatment of various infections and diseases -03910417 06 n 01 penicillinase-resistant_antibiotic 0 003 @ 03910033 n 0000 ~ 03804493 n 0000 ~ 03867355 n 0000 | a form of penicillin that is not rendered inactive by penicillinase -03910601 06 n 01 penicillin_F 0 001 @ 03910033 n 0000 | the first form of penicillin that was isolated in Great Britain -03910723 06 n 02 penicillin_G 0 benzylpenicillin 0 001 @ 03910033 n 0000 | the penicillin that constitutes the principal component of many commercial antibiotics -03910887 06 n 01 penicillin_O 0 001 @ 03910033 n 0000 | a penicillin that is similar in antibiotic action to penicillin G but is obtained differently -03911039 06 n 02 penicillin_V 0 phenoxymethyl_penicillin 0 002 @ 03910033 n 0000 ~ 03911251 n 0000 | a crystalline penicillin similar in action to penicillin G but more resistant to the action of gastric acids -03911251 06 n 02 penicillin_V_potassium 0 Ledercillin_VK 0 002 @ 03911039 n 0000 ;u 06845599 n 0201 | a form of penicillin V (trade name Ledercillin VK) -03911406 06 n 01 penile_implant 0 001 @ 03563710 n 0000 | an implant that creates an artificial erection -03911513 06 n 02 penitentiary 0 pen 2 002 @ 03111690 n 0000 + 01902980 a 0101 | a correctional institution for those convicted of major crimes -03911658 06 n 01 penknife 0 001 @ 03973628 n 0000 | a small pocketknife; originally used to cut quill pens -03911767 06 n 01 penlight 0 001 @ 03359137 n 0000 | a small flashlight resembling a fountain pen -03911866 06 n 04 pennant 0 pennon 0 streamer 1 waft 0 002 @ 03354903 n 0000 ~ 03911992 n 0000 | a long flag; often tapering -03911992 06 n 03 pennoncel 0 penoncel 0 pennoncelle 0 001 @ 03911866 n 0000 | a small pennant borne on a lance -03912105 06 n 01 penny_arcade 0 001 @ 02733378 n 0000 | an arcade with coin-operated devices for entertainment -03912218 06 n 03 pennywhistle 0 tin_whistle 0 whistle 0 001 @ 03343354 n 0000 | an inexpensive fipple flute -03912328 06 n 02 pentaerythritol 0 Peritrate 0 002 @ 04522904 n 0000 ;u 06845599 n 0201 | a coronary vasodilator (trade name Peritrate) used to treat angina pectoris -03912496 06 n 01 Pentagon 0 001 @i 03449564 n 0000 | a government building with five sides that serves as the headquarters of the United States Department of Defense -03912664 06 n 02 pentazocine 0 Talwin 0 002 @ 02707683 n 0000 ;u 06845599 n 0201 | analgesic drug (trade name Talwin) that is less addictive than morphine -03912821 06 n 01 penthouse 0 001 @ 02726305 n 0000 | an apartment located on the top floors of a building -03912929 06 n 01 pentimento 0 001 @ 03876519 n 0000 | the reappearance in a painting of an underlying image that had been painted over (usually when the later painting becomes transparent with age) -03913129 06 n 04 pentobarbital_sodium 0 pentobarbital 0 Nembutal 0 yellow_jacket 0 002 @ 02792049 n 0000 ;u 06845599 n 0301 | a barbiturate (trade name Nembutal) used as a sedative and hypnotic and antispasmodic -03913343 06 n 01 pentode 0 001 @ 04494204 n 0000 | a thermionic tube having five electrodes -03913437 06 n 02 pentoxifylline 0 Trental 0 002 @ 03247620 n 0000 ;u 06845599 n 0201 | a drug (trade name Trental) used to treat claudication; believed to increase the flexibility of red blood cells so they can flow through the blood vessels to the legs and feet -03913702 06 n 03 pentylenetetrazol 0 pentamethylenetetrazol 0 Metrazol 0 001 @ 03740161 n 0000 | a drug used as a circulatory and respiratory stimulant; larger doses cause convulsions in shock therapy; Metrazol is a trademark -03913930 06 n 03 peplos 0 peplus 0 peplum 1 001 @ 03419014 n 0000 | a garment worn by women in ancient Greece; cloth caught at the shoulders and draped in folds to the waist -03914106 06 n 01 peplum 0 001 @ 03397532 n 0000 | a flared ruffle attached to the waistline of a dress or jacket or blouse -03914231 06 n 01 pepper-and-salt 0 001 @ 03309808 n 0000 | a fabric woven with flecks of light and dark -03914337 06 n 02 pepper_mill 0 pepper_grinder 0 001 @ 03765561 n 0000 | a mill for grinding pepper -03914438 06 n 03 pepper_shaker 0 pepper_box 0 pepper_pot 0 001 @ 04183329 n 0000 | a shaker with a perforated top for sprinkling ground pepper -03914583 06 n 01 pepper_spray 0 002 @ 02682922 n 0000 @ 03013162 n 0000 | a nonlethal aerosol spray made with the pepper derivative oleoresin capiscum; used to cause temporary blindness and incapacitate an attacker; also used as a bear deterrent -03914831 06 n 01 percale 0 001 @ 03309808 n 0000 | a fine closely woven cotton fabric -03914919 06 n 01 perch 0 004 @ 04359589 n 0000 #p 04107984 n 0000 + 01543731 v 0101 ~ 04107870 n 0000 | support consisting of a branch or rod that serves as a resting place (especially for a bird) -03915118 06 n 01 percolator 0 002 @ 03063689 n 0000 + 01458464 v 0101 | a coffeepot in which boiling water ascends through a central tube and filters back down through a basket of ground coffee beans -03915320 06 n 01 percussion_cap 0 002 @ 03182232 n 0000 %p 14798815 n 0000 | a detonator that explodes when struck -03915437 06 n 02 percussion_instrument 0 percussive_instrument 0 017 @ 03800933 n 0000 ~ 02869249 n 0000 ~ 03017168 n 0000 ~ 03157348 n 0000 ~ 03249569 n 0000 ~ 03440682 n 0000 ~ 03447721 n 0000 ~ 03612965 n 0000 ~ 03633632 n 0000 %p 03715669 n 0000 ~ 03720891 n 0000 ~ 03721384 n 0000 ~ 03928116 n 0000 ~ 04049753 n 0000 ~ 04311174 n 0000 ~ 04480853 n 0000 ~ 04532831 n 0000 | a musical instrument in which the sound is produced by one object striking another -03915900 06 n 01 perforation 0 002 @ 03526198 n 0000 + 01442779 v 0102 | a line of small holes for tearing at a particular place -03916031 06 n 02 perfume 0 essence 0 009 @ 04447443 n 0000 + 00043480 v 0101 + 02126382 v 0101 ~ 03071021 n 0000 ~ 03898271 n 0000 ~ 03916470 n 0000 ~ 03992325 n 0000 ~ 04110068 n 0000 ~ 04448070 n 0000 | a toiletry that emits and diffuses a fragrant odor -03916289 06 n 01 perfumery 0 001 @ 03297735 n 0000 | an establishment where perfumes are made -03916385 06 n 01 perfumery 1 001 @ 04202417 n 0000 | store where perfumes are sold -03916470 06 n 01 perfumery 2 003 @ 03916031 n 0000 + 02126382 v 0101 + 00043480 v 0101 | perfumes in general -03916581 06 n 01 period_piece 0 001 @ 04601690 n 0000 | any work of art whose special value lies in its evocation of a historical period -03916720 06 n 03 peripheral 0 computer_peripheral 0 peripheral_device 0 006 @ 03278248 n 0000 #p 03082979 n 0000 ;c 06128570 n 0000 ~ 03163973 n 0000 ~ 03861048 n 0000 ~ 04004767 n 0000 | (computer science) electronic equipment connected by cable to the CPU of a computer; "disk drives and printers are important peripherals" -03917048 06 n 01 periscope 0 002 @ 03852280 n 0000 #p 04347754 n 0000 | an optical instrument that provides a view of an otherwise obstructed field -03917198 06 n 01 peristyle 0 002 @ 03071160 n 0000 + 00140075 a 0101 | a colonnade surrounding a building or enclosing a court -03917327 06 n 02 periwig 0 peruke 0 001 @ 04584207 n 0000 | a wig for men that was fashionable in the 17th and 18th centuries -03917455 06 n 01 periwinkle_plant_derivative 0 003 @ 02722458 n 0000 ~ 04535634 n 0000 ~ 04535826 n 0000 | an antineoplastic drug used to treat some forms of cancer -03917622 06 n 02 permanent_magnet 0 static_magnet 0 003 @ 03705379 n 0000 ~ 04344003 n 0000 ~ 14942411 n 0000 | a magnet that retains its magnetism after being removed from a magnetic field -03917814 06 n 02 permanent_press 0 durable_press 0 001 @ 03309808 n 0000 | a fabric that has been chemically processed to resist wrinkles and hold its shape -03917973 06 n 01 perpendicular 0 002 @ 03313456 n 0000 + 01145724 a 0101 | an extremely steep face -03918074 06 n 01 perpetual_motion_machine 0 001 @ 03699975 n 0000 | a machine that can continue to do work indefinitely without drawing energy from some external source; impossible under the law of conservation of energy -03918297 06 n 02 perphenazine 0 Triavil 0 002 @ 03771443 n 0000 ;u 06845599 n 0201 | tranquilizer and antidepressant (trade name Triavil) sometimes used as an antiemetic for adults -03918480 06 n 03 personal_computer 0 PC 0 microcomputer 0 005 @ 03196324 n 0000 ~ 03180011 n 0000 %p 03760310 n 0000 %p 03902220 n 0000 ~ 03985232 n 0000 | a small digital computer based on a microprocessor and designed to be used by one person at a time -03918737 06 n 06 personal_digital_assistant 0 PDA 0 personal_organizer 0 personal_organiser 0 organizer 0 organiser 0 002 @ 03277771 n 0000 + 00404642 v 0501 | a lightweight consumer electronic device that looks like a hand-held computer but instead performs specific tasks; can serve as a diary or a personal database or a telephone or an alarm clock etc. -03919096 06 n 01 personnel_carrier 0 003 @ 03764276 n 0000 @ 04170037 n 0000 ;c 08199025 n 0000 | a military vehicle (usually armored) for transporting military personnel and their equipment -03919289 06 n 01 pestle 0 002 @ 03489162 n 0000 + 00331842 v 0101 | a club-shaped hand tool for grinding and mixing substances in a mortar -03919430 06 n 03 pestle 1 muller 0 pounder 0 003 @ 04451818 n 0000 + 00331514 v 0301 + 00331842 v 0101 | a heavy tool of stone or iron (usually with a flat base and a handle) that is used to grind and mix material (as grain or drugs or pigments) against a slab of stone -03919702 06 n 01 petard 0 001 @ 03305522 n 0000 | an explosive device used to break down a gate or wall -03919808 06 n 01 petcock 0 001 @ 04072193 n 0000 | regulator consisting of a small cock or faucet or valve for letting out air or releasing compression or draining -03919974 06 n 01 Peter_Pan_collar 0 001 @ 03068181 n 0000 | a flat collar with rounded ends that meet in front -03920087 06 n 01 petit_point 0 001 @ 03816659 n 0000 | needlepoint done with small stitches -03920181 06 n 02 petit_point 1 tent_stitch 0 001 @ 04180314 n 0000 | a small diagonal needlepoint stitch -03920288 06 n 01 Petri_dish 0 001 @ 03206908 n 0000 | a shallow dish used to culture bacteria -03920384 06 n 01 petrolatum_gauze 0 002 @ 03430091 n 0000 %s 14980910 n 0000 | gauze saturated with petrolatum -03920497 06 n 01 Petronas_Towers 0 002 @i 04233124 n 0000 #p 08963813 n 0000 | twin skyscrapers built in Kuala Lumpur in 1997; 1482 feet high -03920641 06 n 01 pet_shop 0 001 @ 04202417 n 0000 | a shop where pet animals can be purchased -03920737 06 n 03 petticoat 0 half-slip 0 underskirt 0 002 @ 04508163 n 0000 ~ 03132776 n 0000 | undergarment worn under a skirt -03920867 06 n 02 pew 0 church_bench 0 001 @ 02828884 n 0000 | long bench with backs; used in church by the congregation -03920989 06 n 02 pharmaceutical 0 pharmaceutic 0 004 @ 03740161 n 0000 + 03099131 a 0101 ~ 04043268 n 0000 ~ 04429169 n 0000 | drug or medicine that is prepared or dispensed in pharmacies and used in medical treatment -03921209 06 n 01 pharmacopoeia 0 003 @ 07951464 n 0000 #p 03249342 n 0000 %p 03247620 n 0000 | a collection or stock of drugs -03921337 06 n 02 phenazopyridine 0 Pyridium 0 002 @ 02707683 n 0000 ;u 06845599 n 0201 | analgesic (trade name Pyridium) used to treat urinary tract infections -03921499 06 n 04 phencyclidine 0 phencyclidine_hydrochloride 0 PCP 0 angel_dust 0 001 @ 03479647 n 0000 | a drug used as an anesthetic by veterinarians; illicitly taken (originally in the form of powder or `dust') for its effects as a hallucinogen -03921749 06 n 02 phenelzine 0 Nardil 0 002 @ 03783017 n 0000 ;u 06845599 n 0201 | monoamine oxidase inhibitor (trade name Nardil) used to treat clinical depression -03921915 06 n 01 pheniramine 0 001 @ 02720725 n 0000 | an antihistamine used in preparations to treat allergies and respiratory infections; used to treat rhinitis and skin rashes and pruritus -03922109 06 n 01 phenolphthalein 0 002 @ 03650084 n 0000 @ 14609198 n 0000 | a laxative used in many preparations under various trade names; also used as an acid-base indicator in titrations involving weak acids and strong bases because it is brilliant red at high alkalinity and colorless below pH 8 -03922412 06 n 02 phensuximide 0 Milontin 0 002 @ 02718469 n 0000 ;u 06845599 n 0201 | anticonvulsant (trade name Milontin) used to treat petit mal -03922561 06 n 02 phentolamine 0 Vasomax 0 002 @ 04537602 n 0000 ;u 06845599 n 0201 | a virility drug (trade name Vasomax) to treat erectile dysfunction in men -03922722 06 n 02 phenylbutazone 0 Butazolidin 0 002 @ 02721538 n 0000 ;u 06845599 n 0201 | anti-inflammatory drug (trade name Butazolidin) -03922863 06 n 01 phenylephrine 0 001 @ 02682038 n 0000 | a powerful vasoconstrictor used to dilate the pupils and relieve nasal congestion -03923004 06 n 01 phenylpropanolamine 0 001 @ 02682038 n 0000 | an adrenergic drug used in many preparations to relieve allergic reactions or respiratory infections; "drugs containing phenylpropanolamine are being recalled" -03923229 06 n 01 phenyltoloxamine 0 001 @ 02720725 n 0000 | antihistamine included in some preparations used to treat coughing and nasal congestion -03923379 06 n 05 phial 0 vial 0 ampule 0 ampul 0 ampoule 0 001 @ 02876657 n 0000 | a small bottle that contains a drug (especially a sealed sterile container for injection by needle) -03923564 06 n 01 Phillips_screw 0 002 @ 04153751 n 0000 ;u 06851742 n 0000 | a screw with a special head having crossed slots -03923692 06 n 01 Phillips_screwdriver 0 001 @ 04154565 n 0000 | a screwdriver for use with Phillips screws -03923801 06 n 02 phonograph_album 0 record_album 0 001 @ 02695079 n 0000 | an album for holding phonograph records -03923918 06 n 02 phonograph_needle 0 needle 2 001 @ 04346679 n 0000 | a stylus that formerly made sound by following a groove in a phonograph record -03924069 06 n 06 phonograph_record 0 phonograph_recording 0 record 0 disk 2 disc 1 platter 1 005 @ 04262678 n 0000 + 00998399 v 0301 %p 02675077 n 0000 ~ 03694639 n 0000 ~ 04178190 n 0000 | sound recording consisting of a disk with a continuous groove; used to reproduce music by rotating while a phonograph needle tracks in the groove -03924407 06 n 01 photocathode 0 002 @ 02984699 n 0000 #p 03924978 n 0000 | a cathode that emits electrons when illuminated -03924532 06 n 01 photocoagulator 0 002 @ 04364545 n 0000 %p 03643253 n 0000 | surgical instrument containing a laser for use in photocoagulation -03924679 06 n 01 photocopier 0 002 @ 03257586 n 0000 + 01736299 v 0101 | a copier that uses photographic methods of making copies -03924811 06 n 01 photocopy 0 004 @ 03925226 n 0000 @ 03104594 n 0000 + 01736299 v 0101 ~ 03927539 n 0000 | a photographic copy of written or printed or graphic work -03924978 06 n 05 photoelectric_cell 0 photoconductive_cell 0 photocell 0 electric_eye 0 magic_eye 0 004 @ 04470953 n 0000 @ 03180969 n 0000 %p 03924407 n 0000 ~ 04169597 n 0000 | a transducer used to detect and measure light and other radiations -03925226 06 n 05 photograph 0 photo 0 exposure 0 picture 2 pic 0 035 @ 04076846 n 0000 + 02838592 a 0101 + 13536794 n 0101 + 00903559 n 0101 + 02734653 v 0101 + 01003249 v 0101 ~ 02822762 n 0000 ~ 02846399 n 0000 ~ 02856109 n 0000 ~ 03012263 n 0000 ~ 03049695 n 0000 ~ 03159331 n 0000 ~ 03289462 n 0000 ~ 03391464 n 0000 ~ 03441009 n 0000 ~ 03505942 n 0000 ~ 03527243 n 0000 ~ 03688316 n 0000 ~ 03759114 n 0000 ~ 03787904 n 0000 ~ 03797548 n 0000 ~ 03924811 n 0000 ~ 03926575 n 0000 ~ 03927091 n 0000 ~ 04042358 n 0000 ~ 04248607 n 0000 ~ 04272638 n 0000 ~ 04316275 n 0000 ~ 04319248 n 0000 ~ 04403167 n 0000 ~ 04403279 n 0000 ~ 04437552 n 0000 ~ 04535153 n 0000 ~ 04569205 n 0000 ~ 06614729 n 0000 | a representation of a person or scene in the form of a print or transparent slide; recorded by a camera on light-sensitive material -03926061 06 n 01 photograph_album 0 001 @ 02695079 n 0000 | an album for photographs -03926148 06 n 01 photographic_equipment 0 010 @ 03294048 n 0000 ~ 02942699 n 0000 ~ 03037404 n 0000 ~ 03182912 n 0000 ~ 03289660 n 0000 ~ 03358172 n 0000 %p 03365374 n 0000 ~ 03667664 n 0000 ~ 03926412 n 0000 ~ 04172607 n 0000 | equipment used by a photographer -03926412 06 n 02 photographic_paper 0 photographic_material 0 002 @ 03926148 n 0000 ~ 03338821 n 0000 | light-sensitive paper on which photograph can be printed -03926575 06 n 02 photographic_print 0 print 2 004 @ 03925226 n 0000 + 01749184 v 0201 ~ 03153821 n 0000 ~ 04011130 n 0000 | a printed picture produced from a photographic negative -03926757 06 n 01 photolithograph 0 001 @ 03678220 n 0000 | a lithograph produced by photographically produced plates -03926876 06 n 01 photometer 1 002 @ 03733925 n 0000 ~ 04272928 n 0000 | measuring instrument for measuring the luminous intensity of a source by comparing it (visually or photoelectrically) with a standard source -03927091 06 n 01 photomicrograph 0 001 @ 03925226 n 0000 | a photograph taken with the help of a microscope -03927201 06 n 01 photomontage 0 001 @ 03067912 n 0000 | a montage that uses photographic images -03927299 06 n 02 Photostat 0 Photostat_machine 0 004 @ 03257586 n 0000 ;u 06851742 n 0201 + 01736669 v 0101 ;u 06851742 n 0101 | a duplicating machine that makes quick positive or negative copies directly on the surface of prepared paper -03927539 06 n 01 photostat 1 002 @ 03924811 n 0000 + 01736669 v 0101 | a photocopy made on a Photostat machine -03927652 06 n 01 phrontistery 0 001 @ 03297735 n 0000 | an establishment for study and learning (sometimes including modern universities) -03927792 06 n 02 physical_pendulum 0 compound_pendulum 0 003 @ 03909160 n 0000 ~ 02781517 n 0000 ~ 03046802 n 0000 | pendulum consisting of an actual object allowed to rotate freely around a horizontal axis -03928001 06 n 02 physics_lab 0 physics_laboratory 0 001 @ 03629986 n 0000 | a laboratory for research in physics -03928116 06 n 03 piano 0 pianoforte 0 forte-piano 0 016 @ 03614532 n 0000 @ 04338517 n 0000 @ 03915437 n 0000 + 03023348 a 0101 + 03023216 a 0101 + 10430665 n 0101 %p 03318983 n 0000 ~ 03452741 n 0000 %p 03614007 n 0000 ~ 03738066 n 0000 %p 03928589 n 0000 %p 03928814 n 0000 %p 04257223 n 0000 %p 04262161 n 0000 %p 04367011 n 0000 ~ 04515003 n 0000 | a keyboard instrument that is played by depressing keys that cause hammers to strike tuned strings and produce sounds -03928589 06 n 01 piano_action 0 004 @ 02677718 n 0000 #p 03928116 n 0000 %p 03161893 n 0000 %p 03481674 n 0000 | action consisting of a system of levers that move a felt hammer to strike the strings when a key is depressed -03928814 06 n 03 piano_keyboard 0 fingerboard 1 clavier 0 004 @ 03614007 n 0000 #p 03928116 n 0000 #p 03854065 n 0000 #p 02672831 n 0000 | a bank of keys on a musical instrument -03928994 06 n 01 piano_wire 0 001 @ 04594218 n 0000 | thin steel wire of high tensile strength -03929091 06 n 01 piccolo 0 001 @ 03372029 n 0000 | a small flute; pitched an octave above the standard flute -03929202 06 n 03 pick 0 pickax 0 pickaxe 0 003 @ 03265032 n 0000 + 01442578 v 0101 ~ 03731019 n 0000 | a heavy iron tool with a wooden handle and a curved head that is pointed on both ends; "they used picks and sledges to break the rocks" -03929443 06 n 01 pick 1 004 @ 03489162 n 0000 + 00178102 v 0101 ~ 03558007 n 0000 ~ 04453390 n 0000 | a thin sharp implement used for removing unwanted material; "he used a pick to clean the dirt out of the cracks" -03929660 06 n 03 pick 3 plectrum 0 plectron 0 003 @ 03183080 n 0000 + 01452546 v 0103 ~ 03467796 n 0000 | a small thin device (of metal or plastic or ivory) used to pluck a stringed instrument -03929855 06 n 01 pickelhaube 0 001 @ 03513376 n 0000 | a spiked helmet worn by German soldiers -03929952 06 n 02 picket 0 pale 0 003 @ 04339638 n 0000 #p 03930313 n 0000 + 01289026 v 0101 | a wooden strip forming part of a fence -03930087 06 n 01 picket 1 004 @ 03764276 n 0000 ;c 08199025 n 0000 ~ 03930229 n 0000 ~ 03930431 n 0000 | a vehicle performing sentinel duty -03930229 06 n 01 picket_boat 0 001 @ 03930087 n 0000 | a boat serving as a picket -03930313 06 n 02 picket_fence 0 paling 0 002 @ 03327234 n 0000 %p 03929952 n 0000 | a fence made of upright pickets -03930431 06 n 01 picket_ship 0 001 @ 03930087 n 0000 | a ship serving as a picket -03930515 06 n 01 pickle_barrel 0 001 @ 02795169 n 0000 | a barrel holding vinegar in which cucumbers are pickled -03930630 06 n 02 pickup 0 pickup_truck 0 002 @ 04490091 n 0000 ~ 04399269 n 0000 | a light truck with an open body and low sides and a tailboard -03930777 06 n 02 pickup 3 pick-me-up 1 002 @ 03111899 n 0000 + 00023473 v 0104 | anything with restorative powers; "she needed the pickup that coffee always gave her" -03930946 06 n 01 picot 0 001 @ 04180314 n 0000 | an edging of small loops, as on lace or ribbon -03931044 06 n 04 picture 0 image 0 icon 0 ikon 0 018 @ 04076846 n 0000 + 02851550 a 0301 + 01635432 v 0209 + 02861617 a 0102 + 01686956 v 0101 + 01686956 v 0102 ~ 02845425 n 0000 ~ 03016056 n 0000 ~ 03067912 n 0000 ~ 03375956 n 0000 ~ 03453696 n 0000 ~ 03559144 n 0000 ~ 03573464 n 0000 ~ 03668642 n 0000 ~ 03884072 n 0000 ~ 04068976 n 0000 ~ 04142549 n 0000 ~ 04260364 n 0000 | a visual representation (of an object or scene or person or abstraction) produced on a surface; "they showed us the pictures of their wedding"; "a movie is a series of images projected so rapidly that the eye integrates them" -03931651 06 n 01 picture_book 0 002 @ 02870092 n 0000 ~ 03071782 n 0000 | a book consisting chiefly of pictures -03931765 06 n 01 picture_frame 0 002 @ 03391770 n 0000 %p 03780247 n 0000 | a framework in which a picture is mounted -03931885 06 n 01 picture_hat 0 001 @ 03766322 n 0000 | a woman's dressy hat with a wide brim -03931980 06 n 01 picture_rail 0 001 @ 04046590 n 0000 | rail fixed to a wall for hanging pictures -03932080 06 n 01 picture_window 0 001 @ 04587648 n 0000 | a large window with a single pane (usually overlooking a view) -03932203 06 n 01 piece 0 011 @ 03892891 n 0000 + 00261705 v 0101 + 01656788 v 0102 + 01590171 v 0102 ~ 02815950 n 0000 ~ 03932670 n 0000 ~ 03933183 n 0000 ~ 04150668 n 0000 ~ 04184701 n 0000 ~ 04250026 n 0000 ~ 04277669 n 0000 | a separate part of a whole; "an important piece of the evidence" -03932499 06 n 01 piece 5 001 @ 03588414 n 0000 | an item that is an instance of some type; "he designed a new piece of equipment"; "she bought a lovely piece of china"; -03932670 06 n 02 piece_of_cloth 0 piece_of_material 0 023 @ 03932203 n 0000 @ 03309808 n 0000 ~ 02834397 n 0000 ~ 03004713 n 0000 ~ 03207743 n 0000 ~ 03246312 n 0000 ~ 03258330 n 0000 ~ 03258577 n 0000 ~ 03286383 n 0000 ~ 03448253 n 0000 ~ 03463666 n 0000 ~ 03467380 n 0000 ~ 03471190 n 0000 ~ 03485794 n 0000 ~ 03673270 n 0000 ~ 03697913 n 0000 ~ 03897943 n 0000 ~ 03953901 n 0000 ~ 04045941 n 0000 ~ 04127904 n 0000 ~ 04368949 n 0000 ~ 04459362 n 0000 ~ 04468476 n 0000 | a separate part consisting of fabric -03933183 06 n 01 piece_of_leather 0 007 @ 03932203 n 0000 @ 14759722 n 0000 ~ 03116942 n 0000 ~ 04031600 n 0000 ~ 04123980 n 0000 ~ 04514359 n 0000 ~ 04520020 n 0000 | a separate part consisting of leather -03933391 06 n 01 pied-a-terre 0 001 @ 03546340 n 0000 | lodging for occasional or secondary use; "they bought a pied-a-terre in London" -03933529 06 n 04 pier 0 wharf 0 wharfage 0 dock 1 013 @ 03961939 n 0000 + 01305731 v 0401 + 02085742 v 0401 + 02331175 v 0301 + 02331175 v 0201 + 02281960 v 0201 + 01305361 v 0203 + 01489734 v 0201 + 01305241 v 0201 %p 02864593 n 0000 ~ 03658759 n 0000 ~ 04033082 n 0000 %p 08650391 n 0000 | a platform built out from the shore into the water and supported by piles; provides access to ships and boats -03933933 06 n 01 pier 1 002 @ 04359589 n 0000 #p 02898711 n 0000 | a support for two adjacent bridge spans -03934042 06 n 01 pier 2 003 @ 04359589 n 0000 #p 04546855 n 0000 ;c 06123363 n 0000 | (architecture) a vertical supporting structure (as a portion of wall between two doors or windows) -03934229 06 n 01 pier_arch 0 001 @ 02733524 n 0000 | an arch supported on piers -03934311 06 n 02 pier_glass 0 pier_mirror 0 001 @ 03773035 n 0000 | a large mirror between two windows -03934416 06 n 01 Pierre_Laporte_Bridge 0 002 @i 04366367 n 0000 #p 08829317 n 0000 | a suspension bridge across the Saint Lawrence River at Quebec -03934565 06 n 01 pier_table 0 001 @ 04379243 n 0000 | a low table set below a pier glass -03934656 06 n 01 pieta 0 001 @ 04076846 n 0000 | a representation of the Virgin Mary mourning over the dead body of Jesus -03934780 06 n 01 piezoelectric_crystal 0 001 @ 03142912 n 0000 | a crystal that can be used as a transducer -03934890 06 n 01 piezometer 0 001 @ 03733925 n 0000 | a measuring instrument for measuring high pressures -03934998 06 n 01 pig 0 001 @ 03570526 n 0000 | a crude block of metal (lead or iron) poured from a smelting furnace -03935116 06 n 02 pig_bed 0 pig 1 001 @ 03779370 n 0000 | mold consisting of a bed of sand in which pig iron is cast -03935234 06 n 02 piggery 0 pig_farm 0 001 @ 03322099 n 0000 | a farm where pigs are raised or kept -03935335 06 n 02 piggy_bank 0 penny_bank 0 001 @ 04139859 n 0000 | a child's coin bank (often shaped like a pig) -03935450 06 n 01 pike 0 006 @ 04565375 n 0000 ~ 03477410 n 0000 ~ 03894217 n 0000 %p 03935789 n 0000 %p 04271371 n 0000 ~ 04542221 n 0000 | medieval weapon consisting of a spearhead attached to a long pole or pikestaff; superseded by the bayonet -03935698 06 n 01 pike 2 001 @ 03974215 n 0000 | a sharp point (as on the end of a spear) -03935789 06 n 01 pikestaff 0 002 @ 04296261 n 0000 #p 03935450 n 0000 | the staff of a pike -03935883 06 n 01 pilaster 0 001 @ 03073977 n 0000 | a rectangular column that usually projects about a third of its width from the wall to which it is attached -03936045 06 n 02 pile 2 nap 0 001 @ 04426788 n 0000 | the yarn (as in a rug or velvet or corduroy) that stands up from the weave; "for uniform color and texture tailors cut velvet with the pile running the same direction" -03936269 06 n 04 pile 3 spile 1 piling 0 stilt 1 002 @ 03073977 n 0000 ~ 04189651 n 0000 | a column of wood or steel or concrete that is driven into the ground to provide support for a structure -03936466 06 n 01 pile_driver 0 001 @ 03699975 n 0000 | a machine that drives piling into the ground -03936568 06 n 04 pill 0 lozenge 0 tablet 0 tab 0 005 @ 03225238 n 0000 ~ 02866474 n 0000 ~ 02957586 n 0000 ~ 03231723 n 0000 ~ 04236182 n 0000 | a dose of medicine in the form of a small pellet -03936764 06 n 01 pill 1 002 @ 04424218 n 0000 ~ 07938149 n 0000 | something that resembles a tablet of medicine in shape or size -03936895 06 n 07 pill 2 birth_control_pill 0 contraceptive_pill 0 oral_contraceptive_pill 0 oral_contraceptive 0 anovulatory_drug 0 anovulant 0 015 @ 03096593 n 0000 ~ 03174991 n 0000 ~ 03289819 n 0000 ~ 03685962 n 0000 ~ 03689840 n 0000 ~ 03759795 n 0000 ~ 03778135 n 0000 ~ 03830111 n 0000 ~ 03830278 n 0000 ~ 03830448 n 0000 ~ 03866555 n 0000 ~ 03866908 n 0000 ~ 03867070 n 0000 ~ 03867201 n 0000 %s 14746048 n 0000 | a contraceptive in the form of a pill containing estrogen and progestin to inhibit ovulation and so prevent conception -03937437 06 n 01 pillar_box 0 002 @ 03989074 n 0000 ;r 08860123 n 0000 | a red pillar-shaped letter box -03937543 06 n 01 pill_bottle 0 001 @ 02876657 n 0000 | a small bottle for holding pills -03937633 06 n 01 pillbox 0 001 @ 03469031 n 0000 | a small enclosed gun emplacement (usually of fortified concrete) -03937751 06 n 01 pillbox 1 001 @ 02974697 n 0000 | a small case for holding pills -03937835 06 n 03 pillbox 2 toque 0 turban 1 001 @ 03766322 n 0000 | a small round woman's hat -03937931 06 n 01 pillion 0 001 @ 04161358 n 0000 | a seat behind the rider of a horse or motorbike etc. -03938037 06 n 01 pillory 0 002 @ 03575958 n 0000 + 02483828 v 0101 | a wooden instrument of punishment on a post with holes for the wrists and neck; offenders were locked in and so exposed to public scorn -03938244 06 n 01 pillow 0 004 @ 03151500 n 0000 + 01502946 v 0101 ~ 02821328 n 0000 ~ 02865509 n 0000 | a cushion to support the head of a sleeping person -03938401 06 n 01 pillow_block 0 001 @ 04359589 n 0000 | a cast-iron or steel block for supporting a journal or bearing -03938522 06 n 02 pillow_lace 0 bobbin_lace 0 002 @ 03631177 n 0000 ~ 04518643 n 0000 | a handmade lace worked on a pillow with threads wound on bobbins; the pattern is marked out on the pillow by pins -03938725 06 n 01 pillow_sham 0 001 @ 02821030 n 0000 | bed linen consisting of a decorative cover for a pillow -03938838 06 n 01 pilocarpine 0 001 @ 14712692 n 0000 | cholinergic alkaloid used in eyedrops to treat glaucoma -03938951 06 n 01 pilot_balloon 0 001 @ 03752922 n 0000 | meteorological balloon used to observe air currents -03939062 06 n 01 pilot_bit 0 001 @ 02844307 n 0000 | a small bit that drills a first hole to guide a larger drill -03939178 06 n 01 pilot_boat 0 001 @ 02858304 n 0000 | a boat to carry pilots to and from large ships -03939281 06 n 03 pilot_burner 0 pilot_light 1 pilot 0 001 @ 03422072 n 0000 | small auxiliary gas burner that provides a flame to ignite a larger gas burner -03939440 06 n 01 pilot_cloth 0 001 @ 03309808 n 0000 | a thick blue cloth used to make overcoats and coats for sailors etc -03939565 06 n 01 pilot_engine 0 001 @ 03684823 n 0000 | a locomotive that precedes a train to check the track -03939677 06 n 02 pilothouse 0 wheelhouse 0 003 @ 03079741 n 0000 #p 02899257 n 0000 ~ 03092053 n 0000 | an enclosed compartment from which a vessel can be navigated -03939844 06 n 03 pilot_light 0 pilot_lamp 0 indicator_lamp 0 001 @ 03568117 n 0000 | indicator consisting of a light to indicate whether power is on or a motor is in operation -03940022 06 n 01 Pimlico 0 002 @i 03205760 n 0000 #p 09094381 n 0000 | a racetrack for thoroughbred racing; site of the Preakness -03940154 06 n 01 pimozide 0 001 @ 03203641 n 0000 | the most commonly used diphenylbutyl piperidine -03940256 06 n 01 pin 0 018 @ 03323703 n 0000 + 01444723 v 0101 + 01368264 v 0101 ~ 02796318 n 0000 ~ 02845860 n 0000 ~ 03476313 n 0000 ~ 03499354 n 0000 %p 03501288 n 0000 ~ 03670339 n 0000 ~ 03905540 n 0000 %p 03942920 n 0000 %p 03974215 n 0000 ~ 04095342 n 0000 ~ 04127249 n 0000 %p 04184095 n 0000 ~ 04227900 n 0000 ~ 04331892 n 0000 ~ 04607759 n 0000 | a small slender (often pointed) piece of wood or metal used to support or fasten or attach things -03940713 06 n 01 pin 1 005 @ 03597469 n 0000 ~ 02906438 n 0000 ~ 04144434 n 0000 ~ 04318690 n 0000 ~ 04434670 n 0000 | a piece of jewelry that is pinned onto the wearer's garment -03940894 06 n 02 pin 6 flag 2 001 @ 03446832 n 0000 | flagpole used to mark the position of the hole on a golf green -03941013 06 n 02 pin 7 pin_tumbler 0 002 @ 04497005 n 0000 #p 03156767 n 0000 | cylindrical tumblers consisting of two parts that are held in place by springs; when they are aligned with a key the bolt can be thrown -03941231 06 n 01 pinata 0 001 @ 03964744 n 0000 | plaything consisting of a container filled with toys and candy; suspended from a height for blindfolded children to break with sticks -03941417 06 n 02 pinball_machine 0 pin_table 0 001 @ 03414162 n 0000 | game equipment on which pinball is played; "in Britain they call a pinball machine a pin table" -03941586 06 n 01 pince-nez 0 001 @ 04272054 n 0000 | spectacles clipped to the nose by a spring -03941684 06 n 04 pincer 0 pair_of_pincers 0 tweezer 0 pair_of_tweezers 0 003 @ 03489162 n 0000 + 01593011 v 0301 ~ 04095938 n 0000 | a hand tool for holding consisting of a compound lever for grasping -03941887 06 n 01 pinch_bar 0 001 @ 03659292 n 0000 | a lever with a pointed projection that serves as a fulcrum; used to roll heavy wheels -03942028 06 n 01 pincurl_clip 0 001 @ 02973017 n 0000 | a variety of clip for holding pin curls -03942126 06 n 01 pincushion 0 001 @ 03151500 n 0000 | a small stiff cushion into which pins are stuck ready for use -03942244 06 n 02 pindolol 0 Visken 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | an oral beta blocker (trade name Visken) used in treating hypertension -03942397 06 n 01 pine-tar_rag 0 002 @ 04045941 n 0000 @ 02799897 n 0000 | baseball equipment consisting of a rag soaked with pine tar; used on the handle of a baseball bat to give a batter a firm grip -03942600 06 n 01 pinfold 0 001 @ 03907227 n 0000 | a pen where stray animals are confined -03942692 06 n 01 pinger 0 002 @ 04021503 n 0000 #p 04259771 n 0000 | a pulse generator used for echo sounding in sonar -03942813 06 n 01 ping-pong_ball 0 001 @ 02778669 n 0000 | light hollow ball used in playing table tennis -03942920 06 n 01 pinhead 0 002 @ 03501288 n 0000 #p 03940256 n 0000 | the head of a pin -03943010 06 n 01 pinhole 0 001 @ 04024396 n 0000 | a small puncture that might have been made by a pin -03943115 06 n 01 pinion 0 002 @ 03430551 n 0000 ~ 03641134 n 0000 | a gear with a small number of teeth designed to mesh with a larger wheel or rack -03943266 06 n 01 pinnacle 0 004 @ 04312432 n 0000 ;c 06123363 n 0000 + 02694802 v 0101 + 01975237 v 0101 | (architecture) a slender upright spire at the top of a buttress of tower -03943448 06 n 01 pinner 0 001 @ 02954340 n 0000 | a woman's cap with two long flaps pinned on -03943544 06 n 01 pinpoint 0 001 @ 03974215 n 0000 | the sharp point of a pin -03943623 06 n 01 pinprick 0 001 @ 04024396 n 0000 | small puncture (as if made by a pin) -03943714 06 n 01 pinstripe 0 001 @ 02784732 n 0000 | a very thin stripe (especially a white stripe on a dark fabric) -03943833 06 n 01 pinstripe 1 001 @ 03309808 n 0000 | a fabric with very thin stripes -03943920 06 n 01 pinstripe 2 001 @ 04350905 n 0000 | a suit made from a fabric with very thin stripes -03944024 06 n 01 pintle 0 002 @ 03951971 n 0000 #p 03521076 n 0000 | a pin or bolt forming the pivot of a hinge -03944138 06 n 02 pinwheel 1 pinwheel_wind_collector 0 001 @ 03964744 n 0000 | a toy consisting of vanes of colored paper or plastic that is pinned to a stick and spins when it is pointed into the wind -03944341 06 n 01 pinwheel 2 001 @ 04574999 n 0000 | a wheel that has numerous pins that are set at right angles to its rim; "he spun the pinwheel and it stopped with the pointer on `Go'" -03944530 06 n 01 pin_wrench 0 001 @ 04606574 n 0000 | a wrench that has a projecting pin that fits into a socket on the object to be turned -03944672 06 n 03 pipe 0 pipage 0 piping 0 020 @ 04493505 n 0000 + 01950295 v 0301 + 01950295 v 0201 + 01950295 v 0101 ~ 03017931 n 0000 ~ 03206158 n 0000 ~ 03231912 n 0000 ~ 03240482 n 0000 ~ 03268553 n 0000 ~ 03303510 n 0000 ~ 03401500 n 0000 ~ 03711145 n 0000 ~ 03717750 n 0000 ~ 03946325 n 0000 ~ 04094859 n 0000 ~ 04267985 n 0000 %p 04287153 n 0000 ~ 04302527 n 0000 ~ 04309925 n 0000 ~ 04385536 n 0000 | a long tube made of metal or plastic that is used to carry water or oil or gas etc. -03945167 06 n 02 pipe 1 tobacco_pipe 0 010 @ 04493505 n 0000 %p 02881397 n 0000 ~ 02897572 n 0000 ~ 02937614 n 0000 ~ 02941408 n 0000 ~ 03039618 n 0000 ~ 03533014 n 0000 ~ 03742416 n 0000 %p 03794957 n 0000 %p 04313771 n 0000 | a tube with a small bowl at one end; used for smoking tobacco -03945459 06 n 01 tabor_pipe 0 001 @ 03355468 n 0000 | a small fipple flute that is played with the left hand while the right hand is free to beat a tabor -03945615 06 n 01 pipe 4 008 @ 04586932 n 0000 + 01727684 v 0101 ~ 02775483 n 0000 ~ 03006626 n 0000 ~ 03245724 n 0000 ~ 03343354 n 0000 ~ 03884397 n 0000 ~ 03950647 n 0000 | a tubular wind instrument -03945817 06 n 01 pipe_bomb 0 001 @ 02866578 n 0000 | a small homemade bomb usually contained in a metal pipe -03945928 06 n 01 pipe_cleaner 0 001 @ 03039947 n 0000 | cleaning implement consisting of a flexible tufted wire that is used to clean a pipe stem -03946076 06 n 01 pipe_cutter 0 001 @ 03489162 n 0000 | a hand tool for cutting pipe -03946162 06 n 02 pipefitting 0 pipe_fitting 0 002 @ 03353616 n 0000 ~ 04066659 n 0000 | fitting consisting of threaded pieces of pipe for joining pipes together -03946325 06 n 02 pipeline 0 line 6 004 @ 03944672 n 0000 ~i 02694776 n 0000 ~ 03423966 n 0000 ~ 03844459 n 0000 | a pipe used to transport liquids or gases; "a pipeline runs from the wells to the seaport" -03946532 06 n 02 piperacillin 0 Pipracil 0 002 @ 03910033 n 0000 ;u 06845599 n 0201 | a synthetic type of penicillin antibiotic (trade name Pipracil) used for moderate to severe infections -03946723 06 n 01 pipe_rack 0 001 @ 04038727 n 0000 | a rack for holding a smoker's pipes -03946814 06 n 01 piperazine 0 001 @ 04528630 n 0000 | vermifuge used to treat infestations by roundworms or pinworms -03946933 06 n 03 piperocaine 0 piperocaine_hydrochloride 0 Metycaine 0 001 @ 04277204 n 0000 | a compound used in the form of its hydrochloride as a local or spinal anesthetic -03947111 06 n 02 pipet 0 pipette 0 002 @ 03733925 n 0000 ~ 03247083 n 0000 | measuring instrument consisting of a graduated glass tube used to measure or transfer precise volumes of a liquid by drawing the liquid up into the tube -03947343 06 n 02 pipe_vise 0 pipe_clamp 0 001 @ 03036866 n 0000 | a clamp for holding pipe that is to be cut or threaded -03947466 06 n 02 pipe_wrench 0 tube_wrench 0 003 @ 02680754 n 0000 ~ 03001282 n 0000 ~ 04319774 n 0000 | adjustable wrench for gripping and turning a pipe; has two serrated jaws that are adjusted to grip the pipe -03947681 06 n 01 piping 1 002 @ 03106110 n 0000 + 01670645 v 0101 | a thin strip of covered cord used to edge hems -03947798 06 n 01 pique 0 001 @ 03309808 n 0000 | tightly woven fabric with raised cords -03947888 06 n 02 pirate 0 pirate_ship 0 004 @ 04194289 n 0000 + 03100026 a 0101 + 01471825 v 0104 ~ 03112605 n 0000 | a ship that is manned by pirates -03948041 06 n 02 piroxicam 0 Feldene 0 002 @ 03828465 n 0000 ;u 06845599 n 0201 | a nonsteroidal anti-inflammatory drug (trade name Feldene) used to treat arthritis and other inflammatory conditions -03948242 06 n 01 piste 0 002 @ 04231575 n 0000 ;c 00440747 n 0000 | a ski run densely packed with snow -03948347 06 n 01 piste 1 002 @ 03120491 n 0000 ;c 01171644 n 0000 | a flat rectangular area for fencing bouts -03948459 06 n 04 pistol 0 handgun 0 side_arm 0 shooting_iron 0 014 @ 03343853 n 0000 + 10435855 n 0101 ~ 02760658 n 0000 ~ 03178674 n 0000 ~ 03386343 n 0000 ~ 03427202 n 0000 ~ 03539293 n 0000 ~ 03902381 n 0000 ~ 04086273 n 0000 ~ 04138869 n 0000 ~ 04171629 n 0000 %p 04322026 n 0000 ~ 04530456 n 0000 ~ 04615149 n 0000 | a firearm that is held and fired with one hand -03948830 06 n 01 pistol_grip 0 001 @ 04322026 n 0000 | a handle (as of a gun or saw) shaped like the butt of a pistol -03948950 06 n 02 piston 0 plunger 0 005 @ 03736970 n 0000 #p 04062179 n 0000 + 01577635 v 0202 %p 03949145 n 0000 %p 03949317 n 0000 | mechanical device that has a plunging or thrusting motion -03949145 06 n 01 piston_ring 0 002 @ 04159354 n 0000 #p 03948950 n 0000 | seal consisting of a split metal ring that seals the gap between a piston and the cylinder wall -03949317 06 n 01 piston_rod 0 002 @ 03091044 n 0000 #p 03948950 n 0000 | connecting rod that moves or is moved by a piston -03949442 06 n 03 pit 0 quarry 0 stone_pit 0 004 @ 03302121 n 0000 + 01163847 v 0201 ~ 03003548 n 0000 ~ 03455279 n 0000 | a surface excavation for extracting stone or slate; "a British term for `quarry' is `stone pit'" -03949663 06 n 02 pit 2 pitfall 0 001 @ 04474466 n 0000 | a trap in the form of a concealed hole -03949761 06 n 01 pit 4 002 @ 02735688 n 0000 ;c 00449517 n 0000 | (auto racing) an area at the side of a racetrack where the race cars are serviced and refueled -03949924 06 n 01 pit 5 002 @ 02735688 n 0000 #p 03077074 n 0000 | (commodity exchange) the part of the floor of a commodity exchange where trading in a particular commodity is carried on -03950113 06 n 01 pit 6 002 @ 03285912 n 0000 ~ 03061819 n 0000 | an enclosure in which animals are made to fight -03950228 06 n 02 pitcher 0 ewer 0 002 @ 04531098 n 0000 ~ 03129001 n 0000 | an open vessel with a handle and a spout for pouring -03950359 06 n 01 pitchfork 0 003 @ 03489162 n 0000 + 01579340 v 0101 %p 04439585 n 0000 | a long-handled hand tool with sharp widely spaced prongs for lifting and pitching hay -03950537 06 n 01 pitching_wedge 0 001 @ 04569822 n 0000 | a wedge used to loft the golf ball over obstacles -03950647 06 n 01 pitch_pipe 0 001 @ 03945615 n 0000 | a small pipe sounding a tone of standard frequency; used to establish the starting pitch for unaccompanied singing -03950818 06 n 01 pithead 0 001 @ 03290771 n 0000 | the entrance to a coal mine -03950899 06 n 05 pith_hat 0 pith_helmet 0 sun_helmet 0 topee 0 topi 0 001 @ 04356595 n 0000 | a lightweight hat worn in tropical countries for protection from the sun -03951068 06 n 01 piton 0 001 @ 04275661 n 0000 | a metal spike with a hole for a rope; mountaineers drive it into ice or rock to use as a hold -03951213 06 n 03 Pitot-static_tube 0 Pitot_head 0 Pitot_tube 2 001 @ 03733925 n 0000 | measuring instrument consisting of a combined Pitot tube and static tube that measures total and static pressure; used in aircraft to measure airspeed -03951453 06 n 02 Pitot_tube 0 Pitot 0 001 @ 03733925 n 0000 | measuring instrument consisting of a right-angled tube with an open end that is directed in opposition to the flow of a fluid and used to measure the velocity of fluid flow -03951690 06 n 02 pitprop 0 sprag 1 001 @ 04011242 n 0000 | a wooden prop used to support the roof of a mine -03951800 06 n 01 pitsaw 0 001 @ 04503836 n 0000 | a large two-handed saw formerly used to cut logs into planks; one man stood above the log and the other in a pit below -03951971 06 n 02 pivot 0 pin 2 004 @ 02764614 n 0000 + 02046572 v 0101 ~ 03402080 n 0000 ~ 03944024 n 0000 | axis consisting of a short shaft that supports something that turns -03952150 06 n 01 pivoting_window 0 001 @ 04587648 n 0000 | a window that opens by pivoting either horizontally or vertically -03952277 06 n 03 pixel 0 pel 0 picture_element 0 003 @ 03081021 n 0000 #p 04054795 n 0000 ;c 06128570 n 0000 | (computer science) the smallest discrete component of an image or picture on a CRT screen (usually a colored dot); "the greater the number of pixels per inch the greater the resolution" -03952576 06 n 03 pizzeria 0 pizza_shop 0 pizza_parlor 0 001 @ 04202417 n 0000 | a shop where pizzas are made and sold -03952696 06 n 01 placebo 0 002 @ 03740161 n 0000 ~ 02678174 n 0000 | an innocuous or inert medication; given as a pacifier or to the control group in experiments on the efficacy of a drug -03952886 06 n 01 place_mat 0 002 @ 03728131 n 0000 @ 04380617 n 0000 | a mat serving as table linen for an individual place setting -03953020 06 n 02 place_of_business 0 business_establishment 0 008 @ 03297735 n 0000 ~ 03413428 n 0000 ~ 03506370 n 0000 ~ 03542727 n 0000 ~ 03726116 n 0000 ~ 03748162 n 0000 ~ 03841666 n 0000 ~ 04286128 n 0000 | an establishment (a factory or an assembly plant or retail store or warehouse etc.) where business is conducted, goods are made or stored or processed or where services are rendered -03953416 06 n 04 place_of_worship 0 house_of_prayer 0 house_of_God 0 house_of_worship 0 010 @ 02913152 n 0000 ~ 02833040 n 0000 ~ 03007130 n 0000 ~ 03028079 n 0000 ~ 03099622 n 0000 ~ 03724756 n 0000 ~ 03788195 n 0000 ~ 04210390 n 0000 ~ 04374735 n 0000 ~ 04407435 n 0000 | any building where congregations gather for prayer -03953743 06 n 02 place_setting 0 setting 2 002 @ 04175380 n 0000 + 00407848 v 0203 | a table service for one person; "a place setting of sterling flatware" -03953901 06 n 01 placket 0 002 @ 03932670 n 0000 #p 04230808 n 0000 | a piece of cloth sewn under an opening -03954012 06 n 02 plain_weave 0 taffeta_weave 0 001 @ 04568298 n 0000 | a basic style of weave in which the weft and warp threads intertwine alternately to produce a checkerboard effect -03954199 06 n 02 plan 0 architectural_plan 0 004 @ 03234306 n 0000 + 01639714 v 0102 ~ 03281052 n 0000 ~ 03367147 n 0000 | scale drawing of a structure; "the plans for City Hall were on file" -03954393 06 n 02 planchet 0 coin_blank 0 001 @ 03208556 n 0000 | a flat metal disk ready for stamping as a coin -03954507 06 n 01 planchette 0 002 @ 02856463 n 0000 #p 03858662 n 0000 | a triangular board supported on casters; when lightly touched with the fingertips it is supposed to spell out supernatural (or unconscious) messages -03954731 06 n 03 plane 0 carpenter's_plane 0 woodworking_plane 0 020 @ 03265032 n 0000 @ 03489162 n 0000 + 01307389 v 0101 + 01249490 v 0101 ~ 02815478 n 0000 ~ 02854532 n 0000 ~ 02917607 n 0000 ~ 03004620 n 0000 ~ 03034516 n 0000 ~ 03075500 n 0000 ~ 03229115 n 0000 ~ 03382969 n 0000 ~ 03590932 n 0000 ~ 03601638 n 0000 ~ 03729647 n 0000 ~ 03849275 n 0000 ~ 04114996 n 0000 ~ 04156297 n 0000 ~ 04247630 n 0000 ~ 04283585 n 0000 | a carpenter's hand tool with an adjustable blade for smoothing or shaping wood; "the cabinetmaker used a plane for the finish work" -03955296 06 n 03 plane 2 planer 0 planing_machine 0 005 @ 03997484 n 0000 + 01249490 v 0201 + 01307389 v 0201 + 01307389 v 0101 + 01249490 v 0101 | a power tool for smoothing or shaping wood -03955489 06 n 01 plane_seat 0 003 @ 04161358 n 0000 #p 02690373 n 0000 %p 04162706 n 0000 | a seat on a commercial airliner -03955615 06 n 01 plane_table 0 001 @ 04365484 n 0000 | surveying instrument consisting of a drawing board and a ruler that are mounted on a tripod; used to sight and map topographical details -03955809 06 n 01 planetarium 1 002 @ 03777283 n 0000 ~ 03856465 n 0000 | an apparatus or model for representing the solar systems -03955941 06 n 01 planetarium 2 002 @ 03851341 n 0000 #p 03956157 n 0000 | an optical device for projecting images of celestial bodies and other astronomical phenomena onto the inner surface of a hemispherical dome -03956157 06 n 01 planetarium 3 002 @ 02913152 n 0000 %p 03955941 n 0000 | a building housing an instrument for projecting the positions of the planets onto a domed ceiling -03956331 06 n 04 planetary_gear 0 epicyclic_gear 0 planet_wheel 0 planet_gear 0 002 @ 03430551 n 0000 #p 03292736 n 0000 | an outer gear that revolves about a central sun gear of an epicyclic train -03956531 06 n 01 plank-bed 0 001 @ 02818832 n 0000 | a bed of boards (without a mattress) -03956623 06 n 01 planking 0 003 @ 03122748 n 0000 ;c 04194289 n 0000 + 01336159 v 0101 | (nautical) a covering or flooring constructed of planks (as on a ship) -03956785 06 n 01 planner 0 002 @ 03832673 n 0000 + 00704690 v 0101 | a notebook for recording appointments and things to be done, etc. -03956922 06 n 03 plant 1 works 2 industrial_plant 0 013 @ 02914991 n 0000 ~ 02878107 n 0000 ~ 02897237 n 0000 ~ 03212811 n 0000 ~ 03316406 n 0000 -c 03425956 n 0000 ~ 03772269 n 0000 ~ 03871860 n 0000 ~ 04065909 n 0000 ~ 04068441 n 0000 ~ 04131811 n 0000 ~ 04178668 n 0000 ~ 04246156 n 0000 | buildings for carrying on industrial labor; "they built a large plant to manufacture automobiles" -03957315 06 n 01 planter 0 002 @ 03991062 n 0000 + 01567275 v 0101 | a decorative pot for house plants -03957420 06 n 03 plaster 0 adhesive_plaster 0 sticking_plaster 0 002 @ 02680337 n 0000 ~ 03121556 n 0000 | adhesive tape used in dressing wounds -03957567 06 n 02 plaster 1 plasterwork 0 003 @ 04362025 n 0000 + 01360899 v 0101 ~ 03890358 n 0000 | a surface of hardened plaster (as on a wall or ceiling); "there were cracks in the plaster" -03957762 06 n 02 plasterboard 0 gypsum_board 0 002 @ 04547991 n 0000 ~ 04189816 n 0000 | wallboard with a gypsum plaster core bonded to layers of paper or fiberboard; used instead of plaster or wallboard to make interior walls -03957991 06 n 01 plastering_trowel 0 001 @ 04489817 n 0000 | a trowel used to spread and smooth plaster -03958097 06 n 01 plastic_art 0 002 @ 02743547 n 0000 ~ 04157320 n 0000 | the arts of shaping or modeling; carving and sculpture -03958227 06 n 01 plastic_bag 0 002 @ 02773037 n 0000 ~ 02841063 n 0000 | a bag made of thin plastic material -03958338 06 n 01 plastic_bomb 0 002 @ 02866578 n 0000 %s 03958448 n 0000 | a bomb made of plastic explosive -03958448 06 n 02 plastic_explosive 0 plastique 0 002 @ 03305135 n 0000 #s 03958338 n 0000 | an explosive material that is easily molded around the object it is intended to destroy -03958630 06 n 01 plastic_laminate 0 002 @ 03635668 n 0000 ~ 03385295 n 0000 | a laminate made by bonding plastic layers -03958752 06 n 01 plastic_wrap 0 003 @ 04605726 n 0000 ~ 02992368 n 0000 ~ 04135710 n 0000 | wrapping consisting of a very thin transparent sheet of plastic -03958910 06 n 01 plastron 0 001 @ 03872495 n 0000 | a large pad worn by a fencer to protect the chest -03959014 06 n 01 plastron 1 001 @ 02895154 n 0000 | a metal breastplate that was worn under a coat of mail -03959123 06 n 01 plastron 2 002 @ 04198015 n 0000 #p 03238879 n 0000 | the front of man's dress shirt -03959227 06 n 01 plastron 3 002 @ 04198015 n 0000 #p 02861387 n 0000 | the ornamental front of a woman's bodice or shirt -03959350 06 n 01 plat 0 001 @ 03720163 n 0000 | a map showing planned or actual features of an area (streets and building lots etc.) -03959485 06 n 01 plate 0 007 @ 03361945 n 0000 ~ 03180280 n 0000 ~ 03202123 n 0000 ~ 03887603 n 0000 ~ 04130447 n 0000 ~ 04263417 n 0000 ~ 04311799 n 0000 | dish on which food is served or from which food is eaten -03959701 06 n 03 plate 1 scale 3 shell 1 004 @ 04192858 n 0000 ~ 02740764 n 0000 ~ 03539433 n 0000 ~ 04191346 n 0000 | a metal sheathing of uniform thickness (such as the shield attached to an artillery piece to protect the gunners) -03959936 06 n 01 plate 2 020 @ 04188643 n 0000 + 01395049 v 0101 ~ 02772868 n 0000 ~ 03156606 n 0000 ~ 03161725 n 0000 ~ 03208556 n 0000 ~ 03289025 n 0000 ~ 03296597 n 0000 ~ 03343047 n 0000 ~ 03352853 n 0000 ~ 03458753 n 0000 ~ 03471347 n 0000 ~ 03635452 n 0000 ~ 03661180 n 0000 ~ 03694761 n 0000 ~ 03806652 n 0000 ~ 03961250 n 0000 ~ 03961503 n 0000 ~ 03966582 n 0000 ~ 04391276 n 0000 | a sheet of metal or wood or glass or plastic -03960374 06 n 02 plate 3 collection_plate 0 001 @ 04060904 n 0000 | a shallow receptacle for collection in church -03960490 06 n 01 plate 5 003 @ 04341414 n 0000 #p 04341686 n 0000 ~ 04548613 n 0000 | structural member consisting of a horizontal beam that provides bearing and anchorage -03960664 06 n 01 plate 6 002 @ 03561345 n 0000 ~ 03323485 n 0000 | a full-page illustration (usually on slick paper) -03960783 06 n 02 plate 7 photographic_plate 0 002 @ 04188643 n 0000 ~ 04032392 n 0000 | a flat sheet of metal or glass on which a photographic image can be recorded -03960950 06 n 01 plate 8 002 @ 02714315 n 0000 #p 04494204 n 0000 | the positively charged electrode in a vacuum tube -03961070 06 n 02 plate_glass 0 sheet_glass 0 005 @ 04188643 n 0000 %s 14881303 n 0000 ~ 03122573 n 0000 ~ 03881893 n 0000 ~ 04237924 n 0000 | glass formed into large thin sheets -03961250 06 n 01 plate_iron 0 005 @ 03959936 n 0000 ~ 02863995 n 0000 ~ 04189392 n 0000 ~ 04330896 n 0000 ~ 04390338 n 0000 | a plate of iron -03961394 06 n 01 platen 0 001 @ 04101497 n 0000 | the roller on a typewriter against which the keys strike -03961503 06 n 01 platen 1 001 @ 03959936 n 0000 | the flat plate of a printing press that presses the paper against the type -03961630 06 n 01 platen 2 001 @ 04379243 n 0000 | work table of a machine tool -03961711 06 n 01 plate_rack 0 001 @ 04038727 n 0000 | a rack for holding plates to dry after they have been washed -03961828 06 n 01 plate_rail 0 001 @ 04046590 n 0000 | rail or narrow shelf fixed to a wall to display plates -03961939 06 n 01 platform 0 027 @ 03536348 n 0000 ~ 02756601 n 0000 ~ 02786984 n 0000 ~ 02986757 n 0000 ~ 03139998 n 0000 ~ 03159640 n 0000 ~ 03167666 n 0000 ~ 03217333 n 0000 ~ 03373415 n 0000 ~ 03379592 n 0000 ~ 03380461 n 0000 ~ 03383378 n 0000 ~ 03638511 n 0000 ~ 03639360 n 0000 ~ 03647691 n 0000 ~ 03782558 n 0000 ~ 03879582 n 0000 ~ 03933529 n 0000 ~ 04092959 n 0000 ~ 04120998 n 0000 ~ 04141573 n 0000 ~ 04296562 n 0000 ~ 04296949 n 0000 ~ 04297944 n 0000 ~ 04454540 n 0000 ~ 04501550 n 0000 ~ 04501713 n 0000 | a raised horizontal surface; "the speaker mounted the platform" -03962525 06 n 02 platform 1 weapons_platform 0 003 @ 04341686 n 0000 ;c 08199025 n 0000 ~ 03469175 n 0000 | any military structure or vehicle bearing weapons -03962685 06 n 01 platform 3 003 @ 03085915 n 0000 %p 03082979 n 0000 %p 06568134 n 0000 | the combination of a particular computer and a particular operating system -03962852 06 n 01 platform_bed 0 001 @ 02818832 n 0000 | a bed without springs -03962932 06 n 01 platform_rocker 0 001 @ 04099969 n 0000 | rocking chair on a stationary base -03963028 06 n 02 plating 0 metal_plating 0 004 @ 03058107 n 0000 + 01395049 v 0101 ~ 03445326 n 0000 ~ 04220805 n 0000 | a thin coating of metal deposited on a surface -03963198 06 n 01 platter 0 001 @ 03361945 n 0000 | a large shallow dish used for serving food -03963294 06 n 01 playback 0 003 @ 03278248 n 0000 #p 04063373 n 0000 + 01738347 v 0101 | electronic equipment comprising the part of a tape recorder that reproduces the recorded material -03963483 06 n 02 playbox 0 play-box 0 002 @ 02883344 n 0000 ;r 08860123 n 0000 | a box for a child's toys and personal things (especially at a boarding school) -03963645 06 n 01 playground 0 004 @ 04610879 n 0000 %p 04167759 n 0000 %p 04238128 n 0000 %p 04371774 n 0000 | yard consisting of an outdoor area for children's play -03963813 06 n 02 playhouse 0 wendy_house 0 002 @ 03964744 n 0000 ~ 04477966 n 0000 | plaything consisting of a small model of a house that children can play inside of -03963982 06 n 01 playing_card 0 023 @ 02962545 n 0000 #m 07956721 n 0000 ~ 00492083 n 0000 ~ 02673291 n 0000 ~ 03053788 n 0000 ~ 03182795 n 0000 ~ 03187972 n 0000 ~ 03233246 n 0000 %p 03313602 n 0000 ~ 03314028 n 0000 ~ 03414574 n 0000 ~ 03507048 n 0000 ~ 03527000 n 0000 ~ 03601964 n 0000 ~ 04223435 n 0000 ~ 04266660 n 0000 ~ 04286307 n 0000 ~ 04327825 n 0000 ~ 04351233 n 0000 ~ 04480415 n 0000 ~ 04491135 n 0000 ~ 04584512 n 0000 %p 07271942 n 0000 | one of a pack of cards that are used to play card games -03964495 06 n 02 playpen 0 pen 3 001 @ 03285912 n 0000 | a portable enclosure in which babies may be left to play -03964611 06 n 01 playsuit 0 001 @ 03859958 n 0000 | a sports outfit for women or children; usually consists of shorts and a blouse -03964744 06 n 02 plaything 0 toy 0 035 @ 00021939 n 0000 + 00013328 v 0202 ~ 02779435 n 0000 ~ 02782329 n 0000 ~ 03061211 n 0000 ~ 03219135 n 0000 ~ 03219362 n 0000 ~ 03397947 n 0000 ~ 03523633 n 0000 ~ 03548402 n 0000 ~ 03590588 n 0000 ~ 03603442 n 0000 ~ 03605073 n 0000 ~ 03607756 n 0000 ~ 03621473 n 0000 ~ 03655295 n 0000 ~ 03736809 n 0000 ~ 03902972 n 0000 ~ 03941231 n 0000 ~ 03944138 n 0000 ~ 03963813 n 0000 ~ 03974070 n 0000 ~ 03983499 n 0000 ~ 04056289 n 0000 ~ 04134339 n 0000 ~ 04167759 n 0000 ~ 04238128 n 0000 ~ 04240097 n 0000 ~ 04318551 n 0000 ~ 04371774 n 0000 ~ 04399382 n 0000 ~ 04454240 n 0000 ~ 04468707 n 0000 ~ 04561548 n 0000 ~ 04613555 n 0000 | an artifact designed to be played with -03965456 06 n 06 plaza 1 mall 1 center 1 shopping_mall 0 shopping_center 0 shopping_centre 0 002 @ 03748162 n 0000 %p 03378005 n 0000 | mercantile establishment consisting of a carefully landscaped complex of shops representing leading merchandisers; usually includes restaurants and a convenient parking area; a modern version of the traditional marketplace; "a good plaza should have a movie house"; "they spent their weekends at the local malls" -03965907 06 n 02 pleat 0 plait 0 008 @ 13907415 n 0000 + 01674717 v 0203 + 01387301 v 0102 ~ 02886035 n 0000 ~ 03582840 n 0000 ~ 03616091 n 0000 ~ 03624653 n 0000 ~ 04494906 n 0000 | any of various types of fold formed by doubling fabric back upon itself and then pressing or stitching into shape -03966206 06 n 01 plenum 0 001 @ 03285912 n 0000 | an enclosed space in which the air pressure is higher than outside -03966325 06 n 01 plethysmograph 0 003 @ 03733925 n 0000 ~ 02863176 n 0000 ~ 03196841 n 0000 | a measuring instrument for measuring changes in volume of a part or organ or whole body (usually resulting from fluctuations in the amount of blood it contains) -03966582 06 n 02 pleximeter 0 plessimeter 0 001 @ 03959936 n 0000 | a small thin metal plate held against the body and struck with a plexor in percussive examinations -03966751 06 n 03 plexor 0 plessor 0 percussor 0 003 @ 03481172 n 0000 ;c 06043075 n 0000 + 01248023 v 0301 | (medicine) a small hammer with a rubber head used in percussive examinations of the chest and in testing reflexes -03966976 06 n 03 pliers 0 pair_of_pliers 0 plyers 0 009 @ 03489162 n 0000 @ 03082127 n 0000 ;u 06295235 n 0000 %p 03594277 n 0000 ~ 03684224 n 0000 ~ 03816530 n 0000 ~ 04023021 n 0000 ~ 04088343 n 0000 ~ 04240867 n 0000 | a gripping hand tool with two hinged arms and (usually) serrated jaws -03967270 06 n 01 plimsoll 0 002 @ 03472535 n 0000 ;r 08860123 n 0000 | a light gym shoe with a rubber sole and a canvas top -03967396 06 n 01 plotter 0 003 @ 03574816 n 0000 ;c 03082979 n 0000 + 01693453 v 0102 | an instrument (usually driven by a computer) for drawing graphs or pictures -03967562 06 n 02 plow 0 plough 0 005 @ 04451818 n 0000 + 01741864 v 0202 + 01741864 v 0101 ~ 02918204 n 0000 ~ 03780047 n 0000 | a farm tool having one or more heavy blades to break the soil and cut a furrow prior to sowing -03967788 06 n 03 plowshare 0 ploughshare 0 share 0 002 @ 04569520 n 0000 #p 03780047 n 0000 | a sharp steel wedge that cuts loose the top layer of soil -03967942 06 n 03 plug 0 stopper 0 stopple 0 013 @ 02853449 n 0000 + 01220636 v 0302 + 01478002 v 0204 + 01220636 v 0201 + 01422886 v 0101 ~ 02919648 n 0000 ~ 03108853 n 0000 ~ 03232815 n 0000 ~ 03262072 n 0000 ~ 03343234 n 0000 ~ 04388040 n 0000 ~ 04388162 n 0000 ~ 04390977 n 0000 | blockage consisting of an object designed to fill a hole tightly -03968293 06 n 02 plug 3 male_plug 0 002 @ 03269401 n 0000 ~ 04402342 n 0000 | an electrical device with two or three pins that is inserted in a socket to make an electrical connection -03968479 06 n 01 plug_fuse 0 001 @ 03407369 n 0000 | a fuse with a thread that screws into a socket -03968581 06 n 01 plughole 0 002 @ 03526198 n 0000 ;r 08860123 n 0000 | a hole into which a plug fits (especially a hole where water drains away) -03968728 06 n 03 plumb_bob 0 plumb 0 plummet 0 004 @ 02860239 n 0000 #p 03969627 n 0000 + 01487830 v 0201 + 00465634 v 0201 | the metal bob of a plumb line -03968886 06 n 02 plumber's_snake 0 auger 1 002 @ 04248010 n 0000 @ 03489162 n 0000 | a long flexible steel coil for dislodging stoppages in curved pipes -03969041 06 n 02 plumbing 0 plumbing_system 0 002 @ 04516874 n 0000 %p 03969259 n 0000 | utility consisting of the pipes and fixtures for the distribution of water or gas in a building and for the disposal of sewage -03969259 06 n 01 plumbing_fixture 0 008 @ 03354613 n 0000 #p 03969041 n 0000 ~ 03387815 n 0000 ~ 04208936 n 0000 ~ 04223580 n 0000 ~ 04446521 n 0000 ~ 04515991 n 0000 ~ 04559451 n 0000 | a fixture for the distribution and use of water in a building -03969510 06 n 01 plumb_level 0 001 @ 02966786 n 0000 | a carpenter's level with a plumb line at right angles to it -03969627 06 n 02 plumb_line 0 perpendicular 1 004 @ 03106110 n 0000 ~ 03651947 n 0000 %p 03968728 n 0000 ~ 03969902 n 0000 | a cord from which a metal weight is suspended pointing directly to the earth's center of gravity; used to determine the vertical from a given point -03969902 06 n 01 plumb_rule 0 001 @ 03969627 n 0000 | a plumb line attached to a narrow board -03969998 06 n 01 plume 0 004 @ 02681518 n 0000 + 01680132 v 0101 ~ 02685082 n 0000 ~ 03880951 n 0000 | a feather or cluster of feathers worn as an ornament -03970156 06 n 02 plunger 1 plumber's_helper 0 003 @ 03489162 n 0000 + 01577635 v 0102 + 01577093 v 0104 | hand tool consisting of a stick with a rubber suction cup at one end; used to clean clogged drains -03970363 06 n 01 plus_fours 0 003 @ 02896442 n 0000 ;c 00464894 n 0000 ;u 06295235 n 0000 | men's baggy knickers hanging below the knees; formerly worn for sports (especially golf) -03970546 06 n 01 plush 0 002 @ 03309808 n 0000 + 02231998 a 0101 | a fabric with a nap that is longer and softer than velvet -03970673 06 n 02 plutonium_trigger 0 plutonium_pit 0 002 @ 04483073 n 0000 #p 02753044 n 0000 | a steel or beryllium sphere containing plutonium 239 that triggers nuclear fission when compressed by explosives -03970884 06 n 01 ply 0 002 @ 03650173 n 0000 ;u 06307152 n 0000 | (usually in combinations) one of several layers of cloth or paper or wood as in plywood -03971040 06 n 01 ply 1 001 @ 04332783 n 0000 | one of the strands twisted together to make yarn or rope or thread; often used in combination; "three-ply cord"; "four-ply yarn" -03971218 06 n 02 plywood 0 plyboard 0 001 @ 03635668 n 0000 | a laminate made of thin layers of wood -03971321 06 n 01 pneumatic_drill 0 001 @ 03995372 n 0000 | a power drill powered by compressed air -03971422 06 n 02 pneumatic_tire 0 pneumatic_tyre 0 010 @ 04440749 n 0000 #p 02974003 n 0000 #p 02836035 n 0000 %p 02977822 n 0000 ~ 03359950 n 0000 %p 03573005 n 0000 ~ 04040247 n 0000 ~ 04252814 n 0000 %p 04477091 n 0000 ~ 04494762 n 0000 | a tire made of reinforced rubber and filled with compressed air; used on motor vehicles and bicycles etc -03971771 06 n 02 pneumococcal_vaccine 0 Pneumovax 0 002 @ 04517535 n 0000 ;u 06845599 n 0201 | vaccine (trade name Pneumovax) effective against the 23 most common strains of pneumococcus -03971960 06 n 01 p-n_junction 0 001 @ 03093792 n 0000 | the junction between a p-type semiconductor and an n-type semiconductor; "a p-n junction has marked rectifying characteristics" -03972146 06 n 01 p-n-p_transistor 0 001 @ 04471632 n 0000 | a junction transistor having an n-type semiconductor between a p-type semiconductor that serves as an emitter and a p-type semiconductor that serves as a collector -03972372 06 n 01 poacher 0 003 @ 03101986 n 0000 @ 04531098 n 0000 + 00544404 v 0101 | a cooking vessel designed to poach food (such as fish or eggs) -03972524 06 n 01 pocket 0 010 @ 03993180 n 0000 #p 03419014 n 0000 + 02292432 v 0101 + 02278592 v 0101 ~ 02895328 n 0000 ~ 03521899 n 0000 ~ 03898395 n 0000 %p 03973402 n 0000 ~ 04234260 n 0000 ~ 04532398 n 0000 | a small pouch inside a garment for carrying small articles -03972799 06 n 01 pocket 1 004 @ 09379111 n 0000 #p 03982430 n 0000 ~ 03110100 n 0000 ~ 04214958 n 0000 | an opening at the corner or on the side of a billiard table into which billiard balls are struck -03973003 06 n 01 pocket_battleship 0 001 @ 02812201 n 0000 | a small battleship built to conform with treaty limitations on tonnage and armament (from 1925 to 1930) -03973170 06 n 03 pocketbook 1 pocket_book 1 pocket_edition 0 001 @ 03886432 n 0000 | pocket-sized paperback book -03973285 06 n 02 pocketcomb 0 pocket_comb 0 001 @ 03074855 n 0000 | a small comb suitable for carrying in a pocket -03973402 06 n 01 pocket_flap 0 002 @ 03357376 n 0000 #p 03972524 n 0000 | a flap that covers the access to a pocket -03973520 06 n 01 pocket-handkerchief 0 001 @ 03485794 n 0000 | a handkerchief that is carried in a pocket -03973628 06 n 02 pocketknife 0 pocket_knife 0 004 @ 03623556 n 0000 ~ 03038480 n 0000 ~ 03911658 n 0000 ~ 04373089 n 0000 | a knife with a blade that folds into the handle; suitable for carrying in the pocket -03973839 06 n 01 pocket_watch 0 001 @ 04555897 n 0000 | a watch that is carried in a small watch pocket -03973945 06 n 02 pod 0 fuel_pod 0 002 @ 03094503 n 0000 #p 02691156 n 0000 | a detachable container of fuel on an airplane -03974070 06 n 01 pogo_stick 0 001 @ 03964744 n 0000 | plaything consisting of a pole with foot rests and a strong spring; propelled by jumping -03974215 06 n 01 point 0 018 @ 08566028 n 0000 #p 02763714 n 0000 #p 03558007 n 0000 #p 03623556 n 0000 #p 03816136 n 0000 #p 03908204 n 0000 #p 03940256 n 0000 + 00392960 v 0103 ~ 02743050 n 0000 ~ 02790322 n 0000 ~ 02790550 n 0000 ~ 03151916 n 0000 ~ 03188168 n 0000 ~ 03823111 n 0000 ~ 03935698 n 0000 ~ 03943544 n 0000 ~ 04271371 n 0000 ~ 04276531 n 0000 | sharp end; "he stuck the point of the knife into a tree"; "he broke the point of his pencil" -03974671 06 n 02 point 1 power_point 0 002 @ 04548771 n 0000 ;r 08860123 n 0000 | a wall socket -03974769 06 n 02 point 2 gunpoint 1 002 @ 03469687 n 0000 + 01152670 v 0101 | the gun muzzle's direction; "he held me up at the point of a gun" -03974915 06 n 01 point-and-shoot_camera 0 001 @ 02942699 n 0000 | a lightweight photographic camera with an autofocus -03975035 06 n 01 pointed_arch 0 005 @ 02733524 n 0000 ~ 03246197 n 0000 ~ 03448956 n 0000 ~ 03842754 n 0000 ~ 04478383 n 0000 | an arch with a pointed apex; characteristic of Gothic architecture -03975232 06 n 01 pointer 0 007 @ 03568117 n 0000 + 02713184 v 0102 + 01152670 v 0101 + 00923793 v 0102 ~ 03482523 n 0000 ~ 03668279 n 0000 ~ 03816394 n 0000 | an indicator as on a dial -03975419 06 n 01 pointillism 0 002 @ 03434943 n 0000 + 10447924 n 0101 | a genre of painting characterized by the application of paint in dots and small strokes; developed by Georges Seurat and his followers in late 19th century France -03975657 06 n 01 pointing_trowel 0 001 @ 04489817 n 0000 | a trowel used to fill and finish masonry joints with mortar or cement -03975788 06 n 02 point_lace 0 needlepoint 1 001 @ 03631177 n 0000 | lace worked with a needle in a buttonhole stitch on a paper pattern -03975926 06 n 04 poker 0 stove_poker 0 fire_hook 0 salamander 0 002 @ 03346135 n 0000 + 01424220 v 0101 | fire iron consisting of a metal rod with a handle; used to stir a fire -03976105 06 n 02 polarimeter 0 polariscope 0 001 @ 03851341 n 0000 | an optical device used to measure the rotation of the plane of vibration of polarized light -03976268 06 n 01 Polaroid 0 003 @ 03339296 n 0000 #p 04356056 n 0000 ;u 06845599 n 0000 | (trade mark) a plastic film that can polarize a beam of light; often used in sunglasses to eliminate glare -03976467 06 n 02 Polaroid_camera 0 Polaroid_Land_camera 0 003 @ 02942699 n 0000 ;u 06845599 n 0201 ;u 06845599 n 0101 | a camera that develops and produces a positive print within seconds -03976657 06 n 01 pole 0 012 @ 04100174 n 0000 + 00239973 v 0101 + 01218652 v 0101 + 01372189 v 0102 ~ 02792948 n 0000 ~ 02871824 n 0000 ~ 02931836 n 0000 ~ 03051396 n 0000 ~ 03726993 n 0000 ~ 04230603 n 0000 ~ 04267577 n 0000 ~ 04319937 n 0000 | a long (usually round) rod of wood or metal or plastic -03976960 06 n 02 pole 1 magnetic_pole 0 004 @ 08566028 n 0000 #p 03705379 n 0000 ~ 03817331 n 0000 ~ 03987674 n 0000 | one of the two ends of a magnet where the magnetism seems to be concentrated -03977158 06 n 01 pole 2 001 @ 04285622 n 0000 | a long fiberglass sports implement used for pole vaulting -03977266 06 n 02 poleax 0 poleaxe 0 003 @ 02811468 n 0000 + 01258642 v 0202 + 01258642 v 0101 | a battle ax used in the Middle Ages; a long handled ax and a pick -03977430 06 n 02 poleax 1 poleaxe 1 003 @ 02764044 n 0000 + 01258642 v 0202 + 01258642 v 0101 | an ax used to slaughter cattle; has a hammer opposite the blade -03977592 06 n 01 police_boat 0 001 @ 02858304 n 0000 | a boat used by harbor police -03977678 06 n 03 police_station 0 police_headquarters 0 station_house 0 002 @ 04306080 n 0000 %p 04291069 n 0000 | a station that serves as headquarters for police in a particular district; serves as a place from which policemen are dispatched and to which arrested persons are brought -03977966 06 n 06 police_van 0 police_wagon 0 paddy_wagon 0 patrol_wagon 0 wagon 2 black_Maria 0 001 @ 04520170 n 0000 | van used by police to transport prisoners -03978130 06 n 01 poliovirus_vaccine 0 003 @ 04517535 n 0000 ~ 04122011 n 0000 ~ 04130715 n 0000 | vaccine prepared from poliovirus to provide immunity to poliomyelitis -03978300 06 n 01 polka_dot 0 001 @ 03178782 n 0000 | design consisting of a pattern of regularly spaced circular spots -03978421 06 n 01 polling_booth 0 002 @ 02873839 n 0000 #p 08538917 n 0000 | a temporary booth in a polling place which people enter to cast their votes -03978575 06 n 01 polo_ball 0 001 @ 02778669 n 0000 | wooden ball that is struck with mallets in playing polo -03978686 06 n 02 polo_mallet 0 polo_stick 0 002 @ 03715892 n 0000 @ 04318131 n 0000 | a mallet used to strike the ball in polo -03978815 06 n 01 polonaise 0 001 @ 03236735 n 0000 | a woman's dress with a tight bodice and an overskirt drawn back to reveal a colorful underskirt -03978966 06 n 02 polo_shirt 0 sport_shirt 0 001 @ 04197391 n 0000 | a shirt with short sleeves designed for comfort and casual wear -03979100 06 n 01 polychrome 0 001 @ 04599396 n 0000 | a piece of work composed of or decorated in many colors -03979212 06 n 01 polyconic_projection 0 001 @ 03090856 n 0000 | a conic projection of a map having distances between meridians equal to those distances on a globe -03979377 06 n 01 polyester 0 002 @ 03309808 n 0000 ~ 03158414 n 0000 | any of a large class of synthetic fabrics -03979492 06 n 01 polygraph 0 002 @ 03739693 n 0000 ~ 03662452 n 0000 | a medical instrument that records several physiological processes simultaneously (e.g., pulse rate and blood pressure and respiration and perspiration) -03979717 06 n 01 polymyxin 0 001 @ 02716866 n 0000 | any of several toxic antibiotics obtained from a particular soil bacterium -03979847 06 n 02 polypropenonitrile 0 Acrilan 0 002 @ 14593671 n 0000 ;u 06845599 n 0201 | acrylic resin used to make a strong soft crease-resistant fabric (trade name Acrilan) -03980026 06 n 02 pomade 0 pomatum 0 003 @ 03475823 n 0000 + 00040084 v 0101 ~ 02901793 n 0000 | hairdressing consisting of a perfumed oil or ointment -03980178 06 n 02 pommel 0 saddlebow 0 003 @ 03485997 n 0000 #p 04123740 n 0000 ~ 03536931 n 0000 | handgrip formed by the raised front part of a saddle -03980332 06 n 01 pommel 2 002 @ 03485997 n 0000 #p 03980478 n 0000 | a handgrip that a gymnast uses when performing exercises on a pommel horse -03980478 06 n 02 pommel_horse 0 side_horse 0 002 @ 03538037 n 0000 %p 03980332 n 0000 | a gymnastic horse with a cylindrical body covered with leather and two upright handles (pommels) near the center; held upright by two steel supports, one at each end -03980734 06 n 02 pompon 0 pom-pom 1 001 @ 02681518 n 0000 | decoration consisting of a ball of tufted wool or silk; usually worn on a hat -03980874 06 n 01 poncho 0 001 @ 03045337 n 0000 | a blanket-like cloak with a hole in the center for the head -03980986 06 n 01 pongee 0 001 @ 03309808 n 0000 | a soft thin cloth woven from raw silk (or an imitation) -03981094 06 n 02 poniard 0 bodkin 3 002 @ 03158885 n 0000 + 01231878 v 0101 | a dagger with a slender blade -03981204 06 n 01 Ponte_25_de_Abril 0 002 @i 04366367 n 0000 #p 08986066 n 0000 | a suspension bridge across the Tagus River at Lisbon -03981340 06 n 01 pontifical 0 001 @ 04532106 n 0000 | the vestments and other insignia of a pontiff (especially a bishop) -03981464 06 n 01 pontoon 0 002 @ 03364340 n 0000 #p 02704645 n 0000 | a float supporting a seaplane -03981566 06 n 01 pontoon 1 003 @ 02792552 n 0000 #p 03981760 n 0000 ;c 02858304 n 0000 | (nautical) a floating structure (as a flat-bottomed boat) that serves as a dock or to support a bridge -03981760 06 n 03 pontoon_bridge 0 bateau_bridge 0 floating_bridge 0 002 @ 02898711 n 0000 %p 03981566 n 0000 | a temporary bridge built over a series of pontoons -03981924 06 n 04 pony_cart 0 ponycart 0 donkey_cart 0 tub-cart 0 001 @ 02970849 n 0000 | a cart with an underslung axle and two seats -03982060 06 n 01 pool 0 005 @ 03302121 n 0000 ~ 03035510 n 0000 ~ 04371225 n 0000 ~ 04542858 n 0000 ~ 04560882 n 0000 | an excavation that is (usually) filled with water -03982232 06 n 01 pool_ball 0 002 @ 02778669 n 0000 ~ 03267113 n 0000 | ball used in playing pool -03982331 06 n 01 poolroom 0 001 @ 04105893 n 0000 | a room with pool tables where pool is played -03982430 06 n 03 pool_table 0 billiard_table 0 snooker_table 0 004 @ 04379243 n 0000 @ 03414162 n 0000 %p 03972799 n 0000 %p 08516080 n 0000 | game equipment consisting of a heavy table on which pool is played -03982642 06 n 01 poop_deck 0 001 @ 04566862 n 0000 | an exposed partial weather deck on the stern superstructure of a ship -03982767 06 n 03 poor_box 0 alms_box 0 mite_box 0 001 @ 02883344 n 0000 | box for collecting alms, especially one in a church -03982895 06 n 01 poorhouse 0 002 @ 03297735 n 0000 ~ 04601159 n 0000 | an establishment maintained at public expense in order to provide housing for the poor and homeless -03983068 06 n 01 Pop_Art 0 001 @ 08466643 n 0000 | a school of art that emerged in the United Kingdom in the 1950s and became prevalent in the United States and the United Kingdom in the 1960s; it imitated the techniques of commercial art (as the soup cans of Andy Warhol) and the styles of popular culture and the mass media -03983396 06 n 02 pop_bottle 0 soda_bottle 0 001 @ 02876657 n 0000 | a bottle for holding soft drinks -03983499 06 n 01 popgun 0 001 @ 03964744 n 0000 | plaything consisting of a toy gun that makes a popping sound -03983612 06 n 01 poplin 0 001 @ 03309808 n 0000 | a ribbed fabric used in clothing and upholstery -03983712 06 n 01 popper 0 002 @ 03101156 n 0000 + 00309792 v 0101 | a container for cooking popcorn -03983814 06 n 01 popper 1 001 @ 04320126 n 0000 | a container of stimulant drug (amyl nitrate or butyl nitrite) -03983928 06 n 02 poppet 0 poppet_valve 0 002 @ 04519153 n 0000 #p 03579982 n 0000 | a mushroom-shaped valve that rises perpendicularly from its seat; commonly used in internal-combustion engines -03984125 06 n 01 pop_tent 0 001 @ 04411264 n 0000 | a small tent that is easy to carry and quick to set up -03984234 06 n 01 porcelain 0 003 @ 02997607 n 0000 ~ 03018209 n 0000 ~ 04282992 n 0000 | ceramic ware made of a more or less translucent ceramic -03984381 06 n 01 porch 0 008 @ 04341686 n 0000 #p 03544360 n 0000 ~ 02770211 n 0000 ~ 03168107 n 0000 ~ 03399677 n 0000 ~ 03986704 n 0000 ~ 04327204 n 0000 ~ 04527648 n 0000 | a structure attached to the exterior of a building often forming a covered entrance -03984643 06 n 02 porkpie 0 porkpie_hat 0 001 @ 04248507 n 0000 | man's hat with a low, flat crown and a snap brim -03984759 06 n 01 porringer 0 001 @ 02880940 n 0000 | a shallow metal bowl (usually with a handle); "the child was eating pottage from a porringer" -03984908 06 n 03 port 0 embrasure 0 porthole 1 002 @ 03848729 n 0000 ;c 04194289 n 0000 | an opening (in a wall or ship or armored vehicle) for firing through -03985069 06 n 01 portable 0 003 @ 04505036 n 0000 + 01291589 a 0101 + 01525776 a 0101 | a small light typewriter; usually with a case in which it can be carried -03985232 06 n 01 portable_computer 0 006 @ 03918480 n 0000 ~ 02900987 n 0000 %p 03361380 n 0000 ~ 03485407 n 0000 ~ 03642806 n 0000 ~ 03832673 n 0000 | a personal computer that can easily be carried by hand -03985441 06 n 02 portable_circular_saw 0 portable_saw 0 001 @ 03034663 n 0000 | a circular saw that is portable and is operated with a hand grip -03985588 06 n 01 portage 0 001 @ 04463510 n 0000 | overland track between navigable waterways -03985684 06 n 01 portal 1 001 @ 03290771 n 0000 | a grand and imposing entrance (often extended metaphorically); "the portals of the cathedral"; "the portals of heaven"; "the portals of success" -03985881 06 n 01 portcullis 0 001 @ 03427296 n 0000 | gate consisting of an iron or wooden grating that hangs in the entry to a castle or fortified town; can be lowered to prevent passage -03986071 06 n 01 porte-cochere 0 001 @ 02951843 n 0000 | canopy extending out from a building entrance to shelter those getting in and out of vehicles -03986224 06 n 01 porte-cochere 1 001 @ 03290771 n 0000 | a carriage entrance passing through a building to an enclosed courtyard -03986355 06 n 01 portfolio 0 001 @ 02974697 n 0000 | a large, flat, thin case for carrying loose papers or drawings or maps; usually leather; "he remembered her because she was carrying a large portfolio" -03986562 06 n 01 porthole 0 004 @ 04587648 n 0000 #p 04194289 n 0000 #p 03408054 n 0000 %p 03166213 n 0000 | a window in a ship or airplane -03986704 06 n 01 portico 0 002 @ 03984381 n 0000 ~ 03809802 n 0000 | a porch or entrance to a building consisting of a covered and often columned area -03986857 06 n 01 portiere 0 001 @ 03151077 n 0000 | a heavy curtain hung across a doorway -03986949 06 n 03 portmanteau 0 Gladstone 0 Gladstone_bag 0 001 @ 02773838 n 0000 | a large travelling bag made of stiff leather -03987079 06 n 02 portrait 0 portrayal 0 003 @ 03668642 n 0000 ~ 03478033 n 0000 ~ 04169935 n 0000 | any likeness of a person, in any medium; "the photographer made excellent portraits" -03987266 06 n 01 portrait_camera 0 002 @ 02942699 n 0000 %p 03987376 n 0000 | a camera with a portrait lens -03987376 06 n 01 portrait_lens 0 002 @ 02943241 n 0000 #p 03987266 n 0000 | a compound camera lens with a relatively high aperture -03987509 06 n 01 positive 0 002 @ 03338821 n 0000 #p 04237773 n 0000 | a film showing a photographic image whose tones correspond to those of the original subject -03987674 06 n 03 positive_pole 0 positive_magnetic_pole 0 north-seeking_pole 0 001 @ 03976960 n 0000 | the pole of a magnet that points toward the north when the magnet is suspended freely -03987865 06 n 01 positive_pole 1 001 @ 04413151 n 0000 | the terminal of a battery that is connected to the positive plate -03987990 06 n 02 positron_emission_tomography_scanner 0 PET_scanner 0 001 @ 04450243 n 0000 | a tomograph that produces cross-sectional X-rays of metabolic processes in the body -03988170 06 n 01 post 0 022 @ 04515129 n 0000 + 01591476 v 0102 ~ 02864593 n 0000 ~ 02969754 n 0000 ~ 03110202 n 0000 ~ 03428349 n 0000 ~ 03443149 n 0000 ~ 03522990 n 0000 ~ 03535526 n 0000 ~ 03618678 n 0000 ~ 03637181 n 0000 ~ 03733131 n 0000 ~ 03821518 n 0000 ~ 04033557 n 0000 ~ 04117747 n 0000 ~ 04298765 n 0000 ~ 04300643 n 0000 ~ 04301242 n 0000 ~ 04346003 n 0000 ~ 04402449 n 0000 ~ 04436329 n 0000 ~ 04578329 n 0000 | an upright consisting of a piece of timber or metal fixed firmly in an upright position; "he set a row of posts in the ground and strung barbwire between them" -03988758 06 n 01 postage_meter 0 001 @ 03753077 n 0000 | meter for bulk mailings that imprints correct prepaid postage on pieces of mail and records the total charge -03988926 06 n 01 post_and_lintel 0 001 @ 04341686 n 0000 | a structure consisting of vertical beams (posts) supporting a horizontal beam (lintel) -03989074 06 n 03 postbox 0 mailbox 1 letter_box 1 002 @ 03710421 n 0000 ~ 03937437 n 0000 | public box for deposit of mail -03989199 06 n 01 post_chaise 0 001 @ 02968473 n 0000 | closed horse-drawn carriage with four wheels; formerly used to transport passengers and mail -03989349 06 n 01 postern 0 001 @ 03427296 n 0000 | a small gate in the rear of a fort or castle -03989447 06 n 02 post_exchange 0 PX 0 001 @ 03076411 n 0000 | a commissary on a United States Army post -03989553 06 n 02 posthole 0 post_hole 0 001 @ 03526198 n 0000 | a hole dug in the ground to hold a fence post -03989665 06 n 02 posthole_digger 0 post-hole_digger 0 001 @ 04208210 n 0000 | a shovel used to sink postholes -03989777 06 n 01 post_horn 0 001 @ 04586932 n 0000 | wind instrument used by postilions of the 18th and 19th centuries -03989898 06 n 02 posthouse 0 post_house 0 001 @ 03541696 n 0000 | an inn for exchanging post horses and accommodating riders -03990025 06 n 01 postmodernism 0 001 @ 03434943 n 0000 | genre of art and literature and especially architecture in reaction against principles and practices of established modernism -03990210 06 n 05 Post-Office_box 0 PO_Box 0 POB 0 call_box 1 letter_box 2 001 @ 03080309 n 0000 | a numbered compartment in a post office where mail is put to be called for -03990385 06 n 01 post_road 0 001 @ 04096066 n 0000 | a road over which mail is carried -03990474 06 n 01 pot 0 013 @ 03101986 n 0000 @ 04531098 n 0000 ~ 02939185 n 0000 ~ 03063689 n 0000 ~ 03216562 n 0000 ~ 03259401 n 0000 ~ 03612814 n 0000 ~ 03722827 n 0000 ~ 03992975 n 0000 ~ 04139140 n 0000 ~ 04324297 n 0000 ~ 04398044 n 0000 ~ 04516214 n 0000 | metal or earthenware cooking vessel that is usually round and deep; often has a handle and lid -03990834 06 n 0c pot 3 grass 0 green_goddess 0 dope 0 weed 0 gage 1 sess 0 sens 0 smoke 1 skunk 0 locoweed 0 Mary_Jane 0 004 @ 02949691 n 0000 + 01198101 v 0901 + 00085046 v 0401 + 01200806 v 0401 | street names for marijuana -03991062 06 n 02 pot 4 flowerpot 0 003 @ 03094503 n 0000 + 01529491 v 0101 ~ 03957315 n 0000 | a container in which plants are cultivated -03991202 06 n 02 potbelly 0 potbelly_stove 0 001 @ 04330340 n 0000 | a bulbous stove in which wood or coal is burned -03991321 06 n 01 Potemkin_village 0 001 @ 03318438 n 0000 | something that seems impressive but in fact lacks substance -03991443 06 n 02 potential_divider 0 voltage_divider 0 002 @ 04079933 n 0000 ~ 03991646 n 0000 | resistors connected in series across a voltage source; used to obtain a desired fraction of the voltage -03991646 06 n 02 potentiometer 0 pot 2 001 @ 03991443 n 0000 | a resistor with three terminals, the third being an adjustable center terminal; used to adjust voltages in radios and TV sets -03991837 06 n 01 potentiometer 1 001 @ 03733925 n 0000 | a measuring instrument for measuring direct current electromotive forces -03991969 06 n 01 pot_farm 0 001 @ 03417345 n 0000 | a plot of ground where marijuana is grown and harvested (often hidden in a national forest) -03992115 06 n 01 potholder 0 001 @ 03872495 n 0000 | an insulated pad for holding hot pots -03992208 06 n 01 pothook 0 002 @ 03532672 n 0000 ~ 04469251 n 0000 | an S-shaped hook to suspend a pot over a fire -03992325 06 n 01 potpourri 0 001 @ 03916031 n 0000 | a jar of mixed flower petals and spices used as perfume -03992436 06 n 01 potsherd 0 001 @ 04184701 n 0000 | a shard of pottery -03992509 06 n 01 potter's_wheel 0 001 @ 04574999 n 0000 | a horizontal rotating wheel holding the clay being shaped by a potter; "the potter's wheel was invented in Asia Minor around 6500 BC" -03992703 06 n 02 pottery 0 clayware 0 005 @ 02997607 n 0000 ~ 02684248 n 0000 ~ 03698226 n 0000 ~ 04570214 n 0000 %s 14813182 n 0000 | ceramic ware made from clay and baked in a kiln -03992888 06 n 01 pottery 1 001 @ 04603081 n 0000 | a workshop where clayware is made -03992975 06 n 01 pottle 0 001 @ 03990474 n 0000 | a pot that holds 2 quarts -03993053 06 n 02 potty_seat 0 potty_chair 0 001 @ 04446521 n 0000 | toilet consisting of a small seat used by young children -03993180 06 n 01 pouch 0 007 @ 02773037 n 0000 + 01486050 v 0101 ~ 03709960 n 0000 ~ 03972524 n 0000 ~ 04284572 n 0000 ~ 04443164 n 0000 ~ 04544450 n 0000 | a small or medium size container for holding or carrying things -03993403 06 n 03 poultice 0 cataplasm 0 plaster 2 004 @ 03237639 n 0000 + 00082929 v 0302 + 00082929 v 0101 ~ 03802800 n 0000 | a medical dressing consisting of a soft heated mass of meal or clay that is spread on a cloth and applied to the skin to treat inflamed areas or improve circulation etc. -03993703 06 n 02 pound 0 dog_pound 0 002 @ 03285912 n 0000 + 01302183 v 0102 | a public enclosure for stray or unlicensed dogs; "unlicensed dogs will be taken to the pound" -03993878 06 n 01 pound_net 0 001 @ 04474466 n 0000 | trap consisting of an arrangement of nets directing fish into an enclosure -03994008 06 n 01 powder 1 009 @ 04447443 n 0000 @ 03740161 n 0000 + 00042173 v 0101 ~ 02732696 n 0000 ~ 02749169 n 0000 ~ 02767038 n 0000 ~ 03228796 n 0000 ~ 03314780 n 0000 ~ 04447276 n 0000 | any of various cosmetic or medical preparations dispensed in the form of a pulverized powder -03994297 06 n 01 powder_and_shot 0 001 @ 02703275 n 0000 | ammunition consisting of gunpowder and bullets for muskets -03994417 06 n 02 powdered_mustard 0 dry_mustard 0 002 @ 03283519 n 0000 @ 07819480 n 0000 | a substance such that one to three tablespoons dissolved in a glass of warm water is a homemade emetic -03994614 06 n 02 powder_horn 0 powder_flask 0 001 @ 03094503 n 0000 | container for carrying gunpowder; made of the hollow horn of an animal -03994757 06 n 01 powder_keg 0 001 @ 03610418 n 0000 | keg (usually made of metal) for gunpowder or blasting powder -03994874 06 n 02 powderpuff 0 puff 1 001 @ 03872495 n 0000 | a soft spherical object made from fluffy fibers; for applying powder to the skin -03995018 06 n 01 power_brake 0 003 @ 02889425 n 0000 #p 03791235 n 0000 ~ 02685701 n 0000 | a brake on an automobile that magnifies a small force applied to the brake pedal into a proportionately larger force applied to slow or stop the vehicle -03995265 06 n 01 power_cord 0 001 @ 03106898 n 0000 | a cord to conduct power to an electrical appliance -03995372 06 n 01 power_drill 0 004 @ 03997484 n 0000 @ 03239726 n 0000 ~ 03240140 n 0000 ~ 03971321 n 0000 | a power tool for drilling holes into hard materials -03995535 06 n 02 power_line 0 power_cable 0 002 @ 02934168 n 0000 #p 03997027 n 0000 | cable used to distribute electricity -03995661 06 n 01 power_loom 0 001 @ 03689157 n 0000 | a loom operated mechanically -03995746 06 n 01 power_module 0 001 @ 03778600 n 0000 | module that provides power to operate other modules -03995856 06 n 02 power_mower 0 motor_mower 0 003 @ 03649909 n 0000 ! 03487774 n 0101 ~ 04089976 n 0000 | a lawn mower powered by a gasoline motor -03996004 06 n 01 power_pack 0 001 @ 03269203 n 0000 | a device for converting a power supply to a voltage required by particular equipment -03996145 06 n 03 power_saw 0 saw 1 sawing_machine 0 010 @ 03997484 n 0000 + 01559590 v 0201 ~ 02786837 n 0000 ~ 03000684 n 0000 ~ 03034663 n 0000 ~ 03415626 n 0000 ~ 03598783 n 0000 ~ 04121728 n 0000 ~ 04140777 n 0000 %p 04452848 n 0000 | a power tool for cutting wood -03996416 06 n 04 power_shovel 0 excavator 0 digger 0 shovel 2 008 @ 03699975 n 0000 + 01312810 v 0401 + 01311103 v 0301 + 01309701 v 0301 + 01311378 v 0201 ~ 02769290 n 0000 ~ 03236217 n 0000 ~ 04310507 n 0000 | a machine for excavating -03996655 06 n 03 power_station 0 power_plant 0 powerhouse 0 005 @ 04306080 n 0000 #p 03997027 n 0000 %p 02924713 n 0000 %p 04498873 n 0000 ~ 04586761 n 0000 | an electrical generating station -03996849 06 n 02 power_steering 0 power-assisted_steering 0 001 @ 04313220 n 0000 | automotive steering where engineer power amplifies the torque applied to the steering wheel -03997027 06 n 03 power_system 0 power_grid 0 grid 2 005 @ 03315023 n 0000 #p 03569964 n 0000 %p 03272696 n 0000 %p 03995535 n 0000 %p 03996655 n 0000 | a system of high tension cables by which electrical power is distributed throughout a region -03997274 06 n 02 power_takeoff 0 PTO 0 001 @ 03183080 n 0000 | a device that transfers power from an engine (as in a tractor or other motor vehicle) to another piece of equipment (as to a pump or jackhammer) -03997484 06 n 01 power_tool 0 011 @ 03699975 n 0000 @ 04451818 n 0000 ~ 02911332 n 0000 ~ 02923915 n 0000 ~ 03250588 n 0000 ~ 03481521 n 0000 ~ 03955296 n 0000 ~ 03995372 n 0000 ~ 03996145 n 0000 ~ 04114719 n 0000 ~ 04300509 n 0000 | a tool driven by a motor -03997745 06 n 01 practice_range 0 003 @ 04053218 n 0000 ~ 03349150 n 0000 ~ 03447224 n 0000 | a place for practicing golf shots -03997875 06 n 02 praetorium 0 pretorium 0 001 @ 04411264 n 0000 | the tent of an ancient Roman general -03997980 06 n 02 pravastatin 0 Pravachol 0 002 @ 03676175 n 0000 ;u 06845599 n 0201 | an oral drug (trade name Pravachol) administered to reduce blood cholesterol levels; recommended after nonfatal heart attacks -03998194 06 n 02 prayer_rug 0 prayer_mat 0 002 @ 04118021 n 0000 %p 03762602 n 0000 | a small rug used by Muslims during their devotions -03998333 06 n 03 prayer_shawl 0 tallith 0 tallis 0 002 @ 04186455 n 0000 ;c 06232880 n 0000 | (Judaism) a shawl with a ritually knotted fringe at each corner; worn by Jews at morning prayer -03998525 06 n 02 prazosin 0 Minipress 0 003 @ 02721160 n 0000 @ 02698769 n 0000 ;u 06845599 n 0201 | antihypertensive drug (trade name Minipress) -03998673 06 n 03 precipitator 0 electrostatic_precipitator 0 Cottrell_precipitator 0 002 @ 03269401 n 0000 + 00474994 v 0101 | removes dust particles from gases by electrostatic precipitation -03998867 06 n 01 predictor 0 002 @ 03082979 n 0000 #p 02715712 n 0000 | a computer for controlling antiaircraft fire that computes the position of an aircraft at the instant of a shell's arrival -03999064 06 n 01 prefab 0 002 @ 04341686 n 0000 + 00673172 a 0101 | a prefabricated structure -03999160 06 n 01 presbytery 0 002 @ 02913152 n 0000 #p 03028079 n 0000 | building reserved for the officiating clergy -03999280 06 n 04 prescription_drug 0 prescription 0 prescription_medicine 0 ethical_drug 0 004 @ 03740161 n 0000 ! 03866176 n 0302 ! 03866176 n 0101 ~ 04068261 n 0000 | a drug that is available only with written instructions from a doctor or dentist to a pharmacist; "he told the doctor that he had been taking his prescription regularly" -03999621 06 n 01 presence_chamber 0 001 @ 04105893 n 0000 | room in which a monarch or other great person receives guests, assemblies, etc. -03999763 06 n 01 presidio 0 001 @ 03386011 n 0000 | a fortress established in the southwestern United States by the Spanish in order to protect their missions and other holdings; "Tucson was first settled as a walled presidio" -03999992 06 n 02 press 0 mechanical_press 0 009 @ 03699975 n 0000 + 01662614 v 0101 + 01754105 v 0101 ~ 03012644 n 0000 ~ 03029925 n 0000 ~ 03418915 n 0000 ~ 03551395 n 0000 ~ 04024274 n 0000 ~ 04592356 n 0000 | any machine that exerts pressure to form or shape or cut materials or extract liquids or compress solids -04000311 06 n 02 press 1 printing_press 0 005 @ 03699975 n 0000 %p 02819881 n 0000 ~ 03360431 n 0000 ~ 04110841 n 0000 ~ 04302200 n 0000 | a machine used for printing -04000480 06 n 01 press 3 001 @ 03036866 n 0000 | clamp to prevent wooden rackets from warping when not in use -04000592 06 n 01 press_box 0 002 @ 02884011 n 0000 ;c 00523513 n 0000 | box reserved for reporters (as at a sports event) -04000716 06 n 01 press_gallery 0 001 @ 02735688 n 0000 | an area (sometimes in a balcony) set aside for reporters (especially in a legislative hall) -04000867 06 n 01 pressing 0 002 @ 03892891 n 0000 + 01662614 v 0101 | a metal or plastic part that is made by a mechanical press -04000998 06 n 02 press_of_sail 0 press_of_canvas 0 001 @ 04127904 n 0000 | the greatest amount of sail that a ship can carry safely -04001132 06 n 01 pressure_cabin 0 001 @ 02932019 n 0000 | cabin consisting of the pressurized section of an aircraft or spacecraft -04001265 06 n 01 pressure_cooker 0 001 @ 02758960 n 0000 | autoclave for cooking at temperatures above the boiling point of water -04001397 06 n 01 pressure_dome 0 001 @ 03220513 n 0000 | a dome-shaped building that is pressurized -04001499 06 n 02 pressure_gauge 0 pressure_gage 0 003 @ 03429288 n 0000 ~ 03718335 n 0000 ~ 04274985 n 0000 | gauge for measuring and indicating fluid pressure -04001661 06 n 02 pressurized_water_reactor 0 PWR 0 001 @ 04559023 n 0000 | a nuclear reactor that uses water as a coolant and moderator; the steam produced can drive a steam turbine -04001845 06 n 01 pressure_suit 0 003 @ 04015204 n 0000 ~ 02720576 n 0000 ~ 04266375 n 0000 | protective garment consisting of an inflatable suit for space or high altitude flying -04002026 06 n 03 preventive 1 preventative 1 prophylactic 1 003 @ 04074482 n 0000 + 01167269 a 0303 + 01167269 a 0101 | remedy that prevents or slows the course of an illness or disease; "the doctor recommended several preventatives" -04002262 06 n 01 pricket 0 002 @ 04275661 n 0000 #p 02948557 n 0000 | a sharp metal spike to hold a candle -04002371 06 n 01 prie-dieu 0 001 @ 02828884 n 0000 | low bench for kneeling on -04002452 06 n 01 primaquine 0 001 @ 02721948 n 0000 | synthetic antimalarial drug -04002536 06 n 01 Primaxin 0 001 @ 02716866 n 0000 | trade name for a parenteral antibiotic -04002629 06 n 03 primary_coil 0 primary_winding 0 primary 0 002 @ 03065708 n 0000 #p 04471315 n 0000 | coil forming the part of an electrical circuit such that changing current in it induces a current in a neighboring circuit; "current through the primary coil induces current in the secondary coil" -04002931 06 n 02 primidone 0 Mysoline 0 002 @ 02718469 n 0000 ;u 06845599 n 0201 | an anticonvulsant (trade name Mysoline) used to treat grand mal seizures and essential tremor -04003110 06 n 01 primitivism 0 001 @ 03434943 n 0000 | a genre characteristic of (or imitative of) primitive artists or children -04003241 06 n 02 Primus_stove 0 Primus 0 001 @ 04330340 n 0000 | a portable paraffin cooking stove; used by campers -04003359 06 n 01 Prince_Albert 0 001 @ 03398228 n 0000 | a man's double-breasted frock coat -04003453 06 n 02 Princeton_University 0 Princeton 0 003 @i 04511002 n 0000 #p 09114128 n 0000 #m 08232706 n 0000 | a university in New Jersey -04003597 06 n 01 print 0 010 @ 03453809 n 0000 ~ 03094347 n 0000 ~ 03104413 n 0000 ~ 03289268 n 0000 ~ 03455802 n 0000 ~ 03674946 n 0000 ~ 03678220 n 0000 ~ 03758478 n 0000 ~ 03865704 n 0000 ~ 04219718 n 0000 | a picture or design printed from an engraving -04003856 06 n 01 print 1 001 @ 03309808 n 0000 | a fabric with a dyed pattern pressed onto it (usually by engraved rollers) -04003982 06 n 01 print 3 001 @ 03104594 n 0000 | a copy of a movie on film (especially a particular version of it) -04004099 06 n 01 print_buffer 0 001 @ 02911485 n 0000 | a buffer that stores data until the printer is ready -04004210 06 n 01 printed_circuit 0 002 @ 03084420 n 0000 ~ 03033986 n 0000 | computer circuit consisting of an electronic sub-assembly; copper conductors are laminated on an insulating board or card and circuit components are inserted into holes and dip soldered -04004475 06 n 02 printer 0 printing_machine 0 012 @ 03699975 n 0000 + 01745722 v 0101 + 01747945 v 0101 ~ 02679961 n 0000 ~ 03007591 n 0000 ~ 03280644 n 0000 ~ 03563200 n 0000 ~ 03672827 n 0000 ~ 03874823 n 0000 ~ 04004767 n 0000 ~ 04419868 n 0000 ~ 04504770 n 0000 | a machine that prints -04004767 06 n 01 printer 1 006 @ 03916720 n 0000 @ 04004475 n 0000 ;c 06128570 n 0000 + 01745722 v 0101 + 01747945 v 0101 ~ 03225777 n 0000 | (computer science) an output device that prints the results of data processing -04004990 06 n 01 printer_cable 0 001 @ 02934168 n 0000 | a cable between a computer and a printer -04005090 06 n 02 print_shop 0 printing_shop 0 001 @ 04603081 n 0000 | a workplace where printing is done -04005197 06 n 01 priory 0 001 @ 04073948 n 0000 | religious residence in a monastery governed by a prior or a convent governed by a prioress -04005340 06 n 02 prism 0 optical_prism 0 007 @ 03851341 n 0000 #p 02842684 n 0000 #p 04403638 n 0000 #p 04273064 n 0000 + 00403654 a 0101 + 03102558 a 0101 ~ 03295012 n 0000 | optical device having a triangular shape and made of glass or quartz; used to deviate a beam or invert an image -04005630 06 n 02 prison 0 prison_house 0 008 @ 03111690 n 0000 ~ 02805443 n 0000 %p 02992032 n 0000 ~ 03025070 n 0000 ~i 03821660 n 0000 ~ 03823540 n 0000 ~ 03883773 n 0000 ~ 04305471 n 0000 | a correctional institution where persons are confined while on trial or for punishment -04005912 06 n 04 prison_camp 1 internment_camp 0 prisoner_of_war_camp 0 POW_camp 0 002 @ 02945379 n 0000 ~ 03467887 n 0000 | a camp for prisoners of war -04006067 06 n 01 privateer 0 001 @ 04552696 n 0000 | a privately owned warship commissioned to prey on the commercial shipping or warships of an enemy nation -04006227 06 n 01 private_line 0 001 @ 04402057 n 0000 | a telephone line serving a single subscriber -04006330 06 n 01 privet_hedge 0 001 @ 03511175 n 0000 | hedge of privet plants -04006411 06 n 01 probe 0 002 @ 04364545 n 0000 + 01226875 v 0101 | a flexible slender surgical instrument with a blunt end that is used to explore wounds or body cavities -04006584 06 n 01 probenecid 0 001 @ 03740161 n 0000 | a uricosuric drug that reduces the level of uric acid in the blood; used to treat gout -04006727 06 n 02 procaine 0 Ethocaine 0 003 @ 03681148 n 0000 ;u 06845599 n 0201 ~ 04006953 n 0000 | a white crystalline powder (trade name Ethocaine) administered near nerves as a local anesthetic in dentistry and medicine -04006953 06 n 03 procaine_hydrochloride 0 novocaine 0 Novocain 0 002 @ 04006727 n 0000 ;u 06845599 n 0301 | procaine administered as a hydrochloride (trade name Novocain) -04007126 06 n 01 procarbazine 0 001 @ 02722458 n 0000 | an antineoplastic drug used to treat Hodgkin's disease -04007239 06 n 01 prochlorperazine 0 002 @ 03713736 n 0000 @ 02719750 n 0000 | antipsychotic and antiemetic drug used to treat schizophrenia and to combat nausea and vomiting -04007415 06 n 01 proctoscope 0 001 @ 03286572 n 0000 | an endoscope for examining the rectum -04007510 06 n 02 procyclidine 0 Kemadrin 0 002 @ 03800001 n 0000 ;u 06845599 n 0201 | drug (trade name Kemadrin) used to reduce tremors in Parkinsonism -04007664 06 n 02 prod 0 goad 0 007 @ 03183080 n 0000 + 01240935 v 0201 + 01241073 v 0201 + 01229976 v 0102 + 01231252 v 0103 ~ 02713496 n 0000 ~ 04290259 n 0000 | a pointed instrument that is used to prod into a state of motion -04007894 06 n 02 product 0 production 0 016 @ 03129123 n 0000 + 01621555 v 0101 ~ 02870092 n 0000 ~ 02870526 n 0000 ~ 02930492 n 0000 ~ 03173736 n 0000 ~ 03287178 n 0000 ~ 03574004 n 0000 ~ 03599761 n 0000 ~ 03704210 n 0000 ~ 03822171 n 0000 ~ 03860882 n 0000 ~ 04500294 n 0000 ~ 04599396 n 0000 ~ 04612722 n 0000 ~ 06613686 n 0000 | an artifact that has been created by someone or some process; "they improve their product every year"; "they export most of their agricultural production" -04008385 06 n 03 production_line 0 assembly_line 0 line 9 003 @ 03738241 n 0000 #p 03316406 n 0000 %p 03100897 n 0000 | mechanical system in a factory whereby an article is conveyed through sites at which successive operations are performed on it -04008634 06 n 02 projectile 0 missile 0 010 @ 04565375 n 0000 + 00809622 a 0101 ~ 02742753 n 0000 ~ 02871963 n 0000 ~ 02916350 n 0000 ~ 02950943 n 0000 ~ 03162818 n 0000 ~ 04167489 n 0000 ~ 04205759 n 0000 ~ 04281131 n 0000 | a weapon that is forcibly thrown or projected at a targets but is not self-propelled -04008947 06 n 01 projection 0 019 @ 04341686 n 0000 ~ 02737833 n 0000 ~ 02902079 n 0000 ~ 02923802 n 0000 ~ 03041265 n 0000 ~ 03111041 n 0000 ~ 03241660 n 0000 ~ 03356858 n 0000 ~ 03369640 n 0000 ~ 03501288 n 0000 ~ 03626115 n 0000 ~ 03680734 n 0000 ~ 03695616 n 0000 ~ 03864356 n 0000 ~ 04010927 n 0000 ~ 04276404 n 0000 ~ 04409911 n 0000 ~ 04452848 n 0000 ~ 04453037 n 0000 | any structure that branches out from a central support -04009382 06 n 01 projection 1 002 @ 04076846 n 0000 ~ 03720443 n 0000 | the representation of a figure or solid on a plane as it would look from a particular direction -04009552 06 n 01 projector 0 008 @ 03852280 n 0000 + 10481561 n 0101 + 02138075 v 0101 ~ 03292960 n 0000 ~ 03399761 n 0000 ~ 03795976 n 0000 ~ 03864692 n 0000 ~ 04238617 n 0000 | an optical instrument that projects an enlarged image onto a screen -04009801 06 n 01 projector 1 002 @ 03851341 n 0000 + 10481561 n 0101 | an optical device for projecting a beam of light -04009923 06 n 01 prolonge 0 002 @ 04108268 n 0000 %p 04010057 n 0000 | a rope fitted with a hook and used for towing a gun carriage -04010057 06 n 02 prolonge_knot 0 sailor's_breastplate 0 002 @ 03627232 n 0000 #p 04009923 n 0000 | a knot in the rope used to drag a gun carriage -04010205 06 n 02 promenade 0 mall 0 003 @ 04544979 n 0000 + 01919226 v 0101 ~ 03297354 n 0000 | a public area set aside as a pedestrian walk -04010348 06 n 02 promethazine 0 Phenergan 0 003 @ 02720725 n 0000 @ 02719750 n 0000 ;u 06845599 n 0201 | antihistamine (trade name Phenergan) used to treat allergies; also an antiemetic used to treat motion sickness -04010566 06 n 02 prompt_box 0 prompter's_box 0 002 @ 02873839 n 0000 #p 04013362 n 0000 | a booth projecting above the floor in the front of a stage where the prompter sits; opens toward the performers on stage -04010779 06 n 02 prompter 0 autocue 0 003 @ 03183080 n 0000 + 00877848 v 0101 ~ 04403524 n 0000 | a device that displays words for people to read -04010927 06 n 01 prong 0 008 @ 04008947 n 0000 #p 02828299 n 0000 #p 02910353 n 0000 #p 03383948 n 0000 #p 03384167 n 0000 #p 04482975 n 0000 + 02479602 a 0108 ~ 04439585 n 0000 | a pointed projection -04011130 06 n 01 proof 0 002 @ 03926575 n 0000 + 01752316 v 0101 | a trial photographic print from a negative -04011242 06 n 01 prop 0 003 @ 04360501 n 0000 + 01219004 v 0102 ~ 03951690 n 0000 | a support placed beneath or against something to keep it from shaking or falling -04011409 06 n 02 propanolol 0 Inderal 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | the first beta blocker (trade name Inderal) used in treating hypertension and angina pectoris and essential tremor -04011609 06 n 02 propellant_explosive 0 impulse_explosive 0 001 @ 03304730 n 0000 | an explosive that is used to propel projectiles from guns or to propel rockets and missiles or to launch torpedos and depth charges -04011827 06 n 02 propeller 0 propellor 0 008 @ 03736970 n 0000 + 01511706 v 0201 + 01511706 v 0101 ~ 02692086 n 0000 %p 02848523 n 0000 %p 03547658 n 0000 ~ 04154152 n 0000 ~ 04521571 n 0000 | a mechanical device that rotates to push against air or water -04012084 06 n 01 propeller_plane 0 005 @ 02691156 n 0000 %p 02692086 n 0000 ~ 03227505 n 0000 ~ 04012482 n 0000 ~ 04222723 n 0000 | an airplane that is driven by a propeller -04012260 06 n 02 property 0 prop 2 003 @ 00002684 n 0000 #p 03773268 n 0000 ~ 03152144 n 0000 | any movable articles or objects used on the set of a play or movie; "before every scene he ran down his checklist of props" -04012482 06 n 03 propjet 0 turboprop 0 turbo-propeller_plane 0 002 @ 04012084 n 0000 %p 03321103 n 0000 | an airplane with an external propeller that is driven by a turbojet engine -04012665 06 n 02 proportional_counter_tube 0 proportional_counter 0 002 @ 03118346 n 0000 ~ 02875815 n 0000 | counter tube whose output pulse is proportional to number of ions produced -04012852 06 n 03 propoxyphene 0 propoxyphene_hydrochloride 0 Darvon 0 002 @ 02707683 n 0000 ;u 06845599 n 0301 | a mildly narcotic analgesic drug (trade name Darvon) related to methadone but less addictive -04013060 06 n 01 propulsion_system 0 001 @ 04377057 n 0000 | a system that provides a propelling or driving force -04013176 06 n 02 proscenium 0 proscenium_wall 0 003 @ 04546855 n 0000 #p 04418818 n 0000 %p 04013600 n 0000 | the wall that separates the stage from the auditorium in a modern theater -04013362 06 n 03 proscenium 1 apron 2 forestage 0 004 @ 04296562 n 0000 #p 04418818 n 0000 %p 03380134 n 0000 %p 04010566 n 0000 | the part of a modern theater stage between the curtain and the orchestra (i.e., in front of the curtain) -04013600 06 n 01 proscenium_arch 0 002 @ 02733524 n 0000 #p 04013176 n 0000 | the arch over the opening in the proscenium wall -04013729 06 n 02 prosthesis 0 prosthetic_device 0 008 @ 03111899 n 0000 + 02785525 a 0101 + 02785412 a 0101 + 10458596 n 0101 ~ 03438952 n 0000 ~ 03563710 n 0000 ~ 03840327 n 0000 ~ 03906106 n 0000 | corrective consisting of a replacement for a part of the body -04013993 06 n 02 protease_inhibitor 0 PI 0 006 @ 02725367 n 0000 #p 03248560 n 0000 ~ 03568430 n 0000 ~ 03817830 n 0000 ~ 04094983 n 0000 ~ 04293608 n 0000 | an antiviral drug used against HIV; interrupts HIV replication by binding and blocking HIV protease; often used in combination with other drugs -04014297 06 n 03 protective_covering 0 protective_cover 0 protection 0 038 @ 03122748 n 0000 + 01128193 v 0301 ~ 02739668 n 0000 ~ 02826068 n 0000 ~ 02840245 n 0000 ~ 02840619 n 0000 ~ 02851099 n 0000 ~ 02888270 n 0000 ~ 02955065 n 0000 ~ 03046133 n 0000 ~ 03056701 n 0000 ~ 03067518 n 0000 ~ 03142679 n 0000 ~ 03258456 n 0000 ~ 03314608 n 0000 ~ 03315644 n 0000 ~ 03318983 n 0000 ~ 03342262 n 0000 ~ 03510072 n 0000 ~ 03530910 n 0000 ~ 03546766 n 0000 ~ 03673767 n 0000 ~ 03725035 n 0000 ~ 03797896 n 0000 ~ 04105068 n 0000 ~ 04105438 n 0000 ~ 04151581 n 0000 ~ 04181718 n 0000 ~ 04187061 n 0000 ~ 04187233 n 0000 ~ 04191943 n 0000 ~ 04192858 n 0000 ~ 04281375 n 0000 ~ 04281571 n 0000 ~ 04416005 n 0000 ~ 04431648 n 0000 ~ 04444749 n 0000 ~ 04554211 n 0000 | a covering that is intend to protect from damage or injury; "they had no protection from the fallout"; "wax provided protection for the floors" -04015204 06 n 01 protective_garment 0 019 @ 03051540 n 0000 ~ 02730930 n 0000 ~ 02738859 n 0000 ~ 02752615 n 0000 ~ 02841847 n 0000 ~ 02863340 n 0000 ~ 03015478 n 0000 ~ 03121897 n 0000 ~ 03216402 n 0000 ~ 03268645 n 0000 ~ 03386870 n 0000 ~ 03521771 n 0000 ~ 03623198 n 0000 ~ 04001845 n 0000 ~ 04194127 n 0000 ~ 04207903 n 0000 ~ 04423552 n 0000 ~ 04429038 n 0000 ~ 04607640 n 0000 | clothing that is intended to protect the wearer from injury -04015652 06 n 02 proteosome_vaccine 0 proteosome 0 001 @ 04517535 n 0000 | a form of vaccine that can be administered by an inhaler -04015786 06 n 01 proton_accelerator 0 001 @ 03070193 n 0000 | a collider that collides beams of protons and antiprotons -04015908 06 n 01 protractor 0 001 @ 03231160 n 0000 | drafting instrument used to draw or measure angles -04016015 06 n 01 protriptyline 0 001 @ 04482543 n 0000 | tricyclic antidepressant used to treat clinical depression -04016133 06 n 01 proving_ground 0 001 @ 04602044 n 0000 | a workplace for testing new equipment or ideas -04016240 06 n 03 pruner 0 pruning_hook 0 lopper 0 004 @ 04016576 n 0000 + 01560731 v 0303 + 01321002 v 0305 + 01321002 v 0107 | a long-handled pruning saw with a curved blade at the end and sometimes a clipper; used to prune small trees -04016479 06 n 01 pruning_knife 0 001 @ 03623556 n 0000 | a knife with a curved or hooked blade -04016576 06 n 01 pruning_saw 0 002 @ 03488188 n 0000 ~ 04016240 n 0000 | a handsaw used for pruning trees -04016684 06 n 01 pruning_shears 0 003 @ 04186848 n 0000 ;u 06295235 n 0000 ~ 04163530 n 0000 | shears with strong blades used for light pruning of woody plants -04016846 06 n 01 psaltery 0 001 @ 04338517 n 0000 | an ancient stringed instrument similar to the lyre or zither but having a trapezoidal sounding board under the strings -04017019 06 n 02 psilocybin 0 psilocin 0 001 @ 03479647 n 0000 | a hallucinogenic compound obtained from a mushroom -04017137 06 n 04 psychoactive_drug 0 mind-altering_drug 0 consciousness-altering_drug 0 psychoactive_substance 0 006 @ 03247620 n 0000 ~ 03179489 n 0000 ~ 03245553 n 0000 ~ 03301696 n 0000 ~ 03479647 n 0000 ~ 04416785 n 0000 | a drug that can produce mood changes and distorted perceptions -04017429 06 n 01 psychotropic_agent 0 002 @ 03247620 n 0000 ~ 04470232 n 0000 | a chemical substance that can influence human consciousness -04017571 06 n 01 psychrometer 0 003 @ 03554460 n 0000 %p 03251100 n 0000 %p 04573625 n 0000 | a hygrometer consisting of a dry-bulb thermometer and a wet-bulb thermometer; their difference indicates the dryness of the surrounding air -04017807 06 n 04 PT_boat 0 mosquito_boat 0 mosquito_craft 0 motor_torpedo_boat 0 001 @ 04457326 n 0000 | a small fast unarmored and lightly armed torpedo boat; P(atrol) T(orpedo) boat -04017993 06 n 01 p-type_semiconductor 0 001 @ 04171831 n 0000 | a semiconductor in which electrical conduction is due chiefly to the movement of positive holes -04018155 06 n 05 public_address_system 0 P.A._system 0 PA_system 0 P.A. 0 PA 0 004 @ 03078287 n 0000 %p 02705944 n 0000 %p 03691459 n 0000 %p 04390873 n 0000 | an electronic amplification system used as a communication system in public areas -04018399 06 n 06 public_house 0 pub 0 saloon 1 pothouse 0 gin_mill 0 taphouse 0 005 @ 04395875 n 0000 ;r 08860123 n 0000 ~ 02696165 n 0000 %p 02796995 n 0000 ~ 03393017 n 0000 | tavern consisting of a building with a bar and public rooms; often provides light meals -04018667 06 n 08 public_toilet 0 comfort_station 0 public_convenience 0 convenience 1 public_lavatory 0 restroom 0 toilet_facility 0 wash_room 0 005 @ 04446276 n 0000 @ 00585406 n 0000 ~ 03632963 n 0000 ~ 03646809 n 0000 ~ 03746486 n 0000 | a toilet that is available to the public -04018951 06 n 01 public_transit 0 003 @ 04473432 n 0000 ~ 04054213 n 0000 %p 04472098 n 0000 | a public transportation system for moving passengers -04019101 06 n 01 public_transport 0 008 @ 03100490 n 0000 #p 04473432 n 0000 ~ 02924116 n 0000 ~ 03166120 n 0000 ~ 03306385 n 0000 ~ 03680942 n 0000 ~ 04211970 n 0000 ~ 04468005 n 0000 | conveyance for passengers or mail or freight -04019335 06 n 01 public_works 0 003 @ 04341686 n 0000 #p 03569964 n 0000 ;u 06295235 n 0000 | structures (such as highways or schools or bridges or docks) constructed at government expense for public use -04019541 06 n 02 puck 0 hockey_puck 0 001 @ 03208556 n 0000 | a vulcanized rubber disk 3 inches in diameter that is used instead of a ball in ice hockey -04019696 06 n 01 pull 1 004 @ 03183080 n 0000 + 01505254 v 0102 ~ 02826459 n 0000 ~ 04020087 n 0000 | a device used for pulling something; "he grabbed the pull and opened the drawer" -04019881 06 n 02 pullback 0 tieback 0 001 @ 03525827 n 0000 | a device (as a decorative loop of cord or fabric) for holding or drawing something back; "the draperies were drawn to the sides by pullbacks" -04020087 06 n 01 pull_chain 0 003 @ 02999410 n 0000 @ 04019696 n 0000 #p 03371875 n 0000 | a chain (usually with a handle at the end) that is pulled in order to operate some mechanism (e.g. to flush a toilet) -04020298 06 n 04 pulley 0 pulley-block 0 pulley_block 0 block 2 005 @ 03700963 n 0000 #p 02853745 n 0000 ~ 02864878 n 0000 ~ 03318136 n 0000 ~ 03559999 n 0000 | a simple machine consisting of a wheel with a groove in which a rope can run to change the direction or point of application of a force applied to the rope -04020617 06 n 02 pull-in 0 pull-up 0 002 @ 02935658 n 0000 ;r 08860123 n 0000 | a roadside cafe especially for lorry drivers -04020744 06 n 05 pull-off 0 rest_area 0 rest_stop 0 layby 0 lay-by 0 001 @ 02735688 n 0000 | designated paved area beside a main road where cars can stop temporarily -04020912 06 n 02 Pullman 0 Pullman_car 0 001 @ 03895866 n 0000 | luxurious passenger car; for day or night travel -04021028 06 n 02 pullover 0 slipover 0 002 @ 04370048 n 0000 ~ 04370456 n 0000 | a sweater that is put on by pulling it over the head -04021164 06 n 01 pull-through 0 001 @ 03039947 n 0000 | cleaning implement consisting of an oily rag attached by a cord to a weight; is pulled through the barrel of a rifle or handgun to clean it -04021362 06 n 01 pulse_counter 0 002 @ 03116767 n 0000 ~ 04142175 n 0000 | an electronic counter that counts the number of electric pulses -04021503 06 n 01 pulse_generator 0 004 @ 03434285 n 0000 #p 04259771 n 0000 #p 04039848 n 0000 ~ 03942692 n 0000 | a generator of single or multiple voltage pulses; usually adjustable for pulse rate -04021704 06 n 01 pulse_timing_circuit 0 001 @ 03033362 n 0000 | a circuit that times pulses -04021798 06 n 01 pump 0 024 @ 03736970 n 0000 #p 03401721 n 0000 #p 03103128 n 0000 + 01853069 v 0101 + 01853310 v 0101 + 01225684 v 0101 ~ 02692513 n 0000 ~ 02748491 n 0000 ~ 02763083 n 0000 ~ 02835724 n 0000 ~ 02838345 n 0000 ~ 02995871 n 0000 %p 03156405 n 0000 ~ 03381450 n 0000 ~ 03425413 n 0000 ~ 03456299 n 0000 ~ 03487886 n 0000 ~ 03507658 n 0000 ~ 03551582 n 0000 ~ 03664840 n 0000 ~ 03844550 n 0000 ~ 04321121 n 0000 ~ 04350104 n 0000 ~ 04561965 n 0000 | a mechanical device that moves fluid or gas by pressure or suction -04022332 06 n 01 pump 1 002 @ 04199027 n 0000 ~ 04272389 n 0000 | a low-cut shoe without fastenings -04022434 06 n 02 pump_action 0 slide_action 0 003 @ 02677718 n 0000 #p 04090263 n 0000 #p 04206356 n 0000 | action mechanism in a modern rifle or shotgun; a back and forward motion of a sliding lever ejects the empty shell case and cocks the firearm and loads a new round -04022708 06 n 02 pump_house 0 pumping_station 0 002 @ 03545150 n 0000 ~ 04022866 n 0000 | a house where pumps (e.g. to irrigate) are installed and operated -04022866 06 n 01 pump_room 0 002 @ 04022708 n 0000 #p 08678615 n 0000 | a pump house at a spa where medicinal waters are pumped and where patrons gather -04023021 06 n 01 pump-type_pliers 0 002 @ 03966976 n 0000 ;u 06295235 n 0000 | a type of pliers -04023119 06 n 01 pump_well 0 001 @ 04572559 n 0000 | an enclosure in the middle of a ship's hold that protects the ship's pumps -04023249 06 n 02 punch 0 puncher 0 005 @ 04451818 n 0000 + 01442779 v 0201 + 01442779 v 0101 ~ 02994573 n 0000 ~ 04024137 n 0000 | a tool for making holes or indentations -04023422 06 n 01 punchboard 0 001 @ 02857023 n 0000 | a small board full of holes; each hole contains a slip of paper with symbols printed on it; a gambler pays a small sum for the privilege of pushing out a slip in the hope of obtaining one that entitles him to a prize -04023695 06 n 01 punch_bowl 0 001 @ 02880940 n 0000 | a large bowl for serving beverages; usually with a ladle -04023808 06 n 03 punched_card 0 punch_card 0 Hollerith_card 0 001 @ 02962545 n 0000 | a card on which data can be recorded in the form of punched holes -04023962 06 n 04 punching_bag 0 punch_bag 0 punching_ball 0 punchball 0 001 @ 02778669 n 0000 | an inflated ball or bag that is suspended and punched for training in boxing -04024137 06 n 01 punch_pliers 0 002 @ 04023249 n 0000 ;u 06295235 n 0000 | punch consisting of pliers for perforating paper or leather -04024274 06 n 01 punch_press 0 002 @ 03999992 n 0000 ~ 02829596 n 0000 | a power driven press used to shape metal parts -04024396 06 n 01 puncture 0 006 @ 03526198 n 0000 + 00309990 v 0101 + 01274971 v 0101 + 01275182 v 0101 ~ 03943010 n 0000 ~ 03943623 n 0000 | a small hole made by a sharp object -04024576 06 n 01 pung 0 001 @ 04235291 n 0000 | a one-horse sleigh consisting of a box on runners -04024676 06 n 01 punkah 0 001 @ 03320046 n 0000 | a large fan consisting of a frame covered with canvas that is suspended from the ceiling; used in India for circulating air in a room -04024862 06 n 01 punnet 0 002 @ 02801938 n 0000 ;r 08860123 n 0000 | a small light basket used as a measure for fruits -04024983 06 n 01 punt 0 002 @ 02858304 n 0000 + 01372189 v 0101 | an open flat-bottomed boat used in shallow waters and propelled by a long pole -04025130 06 n 01 puppet 0 003 @ 03219135 n 0000 + 10493685 n 0101 ~ 03487963 n 0000 | a doll with a hollow head of a person or animal and a cloth body; intended to fit over the hand and be manipulated with the fingers -04025350 06 n 02 puppet 1 marionette 0 002 @ 03335600 n 0000 + 10493685 n 0101 | a small figure of a person operated from above with strings by a puppeteer -04025508 06 n 02 pup_tent 0 shelter_tent 0 001 @ 04411264 n 0000 | a wedge-shaped tent; usually without a floor or windows -04025633 06 n 01 purdah 0 001 @ 04152387 n 0000 | a screen used in India to separate women from men or strangers -04025748 06 n 04 purgative 0 cathartic 0 physic 0 aperient 0 010 @ 03740161 n 0000 + 00637979 a 0401 + 00638067 a 0201 + 00638067 a 0103 ~ 02698366 n 0000 ~ 02980841 n 0000 ~ 03293321 n 0000 ~ 03650084 n 0000 ~ 03765269 n 0000 ~ 15009637 n 0000 | a purging medicine; stimulates evacuation of the bowels -04026053 06 n 01 purifier 0 003 @ 02727825 n 0000 + 00475183 v 0101 ~ 04156040 n 0000 | an apparatus for removing impurities -04026180 06 n 02 purl 0 purl_stitch 0 003 @ 03625783 n 0000 + 01671885 v 0201 + 01671333 v 0101 | a basic knitting stitch -04026304 06 n 01 purl 1 003 @ 04426788 n 0000 + 01668144 v 0101 + 01668278 v 0101 | gold or silver wire thread -04026417 06 n 01 purse 2 002 @ 02773037 n 0000 %p 04026688 n 0000 | a small bag for carrying money -04026518 06 n 01 purse_seine 0 001 @ 04168541 n 0000 | a seine designed to be set by two boats around a school of fish and then closed at the bottom by means of a line -04026688 06 n 01 purse_string 0 002 @ 03235560 n 0000 #p 04026417 n 0000 | a drawstring used to close the mouth of a purse -04026813 06 n 01 push-bike 0 002 @ 02834778 n 0000 ;r 08860123 n 0000 | a bicycle that must be pedaled -04026918 06 n 01 push_broom 0 001 @ 02906734 n 0000 | a wide broom that is pushed ahead of the sweeper -04027023 06 n 03 push_button 0 push 0 button 1 008 @ 04372370 n 0000 #p 04027367 n 0000 ~ 02826589 n 0000 ~ 03222516 n 0000 ~ 03537412 n 0000 ~ 03793850 n 0000 ~ 03883054 n 0000 ~ 04079106 n 0000 | an electrical switch operated by pressing; "the elevator was operated by push buttons"; "the push beside the bed operated a buzzer at the desk" -04027367 06 n 01 push-button_radio 0 002 @ 04043733 n 0000 %p 04027023 n 0000 | a radio receiver that can be tuned by pressing buttons -04027504 06 n 03 push-down_storage 0 push-down_store 0 stack 1 001 @ 03744840 n 0000 | a storage device that handles data so that the next item to be retrieved is the item most recently stored (LIFO) -04027706 06 n 02 pusher 1 zori 0 001 @ 04133789 n 0000 | a sandal attached to the foot by a thong over the toes -04027820 06 n 01 put-put 0 002 @ 03424630 n 0000 ;u 07075172 n 0000 | a small gasoline engine (as on motor boat) -04027935 06 n 01 puttee 0 001 @ 03655072 n 0000 | a strip of cloth wound around the leg to form legging; used by soldiers in World War I -04028074 06 n 02 putter 0 putting_iron 0 003 @ 03585073 n 0000 + 01403785 v 0101 + 01403540 v 0101 | the iron normally used on the putting green -04028221 06 n 01 putty_knife 0 001 @ 04269944 n 0000 | a spatula used to mix or apply putty -04028315 06 n 01 puzzle 0 005 @ 03413828 n 0000 ~ 03018848 n 0000 ~ 03598930 n 0000 ~ 04388574 n 0000 ~ 06785654 n 0000 | a game that tests your ingenuity -04028472 06 n 01 pyelogram 0 002 @ 04100620 n 0000 ~ 03582508 n 0000 | an X ray of the kidneys and ureters -04028581 06 n 02 pylon 0 power_pylon 0 001 @ 04460130 n 0000 | a large vertical steel tower supporting high-tension power lines; "power pylons are a favorite target for terrorists" -04028764 06 n 01 pylon 1 001 @ 04460130 n 0000 | a tower for guiding pilots or marking the turning point in a race -04028881 06 n 01 pyocyanase 0 001 @ 02716866 n 0000 | a yellow-green mixture of antibiotics obtained from the bacillus of green pus -04029015 06 n 01 pyocyanin 0 001 @ 02716866 n 0000 | a toxic blue crystalline antibiotic found in green pus -04029125 06 n 03 Pyramid 0 Great_Pyramid 0 Pyramids_of_Egypt 0 005 @i 03743902 n 0000 #m 04178329 n 0000 + 01810998 a 0101 + 01810998 a 0103 + 01466047 v 0101 | a massive monument with a square base and four triangular sides; begun by Cheops around 2700 BC as royal tombs in ancient Egypt -04029416 06 n 01 pyramidal_tent 0 001 @ 04411264 n 0000 | a large tent shaped like a pyramid; can hold half a dozen people -04029541 06 n 01 pyrilamine 0 001 @ 02720725 n 0000 | antihistamine used to treat rhinitis and pruritus -04029647 06 n 01 pyrograph 0 001 @ 03178782 n 0000 | a design produced by pyrography -04029734 06 n 01 pyrometer 0 005 @ 04421872 n 0000 ~ 03852544 n 0000 ~ 04029913 n 0000 ~ 04040540 n 0000 ~ 04079603 n 0000 | a thermometer designed to measure high temperatures -04029913 06 n 01 pyrometric_cone 0 001 @ 04029734 n 0000 | a pyrometer consisting of a series of cones that melt at different temperatures -04030054 06 n 01 pyrostat 0 001 @ 04422875 n 0000 | a thermostat that operates at very high temperatures -04030161 06 n 02 pyx 0 pix 0 001 @ 04060904 n 0000 | any receptacle in which wafers for the Eucharist are kept -04030274 06 n 04 pyx 1 pix 1 pyx_chest 0 pix_chest 0 001 @ 03014705 n 0000 | a chest in which coins from the mint are held to await assay -04030414 06 n 01 pyxis 0 001 @ 02883344 n 0000 | a small box used by ancient Greeks to hold medicines -04030518 06 n 02 quad 0 quadrangle 0 002 @ 02735688 n 0000 + 02834340 a 0201 | a rectangular area surrounded on all sides by buildings -04030655 06 n 02 quad 1 space 0 003 @ 04504486 n 0000 ;c 06677302 n 0000 ~ 03476843 n 0000 | (printing) a block of type without a raised letter; used for spacing between words or sentences -04030846 06 n 01 quadrant 0 001 @ 03733925 n 0000 | a measuring instrument for measuring altitude of heavenly bodies -04030965 06 n 03 quadraphony 0 quadraphonic_system 0 quadriphonic_system 0 002 @ 04315948 n 0000 + 03108193 a 0101 | a stereophonic sound recording or reproducing system using four separate channels -04031166 06 n 01 quadruplicate 0 003 @ 03104594 n 0000 + 00247048 v 0101 + 01735947 v 0101 | any four copies; any of four things that correspond to one another exactly; "it was signed in quadruplicate" -04031370 06 n 01 Quaker_gun 0 001 @ 03467984 n 0000 | a dummy gun or piece of artillery made usually of wood -04031481 06 n 01 quarrel 0 001 @ 02742753 n 0000 | an arrow that is shot from a crossbow; has a head with four edges -04031600 06 n 01 quarter 1 002 @ 03933183 n 0000 #p 04514359 n 0000 | piece of leather that comprises the part of a shoe or boot covering the heel and joining the vamp -04031770 06 n 01 quarterdeck 0 002 @ 03167666 n 0000 #p 04566862 n 0000 | the stern area of a ship's upper deck -04031884 06 n 01 quartering 0 003 @ 03546340 n 0000 ;c 08199025 n 0000 + 02653159 v 0101 | living accommodations (especially those assigned to military personnel) -04032049 06 n 01 quartering 1 001 @ 03058726 n 0000 | a coat of arms that occupies one quarter of an escutcheon; combining four coats of arms on one shield usually represented intermarriages -04032242 06 n 01 quarterlight 0 002 @ 02974219 n 0000 ;r 08860123 n 0000 | car window consisting of a small pivoted glass vent in the door of a car -04032392 06 n 01 quarter_plate 0 001 @ 03960783 n 0000 | a photographic plate measuring 3.25 inches by 4.25 inches -04032509 06 n 01 quarterstaff 0 001 @ 04296261 n 0000 | a long stout staff used as a weapon -04032603 06 n 02 quartz_battery 0 quartz_mill 0 001 @ 04300358 n 0000 | a stamp mill for stamping quartz -04032710 06 n 01 quartz_crystal 0 001 @ 14693733 n 0000 | a thin plate or small rod of quartz cut along certain lines and ground so that it can produce an electric signal at a constant frequency; used in crystal oscillators -04032936 06 n 01 quartz_lamp 0 001 @ 03750206 n 0000 | a mercury-vapor lamp that is enclosed in a quartz container instead of a glass container -04033082 06 n 01 quay 0 001 @ 03933529 n 0000 | wharf usually built parallel to the shoreline -04033178 06 n 01 Quebec_Bridge 0 002 @i 02953197 n 0000 #p 08829317 n 0000 | a cantilever bridge in Quebec -04033287 06 n 01 queen 0 004 @ 03014440 n 0000 ;c 00503237 n 0000 + 01969991 v 0101 + 02593790 v 0101 | (chess) the most powerful piece -04033425 06 n 01 queen 1 002 @ 03314028 n 0000 #m 07956721 n 0000 | one of four face cards in a deck bearing a picture of a queen -04033557 06 n 01 queen_post 0 001 @ 03988170 n 0000 | vertical tie post in a roof truss -04033647 06 n 01 Queensboro_Bridge 0 002 @i 02953197 n 0000 #p 09119277 n 0000 | a cantilever bridge across the East River between Manhattan and Queens -04033801 06 n 01 quern 0 001 @ 03765561 n 0000 | a primitive stone mill for grinding corn by hand -04033901 06 n 02 quill 0 quill_pen 0 001 @ 03906997 n 0000 | pen made from a bird's feather -04033995 06 n 04 quilt 0 comforter 0 comfort 0 puff 0 007 @ 02820210 n 0000 + 00082308 v 0301 + 00082308 v 0201 + 01667304 v 0101 + 01667449 v 0101 ~ 03266749 n 0000 ~ 03898633 n 0000 | bedding made of two layers of cloth filled with stuffing and stitched together -04034262 06 n 01 quilted_bedspread 0 001 @ 02822220 n 0000 | a bedspread constructed like a thin quilt -04034367 06 n 01 quilting 0 001 @ 03309808 n 0000 | a material used for making a quilt, or a quilted fabric -04034477 06 n 01 quilting 1 003 @ 04180314 n 0000 + 01667449 v 0101 + 01667304 v 0101 | stitching through layers of fabric and a filling so as to create a design -04034641 06 n 04 quinacrine 0 quinacrine_hydrochloride 0 mepacrine 0 Atabrine 0 003 @ 02721948 n 0000 @ 04528630 n 0000 ;u 06845599 n 0401 | a drug (trade name Atabrine) used to treat certain worm infestations and once used to treat malaria -04034884 06 n 03 quinidine 0 Quinidex 0 Quinora 0 003 @ 02715941 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | cardiac drug (trade names Quinidex and Quinora) used to treat certain heart arrhythmias -04035086 06 n 01 quinine 0 002 @ 02721948 n 0000 #s 07929172 n 0000 | a bitter alkaloid extracted from chinchona bark; used in malaria therapy -04035231 06 n 01 quipu 0 001 @ 02938886 n 0000 | calculator consisting of a cord with attached cords; used by ancient Peruvians for calculating and keeping records -04035397 06 n 01 quirk 0 001 @ 13893786 n 0000 | a narrow groove beside a beading -04035481 06 n 02 quirk_bead 0 bead_and_quirk 0 001 @ 02815237 n 0000 | beading formed with a narrow groove separating it from the surface it decorates -04035634 06 n 02 quirk_molding 0 quirk_moulding 0 001 @ 03780392 n 0000 | a molding having a small groove in it -04035748 06 n 01 quirt 0 001 @ 04577769 n 0000 | whip with a leather thong at the end -04035836 06 n 01 quiver 0 001 @ 02974697 n 0000 | case for holding arrows -04035912 06 n 03 quoin 1 coign 1 coigne 1 001 @ 03615133 n 0000 | the keystone of an arch -04036004 06 n 03 quoin 2 coign 2 coigne 2 001 @ 04569520 n 0000 | expandable metal or wooden wedge used by printers to lock up a form within a chase -04036155 06 n 01 quoit 0 001 @ 03414162 n 0000 | game equipment consisting of a ring of iron or circle of rope used in playing the game of quoits -04036303 06 n 01 QWERTY_keyboard 0 001 @ 04505470 n 0000 | the standard typewriter keyboard; the keys for Q, W, E, R, T, and Y are the first six from the left on the top row of letter keys -04036494 06 n 08 R-2 0 Mexican_valium 0 rophy 0 rope 1 roofy 0 roach 1 forget_me_drug 0 circle 3 001 @ 03370020 n 0000 | street names for flunitrazepan -04036648 06 n 02 rabato 0 rebato 0 001 @ 03068181 n 0000 | a wired or starched collar of intricate lace; worn in 17th century -04036776 06 n 02 rabbet 0 rebate 0 005 @ 13893786 n 0000 + 01555193 v 0201 + 01295134 v 0201 + 01281500 v 0101 + 01295910 v 0101 | a rectangular groove made to hold two pieces together -04036963 06 n 01 rabbet_joint 0 001 @ 03600977 n 0000 | a joint formed by fitting together two rabbeted boards -04037076 06 n 01 rabbit_ears 0 002 @ 04404817 n 0000 ;u 06295235 n 0000 | an indoor TV antenna; consists of two extendible rods that form a V -04037220 06 n 01 rabbit_hutch 0 001 @ 03550289 n 0000 | a hutch for rabbits -04037298 06 n 01 raceabout 0 001 @ 04242408 n 0000 | a small sloop having the keep of a knockabout but with finer lines and carrying more sail -04037443 06 n 03 racer 0 race_car 0 racing_car 0 005 @ 02958343 n 0000 + 01086103 v 0101 %p 03061674 n 0000 ~ 03342961 n 0000 ~ 04322801 n 0000 | a fast car that competes in races -04037625 06 n 04 racetrack 0 racecourse 0 raceway 1 track 5 008 @ 03119790 n 0000 ~ 03032158 n 0000 ~ 03205760 n 0000 ~ 04038109 n 0000 ~ 04274110 n 0000 %p 04336645 n 0000 ~ 04524833 n 0000 %p 09314013 n 0000 | a course over which races are run -04037873 06 n 02 raceway 0 race 0 001 @ 02947212 n 0000 | a canal for a current of water -04037964 06 n 01 racing_boat 0 003 @ 04244997 n 0000 ~ 04038231 n 0000 ~ 04190997 n 0000 | a boat propelled by oarsmen and designed for racing -04038109 06 n 02 racing_circuit 0 circuit 1 002 @ 04037625 n 0000 ;r 08860123 n 0000 | a racetrack for automobile races -04038231 06 n 01 racing_gig 0 001 @ 04037964 n 0000 | a light narrow racing boat for two or more oarsmen -04038338 06 n 02 racing_skiff 0 single_shell 0 001 @ 04190997 n 0000 | a shell for a single oarsman -04038440 06 n 02 rack 0 stand 3 009 @ 04359589 n 0000 ~ 02836268 n 0000 ~ 03140546 n 0000 ~ 03238762 n 0000 ~ 03704549 n 0000 ~ 03801760 n 0000 ~ 04275175 n 0000 %p 04280970 n 0000 ~ 04485082 n 0000 | a support for displaying various articles; "the newspapers were arranged on a rack" -04038727 06 n 01 rack 1 014 @ 03391770 n 0000 + 01669419 v 0101 + 02408722 v 0101 ~ 02790669 n 0000 ~ 02835829 n 0000 ~ 02969886 n 0000 ~ 03059103 n 0000 ~ 03207630 n 0000 ~ 03500971 n 0000 ~ 03946723 n 0000 ~ 03961711 n 0000 ~ 04434207 n 0000 ~ 04442741 n 0000 ~ 04459773 n 0000 | framework for holding objects -04039041 06 n 02 rack 2 wheel 2 003 @ 03576215 n 0000 + 00071547 v 0101 + 01802689 v 0104 | an instrument of torture that stretches or disjoints or mutilates victims -04039209 06 n 01 rack_and_pinion 0 001 @ 03430551 n 0000 | a wheel gear (the pinion) meshes with a toothed rack; converts rotary to reciprocating motion (and vice versa) -04039381 06 n 02 racket 0 racquet 0 008 @ 04285622 n 0000 + 01408633 v 0101 ~ 02772700 n 0000 ~ 03136657 n 0000 %p 03313873 n 0000 %p 03485997 n 0000 ~ 04292414 n 0000 ~ 04409806 n 0000 | a sports implement (usually consisting of a handle and an oval frame with a tightly interlaced network of strings) used to strike a ball (or shuttlecock) in various games -04039742 06 n 01 racquetball 0 001 @ 02778669 n 0000 | the ball used in playing the game of racquetball -04039848 06 n 04 radar 0 microwave_radar 0 radio_detection_and_ranging 0 radiolocation 0 010 @ 03733925 n 0000 + 02695520 v 0401 %p 03207305 n 0000 ~ 03224490 n 0000 ~ 03261263 n 0000 %p 03857828 n 0000 %p 04021503 n 0000 ~ 04427559 n 0000 %p 04564413 n 0000 ~ 04567480 n 0000 | measuring instrument in which the echo of a pulse of microwave radiation is used to detect and locate distant objects -04040247 06 n 03 radial 0 radial_tire 0 radial-ply_tire 0 001 @ 03971422 n 0000 | pneumatic tire that has radial-ply casing -04040373 06 n 02 radial_engine 0 rotary_engine 1 001 @ 03579982 n 0000 | an internal-combustion engine having cylinders arranged radially around a central crankcase -04040540 06 n 01 radiation_pyrometer 0 001 @ 04029734 n 0000 | a pyrometer for estimating the temperature of distant sources of heat; radiation is focussed on a thermojunction connected in circuit with a galvanometer -04040759 06 n 01 radiator 1 003 @ 03738472 n 0000 #p 03103128 n 0000 %p 04041243 n 0000 | a mechanism consisting of a metal honeycomb through which hot fluids circulate; heat is transferred from the fluid through the honeycomb to the airstream that is created either by the motion of the vehicle or by a fan -04041069 06 n 01 radiator 2 002 @ 03508101 n 0000 #p 03509025 n 0000 | heater consisting of a series of pipes for circulating steam or hot water to heat rooms or buildings -04041243 06 n 01 radiator_cap 0 002 @ 02954938 n 0000 #p 04040759 n 0000 | cap on the opening in the top of a radiator through which a coolant liquid can be added -04041408 06 n 01 radiator_hose 0 002 @ 03539875 n 0000 #p 03103128 n 0000 | a flexible hose between the radiator and the engine block -04041544 06 n 02 radio 0 wireless 0 005 @ 03078287 n 0000 + 01007495 v 0101 %p 04043733 n 0000 ~ 04044307 n 0000 %p 04045085 n 0000 | a communication system based on broadcasting electromagnetic waves -04041747 06 n 02 radio_antenna 0 radio_aerial 0 001 @ 03846772 n 0000 | omnidirectional antenna comprising the part of a radio receiver by means of which radio signals are received -04041930 06 n 02 radio_beacon 0 beacon 0 001 @ 04044119 n 0000 | a radio station that broadcasts a directional signal for navigational purposes -04042076 06 n 01 radio_chassis 0 003 @ 03010656 n 0000 #p 04064401 n 0000 #p 04060647 n 0000 | a chassis for a radio receiver -04042204 06 n 01 radio_compass 0 001 @ 03205304 n 0000 | a direction finder that gives a bearing by determining the direction of incoming radio signals -04042358 06 n 05 radiogram 0 radiograph 0 shadowgraph 0 skiagraph 0 skiagram 0 003 @ 03925226 n 0000 ~ 02762371 n 0000 ~ 04100620 n 0000 | a photographic image produced on a radiosensitive surface by radiation other than visible light (especially by X-rays or gamma rays) -04042632 06 n 01 radio_interferometer 0 001 @ 04044716 n 0000 | radio telescope that uses interference patterns from two antennas instead of a parabolic antenna -04042795 06 n 02 radio_link 0 link 2 002 @ 03078287 n 0000 ~ 04545858 n 0000 | a two-way radio communication system (usually microwave); part of a more extensive telecommunication network -04042985 06 n 01 radiometer 0 004 @ 03753077 n 0000 ~ 03134232 n 0000 ~ 04043168 n 0000 ~ 04056718 n 0000 | meter to detect and measure radiant energy (electromagnetic or acoustic) -04043168 06 n 01 radiomicrometer 0 001 @ 04042985 n 0000 | radiometer that is extremely sensitive -04043268 06 n 01 radiopharmaceutical 0 001 @ 03920989 n 0000 | pharmaceutical consisting of a radioactive compound used in radiation therapy -04043411 06 n 02 radio-phonograph 0 radio-gramophone 0 003 @ 03278248 n 0000 #p 02757462 n 0000 %p 04043733 n 0000 | electronic equipment consisting of a combination of a radio receiver and a record player -04043619 06 n 02 radiophotograph 0 radiophoto 0 001 @ 04403279 n 0000 | a photograph transmitted by radio waves -04043733 06 n 06 radio_receiver 0 receiving_set 0 radio_set 0 radio 1 tuner 0 wireless 1 011 @ 04060647 n 0000 #p 04041544 n 0000 #p 04043411 n 0000 + 01007495 v 0401 %p 02705944 n 0000 ~ 03046921 n 0000 ~ 03144156 n 0000 %p 03181293 n 0000 %p 03181501 n 0000 ~ 03516996 n 0000 ~ 04027367 n 0000 | an electronic receiver that detects and demodulates and amplifies transmitted signals -04044119 06 n 01 radio_station 0 004 @ 02903405 n 0000 #p 03077958 n 0000 %p 02903588 n 0000 ~ 04041930 n 0000 | station for the production and transmission of AM or FM radio broadcasts -04044307 06 n 04 radiotelegraph 0 radiotelegraphy 0 wireless_telegraph 0 wireless_telegraphy 0 001 @ 04041544 n 0000 | the use of radio to send telegraphic messages (usually by Morse code) -04044498 06 n 03 radiotelephone 0 radiophone 0 wireless_telephone 0 004 @ 04401088 n 0000 + 02786866 a 0202 + 02786866 a 0101 ~ 02992529 n 0000 | a telephone that communicates by radio waves rather than along cables -04044716 06 n 02 radio_telescope 0 radio_reflector 0 003 @ 02751295 n 0000 %p 03207305 n 0000 ~ 04042632 n 0000 | astronomical telescope that picks up electromagnetic radiations in the radio-frequency range from extraterrestrial sources -04044955 06 n 01 radiotherapy_equipment 0 001 @ 03294048 n 0000 | equipment used to treat diseases with x-rays or radioactivity -04045085 06 n 01 radio_transmitter 0 003 @ 04472726 n 0000 #p 04041544 n 0000 ~ 04269668 n 0000 | transmitter that is the part of a radio system that transmits signals -04045255 06 n 02 radome 0 radar_dome 0 002 @ 03546766 n 0000 #p 02691156 n 0000 | a housing for a radar antenna; transparent to radio waves -04045397 06 n 01 raft 0 006 @ 03364340 n 0000 + 01654156 v 0101 + 01842508 v 0101 + 01949966 v 0101 ~ 02783900 n 0000 ~ 03663781 n 0000 | a flat float (usually made of logs or planks) that can be used for transport or as a platform for swimmers -04045644 06 n 03 rafter 0 balk 0 baulk 0 002 @ 02815950 n 0000 + 02337870 v 0101 | one of several parallel sloping beams that support a roof -04045787 06 n 01 raft_foundation 0 001 @ 03387016 n 0000 | a foundation (usually on soft ground) consisting of an extended layer of reinforced concrete -04045941 06 n 05 rag 0 shred 0 tag 1 tag_end 0 tatter 0 003 @ 03932670 n 0000 + 01573891 v 0201 ~ 03942397 n 0000 | a small piece of cloth or paper -04046091 06 n 01 ragbag 0 001 @ 02773037 n 0000 | a bag in which rags are kept -04046172 06 n 01 rag_doll 0 001 @ 03219135 n 0000 | a cloth doll that is stuffed and (usually) painted -04046277 06 n 01 raglan 0 002 @ 03419014 n 0000 %p 04046400 n 0000 | a garment (coat or sweater) that has raglan sleeves -04046400 06 n 01 raglan_sleeve 0 002 @ 04236377 n 0000 #p 04046277 n 0000 | a sleeve that extends in one piece to the neckline of a coat or sweater with seams from the armhole to the neck -04046590 06 n 01 rail 0 008 @ 02788689 n 0000 + 02711543 v 0101 + 02330407 v 0101 ~ 03523134 n 0000 ~ 03653975 n 0000 ~ 03931980 n 0000 ~ 03961828 n 0000 ~ 04282872 n 0000 | a horizontal bar (usually of wood or metal) -04046810 06 n 01 rail 3 003 @ 04048568 n 0000 + 01936537 v 0102 + 01954559 v 0101 | short for railway; "he traveled by rail"; "he was concerned with rail safety" -04046974 06 n 01 rail_fence 0 003 @ 03327234 n 0000 %p 04282872 n 0000 ~ 04604644 n 0000 | a fence (usually made of split logs laid across each other at an angle) -04047139 06 n 01 railhead 0 001 @ 04329190 n 0000 | a railroad depot in a theater of operations where military supplies are unloaded for distribution -04047291 06 n 01 railhead 1 001 @ 08566028 n 0000 | the end of the completed track on an unfinished railway -04047401 06 n 02 railing 0 rail 2 013 @ 02796623 n 0000 #p 02788148 n 0000 + 02031430 v 0201 + 02330407 v 0201 + 02711543 v 0201 + 02711543 v 0101 + 02330407 v 0101 + 02031430 v 0101 ~ 02789770 n 0000 ~ 03334667 n 0000 %p 03653975 n 0000 ~ 04127395 n 0000 ~ 04383923 n 0000 | a barrier consisting of a horizontal bar and supports -04047733 06 n 01 railing 1 001 @ 03729951 n 0000 | material for making rails or rails collectively -04047834 06 n 01 railroad_bed 0 002 @ 02819697 n 0000 #p 03671272 n 0000 | a bed on which railroad track is laid -04047949 06 n 01 railroad_flat 0 001 @ 02726305 n 0000 | an apartment whose rooms are all in a line with doors between them -04048075 06 n 03 railroad_track 0 railroad 1 railway 1 012 @ 04463983 n 0000 #p 03671272 n 0000 + 01950657 v 0201 + 02331919 v 0201 ~ 02903964 n 0000 ~ 03415868 n 0000 ~ 03809456 n 0000 ~ 04216106 n 0000 ~ 04301626 n 0000 ~ 04372756 n 0000 %p 04433585 n 0000 %p 04463679 n 0000 | a line of track providing a runway for wheels; "he walked along the railroad track" -04048441 06 n 01 railroad_tunnel 0 002 @ 04497962 n 0000 ~i 03027935 n 0000 | a tunnel through which the railroad track runs -04048568 06 n 05 railway 0 railroad 0 railroad_line 0 railway_line 1 railway_system 0 010 @ 03671473 n 0000 + 01950657 v 0201 + 02331919 v 0201 ~ 02934641 n 0000 ~ 03065063 n 0000 ~ 03280813 n 0000 ~ 03757138 n 0000 ~ 03784053 n 0000 ~ 04046810 n 0000 ~ 04145322 n 0000 | line that is the commercial organization responsible for operating a system of transportation for trains that pull passengers or freight -04048979 06 n 01 railway_junction 0 001 @ 03605722 n 0000 | a junction where two or more railway lines meet or cross -04049098 06 n 05 railway_station 0 railroad_station 0 railroad_terminal 0 train_station 0 train_depot 0 002 @ 04412901 n 0000 ~ 04579795 n 0000 | terminal where trains load or unload passengers or goods -04049303 06 n 01 rain_barrel 0 001 @ 03035510 n 0000 | a barrel used as a cistern to hold rainwater -04049405 06 n 02 raincoat 0 waterproof 1 006 @ 03057021 n 0000 + 01398941 a 0202 + 01354405 v 0201 ~ 02921406 n 0000 ~ 03702719 n 0000 ~ 04479046 n 0000 | a water-resistant coat -04049585 06 n 04 rain_gauge 0 rain_gage 0 pluviometer 0 udometer 0 001 @ 03429288 n 0000 | gauge consisting of an instrument to measure the quantity of precipitation -04049753 06 n 01 rain_stick 0 001 @ 03915437 n 0000 | a percussion instrument that is made from a dried cactus branch that is hollowed out and filled with small pebbles and capped at both ends; makes the sound of falling rain when tilted; origin was in Chile where tribesmen used it in ceremonies to bring rain -04050066 06 n 01 rake 0 007 @ 04451818 n 0000 + 01306853 v 0101 + 01307020 v 0101 + 02099669 v 0101 ~ 03138217 n 0000 ~ 03417970 n 0000 %p 04050313 n 0000 | a long-handled tool with a row of teeth at its head; used to move leaves or loosen soil -04050313 06 n 01 rake_handle 0 002 @ 03485997 n 0000 #p 04050066 n 0000 | the handle of a rake -04050410 06 n 01 ram 0 006 @ 04451818 n 0000 + 01516534 v 0103 + 01575146 v 0101 ~ 02810139 n 0000 %p 03501614 n 0000 ~ 04051439 n 0000 | a tool for driving or forcing something by impact -04050600 06 n 01 RAM_disk 0 003 @ 03243218 n 0000 #p 04052757 n 0000 ;c 06128570 n 0000 | (computer science) a virtual drive that is created by setting aside part of the random-access memory to use as if it were a group of sectors; "access to a RAM disk is very fast but the data it contains is lost when the system is turned off" -04050933 06 n 02 ramekin 0 ramequin 0 001 @ 03206908 n 0000 | a small fireproof dish used for baking and serving individual portions -04051068 06 n 02 ramipril 0 Altace 0 002 @ 02673637 n 0000 ;u 06845599 n 0201 | an ACE inhibitor (trade name Altace) used to treat high blood pressure or in some patients who have had a heart attack -04051269 06 n 05 ramjet 0 ramjet_engine 0 atherodyde 0 athodyd 0 flying_drainpipe 0 001 @ 03596285 n 0000 | a simple type of jet engine; must be launched at high speed -04051439 06 n 01 rammer 0 002 @ 04050410 n 0000 + 01575146 v 0101 | a tool for driving something with force -04051549 06 n 02 ramp 0 incline 0 004 @ 03566329 n 0000 + 02037090 v 0202 + 02334595 v 0101 ~ 04229620 n 0000 | an inclined surface connecting two levels -04051705 06 n 01 rampant_arch 0 001 @ 02733524 n 0000 | an arch whose support is higher on one side than on the other -04051825 06 n 03 rampart 0 bulwark 1 wall 1 011 @ 03282060 n 0000 #p 03385557 n 0000 + 01130607 v 0301 + 01128071 v 0201 ~i 02725596 n 0000 ~ 02775689 n 0000 ~ 02811936 n 0000 ~i 03018971 n 0000 ~ 03262717 n 0000 ~ 03390786 n 0000 ~ 03750614 n 0000 | an embankment built around a space for defensive purposes; "they stormed the ramparts of the city"; "they blew the trumpet and the walls came tumbling down" -04052235 06 n 01 ramrod 0 001 @ 04100174 n 0000 | a rod used to ram the charge into a muzzle-loading firearm -04052346 06 n 01 ramrod 1 001 @ 04100174 n 0000 | a rod used to clean the barrel of a firearm -04052442 06 n 04 ranch 0 spread 1 cattle_ranch 0 cattle_farm 0 002 @ 03322099 n 0000 + 02420430 v 0101 | farm consisting of a large tract of land along with facilities needed to raise livestock (especially cattle) -04052658 06 n 01 ranch_house 0 001 @ 03544360 n 0000 | a one story house with a low pitched roof -04052757 06 n 05 random-access_memory 0 random_access_memory 0 random_memory 0 RAM 1 read/write_memory 0 005 @ 04539876 n 0000 %p 02911485 n 0000 %p 03108069 n 0000 ~ 03706415 n 0000 %p 04050600 n 0000 | the most common computer memory which can be used by programs to perform necessary tasks while the computer is on; an integrated circuit memory chip allows information to be stored or accessed in any order and all storage locations are equally accessible -04053218 06 n 01 range 0 004 @ 03315023 n 0000 ~ 03997745 n 0000 ~ 04090923 n 0000 ~ 04415578 n 0000 | a place for shooting (firing or driving) projectiles of various kinds; "the army maintains a missile range in the desert"; "any good golf club will have a range where you can practice" -04053508 06 n 02 rangefinder 0 range_finder 0 001 @ 03733925 n 0000 | a measuring instrument (acoustic or optical or electronic) for finding the distance of an object -04053677 06 n 01 range_hood 0 001 @ 03531546 n 0000 | exhaust hood over a kitchen range -04053767 06 n 03 range_pole 0 ranging_pole 0 flagpole 1 001 @ 04365484 n 0000 | surveying instrument consisting of a straight rod painted in bands of alternate red and white each one foot wide; used for sightings by surveyors -04053995 06 n 02 ranitidine 0 Zantac 0 003 @ 03522239 n 0000 @ 14778019 n 0000 ;u 06845599 n 0201 | a histamine blocker and antacid (trade name Zantac) used to treat peptic ulcers and gastritis and esophageal reflux -04054213 06 n 02 rapid_transit 0 mass_rapid_transit 0 001 @ 04018951 n 0000 | an urban public transit system using underground or elevated trains -04054361 06 n 02 rapier 0 tuck 1 001 @ 04373894 n 0000 | a straight sword with a narrow blade and two edges -04054471 06 n 01 rappee 0 001 @ 04252939 n 0000 | strong snuff made from dark coarse tobacco -04054566 06 n 01 rariora 0 002 @ 03069567 n 0000 ;u 06295235 n 0000 | (plural) rare collector's items -04054670 06 n 02 rasp 0 wood_file 0 002 @ 03336839 n 0000 + 01386906 v 0101 | a coarse file with sharp pointed projections -04054795 06 n 01 raster 0 004 @ 03385117 n 0000 #p 03211117 n 0000 + 00114481 v 0101 %p 03952277 n 0000 | the rectangular formation of parallel scanning lines that guide the electron beam on a television screen or a computer monitor -04055030 06 n 01 rat 0 003 @ 03872495 n 0000 #p 05256862 n 0000 + 01527135 v 0101 | a pad (usually made of hair) worn as part of a woman's coiffure -04055180 06 n 03 ratchet 0 rachet 0 ratch 0 005 @ 03736970 n 0000 #p 04279987 n 0000 + 02072673 v 0101 %p 03901548 n 0000 %p 04055447 n 0000 | mechanical device consisting of a toothed wheel or rack engaged with a pawl that permits it to move in only one direction -04055447 06 n 01 ratchet_wheel 0 002 @ 04574999 n 0000 #p 04055180 n 0000 | toothed wheel held in place by a pawl or detent and turned by a lever -04055595 06 n 01 rathole 0 002 @ 04105893 n 0000 ;u 07075172 n 0000 | a small dirty uncomfortable room -04055700 06 n 01 rathskeller 0 001 @ 04395875 n 0000 | a tavern below street level featuring beer; originally a German restaurant in the basement of city hall -04055861 06 n 02 ratline 0 ratlin 0 003 @ 03670849 n 0000 #p 04194289 n 0000 ;c 00314469 n 0000 | (nautical) a small horizontal rope between the shrouds of a sailing ship; they form a ladder for climbing aloft -04056073 06 n 01 rat-tail_file 0 001 @ 03336839 n 0000 | a thin round file shaped like the tail of a rat -04056180 06 n 02 rattan 0 ratan 0 001 @ 04372171 n 0000 | a switch made from the stems of the rattan palms -04056289 06 n 01 rattle 0 002 @ 03964744 n 0000 + 01890626 v 0101 | a baby's toy that makes percussive noises when shaken -04056413 06 n 01 rattrap 0 001 @ 04474466 n 0000 | a trap for catching rats -04056491 06 n 01 rattrap 1 002 @ 03546340 n 0000 ;u 07075172 n 0000 | filthy run-down dilapidated housing -04056599 06 n 01 ravehook 0 001 @ 03489162 n 0000 | a hooked hand tool used to prepare the seams of a boat for oakum -04056718 06 n 01 Rayleigh_disk 0 001 @ 04042985 n 0000 | an acoustic radiometer consisting of a light disk suspended from a quartz thread; when exposed to a progressive sound wave its torque can measure velocity -04056932 06 n 01 rayon 0 003 @ 03309808 n 0000 ~ 02675219 n 0000 ~ 04538403 n 0000 | a synthetic silklike fabric -04057047 06 n 01 razor 0 006 @ 03265032 n 0000 + 00037680 v 0101 %p 04057215 n 0000 ~ 04127521 n 0000 ~ 04185804 n 0000 ~ 04332074 n 0000 | edge tool used in shaving -04057215 06 n 01 razorblade 0 002 @ 02848216 n 0000 #p 04057047 n 0000 | a blade that has very sharp edge -04057323 06 n 01 razor_edge 0 001 @ 03264136 n 0000 | an edge that is as sharp as the cutting side of a razor -04057435 06 n 02 reaction-propulsion_engine 0 reaction_engine 0 003 @ 03287733 n 0000 ~ 03583419 n 0000 ~ 03596285 n 0000 | a jet or rocket engine based on a form of aerodynamic propulsion in which the vehicle emits a high-speed stream -04057673 06 n 01 reaction_turbine 0 001 @ 04498523 n 0000 | a turbine with blades arranged to develop torque from gradual decrease of steam pressure from inlet to exhaust -04057846 06 n 01 reactor 1 002 @ 03269401 n 0000 ~ 03065708 n 0000 | an electrical device used to introduce reactance into a circuit -04057981 06 n 01 reading_lamp 0 002 @ 03636649 n 0000 ~ 04343630 n 0000 | a lamp that provides light for reading -04058096 06 n 01 reading_room 0 004 @ 04105893 n 0000 #p 03054311 n 0000 #p 03660664 n 0000 ~ 03822361 n 0000 | a room set aside for reading -04058239 06 n 04 read-only_memory 0 ROM 0 read-only_storage 0 fixed_storage 0 004 @ 03744276 n 0000 ;c 06128570 n 0000 ~ 02988679 n 0000 ~ 03294604 n 0000 | (computer science) memory whose contents can be accessed and read but cannot be changed -04058486 06 n 01 read-only_memory_chip 0 001 @ 03744684 n 0000 | a memory chip providing read-only memory -04058594 06 n 02 readout 0 read-out 0 001 @ 03277771 n 0000 | an electronic device the displays information is a visual form -04058721 06 n 02 read/write_head 0 head 5 002 @ 03065708 n 0000 ;c 06128570 n 0000 | (computer science) a tiny electromagnetic coil and metal pole used to write and read magnetic patterns on a disk -04058921 06 n 01 ready-made 0 002 @ 00021939 n 0000 ! 03152483 n 0101 | a manufactured artifact (as a garment or piece of furniture) that is made in advance and available for purchase; "their apartment was furnished with ready-mades" -04059157 06 n 01 ready-to-wear 0 001 @ 03051540 n 0000 | ready-made clothing; "she couldn't find anything in ready-to-wear that she liked" -04059298 06 n 01 real_storage 0 001 @ 03744276 n 0000 | the main memory in a virtual memory system -04059399 06 n 01 reamer 0 002 @ 03239726 n 0000 + 00541417 v 0101 | a drill that is used to shape or enlarge holes -04059516 06 n 03 reamer 1 juicer 0 juice_reamer 0 002 @ 04293119 n 0000 + 01352010 v 0101 | a squeezer with a conical ridged center that is used for squeezing juice from citrus fruit -04059701 06 n 02 rear 0 back 0 006 @ 04213626 n 0000 + 02693965 v 0201 + 00197891 a 0101 ! 03398467 n 0101 ~ 04316646 n 0000 ~ 04384016 n 0000 | the side that goes last or is not normally seen; "he wrote the date on the back of the photograph" -04059947 06 n 01 rearview_mirror 0 001 @ 02965783 n 0000 | car mirror that reflects the view out of the rear window -04060065 06 n 01 rear_window 0 002 @ 02974219 n 0000 #p 02958343 n 0000 | car window that allows vision out of the back of the car -04060198 06 n 01 Reaumur_thermometer 0 001 @ 04421872 n 0000 | an alcohol thermometer calibrated in degrees Reaumur -04060316 06 n 02 reboxetine 0 Edronax 0 001 @ 02718811 n 0000 | an antidepressant drug that blocks the reuptake of norepinephrine -04060448 06 n 01 rebozo 0 001 @ 04143897 n 0000 | a long woolen or linen scarf covering the head and shoulders (also used as a sling for holding a baby); traditionally worn by Latin-American women -04060647 06 n 02 receiver 0 receiving_system 0 009 @ 04176528 n 0000 + 02107248 v 0102 + 00117346 v 0101 %p 02715229 n 0000 ~ 03205304 n 0000 %p 04042076 n 0000 ~ 04043733 n 0000 ~ 04137773 n 0000 ~ 04405907 n 0000 | set that receives radio or tv signals -04060904 06 n 01 receptacle 0 025 @ 03094503 n 0000 ~ 02747672 n 0000 ~ 02747802 n 0000 ~ 02822865 n 0000 ~ 02975589 n 0000 ~ 02982515 n 0000 ~ 02983072 n 0000 ~ 03004275 n 0000 ~ 03066464 n 0000 ~ 03259009 n 0000 ~ 03416900 n 0000 ~ 03535284 n 0000 ~ 03543735 n 0000 ~ 03565830 n 0000 ~ 03858085 n 0000 ~ 03858837 n 0000 ~ 03960374 n 0000 ~ 04030161 n 0000 ~ 04139748 n 0000 ~ 04218921 n 0000 ~ 04255163 n 0000 ~ 04281260 n 0000 ~ 04433077 n 0000 ~ 04476259 n 0000 ~ 04488427 n 0000 | a container that is used to put or keep things in -04061442 06 n 01 receptacle 1 005 @ 03353616 n 0000 ~ 03860569 n 0000 ~ 04243727 n 0000 ~ 04255034 n 0000 ~ 04548771 n 0000 | an electrical (or electronic) fitting that is connected to a source of power and equipped to receive an insert -04061681 06 n 01 reception_desk 0 001 @ 03116530 n 0000 | a counter (as in a hotel) where guests are received -04061793 06 n 01 reception_room 0 003 @ 04105893 n 0000 ~ 03235042 n 0000 ~ 03891538 n 0000 | a room for receiving and entertaining visitors (as in a private house or hotel) -04061969 06 n 02 recess 0 niche 0 007 @ 03285912 n 0000 + 01498872 v 0101 ~ 02696048 n 0000 ~ 02731398 n 0000 ~ 03073694 n 0000 ~ 03346455 n 0000 ~ 03762434 n 0000 | an enclosure that is set back or indented -04062179 06 n 01 reciprocating_engine 0 005 @ 03579982 n 0000 %p 03127203 n 0000 %p 03127408 n 0000 %p 03288225 n 0000 %p 03948950 n 0000 | an internal-combustion engine in which the crankshaft is turned by pistons moving up and down in cylinders -04062428 06 n 03 recliner 0 reclining_chair 0 lounger 0 003 @ 02738535 n 0000 + 01528339 v 0301 + 01547641 v 0101 | an armchair whose back can be lowered and foot can be raised to allow the sitter to recline in it -04062644 06 n 01 reconnaissance_plane 0 003 @ 02691156 n 0000 @ 04552348 n 0000 ;c 08199025 n 0000 | a military airplane used to gain information about an enemy -04062807 06 n 02 reconnaissance_vehicle 0 scout_car 0 003 @ 03764276 n 0000 @ 04170037 n 0000 ;c 08199025 n 0000 | fast armored military vehicle with four-wheel drive and open top -04062989 06 n 01 restoration 1 001 @ 03777283 n 0000 | a model that represents the landscape of a former geological age or that represents and extinct animal etc. -04063154 06 n 03 record_changer 0 auto-changer 0 changer 0 002 @ 03736970 n 0000 #p 04064401 n 0000 | an automatic mechanical device on a record player that causes new records to be played without manual intervention -04063373 06 n 03 recorder 1 recording_equipment 0 recording_machine 0 010 @ 03294048 n 0000 + 00998399 v 0101 + 01000214 v 0101 ~ 02846733 n 0000 ~ 02979290 n 0000 ~ 03079494 n 0000 ~ 03707597 n 0000 ~ 03798442 n 0000 ~ 03857687 n 0000 %p 03963294 n 0000 | equipment for making records -04063661 06 n 01 recording 0 005 @ 06791372 n 0000 ~ 02865108 n 0000 ~ 03026741 n 0000 ~ 03857588 n 0000 ~ 04280603 n 0000 | a signal that encodes something (e.g., picture or sound) that has been recorded -04063868 06 n 01 recording 1 007 @ 03744840 n 0000 ~ 03079230 n 0000 ~ 03121698 n 0000 ~ 04262678 n 0000 ~ 04391838 n 0000 ~ 04470605 n 0000 ~ 04534127 n 0000 | a storage device on which information (sounds or images) have been recorded -04064107 06 n 01 recording_studio 0 001 @ 04344246 n 0000 | studio where tapes and records are recorded -04064213 06 n 01 recording_system 0 001 @ 02757462 n 0000 | audio system for recoding sound -04064307 06 n 01 record_jacket 0 001 @ 03590306 n 0000 | the jacket for a phonograph record -04064401 06 n 02 record_player 0 phonograph 1 009 @ 03699975 n 0000 #p 02757462 n 0000 %p 02971940 n 0000 ~ 03452267 n 0000 ~ 03604156 n 0000 %p 04042076 n 0000 %p 04063154 n 0000 %p 04450465 n 0000 %p 04501550 n 0000 | machine in which rotating records cause a stylus to vibrate and the vibrations are amplified acoustically or electronically -04064747 06 n 02 record_sleeve 0 record_cover 0 001 @ 04236702 n 0000 | a sleeve for storing a phonograph record -04064862 06 n 01 recovery_room 0 001 @ 03541091 n 0000 | a hospital room for the care of patients immediately after surgery -04064988 06 n 01 recreational_drug 0 001 @ 03808564 n 0000 | a narcotic drug that is used only occasionally and is claimed to be nonaddictive -04065132 06 n 02 recreational_facility 0 recreation_facility 0 002 @ 03315023 n 0000 ~ 03661861 n 0000 | a public facility for recreation -04065272 06 n 03 recreational_vehicle 0 RV 0 R.V. 0 003 @ 04170037 n 0000 ~ 02946348 n 0000 ~ 03256788 n 0000 | a motorized wheeled vehicle used for camping or other recreational activities -04065464 06 n 02 recreation_room 0 rec_room 0 004 @ 04105893 n 0000 ~ 02952585 n 0000 ~ 03319745 n 0000 ~ 04119478 n 0000 | a room equipped for informal entertaining -04065632 06 n 01 rectifier 0 003 @ 03269401 n 0000 ~ 03181501 n 0000 ~ 03402621 n 0000 | electrical device that transforms alternating into direct current -04065789 06 n 01 recycling_bin 0 002 @ 02839910 n 0000 ~ 02877513 n 0000 | a bin for depositing things to be recycled -04065909 06 n 01 recycling_plant 0 001 @ 03956922 n 0000 | a plant for reprocessing used or abandoned materials -04066023 06 n 01 redbrick_university 0 003 @ 04511002 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) a provincial British university of relatively recent founding; distinguished from Oxford University and Cambridge University -04066270 06 n 01 red_carpet 0 001 @ 04118021 n 0000 | a strip of red carpeting laid down for dignitaries to walk on -04066388 06 n 01 redoubt 0 001 @ 04340935 n 0000 | an entrenched stronghold or refuge -04066476 06 n 01 redoubt 1 002 @ 03385557 n 0000 ;c 08199025 n 0000 | (military) a temporary or supplementary fortification; typically square or polygonal without flanking defenses -04066659 06 n 01 reducer 0 001 @ 03946162 n 0000 | pipefitting that joins two pipes of different diameter -04066767 06 n 01 reduction_gear 0 001 @ 03431745 n 0000 | gearing that reduces an input speed to a slower output speed -04066888 06 n 02 reed 1 vibrating_reed 0 002 @ 04533199 n 0000 ~ 03227856 n 0000 | a vibrator consisting of a thin strip of stiff material that vibrates to produce a tone when air streams over it; "the clarinetist fitted a new reed onto his mouthpiece" -04067143 06 n 01 reed_pipe 0 001 @ 03854815 n 0000 | organ pipe with a vibrating reed -04067231 06 n 01 reed_stop 0 002 @ 03854998 n 0000 ~ 04542595 n 0000 | an organ stop with the tone of a reed instrument -04067353 06 n 02 reef_knot 0 flat_knot 0 002 @ 04291759 n 0000 ~ 03453320 n 0000 | a square knot used in a reef line -04067472 06 n 01 reel 1 004 @ 04586421 n 0000 #p 03351979 n 0000 #m 03351434 n 0000 + 01523105 v 0101 | winder consisting of a revolving spool with a handle; attached to a fishing rod -04067658 06 n 01 reel 2 002 @ 03338821 n 0000 + 01523105 v 0101 | a roll of photographic film holding a series of frames to be projected by a movie projector -04067818 06 n 01 refectory 0 001 @ 03200539 n 0000 | a communal dining-hall (usually in a monastery) -04067921 06 n 01 refectory_table 0 001 @ 03201208 n 0000 | a long narrow dining table supported by a stretcher between two trestles -04068055 06 n 01 refill 0 001 @ 03748886 n 0000 | a commercial product that refills a container with its appropriate contents; "he got a refill for his ball-point pen"; "he got a refill for his notebook" -04068261 06 n 01 refill 1 001 @ 03999280 n 0000 | a prescription drug that is provided again; "he got a refill of his prescription"; "the prescription specified only one refill" -04068441 06 n 01 refinery 0 004 @ 03956922 n 0000 + 00474762 v 0101 ~ 03844673 n 0000 ~ 04350688 n 0000 | an industrial plant for purifying a crude substance -04068601 06 n 02 reflecting_telescope 0 reflector 1 008 @ 03852688 n 0000 ~ 02978478 n 0000 ~ 03116163 n 0000 ~ 03516647 n 0000 ~ 03715114 n 0000 ~ 03822767 n 0000 %p 03887899 n 0000 ~ 04145863 n 0000 | optical telescope consisting of a large concave mirror that produces an image that is magnified by the eyepiece; "Isaac Newton invented the reflecting telescope in 1668" -04068976 06 n 02 reflection 0 reflexion 0 001 @ 03931044 n 0000 | the image of something as reflected by a mirror (or other reflective material); "he studied his reflection in the mirror" -04069166 06 n 01 reflectometer 0 001 @ 03753077 n 0000 | a meter that measures the reflectance of a surface -04069276 06 n 01 reflector 0 005 @ 03183080 n 0000 + 02136271 v 0101 ~ 03773035 n 0000 ~ 03888022 n 0000 ~ 04258138 n 0000 | device that reflects radiation -04069434 06 n 01 reflex_camera 0 001 @ 02942699 n 0000 | camera that allows the photographer to view and focus the exact scene being photographed -04069582 06 n 01 reflux_condenser 0 001 @ 03087643 n 0000 | condenser such that vapor over a boiling liquid is condensed and flows back into the vessel to prevent its contents from boiling dry -04069777 06 n 03 reformatory 0 reform_school 0 training_school 0 003 @ 03111690 n 0000 + 01197386 a 0102 ~ 02875948 n 0000 | correctional institution for the detention and discipline and training of young or first offenders -04070003 06 n 01 reformer 0 003 @ 02727825 n 0000 #p 03844673 n 0000 + 00265941 v 0101 | an apparatus that reforms the molecular structure of hydrocarbons to produce richer fuel; "a catalytic reformer" -04070207 06 n 01 refracting_telescope 0 003 @ 03852688 n 0000 ~ 03333129 n 0000 ~ 03411208 n 0000 | optical telescope that has a large convex lens that produces an image that is viewed through the eyepiece -04070415 06 n 01 refractometer 0 001 @ 03733925 n 0000 | measuring instrument for measuring the refractive index of a substance -04070545 06 n 01 refrigeration_system 0 003 @ 03102859 n 0000 #p 04070727 n 0000 #p 04070964 n 0000 | a cooling system for chilling or freezing (usually for preservative purposes) -04070727 06 n 02 refrigerator 0 icebox 0 007 @ 04580493 n 0000 + 00371955 v 0101 + 00371051 v 0101 ~ 03102654 n 0000 %p 03242264 n 0000 ~ 03273913 n 0000 %p 04070545 n 0000 | white goods in which food can be stored at low temperatures -04070964 06 n 01 refrigerator_car 0 002 @ 03393912 n 0000 %p 04070545 n 0000 | a freight car that is equipped with refrigeration system -04071102 06 n 03 refuge 0 sanctuary 1 asylum 1 004 @ 04191595 n 0000 ~ 03492250 n 0000 ~ 04125466 n 0000 ~ 04125541 n 0000 | a shelter from danger or hardship -04071263 06 n 01 regalia 2 002 @ 03430959 n 0000 ~ 03139464 n 0000 | paraphernalia indicative of royalty (or other high office) -04071393 06 n 01 regimentals 0 003 @ 03763968 n 0000 ;c 08199025 n 0000 ;u 06295235 n 0000 | the military uniform and insignia of a regiment -04071536 06 n 01 register 0 002 @ 04072193 n 0000 #p 03404449 n 0000 | a regulator (as a sliding plate) for regulating the flow of air into a furnace or other heating device -04071712 06 n 01 register 1 001 @ 02690941 n 0000 | an air passage (usually in the floor or a wall of a room) for admitting or excluding heated air from the room -04071876 06 n 01 register 3 007 @ 03744840 n 0000 #p 03744276 n 0000 ;c 06128570 n 0000 ~ 02673078 n 0000 ~ 03117420 n 0000 ~ 03567635 n 0000 ~ 04193552 n 0000 | (computer science) memory device that is the part of computer memory that has a specific address and that is used to hold information of a specific kind -04072193 06 n 01 regulator 0 012 @ 03096960 n 0000 + 00299341 v 0101 ~ 02727141 n 0000 ~ 02780588 n 0000 ~ 03230914 n 0000 ~ 03325088 n 0000 ~ 03905947 n 0000 ~ 03919808 n 0000 ~ 04071536 n 0000 ~ 04127633 n 0000 ~ 04244615 n 0000 ~ 04422875 n 0000 | any of various controls or devices for regulating or controlling fluid flow, pressure, temperature, etc. -04072551 06 n 01 rein 0 007 @ 04333129 n 0000 #p 02900160 n 0000 + 01858362 v 0101 + 01862090 v 0101 + 02442737 v 0104 ~ 02817251 n 0000 ~ 03651843 n 0000 | one of a pair of long straps (usually connected to the bit or the headpiece) used to control a horse -04072811 06 n 01 relaxant 0 004 @ 03247620 n 0000 + 02309004 a 0101 + 00025654 v 0101 ~ 03800001 n 0000 | a drug that relaxes and relieves tension -04072960 06 n 02 relay 0 electrical_relay 0 004 @ 03269401 n 0000 #p 03033362 n 0000 + 01225576 v 0101 %p 03276179 n 0000 | electrical device such that current flowing through it in one circuit can switch on and off a current in a second circuit -04073208 06 n 01 release 0 003 @ 03748886 n 0000 + 02494047 v 0102 + 00967625 v 0105 | merchandise issued for sale or public showing (especially a record or film); "a new release from the London Symphony Orchestra" -04073425 06 n 02 release 1 button 2 001 @ 03183080 n 0000 | a device that when pressed will release part of a mechanism -04073547 06 n 01 relic 0 002 @ 02724026 n 0000 ~ 09203677 n 0000 | an antiquity that has survived from the distant past -04073669 06 n 05 relief 0 relievo 0 rilievo 0 embossment 0 sculptural_relief 0 005 @ 04157320 n 0000 + 01531265 v 0401 ~ 02700422 n 0000 ~ 02803129 n 0000 ~ 03758334 n 0000 | sculpture consisting of shapes carved on a surface so as to stand out from the surrounding background -04073948 06 n 02 religious_residence 0 cloister 0 006 @ 04079244 n 0000 + 02578894 a 0202 + 00495636 v 0201 ~ 03099454 n 0000 ~ 03781244 n 0000 ~ 04005197 n 0000 | residence that is a place of religious seclusion (such as a monastery) -04074185 06 n 01 reliquary 0 001 @ 03094503 n 0000 | a container where religious relics are stored or displayed (especially relics of saints) -04074329 06 n 02 remake 0 remaking 0 002 @ 03129123 n 0000 + 01619725 v 0101 | creation that is created again or anew; "it is a remake of an old film" -04074482 06 n 04 remedy 0 curative 0 cure 0 therapeutic 0 015 @ 03740161 n 0000 #p 00658082 n 0000 + 00081725 v 0302 + 01165943 a 0104 + 00082563 v 0101 ~ 02675987 n 0000 ~ 02719588 n 0000 ~ 03283519 n 0000 ~ 03656374 n 0000 ~ 03691128 n 0000 ~ 03704640 n 0000 ~ 03845550 n 0000 ~ 03879854 n 0000 ~ 03880770 n 0000 ~ 04002026 n 0000 | a medicine or therapy that cures disease or relieve pain -04074876 06 n 01 remise 1 001 @ 03474635 n 0000 | an expensive or high-class hackney -04074963 06 n 02 remote_control 0 remote 0 002 @ 03183080 n 0000 #p 04075160 n 0000 | a device that can be used to control a machine or apparatus from a distance; "he lost the remote for his TV" -04075160 06 n 01 remote-control_bomb 0 002 @ 02866578 n 0000 %p 04074963 n 0000 | a bomb that can be detonated by remote control -04075291 06 n 04 remote_terminal 0 link-attached_terminal 0 remote_station 0 link-attached_station 0 001 @ 04413419 n 0000 | a terminal connected to a computer by a data link -04075468 06 n 01 removable_disk 0 001 @ 03492542 n 0000 | a hard disk that can be removed from the disk drive; removal prevents unauthorized use -04075615 06 n 01 rendering 0 001 @ 03234306 n 0000 | perspective drawing of an architect's design -04075715 06 n 01 rendering 1 001 @ 03058107 n 0000 | a coat of stucco applied to a masonry wall -04075813 06 n 02 rep 0 repp 0 001 @ 03309808 n 0000 | a fabric with prominent rounded crosswise ribs -04075916 06 n 02 repair_shop 0 fix-it_shop 0 002 @ 04202417 n 0000 ~ 03416640 n 0000 | a shop specializing in repairs and maintenance -04076052 06 n 01 repeater 1 002 @ 03277771 n 0000 ;c 06128024 n 0000 | (electronics) electronic device that amplifies a signal before transmitting it again; "repeaters can be used in computer networks to extend cabling distances" -04076284 06 n 02 repeating_firearm 0 repeater 0 002 @ 03343853 n 0000 ~ 03732020 n 0000 | a firearm that can fire several rounds without reloading -04076433 06 n 01 repertory 0 001 @ 03177349 n 0000 | a storehouse where a stock of things is kept -04076533 06 n 03 replica 0 replication 0 reproduction 0 003 @ 03104594 n 0000 + 01734502 v 0105 ~ 04462102 n 0000 | copy that is not the original; something that has been copied -04076713 06 n 02 repository 1 monument 3 002 @ 02921884 n 0000 + 02864165 a 0201 | a burial vault (usually for some famous person) -04076846 06 n 01 representation 0 026 @ 03129123 n 0000 + 01686132 v 0101 ~ 02682207 n 0000 ~ 02757211 n 0000 ~ 03104594 n 0000 ~ 03113337 n 0000 ~ 03129636 n 0000 ~ 03152951 n 0000 ~ 03210940 n 0000 ~ 03217458 n 0000 ~ 03234306 n 0000 ~ 03263206 n 0000 ~ 03265874 n 0000 ~ 03561345 n 0000 ~ 03720163 n 0000 ~ 03777283 n 0000 ~ 03827716 n 0000 ~ 03838160 n 0000 ~ 03925226 n 0000 ~ 03931044 n 0000 ~ 03934656 n 0000 ~ 04009382 n 0000 ~ 04116744 n 0000 ~ 04181983 n 0000 ~ 04297476 n 0000 ~ 04306454 n 0000 | a creation that is a visual or tangible rendering of someone or something -04077430 06 n 01 reproducer 0 003 @ 02757462 n 0000 ~ 03517760 n 0000 ~ 04315948 n 0000 | an audio system that can reproduce and amplify signals to produce sound -04077594 06 n 02 rerebrace 0 upper_cannon 0 002 @ 02950632 n 0000 #p 02862048 n 0000 | cannon that provides plate armor for the upper arm -04077734 06 n 01 rescue_equipment 0 003 @ 03294048 n 0000 ~ 03663531 n 0000 ~ 03888257 n 0000 | equipment used to rescue passengers in case of emergency -04077889 06 n 02 research_center 0 research_facility 0 001 @ 02993546 n 0000 | a center where research is done -04078002 06 n 01 reseau 0 001 @ 03820950 n 0000 | a network of fine lines used by astronomers as a reference for measurements on star photographs -04078150 06 n 01 reseau 1 001 @ 03819595 n 0000 | a net or mesh foundation for lace -04078236 06 n 05 reserpine 0 Raudixin 0 Rau-Sed 0 Sandril 0 Serpasil 0 006 @ 02721160 n 0000 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 %s 15002814 n 0000 | antihypertensive consisting of an alkaloid extracted from the plant Rauwolfia serpentina (trade names Raudixin or Rau-Sed or Sandril or Serpasil) -04078574 06 n 01 reservoir 0 004 @ 04388743 n 0000 ~ 03035510 n 0000 ~ 04354387 n 0000 ~ 04562935 n 0000 | tank used for collecting and storing a liquid (as water or oil) -04078747 06 n 03 reservoir 1 artificial_lake 0 man-made_lake 0 005 @ 09328904 n 0000 #p 04562658 n 0000 ~i 03634189 n 0000 ~i 03634469 n 0000 ~i 03634723 n 0000 | lake used to store water for community use -04078955 06 n 01 reset 0 004 @ 03183080 n 0000 + 00947591 v 0101 + 00298773 v 0101 %p 04079106 n 0000 | device for resetting instruments or controls -04079106 06 n 01 reset_button 0 002 @ 04027023 n 0000 #p 04078955 n 0000 | a push button that you press to activate the reset mechanism -04079244 06 n 01 residence 0 010 @ 03544360 n 0000 ~ 03121040 n 0000 ~ 03166514 n 0000 ~ 03718935 n 0000 ~ 03877845 n 0000 ~ 03892557 n 0000 ~ 04073948 n 0000 ~i 04523380 n 0000 ~i 04580777 n 0000 ~i 09152769 n 0000 | the official house or establishment of an important person (as a sovereign or president); "he refused to live in the governor's residence" -04079603 06 n 01 resistance_pyrometer 0 001 @ 04029734 n 0000 | pyrometer that measures high temperatures by the resistance in a heated wire -04079746 06 n 02 resistance_thermometer 0 platinum_thermometer 0 001 @ 04421872 n 0000 | thermometer that measures temperature by changes in the resistance of a spiral of platinum wire -04079933 06 n 02 resistor 0 resistance 0 005 @ 03269401 n 0000 #p 03033362 n 0000 ~ 02780121 n 0000 ~ 03991443 n 0000 ~ 04086794 n 0000 | an electrical device that resists the flow of electrical current -04080138 06 n 01 resonator 0 002 @ 04377057 n 0000 + 02175958 v 0101 | any system that resonates -04080237 06 n 02 resonator 1 resonant_circuit 0 001 @ 03033362 n 0000 | an electrical circuit that combines capacitance and inductance in such a way that a periodic electric oscillation will reach maximum amplitude -04080454 06 n 03 resonator 2 cavity_resonator 0 resonating_chamber 0 004 @ 03003730 n 0000 + 02175958 v 0101 ~ 04261506 n 0000 ~ 04262161 n 0000 | a hollow chamber whose dimensions allow the resonant oscillation of electromagnetic or acoustic waves -04080705 06 n 02 resort_hotel 0 spa 0 002 @ 03542333 n 0000 #p 08640739 n 0000 | a fashionable hotel usually in a resort area -04080833 06 n 02 respirator 0 inhalator 1 005 @ 02895606 n 0000 + 00005041 v 0201 + 00001740 v 0103 ~ 03586219 n 0000 %p 03795419 n 0000 | a breathing device for administering long-term artificial respiration -04081044 06 n 01 rest 0 007 @ 04359589 n 0000 + 01502946 v 0102 + 01543731 v 0103 + 01610101 v 0101 ~ 02741475 n 0000 ~ 03019685 n 0000 ~ 03505133 n 0000 | a support on which things can be put; "the gun was steadied on a special rest" -04081281 06 n 04 restaurant 0 eating_house 0 eating_place 0 eatery 0 017 @ 02913152 n 0000 #m 08061801 n 0000 ~ 02844214 n 0000 ~ 02892499 n 0000 ~ 02897389 n 0000 ~ 02935658 n 0000 ~ 02935891 n 0000 ~ 02952485 n 0000 ~ 02952674 n 0000 ~ 03199647 n 0000 ~ 03456548 n 0000 ~ 03459914 n 0000 ~ 03497100 n 0000 ~ 03697552 n 0000 ~ 04111414 n 0000 ~ 04307878 n 0000 ~ 04398497 n 0000 | a building where people go to eat -04081699 06 n 01 rest_house 0 001 @ 02913152 n 0000 | a building used for shelter by travelers (especially in areas where there are no hotels) -04081844 06 n 02 restraint 0 constraint 0 020 @ 03183080 n 0000 ~ 02685365 n 0000 ~ 02685855 n 0000 ~ 02742468 n 0000 ~ 02784998 n 0000 ~ 02889425 n 0000 ~ 02889646 n 0000 ~ 02890662 n 0000 ~ 02890940 n 0000 ~ 02982790 n 0000 ~ 02999936 n 0000 ~ 03323703 n 0000 ~ 03410740 n 0000 ~ 03652932 n 0000 ~ 03682877 n 0000 ~ 03803284 n 0000 ~ 04125853 n 0000 ~ 04158457 n 0000 ~ 04181228 n 0000 ~ 04469147 n 0000 | a device that retards something's motion; "the car did not have proper restraints fitted" -04082344 06 n 01 resuscitator 0 002 @ 02895606 n 0000 + 00098083 v 0101 | a breathing apparatus used for resuscitation by forcing oxygen into the lungs of a person who has undergone asphyxia or arrest of respiration -04082562 06 n 01 retainer 0 001 @ 03175604 n 0000 | a dental appliance that holds teeth (or a prosthesis) in position after orthodontic treatment -04082710 06 n 01 retaining_wall 0 001 @ 04547592 n 0000 | a wall that is built to resist lateral pressure (especially a wall built to prevent the advance of a mass of earth) -04082886 06 n 03 reticle 0 reticule 1 graticule 0 003 @ 03820950 n 0000 #p 03309465 n 0000 %p 03136773 n 0000 | a network of fine lines, dots, cross hairs, or wires in the focal plane of the eyepiece of an optical instrument -04083113 06 n 01 reticulation 0 002 @ 03820950 n 0000 + 02625659 v 0101 | an arrangement resembling a net or network; "the reticulation of a leaf"; "the reticulation of a photographic emulsion" -04083309 06 n 01 reticule 0 001 @ 02774152 n 0000 | a woman's drawstring handbag; usually made of net or beading or brocade; used in 18th and 19th centuries -04083468 06 n 01 restoration 0 002 @ 00021939 n 0000 + 00260648 v 0107 | some artifact that has been restored or reconstructed; "the restoration looked exactly like the original" -04083649 06 n 01 retort 0 003 @ 04531098 n 0000 #p 04318982 n 0000 ~ 02696246 n 0000 | a vessel where substances are distilled or decomposed by heat -04083800 06 n 01 retractor 0 002 @ 04364545 n 0000 + 01609773 v 0101 | surgical instrument that holds back the edges of a surgical incision -04083942 06 n 02 retread 0 recap 0 002 @ 02971167 n 0000 + 00164072 v 0101 | a used automobile tire that has been remolded to give it new treads -04084089 06 n 01 retrenchment 0 001 @ 03291551 n 0000 | entrenchment consisting of an additional interior fortification to prolong the defense -04084234 06 n 01 retrofit 0 001 @ 03081021 n 0000 | a component or accessory added to something after it has been manufactured -04084363 06 n 01 retrorocket 0 001 @ 04099175 n 0000 | a small rocket engine on a larger rocket or spacecraft that is fired to slow or alter its course -04084517 06 n 02 return_key 0 return 0 001 @ 03613592 n 0000 | the key on electric typewriters or computer keyboards that causes a carriage return and a line feed -04084682 06 n 01 reverberatory_furnace 0 001 @ 03404449 n 0000 | a furnace in which the material that is being treated is heated indirectly by flames that are directed at the roof and walls of the furnace -04084889 06 n 02 revers 0 revere 0 001 @ 03642444 n 0000 | a lapel on a woman's garment; turned back to show the reverse side -04085017 06 n 02 reverse 0 reverse_gear 0 003 @ 03431243 n 0000 #p 02958343 n 0000 + 00203917 a 0101 | the gears by which the motion of a machine can be reversed -04085181 06 n 02 reverse 2 verso 0 004 @ 04213626 n 0000 #p 13388245 n 0000 ! 03840507 n 0101 ~ 04384199 n 0000 | the side of a coin or medal that does not bear the principal design -04085365 06 n 01 reverse_transcriptase_inhibitor 0 003 @ 02725367 n 0000 ~ 03828155 n 0000 ~ 03834836 n 0000 | an antiviral drug that inhibits the action of reverse transcriptase in retroviruses such as HIV -04085574 06 n 01 reversible 0 002 @ 03419014 n 0000 + 01759676 a 0101 | a garment (especially a coat) that can be worn inside out (with either side of the cloth showing) -04085746 06 n 01 reversing_thermometer 0 001 @ 04421872 n 0000 | a thermometer that registers the temperature in deep waters -04085873 06 n 03 revetment 0 revetement 0 stone_facing 0 004 @ 03315644 n 0000 #p 03282060 n 0000 + 01271658 v 0101 + 01271454 v 0101 | a facing (usually masonry) that supports an embankment -04086066 06 n 01 revetment 1 001 @ 02796623 n 0000 | a barrier against explosives -04086150 06 n 01 reviewing_stand 0 001 @ 04300741 n 0000 | a stand from which a parade or military force can be reviewed -04086273 06 n 03 revolver 0 six-gun 0 six-shooter 0 002 @ 03948459 n 0000 ~ 03073296 n 0000 | a pistol with a revolving cylinder (usually having six chambers for bullets) -04086446 06 n 02 revolving_door 0 revolver 1 001 @ 03221720 n 0000 | a door consisting of four orthogonal partitions that rotate about a central pivot; a door designed to equalize the air pressure in tall buildings -04086663 06 n 01 rheometer 0 001 @ 03733925 n 0000 | an instrument for measuring the flow of liquids (especially arterial blood) -04086794 06 n 02 rheostat 0 variable_resistor 0 003 @ 04079933 n 0000 ~ 03199488 n 0000 %p 04593866 n 0000 | resistor for regulating current -04086937 06 n 01 rhinoscope 0 001 @ 03739693 n 0000 | medical instrument consisting of a mirror mounted at an angle on a rod; used to examine the nasal passages (through the nasopharynx) -04087126 06 n 01 rib 0 005 @ 04359589 n 0000 #p 03548626 n 0000 #p 04592741 n 0000 #p 04507155 n 0000 ~ 04154938 n 0000 | support resembling the rib of an animal -04087290 06 n 01 rib 1 001 @ 03780392 n 0000 | a projecting molding on the underside of a vault or ceiling; may be ornamental or structural -04087432 06 n 02 riband 0 ribband 0 001 @ 04087899 n 0000 | a ribbon used as a decoration -04087524 06 n 02 ribavirin 0 Virazole 0 002 @ 02725367 n 0000 ;u 06845599 n 0201 | an inhaled antiviral agent (trade name Virazole) that may be used to treat serious virus infections -04087709 06 n 01 ribbed_vault 0 001 @ 04523525 n 0000 | vault that resembles a groined vault but has ribbed arches -04087826 06 n 01 ribbing 0 001 @ 03391770 n 0000 | a framework of ribs -04087899 06 n 01 ribbon 0 003 @ 03832799 n 0000 + 02414749 a 0102 ~ 04087432 n 0000 | notion consisting of a narrow strip of fine material used for trimming -04088058 06 n 02 ribbon 2 typewriter_ribbon 0 002 @ 04339291 n 0000 #p 04505036 n 0000 | a long strip of inked material for making characters on paper with a typewriter -04088229 06 n 01 ribbon_development 0 001 @ 02914991 n 0000 | building complex in a continuous row along a road -04088343 06 n 01 rib_joint_pliers 0 002 @ 03966976 n 0000 ;u 06295235 n 0000 | a type of pliers -04088441 06 n 01 ricer 0 002 @ 03621049 n 0000 + 01460408 v 0101 | a kitchen utensil used for ricing soft foods by extruding them through small holes -04088593 06 n 02 rickrack 0 ricrac 0 001 @ 04484160 n 0000 | a narrow zigzag ribbon used as trimming -04088696 06 n 01 riddle 0 002 @ 04216634 n 0000 + 01460785 v 0101 | a coarse sieve (as for gravel) -04088797 06 n 01 ride 0 005 @ 03736970 n 0000 #p 08494231 n 0000 ~ 02966193 n 0000 ~ 03329302 n 0000 ~ 04102406 n 0000 | a mechanical device that you ride for amusement or excitement -04088982 06 n 01 rider_plate 0 002 @ 02815950 n 0000 #p 03548626 n 0000 | a horizontal beam (or plate) connected to the top of a ship's vertical keel or to the keelson -04089152 06 n 03 ridge 0 ridgepole 0 rooftree 0 002 @ 02815950 n 0000 #p 03409591 n 0000 | a beam laid along the edge where two sloping sides of a roof meet at the top; provides an attachment for the upper ends of rafters -04089376 06 n 01 ridge_rope 0 002 @ 03663069 n 0000 #p 04194289 n 0000 | either of a pair of lifelines running alongside the bowsprit of a ship -04089522 06 n 01 riding_bitt 0 002 @ 02864593 n 0000 #p 04194289 n 0000 | one of the large bitts used to secure the cable of a dropped anchor -04089666 06 n 01 riding_boot 0 003 @ 02872752 n 0000 #p 03474167 n 0000 ~ 03600475 n 0000 | a boot without laces that is worn for riding horses; part of a riding habit -04089836 06 n 02 riding_crop 0 hunting_crop 0 001 @ 04577769 n 0000 | a short whip with a thong at the end and a handle for opening gates -04089976 06 n 01 riding_mower 0 001 @ 03995856 n 0000 | a power mower you can ride on -04090064 06 n 03 rifampin 0 Rifadin 0 Rimactane 0 003 @ 02716205 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an antibacterial drug (trade names Rifadin and Rimactane) used to treat tuberculosis -04090263 06 n 01 rifle 0 008 @ 03343853 n 0000 %p 02866106 n 0000 ~ 02961451 n 0000 ~ 03416775 n 0000 %p 04022434 n 0000 %p 04090682 n 0000 ~ 04250224 n 0000 ~ 04585980 n 0000 | a shoulder firearm with a long barrel and a rifled bore; "he lifted the rifle to his shoulder and fired" -04090548 06 n 01 rifle_ball 0 001 @ 02916350 n 0000 | a bullet designed to be fired from a rifle; no longer made spherical in shape -04090682 06 n 01 rifle_butt 0 002 @ 02927296 n 0000 #p 04090263 n 0000 | the butt end of a rifle -04090781 06 n 01 rifle_grenade 0 001 @ 03458271 n 0000 | a grenade that is thrown from a launching device attached to the barrel of a rifle -04090923 06 n 01 rifle_range 0 001 @ 04053218 n 0000 | a range where people can practice shooting rifles; "during the war they turned the bowling alleys into rifle ranges" -04091097 06 n 01 rig 0 003 @ 03430959 n 0000 + 01286151 v 0101 ~ 03241093 n 0000 | gear (including necessary machinery) for a particular enterprise -04091247 06 n 02 rig 1 rigging 1 007 @ 03385117 n 0000 + 00408085 v 0201 + 00408085 v 0101 ~ 02831455 n 0000 ~ 02985758 n 0000 ~ 03381664 n 0000 ~ 03645730 n 0000 | formation of masts, spars, sails, etc., on a vessel -04091466 06 n 02 rigger 0 rigger_brush 0 001 @ 04122349 n 0000 | a long slender pointed sable brush used by artists -04091584 06 n 01 rigger 1 001 @ 04128837 n 0000 | a sailing vessel with a specified rig; "a square rigger" -04091693 06 n 02 rigging 0 tackle 0 002 @ 03430959 n 0000 + 00408085 v 0101 | gear consisting of ropes etc. supporting a ship's masts and sails -04091839 06 n 03 right_field 0 rightfield 0 right 0 003 @ 08673395 n 0000 #p 03859717 n 0000 + 10387196 n 0101 | the piece of ground in the outfield on the catcher's right -04092013 06 n 01 right_of_way 0 001 @ 03895293 n 0000 | the passage consisting of a path or strip of land over which someone has the legal right to pass -04092168 06 n 01 rigout 0 002 @ 03113835 n 0000 + 00044149 v 010e | a person's costume (especially if bizarre); "What a queer rigout!" -04092305 06 n 01 rim 2 003 @ 03533972 n 0000 #p 04574999 n 0000 ~ 03326660 n 0000 | the outer part of a wheel to which the tire is attached -04092447 06 n 01 rim 3 002 @ 03533972 n 0000 ;c 00480993 n 0000 | (basketball) the hoop from which the net is suspended; "the ball hit the rim and bounced off" -04092609 06 n 02 ring 0 band 3 008 @ 03597469 n 0000 + 01297401 v 0101 ~ 02713769 n 0000 ~ 03287627 n 0000 ~ 03793387 n 0000 ~ 04093157 n 0000 ~ 04218271 n 0000 ~ 04569338 n 0000 | jewelry consisting of a circlet of precious metal (often set with jewels) worn on the finger; "she had rings on every finger"; "he noted that she wore a wedding band" -04092959 06 n 01 ring 3 005 @ 03961939 n 0000 ~ 02885663 n 0000 %p 02953850 n 0000 ~ 04354182 n 0000 ~ 04607141 n 0000 | a platform usually marked off by ropes in which contestants box or wrestle -04093157 06 n 01 ringlet 0 001 @ 04092609 n 0000 | a small ring -04093223 06 n 01 rings 0 002 @ 03472232 n 0000 ;u 06295235 n 0000 | gymnastic apparatus consisting of a pair of heavy metal circles (usually covered with leather) suspended by ropes; used for gymnastic exercises; "the rings require a strong upper body" -04093478 06 n 02 ringside 0 ringside_seat 0 001 @ 04162998 n 0000 | first row of seating; has an unobstructed view of a boxing or wrestling ring -04093625 06 n 02 rink 0 skating_rink 0 002 @ 02913152 n 0000 ~ 03558176 n 0000 | building that contains a surface for ice skating or roller skating -04093775 06 n 01 riot_gun 0 001 @ 03343853 n 0000 | a firearm designed to disperse rioters rather than to inflict serious injury or death -04093915 06 n 01 ripcord 0 002 @ 03106110 n 0000 #p 03888257 n 0000 | a cord that is pulled to open a parachute from its pack during a descent -04094060 06 n 01 ripcord 1 002 @ 03106110 n 0000 #p 02782093 n 0000 | a cord that is pulled to open the gasbag of a balloon wide enough to release gas and so causes the balloon to descend -04094250 06 n 01 ripping_bar 0 002 @ 03659292 n 0000 %p 04094438 n 0000 | a steel lever with one end formed into a ripping chisel and the other a gooseneck with a claw for pulling nails -04094438 06 n 01 ripping_chisel 0 002 @ 03020692 n 0000 #p 04094250 n 0000 | a long chisel with a slightly bent cutting end; used for heavy prying or cleaning mortises -04094608 06 n 02 ripsaw 0 splitsaw 0 001 @ 03488188 n 0000 | a handsaw for cutting with the grain of the wood -04094720 06 n 01 riser 0 002 @ 04341414 n 0000 #p 04314914 n 0000 | structural member consisting of the vertical part of a stair or step -04094859 06 n 04 riser 1 riser_pipe 0 riser_pipeline 0 riser_main 0 001 @ 03944672 n 0000 | a vertical pipe in a building -04094983 06 n 02 ritonavir 0 Norvir 0 001 @ 04013993 n 0000 | a protease inhibitor (trade name Norvir) used in treating HIV -04095109 06 n 01 Ritz 0 002 @ 03542333 n 0000 ;u 07075172 n 0000 | an ostentatiously elegant hotel -04095210 06 n 01 river_boat 0 003 @ 02858304 n 0000 ~ 03609786 n 0000 ~ 04208760 n 0000 | a boat used on rivers or to ply a river -04095342 06 n 01 rivet 0 003 @ 03940256 n 0000 + 01367266 v 0101 %p 03042829 n 0000 | heavy pin having a head at one end and the other end being hammered flat after being passed through holes in the pieces that are fastened together -04095577 06 n 03 riveting_machine 0 riveter 0 rivetter 0 003 @ 03699975 n 0000 + 01367266 v 0301 + 01367266 v 0201 | a machine for driving rivets -04095725 06 n 01 rivet_line 0 001 @ 08430568 n 0000 | a line of rivets at a seam; "the fuselage cracked along the rivet line" -04095853 06 n 01 roach 0 001 @ 02927399 n 0000 | the butt of a marijuana cigarette -04095938 06 n 02 roach_clip 0 roach_holder 0 001 @ 03941684 n 0000 | metal tweezers used by marijuana smokers to hold a roach -04096066 06 n 02 road 0 route 0 031 @ 04564698 n 0000 + 01955364 v 0201 + 01952750 v 0201 ~ 02671988 n 0000 %p 02829696 n 0000 ~ 02930645 n 0000 ~ 02986920 n 0000 ~ 03040836 n 0000 ~ 03107609 n 0000 %p 03138981 n 0000 ~ 03182506 n 0000 ~ 03242713 n 0000 ~ 03244388 n 0000 ~ 03519981 n 0000 %p 03581125 n 0000 ~ 03671272 n 0000 %s 03900750 n 0000 ~ 03990385 n 0000 %p 04096733 n 0000 ~ 04097622 n 0000 ~ 04204953 n 0000 %p 04206948 n 0000 ~ 04215056 n 0000 ~ 04229363 n 0000 ~ 04274214 n 0000 ~ 04426618 n 0000 ~ 04463510 n 0000 %p 04465933 n 0000 %p 04499660 n 0000 ~ 04500704 n 0000 %p 04500866 n 0000 | an open way (generally public) for travel or transportation -04096733 06 n 01 roadbed 0 003 @ 02819697 n 0000 #p 04096066 n 0000 %p 04466169 n 0000 | a bed supporting a road -04096848 06 n 02 roadblock 0 barricade 0 004 @ 02796623 n 0000 + 01478002 v 0201 + 01127215 v 0201 + 01127075 v 0201 | a barrier set up by police to stop traffic on a street or road in order to catch a fugitive or inspect traffic etc. -04097085 06 n 01 roadhouse 0 001 @ 03541696 n 0000 | an inn (usually outside city limits on a main road) providing meals and liquor and dancing and (sometimes) gambling -04097256 06 n 01 road_map 0 002 @ 03720163 n 0000 ;c 02958343 n 0000 | a map showing roads (for automobile travel) -04097373 06 n 03 roadster 1 runabout 0 two-seater 0 002 @ 02958343 n 0000 %p 04119230 n 0000 | an open automobile having a front seat and a rumble seat -04097527 06 n 01 road_surface 0 001 @ 03900509 n 0000 | the paved surface of a paved roadway -04097622 06 n 01 roadway 0 002 @ 04096066 n 0000 ~ 02969323 n 0000 | a road (especially that part of a road) over which vehicles travel -04097760 06 n 01 roaster 0 002 @ 03880531 n 0000 + 00324560 v 0101 | a special cooking pan for roasting -04097866 06 n 01 robe 0 006 @ 03419014 n 0000 + 00052043 v 0102 ~ 02667093 n 0000 ~ 02807616 n 0000 ~ 03237992 n 0000 ~ 03617480 n 0000 | any loose flowing garment -04098032 06 n 01 Robitussin 0 001 @ 03304605 n 0000 | trade name of an expectorant that loosens phlegm and makes it easier to cough up -04098169 06 n 01 robotics_equipment 0 001 @ 03294048 n 0000 | equipment used in robotics -04098260 06 n 02 Rochon_prism 0 Wollaston_prism 0 001 @ 03851341 n 0000 | optical device that produces plane-polarized ultraviolet light -04098399 06 n 02 rock_bit 0 roller_bit 0 001 @ 03240327 n 0000 | a drill bit that has hardened rotating rollers -04098513 06 n 01 rocker 0 005 @ 04359589 n 0000 #p 04099969 n 0000 #p 03523633 n 0000 #p 03125729 n 0000 + 01876028 v 0101 | a curved support that permits the supported object to rock to and fro -04098710 06 n 01 rocker 2 001 @ 03558404 n 0000 | an ice skate with a curved blade -04098795 06 n 02 rocker 3 cradle 1 002 @ 04488427 n 0000 + 01536663 v 0201 | a trough that can be rocked back and forth; used by gold miners to shake auriferous earth in water in order to separate the gold -04099003 06 n 02 rocker_arm 0 valve_rocker 0 001 @ 03659292 n 0000 | a lever pivoted at the center; used especially to push a valve down in an internal-combustion engine -04099175 06 n 02 rocket 0 rocket_engine 0 007 @ 03596285 n 0000 #p 04099429 n 0000 ~ 02872333 n 0000 ~ 03834472 n 0000 ~ 04084363 n 0000 ~ 04265904 n 0000 ~ 04430605 n 0000 | a jet engine containing its own propellant and driven by reaction propulsion -04099429 06 n 02 rocket 1 projectile 1 007 @ 04524313 n 0000 + 00809622 a 0201 + 01241753 v 0101 ~ 03773504 n 0000 ~ 03799375 n 0000 %p 04099175 n 0000 ~ 04415663 n 0000 | any vehicle self-propelled by a rocket engine -04099649 06 n 01 rocket_base 0 002 @ 02798290 n 0000 ;c 08199025 n 0000 | a military base for rocket missiles -04099761 06 n 01 rocket_range 0 001 @ 03349150 n 0000 | a firing range for rocket missiles -04099854 06 n 02 rock_garden 0 rockery 0 001 @ 03417345 n 0000 | a garden featuring rocks; usually alpine plants -04099969 06 n 02 rocking_chair 0 rocker 1 007 @ 03001627 n 0000 + 01875295 v 0201 ~ 02876326 n 0000 ~ 03962932 n 0000 %p 04098513 n 0000 %p 04119892 n 0000 ~ 04201435 n 0000 | a chair mounted on rockers -04100174 06 n 01 rod 0 015 @ 03563967 n 0000 ~ 02809364 n 0000 ~ 02809605 n 0000 ~ 03091044 n 0000 ~ 03098515 n 0000 ~ 03351979 n 0000 ~ 03616428 n 0000 ~ 03976657 n 0000 ~ 04052235 n 0000 ~ 04052346 n 0000 ~ 04111190 n 0000 ~ 04182322 n 0000 ~ 04298053 n 0000 ~ 04434531 n 0000 ~ 04549629 n 0000 | a long thin implement made of metal or wood -04100519 06 n 01 rodeo 0 001 @ 03907227 n 0000 | an enclosure for cattle that have been rounded up -04100620 06 n 05 roentgenogram 0 X_ray 0 X-ray 0 X-ray_picture 0 X-ray_photograph 0 011 @ 04042358 n 0000 ~ 02711237 n 0000 ~ 02711573 n 0000 ~ 02744423 n 0000 ~ 02744844 n 0000 ~ 03285730 n 0000 ~ 03555996 n 0000 ~ 03716228 n 0000 ~ 03803780 n 0000 ~ 04028472 n 0000 ~ 04526112 n 0000 | a radiogram made by exposing photographic film to X rays; used in medical diagnosis -04100994 06 n 02 rofecoxib 0 Vioxx 0 002 @ 03124700 n 0000 ;u 06845599 n 0201 | a Cox-2 inhibitor (trade name Vioxx) that relieves pain and inflammation without harming the digestive tract; voluntarily withdrawn from the market in 2004 -04101232 06 n 01 roll 0 004 @ 13865298 n 0000 ~ 02866286 n 0000 ~ 04113038 n 0000 ~ 04113124 n 0000 | anything rolled up in cylindrical form -04101375 06 n 01 roll 1 001 @ 03338821 n 0000 | photographic film rolled up inside a container to protect it from light -04101497 06 n 01 roller 0 008 @ 13865298 n 0000 #p 04102285 n 0000 + 01866192 v 0101 ~ 03418052 n 0000 ~ 03877229 n 0000 ~ 03961394 n 0000 ~ 04289827 n 0000 ~ 04491545 n 0000 | a cylinder that revolves -04101701 06 n 01 roller 2 004 @ 04574999 n 0000 #p 04102618 n 0000 + 01866192 v 0101 ~ 02980036 n 0000 | a small wheel without spokes (as on a roller skate) -04101860 06 n 01 roller_bandage 0 001 @ 02785648 n 0000 | bandage consisting of a strip of sterile fabric (of variable width) rolled into a cylinder to facilitate application -04102037 06 n 01 in-line_skate 0 002 @ 04225729 n 0000 ~ 04102162 n 0000 | a shoe with a line of rollers fixed to the sole -04102162 06 n 01 Rollerblade 0 003 ;u 06851742 n 0000 @ 04102037 n 0000 + 01937992 v 0101 | (trademark) an in-line skate -04102285 06 n 01 roller_blind 0 002 @ 04590129 n 0000 %p 04101497 n 0000 | a window shade that rolls up out of the way -04102406 06 n 03 roller_coaster 0 big_dipper 0 chute-the-chute 0 003 @ 03280813 n 0000 @ 04088797 n 0000 ~ 03555217 n 0000 | elevated railway in an amusement park (usually with sharp curves and steep inclines) -04102618 06 n 01 roller_skate 0 003 @ 04225729 n 0000 + 01937534 v 0101 %p 04101701 n 0000 | a shoe with pairs of rollers fixed to the sole -04102760 06 n 01 roller_towel 0 001 @ 04459362 n 0000 | a towel with the ends sewn together, hung on a roller -04102872 06 n 01 roll_film 0 001 @ 03338821 n 0000 | photographic film wound on a spool -04102962 06 n 01 rolling_hitch 0 002 @ 03522634 n 0000 ~ 03709545 n 0000 | a hitch for fastening a line to a spar or another rope -04103094 06 n 01 rolling_mill 0 001 @ 04311595 n 0000 | steel mill where metal is rolled into sheets and bars -04103206 06 n 01 rolling_pin 0 001 @ 03621049 n 0000 | utensil consisting of a cylinder (usually of wood) with a handle at each end; used to roll out dough -04103364 06 n 01 rolling_stock 0 001 @ 04576211 n 0000 | collection of wheeled vehicles owned by a railroad or motor carrier -04103491 06 n 02 roll_of_tobacco 0 smoke 0 004 @ 04442831 n 0000 + 01198101 v 0201 ~ 03030035 n 0000 ~ 03030663 n 0000 | tobacco leaves that have been made into a cylinder -04103665 06 n 01 roll-on 0 001 @ 03387323 n 0000 | a woman's foundation garment rolled on to the hips -04103769 06 n 01 roll-on 1 001 @ 03210683 n 0000 | a dispenser of a liquid cosmetic (such as a deodorant) having a revolving ball as an applicator -04103918 06 n 01 roll-on_roll-off 0 003 @ 03100490 n 0000 ;c 04468005 n 0000 ;c 02691156 n 0000 | a method of transport (as a ferry or train or plane) that vehicles roll onto at the beginning and roll off of at the destination -04104147 06 n 01 Rolodex 0 002 @ 02963302 n 0000 ;u 06851742 n 0000 | (trademark) a desktop rotary card index with removable cards; usually used for names, addresses, and telephone numbers; "a news reporter has to have a good Rolodex" -04104384 06 n 02 Roman_arch 0 semicircular_arch 0 001 @ 04113765 n 0000 | a round arch drawn from a single center -04104500 06 n 01 Roman_building 0 003 @ 02913152 n 0000 @ 02724026 n 0000 ~ 02801047 n 0000 | a building constructed by the ancient Romans -04104641 06 n 01 Roman_candle 0 001 @ 03348454 n 0000 | a cylindrical firework that projects a series of colored balls of fire -04104770 06 n 02 romper 0 romper_suit 0 001 @ 03419014 n 0000 | a one-piece garment for children to wear at play; the lower part is shaped like bloomers -04104925 06 n 01 rood_screen 0 002 @ 04152387 n 0000 #p 03028079 n 0000 | a screen in a church; separates the nave from the choir or chancel -04105068 06 n 01 roof 0 015 @ 04014297 n 0000 #p 02913152 n 0000 + 01233993 v 0101 ~ 03149401 n 0000 ~ 03220513 n 0000 %p 03263076 n 0000 ~ 03409591 n 0000 ~ 03522100 n 0000 ~ 03546235 n 0000 %p 04105791 n 0000 ~ 04234887 n 0000 ~ 04357121 n 0000 ~ 04417672 n 0000 ~ 04435653 n 0000 ~ 04523525 n 0000 | a protective covering that covers or forms the top of a building -04105438 06 n 01 roof 1 005 @ 04014297 n 0000 #p 02958343 n 0000 #p 02924116 n 0000 #p 04490091 n 0000 ~ 03531447 n 0000 | protective covering on top of a motor vehicle -04105609 06 n 01 roof_garden 0 001 @ 03417345 n 0000 | a garden on a flat roof of a building -04105704 06 n 01 roofing 0 001 @ 03729951 n 0000 | material used to construct a roof -04105791 06 n 01 roof_peak 0 002 @ 08677801 n 0000 #p 04105068 n 0000 | the highest point of a roof -04105893 06 n 01 room 0 086 @ 02735688 n 0000 #p 02913152 n 0000 + 04107598 n 0101 + 02656763 v 0102 ~ 02710324 n 0000 ~ 02715513 n 0000 ~ 02770293 n 0000 ~ 02783324 n 0000 ~ 02796995 n 0000 ~ 02807731 n 0000 ~ 02821627 n 0000 ~ 02824319 n 0000 ~ 02839592 n 0000 ~ 02857644 n 0000 ~ 02963987 n 0000 %p 02990373 n 0000 ~ 02991302 n 0000 ~ 02991555 n 0000 ~ 03004146 n 0000 ~ 03011892 n 0000 ~ 03038685 n 0000 ~ 03040376 n 0000 ~ 03045800 n 0000 ~ 03049457 n 0000 ~ 03054491 n 0000 ~ 03079741 n 0000 ~ 03089879 n 0000 ~ 03098688 n 0000 ~ 03120778 n 0000 ~ 03144365 n 0000 ~ 03154616 n 0000 ~ 03162460 n 0000 ~ 03175081 n 0000 ~ 03199775 n 0000 ~ 03200701 n 0000 ~ 03222176 n 0000 ~ 03238131 n 0000 ~ 03258049 n 0000 ~ 03288500 n 0000 %p 03365592 n 0000 ~ 03366301 n 0000 ~ 03405111 n 0000 ~ 03411927 n 0000 ~ 03412058 n 0000 ~ 03458128 n 0000 ~ 03464952 n 0000 ~ 03478907 n 0000 ~ 03541091 n 0000 ~ 03619890 n 0000 ~ 03660909 n 0000 ~ 03679712 n 0000 ~ 03683708 n 0000 ~ 03691817 n 0000 ~ 03718581 n 0000 ~ 03982331 n 0000 ~ 03999621 n 0000 ~ 04055595 n 0000 ~ 04058096 n 0000 ~ 04061793 n 0000 ~ 04065464 n 0000 %p 04107743 n 0000 ~ 04112579 n 0000 ~ 04155889 n 0000 ~ 04157099 n 0000 ~ 04180229 n 0000 ~ 04196803 n 0000 ~ 04209509 n 0000 ~ 04213105 n 0000 ~ 04213530 n 0000 ~ 04247440 n 0000 ~ 04290945 n 0000 ~ 04291069 n 0000 ~ 04308583 n 0000 ~ 04329477 n 0000 ~ 04345028 n 0000 ~ 04356925 n 0000 ~ 04363991 n 0000 ~ 04406239 n 0000 ~ 04415815 n 0000 ~ 04446276 n 0000 ~ 04458201 n 0000 ~ 04532504 n 0000 ~ 04545984 n 0000 %p 04546855 n 0000 ~ 04552551 n 0000 ~ 04602762 n 0000 | an area within a building enclosed by walls and floor and ceiling; "the rooms were very small but they had a nice view" -04107598 06 n 01 roomette 0 003 @ 03079741 n 0000 #p 04236001 n 0000 + 04105893 n 0101 | a small private compartment for one on a sleeping car -04107743 06 n 01 room_light 0 002 @ 03665366 n 0000 #p 04105893 n 0000 | light that provides general illumination for a room -04107870 06 n 01 roost 0 002 @ 03914919 n 0000 + 01543731 v 0102 | a perch on which domestic fowl rest or sleep -04107984 06 n 01 roost 1 004 @ 04191943 n 0000 + 01543731 v 0102 ~ 03514894 n 0000 %p 03914919 n 0000 | a shelter with perches for fowl or other birds -04108137 06 n 02 root_cellar 0 cellar 2 002 @ 03302121 n 0000 @ 04328946 n 0000 | an excavation where root vegetables are stored -04108268 06 n 01 rope 0 028 @ 03670849 n 0000 + 02789409 a 0102 + 02789409 a 0101 + 01289155 v 0101 + 01604251 v 0102 %p 02837567 n 0000 ~ 02864342 n 0000 ~ 02887683 n 0000 ~ 02889228 n 0000 ~ 02919890 n 0000 ~ 02933842 n 0000 ~ 03107046 n 0000 ~ 03466726 n 0000 ~ 03480863 n 0000 ~ 03491724 n 0000 ~ 03496042 n 0000 ~ 03500209 n 0000 ~ 03605233 n 0000 ~ 03644073 n 0000 ~ 03644378 n 0000 ~ 04009923 n 0000 ~ 04245703 n 0000 ~ 04434059 n 0000 ~ 04434780 n 0000 ~ 04484952 n 0000 %s 14906500 n 0000 %s 14925645 n 0000 %s 15042654 n 0000 | a strong line -04108822 06 n 01 rope_bridge 0 001 @ 02898711 n 0000 | a bridge consisting of ropes -04108908 06 n 01 rope_ladder 0 001 @ 03632277 n 0000 | a ladder with side pieces of rope -04108999 06 n 01 rope_tow 0 001 @ 04231693 n 0000 | a ski tow offering only a moving rope to hold onto -04109104 06 n 02 ropewalk 0 rope_yard 0 001 @ 04602044 n 0000 | workplace consisting of a long narrow path or shed where rope is made -04109240 06 n 01 rope_yarn 0 001 @ 04332783 n 0000 | the strands out of which ropes are made -04109335 06 n 02 rosary 0 prayer_beads 0 001 @ 02815600 n 0000 | a string of beads used in counting prayers (especially by Catholics) -04109471 06 n 02 rose_bed 0 bed_of_roses 0 002 @ 03368352 n 0000 #p 04109599 n 0000 | a flower bed in which roses are growing -04109599 06 n 01 rose_garden 0 002 @ 03417345 n 0000 %p 04109471 n 0000 | a garden for growing roses -04109702 06 n 01 rosemaling 0 002 @ 03169390 n 0000 ;c 03405725 n 0000 | a Scandinavian style of carved or painted decoration (as on furniture or walls or dinnerware) consisting of floral motifs -04109899 06 n 01 rosette 0 001 @ 02681518 n 0000 | an ornament or pattern resembling a rose that is worn as a badge of office or as recognition of having won an honor -04110068 06 n 01 rose_water 0 001 @ 03916031 n 0000 | perfume consisting of water scented with oil of roses -04110178 06 n 02 rose_window 0 rosette 1 001 @ 04587648 n 0000 | circular window filled with tracery -04110281 06 n 01 rosin_bag 0 002 @ 02773037 n 0000 @ 02799897 n 0000 | a bag filled with rosin; used by baseball pitchers to improve their grip on the ball -04110439 06 n 02 rotary_actuator 0 positioner 0 004 @ 02678384 n 0000 ;c 06128570 n 0000 + 01987160 v 0201 + 01494310 v 0205 | (computer science) the actuator that moves a read/write head to the proper data track -04110654 06 n 01 rotary_engine 0 003 @ 03579982 n 0000 ~ 04498523 n 0000 ~ 04549721 n 0000 | an internal-combustion engine in which power is transmitted directly to rotating components -04110841 06 n 01 rotary_press 0 001 @ 04000311 n 0000 | a printing press for printing from a revolving cylinder -04110955 06 n 01 rotating_mechanism 0 009 @ 03738472 n 0000 %p 02817031 n 0000 ~ 02848523 n 0000 ~ 02941716 n 0000 ~ 03032811 n 0000 ~ 03329302 n 0000 ~ 03473227 n 0000 %p 04111190 n 0000 ~ 04111668 n 0000 | a mechanism that rotates -04111190 06 n 02 rotating_shaft 0 shaft 1 007 @ 04100174 n 0000 #p 04110955 n 0000 ~ 02946824 n 0000 ~ 03127408 n 0000 ~ 03244231 n 0000 ~ 04277493 n 0000 ~ 04472563 n 0000 | a revolving rod that transmits power or motion -04111414 06 n 01 rotisserie 0 001 @ 04081281 n 0000 | a restaurant that specializes in roasted and barbecued meats -04111531 06 n 01 rotisserie 1 001 @ 03862676 n 0000 | an oven or broiler equipped with a rotating spit on which meat cooks as it turns -04111668 06 n 01 rotor 0 006 @ 04110955 n 0000 #p 03512147 n 0000 #p 03596285 n 0000 %p 03563460 n 0000 ~ 03712111 n 0000 ~ 04385799 n 0000 | rotating mechanism consisting of an assembly of rotating airfoils; "there are horizontal rotors on a helicopter or compressor rotors in a jet engine" -04111962 06 n 02 rotor 1 rotor_coil 0 005 @ 02738271 n 0000 #p 04498523 n 0000 #p 03273061 n 0000 #p 03433877 n 0000 ! 04306592 n 0101 | the rotating armature of a motor or generator -04112147 06 n 01 rotor 2 002 @ 02788689 n 0000 #p 03213014 n 0000 | the revolving bar of a distributor -04112252 06 n 02 rotor_blade 0 rotary_wing 0 002 @ 02688443 n 0000 #p 03712111 n 0000 | the long airfoil that rotates to provide the lift that supports a helicopter in the air -04112430 06 n 02 rotor_head 0 rotor_shaft 0 002 @ 02764614 n 0000 #p 03712111 n 0000 | the axis around which the major rotor of a helicopter turns -04112579 06 n 01 rotunda 0 001 @ 04105893 n 0000 | a large circular room -04112654 06 n 01 rotunda 1 001 @ 02913152 n 0000 | a building having a circular plan and a dome -04112752 06 n 03 rouge 0 paint 1 blusher 0 003 @ 03714235 n 0000 + 00103317 v 0301 + 00041554 v 0101 | makeup consisting of a pink or red powder applied to the cheeks -04112921 06 n 01 roughcast 0 003 @ 03777283 n 0000 + 01260850 v 0102 + 01660772 v 0101 | a rough preliminary model -04113038 06 n 01 rouleau 0 001 @ 04101232 n 0000 | a roll of coins wrapped in paper -04113124 06 n 01 rouleau 1 001 @ 04101232 n 0000 | a roll of ribbon -04113194 06 n 02 roulette 0 toothed_wheel 0 001 @ 04574999 n 0000 | a wheel with teeth for making a row of perforations -04113316 06 n 01 roulette_ball 0 001 @ 02778669 n 0000 | the ball used to play roulette -04113406 06 n 02 roulette_wheel 0 wheel 3 001 @ 03414162 n 0000 | game equipment consisting of a wheel with slots that is used for gambling; the wheel rotates horizontally and players bet on which slot the roulette ball will stop in -04113641 06 n 03 round 1 unit_of_ammunition 0 one_shot 0 001 @ 02703275 n 0000 | a charge of ammunition for a single shot -04113765 06 n 01 round_arch 0 005 @ 02733524 n 0000 ~ 02825153 n 0000 ~ 03784896 n 0000 ~ 04104384 n 0000 ~ 04427216 n 0000 | an arch formed in a continuous curve; characteristic of Roman architecture -04113968 06 n 01 round-bottom_flask 0 001 @ 03359566 n 0000 | a spherical flask with a narrow neck -04114069 06 n 01 roundel 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | round piece of armor plate that protects the armpit -04114193 06 n 01 rounder 0 002 @ 04451818 n 0000 + 00145147 v 0101 | a tool for rounding corners or edges -04114301 06 n 01 round_file 0 001 @ 03336839 n 0000 | a file with a circular cross section; used to file the inside of holes -04114428 06 n 01 roundhouse 0 001 @ 04602044 n 0000 | workplace consisting of a circular building for repairing locomotives -04114554 06 n 02 Round_Table 0 King_Arthur's_Round_Table 0 002 @i 04379243 n 0000 ;c 06371413 n 0000 | (legend) the circular table for King Arthur and his knights -04114719 06 n 01 router 0 001 @ 03997484 n 0000 | a power tool with a shaped cutter; used in carpentry for cutting grooves -04114844 06 n 01 router 1 002 @ 03183080 n 0000 ;c 06128570 n 0000 | (computer science) a device that forwards data packets between computer networks -04114996 06 n 01 router_plane 0 001 @ 03954731 n 0000 | a woodworking plane with a narrow cutting head that will make grooves with smooth bottoms -04115144 06 n 01 rowel 0 002 @ 04574999 n 0000 #p 04290259 n 0000 | a small spiked wheel at the end of a spur -04115256 06 n 02 row_house 0 town_house 1 003 @ 03544360 n 0000 ~ 02907873 n 0000 ~ 04413969 n 0000 | a house that is one of a row of identical houses situated side by side and sharing common walls -04115456 06 n 01 rowing_boat 0 002 @ 03199901 n 0000 ;r 08860123 n 0000 | a rowboat -04115542 06 n 01 rowlock_arch 0 001 @ 02733524 n 0000 | an arch that is formed with more than one concentric row of voussoirs -04115670 06 n 01 row_of_bricks 0 001 @ 03120029 n 0000 | a course of bricks place next to each other (usually in a straight line) -04115802 06 n 01 royal 0 001 @ 04127904 n 0000 | a sail set next above the topgallant on a royal mast -04115906 06 n 01 royal_brace 0 001 @ 02887683 n 0000 | a brace to secure the royal mast -04115996 06 n 01 royal_mast 0 001 @ 04455250 n 0000 | topmast immediately above the topgallant mast -04116098 06 n 03 rubber_band 0 elastic_band 0 elastic 1 003 @ 02784218 n 0000 @ 03267972 n 0000 + 00843146 a 0301 | a narrow band of elastic rubber used to hold things (such as papers) together -04116294 06 n 02 rubber_boot 0 gum_boot 0 001 @ 02872752 n 0000 | a high boot made of rubber -04116389 06 n 01 rubber_bullet 0 001 @ 02916350 n 0000 | a bullet made of hard rubber; designed for use in crowd control -04116512 06 n 03 rubber_eraser 0 rubber 2 pencil_eraser 0 002 @ 03294833 n 0000 #p 03908204 n 0000 | an eraser made of rubber (or of a synthetic material with properties similar to rubber); commonly mounted at one end of a pencil -04116744 06 n 01 rubbing 0 001 @ 04076846 n 0000 | representation consisting of a copy (as of an engraving) made by laying paper over something and rubbing it with charcoal -04116919 06 n 01 rubbing_alcohol 0 001 @ 03691128 n 0000 | lotion consisting of a poisonous solution of isopropyl alcohol or denatured ethanol alcohol for external use -04117089 06 n 01 rubefacient 0 001 @ 03740161 n 0000 | a medicine for external application that produces redness of the skin -04117216 06 n 01 rudder 0 006 @ 04313220 n 0000 #p 04530566 n 0000 ;c 00314469 n 0000 %p 04117639 n 0000 %p 04117747 n 0000 %p 04435759 n 0000 | (nautical) steering mechanism consisting of a hinged vertical plate mounted at the stern of a vessel -04117464 06 n 01 rudder 1 002 @ 02688443 n 0000 #p 04530283 n 0000 | a hinged vertical airfoil mounted at the tail of an aircraft and used to make horizontal course changes -04117639 06 n 01 rudder_blade 0 002 @ 02848523 n 0000 #p 04117216 n 0000 | the vertical blade on a rudder -04117747 06 n 02 rudderpost 0 rudderstock 0 002 @ 03988170 n 0000 #p 04117216 n 0000 | a vertical post at the forward edge of a rudder that enables the rudder to pivot -04117917 06 n 01 rue 0 002 @ 04334599 n 0000 ;r 08929922 n 0000 | (French) a street or road in France -04118021 06 n 03 rug 0 carpet 0 carpeting 0 021 @ 03366823 n 0000 @ 03405265 n 0000 + 01234920 v 0301 + 02749520 v 0201 + 01235073 v 0201 + 01234920 v 0201 ~ 02904233 n 0000 ~ 02908773 n 0000 ~ 03248835 n 0000 %p 03265479 n 0000 ~ 03374102 n 0000 ~ 03507458 n 0000 ~ 03629100 n 0000 ~ 03835729 n 0000 ~ 03998194 n 0000 ~ 04066270 n 0000 ~ 04120266 n 0000 ~ 04144539 n 0000 ~ 04183217 n 0000 ~ 04297847 n 0000 ~ 04585128 n 0000 | floor covering consisting of a piece of thick heavy fabric (usually with nap or pile) -04118538 06 n 01 rugby_ball 0 001 @ 02778669 n 0000 | inflated oval ball used in playing rugby -04118635 06 n 01 ruin 0 003 @ 02913152 n 0000 + 00578993 v 0101 + 01566490 v 0101 | a ruined building; "they explored several Roman ruins" -04118776 06 n 02 rule 0 ruler 0 007 @ 03735637 n 0000 + 01690020 v 0201 + 01690020 v 0101 ~ 02967081 n 0000 ~ 03380647 n 0000 ~ 03753514 n 0000 ~ 04611916 n 0000 | measuring stick consisting of a strip of wood or metal or plastic with a straight edge that is used for drawing straight lines and measuring lengths -04119091 06 n 01 rumble 0 002 @ 04161358 n 0000 #p 02968473 n 0000 | a servant's seat (or luggage compartment) in the rear of a carriage -04119230 06 n 01 rumble_seat 0 002 @ 04161358 n 0000 #p 04097373 n 0000 | a folding outside seat in the back of some early cars -04119360 06 n 01 rummer 0 001 @ 03438257 n 0000 | a large drinking glass (ovoid bowl on a stem) for drinking toasts -04119478 06 n 03 rumpus_room 0 playroom 0 game_room 0 001 @ 04065464 n 0000 | a recreation room for noisy activities (parties or children's play etc) -04119630 06 n 01 runcible_spoon 0 001 @ 04284002 n 0000 | a fork-like spoon with a cutting edge; coined by Edward Lear -04119751 06 n 03 rundle 0 spoke 1 rung 0 002 @ 03137579 n 0000 #p 03632277 n 0000 | one of the crosspieces that form the steps of a ladder -04119892 06 n 03 rung 1 round 3 stave 2 006 @ 03137579 n 0000 #p 04331277 n 0000 #p 04099969 n 0000 #p 03518445 n 0000 #p 03376595 n 0000 + 02362798 v 0301 | a crosspiece between the legs of a chair -04120093 06 n 01 runner 0 004 @ 03183080 n 0000 #p 04235291 n 0000 ~ 02848806 n 0000 ~ 04228054 n 0000 | device consisting of the parts on which something can slide along -04120266 06 n 01 runner 1 001 @ 04118021 n 0000 | a long narrow carpet -04120339 06 n 01 running_board 0 002 @ 03379592 n 0000 #p 02958343 n 0000 | a narrow footboard serving as a step beneath the doors of some old cars -04120489 06 n 01 running_shoe 0 001 @ 04199027 n 0000 | a light comfortable shoe designed for running -04120593 06 n 01 running_stitch 0 001 @ 04180314 n 0000 | small, even, hand stitches run in and out -04120695 06 n 01 running_suit 0 001 @ 04285803 n 0000 | a matching jacket and pants worn by joggers and made of fabric that absorbs perspiration -04120842 06 n 01 runway 0 003 @ 03900509 n 0000 #p 02687992 n 0000 #p 02693070 n 0000 | a strip of level paved surface where planes can take off and land -04120998 06 n 01 runway 1 001 @ 03961939 n 0000 | a narrow platform extending from the stage into the audience in a theater or nightclub etc. -04121142 06 n 01 runway 3 001 @ 03029603 n 0000 | a chute down which logs can slide -04121228 06 n 02 rushlight 0 rush_candle 0 001 @ 02948072 n 0000 | a tallow candle with a rush stem as the wick -04121342 06 n 01 russet 0 001 @ 03529444 n 0000 | a reddish brown homespun fabric -04121426 06 n 02 rya 0 rya_rug 0 001 @ 04183217 n 0000 | a shag rug made in Sweden -04121511 06 n 02 saber 1 sabre 1 006 @ 03327691 n 0000 ;c 01171644 n 0000 + 01554622 v 0201 + 01326730 v 0202 + 01326730 v 0101 + 01554622 v 0102 | a fencing sword with a v-shaped blade and a slightly curved handle -04121728 06 n 03 saber_saw 0 jigsaw 1 reciprocating_saw 0 001 @ 03996145 n 0000 | a portable power saw with a reciprocating blade; can be used with a variety of blades depending on the application and kind of cut; generally have a plate that rides on the surface that is being cut -04122011 06 n 05 Sabin_vaccine 0 oral_poliovirus_vaccine 0 OPV 0 trivalent_live_oral_poliomyelitis_vaccine 0 TOPV 0 001 @ 03978130 n 0000 | an oral vaccine (containing live but weakened poliovirus) that is given to provide immunity to poliomyelitis -04122262 06 n 01 sable 0 001 @ 04143897 n 0000 | a scarf (or trimming) made of sable -04122349 06 n 03 sable 1 sable_brush 0 sable's_hair_pencil 0 002 @ 02908217 n 0000 ~ 04091466 n 0000 | an artist's brush made of sable hairs -04122492 06 n 01 sable_coat 0 001 @ 03404251 n 0000 | a fur coat made of sable furs -04122578 06 n 02 sabot 1 wooden_shoe 0 001 @ 04199027 n 0000 | a shoe carved from a single block of wood -04122685 06 n 01 sachet 0 001 @ 02773037 n 0000 | a small soft bag containing perfumed powder; used to perfume items in a drawer or chest -04122825 06 n 04 sack 0 poke 0 paper_bag 0 carrier_bag 0 004 @ 02773037 n 0000 + 01486151 v 0101 ~ 03217889 n 0000 ~ 03461288 n 0000 | a bag made of paper or plastic for holding customer's purchases -04123026 06 n 02 sack 3 sacque 0 001 @ 03589791 n 0000 | a woman's full loose hiplength jacket -04123123 06 n 01 sackbut 0 001 @ 04487394 n 0000 | a medieval musical instrument resembling a trombone -04123228 06 n 01 sackcloth 0 001 @ 03309808 n 0000 | a coarse cloth resembling sacking -04123317 06 n 01 sackcloth 1 001 @ 03419014 n 0000 | a garment made of coarse sacking; formerly worn as an indication of remorse -04123448 06 n 01 sack_coat 0 001 @ 03057021 n 0000 | man's hiplength coat with a straight back; the jacket of a suit -04123567 06 n 02 sacking 0 bagging 0 005 @ 03309808 n 0000 + 02717362 v 0201 + 01485839 v 0201 ~ 02922798 n 0000 %s 14925645 n 0000 | coarse fabric used for bags or sacks -04123740 06 n 01 saddle 0 009 @ 04161358 n 0000 + 01492422 v 0101 %p 02953455 n 0000 ~ 03288886 n 0000 ~ 03872273 n 0000 %p 03980178 n 0000 ~ 04215153 n 0000 %p 04320973 n 0000 ~ 04325041 n 0000 | a seat for the rider of a horse or camel -04123980 06 n 01 saddle 3 002 @ 03933183 n 0000 #p 04199027 n 0000 | a piece of leather across the instep of a shoe -04124098 06 n 01 saddlebag 0 001 @ 02773037 n 0000 | a large bag (or pair of bags) hung over a saddle -04124202 06 n 03 saddle_blanket 0 saddlecloth 0 horse_blanket 0 002 @ 04295081 n 0000 ~ 02727566 n 0000 | stable gear consisting of a blanket placed under the saddle -04124370 06 n 02 saddle_oxford 0 saddle_shoe 0 001 @ 03868406 n 0000 | an oxford with a saddle of contrasting color -04124488 06 n 01 saddlery 1 001 @ 04603081 n 0000 | workshop where a saddler works -04124573 06 n 01 saddle_seat 0 001 @ 04161358 n 0000 | a chair seat that is slightly concave and sometimes has a thickened ridge in the center; "the saddle seat fitted his buttocks nicely" -04124764 06 n 02 saddle_soap 0 leather_soap 0 001 @ 04253437 n 0000 | a mild soap for cleansing and conditioning leather -04124887 06 n 01 saddle_stitch 0 001 @ 04180314 n 0000 | a decorative overcast or running stitch, especially in a contrasting color -04125021 06 n 01 safe 0 001 @ 04340750 n 0000 | strongbox where valuables can be safely kept -04125116 06 n 01 safe 2 002 @ 03148324 n 0000 ~ 03736372 n 0000 | a ventilated or refrigerated cupboard for securing provisions from pests -04125257 06 n 06 safe-deposit 0 safe-deposit_box 0 safety-deposit 0 safety_deposit_box 0 deposit_box 0 lockbox 0 001 @ 04340750 n 0000 | a fireproof metal strongbox (usually in a bank) for storing valuables -04125466 06 n 01 safehold 0 001 @ 04071102 n 0000 | a refuge from attack -04125541 06 n 01 safe_house 0 002 @ 03544360 n 0000 @ 04071102 n 0000 | a house used as a hiding place or refuge by members of certain organizations -04125692 06 n 01 safety_arch 0 002 @ 02733524 n 0000 @ 04336034 n 0000 | an undecorated arch that is included in order to strengthen or support a construction -04125853 06 n 03 safety_belt 0 life_belt 1 safety_harness 0 003 @ 02827606 n 0000 @ 04081844 n 0000 ~ 04162706 n 0000 | belt attaching you to some object as a restraint in order to prevent you from getting hurt -04126066 06 n 02 safety_bicycle 0 safety_bike 0 001 @ 02834778 n 0000 | bicycle that has two wheels of equal size; pedals are connected to the rear wheel by a multiplying gear -04126244 06 n 02 safety_bolt 0 safety_lock 1 001 @ 02865931 n 0000 | a bolt that cannot be moved from outside the door or gate -04126373 06 n 02 safety_catch 0 safety_lock 0 002 @ 03464467 n 0000 #p 03467984 n 0000 | guard consisting of a locking device that prevents a weapon from being fired -04126541 06 n 01 safety_curtain 0 001 @ 04418357 n 0000 | a fireproof theater curtain to be dropped in case of fire -04126659 06 n 01 safety_fuse 0 001 @ 03407122 n 0000 | a slow-burning fuse consisting of a tube or cord filled or saturated with combustible matter; used to ignite detonators from a distance -04126852 06 n 02 safety_lamp 0 Davy_lamp 0 001 @ 03844045 n 0000 | an oil lamp that will not ignite flammable gases (methane) -04126980 06 n 02 safety_match 0 book_matches 0 001 @ 03728437 n 0000 | a paper match that strikes only on a specially prepared surface -04127117 06 n 01 safety_net 0 001 @ 03819595 n 0000 | a large strong net to catch circus acrobats who fall or jump from a trapeze -04127249 06 n 01 safety_pin 0 001 @ 03940256 n 0000 | a pin in the form of a clasp; has a guard so the point of the pin will not stick the user -04127395 06 n 02 safety_rail 0 guardrail 0 001 @ 04047401 n 0000 | a railing placed alongside a stairway or road for safety -04127521 06 n 01 safety_razor 0 001 @ 04057047 n 0000 | a razor with a guard to prevent deep cuts in the skin -04127633 06 n 05 safety_valve 0 relief_valve 0 escape_valve 0 escape_cock 0 escape 0 002 @ 04519153 n 0000 @ 04072193 n 0000 | a valve in a container in which pressure can build up (as a steam boiler); it opens automatically when the pressure reaches a dangerous level -04127904 06 n 04 sail 0 canvas 3 canvass 3 sheet 4 019 @ 03932670 n 0000 #p 04128837 n 0000 + 01945516 v 0101 + 01846658 v 0101 ~ 02782602 n 0000 ~ 03137473 n 0000 ~ 03381776 n 0000 ~ 03383099 n 0000 %p 03458961 n 0000 ~ 03505383 n 0000 ~ 03712337 n 0000 ~ 03712981 n 0000 ~ 04000998 n 0000 ~ 04115802 n 0000 ~ 04139642 n 0000 ~ 04233027 n 0000 ~ 04292080 n 0000 ~ 04454792 n 0000 ~ 04455652 n 0000 | a large piece of fabric (usually canvas fabric) by means of which wind is used to propel a sailing vessel -04128413 06 n 01 sail 1 001 @ 04341686 n 0000 | any structure that resembles a sail -04128499 06 n 02 sailboat 0 sailing_boat 0 006 @ 04128837 n 0000 ~ 02981792 n 0000 ~ 02982416 n 0000 %p 02994012 n 0000 ~ 04185329 n 0000 ~ 04483307 n 0000 | a small sailing vessel; usually with a single mast -04128710 06 n 01 sailcloth 0 001 @ 03309808 n 0000 | a strong fabric (such as cotton canvas) used for making sails and tents -04128837 06 n 02 sailing_vessel 0 sailing_ship 0 029 @ 04530566 n 0000 -c 03129915 a 0000 ~ 02793199 n 0000 %p 02871631 n 0000 ~ 02901377 n 0000 ~ 02901620 n 0000 ~ 03045228 n 0000 ~ 03154316 n 0000 ~ 03186285 n 0000 ~ 03327133 n 0000 ~ 03381565 n 0000 %p 03410147 n 0000 %p 03410423 n 0000 ~ 03411339 n 0000 %p 03512911 n 0000 ~ 03567788 n 0000 ~ 03612010 n 0000 %p 03726760 n 0000 ~ 04091584 n 0000 %p 04127904 n 0000 ~ 04128499 n 0000 ~ 04147183 n 0000 ~ 04242408 n 0000 ~ 04244847 n 0000 ~ 04291992 n 0000 ~ 04587327 n 0000 %p 04610676 n 0000 ~ 04612373 n 0000 -c 04774901 n 0000 | a vessel that is powered by the wind; often having several masts -04129490 06 n 01 sailing_warship 0 002 @ 03718212 n 0000 ~i 03093018 n 0000 | a warship that was powered by sails and equipped with many heavy guns; not built after the middle of the 19th century -04129688 06 n 01 sailor_cap 0 001 @ 02954340 n 0000 | a cap worn by sailors -04129766 06 n 01 sailor_suit 0 001 @ 03289985 n 0000 | a boy's ensemble; copied from a sailor's uniform -04129872 06 n 02 Saint_Lawrence_Seaway 0 St._Lawrence_Seaway 0 001 @i 04163364 n 0000 | a seaway involving the Saint Lawrence River and the Great Lakes that was developed jointly by Canada and the United States; oceangoing ships can travel as far west as Lake Superior -04130143 06 n 01 salad_bar 0 001 @ 02789487 n 0000 | a bar where diners can assemble a salad to their own taste -04130257 06 n 01 salad_bowl 0 001 @ 02880940 n 0000 | a large bowl for mixing and serving a salad -04130357 06 n 01 salad_fork 0 001 @ 03383948 n 0000 | a fork intended for eating salads -04130447 06 n 02 salad_plate 0 salad_bowl 1 001 @ 03959485 n 0000 | a plate or bowl for individual servings of salad -04130566 06 n 01 salinometer 0 001 @ 03553486 n 0000 | a hydrometer that determines the concentration of salt solutions by measuring their density -04130715 06 n 02 Salk_vaccine 0 IPV 0 001 @ 03978130 n 0000 | a poliovirus vaccine consisting of inactivated polio virus that is injected subcutaneously to provide immunity to poliomyelitis -04130907 06 n 02 sallet 0 salade 0 001 @ 03513376 n 0000 | a light medieval helmet with a slit for vision -04131015 06 n 01 salon 0 001 @ 03679712 n 0000 | elegant sitting room where guests are received -04131113 06 n 01 salon 1 001 @ 03412058 n 0000 | gallery where works of art can be displayed -04131208 06 n 05 salon 2 beauty_salon 0 beauty_parlor 0 beauty_parlour 0 beauty_shop 0 001 @ 04202417 n 0000 | a shop where hairdressers and beauticians work -04131368 06 n 01 saltbox 0 001 @ 03544360 n 0000 | a type of house built in New England; has two stories in front and one behind -04131499 06 n 01 saltcellar 0 001 @ 03094503 n 0000 | a small container for holding salt at the dining table -04131610 06 n 01 salt_mine 0 001 @ 03768346 n 0000 | a mine where salt is dug -04131690 06 n 02 saltshaker 0 salt_shaker 0 001 @ 04183329 n 0000 | a shaker with a perforated top for sprinkling salt -04131811 06 n 01 saltworks 0 002 @ 03956922 n 0000 ;u 06295235 n 0000 | a plant where salt is produced commercially -04131929 06 n 01 salver 0 001 @ 04476259 n 0000 | a tray (or large plate) for serving food or drinks; usually made of silver -04132056 06 n 01 salvinorin 0 001 @ 03479647 n 0000 | a hallucinogen obtained from Salvia divinorum -04132158 06 n 02 salwar 0 shalwar 0 001 @ 04489008 n 0000 | a pair of light loose trousers with a tight fit around the ankles; worn by women from the Indian subcontinent (usually with a kameez) -04132354 06 n 01 Salyut 0 001 @i 04266162 n 0000 | either of two Soviet space stations launched in the 1970s -04132465 06 n 01 Sam_Browne_belt 0 002 @ 02827606 n 0000 #p 03763968 n 0000 | leather belt supported by a strap over the right shoulder -04132603 06 n 02 samisen 0 shamisen 0 001 @ 04338517 n 0000 | a Japanese stringed instrument resembling a banjo with a long neck and three strings and a fretted fingerboard and a rectangular soundbox; played with a plectrum -04132829 06 n 01 samite 0 001 @ 03309808 n 0000 | a heavy silk fabric (often woven with silver or gold threads); used to make clothing in the Middle Ages -04132985 06 n 01 samovar 0 001 @ 04516214 n 0000 | a metal urn with a spigot at the base; used in Russia to boil water for tea -04133114 06 n 01 sampan 0 001 @ 04229480 n 0000 | an Asian skiff usually propelled by two oars -04133211 06 n 01 sampler 0 002 @ 03282933 n 0000 + 01195299 v 0101 | a piece of embroidery demonstrating skill with various stitches -04133346 06 n 02 sampling_station 0 sampler 1 001 @ 03839534 n 0000 | an observation station that is set up to make sample observations of something -04133497 06 n 03 sanatorium 0 sanatarium 0 sanitarium 0 001 @ 03540595 n 0000 | a hospital for recuperation or for the treatment of chronic diseases -04133648 06 n 01 sanctuary 2 003 @ 08513718 n 0000 ~ 03527675 n 0000 ~ 04378651 n 0000 | a consecrated place where sacred objects are kept -04133789 06 n 01 sandal 0 007 @ 04199027 n 0000 ~ 03297103 n 0000 ~ 03364008 n 0000 ~ 03547530 n 0000 ~ 04027706 n 0000 ~ 04156411 n 0000 ~ 04386664 n 0000 | a shoe consisting of a sole fastened by straps to the foot -04134008 06 n 01 sandbag 0 003 @ 02773037 n 0000 + 00221964 v 0101 + 01410079 v 0101 | a bag filled with sand; used as a weapon or to build walls or as ballast -04134170 06 n 01 sandblaster 0 002 @ 03489162 n 0000 + 01386741 v 0101 | a tool that throws out a blast of steam laden with sand; used to clean or grind hard surfaces -04134339 06 n 03 sandbox 0 sandpile 0 sandpit 0 002 @ 03964744 n 0000 ;u 08860123 n 0304 | a plaything consisting of a pile of sand or a box filled with sand for children to play in -04134523 06 n 01 sandbox 1 001 @ 03779370 n 0000 | mold consisting of a box with sand shaped to mold metal -04134632 06 n 01 sandglass 0 003 @ 04437953 n 0000 ~ 03266620 n 0000 ~ 03544143 n 0000 | timepiece in which the passage of time is indicated by the flow of sand from one transparent container to another through a narrow passage -04134862 06 n 01 sand_painting 0 001 @ 03876519 n 0000 | a painting done by Amerindians (especially Navaho); made of fine colored sands on a neutral background -04135024 06 n 01 sand_wedge 0 001 @ 04569822 n 0000 | a wedge used to get out of sand traps -04135118 06 n 01 sandwich_board 0 001 @ 04217882 n 0000 | signboard consisting of two hinged boards that hang front and back from the shoulders of a walker and are used to display advertisements -04135315 06 n 03 sanitary_napkin 0 sanitary_towel 0 Kotex 0 003 @ 03872495 n 0000 ;u 06845599 n 0301 ;u 08860123 n 0204 | a disposable absorbent pad (trade name Kotex); worn to absorb menstrual flow -04135516 06 n 01 Santa_Fe_Trail 0 002 @i 04466613 n 0000 #p 08682819 n 0000 | a trail that extends from Missouri to New Mexico; an important route for settlers moving west in the 19th century -04135710 06 n 03 cling_film 0 clingfilm 0 Saran_Wrap 0 003 @ 03958752 n 0000 ;u 06845599 n 0301 %s 14593545 n 0000 | a thin plastic film made of saran (trade name Saran Wrap) that sticks to itself; used for wrapping food -04135933 06 n 02 sarcenet 0 sarsenet 0 001 @ 04219424 n 0000 | a fine soft silk fabric often used for linings -04136045 06 n 01 sarcophagus 0 001 @ 03064758 n 0000 | a stone coffin (usually bearing sculpture or inscriptions) -04136161 06 n 02 sari 0 saree 0 001 @ 03236735 n 0000 | a dress worn primarily by Hindu women; consists of several yards of light material that is draped around the body -04136333 06 n 01 sarong 0 001 @ 04230808 n 0000 | a loose skirt consisting of brightly colored fabric wrapped around the body; worn by both women and men in the South Pacific -04136510 06 n 02 sash 0 window_sash 0 003 @ 03391770 n 0000 #p 04587648 n 0000 ~ 02976350 n 0000 | a framework that holds the panes of a window in the window frame -04136676 06 n 02 sash_cord 0 sash_line 0 001 @ 03106110 n 0000 | a strong cord connecting a sash weight to a sliding sash -04136800 06 n 03 sash_fastener 0 sash_lock 0 window_lock 0 002 @ 03682487 n 0000 #p 04587648 n 0000 | a lock attached to the sashes of a double hung window that can fix both in the shut position -04136997 06 n 01 sash_weight 0 001 @ 03118539 n 0000 | a counterweight for a sliding sash -04137089 06 n 01 sash_window 0 001 @ 04587648 n 0000 | a window with (usually two) sashes that slide vertically to let in air -04137217 06 n 01 satchel 0 001 @ 02774630 n 0000 | luggage consisting of a small case with a flat bottom and (usually) a shoulder strap -04137355 06 n 01 sateen 0 001 @ 03309808 n 0000 | a cotton fabric with a satiny finish -04137444 06 n 03 satellite 0 artificial_satellite 0 orbiter 0 011 @ 03294048 n 0000 + 02043982 v 0302 + 00969137 v 0101 ~ 02751490 n 0000 ~ 03077741 n 0000 %p 04257790 n 0000 ~ 04264914 n 0000 ~ 04266162 n 0000 ~ 04290615 n 0000 ~ 04290762 n 0000 ~ 04567593 n 0000 | man-made equipment that orbits around the earth or the moon -04137773 06 n 01 satellite_receiver 0 002 @ 04060647 n 0000 #p 03077741 n 0000 | a receiver on a communications satellite -04137897 06 n 02 satellite_television 0 satellite_TV 0 001 @ 04404412 n 0000 | a television system in which the signal is transmitted to an orbiting satellite that receives the signal and amplifies it and transmits it back to earth -04138131 06 n 01 satellite_transmitter 0 002 @ 04472726 n 0000 #p 03077741 n 0000 | a transmitter on a communications satellite -04138261 06 n 01 satin 0 002 @ 03309808 n 0000 + 00282675 a 0101 | a smooth fabric of silk or rayon; has a glossy face and a dull back -04138398 06 n 02 satinet 0 satinette 0 001 @ 03309808 n 0000 | a fabric with a finish resembling satin but made partly or wholly from cotton or synthetic fiber -04138560 06 n 01 satin_stitch 0 001 @ 04180314 n 0000 | flat stitches worked so closely as to resemble satin -04138671 06 n 01 satin_weave 0 001 @ 04568298 n 0000 | a weave in which the filling and warp threads intersect in such a way as to give a smooth compact surface with no distinguishable twill line -04138869 06 n 01 Saturday_night_special 0 001 @ 03948459 n 0000 | a cheap handgun that is easily obtained -04138977 06 n 01 saucepan 0 004 @ 03880531 n 0000 ~ 03226254 n 0000 %p 03485997 n 0000 ~ 04317325 n 0000 | a deep pan with a handle; used for stewing or boiling -04139140 06 n 01 saucepot 0 001 @ 03990474 n 0000 | a cooking pot that has handles on either side and tight fitting lid; used for stewing or boiling -04139291 06 n 01 saucer 0 001 @ 03361945 n 0000 | a small shallow dish for holding a cup at the table -04139395 06 n 02 sauna 0 sweat_room 0 001 @ 04308583 n 0000 | a Finnish steam bath; steam is produced by pouring water over heated rocks -04139534 06 n 01 save-all 0 001 @ 03819595 n 0000 | a net hung between ship and pier while loading a ship -04139642 06 n 01 save-all 1 001 @ 04127904 n 0000 | a sail set to catch wind spilled from a larger sail -04139748 06 n 01 save-all 2 001 @ 04060904 n 0000 | a receptacle for catching waste products for further use -04139859 06 n 04 savings_bank 0 coin_bank 0 money_box 1 bank 1 002 @ 03094503 n 0000 ~ 03935335 n 0000 | a container (usually with a slot in the top) for keeping money at home; "the coin bank was empty" -04140064 06 n 01 saw 0 011 @ 03489162 n 0000 + 01559590 v 0101 ~ 02838958 n 0000 ~ 02910701 n 0000 ~ 03139887 n 0000 ~ 03376938 n 0000 ~ 03474779 n 0000 ~ 03488188 n 0000 %p 04140976 n 0000 %p 04452848 n 0000 ~ 04503836 n 0000 | hand tool having a toothed blade for cutting -04140340 06 n 01 sawdust_doll 0 001 @ 03219135 n 0000 | a doll that is stuffed with sawdust -04140434 06 n 01 sawdust_saloon 0 001 @ 02796995 n 0000 | a saloon whose floor is covered with sawdust -04140539 06 n 01 sawed-off_shotgun 0 001 @ 04206356 n 0000 | a shotgun with short barrels -04140631 06 n 04 sawhorse 0 horse 1 sawbuck 0 buck 0 002 @ 03391770 n 0000 ~ 04479694 n 0000 | a framework for holding wood that is being sawed -04140777 06 n 01 sawmill 1 001 @ 03996145 n 0000 | a large sawing machine -04140853 06 n 01 saw_set 0 001 @ 04451818 n 0000 | a tool used to bend each alternate sawtooth at a slight angle outward -04140976 06 n 01 sawtooth 0 002 @ 04174705 n 0000 #p 04140064 n 0000 | a serration on a saw blade -04141076 06 n 02 sax 0 saxophone 0 002 @ 04222847 n 0000 + 10554243 n 0201 | a single-reed woodwind with a conical bore -04141198 06 n 01 saxhorn 0 001 @ 02891788 n 0000 | any of a family of brass wind instruments that resemble a bugle with valves -04141327 06 n 01 scabbard 0 001 @ 04187061 n 0000 | a sheath for a sword or dagger or bayonet -04141423 06 n 01 scaffold 0 002 @ 07938773 n 0000 #p 04141712 n 0000 | a temporary arrangement erected around a building for convenience of workers -04141573 06 n 01 scaffold 1 002 @ 03961939 n 0000 #p 03575691 n 0000 | a platform from which criminals are executed (hanged or beheaded) -04141712 06 n 02 scaffolding 0 staging 0 003 @ 04377057 n 0000 + 01217617 v 0101 %p 04141423 n 0000 | a system of scaffolds -04141838 06 n 01 scale 0 003 @ 03568117 n 0000 + 00319406 v 0101 ~ 04529108 n 0000 | an indicator having a graduated sequence of marks -04141975 06 n 02 scale 2 weighing_machine 0 005 @ 03733925 n 0000 + 00490428 v 0101 + 02728388 v 0101 ~ 02777100 n 0000 ~ 04570958 n 0000 | a measuring instrument for weighing; shows amount of mass -04142175 06 n 01 scaler 0 001 @ 04021362 n 0000 | an electronic pulse counter used to count pulses that occur too rapidly to be recorded individually -04142327 06 n 01 scaling_ladder 0 001 @ 03632277 n 0000 | a ladder used to scale walls (as in an attack) -04142434 06 n 01 scalpel 0 001 @ 04364827 n 0000 | a thin straight surgical knife used in dissection and surgery -04142549 06 n 02 scan 0 CAT_scan 0 002 @ 03931044 n 0000 + 02152504 v 0101 | an image produced by scanning; "he analyzed the brain scan"; "you could see the tumor in the CAT scan" -04142731 06 n 02 scanner 0 electronic_scanner 0 002 @ 03181293 n 0000 + 01318659 v 0101 | a radio receiver that moves automatically across some selected range of frequencies looking for some signal or condition; "they used scanners to monitor police radio channels" -04142999 06 n 01 scanner 1 002 @ 03207305 n 0000 + 01318659 v 0101 | a radar dish that rotates or oscillates in order to scan a broad area -04143140 06 n 03 scanner 2 digital_scanner 0 image_scanner 0 003 @ 03277771 n 0000 @ 03163973 n 0000 + 01855447 v 0101 | an electronic device that generates a digital representation of an image for data input to a computer -04143365 06 n 02 scantling 0 stud 0 003 @ 04515129 n 0000 #p 02913152 n 0000 + 01358023 v 0201 | an upright in house framing -04143492 06 n 02 scapular 0 scapulary 0 002 @ 03419014 n 0000 #p 03781467 n 0000 | garment consisting of a long wide piece of woolen cloth worn over the shoulders with an opening for the head; part of a monastic habit -04143712 06 n 05 scarecrow 0 straw_man 0 strawman 0 bird-scarer 0 scarer 0 002 @ 03265874 n 0000 + 01779165 v 0503 | an effigy in the shape of a man to frighten birds away from seeds -04143897 06 n 01 scarf 0 013 @ 03419014 n 0000 + 00051060 v 0101 ~ 03325584 n 0000 ~ 03332173 n 0000 ~ 03610992 n 0000 ~ 03635236 n 0000 ~ 03719743 n 0000 ~ 03797182 n 0000 ~ 03900028 n 0000 ~ 04060448 n 0000 ~ 04122262 n 0000 ~ 04325704 n 0000 ~ 04495698 n 0000 | a garment worn around the head or neck or shoulders for warmth or decoration -04144241 06 n 02 scarf_joint 0 scarf 1 002 @ 03600977 n 0000 + 01294889 v 0201 | a joint made by notching the ends of two pieces of timber or metal so that they will lock together end-to-end -04144434 06 n 01 scatter_pin 0 001 @ 03940713 n 0000 | small pin usually worn in groups of two or more -04144539 06 n 02 scatter_rug 0 throw_rug 0 001 @ 04118021 n 0000 | a small rug; several can be used in a room -04144651 06 n 02 scauper 0 scorper 0 001 @ 03455355 n 0000 | a graver used to scoop out broad areas when engraving wood or metal -04144782 06 n 02 scene 1 view 0 002 @ 03453809 n 0000 %p 04347225 n 0000 | graphic art consisting of the graphic or photographic representation of a visual percept; "he painted scenes from everyday life"; "figure 2 shows photographic and schematic views of the equipment" -04145056 06 n 02 scenery 0 scene 0 005 @ 04297476 n 0000 ~ 02768864 n 0000 ~ 03359755 n 0000 ~ 03725198 n 0000 ~ 04177202 n 0000 | the painted structures of a stage set that are intended to suggest a particular locale; "they worked all night painting the scenery" -04145322 06 n 01 scenic_railway 0 001 @ 04048568 n 0000 | small railway in an amusement park -04145417 06 n 01 scheduler 0 002 @ 03493333 n 0000 + 00794981 v 0101 | computer hardware that arranges jobs to be done by the computer in an appropriate order -04145578 06 n 02 schematic 0 schematic_drawing 0 003 @ 03186399 n 0000 + 01980796 a 0103 ~ 04595998 n 0000 | diagram of an electrical or mechanical system -04145735 06 n 03 schlock 0 shlock 0 dreck 0 002 @ 03748886 n 0000 ;u 07157273 n 0000 | merchandise that is shoddy or inferior -04145863 06 n 02 Schmidt_telescope 0 Schmidt_camera 0 001 @ 04068601 n 0000 | reflecting telescope that has plate that corrects for aberration so a wide area of sky can be photographed -04146050 06 n 02 school 0 schoolhouse 0 007 @ 02913152 n 0000 #p 04146976 n 0000 + 02792903 a 0101 + 02387910 v 0101 %p 03038685 n 0000 ~ 03092314 n 0000 ~ 03165616 n 0000 | a building where young people receive education; "the school was built in 1932"; "he walked to school every morning" -04146343 06 n 01 schoolbag 0 001 @ 02773037 n 0000 | a bag for carrying school books and supplies; "found just the right dictionary to fit into his schoolbag" -04146504 06 n 01 school_bell 0 001 @ 02824448 n 0000 | a bell rung to announce beginning or ending of class -04146614 06 n 01 school_bus 0 001 @ 02924116 n 0000 | a bus used to transport children to or from school -04146721 06 n 01 school_crossing 0 001 @ 03904183 n 0000 | a pedestrian crossing where school children cross a street on the way to school -04146862 06 n 02 school_ship 0 training_ship 0 001 @ 04194289 n 0000 | a ship used to train students as sailors -04146976 06 n 01 school_system 0 003 @ 03297735 n 0000 #p 03569964 n 0000 %p 04146050 n 0000 | establishment including the plant and equipment for providing education from kindergarten through high school -04147183 06 n 01 schooner 0 002 @ 04128837 n 0000 ~ 04185656 n 0000 | sailing vessel used in former times -04147291 06 n 01 schooner 1 001 @ 03438257 n 0000 | a large beer glass -04147364 06 n 01 science_museum 0 001 @ 03800563 n 0000 | a museum that collects and displays objects having scientific interest -04147495 06 n 01 scientific_instrument 0 012 @ 03574816 n 0000 ~ 02670382 n 0000 ~ 03092656 n 0000 ~ 03524425 n 0000 ~ 03616225 n 0000 ~ 03629643 n 0000 ~ 03708672 n 0000 ~ 03709206 n 0000 ~ 03760944 n 0000 ~ 04340521 n 0000 ~ 04382537 n 0000 ~ 04400899 n 0000 | an instrument used by scientists -04147793 06 n 01 scimitar 0 001 @ 02987492 n 0000 | a curved oriental saber; the edge is on the convex side of the blade -04147916 06 n 01 scintillation_counter 0 001 @ 03118346 n 0000 | counter tube in which light flashes when exposed to ionizing radiation -04148054 06 n 02 scissors 0 pair_of_scissors 0 007 @ 03265032 n 0000 @ 03082127 n 0000 ;u 06295235 n 0000 %p 02848216 n 0000 ~ 03044934 n 0000 ~ 04186848 n 0000 ~ 04253304 n 0000 | an edge tool having two crossed pivoting blades -04148285 06 n 01 sclerometer 0 001 @ 03733925 n 0000 | a measuring instrument that measures the hardness of materials by penetrating them with a stylus that has a diamond point -04148464 06 n 02 scoinson_arch 0 sconcheon_arch 0 001 @ 02733524 n 0000 | an arch that supports part of the wall -04148579 06 n 01 sconce 0 001 @ 02888569 n 0000 | a decorative wall bracket for holding candles or other sources of light -04148703 06 n 01 sconce 1 001 @ 03665366 n 0000 | a candle or flaming torch secured in a sconce -04148801 06 n 01 sconce 2 002 @ 03262717 n 0000 @ 03386011 n 0000 | a small fort or earthwork defending a ford, pass, or castle gate -04148936 06 n 01 sconce 3 002 @ 04191595 n 0000 @ 04191943 n 0000 | a shelter or screen providing protection from enemy fire or from the weather -04149083 06 n 01 scoop 0 002 @ 03633091 n 0000 + 01312371 v 0101 | a large ladle; "he used a scoop to serve the ice cream" -04149208 06 n 02 scoop 1 scoop_shovel 0 004 @ 04208210 n 0000 #p 02769290 n 0000 #p 03236217 n 0000 + 01312371 v 0101 | the shovel or bucket of a dredge or backhoe -04149374 06 n 01 scooter 0 002 @ 04576211 n 0000 + 02061495 v 0103 | child's two-wheeled vehicle operated by foot -04149490 06 n 02 scopolamine 0 hyoscine 0 001 @ 14712692 n 0000 | an alkaloid with anticholinergic effects that is used as a sedative and to treat nausea and to dilate the pupils in ophthalmic procedures; "transdermal scopolamine is used to treat motion sickness"; "someone sedated with scopolamine has difficulty lying" -04149813 06 n 01 scoreboard 0 002 @ 02856463 n 0000 @ 04217882 n 0000 | a large board for displaying the score of a contest (and some other information) -04149968 06 n 02 scourge 0 flagellum 0 004 @ 04577769 n 0000 + 01398443 v 0201 + 02500775 v 0101 + 01398443 v 0102 | a whip used to inflict punishment (often used for pedantic humor) -04150153 06 n 01 scouring_pad 0 001 @ 03040229 n 0000 | a small abrasive cleaning pad used for scouring pots and pans -04150273 06 n 01 scow 0 001 @ 02792552 n 0000 | a barge carrying bulk materials in an open hold -04150371 06 n 01 scow 1 001 @ 02858304 n 0000 | any of various flat-bottomed boats with sloping ends -04150474 06 n 01 scrambler 0 003 @ 03278248 n 0000 + 01472807 v 0101 + 00537316 v 0101 | electronic equipment that makes speech unintelligible during transmission and restores it at reception -04150668 06 n 01 scrap 0 001 @ 03932203 n 0000 | a small piece of something that is left over after the rest has been used; "she jotted it on a scrap of paper"; "there was not a scrap left" -04150860 06 n 01 scrapbook 0 001 @ 02695079 n 0000 | an album into which clippings or notes or pictures can be pasted -04150980 06 n 01 scraper 0 003 @ 03489162 n 0000 + 01750156 v 0101 + 01308160 v 0101 | any of various hand tools for scraping -04151108 06 n 01 scratcher 0 003 @ 03183080 n 0000 + 01309143 v 0101 ~ 02770721 n 0000 | a device used for scratching -04151228 06 n 01 scratchpad 0 002 @ 03744276 n 0000 ;c 03082979 n 0000 | (computer science) a high-speed internal memory used for temporary storage of preliminary information -04151405 06 n 01 screed 0 001 @ 04339291 n 0000 | an accurately levelled strip of material placed on a wall or floor as guide for the even application of plaster or concrete -04151581 06 n 01 screen 0 008 @ 04014297 n 0000 #p 04153025 n 0000 ~ 03347037 n 0000 ~ 03788365 n 0000 %s 04153330 n 0000 ~ 04247011 n 0000 ~ 04589890 n 0000 ~ 04590553 n 0000 | a protective covering consisting of netting; can be mounted in a frame; "they put screens in the windows for protection against insects"; "a metal screen protected the observers" -04151940 06 n 04 screen 1 cover 2 covert 0 concealment 0 008 @ 03122748 n 0000 + 02147109 v 0201 + 01207951 v 0201 + 01332730 v 0201 ~ 02851384 n 0000 ~ 02944459 n 0000 ~ 04201297 n 0000 ~ 04299066 n 0000 | a covering that serves to conceal or shelter something; "a screen of trees afforded privacy"; "under cover of darkness"; "the brush provided a covert for game"; "the simplest concealment is to match perfectly the color of the background" -04152387 06 n 01 screen 3 005 @ 03894379 n 0000 + 01130169 v 0102 ~ 02699770 n 0000 ~ 04025633 n 0000 ~ 04104925 n 0000 | partition consisting of a decorative frame or panel that serves to divide a space -04152593 06 n 02 screen 5 CRT_screen 0 005 @ 03211117 n 0000 #p 02985137 n 0000 ~ 02769075 n 0000 ~ 03085602 n 0000 %p 03382708 n 0000 | the display that is electronically created on the surface of the large end of a cathode-ray tube -04152829 06 n 03 screen 6 silver_screen 0 projection_screen 0 003 @ 04362025 n 0000 + 02139883 v 0101 ~ 04583776 n 0000 | a white or silvered surface where pictures can be projected for viewing -04153025 06 n 02 screen_door 0 screen 7 003 @ 03221720 n 0000 + 01130169 v 0202 %p 04151581 n 0000 | a door that consists of a frame holding metallic or plastic netting; used to allow ventilation and to keep insects from entering a building through the open door; "he heard the screen slam as she left" -04153330 06 n 01 screening 0 002 @ 03309808 n 0000 #s 04151581 n 0000 | fabric of metal or plastic mesh -04153436 06 n 01 screen_saver 0 002 @ 03178782 n 0000 ;c 06128570 n 0000 | (computer science) a moving design that appears on a computer screen when there has been no input for a specified period of time; "screen savers prevent the damage that occurs when the same areas of light and dark are displayed too long" -04153751 06 n 01 screw 0 017 @ 03323703 n 0000 + 01352996 v 0101 + 01353169 v 0101 + 01352806 v 0101 ~ 02697576 n 0000 ~ 02865665 n 0000 ~ 02957135 n 0000 %p 03501288 n 0000 ~ 03701790 n 0000 ~ 03752185 n 0000 ~ 03923564 n 0000 %p 04154938 n 0000 ~ 04177329 n 0000 ~ 04177545 n 0000 ~ 04431436 n 0000 ~ 04598136 n 0000 ~ 04604513 n 0000 | a fastener with a tapered threaded shank and a slotted head -04154152 06 n 02 screw 1 screw_propeller 0 003 @ 04011827 n 0000 #p 04194289 n 0000 #p 03859000 n 0000 | a propeller with several angled blades that rotates to push against water or air -04154340 06 n 01 screw 2 003 @ 03566329 n 0000 + 01353169 v 0101 + 01352806 v 0101 | a simple machine of the inclined-plane type consisting of a spirally threaded cylindrical rod that engages with a similarly threaded hole -04154565 06 n 01 screwdriver 0 004 @ 03489162 n 0000 ~ 03361683 n 0000 ~ 03923692 n 0000 ~ 04279987 n 0000 | a hand tool for driving screws; has a tip that fits into the head of a screw -04154753 06 n 01 screw_eye 0 001 @ 04598136 n 0000 | a woodscrew having its shank bent into a ring -04154854 06 n 01 screw_key 0 001 @ 04606574 n 0000 | a wrench for turning a screw -04154938 06 n 02 screw_thread 0 thread 1 002 @ 04087126 n 0000 #p 04153751 n 0000 | the raised helical rib going around a screw -04155068 06 n 01 screwtop 0 001 @ 04453910 n 0000 | the top of a container that must be screwed off and on -04155177 06 n 01 screw_wrench 0 001 @ 02680754 n 0000 | adjustable wrench that has one jaw that can be adjusted by turning a screw -04155310 06 n 03 scribble 0 scrabble 0 doodle 0 004 @ 03234306 n 0000 + 01693324 v 0301 + 01006239 v 0202 + 01006239 v 0101 | an aimless drawing -04155457 06 n 03 scriber 0 scribe 0 scratch_awl 0 003 @ 02763714 n 0000 + 01276192 v 0201 + 01276192 v 0101 | a sharp-pointed awl for marking wood or metal to be cut -04155625 06 n 01 scrim 0 001 @ 03309808 n 0000 | a firm open-weave fabric used for a curtain in the theater -04155735 06 n 01 scrimshaw 0 001 @ 02973558 n 0000 | a carving (or engraving) on whalebone, whale ivory, walrus tusk, etc., usually by American whalers -04155889 06 n 01 scriptorium 0 002 @ 04105893 n 0000 #p 03781244 n 0000 | a room in a monastery that is set aside for writing or copying manuscripts -04156040 06 n 01 scrubber 0 001 @ 04026053 n 0000 | a purifier that removes impurities from a gas -04156140 06 n 03 scrub_brush 0 scrubbing_brush 0 scrubber 1 002 @ 02908217 n 0000 + 01251228 v 0301 | a brush with short stiff bristles for heavy cleaning -04156297 06 n 01 scrub_plane 0 001 @ 03954731 n 0000 | a narrow woodworking plane used to cut away excess stock -04156411 06 n 01 scuffer 0 002 @ 04133789 n 0000 + 01917845 v 0101 | a lightweight flexible sandal with a sturdy sole; worn as play shoes by children and as sportswear by adults -04156591 06 n 03 scuffle 0 scuffle_hoe 0 Dutch_hoe 0 001 @ 03524574 n 0000 | a hoe that is used by pushing rather than pulling -04156720 06 n 01 scull 0 001 @ 04190997 n 0000 | a racing shell that is propelled by sculls -04156814 06 n 01 scull 1 002 @ 03837422 n 0000 + 01947352 v 0101 | each of a pair of short oars that are used by a single oarsman -04156946 06 n 01 scull 2 001 @ 03837422 n 0000 | a long oar that is mounted at the stern of a boat and moved left and right to propel the boat forward -04157099 06 n 01 scullery 0 002 @ 04105893 n 0000 ;r 08860123 n 0000 | a small room (in large old British houses) next to the kitchen; where kitchen utensils are cleaned and kept and other rough household jobs are done -04157320 06 n 01 sculpture 0 017 @ 03958097 n 0000 @ 13863473 n 0000 + 02139884 a 0102 + 02924286 a 0101 + 01551871 v 0102 + 01684337 v 0102 + 01684337 v 0101 + 01551871 v 0101 ~ 02906175 n 0000 ~ 02926188 n 0000 ~ 02973558 n 0000 ~ 03721169 n 0000 ~ 03776291 n 0000 ~ 03779621 n 0000 ~ 04073669 n 0000 ~ 04294041 n 0000 ~ 04306847 n 0000 | a three-dimensional work of plastic art -04157703 06 n 01 scum 0 004 @ 03338648 n 0000 + 00422870 a 0101 + 02366351 v 0101 ~ 15042856 n 0000 | a film of impurities or vegetation that can form on the surface of a liquid -04157883 06 n 01 scupper 0 001 @ 03231912 n 0000 | drain that allows water on the deck of a vessel to flow overboard -04158002 06 n 02 scuttle 0 coal_scuttle 0 001 @ 03094503 n 0000 | container for coal; shaped to permit pouring the coal onto the fire -04158138 06 n 01 scyphus 0 001 @ 03147509 n 0000 | an ancient Greek drinking cup; two handles and footed base -04158250 06 n 01 scythe 0 002 @ 03265032 n 0000 + 01319885 v 0101 | an edge tool for cutting grass; has a long handle that must be held with both hands and a curved blade that moves parallel to the ground -04158457 06 n 02 sea_anchor 0 drogue 1 002 @ 04081844 n 0000 #p 04194289 n 0000 | restraint consisting of a canvas covered frame that floats behind a vessel; prevents drifting or maintains the heading into a wind -04158672 06 n 01 seabag 0 001 @ 03235796 n 0000 | a cylindrical drawstring bag used by sailors to hold their clothing and other gear -04158807 06 n 01 sea_boat 0 003 @ 02858304 n 0000 ~ 03662601 n 0000 ~ 04574348 n 0000 | a boat that is seaworthy; that is adapted to the open seas -04158956 06 n 01 sea_chest 0 001 @ 03014705 n 0000 | a sailor's storage chest for personal property -04159058 06 n 02 seal 0 stamp 0 009 @ 03185746 n 0000 + 01531265 v 0203 + 01356582 v 0101 + 01353405 v 0101 ~ 02915807 n 0000 ~ 02935316 n 0000 ~ 03457184 n 0000 ~ 03488887 n 0000 ~ 04218142 n 0000 | a device incised to make an impression; used to secure a closing or to authenticate documents -04159354 06 n 01 seal 2 006 @ 03323703 n 0000 + 01354006 v 0101 ~ 02894431 n 0000 ~ 03423719 n 0000 ~ 03949145 n 0000 ~ 04554871 n 0000 | fastener that provides a tight and perfect closure -04159545 06 n 01 seal 3 003 @ 03058107 n 0000 + 01269008 v 0102 ~ 04507689 n 0000 | a finishing coat applied to exclude moisture -04159676 06 n 02 sea_ladder 0 sea_steps 0 003 @ 03632277 n 0000 ;c 00314469 n 0000 ~ 02672646 n 0000 | (nautical) ladder to be lowered over a ship's side for coming aboard -04159850 06 n 01 seal_bomb 0 001 @ 03305522 n 0000 | a small explosive device (resembling a firecracker) that is used underwater in order to frighten mammals away from fishing grounds -04160036 06 n 02 sealing_wax 0 seal 1 003 @ 03323703 n 0000 + 01356582 v 0201 %s 14701143 n 0000 | fastener consisting of a resinous composition that is plastic when warm; used for sealing documents and parcels and letters -04160261 06 n 01 sealskin 0 001 @ 03419014 n 0000 | a garment (as a jacket or coat or robe) made of sealskin -04160372 06 n 01 seam 0 007 @ 03600977 n 0000 + 02254088 a 0101 + 10689564 n 0102 + 01296016 v 0101 ~ 03326475 n 0000 ~ 04367371 n 0000 ~ 04573281 n 0000 | joint consisting of a line formed by joining two pieces -04160586 06 n 02 seaplane 0 hydroplane 0 005 @ 02691156 n 0000 + 01943153 v 0201 + 01943153 v 0102 ~ 03365231 n 0000 ~ 03373611 n 0000 | an airplane that can land on or take off from water; "the designer of marine aircraft demonstrated his newest hydroplane" -04160847 06 n 01 searchlight 0 002 @ 03665366 n 0000 %p 03395859 n 0000 | a light source with reflectors that projects a beam of light in a particular direction -04161010 06 n 01 searing_iron 0 001 @ 02987047 n 0000 | a hot iron used to destroy tissue -04161102 06 n 01 Sears_Tower 0 002 @i 04233124 n 0000 #p 09083390 n 0000 | a skyscraper built in Chicago in 1974; 1454 feet tall -04161233 06 n 02 seascape 0 waterscape 0 001 @ 03876519 n 0000 | a painting of the sea (as distinguished from a landscape) -04161358 06 n 01 seat 0 025 @ 04359589 n 0000 #p 04161981 n 0000 + 02333979 v 0101 + 01543998 v 0101 ~ 02767956 n 0000 ~ 02770830 n 0000 ~ 02826683 n 0000 ~ 02835915 n 0000 ~ 02859557 n 0000 ~ 02910145 n 0000 ~ 02970685 n 0000 ~ 03002096 n 0000 ~ 03061674 n 0000 ~ 03136051 n 0000 ~ 03267468 n 0000 ~ 03399047 n 0000 ~ 03547397 n 0000 ~ 03605417 n 0000 ~ 03937931 n 0000 ~ 03955489 n 0000 ~ 04119091 n 0000 ~ 04119230 n 0000 ~ 04123740 n 0000 ~ 04124573 n 0000 ~ 04239218 n 0000 | any support where you can sit (especially the part of a chair or bench etc. on which you sit); "he dusted off the seat before sitting down" -04161981 06 n 01 seat 1 018 @ 03405725 n 0000 #m 04162998 n 0000 + 02333979 v 0101 + 02334302 v 0101 + 02701962 v 0101 + 01543998 v 0101 ~ 02828884 n 0000 ~ 02829116 n 0000 ~ 02884450 n 0000 ~ 02886183 n 0000 ~ 03001627 n 0000 ~ 03858418 n 0000 %p 04161358 n 0000 ~i 04216302 n 0000 ~ 04256520 n 0000 ~ 04326896 n 0000 ~ 04447861 n 0000 %p 04513827 n 0000 | furniture that is designed for sitting on; "there were not enough seats for all the guests" -04162433 06 n 01 seat 2 003 @ 03050026 n 0000 #p 04489008 n 0000 #p 04231272 n 0000 | the cloth covering for the buttocks; "the seat of his pants was worn through" -04162599 06 n 01 seat 3 001 @ 03892891 n 0000 | a part of a machine that supports or guides another part -04162706 06 n 02 seat_belt 0 seatbelt 0 003 @ 04125853 n 0000 #p 02970685 n 0000 #p 03955489 n 0000 | a safety belt used in a car or plane to hold you in your seat in case of an accident -04162895 06 n 01 seat_cushion 0 001 @ 03151500 n 0000 | a cushion that makes a seat more comfortable -04162998 06 n 04 seating 0 seats 0 seating_room 0 seating_area 0 010 @ 13777764 n 0000 + 02701962 v 0101 ~ 03033019 n 0000 ~ 03853178 n 0000 ~ 03892035 n 0000 ~ 03892273 n 0000 ~ 04093478 n 0000 %m 04161981 n 0000 ~ 04299699 n 0000 ~ 04434285 n 0000 | an area that includes places where several people can sit; "there is seating for 40 students in this classroom" -04163364 06 n 04 seaway 0 sea_lane 0 ship_route 0 trade_route 0 002 @ 03640660 n 0000 ~i 04129872 n 0000 | a lane at sea that is a regularly used route for vessels -04163530 06 n 01 secateurs 0 003 @ 04016684 n 0000 ;r 08860123 n 0000 ;u 06295235 n 0000 | small pruning shears with a spring that holds the handles open and a single blade that closes against a flat surface -04163740 06 n 04 secobarbital_sodium 0 secobarbital 0 Seconal 0 red_devil 0 002 @ 02792049 n 0000 ;u 06845599 n 0301 | barbiturate that is a white odorless slightly bitter powder (trade name Seconal) used as a sodium salt for sedation and to treat convulsions -04164002 06 n 03 secondary_coil 0 secondary_winding 0 secondary 0 002 @ 03065708 n 0000 #p 04471315 n 0000 | coil such that current is induced in it by passing a current through the primary coil -04164199 06 n 04 second_balcony 0 family_circle 0 upper_balcony 0 peanut_gallery 0 002 @ 02735688 n 0000 #p 02777927 n 0000 | rearmost or uppermost area in the balcony containing the least expensive seats -04164406 06 n 01 second_base 0 001 @ 02797881 n 0000 | the base that must be touched second by a base runner in baseball -04164529 06 n 02 second_gear 0 second 0 002 @ 03431243 n 0000 #p 03791235 n 0000 | the gear that has the second lowest forward gear ratio in the gear box of a motor vehicle; "he had to shift down into second to make the hill" -04164757 06 n 01 second_hand 0 002 @ 03482523 n 0000 ~ 04371050 n 0000 | hand marking seconds on a timepiece -04164868 06 n 04 secretary 0 writing_table 0 escritoire 0 secretaire 0 001 @ 03179701 n 0000 | a desk used for writing -04164989 06 n 02 section 0 segment 0 010 @ 03892891 n 0000 #p 00003553 n 0000 + 01563005 v 0201 + 01563005 v 0102 ~ 02829696 n 0000 ~ 03158668 n 0000 ~ 03652226 n 0000 ~ 03656231 n 0000 ~ 04331126 n 0000 ~ 04348548 n 0000 | one of several parts or pieces that fit with others to constitute a whole object; "a section of a fishing rod"; "metal sections were used below ground"; "finished the final segment of the road" -04165409 06 n 01 sectional 0 001 @ 03405725 n 0000 | a piece of furniture made up of sections that can be arranged individually or together -04165551 06 n 01 sector 0 001 @ 03733925 n 0000 | measuring instrument consisting of two graduated arms hinged at one end -04165675 06 n 01 security_blanket 0 001 @ 02849154 n 0000 | a blanket (or toy) that a child carries around in order to reduce anxiety -04165811 06 n 01 security_blanket 1 002 @ 04424418 n 0000 ;u 07075172 n 0000 | anything that an adult person uses to reduce anxiety -04165945 06 n 03 security_system 0 security_measure 0 security 0 001 @ 03269401 n 0000 | an electrical device that sets off an alarm when someone tries to break in -04166111 06 n 01 security_system 1 003 @ 04377057 n 0000 ;c 06128570 n 0000 ~ 03348142 n 0000 | (computing) a system that enforces boundaries between computer networks -04166281 06 n 02 sedan 0 saloon 2 002 @ 02958343 n 0000 ~ 02907194 n 0000 | a car that is closed and that has front and rear seats and two or four doors -04166436 06 n 02 sedan 1 sedan_chair 0 002 @ 03678362 n 0000 ~ 03593034 n 0000 | a closed litter for one passenger -04166553 06 n 04 sedative 0 sedative_drug 0 depressant 0 downer 0 009 @ 03740161 n 0000 @ 03248958 n 0000 + 01239862 v 0401 + 02308214 a 0301 + 01814396 v 0301 + 02308472 a 0103 ~ 03021360 n 0000 ~ 03441778 n 0000 ~ 04166841 n 0000 | a drug that reduces excitability and calms a person -04166841 06 n 02 sedative-hypnotic 0 sedative-hypnotic_drug 0 006 @ 04166553 n 0000 ~ 02792049 n 0000 ~ 03299788 n 0000 ~ 03754822 n 0000 ~ 04417467 n 0000 ~ 04470232 n 0000 | a sedative that depresses activity of the central nervous system and reduces anxiety and induces sleep -04167122 06 n 01 seedbed 0 001 @ 02819474 n 0000 | a bed where seedlings are grown before transplanting -04167228 06 n 01 seeder 0 002 @ 03621049 n 0000 + 00179718 v 0101 | a kitchen utensil that removes seeds from fruit -04167346 06 n 01 seeder 1 002 @ 03736970 n 0000 + 01500873 v 0102 | a mechanical device that sows grass seed or grain evenly over the ground -04167489 06 n 01 seeker 0 001 @ 04008634 n 0000 | a missile equipped with a device that is attracted toward some kind of emission (heat or light or sound or radio waves) -04167661 06 n 01 seersucker 0 001 @ 03309808 n 0000 | a light puckered fabric (usually striped) -04167759 06 n 07 seesaw 0 teeter 0 teeter-totter 0 teetertotter 0 teeterboard 0 tilting_board 0 dandle_board 0 005 @ 03964744 n 0000 #p 03963645 n 0000 + 01881034 v 0102 + 01992251 v 0101 + 01992375 v 0103 | a plaything consisting of a board balanced on a fulcrum; the board is ridden up and down by children at either end -04168084 06 n 01 segmental_arch 0 001 @ 02733524 n 0000 | a shallow arch; an arch that is less than a semicircle -04168199 06 n 03 Segway 0 Segway_Human_Transporter 0 Segway_HT 0 004 @ 03269401 n 0000 ;u 06851742 n 0301 ;u 06851742 n 0201 ;u 06851742 n 0101 | (trademark) a self-balancing personal transportation device with two wheels; can operate in any level pedestrian environment -04168472 06 n 01 seidel 0 001 @ 03438257 n 0000 | a glass for beer -04168541 06 n 01 seine 0 003 @ 03352628 n 0000 + 01140184 v 0101 ~ 04026518 n 0000 | a large fishnet that hangs vertically, with floats at the top and weights at the bottom -04168716 06 n 01 seismogram 0 001 @ 07000195 n 0000 | the graphical record of an earth tremor made by using a seismograph -04168840 06 n 01 seismograph 0 001 @ 03733925 n 0000 | a measuring instrument for detecting and measuring the intensity and direction and duration of movements of the ground (as an earthquake) -04169035 06 n 01 seizing 0 001 @ 04245703 n 0000 | small stuff that is used for lashing two or more ropes together -04169152 06 n 02 selective-serotonin_reuptake_inhibitor 0 SSRI 0 004 @ 02718811 n 0000 ~ 03370927 n 0000 ~ 03891851 n 0000 ~ 04174853 n 0000 | an antidepressant drug that acts by blocking the reuptake of serotonin so that more serotonin is available to act on receptors in the brain -04169437 06 n 02 selector 0 selector_switch 0 003 @ 04372370 n 0000 ~ 03186818 n 0000 %p 04593866 n 0000 | a switch that is used to select among alternatives -04169597 06 n 01 selenium_cell 0 001 @ 03924978 n 0000 | a photoelectric cell that uses a strip of selenium -04169707 06 n 02 self-feeder 0 feeder 0 003 @ 03699975 n 0000 + 01178565 v 0201 + 00189511 v 0201 | a machine that automatically provides a supply of some material; "the feeder discharged feed into a trough for the livestock" -04169935 06 n 01 self-portrait 0 001 @ 03987079 n 0000 | a portrait of yourself created by yourself -04170037 06 n 01 self-propelled_vehicle 0 013 @ 04576211 n 0000 ~ 02740533 n 0000 ~ 02970100 n 0000 ~ 03384352 n 0000 ~ 03684823 n 0000 ~ 03791235 n 0000 ~ 03919096 n 0000 ~ 04062807 n 0000 ~ 04065272 n 0000 ~ 04335435 n 0000 ~ 04464852 n 0000 ~ 04465501 n 0000 ~ 04566561 n 0000 | a wheeled vehicle that carries in itself a means of propulsion -04170384 06 n 01 self-registering_thermometer 0 001 @ 04421872 n 0000 | a thermometer that records the temperature automatically -04170515 06 n 01 self-starter 0 003 @ 04304375 n 0000 #p 03579982 n 0000 %p 03273061 n 0000 | an electric starting motor that automatically starts an internal-combustion engine -04170694 06 n 02 selsyn 0 synchro 0 001 @ 04377057 n 0000 | a system consisting of a generator and a motor so connected that the motor will assume the same relative position as the generator; the generator and the motor are synchronized -04170933 06 n 02 selvage 0 selvedge 0 001 @ 03264542 n 0000 | the edge of a fabric that is woven so that it will not ravel or fray -04171066 06 n 02 selvage 1 selvedge 1 001 @ 02875013 n 0000 | border consisting of an ornamental fringe at either end of an oriental carpet -04171208 06 n 01 semaphore 0 003 @ 02727825 n 0000 + 01040158 v 0101 + 01040278 v 0101 | an apparatus for visual signaling with lights or mechanically moving arms -04171373 06 n 01 semi-abstraction 0 001 @ 03876519 n 0000 | a semiabstract painting -04171459 06 n 01 semiautomatic_firearm 0 003 @ 02759963 n 0000 ~ 03416775 n 0000 ~ 04171629 n 0000 | an autoloader that fires only one shot at each pull of the trigger -04171629 06 n 02 semiautomatic_pistol 0 semiautomatic 0 003 @ 03948459 n 0000 @ 04171459 n 0000 ~ 03695857 n 0000 | a pistol that is a semiautomatic firearm capable of loading and firing continuously -04171831 06 n 03 semiconductor_device 0 semiconductor_unit 0 semiconductor 0 008 @ 03088707 n 0000 ~ 03020034 n 0000 ~ 03202760 n 0000 ~ 03833750 n 0000 ~ 04017993 n 0000 ~ 04420206 n 0000 ~ 04471632 n 0000 %s 14821248 n 0000 | a conductor made with semiconducting material -04172107 06 n 01 semi-detached_house 0 001 @ 03259505 n 0000 | a dwelling that is attached to something on only one side -04172230 06 n 01 semigloss 0 001 @ 03875218 n 0000 | a paint that dries with a finish between glossy and flat -04172342 06 n 02 semitrailer 0 semi 0 002 @ 04467307 n 0000 #p 04467665 n 0000 | a trailer having wheels only in the rear; the front is supported by the towing vehicle -04172512 06 n 01 sennit 0 001 @ 03107046 n 0000 | flat braided cordage that is used on ships -04172607 06 n 01 sensitometer 0 002 @ 03733925 n 0000 @ 03926148 n 0000 | a measuring instrument for measuring the light sensitivity of film over a range of exposures -04172776 06 n 01 sentry_box 0 001 @ 04191943 n 0000 | a small shelter with an open front to protect a sentry from the weather -04172904 06 n 01 separate 0 001 @ 03419014 n 0000 | a garment that can be purchased separately and worn in combinations with other garments -04173046 06 n 01 septic_tank 0 001 @ 04388743 n 0000 | large tank where solid matter or sewage is disintegrated by bacteria -04173172 06 n 02 sequence 0 episode 0 002 @ 03338821 n 0000 #p 06613686 n 0000 | film consisting of a succession of related shots that develop a given subject in a movie -04173344 06 n 01 sequencer 0 003 @ 03493333 n 0000 + 00920125 v 0101 + 00660571 v 0101 | computer hardware that sorts data or programs into a predetermined sequence -04173511 06 n 02 sequencer 1 sequenator 0 003 @ 02727825 n 0000 ;c 06079620 n 0000 + 00920125 v 0101 | (chemistry) an apparatus that can determine the sequence of monomers in a polymer -04173698 06 n 03 sequin 0 spangle 0 diamante 0 004 @ 02681518 n 0000 + 00056660 a 0207 + 01669906 v 0201 + 02163183 v 0201 | adornment consisting of a small piece of shiny material used to decorate clothing -04173907 06 n 02 serape 0 sarape 0 001 @ 04186455 n 0000 | a long brightly colored shawl; worn mainly by Mexican men -04174026 06 n 01 serge 0 001 @ 03309808 n 0000 | a twilled woolen fabric -04174101 06 n 01 serger 0 001 @ 04179913 n 0000 | a sewing machine that overcasts the raw edges of a fabric with a V-shaped stitch -04174234 06 n 01 serial_port 0 001 @ 03578656 n 0000 | an interface (commonly used for modems and mice and some printers) that transmits data a bit at a time -04174394 06 n 01 series_circuit 0 001 @ 03033362 n 0000 | a circuit having its parts connected serially -04174500 06 n 01 serpent 0 001 @ 03110669 n 0000 | an obsolete bass cornet; resembles a snake -04174596 06 n 01 serpent 1 001 @ 03348454 n 0000 | a firework that moves in serpentine manner when ignited -04174705 06 n 01 serration 1 002 @ 03832405 n 0000 ~ 04140976 n 0000 | a single notch in a row of notches; "one of the serrations was broken off" -04174853 06 n 02 sertraline 0 Zoloft 0 002 @ 04169152 n 0000 ;u 06845599 n 0201 | a selective-serotonin reuptake inhibitor commonly prescribed as an antidepressant (trade name Zoloft) -04175039 06 n 01 server 0 002 @ 04516672 n 0000 + 01181295 v 0101 | utensil used in serving food or drink -04175147 06 n 02 server 1 host 0 003 @ 03082979 n 0000 #p 03085333 n 0000 ;c 06128570 n 0000 | (computer science) a computer that provides client stations with access to files and printers as shared resources to a computer network -04175380 06 n 02 service 0 table_service 0 003 @ 04381994 n 0000 ~ 03202246 n 0000 ~ 03953743 n 0000 | tableware consisting of a complete set of articles (silver or dishware) for use at table -04175574 06 n 01 service_club 0 001 @ 02993546 n 0000 | a recreational center for servicemen -04175669 06 n 03 service_door 0 service_entrance 0 servant's_entrance 0 001 @ 03290771 n 0000 | an entrance intended for the use of servants or for delivery of goods and removal of refuse -04175859 06 n 01 service_station 0 003 @ 04306080 n 0000 ~ 03425092 n 0000 ~ 04490730 n 0000 | a station where gasoline and oil are sold and facilities are available for repairing or maintaining automobiles -04176068 06 n 01 serving_cart 0 003 @ 03484083 n 0000 ~ 03897634 n 0000 ~ 04397027 n 0000 | a handcart for serving food -04176190 06 n 01 serving_dish 0 002 @ 03206908 n 0000 ~ 04499062 n 0000 | a dish used for serving food -04176295 06 n 03 servo 0 servomechanism 0 servosystem 0 002 @ 03098806 n 0000 + 03137260 a 0102 | control system that converts a small mechanical motion into one requiring much greater power; may include a negative feedback system -04176528 06 n 01 set 1 004 @ 03278248 n 0000 #p 03077958 n 0000 ~ 04060647 n 0000 ~ 04472726 n 0000 | any electronic equipment that receives or transmits radio or tv signals; "the early sets ran on storage batteries" -04176747 06 n 03 set-back 0 setoff 0 offset 0 002 @ 04341686 n 0000 + 01747085 v 0301 | structure where a wall or building narrows abruptly -04176889 06 n 01 set_decoration 0 002 @ 03169390 n 0000 #p 04297476 n 0000 | a decoration used as part of the set of a theatrical or movie production -04177041 06 n 02 set_gun 0 spring_gun 0 001 @ 03467984 n 0000 | a gun that is set to fire on any intruder that comes in contact with the wire that sets it off -04177202 06 n 01 set_piece 0 001 @ 04145056 n 0000 | a piece of scenery intended to stand alone as part of the stage setting -04177329 06 n 01 setscrew 0 001 @ 04153751 n 0000 | a screw (often without a head) that fits into the boss or hub of a wheel or cam etc. and prevents motion of the part relative to the shaft on which it is mounted -04177545 06 n 01 setscrew 1 001 @ 04153751 n 0000 | a screw that is used to adjust the tension on a spring -04177654 06 n 01 set_square 0 001 @ 04493109 n 0000 | a try square with an adjustable sliding head -04177755 06 n 01 settee 0 001 @ 04256520 n 0000 | a small sofa -04177820 06 n 02 settle 0 settee 1 002 @ 02828884 n 0000 + 01987058 v 0101 | a long wooden bench with a back -04177931 06 n 01 settlement_house 0 001 @ 02993546 n 0000 | a center in an underprivileged area that provides community services -04178062 06 n 02 seven-spot 0 seven 0 001 @ 04286307 n 0000 | one of four playing cards in a deck with seven pips on the face -04178190 06 n 02 seventy-eight 0 78 0 001 @ 03924069 n 0000 | a shellac based phonograph record that played at 78 revolutions per minute -04178329 06 n 02 Seven_Wonders_of_the_Ancient_World 0 Seven_Wonders_of_the_World 0 009 @ 03743902 n 0000 ;u 06295235 n 0000 %m 02744077 n 0000 %m 03073016 n 0000 %m 03491491 n 0000 %m 03732252 n 0000 %m 03846431 n 0000 %m 04029125 n 0000 %m 04461148 n 0000 | impressive monuments created in the ancient world that were regarded with awe -04178668 06 n 02 sewage_disposal_plant 0 disposal_plant 0 001 @ 03956922 n 0000 | a plant for disposing of sewage -04178784 06 n 01 sewage_farm 0 001 @ 03322099 n 0000 | a farm that is irrigated and fertilized with raw sewage -04178897 06 n 03 sewage_system 0 sewer_system 0 sewage_works 0 004 @ 03315023 n 0000 #p 03569964 n 0000 %p 04179126 n 0000 %p 04179271 n 0000 | facility consisting of a system of sewers for carrying off liquid and solid sewage -04179126 06 n 03 sewer 0 sewerage 0 cloaca 0 002 @ 03231912 n 0000 #p 04178897 n 0000 | a waste pipe that carries away sewage or surface water -04179271 06 n 02 sewer_main 0 sewer_line 0 002 @ 03711145 n 0000 #p 04178897 n 0000 | a main in a sewage system -04179385 06 n 02 sewing 0 stitchery 0 010 @ 03816849 n 0000 + 01329239 v 0204 + 01666327 v 0101 ~ 02730437 n 0000 ~ 02840927 n 0000 ~ 03428805 n 0000 ~ 03745285 n 0000 ~ 03898500 n 0000 ~ 04321238 n 0000 -c 01331027 v 0000 | needlework on which you are working with needle and thread; "she put her sewing back in the basket" -04179712 06 n 01 sewing_basket 0 001 @ 04600312 n 0000 | a workbasket in which sewing materials can be stored -04179824 06 n 01 sewing_kit 0 001 @ 03619396 n 0000 | a kit of articles used in sewing -04179913 06 n 01 sewing_machine 0 003 @ 03528263 n 0000 @ 04417180 n 0000 ~ 04174101 n 0000 | a textile machine used as a home appliance for sewing -04180063 06 n 01 sewing_needle 0 004 @ 03816136 n 0000 ~ 03162556 n 0000 ~ 04184957 n 0000 ~ 04514095 n 0000 | a needle used in sewing to pull thread through cloth -04180229 06 n 01 sewing_room 0 001 @ 04105893 n 0000 | a room set aside for sewing -04180314 06 n 02 sewing_stitch 0 embroidery_stitch 0 024 @ 04321238 n 0000 ~ 02771383 n 0000 ~ 02792822 n 0000 ~ 02805111 n 0000 ~ 02849565 n 0000 ~ 02929059 n 0000 ~ 03000808 n 0000 ~ 03137863 n 0000 ~ 03317510 n 0000 ~ 03395095 n 0000 ~ 03462315 n 0000 ~ 03514340 n 0000 ~ 03514693 n 0000 ~ 03702067 n 0000 ~ 03864254 n 0000 ~ 03920181 n 0000 ~ 03930946 n 0000 ~ 04034477 n 0000 ~ 04120593 n 0000 ~ 04124887 n 0000 ~ 04138560 n 0000 ~ 04241782 n 0000 ~ 04385272 n 0000 ~ 04578559 n 0000 | a stitch made with thread and a threaded sewing needle through fabric or leather -04180888 06 n 01 sextant 0 003 @ 03733925 n 0000 ~ 02751215 n 0000 %p 03668906 n 0000 | a measuring instrument for measuring the angular distance between celestial objects; resembles an octant -04181083 06 n 01 sgraffito 0 001 @ 03169390 n 0000 | a ceramic or mural decoration made by scratching off a surface layer to reveal the ground -04181228 06 n 04 shackle 0 bond 0 hamper 1 trammel 0 009 @ 04081844 n 0000 + 00233335 v 0403 + 01085474 v 0303 + 00236289 v 0301 + 01288052 v 0102 ~ 02779609 n 0000 ~ 03330947 n 0000 ~ 03484576 n 0000 ~ 03585438 n 0000 | a restraint that confines or restricts freedom (especially something used to tie down or restrain a prisoner) -04181561 06 n 01 shackle 1 002 @ 02788689 n 0000 #p 03874599 n 0000 | a U-shaped bar; the open end can be passed through chain links and closed with a bar -04181718 06 n 01 shade 0 005 @ 04014297 n 0000 + 01477704 v 0101 ~ 03637318 n 0000 ~ 03889871 n 0000 ~ 04357795 n 0000 | protective covering that protects something from direct sunlight; "they used umbrellas as shades"; "as the sun moved he readjusted the shade" -04181983 06 n 01 shade 1 002 @ 04076846 n 0000 + 01695567 v 0101 | a representation of the effect of shadows in a picture or drawing (as by shading or darker pigment) -04182152 06 n 01 shadow_box 0 001 @ 02883344 n 0000 | a shallow rectangular box with a transparent front used to protect and display small items (jewelry, coins, etc.) -04182322 06 n 01 shaft 0 003 @ 04100174 n 0000 ~ 02764779 n 0000 ~ 04423687 n 0000 | a long rod or pole (especially the handle of an implement or the body of a weapon like a spear or arrow) -04182514 06 n 01 shaft 2 005 @ 03895293 n 0000 #p 03768346 n 0000 #p 04497962 n 0000 ~ 02692787 n 0000 ~ 03229420 n 0000 | a long vertical passage sunk into the earth, as for a mine or tunnel -04182708 06 n 02 shaft 3 scape 0 004 @ 04515129 n 0000 #p 03073977 n 0000 ;c 06123363 n 0000 + 02362601 v 0101 | (architecture) upright consisting of the vertical part of a column -04182890 06 n 01 shaft 4 005 @ 03895585 n 0000 #p 02913152 n 0000 ~ 03281673 n 0000 ~ 04526800 n 0000 ~ 04572800 n 0000 | a vertical passageway through a building (as for an elevator) -04183076 06 n 01 shag 0 003 @ 03309808 n 0000 #p 04183217 n 0000 + 02242887 a 0102 | a fabric with long coarse nap; "he bought a shag rug" -04183217 06 n 01 shag_rug 0 003 @ 04118021 n 0000 ~ 04121426 n 0000 %p 04183076 n 0000 | a rug with long pile -04183329 06 n 01 shaker 0 006 @ 03094503 n 0000 + 01889610 v 0101 ~ 02980203 n 0000 ~ 03062245 n 0000 ~ 03914438 n 0000 ~ 04131690 n 0000 | a container in which something can be shaken -04183516 06 n 01 shampoo 0 002 @ 03040587 n 0000 + 00042017 v 0101 | cleansing agent consisting of soaps or detergents used for washing the hair -04183663 06 n 02 shank 0 waist 0 002 @ 03892891 n 0000 #p 04258982 n 0000 | the narrow part of the shoe connecting the heel and the wide part of the sole -04183819 06 n 01 shank 1 002 @ 13899804 n 0000 #p 02844307 n 0000 | cylinder forming the part of a bit by which it is held in the drill -04183957 06 n 01 shank 2 002 @ 13899804 n 0000 #p 02865665 n 0000 | cylinder forming the part of a bolt between the thread and the head -04184095 06 n 02 shank 3 stem 2 007 @ 13899804 n 0000 #p 02709367 n 0000 #p 03613294 n 0000 #p 03485997 n 0000 #p 03804744 n 0000 #p 03940256 n 0000 #p 04592099 n 0000 | cylinder forming a long narrow part of something -04184316 06 n 01 shantung 0 001 @ 03309808 n 0000 | a heavy silk fabric with a rough surface (or a cotton imitation) -04184435 06 n 02 shaper 0 shaping_machine 0 004 @ 03702248 n 0000 + 00142191 v 0101 ~ 03646296 n 0000 ~ 03766044 n 0000 | a machine tool for shaping metal or wood -04184600 06 n 01 shaping_tool 0 002 @ 04451818 n 0000 ~ 03192790 n 0000 | a tool for shaping metal -04184701 06 n 03 shard 0 sherd 0 fragment 0 005 @ 03932203 n 0000 + 00517314 a 0302 + 00517314 a 0301 + 00338071 v 0302 ~ 03992436 n 0000 | a broken piece of a brittle artifact -04184880 06 n 01 sharkskin 0 001 @ 03309808 n 0000 | a smooth crisp fabric -04184957 06 n 01 sharp 0 002 @ 04180063 n 0000 + 01810189 a 0103 | a long thin sewing needle with a sharp point -04185071 06 n 01 sharpener 0 007 @ 03563967 n 0000 + 01246601 v 0101 ~ 03460297 n 0000 ~ 03908714 n 0000 ~ 04310904 n 0000 ~ 04337650 n 0000 ~ 04341288 n 0000 | any implement that is used to make something (an edge or a point) sharper; "a knife sharpener" -04185329 06 n 01 sharpie 0 001 @ 04128499 n 0000 | a shallow-draft sailboat with a sharp prow, flat bottom, and triangular sail; formerly used along the northern Atlantic coast of the United States -04185529 06 n 01 Sharpie 1 002 @ 03906997 n 0000 @ 06851742 n 0000 | a pen with indelible ink that will write on any surface -04185656 06 n 01 sharpshooter 0 001 @ 04147183 n 0000 | a fast schooner once used by New England fisherman for illegal fishing in Canadian waters -04185804 06 n 03 shaver 0 electric_shaver 0 electric_razor 0 002 @ 04057047 n 0000 + 00037298 v 0101 | a razor powered by an electric motor -04185946 06 n 01 shaving_brush 0 001 @ 02908217 n 0000 | a brush used to apply lather prior to shaving -04186051 06 n 02 shaving_cream 0 shaving_soap 0 002 @ 04447443 n 0000 @ 09439213 n 0000 | toiletry consisting of a preparation of soap and fatty acids that forms a rich lather for softening the beard before shaving -04186268 06 n 01 shaving_foam 0 002 @ 04447443 n 0000 @ 09282724 n 0000 | toiletry consisting of a liquid preparation containing many small bubbles that soften the beard before shaving -04186455 06 n 01 shawl 0 003 @ 03045337 n 0000 ~ 03998333 n 0000 ~ 04173907 n 0000 | cloak consisting of an oblong piece of cloth used to cover the head and shoulders -04186624 06 n 01 shawm 0 002 @ 03838899 n 0000 ~ 02867267 n 0000 | a medieval oboe -04186709 06 n 01 shear 0 002 @ 03265032 n 0000 + 01320816 v 0101 | a large edge tool that cuts sheet metal by passing a blade through it -04186848 06 n 01 shears 0 008 @ 04148054 n 0000 ;u 06295235 n 0000 + 01560369 v 0102 + 01320513 v 0101 ~ 03045074 n 0000 ~ 04016684 n 0000 ~ 04250473 n 0000 ~ 04424692 n 0000 | large scissors with strong blades -04187061 06 n 01 sheath 0 005 @ 04014297 n 0000 ~ 02684649 n 0000 ~ 03342432 n 0000 ~ 03527444 n 0000 ~ 04141327 n 0000 | a protective covering (as for a knife or sword) -04187233 06 n 03 sheathing 0 overlay 0 overlayer 0 004 @ 04014297 n 0000 + 01336635 v 0301 + 01336635 v 0201 + 01581635 v 0101 | protective covering consisting, for example, of a layer of boards applied to the studs and joists of a building to strengthen it and serve as a foundation for a weatherproof exterior -04187547 06 n 01 shed 0 006 @ 03859280 n 0000 ~ 02727426 n 0000 ~ 02859443 n 0000 ~ 03056288 n 0000 ~ 04452757 n 0000 ~ 04598318 n 0000 | an outbuilding with a single story; used for shelter or storage -04187751 06 n 01 sheep_bell 0 001 @ 02824448 n 0000 | a bell hung round the neck of a sheep so that the sheep can be easily located -04187885 06 n 01 sheepshank 0 001 @ 03627232 n 0000 | a knot for shortening a line -04187970 06 n 02 sheepskin_coat 0 afghan 1 001 @ 03057021 n 0000 | a coat made of sheepskin -04188064 06 n 02 sheepwalk 0 sheeprun 0 002 @ 03322099 n 0000 ;r 08860123 n 0000 | farm devoted to raising sheep -04188179 06 n 02 sheet 0 bed_sheet 0 003 @ 02821030 n 0000 + 01338501 v 0101 ~ 03353467 n 0000 | bed linen consisting of a large rectangular piece of cotton or linen cloth; used in pairs -04188368 06 n 05 sheet 2 tack 2 mainsheet 0 weather_sheet 0 shroud 1 005 @ 03670849 n 0000 #p 04194289 n 0000 ;c 00314469 n 0000 + 01946408 v 0201 ~ 03408621 n 0000 | (nautical) a line (rope or chain) that regulates the angle at which a sail is set in relation to the wind -04188643 06 n 02 sheet 3 flat_solid 0 013 @ 00021939 n 0000 ~ 02846511 n 0000 ~ 02849051 n 0000 ~ 02856463 n 0000 ~ 03339296 n 0000 ~ 03635668 n 0000 ~ 03743761 n 0000 ~ 03882058 n 0000 ~ 03959936 n 0000 ~ 03960783 n 0000 ~ 03961070 n 0000 ~ 04189482 n 0000 ~ 04314216 n 0000 | a flat artifact that is thin relative to its length and width -04188985 06 n 02 sheet_anchor 0 waist_anchor 0 001 @ 02709367 n 0000 | spare anchor for use in emergency -04189092 06 n 04 sheet_bend 0 becket_bend 0 weaver's_knot 0 weaver's_hitch 0 001 @ 03522634 n 0000 | a hitch used for temporarily tying a rope to the middle of another rope (or to an eye) -04189282 06 n 01 sheeting 0 002 @ 03309808 n 0000 + 01338501 v 0101 | fabric from which bed sheets are made -04189392 06 n 01 sheet_iron 0 001 @ 03961250 n 0000 | plate iron thinner than tank iron -04189482 06 n 01 sheet_metal 0 005 @ 04188643 n 0000 ~ 03112431 n 0000 ~ 03359008 n 0000 ~ 03375694 n 0000 ~ 04439840 n 0000 | sheet of metal formed into a thin plate -04189651 06 n 03 sheet_pile 0 sheath_pile 0 sheet_piling 0 001 @ 03936269 n 0000 | a pile in a row of piles driven side by side to retain earth or prevent seepage -04189816 06 n 01 Sheetrock 0 002 @ 03957762 n 0000 ;u 06851742 n 0000 | a kind of plasterboard -04189913 06 n 01 sheet_web 0 001 @ 04275363 n 0000 | an irregular spider web woven in a single plane and looking like flattened hammocks -04190052 06 n 01 shelf 0 012 @ 04359589 n 0000 #p 02870880 n 0000 #p 02912065 n 0000 #p 02933112 n 0000 #p 03049457 n 0000 #p 03015254 n 0000 #p 03298716 n 0000 #p 03461385 n 0000 ~ 02871439 n 0000 ~ 03523288 n 0000 ~ 03719343 n 0000 ~ 03865288 n 0000 | a support that consists of a horizontal surface for holding objects -04190376 06 n 01 shelf_bracket 0 001 @ 02888569 n 0000 | a bracket to support a shelf -04190464 06 n 01 shell 0 007 @ 02703275 n 0000 + 01135922 v 0102 ~ 02746595 n 0000 ~ 04206570 n 0000 ~ 04210012 n 0000 ~ 04390483 n 0000 ~ 04581425 n 0000 | ammunition consisting of a cylindrical metal casing containing an explosive charge and a projectile; fired from a large gun -04190747 06 n 03 shell 2 case 6 casing 1 007 @ 03546766 n 0000 #p 03452594 n 0000 + 01486312 v 0303 + 01486312 v 0203 ~ 02873520 n 0000 ~ 03431570 n 0000 ~ 03590475 n 0000 | the housing or outer covering of something; "the clock has a walnut case" -04190997 06 n 02 shell 3 racing_shell 0 004 @ 04037964 n 0000 ~ 04038338 n 0000 ~ 04156720 n 0000 %p 04239218 n 0000 | a very light narrow racing boat -04191150 06 n 02 shellac 1 shellac_varnish 0 004 @ 04521987 n 0000 + 01270589 v 0101 ~ 03395256 n 0000 %s 14701143 n 0000 | a thin varnish made by dissolving lac in ethanol; used to finish wood -04191346 06 n 01 shell_plating 0 001 @ 03959701 n 0000 | the plates covering the frame of a steel ship and corresponding to the planking of a wooden ship -04191502 06 n 01 shell_stitch 0 002 @ 03133177 n 0000 + 01673007 v 0101 | a crochet stitch -04191595 06 n 01 shelter 0 014 @ 04341686 n 0000 + 02656390 v 0101 ~ 03101375 n 0000 ~ 03254189 n 0000 ~ 03319167 n 0000 ~ 03499796 n 0000 ~ 03547054 n 0000 ~ 03550153 n 0000 ~ 03686363 n 0000 ~ 03719650 n 0000 ~ 04071102 n 0000 ~ 04148936 n 0000 ~ 04329681 n 0000 ~ 04411264 n 0000 | a structure that provides privacy and protection from danger -04191943 06 n 01 shelter 1 011 @ 04014297 n 0000 + 02656390 v 0101 ~ 02825657 n 0000 ~ 02843684 n 0000 ~ 02951843 n 0000 ~ 03114634 n 0000 ~ 03610524 n 0000 ~ 03652729 n 0000 ~ 04107984 n 0000 ~ 04148936 n 0000 ~ 04172776 n 0000 | protective covering that provides protection from the weather -04192238 06 n 01 shelter 2 002 @ 03546340 n 0000 ~ 02945813 n 0000 | temporary housing for homeless or displaced persons -04192361 06 n 01 sheltered_workshop 0 001 @ 04603081 n 0000 | a workshop that offers jobs to members of the physically or developmentally disabled population -04192521 06 n 01 Sheraton 0 001 @ 03405725 n 0000 | a furniture style that originated in England around 1800; simple in design with straight lines and classical ornamentation -04192698 06 n 02 shield 1 buckler 0 004 @ 02739668 n 0000 + 01130169 v 0101 ~ 03296478 n 0000 ~ 03901338 n 0000 | armor carried on the arm to intercept blows -04192858 06 n 01 shield 2 006 @ 04014297 n 0000 + 01130169 v 0101 ~ 03825913 n 0000 ~ 03959701 n 0000 ~ 04193035 n 0000 ~ 04193179 n 0000 | a protective covering or structure -04193035 06 n 01 shielding 0 001 @ 04192858 n 0000 | a shield of lead or concrete intended as a barrier to radiation emitted in nuclear decay -04193179 06 n 01 shielding 1 001 @ 04192858 n 0000 | shield consisting of an arrangement of metal mesh or plates designed to protect electronic equipment from ambient electromagnetic interference -04193377 06 n 02 shift_key 0 shift 2 002 @ 03613592 n 0000 #p 04505470 n 0000 | the key on the typewriter keyboard that shifts from lower-case letters to upper-case letters -04193552 06 n 01 shift_register 0 002 @ 04071876 n 0000 ;c 06128570 n 0000 | (computer science) register in which all bits can be shifted one or more positions to the left or to the right -04193742 06 n 02 shillelagh 0 shillalah 0 002 @ 03145384 n 0000 ;r 08859173 n 0000 | a cudgel made of hardwood (usually oak or blackthorn) -04193883 06 n 01 shim 0 001 @ 04569520 n 0000 | a thin wedge of material (wood or metal or stone) for driving into crevices -04194009 06 n 01 shingle 1 001 @ 04217882 n 0000 | a small signboard outside the office of a lawyer or doctor, e.g. -04194127 06 n 02 shin_guard 0 shinpad 0 001 @ 04015204 n 0000 | a stiff protective garment worn by hockey players or a catcher in baseball to protect the shins -04194289 06 n 01 ship 0 092 @ 04530566 n 0000 #m 08293336 n 0000 + 01496978 v 0101 + 01847582 v 0101 + 01979462 v 0102 + 02409838 v 0101 -c 00316572 a 0000 -c 00316827 a 0000 -c 00537884 a 0000 -c 00275201 r 0000 -c 00337210 n 0000 ~ 02666501 n 0000 -c 02762725 n 0000 -c 02762909 n 0000 %p 02812785 n 0000 -c 02824152 n 0000 %p 02838345 n 0000 %p 02838577 n 0000 ~ 02853336 n 0000 -c 02864593 n 0000 ~i 02878883 n 0000 -c 02901259 n 0000 %p 02915675 n 0000 %p 02918330 n 0000 %p 02964634 n 0000 ~ 02965300 n 0000 %p 03139998 n 0000 %p 03164929 n 0000 %p 03167666 n 0000 -c 03288500 n 0000 %p 03340581 n 0000 ~ 03356038 n 0000 %p 03382104 n 0000 %p 03403431 n 0000 -c 03403431 n 0000 %p 03412220 n 0000 ~ 03426871 n 0000 %p 03473465 n 0000 %p 03512911 n 0000 ~ 03541269 n 0000 ~ 03548533 n 0000 ~ 03556992 n 0000 ~ 03668488 n 0000 %p 03686658 n 0000 %p 03694949 n 0000 -c 03707171 n 0000 ~i 03732992 n 0000 ~ 03768823 n 0000 ~ 03769100 n 0000 ~ 03833907 n 0000 ~ 03896103 n 0000 ~ 03947888 n 0000 -c 03956623 n 0000 -c 03984908 n 0000 %p 03986562 n 0000 %p 04055861 n 0000 %p 04089376 n 0000 %p 04089522 n 0000 ~ 04146862 n 0000 %p 04154152 n 0000 %p 04158457 n 0000 %p 04188368 n 0000 ~ 04197110 n 0000 -c 04213105 n 0000 ~ 04224543 n 0000 %p 04226537 n 0000 ~ 04235165 n 0000 ~ 04245412 n 0000 %p 04267577 n 0000 ~ 04309348 n 0000 %p 04316646 n 0000 %p 04358874 n 0000 ~ 04409011 n 0000 ~ 04427473 n 0000 %p 04454540 n 0000 %p 04455835 n 0000 ~ 04474187 n 0000 ~ 04477725 n 0000 ~ 04487894 n 0000 ~ 04552696 n 0000 ~ 04574471 n 0000 %p 04585745 n 0000 ~ 04606251 n 0000 -c 05136546 n 0000 -c 06503884 n 0000 -c 07356489 n 0000 -c 07364573 n 0000 -c 08644045 n 0000 -c 10311506 n 0000 -c 13469674 n 0000 -c 13507210 n 0000 -c 00297193 v 0000 | a vessel that carries passengers or freight -04196080 06 n 01 shipboard_system 0 008 @ 03811847 n 0000 @ 04377057 n 0000 ~ 02724722 n 0000 ~ 02800940 n 0000 ~ 03812789 n 0000 ~ 04196925 n 0000 ~ 04363412 n 0000 ~ 04394421 n 0000 | a system designed to work as a coherent entity on board a naval ship -04196337 06 n 02 ship_canal 0 shipway 1 004 @ 02947212 n 0000 ~i 03448814 n 0000 ~i 03881034 n 0000 ~i 08900377 n 0000 | a canal large enough for seagoing vessels -04196502 06 n 04 shipping 0 cargo_ships 0 merchant_marine 0 merchant_vessels 0 001 @ 03100490 n 0000 | conveyance provided by the ships belonging to one country or industry -04196677 06 n 01 shipping_office 0 001 @ 03841666 n 0000 | the office of a shipping agent; an office where seamen are hired -04196803 06 n 01 shipping_room 0 002 @ 04105893 n 0000 ;c 08061042 n 0000 | a room where goods are packaged and shipped -04196925 06 n 01 ship-towed_long-range_acoustic_detection_system 0 001 @ 04196080 n 0000 | a shipboard system consisting of an acoustic detection system that is towed behind the ship -04197110 06 n 01 shipwreck 0 003 @ 04194289 n 0000 + 02111625 v 0101 + 01566038 v 0101 | a wrecked ship (or a part of one) -04197235 06 n 01 shipyard 0 004 @ 04602044 n 0000 %p 03251533 n 0000 ~ 03813704 n 0000 %p 04565039 n 0000 | a workplace where ships are built or repaired -04197391 06 n 01 shirt 0 017 @ 03419014 n 0000 + 00049007 v 0101 ~ 02943964 n 0000 ~ 03163381 n 0000 %p 03191561 n 0000 ~ 03238879 n 0000 ~ 03476542 n 0000 ~ 03595614 n 0000 ~ 03629231 n 0000 ~ 03978966 n 0000 %p 04197781 n 0000 %p 04198015 n 0000 %s 04198233 n 0000 %p 04198355 n 0000 %p 04198453 n 0000 ~ 04390577 n 0000 ~ 04602956 n 0000 | a garment worn on the upper half of the body -04197781 06 n 01 shirt_button 0 002 @ 02928608 n 0000 #p 04197391 n 0000 | a button on a shirt -04197878 06 n 01 shirtdress 0 001 @ 03236735 n 0000 | a dress that is tailored like a shirt and has buttons all the way down the front -04198015 06 n 01 shirtfront 1 004 @ 03398467 n 0000 #p 04197391 n 0000 ~ 03959123 n 0000 ~ 03959227 n 0000 | the front of a shirt (usually the part not covered by a jacket); "he had spilled catsup on his shirtfront" -04198233 06 n 01 shirting 0 002 @ 03309808 n 0000 #s 04197391 n 0000 | any of various fabrics used to make men's shirts -04198355 06 n 01 shirtsleeve 0 002 @ 04236377 n 0000 #p 04197391 n 0000 | the sleeve of a shirt -04198453 06 n 01 shirttail 0 002 @ 03309808 n 0000 #p 04197391 n 0000 | fabric forming the tail of a shirt -04198562 06 n 02 shirtwaist 0 shirtwaister 0 001 @ 02854926 n 0000 | a blouse with buttons down the front; "in Britain they call a shirtwaist a shirtwaister" -04198722 06 n 01 shiv 0 001 @ 03624134 n 0000 | a knife used as a weapon -04198797 06 n 03 shock_absorber 0 shock 0 cushion 1 004 @ 03161450 n 0000 #p 04366116 n 0000 + 01576917 v 0301 ~ 02687682 n 0000 | a mechanical damper; absorbs energy of sudden impulses; "the old car needed a new set of shocks" -04199027 06 n 01 shoe 0 044 @ 03380867 n 0000 + 00049770 v 0101 ~ 02713364 n 0000 ~ 02767147 n 0000 ~ 02783708 n 0000 ~ 02855701 n 0000 ~ 02882894 n 0000 ~ 02904927 n 0000 ~ 02938218 n 0000 ~ 03025250 n 0000 ~ 03027625 n 0000 ~ 03041449 n 0000 %p 03068707 n 0000 ~ 03090710 n 0000 %p 03116942 n 0000 ~ 03364156 n 0000 ~ 03411079 n 0000 ~ 03436290 n 0000 ~ 03472535 n 0000 %p 03511426 n 0000 %p 03573848 n 0000 %p 03574243 n 0000 %p 03631445 n 0000 ~ 03680355 n 0000 ~ 03776877 n 0000 %p 03862190 n 0000 ~ 03868406 n 0000 ~ 04022332 n 0000 ~ 04120489 n 0000 ~ 04122578 n 0000 %p 04123980 n 0000 ~ 04133789 n 0000 %p 04200637 n 0000 ~ 04239786 n 0000 %p 04275661 n 0000 %p 04428920 n 0000 %p 04444522 n 0000 %p 04444749 n 0000 %p 04450994 n 0000 %p 04514359 n 0000 ~ 04545748 n 0000 ~ 04546081 n 0000 ~ 04570118 n 0000 ~ 04593524 n 0000 | footwear shaped to fit the foot (below the ankle) with a flexible upper of leather or plastic and a sole and heel of heavier material -04200000 06 n 01 shoe 3 002 @ 02974697 n 0000 ;c 00488225 n 0000 | (card games) a case from which playing cards are dealt one at a time -04200138 06 n 01 shoe_bomb 0 001 @ 03305522 n 0000 | an explosive device concealed inside the heel and sole of a shoe -04200258 06 n 01 shoebox 0 001 @ 02883344 n 0000 | an oblong rectangular (usually cardboard) box designed to hold a pair of shoes -04200390 06 n 01 shoebox 1 001 @ 04341686 n 0000 | a structure resembling a shoebox (as a rectangular building or a cramped room or compartment) -04200537 06 n 01 shoehorn 0 001 @ 03183080 n 0000 | a device used for easing the foot into a shoe -04200637 06 n 04 shoelace 0 shoe_lace 0 shoestring 0 shoe_string 0 003 @ 03631445 n 0000 #p 04199027 n 0000 %p 02684649 n 0000 | a lace used for fastening shoes -04200800 06 n 03 shoe_shop 0 shoe-shop 0 shoe_store 0 001 @ 04202417 n 0000 | a shop where shoes are sold -04200908 06 n 01 shoetree 0 001 @ 03183080 n 0000 | a wooden or metal device that is inserted into a shoe to preserve its shape when it is not being worn -04201064 06 n 02 shofar 0 shophar 0 001 @ 03536761 n 0000 | an ancient musical horn made from the horn of a ram; used in ancient times by the Israelites to sound a warning or a summons; used in synagogues today on solemn occasions -04201297 06 n 01 shoji 0 002 @ 04151940 n 0000 ;r 08921850 n 0000 | a translucent screen made of a wooden frame covered with rice paper -04201435 06 n 01 shoofly 0 001 @ 04099969 n 0000 | a child's rocking chair with the seat built between two flat sides that are shaped to resemble an animal (such as a swan or duck) -04201618 06 n 01 shook 0 001 @ 02795169 n 0000 | a disassembled barrel; the parts packed for storage or shipment -04201733 06 n 01 shooting_brake 0 002 @ 02814533 n 0000 ;r 08860123 n 0000 | another name for a station wagon -04201845 06 n 02 shooting_gallery 0 shooting_range 0 001 @ 03349150 n 0000 | an enclosed firing range with targets for rifle or handgun practice -04201992 06 n 01 shooting_gallery 1 002 @ 02913152 n 0000 ;u 07075172 n 0000 | a building (usually abandoned) where drug addicts buy and use heroin -04202142 06 n 02 shooting_lodge 0 shooting_box 0 001 @ 03118969 n 0000 | a small country house used by hunters during the shooting season -04202282 06 n 01 shooting_stick 0 001 @ 03183080 n 0000 | device that resembles a spiked walking stick but the top opens into a seat -04202417 06 n 02 shop 0 store 0 044 @ 03748162 n 0000 + 02466134 v 0103 + 02326355 v 0101 + 02325968 v 0101 ~ 02776631 n 0000 ~ 02791270 n 0000 ~ 02813544 n 0000 ~ 02833140 n 0000 ~ 02861286 n 0000 ~ 02871525 n 0000 ~ 02874086 n 0000 ~ 02879309 n 0000 ~ 02915199 n 0000 ~ 02927161 n 0000 ~ 02952798 n 0000 ~ 03001115 n 0000 ~ 03039827 n 0000 ~ 03052464 n 0000 ~ 03076411 n 0000 ~ 03085781 n 0000 ~ 03089624 n 0000 ~ 03099274 n 0000 ~ 03173387 n 0000 ~ 03249342 n 0000 ~ 03367410 n 0000 ~ 03436417 n 0000 ~ 03493911 n 0000 ~ 03505764 n 0000 ~ 03606251 n 0000 ~ 03766508 n 0000 ~ 03860234 n 0000 ~ 03871371 n 0000 ~ 03901974 n 0000 ~ 03916385 n 0000 ~ 03920641 n 0000 ~ 03952576 n 0000 ~ 04075916 n 0000 ~ 04131208 n 0000 ~ 04200800 n 0000 %p 04203705 n 0000 ~ 04271531 n 0000 ~ 04428634 n 0000 ~ 04443257 n 0000 ~ 04462240 n 0000 | a mercantile establishment for the retail sale of goods or services; "he bought it at a shop on Cape Cod" -04203356 06 n 01 shop_bell 0 001 @ 02824448 n 0000 | a bell attached to the door of a small shop; warns the proprietor that a customer has entered the shop -04203514 06 n 01 shop_floor 0 002 @ 04602044 n 0000 #p 03316406 n 0000 | workplace consisting of the part of a factory housing the machines; "the productive work is done on the shop floor" -04203705 06 n 02 shopfront 0 storefront 0 003 @ 03398467 n 0000 #p 04202417 n 0000 %p 03211789 n 0000 | the front side of a store facing the street; usually contains display windows -04203889 06 n 01 shopping 0 001 @ 03076708 n 0000 | the commodities purchased from stores; "she loaded her shopping into the car"women carrying home shopping didn't give me a second glance" -04204081 06 n 01 shopping_bag 0 001 @ 02773037 n 0000 | a bag made of plastic or strong paper (often with handles); used to transport goods after shopping -04204238 06 n 01 shopping_basket 0 001 @ 02801938 n 0000 | a handbasket used to carry goods while shopping -04204347 06 n 01 shopping_cart 0 001 @ 03484083 n 0000 | a handcart that holds groceries or other goods while shopping -04204468 06 n 02 shore 0 shoring 0 002 @ 02815950 n 0000 + 01219004 v 0104 | a beam or timber that is propped against a structure to provide support -04204619 06 n 01 short 0 002 @ 08673395 n 0000 #p 02799593 n 0000 | the location on a baseball field where the shortstop is stationed -04204755 06 n 02 short_circuit 0 short 1 003 @ 03093792 n 0000 #p 03033362 n 0000 + 01618884 v 0202 | accidental contact between two points in an electric circuit that have a potential difference -04204953 06 n 03 shortcut 0 cutoff 0 crosscut 0 001 @ 04096066 n 0000 | a route shorter than the usual one -04205062 06 n 01 short_iron 0 001 @ 03585073 n 0000 | an iron with a short shaft and pitched face; for hitting short high shots -04205192 06 n 01 short_line 0 001 @ 04473432 n 0000 | a transportation system that operates over relatively short distances -04205318 06 n 03 short_pants 0 shorts 0 trunks 0 005 @ 04489008 n 0000 ;u 06295235 n 0000 ~ 02831595 n 0000 ~ 03543112 n 0000 ~ 03653833 n 0000 | trousers that end at or above the knee -04205505 06 n 01 short_sleeve 0 001 @ 04236377 n 0000 | a sleeve extending from the shoulder to the elbow -04205613 06 n 01 shortwave_diathermy_machine 0 001 @ 03189818 n 0000 | a diathermy machine that uses short wave radiation as the source of heat -04205759 06 n 02 shot 0 pellet 0 006 @ 04008634 n 0000 #p 02976641 n 0000 ~ 02813874 n 0000 ~ 02843777 n 0000 ~ 03453547 n 0000 ~ 03802228 n 0000 | a solid missile discharged from a firearm; "the shot buzzed past his ear" -04205983 06 n 01 shot 2 001 @ 03008275 n 0000 | an explosive charge used in blasting -04206070 06 n 01 shot 3 001 @ 04285146 n 0000 | sports equipment consisting of a heavy metal ball used in the shot put; "he trained at putting the shot" -04206225 06 n 03 shot_glass 0 jigger 0 pony 0 001 @ 03438257 n 0000 | a small glass adequate to hold a single swallow of whiskey -04206356 06 n 02 shotgun 0 scattergun 0 004 @ 03343853 n 0000 ~ 03389983 n 0000 %p 04022434 n 0000 ~ 04140539 n 0000 | firearm that is a double-barreled smoothbore shoulder weapon for firing shot at short ranges -04206570 06 n 01 shotgun_shell 0 002 @ 04190464 n 0000 %p 02843777 n 0000 | a shell containing lead shot; used in shotguns -04206695 06 n 01 shot_hole 0 001 @ 02875233 n 0000 | drill hole for a charge of an explosive -04206790 06 n 01 shot_tower 0 001 @ 04460130 n 0000 | tower of a kind once used to make shot; molten lead was poured through a sieve and dropped into water -04206948 06 n 02 shoulder 0 berm 0 003 @ 03264542 n 0000 #p 04096066 n 0000 ~ 03493079 n 0000 | a narrow edge of land (usually unpaved) along the side of a road; "the car pulled off onto the shoulder" -04207151 06 n 01 shoulder 1 002 @ 03050026 n 0000 #p 03419014 n 0000 | the part of a garment that covers or fits over the shoulder; "an ornamental gold braid on the shoulder of his uniform" -04207343 06 n 01 shoulder_bag 0 001 @ 02774152 n 0000 | a large handbag that can be carried by a strap looped over the shoulder -04207473 06 n 02 shoulder_board 0 shoulder_mark 0 002 @ 03292210 n 0000 #p 03763968 n 0000 | epaulets that indicate rank -04207596 06 n 01 shouldered_arch 0 001 @ 02733524 n 0000 | an arch consisting of a horizontal lintel supported at each end by corbels that project into the aperture -04207763 06 n 01 shoulder_holster 0 001 @ 03527444 n 0000 | a holster worn over your shoulder so a gun can be concealed under your jacket -04207903 06 n 01 shoulder_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a hard rounded pad worn by football players to protect their shoulders -04208065 06 n 01 shoulder_patch 0 002 @ 03897943 n 0000 #p 03763968 n 0000 | patch worn on the shoulder of a military uniform to indicate rank -04208210 06 n 01 shovel 0 005 @ 03489162 n 0000 + 01312810 v 0101 ~ 03488603 n 0000 ~ 03989665 n 0000 ~ 04149208 n 0000 | a hand tool for lifting loose material; consists of a curved container or scoop and a handle -04208427 06 n 01 shovel 1 002 @ 03346135 n 0000 + 01312810 v 0101 | a fire iron consisting of a small shovel used to scoop coals or ashes in a fireplace -04208582 06 n 01 shovel_hat 0 001 @ 03497657 n 0000 | a stiff broad-brimmed hat with the brim turned up at the sides and projecting in front; worn by some clergymen in Britain -04208760 06 n 01 showboat 0 002 @ 04308807 n 0000 @ 04095210 n 0000 | a river steamboat on which theatrical performances could be given (especially on the Mississippi River) -04208936 06 n 01 shower 0 004 @ 03969259 n 0000 #p 04209613 n 0000 + 00035259 v 0101 %p 04209383 n 0000 | a plumbing fixture that sprays water over you; "they installed a shower in the bathroom" -04209133 06 n 01 shower_cap 0 001 @ 02954340 n 0000 | a tight cap worn to keep hair dry while showering -04209239 06 n 01 shower_curtain 0 002 @ 03151077 n 0000 #p 04209613 n 0000 | a curtain that keeps water from splashing out of the shower area -04209383 06 n 01 showerhead 0 002 @ 03833564 n 0000 #p 04208936 n 0000 | a perforated nozzle that showers water on a bather -04209509 06 n 01 shower_room 0 002 @ 04105893 n 0000 %p 04209613 n 0000 | a room with several showers -04209613 06 n 02 shower_stall 0 shower_bath 0 005 @ 02873839 n 0000 #p 02807731 n 0000 #p 04209509 n 0000 %p 04208936 n 0000 %p 04209239 n 0000 | booth for washing yourself, usually in a bathroom -04209811 06 n 03 showroom 0 salesroom 0 saleroom 0 002 @ 03883944 n 0000 ;c 02958343 n 0000 | an area where merchandise (such as cars) can be displayed; "in Britain a showroom is called a salesroom" -04210012 06 n 01 shrapnel 0 001 @ 04190464 n 0000 | shell containing lead pellets that explodes in flight -04210120 06 n 01 shredder 0 002 @ 03183080 n 0000 + 01573891 v 0101 | a device that shreds documents (usually in order to prevent the wrong people from reading them) -04210288 06 n 01 shrimper 0 002 @ 04530566 n 0000 + 01142070 v 0101 | a vessel engaged in shrimping -04210390 06 n 01 shrine 0 005 @ 03953416 n 0000 + 01482958 v 0102 ~i 03606719 n 0000 ~ 03852908 n 0000 ~ 04346328 n 0000 | a place of worship hallowed by association with some sacred thing or person -04210591 06 n 01 shrink-wrap 0 001 @ 03339296 n 0000 | the clinging transparent plastic film that is used to shrinkwrap something -04210723 06 n 01 shroud 2 002 @ 03670849 n 0000 #p 03888257 n 0000 | a line that suspends the harness from the canopy of a parachute -04210858 06 n 01 shunt 0 001 @ 03563710 n 0000 | implant consisting of a tube made of plastic or rubber; for draining fluids within the body -04211001 06 n 03 shunt 1 electrical_shunt 0 bypass 1 003 @ 03088707 n 0000 #p 03033362 n 0000 + 02065885 v 0101 | a conductor having low resistance in parallel with another device to divert a fraction of the current -04211219 06 n 01 shunter 0 002 @ 03684823 n 0000 + 02012227 v 0101 | a small locomotive used to move cars around but not to make trips -04211356 06 n 01 shutter 0 006 @ 02851099 n 0000 #p 03227184 n 0000 + 01345109 v 0102 + 01242996 v 0101 ~ 03166213 n 0000 ~ 03592669 n 0000 | a hinged blind for a window -04211528 06 n 01 shutter 1 005 @ 03736970 n 0000 #p 02942699 n 0000 + 02449340 v 0104 + 01346978 v 0102 + 01345109 v 0102 | a mechanical device on a camera that opens and closes to control the time of a photographic exposure -04211755 06 n 01 shutting_post 0 001 @ 03428349 n 0000 | the gatepost against which the gate closes -04211857 06 n 01 shuttle 0 001 @ 02860415 n 0000 | bobbin that passes the weft thread between the warp threads -04211970 06 n 01 shuttle 1 003 @ 04019101 n 0000 + 02062081 v 0101 ~ 04212165 n 0000 | public transport that consists of a bus or train or airplane that plies back and forth between two points -04212165 06 n 01 shuttle_bus 0 001 @ 04211970 n 0000 | shuttle consisting of a bus that travels between two points -04212282 06 n 04 shuttlecock 0 bird 1 birdie 0 shuttle 2 002 @ 02772554 n 0000 + 01147432 v 0101 | badminton equipment consisting of a ball of cork or rubber with a crown of feathers -04212467 06 n 01 shuttle_helicopter 0 001 @ 03512147 n 0000 | a helicopter that shuttles back and forth -04212573 06 n 02 siamese 0 siamese_connection 0 002 @ 03576617 n 0000 #p 04289195 n 0000 | an inlet with two or more couplings to which a hose can be attached so that fire engines can pump water into the sprinkler system of a building -04212810 06 n 01 Sibley_tent 0 001 @ 02954163 n 0000 | a light conical canvas tent erected on a tripod with ventilation at the top -04212943 06 n 02 sick_bag 0 sickbag 0 001 @ 02773037 n 0000 | a bag provided on an airplane for passengers who are suffering from airsickness and need to vomit -04213105 06 n 02 sickbay 0 sick_berth 0 002 @ 04105893 n 0000 ;c 04194289 n 0000 | (nautical) a room for the treatment of the sick or injured (as on a ship) -04213264 06 n 01 sickbed 0 001 @ 02818832 n 0000 | the bed on which a sick person lies -04213353 06 n 03 sickle 0 reaping_hook 0 reap_hook 0 002 @ 03265032 n 0000 %p 03474896 n 0000 | an edge tool for cutting grass or crops; has a curved blade and a short handle -04213530 06 n 01 sickroom 0 001 @ 04105893 n 0000 | a room to which a sick person is confined -04213626 06 n 01 side 0 014 @ 04362025 n 0000 ~ 02816381 n 0000 ~ 02904348 n 0000 ~ 03264136 n 0000 ~ 03398467 n 0000 ~ 03642928 n 0000 ~ 03813834 n 0000 ~ 03840507 n 0000 ~ 04059701 n 0000 ~ 04085181 n 0000 ~ 04215684 n 0000 ~ 04256758 n 0000 ~ 04303672 n 0000 ~ 04514899 n 0000 | an extended outer surface of an object; "he turned the box over to examine the bottom side"; "they painted all four sides of the house" -04214046 06 n 01 sideboard 1 001 @ 02856463 n 0000 | a board that forms part of the side of a bed or crib -04214154 06 n 01 sideboard 2 001 @ 02856463 n 0000 | a removable board fitted on the side of a wagon to increase its capacity -04214282 06 n 01 sidecar 0 001 @ 03100490 n 0000 | conveyance consisting of a small carrier attached to the side of a motorcycle -04214413 06 n 01 side_chapel 0 002 @ 03007130 n 0000 #p 03028079 n 0000 | a small chapel off the side aisle of a church -04214535 06 n 02 side_door 0 side_entrance 0 001 @ 03307274 n 0000 | an exterior door at one side of a building -04214649 06 n 02 sidelight 0 running_light 0 001 @ 03665366 n 0000 | light carried by a boat that indicates the boat's direction; vessels at night carry a red light on the port bow and a green light on the starboard bow -04214871 06 n 01 sideline 0 001 @ 03671668 n 0000 | an auxiliary line of merchandise -04214958 06 n 01 side_pocket 0 001 @ 03972799 n 0000 | a pocket on the side of a billiard table -04215056 06 n 01 side_road 0 001 @ 04096066 n 0000 | a minor road branching off of a main road -04215153 06 n 01 sidesaddle 0 001 @ 04123740 n 0000 | a saddle for a woman; rider sits with both feet on the same side of the horse -04215287 06 n 01 side_street 0 001 @ 04334599 n 0000 | a street intersecting a main street and terminating there -04215402 06 n 02 sidewalk 0 pavement 1 003 @ 04544979 n 0000 + 01267098 v 0201 %s 03900750 n 0000 | walk consisting of a paved area for pedestrians; usually beside a street or roadway -04215588 06 n 01 sidewall 0 001 @ 04546855 n 0000 | a wall that forms the side of a structure -04215684 06 n 01 sidewall 1 001 @ 04213626 n 0000 | the side of an automobile tire; "the car had white sidewalls" -04215800 06 n 01 side-wheeler 0 001 @ 03874138 n 0000 | a paddle steamer having a paddle wheel on each side -04215910 06 n 01 sidewinder 0 001 @ 03773504 n 0000 | air-to-air missile with infrared homing device -04216013 06 n 01 side_yard 0 001 @ 04610879 n 0000 | the grounds at either side of a house -04216106 06 n 04 siding 1 railroad_siding 0 turnout 3 sidetrack 0 001 @ 04048075 n 0000 | a short stretch of railroad track used to store rolling stock or enable trains on the same line to pass -04216302 06 n 01 Siege_Perilous 0 001 @i 04161981 n 0000 | the legendary seat at King Arthur's Round Table reserved for the knight who would find the Holy Grail; it was fatal for anyone else to sit in it -04216508 06 n 01 Siegfried_line 0 002 @i 03385557 n 0000 #p 08766988 n 0000 | German fortifications facing the Maginot Line -04216634 06 n 02 sieve 0 screen 2 006 @ 04332243 n 0000 + 01460785 v 0202 + 01460029 v 0102 ~ 04088696 n 0000 ~ 04216860 n 0000 + 01460029 v 0101 | a strainer for separating lumps from powdered material or grading particles -04216860 06 n 01 sifter 0 002 @ 04216634 n 0000 + 01460029 v 0101 | a household sieve (as for flour) -04216963 06 n 01 sights 0 006 @ 03852280 n 0000 #p 03343853 n 0000 #p 04365484 n 0000 ~ 02868870 n 0000 %p 03309465 n 0000 ~ 03470387 n 0000 | an optical instrument for aiding the eye in aiming, as on a firearm or surveying instrument -04217200 06 n 01 sight_setting 0 002 @ 03470387 n 0000 ~ 04614505 n 0000 | the adjustment of a gunsight for elevation and windage on a particular range under favorable light conditions -04217387 06 n 02 sigmoidoscope 0 flexible_sigmoidoscope 0 001 @ 03286572 n 0000 | an endoscope (a flexible fiberoptic probe) for examining the sigmoid colon -04217546 06 n 02 signal_box 0 signal_tower 0 002 @ 02913152 n 0000 ;u 08860123 n 0204 | a building from which signals are sent to control the movements of railway trains -04217718 06 n 01 signaling_device 0 005 @ 03183080 n 0000 ~ 02824448 n 0000 ~ 02930080 n 0000 ~ 03375171 n 0000 ~ 04579432 n 0000 | a device used to send signals -04217882 06 n 02 signboard 0 sign 1 006 @ 04341686 n 0000 + 01498319 v 0201 ~ 02839110 n 0000 ~ 04135118 n 0000 ~ 04149813 n 0000 ~ 04194009 n 0000 | structure displaying a board on which advertisements can be posted; "the highway was lined with signboards" -04218142 06 n 01 signet 0 002 @ 04159058 n 0000 #p 04218271 n 0000 | a seal (especially one used to mark documents officially) -04218271 06 n 02 signet_ring 0 seal_ring 0 002 @ 04092609 n 0000 %p 04218142 n 0000 | a ring bearing a signet -04218383 06 n 03 sildenafil 0 sildenafil_citrate 0 Viagra 0 002 @ 04537602 n 0000 ;u 06845599 n 0301 | virility drug (trade name Viagra) used to treat erectile dysfunction in men -04218564 06 n 02 silencer 0 muffler 1 004 @ 02676261 n 0000 #p 03302938 n 0000 + 02191311 v 0201 + 00461493 v 0103 | a tubular acoustic device inserted in the exhaust system that is designed to reduce noise -04218773 06 n 01 silencer 1 002 @ 04493505 n 0000 + 00461493 v 0103 | short tube attached to the muzzle of a gun that deadens the sound of firing -04218921 06 n 01 silent_butler 0 001 @ 04060904 n 0000 | a small receptacle with a handle and a hinged lid; used for collecting crumbs or ashes -04219067 06 n 01 silesia 0 001 @ 03309808 n 0000 | a sturdy twill-weave cotton fabric; used for pockets and linings -04219185 06 n 01 Silex 0 002 @ 03063338 n 0000 ;u 06851742 n 0000 | a vacuum coffee maker -04219277 06 n 01 silhouette 0 002 @ 03234306 n 0000 + 01680621 v 0101 | a drawing of the outline of an object; filled in with some uniform color -04219424 06 n 01 silk 0 003 @ 03309808 n 0000 + 00282675 a 0104 ~ 04135933 n 0000 | a fabric made from the fine threads produced by certain insect larvae -04219580 06 n 01 silks 0 002 @ 03419014 n 0000 ;u 06295235 n 0000 | the brightly colored garments of a jockey; emblematic of the stable -04219718 06 n 03 silkscreen 0 silk_screen_print 0 serigraph 0 001 @ 04003597 n 0000 | a print made using a stencil process in which an image or design is superimposed on a very fine mesh screen and printing ink is squeegeed onto the printing surface through the area of the screen that is not covered by the stencil -04220036 06 n 01 sill 0 003 @ 04341414 n 0000 ~ 03223686 n 0000 ~ 04590263 n 0000 | structural member consisting of a continuous horizontal timber forming the lowest member of a framework or supporting structure -04220250 06 n 01 silo 0 001 @ 04460130 n 0000 | a cylindrical tower used for storing silage -04220344 06 n 01 silo 1 002 @ 03763133 n 0000 ;c 08199025 n 0000 | military installation consisting of an underground structure where ballistic missiles can be stored and fired -04220523 06 n 02 silver_medal 0 silver 1 001 @ 04487996 n 0000 | a trophy made of silver (or having the appearance of silver) that is usually awarded for winning second place in a competition -04220717 06 n 01 silver_mine 0 001 @ 03768346 n 0000 | a mine where silver ore is dug -04220805 06 n 01 silver_plate 0 003 @ 03963028 n 0000 + 01396328 v 0101 + 01396328 v 0102 | a thin layer of silver deposited on something -04220945 06 n 01 silver_plate 1 003 @ 04381994 n 0000 + 01396328 v 0101 + 01396328 v 0102 | tableware that is plated with silver -04221076 06 n 01 silverpoint 0 001 @ 03234306 n 0000 | a drawing made on specially prepared paper with an instrument having a silver tip (15th and 16th centuries) -04221241 06 n 01 silver_protein 0 001 @ 14588219 n 0000 | a colloid preparation of protein (albumin or gelatin) and silver oxide; used in aqueous solution as an antibacterial agent -04221424 06 n 01 silverware 0 003 @ 04381994 n 0000 ~ 03361837 n 0000 ~ 03527149 n 0000 | tableware made of silver or silver plate or pewter or stainless steel -04221586 06 n 01 silverwork 0 001 @ 04599396 n 0000 | decorative work made of silver -04221673 06 n 01 simple_pendulum 0 001 @ 03909160 n 0000 | a hypothetical pendulum suspended by a weightless frictionless thread of constant length -04221823 06 n 01 simulator 0 003 @ 03699975 n 0000 + 01722980 v 0102 ~ 03363363 n 0000 | a machine that simulates an environment for the purpose of training or research -04221994 06 n 02 simvastatin 0 Zocor 0 002 @ 03676175 n 0000 ;u 06845599 n 0201 | an oral lipid-lowering medicine (trade name Zocor) administered to reduce blood cholesterol levels; recommended after heart attacks -04222210 06 n 01 single_bed 0 002 @ 02818832 n 0000 ~ 03540914 n 0000 | a bed for one occupant -04222307 06 n 01 single-breasted_jacket 0 002 @ 03589791 n 0000 #p 04222470 n 0000 | a jacket having fronts that overlap only enough for a single row of buttons -04222470 06 n 01 single-breasted_suit 0 002 @ 04350905 n 0000 %p 04222307 n 0000 | a suit having a single-breasted jacket -04222594 06 n 02 single_crochet 0 single_stitch 0 003 @ 03133177 n 0000 + 01673305 v 0202 + 01673305 v 0101 | a crochet stitch -04222723 06 n 02 single_prop 0 single-propeller_plane 0 001 @ 04012084 n 0000 | a propeller plane with a single propeller -04222847 06 n 02 single-reed_instrument 0 single-reed_woodwind 0 004 @ 02817799 n 0000 ~ 03037709 n 0000 ~ 03537550 n 0000 ~ 04141076 n 0000 | a beating-reed instrument with a single reed (as a clarinet or saxophone) -04223066 06 n 01 single-rotor_helicopter 0 001 @ 03512147 n 0000 | a helicopter having a single rotor -04223170 06 n 03 singlestick 0 fencing_stick 0 backsword 1 001 @ 04317420 n 0000 | a stick used instead of a sword for fencing -04223299 06 n 03 singlet 0 vest 0 undershirt 0 001 @ 04508163 n 0000 | a collarless men's undergarment for the upper part of the body -04223435 06 n 01 singleton 0 001 @ 03963982 n 0000 | the playing card that is the only card in a suit held in a bridge hand as initially dealt -04223580 06 n 01 sink 0 004 @ 03969259 n 0000 %p 03232543 n 0000 ~ 03620889 n 0000 ~ 04553920 n 0000 | plumbing fixture consisting of a water basin fixed to a wall or floor and having a drainpipe -04223778 06 n 01 sinker 0 002 @ 04571088 n 0000 + 01989873 v 0101 | a weight that sinks (as to hold nets or fishing lines under water) -04223915 06 n 02 sinusoidal_projection 0 Sanson-Flamsteed_projection 0 001 @ 03293471 n 0000 | an equal-area map projection showing parallels and the equator as straight lines and other meridians as curved; used to map tropical latitudes -04224155 06 n 02 siphon 0 syphon 0 003 @ 04493505 n 0000 + 01853542 v 0202 + 01613391 v 0101 | a tube running from the liquid in a vessel to a lower level outside the vessel so that atmospheric pressure forces the liquid through the tube -04224395 06 n 01 siren 0 002 @ 02676261 n 0000 @ 02694426 n 0000 | an acoustic device producing a loud often wailing sound as a signal or warning -04224543 06 n 01 sister_ship 0 001 @ 04194289 n 0000 | a ship that is one of two or more similar ships built at the same time -04224671 06 n 01 Sistine_Chapel 0 002 @i 03007130 n 0000 #p 08806897 n 0000 | the private chapel of the popes in Rome; it was built by and named after Sixtus IV in 1473 -04224842 06 n 01 sitar 0 001 @ 04338517 n 0000 | a stringed instrument of India; has a long neck and movable frets; has 6 or 7 metal strings for playing and usually 13 resonating strings -04225031 06 n 02 sitz_bath 0 hip_bath 0 001 @ 02808440 n 0000 | a bathtub in which your buttocks and hips are immersed as if you were sitting in a chair and you bathe in a sitting position -04225222 06 n 03 six-pack 0 six_pack 0 sixpack 0 001 @ 02971356 n 0000 | a carton containing six bottles or cans -04225337 06 n 01 sixpenny_nail 0 001 @ 03804744 n 0000 | a nail 2 inches long -04225417 06 n 02 six-spot 0 six 0 003 @ 04286307 n 0000 @ 03220802 n 0000 @ 03191029 n 0000 | a playing card or domino or die whose upward face shows six pips -04225578 06 n 01 size_stick 0 001 @ 03735637 n 0000 | a mechanical measuring stick used by shoe fitters to measure the length and width of your foot -04225729 06 n 01 skate 0 005 @ 04285146 n 0000 + 01936753 v 0101 ~ 03558404 n 0000 ~ 04102037 n 0000 ~ 04102618 n 0000 | sports equipment that is worn on the feet to enable the wearer to glide along and to be propelled by the alternate actions of the legs -04225987 06 n 01 skateboard 0 003 @ 02856463 n 0000 @ 04576211 n 0000 + 01937795 v 0101 | a board with wheels that is ridden in a standing or crouching position and propelled by foot -04226172 06 n 04 skeen_arch 0 skene_arch 0 scheme_arch 0 diminished_arch 0 001 @ 02733524 n 0000 | an arch whose height is less than half its width -04226322 06 n 01 skeg 0 002 @ 02887209 n 0000 #p 04316646 n 0000 | a brace that extends from the rear of the keel to support the rudderpost -04226464 06 n 01 skein 0 001 @ 03491988 n 0000 | coils of worsted yarn -04226537 06 n 04 skeleton 0 skeletal_frame 0 frame 1 underframe 0 006 @ 04361095 n 0000 #p 02913152 n 0000 #p 04194289 n 0000 #p 02686568 n 0000 ~ 03010473 n 0000 ~ 03534429 n 0000 | the internal supporting structure that gives an artifact its shape; "the building has a steel skeleton" -04226826 06 n 01 skeleton_key 0 001 @ 03896984 n 0000 | a passkey with much of the bit filed away so that it can open different locks -04226962 06 n 01 skep 0 001 @ 02822865 n 0000 | a domed beehive made of twisted straw -04227050 06 n 01 skep 1 001 @ 02801938 n 0000 | a large round wicker basket (used on farms) -04227144 06 n 02 sketch 0 study 1 005 @ 03234306 n 0000 + 01697628 v 0101 ~ 03179318 n 0000 ~ 03230785 n 0000 ~ 04535011 n 0000 | preliminary drawing for later elaboration; "he made several studies before starting to paint" -04227370 06 n 03 sketchbook 0 sketch_block 0 sketch_pad 0 001 @ 02870092 n 0000 | a book containing sheets of paper on which sketches can be drawn -04227519 06 n 01 sketcher 0 002 @ 04608567 n 0000 + 01697628 v 0101 | an implement for sketching -04227618 06 n 01 sketch_map 0 001 @ 03720163 n 0000 | a map drawn from observation (rather than from exact measurements) and representing the main features of an area -04227787 06 n 01 skew_arch 0 001 @ 02733524 n 0000 | an arch whose jambs are not at right angles with the face -04227900 06 n 01 skewer 0 003 @ 03940256 n 0000 + 01444563 v 0101 ~ 04280970 n 0000 | a long pin for holding meat in position while it is being roasted -04228054 06 n 01 ski 0 003 @ 04120093 n 0000 + 01938426 v 0101 ~ 04562262 n 0000 | narrow wood or metal or plastic runners used in pairs for gliding over snow -04228215 06 n 02 ski_binding 0 binding 2 001 @ 03736970 n 0000 | one of a pair of mechanical devices that are attached to a ski and that will grip a ski boot; the bindings should release in case of a fall -04228422 06 n 01 skibob 0 001 @ 04524313 n 0000 | a vehicle resembling a bicycle but having skis instead of wheels; the rider wears short skis for balancing -04228581 06 n 01 ski_boot 0 001 @ 02872752 n 0000 | a stiff boot that is fastened to a ski with a ski binding -04228693 06 n 03 ski_cap 0 stocking_cap 0 toboggan_cap 0 001 @ 02954340 n 0000 | a close-fitting woolen cap; often has a tapering tail with a tassel -04228844 06 n 01 skid 0 003 @ 15101854 n 0000 #p 03029603 n 0000 + 01975121 v 0101 | one of a pair of planks used to make a track for rolling or sliding objects -04229007 06 n 01 skidder 0 001 @ 04465501 n 0000 | a tractor used to haul logs over rough terrain -04229107 06 n 01 skid_lid 0 002 @ 03127747 n 0000 ;r 08860123 n 0000 | a crash helmet -04229195 06 n 01 skidpan 0 002 @ 03900509 n 0000 ;r 08860123 n 0000 | a paved surface on which cars can be made to skid so that drivers can practice controlling them -04229363 06 n 01 skid_road 0 001 @ 04096066 n 0000 | a road made of logs on which freshly cut timber can be hauled -04229480 06 n 01 skiff 0 002 @ 04244997 n 0000 ~ 04133114 n 0000 | any of various small boats propelled by oars or by sails or by a motor -04229620 06 n 01 ski_jump 0 002 @ 04051549 n 0000 + 01965331 v 0101 | a steep downward ramp from which skiers jump -04229737 06 n 01 ski_lodge 0 001 @ 03542333 n 0000 | a hotel at a ski resort -04229816 06 n 01 ski_mask 0 002 @ 03314378 n 0000 %p 03794540 n 0000 | a woolen face mask to protect the face from cold while skiing on snow -04229959 06 n 01 skimmer 1 002 @ 03101986 n 0000 + 01261018 v 0101 | a cooking utensil used to skim fat from the surface of liquids -04230093 06 n 01 skin 1 002 @ 04362025 n 0000 #p 02686568 n 0000 | an outer surface (usually thin); "the skin of an airplane" -04230221 06 n 01 skin 2 003 @ 02773037 n 0000 ~ 04562390 n 0000 ~ 04592596 n 0000 | a bag serving as a container for liquids; it is made from the hide of an animal -04230387 06 n 02 ski_parka 0 ski_jacket 0 001 @ 03891051 n 0000 | a parka to be worn while skiing -04230487 06 n 01 ski-plane 0 001 @ 02691156 n 0000 | an airplane equipped with skis so it can land on a snowfield -04230603 06 n 01 ski_pole 0 001 @ 03976657 n 0000 | a pole with metal points used as an aid in skiing -04230707 06 n 01 ski_rack 0 001 @ 02969886 n 0000 | a carrier for holding skis on top of a vehicle -04230808 06 n 01 skirt 0 020 @ 03419014 n 0000 ~ 02780815 n 0000 %p 02886035 n 0000 ~ 03146777 n 0000 ~ 03402511 n 0000 ~ 03429003 n 0000 ~ 03454442 n 0000 ~ 03523506 n 0000 ~ 03534580 n 0000 %p 03616091 n 0000 ~ 03617312 n 0000 ~ 03649003 n 0000 ~ 03732458 n 0000 ~ 03770439 n 0000 ~ 03866082 n 0000 %p 03953901 n 0000 ~ 04136333 n 0000 %p 04238321 n 0000 %p 04354966 n 0000 %p 08583292 n 0000 | a garment hanging from the waist; worn mainly by girls and women -04231272 06 n 01 skirt 1 004 @ 03050026 n 0000 #p 03419014 n 0000 %p 03641947 n 0000 %p 04162433 n 0000 | cloth covering that forms the part of a garment below the waist -04231444 06 n 01 skirt_of_tasses 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the body below the waist -04231575 06 n 02 ski_run 0 ski_trail 0 002 @ 04466613 n 0000 ~ 03948242 n 0000 | trail or slope prepared for skiing -04231693 06 n 03 ski_tow 0 ski_lift 0 lift 1 006 @ 03100490 n 0000 + 01455184 v 0302 + 01974062 v 0302 ~ 03002341 n 0000 ~ 04108999 n 0000 ~ 04362821 n 0000 | a powered conveyance that carries skiers up a hill -04231905 06 n 01 Skivvies 0 002 @ 04508949 n 0000 ;u 06851742 n 0000 | men's underwear consisting of cotton T-shirt and shorts -04232034 06 n 01 skull_and_crossbones 0 002 @ 03282591 n 0000 #p 02847009 n 0000 | emblem warning of danger or death -04232153 06 n 01 skullcap 0 004 @ 02954340 n 0000 ~ 02816768 n 0000 ~ 03065243 n 0000 ~ 04612026 n 0000 | rounded brimless cap fitting the crown of the head -04232312 06 n 01 skybox 0 002 @ 02884225 n 0000 @ 04295881 n 0000 | an elevated box for viewing events at a sports stadium -04232437 06 n 01 skyhook 0 001 @ 03532342 n 0000 | a hook that is imagined to be suspended from the sky -04232543 06 n 01 skyhook 1 001 @ 03512147 n 0000 | helicopter carrying a reel of steel cable that can be used to lift and transport heavy objects -04232691 06 n 01 Skylab 0 001 @i 04266162 n 0000 | United States space station; in orbit from 1973 to 1979 -04232800 06 n 02 skylight 0 fanlight 2 001 @ 04587648 n 0000 | a window in a roof to admit daylight -04232902 06 n 02 skyrocket 0 rocket 2 002 @ 03348454 n 0000 + 01944086 v 0102 | sends a firework display high into the sky -04233027 06 n 01 skysail 0 001 @ 04127904 n 0000 | the sail above the royal on a square-rigger -04233124 06 n 01 skyscraper 0 005 @ 02913152 n 0000 ~i 03283973 n 0000 ~i 03920497 n 0000 ~i 04161102 n 0000 ~i 04604009 n 0000 | a very tall building with many stories -04233295 06 n 01 skywalk 0 001 @ 04544979 n 0000 | an elevated walkway between buildings (usually enclosed) -04233405 06 n 01 slab 0 004 @ 02852523 n 0000 ~ 02926886 n 0000 ~ 04381302 n 0000 ~ 04435180 n 0000 | block consisting of a thick piece of something -04233556 06 n 01 slack 0 003 @ 03106110 n 0000 + 02404421 a 0102 + 00536535 v 0101 | a cord or rope or cable that is hanging loosely; "he took up the slack" -04233715 06 n 01 slacks 0 002 @ 04489008 n 0000 ;u 06295235 n 0000 | (usually in the plural) pants for casual wear -04233832 06 n 01 slack_suit 0 002 @ 04350905 n 0000 ~ 03885669 n 0000 | casual dress consisting of slacks and matching jacket -04233960 06 n 01 slapstick 0 001 @ 02676261 n 0000 | acoustic device consisting of two paddles hinged together; used by an actor to make a loud noise without inflicting injury when striking someone -04234160 06 n 01 slasher 0 001 @ 04565375 n 0000 | a weapon (a sword or dagger) used for slashing -04234260 06 n 01 slash_pocket 0 001 @ 03972524 n 0000 | a pocket in a garment (usually below the waist) to which access is provided by a vertical or diagonal slit in the outside of the garment -04234455 06 n 02 slat 0 spline 0 008 @ 04339638 n 0000 #p 04525584 n 0000 + 01220528 v 0101 + 02336684 v 0101 ~ 03646148 n 0000 ~ 03692676 n 0000 ~ 04281749 n 0000 ~ 04307269 n 0000 | a thin strip (wood or metal) -04234670 06 n 01 slate 0 001 @ 04381302 n 0000 | (formerly) a writing tablet made of slate -04234763 06 n 01 slate_pencil 0 001 @ 03908204 n 0000 | a pencil of soft slate (or soapstone) used for writing on a slate -04234887 06 n 01 slate_roof 0 001 @ 04105068 n 0000 | a roof covered with slate -04234969 06 n 01 slave_market 0 002 @ 03722288 n 0000 ;r 09044862 n 0000 | a marketplace where slaves were auctioned off (especially in the southern United States before the American Civil War) -04235165 06 n 01 slave_ship 0 001 @ 04194289 n 0000 | a ship used to transport slaves from their homes to places of bondage -04235291 06 n 03 sled 0 sledge 1 sleigh 0 012 @ 04524313 n 0000 + 01939174 v 0302 + 01846099 v 0201 + 01954741 v 0201 + 01939174 v 0101 ~ 02860847 n 0000 ~ 02861022 n 0000 ~ 03218198 n 0000 ~ 03695753 n 0000 ~ 04024576 n 0000 %p 04120093 n 0000 ~ 04443433 n 0000 | a vehicle mounted on runners and pulled by horses or dogs; for transportation over snow -04235646 06 n 01 sleeper 2 002 @ 03405725 n 0000 + 02701445 v 0101 | a piece of furniture that can be opened up into a bed -04235771 06 n 01 sleeper 3 001 @ 03877472 n 0000 | pajamas with feet; worn by children -04235860 06 n 01 sleeping_bag 0 001 @ 02773037 n 0000 | large padded bag designed to be slept in outdoors; usually rolls up like a bedroll -04236001 06 n 03 sleeping_car 0 sleeper 0 wagon-lit 0 004 @ 03895866 n 0000 + 02701445 v 0201 %p 03235180 n 0000 %p 04107598 n 0000 | a passenger car that has berths for sleeping -04236182 06 n 04 sleeping_pill 0 sleeping_tablet 0 sleeping_capsule 0 sleeping_draught 0 002 @ 04260934 n 0000 @ 03936568 n 0000 | a soporific drug in the form of a pill (or tablet or capsule) -04236377 06 n 02 sleeve 0 arm 0 010 @ 03050026 n 0000 #p 03419014 n 0000 %p 03145843 n 0000 ~ 03220095 n 0000 %p 03268311 n 0000 ~ 03688405 n 0000 ~ 04046400 n 0000 ~ 04198355 n 0000 ~ 04205505 n 0000 %p 04607398 n 0000 | the part of a garment that is attached at the armhole and that provides a cloth covering for the arm -04236702 06 n 01 sleeve 2 002 @ 02974697 n 0000 ~ 04064747 n 0000 | small case into which an object fits -04236809 06 n 01 sleigh_bed 0 001 @ 02818832 n 0000 | a bed with solid headboard and footboard that roll outward at the top -04236935 06 n 02 sleigh_bell 0 cascabel 0 001 @ 02824448 n 0000 | a bell attached to a sleigh, or to the harness of a horse that is pulling a sleigh -04237086 06 n 01 slice 0 001 @ 04269944 n 0000 | a spatula for spreading paint or ink -04237174 06 n 01 slice_bar 0 001 @ 02788689 n 0000 | iron bar used to loosen and rake clinkers out of furnaces -04237287 06 n 01 slicer 1 002 @ 03623556 n 0000 + 01254477 v 0101 | knife especially designed for slicing particular foods, as cheese -04237423 06 n 01 slicer 2 003 @ 03699975 n 0000 + 01559055 v 0102 + 01254477 v 0101 | a machine for cutting; usually with a revolving blade -04237565 06 n 01 slick 0 001 @ 04489817 n 0000 | a trowel used to make a surface slick -04237654 06 n 01 slick 1 002 @ 03338648 n 0000 ~ 03844965 n 0000 | a film of oil or garbage floating on top of water -04237773 06 n 02 slide 1 lantern_slide 0 002 @ 03375956 n 0000 %p 03987509 n 0000 | a transparency mounted in a frame; viewed with a slide projector -04237924 06 n 02 slide 2 microscope_slide 0 003 @ 03961070 n 0000 %p 03122573 n 0000 %p 09428741 n 0000 | a small flat rectangular piece of glass on which specimens can be mounted for microscopic study -04238128 06 n 03 slide 3 playground_slide 0 sliding_board 0 003 @ 03964744 n 0000 #p 03963645 n 0000 + 01870275 v 0105 | plaything consisting of a sloping chute down which children can slide -04238321 06 n 04 slide_fastener 0 zip 0 zipper 0 zip_fastener 0 008 @ 03323703 n 0000 #p 02963159 n 0000 #p 03236735 n 0000 #p 04489008 n 0000 #p 04230808 n 0000 + 01353670 v 0302 + 01353670 v 0303 + 01353670 v 0203 | a fastener for locking together two toothed edges by means of a sliding tab -04238617 06 n 01 slide_projector 0 002 @ 04009552 n 0000 ~ 03704834 n 0000 | projector that projects an enlarged image of a slide onto a screen -04238763 06 n 02 slide_rule 0 slipstick 0 001 @ 02708224 n 0000 | analog computer consisting of a handheld instrument used for rapid calculations; have been replaced by pocket calculators -04238953 06 n 01 slide_valve 0 001 @ 04519153 n 0000 | valve that opens and closes a passageway by sliding over a port -04239074 06 n 01 sliding_door 0 003 @ 03221720 n 0000 ~ 02793842 n 0000 %p 03882611 n 0000 | a door that opens by sliding instead of swinging -04239218 06 n 01 sliding_seat 0 002 @ 04161358 n 0000 #p 04190997 n 0000 | rower's seat that slides fore and aft -04239333 06 n 01 sliding_window 0 001 @ 04587648 n 0000 | a window that open by sliding horizontally -04239436 06 n 03 sling 0 scarf_bandage 0 triangular_bandage 0 001 @ 02785648 n 0000 | bandage to support an injured forearm; consisting of a wide triangular piece of cloth hanging from around the neck -04239639 06 n 01 sling 2 001 @ 04565375 n 0000 | a simple weapon consisting of a looped strap in which a projectile is whirled and then released -04239786 06 n 02 slingback 0 sling 3 001 @ 04199027 n 0000 | a shoe that has a strap that wraps around the heel -04239900 06 n 01 slinger_ring 0 001 @ 03210683 n 0000 | dispenser consisting of a tubular ring around the propeller hub of an airplane through which antifreeze solution is spread over the blades -04240097 06 n 03 slingshot 0 sling 1 catapult 1 004 @ 03964744 n 0000 + 02683419 a 0301 + 01514348 v 0302 + 01514348 v 0201 | a plaything consisting of a Y-shaped stick with elastic between the arms; used to propel small stones -04240327 06 n 02 slip 4 slip_of_paper 0 001 @ 06255777 n 0000 | a small sheet of paper; "a receipt slip" -04240434 06 n 02 slip_clutch 0 slip_friction_clutch 0 001 @ 03396654 n 0000 | a friction clutch that will slip when the torque is too great -04240576 06 n 02 slip_coach 0 slip_carriage 0 002 @ 02959942 n 0000 ;r 08860123 n 0000 | a railway car at the end of the train; it can be detached without stopping the train -04240752 06 n 01 slipcover 0 001 @ 03050026 n 0000 | a removable fitted cloth covering for upholstered furniture -04240867 06 n 01 slip-joint_pliers 0 002 @ 03966976 n 0000 ;u 06295235 n 0000 | pliers with a joint adjustable to two positions in order to increase the opening of the jaws -04241042 06 n 01 slipknot 0 004 @ 03627232 n 0000 #p 04248851 n 0000 #p 03829563 n 0000 ~ 04591056 n 0000 | a knot at the end of a cord or rope that can slip along the cord or rope around which it is made -04241249 06 n 01 slip-on 0 002 @ 03051540 n 0000 + 00051170 v 0101 | an article of clothing (garment or shoe) that is easily slipped on or off -04241394 06 n 02 slipper 0 carpet_slipper 0 003 @ 03380867 n 0000 ~ 02873733 n 0000 ~ 03798061 n 0000 | low footwear that can be slipped on and off easily; usually worn indoors -04241573 06 n 01 slip_ring 0 001 @ 03091374 n 0000 | connection consisting of a metal ring on a rotating part of a machine; provides a continuous electrical connection through brushes on stationary contacts -04241782 06 n 01 slip_stitch 0 001 @ 04180314 n 0000 | a loose stitch catching only a thread or two of fabric; designed to be invisible from the right side -04241940 06 n 01 slit 0 005 @ 03848729 n 0000 + 01558883 v 0101 ~ 03592055 n 0000 ~ 04243370 n 0000 ~ 04526416 n 0000 | a long narrow opening -04242084 06 n 01 slit_lamp 0 002 @ 03272383 n 0000 ;c 06054446 n 0000 | (ophthalmology) a lamp that emits a narrow but intense beam of light that enables an ophthalmologist, using a microscope, to view the retina and optic nerve -04242315 06 n 01 slit_trench 0 001 @ 04478657 n 0000 | narrow trench for shelter in battle -04242408 06 n 01 sloop 0 003 @ 04128837 n 0000 ~ 03626658 n 0000 ~ 04037298 n 0000 | a sailing vessel with a single mast set about one third of the boat's length aft of the bow -04242587 06 n 01 sloop_of_war 0 001 @ 04552696 n 0000 | a sailing or steam warship having cannons on only one deck -04242704 06 n 02 slop_basin 0 slop_bowl 0 002 @ 02880940 n 0000 ;r 08860123 n 0000 | a bowl into which the dregs of teacups and coffee cups are emptied at the table -04242871 06 n 01 slop_chest 0 001 @ 03076411 n 0000 | commissary maintained aboard merchant ships to sell merchandise to the crew -04243003 06 n 02 slop_pail 0 slop_jar 0 001 @ 02909870 n 0000 | a large pail used to receive waste water from a washbasin or chamber pot -04243142 06 n 01 slops 0 001 @ 03051540 n 0000 | cheap clothing (as formerly issued to sailors in Britain) -04243251 06 n 02 slopshop 0 slopseller's_shop 0 001 @ 03052464 n 0000 | a store that sells cheap ready-made clothing -04243370 06 n 01 slot 0 003 @ 04241940 n 0000 ~ 03066606 n 0000 ~ 03710819 n 0000 | a small slit (as for inserting a coin or depositing mail); "he put a quarter in the slot" -04243546 06 n 02 slot 1 one-armed_bandit 0 002 @ 04243941 n 0000 ~ 03399971 n 0000 | a slot machine that is used for gambling; "they spend hours and hours just playing the slots" -04243727 06 n 02 slot 2 expansion_slot 0 002 @ 04061442 n 0000 ;c 03082979 n 0000 | (computer) a socket in a microcomputer that will accept a plug-in circuit board; "the PC had three slots for additional memory" -04243941 06 n 02 slot_machine 0 coin_machine 0 005 @ 03699975 n 0000 %p 03066464 n 0000 %p 03066606 n 0000 ~ 04243546 n 0000 ~ 04525305 n 0000 | a machine that is operated by the insertion of a coin in a slot -04244152 06 n 01 slow_lane 0 002 @ 04466386 n 0000 ! 03324502 n 0101 | the traffic lane for vehicles that are moving slowly -04244278 06 n 01 slow_match 0 001 @ 03728437 n 0000 | match or fuse made to burn slowly and evenly -04244379 06 n 03 sluice 0 sluiceway 0 penstock 0 006 @ 03089014 n 0000 + 01853882 v 0101 + 01854001 v 0101 + 00455368 v 0101 + 02758399 v 0101 %p 04244615 n 0000 | conduit that carries a rapid flow of water controlled by a sluicegate -04244615 06 n 06 sluicegate 0 sluice_valve 0 floodgate 0 penstock 1 head_gate 1 water_gate 0 002 @ 04072193 n 0000 #p 04244379 n 0000 | regulator consisting of a valve or gate that controls the rate of water flow through a sluice -04244847 06 n 01 smack 1 001 @ 04128837 n 0000 | a sailing ship (usually rigged like a sloop or cutter) used in fishing and sailing along the coast -04244997 06 n 01 small_boat 0 009 @ 02858304 n 0000 ~ 02951358 n 0000 ~ 03061345 n 0000 ~ 03105306 n 0000 ~ 03199901 n 0000 ~ 03436891 n 0000 ~ 04037964 n 0000 ~ 04229480 n 0000 ~ 04612504 n 0000 | a boat that is small -04245218 06 n 02 small_computer_system_interface 0 SCSI 0 001 @ 03578656 n 0000 | interface consisting of a standard port between a computer and its peripherals that is used in some computers -04245412 06 n 01 small_ship 0 002 @ 04194289 n 0000 %p 03145277 n 0000 | a ship that is small -04245508 06 n 01 small_stores 0 002 @ 03076411 n 0000 ;u 06295235 n 0000 | personal items conforming to regulations that are sold aboard ship or at a naval base and charged to the person's pay -04245703 06 n 01 small_stuff 0 004 @ 04108268 n 0000 ~ 03722552 n 0000 ~ 04169035 n 0000 ~ 04290079 n 0000 | any light rope used on shipboard -04245847 06 n 01 smart_bomb 0 003 @ 02866578 n 0000 ! 03255167 n 0101 ~ 03643491 n 0000 | a bomb that can be guided (by a laser beam or radio) to its target; "smart bombs have revolutionized aerial bombardment" -04246060 06 n 01 smelling_bottle 0 001 @ 02876657 n 0000 | a bottle containing smelling salts -04246156 06 n 02 smelter 0 smeltery 0 002 @ 03956922 n 0000 + 01681913 v 0101 | an industrial plant for smelting -04246271 06 n 01 smocking 0 002 @ 03282933 n 0000 + 01677509 v 0101 | embroidery consisting of ornamental needlework on a garment that is made by gathering the cloth tightly in stitches -04246459 06 n 02 smoke_bomb 0 smoke_grenade 0 001 @ 02866578 n 0000 | a bomb that gives off thick smoke when it explodes; used to make a smoke screen or to mark a position -04246633 06 n 01 smoke_hole 0 001 @ 04526241 n 0000 | a vent (as in a roof) for smoke to escape -04246731 06 n 02 smokehouse 0 meat_house 1 001 @ 03545150 n 0000 | a small house where smoke is used to cure meat or fish -04246855 06 n 04 smoker 0 smoking_car 0 smoking_carriage 0 smoking_compartment 0 001 @ 03895866 n 0000 | a passenger car for passengers who wish to smoke -04247011 06 n 02 smoke_screen 0 smokescreen 0 002 @ 04151581 n 0000 ;c 08199025 n 0000 | (military) screen consisting of a cloud of smoke that obscures movements -04247175 06 n 02 smokestack 0 stack 0 002 @ 03017428 n 0000 ~ 03403431 n 0000 | a large tall chimney through which combustion gases and smoke can be evacuated -04247336 06 n 01 smoking_mixture 0 001 @ 04442831 n 0000 | a blend of tobaccos to be smoked in a pipe -04247440 06 n 01 smoking_room 0 001 @ 04105893 n 0000 | room in a hotel or club set apart for smokers -04247544 06 n 01 smoothbore 0 001 @ 03343853 n 0000 | a firearm that has no rifling -04247630 06 n 02 smooth_plane 0 smoothing_plane 0 001 @ 03954731 n 0000 | a small plane for finish work -04247736 06 n 03 snack_bar 0 snack_counter 0 buffet 1 003 @ 02789487 n 0000 ~ 03076623 n 0000 ~ 03764606 n 0000 | usually inexpensive bar -04247876 06 n 02 snaffle 0 snaffle_bit 0 002 @ 02844714 n 0000 + 01300805 v 0101 | a simple jointed bit for a horse; without a curb -04248010 06 n 01 snake 0 006 @ 00002684 n 0000 + 01888165 v 0101 + 02738976 v 0101 ~ 03049605 n 0000 ~ 03968886 n 0000 ~ 04475195 n 0000 | something long, thin, and flexible that resembles a snake -04248209 06 n 03 snap 0 snap_fastener 0 press_stud 0 001 @ 03323703 n 0000 | a fastener used on clothing; fastens with a snapping sound; "children can manage snaps better than buttons" -04248396 06 n 01 snap_brim 0 001 @ 02902079 n 0000 | a brim that can be turned up and down on opposite sides -04248507 06 n 01 snap-brim_hat 0 002 @ 03497657 n 0000 ~ 03984643 n 0000 | a hat with a snap brim -04248607 06 n 03 snapshot 0 snap 1 shot 1 002 @ 03925226 n 0000 + 01003249 v 0202 | an informal photograph; usually made with a small hand-held camera; "my snapshots haven't been developed yet"; "he tried to get unposed shots of his friends" -04248851 06 n 03 snare 0 gin 1 noose 0 004 @ 04474466 n 0000 + 01481027 v 0201 + 01480770 v 0103 %p 04241042 n 0000 | a trap for birds or small mammals; often has a slip noose -04249029 06 n 01 snare 1 002 @ 04338143 n 0000 #p 04249415 n 0000 | strings stretched across the lower head of a snare drum; they make a rattling sound when the drum is hit -04249204 06 n 01 snare 3 001 @ 04364545 n 0000 | a surgical instrument consisting of wire hoop that can be drawn tight around the base of polyps or small tumors to sever them; used especially in body cavities -04249415 06 n 03 snare_drum 0 snare 2 side_drum 0 002 @ 03249569 n 0000 %p 04249029 n 0000 | a small drum with two heads and a snare stretched across the lower head -04249582 06 n 01 snatch_block 0 001 @ 03318136 n 0000 | a pulley-block that can be opened to receive the bight of a rope -04249705 06 n 01 Snellen_chart 0 001 @ 03210940 n 0000 | display consisting of a printed card with letters and numbers in lines of decreasing size; used to test visual acuity -04249882 06 n 03 snifter 0 brandy_snifter 0 brandy_glass 0 001 @ 03438257 n 0000 | a globular glass with a small top; used for serving brandy -04250026 06 n 03 snip 0 snippet 0 snipping 0 004 @ 03932203 n 0000 + 01456463 v 0304 + 01321002 v 0101 + 01456463 v 0104 | a small piece of anything (especially a piece that has been snipped off) -04250224 06 n 02 sniper_rifle 0 precision_rifle 0 003 @ 04090263 n 0000 ;c 08199025 n 0000 ~ 03231819 n 0000 | an extremely powerful rifle developed for the military; capable of destroying light armored vehicles and aircraft more than a mile away -04250473 06 n 02 snips 0 tinsnips 0 002 @ 04186848 n 0000 ;u 06295235 n 0000 | (plural) hand shears for cutting sheet metal -04250599 06 n 01 Sno-cat 0 002 @ 04252077 n 0000 ;u 06851742 n 0000 | a kind of snowmobile -04250692 06 n 01 snood 0 001 @ 03819595 n 0000 | an ornamental net in the shape of a bag that confines a woman's hair; pins or ties at the back of the head -04250850 06 n 05 snorkel 0 schnorkel 0 schnorchel 0 snorkel_breather 0 breather 0 003 @ 02690941 n 0000 #p 04347754 n 0000 + 00001740 v 0501 | air passage provided by a retractable device containing intake and exhaust pipes; permits a submarine to stay submerged for extended periods of time -04251144 06 n 01 snorkel 1 002 @ 02895606 n 0000 + 01963795 v 0101 | breathing device consisting of a bent tube fitting into a swimmer's mouth and extending above the surface; allows swimmer to breathe while face down in the water -04251377 06 n 01 snorter 0 001 @ 04424218 n 0000 | something that is extraordinary or remarkable or prominent; "a snorter of a sermon"; "the storm wasn't long but it was a snorter" -04251560 06 n 01 snowball 0 003 @ 02779435 n 0000 + 01508166 v 0101 %s 15043763 n 0000 | snow pressed into a ball for throwing (playfully) -04251701 06 n 02 snowbank 0 snow_bank 0 001 @ 03792048 n 0000 | a mound or heap of snow -04251791 06 n 01 snowboard 0 002 @ 02856463 n 0000 + 02104860 v 0101 | a board that resembles a broad ski or a small surfboard; used in a standing position to slide down snow-covered slopes -04251983 06 n 01 snowman 0 001 @ 03335600 n 0000 | a figure of a person made of packed snow -04252077 06 n 01 snowmobile 0 003 @ 04464852 n 0000 + 01957273 v 0101 ~ 04250599 n 0000 | tracked vehicle for travel on snow having skis in front -04252225 06 n 02 snowplow 0 snowplough 0 001 @ 03791235 n 0000 | a vehicle used to push snow from roads -04252331 06 n 01 snowshoe 0 001 @ 03183080 n 0000 | a device to help you walk on deep snow; a lightweight frame shaped like a racquet is strengthened with cross pieces and contains a network of thongs; one is worn on each foot -04252560 06 n 01 snowsuit 0 001 @ 03863923 n 0000 | a child's overgarment for cold weather -04252653 06 n 02 snow_thrower 0 snow_blower 0 001 @ 03699975 n 0000 | a machine that removes snow by scooping it up and throwing it forcefully through a chute -04252814 06 n 01 snow_tire 0 001 @ 03971422 n 0000 | an automobile pneumatic tire with deep tread to give traction in snow -04252939 06 n 01 snuff 1 002 @ 04442831 n 0000 ~ 04054471 n 0000 | finely powdered tobacco for sniffing up the nose -04253057 06 n 01 snuffbox 0 001 @ 02883344 n 0000 | a small ornamental box for carrying snuff in your pocket -04253168 06 n 01 snuffer 1 002 @ 03563967 n 0000 + 00478217 v 0101 | a cone-shaped implement with a handle; for extinguishing candles -04253304 06 n 01 snuffers 0 002 @ 04148054 n 0000 ;u 06295235 n 0000 | scissors for cropping and holding the snuff of a candlewick -04253437 06 n 01 soap 0 012 @ 03040587 n 0000 + 03026319 a 0102 + 00036932 v 0101 + 00538571 v 0101 ~ 02797455 n 0000 ~ 02980325 n 0000 ~ 03677231 n 0000 ~ 04124764 n 0000 ~ 04254319 n 0000 ~ 04254535 n 0000 ~ 04257385 n 0000 ~ 04447965 n 0000 | a cleansing agent made from the salts of vegetable or animal fats -04253751 06 n 08 soap 1 scoop 2 max 0 liquid_ecstasy 0 grievous_bodily_harm 0 goop 0 Georgia_home_boy 0 easy_lay 0 001 @ 03414814 n 0000 | street names for gamma hydroxybutyrate -04253931 06 n 01 soapbox 1 001 @ 03127925 n 0000 | a crate for packing soap -04254009 06 n 01 soap_dish 0 001 @ 03354613 n 0000 | a bathroom or kitchen fixture for holding a bar of soap -04254120 06 n 01 soap_dispenser 0 001 @ 03210683 n 0000 | dispenser of liquid soap -04254205 06 n 01 soap_film 0 001 @ 03338648 n 0000 | a film left on objects after they have been washed in soap -04254319 06 n 01 soap_flakes 0 002 @ 04253437 n 0000 ;u 06295235 n 0000 | soap that has been cut into flakes to make suds faster -04254450 06 n 01 soap_pad 0 001 @ 03040229 n 0000 | a cleaning pad containing soap -04254535 06 n 03 soap_powder 0 built-soap_powder 0 washing_powder 0 001 @ 04253437 n 0000 | soap in powdered form mixed with alkaline builders -04254680 06 n 01 soccer_ball 0 001 @ 02778669 n 0000 | an inflated ball used in playing soccer -04254777 06 n 01 sock 0 006 @ 03540267 n 0000 ~ 02713218 n 0000 ~ 02736798 n 0000 ~ 02752496 n 0000 ~ 03622931 n 0000 ~ 04378956 n 0000 | hosiery consisting of a cloth covering for the foot; worn inside the shoe; reaches to between the ankle and the knee -04255034 06 n 01 socket 0 002 @ 04061442 n 0000 ~ 03274137 n 0000 | a receptacle into which an electric device can be inserted -04255163 06 n 01 socket 1 004 @ 04060904 n 0000 #p 02886434 n 0000 #p 04255346 n 0000 #p 02779719 n 0000 | receptacle where something (a pipe or probe or end of a bone) is inserted -04255346 06 n 01 socket_wrench 0 002 @ 04606574 n 0000 %p 04255163 n 0000 | a wrench with a handle onto which sockets of different sizes can be fitted -04255499 06 n 01 socle 0 001 @ 03903868 n 0000 | a plain plinth that supports a wall -04255586 06 n 01 soda_can 0 001 @ 02946921 n 0000 | a can for holding soft drinks -04255670 06 n 01 soda_fountain 0 001 @ 02727825 n 0000 | an apparatus for dispensing soda water -04255768 06 n 01 soda_fountain 1 001 @ 02789487 n 0000 | a counter where ice cream and sodas and sundaes are prepared and served -04255899 06 n 03 sod_house 0 soddy 0 adobe_house 0 001 @ 03544360 n 0000 | a house built of sod or adobe laid in horizontal courses -04256033 06 n 01 sodium_salicylate 0 001 @ 02707683 n 0000 | a crystalline salt used as an analgesic and antipyretic -04256152 06 n 05 sodium_thiopental 0 phenobarbital 0 phenobarbitone 0 Luminal 0 purple_heart 0 001 @ 02792049 n 0000 | a long-acting barbiturate used as a sedative -04256318 06 n 02 sodium-vapor_lamp 0 sodium-vapour_lamp 0 001 @ 03636248 n 0000 | lamp in which an electric current passed through a tube of sodium vapor makes a yellow light; used is street lighting -04256520 06 n 03 sofa 0 couch 0 lounge 1 008 @ 04161981 n 0000 + 01528339 v 0301 ~ 03100346 n 0000 ~ 03165096 n 0000 ~ 03214966 n 0000 ~ 03693474 n 0000 ~ 04177755 n 0000 ~ 04290875 n 0000 | an upholstered seat for more than one person -04256758 06 n 01 soffit 0 001 @ 04213626 n 0000 | the underside of a part of a building (such as an arch or overhang or beam etc.) -04256891 06 n 02 softball 0 playground_ball 0 001 @ 02778669 n 0000 | ball used in playing softball -04256993 06 n 01 soft_drug 0 006 @ 03248958 n 0000 @ 03808564 n 0000 ! 03492717 n 0101 ~ 02834147 n 0000 ~ 02949691 n 0000 ~ 03497182 n 0000 | a drug of abuse that is considered relatively mild and not likely to cause addiction -04257223 06 n 01 soft_pedal 0 002 @ 03903424 n 0000 #p 03928116 n 0000 | a pedal on a piano that moves the action closer to the strings and so soften the sound -04257385 06 n 02 soft_soap 0 green_soap 0 001 @ 04253437 n 0000 | a soft (or liquid) soap made from vegetable oils; used in certain skin diseases -04257533 06 n 02 software_package 0 software_product 0 001 @ 03748886 n 0000 | merchandise consisting of a computer program that is offered for sale -04257684 06 n 01 soil_pipe 0 001 @ 03231912 n 0000 | drain that conveys liquid waste from toilets, etc. -04257790 06 n 03 solar_array 0 solar_battery 0 solar_panel 0 003 @ 03269401 n 0000 #p 04137444 n 0000 %p 04257986 n 0000 | electrical device consisting of a large array of connected solar cells -04257986 06 n 02 solar_cell 0 photovoltaic_cell 0 002 @ 02991048 n 0000 #p 04257790 n 0000 | a cell that converts solar energy into electrical energy -04258138 06 n 03 solar_dish 0 solar_collector 0 solar_furnace 0 002 @ 04069276 n 0000 #p 04258732 n 0000 | a concave mirror that concentrates the rays of the sun; can produce high temperatures -04258333 06 n 01 solar_heater 0 001 @ 03508101 n 0000 | a heater that makes direct use of solar energy -04258438 06 n 01 solar_house 0 001 @ 03544360 n 0000 | a house designed to use solar radiation for heating; usually has large areas of glass in front of heat-absorbing materials -04258618 06 n 01 solar_telescope 0 001 @ 04403638 n 0000 | a telescope designed to make observations of the sun -04258732 06 n 01 solar_thermal_system 0 002 @ 04377057 n 0000 %p 04258138 n 0000 | a system that converts sunlight into heat -04258859 06 n 01 soldering_iron 0 001 @ 03489162 n 0000 | a hand tool with a heatable tip; used to melt and apply solder -04258982 06 n 01 sole 0 008 @ 08511241 n 0000 #p 03380867 n 0000 #p 03446268 n 0000 + 00533403 v 0101 ~ 03478141 n 0000 ~ 03573848 n 0000 ~ 03862190 n 0000 %p 04183663 n 0000 | the underside of footwear or a golf club -04259202 06 n 01 solenoid 0 002 @ 03065708 n 0000 @ 03705379 n 0000 | a coil of wire around an iron core; becomes a magnet when current passes through the coil -04259364 06 n 01 solitaire 0 001 @ 03596787 n 0000 | a gem (usually a diamond) in a setting by itself -04259468 06 n 02 solleret 0 sabaton 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the foot; consists of mail with a solid toe and heel -04259630 06 n 01 sombrero 0 001 @ 03497657 n 0000 | a straw hat with a tall crown and broad brim; worn in American southwest and in Mexico -04259771 06 n 03 sonar 0 echo_sounder 0 asdic 0 005 @ 03733925 n 0000 @ 03813176 n 0000 #p 04347754 n 0000 %p 03942692 n 0000 %p 04021503 n 0000 | a measuring instrument that sends out an acoustic pulse in water and measures distances in terms of the time for the echo of the pulse to return; "sonar is an acronym for sound navigation ranging"; "asdic is an acronym for antisubmarine detection investigation committee" -04260192 06 n 02 sonic_depth_finder 0 fathometer 0 001 @ 03178000 n 0000 | depth finder for determining depth of water or a submerged object by means of ultrasound waves -04260364 06 n 02 sonogram 0 echogram 0 001 @ 03931044 n 0000 | an image of a structure that is produced by ultrasonography (reflections of high-frequency sound waves); used to observe fetal growth or to study bodily organs -04260589 06 n 01 sonograph 0 003 @ 03574816 n 0000 ~ 03263758 n 0000 ~ 03263888 n 0000 | an instrument that uses the differential transmission and reflection of ultrasonic waves in order to provide an image of a bodily organ -04260816 06 n 01 soothing_syrup 0 001 @ 03740161 n 0000 | medicine in the form of a syrup that has a calming effect -04260934 06 n 02 soporific 0 hypnotic 0 006 @ 03247620 n 0000 @ 14913744 n 0000 + 01346198 a 0103 + 02309187 a 0101 ~ 03808424 n 0000 ~ 04236182 n 0000 | a drug that induces sleep -04261116 06 n 01 sorter 0 003 @ 03699975 n 0000 + 00654625 v 0103 ~ 03710937 n 0000 | a machine for sorting things (such as punched cards or letters) into classes -04261281 06 n 01 souk 0 001 @ 03847823 n 0000 | an open-air market in an Arabian city -04261369 06 n 01 sound_bow 0 002 @ 03093792 n 0000 #p 02824448 n 0000 | contact (the part of a bell) against which the clapper strikes -04261506 06 n 02 soundbox 1 body 1 001 @ 04080454 n 0000 | a resonating chamber in a musical instrument (as the body of a violin) -04261638 06 n 01 sound_camera 0 001 @ 03789171 n 0000 | a movie camera that records sounds in synchrony with the visual images -04261767 06 n 01 sounder 0 002 @ 03183080 n 0000 + 00491689 v 0102 | a device for making soundings -04261868 06 n 01 sound_film 0 002 @ 03789400 n 0000 %p 04262969 n 0000 | motion-picture film with sound effects and dialogue recorded on it -04262010 06 n 01 sound_hole 0 002 @ 03526198 n 0000 #p 04262161 n 0000 | a hole in a soundboard (as of a violin) designed to resonate with the tones -04262161 06 n 02 sounding_board 0 soundboard 0 005 @ 04080454 n 0000 #p 04338517 n 0000 #p 03928116 n 0000 ;c 07020895 n 0000 %p 04262010 n 0000 | (music) resonator consisting of a thin board whose vibrations reinforce the sound of the instrument -04262410 06 n 01 sounding_lead 0 002 @ 02860239 n 0000 #p 03651947 n 0000 | a metal bob at the end of a sounding line -04262530 06 n 01 sounding_rocket 0 001 @ 04415663 n 0000 | a research rocket used to obtain information about the atmosphere at various altitudes -04262678 06 n 03 sound_recording 0 audio_recording 0 audio 1 005 @ 04063868 n 0000 ~ 02757810 n 0000 ~ 03924069 n 0000 ~ 04262969 n 0000 ~ 04386962 n 0000 | a recording of acoustic signals -04262869 06 n 01 sound_spectrograph 0 001 @ 04272782 n 0000 | a spectrograph for acoustic spectra -04262969 06 n 01 soundtrack 0 004 @ 04262678 n 0000 #p 04261868 n 0000 ~ 03252959 n 0000 ~ 03647291 n 0000 | sound recording on a narrow strip of a motion picture film -04263139 06 n 01 sound_truck 0 001 @ 04490091 n 0000 | a truck equipped with a loudspeaker and used for advertising -04263257 06 n 01 soup_bowl 0 001 @ 02880940 n 0000 | a bowl for serving soup -04263336 06 n 01 soup_ladle 0 001 @ 03633091 n 0000 | a ladle for serving soup -04263417 06 n 01 soup_plate 0 001 @ 03959485 n 0000 | a deep plate with a wide rim -04263502 06 n 02 soupspoon 0 soup_spoon 0 001 @ 04284002 n 0000 | a spoon with a rounded bowl for eating soup -04263614 06 n 01 source 0 004 @ 03315023 n 0000 + 02238536 v 0101 ~ 03444169 n 0000 ~ 03445217 n 0000 | a facility where something is available -04263760 06 n 01 source_of_illumination 0 004 @ 03183080 n 0000 ~ 03636248 n 0000 ~ 03665366 n 0000 ~ 04506994 n 0000 | any device serving as a source of visible electromagnetic radiation -04263950 06 n 01 sourdine 0 001 @ 03854998 n 0000 | an organ stop resulting in a soft muted sound -04264050 06 n 02 sourdine 1 sordino 0 001 @ 03802973 n 0000 | a mute for a violin -04264134 06 n 01 soutache 0 001 @ 02889035 n 0000 | a narrow braid used as a decorative trimming -04264233 06 n 01 soutane 0 001 @ 02979516 n 0000 | a long cassock with buttons down the front; worn by Roman Catholic priests -04264361 06 n 01 sou'wester 0 001 @ 03497657 n 0000 | waterproof hat with wide slanting brim longer in back than in front -04264485 06 n 01 soybean_future 0 001 @ 03408721 n 0000 | soybeans bought or sold at an agreed price for delivery at a specified future date -04264628 06 n 01 space_bar 0 002 @ 03613592 n 0000 #p 04505470 n 0000 | the bar-shaped typewriter key that introduces spaces when used -04264765 06 n 02 space_capsule 0 capsule 1 001 @ 04264914 n 0000 | a spacecraft designed to transport people and support human life in outer space -04264914 06 n 03 spacecraft 0 ballistic_capsule 0 space_vehicle 0 011 @ 03125870 n 0000 @ 04137444 n 0000 %p 02932019 n 0000 %p 03510072 n 0000 %p 03569293 n 0000 ~ 03638180 n 0000 ~ 03697366 n 0000 %p 03779000 n 0000 ~ 04264765 n 0000 ~ 04266014 n 0000 ~ 04304215 n 0000 | a craft capable of traveling in outer space; technically, a satellite around the sun -04265275 06 n 01 space_heater 0 002 @ 03508101 n 0000 ~ 03272239 n 0000 | heater consisting of a self-contained (usually portable) unit to warm a room -04265428 06 n 01 space_helmet 0 001 @ 03513137 n 0000 | a helmet worn by astronauts while in outer space -04265535 06 n 01 Space_Needle 0 002 @i 04460130 n 0000 #p 09154178 n 0000 | a tower 605 feet tall in Seattle; a tourist attraction -04265668 06 n 01 space_probe 0 002 @ 03466162 n 0000 %p 04400899 n 0000 | a rocket-propelled guided missile that can escape the earth's atmosphere; makes observations of the solar system that cannot be made by terrestrial observation -04265904 06 n 01 space_rocket 0 001 @ 04099175 n 0000 | a rocket powerful enough to travel into outer space -04266014 06 n 01 space_shuttle 0 001 @ 04264914 n 0000 | a reusable spacecraft with wings for a controlled descent through the Earth's atmosphere -04266162 06 n 03 space_station 0 space_platform 0 space_laboratory 0 003 @ 04137444 n 0000 ~i 04132354 n 0000 ~i 04232691 n 0000 | a manned artificial satellite in a fixed orbit designed for scientific research -04266375 06 n 01 spacesuit 0 001 @ 04001845 n 0000 | a pressure suit worn by astronauts while in outer space -04266486 06 n 01 spade 0 004 @ 03488603 n 0000 + 01310249 v 0101 ~ 03214450 n 0000 ~ 03418158 n 0000 | a sturdy hand shovel that can be pushed into the earth with the foot -04266660 06 n 01 spade 1 002 @ 03963982 n 0000 #m 03713556 n 0000 | a playing card in the major suit that has one or more black figures on it; "she led a low spade"; "spades were trumps" -04266849 06 n 01 spade_bit 0 001 @ 02844307 n 0000 | a thin bit with a center point and cutting edges on either side -04266968 06 n 01 spaghetti_junction 0 001 @ 03577818 n 0000 | a complicated highway interchange with multiple overpasses -04267091 06 n 01 Spandau 0 001 @ 03701391 n 0000 | a German machine gun -04267165 06 n 01 spandex 0 001 @ 03309808 n 0000 | an elastic synthetic fabric -04267246 06 n 02 spandrel 0 spandril 0 002 @ 04362025 n 0000 ;c 06123363 n 0000 | an approximately triangular surface area between two adjacent arches and the horizontal plane above them -04267435 06 n 01 spanker 0 001 @ 03381776 n 0000 | a fore-and-aft sail set on the aftermost lower mast (usually the mizzenmast) of a vessel -04267577 06 n 01 spar 0 011 @ 03976657 n 0000 #p 04194289 n 0000 + 02362700 v 0101 ~ 02871631 n 0000 ~ 02883004 n 0000 ~ 03220401 n 0000 ~ 03410147 n 0000 ~ 03598299 n 0000 ~ 03726760 n 0000 ~ 04289449 n 0000 ~ 04610676 n 0000 | a stout rounded pole of wood or metal used to support rigging -04267870 06 n 02 spare_part 0 spare 1 001 @ 03081021 n 0000 | an extra component of a machine or other apparatus -04267985 06 n 01 sparge_pipe 0 001 @ 03944672 n 0000 | a horizontal pipe having fine holes drilled throughout its length so as to deliver a spray of water -04268142 06 n 02 spark_arrester 0 sparker 0 001 @ 03819595 n 0000 | a wire net to stop sparks from an open fireplace or smokestack -04268275 06 n 01 spark_arrester 1 001 @ 03269401 n 0000 | electrical device to reduce sparking when electrical contacts are opened or closed -04268418 06 n 02 spark_chamber 0 spark_counter 0 001 @ 03894051 n 0000 | an instrument that detects ionizing radiation from elementary particles -04268565 06 n 01 spark_coil 0 002 @ 03568818 n 0000 #p 03560567 n 0000 | an induction coil used to create sparks -04268680 06 n 01 spark_gap 0 002 @ 03416329 n 0000 #p 03568818 n 0000 | the gap between two high-potential terminals -04268799 06 n 01 spark_gap 1 002 @ 03081021 n 0000 #p 03560567 n 0000 | a component of an ignition system; consists of two shaped electrodes and the space between them -04268969 06 n 01 sparkler 0 001 @ 03348454 n 0000 | a firework that burns slowly and throws out a shower of sparks -04269086 06 n 01 spark_lever 0 002 @ 03659292 n 0000 ;c 02958343 n 0000 | (on early automobiles) a lever mounted on the steering column and used to adjust the timing of the ignition -04269270 06 n 03 spark_plug 0 sparking_plug 0 plug 2 002 @ 03269401 n 0000 #p 03560567 n 0000 | electrical device that fits into the cylinder head of an internal-combustion engine and ignites the gas by means of an electric spark -04269502 06 n 01 sparkplug_wrench 0 001 @ 04606574 n 0000 | a wrench for removing or tightening spark plugs into the cylinder head of an internal combustion engine -04269668 06 n 01 spark_transmitter 0 001 @ 04045085 n 0000 | an early radio transmitter using a discharge across a spark gap as the source of its power -04269822 06 n 02 spat 0 gaiter 2 001 @ 03655072 n 0000 | a cloth covering (a legging) that covers the instep and ankles -04269944 06 n 01 spatula 0 005 @ 03489162 n 0000 %p 02848216 n 0000 ~ 03878828 n 0000 ~ 04028221 n 0000 ~ 04237086 n 0000 | a hand tool with a thin flexible blade used to mix or spread soft substances -04270147 06 n 01 spatula 1 003 @ 04500060 n 0000 %p 02848216 n 0000 %p 03485997 n 0000 | a turner with a narrow flexible blade -04270276 06 n 01 speakeasy 0 001 @ 02796995 n 0000 | (during prohibition) an illegal barroom -04270371 06 n 01 speakerphone 0 001 @ 04401088 n 0000 | a telephone with a microphone and loudspeaker; can be used without picking up a handset; several people can participate in a call at the same time -04270576 06 n 01 speaking_trumpet 0 001 @ 02676261 n 0000 | a trumpet-shaped acoustic device to intensify and direct the human voice; formerly held to the ear by a hard-of-hearing person -04270765 06 n 01 speaking_tube 0 001 @ 04493505 n 0000 | a tube for conveying the sound of a voice from one room to another -04270891 06 n 03 spear 0 lance 0 shaft 5 009 @ 04565375 n 0000 + 01604119 v 0201 + 02714200 v 0101 + 01444887 v 0101 ~ 02749670 n 0000 %p 02790322 n 0000 ~ 03594148 n 0000 %p 04271371 n 0000 ~ 04482975 n 0000 | a long pointed rod used as a tool or weapon -04271148 06 n 05 spear 1 gig 3 fizgig 1 fishgig 0 lance 1 005 @ 03563967 n 0000 #m 03351434 n 0000 + 01444887 v 0101 ~ 03495671 n 0000 ~ 03655589 n 0000 | an implement with a shaft and barbed point used for catching fish -04271371 06 n 03 spearhead 0 spearpoint 0 spear-point 0 003 @ 03974215 n 0000 #p 04270891 n 0000 #p 03935450 n 0000 | the head and sharpened point of a spear -04271531 06 n 01 specialty_store 0 001 @ 04202417 n 0000 | a store that sells only one kind of merchandise -04271640 06 n 01 specific 0 001 @ 03740161 n 0000 | a medicine that has a mitigating effect on a specific disease; "quinine is a specific for malaria" -04271793 06 n 01 specimen_bottle 0 001 @ 02876657 n 0000 | a bottle for holding urine specimens -04271891 06 n 01 spectacle 0 004 @ 03210940 n 0000 + 00795246 a 0101 ~ 02917163 n 0000 ~ 03811163 n 0000 | an elaborate and remarkable display on a lavish scale -04272054 06 n 04 spectacles 0 specs 0 eyeglasses 0 glasses 0 009 @ 03852280 n 0000 #p 03391301 n 0000 ;u 06295235 n 0000 ~ 02836607 n 0000 %p 02899439 n 0000 ~ 03443912 n 0000 ~ 03690168 n 0000 ~ 03941586 n 0000 ~ 04356056 n 0000 | optical instrument consisting of a frame that holds a pair of lenses for correcting defective vision -04272389 06 n 02 spectator_pump 0 spectator 0 001 @ 04022332 n 0000 | a woman's pump with medium heel; usually in contrasting colors for toe and heel -04272541 06 n 01 spectinomycin 0 001 @ 02716866 n 0000 | an antibiotic used to treat gonorrhea -04272638 06 n 02 spectrogram 0 spectrograph 1 003 @ 03925226 n 0000 + 02800291 a 0201 ~ 04538759 n 0000 | a photographic record of a spectrum -04272782 06 n 01 spectrograph 0 003 @ 04273064 n 0000 + 02800291 a 0101 ~ 04262869 n 0000 | a spectroscope by which spectra can be photographed -04272928 06 n 01 spectrophotometer 0 001 @ 03926876 n 0000 | a photometer for comparing two light radiations wavelength by wavelength -04273064 06 n 02 spectroscope 0 prism_spectroscope 0 006 @ 03852280 n 0000 + 02918271 a 0101 %p 03070587 n 0000 ~ 03726516 n 0000 %p 04005340 n 0000 ~ 04272782 n 0000 | an optical instrument for spectrographic analysis -04273285 06 n 01 speculum 0 001 @ 03739693 n 0000 | a medical instrument for dilating a bodily passage or cavity in order to examine the interior -04273433 06 n 01 speculum 1 001 @ 03773035 n 0000 | a mirror (especially one made of polished metal) for use in an optical instrument -04273569 06 n 01 speedboat 0 002 @ 03790230 n 0000 ~ 03552749 n 0000 | a fast motorboat -04273659 06 n 01 speed_bump 0 001 @ 03520811 n 0000 | a hindrance to speeding created by a crosswise ridge in the surface of a roadway -04273796 06 n 02 speedometer 0 speed_indicator 0 003 @ 03753077 n 0000 #p 03791235 n 0000 ~ 03702582 n 0000 | a meter fixed to a vehicle that measures and displays its speed -04273972 06 n 02 speed_skate 0 racing_skate 0 002 @ 03558404 n 0000 + 01938288 v 0101 | an ice skate with a long blade; worn for racing -04274110 06 n 01 speedway 0 001 @ 04037625 n 0000 | a racetrack for racing automobiles or motorcycles -04274214 06 n 01 speedway 1 001 @ 04096066 n 0000 | road where high speed driving is allowed -04274309 06 n 01 sperm_bank 0 001 @ 03177349 n 0000 | a depository for storing sperm -04274396 06 n 02 spermicide 0 spermatocide 0 002 @ 03096593 n 0000 + 02800427 a 0101 | a contraceptive agent that kills spermatozoa -04274530 06 n 01 sphere 0 005 @ 00021939 n 0000 + 02041229 a 0107 + 02800689 a 0101 + 02041229 a 0106 ~ 03440512 n 0000 | any spherically shaped artifact -04274686 06 n 01 spherometer 0 001 @ 03733925 n 0000 | a measuring instrument for measuring the curvature of a surface -04274807 06 n 01 sphinx 0 001 @ 04306847 n 0000 | one of a number of large stone statues with the body of a lion and the head of a man that were built by the ancient Egyptians -04274985 06 n 01 sphygmomanometer 0 001 @ 04001499 n 0000 | a pressure gauge for measuring blood pressure -04275093 06 n 01 spicemill 0 001 @ 03765561 n 0000 | a mill for grinding spices -04275175 06 n 01 spice_rack 0 001 @ 04038440 n 0000 | a rack for displaying containers filled with spices -04275283 06 n 01 spider 0 001 @ 03400231 n 0000 | a skillet made of cast iron -04275363 06 n 02 spider_web 0 spider's_web 0 005 @ 09477037 n 0000 ~ 03059685 n 0000 ~ 03403873 n 0000 ~ 03853103 n 0000 ~ 04189913 n 0000 | a web spun by spiders to trap insect prey -04275548 06 n 02 spider_web 1 spider's_web 1 001 @ 04568557 n 0000 | a web resembling the webs spun by spiders -04275661 06 n 01 spike 0 005 @ 04285146 n 0000 #p 04199027 n 0000 ~ 03126385 n 0000 ~ 03951068 n 0000 ~ 04002262 n 0000 | sports equipment consisting of a sharp point on the sole of a shoe worn by athletes; "spikes provide greater traction" -04275904 06 n 01 spike 1 002 @ 03804744 n 0000 + 01306175 v 0101 | a large stout nail; "they used spikes to fasten the rails to a railroad tie" -04276050 06 n 02 spike 2 spindle 3 002 @ 03525827 n 0000 + 01306175 v 0101 | any holding device consisting of a rigid, sharp-pointed object; "the spike pierced the receipts and held them in order" -04276249 06 n 01 spike 3 002 @ 03563967 n 0000 + 01444326 v 0104 | a long, thin sharp-pointed implement (wood or metal); "one of the spikes impaled him" -04276404 06 n 01 spike 4 001 @ 04008947 n 0000 | a sharp-pointed projection along the top of a fence or wall (or a dinosaur) -04276531 06 n 01 spike 6 002 @ 03974215 n 0000 ~ 03410303 n 0000 | each of the sharp points on the soles of athletic shoes to prevent slipping (or the shoes themselves); "the second baseman sharpened his spikes before every game"; "golfers' spikes damage the putting greens" -04276808 06 n 03 spike_heel 0 spike 5 stiletto_heel 0 001 @ 03511426 n 0000 | a very high narrow heel on women's shoes -04276929 06 n 01 spike_mike 0 001 @ 03759954 n 0000 | a contact microphone for listening through walls -04277034 06 n 03 spillway 0 spill 0 wasteweir 0 002 @ 03089014 n 0000 + 01542207 v 0201 | a channel that carries excess water over or around a dam or other obstruction -04277204 06 n 02 spinal_anesthetic 0 spinal_anaesthetic 0 002 @ 02710766 n 0000 ~ 03946933 n 0000 | an anesthetic that is injected into the spine -04277352 06 n 01 spindle 0 003 @ 04317420 n 0000 #p 04279462 n 0000 #p 04278932 n 0000 | a stick or pin used to twist the yarn in spinning -04277493 06 n 04 spindle 1 mandrel 0 mandril 0 arbor 1 002 @ 04111190 n 0000 #p 03243218 n 0000 | any of various rotating shafts that serve as axes for larger rotating parts -04277669 06 n 01 spindle 2 002 @ 03932203 n 0000 %s 15098161 n 0000 | a piece of wood that has been turned on a lathe; used as a baluster, chair leg, etc. -04277826 06 n 02 spin_dryer 0 spin_drier 0 001 @ 03050655 n 0000 | a clothes dryer that uses centrifugal motion to dry the clothes that are put into it -04277980 06 n 02 spine 0 backbone 1 002 @ 03892891 n 0000 #p 02870092 n 0000 | the part of a book's cover that encloses the inner side of the book's pages and that faces outward when the book is shelved; "the title and author were printed on the spine of the book" -04278247 06 n 01 spinet 0 001 @ 03496296 n 0000 | early model harpsichord with only one string per note -04278353 06 n 01 spinet 1 001 @ 04515003 n 0000 | a small and compactly built upright piano -04278447 06 n 01 spinnaker 0 001 @ 03505383 n 0000 | a large and usually triangular headsail; carried by a yacht as a headsail when running before the wind -04278605 06 n 01 spinner 0 003 @ 03350602 n 0000 #m 03351434 n 0000 + 02046755 v 0101 | fisherman's lure; revolves when drawn through the water -04278751 06 n 01 spinner 1 002 @ 03414162 n 0000 + 02048051 v 0103 | board game equipment that consists of a dial and an arrow that is spun to determine the next move in the game -04278932 06 n 01 spinning_frame 0 002 @ 04279172 n 0000 %p 04277352 n 0000 | spinning machine that draws, twists, and winds yarn -04279063 06 n 01 spinning_jenny 0 001 @ 04279172 n 0000 | an early spinning machine with multiple spindles -04279172 06 n 01 spinning_machine 0 005 @ 04417180 n 0000 ~ 04278932 n 0000 ~ 04279063 n 0000 ~ 04279462 n 0000 ~ 04429613 n 0000 | a textile machine for spinning yarn and thread -04279353 06 n 01 spinning_rod 0 001 @ 03351979 n 0000 | a fishing rod designed for casting a spinning lure -04279462 06 n 01 spinning_wheel 0 004 @ 04279172 n 0000 %p 03212406 n 0000 %p 03654826 n 0000 %p 04277352 n 0000 | a small domestic spinning machine with a single spindle that is driven by hand or foot -04279666 06 n 02 spiral 1 volute 1 002 @ 03169390 n 0000 + 02317598 a 0205 | ornament consisting of a curve on a plane that winds around a center with an increasing distance from the center -04279858 06 n 01 spiral_bandage 0 001 @ 03838748 n 0000 | an oblique bandage in which successive turns overlap preceding turns -04279987 06 n 02 spiral_ratchet_screwdriver 0 ratchet_screwdriver 0 002 @ 04154565 n 0000 %p 04055180 n 0000 | a screwdriver with a ratchet (so the blade turns in only one direction) and a spiral in the handle (so the blade rotates) with downward pressure on the handle -04280259 06 n 01 spiral_spring 0 002 @ 04288272 n 0000 ~ 03477143 n 0000 | a spring that is wound like a spiral -04280373 06 n 01 spirit_lamp 0 001 @ 03636248 n 0000 | a lamp that burns a volatile liquid fuel such as alcohol -04280487 06 n 01 spirit_stove 0 001 @ 04330340 n 0000 | a stove that burns a volatile liquid fuel such as alcohol -04280603 06 n 01 spirogram 0 001 @ 04063661 n 0000 | a recording of breathing made with a spirograph -04280706 06 n 01 spirograph 0 001 @ 03733925 n 0000 | a measuring instrument for recording the depth and rapidity of breathing movements -04280845 06 n 01 spirometer 0 001 @ 03733925 n 0000 | a measuring instrument for measuring the vital capacity of the lungs -04280970 06 n 01 spit 0 005 @ 04227900 n 0000 #p 04038440 n 0000 + 01444563 v 0102 ~ 02903126 n 0000 ~ 04501281 n 0000 | a skewer for holding meat over a fire -04281131 06 n 01 spitball 0 001 @ 04008634 n 0000 | a projectile made by chewing a piece of paper and shaping it into a sphere -04281260 06 n 02 spittoon 0 cuspidor 0 001 @ 04060904 n 0000 | a receptacle for spit (usually in a public place) -04281375 06 n 03 splashboard 1 splasher 1 dashboard 1 002 @ 04014297 n 0000 #p 04524313 n 0000 | protective covering consisting of a panel to protect people from the splashing water or mud etc. -04281571 06 n 01 splasher 0 002 @ 04014297 n 0000 #p 04576211 n 0000 | a protective covering over or beside a wheel to protect the upper part of a vehicle from splashes of mud -04281749 06 n 01 splat 0 002 @ 04234455 n 0000 #p 04331277 n 0000 | a slat of wood in the middle of the back of a straight chair -04281880 06 n 01 splay 0 001 @ 02833576 n 0000 | an outward bevel around a door or window that makes it seem larger -04281998 06 n 02 splice 1 splicing 0 003 @ 03605915 n 0000 + 01560184 v 0201 + 01560184 v 0101 | a junction where two things (as paper or film or magnetic tape) have been joined together; "the break was due to an imperfect splice" -04282231 06 n 01 splicer 0 002 @ 03736970 n 0000 + 01560184 v 0101 | a mechanical device for joining two pieces of paper or film or magnetic tape -04282379 06 n 01 spline 1 001 @ 04339638 n 0000 | a flexible strip (wood or rubber) used in drawing curved lines -04282494 06 n 01 splint 0 002 @ 03736970 n 0000 + 00083661 v 0101 | an orthopedic mechanical device used to immobilize and protect a part of the body (as a broken leg) -04282664 06 n 01 split 0 002 @ 03385117 n 0000 ;c 00462241 n 0000 | (tenpin bowling) a divided formation of pins left standing after the first bowl; "he was winning until he got a split in the tenth frame" -04282872 06 n 02 split_rail 0 fence_rail 0 002 @ 04046590 n 0000 #p 04046974 n 0000 | a rail that is split from a log -04282992 06 n 01 Spode 0 002 @ 03984234 n 0000 ;u 06851742 n 0000 | a brand of fine English porcelain -04283096 06 n 01 spoiler 0 001 @ 02688443 n 0000 | a hinged airfoil on the upper surface of an aircraft wing that is raised to reduce lift and increase drag -04283255 06 n 01 spoiler 1 001 @ 02688443 n 0000 | an airfoil mounted on the rear of a car to reduce lift at high speeds -04283378 06 n 03 spoke 0 wheel_spoke 0 radius 0 004 @ 04359589 n 0000 #p 02836035 n 0000 #p 02973236 n 0000 #p 04543772 n 0000 | support consisting of a radial member of a wheel joining the hub to the rim -04283585 06 n 01 spokeshave 0 001 @ 03954731 n 0000 | a small plane that has a handle on each side of its blade; used for shaping or smoothing cylindrical wooden surfaces (originally wheel spokes) -04283784 06 n 01 sponge_cloth 0 001 @ 03309808 n 0000 | any soft porous fabric (especially in a loose honeycomb weave) -04283905 06 n 01 sponge_mop 0 001 @ 04367480 n 0000 | a wet mop with a sponge as the absorbent -04284002 06 n 01 spoon 0 011 @ 03153375 n 0000 @ 03094503 n 0000 + 01579622 v 0101 ~ 03180384 n 0000 ~ 04119630 n 0000 ~ 04263502 n 0000 ~ 04350769 n 0000 ~ 04381073 n 0000 ~ 04397860 n 0000 ~ 04398688 n 0000 ~ 04597913 n 0000 | a piece of cutlery with a shallow bowl-shaped container and a handle; used to stir or serve or take up food -04284341 06 n 01 spoon 1 001 @ 04597066 n 0000 | formerly a golfing wood with an elevated face -04284438 06 n 01 Spork 0 001 @ 03153375 n 0000 | trademark for a plastic eating utensil that has both tines and a bowl like a spoon -04284572 06 n 01 sporran 0 001 @ 03993180 n 0000 | a fur or leather pouch worn at the front of the kilt as part of the traditional dress of Scottish Highlanders -04284735 06 n 01 sporting_goods 0 003 @ 04285146 n 0000 @ 03076708 n 0000 ;u 06295235 n 0000 | sports equipment sold as a commodity -04284869 06 n 02 sport_kite 0 stunt_kite 0 001 @ 03621473 n 0000 | a maneuverable kite controlled by two lines and flown with both hands -04285008 06 n 02 sports_car 0 sport_car 0 001 @ 02958343 n 0000 | a small low car with a high-powered engine; usually seats two persons -04285146 06 n 01 sports_equipment 0 021 @ 03294048 n 0000 ~ 02772554 n 0000 ~ 02799897 n 0000 ~ 02802721 n 0000 ~ 02885338 n 0000 ~ 03132261 n 0000 ~ 03134853 n 0000 ~ 03206602 n 0000 ~ 03446832 n 0000 ~ 03472232 n 0000 ~ 03482001 n 0000 ~ 03594148 n 0000 ~ 03727946 n 0000 ~ 03795269 n 0000 ~ 04206070 n 0000 ~ 04225729 n 0000 ~ 04275661 n 0000 ~ 04284735 n 0000 ~ 04318131 n 0000 ~ 04394261 n 0000 ~ 04571292 n 0000 | equipment needed to participate in a particular sport -04285622 06 n 01 sports_implement 0 006 @ 03563967 n 0000 ~ 02809491 n 0000 ~ 03145522 n 0000 ~ 03715892 n 0000 ~ 03977158 n 0000 ~ 04039381 n 0000 | an implement used in a sport -04285803 06 n 03 sportswear 0 athletic_wear 0 activewear 0 003 @ 02756098 n 0000 ~ 03472672 n 0000 ~ 04120695 n 0000 | attire worn for sport or for casual wear -04285965 06 n 04 sport_utility 0 sport_utility_vehicle 0 S.U.V. 0 SUV 0 001 @ 02958343 n 0000 | a high-performance four-wheel drive car built on a truck chassis -04286128 06 n 01 spot 0 005 @ 03953020 n 0000 ~ 02931417 n 0000 ~ 03044537 n 0000 ~ 03543511 n 0000 ~ 03601335 n 0000 | a business establishment for entertainment; "night spot" -04286307 06 n 01 spot 2 008 @ 03963982 n 0000 ~ 03267340 n 0000 ~ 03353783 n 0000 ~ 03388826 n 0000 ~ 03825548 n 0000 ~ 04178062 n 0000 ~ 04225417 n 0000 ~ 04411142 n 0000 | a playing card with a specified number of pips on it to indicate its value; "an eight-spot" -04286575 06 n 02 spotlight 0 spot 1 003 @ 03636248 n 0000 #m 04418644 n 0000 + 00292368 v 0101 | a lamp that produces a strong beam of light to illuminate a restricted area; used to focus attention of a stage performer -04286796 06 n 01 spot_market 0 001 @ 03077074 n 0000 | a market in which a commodity is bought or sold for immediate delivery or delivery in the very near future -04286960 06 n 02 spot_weld 0 spot-weld 0 005 @ 04571958 n 0000 + 01596056 v 0201 + 01596056 v 0202 + 01596056 v 0101 + 01596056 v 0102 | each of the welds made by welding at a separate point -04287153 06 n 01 spout 0 006 @ 03848729 n 0000 #p 03944672 n 0000 #p 04560292 n 0000 + 02068413 v 0104 ~ 03418618 n 0000 ~ 03833564 n 0000 | an opening that allows the passage of liquids or grain -04287351 06 n 01 spouter 0 002 @ 03845360 n 0000 + 02068413 v 0104 | an oil well that is spouting -04287451 06 n 01 sprag 0 001 @ 03023878 n 0000 | a chock or bar wedged under a wheel or between the spokes to prevent a vehicle from rolling down an incline -04287610 06 n 01 spray 1 001 @ 03368141 n 0000 | flower arrangement consisting of a single branch or shoot bearing flowers and foliage -04287747 06 n 01 spray_gun 0 001 @ 02730265 n 0000 | an applicator resembling a gun for applying liquid substances (as paint) in the form of a spray -04287898 06 n 01 spray_paint 0 001 @ 03875218 n 0000 | paint applied with a spray gun -04287986 06 n 01 spreader 0 004 @ 03489162 n 0000 + 01378556 v 0101 + 01611746 v 0101 + 01611901 v 0101 | a hand tool for spreading something; "he used his knife as a spreader" -04288165 06 n 01 sprig 0 001 @ 03169390 n 0000 | an ornament that resembles a spray of leaves or flowers -04288272 06 n 01 spring 0 006 @ 03267972 n 0000 ~ 02822399 n 0000 ~ 03066359 n 0000 ~ 03652389 n 0000 ~ 03712444 n 0000 ~ 04280259 n 0000 | a metal elastic device that returns to its shape or position when pushed or pulled or pressed; "the spring was broken" -04288533 06 n 02 spring_balance 0 spring_scale 0 001 @ 02777100 n 0000 | a balance that measure weight by the tension on a helical spring -04288673 06 n 01 springboard 0 002 @ 02856463 n 0000 ~ 03216080 n 0000 | a flexible board for jumping upward -04288784 06 n 02 springer 0 impost 0 002 @ 04326084 n 0000 #p 02733524 n 0000 | the lowest stone in an arch -- from which it springs -04288919 06 n 01 spring_mattress 0 001 @ 03731164 n 0000 | a mattress containing springs in a rigid frame -04289027 06 n 01 sprinkler 0 003 @ 03736970 n 0000 + 00228655 v 0101 + 01374767 v 0101 | mechanical device that attaches to a garden hose for watering lawn or garden -04289195 06 n 01 sprinkler_system 0 003 @ 04377057 n 0000 %p 03833564 n 0000 %p 04212573 n 0000 | a system for extinguishing fires; water from a network of overhead pipes is released through nozzles that open automatically with the rise in temperature -04289449 06 n 01 sprit 0 002 @ 04267577 n 0000 #p 04289576 n 0000 | a light spar that crosses a fore-and-aft sail diagonally -04289576 06 n 01 spritsail 0 002 @ 03381776 n 0000 %p 04289449 n 0000 | a fore-and-aft sail extended by a sprit -04289690 06 n 02 sprocket 0 sprocket_wheel 0 002 @ 04574999 n 0000 #p 02834778 n 0000 | thin wheel with teeth that engage with a chain -04289827 06 n 01 sprocket 2 002 @ 04101497 n 0000 #p 02942699 n 0000 | roller that has teeth on the rims to pull film or paper through -04289964 06 n 02 spud 0 stump_spud 0 001 @ 03488603 n 0000 | a sharp hand shovel for digging out roots and weeds -04290079 06 n 01 spun_yarn 0 002 @ 04245703 n 0000 ;c 00314469 n 0000 | (nautical) small stuff consisting of a lightweight rope made of several rope yarns loosely wound together -04290259 06 n 02 spur 0 gad 0 005 @ 04007664 n 0000 #p 02872752 n 0000 + 01241379 v 0101 + 01241253 v 0101 %p 04115144 n 0000 | a sharp prod fixed to a rider's heel and used to urge a horse onward; "cowboys know not to squat with their spurs on" -04290507 06 n 02 spur_gear 0 spur_wheel 0 001 @ 03430551 n 0000 | gear wheels that mesh in the same plane -04290615 06 n 01 sputnik 0 001 @ 04137444 n 0000 | a Russian artificial satellite; "Sputnik was the first man-made satellite to orbit the earth" -04290762 06 n 01 spy_satellite 0 001 @ 04137444 n 0000 | a satellite with sensors to detect nuclear explosions -04290875 06 n 01 squab 0 001 @ 04256520 n 0000 | a soft padded sofa -04290945 06 n 01 squad_room 1 002 @ 04105893 n 0000 #p 02794779 n 0000 | a room in a barracks where soldiers are billeted -04291069 06 n 01 squad_room 2 002 @ 04105893 n 0000 #p 03977678 n 0000 | a room in a police station where members of the force assemble for roll call and duty assignments -04291242 06 n 01 square 0 004 @ 03489162 n 0000 ~ 02967170 n 0000 ~ 04493109 n 0000 ~ 04493259 n 0000 | a hand tool consisting of two straight arms at right angles; used to construct or test right angles; "the carpenter who built this room must have lost his square" -04291511 06 n 01 square 1 004 @ 00021939 n 0000 #p 03011521 n 0000 + 01987493 v 0101 + 00145448 v 0101 | any artifact having a shape similar to a plane geometric figure with four equal sides and four right angles; "a checkerboard has 64 squares" -04291759 06 n 01 square_knot 0 002 @ 03627232 n 0000 ~ 04067353 n 0000 | a double knot made of two half hitches and used to join the ends of two cords -04291912 06 n 01 square_nut 0 001 @ 03836191 n 0000 | nut with a square shape -04291992 06 n 01 square-rigger 0 001 @ 04128837 n 0000 | a square-rigged sailing ship -04292080 06 n 01 square_sail 0 001 @ 04127904 n 0000 | a four-sided sail set beneath a horizontal yard suspended at the middle from a mast -04292221 06 n 01 squash_ball 0 001 @ 02778669 n 0000 | rubber ball used in playing squash -04292313 06 n 01 squash_court 0 001 @ 03120491 n 0000 | the indoor court in which squash is played -04292414 06 n 03 squash_racket 0 squash_racquet 0 bat 3 002 @ 04039381 n 0000 + 01413173 v 0301 | a small racket with a long handle used for playing squash -04292572 06 n 03 squawk_box 0 squawker 0 intercom_speaker 0 002 @ 03691459 n 0000 #p 03578055 n 0000 | the loudspeaker on an intercom or public address system -04292733 06 n 01 squeaker 0 002 @ 00021939 n 0000 + 02171664 v 0102 | any artifact that makes a squeaking sound when used; "those sneakers are squeakers"; "which hinge is the squeaker?" -04292921 06 n 01 squeegee 0 002 @ 03039947 n 0000 + 01392790 v 0101 | T-shaped cleaning implement with a rubber edge across the top; drawn across a surface to remove water (as in washing windows) -04293119 06 n 01 squeezer 0 003 @ 03621049 n 0000 + 01593937 v 0105 ~ 04059516 n 0000 | a kitchen utensil for squeezing juice from fruit -04293258 06 n 03 squelch_circuit 0 squelch 0 squelcher 0 002 @ 03033362 n 0000 + 00463234 v 0301 | an electric circuit that cuts off a receiver when the signal becomes weaker than the noise -04293450 06 n 01 squib 0 001 @ 03348454 n 0000 | firework consisting of a tube filled with powder (as a broken firecracker) that burns with a fizzing noise -04293608 06 n 02 saquinavir 0 Invirase 0 001 @ 04013993 n 0000 | a weak protease inhibitor (trade name Invirase) used in treating HIV -04293744 06 n 01 squinch 0 002 @ 02733524 n 0000 ~ 04491312 n 0000 | a small arch built across the interior angle of two walls (usually to support a spire) -04293902 06 n 01 squirrel_cage 0 001 @ 02936714 n 0000 | cage with a cylindrical framework that rotates as a small animal runs inside it -04294041 06 n 01 stabile 0 002 @ 04157320 n 0000 ! 03776291 n 0101 | a sculpture having fixed units (usually constructed of sheet metal) and attached to a fixed support -04294212 06 n 02 stabilizer 0 stabiliser 0 007 @ 03183080 n 0000 + 00270826 v 0202 + 00270826 v 0101 ~ 03340581 n 0000 ~ 03473465 n 0000 ~ 03861271 n 0000 ~ 04294614 n 0000 | a device for making something stable -04294426 06 n 01 stabilizer 1 005 @ 02688443 n 0000 #p 04384016 n 0000 + 00270826 v 0101 ~ 03536568 n 0000 ~ 04529962 n 0000 | airfoil consisting of a device for stabilizing an aircraft -04294614 06 n 02 stabilizer_bar 0 anti-sway_bar 0 004 @ 02788689 n 0000 @ 04294212 n 0000 #p 02958343 n 0000 #p 04490091 n 0000 | a rigid metal bar between the front suspensions and between the rear suspensions of cars and trucks; serves to stabilize the chassis -04294879 06 n 03 stable 0 stalls 0 horse_barn 0 005 @ 03322570 n 0000 + 02459915 v 0101 ~i 02758270 n 0000 ~ 03679274 n 0000 %p 04299370 n 0000 | a farm building for housing horses or other livestock -04295081 06 n 03 stable_gear 0 saddlery 0 tack 1 011 @ 03430959 n 0000 + 01492422 v 0201 ~ 02844714 n 0000 ~ 02955540 n 0000 ~ 03031756 n 0000 ~ 03480973 n 0000 ~ 03494706 n 0000 ~ 03503718 n 0000 ~ 03723885 n 0000 ~ 04124202 n 0000 ~ 04612840 n 0000 | gear for a horse -04295353 06 n 01 stabling 0 002 @ 02672371 n 0000 + 02459915 v 0101 | accommodation for animals (especially for horses) -04295475 06 n 01 stacked_heel 0 001 @ 03511426 n 0000 | a heel made of many layers of leather -04295571 06 n 01 stacks 0 003 @ 04328946 n 0000 #p 03660664 n 0000 ;u 06295235 n 0000 | storage space in a library consisting of an extensive arrangement of bookshelves where most of the books are stored -04295777 06 n 01 staddle 0 001 @ 02797692 n 0000 | a base or platform on which hay or corn is stacked -04295881 06 n 04 stadium 0 bowl 3 arena 1 sports_stadium 0 014 @ 04341686 n 0000 ~ 02704949 n 0000 ~ 02782778 n 0000 ~ 02918112 n 0000 ~ 03035089 n 0000 ~ 03220692 n 0000 %p 03333480 n 0000 ~ 03379204 n 0000 ~ 03522003 n 0000 ~ 04232312 n 0000 %p 04300741 n 0000 %p 04302334 n 0000 %p 04434285 n 0000 %p 08570758 n 0000 | a large structure for open-air sports or entertainments -04296261 06 n 01 staff 0 009 @ 04317420 n 0000 ~ 02698634 n 0000 ~ 02809736 n 0000 ~ 03134118 n 0000 ~ 03141823 n 0000 ~ 03212406 n 0000 ~ 03355925 n 0000 ~ 03935789 n 0000 ~ 04032509 n 0000 | a strong rod or stick with a specialized utilitarian purpose; "he walked with the help of a wooden staff" -04296562 06 n 01 stage 0 011 @ 03961939 n 0000 #p 04417809 n 0000 + 01711445 v 0101 ~ 03229526 n 0000 ~ 03773268 n 0000 ~ 04013362 n 0000 ~ 04418818 n 0000 %p 04515630 n 0000 ~ 04592962 n 0000 %p 08625297 n 0000 %p 08625684 n 0000 | a large platform on which people can stand and can be seen by an audience; "he clambered up onto the stage and got the actors to help him into the box" -04296949 06 n 02 stage 2 microscope_stage 0 001 @ 03961939 n 0000 | a small platform on a microscope where the specimen is mounted for examination -04297098 06 n 02 stagecoach 0 stage 1 001 @ 03055670 n 0000 | a large coach-and-four formerly used to carry passengers and mail on regular routes between towns; "we went out of town together by stage about ten or twelve miles" -04297327 06 n 01 stage_door 0 001 @ 03290771 n 0000 | an entrance to the backstage area of theater; used by performers and other theater personnel -04297476 06 n 02 stage_set 0 set 0 004 @ 04076846 n 0000 #p 03773268 n 0000 ~ 04145056 n 0000 %p 04176889 n 0000 | representation consisting of the scenery and other properties used to identify the location of a dramatic production; "the sets were meticulously authentic" -04297750 06 n 01 stained-glass_window 0 001 @ 04587648 n 0000 | a window made of stained glass -04297847 06 n 01 stair-carpet 0 001 @ 04118021 n 0000 | a strip of carpet for laying on stairs -04297944 06 n 01 stairhead 0 002 @ 03961939 n 0000 #p 04298308 n 0000 | platform at the top of a staircase -04298053 06 n 01 stair-rod 0 001 @ 04100174 n 0000 | a rod that holds a stair-carpet in the angle between two steps -04298171 06 n 02 stairs 0 steps 0 003 @ 04298308 n 0000 ;u 06295235 n 0000 ~ 03632277 n 0000 | a flight of stairs or a flight of steps -04298308 06 n 02 stairway 0 staircase 0 013 @ 04564698 n 0000 #p 02913152 n 0000 ~ 02771166 n 0000 ~ 03079616 n 0000 ~ 03295773 n 0000 ~ 03345658 n 0000 ~ 03363059 n 0000 ~ 03436075 n 0000 %p 03638511 n 0000 %p 04297944 n 0000 ~ 04298171 n 0000 %p 04314914 n 0000 ~ 04615728 n 0000 | a way of access (upward and downward) consisting of a set of steps -04298661 06 n 01 stairwell 0 001 @ 04572800 n 0000 | a vertical well around which there is a stairway -04298765 06 n 01 stake 0 001 @ 03988170 n 0000 | a strong wooden or metal post with a point at one end so it can be driven into the ground -04298906 06 n 01 stake 1 002 @ 03575691 n 0000 + 01572003 v 0102 | instrument of execution consisting of a vertical post that a victim is tied to for burning -04299066 06 n 01 stalking-horse 0 001 @ 04151940 n 0000 | screen consisting of a figure of a horse behind which a hunter hides while stalking game -04299215 06 n 03 stall 1 stand 5 sales_booth 0 003 @ 02874086 n 0000 ~ 03063834 n 0000 ~ 03822656 n 0000 | a booth where articles are displayed for sale -04299370 06 n 01 stall 3 003 @ 03079741 n 0000 #p 04294879 n 0000 + 02460070 v 0101 | a compartment in a stable where a single animal is confined and fed -04299526 06 n 01 stall_bar 0 001 @ 03472232 n 0000 | a gymnastic apparatus used for strengthening exercises; uprights fastened to a wall and connected by horizontal rungs -04299699 06 n 01 stall 4 002 @ 04162998 n 0000 ;r 08860123 n 0000 | seating in the forward part of the main level of a theater -04299828 06 n 01 stammel 0 001 @ 03309808 n 0000 | a coarse woolen cloth formerly used for undergarments and usually dyed bright red -04299963 06 n 01 stamp 2 002 @ 03192790 n 0000 + 01531265 v 0103 | a block or die used to imprint a mark or design -04300080 06 n 02 stamp 3 pestle 2 004 @ 03699975 n 0000 #p 02810782 n 0000 + 00331842 v 0201 + 01594362 v 0101 | machine consisting of a heavy bar that moves vertically for pounding or crushing ores -04300281 06 n 01 stamp_album 0 001 @ 02695079 n 0000 | an album for stamps -04300358 06 n 02 stamp_mill 0 stamping_mill 0 003 @ 03316406 n 0000 ~ 02810782 n 0000 ~ 04032603 n 0000 | a mill in which ore is crushed with stamps -04300509 06 n 02 stamping_machine 0 stamper 0 002 @ 03997484 n 0000 + 01624568 v 0201 | a power tool that stamps; "a metal stamper" -04300643 06 n 01 stanchion 0 001 @ 03988170 n 0000 | any vertical post or rod used as a support -04300741 06 n 01 stand 1 006 @ 04434285 n 0000 #p 02782778 n 0000 #p 04295881 n 0000 ~ 02850552 n 0000 ~ 03452953 n 0000 ~ 04086150 n 0000 | tiered seats consisting of a structure (often made of wood) where people can sit to watch an event (game or parade) -04301000 06 n 01 stand 4 002 @ 04379243 n 0000 ~ 03653583 n 0000 | a small table for holding articles of various kinds; "a bedside stand" -04301140 06 n 02 standard 1 banner 1 002 @ 03354903 n 0000 ~ 03855464 n 0000 | any distinctive flag -04301242 06 n 01 standard 2 002 @ 03988170 n 0000 + 01546768 v 0101 | an upright pole or beam (especially one used as a support); "distance was marked by standards every mile"; "lamps supported on standards provided illumination" -04301474 06 n 01 standard_cell 0 003 @ 04540761 n 0000 ~ 03038041 n 0000 ~ 04573379 n 0000 | a primary cell used as a standard of electromotive force -04301626 06 n 01 standard_gauge 0 002 @ 04048075 n 0000 @ 05130028 n 0000 | railroad track having the standard width of 56.5 inches -04301760 06 n 02 standard_transmission 0 stick_shift 0 001 @ 04472243 n 0000 | a transmission that is operated manually with a gear lever and a clutch pedal -04301919 06 n 01 standby 0 002 @ 04424218 n 0000 + 02638444 v 0101 | something that can be relied on when needed -04302034 06 n 01 standee 0 001 @ 03153821 n 0000 | a lifesize cardboard cutout (usually of a celebrity); "he had his picture taken with a standee of the president" -04302200 06 n 01 standing_press 0 002 @ 04000311 n 0000 %p 03490649 n 0000 | a large printing press that exerts pressure vertically -04302334 06 n 01 standing_room 0 003 @ 13777764 n 0000 #p 04417809 n 0000 #p 04295881 n 0000 | room for passengers or spectators to stand; "there was standing room for thousands more people" -04302527 06 n 01 standpipe 0 001 @ 03944672 n 0000 | a vertical pipe -04302598 06 n 02 St._Andrew's_cross 0 saltire 0 001 @ 03135152 n 0000 | a cross resembling the letter x, with diagonal bars of equal length -04302740 06 n 02 Stanford_University 0 Stanford 0 002 @i 04511002 n 0000 #p 09064468 n 0000 | a university in California -04302863 06 n 01 stanhope 0 001 @ 02968473 n 0000 | a light open horse-drawn carriage with two or four wheels and one seat -04302988 06 n 01 Stanley_Steamer 0 002 @ 02958343 n 0000 ;u 06851742 n 0000 | a steam-powered automobile -04303095 06 n 01 staple 2 002 @ 03887185 n 0000 + 01367069 v 0101 | paper fastener consisting of a short length of U-shaped wire that can fasten papers together -04303258 06 n 01 staple 3 001 @ 03804744 n 0000 | a short U-shaped wire nail for securing cables -04303357 06 n 03 staple_gun 0 staplegun 0 tacker 0 002 @ 03699975 n 0000 + 01357429 v 0301 | a hand-held machine for driving staples home -04303497 06 n 02 stapler 0 stapling_machine 0 002 @ 03699975 n 0000 + 01367069 v 0101 | a machine that inserts staples into sheets of paper in order to fasten them together -04303672 06 n 01 starboard 0 003 @ 04213626 n 0000 + 01932951 v 0101 ! 03642928 n 0101 | the right side of a ship or aircraft to someone who is aboard and facing the bow or nose -04303852 06 n 01 star_drill 0 001 @ 02875436 n 0000 | a steel rock drill with a star-shaped point that is used for making holes in stones or masonry; it is operated by hitting the end with a hammer while rotating it between blows -04304084 06 n 02 Stars_and_Bars 0 Confederate_flag 0 001 @ 03354903 n 0000 | the first flag of the Confederate States of America -04304215 06 n 02 starship 0 spaceship 0 001 @ 04264914 n 0000 | a spacecraft designed to carry a crew into interstellar space (especially in science fiction) -04304375 06 n 03 starter 2 starter_motor 0 starting_motor 0 004 @ 03273061 n 0000 #p 03270165 n 0000 ~ 03616763 n 0000 ~ 04170515 n 0000 | an electric motor for starting an engine -04304557 06 n 01 starting_block 0 001 @ 02852523 n 0000 | block providing bracing for a runner's feet at start of a race -04304680 06 n 02 starting_gate 0 starting_stall 0 001 @ 02796623 n 0000 | a movable barrier on the starting line of a race course -04304812 06 n 01 stash_house 0 002 @ 03545150 n 0000 ;c 00759694 n 0000 | a house where weapons and supplies are hidden; "attacks on stash houses is the most frequently used method of counterterrorism" -04305016 06 n 02 Stassano_furnace 0 electric-arc_furnace 0 002 @ 03271865 n 0000 #p 04311595 n 0000 | an electric furnace in which an electric arc provides the source of heat for making steel -04305210 06 n 01 Statehouse 0 001 @ 03449564 n 0000 | a government building in which a state legislature meets -04305323 06 n 01 stately_home 0 002 @ 03719053 n 0000 ;r 08860123 n 0000 | a mansion that is (or formerly was) occupied by an aristocratic family -04305471 06 n 01 state_prison 0 001 @ 04005630 n 0000 | a prison maintained by a state of the U.S. -04305572 06 n 01 stateroom 0 001 @ 02932227 n 0000 | a guest cabin -04305641 06 n 01 static_line 0 002 @ 03106110 n 0000 #p 03888257 n 0000 | a cord used instead of a ripcord to open a parachute; the cord is attached at one end to the aircraft and temporarily attached to the pack of a parachute at the other; it opens the parachute after the jumper is clear of the plane -04305947 06 n 01 static_tube 0 001 @ 03733925 n 0000 | a measuring instrument used to measure static pressure in a stream of fluid -04306080 06 n 01 station 0 010 @ 03315023 n 0000 ~ 02903405 n 0000 ~ 03347338 n 0000 ~ 03349599 n 0000 ~ 03839534 n 0000 ~ 03977678 n 0000 ~ 03996655 n 0000 ~ 04175859 n 0000 ~ 04348702 n 0000 ~ 04412901 n 0000 | a facility equipped with special equipment and personnel for a particular purpose; "he started looking for a gas station"; "the train pulled into the station" -04306454 06 n 01 Station_of_the_Cross 0 001 @ 04076846 n 0000 | a representation of any of the 14 stages in Christ's journey to Calvary -04306592 06 n 02 stator 0 stator_coil 0 005 @ 03736970 n 0000 #p 04498523 n 0000 #p 03273061 n 0000 #p 03433877 n 0000 ! 04111962 n 0101 | mechanical device consisting of the stationary part of a motor or generator in or around which the rotor revolves -04306847 06 n 01 statue 0 010 @ 04157320 n 0000 + 02896383 a 0101 + 03336459 n 0102 ~i 03073016 n 0000 ~ 03515728 n 0000 ~ 03835298 n 0000 ~ 03846431 n 0000 ~ 04274807 n 0000 ~i 04307106 n 0000 ~ 04413723 n 0000 | a sculpture representing a human or animal -04307106 06 n 01 Statue_of_Liberty 0 002 @i 04306847 n 0000 @i 03743902 n 0000 | a large monumental statue symbolizing liberty on Liberty Island in New York Bay -04307269 06 n 02 stave 0 lag 0 002 @ 04234455 n 0000 #p 02795169 n 0000 | one of several thin slats of wood forming the sides of a barrel or bucket -04307419 06 n 01 stay 0 004 @ 02886599 n 0000 ;c 00314469 n 0000 ~ 02771286 n 0000 ~ 03383211 n 0000 | (nautical) brace consisting of a heavy rope or wire cable used as a support for a mast or spar -04307619 06 n 01 stay 1 002 @ 04339291 n 0000 + 01344643 v 0101 | a thin strip of metal or bone that is used to stiffen a garment (e.g. a corset) -04307767 06 n 01 staysail 0 001 @ 03381776 n 0000 | a fore-and-aft sail set on a stay (as between two masts) -04307878 06 n 02 steakhouse 0 chophouse 0 001 @ 04081281 n 0000 | a restaurant that specializes in steaks -04307986 06 n 01 steak_knife 0 001 @ 04380346 n 0000 | a sharp table knife used in eating steak -04308084 06 n 01 stealth_aircraft 0 003 @ 02686568 n 0000 ~ 04308273 n 0000 ~ 04308397 n 0000 | an aircraft designed in accordance with technology that makes detection by radar difficult -04308273 06 n 01 stealth_bomber 0 002 @ 02867715 n 0000 @ 04308084 n 0000 | a bomber that is difficult to detect by radar -04308397 06 n 01 stealth_fighter 0 002 @ 03335030 n 0000 @ 04308084 n 0000 | a fighter that is difficult to detect by radar; is built for precise targeting and uses laser-guided bombs -04308583 06 n 04 steam_bath 0 steam_room 0 vapor_bath 0 vapour_bath 0 003 @ 04105893 n 0000 ~ 04139395 n 0000 ~ 04499300 n 0000 | a room that can be filled with steam in which people bathe; `vapour bath' is a British term -04308807 06 n 01 steamboat 0 002 @ 02858304 n 0000 ~ 04208760 n 0000 | a boat propelled by a steam engine -04308915 06 n 01 steam_chest 0 002 @ 03003730 n 0000 #p 04309049 n 0000 | the chamber from which steam is distributed to a cylinder -04309049 06 n 01 steam_engine 0 006 @ 03307573 n 0000 #p 04310018 n 0000 #p 04309348 n 0000 %p 02863750 n 0000 %p 03137044 n 0000 %p 04308915 n 0000 | external-combustion engine in which heat is used to raise steam which either turns a turbine or forces a piston to move up and down in a cylinder -04309348 06 n 02 steamer 0 steamship 0 006 @ 04194289 n 0000 + 01944976 v 0102 + 01944976 v 0101 ~ 03874138 n 0000 %p 04309049 n 0000 ~ 04469684 n 0000 | a ship powered by one or more steam engines -04309548 06 n 01 steamer 1 002 @ 03101986 n 0000 + 00327145 v 0101 | a cooking utensil that can be used to cook food by steaming it -04309682 06 n 02 steam_heat 0 steam_heating 0 001 @ 03509025 n 0000 | a heating system in which steam is generated in boilers and piped to radiators -04309833 06 n 01 steam_iron 0 001 @ 03584829 n 0000 | a pressing iron that can emit steam -04309925 06 n 02 steam_line 0 steam_pipe 0 001 @ 03944672 n 0000 | a pipe conducting steam -04310018 06 n 01 steam_locomotive 0 003 @ 03684823 n 0000 %p 03344509 n 0000 %p 04309049 n 0000 | a locomotive powered by a steam engine -04310157 06 n 02 steamroller 0 road_roller 0 003 @ 04524313 n 0000 + 00464006 v 0102 + 01594514 v 0101 | vehicle equipped with heavy wide smooth rollers for compacting roads and pavements -04310347 06 n 02 steamship_company 0 steamship_line 0 002 @ 03671473 n 0000 ~ 08293336 n 0000 | a line responsible for the operation of a fleet of steamships -04310507 06 n 01 steam_shovel 0 001 @ 03996416 n 0000 | a power shovel that is driven by steam -04310604 06 n 01 steam_turbine 0 001 @ 04498523 n 0000 | turbine in which steam strikes blades and makes them turn -04310721 06 n 01 steam_whistle 0 003 @ 04579432 n 0000 #p 02940706 n 0000 #p 02863750 n 0000 | a whistle in which the sound is produced by steam; usually attached to a steam boiler -04310904 06 n 01 steel 0 001 @ 04185071 n 0000 | knife sharpener consisting of a ridged steel rod -04311004 06 n 01 steel_arch_bridge 0 004 @ 02898711 n 0000 ~i 02813089 n 0000 ~i 03822015 n 0000 ~i 04374608 n 0000 | a steel bridge constructed in the form of an arch -04311174 06 n 01 steel_drum 0 001 @ 03915437 n 0000 | a concave percussion instrument made from the metal top of an oil drum; has an array of flattened areas that produce different tones when struck (of Caribbean origin) -04311397 06 n 01 steel_engraving 0 001 @ 03289025 n 0000 | engraving on a steel plate -04311485 06 n 01 steel_engraving 1 001 @ 03289268 n 0000 | an impression taken from an engraved steel plate -04311595 06 n 04 steel_mill 0 steelworks 0 steel_plant 0 steel_factory 0 005 @ 03316406 n 0000 %p 02831998 n 0000 %p 02849885 n 0000 ~ 04103094 n 0000 %p 04305016 n 0000 | a factory where steel is made -04311799 06 n 01 steel_plate 0 001 @ 03959485 n 0000 | a plate of steel -04311873 06 n 01 steel_trap 0 001 @ 04474466 n 0000 | a trap made of steel with a strong spring and sharp toothlike projections to hold the prey -04312020 06 n 01 steel-wool_pad 0 001 @ 02668393 n 0000 | abrader consisting of a pad of steel wool used for polishing or smoothing -04312154 06 n 03 steelyard 0 lever_scale 0 beam_scale 0 001 @ 02777100 n 0000 | a portable balance consisting of a pivoted bar with arms of unequal length -04312311 06 n 01 steeper 0 002 @ 04531098 n 0000 + 00327362 v 0101 | a vessel (usually a pot or vat) used for steeping -04312432 06 n 02 steeple 0 spire 0 003 @ 04460130 n 0000 ;c 01032368 n 0000 ~ 03943266 n 0000 | a tall tower that forms the superstructure of a building (usually a church or temple) and that tapers to a point at the top -04312654 06 n 01 steerage 0 001 @ 02672371 n 0000 | the cheapest accommodations on a passenger ship -04312756 06 n 01 steering_gear 0 002 @ 03431243 n 0000 #p 04313220 n 0000 | a gear that couples the steering wheel to the steering linkage of a motor vehicle -04312916 06 n 01 steering_linkage 0 003 @ 03738472 n 0000 #p 04313220 n 0000 %p 04434531 n 0000 | mechanism consisting of a system of rods and levers connected to the front wheels of a motor vehicle; the steering gear pushes it left or right which swivels the front wheels, causing the vehicle to turn -04313220 06 n 02 steering_system 0 steering_mechanism 0 008 @ 03738472 n 0000 ;c 03791235 n 0000 ~ 03512911 n 0000 ~ 03996849 n 0000 ~ 04117216 n 0000 %p 04312756 n 0000 %p 04312916 n 0000 %p 04313503 n 0000 | a mechanism by which something is steered (especially a motor vehicle) -04313503 06 n 02 steering_wheel 0 wheel 5 002 @ 03490449 n 0000 #p 04313220 n 0000 | a handwheel that is used for steering -04313628 06 n 02 stele 0 stela 0 003 @ 04326084 n 0000 @ 02724026 n 0000 ~i 06405891 n 0000 | an ancient upright stone slab bearing markings -04313771 06 n 01 stem 1 002 @ 04493505 n 0000 #p 03945167 n 0000 | the tube of a tobacco pipe -04313867 06 n 01 stemmer 0 001 @ 03183080 n 0000 | a device for removing stems from fruit (as from grapes or apples) -04313986 06 n 01 stemmer 1 001 @ 04387706 n 0000 | a miner's tamping bar for ramming packing in over a blasting charge -04314107 06 n 01 stem-winder 0 001 @ 04555897 n 0000 | a watch that is wound by turning a knob at the stem -04314216 06 n 01 stencil 0 002 @ 04188643 n 0000 + 01749660 v 0101 | a sheet of material (metal, plastic, cardboard, waxed paper, silk, etc.) that has been perforated with a pattern (printing or a design); ink or paint can pass through the perforations to create the printed pattern on the surface below -04314522 06 n 01 Sten_gun 0 002 @ 04347519 n 0000 ;r 08860123 n 0000 | a lightweight British submachine gun -04314632 06 n 01 stenograph 0 001 @ 04505036 n 0000 | a machine for typewriting shorthand characters -04314735 06 n 01 stent 0 001 @ 04493505 n 0000 | a slender tube inserted inside a tubular body part (as a blood vessel) to provide support during and after surgical anastomosis -04314914 06 n 02 step 0 stair 0 006 @ 04359589 n 0000 #p 04298308 n 0000 + 02330247 v 0101 ~ 03105810 n 0000 %p 04094720 n 0000 %p 04476831 n 0000 | support consisting of a place to rest the foot while ascending or descending a stairway; "he paused on the bottom step" -04315185 06 n 01 step 1 002 @ 02852523 n 0000 + 01256487 v 0101 | a solid block joined to the beams in which the heel of a ship's mast or capstan is fixed -04315342 06 n 01 step-down_transformer 0 001 @ 04471315 n 0000 | a transformer that reduces voltage -04315444 06 n 02 stepper 0 stepping_motor 0 001 @ 03789946 n 0000 | a motor (especially an electric motor) that moves or rotates in small discrete steps -04315599 06 n 02 step_ladder 0 stepladder 0 001 @ 03632277 n 0000 | a folding portable ladder hinged at the top -04315713 06 n 01 step_stool 0 001 @ 04326896 n 0000 | a stool that has one or two steps that fold under the seat -04315828 06 n 01 step-up_transformer 0 002 @ 04471315 n 0000 ~ 02974565 n 0000 | a transformer that increases voltage -04315948 06 n 04 stereo 0 stereophony 0 stereo_system 0 stereophonic_system 0 007 @ 04077430 n 0000 + 00240655 a 0201 %p 02705944 n 0000 ~ 03436182 n 0000 ~ 03584254 n 0000 ~ 04030965 n 0000 ~ 04546340 n 0000 | reproducer in which two microphones feed two or more loudspeakers to give a three-dimensional effect to the sound -04316275 06 n 03 stereo 1 stereoscopic_picture 0 stereoscopic_photograph 0 002 @ 03925226 n 0000 ~ 02707344 n 0000 | two photographs taken from slightly different angles that appear three-dimensional when viewed together -04316498 06 n 01 stereoscope 0 003 @ 03851341 n 0000 + 03120323 a 0101 + 03120176 a 0101 | an optical device for viewing stereoscopic photographs -04316646 06 n 05 stern 0 after_part 0 quarter 0 poop 0 tail 0 004 @ 04059701 n 0000 #p 04194289 n 0000 %p 03296597 n 0000 %p 04226322 n 0000 | the rear part of a ship -04316815 06 n 01 stern_chaser 0 001 @ 03811965 n 0000 | a naval gun able to fire astern at a ship in chase -04316924 06 n 01 sternpost 0 002 @ 04436185 n 0000 ;c 00314469 n 0000 | (nautical) the principal upright timber at the stern of a vessel -04317063 06 n 01 sternwheeler 0 001 @ 03874138 n 0000 | a paddle steamer having the paddle wheel in the stern -04317175 06 n 01 stethoscope 0 002 @ 03739693 n 0000 ~ 03330792 n 0000 | a medical instrument for listening to the sounds generated inside the body -04317325 06 n 02 stewing_pan 0 stewpan 0 001 @ 04138977 n 0000 | a saucepan used for stewing -04317420 06 n 01 stick 0 014 @ 03563967 n 0000 ~ 02879517 n 0000 ~ 03053474 n 0000 ~ 03216199 n 0000 ~ 03250847 n 0000 ~ 03675558 n 0000 ~ 03729826 n 0000 ~ 03731882 n 0000 ~ 04223170 n 0000 ~ 04277352 n 0000 ~ 04296261 n 0000 ~ 04321453 n 0000 ~ 04373795 n 0000 ~ 04546194 n 0000 | an implement consisting of a length of wood; "he collected dry sticks for a campfire"; "the kid had a candied apple on a stick" -04317833 06 n 01 stick 1 001 @ 03563967 n 0000 | a long thin implement resembling a length of wood; "cinnamon sticks"; "a stick of dynamite" -04317976 06 n 03 stick 3 control_stick 0 joystick 0 001 @ 03659292 n 0000 | a lever used by a pilot to control the ailerons and elevators of an airplane -04318131 06 n 01 stick 4 006 @ 04285146 n 0000 ;c 00463543 n 0000 ;c 00467995 n 0000 ;c 00477639 n 0000 ~ 03524150 n 0000 ~ 03978686 n 0000 | a long implement (usually made of wood) that is shaped so that hockey or polo players can hit a puck or ball -04318384 06 n 01 stick_figure 0 001 @ 03234306 n 0000 | drawing of a human or animal that represents the head by a circle and the rest of the body by straight lines -04318551 06 n 01 stick_horse 0 001 @ 03964744 n 0000 | a child's plaything consisting on an imitation horse's head on one end of a stick -04318690 06 n 01 stickpin 0 001 @ 03940713 n 0000 | a decorative pin that is worn in a necktie -04318787 06 n 01 stile 0 001 @ 04515129 n 0000 | an upright that is a member in a door or window frame -04318892 06 n 01 stiletto 0 001 @ 03158885 n 0000 | a small dagger with a tapered blade -04318982 06 n 01 still 0 004 @ 02727825 n 0000 ~ 03064562 n 0000 %p 03087643 n 0000 %p 04083649 n 0000 | an apparatus used for the distillation of liquids; consists of a vessel in which a substance is vaporized by heat and a condenser where the vapor is condensed -04319248 06 n 01 still 1 001 @ 03925226 n 0000 | a static photograph (especially one taken from a movie and used for advertising purposes); "he wanted some stills for a magazine ad" -04319432 06 n 01 still_life 0 001 @ 03876519 n 0000 | a painting of inanimate objects such as fruit or flowers -04319545 06 n 02 stillroom 0 still_room 0 001 @ 03885535 n 0000 | a pantry or storeroom connected with the kitchen (especially in a large house) for preparing tea and beverages and for storing liquors and preserves and tea etc -04319774 06 n 01 Stillson_wrench 0 001 @ 03947466 n 0000 | a large pipe wrench with L-shaped adjustable jaws that tighten as pressure on the handle is increased -04319937 06 n 01 stilt 0 001 @ 03976657 n 0000 | one of two stout poles with foot rests in the middle; used for walking high above the ground; "he was so tall I thought he was on stilts" -04320126 06 n 03 stimulant 0 stimulant_drug 0 excitant 0 009 @ 03247620 n 0000 + 00022686 v 0101 ~ 02704153 n 0000 ~ 02707547 n 0000 ~ 02727281 n 0000 ~ 02929749 n 0000 ~ 03608870 n 0000 ~ 03756624 n 0000 ~ 03983814 n 0000 | a drug that temporarily quickens some vital process -04320405 06 n 01 Stinger 0 002 @ 04363210 n 0000 @ 03509843 n 0000 | a portable low altitude surface-to-air missile system using infrared guidance and an impact fuse; fired from the shoulder -04320598 06 n 02 stink_bomb 0 stench_bomb 0 001 @ 02866578 n 0000 | a small bomb designed to give off a foul odor when it explodes -04320731 06 n 01 stinker 1 002 @ 04424418 n 0000 + 02124106 v 0102 | anything that gives off an offensive odor (especially a cheap cigar) -04320871 06 n 01 stirrer 0 002 @ 03563967 n 0000 + 01894320 v 0101 | an implement used for stirring -04320973 06 n 02 stirrup 0 stirrup_iron 0 002 @ 04359589 n 0000 #p 04123740 n 0000 | support consisting of metal loops into which rider's feet go -04321121 06 n 01 stirrup_pump 0 001 @ 04021798 n 0000 | a hand-operated reciprocating pump; used in fighting fires -04321238 06 n 01 stitch 0 005 @ 04179385 n 0000 + 01329239 v 0104 ~ 03133177 n 0000 ~ 03625783 n 0000 ~ 04180314 n 0000 | a link or loop or knot made by an implement in knitting, crocheting, embroidery, or sewing -04321453 06 n 01 stob 0 001 @ 04317420 n 0000 | a short straight stick of wood -04321534 06 n 02 stock 0 inventory 0 004 @ 03748886 n 0000 + 10658304 n 0101 + 02323286 v 0101 + 02285392 v 0101 | the merchandise that a shop has on hand; "they carried a vast inventory of hardware"; "they stopped selling in exact sizes in order to reduce inventory" -04321804 06 n 01 stock 1 006 @ 03485997 n 0000 #p 03351979 n 0000 #p 04577769 n 0000 #p 03145522 n 0000 ~ 02886907 n 0000 ~ 02927296 n 0000 | the handle end of some implements or tools; "he grabbed the cue by the stock" -04322026 06 n 02 stock 2 gunstock 0 008 @ 03485997 n 0000 @ 04359589 n 0000 #p 03948459 n 0000 #p 03467984 n 0000 #p 02746365 n 0000 #p 03701391 n 0000 + 02329883 v 0101 ~ 03948830 n 0000 | the handle of a handgun or the butt end of a rifle or shotgun or part of the support of a machine gun or artillery gun; "the rifle had been fitted with a special stock" -04322387 06 n 01 stock 4 001 @ 14943580 n 0000 | lumber used in the construction of something; "they will cut round stock to 1-inch diameter" -04322531 06 n 01 stockade 1 002 @ 03385557 n 0000 + 01130930 v 0101 | fortification consisting of a fence made of a line of stout posts set firmly for defense -04322692 06 n 01 stockcar 0 001 @ 02885108 n 0000 | boxcar with latticed sides; for transporting livestock -04322801 06 n 01 stock_car 0 001 @ 04037443 n 0000 | a racing car with the basic chassis of a commercially available car -04322924 06 n 01 stock_car 1 001 @ 02958343 n 0000 | a car kept in dealers' stock for regular sales -04323026 06 n 03 stock_exchange 0 stock_market 0 securities_market 0 018 @ 03302487 n 0000 #m 08072837 n 0000 -c 01663916 a 0000 -c 01664783 a 0000 -c 00649090 n 0000 -c 00649266 n 0000 ~i 02701871 n 0000 ~i 02879228 n 0000 ~ 03149261 n 0000 ~i 03822951 n 0000 ~ 03866350 n 0000 -c 09791248 n 0000 -c 13304186 n 0000 -c 13304340 n 0000 -c 13304508 n 0000 -c 13305510 n 0000 -c 13343284 n 0000 -c 13824340 n 0000 | an exchange where security trading is conducted by professional stockbrokers -04323519 06 n 02 stockinet 0 stockinette 0 001 @ 03625355 n 0000 | knit used especially for infants' wear and undergarments -04323645 06 n 01 stockinette_stitch 0 001 @ 03625783 n 0000 | knitting stitch having alternate rows of knit stitches and purl stitches, producing a fabric as for stockings -04323819 06 n 01 stocking 0 009 @ 03540267 n 0000 #p 03885904 n 0000 ;u 06295235 n 0000 ~ 02874336 n 0000 ~ 03026506 n 0000 %p 03574243 n 0000 ~ 03622931 n 0000 ~ 03836976 n 0000 ~ 04360914 n 0000 | close-fitting hosiery to cover the foot and leg; come in matched pairs (usually used in the plural) -04324120 06 n 01 stock-in-trade 0 001 @ 03294048 n 0000 | any equipment constantly used as part of a profession or occupation; "friendliness is the salesman's stock in trade" -04324297 06 n 01 stockpot 0 001 @ 03990474 n 0000 | a pot used for preparing soup stock -04324387 06 n 02 stockroom 0 stock_room 0 001 @ 04329477 n 0000 | storeroom for storing goods and supplies used in a business -04324515 06 n 01 stocks 0 002 @ 03575958 n 0000 ;u 06295235 n 0000 | a former instrument of punishment consisting of a heavy timber frame with holes in which the feet (and sometimes the hands) of an offender could be locked -04324741 06 n 01 stocks 1 002 @ 03391770 n 0000 ;u 06295235 n 0000 | a frame for constraining an animal while it is receiving veterinary attention or while being shod -04324910 06 n 01 stocks 2 002 @ 03391770 n 0000 ;u 06295235 n 0000 | a frame that supports a boat while it is under construction -04325041 06 n 02 stock_saddle 0 Western_saddle 0 002 @ 04123740 n 0000 %p 03536931 n 0000 | an ornamented saddle used by cowboys; has a high horn to hold the lariat -04325208 06 n 01 stockyard 0 001 @ 04610503 n 0000 | enclosed yard where cattle, pigs, horses, or sheep are kept temporarily -04325335 06 n 02 stogy 0 stogie 0 001 @ 03030035 n 0000 | a cheap cigar -04325409 06 n 03 stokehold 0 stokehole 0 fireroom 0 002 @ 03003730 n 0000 ;c 00314469 n 0000 | (nautical) chamber or compartment in which the furnaces of a ship are stoked or fired -04325592 06 n 01 stoker 0 002 @ 03736970 n 0000 + 02439156 v 0101 | a mechanical device for stoking a furnace -04325704 06 n 01 stole 0 001 @ 04143897 n 0000 | a wide scarf worn about their shoulders by women -04325804 06 n 01 stomacher 0 001 @ 03419014 n 0000 | garment consisting of a V-shaped panel of stiff material worn over the chest and stomach in the 16th century -04325968 06 n 01 stomach_pump 0 001 @ 04350104 n 0000 | a suction pump used to remove the contents of the stomach -04326084 06 n 01 stone 0 016 @ 14786479 n 0000 ~ 02747541 n 0000 ~i 02849729 n 0000 ~ 02957427 n 0000 ~ 03110332 n 0000 ~ 03110470 n 0000 ~ 03387506 n 0000 ~ 03455488 n 0000 ~ 03460297 n 0000 ~ 03507554 n 0000 ~ 03766935 n 0000 ~ 03783755 n 0000 ~ 03901074 n 0000 ~ 04288784 n 0000 ~ 04313628 n 0000 ~ 04577426 n 0000 | building material consisting of a piece of rock hewn in a definite shape for a special purpose; "he wanted a special stone to mark the site" -04326547 06 n 01 stone_wall 0 002 @ 03327234 n 0000 ~ 03252637 n 0000 | a fence built of rough stones; used to separate fields -04326676 06 n 01 stoneware 0 001 @ 02997607 n 0000 | ceramic ware that is fired in high heat and vitrified and nonporous -04326799 06 n 01 stonework 0 002 @ 03725717 n 0000 ~ 03155502 n 0000 | masonry done with stone -04326896 06 n 01 stool 0 008 @ 04161981 n 0000 ~ 02946753 n 0000 ~ 03154745 n 0000 ~ 03380724 n 0000 ~ 03765128 n 0000 ~ 03801880 n 0000 ~ 04315713 n 0000 ~ 04382438 n 0000 | a simple seat without a back or arms -04327110 06 n 01 stool_pigeon 0 001 @ 02776205 n 0000 | a dummy pigeon used to decoy others -04327204 06 n 02 stoop 1 stoep 0 001 @ 03984381 n 0000 | small porch or set of steps at the front entrance of a house -04327324 06 n 01 stop 3 003 @ 03626014 n 0000 #p 03854065 n 0000 ;c 07020895 n 0000 | (music) a knob on an organ that is pulled to change the sound quality from the organ pipes; "the organist pulled out all the stops" -04327544 06 n 03 stop_bath 0 short-stop 0 short-stop_bath 0 001 @ 03182912 n 0000 | an acid bath used to stop the action of a developer -04327682 06 n 03 stopcock 0 cock 0 turncock 0 001 @ 03325088 n 0000 | faucet consisting of a rotating device for regulating flow of a liquid -04327825 06 n 01 stopper 1 002 @ 03963982 n 0000 ;c 00490569 n 0000 | (bridge) a playing card with a value sufficiently high to insure taking a trick in a particular suit; "if my partner has a spade stopper I can bid no trump" -04328054 06 n 01 stopper_knot 0 002 @ 03627232 n 0000 ~ 03730788 n 0000 | a knot that prevents a rope from passing through a hole -04328186 06 n 02 stopwatch 0 stop_watch 0 001 @ 04438304 n 0000 | a timepiece that can be started or stopped for exact timing (as of a race) -04328329 06 n 02 storage_battery 0 accumulator 0 008 @ 04540547 n 0000 %p 02714535 n 0000 %p 02984937 n 0000 %p 03458753 n 0000 ~ 03651388 n 0000 ~ 03823312 n 0000 ~ 03823673 n 0000 %p 04328580 n 0000 | a voltaic battery that stores electric charge -04328580 06 n 02 storage_cell 0 secondary_cell 0 002 @ 02991048 n 0000 #p 04328329 n 0000 | a cell that can be recharged -04328703 06 n 01 storage_ring 0 002 @ 03094503 n 0000 #p 02670382 n 0000 | container consisting of a set of magnets set in a doughnut-shaped ring around which charged particles from an accelerator can be kept circulating until they are used -04328946 06 n 01 storage_space 0 008 @ 02735688 n 0000 #p 03177349 n 0000 ~ 02934888 n 0000 ~ 02991847 n 0000 ~ 03148324 n 0000 ~ 03233905 n 0000 ~ 04108137 n 0000 ~ 04295571 n 0000 | the area in any structure that provides space for storage -04329190 06 n 05 storehouse 0 depot 1 entrepot 1 storage 0 store 1 008 @ 03177349 n 0000 + 02282506 v 0501 ~ 03255790 n 0000 ~ 03452449 n 0000 ~ 03704038 n 0000 ~ 04047139 n 0000 ~ 04477638 n 0000 ~ 04551055 n 0000 | a depository for goods; "storehouses were built close to the docks" -04329477 06 n 03 storeroom 0 storage_room 0 stowage 0 006 @ 04105893 n 0000 ~ 03005425 n 0000 ~ 03697109 n 0000 ~ 03885535 n 0000 ~ 04324387 n 0000 ~ 04341133 n 0000 | a room in which things are stored -04329681 06 n 03 storm_cellar 0 cyclone_cellar 0 tornado_cellar 0 001 @ 04191595 n 0000 | an underground shelter where you can go until a storm passes -04329834 06 n 01 storm_door 0 001 @ 03221720 n 0000 | an extra outer door for protection against severe weather or winter -04329958 06 n 02 storm_window 0 storm_sash 0 001 @ 04587648 n 0000 | a window outside an ordinary window to protect against severe weather or winter -04330109 06 n 02 stoup 1 stoop 2 001 @ 02801525 n 0000 | basin for holy water -04330189 06 n 01 stoup 2 001 @ 03241496 n 0000 | an archaic drinking vessel -04330267 06 n 01 stove 0 001 @ 03508101 n 0000 | any heating apparatus -04330340 06 n 05 stove 1 kitchen_stove 0 range 1 kitchen_range 0 cooking_stove 0 009 @ 03620052 n 0000 ~ 03008080 n 0000 ~ 03102371 n 0000 ~ 03273740 n 0000 ~ 03425595 n 0000 %p 03454536 n 0000 ~ 03991202 n 0000 ~ 04003241 n 0000 ~ 04280487 n 0000 | a kitchen appliance used for cooking food; "dinner was already on the stove" -04330669 06 n 01 stove_bolt 0 001 @ 02865665 n 0000 | a small machine bolt -04330746 06 n 01 stovepipe 0 001 @ 03017428 n 0000 | chimney consisting of a metal pipe of large diameter that is used to connect a stove to a flue -04330896 06 n 01 stovepipe_iron 0 001 @ 03961250 n 0000 | plate iron that is thinner than tank iron -04330998 06 n 02 Stradavarius 0 Strad 0 001 @ 04536866 n 0000 | a violin made by Antonio Stradivari or a member of his family -04331126 06 n 02 straightaway 0 straight 0 003 @ 04164989 n 0000 + 02314584 a 0201 ~ 04336645 n 0000 | a straight segment of a roadway or racecourse -04331277 06 n 02 straight_chair 0 side_chair 0 004 @ 03001627 n 0000 %p 04119892 n 0000 %p 04281749 n 0000 ~ 04590933 n 0000 | a straight-backed chair without arms -04331443 06 n 01 straightedge 0 001 @ 03489162 n 0000 | hand tool consisting of a flat rigid rectangular bar (metal or wood) that can be used to draw straight lines (or test their straightness) -04331639 06 n 01 straightener 0 002 @ 03183080 n 0000 + 01368597 v 0101 | a device for straightening; "a hair straightener" -04331765 06 n 02 straight_flute 0 straight-fluted_drill 0 001 @ 02875436 n 0000 | a rock drill with flutes that are straight -04331892 06 n 01 straight_pin 0 001 @ 03940256 n 0000 | pin consisting of a short straight stiff piece of wire with a pointed end; used to fasten pieces of cloth or paper together -04332074 06 n 01 straight_razor 0 001 @ 04057047 n 0000 | a razor with a straight cutting edge enclosed in a case that forms a handle when the razor is opened for use -04332243 06 n 01 strainer 0 006 @ 03339643 n 0000 + 01460029 v 0103 + 01458664 v 0103 ~ 03066849 n 0000 ~ 04216634 n 0000 ~ 04398834 n 0000 | a filter to retain larger pieces while smaller pieces and liquids pass through -04332466 06 n 02 strain_gauge 0 strain_gage 0 001 @ 03429288 n 0000 | a gauge for measuring strain in a surface -04332580 06 n 02 straitjacket 0 straightjacket 0 001 @ 03419014 n 0000 | a garment similar to a jacket that is used to bind the arms tightly against the body as a means of restraining a violent person -04332783 06 n 01 strand 2 003 @ 03670849 n 0000 ~ 03971040 n 0000 ~ 04109240 n 0000 | line consisting of a complex of fibers or filaments that are twisted together to form a thread or a rope or a cable -04332987 06 n 01 strap 0 003 @ 04577769 n 0000 + 01411085 v 0107 ~ 04396226 n 0000 | whip consisting of a strip of leather used in flogging -04333129 06 n 01 strap 1 012 @ 03653220 n 0000 #p 02774630 n 0000 + 00083523 v 0101 + 01289492 v 0101 ~ 02874750 n 0000 ~ 03012013 n 0000 ~ 03019806 n 0000 ~ 03141455 n 0000 ~ 03645168 n 0000 ~ 03831382 n 0000 ~ 04072551 n 0000 ~ 04341288 n 0000 | an elongated leather strip (or a strip of similar material) for binding things together or holding something in position -04333500 06 n 02 strap 2 shoulder_strap 0 005 @ 02784218 n 0000 #p 02887489 n 0000 #p 02892767 n 0000 #p 03013580 n 0000 #p 03445617 n 0000 | a band that goes over the shoulder and supports a garment or bag -04333709 06 n 01 strap 3 001 @ 03490884 n 0000 | hanger consisting of a loop of leather suspended from the ceiling of a bus or train; passengers hold onto it -04333869 06 n 02 strap_hinge 0 joint_hinge 0 001 @ 03521076 n 0000 | a hinge with two long straps; one strap is fastened to the surface of a moving part (e.g., a door or lid) and the other is fastened to the adjacent stationary frame -04334105 06 n 01 strapless 0 001 @ 03236735 n 0000 | a woman's garment that exposes the shoulders and has no shoulder straps -04334232 06 n 02 straw 0 drinking_straw 0 001 @ 04493505 n 0000 | a thin paper or plastic tube used to suck liquids into the mouth -04334365 06 n 01 streamer_fly 0 001 @ 03373237 n 0000 | an artificial fly that has wings extending back beyond the crook of the fishhook -04334504 06 n 01 streamliner 0 002 @ 04468005 n 0000 + 01689899 v 0101 | a streamlined train -04334599 06 n 01 street 0 023 @ 04426618 n 0000 ~ 02697759 n 0000 ~ 02763472 n 0000 ~ 03137973 n 0000 ~ 03682024 n 0000 ~ 03712729 n 0000 ~ 03757723 n 0000 %s 03900750 n 0000 ~ 04117917 n 0000 ~ 04215287 n 0000 ~i 08572020 n 0000 ~i 08581122 n 0000 ~i 08596519 n 0000 ~i 08596830 n 0000 ~i 08657748 n 0000 ~i 08875972 n 0000 ~i 08876139 n 0000 ~i 08933770 n 0000 ~i 08934174 n 0000 ~i 09121936 n 0000 ~i 09122086 n 0000 ~i 09122258 n 0000 ~i 09122779 n 0000 | a thoroughfare (usually including sidewalks) that is lined with buildings; "they walked the streets of the small town"; "he lives on Nassau Street" -04335209 06 n 01 street 1 003 @ 04426618 n 0000 ~ 03847334 n 0000 ~ 04504297 n 0000 | the part of a thoroughfare between the sidewalks; the part of the thoroughfare on which vehicles travel; "be careful crossing the street" -04335435 06 n 05 streetcar 0 tram 1 tramcar 1 trolley 0 trolley_car 0 006 @ 04170037 n 0000 #p 04487268 n 0000 ;r 08860123 n 0304 + 01945183 v 0201 ;r 08860123 n 0204 ~ 03538300 n 0000 | a wheeled vehicle that runs on rails and is propelled by electricity -04335693 06 n 01 street_clothes 0 002 @ 03051540 n 0000 ;u 06295235 n 0000 | ordinary clothing suitable for public appearances (as opposed to costumes or sports apparel or work clothes etc.) -04335886 06 n 02 streetlight 0 street_lamp 0 002 @ 03636248 n 0000 %p 03637181 n 0000 | a lamp supported on a lamppost; for illuminating a street -04336034 06 n 02 strengthener 0 reinforcement 0 007 @ 03183080 n 0000 + 00222472 v 0201 + 00220869 v 0101 ~ 02769460 n 0000 ~ 02886599 n 0000 ~ 02887209 n 0000 ~ 04125692 n 0000 | a device designed to provide additional strength; "the cardboard backing was just a strengthener"; "he used gummed reinforcements to hold the page in his notebook" -04336380 06 n 01 streptomycin 0 001 @ 02716866 n 0000 | an antibiotic produced by the actinomycete Streptomyces griseus and used to treat tuberculosis -04336533 06 n 01 streptothricin 0 001 @ 02716866 n 0000 | a basic antibiotic derived from a soil actinomycete -04336645 06 n 01 stretch 0 004 @ 04331126 n 0000 #p 04037625 n 0000 ;c 00449295 n 0000 ~ 03529740 n 0000 | a straightaway section of a racetrack -04336792 06 n 01 stretcher 0 002 @ 03678362 n 0000 ~ 03470948 n 0000 | a litter for transporting people who are ill or wounded or dead; usually consists of a sheet of canvas stretched between two poles -04336996 06 n 01 stretcher 2 002 @ 03736970 n 0000 + 00318816 v 0102 | a mechanical device used to make something larger (as shoes or gloves) by stretching it -04337157 06 n 01 stretcher 3 001 @ 03391770 n 0000 | a wooden framework on which canvas is stretched and fixed for oil painting -04337287 06 n 01 stretch_pants 0 002 @ 04489008 n 0000 ;u 06295235 n 0000 | trousers made of a stretchy fabric -04337400 06 n 01 strickle 0 001 @ 04451818 n 0000 | a tool used in a foundry to shape a mold in sand -04337503 06 n 01 strickle 1 001 @ 03563967 n 0000 | a tool or rod used to level off grain or other granular material that is heaped in a measure -04337650 06 n 01 strickle 2 001 @ 04185071 n 0000 | an implement for sharpening scythes -04337740 06 n 01 striker 0 008 @ 03736970 n 0000 + 01236164 v 0102 + 01410223 v 0101 ~ 03037228 n 0000 ~ 03349020 n 0000 ~ 03481674 n 0000 ~ 03481824 n 0000 ~ 03501614 n 0000 | the part of a mechanical device that strikes something -04337974 06 n 02 string 0 twine 0 006 @ 03106110 n 0000 + 01517662 v 0202 + 01360423 v 0101 + 01359432 v 0101 ~ 03003378 n 0000 ~ 03872386 n 0000 | a lightweight cord -04338143 06 n 01 string 3 005 @ 03106110 n 0000 #p 04338517 n 0000 ;c 07020895 n 0000 + 01359145 v 0101 ~ 04249029 n 0000 | a tightly stretched cord of wire or gut, which makes sound when plucked, struck, or bowed -04338359 06 n 01 string 4 004 @ 07951464 n 0000 + 01360571 v 0101 + 01359432 v 0101 ~ 02815600 n 0000 | a collection of objects threaded on a single strand -04338517 06 n 01 stringed_instrument 0 018 @ 03800933 n 0000 ~ 02787622 n 0000 ~ 02880546 n 0000 %p 02899694 n 0000 ~ 03025886 n 0000 ~ 03038870 n 0000 ~ 03039015 n 0000 ~ 03254862 n 0000 ~ 03467517 n 0000 ~ 03628215 n 0000 %p 03905947 n 0000 ~ 03928116 n 0000 ~ 04016846 n 0000 ~ 04132603 n 0000 ~ 04224842 n 0000 %p 04262161 n 0000 %p 04338143 n 0000 ~ 04615226 n 0000 | a musical instrument in which taut strings provide the source of sound -04338963 06 n 01 stringer 0 001 @ 04436185 n 0000 | a long horizontal timber to connect uprights -04339062 06 n 01 stringer 1 001 @ 02886599 n 0000 | brace consisting of a longitudinal member to strengthen a fuselage or hull -04339191 06 n 01 string_tie 0 001 @ 03815615 n 0000 | a very narrow necktie usually tied in a bow -04339291 06 n 02 strip 0 slip 3 014 @ 00021939 n 0000 ~ 02784218 n 0000 ~ 02785191 n 0000 ~ 02785365 n 0000 ~ 03126090 n 0000 ~ 03458961 n 0000 ~ 03651265 n 0000 ~ 03798268 n 0000 ~ 04088058 n 0000 ~ 04151405 n 0000 ~ 04307619 n 0000 ~ 04378123 n 0000 ~ 04391569 n 0000 ~ 04567870 n 0000 | artifact consisting of a narrow flat piece of material -04339638 06 n 01 strip 3 010 @ 14943580 n 0000 ~ 02810008 n 0000 ~ 03040983 n 0000 ~ 03341297 n 0000 ~ 03406838 n 0000 ~ 03591465 n 0000 ~ 03929952 n 0000 ~ 04234455 n 0000 ~ 04282379 n 0000 ~ 04453390 n 0000 | thin piece of wood or metal -04339879 06 n 01 strip_lighting 0 001 @ 03665366 n 0000 | light consisting of long tubes (instead of bulbs) that provide the illumination -04340019 06 n 01 strip_mall 0 001 @ 03748162 n 0000 | a mercantile establishment consisting of a row of various stores and business and restaurants along a road or busy street; usually opening on a parking lot -04340231 06 n 01 strip_mine 0 002 @ 03768346 n 0000 + 01164081 v 0101 | an open mine (usually for coal) where the seams run close to the surface -04340378 06 n 02 stripper_well 0 stripper 0 001 @ 03845360 n 0000 | an oil well whose production has declined to less than ten barrels a day -04340521 06 n 03 stroboscope 0 strobe 0 strobe_light 0 001 @ 04147495 n 0000 | scientific instrument that provides a flashing light synchronized with the periodic movement of an object; can make moving object appear stationary -04340750 06 n 02 strongbox 0 deedbox 0 004 @ 02883344 n 0000 ~ 02976939 n 0000 ~ 04125021 n 0000 ~ 04125257 n 0000 | a strongly made box for holding money or valuables; can be locked -04340935 06 n 02 stronghold 0 fastness 0 006 @ 03171356 n 0000 ~ 02806088 n 0000 ~ 02854378 n 0000 ~ 03525372 n 0000 ~ 03610098 n 0000 ~ 04066388 n 0000 | a strongly fortified defensive structure -04341133 06 n 01 strongroom 0 003 @ 04329477 n 0000 ;r 08860123 n 0000 ~ 04523831 n 0000 | a burglarproof and fireproof room in which valuables are kept -04341288 06 n 01 strop 0 003 @ 04333129 n 0000 @ 04185071 n 0000 + 01246959 v 0101 | a leather strap used to sharpen razors -04341414 06 n 01 structural_member 0 009 @ 04359589 n 0000 #p 04341686 n 0000 ~ 02815950 n 0000 ~ 02886599 n 0000 ~ 03960490 n 0000 ~ 04094720 n 0000 ~ 04220036 n 0000 ~ 04476831 n 0000 ~ 04515129 n 0000 | support that is a constituent part of any structure or building -04341686 06 n 02 structure 0 construction 0 068 @ 00021939 n 0000 ~ 02687821 n 0000 ~ 02699494 n 0000 ~ 02733213 n 0000 ~ 02733524 n 0000 ~ 02735688 n 0000 ~ 02777734 n 0000 ~ 02777927 n 0000 ~ 02797535 n 0000 ~ 02857365 n 0000 ~ 02861886 n 0000 ~ 02898711 n 0000 ~ 02913152 n 0000 ~ 02914991 n 0000 ~ 02983357 n 0000 ~ 03065424 n 0000 ~ 03071160 n 0000 ~ 03074380 n 0000 ~ 03109693 n 0000 ~ 03135532 n 0000 ~ 03167337 n 0000 ~ 03171356 n 0000 ~ 03222318 n 0000 ~ 03290195 n 0000 ~ 03295140 n 0000 ~ 03297735 n 0000 ~ 03319296 n 0000 ~ 03365991 n 0000 %p 03387016 n 0000 ~ 03388043 n 0000 ~ 03466027 n 0000 ~ 03545756 n 0000 ~ 03546340 n 0000 ~ 03548626 n 0000 ~ 03603442 n 0000 ~ 03635932 n 0000 ~ 03638321 n 0000 ~ 03688943 n 0000 ~ 03725717 n 0000 ~ 03743902 n 0000 ~ 03792048 n 0000 ~ 03839993 n 0000 ~ 03894379 n 0000 %p 03960490 n 0000 ~ 03962525 n 0000 ~ 03984381 n 0000 ~ 03988926 n 0000 ~ 03999064 n 0000 ~ 04008947 n 0000 ~ 04019335 n 0000 ~ 04128413 n 0000 ~ 04176747 n 0000 ~ 04191595 n 0000 ~ 04200390 n 0000 ~ 04217882 n 0000 ~ 04295881 n 0000 %p 04341414 n 0000 ~ 04358874 n 0000 ~ 04361095 n 0000 ~ 04460130 n 0000 ~ 04471148 n 0000 ~ 04480141 n 0000 ~ 04523993 n 0000 ~ 04565039 n 0000 ~ 04573045 n 0000 ~ 04591359 n 0000 ~ 09218315 n 0000 ~ 13897996 n 0000 | a thing constructed; a complex entity constructed of many parts; "the structure consisted of a series of arches"; "she wore her hair in an amazing construction of whirls and ribbons" -04343148 06 n 01 strut 0 001 @ 02886599 n 0000 | brace consisting of a bar or rod used to resist longitudinal compression -04343272 06 n 01 stub_nail 0 001 @ 03804744 n 0000 | a short thick nail -04343346 06 n 02 stud 1 rivet 1 002 @ 03169390 n 0000 + 02689882 v 0102 | ornament consisting of a circular rounded protuberance (as on a vault or shield or belt) -04343511 06 n 01 student_center 0 001 @ 02993546 n 0000 | a center for student activities at a college or university -04343630 06 n 01 student_lamp 0 001 @ 04057981 n 0000 | a reading lamp with a flexible neck; used on a desk -04343740 06 n 01 student_union 0 002 @ 02913152 n 0000 #p 08518374 n 0000 | a building on a college campus dedicated to social and organizational activities of the student body -04343919 06 n 01 stud_farm 0 001 @ 03322099 n 0000 | a farm where horses are bred -04344003 06 n 01 stud_finder 0 001 @ 03917622 n 0000 | a small permanent magnet in a metal container; when the magnet clicks against the container it indicates that the magnet is directly over an iron nail that holds the wallboard to a stud -04344246 06 n 01 studio 0 004 @ 04602044 n 0000 ~ 02746841 n 0000 ~ 02903588 n 0000 ~ 04064107 n 0000 | workplace for the teaching or practice of an art; "she ran a dance studio"; "the music department provided studios for their students"; "you don't need a studio to make a passport photograph" -04344544 06 n 01 studio 2 002 @ 04602044 n 0000 ! 03682189 n 0101 | workplace consisting of a room or building where movies or television shows or radio programs are produced and recorded -04344734 06 n 02 studio_apartment 0 studio 1 001 @ 02726305 n 0000 | an apartment with a living space and a bathroom and a small kitchen -04344873 06 n 02 studio_couch 0 day_bed 0 001 @ 03100346 n 0000 | convertible consisting of an upholstered couch that can be converted into a double bed -04345028 06 n 01 study 0 002 @ 04105893 n 0000 #p 03544360 n 0000 | a room used for reading and writing and studying; "he knocked lightly on the closed door of the study" -04345201 06 n 01 study_hall 0 001 @ 03038685 n 0000 | a classroom reserved for study -04345288 06 n 01 stuff 0 004 @ 00002684 n 0000 ~ 03218545 n 0000 ~ 03299261 n 0000 ~ 04355684 n 0000 | miscellaneous unspecified objects; "the trunk was full of stuff" -04345458 06 n 01 stuffing 0 002 @ 03873064 n 0000 ~ 02810930 n 0000 | padding put in mattresses and cushions and upholstered furniture -04345595 06 n 02 stuffing_box 0 packing_box 0 002 @ 03003730 n 0000 %p 04345787 n 0000 | a small chamber in which packing is compressed around a reciprocating shaft or piston to form a seal -04345787 06 n 02 stuffing_nut 0 packing_nut 0 002 @ 03836191 n 0000 #p 04345595 n 0000 | a nut used to tighten a stuffing box -04345915 06 n 01 stumbling_block 0 001 @ 03839795 n 0000 | any obstacle or impediment -04346003 06 n 01 stump 0 003 @ 03988170 n 0000 #p 04582454 n 0000 ;c 00476389 n 0000 | (cricket) any of three upright wooden posts that form the wicket -04346157 06 n 02 stun_gun 0 stun_baton 0 001 @ 04565375 n 0000 | a weapon designed to disable a victim temporarily by delivering a nonlethal high-voltage electric shock -04346328 06 n 02 stupa 0 tope 0 001 @ 04210390 n 0000 | a dome-shaped shrine erected by Buddhists -04346428 06 n 03 sty 0 pigsty 0 pigpen 0 001 @ 03907227 n 0000 | a pen for swine -04346511 06 n 02 stylus 0 style 0 001 @ 04451818 n 0000 | a pointed tool for writing or drawing or engraving; "he drew the design on the stencil with a steel stylus" -04346679 06 n 01 stylus 1 004 @ 03183080 n 0000 #p 02971940 n 0000 %p 03188168 n 0000 ~ 03923918 n 0000 | a sharp pointed device attached to the cartridge of a record player -04346855 06 n 01 sub-assembly 0 001 @ 02749790 n 0000 | a unit assembled separately but designed to fit with other units in a manufactured product -04347004 06 n 01 subbase 0 001 @ 03780392 n 0000 | the lowest molding of an architectural base or of a baseboard -04347119 06 n 02 subcompact 0 subcompact_car 0 001 @ 02958343 n 0000 | a car smaller than a compact car -04347225 06 n 03 subject 0 content 0 depicted_object 0 002 @ 00002452 n 0000 #p 04144782 n 0000 | something (a person or object or scene) selected by an artist or photographer for graphic representation; "a moving picture of a train is more dramatic than a still picture of the same subject" -04347519 06 n 01 submachine_gun 0 008 @ 03701391 n 0000 ~ 02897097 n 0000 ~ 02923682 n 0000 ~ 03607659 n 0000 ~ 03667552 n 0000 ~ 04314522 n 0000 ~ 04450133 n 0000 ~ 04517211 n 0000 | machine gun that is a portable automatic firearm -04347754 06 n 04 submarine 0 pigboat 0 sub 0 U-boat 0 011 @ 04348184 n 0000 + 02472137 a 0101 ~ 02755529 n 0000 ~ 02763198 n 0000 %p 03091907 n 0000 %p 03295928 n 0000 ~ 03362771 n 0000 ~ 03811295 n 0000 %p 03917048 n 0000 %p 04250850 n 0000 %p 04259771 n 0000 | a submersible warship usually armed with torpedoes -04348070 06 n 01 submarine_torpedo 0 001 @ 04456472 n 0000 | a torpedo designed to be launched from a submarine -04348184 06 n 02 submersible 0 submersible_warship 0 004 @ 04552696 n 0000 + 02472693 a 0101 ! 04363082 n 0101 ~ 04347754 n 0000 | a warship designed to operate under water -04348359 06 n 01 submersible 1 006 @ 02727825 n 0000 + 02472693 a 0101 ~ 02808829 n 0000 ~ 02808968 n 0000 ~ 03215930 n 0000 ~ 03770520 n 0000 | an apparatus intended for use under water -04348548 06 n 02 subsection 0 subdivision 0 001 @ 04164989 n 0000 | a section of a section; a part of a part; i.e., a part of something already divided -04348702 06 n 01 substation 0 001 @ 04306080 n 0000 | a subsidiary station where electricity is transformed for distribution by a low-voltage network -04348854 06 n 01 subtilin 0 001 @ 02716866 n 0000 | a polypeptide antibiotic (similar to bacitracin) obtained from a soil bacterium -04348988 06 n 01 subtracter 0 001 @ 02938886 n 0000 | a machine that subtracts numbers -04349077 06 n 01 subway_station 0 001 @ 04412901 n 0000 | a terminal where subways load and unload passengers -04349189 06 n 01 subway_token 0 001 @ 04448361 n 0000 | a token that is used to pay for entry to the subway system -04349306 06 n 01 subway_train 0 001 @ 04468005 n 0000 | a train that runs in a subway system -04349401 06 n 01 subwoofer 0 001 @ 03691459 n 0000 | a loudspeaker that is designed to reproduce very low bass frequencies -04349526 06 n 01 succinylcholine 0 001 @ 03800001 n 0000 | a muscle relaxant for striated muscle that is used as an adjunct to anesthesia during certain surgical procedures -04349701 06 n 02 sucralfate 0 Carafate 0 002 @ 03740161 n 0000 ;u 06845599 n 0201 | medicine consisting of a tablet (trade name Carafate) used to treat peptic ulcers; said to bind to the ulcer site and coat it -04349913 06 n 01 suction_cup 0 001 @ 03183080 n 0000 | a cup-shaped device (made of rubber, glass, or plastic) that produces a partial vacuum; used to adhere or draw something to a surface -04350104 06 n 01 suction_pump 0 003 @ 04021798 n 0000 ~ 04325968 n 0000 ~ 04354487 n 0000 | a pump for raising fluids by suction -04350235 06 n 02 sudatorium 0 sudatory 0 001 @ 02806875 n 0000 | a bathhouse for hot air baths or steam baths -04350347 06 n 02 sudorific 0 sudatory 1 001 @ 03740161 n 0000 | a medicine that causes or increases sweating -04350458 06 n 02 suede_cloth 0 suede 0 002 @ 03309808 n 0000 ~ 04506895 n 0000 | a fabric made to resemble suede leather -04350581 06 n 01 sugar_bowl 0 002 @ 03206908 n 0000 #m 04398309 n 0000 | a dish in which sugar is served -04350688 06 n 01 sugar_refinery 0 001 @ 04068441 n 0000 | a refinery for sugar -04350769 06 n 02 sugar_spoon 0 sugar_shell 0 001 @ 04284002 n 0000 | a spoon for serving sugar; often made in the shape of a seashell -04350905 06 n 02 suit 0 suit_of_clothes 0 007 @ 03419014 n 0000 ~ 02925519 n 0000 ~ 03226538 n 0000 ~ 03943920 n 0000 ~ 04222470 n 0000 ~ 04233832 n 0000 ~ 04615644 n 0000 | a set of garments (usually including a jacket and trousers or skirt) for outerwear all of the same fabric and color; "they buried him in his best suit" -04351233 06 n 01 suit 1 005 @ 03963982 n 0000 #m 07956721 n 0000 ~ 03713556 n 0000 ~ 03771261 n 0000 ~ 04490859 n 0000 | playing card in any of four sets of 13 cards in a pack; each set has its own symbol and color; "a flush is five cards in the same suit"; "in bridge you must follow suit"; "what suit is trumps?" -04351550 06 n 02 suite 0 rooms 0 001 @ 02726305 n 0000 | apartment consisting of a series of connected rooms used as a living unit (as in a hotel) -04351699 06 n 01 suiting 0 001 @ 03309808 n 0000 | a fabric used for suits -04351776 06 n 02 sulfacetamide 0 Sulamyd 0 002 @ 04352070 n 0000 ;u 06845599 n 0201 | a topical sulfonamide (trade name Sulamyd) used to treat eye infections -04351936 06 n 01 sulfadiazine 0 001 @ 04352070 n 0000 | a sulfa drug used in treating meningitis and pneumonia and other infections -04352070 06 n 04 sulfa_drug 0 sulfa 0 sulpha 0 sulfonamide 0 009 @ 02716205 n 0000 ~ 04351776 n 0000 ~ 04351936 n 0000 ~ 04352435 n 0000 ~ 04352580 n 0000 ~ 04352759 n 0000 ~ 04352906 n 0000 ~ 04353016 n 0000 ~ 04425445 n 0000 | antibacterial consisting of any of several synthetic organic compounds capable of inhibiting the growth of bacteria that require PABA -04352435 06 n 02 sulfamethazine 0 sulfamezathine 0 001 @ 04352070 n 0000 | a sulfa drug used like sulfadiazine and also in veterinary medicine -04352580 06 n 02 sulfamethoxazole 0 Gantanol 0 001 @ 04352070 n 0000 | a sulfonamide (trade name Gantanol) used to treat infections (especially infections of the urinary tract) -04352759 06 n 01 sulfanilamide 0 001 @ 04352070 n 0000 | a white odorless crystalline sulfa drug; the parent compound of most of the sulfa drugs -04352906 06 n 01 sulfapyridine 0 001 @ 04352070 n 0000 | sulfa drug derived from pyridine and sulfanilamide -04353016 06 n 02 sulfisoxazole 0 Gantrisin 0 002 @ 04352070 n 0000 ;u 06845599 n 0201 | a sulfonamide (trade name Gantrisin) used to treat infections of the urinary tract -04353189 06 n 01 sulfonylurea 0 003 @ 02719105 n 0000 ~ 04448511 n 0000 ~ 04448826 n 0000 | antidiabetic consisting of any of several drugs that reduce the level of glucose in the blood; used to treat diabetes mellitus -04353410 06 n 02 sulindac 0 Clinoril 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14926294 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Clinoril) -04353573 06 n 01 sulky 0 001 @ 03538634 n 0000 | a light two-wheeled vehicle for one person; drawn by one horse -04353687 06 n 02 sulphur_mine 0 sulfur_mine 0 001 @ 03768346 n 0000 | a mine where sulphur is dug from the ground -04353803 06 n 04 sum 0 total 0 totality 0 aggregate 0 008 @ 00003553 n 0000 + 00467240 a 0401 + 02627555 v 0401 + 01385170 v 0401 + 02645007 v 0201 + 00949288 v 0201 + 00949288 v 0104 + 00949288 v 0106 | the whole amount -04354026 06 n 01 summer_house 0 001 @ 03118969 n 0000 | a country house (usually located in the country) that provides a cool place to live in the summer -04354182 06 n 01 sumo_ring 0 001 @ 04092959 n 0000 | the circular ring in which Sumo wrestlers compete -04354287 06 n 01 sump 0 001 @ 04572344 n 0000 | a well or other hole in which water has collected -04354387 06 n 01 sump 1 001 @ 04078574 n 0000 | an oil reservoir in an internal combustion engine -04354487 06 n 01 sump_pump 0 001 @ 04350104 n 0000 | a suction pump for removing liquid from a sump -04354589 06 n 01 sunbonnet 0 002 @ 02869837 n 0000 @ 04356595 n 0000 | a large bonnet that shades the face; worn by girls and women -04354723 06 n 01 sunburst 0 001 @ 02906438 n 0000 | a jeweled brooch with a pattern resembling the sun -04354828 06 n 01 sunburst 1 001 @ 03178782 n 0000 | a design consisting of a central disk resembling the sun and rays emanating from it -04354966 06 n 02 sunburst_pleat 0 sunray_pleat 0 002 @ 03624653 n 0000 #p 04230808 n 0000 | knife pleat cut on the bias to produce a flared effect -04355115 06 n 02 Sunday_best 0 Sunday_clothes 0 002 @ 03340923 n 0000 ;u 07075172 n 0000 | the best attire you have which is worn to church on Sunday -04355267 06 n 01 sun_deck 0 001 @ 03168107 n 0000 | an unroofed deck -04355338 06 n 01 sundial 0 002 @ 04437953 n 0000 %p 03442597 n 0000 | timepiece that indicates the daylight hours by the shadow that the gnomon casts on a calibrated dial -04355511 06 n 01 sundress 0 001 @ 03236735 n 0000 | a light loose sleeveless summer dress with a wide neckline and thin shoulder straps that expose the arms and shoulders -04355684 06 n 01 sundries 0 002 @ 04345288 n 0000 ;u 06295235 n 0000 | miscellaneous objects too numerous or too small to be specified -04355821 06 n 01 sun_gear 0 002 @ 03430551 n 0000 #p 03292736 n 0000 | the central gear in an epicyclic train -04355933 06 n 01 sunglass 0 001 @ 03099771 n 0000 | a convex lens that focuses the rays of the sun; used to start a fire -04356056 06 n 03 sunglasses 0 dark_glasses 0 shades 0 003 @ 04272054 n 0000 ;u 06295235 n 0000 %p 03976268 n 0000 | spectacles that are darkened or polarized to protect the eyes from the glare of the sun; "he was wearing a pair of mirrored shades" -04356306 06 n 01 sunken_garden 0 001 @ 03417345 n 0000 | a garden set below the level of the ground surrounding it -04356423 06 n 03 sunk_fence 0 ha-ha 0 haw-haw 0 001 @ 03214253 n 0000 | a ditch with one side being a retaining wall; used to divide lands without defacing the landscape -04356595 06 n 02 sunhat 0 sun_hat 0 003 @ 03497657 n 0000 ~ 03950899 n 0000 ~ 04354589 n 0000 | a hat with a broad brim that protects the face from direct exposure to the sun -04356772 06 n 04 sunlamp 0 sun_lamp 0 sunray_lamp 0 sun-ray_lamp 0 001 @ 03750206 n 0000 | a mercury-vapor lamp used in medical or cosmetic treatments -04356925 06 n 07 sun_parlor 0 sun_parlour 0 sun_porch 0 sunporch 0 sunroom 0 sun_lounge 0 solarium 0 001 @ 04105893 n 0000 | a room enclosed largely with glass and affording exposure to the sun -04357121 06 n 02 sunroof 0 sunshine-roof 0 002 @ 04105068 n 0000 #p 02958343 n 0000 | an automobile roof having a sliding or raisable panel; "`sunshine-roof' is a British term for `sunroof'" -04357314 06 n 03 sunscreen 0 sunblock 0 sun_blocker 0 002 @ 03128519 n 0000 %s 14973965 n 0000 | a cream spread on the skin; contains a chemical (as PABA) to filter out ultraviolet light and so protect from sunburn -04357531 06 n 01 sunsuit 0 001 @ 03419014 n 0000 | a child's garment consisting of a brief top and shorts -04357639 06 n 02 suntrap 0 solar_trap 0 001 @ 03899768 n 0000 | a terrace or garden oriented to take advantage of the sun while protected from cold winds -04357795 06 n 01 sun_visor 0 001 @ 04181718 n 0000 | a shade (sometimes of green mica) affixed above the windshield of an automobile -04357930 06 n 01 supercharger 0 003 @ 03082807 n 0000 #p 03579982 n 0000 + 00403609 v 0101 | compressor that forces increased oxygen into the cylinders of an internal-combustion engine -04358117 06 n 01 supercomputer 0 001 @ 03711711 n 0000 | a mainframe computer that is one of the most powerful available at a given time -04358256 06 n 01 superconducting_supercollider 0 001 @ 03070193 n 0000 | a collider that operates at very low temperatures -04358381 06 n 01 superficies 0 002 @ 04362025 n 0000 + 02805490 a 0101 | outer surface of an area or a body -04358491 06 n 02 superhighway 1 information_superhighway 0 001 @ 03820728 n 0000 | an extensive electronic network (such as the internet) used for the rapid transfer of sound and video and graphics in digital form -04358707 06 n 01 supermarket 0 002 @ 03461385 n 0000 ~ 03555426 n 0000 | a large self-service grocery store selling groceries and dairy products and household goods -04358874 06 n 01 superstructure 0 003 @ 04341686 n 0000 #p 04194289 n 0000 ~ 03168543 n 0000 | structure consisting of the part of a ship above the main deck -04359034 06 n 01 supertanker 0 001 @ 03845190 n 0000 | the largest class of oil tankers -04359124 06 n 01 supper_club 0 001 @ 02931417 n 0000 | usually a small luxurious nightclub -04359217 06 n 01 supplejack 0 001 @ 04546194 n 0000 | walking stick made from the wood of an American tropical vine -04359335 06 n 01 supply_chamber 1 003 @ 03736970 n 0000 ~ 02973017 n 0000 ~ 03704376 n 0000 | a mechanical device for holding something and supplying it as needed -04359500 06 n 01 supply_closet 0 001 @ 03148324 n 0000 | a closet for storing supplies -04359589 06 n 01 support 0 043 @ 03183080 n 0000 + 01217043 v 0102 ~ 02710044 n 0000 ~ 02735268 n 0000 ~ 02767433 n 0000 ~ 02768114 n 0000 ~ 02783994 n 0000 ~ 02790154 n 0000 ~ 02797692 n 0000 ~ 02817031 n 0000 ~ 02817386 n 0000 ~ 02821415 n 0000 ~ 02871005 n 0000 ~ 02887209 n 0000 ~ 02888569 n 0000 ~ 02899694 n 0000 ~ 03378442 n 0000 ~ 03379989 n 0000 ~ 03488111 n 0000 ~ 03490884 n 0000 ~ 03495039 n 0000 ~ 03495570 n 0000 ~ 03506184 n 0000 ~ 03654826 n 0000 ~ 03914919 n 0000 ~ 03933933 n 0000 ~ 03934042 n 0000 ~ 03938401 n 0000 ~ 04038440 n 0000 ~ 04081044 n 0000 ~ 04087126 n 0000 ~ 04098513 n 0000 ~ 04161358 n 0000 ~ 04190052 n 0000 ~ 04283378 n 0000 ~ 04314914 n 0000 ~ 04320973 n 0000 ~ 04322026 n 0000 ~ 04341414 n 0000 ~ 04386051 n 0000 ~ 04399700 n 0000 ~ 04507453 n 0000 ~ 04613350 n 0000 | any device that bears the weight of another thing; "there was no place to attach supports for a shelf" -04360501 06 n 01 support 1 009 @ 04361095 n 0000 + 01217043 v 0102 ~ 02669295 n 0000 ~ 02734835 n 0000 ~ 02800675 n 0000 ~ 02929289 n 0000 ~ 03387016 n 0000 ~ 03903868 n 0000 ~ 04011242 n 0000 | supporting structure that holds up or provides a foundation; "the statue stood on a marble support" -04360798 06 n 01 support_column 0 002 @ 03073977 n 0000 ~ 03634899 n 0000 | a column that supports a heavy weight -04360914 06 n 02 support_hose 0 support_stocking 0 001 @ 04323819 n 0000 | elasticized stocking intended to reduce pressure on the veins of the leg (as in case of varicose veins) -04361095 06 n 01 supporting_structure 0 004 @ 04341686 n 0000 ~ 03391770 n 0000 ~ 04226537 n 0000 ~ 04360501 n 0000 | a structure that serves to support something -04361260 06 n 01 supporting_tower 0 002 @ 04460130 n 0000 ~ 04479823 n 0000 | a tower that serves to support something -04361381 06 n 01 suppository 0 001 @ 03740161 n 0000 | a small plug of medication designed for insertion into the rectum or vagina where it melts -04361529 06 n 02 suppressant 0 appetite_suppressant 0 001 @ 03247620 n 0000 | a drug that suppresses appetite -04361641 06 n 02 suppressor 0 suppresser 0 003 @ 03269401 n 0000 + 00462092 v 0201 ~ 04364160 n 0000 | an electrical device for suppressing unwanted currents -04361801 06 n 01 surbase 0 001 @ 03780392 n 0000 | the molding or border above the base of a structure (a pedestal or podium or wall) -04361937 06 n 01 surcoat 0 001 @ 04497570 n 0000 | a tunic worn over a knight's armor -04362025 06 n 01 surface 0 020 @ 00021939 n 0000 + 01264283 v 0102 ~ 02819881 n 0000 ~ 02857023 n 0000 ~ 03313873 n 0000 ~ 03462594 n 0000 ~ 03536348 n 0000 ~ 03622207 n 0000 ~ 03745712 n 0000 ~ 03774124 n 0000 ~ 03776673 n 0000 ~ 03957567 n 0000 ~ 04152829 n 0000 ~ 04213626 n 0000 ~ 04230093 n 0000 ~ 04267246 n 0000 ~ 04358381 n 0000 ~ 04477091 n 0000 ~ 04530176 n 0000 ~ 04603558 n 0000 | the outer boundary of an artifact or a material layer constituting or resembling such a boundary; "there is a special cleaner for these surfaces"; "the cloth had a pattern of red dots on a white surface" -04362624 06 n 03 surface_gauge 0 surface_gage 0 scribing_block 0 001 @ 03429288 n 0000 | gauge consisting of a scriber mounted on an adjustable stand; used to test the accuracy of plane surfaces -04362821 06 n 01 surface_lift 0 002 @ 04231693 n 0000 ~ 04396650 n 0000 | a ski tow that pulls skiers up a slope without lifting them off the ground -04362972 06 n 01 surface_search_radar 0 001 @ 03812382 n 0000 | a naval radar to search for surface targets -04363082 06 n 01 surface_ship 0 002 @ 04552696 n 0000 ! 04348184 n 0101 | a warship that operates on the surface of the water -04363210 06 n 02 surface-to-air_missile 0 SAM 0 004 @ 03466162 n 0000 #p 04363412 n 0000 ~ 03718699 n 0000 ~ 04320405 n 0000 | a guided missile fired from land or shipboard against an airborne target -04363412 06 n 01 surface-to-air_missile_system 0 002 @ 04196080 n 0000 %p 04363210 n 0000 | the shipboard system that fires missiles at aircraft -04363559 06 n 01 surfboard 0 002 @ 02856463 n 0000 + 01948077 v 0101 | a narrow buoyant board for riding surf -04363671 06 n 01 surfboat 0 001 @ 02858304 n 0000 | a boat that can be launched or landed in heavy surf -04363777 06 n 01 surcoat 1 001 @ 03057021 n 0000 | a loose outer coat usually of rich material -04363874 06 n 01 surgeon's_knot 0 001 @ 03627232 n 0000 | any of several knots used in tying stitches or ligatures -04363991 06 n 01 surgery 1 002 @ 04105893 n 0000 ;r 08860123 n 0000 | a room where a doctor or dentist can be consulted; "he read the warning in the doctor's surgery" -04364160 06 n 05 surge_suppressor 0 surge_protector 0 spike_suppressor 0 spike_arrester 0 lightning_arrester 0 001 @ 04361641 n 0000 | electrical device inserted in a power line to protect equipment from sudden fluctuations in current -04364397 06 n 01 surgical_dressing 0 002 @ 03237639 n 0000 %p 03430091 n 0000 | a loosely woven cotton dressing for incisions made during surgery -04364545 06 n 01 surgical_instrument 0 011 @ 03739693 n 0000 ~ 03149810 n 0000 ~ 03178316 n 0000 ~ 03198223 n 0000 ~ 03514451 n 0000 ~ 03924532 n 0000 ~ 04006411 n 0000 ~ 04083800 n 0000 ~ 04249204 n 0000 ~ 04364827 n 0000 ~ 04479526 n 0000 | a medical instrument used in surgery -04364827 06 n 01 surgical_knife 0 005 @ 03623556 n 0000 @ 04364545 n 0000 ~ 02985506 n 0000 ~ 03637618 n 0000 ~ 04142434 n 0000 | a very sharp knife used in surgery -04364994 06 n 01 surplice 0 001 @ 04532106 n 0000 | a loose-fitting white ecclesiastical vestment with wide sleeves -04365112 06 n 01 surrey 0 001 @ 02968473 n 0000 | a light four-wheeled horse-drawn carriage; has two or four seats -04365229 06 n 01 surtout 0 001 @ 03456665 n 0000 | a man's overcoat in the style of a frock coat -04365328 06 n 01 surveillance_system 0 001 @ 03049066 n 0000 | a closed-circuit television system used to maintain close observation of a person or group -04365484 06 n 02 surveying_instrument 0 surveyor's_instrument 0 009 @ 03574816 n 0000 ~ 02696843 n 0000 ~ 02697022 n 0000 ~ 03043798 n 0000 ~ 03955615 n 0000 ~ 04053767 n 0000 %p 04216963 n 0000 ~ 04365751 n 0000 ~ 04419073 n 0000 | an instrument used by surveyors -04365751 06 n 01 surveyor's_level 0 004 @ 04365484 n 0000 ~ 02667693 n 0000 ~ 03256472 n 0000 %p 03658858 n 0000 | surveying instrument consisting basically of a small telescope with an attached spirit level rotating around a vertical axis; for measuring relative heights of land -04366033 06 n 01 sushi_bar 0 001 @ 02789487 n 0000 | a bar where sushi is served -04366116 06 n 02 suspension 0 suspension_system 0 004 @ 03738241 n 0000 #p 03791235 n 0000 #p 02959942 n 0000 %p 04198797 n 0000 | a mechanical system of springs or shock absorbers connecting the wheels and axles to the chassis of a wheeled vehicle -04366367 06 n 01 suspension_bridge 0 018 @ 02898711 n 0000 ~i 02712762 n 0000 ~i 02830294 n 0000 ~i 02876193 n 0000 ~i 02906027 n 0000 ~i 02906578 n 0000 %p 02933842 n 0000 ~i 03172602 n 0000 ~i 03435825 n 0000 ~i 03444601 n 0000 ~i 03548797 n 0000 ~i 03608224 n 0000 ~i 03702904 n 0000 ~i 03934416 n 0000 ~i 03981204 n 0000 ~i 04383401 n 0000 ~i 04529312 n 0000 ~i 04549276 n 0000 | a bridge that has a roadway supported by cables that are anchored at both ends -04366832 06 n 02 suspensory 0 suspensory_bandage 0 001 @ 02785648 n 0000 | a bandage of elastic fabric applied to uplift a dependant part (as the scrotum or a pendulous breast) -04367011 06 n 02 sustaining_pedal 0 loud_pedal 0 002 @ 03903424 n 0000 #p 03928116 n 0000 | a pedal on a piano that lifts the dampers from the strings and so allows them to continue vibrating -04367205 06 n 01 suture 0 003 @ 04426788 n 0000 + 01296154 v 0101 %s 02983741 n 0000 | thread of catgut or silk or wire used by surgeons to stitch tissues together -04367371 06 n 02 suture 1 surgical_seam 0 002 @ 04160372 n 0000 + 01296154 v 0101 | a seam used in surgery -04367480 06 n 03 swab 0 swob 0 mop 0 007 @ 03039947 n 0000 + 01393339 v 0303 + 01244178 v 0202 + 01244178 v 0101 ~ 03258905 n 0000 %p 03785142 n 0000 ~ 04283905 n 0000 | cleaning implement consisting of absorbent material fastened to a handle; for cleaning floors -04367746 06 n 01 swab 1 002 @ 03563967 n 0000 + 01233194 v 0102 | implement consisting of a small piece of cotton that is used to apply medication or cleanse a wound or obtain a specimen of a secretion -04367950 06 n 02 swaddling_clothes 0 swaddling_bands 0 002 @ 03419014 n 0000 ;u 06295235 n 0000 | a garment (a gown or narrow strips of cloth) for an infant -04368109 06 n 01 swag 0 002 @ 02919414 n 0000 ;r 08831004 n 0000 | a bundle containing the personal belongings of a swagman -04368235 06 n 01 swage_block 0 001 @ 02852523 n 0000 | an iron block cut with holes and grooves to assist in cold working metal -04368365 06 n 01 swagger_stick 0 001 @ 02949202 n 0000 | a short cane or stick covered with leather and carried by army officers -04368496 06 n 03 swallow-tailed_coat 0 swallowtail 0 morning_coat 0 003 @ 03589791 n 0000 #p 03239054 n 0000 #p 03786194 n 0000 | a man's full-dress jacket with two long tapering tails at the back -04368695 06 n 02 swamp_buggy 0 marsh_buggy 0 001 @ 02704792 n 0000 | an amphibious vehicle typically having four-wheel drive and a raised body -04368840 06 n 01 swan's_down 0 001 @ 03309808 n 0000 | soft woolen fabric used especially for baby clothes -04368949 06 n 01 swatch 0 001 @ 03932670 n 0000 | a sample piece of cloth -04369025 06 n 02 swathe 0 wrapping 2 003 @ 02785648 n 0000 + 01283208 v 0201 + 01300271 v 0102 | an enveloping bandage -04369146 06 n 01 swathing 0 002 @ 03122748 n 0000 + 01300271 v 0102 | cloth coverings wrapped around something (as a wound or a baby) -04369282 06 n 03 swatter 0 flyswatter 0 flyswat 0 003 @ 03563967 n 0000 + 01375458 v 0101 + 01396937 v 0101 | an implement with a flat part (of mesh or plastic) and a long handle; used to kill insects -04369485 06 n 01 sweat_bag 0 001 @ 02773037 n 0000 | a porous bag (usually of canvas) that holds water and cools it by evaporation -04369618 06 n 01 sweatband 1 001 @ 02784218 n 0000 | a band of fabric or leather sewn inside the crown of a hat -04369732 06 n 01 sweatband 2 001 @ 02784218 n 0000 | a band of material tied around the forehead or wrist to absorb sweat -04369856 06 n 01 sweatbox 0 001 @ 03183080 n 0000 | a device that causes tobacco leaves or fruit or hides to sweat -04369973 06 n 01 sweatbox 1 001 @ 02991302 n 0000 | small or narrow cell -04370048 06 n 02 sweater 0 jumper 4 007 @ 03419014 n 0000 ;u 08860123 n 0204 ~ 02963159 n 0000 %p 03814528 n 0000 %p 03815278 n 0000 ~ 04021028 n 0000 ~ 04502197 n 0000 | a crocheted or knitted garment covering the upper part of the body -04370288 06 n 02 sweat_pants 0 sweatpants 0 003 @ 04489008 n 0000 #p 04370774 n 0000 ;u 06295235 n 0000 | loose-fitting trousers with elastic cuffs; worn by athletes -04370456 06 n 01 sweatshirt 0 002 @ 04021028 n 0000 #p 04370774 n 0000 | cotton knit pullover with long sleeves worn during athletic activity -04370600 06 n 01 sweatshop 0 001 @ 03316406 n 0000 | factory where workers do piecework for poor pay and are prevented from forming unions; common in the clothing industry -04370774 06 n 04 sweat_suit 0 sweatsuit 0 sweats 0 workout_suit 0 003 @ 03419014 n 0000 %p 04370288 n 0000 %p 04370456 n 0000 | garment consisting of sweat pants and a sweatshirt -04370955 06 n 02 sweep 0 sweep_oar 0 001 @ 03837422 n 0000 | a long oar used in an open boat -04371050 06 n 02 sweep_hand 0 sweep-second 0 001 @ 04164757 n 0000 | a second hand that is mounted on the same center as the hour and minute hand and is read on the minutes -04371225 06 n 03 swimming_pool 0 swimming_bath 0 natatorium 0 003 @ 03982060 n 0000 @ 02752311 n 0000 #p 03661861 n 0000 | pool that provides a facility for swimming; "`swimming bath' is a British term" -04371430 06 n 02 swimming_trunks 0 bathing_trunks 0 002 @ 04371563 n 0000 ;u 06295235 n 0000 | swimsuit worn by men while swimming -04371563 06 n 05 swimsuit 0 swimwear 0 bathing_suit 0 swimming_costume 0 bathing_costume 0 004 @ 03419014 n 0000 ~ 02837789 n 0000 ~ 03710721 n 0000 ~ 04371430 n 0000 | tight fitting garment worn for swimming -04371774 06 n 01 swing 0 005 @ 03736970 n 0000 @ 03964744 n 0000 #p 03963645 n 0000 + 02717472 v 0102 ~ 04475411 n 0000 | mechanical device used as a plaything to support someone swinging back and forth -04371979 06 n 02 swing_door 0 swinging_door 0 004 @ 03221720 n 0000 ~ 02812505 n 0000 %p 03521076 n 0000 %p 03882611 n 0000 | a door that swings on a double hinge; opens in either direction -04372171 06 n 01 switch 0 006 @ 03575958 n 0000 + 01411630 v 0101 ~ 02842809 n 0000 ~ 02949084 n 0000 ~ 03330002 n 0000 ~ 04056180 n 0000 | a flexible implement used as an instrument of punishment -04372370 06 n 03 switch 1 electric_switch 0 electrical_switch 0 010 @ 03096960 n 0000 + 01510173 v 0103 ~ 03078670 n 0000 ~ 03153948 n 0000 ~ 03561169 n 0000 ~ 04027023 n 0000 ~ 04169437 n 0000 ~ 04428008 n 0000 ~ 04438643 n 0000 ~ 04445952 n 0000 | control consisting of a mechanical or electrical or electronic device for making or breaking or changing the connections in a circuit -04372756 06 n 01 switch 2 001 @ 04048075 n 0000 | railroad track having two movable rails and necessary connections; used to turn a train from one track to another or to store rolling stock -04372948 06 n 01 switch 3 001 @ 03476083 n 0000 | hairpiece consisting of a tress of false hair; used by women to give shape to a coiffure -04373089 06 n 04 switchblade 0 switchblade_knife 0 flick-knife 0 flick_knife 0 001 @ 03973628 n 0000 | a pocketknife with a blade that springs open at the press of a button -04373264 06 n 03 switchboard 0 patchboard 0 plugboard 0 002 @ 02994858 n 0000 #p 04402746 n 0000 | telephone central where circuits are completed with patchcords -04373428 06 n 02 switch_engine 0 donkey_engine 1 001 @ 03684823 n 0000 | a locomotive for switching rolling stock in a railroad yard -04373563 06 n 01 swivel 0 002 @ 03119510 n 0000 + 02046572 v 0102 | a coupling (as in a chain) that has one end that turns on a headed pin -04373704 06 n 01 swivel_chair 0 001 @ 03001627 n 0000 | a chair that swivels on its base -04373795 06 n 01 swizzle_stick 0 001 @ 04317420 n 0000 | a small stick used to stir mixed drinks -04373894 06 n 04 sword 0 blade 1 brand 0 steel 1 015 @ 04565375 n 0000 ~ 02771750 n 0000 %p 02848216 n 0000 ~ 02904640 n 0000 ~ 02987492 n 0000 ~ 03153246 n 0000 ~i 03302030 n 0000 ~ 03318865 n 0000 ~ 03327691 n 0000 %p 03375443 n 0000 %p 03385420 n 0000 %p 03474896 n 0000 %p 03520654 n 0000 ~ 04054361 n 0000 %p 13902482 n 0000 | a cutting or thrusting weapon that has a long metal blade and a hilt with a hand guard -04374315 06 n 02 sword_cane 0 sword_stick 0 001 @ 02949202 n 0000 | a cane concealing a sword or dagger -04374421 06 n 01 sword_knot 0 001 @ 04395201 n 0000 | an ornamental tassel on the hilt of a sword -04374521 06 n 01 S_wrench 0 001 @ 03848168 n 0000 | a wrench with an S-shaped handle -04374608 06 n 01 Sydney_Harbor_Bridge 0 002 @i 04311004 n 0000 #p 08833295 n 0000 | a steel arch bridge in Sydney, Australia -04374735 06 n 03 synagogue 0 temple 2 tabernacle 1 003 @ 03953416 n 0000 ;c 06232880 n 0000 ~i 04408330 n 0000 | (Judaism) the place of worship for a Jewish congregation -04374907 06 n 01 synchrocyclotron 0 001 @ 03156071 n 0000 | cyclotron that achieves relativistic velocities by modulating the frequency of the accelerating electric field -04375080 06 n 01 synchroflash 0 001 @ 03183080 n 0000 | a device used in photography to synchronize the peak of a flash with the opening of the camera shutter -04375241 06 n 01 synchromesh 0 001 @ 04377057 n 0000 | an automotive system for shifting gears in which the gears revolve at the same speed and so shift smoothly -04375405 06 n 03 synchronous_converter 0 rotary 1 rotary_converter 0 001 @ 03269203 n 0000 | electrical converter consisting of a synchronous machine that converts alternating to direct current or vice versa -04375615 06 n 01 synchronous_motor 0 001 @ 03273061 n 0000 | electric motor in which the speed of rotation is proportional to the frequency of the A.C. power -04375775 06 n 01 synchrotron 0 002 @ 03156071 n 0000 ~ 03113505 n 0000 | cyclotron in which the electric field is maintained at a constant frequency -04375926 06 n 04 synchroscope 0 synchronoscope 0 synchronizer 0 synchroniser 0 003 @ 03733925 n 0000 + 00393953 v 0301 + 00393953 v 0402 | an instrument that indicates whether two periodic motions are synchronous (especially an instrument that enables a pilot to synchronize the propellers of a plane that has two or more engines) -04376259 06 n 01 synergist 0 003 @ 03247620 n 0000 + 13564910 n 0102 ! 02714883 n 0101 | a drug that augments the activity of another drug -04376400 06 n 02 synthesizer 0 synthesiser 0 005 @ 03279153 n 0000 @ 03614532 n 0000 ;c 07020895 n 0000 + 00644066 v 0202 + 00644066 v 0101 | (music) an electronic instrument (usually played with a keyboard) that generates and modifies sounds electronically and can imitate a variety of other musical instruments -04376715 06 n 01 synthetism 0 001 @ 03434943 n 0000 | a genre of French painting characterized by bright flat shapes and symbolic treatments of abstract ideas -04376876 06 n 01 syringe 0 005 @ 03739693 n 0000 + 01373422 v 0101 %p 02915480 n 0000 ~ 03228533 n 0000 ~ 03555662 n 0000 | a medical instrument used to inject or withdraw fluids -04377057 06 n 01 system 0 031 @ 03575240 n 0000 ~ 02757462 n 0000 ~ 03078287 n 0000 ~ 03085915 n 0000 ~ 03095965 n 0000 ~ 03098806 n 0000 ~ 03164344 n 0000 ~ 03232417 n 0000 ~ 03302938 n 0000 ~ 03305300 n 0000 ~ 03305953 n 0000 ~ 03465818 n 0000 ~ 03533486 n 0000 ~ 03569293 n 0000 %p 03570372 n 0000 ~ 03683457 n 0000 ~ 03733281 n 0000 ~ 03738241 n 0000 %p 03778600 n 0000 ~ 03811444 n 0000 ~ 03820728 n 0000 ~ 03820950 n 0000 ~ 04013060 n 0000 ~ 04080138 n 0000 ~ 04141712 n 0000 ~ 04166111 n 0000 ~ 04170694 n 0000 ~ 04196080 n 0000 ~ 04258732 n 0000 ~ 04289195 n 0000 ~ 04375241 n 0000 | instrumentality that combines interrelated interacting artifacts designed to work as a coherent entity; "he bought a new stereo system"; "the system consists of a motor and a small computer" -04377842 06 n 01 system_clock 0 001 @ 03277771 n 0000 | an electronic device in a computer that issues a steady high-frequency signal that synchronizes all the internal components -04378024 06 n 01 system_clock 1 001 @ 03046257 n 0000 | a time-of-day clock in a computer system -04378123 06 n 01 tab 1 001 @ 04339291 n 0000 | a short strip of material attached to or projecting from something in order to facilitate opening or identifying or handling it; "pull the tab to open the can"; "files with a red tab will be stored separately"; "the collar has a tab with a button hole"; "the filing cards were organized by cards having indexed tabs" -04378489 06 n 01 tabard 0 001 @ 04497570 n 0000 | a short sleeveless outer tunic emblazoned with a coat of arms; worn by a knight over his armor or by a herald -04378651 06 n 01 Tabernacle 0 003 @ 04133648 n 0000 ;c 06232880 n 0000 %p 03527675 n 0000 | (Judaism) a portable sanctuary in which the Jews carried the Ark of the Covenant on their exodus -04378842 06 n 02 Tabernacle 2 Mormon_Tabernacle 0 002 @i 04407435 n 0000 #p 09147046 n 0000 | the Mormon temple -04378956 06 n 02 tabi 0 tabis 0 001 @ 04254777 n 0000 | a sock with a separation for the big toe; worn with thong sandals by the Japanese -04379096 06 n 02 tab_key 0 tab 2 002 @ 03613592 n 0000 #p 04505470 n 0000 | the key on a typewriter or a word processor that causes a tabulation -04379243 06 n 01 table 1 031 @ 03405725 n 0000 ~ 02699629 n 0000 ~ 02874214 n 0000 ~ 02894337 n 0000 ~ 02964075 n 0000 ~ 02964196 n 0000 ~ 03063968 n 0000 ~ 03090000 n 0000 ~ 03092883 n 0000 ~ 03116530 n 0000 ~ 03179701 n 0000 ~ 03238586 n 0000 ~ 03246933 n 0000 ~ 03414676 n 0000 ~ 03465426 n 0000 ~ 03620967 n 0000 %p 03654826 n 0000 ~ 03850492 n 0000 ~ 03892728 n 0000 ~ 03904060 n 0000 ~ 03934565 n 0000 ~ 03961630 n 0000 ~ 03982430 n 0000 ~i 04114554 n 0000 ~ 04301000 n 0000 ~ 04381587 n 0000 %p 04381860 n 0000 %p 04381994 n 0000 ~ 04398951 n 0000 ~ 04480033 n 0000 ~ 04603729 n 0000 | a piece of furniture having a smooth flat top that is usually supported by one or more vertical legs; "it was a sturdy table" -04379964 06 n 01 table 2 002 @ 03405725 n 0000 ~ 03201208 n 0000 | a piece of furniture with tableware for a meal laid out on it; "I reserved a table at my favorite restaurant" -04380143 06 n 01 tablecloth 0 002 @ 04380617 n 0000 ~ 04397378 n 0000 | a covering spread over a dining table -04380255 06 n 01 tablefork 0 001 @ 03383948 n 0000 | a fork for eating at a dining table -04380346 06 n 01 table_knife 0 006 @ 03623556 n 0000 @ 03153375 n 0000 ~ 02928049 n 0000 ~ 02976249 n 0000 ~ 03352366 n 0000 ~ 04307986 n 0000 | a knife used for eating at dining table -04380533 06 n 01 table_lamp 0 001 @ 03636649 n 0000 | a lamp that sits on a table -04380617 06 n 02 table_linen 0 napery 0 006 @ 03672352 n 0000 ~ 03160894 n 0000 ~ 03807537 n 0000 ~ 03952886 n 0000 ~ 04380143 n 0000 ~ 04476526 n 0000 | linens for the dining table -04380801 06 n 02 table_mat 0 hot_pad 2 001 @ 03872495 n 0000 | a pad for use under a hot dish to protect a table -04380916 06 n 01 table_saw 0 001 @ 03034663 n 0000 | a circular saw mounted under a table or bench so that the blade of the saw projects up through a slot -04381073 06 n 01 tablespoon 0 001 @ 04284002 n 0000 | a spoon larger than a dessert spoon; used for serving -04381183 06 n 01 tablet 1 001 @ 02937469 n 0000 | a small flat compressed cake of some substance; "a tablet of soap" -04381302 06 n 01 tablet 2 003 @ 04233405 n 0000 ~ 02666347 n 0000 ~ 04234670 n 0000 | a slab of stone or wood suitable for bearing an inscription -04381450 06 n 01 tablet-armed_chair 0 002 @ 03001627 n 0000 %p 04607982 n 0000 | a chair with an arm that has been widened for writing -04381587 06 n 03 table-tennis_table 0 ping-pong_table 0 pingpong_table 0 001 @ 04379243 n 0000 | a table used for playing table tennis -04381724 06 n 03 table-tennis_racquet 0 table-tennis_bat 0 pingpong_paddle 0 001 @ 03873848 n 0000 | paddle used to play table tennis -04381860 06 n 01 tabletop 0 003 @ 04603558 n 0000 #p 04379243 n 0000 ~ 03118245 n 0000 | the top horizontal work surface of a table -04381994 06 n 01 tableware 0 013 @ 04550840 n 0000 #p 04379243 n 0000 ~ 03025755 n 0000 ~ 03133538 n 0000 ~ 03153375 n 0000 ~ 03202622 n 0000 ~ 03361945 n 0000 ~ 03439064 n 0000 ~ 03445472 n 0000 ~ 04175380 n 0000 ~ 04220945 n 0000 ~ 04221424 n 0000 ~ 04398309 n 0000 | articles for use at the table (dishes and silverware and glassware) -04382334 06 n 02 tabor 0 tabour 0 001 @ 03249569 n 0000 | a small drum with one head of soft calfskin -04382438 06 n 02 taboret 0 tabouret 0 001 @ 04326896 n 0000 | a low stool in the shape of a drum -04382537 06 n 02 tachistoscope 0 t-scope 0 001 @ 04147495 n 0000 | scientific instrument used by psychologists; presents visual stimuli for brief exposures -04382695 06 n 01 tachograph 0 001 @ 04382880 n 0000 | a tachometer that produces a graphical record of its readings; used to record the speed and duration of trips in a motor vehicle -04382880 06 n 02 tachometer 0 tach 0 002 @ 03733925 n 0000 ~ 04382695 n 0000 | measuring instrument for indicating speed of rotation -04383015 06 n 02 tachymeter 0 tacheometer 0 001 @ 04419073 n 0000 | a theodolite designed for rapid measurements -04383130 06 n 01 tack 0 005 @ 03804744 n 0000 + 01357429 v 0101 ~ 02967991 n 0000 ~ 04431745 n 0000 ~ 04440399 n 0000 | a short nail with a sharp point and a large head -04383301 06 n 01 tack_hammer 0 001 @ 03481172 n 0000 | a light hammer that is used to drive tacks -04383401 06 n 01 Tacoma_Narrows_Bridge 0 002 @i 04366367 n 0000 #p 09154731 n 0000 | a suspension bridge across Puget Sound at Tacoma -04383537 06 n 02 tadalafil 0 Cialis 0 002 @ 04537602 n 0000 ;u 06845599 n 0201 | virility drug (trade name Cialis) used to treat erectile dysfunction in men -04383696 06 n 03 taenia 0 tenia 0 fillet 0 002 @ 03502042 n 0000 + 01678957 v 0301 | a narrow headband or strip of ribbon worn as a headband -04383839 06 n 01 taffeta 0 001 @ 03309808 n 0000 | a crisp smooth lustrous fabric -04383923 06 n 01 taffrail 0 001 @ 04047401 n 0000 | the railing around the stern of a ship -04384016 06 n 03 tail 1 tail_assembly 0 empennage 0 005 @ 04059701 n 0000 #p 03408054 n 0000 %p 03536568 n 0000 %p 04294426 n 0000 %p 04530283 n 0000 | the rear part of an aircraft -04384199 06 n 01 tail 2 004 @ 04085181 n 0000 #p 13388245 n 0000 ;u 06295235 n 0000 ! 03501811 n 0101 | (usually plural) the reverse side of a coin that does not bear the representation of a person's head -04384406 06 n 03 tail_fin 1 tailfin 1 fin 3 003 @ 03169390 n 0000 #p 02958343 n 0000 + 02225911 v 0301 | one of a pair of decorations projecting above the rear fenders of an automobile -04384593 06 n 02 tailgate 0 tailboard 0 003 @ 03427296 n 0000 #p 02814533 n 0000 #p 04490091 n 0000 | a gate at the rear of a vehicle; can be lowered for loading -04384757 06 n 01 tail_gate 1 001 @ 03427296 n 0000 | a gate downstream from a lock or canal that is used to control the flow of water at the lower end -04384910 06 n 04 taillight 0 tail_lamp 0 rear_light 0 rear_lamp 0 002 @ 03636248 n 0000 #p 03270165 n 0000 | lamp (usually red) mounted at the rear of a motor vehicle -04385079 06 n 01 tailor-made 0 001 @ 03051540 n 0000 | custom-made clothing -04385157 06 n 01 tailor's_chalk 0 001 @ 03003091 n 0000 | chalk used by tailors to make temporary marks on cloth -04385272 06 n 01 tailor's_tack 0 001 @ 04180314 n 0000 | a loose, looped, sewing stitch used to transfer marking for darts, etc., from a pattern to material -04385431 06 n 01 tailpiece 0 001 @ 02728763 n 0000 | appendage added to extend the length of something -04385536 06 n 01 tailpipe 0 002 @ 03944672 n 0000 #p 03302938 n 0000 | a pipe carrying fumes from the muffler to the rear of a car -04385669 06 n 01 tailrace 0 001 @ 04559275 n 0000 | a watercourse that carries water away from a mill or water wheel or turbine -04385799 06 n 02 tail_rotor 0 anti-torque_rotor 0 001 @ 04111668 n 0000 | rotor consisting of a rotating airfoil on the tail of a single-rotor helicopter; keeps the helicopter from spinning in the direction opposite to the rotation of the main rotor -04386051 06 n 01 tailstock 0 001 @ 04359589 n 0000 | support consisting of the movable part of a lathe that slides along the bed in alignment with the headstock and is locked into position to support the free end of the workpiece -04386283 06 n 01 Taj_Mahal 0 001 @i 03732114 n 0000 | beautiful mausoleum at Agra built by the Mogul emperor Shah Jahan (completed in 1649) in memory of his favorite wife -04386456 06 n 01 take-up 0 001 @ 03183080 n 0000 | any of various devices for reducing slack (as in a sewing machine) or taking up motion (as in a loom); "a take-up that winds photographic film on a spool" -04386664 06 n 01 talaria 0 002 @ 04133789 n 0000 ;c 00933420 n 0000 | a winged sandal (as worn by Hermes in Graeco-Roman art) -04386792 06 n 02 talcum 0 talcum_powder 0 002 @ 04447276 n 0000 %s 15066367 n 0000 | a toilet powder made of purified talc and usually scented; absorbs excess moisture -04386962 06 n 01 talking_book 0 001 @ 04262678 n 0000 | sound recording of someone reading a book; frequently used by blind people -04387095 06 n 03 tam 0 tam-o'-shanter 0 tammy 2 001 @ 02954340 n 0000 | a woolen cap of Scottish origin -04387201 06 n 01 tambour 0 001 @ 03249569 n 0000 | a drum -04387261 06 n 03 tambour 1 embroidery_frame 0 embroidery_hoop 0 001 @ 03391770 n 0000 | a frame made of two hoops; used for embroidering -04387400 06 n 01 tambourine 0 001 @ 03249569 n 0000 | a shallow drum with a single drumhead and with metallic disks in the sides -04387531 06 n 01 tammy 0 001 @ 03309808 n 0000 | plain-woven (often glazed) fabric of wool or wool and cotton used especially formerly for linings and garments and curtains -04387706 06 n 03 tamp 0 tamper 0 tamping_bar 0 004 @ 04451818 n 0000 + 01574571 v 0202 + 01574571 v 0102 ~ 04313986 n 0000 | a tool for tamping (e.g., for tamping tobacco into a pipe bowl or a charge into a drill hole etc.) -04387932 06 n 01 Tampax 0 002 @ 04388162 n 0000 ;u 06845599 n 0000 | tampon used to absorb menstrual flow -04388040 06 n 02 tampion 0 tompion 0 001 @ 03967942 n 0000 | plug for the muzzle of a gun to keep out dust and moisture -04388162 06 n 01 tampon 0 003 @ 03967942 n 0000 + 01423167 v 0101 ~ 04387932 n 0000 | plug of cotton or other absorbent material; inserted into wound or body cavity to absorb exuded fluids (especially blood) -04388372 06 n 01 tandem_trailer 0 001 @ 04467665 n 0000 | trucking rig with two trailers in tandem -04388473 06 n 01 tandoor 0 001 @ 03862676 n 0000 | a clay oven used in northern India and Pakistan -04388574 06 n 01 tangram 0 001 @ 04028315 n 0000 | a Chinese puzzle consisting of a square divided into seven pieces that must be arranged to match particular designs -04388743 06 n 02 tank 0 storage_tank 0 010 @ 04531098 n 0000 + 00185348 v 0101 + 02282082 v 0101 ~ 02732072 n 0000 ~ 03035715 n 0000 ~ 03423568 n 0000 ~ 03426134 n 0000 ~ 04078574 n 0000 ~ 04173046 n 0000 ~ 04560113 n 0000 | a large (usually metallic) vessel for holding gases or liquids -04389033 06 n 04 tank 1 army_tank 0 armored_combat_vehicle 0 armoured_combat_vehicle 0 007 @ 03764276 n 0000 @ 02740533 n 0000 @ 04464852 n 0000 ;c 08199025 n 0000 %p 02950826 n 0000 %p 03469175 n 0000 ~ 03886053 n 0000 | an enclosed armored military vehicle; has a cannon and moves on caterpillar treads -04389340 06 n 01 tanka 0 001 @ 03876519 n 0000 | a Tibetan religious painting on fabric -04389430 06 n 01 tankard 0 001 @ 03241496 n 0000 | large drinking vessel with one handle -04389521 06 n 02 tank_car 0 tank 2 001 @ 03393912 n 0000 | a freight car that transports liquids or gases in bulk -04389637 06 n 01 tank_circuit 0 001 @ 03033362 n 0000 | an oscillatory circuit -04389718 06 n 01 tank_destroyer 0 001 @ 02740533 n 0000 | an armored vehicle equipped with an antitank gun and capable of high speeds -04389854 06 n 02 tank_engine 0 tank_locomotive 0 001 @ 03684823 n 0000 | a locomotive that carries its own fuel and water; no tender is needed -04389999 06 n 01 tanker_plane 0 001 @ 02691156 n 0000 | an airplane constructed to transport chemicals that can be dropped in order to fight a forest fire -04390156 06 n 01 tank_furnace 0 001 @ 03404449 n 0000 | furnace into one end of which a batch of measured raw materials is shoveled and from the other end molten glass is obtained -04390338 06 n 01 tank_iron 0 001 @ 03961250 n 0000 | plate iron that is thinner than boilerplate but thicker than sheet iron or stovepipe iron -04390483 06 n 01 tank_shell 0 001 @ 04190464 n 0000 | a shell fired by the cannon on a tank -04390577 06 n 01 tank_top 0 001 @ 04197391 n 0000 | a tight-fitting sleeveless shirt with wide shoulder straps and low neck and no front opening; often worn over a shirt or blouse -04390759 06 n 01 tannery 0 002 @ 04602044 n 0000 + 00511430 v 0101 | workplace where skins and hides are tanned -04390873 06 n 01 tannoy 0 003 @ 03691459 n 0000 #p 04018155 n 0000 ;r 08860123 n 0000 | a loudspeaker -04390977 06 n 02 tap 1 spigot 1 006 @ 03967942 n 0000 #p 02795169 n 0000 + 10691764 n 0101 + 01613732 v 0101 + 01854519 v 0101 + 02360274 v 0101 | a plug for a bunghole in a cask -04391158 06 n 01 tap 2 002 @ 04451818 n 0000 + 01403314 v 0101 | a tool for cutting female (internal) screw threads -04391276 06 n 01 tap 3 003 @ 03959936 n 0000 ;c 00428270 n 0000 + 01895757 v 0102 | a small metal plate that attaches to the toe or heel of a shoe (as in tap dancing) -04391445 06 n 02 tapa 0 tappa 0 001 @ 03309808 n 0000 | a paperlike cloth made in the South Pacific by pounding tapa bark -04391569 06 n 01 tape 0 005 @ 04339291 n 0000 + 01331818 v 0101 ~ 02680337 n 0000 ~ 03572107 n 0000 ~ 04568944 n 0000 | a long thin piece of cloth or paper as used for binding or fastening; "he used a piece of tape for a belt"; "he wrapped a tape around the package" -04391838 06 n 03 tape 1 tape_recording 0 taping 0 007 @ 04063868 n 0000 + 00998399 v 0302 + 00999270 v 0201 + 00998399 v 0102 + 01003049 v 0102 ~ 02757810 n 0000 ~ 04534520 n 0000 | a recording made on magnetic tape; "the several recordings were combined on a master tape" -04392113 06 n 03 tape 3 tapeline 0 tape_measure 0 001 @ 03733925 n 0000 | measuring instrument consisting of a narrow strip (cloth or metal) marked in inches or centimeters and used for measuring lengths; "the carpenter should have used his tape measure" -04392370 06 n 01 tape_cartridge 0 001 @ 02972182 n 0000 | a cartridge containing magnetic tape; for use with audio or video recorders or computer systems -04392526 06 n 01 tape_deck 0 004 @ 03278248 n 0000 #p 02757462 n 0000 ~ 02979074 n 0000 %p 04392764 n 0000 | electronic equipment for making or playing magnetic tapes (but without amplifiers or speakers); a component in an audio system -04392764 06 n 03 tape_drive 0 tape_transport 0 transport 1 003 @ 03738472 n 0000 #p 04392526 n 0000 #p 04393095 n 0000 | a mechanism that transports magnetic tape across the read/write heads of a tape playback/recorder -04392985 06 n 01 tape_player 0 001 @ 03278248 n 0000 | electronic equipment for playing back magnetic tapes -04393095 06 n 02 tape_recorder 0 tape_machine 0 006 @ 03707597 n 0000 + 00999270 v 0101 ~ 03192543 n 0000 %p 03706939 n 0000 %p 04392764 n 0000 ~ 04533802 n 0000 | a magnetic recorder using magnetic tape -04393301 06 n 01 taper_file 0 002 @ 03336839 n 0000 ! 02856362 n 0101 | a file with converging edges -04393404 06 n 02 tapestry 0 arras 0 002 @ 03491178 n 0000 %p 03265479 n 0000 | a wall hanging of heavy handwoven fabric with pictorial designs -04393549 06 n 02 tapestry 1 tapis 0 001 @ 03309808 n 0000 | a heavy textile with a woven design; used for curtains and upholstery -04393681 06 n 01 Tappan_Zee_Bridge 0 002 @i 02953197 n 0000 #p 09117351 n 0000 | a cantilever bridge across the Hudson River -04393808 06 n 01 tappet 0 001 @ 03659292 n 0000 | a lever that is moved in order to tap something else -04393913 06 n 01 tap_wrench 0 001 @ 04606574 n 0000 | a wrench for turning a tap to create an internal screw thread -04394031 06 n 01 tare 0 002 @ 03118539 n 0000 ;c 00646833 n 0000 | (chemical analysis) a counterweight used in chemical analysis; consists of an empty container that counterbalances the weight of the container holding chemicals -04394261 06 n 02 target 0 butt 3 002 @ 04285146 n 0000 ~ 03039259 n 0000 | sports equipment consisting of an object set up for a marksman or archer to aim at -04394421 06 n 01 target_acquisition_system 0 001 @ 04196080 n 0000 | a shipboard system for the detection and identification and location of a target with enough detail to permit effective weapon employment -04394630 06 n 03 tarmacadam 0 tarmac 0 macadam 0 003 @ 03900509 n 0000 + 01603418 v 0301 + 01603418 v 0203 | a paved surface having compressed layers of broken rocks held together with tar -04394821 06 n 02 tarot_card 0 tarot 0 001 @ 02962545 n 0000 | any of a set of (usually 72) cards that include 22 cards representing virtues and vices and death and fortune etc.; used by fortunetellers -04395024 06 n 02 tarpaulin 0 tarp 0 001 @ 02953673 n 0000 | waterproofed canvas -04395106 06 n 02 tartan 0 plaid 0 001 @ 03309808 n 0000 | a cloth having a crisscross design -04395201 06 n 01 tassel 0 002 @ 02681518 n 0000 ~ 04374421 n 0000 | adornment consisting of a bunch of cords fastened at one end -04395332 06 n 02 tasset 0 tasse 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | one of two pieces of armor plate hanging from the fauld to protect the upper thighs -04395495 06 n 01 tatting 0 001 @ 03816849 n 0000 | needlework consisting of handmade lace made by looping and knotting a single thread on a small shuttle -04395651 06 n 01 tattoo 0 002 @ 03178782 n 0000 + 01681333 v 0101 | a design on the skin made by tattooing -04395760 06 n 02 tau_cross 0 St._Anthony's_cross 0 001 @ 03135152 n 0000 | cross resembling the Greek letter tau -04395875 06 n 02 tavern 0 tap_house 0 006 @ 02913152 n 0000 ~ 02823586 n 0000 ~ 02910241 n 0000 ~ 04018399 n 0000 ~ 04055700 n 0000 ~ 07888378 n 0000 | a building with a bar that is licensed to sell alcoholic drinks -04396093 06 n 02 taw 0 shooter 0 002 @ 03721047 n 0000 + 01597286 v 0201 | a large marble used for shooting in the game of marbles -04396226 06 n 01 tawse 0 002 @ 04332987 n 0000 ;r 08890097 n 0000 | a leather strap for punishing children -04396335 06 n 01 taximeter 0 001 @ 03753077 n 0000 | a meter in a taxi that registers the fare (based on the length of the ride) -04396466 06 n 02 taxiway 0 taxi_strip 0 002 @ 03900509 n 0000 #p 02687992 n 0000 | a paved surface in the form of a strip; used by planes taxiing to or from the runway at an airport -04396650 06 n 03 T-bar_lift 0 T-bar 0 Alpine_lift 0 001 @ 04362821 n 0000 | a surface lift where riders hold a bar and are pulled up the hill on their skis -04396808 06 n 01 tea_bag 0 001 @ 02773037 n 0000 | small paper bag holding a measure of tea -04396902 06 n 01 tea_ball 0 001 @ 03621049 n 0000 | a kitchen utensil consisting of a perforated metal ball for making tea -04397027 06 n 04 tea_cart 0 teacart 0 tea_trolley 0 tea_wagon 0 001 @ 04176068 n 0000 | serving cart for serving tea or light refreshments -04397168 06 n 01 tea_chest 0 001 @ 03014705 n 0000 | chest for storing or transporting tea -04397261 06 n 01 teaching_aid 0 002 @ 03294048 n 0000 ~ 02757927 n 0000 | materials and equipment used in teaching -04397378 06 n 01 tea_cloth 0 001 @ 04380143 n 0000 | a small tablecloth -04397452 06 n 01 teacup 0 002 @ 03147509 n 0000 %p 03485997 n 0000 | a cup from which tea is drunk -04397553 06 n 01 tea_garden 0 001 @ 03417345 n 0000 | a public garden where tea is served -04397645 06 n 01 tea_gown 0 001 @ 03450230 n 0000 | a long loose-fitting gown formerly popular for wear at afternoon tea -04397768 06 n 01 teakettle 0 001 @ 03612814 n 0000 | kettle for boiling water to make tea -04397860 06 n 01 tea_maker 0 001 @ 04284002 n 0000 | a covered spoon with perforations -04397949 06 n 01 tea_napkin 0 001 @ 03807537 n 0000 | a small napkin used when tea is served -04398044 06 n 01 teapot 0 002 @ 03990474 n 0000 #m 04398309 n 0000 | pot for brewing tea; usually has a spout and handle -04398167 06 n 01 teaser 1 002 @ 03183080 n 0000 + 01463792 v 0101 | a device for teasing wool; "a teaser is used to disentangle the fibers" -04398309 06 n 02 tea_service 0 tea_set 0 005 @ 04381994 n 0000 %m 03129001 n 0000 %m 04350581 n 0000 %m 04398044 n 0000 %m 04399046 n 0000 | a set of china or silverware for serving tea -04398497 06 n 05 teashop 0 teahouse 0 tearoom 0 tea_parlor 0 tea_parlour 0 003 @ 04081281 n 0000 ;r 08860123 n 0000 ~ 02928172 n 0000 | a restaurant where tea and light meals are available -04398688 06 n 01 teaspoon 0 002 @ 04284002 n 0000 ~ 03557270 n 0000 | a small spoon used for stirring tea or coffee; holds about one fluid dram -04398834 06 n 01 tea-strainer 0 001 @ 04332243 n 0000 | a device to keep back tea leaves when pouring a cup of tea -04398951 06 n 01 tea_table 0 001 @ 04379243 n 0000 | a small table for serving afternoon tea -04399046 06 n 01 tea_tray 0 002 @ 04476259 n 0000 #m 04398309 n 0000 | a tray that accommodates a tea service -04399158 06 n 01 tea_urn 0 001 @ 04516214 n 0000 | an urn in which tea is brewed and from which it is served -04399269 06 n 01 technical 0 002 @ 03930630 n 0000 @ 03764276 n 0000 | a pickup truck with a gun mounted on it -04399382 06 n 02 teddy 1 teddy_bear 0 001 @ 03964744 n 0000 | plaything consisting of a child's toy bear (usually plush and stuffed with soft materials) -04399537 06 n 02 tee 0 golf_tee 0 003 @ 03905540 n 0000 @ 03446832 n 0000 + 01499692 v 0101 | a short peg put into the ground to hold a golf ball off the ground -04399700 06 n 02 tee 1 football_tee 0 001 @ 04359589 n 0000 | support holding a football on end and above the ground preparatory to the kickoff -04399846 06 n 02 tee_hinge 0 T_hinge 0 001 @ 03521076 n 0000 | a hinge that looks like the letter T when it is opened; similar to a strap hinge except that one strap has been replaced by half of a butt hinge that can be mortised flush into the stationary frame -04400109 06 n 02 telecom_hotel 0 telco_building 0 001 @ 02913152 n 0000 | a building that houses telecommunications equipment; "the telecom hotels are prime targets for bombing" -04400289 06 n 04 telecommunication_system 0 telecom_system 0 telecommunication_equipment 0 telecom_equipment 0 002 @ 03078287 n 0000 ~ 04404412 n 0000 | a communication system for communicating at a distance -04400499 06 n 02 telegraph 0 telegraphy 0 006 @ 02727825 n 0000 + 10697519 n 0202 + 10697519 n 0201 + 02910074 a 0101 + 10697519 n 0101 + 01007222 v 0102 | apparatus used to communicate at a distance over a wire (usually in Morse code) -04400737 06 n 01 telegraph_key 0 001 @ 03613592 n 0000 | key consisting of a lever that sends a telegraph signal when it is depressed and the circuit is closed -04400899 06 n 01 telemeter 0 002 @ 04147495 n 0000 #p 04265668 n 0000 | any scientific instrument for observing events at a distance and transmitting the information back to the observer -04401088 06 n 03 telephone 0 phone 0 telephone_set 0 013 @ 03278248 n 0000 #p 04402746 n 0000 + 00789448 v 0204 + 00789448 v 0102 ~ 03179910 n 0000 ~ 03187595 n 0000 ~ 03306869 n 0000 ~ 03488438 n 0000 %p 03795123 n 0000 ~ 03902125 n 0000 ~ 04044498 n 0000 ~ 04270371 n 0000 %p 04402580 n 0000 | electronic equipment that converts sound into electrical signals that can be transmitted over distances and then converts received signals back into sounds; "I talked to him on the telephone" -04401578 06 n 01 telephone_bell 0 001 @ 03270695 n 0000 | electric bell that rings to signal a call -04401680 06 n 05 telephone_booth 0 phone_booth 0 call_box 0 telephone_box 0 telephone_kiosk 0 001 @ 02873839 n 0000 | booth for using a telephone -04401828 06 n 02 telephone_cord 0 phone_cord 0 001 @ 04402984 n 0000 | the telephone wire that connects to the handset -04401949 06 n 02 telephone_jack 0 phone_jack 0 001 @ 03589513 n 0000 | a jack for plugging in a telephone -04402057 06 n 05 telephone_line 0 phone_line 0 telephone_circuit 0 subscriber_line 0 line 7 009 @ 03091374 n 0000 ~ 03196990 n 0000 ~ 03543012 n 0000 ~ 03639497 n 0000 ~ 03894933 n 0000 ~ 04006227 n 0000 ~ 04449700 n 0000 ~ 04492157 n 0000 ~ 04563942 n 0000 | a telephone connection -04402342 06 n 02 telephone_plug 0 phone_plug 0 001 @ 03968293 n 0000 | a plug for connecting a telephone -04402449 06 n 03 telephone_pole 0 telegraph_pole 0 telegraph_post 0 001 @ 03988170 n 0000 | tall pole supporting telephone wires -04402580 06 n 02 telephone_receiver 0 receiver 1 003 @ 03261776 n 0000 #p 04401088 n 0000 ~ 03505667 n 0000 | earphone that converts electrical signals into sounds -04402746 06 n 02 telephone_system 0 phone_system 0 006 @ 03078287 n 0000 %p 02934168 n 0000 %p 02994858 n 0000 ~ 03742238 n 0000 %p 04373264 n 0000 %p 04401088 n 0000 | a communication system that transmits sound between distant points -04402984 06 n 04 telephone_wire 0 telephone_line 1 telegraph_wire 0 telegraph_line 0 002 @ 04594489 n 0000 ~ 04401828 n 0000 | the wire that carries telegraph and telephone signals -04403167 06 n 02 telephotograph 1 telephoto 0 001 @ 03925226 n 0000 | a photograph made with a telephoto lens -04403279 06 n 01 telephotograph 2 002 @ 03925226 n 0000 ~ 04043619 n 0000 | a photograph transmitted and reproduced over a distance -04403413 06 n 02 telephoto_lens 0 zoom_lens 0 001 @ 02943241 n 0000 | a camera lens that magnifies the image -04403524 06 n 01 Teleprompter 0 002 @ 04010779 n 0000 ;u 06851742 n 0000 | a prompter for television performers -04403638 06 n 02 telescope 0 scope 2 011 @ 03709206 n 0000 + 02517002 a 0101 + 02157936 a 0101 %p 02727141 n 0000 ~ 02751295 n 0000 ~ 03070854 n 0000 ~ 03293863 n 0000 %p 03340723 n 0000 %p 04005340 n 0000 ~ 04258618 n 0000 ~ 04471912 n 0000 | a magnifier of images of distant objects -04403925 06 n 02 telescopic_sight 0 telescope_sight 0 001 @ 03470387 n 0000 | gunsight consisting of a telescope on a firearm for use as a sight -04404072 06 n 01 telethermometer 0 001 @ 04421872 n 0000 | a thermometer that registers the temperature at some distant point -04404200 06 n 05 teletypewriter 0 teleprinter 0 teletype_machine 0 telex 0 telex_machine 0 002 @ 03007591 n 0000 + 00790965 v 0401 | a character printer connected to a telegraph that operates like a typewriter -04404412 06 n 02 television 0 television_system 0 013 @ 04400289 n 0000 ;c 06277280 n 0000 + 00969506 v 0102 %p 02756751 n 0000 ~ 02933990 n 0000 %p 02985137 n 0000 ~ 03049066 n 0000 ~ 03072201 n 0000 %p 03782006 n 0000 ~ 04137897 n 0000 %p 04405540 n 0000 %p 04405907 n 0000 %p 04406552 n 0000 | a telecommunication system that transmits images of objects (stationary or moving) between distant points -04404817 06 n 02 television_antenna 0 tv-antenna 0 002 @ 03846772 n 0000 ~ 04037076 n 0000 | an omnidirectional antenna tuned to the broadcast frequencies assigned to television -04404997 06 n 03 television_camera 0 tv_camera 0 camera 1 006 @ 04405540 n 0000 ~ 02942349 n 0000 %p 02943241 n 0000 %p 03531808 n 0000 %p 03788047 n 0000 %p 04405309 n 0000 | television equipment consisting of a lens system that focuses an image on a photosensitive mosaic that is scanned by an electron beam -04405309 06 n 02 television-camera_tube 0 television_pickup_tube 0 004 @ 04494204 n 0000 #p 04404997 n 0000 ~ 03559373 n 0000 ~ 03856728 n 0000 | a tube that rapidly scans an optical image and converts it into electronic signals -04405540 06 n 02 television_equipment 0 video_equipment 0 003 @ 03278248 n 0000 #p 04404412 n 0000 ~ 04404997 n 0000 | electronic equipment that broadcasts or receives electromagnetic waves representing images and sound -04405762 06 n 02 television_monitor 0 tv_monitor 0 001 @ 03782006 n 0000 | monitor used in a studio for monitoring the program being broadcast -04405907 06 n 09 television_receiver 0 television 1 television_set 0 tv 0 tv_set 0 idiot_box 0 boob_tube 0 telly 0 goggle_box 0 004 @ 04060647 n 0000 #p 04404412 n 0000 ;c 06277280 n 0000 %p 03617594 n 0000 | an electronic device that receives television signals and displays them on a screen; "the British call a tv set a telly" -04406239 06 n 02 television_room 0 tv_room 0 001 @ 04105893 n 0000 | a room set aside for viewing television -04406350 06 n 02 television_station 0 TV_station 0 004 @ 02903405 n 0000 #p 03077958 n 0000 %p 02903588 n 0000 ~ 03006398 n 0000 | station for the production and transmission of television broadcasts -04406552 06 n 01 television_transmitter 0 002 @ 04472726 n 0000 #p 04404412 n 0000 | transmitter that is part of a television system -04406687 06 n 02 telpher 0 telfer 0 002 @ 03100490 n 0000 #p 04406817 n 0000 | one of the conveyances (or cars) in a telpherage -04406817 06 n 02 telpherage 0 telferage 0 002 @ 04473432 n 0000 %p 04406687 n 0000 | a transportation system in which cars (telphers) are suspended from cables and operated on electricity -04407007 06 n 02 temazepam 0 Restoril 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | a frequently prescribed benzodiazepine (trade name Restoril); takes effect slowly and lasts long enough to help those people who wake up frequently during the night -04407257 06 n 04 tempera 0 poster_paint 0 poster_color 0 poster_colour 0 001 @ 04557308 n 0000 | pigment mixed with water-soluble glutinous materials such as size and egg yolk -04407435 06 n 01 temple 0 008 @ 03953416 n 0000 ~i 02744077 n 0000 ~ 03602365 n 0000 ~ 03874965 n 0000 ~ 03884778 n 0000 ~i 03893732 n 0000 ~i 04378842 n 0000 ~i 04408174 n 0000 | place of worship consisting of an edifice for the worship of a deity -04407686 06 n 01 temple 1 004 @ 02913152 n 0000 %p 03073977 n 0000 %p 03290195 n 0000 ~ 04614655 n 0000 | an edifice devoted to special or exalted purposes -04407844 06 n 04 Temple_of_Apollo 0 Oracle_of_Apollo 0 Delphic_oracle 0 oracle_of_Delphi 0 003 @i 03852908 n 0000 #p 08786855 n 0000 ;c 07979425 n 0000 | (Greek mythology) the oracle at Delphi where a priestess supposedly delivered messages from Apollo to those who sought advice; the messages were usually obscure or ambiguous -04408174 06 n 01 Temple_of_Artemis 0 001 @i 04407435 n 0000 | a large temple at Ephesus that was said to be one of the seven wonders of the ancient world -04408330 06 n 02 Temple_of_Jerusalem 0 Temple_of_Solomon 0 002 @i 04374735 n 0000 #p 08794798 n 0000 | any of three successive temples in Jerusalem that served as the primary center for Jewish worship; the first temple contained the Ark of the Covenant and was built by Solomon in the 10th century BC and destroyed by Nebuchadnezzar in 586 BC; the second was built in 515 BC and the third was an enlargement by Herod the Great in 20 BC that was destroyed by the Romans during a Jewish revolt in AD 70; all that remains is the Wailing Wall -04408871 06 n 02 temporary_hookup 0 patch 3 002 @ 03091374 n 0000 @ 03644248 n 0000 | a connection intended to be used for a limited time -04409011 06 n 02 tender 0 supply_ship 0 001 @ 04194289 n 0000 | ship that usually provides supplies to other ships -04409128 06 n 04 tender 1 ship's_boat 0 pinnace 0 cutter 1 002 @ 02858304 n 0000 ~ 03436772 n 0000 | a boat for communication between ship and shore -04409279 06 n 01 tender 2 001 @ 02959942 n 0000 | car attached to a locomotive to carry fuel and water -04409384 06 n 02 tenement 0 tenement_house 0 001 @ 02726681 n 0000 | a run-down apartment house barely meeting minimal standards -04409515 06 n 01 tennis_ball 0 001 @ 02778669 n 0000 | ball about the size of a fist used in playing tennis -04409625 06 n 01 tennis_camp 0 001 @ 02945161 n 0000 | a camp where tennis is taught -04409712 06 n 01 tennis_court 0 001 @ 03120491 n 0000 | the court on which tennis is played -04409806 06 n 02 tennis_racket 0 tennis_racquet 0 001 @ 04039381 n 0000 | a racket used to play tennis -04409911 06 n 01 tenon 0 002 @ 04008947 n 0000 #p 03787523 n 0000 | a projection at the end of a piece of wood that is shaped to fit into a mortise and form a mortise joint -04410086 06 n 02 tenor_drum 0 tom-tom 0 001 @ 03249569 n 0000 | any of various drums with small heads -04410190 06 n 01 Tenoretic 0 002 @ 02721160 n 0000 %s 02751782 n 0000 | trade name for an antihypertensive drug consisting of a fixed combination of atenolol and a diuretic -04410365 06 n 01 tenoroon 0 001 @ 02804610 n 0000 | a tenor bassoon; pitched a fifth higher than the ordinary bassoon -04410485 06 n 01 tenpenny_nail 0 001 @ 03804744 n 0000 | a nail 3 inches long -04410565 06 n 01 tenpin 0 001 @ 02882647 n 0000 | one of the bottle-shaped pins used in bowling -04410663 06 n 01 tensimeter 0 001 @ 03718335 n 0000 | a manometer for measuring vapor pressure -04410760 06 n 01 tensiometer 0 001 @ 03733925 n 0000 | a measuring instrument for measuring the surface tension of a liquid -04410886 06 n 01 tensiometer 1 001 @ 03733925 n 0000 | a measuring instrument for measuring the tension in a wire or fiber or beam -04411019 06 n 01 tensiometer 2 001 @ 03733925 n 0000 | a measuring instrument for measuring the moisture content of soil -04411142 06 n 02 ten-spot 0 ten 0 001 @ 04286307 n 0000 | one of four playing cards in a deck with ten pips on the face -04411264 06 n 02 tent 0 collapsible_shelter 0 020 @ 04191595 n 0000 + 02653996 v 0105 ~ 02769963 n 0000 ~ 02826812 n 0000 ~ 02931294 n 0000 ~ 02954163 n 0000 ~ 03114743 n 0000 ~ 03374473 n 0000 %p 03471779 n 0000 ~ 03652826 n 0000 ~ 03792972 n 0000 ~ 03900979 n 0000 ~ 03984125 n 0000 ~ 03997875 n 0000 ~ 04025508 n 0000 ~ 04029416 n 0000 ~ 04412416 n 0000 ~ 04498275 n 0000 ~ 04504038 n 0000 ~ 04507326 n 0000 | a portable shelter (usually of canvas stretched over supporting poles and fastened to the ground with ropes and pegs); "he pitched his tent near the creek" -04411835 06 n 01 tenter 0 002 @ 03391770 n 0000 %p 04411966 n 0000 | a framework with hooks used for stretching and drying cloth -04411966 06 n 01 tenterhook 0 002 @ 03532672 n 0000 #p 04411835 n 0000 | one of a series of hooks used to hold cloth on a tenter -04412097 06 n 05 tent-fly 0 rainfly 0 fly_sheet 0 fly 1 tent_flap 0 002 @ 03357376 n 0000 #p 03374473 n 0000 | flap consisting of a piece of canvas that can be drawn back to provide entrance to a tent -04412300 06 n 01 tent_peg 0 001 @ 03905540 n 0000 | a peg driven into the ground to hold a rope supporting a tent -04412416 06 n 03 tepee 0 tipi 0 teepee 0 002 @ 04411264 n 0000 @ 03685307 n 0000 | a Native American tent; usually of conical shape -04412550 06 n 02 terazosin 0 Hytrin 0 003 @ 02721160 n 0000 @ 02698769 n 0000 ;u 06845599 n 0201 | antihypertensive drug (trade name Hytrin) used to treat high blood pressure -04412727 06 n 02 terbinafine 0 Lamisil 0 002 @ 02720201 n 0000 ;u 06845599 n 0201 | an oral antifungal drug (trade name Lamisil) used to treat cases of fungal nail disease -04412901 06 n 03 terminal 0 terminus 1 depot 0 007 @ 04306080 n 0000 #p 04473432 n 0000 ~ 02693246 n 0000 ~ 02926288 n 0000 ~ 02984937 n 0000 ~ 04049098 n 0000 ~ 04349077 n 0000 | station where transport vehicles load or unload passengers or goods -04413151 06 n 02 terminal 1 pole 3 007 @ 03093792 n 0000 #p 03269401 n 0000 #p 02810471 n 0000 + 00358820 a 0201 ~ 02714535 n 0000 ~ 03817522 n 0000 ~ 03987865 n 0000 | a contact on an electrical device (such as a battery) at which electric current enters or leaves -04413419 06 n 01 terminal 2 004 @ 03278248 n 0000 ~ 03600169 n 0000 %p 03614007 n 0000 ~ 04075291 n 0000 | electronic equipment consisting of a device providing access to a computer; has a keyboard and display -04413631 06 n 01 terminus 0 001 @ 08566028 n 0000 | either end of a railroad or bus route -04413723 06 n 03 terminus 2 terminal_figure 0 term 0 002 @ 04306847 n 0000 ;c 06123363 n 0000 | (architecture) a statue or a human bust or an animal carved out of the top of a square pillar; originally used as a boundary marker in ancient Rome -04413969 06 n 01 terraced_house 0 003 @ 04115256 n 0000 #m 08431721 n 0000 ;r 08860123 n 0000 | a house that is part of a terrace -04414101 06 n 01 terra_cotta 0 001 @ 03262519 n 0000 | a hard unglazed brownish-red earthenware -04414199 06 n 01 terrarium 0 001 @ 04539203 n 0000 | a vivarium in which selected living plants are kept and observed -04414319 06 n 02 terra_sigillata 0 Samian_ware 0 001 @ 03262519 n 0000 | earthenware made from the reddish-brown clay found on the Aegean island of Lemnos -04414476 06 n 03 terry 0 terry_cloth 0 terrycloth 0 002 @ 03309808 n 0000 @ 04459610 n 0000 | a pile fabric (usually cotton) with uncut loops on both sides; used to make bath towels and bath robes -04414675 06 n 01 Tesla_coil 0 001 @ 04471315 n 0000 | a step-up transformer with an air core; used to produce high voltages at high frequencies -04414821 06 n 01 tessella 0 002 @ 04414909 n 0000 + 01338878 v 0101 | a small tessera -04414909 06 n 01 tessera 0 004 @ 04435180 n 0000 #p 03787759 n 0000 + 01338878 v 0101 ~ 04414821 n 0000 | a small square tile of stone or glass used in making mosaics -04415078 06 n 01 test_bed 0 001 @ 04602044 n 0000 | a place equipped with instruments for testing (e.g. engines or machinery or computer programs etc.) under working conditions -04415257 06 n 01 test_equipment 0 001 @ 03294048 n 0000 | equipment required to perform a test -04415354 06 n 01 tester 0 001 @ 02951843 n 0000 | a flat canopy (especially one over a four-poster bed) -04415460 06 n 01 test_paper 0 001 @ 03568117 n 0000 | paper impregnated with an indicator for use in chemical tests -04415578 06 n 01 test_range 0 001 @ 04053218 n 0000 | a range for conducting tests -04415663 06 n 03 test_rocket 0 research_rocket 0 test_instrument_vehicle 0 002 @ 04099429 n 0000 ~ 04262530 n 0000 | a rocket fired for test purposes -04415815 06 n 02 test_room 0 testing_room 0 001 @ 04105893 n 0000 | a room in which tests are conducted -04415921 06 n 01 test_tube 0 001 @ 04493505 n 0000 | glass tube closed at one end -04416005 06 n 01 testudo 0 001 @ 04014297 n 0000 | a movable protective covering that provided protection from above; used by Roman troops when approaching the walls of a besieged fortification -04416201 06 n 01 tetracaine 0 001 @ 03681148 n 0000 | a crystalline compound used in the form of a hydrochloride as a local anesthetic -04416338 06 n 04 tetrachlorethylene 0 tetrachloroethylene 0 ethylene_tetrachloride 0 carbon_dichloride 0 001 @ 04528630 n 0000 | anthelmintic agent used against hookworm and other nematodes -04416530 06 n 02 tetracycline 0 Achromycin 0 004 @ 02716205 n 0000 ;u 06845599 n 0201 ~ 03174211 n 0000 ~ 03771066 n 0000 | an antibiotic (trade name Achromycin) derived from microorganisms of the genus Streptomyces and used broadly to treat infections -04416785 06 n 02 tetrahydrocannabinol 0 THC 0 001 @ 04017137 n 0000 | psychoactive substance present in marijuana -04416901 06 n 02 tetraskelion 0 tetraskele 0 002 @ 03178782 n 0000 ~ 06883725 n 0000 | a figure consisting of four stylized human arms or legs (or bent lines) radiating from a center -04417086 06 n 01 tetrode 0 001 @ 04494204 n 0000 | a thermionic tube having four electrodes -04417180 06 n 01 textile_machine 0 006 @ 03699975 n 0000 ~ 03625539 n 0000 ~ 03689157 n 0000 ~ 04179913 n 0000 ~ 04279172 n 0000 ~ 04584794 n 0000 | a machine for making textiles -04417361 06 n 01 textile_mill 0 002 @ 03316406 n 0000 ~ 03115663 n 0000 | a factory for making textiles -04417467 06 n 01 thalidomide 0 002 @ 04166841 n 0000 @ 09455998 n 0000 | a sedative and hypnotic drug; withdrawn from sale after discovered to cause severe birth defects because it inhibits angiogenesis -04417672 06 n 02 thatch 0 thatched_roof 0 002 @ 04105068 n 0000 + 01233838 v 0101 | a house roof made with a plant material (as straw) -04417809 06 n 03 theater 0 theatre 0 house 2 021 @ 02913152 n 0000 ;c 07006119 n 0000 ~ 02736645 n 0000 %p 02885882 n 0000 ~ 03032252 n 0000 %p 03033019 n 0000 ~ 03202481 n 0000 %p 03238131 n 0000 %p 03458128 n 0000 ~ 03529860 n 0000 ~ 03678729 n 0000 ~ 03801533 n 0000 ~ 03849814 n 0000 %p 03853178 n 0000 %p 03853291 n 0000 %p 03892035 n 0000 %p 03892273 n 0000 %p 04296562 n 0000 %p 04302334 n 0000 %p 04418818 n 0000 %p 04434285 n 0000 | a building where theatrical performances or motion-picture shows can be presented; "the house was full" -04418357 06 n 02 theater_curtain 0 theatre_curtain 0 003 @ 03151077 n 0000 #p 04418818 n 0000 ~ 04126541 n 0000 | a hanging cloth that conceals the stage from the view of the audience; rises or parts at the beginning and descends or closes between acts and at the end of a performance -04418644 06 n 01 theater_light 0 005 @ 03665366 n 0000 ~ 03380134 n 0000 %m 03545585 n 0000 %m 03669665 n 0000 %m 04286575 n 0000 | any of various lights used in a theater -04418818 06 n 02 theater_stage 0 theatre_stage 0 008 @ 04296562 n 0000 #p 04417809 n 0000 ~ 02858044 n 0000 %p 03229526 n 0000 %p 04013176 n 0000 %p 04013362 n 0000 %p 04418357 n 0000 ~ 04430738 n 0000 | a stage in a theater on which actors can perform -04419073 06 n 02 theodolite 0 transit 0 004 @ 04365484 n 0000 + 01866872 v 0201 %p 02697022 n 0000 ~ 04383015 n 0000 | a surveying instrument for measuring horizontal and vertical angles, consisting of a small telescope mounted on a tripod -04419315 06 n 04 theophylline 0 Elixophyllin 0 Slo-Bid 0 Theobid 0 007 @ 02905612 n 0000 ;u 06851742 n 0401 ;u 06845599 n 0401 ;u 06851742 n 0301 ;u 06845599 n 0301 ;u 06851742 n 0201 ;u 06845599 n 0201 | a colorless crystalline alkaloid derived from tea leaves or made synthetically; used in medicine as a bronchial dilator -04419642 06 n 01 theremin 0 001 @ 03279153 n 0000 | an electronic musical instrument; melodies can be played by moving the right hand between two rods that serve as antennas to control pitch; the left hand controls phrasing -04419868 06 n 01 thermal_printer 0 001 @ 04004475 n 0000 | a printer that produces characters by applying heat to special paper that is sensitive to heat -04420024 06 n 01 thermal_reactor 0 002 @ 03834040 n 0000 ! 03324629 n 0101 | a nuclear reactor in which nuclear fissions are caused by neutrons that are slowed down by a moderator -04420206 06 n 02 thermistor 0 thermal_resistor 0 001 @ 04171831 n 0000 | a semiconductor device made of materials whose resistance varies as a function of temperature; can be used to compensate for temperature variation in other components of a circuit -04420461 06 n 05 thermobaric_bomb 0 fuel-air_bomb 0 vacuum_bomb 0 volume-detonation_bomb 0 aerosol_bomb 1 002 @ 02866578 n 0000 @ 03400389 n 0000 | a bomb that uses a fuel-air explosive; "a thermobaric bomb can create overpressures equal to an atomic bomb" -04420720 06 n 02 thermocouple 0 thermocouple_junction 0 001 @ 04421872 n 0000 | a kind of thermometer consisting of two wires of different metals that are joined at both ends; one junction is at the temperature to be measured and the other is held at a fixed lower temperature; the current generated in the circuit is proportional to the temperature difference -04421083 06 n 03 thermoelectric_thermometer 0 thermel 0 electric_thermometer 0 001 @ 04421872 n 0000 | a thermometer that uses thermoelectric current to measure temperature -04421258 06 n 02 thermograph 0 thermometrograph 0 001 @ 04421872 n 0000 | a thermometer that records temperature variations on a graph as a function of time -04421417 06 n 01 thermograph 1 001 @ 03739693 n 0000 | medical instrument that uses an infrared camera to reveal temperature variations on the surface of the body -04421582 06 n 02 thermohydrometer 0 thermogravimeter 0 003 @ 03553486 n 0000 + 03003031 a 0202 + 03003031 a 0101 | a hydrometer that includes a thermometer -04421740 06 n 01 thermojunction 0 001 @ 03605915 n 0000 | a junction between two dissimilar metals across which a voltage appears -04421872 06 n 01 thermometer 0 025 @ 03733925 n 0000 + 03124931 a 0101 ~ 02695762 n 0000 ~ 02948942 n 0000 %p 02956069 n 0000 ~ 02994743 n 0000 ~ 03142099 n 0000 ~ 03251100 n 0000 ~ 03317673 n 0000 ~ 03426285 n 0000 ~ 03732658 n 0000 ~ 03736470 n 0000 ~ 03749807 n 0000 ~ 03862862 n 0000 ~ 04029734 n 0000 ~ 04060198 n 0000 ~ 04079746 n 0000 ~ 04085746 n 0000 ~ 04170384 n 0000 ~ 04404072 n 0000 ~ 04420720 n 0000 ~ 04421083 n 0000 ~ 04421258 n 0000 ~ 04422566 n 0000 ~ 04573625 n 0000 | measuring instrument for measuring temperature -04422409 06 n 02 thermonuclear_reactor 0 fusion_reactor 0 001 @ 03834040 n 0000 | a nuclear reactor that uses controlled nuclear fusion to generate energy -04422566 06 n 01 thermopile 0 001 @ 04421872 n 0000 | a kind of thermometer for measuring heat radiation; consists of several thermocouple junctions in series -04422727 06 n 03 thermos 0 thermos_bottle 0 thermos_flask 0 001 @ 04518132 n 0000 | vacuum flask that preserves temperature of hot or cold drinks -04422875 06 n 02 thermostat 0 thermoregulator 0 008 @ 04072193 n 0000 #p 03103128 n 0000 #p 03567066 n 0000 + 03125096 a 0101 + 02511424 v 0101 %p 02839758 n 0000 ~ 03142325 n 0000 ~ 04030054 n 0000 | a regulator for automatically regulating temperature by starting or stopping the supply of heat -04423174 06 n 01 thiabendazole 0 002 @ 02720201 n 0000 @ 04528630 n 0000 | an antifungal agent and anthelmintic -04423288 06 n 01 thiazide 0 005 @ 03214670 n 0000 ~ 03022788 n 0000 ~ 03552169 n 0000 ~ 03552639 n 0000 ~ 04481373 n 0000 | any of a group of drugs commonly used as diuretics in the treatment of hypertension; they block the reabsorption of sodium in the kidneys -04423552 06 n 01 thigh_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn over the thighs by football players -04423687 06 n 01 thill 0 001 @ 04182322 n 0000 | one of two shafts extending from the body of a cart or carriage on either side of the animal that pulls it -04423845 06 n 01 thimble 0 002 @ 02955065 n 0000 @ 03094503 n 0000 | a small metal cap to protect the finger while sewing; can be used as a small container -04424003 06 n 03 thimerosal 0 sodium_ethylmercurithiosalicylate 0 Merthiolate 0 002 @ 02724207 n 0000 ;u 06845599 n 0301 | a light-colored crystalline powder (trade name Merthiolate) used as a surgical antiseptic -04424218 06 n 01 thing 0 007 @ 00021939 n 0000 ~ 03356158 n 0000 ~ 03936764 n 0000 ~ 04251377 n 0000 ~ 04301919 n 0000 ~ 04521699 n 0000 ~ 04596630 n 0000 | an artifact; "how does this thing work?" -04424418 06 n 01 thing 1 009 @ 00001740 n 0000 ~ 03005920 n 0000 ~ 03395745 n 0000 ~ 03537866 n 0000 ~ 03599212 n 0000 ~ 03870461 n 0000 ~ 04165811 n 0000 ~ 04320731 n 0000 ~ 04574234 n 0000 | an entity that is not named specifically; "I couldn't tell what the thing was" -04424692 06 n 01 thinning_shears 0 002 @ 04186848 n 0000 ;u 06295235 n 0000 | shears with one serrate blade; used for thinning hair -04424826 06 n 01 thioguanine 0 001 @ 02722458 n 0000 | an antineoplastic drug used to treat acute leukemias -04424936 06 n 04 thiopental 0 thiopental_sodium 0 thiopentobarbital_sodium 0 Pentothal 0 003 @ 02792049 n 0000 @ 04492856 n 0000 ;u 06845599 n 0401 | barbiturate that is a hygroscopic powder (trade name Pentothal) that is a strong barbiturate that acts rapidly; induces a relaxed state when injected as a general anesthetic -04425262 06 n 02 thioridazine 0 Mellaril 0 002 @ 03713736 n 0000 ;u 06845599 n 0201 | a tranquilizer (trade name Mellaril) used to treat schizophrenia and other psychotic disorders -04425445 06 n 01 Thiosulfil 0 001 @ 04352070 n 0000 | trade name for a sulfonamide antibacterial -04425544 06 n 01 thiotepa 0 001 @ 02722458 n 0000 | an antineoplastic drug used to treat certain malignancies -04425656 06 n 02 thiothixene 0 Navane 0 002 @ 03713736 n 0000 ;u 06845599 n 0201 | a tranquilizer (trade name Navane) used to treat schizophrenia -04425804 06 n 02 third_base 0 third 1 001 @ 02797881 n 0000 | the base that must be touched third by a base runner in baseball; "he was cut down on a close play at third" -04425977 06 n 02 third_gear 0 third 0 002 @ 03431243 n 0000 #p 02958343 n 0000 | the third from the lowest forward ratio gear in the gear box of a motor vehicle; "you shouldn't try to start in third gear" -04426184 06 n 01 third_rail 0 001 @ 04463679 n 0000 | a rail through which electric current is supplied to an electric locomotive -04426316 06 n 01 thong 1 001 @ 03653220 n 0000 | a thin strip of leather; often used to lash things together -04426427 06 n 01 thong 4 001 @ 04508489 n 0000 | underpants resembling a G-string; worn by women especially under very tight pants; "she wore thongs in her quest for the callipygian ideal" -04426618 06 n 01 thoroughfare 0 005 @ 04096066 n 0000 ~ 02744532 n 0000 ~ 02851540 n 0000 ~ 04334599 n 0000 ~ 04335209 n 0000 | a public road from one place to another -04426788 06 n 02 thread 0 yarn 0 016 @ 03106110 n 0000 + 01359432 v 0102 + 01521912 v 0101 ~ 03115301 n 0000 ~ 03175843 n 0000 ~ 03367545 n 0000 ~ 03644698 n 0000 ~ 03665083 n 0000 ~ 03751977 n 0000 ~ 03936045 n 0000 ~ 04026304 n 0000 ~ 04367205 n 0000 ~ 04440059 n 0000 ~ 04551950 n 0000 ~ 04598965 n 0000 ~ 04605321 n 0000 | a fine cord of twisted fibers (of cotton or silk or wool or nylon etc.) used in sewing and weaving -04427216 06 n 02 three-centered_arch 0 basket-handle_arch 0 001 @ 04113765 n 0000 | a round arch whose inner curve is drawn with circles having three centers -04427376 06 n 01 three-decker 0 001 @ 04552696 n 0000 | a warship carrying guns on three decks -04427473 06 n 01 three-decker 1 001 @ 04194289 n 0000 | any ship having three decks -04427559 06 n 02 three-dimensional_radar 0 3d_radar 0 001 @ 04039848 n 0000 | radar that will report altitude as well as azimuth and distance of a target -04427715 06 n 01 three-piece_suit 0 002 @ 02925519 n 0000 %p 04531873 n 0000 | a business suit consisting of a jacket and vest and trousers -04427857 06 n 01 three-quarter_binding 0 001 @ 02840619 n 0000 | the spine and much of the sides are a different material from the rest of the cover -04428008 06 n 02 three-way_switch 0 three-point_switch 0 001 @ 04372370 n 0000 | an electric switch that has three terminals; used to control a circuit from two different locations -04428191 06 n 03 thresher 0 thrasher 0 threshing_machine 0 003 @ 03322940 n 0000 + 01416364 v 0201 + 01416364 v 0102 | a farm machine for separating seeds or grain from the husks and straw -04428382 06 n 01 threshing_floor 0 001 @ 02735688 n 0000 | a floor or ground area for threshing or treading out grain -04428502 06 n 02 threshold_element 0 threshold_gate 0 001 @ 03687306 n 0000 | a logic element that performs a threshold operation -04428634 06 n 02 thriftshop 0 second-hand_store 0 001 @ 04202417 n 0000 | a shop that sells secondhand goods at reduced prices -04428763 06 n 01 throat 0 001 @ 03895293 n 0000 | a passage resembling a throat in shape or function; "the throat of the vase"; "the throat of a chimney"; -04428920 06 n 01 throat 1 002 @ 03848729 n 0000 #p 04199027 n 0000 | an opening in the vamp of a shoe at the instep -04429038 06 n 01 throat_protector 0 001 @ 04015204 n 0000 | protective garment worn by hockey goalkeeper and catcher in baseball -04429169 06 n 03 thrombolytic 0 thrombolytic_agent 0 clot_buster 0 002 @ 03920989 n 0000 ~ 04441282 n 0000 | a kind of pharmaceutical that can break up clots blocking the flow of blood to the heart muscle -04429376 06 n 01 throne 0 007 @ 03002210 n 0000 + 02391193 v 0102 + 02564546 v 0101 ~ 02983904 n 0000 ~ 03750540 n 0000 ~ 03802507 n 0000 ~ 03902564 n 0000 | the chair of state for a monarch, bishop, etc.; "the king sat on his throne" -04429613 06 n 01 throstle 0 001 @ 04279172 n 0000 | a spinning machine formerly used to twist and wind fibers of cotton or wool continuously -04429756 06 n 01 throughput 0 002 @ 03860882 n 0000 ;c 03082979 n 0000 | output relative to input; the amount passing through a system from input to output (especially of a computer program over a period of time) -04429971 06 n 01 throw 0 002 @ 02820210 n 0000 + 01499265 v 0101 | bedclothes consisting of a lightweight cloth covering (an afghan or bedspread) that is casually thrown over something -04430158 06 n 04 throwing_stick 1 throwing_board 0 spear_thrower 0 dart_thrower 0 001 @ 03183080 n 0000 | a device resembling a sling that is used in various primitive societies to propel a dart or spear -04430364 06 n 01 throw_pillow 0 001 @ 03151500 n 0000 | a small cushion that is used for decorative purposes -04430475 06 n 01 thrust_bearing 0 001 @ 02817031 n 0000 | a bearing designed to take thrusts parallel to the axis of revolution -04430605 06 n 01 thruster 0 001 @ 04099175 n 0000 | a small rocket engine that provides the thrust needed to maneuver a spacecraft -04430738 06 n 01 thrust_stage 0 001 @ 04418818 n 0000 | a theater stage that extends out into the audience's part of a theater and has seats on three sides -04430896 06 n 01 thumb 0 002 @ 03122748 n 0000 #p 03441112 n 0000 | the part of a glove that provides a covering for the thumb -04431025 06 n 01 thumbhole 0 002 @ 03341707 n 0000 #p 02882301 n 0000 | a finger hole made to fit the thumb (as in a bowling ball) -04431158 06 n 01 thumbhole 1 002 @ 03526198 n 0000 #p 04598582 n 0000 | the hole in a woodwind that is closed and opened with the thumb -04431296 06 n 01 thumb_index 0 001 @ 03832405 n 0000 | one of a series of rounded notches in the fore edge of a book to indicate sections -04431436 06 n 01 thumbscrew 1 001 @ 04153751 n 0000 | screw designed to be turned with the thumb and fingers -04431547 06 n 01 thumbscrew 2 001 @ 03576215 n 0000 | instrument of torture that crushes the thumb -04431648 06 n 01 thumbstall 0 001 @ 04014297 n 0000 | protective covering for an injured thumb -04431745 06 n 03 thumbtack 0 drawing_pin 0 pushpin 0 003 @ 04383130 n 0000 @ 03887185 n 0000 + 01357656 v 0101 | a tack for attaching papers to a bulletin board or drawing board -04431925 06 n 01 thunderer 0 002 @ 03827536 n 0000 + 01046587 v 0101 | a noisemaker that makes a sound like thunder -04432043 06 n 02 thwart 0 cross_thwart 0 002 @ 03137579 n 0000 #p 03199901 n 0000 | a crosspiece spreading the gunnels of a boat; used as a seat in a rowboat -04432203 06 n 01 tiara 0 001 @ 03597317 n 0000 | a jeweled headdress worn by women on formal occasions -04432308 06 n 01 tick 0 002 @ 03731164 n 0000 + 01331689 v 0101 | a light mattress -04432393 06 n 02 ticker 0 stock_ticker 0 001 @ 03007591 n 0000 | a character printer that automatically prints stock quotations on ticker tape -04432538 06 n 01 ticket_window 0 001 @ 04588986 n 0000 | a window through which tickets are sold (as from a ticket booth) -04432662 06 n 01 ticking 0 002 @ 03309808 n 0000 + 01331689 v 0101 | a strong fabric used for mattress and pillow covers -04432785 06 n 01 tickler_coil 0 001 @ 03065708 n 0000 | a small coil in series with the anode of a vacuum tube and coupled to the grid to provide feedback -04432942 06 n 01 tidemark 0 001 @ 03568117 n 0000 | indicator consisting of a line at the highwater or low-water limits of the tides -04433077 06 n 01 tidy 0 001 @ 04060904 n 0000 | receptacle that holds odds and ends (as sewing materials) -04433185 06 n 01 tie 0 003 @ 03106110 n 0000 + 01285440 v 0101 ~ 03235560 n 0000 | a cord (or string or ribbon or wire etc.) with which something is tied; "he needed a tie for the packages" -04433377 06 n 02 tie 2 tie_beam 0 001 @ 02815950 n 0000 | a horizontal beam used to prevent two other structural members from spreading apart or separating; "he nailed the rafters together with a tie beam" -04433585 06 n 04 tie 3 railroad_tie 0 crosstie 0 sleeper 1 002 @ 02886599 n 0000 #p 04048075 n 0000 | one of the cross braces that support the rails on a railway track; "the British call a railroad tie a sleeper" -04433800 06 n 01 tie_clip 0 001 @ 03597469 n 0000 | a piece of jewelry that holds a man's tie in place -04433905 06 n 01 tier 0 001 @ 03650173 n 0000 | one of two or more layers one atop another; "tier upon tier of huge casks"; "a three-tier wedding cake" -04434059 06 n 01 tier 1 002 @ 04108268 n 0000 + 01285440 v 0101 | something that is used for tying; "the sail is fastened to the yard with tiers" -04434207 06 n 01 tie_rack 0 001 @ 04038727 n 0000 | a rack for storing ties -04434285 06 n 01 tiered_seat 0 005 @ 04162998 n 0000 #p 04295881 n 0000 #p 04417809 n 0000 #p 02705201 n 0000 ~ 04300741 n 0000 | seating that is arranged in sloping tiers so that spectators in the back can see over the heads of those in front -04434531 06 n 01 tie_rod 0 002 @ 04100174 n 0000 #p 04312916 n 0000 | either of two rods that link the steering gear to the front wheels -04434670 06 n 03 tie_tack 0 tiepin 0 scarfpin 0 001 @ 03940713 n 0000 | a pin used to hold the tie in place -04434780 06 n 01 tightrope 0 002 @ 04108268 n 0000 ~ 03520399 n 0000 | tightly stretched rope or wire on which acrobats perform high above the ground -04434932 06 n 02 tights 0 leotards 1 004 @ 03540267 n 0000 ;u 06295235 n 0000 ~ 03710637 n 0000 ~ 03885904 n 0000 | skintight knit hose covering the body from the waist to the feet worn by acrobats and dancers and as stockings by women and girls -04435180 06 n 01 tile 0 004 @ 04233405 n 0000 #p 04435653 n 0000 + 01338663 v 0101 ~ 04414909 n 0000 | a flat thin rectangular slab (as of fired clay or rubber or linoleum) used to cover surfaces -04435378 06 n 01 tile 1 001 @ 03716327 n 0000 | game equipment consisting of a flat thin piece marked with characters and used in board games like Mah-Jong, Scrabble, etc. -04435552 06 n 01 tile_cutter 0 001 @ 03154073 n 0000 | a cutter (tool for cutting) for floor tiles -04435653 06 n 01 tile_roof 0 002 @ 04105068 n 0000 %p 04435180 n 0000 | a roof made of fired clay tiles -04435759 06 n 01 tiller 0 002 @ 03659292 n 0000 #p 04117216 n 0000 | lever used to turn the rudder on a boat -04435870 06 n 01 tilter 0 002 @ 03183080 n 0000 + 01884577 v 0103 | a device for emptying a cask by tilting it without disturbing the dregs -04436012 06 n 03 tilt-top_table 0 tip-top_table 0 tip_table 0 001 @ 03904060 n 0000 | a pedestal table whose top is hinged so that it can be tilted to a vertical position -04436185 06 n 01 timber 0 005 @ 02815950 n 0000 ~ 03116333 n 0000 ~ 04316924 n 0000 ~ 04338963 n 0000 ~ 04503705 n 0000 | a beam made of wood -04436329 06 n 01 timber 1 001 @ 03988170 n 0000 | a post made of wood -04436401 06 n 01 timber_hitch 0 001 @ 03522634 n 0000 | a hitch used to secure a rope to a log or spar; often supplemented by a half hitch -04436542 06 n 01 timbrel 0 001 @ 03249569 n 0000 | small hand drum similar to a tambourine; formerly carried by itinerant jugglers -04436675 06 n 01 time-ball 0 002 @ 13899404 n 0000 #p 04437953 n 0000 | a ball that slides down a staff to show a fixed time; especially at an observatory -04436832 06 n 02 time_bomb 0 infernal_machine 0 001 @ 02866578 n 0000 | a bomb that has a detonating mechanism that can be set to go off at a particular time -04436992 06 n 01 time_capsule 0 001 @ 03094503 n 0000 | container for preserving historical records to be discovered at some future time -04437131 06 n 01 timecard 0 001 @ 14800034 n 0000 | a card used with a time clock to record an employee's starting and quitting times each day -04437276 06 n 01 time_clock 0 001 @ 03046257 n 0000 | clock used to record the hours that people work -04437380 06 n 02 time-delay_measuring_instrument 0 time-delay_measuring_system 0 001 @ 03027108 n 0000 | chronoscope for measuring the time difference between two events -04437552 06 n 01 time_exposure 0 001 @ 03925226 n 0000 | a photograph produced with a relatively long exposure time -04437670 06 n 01 time-fuse 0 001 @ 03407122 n 0000 | a fuse made to burn for a given time (especially to explode a bomb) -04437793 06 n 01 time_machine 0 001 @ 03699975 n 0000 | a science fiction machine that is supposed to transport people or objects into the past or the future -04437953 06 n 03 timepiece 0 timekeeper 0 horologe 0 013 @ 03733925 n 0000 ~ 02753394 n 0000 %p 02777402 n 0000 ~ 03046257 n 0000 %p 03186696 n 0000 %p 03296081 n 0000 %p 03477143 n 0000 %p 03482523 n 0000 ~ 04134632 n 0000 ~ 04355338 n 0000 %p 04436675 n 0000 ~ 04438304 n 0000 ~ 04555897 n 0000 | a measuring instrument or device for keeping time -04438304 06 n 01 timer 0 006 @ 04437953 n 0000 + 00702226 v 0101 + 00490968 v 0102 ~ 03026907 n 0000 ~ 03891332 n 0000 ~ 04328186 n 0000 | a timepiece that measures a time interval and signals its end -04438507 06 n 01 timer 1 002 @ 03450018 n 0000 + 00297906 v 0101 | a regulator that activates or deactivates a mechanism at set times -04438643 06 n 01 time-switch 0 001 @ 04372370 n 0000 | a switch set to operate at a desired time -04438742 06 n 02 timolol 0 Blocadren 0 002 @ 02832168 n 0000 ;u 06845599 n 0201 | a beta blocker (trade name Blocadren) administered after heart attacks -04438897 06 n 01 tin 3 002 @ 04531098 n 0000 #s 04439840 n 0000 | a vessel (box, can, pan, etc.) made of tinplate and used mainly in baking -04439039 06 n 01 tin_can 1 001 @ 03180504 n 0000 | informal term for a destroyer -04439122 06 n 01 tincture 0 004 @ 03740161 n 0000 ;c 06054892 n 0000 ~ 04439305 n 0000 ~ 11927509 n 0000 | (pharmacology) a medicine consisting of an extract in an alcohol solution -04439305 06 n 02 tincture_of_iodine 0 iodine 0 002 @ 04439122 n 0000 @ 02724207 n 0000 | a tincture consisting of a solution of iodine in ethyl alcohol; applied topically to wounds as an antiseptic -04439505 06 n 01 tinderbox 0 001 @ 02883344 n 0000 | a box for holding tinder -04439585 06 n 01 tine 0 003 @ 04010927 n 0000 #p 03383948 n 0000 #p 03950359 n 0000 | prong on a fork or pitchfork or antler -04439712 06 n 02 tinfoil 0 tin_foil 0 002 @ 03375694 n 0000 %s 14658855 n 0000 | foil made of tin or an alloy of tin and lead -04439840 06 n 02 tin_plate 0 tinplate 0 003 @ 04189482 n 0000 #s 04440486 n 0000 %s 04438897 n 0000 | a thin sheet of metal (iron or steel) coated with tin to prevent rusting; used especially for cans, pots, and tins -04440059 06 n 01 tinsel 0 004 @ 04426788 n 0000 + 00057737 a 0103 + 01677989 v 0101 + 01519446 v 0101 | a thread with glittering metal foil attached -04440210 06 n 01 tinsel 1 004 @ 03169390 n 0000 + 00057737 a 0103 + 01677989 v 0101 + 02325405 v 0101 | a showy decoration that is basically valueless; "all the tinsel of self-promotion" -04440399 06 n 01 tintack 0 001 @ 04383130 n 0000 | tack or small nail of tinned iron -04440486 06 n 01 tinware 0 002 @ 02745091 n 0000 %s 04439840 n 0000 | articles of commerce made of tin plate -04440597 06 n 01 tippet 0 001 @ 02955767 n 0000 | a woman's fur shoulder cape with hanging ends; often consisting of the whole fur of a fox or marten -04440749 06 n 02 tire 0 tyre 0 004 @ 03533972 n 0000 ~ 02971167 n 0000 ~ 03971422 n 0000 ~ 04543636 n 0000 | hoop that covers a wheel; "automobile tires are usually made of rubber and filled with compressed air" -04440963 06 n 02 tire_chain 0 snow_chain 0 001 @ 02999410 n 0000 | chain attached to wheels to increase traction on ice or snow -04441093 06 n 02 tire_iron 0 tire_tool 0 002 @ 03489162 n 0000 @ 03659292 n 0000 | hand tool consisting of a lever that is used to force the casing of a pneumatic tire onto a steel wheel -04441282 06 n 02 tissue_plasminogen_activator 0 Activase 0 002 @ 04429169 n 0000 ;u 06845599 n 0201 | a thrombolytic agent (trade name Activase) that causes fibrinolysis at the site of a blood clot; used in treating acute myocardial infarction -04441528 06 n 01 titfer 0 002 @ 03497657 n 0000 ;r 08860123 n 0000 | a hat (Cockney rhyming slang: `tit for tat' rhymes with `hat') -04441662 06 n 01 tithe_barn 0 001 @ 02793495 n 0000 | barn originally built to hold tithes paid in kind and common in England -04441790 06 n 01 titrator 0 002 @ 02727825 n 0000 + 00491910 v 0101 | an apparatus for performing a titration -04441902 06 n 01 T-junction 0 001 @ 03605722 n 0000 | a junction where two roads or pipes etc. meet to form a T -04442016 06 n 01 T-network 0 001 @ 03033362 n 0000 | a circuit formed by two equal series circuits with a shunt between them -04442143 06 n 02 TNT 0 trinitrotoluene 0 001 @ 03305135 n 0000 | explosive consisting of a yellow crystalline compound that is a flammable toxic derivative of toluene -04442312 06 n 01 toaster 0 002 @ 03620052 n 0000 + 00322151 v 0102 | a kitchen appliance (usually electric) for toasting bread -04442441 06 n 01 toaster_oven 0 001 @ 03620052 n 0000 | kitchen appliance consisting of a small electric oven for toasting or warming food -04442582 06 n 01 toasting_fork 0 001 @ 03383948 n 0000 | long-handled fork for cooking or toasting frankfurters or bread etc. (especially over an open fire) -04442741 06 n 01 toastrack 0 001 @ 04038727 n 0000 | a rack for holding slices of toast -04442831 06 n 02 tobacco 0 baccy 0 012 @ 14991927 n 0000 @ 03248958 n 0000 + 10713923 n 0101 + 04443257 n 0103 ~ 03338009 n 0000 ~ 04103491 n 0000 ~ 04247336 n 0000 ~ 04252939 n 0000 %s 12907857 n 0000 %s 14714817 n 0000 ~ 14715356 n 0000 ~ 14715453 n 0000 | leaves of the tobacco plant dried and prepared for smoking or ingestion -04443164 06 n 01 tobacco_pouch 0 001 @ 03993180 n 0000 | a pouch for carrying pipe tobacco -04443257 06 n 03 tobacco_shop 0 tobacconist_shop 0 tobacconist 0 002 @ 04202417 n 0000 + 04442831 n 0301 | a shop that sells pipes and pipe tobacco and cigars and cigarettes -04443433 06 n 01 toboggan 0 003 @ 04235291 n 0000 + 10714195 n 0101 + 01940034 v 0101 | a long narrow sled without runners; boards curve upward in front -04443588 06 n 02 tobramycin 0 Nebcin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | an antibiotic (trade name Nebcin) that is especially effective against Gram-negative bacteria -04443766 06 n 03 toby 0 toby_jug 0 toby_fillpot_jug 0 001 @ 03797390 n 0000 | a drinking mug in the shape of a stout man wearing a three-cornered hat -04443918 06 n 02 tocainide 0 Tonocard 0 002 @ 02715941 n 0000 ;u 06845599 n 0201 | antiarrhythmic drug (trade name Tonocard) used to treat ventricular arrhythmias when less dangerous drugs have failed -04444121 06 n 02 tocsin 0 warning_bell 0 001 @ 02824448 n 0000 | a bell used to sound an alarm -04444218 06 n 01 toe 0 002 @ 03122748 n 0000 #p 03380867 n 0000 | the part of footwear that provides a covering for the toes -04444345 06 n 01 toe 1 005 @ 03892891 n 0000 #p 03446268 n 0000 ;c 00464894 n 0000 + 01402305 v 0101 + 01404138 v 0101 | (golf) the part of a clubhead farthest from the shaft -04444522 06 n 01 toe_box 0 003 @ 04514359 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 | the forward tip of the upper of a shoe or boot that provides space and protection for the toes; "the toe box may be rounded or pointed" -04444749 06 n 01 toecap 0 004 @ 04014297 n 0000 #p 02872752 n 0000 #p 04199027 n 0000 ~ 04593376 n 0000 | a protective leather or steel cover for the toe of a boot or shoe, reinforcing or decorating it -04444953 06 n 01 toehold 0 001 @ 03379989 n 0000 | a small foothold used in climbing -04445040 06 n 01 toga 0 002 @ 03045337 n 0000 ~ 04445154 n 0000 | a one-piece cloak worn by men in ancient Rome -04445154 06 n 01 toga_virilis 0 003 @ 04445040 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (ancient Rome) a toga worn by a youth as a symbol of manhood and citizenship -04445327 06 n 01 toggle 0 003 @ 03323703 n 0000 + 01608004 v 0101 + 02357561 v 0101 | a fastener consisting of a peg or pin or crosspiece that is inserted into an eye at the end of a rope or a chain or a cable in order to fasten it to something (as another rope or chain or cable) -04445610 06 n 01 toggle_bolt 0 001 @ 03323703 n 0000 | a fastener consisting of a threaded bolt and a hinged spring-loaded toggle; used to fasten objects to hollow walls -04445782 06 n 01 toggle_joint 0 001 @ 03600977 n 0000 | a joint made by two arms attached by a pivot; used to apply pressure at the two ends by straightening the joint -04445952 06 n 04 toggle_switch 0 toggle 1 on-off_switch 0 on/off_switch 0 004 @ 04372370 n 0000 + 01475075 v 0201 + 02357561 v 0201 ~ 03204558 n 0000 | a hinged switch that can assume either of two positions -04446162 06 n 03 togs 0 threads 0 duds 0 002 @ 03051540 n 0000 ;u 06295235 n 0000 | informal terms for clothing -04446276 06 n 07 toilet 0 lavatory 0 lav 0 can 2 john 0 privy 1 bathroom 1 006 @ 04105893 n 0000 ~ 03501520 n 0000 ~ 04018667 n 0000 %p 04446521 n 0000 ~ 04555291 n 0000 ~ 04558478 n 0000 | a room or building equipped with one or more toilets -04446521 06 n 08 toilet 1 can 3 commode 0 crapper 0 pot 1 potty 1 stool 1 throne 1 010 @ 03969259 n 0000 #p 04446276 n 0000 #p 02807731 n 0000 + 00074038 v 0701 + 00074038 v 0407 ~ 03371728 n 0000 ~ 03371875 n 0000 ~ 03993053 n 0000 %p 04447028 n 0000 %p 04447861 n 0000 | a plumbing fixture for defecation and urination -04446844 06 n 02 toilet_bag 0 sponge_bag 0 002 @ 02773037 n 0000 ;r 08860123 n 0000 | a waterproof bag for holding bathrooms items (soap and toothpaste etc.) when you are travelling -04447028 06 n 01 toilet_bowl 0 002 @ 02881193 n 0000 #p 04446521 n 0000 | the bowl of a toilet that can be flushed with water -04447156 06 n 02 toilet_kit 0 travel_kit 0 001 @ 03619650 n 0000 | a kit for carrying toilet articles while traveling -04447276 06 n 03 toilet_powder 0 bath_powder 0 dusting_powder 0 002 @ 03994008 n 0000 ~ 04386792 n 0000 | a fine powder for spreading on the body (as after bathing) -04447443 06 n 02 toiletry 0 toilet_articles 0 016 @ 03575240 n 0000 ~ 02723165 n 0000 ~ 02807523 n 0000 ~ 02808185 n 0000 ~ 03113152 n 0000 ~ 03128519 n 0000 ~ 03176594 n 0000 ~ 03475823 n 0000 ~ 03476991 n 0000 ~ 03690938 n 0000 ~ 03794136 n 0000 ~ 03916031 n 0000 ~ 03994008 n 0000 ~ 04186051 n 0000 ~ 04186268 n 0000 ~ 04453156 n 0000 | artifacts used in making your toilet (washing and taking care of your body) -04447861 06 n 01 toilet_seat 0 002 @ 04161981 n 0000 #p 04446521 n 0000 | the hinged seat on a toilet -04447965 06 n 03 toilet_soap 0 face_soap 0 bath_soap 0 001 @ 04253437 n 0000 | soap used as a toiletry -04448070 06 n 02 toilet_water 0 eau_de_toilette 0 001 @ 03916031 n 0000 | a perfumed liquid lighter than cologne -04448185 06 n 01 tokamak 0 002 @ 03003730 n 0000 %p 03705808 n 0000 | a doughnut-shaped chamber used in fusion research; a plasma is heated and confined in a magnetic bottle -04448361 06 n 01 token 0 002 @ 03208556 n 0000 ~ 04349189 n 0000 | a metal or plastic disk that can be redeemed or used in designated slot machines -04448511 06 n 02 tolazamide 0 Tolinase 0 002 @ 04353189 n 0000 ;u 06845599 n 0201 | a drug (trade name Tolinase) used in treating stable adult-onset diabetes mellitus -04448680 06 n 01 tolazoline 0 001 @ 04522904 n 0000 | vasodilator that is used to treat spasms of peripheral blood vessels (as in acrocyanosis) -04448826 06 n 02 tolbutamide 0 Orinase 0 003 @ 04353189 n 0000 @ 14914301 n 0000 ;u 06845599 n 0201 | sulfonylurea; an oral antidiabetic drug (trade name Orinase) used in the treatment of adult-onset diabetes mellitus -04449046 06 n 01 tole 0 001 @ 03752262 n 0000 | enameled or lacquered metalware (usually gilded and elaborately painted); popular in the 18th century; "the Pennsylvania Dutch tole watering can might be a reproduction but it looks convincing" -04449290 06 n 03 tollbooth 0 tolbooth 0 tollhouse 0 002 @ 02873839 n 0000 #p 08619949 n 0000 | a booth at a tollgate where the toll collector collects tolls -04449449 06 n 01 toll_bridge 0 001 @ 02898711 n 0000 | a bridge where toll is charged for crossing -04449550 06 n 02 tollgate 0 tollbar 0 001 @ 03427296 n 0000 | a gate or bar across a toll bridge or toll road which is lifted when the toll is paid -04449700 06 n 01 toll_line 0 001 @ 04402057 n 0000 | a telephone line for long-distance calls -04449796 06 n 02 tolmetin_sodium 0 Tolectin 0 003 @ 03828465 n 0000 ;u 06845599 n 0201 %s 14926294 n 0000 | a nonsteroidal anti-inflammatory drug (trade name Tolectin) -04449966 06 n 02 tomahawk 0 hatchet 1 003 @ 04565375 n 0000 + 01326424 v 0101 + 01554519 v 0101 | weapon consisting of a fighting ax; used by North American Indians -04450133 06 n 02 Tommy_gun 0 Thompson_submachine_gun 0 001 @ 04347519 n 0000 | a .45-caliber submachine gun -04450243 06 n 01 tomograph 0 003 @ 04609651 n 0000 ~ 03084834 n 0000 ~ 03987990 n 0000 | X-ray machine in which a computer builds a detailed image of a particular plane through an object from multiple X-ray measurements -04450465 06 n 03 tone_arm 0 pickup 2 pickup_arm 0 002 @ 03736970 n 0000 #p 04064401 n 0000 | mechanical device consisting of a light balanced arm that carries the cartridge -04450640 06 n 01 toner 0 001 @ 03690938 n 0000 | a lotion for cleansing the skin and contracting the pores -04450749 06 n 02 tongs 0 pair_of_tongs 0 004 @ 03183080 n 0000 ;u 06295235 n 0000 ~ 03347472 n 0000 ~ 03558633 n 0000 | any of various devices for taking hold of objects; usually have two hinged legs with handles above and pointed hooks below -04450994 06 n 01 tongue 0 003 @ 03357376 n 0000 #p 02872752 n 0000 #p 04199027 n 0000 | the flap of material under the laces of a shoe or boot -04451139 06 n 01 tongue_and_groove_joint 0 001 @ 03787523 n 0000 | a mortise joint made by fitting a projection on the edge of one board into a matching groove on another board -04451318 06 n 01 tongue_depressor 0 001 @ 03177708 n 0000 | a thin depressor used to press the tongue down during an examination of the mouth and throat -04451473 06 n 02 tonic 0 restorative 1 004 @ 03740161 n 0000 + 01357742 a 0202 + 01167540 a 0202 ~ 02888133 n 0000 | a medicine that strengthens and invigorates -04451636 06 n 01 tonometer 0 001 @ 03733925 n 0000 | measuring instrument for measuring tension or pressure (especially for measuring intraocular pressure in testing for glaucoma) -04451818 06 n 01 tool 0 035 @ 03563967 n 0000 + 01669547 v 0101 + 02338003 v 0101 ~ 02668393 n 0000 ~ 02830157 n 0000 ~ 03043173 n 0000 ~ 03075097 n 0000 ~ 03154446 n 0000 ~ 03239726 n 0000 ~ 03292085 n 0000 ~ 03384167 n 0000 ~ 03415363 n 0000 ~ 03418242 n 0000 ~ 03454211 n 0000 ~ 03474467 n 0000 ~ 03489162 n 0000 ~ 03524574 n 0000 ~ 03588951 n 0000 ~ 03594523 n 0000 ~ 03818001 n 0000 ~ 03878418 n 0000 ~ 03919430 n 0000 ~ 03967562 n 0000 ~ 03997484 n 0000 ~ 04023249 n 0000 ~ 04050066 n 0000 ~ 04050410 n 0000 ~ 04114193 n 0000 ~ 04140853 n 0000 ~ 04184600 n 0000 ~ 04337400 n 0000 ~ 04346511 n 0000 ~ 04387706 n 0000 ~ 04391158 n 0000 ~ 04515444 n 0000 | an implement used in the practice of a vocation -04452528 06 n 01 tool_bag 0 001 @ 02773037 n 0000 | a bag in which tools are carried -04452615 06 n 04 toolbox 0 tool_chest 0 tool_cabinet 0 tool_case 0 001 @ 03014705 n 0000 | a box or chest or cabinet for holding hand tools -04452757 06 n 02 toolshed 0 toolhouse 0 001 @ 04187547 n 0000 | a shed for storing tools -04452848 06 n 01 tooth 1 006 @ 04008947 n 0000 #p 03074855 n 0000 #p 03075097 n 0000 #p 04140064 n 0000 #p 03996145 n 0000 ~ 03064935 n 0000 | something resembling the tooth of an animal -04453037 06 n 01 tooth 2 002 @ 04008947 n 0000 #p 03430551 n 0000 | one of a number of uniform projections on a gear -04453156 06 n 01 toothbrush 0 003 @ 02908217 n 0000 @ 04447443 n 0000 ~ 03274265 n 0000 | small brush; has long handle; used to clean teeth -04453298 06 n 01 toothpaste 0 001 @ 03176084 n 0000 | a dentifrice in the form of a paste -04453390 06 n 01 toothpick 0 002 @ 03929443 n 0000 @ 04339638 n 0000 | pick consisting of a small strip of wood or plastic; used to pick food from between the teeth -04453557 06 n 02 tooth_powder 0 toothpowder 0 001 @ 03176084 n 0000 | a dentifrice in the form of a powder -04453666 06 n 01 top 0 005 @ 04596852 n 0000 ~ 02854926 n 0000 ~ 02861387 n 0000 ~ 02926426 n 0000 ~ 03480579 n 0000 | a garment (especially for women) that extends from the shoulders to the waist or hips; "he stared as she buttoned her top" -04453910 06 n 02 top 1 cover 3 006 @ 03122748 n 0000 + 01336635 v 0202 ~ 02954938 n 0000 ~ 03661340 n 0000 ~ 03717622 n 0000 ~ 04155068 n 0000 | covering for a hole (especially a hole in the top of a container); "he removed the top of the carton"; "he couldn't get the top off of the bottle"; "put the cover back on the kettle" -04454240 06 n 04 top 3 whirligig 1 teetotum 0 spinning_top 0 005 @ 03964744 n 0000 + 02047148 v 0201 ~ 03549097 n 0000 ~ 03906355 n 0000 ~ 04578459 n 0000 | a conical child's plaything tapering to a steel point on which it can be made to spin; "he got a bright red top and string for his birthday" -04454540 06 n 01 top 4 002 @ 03961939 n 0000 #p 04194289 n 0000 | platform surrounding the head of a lower mast -04454654 06 n 02 topgallant 1 topgallant_mast 0 001 @ 04455250 n 0000 | a mast fixed to the head of a topmast on a square-rigged vessel -04454792 06 n 02 topgallant 2 topgallant_sail 0 001 @ 04127904 n 0000 | a sail set on a yard of a topgallant mast -04454908 06 n 01 topiary 0 001 @ 03417345 n 0000 | a garden having shrubs clipped or trimmed into decorative shapes especially of animals -04455048 06 n 01 topknot 0 001 @ 03502509 n 0000 | headdress consisting of a decorative ribbon or bow worn in the hair -04455169 06 n 01 top_lift 0 001 @ 03664374 n 0000 | the bottom layer of a heel -04455250 06 n 01 topmast 0 005 @ 03726760 n 0000 ~ 03383468 n 0000 ~ 03712887 n 0000 ~ 04115996 n 0000 ~ 04454654 n 0000 | the mast next above a lower mast and topmost in a fore-and-aft rig -04455442 06 n 01 top_of_the_line 0 002 @ 03748886 n 0000 #p 03671668 n 0000 | the best (most expensive) in a given line of merchandise -04455579 06 n 01 topper 1 001 @ 03057021 n 0000 | a woman's short coat -04455652 06 n 01 topsail 0 002 @ 04127904 n 0000 ~ 03383562 n 0000 | a sail (or either of a pair of sails) immediately above the lowermost sail of a mast and supported by a topmast -04455835 06 n 01 topside 0 003 @ 04566862 n 0000 #p 04194289 n 0000 ;u 06295235 n 0000 | (usually plural) weather deck; the part of a ship's hull that is above the waterline -04456011 06 n 01 toque 1 001 @ 03497657 n 0000 | a tall white hat with a pouched crown; worn by chefs -04456115 06 n 01 torch 2 003 @ 03665366 n 0000 + 00379280 v 0101 ~ 03356446 n 0000 | a light usually carried in the hand; consists of some flammable substance -04456276 06 n 03 tormenter 0 tormentor 0 teaser 0 003 @ 03359755 n 0000 + 01802689 v 0101 + 00071178 v 0103 | a flat at each side of the stage to prevent the audience from seeing into the wings -04456472 06 n 01 torpedo 0 006 @ 02738031 n 0000 + 01137983 v 0101 ~ 02682811 n 0000 ~ 02787269 n 0000 ~ 03530189 n 0000 ~ 04348070 n 0000 | armament consisting of a long cylindrical self-propelled underwater projectile that detonates on contact with a target -04456734 06 n 01 torpedo 1 002 @ 03305522 n 0000 @ 06803157 n 0000 | a small explosive device that is placed on a railroad track and fires when a train runs over it; the sound of the explosion warns the engineer of danger ahead -04456964 06 n 01 torpedo 2 001 @ 03348454 n 0000 | a small firework that consists of a percussion cap and some gravel wrapped in paper; explodes when thrown forcefully against a hard surface -04457157 06 n 01 torpedo 3 001 @ 03305522 n 0000 | an explosive device that is set off in an oil well (or a gas well) to start or to increase the flow of oil (or gas) -04457326 06 n 01 torpedo_boat 0 002 @ 04552696 n 0000 ~ 04017807 n 0000 | small high-speed warship designed for torpedo attacks in coastal waters -04457474 06 n 01 torpedo-boat_destroyer 0 001 @ 03180504 n 0000 | small destroyer that was the forerunner of modern destroyers; designed to destroy torpedo boats -04457638 06 n 01 torpedo_tube 0 001 @ 04493505 n 0000 | a tube near the waterline of a vessel through which a torpedo is fired -04457767 06 n 01 torque_converter 0 001 @ 03099945 n 0000 | converter for transmitting and amplifying torque (especially by hydraulic means) -04457910 06 n 01 torque_wrench 0 001 @ 04606574 n 0000 | a wrench that has a gauge that indicates the amount of torque being applied -04458045 06 n 01 torsion_balance 0 001 @ 03733925 n 0000 | measuring instrument designed to measure small forces by the torsion they exert on a thin wire -04458201 06 n 01 torture_chamber 0 001 @ 04105893 n 0000 | a room in which torture is inflicted -04458299 06 n 02 torus 0 tore 0 001 @ 03780392 n 0000 | commonly the lowest molding at the base of a column -04458409 06 n 01 totem 0 003 @ 03282591 n 0000 ;r 09044862 n 0000 + 02954331 a 0101 | emblem consisting of an object such as an animal or plant; serves as the symbol of a family or clan (especially among American Indians) -04458633 06 n 01 totem_pole 0 002 @ 03074380 n 0000 @ 03282591 n 0000 | a tribal emblem consisting of a pillar carved and painted with totemic figures; erected by Indian tribes of the northwest Pacific coast -04458843 06 n 02 touch_screen 0 touchscreen 0 001 @ 03085602 n 0000 | a computer display that enables the user to interact with the computer by touching areas on the screen -04459018 06 n 02 toupee 0 toupe 0 001 @ 03476083 n 0000 | a small hairpiece to cover partial baldness -04459122 06 n 03 touring_car 0 phaeton 0 tourer 0 001 @ 02958343 n 0000 | large open car seating four with folding top -04459243 06 n 02 tourist_class 0 third_class 0 001 @ 02672371 n 0000 | inexpensive accommodations on a ship or train -04459362 06 n 01 towel 0 008 @ 03932670 n 0000 + 01394335 v 0101 ~ 02808304 n 0000 ~ 02814428 n 0000 ~ 03207835 n 0000 ~ 03490006 n 0000 ~ 03887697 n 0000 ~ 04102760 n 0000 | a rectangular piece of absorbent cloth (or paper) for drying or wiping -04459610 06 n 02 toweling 0 towelling 0 003 @ 03309808 n 0000 ~ 03548195 n 0000 ~ 04414476 n 0000 | any of various fabrics (linen or cotton) used to make towels -04459773 06 n 02 towel_rack 0 towel_horse 0 001 @ 04038727 n 0000 | a rack consisting of one or more bars on which towels can be hung -04459909 06 n 02 towel_rail 0 towel_bar 0 001 @ 02788689 n 0000 | a horizontal bar a few inches from a wall for holding towels -04460038 06 n 01 towel_ring 0 001 @ 03533972 n 0000 | a circular hoop for holding a towel -04460130 06 n 01 tower 0 021 @ 04341686 n 0000 ~ 02791665 n 0000 ~ 02814860 n 0000 ~ 02826886 n 0000 ~ 03029197 n 0000 ~ 03047052 n 0000 ~i 03055537 n 0000 ~ 03098959 n 0000 ~i 03266906 n 0000 ~ 03519387 n 0000 ~ 03767745 n 0000 ~ 03784793 n 0000 ~ 04028581 n 0000 ~ 04028764 n 0000 ~ 04206790 n 0000 ~ 04220250 n 0000 ~i 04265535 n 0000 ~ 04312432 n 0000 ~ 04361260 n 0000 ~ 04501947 n 0000 ~ 04556948 n 0000 | a structure taller than its diameter; can stand alone or be attached to a larger building -04460634 06 n 02 Tower_of_Babel 0 Babel 0 003 @i 04614655 n 0000 #p 08916832 n 0000 ;c 06432376 n 0000 | (Genesis 11:1-11) a tower built by Noah's descendants (probably in Babylon) who intended it to reach up to heaven; God foiled them by confusing their language so they could no longer understand one another -04460947 06 n 01 Tower_of_London 0 002 @i 03386011 n 0000 #p 08873622 n 0000 | a fortress in London on the Thames; used as a palace and a state prison and now as a museum containing the crown jewels -04461148 06 n 01 Tower_of_Pharos 0 002 @i 02814860 n 0000 #m 04178329 n 0000 | a great lighthouse (500 feet high) built at Alexandria in 285 BC -04461294 06 n 04 towline 0 towrope 0 towing_line 0 towing_rope 0 002 @ 03670849 n 0000 ;c 00314469 n 0000 | (nautical) a rope used in towing -04461437 06 n 01 town_hall 0 001 @ 03449564 n 0000 | a government building that houses administrative offices of a town government -04461570 06 n 02 towpath 0 towing_path 0 001 @ 03899328 n 0000 | a path along a canal or river used by animals towing boats -04461696 06 n 03 tow_truck 0 tow_car 0 wrecker 0 002 @ 04490091 n 0000 + 01566185 v 0302 | a truck equipped to hoist and pull wrecked cars (or to remove cars from no-parking zones) -04461879 06 n 01 toy 3 001 @ 03183080 n 0000 | a device regarded as providing amusement; "private airplanes are a rich man's toy" -04462011 06 n 02 toy_box 0 toy_chest 0 001 @ 03014705 n 0000 | chest for storage of toys -04462102 06 n 01 toy 2 001 @ 04076533 n 0000 | a nonfunctional replica of something else (frequently used as a modifier); "a toy stove" -04462240 06 n 01 toyshop 0 001 @ 04202417 n 0000 | shop where toys are sold -04462318 06 n 01 toy_soldier 0 001 @ 03219135 n 0000 | a doll that resembles a soldier -04462407 06 n 01 trace 1 002 @ 03670849 n 0000 #p 03494706 n 0000 | either of two lines that connect a horse's harness to a wagon or other vehicle or to a whiffletree -04462576 06 n 01 trace_detector 0 001 @ 03180969 n 0000 | a screening device for traces of explosives; used at airline terminals -04462707 06 n 02 tracer 0 tracer_bullet 0 001 @ 02703275 n 0000 | ammunition whose flight can be observed by a trail of smoke -04462835 06 n 01 tracer 1 002 @ 14619857 n 0000 ;c 06062407 n 0000 | (radiology) any radioactive isotope introduced into the body to study metabolism or other biological processes -04463017 06 n 01 tracer 2 003 @ 03574816 n 0000 + 01694376 v 0101 + 01582645 v 0101 | an instrument used to make tracings -04463141 06 n 01 tracery 0 002 @ 03169390 n 0000 ~ 03321843 n 0000 | decoration consisting of an open pattern of interlacing ribs -04463273 06 n 02 tracing 0 trace 0 003 @ 03234306 n 0000 + 01694376 v 0201 + 01582645 v 0201 | a drawing created by superimposing a semitransparent sheet of paper on the original image and copying on it the lines of the original image -04463510 06 n 03 track 0 cart_track 0 cartroad 0 003 @ 04096066 n 0000 ~ 03985588 n 0000 ~ 04466613 n 0000 | any road or path affording passage especially a rough one -04463679 06 n 04 track 1 rail 1 rails 0 runway 2 007 @ 02788689 n 0000 #p 04048075 n 0000 #p 04469003 n 0000 + 01503268 v 0201 + 01936537 v 0202 + 01954559 v 0201 ~ 04426184 n 0000 | a bar or pair of parallel bars of rolled steel making the railway along which railroad cars or other vehicles can roll -04463983 06 n 01 track 2 003 @ 00021939 n 0000 ~ 04048075 n 0000 ~ 04469003 n 0000 | a pair of parallel rails providing a runway for wheels -04464125 06 n 01 track 3 001 @ 13893786 n 0000 | a groove on a phonograph recording -04464211 06 n 02 track 4 data_track 0 002 @ 08616311 n 0000 ;c 06128570 n 0000 | (computer science) one of the circular magnetic paths on a magnetic disk that serve as a guide for writing and reading data -04464418 06 n 03 track 6 caterpillar_track 0 caterpillar_tread 0 003 @ 02827883 n 0000 #p 04464852 n 0000 ~ 03478491 n 0000 | an endless metal belt on which tracked vehicles move over the ground -04464615 06 n 01 trackball 0 001 @ 03277771 n 0000 | an electronic device consisting of a rotatable ball in a housing; used to position the cursor and move images on a computer screen; "a trackball is essentially an upside-down mouse" -04464852 06 n 01 tracked_vehicle 0 006 @ 04170037 n 0000 ~ 02983507 n 0000 ~ 03478589 n 0000 ~ 04252077 n 0000 ~ 04389033 n 0000 %p 04464418 n 0000 | a self-propelled vehicle that moves on tracks -04465050 06 n 01 tract_house 0 002 @ 03544360 n 0000 #p 04465203 n 0000 | one of many houses of similar design constructed together on a tract of land -04465203 06 n 01 tract_housing 0 002 @ 03546340 n 0000 %p 04465050 n 0000 | housing consisting of similar houses constructed together on a tract of land -04465358 06 n 01 traction_engine 0 001 @ 03684823 n 0000 | steam-powered locomotive for drawing heavy loads along surfaces other than tracks -04465501 06 n 01 tractor 0 003 @ 04170037 n 0000 ~ 02916179 n 0000 ~ 04229007 n 0000 | a wheeled vehicle with large wheels; used in farming and other applications -04465666 06 n 01 tractor 1 001 @ 04490091 n 0000 | a truck that has a cab but no body; used for pulling large trailers or vans -04465795 06 n 01 trading_card 0 002 @ 02962545 n 0000 ~ 02799442 n 0000 | a card with a picture on it; collected and traded by children -04465933 06 n 04 traffic_circle 0 circle 1 rotary 0 roundabout 0 002 @ 03605722 n 0000 #p 04096066 n 0000 | a road junction at which traffic streams circularly around a central island; "the accident blocked all traffic at the rotary" -04466169 06 n 04 traffic_island 0 safety_island 0 safety_isle 0 safety_zone 0 002 @ 03587318 n 0000 #p 04096733 n 0000 | a curbed area in a roadway from which traffic is excluded; provides safe area for pedestrians -04466386 06 n 01 traffic_lane 0 005 @ 03640660 n 0000 #p 03519981 n 0000 ~ 02925808 n 0000 ~ 03324502 n 0000 ~ 04244152 n 0000 | a lane of a main road that is defined by painted lines; "that car is in the wrong traffic lane" -04466613 06 n 01 trail 0 009 @ 04463510 n 0000 ~ 02986480 n 0000 ~ 03171002 n 0000 ~ 03539678 n 0000 ~i 03559841 n 0000 ~ 03568008 n 0000 ~ 03793090 n 0000 ~i 04135516 n 0000 ~ 04231575 n 0000 | a path or track roughly blazed through wild or hilly country -04466871 06 n 03 trail_bike 0 dirt_bike 0 scrambler 1 001 @ 03790512 n 0000 | a lightweight motorcycle equipped with rugged tires and suspension; an off-road motorcycle designed for riding cross country or over unpaved ground -04467099 06 n 02 trailer 0 house_trailer 0 004 @ 04576211 n 0000 + 01453969 v 0101 ~ 02946509 n 0000 ~ 03776460 n 0000 | a wheeled vehicle that can be pulled by a car or truck and is equipped for occupancy -04467307 06 n 01 trailer 1 005 @ 03100490 n 0000 #p 04467665 n 0000 + 01453969 v 0101 ~ 02962414 n 0000 ~ 04172342 n 0000 | a large transport conveyance designed to be pulled by a truck or tractor -04467506 06 n 02 trailer_camp 0 trailer_park 0 001 @ 02945161 n 0000 | a camp where space for house trailers can be rented; utilities are generally provided -04467665 06 n 06 trailer_truck 0 tractor_trailer 0 trucking_rig 0 rig 4 articulated_lorry 0 semi 1 004 @ 04490091 n 0000 %p 04172342 n 0000 ~ 04388372 n 0000 %p 04467307 n 0000 | a truck consisting of a tractor and trailer together -04467899 06 n 01 trailing_edge 0 002 @ 03264136 n 0000 #p 02688443 n 0000 | the rear edge of an airfoil -04468005 06 n 02 train 0 railroad_train 0 015 @ 04019101 n 0000 + 01936537 v 0101 ~ 02859729 n 0000 %m 02959942 n 0000 ~ 02971579 n 0000 ~ 03394480 n 0000 ~ 03541393 n 0000 %m 03684823 n 0000 ~ 03711044 n 0000 ~ 03896233 n 0000 -c 04103918 n 0000 ~ 04334504 n 0000 ~ 04349306 n 0000 -c 10403876 n 0000 -c 10647745 n 0000 | public transport provided by a line of railway cars coupled together and drawn by a locomotive; "express trains don't stop at Princeton Junction" -04468476 06 n 01 train 2 003 @ 03932670 n 0000 #p 03450230 n 0000 + 01453969 v 0102 | piece of cloth forming the long back section of a gown that is drawn along the floor; "the bride's train was carried by her two young nephews" -04468707 06 n 01 train_set 0 001 @ 03964744 n 0000 | a toy consisting of small models of railroad trains and the track for them to run on -04468847 06 n 02 tramcar 0 tram 0 001 @ 04543158 n 0000 | a four-wheeled wagon that runs on tracks in a mine; "a tramcar carries coal out of a coal mine" -04469003 06 n 03 tramline 0 tramway 0 streetcar_track 0 002 @ 04463983 n 0000 %p 04463679 n 0000 | the track on which trams or streetcars run -04469147 06 n 01 trammel 1 001 @ 04081844 n 0000 | a restraint that is used to teach a horse to amble -04469251 06 n 01 trammel 2 001 @ 03992208 n 0000 | an adjustable pothook set in a fireplace -04469345 06 n 02 trammel_net 0 trammel 3 001 @ 03352628 n 0000 | a fishing net with three layers; the outer two are coarse mesh and the loose inner layer is fine mesh -04469514 06 n 01 trampoline 0 001 @ 03472232 n 0000 | gymnastic apparatus consisting of a strong canvas sheet attached with springs to a metal frame; used for tumbling -04469684 06 n 02 tramp_steamer 0 tramp 0 001 @ 04309348 n 0000 | a commercial steamer for hire; one having no regular schedule -04469813 06 n 05 tramway 1 tram 2 aerial_tramway 0 cable_tramway 0 ropeway 0 001 @ 03100490 n 0000 | a conveyance that transports passengers or freight in carriers suspended from cables and supported by a series of towers -04470037 06 n 02 trandolapril 0 Mavik 0 002 @ 02673637 n 0000 ;u 06845599 n 0201 | an ACE inhibiting drug (trade name Mavik) used in some patients after a heart attack or to treat hypertension -04470232 06 n 07 tranquilizer 0 tranquillizer 0 tranquilliser 0 antianxiety_agent 0 ataractic_drug 0 ataractic_agent 0 ataractic 0 009 @ 04017429 n 0000 @ 04166841 n 0000 + 02308472 a 0701 + 00022316 v 0305 + 00022316 v 0204 + 01764800 v 0104 + 00022316 v 0103 ~ 03713736 n 0000 ~ 03771443 n 0000 | a drug used to reduce stress or tension without reducing mental clarity -04470605 06 n 01 transcription 0 001 @ 04063868 n 0000 | a sound or television recording (e.g., from a broadcast to a tape recording) -04470741 06 n 02 transdermal_patch 0 skin_patch 0 002 @ 03872495 n 0000 ~ 03298352 n 0000 | a medicated adhesive pad placed on the skin for absorption of a time released dose of medication into the bloodstream -04470953 06 n 01 transducer 0 005 @ 03269401 n 0000 + 00162549 v 0101 ~ 03274561 n 0000 ~ 03788047 n 0000 ~ 03924978 n 0000 | an electrical device that converts one form of energy into another -04471148 06 n 01 transept 0 002 @ 04341686 n 0000 #p 03028079 n 0000 | structure forming the transverse part of a cruciform church; crosses the nave at right angles -04471315 06 n 01 transformer 0 010 @ 03269401 n 0000 + 00381850 v 0101 ~ 03066232 n 0000 %p 03568818 n 0000 %p 04002629 n 0000 %p 04164002 n 0000 ~ 04315342 n 0000 ~ 04315828 n 0000 ~ 04414675 n 0000 ~ 04540397 n 0000 | an electrical device by which alternating current of one voltage is changed to another voltage -04471632 06 n 03 transistor 0 junction_transistor 0 electronic_transistor 0 008 @ 04171831 n 0000 ;c 06099269 n 0000 + 02340736 v 0101 %p 02798117 n 0000 %p 03069381 n 0000 %p 03283827 n 0000 ~ 03332784 n 0000 ~ 03972146 n 0000 | a semiconductor device capable of amplification -04471912 06 n 01 transit_instrument 0 001 @ 04403638 n 0000 | a telescope mounted on an axis running east and west and used to time the transit of a celestial body across the meridian -04472098 06 n 01 transit_line 0 004 @ 03671473 n 0000 #p 04018951 n 0000 ~ 02925901 n 0000 ~ 04487268 n 0000 | a line providing public transit -04472243 06 n 02 transmission 1 transmission_system 0 009 @ 03431243 n 0000 #p 03243625 n 0000 ~ 02761034 n 0000 %p 03054901 n 0000 %p 03369407 n 0000 ~ 03389611 n 0000 %p 03431570 n 0000 ~ 03552001 n 0000 ~ 04301760 n 0000 | the gears that transmit power from an automobile engine via the driveshaft to the live axle -04472563 06 n 01 transmission_shaft 0 002 @ 04111190 n 0000 #p 03431570 n 0000 | rotating shaft that transmits rotary motion from the engine to the differential -04472726 06 n 02 transmitter 0 sender 0 008 @ 04176528 n 0000 + 00973056 v 0202 + 00973056 v 0105 %p 02715229 n 0000 ~ 03592931 n 0000 ~ 04045085 n 0000 ~ 04138131 n 0000 ~ 04406552 n 0000 | set used to broadcast radio or tv signals -04472961 06 n 02 transom 0 traverse 0 001 @ 03137579 n 0000 | a horizontal crosspiece across a window or separating a door from a window over it -04473108 06 n 03 transom 1 transom_window 0 fanlight 1 001 @ 04587648 n 0000 | a window above a door that is usually hinged to a horizontal crosspiece over the door -04473275 06 n 01 transponder 0 001 @ 03269401 n 0000 | electrical device designed to receive a specific signal and automatically transmit a specific reply -04473432 06 n 03 transportation_system 0 transportation 0 transit 1 015 @ 03315023 n 0000 #p 03569964 n 0000 + 01853696 v 0301 + 01953810 v 0201 %p 02687992 n 0000 ~ 02693709 n 0000 %p 02898711 n 0000 ~ 03520275 n 0000 %p 03671473 n 0000 ~ 04018951 n 0000 %p 04019101 n 0000 ~ 04205192 n 0000 ~ 04406817 n 0000 %p 04412901 n 0000 %p 04564698 n 0000 | a facility consisting of the means and equipment necessary for the movement of passengers or goods -04473884 06 n 01 transporter 2 002 @ 03126707 n 0000 + 01953810 v 0101 | a crane for moving material with dispatch as in loading and unloading ships -04474035 06 n 02 transporter 3 car_transporter 0 003 @ 04490091 n 0000 + 01953810 v 0101 + 01449974 v 0101 | a long truck for carrying motor vehicles -04474187 06 n 01 transport_ship 0 002 @ 04194289 n 0000 ;c 08199025 n 0000 | a ship for carrying soldiers or military equipment -04474317 06 n 01 tranylcypromine 0 001 @ 03783017 n 0000 | an antidepressant drug that is a monoamine oxidase inhibitor; administered as a sulfate -04474466 06 n 01 trap 0 015 @ 03183080 n 0000 ;c 00015388 n 0000 + 01480770 v 0101 %p 02776205 n 0000 ~ 03374570 n 0000 ~ 03680858 n 0000 ~ 03719826 n 0000 ~ 03794056 n 0000 ~ 03819994 n 0000 ~ 03949663 n 0000 ~ 03993878 n 0000 ~ 04056413 n 0000 ~ 04248851 n 0000 ~ 04311873 n 0000 ~ 04568557 n 0000 | a device in which something (usually an animal) can be caught and penned -04474843 06 n 01 trap 1 001 @ 02968473 n 0000 | a light two-wheeled carriage -04474922 06 n 01 trap 3 001 @ 03736970 n 0000 | a device to hurl clay pigeons into the air for trapshooters -04475032 06 n 01 trap 4 001 @ 03231912 n 0000 | drain consisting of a U-shaped section of drainpipe that holds liquid and so prevents a return flow of sewer gas -04475195 06 n 01 trap-and-drain_auger 0 001 @ 04248010 n 0000 | a plumber's snake for clearing a trap and drain -04475309 06 n 01 trap_door 0 001 @ 03221720 n 0000 | a hinged or sliding door in a floor or ceiling -04475411 06 n 01 trapeze 0 001 @ 04371774 n 0000 | a swing used by circus acrobats -04475496 06 n 04 trave 0 traverse 1 crossbeam 0 crosspiece 1 001 @ 02815950 n 0000 | a horizontal beam that extends across something -04475631 06 n 01 travel_iron 0 001 @ 03584829 n 0000 | a small lightweight iron that can be carried while traveling -04475749 06 n 03 trawl 0 dragnet 0 trawl_net 0 002 @ 03352628 n 0000 + 01143713 v 0101 | a conical fishnet dragged through the water at great depths -04475900 06 n 05 trawl 1 trawl_line 0 spiller 0 setline 0 trotline 0 002 @ 03351768 n 0000 + 01143713 v 0101 | a long fishing line with many shorter lines and hooks attached to it (usually suspended between buoys) -04476116 06 n 02 trawler 0 dragger 0 002 @ 03351262 n 0000 + 01454810 v 0204 | a fishing boat that uses a trawl net or dragnet to catch fish -04476259 06 n 01 tray 0 009 @ 04060904 n 0000 ~ 02698244 n 0000 ~ 02936176 n 0000 ~ 03012159 n 0000 ~ 03558739 n 0000 ~ 03572205 n 0000 ~ 04131929 n 0000 ~ 04399046 n 0000 ~ 04501837 n 0000 | an open receptacle for holding or displaying or serving articles or food -04476526 06 n 01 tray_cloth 0 001 @ 04380617 n 0000 | table linen consisting of a small cloth for a tray -04476633 06 n 03 trazodone 0 trazodone_hydrochloride 0 Desyrel 0 002 @ 03829085 n 0000 ;u 06845599 n 0301 | oral antidepressant (trade name Desyrel) that is a nontricyclic drug used as a sedative -04476831 06 n 01 tread 0 002 @ 04341414 n 0000 #p 04314914 n 0000 | structural member consisting of the horizontal part of a stair or step -04476972 06 n 01 tread 1 001 @ 03093792 n 0000 | the part (as of a wheel or shoe) that makes contact with the ground -04477091 06 n 01 tread 2 003 @ 04362025 n 0000 #p 03971422 n 0000 + 02309513 v 0101 | the grooved surface of a pneumatic tire -04477219 06 n 03 treadmill 0 treadwheel 0 tread-wheel 0 001 @ 03765561 n 0000 | a mill that is powered by men or animals walking on a circular belt or climbing steps -04477387 06 n 01 treadmill 1 001 @ 03302790 n 0000 | an exercise device consisting of an endless belt on which a person can walk or jog without changing place -04477548 06 n 01 treasure_chest 0 001 @ 03014705 n 0000 | a chest filled with valuables -04477638 06 n 01 treasure_house 0 001 @ 04329190 n 0000 | a storehouse for treasures -04477725 06 n 01 treasure_ship 0 001 @ 04194289 n 0000 | a 16th-century ship loaded with treasure -04477825 06 n 01 treasury 0 001 @ 03177349 n 0000 | a depository (a room or building) where wealth and precious objects can be kept safely -04477966 06 n 01 tree_house 0 001 @ 03963813 n 0000 | a playhouse built in the branches of a tree -04478066 06 n 03 treenail 0 trenail 0 trunnel 0 001 @ 03905540 n 0000 | a wooden peg that is used to fasten timbers in shipbuilding; water causes the peg to swell and hold the timbers fast -04478257 06 n 01 trefoil 0 001 @ 02734423 n 0000 | an architectural ornament in the form of three arcs arranged in a circle -04478383 06 n 01 trefoil_arch 0 001 @ 03975035 n 0000 | a pointed arch having cusps in the intrados on either side of the apex -04478512 06 n 02 trellis 0 treillage 0 003 @ 03646916 n 0000 + 02509705 v 0101 ~ 03297226 n 0000 | latticework used to support climbing plants -04478657 06 n 01 trench 0 007 @ 03214253 n 0000 #p 03291551 n 0000 + 01606423 v 0101 ~ 02730748 n 0000 ~ 03347855 n 0000 ~ 03776050 n 0000 ~ 04242315 n 0000 | a ditch dug as a fortification having a parapet of the excavated earth -04478889 06 n 01 trench 1 005 @ 03214253 n 0000 + 01311722 v 0101 + 01311896 v 0101 + 01497458 v 0101 ~ 03406966 n 0000 | any long ditch cut in the ground -04479046 06 n 01 trench_coat 0 001 @ 04049405 n 0000 | a military style raincoat; belted with deep pockets -04479155 06 n 01 trencher 0 002 @ 02856463 n 0000 + 01556037 v 0101 | a wooden board or platter on which food is served or carved -04479287 06 n 01 trench_knife 0 001 @ 03624134 n 0000 | a knife with a double-edged blade for hand-to-hand fighting -04479405 06 n 01 trepan 0 002 @ 03239726 n 0000 + 01443871 v 0101 | a drill for cutting circular holes around a center -04479526 06 n 02 trepan 1 trephine 0 003 @ 04364545 n 0000 + 00062067 v 0201 + 01443871 v 0101 | a surgical instrument used to remove sections of bone from the skull -04479694 06 n 01 trestle 0 002 @ 04140631 n 0000 #p 04480033 n 0000 | sawhorses used in pairs to support a horizontal tabletop -04479823 06 n 01 trestle 1 002 @ 04361260 n 0000 #p 02898711 n 0000 | a supporting tower used to support a bridge -04479939 06 n 01 trestle_bridge 0 001 @ 02898711 n 0000 | a bridge supported by trestlework -04480033 06 n 01 trestle_table 0 002 @ 04379243 n 0000 %p 04479694 n 0000 | a table supported on trestles -04480141 06 n 01 trestlework 0 001 @ 04341686 n 0000 | a supporting structure composed of a system of connected trestles; for a bridge or pier or scaffold e.g. -04480303 06 n 01 trews 0 002 @ 04489008 n 0000 ;u 06295235 n 0000 | tight-fitting trousers; usually of tartan -04480415 06 n 02 trey 0 three 0 001 @ 03963982 n 0000 | one of four playing cards in a deck having three pips -04480527 06 n 01 trial_balloon 0 001 @ 02782093 n 0000 | a balloon sent up to test air currents -04480625 06 n 02 triazolam 0 Halcion 0 002 @ 02830852 n 0000 ;u 06845599 n 0201 | a form of benzodiazepine (trade name Halcion) frequently prescribed as a sleeping pill; usually given to people who have trouble falling asleep -04480853 06 n 01 triangle 0 001 @ 03915437 n 0000 | a percussion instrument consisting of a metal bar bent in the shape of an open triangle -04480995 06 n 01 triangle 1 001 @ 03231160 n 0000 | any of various triangular drafting instruments used to draw straight lines at specified angles -04481144 06 n 02 tribromoethanol 0 tribromoethyl_alcohol 0 001 @ 03582305 n 0000 | an intravenous anesthetic -04481255 06 n 01 tribune 0 001 @ 02731398 n 0000 | the apse of a Christian church that contains the bishop's throne -04481373 06 n 02 trichlormethiazide 0 Naqua 0 002 @ 04423288 n 0000 ;u 06845599 n 0201 | diuretic drug (trade name Naqua) used to treat hypertension -04481524 06 n 01 triclinium 0 001 @ 03201208 n 0000 | a dining table with couches along three sides in ancient Rome -04481642 06 n 01 triclinium 1 001 @ 03200701 n 0000 | a dining room (especially a dining room containing a dining table with couches along three sides) -04481796 06 n 02 tricolor 0 tricolour 0 002 @ 03354903 n 0000 ;r 08929922 n 0000 | a flag having three colored stripes (especially the French flag) -04481946 06 n 04 tricolor_television_tube 0 tricolour_television_tube 0 tricolor_tube 0 tricolour_tube 0 001 @ 03072440 n 0000 | a color television tube in which three primary colors are combined to give the full range of colors -04482177 06 n 02 tricorn 0 tricorne 0 001 @ 03061050 n 0000 | cocked hat with the brim turned up to form three points -04482297 06 n 01 tricot 0 001 @ 03625355 n 0000 | a knitted fabric or one resembling knitting -04482393 06 n 03 tricycle 0 trike 0 velocipede 1 002 @ 04576211 n 0000 ~ 03904433 n 0000 | a vehicle with three wheels that is moved by foot pedals -04482543 06 n 03 tricyclic 0 tricyclic_antidepressant 0 tricyclic_antidepressant_drug 0 009 @ 02718811 n 0000 ~ 02702575 n 0000 ~ 03048322 n 0000 ~ 03180153 n 0000 ~ 03229905 n 0000 ~ 03561889 n 0000 ~ 03830582 n 0000 ~ 04016015 n 0000 ~ 04483399 n 0000 | an antidepressant drug that acts by blocking the reuptake of norepinephrine and serotonin and thus making more of those substances available to act on receptors in the brain -04482975 06 n 01 trident 0 002 @ 04270891 n 0000 %p 04010927 n 0000 | a spear with three prongs -04483073 06 n 01 trigger 1 002 @ 03183080 n 0000 ~ 03970673 n 0000 | a device that activates or releases or causes something to happen -04483210 06 n 01 trigon 0 001 @ 03699280 n 0000 | a triangular lyre of ancient Greece and Rome -04483307 06 n 01 trimaran 0 001 @ 04128499 n 0000 | a fast sailboat with 3 parallel hulls -04483399 06 n 02 trimipramine 0 Surmontil 0 001 @ 04482543 n 0000 | tricyclic antidepressant drug (trade name Surmontil) used to treat depression and anxiety and (sometimes) insomnia -04483584 06 n 02 trimmer 0 trimmer_joist 0 001 @ 03601840 n 0000 | joist that receives the end of a header in floor or roof framing in order to leave an opening for a staircase or chimney etc. -04483779 06 n 02 trimmer 1 trimming_capacitor 0 001 @ 02955247 n 0000 | capacitor having variable capacitance; used for making fine adjustments -04483925 06 n 01 trimmer 2 002 @ 03699975 n 0000 + 01262564 v 0102 | a machine that trims timber -04484024 06 n 01 trimmer_arch 0 001 @ 02733524 n 0000 | an arch built between trimmers in a floor (to support the weight of a hearth) -04484160 06 n 03 trimming 0 trim 0 passementerie 0 007 @ 02681518 n 0000 + 01679433 v 0201 + 01679806 v 0201 + 01679806 v 0101 ~ 02889035 n 0000 ~ 03770834 n 0000 ~ 04088593 n 0000 | a decoration or adornment on a garment; "the trimming on a hat"; "the trim on a shirt" -04484432 06 n 01 triode 0 001 @ 04494204 n 0000 | a thermionic vacuum tube having three electrodes; fluctuations of the charge on the grid control the flow from cathode to anode which makes amplification possible -04484647 06 n 01 triphammer 0 001 @ 03481521 n 0000 | a massive power hammer; raised by a cam until released to fall under gravity -04484780 06 n 01 triplicate 0 003 @ 03104594 n 0000 + 00246746 v 0101 + 01735799 v 0101 | one of three copies; any of three things that correspond to one another exactly -04484952 06 n 01 trip_line 0 001 @ 04108268 n 0000 | a light rope used in lumbering to free a dog hook from a log at a distance -04485082 06 n 01 tripod 0 004 @ 04038440 n 0000 ~ 02943871 n 0000 ~ 03262809 n 0000 %p 03654826 n 0000 | a three-legged rack used for support -04485226 06 n 02 tripper 0 trip 0 003 @ 02982790 n 0000 + 01643657 v 0201 + 01643657 v 0101 | a catch mechanism that acts as a switch; "the pressure activates the tripper and releases the water" -04485423 06 n 01 triptych 0 001 @ 02743547 n 0000 | art consisting of a painting or carving (especially an altarpiece) on three panels (usually hinged together) -04485586 06 n 01 trip_wire 0 001 @ 04594218 n 0000 | a wire stretched close to the ground that activates something (a trap or camera or weapon) when tripped over -04485750 06 n 01 trireme 0 001 @ 03412511 n 0000 | ancient Greek or Roman galley or warship having three tiers of oars on each side -04485884 06 n 02 triskelion 0 triskele 0 001 @ 03178782 n 0000 | a figure consisting of three stylized human arms or legs (or three bent lines) radiating from a center -04486054 06 n 01 triumphal_arch 0 002 @ 02733524 n 0000 @ 03743902 n 0000 | a monumental archway; usually they are built to commemorate some notable victory -04486213 06 n 01 trivet 1 001 @ 02797692 n 0000 | a stand with short feet used under a hot dish on a table -04486322 06 n 01 trivet 2 001 @ 02797692 n 0000 | a three-legged metal stand for supporting a cooking vessel in a hearth -04486445 06 n 04 triviality 0 trivia 0 trifle 0 small_beer 0 004 @ 00002684 n 0000 + 01280908 a 020a + 02165432 a 0202 ~ 02774502 n 0000 | something of small importance -04486616 06 n 01 troika 0 001 @ 02968473 n 0000 | a Russian carriage pulled by three horses abreast -04486718 06 n 02 Trojan_Horse 0 Wooden_Horse 0 002 @i 03335600 n 0000 ;r 08780881 n 0000 | a large hollow wooden figure of a horse (filled with Greek soldiers) left by the Greeks outside Troy during the Trojan War -04486934 06 n 01 troll 0 002 @ 03350602 n 0000 + 01141763 v 0101 | a fisherman's lure that is used in trolling; "he used a spinner as his troll" -04487081 06 n 03 trolleybus 0 trolley_coach 0 trackless_trolley 0 002 @ 02924116 n 0000 %p 03273061 n 0000 | a passenger bus with an electric motor that draws power from overhead wires -04487268 06 n 01 trolley_line 0 002 @ 04472098 n 0000 %p 04335435 n 0000 | a transit line using streetcars or trolley buses -04487394 06 n 01 trombone 0 003 @ 02891788 n 0000 + 10730416 n 0101 ~ 04123123 n 0000 | a brass instrument consisting of a long tube whose length can be varied by a U-shaped slide -04487576 06 n 01 trompe_l'oeil 0 001 @ 03876519 n 0000 | a painting rendered in such great detail as to deceive the viewer concerning its reality -04487724 06 n 02 troop_carrier 0 troop_transport 0 003 @ 03764276 n 0000 ;c 08199025 n 0000 ~ 04487894 n 0000 | any land or sea or air vehicle designed to carry troops -04487894 06 n 01 troopship 0 002 @ 04194289 n 0000 @ 04487724 n 0000 | ship for transporting troops -04487996 06 n 02 trophy 0 prize 0 007 @ 06696483 n 0000 ~ 02729345 n 0000 ~ 02869965 n 0000 ~ 02906254 n 0000 ~ 03147901 n 0000 ~ 03444942 n 0000 ~ 04220523 n 0000 | something given as a token of victory -04488202 06 n 01 trophy_case 0 001 @ 02975212 n 0000 | a case in which to display trophies -04488295 06 n 01 trou-de-loup 0 001 @ 09393108 n 0000 | a sloping pit with a stake in the middle used as an obstacle to the enemy -04488427 06 n 01 trough 2 002 @ 04060904 n 0000 ~ 04098795 n 0000 | a long narrow shallow receptacle -04488530 06 n 01 trouser 1 002 @ 03419014 n 0000 #p 04489008 n 0000 | a garment (or part of a garment) designed for or relating to trousers; "in his trouser's pocket"; "he ripped his left trouser on the fence" -04488742 06 n 01 trouser_cuff 0 002 @ 03145843 n 0000 #p 04489008 n 0000 | a cuff on the bottoms of trouser legs -04488857 06 n 02 trouser_press 0 pants_presser 0 001 @ 03528263 n 0000 | a home appliance in which trousers can be hung and the wrinkles pressed out -04489008 06 n 02 trouser 0 pant 0 027 @ 03419014 n 0000 ~ 02825442 n 0000 ~ 02896442 n 0000 ~ 03019434 n 0000 ~ 03029296 n 0000 ~ 03107488 n 0000 ~ 03357081 n 0000 %p 03521899 n 0000 ~ 03594734 n 0000 ~ 03600285 n 0000 %p 03641947 n 0000 %p 03654576 n 0000 ~ 03688605 n 0000 ~ 03877674 n 0000 ~ 03884554 n 0000 %p 03885293 n 0000 ~ 03903733 n 0000 ~ 04132158 n 0000 %p 04162433 n 0000 ~ 04205318 n 0000 ~ 04233715 n 0000 %p 04238321 n 0000 ~ 04337287 n 0000 ~ 04370288 n 0000 ~ 04480303 n 0000 %p 04488530 n 0000 %p 04488742 n 0000 | (usually in the plural) a garment extending from the waist to the knee or ankle, covering each leg separately; "he had a sharp crease in his trousers" -04489695 06 n 01 trousseau 0 001 @ 03859958 n 0000 | the personal outfit of a bride; clothes and accessories and linens -04489817 06 n 01 trowel 0 007 @ 03489162 n 0000 + 01313113 v 0101 ~ 02898269 n 0000 ~ 03418402 n 0000 ~ 03957991 n 0000 ~ 03975657 n 0000 ~ 04237565 n 0000 | a small hand tool with a handle and flat metal blade; used for scooping or spreading plaster or similar materials -04490091 06 n 02 truck 0 motortruck 0 017 @ 03791235 n 0000 + 01954341 v 0101 %p 02918595 n 0000 ~ 03256166 n 0000 ~ 03345487 n 0000 ~ 03417042 n 0000 ~ 03690473 n 0000 ~ 03930630 n 0000 %p 04105438 n 0000 ~ 04263139 n 0000 %p 04294614 n 0000 %p 04384593 n 0000 ~ 04461696 n 0000 ~ 04465666 n 0000 ~ 04467665 n 0000 ~ 04474035 n 0000 ~ 04520170 n 0000 | an automotive vehicle suitable for hauling -04490490 06 n 01 truck_bed 0 002 @ 03365592 n 0000 ~ 03360300 n 0000 | the floor or bottom of a wagon or truck or trailer -04490614 06 n 02 truck_farm 0 truck_garden 0 001 @ 03322099 n 0000 | a farm where vegetables are grown for market -04490730 06 n 01 truck_stop 0 001 @ 04175859 n 0000 | a roadside service station (and restaurant) that caters to truck drivers -04490859 06 n 01 trump 2 002 @ 04351233 n 0000 ;c 00488225 n 0000 | (card games) the suit that has been declared to rank above all other suits for the duration of the hand; "clubs were declared trumps"; "a trump can take a trick even when a card of a different suit is led" -04491135 06 n 02 trump 0 trump_card 0 002 @ 03963982 n 0000 + 01078235 v 0101 | a playing card in the suit that has been declared trumps; "the ace of trumps is a sure winner" -04491312 06 n 01 trumpet_arch 0 001 @ 04293744 n 0000 | a conical squinch -04491388 06 n 06 truncheon 0 nightstick 0 baton 4 billy 0 billystick 0 billy_club 0 001 @ 03053474 n 0000 | a short stout club used primarily by policemen -04491545 06 n 01 trundle 0 002 @ 04574999 n 0000 @ 04101497 n 0000 | small wheel or roller -04491638 06 n 04 trundle_bed 0 trundle 2 truckle_bed 0 truckle 2 001 @ 02818832 n 0000 | a low bed to be slid under a higher bed -04491769 06 n 01 trunk 0 003 @ 02774630 n 0000 ~ 03380301 n 0000 %p 04492060 n 0000 | luggage consisting of a large strong case used when traveling or for storage -04491934 06 n 01 trunk_hose 0 001 @ 02896442 n 0000 | puffed breeches of the 16th and 17th centuries usually worn over hose -04492060 06 n 01 trunk_lid 0 002 @ 03661340 n 0000 #p 04491769 n 0000 | hinged lid for a trunk -04492157 06 n 01 trunk_line 0 001 @ 04402057 n 0000 | a telephone line connecting two exchanges directly -04492264 06 n 02 trunk_line 1 trunk_route 0 001 @ 03671272 n 0000 | line that is the main route on a railway -04492375 06 n 01 truss 0 003 @ 03391770 n 0000 #p 04492749 n 0000 + 01219397 v 0101 | a framework of beams (rafters, posts, struts) forming a rigid structure that supports a roof or bridge or other structure -04492585 06 n 01 truss 1 002 @ 02785648 n 0000 ;c 06043075 n 0000 | (medicine) a bandage consisting of a pad and belt; worn to hold a hernia in place by pressure -04492749 06 n 01 truss_bridge 0 002 @ 02898711 n 0000 %p 04492375 n 0000 | a bridge supported by trusses -04492856 06 n 02 truth_serum 0 truth_drug 0 003 @ 03582305 n 0000 ~ 02703499 n 0000 ~ 04424936 n 0000 | an intravenous anesthetic drug that has a hypnotic effect; induces relaxation and weakens inhibitions; is believed to induce people to talk freely -04493109 06 n 01 try_square 0 002 @ 04291242 n 0000 ~ 04177654 n 0000 | a square having a metal ruler set at right angles to another straight piece -04493259 06 n 01 T-square 0 002 @ 04291242 n 0000 @ 03231160 n 0000 | a square used by draftsmen to draw parallel lines -04493381 06 n 02 tub 0 vat 0 002 @ 04531098 n 0000 ~ 04555600 n 0000 | a large open vessel for holding or storing liquids -04493505 06 n 02 tube 0 tubing 0 030 @ 03089014 n 0000 + 02079525 v 0201 + 02264807 a 0101 + 01580928 v 0101 ~ 02795528 n 0000 ~ 02855253 n 0000 ~ 02855560 n 0000 ~ 02951170 n 0000 ~ 02956069 n 0000 ~ 02984469 n 0000 ~ 03031152 n 0000 ~ 03066029 n 0000 ~ 03074574 n 0000 ~ 03232158 n 0000 ~ 03539875 n 0000 ~ 03573005 n 0000 ~ 03794957 n 0000 ~ 03902972 n 0000 ~ 03944672 n 0000 ~ 03945167 n 0000 ~ 04218773 n 0000 ~ 04224155 n 0000 ~ 04270765 n 0000 ~ 04313771 n 0000 ~ 04314735 n 0000 ~ 04334232 n 0000 ~ 04415921 n 0000 ~ 04457638 n 0000 ~ 04527310 n 0000 ~ 04573129 n 0000 | conduit consisting of a long hollow object (usually cylindrical) used to hold and conduct objects or liquids or gases -04494204 06 n 06 tube 2 vacuum_tube 0 thermionic_vacuum_tube 0 thermionic_tube 0 electron_tube 0 thermionic_valve 0 018 @ 03277771 n 0000 #p 03033362 n 0000 ~ 02675885 n 0000 %p 02714315 n 0000 %p 02984699 n 0000 ~ 03202940 n 0000 %p 03274796 n 0000 ~ 03279804 n 0000 ~ 03422589 n 0000 %p 03458552 n 0000 ~ 03622526 n 0000 ~ 03708962 n 0000 ~ 03913343 n 0000 %p 03960950 n 0000 ~ 04405309 n 0000 ~ 04417086 n 0000 ~ 04484432 n 0000 ~ 04609811 n 0000 | electronic device consisting of a system of electrodes arranged in an evacuated glass or metal envelope -04494762 06 n 02 tubeless 0 tubeless_tire 0 002 @ 03971422 n 0000 + 02466999 a 0101 | pneumatic tire not needing an inner tube to be airtight -04494906 06 n 01 tuck 0 003 @ 03965907 n 0000 + 01330822 v 0103 ~ 03162714 n 0000 | a narrow flattened pleat or fold that is stitched in place -04495051 06 n 01 tuck_box 0 002 @ 02883344 n 0000 ;r 08860123 n 0000 | a box for storing eatables (especially at boarding school) -04495183 06 n 01 tucker 0 001 @ 04613015 n 0000 | a detachable yoke of linen or lace worn over the breast of a low-cut dress -04495310 06 n 01 tucker-bag 0 002 @ 02773037 n 0000 ;r 08831004 n 0000 | a bag used for carrying food; "the swagman filled his tuckerbag" -04495450 06 n 01 tuck_shop 0 002 @ 03089624 n 0000 ;r 08860123 n 0000 | a candy store in Great Britain -04495555 06 n 02 Tudor_arch 0 four-centered_arch 0 001 @ 02733524 n 0000 | a low elliptical or pointed arch; usually drawn from four centers -04495698 06 n 01 tudung 0 001 @ 04143897 n 0000 | a scarf worn around the head by Muslim women in Malaysia; conceals the hair but not the face -04495843 06 n 04 tugboat 0 tug 0 towboat 0 tower 1 004 @ 02858304 n 0000 + 01454431 v 0401 + 01454636 v 0201 %p 03512911 n 0000 | a powerful small boat designed to pull or push larger ships -04496035 06 n 02 Tuileries 0 Tuileries_Gardens 0 002 @i 03384706 n 0000 #p 08932568 n 0000 | formal gardens next to the Louvre in Paris -04496173 06 n 02 Tuileries 1 Tuileries_Palace 0 002 @i 03877845 n 0000 #p 08932568 n 0000 | palace and royal residence built for Catherine de Medicis in 1564 and burned down in 1871; all that remains today are the formal gardens -04496404 06 n 01 tuille 0 002 @ 02740764 n 0000 #p 02862048 n 0000 | armor plate that protects the hip and thigh -04496519 06 n 01 tulip_bed 0 001 @ 03368352 n 0000 | a flowerbed in which tulips are growing -04496614 06 n 01 tulle 0 001 @ 03819595 n 0000 | a fine (often starched) net used for veils or tutus or gowns -04496726 06 n 02 tumble-dryer 0 tumble_drier 0 001 @ 03050655 n 0000 | a clothes dryer that spins wet clothes inside a cylinder with heated air -04496872 06 n 01 tumbler 0 001 @ 03438257 n 0000 | a glass with a flat bottom but no handle or stem; originally had a round bottom -04497005 06 n 01 tumbler 1 005 @ 03839993 n 0000 #p 03682487 n 0000 + 01867997 v 0101 ~ 03659686 n 0000 ~ 03941013 n 0000 | a movable obstruction in a lock that must be adjusted to a given position (as by a key) before the bolt can be thrown -04497249 06 n 02 tumbrel 0 tumbril 0 001 @ 03255899 n 0000 | a farm dumpcart for carrying dung; carts of this type were used to carry prisoners to the guillotine during the French Revolution -04497442 06 n 01 tun 0 001 @ 02795169 n 0000 | a large cask especially one holding a volume equivalent to 2 butts or 252 gals -04497570 06 n 01 tunic 0 007 @ 03045337 n 0000 ~ 03021121 n 0000 ~ 03472796 n 0000 ~ 03607923 n 0000 ~ 03619275 n 0000 ~ 04361937 n 0000 ~ 04378489 n 0000 | any of a variety of loose fitting cloaks extending to the hips or knees -04497801 06 n 01 tuning_fork 0 001 @ 03563967 n 0000 | a metal implement with two prongs that gives a fixed tone when struck; used to tune musical instruments -04497962 06 n 01 tunnel 0 007 @ 03895585 n 0000 ;c 02958343 n 0000 + 01444037 v 0101 ~ 02981024 n 0000 ~ 04048441 n 0000 %p 04182514 n 0000 ~ 04508804 n 0000 | a passageway through or under something, usually underground (especially one for trains or cars); "the tunnel reduced congestion at that intersection" -04498275 06 n 03 tupik 0 tupek 0 sealskin_tent 0 001 @ 04411264 n 0000 | tent that is an Eskimo summer dwelling -04498389 06 n 01 turban 0 001 @ 03502509 n 0000 | a traditional Muslim headdress consisting of a long scarf wrapped around the head -04498523 06 n 01 turbine 0 010 @ 04110654 n 0000 %p 02848523 n 0000 ~ 03426574 n 0000 ~ 03552449 n 0000 ~ 03565710 n 0000 ~ 04057673 n 0000 %p 04111962 n 0000 %p 04306592 n 0000 ~ 04310604 n 0000 ~ 04591517 n 0000 | rotary engine in which the kinetic energy of a moving fluid is converted into mechanical energy by causing a bladed rotor to rotate -04498873 06 n 01 turbogenerator 0 002 @ 03433877 n 0000 #p 03996655 n 0000 | generator consisting of a steam turbine coupled to an electric generator for the production of electric power -04499062 06 n 01 tureen 0 001 @ 04176190 n 0000 | large deep serving dish with a cover; for serving soups and stews -04499180 06 n 01 Turing_machine 0 001 @ 03082979 n 0000 | a hypothetical computer with an infinitely long memory tape -04499300 06 n 01 Turkish_bath 0 001 @ 04308583 n 0000 | a steam room where facilities are available for a bath followed by a shower and massage -04499446 06 n 02 Turkish_towel 0 terry_towel 0 001 @ 02808304 n 0000 | a bath towel with rough loose pile -04499554 06 n 01 Turk's_head 0 001 @ 03627232 n 0000 | an ornamental knot that resembles a small turban -04499660 06 n 01 turnaround 0 003 @ 02735688 n 0000 #p 04096066 n 0000 #p 03244388 n 0000 | an area sufficiently large for a vehicle to turn around -04499810 06 n 01 turnbuckle 0 001 @ 03119510 n 0000 | an oblong metal coupling with a swivel at one end and an internal thread at the other into which a threaded rod can be screwed in order to form a unit that can be adjusted for length or tension -04500060 06 n 02 turner 0 food_turner 0 005 @ 03101986 n 0000 + 02089420 v 0101 ~ 03352961 n 0000 ~ 03881305 n 0000 ~ 04270147 n 0000 | cooking utensil having a flat flexible part and a long handle; used for turning or serving food -04500294 06 n 01 turnery 0 002 @ 04007894 n 0000 + 01584450 v 0101 | products made on a lathe -04500390 06 n 01 turnery 1 002 @ 04603081 n 0000 + 01584450 v 0101 | workshop where objects are made on a lathe -04500504 06 n 01 turning 0 001 @ 03287178 n 0000 | the end-product created by shaping something on a lathe -04500613 06 n 01 turnip_bed 0 001 @ 02819474 n 0000 | a bed in which turnips are growing -04500704 06 n 01 turnoff 0 002 @ 04096066 n 0000 + 01908658 v 0101 | a side road where you can turn off; "I missed the turnoff and went 15 miles out of my way" -04500866 06 n 02 turnout 1 widening 0 002 @ 03892891 n 0000 #p 04096066 n 0000 | a part of a road that has been widened to allow cars to pass or park -04501018 06 n 02 turnpike 0 toll_road 0 001 @ 03306610 n 0000 | an expressway on which tolls are collected -04501127 06 n 01 turnpike 1 001 @ 03427296 n 0000 | (from 16th to 19th centuries) gates set across a road to prevent passage until a toll had been paid -04501281 06 n 01 turnspit 0 001 @ 04280970 n 0000 | a roasting spit that can be turned -04501370 06 n 01 turnstile 0 001 @ 03427296 n 0000 | a gate consisting of a post that acts as a pivot for rotating arms; set in a passageway for controlling the persons entering -04501550 06 n 01 turntable 0 002 @ 03961939 n 0000 #p 04064401 n 0000 | a circular horizontal platform that rotates a phonograph record while it is being played -04501713 06 n 01 turntable 1 001 @ 03961939 n 0000 | a rotatable platform with a track; used to turn locomotives and cars -04501837 06 n 02 turntable 2 lazy_Susan 0 001 @ 04476259 n 0000 | a revolving tray placed on a dining table -04501947 06 n 01 turret 0 002 @ 04460130 n 0000 #p 02980441 n 0000 | a small tower extending above a building -04502059 06 n 01 turret_clock 0 001 @ 03046257 n 0000 | a clock with more than one dial to show the time in all directions from a tower -04502197 06 n 03 turtleneck 0 turtle 0 polo-neck 0 003 @ 04370048 n 0000 @ 03595614 n 0000 %p 04502364 n 0000 | a sweater or jersey with a high close-fitting collar -04502364 06 n 02 turtleneck_collar 0 polo-neck_collar 0 002 @ 03068181 n 0000 #p 04502197 n 0000 | a high close-fitting turnover collar -04502502 06 n 01 tweed 0 004 @ 03309808 n 0000 + 02240795 a 0105 ~ 03496486 n 0000 %s 04599235 n 0000 | thick woolen fabric used for clothing; originated in Scotland -04502670 06 n 01 tweeter 0 002 @ 03691459 n 0000 + 02177661 v 0101 | a loudspeaker that reproduces higher audio frequency sounds; "the sound system had both tweeters and woofers" -04502851 06 n 02 twenty-two 0 .22 0 003 @ 03343853 n 0000 ~ 04502989 n 0000 ~ 04503073 n 0000 | a .22 caliber firearm (pistol or rifle) -04502989 06 n 01 twenty-two_pistol 0 001 @ 04502851 n 0000 | a .22-caliber pistol -04503073 06 n 01 twenty-two_rifle 0 001 @ 04502851 n 0000 | a .22-caliber rifle -04503155 06 n 01 twill 0 002 @ 03309808 n 0000 + 01674938 v 0101 | a cloth with parallel diagonal lines or ribs -04503269 06 n 02 twill 1 twill_weave 0 002 @ 04568298 n 0000 + 01674938 v 0101 | a weave used to produce the effect of parallel diagonal ribs -04503413 06 n 01 twin_bed 0 001 @ 02818832 n 0000 | one of a pair of identical beds -04503499 06 n 01 twinjet 0 001 @ 03595860 n 0000 | a jet plane propelled by two jet engines -04503593 06 n 02 twist_bit 0 twist_drill 0 001 @ 02844307 n 0000 | a bit or drill having deep helical grooves -04503705 06 n 01 two-by-four 0 001 @ 04436185 n 0000 | a timber measuring (slightly under) 2 inches by 4 inches in cross section -04503836 06 n 04 two-handed_saw 0 whipsaw 0 two-man_saw 0 lumberman's_saw 0 003 @ 04140064 n 0000 + 01559767 v 0201 ~ 03951800 n 0000 | a saw with handles at both ends; intended for use by two people -04504038 06 n 01 two-man_tent 0 001 @ 04411264 n 0000 | a tent designed for occupancy by two persons -04504141 06 n 03 two-piece 2 two-piece_suit 0 lounge_suit 0 001 @ 02925519 n 0000 | a business suit consisting of a matching jacket and skirt or trousers -04504297 06 n 01 two-way_street 0 001 @ 04335209 n 0000 | a street on which vehicular traffic can move in either of two directions; "you have to look both ways crossing a two-way street" -04504486 06 n 01 type 0 004 @ 02852523 n 0000 + 01004692 v 0101 ~ 03611169 n 0000 ~ 04030655 n 0000 | a small metal block bearing a raised character on one end; produces a printed character when inked and pressed on paper; "he dropped a case of type, so they made him pick them up" -04504770 06 n 01 typesetting_machine 0 004 @ 04004475 n 0000 %p 03614007 n 0000 ~ 03675235 n 0000 ~ 03784139 n 0000 | a printer that sets textual material in type -04504935 06 n 02 type_slug 0 slug 1 001 @ 14719458 n 0000 | a strip of type metal used for spacing -04505036 06 n 01 typewriter 0 010 @ 03007591 n 0000 + 01004692 v 0102 %p 02969010 n 0000 ~ 03274435 n 0000 %p 03614007 n 0000 ~ 03985069 n 0000 %p 04088058 n 0000 ~ 04314632 n 0000 %p 04505345 n 0000 %p 04505470 n 0000 | hand-operated character printer for printing written messages one character at a time -04505345 06 n 01 typewriter_carriage 0 002 @ 02969010 n 0000 #p 04505036 n 0000 | a carriage for carrying a sheet of paper -04505470 06 n 01 typewriter_keyboard 0 007 @ 03614007 n 0000 #p 04505036 n 0000 %p 02771004 n 0000 ~ 04036303 n 0000 %p 04193377 n 0000 %p 04264628 n 0000 %p 04379096 n 0000 | a keyboard for manually entering characters to be printed -04505706 06 n 02 tyrocidine 0 tyrocidin 0 002 @ 02716866 n 0000 #s 04506125 n 0000 | a basic polypeptide antibiotic derived from a soil bacterium; a major component of tyrothricin -04505888 06 n 02 tyrolean 0 tirolean 0 001 @ 03497657 n 0000 | soft green felt hat with a feather or brush cockade -04506005 06 n 01 tyrosine_kinase_inhibitor 0 001 @ 03740161 n 0000 | a drug used in cases of chronic myeloid leukemia -04506125 06 n 01 tyrothricin 0 002 @ 02716866 n 0000 %s 04505706 n 0000 | a mixture of antibiotics applied locally to infections caused by Gram-positive bacteria -04506289 06 n 02 uke 0 ukulele 0 002 @ 03467517 n 0000 ;r 09078231 n 0000 | a small guitar having four strings -04506402 06 n 01 ulster 0 001 @ 03456665 n 0000 | loose long overcoat of heavy fabric; usually belted -04506506 06 n 01 ultracentrifuge 0 001 @ 02995998 n 0000 | a high speed centrifuge used to determine the relative molecular masses of large molecules in high polymers and proteins -04506688 06 n 02 ultramicroscope 0 dark-field_microscope 0 002 @ 03667829 n 0000 + 03142799 a 0101 | light microscope that uses scattered light to show particles too small to see with ordinary microscopes -04506895 06 n 01 Ultrasuede 0 002 @ 04350458 n 0000 ;u 06851742 n 0000 | a synthetic suede cloth -04506994 06 n 02 ultraviolet_lamp 0 ultraviolet_source 0 002 @ 04263760 n 0000 ~ 03750206 n 0000 | any source of illumination that emits ultraviolet radiation -04507155 06 n 01 umbrella 0 005 @ 02951843 n 0000 ~ 03415252 n 0000 %p 03448253 n 0000 %p 03485997 n 0000 %p 04087126 n 0000 | a lightweight handheld collapsible canopy -04507326 06 n 01 umbrella_tent 0 001 @ 04411264 n 0000 | a small tent with a single supporting pole and radiating metal ribs -04507453 06 n 01 undercarriage 0 003 @ 03391770 n 0000 @ 04359589 n 0000 ~ 03638883 n 0000 | framework that serves as a support for the body of a vehicle -04507609 06 n 01 undercharge 0 001 @ 03008275 n 0000 | an insufficient charge -04507689 06 n 02 undercoat 2 underseal 0 002 @ 04159545 n 0000 + 01365355 v 0103 | seal consisting of a coating of a tar or rubberlike material on the underside of a motor vehicle to retard corrosion -04507891 06 n 01 undercut 0 003 @ 03832405 n 0000 @ 06071934 n 0000 + 01257621 v 0101 | a notch cut in the trunk of tree in order to determine the direction of its fall -04508062 06 n 01 underfelt 0 002 @ 02967626 n 0000 ;r 08860123 n 0000 | a carpet pad of thick felt -04508163 06 n 02 undergarment 0 unmentionable 0 013 @ 03419014 n 0000 ! 03863923 n 0101 ~ 02863014 n 0000 ~ 02892767 n 0000 ~ 02944146 n 0000 ~ 03013580 n 0000 ~ 03387323 n 0000 ~ 03421324 n 0000 ~ 03688707 n 0000 ~ 03920737 n 0000 ~ 04223299 n 0000 ~ 04508489 n 0000 ~ 04508949 n 0000 | a garment worn under other garments -04508489 06 n 01 underpants 0 009 @ 04508163 n 0000 #p 03885904 n 0000 ;u 06295235 n 0000 ~ 02837887 n 0000 ~ 02854739 n 0000 ~ 02901114 n 0000 ~ 03234164 n 0000 ~ 03885028 n 0000 ~ 04426427 n 0000 | an undergarment that covers the body from the waist no further than to the thighs; usually worn next to the skin -04508804 06 n 02 underpass 0 subway 1 001 @ 04497962 n 0000 | an underground tunnel or passage enabling pedestrians to cross a road or railway -04508949 06 n 03 underwear 0 underclothes 0 underclothing 0 005 @ 04508163 n 0000 ~ 02930214 n 0000 ~ 03673450 n 0000 ~ 03688192 n 0000 ~ 04231905 n 0000 | undergarment worn next to the skin and under the outer garments -04509171 06 n 01 undies 0 002 @ 03673450 n 0000 ;u 06295235 n 0000 | women's underwear -04509260 06 n 02 uneven_parallel_bars 0 uneven_bars 0 001 @ 03888605 n 0000 | a pair of parallel bars set at different heights; used in women's gymnastics -04509417 06 n 02 unicycle 0 monocycle 0 004 @ 04576211 n 0000 + 10738111 n 0101 + 04509417 n 0101 + 01935846 v 0101 | a vehicle with a single wheel that is driven by pedals -04509592 06 n 01 uniform 0 005 @ 03051540 n 0000 + 02331786 v 0101 ~ 03605504 n 0000 ~ 03679174 n 0000 ~ 03763968 n 0000 | clothing of distinctive design worn by members of a particular group as a means of identification -04509815 06 n 01 union 1 001 @ 03185562 n 0000 | a device on a national flag emblematic of the union of two or more sovereignties (typically in the upper inner corner) -04509985 06 n 02 Union_Jack 0 Union_flag 0 001 @ 03354903 n 0000 | national flag of the United Kingdom -04510090 06 n 04 United_States_Army_Criminal_Investigation_Laboratory 0 U.S._Army_Criminal_Investigation_Laboratory 0 US_Army_Criminal_Investigation_Laboratory 0 USACIL 0 002 @i 08337324 n 0000 #p 08141092 n 0000 | a defense laboratory of the Criminal Investigation Command; the United States Army's primary forensic laboratory in support of criminal intelligence -04510456 06 n 03 United_States_Mint 0 U.S._Mint 0 US_Mint 0 002 @i 03772269 n 0000 #p 08139795 n 0000 | the mint that manufactures and distributes United States coins for circulation through Federal Reserve Banks; processes gold and silver bullion -04510706 06 n 02 universal_joint 0 universal 0 002 @ 03119510 n 0000 #p 03243625 n 0000 | coupling that connects two rotating shafts allowing freedom of movement in all directions; "in motor vehicles a universal joint allows the driveshaft to move up and down as the vehicle passes over bumps" -04511002 06 n 01 university 0 034 @ 03297735 n 0000 -c 01536445 a 0000 ~i 02907985 n 0000 ~i 02942227 n 0000 ~i 02965936 n 0000 ~ 03036244 n 0000 ~i 03073832 n 0000 ~i 03103682 n 0000 ~i 03109350 n 0000 ~i 03254505 n 0000 ~i 03496749 n 0000 ~i 03600617 n 0000 ~i 03725968 n 0000 ~i 03842868 n 0000 ~ 03868044 n 0000 ~i 03868509 n 0000 ~i 03890713 n 0000 ~i 04003453 n 0000 ~ 04066023 n 0000 ~i 04302740 n 0000 ~i 04511832 n 0000 ~i 04511971 n 0000 ~i 04512092 n 0000 ~i 04512216 n 0000 ~i 04512338 n 0000 ~i 04512476 n 0000 ~i 04512652 n 0000 ~i 04512783 n 0000 ~i 04512933 n 0000 ~i 04513048 n 0000 ~i 04513171 n 0000 ~i 04513297 n 0000 ~i 04513432 n 0000 ~i 04610368 n 0000 | establishment where a seat of higher learning is housed, including administrative and living quarters as well as facilities for research and teaching -04511832 06 n 01 University_of_California_at_Berkeley 0 002 @i 04511002 n 0000 #p 09062585 n 0000 | a university in Berkeley, California -04511971 06 n 01 University_of_Chicago 0 002 @i 04511002 n 0000 #p 09083390 n 0000 | a university in Chicago, Illinois -04512092 06 n 01 University_of_Michigan 0 002 @i 04511002 n 0000 #p 09100223 n 0000 | a university in Ann Arbor, Michigan -04512216 06 n 01 University_of_Nebraska 0 002 @i 04511002 n 0000 #p 09109882 n 0000 | a university in Lincoln, Nebraska -04512338 06 n 01 University_of_North_Carolina 0 002 @i 04511002 n 0000 #p 09128201 n 0000 | a university in Chapel Hill, North Carolina -04512476 06 n 03 University_of_Pennsylvania 0 Pennsylvania 0 Penn 0 003 @i 04511002 n 0000 #p 09134386 n 0000 #m 08232706 n 0000 | a university in Philadelphia, Pennsylvania -04512652 06 n 01 University_of_Pittsburgh 0 002 @i 04511002 n 0000 #p 09136582 n 0000 | a university in Pittsburgh, Pennsylvania -04512783 06 n 02 University_of_Sussex 0 Sussex_University 0 002 @i 04511002 n 0000 #p 08883309 n 0000 | a red-brick university in Brighton, England -04512933 06 n 01 University_of_Texas 0 002 @i 04511002 n 0000 #p 09143017 n 0000 | a university in Austin, Texas -04513048 06 n 01 University_of_Vermont 0 002 @i 04511002 n 0000 #p 09148662 n 0000 | a university in Burlington, Vermont -04513171 06 n 01 University_of_Washington 0 002 @i 04511002 n 0000 #p 09154178 n 0000 | a university in Seattle, Washington -04513297 06 n 01 University_of_West_Virginia 0 002 @i 04511002 n 0000 #p 09156666 n 0000 | a university in Morgantown, West Virginia -04513432 06 n 01 University_of_Wisconsin 0 002 @i 04511002 n 0000 #p 09158024 n 0000 | a university in Madison, Wisconsin -04513556 06 n 01 upcast 0 001 @ 02690941 n 0000 | air passage consisting of a ventilation shaft through which air leaves a mine -04513686 06 n 01 upgrade 0 002 @ 03493333 n 0000 + 00207184 v 0101 | hardware that provides better performance than an earlier version did -04513827 06 n 01 upholstery 0 003 @ 03122748 n 0000 #p 04161981 n 0000 + 02341816 v 0101 | covering (padding and springs and webbing and fabric) on a piece of furniture -04513998 06 n 01 upholstery_material 0 001 @ 03309808 n 0000 | the fabric used in upholstering -04514095 06 n 01 upholstery_needle 0 001 @ 04180063 n 0000 | any of several very heavy and sometimes curved sewing needles used by upholsterers -04514241 06 n 01 uplift 0 002 @ 02892767 n 0000 + 01873666 v 0101 | a brassiere that lifts and supports the breasts -04514359 06 n 01 upper 0 006 @ 03933183 n 0000 #p 04199027 n 0000 #p 02872752 n 0000 %p 04031600 n 0000 ~ 04444522 n 0000 %p 04520020 n 0000 | piece of leather or synthetic material that forms the part of a shoe or boot above the sole that encases the foot; "Uppers come in many styles" -04514648 06 n 02 upper_berth 0 upper 2 001 @ 02831724 n 0000 | the higher of two berths -04514738 06 n 01 upper_deck 0 006 @ 03167666 n 0000 ~ 02859084 n 0000 ~ 02899257 n 0000 %p 03168543 n 0000 ~ 03392908 n 0000 ~ 04566862 n 0000 | a higher deck -04514899 06 n 01 upper_surface 0 002 @ 04213626 n 0000 ~ 02990373 n 0000 | the side that is uppermost -04515003 06 n 02 upright 0 upright_piano 0 002 @ 03928116 n 0000 ~ 04278353 n 0000 | a piano with a vertical sounding board -04515129 06 n 02 upright 1 vertical 0 010 @ 04341414 n 0000 #p 03443149 n 0000 + 01235859 a 0202 + 01233347 a 0201 ~ 03073977 n 0000 ~ 03592773 n 0000 ~ 03988170 n 0000 ~ 04143365 n 0000 ~ 04182708 n 0000 ~ 04318787 n 0000 | a vertical structural member as a post or stake; "the ball sailed between the uprights" -04515444 06 n 02 upset 0 swage 0 002 @ 04451818 n 0000 + 01256374 v 0102 | a tool used to thicken or spread metal (the end of a bar or a rivet etc.) by forging or hammering or swaging -04515630 06 n 01 upstage 0 002 @ 03892891 n 0000 #p 04296562 n 0000 | the rear part of the stage -04515729 06 n 01 upstairs 0 002 @ 03892891 n 0000 #p 02913152 n 0000 | the part of a building above the ground floor; "no one was allowed to see the upstairs" -04515890 06 n 01 urceole 0 001 @ 04531098 n 0000 | a vessel that holds water for washing the hands -04515991 06 n 01 urinal 0 001 @ 03969259 n 0000 | a plumbing fixture (usually attached to the wall) used by men to urinate -04516116 06 n 01 urn 0 001 @ 04522168 n 0000 | a large vase that usually has a pedestal or feet -04516214 06 n 01 urn 1 004 @ 03990474 n 0000 ~ 03064250 n 0000 ~ 04132985 n 0000 ~ 04399158 n 0000 | a large pot for making coffee or tea -04516354 06 n 02 used-car 0 secondhand_car 0 001 @ 02958343 n 0000 | a car that has been previously owned; not a new car -04516477 06 n 01 USS_Cole 0 002 @i 03180504 n 0000 ;c 00759694 n 0000 | a United States destroyer; "17 sailors died as the result of a terrorist attack while the USS Cole was anchored in Aden" -04516672 06 n 01 utensil 0 006 @ 03563967 n 0000 ~ 02997607 n 0000 ~ 03104512 n 0000 ~ 03403643 n 0000 ~ 03621049 n 0000 ~ 04175039 n 0000 | an implement for practical use (especially in a household) -04516874 06 n 01 utility 0 004 @ 03315023 n 0000 ~ 03270579 n 0000 ~ 03509025 n 0000 ~ 03969041 n 0000 | a facility composed of one or more pieces of equipment connected to or part of a structure and designed to provide a service such as heat or electricity or water or sewage disposal; "the price of the house included all utilities" -04517211 06 n 01 Uzi 0 001 @ 04347519 n 0000 | a type of submachine gun that is designed and manufactured in Israel; "the Uzi is used throughout the world as a police and special forces firearm" -04517408 06 n 01 vacation_home 0 001 @ 03259505 n 0000 | a dwelling (a second home) where you live while you are on vacation -04517535 06 n 02 vaccine 0 vaccinum 0 006 @ 03562739 n 0000 + 00086835 v 0104 ~ 03230446 n 0000 ~ 03971771 n 0000 ~ 03978130 n 0000 ~ 04015652 n 0000 | immunogen consisting of a suspension of weakened or dead pathogenic cells injected in order to stimulate the production of antibodies -04517823 06 n 02 vacuum 0 vacuum_cleaner 0 004 @ 03528263 n 0000 + 01244853 v 0101 %p 03258192 n 0000 ~ 03534776 n 0000 | an electrical home appliance that cleans by suction -04517999 06 n 01 vacuum_chamber 0 001 @ 03003730 n 0000 | a chamber from which nearly all matter (especially air) has been removed -04518132 06 n 02 vacuum_flask 0 vacuum_bottle 0 003 @ 03359566 n 0000 ~ 03185868 n 0000 ~ 04422727 n 0000 | flask with double walls separated by vacuum; used to maintain substances at high or low temperatures -04518343 06 n 02 vacuum_gauge 0 vacuum_gage 0 001 @ 03429288 n 0000 | a gauge for indicating negative atmospheric pressure -04518468 06 n 02 valdecoxib 0 Bextra 0 001 @ 03124700 n 0000 | a Cox-2 inhibitor (trade name Bextra) that relieves pain and inflammation without harming the digestive tract -04518643 06 n 02 Valenciennes 0 Valenciennes_lace 0 001 @ 03938522 n 0000 | a type of bobbin lace with floral patterns -04518764 06 n 01 valise 0 001 @ 03865371 n 0000 | a small overnight bag for short trips -04518854 06 n 02 valproic_acid 0 Depokene 0 002 @ 02718469 n 0000 ;u 06845599 n 0201 | anticonvulsant (trade name Depokene) used to prevent some kinds of seizures -04519019 06 n 02 valsartan 0 Diovan 0 001 @ 02712393 n 0000 | an angiotensin II inhibitor that is used to treat high blood pressure -04519153 06 n 01 valve 0 015 @ 03096960 n 0000 + 03128193 a 0101 + 05395548 n 0102 ~ 02670186 n 0000 ~ 02783459 n 0000 ~ 02927887 n 0000 ~ 03024333 n 0000 ~ 03036701 n 0000 ~ 03303669 n 0000 %p 03490449 n 0000 %p 03490649 n 0000 ~ 03576955 n 0000 ~ 03983928 n 0000 ~ 04127633 n 0000 ~ 04238953 n 0000 | control consisting of a mechanical device for controlling the flow of a fluid -04519536 06 n 01 valve 1 003 @ 03183080 n 0000 #p 02891788 n 0000 + 05395548 n 0102 | device in a brass wind instrument for varying the length of the air column to alter the pitch of a tone -04519728 06 n 01 valve-in-head_engine 0 001 @ 03579982 n 0000 | internal-combustion engine having both inlet and exhaust valves located in the cylinder head -04519887 06 n 02 vambrace 0 lower_cannon 0 002 @ 02950632 n 0000 #p 02862048 n 0000 | cannon of plate armor protecting the forearm -04520020 06 n 01 vamp 0 003 @ 03933183 n 0000 #p 04514359 n 0000 + 00533527 v 0101 | piece of leather forming the front part of the upper of a shoe -04520170 06 n 01 van 0 008 @ 04490091 n 0000 ~ 02871314 n 0000 ~ 03173929 n 0000 ~ 03648667 n 0000 ~ 03764822 n 0000 ~ 03796401 n 0000 ~ 03896419 n 0000 ~ 03977966 n 0000 | a truck with an enclosed cargo space -04520382 06 n 02 van 1 caravan 0 001 @ 02946348 n 0000 | a camper equipped with living quarters -04520480 06 n 01 van 2 002 @ 02959942 n 0000 ;r 08860123 n 0000 | (Great Britain) a closed railroad car that carries baggage or freight -04520618 06 n 02 vancomycin 0 Vancocin 0 002 @ 02716866 n 0000 ;u 06845599 n 0201 | an antibiotic (trade name Vancocin) effective against some bacterial infections -04520784 06 n 01 vane 2 003 @ 03340581 n 0000 #p 03773504 n 0000 #p 02742753 n 0000 | a fin attached to the tail of an arrow, bomb or missile in order to stabilize or guide it -04520962 06 n 02 vaporizer 0 vaporiser 0 001 @ 03183080 n 0000 | a device that puts out a substance in the form of a vapor (especially for medicinal inhalation) -04521125 06 n 02 vapor_lock 0 vapour_lock 0 001 @ 02853449 n 0000 | a stoppage in a pipeline caused by gas bubbles (especially a stoppage that develops in hot weather in an internal-combustion engine when fuel in the gas line boils and forms bubbles that block the flow of gasoline to the carburetor) -04521428 06 n 02 vardenafil 0 Levitra 0 001 @ 04537602 n 0000 | virility drug (trade name Levitra) used to treat erectile dysfunction in men -04521571 06 n 01 variable-pitch_propeller 0 001 @ 04011827 n 0000 | propeller for which the angle of the blades is adjustable -04521699 06 n 01 variation 0 002 @ 04424218 n 0000 ~ 02804772 n 0000 | an artifact that deviates from a norm or standard; "he patented a variation on the sandal" -04521863 06 n 01 variometer 0 001 @ 03733925 n 0000 | a measuring instrument for measuring variations in a magnetic field -04521987 06 n 01 varnish 0 004 @ 03058107 n 0000 + 01269008 v 0101 ~ 03353951 n 0000 ~ 04191150 n 0000 | a coating that provides a hard, lustrous, transparent finish to a surface -04522168 06 n 01 vase 0 002 @ 03593526 n 0000 ~ 04516116 n 0000 | an open jar of glass or porcelain used as an ornament or to hold flowers -04522309 06 n 01 Vaseline 0 002 @ 14980910 n 0000 ;u 06851742 n 0000 | a trademarked brand of petroleum jelly -04522421 06 n 03 vasoconstrictor 0 vasoconstrictive 0 pressor 0 011 @ 09190918 n 0000 ~ 02682038 n 0000 ~ 02711890 n 0000 ~ 03699138 n 0000 ~ 03807052 n 0000 ~ 04523201 n 0000 ~ 05015117 n 0000 ~ 05407890 n 0000 ~ 05408388 n 0000 ~ 05414147 n 0000 ~ 14714817 n 0000 | any agent that causes a narrowing of an opening of a blood vessel: cold or stress or nicotine or epinephrine or norepinephrine or angiotensin or vasopressin or certain drugs; maintains or increases blood pressure -04522904 06 n 02 vasodilator 0 vasodilative 0 011 @ 03198383 n 0000 ~ 02702809 n 0000 ~ 02706916 n 0000 ~ 02929749 n 0000 ~ 03190303 n 0000 ~ 03550671 n 0000 ~ 03771820 n 0000 ~ 03826762 n 0000 ~ 03912328 n 0000 ~ 04448680 n 0000 ~ 14886579 n 0000 | a drug that causes dilation of blood vessels -04523201 06 n 01 vasopressor 0 001 @ 04522421 n 0000 | any agent that produces vasoconstriction and a rise in blood pressure (usually understood as increased arterial pressure) -04523380 06 n 02 Vatican 0 Vatican_Palace 0 002 @i 04079244 n 0000 #p 09161452 n 0000 | the residence of the Catholic Pope in the Vatican City -04523525 06 n 01 vault 0 005 @ 04105068 n 0000 ~ 02796207 n 0000 ~ 03461882 n 0000 %p 03697665 n 0000 ~ 04087709 n 0000 | an arched brick or stone ceiling or roof -04523690 06 n 02 vault 1 burial_vault 0 003 @ 02921884 n 0000 ~ 03009794 n 0000 ~ 03073545 n 0000 | a burial chamber (usually underground) -04523831 06 n 02 vault 2 bank_vault 0 002 @ 04341133 n 0000 #p 02787772 n 0000 | a strongroom or compartment (often made of steel) for safekeeping of valuables -04523993 06 n 01 vaulting 0 003 @ 04341686 n 0000 ;c 06123363 n 0000 ~ 03321954 n 0000 | (architecture) a vaulted structure; "arches and vaulting" -04524142 06 n 03 vaulting_horse 0 long_horse 0 buck 1 001 @ 03538037 n 0000 | a gymnastic horse without pommels and with one end elongated; used lengthwise for vaulting -04524313 06 n 01 vehicle 0 011 @ 03100490 n 0000 + 03128327 a 0101 ~ 02918964 n 0000 ~ 03125870 n 0000 ~ 03764276 n 0000 ~ 04099429 n 0000 ~ 04228422 n 0000 ~ 04235291 n 0000 %p 04281375 n 0000 ~ 04310157 n 0000 ~ 04576211 n 0000 | a conveyance that transports people or objects -04524594 06 n 01 Velcro 0 003 @ 03309808 n 0000 ;u 06851742 n 0000 + 01343773 v 0101 | nylon fabric used as a fastening -04524716 06 n 01 velocipede 2 001 @ 02834778 n 0000 | any of several early bicycles with pedals on the front wheel -04524833 06 n 01 velodrome 0 001 @ 04037625 n 0000 | a banked oval track for bicycle or motorcycle racing -04524941 06 n 02 velour 0 velours 0 001 @ 03309808 n 0000 | heavy fabric that resembles velvet -04525038 06 n 01 velvet 0 004 @ 03309808 n 0000 + 01155206 a 0101 + 02238310 a 0101 + 01155206 a 0102 | a silky densely piled fabric with a plain back -04525191 06 n 01 velveteen 0 001 @ 03309808 n 0000 | a usually cotton fabric with a short pile imitating velvet -04525305 06 n 01 vending_machine 0 002 @ 04243941 n 0000 ~ 02760199 n 0000 | a slot machine for selling goods -04525417 06 n 02 veneer 1 veneering 0 002 @ 03058107 n 0000 + 01269224 v 0101 | coating consisting of a thin layer of superior wood glued to a base of inferior wood -04525584 06 n 01 Venetian_blind 0 002 @ 04589190 n 0000 %p 04234455 n 0000 | a window blind made of horizontal strips that overlap when closed -04525729 06 n 01 Venetian_glass 0 001 @ 03439064 n 0000 | fine glassware made near Venice -04525821 06 n 02 Venn_diagram 0 Venn's_diagram 0 001 @ 03186399 n 0000 | a diagram that uses circles to represent mathematical or logical sets pictorially inside a rectangle (the universal set); elements that are common to more than one set are represented by intersections of the circles -04526112 06 n 02 venogram 0 phlebogram 0 001 @ 04100620 n 0000 | an X ray of a vein injected with a radiopaque contrast medium -04526241 06 n 04 vent 0 venthole 0 vent-hole 0 blowhole 0 004 @ 03526198 n 0000 #p 02690941 n 0000 + 00488770 v 0102 ~ 04246633 n 0000 | a hole for the escape of gas or air -04526416 06 n 01 vent 1 001 @ 04241940 n 0000 | a slit in a garment (as in the back seam of a jacket) -04526520 06 n 03 ventilation 0 ventilation_system 0 ventilating_system 0 005 @ 03738241 n 0000 + 02112345 v 0101 + 02042672 v 0101 %p 04526800 n 0000 %p 04526964 n 0000 | a mechanical system in a building that provides fresh air; "she was continually adjusting the ventilation" -04526800 06 n 01 ventilation_shaft 0 003 @ 04182890 n 0000 @ 02690941 n 0000 #p 04526520 n 0000 | a shaft in a building; serves as an air passage for ventilation -04526964 06 n 01 ventilator 0 006 @ 03183080 n 0000 #p 04526520 n 0000 + 02112345 v 0101 + 00581891 v 0101 + 00488770 v 0102 %p 02688273 n 0000 | a device (such as a fan) that introduces fresh air or expels foul air -04527182 06 n 01 ventriloquist's_dummy 0 001 @ 03255648 n 0000 | a wooden dummy into which a ventriloquist projects the voice -04527310 06 n 01 venturi 1 002 @ 04493505 n 0000 #p 02962200 n 0000 | a tube with a constriction; used to control fluid flow (as in the air inlet of a carburetor) -04527475 06 n 01 Venturi_tube 0 001 @ 03733925 n 0000 | a short tube inserted into a pipeline and used to measure the quantity of a liquid that is flowing in the pipeline -04527648 06 n 03 veranda 0 verandah 0 gallery 5 002 @ 03984381 n 0000 ~ 03637480 n 0000 | a porch along the outside of a building (sometimes partly enclosed) -04527808 06 n 03 verapamil 0 Calan 0 Isoptin 0 003 @ 02938514 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | a drug (trade names Calan and Isoptin) used as an oral or parenteral calcium blocker in cases of hypertension or congestive heart failure or angina or migraine -04528079 06 n 01 verdigris 0 001 @ 03899612 n 0000 | a green patina that forms on copper or brass or bronze that has been exposed to the air or water for long periods of time -04528256 06 n 01 verge 0 002 @ 02875013 n 0000 ;r 08860123 n 0000 | a grass border along a road -04528354 06 n 01 vermicide 0 002 @ 14778436 n 0000 @ 03740161 n 0000 | an agent that kills worms (especially those in the intestines) -04528490 06 n 01 vermiculation 0 003 @ 02973558 n 0000 @ 03282401 n 0000 + 01677387 v 0101 | a decoration consisting of wormlike carvings -04528630 06 n 04 vermifuge 0 anthelmintic 0 anthelminthic 0 helminthic 0 010 @ 03740161 n 0000 + 01165266 a 0403 + 01165266 a 0302 + 01165266 a 0201 ~ 03736674 n 0000 ~ 03946814 n 0000 ~ 04034641 n 0000 ~ 04416338 n 0000 ~ 04423174 n 0000 ~ 14770838 n 0000 | a medication capable of causing the evacuation of parasitic intestinal worms -04528968 06 n 02 vernier_caliper 0 vernier_micrometer 0 001 @ 02939866 n 0000 | a caliper with a vernier scale for very fine measurements -04529108 06 n 02 vernier_scale 0 vernier 0 001 @ 04141838 n 0000 | a small movable scale that slides along a main scale; the small scale is calibrated to indicate fractional divisions of the main scale -04529312 06 n 01 Verrazano-Narrows_Bridge 0 002 @i 04366367 n 0000 #p 09119277 n 0000 | a suspension bridge across the Verrazano Narrows between Brooklyn and Staten Island -04529486 06 n 02 Versailles 0 Palace_of_Versailles 0 002 @i 03877845 n 0000 #p 08929922 n 0000 | a palace built in the 17th century for Louis XIV southwest of Paris near the city of Versailles -04529681 06 n 01 vertical_file 0 001 @ 03337140 n 0000 | a file in which records are stored upright on one edge -04529795 06 n 01 vertical_section 0 001 @ 03737912 n 0000 | a mechanical drawing showing the interior of an object as if made by a vertical plane passing through it -04529962 06 n 05 vertical_stabilizer 0 vertical_stabiliser 0 vertical_fin 0 tail_fin 0 tailfin 0 002 @ 04294426 n 0000 #p 04530283 n 0000 | a stabilizer that is part of the vertical tail structure of an airplane -04530176 06 n 01 vertical_surface 0 002 @ 04362025 n 0000 ~ 03313456 n 0000 | a surface that is vertical -04530283 06 n 01 vertical_tail 0 004 @ 02688443 n 0000 #p 04384016 n 0000 %p 04117464 n 0000 %p 04529962 n 0000 | the vertical airfoil in the tail assembly of an aircraft -04530456 06 n 02 Very_pistol 0 Verey_pistol 0 001 @ 03948459 n 0000 | a pistol for firing Very-light flares -04530566 06 n 02 vessel 0 watercraft 0 024 @ 03125870 n 0000 %p 02709367 n 0000 ~ 02792409 n 0000 %p 02838014 n 0000 %p 02838178 n 0000 ~ 02858304 n 0000 %p 02880008 n 0000 -c 03042984 n 0000 ~ 03351262 n 0000 ~ 03412511 n 0000 ~ 03412674 n 0000 %p 03548626 n 0000 ~ 03556811 n 0000 ~i 03750748 n 0000 ~i 03782430 n 0000 ~ 03900194 n 0000 %p 04117216 n 0000 ~ 04128837 n 0000 ~ 04194289 n 0000 ~ 04210288 n 0000 %p 04544805 n 0000 %p 04554211 n 0000 ~ 04567746 n 0000 ~ 04610013 n 0000 | a craft designed for water transportation -04531098 06 n 01 vessel 1 038 @ 03094503 n 0000 ~ 02758960 n 0000 ~ 02795169 n 0000 %p 02798574 n 0000 ~ 02801525 n 0000 ~ 02806530 n 0000 ~ 02808440 n 0000 ~ 02821202 n 0000 ~ 02863750 n 0000 ~ 02868975 n 0000 ~ 02876657 n 0000 ~ 02877266 n 0000 ~ 02881193 n 0000 %p 02902250 n 0000 ~ 02909870 n 0000 ~ 02993368 n 0000 ~ 03029445 n 0000 ~ 03140126 n 0000 ~ 03241496 n 0000 ~ 03249956 n 0000 ~ 03308614 n 0000 ~ 03355768 n 0000 ~ 03593526 n 0000 ~ 03633091 n 0000 ~ 03784270 n 0000 ~ 03786901 n 0000 ~ 03798165 n 0000 ~ 03950228 n 0000 ~ 03972372 n 0000 ~ 03990474 n 0000 ~ 04083649 n 0000 ~ 04312311 n 0000 ~ 04388743 n 0000 ~ 04438897 n 0000 ~ 04493381 n 0000 ~ 04515890 n 0000 ~ 04560619 n 0000 ~ 04572935 n 0000 | an object used as a container (especially for liquids) -04531873 06 n 02 vest 1 waistcoat 0 003 @ 03419014 n 0000 #p 04427715 n 0000 ~ 02916936 n 0000 | a man's sleeveless garment worn underneath a coat -04532022 06 n 01 vestiture 0 001 @ 03051540 n 0000 | an archaic term for clothing -04532106 06 n 01 vestment 0 011 @ 03450516 n 0000 + 03128699 a 0101 + 00052043 v 0101 ~ 02694966 n 0000 ~ 02979516 n 0000 ~ 03010795 n 0000 ~ 03548930 n 0000 %p 03856335 n 0000 ~ 03880129 n 0000 ~ 03981340 n 0000 ~ 04364994 n 0000 | gown (especially ceremonial garments) worn by the clergy -04532398 06 n 01 vest_pocket 0 002 @ 03972524 n 0000 ~ 03375070 n 0000 | a small pocket in a man's vest -04532504 06 n 02 vestry 0 sacristy 0 002 @ 04105893 n 0000 #p 03028079 n 0000 | a room in a church where sacred vessels and vestments are kept or meetings are held -04532670 06 n 01 viaduct 0 001 @ 02898711 n 0000 | bridge consisting of a series of arches supported by piers used to carry a road (or railroad) over a valley -04532831 06 n 03 vibraphone 0 vibraharp 0 vibes 0 001 @ 03915437 n 0000 | a percussion instrument similar to a xylophone but having metal bars and rotating disks in the resonators that produce a vibrato sound -04533042 06 n 01 vibrator 0 003 @ 03736970 n 0000 + 01891249 v 0101 ~ 03198500 n 0000 | mechanical device that produces vibratory motion; used for massage -04533199 06 n 01 vibrator 1 003 @ 03736970 n 0000 + 01878063 v 0102 ~ 04066888 n 0000 | a mechanical device that vibrates; "a reed is the vibrator that produces the sound" -04533373 06 n 01 victory_garden 0 001 @ 03620443 n 0000 | a kitchen garden planted during wartime to relieve food shortages -04533499 06 n 01 Victrola 0 002 @ 03452267 n 0000 ;u 06851742 n 0000 | a brand of gramophone -04533594 06 n 01 vicuna 0 001 @ 03309808 n 0000 | a soft wool fabric made from the fleece of the vicuna -04533700 06 n 01 videocassette 0 002 @ 02978881 n 0000 @ 04534127 n 0000 | a cassette for videotape -04533802 06 n 02 videocassette_recorder 0 VCR 0 001 @ 04393095 n 0000 | a magnetic tape recorder for recording (and playing back) TV programs -04533946 06 n 03 videodisk 0 videodisc 0 DVD 0 001 @ 03851787 n 0000 | a digital recording (as of a movie) on an optical disk that can be played on a computer or a television set -04534127 06 n 02 video_recording 0 video 0 003 @ 04063868 n 0000 ~ 04533700 n 0000 ~ 04534520 n 0000 | a recording of both the visual and audible components (especially one containing a recording of a movie or television program) -04534359 06 n 01 videotape 0 002 @ 03708036 n 0000 + 01003049 v 0101 | a relatively wide magnetic tape for use in recording visual images and associated sound -04534520 06 n 01 videotape 1 003 @ 04391838 n 0000 @ 04534127 n 0000 + 01003049 v 0101 | a video recording made on magnetic tape -04534651 06 n 01 viewer 0 002 @ 03851341 n 0000 + 02130300 v 0101 | an optical device for viewing photographic transparencies -04534779 06 n 02 viewgraph 0 overhead 1 001 @ 03375956 n 0000 | a transparency for use with an overhead projector -04534895 06 n 02 vigil_light 0 vigil_candle 0 001 @ 02948072 n 0000 | a candle lighted by a worshiper in a church -04535011 06 n 01 vignette 0 001 @ 04227144 n 0000 | a small illustrative sketch (as sometimes placed at the beginning of chapters in books) -04535153 06 n 01 vignette 1 001 @ 03925226 n 0000 | a photograph whose edges shade off gradually -04535252 06 n 01 villa 1 001 @ 03118969 n 0000 | pretentious and luxurious country residence with extensive grounds -04535370 06 n 01 villa 2 001 @ 03118969 n 0000 | country house in ancient Rome consisting of residential quarters and farm buildings around a courtyard -04535524 06 n 01 villa 3 002 @ 03544360 n 0000 ;r 08860123 n 0000 | detached or semidetached suburban house -04535634 06 n 02 vinblastine 0 Velban 0 002 @ 03917455 n 0000 ;u 06845599 n 0201 | periwinkle plant derivative used as an antineoplastic drug (trade name Velban) that disrupts cell division -04535826 06 n 02 vincristine 0 Oncovin 0 002 @ 03917455 n 0000 ;u 06845599 n 0201 | periwinkle plant derivative used as an antineoplastic drug (trade name Oncovin); used to treat cancer of the lymphatic system -04536038 06 n 02 vineyard 0 vinery 0 001 @ 03322099 n 0000 | a farm of grapevines where wine grapes are produced -04536153 06 n 01 viol 0 004 @ 02880546 n 0000 ~ 04536465 n 0000 ~ 04536595 n 0000 ~ 04536765 n 0000 | any of a family of bowed stringed instruments that preceded the violin family -04536335 06 n 01 viola 0 001 @ 02880546 n 0000 | a bowed stringed instrument slightly larger than a violin, tuned a fifth lower -04536465 06 n 01 viola_da_braccio 0 001 @ 04536153 n 0000 | a member of the viol family with approximately the range of a viola -04536595 06 n 03 viola_da_gamba 0 gamba 0 bass_viol 0 001 @ 04536153 n 0000 | viol that is the bass member of the viol family with approximately the range of the cello -04536765 06 n 01 viola_d'amore 0 001 @ 04536153 n 0000 | viol that is the tenor of the viol family -04536866 06 n 02 violin 0 fiddle 0 008 @ 02880546 n 0000 + 01733667 v 0201 + 10754578 n 0101 ~ 02700895 n 0000 %p 03019685 n 0000 %p 03332271 n 0000 ~ 03465500 n 0000 ~ 04330998 n 0000 | bowed stringed instrument that is the highest member of the violin family; this instrument has four strings and a hollow body and an unfretted fingerboard and is played with a bow -04537235 06 n 02 viomycin 0 Viocin 0 001 @ 02716866 n 0000 | a basic polypeptide antibiotic (trade name Viocin) administered intramuscularly (along with other drugs) in the treatment of tuberculosis -04537436 06 n 02 virginal 0 pair_of_virginals 0 001 @ 03496296 n 0000 | a legless rectangular harpsichord; played (usually by women) in the 16th and 17th centuries -04537602 06 n 02 virility_drug 0 anti-impotence_drug 0 005 @ 03247620 n 0000 ~ 03922561 n 0000 ~ 04218383 n 0000 ~ 04383537 n 0000 ~ 04521428 n 0000 | drug to treat impotence attributable to erectile dysfunction -04537816 06 n 01 virtu 0 001 @ 03838535 n 0000 | objet d'art collectively (especially fine antiques) -04537919 06 n 02 virtual_memory 0 virtual_storage 0 002 @ 03744276 n 0000 ;c 06128570 n 0000 | (computer science) memory created by using the hard disk to simulate additional random-access memory; the addressable storage space available to the user of a computer system in which virtual addresses are mapped into real addresses -04538249 06 n 02 viscometer 0 viscosimeter 0 003 @ 03733925 n 0000 + 03143794 a 0202 + 03143794 a 0101 | a measuring instrument for measuring viscosity -04538403 06 n 02 viscose_rayon 0 viscose 1 002 @ 04056932 n 0000 %s 14965780 n 0000 | a rayon fabric made from viscose (cellulose xanthate) fibers -04538552 06 n 02 vise 0 bench_vise 0 004 @ 03525827 n 0000 %p 03594277 n 0000 ~ 03702440 n 0000 ~ 04598416 n 0000 | a holding device attached to a workbench; has two jaws to hold workpiece firmly in place -04538759 06 n 01 visible_speech 0 001 @ 04272638 n 0000 | spectrogram of speech; speech displayed spectrographically -04538878 06 n 02 visor 1 vizor 1 002 @ 02740764 n 0000 #p 03513376 n 0000 | a piece of armor plate (with eye slits) fixed or hinged to a medieval helmet to protect the face -04539053 06 n 02 visual_display_unit 0 VDU 0 003 @ 03211117 n 0000 ;c 03082979 n 0000 ;r 08860123 n 0000 | (British) British term for video display -04539203 06 n 01 vivarium 0 003 @ 03285912 n 0000 ~ 02732072 n 0000 ~ 04414199 n 0000 | an indoor enclosure for keeping and raising living animals and plants and observing them under natural conditions -04539407 06 n 01 Viyella 0 002 @ 03309808 n 0000 ;u 06851742 n 0000 | a fabric made from a twilled mixture of cotton and wool -04539535 06 n 01 V_neck 0 001 @ 03814112 n 0000 | the neck of a garment has the shape in front of the letter V -04539648 06 n 02 voider 1 gusset 2 002 @ 03000247 n 0000 #p 02862048 n 0000 | a piece of chain mail covering a place unprotected by armor plate -04539794 06 n 01 voile 0 001 @ 03309808 n 0000 | a light semitransparent fabric -04539876 06 n 01 volatile_storage 0 004 @ 03744276 n 0000 ! 03829340 n 0101 ! 03829340 n 0102 ~ 04052757 n 0000 | computer storage that is erased when the power is turned off -04540053 06 n 01 volleyball 0 001 @ 02778669 n 0000 | an inflated ball used in playing volleyball -04540153 06 n 01 volleyball_court 0 001 @ 03120491 n 0000 | the court on which volleyball is played -04540255 06 n 01 volleyball_net 0 001 @ 03820154 n 0000 | the high net that separates the two teams and over which the volleyball must pass -04540397 06 n 01 voltage_regulator 0 002 @ 04471315 n 0000 #p 03270165 n 0000 | a transformer whose voltage ratio of transformation can be adjusted -04540547 06 n 02 voltaic_battery 0 galvanic_battery 0 004 @ 02810471 n 0000 ~ 03250952 n 0000 ~ 04328329 n 0000 %p 04540761 n 0000 | battery consisting of a number of voltaic cells arranged in series or parallel -04540761 06 n 03 voltaic_cell 0 galvanic_cell 0 primary_cell 0 009 @ 02991048 n 0000 #p 04540547 n 0000 ! 03275864 n 0101 %p 02714535 n 0000 %p 02984937 n 0000 ~ 03653454 n 0000 ~ 03749634 n 0000 ~ 04301474 n 0000 ~ 04573832 n 0000 | an electric cell that generates an electromotive force by an irreversible conversion of chemical to electrical energy; cannot be recharged -04541136 06 n 03 voltaic_pile 0 pile 1 galvanic_pile 0 001 @ 02810471 n 0000 | battery consisting of voltaic cells arranged in series; the earliest electric battery devised by Volta -04541320 06 n 01 voltmeter 0 003 @ 03753077 n 0000 ~ 03279364 n 0000 ~ 03766697 n 0000 | meter that measures the potential difference between two points -04541475 06 n 01 volumeter 0 003 @ 03753077 n 0000 + 02985474 a 0101 + 02985474 a 0102 | a meter to measure the volume of gases, liquids, or solids (either directly or by displacement) -04541662 06 n 01 vomitory 0 002 @ 03290771 n 0000 #p 02704949 n 0000 | an entrance to an amphitheater or stadium -04541777 06 n 01 von_Neumann_machine 0 001 @ 03196324 n 0000 | any digital computer incorporating the ideas of stored programs and serial counters that were proposed in 1946 by von Neumann and his colleagues -04541987 06 n 01 voting_booth 0 001 @ 02873839 n 0000 | a booth in which a person can cast a private vote -04542095 06 n 01 voting_machine 0 001 @ 03736970 n 0000 | a mechanical device for recording and counting votes mechanically -04542221 06 n 01 vouge 0 001 @ 03935450 n 0000 | a kind of pike used by foot soldiers in the 14th century -04542329 06 n 01 voussoir 0 002 @ 02914813 n 0000 #p 02733524 n 0000 | wedge-shaped stone building block used in constructing an arch or vault -04542474 06 n 02 vox_angelica 0 voix_celeste 0 001 @ 03854998 n 0000 | an organ stop producing a gentle tremolo effect -04542595 06 n 01 vox_humana 0 001 @ 04067231 n 0000 | an organ reed stop producing tones imitative of the human voice -04542715 06 n 01 waders 0 002 @ 03521544 n 0000 ;u 06295235 n 0000 | waterproof hip boots (sometimes extending to the chest) worn by anglers -04542858 06 n 01 wading_pool 0 001 @ 03982060 n 0000 | a shallow pool for children -04542943 06 n 01 waffle_iron 0 001 @ 03620052 n 0000 | a kitchen appliance for baking waffles; the appliance usually consists of two indented metal pans hinged together so that they create a pattern on the waffle -04543158 06 n 02 wagon 0 waggon 0 013 @ 04576211 n 0000 %p 02765028 n 0000 ~ 02787120 n 0000 ~ 02970849 n 0000 ~ 03027505 n 0000 ~ 03122295 n 0000 ~ 03558841 n 0000 ~ 03690600 n 0000 ~ 03765467 n 0000 ~ 04468847 n 0000 %p 04543772 n 0000 ~ 04543924 n 0000 ~ 04563020 n 0000 | any of various kinds of wheeled vehicles drawn by an animal or a tractor -04543509 06 n 02 wagon 4 coaster_wagon 0 001 @ 04576211 n 0000 | a child's four-wheeled toy cart sometimes used for coasting -04543636 06 n 01 wagon_tire 0 003 @ 04440749 n 0000 #p 04543772 n 0000 #p 02973236 n 0000 | a metal hoop forming the tread of a wheel -04543772 06 n 01 wagon_wheel 0 005 @ 04574999 n 0000 #p 04543158 n 0000 %p 03533972 n 0000 %p 04283378 n 0000 %p 04543636 n 0000 | a wheel of a wagon -04543924 06 n 01 wain 0 001 @ 04543158 n 0000 | large open farm wagon -04543996 06 n 03 wainscot 0 wainscoting 0 wainscotting 0 001 @ 03882058 n 0000 | wooden panels that can be used to line the walls of a room -04544138 06 n 02 wainscot 1 dado 0 002 @ 03882058 n 0000 #p 04546855 n 0000 | panel forming the lower part of an interior wall when it is finished differently from the rest of the wall -04544325 06 n 02 wainscoting 1 wainscotting 1 001 @ 04546855 n 0000 | a wainscoted wall (or wainscoted walls collectively) -04544450 06 n 02 waist_pack 0 belt_bag 0 002 @ 03993180 n 0000 ~ 03321563 n 0000 | a small pouch (usually with a zipper) that attaches to a belt and is worn around the waist -04544626 06 n 02 wake_board 0 wakeboard 0 001 @ 02856463 n 0000 | a buoyant board (resembling a surfboard) that is used to ride over water while being pulled behind a motorboat -04544805 06 n 02 wale 0 strake 0 004 @ 15101854 n 0000 #p 04530566 n 0000 ~ 03417202 n 0000 ~ 03470802 n 0000 | thick plank forming a ridge along the side of a wooden ship -04544979 06 n 03 walk 0 walkway 0 paseo 0 011 @ 03899328 n 0000 + 01882170 v 0101 + 01912893 v 0101 + 01904930 v 0101 ~ 02701125 n 0000 ~ 02858179 n 0000 ~ 02986605 n 0000 ~ 03355641 n 0000 ~ 04010205 n 0000 ~ 04215402 n 0000 ~ 04233295 n 0000 | a path set aside for walking; "after the blizzard he shoveled the front walk" -04545305 06 n 03 walker 0 baby-walker 0 go-cart 1 002 @ 03391770 n 0000 + 01912893 v 0101 | an enclosing framework on casters or wheels; helps babies learn to walk -04545471 06 n 03 walker 1 Zimmer 0 Zimmer_frame 0 004 @ 03391770 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 + 01912893 v 0101 | a light enclosing framework (trade name Zimmer) with rubber castors or wheels and handles; helps invalids or the handicapped or the aged to walk -04545748 06 n 01 walker 2 002 @ 04199027 n 0000 + 01912893 v 0101 | a shoe designed for comfortable walking -04545858 06 n 02 walkie-talkie 0 walky-talky 0 001 @ 04042795 n 0000 | small portable radio link (receiver and transmitter) -04545984 06 n 01 walk-in 0 001 @ 04105893 n 0000 | a small room large enough to admit entrance -04546081 06 n 01 walking_shoe 0 001 @ 04199027 n 0000 | a light comfortable shoe designed for vigorous walking -04546194 06 n 01 walking_stick 0 003 @ 04317420 n 0000 ~ 02949202 n 0000 ~ 04359217 n 0000 | a stick carried in the hand for support in walking -04546340 06 n 01 Walkman 0 002 @ 04315948 n 0000 ;u 06851742 n 0000 | (trademark) a pocket-sized stereo system with light weight earphones -04546481 06 n 01 walk-up 0 002 @ 02726681 n 0000 %p 04546595 n 0000 | an apartment building without an elevator -04546595 06 n 02 walk-up_apartment 0 walk-up 1 002 @ 02726305 n 0000 #p 04546481 n 0000 | an apartment in a building without an elevator -04546734 06 n 01 walk-through 0 001 @ 03895585 n 0000 | a pedestrian passageway through the ground floor of a building -04546855 06 n 01 wall 0 026 @ 03894379 n 0000 #p 02913152 n 0000 #p 04105893 n 0000 #p 03479952 n 0000 + 01130607 v 0101 %p 02734217 n 0000 ~ 02755823 n 0000 ~ 02817386 n 0000 %p 02957427 n 0000 ~ 02987823 n 0000 ~ 03017698 n 0000 %p 03120029 n 0000 %p 03224032 n 0000 ~ 03347980 n 0000 ~ 03409393 n 0000 %p 03503097 n 0000 %p 03882611 n 0000 ~ 03889626 n 0000 %p 03934042 n 0000 ~ 04013176 n 0000 ~ 04215588 n 0000 %p 04544138 n 0000 ~ 04544325 n 0000 %p 04548503 n 0000 ~i 08797619 n 0000 ~i 08886814 n 0000 | an architectural partition with a height and length greater than its thickness; used to divide or enclose an area or to support another structure; "the south wall had a small window"; "the walls were covered with pictures" -04547592 06 n 01 wall 2 004 @ 03327234 n 0000 + 01130607 v 0101 ~ 03895038 n 0000 ~ 04082710 n 0000 | a masonry fence (as around an estate or garden); "the wall followed the road"; "he ducked behind the garden wall and waited" -04547821 06 n 01 wall 3 001 @ 03650173 n 0000 | a layer of material that encloses space; "the walls of the cylinder were perforated"; "the container's walls were blue" -04547991 06 n 03 wallboard 0 drywall 0 dry_wall 1 004 @ 02856463 n 0000 ~ 02818402 n 0000 ~ 03331390 n 0000 ~ 03957762 n 0000 | a wide flat board used to cover walls or partitions; made from plaster or wood pulp or other materials and used primarily to form the interior walls of houses -04548280 06 n 01 wall_clock 0 001 @ 03046257 n 0000 | a clock mounted on a wall -04548362 06 n 04 wallet 0 billfold 0 notecase 0 pocketbook 2 001 @ 02974697 n 0000 | a pocket-size case for holding papers and paper money -04548503 06 n 01 wall_panel 0 002 @ 03882611 n 0000 #p 04546855 n 0000 | paneling that forms part of a wall -04548613 06 n 01 wall_plate 0 001 @ 03960490 n 0000 | plate (a timber along the top of a wall) to support the ends of joists, etc., and distribute the load -04548771 06 n 06 wall_socket 0 wall_plug 0 electric_outlet 0 electrical_outlet 0 outlet 2 electric_receptacle 0 002 @ 04061442 n 0000 ~ 03974671 n 0000 | receptacle providing a place in a wiring system where current can be taken to run electrical devices -04549028 06 n 01 wall_tent 0 001 @ 02954163 n 0000 | a canvas tent with four vertical walls -04549122 06 n 01 wall_unit 0 002 @ 03405725 n 0000 ~ 03290653 n 0000 | a piece of furniture having several units that stands against one wall of a room -04549276 06 n 01 Walt_Whitman_Bridge 0 002 @i 04366367 n 0000 #p 09136182 n 0000 | a suspension bridge across the Delaware River -04549407 06 n 03 wampum 0 peag 0 wampumpeag 0 001 @ 02815600 n 0000 | small cylindrical beads made from polished shells and fashioned into strings or belts; used by certain Native American peoples as jewelry or currency -04549629 06 n 01 wand 0 001 @ 04100174 n 0000 | a rod used by a magician or water diviner -04549721 06 n 03 Wankel_engine 0 Wankel_rotary_engine 0 epitrochoidal_engine 0 001 @ 04110654 n 0000 | a rotary engine that is a four-stroke internal-combustion engine without reciprocating parts -04549919 06 n 02 ward 0 hospital_ward 0 004 @ 02853016 n 0000 #p 03540595 n 0000 ~ 03182683 n 0000 ~ 03730494 n 0000 | block forming a division of a hospital (or a suite of rooms) shared by patients who need a similar kind of care; "they put her in a 4-bed ward" -04550184 06 n 03 wardrobe 0 closet 2 press 2 004 @ 03405725 n 0000 ~ 02739550 n 0000 ~ 03050546 n 0000 ~ 03057636 n 0000 | a tall piece of furniture that provides storage space for clothes; has a door and rails or hooks for hanging clothes -04550426 06 n 01 wardrobe 1 002 @ 07951464 n 0000 #p 03051540 n 0000 | collection of clothing belonging to one person -04550546 06 n 01 wardrobe 2 002 @ 07951464 n 0000 #p 03113657 n 0000 | collection of costumes belonging to a theatrical company -04550676 06 n 01 wardroom 0 002 @ 03763727 n 0000 ;c 08199025 n 0000 | military quarters for dining and recreation for officers of a warship (except the captain) -04550840 06 n 01 ware 0 005 @ 00022903 n 0000 ~ 02745091 n 0000 ~ 03752262 n 0000 ~ 04381994 n 0000 ~ 04597804 n 0000 | articles of the same kind or material; usually used in combination: `silverware', `software' -04551055 06 n 02 warehouse 0 storage_warehouse 0 003 @ 04329190 n 0000 + 02282365 v 0101 ~ 03443543 n 0000 | a storehouse for goods and merchandise -04551205 06 n 02 warfarin 0 Coumadin 0 002 @ 02718259 n 0000 ;u 06845599 n 0201 | an anticoagulant (trade name Coumadin) use to prevent and treat a thrombus or embolus -04551375 06 n 03 warhead 0 payload 1 load 1 004 @ 03304730 n 0000 #p 03466162 n 0000 + 01490336 v 0301 ~ 02753881 n 0000 | the front part of a guided missile or rocket or torpedo that carries the nuclear or explosive charge or the chemical or biological agents -04551638 06 n 01 warhorse 0 002 @ 04601690 n 0000 ;c 06376154 n 0000 | a work of art (composition or drama) that is part of the standard repertory but has become hackneyed from much repetition -04551833 06 n 01 warming_pan 0 001 @ 03880323 n 0000 | a long-handled covered pan holding live coals to warm a bed -04551950 06 n 01 warp 0 003 @ 04426788 n 0000 #p 04568298 n 0000 #s 03309808 n 0000 | yarn arranged lengthways on a loom and crossed by the woof -04552097 06 n 01 war_paint 0 002 @ 02742322 n 0000 ;u 07075172 n 0000 | full ceremonial regalia -04552195 06 n 01 war_paint 1 001 @ 02681518 n 0000 | adornment consisting of paint applied to the face and body of certain Amerindians before a battle -04552348 06 n 02 warplane 0 military_plane 0 006 @ 03510583 n 0000 @ 03764276 n 0000 ;c 08199025 n 0000 ~ 02867715 n 0000 ~ 03335030 n 0000 ~ 04062644 n 0000 | an aircraft designed and used for combat -04552551 06 n 01 war_room 0 001 @ 04105893 n 0000 | a room where strategic decisions are made (especially for military or political campaigns) -04552696 06 n 03 warship 0 war_vessel 0 combat_ship 0 024 @ 04194289 n 0000 @ 03764276 n 0000 #m 08292756 n 0000 ;c 08199025 n 0000 ~ 02687172 n 0000 ~ 02812201 n 0000 ~ 02956393 n 0000 %p 03092053 n 0000 ~ 03113035 n 0000 ~ 03140900 n 0000 ~ 03180504 n 0000 ~ 03180732 n 0000 ~ 03397266 n 0000 ~ 03397412 n 0000 ~ 03465151 n 0000 ~ 03585551 n 0000 ~ 03718212 n 0000 %p 03811965 n 0000 ~ 04006067 n 0000 ~ 04242587 n 0000 ~ 04348184 n 0000 ~ 04363082 n 0000 ~ 04427376 n 0000 ~ 04457326 n 0000 | a government ship that is available for waging war -04553245 06 n 02 wash 1 wash_drawing 0 001 @ 04558578 n 0000 | a watercolor made by applying a series of monochrome washes one over the other -04553389 06 n 01 wash 2 006 @ 04557308 n 0000 + 01269844 v 0101 ~ 02847852 n 0000 ~ 02938321 n 0000 ~ 03072682 n 0000 ~ 04581102 n 0000 | a thin coat of water-base paint -04553561 06 n 01 wash-and-wear 0 002 @ 03309808 n 0000 + 02534042 a 0101 | a fabric treated to be easily washable and to require no ironing -04553703 06 n 05 washbasin 0 handbasin 0 washbowl 0 lavabo 0 wash-hand_basin 0 003 @ 02801525 n 0000 #p 02807731 n 0000 ;r 08860123 n 0000 | a basin for washing the hands (`wash-hand basin' is a British expression) -04553920 06 n 05 washbasin 2 basin 1 washbowl 2 washstand 2 lavatory 1 001 @ 04223580 n 0000 | a bathroom sink that is permanently installed and connected to a water supply and drainpipe; where you can wash your hands and face; "he ran some water in the basin and splashed it on his face" -04554211 06 n 02 washboard 0 splashboard 0 002 @ 04014297 n 0000 #p 04530566 n 0000 | protective covering consisting of a broad plank along a gunwale to keep water from splashing over the side -04554406 06 n 01 washboard 1 001 @ 03183080 n 0000 | device consisting of a corrugated surface to scrub clothes on -04554523 06 n 04 washcloth 0 washrag 0 flannel 1 face_cloth 0 001 @ 02807260 n 0000 | bath linen consisting of a piece of cloth used to wash the face and body -04554684 06 n 03 washer 0 automatic_washer 0 washing_machine 0 003 @ 04580493 n 0000 + 01270199 v 0101 + 01535246 v 0101 | a home appliance for washing clothes and linens automatically -04554871 06 n 01 washer 1 002 @ 04159354 n 0000 ~ 03684489 n 0000 | seal consisting of a flat disk placed to prevent leakage -04554998 06 n 01 washhouse 0 001 @ 03648066 n 0000 | a building or outbuilding where laundry is done -04555101 06 n 01 Washington_Monument 0 003 @i 03743902 n 0000 @i 03837869 n 0000 #p 09070793 n 0000 | a stone obelisk built in Washington in 1884 to honor George Washington; 555 feet tall -04555291 06 n 01 washroom 0 001 @ 04446276 n 0000 | a lavatory (particularly a lavatory in a public place) -04555400 06 n 02 washstand 1 wash-hand_stand 0 001 @ 03405725 n 0000 | furniture consisting of a table or stand to hold a basin and pitcher of water for washing: `wash-hand stand' is a British term -04555600 06 n 01 washtub 0 001 @ 04493381 n 0000 | a tub in which clothes or linens can be washed -04555700 06 n 05 wastepaper_basket 0 waste-paper_basket 0 wastebasket 0 waste_basket 0 circular_file 0 001 @ 03094503 n 0000 | a container with an open top; for discarded paper and other rubbish -04555897 06 n 02 watch 0 ticker 1 013 @ 04437953 n 0000 + 02175578 v 0201 ~ 02708433 n 0000 %p 03142679 n 0000 ~ 03197337 n 0000 %p 03313602 n 0000 ~ 03549350 n 0000 %p 03795758 n 0000 ~ 03909516 n 0000 ~ 03973839 n 0000 ~ 04314107 n 0000 %p 04556533 n 0000 ~ 04607869 n 0000 | a small portable timepiece -04556204 06 n 05 watchband 0 watchstrap 0 wristband 1 watch_bracelet 0 bracelet 1 001 @ 02784218 n 0000 | a band of cloth or leather or metal links attached to a wristwatch and wrapped around the wrist -04556408 06 n 01 watch_cap 0 001 @ 02954340 n 0000 | a knitted dark blue wool cap worn by seamen in cold or stormy weather -04556533 06 n 01 watch_case 0 002 @ 02974697 n 0000 #p 04555897 n 0000 | the metal case in which the works of a watch are housed -04556664 06 n 01 watch_glass 1 001 @ 03206908 n 0000 | laboratory glassware; a shallow glass dish used as an evaporating surface or to cover a beaker -04556816 06 n 01 watch_key 0 001 @ 04586581 n 0000 | winder consisting of a key with a square hole; used for winding some watches -04556948 06 n 01 watchtower 0 002 @ 04460130 n 0000 ~ 03347617 n 0000 | an observation tower for a lookout to watch over prisoners or watch for fires or enemies -04557111 06 n 01 water_back 0 003 @ 04560113 n 0000 #p 03346455 n 0000 #p 03102371 n 0000 | water heater consisting of a tank or pipes set at the back of a fireplace or in the firebox of a stove -04557308 06 n 01 water-base_paint 0 007 @ 03875218 n 0000 ~ 02938321 n 0000 ~ 02975994 n 0000 ~ 03646020 n 0000 ~ 04407257 n 0000 ~ 04553389 n 0000 ~ 04558804 n 0000 | paint in which water is used as the vehicle -04557522 06 n 01 water_bed 0 001 @ 02818832 n 0000 | a bed with a mattress made of strong plastic that is filled with water -04557648 06 n 01 water_bottle 0 002 @ 02876657 n 0000 ~ 03690851 n 0000 | a bottle for holding water -04557751 06 n 01 water_butt 0 001 @ 02927608 n 0000 | a butt set on end to contain water especially to store rainwater -04557872 06 n 02 water_cannon 0 watercannon 0 001 @ 03539875 n 0000 | a hose (carried on a truck) that fires water under high pressure to disperse crowds (especially crowds of rioters) -04558059 06 n 01 water_cart 0 002 @ 02970849 n 0000 ~ 04560502 n 0000 | cart with a tank for water (especially with fresh water for sale) -04558199 06 n 01 water_chute 0 001 @ 03029603 n 0000 | chute with flowing water down which toboggans and inner tubes and people slide into a pool -04558347 06 n 03 water_clock 0 clepsydra 0 water_glass 2 001 @ 03046257 n 0000 | clock that measures time by the escape of water -04558478 06 n 04 water_closet 0 closet 1 W.C. 0 loo 0 001 @ 04446276 n 0000 | a toilet in Britain -04558578 06 n 04 watercolor 0 water-color 0 watercolour 0 water-colour 0 006 @ 03876519 n 0000 + 10770545 n 0302 + 10770545 n 0101 + 01696435 v 0102 ~ 03449103 n 0000 ~ 04553245 n 0000 | a painting produced with watercolors -04558804 06 n 04 watercolor 1 water-color 1 watercolour 1 water-colour 1 004 @ 04557308 n 0000 + 10770545 n 0302 + 01696435 v 0102 ~ 03449217 n 0000 | a water-base paint (with water-soluble pigments); used by artists -04559023 06 n 01 water-cooled_reactor 0 003 @ 03834040 n 0000 ~ 02864122 n 0000 ~ 04001661 n 0000 | nuclear reactor using water as a coolant -04559166 06 n 01 water_cooler 0 001 @ 03183080 n 0000 | a device for cooling and dispensing drinking water -04559275 06 n 02 watercourse 0 waterway 0 005 @ 04564698 n 0000 ~ 02947212 n 0000 ~ 03369866 n 0000 ~ 03505015 n 0000 ~ 04385669 n 0000 | a conduit through which water flows -04559451 06 n 04 water_faucet 0 water_tap 0 tap 0 hydrant 1 003 @ 03325088 n 0000 @ 03969259 n 0000 + 10691764 n 0301 | a faucet for drawing water from a pipe or cask -04559620 06 n 01 water_filter 0 001 @ 03339643 n 0000 | a filter to remove impurities from the water supply -04559730 06 n 03 water_gauge 0 water_gage 0 water_glass 1 002 @ 03429288 n 0000 ~ 04561010 n 0000 | gauge for indicating the level of water in e.g. a tank or boiler or reservoir -04559910 06 n 01 water_glass 0 001 @ 03438257 n 0000 | a glass for drinking water -04559994 06 n 01 water_hazard 0 001 @ 03501152 n 0000 | hazard provided by ponds of water that the golfer must avoid -04560113 06 n 03 water_heater 0 hot-water_heater 0 hot-water_tank 0 003 @ 03508101 n 0000 @ 04388743 n 0000 ~ 04557111 n 0000 | a heater and storage tank to supply heated water -04560292 06 n 02 watering_can 0 watering_pot 0 003 @ 03094503 n 0000 %p 03485997 n 0000 %p 04287153 n 0000 | a container with a handle and a spout with a perforated nozzle; used to sprinkle water over plants -04560502 06 n 01 watering_cart 0 001 @ 04558059 n 0000 | water cart with a tank and sprinkler for sprinkling roads -04560619 06 n 01 water_jacket 0 001 @ 04531098 n 0000 | a container filled with water that surrounds a machine to cool it; especially that surrounding the cylinder block of an engine -04560804 06 n 01 water_jug 0 001 @ 03603722 n 0000 | a jug that holds water -04560882 06 n 01 water_jump 0 002 @ 03982060 n 0000 @ 03839795 n 0000 | a pool or stream in a steeplechase or similar contest -04561010 06 n 01 water_level 0 001 @ 04559730 n 0000 | a water gauge that shows the level by showing the surface of the water in a trough or U-shaped tube -04561167 06 n 01 water_main 0 002 @ 03711145 n 0000 #p 04562658 n 0000 | main (a pipe or conduit) for conveying water -04561287 06 n 01 water_meter 0 001 @ 03753077 n 0000 | meter for measuring the quantity of water passing through a particular outlet -04561422 06 n 01 water_mill 0 003 @ 03765561 n 0000 %p 03767203 n 0000 %p 04563204 n 0000 | a mill powered by a water wheel -04561548 06 n 04 water_pistol 0 water_gun 0 squirt_gun 0 squirter 0 003 @ 03964744 n 0000 + 01313411 v 0401 + 01375637 v 0401 | plaything consisting of a toy pistol that squirts water -04561734 06 n 01 waterproof 2 003 @ 03309808 n 0000 + 01398941 a 0102 + 01354405 v 0101 | any fabric impervious to water -04561857 06 n 01 waterproofing 0 001 @ 03058107 n 0000 | a coating capable of making a surface waterproof -04561965 06 n 01 water_pump 0 002 @ 04021798 n 0000 #p 03102859 n 0000 | the pump in the cooling system of an automobile that cause the water to circulate -04562122 06 n 03 water_scooter 0 sea_scooter 0 scooter 3 002 @ 03790230 n 0000 + 02061495 v 0303 | a motorboat resembling a motor scooter -04562262 06 n 01 water_ski 0 002 @ 04228054 n 0000 + 01940248 v 0101 | broad ski for skimming over water towed by a speedboat -04562390 06 n 02 waterskin 0 water_skin 0 001 @ 04230221 n 0000 | a container of skin for holding water -04562496 06 n 01 waterspout 0 001 @ 03089014 n 0000 | a channel through which water is discharged (especially one used for drainage from the gutters of a roof) -04562658 06 n 03 water_system 0 water_supply 0 water 0 004 @ 03315023 n 0000 #p 03569964 n 0000 %p 04078747 n 0000 %p 04561167 n 0000 | a facility that provides a source of water; "the town debated the purification of the water supply"; "first you have to cut off the water" -04562935 06 n 01 water_tower 0 001 @ 04078574 n 0000 | a large reservoir for water -04563020 06 n 02 water_wagon 0 water_waggon 0 001 @ 04543158 n 0000 | a wagon that carries water (as for troops or work gangs or to sprinkle down dusty dirt roads in the summertime) -04563204 06 n 02 waterwheel 0 water_wheel 0 005 @ 04574999 n 0000 #p 04561422 n 0000 %p 02909870 n 0000 ~ 03767203 n 0000 ~ 03829954 n 0000 | a wheel that rotates by direct action of water; a simple turbine -04563413 06 n 02 waterwheel 1 water_wheel 1 001 @ 04574999 n 0000 | a wheel with buckets attached to its rim; raises water from a stream or pond -04563560 06 n 01 water_wings 0 002 @ 03663531 n 0000 ;u 06295235 n 0000 | a life preserver consisting of a connected pair of inflatable bags that fit under a person's arms and provide buoyancy; used by children learning to swim -04563790 06 n 01 waterworks 0 002 @ 04602044 n 0000 ;u 06295235 n 0000 | workplace where water is stored and purified and distributed for a community -04563942 06 n 02 WATS 0 WATS_line 0 001 @ 04402057 n 0000 | a telephone line;long distance service at fixed rates for fixed zones; an acronym for wide area telephone service -04564118 06 n 01 wattle 0 003 @ 03391770 n 0000 + 01655639 v 0101 + 01518343 v 0101 | framework consisting of stakes interwoven with branches to form a fence -04564278 06 n 01 wattmeter 0 001 @ 03733925 n 0000 | an instrument for measuring in watts the flow of power in an electrical circuit -04564413 06 n 02 waveguide 0 wave_guide 0 002 @ 03088707 n 0000 #p 04039848 n 0000 | a hollow metal conductor that provides a path to guide microwaves; used in radar -04564581 06 n 02 waxwork 0 wax_figure 0 001 @ 03265874 n 0000 | an effigy (usually of a famous person) made of wax -04564698 06 n 01 way 0 010 @ 00021939 n 0000 #p 04473432 n 0000 ~ 02671062 n 0000 ~ 03640589 n 0000 ~ 03895293 n 0000 ~ 03899328 n 0000 ~ 04096066 n 0000 ~ 04298308 n 0000 ~ 04559275 n 0000 %p 04565233 n 0000 | any artifact consisting of a road or path affording passage from one place to another; "he said he was looking for the way out" -04565039 06 n 03 ways 0 shipway 0 slipway 0 002 @ 04341686 n 0000 #p 04197235 n 0000 | structure consisting of a sloping way down to the water from the place where ships are built or repaired -04565233 06 n 02 wayside 0 roadside 0 002 @ 03264542 n 0000 #p 04564698 n 0000 | edge of a way or road or path; "flowers along the wayside" -04565375 06 n 03 weapon 0 arm 1 weapon_system 0 024 @ 03574816 n 0000 #p 04566257 n 0000 + 02334867 v 0201 + 01087197 v 0201 + 00584954 v 0101 ~ 02879718 n 0000 ~ 02880393 n 0000 ~ 02892948 n 0000 ~ 03347191 n 0000 ~ 03356559 n 0000 ~ 03467984 n 0000 ~ 03624134 n 0000 ~ 03665851 n 0000 ~ 03773504 n 0000 ~ 03935450 n 0000 ~ 04008634 n 0000 ~ 04234160 n 0000 ~ 04239639 n 0000 ~ 04270891 n 0000 ~ 04346157 n 0000 ~ 04373894 n 0000 ~ 04449966 n 0000 ~ 04565963 n 0000 ~ 14891255 n 0000 | any instrument or instrumentality used in fighting or hunting; "he was licensed to carry a weapon" -04565963 06 n 03 weapon_of_mass_destruction 0 WMD 0 W.M.D. 0 006 @ 04565375 n 0000 ;c 08199025 n 0000 ~ 02842303 n 0000 ~ 03013162 n 0000 ~ 03834604 n 0000 ~ 14853210 n 0000 | a weapon that kills or injures civilian as well as military personnel (nuclear and chemical and biological weapons) -04566257 06 n 05 weaponry 0 arms 0 implements_of_war 0 weapons_system 0 munition 0 010 @ 03575240 n 0000 + 02334756 v 0501 ~ 02703275 n 0000 ~ 02738031 n 0000 ~ 02866578 n 0000 ~ 03171228 n 0000 ~ 03469832 n 0000 ~ 03493664 n 0000 ~ 03812924 n 0000 %p 04565375 n 0000 | weapons considered collectively -04566561 06 n 01 weapons_carrier 0 003 @ 03764276 n 0000 @ 04170037 n 0000 ;c 08199025 n 0000 | military vehicle that is a light truck designed to carry mortars or machine guns and their crews -04566756 06 n 01 weathercock 0 001 @ 04568069 n 0000 | weathervane with a vane in the form of a rooster -04566862 06 n 02 weather_deck 0 shelter_deck 0 005 @ 04514738 n 0000 %p 03382413 n 0000 ~ 03982642 n 0000 %p 04031770 n 0000 ~ 04455835 n 0000 | upper deck having no overhead protection from the weather, but sheltering the deck below -04567098 06 n 01 weatherglass 0 001 @ 02794156 n 0000 | a simple barometer for indicating changes in atmospheric pressure -04567222 06 n 02 weather_map 0 weather_chart 0 005 @ 03720163 n 0000 ;c 06118563 n 0000 ~ 04590416 n 0000 %p 08589351 n 0000 %p 08590172 n 0000 | (meteorology) a map showing the principal meteorological elements at a given time and over an extended region -04567480 06 n 01 weather_radar 0 001 @ 04039848 n 0000 | radar that is able to detect clouds and precipitation -04567593 06 n 02 weather_satellite 0 meteorological_satellite 0 001 @ 04137444 n 0000 | a satellite that transmits frequent picture of the earth below -04567746 06 n 01 weather_ship 0 001 @ 04530566 n 0000 | an oceangoing vessel equipped to make meteorological observations -04567870 06 n 04 weather_strip 0 weatherstrip 0 weather_stripping 0 weatherstripping 0 001 @ 04339291 n 0000 | a narrow strip of material to cover the joint of a door or window to exclude the cold -04568069 06 n 04 weathervane 0 weather_vane 0 vane 0 wind_vane 0 003 @ 03736970 n 0000 ~ 04566756 n 0000 ~ 04591249 n 0000 | mechanical device attached to an elevated structure; rotates freely to show the direction of the wind -04568298 06 n 01 weave 0 010 @ 03178782 n 0000 + 01673891 v 0101 + 01518924 v 0101 ~ 03011162 n 0000 ~ 03849538 n 0000 ~ 03954012 n 0000 ~ 04138671 n 0000 ~ 04503269 n 0000 %p 04551950 n 0000 %p 04598965 n 0000 | pattern of weaving or structure of a fabric -04568557 06 n 02 web 0 entanglement 0 003 @ 04474466 n 0000 + 02678287 v 0201 ~ 04275548 n 0000 | an intricate trap that entangles or ensnares its victim -04568713 06 n 01 web 1 002 @ 03309808 n 0000 + 01672168 v 0101 | a fabric (especially a fabric in the process of being woven) -04568841 06 n 01 webbing 0 002 @ 03309808 n 0000 + 01672168 v 0101 | a strong fabric woven in strips -04568944 06 n 01 webbing 1 001 @ 04391569 n 0000 | a narrow closely woven tape; used in upholstery or for seat belts -04569063 06 n 01 webcam 0 001 @ 03196062 n 0000 | a digital camera designed to take digital photographs and transmit them over the internet -04569205 06 n 01 wedding_picture 0 001 @ 03925226 n 0000 | photographs of bride and groom and their friends taken at their wedding -04569338 06 n 02 wedding_ring 0 wedding_band 0 001 @ 04092609 n 0000 | a ring (usually plain gold) given to the bride (and sometimes one is also given to the groom) at the wedding -04569520 06 n 01 wedge 0 008 @ 03566329 n 0000 + 01527271 v 0101 ~ 02764505 n 0000 ~ 03073384 n 0000 ~ 03779884 n 0000 ~ 03967788 n 0000 ~ 04036004 n 0000 ~ 04193883 n 0000 | something solid that is usable as an inclined plane (shaped like a V) that can be pushed between two things to separate them -04569822 06 n 01 wedge 4 004 @ 03585073 n 0000 ;c 00464894 n 0000 ~ 03950537 n 0000 ~ 04135024 n 0000 | (golf) an iron with considerable loft and a broad sole -04569983 06 n 02 wedge_heel 0 wedge 3 002 @ 03511426 n 0000 #p 04570118 n 0000 | a heel that is an extension of the sole of the shoe -04570118 06 n 01 wedgie 0 002 @ 04199027 n 0000 %p 04569983 n 0000 | a shoe with a wedge heel -04570214 06 n 01 Wedgwood 0 002 @ 03992703 n 0000 ;u 06851742 n 0000 | a type of pottery made by Josiah Wedgwood and his successors; typically has a classical decoration in white on a blue background -04570416 06 n 02 weeder 0 weed-whacker 0 002 @ 03489162 n 0000 + 00313171 v 0101 | a hand tool for removing weeds -04570532 06 n 02 weeds 0 widow's_weeds 0 002 @ 03419014 n 0000 ;u 06295235 n 0000 | a black garment (dress) worn by a widow as a sign of mourning -04570680 06 n 02 weed 1 mourning_band 0 001 @ 02784218 n 0000 | a black band worn by a man (on the arm or hat) as a sign of mourning -04570815 06 n 01 weekender 0 002 @ 02773838 n 0000 + 02707987 v 0101 | a small suitcase to carry clothing and accessories for a weekend trip -04570958 06 n 01 weighbridge 0 001 @ 04141975 n 0000 | platform scale flush with a roadway for weighing vehicles and cattle etc -04571088 06 n 01 weight 0 008 @ 00021939 n 0000 + 01487311 v 0103 ~ 02860239 n 0000 ~ 03118539 n 0000 ~ 03679986 n 0000 ~ 03714610 n 0000 ~ 03887797 n 0000 ~ 04223778 n 0000 | an artifact that is heavy -04571292 06 n 03 weight 1 free_weight 0 exercising_weight 0 003 @ 04285146 n 0000 ~ 02790996 n 0000 ~ 03255030 n 0000 | sports equipment used in calisthenic exercises and weightlifting; it is not attached to anything and is raised and lowered by use of the hands and arms -04571566 06 n 01 weir 0 001 @ 03160309 n 0000 | a low dam built across a stream to raise its level or divert its flow -04571686 06 n 01 weir 1 001 @ 03327234 n 0000 | a fence or wattle built across a stream to catch or retain fish -04571800 06 n 01 welcome_wagon 0 001 @ 04576211 n 0000 | a wheeled vehicle carrying information and gifts from local merchants for new residents in an area -04571958 06 n 01 weld 0 003 @ 03600977 n 0000 + 01595830 v 0101 ~ 04286960 n 0000 | a metal joint formed by softening with heat and fusing or hammering together -04572121 06 n 01 welder's_mask 0 001 @ 03725035 n 0000 | a mask that you wear for protection when doing welding -04572235 06 n 01 weldment 0 002 @ 02749790 n 0000 + 01595830 v 0101 | an assembly of parts welded together -04572344 06 n 01 well 0 006 @ 03302121 n 0000 ~ 02744634 n 0000 ~ 03243903 n 0000 ~ 03426984 n 0000 ~ 03845360 n 0000 ~ 04354287 n 0000 | a deep hole or shaft dug or drilled to obtain water or oil or gas or brine -04572559 06 n 01 well 1 003 @ 03079741 n 0000 ~ 02838577 n 0000 ~ 04023119 n 0000 | an enclosed compartment in a ship or plane for holding something as e.g. fish or a plane's landing gear or for protecting something as e.g. a ship's pumps -04572800 06 n 01 well 2 002 @ 04182890 n 0000 ~ 04298661 n 0000 | an open shaft through the floors of a building (as for a stairway) -04572935 06 n 01 well 3 002 @ 04531098 n 0000 ~ 03572321 n 0000 | a cavity or vessel used to contain liquid -04573045 06 n 01 wellhead 0 001 @ 04341686 n 0000 | a structure built over a well -04573129 06 n 02 well_point 0 wellpoint 0 001 @ 04493505 n 0000 | a perforated tube driven into the ground to collect water from the surrounding area -04573281 06 n 01 welt 0 002 @ 04160372 n 0000 + 00187415 v 0101 | a raised or strengthened seam -04573379 06 n 02 Weston_cell 0 cadmium_cell 0 002 @ 04301474 n 0000 ;u 06851742 n 0101 | a standard voltaic cell (trademark Weston) -04573513 06 n 01 wet_bar 0 001 @ 02789487 n 0000 | a bar for mixing drinks that has a sink with running water -04573625 06 n 01 wet-bulb_thermometer 0 003 @ 04421872 n 0000 #p 04017571 n 0000 ! 03251100 n 0101 | a thermometer with a bulb that is covered with moist muslin; used in a psychrometer to measure humidity -04573832 06 n 01 wet_cell 0 001 @ 04540761 n 0000 | a primary voltaic cell having a liquid electrolyte -04573937 06 n 01 wet_fly 0 002 @ 03373237 n 0000 ! 03251932 n 0101 | fisherman's fly that floats under the surface of the water -04574067 06 n 01 wet_suit 0 001 @ 03419014 n 0000 | a close-fitting garment made of a permeable material; worn in cold water (as by skin divers) to retain body heat -04574234 06 n 02 whacker 0 whopper 0 001 @ 04424418 n 0000 | something especially big or impressive of its kind -04574348 06 n 01 whaleboat 0 001 @ 04158807 n 0000 | a long narrow boat designed for quick turning and use in rough seas -04574471 06 n 02 whaler 0 whaling_ship 0 003 @ 04194289 n 0000 + 01141938 v 0101 ~ 03316873 n 0000 | a ship engaged in whale fishing -04574606 06 n 01 whaling_gun 0 001 @ 03467984 n 0000 | a gun (or device resembling a gun) for discharging a projectile (especially a harpoon) at a whale -04574761 06 n 01 Wheatstone_bridge 0 001 @ 02899808 n 0000 | a bridge used to measure resistances -04574861 06 n 01 wheat_future 0 001 @ 03408721 n 0000 | wheat bought or sold at an agreed price for delivery at a specified future date -04574999 06 n 01 wheel 0 030 @ 03700963 n 0000 #p 04576211 n 0000 + 01935476 v 0105 + 02046441 v 0101 + 01887020 v 0101 ~ 02777402 n 0000 ~ 02836035 n 0000 ~ 02912319 n 0000 ~ 02973236 n 0000 ~ 02974003 n 0000 ~ 03160001 n 0000 ~ 03244919 n 0000 %p 03326660 n 0000 ~ 03430551 n 0000 ~ 03460147 n 0000 ~ 03490649 n 0000 ~ 03832144 n 0000 ~ 03874293 n 0000 ~ 03944341 n 0000 ~ 03992509 n 0000 ~ 04055447 n 0000 %p 04092305 n 0000 ~ 04101701 n 0000 ~ 04113194 n 0000 ~ 04115144 n 0000 ~ 04289690 n 0000 ~ 04491545 n 0000 ~ 04543772 n 0000 ~ 04563204 n 0000 ~ 04563413 n 0000 | a simple machine consisting of a circular frame with spokes (or a solid disc) that can rotate on a shaft or axle (as in vehicles or other machines) -04575723 06 n 01 wheel 1 001 @ 03512911 n 0000 | a circular helm to control the rudder of a vessel -04575824 06 n 01 wheel_and_axle 0 001 @ 03525074 n 0000 | hoist so arranged that a rope unwinding from a wheel is wound onto a cylindrical drum or shaft coaxial with the wheel -04576002 06 n 01 wheelchair 0 003 @ 03001627 n 0000 ~ 02806762 n 0000 ~ 03790953 n 0000 | a movable chair mounted on large wheels; for invalids or those who cannot walk; frequently propelled by the occupant -04576211 06 n 01 wheeled_vehicle 0 023 @ 04524313 n 0000 @ 03094503 n 0000 %p 02764779 n 0000 ~ 02766534 n 0000 ~ 02834778 n 0000 ~ 02869563 n 0000 %p 02889425 n 0000 ~ 02959942 n 0000 ~ 03484083 n 0000 ~ 03538634 n 0000 ~ 03791053 n 0000 ~ 04103364 n 0000 ~ 04149374 n 0000 ~ 04170037 n 0000 ~ 04225987 n 0000 %p 04281571 n 0000 ~ 04467099 n 0000 ~ 04482393 n 0000 ~ 04509417 n 0000 ~ 04543158 n 0000 ~ 04543509 n 0000 ~ 04571800 n 0000 %p 04574999 n 0000 | a vehicle that moves on wheels and usually has a container for transporting things or people; "the oldest known wheeled vehicles were found in Sumer and Syria and date from around 3500 BC" -04576861 06 n 01 wheel_lock 0 001 @ 03469493 n 0000 | an obsolete gunlock using flint and a revolving wheel -04576971 06 n 01 wheelwork 0 002 @ 03736970 n 0000 ~ 03431745 n 0000 | mechanical device including an arrangement of wheel in a machine (especially a train of gears) -04577139 06 n 01 wherry 1 001 @ 03199901 n 0000 | light rowboat for use in racing or for transporting goods and passengers in inland waters and harbors -04577293 06 n 02 wherry 2 Norfolk_wherry 0 002 @ 02792552 n 0000 ;r 08860123 n 0000 | sailing barge used especially in East Anglia -04577426 06 n 01 whetstone 0 003 @ 04326084 n 0000 ~ 03530511 n 0000 ~ 03845107 n 0000 | a flat stone for sharpening edged tools or knives -04577567 06 n 03 whiffletree 0 whippletree 0 swingletree 0 001 @ 03135917 n 0000 | a crossbar that is attached to the traces of a draft horse and to the vehicle or implement that the horse is pulling -04577769 06 n 01 whip 0 013 @ 03574816 n 0000 + 01411085 v 0103 ~ 02985606 n 0000 ~ 03124313 n 0000 %p 03134496 n 0000 ~ 03539754 n 0000 ~ 03627819 n 0000 %p 03643907 n 0000 ~ 04035748 n 0000 ~ 04089836 n 0000 ~ 04149968 n 0000 %p 04321804 n 0000 ~ 04332987 n 0000 | an instrument with a handle and a flexible lash that is used for whipping -04578112 06 n 01 whipcord 1 001 @ 03309808 n 0000 | a strong worsted or cotton fabric with a diagonal rib -04578220 06 n 01 whipcord 2 001 @ 03106110 n 0000 | closely twisted hard cord used for the lashes of whips -04578329 06 n 01 whipping_post 0 001 @ 03988170 n 0000 | post formerly used in public to which offenders are tied to be whipped -04578459 06 n 02 whipping_top 0 whip_top 0 001 @ 04454240 n 0000 | a top that is spun by whipping -04578559 06 n 03 whipstitch 0 whipping 0 whipstitching 0 002 @ 04180314 n 0000 ~ 03863442 n 0000 | a sewing stitch passing over an edge diagonally -04578708 06 n 01 whirler 0 002 @ 03738472 n 0000 + 02046755 v 0103 | a revolving mechanism -04578801 06 n 02 whisk 0 whisk_broom 0 002 @ 02906734 n 0000 + 01435254 v 0101 | a small short-handled broom used to brush clothes -04578934 06 n 01 whisk 1 001 @ 03775199 n 0000 | a mixer incorporating a coil of wires; used for whipping eggs or cream -04579056 06 n 01 whiskey_bottle 0 001 @ 02876657 n 0000 | a bottle for holding whiskey -04579145 06 n 01 whiskey_jug 0 001 @ 03603722 n 0000 | a jug that contains whiskey -04579230 06 n 02 whispering_gallery 0 whispering_dome 0 001 @ 03220513 n 0000 | a space beneath a dome or arch in which sounds produced at certain points are clearly audible at certain distant points -04579432 06 n 01 whistle 1 005 @ 02676261 n 0000 @ 04217718 n 0000 ~ 02859829 n 0000 ~ 03316988 n 0000 ~ 04310721 n 0000 | acoustic device that forces air or steam against an edge or into a cavity and so produces a loud shrill sound -04579667 06 n 01 whistle 2 001 @ 04586932 n 0000 | a small wind instrument that produces a whistling sound by blowing into it -04579795 06 n 03 whistle_stop 0 flag_stop 0 way_station 0 001 @ 04049098 n 0000 | a small railway station between the principal stations or a station where the train stops only on a signal -04579986 06 n 01 white 1 004 @ 03716327 n 0000 ;c 00503237 n 0000 ;c 00502952 n 0000 ! 02846260 n 0101 | (board games) the lighter pieces -04580126 06 n 02 white_flag 0 flag_of_truce 0 001 @ 03354903 n 0000 | flag consisting of a piece of white cloth that is hoisted to signal surrender or to ask for a truce -04580298 06 n 02 white_goods 0 household_linen 0 004 @ 03252064 n 0000 ~ 03585875 n 0000 ~ 03648219 n 0000 ~ 03672352 n 0000 | drygoods for household use that are typically made of white cloth -04580493 06 n 01 white_goods 1 007 @ 03528263 n 0000 ;u 06295235 n 0000 ~ 03050655 n 0000 ~ 03207941 n 0000 ~ 03273740 n 0000 ~ 04070727 n 0000 ~ 04554684 n 0000 | large electrical home appliances (refrigerators or washing machines etc.) that are typically finished in white enamel -04580777 06 n 01 White_House 0 004 @i 04079244 n 0000 @i 03449564 n 0000 #p 09070793 n 0000 %p 03862531 n 0000 | the government building that serves as the residence and office of the President of the United States -04580994 06 n 01 white_tie 0 001 @ 02883205 n 0000 | bow tie worn as part of a man's formal evening dress -04581102 06 n 01 whitewash 0 002 @ 04553389 n 0000 + 01269702 v 0101 | wash consisting of lime and size in water; used for whitening walls and other surfaces -04581262 06 n 02 whizbang 0 whizzbang 0 001 @ 03345115 n 0000 | a firecracker that (like the whizbang shell) makes a whizzing sound followed by a loud explosion -04581425 06 n 03 whizbang 1 whizzbang 1 whizbang_shell 0 001 @ 04190464 n 0000 | a small high-velocity shell; it makes a whizzing sound followed by a bang when it hits -04581595 06 n 09 whorehouse 0 brothel 0 bordello 0 bagnio 0 house_of_prostitution 0 house_of_ill_repute 0 bawdyhouse 0 cathouse 0 sporting_house 0 002 @ 02913152 n 0000 ~ 03726233 n 0000 | a building where prostitutes are available -04581829 06 n 02 wick 0 taper 1 004 @ 03106110 n 0000 #p 03844045 n 0000 #p 02948072 n 0000 ~ 02948719 n 0000 | a loosely woven cord (in a candle or oil lamp) that draws fuel by capillary action up into the flame -04582044 06 n 01 wick 1 001 @ 03106110 n 0000 | any piece of cord that conveys liquid by capillary action; "the physician put a wick in the wound to drain it" -04582205 06 n 03 wicker 0 wickerwork 0 caning 0 001 @ 04599396 n 0000 | work made of interlaced slender branches (especially willow branches) -04582349 06 n 01 wicker_basket 0 002 @ 02801938 n 0000 ~ 03883385 n 0000 | a basket made of wickerwork -04582454 06 n 03 wicket 0 lattice 1 grille 2 002 @ 03848729 n 0000 %p 04346003 n 0000 | small opening (like a window in a door) through which business can be transacted -04582625 06 n 03 wicket 1 wicket_door 0 wicket_gate 0 001 @ 03427296 n 0000 | small gate or door (especially one that is part of a larger door) -04582771 06 n 02 wicket 2 hoop 2 001 @ 03134853 n 0000 | a small arch used as croquet equipment -04582869 06 n 01 wicket 3 001 @ 03132261 n 0000 | cricket equipment consisting of a set of three stumps topped by crosspieces; used in playing cricket -04583022 06 n 02 wickiup 0 wikiup 0 001 @ 03685307 n 0000 | a lodge consisting of a frame covered with matting or brush; used by nomadic American Indians in the southwestern United States -04583212 06 n 02 wide-angle_lens 0 fisheye_lens 0 001 @ 02943241 n 0000 | a camera lens having a wider than normal angle of view (and usually a short focal length); produces an image that is foreshortened in the center and increasingly distorted in the periphery -04583477 06 n 02 wide_area_network 0 WAN 0 001 @ 03085333 n 0000 | a computer network that spans a wider area than does a local area network -04583620 06 n 04 widebody_aircraft 0 wide-body_aircraft 0 wide-body 0 twin-aisle_airplane 0 001 @ 02690373 n 0000 | a commercial airliner with two aisles -04583776 06 n 01 wide_screen 0 001 @ 04152829 n 0000 | a projection screen that is much wider than it is high -04583888 06 n 01 wide_wale 0 001 @ 03106722 n 0000 | corduroy with wide ribs -04583967 06 n 01 widow's_walk 0 001 @ 03688943 n 0000 | a lookout atop a coastal house -04584056 06 n 02 Wiffle 0 Wiffle_Ball 0 003 @ 02778669 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | (trademark) a hollow plastic ball with cutouts -04584207 06 n 01 wig 0 004 @ 03476083 n 0000 ~ 03461037 n 0000 ~ 03538957 n 0000 ~ 03917327 n 0000 | hairpiece covering the head and made of real or synthetic hair -04584373 06 n 01 wigwam 0 001 @ 03685307 n 0000 | a Native American lodge frequently having an oval shape and covered with bark or hides -04584512 06 n 01 wild_card 0 001 @ 03963982 n 0000 | a playing card whose value can be determined by the person who holds it -04584639 06 n 02 wildcat_well 0 wildcat 0 002 @ 03845360 n 0000 + 00878438 a 0201 | an exploratory oil well drilled in land not known to be an oil field -04584794 06 n 01 willow 0 001 @ 04417180 n 0000 | a textile machine having a system of revolving spikes for opening and cleaning raw textile fibers -04584944 06 n 02 willowware 0 willow-pattern 0 001 @ 03018493 n 0000 | chinaware decorated with a blue Chinese design on a white background depicting a willow tree and often a river -04585128 06 n 02 Wilton 0 Wilton_carpet 0 001 @ 04118021 n 0000 | a carpet woven on a Jacquard loom with loops like a Brussels carpet but having the loops cut to form a close velvety pile -04585318 06 n 01 wimple 0 001 @ 03502509 n 0000 | headdress of cloth; worn over the head and around the neck and ears by medieval women -04585456 06 n 01 wincey 0 002 @ 03309808 n 0000 ;r 08860123 n 0000 | a plain or twilled fabric of wool and cotton used especially for warm shirts or skirts and pajamas -04585626 06 n 01 winceyette 0 002 @ 03357267 n 0000 ;r 08860123 n 0000 | cotton flannelette with a nap on both sides -04585745 06 n 02 winch 0 windlass 0 005 @ 03664675 n 0000 #p 04194289 n 0000 + 01592306 v 0101 ~ 02957252 n 0000 ~ 04611470 n 0000 | lifting device consisting of a horizontal cylinder turned by a crank on which a cable or rope winds -04585980 06 n 01 Winchester 0 002 @ 04090263 n 0000 ;u 06851742 n 0000 | a shoulder rifle -04586072 06 n 02 windbreak 0 shelterbelt 0 001 @ 03511175 n 0000 | hedge or fence of trees designed to lessen the force of the wind and reduce erosion -04586225 06 n 02 wind_chime 0 wind_bell 0 001 @ 03169390 n 0000 | a decorative arrangement of pieces of metal or glass or pottery that hang together loosely so the wind can cause them to tinkle -04586421 06 n 01 winder 0 004 @ 03736970 n 0000 + 01522276 v 0101 ~ 02860415 n 0000 ~ 04067472 n 0000 | mechanical device around which something can be wound -04586581 06 n 02 winder 1 key 2 003 @ 03736970 n 0000 + 01522052 v 0101 ~ 04556816 n 0000 | mechanical device used to wind another device that is driven by a spring (as a clock) -04586761 06 n 03 wind_farm 0 wind_park 0 wind_energy_facility 0 002 @ 03996655 n 0000 %p 04591517 n 0000 | a power plant that uses wind turbines to generate electricity -04586932 06 n 02 wind_instrument 0 wind 0 013 @ 03800933 n 0000 %p 02824858 n 0000 ~ 02891788 n 0000 ~ 03393324 n 0000 ~ 03609397 n 0000 %p 03794798 n 0000 ~ 03840681 n 0000 ~ 03854065 n 0000 ~ 03854815 n 0000 ~ 03945615 n 0000 ~ 03989777 n 0000 ~ 04579667 n 0000 ~ 04598582 n 0000 | a musical instrument in which the sound is produced by an enclosed column of air that is moved by the breath -04587327 06 n 01 windjammer 0 001 @ 04128837 n 0000 | a large sailing ship -04587404 06 n 03 windmill 0 aerogenerator 0 wind_generator 0 002 @ 03433877 n 0000 %p 02848523 n 0000 | generator that extracts usable energy from winds -04587559 06 n 01 windmill 1 001 @ 03765561 n 0000 | a mill that is powered by the wind -04587648 06 n 01 window 0 031 @ 03391770 n 0000 #p 02913152 n 0000 ~ 02813399 n 0000 ~ 02976455 n 0000 %p 02977619 n 0000 ~ 03041810 n 0000 ~ 03211789 n 0000 ~ 03224603 n 0000 ~ 03224753 n 0000 ~ 03227010 n 0000 ~ 03227184 n 0000 ~ 03320959 n 0000 ~ 03637898 n 0000 ~ 03692842 n 0000 %p 03798268 n 0000 ~ 03841290 n 0000 %p 03881893 n 0000 ~ 03932080 n 0000 ~ 03952150 n 0000 ~ 03986562 n 0000 ~ 04110178 n 0000 %p 04136510 n 0000 %p 04136800 n 0000 ~ 04137089 n 0000 ~ 04232800 n 0000 ~ 04239333 n 0000 ~ 04297750 n 0000 ~ 04329958 n 0000 ~ 04473108 n 0000 %p 04589593 n 0000 %p 04589745 n 0000 | a framework of wood or metal that contains a glass windowpane and is built into a wall or roof to admit light or air -04588365 06 n 01 window 1 004 @ 03848729 n 0000 #p 02958343 n 0000 #p 02924116 n 0000 ~ 02974219 n 0000 | a transparent opening in a vehicle that allow vision out of the sides or back; usually is capable of being opened -04588587 06 n 01 window 2 002 @ 03882058 n 0000 #p 04589434 n 0000 | a transparent panel (as of an envelope) inserted in an otherwise opaque material -04588739 06 n 01 window 3 005 @ 03211117 n 0000 #p 03085602 n 0000 ;c 06128570 n 0000 ~ 03187268 n 0000 ~ 03382708 n 0000 | (computer science) a rectangular part of a computer screen that contains a display different from the rest of the screen -04588986 06 n 01 window 5 002 @ 03848729 n 0000 ~ 04432538 n 0000 | an opening in a wall or screen that admits light and air and through which customers can be served; "he stuck his head in the window" -04589190 06 n 01 window_blind 0 003 @ 02851099 n 0000 ~ 04525584 n 0000 ~ 04590129 n 0000 | a blind for privacy or to keep out light -04589325 06 n 01 window_box 0 001 @ 02883344 n 0000 | a long narrow box for growing plants on a windowsill -04589434 06 n 01 window_envelope 0 002 @ 03291819 n 0000 %p 04588587 n 0000 | an envelope with a transparent panel that reveals the address on the enclosure -04589593 06 n 01 window_frame 0 004 @ 03391770 n 0000 #p 04587648 n 0000 %p 03592773 n 0000 %p 04590263 n 0000 | the framework that supports a window -04589745 06 n 02 windowpane 0 window 4 002 @ 03881893 n 0000 #p 04587648 n 0000 | a pane of glass in a window; "the ball shattered the window" -04589890 06 n 01 window_screen 0 001 @ 04151581 n 0000 | screen to keep insects from entering a building through the open window -04590021 06 n 01 window_seat 0 001 @ 02828884 n 0000 | a bench or similar seat built into a window recess -04590129 06 n 01 window_shade 0 002 @ 04589190 n 0000 ~ 04102285 n 0000 | an opaque window blind that can cover or uncover a window -04590263 06 n 01 windowsill 0 002 @ 04220036 n 0000 #p 04589593 n 0000 | the sill of a window; the horizontal member at the bottom of the window frame -04590416 06 n 01 wind_rose 0 001 @ 04567222 n 0000 | weather map showing the frequency and strength of winds from different directions -04590553 06 n 02 windshield 0 windscreen 0 004 @ 04151581 n 0000 #p 03791235 n 0000 #p 02691156 n 0000 #p 03790230 n 0000 | transparent screen (as of glass) to protect occupants of a vehicle -04590746 06 n 04 windshield_wiper 0 windscreen_wiper 0 wiper 0 wiper_blade 0 003 @ 03736970 n 0000 #p 03791235 n 0000 + 01392237 v 0301 | a mechanical device that cleans the windshield -04590933 06 n 01 Windsor_chair 0 001 @ 04331277 n 0000 | straight chair having a shaped seat and a back of many spindles -04591056 06 n 01 Windsor_knot 0 001 @ 04241042 n 0000 | a wide triangular slipknot for tying a tie -04591157 06 n 01 Windsor_tie 0 001 @ 03815615 n 0000 | a wide necktie worn in a loose bow -04591249 06 n 01 wind_tee 0 001 @ 04568069 n 0000 | weather vane shaped like a T and located at an airfield -04591359 06 n 01 wind_tunnel 0 001 @ 04341686 n 0000 | a structure resembling a tunnel where air is blown at known velocities for testing parts of aircraft -04591517 06 n 01 wind_turbine 0 002 @ 04498523 n 0000 #p 04586761 n 0000 | a turbine that is driven by the wind -04591631 06 n 01 wine_bar 0 001 @ 02789487 n 0000 | a bar that serves only wine -04591713 06 n 01 wine_bottle 0 006 @ 02876657 n 0000 ~ 02876457 n 0000 %p 03108853 n 0000 ~ 03595409 n 0000 ~ 03709363 n 0000 ~ 03813946 n 0000 | a bottle for holding wine -04591887 06 n 02 wine_bucket 0 wine_cooler 0 001 @ 02909870 n 0000 | a bucket of ice used to chill a bottle of wine -04592005 06 n 02 wine_cask 0 wine_barrel 0 001 @ 02795169 n 0000 | a barrel that holds wine -04592099 06 n 01 wineglass 0 003 @ 03438257 n 0000 ~ 03372549 n 0000 %p 04184095 n 0000 | a glass that has a stem and in which wine is served -04592243 06 n 01 wineglass_heel 0 001 @ 03511426 n 0000 | a heel on a woman's shoe in the shape of a wineglass -04592356 06 n 01 winepress 0 001 @ 03999992 n 0000 | a press that is used to extract the juice from grapes -04592465 06 n 02 winery 0 wine_maker 0 003 @ 03212811 n 0000 + 01176567 v 0101 + 01190840 v 0101 | distillery where wine is made -04592596 06 n 01 wineskin 0 001 @ 04230221 n 0000 | an animal skin (usually a goatskin) that forms a bag and is used to hold and dispense wine -04592741 06 n 01 wing 0 006 @ 02688443 n 0000 #p 02691156 n 0000 + 01940403 v 0102 %p 02685253 n 0000 %p 03357716 n 0000 %p 04087126 n 0000 | one of the horizontal airfoils on either side of the fuselage of an airplane -04592962 06 n 03 wing 3 offstage 0 backstage 0 001 @ 04296562 n 0000 | a stage area out of sight of the audience -04593077 06 n 01 wing_chair 0 001 @ 03262932 n 0000 | easy chair having wings on each side of a high back -04593185 06 n 05 wing_nut 0 wing-nut 0 wing_screw 0 butterfly_nut 0 thumbnut 0 001 @ 03836191 n 0000 | a threaded nut with winglike projections for thumb and forefinger leverage in turning -04593376 06 n 01 wing_tip 0 002 @ 04444749 n 0000 #p 04593524 n 0000 | a decorative toecap having a point extending toward the throat of the shoe -04593524 06 n 01 wing_tip 1 002 @ 04199027 n 0000 %p 04593376 n 0000 | a shoe having a wing-tip toecap -04593629 06 n 03 winker 0 blinker 1 blinder 0 003 @ 02851099 n 0000 + 02168555 v 0301 + 01337819 v 0201 | blind consisting of a leather eyepatch sewn to the side of the halter that prevents a horse from seeing something on either side -04593866 06 n 03 wiper 1 wiper_arm 0 contact_arm 0 004 @ 03093792 n 0000 #p 04086794 n 0000 #p 04169437 n 0000 + 01392237 v 0101 | contact consisting of a conducting arm that rotates over a series of fixed contacts and comes to rest on an outlet -04594114 06 n 01 wiper_motor 0 001 @ 03273061 n 0000 | electric motor that moves the windshield wiper -04594218 06 n 01 wire 0 009 @ 03664943 n 0000 + 03145054 a 0101 + 01599325 v 0101 + 01599052 v 0101 ~ 02778588 n 0000 ~ 02790823 n 0000 ~ 03501068 n 0000 ~ 03928994 n 0000 ~ 04485586 n 0000 | ligament made of metal and used to fasten things or make cages or fences etc -04594489 06 n 02 wire 1 conducting_wire 0 008 @ 03088707 n 0000 + 02354536 v 0101 + 00505802 v 0102 ~ 03336575 n 0000 ~ 03604843 n 0000 ~ 03651605 n 0000 ~ 03898129 n 0000 ~ 04402984 n 0000 | a metal conductor that carries electricity over a distance -04594742 06 n 01 wire_cloth 0 001 @ 03309808 n 0000 | fabric woven of metallic wire -04594828 06 n 01 wire_cutter 0 001 @ 03265032 n 0000 | an edge tool used in cutting wire -04594919 06 n 02 wire_gauge 0 wire_gage 0 001 @ 03429288 n 0000 | gauge for measuring the diameter of wire -04595028 06 n 04 wireless_local_area_network 0 WLAN 0 wireless_fidelity 0 WiFi 0 001 @ 03681477 n 0000 | a local area network that uses high frequency radio signals to transmit and receive data over distances of a few hundred feet; uses ethernet protocol -04595285 06 n 03 wire_matrix_printer 0 wire_printer 0 stylus_printer 0 002 @ 03225777 n 0000 @ 03563200 n 0000 | an impact printer in which each character is represented by a pattern of dots made by wires or styli -04595501 06 n 01 wire_recorder 0 001 @ 03707597 n 0000 | an early type of magnetic recorder using iron wire -04595611 06 n 01 wire_stripper 0 001 @ 03489162 n 0000 | a hand tool used by electricians to remove insulation from the cut end of an insulated wire -04595762 06 n 02 wirework 0 grillwork 0 001 @ 03819595 n 0000 | mesh netting made of wires -04595855 06 n 01 wiring 0 003 @ 03033362 n 0000 + 02354536 v 0101 ~ 03666238 n 0000 | a circuit of wires for the distribution of electricity -04595998 06 n 01 wiring_diagram 0 001 @ 04145578 n 0000 | a schematic drawing of the wiring of an electrical system -04596116 06 n 01 wishing_cap 0 001 @ 02954340 n 0000 | a magical cap that secures whatever one wishes for -04596224 06 n 02 witch_hazel 0 wych_hazel 0 001 @ 03691128 n 0000 | lotion consisting of an astringent alcoholic solution containing an extract from the witch hazel plant -04596397 06 n 01 withe 0 001 @ 02784998 n 0000 | band or rope made of twisted twigs or stems -04596492 06 n 02 witness_box 0 witness_stand 0 002 @ 02884011 n 0000 #p 03120778 n 0000 | a box enclosure for a witness when testifying -04596630 06 n 01 wobbler 0 003 @ 04424218 n 0000 + 01884974 v 0102 + 01869003 v 0101 | something that wobbles -04596742 06 n 01 wok 0 001 @ 03880531 n 0000 | pan with a convex bottom; used for frying in Chinese cooking -04596852 06 n 01 woman's_clothing 0 007 @ 03051540 n 0000 ~ 02697221 n 0000 ~ 02892767 n 0000 ~ 03236735 n 0000 ~ 03464053 n 0000 ~ 03817647 n 0000 ~ 04453666 n 0000 | clothing that is designed for women to wear -04597066 06 n 01 wood 2 005 @ 03446070 n 0000 ~ 02892626 n 0000 ~ 03244047 n 0000 ~ 03752398 n 0000 ~ 04284341 n 0000 | a golf club with a long shaft used to hit long shots; originally made with a wooden head; "metal woods are now standard" -04597309 06 n 01 woodcarving 0 001 @ 02973558 n 0000 | a carving created by carving wood -04597400 06 n 01 wood_chisel 0 001 @ 03020692 n 0000 | a chisel for working wood; it is either struck with a mallet or pushed by hand -04597536 06 n 03 woodcut 0 wood_block 0 wood_engraving 0 001 @ 03289025 n 0000 | engraving consisting of a block of wood with a design cut into it; used to make prints -04597706 06 n 02 woodcut 1 wood_engraving 1 001 @ 03289268 n 0000 | a print made from a woodcut -04597804 06 n 01 woodenware 0 002 @ 04550840 n 0000 ~ 04597913 n 0000 | ware for domestic use made of wood -04597913 06 n 01 wooden_spoon 0 002 @ 04284002 n 0000 @ 04597804 n 0000 | a spoon made of wood -04598010 06 n 01 wooden_spoon 1 002 @ 02869965 n 0000 ;r 08860123 n 0000 | a booby prize consisting of a spoon made of wood -04598136 06 n 01 woodscrew 0 003 @ 04153751 n 0000 ~ 03633886 n 0000 ~ 04154753 n 0000 | a metal screw that tapers to a point so that it can be driven into wood with a screwdriver -04598318 06 n 01 woodshed 0 001 @ 04187547 n 0000 | a shed for storing firewood or garden tools -04598416 06 n 03 wood_vise 0 woodworking_vise 0 shoulder_vise 0 001 @ 04538552 n 0000 | a vise with jaws that are padded in order to hold lumber without denting it -04598582 06 n 03 woodwind 0 woodwind_instrument 0 wood 1 005 @ 04586932 n 0000 ~ 02817799 n 0000 %p 03341850 n 0000 ~ 03372029 n 0000 %p 04431158 n 0000 | any wind instrument other than the brass instruments -04598792 06 n 01 woodwork 0 004 @ 04599396 n 0000 ~ 02933649 n 0000 ~ 03600722 n 0000 ~ 03767363 n 0000 | work made of wood; especially moldings or stairways or furniture -04598965 06 n 04 woof 0 weft 0 filling 0 pick 2 003 @ 04426788 n 0000 #p 04568298 n 0000 #s 03309808 n 0000 | the yarn woven across the warp yarn in weaving -04599124 06 n 01 woofer 0 001 @ 03691459 n 0000 | a loudspeaker that reproduces lower audio frequency sounds -04599235 06 n 03 wool 0 woolen 0 woollen 0 004 @ 03309808 n 0000 #s 04502502 n 0000 + 03130689 a 0302 + 03130689 a 0201 | a fabric made from the hair of sheep -04599396 06 n 02 work 0 piece_of_work 0 019 @ 04007894 n 0000 + 02525447 v 0101 + 02413480 v 0101 ~ 03377582 n 0000 ~ 03485655 n 0000 ~ 03586760 n 0000 ~ 03631710 n 0000 ~ 03631922 n 0000 ~ 03653376 n 0000 ~ 03727605 n 0000 ~ 03752521 n 0000 ~ 03849679 n 0000 ~ 03979100 n 0000 ~ 04221586 n 0000 ~ 04582205 n 0000 ~ 04598792 n 0000 ~ 04601587 n 0000 ~ 04601938 n 0000 ~ 06589574 n 0000 | a product produced or accomplished through the effort or activity or agency of a person or thing; "it is not regarded as one of his more memorable works"; "the symphony was hailed as an ingenious work"; "he was indebted to the pioneering work of John Dewey"; "the work of an active imagination"; "erosion is the work of wind or water over time" -04600131 06 n 02 worldly_possession 0 worldly_good 0 001 @ 03076708 n 0000 | a commodity or good associated with the earthly, rather than the spiritual, existence of human beings -04600312 06 n 03 workbasket 0 workbox 0 workbag 0 002 @ 03094503 n 0000 ~ 04179712 n 0000 | container for holding implements and materials for work (especially for sewing) -04600486 06 n 03 workbench 0 work_bench 0 bench 1 002 @ 04603729 n 0000 ~ 03630262 n 0000 | a strong worktable for a carpenter or mechanic -04600627 06 n 02 workboard 0 work-board 0 001 @ 02856463 n 0000 | a horizontal board that provides a supported surface for manual work -04600764 06 n 03 work_camp 0 prison_camp 0 prison_farm 0 001 @ 02945379 n 0000 | a camp for trustworthy prisoners employed in government projects -04600912 06 n 02 work-clothing 0 work-clothes 0 002 @ 03051540 n 0000 ~ 03863108 n 0000 | clothing worn for doing manual labor -04601041 06 n 01 workhouse 1 001 @ 03592245 n 0000 | a county jail that holds prisoners for periods up to 18 months -04601159 06 n 01 workhouse 2 002 @ 03982895 n 0000 ;r 08860123 n 0000 | a poorhouse where able-bodied poor are compelled to labor -04601291 06 n 01 workhorse 0 001 @ 03699975 n 0000 | machine that performs dependably under heavy use; "the IBM main frame computers have been the workhorse of the business world" -04601473 06 n 02 working 0 workings 2 001 @ 03302121 n 0000 | a mine or quarry that is being or has been worked -04601587 06 n 01 work_in_progress 0 001 @ 04599396 n 0000 | a piece of work that is not yet finished -04601690 06 n 01 work_of_art 0 006 @ 02743547 n 0000 ~ 03709454 n 0000 ~ 03838535 n 0000 ~ 03897520 n 0000 ~ 03916581 n 0000 ~ 04551638 n 0000 | art that is a product of one of the fine arts (especially a painting or sculpture of artistic merit) -04601938 06 n 01 workpiece 0 001 @ 04599396 n 0000 | work consisting of a piece of metal being machined -04602044 06 n 02 workplace 0 work 1 034 @ 08578706 n 0000 ~ 02776631 n 0000 ~ 02823030 n 0000 ~ 02905288 n 0000 ~ 02994858 n 0000 ~ 03070396 n 0000 ~ 03128868 n 0000 ~ 03241236 n 0000 ~ 03302487 n 0000 ~ 03322099 n 0000 ~ 03350880 n 0000 ~ 03351036 n 0000 ~ 03383646 n 0000 ~ 03427084 n 0000 ~ 03439260 n 0000 ~ 03586911 n 0000 ~ 03599628 n 0000 ~ 03629986 n 0000 ~ 03648066 n 0000 ~ 03682189 n 0000 %p 03683708 n 0000 ~ 03697265 n 0000 ~ 03869976 n 0000 ~ 04016133 n 0000 ~ 04109104 n 0000 ~ 04114428 n 0000 ~ 04197235 n 0000 ~ 04203514 n 0000 ~ 04344246 n 0000 ~ 04344544 n 0000 ~ 04390759 n 0000 ~ 04415078 n 0000 ~ 04563790 n 0000 ~ 04603081 n 0000 | a place where work is done; "he arrived at work early today" -04602762 06 n 01 workroom 0 001 @ 04105893 n 0000 | room where work is done -04602840 06 n 02 works 0 workings 1 002 @ 03738472 n 0000 ;u 06295235 n 0000 | the internal mechanism of a device -04602956 06 n 01 work-shirt 0 002 @ 04197391 n 0000 @ 04603872 n 0000 | heavy-duty shirts worn for manual or physical work -04603081 06 n 02 workshop 0 shop 1 012 @ 04602044 n 0000 ~ 02840515 n 0000 ~ 02870772 n 0000 ~ 02898478 n 0000 ~ 03025641 n 0000 ~ 03260206 n 0000 ~ 03701947 n 0000 ~ 03992888 n 0000 ~ 04005090 n 0000 ~ 04124488 n 0000 ~ 04192361 n 0000 ~ 04500390 n 0000 | small workplace where handcrafts or manufacturing are done -04603399 06 n 01 workstation 0 001 @ 03196324 n 0000 | a desktop digital computer that is conventionally considered to be more powerful than a microcomputer -04603558 06 n 01 work_surface 0 003 @ 04362025 n 0000 ~ 04381860 n 0000 ~ 04608127 n 0000 | a horizontal surface for supporting objects used in working or playing games -04603729 06 n 02 worktable 0 work_table 0 003 @ 04379243 n 0000 ~ 03231368 n 0000 ~ 04600486 n 0000 | a table designed for a particular task -04603872 06 n 01 workwear 0 003 @ 02728440 n 0000 ~ 03594734 n 0000 ~ 04602956 n 0000 | heavy-duty clothes for manual or physical work -04604009 06 n 03 World_Trade_Center 0 WTC 0 twin_towers 0 003 @i 04233124 n 0000 #p 09119277 n 0000 ;c 00759694 n 0000 | twin skyscrapers 110 stories high in New York City; built 1368 feet tall in 1970 to 1973; destroyed by a terrorist attack on September 11, 2001 -04604276 06 n 03 World_Wide_Web 0 WWW 0 web 2 001 @ 03085333 n 0000 | computer network consisting of a collection of internet sites that offer text and graphics and sound and animation resources through the hypertext transfer protocol -04604513 06 n 01 worm 0 002 @ 04153751 n 0000 #p 04604806 n 0000 | screw thread on a gear with the teeth of a worm wheel or rack -04604644 06 n 04 worm_fence 0 snake_fence 0 snake-rail_fence 0 Virginia_fence 0 001 @ 04046974 n 0000 | rail fence consisting of a zigzag of interlocking rails -04604806 06 n 01 worm_gear 0 003 @ 03430551 n 0000 %p 04604513 n 0000 %p 04605057 n 0000 | gear consisting of a shaft with screw thread (the worm) that meshes with a toothed wheel (the worm wheel); changes the direction of the axis of rotary motion -04605057 06 n 01 worm_wheel 0 002 @ 03430551 n 0000 #p 04604806 n 0000 | gear with the thread of a worm -04605163 06 n 01 worsted 0 001 @ 03309808 n 0000 | a woolen fabric with a hard textured surface and no nap; woven of worsted yarns "he wore a worsted suit" -04605321 06 n 02 worsted 1 worsted_yarn 0 001 @ 04426788 n 0000 | a tightly twisted woolen yarn spun from long-staple wool -04605446 06 n 02 wrap 0 wrapper 0 002 @ 03045337 n 0000 + 01283208 v 0201 | cloak that is folded or wrapped around a person -04605572 06 n 01 wraparound 0 001 @ 03419014 n 0000 | a garment (as a dress or coat) with a full length opening; adjusts to the body by wrapping around -04605726 06 n 03 wrapping 0 wrap 1 wrapper 2 009 @ 03122748 n 0000 + 01283208 v 0301 + 01580467 v 0204 + 01283208 v 0201 ~ 03291741 n 0000 ~ 03339296 n 0000 ~ 03436549 n 0000 ~ 03590306 n 0000 ~ 03958752 n 0000 | the covering (usually paper or cellophane) in which something is wrapped -04606014 06 n 05 wreath 0 garland 0 coronal 0 chaplet 0 lei 0 004 @ 03368141 n 0000 + 01669643 v 0201 ~ 03138856 n 0000 ~ 03648804 n 0000 | flower arrangement consisting of a circular band of foliage or flowers for ornamental purposes -04606251 06 n 01 wreck 0 002 @ 04194289 n 0000 + 01566185 v 0102 | a ship that has been destroyed at sea -04606358 06 n 01 wreckage 0 004 @ 03892891 n 0000 + 01566185 v 0102 ~ 03367875 n 0000 ~ 03633474 n 0000 | the remaining parts of something that has been wrecked; "they searched the wreckage for signs of survivors" -04606574 06 n 02 wrench 0 spanner 0 020 @ 03489162 n 0000 + 01349493 v 0101 ~ 02680754 n 0000 ~ 02697675 n 0000 ~ 02697876 n 0000 ~ 02886434 n 0000 ~ 02888429 n 0000 ~ 02916065 n 0000 ~ 02969527 n 0000 ~ 03218446 n 0000 ~ 03533845 n 0000 %p 03594277 n 0000 ~ 03696746 n 0000 ~ 03848168 n 0000 ~ 03944530 n 0000 ~ 04154854 n 0000 ~ 04255346 n 0000 ~ 04269502 n 0000 ~ 04393913 n 0000 ~ 04457910 n 0000 | a hand tool that is used to hold or twist a nut or bolt -04607035 06 n 01 wrestling_mat 0 001 @ 03727946 n 0000 | a mat on which wrestling matches are conducted -04607141 06 n 01 wrestling_ring 0 001 @ 04092959 n 0000 | a square ring in which wrestlers compete -04607242 06 n 01 wringer 0 002 @ 03050655 n 0000 + 01350971 v 0101 | a clothes dryer consisting of two rollers between which the wet clothes are squeezed -04607398 06 n 01 wristband 0 002 @ 02784218 n 0000 #p 04236377 n 0000 | band consisting of a part of a sleeve that covers the wrist -04607532 06 n 02 wristlet 0 wrist_band 0 001 @ 02784218 n 0000 | a band or bracelet worn around the wrist -04607640 06 n 01 wrist_pad 0 001 @ 04015204 n 0000 | protective garment consisting of a pad worn by football players -04607759 06 n 02 wrist_pin 0 gudgeon_pin 0 001 @ 03940256 n 0000 | pin joining a piston to a connecting rod -04607869 06 n 02 wristwatch 0 wrist_watch 0 001 @ 04555897 n 0000 | a watch that is worn strapped to the wrist -04607982 06 n 01 writing_arm 0 002 @ 02737660 n 0000 #p 04381450 n 0000 | an arm of a tablet-armed chair; widened to provide a writing surface -04608127 06 n 01 writing_board 0 003 @ 04603558 n 0000 ~ 03044418 n 0000 ~ 03642341 n 0000 | work surface consisting of a wide lightweight board that can be placed across the lap and used for writing -04608329 06 n 01 writing_desk 0 001 @ 03179701 n 0000 | a desk for writing (usually with a sloping top) -04608435 06 n 01 writing_desk 1 001 @ 02974697 n 0000 | a portable case containing writing materials and having a writing surface -04608567 06 n 01 writing_implement 0 009 @ 03563967 n 0000 ~ 03003091 n 0000 ~ 03007824 n 0000 ~ 03128248 n 0000 ~ 03155915 n 0000 ~ 03722007 n 0000 ~ 03906997 n 0000 ~ 03908204 n 0000 ~ 04227519 n 0000 | an implement that is used to write -04608809 06 n 01 xerographic_printer 0 001 @ 03874823 n 0000 | a page printer that uses the xerographic process -04608923 06 n 03 Xerox 0 xerographic_copier 0 Xerox_machine 0 002 @ 03257586 n 0000 + 01736299 v 0103 | a duplicator (trade mark Xerox) that copies graphic matter by the action of light on an electrically charged photoconductive insulating surface in which the latent image is developed with a resinous powder -04609235 06 n 02 xerox 1 xerox_copy 0 002 @ 03104594 n 0000 + 01736299 v 0103 | a copy made by a xerographic printer -04609354 06 n 03 X-OR_circuit 0 XOR_circuit 0 XOR_gate 0 001 @ 03427656 n 0000 | gate for exclusive OR; a circuit in a computer that fires only if only one of its inputs fire -04609531 06 n 01 X-ray_film 0 002 @ 03338821 n 0000 ~ 02845293 n 0000 | photographic film used to make X-ray pictures -04609651 06 n 01 X-ray_machine 0 004 @ 02727825 n 0000 ~ 03370646 n 0000 ~ 04450243 n 0000 %p 04609811 n 0000 | an apparatus that provides a source of X rays -04609811 06 n 01 X-ray_tube 0 002 @ 04494204 n 0000 #p 04609651 n 0000 | a vacuum tube containing a metal target onto which a beam of electrons is directed at high energy for the generation of X rays -04610013 06 n 02 yacht 0 racing_yacht 0 002 @ 04530566 n 0000 + 01945381 v 0101 | an expensive vessel propelled by sail or power and used for cruising or racing -04610176 06 n 01 yacht_chair 0 001 @ 03376595 n 0000 | a light folding armchair for outdoor use -04610274 06 n 02 yagi 0 Yagi_aerial 0 001 @ 03204955 n 0000 | a sharply directional antenna -04610368 06 n 02 Yale_University 0 Yale 0 003 @i 04511002 n 0000 #p 09069415 n 0000 #m 08232706 n 0000 | a university in Connecticut -04610503 06 n 01 yard 0 005 @ 03285912 n 0000 ~ 02793930 n 0000 ~ 03016737 n 0000 ~ 03323211 n 0000 ~ 04325208 n 0000 | an enclosure for animals (as chicken or livestock) -04610676 06 n 01 yard 1 004 @ 04267577 n 0000 #p 04128837 n 0000 ~ 03713069 n 0000 %p 04611351 n 0000 | a long horizontal spar tapered at the end and used to support and spread a square sail or lateen -04610879 06 n 03 yard 2 grounds 0 curtilage 0 007 @ 08569998 n 0000 ~ 02772197 n 0000 ~ 03224387 n 0000 ~ 03399852 n 0000 ~ 03417749 n 0000 ~ 03963645 n 0000 ~ 04216013 n 0000 | the enclosed land around a house or other building; "it was a small house with almost no yard" -04611154 06 n 03 yard 3 railway_yard 0 railyard 0 002 @ 08673395 n 0000 ~ 03723653 n 0000 | an area having a network of railway tracks and sidings for storage and maintenance of cars and engines -04611351 06 n 01 yardarm 0 002 @ 08566028 n 0000 #p 04610676 n 0000 | either end of the yard of a square-rigged ship -04611470 06 n 02 yarder 0 yard_donkey 0 001 @ 04585745 n 0000 | a winch (or system of winches) powered by an engine and used to haul logs from a stump to a landing or to a skid road -04611654 06 n 02 yard_goods 0 piece_goods 0 002 @ 03748886 n 0000 ;u 06295235 n 0000 | merchandise in the form of fabrics sold by the yard -04611795 06 n 01 yard_marker 0 002 @ 03721797 n 0000 ;c 00468480 n 0000 | (football) a marker indicating the yard line -04611916 06 n 02 yardstick 0 yard_measure 0 001 @ 04118776 n 0000 | a ruler or tape that is three feet long -04612026 06 n 03 yarmulke 0 yarmulka 0 yarmelke 0 001 @ 04232153 n 0000 | a skullcap worn by religious Jews (especially at prayer) -04612159 06 n 02 yashmak 0 yashmac 0 001 @ 03502331 n 0000 | the face veil worn by Muslim women -04612257 06 n 01 yataghan 0 001 @ 03624134 n 0000 | a long Turkish knife with a curved blade having a single edge -04612373 06 n 02 yawl 0 dandy 0 001 @ 04128837 n 0000 | a sailing vessel with two masts; a small mizzen is aft of the rudderpost -04612504 06 n 01 yawl 1 002 @ 04244997 n 0000 ~ 03602081 n 0000 | a ship's small boat (usually rowed by 4 or 6 oars) -04612623 06 n 01 yellow_jack 0 001 @ 03354903 n 0000 | yellow flag hoist on a ship in quarantine -04612722 06 n 02 yield 0 fruit 0 003 @ 04007894 n 0000 + 02291708 v 0101 + 01629000 v 0102 | an amount of a product -04612840 06 n 01 yoke 0 003 @ 04295081 n 0000 + 01492052 v 0101 + 01490958 v 0101 | stable gear that joins two draft animals at the neck so they can work together as a team -04613015 06 n 01 yoke 1 003 @ 03309808 n 0000 #p 03419014 n 0000 ~ 04495183 n 0000 | fabric comprising a fitted part at the top of a garment -04613158 06 n 02 yoke 2 coupling 1 004 @ 03091374 n 0000 + 01292885 v 0203 + 01492052 v 0101 + 01492283 v 0101 | a connection (like a clamp or vise) between two things so they move together -04613350 06 n 01 yoke 3 003 @ 04359589 n 0000 + 01490958 v 0101 + 01492052 v 0101 | support consisting of a wooden frame across the shoulders that enables a person to carry buckets hanging from each end -04613555 06 n 01 yo-yo 0 001 @ 03964744 n 0000 | a toy consisting of a spool that is reeled up and down on a string by motions of the hand -04613696 06 n 01 yurt 0 001 @ 03259505 n 0000 | a circular domed dwelling that is portable and self-supporting; originally used by nomadic Mongol and Turkic people of central Asia but now used as inexpensive alternative or temporary housing -04613939 06 n 01 Zamboni 0 002 @ 03699975 n 0000 ;u 06845599 n 0101 | the trademark for a machine that smooths the ice in an ice-skating rink -04614083 06 n 01 zapper 0 002 @ 03269401 n 0000 + 01325288 v 0101 | an electrical device that can injure or kill by means of electric currents; "a bug zapper" -04614244 06 n 01 zarf 0 002 @ 03525454 n 0000 ;r 08791167 n 0000 | an ornamental metal cup-shaped holder for a hot coffee cup -04614372 06 n 02 zeppelin 0 Graf_Zeppelin 0 001 @i 02692877 n 0000 | a large rigid dirigible designed to carry passengers or bombs -04614505 06 n 01 zero 0 001 @ 04217200 n 0000 | the sight setting that will cause a projectile to hit the center of the target with no wind blowing -04614655 06 n 03 ziggurat 0 zikkurat 0 zikurat 0 002 @ 04407686 n 0000 ~i 04460634 n 0000 | a rectangular tiered temple or terraced mound erected by the ancient Assyrians and Babylonians -04614844 06 n 01 zill 0 001 @ 03157348 n 0000 | one of a pair of small metallic cymbals worn on the thumb and middle finger; used in belly dancing in rhythm with the dance -04615018 06 n 01 zinc_ointment 0 001 @ 03845550 n 0000 | an ointment containing zinc that is used to treat certain skin diseases -04615149 06 n 01 zip_gun 0 001 @ 03948459 n 0000 | a crude homemade pistol -04615226 06 n 03 zither 0 cither 0 zithern 0 002 @ 04338517 n 0000 ~ 03254737 n 0000 | a musical stringed instrument with strings stretched over a flat sounding board; it is laid flat and played with a plectrum and with fingers -04615456 06 n 01 zodiac 0 003 @ 03186399 n 0000 ;c 05778131 n 0000 + 03132560 a 0101 | (astrology) a circular diagram representing the 12 zodiacal constellations and showing their signs -04615644 06 n 01 zoot_suit 0 001 @ 04350905 n 0000 | a flashy suit of extreme cut -04615728 06 n 01 ramp 1 002 @ 04298308 n 0000 + 02334595 v 0101 | a movable staircase that passengers use to board or leave an aircraft -04615866 07 n 01 human_nature 0 001 @ 00024264 n 0000 | the shared psychological attributes of humankind that are assumed to be shared by all human beings; "a great observer of human nature" -04616059 07 n 01 trait 0 043 @ 00024264 n 0000 #p 04617562 n 0000 ~ 04620216 n 0000 ~ 04623113 n 0000 ~ 04625882 n 0000 ~ 04626280 n 0000 ~ 04629194 n 0000 ~ 04635104 n 0000 ~ 04635631 n 0000 ~ 04646548 n 0000 ~ 04648207 n 0000 ~ 04650527 n 0000 ~ 04651784 n 0000 ~ 04660536 n 0000 ~ 04661706 n 0000 ~ 04662951 n 0000 ~ 04663319 n 0000 ~ 04666615 n 0000 ~ 04667406 n 0000 ~ 04668819 n 0000 ~ 04670531 n 0000 ~ 04763293 n 0000 ~ 04833458 n 0000 ~ 04835028 n 0000 ~ 04835724 n 0000 ~ 04861486 n 0000 ~ 04866465 n 0000 ~ 04881623 n 0000 ~ 04884450 n 0000 ~ 04886646 n 0000 ~ 04887129 n 0000 ~ 04889527 n 0000 ~ 04890112 n 0000 ~ 04891333 n 0000 ~ 04892084 n 0000 ~ 04895246 n 0000 ~ 04895773 n 0000 ~ 04896161 n 0000 ~ 04896724 n 0000 ~ 04897762 n 0000 ~ 04905188 n 0000 ~ 04907269 n 0000 ~ 04920237 n 0000 | a distinguishing feature of your personal nature -04616916 07 n 01 character 0 003 @ 00024264 n 0000 ;c 06075527 n 0000 ~ 04617106 n 0000 | (genetics) an attribute (structural or functional) that is determined by a gene or group of genes -04617106 07 n 01 unit_character 0 002 @ 04616916 n 0000 ;c 06075527 n 0000 | (genetics) a character inherited on an all-or-none basis and dependent on the presence of a single gene -04617289 07 n 01 thing 0 001 @ 00024264 n 0000 | any attribute or quality considered as having its own existence; "the thing I like about her is ..." -04617441 07 n 01 common_denominator 0 001 @ 00024264 n 0000 | an attribute that is common to all members of a category -04617562 07 n 01 personality 0 013 @ 00024264 n 0000 #p 00007846 n 0000 + 02858816 a 0101 %p 04616059 n 0000 ~ 04618070 n 0000 ~ 04618921 n 0000 ~ 04619083 n 0000 ~ 04619420 n 0000 ~ 04619596 n 0000 ~ 04619791 n 0000 ~ 04619946 n 0000 %p 04620216 n 0000 %p 04623113 n 0000 | the complex of all the attributes--behavioral, temperamental, emotional and mental--that characterize a unique individual; "their different reactions reflected their very different personalities"; "it is his nature to help others" -04618070 07 n 03 identity 0 personal_identity 0 individuality 1 005 @ 04617562 n 0000 + 00618878 v 0101 ~ 04618359 n 0000 ~ 04618581 n 0000 ~ 04618781 n 0000 | the distinct personality of an individual regarded as a persisting entity; "you can lose your identity when you join the army" -04618359 07 n 01 gender_identity 0 001 @ 04618070 n 0000 | your identity as it is experienced with regard to your individuality as male or female; awareness normally begin in infancy and is reinforced during adolescence -04618581 07 n 01 identification 0 002 @ 04618070 n 0000 + 00691944 v 0101 | the attribution to yourself (consciously or unconsciously) of the characteristics of another person (or group of persons) -04618781 07 n 01 personhood 0 002 @ 04618070 n 0000 + 00007846 n 0101 | being a person; "finding her own personhood as a campus activist" -04618921 07 n 01 personableness 0 003 @ 04617562 n 0000 + 00168694 a 0101 %p 04652930 n 0000 | the complex of attributes that make a person socially attractive -04619083 07 n 02 anal_personality 0 anal_retentive_personality 0 002 @ 04617562 n 0000 ;c 00704305 n 0000 | (psychoanalysis) a personality characterized by meticulous neatness and suspicion and reserve; said to be formed in early childhood by fixation during the anal stage of development (usually as a consequence of toilet training) -04619420 07 n 01 genital_personality 0 002 @ 04617562 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the mature personality which is not dominated by infantile pleasure drives -04619596 07 n 01 narcissistic_personality 0 001 @ 04617562 n 0000 | personality marked by self-love and self-absorption; unrealistic views about your own qualities and little regard for others -04619791 07 n 01 obsessive-compulsive_personality 0 001 @ 04617562 n 0000 | personality characterized by a strong need to repeat certain acts or rituals -04619946 07 n 01 oral_personality 0 002 @ 04617562 n 0000 ;c 00704305 n 0000 | (psychoanalysis) a personality characterized either by generous optimism or aggressive and ambitious selfishness; formed in early childhood by fixation during the oral stage of development -04620216 07 n 03 character 1 fiber 0 fibre 0 006 @ 04616059 n 0000 #p 04617562 n 0000 ~ 04620558 n 0000 %p 04660536 n 0000 %p 04669247 n 0000 %p 04869569 n 0000 | the inherent complex of attributes that determines a persons moral and ethical actions and reactions; "education has for its object the formation of character"- Herbert Spencer -04620558 07 n 01 spirit 0 004 @ 04620216 n 0000 + 01229631 v 0101 ~ 04857083 n 0000 ~ 04860065 n 0000 | a fundamental emotional and activating principle determining one's character -04620741 07 n 01 outwardness 2 004 @ 04621738 n 0000 + 00950706 a 0101 ! 04621010 n 0101 = 00950706 a 0000 | a concern with or responsiveness to outward things (especially material objects as opposed to ideal concepts); "hearty showmanship and all-round outwardness" -04621010 07 n 02 inwardness 2 internality 0 005 @ 04621963 n 0000 + 00951247 a 0101 ! 04620741 n 0101 = 00951247 a 0000 ~ 04621314 n 0000 | preoccupation with what concerns human inner nature (especially ethical or ideological values); "Socrates' inwardness, integrity, and inquisitiveness"- H.R.Finch -04621314 07 n 04 spirituality 0 spiritualism 0 spiritism 0 otherworldliness 0 005 @ 04621010 n 0000 ! 04621524 n 0401 + 01577086 a 0402 + 10306279 n 0202 + 02579136 a 0101 | concern with things of the spirit -04621524 07 n 01 worldliness 1 003 @ 05078623 n 0000 + 02577061 a 0101 ! 04621314 n 0104 | concern with worldly affairs to the neglect of spiritual needs; "he disliked the worldliness of many bishops around him" -04621738 07 n 02 extraversion 0 extroversion 0 005 @ 04652930 n 0000 ;c 06136258 n 0000 ! 04621963 n 0101 ! 04622216 n 0101 ~ 04620741 n 0000 | (psychology) an extroverted disposition; concern with what is outside the self -04621963 07 n 01 introversion 0 007 @ 04656748 n 0000 ;c 06136258 n 0000 + 00533897 v 0101 ! 04622216 n 0101 ! 04621738 n 0101 = 01351021 a 0000 ~ 04621010 n 0000 | (psychology) an introverted disposition; concern with one's own thoughts and feelings -04622216 07 n 01 ambiversion 0 004 @ 04652930 n 0000 ;c 06136258 n 0000 ! 04621738 n 0101 ! 04621963 n 0101 | (psychology) a balanced disposition intermediate between extroversion and introversion -04622415 07 n 04 aloneness 0 loneliness 0 lonesomeness 0 solitariness 0 008 @ 04623612 n 0000 + 02250430 a 0403 + 02250430 a 0202 + 02249766 a 0101 + 02251212 a 0101 + 02214736 a 0302 ~ 04622672 n 0000 ~ 04622772 n 0000 | a disposition toward being alone -04622672 07 n 01 friendlessness 0 002 @ 04622415 n 0000 + 02528440 a 0101 | being without friends -04622772 07 n 01 reclusiveness 0 004 @ 04622415 n 0000 + 02250691 a 0102 + 01859055 a 0102 ~ 04622932 n 0000 | a disposition to prefer seclusion or isolation -04622932 07 n 03 privacy 0 privateness 0 seclusion 0 003 @ 04622772 n 0000 + 01769378 a 0201 + 01858094 a 0201 | the quality of being secluded from the presence or view of others -04623113 07 n 01 nature 1 008 @ 04616059 n 0000 #p 04617562 n 0000 = 01133876 a 0000 = 01134769 a 0000 ~ 04623443 n 0000 ~ 04623612 n 0000 ~ 04624289 n 0000 ~ 04652635 n 0000 | the complex of emotional and intellectual attributes that determine a person's characteristic actions and reactions; "it is his nature to help others" -04623443 07 n 02 animality 0 animal_nature 0 002 @ 04623113 n 0000 + 01778572 a 0101 | the physical (or animal) side of a person as opposed to the spirit or intellect -04623612 07 n 02 disposition 0 temperament 0 032 @ 04623113 n 0000 + 02810552 a 0201 = 02564986 a 0000 = 02566015 a 0000 ~ 04622415 n 0000 ~ 04624517 n 0000 ~ 04624687 n 0000 ~ 04624826 n 0000 ~ 04624959 n 0000 ~ 04625129 n 0000 ~ 04628632 n 0000 ~ 04628747 n 0000 %p 04630689 n 0000 %p 04631298 n 0000 ~ 04637722 n 0000 ~ 04637923 n 0000 ~ 04639113 n 0000 ~ 04640176 n 0000 ~ 04640927 n 0000 ~ 04641447 n 0000 ~ 04643221 n 0000 ~ 04644512 n 0000 ~ 04645599 n 0000 ~ 04654337 n 0000 ~ 04656748 n 0000 ~ 04657876 n 0000 ~ 04903813 n 0000 ~ 04904664 n 0000 ~ 05211793 n 0000 ~ 05211974 n 0000 ~ 05212168 n 0000 ~ 05212264 n 0000 | your usual mood; "he has a happy disposition" -04624289 07 n 01 complexion 1 002 @ 04623113 n 0000 ;u 07073447 n 0000 | (obsolete) a combination of elements (of dryness and warmth or of the four humors) that was once believed to determine a person's health and temperament -04624517 07 n 02 animalism 0 physicality 0 003 @ 04623612 n 0000 + 01778212 a 0201 + 02624086 a 0101 | preoccupation with satisfaction of physical drives and appetites -04624687 07 n 02 bloodiness 0 bloodthirstiness 0 003 @ 04623612 n 0000 + 00248251 a 0201 + 00247439 a 0101 | a disposition to shed blood -04624826 07 n 02 heart 4 spirit 3 001 @ 04623612 n 0000 | an inclination or tendency of a certain kind; "he had a change of heart" -04624959 07 n 01 nervousness 0 005 @ 04623612 n 0000 + 02406908 a 0101 + 00919155 a 0104 ~ 04625284 n 0000 ~ 04625716 n 0000 | a sensitive or highly strung temperament -04625129 07 n 03 esprit_de_corps 0 morale 0 team_spirit 0 001 @ 04623612 n 0000 | the spirit of a group that makes the members want the group to succeed -04625284 07 n 03 restlessness 0 uneasiness 0 queasiness 0 007 @ 04624959 n 0000 + 02456157 a 0303 + 02456157 a 0204 + 00590271 a 0101 + 01922562 a 0202 + 01922562 a 0101 ~ 04625515 n 0000 | inability to rest or relax or be still -04625515 07 n 02 jactitation 0 jactation 0 003 @ 04625284 n 0000 ;c 06060845 n 0000 + 01890792 v 0108 | (pathology) extremely restless tossing and twitching usually by a person with a severe illness -04625716 07 n 02 skittishness 0 restiveness 0 003 @ 04624959 n 0000 + 02406370 a 0208 + 00919155 a 0101 | characterized by nervousness and quickness to take fright -04625882 07 n 02 compulsiveness 0 compulsivity 0 005 @ 04616059 n 0000 + 01583659 a 0201 + 01583659 a 0101 ~ 04626062 n 0000 ~ 04626194 n 0000 | the trait of acting compulsively -04626062 07 n 02 obsessiveness 0 obsessivity 0 003 @ 04625882 n 0000 + 01585022 a 0202 + 01585022 a 0102 | extreme compulsiveness -04626194 07 n 01 workaholism 0 001 @ 04625882 n 0000 | compulsiveness about working -04626280 07 n 02 emotionality 0 emotionalism 0 019 @ 04616059 n 0000 + 00085630 a 0102 + 02983577 a 0101 + 01927279 a 0101 + 00853776 a 0101 ! 04629194 n 0101 = 00853776 a 0000 = 00856860 a 0000 = 01256332 a 0000 = 01257612 a 0000 = 02530861 a 0000 = 02531422 a 0000 ~ 04626705 n 0000 ~ 04626879 n 0000 ~ 04627000 n 0000 ~ 04627506 n 0000 ~ 04628192 n 0000 ~ 04628466 n 0000 ~ 04628850 n 0000 | emotional nature or quality -04626705 07 n 01 drama 0 005 @ 04626280 n 0000 + 00988287 v 0101 + 00988287 v 0102 = 00794825 a 0000 = 00795495 a 0000 | the quality of being arresting or highly emotional -04626879 07 n 01 demonstrativeness 0 002 @ 04626280 n 0000 + 00720296 a 0101 | tending to express your feelings freely -04627000 07 n 04 affectionateness 0 fondness 0 lovingness 0 warmth 0 006 @ 04626280 n 0000 + 01463965 a 0301 + 01464433 a 0203 + 01464700 a 0101 ~ 04627241 n 0000 ~ 04627367 n 0000 | a quality proceeding from feelings of affection or love -04627241 07 n 01 tenderness 0 002 @ 04627000 n 0000 + 01464700 a 0104 | a tendency to express warm and affectionate feeling -04627367 07 n 01 uxoriousness 0 002 @ 04627000 n 0000 + 01466476 a 0101 | foolish fondness for or excessive submissiveness to one's wife -04627506 07 n 06 mawkishness 0 sentimentality 0 drippiness 1 mushiness 1 soupiness 1 sloppiness 1 009 @ 04626280 n 0000 + 00856511 a 0602 + 00854413 a 0407 + 00854413 a 0302 + 00854413 a 020a + 00854413 a 0105 ~ 04627809 n 0000 ~ 04627936 n 0000 ~ 04628080 n 0000 | falsely emotional in a maudlin way -04627809 07 n 01 corn 0 002 @ 04627506 n 0000 + 01689223 a 0102 | something sentimental or trite; "that movie was pure corn" -04627936 07 n 03 schmaltz 0 shmaltz 0 schmalz 0 002 @ 04627506 n 0000 ;c 06951067 n 0000 | (Yiddish) excessive sentimentality in art or music -04628080 07 n 01 sentimentalism 0 002 @ 04627506 n 0000 + 10579676 n 0101 | a predilection for sentimentality -04628192 07 n 03 heat 2 warmth 2 passion 0 003 @ 04626280 n 0000 + 01761120 v 0105 ~ 04628336 n 0000 | the trait of being intensely emotional -04628336 07 n 01 fieriness 1 003 @ 04628192 n 0000 + 01726235 a 0104 + 01256735 a 0101 | a passionate and quick-tempered nature -04628466 07 n 01 temperament 2 002 @ 04626280 n 0000 + 00856325 a 0102 | excessive emotionalism or irritability and excitability (especially when displayed openly) -04628632 07 n 01 moodiness 0 002 @ 04623612 n 0000 + 00856325 a 0101 | having temperamental and changeable moods -04628747 07 n 01 blood 0 001 @ 04623612 n 0000 | temperament or disposition; "a person of hot blood" -04628850 07 n 03 excitability 0 excitableness 0 volatility 0 005 @ 04626280 n 0000 + 02292573 a 0302 + 00918779 a 0201 + 00918779 a 0101 ~ 04629030 n 0000 | being easily excited -04629030 07 n 01 boiling_point 0 001 @ 04628850 n 0000 | being highly angry or excited; ready to boil over; "after an hour of waiting I was at the boiling point" -04629194 07 n 02 unemotionality 0 emotionlessness 0 008 @ 04616059 n 0000 + 01257990 a 0201 + 00856860 a 0101 ! 04626280 n 0101 ~ 04629417 n 0000 ~ 04629604 n 0000 ~ 04630137 n 0000 ~ 04630378 n 0000 | absence of emotion -04629417 07 n 01 blandness 2 002 @ 04629194 n 0000 + 00758800 a 0104 | the trait of exhibiting no personal embarrassment or concern; "the blandness of his confession enraged the judge" -04629604 07 n 06 coldness 1 coolness 1 frigidity 0 frigidness 0 iciness 1 chilliness 1 010 @ 04629194 n 0000 + 01258264 a 0505 + 01258264 a 0401 + 01258264 a 0301 + 02531422 a 0201 + 01466775 a 0101 + 00887317 a 0101 + 01257612 a 0101 ~ 04629958 n 0000 ~ 04630547 n 0000 | a lack of affection or enthusiasm; "a distressing coldness of tone and manner" -04629958 07 n 01 stone 0 002 @ 04629604 n 0000 + 01158180 a 0105 | a lack of feeling or expression or movement; "he must have a heart of stone"; "her face was as hard as stone" -04630137 07 n 03 dispassion 0 dispassionateness 0 dryness 0 004 @ 04629194 n 0000 + 00857387 a 0301 + 01266092 a 0301 + 01723648 a 0201 | objectivity and detachment; "her manner assumed a dispassion and dryness very unlike her usual tone" -04630378 07 n 03 stoicism 0 stolidity 0 stolidness 0 004 @ 04629194 n 0000 + 00857560 a 0302 + 00857560 a 0202 + 00858558 a 0102 | an indifference to pleasure or pain -04630547 07 n 02 tepidness 1 lukewarmness 1 003 @ 04629604 n 0000 + 00887472 a 0204 + 00887472 a 0103 | lack of passion, force or animation -04630689 07 n 04 cheerfulness 0 cheer 0 sunniness 1 sunshine 0 011 @ 00024264 n 0000 #p 04623612 n 0000 + 00363938 a 0303 + 00363938 a 0201 + 00859325 v 0201 + 00859153 v 0201 + 00362467 a 0101 ! 04631298 n 0101 = 00362467 a 0000 = 00364479 a 0000 ~ 04631067 n 0000 | the quality of being cheerful and dispelling gloom; "flowers added a note of cheerfulness to the drab room" -04631067 07 n 04 good-temperedness 0 good-humoredness 0 good-humouredness 0 good-naturedness 0 005 @ 04630689 n 0000 + 01133876 a 0401 + 01134232 a 0303 + 01134232 a 0202 + 01134486 a 0103 | a cheerful willingness to be obliging -04631298 07 n 01 uncheerfulness 0 005 @ 00024264 n 0000 #p 04623612 n 0000 + 00364479 a 0103 ! 04630689 n 0101 ~ 04631470 n 0000 | not conducive to cheer or good spirits -04631470 07 n 03 gloominess 0 lugubriousness 0 sadness 0 006 @ 04631298 n 0000 + 01366277 a 0301 + 01126841 a 0305 + 01366062 a 0201 + 00703615 a 0101 + 00275764 a 0102 | the quality of excessive mournfulness and uncheerfulness -04631700 07 n 05 animation 1 spiritedness 0 invigoration 0 brio 0 vivification 0 012 @ 04635104 n 0000 + 00582145 v 0501 + 00442063 v 0302 + 00192836 v 0304 + 00028362 v 0301 + 00805309 a 0204 + 00118844 a 0202 + 02278939 a 0201 = 02278939 a 0000 = 02281325 a 0000 ~ 04632063 n 0000 ~ 04632157 n 0000 | quality of being active or spirited or alive and vigorous -04632063 07 n 01 chirpiness 0 002 @ 04631700 n 0000 + 00363621 a 0102 | cheerful and lively -04632157 07 n 04 liveliness 0 life 1 spirit 2 sprightliness 0 020 @ 04631700 n 0000 + 02280821 a 0401 + 00193130 v 0301 + 01229631 v 0301 + 02280333 a 0101 + 00874226 a 0103 + 00843595 a 0103 + 00119006 a 0102 = 00804695 a 0000 ~ 04632703 n 0000 ~ 04632866 n 0000 ~ 04632963 n 0000 ~ 04633197 n 0000 ~ 04633570 n 0000 ~ 04633716 n 0000 ~ 04633797 n 0000 ~ 04633959 n 0000 ~ 04634161 n 0000 ~ 04634540 n 0000 ~ 04634833 n 0000 | animation and energy in action or expression; "it was a heavy play and the actors tried in vain to give life to it" -04632703 07 n 01 pertness 1 002 @ 04632157 n 0000 + 02280090 a 0103 | quality of being lively and confident; "there was a pertness about her that attracted him" -04632866 07 n 02 airiness 2 delicacy 4 001 @ 04632157 n 0000 | lightness in movement or manner -04632963 07 n 03 alacrity 1 briskness 0 smartness 1 004 @ 04632157 n 0000 + 00980144 a 0301 + 00874226 a 0202 + 00977238 a 0101 | liveliness and eagerness; "he accepted with alacrity"; "the smartness of the pace soon exhausted him" -04633197 07 n 05 energy 1 muscularity 1 vigor 1 vigour 1 vim 0 003 @ 04632157 n 0000 + 00559102 v 0102 ~ 04633453 n 0000 | an imaginative lively style (especially style of writing); "his writing conveys great energy"; "a remarkable muscularity of style" -04633453 07 n 02 vitality 1 verve 0 003 @ 04633197 n 0000 + 00119006 a 0103 ~ 04953380 n 0000 | an energetic style -04633570 07 n 01 elan 0 001 @ 04632157 n 0000 | enthusiastic and assured vigor and liveliness; "a performance of great elan and sophistication" -04633716 07 n 01 esprit 0 001 @ 04632157 n 0000 | liveliness of mind or spirit -04633797 07 n 02 breeziness 0 jauntiness 2 003 @ 04632157 n 0000 + 00364145 a 0204 + 00805566 a 0101 | a breezy liveliness; "a delightful breeziness of manner" -04633959 07 n 02 irrepressibility 0 buoyancy 1 003 @ 04632157 n 0000 + 00363621 a 0201 + 00600540 a 0101 | irrepressible liveliness and good spirit; "I admired his buoyancy and persistent good humor" -04634161 07 n 01 high-spiritedness 0 004 @ 04632157 n 0000 + 02279723 a 0103 ~ 04634299 n 0000 ~ 04634415 n 0000 | exuberant liveliness -04634299 07 n 01 vivacity 0 002 @ 04634161 n 0000 + 02280969 a 0102 | characterized by high spirits and animation -04634415 07 n 01 mettlesomeness 0 003 @ 04634161 n 0000 + 02280457 a 0101 + 00263994 a 0105 | courageous high-spiritedness -04634540 07 n 03 exuberance 0 enthusiasm 0 ebullience 0 005 @ 04632157 n 0000 + 02279723 a 0301 + 00857923 v 0101 ~ 04634739 n 0000 ~ 04885784 n 0000 | overflowing with eager enjoyment or approval -04634739 07 n 01 lyricism 1 001 @ 04634540 n 0000 | unrestrained and exaggerated enthusiasm -04634833 07 n 03 pep 0 peppiness 0 ginger 0 003 @ 04632157 n 0000 + 00805309 a 0203 + 00805309 a 0103 | liveliness and energy; "this tonic is guaranteed to give you more pep" -04635010 07 n 01 inanition 1 001 @ 14017206 n 0000 | exhaustion resulting from lack of food -04635104 07 n 02 activeness 0 activity 0 012 @ 04616059 n 0000 + 00035465 a 0201 + 00038750 a 0201 + 00031974 a 0201 + 00035465 a 0101 + 00031974 a 0101 ! 04635631 n 0101 = 00031974 a 0000 = 00033574 a 0000 = 00038750 a 0000 ~ 04631700 n 0000 ~ 04635482 n 0000 | the trait of being active; moving or acting rapidly and energetically; "the level of activity declines with age" -04635482 07 n 05 dynamism 0 pizzazz 0 pizzaz 0 oomph 0 zing 0 002 @ 04635104 n 0000 + 00808191 a 0102 | the activeness of an energetic personality -04635631 07 n 03 inactiveness 0 inactivity 0 inertia 1 009 @ 04616059 n 0000 + 00039592 a 0202 + 00039592 a 0102 + 00033574 a 0101 ! 04635104 n 0101 ~ 04635953 n 0000 ~ 04636250 n 0000 ~ 04636397 n 0000 ~ 04637108 n 0000 | a disposition to remain inactive or inert; "he had to overcome his inertia and get back to work" -04635953 07 n 05 languor 0 lethargy 1 sluggishness 0 phlegm 0 flatness 1 006 @ 04635631 n 0000 + 00858340 a 0401 + 00858340 a 0402 + 00034322 a 0302 + 00875712 a 0201 + 00876204 a 0104 | inactivity; showing an unusual lack of energy; "the general appearance of sluggishness alarmed his friends" -04636250 07 n 01 restfulness 0 002 @ 04635631 n 0000 + 01922227 a 0101 | the attribute of being restful; "he longed for the restfulness of home" -04636397 07 n 02 passivity 0 passiveness 0 006 @ 04635631 n 0000 + 00039592 a 0201 + 00039592 a 0101 = 00039592 a 0000 ~ 04636610 n 0000 ~ 04636881 n 0000 | the trait of remaining inactive; a lack of initiative -04636610 07 n 04 apathy 1 indifference 0 numbness 0 spiritlessness 0 007 @ 04636397 n 0000 + 00789494 a 0402 + 02281325 a 0401 + 02107386 a 0302 + 01342949 a 0202 + 01342949 a 0101 + 02281611 a 0101 | the trait of lacking enthusiasm for or interest in things generally -04636881 07 n 04 listlessness 0 torpidity 0 torpidness 0 torpor 0 005 @ 04636397 n 0000 + 00034322 a 0304 + 00188155 a 0303 + 00188155 a 0203 + 00876465 a 0101 | inactivity resulting from lethargy and lack of vigor or energy -04637108 07 n 02 indolence 0 laziness 0 005 @ 04635631 n 0000 + 00294579 a 0203 + 00294579 a 0102 ~ 04637290 n 0000 ~ 04637571 n 0000 | inactivity resulting from a dislike of work -04637290 07 n 02 faineance 0 idleness 0 003 @ 04637108 n 0000 + 00294175 a 0201 + 00294579 a 0101 | the trait of being idle out of a reluctance to work -04637444 07 n 02 sloth 1 slothfulness 1 002 @ 04645943 n 0000 + 00294579 a 0205 | a disinclination to work or exert yourself -04637571 07 n 01 shiftlessness 0 002 @ 04637108 n 0000 + 00105197 a 0101 | a failure to be active as a consequence of lack of initiative or ambition -04637722 07 n 01 perfectionism 0 002 @ 04623612 n 0000 + 10415230 n 0101 | a disposition to feel that anything less than perfect is unacceptable; "his perfectionism seemed excessive to his students" -04637923 07 n 02 permissiveness 0 tolerance 4 008 @ 04623612 n 0000 + 01762839 a 0101 ! 04639113 n 0101 = 01762839 a 0000 = 01763445 a 0000 ~ 04638175 n 0000 ~ 04638585 n 0000 ~ 04639030 n 0000 | a disposition to allow freedom of choice and behavior -04638175 07 n 03 toleration 0 acceptance 0 sufferance 2 006 @ 04637923 n 0000 + 00668099 v 030b + 01985557 a 0202 + 00668805 v 0201 + 00668099 v 0107 ~ 04638472 n 0000 | a disposition to tolerate or accept people or situations; "all people should practice toleration and live together in peace" -04638472 07 n 01 self_acceptance 0 001 @ 04638175 n 0000 | an acceptance of yourself as you are, warts and all -04638585 07 n 03 indulgence 2 lenience 2 leniency 2 007 @ 04637923 n 0000 + 01763159 a 0302 + 00711831 a 0201 + 01763159 a 0101 + 01297315 a 0101 + 01182293 v 0103 ~ 04638857 n 0000 | a disposition to yield to the wishes of someone; "too much indulgence spoils a child" -04638857 07 n 01 softness 2 002 @ 04638585 n 0000 + 01763159 a 0103 | a disposition to be lenient in judging others; "softness is not something permitted of good leaders" -04639030 07 n 01 overtolerance 0 001 @ 04637923 n 0000 | too much permissiveness -04639113 07 n 02 unpermissiveness 0 restrictiveness 0 005 @ 04623612 n 0000 + 02003725 a 0201 + 01763445 a 0101 ! 04637923 n 0101 ~ 04639371 n 0000 | a lack of permissiveness or indulgence and a tendency to confine behavior within certain specified limits -04639371 07 n 02 sternness 0 strictness 1 008 @ 04639113 n 0000 + 02436995 a 0202 + 02436995 a 0202 + 00711308 a 0202 + 01785341 a 0104 + 00711308 a 0101 ~ 04639591 n 0000 ~ 04639732 n 0000 | uncompromising resolution -04639591 07 n 01 Puritanism 0 003 @ 04639371 n 0000 + 01300370 a 0103 + 03105296 a 0101 | strictness and austerity in conduct and religion -04639732 07 n 0a severity 0 severeness 1 harshness 2 rigor 2 rigour 2 rigorousness 1 rigourousness 1 inclemency 0 hardness 4 stiffness 3 010 @ 04639371 n 0000 + 01127302 a 0901 + 00437852 a 0801 + 00915556 a 0601 + 00711059 a 0601 + 00711059 a 0401 + 01803583 a 0301 + 00090219 a 0301 + 01301316 a 0201 + 01301316 a 0101 | excessive sternness; "severity of character"; "the harshness of his punishment was inhuman"; "the rigors of boot camp" -04640176 07 n 01 good_nature 0 006 @ 04623612 n 0000 ! 04641447 n 0101 ~ 04640356 n 0000 ~ 04640538 n 0000 ~ 04640722 n 0000 ~ 04640830 n 0000 | a cheerful, obliging disposition -04640356 07 n 03 grace 3 good_will 0 goodwill 0 002 @ 04640176 n 0000 + 01372568 a 0102 | a disposition to kindness and compassion; "the victor's grace in treating the vanquished" -04640538 07 n 03 patience 0 forbearance 0 longanimity 0 004 @ 04640176 n 0000 + 01736571 a 0302 + 01735736 a 0101 ! 04642596 n 0101 | good-natured tolerance of delay or incompetence -04640722 07 n 01 easygoingness 0 002 @ 04640176 n 0000 + 00712004 a 0101 | being without worry or concern -04640830 07 n 01 risibility 0 002 @ 04640176 n 0000 + 01265308 a 0107 | a disposition to laugh -04640927 07 n 02 agreeableness 0 agreeability 0 007 @ 04623612 n 0000 + 00553279 a 0201 + 00089051 a 0201 + 00553279 a 0101 ! 04643221 n 0101 ~ 04641153 n 0000 ~ 05167117 n 0000 | a temperamental disposition to be agreeable -04641153 07 n 05 complaisance 0 compliance 0 compliancy 0 obligingness 0 deference 0 008 @ 04640927 n 0000 + 01994180 a 0502 + 01994180 a 0501 + 00021110 a 0402 + 00696518 a 0301 + 02542280 v 0301 + 00696518 a 0201 + 00021110 a 0101 | a disposition or tendency to yield to the will of others -04641447 07 n 01 ill_nature 0 009 @ 04623612 n 0000 ! 04640176 n 0101 ~ 04641700 n 0000 ~ 04641869 n 0000 ~ 04642057 n 0000 ~ 04642258 n 0000 ~ 04642596 n 0000 ~ 04642866 n 0000 ~ 04643099 n 0000 | a disagreeable, irritable, or malevolent disposition -04641700 07 n 03 crabbiness 0 crabbedness 0 crossness 0 004 @ 04641447 n 0000 + 01136248 a 0303 + 01136248 a 0201 + 01136248 a 0102 | a disposition to be ill-tempered -04641869 07 n 04 crankiness 0 crotchetiness 0 contrariness 0 grumpiness 0 004 @ 04641447 n 0000 + 01136248 a 0406 + 01135673 a 0202 + 01136541 a 0101 | a fussy and eccentric disposition -04642057 07 n 04 sulkiness 0 sullenness 0 moroseness 0 sourness 1 005 @ 04641447 n 0000 + 01137378 a 0408 + 01137378 a 0306 + 01137378 a 0209 + 01137994 a 0102 | a sullen moody resentful disposition -04642258 07 n 07 temper 2 biliousness 0 irritability 0 peevishness 0 pettishness 0 snappishness 0 surliness 0 007 @ 04641447 n 0000 + 01139067 a 0701 + 01138770 a 0601 + 01136541 a 0507 + 01136541 a 0303 + 00202934 v 0103 ~ 04642980 n 0000 | a disposition to exhibit uncontrolled anger; "his temper was well known to all his employees" -04642596 07 n 01 impatience 0 004 @ 04641447 n 0000 + 01737241 a 0101 ! 04640538 n 0101 ~ 04642746 n 0000 | a dislike of anything that causes delay -04642746 07 n 01 intolerance 2 001 @ 04642596 n 0000 | impatience with annoyances; "his intolerance of interruptions" -04642866 07 n 01 shrewishness 0 002 @ 04641447 n 0000 + 01138610 a 0101 | a nature given to nagging or scolding -04642980 07 n 01 querulousness 0 002 @ 04642258 n 0000 + 00513981 a 0102 | the quality of being given to complaining -04643099 07 n 02 asperity 2 sharpness 0 003 @ 04641447 n 0000 + 01804728 a 0201 ! 04705671 n 0201 | harshness of manner -04643221 07 n 01 disagreeableness 0 005 @ 04623612 n 0000 ! 04640927 n 0101 ~ 04643397 n 0000 ~ 04643662 n 0000 ~ 04643979 n 0000 | an ill-tempered and offensive disposition -04643397 07 n 06 bitterness 1 acrimony 0 acerbity 0 jaundice 0 tartness 1 thorniness 1 008 @ 04643221 n 0000 + 01804728 a 0503 + 00477107 v 0401 + 01802165 a 0302 + 01773535 v 0303 + 00116744 a 0201 + 01802165 a 0105 + 00116744 a 0102 | a rough and bitter manner -04643662 07 n 03 aggressiveness 1 belligerence 0 pugnacity 0 006 @ 04643221 n 0000 + 01244846 a 0301 + 01244846 a 0202 + 01244846 a 0101 ~ 04643875 n 0000 ~ 04644161 n 0000 | a natural disposition to be hostile -04643875 07 n 02 bellicosity 0 bellicoseness 0 001 @ 04643662 n 0000 | a natural disposition to fight -04643979 07 n 02 quarrelsomeness 0 contentiousness 0 004 @ 04643221 n 0000 + 00603804 a 0201 + 00603660 a 0101 ~ 04644306 n 0000 | an inclination to be quarrelsome and contentious -04644161 07 n 02 truculence 0 truculency 0 003 @ 04643662 n 0000 + 00084795 a 0201 + 00084795 a 0101 | obstreperous and defiant aggressiveness -04644306 07 n 01 litigiousness 0 003 @ 04643979 n 0000 + 00603804 a 0105 + 02859221 a 0101 | a quarrelsome disposition to engage in or carry on lawsuits; "charges of litigiousness and widespread perjury" -04644512 07 n 01 willingness 0 006 @ 04623612 n 0000 + 02564986 a 0101 ! 04645599 n 0101 ~ 04644719 n 0000 ~ 04645020 n 0000 ~ 04645473 n 0000 | cheerful compliance; "he expressed his willingness to help" -04644719 07 n 04 readiness 1 eagerness 0 zeal 0 forwardness 0 001 @ 04644512 n 0000 | prompt willingness; "readiness to continue discussions"; "they showed no eagerness to spread the gospel"; "they disliked his zeal in demonstrating his superiority"; "he tried to explain his forwardness in battle" -04645020 07 n 03 receptiveness 0 receptivity 0 openness 2 007 @ 04644512 n 0000 + 01449354 a 0301 + 01985247 a 0302 + 01773420 a 0201 + 01985247 a 0201 + 01773420 a 0101 + 01985247 a 0101 | willingness or readiness to receive (especially impressions or ideas); "he was testing the government's receptiveness to reform"; "this receptiveness is the key feature in oestral behavior, enabling natural mating to occur"; "their receptivity to the proposal" -04645473 07 n 01 wholeheartedness 2 002 @ 04644512 n 0000 + 02180486 a 0102 | undivided commitment or unreserved enthusiasm -04645599 07 n 02 unwillingness 0 involuntariness 0 006 @ 04623612 n 0000 + 02522164 a 0101 + 02566015 a 0101 ! 04644512 n 0101 ~ 04645943 n 0000 ~ 04646372 n 0000 | the trait of being unwilling; "his unwillingness to cooperate vetoed every proposal I made"; "in spite of our warnings he plowed ahead with the involuntariness of an automaton" -04645943 07 n 05 reluctance 0 hesitancy 0 hesitation 1 disinclination 0 indisposition 0 010 @ 04645599 n 0000 + 00681125 v 0501 + 00681125 v 0402 + 02640440 v 0301 + 00686573 a 0201 + 02640440 v 0201 + 02566453 a 0103 + 00811969 a 0101 + 01293882 a 0101 ~ 04637444 n 0000 | a certain degree of unwillingness; "a reluctance to commit himself"; "his hesitancy revealed his basic indisposition"; "after some hesitation he agreed" -04646372 07 n 01 resistance 1 003 @ 04645599 n 0000 ;c 06055946 n 0000 + 01774869 a 0101 | (psychiatry) an unwillingness to bring repressed feelings into conscious awareness -04646548 07 n 04 seriousness 0 earnestness 0 serious-mindedness 0 sincerity 1 014 @ 04616059 n 0000 + 02118840 a 0402 + 02119971 a 0302 + 02118840 a 0201 + 01910114 a 0202 + 01279611 a 0101 + 02123314 a 0102 + 02118379 a 0101 ! 04648207 n 0101 = 02118379 a 0000 = 02120458 a 0000 ~ 04646990 n 0000 ~ 04647478 n 0000 ~ 04647826 n 0000 | the trait of being serious; "a lack of solemnity is not necessarily a lack of seriousness"- Robert Rice -04646990 07 n 02 committedness 0 commitment 1 003 @ 04646548 n 0000 + 00518164 a 0101 ~ 04647185 n 0000 | the trait of sincere and steadfast fixity of purpose; "a man of energy and commitment" -04647185 07 n 01 investment 0 001 @ 04646990 n 0000 | the commitment of something other than money (time, energy, or effort) to a project with the expectation of some worthwhile result; "this job calls for the investment of some hard thinking"; "he made an emotional investment in the work" -04647478 07 n 06 graveness 0 gravity 0 sobriety 1 soberness 0 somberness 0 sombreness 0 012 @ 04646548 n 0000 + 00365261 a 0602 + 00365261 a 0501 + 02119213 a 0403 + 02123314 a 0403 + 02119213 a 0201 + 01278423 a 0201 + 02119213 a 0101 + 01278423 a 0101 + 00365261 a 0602 + 00365261 a 0501 ~ 04648059 n 0000 | a manner that is serious and solemn -04647826 07 n 04 sedateness 0 staidness 0 solemnity 0 solemness 0 007 @ 04646548 n 0000 + 02119213 a 0404 + 02118840 a 0303 + 02119213 a 0304 + 00689336 a 0202 + 02119213 a 0102 + 00689336 a 0101 | a trait of dignified seriousness -04648059 07 n 02 stodginess 0 stuffiness 0 004 @ 04647478 n 0000 + 00606347 a 0202 + 00974697 a 0105 + 00606347 a 0101 | dull and pompous gravity -04648207 07 n 02 frivolity 0 frivolousness 0 007 @ 04616059 n 0000 + 02120458 a 0201 + 02120458 a 0101 ! 04646548 n 0101 ~ 04648440 n 0000 ~ 04648749 n 0000 ~ 04649261 n 0000 | the trait of being frivolous; not serious or sensible -04648440 07 n 02 giddiness 0 silliness 1 004 @ 04648207 n 0000 + 02120828 a 0208 + 02120828 a 0105 ~ 04648596 n 0000 | an impulsive scatterbrained manner -04648596 07 n 02 lightsomeness 0 lightness 0 003 @ 04648440 n 0000 + 02121572 a 0201 + 02121424 a 0202 | the trait of being lighthearted and frivolous -04648749 07 n 01 levity 0 003 @ 04648207 n 0000 ~ 04648866 n 0000 ~ 04649051 n 0000 | a manner lacking seriousness -04648866 07 n 02 flippancy 0 light-mindedness 0 003 @ 04648749 n 0000 + 02121290 a 0202 + 02121290 a 0101 | inappropriate levity; "her mood changed and she was all lightness and joy" -04649051 07 n 04 jocoseness 0 jocosity 0 merriness 0 humorousness 0 006 @ 04648749 n 0000 + 01264336 a 0401 + 01367651 a 0305 + 01367431 a 0304 + 01267076 a 0202 + 01267076 a 0102 | the trait of merry joking -04649261 07 n 02 playfulness 0 fun 0 008 @ 04648207 n 0000 = 02121859 a 0000 = 02123314 a 0000 ~ 04649560 n 0000 ~ 04649651 n 0000 ~ 04649835 n 0000 ~ 04650010 n 0000 ~ 04650201 n 0000 | a disposition to find (or make) causes for amusement; "her playfulness surprised me"; "he was fun to be with" -04649560 07 n 01 facetiousness 0 002 @ 04649261 n 0000 + 01264913 a 0102 | playful humor -04649651 07 n 05 impertinence 0 perkiness 0 pertness 0 sauciness 0 archness 0 004 @ 04649261 n 0000 + 00205295 a 0406 + 02280090 a 0303 + 02280090 a 0101 | inappropriate playfulness -04649835 07 n 03 friskiness 0 frolicsomeness 0 sportiveness 0 004 @ 04649261 n 0000 + 02122132 a 0305 + 02122132 a 0202 + 02123007 a 0102 | lively high-spirited playfulness -04650010 07 n 04 impishness 0 mischievousness 1 puckishness 0 whimsicality 0 004 @ 04649261 n 0000 + 02122715 a 0307 + 02122715 a 0204 + 02122715 a 0102 | the trait of behaving like an imp -04650201 07 n 04 humor 1 humour 1 sense_of_humor 0 sense_of_humour 0 005 @ 04649261 n 0000 + 01264336 a 0202 + 10191943 n 0202 + 01264336 a 0101 + 10191943 n 0101 | the trait of appreciating (and being able to express) the humorous; "she didn't appreciate my humor"; "you can't survive in the army without a sense of humor" -04650527 07 n 01 communicativeness 0 007 @ 04616059 n 0000 + 00494907 a 0101 ! 04651784 n 0101 ~ 04650731 n 0000 ~ 04651009 n 0000 ~ 04651195 n 0000 ~ 04651382 n 0000 | the trait of being communicative -04650731 07 n 02 frankness 1 outspokenness 0 005 @ 04650527 n 0000 + 00764484 a 0206 + 00499530 a 0201 + 00764484 a 0104 ~ 04650913 n 0000 | the trait of being blunt and outspoken -04650913 07 n 01 bluffness 0 002 @ 04650731 n 0000 + 00764301 a 0101 | good-natured frankness -04651009 07 n 03 effusiveness 0 expansiveness 1 expansivity 1 004 @ 04650527 n 0000 + 00496938 a 0301 + 00496938 a 0201 + 00806064 a 0103 | a friendly open trait of a talkative person -04651195 07 n 03 fluency 1 volubility 0 articulateness 0 004 @ 04650527 n 0000 + 00150202 a 0301 + 02383831 a 0201 + 00150505 a 0103 | the quality of being facile in speech and writing -04651382 07 n 05 garrulity 0 garrulousness 0 loquaciousness 0 loquacity 0 talkativeness 0 009 @ 04650527 n 0000 + 02384077 a 0505 + 00496938 a 0502 + 02384077 a 0404 + 02384077 a 0304 + 02384077 a 0203 + 02384077 a 0103 + 00773299 a 0504 ~ 04651683 n 0000 | the quality of being wordy and talkative -04651683 07 n 01 leresis 0 001 @ 04651382 n 0000 | rambling talkativeness (especially in the aged) -04651784 07 n 01 uncommunicativeness 0 006 @ 04616059 n 0000 + 00500569 a 0101 ! 04650527 n 0101 ~ 04651974 n 0000 ~ 04652177 n 0000 ~ 04652438 n 0000 | the trait of being uncommunicative -04651974 07 n 02 muteness 0 silence 1 004 @ 04651784 n 0000 + 00501820 a 0202 + 00461493 v 0203 + 00152285 a 0101 | a refusal to speak when expected; "his silence about my contribution was surprising" -04652177 07 n 03 secrecy 2 secretiveness 2 silence 2 004 @ 04651784 n 0000 + 00463007 v 0301 + 00501004 a 0204 ~ 04652345 n 0000 | the trait of keeping things secret -04652345 07 n 01 mum 0 002 @ 04652177 n 0000 + 00501820 a 0101 | secrecy; "mum's the word" -04652438 07 n 03 reserve 0 reticence 0 taciturnity 0 003 @ 04651784 n 0000 + 02383380 a 0301 + 02383709 a 0201 | the trait of being uncommunicative; not volunteering anything more than necessary -04652635 07 n 01 sociality 0 008 @ 04623113 n 0000 + 02258360 a 0101 + 02252877 a 0101 + 01076634 a 0101 + 02248349 a 0101 = 02248349 a 0000 = 02249441 a 0000 ~ 04652930 n 0000 | the tendency to associate with others and to form social groups; "mammals as a class are not strong on sociality" -04652930 07 n 02 sociability 0 sociableness 0 016 @ 04652635 n 0000 #p 04618921 n 0000 + 00560900 a 0201 + 02257141 a 0201 + 00560900 a 0101 + 02257141 a 0101 ! 04656748 n 0101 = 02257141 a 0000 = 02258600 a 0000 ~ 04621738 n 0000 ~ 04622216 n 0000 ~ 04653357 n 0000 ~ 04653479 n 0000 ~ 04653627 n 0000 ~ 04653869 n 0000 ~ 04654066 n 0000 | the relative tendency or disposition to be sociable or associate with one's fellows -04653357 07 n 02 conviviality 0 joviality 0 003 @ 04652930 n 0000 + 01367651 a 0204 + 02258002 a 0101 | a jovial nature -04653479 07 n 02 companionability 0 companionableness 0 003 @ 04652930 n 0000 + 02257856 a 0201 + 02257856 a 0101 | suitability to be a companion -04653627 07 n 05 chumminess 0 camaraderie 0 comradeliness 0 comradery 0 comradeship 0 005 @ 04652930 n 0000 + 09945905 n 0502 + 01075864 a 0301 + 01075524 a 0101 + 00452114 a 0101 | the quality of affording easy familiarity and sociability -04653869 07 n 01 gregariousness 0 005 @ 04652930 n 0000 + 02248984 a 0101 + 02252634 a 0101 = 02252634 a 0000 = 02253065 a 0000 | the quality of being gregarious--having a dislike of being alone -04654066 07 n 02 openness 1 nakedness 0 005 @ 04652930 n 0000 + 01705195 a 0201 + 01310273 a 0102 + 01704761 a 0102 ! 04657407 n 0101 | characterized by an attitude of ready accessibility (especially about one's actions or purposes); without concealment; not secretive -04654337 07 n 01 friendliness 0 014 @ 04623612 n 0000 + 01074650 a 0101 ! 04657876 n 0101 = 01074650 a 0000 = 01076793 a 0000 ~ 04654652 n 0000 ~ 04654998 n 0000 ~ 04655442 n 0000 ~ 04655649 n 0000 ~ 04655829 n 0000 ~ 04655929 n 0000 ~ 04656051 n 0000 ~ 04656282 n 0000 ~ 04841664 n 0000 | a friendly disposition -04654652 07 n 06 affability 0 affableness 0 amiability 0 amiableness 0 bonhomie 0 geniality 0 010 @ 04654337 n 0000 + 01075178 a 0604 + 01134232 a 0401 + 01134232 a 0301 + 01075178 a 0302 + 01075178 a 0201 + 01075178 a 0101 ~ 04655168 n 0000 ~ 04656448 n 0000 ~ 04656598 n 0000 | a disposition to be friendly and approachable (easy to talk to) -04654998 07 n 02 amicability 0 amicableness 0 003 @ 04654337 n 0000 + 01246579 a 0201 + 01246579 a 0101 | having a disposition characterized by warmth and friendliness -04655168 07 n 02 condescension 1 condescendingness 0 003 @ 04654652 n 0000 + 02338917 a 0202 + 02591455 v 0101 | affability to your inferiors and temporary disregard for differences of position or rank; "the queen's condescension was intended to make us feel comfortable" -04655442 07 n 03 familiarity 2 intimacy 2 closeness 3 002 @ 04654337 n 0000 + 00453053 a 0101 | close or warm friendship; "the absence of fences created a mysterious intimacy in which no one knew privacy" -04655649 07 n 02 approachability 0 accessibility 2 004 @ 04654337 n 0000 + 00134251 a 0201 + 00134060 a 0101 ! 04657244 n 0101 | the attribute of being easy to meet or deal with -04655829 07 n 01 congeniality 0 002 @ 04654337 n 0000 ! 04658686 n 0101 | a congenial disposition -04655929 07 n 02 amity 0 cordiality 0 003 @ 04654337 n 0000 + 02531122 a 0201 + 01075178 a 0203 | a cordial disposition -04656051 07 n 04 neighborliness 0 neighbourliness 0 good-neighborliness 0 good-neighbourliness 0 004 @ 04654337 n 0000 + 01076435 a 0202 + 01076435 a 0101 ! 04658816 n 0101 | a disposition to be friendly and helpful to neighbors -04656282 07 n 01 hospitableness 0 003 @ 04654337 n 0000 + 01243825 a 0101 ! 04658942 n 0101 | having a disposition that welcomes guests and is fond of entertaining -04656448 07 n 01 mellowness 2 003 @ 04654652 n 0000 + 02408011 a 0102 + 00799224 a 0102 | geniality, as through the effects of alcohol or marijuana -04656598 07 n 01 sweetness_and_light 0 001 @ 04654652 n 0000 | a mild reasonableness; "when he learned who I was he became all sweetness and light" -04656748 07 n 02 unsociability 0 unsociableness 0 007 @ 04623612 n 0000 + 02258600 a 0201 + 02258600 a 0101 ! 04652930 n 0101 ~ 04621963 n 0000 ~ 04656996 n 0000 ~ 04657407 n 0000 | an unsociable disposition; avoiding friendship or companionship -04656996 07 n 04 aloofness 0 remoteness 1 standoffishness 0 withdrawnness 0 006 @ 04656748 n 0000 + 02250691 a 0403 + 01988024 a 0402 + 00134562 a 0302 + 01987646 a 0101 ~ 04657244 n 0000 | a disposition to be distant and unsympathetic in manner -04657244 07 n 01 unapproachability 0 003 @ 04656996 n 0000 + 00134401 a 0101 ! 04655649 n 0101 | a disposition to be unapproachable; unfriendly and inaccessible -04657407 07 n 02 closeness 1 secretiveness 1 005 @ 04656748 n 0000 + 00501004 a 0204 + 00501004 a 0101 ! 04654066 n 0101 ~ 04657631 n 0000 | characterized by a lack of openness (especially about one's actions or purposes) -04657631 07 n 03 furtiveness 0 sneakiness 0 stealthiness 0 006 @ 04657407 n 0000 + 02088974 a 0304 + 02319346 a 0201 + 02088974 a 0203 + 01706111 a 0103 + 02088974 a 0101 | a disposition to be sly and stealthy and to do things surreptitiously -04657876 07 n 01 unfriendliness 0 009 @ 04623612 n 0000 + 01076793 a 0101 ! 04654337 n 0101 ~ 04658106 n 0000 ~ 04658268 n 0000 ~ 04658524 n 0000 ~ 04658686 n 0000 ~ 04658816 n 0000 ~ 04658942 n 0000 | an unfriendly disposition -04658106 07 n 02 hostility 0 ill_will 0 002 @ 04657876 n 0000 ~ 04658361 n 0000 | a hostile (very unfriendly) disposition; "he could not conceal his hostility" -04658268 07 n 01 aggression 0 001 @ 04657876 n 0000 | a disposition to behave aggressively -04658361 07 n 02 virulence 1 virulency 1 003 @ 04658106 n 0000 + 01802165 a 020a + 01802165 a 010a | extreme hostility; "the virulence of the malicious old man" -04658524 07 n 01 misanthropy 0 004 @ 04657876 n 0000 + 02463582 a 0102 + 02463582 a 0103 + 10321882 n 0102 | a disposition to dislike and mistrust other people -04658686 07 n 01 uncongeniality 0 003 @ 04657876 n 0000 + 00561036 a 0101 ! 04655829 n 0101 | a disposition not to be congenial -04658816 07 n 01 unneighborliness 0 003 @ 04657876 n 0000 + 01077485 a 0101 ! 04656051 n 0101 | an unneighborly disposition -04658942 07 n 01 inhospitableness 0 003 @ 04657876 n 0000 + 01244195 a 0101 ! 04656282 n 0101 | having an unfriendly and inhospitable disposition -04659090 07 n 01 adaptability 0 005 @ 05200169 n 0000 + 01027263 a 0101 ! 04660080 n 0101 ~ 04659287 n 0000 ~ 04659730 n 0000 | the ability to change (or be changed) to fit changed circumstances -04659287 07 n 02 flexibility 1 flexibleness 1 007 @ 04659090 n 0000 + 01028163 a 0202 + 01026262 a 0203 + 01024073 a 0201 + 01028163 a 0102 ! 04660261 n 0101 ~ 04659567 n 0000 | the quality of being adaptable or variable; "he enjoyed the flexibility of his working arrangement" -04659567 07 n 01 wiggle_room 0 001 @ 04659287 n 0000 | flexibility of interpretation or of options; "the request left some wiggle room for future restructuring" -04659730 07 n 04 pliability 1 pliancy 0 pliantness 0 suppleness 2 007 @ 04659090 n 0000 + 01024228 a 0402 + 02364954 a 0302 + 01028163 a 0304 + 02364954 a 0202 + 01028163 a 0204 + 01028163 a 0103 | adaptability of mind or character; "he was valued for his reliability and pliability"; "he increased the leanness and suppleness of the organization" -04660080 07 n 01 unadaptability 0 004 @ 05207130 n 0000 + 01029044 a 0101 ! 04659090 n 0101 ~ 04660261 n 0000 | the inability to change or be changed to fit changed circumstances -04660261 07 n 03 inflexibility 1 rigidity 1 rigidness 1 009 @ 04660080 n 0000 + 01029151 a 0302 + 02436995 a 0301 + 02436995 a 0201 + 00418110 v 0201 + 01029151 a 0101 + 01025913 a 0103 + 01024597 a 0101 ! 04659287 n 0101 | the quality of being rigid and rigorously severe -04660536 07 n 01 thoughtfulness 0 010 @ 04616059 n 0000 #p 04620216 n 0000 + 01194483 a 0103 ! 04661706 n 0101 = 02418872 a 0000 = 02420530 a 0000 ~ 04660805 n 0000 ~ 04660981 n 0000 ~ 04661151 n 0000 ~ 04661546 n 0000 | the trait of thinking carefully before acting -04660805 07 n 03 pensiveness 0 meditativeness 0 contemplativeness 0 004 @ 04660536 n 0000 + 02419434 a 0303 + 02419434 a 0204 + 01362950 a 0101 | deep serious thoughtfulness -04660981 07 n 01 introspectiveness 0 004 @ 04660536 n 0000 + 01350674 a 0101 = 01350674 a 0000 = 01350876 a 0000 | thoughtfulness about your own situation and feelings -04661151 07 n 02 deliberation 0 deliberateness 0 005 @ 04660536 n 0000 + 00813044 v 0105 + 00812580 v 0102 + 01337939 a 0201 ~ 04661389 n 0000 | the trait of thoughtfulness in action or decision; "he was a man of judicial deliberation" -04661389 07 n 01 intentionality 0 005 @ 04661151 n 0000 + 01338116 a 0101 = 01337486 a 0000 = 01338730 a 0000 + 01339730 a 0102 | expressive of intentions -04661546 07 n 02 reflectiveness 0 reflectivity 1 003 @ 04660536 n 0000 + 01333331 a 0201 + 02419434 a 0208 | the capability of quiet thought or contemplation -04661706 07 n 02 unthoughtfulness 0 thoughtlessness 0 006 @ 04616059 n 0000 + 02420530 a 0201 + 02421003 a 0103 ! 04660536 n 0101 ~ 04661926 n 0000 ~ 04662504 n 0000 | the trait of not thinking carefully before acting -04661926 07 n 03 recklessness 0 foolhardiness 0 rashness 0 008 @ 04661706 n 0000 + 00250739 a 0303 + 00250739 a 0201 + 00312757 a 0102 + 00250739 a 0104 ~ 04662182 n 0000 ~ 04662283 n 0000 ~ 04662390 n 0000 | the trait of giving little thought to danger -04662182 07 n 01 adventurism 0 001 @ 04661926 n 0000 | recklessness in politics or foreign affairs -04662283 07 n 01 brashness 0 002 @ 04661926 n 0000 + 00204779 a 0101 | the trait of being rash and hasty -04662390 07 n 01 desperation 0 001 @ 04661926 n 0000 | desperate recklessness; "it was a policy of desperation" -04662504 07 n 01 impulsiveness 0 007 @ 04661706 n 0000 + 01843205 a 0101 + 02282651 a 0101 + 00326608 a 0102 + 00719442 a 0102 ~ 04662730 n 0000 ~ 04662858 n 0000 | the trait of acting suddenly on impulse without reflection -04662730 07 n 02 impetuousness 0 impetuosity 0 003 @ 04662504 n 0000 + 00326608 a 0203 + 00326608 a 0103 | rash impulsiveness -04662858 07 n 01 hastiness 0 002 @ 04662504 n 0000 + 01270704 a 0101 | hasty impulsiveness -04662951 07 n 01 attentiveness 1 009 @ 04616059 n 0000 + 01194483 a 0102 ! 04663319 n 0101 ~ 04663494 n 0000 ~ 04663763 n 0000 ~ 04664058 n 0000 ~ 04664628 n 0000 ~ 04664778 n 0000 ~ 04665543 n 0000 | the trait of being observant and paying attention -04663204 07 n 01 attentiveness 0 001 @ 04841358 n 0000 | the trait of being considerate and thoughtful of others -04663319 07 n 01 inattentiveness 1 004 @ 04616059 n 0000 + 00755876 a 0101 ! 04662951 n 0101 ~ 04664964 n 0000 | the trait of not being considerate and thoughtful of others -04663494 07 n 01 carefulness 0 008 @ 04662951 n 0000 + 01271961 a 0101 + 01895099 a 0101 + 00309021 a 0101 ! 04664964 n 0101 = 00309021 a 0000 = 00311663 a 0000 ~ 04672355 n 0000 | the quality of being careful and painstaking; "I admired the carefulness of his work" -04663763 07 n 02 mindfulness 0 heedfulness 0 009 @ 04662951 n 0000 + 01977488 a 0202 + 00164308 a 0202 + 01194483 a 0201 ! 04665543 n 0202 + 01977155 a 0101 ! 04665543 n 0101 = 01977155 a 0000 = 01978003 a 0000 | the trait of staying aware of (paying close attention to) your responsibilities -04664058 07 n 03 caution 0 cautiousness 0 carefulness 1 006 @ 04662951 n 0000 + 02456698 a 0301 + 01895099 a 0301 + 01977488 a 0301 + 00325281 a 0201 ! 04665210 n 0101 | the trait of being cautious; being attentive to possible danger; "a man of caution" -04664314 07 n 01 precaution 0 001 @ 04891184 n 0000 | the trait of practicing caution in advance -04664413 07 n 02 wariness 0 chariness 0 007 @ 04891184 n 0000 + 00325619 a 0203 + 02464277 a 0105 + 00162386 a 0101 ! 04665406 n 0101 = 00162386 a 0000 = 00162990 a 0000 | the trait of being cautious and watchful -04664628 07 n 03 alertness 0 sharp-sightedness 0 on_the_qui_vive 0 003 @ 04662951 n 0000 + 01745653 a 0202 + 00091311 a 0101 | lively attentiveness -04664778 07 n 03 watchfulness 0 vigilance 0 weather_eye 0 003 @ 04662951 n 0000 + 00091764 a 0203 + 00091311 a 0102 | vigilant attentiveness; "he keeps a weather eye open for trouble" -04664964 07 n 02 carelessness 0 sloppiness 0 008 @ 04663319 n 0000 + 00312519 a 0204 + 01194099 a 0101 + 00311663 a 0101 ! 04663494 n 0101 ~ 04665210 n 0000 ~ 04665813 n 0000 ~ 04673341 n 0000 | the quality of not being careful or taking pains -04665210 07 n 02 incaution 0 incautiousness 0 005 @ 04664964 n 0000 + 00313041 a 0201 ! 04664058 n 0101 ~ 04665406 n 0000 ~ 04894037 n 0000 | the trait of forgetting or ignoring possible danger -04665406 07 n 01 unwariness 0 003 @ 04665210 n 0000 + 00162990 a 0101 ! 04664413 n 0101 | the trait of not being cautious and watchful -04665543 07 n 04 unmindfulness 0 heedlessness 1 inadvertence 0 inadvertency 0 007 @ 04662951 n 0000 + 01338909 a 0402 + 01338909 a 0302 ! 04663763 n 0202 + 00192026 a 0102 + 01978003 a 0101 ! 04663763 n 0101 | the trait of forgetting or ignoring your responsibilities -04665813 07 n 03 negligence 0 neglect 0 neglectfulness 0 008 @ 04664964 n 0000 + 00755876 a 0302 + 00616153 v 0201 + 02529284 v 0202 + 00754873 a 0101 + 00755220 a 0303 ~ 04666083 n 0000 ~ 04666416 n 0000 | the trait of neglecting responsibilities and lacking concern -04666083 07 n 03 delinquency 0 dereliction 0 willful_neglect 0 002 @ 04665813 n 0000 + 01322488 a 0101 | a tendency to be negligent and uncaring; "he inherited his delinquency from his father"; "his derelictions were not really intended as crimes"; "his adolescent protest consisted of willful neglect of all his responsibilities" -04666416 07 n 04 laxness 0 laxity 0 remissness 0 slackness 1 005 @ 04665813 n 0000 + 00755482 a 0402 + 00755220 a 0304 + 00755482 a 0201 + 00755482 a 0101 | the quality of being lax and neglectful -04666615 07 n 01 masculinity 1 007 @ 04616059 n 0000 + 01483324 a 0101 ! 04667406 n 0101 ~ 04666837 n 0000 ~ 04667076 n 0000 ~ 04667180 n 0000 ~ 04667258 n 0000 | the trait of behaving in ways considered typical for men -04666837 07 n 03 manfulness 0 manliness 0 virility 0 006 @ 04666615 n 0000 + 01483677 a 0305 + 01483677 a 0204 + 01475831 a 0201 + 01483677 a 0102 + 01475831 a 0102 | the trait of being manly; having the characteristics of an adult male -04667076 07 n 01 boyishness 0 002 @ 04666615 n 0000 + 01648313 a 0101 | being characteristic of a boy -04667180 07 n 01 machismo 0 001 @ 04666615 n 0000 | exaggerated masculinity -04667258 07 n 02 hoydenism 0 tomboyishness 0 002 @ 04666615 n 0000 + 01485708 a 0202 | masculinity in women (especially in girls and young women) -04667406 07 n 02 femininity 0 muliebrity 0 008 @ 04616059 n 0000 + 01484083 a 0101 ! 04666615 n 0101 ~ 04667660 n 0000 ~ 04667821 n 0000 ~ 04667923 n 0000 ~ 04668033 n 0000 ~ 04668139 n 0000 | the trait of behaving in ways considered typical for women -04667660 07 n 02 womanliness 0 womanlike 0 002 @ 04667406 n 0000 + 01484987 a 0101 | the trait of being womanly; having the characteristics of an adult female -04667821 07 n 01 ladylikeness 0 002 @ 04667406 n 0000 + 01948721 a 0101 | behavior befitting a lady -04667923 07 n 01 maidenliness 0 002 @ 04667406 n 0000 + 01484651 a 0102 | behavior befitting a young maiden -04668033 07 n 01 girlishness 0 002 @ 04667406 n 0000 + 01648698 a 0101 | being characteristic of a girl -04668139 07 n 06 effeminacy 0 effeminateness 0 sissiness 0 softness 4 womanishness 0 unmanliness 0 008 @ 04667406 n 0000 ;u 06717170 n 0000 + 00266420 a 0603 + 01476154 a 0601 + 01476516 a 0501 + 01476325 a 0307 + 01476325 a 0201 ~ 04668713 n 0000 | the trait of being effeminate (derogatory of a man); "the students associated science with masculinity and arts with effeminacy"; "Spartans accused Athenians of effeminateness"; "he was shocked by the softness of the atmosphere surrounding the young prince, arising from the superfluity of the femininity that guided him" -04668713 07 n 01 emasculation 0 002 @ 04668139 n 0000 + 00541953 v 0101 | loss of power and masculinity -04668819 07 n 02 trustworthiness 0 trustiness 0 008 @ 04616059 n 0000 + 02464693 a 0202 ! 04670531 n 0202 + 01997748 a 0101 + 02464693 a 0101 ! 04670531 n 0101 ~ 04669063 n 0000 ~ 04669247 n 0000 | the trait of deserving trust and confidence -04669063 07 n 01 creditworthiness 0 002 @ 04668819 n 0000 + 02465350 a 0101 | trustworthiness with money as based on a person's credit history; a general qualification for borrowing -04669247 07 n 02 responsibility 0 responsibleness 0 012 @ 04668819 n 0000 #p 04620216 n 0000 + 02465350 a 0202 + 01996377 a 0201 ! 04670746 n 0202 + 01996377 a 0101 ! 04670746 n 0101 = 01996377 a 0000 = 01997910 a 0000 ~ 04669692 n 0000 ~ 04669828 n 0000 ~ 04670022 n 0000 | a form of trustworthiness; the trait of being answerable to someone for something or being responsible for one's conduct; "he holds a position of great responsibility" -04669692 07 n 01 fault 1 002 @ 04669247 n 0000 + 00842538 v 0102 | responsibility for a bad situation or event; "it was John's fault" -04669828 07 n 03 accountability 0 answerability 0 answerableness 0 004 @ 04669247 n 0000 + 01997221 a 0301 + 01997221 a 0201 + 01996875 a 0101 | responsibility to someone or for some activity -04670022 07 n 04 dependability 0 dependableness 0 reliability 0 reliableness 0 021 @ 04669247 n 0000 + 02465519 a 0403 + 02465115 a 0402 + 00724081 a 0401 ! 04671394 n 0404 + 02465519 a 0303 + 02465115 a 0302 + 00724081 a 0301 ! 04671394 n 0303 + 02465519 a 0201 + 02301969 a 0201 + 02273643 a 0201 + 00724081 a 0202 ! 04671394 n 0202 + 02465519 a 0101 + 02301969 a 0101 + 00724081 a 0102 ! 04671394 n 0101 ~ 04671075 n 0000 ~ 04805136 n 0000 ~ 04806169 n 0000 | the quality of being dependable or reliable -04670531 07 n 02 untrustworthiness 0 untrustiness 0 006 @ 04616059 n 0000 + 02466111 a 0202 ! 04668819 n 0202 + 02466111 a 0101 ! 04668819 n 0101 ~ 04670746 n 0000 | the trait of not deserving trust or confidence -04670746 07 n 02 irresponsibility 0 irresponsibleness 0 008 @ 04670531 n 0000 + 01997910 a 0201 ! 04669247 n 0202 + 01997910 a 0101 ! 04669247 n 0101 ~ 04671394 n 0000 ~ 04671841 n 0000 ~ 04672210 n 0000 | a form of untrustworthiness; the trait of lacking a sense of responsibility and not feeling accountable for your actions -04671075 07 n 02 solidity 0 solidness 1 005 @ 04670022 n 0000 + 02273952 a 0201 + 02120276 a 0201 + 01125006 a 0201 + 01993693 a 0202 | the quality of being solid and reliable financially or factually or morally; "the solidity of the evidence worked in his favor"; "the solidness of her faith gave her enduring hope" -04671394 07 n 04 undependability 0 undependableness 0 unreliability 0 unreliableness 0 017 @ 04670746 n 0000 + 01999180 a 0401 + 00964590 a 0402 + 02061126 a 0402 + 00724861 a 0401 ! 04670022 n 0404 + 01999180 a 0301 + 00724861 a 0301 ! 04670022 n 0303 + 00964590 a 0201 + 00724861 a 0202 ! 04670022 n 0202 + 00724861 a 0102 ! 04670022 n 0101 ~ 04806067 n 0000 ~ 04806316 n 0000 ~ 04806512 n 0000 | the trait of not being dependable or reliable -04671841 07 n 06 flightiness 0 arbitrariness 0 whimsicality 1 whimsy 0 whimsey 0 capriciousness 0 006 @ 04670746 n 0000 + 00719442 a 0601 + 00719442 a 0403 + 00719442 a 0303 + 00718924 a 0201 + 02121123 a 0101 | the trait of acting unpredictably and more from whim or caprice than from reason or judgment; "I despair at the flightiness and whimsicality of my memory" -04672210 07 n 01 carefreeness 0 003 @ 04670746 n 0000 + 02459465 a 0101 ~ 04673470 n 0000 | the trait of being without worry or responsibility -04672355 07 n 02 conscientiousness 1 painstakingness 0 008 @ 04663494 n 0000 + 00310138 a 0202 + 00310138 a 0101 ! 04673341 n 0101 ~ 04672605 n 0000 ~ 04672858 n 0000 ~ 04673006 n 0000 ~ 04673173 n 0000 | the trait of being painstaking and careful -04672605 07 n 04 meticulousness 0 meticulosity 0 punctiliousness 0 scrupulousness 2 007 @ 04672355 n 0000 + 00310138 a 0403 + 01838529 a 0302 + 01838529 a 0201 + 00984879 a 0201 + 01838529 a 0101 + 00984879 a 0101 | strict attention to minute details -04672858 07 n 01 thoroughness 0 003 @ 04672355 n 0000 + 00522463 a 0102 + 00311505 a 0101 | conscientiousness in performing all aspects of a task -04673006 07 n 01 diligence 1 001 @ 04672355 n 0000 | conscientiousness in paying proper attention to a task; giving the degree of care required in a given situation -04673173 07 n 02 strictness 2 stringency 0 004 @ 04672355 n 0000 + 00711059 a 0202 + 02506267 a 0102 + 00915556 a 0102 | conscientious attention to rules and details -04673341 07 n 01 unconscientiousness 1 002 @ 04664964 n 0000 ! 04672355 n 0101 | the trait of not being painstaking or careful -04673470 07 n 03 nonchalance 0 unconcern 1 indifference 1 003 @ 04672210 n 0000 + 01724072 a 0301 + 00545746 a 0103 | the trait of remaining calm and seeming not to care; a casual lack of concern -04673668 07 n 02 recommendation 0 passport 0 001 @ 04731497 n 0000 | any quality or characteristic that gains a person a favorable reception or acceptance or admission; "her pleasant personality is already a recommendation"; "his wealth was not a passport into the exclusive circles of society" -04673965 07 n 02 appearance 0 visual_aspect 0 031 @ 04723816 n 0000 + 00422090 v 0101 ~ 04674624 n 0000 ~ 04674715 n 0000 ~ 04674861 n 0000 ~ 04674968 n 0000 ~ 04675193 n 0000 ~ 04675314 n 0000 ~ 04676308 n 0000 ~ 04676540 n 0000 ~ 04676959 n 0000 ~ 04677113 n 0000 ~ 04677385 n 0000 ~ 04677514 n 0000 ~ 04677716 n 0000 ~ 04677952 n 0000 ~ 04679419 n 0000 ~ 04679549 n 0000 ~ 04683453 n 0000 ~ 04683707 n 0000 ~ 04683814 n 0000 ~ 04690196 n 0000 ~ 04691178 n 0000 ~ 04691651 n 0000 ~ 04692157 n 0000 ~ 04695176 n 0000 ~ 04697267 n 0000 ~ 04698112 n 0000 ~ 04700327 n 0000 ~ 04700496 n 0000 ~ 04950336 n 0000 | outward or visible aspect of a person or thing -04674624 07 n 01 agerasia 0 001 @ 04673965 n 0000 | youthful appearance in an old person -04674715 07 n 01 look 0 003 @ 04673965 n 0000 + 02133435 v 0101 + 00033599 v 0101 | physical appearance; "I don't like the looks of this place" -04674861 07 n 01 view 1 001 @ 04673965 n 0000 | outward appearance; "they look the same in outward view" -04674968 07 n 02 color 1 colour 1 002 @ 04673965 n 0000 + 09938672 n 0101 | the appearance of objects (or light sources) described in terms of a person's perception of their hue and lightness (or brightness) and saturation -04675193 07 n 01 complexion 2 002 @ 04673965 n 0000 + 00287848 v 0101 | texture and appearance of the skin of the face -04675314 07 n 02 impression 0 effect 0 006 @ 04673965 n 0000 + 02747667 a 0101 ~ 04675646 n 0000 ~ 04675777 n 0000 ~ 04676064 n 0000 ~ 04676830 n 0000 | an outward appearance; "he made a good impression"; "I wanted to create an impression of success"; "she retained that bold effect in her reproductions of the original painting" -04675646 07 n 01 figure 0 001 @ 04675314 n 0000 | the impression produced by a person; "he cut a fine figure"; "a heroic figure" -04675777 07 n 01 image 1 001 @ 04675314 n 0000 | the general impression that something (a person or organization or product) presents to the public; "although her popular image was contrived it served to inspire music and pageantry"; "the company tried to project an altruistic image" -04676064 07 n 01 mark 2 001 @ 04675314 n 0000 | the impression created by doing something unusual or extraordinary that people notice and remember; "it was in London that he made his mark"; "he left an indelible mark on the American theater" -04676308 07 n 02 perspective 0 linear_perspective 0 004 @ 04673965 n 0000 %p 04676959 n 0000 %p 08585657 n 0000 %p 13861934 n 0000 | the appearance of things relative to one another as determined by their distance from the viewer -04676540 07 n 01 phase 0 003 @ 04673965 n 0000 ;c 06095022 n 0000 ~ 15206744 n 0000 | (astronomy) the particular appearance of a body's state of illumination (especially one of the recurring shapes of the part of Earth's moon that is illuminated by the sun); "the full phase of the moon" -04676830 07 n 01 tout_ensemble 0 001 @ 04675314 n 0000 | a total impression or effect of something made up of individual parts -04676959 07 n 01 vanishing_point 0 002 @ 04673965 n 0000 #p 04676308 n 0000 | the appearance of a point on the horizon at which parallel lines converge -04677113 07 n 01 superficies 0 003 @ 04673965 n 0000 ;u 06295235 n 0000 + 02805490 a 0101 | the purely external aspect of a thing; superficial appearance; "the audience was held by the substance of the play rather than by the superficies of the production"-R.W.Speaight -04677385 07 n 01 format 0 003 @ 04673965 n 0000 #p 06589574 n 0000 + 01745141 v 0101 | the general appearance of a publication -04677514 07 n 03 form 0 shape 1 cast 0 004 @ 04673965 n 0000 + 02138659 a 0201 + 00142191 v 0201 + 01659248 v 0201 | the visual appearance of something or someone; "the delicate cast of his features" -04677716 07 n 02 persona 0 image 0 004 @ 04673965 n 0000 ;c 11094611 n 0000 ;c 06136258 n 0000 + 02697725 v 0103 | (Jungian psychology) a personal facade that one presents to the world; "a public image is as fragile as Humpty Dumpty" -04677952 07 n 04 semblance 0 gloss 1 color 4 colour 4 008 @ 04673965 n 0000 + 00837133 v 0203 ~ 04678401 n 0000 ~ 04678712 n 0000 ~ 04678804 n 0000 ~ 04678908 n 0000 ~ 04679074 n 0000 ~ 04679300 n 0000 | an outward or token appearance or form that is deliberately misleading; "he hoped his claims would have a semblance of authenticity"; "he tried to give his falsehood the gloss of moral sanction"; "the situation soon took on a different color" -04678401 07 n 02 color_of_law 0 colour_of_law 0 002 @ 04677952 n 0000 ;c 08441203 n 0000 | a mere semblance of legal right; something done with the apparent authority of law but actually in contravention of law; "the plaintiff claimed that under color of law the officer had deprived him of his civil rights" -04678712 07 n 01 simulacrum 0 001 @ 04677952 n 0000 | an insubstantial or vague semblance -04678804 07 n 01 face_value 0 001 @ 04677952 n 0000 | the apparent worth as opposed to the real worth -04678908 07 n 04 guise 0 pretense 1 pretence 1 pretext 0 001 @ 04677952 n 0000 | an artful or simulated semblance; "under the guise of friendship he betrayed them" -04679074 07 n 02 disguise 0 camouflage 0 001 @ 04677952 n 0000 | an outward semblance that misrepresents the true nature of something; "the theatrical notion of disguise is always associated with catastrophe in his stories" -04679300 07 n 01 verisimilitude 0 001 @ 04677952 n 0000 | the appearance of truth; the quality of seeming to be true -04679419 07 n 01 face 0 001 @ 04673965 n 0000 | the general outward appearance of something; "the face of the city is changing" -04679549 07 n 02 countenance 0 visage 0 003 @ 04673965 n 0000 ~ 04679738 n 0000 ~ 04680133 n 0000 | the appearance conveyed by a person's face; "a pleasant countenance"; "a stern visage" -04679738 07 n 05 expression 0 look 1 aspect 1 facial_expression 0 face 3 006 @ 04679549 n 0000 + 02133435 v 0201 + 00929362 v 0201 + 00033599 v 0201 ~ 04680027 n 0000 ~ 04953380 n 0000 | the feelings expressed on a person's face; "a sad expression"; "a look of triumph"; "an angry face" -04680027 07 n 01 leer 0 002 @ 04679738 n 0000 + 02164288 v 0101 | a suggestive or sneering look or grin -04680133 07 n 01 poker_face 0 002 @ 04679549 n 0000 ;c 00494768 n 0000 | a face without any interpretable expression (as that of a good poker player) -04680285 07 n 01 marking 0 007 @ 03178782 n 0000 ~ 04681058 n 0000 ~ 04681387 n 0000 ~ 04681621 n 0000 ~ 04682018 n 0000 ~ 04682462 n 0000 ~ 04683136 n 0000 | a pattern of marks -04680465 07 n 04 band 0 banding 0 stria 0 striation 0 005 @ 04683136 n 0000 + 00508933 v 0401 + 00508933 v 0301 ~ 04680752 n 0000 ~ 04680893 n 0000 | a stripe or stripes of contrasting color; "chromosomes exhibit characteristic bands"; "the black and yellow banding of bees and wasps" -04680752 07 n 01 collar 0 002 @ 04680465 n 0000 ;c 06083243 n 0000 | (zoology) an encircling band or marking around the neck of any animal -04680893 07 n 01 stretch_mark 0 002 @ 04680465 n 0000 ;c 14046202 n 0000 | a narrow band resulting from tension on the skin (as on abdominal skin after pregnancy) -04681058 07 n 01 blaze 1 001 @ 04680285 n 0000 | a light-colored marking; "they chipped off bark to mark the trail with blazes"; "the horse had a blaze between its eyes" -04681230 07 n 02 speck 0 pinpoint 0 003 @ 04682462 n 0000 + 02287380 v 0201 + 01273406 v 0101 | a very small spot; "the plane was just a speck in the sky" -04681387 07 n 03 crisscross 0 cross 0 mark 1 007 @ 04680285 n 0000 + 01004062 v 0302 + 01275762 v 0303 + 01691798 v 0201 + 00510713 v 0101 + 01276800 v 0101 + 01913237 v 0101 | a marking that consists of lines that cross each other -04681621 07 n 02 eyespot 0 ocellus 0 001 @ 04680285 n 0000 | an eyelike marking (as on the wings of some butterflies); usually a spot of color inside a ring of another color -04681797 07 n 04 hatch 0 hatching 0 crosshatch 0 hachure 0 006 @ 04682018 n 0000 + 01276593 v 0401 + 01695976 v 0301 + 01276593 v 0201 + 01682234 v 0101 + 01276593 v 0101 | shading consisting of multiple crossing lines -04682018 07 n 01 shading 0 003 @ 04680285 n 0000 + 01695567 v 0101 ~ 04681797 n 0000 | graded markings that indicate light or shaded areas in a drawing or painting -04682184 07 n 01 nebula 0 003 @ 04682462 n 0000 ;c 06060845 n 0000 + 00462129 a 0102 | (pathology) a faint cloudy spot on the cornea -04682319 07 n 01 splash 0 002 @ 04682462 n 0000 + 01697770 a 0101 | a patch of bright color; "her red hat gave her outfit a splash of color" -04682462 07 n 06 spot 1 speckle 0 dapple 0 patch 0 fleck 0 maculation 0 018 @ 04680285 n 0000 + 01531998 v 0502 + 00912814 a 0401 + 02357693 v 0401 + 00510364 v 0302 + 01538310 v 0201 + 01538469 v 0202 + 00509607 v 0101 ~ 04681230 n 0000 ~ 04682184 n 0000 ~ 04682319 n 0000 ~ 04683002 n 0000 ~ 05244239 n 0000 ~ 05244934 n 0000 ~ 11487732 n 0000 ~ 11511004 n 0000 ~ 11511176 n 0000 ~ 11511327 n 0000 | a small contrasting part of something; "a bald spot"; "a leopard's spots"; "a patch of clouds"; "patches of thin ice"; "a fleck of red" -04683002 07 n 02 worn_spot 0 fret 0 002 @ 04682462 n 0000 + 02119659 v 0203 | a spot that has been worn away by abrasion or erosion -04683136 07 n 03 stripe 0 streak 0 bar 0 006 @ 04680285 n 0000 + 01790613 a 0202 + 01696135 v 0202 + 01790807 a 0102 + 01273263 v 0101 ~ 04680465 n 0000 | a narrow marking of a different color or texture from the background; "a green toad with small black stripes or bars"; "may the Stars and Stripes forever wave" -04683453 07 n 02 hairiness 0 pilosity 0 004 @ 04673965 n 0000 + 00212173 a 0101 ! 04683707 n 0101 ~ 04683600 n 0000 | the quality of having hair -04683600 07 n 02 hirsuteness 0 hirsutism 0 002 @ 04683453 n 0000 + 00212173 a 0103 | excessive hairiness -04683707 07 n 01 hairlessness 0 002 @ 04673965 n 0000 ! 04683453 n 0101 | the quality of not having hair -04683814 07 n 01 beauty 0 020 @ 04673965 n 0000 + 00218305 a 0101 + 09845999 n 0101 + 02748927 v 0106 + 01675963 v 0106 + 00293141 v 0102 ! 04690196 n 0101 = 00217728 a 0000 = 00220956 a 0000 ~ 04684255 n 0000 ~ 04684358 n 0000 ~ 04684654 n 0000 ~ 04684765 n 0000 ~ 04684872 n 0000 ~ 04685062 n 0000 ~ 04685195 n 0000 ~ 04685396 n 0000 ~ 04685649 n 0000 ~ 04685840 n 0000 ~ 04686003 n 0000 | the qualities that give pleasure to the senses -04684255 07 n 01 raw_beauty 0 001 @ 04683814 n 0000 | beauty that is stark and powerfully impressive -04684358 07 n 03 glory 0 resplendence 0 resplendency 0 010 @ 04683814 n 0000 + 00219389 a 0302 + 02733453 v 0301 + 00219389 a 0202 + 02733453 v 0201 + 01285376 a 0102 + 00219389 a 0101 + 00860620 v 0104 + 00489496 v 0101 + 00489299 v 0101 | brilliant radiant beauty; "the glory of the sunrise" -04684654 07 n 01 exquisiteness 0 002 @ 04683814 n 0000 + 00218837 a 0101 | extreme beauty of a delicate sort -04684765 07 n 01 picturesqueness 0 002 @ 04683814 n 0000 + 00219924 a 0101 | visually vivid and pleasing -04684872 07 n 01 pleasingness 0 002 @ 04683814 n 0000 ! 04690933 n 0101 | an agreeable beauty that gives pleasure or enjoyment; "the liveliness and pleasingness of dark eyes"- T.N. Carver -04685062 07 n 01 pulchritude 0 003 @ 04683814 n 0000 + 00220341 a 0101 ~ 04686748 n 0000 | physical beauty (especially of a woman) -04685195 07 n 02 glamor 0 glamour 0 006 @ 04683814 n 0000 + 00922051 a 0202 + 00532886 v 0202 + 00776988 v 0203 + 00922051 a 0101 + 00532886 v 0101 | alluring beauty or charm (often with sex-appeal) -04685396 07 n 04 comeliness 0 fairness 2 loveliness 0 beauteousness 0 007 @ 04683814 n 0000 + 00218305 a 0401 + 01459755 a 0303 + 00219809 a 0301 + 01484342 a 0201 + 00218440 a 0204 + 00218440 a 0103 | the quality of being good looking and attractive -04685649 07 n 02 prettiness 0 cuteness 0 003 @ 04683814 n 0000 + 00167278 a 0202 + 00220082 a 0101 | the quality of being appealing in a delicate or graceful way (of a girl or young woman) -04685840 07 n 02 handsomeness 0 good_looks 0 002 @ 04683814 n 0000 + 00218950 a 0104 | the quality of having regular well-defined features (especially of a man) -04686003 07 n 01 attractiveness 0 011 @ 04683814 n 0000 + 00166146 a 0101 ! 04691476 n 0101 = 00166146 a 0000 = 00169164 a 0000 ~ 04686257 n 0000 ~ 04686388 n 0000 ~ 04686537 n 0000 ~ 04686935 n 0000 ~ 04687333 n 0000 ~ 04687822 n 0000 | sexual allure -04686257 07 n 02 adorability 0 adorableness 0 003 @ 04686003 n 0000 + 01459755 a 0201 + 01459755 a 0101 | extreme attractiveness -04686388 07 n 03 bewitchery 0 beguilement 0 animal_magnetism 0 003 @ 04686003 n 0000 + 01806505 v 0208 + 01806505 v 010b | magnetic personal charm -04686537 07 n 03 charisma 0 personal_appeal 0 personal_magnetism 0 003 @ 04686003 n 0000 @ 05192451 n 0000 + 00167077 a 0101 | a personal attractiveness or interestingness that enables you to influence others -04686748 07 n 03 curvaceousness 0 shapeliness 0 voluptuousness 0 004 @ 04685062 n 0000 + 02138989 a 030a + 02138659 a 0201 + 02138989 a 0104 | the quality of having a well-rounded body -04686935 07 n 04 sex_appeal 0 desirability 1 desirableness 1 oomph 1 004 @ 04686003 n 0000 + 00852197 a 0301 + 00852197 a 0201 ~ 04687119 n 0000 | attractiveness to the opposite sex -04687119 07 n 01 sultriness 0 002 @ 04686935 n 0000 + 01257145 a 0102 | the quality of expressing or arousing sexual desire; "the sultriness of her look was unmistakable"; "the sultriness of lust was in the air" -04687333 07 n 03 appeal 0 appealingness 0 charm 0 008 @ 04686003 n 0000 + 01806505 v 0309 + 00776523 v 0301 + 02376277 a 0202 + 00170358 a 0201 + 01807882 v 0102 ~ 04687633 n 0000 ~ 04687957 n 0000 | attractiveness that interests or pleases or stimulates; "his smile was part of his appeal to her" -04687633 07 n 02 siren_call 0 siren_song 0 001 @ 04687333 n 0000 | the enticing appeal of something alluring but potentially dangerous; "he succumbed to the siren call of the wilderness" -04687822 07 n 01 spiff 0 001 @ 04686003 n 0000 | attractiveness in appearance or dress or manner; "he gets by largely on pure spiff" -04687957 07 n 01 winsomeness 0 002 @ 04687333 n 0000 + 00169056 a 0101 | childlike charm or appeal -04688058 07 n 02 associability 0 associableness 0 003 @ 05202497 n 0000 + 00157659 a 0201 + 00157659 a 0101 | the capability of being easily associated or joined or connected in thought -04688246 07 n 02 attraction 0 attractiveness 1 012 @ 04723816 n 0000 + 00170847 a 0201 + 01807882 v 0101 + 01505254 v 0101 ~ 04688648 n 0000 ~ 04688842 n 0000 ~ 04689198 n 0000 ~ 04689330 n 0000 ~ 04689450 n 0000 ~ 04689660 n 0000 ~ 04689834 n 0000 ~ 04689942 n 0000 | the quality of arousing interest; being attractive or something that attracts; "her personality held a strange attraction for him" -04688648 07 n 01 affinity 2 001 @ 04688246 n 0000 | a natural attraction or feeling of kinship; "an affinity for politics"; "the mysterious affinity between them"; "James's affinity with Sam" -04688842 07 n 03 allure 0 allurement 0 temptingness 0 005 @ 04688246 n 0000 + 02097480 a 0304 + 00793785 v 0202 + 00793785 v 0102 ~ 04689048 n 0000 | the power to entice or attract through personal charm -04689048 07 n 01 invitation 0 003 @ 04688842 n 0000 + 01760143 v 0101 + 01807529 v 0102 | a tempting allurement; "she was an invitation to trouble" -04689198 07 n 01 binding 0 003 @ 04688246 n 0000 + 01356750 v 0104 + 00567291 v 0101 | the capacity to attract and hold something -04689330 07 n 01 drawing_power 0 001 @ 04688246 n 0000 | the capacity for attracting people (customers or supporters) -04689450 07 n 01 fascination 0 003 @ 04688246 n 0000 + 02678839 v 0102 + 01821132 v 0101 | the capacity to attract intense interest; "he held the children spellbound with magic tricks and other fascinations" -04689660 07 n 03 lure 0 enticement 0 come-on 0 003 @ 04688246 n 0000 + 00782527 v 0201 + 00782527 v 0102 | qualities that attract by seeming to promise some kind of reward -04689834 07 n 01 sexual_attraction 0 001 @ 04688246 n 0000 | attractiveness on the basis of sexual desire -04689942 07 n 02 show-stopper 0 showstopper 0 001 @ 04688246 n 0000 | something that is strikingly attractive or has great popular appeal; "she has a show-stopper of a smile"; "the brilliant orange flowers against the green foliage were a showstopper" -04690196 07 n 01 ugliness 0 010 @ 04673965 n 0000 + 00220956 a 0101 ! 04683814 n 0101 ~ 04690476 n 0000 ~ 04690592 n 0000 ~ 04690769 n 0000 ~ 04690933 n 0000 ~ 04691061 n 0000 ~ 04691476 n 0000 ~ 04693717 n 0000 | qualities of appearance that do not give pleasure to the senses -04690476 07 n 01 unsightliness 0 002 @ 04690196 n 0000 + 00222543 a 0101 | ugliness that is unpleasant to look at -04690592 07 n 03 grotesqueness 0 grotesquery 0 grotesquerie 0 003 @ 04690196 n 0000 + 00221627 a 0101 + 00967646 a 0104 | ludicrous or incongruous unnaturalness or distortion -04690769 07 n 02 garishness 2 gaudiness 0 004 @ 04690196 n 0000 + 02393791 a 0206 + 00407420 a 0202 + 02393791 a 0105 | strident color or excessive ornamentation -04690933 07 n 01 unpleasingness 0 003 @ 04690196 n 0000 + 01142666 a 0102 ! 04684872 n 0101 | the quality of being unpleasant -04691061 07 n 01 hideousness 0 002 @ 04690196 n 0000 + 00221934 a 0101 | dreadful ugliness; horrible repulsiveness -04691178 07 n 03 disfigurement 0 disfiguration 0 deformity 0 004 @ 04673965 n 0000 + 02141298 a 0301 + 01549905 v 0202 + 01549905 v 0102 | an appearance that has been spoiled or is misshapen; "there were distinguishing disfigurements on the suspect's back"; "suffering from facial disfiguration" -04691476 07 n 01 unattractiveness 0 004 @ 04690196 n 0000 + 00169164 a 0101 ! 04686003 n 0101 ~ 04691861 n 0000 | an ugliness of appearance that is not appealing to viewers -04691651 07 n 02 homeliness 0 plainness 2 003 @ 04673965 n 0000 + 00169432 a 0202 + 00169432 a 0101 | an appearance that is not attractive or beautiful; "fine clothes could not conceal the girl's homeliness" -04691861 07 n 01 shapelessness 0 002 @ 04691476 n 0000 + 02142306 a 0101 | the quality of lacking an esthetically pleasing shape -04691992 07 n 01 ballast 0 001 @ 00024264 n 0000 | an attribute that tends to give stability in character and morals; something that steadies the mind or feelings -04692157 07 n 03 blemish 0 defect 0 mar 0 018 @ 04673965 n 0000 + 00477941 v 0301 + 01549905 v 0103 + 01538161 v 0101 + 00263044 v 0102 ~ 04692638 n 0000 ~ 04692787 n 0000 ~ 04692908 n 0000 ~ 04693096 n 0000 ~ 04693384 n 0000 ~ 04693804 n 0000 ~ 04693900 n 0000 ~ 04694090 n 0000 ~ 04694441 n 0000 ~ 04696085 n 0000 ~ 04696432 n 0000 ~ 05245626 n 0000 ~ 05245775 n 0000 | a mark or flaw that spoils the appearance of something (especially on a person's body); "a facial blemish" -04692638 07 n 02 birthmark 0 nevus 0 003 @ 04692157 n 0000 ~ 04696193 n 0000 ~ 04696316 n 0000 | a blemish on the skin that is formed before birth -04692787 07 n 01 chatter_mark 0 001 @ 04692157 n 0000 | a mark made by a chattering tool on the surface of a workpiece -04692908 07 n 02 check 0 chip 0 004 @ 04692157 n 0000 + 01259005 v 0202 + 00336539 v 0101 + 00336260 v 0102 | a mark left after a small piece has been chopped or broken off of something -04693096 07 n 01 crack 0 002 @ 04692157 n 0000 ~ 04693274 n 0000 | a blemish resulting from a break without complete separation of the parts; "there was a crack in the mirror" -04693274 07 n 01 craze 0 002 @ 04693096 n 0000 + 00337568 v 0101 | a fine crack in a glaze or other surface -04693384 07 n 04 dent 0 ding 0 gouge 0 nick 0 004 @ 04692157 n 0000 + 01279631 v 0102 ~ 04693557 n 0000 + 01281782 v 0302 | an impression in a surface (as made by a blow) -04693557 07 n 01 dig 0 001 @ 04693384 n 0000 | a small gouge (as in the cover of a book); "the book was in good condition except for a dig in the back cover" -04693717 07 n 01 eyesore 0 001 @ 04690196 n 0000 | something very ugly and offensive -04693804 07 n 01 mole 0 001 @ 04692157 n 0000 | a small congenital pigmented spot on the skin -04693900 07 n 04 scratch 0 scrape 0 scar 0 mark 0 006 @ 04692157 n 0000 + 01551195 v 0402 + 01551195 v 0301 + 01309143 v 0202 + 01308160 v 0201 + 01309143 v 0101 | an indication of damage -04694090 07 n 02 burn 0 burn_mark 0 005 @ 04692157 n 0000 + 00196364 v 0101 + 00378664 v 0101 + 00378042 v 0101 ~ 04694293 n 0000 | a place or area that has been burned (especially on a person's body) -04694293 07 n 01 cigarette_burn 0 001 @ 04694090 n 0000 | a burn mark left by a smoldering cigarette; "a cigarette burn on the edge of the table" -04694441 07 n 07 smudge 0 spot 0 blot 0 daub 0 smear 0 smirch 0 slur 0 013 @ 04692157 n 0000 + 01252601 v 0601 + 01251928 v 0501 + 01252425 v 0501 + 01538928 v 0301 + 01531998 v 0304 + 00509958 v 0201 + 01531998 v 0201 + 00423001 a 0101 + 01251928 v 0103 ~ 04694809 n 0000 ~ 04694980 n 0000 ~ 04695102 n 0000 | a blemish made by dirt; "he had a smudge on his cheek" -04694809 07 n 03 blotch 0 splodge 0 splotch 0 005 @ 04694441 n 0000 + 01532329 v 0301 + 01787408 a 0102 + 00246497 a 0101 + 01696135 v 0103 | an irregularly shaped spot -04694980 07 n 02 fingermark 0 fingerprint 0 002 @ 04694441 n 0000 + 01748748 v 0201 | a smudge made by a (dirty) finger -04695102 07 n 01 inkblot 0 001 @ 04694441 n 0000 | a blot made with ink -04695176 07 n 03 stain 0 discoloration 0 discolouration 0 011 @ 04673965 n 0000 + 00281101 v 0302 + 00282076 v 0201 + 00281101 v 0201 + 00286605 v 0101 ~ 04695504 n 0000 ~ 04695605 n 0000 ~ 04695693 n 0000 ~ 04695805 n 0000 ~ 04695884 n 0000 ~ 04695963 n 0000 | a soiled or discolored appearance; "the wine left a dark stain" -04695504 07 n 01 scorch 0 002 @ 04695176 n 0000 + 00377715 v 0102 | a discoloration caused by heat -04695605 07 n 01 bloodstain 0 001 @ 04695176 n 0000 | a discoloration caused by blood -04695693 07 n 02 iron_mold 0 iron_mould 0 001 @ 04695176 n 0000 | a spot caused the staining with rust or ink -04695805 07 n 01 mud_stain 0 001 @ 04695176 n 0000 | a stain produced by mud -04695884 07 n 01 oil_stain 0 001 @ 04695176 n 0000 | a stain produced by oil -04695963 07 n 01 tarnish 0 002 @ 04695176 n 0000 + 01537409 v 0101 | discoloration of metal surface caused by oxidation -04696085 07 n 01 stigma 0 001 @ 04692157 n 0000 | a skin lesion that is a diagnostic sign of some disease -04696193 07 n 02 port-wine_stain 0 nevus_flammeus 0 001 @ 04692638 n 0000 | a flat birthmark varying from pink to purple -04696316 07 n 03 strawberry 0 strawberry_mark 0 hemangioma_simplex 0 001 @ 04692638 n 0000 | a soft red birthmark -04696432 07 n 02 wart 0 verruca 0 008 @ 04692157 n 0000 @ 14228148 n 0000 ;c 06060845 n 0000 + 02243255 a 0102 ~ 04696695 n 0000 ~ 04696797 n 0000 ~ 04696969 n 0000 ~ 04697084 n 0000 | (pathology) a firm abnormal elevated blemish on the skin; caused by a virus -04696695 07 n 01 common_wart 0 001 @ 04696432 n 0000 | a benign growth (often with a rough surface) -04696797 07 n 04 genital_wart 0 venereal_wart 0 condyloma_acuminatum 0 verruca_acuminata 0 001 @ 04696432 n 0000 | a small benign wart on or around the genitals and anus -04696969 07 n 01 juvenile_wart 0 001 @ 04696432 n 0000 | a small benign growth on the faces of hands of children -04697084 07 n 01 plantar_wart 0 001 @ 04696432 n 0000 | a wart occurring on the sole of the foot; "pressure causes plantar warts to develop a painful callus around the soft center" -04697267 07 n 01 plainness 0 005 @ 04673965 n 0000 + 00060605 a 0101 ~ 04697442 n 0000 ~ 04697666 n 0000 ~ 04697819 n 0000 | the appearance of being plain and unpretentious -04697442 07 n 04 chasteness 1 restraint 1 simplicity 1 simpleness 1 004 @ 04697267 n 0000 + 01793812 a 0401 + 01793812 a 0301 + 01792821 a 0101 | lack of ornamentation; "the room was simply decorated with great restraint" -04697666 07 n 03 austereness 0 severity 3 severeness 0 004 @ 04697267 n 0000 + 01792387 a 0302 + 01792387 a 0101 + 01300187 a 0101 | extreme plainness -04697819 07 n 02 bareness 0 starkness 0 008 @ 04697267 n 0000 + 01792387 a 0203 + 01242750 a 0205 + 01714157 a 0101 + 01242750 a 0101 + 01086915 a 0101 + 02155524 a 0102 + 01698400 a 0101 | an extreme lack of furnishings or ornamentation; "I was struck by the starkness of my father's room" -04698112 07 n 02 ornateness 0 elaborateness 1 004 @ 04673965 n 0000 + 01795933 a 0201 ~ 04699936 n 0000 ~ 04700199 n 0000 | an ornate appearance; being elaborately (even excessively) decorated -04698307 07 n 02 baroque 0 baroqueness 0 002 @ 04929422 n 0000 + 01794995 a 0201 | elaborate and extensive ornamentation in decorative art and architecture that flourished in Europe in the 17th century -04698511 07 n 01 classical_style 0 001 @ 04929422 n 0000 | the artistic style of ancient Greek art with its emphasis on proportion and harmony -04698656 07 n 01 order 0 007 @ 04929422 n 0000 ;c 06123363 n 0000 ~ 04698998 n 0000 ~ 04699157 n 0000 ~ 04699298 n 0000 ~ 04699474 n 0000 ~ 04699637 n 0000 | (architecture) one of original three styles of Greek architecture distinguished by the type of column and entablature used or a style developed from the original three by the Romans -04698998 07 n 02 Doric_order 0 Dorian_order 0 001 @ 04698656 n 0000 | the oldest and simplest of the Greek orders and the only one that normally has no base -04699157 07 n 02 Ionic_order 0 Ionian_order 0 001 @ 04698656 n 0000 | the second Greek order; the capital is decorated with spiral scrolls -04699298 07 n 01 Corinthian_order 0 001 @ 04698656 n 0000 | the last Greek order; similar to the Ionic order except the capital is decorated with carvings of acanthus leaves -04699474 07 n 01 Composite_order 0 001 @ 04698656 n 0000 | a Roman order that combines the Corinthian acanthus leaves with the spiral scrolls of the Ionic order -04699637 07 n 01 Tuscan_order 0 001 @ 04698656 n 0000 | a Roman order that resembles the Doric order but without a fluted shaft -04699767 07 n 01 rococo 0 001 @ 04929422 n 0000 | fanciful but graceful asymmetric ornamentation in art and architecture that originated in France in the 18th century -04699936 07 n 04 flamboyance 0 floridness 0 floridity 0 showiness 0 007 @ 04698112 n 0000 + 00796591 a 0401 + 01848701 a 0402 + 00407420 a 0404 + 01794771 a 0202 + 01794771 a 0103 + 01848701 a 0101 | extravagant elaborateness; "he wrote with great flamboyance" -04700199 07 n 01 fussiness 0 003 @ 04698112 n 0000 + 00984624 a 0103 + 01795203 a 0102 | unnecessary elaborateness in details -04700327 07 n 01 decorativeness 0 003 @ 04673965 n 0000 + 01091234 a 0102 ~ 04700642 n 0000 | an appearance that serves to decorate and make something more attractive -04700496 07 n 01 etiolation 0 002 @ 04673965 n 0000 + 00103741 v 0101 | a pale and sickly appearance; "his etiolation signaled years in prison" -04700642 07 n 03 coating 0 finish 0 finishing 0 006 @ 04700327 n 0000 + 01265989 v 0301 + 01265989 v 0201 + 01264283 v 0101 ~ 04701039 n 0000 ~ 04701267 n 0000 | a decorative texture or appearance of a surface (or the substance that gives it that appearance); "the boat had a metallic finish"; "he applied a coat of a clear finish"; "when the finish is too thin it is difficult to apply evenly" -04701039 07 n 01 glaze 0 003 @ 04700642 n 0000 + 01269521 v 0101 ~ 04701162 n 0000 | a coating for ceramics, metal, etc. -04701162 07 n 02 luster 0 lustre 0 001 @ 04701039 n 0000 | a surface coating for ceramics or porcelain -04701267 07 n 01 shoeshine 0 001 @ 04700642 n 0000 | a shiny finish put on shoes with polish and buffing; "his trousers had a sharp crease and you could see your reflection in his shoeshine" -04701460 07 n 03 clearness 2 clarity 0 uncloudedness 0 019 @ 04723816 n 0000 + 00460946 a 0302 + 01906464 a 0304 + 00435374 a 0301 + 00432861 a 0301 + 01906464 a 0202 + 01622505 a 0201 + 00460735 a 0201 + 00431447 a 0201 ! 04703424 n 0201 + 01906464 a 0102 + 01750073 a 0101 + 00460735 a 0101 + 00431447 a 0101 = 00431447 a 0000 ~ 04702127 n 0000 ~ 04702351 n 0000 ~ 04702545 n 0000 ~ 04702688 n 0000 | the quality of clear water; "when she awoke the clarity was back in her eyes" -04701943 07 n 03 pellucidness 0 pellucidity 0 limpidity 0 004 @ 04702127 n 0000 + 00431774 a 0303 + 00431774 a 0205 + 00431774 a 0105 | passing light without diffusion or distortion -04702127 07 n 03 transparency 0 transparence 0 transparentness 0 006 @ 04701460 n 0000 + 02413390 a 0308 + 00431774 a 0306 + 00431774 a 0206 + 01619689 a 0101 ~ 04701943 n 0000 | the quality of being clear and transparent -04702351 07 n 03 translucence 0 translucency 0 semitransparency 0 004 @ 04701460 n 0000 + 00432626 a 0302 + 00432626 a 0201 + 00432626 a 0101 | the quality of allowing light to pass diffusely -04702545 07 n 01 visibility 3 001 @ 04701460 n 0000 | capability of providing a clear unobstructed view; "a windshield with good visibility" -04702688 07 n 02 distinctness 0 sharpness 3 010 @ 04701460 n 0000 + 00780352 a 0202 ! 04704346 n 0202 + 00701299 a 0101 + 00429016 a 0102 + 00779374 a 0101 ! 04704346 n 0101 ~ 04702957 n 0000 ~ 04703104 n 0000 ~ 04703235 n 0000 | the quality of being sharp and clear -04702957 07 n 01 definition 0 002 @ 04702688 n 0000 + 02736778 v 0101 | clarity of outline; "exercise had given his muscles superior definition" -04703104 07 n 02 discernability 0 legibility 1 002 @ 04702688 n 0000 + 00581812 a 0102 | distinctness that makes perception easy -04703235 07 n 01 focus 1 003 @ 04702688 n 0000 + 00314272 v 0101 + 02161922 v 0101 | maximum clarity or distinctness of an image rendered by an optical system; "in focus"; "out of focus" -04703424 07 n 02 opacity 0 opaqueness 0 007 @ 04723816 n 0000 + 00433115 a 0201 + 00433115 a 0101 ! 04701460 n 0102 = 00433115 a 0000 ~ 04703698 n 0000 ~ 04704346 n 0000 | the quality of being opaque to a degree; the degree to which something reduces the passage of light -04703698 07 n 03 cloudiness 0 murkiness 0 muddiness 0 008 @ 04703424 n 0000 + 00433529 a 0302 + 01909077 a 0304 + 00433529 a 0204 + 00433529 a 0101 + 00781974 a 0101 ~ 04703932 n 0000 ~ 04704116 n 0000 | the quality of being cloudy -04703932 07 n 02 turbidity 0 turbidness 0 003 @ 04703698 n 0000 + 00433529 a 0205 + 00433529 a 0105 | muddiness created by stirring up sediment or having foreign particles suspended -04704116 07 n 05 haziness 1 mistiness 0 steaminess 0 vaporousness 0 vapourousness 0 005 @ 04703698 n 0000 + 02550517 a 0302 + 02549569 a 0201 + 00461609 a 0204 + 00461609 a 0103 | cloudiness resulting from haze or mist or vapor -04704346 07 n 05 indistinctness 0 softness 5 blurriness 0 fogginess 0 fuzziness 0 010 @ 04703424 n 0000 + 00781644 a 0505 + 00433811 a 0402 + 00781644 a 0404 + 00781644 a 0303 ! 04702688 n 0202 + 00781168 a 0101 ! 04702688 n 0101 ~ 04704675 n 0000 ~ 04704839 n 0000 | the quality of being indistinct and without sharp outlines -04704675 07 n 02 dimness 2 faintness 0 004 @ 04704346 n 0000 + 01747364 a 0201 + 00782216 a 0202 + 00782216 a 0101 | the quality of being dim or lacking contrast -04704839 07 n 01 vagueness 1 002 @ 04704346 n 0000 + 00782216 a 0104 | indistinctness of shape or character; "the scene had the swirling vagueness of a painting by Turner" -04705013 07 n 01 divisibility 0 002 @ 04723816 n 0000 ~ 04705196 n 0000 | the quality of being divisible; the capacity to be divided into parts or divided among a number of persons -04705196 07 n 01 fissiparity 0 001 @ 04705013 n 0000 | the tendency to break into parts; "the fissiparity of religious sects" -04705324 07 n 02 sharpness 1 keenness 0 007 @ 05064037 n 0000 + 01810189 a 0203 + 01810189 a 0103 + 00800826 a 0101 ! 04705671 n 0101 = 00800826 a 0000 ~ 04705536 n 0000 | thinness of edge or fineness of point -04705536 07 n 01 acuteness 0 003 @ 04705324 n 0000 + 01810189 a 0102 ! 04705950 n 0101 | the quality of having a sharp edge or point -04705671 07 n 02 dullness 1 bluntness 1 007 @ 05064037 n 0000 + 01811683 a 0201 + 00800464 a 0201 + 00800248 a 0101 ! 04643099 n 0102 ! 04705324 n 0101 ~ 04705950 n 0000 | without sharpness or clearness of edge or point; "the dullness of the pencil made his writing illegible" -04705950 07 n 01 obtuseness 0 003 @ 04705671 n 0000 + 02169359 a 0101 ! 04705536 n 0101 | the quality of lacking a sharp edge or point -04706087 07 n 01 conspicuousness 0 008 @ 05017458 n 0000 + 00579084 a 0101 ! 04707636 n 0101 = 00579084 a 0000 = 00581401 a 0000 ~ 04706290 n 0000 ~ 04707110 n 0000 ~ 04707252 n 0000 | high visibility -04706290 07 n 04 obviousness 0 noticeability 0 noticeableness 0 patency 1 017 @ 04706087 n 0000 + 01618376 a 0404 + 00568483 v 0401 + 02323204 a 0301 + 01746995 a 0302 + 01614778 a 0302 + 01286799 a 0301 + 02323204 a 0201 + 01746995 a 0202 + 01618053 a 0101 = 01286799 a 0000 = 01288091 a 0000 = 01618053 a 0000 = 01620052 a 0000 ~ 04706727 n 0000 ~ 04706882 n 0000 ~ 04707409 n 0000 | the property of being easy to see and understand -04706727 07 n 02 apparentness 1 apparency 0 004 @ 04706290 n 0000 + 01618376 a 0201 + 01873985 a 0101 + 01618376 a 0101 | the property of being apparent -04706882 07 n 01 blatancy 0 004 @ 04706290 n 0000 @ 04780958 n 0000 + 02090567 a 0101 + 01920367 a 0101 | the property of being both obvious and offensive; "the blatancy of his attempt to whitewash the crime was unforgivable" -04707110 07 n 01 obtrusiveness 0 004 @ 04706087 n 0000 + 01353866 a 0101 + 01614778 a 0101 ! 04707964 n 0101 | an unwelcome conspicuousness -04707252 07 n 02 boldness 1 strikingness 0 003 @ 04706087 n 0000 + 01284212 a 0203 + 00579881 a 0101 | the quality of standing out strongly and distinctly -04707409 07 n 02 predomination 0 predominance 0 003 @ 04706290 n 0000 + 01066787 a 0203 + 02696503 v 0103 | the quality of being more noticeable than anything else; "the predomination of blues gave the painting a quiet tone" -04707636 07 n 01 inconspicuousness 0 005 @ 05017909 n 0000 + 00581401 a 0101 ! 04706087 n 0101 ~ 04707808 n 0000 ~ 04707964 n 0000 | the quality of being not easily seen -04707808 07 n 01 unnoticeableness 0 004 @ 04707636 n 0000 + 00581637 a 0102 + 01614988 a 0102 + 01288091 a 0101 | the quality of being not easily noticed -04707964 07 n 01 unobtrusiveness 0 003 @ 04707636 n 0000 + 01614988 a 0101 ! 04707110 n 0101 | the quality of not sticking out in an unwelcome way -04708113 07 n 04 ease 0 easiness 0 simplicity 0 simpleness 2 009 @ 04723816 n 0000 + 00750296 a 0402 + 00750296 a 0302 + 01272176 a 0201 + 01144571 a 0201 + 00749230 a 0201 ! 04709253 n 0101 = 00749230 a 0000 ~ 04708543 n 0000 | freedom from difficulty or hardship or effort; "he rose through the ranks with apparent ease"; "they put it into containers for ease of transportation"; "the very easiness of the deed held her back" -04708543 07 n 01 effortlessness 0 006 @ 04708113 n 0000 + 00749749 a 0102 + 00838296 a 0101 ! 04709585 n 0101 ~ 04708796 n 0000 ~ 04709011 n 0000 | the quality of requiring little effort; "such effortlessness is achieved only after hours of practice" -04708796 07 n 02 facility 0 readiness 2 003 @ 04708543 n 0000 + 01335903 a 0202 + 00150505 a 0102 | a natural effortlessness; "they conversed with great facility"; "a happy readiness of conversation"--Jane Austen -04709011 07 n 01 smoothness 2 005 @ 04708543 n 0000 + 01139832 a 0104 + 00750926 a 0101 + 02243411 a 0101 + 02294263 a 0102 | the quality of being free from errors or interruptions; "the five-speed manual gearbox is smoothness personified" -04709253 07 n 02 difficulty 0 difficultness 0 011 @ 04723816 n 0000 + 00744916 a 0201 ! 04708113 n 0101 = 00744916 a 0000 ~ 04709585 n 0000 ~ 04710127 n 0000 ~ 04710588 n 0000 ~ 04710866 n 0000 ~ 04711031 n 0000 ~ 04711256 n 0000 ~ 04711435 n 0000 | the quality of being difficult; "they agreed about the difficulty of the climb" -04709585 07 n 01 effortfulness 0 005 @ 04709253 n 0000 + 00836277 a 0101 ! 04708543 n 0101 ~ 04709759 n 0000 ~ 04709944 n 0000 | the quality of requiring deliberate effort -04709759 07 n 02 arduousness 0 strenuousness 0 006 @ 04709585 n 0000 + 00875235 a 0201 + 00837977 a 0203 + 00837977 a 0101 + 00836544 a 0101 + 00745858 a 0101 | extreme effortfulness -04709944 07 n 03 laboriousness 0 operoseness 0 toilsomeness 0 004 @ 04709585 n 0000 + 00836544 a 030a + 00836544 a 0208 + 00836544 a 0107 | the quality of requiring extended effort -04710127 07 n 09 asperity 1 grimness 1 hardship 0 rigor 0 rigour 0 severity 2 severeness 2 rigorousness 0 rigourousness 0 004 @ 04709253 n 0000 + 01513050 a 0701 + 01785341 a 0201 ~ 04710390 n 0000 | something hard to endure; "the asperity of northern winters" -04710390 07 n 01 sternness 1 002 @ 04710127 n 0000 + 01792387 a 0104 | the quality (as of scenery) being grim and gloomy and forbidding; "the sternness of his surroundings made him uncomfortable" -04710588 07 n 02 hardness 2 ruggedness 2 004 @ 04709253 n 0000 + 00748058 a 0201 + 00744916 a 0102 + 00836544 a 0105 | the quality of being difficult to do; "he assigned a series of problems of increasing hardness"; "the ruggedness of his exams caused half the class to fail" -04710866 07 n 02 formidability 0 toughness 2 005 @ 04709253 n 0000 + 00746451 a 0206 + 00748058 a 0202 + 02445636 a 0201 + 01284836 a 0101 | impressive difficulty -04711031 07 n 04 burdensomeness 0 heaviness 2 onerousness 0 oppressiveness 0 006 @ 04709253 n 0000 + 01189998 a 0401 + 01189109 a 0302 + 00836544 a 0206 + 01190683 a 0201 + 01189109 a 0101 | unwelcome burdensome difficulty -04711256 07 n 02 subtlety 0 niceness 1 001 @ 04709253 n 0000 | the quality of being difficult to detect or analyze; "you had to admire the subtlety of the distinctions he drew" -04711435 07 n 03 troublesomeness 0 inconvenience 1 worriment 0 007 @ 04709253 n 0000 + 01767163 v 0301 + 00748795 a 0101 ~ 04711665 n 0000 ~ 04711919 n 0000 ~ 04712001 n 0000 ~ 04712130 n 0000 | a difficulty that causes anxiety -04711665 07 n 03 awkwardness 2 cumbersomeness 0 unwieldiness 0 004 @ 04711435 n 0000 + 02563727 a 0301 + 02564330 a 0201 + 02564023 a 0101 | trouble in carrying or managing caused by bulk or shape; "the movers cursed the unwieldiness of the big piano" -04711919 07 n 01 flea_bite 0 001 @ 04711435 n 0000 | a very minor inconvenience -04712001 07 n 01 fly_in_the_ointment 0 001 @ 04711435 n 0000 | an inconvenience that detracts from the usefulness of something -04712130 07 n 01 unwieldiness 1 002 @ 04711435 n 0000 + 01837605 a 0101 | the quality of being difficult to direct or control by reason of complexity; "avoiding the unwieldiness of formal legal processes"; "the onset of unwieldiness and bureaucracy in large organizations" -04712405 07 n 03 combustibility 0 combustibleness 0 burnability 0 002 @ 04723816 n 0000 ~ 04712568 n 0000 | the quality of being capable of igniting and burning -04712568 07 n 02 flammability 0 inflammability 0 003 @ 04712405 n 0000 + 00473658 a 0202 + 00473658 a 0101 | the quality of being easily ignited and burning rapidly -04712735 07 n 01 compatibility 0 007 @ 04731497 n 0000 + 00507464 a 0101 ! 04714440 n 0101 ~ 04712978 n 0000 ~ 04713118 n 0000 ~ 04713332 n 0000 ~ 04713428 n 0000 | capability of existing or performing in harmonious or congenial combination -04712978 07 n 02 congenialness 2 congeniality 2 003 @ 04712735 n 0000 + 00560586 a 0201 + 00560586 a 0101 | compatibility between persons -04713118 07 n 02 harmony 1 harmoniousness 0 007 @ 04712735 n 0000 + 00562308 a 0201 + 00508036 a 0201 + 00894029 a 0201 + 01163320 a 0103 + 02700104 v 0101 ~ 04714156 n 0000 | compatibility in opinion and action -04713332 07 n 01 accord 0 002 @ 04712735 n 0000 + 02700104 v 0104 | sympathetic compatibility -04713428 07 n 02 agreement 0 correspondence 2 004 @ 04712735 n 0000 + 02657219 v 0203 + 02657219 v 0108 ~ 04713692 n 0000 | compatibility of observations; "there was no agreement between theory and measurement"; "the results of two tests were in correspondence" -04713692 07 n 02 conformity 2 conformance 0 004 @ 04713428 n 0000 + 02662979 v 0201 ~ 04713853 n 0000 ~ 04714058 n 0000 | correspondence in form or appearance -04713853 07 n 03 justness 1 rightness 3 nicety 0 002 @ 04713692 n 0000 + 02036934 a 0102 | conformity with some esthetic standard of correctness or propriety; "it was performed with justness and beauty" -04714058 07 n 01 normality 1 002 @ 04713692 n 0000 + 01593649 a 0101 | conformity with the norm -04714156 07 n 03 congruity 0 congruousness 0 congruence 0 009 @ 04713118 n 0000 + 00562116 a 0302 + 00561600 a 0301 + 00507912 a 0201 + 00562116 a 0201 ! 04714847 n 0202 + 00507912 a 0101 + 00562116 a 0101 ! 04714847 n 0101 | the quality of agreeing; being suitable and appropriate -04714440 07 n 01 incompatibility 0 007 @ 04731497 n 0000 + 01487352 a 0102 + 00561036 a 0102 + 00508192 a 0101 ! 04712735 n 0101 ~ 04714679 n 0000 ~ 04714847 n 0000 | the quality of being unable to exist or work in congenial combination -04714679 07 n 01 conflict 0 002 @ 04714440 n 0000 + 02667228 v 0101 | an incompatibility of dates or events; "he noticed a conflict in the dates of the two meetings" -04714847 07 n 02 incongruity 0 incongruousness 0 006 @ 04714440 n 0000 + 00562469 a 0201 ! 04714156 n 0202 + 00562469 a 0101 ! 04714156 n 0101 ~ 04715075 n 0000 | the quality of disagreeing; being unsuitable and inappropriate -04715075 07 n 01 irony 0 004 @ 04714847 n 0000 + 00563288 a 0101 + 00563288 a 0102 ~ 04715308 n 0000 | incongruity between what might be expected and what actually occurs; "the irony of Ireland's copying the nation she most hated" -04715308 07 n 01 Socratic_irony 0 001 @ 04715075 n 0000 | admission of your own ignorance and willingness to learn while exposing someone's inconsistencies by close questioning -04715487 07 n 02 suitability 0 suitableness 0 008 @ 04723816 n 0000 + 01020885 a 0201 + 00852197 a 0202 ! 04721058 n 0202 ! 04721058 n 0101 ~ 04715947 n 0000 ~ 04716864 n 0000 ~ 04718563 n 0000 | the quality of having the properties that are right for a specific purpose; "an important requirement is suitability for long trips" -04715818 07 n 01 arability 0 002 @ 04723816 n 0000 + 01865807 a 0101 | the quality of land that is appropriate for cultivation -04715947 07 n 01 appropriateness 0 010 @ 04715487 n 0000 + 00134701 a 0101 ! 04721650 n 0101 = 00134701 a 0000 = 00135718 a 0000 = 00138169 a 0000 = 00138622 a 0000 ~ 04716210 n 0000 ~ 04716491 n 0000 ~ 04716703 n 0000 | the quality of being specially suitable -04716210 07 n 02 felicity 0 felicitousness 0 008 @ 04715947 n 0000 + 01048406 a 0201 + 00999817 a 0201 + 00999817 a 0101 + 00881998 v 0102 ! 04722051 n 0101 = 00999817 a 0000 = 01000881 a 0000 | pleasing and appropriate manner or style (especially manner or style of expression) -04716491 07 n 02 aptness 0 appositeness 0 005 @ 04715947 n 0000 + 00138314 a 0201 ! 04721428 n 0202 + 00138314 a 0102 ! 04721428 n 0101 | appropriateness for the occasion; "the phrase had considerable aptness" -04716703 07 n 02 ticket 0 just_the_ticket 0 001 @ 04715947 n 0000 | the appropriate or desirable thing; "this car could be just the ticket for a small family" -04716864 07 n 02 fitness 0 fittingness 0 008 @ 04715487 n 0000 + 01879667 a 0201 + 01370141 a 0201 + 01931203 a 0101 + 01020393 a 0101 ! 04722373 n 0101 ~ 04717139 n 0000 ~ 04722231 n 0000 | the quality of being suitable; "they had to prove their fitness for the position" -04717139 07 n 02 qualification 0 making 0 007 @ 04716864 n 0000 + 00545953 v 0201 + 00972191 v 0101 + 01018928 v 0102 + 02679012 v 0101 ~ 04717552 n 0000 ~ 04718134 n 0000 | an attribute that must be met or complied with and that fits a person for something; "her qualifications for the job are excellent"; "one of the qualifications for admission is an academic degree"; "she has the makings of fine musician" -04717552 07 n 01 eligibility 0 005 @ 04717139 n 0000 + 00851744 a 0101 ! 04718134 n 0101 ~ 04717787 n 0000 ~ 04718030 n 0000 | the quality or state of being eligible; "eligibility of a candidate for office"; "eligibility for a loan" -04717787 07 n 01 insurability 0 002 @ 04717552 n 0000 ! 04718306 n 0101 | the quality of being insurable; the conditions under which an insurance company will issue insurance to an applicant (based on standards set by the insurance company) -04718030 07 n 01 marriageability 0 002 @ 04717552 n 0000 + 01489325 a 0101 | eligibility for marriage -04718134 07 n 01 ineligibility 0 005 @ 04717139 n 0000 + 01404042 a 0101 + 00852988 a 0101 ! 04717552 n 0101 ~ 04718306 n 0000 | the quality or state of being ineligible -04718306 07 n 01 uninsurability 0 002 @ 04718134 n 0000 ! 04717787 n 0101 | the quality of being uninsurable; the conditions under which an insurance company will refuse to issue insurance to an applicant (based on standards set by the insurance company) -04718563 07 n 01 convenience 0 007 @ 04715487 n 0000 + 00604617 a 0101 ! 04722715 n 0101 = 00604617 a 0000 = 00605128 a 0000 ~ 04718826 n 0000 ~ 04718999 n 0000 | the quality of being useful and convenient; "they offered the convenience of an installment plan" -04718826 07 n 03 opportuneness 0 patness 0 timeliness 0 005 @ 04718563 n 0000 + 01661529 a 0301 + 00135342 a 0201 + 01660994 a 0101 ! 04723107 n 0101 | timely convenience -04718999 07 n 04 handiness 0 accessibility 0 availability 0 availableness 0 014 @ 04718563 n 0000 + 00777650 a 0401 + 00183053 a 0401 + 00183053 a 0301 ! 04722910 n 0302 + 00183675 a 0201 ! 04722910 n 0201 + 00019731 a 0101 = 00019131 a 0000 = 00019874 a 0000 = 00183053 a 0000 = 00185921 a 0000 ~ 04719376 n 0000 ~ 06678146 n 0000 | the quality of being at hand when needed -04719376 07 n 01 command 2 001 @ 04718999 n 0000 | availability for use; "the materials at the command of the potters grew" -04719502 07 n 01 impressiveness 1 003 @ 04723816 n 0000 + 00835292 a 0101 + 01282014 a 0101 | the quality of making a strong or vivid impression on the mind -04719661 07 n 01 navigability 0 002 @ 04723816 n 0000 + 01724743 a 0101 | the quality of being suitable for the passage of a ship or aircraft -04719805 07 n 01 neediness 0 002 @ 04723816 n 0000 + 00710909 a 0101 | the quality of needing attention and affection and reassurance to a marked degree; "he recognized her neediness but had no time to respond to it" -04720024 07 n 02 painfulness 0 distressingness 0 004 @ 04723816 n 0000 + 00478685 a 0102 + 01711071 a 0101 ~ 04720226 n 0000 | the quality of being painful; "she feared the painfulness of childbirth" -04720226 07 n 01 sharpness 5 003 @ 04720024 n 0000 + 00842810 a 0101 + 00803038 a 0101 | the quality of being keenly and painfully felt; "the sharpness of her loss" -04720393 07 n 03 piquancy 1 piquance 1 piquantness 1 001 @ 04723816 n 0000 | the quality of being agreeably stimulating or mentally exciting -04720536 07 n 01 publicity 0 002 @ 04723816 n 0000 + 01861205 a 0101 | the quality of being open to public view; "the publicity of the court room" -04720685 07 n 01 spinnability 0 003 @ 04723816 n 0000 + 01023010 a 0101 ~ 04720879 n 0000 | the quality of being suitable for spinning or the capability of being spun (used of textile fibers) -04720879 07 n 01 spinnbarkeit 0 001 @ 04720685 n 0000 | the capacity of a viscous liquid (especially the cervical mucus) to be drawn out into a strand or blown up into a bubble -04721058 07 n 03 unsuitability 0 unsuitableness 0 ineptness 1 013 @ 04723816 n 0000 + 00063953 a 0301 + 00511526 a 0302 + 01021607 a 0201 + 00853473 a 0202 + 01129823 a 0201 ! 04715487 n 0202 + 01976851 a 0102 + 01021607 a 0101 ! 04715487 n 0101 ~ 04721650 n 0000 ~ 04722373 n 0000 ~ 04722715 n 0000 | the quality of having the wrong properties for a specific purpose -04721428 07 n 02 inaptness 0 inappositeness 0 005 @ 04721650 n 0000 + 00138782 a 0201 ! 04716491 n 0202 + 01001180 a 0104 ! 04716491 n 0101 | inappropriateness; "greater inaptness of expression would be hard to imagine" -04721650 07 n 02 inappropriateness 0 unworthiness 1 005 @ 04721058 n 0000 + 00135718 a 0101 ! 04715947 n 0101 ~ 04721428 n 0000 ~ 04722051 n 0000 | the quality of being not particularly suitable or befitting; "he retracted nothing that he had said about the inappropriateness of either a corporeal God or a God who is a person"; "his praise released from her loud protestations of her unworthiness" -04722051 07 n 01 infelicity 0 003 @ 04721650 n 0000 + 01000881 a 0101 ! 04716210 n 0101 | inappropriate and unpleasing manner or style (especially manner or style of expression) -04722231 07 n 02 habitability 0 habitableness 0 003 @ 04716864 n 0000 + 01423851 a 0201 + 01423851 a 0101 | suitability for living in or on -04722373 07 n 01 unfitness 0 004 @ 04721058 n 0000 + 01021301 a 0101 ! 04716864 n 0101 ~ 04722574 n 0000 | the quality of not being suitable; "the judges agreed on his unfitness for the appointment" -04722574 07 n 01 disqualification 0 003 @ 04722373 n 0000 + 00972608 v 0101 + 00301338 v 0101 | unfitness that bars you from participation -04722715 07 n 01 inconvenience 0 006 @ 04721058 n 0000 + 00605128 a 0101 + 02507736 v 0103 ! 04718563 n 0101 ~ 04722910 n 0000 ~ 04723107 n 0000 | the quality of not being useful or convenient -04722910 07 n 02 inaccessibility 0 unavailability 0 005 @ 04722715 n 0000 + 00185921 a 0201 ! 04718999 n 0203 + 00186193 a 0101 ! 04718999 n 0102 | the quality of not being available when needed -04723107 07 n 02 inopportuneness 0 untimeliness 0 004 @ 04722715 n 0000 + 01662119 a 0203 + 01661914 a 0101 ! 04718826 n 0101 | the quality of occurring at an inconvenient time -04723286 07 n 01 ethos 0 002 @ 00024264 n 0000 ;c 06143546 n 0000 | (anthropology) the distinctive spirit of a culture or an era; "the Greek ethos" -04723436 07 n 01 eidos 0 002 @ 00024264 n 0000 ;c 06143546 n 0000 | (anthropology) the distinctive expression of the cognitive or intellectual character of a culture or a social group -04723622 07 n 01 protectiveness 0 003 @ 04723816 n 0000 + 00311187 a 0101 + 01887076 a 0101 | the quality of providing protection; "statistical evidence for the protectiveness of vaccination" -04723816 07 n 01 quality 0 153 @ 00024264 n 0000 + 00956687 v 0101 = 01123148 a 0000 = 01125429 a 0000 = 01817500 a 0000 = 01818234 a 0000 ~ 04673965 n 0000 ~ 04688246 n 0000 ~ 04701460 n 0000 ~ 04703424 n 0000 ~ 04705013 n 0000 ~ 04708113 n 0000 ~ 04709253 n 0000 ~ 04712405 n 0000 ~ 04715487 n 0000 ~ 04715818 n 0000 ~ 04719502 n 0000 ~ 04719661 n 0000 ~ 04719805 n 0000 ~ 04720024 n 0000 ~ 04720393 n 0000 ~ 04720536 n 0000 ~ 04720685 n 0000 ~ 04721058 n 0000 ~ 04723622 n 0000 ~ 04726724 n 0000 ~ 04726938 n 0000 ~ 04727214 n 0000 ~ 04728786 n 0000 ~ 04728999 n 0000 ~ 04731497 n 0000 ~ 04732237 n 0000 ~ 04733640 n 0000 ~ 04737934 n 0000 ~ 04742535 n 0000 ~ 04748836 n 0000 ~ 04753455 n 0000 ~ 04756172 n 0000 ~ 04756887 n 0000 ~ 04759428 n 0000 ~ 04759712 n 0000 ~ 04760771 n 0000 ~ 04761517 n 0000 ~ 04762633 n 0000 ~ 04764412 n 0000 ~ 04766059 n 0000 ~ 04766275 n 0000 ~ 04767347 n 0000 ~ 04770211 n 0000 ~ 04773351 n 0000 ~ 04776299 n 0000 ~ 04778630 n 0000 ~ 04779649 n 0000 ~ 04782878 n 0000 ~ 04784142 n 0000 ~ 04784664 n 0000 ~ 04785669 n 0000 ~ 04785908 n 0000 ~ 04787530 n 0000 ~ 04789613 n 0000 ~ 04789689 n 0000 ~ 04790449 n 0000 ~ 04792127 n 0000 ~ 04793355 n 0000 ~ 04794751 n 0000 ~ 04796490 n 0000 ~ 04799133 n 0000 ~ 04799344 n 0000 ~ 04799881 n 0000 ~ 04800359 n 0000 ~ 04801168 n 0000 ~ 04802198 n 0000 ~ 04802403 n 0000 ~ 04802907 n 0000 ~ 04803209 n 0000 ~ 04804451 n 0000 ~ 04806655 n 0000 ~ 04808639 n 0000 ~ 04809089 n 0000 ~ 04809784 n 0000 ~ 04810865 n 0000 ~ 04812268 n 0000 ~ 04812636 n 0000 ~ 04815321 n 0000 ~ 04816302 n 0000 ~ 04819026 n 0000 ~ 04819694 n 0000 ~ 04822223 n 0000 ~ 04828925 n 0000 ~ 04830102 n 0000 ~ 04846770 n 0000 ~ 04850589 n 0000 ~ 04854893 n 0000 ~ 04854976 n 0000 ~ 04855138 n 0000 ~ 04855524 n 0000 ~ 04855840 n 0000 ~ 04872826 n 0000 ~ 04876985 n 0000 ~ 04878861 n 0000 ~ 04880273 n 0000 ~ 04880573 n 0000 ~ 04937587 n 0000 ~ 04940730 n 0000 ~ 04942516 n 0000 ~ 04947888 n 0000 ~ 05022359 n 0000 ~ 05066867 n 0000 ~ 05098225 n 0000 ~ 05112474 n 0000 ~ 05112609 n 0000 ~ 05138208 n 0000 ~ 05139561 n 0000 ~ 05142180 n 0000 ~ 05144079 n 0000 ~ 05147381 n 0000 ~ 05148186 n 0000 ~ 05148699 n 0000 ~ 05150588 n 0000 ~ 05154517 n 0000 ~ 05165745 n 0000 ~ 05165904 n 0000 ~ 05166805 n 0000 ~ 05167618 n 0000 ~ 05167927 n 0000 ~ 05168063 n 0000 ~ 05190804 n 0000 ~ 05200169 n 0000 ~ 05204637 n 0000 ~ 05207130 n 0000 ~ 05208422 n 0000 ~ 05209113 n 0000 ~ 05209324 n 0000 ~ 05209659 n 0000 ~ 05209822 n 0000 ~ 05210221 n 0000 ~ 05210373 n 0000 ~ 05210534 n 0000 ~ 05210820 n 0000 ~ 05211044 n 0000 ~ 05211254 n 0000 ~ 05211451 n 0000 ~ 05212362 n 0000 ~ 05212493 n 0000 ~ 05212609 n 0000 ~ 05212973 n 0000 ~ 05213201 n 0000 ~ 05214121 n 0000 ~ 05214851 n 0000 ~ 05215257 n 0000 ~ 05215921 n 0000 ~ 05216102 n 0000 ~ 05216240 n 0000 | an essential and distinguishing attribute of something or someone; "the quality of mercy is not strained"--Shakespeare -04726724 07 n 01 nature 2 002 @ 04723816 n 0000 %p 04731497 n 0000 | the essential qualities or characteristics by which something is recognized; "it is the nature of fire to burn"; "the true nature of jealousy" -04726938 07 n 03 humanness 0 humanity 2 manhood 0 008 @ 04723816 n 0000 + 02743391 a 0201 + 01258617 a 0201 + 02743391 a 0101 + 02743261 a 0101 + 01258617 a 0101 = 01258617 a 0000 = 01260023 a 0000 | the quality of being human; "he feared the speedy decline of all manhood" -04727214 07 n 03 air 0 aura 1 atmosphere 0 004 @ 04723816 n 0000 ~ 04727559 n 0000 ~ 04727694 n 0000 ~ 04727883 n 0000 | a distinctive but intangible quality surrounding a person or thing; "an air of mystery"; "the house had a neglected air"; "an atmosphere of defeat pervaded the candidate's headquarters"; "the place had an aura of romance" -04727559 07 n 01 mystique 0 001 @ 04727214 n 0000 | an aura of heightened value or interest or meaning surrounding a person or thing -04727694 07 n 01 note 0 001 @ 04727214 n 0000 | a characteristic emotional quality; "it ended on a sour note"; "there was a note of gaiety in her manner"; "he detected a note of sarcasm" -04727883 07 n 02 vibration 0 vibe 0 001 @ 04727214 n 0000 | a distinctive emotional aura experienced instinctively; "that place gave me bad vibrations"; "it gave me a nostalgic vibe" -04728068 07 n 03 quality 2 caliber 0 calibre 0 008 @ 05093890 n 0000 + 02679012 v 0101 + 00972191 v 0101 + 00300761 v 0101 = 02341266 a 0000 = 02345272 a 0000 ~ 04728376 n 0000 ~ 04730580 n 0000 | a degree or grade of excellence or worth; "the quality of students has risen"; "an executive of low caliber" -04728376 07 n 02 superiority 0 high_quality 0 008 @ 04728068 n 0000 ! 04730580 n 0202 + 02341266 a 0101 ! 04730580 n 0101 ~ 04728604 n 0000 ~ 04730191 n 0000 ~ 04730285 n 0000 ~ 04730367 n 0000 | the quality of being superior -04728604 07 n 02 fineness 3 choiceness 0 002 @ 04728376 n 0000 + 02342899 a 0201 | the quality of being very good indeed; "the inn is distinguished by the fineness of its cuisine" -04728786 07 n 01 excellence 0 006 @ 04723816 n 0000 + 02343110 a 0101 + 02673965 v 0101 ~ 04729127 n 0000 ~ 04729328 n 0000 ~ 04811995 n 0000 | the quality of excelling; possessing good qualities in high degree -04728999 07 n 01 ultimate 0 001 @ 04723816 n 0000 | the finest or most superior quality of its kind; "the ultimate in luxury" -04729127 07 n 03 admirability 0 admirableness 0 wonderfulness 0 006 @ 04728786 n 0000 + 01676517 a 0309 + 01807605 a 0201 + 00904290 a 0201 + 01807605 a 0101 + 00904290 a 0101 | admirable excellence -04729328 07 n 04 impressiveness 0 grandness 2 magnificence 2 richness 4 010 @ 04728786 n 0000 + 02501693 a 0401 + 02024758 a 0401 + 01285376 a 0303 + 02024928 a 0203 + 01387149 a 0201 + 01278251 a 0201 + 01282014 a 0101 ~ 04729710 n 0000 ~ 04729984 n 0000 | splendid or imposing in size or appearance; "the grandness of the architecture"; "impressed by the richness of the flora" -04729710 07 n 02 expansiveness 2 expansivity 2 004 @ 04729328 n 0000 + 01284544 a 0201 + 01284544 a 0101 + 00946499 a 0101 | a quality characterized by magnificence of scale or the tendency to expand; "the expansiveness of their extravagant life style was soon curtailed" -04729984 07 n 03 stateliness 2 majesty 0 loftiness 2 006 @ 04729328 n 0000 + 01285136 a 0302 + 01205473 a 0302 + 01285136 a 0203 + 02386418 a 0101 + 01283508 a 0104 | impressiveness in scale or proportion -04730191 07 n 01 first_class 0 001 @ 04728376 n 0000 | the highest rank in a classification -04730285 07 n 01 first_water 0 001 @ 04728376 n 0000 | the highest quality gems -04730367 07 n 03 ingenuity 0 ingeniousness 0 cleverness 0 003 @ 04728376 n 0000 + 00061885 a 0301 + 00061885 a 0203 | the property of being ingenious; "a plot of great ingenuity"; "the cleverness of its design" -04730580 07 n 02 inferiority 0 low_quality 0 008 @ 04728068 n 0000 ! 04728376 n 0202 + 02345272 a 0101 ! 04728376 n 0101 ~ 04730797 n 0000 ~ 04730985 n 0000 ~ 04731207 n 0000 ~ 04731309 n 0000 | an inferior quality -04730797 07 n 01 poorness 1 002 @ 04730580 n 0000 + 01128719 a 0101 | the quality of being poorly made or maintained; "she was unrecognizable because of the poorness of the photography" -04730985 07 n 02 scrawniness 1 scrubbiness 0 004 @ 04730580 n 0000 + 02574294 a 0202 + 02347915 a 0202 + 02347915 a 0101 | the property of being stunted and inferior in size or quality; "the scrawniness of sickly trees" -04731207 07 n 01 second_class 0 001 @ 04730580 n 0000 | not the highest quality in a classification -04731309 07 n 01 wretchedness 0 002 @ 04730580 n 0000 + 02347086 a 0105 | the quality of being poor and inferior and sorry; "he has compiled a record second to none in its wretchedness" -04731497 07 n 01 characteristic 0 020 @ 04723816 n 0000 #p 04726724 n 0000 + 00356926 a 0101 ~ 04673668 n 0000 ~ 04712735 n 0000 ~ 04714440 n 0000 ~ 04731925 n 0000 ~ 04732067 n 0000 ~ 04732543 n 0000 ~ 04732852 n 0000 ~ 04733118 n 0000 ~ 04856308 n 0000 ~ 04856460 n 0000 ~ 04856721 n 0000 ~ 04856899 n 0000 ~ 04918210 n 0000 ~ 04919209 n 0000 ~ 04920000 n 0000 ~ 04920237 n 0000 ~ 04920435 n 0000 | a distinguishing quality -04731925 07 n 02 point 1 spot 2 001 @ 04731497 n 0000 | an outstanding characteristic; "his acting was one of the high points of the movie" -04732067 07 n 01 point 2 002 @ 04731497 n 0000 ~ 04732386 n 0000 | a distinguishing or individuating characteristic; "he knows my bad points as well as my good points" -04732237 07 n 02 salability 0 salableness 0 003 @ 04723816 n 0000 + 02061799 a 0201 + 02061799 a 0101 | the quality of being salable or marketable -04732386 07 n 01 selling_point 0 001 @ 04732067 n 0000 | a characteristic of something that is up for sale that makes it attractive to potential customers -04732543 07 n 04 hallmark 0 trademark 0 earmark 0 stylemark 0 003 @ 04731497 n 0000 + 00724150 v 0303 ~ 04732709 n 0000 | a distinctive characteristic or attribute -04732709 07 n 02 mold 0 mould 0 001 @ 04732543 n 0000 | a distinctive nature, character, or type; "a leader in the mold of her predecessors" -04732852 07 n 01 saving_grace 0 001 @ 04731497 n 0000 | a redeeming quality or characteristic; "her love of music remains her one saving grace"; "her sense of humor has to be a saving grace"; "the saving grace for both developments is that they are creating jobs" -04733118 07 n 01 aspect 2 001 @ 04731497 n 0000 | a characteristic to be considered -04733204 07 n 01 gaseousness 0 004 @ 04934546 n 0000 + 02262542 a 0101 ~ 04733347 n 0000 ~ 04733539 n 0000 | having the consistency of a gas -04733347 07 n 03 bubbliness 0 effervescence 0 frothiness 0 005 @ 04733204 n 0000 + 02276088 a 0201 + 00519363 v 0204 + 02276305 a 0102 + 02276305 a 0305 | the property of giving off bubbles -04733539 07 n 01 foaminess 0 002 @ 04733204 n 0000 + 02276305 a 0104 | the property of being foamy -04733640 07 n 02 changeableness 0 changeability 0 019 @ 04723816 n 0000 + 02504558 a 0201 + 00356339 a 0202 + 02504558 a 0101 + 00403072 a 0101 + 00356339 a 0102 + 00344125 a 0101 ! 04737934 n 0101 = 00344125 a 0000 = 00346991 a 0000 ~ 04734145 n 0000 ~ 04734272 n 0000 ~ 04734551 n 0000 ~ 04734698 n 0000 ~ 04734885 n 0000 ~ 04735233 n 0000 ~ 04735929 n 0000 ~ 04737743 n 0000 ~ 04741311 n 0000 | the quality of being changeable; having a marked tendency to change; "the changeableness of the weather" -04734145 07 n 02 commutability 0 transmutability 0 002 @ 04733640 n 0000 + 00348537 a 0204 | the quality of being commutable -04734272 07 n 02 fluidity 1 fluidness 1 002 @ 04733640 n 0000 + 00345494 a 0201 | a changeable quality; "a charming Oriental fluidity of manner"; "a certain fluidness in his perception of time made him an unpredictable colleague"; "demographers try to predict social fluidity" -04734551 07 n 01 reversibility 0 003 @ 04733640 n 0000 + 00346626 a 0101 ! 04739768 n 0101 | the quality of being reversible in either direction -04734698 07 n 01 shiftiness 1 002 @ 04733640 n 0000 + 02305176 a 0102 | the quality of being changeable in direction; "the shiftiness of the wind caused the boat to veer unpredictably" -04734885 07 n 02 inconstancy 0 changefulness 0 005 @ 04733640 n 0000 + 00344125 a 0202 + 00583990 a 0101 ! 04738641 n 0101 ~ 04735075 n 0000 | the quality of being changeable and variable -04735075 07 n 02 capriciousness 2 unpredictability 2 002 @ 04734885 n 0000 + 01842304 a 0101 | the quality of being guided by sudden unpredictable impulses -04735233 07 n 03 variability 0 variableness 0 variance 1 012 @ 04733640 n 0000 + 02507515 a 0302 + 02507515 a 0202 + 01028796 a 0201 + 02504131 a 0201 ! 04739932 n 0202 + 01028796 a 0101 + 02504131 a 0101 ! 04739932 n 0101 ~ 04735556 n 0000 ~ 04735828 n 0000 ~ 04773068 n 0000 | the quality of being subject to variation -04735556 07 n 01 variedness 0 005 @ 04735233 n 0000 + 00783469 a 0101 + 00355083 a 0101 + 02506555 a 0101 ! 04740173 n 0101 | characterized by variation -04735711 07 n 01 diversity 1 002 @ 13920835 n 0000 + 00436404 v 0101 | the condition or result of being changeable -04735828 07 n 01 variegation 0 002 @ 04735233 n 0000 + 00581509 v 0101 | variability in coloration -04735929 07 n 04 exchangeability 0 interchangeability 0 interchangeableness 0 fungibility 0 014 @ 04733640 n 0000 + 00917956 a 0401 + 02372697 a 0301 + 01978532 a 0302 + 01978532 a 0202 + 00916706 a 0102 ! 04740864 n 0101 ~ 04736337 n 0000 ~ 04736516 n 0000 ~ 04736757 n 0000 ~ 04737020 n 0000 ~ 04737234 n 0000 ~ 04737430 n 0000 ~ 04737568 n 0000 | the quality of being capable of exchange or interchange -04736337 07 n 01 duality 1 002 @ 04735929 n 0000 ;c 06004685 n 0000 | (geometry) the interchangeability of the roles of points and planes in the theorems of projective geometry -04736516 07 n 01 transferability 0 002 @ 04735929 n 0000 + 00093556 a 0104 | the quality of being transferable or exchangeable; "sterling transferability affords a means of multilateral settlement for....trade between nondollar countries" -04736757 07 n 01 convertibility 0 005 @ 04735929 n 0000 + 00916706 a 0101 ! 04737020 n 0101 = 00916706 a 0000 = 00917207 a 0000 | the quality of being exchangeable (especially the ability to convert a currency into gold or other currencies without restriction) -04737020 07 n 01 inconvertibility 0 003 @ 04735929 n 0000 + 00917207 a 0101 ! 04736757 n 0101 | the quality of not being exchangeable; "the inconvertibility of their currency made international trade impossible" -04737234 07 n 03 replaceability 0 substitutability 0 commutability 1 004 @ 04735929 n 0000 + 00917768 a 0301 + 00917768 a 0202 + 01978395 a 0101 | exchangeability by virtue of being replaceable -04737430 07 n 01 liquidity 1 002 @ 04735929 n 0000 + 00778017 a 0102 | being in cash or easily convertible to cash; debt paying ability -04737568 07 n 03 permutability 0 permutableness 0 transposability 0 004 @ 04735929 n 0000 + 00918200 a 0301 + 00918200 a 0202 + 00918200 a 0102 | ability to change sequence -04737743 07 n 02 progressiveness 0 progressivity 0 004 @ 04733640 n 0000 + 00576189 a 0201 + 00576189 a 0101 + 01876006 a 0101 | advancement toward better conditions or policies or methods -04737934 07 n 04 changelessness 0 unchangeability 0 unchangeableness 0 unchangingness 0 016 @ 04723816 n 0000 + 00348018 a 0403 + 00577782 a 0401 + 00346991 a 0301 + 00346991 a 0201 + 00347400 a 0101 + 00356648 a 0102 ! 04733640 n 0101 ~ 04738398 n 0000 ~ 04738641 n 0000 ~ 04739630 n 0000 ~ 04739768 n 0000 ~ 04739932 n 0000 ~ 04740655 n 0000 ~ 04740864 n 0000 ~ 04741807 n 0000 | the quality of being unchangeable; having a marked tendency to remain unchanged -04738398 07 n 01 absoluteness 0 006 @ 04737934 n 0000 + 00520892 a 0101 + 00897015 a 0101 + 00094069 a 0101 + 00719328 a 0101 + 00005205 a 0101 | the quality of being absolute; "the absoluteness of the pope's decree could not be challenged" -04738641 07 n 02 constancy 0 stability 1 010 @ 04737934 n 0000 + 00348018 a 0202 + 02290998 a 0201 + 02506029 a 0102 ! 04734885 n 0101 = 00583239 a 0000 = 00583990 a 0000 ~ 04738995 n 0000 ~ 04739262 n 0000 ~ 04739535 n 0000 | the quality of being enduring and free from change or variation; "early mariners relied on the constancy of the trade winds" -04738995 07 n 01 invariance 1 003 @ 04738641 n 0000 ;c 06000644 n 0000 + 02506408 a 0101 | the nature of a quantity or property or function that remains unchanged when a given transformation is applied to it; "the invariance of the configuration under translation" -04739262 07 n 01 metastability 0 002 @ 04738641 n 0000 ;c 06090869 n 0000 | the quality of a physical system that persists in its existing equilibrium when undisturbed (or only slightly disturbed) but able to pass to a more stable equilibrium when sufficiently disturbed -04739535 07 n 01 monotony 1 001 @ 04738641 n 0000 | constancy of tone or pitch or inflection -04739630 07 n 01 innateness 0 004 @ 04737934 n 0000 + 01335708 a 0103 + 01315844 a 0103 + 01637184 a 0102 | the quality of being innate -04739768 07 n 01 irreversibility 0 003 @ 04737934 n 0000 + 01759362 a 0101 ! 04734551 n 0101 | the quality of being irreversible (once done it cannot be changed) -04739932 07 n 03 invariability 0 invariableness 0 invariance 0 007 @ 04737934 n 0000 + 02506029 a 0303 + 02505716 a 0201 ! 04735233 n 0202 + 02505716 a 0101 ! 04735233 n 0101 ~ 04740173 n 0000 | the quality of being resistant to variation -04740173 07 n 01 unvariedness 0 004 @ 04739932 n 0000 + 02507968 a 0101 ! 04735556 n 0101 ~ 04740326 n 0000 | characterized by an absence of variation -04740326 07 n 03 monotony 0 humdrum 0 sameness 2 002 @ 04740173 n 0000 + 00355611 a 0301 | the quality of wearisome constancy, routine, and lack of variety; "he had never grown accustomed to the monotony of his work"; "he was sick of the humdrum of his fellow prisoners"; "he hated the sameness of the food the college served" -04740655 07 n 02 fixedness 2 unalterability 1 004 @ 04737934 n 0000 + 00347400 a 0202 + 00349523 a 0201 + 00740217 a 0101 | the quality of being fixed and unchangeable; "the fixedness of his gaze upset her" -04740864 07 n 01 unexchangeability 0 006 @ 04737934 n 0000 + 00917207 a 0103 + 00918491 a 0101 ! 04735929 n 0101 ~ 04741075 n 0000 ~ 04741195 n 0000 | the quality of being incapable of exchange or interchange -04741075 07 n 01 incommutability 0 002 @ 04740864 n 0000 + 00918616 a 0101 | the quality of being not interchangeable -04741195 07 n 01 irreplaceableness 0 002 @ 04740864 n 0000 + 01978894 a 0101 | the quality of being irreplaceable -04741311 07 n 02 mutability 0 mutableness 0 007 @ 04733640 n 0000 + 00356339 a 0201 ! 04741807 n 0202 + 00356339 a 0101 ! 04741807 n 0101 ~ 04741530 n 0000 ~ 04741655 n 0000 | the quality of being capable of mutation -04741530 07 n 01 alterability 0 003 @ 04741311 n 0000 + 00349295 a 0101 ! 04742084 n 0101 | the quality of being alterable -04741655 07 n 01 vicissitude 0 001 @ 04741311 n 0000 | mutability in life or nature (especially successive alternation from one condition to another) -04741807 07 n 03 immutability 0 immutableness 0 fixity 1 007 @ 04737934 n 0000 + 00356648 a 0201 ! 04741311 n 0202 + 00356648 a 0101 ! 04741311 n 0101 ~ 04742084 n 0000 ~ 04742418 n 0000 | the quality of being incapable of mutation; "Darwin challenged the fixity of species" -04742084 07 n 01 unalterability 0 005 @ 04741807 n 0000 + 00347400 a 0102 + 00349523 a 0101 ! 04741530 n 0101 ~ 04742251 n 0000 | the quality of not being alterable -04742251 07 n 01 incurability 2 002 @ 04742084 n 0000 + 00349759 a 0101 | incapability of being altered in disposition or habits; "the incurability of his optimism" -04742418 07 n 01 agelessness 0 002 @ 04741807 n 0000 + 01755024 a 0101 | the quality of being timeless and eternal -04742535 07 n 01 sameness 0 007 @ 04723816 n 0000 + 02062670 a 0101 ! 04748836 n 0101 = 02062670 a 0000 ~ 04743024 n 0000 ~ 04743605 n 0000 ~ 04747899 n 0000 | the quality of being alike; "sameness of purpose kept them together" -04742766 07 n 03 otherness 0 distinctness 1 separateness 0 005 @ 04748836 n 0000 + 01327371 a 0301 + 02067063 a 0201 + 00969333 a 0101 = 02069355 a 0000 | the quality of being not alike; being distinct or different from that otherwise experienced or known -04743024 07 n 03 identity 2 identicalness 0 indistinguishability 0 012 @ 04742535 n 0000 + 02064127 a 0302 + 02068946 a 0201 + 02064127 a 0201 + 01360962 a 0201 + 00292448 a 0201 + 02068946 a 0101 + 02064127 a 0101 + 00691944 v 0101 + 00618451 v 0101 ~ 04743370 n 0000 ~ 04743486 n 0000 | exact sameness; "they shared an identity of interests" -04743370 07 n 02 oneness 0 unity 0 002 @ 04743024 n 0000 + 02477885 a 0101 | the quality of being united into one -04743486 07 n 01 selfsameness 0 002 @ 04743024 n 0000 + 02068946 a 0102 | the quality of being identical with itself -04743605 07 n 01 similarity 0 020 @ 04742535 n 0000 + 02381495 a 0101 + 01978532 a 0103 + 01410606 a 0102 + 01409581 a 0102 + 02071420 a 0101 ! 04750164 n 0101 = 02071420 a 0000 = 02073113 a 0000 ~ 04744032 n 0000 ~ 04744161 n 0000 ~ 04744319 n 0000 ~ 04744555 n 0000 ~ 04744645 n 0000 ~ 04744814 n 0000 ~ 04745240 n 0000 ~ 04745370 n 0000 ~ 04746134 n 0000 ~ 04746262 n 0000 ~ 04746430 n 0000 | the quality of being similar -04744032 07 n 01 approximation 0 001 @ 04743605 n 0000 | the quality of coming near to identity (especially close in quantity) -04744161 07 n 01 homogeny 0 004 @ 04743605 n 0000 ;c 06037666 n 0000 + 01199751 a 0102 + 01199751 a 0101 | (biology) similarity because of common evolution -04744319 07 n 01 homology 0 006 @ 04743605 n 0000 + 01220882 a 0101 + 01220052 a 0101 + 01220882 a 0102 + 02699783 v 0101 + 00417482 v 0101 | the quality of being similar or corresponding in position or value or structure or function -04744555 07 n 02 homomorphism 0 homomorphy 0 001 @ 04743605 n 0000 | similarity of form -04744645 07 n 02 isomorphism 0 isomorphy 0 003 @ 04743605 n 0000 ;c 06037666 n 0000 + 02828917 a 0201 | (biology) similarity or identity of form or shape or structure -04744814 07 n 03 likeness 0 alikeness 0 similitude 0 014 @ 04743605 n 0000 ! 04750764 n 0302 + 01410606 a 0201 + 02063554 a 0103 + 01410606 a 0103 + 01409581 a 0101 ! 04750764 n 0101 = 01410606 a 0000 = 01410905 a 0000 ~ 04746842 n 0000 ~ 04747115 n 0000 ~ 04747246 n 0000 ~ 04747445 n 0000 ~ 04747616 n 0000 | similarity in appearance or character or nature between persons or things; "man created God in his own likeness" -04745240 07 n 02 parallelism 0 correspondence 1 002 @ 04743605 n 0000 + 02071973 a 0202 | similarity by virtue of corresponding -04745370 07 n 02 uniformity 0 uniformness 0 010 @ 04743605 n 0000 + 01200095 a 0202 + 01966488 a 0201 + 01960310 a 0101 + 01200095 a 0102 + 00744506 a 0102 + 01966488 a 0101 ! 04750940 n 0101 ~ 04745679 n 0000 ~ 04745932 n 0000 | the quality of lacking diversity or variation (even to the point of boredom) -04745679 07 n 02 homogeneity 0 homogeneousness 0 004 @ 04745370 n 0000 + 01199751 a 0201 + 01199751 a 0101 ! 04751098 n 0101 | the quality of being similar or comparable in kind or nature; "there is a remarkable homogeneity between the two companies" -04745932 07 n 02 consistency 2 consistence 2 005 @ 04745370 n 0000 + 00464513 a 0202 + 02658050 v 0201 + 02658050 v 0101 ! 04751847 n 0101 | a harmonious uniformity or agreement among things or parts -04746134 07 n 01 approach 1 002 @ 04743605 n 0000 + 02703952 v 0102 | a close approximation; "the nearest approach to genius" -04746262 07 n 01 sort 0 001 @ 04743605 n 0000 | an approximate definition or example; "she wore a sort of magenta dress"; "she served a creamy sort of dessert thing" -04746430 07 n 03 analogue 0 analog 0 parallel 0 003 @ 04743605 n 0000 + 02659222 v 0301 ~ 04746607 n 0000 | something having the property of being analogous to something else -04746607 07 n 01 echo 2 001 @ 04746430 n 0000 | a close parallel of a feeling, idea, style, etc.; "his contention contains more than an echo of Rousseau"; "Napoleon III was an echo of the mighty Emperor but an infinitely better man" -04746842 07 n 04 comparison 0 compare 0 equivalence 1 comparability 0 006 @ 04744814 n 0000 + 00503982 a 0401 + 02729632 v 0201 + 00653620 v 0201 + 00652900 v 0201 + 00653620 v 0101 | qualities that are comparable; "no comparison between the two books"; "beyond compare" -04747115 07 n 03 mirror_image 0 reflection 2 reflexion 2 001 @ 04744814 n 0000 | a likeness in which left and right are reversed -04747246 07 n 01 naturalness 1 002 @ 04744814 n 0000 + 01570892 a 0101 | the likeness of a representation to the thing represented; "engineers strove to increase the naturalness of recorded music" -04747445 07 n 01 resemblance 0 004 @ 04744814 n 0000 + 02665282 v 0101 ~ 04747710 n 0000 ~ 04747798 n 0000 | similarity in appearance or external or superficial details -04747616 07 n 01 spitting_image 0 001 @ 04744814 n 0000 | a perfect likeness or counterpart -04747710 07 n 01 mutual_resemblance 0 001 @ 04747445 n 0000 | symmetrical resemblance -04747798 07 n 01 affinity 1 001 @ 04747445 n 0000 | inherent resemblance between persons or things -04747899 07 n 01 equality 0 010 @ 04742535 n 0000 + 00889831 a 0101 ! 04752221 n 0101 = 00889831 a 0000 = 00892379 a 0000 ~ 04748187 n 0000 ~ 04748273 n 0000 ~ 04748498 n 0000 ~ 04748654 n 0000 ~ 13408980 n 0000 | the quality of being the same in quantity or measure or value or status -04748187 07 n 01 equatability 0 001 @ 04747899 n 0000 | capability of being equated -04748273 07 n 01 equivalence 2 004 @ 04747899 n 0000 + 00890351 a 0101 ! 04752414 n 0101 ~ 04748426 n 0000 | essential equality and interchangeability -04748426 07 n 01 parity 0 001 @ 04748273 n 0000 | functional equality -04748498 07 n 01 evenness 2 005 @ 04747899 n 0000 + 00892243 a 0102 + 00891170 a 0101 + 00909545 a 0101 ! 04753331 n 0101 | the quality of being balanced -04748654 07 n 01 isometry 0 003 @ 04747899 n 0000 + 00891807 a 0101 + 00891807 a 0102 | equality of measure (e.g., equality of height above sea level or equality of loudness etc.) -04748836 07 n 01 difference 0 019 @ 04723816 n 0000 + 02712922 a 0101 + 01410363 a 0103 + 02064745 a 0101 + 00651991 v 0103 + 00650353 v 0103 + 00119524 v 0101 + 00119074 v 0101 + 02666239 v 0101 ! 04742535 n 0101 = 02064745 a 0000 ~ 04742766 n 0000 ~ 04749310 n 0000 ~ 04749439 n 0000 ~ 04749572 n 0000 ~ 04749709 n 0000 ~ 04750164 n 0000 ~ 04752034 n 0000 ~ 04752221 n 0000 | the quality of being unlike or dissimilar; "there are many differences between jazz and rock" -04749310 07 n 01 differential 0 002 @ 04748836 n 0000 + 02712922 a 0101 | a quality that differentiates between similar things -04749439 07 n 01 differentia 0 001 @ 04748836 n 0000 | distinguishing characteristics (especially in different species of a genus) -04749572 07 n 01 distinction 0 001 @ 04748836 n 0000 | a distinguishing difference; "he learned the distinction between gold and lead" -04749709 07 n 04 discrepancy 0 disagreement 0 divergence 1 variance 0 006 @ 04748836 n 0000 + 02066662 a 0301 + 00578523 a 0101 + 00562803 a 0101 + 00554098 a 0102 ~ 04749991 n 0000 | a difference between conflicting facts or claims or opinions; "a growing divergence of opinion" -04749991 07 n 04 allowance 0 leeway 0 margin 1 tolerance 2 002 @ 04749709 n 0000 + 00802946 v 0101 | a permissible difference; allowing some freedom to move within limits -04750164 07 n 02 dissimilarity 0 unsimilarity 0 009 @ 04748836 n 0000 + 01410905 a 0102 + 01410363 a 0102 + 02073113 a 0101 ! 04743605 n 0101 ~ 04750414 n 0000 ~ 04750547 n 0000 ~ 04750764 n 0000 ~ 04750940 n 0000 | the quality of being dissimilar -04750414 07 n 02 disparateness 0 distinctiveness 1 003 @ 04750164 n 0000 + 01199476 a 0101 + 02066836 a 0101 | utter dissimilarity -04750547 07 n 01 heterology 0 006 @ 04750164 n 0000 ;c 06037666 n 0000 + 01221057 a 0102 + 01221057 a 0101 + 01220311 a 0101 + 01221057 a 0103 | (biology) the lack of correspondence of apparently similar body parts -04750764 07 n 02 unlikeness 0 dissimilitude 0 004 @ 04750164 n 0000 ! 04744814 n 0203 + 01410363 a 0101 ! 04744814 n 0101 | dissimilarity evidenced by an absence of likeness -04750940 07 n 01 nonuniformity 0 004 @ 04750164 n 0000 ! 04745370 n 0101 ~ 04751098 n 0000 ~ 04751847 n 0000 | the quality of being diverse and interesting -04751098 07 n 02 heterogeneity 0 heterogeneousness 0 005 @ 04750940 n 0000 + 01198737 a 0201 + 01198737 a 0101 ! 04745679 n 0101 ~ 04751305 n 0000 | the quality of being diverse and not comparable in kind -04751305 07 n 04 diverseness 0 diversity 2 multifariousness 0 variety 0 009 @ 04751098 n 0000 + 02506922 a 0304 + 02067719 a 0202 + 02067491 a 0201 + 00437125 v 0201 + 02067719 a 0102 = 02506555 a 0000 = 02507968 a 0000 ~ 04751652 n 0000 | noticeable heterogeneity; "a diversity of possibilities"; "the range and variety of his work is amazing" -04751652 07 n 01 biodiversity 0 001 @ 04751305 n 0000 | the diversity of plant and animal life in a particular habitat (or in the world as a whole); "a high level of biodiversity is desirable" -04751847 07 n 01 inconsistency 0 003 @ 04750940 n 0000 + 00577920 a 0101 ! 04745932 n 0101 | the quality of being inconsistent and lacking a harmonious uniformity among things or parts -04752034 07 n 02 variety 1 change 0 001 @ 04748836 n 0000 | a difference that is usually pleasant; "he goes to France for variety"; "it is a refreshing change to meet a woman mechanic" -04752221 07 n 01 inequality 0 005 @ 04748836 n 0000 ! 04747899 n 0101 ~ 04752414 n 0000 ~ 04752530 n 0000 ~ 04753331 n 0000 | lack of equality; "the growing inequality between rich and poor" -04752414 07 n 01 nonequivalence 0 003 @ 04752221 n 0000 + 00892976 a 0101 ! 04748273 n 0101 | not interchangeable -04752530 07 n 01 disparity 0 007 @ 04752221 n 0000 + 01199476 a 0101 + 02066836 a 0101 ~ 04752734 n 0000 ~ 04752859 n 0000 ~ 04753060 n 0000 ~ 13898509 n 0000 | inequality or difference in some respect -04752734 07 n 01 far_cry 1 001 @ 04752530 n 0000 | a disappointing disparity; "it was a far cry from what he had expected" -04752859 07 n 02 gap 0 spread 2 001 @ 04752530 n 0000 | a conspicuous disparity or difference as between two figures; "gap between income and outgo"; "the spread between lending and borrowing costs" -04753060 07 n 03 gulf 0 disconnect 0 disconnection 0 001 @ 04752530 n 0000 | an unbridgeable disparity (as from a failure of understanding); "he felt a gulf between himself and his former friends"; "there is a vast disconnect between public opinion and federal policy" -04753331 07 n 01 unevenness 2 003 @ 04752221 n 0000 + 00892773 a 0102 ! 04748498 n 0101 | the quality of being unbalanced -04753455 07 n 03 certainty 0 sure_thing 0 foregone_conclusion 0 012 @ 04723816 n 0000 ! 04756887 n 0101 = 00335421 a 0000 = 00336168 a 0000 ~ 04753799 n 0000 ~ 04753929 n 0000 ~ 04754056 n 0000 ~ 04754780 n 0000 ~ 04754862 n 0000 ~ 04755783 n 0000 ~ 04756025 n 0000 ~ 04757350 n 0000 | something that is certain; "his victory is a certainty" -04753799 07 n 01 cert 0 003 @ 04753455 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | an absolute certainty; "it's a dead cert" -04753929 07 n 02 ineluctability 0 unavoidability 0 001 @ 04753455 n 0000 | the quality of being impossible to avoid or evade -04754056 07 n 02 inevitability 0 inevitableness 0 005 @ 04753455 n 0000 + 01841834 a 0201 + 00343015 a 0201 + 01841834 a 0101 + 00343015 a 0101 | the quality of being unavoidable -04754237 07 n 02 determinateness 0 definiteness 0 005 @ 04756025 n 0000 + 00335768 a 0201 + 00550574 a 0102 + 00739932 a 0101 ~ 04754440 n 0000 | the quality of being predictable with great confidence -04754440 07 n 03 finality 0 conclusiveness 0 decisiveness 1 011 @ 04754237 n 0000 + 00701178 a 0301 + 00656132 a 0302 + 00684480 a 0301 + 00550282 a 0201 ! 04758181 n 0201 + 00349894 a 0101 + 01579128 a 0101 + 01010271 a 0102 = 00550282 a 0000 = 00550777 a 0000 | the quality of being final or definitely settled; "the finality of death" -04754780 07 n 01 surety 0 001 @ 04753455 n 0000 | something clearly established -04754862 07 n 04 indisputability 0 indubitability 0 unquestionability 0 unquestionableness 0 011 @ 04753455 n 0000 + 00897363 a 0401 + 01115635 a 0403 + 01918184 a 0401 + 01918184 a 0301 + 01918541 a 0202 + 00721636 a 0102 + 00335895 a 0101 ~ 04755218 n 0000 ~ 04755466 n 0000 ~ 04755630 n 0000 | the quality of being beyond question or dispute or doubt -04755218 07 n 04 incontrovertibility 0 incontrovertibleness 0 positivity 2 positiveness 2 005 @ 04754862 n 0000 + 00721838 a 0303 + 00721838 a 0201 + 00591147 a 0202 + 00721838 a 0101 | the quality of being undeniable and not worth arguing about -04755466 07 n 02 demonstrability 0 provability 0 003 @ 04754862 n 0000 + 01619105 a 0202 + 01619105 a 0101 | capability of being demonstrated or logically proved -04755630 07 n 01 givenness 0 002 @ 04754862 n 0000 + 00028280 a 0101 | the quality of being granted as a supposition; of being acknowledged or assumed -04755783 07 n 01 moral_certainty 0 001 @ 04753455 n 0000 | certainty based on an inner conviction; "she believed in the importance of moral absolutes and moral certainty"; "the prosecutor had a moral certainty that the prisoner was guilty" -04756025 07 n 01 predictability 0 004 @ 04753455 n 0000 + 01841544 a 0101 ! 04758313 n 0101 ~ 04754237 n 0000 | the quality of being predictable -04756172 07 n 01 probability 0 005 @ 04723816 n 0000 + 03102871 a 0101 + 01412134 a 0101 ! 04758452 n 0101 ~ 04756635 n 0000 | the quality of being probable; a probable event or the most probable event; "for a while mutiny seemed a probability"; "going by past experience there was a high probability that the visitors were lost" -04756504 07 n 01 odds 0 002 @ 04756635 n 0000 ;u 06295235 n 0000 | the likelihood of a thing occurring rather than not occurring -04756635 07 n 02 likelihood 0 likeliness 0 009 @ 04756172 n 0000 + 01884176 a 0201 + 01413247 a 0202 + 01411451 a 0201 ! 04758776 n 0202 ! 04758776 n 0101 = 01411451 a 0000 = 01412415 a 0000 ~ 04756504 n 0000 | the probability of a specified outcome -04756887 07 n 03 uncertainty 0 uncertainness 0 precariousness 1 015 @ 04723816 n 0000 + 00823192 a 0301 + 02095037 a 0301 + 00725522 a 0201 + 02087450 a 0202 + 00341405 a 0201 + 00337404 a 0201 + 00336168 a 0201 ! 04753455 n 0101 ~ 04757522 n 0000 ~ 04757864 n 0000 ~ 04758313 n 0000 ~ 04758452 n 0000 ~ 04758980 n 0000 ~ 04759134 n 0000 | being unsettled or in doubt or dependent on chance; "the uncertainty of the outcome"; "the precariousness of his income" -04757350 07 n 01 slam_dunk 0 002 @ 04753455 n 0000 + 02602685 v 0101 | something that is a sure to occur; a foregone conclusion; "predicting his success was a slam dunk" -04757522 07 n 04 doubt 0 dubiousness 0 doubtfulness 0 question 0 006 @ 04756887 n 0000 + 00925110 v 0402 + 00867409 v 0401 + 01916979 a 0301 + 01916979 a 0202 + 00687523 v 0101 | uncertainty about the truth or factuality or existence of something; "the dubiousness of his claim"; "there is no question about the validity of the enterprise" -04757864 07 n 05 indefiniteness 0 indeterminateness 0 indefinity 0 indetermination 0 indeterminacy 0 009 @ 04756887 n 0000 + 00701479 a 0301 + 00739495 a 0201 + 00551267 a 0201 + 00896378 a 0201 + 00740336 a 0201 + 00336564 a 0101 + 00701479 a 0101 ~ 04758181 n 0000 | the quality of being vague and poorly defined -04758181 07 n 01 inconclusiveness 0 003 @ 04757864 n 0000 + 00550777 a 0101 ! 04754440 n 0102 | the quality of being inconclusive -04758313 07 n 01 unpredictability 0 004 @ 04756887 n 0000 + 00739789 a 0101 + 01842001 a 0101 ! 04756025 n 0101 | lacking predictability -04758452 07 n 02 improbability 0 improbableness 0 007 @ 04756887 n 0000 + 00646117 a 0201 + 01800169 a 0201 + 01413871 a 0201 + 01413871 a 0101 ! 04756172 n 0101 ~ 04758776 n 0000 | the quality of being improbable; "impossibility should never be confused with improbability"; "the improbability of such rare coincidences" -04758776 07 n 02 unlikelihood 0 unlikeliness 0 006 @ 04758452 n 0000 + 01800169 a 0204 + 01413871 a 0202 + 01412415 a 0201 ! 04756635 n 0202 ! 04756635 n 0101 | the improbability of a specified outcome -04758980 07 n 01 fortuitousness 0 003 @ 04756887 n 0000 + 01339203 a 0102 + 01048587 a 0101 | the quality of happening accidentally and by lucky chance -04759134 07 n 01 speculativeness 0 002 @ 04756887 n 0000 + 00861818 a 0102 | the quality of being a conclusion or opinion based on supposition and conjecture rather than on fact or investigation; "her work is highly contentious because of its speculativeness and lack of supporting evidence" -04759428 07 n 02 factuality 1 factualness 0 006 @ 04723816 n 0000 + 01933731 a 0202 + 02899112 a 0201 + 01933731 a 0102 + 02899112 a 0101 ! 04759712 n 0101 | the quality of being actual or based on fact; "the realm of factuality must be distinguished from the realm of imagination" -04759712 07 n 01 counterfactuality 0 003 @ 04723816 n 0000 + 00555709 a 0101 ! 04759428 n 0101 | the quality of being contrary to fact -04759849 07 n 01 concreteness 0 005 @ 04760771 n 0000 + 00013160 a 0101 ! 04762134 n 0101 = 00013160 a 0000 ~ 04760611 n 0000 | the quality of being concrete (not abstract) -04760024 07 n 03 tangibility 0 tangibleness 0 palpability 0 009 @ 04760771 n 0000 + 01747713 a 0301 ! 04760296 n 0303 + 00013662 a 0202 + 01717117 a 0202 + 02391455 a 0201 + 01717117 a 0102 + 02391455 a 0101 ! 04760296 n 0101 | the quality of being perceivable by touch -04760296 07 n 03 intangibility 0 intangibleness 0 impalpability 0 010 @ 04761517 n 0000 + 02391867 a 0302 ! 04760024 n 0303 + 01273454 a 0201 + 00627643 a 0201 + 02392654 a 0201 + 02391867 a 0201 + 00627643 a 0101 + 02391867 a 0101 ! 04760024 n 0101 | the quality of being intangible and not perceptible by touch -04760611 07 n 01 literalness 0 004 @ 04759849 n 0000 + 02460964 a 0103 + 00914983 a 0101 + 01418789 a 0101 | adhereing to the concrete construal of something -04760771 07 n 04 materiality 0 physicalness 0 corporeality 0 corporality 0 017 @ 04723816 n 0000 + 00629997 a 0301 ! 04761517 n 0302 + 00627204 a 0201 + 00627004 a 0201 + 01778212 a 0201 + 00629997 a 0102 + 00626800 a 0101 ! 04761517 n 0101 = 00626800 a 0000 = 00627410 a 0000 = 00629997 a 0000 = 00630802 a 0000 ~ 04759849 n 0000 ~ 04760024 n 0000 ~ 04761212 n 0000 ~ 04762355 n 0000 | the quality of being physical; consisting of matter -04761212 07 n 03 substantiality 0 substantialness 0 solidness 0 010 @ 04760771 n 0000 + 02275412 a 0301 + 01200339 a 0301 + 02558528 a 0205 + 02275412 a 0203 + 00625393 a 0201 + 00625393 a 0101 ! 04761815 n 0101 = 00625393 a 0000 = 00625774 a 0000 | the quality of being substantial or having substance -04761517 07 n 02 immateriality 0 incorporeality 0 010 @ 04723816 n 0000 + 00630802 a 0201 ! 04760771 n 0203 + 00630802 a 0102 + 00627410 a 0101 ! 04760771 n 0101 ~ 04760296 n 0000 ~ 04761815 n 0000 ~ 04762134 n 0000 ~ 04762492 n 0000 | the quality of not being physical; not consisting of matter -04761815 07 n 01 insubstantiality 0 004 @ 04761517 n 0000 + 00625774 a 0101 ! 04761212 n 0101 ~ 04761960 n 0000 | lacking substance or reality -04761960 07 n 01 smoke 0 002 @ 04761815 n 0000 ;u 07075172 n 0000 | something with no concrete substance; "his dreams all turned to smoke"; "it was just smoke and mirrors" -04762134 07 n 01 abstractness 0 006 @ 04761517 n 0000 + 00862526 a 0101 + 01980557 a 0101 + 00011757 a 0101 ! 04759849 n 0101 = 00011757 a 0000 | the quality of being considered apart from a specific instance or object -04762355 07 n 01 reality 0 003 @ 04760771 n 0000 + 00625393 a 0102 ! 04762492 n 0101 | the quality possessed by something that is real -04762492 07 n 01 unreality 0 003 @ 04761517 n 0000 + 01934554 a 0101 ! 04762355 n 0101 | the quality possessed by something that is unreal -04762633 07 n 02 particularity 0 specialness 1 006 @ 04723816 n 0000 + 01104460 a 0101 + 01104026 a 0101 ! 04764412 n 0101 ~ 04762915 n 0000 ~ 04763147 n 0000 | the quality of being particular and pertaining to a specific case or instance; "the particularity of human situations" -04762915 07 n 01 specificity 1 002 @ 04762633 n 0000 + 01099951 a 0101 | the quality of being specific rather than general; "add a desirable note of specificity to the discussion"; "the specificity of the symptoms of the disease" -04763147 07 n 01 specificity 2 001 @ 04762633 n 0000 | the quality of being specific to a particular organism; "host specificity of a parasite" -04763293 07 n 03 individuality 0 individualism 0 individuation 0 010 @ 04616059 n 0000 + 02698178 v 0301 + 00141362 v 0301 + 00494027 a 0202 + 09619824 n 0201 + 00493460 a 0101 ! 04764741 n 0101 = 00493460 a 0000 ~ 04763650 n 0000 ~ 04763925 n 0000 | the quality of being individual; "so absorbed by the movement that she lost all sense of individuality" -04763650 07 n 02 singularity 1 uniqueness 0 007 @ 04763293 n 0000 + 01105042 a 0201 + 02215087 a 0202 + 00505853 a 0202 + 00494622 a 0101 + 00494622 a 0101 + 02215087 a 0101 | the quality of being one of a kind; "that singularity distinguished him from all his companions" -04763925 07 n 05 peculiarity 2 specialness 0 specialty 1 speciality 1 distinctiveness 2 011 @ 04763293 n 0000 + 01272718 a 0502 + 00357556 a 0501 + 01104026 a 0203 + 00488187 a 0204 + 01103844 a 0202 + 02278011 a 0201 + 01853228 a 0202 + 01678729 a 0201 + 00357790 a 0101 ~ 04764242 n 0000 | a distinguishing trait -04764242 07 n 03 idiosyncrasy 0 foible 0 mannerism 0 002 @ 04763925 n 0000 + 00493820 a 0101 | a behavioral attribute that is distinctive and peculiar to an individual -04764412 07 n 01 generality 0 012 @ 04723816 n 0000 + 00783840 a 0101 + 01426077 a 0101 + 01101391 a 0101 ! 04762633 n 0101 = 01101391 a 0000 = 01103021 a 0000 ~ 04764741 n 0000 ~ 04765166 n 0000 ~ 04765355 n 0000 ~ 04765691 n 0000 ~ 04765851 n 0000 | the quality of being general or widespread or having general applicability -04764741 07 n 02 commonality 0 commonness 1 012 @ 04764412 n 0000 + 02152473 a 0201 + 01593079 a 0201 + 00492677 a 0201 + 02152473 a 0101 + 01673815 a 0101 + 00970610 a 0101 + 00492677 a 0101 + 00485711 a 0101 ! 04763293 n 0101 = 00492677 a 0000 ~ 04765038 n 0000 | sharing of common attributes -04765038 07 n 01 solidarity 0 001 @ 04764741 n 0000 | a union of interests or purposes or sympathies among members of a group -04765166 07 n 01 pervasiveness 0 002 @ 04764412 n 0000 + 00468795 a 0104 | the quality of filling or spreading throughout; "the pervasiveness of the odor of cabbage in tenement hallways" -04765355 07 n 01 prevalence 0 004 @ 04764412 n 0000 + 02647497 v 0101 + 01066787 a 0102 ~ 04765586 n 0000 | the quality of prevailing generally; being widespread; "he was surprised by the prevalence of optimism about the future" -04765586 07 n 01 currency 2 001 @ 04765355 n 0000 | general acceptance or use; "the currency of ideas" -04765691 07 n 02 universality 0 catholicity 0 003 @ 04764412 n 0000 + 00287128 a 0201 + 00527188 a 0105 | the quality of being universal; existing everywhere -04765851 07 n 01 totality 0 002 @ 04764412 n 0000 + 00515380 a 0103 | the quality of being complete and indiscriminate; "the totality of war and its consequences"; "the all-embracing totality of the state" -04766059 07 n 02 simplicity 2 simpleness 0 005 @ 04723816 n 0000 + 02174896 a 0201 + 02174896 a 0101 + 02166346 a 0101 ! 04766275 n 0101 | the quality of being simple or uncompounded; "the simplicity of a crystal" -04766275 07 n 02 complexity 0 complexness 0 011 @ 04723816 n 0000 + 02176178 a 0201 + 02176178 a 0101 + 00401202 v 0101 ! 04766059 n 0101 = 02174896 a 0000 = 02176178 a 0000 ~ 04766620 n 0000 ~ 04766852 n 0000 ~ 04767023 n 0000 ~ 04767182 n 0000 | the quality of being intricate and compounded; "he enjoyed the complexity of modern computers" -04766620 07 n 04 complicatedness 0 complication 0 knottiness 0 tortuousness 0 007 @ 04766275 n 0000 + 00769121 a 0401 + 02176841 a 0406 + 00746451 a 0303 + 02176841 a 0304 + 00400883 v 0201 + 02177584 a 0101 | puzzling complexity -04766852 07 n 04 elaborateness 0 elaboration 0 intricacy 0 involution 0 003 @ 04766275 n 0000 + 00400883 v 0204 + 00310433 a 0102 | marked by elaborately complex detail -04767023 07 n 01 tapestry 0 001 @ 04766275 n 0000 | something that resembles a tapestry in its complex pictorial designs; "the tapestry of European history" -04767182 07 n 01 trickiness 1 002 @ 04766275 n 0000 + 00746819 a 0102 | the quality of requiring skill or caution; "these puzzles are famous for their trickiness" -04767347 07 n 01 regularity 0 017 @ 04723816 n 0000 + 00489863 a 0101 + 02302187 a 0102 + 02296632 a 0101 + 02366927 a 0101 + 01595312 a 0101 + 01067003 a 0101 + 01959294 a 0101 ! 04770211 n 0101 = 01959294 a 0000 = 01960656 a 0000 ~ 04767805 n 0000 ~ 04768483 n 0000 ~ 04769049 n 0000 ~ 04769456 n 0000 ~ 04769988 n 0000 ~ 04770068 n 0000 | the quality of being characterized by a fixed principle or rate; "he was famous for the regularity of his habits" -04767805 07 n 02 cyclicity 0 periodicity 0 007 @ 04767347 n 0000 + 01967240 a 0201 + 01967803 a 0101 + 00675701 a 0101 = 00675701 a 0000 = 00676457 a 0000 ~ 04768028 n 0000 | the quality of recurring at regular intervals -04768028 07 n 02 rhythm 1 regular_recurrence 0 004 @ 04767805 n 0000 + 02019021 a 0101 + 02019021 a 0102 ~ 04768186 n 0000 | recurring at regular intervals -04768186 07 n 02 cardiac_rhythm 0 heart_rhythm 0 002 @ 04768028 n 0000 ~ 04768309 n 0000 | the rhythm of a beating heart -04768309 07 n 02 atrioventricular_nodal_rhythm 0 nodal_rhythm 0 001 @ 04768186 n 0000 | the normal cardiac rhythm when the heart is controlled by the atrioventricular node -04768483 07 n 02 orderliness 0 methodicalness 0 004 @ 04767347 n 0000 + 01668567 a 0201 + 01666126 a 0101 ~ 04768657 n 0000 | the quality of appreciating method and system -04768657 07 n 03 organization 0 organisation 0 system 0 007 @ 04768483 n 0000 + 02382934 a 0301 + 00480969 v 0303 + 00480969 v 0304 + 02432530 v 0202 + 00404642 v 0202 + 00404642 v 0101 | an ordered manner; orderliness by virtue of being methodical and well organized; "his compulsive organization was not an endearing quality"; "we can't do it unless we establish some system around here" -04769049 07 n 01 uniformity 1 005 @ 04767347 n 0000 + 01200095 a 0102 + 00744506 a 0102 + 01966488 a 0101 ~ 04769234 n 0000 | a condition in which everything is regular and unvarying -04769234 07 n 01 homogeneity 1 001 @ 04769049 n 0000 | the quality of being of uniform throughout in composition or structure -04769362 07 n 01 inhomogeneity 0 001 @ 04770211 n 0000 | the quality of being inhomogeneous -04769456 07 n 02 evenness 0 invariability 1 009 @ 04767347 n 0000 + 02505716 a 0201 ! 04771890 n 0202 + 02372520 a 0101 + 02302187 a 0101 ! 04771890 n 0101 = 00909545 a 0000 = 00911327 a 0000 ~ 04769716 n 0000 | a quality of uniformity and lack of variation -04769716 07 n 01 smoothness 1 003 @ 04769456 n 0000 + 00302951 a 0105 + 02244619 a 0101 | the quality of having a level and even surface; "the water was a glassy smoothness"; "the weather system of the Pacific is determined by the uninterrupted smoothness of the ocean" -04769988 07 n 01 even_spacing 0 001 @ 04767347 n 0000 | regularity of spacing -04770068 07 n 01 steadiness 1 003 @ 04767347 n 0000 + 02301560 a 0101 ! 04773182 n 0101 | the quality of being steady--regular and unvarying -04770211 07 n 02 irregularity 0 unregularity 0 011 @ 04723816 n 0000 + 00607202 a 0101 + 01960656 a 0101 ! 04767347 n 0101 ~ 04769362 n 0000 ~ 04770535 n 0000 ~ 04770720 n 0000 ~ 04770911 n 0000 ~ 04771332 n 0000 ~ 04771890 n 0000 ~ 04773182 n 0000 | not characterized by a fixed principle or rate; at irregular intervals -04770535 07 n 02 fitfulness 0 jerkiness 0 005 @ 04770211 n 0000 + 02303575 a 0203 + 00593664 a 0101 + 00290593 a 0101 ~ 04771738 n 0000 | the quality of being spasmodic and irregular -04770720 07 n 02 intermittence 0 intermittency 0 003 @ 04770211 n 0000 + 00593836 a 0201 + 00593836 a 0101 | the quality of being intermittent; subject to interruption or periodic stopping -04770911 07 n 02 fluctuation 0 wavering 0 004 @ 04770211 n 0000 + 01876907 v 0203 + 00270699 v 0101 ~ 04771128 n 0000 | the quality of being unsteady and subject to changes; "he kept a record of price fluctuations" -04771128 07 n 01 scintillation 1 002 @ 04770911 n 0000 + 02764765 v 0103 | the twinkling of the stars caused when changes in the density of the earth's atmosphere produce uneven refraction of starlight -04771332 07 n 04 randomness 0 haphazardness 0 stochasticity 0 noise 0 004 @ 04770211 n 0000 + 01924803 a 0201 + 01924316 a 0101 ~ 04771535 n 0000 | the quality of lacking any predictable order or plan -04771535 07 n 01 ergodicity 0 001 @ 04771332 n 0000 | an attribute of stochastic systems; generally, a system that tends in probability to a limiting form that is independent of the initial conditions -04771738 07 n 01 spasticity 0 004 @ 04770535 n 0000 + 02303754 a 0103 + 02546713 a 0101 + 03119608 a 0101 | the quality of moving or acting in spasms -04771890 07 n 02 unevenness 0 variability 1 011 @ 04770211 n 0000 + 02507515 a 0202 ! 04769456 n 0202 + 00578662 a 0102 + 00911327 a 0101 ! 04769456 n 0101 ~ 04772191 n 0000 ~ 04772388 n 0000 ~ 04772691 n 0000 ~ 04772844 n 0000 ~ 04772955 n 0000 | the quality of being uneven and lacking uniformity -04772191 07 n 01 rockiness 0 002 @ 04771890 n 0000 + 02241988 a 0101 | the quality of abounding in rocks and stones; "due to the rockiness of the land it was quickly dry even after a heavy rain" -04772388 07 n 01 ruggedness 1 003 @ 04771890 n 0000 + 02239746 a 0102 ~ 04772557 n 0000 | the quality of being topologically uneven; "the ruggedness of the mountains" -04772557 07 n 01 hilliness 0 002 @ 04772388 n 0000 + 02240490 a 0103 | the quality of being hilly; "the hilliness of West Virginia" -04772691 07 n 01 jaggedness 0 003 @ 04771890 n 0000 + 00912288 a 0101 + 02246903 a 0102 | something irregular like a bump or crack in a smooth surface -04772844 07 n 01 patchiness 0 002 @ 04771890 n 0000 + 00912814 a 0101 | unevenness in quality or performance -04772955 07 n 01 waviness 1 002 @ 04771890 n 0000 + 00911762 a 0104 | unevenness produced by waves or wrinkles -04773068 07 n 01 personal_equation 0 001 @ 04735233 n 0000 | variability attributable to individual differences -04773182 07 n 01 unsteadiness 1 004 @ 04770211 n 0000 + 02303077 a 0101 ! 04770068 n 0101 ~ 04775747 n 0000 | the quality of being unsteady--varying and unpredictable -04773351 07 n 01 mobility 0 010 @ 04723816 n 0000 + 02128084 a 0101 + 01522376 a 0101 ! 04776299 n 0101 ~ 04773596 n 0000 ~ 04773761 n 0000 ~ 04773899 n 0000 ~ 04774198 n 0000 ~ 04774365 n 0000 ~ 04774743 n 0000 | the quality of moving freely -04773596 07 n 03 locomotion 0 motive_power 0 motivity 0 004 @ 04773351 n 0000 + 00324481 a 0301 + 02994448 a 0101 + 01835496 v 0104 | the power or ability to move -04773761 07 n 01 motility 0 003 @ 04773351 n 0000 + 01523567 a 0101 ! 04776453 n 0101 | ability to move spontaneously and independently -04773899 07 n 02 movability 0 movableness 0 010 @ 04773351 n 0000 + 01526062 a 0201 + 01523724 a 0201 ! 04776699 n 0202 + 01523724 a 0101 ! 04776699 n 0101 ~ 04774511 n 0000 ~ 04775562 n 0000 ~ 04776176 n 0000 ~ 04777421 n 0000 | the quality of being movable; capable of being moved or rearranged -04774198 07 n 02 maneuverability 0 manoeuvrability 0 004 @ 04773351 n 0000 + 01523249 a 0202 + 01523249 a 0101 ~ 04774901 n 0000 | the quality of being maneuverable -04774365 07 n 01 manipulability 0 002 @ 04773351 n 0000 + 02451113 a 0102 | the quality of being controllable by skilled movements of the hands -04774511 07 n 02 looseness 0 play 0 006 @ 04773899 n 0000 + 01903562 v 0201 + 02404421 a 0101 ! 04776940 n 0101 ~ 04775185 n 0000 ~ 04775357 n 0000 | movement or space for movement; "there was too much play in the steering wheel" -04774743 07 n 01 restlessness 1 002 @ 04773351 n 0000 + 01563578 a 0101 | the quality of being ceaselessly moving or active; "the restlessness of the wind" -04774901 07 n 01 weatherliness 0 003 @ 04774198 n 0000 ;c 04128837 n 0000 + 03129915 a 0101 | (of a sailing vessel) the quality of being able to sail close to the wind with little drift to the leeward (even in a stiff wind); "the Spanish ships had superior speed and weatherliness" -04775185 07 n 01 wiggliness 0 002 @ 04774511 n 0000 + 01563713 a 0101 | a jerky back and forth kind of mobility; "he walked with the wiggliness of a child on high heels" -04775357 07 n 02 slack 0 slackness 0 004 @ 04774511 n 0000 + 02404421 a 0202 + 02404421 a 0102 + 00536535 v 0101 | the quality of being loose (not taut); "he hadn't counted on the slackness of the rope" -04775562 07 n 02 unsteadiness 0 ricketiness 0 004 @ 04773899 n 0000 + 02292797 a 0201 + 01061310 a 0102 ! 04777852 n 0101 | the quality of not being steady or securely fixed in place -04775747 07 n 02 instability 0 unstableness 0 009 @ 04773182 n 0000 + 00823192 a 0202 + 01929456 a 0201 + 01992712 a 0201 + 02076817 a 0203 + 02291843 a 0201 ! 04778401 n 0202 ! 04778401 n 0101 ~ 04776021 n 0000 | the quality or attribute of being unstable and irresolute -04776021 07 n 01 shakiness 0 002 @ 04775747 n 0000 + 02095037 a 0102 | the quality of being unstable and insecure; "the shakiness of the present regime" -04776176 07 n 01 portability 0 002 @ 04773899 n 0000 + 01525776 a 0101 | the quality of being light enough to be carried -04776299 07 n 01 immobility 0 005 @ 04723816 n 0000 ! 04773351 n 0101 ~ 04776453 n 0000 ~ 04776572 n 0000 ~ 04776699 n 0000 | the quality of not moving -04776453 07 n 01 immotility 0 003 @ 04776299 n 0000 + 01525502 a 0102 ! 04773761 n 0101 | lacking an ability to move -04776572 07 n 01 inertness 0 003 @ 04776299 n 0000 + 01565038 a 0101 + 00034322 a 0101 | immobility by virtue of being inert -04776699 07 n 02 immovability 0 immovableness 0 008 @ 04776299 n 0000 + 01525320 a 0201 ! 04773899 n 0202 + 01525320 a 0101 ! 04773899 n 0101 ~ 04776940 n 0000 ~ 04777098 n 0000 ~ 04777852 n 0000 | not capable of being moved or rearranged -04776940 07 n 02 tightness 0 tautness 0 004 @ 04776699 n 0000 + 02403505 a 0201 + 02403505 a 0102 ! 04774511 n 0101 | lack of movement or room for movement -04777098 07 n 05 fastness 1 fixedness 0 fixity 0 fixture 0 secureness 0 010 @ 04776699 n 0000 + 02095311 a 0501 + 01340439 v 0402 + 00347707 a 0301 + 01564603 a 0301 + 01059400 a 0301 + 01059400 a 0201 ! 04777421 n 0201 + 01059711 a 0101 ~ 04777634 n 0000 | the quality of being fixed in place as by some firm attachment -04777421 07 n 01 looseness 3 005 @ 04773899 n 0000 + 00159381 a 0102 + 00503321 a 0101 + 01446749 a 0101 ! 04777098 n 0102 | the quality of movability by virtue of being free from attachment or other restraints -04777634 07 n 03 lodgment 0 lodgement 0 lodging 0 003 @ 04777098 n 0000 + 01528069 v 0301 + 01528069 v 0201 | the state or quality of being lodged or fixed even temporarily; "the lodgment of the balloon in the tree" -04777852 07 n 02 steadiness 0 firmness 0 008 @ 04776699 n 0000 + 02291336 a 0201 + 01059711 a 0202 + 02095542 a 0101 ! 04775562 n 0101 ~ 04778114 n 0000 ~ 04778267 n 0000 ~ 04778401 n 0000 | the quality of being steady or securely and immovably fixed in place -04778114 07 n 01 granite 0 002 @ 04777852 n 0000 + 01158180 a 0103 | something having the quality of granite (unyielding firmness); "a man of granite" -04778267 07 n 01 sureness 2 002 @ 04777852 n 0000 + 02302822 a 0101 | the quality of being steady and unfailing; "sureness of hand" -04778401 07 n 02 stability 0 stableness 0 007 @ 04777852 n 0000 + 00348018 a 0202 + 02274089 a 0201 + 02290998 a 0201 ! 04775747 n 0202 + 02274089 a 0101 ! 04775747 n 0101 | the quality or attribute of being firm and steadfast -04778630 07 n 02 pleasantness 0 sweetness 3 013 @ 04723816 n 0000 + 01808671 a 0201 + 01808413 a 0202 + 01501821 a 0205 + 01459949 a 0205 + 01800349 a 0101 ! 04779649 n 0101 = 01800349 a 0000 = 01801600 a 0000 ~ 04779053 n 0000 ~ 04779336 n 0000 ~ 04779521 n 0000 ~ 04779895 n 0000 | the quality of giving pleasure; "he was charmed by the sweetness of her manner"; "the pleasantness of a cool breeze on a hot summer day" -04779053 07 n 02 agreeableness 1 amenity 0 003 @ 04778630 n 0000 + 00089051 a 0101 ! 04779895 n 0101 | pleasantness resulting from agreeable conditions; "a well trained staff saw to the agreeableness of our accommodations"; "he discovered the amenities of reading at an early age" -04779336 07 n 01 enjoyableness 0 002 @ 04778630 n 0000 + 01801029 a 0101 | pleasantness resulting from something that can be enjoyed; "the enjoyableness of an afternoon at the beach" -04779521 07 n 01 niceness 0 004 @ 04778630 n 0000 + 01586342 a 0101 ! 04780755 n 0101 = 01586342 a 0000 | the quality of nice -04779649 07 n 01 unpleasantness 0 007 @ 04723816 n 0000 + 01801600 a 0101 ! 04778630 n 0101 ~ 04780755 n 0000 ~ 04780958 n 0000 ~ 04782116 n 0000 ~ 04988666 n 0000 | the quality of giving displeasure; "the recent unpleasantness of the weather" -04779895 07 n 01 disagreeableness 1 007 @ 04778630 n 0000 + 00561359 a 0101 + 00089355 a 0101 ! 04779053 n 0101 ~ 04780114 n 0000 ~ 04780232 n 0000 ~ 04780396 n 0000 | the quality of being disagreeable and unpleasant -04780114 07 n 01 abrasiveness 1 002 @ 04779895 n 0000 + 00090219 a 0102 | the quality of being sharply disagreeable -04780232 07 n 02 acridity 1 acridness 1 003 @ 04779895 n 0000 + 01802165 a 0204 + 01802165 a 0104 | the quality of being sharply disagreeable in language or tone -04780396 07 n 02 unpalatability 1 unpalatableness 1 003 @ 04779895 n 0000 + 01716491 a 0201 ~ 04780605 n 0000 | the property of being unacceptable to the mind; "the policy's unpalatability caused an uproar" -04780605 07 n 02 disgustingness 1 unsavoriness 1 002 @ 04780396 n 0000 + 01627965 a 0201 | the property of being extremely unacceptable to the mind -04780755 07 n 01 nastiness 0 005 @ 04779649 n 0000 + 01587077 a 0101 ! 04779521 n 0101 = 01587077 a 0000 ~ 04781967 n 0000 | the quality of being unpleasant; "I flinched at the nastiness of his wound" -04780958 07 n 03 offensiveness 0 odiousness 0 distastefulness 0 016 @ 04779649 n 0000 + 01625893 a 0303 + 01460679 a 0204 + 02560035 a 0106 + 01631386 a 0101 + 00908672 a 0102 + 01627965 a 0103 + 01628302 a 0101 + 01624633 a 0101 = 01624633 a 0000 = 01627459 a 0000 = 01628302 a 0000 = 01628677 a 0000 ~ 04706882 n 0000 ~ 04781349 n 0000 ~ 04781755 n 0000 | the quality of being offensive -04781349 07 n 06 loathsomeness 0 repulsiveness 0 sliminess 2 vileness 1 lousiness 0 wickedness 2 011 @ 04780958 n 0000 + 01625893 a 060c + 01587474 a 0503 + 01127782 a 0503 + 02560035 a 0408 + 01133017 a 0304 + 01625063 a 0205 + 00221934 a 0202 + 01625063 a 0205 + 02560035 a 0105 + 01625893 a 0106 | the quality of being disgusting to the senses or emotions; "the vileness of his language surprised us" -04781755 07 n 03 hatefulness 0 obnoxiousness 0 objectionableness 0 006 @ 04780958 n 0000 + 00018850 a 0302 + 01626874 a 0301 + 01626874 a 0202 + 01587787 a 0101 + 01460421 a 0101 | the quality of being hateful -04781967 07 n 01 beastliness 1 003 @ 04780755 n 0000 ;r 08860123 n 0000 + 01802774 a 0101 | unpleasant nastiness; used especially of nasty weather -04782116 07 n 04 awfulness 0 dreadfulness 0 horridness 0 terribleness 0 013 @ 04779649 n 0000 + 01126291 a 0406 + 01513050 a 0402 + 01677200 a 0402 + 00193799 a 040c + 01626562 a 0302 + 01127661 a 0301 + 01803247 a 0201 + 01126291 a 0204 + 01126291 a 0103 + 00193799 a 0101 + 01587077 a 0102 ~ 04782466 n 0000 | a quality of extreme unpleasantness -04782466 07 n 01 frightfulness 0 004 @ 04782116 n 0000 + 01127147 a 0102 + 00193480 a 0102 ~ 04782610 n 0000 | the quality of being frightful -04782610 07 n 04 ghastliness 0 grimness 2 gruesomeness 0 luridness 1 009 @ 04782466 n 0000 + 02512334 a 0401 + 02101757 a 0401 + 00195684 a 0304 + 01802932 a 0203 + 02079507 a 0202 + 00195684 a 0202 + 01625492 a 0102 + 00195684 a 0101 | the quality of being ghastly -04782878 07 n 03 credibility 0 credibleness 0 believability 0 014 @ 04723816 n 0000 + 00644839 a 0302 + 00646691 a 0201 + 00615191 a 0201 + 00644839 a 0201 + 00615191 a 0101 + 00644839 a 0101 ! 04784142 n 0101 = 00644839 a 0000 = 00645493 a 0000 ~ 04783247 n 0000 ~ 04783567 n 0000 ~ 04783724 n 0000 ~ 04784525 n 0000 | the quality of being believable or trustworthy -04783247 07 n 03 authenticity 0 genuineness 1 legitimacy 1 006 @ 04782878 n 0000 + 02180277 a 0201 + 01115349 a 0201 + 02465115 a 0101 + 01115635 a 0101 ~ 04783445 n 0000 | undisputed credibility -04783445 07 n 03 real_McCoy 0 real_thing 0 real_stuff 0 001 @ 04783247 n 0000 | informal usage attributing authenticity -04783567 07 n 04 cogency 0 validity 1 rigor 1 rigour 1 003 @ 04782878 n 0000 + 00915556 a 0301 + 02498708 a 0201 | the quality of being valid and rigorous -04783724 07 n 02 plausibility 0 plausibleness 0 005 @ 04782878 n 0000 + 01799457 a 0201 + 01799457 a 0101 ! 04784322 n 0101 ~ 04783888 n 0000 | apparent validity -04783888 07 n 03 reasonableness 3 tenability 0 tenableness 0 004 @ 04783724 n 0000 + 01944492 a 0301 + 01944492 a 0201 + 01943406 a 0101 | the quality of being plausible or acceptable to a reasonable person; "he questioned the tenability of my claims" -04784142 07 n 02 incredibility 0 incredibleness 0 005 @ 04723816 n 0000 + 00645493 a 0201 + 00645493 a 0101 ! 04782878 n 0101 ~ 04784322 n 0000 | the quality of being incredible -04784322 07 n 02 implausibility 0 implausibleness 0 006 @ 04784142 n 0000 + 01412721 a 0202 + 01799957 a 0201 + 01412721 a 0102 + 01799957 a 0101 ! 04783724 n 0101 | the quality of provoking disbelief -04784525 07 n 03 street_credibility 0 street_cred 0 cred 0 001 @ 04782878 n 0000 | credibility among young fashionable urban individuals -04784664 07 n 02 logicality 0 logicalness 0 013 @ 04723816 n 0000 + 02499301 a 0202 + 01925708 a 0202 + 01430111 a 0201 ! 04785669 n 0202 + 02499301 a 0102 + 01430111 a 0101 ! 04785669 n 0101 = 01430111 a 0000 = 01430847 a 0000 ~ 04784978 n 0000 ~ 04785195 n 0000 ~ 04785414 n 0000 | correct and valid reasoning -04784978 07 n 02 rationality 0 rationalness 0 006 @ 04784664 n 0000 + 01333118 a 0201 + 02929901 a 0201 + 01925372 a 0201 + 01780343 a 0102 + 01333118 a 0101 | the quality of being consistent with or based on logic -04785195 07 n 01 consistency 1 002 @ 04784664 n 0000 ;c 06163751 n 0000 | (logic) an attribute of a logical system that is so constituted that none of the propositions deducible from the axioms contradict one another -04785414 07 n 01 completeness 0 002 @ 04784664 n 0000 ;c 06163751 n 0000 | (logic) an attribute of a logical system that is so constituted that a contradiction arises if any proposition is introduced that cannot be derived from the axioms of the system -04785669 07 n 04 illogicality 0 illogicalness 0 illogic 0 inconsequence 1 007 @ 04723816 n 0000 + 00465221 a 0206 + 01430847 a 0201 ! 04784664 n 0202 + 01430847 a 0101 ! 04784664 n 0101 ~ 04810510 n 0000 | invalid or incorrect reasoning -04785908 07 n 01 naturalness 0 013 @ 04723816 n 0000 + 00074594 a 0102 + 01574036 a 0101 ! 04787530 n 0101 = 01569965 a 0000 = 01570470 a 0000 ~ 04786326 n 0000 ~ 04786490 n 0000 ~ 04786595 n 0000 ~ 04786763 n 0000 ~ 04786994 n 0000 ~ 04787154 n 0000 ~ 04787324 n 0000 | the quality of being natural or based on natural principles; "he accepted the naturalness of death"; "the spontaneous naturalness of his manner" -04786326 07 n 01 unaffectedness 0 003 @ 04785908 n 0000 + 00074346 a 0101 ! 04787763 n 0101 | not affected; a personal manner that is not consciously constrained -04786490 07 n 02 simplicity 3 simmpleness 3 001 @ 04785908 n 0000 | absence of affectation or pretense -04786595 07 n 02 sincerity 2 unassumingness 0 002 @ 04785908 n 0000 + 01539444 a 0202 | a quality of naturalness and simplicity; "the simple sincerity of folk songs" -04786763 07 n 02 spontaneity 0 spontaneousness 0 003 @ 04785908 n 0000 + 02213557 a 0202 + 02282376 a 0101 | the quality of being spontaneous and coming from natural feelings without constraint; "the spontaneity of his laughter" -04786994 07 n 02 ease 1 informality 1 002 @ 04785908 n 0000 + 01044240 a 0201 | freedom from constraint or embarrassment; "I am never at ease with strangers" -04787154 07 n 01 unpretentiousness 0 004 @ 04785908 n 0000 + 01848970 a 0102 + 02393220 a 0103 ! 04788982 n 0101 | the quality of being natural and without pretensions -04787324 07 n 02 naturalization 0 naturalisation 0 005 @ 04785908 n 0000 + 00302464 v 0204 + 00412696 v 0202 + 00302464 v 0103 + 00412696 v 0101 | the quality of being brought into conformity with nature -04787530 07 n 01 unnaturalness 0 007 @ 04723816 n 0000 + 00073048 a 0102 ! 04785908 n 0101 ~ 04787763 n 0000 ~ 04788494 n 0000 ~ 04788982 n 0000 ~ 04789406 n 0000 | the quality of being unnatural or not based on natural principles -04787763 07 n 01 affectedness 0 008 @ 04787530 n 0000 + 00073048 a 0101 ! 04786326 n 0101 = 00073048 a 0000 = 00074346 a 0000 ~ 04788011 n 0000 ~ 04788159 n 0000 ~ 04788332 n 0000 | the quality of being false or artificial (as to impress others) -04788011 07 n 02 airs 0 pose 0 002 @ 04787763 n 0000 + 02519183 v 0201 | affected manners intended to impress others; "don't put on airs with me" -04788159 07 n 02 coyness 0 demureness 2 004 @ 04787763 n 0000 + 01538118 a 0202 + 01538118 a 0101 + 00701894 a 0101 | the affectation of being demure in a provocative way -04788332 07 n 02 preciosity 0 preciousness 1 003 @ 04787763 n 0000 + 00148642 a 0202 + 00148642 a 0102 | the quality of being fastidious or excessively refined -04788494 07 n 01 artificiality 0 005 @ 04787530 n 0000 + 01680417 a 0101 + 01571363 a 0101 ~ 04788693 n 0000 ~ 04788853 n 0000 | the quality of being produced by people and not occurring naturally -04788693 07 n 02 staginess 0 theatricality 0 004 @ 04788494 n 0000 + 02813315 a 0201 + 00796047 a 0201 + 00796715 a 0101 | an artificial and mannered quality -04788853 07 n 03 pretension 0 pretense 0 pretence 0 002 @ 04788494 n 0000 + 02275799 v 0201 | a false or unsupportable quality -04788982 07 n 03 pretentiousness 0 pretension 1 largeness 2 005 @ 04787530 n 0000 + 02016881 a 0303 + 01849288 a 0101 ! 04787154 n 0101 ~ 04789274 n 0000 | the quality of being pretentious (behaving or speaking in such a manner as to create a false appearance of great importance or worth) -04789274 07 n 01 ostentation 0 003 @ 04788982 n 0000 + 01848355 a 0101 + 02141973 v 0104 | pretentious or showy or vulgar display -04789406 07 n 02 supernaturalism 0 supernaturalness 0 003 @ 04787530 n 0000 + 01574446 a 0201 + 02912054 a 0102 | the quality of being attributed to power that seems to violate or go beyond natural forces -04789613 07 n 02 virtu 0 vertu 0 001 @ 04723816 n 0000 | artistic quality -04789689 07 n 01 wholesomeness 0 006 @ 04723816 n 0000 + 01172692 a 0101 + 02557357 a 0101 ! 04790449 n 0101 ~ 04789897 n 0000 ~ 04790070 n 0000 | the quality of being beneficial and generally good for you -04789897 07 n 02 nutritiousness 0 nutritiveness 0 003 @ 04789689 n 0000 + 02557719 a 0206 + 02557719 a 0105 | the quality of being nourishing and promoting healthy growth -04790070 07 n 01 healthfulness 0 005 @ 04789689 n 0000 + 02112976 a 0102 + 01164763 a 0101 ! 04791740 n 0101 ~ 04790238 n 0000 | the quality of promoting good health -04790238 07 n 02 salubrity 0 salubriousness 0 006 @ 04790070 n 0000 + 02558184 a 0202 ! 04791928 n 0202 + 02558996 a 0101 + 02558184 a 0102 ! 04791928 n 0101 | the quality of being salubrious and invigorating -04790449 07 n 03 unwholesomeness 0 morbidness 0 morbidity 0 011 @ 04723816 n 0000 + 01176246 a 0302 + 02559862 a 0201 + 02559180 a 0101 ! 04789689 n 0101 ~ 04790774 n 0000 ~ 04790942 n 0000 ~ 04791081 n 0000 ~ 04791453 n 0000 ~ 04791591 n 0000 ~ 04791740 n 0000 | the quality of being unhealthful and generally bad for you -04790774 07 n 03 harmfulness 1 noisomeness 0 noxiousness 0 004 @ 04790449 n 0000 + 01611067 a 0301 + 02560035 a 0203 + 01053634 a 0206 | the quality of being noxious -04790942 07 n 02 perniciousness 0 toxicity 0 003 @ 04790449 n 0000 + 01611329 a 0103 + 01162406 a 0102 | grave harmfulness or deadliness -04791081 07 n 02 deadliness 0 lethality 0 009 @ 04790449 n 0000 + 00993885 a 0202 + 00993885 a 0101 + 00993667 a 0101 + 00045888 a 0101 + 01721691 a 0101 + 02449952 a 0101 + 01611329 a 0102 ~ 04791321 n 0000 | the quality of being deadly -04791321 07 n 01 fatality 0 002 @ 04791081 n 0000 + 00993529 a 0101 | the quality of being able to cause death or fatal disasters -04791453 07 n 02 jejunity 2 jejuneness 2 003 @ 04790449 n 0000 + 02559694 a 0202 + 02559694 a 0102 | quality of lacking nutritive value -04791591 07 n 02 putrescence 0 rottenness 0 003 @ 04790449 n 0000 + 01070538 a 0201 + 01071049 a 0101 | the quality of rotting and becoming putrid -04791740 07 n 01 unhealthfulness 0 006 @ 04790449 n 0000 + 02559534 a 0102 + 02113449 a 0103 + 01167817 a 0101 ! 04790070 n 0101 ~ 04791928 n 0000 | the quality of promoting poor health -04791928 07 n 02 insalubrity 0 insalubriousness 0 005 @ 04791740 n 0000 + 02559534 a 0201 ! 04790238 n 0202 + 02559534 a 0101 ! 04790238 n 0101 | the quality of being insalubrious and debilitating -04792127 07 n 01 satisfactoriness 0 006 @ 04723816 n 0000 + 01124768 a 0101 + 02080577 a 0101 ! 04793355 n 0101 ~ 04792357 n 0000 ~ 04792679 n 0000 | the quality of giving satisfaction sufficient to meet a demand or requirement -04792357 07 n 02 adequacy 0 adequateness 0 007 @ 04792127 n 0000 + 02336109 a 0201 + 02080937 a 0201 + 00051045 a 0201 ! 04793555 n 0101 = 00051045 a 0000 = 00051696 a 0000 | the quality of being able to meet a need satisfactorily: "he questioned the adequacy of the usual sentimental interpretation of the Golden Rule" -04792679 07 n 02 acceptability 0 acceptableness 0 012 @ 04792127 n 0000 + 02297966 a 0201 + 01124768 a 0202 + 01020709 a 0201 + 00017782 a 0201 + 01020709 a 0101 + 00017782 a 0101 + 02297966 a 0101 + 01124768 a 0102 ! 04793925 n 0101 ~ 04793016 n 0000 ~ 04794580 n 0000 | satisfactoriness by virtue of conforming to approved standards -04793016 07 n 01 admissibility 0 006 @ 04792679 n 0000 + 01761871 a 0101 ! 04794236 n 0101 = 01761871 a 0000 = 01762582 a 0000 ~ 04793209 n 0000 | acceptability by virtue of being admissible -04793209 07 n 01 permissibility 0 003 @ 04793016 n 0000 + 01760944 a 0101 ! 04794408 n 0101 | admissibility as a consequence of being permitted -04793355 07 n 01 unsatisfactoriness 0 006 @ 04723816 n 0000 + 02082218 a 0101 ! 04792127 n 0101 ~ 04793555 n 0000 ~ 04793731 n 0000 ~ 04793925 n 0000 | the quality of being inadequate or unsuitable -04793555 07 n 02 inadequacy 0 inadequateness 0 004 @ 04793355 n 0000 + 02336904 a 0201 + 00051696 a 0201 ! 04792357 n 0101 | unsatisfactoriness by virtue of being inadequate -04793731 07 n 02 perishability 0 perishableness 0 003 @ 04793355 n 0000 + 01753365 a 0201 + 01753365 a 0101 | unsatisfactoriness by virtue of being subject to decay or spoilage or destruction -04793925 07 n 02 unacceptability 0 unacceptableness 0 010 @ 04793355 n 0000 + 02083053 a 0201 + 02298766 a 0201 + 02436025 a 0203 + 00018584 a 0201 + 02436025 a 0103 + 00018584 a 0101 ! 04792679 n 0101 ~ 04794236 n 0000 ~ 04805813 n 0000 | unsatisfactoriness by virtue of not conforming to approved standards -04794236 07 n 01 inadmissibility 0 004 @ 04793925 n 0000 + 01762582 a 0101 ! 04793016 n 0101 ~ 04794408 n 0000 | unacceptability as a consequence of not being admissible -04794408 07 n 01 impermissibility 0 004 @ 04794236 n 0000 + 01762748 a 0101 + 01761186 a 0101 ! 04793209 n 0101 | inadmissibility as a consequence of not being permitted -04794580 07 n 02 palatability 1 palatableness 1 002 @ 04792679 n 0000 + 01716227 a 0201 | acceptability to the mind or feelings; "the pursuit of electoral palatability" -04794751 07 n 03 ordinariness 0 mundaneness 1 mundanity 1 011 @ 04723816 n 0000 + 01674242 a 0302 + 01674242 a 0202 + 00486290 a 0102 + 01672607 a 0101 ! 04796490 n 0101 = 01672607 a 0000 = 01675190 a 0000 ~ 04795061 n 0000 ~ 04795252 n 0000 ~ 04795545 n 0000 | the quality of being commonplace and ordinary -04795061 07 n 02 averageness 0 mediocrity 0 004 @ 04794751 n 0000 + 01673061 a 0203 + 01673061 a 0101 + 00486290 a 0101 | ordinariness as a consequence of being average and not outstanding -04795252 07 n 01 expectedness 0 003 @ 04794751 n 0000 ! 04796725 n 0101 ~ 04795413 n 0000 | ordinariness as a consequence of being expected and not surprising -04795413 07 n 02 normality 0 normalcy 0 001 @ 04795252 n 0000 | expectedness as a consequence of being usual or regular or common -04795545 07 n 03 commonness 0 commonplaceness 0 everydayness 0 011 @ 04794751 n 0000 + 01674242 a 0301 + 00970947 a 0301 + 01673946 a 0201 + 01046226 a 0101 + 00485711 a 0101 ! 04796946 n 0101 = 00485711 a 0000 = 00487653 a 0000 ~ 04795878 n 0000 ~ 04796086 n 0000 | ordinariness as a consequence of being frequent and commonplace -04795878 07 n 02 prosiness 1 prosaicness 0 005 @ 04795545 n 0000 + 02018649 a 0202 + 01346343 a 0202 + 00922840 a 0203 + 01346343 a 0103 | commonplaceness as a consequence of being humdrum and not exciting -04796086 07 n 01 usualness 0 007 @ 04795545 n 0000 + 00970610 a 0102 + 00489108 a 0101 ! 04797295 n 0101 = 00489108 a 0000 = 00490035 a 0000 ~ 04796291 n 0000 | commonness by virtue of not being unusual -04796291 07 n 01 familiarity 1 006 @ 04796086 n 0000 + 00970249 a 0101 + 00965606 a 0101 ! 04797482 n 0101 = 00965606 a 0000 = 00966477 a 0000 | usualness by virtue of being familiar or well known -04796490 07 n 01 extraordinariness 0 007 @ 04723816 n 0000 + 01534648 a 0101 + 01675190 a 0101 ! 04794751 n 0101 ~ 04796725 n 0000 ~ 04796946 n 0000 ~ 04797130 n 0000 | the quality of being extraordinary and not commonly encountered -04796725 07 n 02 unexpectedness 0 surprisingness 0 004 @ 04796490 n 0000 + 02359464 a 0201 + 00930290 a 0101 ! 04795252 n 0101 | extraordinariness by virtue of being unexpected; "the unexpectedness of the warm welcome" -04796946 07 n 01 uncommonness 0 004 @ 04796490 n 0000 + 00487653 a 0101 ! 04795545 n 0101 ~ 04797295 n 0000 | extraordinariness as a consequence of being rare and seldom encountered -04797130 07 n 01 uncommonness 1 002 @ 04796490 n 0000 + 01678112 a 0102 | extraordinariness as a consequence of being marked by an uncommon or superlative quality -04797295 07 n 01 unusualness 0 006 @ 04796946 n 0000 + 00488857 a 0101 + 00967129 a 0102 + 00490035 a 0101 ! 04796086 n 0101 ~ 04797482 n 0000 | uncommonness by virtue of being unusual -04797482 07 n 02 unfamiliarity 0 strangeness 0 013 @ 04797295 n 0000 + 00966753 a 0201 + 00967129 a 0201 + 00966477 a 0101 ! 04796291 n 0101 = 01034457 a 0000 ~ 04797824 n 0000 ~ 04798020 n 0000 ~ 04798185 n 0000 ~ 04798365 n 0000 ~ 04798511 n 0000 ~ 04798700 n 0000 ~ 04798881 n 0000 | unusualness as a consequence of not being well known -04797824 07 n 05 oddity 1 queerness 0 quirk 0 quirkiness 0 crotchet 0 005 @ 04797482 n 0000 + 01135673 a 0502 + 00609564 a 0404 + 00609564 a 0304 + 00968010 a 0205 | a strange attitude or habit -04798020 07 n 02 eeriness 0 ghostliness 0 003 @ 04797482 n 0000 + 01574925 a 0203 + 00968522 a 0102 | strangeness by virtue of being mysterious and inspiring fear -04798185 07 n 02 abnormality 0 freakishness 0 004 @ 04797482 n 0000 + 01842304 a 0202 + 00608791 a 0203 + 01597387 a 0201 | marked strangeness as a consequence of being abnormal -04798365 07 n 01 singularity 2 003 @ 04797482 n 0000 + 00968010 a 0108 + 01678417 a 0102 | strangeness by virtue of being remarkable or unusual -04798511 07 n 03 outlandishness 0 bizarreness 0 weirdness 0 005 @ 04797482 n 0000 + 01575424 a 0302 + 00970081 a 0301 + 00608791 a 0201 + 00608791 a 0109 | strikingly out of the ordinary -04798700 07 n 01 quaintness 1 002 @ 04797482 n 0000 + 00969556 a 0101 | strangeness as a consequence of being old fashioned; "some words in her dialect had a charming quaintness" -04798881 07 n 01 eccentricity 0 003 @ 04797482 n 0000 + 00608791 a 0102 ~ 04799011 n 0000 | strange and unconventional behavior -04799011 07 n 02 oddity 2 oddness 0 002 @ 04798881 n 0000 + 00490845 a 0201 | eccentricity that is not easily explained -04799133 07 n 01 ethnicity 0 002 @ 04723816 n 0000 + 02248693 a 0102 | an ethnic quality or affiliation resulting from racial or cultural ties; "ethnicity has a strong influence on community status relations" -04799344 07 n 03 foreignness 0 strangeness 2 curiousness 0 007 @ 04723816 n 0000 + 00968010 a 0301 + 01349927 a 0102 ! 04799881 n 0101 = 01034457 a 0000 ~ 04799612 n 0000 ~ 04799789 n 0000 | the quality of being alien or not native; "the strangeness of a foreigner" -04799612 07 n 03 exoticism 0 exoticness 0 exotism 0 003 @ 04799344 n 0000 + 00968730 a 0201 + 01035007 a 0202 | the quality of being exotic; "he loved the exoticism of Egypt" -04799789 07 n 02 alienage 0 alienism 0 001 @ 04799344 n 0000 | the quality of being alien -04799881 07 n 01 nativeness 0 007 @ 04723816 n 0000 + 01906975 a 0101 + 01033996 a 0101 + 01037148 a 0101 + 01036083 a 0101 ! 04799344 n 0101 ~ 04800152 n 0000 | the quality of belonging to or being connected with a certain place or region by virtue of birth or origin -04800152 07 n 03 indigenousness 0 autochthony 0 endemism 0 003 @ 04799881 n 0000 + 01036383 a 0202 + 01036383 a 0105 | nativeness by virtue of originating or occurring naturally (as in a particular place) -04800359 07 n 01 originality 0 007 @ 04723816 n 0000 + 01686439 a 0101 ! 04801168 n 0101 = 01686439 a 0000 = 01688271 a 0000 ~ 04800596 n 0000 ~ 04800729 n 0000 | the quality of being new and original (not derived from something else) -04800596 07 n 02 freshness 0 novelty 0 002 @ 04800359 n 0000 + 01641648 a 0101 | originality by virtue of being refreshingly novel -04800729 07 n 02 unorthodoxy 0 heterodoxy 0 004 @ 04800359 n 0000 ! 04801313 n 0101 ~ 04800885 n 0000 ~ 04801030 n 0000 | the quality of being unorthodox -04800885 07 n 01 unconventionality 0 003 @ 04800729 n 0000 + 01961410 a 0102 ! 04801532 n 0101 | unorthodoxy by virtue of being unconventional -04801030 07 n 01 nonconformity 0 001 @ 04800729 n 0000 | unorthodoxy as a consequence of not conforming to expected standards or values -04801168 07 n 01 unoriginality 0 004 @ 04723816 n 0000 + 01688271 a 0101 ! 04800359 n 0101 ~ 04801313 n 0000 | the quality of being unoriginal -04801313 07 n 01 orthodoxy 0 007 @ 04801168 n 0000 ;c 05946687 n 0000 ! 04800729 n 0101 = 01689880 a 0000 = 01691073 a 0000 ~ 04801532 n 0000 ~ 04801877 n 0000 | the quality of being orthodox (especially in religion) -04801532 07 n 03 conventionality 0 convention 0 conventionalism 0 006 @ 04801313 n 0000 + 01690606 a 0101 ! 04800885 n 0101 = 00605516 a 0000 = 00606602 a 0000 ~ 04801763 n 0000 | orthodoxy as a consequence of being conventional -04801763 07 n 02 ossification 0 conformity 1 002 @ 04801532 n 0000 + 00418110 v 0102 | hardened conventionality -04801877 07 n 02 traditionalism 0 traditionality 0 005 @ 04801313 n 0000 + 01690767 a 0201 + 00611754 a 0101 + 10721124 n 0101 ~ 04802079 n 0000 | strict adherence to traditional methods or teachings -04802079 07 n 03 scholasticism 0 academicism 0 academism 0 001 @ 04801877 n 0000 | orthodoxy of a scholastic variety -04802198 07 n 02 correctness 1 rightness 1 007 @ 04723816 n 0000 + 00631391 a 0202 ! 04802403 n 0202 + 00631391 a 0101 ! 04802403 n 0101 = 00631391 a 0000 = 00632438 a 0000 | conformity to fact or truth -04802403 07 n 02 incorrectness 1 wrongness 1 007 @ 04723816 n 0000 + 00633778 a 0201 + 00632438 a 0202 ! 04802198 n 0202 + 00632438 a 0101 ! 04802198 n 0101 ~ 04802629 n 0000 | the quality of not conforming to fact or truth -04802629 07 n 02 erroneousness 0 error 0 004 @ 04802403 n 0000 + 00617748 v 0201 + 00632949 a 0101 ~ 04802776 n 0000 | inadvertent incorrectness -04802776 07 n 01 deviation 1 002 @ 04802629 n 0000 + 02661252 v 0101 | the error of a compass due to local magnetic disturbances -04802907 07 n 02 accuracy 2 truth 1 006 @ 04723816 n 0000 ! 04804451 n 0101 = 00021766 a 0000 = 00023383 a 0000 ~ 04803430 n 0000 ~ 04804306 n 0000 | the quality of being near to the true value; "he was beginning to doubt the accuracy of his compass"; "the lawyer questioned the truth of my account" -04803209 07 n 01 accuracy 3 002 @ 04723816 n 0000 ;c 06000644 n 0000 | (mathematics) the number of significant figures given in a number; "the atomic clock enabled scientists to measure time with much greater accuracy" -04803430 07 n 02 exactness 0 exactitude 0 007 @ 04802907 n 0000 + 00631798 a 0102 + 00914421 a 0101 ! 04804611 n 0101 ~ 04803702 n 0000 ~ 04803880 n 0000 ~ 04804169 n 0000 | the quality of being exact; "he demanded exactness in all details"; "a man of great exactitude" -04803702 07 n 01 minuteness 1 002 @ 04803430 n 0000 + 00310716 a 0101 | great precision; painstaking attention to details; "he examined the essay with the greatest minuteness" -04803880 07 n 02 preciseness 0 precision 0 004 @ 04803430 n 0000 ! 04804787 n 0202 + 00631798 a 0103 ! 04804787 n 0101 | the quality of being reproducible in amount or performance; "he handled it with the preciseness of an automaton"; "note the meticulous precision of his measurements" -04804169 07 n 01 trueness 0 002 @ 04803430 n 0000 + 00023120 a 0101 | exactness of adjustment; "I marveled at the trueness of his aim" -04804306 07 n 01 fidelity 2 001 @ 04802907 n 0000 | accuracy with which an electronic system reproduces the sound or image of its input signal -04804451 07 n 01 inaccuracy 2 004 @ 04723816 n 0000 ! 04802907 n 0101 ~ 04804611 n 0000 ~ 04804947 n 0000 | the quality of being inaccurate and having errors -04804611 07 n 02 inexactness 0 inexactitude 0 004 @ 04804451 n 0000 + 00915787 a 0101 ! 04803430 n 0101 ~ 04804787 n 0000 | the quality of being inaccurate and having errors -04804787 07 n 02 impreciseness 0 imprecision 0 004 @ 04804611 n 0000 ! 04803880 n 0202 + 01839417 a 0101 ! 04803880 n 0101 | the quality of lacking precision -04804947 07 n 01 looseness 1 002 @ 04804451 n 0000 + 00916199 a 0102 | a lack of strict accuracy; laxity of practice; "misunderstandings can often be traced to a looseness of expression" -04805136 07 n 01 infallibility 0 005 @ 04670022 n 0000 + 00964906 a 0101 ! 04806512 n 0101 ~ 04805304 n 0000 ~ 04805635 n 0000 | the quality of never making an error -04805304 07 n 01 inerrancy 0 004 @ 04805136 n 0000 ;c 06226057 n 0000 + 00965359 a 0102 ! 04805472 n 0101 | (Christianity) exemption from error; "biblical inerrancy" -04805472 07 n 01 errancy 0 004 @ 04806512 n 0000 + 00964303 a 0101 + 00617748 v 0101 ! 04805304 n 0101 | fallibility as indicated by erring or a tendency to err -04805635 07 n 01 papal_infallibility 0 001 @ 04805136 n 0000 | belief of the Roman Catholic Church that God protects the pope from error when he speaks about faith or morality -04805813 07 n 01 errancy 1 003 @ 04793925 n 0000 ;c 06226057 n 0000 + 00964303 a 0101 | (Christianity) holding views that disagree with accepted doctrine; especially disagreement with papal infallibility; "he denies the errancy of the Catholic Church" -04806067 07 n 01 instability 1 001 @ 04671394 n 0000 | unreliability attributable to being unstable -04806169 07 n 02 reproducibility 0 duplicability 0 003 @ 04670022 n 0000 + 01868185 a 0201 + 01867996 a 0101 | the quality of being reproducible -04806316 07 n 01 irreproducibility 0 002 @ 04671394 n 0000 + 01868302 a 0102 | the quality of being unreproducible; "he could not explain the irreproducibility of the results of his experiment" -04806512 07 n 01 fallibility 0 004 @ 04671394 n 0000 + 00964090 a 0101 ! 04805136 n 0101 ~ 04805472 n 0000 | the likelihood of making errors -04806655 07 n 01 distinction 1 001 @ 04723816 n 0000 | a distinguishing quality; "it has the distinction of being the cheapest restaurant in town" -04806804 07 n 01 worthiness 0 009 @ 05142180 n 0000 + 02584981 a 0101 ! 04807776 n 0101 = 02584981 a 0000 = 02588099 a 0000 ~ 04807050 n 0000 ~ 04807342 n 0000 ~ 04807489 n 0000 ~ 04807626 n 0000 | the quality or state of having merit or value -04807050 07 n 03 deservingness 0 merit 2 meritoriousness 0 005 @ 04806804 n 0000 + 02586747 a 0301 + 02586747 a 0201 + 02646378 v 0202 + 02586206 a 0101 | the quality of being deserving (e.g., deserving assistance); "there were many children whose deservingness he recognized and rewarded" -04807342 07 n 03 praiseworthiness 0 laudability 0 laudableness 0 002 @ 04806804 n 0000 + 02585545 a 0104 | the quality of being worthy of praise -04807489 07 n 01 quotability 0 003 @ 04806804 n 0000 + 02587083 a 0101 + 01963958 a 0102 | the quality of being worthy of being quoted -04807626 07 n 01 roadworthiness 0 002 @ 04806804 n 0000 ;c 03791235 n 0000 | (of motor vehicles) the quality of being fit to drive on the open road -04807776 07 n 01 unworthiness 0 006 @ 05144079 n 0000 + 01133017 a 0105 + 02588099 a 0101 ! 04806804 n 0101 ~ 04807971 n 0000 ~ 04808281 n 0000 | the quality or state of lacking merit or value -04807971 07 n 05 baseness 0 sordidness 0 contemptibility 0 despicableness 0 despicability 0 009 @ 04807776 n 0000 + 01133017 a 0501 + 01133017 a 0401 + 00904548 a 0301 + 01984806 a 0204 + 00621857 a 0202 + 00031384 a 0201 + 02036077 a 0101 + 01589650 a 0101 | unworthiness by virtue of lacking higher values -04808281 07 n 03 shamefulness 0 disgracefulness 0 ignominiousness 0 006 @ 04807776 n 0000 + 01227546 a 0303 + 01227546 a 0202 + 01549964 a 0103 + 01227546 a 0106 ~ 04808516 n 0000 | unworthiness meriting public disgrace and dishonor -04808516 07 n 01 scandalousness 0 002 @ 04808281 n 0000 + 01549964 a 0102 | disgracefulness that offends public morality -04808639 07 n 01 popularity 0 007 @ 04723816 n 0000 + 00414518 a 0101 + 01815838 a 0101 ! 04809089 n 0101 = 01815838 a 0000 = 01816956 a 0000 ~ 04808965 n 0000 | the quality of being widely admired or accepted or sought after; "his charm soon won him affection and popularity"; "the universal popularity of American movies" -04808965 07 n 01 hot_stuff 1 001 @ 04808639 n 0000 | the quality of being popular; "skiing is hot stuff in New Hampshire" -04809089 07 n 01 unpopularity 0 003 @ 04723816 n 0000 + 01816956 a 0101 ! 04808639 n 0101 | the quality of lacking general approval or acceptance -04809237 07 n 01 legality 0 007 @ 04809784 n 0000 + 02499148 a 0101 + 01400562 a 0101 ! 04810327 n 0101 = 01400562 a 0000 = 01401854 a 0000 ~ 04809453 n 0000 | lawfulness by virtue of conformity to a legal statute -04809453 07 n 02 validity 0 validness 0 005 @ 04809237 n 0000 + 00938659 a 0201 + 02498708 a 0201 + 00938659 a 0101 ~ 04809642 n 0000 | the quality of having legal force or effectiveness -04809642 07 n 02 effect 1 force 2 002 @ 04809453 n 0000 ;c 08441203 n 0000 | (of a law) having legal validity; "the law is still in effect" -04809784 07 n 01 lawfulness 0 010 @ 04723816 n 0000 + 01407267 a 0102 + 01401224 a 0101 + 01395617 a 0101 ! 04810865 n 0101 = 01395617 a 0000 = 01396047 a 0000 ~ 04809237 n 0000 ~ 04810035 n 0000 ~ 04810194 n 0000 | the quality of conforming to law -04810035 07 n 01 legitimacy 0 003 @ 04809784 n 0000 + 02481436 v 0107 ! 04811476 n 0101 | lawfulness by virtue of being authorized or in accordance with law -04810194 07 n 01 licitness 0 003 @ 04809784 n 0000 + 01401224 a 0103 ! 04811628 n 0101 | the quality of strictly conforming to law -04810327 07 n 01 illegality 0 005 @ 04810865 n 0000 + 01401854 a 0101 ! 04809237 n 0101 ~ 04811126 n 0000 ~ 04811296 n 0000 | unlawfulness by virtue of violating some legal statute -04810510 07 n 02 invalidity 0 invalidness 0 004 @ 04785669 n 0000 + 02499750 a 0201 + 02499750 a 0101 ~ 04810727 n 0000 | illogicality as a consequence of having a conclusion that does not follow from the premisses -04810727 07 n 01 fallaciousness 0 003 @ 04810510 n 0000 + 02500179 a 0101 + 00633084 a 0101 | result of a fallacy or error in reasoning -04810865 07 n 01 unlawfulness 0 010 @ 04723816 n 0000 + 01961410 a 0103 + 01408421 a 0101 + 01403760 a 0105 + 01396047 a 0101 ! 04809784 n 0101 ~ 04810327 n 0000 ~ 04811476 n 0000 ~ 04811628 n 0000 ~ 04811767 n 0000 | the quality of failing to conform to law -04811126 07 n 02 lawlessness 0 outlawry 0 003 @ 04810327 n 0000 + 02480923 v 0201 + 01396333 a 0101 | illegality as a consequence of unlawful acts; defiance of the law -04811296 07 n 01 infection 1 002 @ 04810327 n 0000 ;c 08441203 n 0000 | (international law) illegality that taints or contaminates a ship or cargo rendering it liable to seizure -04811476 07 n 01 illegitimacy 0 002 @ 04810865 n 0000 ! 04810035 n 0101 | unlawfulness by virtue of not being authorized by or in accordance with law -04811628 07 n 01 illicitness 0 003 @ 04810865 n 0000 + 01403760 a 0102 ! 04810194 n 0101 | the quality of not conforming strictly to law -04811767 07 n 01 shadiness 0 002 @ 04810865 n 0000 + 02466566 a 0102 | of questionable honesty or legality; "they acted with such obvious shadiness that they were instantly recognizable"; "the shadiness of their transactions" -04811995 07 n 03 refinement 1 civilization 0 civilisation 0 003 @ 04728786 n 0000 + 02388403 v 0306 + 02388403 v 0205 | the quality of excellence in thought and manners and taste; "a man of intellectual refinement"; "he is remembered for his generosity and civilization" -04812268 07 n 01 elegance 0 013 @ 04723816 n 0000 + 01142069 a 0101 + 00849357 a 0101 ! 04815321 n 0101 ~ 04812871 n 0000 ~ 04813066 n 0000 ~ 04813283 n 0000 ~ 04813395 n 0000 ~ 04813540 n 0000 ~ 04813712 n 0000 ~ 04814238 n 0000 ~ 04815002 n 0000 ~ 04815177 n 0000 | a refined quality of gracefulness and good taste; "she conveys an aura of elegance and gentility" -04812636 07 n 01 elegance 1 002 @ 04723816 n 0000 + 01139613 a 0101 | a quality of neatness and ingenious simplicity in the solution of a problem (especially in science or mathematics); "the simplicity and elegance of his invention" -04812871 07 n 05 dash 0 elan 1 flair 0 panache 0 style 1 002 @ 04812268 n 0000 + 02018296 a 0501 | distinctive and stylish elegance; "he wooed her with the confident dash of a cavalry officer" -04813066 07 n 03 daintiness 0 delicacy 0 fineness 0 002 @ 04812268 n 0000 + 00706311 a 0101 | the quality of being beautiful and delicate in appearance; "the daintiness of her touch"; "the fineness of her features" -04813283 07 n 01 courtliness 1 002 @ 04812268 n 0000 + 00751838 a 0101 | elegance suggestive of a royal court -04813395 07 n 01 tastefulness 0 004 @ 04812268 n 0000 + 00850648 a 0103 + 02392878 a 0101 ! 04818284 n 0101 | elegance indicated by good taste -04813540 07 n 03 breeding 3 genteelness 0 gentility 1 003 @ 04812268 n 0000 + 01590484 a 0305 + 01947741 a 0205 | elegance by virtue of fineness of manner and expression -04813712 07 n 08 chic 0 chicness 0 chichi 0 modishness 0 smartness 0 stylishness 0 swank 0 last_word 0 009 @ 04812268 n 0000 + 00973434 a 0702 + 00971075 a 0602 + 00975171 a 0601 + 00975487 a 0502 + 00971506 a 0405 + 00975487 a 0201 + 00975487 a 0101 ~ 04814025 n 0000 | elegance by virtue of being fashionable -04814025 07 n 04 jauntiness 1 nattiness 0 dapperness 0 rakishness 1 005 @ 04813712 n 0000 + 00971933 a 0406 + 00971933 a 0301 + 00971933 a 0204 + 00971933 a 0103 | stylishness as evidenced by a smart appearance -04814238 07 n 06 magnificence 1 brilliance 1 splendor 1 splendour 1 grandeur 1 grandness 0 008 @ 04812268 n 0000 + 01588619 a 0604 + 01676517 a 0602 + 00752110 a 0602 + 02342608 a 0201 + 01285376 a 0201 + 01285376 a 0103 ~ 04814872 n 0000 | the quality of being magnificent or splendid or grand; "for magnificence and personal service there is the Queen's hotel"; "his `Hamlet' lacks the brilliance that one expects"; "it is the university that gives the scene its stately splendor"; "an imaginative mix of old-fashioned grandeur and colorful art"; "advertisers capitalize on the grandness and elegance it brings to their products" -04814872 07 n 01 eclat 1 001 @ 04814238 n 0000 | brilliant or conspicuous success or effect; "the eclat of a great achievement" -04815002 07 n 02 pomp 1 eclat 2 002 @ 04812268 n 0000 + 02782367 a 0101 | ceremonial elegance and splendor; "entered with much eclat in a coach drawn by eight white horses" -04815177 07 n 01 class 0 003 @ 04812268 n 0000 ;u 07075172 n 0000 + 00975778 a 0101 | elegance in dress or behavior; "she has a lot of class" -04815321 07 n 01 inelegance 0 012 @ 04723816 n 0000 + 00851103 a 0101 ! 04812268 n 0101 ~ 04815624 n 0000 ~ 04816528 n 0000 ~ 04816761 n 0000 ~ 04817020 n 0000 ~ 04817280 n 0000 ~ 04817564 n 0000 ~ 04817788 n 0000 ~ 04817923 n 0000 ~ 04818284 n 0000 | the quality of lacking refinement and good taste -04815624 07 n 04 awkwardness 3 clumsiness 2 gracelessness 1 stiffness 2 008 @ 04815321 n 0000 + 01043924 a 0402 + 00851329 a 0302 + 01141242 a 0301 + 01001180 a 0202 + 00480439 a 0101 ~ 04815916 n 0000 ~ 04816125 n 0000 | the inelegance of someone stiff and unrelaxed (as by embarrassment) -04815916 07 n 01 woodenness 0 002 @ 04815624 n 0000 + 01141595 a 0101 | the quality of being wooden and awkward; "he criticized the woodenness of the acting"; "there was a certain woodenness in his replies" -04816125 07 n 02 rusticity 0 gaucherie 0 005 @ 04815624 n 0000 + 02051616 a 0103 + 02051013 a 0102 + 00636891 a 0103 ! 04816302 n 0101 | the quality of being rustic or gauche -04816302 07 n 01 urbanity 1 004 @ 04723816 n 0000 + 02821071 a 0101 + 02052333 a 0101 ! 04816125 n 0101 | the quality or character of life in a city or town; "there is an important difference between rusticity and urbanity" -04816528 07 n 03 dowdiness 0 drabness 0 homeliness 1 006 @ 04815321 n 0000 + 00169432 a 0301 + 00851588 a 0301 + 00807399 a 0201 + 00974519 a 0101 + 00976339 a 0101 | having a drab or dowdy quality; lacking stylishness or elegance -04816761 07 n 04 shabbiness 0 seediness 0 manginess 0 sleaziness 0 006 @ 04815321 n 0000 + 02346013 a 0407 + 02582269 a 0301 + 02583271 a 0202 + 02583043 a 0103 ~ 04817168 n 0000 | a lack of elegance as a consequence of wearing threadbare or dirty clothing -04817020 07 n 01 tweediness 1 002 @ 04815321 n 0000 + 00261885 a 0101 | an informal, homely, outdoor look characteristic of those who wear tweeds -04817168 07 n 01 raggedness 0 002 @ 04816761 n 0000 + 02582697 a 0101 | shabbiness by virtue of being in rags -04817280 07 n 06 coarseness 3 commonness 2 grossness 0 vulgarity 1 vulgarism 0 raunch 0 008 @ 04815321 n 0000 + 00425740 a 0603 + 01950198 a 0405 + 00683531 a 0404 + 00683531 a 0303 + 01950198 a 0202 + 02346557 a 0202 + 01950198 a 0101 | the quality of lacking taste and refinement -04817564 07 n 02 crudeness 2 roughness 2 005 @ 04815321 n 0000 + 02229584 a 0202 + 01803583 a 0202 + 02229584 a 0101 + 01953467 a 0103 | an unpolished unrefined quality; "the crudeness of frontier dwellings depressed her" -04817788 07 n 02 boorishness 1 uncouthness 0 002 @ 04815321 n 0000 + 01950198 a 0204 | inelegance by virtue of being an uncouth boor -04817923 07 n 08 ostentation 1 ostentatiousness 0 pomposity 0 pompousness 0 pretentiousness 1 puffiness 0 splashiness 0 inflation 0 008 @ 04815321 n 0000 + 02394975 a 0701 + 02394975 a 0502 + 01848355 a 0502 + 01849960 a 0403 + 01849960 a 0303 + 02394975 a 0201 + 01848355 a 0201 | lack of elegance as a consequence of being pompous and puffed up with vanity -04818284 07 n 01 tastelessness 1 005 @ 04815321 n 0000 + 02393401 a 0101 ! 04813395 n 0101 ~ 04818460 n 0000 ~ 04818700 n 0000 | inelegance indicated by a lack of good taste -04818460 07 n 04 cheapness 2 tackiness 0 tat 0 sleaze 0 007 @ 04818284 n 0000 + 02346013 a 0407 + 02393791 a 030b + 02393791 a 020a + 02393791 a 0102 + 01113114 a 0101 + 02346013 a 0102 | tastelessness by virtue of being cheap and vulgar -04818700 07 n 08 flashiness 0 garishness 1 gaudiness 1 loudness 2 brashness 1 meretriciousness 2 tawdriness 0 glitz 0 010 @ 04818284 n 0000 + 02393791 a 070c + 02346351 a 0703 + 02393791 a 0609 + 02393791 a 0408 + 02393791 a 0306 + 00407420 a 0302 + 02393791 a 0205 + 02393791 a 0104 + 00407420 a 0101 | tasteless showiness -04819026 07 n 02 comprehensibility 0 understandability 0 008 @ 04723816 n 0000 + 00533452 a 0205 + 00532892 a 0101 ! 04822223 n 0101 ~ 04819285 n 0000 ~ 04819496 n 0000 ~ 04820258 n 0000 ~ 04821277 n 0000 | the quality of comprehensible language or thought -04819285 07 n 02 legibility 0 readability 1 005 @ 04819026 n 0000 ;c 00614730 n 0000 + 01405047 a 0203 + 01404702 a 0101 ! 04822685 n 0101 | a quality of writing (print or handwriting) that can be easily read -04819496 07 n 01 intelligibility 0 006 @ 04819026 n 0000 + 00533452 a 0102 + 01336926 a 0101 ! 04823706 n 0101 ~ 04819953 n 0000 ~ 04820102 n 0000 | the quality of language that is comprehensible -04819694 07 n 01 expressiveness 0 003 @ 04723816 n 0000 + 00497148 a 0101 ~ 04819822 n 0000 | the quality of being expressive -04819822 07 n 01 picturesqueness 1 002 @ 04819694 n 0000 + 00407887 a 0101 | the quality of being strikingly expressive or vivid -04819953 07 n 01 readability 0 002 @ 04819496 n 0000 + 01405047 a 0103 | the quality of written language that makes it easy to read and understand -04820102 07 n 01 speech_intelligibility 0 001 @ 04819496 n 0000 | the intelligibility of speech (usually measured in the presence of noise or distortion) -04820258 07 n 06 clarity 1 lucidity 0 lucidness 0 pellucidity 1 clearness 1 limpidity 1 026 @ 04819026 n 0000 + 01405047 a 0601 + 01405047 a 0501 + 01320184 a 0502 + 00780011 a 0501 + 00771616 a 0501 + 00435190 a 0501 + 00697923 a 0502 + 00428404 a 0501 ! 04823866 n 0501 + 00429355 a 0404 + 00429355 a 0202 + 00939857 v 0203 + 00621058 v 020c + 01405047 a 0101 + 00697923 a 0102 + 00428404 a 0101 ! 04823416 n 0102 = 00428404 a 0000 = 00430191 a 0000 ~ 04820908 n 0000 ~ 04821084 n 0000 ~ 04821451 n 0000 ~ 04821615 n 0000 ~ 04821802 n 0000 ~ 04822032 n 0000 | free from obscurity and easy to understand; the comprehensibility of clear expression -04820908 07 n 01 monosemy 0 003 @ 04820258 n 0000 + 00103953 a 0101 ! 04825576 n 0101 | having a single meaning (absence of ambiguity) usually of individual words or phrases -04821084 07 n 01 focus 3 002 @ 04820258 n 0000 + 00731789 v 0105 | maximum clarity or distinctness of an idea; "the controversy brought clearly into focus an important difference of opinion" -04821277 07 n 02 coherence 0 coherency 0 004 @ 04819026 n 0000 + 01925708 a 0201 + 00464513 a 0201 + 00464513 a 0101 | logical and orderly and consistent relation of parts -04821451 07 n 02 preciseness 1 clearcutness 0 004 @ 04820258 n 0000 + 00780011 a 0203 + 00429016 a 0201 + 01837744 a 0101 | clarity as a consequence of precision -04821615 07 n 03 perspicuity 0 perspicuousness 0 plainness 3 004 @ 04820258 n 0000 + 01618376 a 0305 + 00429355 a 0206 + 00429355 a 0106 | clarity as a consequence of being perspicuous -04821802 07 n 02 unambiguity 0 unequivocalness 0 007 @ 04820258 n 0000 + 00940969 a 0202 + 00896555 a 0201 ! 04825114 n 0202 + 00896555 a 0103 + 00103696 a 0101 ! 04825114 n 0101 | clarity achieved by the avoidance of ambiguity -04822032 07 n 01 explicitness 0 006 @ 04820258 n 0000 + 01418989 a 0102 + 00940437 a 0101 ! 04824819 n 0101 = 00940437 a 0000 = 00941485 a 0000 | clarity as a consequence of being explicit -04822223 07 n 01 incomprehensibility 0 012 @ 04723816 n 0000 + 00939105 a 0102 + 00533851 a 0101 ! 04819026 n 0101 ~ 04822524 n 0000 ~ 04822685 n 0000 ~ 04822870 n 0000 ~ 04823031 n 0000 ~ 04823258 n 0000 ~ 04823416 n 0000 ~ 04823706 n 0000 ~ 04823866 n 0000 | the quality of being incomprehensible -04822524 07 n 01 inscrutability 0 002 @ 04822223 n 0000 + 00939444 a 0104 | the quality of being impossible to investigate; "the inscrutability of the future" -04822685 07 n 01 illegibility 0 004 @ 04822223 n 0000 ;c 00614730 n 0000 + 01405214 a 0101 ! 04819285 n 0101 | the quality of writing (print or handwriting) that cannot be deciphered -04822870 07 n 02 impenetrability 1 impenetrableness 0 002 @ 04822223 n 0000 + 00534918 a 0201 | incomprehensibility by virtue of being too dense to understand -04823031 07 n 01 noise 1 001 @ 04822223 n 0000 | incomprehensibility resulting from irrelevant information or meaningless facts or remarks; "all the noise in his speech concealed the fact that he didn't have anything to say" -04823258 07 n 02 opacity 1 opaqueness 1 003 @ 04822223 n 0000 + 00535293 a 0201 + 00535293 a 0101 | incomprehensibility resulting from obscurity of meaning -04823416 07 n 04 obscureness 2 obscurity 2 abstruseness 0 reconditeness 0 008 @ 04822223 n 0000 + 00899226 a 0403 + 00899226 a 0301 + 00431004 a 0201 + 00534250 a 0202 ! 04820258 n 0201 + 00431004 a 0101 + 00534250 a 0102 | the quality of being unclear or abstruse and hard to understand -04823706 07 n 01 unintelligibility 0 003 @ 04822223 n 0000 + 01337121 a 0101 ! 04819496 n 0101 | incomprehensibility as a consequence of being unintelligible -04823866 07 n 01 unclearness 0 009 @ 04822223 n 0000 + 01405523 a 0102 + 00698088 a 0102 + 00430191 a 0101 ! 04820258 n 0105 ~ 04824118 n 0000 ~ 04824350 n 0000 ~ 04824819 n 0000 ~ 04825114 n 0000 | incomprehensibility as a result of not being clear -04824118 07 n 01 elusiveness 0 004 @ 04823866 n 0000 + 01273316 a 0101 + 01717901 a 0101 + 00149262 a 0101 | the quality of being difficult to grasp or pin down; "the author's elusiveness may at times be construed as evasiveness" -04824350 07 n 01 vagueness 0 004 @ 04823866 n 0000 + 00431004 a 0102 + 00697389 a 0102 ~ 04824695 n 0000 | unclearness by virtue of being poorly expressed or not coherent in meaning; "the Conservative manifesto is a model of vagueness"; "these terms were used with a vagueness that suggested little or no thought about what each might convey" -04824695 07 n 01 haziness 2 002 @ 04824350 n 0000 + 00781644 a 0106 | vagueness attributable to being not clearly defined -04824819 07 n 01 inexplicitness 0 004 @ 04823866 n 0000 + 00941485 a 0102 ! 04822032 n 0101 ~ 04824977 n 0000 | unclearness by virtue of not being explicit -04824977 07 n 01 implicitness 0 002 @ 04824819 n 0000 + 00941485 a 0101 | inexplicitness as a consequence of being implied or indirect -04825114 07 n 02 ambiguity 0 equivocalness 0 009 @ 04823866 n 0000 + 00895442 a 0201 ! 04821802 n 0202 + 00895442 a 0102 + 00102201 a 0101 ! 04821802 n 0101 ~ 04825383 n 0000 ~ 04825576 n 0000 ~ 04825815 n 0000 | unclearness by virtue of having more than one meaning -04825383 07 n 03 equivocation 0 prevarication 0 evasiveness 0 005 @ 04876053 n 0000 @ 04825114 n 0000 + 00896182 a 0301 + 00835506 v 0204 + 00835506 v 0102 | intentionally vague or ambiguous -04825576 07 n 02 polysemy 0 lexical_ambiguity 0 003 @ 04825114 n 0000 + 00103447 a 0101 ! 04820908 n 0101 | the ambiguity of an individual word or phrase that can be used (in different contexts) to express two or more different meanings -04825815 07 n 02 twilight_zone 0 no_man's_land 0 001 @ 04825114 n 0000 | the ambiguous region between two categories or states or conditions (usually containing some features of both); "but there is still a twilight zone, the tantalizing occurrences that are probably noise but might possibly be a signal"; "in the twilight zone between humor and vulgarity"; "in that no man's land between negotiation and aggression" -04826235 07 n 01 righteousness 0 010 @ 04846770 n 0000 + 02036578 a 0101 ! 04827652 n 0101 ~ 04826485 n 0000 ~ 04826623 n 0000 ~ 04826771 n 0000 ~ 04850117 n 0000 ~ 04868748 n 0000 ~ 04869106 n 0000 ~ 04871374 n 0000 | adhering to moral principles -04826485 07 n 01 impeccability 0 002 @ 04826235 n 0000 + 02513521 a 0101 | the quality of being exempt from sin or incapable of sinning -04826623 07 n 02 uprightness 1 rectitude 0 002 @ 04826235 n 0000 + 02036934 a 0103 | righteousness as a consequence of being honorable and honest -04826771 07 n 02 piety 0 piousness 0 008 @ 04826235 n 0000 + 01781478 a 0201 ! 04828255 n 0101 = 01781478 a 0000 = 01782519 a 0000 ~ 04826999 n 0000 ~ 04827392 n 0000 ~ 04827503 n 0000 | righteousness by virtue of being pious -04826999 07 n 02 devoutness 0 religiousness 0 005 @ 04826771 n 0000 + 02056265 a 0201 + 01783158 a 0201 + 01783710 a 0101 ~ 04827175 n 0000 | piety by virtue of being devout -04827175 07 n 04 religiosity 0 religionism 0 religiousism 0 pietism 1 005 @ 04826999 n 0000 + 01782100 a 0403 + 01782100 a 0402 + 09629065 n 0201 + 02056265 a 0101 | exaggerated or affected piety and religious zeal -04827392 07 n 01 dutifulness 0 002 @ 04826771 n 0000 + 01613047 a 0101 | piety by virtue of devotion to duty -04827503 07 n 01 godliness 0 004 @ 04826771 n 0000 + 01781882 a 0101 + 01179547 a 0102 ! 04828754 n 0101 | piety by virtue of being a godly person -04827652 07 n 01 unrighteousness 0 009 @ 04850589 n 0000 + 02037272 a 0101 ! 04826235 n 0101 ~ 04827957 n 0000 ~ 04828255 n 0000 ~ 04854389 n 0000 ~ 04873550 n 0000 ~ 04873939 n 0000 ~ 04874672 n 0000 | failure to adhere to moral principles; "forgave us our sins and cleansed us of all unrighteousness" -04827957 07 n 03 sin 0 sinfulness 0 wickedness 1 005 @ 04827652 n 0000 + 02037531 a 0303 + 02514543 a 0202 + 02037531 a 0201 ~ 04828126 n 0000 | estrangement from god -04828126 07 n 01 mark_of_Cain 0 001 @ 04827957 n 0000 | the mark that God set upon Cain now refers to a person's sinful nature -04828255 07 n 02 impiety 0 impiousness 0 007 @ 04827652 n 0000 + 01995863 a 0201 + 01782519 a 0201 ! 04826771 n 0101 ~ 04828485 n 0000 ~ 04828612 n 0000 ~ 04828754 n 0000 | unrighteousness by virtue of lacking respect for a god -04828485 07 n 01 undutifulness 0 002 @ 04828255 n 0000 + 01995863 a 0102 | impiety characterized by lack of devotion to duty -04828612 07 n 02 irreligiousness 0 irreligion 0 003 @ 04828255 n 0000 + 10217208 n 0201 + 01784017 a 0101 | the quality of not being devout -04828754 07 n 02 ungodliness 0 godlessness 0 004 @ 04828255 n 0000 + 01782717 a 0201 + 02514543 a 0103 ! 04827503 n 0101 | impiety by virtue of not being a godly person -04828925 07 n 01 humaneness 0 008 @ 04723816 n 0000 ;c 00015388 n 0000 + 01261867 a 0101 ! 04830102 n 0101 = 01261867 a 0000 = 01262611 a 0000 ~ 04829182 n 0000 ~ 04829282 n 0000 | the quality of compassion or consideration for others (people or animals) -04829182 07 n 01 humanity 0 002 @ 04828925 n 0000 + 02993702 a 0101 | the quality of being humane -04829282 07 n 02 mercifulness 0 mercy 0 006 @ 04828925 n 0000 + 01142196 a 0101 ! 04831031 n 0101 ~ 04829550 n 0000 ~ 04829764 n 0000 ~ 04829922 n 0000 | a disposition to be kind and forgiving; "in those days a wife had to depend on the mercifulness of her husband" -04829550 07 n 02 compassion 0 pity 0 004 @ 04829282 n 0000 + 01821996 v 0202 + 01821996 v 0103 + 00506299 a 0101 | the humane quality of understanding the suffering of others and wanting to do something about it -04829764 07 n 02 forgivingness 0 kindness 1 004 @ 04829282 n 0000 + 01041209 a 0201 + 00923495 a 0103 + 01040984 a 0101 | tendency to be kind and forgiving -04829922 07 n 04 lenience 0 leniency 0 mildness 0 lenity 0 003 @ 04829282 n 0000 + 00437744 a 0201 + 01763159 a 0102 | mercifulness as a consequence of being lenient or tolerant -04830102 07 n 02 inhumaneness 0 inhumanity 0 007 @ 04723816 n 0000 + 01263971 a 0203 + 01262611 a 0101 ! 04828925 n 0101 ~ 04830343 n 0000 ~ 04830578 n 0000 ~ 04831031 n 0000 | the quality of lacking compassion or consideration for others -04830343 07 n 05 atrocity 0 atrociousness 0 barbarity 0 barbarousness 0 heinousness 0 005 @ 04830102 n 0000 + 01263013 a 0401 + 01131454 a 0201 + 01131454 a 0101 + 02514380 a 0502 | the quality of being shockingly cruel and inhumane -04830578 07 n 01 bestiality 0 002 @ 04830102 n 0000 + 01263445 a 0102 | the stupid brutal quality of a beast -04830689 07 n 04 ferociousness 0 brutality 0 viciousness 0 savagery 0 006 @ 04845475 n 0000 + 02514099 a 0302 + 00226105 a 0303 + 01263013 a 0307 + 01263013 a 0202 + 02511528 a 0101 | the trait of extreme cruelty -04830904 07 n 01 murderousness 0 002 @ 04845475 n 0000 + 00248837 a 0102 | cruelty evidence by a capability to commit murder -04831031 07 n 02 mercilessness 0 unmercifulness 0 006 @ 04830102 n 0000 + 01507402 a 0202 + 01507402 a 0101 ! 04829282 n 0101 ~ 04831264 n 0000 ~ 04831437 n 0000 | inhumaneness evidenced by an unwillingness to be kind or forgiving -04831264 07 n 02 pitilessness 0 ruthlessness 0 004 @ 04831031 n 0000 + 01508086 a 0203 + 01508086 a 0101 + 01264179 a 0101 | mercilessness characterized by a lack of pity -04831437 07 n 03 relentlessness 0 inexorability 0 inexorableness 0 006 @ 04831031 n 0000 + 01024812 a 0303 + 01785341 a 0302 + 01785341 a 0202 + 01785341 a 0103 + 00593071 a 0102 | mercilessness characterized by an unwillingness to relent or let up; "the relentlessness or their pursuit" -04831727 07 n 02 generosity 0 generousness 0 012 @ 04840011 n 0000 + 01114434 a 0201 + 01111016 a 0201 + 01114434 a 0101 ! 04833458 n 0101 = 01111016 a 0000 = 01112573 a 0000 ~ 04832050 n 0000 ~ 04832244 n 0000 ~ 04832401 n 0000 ~ 04832518 n 0000 ~ 04832951 n 0000 | the trait of being willing to give your money or time -04832050 07 n 01 charitableness 0 004 @ 04831727 n 0000 + 01372948 a 0101 + 02691390 a 0101 + 00359459 a 0101 | generosity as manifested by practicing charity (as for the poor or unfortunate) -04832244 07 n 02 bounty 1 bounteousness 0 003 @ 04831727 n 0000 + 01111418 a 0203 + 01111418 a 0103 | generosity evidenced by a willingness to give freely -04832401 07 n 01 bigheartedness 0 002 @ 04831727 n 0000 + 01111418 a 0102 | the quality of being kind and generous -04832518 07 n 02 liberality 0 liberalness 0 005 @ 04831727 n 0000 + 01111418 a 0208 + 01111418 a 0108 ! 04834457 n 0101 ~ 04832716 n 0000 | the trait of being generous in behavior and temperament -04832716 07 n 05 munificence 0 largess 0 largesse 0 magnanimity 0 openhandedness 0 004 @ 04832518 n 0000 + 01111418 a 0509 + 01114658 a 0403 + 01111965 a 0102 | liberality in bestowing gifts; extremely liberal and generous of spirit -04832951 07 n 01 unselfishness 0 005 @ 04831727 n 0000 + 01112471 a 0101 + 02099019 a 0101 ! 04834605 n 0101 ~ 04833276 n 0000 | the quality of not putting yourself first but being willing to give your time or money or effort etc. for others; "rural people show more devotion and unselfishness than do their urban cousins" -04833276 07 n 02 altruism 0 selflessness 0 004 @ 04832951 n 0000 + 00101609 a 0202 + 10421956 n 0102 ! 04835028 n 0101 | the quality of unselfish concern for the welfare of others -04833458 07 n 01 stinginess 0 007 @ 04616059 n 0000 + 01112573 a 0101 ! 04831727 n 0101 ~ 04833687 n 0000 ~ 04834339 n 0000 ~ 04834457 n 0000 ~ 04834605 n 0000 | a lack of generosity; a general unwillingness to part with money -04833687 07 n 09 meanness 1 minginess 0 niggardliness 0 niggardness 0 parsimony 1 parsimoniousness 1 tightness 1 tightfistedness 0 closeness 4 012 @ 04833458 n 0000 + 01113225 a 0902 + 01113505 a 0803 + 01113807 a 0704 + 01114116 a 0601 + 01114116 a 0501 + 01113636 a 0302 + 01113807 a 0202 + 01113807 a 0101 + 01112969 a 0102 ~ 04834073 n 0000 ~ 04834228 n 0000 | extreme stinginess -04834073 07 n 03 pettiness 1 littleness 1 smallness 1 003 @ 04833687 n 0000 + 01280908 a 0204 + 01280908 a 0108 | lack of generosity in trifling matters -04834228 07 n 01 miserliness 0 002 @ 04833687 n 0000 + 01113807 a 0103 | total lack of generosity with money -04834339 07 n 01 penuriousness 0 002 @ 04833458 n 0000 + 01114116 a 0102 | a disposition to be niggardly with money -04834457 07 n 01 illiberality 0 003 @ 04833458 n 0000 + 00288237 a 0101 ! 04832518 n 0101 | a disposition not to be liberal (generous) with money -04834605 07 n 01 selfishness 0 005 @ 04833458 n 0000 + 02098325 a 0101 ! 04832951 n 0101 ~ 04834817 n 0000 ~ 04835488 n 0000 | stinginess resulting from a concern for your own welfare and a disregard of others -04834817 07 n 03 greediness 0 voraciousness 1 rapaciousness 1 003 @ 04834605 n 0000 + 00031138 a 0203 + 00029933 a 0105 | an excessive desire for wealth (usually in large amounts); "the greediness of lawyers" -04835028 07 n 05 egoism 0 egocentrism 0 self-interest 0 self-concern 0 self-centeredness 0 005 @ 04616059 n 0000 + 00101800 a 0504 + 10047459 n 0102 + 10047199 n 0102 ! 04833276 n 0101 | concern for your own interests and welfare -04835260 07 n 03 self-love 0 narcism 0 narcissism 0 004 @ 04887129 n 0000 + 02098694 a 0303 + 10345422 n 0301 + 10345422 n 0202 | an exceptional interest in and admiration for yourself; "self-love that shut out everyone else" -04835488 07 n 04 opportunism 0 self-interest 1 self-seeking 0 expedience 1 004 @ 04834605 n 0000 + 00931555 a 0401 + 00931974 a 0102 + 10379376 n 0101 | taking advantage of opportunities without regard for the consequences for others -04835724 07 n 01 drive 0 006 @ 04616059 n 0000 ~ 04835950 n 0000 ~ 04836074 n 0000 ~ 04836268 n 0000 ~ 04836683 n 0000 ~ 04837232 n 0000 | the trait of being highly motivated; "his drive and energy exhausted his co-workers" -04835950 07 n 01 action 0 001 @ 04835724 n 0000 | the trait of being active and energetic and forceful; "a man of action" -04836074 07 n 04 enterprise 0 enterprisingness 0 initiative 0 go-ahead 0 004 @ 04835724 n 0000 + 00781303 v 0401 + 00884778 a 0201 + 10060352 n 0102 | readiness to embark on bold new ventures -04836268 07 n 02 ambition 0 ambitiousness 0 008 @ 04835724 n 0000 + 00104051 a 0201 + 00104051 a 0101 + 01826060 v 0101 = 00104051 a 0000 = 00105023 a 0000 ~ 04836491 n 0000 ~ 04836583 n 0000 | a strong drive for success -04836491 07 n 01 aspiration 0 002 @ 04836268 n 0000 + 00705517 v 0102 | a will to succeed -04836583 07 n 02 power_hunger 0 status_seeking 0 001 @ 04836268 n 0000 | a drive to acquire power -04836683 07 n 03 energy 2 push 0 get-up-and-go 0 008 @ 04835724 n 0000 + 00104318 a 0202 + 02589576 v 0205 + 02406916 v 0204 + 00765977 v 0201 + 00885099 a 0101 + 00022686 v 0104 ~ 04836960 n 0000 | enterprising or ambitious drive; "Europeans often laugh at American energy" -04836960 07 n 01 second_wind 0 001 @ 04836683 n 0000 | renewed energy or strength to continue an undertaking; "She had dinner and got a second wind to finish painting"; "the employers, initially taken by surprise at the pace of developments, regained their second wind" -04837232 07 n 01 aggressiveness 0 006 @ 04835724 n 0000 + 00082241 a 0101 ~ 04837425 n 0000 ~ 04837615 n 0000 ~ 04837931 n 0000 ~ 04838210 n 0000 | the quality of being bold and enterprising -04837425 07 n 02 competitiveness 0 fight 0 004 @ 04837232 n 0000 + 02407338 v 0201 + 00083003 a 0101 + 00512487 a 0101 | an aggressive willingness to compete; "the team was full of fight" -04837615 07 n 03 combativeness 0 militance 0 militancy 0 006 @ 04837232 n 0000 + 00083003 a 0302 + 00083003 a 0202 + 00512769 a 0103 + 00082766 a 0103 ~ 04837814 n 0000 | a militant aggressiveness -04837814 07 n 01 scrappiness 0 002 @ 04837615 n 0000 + 00084661 a 0101 | the trait of being scrappy and pugnacious -04837931 07 n 03 intrusiveness 0 meddlesomeness 0 officiousness 0 006 @ 04837232 n 0000 + 01352561 a 0304 + 01352561 a 0202 + 01352067 a 0101 = 01352067 a 0000 = 01352895 a 0000 | aggressiveness as evidenced by intruding; by advancing yourself or your ideas without invitation -04838210 07 n 05 boldness 2 nerve 1 brass 0 face 2 cheek 0 007 @ 04837232 n 0000 + 00204779 a 0502 + 00963452 v 0501 + 01078783 v 0402 + 00155144 a 0305 + 00204779 a 0203 ~ 04838510 n 0000 | impudent aggressiveness; "I couldn't believe her boldness"; "he had the effrontery to question my honesty" -04838510 07 n 02 audacity 2 audaciousness 2 004 @ 04838210 n 0000 + 00155144 a 0201 + 00155144 a 0101 ~ 04838727 n 0000 | aggressive boldness or unmitigated effrontery; "he had the audacity to question my decision" -04838727 07 n 04 presumption 0 presumptuousness 0 effrontery 0 assumption 0 005 @ 04838510 n 0000 + 00205696 a 0203 + 00205696 a 0103 + 00011551 v 0101 ~ 04839009 n 0000 | audacious (even arrogant) behavior that you have no right to; "he despised them for their presumptuousness" -04839009 07 n 02 uppityness 0 uppishness 0 003 @ 04838727 n 0000 + 01890382 a 0208 + 01540102 a 0102 | assumption of airs beyond one's station -04839154 07 n 02 fairness 0 equity 0 009 @ 04850117 n 0000 ! 04839676 n 0202 + 01532261 a 0101 + 00956131 a 0101 ! 04839676 n 0101 = 00956131 a 0000 = 00957176 a 0000 ~ 04839445 n 0000 ~ 04839555 n 0000 | conformity with rules or standards; "the judge recognized the fairness of my claim" -04839445 07 n 01 non-discrimination 0 001 @ 04839154 n 0000 | fairness in treating people without prejudice -04839555 07 n 01 sportsmanship 0 002 @ 04839154 n 0000 + 10638922 n 0102 | fairness in following the rules of the game -04839676 07 n 02 unfairness 0 inequity 0 005 @ 04854389 n 0000 ! 04839154 n 0202 + 00957176 a 0101 ! 04839154 n 0101 ~ 04839877 n 0000 | injustice by virtue of not conforming with rules or standards -04839877 07 n 01 gamesmanship 0 001 @ 04839676 n 0000 | the use of dubious (although not technically illegal) methods to win a game -04840011 07 n 01 kindness 0 009 @ 04849241 n 0000 + 01372049 a 0101 ! 04845312 n 0101 = 01372049 a 0000 = 01373728 a 0000 ~ 04831727 n 0000 ~ 04840285 n 0000 ~ 04841245 n 0000 ~ 04841358 n 0000 | the quality of being warmhearted and considerate and humane and sympathetic -04840285 07 n 01 benevolence 0 002 @ 04840011 n 0000 ~ 04840405 n 0000 | an inclination to do kind or charitable acts -04840405 07 n 02 charity 0 brotherly_love 0 002 @ 04840285 n 0000 @ 04847991 n 0000 | a kindly and lenient attitude toward people -04840537 07 n 01 beneficence 0 005 @ 04849241 n 0000 + 00223802 a 0101 ! 04846533 n 0101 = 00223802 a 0000 ~ 04840715 n 0000 | the quality of being kind or helpful or generous -04840715 07 n 03 grace 2 grace_of_God 0 free_grace 0 002 @ 04840537 n 0000 ;c 06184270 n 0000 | (Christian theology) the free and unmerited favor or beneficence of God; "God's grace is manifested in the salvation of sinners"; "there but for the grace of God go I" -04840981 07 n 03 benignity 0 benignancy 0 graciousness 1 009 @ 04849241 n 0000 + 00177834 a 0301 + 01372568 a 0302 + 01372773 a 0201 + 01372773 a 0201 ! 04842788 n 0202 + 01372773 a 0101 ! 04842788 n 0101 = 00226618 a 0000 | the quality of being kind and gentle -04841245 07 n 01 loving-kindness 0 001 @ 04840011 n 0000 | tender kindness motivated by a feeling of affection -04841358 07 n 03 consideration 0 considerateness 0 thoughtfulness 1 008 @ 04840011 n 0000 + 00639230 a 0301 ! 04845967 n 0303 + 00638981 a 0201 + 00691312 v 0101 ! 04845967 n 0101 ~ 04663204 n 0000 ~ 04841810 n 0000 | kind and considerate regard for others; "he showed no consideration for her feelings" -04841664 07 n 02 kindliness 0 helpfulness 1 002 @ 04654337 n 0000 + 01372948 a 0103 | friendliness evidence by a kindly and helpful disposition -04841810 07 n 02 tact 0 tactfulness 0 006 @ 04841358 n 0000 + 00759169 a 0201 + 02384383 a 0201 ! 04846243 n 0201 ~ 04842029 n 0000 ~ 04842232 n 0000 | consideration in dealing with others and avoiding giving offense -04842029 07 n 04 delicacy 1 diplomacy 0 discreetness 0 finesse 0 005 @ 04841810 n 0000 + 02384672 a 0302 + 00772910 a 0301 + 00758459 a 0201 + 00758459 a 0202 | subtly skillful handling of a situation -04842232 07 n 02 savoir-faire 0 address 0 001 @ 04841810 n 0000 | social skill -04842313 07 n 03 malevolence 0 malevolency 0 malice 0 006 @ 04852088 n 0000 + 00224515 a 0202 + 00224515 a 0102 ~ 04842515 n 0000 ~ 04845475 n 0000 ~ 04845684 n 0000 | the quality of threatening evil -04842515 07 n 05 cattiness 0 bitchiness 0 spite 0 spitefulness 0 nastiness 2 007 @ 04842313 n 0000 + 00425313 a 0504 + 01587077 a 0501 + 00225099 a 0402 + 01793177 v 0306 + 00225912 a 0201 + 00225912 a 0102 | malevolence by virtue of being malicious or spiteful or nasty -04842788 07 n 03 malignity 0 malignancy 0 malignance 0 005 @ 04852088 n 0000 ! 04840981 n 0202 + 00224515 a 0103 ! 04840981 n 0101 = 00227003 a 0000 | quality of being disposed to evil; intense ill will -04842993 07 n 02 sensitivity 2 sensitiveness 2 008 @ 05200169 n 0000 + 02105990 a 0201 ! 04844024 n 0202 + 02105990 a 0101 ! 04844024 n 0101 ~ 04843270 n 0000 ~ 04843429 n 0000 ~ 04843875 n 0000 | the ability to respond to affective changes in your interpersonal environment -04843270 07 n 02 antenna 0 feeler 0 001 @ 04842993 n 0000 | sensitivity similar to that of a receptor organ; "he had a special antenna for public relations" -04843429 07 n 01 defensiveness 0 002 @ 04842993 n 0000 ~ 04843675 n 0000 | excessive sensitivity to criticism; "his defensiveness was manifested in hurt silence"; "the fear of being sued for malpractice has magnified physicians' defensiveness" -04843675 07 n 01 bunker_mentality 0 001 @ 04843429 n 0000 | defensiveness resulting from repeated attacks; "after so many suicide bombings the Israelis have to resist developing a bunker mentality" -04843875 07 n 01 perceptiveness 0 003 @ 04842993 n 0000 + 01744111 a 0101 ! 04845146 n 0101 | the quality of insight and sympathetic understanding -04844024 07 n 02 insensitivity 2 insensitiveness 2 010 @ 05207130 n 0000 + 02106761 a 0201 ! 04842993 n 0202 + 02106761 a 0101 ! 04842993 n 0101 ~ 04844343 n 0000 ~ 04844478 n 0000 ~ 04844625 n 0000 ~ 04845146 n 0000 ~ 04845312 n 0000 | the inability to respond to affective changes in your interpersonal environment -04844343 07 n 02 crassness 0 crassitude 0 002 @ 04844024 n 0000 + 01950711 a 0101 | the quality of being crass--devoid of refinement -04844478 07 n 01 tin_ear 0 001 @ 04844024 n 0000 | insensitivity to the appropriateness or subtlety of language; "he has a tin ear for dialogue" -04844625 07 n 05 unfeelingness 0 callousness 0 callosity 0 hardness 3 insensibility 0 007 @ 04844024 n 0000 + 02107827 a 0501 + 01155354 a 0401 + 02107162 a 0301 + 02107162 a 0201 + 00507292 a 0103 ~ 04844891 n 0000 | devoid of passion or feeling; hardheartedness -04844891 07 n 01 dullness 0 003 @ 04844625 n 0000 + 02107634 a 0101 + 00803971 a 0101 | lack of sensibility; "there was a dullness in his heart"; "without him the dullness of her life crept into her work no matter how she tried to compartmentalize it." -04845146 07 n 01 unperceptiveness 0 004 @ 04844024 n 0000 + 00776290 a 0101 + 01746114 a 0101 ! 04843875 n 0101 | the lack of insight and sympathetic understanding -04845312 07 n 01 unkindness 0 006 @ 04844024 n 0000 + 01264179 a 0102 + 01373728 a 0101 ! 04840011 n 0101 ~ 04845863 n 0000 ~ 04845967 n 0000 | lack of sympathy -04845475 07 n 03 cruelty 1 cruelness 0 harshness 4 005 @ 04842313 n 0000 + 01374183 a 0301 + 01263013 a 0203 ~ 04830689 n 0000 ~ 04830904 n 0000 | the quality of being cruel and causing tension or annoyance -04845684 07 n 02 beastliness 2 meanness 0 005 @ 04842313 n 0000 + 01113807 a 0201 + 01587787 a 0202 + 01589650 a 0202 + 01263445 a 0101 | the quality of being deliberately mean -04845863 07 n 01 unhelpfulness 0 002 @ 04845312 n 0000 + 01198019 a 0101 | an inability to be helpful -04845967 07 n 03 inconsideration 0 inconsiderateness 0 thoughtlessness 1 008 @ 04845312 n 0000 + 02420757 a 0301 ! 04841358 n 0303 + 02420757 a 0201 + 00639356 a 0201 ! 04841358 n 0101 ~ 04846243 n 0000 ~ 04846383 n 0000 | the quality of failing to be considerate of others -04846243 07 n 01 tactlessness 0 004 @ 04845967 n 0000 + 00063953 a 0102 + 02384843 a 0101 ! 04841810 n 0102 | the quality of lacking tact -04846383 07 n 01 bluntness 2 002 @ 04845967 n 0000 + 00764484 a 0101 | the quality of being direct and outspoken; "the bluntness of a Yorkshireman" -04846533 07 n 03 maleficence 0 mischief 0 balefulness 0 007 @ 04852088 n 0000 + 00224366 a 0301 + 00194357 a 0301 + 01162633 a 0201 + 00224166 a 0101 ! 04840537 n 0101 = 00224166 a 0000 | the quality or nature of being harmful or evil -04846770 07 n 01 morality 0 013 @ 04723816 n 0000 + 01548925 a 0101 + 01548193 a 0101 ! 04850589 n 0101 = 01548193 a 0000 = 01549291 a 0000 = 01904845 a 0000 = 01905377 a 0000 ~ 04826235 n 0000 ~ 04847133 n 0000 ~ 04848492 n 0000 ~ 04849241 n 0000 ~ 04849759 n 0000 | concern with the distinction between good and evil or right and wrong; right or good conduct -04847133 07 n 01 rightness 0 005 @ 04846770 n 0000 + 02034828 a 0101 ! 04851962 n 0101 = 02034828 a 0000 = 02035337 a 0000 | according with conscience or morality -04847298 07 n 03 virtue 1 virtuousness 0 moral_excellence 0 003 @ 04849241 n 0000 + 02513269 a 0201 + 02513269 a 0101 | the quality of doing what is right and avoiding what is wrong -04847482 07 n 01 virtue 4 003 @ 04849241 n 0000 + 02513269 a 0101 ~ 04847600 n 0000 | a particular moral excellence -04847600 07 n 01 cardinal_virtue 0 003 @ 04847482 n 0000 ~ 04847733 n 0000 ~ 04847991 n 0000 | one of the seven preeminent virtues -04847733 07 n 01 natural_virtue 0 006 @ 04847600 n 0000 ;c 05976065 n 0000 ~ 04850117 n 0000 ~ 04883614 n 0000 ~ 04892794 n 0000 ~ 05032193 n 0000 | (scholasticism) one of the four virtues (prudence, justice, fortitude, and temperance) derived from nature -04847991 07 n 02 theological_virtue 0 supernatural_virtue 0 004 @ 04847600 n 0000 ~ 04840405 n 0000 ~ 04848262 n 0000 ~ 05946687 n 0000 | according to Christian ethics: one of the three virtues (faith, hope, and charity) created by God to round out the natural virtues -04848262 07 n 01 hope 0 003 @ 04847991 n 0000 + 01811441 v 0101 + 01826723 v 0101 | one of the three Christian virtues -04848383 07 n 01 saintliness 0 002 @ 04849241 n 0000 + 01130261 a 0105 | the quality of resembling a saint -04848492 07 n 01 conscience 0 004 @ 04846770 n 0000 + 02086115 a 0101 ~ 04848686 n 0000 ~ 04849074 n 0000 | conformity to one's own sense of right conduct; "a person of unflagging conscience" -04848686 07 n 01 conscientiousness 0 004 @ 04848492 n 0000 + 02086115 a 0101 ! 04849074 n 0101 ~ 04848866 n 0000 | the quality of being in accord with the dictates of conscience -04848866 07 n 01 religiousness 1 002 @ 04848686 n 0000 + 02085740 a 0101 | the quality of being extremely conscientious; "his care in observing the rules of good health amounted to a kind of religiousness" -04849074 07 n 01 unconscientiousness 0 003 @ 04848492 n 0000 + 02086356 a 0101 ! 04848686 n 0101 | the quality of being willing to ignore the dictates of conscience -04849241 07 n 02 good 1 goodness 1 014 @ 04846770 n 0000 + 02036934 a 0201 + 01983162 a 0202 + 01129977 a 0201 ! 04852088 n 0202 ! 04852088 n 0101 = 01129977 a 0000 ~ 04840011 n 0000 ~ 04840537 n 0000 ~ 04840981 n 0000 ~ 04847298 n 0000 ~ 04847482 n 0000 ~ 04848383 n 0000 ~ 04849614 n 0000 | moral excellence or admirableness; "there is much good to be found in people" -04849614 07 n 01 summum_bonum 0 001 @ 04849241 n 0000 | the supreme good in which all moral values are included or from which they are derived -04849759 07 n 03 virtue 2 chastity 0 sexual_morality 0 006 @ 04846770 n 0000 + 00360650 a 0201 + 00361125 a 0105 = 00360650 a 0000 = 00361509 a 0000 ~ 04849972 n 0000 | morality with respect to sexual relations -04849972 07 n 04 honor 1 honour 1 purity 0 pureness 0 003 @ 04849759 n 0000 + 00361125 a 0401 + 00361125 a 0301 | a woman's virtue or chastity -04850117 07 n 02 justice 0 justness 0 008 @ 04826235 n 0000 @ 04847733 n 0000 + 00956131 a 0202 + 00958151 a 0202 + 01369663 a 0201 ! 04854389 n 0101 ~ 04839154 n 0000 ~ 04850341 n 0000 | the quality of being just or fair -04850341 07 n 02 right 1 rightfulness 0 005 @ 04850117 n 0000 + 01407267 a 0203 + 01370475 a 0201 ! 04854604 n 0202 ! 04854604 n 0101 | anything in accord with principles of justice; "he feels he is in the right"; "the rightfulness of his claim" -04850589 07 n 01 immorality 0 011 @ 04723816 n 0000 + 02036077 a 0102 + 01549291 a 0101 ! 04846770 n 0101 ~ 04827652 n 0000 ~ 04850996 n 0000 ~ 04851585 n 0000 ~ 04851715 n 0000 ~ 04851865 n 0000 ~ 04851962 n 0000 ~ 04852088 n 0000 | the quality of not being in accord with standards of right or good conduct; "the immorality of basing the defense of the West on the threat of mutual assured destruction" -04850996 07 n 05 corruption 1 degeneracy 1 depravation 0 depravity 0 putrefaction 0 004 @ 04850589 n 0000 + 00621524 a 0401 + 02579447 v 040a + 02579447 v 030a | moral perversion; impairment of virtue and moral principles; "the luxury and corruption among the upper classes"; "moral degeneracy followed intellectual degeneration"; "its brothels, its opium parlors, its depravity"; "Rome had fallen into moral putrefaction" -04851421 07 n 01 infection 0 001 @ 04853948 n 0000 | moral corruption or contamination; "ambitious men are led astray by an infection that is almost unavoidable" -04851585 07 n 01 corruptibility 0 003 @ 04850589 n 0000 + 00621207 a 0101 ! 04870206 n 0101 | the capability of being corrupted -04851715 07 n 02 licentiousness 0 wantonness 1 003 @ 04850589 n 0000 + 00361837 a 0206 + 00362269 a 0101 | the quality of being lewd and lascivious -04851865 07 n 02 anomie 0 anomy 0 001 @ 04850589 n 0000 | lack of moral standards in a society -04851962 07 n 01 wrongness 0 003 @ 04850589 n 0000 + 02035337 a 0101 ! 04847133 n 0101 | contrary to conscience or morality -04852088 07 n 02 evil 0 evilness 0 016 @ 04850589 n 0000 + 02514099 a 0201 + 01131043 a 0201 ! 04849241 n 0202 ! 04849241 n 0101 = 01131043 a 0000 ~ 04842313 n 0000 ~ 04842788 n 0000 ~ 04846533 n 0000 ~ 04852534 n 0000 ~ 04852750 n 0000 ~ 04853212 n 0000 ~ 04853361 n 0000 ~ 04853503 n 0000 ~ 04853765 n 0000 ~ 04853873 n 0000 | the quality of being morally wrong in principle or practice; "attempts to explain the origin of evil in the world" -04852534 07 n 01 worst 0 002 @ 04852088 n 0000 + 00229630 a 0101 | the greatest damage or wickedness of which one is capable; "the invaders did their worst"; "so pure of heart that his worst is another man's best" -04852750 07 n 04 nefariousness 0 wickedness 0 vileness 2 ugliness 1 006 @ 04852088 n 0000 + 01133017 a 0402 + 02513740 a 0201 + 02515001 a 0101 ~ 04852962 n 0000 ~ 04853124 n 0000 | the quality of being wicked -04852962 07 n 01 filthiness 0 003 @ 04852750 n 0000 + 01587474 a 0102 + 00425313 a 0102 | moral corruption or pollution; "this deformity and filthiness of sin" -04853124 07 n 01 enormity 0 001 @ 04852750 n 0000 | the quality of extreme wickedness -04853212 07 n 01 reprehensibility 0 002 @ 04852088 n 0000 + 02035765 a 0104 | being reprehensible; worthy of and deserving reprehension or reproof -04853361 07 n 02 villainy 0 villainousness 0 002 @ 04852088 n 0000 + 02515001 a 0202 | the quality of evil by virtue of villainous behavior -04853503 07 n 02 perversity 0 perverseness 1 003 @ 04852088 n 0000 + 00621524 a 0202 + 00621524 a 0102 | deliberately deviating from what is good; "there will always be a few people who, through macho perversity, gain satisfaction from bullying and terrorism" -04853765 07 n 02 error 1 wrongdoing 0 001 @ 04852088 n 0000 | departure from what is ethically acceptable -04853873 07 n 02 frailty 0 vice 0 001 @ 04852088 n 0000 | moral weakness -04853948 07 n 02 corruptness 0 corruption 0 008 @ 04874672 n 0000 + 02319129 a 0102 ! 04870040 n 0101 = 00620731 a 0000 = 00622581 a 0000 ~ 04851421 n 0000 ~ 04854259 n 0000 ~ 04875468 n 0000 | lack of integrity or honesty (especially susceptibility to bribery); use of a position of trust for dishonest gain -04854259 07 n 01 venality 0 002 @ 04853948 n 0000 + 00621207 a 0105 | prostitution of talents or offices or services for reward -04854389 07 n 02 injustice 0 unjustness 0 007 @ 04827652 n 0000 + 00957176 a 0202 + 00958712 a 0202 + 01370590 a 0201 ! 04850117 n 0101 ~ 04839676 n 0000 ~ 04854604 n 0000 | the practice of being unjust or unfair -04854604 07 n 02 wrong 1 wrongfulness 1 008 @ 04854389 n 0000 + 01396628 a 0201 + 01371009 a 0201 + 01408421 a 0202 ! 04850341 n 0202 + 02035337 a 0101 + 02513989 v 0101 ! 04850341 n 0101 | that which is contrary to the principles of justice or law; "he feels that you are in the wrong" -04854893 07 n 01 amorality 0 001 @ 04723816 n 0000 | the quality of being amoral -04854976 07 n 01 divinity 0 002 @ 04723816 n 0000 + 02055460 a 0101 | the quality of being divine; "ancient Egyptians believed in the divinity of the Pharaohs" -04855138 07 n 03 holiness 0 sanctity 0 sanctitude 0 006 @ 04723816 n 0000 + 02053818 a 0101 ! 04855840 n 0101 = 02053818 a 0000 = 02054779 a 0000 ~ 04855332 n 0000 | the quality of being holy -04855332 07 n 01 sacredness 0 007 @ 04855138 n 0000 + 02054610 a 0102 + 02587261 a 0101 + 02054310 a 0102 + 00519823 a 0101 + 02055062 a 0101 ~ 04855641 n 0000 | the quality of being sacred -04855524 07 n 01 ideality 0 003 @ 04723816 n 0000 + 01751201 a 0101 + 00012689 a 0101 | the quality of being ideal -04855641 07 n 01 holy_of_holies 0 001 @ 04855332 n 0000 | (figurative) something regarded as sacred or inviolable; "every politician fears to touch that holy of holies, the Social Security System" -04855840 07 n 01 unholiness 0 006 @ 04723816 n 0000 + 02037531 a 0102 + 01132515 a 0108 + 02054779 a 0101 ! 04855138 n 0101 ~ 04856014 n 0000 | the quality of being unholy -04856014 07 n 02 profaneness 0 unsanctification 0 004 @ 04855840 n 0000 + 00580720 v 0201 + 00425002 a 0103 ~ 04856182 n 0000 | unholiness by virtue of being profane -04856182 07 n 01 sacrilegiousness 0 002 @ 04856014 n 0000 + 02012748 a 0103 | profaneness by virtue of committing sacrilege -04856308 07 n 01 safeness 0 005 @ 04731497 n 0000 + 00066933 a 0101 + 02273643 a 0103 + 02057829 a 0101 ! 04856460 n 0101 | the quality of being safe -04856460 07 n 01 dangerousness 0 005 @ 04731497 n 0000 + 00651039 a 0101 + 02058794 a 0101 ! 04856308 n 0101 ~ 04856621 n 0000 | the quality of not being safe -04856621 07 n 01 precariousness 0 002 @ 04856460 n 0000 + 02060496 a 0103 | extreme dangerousness -04856721 07 n 02 curability 0 curableness 0 005 @ 04731497 n 0000 + 00994410 a 0201 ! 04856899 n 0202 + 00994410 a 0101 ! 04856899 n 0101 | capability of being cured or healed -04856899 07 n 02 incurability 1 incurableness 0 005 @ 04731497 n 0000 + 00994567 a 0201 ! 04856721 n 0202 + 00994567 a 0101 ! 04856721 n 0101 | incapability of being cured or healed -04857083 07 n 04 courage 0 courageousness 0 bravery 0 braveness 0 014 @ 04620558 n 0000 + 00250119 a 0402 + 00262792 a 0401 + 00262792 a 0202 + 00262792 a 0102 ! 04860065 n 0101 = 00262792 a 0000 ~ 04857490 n 0000 ~ 04857738 n 0000 ~ 04858089 n 0000 ~ 04858222 n 0000 ~ 04858317 n 0000 ~ 04858455 n 0000 ~ 05032193 n 0000 | a quality of spirit that enables you to face danger or pain without showing fear -04857490 07 n 04 heart 1 mettle 2 nerve 0 spunk 0 005 @ 04857083 n 0000 + 02279900 a 0403 + 00263994 a 0407 + 00251373 a 0301 + 01806271 v 0302 | the courage to carry on; "he kept fighting on pure spunk"; "you haven't got the heart for baseball" -04857738 07 n 07 heroism 0 gallantry 0 valor 0 valour 0 valorousness 0 valiance 0 valiancy 0 004 @ 04857083 n 0000 + 00264570 a 0701 + 00264570 a 0502 + 00264570 a 0302 | the qualities of a hero or heroine; exceptional or heroic courage when facing danger (especially in battle); "he showed great heroism in battle"; "he received a medal for valor" -04858089 07 n 02 dauntlessness 0 intrepidity 0 003 @ 04857083 n 0000 + 00250119 a 0206 + 00250119 a 0103 | resolute courageousness -04858222 07 n 01 Dutch_courage 0 001 @ 04857083 n 0000 | courage resulting from intoxication -04858317 07 n 01 stoutheartedness 0 003 @ 04857083 n 0000 + 00264262 a 0102 ! 04860369 n 0101 | the trait of having a courageous spirit -04858455 07 n 01 fearlessness 0 006 @ 04857083 n 0000 + 00250119 a 0104 ! 04860586 n 0101 ~ 04858632 n 0000 ~ 04858785 n 0000 ~ 04859816 n 0000 | the trait of feeling no fear -04858632 07 n 02 coolness 2 nervelessness 0 003 @ 04858455 n 0000 + 00530772 a 0203 + 00530772 a 0101 | fearless self-possession in the face of danger -04858785 07 n 04 boldness 0 daring 0 hardiness 1 hardihood 0 009 @ 04858455 n 0000 + 02545045 v 0201 + 00249721 a 0101 ! 04860759 n 0101 = 00249721 a 0000 ~ 04859177 n 0000 ~ 04859323 n 0000 ~ 04859449 n 0000 ~ 04859636 n 0000 | the trait of being willing to undertake things that involve risk or danger; "the proposal required great boldness"; "the plan required great hardiness of heart" -04859177 07 n 02 adventurousness 0 venturesomeness 0 003 @ 04858785 n 0000 + 00066146 a 0203 + 00065791 a 0101 | the trait of being adventurous -04859323 07 n 02 daredevilry 0 daredeviltry 0 001 @ 04858785 n 0000 | boldness as manifested in rash and daredevil behavior -04859449 07 n 03 audacity 0 audaciousness 0 temerity 0 006 @ 04858785 n 0000 + 00250483 a 0302 + 00250119 a 0201 + 00066146 a 0201 + 00250119 a 0101 + 00066146 a 0101 | fearless daring -04859636 07 n 02 shamelessness 0 brazenness 0 003 @ 04858785 n 0000 + 00155144 a 0206 + 00155720 a 0101 | behavior marked by a bold defiance of the proprieties and lack of shame -04859816 07 n 03 gutsiness 0 pluck 0 pluckiness 0 006 @ 04858455 n 0000 + 02279900 a 0302 + 02279900 a 0202 + 00266634 a 0202 + 00266634 a 0101 ! 04861319 n 0101 | the trait of showing courage and determination in spite of possible loss or injury -04860065 07 n 02 cowardice 0 cowardliness 0 007 @ 04620558 n 0000 + 00264776 a 0201 ! 04857083 n 0101 = 00264776 a 0000 ~ 04860272 n 0000 ~ 04860586 n 0000 ~ 04861221 n 0000 | the trait of lacking courage -04860272 07 n 01 cravenness 0 002 @ 04860065 n 0000 + 00265496 a 0101 | meanspirited cowardice -04860369 07 n 02 faintheartedness 0 faintness 3 004 @ 04860759 n 0000 + 00265989 a 0201 + 00265989 a 0102 ! 04858317 n 0101 | the trait of lacking boldness and courage; "faintness of heart and infirmity of purpose" -04860586 07 n 01 fearfulness 0 006 @ 04860065 n 0000 + 00264776 a 0102 ! 04858455 n 0101 ~ 04860759 n 0000 ~ 04860985 n 0000 ~ 04861319 n 0000 | the trait of being afraid -04860759 07 n 02 timidity 0 timorousness 0 006 @ 04860586 n 0000 + 00265989 a 0203 + 00265989 a 0103 ! 04858785 n 0101 = 00251809 a 0000 ~ 04860369 n 0000 | fearfulness in venturing into new and unknown places or activities -04860985 07 n 02 pusillanimity 0 pusillanimousness 0 004 @ 04860586 n 0000 + 00266420 a 0201 + 00266420 a 0101 ~ 04861143 n 0000 | contemptible fearfulness -04861143 07 n 01 poltroonery 0 001 @ 04860985 n 0000 | abject pusillanimity -04861221 07 n 01 dastardliness 0 002 @ 04860065 n 0000 + 00265765 a 0102 | despicable cowardice -04861319 07 n 01 gutlessness 0 003 @ 04860586 n 0000 + 00266985 a 0101 ! 04859816 n 0101 | the trait of lacking courage and determination; fearful of loss or injury -04861486 07 n 05 resoluteness 0 firmness 1 firmness_of_purpose 0 resolve 0 resolution 0 016 @ 04616059 n 0000 + 01990653 a 0201 + 00959244 a 0201 + 00685924 a 0102 + 01989669 a 0101 ! 04866465 n 0101 ~ 04862005 n 0000 ~ 04862382 n 0000 ~ 04862592 n 0000 ~ 04862888 n 0000 ~ 04863074 n 0000 ~ 04863675 n 0000 ~ 04863793 n 0000 ~ 04863969 n 0000 ~ 04864200 n 0000 ~ 04865016 n 0000 | the trait of being resolute; "his resoluteness carried him through the battle"; "it was his unshakeable resolution to finish the work" -04862005 07 n 07 self-control 0 self-possession 0 possession 0 willpower 0 will_power 0 self-command 0 self-will 1 003 @ 04861486 n 0000 ~ 04862236 n 0000 ~ 04862747 n 0000 | the trait of resolutely controlling your own behavior -04862236 07 n 01 nerves 0 002 @ 04862005 n 0000 ;u 06295235 n 0000 | control of your emotions; "this kind of tension is not good for my nerves" -04862382 07 n 01 steadiness 2 002 @ 04861486 n 0000 + 01990653 a 0103 | freedom from wavering or indecision; constancy of resolve or conduct; "He trusted her clear steadiness that she would do what she said" -04862592 07 n 01 sturdiness 1 002 @ 04861486 n 0000 + 01025913 a 0102 | resoluteness evidenced by strength of character; "sturdiness of moral principle" -04862747 07 n 01 presence_of_mind 0 001 @ 04862005 n 0000 | self-control in a crisis; ability to say or do the right thing in an emergency -04862888 07 n 01 stiffness 4 002 @ 04861486 n 0000 + 01990653 a 0104 | firm resoluteness in purpose or opinion or action; "a charming host without any touch of stiffness or pomposity" -04863074 07 n 06 stubbornness 1 bullheadedness 0 obstinacy 1 obstinance 1 pigheadedness 0 self-will 0 007 @ 04861486 n 0000 + 02327428 a 0503 + 00350889 v 0401 + 02327428 a 0201 + 02326695 a 0101 ~ 04863358 n 0000 ~ 04863497 n 0000 | resolute adherence to your own ideas or desires -04863358 07 n 02 impenitence 0 impenitency 0 003 @ 04863074 n 0000 + 01743909 a 0201 + 01743909 a 0101 | the trait of refusing to repent -04863497 07 n 02 intransigency 0 intransigence 0 003 @ 04863074 n 0000 + 01024812 a 0204 + 01024812 a 0104 | the trait of being intransigent; stubbornly refusing to compromise -04863675 07 n 01 single-mindedness 0 002 @ 04861486 n 0000 + 01991267 a 0101 | characterized by one unified purpose -04863793 07 n 03 adamance 0 obduracy 0 unyieldingness 0 003 @ 04861486 n 0000 + 02327569 a 0306 + 01024812 a 0101 | resoluteness by virtue of being unyielding and inflexible -04863969 07 n 02 decisiveness 0 decision 0 004 @ 04861486 n 0000 ! 04866866 n 0202 + 00685638 a 0101 ! 04866866 n 0101 | the trait of resoluteness as evidenced by firmness of character or purpose; "a man of unusual decisiveness" -04864200 07 n 02 determination 0 purpose 1 006 @ 04861486 n 0000 + 00699626 v 0201 + 00708980 v 0202 ~ 04864515 n 0000 ~ 04864824 n 0000 ~ 04865114 n 0000 | the quality of being determined to do or achieve something; firmness of purpose; "his determination showed in his every movement"; "he is a man of purpose" -04864515 07 n 07 doggedness 0 perseverance 0 persistence 0 persistency 0 tenacity 0 tenaciousness 0 pertinacity 0 009 @ 04864200 n 0000 + 02327569 a 0704 + 02327569 a 0605 + 02005756 a 0604 + 02327569 a 0505 + 00593071 a 0401 + 00350461 v 0402 + 02327569 a 0101 + 02327569 a 0303 | persistent determination -04864824 07 n 03 indefatigability 0 indefatigableness 0 tirelessness 0 005 @ 04864200 n 0000 + 00874920 a 0302 + 00754682 a 0303 + 00874920 a 0201 + 00874920 a 0101 | tireless determination -04865016 07 n 01 steadfastness 2 002 @ 04861486 n 0000 + 01990653 a 0102 | steadfast resolution -04865114 07 n 03 diligence 0 industriousness 0 industry 0 010 @ 04864200 n 0000 + 00885099 a 0303 + 01736122 a 0301 + 00885099 a 0203 + 00754682 a 0202 + 01736122 a 0101 + 00754107 a 0101 ~ 04865502 n 0000 ~ 04866078 n 0000 ~ 04866238 n 0000 | persevering determination to perform a task; "his diligence won him quick promotions"; "frugality and industry are still regarded as virtues" -04865502 07 n 03 assiduity 0 assiduousness 0 concentration 1 006 @ 04865114 n 0000 + 00722232 v 0301 + 00754393 a 0201 + 00754393 a 0101 ~ 04865722 n 0000 ~ 04865921 n 0000 | great and constant diligence and attention -04865722 07 n 02 intentness 0 engrossment 0 004 @ 04865502 n 0000 + 00601043 v 0205 + 00600370 v 0202 + 00163948 a 0105 | the quality of being intent and concentrated; "the intentness of his gaze" -04865921 07 n 01 singleness 1 002 @ 04865502 n 0000 + 00539389 a 0101 | the quality of concentrating on one central objective; "his singleness of purpose" -04866078 07 n 02 sedulity 0 sedulousness 0 003 @ 04865114 n 0000 + 00754393 a 0202 + 00754393 a 0102 | the quality of being constantly diligent and attentive -04866238 07 n 01 studiousness 0 004 @ 04865114 n 0000 + 02084101 a 0102 + 00311354 a 0101 ~ 04866365 n 0000 | diligent study -04866365 07 n 01 bookishness 0 002 @ 04866238 n 0000 + 02084101 a 0101 | exaggerated studiousness -04866465 07 n 02 irresoluteness 0 irresolution 0 005 @ 04616059 n 0000 + 01992149 a 0101 ! 04861486 n 0101 ~ 04866671 n 0000 ~ 04866866 n 0000 | the trait of being irresolute; lacking firmness of purpose -04866671 07 n 02 volatility 1 unpredictability 1 002 @ 04866465 n 0000 + 00346847 a 0101 | the trait of being unpredictably irresolute; "the volatility of the market drove many investors away" -04866866 07 n 02 indecisiveness 0 indecision 0 004 @ 04866465 n 0000 ! 04863969 n 0202 + 00686081 a 0101 ! 04863969 n 0101 | the trait of irresolution; a lack of firmness of character or purpose; "the king's incurable indecisiveness caused turmoil in his court" -04867130 07 n 01 sincerity 0 007 @ 04872236 n 0000 + 02179279 a 0101 ! 04867871 n 0101 = 02179279 a 0000 = 02180797 a 0000 ~ 04867539 n 0000 ~ 04867700 n 0000 | the quality of being open and truthful; not deceitful or hypocritical; "his sincerity inspired belief"; "they demanded some proof of my sincerity" -04867440 07 n 01 sooth 0 002 @ 04872236 n 0000 ;u 07073447 n 0000 | truth or reality; "in sooth" -04867539 07 n 02 heartiness 0 wholeheartedness 1 004 @ 04867130 n 0000 + 02180486 a 0202 + 02531243 a 0101 + 00523479 a 0101 | the quality of hearty sincerity -04867700 07 n 02 singleness 2 straightforwardness 2 002 @ 04867130 n 0000 + 00766102 a 0202 | without hypocrisy; "the singleness of his motives could not be questioned" -04867871 07 n 03 insincerity 0 falseness 0 hollowness 1 008 @ 04876053 n 0000 + 01498084 a 0302 + 02180797 a 0301 + 00584403 a 0201 + 01116857 a 0202 + 02180797 a 0101 ! 04867130 n 0101 ~ 04868148 n 0000 | the quality of not being open or truthful; deceitful or hypocritical -04868148 07 n 01 hypocrisy 0 004 @ 04867871 n 0000 + 02182562 a 0101 ~ 04868350 n 0000 ~ 04868505 n 0000 | insincerity by virtue of pretending to have qualities or beliefs that you do not really have -04868350 07 n 02 sanctimoniousness 0 sanctimony 0 003 @ 04868148 n 0000 + 01782100 a 0206 + 01782100 a 0106 | the quality of being hypocritically devout -04868505 07 n 06 fulsomeness 0 oiliness 2 oleaginousness 2 smarminess 0 unctuousness 0 unction 0 006 @ 04868148 n 0000 + 02181432 a 0507 + 02181432 a 0405 + 02181432 a 0304 + 02181432 a 0203 + 02181432 a 0102 | smug self-serving earnestness -04868748 07 n 02 honorableness 0 honourableness 0 013 @ 04826235 n 0000 + 02035086 a 0203 + 01226240 a 0202 + 02035086 a 0102 + 01983162 a 0103 + 01222360 a 0102 + 01226240 a 0101 ! 04873550 n 0101 = 01226240 a 0000 = 01227137 a 0000 ~ 04869405 n 0000 ~ 04870340 n 0000 ~ 04871002 n 0000 | the quality of deserving honor or respect; characterized by honor -04869106 07 n 02 honor 0 honour 0 002 @ 04826235 n 0000 ! 04873939 n 0101 | the quality of being honorable and having a good name; "a man of honor" -04869256 07 n 01 scrupulousness 0 003 @ 04871374 n 0000 + 02085449 a 0101 ! 04874086 n 0101 | conformity to high standards of ethics or excellence -04869405 07 n 02 venerability 0 venerableness 0 004 @ 04868748 n 0000 + 01646794 a 0201 + 01226660 a 0203 + 01226660 a 0103 | the quality of deserving veneration -04869569 07 n 01 integrity 0 003 @ 04871374 n 0000 #p 04620216 n 0000 ~ 04869811 n 0000 | moral soundness; "he expects to find in us the common honesty and integrity of men of business"; "they admired his scrupulous professional integrity" -04869811 07 n 01 probity 0 001 @ 04869569 n 0000 | complete and confirmed integrity; having strong moral principles; "in a world where financial probity may not be widespread"; "he enjoys an exaggerated reputation for probity" -04870040 07 n 02 incorruptness 0 incorruption 0 004 @ 04871374 n 0000 + 01549185 a 0101 + 00622581 a 0101 ! 04853948 n 0101 | characterized by integrity or probity -04870206 07 n 01 incorruptibility 0 003 @ 04871374 n 0000 + 00622935 a 0101 ! 04851585 n 0101 | the incapability of being corrupted -04870340 07 n 04 nobility 0 nobleness 0 magnanimousness 0 grandeur 2 008 @ 04868748 n 0000 + 01589045 a 0302 + 01114658 a 0303 + 01588172 a 0101 = 01588172 a 0000 = 01589217 a 0000 ~ 04870643 n 0000 ~ 04870889 n 0000 | the quality of elevation of mind and exaltation of character or ideals or conduct -04870643 07 n 03 high-mindedness 0 idealism 2 noble-mindedness 0 005 @ 04870340 n 0000 + 01588619 a 030b + 01588619 a 020a + 10196965 n 0201 + 01588619 a 0106 | elevated ideals or conduct; the quality of believing that ideals should be pursued -04870889 07 n 01 sublimity 0 002 @ 04870340 n 0000 + 00705616 a 0101 | nobility in thought or feeling or style -04871002 07 n 02 respectability 0 reputability 0 007 @ 04868748 n 0000 + 01982646 a 0201 ! 04874409 n 0202 + 01983162 a 0104 + 01993140 a 0101 ! 04874409 n 0101 ~ 04871259 n 0000 | honorableness by virtue of being respectable and having a good reputation -04871259 07 n 01 decency 1 002 @ 04871002 n 0000 + 01878870 a 0104 | the quality of being polite and respectable -04871374 07 n 02 honesty 0 honestness 0 015 @ 04826235 n 0000 + 01225643 a 0201 + 02465519 a 0202 + 02180157 a 0201 + 01222360 a 0201 ! 04874672 n 0101 = 02318464 a 0000 = 02319129 a 0000 ~ 04869256 n 0000 ~ 04869569 n 0000 ~ 04870040 n 0000 ~ 04870206 n 0000 ~ 04871720 n 0000 ~ 04872016 n 0000 ~ 04872236 n 0000 | the quality of being honest -04871720 07 n 06 candor 0 candour 0 candidness 0 frankness 0 directness 1 forthrightness 0 007 @ 04871374 n 0000 + 00764484 a 0603 + 00763901 a 0501 + 00764484 a 0404 + 01310273 a 0301 + 00764484 a 0302 ~ 04872531 n 0000 | the quality of being honest and straightforward in attitude and speech -04872016 07 n 02 good_faith 0 straightness 2 003 @ 04871374 n 0000 + 00766102 a 0203 + 02318464 a 0201 | having honest intentions; "he acted in good faith"; "doubt was expressed as to the good faith of the immigrants" -04872236 07 n 01 truthfulness 0 006 @ 04871374 n 0000 + 01225398 a 0101 ! 04876053 n 0101 ~ 04867130 n 0000 ~ 04867440 n 0000 ~ 04872414 n 0000 | the quality of being truthful -04872414 07 n 01 veracity 0 003 @ 04872236 n 0000 + 01225772 a 0101 ! 04876235 n 0101 | unwillingness to tell lies -04872531 07 n 01 ingenuousness 0 004 @ 04871720 n 0000 + 01309991 a 0101 ! 04876374 n 0101 ~ 04872676 n 0000 | openly straightforward or frank -04872676 07 n 01 artlessness 0 003 @ 04872531 n 0000 + 00149861 a 0101 ! 04876705 n 0101 | ingenuousness by virtue of being free from artful deceit -04872826 07 n 01 parental_quality 0 003 @ 04723816 n 0000 ~ 04872958 n 0000 ~ 04873305 n 0000 | a quality appropriate to a parent -04872958 07 n 04 motherliness 0 maternalism 0 maternal_quality 0 maternity 0 005 @ 04872826 n 0000 + 01734884 a 0401 + 01735130 a 0201 + 01735346 a 0101 = 01734884 a 0000 | the quality of having or showing the tenderness and warmth and affection of or befitting a mother; "the girl's motherliness made her invaluable in caring for the children" -04873305 07 n 02 fatherliness 0 paternal_quality 0 003 @ 04872826 n 0000 + 01734607 a 0101 = 01734436 a 0000 | the benignity and protectiveness of or befitting a father; "the gentleness and fatherliness of the strange old man eased her fears" -04873550 07 n 02 dishonorableness 0 dishonourableness 0 008 @ 04827652 n 0000 + 01227137 a 0202 + 01222884 a 0102 + 01227137 a 0101 ! 04868748 n 0101 ~ 04873804 n 0000 ~ 04874223 n 0000 ~ 04874409 n 0000 | the quality of not deserving honor or respect -04873804 07 n 02 ignobleness 0 ignobility 0 003 @ 04873550 n 0000 + 01593480 a 0101 + 01589217 a 0101 | the quality of being ignoble -04873939 07 n 02 dishonor 0 dishonour 0 004 @ 04827652 n 0000 + 02547225 v 0203 + 02547225 v 0101 ! 04869106 n 0101 | lacking honor or integrity -04874086 07 n 01 unscrupulousness 0 003 @ 04874672 n 0000 + 02085898 a 0101 ! 04869256 n 0101 | the quality of unscrupulous dishonesty -04874223 07 n 01 sleaziness 1 002 @ 04873550 n 0000 + 01984806 a 0103 | morally dishonorable; "an embarrassing sleaziness that I hope will be corrected by the more ethical newspapers" -04874409 07 n 03 unrespectability 0 disreputability 0 disreputableness 0 006 @ 04873550 n 0000 + 01983797 a 0301 + 01983797 a 0201 ! 04871002 n 0202 + 01993843 a 0101 ! 04871002 n 0101 | dishonorableness by virtue of lacking respectability or a good reputation -04874672 07 n 01 dishonesty 0 011 @ 04827652 n 0000 ! 04871374 n 0101 ~ 04853948 n 0000 ~ 04874086 n 0000 ~ 04874939 n 0000 ~ 04875352 n 0000 ~ 04875556 n 0000 ~ 04875728 n 0000 ~ 04875935 n 0000 ~ 04876053 n 0000 ~ 04876374 n 0000 | the quality of being dishonest -04874939 07 n 02 deceptiveness 0 obliquity 0 005 @ 04874672 n 0000 + 00768098 a 0202 + 01938975 a 0101 + 01224253 a 0101 ~ 04875113 n 0000 | the quality of being deceptive -04875113 07 n 02 speciousness 0 meretriciousness 0 004 @ 04874939 n 0000 + 02182302 a 0202 + 02182302 a 0103 + 02462210 a 0101 | an appearance of truth that is false or deceptive; seeming plausibility; "the speciousness of his argument" -04875352 07 n 02 fraudulence 0 deceit 0 002 @ 04874672 n 0000 + 01223941 a 0103 | the quality of being fraudulent -04875468 07 n 01 jobbery 0 001 @ 04853948 n 0000 | corruptness among public officials -04875556 07 n 02 crookedness 1 deviousness 1 004 @ 04874672 n 0000 + 02466382 a 0201 + 00768098 a 0201 + 02319129 a 0101 | the quality of being deceitful and underhanded -04875728 07 n 04 rascality 1 shiftiness 0 slipperiness 1 trickiness 0 005 @ 04874672 n 0000 + 02466734 a 0402 + 00148078 a 040a + 02466734 a 0301 + 02466382 a 0202 | the quality of being a slippery rascal -04875935 07 n 02 thievishness 0 larcenous 0 002 @ 04874672 n 0000 + 01225294 a 0102 | having a disposition to steal -04876053 07 n 01 untruthfulness 0 006 @ 04874672 n 0000 + 01225898 a 0101 ! 04872236 n 0101 ~ 04825383 n 0000 ~ 04867871 n 0000 ~ 04876235 n 0000 | the quality of being untruthful -04876235 07 n 01 mendacity 0 004 @ 04876053 n 0000 + 01226129 a 0101 + 02462089 a 0101 ! 04872414 n 0101 | the tendency to be untruthful -04876374 07 n 01 disingenuousness 0 005 @ 04874672 n 0000 + 01310685 a 0101 ! 04872531 n 0101 ~ 04876561 n 0000 ~ 04876705 n 0000 | the quality of being disingenuous and lacking candor -04876561 07 n 03 craftiness 0 deceitfulness 0 guile 0 003 @ 04876374 n 0000 + 01223941 a 0201 + 01223271 a 0202 | the quality of being crafty -04876705 07 n 01 artfulness 0 005 @ 04876374 n 0000 + 01310685 a 0102 + 00147734 a 0101 ! 04872676 n 0101 ~ 04876888 n 0000 | the quality of being adroit in taking unfair advantage -04876888 07 n 01 cunning 2 001 @ 04876705 n 0000 | crafty artfulness (especially in deception) -04876985 07 n 02 fidelity 0 faithfulness 0 011 @ 04723816 n 0000 + 00022219 a 0202 + 00960629 a 0201 + 00958880 a 0201 ! 04878861 n 0202 ! 04878861 n 0101 = 00958880 a 0000 = 00959731 a 0000 ~ 04877264 n 0000 ~ 04877421 n 0000 ~ 04877530 n 0000 | the quality of being faithful -04877264 07 n 01 constancy 2 002 @ 04876985 n 0000 + 00583239 a 0101 | faithfulness and dependability in personal attachments (especially sexual fidelity) -04877421 07 n 01 dedication 0 002 @ 04876985 n 0000 + 00887463 v 0102 | complete and wholehearted fidelity -04877530 07 n 02 loyalty 0 trueness 1 010 @ 04876985 n 0000 + 02465519 a 0204 + 00959530 a 0201 ! 04879340 n 0101 = 00961392 a 0000 = 00962634 a 0000 ~ 04877783 n 0000 ~ 04877938 n 0000 ~ 04878101 n 0000 ~ 04878434 n 0000 | the quality of being loyal -04877783 07 n 02 steadfastness 1 staunchness 0 003 @ 04877530 n 0000 + 00583581 a 0202 + 00583581 a 0101 | loyalty in the face of trouble and difficulty -04877938 07 n 02 allegiance 0 fealty 0 002 @ 04877530 n 0000 + 00961667 a 0101 | the loyalty that citizens owe to their country (or subjects to their sovereign) -04878101 07 n 02 patriotism 0 nationalism 0 006 @ 04877530 n 0000 + 01740358 a 0204 + 10407310 n 0202 + 01740207 a 0101 ~ 04878539 n 0000 ~ 04878646 n 0000 | love of country and willingness to sacrifice for it; "they rode the same wave of popular patriotism"; "British nationalism was in the air and patriotic sentiments ran high" -04878434 07 n 01 regionalism 0 001 @ 04877530 n 0000 | loyalty to the interests of a particular region -04878539 07 n 01 Americanism 0 001 @ 04878101 n 0000 | loyalty to the United States and its institutions -04878646 07 n 04 chauvinism 0 jingoism 0 superpatriotism 0 ultranationalism 0 006 @ 04878101 n 0000 + 01740358 a 0405 + 01740358 a 0203 + 09911849 n 0202 + 01740358 a 0101 + 09911849 n 0101 | fanatical patriotism -04878861 07 n 02 infidelity 0 unfaithfulness 0 008 @ 04723816 n 0000 + 00962939 a 0203 + 00960971 a 0201 + 00959731 a 0201 ! 04876985 n 0202 ! 04876985 n 0101 ~ 04879092 n 0000 ~ 04879340 n 0000 | the quality of being unfaithful -04879092 07 n 04 faithlessness 0 falseness 1 fickleness 0 inconstancy 1 006 @ 04878861 n 0000 + 00583990 a 0401 + 00584626 a 0301 + 00345189 a 0302 + 02182088 a 0201 + 00962939 a 0101 | unfaithfulness by virtue of being unreliable or treacherous -04879340 07 n 01 disloyalty 0 005 @ 04878861 n 0000 ! 04877530 n 0101 ~ 04879498 n 0000 ~ 04879658 n 0000 ~ 04879964 n 0000 | the quality of being disloyal -04879498 07 n 01 disaffection 0 001 @ 04879340 n 0000 | disloyalty to the government or to established authority; "the widespread disaffection of the troops" -04879658 07 n 03 treason 0 subversiveness 0 traitorousness 0 006 @ 04879340 n 0000 + 00962939 a 0302 + 00963283 a 0203 + 00962939 a 0105 + 10722965 n 0102 ~ 04879879 n 0000 | disloyalty by virtue of subversive behavior -04879879 07 n 01 betrayal 0 001 @ 04879658 n 0000 | the quality of aiding an enemy -04879964 07 n 03 perfidy 0 perfidiousness 0 treachery 0 005 @ 04879340 n 0000 + 00960094 a 0303 + 00960094 a 0202 + 00960094 a 0102 ~ 04880138 n 0000 | betrayal of a trust -04880138 07 n 01 insidiousness 2 003 @ 04879964 n 0000 + 02097884 a 0101 + 02060106 a 0101 | the quality of being designed to entrap -04880273 07 n 04 sophistication 0 worldliness 0 mundaneness 0 mundanity 0 005 @ 04723816 n 0000 + 02578035 a 0301 + 02270782 a 0202 + 02388764 v 0101 ! 04880573 n 0101 | the quality or character of being intellectually sophisticated and worldly through cultivation or experience or disillusionment -04880573 07 n 03 naivete 0 naivety 0 naiveness 0 009 @ 04723816 n 0000 + 01309657 a 0303 + 01637371 a 0301 + 00937341 a 0303 + 02271544 a 0301 ! 04880273 n 0101 ~ 04880830 n 0000 ~ 04881156 n 0000 ~ 04881369 n 0000 | lack of sophistication or worldliness -04880830 07 n 04 artlessness 1 innocence 1 ingenuousness 2 naturalness 2 005 @ 04880573 n 0000 + 02272670 a 0302 + 02272670 a 0201 + 01309991 a 0102 ~ 04881033 n 0000 | the quality of innocent naivete -04881033 07 n 01 innocency 0 001 @ 04880830 n 0000 | an innocent quality or thing or act; "the innocencies of childhood" -04881156 07 n 02 credulousness 0 gullibility 0 005 @ 04880573 n 0000 + 00163315 a 0201 + 02272485 a 0203 + 02272305 a 0101 + 00646413 a 0101 | tendency to believe too readily and therefore to be easily deceived -04881369 07 n 03 simplicity 4 simpleness 4 simple_mindedness 0 006 @ 04880573 n 0000 + 01841390 a 0202 + 02272047 a 0205 + 01841390 a 0103 + 02272954 a 0101 + 02272047 a 0105 | a lack of penetration or subtlety; "they took advantage of her simplicity" -04881623 07 n 01 discipline 0 005 @ 04616059 n 0000 + 03061455 a 0101 ! 04884450 n 0101 ~ 04881829 n 0000 ~ 04882968 n 0000 | the trait of being well behaved; "he insisted on discipline among the troops" -04881829 07 n 02 self-discipline 0 self-denial 0 004 @ 04881623 n 0000 ~ 04881998 n 0000 ~ 04882622 n 0000 ~ 04882813 n 0000 | the trait of practicing self discipline -04881998 07 n 03 austerity 1 asceticism 0 nonindulgence 0 004 @ 04881829 n 0000 + 01299888 a 0301 + 00009618 a 0103 ~ 04882214 n 0000 | the trait of great self-denial (especially refraining from worldly pleasures) -04882214 07 n 01 monasticism 0 002 @ 04881998 n 0000 ~ 04882438 n 0000 | asceticism as a form of religious life; usually conducted in a community under a common rule and characterized by celibacy and poverty and obedience -04882438 07 n 01 eremitism 0 001 @ 04882214 n 0000 | monasticism characterized by solitude in which the social dimension of life is sacrificed to the primacy of religious experience -04882622 07 n 02 abstinence 0 abstention 0 005 @ 04881829 n 0000 + 00009346 a 0202 + 01196037 v 0201 + 00009346 a 0101 + 01196037 v 0101 | the trait of abstaining (especially from alcohol) -04882813 07 n 02 continence 0 continency 0 003 @ 04881829 n 0000 + 00360950 a 0202 + 00360950 a 0102 | the exercise of self constraint in sexual matters -04882968 07 n 02 restraint 0 control 1 006 @ 04881623 n 0000 ! 04885091 n 0101 ~ 04883243 n 0000 ~ 04883614 n 0000 ~ 04884072 n 0000 ~ 04884177 n 0000 | discipline in personal and social activities; "he was a model of polite restraint"; "she never lost control of herself" -04883243 07 n 02 self-restraint 0 temperateness 0 003 @ 04882968 n 0000 + 02401590 a 0201 ~ 04883436 n 0000 | exhibiting restraint imposed on the self; "an effective temperateness in debate" -04883436 07 n 01 stiff_upper_lip 0 001 @ 04883243 n 0000 | self-restraint in the expression of emotion (especially fear or grief); "the British like to keep a stiff upper lip" -04883614 07 n 02 temperance 0 moderation 1 006 @ 04882968 n 0000 @ 04847733 n 0000 + 10325957 n 0201 ! 04885271 n 0101 ~ 04883804 n 0000 ~ 04883942 n 0000 | the trait of avoiding excesses -04883804 07 n 02 sobriety 2 dryness 2 002 @ 04883614 n 0000 + 00799953 a 0201 | moderation in or abstinence from alcohol or other drugs -04883942 07 n 01 abstemiousness 0 003 @ 04883614 n 0000 + 00009046 a 0101 = 00009046 a 0000 | moderation in eating and drinking -04884072 07 n 01 inhibition 0 002 @ 04882968 n 0000 ~ 04884302 n 0000 | the quality of being inhibited -04884177 07 n 01 continence 2 002 @ 04882968 n 0000 + 00591817 a 0101 | voluntary control over urinary and fecal discharge -04884302 07 n 02 taboo 0 tabu 0 002 @ 04884072 n 0000 + 02508977 v 0101 | an inhibition or ban resulting from social custom or emotional aversion -04884450 07 n 02 indiscipline 0 undiscipline 0 005 @ 04616059 n 0000 ! 04881623 n 0101 ~ 04884627 n 0000 ~ 04884817 n 0000 ~ 04885091 n 0000 | the trait of lacking discipline -04884627 07 n 02 indulgence 0 self-indulgence 0 004 @ 04884450 n 0000 + 01299687 a 0201 + 01191645 v 0101 ~ 05119223 n 0000 | an inability to resist the gratification of whims and desires -04884817 07 n 03 dissoluteness 0 incontinence 0 self-gratification 0 003 @ 04884450 n 0000 + 01549568 a 0105 ~ 04884995 n 0000 | indiscipline with regard to sensuous pleasures -04884995 07 n 01 rakishness 2 002 @ 04884817 n 0000 + 00609341 a 0103 | the quality of a rake -04885091 07 n 01 unrestraint 0 006 @ 04884450 n 0000 ! 04882968 n 0101 ~ 04885271 n 0000 ~ 04885398 n 0000 ~ 04885609 n 0000 ~ 04885990 n 0000 | the quality of lacking restraint -04885271 07 n 01 intemperance 0 003 @ 04885091 n 0000 ! 04883614 n 0101 ~ 04886101 n 0000 | the quality of being intemperate -04885398 07 n 03 abandon 0 wantonness 0 unconstraint 0 002 @ 04885091 n 0000 + 01559270 a 0203 | the trait of lacking restraint or control; reckless freedom from inhibition or worry; "she danced with abandon" -04885609 07 n 01 looseness 2 002 @ 04885091 n 0000 + 01998835 a 0102 | freedom from restraint; "the flexibility and looseness of the materials from which mythology is made" -04885784 07 n 03 madness 0 rabidity 0 rabidness 0 004 @ 04634540 n 0000 + 01726859 a 0304 + 01726859 a 0204 + 02390724 a 0104 | unrestrained excitement or enthusiasm; "poetry is a sort of divine madness" -04885990 07 n 01 sottishness 0 002 @ 04885091 n 0000 + 00798491 a 0104 | lack of restraint in use of alcohol -04886101 07 n 01 gluttony 0 004 @ 04885271 n 0000 = 00009978 a 0000 ~ 04886235 n 0000 ~ 04886402 n 0000 | habitual eating to excess -04886235 07 n 03 greediness 2 hoggishness 0 piggishness 0 004 @ 04886101 n 0000 + 00011327 a 0302 + 00011327 a 0201 + 00011160 a 0101 | an excessive desire for food -04886402 07 n 06 edacity 0 esurience 0 rapaciousness 0 rapacity 0 voracity 0 voraciousness 0 007 @ 04886101 n 0000 + 00010726 a 0606 + 00010726 a 0506 + 00010726 a 0403 + 00010726 a 0303 + 00010726 a 0202 + 00010726 a 0101 | extreme gluttony -04886646 07 n 01 pride 0 002 @ 04616059 n 0000 = 01889256 a 0000 | the trait of being spurred on by a dislike of falling below your standards -04886790 07 n 02 civic_pride 0 civic_spirit 0 001 @ 07531536 n 0000 | pride in your city -04886881 07 n 04 dignity 0 self-respect 0 self-regard 0 self-worth 0 002 @ 07508486 n 0000 + 02546876 v 0102 | the quality of being worthy of esteem or respect; "it was beneath his dignity to cheat"; "showed his true dignity when under pressure" -04887129 07 n 03 conceit 0 conceitedness 0 vanity 0 007 @ 04616059 n 0000 + 01891773 a 0307 ! 04889527 n 0101 ~ 04835260 n 0000 ~ 04887373 n 0000 ~ 04887497 n 0000 ~ 04887701 n 0000 | the trait of being unduly vain and conceited; false pride -04887373 07 n 02 boastfulness 0 vainglory 0 003 @ 04887129 n 0000 + 01890187 a 0203 + 01890752 a 0101 | outspoken conceit -04887497 07 n 03 egotism 0 self-importance 0 swelled_head 0 005 @ 04887129 n 0000 + 01889819 a 0203 + 02098694 a 0101 + 10047459 n 0101 ~ 04887790 n 0000 | an exaggerated opinion of your own importance -04887701 07 n 01 posturing 0 001 @ 04887129 n 0000 | adopting a vain conceited posture -04887790 07 n 01 superiority_complex 0 001 @ 04887497 n 0000 | an exaggerated estimate of your own value and importance -04887912 07 n 05 arrogance 0 haughtiness 0 hauteur 0 high-handedness 0 lordliness 2 011 @ 00758175 n 0000 + 01891109 a 0504 + 00788145 a 0402 + 01891109 a 0202 + 01889819 a 0101 ~ 04888268 n 0000 ~ 04888510 n 0000 ~ 04888703 n 0000 ~ 04888788 n 0000 ~ 04889000 n 0000 ~ 04889162 n 0000 | overbearing pride evidenced by a superior manner toward inferiors -04888268 07 n 03 condescension 0 superciliousness 0 disdainfulness 0 005 @ 04887912 n 0000 + 01891109 a 0301 + 01995288 a 0302 + 00907400 a 0201 + 01891109 a 0208 | the trait of displaying arrogance by patronizing those considered inferior -04888510 07 n 01 contemptuousness 0 002 @ 04887912 n 0000 + 01995288 a 0101 | the manifestation of scorn and contempt; "every subordinate sensed his contemptuousness and hated him in return" -04888703 07 n 01 hubris 0 001 @ 04887912 n 0000 | overbearing pride or presumption -04888788 07 n 03 imperiousness 0 domineeringness 0 overbearingness 0 005 @ 04887912 n 0000 + 00787357 a 0303 + 00787136 a 0201 + 01891109 a 0305 + 01891109 a 0103 | the trait of being imperious and overbearing -04889000 07 n 01 superiority 2 001 @ 04887912 n 0000 | displaying a sense of being better than others; "he hated the white man's superiority and condescension" -04889162 07 n 03 snobbery 0 snobbism 0 snobbishness 0 003 @ 04887912 n 0000 + 01858740 a 0304 ~ 04889337 n 0000 | the trait of condescending to those of lower social status -04889337 07 n 03 clannishness 0 cliquishness 0 exclusiveness 0 004 @ 04889162 n 0000 + 01862386 a 0301 + 01858740 a 0202 + 01858740 a 0101 | tendency to associate with only a select group -04889527 07 n 02 humility 0 humbleness 0 006 @ 04616059 n 0000 + 01892953 a 0201 + 01892953 a 0101 ! 04887129 n 0101 = 01892953 a 0000 ~ 04889779 n 0000 | a disposition to be humble; a lack of false pride; "not everyone regards humility as a virtue" -04889779 07 n 02 meekness 0 subduedness 1 005 @ 04889527 n 0000 + 02390194 a 0201 + 00789494 a 0101 + 01893510 a 0101 ~ 04889966 n 0000 | a disposition to be patient and long suffering -04889966 07 n 01 spinelessness 0 002 @ 04889779 n 0000 + 02325816 a 0103 | the quality of lacking a strong character; an irresolute disposition -04890112 07 n 02 wisdom 0 wiseness 0 007 @ 04616059 n 0000 + 02569130 a 0201 ! 04891333 n 0101 ~ 04890361 n 0000 ~ 04890546 n 0000 ~ 04890865 n 0000 ~ 04891010 n 0000 | the trait of utilizing knowledge and experience with common sense and insight -04890361 07 n 03 judiciousness 0 sagacity 0 sagaciousness 0 003 @ 04890112 n 0000 + 01813920 a 0301 + 01898722 a 0101 | the trait of forming opinions by distinguishing and evaluating -04890546 07 n 03 knowledgeability 0 knowledgeableness 0 initiation 0 006 @ 04890112 n 0000 + 01307850 a 0201 + 00830051 a 0202 + 01307850 a 0101 + 00936038 a 0102 + 00830051 a 0102 | wisdom as evidenced by the possession of knowledge; "his knowledgeability impressed me"; "his dullness was due to lack of initiation" -04890865 07 n 03 statesmanship 0 statecraft 0 diplomacy 1 002 @ 04890112 n 0000 + 10650162 n 0101 | wisdom in the management of public affairs -04891010 07 n 02 discretion 1 discernment 0 003 @ 04890112 n 0000 ~ 04891184 n 0000 ~ 04892794 n 0000 | the trait of judging wisely and objectively; "a man of discernment" -04891184 07 n 02 circumspection 0 caution 1 003 @ 04891010 n 0000 ~ 04664314 n 0000 ~ 04664413 n 0000 | the trait of being circumspect and prudent -04891333 07 n 03 folly 0 foolishness 0 unwiseness 0 007 @ 04616059 n 0000 + 02572657 a 0301 + 00439905 a 0204 ! 04890112 n 0101 ~ 04891558 n 0000 ~ 04891683 n 0000 ~ 04891944 n 0000 | the trait of acting stupidly or rashly -04891558 07 n 02 indiscretion 0 injudiciousness 0 002 @ 04891333 n 0000 + 01899970 a 0201 | the trait of being injudicious -04891683 07 n 04 absurdity 1 fatuity 0 fatuousness 0 silliness 0 006 @ 04891333 n 0000 + 00752847 a 0403 + 02571536 a 0405 + 02571277 a 0302 + 02571277 a 0202 + 02570643 a 0101 | a ludicrous folly; "the crowd laughed at the absurdity of the clown's behavior" -04891944 07 n 01 asininity 0 002 @ 04891333 n 0000 + 02571277 a 0101 | the quality of being asinine; stupidity combined with stubbornness -04892084 07 n 05 judgment 0 judgement 0 sound_judgment 0 sound_judgement 0 perspicacity 0 004 @ 04616059 n 0000 + 00648977 a 0101 ~ 04892344 n 0000 ~ 04892544 n 0000 | the capacity to assess situations or circumstances shrewdly and to draw sound conclusions -04892344 07 n 02 objectivity 0 objectiveness 0 003 @ 04892084 n 0000 + 01934026 a 0201 + 01615180 a 0101 | judgment based on observable phenomena and uninfluenced by emotions or personal prejudices -04892544 07 n 02 subjectivity 0 subjectiveness 0 005 @ 04892084 n 0000 + 01273910 a 0202 + 01615925 a 0201 + 01273910 a 0102 + 01615925 a 0101 | judgment based on individual personal impressions and feelings and opinions rather than external facts -04892794 07 n 01 prudence 0 006 @ 04891010 n 0000 @ 04847733 n 0000 + 01899167 a 0101 ! 04894037 n 0101 ~ 04892970 n 0000 ~ 04893358 n 0000 | discretion in practical affairs -04892970 07 n 01 providence 0 005 @ 04892794 n 0000 + 01898974 a 0101 + 01894758 a 0101 ! 04894552 n 0101 ~ 04893172 n 0000 | the prudence and care exercised by someone in the management of resources -04893172 07 n 03 foresight 0 foresightedness 0 foresightfulness 0 003 @ 04892970 n 0000 + 01895296 a 0304 + 01895296 a 0203 | providence by virtue of planning prudently for the future -04893358 07 n 02 frugality 0 frugalness 0 005 @ 04892794 n 0000 + 02421364 a 0202 + 02421364 a 0102 ~ 04893525 n 0000 ~ 04893787 n 0000 | prudence in avoiding waste -04893525 07 n 04 parsimony 0 parsimoniousness 0 thrift 0 penny-pinching 0 006 @ 04893358 n 0000 + 01113225 a 0404 + 01895099 a 0302 + 02421158 a 0301 + 01114116 a 0201 + 01114116 a 0101 | extreme care in spending money; reluctance to spend money unnecessarily -04893787 07 n 02 economy 0 thriftiness 0 006 @ 04893358 n 0000 + 01895099 a 0202 + 02421158 a 0201 + 02421364 a 0101 + 02357228 v 0102 + 02269143 v 0103 | frugality in the expenditure of money or resources; "the Scots are famous for their economy" -04894037 07 n 01 imprudence 0 005 @ 04665210 n 0000 + 01899360 a 0101 ! 04892794 n 0101 ~ 04894204 n 0000 ~ 04894552 n 0000 | a lack of caution in practical affairs -04894204 07 n 03 heedlessness 2 mindlessness 1 rashness 1 007 @ 04894037 n 0000 + 01900188 a 0301 + 01945139 a 0201 + 02571277 a 0204 + 00312757 a 0101 + 01193714 a 0101 ~ 04894444 n 0000 | the trait of acting rashly and without prudence -04894444 07 n 01 lightheadedness 1 002 @ 04894204 n 0000 + 02120828 a 0107 | a frivolous lack of prudence -04894552 07 n 02 improvidence 0 shortsightedness 0 007 @ 04894037 n 0000 + 01899742 a 0204 + 01896046 a 0202 + 01895837 a 0101 ! 04892970 n 0101 ~ 04894807 n 0000 ~ 04894964 n 0000 | a lack of prudence and care by someone in the management of resources -04894807 07 n 03 extravagance 0 prodigality 0 profligacy 0 003 @ 04894552 n 0000 + 02422242 a 0101 + 02422242 a 0202 | the trait of spending extravagantly -04894964 07 n 03 thriftlessness 0 waste 0 wastefulness 0 005 @ 04894552 n 0000 + 02422068 a 0301 + 02268351 v 0201 + 01161087 v 0201 + 01896299 a 0101 | the trait of wasting resources; "a life characterized by thriftlessness and waste"; "the wastefulness of missed opportunities" -04895246 07 n 03 trust 0 trustingness 0 trustfulness 0 007 @ 04616059 n 0000 + 02462619 a 0301 + 02462619 a 0202 + 02464693 a 0102 + 02349212 v 0103 ! 04895773 n 0101 ~ 04895558 n 0000 | the trait of believing in the honesty and reliability of others; "the experience destroyed his trust and personal dignity" -04895558 07 n 01 credulity 0 004 @ 04895246 n 0000 + 02272305 a 0101 + 00646413 a 0101 ~ 04895695 n 0000 | tendency to believe readily -04895695 07 n 01 overcredulity 0 001 @ 04895558 n 0000 | too much credulity -04895773 07 n 03 distrust 0 distrustfulness 0 mistrust 0 006 @ 04616059 n 0000 + 00687926 v 0302 + 02463154 a 0201 + 00687926 v 0101 ! 04895246 n 0101 ~ 04895979 n 0000 | the trait of not trusting others -04895979 07 n 02 suspicion 0 suspiciousness 0 003 @ 04895773 n 0000 + 01917594 a 0205 + 02464277 a 0203 | being of a suspicious nature; "his suspiciousness destroyed his marriage" -04896161 07 n 01 cleanliness 0 005 @ 04616059 n 0000 + 00417978 a 0101 ! 04896724 n 0101 ~ 04896317 n 0000 ~ 04896515 n 0000 | diligence in keeping clean -04896317 07 n 01 fastidiousness 0 003 @ 04896161 n 0000 + 00983862 a 0101 ~ 04897152 n 0000 | the trait of being meticulous about matters of taste or style; "neatness and fastidiousness of dress" -04896515 07 n 02 tidiness 0 neatness 0 007 @ 04896161 n 0000 + 02427594 a 0202 + 02423284 a 0201 + 00850648 a 0201 + 02427594 a 0102 + 02422685 a 0101 ! 04897428 n 0101 | the trait of being neat and orderly -04896724 07 n 01 uncleanliness 0 005 @ 04616059 n 0000 + 00423689 a 0101 ! 04896161 n 0101 ~ 04896878 n 0000 ~ 04897428 n 0000 | lack of cleanly habits -04896878 07 n 01 slovenliness 0 003 @ 04896724 n 0000 + 02425749 a 0103 ~ 04896995 n 0000 | habitual uncleanliness -04896995 07 n 02 slatternliness 0 sluttishness 0 004 @ 04896878 n 0000 + 02424716 a 0204 + 00361837 a 0205 + 02424716 a 0103 | in the manner of a slattern -04897152 07 n 01 squeamishness 0 002 @ 04896317 n 0000 + 00984333 a 0105 | the trait of being excessively fastidious and easily shocked; "the program was withdrawn because of the squeamishness of some viewers"; "he refused to allow squeamishness to deter him from his duty" -04897428 07 n 02 untidiness 0 messiness 0 005 @ 04896724 n 0000 + 02426042 a 0201 + 02424254 a 0101 ! 04896515 n 0101 ~ 04897604 n 0000 | the trait of being untidy and messy -04897604 07 n 02 disarray 0 disorderliness 0 003 @ 04897428 n 0000 + 02425529 a 0201 + 00276373 v 0102 | untidiness (especially of clothing and appearance) -04897762 07 n 06 demeanor 0 demeanour 0 behavior 0 behaviour 0 conduct 0 deportment 0 009 @ 04616059 n 0000 + 02518161 v 0604 + 02518161 v 0505 ~ 04898087 n 0000 ~ 04898208 n 0000 ~ 04898334 n 0000 ~ 04898437 n 0000 ~ 04901326 n 0000 ~ 04910135 n 0000 | (behavioral attributes) the way a person behaves toward other people -04898087 07 n 01 manners 0 002 @ 04897762 n 0000 ;u 06295235 n 0000 | social deportment; "he has the manners of a pig" -04898208 07 n 01 citizenship 0 002 @ 04897762 n 0000 + 09923673 n 0101 | conduct as a citizen; "award for good citizenship" -04898334 07 n 01 swashbuckling 0 001 @ 04897762 n 0000 | flamboyantly reckless and boastful behavior -04898437 07 n 03 propriety 0 properness 0 correctitude 0 015 @ 04897762 n 0000 + 00135455 a 0201 + 01878466 a 0201 ! 04901326 n 0202 ! 04901326 n 0101 = 01878466 a 0000 = 01880531 a 0000 ~ 04898804 n 0000 ~ 04899031 n 0000 ~ 04899201 n 0000 ~ 04899416 n 0000 ~ 04899980 n 0000 ~ 04900121 n 0000 ~ 04900357 n 0000 ~ 04900739 n 0000 | correct or appropriate behavior -04898804 07 n 02 decorum 0 decorousness 0 008 @ 04898437 n 0000 + 01878870 a 0205 + 00688947 a 0201 ! 04902470 n 0202 + 01878870 a 0105 + 00688947 a 0101 ! 04902470 n 0101 ~ 04900597 n 0000 | propriety in manners and conduct -04899031 07 n 02 appropriateness 1 rightness 2 004 @ 04898437 n 0000 + 01879261 a 0202 + 00633410 a 0201 ! 04901996 n 0101 | appropriate conduct; doing the right thing -04899201 07 n 01 correctness 2 007 @ 04898437 n 0000 + 01879464 a 0101 + 01879261 a 0101 + 00633410 a 0102 ! 04901599 n 0101 ~ 04899573 n 0000 ~ 04899713 n 0000 | the quality of conformity to social expectations -04899416 07 n 01 good_form 0 001 @ 04898437 n 0000 | behavior that conforms to social conventions of the time; "it is not good form to brag about winning" -04899573 07 n 02 faultlessness 0 impeccability 1 002 @ 04899201 n 0000 + 01750847 a 0203 | the quality of being without an error or fault -04899713 07 n 02 political_correctness 0 political_correctitude 0 002 @ 04899201 n 0000 ! 04901754 n 0101 | avoidance of expressions or actions that can be perceived to exclude or marginalize or insult people who are socially disadvantaged or discriminated against -04899980 07 n 02 priggishness 0 primness 0 003 @ 04898437 n 0000 + 01880163 a 0202 + 01880163 a 0101 | exaggerated and arrogant properness -04900121 07 n 02 modesty 1 reserve 1 002 @ 04898437 n 0000 ~ 04900236 n 0000 | formality and propriety of manner -04900236 07 n 01 demureness 0 002 @ 04900121 n 0000 + 01538118 a 0102 | the trait of behaving with reserve and decorum -04900357 07 n 02 seemliness 0 grace 0 004 @ 04898437 n 0000 + 00641460 a 0202 + 01878870 a 0106 ! 04902668 n 0101 | a sense of propriety and consideration for others; "a place where the company of others must be accepted with good grace" -04900597 07 n 01 becomingness 0 004 @ 04898804 n 0000 + 01878870 a 0101 + 00907972 a 0101 ! 04902797 n 0101 | the quality of being becoming -04900739 07 n 01 decency 0 006 @ 04898437 n 0000 + 01993408 a 0101 + 01538311 a 0101 + 00682932 a 0101 ! 04902925 n 0101 ~ 04900947 n 0000 | the quality of conforming to standards of propriety and morality -04900947 07 n 02 modesty 0 modestness 1 007 @ 04900739 n 0000 + 01539225 a 0201 + 01537885 a 0201 ! 04903136 n 0101 = 01537885 a 0000 = 01538858 a 0000 ~ 04901152 n 0000 | freedom from vanity or conceit -04901152 07 n 04 primness 1 prudishness 0 prudery 0 Grundyism 0 004 @ 04900947 n 0000 + 01880163 a 0204 + 01948092 a 0104 + 01880163 a 0102 | excessive or affected modesty -04901326 07 n 02 impropriety 0 improperness 0 011 @ 04897762 n 0000 + 01961410 a 0201 + 00136185 a 0201 + 01880531 a 0201 ! 04898437 n 0202 ! 04898437 n 0101 ~ 04901599 n 0000 ~ 04901996 n 0000 ~ 04902165 n 0000 ~ 04902470 n 0000 ~ 04902925 n 0000 | an improper demeanor -04901599 07 n 01 incorrectness 2 004 @ 04901326 n 0000 + 00632438 a 0101 ! 04899201 n 0101 ~ 04901754 n 0000 | lack of conformity to social expectations -04901754 07 n 01 political_incorrectness 0 002 @ 04901599 n 0000 ! 04899713 n 0101 | the use of expressions or actions that can be perceived to exclude or marginalize or insult groups who are socially disadvantaged or discriminated against -04901996 07 n 02 inappropriateness 1 wrongness 2 005 @ 04901326 n 0000 + 00562909 a 0201 + 00562909 a 0101 + 00135718 a 0101 ! 04899031 n 0101 | inappropriate conduct -04902165 07 n 01 indelicacy 0 002 @ 04901326 n 0000 ~ 04902283 n 0000 | the trait of being indelicate and offensive -04902283 07 n 04 gaminess 0 raciness 0 ribaldry 0 spiciness 2 004 @ 04902165 n 0000 + 02132224 a 0408 + 02132224 a 0206 + 02132224 a 0102 | behavior or language bordering on indelicacy -04902470 07 n 02 indecorum 0 indecorousness 0 007 @ 04901326 n 0000 + 01880918 a 0202 + 00689471 a 0201 ! 04898804 n 0202 ! 04898804 n 0101 ~ 04902668 n 0000 ~ 04902797 n 0000 | a lack of decorum -04902668 07 n 01 unseemliness 0 003 @ 04902470 n 0000 + 01880918 a 0105 ! 04900357 n 0101 | a lack of consideration for others -04902797 07 n 01 unbecomingness 0 003 @ 04902470 n 0000 + 01880918 a 0103 ! 04900597 n 0101 | the quality of being unbecoming -04902925 07 n 01 indecency 0 008 @ 04901326 n 0000 + 01880918 a 0101 + 01539022 a 0101 + 00683185 a 0101 ! 04900739 n 0101 ~ 04903136 n 0000 ~ 04903247 n 0000 ~ 04903368 n 0000 | the quality of being indecent -04903136 07 n 01 immodesty 0 002 @ 04902925 n 0000 ! 04900947 n 0101 | the trait of being vain and conceited -04903247 07 n 02 outrageousness 0 enormity 1 002 @ 04902925 n 0000 + 01626562 a 0104 | the quality of being outrageous -04903368 07 n 05 obscenity 0 lewdness 0 bawdiness 0 salaciousness 0 salacity 0 010 @ 04902925 n 0000 + 02133779 a 0504 + 00425740 a 0504 + 02133779 a 0404 + 00425740 a 0404 + 00424787 a 0301 + 00425740 a 0201 + 00684163 a 0101 + 00425740 a 0102 ~ 04903678 n 0000 | the trait of behaving in an obscene manner -04903678 07 n 02 smuttiness 0 dirtiness 0 003 @ 04903368 n 0000 + 00424370 a 0201 + 00425313 a 0105 | obscenity in speech or writing -04903813 07 n 04 composure 0 calm 0 calmness 0 equanimity 0 010 @ 04623612 n 0000 + 00530354 a 0402 + 00529657 a 0301 + 00529657 a 0201 + 01763829 v 0201 + 00022316 v 0202 + 01765178 v 0101 ! 04904664 n 0101 ~ 04904162 n 0000 ~ 04904352 n 0000 | steadiness of mind under stress; "he accepted their problems with composure and she with equanimity" -04904162 07 n 05 aplomb 0 assuredness 0 cool 2 poise 0 sang-froid 0 003 @ 04903813 n 0000 + 01806109 v 0402 + 02094203 a 0201 | great coolness and composure under strain; "keep your cool" -04904352 07 n 06 repose 0 quiet 0 placidity 0 serenity 0 tranquillity 0 tranquility 0 004 @ 04903813 n 0000 + 01134486 a 0304 + 01764800 v 0203 ~ 04904560 n 0000 | a disposition free from stress or emotion -04904560 07 n 01 ataraxia 0 003 @ 04904352 n 0000 + 02308472 a 0102 + 02308472 a 0101 | peace of mind -04904664 07 n 01 discomposure 0 005 @ 04623612 n 0000 + 01790020 v 0102 ! 04903813 n 0101 ~ 04904851 n 0000 ~ 04904996 n 0000 | a temperament that is perturbed and lacking in composure -04904851 07 n 03 disquiet 0 unease 0 uneasiness 2 003 @ 04904664 n 0000 + 00480439 a 0303 + 01764171 v 0103 | the trait of seeming ill at ease -04904996 07 n 02 perturbation 0 fluster 0 005 @ 04904664 n 0000 + 01791973 v 0201 + 01790383 v 0201 + 01764171 v 0101 + 00276601 v 0101 | a disposition that is confused or nervous and upset -04905188 07 n 03 tractability 0 tractableness 0 flexibility 3 014 @ 04616059 n 0000 + 01026262 a 0303 + 02362499 a 0202 + 02451113 a 0201 + 02362499 a 0102 + 02451113 a 0101 ! 04907269 n 0101 = 02451113 a 0000 = 02451951 a 0000 ~ 04905546 n 0000 ~ 04905697 n 0000 ~ 04905842 n 0000 ~ 04906026 n 0000 ~ 04906273 n 0000 | the trait of being easily persuaded -04905546 07 n 02 manageability 0 manageableness 0 003 @ 04905188 n 0000 + 01474513 a 0201 + 01474513 a 0101 | capable of being managed or controlled -04905697 07 n 01 docility 0 003 @ 04905188 n 0000 + 02388773 a 0101 + 02328659 a 0101 | the trait of being agreeably submissive and manageable -04905842 07 n 02 tameness 1 domestication 0 005 @ 04905188 n 0000 + 02328916 a 0102 + 02388145 a 0101 ! 04907826 n 0101 = 02388145 a 0000 | the attribute of having been domesticated -04906026 07 n 03 amenability 0 amenableness 0 cooperativeness 0 008 @ 04905188 n 0000 + 00513388 a 0302 + 00619972 a 0301 + 02362499 a 0201 + 01997415 a 0201 + 00696828 a 0201 + 02362499 a 0101 + 00696828 a 0101 | the trait of being cooperative -04906273 07 n 01 obedience 0 007 @ 04905188 n 0000 + 01612053 a 0101 + 02542795 v 0101 ! 04909414 n 0101 = 01612053 a 0000 = 01613463 a 0000 ~ 04906471 n 0000 | the trait of being willing to obey -04906471 07 n 01 submissiveness 0 006 @ 04906273 n 0000 + 00790691 a 0103 + 00788821 a 0101 ~ 04906712 n 0000 ~ 04907020 n 0000 ~ 04907153 n 0000 | the trait of being willing to yield to the will of another person or a superior force etc. -04906712 07 n 03 obsequiousness 0 servility 0 subservience 0 006 @ 04906471 n 0000 + 00790691 a 0302 + 00790086 a 0201 + 00790540 a 0101 + 02181231 a 0103 ~ 04906923 n 0000 | abject or cringing submissiveness -04906923 07 n 01 sycophancy 0 002 @ 04906712 n 0000 + 10684827 n 0101 | fawning obsequiousness -04907020 07 n 02 passivity 1 passiveness 1 002 @ 04906471 n 0000 + 02513101 a 0201 | submission to others or to outside influences -04907153 07 n 01 subordination 0 002 @ 04906471 n 0000 ! 04908182 n 0101 | the quality of obedient submissiveness -04907269 07 n 02 intractability 0 intractableness 0 011 @ 04616059 n 0000 + 02451951 a 0201 + 02451951 a 0101 ! 04905188 n 0101 ~ 04907575 n 0000 ~ 04907826 n 0000 ~ 04907991 n 0000 ~ 04908396 n 0000 ~ 04908721 n 0000 ~ 04908835 n 0000 ~ 04909414 n 0000 | the trait of being hard to influence or control -04907575 07 n 04 refractoriness 0 unmanageableness 0 recalcitrance 0 recalcitrancy 0 007 @ 04907269 n 0000 + 00696335 a 0401 + 01091844 v 0301 + 00635752 a 0203 + 01475282 a 0201 + 02452562 a 0101 + 01614127 a 0102 | the trait of being unmanageable -04907826 07 n 01 wildness 0 004 @ 04907269 n 0000 + 00412788 a 0106 ! 04905842 n 0101 = 02389220 a 0000 | an intractably barbarous or uncultivated state of nature -04907991 07 n 02 defiance 0 rebelliousness 0 005 @ 04907269 n 0000 + 00589960 a 0204 + 00695523 a 0101 ~ 04908182 n 0000 ~ 04908283 n 0000 | intentionally contemptuous behavior or attitude -04908182 07 n 01 insubordination 0 002 @ 04907991 n 0000 ! 04907153 n 0101 | defiance of authority -04908283 07 n 01 obstreperousness 0 003 @ 04907991 n 0000 + 00696207 a 0101 + 00083876 a 0101 | noisy defiance -04908396 07 n 04 unruliness 0 fractiousness 0 willfulness 0 wilfulness 0 010 @ 04907269 n 0000 + 01614372 a 0405 + 01614372 a 0304 + 01136541 a 0202 + 01614127 a 0201 + 01475526 a 0104 + 02330762 a 0102 + 01666489 a 0105 ~ 04909018 n 0000 ~ 04909887 n 0000 | the trait of being prone to disobedience and lack of discipline -04908721 07 n 01 balkiness 0 002 @ 04907269 n 0000 + 02452379 a 0102 | likely to stop abruptly and unexpectedly -04908835 07 n 04 stubbornness 0 obstinacy 0 obstinance 0 mulishness 0 003 @ 04907269 n 0000 + 02452562 a 0402 + 02452562 a 0102 | the trait of being difficult to handle or overcome -04909018 07 n 03 contrariness 1 perversity 1 perverseness 0 006 @ 04908396 n 0000 + 01818820 a 0301 + 01613839 a 0303 + 01613839 a 0203 + 01613839 a 0101 ~ 04909270 n 0000 | deliberate and stubborn unruliness and resistance to guidance or discipline -04909270 07 n 02 cussedness 0 orneriness 0 003 @ 04909018 n 0000 + 01135673 a 0203 + 01957712 a 0101 | meanspirited disagreeable contrariness -04909414 07 n 01 disobedience 0 004 @ 04907269 n 0000 + 02330762 a 0101 ! 04906273 n 0101 ~ 04909563 n 0000 | the trait of being unwilling to obey -04909563 07 n 03 naughtiness 0 mischievousness 0 badness 2 003 @ 04909414 n 0000 + 01128406 a 0101 ~ 04909721 n 0000 | an attribute of mischievous children -04909721 07 n 03 prankishness 0 rascality 0 roguishness 0 003 @ 04909563 n 0000 + 02122379 a 0303 + 02122715 a 0106 | the trait of indulging in disreputable pranks -04909887 07 n 01 wildness 1 002 @ 04908396 n 0000 + 02390335 a 0101 | an unruly disposition to do as one pleases; "Liza had always had a tendency to wildness"; "the element of wildness in his behavior was a protest against repressive convention" -04910135 07 n 02 manner 1 personal_manner 0 009 @ 04897762 n 0000 ~ 04910377 n 0000 ~ 04910562 n 0000 ~ 04910848 n 0000 ~ 04910973 n 0000 ~ 04911420 n 0000 ~ 04912052 n 0000 ~ 04912732 n 0000 ~ 04914292 n 0000 | a way of acting or behaving -04910377 07 n 04 bearing 0 comportment 0 presence 0 mien 0 005 @ 04910135 n 0000 + 02518161 v 0206 + 02519666 v 0202 + 02518161 v 0103 ~ 04910684 n 0000 | dignified manner or conduct -04910562 07 n 01 bedside_manner 0 001 @ 04910135 n 0000 | manner or conduct of a physician in the presence of a patient -04910684 07 n 03 dignity 1 lordliness 1 gravitas 0 002 @ 04910377 n 0000 + 01591050 a 0203 | formality in bearing and appearance; "he behaved with great dignity" -04910848 07 n 02 foppishness 0 dandyism 0 002 @ 04910135 n 0000 + 00849912 a 0103 | the manner and dress of a fop or dandy -04910973 07 n 03 gentleness 0 softness 3 mildness 1 008 @ 04910135 n 0000 + 01508719 a 0301 + 00760473 a 0201 + 01156112 a 0201 + 01373314 a 0101 + 01455412 a 0101 + 01509066 a 0101 + 01192035 a 0102 | acting in a manner that is gentle and mild and even-tempered; "his fingers have learned gentleness"; "suddenly her gigantic power melted into softness for the baby"; "even in the pulpit there are moments when mildness of manner is not enough" -04911420 07 n 02 formality 0 formalness 0 010 @ 04910135 n 0000 + 00751838 a 0202 + 01041916 a 0201 ! 04912052 n 0101 = 01041916 a 0000 = 01044240 a 0000 = 01045216 a 0000 = 01045711 a 0000 ~ 04911777 n 0000 ~ 04911894 n 0000 | a manner that strictly observes all forms and ceremonies; "the formality of his voice made the others pay him close attention" -04911777 07 n 01 ceremoniousness 0 003 @ 04911420 n 0000 + 01042703 a 0101 ! 04912610 n 0101 | a ceremonial manner -04911894 07 n 01 stateliness 1 002 @ 04911420 n 0000 + 00751838 a 0103 | an elaborate manner of doing something; "she served coffee with great stateliness" -04912052 07 n 01 informality 0 005 @ 04910135 n 0000 + 01076145 a 0103 ! 04911420 n 0101 ~ 04912240 n 0000 ~ 04912610 n 0000 | a manner that does not take forms and ceremonies seriously -04912240 07 n 02 casualness 0 familiarity 3 011 @ 04912052 n 0000 + 01798484 a 0101 + 01190484 a 0102 + 01044730 a 0102 + 01798162 a 0101 + 01044557 a 0101 + 00545746 a 0101 + 01961205 a 0101 + 00749749 a 0101 + 00312234 a 0101 ~ 04912506 n 0000 | a casual manner -04912506 07 n 01 slanginess 0 002 @ 04912240 n 0000 + 01046784 a 0101 | casualness in use of language -04912610 07 n 01 unceremoniousness 0 003 @ 04912052 n 0000 + 01045067 a 0101 ! 04911777 n 0101 | an unceremonial manner -04912732 07 n 02 courtesy 0 good_manners 0 010 @ 04910135 n 0000 ! 04914292 n 0101 = 00639842 a 0000 = 00640283 a 0000 ~ 04912982 n 0000 ~ 04913212 n 0000 ~ 04913568 n 0000 ~ 04913738 n 0000 ~ 04913839 n 0000 ~ 04914133 n 0000 | a courteous manner -04912982 07 n 02 politeness 0 niceness 2 007 @ 04912732 n 0000 + 01993408 a 0202 + 00641460 a 0203 + 00642379 a 0102 ! 04914694 n 0101 = 00641158 a 0000 = 00641640 a 0000 | a courteous manner that respects accepted social usage -04913212 07 n 01 urbanity 0 002 @ 04912732 n 0000 + 02271177 a 0104 | polished courtesy; elegance of manner -04913322 07 n 04 suavity 0 suaveness 0 blandness 1 smoothness 3 006 @ 04913568 n 0000 + 00758800 a 0402 + 00758800 a 0304 + 01948231 a 0204 + 00758800 a 0203 + 00758800 a 0103 | the quality of being bland and gracious or ingratiating in manner -04913568 07 n 01 graciousness 0 005 @ 04912732 n 0000 + 00641460 a 0102 + 01141743 a 0101 ! 04914991 n 0101 ~ 04913322 n 0000 | excellence of manners or social conduct -04913738 07 n 03 chivalry 0 gallantry 1 politesse 0 001 @ 04912732 n 0000 | courtesy towards women -04913839 07 n 03 deference 1 respect 0 respectfulness 0 007 @ 04912732 n 0000 + 02012333 a 0301 + 01993940 a 0301 + 02457233 v 0201 + 01994180 a 0102 + 01994180 a 0101 + 00878348 v 0103 | courteous regard for people's feelings; "in deference to your wishes"; "out of respect for his privacy" -04914133 07 n 01 civility 0 005 @ 04912732 n 0000 + 00642379 a 0101 ! 04915365 n 0101 = 00642379 a 0000 = 00642725 a 0000 | formal or perfunctory politeness -04914292 07 n 02 discourtesy 0 rudeness 0 011 @ 04910135 n 0000 + 00641944 a 0203 + 00642725 a 0202 ! 04912732 n 0101 ~ 04914576 n 0000 ~ 04914694 n 0000 ~ 04914991 n 0000 ~ 04915365 n 0000 ~ 04915462 n 0000 ~ 04915687 n 0000 ~ 04915866 n 0000 | a manner that is rude and insulting -04914576 07 n 01 boorishness 2 002 @ 04914292 n 0000 + 01949859 a 0101 | the manner of a rude or insensitive person -04914694 07 n 01 impoliteness 0 005 @ 04914292 n 0000 + 00641640 a 0101 ! 04912982 n 0101 ~ 04914881 n 0000 ~ 04915121 n 0000 | a discourteous manner that ignores accepted social usage -04914881 07 n 02 bad_manners 0 ill-breeding 0 001 @ 04914694 n 0000 | impoliteness resulting from ignorance -04914991 07 n 01 ungraciousness 0 003 @ 04914292 n 0000 + 00642152 a 0102 ! 04913568 n 0101 | an offensive lack of good manners -04915121 07 n 03 crudeness 0 crudity 0 gaucheness 0 004 @ 04914694 n 0000 + 00851329 a 0301 + 00683531 a 0201 + 00683531 a 0101 | an impolite manner that is vulgar and lacking tact or refinement; "the whole town was famous for its crudeness" -04915365 07 n 01 incivility 0 002 @ 04914292 n 0000 ! 04914133 n 0101 | deliberate discourtesy -04915462 07 n 05 abruptness 2 brusqueness 0 curtness 0 gruffness 2 shortness 0 006 @ 04914292 n 0000 + 00640660 a 0504 + 01137000 a 0403 + 00640660 a 0303 + 00640660 a 0201 + 00640520 a 0101 | an abrupt discourteous manner -04915687 07 n 02 contempt 0 disrespect 0 004 @ 04914292 n 0000 + 00694641 v 0201 + 02457825 v 0201 + 01995288 a 0101 | a manner that is generally disrespectful and contemptuous -04915866 07 n 07 crust 0 gall 0 impertinence 1 impudence 0 insolence 0 cheekiness 0 freshness 2 009 @ 04914292 n 0000 + 00205295 a 0701 + 00204779 a 0602 + 00155144 a 0508 + 01996051 a 0502 + 00205295 a 0403 + 00205295 a 0302 + 01137000 a 0101 ~ 04916200 n 0000 | the trait of being rude and impertinent; inclined to take liberties -04916200 07 n 03 chutzpa 0 chutzpah 0 hutzpah 0 002 ;c 06951067 n 0000 @ 04915866 n 0000 | (Yiddish) unbelievable gall; insolence; audacity -04916342 07 n 01 property 0 044 @ 00024264 n 0000 ~ 04917292 n 0000 ~ 04917439 n 0000 ~ 04917680 n 0000 ~ 04917870 n 0000 ~ 04918053 n 0000 ~ 04920568 n 0000 ~ 04920867 n 0000 ~ 04924103 n 0000 ~ 04928903 n 0000 ~ 04933544 n 0000 ~ 04934546 n 0000 ~ 04942869 n 0000 ~ 04946553 n 0000 ~ 04950026 n 0000 ~ 04950126 n 0000 ~ 04980008 n 0000 ~ 04983122 n 0000 ~ 04989015 n 0000 ~ 04992163 n 0000 ~ 04993413 n 0000 ~ 04997472 n 0000 ~ 04997988 n 0000 ~ 05009170 n 0000 ~ 05009758 n 0000 ~ 05029594 n 0000 ~ 05029706 n 0000 ~ 05038593 n 0000 ~ 05040275 n 0000 ~ 05044528 n 0000 ~ 05056234 n 0000 ~ 05062748 n 0000 ~ 05090441 n 0000 ~ 05093890 n 0000 ~ 05095691 n 0000 ~ 05196220 n 0000 ~ 05208690 n 0000 ~ 05208796 n 0000 ~ 05208896 n 0000 ~ 05208988 n 0000 ~ 05214469 n 0000 ~ 05214599 n 0000 ~ 05215483 n 0000 ~ 05215699 n 0000 | a basic or essential attribute shared by all members of a class; "a study of the physical properties of atomic particles" -04917292 07 n 01 actinism 0 002 @ 04916342 n 0000 + 03039997 a 0101 | the property of radiation that enables it to produce photochemical effects -04917439 07 n 02 isotropy 0 symmetry 1 005 @ 04916342 n 0000 ;c 06090869 n 0000 + 01360804 a 0101 + 01360804 a 0102 ! 04917680 n 0101 | (physics) the property of being isotropic; having the same value when measured in different directions -04917680 07 n 01 anisotropy 0 003 @ 04916342 n 0000 + 01361107 a 0101 ! 04917439 n 0101 | the property of being anisotropic; having a different value when measured in different directions -04917870 07 n 02 characteristic 1 device_characteristic 0 002 @ 04916342 n 0000 ;c 06099269 n 0000 | any measurable property of a device measured under closely specified conditions -04918053 07 n 01 connectivity 0 002 @ 04916342 n 0000 + 00563980 a 0101 | the property of being connected or the degree to which something has connections -04918210 07 n 02 directness 0 straightness 3 009 @ 04731497 n 0000 + 00632306 a 0201 + 01852666 a 0101 ! 04919209 n 0101 = 00760916 a 0000 = 00762355 a 0000 ~ 04918498 n 0000 ~ 04918767 n 0000 ~ 04919011 n 0000 | trueness of course toward a goal; "rivaling a hawk in directness of aim" -04918498 07 n 02 downrightness 0 straightforwardness 1 005 @ 04918210 n 0000 + 00897223 a 0201 + 02318728 a 0202 + 00766102 a 0202 + 01222722 a 0101 | the quality of being direct and straightforward; "what some people take for rudeness is really straightforwardness" -04918767 07 n 02 immediacy 2 immediateness 2 006 @ 04918210 n 0000 + 00449079 a 0202 + 00770316 a 0201 ! 04919580 n 0101 = 00770316 a 0000 = 00770756 a 0000 | lack of an intervening or mediating agency; "the immediacy of television coverage" -04919011 07 n 01 pointedness 1 002 @ 04918210 n 0000 + 00765862 a 0101 | the quality of being obviously directed at a particular person or thing; "the pointedness of his sarcasm was unmistakable" -04919209 07 n 01 indirectness 0 008 @ 04731497 n 0000 + 01854546 a 0101 + 00762355 a 0101 ! 04918210 n 0101 ~ 04919458 n 0000 ~ 04919580 n 0000 ~ 04919712 n 0000 ~ 04919872 n 0000 | having the characteristic of lacking a true course toward a goal -04919458 07 n 01 allusiveness 0 002 @ 04919209 n 0000 + 00766957 a 0101 | a quality characterized by indirect reference -04919580 07 n 02 mediacy 0 mediateness 0 003 @ 04919209 n 0000 + 00770756 a 0201 ! 04918767 n 0101 | the quality of being mediate -04919712 07 n 02 deviousness 2 obliqueness 1 003 @ 04919209 n 0000 + 00768098 a 0202 + 00763013 a 0101 | the quality of being oblique and rambling indirectly -04919872 07 n 01 discursiveness 0 003 @ 04919209 n 0000 + 01430452 a 0102 + 00768397 a 0102 | the quality of being discursive -04920000 07 n 01 robustness 1 002 @ 04731497 n 0000 + 02323521 a 0101 | the characteristic of being strong enough to withstand intellectual challenge; "the lack of robustness in the findings may be due to the small size of the sample" -04920237 07 n 02 rurality 0 ruralism 0 004 @ 04731497 n 0000 @ 04616059 n 0000 + 02790726 a 0101 + 02050452 a 0101 | a rural characteristic or trait; "a place with the rurality of a turnip field" -04920435 07 n 01 streak 1 001 @ 04731497 n 0000 | a distinctive characteristic; "he has a stubborn streak"; "a streak of wildness" -04920568 07 n 02 duality 0 wave-particle_duality 0 003 @ 04916342 n 0000 ;c 06090869 n 0000 + 02183135 a 0101 | (physics) the property of matter and electromagnetic radiation that is characterized by the fact that some properties can be explained best by wave theory and others by particle theory -04920867 07 n 02 heredity 0 genetic_endowment 0 003 @ 04916342 n 0000 + 01314537 a 0103 ~ 04922338 n 0000 | the total of inherited attributes -04921011 07 n 02 inheritance 1 heritage 0 005 @ 00024264 n 0000 ~ 04921308 n 0000 ~ 04921417 n 0000 ~ 04921576 n 0000 ~ 04921754 n 0000 | any attribute or immaterial possession that is inherited from ancestors; "my only inheritance was my mother's blessing"; "the world's heritage of knowledge" -04921308 07 n 01 birthright 1 001 @ 04921011 n 0000 | personal characteristics that are inherited at birth -04921417 07 n 01 background 0 001 @ 04921011 n 0000 | a person's social heritage: previous experience or training; "he is a lawyer with a sports background" -04921576 07 n 01 birthright 0 001 @ 04921011 n 0000 | a right or privilege that you are entitled to at birth; "free public education is the birthright of every American child" -04921754 07 n 01 upbringing 0 003 @ 04921011 n 0000 ~ 04921900 n 0000 ~ 04922113 n 0000 | properties acquired during a person's formative years -04921900 07 n 03 education 1 training 0 breeding 2 002 @ 04921754 n 0000 + 02388403 v 0101 | the result of good upbringing (especially knowledge of correct social behavior); "a woman of breeding and refinement" -04922113 07 n 03 raising 0 rearing 0 nurture 0 005 @ 04921754 n 0000 + 02539788 v 0304 + 00908351 v 0302 + 02539788 v 0201 + 02539788 v 0102 | the properties acquired as a consequence of the way you were treated as a child -04922338 07 n 02 inheritance 2 hereditary_pattern 0 007 @ 04920867 n 0000 ;c 06075527 n 0000 + 02315759 v 0101 ~ 04922787 n 0000 ~ 04923024 n 0000 ~ 04923299 n 0000 ~ 04923496 n 0000 | (genetics) attributes acquired via biological heredity from the parents -04922597 07 n 02 heterosis 0 hybrid_vigor 0 002 @ 04944048 n 0000 ;c 06075527 n 0000 | (genetics) the tendency of a crossbred organism to have qualities superior to those of either parent -04922787 07 n 04 ancestry 0 lineage 0 derivation 0 filiation 0 006 @ 04922338 n 0000 + 02737187 v 0301 = 01903617 a 0000 = 01904156 a 0000 ~ 04923743 n 0000 ~ 04923907 n 0000 | inherited properties shared with others of your bloodline -04923024 07 n 02 linkage 0 gene_linkage 0 002 @ 04922338 n 0000 ;c 06075527 n 0000 | (genetics) traits that tend to be inherited together as a consequence of an association between their genes; all of the genes of a given chromosome are linked (where one goes they all go) -04923299 07 n 01 X-linked_dominant_inheritance 0 001 @ 04922338 n 0000 | hereditary pattern in which a dominant gene on the X chromosome causes a characteristic to be manifested in the offspring -04923496 07 n 01 X-linked_recessive_inheritance 0 001 @ 04922338 n 0000 | hereditary pattern in which a recessive gene on the X chromosome results in the manifestation of characteristics in male offspring and a carrier state in female offspring -04923743 07 n 03 origin 0 descent 0 extraction 0 002 @ 04922787 n 0000 ~ 04924003 n 0000 | properties attributable to your ancestry; "he comes from good origins" -04923907 07 n 02 pedigree 0 bloodline 0 001 @ 04922787 n 0000 | ancestry of a purebred animal -04924003 07 n 01 full_blood 0 001 @ 04923743 n 0000 | descent from parents both of one pure breed -04924103 07 n 01 age 0 016 @ 04916342 n 0000 = 01488245 a 0000 = 01489722 a 0000 = 01638438 a 0000 = 01640850 a 0000 = 01643620 a 0000 = 01646941 a 0000 ~ 04924491 n 0000 ~ 04924674 n 0000 ~ 04924878 n 0000 ~ 04925064 n 0000 ~ 04925218 n 0000 ~ 04925348 n 0000 ~ 04926427 n 0000 ~ 04927445 n 0000 ~ 04928416 n 0000 | how long something has existed; "it was replaced because of its age" -04924491 07 n 01 chronological_age 0 001 @ 04924103 n 0000 | age measured by the time (years and months) that something or someone has existed; "his chronological age was 71 years" -04924674 07 n 01 bone_age 0 001 @ 04924103 n 0000 | a person's age measured by matching their bone development (as shown by X rays) with bone development of an average person of known chronological age -04924878 07 n 01 developmental_age 0 001 @ 04924103 n 0000 | a measure of a child's development (in body size or motor skill or psychological function) expressed in terms of age norms -04925064 07 n 03 fetal_age 0 fertilization_age 0 gestational_age 0 001 @ 04924103 n 0000 | the age of an embryo counting from the time of fertilization -04925218 07 n 01 mental_age 0 001 @ 04924103 n 0000 | the level of intellectual development as measured by an intelligence test -04925348 07 n 01 oldness 0 008 @ 04924103 n 0000 + 01638438 a 0101 ! 04926427 n 0101 ~ 04925577 n 0000 ~ 04925756 n 0000 ~ 04925895 n 0000 ~ 04926217 n 0000 ~ 04926308 n 0000 | the quality of being old; the opposite of newness -04925577 07 n 02 obsoleteness 0 superannuation 0 004 @ 04925348 n 0000 + 00818135 v 0201 + 00537050 v 0201 + 00669021 a 0102 | the property of being out of date and not current -04925756 07 n 02 ancientness 0 antiquity 0 004 @ 04925348 n 0000 + 01638962 a 0202 + 01728614 a 0101 + 01644847 a 0101 | extreme oldness -04925895 07 n 01 old-fashionedness 0 003 @ 04925348 n 0000 + 00974159 a 0104 ~ 04926038 n 0000 | the property of being no longer fashionable -04926038 07 n 01 quaintness 2 002 @ 04925895 n 0000 + 00973192 a 0102 | the quality of being quaint and old-fashioned; "she liked the old cottage; its quaintness was appealing" -04926217 07 n 02 vintage 0 time_of_origin 0 001 @ 04925348 n 0000 | the oldness of wines -04926308 07 n 01 hoariness 1 002 @ 04925348 n 0000 + 01645678 a 0109 | great age (especially grey or white with age) -04926427 07 n 01 newness 0 006 @ 04924103 n 0000 + 01640850 a 0101 ! 04925348 n 0101 ~ 04926620 n 0000 ~ 04926728 n 0000 ~ 04927268 n 0000 | the quality of being new; the opposite of oldness -04926620 07 n 01 brand-newness 0 002 @ 04926427 n 0000 + 01641460 a 0101 | the property of being very new -04926728 07 n 01 freshness 1 009 @ 04926427 n 0000 + 02370083 a 0101 + 01906320 a 0102 + 01357027 a 0103 + 00418198 a 0101 + 01067694 a 0101 ! 04928008 n 0101 = 01067694 a 0000 ~ 04927098 n 0000 | the property of being pure and fresh (as if newly made); not stale or deteriorated; "she loved the freshness of newly baked bread"; "the freshness of the air revived him" -04927098 07 n 01 crispness 2 002 @ 04926728 n 0000 + 01068104 a 0101 | a pleasing firmness and freshness; "crispness of new dollar bills"; "crispness of fresh lettuce" -04927268 07 n 02 recency 2 recentness 2 004 @ 04926427 n 0000 + 01642477 a 0201 + 01730444 a 0102 + 01642477 a 0101 | the property of having happened or appeared not long ago -04927445 07 n 01 oldness 1 007 @ 04924103 n 0000 + 01643620 a 0101 ! 04928416 n 0101 ~ 04927632 n 0000 ~ 04927792 n 0000 ~ 04927890 n 0000 ~ 04928008 n 0000 | the opposite of youngness -04927632 07 n 02 agedness 0 senescence 0 004 @ 04927445 n 0000 + 01644709 a 0203 + 01644225 a 0101 + 01493423 a 0101 | the property characteristic of old age -04927792 07 n 01 senility 0 002 @ 04927445 n 0000 + 01645296 a 0104 | the state of being senile -04927890 07 n 02 longevity 1 seniority 0 002 @ 04927445 n 0000 + 01644225 a 0204 | the property of being long-lived -04928008 07 n 01 staleness 1 005 @ 04927445 n 0000 + 01068726 a 0101 ! 04926728 n 0101 = 01068726 a 0000 ~ 04928194 n 0000 | having lost purity and freshness as a consequence of aging -04928194 07 n 03 mustiness 0 must 0 moldiness 0 006 @ 04928008 n 0000 + 01070088 a 0301 + 01070088 a 0203 + 01053915 a 0202 + 01070088 a 0103 + 01053915 a 0102 | the quality of smelling or tasting old or stale or mouldy -04928416 07 n 01 youngness 0 006 @ 04924103 n 0000 + 01643480 a 0101 + 01646941 a 0101 ! 04927445 n 0101 ~ 04928585 n 0000 ~ 04928760 n 0000 | the opposite of oldness -04928585 07 n 03 youth 0 youthfulness 0 juvenility 0 003 @ 04928416 n 0000 + 02892980 a 0301 + 01649720 a 0201 | the freshness and vitality characteristic of a young person -04928760 07 n 02 childishness 0 puerility 0 003 @ 04928416 n 0000 + 03104461 a 0201 + 01493016 a 0101 | a property characteristic of a child -04928903 07 n 05 manner 2 mode 0 style 0 way 1 fashion 0 013 @ 04916342 n 0000 + 10155849 n 0303 + 01687569 v 0301 + 00641343 a 0101 ~ 04929422 n 0000 ~ 04930139 n 0000 ~ 04930307 n 0000 ~ 04930478 n 0000 ~ 04930632 n 0000 ~ 04931267 n 0000 ~ 04931428 n 0000 ~ 04931733 n 0000 ~ 05212808 n 0000 | how something is done or how it happens; "her dignified manner"; "his rapid manner of talking"; "their nomadic mode of existence"; "in the characteristic New York style"; "a lonely way of life"; "in an abrasive fashion" -04929422 07 n 02 artistic_style 0 idiom 0 010 @ 04928903 n 0000 ~ 04698307 n 0000 ~ 04698511 n 0000 ~ 04698656 n 0000 ~ 04699767 n 0000 ~ 04929742 n 0000 ~ 04929976 n 0000 ~ 06154464 n 0000 ~ 06154724 n 0000 ~ 06155075 n 0000 | the style of a particular artist or school or movement; "an imaginative orchestral idiom" -04929742 07 n 01 High_Renaissance 0 002 @ 04929422 n 0000 #p 15259812 n 0000 | the artistic style of early 16th century painting in Florence and Rome; characterized by technical mastery and heroic composition and humanistic content -04929976 07 n 01 treatment 0 001 @ 04929422 n 0000 | a manner of dealing with something artistically; "his treatment of space borrows from Italian architecture" -04930139 07 n 01 drape 0 003 @ 04928903 n 0000 + 01612487 v 0101 + 01542525 v 0101 | the manner in which fabric hangs or falls; "she adjusted the drape of her skirt" -04930307 07 n 01 fit 0 004 @ 04928903 n 0000 + 00300537 v 0101 + 02659763 v 0101 ~ 04931837 n 0000 | the manner in which something fits; "I admired the fit of her coat" -04930478 07 n 01 form 3 001 @ 04928903 n 0000 | a particular mode in which something is manifested; "his resentment took the form of extreme hostility" -04930632 07 n 04 life_style 0 life-style 0 lifestyle 0 modus_vivendi 0 004 @ 04928903 n 0000 ~ 04930850 n 0000 ~ 04931041 n 0000 ~ 04931152 n 0000 | a manner of living that reflects the person's values and attitudes -04930850 07 n 01 fast_lane 0 001 @ 04930632 n 0000 | a hectic and pressured lifestyle often characterized by recklessness or dissipation; "life in fashion's fast lane has taught her a lot" -04931041 07 n 01 free_living 0 001 @ 04930632 n 0000 | a lifestyle given to easy indulgence of the appetites -04931152 07 n 01 vanity_fair 0 001 @ 04930632 n 0000 | a vain and frivolous lifestyle especially in large cities -04931267 07 n 01 setup 0 002 @ 04928903 n 0000 ;u 07075172 n 0000 | the way something is organized or arranged; "it takes time to learn the setup around here" -04931428 07 n 02 touch 1 signature 0 002 @ 04928903 n 0000 ~ 04931567 n 0000 | a distinguishing style; "this room needs a woman's touch" -04931567 07 n 01 common_touch 0 001 @ 04931428 n 0000 | the property of appealing to people in general (usually by appearing to have qualities in common with them) -04931733 07 n 01 wise 0 001 @ 04928903 n 0000 | a way of doing or being; "in no wise"; "in this wise" -04931837 07 n 01 hang 0 002 @ 04930307 n 0000 + 01542668 v 0101 | the way a garment hangs; "he adjusted the hang of his coat" -04931965 07 n 01 structure 0 006 @ 04933544 n 0000 + 00404222 v 0101 ~ 03570372 n 0000 ~ 04932278 n 0000 ~ 04933197 n 0000 ~ 04933363 n 0000 | the manner of construction of something and the arrangement of its parts; "artists must study the structure of the human body"; "the structure of the benzene molecule" -04932278 07 n 02 computer_architecture 0 architecture 0 004 @ 04931965 n 0000 ;c 06128570 n 0000 ~ 04932561 n 0000 ~ 04932875 n 0000 | (computer science) the structure and organization of a computer's hardware or system software; "the architecture of a computer's system software" -04932561 07 n 03 complex_instruction_set_computing 0 complex_instruction_set_computer 0 CISC 0 005 @ 04932278 n 0000 ;c 06128570 n 0000 ! 04932875 n 0303 ! 04932875 n 0202 ! 04932875 n 0101 | (computer science) a kind of computer architecture that has a large number of instructions hard coded into the CPU chip -04932875 07 n 03 reduced_instruction_set_computing 0 reduced_instruction_set_computer 0 RISC 0 005 @ 04932278 n 0000 ;c 06128570 n 0000 ! 04932561 n 0303 ! 04932561 n 0202 ! 04932561 n 0101 | (computer science) a kind of computer architecture that has a relatively small set of computer instructions that it can perform -04933197 07 n 02 cytoarchitecture 0 cytoarchitectonics 0 003 @ 04931965 n 0000 + 02708334 a 0102 + 02708334 a 0101 | the cellular composition of a bodily structure -04933363 07 n 02 framework 0 fabric 0 001 @ 04931965 n 0000 | the underlying structure; "providing a factual framework for future research"; "it is part of the fabric of society" -04933544 07 n 05 constitution 0 composition 1 physical_composition 0 makeup 0 make-up 0 009 @ 04916342 n 0000 + 02620587 v 0503 + 02620587 v 0403 + 02621395 v 0102 ~ 04931965 n 0000 ~ 04933852 n 0000 ~ 04934043 n 0000 ~ 04934220 n 0000 ~ 05444876 n 0000 | the way in which someone or something is composed -04933852 07 n 01 phenotype 0 003 @ 04933544 n 0000 + 02942347 a 0102 + 02942347 a 0101 | what an organism looks like as a consequence of the interaction of its genotype and the environment -04934043 07 n 02 genotype 0 genetic_constitution 0 003 @ 04933544 n 0000 + 02942542 a 0102 + 02942542 a 0101 | the particular alleles at specified loci present in an organism -04934220 07 n 02 texture 3 grain 1 001 @ 04933544 n 0000 | the physical composition of something (especially with respect to the size and shape of the small constituents of a substance); "breadfruit has the same texture as bread"; "sand of a fine grain"; "fish with a delicate flavor and texture"; "a stone of coarse grain" -04934546 07 n 04 consistency 0 consistence 0 eubstance 0 body 0 013 @ 04916342 n 0000 = 02415390 a 0000 = 02417301 a 0000 ~ 04733204 n 0000 ~ 04935003 n 0000 ~ 04936403 n 0000 ~ 04936846 n 0000 ~ 04937848 n 0000 ~ 04938228 n 0000 ~ 04939324 n 0000 ~ 04939987 n 0000 ~ 04940146 n 0000 ~ 04941124 n 0000 | the property of holding together and retaining its shape; "wool has more body than rayon"; "when the dough has enough consistency it is ready to bake" -04935003 07 n 02 viscosity 0 viscousness 0 007 @ 04934546 n 0000 + 02417028 a 0202 + 02417028 a 0102 ~ 04935239 n 0000 ~ 04935405 n 0000 ~ 04935904 n 0000 ~ 04936213 n 0000 | resistance of a liquid to shear forces (and hence to flow) -04935239 07 n 01 stickiness 0 005 @ 04935003 n 0000 + 02550704 a 0101 + 00054804 a 0101 + 00053691 a 0106 ~ 04935528 n 0000 | the property of sticking to a surface -04935405 07 n 01 sliminess 1 002 @ 04935003 n 0000 + 02235826 a 0102 | a property resembling or being covered with slime -04935528 07 n 04 adhesiveness 0 adhesion 0 adherence 0 bond 0 006 @ 04935239 n 0000 + 01356750 v 0403 + 00053032 a 0301 + 01220885 v 0203 + 01356750 v 0201 + 00052672 a 0101 | the property of sticking together (as of glue and wood) or the joining of surfaces of different composition; "the mutual adhesiveness of cells"; "a heated hydraulic press was required for adhesion" -04935904 07 n 08 cohesiveness 1 glueyness 0 gluiness 0 gumminess 0 tackiness 1 ropiness 0 viscidity 0 viscidness 0 008 @ 04935003 n 0000 + 00053691 a 0807 + 00053691 a 0707 + 02416765 a 0601 + 02550891 a 0501 + 00053691 a 0403 + 00053691 a 0301 + 00053691 a 0201 | the property of being cohesive and sticky -04936213 07 n 03 gelatinousness 0 glutinosity 0 glutinousness 0 004 @ 04935003 n 0000 + 00053691 a 0302 + 00053691 a 0202 + 02416610 a 0101 | the property of having a viscosity like jelly -04936403 07 n 01 thickness 2 007 @ 04934546 n 0000 + 02415390 a 0101 ! 04936846 n 0101 = 02415390 a 0000 = 02417301 a 0000 ~ 04936585 n 0000 ~ 04936690 n 0000 | resistance to flow -04936585 07 n 01 semifluidity 0 001 @ 04936403 n 0000 | a property midway between a solid and a liquid -04936690 07 n 02 creaminess 0 soupiness 0 003 @ 04936403 n 0000 + 02416898 a 0201 + 02416285 a 0101 | the property of having the thickness of heavy cream -04936846 07 n 01 thinness 2 005 @ 04934546 n 0000 + 02417301 a 0101 ! 04936403 n 0101 ~ 04937043 n 0000 ~ 04937427 n 0000 | a consistency of low viscosity; "he disliked the thinness of the soup" -04937043 07 n 05 fluidity 0 fluidness 0 liquidity 0 liquidness 0 runniness 0 005 @ 04936846 n 0000 + 02261746 a 0502 + 02261386 a 0301 + 02261746 a 0201 + 02261746 a 0101 | the property of flowing easily; "adding lead makes the alloy easier to cast because the melting point is reduced and the fluidity is increased"; "they believe that fluidity increases as the water gets warmer" -04937427 07 n 01 wateriness 0 004 @ 04936846 n 0000 + 02549857 a 0102 + 02262365 a 0101 + 00756459 a 0101 | the property of resembling the viscosity of water -04937587 07 n 01 hardness 0 001 @ 04723816 n 0000 | a quality of water that contains dissolved mineral salts that prevent soap from lathering; "the costs of reducing hardness depend on the relative amounts of calcium and magnesium compounds that are present" -04937848 07 n 01 hardness 1 007 @ 04934546 n 0000 + 01150915 a 0101 ! 04938228 n 0101 = 01150915 a 0000 = 01152746 a 0000 ~ 04938110 n 0000 ~ 04938702 n 0000 | the property of being rigid and resistant to pressure; not easily scratched; measured on Mohs scale -04938110 07 n 01 firmness 2 002 @ 04937848 n 0000 + 01151740 a 0101 | the property of being unyielding to the touch -04938228 07 n 01 softness 0 007 @ 04934546 n 0000 + 01152746 a 0101 ! 04937848 n 0101 ~ 04938474 n 0000 ~ 04938838 n 0000 ~ 04939046 n 0000 ~ 04939198 n 0000 | the property of giving little resistance to pressure and being easily cut or molded -04938474 07 n 03 compressibility 0 squeezability 0 sponginess 1 006 @ 04938228 n 0000 + 01154964 a 0301 + 01153435 a 0202 + 01153435 a 0101 + 00514396 a 0101 ! 04938702 n 0101 | the property of being able to occupy less space -04938702 07 n 01 incompressibility 0 003 @ 04937848 n 0000 + 00514717 a 0101 ! 04938474 n 0101 | the property of being incompressible -04938838 07 n 03 downiness 0 featheriness 0 fluffiness 0 007 @ 04938228 n 0000 + 01154030 a 0304 + 00998207 a 0202 + 00998040 a 0201 + 00058554 a 0201 + 01154030 a 0101 + 00213610 a 0101 | a light softness -04939046 07 n 03 flabbiness 1 limpness 1 flaccidity 0 004 @ 04938228 n 0000 + 01019713 a 0303 + 01019713 a 0102 + 02404081 a 0201 | a flabby softness -04939198 07 n 02 mushiness 0 pulpiness 0 003 @ 04938228 n 0000 + 02576918 a 0201 + 01154639 a 0101 | a mushy pulpy softness -04939324 07 n 01 breakableness 0 007 @ 04934546 n 0000 + 00708017 a 0101 ! 04939987 n 0101 = 00708017 a 0000 = 00709744 a 0000 ~ 04939547 n 0000 ~ 04939742 n 0000 | the consistency of something that breaks under pressure -04939547 07 n 03 brittleness 0 crispness 1 crispiness 0 006 @ 04939324 n 0000 + 02446931 a 0302 + 02446931 a 0201 + 01522214 a 0101 + 00708498 a 0101 ~ 04939872 n 0000 | firm but easily broken -04939742 07 n 02 crumbliness 0 friability 0 003 @ 04939324 n 0000 + 00708738 a 0202 + 00708738 a 0101 | excessive breakableness -04939872 07 n 01 flakiness 0 002 @ 04939547 n 0000 + 02447104 a 0101 | having or breaking into thin crisp flakes -04939987 07 n 01 unbreakableness 0 003 @ 04934546 n 0000 + 00709744 a 0101 ! 04939324 n 0101 | a consistency of something that does not break under pressure -04940146 07 n 02 porosity 0 porousness 0 007 @ 04934546 n 0000 + 01772305 a 0201 + 01772305 a 0101 + 00329396 a 0101 ! 04941124 n 0101 ~ 04940379 n 0000 ~ 04940496 n 0000 | the property of being porous; being able to absorb fluids -04940379 07 n 01 sponginess 0 003 @ 04940146 n 0000 + 01154964 a 0101 + 00007516 a 0101 | the porosity of a sponge -04940496 07 n 02 permeability 0 permeableness 0 005 @ 04940146 n 0000 + 01772032 a 0201 + 01772032 a 0101 ! 04941942 n 0101 ~ 04940964 n 0000 | the property of something that can be pervaded by a liquid (as by osmosis or diffusion) -04940730 07 n 02 penetrability 0 perviousness 0 006 @ 04723816 n 0000 + 01773234 a 0201 ! 04942516 n 0202 + 02524563 a 0101 + 01771462 a 0101 ! 04942516 n 0101 | the quality of being penetrable (by people or light or missiles etc.) -04940964 07 n 01 absorbency 0 005 @ 04940496 n 0000 + 00006336 a 0101 ! 04942738 n 0101 = 00006336 a 0000 = 00007813 a 0000 | the property of being absorbent -04941124 07 n 02 solidity 2 solidness 2 007 @ 04934546 n 0000 + 01151740 a 0202 + 02263680 a 0201 + 01151740 a 0102 ! 04940146 n 0101 ~ 04941325 n 0000 ~ 04941942 n 0000 | the consistency of a solid -04941325 07 n 01 compactness 2 003 @ 04941124 n 0000 + 02387413 a 0101 ~ 04941453 n 0000 | the consistency of a compact solid -04941453 07 n 02 density 0 denseness 0 009 @ 04941325 n 0000 + 01185264 a 0201 + 02416390 a 0101 + 01185264 a 0101 ~ 05089048 n 0000 ~ 05089199 n 0000 ~ 05089367 n 0000 ~ 05089612 n 0000 ~ 05089782 n 0000 | the amount per unit size -04941687 07 n 01 specific_gravity 0 001 @ 05089782 n 0000 | the density of a substance relative to the density of water -04941809 07 n 02 vapor_density 0 vapour_density 0 001 @ 05089782 n 0000 | the density of a gas relative to the density of hydrogen -04941942 07 n 02 impermeability 0 impermeableness 0 006 @ 04941124 n 0000 + 01772609 a 0201 + 01772609 a 0101 ! 04940496 n 0101 ~ 04942172 n 0000 ~ 04942738 n 0000 | the property of something that cannot be pervaded by a liquid -04942172 07 n 03 retentiveness 2 retentivity 0 retention 0 004 @ 04941942 n 0000 + 01772914 a 0201 + 01772914 a 0101 ~ 04942373 n 0000 | the power of retaining liquid; "moisture retentivity of soil" -04942373 07 n 01 urinary_retention 0 001 @ 04942172 n 0000 | holding urine in the urinary bladder; "he has a problem with urinary retention" -04942516 07 n 02 impenetrability 0 imperviousness 0 005 @ 04723816 n 0000 + 01773665 a 0201 ! 04940730 n 0202 + 01771632 a 0101 ! 04940730 n 0101 | the quality of being impenetrable (by people or light or missiles etc.) -04942738 07 n 01 nonabsorbency 0 003 @ 04941942 n 0000 + 00007813 a 0101 ! 04940964 n 0101 | the property of not being absorbent -04942869 07 n 01 disposition 2 007 @ 04916342 n 0000 ~ 04943154 n 0000 ~ 04943367 n 0000 ~ 04943464 n 0000 ~ 04943578 n 0000 ~ 04943704 n 0000 ~ 04944048 n 0000 | a natural or acquired habit or characteristic tendency in a person or thing; "a swelling with a disposition to rupture" -04943154 07 n 02 aptness 1 propensity 0 003 @ 04942869 n 0000 + 01411919 a 0101 + 01292411 a 0101 | a disposition to behave in a certain way; "the aptness of iron to rust"; "the propensity of disease to spread" -04943367 07 n 01 mordacity 0 002 @ 04942869 n 0000 + 02060198 a 0101 | a disposition to biting -04943464 07 n 01 predisposition 0 001 @ 04942869 n 0000 | a disposition in advance to react in a particular way -04943578 07 n 01 proneness 0 002 @ 04942869 n 0000 + 01292884 a 0101 | being disposed to do something; "accident proneness" -04943704 07 n 01 separatism 0 002 @ 04942869 n 0000 + 10580030 n 0101 | a disposition toward schism and secession from a larger group; the principles and practices of separatists; "separatism is a serious problem in Quebec"; "demands for some form of separatism on grounds of religion have been perceived as a threat to mainstream education" -04944048 07 n 02 tendency 0 inclination 0 007 @ 04942869 n 0000 + 02719399 v 0204 ~ 04922597 n 0000 ~ 04944412 n 0000 ~ 04944513 n 0000 ~ 04944710 n 0000 ~ 04945057 n 0000 | a characteristic likelihood of or natural disposition toward a certain condition or character or effect; "the alkaline inclination of the local waters"; "fabric with a tendency to shrink" -04944412 07 n 01 buoyancy 2 001 @ 04944048 n 0000 | the tendency to float in water or other liquid -04944513 07 n 02 electronegativity 0 negativity 2 002 @ 04944048 n 0000 ;c 06084469 n 0000 | (chemistry) the tendency of an atom or radical to attract electrons in the formation of an ionic bond -04944710 07 n 01 stainability 0 004 @ 04944048 n 0000 ;c 06070503 n 0000 + 02802341 a 0101 ~ 04944910 n 0000 | (cytology) the capacity of cells or cell parts to stain specifically with certain dyes -04944910 07 n 01 basophilia 0 002 @ 04944710 n 0000 + 03008659 a 0101 | the tendency of cells to stain with basic dyes; "cytoplasmic basophilia" -04945057 07 n 01 desire 0 006 @ 04944048 n 0000 + 01826378 v 0101 + 01826723 v 0103 + 01825237 v 0101 ~ 04945254 n 0000 ~ 04945530 n 0000 | an inclination to want things; "a man of many desires" -04945254 07 n 04 hunger 0 hungriness 0 thirst 0 thirstiness 0 006 @ 04945057 n 0000 + 00888200 a 0403 + 00888200 a 0303 + 01188485 v 0303 + 00888200 a 0102 + 01188485 v 0102 | strong desire for something (not food or drink); "a thirst for knowledge"; "hunger for affection" -04945530 07 n 01 greed 0 005 @ 04945057 n 0000 + 00029933 a 0105 ~ 04945758 n 0000 ~ 04945942 n 0000 ~ 04946078 n 0000 | excessive desire to acquire or possess more (especially more material wealth) than one needs or deserves -04945758 07 n 04 avarice 0 avariciousness 0 covetousness 0 cupidity 0 004 @ 04945530 n 0000 + 00888765 a 0301 + 00029933 a 0201 + 00029933 a 0101 | extreme greed for material wealth -04945942 07 n 01 possessiveness 0 003 @ 04945530 n 0000 + 00792476 a 0101 + 00030508 a 0101 | excessive desire to possess or dominate -04946078 07 n 01 acquisitiveness 0 006 @ 04945530 n 0000 + 00029343 a 0101 = 00029343 a 0000 = 00031533 a 0000 ~ 04946266 n 0000 ~ 04946400 n 0000 | strong desire to acquire and possess -04946266 07 n 01 bibliomania 0 002 @ 04946078 n 0000 + 02662792 a 0101 | preoccupation with the acquisition and possession of books -04946400 07 n 02 retentiveness 0 retentivity 1 002 @ 04946078 n 0000 + 03110952 a 0101 | the property of retaining possessions that have been acquired -04946553 07 n 02 tactile_property 0 feel 0 007 @ 04916342 n 0000 + 01210352 v 0202 + 02127613 v 0201 + 01209678 v 0201 + 02106006 v 0201 ~ 04946760 n 0000 ~ 04946877 n 0000 | a property perceived by touch -04946760 07 n 01 touch 0 001 @ 04946553 n 0000 | the feel of mechanical action; "this piano has a wonderful touch" -04946877 07 n 01 texture 0 006 @ 04946553 n 0000 = 02230990 a 0000 = 02232251 a 0000 ~ 04947087 n 0000 ~ 04947186 n 0000 ~ 04948241 n 0000 | the feel of a surface or a fabric; "the wall had a smooth texture" -04947087 07 n 01 nap 0 002 @ 04946877 n 0000 + 01030372 a 0105 | a soft or fuzzy surface texture -04947186 07 n 01 smoothness 0 007 @ 04946877 n 0000 + 02236842 a 0101 ! 04948241 n 0101 ~ 04947494 n 0000 ~ 04947628 n 0000 ~ 04948069 n 0000 ~ 04955160 n 0000 | a texture without roughness; smooth to the touch; "admiring the slim smoothness of her thighs"; "some artists prefer the smoothness of a board" -04947494 07 n 02 silkiness 0 sleekness 0 003 @ 04947186 n 0000 + 00282675 a 0104 + 00282675 a 0202 | the smooth feel of silk fabric -04947628 07 n 04 slickness 1 slick 0 slipperiness 0 slip 0 007 @ 04947186 n 0000 + 02234781 a 0402 + 02234781 a 0301 + 00038687 v 0201 + 01245986 v 0201 + 02235520 a 0101 + 00282675 a 0106 | a slippery smoothness; "he could feel the slickness of the tiller" -04947888 07 n 01 soapiness 0 002 @ 04723816 n 0000 + 03026319 a 0102 | the quality of being soap or being covered with soap; "she could smell the soapiness of the doctor's hands" -04948069 07 n 02 fineness 2 powderiness 0 003 @ 04947186 n 0000 + 02233390 a 0202 + 02232251 a 0101 | having a very fine texture; "the fineness of the sand on the beach" -04948241 07 n 02 roughness 0 raggedness 1 013 @ 04946877 n 0000 + 00913131 a 0201 + 02245403 a 0101 + 02238462 a 0101 ! 04947186 n 0101 ~ 04948603 n 0000 ~ 04948722 n 0000 ~ 04948905 n 0000 ~ 04949066 n 0000 ~ 04949256 n 0000 ~ 04949560 n 0000 ~ 04949681 n 0000 ~ 04949799 n 0000 | a texture of a surface or edge that is not smooth but is irregular and uneven -04948603 07 n 01 scaliness 0 003 @ 04948241 n 0000 + 02241247 a 0104 + 00147160 a 0101 | the property of being scaly -04948722 07 n 03 coarseness 1 nubbiness 0 tweediness 0 004 @ 04948241 n 0000 + 02240795 a 0305 + 02240795 a 0202 + 02230990 a 0101 | looseness or roughness in texture (as of cloth) -04948905 07 n 03 slub 0 knot 0 burl 0 002 @ 04948241 n 0000 + 00180495 v 0301 | soft lump or unevenness in a yarn; either an imperfection or created by design -04949066 07 n 03 harshness 3 abrasiveness 0 scratchiness 0 004 @ 04948241 n 0000 + 02239289 a 0302 + 02239289 a 0201 + 02230990 a 0102 | the roughness of a substance that causes abrasions -04949256 07 n 03 coarseness 2 graininess 0 granularity 0 004 @ 04948241 n 0000 + 02231502 a 0304 + 02231502 a 0203 ~ 04949453 n 0000 | the quality of being composed of relatively large particles -04949453 07 n 01 sandiness 0 002 @ 04949256 n 0000 + 00142040 a 0102 | a texture resembling that of sand -04949560 07 n 01 shagginess 0 002 @ 04948241 n 0000 + 02242887 a 0102 | roughness of nap produced by long woolly hairs -04949681 07 n 01 bumpiness 0 002 @ 04948241 n 0000 + 02240006 a 0101 | the texture of a surface that has many bumps -04949799 07 n 04 prickliness 0 bristliness 0 spininess 0 thorniness 0 005 @ 04948241 n 0000 + 00145083 a 040d + 00145083 a 030c + 00145083 a 0206 + 00145083 a 0109 | the quality of being covered with prickly thorns or spines -04950026 07 n 01 optics 0 001 @ 04916342 n 0000 | optical properties; "the optics of a telescope" -04950126 07 n 01 visual_property 0 008 @ 04916342 n 0000 ~ 04950537 n 0000 ~ 04951373 n 0000 ~ 04955633 n 0000 ~ 04956419 n 0000 ~ 04956594 n 0000 ~ 04958634 n 0000 ~ 04974968 n 0000 | an attribute of vision -04950336 07 n 01 sleekness 1 002 @ 04673965 n 0000 + 02427981 a 0101 | the quality of being well-groomed and neatly tailored; "the sleekness of his appearance reminded me of his financial successes" -04950537 07 n 01 texture 1 004 @ 04950126 n 0000 ;c 06156968 n 0000 ~ 04950713 n 0000 ~ 04951186 n 0000 | the characteristic appearance of a surface having a tactile quality -04950713 07 n 01 grain 0 004 @ 04950537 n 0000 + 01363005 v 0101 ~ 04950952 n 0000 ~ 04951071 n 0000 | the direction, texture, or pattern of fibers found in wood or leather or stone or in a woven fabric; "saw the board across the grain" -04950952 07 n 03 wood_grain 0 woodgrain 0 woodiness 1 001 @ 04950713 n 0000 | texture produced by the fibers in wood -04951071 07 n 02 graining 0 woodgraining 0 002 @ 04950713 n 0000 + 01363005 v 0101 | a texture like that of wood -04951186 07 n 04 marbleization 0 marbleisation 0 marbleizing 0 marbleising 0 004 @ 04950537 n 0000 + 00523436 v 0301 + 00523436 v 0202 + 00523436 v 0101 | a texture like that of marble -04951373 07 n 02 light 0 lightness 1 009 @ 04950126 n 0000 + 00269989 a 0201 + 00291873 v 0101 = 00269989 a 0000 = 00273082 a 0000 ~ 04951716 n 0000 ~ 04951875 n 0000 ~ 04952120 n 0000 ~ 04952242 n 0000 | the visual effect of illumination on objects or scenes as created in pictures; "he could paint the lightest light and the darkest dark" -04951716 07 n 06 aura 0 aureole 0 halo 0 nimbus 0 glory 1 gloriole 0 001 @ 04951373 n 0000 | an indication of radiant light drawn around the head of a saint -04951875 07 n 01 sunniness 0 002 @ 04951373 n 0000 ~ 04951978 n 0000 | lightness created by sunlight -04951978 07 n 01 cloudlessness 0 002 @ 04951875 n 0000 + 00460946 a 0101 | the lightness of a sunny day when there are no clouds in the sky -04952120 07 n 02 highlight 0 highlighting 0 002 @ 04951373 n 0000 + 00514069 v 0202 | an area of lightness in a picture -04952242 07 n 01 brightness 0 012 @ 04951373 n 0000 + 00402855 a 0101 + 00278551 a 0101 ! 04955633 n 0101 ~ 04952570 n 0000 ~ 04952821 n 0000 ~ 04952944 n 0000 ~ 04953186 n 0000 ~ 04953296 n 0000 ~ 04953678 n 0000 ~ 04953954 n 0000 ~ 04954920 n 0000 | the location of a visual perception along a continuum from black to white -04952570 07 n 03 glare 0 blaze 0 brilliance 0 004 @ 04952242 n 0000 + 00281173 a 0301 + 02764614 v 0201 + 02162672 v 0101 | a light within the field of vision that is brighter than the brightness to which the eyes are adapted; "a glare of sunlight" -04952821 07 n 01 dazzle 0 002 @ 04952242 n 0000 + 02162434 v 0101 | brightness enough to blind partially and temporarily -04952944 07 n 05 glitter 0 glister 0 glisten 0 scintillation 0 sparkle 0 006 @ 04952242 n 0000 + 02766390 v 0501 + 02766390 v 0402 + 02162947 v 0302 + 00279618 a 0107 + 02162947 v 0101 | the quality of shining with a bright reflected light -04953186 07 n 01 flash 0 003 @ 04952242 n 0000 + 00424869 v 0101 + 02159890 v 0101 | a momentary brightness -04953296 07 n 01 glint 0 001 @ 04952242 n 0000 | a spatially localized brightness -04953380 07 n 04 sparkle 1 twinkle 0 spark 0 light 2 005 @ 04633453 n 0000 @ 04679738 n 0000 + 00363031 a 0203 + 00805810 a 0105 + 00473003 v 0101 | merriment expressed by a brightness or gleam or animation of countenance; "he had a sparkle in his eye"; "there's a perpetual twinkle in his eyes" -04953678 07 n 02 opalescence 0 iridescence 0 007 @ 04952242 n 0000 + 00403072 a 0203 + 00282020 a 0201 + 02733928 v 0201 + 00282020 a 0103 + 02765231 v 0101 + 02734140 v 0101 | the visual property of something having a milky brightness and a play of colors from the surface -04953954 07 n 06 radiance 0 radiancy 0 shine 0 effulgence 0 refulgence 0 refulgency 0 017 @ 04952242 n 0000 + 00280463 a 0605 + 00280463 a 0505 + 00280463 a 0403 + 01812237 a 0305 + 01119421 a 0302 + 02763283 v 0301 + 02763740 v 0301 + 02765924 v 0302 + 00280463 a 0204 + 02767116 v 0201 + 00280463 a 0104 + 02767116 v 0101 + 02160552 v 0101 ~ 04954534 n 0000 ~ 04954683 n 0000 ~ 04955160 n 0000 | the quality of being bright and sending out rays of light -04954412 07 n 01 radio_brightness 0 001 @ 05099796 n 0000 | the strength of a radio wave picked up by a radio telescope -04954534 07 n 04 gleam 0 gleaming 0 glow 1 lambency 0 003 @ 04953954 n 0000 + 00279332 a 0402 + 02161530 v 0301 | an appearance of reflected light -04954683 07 n 04 shininess 0 sheen 0 luster 2 lustre 2 006 @ 04953954 n 0000 + 00281657 a 0403 + 00281657 a 0204 + 01812237 a 0105 + 00281657 a 0105 + 01119421 a 0102 | the visual property of something that shines with reflected light -04954920 07 n 05 luster 1 lustre 1 brilliancy 0 splendor 0 splendour 0 007 @ 04952242 n 0000 + 02342608 a 0301 + 02009688 a 0302 + 01335156 a 0302 + 01285376 a 0301 + 00402855 a 0302 + 00281173 a 0301 | a quality that outshines the usual -04955160 07 n 04 polish 0 gloss 0 glossiness 0 burnish 0 009 @ 04953954 n 0000 @ 04947186 n 0000 + 01246095 v 0402 + 01120010 a 0301 + 00281657 a 0302 + 01682582 v 0201 + 01245637 v 0101 ~ 04955426 n 0000 ~ 04955554 n 0000 | the property of being smooth and shiny -04955426 07 n 01 French_polish 0 001 @ 04955160 n 0000 | the glaze produced by repeated applications of French polish shellac -04955554 07 n 01 glaze 1 001 @ 04955160 n 0000 | a glossy finish on a fabric -04955633 07 n 01 dullness 3 007 @ 04950126 n 0000 + 00393992 a 0101 + 00462249 a 0101 + 00283703 a 0101 ! 04952242 n 0101 ~ 04955907 n 0000 ~ 04956110 n 0000 | a lack of visual brightness; "the brightness of the orange sky was reflected in the dullness of the orange sea" -04955907 07 n 02 dimness 1 subduedness 0 004 @ 04955633 n 0000 + 01455540 a 0203 + 00275290 a 0202 + 00275290 a 0101 | the property of lights or sounds that lack brilliance or are reduced in intensity -04956110 07 n 06 flatness 2 lusterlessness 0 lustrelessness 0 mat 0 matt 0 matte 0 008 @ 04955633 n 0000 + 00283972 a 0604 + 00283972 a 0503 + 00565592 v 0407 + 00284194 a 0304 + 00284194 a 0203 + 00283972 a 0101 + 01021794 a 0101 | the property of having little or no contrast; lacking highlights or gloss -04956419 07 n 01 softness 6 002 @ 04950126 n 0000 + 00284400 a 0101 | a visual property that is subdued and free from brilliance or glare; "the softness of the morning sky" -04956594 07 n 04 color 0 colour 0 coloring 0 colouring 0 020 @ 04950126 n 0000 + 00283911 v 0406 + 00283911 v 0301 + 09938672 n 0101 + 01696648 v 0101 + 00281101 v 0104 + 00283911 v 0101 + 00283911 v 0102 ! 04958634 n 0101 = 00394562 a 0000 = 00401650 a 0000 ~ 04957176 n 0000 ~ 04958146 n 0000 ~ 04958865 n 0000 ~ 04959230 n 0000 ~ 04959672 n 0000 ~ 04960079 n 0000 ~ 04975988 n 0000 ~ 04976952 n 0000 ~ 04978561 n 0000 | a visual attribute of things that results from the light they emit or transmit or reflect; "a white color is made up of many different wavelengths of light" -04957176 07 n 02 primary_color 0 primary_colour 0 003 @ 04956594 n 0000 ~ 04957356 n 0000 ~ 04957589 n 0000 | any of three colors from which all others can be obtained by mixing -04957356 07 n 02 primary_color_for_pigments 0 primary_colour_for_pigments 0 001 @ 04957176 n 0000 | any of three pigments from which all colors can be obtained by mixing; "the primary colors for pigments are red, blue, and yellow" -04957589 07 n 02 primary_color_for_light 0 primary_colour_for_light 0 002 @ 04957176 n 0000 ~ 04957854 n 0000 | any of three primary colors of light from which all colors can be obtained by additive mixing; "the primary colors for light are red, blue, and green" -04957854 07 n 02 primary_subtractive_color_for_light 0 primary_subtractive_colour_for_light 0 001 @ 04957589 n 0000 | any of the three colors that give the primary colors for light after subtraction from white light; "the primary subtractive colors for light are magenta, cyan, and yellow" -04958146 07 n 02 heather_mixture 0 heather 0 001 @ 04956594 n 0000 | interwoven yarns of mixed colors producing muted greyish shades with flecks of color -04958302 07 n 01 mellowness 1 002 @ 04959230 n 0000 + 01156302 a 0101 | a soft shade of a color; "a mellowness of light and shade not attainable in marble" -04958460 07 n 01 richness 0 002 @ 04959230 n 0000 + 00403385 a 0102 | a strong deep vividness of hue; "the fire-light gave a richness of coloring to that side of the room" -04958634 07 n 04 colorlessness 0 colourlessness 0 achromatism 0 achromaticity 0 005 @ 04950126 n 0000 + 00404202 a 0202 + 00404202 a 0101 ! 04956594 n 0101 ~ 04959061 n 0000 | the visual property of being without chromatic color -04958865 07 n 01 mottle 0 001 @ 04956594 n 0000 | an irregular arrangement of patches of color; "it was not dull grey as distance had suggested, but a mottle of khaki and black and olive-green" -04959061 07 n 01 achromia 0 002 @ 04958634 n 0000 ;c 06043075 n 0000 | an absence of normal pigmentation especially in the skin (as in albinism) or in red blood cells -04959230 07 n 04 shade 0 tint 0 tincture 0 tone 0 008 @ 04956594 n 0000 + 00289974 v 0401 + 00290132 v 0401 + 00287560 v 0301 + 00286928 v 0201 ~ 04958302 n 0000 ~ 04958460 n 0000 ~ 04959567 n 0000 | a quality of a given color that differs slightly from another color; "after several trials he mixed the shade of pink that she wanted" -04959567 07 n 02 undertone 0 tinge 0 002 @ 04959230 n 0000 + 00286928 v 0203 | a pale or subdued color -04959672 07 n 04 chromatic_color 0 chromatic_colour 0 spectral_color 0 spectral_colour 0 016 @ 04956594 n 0000 ! 04960079 n 0101 ~ 04962784 n 0000 ~ 04965179 n 0000 ~ 04965371 n 0000 ~ 04965661 n 0000 ~ 04966017 n 0000 ~ 04967191 n 0000 ~ 04968895 n 0000 ~ 04970059 n 0000 ~ 04970916 n 0000 ~ 04971928 n 0000 ~ 04974340 n 0000 ~ 04974575 n 0000 %s 04975340 n 0000 ~ 04975739 n 0000 | a color that has hue -04960079 07 n 02 achromatic_color 0 achromatic_colour 0 005 @ 04956594 n 0000 ! 04959672 n 0101 ~ 04960277 n 0000 ~ 04960729 n 0000 ~ 04961691 n 0000 | a color lacking hue; white or grey or black -04960277 07 n 03 black 0 blackness 0 inkiness 0 008 @ 04960079 n 0000 + 00390195 a 0302 + 00756897 a 0201 + 00421002 a 0201 + 00392812 a 0201 + 00280532 v 0105 ! 04960729 n 0101 ~ 04960582 n 0000 | the quality or state of the achromatic color of least lightness (bearing the least resemblance to white) -04960582 07 n 06 coal_black 0 ebony 0 jet_black 0 pitch_black 0 sable 0 soot_black 0 002 @ 04960277 n 0000 + 00286333 v 0201 | a very dark black -04960729 07 n 02 white 0 whiteness 0 010 @ 04960079 n 0000 + 00393105 a 0201 + 00393105 a 0101 + 00280301 v 0102 ! 04960277 n 0101 ~ 04961062 n 0000 ~ 04961136 n 0000 ~ 04961331 n 0000 ~ 04961472 n 0000 ~ 04961583 n 0000 | the quality or state of the achromatic color of greatest lightness (bearing the least resemblance to black) -04961062 07 n 01 alabaster 0 001 @ 04960729 n 0000 | a very light white -04961136 07 n 01 bleach 0 002 @ 04960729 n 0000 + 00279822 v 0101 | the whiteness that results from removing the color from something; "a complete bleach usually requires several applications" -04961331 07 n 04 bone 0 ivory 0 pearl 0 off-white 0 002 @ 04960729 n 0000 + 00390943 a 0301 | a shade of white the color of bleached bones -04961472 07 n 01 chalk 0 002 @ 04960729 n 0000 + 00388571 a 0101 | a pure flat white with little reflectance -04961583 07 n 02 frostiness 2 hoariness 2 002 @ 04960729 n 0000 + 01645678 a 0209 | a silvery-white color -04961691 07 n 04 gray 0 grayness 0 grey 0 greyness 0 014 @ 04960079 n 0000 + 00389310 a 0401 + 00289392 v 0301 + 00289679 v 0301 + 00389310 a 0202 + 00389310 a 0102 + 00289679 v 0102 + 00289392 v 0102 ~ 04962062 n 0000 ~ 04962240 n 0000 ~ 04962395 n 0000 ~ 04962548 n 0000 ~ 04962689 n 0000 ~ 14923060 n 0000 | a neutral achromatic color midway between white and black -04962062 07 n 05 ash_grey 0 ash_gray 0 silver 0 silver_grey 0 silver_gray 0 004 @ 04961691 n 0000 + 00387392 a 0303 + 00282652 v 0301 + 00289532 v 0301 | a light shade of grey -04962240 07 n 05 charcoal 0 charcoal_grey 0 charcoal_gray 0 oxford_grey 0 oxford_gray 0 002 @ 04961691 n 0000 + 00388725 a 0101 | a very dark grey color -04962395 07 n 04 dapple-grey 0 dapple-gray 0 dappled-grey 0 dappled-gray 0 001 @ 04961691 n 0000 | grey with a mottled pattern of darker grey markings -04962548 07 n 02 iron-grey 0 iron-gray 0 003 @ 04961691 n 0000 + 00390332 a 0202 + 00390332 a 0101 | the color of freshly broken cast iron -04962689 07 n 02 tattletale_grey 0 tattletale_gray 0 001 @ 04961691 n 0000 | a greyish white -04962784 07 n 02 red 0 redness 0 012 @ 04959672 n 0000 + 00381097 a 0201 + 00381097 a 0101 ~ 04963111 n 0000 ~ 04963201 n 0000 ~ 04963307 n 0000 ~ 04963449 n 0000 ~ 04963588 n 0000 ~ 04963740 n 0000 ~ 04964287 n 0000 ~ 04964443 n 0000 ~ 04964977 n 0000 | red color or pigment; the chromatic color resembling the hue of blood -04963111 07 n 01 sanguine 0 002 @ 04962784 n 0000 + 00249104 a 0103 | a blood-red color -04963201 07 n 01 chrome_red 0 001 @ 04962784 n 0000 | a red pigment used in paints; basic lead chromate -04963307 07 n 02 Turkey_red 0 alizarine_red 0 001 @ 04962784 n 0000 | a bright orange-red color produced in cotton cloth with alizarine dye -04963449 07 n 02 cardinal 0 carmine 0 003 @ 04962784 n 0000 + 00381097 a 0205 + 00535256 v 0201 | a variable color averaging a vivid red -04963588 07 n 03 crimson 0 ruby 0 deep_red 0 004 @ 04962784 n 0000 + 00535360 v 0201 + 00381097 a 0109 + 00103317 v 0102 | a deep and vivid red color -04963740 07 n 01 dark_red 0 005 @ 04962784 n 0000 ~ 04963905 n 0000 ~ 04964001 n 0000 ~ 04964079 n 0000 ~ 04964162 n 0000 | a red color that reflects little light -04963905 07 n 01 burgundy 0 001 @ 04963740 n 0000 | a dark purplish-red to blackish-red color -04964001 07 n 01 claret 0 001 @ 04963740 n 0000 | a dark purplish-red color -04964079 07 n 01 oxblood_red 0 001 @ 04963740 n 0000 | a dark brownish-red color -04964162 07 n 03 wine 0 wine-colored 0 wine-coloured 0 002 @ 04963740 n 0000 + 00385338 a 0101 | a red as dark as red wine -04964287 07 n 02 purplish_red 0 purplish-red 0 004 @ 04962784 n 0000 ~ 04964586 n 0000 ~ 04964799 n 0000 ~ 04964878 n 0000 | a red with a tinge of purple -04964443 07 n 03 cerise 0 cherry 0 cherry_red 0 003 @ 04962784 n 0000 + 00381097 a 0207 + 00381097 a 0106 | a red the color of ripe cherries -04964586 07 n 01 magenta 0 002 @ 04964287 n 0000 + 00377524 a 0101 | a primary subtractive color for light; a dark purple-red color; the dye for magenta was discovered in 1859, the year of the battle of Magenta -04964799 07 n 01 fuschia 0 001 @ 04964287 n 0000 | a dark purplish-red color -04964878 07 n 01 maroon 0 001 @ 04964287 n 0000 | a dark purplish-red to dark brownish-red color -04964977 07 n 03 scarlet 0 vermilion 0 orange_red 0 004 @ 04962784 n 0000 + 00385188 a 0201 + 00535148 v 0201 + 00381097 a 010c | a variable color that is vivid red but sometimes with an orange tinge -04965179 07 n 02 orange 0 orangeness 0 004 @ 04959672 n 0000 + 00378892 a 0201 + 00378892 a 0101 ~ 04965451 n 0000 | orange color or pigment; any of a range of colors between red and yellow -04965371 07 n 01 salmon 0 001 @ 04959672 n 0000 | a pale pinkish orange color -04965451 07 n 01 reddish_orange 0 002 @ 04965179 n 0000 ~ 04965574 n 0000 | an orange color closer to red than to yellow -04965574 07 n 01 tangerine 0 001 @ 04965451 n 0000 | a reddish to vivid orange color -04965661 07 n 02 yellow 0 yellowness 0 012 @ 04959672 n 0000 + 00385756 a 0201 + 00385756 a 0101 + 00289840 v 0101 ~ 04966114 n 0000 ~ 04966240 n 0000 ~ 04966428 n 0000 ~ 04966543 n 0000 ~ 04966649 n 0000 ~ 04966717 n 0000 ~ 04966941 n 0000 ~ 04967094 n 0000 | yellow color or pigment; the chromatic color resembling the hue of sunflowers or ripe lemons -04966017 07 n 02 blond 0 blonde 0 001 @ 04959672 n 0000 | a light grayish yellow to near white -04966114 07 n 02 canary_yellow 0 canary 0 002 @ 04965661 n 0000 + 00372653 a 0201 | a moderate yellow with a greenish tinge -04966240 07 n 02 amber 0 gold 0 003 @ 04965661 n 0000 + 00369941 a 0204 + 00369504 a 0101 | a deep yellow color; "an amber light illuminated the room"; "he admired the gold of her hair" -04966428 07 n 01 brownish_yellow 0 001 @ 04965661 n 0000 | a yellow color of low lightness with a brownish tinge -04966543 07 n 04 gamboge 0 lemon 0 lemon_yellow 0 maize 0 001 @ 04965661 n 0000 | a strong yellow color -04966649 07 n 01 old_gold 0 001 @ 04965661 n 0000 | a dark yellow -04966717 07 n 02 orange_yellow 0 saffron 0 002 @ 04965661 n 0000 ~ 04966841 n 0000 | a shade of yellow tinged with orange -04966841 07 n 02 ocher 0 ochre 0 001 @ 04966717 n 0000 | a moderate yellow-orange to orange color -04966941 07 n 03 pale_yellow 0 straw 0 wheat 0 002 @ 04965661 n 0000 + 00384292 a 0201 | a variable yellow tint; dull yellow, often diluted with white -04967094 07 n 01 greenish_yellow 0 001 @ 04965661 n 0000 | a shade of yellow tinged with green -04967191 07 n 03 green 0 greenness 0 viridity 0 014 @ 04959672 n 0000 + 00375969 a 0201 + 00375969 a 0101 + 00521478 v 0101 ~ 04967561 n 0000 ~ 04967674 n 0000 ~ 04967801 n 0000 ~ 04967882 n 0000 ~ 04967974 n 0000 ~ 04968056 n 0000 ~ 04968139 n 0000 ~ 04968257 n 0000 ~ 04968426 n 0000 ~ 04968749 n 0000 | green color or pigment; resembling the color of growing grass -04967561 07 n 01 greenishness 0 002 @ 04967191 n 0000 + 00375969 a 0102 | the property of being somewhat green -04967674 07 n 01 sea_green 0 001 @ 04967191 n 0000 | the property of a moderate green color resembling the waters of the sea -04967801 07 n 01 sage_green 0 001 @ 04967191 n 0000 | the color of sage leaves -04967882 07 n 01 bottle_green 0 001 @ 04967191 n 0000 | dark to moderate or greyish green -04967974 07 n 01 chrome_green 0 001 @ 04967191 n 0000 | a brilliant green color -04968056 07 n 01 emerald 0 001 @ 04967191 n 0000 | the green color of an emerald -04968139 07 n 02 olive_green 0 olive-green 0 001 @ 04967191 n 0000 | a color that is lighter and greener than olive -04968257 07 n 05 yellow_green 0 yellowish_green 0 chartreuse 0 Paris_green 0 pea_green 0 002 @ 04967191 n 0000 + 00373067 a 0301 | a shade of green tinged with yellow -04968426 07 n 03 bluish_green 0 blue_green 0 teal 0 003 @ 04967191 n 0000 + 00371163 a 0304 ~ 04968619 n 0000 | a blue-green color or pigment; "they painted it a light shade of bluish green" -04968619 07 n 01 cyan 0 002 @ 04968426 n 0000 + 00371163 a 0103 | a primary subtractive color for light; has a blue-green color -04968749 07 n 02 jade_green 0 jade 0 002 @ 04967191 n 0000 + 00376645 a 0201 | a light green color varying from bluish green to yellowish green -04968895 07 n 02 blue 0 blueness 0 011 @ 04959672 n 0000 + 00370869 a 0201 + 00521641 v 0101 ~ 04969242 n 0000 ~ 04969431 n 0000 ~ 04969540 n 0000 ~ 04969617 n 0000 ~ 04969703 n 0000 ~ 04969798 n 0000 ~ 04969952 n 0000 ~ 04974859 n 0000 | blue color or pigment; resembling the color of the clear sky in the daytime; "he had eyes of bright blue" -04969242 07 n 05 azure 0 cerulean 0 sapphire 0 lazuline 0 sky-blue 0 005 @ 04968895 n 0000 + 00383291 a 0301 + 00370267 a 0202 + 00370267 a 0101 + 00284958 v 0101 | a light shade of blue -04969431 07 n 01 powder_blue 0 002 @ 04968895 n 0000 + 00380178 a 0101 | a pale blue color with grey in it -04969540 07 n 01 steel_blue 0 001 @ 04968895 n 0000 | a greyish blue color -04969617 07 n 01 Prussian_blue 0 001 @ 04968895 n 0000 | a dark greenish-blue color -04969703 07 n 03 dark_blue 0 navy 0 navy_blue 0 001 @ 04968895 n 0000 | a dark shade of blue -04969798 07 n 06 greenish_blue 0 aqua 0 aquamarine 0 turquoise 0 cobalt_blue 0 peacock_blue 0 001 @ 04968895 n 0000 | a shade of blue tinged with green -04969952 07 n 02 purplish_blue 0 royal_blue 0 001 @ 04968895 n 0000 | a shade of blue tinged with purple -04970059 07 n 02 purple 0 purpleness 0 010 @ 04959672 n 0000 + 00380312 a 0201 + 00380312 a 0101 + 00285088 v 0101 + 00289297 v 0101 + 00285088 v 0103 ~ 04970470 n 0000 ~ 04970544 n 0000 ~ 04970631 n 0000 ~ 04970758 n 0000 | a purple color or pigment -04970312 07 n 01 Tyrian_purple 0 001 @ 04970631 n 0000 | a vivid purplish-red color -04970398 07 n 01 indigo 0 001 @ 04970758 n 0000 | a blue-violet color -04970470 07 n 01 lavender 0 001 @ 04970059 n 0000 | a pale purple color -04970544 07 n 01 mauve 0 002 @ 04970059 n 0000 + 00377890 a 0101 | a moderate purple -04970631 07 n 02 reddish_purple 0 royal_purple 0 002 @ 04970059 n 0000 ~ 04970312 n 0000 | a shade of purple tinged with red -04970758 07 n 02 violet 0 reddish_blue 0 003 @ 04970059 n 0000 + 00380312 a 0102 ~ 04970398 n 0000 | a variable color that lies beyond blue in the spectrum -04970916 07 n 01 pink 0 009 @ 04959672 n 0000 + 00379595 a 0101 + 00285414 v 0101 ~ 04971131 n 0000 ~ 04971211 n 0000 ~ 04971313 n 0000 ~ 04971522 n 0000 ~ 04971675 n 0000 ~ 04971820 n 0000 | a light shade of red -04971131 07 n 01 pinkness 0 001 @ 04970916 n 0000 | the quality of being pink -04971211 07 n 01 carnation 0 002 @ 04970916 n 0000 + 00372960 a 0101 | a pink or reddish-pink color -04971313 07 n 02 rose 0 rosiness 1 004 @ 04970916 n 0000 + 00371611 a 0202 + 00371611 a 0102 ~ 04971447 n 0000 | a dusty pink color -04971447 07 n 01 old_rose 0 001 @ 04971313 n 0000 | a greyish-pink color -04971522 07 n 02 solferino 0 purplish_pink 0 001 @ 04970916 n 0000 | a pink dye that was discovered in 1859, the year a battle was fought at Solferino -04971675 07 n 04 yellowish_pink 0 apricot 0 peach 0 salmon_pink 0 002 @ 04970916 n 0000 + 00379267 a 0301 | a shade of pink tinged with yellow -04971820 07 n 01 coral 0 002 @ 04970916 n 0000 + 00373621 a 0101 | a variable color averaging a deep pink -04971928 07 n 02 brown 0 brownness 0 014 @ 04959672 n 0000 + 00372111 a 0201 + 00320246 v 0101 ~ 04972268 n 0000 ~ 04972350 n 0000 ~ 04972451 n 0000 ~ 04972603 n 0000 ~ 04972801 n 0000 ~ 04972950 n 0000 ~ 04973386 n 0000 ~ 04973957 n 0000 ~ 04974145 n 0000 ~ 04974248 n 0000 ~ 04974774 n 0000 | an orange of low brightness and saturation -04972268 07 n 01 Vandyke_brown 0 001 @ 04971928 n 0000 | a moderate brown color -04972350 07 n 01 chestnut 0 002 @ 04971928 n 0000 + 00373209 a 0101 | the brown color of chestnuts -04972451 07 n 05 chocolate 0 coffee 0 deep_brown 0 umber 0 burnt_umber 0 002 @ 04971928 n 0000 + 00385059 a 0401 | a medium brown to dark-brown color -04972603 07 n 01 hazel 0 002 @ 04971928 n 0000 + 00376342 a 0101 | a shade of brown that is yellowish or reddish; it is a greenish shade of brown when used to describe the color of someone's eyes -04972801 07 n 01 light_brown 0 004 @ 04971928 n 0000 ~ 04973020 n 0000 ~ 04973110 n 0000 ~ 04973291 n 0000 | a brown that is light but unsaturated -04972950 07 n 01 mocha 0 001 @ 04971928 n 0000 | a dark brown color -04973020 07 n 02 tan 0 topaz 0 001 @ 04972801 n 0000 | a light brown the color of topaz -04973110 07 n 04 dun 0 greyish_brown 0 grayish_brown 0 fawn 0 002 @ 04972801 n 0000 + 00312165 v 0101 | a color or pigment varying around a light grey-brown color; "she wore dun" -04973291 07 n 02 beige 0 ecru 0 002 @ 04972801 n 0000 + 00370501 a 0101 | a very light brown -04973386 07 n 05 reddish_brown 0 sepia 0 burnt_sienna 0 Venetian_red 0 mahogany 0 004 @ 04971928 n 0000 ~ 04973585 n 0000 ~ 04973669 n 0000 ~ 04973816 n 0000 | a shade of brown with a tinge of red -04973585 07 n 01 brick_red 0 001 @ 04973386 n 0000 | a bright reddish-brown color -04973669 07 n 02 copper 0 copper_color 0 002 @ 04973386 n 0000 + 00373493 a 0101 | a reddish-brown color resembling the color of polished copper -04973816 07 n 01 Indian_red 0 001 @ 04973386 n 0000 | a reddish-brown color resembling the red soil used as body paint by American Indians -04973957 07 n 05 yellowish_brown 0 raw_sienna 0 buff 0 caramel 0 caramel_brown 0 004 @ 04971928 n 0000 + 00372799 a 0502 + 00372799 a 0401 ~ 04974681 n 0000 | a medium to dark tan color -04974145 07 n 01 puce 0 001 @ 04971928 n 0000 | a color varying from dark purplish brown to dark red -04974248 07 n 01 olive_brown 0 001 @ 04971928 n 0000 | a shade of brown tinged with green -04974340 07 n 01 olive 0 002 @ 04959672 n 0000 ~ 04974463 n 0000 | a yellow-green color of low brightness and saturation -04974463 07 n 02 olive_drab 0 drab 0 001 @ 04974340 n 0000 | a dull greyish to yellowish or light olive brown -04974575 07 n 01 pastel 0 002 @ 04959672 n 0000 + 00409207 a 0101 | any of various pale or light colors -04974681 07 n 02 snuff-color 0 snuff-colour 0 001 @ 04973957 n 0000 | dark yellowish brown -04974774 07 n 01 taupe 0 002 @ 04971928 n 0000 + 00375090 a 0102 | a greyish brown -04974859 07 n 01 ultramarine 0 002 @ 04968895 n 0000 + 00384936 a 0101 | a vivid blue to purple-blue color -04974968 07 n 01 color_property 0 005 @ 04950126 n 0000 ~ 04975122 n 0000 ~ 04975340 n 0000 ~ 04975612 n 0000 ~ 04979425 n 0000 | an attribute of color -04975122 07 n 02 hue 0 chromaticity 0 006 @ 04974968 n 0000 + 00366691 a 0201 + 00288017 v 0101 + 00287735 v 0102 = 00366691 a 0000 = 00386392 a 0000 | the quality of a color as determined by its dominant wavelength -04975340 07 n 04 saturation 0 chroma 0 intensity 1 vividness 0 007 @ 04974968 n 0000 #s 04959672 n 0000 + 00393683 a 0402 + 00402855 a 0403 + 00393683 a 0301 + 00574735 v 0301 + 00366691 a 0201 | chromatic purity: freedom from dilution with white and hence vivid in hue -04975612 07 n 02 paleness 0 pallidity 0 003 @ 04974968 n 0000 + 02325984 a 0101 + 00408992 a 0101 | being deficient in color -04975739 07 n 02 complementary_color 0 complementary 0 001 @ 04959672 n 0000 | either one of two chromatic colors that when mixed together give white (in the case of lights) or grey (in the case of pigments); "yellow and blue are complementaries" -04975988 07 n 02 coloration 0 colouration 0 005 @ 04956594 n 0000 ~ 04976188 n 0000 ~ 04976319 n 0000 ~ 04976687 n 0000 ~ 04978792 n 0000 | appearance with regard to color; "her healthy coloration" -04976188 07 n 01 hair_coloring 0 001 @ 04975988 n 0000 | coloring of the hair; "her hair-coloring was unusual: a very pale gold" -04976319 07 n 01 pigmentation 0 005 @ 04975988 n 0000 + 00287392 v 0101 ! 04976687 n 0101 ~ 04976489 n 0000 ~ 04976567 n 0000 | coloration of living tissues by pigment -04976489 07 n 01 chromatism 0 001 @ 04976319 n 0000 | abnormal pigmentation -04976567 07 n 01 melanoderma 0 001 @ 04976319 n 0000 | abnormally dark skin caused by increased deposits of melatonin -04976687 07 n 01 depigmentation 0 003 @ 04975988 n 0000 ! 04976319 n 0101 ~ 04976870 n 0000 | absence or loss of pigmentation (or less than normal pigmentation) in the skin or hair -04976870 07 n 01 poliosis 0 001 @ 04976687 n 0000 | loss of color from the hair -04976952 07 n 03 complexion 0 skin_color 0 skin_colour 0 011 @ 04956594 n 0000 + 00287848 v 0101 = 00243606 a 0000 = 00244503 a 0000 ~ 04977247 n 0000 ~ 04977412 n 0000 ~ 04977561 n 0000 ~ 04977946 n 0000 ~ 04978050 n 0000 ~ 04978216 n 0000 ~ 04978371 n 0000 | the coloring of a person's face -04977247 07 n 03 paleness 1 blondness 0 fairness 1 003 @ 04976952 n 0000 + 00244054 a 0301 + 00243606 a 0201 | the property of having a naturally light complexion -04977412 07 n 02 ruddiness 0 rosiness 0 004 @ 04976952 n 0000 + 01170823 a 0203 + 01172139 a 0102 + 00381097 a 0103 | a healthy reddish complexion -04977561 07 n 08 lividness 0 lividity 0 luridness 2 paleness 2 pallidness 0 pallor 0 wanness 0 achromasia 0 010 @ 04976952 n 0000 + 00405879 a 0703 + 00103619 v 0601 + 00405879 a 0502 + 00405879 a 0401 + 00405750 a 0301 + 00282389 a 0301 + 00404568 a 0204 + 01318330 a 0102 + 00404568 a 0104 | unnatural lack of color in the skin (as from bruising or sickness or emotional distress) -04977946 07 n 01 sallowness 0 002 @ 04976952 n 0000 + 01178134 a 0101 | a sickly yellowish skin color -04978050 07 n 01 tawniness 0 002 @ 04976952 n 0000 + 00384782 a 0101 | the quality or state of being the color of tanned leather; "the tawniness of his complexion" -04978216 07 n 03 darkness 1 duskiness 0 swarthiness 0 004 @ 04976952 n 0000 + 00245458 a 0304 + 00245458 a 0202 + 00242575 a 0103 | a swarthy complexion -04978371 07 n 01 whiteness 1 001 @ 04976952 n 0000 | lightness or fairness of complexion; "only the whiteness of her cheeks gave any indication of the stress from which she was suffering" -04978561 07 n 04 nonsolid_color 0 nonsolid_colour 0 dithered_color 0 dithered_colour 0 002 @ 04956594 n 0000 ;c 06128570 n 0000 | a color produced by a pattern of differently colored dots that together simulate the desired color -04978792 07 n 01 protective_coloration 0 005 @ 04975988 n 0000 ;c 06083243 n 0000 ~ 04979002 n 0000 ~ 04979203 n 0000 ~ 04979307 n 0000 | coloration making an organism less visible or attractive to predators -04979002 07 n 02 aposematic_coloration 0 warning_coloration 0 001 @ 04978792 n 0000 | conspicuous coloration or markings of an animal serving to warn off predators; "a skunk's aposematic coloration" -04979203 07 n 01 apatetic_coloration 0 001 @ 04978792 n 0000 | coloring serving as natural camouflage -04979307 07 n 01 cryptic_coloration 0 001 @ 04978792 n 0000 | coloring that conceals or disguises an animal's shape -04979425 07 n 01 value 1 007 @ 04974968 n 0000 = 00392812 a 0000 = 00393105 a 0000 = 00408660 a 0000 = 00409440 a 0000 ~ 04979758 n 0000 ~ 04979870 n 0000 | relative darkness or lightness of a color; "I establish the colors and principal values by organizing the painting into three values--dark, medium...and light"-Joe Hing Lowe -04979758 07 n 01 lightness 3 003 @ 04979425 n 0000 + 00408660 a 0101 ! 04979870 n 0101 | having a light color -04979870 07 n 01 darkness 3 004 @ 04979425 n 0000 + 00245200 a 0101 + 00409440 a 0101 ! 04979758 n 0101 | having a dark or somber color -04980008 07 n 06 olfactory_property 0 smell 0 aroma 0 odor 0 odour 0 scent 0 018 @ 04916342 n 0000 + 02125223 v 0601 + 02125641 v 0603 + 02125641 v 0502 + 01055073 a 0401 + 02125641 v 0401 + 02641378 a 0301 + 02126382 v 0302 + 02126382 v 0303 + 01053634 a 0207 + 02123672 v 0201 + 02124748 v 0201 = 01055073 a 0000 = 01057775 a 0000 ~ 04980463 n 0000 ~ 04980656 n 0000 ~ 04981044 n 0000 ~ 04992431 n 0000 | any property detected by the olfactory system -04980463 07 n 05 bouquet 0 fragrance 0 fragrancy 0 redolence 0 sweetness 1 004 @ 04980008 n 0000 + 01052611 a 0505 + 01052428 a 0402 + 01052248 a 0201 | a pleasingly sweet olfactory property -04980656 07 n 05 malodorousness 0 stinkiness 0 foulness 0 rankness 0 fetidness 0 007 @ 04980008 n 0000 + 01053634 a 0501 + 01627049 a 0401 + 01053634 a 0303 + 01053144 a 0205 + 01053144 a 0101 ~ 04980920 n 0000 | the attribute of having a strong offensive smell -04980920 07 n 03 body_odor 0 body_odour 0 B.O. 0 001 @ 04980656 n 0000 | malodorousness resulting from a failure to bathe -04981044 07 n 01 muskiness 0 001 @ 04980008 n 0000 | having the olfactory properties of musk -04981139 07 n 01 sound 0 010 @ 04983122 n 0000 + 02179518 v 0101 + 02180529 v 0101 + 02135048 v 0101 + 02176268 v 0101 ! 04982207 n 0101 ~ 04981474 n 0000 ~ 04981658 n 0000 ~ 04981781 n 0000 ~ 04981941 n 0000 | the particular auditory effect produced by a given cause; "the sound of rain on the roof"; "the beautiful sound of music" -04981474 07 n 02 noisiness 0 racketiness 0 004 @ 04981139 n 0000 + 01921466 a 0201 + 01919931 a 0101 ~ 04985064 n 0000 | the auditory effect characterized by loud and constant noise -04981658 07 n 01 ring 0 002 @ 04981139 n 0000 + 02183787 v 0103 | a characteristic sound; "it has the ring of sincerity" -04981781 07 n 01 unison 1 002 @ 04981139 n 0000 ;c 07020895 n 0000 | (music) two or more sounds or tones at the same pitch or in octaves; "singing in unison" -04981941 07 n 01 voice 0 002 @ 04981139 n 0000 ~ 04982113 n 0000 | the distinctive quality or pitch or condition of a person's speech; "A shrill voice sounded behind us" -04982113 07 n 01 androglossia 0 001 @ 04981941 n 0000 | a woman's voice with male qualities -04982207 07 n 02 silence 0 quiet 2 008 @ 04983122 n 0000 + 02190188 v 0203 + 01919428 a 0101 + 00461493 v 0103 ! 04981139 n 0101 ~ 04982478 n 0000 ~ 04982745 n 0000 ~ 04982856 n 0000 | the absence of sound; "he needed silence in order to sleep"; "the street was quiet" -04982478 07 n 03 hush 0 stillness 0 still 0 009 @ 04982207 n 0000 ;c 07092592 n 0000 + 01815185 v 0301 + 00461493 v 0304 + 01764800 v 0309 + 01919428 a 0203 + 02190188 v 0102 + 00461493 v 0101 + 00461354 v 0101 | (poetic) tranquil silence; "the still of the night" -04982745 07 n 01 speechlessness 0 002 @ 04982207 n 0000 + 00152629 a 0101 | the property of being speechless -04982856 07 n 02 quietness 0 soundlessness 0 004 @ 04982207 n 0000 + 01919428 a 0202 + 01918984 a 0101 ~ 04983013 n 0000 | the property of making no sound -04983013 07 n 01 noiselessness 0 002 @ 04982856 n 0000 + 01919282 a 0101 | the property of making no noise -04983122 07 n 01 sound_property 0 012 @ 04916342 n 0000 ~ 04981139 n 0000 ~ 04982207 n 0000 ~ 04983402 n 0000 ~ 04984180 n 0000 ~ 04984514 n 0000 ~ 04985198 n 0000 ~ 04987356 n 0000 ~ 04987620 n 0000 ~ 04990220 n 0000 ~ 04990877 n 0000 ~ 04991511 n 0000 | an attribute of sound -04983402 07 n 02 musicality 0 musicalness 0 011 @ 04983122 n 0000 + 02867783 a 0201 + 01501113 a 0203 + 01504625 a 0201 + 01501113 a 0103 + 01504625 a 0101 = 01504625 a 0000 = 01505318 a 0000 ~ 04983688 n 0000 ~ 04983848 n 0000 ~ 04984007 n 0000 | the property of sounding like music -04983688 07 n 03 lyricality 0 lyricism 0 songfulness 0 003 @ 04983402 n 0000 + 01501619 a 0302 + 01501990 a 0101 | the property of being suitable for singing -04983848 07 n 02 melodiousness 0 tunefulness 0 004 @ 04983402 n 0000 + 01502195 a 0201 + 01502195 a 0102 + 01501113 a 0101 | the property of having a melody -04984007 07 n 01 texture 2 001 @ 04983402 n 0000 | the musical pattern created by parts being played or sung together; "then another melodic line is added to the texture" -04984180 07 n 01 harmony 0 006 @ 04983122 n 0000 + 02737772 a 0101 + 01163083 a 0101 + 01163320 a 0103 ! 04984514 n 0101 ~ 04984351 n 0000 | an agreeable sound property -04984351 07 n 02 consonance 0 harmoniousness 1 004 @ 04984180 n 0000 + 01163083 a 0201 + 01163320 a 0101 + 02184163 v 0101 | the property of sounding harmonious -04984514 07 n 01 dissonance 0 007 @ 04983122 n 0000 + 01164250 a 0103 + 00567604 v 0102 ! 04984180 n 0101 ~ 04984698 n 0000 ~ 04984809 n 0000 ~ 04984938 n 0000 | disagreeable sounds -04984698 07 n 02 discordance 0 discord 1 002 @ 04984514 n 0000 + 01164250 a 0101 | a harsh mixture of sounds -04984809 07 n 02 disharmony 0 inharmoniousness 0 003 @ 04984514 n 0000 + 00563116 a 0201 + 01164072 a 0201 | a lack of harmony -04984938 07 n 01 cacophony 0 003 @ 04984514 n 0000 + 00298767 a 0102 + 00298767 a 0101 | loud confusing disagreeable sounds -04985064 07 n 01 boisterousness 0 002 @ 04981474 n 0000 + 01666489 a 0101 | the property of being noisy and lively and unrestrained -04985198 07 n 01 pitch 0 015 @ 04983122 n 0000 + 00298420 v 0101 = 01213197 a 0000 = 01215421 a 0000 ~ 04985580 n 0000 ~ 04985790 n 0000 ~ 04985930 n 0000 ~ 04986054 n 0000 ~ 04986147 n 0000 ~ 04986258 n 0000 ~ 04986526 n 0000 ~ 04986637 n 0000 ~ 04986796 n 0000 ~ 04986883 n 0000 ~ 04987169 n 0000 | the property of sound that varies with variation in the frequency of vibration -04985580 07 n 03 concert_pitch 0 philharmonic_pitch 0 international_pitch 0 001 @ 04985198 n 0000 | the pitch used to tune instruments for concert performances; usually assigns 440 Hz to the A above middle C -04985790 07 n 02 high_pitch 0 high_frequency 0 002 @ 04985198 n 0000 ! 04986258 n 0101 | a pitch that is perceived as above other pitches -04985930 07 n 02 soprano 0 treble 0 002 @ 04985198 n 0000 + 01051271 v 0201 | the pitch range of the highest female voice -04986054 07 n 01 tenor 0 001 @ 04985198 n 0000 | the pitch range of the highest male voice -04986147 07 n 01 key 0 002 @ 04985198 n 0000 + 00483656 v 0101 | pitch of the voice; "he spoke in a low key" -04986258 07 n 02 low_pitch 0 low_frequency 0 003 @ 04985198 n 0000 ! 04985790 n 0101 ~ 04986414 n 0000 | a pitch that is perceived as below other pitches -04986414 07 n 01 deepness 2 002 @ 04986258 n 0000 + 01215935 a 0102 | a low pitch that is loud and voluminous -04986526 07 n 01 alto 0 002 @ 04985198 n 0000 + 01215663 a 0101 | the pitch range of the lowest female voice -04986637 07 n 01 alto 1 002 @ 04985198 n 0000 + 01213786 a 0101 | (of a musical instrument) the second highest instrument in a family of musical instruments -04986796 07 n 01 bass 1 001 @ 04985198 n 0000 | the lowest part of the musical range -04986883 07 n 01 tone 2 006 @ 04985198 n 0000 ;c 06172789 n 0000 + 02816663 a 0102 + 02816663 a 0101 + 00982293 v 0101 + 01050313 v 0101 | (linguistics) a pitch or change in pitch of the voice that serves to distinguish words in tonal languages; "the Beijing dialect uses four tones" -04987169 07 n 01 tune 0 002 @ 04985198 n 0000 + 00295346 v 0101 | the property of producing accurately a note of a given pitch; "he cannot sing in tune"; "the clarinet was out of tune" -04987356 07 n 01 registration 0 003 @ 04983122 n 0000 ;c 07020895 n 0000 + 01726605 v 0101 | (music) the sound property resulting from a combination of organ stops used to perform a particular piece of music; the technique of selecting and adjusting organ stops -04987620 07 n 04 timbre 0 timber 0 quality 1 tone 1 011 @ 04983122 n 0000 ;c 07020895 n 0000 + 02437148 a 0401 + 00982293 v 0401 ~ 04988078 n 0000 ~ 04988258 n 0000 ~ 04988478 n 0000 ~ 04989362 n 0000 ~ 04989657 n 0000 ~ 04990021 n 0000 ~ 05126849 n 0000 | (music) the distinctive property of a complex sound (a voice or noise or musical sound); "the timbre of her soprano was rich and lovely"; "the muffled tones of the broken bell summoned them to meet" -04988078 07 n 01 harmonic 0 002 @ 04987620 n 0000 + 02738346 a 0101 | any of a series of musical tones whose frequencies are integral multiples of the frequency of a fundamental -04988258 07 n 01 resonance 1 003 @ 04987620 n 0000 + 02010536 a 0101 + 02175958 v 0101 | the quality imparted to voiced speech sounds by the action of the resonating chambers of the throat and mouth and nasal cavities -04988478 07 n 04 color 2 colour 2 coloration 1 colouration 1 001 @ 04987620 n 0000 | the timbre of a musical sound; "the recording fails to capture the true color of the original music" -04988666 07 n 02 harshness 1 roughness 1 004 @ 04779649 n 0000 + 00299476 a 0205 + 01803792 a 0101 ~ 04988861 n 0000 | the quality of being unpleasant (harsh or rough or grating) to the senses -04988861 07 n 03 gruffness 1 hoarseness 0 huskiness 2 004 @ 04988666 n 0000 + 00299690 a 0303 + 00299690 a 0202 + 00299690 a 0101 | a throaty harshness -04989015 07 n 03 fullness 2 mellowness 0 richness 1 004 @ 04916342 n 0000 + 01457369 a 0301 + 01156302 a 0201 + 01456710 a 0101 | the property of a sensation that is rich and pleasing; "the music had a fullness that echoed through the hall"; "the cheap wine had no body, no mellowness"; "he was well aware of the richness of his own appearance" -04989362 07 n 01 nasality 0 003 @ 04987620 n 0000 + 01213550 a 0103 ~ 04989512 n 0000 | a quality of the voice that is produced by nasal resonators -04989512 07 n 02 twang 0 nasal_twang 0 002 @ 04989362 n 0000 + 00745078 v 0101 | exaggerated nasality in speech (as in some regional dialects) -04989657 07 n 07 plangency 0 resonance 0 reverberance 0 ringing 0 sonorousness 0 sonority 0 vibrancy 0 010 @ 04987620 n 0000 + 02175958 v 0702 + 01457692 a 0602 + 01457692 a 0502 + 02183787 v 0403 + 02009280 a 0301 + 02183787 v 0304 + 02175958 v 0201 + 01457234 a 0101 + 02010536 a 0201 | having the character of a loud deep sound; the quality of being resonant -04990021 07 n 03 shrillness 0 stridence 0 stridency 0 005 @ 04987620 n 0000 + 01920367 a 0304 + 01920367 a 0204 + 00300359 a 0202 + 01214430 a 0101 | having the timbre of a loud high-pitched sound -04990220 07 n 03 volume 2 loudness 0 intensity 2 008 @ 04983122 n 0000 + 01458736 a 0202 + 01452593 a 0201 ! 04990877 n 0201 = 01452593 a 0000 = 01454636 a 0000 ~ 04990525 n 0000 ~ 04990781 n 0000 | the magnitude of sound (usually in a specified direction); "the kids played their music at full volume" -04990525 07 n 01 crescendo 0 005 @ 04990220 n 0000 ;c 07020895 n 0000 + 02537946 a 0101 + 00546729 v 0101 ~ 04990692 n 0000 | (music) a gradual increase in loudness -04990692 07 n 01 swell 0 001 @ 04990525 n 0000 | a crescendo followed by a decrescendo -04990781 07 n 02 forte 0 fortissimo 0 002 @ 04990220 n 0000 ;c 07020895 n 0000 | (music) loud -04990877 07 n 01 softness 1 007 @ 04983122 n 0000 + 01454636 a 0101 + 01156925 a 0101 ! 04990220 n 0102 ~ 04991137 n 0000 ~ 04991225 n 0000 ~ 04991389 n 0000 | a sound property that is free from loudness or stridency; "and in softness almost beyond hearing" -04991137 07 n 01 faintness 1 002 @ 04990877 n 0000 + 01747364 a 0101 | barely audible -04991225 07 n 02 decrescendo 0 diminuendo 0 004 @ 04990877 n 0000 ;c 07020895 n 0000 + 02538389 a 0101 + 00546873 v 0101 | (music) a gradual decrease in loudness -04991389 07 n 02 piano 0 pianissimo 0 003 @ 04990877 n 0000 ;c 07020895 n 0000 + 01458490 a 0201 | (music) low loudness -04991511 07 n 01 rhythmicity 0 005 @ 04983122 n 0000 + 02019021 a 0102 ~ 04991738 n 0000 ~ 04991879 n 0000 ~ 04992008 n 0000 | the rhythmic property imparted by the accents and relative durations of notes in a piece of music -04991738 07 n 03 meter 0 metre 0 time 1 002 @ 04991511 n 0000 + 02020310 a 0103 | rhythm as given by division into parts of equal duration -04991879 07 n 02 cadence 0 cadency 0 003 @ 04991511 n 0000 + 02019635 a 0202 + 02019635 a 0102 | a recurrent rhythmical series -04992008 07 n 02 lilt 0 swing 0 005 @ 04991511 n 0000 + 02020011 a 0203 + 01725375 v 0201 + 02752277 v 0201 + 00950936 v 0101 | a jaunty rhythm in music -04992163 07 n 01 taste_property 0 010 @ 04916342 n 0000 = 02395115 a 0000 = 02399399 a 0000 ~ 04992431 n 0000 ~ 04992570 n 0000 ~ 04993882 n 0000 ~ 04994413 n 0000 ~ 04994824 n 0000 ~ 04995211 n 0000 ~ 04996355 n 0000 | a property appreciated via the sense of taste -04992431 07 n 01 rancidness 0 004 @ 04992163 n 0000 @ 04980008 n 0000 + 01070321 a 0101 + 01054922 a 0102 | the property of being rancid -04992570 07 n 03 spiciness 0 spice 0 spicery 0 008 @ 04992163 n 0000 + 02192570 v 0302 + 00559919 v 0301 + 02192570 v 0202 + 02398378 a 0104 ~ 04992834 n 0000 ~ 04993108 n 0000 ~ 04993312 n 0000 | the property of being seasoned with spice and so highly flavored -04992834 07 n 04 pungency 0 bite 0 sharpness 2 raciness 1 003 @ 04992570 n 0000 + 02397234 a 0402 + 02398608 a 0101 | a strong odor or taste property; "the pungency of mustard"; "the sulfurous bite of garlic"; "the sharpness of strange spices"; "the raciness of the wine" -04993108 07 n 07 nip 0 piquance 0 piquancy 0 piquantness 0 tang 0 tanginess 0 zest 1 005 @ 04992570 n 0000 + 02398378 a 0705 + 02369460 a 0604 + 02398129 a 0101 + 02192570 v 0701 | a tart spicy quality -04993312 07 n 02 hotness 1 pepperiness 0 002 @ 04992570 n 0000 + 02397732 a 0101 | a hot spiciness -04993413 07 n 01 saltiness 0 005 @ 04916342 n 0000 ;c 14589223 n 0000 + 01073822 a 0101 ~ 04993604 n 0000 ~ 04993752 n 0000 | the property of containing salt (as a compound or in solution) -04993604 07 n 02 brininess 0 salinity 0 003 @ 04993413 n 0000 + 01074458 a 0201 + 01074062 a 0102 | the relative proportion of salt in a solution -04993752 07 n 01 brackishness 0 002 @ 04993413 n 0000 + 01074062 a 0101 | the quality of being salty, as the saltiness of water -04993882 07 n 03 sourness 0 sour 0 acidity 2 009 @ 04992163 n 0000 + 00025470 a 0301 + 02196690 v 0201 + 02399014 a 0101 + 02369869 a 0102 + 01054922 a 0101 + 02368787 a 0101 ~ 04994126 n 0000 ~ 04994264 n 0000 | the property of being acidic -04994126 07 n 02 acerbity 1 tartness 0 004 @ 04993882 n 0000 + 02369460 a 0205 + 02369027 a 0102 + 00270440 v 0101 | a sharp sour taste -04994264 07 n 02 vinegariness 0 vinegarishness 0 003 @ 04993882 n 0000 + 02369179 a 0204 + 02369179 a 0103 | a sourness resembling that of vinegar -04994413 07 n 02 sweetness 0 sweet 0 006 @ 04992163 n 0000 + 02338197 a 0103 + 02368336 a 0101 + 02367604 a 0101 ~ 04994614 n 0000 ~ 04994727 n 0000 | the property of tasting as if it contains sugar -04994614 07 n 01 saccharinity 0 002 @ 04994413 n 0000 + 02368566 a 0102 | the excessive sweetness of saccharin -04994727 07 n 01 sugariness 0 002 @ 04994413 n 0000 + 02337667 a 0101 | the sweetness of sugar -04994824 07 n 02 bitterness 0 bitter 0 005 @ 04992163 n 0000 + 02396098 a 0201 + 02195751 v 0201 ~ 04995009 n 0000 ~ 04995100 n 0000 | the property of having a harsh unpleasant taste -04995009 07 n 01 acerbity 2 002 @ 04994824 n 0000 + 00270440 v 0101 | a sharp bitterness -04995100 07 n 02 acridity 0 acridness 0 001 @ 04994824 n 0000 | extreme bitterness; "the acridity of alkali" -04995211 07 n 02 palatability 0 palatableness 0 006 @ 04992163 n 0000 + 01716227 a 0201 + 01716227 a 0101 ! 04996355 n 0101 ~ 04995421 n 0000 ~ 04995531 n 0000 | the property of being acceptable to the mouth -04995421 07 n 02 pleasingness 1 tastiness 0 002 @ 04995211 n 0000 + 02395115 a 0201 | pleasant palatability -04995531 07 n 02 appetizingness 0 appetisingness 0 009 @ 04995211 n 0000 + 00133417 a 0202 + 00133417 a 0101 ! 04996823 n 0101 = 00133417 a 0000 = 00133851 a 0000 ~ 04995793 n 0000 ~ 04995940 n 0000 ~ 04996215 n 0000 | the property of stimulating the appetite -04995793 07 n 04 delectability 0 deliciousness 0 lusciousness 0 toothsomeness 0 002 @ 04995531 n 0000 + 02396720 a 0406 | extreme appetizingness -04995940 07 n 03 flavorsomeness 0 flavoursomeness 0 savoriness 0 004 @ 04995531 n 0000 + 02398378 a 0302 + 00133669 a 0302 ~ 04996113 n 0000 | having an appetizing flavor -04996113 07 n 02 sapidity 0 sapidness 0 002 @ 04995940 n 0000 + 02396911 a 0207 | a pleasant flavor -04996215 07 n 03 succulence 0 succulency 0 juiciness 0 003 @ 04995531 n 0000 + 01368793 a 0301 + 01369078 a 0102 | a juicy appetizingness -04996355 07 n 02 unpalatability 0 unpalatableness 0 006 @ 04992163 n 0000 + 01716491 a 0201 + 01716491 a 0101 ! 04995211 n 0101 ~ 04996571 n 0000 ~ 04996823 n 0000 | the property of being unacceptable to the mouth -04996571 07 n 05 disgustingness 0 distastefulness 1 nauseatingness 0 sickeningness 0 unsavoriness 0 006 @ 04996355 n 0000 + 01716971 a 0502 + 02560035 a 0407 + 02560035 a 0301 + 01716971 a 0201 + 01625893 a 0101 | extreme unpalatability to the mouth -04996823 07 n 02 unappetizingness 0 unappetisingness 0 006 @ 04996355 n 0000 + 00133851 a 0202 + 00133851 a 0101 ! 04995531 n 0101 ~ 04997032 n 0000 ~ 04997282 n 0000 | the property of spoiling the appetite -04997032 07 n 05 flavorlessness 0 flavourlessness 0 savorlessness 0 savourlessness 0 tastelessness 2 006 @ 04996823 n 0000 + 02399399 a 0501 + 02399595 a 0407 + 02399595 a 0306 + 02399595 a 0204 + 02399595 a 0103 | the property of having no flavor -04997282 07 n 03 blandness 0 insipidity 0 insipidness 0 004 @ 04996823 n 0000 + 02399595 a 0305 + 02399595 a 0205 + 02399595 a 0101 | lacking any distinctive or interesting taste property -04997472 07 n 02 edibility 0 edibleness 0 005 @ 04916342 n 0000 + 00828779 a 0201 + 00828779 a 0101 ~ 04997645 n 0000 ~ 04997812 n 0000 | the property of being fit to eat -04997645 07 n 02 digestibility 0 digestibleness 0 004 @ 04997472 n 0000 + 01182024 a 0201 + 01182024 a 0101 ! 04997812 n 0101 | the property of being easy to digest -04997812 07 n 02 indigestibility 0 indigestibleness 0 004 @ 04997472 n 0000 + 01182747 a 0201 + 01182747 a 0101 ! 04997645 n 0101 | the property of being difficult to digest -04997988 07 n 01 bodily_property 0 011 @ 04916342 n 0000 ~ 04998254 n 0000 ~ 04998417 n 0000 ~ 04998530 n 0000 ~ 04999401 n 0000 ~ 05001482 n 0000 ~ 05002352 n 0000 ~ 05002822 n 0000 ~ 05005064 n 0000 ~ 05005250 n 0000 ~ 05079866 n 0000 | an attribute of the body -04998254 07 n 01 bipedalism 0 001 @ 04997988 n 0000 | the bodily attribute of being bipedal; having two feet; "bipedalism made the human form of birth possible" -04998417 07 n 02 laterality 0 dominance 2 001 @ 04997988 n 0000 | superior development of one side of the body -04998530 07 n 04 physique 0 build 0 body-build 0 habitus 0 004 @ 04997988 n 0000 ~ 04998700 n 0000 ~ 04998816 n 0000 ~ 04998966 n 0000 | constitution of the human body -04998700 07 n 01 lankiness 0 003 @ 04998530 n 0000 + 00989544 a 0103 + 02385492 a 0103 | a tall and thin physique -04998816 07 n 02 dumpiness 0 squattiness 0 004 @ 04998530 n 0000 + 02386962 a 0205 + 02386962 a 0102 + 00987510 a 0101 | a short and stout physique -04998966 07 n 02 body_type 0 somatotype 0 004 @ 04998530 n 0000 ~ 04999111 n 0000 ~ 04999214 n 0000 ~ 04999306 n 0000 | a category of physique -04999111 07 n 02 asthenic_type 0 ectomorphy 0 001 @ 04998966 n 0000 | slender, weak, and lightweight -04999214 07 n 02 endomorphy 0 pyknic_type 0 001 @ 04998966 n 0000 | round, fat, and heavy -04999306 07 n 02 athletic_type 0 mesomorphy 0 001 @ 04998966 n 0000 | muscular and big-boned -04999401 07 n 04 fatness 0 fat 0 blubber 0 avoirdupois 0 011 @ 04997988 n 0000 + 00986611 a 0301 + 00986027 a 0201 + 01194938 v 0202 + 00986027 a 0101 ! 05001482 n 0101 ~ 04999741 n 0000 ~ 04999964 n 0000 ~ 05000116 n 0000 ~ 05000342 n 0000 ~ 05000809 n 0000 | excess bodily weight; "she disliked fatness in herself as well as in others" -04999741 07 n 03 adiposity 0 adiposeness 0 fattiness 0 004 @ 04999401 n 0000 + 00991838 a 0301 + 00992133 a 0201 + 00992133 a 0101 | having the property of containing fat; "he recommended exercise to reduce my adiposity" -04999964 07 n 02 abdominousness 0 paunchiness 0 003 @ 04999401 n 0000 + 00986457 a 0202 + 00986457 a 0101 | the bodily property of a protruding belly -05000116 07 n 03 greasiness 0 oiliness 1 oleaginousness 1 007 @ 04999401 n 0000 + 00992432 a 0304 + 00992432 a 0202 + 00422168 a 0202 + 01699838 a 0201 + 00992432 a 0101 + 00422168 a 0101 | consisting of or covered with oil -05000342 07 n 03 fleshiness 0 obesity 0 corpulency 0 006 @ 04999401 n 0000 + 00987180 a 0202 + 00987769 a 0101 ~ 05000537 n 0000 ~ 05000717 n 0000 ~ 05000913 n 0000 | more than average fatness -05000537 07 n 04 corpulence 0 overweight 0 stoutness 1 adiposis 0 004 @ 05000342 n 0000 + 00988077 a 0302 + 00987769 a 0203 + 00987180 a 0101 | the property of excessive fatness -05000717 07 n 01 exogenous_obesity 0 001 @ 05000342 n 0000 | obesity caused by overeating -05000809 07 n 01 steatopygia 0 001 @ 04999401 n 0000 | an extreme accumulation of fat on the buttocks -05000913 07 n 03 plumpness 0 embonpoint 0 roundness 1 004 @ 05000342 n 0000 + 00986766 a 0103 ~ 05001089 n 0000 ~ 05001302 n 0000 | the bodily property of being well rounded -05001089 07 n 04 chubbiness 0 pudginess 0 tubbiness 0 rolypoliness 0 005 @ 05000913 n 0000 + 00987510 a 0405 + 00987510 a 0304 + 00987510 a 0203 + 00986766 a 0101 | the property of having a plump and round body -05001302 07 n 01 buxomness 0 003 @ 05000913 n 0000 + 02138989 a 0103 + 00986975 a 0101 | the bodily property of being attractively plump and vigorous and (of women) full-bosomed -05001482 07 n 03 leanness 0 thinness 0 spareness 1 008 @ 04997988 n 0000 + 00988232 a 0201 + 00988232 a 0102 ! 04999401 n 0101 ~ 05001724 n 0000 ~ 05001867 n 0000 ~ 05002155 n 0000 ~ 05033171 n 0000 | the property of having little body fat -05001724 07 n 02 skinniness 0 scrawniness 0 003 @ 05001482 n 0000 + 00990192 a 0203 + 00990192 a 0104 | the bodily property of lacking flesh -05001867 07 n 05 bonyness 0 boniness 0 emaciation 0 gauntness 0 maceration 0 008 @ 05001482 n 0000 + 00389406 v 0503 + 00988988 a 0404 + 00389406 v 0302 + 00389238 v 0301 + 00990192 a 0202 + 00988988 a 0201 + 00988988 a 0101 | extreme leanness (usually caused by starvation or disease) -05002155 07 n 03 slenderness 1 slightness 1 slimness 0 005 @ 05001482 n 0000 + 00990855 a 0303 + 00990855 a 0202 + 00990855 a 0101 + 01140290 a 0105 | the property of an attractively thin person -05002352 07 n 02 stature 2 height 1 005 @ 04997988 n 0000 = 02385102 a 0000 = 02386612 a 0000 ~ 05002540 n 0000 ~ 05002680 n 0000 | (of a standing person) the distance from head to foot -05002540 07 n 01 tallness 1 003 @ 05002352 n 0000 + 02385102 a 0101 ! 05002680 n 0101 | the property of being taller than average stature -05002680 07 n 01 shortness 1 003 @ 05002352 n 0000 + 02386612 a 0101 ! 05002540 n 0101 | the property of being shorter than average stature -05002822 07 n 03 carriage 0 bearing 1 posture 1 008 @ 04997988 n 0000 + 03101667 a 0301 + 01601234 v 0203 + 01601234 v 0102 ~ 05003090 n 0000 ~ 05003273 n 0000 ~ 05003423 n 0000 ~ 05004294 n 0000 | characteristic way of bearing one's body; "stood with good posture" -05003090 07 n 02 walk 0 manner_of_walking 0 005 @ 05002822 n 0000 + 01906823 v 0101 + 01882170 v 0101 + 01912893 v 0101 + 01904930 v 0101 | manner of walking; "he had a funny walk" -05003273 07 n 01 slouch 0 004 @ 05002822 n 0000 + 02426550 a 0101 + 01929824 v 0101 + 01989720 v 0102 | a stooping carriage in standing and walking -05003423 07 n 01 gracefulness 0 006 @ 05002822 n 0000 + 01139352 a 0101 ! 05004294 n 0101 ~ 05003590 n 0000 ~ 05003850 n 0000 ~ 05004091 n 0000 | beautiful carriage -05003590 07 n 02 grace 1 gracility 0 005 @ 05003423 n 0000 + 01140188 a 0201 + 01141743 a 0101 + 02748927 v 0104 + 01675963 v 0103 | elegance and beauty of movement or expression; "a beautiful figure which she used in subtle movements of unparalleled grace" -05003850 07 n 05 agility 0 legerity 0 lightness 4 lightsomeness 2 nimbleness 0 005 @ 05003423 n 0000 + 00032733 a 0502 + 01192393 a 0402 + 01192393 a 0301 + 00032733 a 0101 | the gracefulness of a person or animal that is quick and nimble -05004091 07 n 03 lissomeness 0 litheness 0 suppleness 0 004 @ 05003423 n 0000 + 01140290 a 0306 + 01140290 a 0203 + 01140290 a 0101 | the gracefulness of a person or animal that is flexible and supple -05004294 07 n 02 awkwardness 0 clumsiness 1 006 @ 05002822 n 0000 + 01140896 a 0202 ! 05003423 n 0101 ~ 05004532 n 0000 ~ 05004700 n 0000 ~ 05004895 n 0000 | the carriage of someone whose movements and posture are ungainly or inelegant -05004532 07 n 02 gracelessness 0 ungracefulness 0 002 @ 05004294 n 0000 + 01141242 a 0202 | an unpleasant lack of grace in carriage or form or movement or expression -05004700 07 n 02 gawkiness 0 ungainliness 0 003 @ 05004294 n 0000 + 01140896 a 0204 + 01140896 a 0101 | the carriage of someone whose movements and posture are extremely ungainly and inelegant -05004895 07 n 01 stiffness 1 002 @ 05004294 n 0000 + 01023706 a 0102 | the property of moving with pain or difficulty; "he awoke with a painful stiffness in his neck" -05005064 07 n 01 physiology 0 006 @ 04997988 n 0000 + 01779558 a 0101 + 01779558 a 0102 + 02949082 a 0101 + 10429965 n 0101 -c 01757338 v 0000 | processes and functions of an organism -05005250 07 n 01 physiological_property 0 005 @ 04997988 n 0000 ~ 05005447 n 0000 ~ 05006285 n 0000 ~ 05006898 n 0000 ~ 05008085 n 0000 | a property having to do with the functioning of the body -05005447 07 n 03 animateness 0 aliveness 0 liveness 0 012 @ 05005250 n 0000 + 00094448 a 0302 + 00805115 a 0201 + 00094448 a 0201 + 00118567 a 0202 + 00117385 a 0102 + 00118066 a 0101 ! 05006285 n 0101 = 00118066 a 0000 = 00118238 a 0000 ~ 05005809 n 0000 ~ 05006020 n 0000 | the property of being animated; having animal life as distinguished from plant life -05005809 07 n 02 animation 0 vitality 0 005 @ 05005447 n 0000 + 00119006 a 0203 + 00095094 a 0201 = 00094448 a 0000 = 00095280 a 0000 | the property of being able to survive and grow; "the vitality of a seed" -05006020 07 n 01 sentience 0 005 @ 05005447 n 0000 + 00571424 a 0101 ! 05006749 n 0101 = 00117385 a 0000 = 00117754 a 0000 | the readiness to perceive sensations; elementary or undifferentiated consciousness; "gave sentience to slugs and newts"- Richard Eberhart -05006285 07 n 02 inanimateness 0 lifelessness 0 009 @ 05005250 n 0000 + 00097768 a 0201 + 00119533 a 0201 + 00100373 a 0201 + 00096595 a 0102 + 00118238 a 0101 ! 05005447 n 0101 ~ 05006519 n 0000 ~ 05006749 n 0000 | not having life -05006519 07 n 01 deadness 0 008 @ 05006285 n 0000 + 01241248 a 0101 + 00359260 a 0101 + 00041202 a 0101 + 00929443 a 0101 + 00099874 a 0101 + 00095280 a 0101 + 00833878 a 0101 | the inanimate property of something that has died -05006749 07 n 01 insentience 0 003 @ 05006285 n 0000 + 00117754 a 0101 ! 05006020 n 0101 | lacking consciousness or ability to perceive sensations -05006898 07 n 03 sex 0 gender 0 sexuality 0 011 @ 05005250 n 0000 + 02887578 a 0301 + 00651630 v 0101 = 01476685 a 0000 = 01477806 a 0000 = 01478626 a 0000 = 02135389 a 0000 = 02135913 a 0000 ~ 05008227 n 0000 ~ 05008746 n 0000 ~ 05008943 n 0000 | the properties that distinguish organisms on the basis of their reproductive roles; "she didn't want to know the sex of the foetus" -05007280 07 n 03 sex_characteristic 0 sexual_characteristic 0 sex_character 0 004 @ 05849789 n 0000 ~ 05007560 n 0000 ~ 05007800 n 0000 ~ 05008591 n 0000 | those characteristics (both anatomical and psychological) that are strongly associated with one sex relative to the other -05007560 07 n 03 primary_sex_characteristic 0 primary_sexual_characteristic 0 primary_sex_character 0 001 @ 05007280 n 0000 | the genetically determined sex characteristics bound up with reproduction (genitals and organs of reproduction) -05007800 07 n 03 secondary_sex_characteristic 0 secondary_sexual_characteristic 0 secondary_sex_character 0 001 @ 05007280 n 0000 | the genetically determined sex characteristics that are not functionally necessary for reproduction (pitch of the voice and body hair and musculature) -05008085 07 n 02 asexuality 0 sexlessness 0 003 @ 05005250 n 0000 + 02136522 a 0202 + 02135913 a 0101 | having no evident sex or sex organs -05008227 07 n 02 maleness 0 masculinity 0 007 @ 05006898 n 0000 + 01483324 a 0201 + 01483677 a 0101 + 01477077 a 0101 + 01476685 a 0101 ! 05008943 n 0101 ~ 05008449 n 0000 | the properties characteristic of the male sex -05008449 07 n 01 virility 1 002 @ 05008227 n 0000 + 01825419 a 0102 | the masculine property of being capable of copulation and procreation -05008591 07 n 01 virilism 0 001 @ 05007280 n 0000 | the development of male secondary sexual characteristics in a female (or prematurely in a young boy) -05008746 07 n 03 androgyny 0 hermaphroditism 0 bisexuality 0 005 @ 05006898 n 0000 + 01478907 a 0301 + 01478626 a 0101 + 02622210 a 0101 + 02621901 a 0102 | showing characteristics of both sexes -05008943 07 n 02 femaleness 0 feminineness 0 007 @ 05006898 n 0000 + 01484987 a 0202 + 01484083 a 0201 + 01484451 a 0101 + 01478182 a 0101 + 01477806 a 0101 ! 05008227 n 0101 | the properties characteristic of the female sex -05009170 07 n 01 physical_property 0 026 @ 04916342 n 0000 ~ 05010062 n 0000 ~ 05010314 n 0000 ~ 05010506 n 0000 ~ 05010627 n 0000 ~ 05011277 n 0000 ~ 05011790 n 0000 ~ 05012272 n 0000 ~ 05012585 n 0000 ~ 05017230 n 0000 ~ 05017909 n 0000 ~ 05018103 n 0000 ~ 05019163 n 0000 ~ 05019339 n 0000 ~ 05019499 n 0000 ~ 05019661 n 0000 ~ 05020225 n 0000 ~ 05020358 n 0000 ~ 05021884 n 0000 ~ 05023233 n 0000 ~ 05023974 n 0000 ~ 05024254 n 0000 ~ 05026843 n 0000 ~ 05029137 n 0000 ~ 05055878 n 0000 ~ 05129201 n 0000 | any property used to characterize matter and energy and their interactions -05009758 07 n 01 chemical_property 0 002 @ 04916342 n 0000 ~ 05009921 n 0000 | a property used to characterize materials in reactions that change their identity -05009921 07 n 01 volatility 2 002 @ 05009758 n 0000 + 02519555 a 0101 | the property of changing readily from a solid or liquid to a vapor -05010062 07 n 02 absorptivity 0 absorption_factor 0 003 @ 05009170 n 0000 ;c 06090869 n 0000 + 00006336 a 0102 | (physics) the property of a body that determines the fraction of the incident radiation or sound flux absorbed or absorbable by the body -05010314 07 n 02 dissolubility 0 solubleness 0 003 @ 05009170 n 0000 + 02265015 a 0201 + 02265386 a 0102 | the property of being dissoluble; "he measure the dissolubility of sugar in water" -05010506 07 n 01 drippiness 0 002 @ 05009170 n 0000 + 02549234 a 0101 | the physical property of being soft and drippy -05010627 07 n 03 reflection 1 reflexion 1 reflectivity 0 004 @ 05009170 n 0000 + 02007882 a 0301 ~ 05010801 n 0000 ~ 05011162 n 0000 | the ability to reflect beams or rays -05010801 07 n 04 echo 0 reverberation 0 sound_reflection 0 replication 0 005 @ 05010627 n 0000 + 02183787 v 0204 + 02675458 v 0101 + 02183787 v 0102 ~ 05011089 n 0000 | the repetition of a sound resulting from reflection of the sound waves; "she could hear echoes of her own footsteps" -05011089 07 n 01 re-echo 0 001 @ 05010801 n 0000 | the echo of an echo -05011162 07 n 01 echo 1 002 @ 05010627 n 0000 ;c 06099269 n 0000 | a reflected television or radio or radar beam -05011277 07 n 03 deflection 0 deflexion 0 bending 0 003 @ 05009170 n 0000 ~ 05011431 n 0000 ~ 05011568 n 0000 | the property of being bent or deflected -05011431 07 n 02 windage 1 wind_deflection 0 001 @ 05011277 n 0000 | the deflection of a projectile resulting from the effects of wind -05011568 07 n 02 refractivity 0 refractiveness 0 005 @ 05011277 n 0000 + 02312918 a 0202 + 02788005 a 0201 + 02312918 a 0102 + 02788005 a 0101 | the physical property of a medium as determined by its index of refraction -05011790 07 n 01 temperature 0 019 @ 13575869 n 0000 @ 05009170 n 0000 = 01247240 a 0000 = 01251128 a 0000 = 02529264 a 0000 = 02529945 a 0000 ~ 05013095 n 0000 ~ 05013204 n 0000 ~ 05013461 n 0000 ~ 05013642 n 0000 ~ 05013809 n 0000 ~ 05013967 n 0000 ~ 05014099 n 0000 ~ 05014308 n 0000 ~ 05014442 n 0000 ~ 05014556 n 0000 ~ 05014879 n 0000 ~ 05015117 n 0000 ~ 05016171 n 0000 | the degree of hotness or coldness of a body or environment (corresponding to its molecular activity) -05012272 07 n 04 heat_content 0 total_heat 0 enthalpy 0 H 0 002 @ 05009170 n 0000 ;c 06114578 n 0000 | (thermodynamics) a thermodynamic quantity equal to the internal energy of a system plus the product of its volume and pressure; "enthalpy is the amount of energy in a system capable of doing mechanical work" -05012585 07 n 03 randomness 1 entropy 0 S 0 003 @ 05009170 n 0000 ;c 06114578 n 0000 ~ 05012941 n 0000 | (thermodynamics) a thermodynamic quantity representing the amount of energy in a system that is no longer available for doing mechanical work; "entropy increases as matter and energy in the universe degrade to an ultimate state of inert uniformity" -05012941 07 n 01 conformational_entropy 0 001 @ 05012585 n 0000 | entropy calculated from the probability that a state could be reached by chance alone -05013095 07 n 01 absolute_temperature 0 001 @ 05011790 n 0000 | temperature measured on the absolute scale -05013204 07 n 01 absolute_zero 0 002 @ 05011790 n 0000 ;c 06098687 n 0000 | (cryogenics) the lowest temperature theoretically attainable (at which the kinetic energy of atoms and molecules is minimal); 0 Kelvin or -273.15 centigrade or -459.67 Fahrenheit -05013461 07 n 02 Curie_temperature 0 Curie_point 0 001 @ 05011790 n 0000 | the temperature above which a ferromagnetic substance loses its ferromagnetism and becomes paramagnetic -05013642 07 n 01 dew_point 0 002 @ 05011790 n 0000 @ 13925340 n 0000 | the temperature at which the water vapor in the air becomes saturated and condensation begins -05013809 07 n 02 flash_point 0 flashpoint 0 001 @ 05011790 n 0000 | the lowest temperature at which the vapor of a combustible liquid can be ignited in air -05013967 07 n 02 freezing_point 0 melting_point 0 001 @ 05011790 n 0000 | the temperature below which a liquid turns into a solid -05014099 07 n 02 boiling_point 1 boil 0 004 @ 05011790 n 0000 + 00374668 v 0201 + 00375021 v 0201 + 00328128 v 0201 | the temperature at which a liquid boils at sea level; "they brought the water to a boil" -05014308 07 n 01 mercury 0 001 @ 05011790 n 0000 | temperature measured by a mercury thermometer; "the mercury was falling rapidly" -05014442 07 n 01 room_temperature 0 001 @ 05011790 n 0000 | the normal temperature of room in which people live -05014556 07 n 01 simmer 0 002 @ 05011790 n 0000 + 00324231 v 0101 | temperature just below the boiling point; "the stew remained at a simmer for hours" -05014710 07 n 02 basal_body_temperature 0 basal_temperature 0 001 @ 05014879 n 0000 | body temperature in the morning before rising or moving about or eating anything -05014879 07 n 02 body_temperature 0 blood_heat 0 003 @ 14302005 n 0000 @ 05011790 n 0000 ~ 05014710 n 0000 | temperature of the body; normally 98.6 F or 37 C in humans; usually measured to obtain a quick evaluation of a person's health -05015117 07 n 05 coldness 0 cold 0 low_temperature 0 frigidity 2 frigidness 2 008 @ 05011790 n 0000 @ 04522421 n 0000 + 01251128 a 0201 ! 05016171 n 0101 ~ 05015463 n 0000 ~ 05015678 n 0000 ~ 05015878 n 0000 ~ 05016001 n 0000 | the absence of heat; "the coldness made our breath visible"; "come in out of the cold"; "cold is a vasoconstrictor" -05015463 07 n 03 chill 0 iciness 0 gelidity 0 007 @ 05015117 n 0000 + 01252151 a 0303 + 01120242 a 0201 + 01079240 a 0201 + 00370412 v 0102 + 00369864 v 0102 + 01252566 a 0101 | coldness due to a cold environment -05015678 07 n 03 chilliness 0 coolness 0 nip 1 004 @ 05015117 n 0000 + 01252714 a 0304 + 02529945 a 0201 + 01252566 a 0101 | the property of being moderately cold; "the chilliness of early morning" -05015878 07 n 01 frostiness 1 003 @ 05015117 n 0000 + 01253254 a 0101 + 01252714 a 0102 | coldness as evidenced by frost -05016001 07 n 01 cool 1 003 @ 05015117 n 0000 + 00369864 v 0101 + 00370412 v 0101 | the quality of being at a refreshingly low temperature; "the cool of early morning" -05016171 07 n 03 hotness 0 heat 1 high_temperature 0 011 @ 05011790 n 0000 + 00371264 v 0201 + 02333358 v 0201 + 00372665 v 0201 + 01247240 a 0101 ! 05015117 n 0101 ~ 05016451 n 0000 ~ 05016553 n 0000 ~ 05016667 n 0000 ~ 05016753 n 0000 ~ 05017121 n 0000 | the presence of heat -05016451 07 n 02 calefaction 0 incalescence 0 001 @ 05016171 n 0000 | the property of being warming -05016553 07 n 02 fieriness 0 red_heat 0 002 @ 05016171 n 0000 + 01248958 a 0101 | the heat or the color of fire -05016667 07 n 01 torridity 0 002 @ 05016171 n 0000 + 01250694 a 0101 | extreme heat -05016753 07 n 02 warmth 1 warmness 0 003 @ 05016171 n 0000 + 02529264 a 0201 ~ 05016936 n 0000 | the quality of having a moderate degree of heat; "an agreeable warmth in the house" -05016936 07 n 03 lukewarmness 0 tepidity 0 tepidness 0 004 @ 05016753 n 0000 + 02529581 a 0302 + 02529581 a 0202 + 02529581 a 0101 | a warmness resembling the temperature of the skin -05017121 07 n 01 white_heat 0 001 @ 05016171 n 0000 | the hotness of something heated until it turns white -05017230 07 n 01 perceptibility 0 007 @ 05009170 n 0000 + 01717471 a 0101 + 01287282 a 0102 + 01746605 a 0101 ! 05019339 n 0101 ~ 05017458 n 0000 ~ 05018934 n 0000 | the property of being perceptible by the mind or the senses -05017458 07 n 02 visibility 0 visibleness 0 007 @ 05017230 n 0000 + 01705513 a 0201 + 02515341 a 0201 + 02515341 a 0101 ! 05017909 n 0101 ~ 04706087 n 0000 ~ 05017757 n 0000 | quality or fact or degree of being visible; perceptible by the eye or obvious to the eye; "low visibility caused by fog" -05017757 07 n 01 visual_range 0 002 @ 05017458 n 0000 ;c 06118563 n 0000 | distance at which a given standard object can be seen with the unaided eye -05017909 07 n 02 invisibility 0 invisibleness 0 005 @ 05009170 n 0000 + 02517265 a 0201 + 02517265 a 0101 ! 05017458 n 0101 ~ 04707636 n 0000 | the quality of not being perceivable by the eye -05018103 07 n 06 luminosity 0 brightness 2 brightness_level 0 luminance 0 luminousness 0 light 1 012 @ 05009170 n 0000 + 00291873 v 0601 + 01812237 a 0501 + 01812237 a 0201 + 00271022 a 0201 + 00284930 a 0202 + 00279332 a 0104 = 00278551 a 0000 = 00283703 a 0000 ~ 05018542 n 0000 ~ 05018674 n 0000 ~ 05018785 n 0000 | the quality of being luminous; emitting or reflecting light; "its luminosity is measured relative to that of our sun" -05018542 07 n 02 illuminance 0 illumination 0 002 @ 05018103 n 0000 + 00291873 v 0205 | the luminous flux incident on a unit area -05018674 07 n 01 incandescence 0 003 @ 05018103 n 0000 + 00572186 v 0101 + 00572021 v 0101 | light from heat -05018785 07 n 02 luminescence 0 glow 0 004 @ 05018103 n 0000 + 02160944 v 0201 + 00272410 a 0101 + 02766223 v 0101 | light from nonthermal sources -05018934 07 n 02 audibility 0 audibleness 0 006 @ 05017230 n 0000 + 00173764 a 0201 + 00173764 a 0101 ! 05019163 n 0101 = 00173764 a 0000 = 00174379 a 0000 | quality or fact or degree of being audible or perceptible by the ear -05019163 07 n 02 inaudibility 0 inaudibleness 0 004 @ 05009170 n 0000 + 00174379 a 0201 + 00174379 a 0101 ! 05018934 n 0101 | the quality of not being perceptible by the ear -05019339 07 n 01 imperceptibility 0 003 @ 05009170 n 0000 + 01748318 a 0101 ! 05017230 n 0101 | the property of being imperceptible by the mind or the senses -05019499 07 n 01 reluctivity 0 002 @ 05009170 n 0000 ;c 06090869 n 0000 | (physics) the resistance of a material to the establishment of a magnetic field in it -05019661 07 n 02 sensitivity 0 sensitiveness 0 005 @ 05009170 n 0000 + 02103481 a 0201 = 02103481 a 0000 = 02105375 a 0000 ~ 05020019 n 0000 | the ability to respond to physical stimuli or to register small physical amounts or differences; "a galvanometer of extreme sensitivity"; "the sensitiveness of Mimosa leaves does not depend on a change of growth" -05020019 07 n 01 frequency_response 0 003 @ 05019661 n 0000 ;c 06099269 n 0000 %p 13823968 n 0000 | (electronics) a curve representing the output-to-input ratio of a transducer as a function of frequency -05020225 07 n 02 magnetization 0 magnetisation 0 002 @ 05009170 n 0000 + 00399788 v 0101 | the physical property of being magnetic -05020358 07 n 02 elasticity 0 snap 0 009 @ 05009170 n 0000 + 00843146 a 0101 ! 05023233 n 0101 ~ 05020697 n 0000 ~ 05020981 n 0000 ~ 05021151 n 0000 ~ 05021345 n 0000 ~ 05021535 n 0000 ~ 05021740 n 0000 | the tendency of a body to return to its original shape after it has been stretched or compressed; "the waistband had lost its snap" -05020697 07 n 02 resilience 0 resiliency 0 005 @ 05020358 n 0000 + 00843595 a 0204 + 00387680 v 0201 + 00843595 a 0104 + 00387680 v 0101 | the physical property of a material that can return to its original shape or position after deformation that does not exceed its elastic limit -05020981 07 n 02 bounce 0 bounciness 0 004 @ 05020358 n 0000 + 00843595 a 0201 + 01892104 v 0101 + 01404389 v 0101 | the quality of a substance that is able to rebound -05021151 07 n 03 give 0 spring 0 springiness 0 003 @ 05020358 n 0000 + 00843595 a 0305 + 01449796 v 0101 | the elasticity of something that can be stretched and returns to its original length -05021345 07 n 03 stretch 0 stretchiness 0 stretchability 0 005 @ 05020358 n 0000 + 00845216 a 0301 + 00845216 a 0202 + 00845216 a 0102 + 00240810 v 0101 | the capacity for being stretched -05021535 07 n 02 temper 1 toughness 3 003 @ 05020358 n 0000 + 00302875 v 0101 + 00303056 v 0102 | the elasticity and hardness of a metal object; its ability to absorb considerable energy before cracking -05021740 07 n 01 elasticity_of_shear 0 001 @ 05020358 n 0000 | the elasticity of a body that has been pulled out of shape by a shearing force -05021884 07 n 02 malleability 0 plasticity 0 006 @ 05009170 n 0000 + 00844461 a 0203 + 02144436 a 0102 ! 05023974 n 0101 ~ 05022173 n 0000 ~ 05022457 n 0000 | the property of being physically malleable; the property of something that can be worked or hammered or shaped without breaking -05022173 07 n 02 ductility 0 ductileness 0 002 @ 05021884 n 0000 + 02144436 a 0101 | the malleability of something that can be drawn into threads or wires or hammered into thin sheets -05022359 07 n 02 fibrosity 0 fibrousness 0 001 @ 04723816 n 0000 | the quality of being fibrous -05022457 07 n 02 flexibility 2 flexibleness 0 008 @ 05021884 n 0000 + 00844719 a 0201 + 01022064 a 0201 + 00844719 a 0101 + 01022064 a 0101 ! 05024093 n 0101 ~ 05022709 n 0000 ~ 05022902 n 0000 | the property of being flexible; easily bent or shaped -05022709 07 n 02 bendability 0 pliability 2 005 @ 05022457 n 0000 + 01022367 a 0202 + 02144436 a 0203 + 01022367 a 0101 ~ 05023022 n 0000 | the property of being easily bent without breaking -05022902 07 n 01 whip 0 002 @ 05022457 n 0000 ;c 00464894 n 0000 | (golf) the flexibility of the shaft of a golf club -05023022 07 n 03 pliancy 1 pliantness 1 suppleness 1 006 @ 05022709 n 0000 + 01022785 a 0302 + 01022367 a 0203 + 02144436 a 0204 + 01022367 a 0103 + 02144436 a 0104 | the property of being pliant and flexible -05023233 07 n 01 inelasticity 0 006 @ 05009170 n 0000 + 00845528 a 0101 ! 05020358 n 0101 ~ 05023404 n 0000 ~ 05023591 n 0000 ~ 05023741 n 0000 | the lack of elasticity -05023404 07 n 01 deadness 1 002 @ 05023233 n 0000 + 00845737 a 0101 | the physical property of something that has lost its elasticity; "he objected to the deadness of the tennis balls" -05023591 07 n 01 stiffness 0 003 @ 05023233 n 0000 + 01023706 a 0102 + 01525659 a 0101 | the physical property of being inflexible and hard to bend -05023741 07 n 02 rigidity 0 rigidness 0 007 @ 05023233 n 0000 + 01564603 a 0203 + 01023706 a 0201 + 01023706 a 0101 + 00418110 v 0101 + 00418408 v 0101 ~ 05024093 n 0000 | the physical property of being stiff and resisting bending -05023974 07 n 01 unmalleability 0 003 @ 05009170 n 0000 + 02452919 a 0101 ! 05021884 n 0101 | a lack of malleability -05024093 07 n 02 inflexibility 2 inflexibleness 0 004 @ 05023741 n 0000 + 01023289 a 0201 + 01023289 a 0101 ! 05022457 n 0101 | a lack of physical flexibility -05024254 07 n 01 mass 0 014 @ 13575869 n 0000 @ 05009170 n 0000 ~ 05024616 n 0000 ~ 05024691 n 0000 ~ 05024797 n 0000 ~ 05024931 n 0000 ~ 05025129 n 0000 ~ 05025413 n 0000 ~ 05025520 n 0000 ~ 05025693 n 0000 ~ 05025935 n 0000 ~ 05026171 n 0000 ~ 05026312 n 0000 ~ 11481824 n 0000 | the property of a body that causes it to have weight in a gravitational field -05024616 07 n 01 body 1 001 @ 05024254 n 0000 | the main mass of a thing -05024691 07 n 01 biomass 0 001 @ 05024254 n 0000 | the total mass of living matter in a given unit area -05024797 07 n 01 critical_mass 0 001 @ 05024254 n 0000 | the minimum mass of fissionable material that can sustain a chain reaction -05024931 07 n 01 rest_mass 0 002 @ 05024254 n 0000 ;c 06090869 n 0000 | (physics) the mass of a body as measured when the body is at rest relative to an observer, an inherent property of the body -05025129 07 n 01 relativistic_mass 0 002 @ 05024254 n 0000 ;c 06090869 n 0000 | (physics) the mass of a body in motion relative to the observer: it is equal to the rest mass multiplied by a factor that is greater than 1 and that increases as the magnitude of the velocity increases -05025413 07 n 01 bulk 3 002 @ 05024254 n 0000 + 01384438 a 0101 | the property possessed by a large mass -05025520 07 n 01 gravitational_mass 0 002 @ 05024254 n 0000 ;c 06090869 n 0000 | (physics) the mass of a body as measured by its gravitational attraction for other bodies -05025693 07 n 01 inertial_mass 0 002 @ 05024254 n 0000 ;c 06090869 n 0000 | (physics) the mass of a body as determined by the second law of motion from the acceleration of the body when it is subjected to a force that is not due to gravity -05025935 07 n 03 atomic_mass 0 atomic_weight 0 relative_atomic_mass 0 004 @ 05024254 n 0000 ;c 06084469 n 0000 ~ 05026508 n 0000 ~ 05026744 n 0000 | (chemistry) the mass of an atom of a chemical element expressed in atomic mass units -05026171 07 n 01 mass_energy 0 002 @ 05024254 n 0000 ;c 06090869 n 0000 | (physics) the mass of a body regarded relativistically as energy -05026312 07 n 02 molecular_weight 0 relative_molecular_mass 0 002 @ 05024254 n 0000 ;c 06084469 n 0000 | (chemistry) the sum of the relative atomic masses of the constituent atoms of a molecule -05026508 07 n 04 equivalent 0 equivalent_weight 0 combining_weight 0 eq 0 001 @ 05025935 n 0000 | the atomic weight of an element that has the same combining capacity as a given weight of another element; the standard is 8 for oxygen -05026744 07 n 02 milliequivalent 0 meq 0 001 @ 05025935 n 0000 | one-thousandth of an equivalent -05026843 07 n 01 weight 0 011 @ 05009170 n 0000 + 01187611 a 0101 = 01184932 a 0000 = 01186408 a 0000 ~ 05027135 n 0000 ~ 05027446 n 0000 ~ 05027529 n 0000 ~ 05028348 n 0000 ~ 05028429 n 0000 ~ 05028562 n 0000 ~ 05028700 n 0000 | the vertical force exerted by a mass as a result of gravity -05027135 07 n 01 body_weight 0 004 @ 05026843 n 0000 = 00986027 a 0000 = 00988232 a 0000 ~ 05027276 n 0000 | the weight of a person's body -05027276 07 n 01 reporting_weight 0 001 @ 05027135 n 0000 | a person's body weight (as an athlete's) at the beginning of the season (when first reporting for practice) -05027446 07 n 01 dead_weight 0 001 @ 05026843 n 0000 | a heavy motionless weight -05027529 07 n 02 heaviness 0 weightiness 0 010 @ 05026843 n 0000 + 00987180 a 0203 + 01187611 a 0201 + 01085268 a 0101 + 00987769 a 0102 + 01191227 a 0101 + 01184932 a 0101 ! 05028700 n 0101 ~ 05027837 n 0000 ~ 05028159 n 0000 | the property of being comparatively great in weight; "the heaviness of lead" -05027837 07 n 05 heft 0 heftiness 1 massiveness 1 ponderousness 0 ponderosity 0 011 @ 05027529 n 0000 + 01186207 a 0501 + 01186207 a 0401 + 01192786 a 0403 + 01389170 a 0301 + 01185916 a 0301 + 02321809 a 0202 + 01185775 a 0201 + 00624576 a 0204 + 02321809 a 0102 + 01185775 a 0101 | the property of being large in mass -05028159 07 n 01 preponderance 1 002 @ 05027529 n 0000 + 02645597 v 0101 | exceeding in heaviness; having greater weight; "the least preponderance in either pan will unbalance the scale" -05028348 07 n 01 poundage 0 001 @ 05026843 n 0000 | weight expressed in pounds -05028429 07 n 01 tare 0 001 @ 05026843 n 0000 | the weight of a motor vehicle, railroad car, or aircraft without its fuel or cargo -05028562 07 n 01 throw-weight 0 001 @ 05026843 n 0000 | the weight of the payload of a missile (not including the weight of the rocket) -05028700 07 n 02 lightness 2 weightlessness 0 007 @ 05026843 n 0000 + 01187777 a 0201 + 02414188 a 0101 + 00503527 a 0101 + 01186408 a 0101 ! 05027529 n 0101 ~ 05028963 n 0000 | the property of being comparatively small in weight; "the lightness of balsa wood" -05028963 07 n 02 airiness 0 buoyancy 0 004 @ 05028700 n 0000 + 01187072 a 0201 + 01186913 a 0101 + 00626136 a 0103 | the property of something weightless and insubstantial -05029137 07 n 01 momentum 1 002 @ 05009170 n 0000 ~ 05029327 n 0000 | the product of a body's mass and its velocity; "the momentum of the particles was deduced from meteoritic velocities" -05029327 07 n 01 angular_momentum 0 001 @ 05029137 n 0000 | the product of the momentum of a rotating body and its distance from the axis of rotation; "any rotating body has an angular momentum about its center of mass"; "angular momentum makes the world go round" -05029594 07 n 01 sustainability 0 002 @ 04916342 n 0000 + 02806261 a 0101 | the property of being sustainable -05029706 07 n 01 strength 0 018 @ 04916342 n 0000 ! 05040275 n 0101 = 00705891 a 0000 = 00707366 a 0000 = 02321009 a 0000 = 02324397 a 0000 ~ 05030149 n 0000 ~ 05030418 n 0000 ~ 05030680 n 0000 ~ 05030806 n 0000 ~ 05031012 n 0000 ~ 05031214 n 0000 ~ 05031560 n 0000 ~ 05031726 n 0000 ~ 05031849 n 0000 ~ 05032028 n 0000 ~ 05032565 n 0000 ~ 05033681 n 0000 | the property of being physically or mentally strong; "fatigue sapped his strength" -05030149 07 n 01 good_part 0 002 @ 05029706 n 0000 ! 05042283 n 0101 | a place of especial strength -05030251 07 n 01 tensile_strength 0 001 @ 05053688 n 0000 | the strength of material expressed as the greatest longitudinal stress it can bear without tearing apart -05030418 07 n 06 brawn 0 brawniness 0 muscle 0 muscularity 0 sinew 0 heftiness 0 008 @ 05029706 n 0000 + 02321809 a 0505 + 02321809 a 0403 + 02321809 a 0303 + 00828336 a 0302 + 02019431 v 0301 + 02321809 a 0201 + 02321809 a 0101 | possessing muscular strength -05030680 07 n 03 might 0 mightiness 0 power 2 003 @ 05029706 n 0000 + 01826575 a 0201 + 01826575 a 0101 | physical strength -05030806 07 n 04 vigor 0 vigour 0 dynamism 1 heartiness 1 006 @ 05029706 n 0000 + 01171746 a 0401 + 01171606 a 0401 + 00808191 a 0302 + 02039845 a 0101 + 00875422 a 0101 | active strength of body or mind -05031012 07 n 04 robustness 0 hardiness 0 lustiness 0 validity 2 004 @ 05029706 n 0000 + 01171746 a 0303 + 02038994 a 0201 + 02037708 a 0101 | the property of being strong and healthy in constitution -05031214 07 n 03 huskiness 1 ruggedness 0 toughness 0 003 @ 05029706 n 0000 + 00707366 a 0201 + 02038126 a 0103 | the property of being big and strong -05031367 07 n 02 smallness 3 littleness 3 003 @ 05040275 n 0000 + 01455732 a 0201 + 01455732 a 0102 | the property of having relatively little strength or vigor; "the smallness of her voice" -05031560 07 n 02 stoutness 2 stalwartness 0 004 @ 05029706 n 0000 + 01991586 a 0201 + 02038994 a 0103 + 01991586 a 0102 | the property of being strong and resolute -05031726 07 n 01 sturdiness 0 002 @ 05029706 n 0000 + 00707795 a 0101 | the property of something that is strongly built -05031849 07 n 02 firmness 3 soundness 0 004 @ 05029706 n 0000 + 01171213 a 0202 + 01171076 a 0101 ! 05160173 n 0201 | the muscle tone of healthy tissue; "his muscular firmness" -05032028 07 n 02 indomitability 0 invincibility 0 003 @ 05029706 n 0000 + 00570322 a 0201 + 00570099 a 0101 | the property being difficult or impossible to defeat -05032193 07 n 01 fortitude 0 003 @ 04857083 n 0000 @ 04847733 n 0000 ~ 05032351 n 0000 | strength of mind that enables one to endure adversity with courage -05032351 07 n 06 backbone 0 grit 0 guts 0 moxie 0 sand 0 gumption 0 004 @ 05032193 n 0000 ;u 07075172 n 0000 + 00266634 a 0301 + 00263994 a 0204 | fortitude and determination; "he didn't have the guts to try it" -05032565 07 n 01 endurance 0 006 @ 05029706 n 0000 + 00668099 v 0102 ~ 05032795 n 0000 ~ 05032918 n 0000 ~ 05033291 n 0000 ~ 05033410 n 0000 | the power to withstand hardship or stress; "the marathon tests a runner's endurance" -05032795 07 n 01 sufferance 0 002 @ 05032565 n 0000 + 00065070 v 0101 | patient endurance especially of pain or distress -05032918 07 n 03 stamina 0 staying_power 0 toughness 1 002 @ 05032565 n 0000 ~ 05033046 n 0000 | enduring strength and energy -05033046 07 n 01 legs 0 002 @ 05032918 n 0000 ;u 07157273 n 0000 | staying power; "that old Broadway play really has legs" -05033171 07 n 01 wiriness 0 002 @ 05001482 n 0000 + 00991584 a 0102 | the property of being lean and tough and sinewy -05033291 07 n 02 long-sufferance 0 long-suffering 0 001 @ 05032565 n 0000 | patient endurance of pain or unhappiness -05033410 07 n 01 tolerance 3 002 @ 05032565 n 0000 ~ 05033569 n 0000 | the power or capacity of an organism to tolerate unfavorable environmental conditions -05033569 07 n 01 capacity 1 001 @ 05033410 n 0000 | tolerance for alcohol; "he had drunk beyond his capacity" -05033681 07 n 01 invulnerability 0 004 @ 05029706 n 0000 + 02525206 a 0101 ! 05042871 n 0101 ~ 05033906 n 0000 | the property of being invulnerable; the property of being incapable of being hurt (physically or emotionally) -05033906 07 n 01 immunity 0 002 @ 05033681 n 0000 + 00072281 a 0101 | the quality of being unaffected by something; "immunity to criticism" -05034048 07 n 01 power_of_appointment 0 001 @ 05196582 n 0000 | authority given (in a will or deed) by a donor to a donee to appoint the beneficiaries of the donor's property -05034225 07 n 03 potency 0 effectiveness 1 strength 8 004 @ 05190804 n 0000 + 01824244 a 0101 = 01824244 a 0000 = 01824751 a 0000 | capacity to produce strong physiological or chemical effects; "the toxin's potency"; "the strength of the drinks" -05034473 07 n 02 valence 1 valency 1 006 @ 05190804 n 0000 ;c 06084469 n 0000 + 02822601 a 0201 = 01546222 a 0000 = 01546349 a 0000 ~ 05034761 n 0000 | (chemistry) a property of atoms or radicals; their combining power given in terms of the number of hydrogen atoms (or the equivalent) -05034761 07 n 02 covalence 0 covalency 0 003 @ 05034473 n 0000 + 02705254 a 0201 + 02705254 a 0101 | valence characterized by the sharing of electrons in a chemical compound; the number of pairs of electrons an atom can share -05034989 07 n 02 valence 2 valency 2 007 @ 05190804 n 0000 ;c 06037666 n 0000 = 01546593 a 0000 = 01546826 a 0000 = 01547007 a 0000 = 01547831 a 0000 = 01547961 a 0000 | (biology) a relative capacity to unite or react or interact as with antigens or a biological substrate -05035264 07 n 01 sea_power 0 002 @ 05203649 n 0000 ;c 08199025 n 0000 | naval strength -05035353 07 n 03 force 0 forcefulness 0 strength 6 006 @ 05036394 n 0000 + 00156575 a 0202 + 00841403 a 0201 ~ 05035712 n 0000 ~ 05035820 n 0000 ~ 05035961 n 0000 | physical energy or intensity; "he hit with all the force he could muster"; "it was destroyed by the strength of the gale"; "a government has not the vitality and forcefulness of a living man" -05035712 07 n 01 brunt 0 001 @ 05035353 n 0000 | main force of a blow etc; "bore the brunt of the attack" -05035820 07 n 02 momentum 0 impulse 0 001 @ 05035353 n 0000 | an impelling force or strength; "the car's momentum carried it off the road" -05035961 07 n 04 energy 0 vigor 2 vigour 2 zip 0 008 @ 05035353 n 0000 + 00874226 a 0408 + 02039845 a 0201 + 00875422 a 0201 + 00873603 a 0101 + 00559102 v 0102 + 00022686 v 0104 ~ 05036237 n 0000 | forceful exertion; "he plays tennis with great energy"; "he's full of zip" -05036237 07 n 02 athleticism 0 strenuosity 0 002 @ 05035961 n 0000 + 00875235 a 0201 | intense energy; "his music is characterized by a happy athleticism" -05036394 07 n 02 intensity 0 intensiveness 0 012 @ 05093890 n 0000 + 01512275 a 0201 + 01514374 a 0201 + 01509527 a 0101 + 00290302 v 0102 + 00227165 v 0101 + 00226566 v 0101 ~ 05035353 n 0000 ~ 05036715 n 0000 ~ 05037394 n 0000 ~ 05037617 n 0000 ~ 05037813 n 0000 | high level or degree; the property of being intense -05036715 07 n 03 badness 1 severity 1 severeness 3 011 @ 05036394 n 0000 + 01510444 a 0301 + 02322512 a 0303 + 01513050 a 0301 + 00651039 a 0305 + 01129185 a 0201 + 01513050 a 0201 + 00478311 a 0101 + 01510444 a 0101 ~ 05037037 n 0000 ~ 05037197 n 0000 | used of the degree of something undesirable e.g. pain or weather -05037037 07 n 02 foulness 1 raininess 0 001 @ 05036715 n 0000 | (of weather) the badness of the weather; "they were wearied with the foulness of the weather" -05037197 07 n 02 seriousness 1 distressfulness 0 003 @ 05036715 n 0000 + 01189386 a 0202 + 00651039 a 0104 | the quality of arousing fear or distress; "he learned the seriousness of his illness" -05037394 07 n 02 vehemence 1 emphasis 0 004 @ 05036394 n 0000 + 02319765 a 0201 + 00156575 a 0201 ~ 05037737 n 0000 | intensity or forcefulness of expression; "the vehemence of his denial"; "his emphasis on civil rights" -05037617 07 n 01 top 2 001 @ 05036394 n 0000 | the greatest possible intensity; "he screamed at the top of his lungs" -05037737 07 n 01 overemphasis 0 001 @ 05037394 n 0000 | too much emphasis -05037813 07 n 07 ferocity 0 fierceness 0 furiousness 0 fury 0 vehemence 0 violence 0 wildness 2 015 @ 05036394 n 0000 + 00304144 a 0705 + 01514141 a 0702 + 02510879 a 0601 + 02323823 a 0501 + 00304144 a 0402 + 02511528 a 0303 + 00304144 a 0302 + 00114454 a 0303 + 02511528 a 0202 + 00304949 a 0202 + 01507808 a 0202 + 01511854 a 0201 + 02511528 a 0101 ~ 05038251 n 0000 | the property of being wild or turbulent; "the storm's violence" -05038251 07 n 02 savageness 0 savagery 1 005 @ 05037813 n 0000 + 02389520 a 0103 + 02511528 a 0104 + 00412788 a 0103 + 01263013 a 0106 | the property of being untamed and ferocious; "the coastline is littered with testaments to the savageness of the waters"; "a craving for barbaric splendor, for savagery and color and the throb of drums" -05038593 07 n 01 concentration 2 006 @ 04916342 n 0000 + 00237511 v 0101 ~ 05038823 n 0000 ~ 05038959 n 0000 ~ 05039907 n 0000 ~ 05040081 n 0000 | the strength of a solution; number of molecules of a substance in a given volume -05038823 07 n 02 titer 0 titre 0 002 @ 05038593 n 0000 + 00491910 v 0201 | the concentration of a solution as determined by titration -05038959 07 n 01 hydrogen_ion_concentration 0 002 @ 05038593 n 0000 ~ 05039106 n 0000 | the number of moles of hydrogen ions per cubic decimeter -05039106 07 n 02 pH 0 pH_scale 0 005 @ 05038959 n 0000 ;c 06084469 n 0000 ~ 05039526 n 0000 ~ 05039709 n 0000 ~ 05039819 n 0000 | (from potential of Hydrogen) the logarithm of the reciprocal of hydrogen-ion concentration in gram atoms per liter; provides a measure on a scale from 0 to 14 of the acidity or alkalinity of a solution (where 7 is neutral and greater than 7 is more basic and less than 7 is more acidic); -05039526 07 n 01 acidity 1 003 @ 05039106 n 0000 ! 05039709 n 0101 ~ 05039633 n 0000 | pH values below 7 -05039633 07 n 01 hyperacidity 0 001 @ 05039526 n 0000 | excessive acidity -05039709 07 n 01 alkalinity 0 003 @ 05039106 n 0000 + 00025728 a 0101 ! 05039526 n 0101 | pH values above 7 -05039819 07 n 01 neutrality 1 002 @ 05039106 n 0000 + 01930004 a 0103 | pH value of 7 -05039907 07 n 02 molality 0 molal_concentration 0 002 @ 05038593 n 0000 + 02900381 a 0101 | concentration measured by the number of moles of solute per kilogram of solvent -05040081 07 n 03 molarity 0 molar_concentration 0 M 0 003 @ 05038593 n 0000 + 02900219 a 0101 + 02900081 a 0101 | concentration measured by the number of moles of solute per liter of solution -05040275 07 n 01 weakness 0 017 @ 04916342 n 0000 + 02040233 a 0107 + 02324397 a 0101 ! 05029706 n 0101 ~ 05031367 n 0000 ~ 05040833 n 0000 ~ 05040939 n 0000 ~ 05041165 n 0000 ~ 05041320 n 0000 ~ 05041503 n 0000 ~ 05041595 n 0000 ~ 05041712 n 0000 ~ 05041871 n 0000 ~ 05042012 n 0000 ~ 05042138 n 0000 ~ 05042283 n 0000 ~ 05042871 n 0000 | the property of lacking physical or mental strength; liability to failure under pressure or stress or strain; "his weakness increased as he became older"; "the weakness of the span was overlooked until it collapsed" -05040833 07 n 01 adynamia 0 001 @ 05040275 n 0000 | lack of strength or vigor (especially from illness) -05040939 07 n 02 feebleness 0 tenuity 2 004 @ 05040275 n 0000 + 02325304 a 0101 + 02325097 a 0102 + 02164913 a 0204 | the quality of lacking intensity or substance; "a shrill yet sweet tenuity of voice"- Nathaniel Hawthorne -05041165 07 n 01 faintness 2 002 @ 05040275 n 0000 + 02325097 a 0101 | the property of being without strength; "the faintness or potency of the feeling" -05041320 07 n 02 flimsiness 0 shoddiness 0 004 @ 05040275 n 0000 + 02325642 a 0202 + 02325484 a 0101 + 00615457 a 0102 | the property of weakness by virtue of careless construction -05041503 07 n 02 fragility 2 delicacy 2 001 @ 05040275 n 0000 | lack of physical strength -05041595 07 n 01 insubstantiality 2 002 @ 05040275 n 0000 + 00625774 a 0101 | lack of solid substance and strength -05041712 07 n 01 attenuation 0 002 @ 05040275 n 0000 + 00226379 v 0102 | the property of something that has been weakened or reduced in thickness or density -05041871 07 n 01 enervation 0 002 @ 05040275 n 0000 + 00389856 v 0101 | lack of vitality; "an enervation of mind greater than any fatigue" -05042012 07 n 01 fatigability 0 001 @ 05040275 n 0000 | susceptibility to fatigue; a tendency to get tired or lose strength -05042138 07 n 04 inanition 2 lassitude 0 lethargy 0 slackness 2 001 @ 05040275 n 0000 | weakness characterized by a lack of vitality or energy -05042283 07 n 03 weak_part 0 weak_spot 0 soft_spot 0 005 @ 05040275 n 0000 ! 05030149 n 0101 ~ 05042468 n 0000 ~ 05042573 n 0000 ~ 05042720 n 0000 | a place of especial vulnerability -05042468 07 n 01 Achilles'_heel 0 001 @ 05042283 n 0000 | a seemingly small but actual mortal weakness -05042573 07 n 01 jugular 0 002 @ 05042283 n 0000 + 02852756 a 0101 | a vital part that is vulnerable to attack; "he always goes for the jugular" -05042720 07 n 01 underbelly 0 001 @ 05042283 n 0000 | the quality of being weak or unprotected; "the soft underbelly of the Axis"- Winston Churchill -05042871 07 n 01 vulnerability 0 008 @ 05040275 n 0000 + 02523275 a 0101 ! 05033681 n 0101 ~ 05043091 n 0000 ~ 05043349 n 0000 ~ 05043459 n 0000 ~ 05043755 n 0000 ~ 05043973 n 0000 | susceptibility to injury or attack -05043091 07 n 03 defenselessness 0 defencelessness 0 unprotectedness 0 007 @ 05042871 n 0000 + 01886407 a 0301 + 02524032 a 0202 + 00143376 a 0202 + 02524032 a 0101 + 01886783 a 0102 + 00143376 a 0101 | the property of being helpless in the face of attack -05043349 07 n 01 assailability 0 002 @ 05042871 n 0000 + 02523664 a 0101 | vulnerability to forceful attack -05043459 07 n 01 destructibility 0 005 @ 05042871 n 0000 + 00737973 a 0101 ! 05043621 n 0101 = 00737973 a 0000 = 00738368 a 0000 | vulnerability to destruction -05043621 07 n 01 indestructibility 0 003 @ 05053688 n 0000 + 00738368 a 0101 ! 05043459 n 0101 | the strength to resist destruction -05043755 07 n 04 fragility 1 breakability 0 frangibleness 0 frangibility 0 005 @ 05042871 n 0000 + 00709446 a 0401 + 00709446 a 0301 + 00708017 a 0201 + 00709215 a 0102 | quality of being easily damaged or destroyed -05043973 07 n 01 exposure 0 004 @ 05042871 n 0000 + 02112029 v 0101 ~ 05044215 n 0000 ~ 05044387 n 0000 | vulnerability to the elements; to the action of heat or cold or wind or rain; "exposure to the weather" or "they died from exposure"; -05044215 07 n 02 windage 2 wind_exposure 0 001 @ 05043973 n 0000 | exposure to the wind (as the exposed part of a vessel's hull which is responsible for wind resistance) -05044387 07 n 02 solarization 0 solarisation 0 003 @ 05043973 n 0000 + 02112546 v 0204 + 02112546 v 0103 | exposure to the rays of the sun -05044528 07 n 01 temporal_property 0 004 @ 04916342 n 0000 ~ 05044673 n 0000 ~ 05051249 n 0000 ~ 05058580 n 0000 | a property relating to time -05044673 07 n 02 temporal_arrangement 0 temporal_order 0 003 @ 05044528 n 0000 ~ 05044822 n 0000 ~ 05046009 n 0000 | arrangement of events in time -05044822 07 n 05 sequence 0 chronological_sequence 0 succession 0 successiveness 0 chronological_succession 0 010 @ 05044673 n 0000 + 01667729 a 0405 + 02406585 v 0301 + 01667729 a 0103 + 00920125 v 0101 + 00660571 v 0101 ~ 05045208 n 0000 ~ 05045381 n 0000 ~ 05045680 n 0000 ~ 05045841 n 0000 | a following of one thing after another in time; "the doctor saw a sequence of patients" -05045208 07 n 02 rain 0 pelting 0 002 @ 05044822 n 0000 + 01507914 v 0201 | anything happening rapidly or in quick successive; "a rain of bullets"; "a pelting of insults" -05045381 07 n 01 rotation 0 004 @ 05044822 n 0000 + 02393894 v 0101 + 01096305 v 0101 + 00245913 v 0101 | a planned recurrent sequence (of crops or personnel etc.); "crop rotation makes a balanced demand on the fertility of the soil"; "the manager had only four starting pitchers in his rotation" -05045680 07 n 01 row 0 001 @ 05044822 n 0000 | a continuous chronological succession without an interruption; "they won the championship three years in a row" -05045841 07 n 01 run 0 001 @ 05044822 n 0000 | an unbroken chronological sequence; "the play had a long run on Broadway"; "the team enjoyed a brief run of victories" -05046009 07 n 01 timing 0 022 @ 05044673 n 0000 + 00678547 v 0101 = 00125711 a 0000 = 00127296 a 0000 = 00812952 a 0000 = 00815941 a 0000 = 00816481 a 0000 = 01727926 a 0000 = 01731351 a 0000 = 01732270 a 0000 ~ 05046471 n 0000 ~ 05046659 n 0000 ~ 05047059 n 0000 ~ 05047778 n 0000 ~ 05047956 n 0000 ~ 05048123 n 0000 ~ 05049253 n 0000 ~ 05049458 n 0000 ~ 05049656 n 0000 ~ 05049930 n 0000 ~ 05050115 n 0000 ~ 05051088 n 0000 | the time when something happens -05046471 07 n 03 approach 0 approaching 0 coming 0 003 @ 05046009 n 0000 + 00341917 v 0301 + 01849746 v 0101 | the temporal property of becoming nearer in time; "the approach of winter" -05046659 07 n 01 earliness 0 007 @ 05046009 n 0000 + 00817424 a 0101 + 00819852 a 0101 + 00812952 a 0101 ! 05047059 n 0101 ~ 05046865 n 0000 ~ 05047279 n 0000 | quality of coming early or earlier in time -05046865 07 n 01 forwardness 1 002 @ 05046659 n 0000 + 01876555 a 0102 | an advanced stage; "the forwardness of the harvest this year"; "the arts are in no kind of forwardness in this matter" -05047059 07 n 01 lateness 0 008 @ 05046009 n 0000 + 01730444 a 0101 + 01901186 a 0102 + 00819235 a 0101 + 00820721 a 0101 + 00816481 a 0101 ! 05046659 n 0101 ~ 05047617 n 0000 | quality of coming late or later in time -05047279 07 n 06 priority 0 antecedence 0 antecedency 0 anteriority 1 precedence 0 precedency 0 012 @ 05046659 n 0000 + 02712443 v 0602 + 00126497 a 0501 + 02712443 v 0502 + 00122128 a 0401 + 00121865 a 0301 + 02712443 v 0305 + 00121865 a 0201 + 02712443 v 0205 + 00122128 a 0102 + 00660381 v 0101 ! 05047617 n 0101 | preceding in time -05047617 07 n 03 posteriority 1 subsequentness 0 subsequence 0 004 @ 05047059 n 0000 + 00122626 a 0301 + 00122626 a 0201 ! 05047279 n 0101 | following in time -05047778 07 n 02 punctuality 0 promptness 1 004 @ 05046009 n 0000 + 01900630 a 0201 + 01900349 a 0101 ! 05047956 n 0101 | the quality or habit of adhering to an appointed time -05047956 07 n 01 tardiness 0 003 @ 05046009 n 0000 + 01901186 a 0103 ! 05047778 n 0101 | the quality or habit of not adhering to a correct or usual or expected time -05048123 07 n 02 simultaneity 0 simultaneousness 0 004 @ 05046009 n 0000 + 02378496 a 0207 + 02378496 a 0107 ~ 05048301 n 0000 | happening or existing or done at the same time -05048301 07 n 04 concurrence 0 coincidence 1 conjunction 0 co-occurrence 0 010 @ 05048123 n 0000 + 02378496 a 0405 + 02378496 a 0201 + 00345312 v 0202 + 02378496 a 0104 + 00345312 v 0101 ~ 05048690 n 0000 ~ 05048833 n 0000 ~ 05048948 n 0000 ~ 05049137 n 0000 | the temporal property of two things happening at the same time; "the interval determining the coincidence gate is adjustable" -05048690 07 n 01 concomitance 0 002 @ 05048301 n 0000 + 00122844 a 0104 | occurrence or existence together or in connection with one another -05048833 07 n 01 overlap 0 002 @ 05048301 n 0000 + 02660631 v 0101 | the property of partial coincidence in time -05048948 07 n 02 contemporaneity 2 contemporaneousness 2 004 @ 05048301 n 0000 + 02378191 a 0203 + 02378872 a 0101 + 02378191 a 0103 | the quality of belonging to the same period of time -05049137 07 n 01 unison 2 001 @ 05048301 n 0000 | occurring together or simultaneously; "the two spoke in unison" -05049253 07 n 02 seasonableness 0 timeliness 1 007 @ 05046009 n 0000 + 01900771 a 0201 + 01661529 a 0201 ! 05049458 n 0202 + 01661529 a 0102 + 01494586 a 0101 ! 05049458 n 0101 | being at the right time -05049458 07 n 02 unseasonableness 0 untimeliness 1 006 @ 05046009 n 0000 + 00815000 a 0202 ! 05049253 n 0202 + 01662119 a 0102 + 01494740 a 0101 ! 05049253 n 0101 | being at an inappropriate time -05049656 07 n 01 pastness 0 005 @ 05046009 n 0000 + 01727926 a 0101 ! 05050115 n 0101 ! 05049930 n 0101 ~ 05049808 n 0000 | the quality of being past -05049808 07 n 02 recency 1 recentness 1 002 @ 05049656 n 0000 + 01730444 a 0202 | a time immediately before the present -05049930 07 n 01 futurity 0 006 @ 05046009 n 0000 + 01294975 a 0101 + 01884353 a 0101 + 01732270 a 0101 ! 05049656 n 0101 ! 05050115 n 0101 | the quality of being in or of the future -05050115 07 n 02 presentness 0 nowness 0 005 @ 05046009 n 0000 + 01731351 a 0101 ! 05049930 n 0101 ! 05049656 n 0101 ~ 05050379 n 0000 | the quality of being the present; "a study of the pastness of the present and...of the presentness of the past"- R.E.Spiller -05050379 07 n 03 currentness 0 currency 1 up-to-dateness 0 008 @ 05050115 n 0000 + 00972642 a 0301 + 00668208 a 0301 + 00666058 a 0201 + 00666058 a 0101 = 00666058 a 0000 = 00668571 a 0000 ~ 05050668 n 0000 | the property of belonging to the present time; "the currency of a slang term" -05050668 07 n 05 modernity 0 modernness 0 modernism 0 contemporaneity 0 contemporaneousness 0 011 @ 05050379 n 0000 + 02378872 a 0501 + 00972902 a 0303 + 00820975 a 0201 + 00414354 a 0201 + 00972902 a 0202 + 01876261 a 0104 + 00414354 a 0101 + 00972902 a 0102 + 01535709 a 0101 = 01535709 a 0000 | the quality of being current or of the present; "a shopping mall would instill a spirit of modernity into this village" -05051088 07 n 02 spark_advance 0 lead 1 001 @ 05046009 n 0000 | the timing of ignition relative to the position of the piston in an internal-combustion engine -05051249 07 n 02 duration 0 length 1 011 @ 05044528 n 0000 + 01439155 a 0203 = 01437963 a 0000 = 01442186 a 0000 ~ 05051601 n 0000 ~ 05051896 n 0000 ~ 05052387 n 0000 ~ 05052832 n 0000 ~ 05053042 n 0000 ~ 05053215 n 0000 ~ 05054863 n 0000 | continuance in time; "the ceremony was of short duration"; "he complained about the length of time required" -05051601 07 n 01 longness 1 004 @ 05051249 n 0000 + 01437963 a 0101 ! 05052832 n 0101 ~ 05051734 n 0000 | duration as an extension -05051734 07 n 02 longevity 0 length_of_service 0 001 @ 05051601 n 0000 | duration of service; "her longevity as a star"; "had unusual longevity in the company" -05051896 07 n 04 lengthiness 1 prolongation 1 continuation 0 protraction 0 012 @ 05051249 n 0000 + 00317888 v 0402 + 00781000 v 0301 + 02747709 v 0301 + 02727462 v 0303 + 02684924 v 0301 + 02410175 v 0302 + 00118523 v 0301 + 02679530 v 0201 + 00317888 v 0201 + 01439155 a 0103 ~ 05052243 n 0000 | the consequence of being lengthened in duration -05052243 07 n 01 fermata 0 002 @ 05051896 n 0000 ;c 07020895 n 0000 | (music) a prolongation of unspecified length on a note or chord or rest -05052387 07 n 01 endlessness 0 006 @ 05051249 n 0000 + 01008174 a 0101 + 01439784 a 0101 + 01007947 a 0102 + 00596211 a 0101 ~ 05052587 n 0000 | the property of being (or seeming to be) without end -05052587 07 n 04 continuousness 0 ceaselessness 0 incessancy 0 incessantness 0 005 @ 05052387 n 0000 + 00595299 a 0403 + 00595299 a 0303 + 00595299 a 0201 + 00594413 a 0101 | the quality of something that continues without end or interruption -05052832 07 n 01 shortness 2 005 @ 05051249 n 0000 + 01442186 a 0101 ! 05051601 n 0101 ~ 05134122 n 0000 ~ 05134238 n 0000 | the property of being of short temporal extent; "the shortness of air travel time" -05053042 07 n 03 brevity 0 briefness 0 transience 1 004 @ 05051249 n 0000 + 01756292 a 0304 + 00547166 a 0201 + 01442826 a 0101 | the attribute of being brief or fleeting -05053215 07 n 02 permanence 0 permanency 0 011 @ 05051249 n 0000 + 01754421 a 0201 + 01754421 a 0101 ! 05054863 n 0101 = 01754421 a 0000 = 01755627 a 0000 ~ 05053527 n 0000 ~ 05053688 n 0000 ~ 05054537 n 0000 ~ 05054746 n 0000 ~ 05056102 n 0000 | the property of being able to exist for an indefinite duration -05053527 07 n 02 perpetuity 0 sempiternity 0 003 @ 05053215 n 0000 + 01755024 a 0106 + 00595299 a 0105 | the property of being perpetual (seemingly ceaseless) -05053688 07 n 04 lastingness 0 durability 0 enduringness 0 strength 2 014 @ 05053215 n 0000 + 01754873 a 0302 + 02124096 a 0201 + 01439496 a 0201 + 01754049 a 0201 + 02291500 a 0101 + 01439496 a 0102 + 01758339 a 0102 + 01754421 a 0102 ~ 05030251 n 0000 ~ 05043621 n 0000 ~ 05054130 n 0000 ~ 05054312 n 0000 ~ 05054426 n 0000 | permanence by virtue of the power to resist stress or force; "they advertised the durability of their products" -05054130 07 n 02 continuity 0 persistence 2 004 @ 05053688 n 0000 + 00593071 a 0201 + 00594413 a 0101 = 00594413 a 0000 | the property of a continuous and connected period of time -05054312 07 n 01 changelessness 1 002 @ 05053688 n 0000 + 02506029 a 0101 | the property of remaining unchanged -05054426 07 n 01 everlastingness 0 002 @ 05053688 n 0000 + 01755024 a 0105 | the property of lasting forever -05054537 07 n 03 imperishability 0 imperishableness 0 imperishingness 0 002 @ 05053215 n 0000 + 01753922 a 0101 | the property of being resistant to decay; "he advertised the imperishability of the product" -05054746 07 n 01 perdurability 0 002 @ 05053215 n 0000 + 01754049 a 0103 | the property of being extremely durable -05054863 07 n 02 impermanence 0 impermanency 0 009 @ 05051249 n 0000 + 01007120 a 0201 + 01755627 a 0201 + 01007120 a 0101 + 01755627 a 0101 ! 05053215 n 0101 ~ 05055141 n 0000 ~ 05055278 n 0000 ~ 05055974 n 0000 | the property of not existing for indefinitely long durations -05055141 07 n 01 temporariness 0 003 @ 05054863 n 0000 + 01089775 a 0102 + 01755627 a 0102 | the property of lasting only a short time -05055278 07 n 03 transience 0 transiency 0 transitoriness 0 005 @ 05054863 n 0000 + 01756292 a 0305 + 01756292 a 0204 ~ 05055503 n 0000 ~ 05055689 n 0000 | an impermanence that suggests the inevitability of ending or dying -05055503 07 n 02 fugacity 0 fugaciousness 0 004 @ 05055278 n 0000 ;c 00017222 n 0000 + 01756292 a 0206 + 01756292 a 0106 | the lack of enduring qualities (used chiefly of plant parts) -05055689 07 n 03 ephemerality 0 ephemeralness 0 fleetingness 0 004 @ 05055278 n 0000 + 01443097 a 0301 + 01756292 a 0201 + 01756292 a 0101 | the property of lasting for a very short time -05055878 07 n 01 fugacity 1 001 @ 05009170 n 0000 | the tendency of a gas to expand or escape -05055974 07 n 01 mortality 0 003 @ 05054863 n 0000 + 01557614 a 0101 ! 05056102 n 0101 | the quality or state of being mortal -05056102 07 n 01 immortality 0 003 @ 05053215 n 0000 + 01557903 a 0101 ! 05055974 n 0101 | the quality or state of being immortal -05056234 07 n 01 viability 0 003 @ 04916342 n 0000 ;c 00004258 n 0000 + 00094941 a 0101 | (of living things) capable of normal growth and development -05056386 07 n 02 audio 0 audio_frequency 0 001 @ 15278281 n 0000 | an audible acoustic wave frequency -05056490 07 n 01 radio_frequency 0 012 @ 15278281 n 0000 #p 11451442 n 0000 ~ 05057061 n 0000 ~ 05057163 n 0000 ~ 05057275 n 0000 ~ 05057382 n 0000 ~ 05057485 n 0000 ~ 05057593 n 0000 ~ 05057695 n 0000 ~ 05057805 n 0000 ~ 05057917 n 0000 ~ 05058025 n 0000 | an electromagnetic wave frequency between audio and infrared -05056811 07 n 02 infrared 0 infrared_frequency 0 002 @ 15278281 n 0000 #p 11469691 n 0000 | the infrared region of the electromagnetic spectrum; electromagnetic wave frequencies below the visible range; "they could sense radiation in the infrared" -05057061 07 n 01 station 0 001 @ 05056490 n 0000 | the frequency assigned to a broadcasting station -05057163 07 n 02 extremely_low_frequency 0 ELF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | below 3 kilohertz -05057275 07 n 02 very_low_frequency 0 VLF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 3 to 30 kilohertz -05057382 07 n 02 low_frequency 1 LF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 30 to 300 kilohertz -05057485 07 n 02 medium_frequency 0 MF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 300 to 3000 kilohertz -05057593 07 n 02 high_frequency 1 HF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 3 to 30 megahertz -05057695 07 n 02 very_high_frequency 0 VHF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 30 to 300 megahertz -05057805 07 n 02 ultrahigh_frequency 0 UHF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 300 to 3000 megahertz -05057917 07 n 02 superhigh_frequency 0 SHF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 3 to 30 gigahertz -05058025 07 n 02 extremely_high_frequency 0 EHF 0 002 @ 05056490 n 0000 #p 11451442 n 0000 | 30 to 300 gigahertz -05058140 07 n 03 speed 0 swiftness 0 fastness 0 016 @ 05058580 n 0000 + 01270486 a 0303 + 00981818 a 0301 + 00976508 a 0301 + 00978199 a 0202 + 00979366 a 0102 + 02055649 v 0102 + 00439343 v 0102 + 02055975 v 0101 + 02058994 v 0105 + 00438178 v 0103 = 00976508 a 0000 = 00980527 a 0000 ~ 05060189 n 0000 ~ 05061619 n 0000 ~ 05061805 n 0000 | a rate (usually rapid) at which something happens; "the project advanced with gratifying speed" -05058580 07 n 02 pace 1 rate 0 008 @ 05044528 n 0000 + 00702601 v 0101 + 01929254 v 0101 ~ 05058140 n 0000 ~ 05058893 n 0000 ~ 05059132 n 0000 ~ 05061977 n 0000 ~ 05062518 n 0000 | the relative speed of progress or change; "he lived at a fast pace"; "he works at a great rate"; "the pace of events accelerated" -05058893 07 n 01 beat 0 002 @ 05058580 n 0000 + 02093610 v 0101 | a regular rate of repetition; "the cox raised the beat" -05059017 07 n 01 fleetness 0 002 @ 05059132 n 0000 + 00978199 a 0101 | rapidity of movement; "fleetness of foot" -05059132 07 n 05 celerity 0 quickness 0 rapidity 0 rapidness 0 speediness 0 016 @ 05058580 n 0000 + 00979366 a 0502 + 00979862 a 0502 + 00979862 a 0401 + 00979697 a 0401 + 00979862 a 0301 + 00979697 a 0301 + 00978754 a 0203 + 01270486 a 0202 + 00979366 a 0201 + 00919018 a 0201 + 00032733 a 0203 ~ 05059017 n 0000 ~ 05059525 n 0000 ~ 05059830 n 0000 ~ 05060052 n 0000 | a rate that is rapid -05059525 07 n 04 immediacy 1 immediateness 1 instantaneousness 0 instancy 1 006 @ 05059132 n 0000 + 00979031 a 0402 + 00979031 a 0301 + 01579853 a 0201 + 01731882 a 0201 + 00978754 a 0201 | the quickness of action or occurrence; "the immediacy of their response"; "the instancy of modern communication" -05059830 07 n 04 dispatch 0 despatch 0 expedition 0 expeditiousness 0 004 @ 05059132 n 0000 + 00840510 a 0401 + 00840510 a 0301 + 02369633 v 0101 | the property of being prompt and efficient; "it was done with dispatch" -05060052 07 n 02 promptness 0 promptitude 0 002 @ 05059132 n 0000 + 00978754 a 0102 | the characteristic of doing things without delay -05060189 07 n 05 haste 0 hastiness 1 hurry 0 hurriedness 0 precipitation 1 007 @ 05058140 n 0000 + 01270175 a 0401 + 00459498 v 0303 + 01270868 a 0201 + 01270868 a 0101 + 01270704 a 0101 ~ 05060476 n 0000 | overly eager speed (and possible carelessness); "he soon regretted his haste" -05060476 07 n 06 abruptness 0 precipitateness 0 precipitousness 1 precipitance 0 precipitancy 0 suddenness 0 007 @ 05060189 n 0000 + 01143279 a 0601 + 01270868 a 0504 + 01270868 a 0404 + 01270868 a 0305 + 01270868 a 0203 + 01143585 a 0101 | the quality of happening with headlong haste or without warning -05060783 07 n 01 acceleration 0 005 @ 07296428 n 0000 + 00439343 v 0101 ! 05061345 n 0101 ~ 05061003 n 0000 ~ 05061149 n 0000 | an increase in rate of change; "modern science caused an acceleration of cultural change" -05061003 07 n 02 pickup 0 getaway 0 001 @ 05060783 n 0000 | the attribute of being capable of rapid acceleration; "his car has a lot of pickup" -05061149 07 n 01 precipitation 0 003 @ 05060783 n 0000 + 01644339 v 0101 + 01507596 v 0101 | an unexpected acceleration or hastening; "he is responsible for the precipitation of his own demise" -05061345 07 n 03 deceleration 0 slowing 0 retardation 0 008 @ 07296428 n 0000 + 02752567 v 0301 + 00439958 v 0305 + 00440580 v 0201 + 00439958 v 0202 + 00438495 v 0101 + 00439958 v 0101 ! 05060783 n 0101 | a decrease in rate of change; "the deceleration of the arms race" -05061619 07 n 01 execution_speed 0 002 @ 05058140 n 0000 ;c 06128570 n 0000 | (computer science) the speed with which a computational device can execute instructions; measured in MIPS -05061805 07 n 02 graduality 0 gradualness 0 003 @ 05058140 n 0000 + 01142804 a 0201 + 01142804 a 0101 | the quality of being gradual or of coming about by gradual stages -05061977 07 n 04 slowness 0 deliberation 1 deliberateness 1 unhurriedness 0 008 @ 05058580 n 0000 + 01737084 a 0401 + 01271700 a 0401 + 01271961 a 0302 + 00982602 a 0101 + 00980527 a 0101 ~ 05062255 n 0000 ~ 05062370 n 0000 | a rate demonstrating an absence of haste or hurry -05062255 07 n 01 leisureliness 0 002 @ 05061977 n 0000 + 01272176 a 0103 | slowness by virtue of being leisurely -05062370 07 n 02 dilatoriness 0 procrastination 0 002 @ 05061977 n 0000 + 02642610 v 0201 | slowness as a consequence of not getting around to it -05062518 07 n 01 sluggishness 1 003 @ 05058580 n 0000 + 00981703 a 0101 + 00036998 a 0103 | the pace of things that move relatively slowly; "the sluggishness of the economy"; "the sluggishness of the compass in the Arctic cold" -05062748 07 n 02 spatial_property 0 spatiality 0 008 @ 04916342 n 0000 + 02841066 a 0201 ~ 05062993 n 0000 ~ 05063853 n 0000 ~ 05064037 n 0000 ~ 05064827 n 0000 ~ 05065717 n 0000 ~ 05066333 n 0000 | any property relating to or occupying space -05062993 07 n 01 dimensionality 0 006 @ 05062748 n 0000 + 00660313 a 0101 + 02985102 a 0101 ~ 05063218 n 0000 ~ 05063349 n 0000 ~ 05063564 n 0000 | the spatial property of having dimensions; "all matter has dimensionality" -05063218 07 n 02 one-dimensionality 0 linearity 0 002 @ 05062993 n 0000 + 01417451 a 0201 | the property of having one dimension -05063349 07 n 03 two-dimensionality 0 flatness 0 planeness 0 006 @ 05062993 n 0000 + 00910101 a 0303 + 02413037 a 0202 + 00659259 a 0201 + 00910101 a 0201 + 00658942 a 0102 | the property of having two dimensions -05063564 07 n 02 three-dimensionality 0 third-dimensionality 0 003 @ 05062993 n 0000 + 00657198 a 0102 ~ 05063729 n 0000 | the property of having three dimensions -05063729 07 n 01 cubicity 0 003 @ 05063564 n 0000 + 00657198 a 0101 = 00657198 a 0000 | the property of resembling a cube -05063853 07 n 01 directionality 1 001 @ 05062748 n 0000 | the property of being directional or maintaining a direction; "the directionality of written English is from left to right" -05064037 07 n 05 shape 0 form 1 configuration 0 contour 0 conformation 0 018 @ 05062748 n 0000 + 01689752 v 0401 + 00142191 v 0101 = 02310895 a 0000 = 02311544 a 0000 ~ 04705324 n 0000 ~ 04705671 n 0000 ~ 05064541 n 0000 ~ 05064722 n 0000 ~ 05070032 n 0000 ~ 05070290 n 0000 ~ 05070849 n 0000 ~ 05071027 n 0000 ~ 05072663 n 0000 ~ 05072911 n 0000 ~ 05074057 n 0000 ~ 05074218 n 0000 ~ 05074690 n 0000 | any spatial attributes (especially as defined by outline); "he could barely make out their shapes" -05064541 07 n 01 topography 0 003 @ 05064037 n 0000 + 03018112 a 0102 + 03018112 a 0101 | the configuration of a surface and the relations among its man-made and natural features -05064722 07 n 01 lobularity 0 002 @ 05064037 n 0000 + 02948068 a 0101 | the property of having lobules -05064827 07 n 04 symmetry 0 symmetricalness 0 correspondence 3 balance 2 010 @ 05062748 n 0000 ;c 06000644 n 0000 + 02371718 a 0201 + 02371718 a 0102 + 00552619 v 0101 + 00552619 v 0102 ! 05065717 n 0101 ~ 05065211 n 0000 ~ 05065386 n 0000 ~ 05065555 n 0000 | (mathematics) an attribute of a shape or relation; exact reflection of form on opposite sides of a dividing line or plane -05065211 07 n 02 regularity 4 geometrical_regularity 0 002 @ 05064827 n 0000 + 02372520 a 0102 | a property of polygons: the property of having equal sides and equal angles -05065386 07 n 03 bilaterality 0 bilateralism 0 bilateral_symmetry 0 002 @ 05064827 n 0000 + 02372118 a 0101 | the property of being symmetrical about a vertical plane -05065555 07 n 01 radial_symmetry 0 002 @ 05064827 n 0000 ! 05066490 n 0101 | the property of symmetry about an axis; "the starfish illustrates radial symmetry" -05065717 07 n 03 asymmetry 0 dissymmetry 0 imbalance 0 011 @ 05062748 n 0000 ;c 06000644 n 0000 + 02373599 a 0102 + 02373599 a 0101 ! 05064827 n 0101 ~ 05066012 n 0000 ~ 05066195 n 0000 ~ 05066490 n 0000 ~ 05067007 n 0000 ~ 05067679 n 0000 ~ 05067807 n 0000 | (mathematics) a lack of symmetry -05066012 07 n 02 irregularity 4 geometrical_irregularity 0 003 @ 05065717 n 0000 + 00912094 a 0101 + 01962107 a 0101 | an irregular asymmetry in shape; an irregular spatial pattern -05066195 07 n 02 lopsidedness 0 skewness 0 003 @ 05065717 n 0000 + 01235706 a 0201 + 02312450 a 0104 | an oblique or slanting asymmetry -05066333 07 n 01 obliqueness 0 002 @ 05062748 n 0000 + 01718867 a 0101 | the property of being neither parallel nor perpendicular, but at a slanting angle -05066490 07 n 01 radial_asymmetry 0 003 @ 05065717 n 0000 ! 05065555 n 0101 ~ 05066626 n 0000 | the absence of symmetry about an axis -05066626 07 n 02 directivity 0 directionality 0 002 @ 05066490 n 0000 + 02713974 a 0201 | the property of a microphone or antenna of being more sensitive in one direction than in another; "the antenna received signals with no directivity" -05066867 07 n 02 directivity 1 directiveness 0 003 @ 04723816 n 0000 + 00199114 a 0203 + 00199114 a 0103 | the quality of being directive -05067007 07 n 02 handedness 0 laterality 1 005 @ 05065717 n 0000 + 02027704 a 0101 ~ 05067199 n 0000 ~ 05067367 n 0000 ~ 05067514 n 0000 | the property of using one hand more than the other -05067199 07 n 02 ambidexterity 0 ambidextrousness 0 003 @ 05067007 n 0000 + 02029752 a 0201 + 02029752 a 0101 | the property of being equally skillful with each hand -05067367 07 n 02 left-handedness 0 sinistrality 0 003 @ 05067007 n 0000 + 02029568 a 0201 + 02029167 a 0101 | preference for using the left hand -05067514 07 n 02 right-handedness 0 dextrality 0 004 @ 05067007 n 0000 + 02028865 a 0201 + 00441927 a 0103 + 02028612 a 0101 | preference for using the right hand -05067679 07 n 01 footedness 0 001 @ 05065717 n 0000 | the property of favoring one foot over the other (as in kicking a ball) -05067807 07 n 01 eyedness 0 001 @ 05065717 n 0000 | the property of favoring one eye over the other (as in taking aim) -05067928 07 n 01 occlusion 0 002 @ 05074774 n 0000 ;c 06047430 n 0000 | (dentistry) the normal spatial relation of the teeth when the jaws are closed -05068080 07 n 05 tilt 0 list 0 inclination 2 lean 0 leaning 0 006 @ 05074774 n 0000 + 01606574 v 0401 + 02038357 v 0401 + 02037090 v 0302 + 02038791 v 0201 + 02038357 v 0102 | the property possessed by a line or surface that departs from the vertical; "the tower had a pronounced tilt"; "the ship developed a list to starboard"; "he walked with a heavy inclination to the right" -05068461 07 n 02 gradient 1 slope 0 006 @ 05074774 n 0000 + 02037090 v 0201 ~ 05068716 n 0000 ~ 05069199 n 0000 ~ 05069624 n 0000 ~ 05069853 n 0000 | the property possessed by a line or surface that departs from the horizontal; "a five-degree gradient" -05068716 07 n 01 grade 1 005 @ 05068461 n 0000 + 01144359 a 0101 + 01307609 v 0101 ~ 05068918 n 0000 ~ 05069085 n 0000 | the gradient of a slope or road or other surface; "the road had a steep grade" -05068918 07 n 03 upgrade 0 rise 1 rising_slope 0 003 @ 05068716 n 0000 + 00433232 v 0204 + 02696801 v 0201 | the property possessed by a slope or surface that rises -05069085 07 n 01 downgrade 0 001 @ 05068716 n 0000 | the property possessed by a slope or surface that descends -05069199 07 n 03 pitch 1 rake 0 slant 0 007 @ 05068461 n 0000 + 01884577 v 0304 + 02038357 v 0304 + 02692558 v 0301 + 01884577 v 0105 + 02037090 v 0103 ~ 05069447 n 0000 | degree of deviation from a horizontal plane; "the roof had a steep pitch" -05069447 07 n 01 loft 0 002 @ 05069199 n 0000 ;c 00464894 n 0000 | (golf) the backward slant on the head of some golf clubs that is designed to drive the ball high in the air -05069624 07 n 03 abruptness 1 precipitousness 0 steepness 0 006 @ 05068461 n 0000 + 01206164 a 0301 + 01144887 a 0301 + 01145151 a 0202 + 01145151 a 0101 ! 05069853 n 0101 | the property possessed by a slope that is very steep -05069853 07 n 02 gradualness 1 gentleness 1 004 @ 05068461 n 0000 + 01144571 a 0202 + 01144359 a 0101 ! 05069624 n 0101 | the property possessed by a slope that is very gradual -05070032 07 n 02 concavity 0 concaveness 0 004 @ 05064037 n 0000 + 00535452 a 0201 + 00535452 a 0101 ~ 05070197 n 0000 | the property possessed by a concave shape -05070197 07 n 01 hollowness 0 001 @ 05070032 n 0000 | the property of having a sunken area -05070290 07 n 02 convexity 0 convexness 0 004 @ 05064037 n 0000 + 00537339 a 0201 + 00537339 a 0101 ~ 05070453 n 0000 | the property possessed by a convex shape -05070453 07 n 02 roundedness 0 bulginess 0 004 @ 05070290 n 0000 + 01353618 a 0205 + 02043898 a 0101 ~ 05070622 n 0000 | the property possessed by a rounded convexity -05070622 07 n 02 oblateness 0 ellipticity 0 004 @ 05070453 n 0000 + 02168132 a 0201 + 02046199 a 0202 + 02049918 a 0101 | the property possessed by a round shape that is flattened at the poles; "the oblateness of the planet" -05070849 07 n 01 angularity 0 005 @ 05064037 n 0000 + 02047807 a 0101 ! 05072911 n 0101 ~ 05071869 n 0000 ~ 05072523 n 0000 | the property possessed by a shape that has angles -05071027 07 n 01 narrowing 0 005 @ 05064037 n 0000 + 00304422 v 0103 ~ 05071185 n 0000 ~ 05071368 n 0000 ~ 13912992 n 0000 | an instance of becoming narrow -05071185 07 n 01 coarctation 0 002 @ 05071027 n 0000 ;c 06037666 n 0000 | (biology) a narrowing or constriction of a vessel or canal; especially a congenital narrowing of the aorta -05071368 07 n 01 taper 0 004 @ 05071027 n 0000 + 00392960 v 0102 ~ 05071556 n 0000 ~ 05071726 n 0000 | the property possessed by a shape that narrows toward a point (as a wedge or cone) -05071556 07 n 02 point 0 pointedness 0 004 @ 05071368 n 0000 + 01809655 a 0201 ! 05071726 n 0201 + 00392960 v 0103 | the property of a shape that tapers to a sharp tip -05071726 07 n 01 unpointedness 0 003 @ 05071368 n 0000 + 01811504 a 0102 ! 05071556 n 0102 | the property of having only a dull tip (if any) -05071869 07 n 02 rectangularity 0 oblongness 0 006 @ 05070849 n 0000 + 01435507 a 0201 + 02048977 a 0101 ~ 05072078 n 0000 ~ 05072208 n 0000 ~ 05072406 n 0000 | the property of being shaped like a rectangle -05072078 07 n 01 orthogonality 0 002 @ 05071869 n 0000 + 01720642 a 0101 | the quality of lying or intersecting at right angles -05072208 07 n 01 perpendicularity 0 003 @ 05071869 n 0000 + 01233347 a 0102 + 01720280 a 0101 | the quality of being at right angles to a given line or plane (especially the plane of the horizon) -05072406 07 n 01 squareness 0 002 @ 05071869 n 0000 + 02043217 a 0101 | the property of being shaped like a square -05072523 07 n 01 triangularity 0 003 @ 05070849 n 0000 + 00239847 a 0102 + 02049428 a 0101 | the property of being shaped like a triangle -05072663 07 n 02 curvature 1 curve 0 008 @ 05064037 n 0000 + 02316071 a 0201 + 02316071 a 0202 + 02034986 v 0202 + 02738701 v 0203 + 02034986 v 0102 ~ 05074374 n 0000 ~ 05074559 n 0000 | the property possessed by the curving of a line or surface -05072911 07 n 01 roundness 0 006 @ 05064037 n 0000 + 02040652 a 0101 ! 05070849 n 0101 ~ 05073131 n 0000 ~ 05073403 n 0000 ~ 05073559 n 0000 | the property possessed by a line or surface that is curved and not angular -05073131 07 n 06 sphericity 0 sphericalness 0 globosity 0 globularness 0 rotundity 0 rotundness 0 007 @ 05072911 n 0000 + 02047496 a 0601 + 02047496 a 0501 + 02041229 a 0404 + 02041229 a 0303 + 02041229 a 0207 + 02041229 a 0106 | the roundness of a 3-dimensional object -05073403 07 n 02 cylindricality 0 cylindricalness 0 003 @ 05072911 n 0000 + 02045723 a 0201 + 02045723 a 0101 | the roundness of a 3-dimensional cylinder -05073559 07 n 02 circularity 0 disk_shape 0 004 @ 05072911 n 0000 + 02040652 a 0102 ~ 05073723 n 0000 ~ 05073888 n 0000 | the roundness of a 2-dimensional figure -05073723 07 n 01 concentricity 0 003 @ 05073559 n 0000 + 00542953 a 0101 ! 05073888 n 0101 | the quality of having the same center (as circles inside one another) -05073888 07 n 01 eccentricity 1 003 @ 05073559 n 0000 + 00543200 a 0101 ! 05073723 n 0101 | a circularity that has a different center or deviates from a circular path -05074057 07 n 01 straightness 0 004 @ 05064037 n 0000 + 02314584 a 0101 + 02310895 a 0101 ! 05074218 n 0101 | freedom from crooks or curves or bends or angles -05074218 07 n 01 crookedness 0 003 @ 05064037 n 0000 + 02311544 a 0101 ! 05074057 n 0101 | having or distinguished by crooks or curves or bends or angles -05074374 07 n 02 curliness 0 waviness 0 006 @ 05072663 n 0000 + 01030691 a 0201 + 01030022 a 0101 ! 05074559 n 0101 = 01030022 a 0000 = 01030826 a 0000 | (of hair) a tendency to curl -05074559 07 n 01 straightness 1 003 @ 05072663 n 0000 + 01030826 a 0101 ! 05074374 n 0101 | (of hair) lack of a tendency to curl -05074690 07 n 01 stratification 0 001 @ 05064037 n 0000 | a layered configuration -05074774 07 n 02 position 0 spatial_relation 0 032 @ 00031921 n 0000 + 01987160 v 0101 = 00130778 a 0000 = 00131426 a 0000 = 00948103 a 0000 = 00948670 a 0000 = 00949548 a 0000 = 00950272 a 0000 = 00952395 a 0000 = 00952867 a 0000 ~ 05067928 n 0000 ~ 05068080 n 0000 ~ 05068461 n 0000 ~ 05075602 n 0000 ~ 05076237 n 0000 ~ 05077661 n 0000 ~ 05077863 n 0000 ~ 05078025 n 0000 ~ 05078147 n 0000 ~ 05078289 n 0000 ~ 05078450 n 0000 ~ 05078623 n 0000 ~ 05078894 n 0000 ~ 05079074 n 0000 ~ 05079180 n 0000 ~ 05079309 n 0000 ~ 05079474 n 0000 ~ 05079638 n 0000 ~ 06284573 n 0000 ~ 13777764 n 0000 ~ 13827426 n 0000 ~ 13836371 n 0000 | the spatial property of a place where or way in which something is situated; "the position of the hands on the clock"; "he specified the spatial relations of every piece of furniture on the stage" -05075602 07 n 02 placement 0 arrangement 0 016 @ 05074774 n 0000 + 01463963 v 0201 + 02695895 v 0101 + 02333689 v 0102 + 01711749 v 0104 + 01494310 v 0103 ~ 03385117 n 0000 ~ 05076069 n 0000 ~ 05076472 n 0000 ~ 05076709 n 0000 ~ 05076827 n 0000 ~ 05077146 n 0000 ~ 05077524 n 0000 ~ 05083200 n 0000 ~ 05083328 n 0000 ~ 05083567 n 0000 | the spatial property of the way in which something is placed; "the arrangement of the furniture"; "the placement of the chairs" -05076069 07 n 01 columniation 0 002 @ 05075602 n 0000 ;c 06123363 n 0000 | (architecture) the arrangement of columns (especially freestanding columns) in a structure -05076237 07 n 01 point_of_view 0 002 @ 05074774 n 0000 ~ 05076384 n 0000 | the spatial property of the position from which something is observed -05076384 07 n 01 camera_angle 0 001 @ 05076237 n 0000 | the point of view of a camera -05076472 07 n 02 composition 2 composing 0 001 @ 05075602 n 0000 | the spatial property resulting from the arrangement of parts in relation to each other and to the whole; "harmonious composition is essential in a serious work of art" -05076709 07 n 01 fenestration 0 002 @ 05075602 n 0000 ;c 06123363 n 0000 | the arrangement of windows in a building -05076827 07 n 03 proportion 1 proportionality 0 balance 0 002 @ 05075602 n 0000 + 00483466 v 0101 | harmonious arrangement or relation of parts or elements within a whole (as in a design); "in all perfectly beautiful objects there is found the opposition of one part to another and a reciprocal balance"- John Ruskin -05077146 07 n 01 alignment 0 003 @ 05075602 n 0000 + 00464321 v 0101 ~ 05077348 n 0000 | the spatial property possessed by an arrangement or position of things in a straight line or in parallel lines -05077348 07 n 01 true 0 002 @ 05077146 n 0000 + 00465291 v 0101 | proper alignment; the property possessed by something that is in correct or proper alignment; "out of true" -05077524 07 n 01 misalignment 0 002 @ 05075602 n 0000 + 00466327 v 0101 | the spatial property of things that are not properly aligned -05077661 07 n 01 coincidence 2 002 @ 05074774 n 0000 + 00561757 a 0101 | the quality of occupying the same position or area in space; "he waited for the coincidence of the target and the cross hairs" -05077863 07 n 02 dead_center 0 dead_centre 0 001 @ 05074774 n 0000 | the position of a crank when it is in line with the connecting rod and not exerting torque -05078025 07 n 01 centrality 0 003 @ 05074774 n 0000 + 00329831 a 0101 ! 05078147 n 0101 | the property of being central -05078147 07 n 01 marginality 0 003 @ 05074774 n 0000 + 00331889 a 0102 ! 05078025 n 0101 | the property of being marginal or on the fringes -05078289 07 n 01 anteriority 0 003 @ 05074774 n 0000 + 00130778 a 0101 ! 05078450 n 0101 | the quality of being in front or (in lower animals) toward the head -05078450 07 n 01 posteriority 0 004 @ 05074774 n 0000 ;c 02156871 n 0000 + 00131426 a 0101 ! 05078289 n 0101 | the quality of being toward the back or toward the rear end -05078623 07 n 02 outwardness 0 externality 0 005 @ 05074774 n 0000 + 01350225 a 0201 + 00948103 a 0201 ! 05078894 n 0101 ~ 04621524 n 0000 | the quality or state of being outside or directed toward or relating to the outside or exterior; "the outwardness of the world" -05078894 07 n 01 inwardness 0 003 @ 05074774 n 0000 + 01294583 a 0102 ! 05078623 n 0101 | the quality or state of being inward or internal; "the inwardness of the body's organs" -05079074 07 n 02 malposition 0 misplacement 0 002 @ 05074774 n 0000 + 01501793 v 0201 | faulty position -05079180 07 n 01 northernness 0 003 @ 05074774 n 0000 + 01601069 a 0102 ! 05079309 n 0101 | the property of being to the north -05079309 07 n 01 southernness 0 005 @ 05074774 n 0000 + 01603179 a 0102 + 01602966 a 0102 + 01605081 a 0101 ! 05079180 n 0101 | the property of being to the south -05079474 07 n 01 horizontality 0 002 @ 05074774 n 0000 + 01232635 a 0101 | the quality of being parallel to the horizon; "houses with a pronounced horizontality" -05079638 07 n 04 verticality 0 verticalness 0 erectness 2 uprightness 2 006 @ 05074774 n 0000 + 01234030 a 0401 + 01235859 a 0301 + 01235859 a 0202 + 01233347 a 0201 + 01233347 a 0101 | position at right angles to the horizon -05079866 07 n 03 position 1 posture 0 attitude 1 021 @ 04997988 n 0000 + 02519494 v 0302 + 03101667 a 0201 + 02142775 v 0204 = 01235859 a 0000 = 01237897 a 0000 ~ 00895292 n 0000 ~ 05080382 n 0000 ~ 05080526 n 0000 ~ 05080616 n 0000 ~ 05080753 n 0000 ~ 05080923 n 0000 ~ 05081057 n 0000 ~ 05081300 n 0000 ~ 05081434 n 0000 ~ 05081660 n 0000 ~ 05081957 n 0000 ~ 05082222 n 0000 ~ 05082337 n 0000 ~ 05082507 n 0000 ~ 05083687 n 0000 | the arrangement of the body and its limbs; "he assumed an attitude of surrender" -05080382 07 n 01 ballet_position 0 002 @ 05079866 n 0000 ~ 05081802 n 0000 | classical position of the body and especially the feet in ballet -05080526 07 n 01 decubitus 0 001 @ 05079866 n 0000 | a reclining position (as in a bed) -05080616 07 n 01 eversion 0 002 @ 05079866 n 0000 + 02089632 v 0101 | the position of being turned outward; "the eversion of the foot" -05080753 07 n 01 lithotomy_position 0 001 @ 05079866 n 0000 | a position lying on your back with knees bent and thighs apart; assumed for vaginal or rectal examination -05080923 07 n 01 lotus_position 0 002 @ 05079866 n 0000 #p 06239361 n 0000 | a sitting position with the legs crossed; used in yoga -05081057 07 n 01 missionary_position 0 001 @ 05079866 n 0000 | a position for sexual intercourse; a man and woman lie facing each other with the man on top; so-called because missionaries thought it the proper position for primitive peoples -05081300 07 n 01 pose 1 002 @ 05079866 n 0000 + 02142775 v 0102 | a posture assumed by models for photographic or artistic purposes -05081434 07 n 01 presentation 0 002 @ 05079866 n 0000 ;c 06053439 n 0000 | (obstetrics) position of the fetus in the uterus relative to the birth canal; "Cesarean sections are sometimes the result of abnormal presentations" -05081660 07 n 01 ectopia 0 002 @ 05079866 n 0000 + 02717149 a 0101 | abnormal position of a part or organ (especially at the time of birth) -05081802 07 n 01 arabesque 0 001 @ 05080382 n 0000 | position in which the dancer has one leg raised behind and arms outstretched in a conventional pose -05081957 07 n 01 asana 0 003 @ 05079866 n 0000 ;c 06236802 n 0000 ~ 05082116 n 0000 | (Hinduism) a posture or manner of sitting (as in the practice of yoga) -05082116 07 n 01 matsyendra 0 002 @ 05081957 n 0000 ;c 06236802 n 0000 | (Hinduism) a religious posture -05082222 07 n 01 guard 0 001 @ 05079866 n 0000 | a posture of defence in boxing or fencing; "keep your guard up" -05082337 07 n 02 sprawl 0 sprawling 0 004 @ 05079866 n 0000 + 01543426 v 0201 + 01432202 a 0101 + 01543426 v 0101 | an ungainly posture with arms and legs spread about -05082507 07 n 01 stance 0 005 @ 05079866 n 0000 + 01546111 v 0101 ~ 05082648 n 0000 ~ 05082790 n 0000 ~ 05083054 n 0000 | standing posture -05082648 07 n 01 address 1 002 @ 05082507 n 0000 ;c 00464894 n 0000 | the stance assumed by a golfer in preparation for hitting a golf ball -05082790 07 n 01 attention 0 004 @ 05082507 n 0000 ;c 08199025 n 0000 = 00163592 a 0000 = 00164863 a 0000 | a motionless erect stance with arms at the sides and feet together; assumed by military personnel during drill or review; "the troops stood at attention" -05083054 07 n 02 erectness 1 uprightness 3 003 @ 05082507 n 0000 + 01235859 a 0203 + 01235859 a 0101 | the property of being upright in posture -05083200 07 n 01 ramification 0 003 @ 05075602 n 0000 + 00329244 v 0101 + 00328802 v 0102 | an arrangement of branching parts -05083328 07 n 02 spacing 0 spatial_arrangement 0 006 @ 05075602 n 0000 + 01988080 v 0101 ~ 05083905 n 0000 ~ 05084201 n 0000 ~ 05087297 n 0000 ~ 05088804 n 0000 | the property possessed by an array of things that have space between them -05083567 07 n 01 tandem 0 001 @ 05075602 n 0000 | an arrangement of two or more objects or persons one behind another -05083687 07 n 01 tuck 0 002 @ 05079866 n 0000 ;c 00523513 n 0000 | (sports) a bodily position adopted in some sports (such as diving or skiing) in which the knees are bent and the thighs are drawn close to the chest -05083905 07 n 01 openness 3 003 @ 05083328 n 0000 + 01622505 a 0102 ~ 05084067 n 0000 | without obstructions to passage or view; "the openness of the prairies" -05084067 07 n 01 patency 0 002 @ 05083905 n 0000 + 01622748 a 0101 | the openness (lack of obstruction) of a bodily passage or duct -05084201 07 n 01 distance 0 024 @ 05083328 n 0000 + 00442917 a 0101 = 00442361 a 0000 = 00444519 a 0000 = 00445548 a 0000 = 00446921 a 0000 ~ 05084733 n 0000 ~ 05084889 n 0000 ~ 05084982 n 0000 ~ 05085165 n 0000 ~ 05085572 n 0000 ~ 05086269 n 0000 ~ 05086450 n 0000 ~ 05086563 n 0000 ~ 05086740 n 0000 ~ 05087061 n 0000 ~ 05087173 n 0000 ~ 05089947 n 0000 ~ 05090255 n 0000 ~ 05130875 n 0000 ~ 05131023 n 0000 ~ 05131194 n 0000 ~ 05131283 n 0000 ~ 08586509 n 0000 | the property created by the space between two objects or points -05084733 07 n 01 way 2 002 @ 05084201 n 0000 ;u 07075172 n 0000 | the property of distance in general; "it's a long way to Moscow"; "he went a long ways" -05084889 07 n 01 piece 0 001 @ 05084201 n 0000 | a distance; "it is down the road a piece" -05084982 07 n 01 mean_distance 0 001 @ 05084201 n 0000 | the arithmetic mean of the maximum and minimum distances of a celestial body (satellite or secondary star) from its primary -05085165 07 n 03 farness 0 remoteness 0 farawayness 0 010 @ 05084201 n 0000 + 01434717 a 0301 + 00443075 a 0202 + 00442917 a 0202 + 01413084 a 0202 + 00020103 a 0202 + 01434717 a 0101 + 00442361 a 0101 ! 05085572 n 0101 ~ 05085436 n 0000 | the property of being remote -05085436 07 n 01 far_cry 0 001 @ 05085165 n 0000 | distance estimated in terms of the audibility of a cry; "it's a far cry from here" -05085572 07 n 02 nearness 0 closeness 0 007 @ 05084201 n 0000 + 00444519 a 0202 + 00446921 a 0201 + 00444519 a 0101 ! 05085165 n 0101 ~ 05085867 n 0000 ~ 05085991 n 0000 | the spatial property resulting from a relatively small distance; "the sudden closeness of the dock sent him into action" -05085867 07 n 02 proximity 0 propinquity 0 002 @ 05085572 n 0000 + 00778509 a 0101 | the property of being close together -05085991 07 n 03 adjacency 0 contiguity 0 contiguousness 0 009 @ 05085572 n 0000 + 00566342 a 0303 + 00449079 a 0301 + 00566342 a 0203 + 00449079 a 0201 + 00444984 a 0101 + 00566342 a 0101 + 00447472 a 0101 + 00566961 a 0202 | the attribute of being so near as to be touching -05086269 07 n 01 wavelength 0 001 @ 05084201 n 0000 | the distance (measured in the direction of propagation) between two points in the same phase in consecutive cycles of a wave -05086450 07 n 02 focal_distance 0 focal_length 0 001 @ 05084201 n 0000 | the distance from a lens to its focus -05086563 07 n 01 hyperfocal_distance 0 001 @ 05084201 n 0000 | the distance in front of a lens that is focused at infinity beyond which all objects are well defined and clear -05086740 07 n 01 leap 0 004 @ 05084201 n 0000 + 01965156 v 0102 + 01963942 v 0102 ~ 05086903 n 0000 | the distance leaped (or to be leaped); "a leap of 10 feet" -05086903 07 n 01 elevation 1 002 @ 05086740 n 0000 ;c 00528667 n 0000 | (ballet) the height of a dancer's leap or jump; "a dancer of exceptional elevation" -05087061 07 n 01 span 0 002 @ 05084201 n 0000 + 02685390 v 0103 | the distance or interval between two points -05087173 07 n 01 wheelbase 0 001 @ 05084201 n 0000 | the distance from the center of a car's front wheel to the rear axle -05087297 07 n 02 distribution 0 dispersion 0 007 @ 05083328 n 0000 ! 05088804 n 0101 ~ 05087664 n 0000 ~ 05087894 n 0000 ~ 05088056 n 0000 ~ 05088189 n 0000 ~ 05088324 n 0000 | the spatial or geographic property of being scattered about over a range, area, or volume; "worldwide in distribution"; "the distribution of nerve fibers"; "in complementary distribution" -05087664 07 n 02 complementary_distribution 0 complementation 0 002 @ 05087297 n 0000 ;c 06172789 n 0000 | (linguistics) a distribution of related speech sounds or forms in such a way that they only appear in different contexts -05087894 07 n 01 diaspora 0 001 @ 05087297 n 0000 | the dispersion or spreading of something that was originally localized (as a people or language or culture) -05088056 07 n 02 dissemination 0 diffusion 0 002 @ 05087297 n 0000 + 00968211 v 0105 | the property of being diffused or dispersed -05088189 07 n 01 innervation 0 002 @ 05087297 n 0000 + 02226706 v 0101 | the distribution of nerve fibers to an organ or body region -05088324 07 n 02 scatter 0 spread 0 013 @ 05087297 n 0000 + 02060141 v 0202 + 02082690 v 0201 + 00969873 v 0202 + 00968211 v 0208 + 02689299 v 0201 + 01380122 v 0201 + 01378556 v 0201 + 02082690 v 0102 + 01376245 v 0101 + 02028994 v 0103 + 02030424 v 0105 ~ 05088645 n 0000 | a haphazard distribution in all directions -05088645 07 n 01 diffuseness 0 002 @ 05088324 n 0000 + 00540487 a 0101 | the spatial property of being spread out over a wide area or through a large volume -05088804 07 n 05 concentration 3 density 1 denseness 1 tightness 2 compactness 1 006 @ 05083328 n 0000 + 02526441 a 0401 + 01771839 a 0301 + 01771839 a 0201 + 02032934 v 0101 ! 05087297 n 0101 | the spatial property of being crowded together -05089048 07 n 02 bits_per_inch 0 bpi 0 002 @ 04941453 n 0000 ;c 06128570 n 0000 | a measure of how densely information is packed on a storage medium -05089199 07 n 02 flux_density 0 flux 0 002 @ 04941453 n 0000 ;c 06090869 n 0000 | (physics) the number of changes in energy flow across a given surface per unit area -05089367 07 n 04 optical_density 0 transmission_density 0 photographic_density 0 absorbance 0 002 @ 04941453 n 0000 ;c 06090869 n 0000 | (physics) a measure of the extent to which a substance transmits light or other electromagnetic radiation -05089612 07 n 03 rarity 1 tenuity 1 low_density 0 003 @ 04941453 n 0000 + 02417611 a 0201 + 02417725 a 0101 | a rarified quality; "the tenuity of the upper atmosphere" -05089782 07 n 01 relative_density 0 003 @ 04941453 n 0000 ~ 04941687 n 0000 ~ 04941809 n 0000 | the ratio of the density of something to the density of a standard -05089947 07 n 02 interval 0 separation 0 002 @ 05084201 n 0000 ~ 05090111 n 0000 | the distance between things; "fragile items require separation and cushioning" -05090111 07 n 01 clearance 0 002 @ 05089947 n 0000 + 02081178 v 0101 | the distance by which one thing clears another; the space between them -05090255 07 n 01 remove 0 001 @ 05084201 n 0000 | degree of figurative distance or separation; "just one remove from madness" or "it imitates at many removes a Shakespearean tragedy"; -05090441 07 n 01 magnitude 0 019 @ 04916342 n 0000 + 00240293 v 0103 + 00434077 v 0101 = 01498769 a 0000 ~ 05090979 n 0000 ~ 05091194 n 0000 ~ 05091316 n 0000 ~ 05093581 n 0000 ~ 05094565 n 0000 ~ 05098311 n 0000 ~ 05098750 n 0000 ~ 05098857 n 0000 ~ 05098942 n 0000 ~ 05099231 n 0000 ~ 05099389 n 0000 ~ 05099662 n 0000 ~ 05099796 n 0000 ~ 05107765 n 0000 ~ 05123416 n 0000 | the property of relative size or extent (whether large or small); "they tried to predict the magnitude of the explosion"; "about the magnitude of a small pea" -05090979 07 n 01 absolute_magnitude 0 002 @ 05090441 n 0000 ;c 06095022 n 0000 | (astronomy) the magnitude that a star would have if it were viewed from a distance of 10 parsecs (32.62 light years) from the earth -05091194 07 n 02 proportion 0 dimension 1 001 @ 05090441 n 0000 | magnitude or extent; "a building of vast proportions" -05091316 07 n 02 order 1 order_of_magnitude 0 002 @ 05090441 n 0000 + 00658052 v 0104 | a degree in a continuum of size or quantity; "it was on the order of a mile"; "an explosion of a low order of magnitude" -05091527 07 n 03 information 0 selective_information 0 entropy 1 002 @ 13579287 n 0000 ;c 05997361 n 0000 | (communication theory) a numerical measure of the uncertainty of an outcome; "the signal contained thousands of bits of information" -05091770 07 n 02 probability 1 chance 0 011 @ 00033615 n 0000 + 03102871 a 0101 + 01413247 a 0101 ~ 05092236 n 0000 ~ 05092421 n 0000 ~ 05092635 n 0000 ~ 05092969 n 0000 ~ 05093080 n 0000 ~ 05093181 n 0000 ~ 05093293 n 0000 ~ 05093418 n 0000 | a measure of how likely it is that some event will occur; a number expressing the ratio of favorable cases to the whole number of cases possible; "the probability that an unbiased coin will fall with the head up is 0.5" -05092236 07 n 02 conditional_probability 0 contingent_probability 0 001 @ 05091770 n 0000 | the probability that an event will occur given that one or more other events have occurred -05092421 07 n 01 cross_section 0 002 @ 05091770 n 0000 ;c 06100555 n 0000 | (physics) the probability that a particular interaction (as capture or ionization) will take place between particles; measured in barns -05092635 07 n 01 exceedance 0 003 ;c 06115701 n 0000 @ 05091770 n 0000 + 02669081 v 0101 | (geology) the probability that an earthquake will generate a level of ground motion that exceeds a specified reference level during a given exposure time; "the concept of exceedance can be applied to any type of environmental risk modeling" -05092969 07 n 02 fair_chance 0 sporting_chance 0 001 @ 05091770 n 0000 | a reasonable probability of success -05093080 07 n 02 fat_chance 0 slim_chance 0 001 @ 05091770 n 0000 | little or no chance of success -05093181 07 n 01 joint_probability 0 001 @ 05091770 n 0000 | the probability of two events occurring together -05093293 07 n 02 risk 1 risk_of_exposure 0 001 @ 05091770 n 0000 | the probability of being exposed to an infectious agent -05093418 07 n 02 risk 2 risk_of_infection 0 001 @ 05091770 n 0000 | the probability of becoming infected given that exposure to an infectious agent has occurred -05093581 07 n 01 dimension 0 010 @ 05090441 n 0000 + 00143065 v 0101 + 00922142 v 0101 ~ 05103072 n 0000 ~ 05103648 n 0000 ~ 05129201 n 0000 ~ 05136150 n 0000 ~ 05137165 n 0000 ~ 05138065 n 0000 ~ 15135822 n 0000 | the magnitude of something in a particular direction (especially length or width or height) -05093890 07 n 03 degree 0 grade 0 level 0 018 @ 04916342 n 0000 = 01210854 a 0000 = 01212469 a 0000 = 01508719 a 0000 = 01509527 a 0000 ~ 04728068 n 0000 ~ 05036394 n 0000 ~ 05094424 n 0000 ~ 05094725 n 0000 ~ 05097361 n 0000 ~ 05097536 n 0000 ~ 05097706 n 0000 ~ 05097845 n 0000 ~ 05098099 n 0000 ~ 05098425 n 0000 ~ 05117660 n 0000 ~ 05118251 n 0000 ~ 05118707 n 0000 | a position on a scale of intensity or amount or quality; "a moderate grade of intelligence"; "a high level of care is required"; "it is all a matter of degree" -05094424 07 n 01 grind 0 001 @ 05093890 n 0000 | the grade of particle fineness to which a substance is ground; "a coarse grind of coffee" -05094565 07 n 01 degree 1 001 @ 05090441 n 0000 | the seriousness of something (e.g., a burn or crime); "murder in the second degree"; "a second degree burn" -05094725 07 n 01 depth 1 003 @ 05093890 n 0000 ~ 05094863 n 0000 ~ 05095111 n 0000 | degree of psychological or intellectual profundity -05094863 07 n 02 profundity 1 profoundness 1 004 @ 05094725 n 0000 + 01872745 a 0201 + 01872745 a 0101 ! 05095111 n 0101 | intellectual depth; penetrating knowledge; keen insight; etc; "the depth of my feeling"; "the profoundness of the silence" -05095111 07 n 02 superficiality 1 shallowness 1 006 @ 05094725 n 0000 + 01875227 a 0201 + 01873406 a 0101 ! 05094863 n 0101 ~ 05095324 n 0000 ~ 05095561 n 0000 | lack of depth of knowledge or thought or feeling -05095324 07 n 02 glibness 0 slickness 2 006 @ 05095111 n 0000 + 01799781 a 0203 + 00148078 a 0207 + 01799781 a 0101 + 01770726 a 0101 + 01874716 a 0101 | a kind of fluent easy superficiality; "the glibness of a high-pressure salesman" -05095561 07 n 01 sciolism 0 003 @ 05095111 n 0000 + 01874331 a 0104 + 09987696 n 0103 | pretentious superficiality of knowledge -05095691 07 n 01 size 1 014 @ 04916342 n 0000 + 00319214 v 0101 + 00655987 v 0101 ~ 05096095 n 0000 ~ 05096191 n 0000 ~ 05096294 n 0000 ~ 05096408 n 0000 ~ 05096577 n 0000 ~ 05096708 n 0000 ~ 05096820 n 0000 ~ 05096972 n 0000 ~ 05097081 n 0000 ~ 05097166 n 0000 ~ 05097278 n 0000 | the property resulting from being one of a series of graduated measurements (as of clothing); "he wears a size 13 shoe" -05096095 07 n 01 extra_large 0 001 @ 05095691 n 0000 | a garment size for a very large person -05096191 07 n 01 large 0 002 @ 05095691 n 0000 + 01382086 a 0101 | a garment size for a large person -05096294 07 n 01 number 1 002 @ 05095691 n 0000 ;u 07075172 n 0000 | a clothing measurement; "a number 13 shoe" -05096408 07 n 03 octavo 0 eightvo 0 8vo 0 001 @ 05095691 n 0000 | the size of a book whose pages are made by folding a sheet of paper three times to form eight leaves -05096577 07 n 01 outsize 0 002 @ 05095691 n 0000 + 01389993 a 0101 | an unusual garment size (especially one that is very large) -05096708 07 n 01 petite 0 002 @ 05095691 n 0000 + 01392249 a 0105 | a garment size for short or slender women -05096820 07 n 02 quarto 0 4to 0 001 @ 05095691 n 0000 | the size of a book whose pages are made by folding a sheet of paper twice to form four leaves -05096972 07 n 01 regular 0 001 @ 05095691 n 0000 | a garment size for persons of average height and weight -05097081 07 n 01 small 0 001 @ 05095691 n 0000 | a garment size for a small person -05097166 07 n 01 stout 0 002 @ 05095691 n 0000 + 00988077 a 0102 | a garment size for a large or heavy person -05097278 07 n 01 tall 0 001 @ 05095691 n 0000 | a garment size for a tall person -05097361 07 n 01 highness 1 003 @ 05093890 n 0000 + 02339120 a 0102 + 01210854 a 0101 | a high degree (of amount or force etc.); "responsible for the highness of the rates" -05097536 07 n 01 high 0 003 @ 05093890 n 0000 + 01204557 a 0101 ! 05097706 n 0101 | a lofty level or position or degree; "summer temperatures reached an all-time high" -05097706 07 n 01 low 0 002 @ 05093890 n 0000 ! 05097536 n 0101 | a low level or position or degree; "the stock market fell to a new low" -05097845 07 n 01 lowness 1 005 @ 05093890 n 0000 + 01455888 a 0101 + 02336759 a 0102 + 01215421 a 0101 + 01212469 a 0101 | a low or small degree of any quality (amount or force or temperature etc.); "he took advantage of the lowness of interest rates" -05098099 07 n 01 extreme 0 001 @ 05093890 n 0000 | the furthest or highest degree of something; "he carried it to extremes" -05098225 07 n 01 extremeness 0 001 @ 04723816 n 0000 | the quality of being extreme -05098311 07 n 01 amplitude 1 003 @ 05090441 n 0000 ~ 05098520 n 0000 ~ 05098620 n 0000 | greatness of magnitude -05098425 07 n 01 amplitude_level 0 001 @ 05093890 n 0000 | the level on a scale of amplitude -05098520 07 n 01 signal_level 0 001 @ 05098311 n 0000 | the amplitude level of the desired signal -05098620 07 n 02 noise_level 0 background_level 0 001 @ 05098311 n 0000 | the amplitude level of the undesired background noise -05098750 07 n 01 multiplicity 2 002 @ 05090441 n 0000 + 02215977 a 0101 | the property of being multiple -05098857 07 n 01 triplicity 0 001 @ 05090441 n 0000 | the property of being triple -05098942 07 n 01 size 0 009 @ 05090441 n 0000 + 00319214 v 0101 + 00655987 v 0101 = 01382086 a 0000 = 01391351 a 0000 ~ 05101261 n 0000 ~ 05103946 n 0000 ~ 05106633 n 0000 ~ 05129565 n 0000 | the physical magnitude of something (how big it is); "a wolf is about the size of a large dog" -05099231 07 n 01 size 2 001 @ 05090441 n 0000 | a large magnitude; "he blanched when he saw the size of the bill"; "the only city of any size in that area" -05099389 07 n 03 bulk 0 mass 1 volume 3 004 @ 05090441 n 0000 + 01390900 a 0301 + 01384438 a 0101 ~ 05112308 n 0000 | the property of something that is great in magnitude; "it is cheaper to buy it in bulk"; "he received a mass of correspondence"; "the volume of exports" -05099662 07 n 01 muchness 0 003 @ 05090441 n 0000 ;u 07073447 n 0000 + 01553629 a 0101 | greatness of quantity or measure or extent -05099796 07 n 03 intensity 3 strength 4 intensity_level 0 007 @ 05090441 n 0000 ~ 04954412 n 0000 ~ 05100156 n 0000 ~ 05100269 n 0000 ~ 05100751 n 0000 ~ 05100866 n 0000 ~ 05101174 n 0000 | the amount of energy transmitted (as by acoustic or electromagnetic radiation); "he adjusted the intensity of the sound"; "they measured the station's signal strength" -05100156 07 n 01 threshold_level 0 001 @ 05099796 n 0000 | the intensity level that is just barely perceptible -05100269 07 n 02 field_strength 0 field_intensity 0 002 @ 05099796 n 0000 ~ 05100525 n 0000 | the vector sum of all the forces exerted by an electrical or magnetic field (on a unit mass or unit charge or unit magnetic pole) at a given point in the field -05100525 07 n 04 magnetic_field_strength 0 magnetic_intensity 0 magnetic_induction 0 magnetic_flux_density 0 001 @ 05100269 n 0000 | the amount of magnetic flux in a unit area perpendicular to the direction of magnetic flow -05100751 07 n 02 candlepower 0 light_intensity 0 001 @ 05099796 n 0000 | luminous intensity measured in candelas -05100866 07 n 02 acoustic_power 0 sound_pressure_level 0 001 @ 05099796 n 0000 | the physical intensity of sound -05100981 07 n 01 acoustic_radiation_pressure 0 002 @ 11497173 n 0000 ;c 06094774 n 0000 | (acoustics) the pressure exerted on a surface normal to the direction of propagation of a sound wave -05101174 07 n 01 half-intensity 0 001 @ 05099796 n 0000 | half the maximum intensity -05101261 07 n 02 circumference 0 perimeter 0 002 @ 05098942 n 0000 ~ 05101407 n 0000 | the size of something as given by the distance around it -05101407 07 n 01 girth 0 002 @ 05101261 n 0000 ~ 05101512 n 0000 | the distance around a person's body -05101512 07 n 01 spread 1 001 @ 05101407 n 0000 | the expansion of a person's girth (especially at middle age); "she exercised to avoid that middle-aged spread" -05101675 07 n 01 circumference 1 003 @ 05129201 n 0000 %p 13612550 n 0000 %p 13612688 n 0000 | the length of the closed curve of a circle -05101815 07 n 02 diameter 0 diam 0 007 @ 05129201 n 0000 + 02711846 a 0101 + 02711846 a 0102 + 02711846 a 0103 %p 05102101 n 0000 ~ 05103283 n 0000 ~ 05103503 n 0000 | the length of a straight line passing through the center of a circle and connecting two points on the circumference -05102101 07 n 02 radius 0 r 0 004 @ 05129201 n 0000 #p 05101815 n 0000 ~ 05102300 n 0000 ~ 05102578 n 0000 | the length of a line segment between the center and circumference of a circle or sphere -05102300 07 n 01 semidiameter 0 001 @ 05102101 n 0000 | the apparent radius of a celestial body when viewed as a disc from the earth -05102435 07 n 01 curvature 0 001 @ 06014730 n 0000 | the rate of change (at a point) of the angle between a curve and a tangent to the curve -05102578 07 n 01 radius_of_curvature 0 001 @ 05102101 n 0000 | the radius of the circle of curvature; the absolute value of the reciprocal of the curvature of a curve at a given point -05102764 07 n 02 center_of_curvature 0 centre_of_curvature 0 001 @ 08521816 n 0000 | the center of the circle of curvature -05102889 07 n 02 circle_of_curvature 0 osculating_circle 0 001 @ 13873502 n 0000 | the circle that touches a curve (on the concave side) and whose radius is the radius of curvature -05103072 07 n 01 thickness 1 006 @ 05093581 n 0000 + 01771839 a 0102 ! 05103648 n 0101 = 02410393 a 0000 = 02412164 a 0000 ~ 05103430 n 0000 | the dimension through an object as opposed to its length or width -05103283 07 n 04 bore 0 gauge 2 caliber 1 calibre 1 003 @ 05101815 n 0000 + 00739536 v 0301 + 01443021 v 0101 | diameter of a tube or gun barrel -05103430 07 n 01 gauge 1 001 @ 05103072 n 0000 | the thickness of wire -05103503 07 n 01 windage 3 001 @ 05101815 n 0000 | the space between the projectile of a smoothbore gun and the surface of the bore of the gun -05103648 07 n 03 thinness 1 tenuity 3 slenderness 2 006 @ 05093581 n 0000 + 02415025 a 0301 + 02562566 a 0301 + 02415172 a 0201 + 02412164 a 0101 ! 05103072 n 0101 | relatively small dimension through an object as opposed to its length or width; "the tenuity of a hair"; "the thinness of a rope" -05103946 07 n 02 largeness 0 bigness 0 012 @ 05098942 n 0000 + 01382086 a 0202 ! 05106633 n 0202 + 00173391 a 0106 + 01382086 a 0101 ! 05106633 n 0101 ~ 05104256 n 0000 ~ 05104421 n 0000 ~ 05104548 n 0000 ~ 05105265 n 0000 ~ 05106024 n 0000 ~ 05106220 n 0000 | the property of having a relatively great size -05104256 07 n 01 ampleness 0 002 @ 05103946 n 0000 + 01383394 a 0101 | the property of impressive largeness in size; "he admired the ampleness of its proportions" -05104421 07 n 02 bulkiness 0 massiveness 0 003 @ 05103946 n 0000 + 01389170 a 0201 + 01384438 a 0101 | an unwieldy largeness -05104548 07 n 08 enormousness 0 grandness 1 greatness 1 immenseness 0 immensity 0 sizeableness 0 vastness 0 wideness 1 016 @ 05103946 n 0000 + 01384212 a 0803 + 00526062 a 080a + 00106277 a 0801 + 02563068 a 0801 + 01387319 a 0703 + 01383394 a 0603 + 00624576 a 0607 + 01387319 a 0502 + 01387319 a 0402 + 01386883 a 0301 + 01677433 a 0301 + 01387149 a 0201 + 01284544 a 0202 + 01385255 a 0101 ~ 05105009 n 0000 | unusual largeness in size or extent or number -05105009 07 n 01 enormity 2 003 @ 05104548 n 0000 ;u 07075172 n 0000 + 01385255 a 0101 | vastness of size or extent; "in careful usage the noun enormity is not used to express the idea of great size"; "universities recognized the enormity of their task" -05105265 07 n 04 capaciousness 0 roominess 0 spaciousness 0 commodiousness 0 008 @ 05103946 n 0000 + 00475996 a 0401 + 01384212 a 0302 + 00476249 a 0302 + 00476249 a 0201 + 01384572 a 0101 ~ 05105745 n 0000 ~ 05105879 n 0000 | spatial largeness and extensiveness (especially inside a building); "the capaciousness of Santa's bag astounded the child"; "roominess in this size car is always a compromise"; "his new office lacked the spaciousness that he had become accustomed to" -05105745 07 n 01 airiness 1 002 @ 05105265 n 0000 + 02508917 a 0102 | the property of something spacious and abounding in fresh air -05105879 07 n 01 seating_capacity 0 001 @ 05105265 n 0000 | the number of people that can be seated in a vehicle or auditorium or stadium etc. -05106024 07 n 03 fullness 1 voluminosity 0 voluminousness 0 006 @ 05103946 n 0000 + 01390900 a 0301 + 00014858 a 0302 + 01390900 a 0201 + 00014858 a 0202 + 00106277 a 0103 | greatness of volume -05106220 07 n 02 gigantism 0 giantism 0 001 @ 05103946 n 0000 | excessive largeness of stature -05106317 07 n 02 largeness 1 extensiveness 0 004 @ 05168890 n 0000 + 02163307 a 0201 + 00526062 a 0208 + 02163307 a 0101 | large or extensive in breadth or importance or comprehensiveness; "the might have repercussions of unimaginable largeness"; "the very extensiveness of his power was a temptation to abuse it" -05106633 07 n 02 smallness 0 littleness 0 011 @ 05098942 n 0000 + 01391351 a 0202 ! 05103946 n 0202 + 01415219 a 0103 + 01391351 a 0101 ! 05103946 n 0101 ~ 05106928 n 0000 ~ 05107216 n 0000 ~ 05107322 n 0000 ~ 05107495 n 0000 ~ 05107668 n 0000 | the property of having a relatively small size -05106928 07 n 05 diminutiveness 0 minuteness 0 petiteness 0 tininess 0 weeness 0 006 @ 05106633 n 0000 + 01392633 a 0506 + 01392249 a 0406 + 01392249 a 0305 + 01393483 a 0202 + 01392249 a 0102 | the property of being very small in size; "hence the minuteness of detail in the painting" -05107216 07 n 02 delicacy 3 slightness 0 002 @ 05106633 n 0000 + 00990855 a 0202 | smallness of stature -05107322 07 n 01 grain 2 001 @ 05106633 n 0000 | the smallest possible unit of anything; "there was a grain of truth in what he said"; "he does not have a grain of sense" -05107495 07 n 03 puniness 0 runtiness 0 stuntedness 0 005 @ 05106633 n 0000 + 02347915 a 0303 + 01394558 a 0202 + 02387790 a 0203 + 01394558 a 0101 | smallness of stature -05107668 07 n 01 dwarfishness 0 002 @ 05106633 n 0000 + 01393024 a 0101 | smallness of stature -05107765 07 n 01 amount 0 011 @ 05090441 n 0000 ~ 05108109 n 0000 ~ 05108262 n 0000 ~ 05108412 n 0000 ~ 05108740 n 0000 ~ 05108947 n 0000 ~ 05109808 n 0000 ~ 05110583 n 0000 ~ 05113133 n 0000 ~ 05120683 n 0000 ~ 05121418 n 0000 | the relative magnitude of something with reference to a criterion; "an adequate amount of food for four people" -05108109 07 n 02 positivity 3 positiveness 3 004 @ 05107765 n 0000 ! 05108262 n 0202 + 01819692 a 0101 ! 05108262 n 0101 | an amount greater than zero -05108262 07 n 02 negativity 3 negativeness 3 004 @ 05107765 n 0000 + 01819976 a 0201 ! 05108109 n 0202 ! 05108109 n 0101 | an amount less than zero -05108412 07 n 01 critical_mass 1 001 @ 05107765 n 0000 | the minimum amount (of something) required to start or maintain a venture; "the battle for the computer market has now reached critical mass"; "there is now a critical mass of successful women to take the lead"; "they sold the business because it lacked critical mass" -05108740 07 n 01 quantity 0 006 @ 05107765 n 0000 = 00013887 a 0000 = 00016756 a 0000 = 02335828 a 0000 = 02336449 a 0000 ~ 05115040 n 0000 | an adequate or large amount; "he had a quantity of ammunition" -05108947 07 n 02 increase 0 increment 0 013 @ 05107765 n 0000 + 00153263 v 0101 + 00156601 v 0101 ! 05109808 n 0101 + 00049266 a 0201 ~ 05109324 n 0000 ~ 05109986 n 0000 ~ 05110107 n 0000 ~ 05110185 n 0000 ~ 05110408 n 0000 ~ 05110772 n 0000 ~ 05110988 n 0000 ~ 05111141 n 0000 | the amount by which something increases; "they proposed an increase of 15 percent in the fare" -05109324 07 n 02 amplification 0 gain 1 002 @ 05108947 n 0000 ~ 05111248 n 0000 | the amount of increase in signal power or voltage or current expressed as the ratio of output to input -05109511 07 n 02 complement 0 accompaniment 0 004 @ 09188229 n 0000 + 00455919 v 0101 + 00049016 a 0102 + 00049016 a 0101 | something added to complete or embellish or make perfect; "a fine wine is a perfect complement to the dinner"; "wild rice was served as an accompaniment to the main dish" -05109808 07 n 02 decrease 0 decrement 0 005 @ 05107765 n 0000 + 00151689 v 0101 ! 05108947 n 0101 ~ 05111835 n 0000 ~ 05112215 n 0000 | the amount by which something decreases -05109986 07 n 01 fare_increase 0 001 @ 05108947 n 0000 | increase in the sum charged for riding in a public conveyance -05110107 07 n 01 price_increase 0 001 @ 05108947 n 0000 | increase in price -05110185 07 n 06 raise 0 rise 2 wage_hike 0 hike 0 wage_increase 0 salary_increase 0 003 @ 05108947 n 0000 + 01975912 v 0401 + 00158503 v 0101 | the amount a salary is increased; "he got a 3% raise"; "he got a wage hike" -05110408 07 n 04 rise 3 boost 0 hike 1 cost_increase 0 003 @ 05108947 n 0000 + 01975912 v 0301 + 01975912 v 0203 | an increase in cost; "they asked for a 10% rise in rates" -05110583 07 n 01 smallness 2 003 @ 05107765 n 0000 + 01532912 a 0102 + 01391351 a 0101 | the property of being a relatively small amount; "he was attracted by the smallness of the taxes" -05110772 07 n 02 supplement 0 supplementation 0 006 @ 05108947 n 0000 + 02342132 v 0201 + 00049879 a 0101 + 02752931 v 0101 + 02342132 v 0101 + 00049879 a 0102 | a quantity added (e.g. to make up for a deficiency) -05110988 07 n 03 tax-increase 0 tax_boost 0 tax_hike 0 001 @ 05108947 n 0000 | the amount by which taxes are increased; "a tax increase of 15 percent" -05111141 07 n 01 up-tick 0 001 @ 05108947 n 0000 | a small increase; "the up-tick in terrorist activity" -05111248 07 n 01 loop_gain 0 002 @ 05109324 n 0000 ;c 06271778 n 0000 | (telecommunication) the gain of a feedback amplifier or system as a function of how much output is fed back to the input; "if the loop gain is too great the system may go into oscillation" -05111511 07 n 01 correction 0 001 @ 05111835 n 0000 | a drop in stock market activity or stock prices following a period of increases; "market runups are invariably followed by a correction" -05111704 07 n 01 voltage_drop 0 001 @ 05111835 n 0000 | a decrease in voltage along a conductor through which current is flowing -05111835 07 n 04 drop 0 dip 0 fall 0 free_fall 0 005 @ 05109808 n 0000 + 00151689 v 0304 + 00432683 v 0101 ~ 05111511 n 0000 ~ 05111704 n 0000 | a sudden sharp decrease in some quantity; "a drop of 57 points on the Dow Jones index"; "there was a drop in pressure in the pulmonary artery"; "a dip in prices"; "when that became known the price of their stock went into free fall" -05112215 07 n 01 shrinkage 0 001 @ 05109808 n 0000 | the amount by which something shrinks -05112308 07 n 02 dollar_volume 0 turnover 0 002 @ 05099389 n 0000 + 02261256 v 0201 | the volume measured in dollars; "the store's dollar volume continues to rise" -05112474 07 n 02 stuffiness 1 closeness 2 002 @ 04723816 n 0000 + 02509484 a 0103 | the quality of being close and poorly ventilated -05112609 07 n 02 sufficiency 0 adequacy 1 008 @ 04723816 n 0000 ! 05113133 n 0202 + 02335828 a 0101 + 02669789 v 0101 ! 05113133 n 0101 = 00105746 a 0000 = 00106456 a 0000 ~ 05112910 n 0000 | the quality of being sufficient for the end in view; "he questioned the sufficiency of human intelligence" -05112910 07 n 01 ampleness 1 003 @ 05112609 n 0000 + 00014490 a 0101 + 00105746 a 0101 | the property of being more than sufficient; comfortable sufficiency; "the ampleness of her servings more than satisfied his hunger" -05113133 07 n 03 insufficiency 0 inadequacy 1 deficiency 0 010 @ 05107765 n 0000 + 00052012 a 0301 + 02336449 a 0302 ! 05112609 n 0202 + 02336449 a 0101 ! 05112609 n 0101 ~ 05113462 n 0000 ~ 05114371 n 0000 ~ 05116953 n 0000 ~ 05117406 n 0000 | lack of an adequate quantity or number; "the inadequacy of unemployment benefits" -05113462 07 n 07 meagerness 0 meagreness 0 leanness 1 poorness 3 scantiness 0 scantness 0 exiguity 0 014 @ 05113133 n 0000 + 00107017 a 0701 + 02337329 a 0602 + 00106821 a 0502 + 02336904 a 0402 + 02024411 a 0401 + 02337188 a 0301 + 01872374 a 0301 + 02027003 a 0301 + 00106456 a 0202 + 00106456 a 0101 ~ 05113929 n 0000 ~ 05114262 n 0000 ~ 05114781 n 0000 | the quality of being meager; "an exiguity of cloth that would only allow of miniature capes"-George Eliot -05113929 07 n 01 wateriness 1 002 @ 05113462 n 0000 + 00756459 a 0101 | meagerness or poorness connoted by a superfluity of water (in a literary style as well as in a food); "the haziness and wateriness of his disquisitions"; "the wateriness of his blood"; "no one enjoys the burning of his soup or the wateriness of his potatoes" -05114262 07 n 01 abstemiousness 1 002 @ 05113462 n 0000 + 02401863 a 0101 | restricted to bare necessities -05114371 07 n 03 deficit 0 shortage 0 shortfall 0 002 @ 05113133 n 0000 ~ 05114652 n 0000 | the property of being an amount by which something is less than expected or required; "new blood vessels bud out from the already dilated vascular bed to make up the nutritional deficit" -05114652 07 n 01 oxygen_deficit 0 001 @ 05114371 n 0000 | temporary oxygen shortage in cells resulting from strenuous exercise -05114781 07 n 04 sparseness 0 spareness 0 sparsity 0 thinness 4 007 @ 05113462 n 0000 + 01458054 a 0401 + 00542359 a 0301 + 00991301 a 0201 + 00106821 a 0203 + 00542359 a 0101 + 02164913 a 0405 | the property of being scanty or scattered; lacking denseness -05115040 07 n 03 abundance 0 copiousness 0 teemingness 0 013 @ 05108740 n 0000 + 00016350 a 0301 + 00014858 a 0201 + 00014490 a 0202 + 00013887 a 0101 + 02715279 v 0101 ! 05116953 n 0101 ~ 05115418 n 0000 ~ 05115568 n 0000 ~ 05115804 n 0000 ~ 05116128 n 0000 ~ 05116243 n 0000 ~ 05119367 n 0000 | the property of a more than adequate quantity or supply; "an age of abundance" -05115418 07 n 03 amplitude 2 bountifulness 0 bounty 2 003 @ 05115040 n 0000 + 01111418 a 0204 + 01080900 a 0201 | the property of copious abundance -05115568 07 n 05 plenty 0 plentifulness 0 plenteousness 0 plenitude 0 plentitude 0 005 @ 05115040 n 0000 + 00014490 a 0303 + 00015854 a 0201 + 00014490 a 0204 + 00014490 a 0103 | a full supply; "there was plenty of food for everyone" -05115804 07 n 04 profusion 0 profuseness 0 richness 3 cornucopia 0 008 @ 05115040 n 0000 + 00014490 a 0305 + 02026785 a 0301 + 02024143 a 0301 + 00015247 a 0204 ~ 05116486 n 0000 ~ 05116590 n 0000 ~ 05116730 n 0000 | the property of being extremely abundant; "the profusion of detail"; "the idiomatic richness of English" -05116128 07 n 01 wealth 0 001 @ 05115040 n 0000 | the quality of profuse abundance; "she has a wealth of talent" -05116243 07 n 03 luxuriance 0 lushness 0 voluptuousness 1 006 @ 05115040 n 0000 + 01298239 a 0306 + 02025274 a 0203 + 00015247 a 0202 + 01795933 a 0102 + 00015247 a 0103 | the property of being lush and abundant and a pleasure to the senses -05116486 07 n 01 overgrowth 0 001 @ 05115804 n 0000 | a profusion of growth on or over something else -05116590 07 n 03 greenness 2 verdancy 0 verdure 0 002 @ 05115804 n 0000 + 00016647 a 0201 | the lush appearance of flourishing vegetation -05116730 07 n 01 wilderness 0 001 @ 05115804 n 0000 | a bewildering profusion; "the duties of citizenship are lost sight of in the wilderness of interests of individuals and groups"; "a wilderness of masts in the harbor" -05116953 07 n 02 scarcity 0 scarceness 0 006 @ 05113133 n 0000 + 00016756 a 0201 + 00016756 a 0101 ! 05115040 n 0101 ~ 05117140 n 0000 ~ 05117237 n 0000 | a small and inadequate amount -05117140 07 n 02 dearth 0 paucity 1 001 @ 05116953 n 0000 | an insufficient quantity or number -05117237 07 n 03 rarity 2 rareness 0 infrequency 0 005 @ 05116953 n 0000 + 01067193 a 0301 + 00017024 a 0201 + 01067538 a 0201 + 00017024 a 0101 | noteworthy scarcity -05117406 07 n 01 slenderness 0 002 @ 05113133 n 0000 + 01394744 a 0101 | the quality of being slight or inadequate; "he knew the slenderness of my wallet"; "the slenderness of the chances that anything would be done"; "the slenderness of the evidence" -05117660 07 n 02 moderation 0 moderateness 0 012 @ 05093890 n 0000 + 02402078 a 0201 + 01509367 a 0201 + 01531375 a 0201 + 02510337 v 0107 + 00933566 v 0102 + 00198710 v 0101 ! 05118251 n 0101 = 01531375 a 0000 = 01533120 a 0000 ~ 05117977 n 0000 ~ 05118062 n 0000 | quality of being moderate and avoiding extremes -05117977 07 n 01 golden_mean 0 001 @ 05117660 n 0000 | the middle between extremes -05118062 07 n 01 reasonableness 1 002 @ 05117660 n 0000 + 01532261 a 0103 | moderation in expectations; "without greater reasonableness by both parties we will never settle this matter!" -05118251 07 n 02 immoderation 0 immoderateness 0 004 @ 05093890 n 0000 + 01533120 a 0201 ! 05117660 n 0101 ~ 05118437 n 0000 | the quality of being excessive and lacking in moderation -05118437 07 n 03 excess 0 excessiveness 0 inordinateness 0 007 @ 05118251 n 0000 + 01533974 a 0302 + 02000968 a 0201 + 01533974 a 0201 ~ 05118862 n 0000 ~ 05119096 n 0000 ~ 05120116 n 0000 | immoderation as a consequence of going beyond sufficient or permitted limits -05118707 07 n 02 sun_protection_factor 0 SPF 0 001 @ 05093890 n 0000 | the degree to which a sunscreen protects the skin from the direct rays of the sun -05118862 07 n 02 extravagance 1 extravagancy 0 002 @ 05118437 n 0000 + 02000968 a 0102 | the quality of exceeding the appropriate limits of decorum or probability or truth; "we were surprised by the extravagance of his description" -05119096 07 n 02 exorbitance 0 outrageousness 1 003 @ 05118437 n 0000 + 01534282 a 0203 + 01534282 a 0101 | excessive excess -05119223 07 n 01 luxury 0 003 @ 04884627 n 0000 + 02024928 a 0104 + 01204803 v 0101 | something that is an indulgence rather than a necessity -05119367 07 n 04 overabundance 0 overmuch 0 overmuchness 0 superabundance 0 007 @ 05115040 n 0000 + 00016247 a 0401 + 01553925 a 0301 + 00015720 a 0101 ~ 05119714 n 0000 ~ 05119837 n 0000 ~ 05120000 n 0000 | a quantity that is more than what is appropriate; "four-year-olds have an overabundance of energy"; "we received an inundation of email" -05119714 07 n 04 excess 2 surplus 0 surplusage 0 nimiety 0 001 @ 05119367 n 0000 | a quantity much larger than is needed -05119837 07 n 03 glut 0 oversupply 0 surfeit 0 003 @ 05119367 n 0000 + 02356704 v 0202 + 02356704 v 0103 | the quality of being so overabundant that prices fall -05120000 07 n 01 bellyful 0 001 @ 05119367 n 0000 | an undesirable overabundance; "a bellyful of your complaints" -05120116 07 n 04 overplus 0 plethora 0 superfluity 0 embarrassment 0 004 @ 05118437 n 0000 + 01581305 a 0306 + 00015720 a 0202 ~ 05120310 n 0000 | extreme excess; "an embarrassment of riches" -05120310 07 n 02 redundancy 0 redundance 0 005 @ 05120116 n 0000 + 01581305 a 0203 + 01581305 a 0103 + 00549826 a 0102 ~ 05120564 n 0000 | the attribute of being superfluous and unneeded; "the use of industrial robots created redundancy among workers" -05120564 07 n 02 fifth_wheel 0 deadwood 0 001 @ 05120310 n 0000 | someone or something that is unwanted and unneeded -05120683 07 n 01 margin 0 003 @ 05107765 n 0000 ~ 05120835 n 0000 ~ 05121095 n 0000 | an amount beyond the minimum necessary; "the margin of victory" -05120835 07 n 03 margin_of_safety 0 safety_margin 0 margin_of_error 0 002 @ 05120683 n 0000 @ 13851067 n 0000 | the margin required in order to insure safety; "in engineering the margin of safety is the strength of the material minus the anticipated stress" -05121095 07 n 03 narrow_margin 0 narrowness 1 slimness 1 003 @ 05120683 n 0000 + 01394744 a 0302 + 02563310 a 0201 | a small margin; "the president was not humbled by his narrow margin of victory"; "the landslide he had in the electoral college obscured the narrowness of a victory based on just 43% of the popular vote" -05121418 07 n 02 number 0 figure 1 014 @ 05107765 n 0000 + 00637259 v 0207 + 00235918 v 0101 + 00948071 v 0102 + 00946755 v 0101 + 00948853 v 0101 + 02645007 v 0102 ~ 05121908 n 0000 ~ 05122099 n 0000 ~ 05122419 n 0000 ~ 05122557 n 0000 ~ 05122850 n 0000 ~ 05123098 n 0000 ~ 05123206 n 0000 | the property possessed by a sum or total or indefinite quantity of units or individuals; "he had a number of chores to do"; "the number of parameters is small"; "the figure was about a thousand" -05121908 07 n 03 numerousness 0 numerosity 0 multiplicity 0 006 @ 05121418 n 0000 + 01552419 a 0201 + 01552419 a 0101 = 01551633 a 0000 = 01552885 a 0000 ~ 05122295 n 0000 | a large number -05122099 07 n 02 preponderance 0 prevalence 1 003 @ 05121418 n 0000 + 02644234 v 0205 + 02645597 v 0101 | a superiority in numbers or amount; "a preponderance of evidence against the defendant" -05122295 07 n 01 multitudinousness 0 002 @ 05121908 n 0000 + 00301951 a 0105 | a very large number (especially of people) -05122419 07 n 02 innumerableness 0 countlessness 0 003 @ 05121418 n 0000 + 00301951 a 0201 + 00301951 a 0103 | a number beyond counting -05122557 07 n 02 majority 0 bulk 2 004 @ 05121418 n 0000 + 01471002 a 0101 ! 05122850 n 0101 = 01471002 a 0000 | the property resulting from being or relating to the greater in number of two parts; the main part; "the majority of his customers prefer it"; "the bulk of the work is finished" -05122850 07 n 01 minority 0 004 @ 05121418 n 0000 + 01471368 a 0101 ! 05122557 n 0101 = 01471368 a 0000 | being or relating to the smaller in number of two parts; "when the vote was taken they were in the minority"; "he held a minority position" -05123098 07 n 01 fewness 0 002 @ 05121418 n 0000 + 01552885 a 0101 | the quality of being small in number -05123206 07 n 01 roundness 2 002 @ 05121418 n 0000 + 00916524 a 0101 | the quality of being round numbers; "he gave us the results in round numbers, but their roundness didn't affect the point he was making" -05123416 07 n 01 extent 0 010 @ 05090441 n 0000 + 02685951 v 0105 + 02687916 v 0103 ~ 05123760 n 0000 ~ 05123935 n 0000 ~ 05124057 n 0000 ~ 05125377 n 0000 ~ 05128519 n 0000 ~ 05133107 n 0000 ~ 05134547 n 0000 | the distance or area or volume over which something extends; "the vast extent of the desert"; "an orchard of considerable extent" -05123760 07 n 01 coverage 0 002 @ 05123416 n 0000 + 01033527 v 0101 | the extent to which something is covered; "the dictionary's coverage of standard English is excellent" -05123935 07 n 01 frontage 0 002 @ 05123416 n 0000 ;c 09411430 n 0000 | the extent of land abutting on a street or water -05124057 07 n 03 limit 0 bound 0 boundary 0 009 @ 05123416 n 0000 + 00947077 v 0106 + 00235368 v 0101 + 00233335 v 0104 ~ 05124404 n 0000 ~ 05124534 n 0000 ~ 05124792 n 0000 ~ 05124928 n 0000 ~ 05125193 n 0000 | the greatest possible degree of something; "what he did was beyond the bounds of acceptable behavior"; "to the limit of his ability" -05124404 07 n 01 knife-edge 0 001 @ 05124057 n 0000 | a narrow boundary; "he lived on a knife-edge between genius and insanity" -05124534 07 n 03 starkness 1 absoluteness 1 utterness 0 003 @ 05124057 n 0000 + 00556881 a 0103 + 01535583 a 0101 | the quality of being complete or utter or extreme; "the starkness of his contrast between justice and fairness was open to many objections" -05124792 07 n 02 thermal_barrier 0 heat_barrier 0 001 @ 05124057 n 0000 | a limit to high speed flight imposed by aerodynamic heating -05124928 07 n 04 utmost 0 uttermost 0 maximum 0 level_best 0 008 @ 05124057 n 0000 + 00428870 v 0301 + 00428583 v 0301 + 00428870 v 0302 + 00428583 v 0302 + 01511520 a 0203 + 01511520 a 0102 + 01212095 a 0102 | the greatest possible degree; "he tried his utmost" -05125193 07 n 02 verge 0 brink 0 002 @ 05124057 n 0000 + 02703790 v 0101 | the limit beyond which something happens or changes; "on the verge of tears"; "on the brink of bankruptcy" -05125377 07 n 06 scope 0 range 0 reach 0 orbit 0 compass 0 ambit 0 015 @ 05123416 n 0000 + 02527085 v 0501 + 02690384 v 0201 + 02727039 v 0201 + 02992070 a 0101 ~ 05126066 n 0000 ~ 05126228 n 0000 ~ 05126362 n 0000 ~ 05126611 n 0000 ~ 05127640 n 0000 ~ 05127782 n 0000 ~ 05127959 n 0000 ~ 05128096 n 0000 ~ 05128219 n 0000 ~ 05128370 n 0000 | an area in which something acts or operates or has power or control: "the range of a supersonic jet"; "a piano has a greater range than the human voice"; "the ambit of municipal legislation"; "within the compass of this article"; "within the scope of an investigation"; "outside the reach of the law"; "in the political orbit of a world power" -05126066 07 n 02 approximate_range 0 ballpark 0 001 @ 05125377 n 0000 | near to the scope or range of something; "his answer wasn't even in the right ballpark" -05126228 07 n 01 confines 0 002 @ 05125377 n 0000 ;u 06295235 n 0000 | a bounded scope; "he stayed within the confines of the city" -05126362 07 n 01 contrast 0 003 @ 05125377 n 0000 ;c 00903559 n 0000 + 01021923 a 0101 | the range of optical density and tone on a photographic negative or print (or the extent to which adjacent areas on a television screen differ in brightness) -05126611 07 n 02 internationality 0 internationalism 0 004 @ 05125377 n 0000 + 01569002 a 0202 + 01037885 a 0102 + 01568375 a 0101 | quality of being international in scope; "he applauded the internationality of scientific terminology" -05126849 07 n 01 register 0 005 @ 04987620 n 0000 ;c 07020895 n 0000 + 01726605 v 0101 ~ 05127150 n 0000 ~ 05127500 n 0000 | (music) the timbre that is characteristic of a certain range and manner of production of the human voice or of different pipe organ stops or of different musical instruments -05127150 07 n 03 head_register 0 head_voice 0 head_tone 0 002 @ 05126849 n 0000 ~ 05127357 n 0000 | the higher ranges of the voice in speaking or singing; the vibrations of sung notes are felt in the head -05127357 07 n 01 falsetto 0 002 @ 05127150 n 0000 + 01214115 a 0101 | a male singing voice with artificially high tones in an upper register -05127500 07 n 03 chest_register 0 chest_voice 0 chest_tone 0 001 @ 05126849 n 0000 | the lower ranges of the voice in speaking or singing -05127640 07 n 01 latitude 2 002 @ 05125377 n 0000 + 00287275 a 0102 | scope for freedom of e.g. action or thought; freedom from restriction -05127782 07 n 03 horizon 0 view 0 purview 0 001 @ 05125377 n 0000 | the range of interest or activity that can be anticipated; "It is beyond the horizon of present knowledge" -05127959 07 n 02 sweep 0 expanse 1 003 @ 05125377 n 0000 + 02688403 v 0101 + 02685390 v 0104 | a wide scope; "the sweep of the plains" -05128096 07 n 01 gamut 0 001 @ 05125377 n 0000 | a complete extent or range: "a face that expressed a gamut of emotions" -05128219 07 n 01 spectrum 0 002 @ 05125377 n 0000 + 02800132 a 0101 | a broad range of related objects or values or qualities or ideas or activities -05128370 07 n 02 palette 0 pallet 0 001 @ 05125377 n 0000 | the range of colour characteristic of a particular artist or painting or school of art -05128519 07 n 03 area 0 expanse 0 surface_area 0 009 @ 05123416 n 0000 + 02640503 a 0101 ~ 05128870 n 0000 ~ 05129054 n 0000 ~ 06389230 n 0000 ~ 06389553 n 0000 ~ 06862202 n 0000 ~ 08516080 n 0000 ~ 08648153 n 0000 | the extent of a 2-dimensional surface enclosed within a boundary; "the area of a rectangle"; "it was about 500 square feet in area" -05128870 07 n 02 acreage 0 land_area 0 001 @ 05128519 n 0000 | an area of ground used for some particular purpose (such as building or farming); "he wanted some acreage to build on" -05129054 07 n 01 footprint 0 001 @ 05128519 n 0000 | the area taken up by some object; "the computer had a desktop footprint of 10 by 16 inches" -05129201 07 n 01 length 0 010 @ 13575869 n 0000 @ 05009170 n 0000 @ 05093581 n 0000 = 01433493 a 0000 = 01436003 a 0000 ~ 05101675 n 0000 ~ 05101815 n 0000 ~ 05102101 n 0000 ~ 05133287 n 0000 ~ 05133944 n 0000 | the linear extent in space from one end to the other; the longest dimension of something that is fixed in place; "the length of the table was 5 feet" -05129565 07 n 02 distance 1 length 3 009 @ 05098942 n 0000 ~ 00307176 n 0000 ~ 05129928 n 0000 ~ 05130028 n 0000 ~ 05130210 n 0000 ~ 05130402 n 0000 ~ 05130614 n 0000 ~ 05130735 n 0000 ~ 13897657 n 0000 | size of the gap between two places; "the distance from New York to Chicago"; "he determined the length of the shortest line segment joining the two points" -05129928 07 n 01 arm's_length 0 001 @ 05129565 n 0000 | a distance sufficient to exclude intimacy -05130028 07 n 01 gauge 0 004 @ 05129565 n 0000 ~ 02903964 n 0000 ~ 03809456 n 0000 ~ 04301626 n 0000 | the distance between the rails of a railway or between the wheels of a train -05130210 07 n 01 light_time 0 001 @ 05129565 n 0000 | distance measured in terms of the speed of light (or radio waves); "the light time from Jupiter to the sun is approximately 43 minutes" -05130402 07 n 01 skip_distance 0 001 @ 05129565 n 0000 | the shortest distance that permits radio signals (of a given frequency) to travel from the transmitter to the receiver by reflection from the ionosphere -05130614 07 n 02 wingspan 0 wingspread 2 001 @ 05129565 n 0000 | linear distance between the extremities of an airfoil -05130735 07 n 01 wingspread 1 001 @ 05129565 n 0000 | distance between the tips of the wings (as of a bird or insect) when fully extended -05130875 07 n 01 yardage 0 001 @ 05084201 n 0000 | distance measured in the aggregate number of yards; "what is the yardage of this golf course?" -05131023 07 n 02 hour 0 minute 0 001 @ 05084201 n 0000 | distance measured by the time taken to cover it; "we live an hour from the airport"; "its just 10 minutes away" -05131194 07 n 02 mileage 0 milage 0 001 @ 05084201 n 0000 | distance measured in miles -05131283 07 n 01 elevation 0 006 @ 05084201 n 0000 + 01974062 v 0103 ~ 05131537 n 0000 ~ 05131647 n 0000 ~ 05132045 n 0000 ~ 05132221 n 0000 | distance of something above a reference point (such as sea level); "there was snow at the higher elevations" -05131537 07 n 01 isometry 2 002 @ 05131283 n 0000 + 00891807 a 0101 | equality of elevation above sea level -05131647 07 n 02 altitude 0 height 2 006 @ 05131283 n 0000 + 02614945 a 0101 + 01205131 a 0101 ~ 05131902 n 0000 ~ 05132542 n 0000 ~ 05132667 n 0000 | elevation especially above sea level or above the earth's surface; "the altitude gave her a headache" -05131902 07 n 01 level 1 001 @ 05131647 n 0000 | height above ground; "the water reached ankle level"; "the pictures were at the same level" -05132045 07 n 02 grade 2 ground_level 0 002 @ 05131283 n 0000 + 01307609 v 0101 | the height of the ground on which something stands; "the base of the tower was below grade" -05132221 07 n 01 water_level 0 002 @ 05131283 n 0000 ~ 05132340 n 0000 | the level of the surface of a body of water -05132340 07 n 01 sea_level 0 001 @ 05132221 n 0000 | level of the ocean's surface (especially that halfway between mean high and low tide); used as a standard in reckoning land elevation or sea depth -05132542 07 n 01 ceiling 0 002 @ 05131647 n 0000 ;c 06118563 n 0000 | (meteorology) altitude of the lowest layer of clouds -05132667 07 n 01 ceiling 1 003 @ 05131647 n 0000 ~ 05132827 n 0000 ~ 05132962 n 0000 | maximum altitude at which a plane can fly (under specified conditions) -05132827 07 n 01 absolute_ceiling 0 001 @ 05132667 n 0000 | the maximum altitude at which an airplane can maintain horizontal flight -05132962 07 n 02 combat_ceiling 0 service_ceiling 0 001 @ 05132667 n 0000 | altitude above which a plane cannot climb faster than a given rate -05133107 07 n 01 length 2 001 @ 05123416 n 0000 | the property of being the extent of something from beginning to end; "the editor limited the length of my article to 500 words" -05133287 07 n 01 longness 0 006 @ 05129201 n 0000 + 02386125 a 0101 + 01433493 a 0101 ! 05133944 n 0101 ~ 05133535 n 0000 ~ 05133839 n 0000 | the property of being of long spatial extent; "one gene causes shortness and the other causes longness" -05133535 07 n 03 extension 0 lengthiness 0 prolongation 0 003 @ 05133287 n 0000 + 00317888 v 0301 ~ 05133748 n 0000 | amount or degree or range to which something extends; "the wire has an extension of 50 feet" -05133748 07 n 01 coextension 0 001 @ 05133535 n 0000 | equality of extension or duration -05133839 07 n 01 elongation 0 002 @ 05133287 n 0000 + 00318816 v 0101 | the quality of being elongated -05133944 07 n 01 shortness 3 003 @ 05129201 n 0000 + 01436003 a 0101 ! 05133287 n 0101 | the property of being of short spatial extent; "the shortness of the Channel crossing" -05134122 07 n 01 curtailment 0 002 @ 05052832 n 0000 + 00292877 v 0102 | the temporal property of being cut short -05134238 07 n 01 briefness 1 002 @ 05052832 n 0000 + 01442826 a 0101 | the temporal property of being very short -05134353 07 n 01 depth 2 001 @ 00024264 n 0000 | the attribute or quality of being deep, strong, or intense; "the depth of his breathing"; "the depth of his sighs," "the depth of his emotion" -05134547 07 n 02 depth 0 deepness 1 010 @ 05123416 n 0000 = 00690058 a 0000 = 00691696 a 0000 = 00692762 a 0000 = 00693356 a 0000 ~ 05134880 n 0000 ~ 05135155 n 0000 ~ 05135288 n 0000 ~ 05135451 n 0000 ~ 05135725 n 0000 | the extent downward or backward or inward; "the depth of the water"; "depth of a shelf"; "depth of a closet" -05134880 07 n 03 deepness 0 profundity 0 profoundness 0 007 @ 05134547 n 0000 + 00691141 a 0301 + 00691141 a 0201 + 02410983 a 0101 + 00690058 a 0101 ! 05135725 n 0101 ~ 05135582 n 0000 | the quality of being physically deep; "the profundity of the mine was almost a mile" -05135155 07 n 02 draft 0 draught 0 001 @ 05134547 n 0000 | the depth of a vessel's keel below the surface (especially when loaded) -05135288 07 n 01 penetration 0 001 @ 05134547 n 0000 | the depth to which something penetrates (especially the depth reached by a projectile that hits a target) -05135451 07 n 01 sounding 0 002 @ 05134547 n 0000 + 00491689 v 0102 | a measure of the depth of water taken with a sounding line -05135582 07 n 01 bottomlessness 0 003 @ 05134880 n 0000 + 01415917 a 0101 + 00690892 a 0101 | the property of being very deep; without limit -05135725 07 n 01 shallowness 0 004 @ 05134547 n 0000 + 00691696 a 0101 ! 05134880 n 0101 ~ 05135951 n 0000 | the quality of lacking physical depth; "take into account the shallowness at that end of the pool before you dive" -05135951 07 n 01 superficiality 2 002 @ 05135725 n 0000 + 02805490 a 0101 | shallowness in terms of affecting only surface layers of something; "he ignored the wound because of its superficiality" -05136150 07 n 02 width 0 breadth 0 006 @ 05093581 n 0000 = 02560548 a 0000 = 02561888 a 0000 ~ 05136343 n 0000 ~ 05136546 n 0000 ~ 05136788 n 0000 | the extent of something from side to side -05136343 07 n 02 wideness 0 broadness 0 006 @ 05136150 n 0000 + 01384212 a 0201 + 02560548 a 0202 + 02560548 a 0101 ! 05136788 n 0101 ~ 05136662 n 0000 | the property of being wide; having great width -05136546 07 n 01 beam 0 003 @ 05136150 n 0000 ;c 04194289 n 0000 + 02561014 a 0101 | (nautical) breadth amidships -05136662 07 n 02 thickness 3 heaviness 1 003 @ 05136343 n 0000 + 02411559 a 0201 + 02410393 a 0101 | used of a line or mark -05136788 07 n 01 narrowness 0 004 @ 05136150 n 0000 + 02561888 a 0101 ! 05136343 n 0101 ~ 05136978 n 0000 | the property of being narrow; having little width; "the narrowness of the road" -05136978 07 n 02 fineness 1 thinness 3 003 @ 05136788 n 0000 + 02562566 a 0202 + 02414031 a 0101 | the property of being very narrow or thin; "he marvelled at the fineness of her hair" -05137165 07 n 02 height 0 tallness 0 006 @ 05093581 n 0000 + 02385102 a 0201 = 01204557 a 0000 = 01206474 a 0000 ~ 05137402 n 0000 ~ 05137557 n 0000 | the vertical dimension of extension; distance from the base of something to the top -05137402 07 n 02 highness 0 loftiness 1 004 @ 05137165 n 0000 + 01205473 a 0202 + 01204557 a 0101 ! 05137557 n 0101 | the quality of being high or lofty -05137557 07 n 01 lowness 0 005 @ 05137165 n 0000 + 01206474 a 0101 ! 05137402 n 0101 ~ 05137778 n 0000 ~ 05137938 n 0000 | the quality of being low; lacking height; "he was suddenly aware of the lowness of the ceiling" -05137778 07 n 02 squatness 0 stubbiness 0 004 @ 05137557 n 0000 + 01437349 a 0201 + 02386962 a 0104 + 01207697 a 0101 | the property of being short and broad -05137938 07 n 02 shortness 4 truncation 0 002 @ 05137557 n 0000 + 02386612 a 0101 | the property of being truncated or short -05138065 07 n 01 third_dimension 0 001 @ 05093581 n 0000 | the dimension whereby a solid object differs from a two-dimensional drawing of it -05138208 07 n 01 worth 0 010 @ 04723816 n 0000 + 02586206 a 0102 + 02584981 a 0101 ! 05139561 n 0101 ~ 05138488 n 0000 ~ 05138958 n 0000 ~ 05139094 n 0000 ~ 05139342 n 0000 ~ 05139436 n 0000 ~ 05141683 n 0000 | the quality that renders something desirable or valuable or useful -05138488 07 n 01 value 0 016 @ 05138208 n 0000 + 00681429 v 0102 + 00681429 v 0103 ~ 05141222 n 0000 ~ 05145118 n 0000 ~ 05163807 n 0000 ~ 05164101 n 0000 ~ 05168261 n 0000 ~ 05172596 n 0000 ~ 13256894 n 0000 ~ 13257098 n 0000 ~ 13257511 n 0000 ~ 13335635 n 0000 ~ 13337146 n 0000 ~ 13337322 n 0000 ~ 13373214 n 0000 | the quality (positive or negative) that renders something desirable or valuable; "the Shakespearean Shylock is of dubious value in the modern world" -05138958 07 n 02 merit 1 virtue 3 002 @ 05138208 n 0000 ! 05139094 n 0101 | any admirable quality or attribute; "work of great merit" -05139094 07 n 02 demerit 0 fault 0 002 @ 05138208 n 0000 ! 05138958 n 0101 | the quality of being inadequate or falling short of perfection; "they discussed the merits and demerits of her novel"; "he knew his own faults much better than she did" -05139342 07 n 01 praisworthiness 0 001 @ 05138208 n 0000 | the property of deserving praise -05139436 07 n 01 worthwhileness 0 002 @ 05138208 n 0000 + 02587936 a 0101 | value sufficient to repay time or effort spent -05139561 07 n 02 worthlessness 0 ineptitude 0 010 @ 04723816 n 0000 + 02502163 a 0101 ! 05138208 n 0101 ~ 05139942 n 0000 ~ 05140086 n 0000 ~ 05140278 n 0000 ~ 05140454 n 0000 ~ 05140593 n 0000 ~ 05140793 n 0000 ~ 05141040 n 0000 | having no qualities that would render it valuable or useful; "the drill sergeant's intent was to convince all the recruits of their worthlessness" -05139942 07 n 01 fecklessness 0 003 @ 05139561 n 0000 + 01998730 a 0101 + 00511526 a 0101 | worthlessness due to being feeble and ineffectual -05140086 07 n 02 groundlessness 0 idleness 1 002 @ 05139561 n 0000 + 02353211 a 0203 | the quality of lacking substance or value; "the groundlessness of their report was quickly recognized" -05140278 07 n 02 paltriness 0 sorriness 0 005 @ 05139561 n 0000 + 02502578 a 0207 + 01126841 a 0206 + 02502994 a 0102 + 00107384 a 0103 | worthlessness due to insignificance -05140454 07 n 01 valuelessness 0 002 @ 05139561 n 0000 + 02504046 a 0101 | having none of the properties that endow something with value -05140593 07 n 02 shoddiness 1 trashiness 0 005 @ 05139561 n 0000 + 02503656 a 0202 + 02393791 a 020d + 02325642 a 0102 + 02346351 a 0102 | the quality of being cheaply imitative of something better -05140793 07 n 08 damn 0 darn 0 hoot 0 red_cent 0 shit 0 shucks 0 tinker's_damn 0 tinker's_dam 0 002 @ 05139561 n 0000 + 01127782 a 0505 | something of little value; "his promise is not worth a damn"; "not worth one red cent"; "not worth shucks" -05141040 07 n 02 vanity 1 emptiness 0 003 @ 05139561 n 0000 + 01498084 a 0201 + 01891773 a 0107 | the quality of being valueless or futile; "he rejected the vanities of the world" -05141222 07 n 04 invaluableness 0 preciousness 0 pricelessness 0 valuableness 0 007 @ 05138488 n 0000 + 02587738 a 0401 + 02500884 a 0401 + 02501367 a 0302 + 01462625 a 0202 + 02501367 a 0101 ~ 05141492 n 0000 | the positive quality of being precious and beyond value -05141492 07 n 01 gold 1 001 @ 05141222 n 0000 | something likened to the metal in brightness or preciousness or superiority etc.; "the child was as good as gold"; "she has a heart of gold" -05141683 07 n 01 price 1 003 @ 05138208 n 0000 + 00933599 a 0105 + 00933599 a 0104 | the high value or worth of something; "her price is far above rubies" -05141840 07 n 02 desirability 0 desirableness 0 004 @ 05142180 n 0000 + 00732960 a 0201 + 00732960 a 0101 ! 05142008 n 0101 | the quality of being worthy of desiring -05142008 07 n 01 undesirability 0 004 @ 05144079 n 0000 + 00853473 a 0101 + 00733905 a 0101 ! 05141840 n 0101 | the quality possessed by something that should be avoided -05142180 07 n 02 good 2 goodness 2 015 @ 04723816 n 0000 + 01661289 a 0201 + 01333477 a 0201 + 01166413 a 0201 + 00064787 a 0202 + 01123148 a 0201 ! 05144079 n 0202 ! 05144079 n 0101 ~ 04806804 n 0000 ~ 05141840 n 0000 ~ 05142641 n 0000 ~ 05143558 n 0000 ~ 05143690 n 0000 ~ 05143864 n 0000 ~ 05159948 n 0000 | that which is pleasing or valuable or useful; "weigh the good against the bad"; "among the highest goods of all are happiness and self-realization" -05142641 07 n 02 benefit 0 welfare 0 006 @ 05142180 n 0000 + 00064787 a 0101 + 02290956 v 0101 + 02290461 v 0103 ~ 05142863 n 0000 ~ 05143077 n 0000 | something that aids or promotes well-being; "for the benefit of all" -05142863 07 n 02 advantage 1 reward 0 003 @ 05142641 n 0000 ! 05164845 n 0201 + 02513268 v 0101 | benefit resulting from some event or action; "it turned out to my advantage"; "reaping the rewards of generosity" -05143077 07 n 02 sake 0 interest 1 002 @ 05142641 n 0000 ~ 05143300 n 0000 | a reason for wanting something done; "for your sake"; "died for the sake of his country"; "in the interest of safety"; "in the common interest" -05143300 07 n 01 behalf 0 001 @ 05143077 n 0000 | for someone's benefit (usually expressed as `in behalf' rather than `on behalf' and usually with a possessive); "in your behalf"; "campaigning in his own behalf"; "spoke a good word in his friend's behalf" -05143558 07 n 01 better 0 001 @ 05142180 n 0000 | something superior in quality or condition or effect; "a change for the better" -05143690 07 n 01 better 1 004 @ 05142180 n 0000 + 01106864 v 0101 + 00205885 v 0101 + 00205046 v 0101 | the superior one of two alternatives; "chose the better of the two" -05143864 07 n 01 optimum 0 005 @ 05142180 n 0000 + 00228645 a 0101 + 00228645 a 0102 + 00172505 v 0101 + 00172505 v 0102 | most favorable conditions or greatest degree or amount possible under given circumstances -05144079 07 n 02 bad 0 badness 0 013 @ 04723816 n 0000 + 02345713 a 0201 + 01131803 a 0201 + 01125429 a 0201 ! 05142180 n 0202 ! 05142180 n 0101 ~ 04807776 n 0000 ~ 05142008 n 0000 ~ 05144453 n 0000 ~ 05144663 n 0000 ~ 05160173 n 0000 ~ 05161436 n 0000 ~ 05165028 n 0000 | that which is below standard or expectations as of ethics or decency; "take the bad with the good" -05144453 07 n 01 worse 0 003 @ 05144079 n 0000 + 00232068 a 0101 + 00231252 a 0101 | something inferior in quality or condition or effect; "for better or for worse"; "accused of cheating and lying and worse" -05144663 07 n 01 evil 2 002 @ 05144079 n 0000 ~ 05144880 n 0000 | that which causes harm or destruction or misfortune; "the evil that men do lives after them; the good is oft interred with their bones"- Shakespeare -05144880 07 n 01 Four_Horsemen 0 002 @ 05144663 n 0000 ;c 06447897 n 0000 | (New Testament) the four evils that will come at the end of the world: conquest rides a white horse; war a red horse; famine a black horse; plague a pale horse -05145118 07 n 03 monetary_value 0 price 0 cost 0 008 @ 05138488 n 0000 + 00933599 a 0301 + 02702508 v 0301 ~ 05145573 n 0000 ~ 05145708 n 0000 ~ 05145891 n 0000 ~ 05146055 n 0000 ~ 05146739 n 0000 | the property of having material worth (often indicated by the amount of money something would bring if sold); "the fluctuating monetary value of gold and silver"; "he puts a high price on his services"; "he couldn't calculate the cost of the collection" -05145573 07 n 01 average_cost 0 001 @ 05145118 n 0000 | total cost for all units bought (or produced) divided by the number of units -05145708 07 n 03 marginal_cost 0 incremental_cost 0 differential_cost 0 001 @ 05145118 n 0000 | the increase or decrease in costs as a result of one more or one less unit of output -05145891 07 n 01 expensiveness 0 005 @ 05145118 n 0000 + 00933154 a 0101 ! 05146739 n 0101 ~ 05146272 n 0000 ~ 05146471 n 0000 | the quality of being high-priced -05146055 07 n 01 assessment 0 003 @ 05145118 n 0000 + 00682230 v 0101 ~ 05146178 n 0000 | the market value set on assets -05146178 07 n 01 tax_assessment 0 001 @ 05146055 n 0000 | the value set on taxable property -05146272 07 n 03 costliness 0 dearness 0 preciousness 2 004 @ 05145891 n 0000 + 02501534 a 0301 + 00933599 a 0202 + 00933599 a 0101 | the quality possessed by something with a great price or value -05146471 07 n 04 lavishness 0 luxury 1 sumptuosity 0 sumptuousness 1 007 @ 05145891 n 0000 + 02024928 a 0407 + 02024928 a 0307 + 02024928 a 0204 + 01204803 v 0201 + 02025274 a 0101 + 01111965 a 0101 | the quality possessed by something that is excessively expensive -05146739 07 n 01 inexpensiveness 0 005 @ 05145118 n 0000 + 00934199 a 0102 ! 05145891 n 0101 ~ 05146904 n 0000 ~ 05147237 n 0000 | the quality of being affordable -05146904 07 n 03 reasonableness 2 moderateness 1 modestness 0 004 @ 05146739 n 0000 + 01532912 a 0301 + 01531375 a 0201 + 01532261 a 0103 | the property of being moderate in price or expenditures; "the store is famous for the reasonableness of its prices"; "the modestness of the living standards here becomes obvious immediately" -05147237 07 n 04 bargain_rate 0 cheapness 0 cut_rate 0 cut_price 0 002 @ 05146739 n 0000 + 00934199 a 0201 | a price below the standard price -05147381 07 n 02 fruitfulness 0 fecundity 0 005 @ 04723816 n 0000 + 01080297 a 0101 ! 05148186 n 0101 ~ 05147586 n 0000 ~ 05147940 n 0000 | the quality of something that causes or assists healthy growth -05147586 07 n 04 richness 2 rankness 1 prolificacy 0 fertility 0 007 @ 05147381 n 0000 + 01081340 a 0402 + 01002256 a 0201 + 00016135 a 0201 + 01866429 a 0101 + 01081340 a 0104 + 02024143 a 0101 | the property of producing abundantly and sustaining vigorous and luxuriant growth; "he praised the richness of the soil"; "weeds lovely in their rankness" -05147940 07 n 02 productiveness 1 productivity 0 007 @ 05147381 n 0000 + 02332604 a 0201 + 02332604 a 0101 + 01081340 a 0103 + 01867295 a 0102 + 01865197 a 0101 ! 05148539 n 0101 | the quality of being productive or having the power to produce -05148186 07 n 03 fruitlessness 0 aridity 0 barrenness 0 006 @ 04723816 n 0000 + 01242750 a 0302 + 01866812 a 0102 ! 05147381 n 0101 ~ 05148399 n 0000 ~ 05148539 n 0000 | the quality of yielding nothing of value -05148399 07 n 01 poorness 2 002 @ 05148186 n 0000 + 02024411 a 0101 | less than adequate; "the relative poorness of New England farmland" -05148539 07 n 01 unproductiveness 0 004 @ 05148186 n 0000 + 00836111 a 0101 + 01866535 a 0101 ! 05147940 n 0101 | the quality of lacking the power to produce -05148699 07 n 02 utility 0 usefulness 0 019 @ 04723816 n 0000 + 01090820 a 0202 ! 05150588 n 0202 + 02496857 a 0101 + 01090820 a 0101 + 02495922 a 0102 + 01158872 v 0102 + 01158872 v 0103 ! 05150588 n 0101 = 02495922 a 0000 = 02497141 a 0000 ~ 05149127 n 0000 ~ 05149325 n 0000 ~ 05149695 n 0000 ~ 05149978 n 0000 ~ 05150129 n 0000 ~ 05150458 n 0000 ~ 05151088 n 0000 ~ 05152150 n 0000 | the quality of being of practical use -05149127 07 n 02 detergency 0 detergence 0 005 @ 05148699 n 0000 + 02118181 a 0201 + 01393038 v 0201 + 02118181 a 0101 + 01393038 v 0101 | detergent quality; the quality of having cleansing power -05149325 07 n 04 function 0 purpose 0 role 0 use 0 005 @ 05148699 n 0000 + 02670890 v 0102 = 01090308 a 0000 = 01090993 a 0000 ~ 05149589 n 0000 | what something is used for; "the function of an auger is to bore holes"; "ballet is beautiful but what use is it?" -05149589 07 n 01 raison_d'etre 0 001 @ 05149325 n 0000 | the purpose that justifies a thing's existence -05149695 07 n 01 helpfulness 0 003 @ 05148699 n 0000 + 01195536 a 0101 ~ 05149832 n 0000 | the property of providing useful assistance -05149832 07 n 03 avail 0 help 1 service 0 002 @ 05149695 n 0000 + 02549048 v 0101 | a means of serving; "of no avail"; "there's no help for it" -05149978 07 n 01 use 2 002 @ 05148699 n 0000 + 02561332 v 0103 | a particular service; "he put his knowledge to good use"; "patrons have their uses" -05150129 07 n 05 serviceability 0 serviceableness 0 usableness 0 useableness 0 usability 0 010 @ 05148699 n 0000 + 02496674 a 0401 + 02496534 a 0401 + 02496674 a 0302 + 02124253 a 0302 + 02496534 a 0201 + 01835843 a 0201 + 02123812 a 0201 + 01835843 a 0101 + 02123812 a 0101 | the quality of being able to provide good service -05150458 07 n 01 instrumentality 0 002 @ 05148699 n 0000 + 01196775 a 0102 | the quality of being instrumental for some purpose -05150588 07 n 03 inutility 0 uselessness 0 unusefulness 0 009 @ 04723816 n 0000 + 02497141 a 0201 ! 05148699 n 0202 + 02497743 a 0101 ! 05148699 n 0101 ~ 05150855 n 0000 ~ 05150986 n 0000 ~ 05152518 n 0000 ~ 05153155 n 0000 | the quality of having no practical use -05150855 07 n 01 futility 0 002 @ 05150588 n 0000 + 02497471 a 0101 | uselessness as a consequence of having no practical result -05150986 07 n 01 worthlessness 1 001 @ 05150588 n 0000 | the quality of being without practical use -05151088 07 n 01 practicality 0 010 @ 05148699 n 0000 + 01940651 a 0103 + 01834304 a 0101 ! 05152518 n 0101 = 01834304 a 0000 = 01836350 a 0000 ~ 05151372 n 0000 ~ 05151576 n 0000 ~ 05151701 n 0000 ~ 05151869 n 0000 | concerned with actual use rather than theoretical possibilities -05151372 07 n 01 functionality 0 005 @ 05151088 n 0000 + 02124253 a 0101 + 01835023 a 0101 + 01091728 a 0103 + 01090308 a 0101 | capable of serving a purpose well; "software with greater functionality" -05151576 07 n 01 viability 1 002 @ 05151088 n 0000 + 01822563 a 0104 | capable of being done in a practical and useful way -05151701 07 n 01 sensibleness 1 004 @ 05160574 n 0000 @ 05151088 n 0000 + 00191265 a 0101 + 01943406 a 0102 | the quality of showing good sense or practical judgment -05151869 07 n 02 realism 0 pragmatism 0 008 @ 05151088 n 0000 + 01940651 a 0204 + 01835409 a 0202 + 01835409 a 0203 + 10463582 n 0201 + 10463386 n 0201 + 10509605 n 0101 + 10509389 n 0101 | the attribute of accepting the facts of life and favoring practicality and literal truth -05152150 07 n 02 practicability 0 practicableness 0 007 @ 05148699 n 0000 + 01835663 a 0202 + 01822563 a 0203 ! 05153155 n 0202 + 01835663 a 0102 ! 05153155 n 0101 ~ 05152364 n 0000 | the quality of being usable -05152364 07 n 02 feasibility 0 feasibleness 0 004 @ 05152150 n 0000 + 01822563 a 0201 + 01822563 a 0101 ! 05153359 n 0101 | the quality of being doable -05152518 07 n 01 impracticality 0 004 @ 05150588 n 0000 + 02498213 a 0102 ! 05151088 n 0101 ~ 05152696 n 0000 | concerned with theoretical possibilities rather than actual use -05152696 07 n 01 idealism 1 004 @ 05152518 n 0000 + 10196965 n 0101 ~ 05152902 n 0000 ~ 05153037 n 0000 | impracticality by virtue of thinking of things in their ideal form rather than as they really are -05152902 07 n 01 romanticism 0 003 @ 05152696 n 0000 + 01837182 a 0102 + 10579676 n 0102 | impractical romantic ideals and attitudes -05153037 07 n 02 knight_errantry 0 quixotism 0 001 @ 05152696 n 0000 | quixotic (romantic and impractical) behavior -05153155 07 n 02 impracticability 0 impracticableness 0 006 @ 05150588 n 0000 + 01823574 a 0201 ! 05152150 n 0202 + 01823574 a 0101 ! 05152150 n 0101 ~ 05153359 n 0000 | the quality of not being usable -05153359 07 n 02 infeasibility 0 unfeasibility 0 004 @ 05153155 n 0000 + 01823574 a 0203 + 01823574 a 0102 ! 05152364 n 0101 | the quality of not being doable -05153520 07 n 02 competence 0 competency 0 008 @ 05200169 n 0000 + 00051571 a 0201 + 00510050 a 0201 + 00510050 a 0101 ! 05154241 n 0101 ~ 05153795 n 0000 ~ 05153897 n 0000 ~ 05154114 n 0000 | the quality of being adequately or well qualified physically and intellectually -05153795 07 n 01 fitness 1 002 @ 05153520 n 0000 + 01017161 a 0101 | the quality of being qualified -05153897 07 n 01 linguistic_competence 0 002 @ 05153520 n 0000 ;c 06172789 n 0000 | (linguistics) a speaker's implicit, internalized knowledge of the rules of their language (contrasted with linguistic performance) -05154114 07 n 01 proficiency 0 002 @ 05153520 n 0000 + 02226162 a 0105 | the quality of having great facility and competence -05154241 07 n 02 incompetence 0 incompetency 0 009 @ 05207130 n 0000 + 02229324 a 0204 + 01128103 a 0201 + 00511214 a 0201 + 02229324 a 0104 + 00052246 a 0102 + 01128103 a 0101 + 00511214 a 0101 ! 05153520 n 0101 | lack of physical or intellectual ability or qualifications -05154517 07 n 02 asset 0 plus 0 005 @ 04723816 n 0000 ! 05161436 n 0101 ~ 05154676 n 0000 ~ 05155821 n 0000 ~ 05159225 n 0000 | a useful or valuable quality -05154676 07 n 01 resource 0 005 @ 05154517 n 0000 ~ 05154908 n 0000 ~ 05155123 n 0000 ~ 05155476 n 0000 ~ 05155650 n 0000 | a source of aid or support that may be drawn upon when needed; "the local library is a valuable resource" -05154908 07 n 03 aid 0 assistance 0 help 0 007 @ 05154676 n 0000 + 00206998 v 0301 + 02555434 v 0301 + 00082081 v 0301 + 02735897 v 0301 + 02547586 v 0301 + 02547586 v 0103 | a resource; "visual aids in teaching" -05155123 07 n 03 recourse 0 refuge 0 resort 0 003 @ 05154676 n 0000 + 02590072 v 0302 ~ 05155349 n 0000 | something or someone turned to for assistance or security; "his only recourse was the police"; "took refuge in lying" -05155349 07 n 01 shadow 0 001 @ 05155123 n 0000 | refuge from danger or observation; "he felt secure in his father's shadow" -05155476 07 n 01 resourcefulness 0 002 @ 05154676 n 0000 + 00307182 a 0101 | the quality of being able to cope with a difficult situation; "a man of great resourcefulness" -05155650 07 n 01 inner_resource 0 001 @ 05154676 n 0000 | a resource provided by the mind or one's personal capabilities; "to have an inner resource against loneliness" -05155821 07 n 02 advantage 0 vantage 0 019 @ 05154517 n 0000 + 00064479 a 0101 + 02513268 v 0101 ! 05161614 n 0101 ~ 05156319 n 0000 ~ 05156481 n 0000 ~ 05156822 n 0000 ~ 05156993 n 0000 ~ 05157143 n 0000 ~ 05157274 n 0000 ~ 05157406 n 0000 ~ 05157574 n 0000 ~ 05158095 n 0000 ~ 05158296 n 0000 ~ 05158431 n 0000 ~ 05158619 n 0000 ~ 05159725 n 0000 ~ 05160796 n 0000 ~ 13313591 n 0000 | the quality of having a superior or more favorable position; "the experience gave him the advantage over me" -05156319 07 n 02 favor 0 favour 0 002 @ 05155821 n 0000 + 00692143 v 0101 | an advantage to the benefit of someone or something; "the outcome was in his favor" -05156481 07 n 01 leverage 0 002 @ 05155821 n 0000 ~ 05156673 n 0000 | strategic advantage; power to act effectively; "relatively small groups can sometimes exert immense political leverage" -05156673 07 n 01 bargaining_chip 0 001 @ 05156481 n 0000 | leverage in the form of an inducement or a concession useful in successful negotiations -05156822 07 n 01 handicap 2 004 @ 05155821 n 0000 + 01085874 v 0101 ~ 05163189 n 0000 ~ 05163401 n 0000 | advantage given to a competitor to equalize chances of winning -05156993 07 n 01 homecourt_advantage 0 001 @ 05155821 n 0000 | the advantage of playing on your home court in front of fans who are rooting for you -05157143 07 n 01 lead 2 001 @ 05155821 n 0000 | an advantage held by a competitor in a race; "he took the lead at the last turn" -05157274 07 n 02 pull 0 clout 0 001 @ 05155821 n 0000 | special advantage or influence; "the chairman's nephew has a lot of pull" -05157406 07 n 02 start 0 head_start 0 001 @ 05155821 n 0000 | the advantage gained by beginning early (as in a race); "with an hour's start he will be hard to catch" -05157574 07 n 02 profit 0 gain 2 004 @ 05155821 n 0000 + 02290461 v 0101 ~ 05157732 n 0000 ~ 05157866 n 0000 | the advantageous quality of being beneficial -05157732 07 n 01 account 0 001 @ 05157574 n 0000 | the quality of taking advantage; "she turned her writing skills to good account" -05157866 07 n 04 profitableness 0 profitability 0 gainfulness 0 lucrativeness 0 005 @ 05157574 n 0000 + 01870889 a 0201 ! 05165533 n 0202 + 01870889 a 0101 ! 05165533 n 0101 | the quality of affording gain or benefit or profit -05158095 07 n 01 preference 0 001 @ 05155821 n 0000 | grant of favor or advantage to one over another (especially to a country or countries in matters of international trade, such as levying duties) -05158296 07 n 01 privilege 2 002 @ 05155821 n 0000 + 02453692 v 0101 | a special advantage or immunity or benefit not enjoyed by all -05158431 07 n 02 expedience 0 expediency 0 005 @ 05155821 n 0000 + 01813733 a 0201 ! 05165303 n 0202 + 01813733 a 0101 ! 05165303 n 0101 | the quality of being suited to the end in view -05158619 07 n 03 superiority 1 favorable_position 0 favourable_position 0 006 @ 05155821 n 0000 + 02100566 a 0102 + 02338615 a 0101 ~ 05158857 n 0000 ~ 05158975 n 0000 ~ 05159123 n 0000 | the quality of being at a competitive advantage -05158857 07 n 01 edge 0 001 @ 05158619 n 0000 | a slight competitive advantage; "he had an edge on the competition" -05158975 07 n 01 inside_track 0 001 @ 05158619 n 0000 | a favorable position in a competition; "the boss's son had the inside track for that job" -05159123 07 n 02 upper_hand 0 whip_hand 0 001 @ 05158619 n 0000 | position of advantage and control -05159225 07 n 08 forte 1 strong_suit 0 long_suit 0 metier 0 specialty 2 speciality 2 strong_point 0 strength 1 005 @ 05154517 n 0000 ! 05159606 n 0701 + 01103844 a 0602 + 01853228 a 0602 ~ 05159495 n 0000 | an asset of special worth or utility; "cooking is his forte" -05159495 07 n 02 green_thumb 0 green_fingers 0 001 @ 05159225 n 0000 | a special ability to make plants grow -05159606 07 n 01 weak_point 0 002 @ 05161436 n 0000 ! 05159225 n 0107 | an attribute that is inadequate or deficient -05159725 07 n 01 good 0 002 @ 05155821 n 0000 ~ 05159854 n 0000 | benefit; "for your own good"; "what's the good of worrying?" -05159854 07 n 02 common_good 0 commonweal 0 001 @ 05159725 n 0000 | the good of a community -05159948 07 n 03 wisdom 1 wiseness 1 soundness 1 007 @ 05142180 n 0000 + 02499511 a 0302 + 02037152 a 0301 ! 05160173 n 0301 + 01898722 a 0202 ~ 05160399 n 0000 ~ 05160574 n 0000 | the quality of being prudent and sensible -05160173 07 n 01 unsoundness 0 005 @ 05144079 n 0000 + 01174222 a 0103 + 02076817 a 0102 ! 05031849 n 0102 ! 05159948 n 0103 | not mentally or physically healthy; "no one can be a poet without a certain unsoundness of mind" -05160399 07 n 01 advisability 0 003 @ 05159948 n 0000 + 00067038 a 0101 ! 05165028 n 0101 | the quality of being advisable; "they questioned the advisability of our policy" -05160574 07 n 01 reasonableness 0 005 @ 05159948 n 0000 + 01943406 a 0101 = 01943406 a 0000 = 01944660 a 0000 ~ 05151701 n 0000 | goodness of reason and judgment; "the judiciary is built on the reasonableness of judges" -05160796 07 n 06 favorableness 0 favourableness 0 advantageousness 0 positivity 1 positiveness 1 profitableness 1 009 @ 05155821 n 0000 + 00064479 a 0601 + 00064479 a 0301 + 00177547 a 0203 + 00995119 a 0202 + 00177547 a 0102 + 00995119 a 0101 ! 05161967 n 0101 ~ 05161150 n 0000 | the quality of being encouraging or promising of a successful outcome -05161150 07 n 02 auspiciousness 0 propitiousness 0 009 @ 05160796 n 0000 + 00177186 a 0201 ! 05162217 n 0202 + 00176150 a 0101 ! 05162217 n 0101 = 00176150 a 0000 = 00176838 a 0000 = 00177186 a 0000 = 00177963 a 0000 | the favorable quality of strongly indicating a successful result -05161436 07 n 01 liability 0 005 @ 05144079 n 0000 + 01411919 a 0102 ! 05154517 n 0101 ~ 05159606 n 0000 ~ 05161614 n 0000 | the quality of being something that holds you back -05161614 07 n 01 disadvantage 0 014 @ 05161436 n 0000 + 00065488 a 0101 + 02513460 v 0101 ! 05155821 n 0101 ~ 05161967 n 0000 ~ 05162455 n 0000 ~ 05162642 n 0000 ~ 05162807 n 0000 ~ 05162985 n 0000 ~ 05164521 n 0000 ~ 05164845 n 0000 ~ 05165175 n 0000 ~ 05165303 n 0000 ~ 05165533 n 0000 | the quality of having an inferior or less favorable position -05161967 07 n 02 unfavorableness 0 unfavourableness 0 007 @ 05161614 n 0000 + 01129644 a 0202 + 00996448 a 0202 + 01129644 a 0101 + 00996448 a 0101 ! 05160796 n 0101 ~ 05162217 n 0000 | the quality of not being encouraging or indicative of success -05162217 07 n 02 inauspiciousness 0 unpropitiousness 0 007 @ 05161967 n 0000 + 00177963 a 0201 ! 05161150 n 0202 + 00178126 a 0102 + 00997036 a 0102 + 00176838 a 0101 ! 05161150 n 0101 | the quality of suggesting an unsuccessful result -05162455 07 n 01 limitation 0 003 @ 05161614 n 0000 + 00233335 v 0104 + 00235368 v 0101 | the quality of being limited or restricted; "it is a good plan but it has serious limitations" -05162642 07 n 02 defect 1 shortcoming 0 001 @ 05161614 n 0000 | a failing or deficiency; "that interpretation is an unfortunate defect of our lack of information" -05162807 07 n 02 awkwardness 1 nuisance_value 0 002 @ 05161614 n 0000 + 00746047 a 0101 | the quality of an embarrassing situation; "he sensed the awkwardness of his proposal" -05162985 07 n 02 loss 0 deprivation 0 001 @ 05161614 n 0000 | the disadvantage that results from losing something; "his loss of credibility led to his resignation"; "losing him is no great deprivation" -05163189 07 n 01 penalty 1 003 @ 05156822 n 0000 ;c 00455599 n 0000 ~ 05163582 n 0000 | (games) a handicap or disadvantage that is imposed on a competitor (or a team) for an infraction of the rules of the game -05163401 07 n 01 scratch 1 002 @ 05156822 n 0000 ;c 00464894 n 0000 | (golf) a handicap of zero strokes; "a golfer who plays at scratch should be able to achieve par on a course" -05163582 07 n 01 game_misconduct 0 002 @ 05163189 n 0000 ;c 00463543 n 0000 | (ice hockey) a penalty that suspends a player for the remainder of a game (but allows the team to send in a substitute for the suspended player) -05163807 07 n 03 price 2 cost 1 toll 1 004 @ 05138488 n 0000 + 00933941 a 0202 + 02628961 v 0201 ~ 05164353 n 0000 | value measured by what must be given or done or undergone to obtain something; "the cost in human life was enormous"; "the price of success is hard work"; "what price glory?" -05164101 07 n 01 richness 5 003 @ 05138488 n 0000 + 02397234 a 0103 + 01081340 a 0104 | the quality of having high intrinsic value; "the richness of the mines and pastureland"; "the cut of her clothes and the richness of the fabric were distinctive" -05164353 07 n 01 death_toll 0 001 @ 05163807 n 0000 | the number of deaths resulting from some particular cause such as an accident or a battle or a natural disaster -05164521 07 n 01 drawback 0 002 @ 05161614 n 0000 ~ 05164673 n 0000 | the quality of being a hindrance; "he pointed out all the drawbacks to my plan" -05164673 07 n 02 catch 0 gimmick 0 002 @ 05164521 n 0000 + 00746819 a 0101 | a drawback or difficulty that is not readily evident; "it sounds good but what's the catch?" -05164845 07 n 01 penalty 0 002 @ 05161614 n 0000 ! 05142863 n 0102 | the disadvantage or painful consequences of an action or condition; "neglected his health and paid the penalty" -05165028 07 n 01 inadvisability 0 004 @ 05144079 n 0000 + 00932565 a 0101 + 00067767 a 0101 ! 05160399 n 0101 | the quality of being ill-advised -05165175 07 n 02 inferiority 1 unfavorable_position 0 001 @ 05161614 n 0000 | the quality of being a competitive disadvantage -05165303 07 n 02 inexpedience 0 inexpediency 0 007 @ 05161614 n 0000 + 01814252 a 0201 + 00932367 a 0201 ! 05158431 n 0202 + 01814252 a 0101 + 00932367 a 0101 ! 05158431 n 0101 | the quality of being unsuited to the end in view -05165533 07 n 02 unprofitableness 0 unprofitability 0 005 @ 05161614 n 0000 + 01871949 a 0201 ! 05157866 n 0202 + 01871949 a 0101 ! 05157866 n 0101 | the quality of affording no gain or no benefit or no profit -05165745 07 n 01 constructiveness 0 004 @ 04723816 n 0000 + 01818077 a 0101 + 00584820 a 0101 ! 05165904 n 0101 | the quality of serving to build or improve -05165904 07 n 01 destructiveness 0 005 @ 04723816 n 0000 + 00586183 a 0101 ! 05165745 n 0101 ~ 05166072 n 0000 ~ 05166397 n 0000 | the quality of causing destruction -05166072 07 n 02 harmfulness 0 injuriousness 0 005 @ 05165904 n 0000 + 01161059 a 0203 + 01160031 a 0101 ~ 05166260 n 0000 ~ 05166560 n 0000 | destructiveness that causes harm or injury -05166260 07 n 01 insidiousness 1 002 @ 05166072 n 0000 + 01162406 a 0101 | subtle and cumulative harmfulness (especially of a disease) -05166397 07 n 01 poison 0 004 @ 05165904 n 0000 + 02450512 a 0101 + 00226105 a 0101 + 02580678 v 0101 | anything that harms or destroys; "the poison of fascism" -05166560 07 n 02 virulence 0 virulency 0 005 @ 05166072 n 0000 ;c 01326291 n 0000 + 02449952 a 0203 + 02449952 a 0103 + 00045561 a 0101 | extreme harmfulness (as the capacity of a microorganism to cause disease); "the virulence of the plague" -05166805 07 n 03 positivity 0 positiveness 0 positivism 0 008 @ 04723816 n 0000 + 00339288 a 0203 + 02782815 a 0203 + 01817500 a 0201 ! 05167618 n 0202 + 01817500 a 0101 ! 05167618 n 0101 ~ 05167237 n 0000 | a quality or state characterized by certainty or acceptance or affirmation and dogmatic assertiveness -05167117 07 n 01 affirmativeness 0 002 @ 04640927 n 0000 + 01817908 a 0101 | the agreeable quality of one who assents -05167237 07 n 02 assertiveness 0 self-assertiveness 0 003 @ 05166805 n 0000 + 00156101 a 0101 ~ 05167412 n 0000 | aggressive self-assurance; given to making bold assertions -05167412 07 n 04 bumptiousness 0 cockiness 0 pushiness 0 forwardness 2 005 @ 05167237 n 0000 + 00204491 a 0401 + 00104318 a 0302 + 00156440 a 0201 + 00205033 a 0101 | offensive boldness and assertiveness -05167618 07 n 03 negativity 0 negativeness 0 negativism 0 007 @ 04723816 n 0000 + 09999795 n 0302 + 01128508 a 0201 + 00075515 a 0201 ! 05166805 n 0202 + 01818234 a 0101 ! 05166805 n 0101 | characterized by habitual skepticism and a disagreeable tendency to deny or oppose or resist suggestions or commands -05167927 07 n 01 occidentalism 0 001 @ 04723816 n 0000 | the quality or customs or mannerisms characteristic of Western civilizations -05168063 07 n 01 orientalism 0 002 @ 04723816 n 0000 + 10383689 n 0101 | the quality or customs or mannerisms characteristic of Asian civilizations; "orientalisms can be found in Mozart's operas" -05168261 07 n 01 importance 0 017 @ 05138488 n 0000 + 02161432 a 0102 + 00655779 a 0102 + 01275562 a 0101 ! 05172596 n 0101 = 01275562 a 0000 = 01279978 a 0000 ~ 05168697 n 0000 ~ 05168890 n 0000 ~ 05169037 n 0000 ~ 05169412 n 0000 ~ 05169507 n 0000 ~ 05169601 n 0000 ~ 05169813 n 0000 ~ 05171045 n 0000 ~ 05171800 n 0000 ~ 05172322 n 0000 | the quality of being important and worthy of note; "the importance of a well-balanced diet" -05168697 07 n 01 big_deal 0 001 @ 05168261 n 0000 | anything of great importance or consequence -05168795 07 n 01 face 1 001 @ 13945919 n 0000 | status in the eyes of others; "he lost face" -05168890 07 n 01 magnitude 1 003 @ 05168261 n 0000 + 00434077 v 0101 ~ 05106317 n 0000 | relative importance; "a problem of the first magnitude" -05169037 07 n 01 account 1 001 @ 05168261 n 0000 | importance or value; "a person of considerable account"; "he predicted that although it is of small account now it will rapidly increase in importance" -05169242 07 n 01 matter 0 002 @ 05170574 n 0000 + 02645839 v 0102 | (used with negation) having consequence; "they were friends and it was no matter who won the games" -05169412 07 n 01 momentousness 0 002 @ 05168261 n 0000 + 02161982 a 0101 | utmost importance -05169507 07 n 01 prominence 0 002 @ 05168261 n 0000 + 00579622 a 0103 | relative importance -05169601 07 n 02 greatness 0 illustriousness 0 004 @ 05168261 n 0000 + 01375831 a 0205 + 01121989 a 0201 + 01278818 a 0101 | the property possessed by something or someone of outstanding importance or eminence -05169813 07 n 01 significance 0 008 @ 05168261 n 0000 + 02161432 a 0101 ! 05173579 n 0101 = 02161432 a 0000 = 02164402 a 0000 ~ 05170088 n 0000 ~ 05170236 n 0000 ~ 05170574 n 0000 | the quality of being significant; "do not underestimate the significance of nuclear power" -05170088 07 n 01 historicalness 0 004 @ 05169813 n 0000 + 01730060 a 0102 + 02920121 a 0101 + 02377418 a 0102 | significance owing to its history -05170236 07 n 01 meaningfulness 0 004 @ 05169813 n 0000 + 01496976 a 0101 ! 05173795 n 0101 ~ 05170400 n 0000 | the quality of having great value or significance -05170400 07 n 02 purposefulness 0 sense_of_purpose 0 004 @ 05170236 n 0000 + 01497594 a 0101 + 01909890 a 0101 ! 05174326 n 0101 | the quality of having a definite purpose -05170574 07 n 03 consequence 0 import 0 moment 0 006 @ 05169813 n 0000 + 02161982 a 0301 + 01277753 a 0101 ! 05174517 n 0101 ~ 05169242 n 0000 ~ 05170923 n 0000 | having important effects or influence; "decisions of great consequence are made by the president himself"; "virtue is of more moment than security"; "that result is of no consequence" -05170923 07 n 01 hell_to_pay 0 001 @ 05170574 n 0000 | dire consequences; "when the pig ran away there was hell to pay" -05171045 07 n 02 essentiality 0 essentialness 0 013 @ 05168261 n 0000 + 01580306 a 0201 + 01276150 a 0204 + 02722988 a 0201 + 00055539 a 0202 + 00900616 a 0201 + 01276150 a 0104 + 00900616 a 0101 ! 05172815 n 0101 = 00900616 a 0000 = 00902652 a 0000 ~ 05171352 n 0000 ~ 05171491 n 0000 | basic importance -05171352 07 n 01 vitalness 0 003 @ 05171045 n 0000 + 00902347 a 0101 + 00095094 a 0101 | the quality of being essential to maintain life -05171491 07 n 03 indispensability 0 indispensableness 0 vitalness 1 009 @ 05171045 n 0000 + 01580306 a 0302 + 00902347 a 0301 + 01580306 a 0202 + 00903668 a 0201 ! 05172953 n 0202 + 01580306 a 0102 + 00903668 a 0101 ! 05172953 n 0101 | the quality possessed by something that you cannot possibly do without -05171800 07 n 01 urgency 0 004 @ 05168261 n 0000 + 00713558 a 0102 ~ 05171978 n 0000 ~ 05172131 n 0000 | pressing importance requiring speedy action; "the urgency of his need" -05171978 07 n 02 edge 1 sharpness 4 002 @ 05171800 n 0000 + 02406370 a 0101 | the attribute of urgency in tone of voice; "his voice had an edge to it" -05172131 07 n 02 imperativeness 0 instancy 0 003 @ 05171800 n 0000 + 00712877 a 0205 ;u 07073447 n 0201 | the quality of being insistent; "he pressed his demand with considerable instancy" -05172322 07 n 02 weight 1 weightiness 1 004 @ 05168261 n 0000 + 01770392 a 0203 + 01278423 a 0204 + 01278423 a 0104 | the relative importance granted to something; "his opinion carries great weight"; "the progression implied an increasing weightiness of the items listed" -05172596 07 n 01 unimportance 0 007 @ 05138488 n 0000 + 02164402 a 0102 + 01279978 a 0101 ! 05168261 n 0101 ~ 05172815 n 0000 ~ 05173205 n 0000 ~ 05173579 n 0000 | the quality of not being important or worthy of note -05172815 07 n 01 inessentiality 0 004 @ 05172596 n 0000 + 00902652 a 0101 ! 05171045 n 0101 ~ 05172953 n 0000 | not of basic importance -05172953 07 n 02 dispensability 0 dispensableness 0 007 @ 05172815 n 0000 + 00903449 a 0201 ! 05171491 n 0202 + 00903449 a 0101 ! 05171491 n 0101 = 00903449 a 0000 = 00903668 a 0000 | the quality possessed by something that you can get along without -05173205 07 n 04 pettiness 0 triviality 0 slightness 2 puniness 1 006 @ 05172596 n 0000 + 02326342 a 0401 + 01280908 a 020a + 02100968 a 0104 + 02164913 a 0303 ~ 05173443 n 0000 | the quality of being unimportant and petty or frivolous -05173443 07 n 01 joke 0 001 @ 05173205 n 0000 | a triviality not to be taken seriously; "I regarded his campaign for mayor as a joke" -05173579 07 n 01 insignificance 0 007 @ 05172596 n 0000 + 01473353 a 0101 + 01498298 a 0101 + 02164402 a 0101 ! 05169813 n 0101 ~ 05173795 n 0000 ~ 05174517 n 0000 | the quality of having little or no significance -05173795 07 n 01 meaninglessness 0 004 @ 05173579 n 0000 ! 05170236 n 0101 ~ 05174023 n 0000 ~ 05174326 n 0000 | the quality of having no value or significance; "he resented the meaninglessness of the tasks they assigned him" -05174023 07 n 05 inanity 0 senselessness 0 mindlessness 2 vacuity 0 pointlessness 0 010 @ 05173795 n 0000 + 02503305 a 0502 + 01498084 a 0403 + 02571277 a 0405 + 01945139 a 0301 + 01334277 a 0301 + 01498418 a 0301 + 02571277 a 0304 + 02571277 a 0103 + 02503305 a 0204 | total lack of meaning or ideas -05174326 07 n 02 purposelessness 0 aimlessness 0 005 @ 05173795 n 0000 + 02127159 a 0201 + 02503305 a 0203 + 01910488 a 0101 ! 05170400 n 0101 | the quality of lacking any definite purpose -05174517 07 n 01 inconsequence 0 003 @ 05173579 n 0000 + 01280349 a 0101 ! 05170574 n 0101 | having no important effects or influence -05174653 07 n 01 right 0 022 @ 05854150 n 0000 + 02519991 v 0101 ~ 05175467 n 0000 ~ 05175613 n 0000 ~ 05175771 n 0000 ~ 05175904 n 0000 ~ 05176082 n 0000 ~ 05176188 n 0000 ~ 05176341 n 0000 ~ 05176477 n 0000 ~ 05176846 n 0000 ~ 05177285 n 0000 ~ 05178394 n 0000 ~ 05178715 n 0000 ~ 05179567 n 0000 ~ 05187711 n 0000 ~ 05187857 n 0000 ~ 05187941 n 0000 ~ 05188095 n 0000 ~ 05188220 n 0000 ~ 05188367 n 0000 ~ 05188547 n 0000 | an abstract idea of that which is due to a person or governmental body by law or tradition or nature; "they are endowed by their Creator with certain unalienable Rights"; "Certain rights can never be granted to the government but must be kept in the hands of the people"- Eleanor Roosevelt; "a right is not something that somebody gives you; it is something that nobody can take away" -05175467 07 n 01 access 1 001 @ 05174653 n 0000 | the right to obtain or make use of or take advantage of something (as services or membership) -05175613 07 n 01 advowson 0 002 @ 05174653 n 0000 ;c 08441203 n 0000 | the right in English law of presenting a nominee to a vacant ecclesiastical benefice -05175771 07 n 01 cabotage 0 001 @ 05174653 n 0000 | the exclusive right of a country to control the air traffic within its borders -05175904 07 n 02 claim 2 title 2 003 @ 05174653 n 0000 + 00758333 v 0101 + 01018352 v 0101 | an informal right to something; "his claim on her attentions"; "his title to fame" -05176082 07 n 01 due 0 001 @ 05174653 n 0000 | that which is deserved or owed; "give the devil his due" -05176188 07 n 05 entree 0 access 0 accession 0 admission 0 admittance 0 003 @ 05174653 n 0000 + 02449847 v 0501 ~ 05180881 n 0000 | the right to enter -05176341 07 n 01 floor 0 001 @ 05174653 n 0000 | the parliamentary right to address an assembly; "the chairman granted him the floor" -05176477 07 n 01 grant 0 003 @ 05174653 n 0000 + 02255268 v 0103 + 02255462 v 0102 | a right or privilege that has been granted -05176607 07 n 04 authority 2 authorization 2 authorisation 2 sanction 0 004 @ 06689297 n 0000 + 02479154 v 0401 + 00803325 v 0302 + 00803325 v 0201 | official permission or approval; "authority for the program was renewed several times" -05176846 07 n 01 human_right 0 009 @ 05174653 n 0000 ;c 08441203 n 0000 ~ 05181975 n 0000 ~ 05182080 n 0000 ~ 05182157 n 0000 ~ 05182240 n 0000 ~ 05182354 n 0000 ~ 05182452 n 0000 ~ 05182563 n 0000 | (law) any basic right or freedom to which all human beings are entitled and in whose exercise a government may not interfere (including rights to life and liberty as well as freedom of thought and expression and equality before the law) -05177285 07 n 01 legal_right 0 020 @ 05174653 n 0000 ~ 05177705 n 0000 ~ 05177897 n 0000 ~ 05178220 n 0000 ~ 05178571 n 0000 ~ 05181199 n 0000 ~ 05187187 n 0000 ~ 05187446 n 0000 ~ 05188646 n 0000 ~ 05188801 n 0000 ~ 05189057 n 0000 ~ 05189208 n 0000 ~ 05189396 n 0000 ~ 05189591 n 0000 ~ 05189946 n 0000 ~ 05190106 n 0000 ~ 05190356 n 0000 ~ 05190586 n 0000 ~ 06473168 n 0000 ~ 13242719 n 0000 | a right based in law -05177705 07 n 01 compulsory_process 0 001 @ 05177285 n 0000 | the right of a defendant to have a court use its subpoena power to compel the appearance of material witnesses before the court -05177897 07 n 01 conjugal_right 0 001 @ 05177285 n 0000 | the right of married persons to the enjoyment of association and sympathy and confidence and domestic happiness and the comfort of living together and eating meals at the same table and profiting from joint property right and the intimacies of domestic relations -05178220 07 n 02 conjugal_visitation_right 0 conjugal_visitation 0 001 @ 05177285 n 0000 | the legal right in a prison for the inmate and spouse to have sexual intercourse -05178394 07 n 02 preemption 0 pre-emption 0 004 @ 05174653 n 0000 + 02302454 v 0101 ~ 13241182 n 0000 ~ 13241407 n 0000 | the right to purchase something in advance of others -05178571 07 n 02 preemption 1 pre-emption 1 001 @ 05177285 n 0000 | the right of a government to seize or appropriate something (as property) -05178715 07 n 04 prerogative 0 privilege 0 perquisite 0 exclusive_right 0 004 @ 05174653 n 0000 + 02453692 v 0201 ~ 05179180 n 0000 ~ 05179410 n 0000 | a right reserved exclusively by a particular person or group (especially a hereditary or official right); "suffrage was the prerogative of white adult males" -05179027 07 n 01 public_easement 0 001 @ 05179180 n 0000 | any easement enjoyed by the public in general (as the public's right to use public streets) -05179180 07 n 01 easement 0 004 @ 05178715 n 0000 ;c 08441203 n 0000 ~ 05179027 n 0000 ~ 05189819 n 0000 | (law) the privilege of using something that is not your own (as using another's land as a right of way to your own land) -05179410 07 n 01 privilege_of_the_floor 0 001 @ 05178715 n 0000 | the right to be admitted onto the floor of a legislative assembly while it is in session -05179567 07 n 01 privilege 1 008 @ 05174653 n 0000 ;c 08441203 n 0000 ~ 05179838 n 0000 ~ 05179993 n 0000 ~ 05180135 n 0000 ~ 05180286 n 0000 ~ 05180483 n 0000 ~ 05180677 n 0000 | (law) the right to refuse to divulge information obtained in a confidential relationship -05179838 07 n 01 attorney-client_privilege 0 001 @ 05179567 n 0000 | the right of a lawyer to refuse to divulge confidential information from his client -05179993 07 n 01 informer's_privilege 0 001 @ 05179567 n 0000 | the right of the government to refuse to reveal the identity of an informer -05180135 07 n 01 journalist's_privilege 0 001 @ 05179567 n 0000 | the right of a journalist to refuse to divulge sources of confidential information -05180286 07 n 02 marital_communications_privilege 0 husband-wife_privilege 0 001 @ 05179567 n 0000 | neither spouse can divulge confidential communications from the other while they were married -05180483 07 n 01 physician-patient_privilege 0 001 @ 05179567 n 0000 | the right of a physician to refuse to divulge confidential information from a patient without the consent of the patient -05180677 07 n 01 priest-penitent_privilege 0 001 @ 05179567 n 0000 | the right of a clergyman to refuse to divulge confidential information received from a person during confession or similar exchanges -05180881 07 n 01 door 0 002 @ 05176188 n 0000 ~ 05181078 n 0000 | anything providing a means of access (or escape); "we closed the door to Haitian immigrants"; "education is the door to success" -05181078 07 n 01 open_door 0 001 @ 05180881 n 0000 | freedom of access; "he maintained an open door for all employees" -05181199 07 n 02 title 0 claim 1 006 @ 05177285 n 0000 + 02816340 a 0102 + 02816340 a 0101 + 01029500 v 0102 ~ 05181513 n 0000 ~ 05181754 n 0000 | an established or recognized right; "a strong legal claim to the property"; "he had no documents confirming his title to his father's estate"; "he staked his claim" -05181513 07 n 01 own_right 0 001 @ 05181199 n 0000 | by title vested in yourself or by virtue of qualifications that you have achieved; "a peer in his own right"; "a leading sports figure in his own right"; "a fine opera in its own right" -05181754 07 n 01 entitlement 0 003 @ 05181199 n 0000 ;c 08441203 n 0000 + 02447370 v 0101 | right granted by law or contract (especially a right to benefits); "entitlements make up the major part of the federal budget" -05181975 07 n 01 right_to_privacy 0 001 @ 05176846 n 0000 | right to be free of unsanctioned intrusion -05182080 07 n 01 right_to_life 0 001 @ 05176846 n 0000 | the right to live -05182157 07 n 01 right_to_liberty 0 001 @ 05176846 n 0000 | the right to be free -05182240 07 n 01 right_to_the_pursuit_of_happiness 0 001 @ 05176846 n 0000 | the right to try to find happiness -05182354 07 n 01 freedom_of_thought 0 001 @ 05176846 n 0000 | the right to hold unpopular ideas -05182452 07 n 01 equality_before_the_law 0 001 @ 05176846 n 0000 | the right to equal protection of the laws -05182563 07 n 01 civil_right 0 021 @ 05176846 n 0000 ;c 08441203 n 0000 ~ 05183242 n 0000 ~ 05183453 n 0000 ~ 05183624 n 0000 ~ 05183779 n 0000 ~ 05183932 n 0000 ~ 05184082 n 0000 ~ 05184313 n 0000 ~ 05184461 n 0000 ~ 05184620 n 0000 ~ 05184810 n 0000 ~ 05185106 n 0000 ~ 05185270 n 0000 ~ 05185444 n 0000 ~ 05185598 n 0000 ~ 05185752 n 0000 ~ 05185921 n 0000 ~ 05186090 n 0000 ~ 05186766 n 0000 ~ 05186998 n 0000 | right or rights belonging to a person by reason of citizenship including especially the fundamental freedoms and privileges guaranteed by the 13th and 14th amendments and subsequent acts of Congress including the right to legal and social and economic equality -05183242 07 n 01 civil_liberty 0 003 @ 05182563 n 0000 ;c 08441203 n 0000 + 00575520 a 0101 | fundamental individual right protected by law and expressed as immunity from unwarranted governmental interference -05183453 07 n 01 habeas_corpus 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | the civil right to obtain a writ of habeas corpus as protection against illegal imprisonment -05183624 07 n 01 freedom_of_religion 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the First Amendment to the US Constitution -05183779 07 n 01 freedom_of_speech 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the First Amendment to the US Constitution -05183932 07 n 01 freedom_of_the_press 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the First Amendment to the US Constitution -05184082 07 n 01 freedom_of_assembly 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | the right to peaceably assemble and to petition the government for redress of grievances; guaranteed by the First Amendment to the US Constitution -05184313 07 n 01 freedom_to_bear_arms 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the 2nd amendment to the US Constitution -05184461 07 n 01 freedom_from_search_and_seizure 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the 4th amendment to the US Constitution -05184620 07 n 01 right_to_due_process 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the Fifth Amendment to the US Constitution; reaffirmed by the Fourteenth Amendment -05184810 07 n 02 freedom_from_self-incrimination 0 privilege_against_self_incrimination 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | the civil right (guaranteed by the Fifth Amendment to the United States Constitution) to refuse to answer questions or otherwise give testimony against yourself -05185106 07 n 01 freedom_from_double_jeopardy 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the Fifth Amendment to the US Constitution -05185270 07 n 01 right_to_speedy_and_public_trial_by_jury 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the 6th amendment to the US Constitution -05185444 07 n 01 right_to_an_attorney 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the 6th amendment to the US Constitution -05185598 07 n 01 right_to_confront_accusors 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the 6th amendment to the US Constitution -05185752 07 n 01 freedom_from_cruel_and_unusual_punishment 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the 8th amendment to the US Constitution -05185921 07 n 01 freedom_from_involuntary_servitude 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a civil right guaranteed by the 13th amendment to the US Constitution -05186090 07 n 01 equal_protection_of_the_laws 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | a right guaranteed by the Fourteenth Amendment to the US Constitution and by the due-process clause of the Fifth Amendment -05186306 07 n 03 right_to_vote 0 vote 0 suffrage 0 006 @ 05187446 n 0000 ;c 08441203 n 0000 + 10672908 n 0301 + 10672662 n 0301 + 02461314 v 0201 ~ 05186626 n 0000 | a legal right guaranteed by the 15th amendment to the US Constitution; guaranteed to women by the 19th amendment; "American women got the vote in 1920" -05186626 07 n 01 universal_suffrage 0 001 @ 05186306 n 0000 | suffrage for all adults who are not disqualified by the laws of the country -05186766 07 n 01 freedom_from_discrimination 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | immunity from discrimination on the basis of race or sex or nationality or religion or age; guaranteed by federal laws of the United States -05186998 07 n 01 equal_opportunity 0 002 @ 05182563 n 0000 ;c 08441203 n 0000 | the right to equivalent opportunities for employment regardless of race or color or sex or national origin -05187187 07 n 01 eminent_domain 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | the right of the state to take private property for public use; the Fifth Amendment that was added to the Constitution of the United States requires that just compensation be made -05187446 07 n 02 franchise 0 enfranchisement 0 004 @ 05177285 n 0000 ;c 08441203 n 0000 + 02477011 v 0201 ~ 05186306 n 0000 | a statutory right or privilege granted to a person or group by a government (especially the rights of citizenship and the right to vote) -05187711 07 n 01 representation 0 001 @ 05174653 n 0000 | the right of being represented by delegates who have a voice in some legislative body -05187857 07 n 01 right_of_action 0 001 @ 05174653 n 0000 | the legal right to sue -05187941 07 n 01 right_of_search 0 001 @ 05174653 n 0000 | the right of a belligerent to stop neutral ships on the high seas in wartime and search them -05188095 07 n 01 right_of_way 0 001 @ 05174653 n 0000 | the right of one vehicle or vessel to take precedence over another -05188220 07 n 01 states'_rights 0 002 @ 05174653 n 0000 ;u 06295235 n 0000 | the rights conceded to the states by the United States constitution -05188367 07 n 01 voting_right 0 001 @ 05174653 n 0000 | the right to vote; especially the right of a common shareholder to vote in person or by proxy on the affairs of a company -05188547 07 n 02 water_right 0 riparian_right 0 001 @ 05174653 n 0000 | right of access to water -05188646 07 n 01 patent_right 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | the right granted by a patent; especially the exclusive right to an invention -05188801 07 n 01 right_of_election 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | in probate law: the legal right of a surviving spouse to elect to take either what the deceased spouse gave under the will or the share of the estate as set forth by statute -05189057 07 n 01 right_of_entry 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | the legal right to take possession of real estate in a peaceable manner -05189208 07 n 01 right_of_re-entry 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | the legal right to resume possession (a right that was reserved when a former possession was parted with) -05189396 07 n 01 right_of_offset 0 003 @ 05177285 n 0000 ;c 01100658 n 0000 ;c 08441203 n 0000 | (banking) the legal right of a bank to seize deposited funds to cover a loan that is in default -05189591 07 n 01 right_of_privacy 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | a legal right (not explicitly provided in the United States Constitution) to be left alone; the right to live life free from unwarranted publicity -05189819 07 n 01 right_of_way 1 001 @ 05179180 n 0000 | the privilege of someone to pass over land belonging to someone else -05189946 07 n 01 seat 0 001 @ 05177285 n 0000 | the legal right to sit as a member in a legislative or similar body; "he was elected to a seat in the Senate" -05190106 07 n 02 use 3 enjoyment 0 005 @ 05177285 n 0000 ;c 08441203 n 0000 + 01192510 v 0201 ~ 05214211 n 0000 ~ 05214374 n 0000 | (law) the exercise of the legal right to enjoy the benefits of owning property; "we were given the use of his boat" -05190356 07 n 01 usufruct 0 003 @ 05177285 n 0000 ;c 08441203 n 0000 + 02821586 a 0101 | a legal right to use and derive profit from property belonging to someone else provided that the property itself is not injured in any way -05190586 07 n 01 visitation_right 0 002 @ 05177285 n 0000 ;c 08441203 n 0000 | the right granted by a court to a parent (or other relative) who is deprived of custody of a child to visit the child on a regular basis -05190804 07 n 02 power 0 powerfulness 0 026 @ 04723816 n 0000 + 01261363 a 0202 + 01830599 a 0202 + 01825671 a 0201 ! 05204637 n 0201 ! 05204637 n 0101 = 01825671 a 0000 = 01827535 a 0000 ~ 05034225 n 0000 ~ 05034473 n 0000 ~ 05034989 n 0000 ~ 05191486 n 0000 ~ 05191695 n 0000 ~ 05191832 n 0000 ~ 05192240 n 0000 ~ 05192451 n 0000 ~ 05193781 n 0000 ~ 05194043 n 0000 ~ 05194151 n 0000 ~ 05196054 n 0000 ~ 05196375 n 0000 ~ 05198427 n 0000 ~ 05198622 n 0000 ~ 05198756 n 0000 ~ 05198928 n 0000 ~ 05199286 n 0000 | possession of controlling influence; "the deterrent power of nuclear weapons"; "the power of his love saved her"; "his powerfulness was concealed by a gentle facade" -05191486 07 n 01 preponderance 2 003 @ 05190804 n 0000 + 00792202 a 0105 + 02645597 v 0101 | superiority in power or influence; "the preponderance of good over evil"; "the preponderance of wealth and power" -05191695 07 n 01 puissance 0 002 @ 05190804 n 0000 + 01827161 a 0101 | power to influence or coerce; "the puissance of the labor vote" -05191832 07 n 02 persuasiveness 0 strength 9 004 @ 05190804 n 0000 + 01769843 a 0101 ! 05205220 n 0101 ~ 05192130 n 0000 | the power to induce the taking of a course of action or the embracing of a point of view by means of argument or entreaty; "the strength of his argument settled the matter" -05192130 07 n 01 convincingness 0 001 @ 05191832 n 0000 | the power of argument or evidence to cause belief -05192240 07 n 02 irresistibility 0 irresistibleness 0 005 @ 05190804 n 0000 + 00168551 a 0201 + 01989175 a 0201 + 00168551 a 0101 + 01989175 a 0101 | the quality of being overpowering and impossible to resist -05192451 07 n 02 interest 2 interestingness 0 012 @ 05190804 n 0000 + 01343918 a 0201 ! 05205340 n 0201 + 02678663 v 0102 + 01821423 v 0101 = 01343918 a 0000 = 01344963 a 0000 ~ 04686537 n 0000 ~ 05192897 n 0000 ~ 05193160 n 0000 ~ 05193338 n 0000 ~ 05193621 n 0000 | the power of attracting or holding one's attention (because it is unusual or exciting etc.); "they said nothing of great interest"; "primary colors can add interest to a room" -05192897 07 n 02 newsworthiness 0 news 0 002 @ 05192451 n 0000 + 01344834 a 0101 | the quality of being sufficiently interesting to be reported in news bulletins; "the judge conceded the newsworthiness of the trial"; "he is no longer news in the fashion world" -05193160 07 n 01 topicality 0 001 @ 05192451 n 0000 | the attribute of being of interest at the present time; "the library had to discard books that had lost their topicality" -05193338 07 n 03 color 3 colour 3 vividness 1 005 @ 05192451 n 0000 + 01941026 a 0304 + 00430041 a 0301 = 00402419 a 0000 = 00404202 a 0000 | interest and variety and intensity; "the Puritan Period was lacking in color"; "the characters were delineated with exceptional vividness" -05193621 07 n 01 shrillness 1 002 @ 05192451 n 0000 + 00403982 a 0101 | the quality of being sharp or harsh to the senses; "the shrillness of her hair color" -05193781 07 n 03 stranglehold 0 chokehold 0 throttlehold 0 001 @ 05190804 n 0000 | complete power over a person or situation; "corporations have a stranglehold on the media"; "the president applied a chokehold to labor disputes that inconvenienced the public" -05194043 07 n 01 sway 0 003 @ 05190804 n 0000 + 02586121 v 0103 + 01875295 v 0102 | controlling influence -05194151 07 n 01 influence 0 007 @ 05190804 n 0000 + 01830134 a 0101 + 00776523 v 0102 + 02536557 v 0101 ~ 05194435 n 0000 ~ 05194578 n 0000 ~ 05194874 n 0000 | a power to affect persons or events especially power based on prestige etc; "used her parents' influence to get the job" -05194435 07 n 03 dead_hand 0 dead_hand_of_the_past 0 mortmain 0 001 @ 05194151 n 0000 | the oppressive influence of past events or decisions -05194578 07 n 01 force 1 010 @ 05194151 n 0000 + 01350449 v 0101 + 00747418 v 0101 + 01650425 v 0102 + 02504562 v 0105 ~ 05195362 n 0000 ~ 05195548 n 0000 ~ 05195653 n 0000 ~ 05195796 n 0000 ~ 05195920 n 0000 | a powerful effect or influence; "the force of his eloquence easily persuaded them" -05194874 07 n 02 grip 0 grasp 0 003 @ 05194151 n 0000 + 01821132 v 0103 ~ 05195175 n 0000 | an intellectual hold or understanding; "a good grip on French history"; "they kept a firm grip on the two top priorities"; "he was in the grip of a powerful emotion"; "a terrible power had her in its grasp" -05195175 07 n 01 tentacle 0 002 @ 05194874 n 0000 + 02811774 a 0101 | something that acts like a tentacle in its ability to grasp and hold; "caught in the tentacles of organized crime" -05195362 07 n 01 pressure 0 004 @ 05194578 n 0000 + 02581073 v 0103 + 02504562 v 0104 + 00765649 v 0103 | a force that compels; "the public brought pressure to bear on the government" -05195548 07 n 01 duress 0 001 @ 05194578 n 0000 | compulsory force or threat; "confessed under duress" -05195653 07 n 01 heartbeat 0 001 @ 05194578 n 0000 | an animating or vital unifying force; "New York is the commercial heartbeat of America" -05195796 07 n 01 lifeblood 0 001 @ 05194578 n 0000 | an essential or life-giving force; "water is the lifeblood of India" -05195920 07 n 01 wheel 0 001 @ 05194578 n 0000 | forces that provide energy and direction; "the wheels of government began to turn" -05196054 07 n 02 repellent 0 repellant 0 003 @ 05190804 n 0000 + 01804422 a 0102 + 00007990 a 0101 | the power to repel; "she knew many repellents to his advances" -05196220 07 n 01 hydrophobicity 0 002 @ 04916342 n 0000 + 00491749 a 0101 | the property of being water-repellent; tending to repel and not absorb water -05196375 07 n 01 control 0 007 @ 05190804 n 0000 + 02441022 v 0101 ~ 05196582 n 0000 ~ 05197043 n 0000 ~ 05197232 n 0000 ~ 05197388 n 0000 ~ 05197574 n 0000 | power to direct or determine; "under control" -05196582 07 n 06 authority 0 authorization 0 authorisation 0 potency 1 dominance 0 say-so 0 010 @ 05196375 n 0000 + 02539334 v 0501 + 01826979 a 0401 ~ 05034048 n 0000 ~ 05197701 n 0000 ~ 05197797 n 0000 ~ 05197945 n 0000 ~ 05198036 n 0000 ~ 05198132 n 0000 ~ 05198321 n 0000 | the power or right to give orders or make decisions; "he has the authority to issue warrants"; "deputies are given authorization to make arrests"; "a place of potency in the state" -05197043 07 n 01 corporatism 0 001 @ 05196375 n 0000 | control of a state or organization by large interest groups; "individualism is in danger of being swamped by a kind of corporatism" -05197232 07 n 01 hold 0 002 @ 05196375 n 0000 + 00736586 v 0101 | power by which something or someone is affected or dominated; "he has a hold over them" -05197388 07 n 01 iron_fist 0 001 @ 05196375 n 0000 | rigorous or ruthless control; "she rules the office with an iron fist"; "it takes an iron fist to contain the dissenting factions" -05197574 07 n 01 rein 0 002 @ 05196375 n 0000 + 00234857 v 0103 | any means of control; "he took up the reins of government" -05197701 07 n 01 carte_blanche 0 001 @ 05196582 n 0000 | complete freedom or authority to act -05197797 07 n 01 command 0 003 @ 05196582 n 0000 + 02441022 v 0102 + 00751887 v 0101 | the power or authority to command; "an admiral in command" -05197945 07 n 01 imperium 0 001 @ 05196582 n 0000 | supreme authority; absolute dominion -05198036 07 n 01 lordship 0 002 @ 05196582 n 0000 + 10388440 n 0103 | the authority of a lord -05198132 07 n 01 muscle 1 001 @ 05196582 n 0000 | authority or power or force (especially when used in a coercive way); "the senators used their muscle to get the party leader to resign" -05198321 07 n 01 sovereignty 0 001 @ 05196582 n 0000 | the authority of a state to govern another state -05198427 07 n 02 legal_power 0 jurisdiction 2 002 @ 05190804 n 0000 ;c 08441203 n 0000 | (law) the right and power to interpret and apply the law; "courts having jurisdiction in this district" -05198622 07 n 01 disposal 0 001 @ 05190804 n 0000 | the power to use something or someone; "used all the resources at his disposal" -05198756 07 n 02 free_will 0 discretion 2 003 @ 05190804 n 0000 + 00719819 a 0201 ~ 05199151 n 0000 | the power of making free choices unconstrained by external agencies -05198928 07 n 01 veto 0 002 @ 05190804 n 0000 + 02473431 v 0101 | the power or right to prohibit or reject a proposed or intended act (especially the power of a chief executive to reject a bill passed by the legislature) -05199151 07 n 01 self-determination 0 001 @ 05198756 n 0000 | determination of one's own fate or course of action without compulsion -05199286 07 n 04 effectiveness 0 effectivity 0 effectualness 0 effectuality 0 013 @ 05190804 n 0000 + 00834198 a 0402 + 00834198 a 0302 + 00510644 a 0201 + 00839225 a 0201 + 00839225 a 0101 + 00510644 a 0101 + 00834198 a 0101 ! 05207963 n 0101 = 00834198 a 0000 = 00835609 a 0000 ~ 05199680 n 0000 ~ 05199869 n 0000 | power to be effective; the quality of being able to bring about an effect -05199680 07 n 02 incisiveness 0 trenchancy 0 004 @ 05199286 n 0000 + 01336371 a 0202 + 00429016 a 0203 + 01744515 a 0103 | keenness and forcefulness of thought or expression or intellect -05199869 07 n 02 efficacy 0 efficaciousness 0 008 @ 05199286 n 0000 + 00834198 a 0203 + 00838856 a 0201 + 00834198 a 0103 + 00838856 a 0101 ! 05208291 n 0101 = 00838856 a 0000 = 00839411 a 0000 | capacity or power to produce a desired effect; "concern about the safety and efficacy of the vaccine" -05200169 07 n 01 ability 0 020 @ 04723816 n 0000 + 00510348 a 0101 + 00306663 a 0101 + 00001740 a 0101 ! 05207130 n 0101 = 00001740 a 0000 = 00002098 a 0000 ~ 04659090 n 0000 ~ 04842993 n 0000 ~ 05153520 n 0000 ~ 05200670 n 0000 ~ 05200816 n 0000 ~ 05201060 n 0000 ~ 05201342 n 0000 ~ 05201452 n 0000 ~ 05201659 n 0000 ~ 05201813 n 0000 ~ 05202497 n 0000 ~ 05214976 n 0000 ~ 13974144 n 0000 | the quality of being able to perform; a quality that permits or facilitates achievement or accomplishment -05200670 07 n 01 form 2 001 @ 05200169 n 0000 | an ability to perform well; "he was at the top of his form"; "the team was off form last night" -05200816 07 n 01 interoperability 0 003 @ 05200169 n 0000 ;c 06128570 n 0000 + 01835276 a 0101 | (computer science) the ability to exchange and use information (usually in a large heterogeneous network made up of several local area networks) -05201060 07 n 02 magical_ability 0 magical_power 0 002 @ 05200169 n 0000 ~ 05201183 n 0000 | an ability to perform magic -05201183 07 n 01 lycanthropy 0 002 @ 05201060 n 0000 ;c 05985602 n 0000 | (folklore) the magical ability of a person to assume the characteristics of a wolf -05201342 07 n 01 Midas_touch 0 001 @ 05200169 n 0000 | an ability to make and manage large amounts of money -05201452 07 n 01 penetration 1 002 @ 05200169 n 0000 + 01993031 v 0101 | the ability to make way into or through something; "the greater penetration of the new projectiles will result in greater injuries" -05201659 07 n 01 physical_ability 0 002 @ 05200169 n 0000 ~ 05202284 n 0000 | the ability to perform some physical act; contrasting with mental ability -05201813 07 n 01 contractility 0 003 @ 05200169 n 0000 + 00554624 a 0101 ~ 05202034 n 0000 | the capability or quality of shrinking or contracting, especially by muscle fibers and even some other forms of living matter -05202034 07 n 02 astringency 0 stypsis 0 005 @ 05201813 n 0000 + 00189833 a 0201 + 00189580 a 0101 = 00189580 a 0000 = 00190023 a 0000 | the ability to contract or draw together soft body tissues to check blood flow or restrict secretion of fluids -05202284 07 n 01 voice 1 003 @ 05201659 n 0000 + 00952182 v 0101 ~ 05202413 n 0000 | the ability to speak; "he lost his voice" -05202413 07 n 01 lung-power 0 001 @ 05202284 n 0000 | the ability to speak loudly -05202497 07 n 02 capability 0 capableness 0 016 @ 05200169 n 0000 + 00510348 a 0202 + 00308015 a 0201 + 00306314 a 0201 ! 05207570 n 0202 + 00306314 a 0101 ! 05207570 n 0101 = 00306314 a 0000 = 00307474 a 0000 ~ 04688058 n 0000 ~ 05202954 n 0000 ~ 05203207 n 0000 ~ 05203397 n 0000 ~ 05203649 n 0000 ~ 05204143 n 0000 ~ 05204316 n 0000 | the quality of being capable -- physically or intellectually or legally; "he worked to the limits of his capability" -05202954 07 n 01 defensibility 0 002 @ 05202497 n 0000 + 02525876 a 0102 | capability of being defended; "they built their castles with an eye to their defensibility"; "client complaints create a felt need for the defensibility of individual actions" -05203207 07 n 01 executability 0 002 @ 05202497 n 0000 + 01822563 a 0102 | capability of being executed; "the job is executable for two million dollars"; "this contract is not executable" -05203397 07 n 01 capacity 0 004 @ 05202497 n 0000 + 00972457 v 0101 + 00301179 v 0101 ! 05207846 n 0101 | capability to perform or produce; "among his gifts is his capacity for true altruism"; "limited runway capacity"; "a great capacity for growth" -05203649 07 n 05 military_capability 0 military_strength 0 strength 5 military_posture 0 posture 2 004 @ 05202497 n 0000 ;c 08199025 n 0000 ~ 05035264 n 0000 ~ 05204004 n 0000 | capability in terms of personnel and materiel that affect the capacity to fight a war; "we faced an army of great strength"; "politicians have neglected our military posture" -05204004 07 n 01 firepower 0 002 @ 05203649 n 0000 ;c 08199025 n 0000 | (military) the relative capacity for delivering fire on a target -05204143 07 n 02 operating_capability 0 performance_capability 0 002 @ 05202497 n 0000 ~ 05204473 n 0000 | the capability of a technological system to perform as intended -05204316 07 n 01 overkill 0 001 @ 05202497 n 0000 | the capability to obliterate a target with more weapons (especially nuclear weapons) than are required -05204473 07 n 01 envelope 0 001 @ 05204143 n 0000 | the maximum operating capability of a system (especially an aircraft); "test pilots try to push the envelope" -05204637 07 n 03 powerlessness 0 impotence 0 impotency 0 012 @ 04723816 n 0000 + 01824751 a 0301 + 01824751 a 0201 + 01827535 a 0101 ! 05190804 n 0101 ! 05190804 n 0102 ~ 05204982 n 0000 ~ 05205220 n 0000 ~ 05205340 n 0000 ~ 05205537 n 0000 ~ 05207352 n 0000 ~ 05207963 n 0000 | the quality of lacking strength or power; being weak and feeble -05204982 07 n 03 helplessness 0 weakness 1 impuissance 0 004 @ 05204637 n 0000 + 01825310 a 0301 + 01828242 a 0201 + 01827946 a 0101 | powerlessness revealed by an inability to act; "in spite of their weakness the group remains active" -05205220 07 n 01 unpersuasiveness 0 003 @ 05204637 n 0000 + 00615655 a 0101 ! 05191832 n 0101 | inability to persuade -05205340 07 n 01 uninterestingness 0 006 @ 05204637 n 0000 + 01231638 a 0101 + 01344963 a 0101 ! 05192451 n 0102 ~ 05205739 n 0000 ~ 05206829 n 0000 | inability to capture or hold one's interest -05205537 07 n 01 voicelessness 0 002 @ 05204637 n 0000 + 00876735 a 0103 | having no voice in the management or control of affairs; "the voicelessness of those who live in situations of hopelessness" -05205739 07 n 01 dullness 2 007 @ 05205340 n 0000 + 01345307 a 0103 + 00806512 a 0101 = 00806512 a 0000 ~ 05206006 n 0000 ~ 05206237 n 0000 ~ 05206573 n 0000 | the quality of lacking interestingness; "the stories were of a dullness to bring a buffalo to its knees" -05206006 07 n 04 boringness 0 dreariness 0 insipidness 1 insipidity 1 006 @ 05205739 n 0000 + 01345997 a 0301 + 00807399 a 0202 + 00364881 a 020b + 01345307 a 0101 + 00364881 a 020b | extreme dullness; lacking spirit or interest -05206237 07 n 03 tediousness 0 tedium 0 tiresomeness 0 006 @ 05205739 n 0000 + 01345307 a 0308 + 01345307 a 0207 + 01345307 a 0107 + 00549236 a 0102 ~ 05206445 n 0000 | dullness owing to length or slowness -05206445 07 n 01 drag 0 002 @ 05206237 n 0000 ;u 07075172 n 0000 | something tedious and boring; "peeling potatoes is a drag" -05206573 07 n 05 jejunity 1 jejuneness 1 tameness 2 vapidity 0 vapidness 0 007 @ 05205739 n 0000 + 02308001 a 0501 + 02308001 a 0401 + 00923232 a 0301 + 01345997 a 0202 + 01345997 a 0102 + 01492596 a 0102 | the quality of being vapid and unsophisticated -05206829 07 n 02 ponderousness 1 heaviness 3 003 @ 05205340 n 0000 + 00807667 a 0201 + 01346538 a 0101 | an oppressive quality that is laborious and solemn and lacks grace or fluency; "a book so serious that it sometimes subsided into ponderousness"; "his lectures tend to heaviness and repetition" -05207130 07 n 02 inability 0 unfitness 1 008 @ 04723816 n 0000 + 01017738 a 0201 ! 05200169 n 0101 ~ 04660080 n 0000 ~ 04844024 n 0000 ~ 05154241 n 0000 ~ 05207570 n 0000 ~ 14113471 n 0000 | lacking the power to perform -05207352 07 n 01 paper_tiger 0 001 @ 05204637 n 0000 | the nature of a person or organization that appears powerful but is actually powerless and ineffectual; "he reminded Mao that the paper tiger had nuclear teeth" -05207570 07 n 02 incapability 0 incapableness 0 008 @ 05207130 n 0000 ! 05202497 n 0202 + 02364066 a 0101 + 00052246 a 0101 + 00308188 a 0101 + 00307474 a 0101 ! 05202497 n 0101 ~ 05207846 n 0000 | the quality of not being capable -- physically or intellectually or legally -05207846 07 n 01 incapacity 0 002 @ 05207570 n 0000 ! 05203397 n 0101 | lack of physical or natural qualifications -05207963 07 n 03 ineffectiveness 0 ineffectualness 0 ineffectuality 0 012 @ 05204637 n 0000 + 02497471 a 0302 + 01825080 a 0302 + 00835609 a 0303 + 02497471 a 0202 + 01825080 a 0202 + 00835609 a 0203 + 00511739 a 0101 + 01825080 a 0101 + 00835609 a 0101 ! 05199286 n 0101 ~ 05208291 n 0000 | lacking the power to be effective -05208291 07 n 02 inefficacy 0 inefficaciousness 0 003 @ 05207963 n 0000 + 00839411 a 0201 ! 05199869 n 0101 | a lack of efficacy -05208422 07 n 02 romanticism 1 romance 0 003 @ 04723816 n 0000 + 00834557 v 0201 ~ 05208595 n 0000 | an exciting and mysterious quality (as of a heroic time or adventure) -05208595 07 n 01 stardust 0 001 @ 05208422 n 0000 | a dreamy romantic or sentimental quality -05208690 07 n 01 analyticity 0 002 @ 04916342 n 0000 + 00112231 a 0101 | the property of being analytic -05208796 07 n 01 compositeness 0 001 @ 04916342 n 0000 | the property of being a composite number -05208896 07 n 01 primality 0 001 @ 04916342 n 0000 | the property of being a prime number -05208988 07 n 01 selectivity 0 003 @ 04916342 n 0000 + 01863246 a 0101 + 00775693 a 0101 | the property of being selective -05209113 07 n 01 domesticity 0 004 @ 04723816 n 0000 + 02388921 a 0101 = 01038808 a 0000 = 01039843 a 0000 | the quality of being domestic or domesticated; "a royal family living in unpretentious domesticity" -05209324 07 n 05 infiniteness 0 infinitude 0 unboundedness 0 boundlessness 0 limitlessness 0 010 @ 04723816 n 0000 + 01007657 a 0503 + 01499269 a 0502 + 01415605 a 0502 + 01007657 a 0401 + 01007657 a 0302 + 00301951 a 0102 + 00005718 a 0101 + 01007354 a 0101 ! 05209659 n 0101 | the quality of being infinite; without bound or limit -05209659 07 n 03 finiteness 0 finitude 0 boundedness 0 004 @ 04723816 n 0000 + 01006788 a 0301 + 01006566 a 0101 ! 05209324 n 0101 | the quality of being finite -05209822 07 n 02 quantifiability 0 measurability 0 005 @ 04723816 n 0000 + 01498769 a 0201 + 01915745 a 0101 ~ 05210003 n 0000 ~ 05210116 n 0000 | the quality of being measurable -05210003 07 n 01 ratability 0 001 @ 05209822 n 0000 | the quality of being capable of being rated or estimated -05210116 07 n 01 scalability 0 002 @ 05209822 n 0000 + 02083222 a 0101 | the quality of being scalable -05210221 07 n 01 solubility 0 003 @ 04723816 n 0000 + 02265015 a 0101 ! 05210373 n 0101 | the quality of being soluble and easily dissolved in liquid -05210373 07 n 01 insolubility 0 003 @ 04723816 n 0000 + 02265891 a 0101 ! 05210221 n 0101 | the quality of being insoluble and difficult to dissolve in liquid -05210534 07 n 01 stuff 0 001 @ 04723816 n 0000 | unspecified qualities required to do or be something; "the stuff of heros"; "you don't have the stuff to be a United States Marine" -05210717 07 n 01 comicality 0 002 @ 05211044 n 0000 + 01265308 a 0103 | the quality of being comical -05210820 07 n 02 hot_stuff 0 voluptuousness 2 003 @ 04723816 n 0000 ;u 07075172 n 0000 + 02132967 a 0205 | the quality of being attractive and exciting (especially sexually exciting); "he thought she was really hot stuff" -05211044 07 n 02 humor 0 humour 0 006 @ 04723816 n 0000 + 01264336 a 0202 + 10191943 n 0202 + 01264336 a 0101 + 10191943 n 0101 ~ 05210717 n 0000 | the quality of being funny; "I fail to see the humor in it" -05211254 07 n 02 pathos 0 poignancy 0 002 @ 04723816 n 0000 + 01560821 a 0202 | a quality that arouses emotions (especially pity or sorrow); "the film captured all the pathos of their situation" -05211451 07 n 01 tone 3 001 @ 04723816 n 0000 | the quality of something (an act or a piece of writing) that reveals the attitudes and presuppositions of the author; "the general tone of articles appearing in the newspapers is that the government should withdraw"; "from the tone of her behavior I gathered that I had outstayed my welcome" -05211793 07 n 01 optimism 0 005 @ 04623612 n 0000 + 01817908 a 0102 + 01663571 a 0101 + 10380126 n 0101 ! 05211974 n 0101 | a general disposition to expect the best in all things -05211974 07 n 01 pessimism 0 004 @ 04623612 n 0000 + 01664581 a 0101 + 10419472 n 0101 ! 05211793 n 0101 | a general disposition to look on the dark side and to expect the worst in all things -05212168 07 n 01 epicurism 0 001 @ 04623612 n 0000 | the disposition and habits of an epicure -05212264 07 n 01 gourmandism 0 001 @ 04623612 n 0000 | the disposition and habits of a gourmand -05212362 07 n 02 brachycephaly 0 brachycephalism 0 002 @ 04723816 n 0000 + 00262124 a 0101 | the quality of being brachycephalic -05212493 07 n 02 dolichocephaly 0 dolichocephalism 0 001 @ 04723816 n 0000 | the quality of being dolichocephalic -05212609 07 n 01 relativity 0 004 @ 04723816 n 0000 + 02836161 a 0101 + 00482673 a 0102 + 00006032 a 0101 | the quality of being relative and having significance only in relation to something else -05212808 07 n 01 response 0 001 @ 04928903 n 0000 | the manner in which an electrical or mechanical device responds to an input signal or a range of input signals -05212973 07 n 01 responsiveness 0 003 @ 04723816 n 0000 + 01999306 a 0101 ! 05213201 n 0101 | the quality of being responsive; reacting quickly; as a quality of people, it involves responding with emotion to people and events -05213201 07 n 02 unresponsiveness 0 deadness 2 008 @ 04723816 n 0000 + 02107386 a 0201 + 02105603 a 0201 + 02531775 a 0101 + 01999766 a 0101 ! 05212973 n 0101 ~ 05213693 n 0000 ~ 05213894 n 0000 | the quality of being unresponsive; not reacting; as a quality of people, it is marked by a failure to respond quickly or with emotion to people or events; "she began to recover from her numb unresponsiveness after the accident"; "in an instant all the deadness and withdrawal were wiped away" -05213693 07 n 02 frigidity 1 frigidness 1 003 @ 05213201 n 0000 + 01466775 a 0202 + 01466775 a 0102 | sexual unresponsiveness (especially of women) and inability to achieve orgasm during intercourse -05213894 07 n 01 resistance 0 003 @ 05213201 n 0000 ;c 01348530 n 0000 + 02363614 a 0102 | the degree of unresponsiveness of a disease-causing microorganism to antibiotics or other drugs (as in penicillin-resistant bacteria) -05214121 07 n 01 subjectivism 0 001 @ 04723816 n 0000 | the quality of being subjective -05214211 07 n 01 fair_use 0 001 @ 05190106 n 0000 | the conditions under which you can use material that is copyrighted by someone else without paying royalties -05214374 07 n 01 fruition 0 001 @ 05190106 n 0000 | enjoyment derived from use or possession -05214469 07 n 01 vascularity 0 002 @ 04916342 n 0000 + 02873811 a 0101 | the property being vascular; "a prominent vascularity" -05214599 07 n 01 extension 1 002 @ 04916342 n 0000 @ 07020538 n 0000 | the ability to raise the working leg high in the air; "the dancer was praised for her uncanny extension"; "good extension comes from a combination of training and native ability" -05214851 07 n 01 snootiness 0 001 @ 04723816 n 0000 | the quality of being snooty; "he disliked his neighbors' snootiness" -05214976 07 n 02 totipotency 0 totipotence 0 003 @ 05200169 n 0000 + 02818402 a 0201 + 02818402 a 0101 | the ability of a cell to give rise to unlike cells and so to develop a new organism or part; "animal cells lose their totipotency at an early stage in embryonic development" -05215257 07 n 01 ulteriority 0 001 @ 04723816 n 0000 | the quality of being ulterior; "their conversation was limited to ulteriorities"; "a terrible feeling of ulteriority"; "his stories were too susceptible to ulteriority" -05215483 07 n 02 solvability 0 solubility 1 005 @ 04916342 n 0000 + 02266145 a 0201 ! 05215699 n 0202 + 02266451 a 0101 ! 05215699 n 0101 | the property (of a problem or difficulty) that makes it possible to solve -05215699 07 n 02 unsolvability 0 insolubility 1 005 @ 04916342 n 0000 + 01230728 a 0201 + 02266600 a 0201 ! 05215483 n 0202 ! 05215483 n 0101 | the property (of a problem or difficulty) that makes it impossible to solve -05215921 07 n 01 memorability 0 001 @ 04723816 n 0000 | the quality of being worth remembering; "continuous change results in lack of memorability"; "true memorability of phrase" -05216102 07 n 02 woodiness 0 woodsiness 0 003 @ 04723816 n 0000 + 02573192 a 0203 + 02573192 a 0104 | the quality of abounding in trees -05216240 07 n 01 waxiness 0 002 @ 04723816 n 0000 + 03004852 a 0102 | the quality of being made of wax or covered with wax -05216365 08 n 03 body 0 organic_structure 0 physical_structure 0 027 @ 00019128 n 0000 ;c 00015388 n 0000 ;c 02472293 n 0000 + 00630329 a 0101 + 02667275 a 0101 ~ 05217061 n 0000 ~ 05217168 n 0000 ~ 05218788 n 0000 %p 05263850 n 0000 %p 05296639 n 0000 %p 05303402 n 0000 %p 05329215 n 0000 %p 05329533 n 0000 %p 05396366 n 0000 %p 05462057 n 0000 %p 05462315 n 0000 %p 05509889 n 0000 %p 05510702 n 0000 %p 05511286 n 0000 %p 05511618 n 0000 %p 05538625 n 0000 %p 05546540 n 0000 %p 05549830 n 0000 %p 05560787 n 0000 %p 05563770 n 0000 %p 05597436 n 0000 %p 08622340 n 0000 | the entire structure of an organism (an animal, plant, or human being); "he felt as if his whole body were on fire" -05217061 08 n 01 life_form 0 001 @ 05216365 n 0000 | the characteristic bodily form of a mature organism -05217168 08 n 0e human_body 0 physical_body 0 material_body 0 soma 0 build 0 figure 0 physique 0 anatomy 0 shape 0 bod 0 chassis 0 frame 1 form 0 flesh 1 011 @ 05216365 n 0000 #p 00007846 n 0000 #p 02472293 n 0000 + 02897524 a 0801 + 09792237 n 0801 + 02897524 a 0802 ~ 05217688 n 0000 ~ 05219297 n 0000 ~ 05219561 n 0000 ~ 05219724 n 0000 ~ 05219923 n 0000 | alternative names for the body of a human being; "Leonardo studied the human body"; "he has a strong physique"; "the spirit is willing but the flesh is weak" -05217688 08 n 01 person 0 003 @ 05217168 n 0000 + 02698944 v 0102 + 00727573 v 0101 | a human body (usually including the clothing); "a weapon was hidden on his person" -05217859 08 n 02 body 2 dead_body 0 007 @ 00019128 n 0000 + 02698944 v 0101 ~ 01758757 n 0000 ~ 01758895 n 0000 ~ 01759009 n 0000 ~ 05218119 n 0000 ~ 05218630 n 0000 | a natural object consisting of a dead animal or person; "they found the body in the lake" -05218119 08 n 05 cadaver 0 corpse 0 stiff 0 clay 0 remains 0 005 @ 05217859 n 0000 ;u 07157273 n 0301 + 02673139 a 0101 + 02673139 a 0102 ~ 05218533 n 0000 | the dead body of a human being; "the cadaver was intended for dissection"; "the end of the police search was the discovery of a corpse"; "the murderer confessed that he threw the stiff in the river"; "honor comes to bless the turf that wraps their clay" -05218533 08 n 01 cremains 0 001 @ 05218119 n 0000 | the remains of a dead body after cremation -05218630 08 n 01 mummy 0 003 @ 05217859 n 0000 + 02227127 v 0101 + 00242205 v 0101 | a body embalmed and dried and wrapped for burial (as in ancient Egypt) -05218788 08 n 01 live_body 0 002 @ 05216365 n 0000 ~ 05219097 n 0000 | the body of a living animal or person -05218899 08 n 01 apparatus 0 003 @ 05220461 n 0000 ;c 06057539 n 0000 ~ 05300675 n 0000 | (anatomy) a group of body parts that work together to perform a given function; "the breathing apparatus" -05219097 08 n 01 system 1 001 @ 05218788 n 0000 | the living body considered as made up of interdependent components forming a unified whole; "exercise helped him get the alcohol out of his system" -05219297 08 n 01 juvenile_body 0 003 @ 05217168 n 0000 #p 09622049 n 0000 ~ 05219420 n 0000 | the body of a young person -05219420 08 n 01 child's_body 0 004 @ 05219297 n 0000 #p 09917593 n 0000 %p 05306894 n 0000 %p 05545212 n 0000 | the body of a human child -05219561 08 n 01 adult_body 0 005 @ 05217168 n 0000 #p 09605289 n 0000 ~ 05220126 n 0000 ~ 05220306 n 0000 %p 05263587 n 0000 | the body of an adult human being -05219724 08 n 01 male_body 0 007 @ 05217168 n 0000 #p 09624168 n 0000 ~ 05220306 n 0000 %p 05513807 n 0000 %p 05514905 n 0000 %p 05515157 n 0000 %p 05551617 n 0000 | the body of a male human being -05219923 08 n 01 female_body 0 007 @ 05217168 n 0000 #p 09619168 n 0000 ~ 05220126 n 0000 %p 05513529 n 0000 %p 05514410 n 0000 %p 05514717 n 0000 %p 05551494 n 0000 | the body of a female human being -05220126 08 n 02 adult_female_body 0 woman's_body 0 005 @ 05219561 n 0000 @ 05219923 n 0000 #p 10787470 n 0000 %p 05402576 n 0000 %p 05554405 n 0000 | the body of an adult woman -05220306 08 n 02 adult_male_body 0 man's_body 0 004 @ 05219561 n 0000 @ 05219724 n 0000 #p 10287213 n 0000 %p 05261566 n 0000 | the body of an adult man -05220461 08 n 01 body_part 0 054 @ 09385911 n 0000 #p 00004475 n 0000 ~ 01895219 n 0000 ~ 01899367 n 0000 ~ 01902274 n 0000 ~ 02158972 n 0000 ~ 02317025 n 0000 ~ 02462602 n 0000 ~ 02462828 n 0000 ~ 02463403 n 0000 ~ 02463611 n 0000 ~ 02463913 n 0000 ~ 02464223 n 0000 ~ 02665543 n 0000 ~ 05218899 n 0000 %p 05221526 n 0000 ~ 05221649 n 0000 ~ 05221895 n 0000 ~ 05222467 n 0000 ~ 05222591 n 0000 ~ 05222790 n 0000 ~ 05225090 n 0000 ~ 05225602 n 0000 ~ 05227868 n 0000 ~ 05237227 n 0000 ~ 05254197 n 0000 ~ 05267345 n 0000 ~ 05277100 n 0000 ~ 05297523 n 0000 ~ 05424679 n 0000 ~ 05431585 n 0000 ~ 05470189 n 0000 ~ 05493303 n 0000 ~ 05537806 n 0000 ~ 05548840 n 0000 ~ 05549830 n 0000 ~ 05552607 n 0000 ~ 05553618 n 0000 ~ 05556325 n 0000 ~ 05556472 n 0000 ~ 05556943 n 0000 ~ 05557500 n 0000 ~ 05558717 n 0000 ~ 05559023 n 0000 ~ 05559256 n 0000 ~ 05559727 n 0000 ~ 05560631 n 0000 ~ 05562756 n 0000 ~ 05562902 n 0000 ~ 05577654 n 0000 ~ 05595083 n 0000 ~ 05597594 n 0000 ~ 05601758 n 0000 ~ 05604022 n 0000 | any part of an organism such as an organ or extremity -05221526 08 n 01 corpus 0 002 @ 09385911 n 0000 #p 05220461 n 0000 | the main part of an organ or other bodily structure -05221649 08 n 02 adnexa 0 annexa 0 003 @ 05220461 n 0000 + 02604117 a 0101 + 02604117 a 0102 | accessory or adjoining anatomical parts or appendages to an organ (especially of the embryo); "Fallopian tubes and ovaries are adnexa of the uterus" -05221895 08 n 02 area 0 region 0 023 @ 05220461 n 0000 ~ 05224966 n 0000 ~ 05239039 n 0000 ~ 05385363 n 0000 ~ 05391540 n 0000 ~ 05396071 n 0000 ~ 05455375 n 0000 ~ 05455563 n 0000 ~ 05455690 n 0000 ~ 05486920 n 0000 ~ 05538494 n 0000 ~ 05551318 n 0000 ~ 05553897 n 0000 ~ 05554804 n 0000 ~ 05555473 n 0000 ~ 05555688 n 0000 ~ 05558555 n 0000 ~ 05565696 n 0000 ~ 05565937 n 0000 ~ 05577190 n 0000 ~ 05582038 n 0000 ~ 05597734 n 0000 ~ 05597980 n 0000 | a part of an animal that has a special function or is supplied by a given artery or nerve; "in the abdominal region" -05222467 08 n 01 dilator 0 002 @ 05220461 n 0000 + 00305537 v 0101 | a muscle or nerve that dilates or widens a body part -05222591 08 n 02 groove 0 vallecula 0 005 @ 05220461 n 0000 ;c 06057539 n 0000 + 01277431 v 0103 ~ 05223248 n 0000 ~ 05223370 n 0000 | (anatomy) any furrow or channel on a bodily structure or part -05222790 08 n 01 partition 0 003 @ 05220461 n 0000 ;c 06057539 n 0000 ~ 05222940 n 0000 | (anatomy) a structure that separates areas in an organism -05222940 08 n 01 septum 0 004 @ 05222790 n 0000 ;c 06057539 n 0000 + 02796711 a 0101 ~ 05223110 n 0000 | (anatomy) a dividing partition between two tissues or cavities -05223110 08 n 01 nasal_septum 0 002 @ 05222940 n 0000 %p 05610734 n 0000 | a partition of bone and cartilage between the nasal cavities -05223248 08 n 01 costal_groove 0 001 @ 05222591 n 0000 | groove between the ribs where the nerves and blood vessels are -05223370 08 n 01 fissure 0 004 @ 05222591 n 0000 ;c 06057539 n 0000 ~ 05223550 n 0000 ~ 05224755 n 0000 | (anatomy) a long narrow slit or groove that divides an organ into lobes -05223550 08 n 01 sulcus 0 006 @ 05223370 n 0000 ;c 06057539 n 0000 ~ 05223823 n 0000 ~ 05224080 n 0000 ~ 05224358 n 0000 ~ 05224585 n 0000 | (anatomy) any of the narrow grooves in an organ or tissue especially those that mark the convolutions on the surface of the brain -05223823 08 n 04 fissure_of_Rolando 0 Rolando's_fissure 0 central_sulcus 0 sulcus_centralis 0 002 @ 05223550 n 0000 #p 05491993 n 0000 | a brain fissure extending upward on the lateral surface of both hemispheres; separates the frontal and parietal lobes -05224080 08 n 04 fissure_of_Sylvius 0 Sylvian_fissure 0 lateral_cerebral_sulcus 0 sulcus_lateralis_cerebri 0 002 @ 05223550 n 0000 #p 05491993 n 0000 | the deepest and most prominent of the cortical fissures; separates the frontal lobes and temporal lobes in both hemispheres -05224358 08 n 02 parieto-occipital_sulcus 0 parieto-occipital_fissure 0 001 @ 05223550 n 0000 | a sulcus near the posterior end of each hemisphere that separates the parietal lobes and the occipital lobes in both hemispheres -05224585 08 n 02 calcarine_sulcus 0 calcarine_fissure 0 002 @ 05223550 n 0000 #p 05494365 n 0000 | a sulcus in the mesial surface of the occipital lobe of the cerebrum -05224755 08 n 02 hilus 0 hilum 0 003 @ 05223370 n 0000 ;c 06057539 n 0000 + 02947799 a 0201 | (anatomy) a depression or fissure where vessels or nerves or ducts enter a bodily organ; "the hilus of the kidney" -05224966 08 n 01 erogenous_zone 0 001 @ 05221895 n 0000 | any area of the body especially sensitive to sexual stimulation -05225090 08 n 01 external_body_part 0 015 @ 05220461 n 0000 ~ 01514431 n 0000 ~ 01514549 n 0000 ~ 01748100 n 0000 ~ 05225439 n 0000 ~ 05305806 n 0000 ~ 05522456 n 0000 ~ 05538625 n 0000 ~ 05546540 n 0000 ~ 05546997 n 0000 ~ 05553288 n 0000 ~ 05559908 n 0000 ~ 05566919 n 0000 ~ 05600637 n 0000 ~ 05601198 n 0000 | any body part visible externally -05225439 08 n 01 arthromere 0 003 @ 05225090 n 0000 #p 01767661 n 0000 + 02642497 a 0101 | any of the segments in the body of a jointed animal like an arthropod -05225602 08 n 05 structure 0 anatomical_structure 0 complex_body_part 0 bodily_structure 0 body_structure 0 063 @ 05220461 n 0000 ~ 01463259 n 0000 ~ 01905121 n 0000 ~ 02155448 n 0000 ~ 02155872 n 0000 ~ 02440523 n 0000 ~ 02511107 n 0000 ~ 02511303 n 0000 ~ 02511510 n 0000 ~ 02511633 n 0000 ~ 05227079 n 0000 ~ 05227209 n 0000 ~ 05228264 n 0000 ~ 05228496 n 0000 ~ 05228732 n 0000 ~ 05229198 n 0000 ~ 05229468 n 0000 ~ 05229805 n 0000 ~ 05229990 n 0000 ~ 05230171 n 0000 ~ 05230357 n 0000 ~ 05235745 n 0000 ~ 05235879 n 0000 ~ 05236029 n 0000 ~ 05236152 n 0000 ~ 05236322 n 0000 ~ 05246511 n 0000 ~ 05248181 n 0000 ~ 05264545 n 0000 ~ 05264756 n 0000 ~ 05290756 n 0000 ~ 05303402 n 0000 ~ 05308310 n 0000 ~ 05317191 n 0000 ~ 05317960 n 0000 ~ 05320764 n 0000 ~ 05321664 n 0000 ~ 05321917 n 0000 ~ 05368278 n 0000 ~ 05387842 n 0000 ~ 05395286 n 0000 ~ 05397178 n 0000 ~ 05405554 n 0000 ~ 05433496 n 0000 ~ 05435477 n 0000 ~ 05444324 n 0000 ~ 05446006 n 0000 ~ 05462674 n 0000 ~ 05492259 n 0000 ~ 05492426 n 0000 ~ 05531161 n 0000 ~ 05576194 n 0000 ~ 05581349 n 0000 ~ 05581514 n 0000 ~ 05585665 n 0000 ~ 05592126 n 0000 ~ 05595837 n 0000 ~ 05599203 n 0000 ~ 05604950 n 0000 ~ 05607001 n 0000 ~ 05607126 n 0000 ~ 05608868 n 0000 ~ 05611062 n 0000 | a particular complex anatomical part of a living thing; "he has good bone structure" -05226937 08 n 01 birth_canal 0 001 @ 05248181 n 0000 | a passage in the uterus and vagina through which a fetus passes during vaginal birth -05227079 08 n 01 bulb 1 002 @ 05225602 n 0000 + 01353618 a 0103 | a rounded dilation or expansion in a canal or vessel or organ -05227209 08 n 01 carina 0 003 @ 05225602 n 0000 ~ 05227438 n 0000 ~ 05228374 n 0000 | any of various keel-shaped structures or ridges such as that on the breastbone of a bird or that formed by the fused petals of a pea blossom -05227438 08 n 01 carina_fornicis 0 002 @ 05227209 n 0000 #p 05227572 n 0000 | ridge on the lower surface of the fornix of the brain -05227572 08 n 02 fornix 0 trigonum_cerebrale 0 003 @ 05475681 n 0000 #p 05498773 n 0000 %p 05227438 n 0000 | an arched bundle of white fibers at the base of the brain by which the hippocampus of each hemisphere projects to the contralateral hippocampus and to the thalamus and mamillary bodies -05227868 08 n 01 fornix 1 001 @ 05220461 n 0000 | generally any arch shaped structure (but often it refers to the arched roof of an anatomical space) -05228020 08 n 03 mamillary_body 0 mammillary_body 0 corpus_mamillare 0 002 @ 05462674 n 0000 #p 05496990 n 0000 | one of two small round structures on the undersurface of the brain that form the terminals of the anterior arches of the fornix -05228264 08 n 01 cauda 0 003 @ 05225602 n 0000 + 00319965 a 0101 + 02843816 a 0101 | any taillike structure -05228374 08 n 01 keel 0 002 @ 05227209 n 0000 #p 01517966 n 0000 | the median ridge on the breastbone of birds that fly -05228496 08 n 03 chiasma 0 chiasm 0 decussation 0 006 @ 05225602 n 0000 + 01914113 v 0301 + 02693895 a 0201 + 02693895 a 0202 + 02693895 a 0203 ~ 05228881 n 0000 | an intersection or crossing of two tracts in the form of the letter X -05228732 08 n 01 cingulum 0 002 @ 05225602 n 0000 ;c 06057539 n 0000 | (anatomy) an encircling structure (as the ridge around the base of a tooth) -05228881 08 n 03 optic_chiasma 0 optic_chiasm 0 chiasma_opticum 0 001 @ 05228496 n 0000 | the crossing of the optic nerves from the two eyes at the base of the brain -05229049 08 n 02 optic_radiation 0 radiatio_optica 0 001 @ 05475878 n 0000 | a nerve pathway from the lateral geniculate body to the visual cortex -05229198 08 n 01 concha 0 003 @ 05225602 n 0000 ;c 06057539 n 0000 ~ 05229341 n 0000 | (anatomy) a structure that resembles a shell in shape -05229341 08 n 01 nasal_concha 0 002 @ 05283816 n 0000 @ 05229198 n 0000 | one of several turbinate bones in the nasal cavity -05229468 08 n 02 filament 0 filum 0 003 @ 05225602 n 0000 + 02728113 a 0201 ~ 05254393 n 0000 | a threadlike structure (as a chainlike series of cells) -05229622 08 n 02 fiber 0 fibre 0 003 @ 00006484 n 0000 ~ 05459232 n 0000 ~ 05464104 n 0000 | any of several elongated, threadlike cells (especially a muscle fiber or a nerve fiber) -05229805 08 n 01 germ 0 002 @ 05225602 n 0000 + 00357332 v 0103 | a small apparently simple structure (as a fertilized egg) from which new tissue can develop into a complete organism -05229990 08 n 01 infundibulum 0 003 @ 05225602 n 0000 #p 05496990 n 0000 ~ 05484198 n 0000 | any of various funnel-shaped parts of the body (but especially the hypophyseal stalk) -05230171 08 n 01 interstice 0 003 @ 05225602 n 0000 + 02828564 a 0101 ~ 05555017 n 0000 | a small structural space between tissues or parts of an organ; "the interstices of a network" -05230357 08 n 01 landmark 0 003 @ 05225602 n 0000 ;c 06063588 n 0000 ~ 05230603 n 0000 | an anatomical structure used as a point of origin in locating other anatomical structures (as in surgery) or as point from which measurements can be taken -05230603 08 n 01 craniometric_point 0 030 @ 05230357 n 0000 #p 05540121 n 0000 ~ 05231264 n 0000 ~ 05231397 n 0000 ~ 05231592 n 0000 ~ 05231769 n 0000 ~ 05231940 n 0000 ~ 05232074 n 0000 ~ 05232221 n 0000 ~ 05232345 n 0000 ~ 05232503 n 0000 ~ 05232691 n 0000 ~ 05232972 n 0000 ~ 05233100 n 0000 ~ 05233238 n 0000 ~ 05233420 n 0000 ~ 05233601 n 0000 ~ 05233875 n 0000 ~ 05234016 n 0000 ~ 05234162 n 0000 ~ 05234315 n 0000 ~ 05234438 n 0000 ~ 05234593 n 0000 ~ 05234737 n 0000 ~ 05234911 n 0000 ~ 05235100 n 0000 ~ 05235217 n 0000 ~ 05235350 n 0000 ~ 05235461 n 0000 ~ 05235607 n 0000 | a landmark on the skull from which craniometric measurements can be taken -05231264 08 n 01 acanthion 0 001 @ 05230603 n 0000 | the craniometric point at the anterior extremity of the intermaxillary suture -05231397 08 n 01 asterion 0 002 @ 05230603 n 0000 #p 05540513 n 0000 | the craniometric point at the junction of the lamboid suture and the occipitomastoid suture and the parietomastoid suture -05231592 08 n 02 auriculare 0 auricular_point 0 002 @ 05230603 n 0000 #p 05248667 n 0000 | the craniometric point at the center of the opening of the external acoustic meatus -05231769 08 n 01 bregma 0 002 @ 05230603 n 0000 + 02670678 a 0101 | the craniometric point at the junction of the sagittal and coronal sutures at the top of the cranium -05231940 08 n 01 condylion 0 002 @ 05230603 n 0000 #p 05276290 n 0000 | the craniometric point at the tip of the mandibular condyle -05232074 08 n 01 coronion 0 002 @ 05230603 n 0000 #p 05472205 n 0000 | the craniometric point at the tip of the coronoid process of the mandible -05232221 08 n 01 crotaphion 0 002 @ 05230603 n 0000 #p 05280998 n 0000 | the tip of the greater wing of the sphenoid bone -05232345 08 n 01 dacryon 0 001 @ 05230603 n 0000 | the craniometric point at the junction of the anterior border of the lacrimal bone with the frontal bone -05232503 08 n 01 entomion 0 002 @ 05230603 n 0000 #p 05541645 n 0000 | the craniometric point at the tip of the angular part of the parietal bone that articulates with the temporal bone -05232691 08 n 02 glabella 0 mesophyron 0 003 @ 05230603 n 0000 #p 05541231 n 0000 + 02735911 a 0101 | a smooth prominence of the frontal bone between and above the eyebrows; the most forward projecting point of the forehead in the midline at the level of the supraorbital ridges -05232972 08 n 01 gnathion 0 002 @ 05230603 n 0000 #p 05275905 n 0000 | the most inferior point of the mandible in the midline -05233100 08 n 01 gonion 0 002 @ 05230603 n 0000 #p 05275905 n 0000 | the craniometric point on either side at the apex of the lower jaw -05233238 08 n 01 inion 0 002 @ 05230603 n 0000 #p 05541872 n 0000 | the craniometric point that is the most prominent point at the back of the head (at the occipital protuberance) -05233420 08 n 02 jugale 0 jugal_point 0 002 @ 05230603 n 0000 #p 05273822 n 0000 | the craniometric point at the union of the frontal and temporal processes of the zygomatic bone -05233601 08 n 01 lambda 0 001 @ 05230603 n 0000 | the craniometric point at the junction of the sagittal and lamboid sutures of the skull -05233741 08 n 01 mandibular_notch 0 002 @ 13905121 n 0000 #p 05275905 n 0000 | small indentation in the middle of the lower jawbone -05233875 08 n 01 mastoidale 0 002 @ 05230603 n 0000 #p 05542193 n 0000 | the craniometric point at the lowest point of the mastoid process -05234016 08 n 01 metopion 0 002 @ 05230603 n 0000 #p 05541231 n 0000 | the craniometric point midway between the frontal eminences of the skull -05234162 08 n 01 nasion 0 001 @ 05230603 n 0000 | the craniometric point at the bridge of the nose where the frontal and nasal bones of the skull meet -05234315 08 n 01 obelion 0 001 @ 05230603 n 0000 | the craniometric point on the sagittal suture near the lamboid suture -05234438 08 n 01 ophryon 0 002 @ 05230603 n 0000 #p 05541231 n 0000 | the craniometric point in the midline of the forehead immediately above the orbits -05234593 08 n 02 orbitale 0 orbital_point 0 001 @ 05230603 n 0000 | the craniometric point at the lowest point on the lower edge of the orbit -05234737 08 n 01 pogonion 0 002 @ 05230603 n 0000 #p 05275905 n 0000 | the craniometric point that is the most forward-projecting point on the anterior surface of the chin -05234911 08 n 03 prosthion 0 prostheon 0 alveolar_point 0 001 @ 05230603 n 0000 | craniometric point that is the most anterior point in the midline on the alveolar process of the maxilla -05235100 08 n 01 pterion 0 001 @ 05230603 n 0000 | the craniometric point in the region of the sphenoid fontanelle -05235217 08 n 01 rhinion 0 002 @ 05230603 n 0000 #p 05277532 n 0000 | the anterior tip at the end of the suture of the nasal bones -05235350 08 n 01 sphenion 0 002 @ 05230603 n 0000 #p 05541645 n 0000 | the anterior tip of the parietal bone -05235461 08 n 01 stephanion 0 002 @ 05230603 n 0000 #p 05540513 n 0000 | the craniometric point on the coronal suture above the acoustic meatus -05235607 08 n 01 symphysion 0 002 @ 05230603 n 0000 #p 05275905 n 0000 | the most forward point of the alveolar process of the mandible -05235745 08 n 01 limbus 0 001 @ 05225602 n 0000 | a border or edge of any of various body parts distinguished by color or structure -05235879 08 n 01 rib 2 003 @ 05225602 n 0000 ~ 02468617 n 0000 ~ 02468735 n 0000 | a riblike supporting or strengthening part of an animal or plant -05236029 08 n 01 blade 0 002 @ 05225602 n 0000 ~ 01897991 n 0000 | a broad flat body part (as of the shoulder or tongue) -05236152 08 n 01 radicle 0 003 @ 05225602 n 0000 #p 05474346 n 0000 ;c 06057539 n 0000 | (anatomy) a small structure resembling a rootlet (such as a fibril of a nerve) -05236322 08 n 02 plexus 0 rete 0 007 @ 05225602 n 0000 ~ 05236582 n 0000 ~ 05236848 n 0000 ~ 05506648 n 0000 ~ 05507268 n 0000 ~ 05508211 n 0000 ~ 05525807 n 0000 | a network of intersecting blood vessels or intersecting nerves or intersecting lymph vessels -05236582 08 n 01 aortic_plexus 0 001 @ 05236322 n 0000 | a plexus of lymph nodes in the lower portion of the abdominal aorta -05236709 08 n 02 autonomic_plexus 0 plexus_autonomici 0 001 @ 05236848 n 0000 | a plexus of sympathetic and parasympathetic nerve fibers -05236848 08 n 01 nerve_plexus 0 017 @ 05236322 n 0000 ~ 05236709 n 0000 ~ 05506034 n 0000 ~ 05506229 n 0000 ~ 05506369 n 0000 ~ 05506507 n 0000 ~ 05506832 n 0000 ~ 05506976 n 0000 ~ 05507109 n 0000 ~ 05507427 n 0000 ~ 05507642 n 0000 ~ 05507756 n 0000 ~ 05507977 n 0000 ~ 05508113 n 0000 ~ 05508403 n 0000 ~ 05508534 n 0000 ~ 05508735 n 0000 | a network of intersecting nerves -05237227 08 n 01 system 0 021 @ 05220461 n 0000 ~ 05296639 n 0000 ~ 05329215 n 0000 ~ 05329533 n 0000 ~ 05421414 n 0000 ~ 05460870 n 0000 ~ 05461179 n 0000 ~ 05461349 n 0000 ~ 05461610 n 0000 ~ 05461816 n 0000 ~ 05462057 n 0000 ~ 05462315 n 0000 ~ 05480794 n 0000 ~ 05504336 n 0000 ~ 05509146 n 0000 ~ 05509452 n 0000 ~ 05509889 n 0000 ~ 05510702 n 0000 ~ 05510907 n 0000 ~ 05511286 n 0000 ~ 05585383 n 0000 | a group of physiologically or anatomically related organs or parts; "the body has a system of organs for digestion" -05237755 08 n 01 body_covering 0 011 @ 09257949 n 0000 ~ 01895735 n 0000 %p 01895850 n 0000 ~ 01896031 n 0000 ~ 01902568 n 0000 ~ 05238282 n 0000 ~ 05240076 n 0000 ~ 05254795 n 0000 ~ 05255435 n 0000 ~ 05539834 n 0000 ~ 05586759 n 0000 | any covering for the body or a body part -05238036 08 n 02 sheath 0 case 0 007 @ 09257949 n 0000 + 01486312 v 0203 ~ 01905321 n 0000 ~ 01905416 n 0000 ~ 05464685 n 0000 ~ 05464939 n 0000 ~ 13139647 n 0000 | an enveloping structure or covering enclosing an animal or plant organ or part -05238282 08 n 03 skin 0 tegument 0 cutis 0 032 @ 05286536 n 0000 @ 05237755 n 0000 #p 05461179 n 0000 + 02875707 a 0302 + 02935913 a 0101 + 01309478 v 0101 ~ 01458616 n 0000 ~ 02665413 n 0000 %p 05239039 n 0000 ~ 05239437 n 0000 ~ 05239589 n 0000 ~ 05239680 n 0000 %p 05240211 n 0000 %p 05241072 n 0000 %p 05243879 n 0000 %p 05244934 n 0000 %p 05245192 n 0000 %p 05245387 n 0000 %p 05245626 n 0000 %p 05245775 n 0000 %p 05245906 n 0000 %p 05264247 n 0000 %p 05330659 n 0000 %p 05469240 n 0000 %p 05469424 n 0000 ~ 05526957 n 0000 ~ 05527085 n 0000 ~ 05539947 n 0000 ~ 05581932 n 0000 ~ 05584746 n 0000 %p 13905792 n 0000 %s 14757172 n 0000 | a natural protective body covering and site of the sense of touch; "your skin is the largest organ of your body" -05239039 08 n 01 pressure_point 0 002 @ 05221895 n 0000 #p 05238282 n 0000 | an area on the skin that is highly sensitive to pressure; "you must know the pressure points in order to administer shiatsu" -05239243 08 n 01 integument 0 003 @ 09257949 n 0000 + 02685785 a 0101 + 02685785 a 0102 | an outer protective covering such as the skin of an animal or a cuticle or seed coat or rind or shell -05239437 08 n 01 skin_graft 0 001 @ 05238282 n 0000 | a piece of skin taken from a donor area and surgically grafted at the site of an injury or burn -05239589 08 n 01 buff 0 001 @ 05238282 n 0000 | bare skin; naked; "swimming in the buff" -05239680 08 n 01 dewlap 0 002 @ 05238282 n 0000 #p 05546540 n 0000 | a hanging fold of loose skin on an elderly person's neck -05239808 08 n 02 epithelium 0 epithelial_tissue 0 007 @ 05267548 n 0000 + 02932334 a 0101 ~ 05240522 n 0000 ~ 05240710 n 0000 ~ 05240850 n 0000 %p 05241827 n 0000 ~ 05519707 n 0000 | membranous tissue covering internal organs and other internal surfaces of the body -05240076 08 n 01 exuviae 0 002 @ 05237755 n 0000 + 02941513 a 0101 | cast-off skins or coverings of various organisms during ecdysis -05240211 08 n 02 epidermis 0 cuticle 0 010 @ 08657249 n 0000 #p 05238282 n 0000 + 02876088 a 0103 + 02876088 a 0102 %p 05241218 n 0000 %p 05243077 n 0000 %p 05243259 n 0000 %p 05243435 n 0000 %p 05243704 n 0000 ~ 05244045 n 0000 | the outer layer of the skin covering the exterior body surface of vertebrates -05240522 08 n 01 endothelium 0 002 @ 05239808 n 0000 + 03018375 a 0101 | an epithelium of mesoblastic origin; a thin layer of flattened cells that lines the inside of some body cavities -05240710 08 n 01 mesothelium 0 001 @ 05239808 n 0000 | epithelium originating in the embryonic mesoderm; lines the primordial body cavity -05240850 08 n 01 neuroepithelium 0 005 @ 05239808 n 0000 #p 05426989 n 0000 #p 05321307 n 0000 #p 05528604 n 0000 #p 05305136 n 0000 | epithelium associated with special sense organs and containing sensory nerve endings -05241072 08 n 01 skin_cell 0 004 @ 05430628 n 0000 #p 05238282 n 0000 ~ 05241218 n 0000 ~ 05241662 n 0000 | any of the cells making up the skin -05241218 08 n 01 epidermal_cell 0 004 @ 05241072 n 0000 #p 05240211 n 0000 ~ 05241374 n 0000 ~ 05241485 n 0000 | any of the cells making up the epidermis -05241374 08 n 01 melanoblast 0 001 @ 05241218 n 0000 | an epidermal cell that is a precursor of a melanocyte -05241485 08 n 01 melanocyte 0 001 @ 05241218 n 0000 | a cell in the basal layer of the epidermis that produces melanin under the control of the melanocyte-stimulating hormone -05241662 08 n 01 prickle_cell 0 001 @ 05241072 n 0000 | a cell in the germinal layer of the skin (the prickle-cell layer); has many spines and radiating processes -05241827 08 n 01 epithelial_cell 0 008 @ 05430628 n 0000 #p 05239808 n 0000 ~ 05242070 n 0000 ~ 05242396 n 0000 ~ 05242525 n 0000 ~ 05242622 n 0000 ~ 05242928 n 0000 ~ 05305389 n 0000 | one of the closely packed cells forming the epithelium -05242070 08 n 02 columnar_cell 0 columnar_epithelial_cell 0 002 @ 05241827 n 0000 ~ 05242239 n 0000 | an epithelial cell that is shaped like a column; some have cilia -05242239 08 n 01 spongioblast 0 001 @ 05242070 n 0000 | any of various columnar epithelial cells in the central nervous system that develop into neuroglia -05242396 08 n 02 cuboidal_cell 0 cuboidal_epithelial_cell 0 001 @ 05241827 n 0000 | an epithelial cell that shaped like a cube -05242525 08 n 01 goblet_cell 0 001 @ 05241827 n 0000 | an epithelial cell that secretes mucous -05242622 08 n 01 hair_cell 0 002 @ 05241827 n 0000 #p 05322855 n 0000 | a sensory epithelial cell present in the organ of Corti -05242752 08 n 01 Kupffer's_cell 0 002 @ 00006484 n 0000 #p 05385534 n 0000 | specialized cells in the liver that destroy bacteria, foreign proteins, and worn-out blood cells -05242928 08 n 01 squamous_cell 0 001 @ 05241827 n 0000 | an epithelial cell that is flat like a plate and form a single layer of epithelial tissue -05243077 08 n 03 stratum_corneum 0 corneum 0 horny_layer 0 002 @ 08657249 n 0000 #p 05240211 n 0000 | the outermost layer of the epidermis consisting of dead cells that slough off -05243259 08 n 01 stratum_lucidum 0 002 @ 08657249 n 0000 #p 05240211 n 0000 | the layer of epidermis immediately under the stratum corneum in the skin of the palms and soles -05243435 08 n 01 stratum_granulosum 0 002 @ 08657249 n 0000 #p 05240211 n 0000 | the layer of epidermis just under the stratum corneum or (on the palms and soles) just under the stratum lucidum; contains cells (with visible granules) that die and move to the surface -05243704 08 n 04 stratum_germinativum 0 stratum_basale 0 malpighian_layer 0 rete_Malpighii 0 002 @ 08657249 n 0000 #p 05240211 n 0000 | the innermost layer of the epidermis -05243879 08 n 03 dermis 0 corium 0 derma 0 004 @ 08657249 n 0000 #p 05238282 n 0000 + 02875930 a 0102 + 02875930 a 0101 | the deep vascular inner layer of the skin -05244045 08 n 02 mantle 0 pallium 0 002 @ 05240211 n 0000 ;c 06083243 n 0000 | (zoology) a protective layer of epidermis in mollusks or brachiopods that secretes a substance forming the shell -05244239 08 n 01 plaque 0 005 @ 04682462 n 0000 ;c 06060845 n 0000 ~ 05244421 n 0000 ~ 05244619 n 0000 ~ 05244755 n 0000 | (pathology) a small abnormal patch on or inside the body -05244421 08 n 02 amyloid_plaque 0 amyloid_protein_plaque 0 001 @ 05244239 n 0000 | a plaque consisting of tangles of amyloid protein in nervous tissue (a pathological mark of Alzheimer's disease) -05244619 08 n 01 arterial_plaque 0 001 @ 05244239 n 0000 | a fatty deposit inside an arterial wall; characteristic of atherosclerosis -05244755 08 n 02 dental_plaque 0 bacterial_plaque 0 001 @ 05244239 n 0000 | a film of mucus and bacteria deposited on the teeth that encourages the development of dental caries -05244934 08 n 02 macule 0 macula 1 007 @ 04682462 n 0000 #p 05238282 n 0000 + 01537409 v 0203 + 00492410 v 0204 ~ 05245192 n 0000 ~ 05245387 n 0000 ~ 05245521 n 0000 | a patch of skin that is discolored but not usually elevated; caused by various diseases -05245192 08 n 02 freckle 0 lentigo 0 005 @ 05244934 n 0000 #p 05238282 n 0000 + 01788843 a 0202 + 00509857 v 0101 + 00510116 v 0101 | a small brownish spot (of the pigment melanin) on the skin -05245387 08 n 01 liver_spot 0 002 @ 05244934 n 0000 #p 05238282 n 0000 | a type of skin disease that causes brown spots on the skin -05245521 08 n 01 plague_spot 0 001 @ 05244934 n 0000 | a spot on the skin characteristic of the plague -05245626 08 n 02 whitehead 0 milium 0 002 @ 04692157 n 0000 #p 05238282 n 0000 | a small whitish lump in the skin due to a clogged sebaceous gland -05245775 08 n 02 blackhead 0 comedo 0 002 @ 04692157 n 0000 #p 05238282 n 0000 | a black-tipped plug clogging a pore of the skin -05245906 08 n 01 pore 0 005 @ 05250659 n 0000 #p 05238282 n 0000 + 00329396 a 0101 + 00329396 a 0102 ~ 12962149 n 0000 | any small opening in the skin or outer surface of an animal -05246089 08 n 01 aortic_orifice 0 001 @ 05249636 n 0000 | the orifice from the lower left chamber of the heart to the aorta -05246215 08 n 01 stoma 0 007 @ 05249636 n 0000 #p 00668552 n 0000 #p 00693399 n 0000 ;c 06063588 n 0000 + 02645677 a 0102 + 02310533 a 0101 + 02645677 a 0101 | a mouth or mouthlike opening (especially one created by surgery on the surface of the body to create an opening to an internal organ) -05246511 08 n 02 tube 0 tube-shaped_structure 0 010 @ 05225602 n 0000 ;c 06057539 n 0000 + 02896497 a 0101 + 01580928 v 0101 + 02079525 v 0101 + 02329292 v 0101 ~ 05246796 n 0000 ~ 05247057 n 0000 ~ 05326624 n 0000 ~ 05397333 n 0000 | (anatomy) any hollow cylindrical body structure -05246796 08 n 01 tubule 0 007 @ 05246511 n 0000 ~ 05246969 n 0000 ~ 05247178 n 0000 ~ 05318137 n 0000 ~ 05524243 n 0000 ~ 05525970 n 0000 ~ 05532050 n 0000 | a small tube -05246969 08 n 01 microtubule 0 001 @ 05246796 n 0000 | a microscopically small tubule -05247057 08 n 01 salpinx 0 003 @ 05246511 n 0000 ~ 05325153 n 0000 ~ 05518870 n 0000 | a tube in the uterus or the ear -05247178 08 n 02 nephron 0 uriniferous_tubule 0 003 @ 05246796 n 0000 #p 05332802 n 0000 %p 05247369 n 0000 | any of the small tubules that are the excretory units of the vertebrate kidney -05247369 08 n 03 malpighian_body 0 malpighian_corpuscle 0 renal_corpuscle 0 004 @ 05317191 n 0000 #p 05247178 n 0000 %p 05247621 n 0000 %p 05247804 n 0000 | the capsule that contains Bowman's capsule and a glomerulus at the expanded end of a nephron -05247621 08 n 03 Bowman's_capsule 0 glomerular_capsule 0 capsula_glomeruli 0 002 @ 05426243 n 0000 #p 05247369 n 0000 | thin double membrane surrounding the glomerulus of a nephron -05247804 08 n 01 glomerulus 0 003 @ 05425910 n 0000 #p 05247369 n 0000 + 03009594 a 0101 | a small intertwined group of capillaries in the malpighian body; it filters the blood during urine formation -05248006 08 n 02 tomentum 0 tomentum_cerebri 0 001 @ 05425910 n 0000 | a network of tiny blood vessels between the cerebral surface of the pia mater and the cerebral cortex -05248181 08 n 02 passage 0 passageway 0 013 @ 05225602 n 0000 ~ 05226937 n 0000 ~ 05248553 n 0000 ~ 05249636 n 0000 ~ 05250659 n 0000 ~ 05253829 n 0000 ~ 05272110 n 0000 ~ 05308481 n 0000 ~ 05533948 n 0000 ~ 05534174 n 0000 ~ 05547904 n 0000 ~ 05548032 n 0000 ~ 05548521 n 0000 | a path or channel or duct through or along which something may pass; "the nasal passages" -05248553 08 n 01 meatus 0 003 @ 05248181 n 0000 ~ 05248667 n 0000 ~ 05249094 n 0000 | a natural body passageway -05248667 08 n 05 auditory_meatus 0 acoustic_meatus 0 ear_canal 0 auditory_canal 0 external_auditory_canal 0 003 @ 05248553 n 0000 #p 05323723 n 0000 %p 05231592 n 0000 | either of the passages in the outer ear from the auricle to the tympanic membrane -05248921 08 n 02 deltoid_tuberosity 0 deltoid_eminence 0 002 @ 05542686 n 0000 #p 05593181 n 0000 | a bump on the outside of the humerus where the deltoid muscle attaches -05249094 08 n 01 nasal_meatus 0 001 @ 05248553 n 0000 | the passages in the nasal cavity formed by the projections of the nasal conchae -05249232 08 n 03 spinal_canal 0 vertebral_canal 0 canalis_vertebralis 0 002 @ 05250659 n 0000 #p 05588174 n 0000 | the canal in successive vertebrae through which the spinal cord passes -05249420 08 n 02 anastomosis 0 inosculation 0 003 @ 14420954 n 0000 + 01292169 v 0202 + 02948363 a 0101 | a natural or surgical joining of parts or branches of tubular structures so as to make or become continuous -05249636 08 n 03 orifice 0 opening 0 porta 0 021 @ 05248181 n 0000 + 02744651 v 0201 + 02358034 v 0202 ~ 01323901 n 0000 ~ 01463115 n 0000 ~ 05246089 n 0000 ~ 05246215 n 0000 ~ 05250190 n 0000 ~ 05250310 n 0000 ~ 05301908 n 0000 ~ 05302422 n 0000 ~ 05303232 n 0000 ~ 05325378 n 0000 ~ 05396229 n 0000 ~ 05512505 n 0000 ~ 05512670 n 0000 ~ 05535095 n 0000 ~ 05538016 n 0000 ~ 05545212 n 0000 ~ 05600431 n 0000 ~ 05610008 n 0000 | an aperture or hole that opens into a bodily cavity; "the orifice into the aorta from the lower left chamber of the heart" -05250190 08 n 01 porta_hepatis 0 001 @ 05249636 n 0000 | opening for major blood vessels to enter and leave the liver -05250310 08 n 01 spiracle 0 003 @ 05249636 n 0000 ~ 05250420 n 0000 ~ 05250550 n 0000 | a breathing orifice -05250420 08 n 01 blowhole 0 002 @ 05250310 n 0000 #p 02062430 n 0000 | the spiracle of a cetacean located far back on the skull -05250550 08 n 01 stigma 0 001 @ 05250310 n 0000 | an external tracheal aperture in a terrestrial arthropod -05250659 08 n 04 duct 0 epithelial_duct 0 canal 0 channel 0 033 @ 05248181 n 0000 + 01435380 v 0405 + 01933900 v 0302 ~ 05245906 n 0000 ~ 05249232 n 0000 ~ 05251537 n 0000 ~ 05251655 n 0000 ~ 05251789 n 0000 ~ 05252016 n 0000 %p 05254197 n 0000 ~ 05331812 n 0000 ~ 05332438 n 0000 ~ 05386139 n 0000 ~ 05386426 n 0000 ~ 05386544 n 0000 ~ 05386845 n 0000 ~ 05387395 n 0000 ~ 05396807 n 0000 ~ 05416545 n 0000 ~ 05503401 n 0000 ~ 05512835 n 0000 ~ 05513020 n 0000 ~ 05519559 n 0000 ~ 05520479 n 0000 ~ 05521111 n 0000 ~ 05525628 n 0000 ~ 05526175 n 0000 ~ 05527216 n 0000 ~ 05527389 n 0000 ~ 05531379 n 0000 ~ 05531666 n 0000 ~ 05532225 n 0000 ~ 05554051 n 0000 | a bodily passage or tube lined with epithelial cells and conveying a secretion or other substance; "the tear duct was obstructed"; "the alimentary canal"; "poison is released through a channel in the snake's fangs" -05251537 08 n 02 ductule 0 ductulus 0 003 @ 05250659 n 0000 ~ 05330518 n 0000 ~ 05387028 n 0000 | a very small duct -05251655 08 n 01 canaliculus 0 002 @ 05250659 n 0000 + 02677112 a 0101 | a small canal or duct as in some bones and parts of plants -05251789 08 n 03 canal_of_Schlemm 0 Schlemm's_canal 0 sinus_venosus_sclerae 0 001 @ 05250659 n 0000 | a circular canal in the eye that drains aqueous humor from the anterior chamber of the eye into the anterior ciliary veins -05252016 08 n 02 venous_sinus 0 sinus 1 006 @ 05250659 n 0000 ~ 05252259 n 0000 ~ 05252402 n 0000 ~ 05252567 n 0000 ~ 05252705 n 0000 ~ 05252834 n 0000 | a wide channel containing blood; does not have the coating of an ordinary blood vessel -05252259 08 n 02 cavernous_sinus 0 sinus_cavernosus 0 001 @ 05252016 n 0000 | either of a pair of large venous sinuses in the cranial cavity -05252402 08 n 02 coronary_sinus 0 sinus_coronarius 0 001 @ 05252016 n 0000 | a short sinus receiving most of the veins of the heart; empties into the right atrium -05252567 08 n 02 sigmoid_sinus 0 sinus_sigmoideus 0 001 @ 05252016 n 0000 | an S-shaped dural sinus on the temporal and occipital bones -05252705 08 n 03 straight_sinus 0 tentorial_sinus 0 sinus_rectus 0 001 @ 05252016 n 0000 | an unpaired sinus of the dura mater -05252834 08 n 02 transverse_sinus 0 sinus_transversus 0 001 @ 05252016 n 0000 | a paired dural sinus; terminates in the sigmoid sinus -05252970 08 n 01 sinus 2 005 @ 05303402 n 0000 ~ 05253165 n 0000 ~ 05253338 n 0000 ~ 05253443 n 0000 ~ 05253561 n 0000 | any of various air-filled cavities especially in the bones of the skull -05253165 08 n 03 ethmoid_sinus 0 ethmoidal_sinus 0 sinus_ethmoidales 0 001 @ 05252970 n 0000 | a sinus of the meatuses of the nasal cavity (behind the bridge of the nose) -05253338 08 n 01 frontal_sinus 0 001 @ 05252970 n 0000 | one of a pair of cavities in the frontal bone -05253443 08 n 01 maxillary_sinus 0 001 @ 05252970 n 0000 | one of a pair of sinuses forming a cavity in the maxilla -05253561 08 n 03 paranasal_sinus 0 sinus_paranasales 0 nasal_sinus 0 001 @ 05252970 n 0000 | any of the paired sinuses in the bones of the face adjacent to the nasal cavity that are lined with mucous membrane that is continuous with the lining of the nasal cavities -05253829 08 n 01 sinusoid 0 001 @ 05248181 n 0000 | tiny endothelium-lined passages for blood in the tissue of an organ -05253951 08 n 02 locule 0 loculus 0 001 @ 05303402 n 0000 | a small cavity or space within an organ or in a plant or animal -05254077 08 n 01 lumen 0 001 @ 05303402 n 0000 | a cavity or passage in a tubular organ; "the lumen of the intestine" -05254197 08 n 01 ampulla 0 004 @ 05220461 n 0000 #p 05250659 n 0000 + 02618880 a 0102 + 02618880 a 0101 | the dilated portion of a canal or duct especially of the semicircular canals of the ear -05254393 08 n 02 hair 1 pilus 0 004 @ 05229468 n 0000 #p 01861778 n 0000 + 02778439 a 0201 ~ 05254627 n 0000 | any of the cylindrical filaments characteristically growing from the epidermis of a mammal; "there is a hair in my soup" -05254627 08 n 01 ingrown_hair 0 001 @ 05254393 n 0000 | a hair that does not emerge from the follicle but remains embedded in the skin (usually causing inflammation) -05254795 08 n 01 hair 0 021 @ 05237755 n 0000 #p 05461179 n 0000 + 00212173 a 0101 ~ 01898731 n 0000 ~ 01898906 n 0000 ~ 01899746 n 0000 ~ 01900006 n 0000 ~ 02416270 n 0000 ~ 05255578 n 0000 ~ 05255692 n 0000 ~ 05256085 n 0000 %p 05256220 n 0000 %p 05256358 n 0000 ~ 05256702 n 0000 ~ 05256862 n 0000 ~ 05257737 n 0000 ~ 05261404 n 0000 ~ 05263587 n 0000 ~ 05313535 n 0000 ~ 05314919 n 0000 %s 14732472 n 0000 | a covering for the body (or parts of it) consisting of a dense growth of threadlike structures (as on the human head); helps to prevent heat loss; "he combed his hair"; "each hair consists of layers of dead keratinized cells" -05255435 08 n 01 headful 0 001 @ 05237755 n 0000 | a covering over the surface of your head; "a headful of tight curls"; "a headful of lice" -05255578 08 n 01 body_hair 0 002 @ 05254795 n 0000 #p 02472293 n 0000 | short hair growing over a person's body -05255692 08 n 02 down 0 pile 0 005 @ 05254795 n 0000 + 00215087 a 0203 + 00215087 a 0201 + 00213610 a 0101 ~ 05255939 n 0000 | fine soft dense hair (as the fine short hair of cattle or deer or the wool of sheep or the undercoat of certain dogs) -05255939 08 n 01 lanugo 0 001 @ 05255692 n 0000 | the fine downy hair covering a human fetus; normally shed during the ninth month of gestation -05256085 08 n 02 mane 1 head_of_hair 0 002 @ 05254795 n 0000 #p 02472293 n 0000 | growth of hair covering the scalp of a human being -05256220 08 n 01 hairline 0 003 @ 08512259 n 0000 #p 05254795 n 0000 %p 05256562 n 0000 | the natural margin formed by hair on the head -05256358 08 n 02 part 1 parting 0 002 @ 08593262 n 0000 #p 05254795 n 0000 | a line of scalp that can be seen when sections of hair are combed in opposite directions; "his part was right in the middle" -05256562 08 n 01 widow's_peak 0 002 @ 13902482 n 0000 #p 05256220 n 0000 | a V-shaped point in the hairline in the middle of the forehead -05256702 08 n 01 cowlick 0 001 @ 05254795 n 0000 | a tuft of hair that grows in a different direction from the rest of the hair and usually will not lie flat -05256862 08 n 05 hairdo 0 hairstyle 0 hair_style 0 coiffure 0 coif 0 022 @ 05254795 n 0000 + 00038849 v 0405 + 00038849 v 0407 + 10155849 n 0302 %p 04055030 n 0000 ~ 05257393 n 0000 ~ 05257476 n 0000 ~ 05257593 n 0000 %p 05257737 n 0000 ~ 05258889 n 0000 ~ 05258985 n 0000 ~ 05259109 n 0000 ~ 05259240 n 0000 ~ 05259512 n 0000 ~ 05259726 n 0000 ~ 05259991 n 0000 ~ 05260127 n 0000 ~ 05260240 n 0000 ~ 05260380 n 0000 ~ 05261088 n 0000 ~ 05261203 n 0000 ~ 05261310 n 0000 | the arrangement of the hair (especially a woman's hair) -05257393 08 n 01 beehive 0 001 @ 05256862 n 0000 | a hairdo resembling a beehive -05257476 08 n 01 bouffant 0 001 @ 05256862 n 0000 | a woman's hairstyle in which the hair gives a puffy appearance -05257593 08 n 01 haircut 0 004 @ 05256862 n 0000 ~ 05260714 n 0000 ~ 05260821 n 0000 ~ 05260928 n 0000 | the style in which hair has been cut -05257737 08 n 04 lock 0 curl 0 ringlet 0 whorl 0 008 @ 05254795 n 0000 #p 05256862 n 0000 + 01030022 a 0201 + 01223616 v 0201 ~ 05257967 n 0000 ~ 05258051 n 0000 ~ 05258299 n 0000 ~ 05258743 n 0000 | a strand or cluster of hair -05257967 08 n 01 sausage_curl 0 001 @ 05257737 n 0000 | a fat sausage-shaped curl -05258051 08 n 01 forelock 0 002 @ 05257737 n 0000 ~ 05258177 n 0000 | a lock of hair growing (or falling) over the forehead -05258177 08 n 01 quiff 0 001 @ 05258051 n 0000 | a prominent forelock (especially one brushed upward from the forehead) -05258299 08 n 01 crimp 1 004 @ 05257737 n 0000 + 01223833 v 0101 ~ 05258462 n 0000 ~ 05258627 n 0000 | a lock of hair that has been artificially waved or curled -05258462 08 n 01 pin_curl 0 001 @ 05258299 n 0000 | a curl of hair made by dampening a strand of hair and curling it and holding the curl with a clip or bobby pin -05258627 08 n 02 spit_curl 0 kiss_curl 0 001 @ 05258299 n 0000 | a spiral curl plastered on the forehead or cheek -05258743 08 n 01 dreadlock 0 001 @ 05257737 n 0000 | one of many long thin braids of hair radiating from the scalp; popularized by Rastafarians -05258889 08 n 02 Afro 0 Afro_hairdo 0 001 @ 05256862 n 0000 | a rounded thickly curled hairdo -05258985 08 n 02 bang 0 fringe 0 001 @ 05256862 n 0000 | a border of hair that is cut short and hangs across the forehead -05259109 08 n 01 bob 0 002 @ 05256862 n 0000 + 00039121 v 0101 | a hair style for women and children; a short haircut all around -05259240 08 n 01 wave 0 006 @ 05256862 n 0000 + 01030691 a 0101 + 01223616 v 0102 + 00039488 v 0101 ~ 05259426 n 0000 ~ 05260533 n 0000 | a hairdo that creates undulations in the hair -05259426 08 n 01 finger_wave 0 001 @ 05259240 n 0000 | a wave made with the fingers -05259512 08 n 04 braid 0 plait 0 tress 0 twist 0 006 @ 05256862 n 0000 + 00143914 v 0401 + 01387656 v 0201 + 01519569 v 0101 ~ 05259823 n 0000 ~ 05259914 n 0000 | a hairdo formed by braiding or twisting the hair -05259726 08 n 01 chignon 0 001 @ 05256862 n 0000 | a roll of hair worn at the nape of the neck -05259823 08 n 01 queue 0 001 @ 05259512 n 0000 | a braid of hair at the back of the head -05259914 08 n 01 pigtail 0 001 @ 05259512 n 0000 | a plait of braided hair -05259991 08 n 01 marcel 0 001 @ 05256862 n 0000 | a hairdo characterized by deep regular waves that are made by a heated curling iron -05260127 08 n 01 pageboy 0 001 @ 05256862 n 0000 | a smooth hair style with the ends of the hair curled inward -05260240 08 n 01 pompadour 0 002 @ 05256862 n 0000 + 00039267 v 0101 | a hair style in which the front hair is swept up from the forehead -05260380 08 n 01 ponytail 0 001 @ 05256862 n 0000 | a hair style that draws the hair back so that it hangs down in back of the head like a pony's tail -05260533 08 n 03 permanent_wave 0 permanent 0 perm 0 003 @ 05259240 n 0000 + 00039824 v 0301 + 01754421 a 0201 | a series of waves in the hair made by applying heat and chemicals -05260714 08 n 01 brush_cut 0 001 @ 05257593 n 0000 | a short haircut with hairs standing up like a brush -05260821 08 n 02 crew_cut 0 flattop 0 001 @ 05257593 n 0000 | a closely cropped haircut; usually for men -05260928 08 n 02 mohawk 0 mohawk_haircut 0 001 @ 05257593 n 0000 | haircut in which the head is shaved except for a band of hair down the middle of the scalp -05261088 08 n 01 roach 0 002 @ 05256862 n 0000 + 01299562 v 0101 | a roll of hair brushed back from the forehead -05261203 08 n 01 scalp_lock 0 001 @ 05256862 n 0000 | a long tuft of hair left on top of the shaven head -05261310 08 n 01 thatch 0 001 @ 05256862 n 0000 | hair resembling thatched roofing material -05261404 08 n 01 facial_hair 0 004 @ 05254795 n 0000 ~ 05261566 n 0000 ~ 05262185 n 0000 ~ 05262802 n 0000 | hair on the face (especially on the face of a man) -05261566 08 n 03 beard 0 face_fungus 0 whiskers 0 012 @ 05261404 n 0000 #p 05600637 n 0000 #p 05220306 n 0000 + 02687730 v 0101 ~ 05261894 n 0000 ~ 05261999 n 0000 ~ 05262120 n 0000 %p 05262185 n 0000 ~ 05263029 n 0000 ~ 05263183 n 0000 ~ 05263316 n 0000 ~ 05263448 n 0000 | the hair growing on the lower part of a man's face -05261894 08 n 01 fuzz 0 002 @ 05261566 n 0000 + 00214165 a 0102 | the first beard of an adolescent boy -05261999 08 n 02 imperial 0 imperial_beard 0 001 @ 05261566 n 0000 | a small tufted beard worn by Emperor Napoleon III -05262120 08 n 01 beaver 0 001 @ 05261566 n 0000 | a full beard -05262185 08 n 02 mustache 0 moustache 0 005 @ 05261404 n 0000 #p 05261566 n 0000 ~ 05262422 n 0000 ~ 05262534 n 0000 ~ 05262698 n 0000 | an unshaved growth of hair on the upper lip; "he looked younger after he shaved off his mustache" -05262422 08 n 02 soup-strainer 0 toothbrush 0 002 @ 05262185 n 0000 ;u 07157273 n 0000 | slang for a mustache -05262534 08 n 03 mustachio 0 moustachio 0 handle-bars 0 001 @ 05262185 n 0000 | a large bushy moustache (with hair growing sometimes down the sides of the mouth) -05262698 08 n 02 walrus_mustache 0 walrus_moustache 0 001 @ 05262185 n 0000 | a bushy droopy mustache -05262802 08 n 04 sideburn 0 burnside 0 mutton_chop 0 side-whiskers 0 001 @ 05261404 n 0000 | facial hair that has grown down the side of a man's face in front of the ears (especially when the rest of the beard is shaved off) -05263029 08 n 01 goatee 0 002 @ 05261566 n 0000 #p 05599617 n 0000 | a small chin beard trimmed to a point; named for its resemblance to a goat's beard -05263183 08 n 01 stubble 0 001 @ 05261566 n 0000 | short stiff hairs growing on a man's face when he has not shaved for a few days -05263316 08 n 02 vandyke_beard 0 vandyke 0 001 @ 05261566 n 0000 | a short pointed beard (named after the artist Anthony Vandyke) -05263448 08 n 02 soul_patch 0 Attilio 0 001 @ 05261566 n 0000 | a small patch of facial hair just below the lower lip and above the chin -05263587 08 n 03 pubic_hair 0 bush 0 crotch_hair 0 003 @ 05254795 n 0000 #p 05219561 n 0000 ~ 05263732 n 0000 | hair growing in the pubic area -05263732 08 n 01 minge 0 002 @ 05263587 n 0000 @ 05514410 n 0000 | vulgar term for a woman's pubic hair or genitals -05263850 08 n 01 body_substance 0 009 @ 00019613 n 0000 #p 05216365 n 0000 ~ 05264081 n 0000 ~ 05397468 n 0000 ~ 05436080 n 0000 ~ 05436381 n 0000 ~ 05436548 n 0000 ~ 05582305 n 0000 ~ 05604535 n 0000 | the substance of the body -05264081 08 n 01 solid_body_substance 0 005 @ 05263850 n 0000 ~ 05264247 n 0000 ~ 05264913 n 0000 ~ 05308655 n 0000 ~ 05308810 n 0000 | the solid parts of the body -05264247 08 n 01 scab 0 005 @ 05264081 n 0000 #p 05238282 n 0000 + 02242798 a 0101 + 00098963 v 0101 ~ 05264417 n 0000 | the crustlike surface of a healing skin lesion -05264417 08 n 01 eschar 0 001 @ 05264247 n 0000 | a dry scab formed on the skin following a burn or cauterization of the skin -05264545 08 n 01 fundus 0 002 @ 05225602 n 0000 ;c 06057539 n 0000 | (anatomy) the base of a hollow organ or that part of the organ farthest from its opening; "the uterine fundus"; "the fundus of the stomach" -05264756 08 n 01 funiculus 0 004 @ 05225602 n 0000 ~ 05503705 n 0000 ~ 05520479 n 0000 ~ 05527848 n 0000 | any of several body structure resembling a cord -05264913 08 n 01 node 0 002 @ 05264081 n 0000 ~ 05265038 n 0000 | any bulge or swelling of an anatomical structure or part -05265038 08 n 01 nodule 0 003 @ 05264913 n 0000 + 02141867 a 0101 + 03092198 a 0101 | a small node -05265139 08 n 03 smear 0 cytologic_smear 0 cytosmear 0 005 @ 05267073 n 0000 ~ 05265417 n 0000 ~ 05266239 n 0000 ~ 05266486 n 0000 ~ 05266759 n 0000 | a thin tissue or blood sample spread on a glass slide and stained for cytologic examination and diagnosis under a microscope -05265417 08 n 01 alimentary_tract_smear 0 005 @ 05265139 n 0000 ~ 05265736 n 0000 ~ 05265861 n 0000 ~ 05265981 n 0000 ~ 05266096 n 0000 | any of several cytologic smears obtained from different parts of the alimentary tract; obtained by specialized lavage techniques and used mainly to diagnose cancer in those parts -05265736 08 n 01 esophageal_smear 0 001 @ 05265417 n 0000 | alimentary tract smear of material obtained from the esophagus -05265861 08 n 01 gastric_smear 0 001 @ 05265417 n 0000 | alimentary tract smear of material obtained from the stomach -05265981 08 n 01 oral_smear 0 001 @ 05265417 n 0000 | alimentary tract smear of material obtained from the mouth -05266096 08 n 02 paraduodenal_smear 0 duodenal_smear 0 001 @ 05265417 n 0000 | alimentary tract smear of material obtained from the duodenum -05266239 08 n 03 cervical_smear 0 Pap_smear 0 Papanicolaou_smear 0 002 @ 05265139 n 0000 #p 05743296 n 0000 | a sample of secretions and superficial cells of the uterine cervix and uterus; examined with a microscope to detect any abnormal cells -05266486 08 n 03 lower_respiratory_tract_smear 0 bronchoscopic_smear 0 sputum_smear 0 001 @ 05265139 n 0000 | any of several cytologic smears obtained from different parts of the lower respiratory tract; used for cytologic study of cancer and other diseases of the lungs -05266759 08 n 01 vaginal_smear 0 001 @ 05265139 n 0000 | smear taken from the vaginal mucosa for cytological analysis -05266879 08 n 01 specimen 0 002 @ 09421425 n 0000 ~ 05267073 n 0000 | a bit of tissue or blood or urine that is taken for diagnostic purposes; "they collected a urine specimen for urinalysis" -05267073 08 n 01 cytologic_specimen 0 002 @ 05266879 n 0000 ~ 05265139 n 0000 | a specimen used for cytologic examination and diagnosis -05267211 08 n 02 isthmus 0 band 0 001 @ 05267345 n 0000 | a cord-like tissue connecting two larger parts of an anatomical structure -05267345 08 n 01 tissue 0 004 @ 05220461 n 0000 #s 00004475 n 0000 ~ 05267211 n 0000 ~ 05267548 n 0000 | part of an organism consisting of an aggregate of cells having a similar structure and function -05267548 08 n 01 animal_tissue 0 027 @ 05267345 n 0000 #s 00015388 n 0000 ~ 01460963 n 0000 ~ 01463419 n 0000 ~ 02462213 n 0000 ~ 05239808 n 0000 ~ 05268112 n 0000 ~ 05268510 n 0000 ~ 05268619 n 0000 ~ 05268797 n 0000 ~ 05268965 n 0000 ~ 05286536 n 0000 ~ 05287882 n 0000 ~ 05288091 n 0000 ~ 05288912 n 0000 ~ 05289057 n 0000 ~ 05294995 n 0000 ~ 05296775 n 0000 ~ 05304932 n 0000 ~ 05320636 n 0000 ~ 05389762 n 0000 ~ 05426243 n 0000 ~ 05490578 n 0000 ~ 05490799 n 0000 ~ 05582191 n 0000 ~ 05582859 n 0000 ~ 05584152 n 0000 | the tissue in the bodies of animals -05268112 08 n 01 flesh 2 002 @ 05267548 n 0000 + 02729339 a 0101 | the soft tissue of the body of a vertebrate: mainly muscle tissue and fat -05268255 08 n 01 areolar_tissue 0 001 @ 05286536 n 0000 | fibrous connective tissue with the fibers arranged in a mesh or net -05268383 08 n 01 beta_cell 0 001 @ 00006484 n 0000 | a cell that produces insulin in the isles of Langerhans in the pancreas -05268510 08 n 01 capillary_bed 0 001 @ 05267548 n 0000 | a layer of tissue densely packed with capillaries -05268619 08 n 01 parenchyma 1 001 @ 05267548 n 0000 | animal tissue that constitutes the essential part of an organ as contrasted with e.g. connective tissue and blood vessels -05268797 08 n 01 interstitial_tissue 0 003 @ 05267548 n 0000 @ 13095685 n 0000 ~ 05467054 n 0000 | tissue between the cells of a structure or part in plant or animal -05268965 08 n 03 adipose_tissue 0 fat 0 fatty_tissue 0 011 @ 05267548 n 0000 + 00991838 a 0202 + 00991838 a 0201 + 01194938 v 0202 ~ 05269401 n 0000 ~ 05269495 n 0000 ~ 05269668 n 0000 ~ 05269784 n 0000 ~ 05522283 n 0000 ~ 05555917 n 0000 ~ 05556204 n 0000 | a kind of body tissue containing stored fat that serves as a source of energy; it also cushions and insulates vital organs; "fatty tissue protected them from the severe cold" -05269401 08 n 01 flab 0 002 @ 05268965 n 0000 + 01019713 a 0102 | loose or flaccid body fat -05269495 08 n 01 atheroma 0 003 @ 05268965 n 0000 + 03008447 a 0102 + 03008447 a 0101 | a fatty deposit in the intima (inner lining) of an artery; can obstruct blood flow -05269668 08 n 01 cellulite 0 001 @ 05268965 n 0000 | lumpy deposits of body fat especially on women's thighs etc. -05269784 08 n 01 puppy_fat 0 001 @ 05268965 n 0000 | fat on the body of a baby or child; disappears at adolescence -05269901 08 n 02 bone 0 os 0 076 @ 05286536 n 0000 #p 05586446 n 0000 #s 01325417 n 0000 + 03138224 a 0103 + 00295657 a 0101 + 00295657 a 0102 + 05277728 n 0102 ~ 01895355 n 0000 ~ 02322817 n 0000 ~ 02462066 n 0000 ~ 02463024 n 0000 ~ 02467491 n 0000 ~ 05271383 n 0000 ~ 05271607 n 0000 ~ 05271685 n 0000 ~ 05271814 n 0000 ~ 05273555 n 0000 ~ 05273684 n 0000 ~ 05273822 n 0000 ~ 05274105 n 0000 ~ 05274247 n 0000 ~ 05274446 n 0000 ~ 05274590 n 0000 ~ 05274808 n 0000 ~ 05274959 n 0000 ~ 05275162 n 0000 ~ 05275315 n 0000 ~ 05275466 n 0000 ~ 05275651 n 0000 ~ 05276290 n 0000 ~ 05276860 n 0000 ~ 05277261 n 0000 ~ 05277405 n 0000 ~ 05277532 n 0000 ~ 05277728 n 0000 ~ 05278152 n 0000 ~ 05278584 n 0000 ~ 05278714 n 0000 ~ 05279026 n 0000 ~ 05279321 n 0000 ~ 05279407 n 0000 ~ 05279688 n 0000 ~ 05280512 n 0000 ~ 05280698 n 0000 %p 05280831 n 0000 ~ 05280998 n 0000 ~ 05281189 n 0000 ~ 05281452 n 0000 ~ 05281584 n 0000 ~ 05281691 n 0000 ~ 05281874 n 0000 ~ 05282000 n 0000 ~ 05282746 n 0000 ~ 05283816 n 0000 ~ 05284020 n 0000 ~ 05284333 n 0000 ~ 05284851 n 0000 %p 05285623 n 0000 %s 05287090 n 0000 ~ 05322735 n 0000 %p 05326060 n 0000 ~ 05332225 n 0000 %p 05447599 n 0000 %p 05471629 n 0000 %p 05472032 n 0000 ~ 05540121 n 0000 ~ 05540407 n 0000 ~ 05540513 n 0000 ~ 05540976 n 0000 ~ 05541097 n 0000 ~ 05546040 n 0000 %p 05582305 n 0000 ~ 05610734 n 0000 ~ 05610919 n 0000 ~ 07872915 n 0000 %s 14757848 n 0000 | rigid connective tissue that makes up the skeleton of vertebrates -05271383 08 n 04 anklebone 0 astragal 0 astragalus 0 talus 0 004 @ 05269901 n 0000 #p 05578442 n 0000 + 02646072 a 0301 + 02646072 a 0201 | the bone in the ankle that articulates with the leg bones to form the ankle joint -05271607 08 n 01 bare_bone 0 001 @ 05269901 n 0000 | bone stripped of flesh -05271685 08 n 01 cuboid_bone 0 002 @ 05269901 n 0000 #p 05594822 n 0000 | the cube shaped bone on the outer side of the tarsus -05271814 08 n 03 carpal_bone 0 carpal 0 wrist_bone 0 010 @ 05269901 n 0000 #p 05584928 n 0000 ~ 05272276 n 0000 ~ 05272423 n 0000 ~ 05272545 n 0000 ~ 05272745 n 0000 ~ 05272891 n 0000 ~ 05273073 n 0000 ~ 05273223 n 0000 ~ 05273408 n 0000 | any of the eight small bones of the wrist of primates -05272110 08 n 01 carpal_tunnel 0 002 @ 05248181 n 0000 #p 05584928 n 0000 | a passageway in the wrist through which nerves and the flexor muscles of the hands pass -05272276 08 n 03 scaphoid_bone 0 os_scaphoideum 0 navicular 0 002 @ 05271814 n 0000 + 02148526 a 0301 | the largest wrist bone on the thumb side -05272423 08 n 03 lunate_bone 0 semilunar_bone 0 os_lunatum 0 001 @ 05271814 n 0000 | one of the eight small wrist bones -05272545 08 n 05 triquetral 0 triquetral_bone 0 os_triquetrum 0 cuneiform_bone 0 pyramidal_bone 0 001 @ 05271814 n 0000 | a wrist bone that articulates with the pisiform and hamate and lunate bones -05272745 08 n 03 pisiform 0 pisiform_bone 0 os_pisiforme 0 001 @ 05271814 n 0000 | a small wrist bone that articulates only with the triquetral -05272891 08 n 03 trapezium 0 trapezium_bone 0 os_trapezium 0 001 @ 05271814 n 0000 | the wrist bone on the thumb side of the hand that articulates with the 1st and 2nd metacarpals -05273073 08 n 03 trapezoid 0 trapezoid_bone 0 os_trapezoideum 0 001 @ 05271814 n 0000 | the wrist bone between the trapezium and the capitate bones -05273223 08 n 03 capitate 0 capitate_bone 0 os_capitatum 0 002 @ 05271814 n 0000 + 02041940 a 0101 | the wrist bone with a rounded head shape that articulates with the 3rd metacarpus -05273408 08 n 04 hamate 0 hamate_bone 0 unciform_bone 0 os_hamatum 0 001 @ 05271814 n 0000 | the wrist bone in line with the 4th and 5th fingers -05273555 08 n 01 cartilage_bone 0 001 @ 05269901 n 0000 | any bone that develops within cartilage rather than a fibrous tissue -05273684 08 n 01 centrum 0 004 @ 05269901 n 0000 #p 05284333 n 0000 %p 05587814 n 0000 %p 05587997 n 0000 | the main body of a vertebra -05273822 08 n 07 cheekbone 0 zygomatic_bone 0 zygomatic 0 malar 0 malar_bone 0 jugal_bone 0 os_zygomaticum 0 005 @ 05269901 n 0000 #p 05540121 n 0000 %p 05233420 n 0000 %p 05284851 n 0000 %p 05546383 n 0000 | the arch of bone beneath the eye that forms the prominence of the cheek -05274105 08 n 02 clavicle 0 collarbone 0 003 @ 05269901 n 0000 #p 05586446 n 0000 %p 05354580 n 0000 | bone linking the scapula and sternum -05274247 08 n 02 coccyx 0 tail_bone 0 005 @ 05269901 n 0000 #p 05596651 n 0000 #p 05588174 n 0000 + 02699011 a 0101 %p 05589756 n 0000 | the end of the vertebral column in humans and tailless apes -05274446 08 n 02 dentine 0 dentin 0 002 @ 05269901 n 0000 #p 05282746 n 0000 | bone (calcified tissue) surrounding the pulp cavity of a tooth -05274590 08 n 02 ethmoid 0 ethmoid_bone 0 002 @ 05269901 n 0000 #p 05540513 n 0000 | one of the eight bones of the cranium; a small bone filled with air spaces that forms part of the eye sockets and the nasal cavity -05274808 08 n 03 heelbone 0 calcaneus 0 os_tarsi_fibulare 0 002 @ 05269901 n 0000 #p 05563266 n 0000 | the largest tarsal bone; forms the human heel -05274959 08 n 02 hipbone 0 innominate_bone 0 003 @ 05269901 n 0000 #p 05596651 n 0000 %p 05596224 n 0000 | large flaring bone forming one half of the pelvis; made up of the ilium and ischium and pubis -05275162 08 n 03 hyoid 0 hyoid_bone 0 os_hyoideum 0 001 @ 05269901 n 0000 | a U-shaped bone at the base of the tongue that supports the tongue muscles -05275315 08 n 01 ilium 0 003 @ 05269901 n 0000 #p 05596651 n 0000 %p 05347146 n 0000 | the upper and widest of the three bones making up the hipbone -05275466 08 n 03 ischium 0 ischial_bone 0 os_ischii 0 003 @ 05269901 n 0000 #p 05596004 n 0000 #p 05596651 n 0000 | one of the three sections of the hipbone; situated below the ilium -05275651 08 n 02 long_bone 0 os_longum 0 007 @ 05269901 n 0000 %p 05319144 n 0000 ~ 05592504 n 0000 ~ 05592733 n 0000 %p 05592870 n 0000 ~ 05593017 n 0000 ~ 05594037 n 0000 | in limbs of vertebrate animals: a long cylindrical bone that contains marrow -05275905 08 n 08 lower_jaw 0 mandible 0 mandibula 0 mandibular_bone 0 submaxilla 0 lower_jawbone 0 jawbone 0 jowl 0 011 @ 05546040 n 0000 @ 05301392 n 0000 + 02877910 a 0201 %p 05232972 n 0000 %p 05233100 n 0000 %p 05233741 n 0000 %p 05234737 n 0000 %p 05235607 n 0000 %p 05471837 n 0000 %p 05472205 n 0000 ~ 05600030 n 0000 | the jaw in vertebrates that is hinged to open the mouth -05276290 08 n 01 ramus 0 002 @ 05269901 n 0000 %p 05231940 n 0000 | the posterior part of the mandible that is more or less vertical -05276425 08 n 02 raphe 0 rhaphe 0 003 @ 13902048 n 0000 #p 05517406 n 0000 ~ 05276566 n 0000 | a ridge that forms a seam between two parts -05276566 08 n 01 palatine_raphe 0 001 @ 05276425 n 0000 | the seam at the middle of the hard palate -05276668 08 n 03 mandibular_joint 0 temporomandibular_joint 0 articulatio_temporomandibularis 0 001 @ 05543177 n 0000 | the joint between the head of the lower jawbone and the temporal bone -05276860 08 n 01 membrane_bone 0 004 @ 05269901 n 0000 ~ 05541231 n 0000 ~ 05541645 n 0000 ~ 05541872 n 0000 | any bone that develops within membranous tissue without previous cartilage formation; e.g. the clavicle and bones of the skull -05277100 08 n 01 mentum 0 003 @ 05220461 n 0000 #p 02159955 n 0000 #p 12041446 n 0000 | a projection below the mouth of certain mollusks that resembles a chin -05277261 08 n 02 metacarpal 0 metacarpal_bone 0 002 @ 05269901 n 0000 #p 05593871 n 0000 | any bone of the hand between the wrist and fingers -05277405 08 n 01 metatarsal 0 002 @ 05269901 n 0000 #p 05594568 n 0000 | any bone of the foot between the ankle and the toes -05277532 08 n 03 nasal 0 nasal_bone 0 os_nasale 0 004 @ 05269901 n 0000 #p 05599203 n 0000 + 02978781 a 0102 %p 05235217 n 0000 | an elongated rectangular bone that forms the bridge of the nose -05277728 08 n 03 ossicle 0 bonelet 0 ossiculum 0 006 @ 05269901 n 0000 #p 05324888 n 0000 + 14757848 n 0201 + 05269901 n 0201 + 03138396 a 0101 ~ 05277941 n 0000 | a small bone; especially one in the middle ear -05277941 08 n 01 auditory_ossicle 0 004 @ 05277728 n 0000 ~ 05325943 n 0000 ~ 05326340 n 0000 ~ 05326465 n 0000 | ossicles of the middle ear that transmit acoustic vibrations from the eardrum to the inner ear -05278152 08 n 03 palatine 0 palatine_bone 0 os_palatinum 0 002 @ 05269901 n 0000 + 02996605 a 0102 | either of two irregularly shaped bones that form the back of the hard palate and helps to form the nasal cavity and the floor of the orbits -05278395 08 n 03 patella 0 kneecap 0 kneepan 0 003 @ 05280512 n 0000 #p 05573602 n 0000 + 02861072 a 0101 | a small flat triangular bone in front of the knee that protects the knee joint -05278584 08 n 01 phalanx 0 003 @ 05269901 n 0000 #p 05566097 n 0000 + 02776688 a 0101 | any of the bones of the fingers or toes -05278714 08 n 03 pubis 0 pubic_bone 0 os_pubis 0 003 @ 05269901 n 0000 #p 05596651 n 0000 + 02880076 a 0101 | one of the three sections of the hipbone; together these two bones form the front of the pelvis -05278922 08 n 01 punctum 0 002 @ 08620061 n 0000 ;c 06057539 n 0000 | (anatomy) a point or small area -05279026 08 n 02 rib 1 costa 1 006 @ 05269901 n 0000 #p 01471682 n 0000 ;c 01471682 n 0000 + 02704844 a 0201 ~ 05591999 n 0000 %p 05592302 n 0000 | any of the 12 pairs of curved arches of bone extending from the spine to or toward the sternum in humans (and similar bones in most vertebrates) -05279321 08 n 01 round_bone 0 001 @ 05269901 n 0000 | bones that are round in shape -05279407 08 n 01 sacrum 0 004 @ 05269901 n 0000 #p 05596651 n 0000 + 03113164 a 0101 %p 05589596 n 0000 | wedge-shaped bone consisting of five fused vertebrae forming the posterior part of the pelvis; its base connects with the lowest lumbar vertebra and its tip with the coccyx -05279688 08 n 03 scapula 0 shoulder_blade 0 shoulder_bone 0 006 @ 05269901 n 0000 #p 05586446 n 0000 #p 05549061 n 0000 + 02792550 a 0101 %p 05279953 n 0000 %p 05280365 n 0000 | either of two flat triangular bones one on each side of the shoulder in human beings -05279953 08 n 02 glenoid_fossa 0 glenoid_cavity 0 002 @ 13872211 n 0000 #p 05279688 n 0000 | the concavity in the head of the scapula that receives the head of the humerus to form the shoulder joint -05280154 08 n 02 glenoid_fossa 1 mandibular_fossa 0 002 @ 13872211 n 0000 #p 05282000 n 0000 | a deep concavity in the temporal bone at the root of the zygomatic arch that receives the condyle of the mandible -05280365 08 n 02 acromion 0 acromial_process 0 002 @ 05470189 n 0000 #p 05279688 n 0000 | the outermost point of the spine of the shoulder blade -05280512 08 n 03 sesamoid_bone 0 sesamoid 0 os_sesamoideum 0 002 @ 05269901 n 0000 ~ 05278395 n 0000 | any of several small round bones formed in a tendon where it passes over a joint -05280698 08 n 02 short_bone 0 os_breve 0 001 @ 05269901 n 0000 | a bone that is of approximately equal dimension in all directions -05280831 08 n 01 socket 0 005 @ 05303402 n 0000 #p 05269901 n 0000 ~ 05285101 n 0000 ~ 05285480 n 0000 ~ 05596224 n 0000 | a bony hollow into which a structure fits -05280998 08 n 03 sphenoid_bone 0 sphenoid 0 os_sphenoidale 0 004 @ 05269901 n 0000 #p 05540121 n 0000 %p 05232221 n 0000 %p 05542539 n 0000 | butterfly-shaped bone at the base of the skull -05281189 08 n 02 sternum 0 breastbone 0 007 @ 05269901 n 0000 #p 05552607 n 0000 #p 05587288 n 0000 + 03007245 a 0101 %p 05281452 n 0000 %p 05281584 n 0000 %p 05281691 n 0000 | the flat bone that articulates with the clavicles and the first seven pairs of ribs -05281452 08 n 02 gladiolus 0 corpus_sternum 0 002 @ 05269901 n 0000 #p 05281189 n 0000 | the large central part of the breastbone -05281584 08 n 01 manubrium 0 002 @ 05269901 n 0000 #p 05281189 n 0000 | the upper part of the breastbone -05281691 08 n 01 xiphoid_process 0 002 @ 05269901 n 0000 #p 05281189 n 0000 | smallest of the three parts of the breastbone; articulates with the corpus sternum and the seventh rib -05281874 08 n 02 tarsal 0 tarsal_bone 0 003 @ 05269901 n 0000 #p 05594822 n 0000 + 03123143 a 0101 | any bone of the tarsus -05282000 08 n 02 temporal_bone 0 os_temporale 0 006 @ 05269901 n 0000 #p 05540513 n 0000 %p 05280154 n 0000 %p 05284020 n 0000 %p 05542193 n 0000 %p 05542416 n 0000 | a thick bone forming the side of the human cranium and encasing the inner ear -05282247 08 n 01 primary_dentition 0 001 @ 05282433 n 0000 | dentition of deciduous teeth -05282339 08 n 01 secondary_dentition 0 001 @ 05282433 n 0000 | dentition of permanent teeth -05282433 08 n 02 dentition 0 teeth 0 005 @ 07996689 n 0000 #p 05302499 n 0000 ~ 05282247 n 0000 ~ 05282339 n 0000 %m 05282746 n 0000 | the kind and number and arrangement of teeth (collectively) in a person or animal -05282652 08 n 01 diastema 0 001 @ 09379111 n 0000 | a gap or vacant space between two teeth -05282746 08 n 01 tooth 0 024 @ 05269901 n 0000 #m 05282433 n 0000 + 02439377 a 0101 ~ 01465472 n 0000 ~ 01465713 n 0000 ~ 01476696 n 0000 %p 05274446 n 0000 %p 05283326 n 0000 ~ 05283498 n 0000 ~ 05283649 n 0000 ~ 05306190 n 0000 ~ 05306476 n 0000 ~ 05306604 n 0000 ~ 05306708 n 0000 ~ 05306894 n 0000 ~ 05307091 n 0000 ~ 05307358 n 0000 %p 05307521 n 0000 ~ 05307641 n 0000 ~ 05307773 n 0000 %p 05308141 n 0000 %p 05308310 n 0000 %p 05308950 n 0000 %p 05560631 n 0000 | hard bonelike structures in the jaws of vertebrates; used for biting and chewing or for attack and defense -05283326 08 n 01 pulp_cavity 0 003 @ 05303402 n 0000 #p 05282746 n 0000 %p 05308481 n 0000 | the central cavity of a tooth containing the pulp (including the root canal) -05283498 08 n 02 chopper 0 pearly 0 004 @ 05282746 n 0000 + 00390943 a 0201 + 01258091 v 0101 + 01257173 v 0101 | informal terms for a human `tooth' -05283649 08 n 01 carnassial_tooth 0 001 @ 05282746 n 0000 | the last upper premolar and first lower molar teeth of a carnivore; having sharp edges for cutting flesh -05283816 08 n 03 turbinate_bone 0 turbinate 0 turbinal 0 003 @ 05269901 n 0000 #p 05598147 n 0000 ~ 05229341 n 0000 | any of the scrolled spongy bones of the nasal passages in man and other vertebrates -05284020 08 n 01 tympanic_bone 0 002 @ 05269901 n 0000 #p 05282000 n 0000 | the bone enclosing the middle ear -05284132 08 n 04 upper_jaw 0 upper_jawbone 0 maxilla 0 maxillary 0 004 @ 05546040 n 0000 + 02878147 a 0401 %p 05309591 n 0000 %p 05544264 n 0000 | the jaw in vertebrates that is fused to the cranium -05284333 08 n 01 vertebra 0 011 @ 05269901 n 0000 #p 05588174 n 0000 + 03010664 a 0101 %p 05273684 n 0000 %p 05473104 n 0000 %p 05587628 n 0000 ~ 05588551 n 0000 ~ 05589132 n 0000 ~ 05589378 n 0000 ~ 05589596 n 0000 ~ 05589756 n 0000 | one of the bony segments of the spinal column -05284617 08 n 02 intervertebral_disc 0 intervertebral_disk 0 002 @ 13875185 n 0000 #p 05588174 n 0000 | a fibrocartilaginous disc serving as a cushion between all of the vertebrae of the spinal column (except between the first two) -05284851 08 n 03 zygoma 0 zygomatic_arch 0 arcus_zygomaticus 0 003 @ 05269901 n 0000 #p 05273822 n 0000 + 03146117 a 0101 | the slender arch formed by the temporal process of the cheekbone that bridges to the zygomatic process of the temporal bone -05285101 08 n 01 hip_socket 0 002 @ 05280831 n 0000 #p 05595083 n 0000 | the socket part of the ball-and-socket joint between the head of the femur and the innominate bone -05285275 08 n 04 eye_socket 0 orbit 0 cranial_orbit 0 orbital_cavity 0 004 @ 05303402 n 0000 #p 05540121 n 0000 + 02870178 a 0201 %p 05332225 n 0000 | the bony cavity in the skull containing the eyeball -05285480 08 n 02 tooth_socket 0 alveolus 2 002 @ 05280831 n 0000 #p 05310351 n 0000 | a bony socket in the alveolar ridge that holds a tooth -05285623 08 n 02 marrow 0 bone_marrow 0 005 @ 05286536 n 0000 #p 05269901 n 0000 #p 05460870 n 0000 ~ 05285835 n 0000 ~ 05286008 n 0000 | the fatty network of connective tissue that fills the cavities of bones -05285835 08 n 02 red_marrow 0 red_bone_marrow 0 001 @ 05285623 n 0000 | bone marrow of children and some adult bones that is required for the formation of red blood cells -05286008 08 n 02 yellow_marrow 0 yellow_bone_marrow 0 001 @ 05285623 n 0000 | bone marrow that is yellow with fat; found at the ends of long bones in adults -05286167 08 n 01 axolemma 0 002 @ 05426243 n 0000 #p 05464685 n 0000 | outer membrane covering an axon -05286272 08 n 01 basilar_membrane 0 002 @ 05426243 n 0000 #p 05326624 n 0000 | a membrane in the cochlea that supports the organ of Corti -05286412 08 n 01 cambium 0 003 @ 08657249 n 0000 #p 05327373 n 0000 + 02676456 a 0101 | the inner layer of the periosteum -05286536 08 n 01 connective_tissue 0 019 @ 05267548 n 0000 ~ 05238282 n 0000 ~ 05268255 n 0000 ~ 05269901 n 0000 ~ 05285623 n 0000 %s 05287090 n 0000 ~ 05287368 n 0000 ~ 05287607 n 0000 ~ 05295381 n 0000 ~ 05296001 n 0000 ~ 05296127 n 0000 ~ 05296253 n 0000 ~ 05429994 n 0000 %p 05450617 n 0000 %p 05582305 n 0000 ~ 05582513 n 0000 ~ 05583822 n 0000 %p 05607602 n 0000 ~ 14237818 n 0000 | tissue of mesodermal origin consisting of e.g. collagen fibroblasts and fatty cells; supports organs and fills spaces between them and forms tendons and ligaments -05287090 08 n 01 collagen 0 007 @ 15026716 n 0000 #s 05269901 n 0000 #s 05288091 n 0000 #s 05286536 n 0000 #s 05296253 n 0000 + 02699289 a 0102 + 02699289 a 0101 | a fibrous scleroprotein in bone and cartilage and tendon and other connective tissue; yields gelatin on boiling -05287368 08 n 01 elastic_tissue 0 002 @ 05286536 n 0000 %s 05287731 n 0000 | connective tissue consisting chiefly of elastic fibers found in the dermis of the skin and in the walls of veins and arteries and in some tendons and ligaments -05287607 08 n 01 endoneurium 0 001 @ 05286536 n 0000 | delicate connective tissue around individual nerve fibers in nerve -05287731 08 n 01 elastin 0 002 @ 15026716 n 0000 #s 05287368 n 0000 | a fibrous scleroprotein found in elastic tissues such as the walls of arteries -05287882 08 n 02 lymphatic_tissue 0 lymphoid_tissue 0 006 @ 05267548 n 0000 #p 05396366 n 0000 ~ 05309050 n 0000 ~ 05333467 n 0000 ~ 05430095 n 0000 ~ 05529286 n 0000 | tissue making up the lymphatic system -05288091 08 n 02 cartilage 0 gristle 0 011 @ 05267548 n 0000 #s 05531161 n 0000 + 02445863 a 0202 + 02681776 a 0101 %s 05287090 n 0000 ~ 05288396 n 0000 ~ 05288593 n 0000 ~ 05288739 n 0000 ~ 05530092 n 0000 ~ 05530296 n 0000 %p 05582305 n 0000 | tough elastic tissue; mostly converted to bone in adults -05288396 08 n 02 meniscus 0 semilunar_cartilage 0 002 @ 05288091 n 0000 ;c 06057539 n 0000 | (anatomy) a disk of cartilage that serves as a cushion between the ends of bones that meet at a joint -05288593 08 n 01 fibrocartilage 0 001 @ 05288091 n 0000 | cartilage that is largely composed of fibers like those in ordinary connective tissue -05288739 08 n 01 hyaline_cartilage 0 001 @ 05288091 n 0000 | translucent cartilage that is common in joints and the respiratory passages; forms most of the fetal skeleton -05288912 08 n 01 erectile_tissue 0 002 @ 05267548 n 0000 #p 05523269 n 0000 | vascular tissue capable of filling with blood and becoming rigid -05289057 08 n 02 muscle 1 muscular_tissue 0 007 @ 05267548 n 0000 #p 05461816 n 0000 + 02882570 a 0101 ~ 05289743 n 0000 ~ 05389939 n 0000 ~ 05460291 n 0000 -c 14544672 n 0000 | animal tissue consisting predominantly of contractile cells -05289297 08 n 02 muscle 0 musculus 0 012 @ 05289601 n 0000 ~ 05289861 n 0000 ~ 05292468 n 0000 ~ 05292587 n 0000 ~ 05292736 n 0000 ~ 05293040 n 0000 ~ 05316175 n 0000 ~ 05316590 n 0000 %p 05459232 n 0000 ~ 05460473 n 0000 ~ 05570839 n 0000 ~ 05573306 n 0000 | one of the contractile organs of the body -05289601 08 n 02 contractile_organ 0 contractor 0 003 @ 05297523 n 0000 + 01387786 v 0205 ~ 05289297 n 0000 | a bodily organ that contracts -05289743 08 n 01 striated_muscle_tissue 0 001 @ 05289057 n 0000 | muscle tissue characterized by transverse stripes -05289861 08 n 02 skeletal_muscle 0 striated_muscle 0 038 @ 05289297 n 0000 %p 05290756 n 0000 ~ 05290897 n 0000 ~ 05291010 n 0000 ~ 05291728 n 0000 ~ 05292856 n 0000 ~ 05293597 n 0000 ~ 05294606 n 0000 ~ 05296503 n 0000 %p 05459769 n 0000 ~ 05549350 n 0000 ~ 05550330 n 0000 ~ 05551711 n 0000 ~ 05552287 n 0000 ~ 05552467 n 0000 ~ 05557339 n 0000 ~ 05559122 n 0000 ~ 05570129 n 0000 ~ 05571904 n 0000 ~ 05574332 n 0000 ~ 05574633 n 0000 ~ 05574862 n 0000 ~ 05575002 n 0000 ~ 05575582 n 0000 ~ 05575743 n 0000 ~ 05575960 n 0000 ~ 05576074 n 0000 ~ 05579239 n 0000 ~ 05579604 n 0000 ~ 05587531 n 0000 ~ 05589896 n 0000 ~ 05590144 n 0000 ~ 05590366 n 0000 ~ 05590740 n 0000 ~ 05591256 n 0000 ~ 05591770 n 0000 ~ 05602132 n 0000 ~ 05602304 n 0000 | a muscle that is connected at either or both ends to a bone and so move parts of the skeleton; a muscle that is characterized by transverse stripes -05290756 08 n 01 head 2 002 @ 05225602 n 0000 #p 05289861 n 0000 | that part of a skeletal muscle that is away from the bone that it moves -05290897 08 n 01 voluntary_muscle 0 001 @ 05289861 n 0000 | striated muscle that can be controlled voluntarily -05291010 08 n 02 abductor 0 abductor_muscle 0 006 @ 05289861 n 0000 + 01449427 v 0101 ~ 05291230 n 0000 ~ 05291373 n 0000 ~ 05291495 n 0000 ~ 05291604 n 0000 | a muscle that draws a body part away from the median line -05291230 08 n 01 musculus_abductor_digiti_minimi_manus 0 002 @ 05291010 n 0000 #p 05567727 n 0000 | the abductor muscle of the little finger -05291373 08 n 01 musculus_abductor_digiti_minimi_pedis 0 001 @ 05291010 n 0000 | the abductor muscles of the little toe -05291495 08 n 01 musculus_abductor_hallucis 0 001 @ 05291010 n 0000 | the abductor muscle of the great toe -05291604 08 n 01 musculus_abductor_pollicis 0 002 @ 05291010 n 0000 #p 05567217 n 0000 | the abductor muscle of the thumb -05291728 08 n 02 adductor 0 adductor_muscle 0 006 @ 05289861 n 0000 + 01449236 v 0101 ~ 05291945 n 0000 ~ 05292073 n 0000 ~ 05292200 n 0000 ~ 05292359 n 0000 | a muscle that draws a body part toward the median line -05291945 08 n 01 musculus_adductor_brevis 0 002 @ 05291728 n 0000 #p 05562249 n 0000 | the short adductor muscle of the thigh -05292073 08 n 01 musculus_adductor_longus 0 002 @ 05291728 n 0000 #p 05562249 n 0000 | the long adductor muscle of the thigh -05292200 08 n 02 musculus_adductor_magnus 0 great_adductor_muscle 0 002 @ 05291728 n 0000 #p 05562249 n 0000 | the muscle that adducts and extends the thigh -05292359 08 n 01 musculus_adductor_hallucis 0 001 @ 05291728 n 0000 | the adductor muscle of the great toe -05292468 08 n 01 pronator 0 002 @ 05289297 n 0000 + 02081410 v 0101 | a muscle that produces or assists in pronation -05292587 08 n 01 supinator 0 002 @ 05289297 n 0000 + 02090243 v 0101 | a muscle (especially in the forearm) that produces or assists in supination -05292736 08 n 01 levator 0 001 @ 05289297 n 0000 | a muscle that serves to lift some body part (as the eyelid or lip) -05292856 08 n 02 anconeous_muscle 0 musculus_anconeus 0 002 @ 05289861 n 0000 #p 05564323 n 0000 | the muscle that extends the forearm and abducts the ulna in pronation of the wrist -05293040 08 n 01 antagonistic_muscle 0 004 @ 05289297 n 0000 ;c 06080522 n 0000 ~ 05293268 n 0000 ~ 05293420 n 0000 | (physiology) a muscle that opposes the action of another; "the biceps and triceps are antagonistic muscles" -05293268 08 n 01 agonist 0 001 @ 05293040 n 0000 | a muscle that contracts while another relaxes; "when bending the elbow the biceps are the agonist" -05293420 08 n 01 antagonist 0 002 @ 05293040 n 0000 + 00623565 a 0101 | a muscle that relaxes while another contracts; "when bending the elbow the triceps are the antagonist" -05293597 08 n 01 articular_muscle 0 004 @ 05289861 n 0000 #p 05595083 n 0000 ~ 05293773 n 0000 ~ 05293944 n 0000 | a muscle that inserts directly onto the capsule of a joint -05293773 08 n 01 musculus_articularis_cubiti 0 002 @ 05293597 n 0000 #p 05579944 n 0000 | a small branch of the triceps that inserts into the capsule of the elbow joint -05293944 08 n 01 musculus_articularis_genus 0 002 @ 05293597 n 0000 #p 05573602 n 0000 | the articular muscle of the knee -05294068 08 n 03 cheek_muscle 0 buccinator_muscle 0 musculus_buccinator 0 002 @ 05602132 n 0000 #p 05602835 n 0000 | a muscle that flattens the cheek and retracts the angle of the mouth -05294256 08 n 01 masseter 0 001 @ 05602132 n 0000 | a large muscle that raises the lower jaw and is used in chewing -05294374 08 n 01 platysma 0 001 @ 05602132 n 0000 | either of two broad muscles located on either side of the neck and innervated by the facial nerve; extends from lower jaw to clavicle and is involved in moving the mouth and jaw -05294606 08 n 02 extensor_muscle 0 extensor 0 005 @ 05289861 n 0000 + 00027705 v 0204 + 00027268 v 0202 ! 05296503 n 0202 ~ 05294819 n 0000 | a skeletal muscle whose contraction extends or stretches a body part -05294819 08 n 04 quadriceps 0 quadriceps_femoris 0 musculus_quadriceps_femoris 0 quad 0 002 @ 05294606 n 0000 #p 05562249 n 0000 | a muscle of the thigh that extends the leg -05294995 08 n 01 fibrous_tissue 0 003 @ 05267548 n 0000 @ 13095685 n 0000 ~ 05295160 n 0000 | tissue consisting of or containing fibers in both animals and plants -05295160 08 n 01 trabecula 0 002 @ 05294995 n 0000 + 02943954 a 0101 | rod-shaped structures of fibrous tissue that divide an organ into parts (as in the penis) or stabilize the structure of an organ (as in the spleen) -05295381 08 n 01 ligament 0 004 @ 05286536 n 0000 #p 05461816 n 0000 ~ 05295593 n 0000 ~ 05295740 n 0000 | a sheet or band of tough fibrous tissue connecting bones or cartilages or supporting muscles or organs -05295593 08 n 01 falciform_ligament 0 001 @ 05295381 n 0000 | a ligament that attaches part of the liver to the diaphragm and the abdominal wall -05295740 08 n 02 round_ligament_of_the_uterus 0 ligamentum_teres_uteri 0 001 @ 05295381 n 0000 | ligament attached to the uterus on either side in front of and below the opening of the Fallopian tube and passing through the inguinal canal to the labia majora -05296001 08 n 01 perineurium 0 001 @ 05286536 n 0000 | the sheath of connective tissue that covers a bundle of nerve fibers -05296127 08 n 01 perimysium 0 001 @ 05286536 n 0000 | the sheath of connective tissue that covers a bundle of muscle fibers -05296253 08 n 02 tendon 0 sinew 0 007 @ 05286536 n 0000 #p 05461816 n 0000 + 02811265 a 0202 + 02811265 a 0101 %s 05287090 n 0000 ~ 05570704 n 0000 ~ 05578740 n 0000 | a cord or band of inelastic tissue connecting a muscle with its bony attachment -05296503 08 n 02 flexor_muscle 0 flexor 0 002 @ 05289861 n 0000 ! 05294606 n 0202 | a skeletal muscle whose contraction bends a joint -05296639 08 n 01 articulatory_system 0 003 @ 05237227 n 0000 #p 05216365 n 0000 %p 05595083 n 0000 | the system of joints in the body -05296775 08 n 02 nervous_tissue 0 nerve_tissue 0 006 @ 05267548 n 0000 #p 05462315 n 0000 ~ 05475681 n 0000 ~ 05483122 n 0000 ~ 05483388 n 0000 ~ 05483677 n 0000 | tissue composed of neurons -05296968 08 n 01 ganglion 0 004 @ 05462674 n 0000 #p 05462315 n 0000 ~ 05297163 n 0000 ~ 05497363 n 0000 | an encapsulated neural structure consisting of a collection of cell bodies or neurons -05297163 08 n 01 autonomic_ganglion 0 003 @ 05296968 n 0000 #p 05504532 n 0000 ~ 05297363 n 0000 | any of the ganglia of the autonomic system whose unmyelinated fibers innervate the internal organs -05297363 08 n 02 otic_ganglion 0 otoganglion 0 001 @ 05297163 n 0000 | an autonomic ganglion whose postganglionic fibers are distributed to the parotid gland -05297523 08 n 01 organ 0 027 @ 05220461 n 0000 + 01093142 a 0101 ~ 01460813 n 0000 ~ 01468913 n 0000 ~ 01918585 n 0000 ~ 02151625 n 0000 ~ 02322213 n 0000 ~ 02465414 n 0000 ~ 02465693 n 0000 ~ 05289601 n 0000 ~ 05298159 n 0000 ~ 05298313 n 0000 ~ 05298421 n 0000 ~ 05298572 n 0000 ~ 05298729 n 0000 ~ 05299178 n 0000 ~ 05301072 n 0000 ~ 05305614 n 0000 ~ 05320362 n 0000 ~ 05327767 n 0000 ~ 05445668 n 0000 ~ 05465392 n 0000 %p 05493303 n 0000 ~ 05513302 n 0000 ~ 05516067 n 0000 ~ 05516230 n 0000 ~ 05523269 n 0000 | a fully differentiated structural and functional unit in an animal that is specialized for some particular function -05298159 08 n 02 primordium 0 anlage 0 001 @ 05297523 n 0000 | an organ in its earliest stage of development; the foundation for subsequent development -05298313 08 n 02 vital_organ 0 vitals 0 001 @ 05297523 n 0000 | a bodily organ that is essential for life -05298421 08 n 01 effector 0 002 @ 05297523 n 0000 ! 05299178 n 0103 | an organ (a gland or muscle) that becomes active in response to nerve impulses -05298572 08 n 01 external_organ 0 003 @ 05297523 n 0000 ~ 05323723 n 0000 ~ 05493002 n 0000 | an organ that is situated on or near the surface of the body -05298729 08 n 02 internal_organ 0 viscus 0 009 @ 05297523 n 0000 ~ 05298988 n 0000 ~ 05333259 n 0000 ~ 05385534 n 0000 ~ 05388805 n 0000 ~ 05395690 n 0000 ~ 05528060 n 0000 ~ 05534333 n 0000 ~ 05534578 n 0000 | a main organ that is situated inside the body -05298988 08 n 03 viscera 0 entrails 0 innards 0 001 @ 05298729 n 0000 | internal organs collectively (especially those in the abdominal cavity); "`viscera' is the plural form of `viscus'" -05299178 08 n 03 sense_organ 0 sensory_receptor 0 receptor 0 018 @ 05297523 n 0000 #p 05510702 n 0000 + 02107248 v 0302 ! 05298421 n 0301 ~ 02465929 n 0000 ~ 05299687 n 0000 ~ 05299814 n 0000 ~ 05299927 n 0000 ~ 05300128 n 0000 ~ 05300231 n 0000 ~ 05300397 n 0000 ~ 05311054 n 0000 ~ 05320899 n 0000 ~ 05321144 n 0000 ~ 05321307 n 0000 ~ 05323228 n 0000 ~ 05323454 n 0000 %p 05473735 n 0000 | an organ having nerve endings (in the skin or viscera or eye or ear or nose or mouth) that respond to stimulation -05299687 08 n 02 interoceptor 0 enteroceptor 0 001 @ 05299178 n 0000 | any receptor that responds to stimuli inside the body -05299814 08 n 01 exteroceptor 0 001 @ 05299178 n 0000 | any receptor that responds to stimuli outside the body -05299927 08 n 02 third_eye 0 pineal_eye 0 002 @ 05299178 n 0000 #p 05496990 n 0000 | a sensory structure capable of light reception located on the dorsal side of the diencephalon in various reptiles -05300128 08 n 01 baroreceptor 0 001 @ 05299178 n 0000 | a sensory receptor that responds to pressure -05300231 08 n 01 chemoreceptor 0 004 @ 05299178 n 0000 ~ 05305136 n 0000 ~ 05340121 n 0000 ~ 05598147 n 0000 | a sensory receptor that responds to chemical stimuli -05300397 08 n 01 thermoreceptor 0 001 @ 05299178 n 0000 | a sensory receptor that responds to heat and cold -05300507 08 n 01 auditory_system 0 005 @ 05510702 n 0000 ;c 05657718 n 0000 %p 05300675 n 0000 %p 05320899 n 0000 %p 05479503 n 0000 | the sensory system for hearing -05300675 08 n 01 auditory_apparatus 0 006 @ 05218899 n 0000 #p 05300507 n 0000 ;c 06054700 n 0000 %p 05321307 n 0000 %p 05323723 n 0000 %p 05324888 n 0000 | all of the components of the organ of hearing including the outer and middle and inner ears -05300926 08 n 01 visual_system 0 004 @ 05510702 n 0000 ;c 05654362 n 0000 %p 05311054 n 0000 %p 05478336 n 0000 | the sensory system for vision -05301072 08 n 04 tongue 0 lingua 0 glossa 0 clapper 0 009 @ 05297523 n 0000 @ 05301392 n 0000 #p 05302499 n 0000 #p 05547508 n 0000 + 02829826 a 0201 + 02842445 a 0202 + 01432353 v 0101 + 01734300 v 0101 %p 05305136 n 0000 | a mobile mass of muscular tissue covered with mucous membrane and located in the oral cavity -05301392 08 n 01 articulator 0 004 @ 05305614 n 0000 ~ 05275905 n 0000 ~ 05301072 n 0000 ~ 05305806 n 0000 | a movable speech organ -05301526 08 n 01 glottis 0 004 @ 05305614 n 0000 #p 05529729 n 0000 + 02880924 a 0101 %p 05610198 n 0000 | the vocal apparatus of the larynx; the true vocal folds and the space between them where the voice tone is generated -05301752 08 n 01 epiglottis 0 003 @ 05531161 n 0000 #p 05531814 n 0000 %p 05305136 n 0000 | a flap of cartilage that covers the windpipe while swallowing -05301908 08 n 01 mouth 0 012 @ 05249636 n 0000 #p 05600637 n 0000 + 01432474 v 0101 + 01040707 v 0101 + 00941990 v 0104 ~ 01458010 n 0000 ~ 01758308 n 0000 ~ 01758510 n 0000 %p 05302499 n 0000 %p 05305806 n 0000 %p 05350256 n 0000 %p 05372924 n 0000 | the externally visible part of the oral cavity on the face and the system of organs surrounding the opening; "she wiped lipstick from her mouth" -05302307 08 n 06 trap 0 cakehole 0 hole 0 maw 0 yap 0 gob 0 001 @ 05302499 n 0000 | informal terms for the mouth -05302422 08 n 01 os 1 001 @ 05249636 n 0000 | a mouth or mouthlike opening -05302499 08 n 04 mouth 1 oral_cavity 0 oral_fissure 0 rima_oris 0 012 @ 05610008 n 0000 #p 05301908 n 0000 + 01432474 v 0101 + 01040707 v 0101 + 00941990 v 0104 %p 05282433 n 0000 %p 05301072 n 0000 ~ 05302307 n 0000 %p 05302899 n 0000 %p 05304932 n 0000 %p 05309725 n 0000 %p 05532944 n 0000 | the opening through which food is taken in and vocalizations emerge; "he stuffed his mouth with candy" -05302899 08 n 01 buccal_cavity 0 002 @ 05303402 n 0000 #p 05302499 n 0000 | the cavity between the jaws and the cheeks -05303020 08 n 01 incompetent_cervix 0 002 @ 05303232 n 0000 ;c 06053439 n 0000 | (obstetrics) uterine cervix that becomes dilated before term and without labor often resulting in miscarriage or premature birth -05303232 08 n 03 cervix 2 uterine_cervix 0 cervix_uteri 0 004 @ 05249636 n 0000 #p 05519085 n 0000 + 02927169 a 0101 ~ 05303020 n 0000 | necklike opening to the uterus -05303402 08 n 03 cavity 0 bodily_cavity 0 cavum 0 041 @ 05225602 n 0000 #p 05216365 n 0000 ;c 06057539 n 0000 ~ 01459242 n 0000 ~ 01462945 n 0000 ~ 05252970 n 0000 ~ 05253951 n 0000 ~ 05254077 n 0000 ~ 05280831 n 0000 ~ 05283326 n 0000 ~ 05285275 n 0000 ~ 05302899 n 0000 ~ 05304252 n 0000 ~ 05304341 n 0000 ~ 05304603 n 0000 ~ 05324691 n 0000 ~ 05324888 n 0000 ~ 05388527 n 0000 ~ 05392744 n 0000 ~ 05392906 n 0000 ~ 05399486 n 0000 ~ 05427946 n 0000 ~ 05428136 n 0000 ~ 05428974 n 0000 ~ 05447087 n 0000 ~ 05502556 n 0000 ~ 05515670 n 0000 ~ 05519401 n 0000 ~ 05528604 n 0000 ~ 05528854 n 0000 ~ 05529012 n 0000 ~ 05529159 n 0000 ~ 05536370 n 0000 ~ 05548726 n 0000 ~ 05549576 n 0000 ~ 05553049 n 0000 ~ 05558345 n 0000 ~ 05596442 n 0000 ~ 05597050 n 0000 ~ 05606801 n 0000 ~ 13872211 n 0000 | (anatomy) a natural hollow or sinus within the body -05304252 08 n 01 antrum 0 001 @ 05303402 n 0000 | a natural cavity or hollow in a bone -05304341 08 n 01 cloaca 0 002 @ 05303402 n 0000 ;c 06083243 n 0000 | (zoology) the cavity (in birds, reptiles, amphibians, most fish, and monotremes but not mammals) at the end of the digestive tract into which the intestinal, genital, and urinary tracts open -05304603 08 n 01 vestibule 0 004 @ 05303402 n 0000 + 03010553 a 0101 ~ 05304795 n 0000 ~ 05523108 n 0000 | any of various bodily cavities leading to another cavity (as of the ear or vagina) -05304795 08 n 01 vestibule_of_the_ear 0 002 @ 05304603 n 0000 #p 05320899 n 0000 | the central cavity of the bony labyrinth of the ear -05304932 08 n 02 gingiva 0 gum 0 004 @ 05267548 n 0000 #p 05302499 n 0000 + 01175224 v 0202 + 02735812 a 0101 | the tissue (covered by mucous membrane) of the jaws that surrounds the bases of the teeth -05305136 08 n 03 tastebud 0 taste_bud 0 gustatory_organ 0 007 @ 05300231 n 0000 #p 05301072 n 0000 #p 05309725 n 0000 #p 05301752 n 0000 #p 05547508 n 0000 %p 05240850 n 0000 %p 05305389 n 0000 | an oval sensory end organ on the surface of the tongue -05305389 08 n 02 taste_cell 0 gustatory_cell 0 002 @ 05241827 n 0000 #p 05305136 n 0000 | an epithelial cell in a taste bud that activates sensory fibers of the facial nerve or the glossopharyngeal nerve or the vagus nerve -05305614 08 n 03 speech_organ 0 vocal_organ 0 organ_of_speech 0 004 @ 05297523 n 0000 ~ 05301392 n 0000 ~ 05301526 n 0000 ~ 05529729 n 0000 | any of the organs involved in speech production -05305806 08 n 01 lip 0 007 @ 05225090 n 0000 @ 05301392 n 0000 #p 05301908 n 0000 ~ 05306055 n 0000 ~ 05306122 n 0000 %p 05348884 n 0000 %p 05371663 n 0000 | either of two fleshy folds of tissue that surround the mouth and play a role in speaking -05306055 08 n 01 overlip 0 001 @ 05305806 n 0000 | the upper lip -05306122 08 n 01 underlip 0 001 @ 05305806 n 0000 | the lower lip -05306190 08 n 02 front_tooth 0 anterior 0 003 @ 05282746 n 0000 + 00130778 a 0201 ~ 05306390 n 0000 | a tooth situated at the front of the mouth; "his malocclusion was caused by malposed anteriors" -05306390 08 n 01 bucktooth 0 001 @ 05306190 n 0000 | a large projecting front tooth -05306476 08 n 02 back_tooth 0 posterior 1 002 @ 05282746 n 0000 + 00131426 a 0201 | a tooth situated at the back of the mouth -05306604 08 n 01 malposed_tooth 0 001 @ 05282746 n 0000 | a tooth that has grown in a faulty position -05306708 08 n 02 permanent_tooth 0 adult_tooth 0 001 @ 05282746 n 0000 | any of the 32 teeth that replace the deciduous teeth of early childhood and (with luck) can last until old age -05306894 08 n 04 primary_tooth 0 deciduous_tooth 0 baby_tooth 0 milk_tooth 0 002 @ 05282746 n 0000 #p 05219420 n 0000 | one of the first temporary teeth of a young mammal (one of 20 in children) -05307091 08 n 06 canine 0 canine_tooth 0 eyetooth 0 eye_tooth 0 dogtooth 0 cuspid 0 004 @ 05282746 n 0000 + 02048626 a 0604 + 02677861 a 0101 ~ 01465593 n 0000 | one of the four pointed conical teeth (two in each jaw) located between the incisors and the premolars -05307358 08 n 02 premolar 0 bicuspid 0 002 @ 05282746 n 0000 + 02048449 a 0201 | a tooth having two cusps or points; located between the incisors and the molars -05307521 08 n 01 cusp 0 002 @ 13902482 n 0000 #p 05282746 n 0000 | small elevation on the grinding surface of a tooth -05307641 08 n 01 incisor 0 001 @ 05282746 n 0000 | a tooth for cutting or gnawing; located in the front of the mouth in both jaws -05307773 08 n 02 molar 0 grinder 0 004 @ 05282746 n 0000 + 00331082 v 0201 + 02900545 a 0101 ~ 05307952 n 0000 | grinding tooth with a broad crown; located behind the premolars -05307952 08 n 01 wisdom_tooth 0 001 @ 05307773 n 0000 | any of the last 4 teeth on each side of the upper and lower jaw; the last of the permanent teeth to erupt (between ages 16 and 21) -05308141 08 n 01 crown 0 004 @ 08663860 n 0000 #p 05282746 n 0000 + 01338247 v 0101 %p 05308655 n 0000 | the part of a tooth above the gum that is covered with enamel -05308310 08 n 02 root 0 tooth_root 0 003 @ 05225602 n 0000 #p 05282746 n 0000 %p 05308810 n 0000 | the part of a tooth that is embedded in the jaw and serves as support -05308481 08 n 01 root_canal 0 002 @ 05248181 n 0000 #p 05283326 n 0000 | the passage in the root of a tooth through which its nerve and blood vessels enter the pulp cavity -05308655 08 n 02 enamel 0 tooth_enamel 0 003 @ 05264081 n 0000 #p 05308141 n 0000 + 01681723 v 0101 | hard white substance covering the crown of a tooth -05308810 08 n 02 cementum 0 cement 0 002 @ 05264081 n 0000 #p 05308310 n 0000 | a specialized bony substance covering the root of a tooth -05308950 08 n 01 pulp 0 002 @ 05397178 n 0000 #p 05282746 n 0000 | the soft inner part of a tooth -05309050 08 n 04 tonsil 0 palatine_tonsil 0 faucial_tonsil 0 tonsilla 0 002 @ 05287882 n 0000 #p 05528854 n 0000 | either of two masses of lymphatic tissue one on each side of the oral pharynx -05309245 08 n 01 uvula 0 003 @ 05389762 n 0000 #p 05309392 n 0000 + 03127937 a 0101 | a small pendant fleshy lobe at the back of the soft palate -05309392 08 n 02 soft_palate 0 velum 0 004 @ 05389762 n 0000 #p 05309725 n 0000 + 02896692 a 0201 %p 05309245 n 0000 | a muscular flap that closes off the nasopharynx during swallowing or speaking -05309591 08 n 01 hard_palate 0 003 @ 08660339 n 0000 #p 05309725 n 0000 #p 05284132 n 0000 | the bony part of the roof of the mouth -05309725 08 n 02 palate 0 roof_of_the_mouth 0 006 @ 08660339 n 0000 #p 05302499 n 0000 + 02996605 a 0101 %p 05305136 n 0000 %p 05309392 n 0000 %p 05309591 n 0000 | the upper surface of the mouth that separates the oral and nasal cavities -05309965 08 n 01 ala 0 003 @ 05470189 n 0000 + 02567117 a 0102 + 02567281 a 0101 | a flat wing-shaped process or winglike part of an organism; "the alae of the nose"; "the alae of a maple seed"; "the flat petals of a pea blossom are alae" -05310206 08 n 01 alveolar_arch 0 002 @ 05470189 n 0000 #p 05546040 n 0000 | the part of the upper or lower jawbones in which the teeth are set -05310351 08 n 03 alveolar_ridge 0 gum_ridge 0 alveolar_process 0 004 @ 05470189 n 0000 #p 05546040 n 0000 %p 05285480 n 0000 %p 05335310 n 0000 | a ridge that forms the borders of the upper and lower jaws and contains the sockets of the teeth -05310596 08 n 03 caul 0 veil 0 embryonic_membrane 0 002 @ 05310790 n 0000 #p 05520699 n 0000 | the inner membrane of embryos in higher vertebrates (especially when covering the head at birth) -05310790 08 n 01 fetal_membrane 0 006 @ 05426243 n 0000 %p 01472638 n 0000 %p 01472939 n 0000 ~ 01473393 n 0000 ~ 05310596 n 0000 ~ 05520479 n 0000 | any membrane that functions for the protection or nourishment or respiration or excretion of a developing fetus -05311054 08 n 03 eye 0 oculus 0 optic 0 036 @ 05299178 n 0000 #p 05300926 n 0000 #p 05600637 n 0000 ;u 07075172 n 0000 + 02869563 a 0302 + 10380305 n 0202 + 02167052 v 0101 ~ 05311795 n 0000 ~ 05312040 n 0000 ~ 05312149 n 0000 ~ 05312227 n 0000 ~ 05312306 n 0000 ~ 05312427 n 0000 %p 05313115 n 0000 %p 05313344 n 0000 %p 05313822 n 0000 %p 05314075 n 0000 %p 05314255 n 0000 %p 05314639 n 0000 %p 05315095 n 0000 %p 05316025 n 0000 %p 05316175 n 0000 %p 05317354 n 0000 %p 05317960 n 0000 %p 05318137 n 0000 %p 05319936 n 0000 %p 05320362 n 0000 %p 05340599 n 0000 %p 05342214 n 0000 %p 05349659 n 0000 %p 05372428 n 0000 %p 05405554 n 0000 %p 05426989 n 0000 %p 05447218 n 0000 %p 05572940 n 0000 %p 09201031 n 0000 | the organ of sight -05311795 08 n 01 naked_eye 0 001 @ 05311054 n 0000 | the eye unaided by any optical instrument that alters the power of vision or alters the apparent size or distance of objects; "it is not safe to look directly at the sun with the naked eye" -05312040 08 n 01 peeper 0 002 @ 05311054 n 0000 ;u 07075172 n 0000 | an informal term referring to the eye -05312149 08 n 02 oculus_dexter 0 OD 0 001 @ 05311054 n 0000 | the right eye -05312227 08 n 02 oculus_sinister 0 OS 2 001 @ 05311054 n 0000 | the left eye -05312306 08 n 03 simple_eye 0 stemma 0 ocellus 0 002 @ 05311054 n 0000 ~ 05312614 n 0000 | an eye having a single lens -05312427 08 n 01 compound_eye 0 002 @ 05311054 n 0000 %p 05312614 n 0000 | in insects and some crustaceans: composed of many light-sensitive elements each forming a portion of an image -05312614 08 n 01 ommatidium 0 002 @ 05312306 n 0000 #p 05312427 n 0000 | any of the numerous small cone-shaped eyes that make up the compound eyes of some arthropods -05312782 08 n 03 cell_membrane 0 cytomembrane 0 plasma_membrane 0 002 @ 05447423 n 0000 #p 00006484 n 0000 | a thin membrane (a double layer of lipids) enclosing the cytoplasm of a cell; proteins in the membrane control passage of ions (like sodium or potassium or calcium) in and out of the cell; "all cells have a cell membrane" -05313115 08 n 02 choroid 0 choroid_coat 0 002 @ 05426243 n 0000 #p 05311054 n 0000 | a highly vascular membrane in the eye between the retina and the sclera; a dark pigmentation minimizes the scattering of light inside the eye -05313344 08 n 01 ciliary_body 0 002 @ 05426243 n 0000 #p 05311054 n 0000 | the part of the tunic of the eye between the choroid coat and the iris; "the ciliary body produces aqueous humor" -05313535 08 n 03 eyebrow 0 brow 1 supercilium 0 003 @ 05254795 n 0000 #p 05600637 n 0000 %p 05423779 n 0000 | the arch of hair above each eye -05313679 08 n 01 protective_fold 0 003 @ 05389762 n 0000 ~ 05313822 n 0000 ~ 05314639 n 0000 | a flap of tissue that protects what it covers -05313822 08 n 03 eyelid 0 lid 0 palpebra 0 005 @ 05313679 n 0000 #p 05311054 n 0000 + 00008055 v 0301 %p 05314919 n 0000 %p 05315095 n 0000 | either of two folds of skin that can be moved to cover or open the eye; "his lids would stay open no longer" -05314075 08 n 01 canthus 0 004 @ 08544275 n 0000 #p 05311054 n 0000 ~ 05314462 n 0000 ~ 05314549 n 0000 | either of the corners of the eye where the upper and lower eyelids meet -05314255 08 n 02 epicanthus 0 epicanthic_fold 0 002 @ 05492259 n 0000 #p 05311054 n 0000 | a vertical fold of skin over the nasal canthus; normal for Mongolian peoples; sometimes occurs in Down's syndrome -05314462 08 n 01 nasal_canthus 0 001 @ 05314075 n 0000 | the inner corner of the eye -05314549 08 n 01 temporal_canthus 0 001 @ 05314075 n 0000 | the outer corner of the eye -05314639 08 n 02 nictitating_membrane 0 third_eyelid 0 003 @ 05313679 n 0000 #p 05311054 n 0000 ~ 05314834 n 0000 | a protective fold of skin in the eyes of reptiles and birds and some mammals -05314834 08 n 01 haw 0 001 @ 05314639 n 0000 | the nictitating membrane of a horse -05314919 08 n 03 eyelash 0 lash 0 cilium 0 003 @ 05254795 n 0000 #p 05313822 n 0000 + 02845244 a 0301 | any of the short curved hairs that grow from the edges of the eyelids -05315095 08 n 01 conjunctiva 0 008 @ 05327134 n 0000 #p 05311054 n 0000 #p 05313822 n 0000 + 02702099 a 0101 ~ 05315382 n 0000 ~ 05315612 n 0000 ~ 05315855 n 0000 ~ 05317603 n 0000 | a transparent lubricating mucous membrane that covers the eyeball and the under surface of the eyelid -05315382 08 n 03 bulbar_conjunctiva 0 conjunctival_layer_of_bulb 0 tunica_conjunctiva_bulbi 0 001 @ 05315095 n 0000 | the part of the conjunctiva covering the anterior face of the sclera and the surface epithelium of the cornea -05315612 08 n 03 palpebra_conjunctiva 0 conjunctival_layer_of_eyelids 0 tunica_conjunctiva_palpebrarum 0 001 @ 05315095 n 0000 | the part of the conjunctiva lining the posterior surface of the eyelids; continuous with the bulbar conjunctiva -05315855 08 n 01 pinguecula 0 001 @ 05315095 n 0000 | a slightly elevated elastic tissue deposit in the conjunctiva that may extend to the cornea but does not cover it -05316025 08 n 02 eyeball 0 orb 0 003 @ 05317191 n 0000 #p 05311054 n 0000 + 02167052 v 0102 | the ball-shaped capsule containing the vertebrate eye -05316175 08 n 02 ocular_muscle 0 eye_muscle 0 006 @ 05289297 n 0000 #p 05311054 n 0000 ~ 05316407 n 0000 ~ 05316674 n 0000 ~ 05316850 n 0000 ~ 05317013 n 0000 | one of the small muscles of the eye that serve to rotate the eyeball -05316407 08 n 04 abducens_muscle 0 lateral_rectus_muscle 0 lateral_rectus 0 rectus_lateralis 0 001 @ 05316175 n 0000 | the ocular muscle whose contraction turns the eyeball outward -05316590 08 n 01 rectus 0 001 @ 05289297 n 0000 | any of various straight muscles -05316674 08 n 03 inferior_rectus_muscle 0 inferior_rectus 0 rectus_inferior 0 001 @ 05316175 n 0000 | the ocular muscle whose contraction turns the eyeball down and medially -05316850 08 n 03 medial_rectus_muscle 0 medial_rectus 0 rectus_medialis 0 001 @ 05316175 n 0000 | the ocular muscle whose contraction turns the eyeball medially -05317013 08 n 03 superior_rectus_muscle 0 superior_rectus 0 rectus_superior 0 001 @ 05316175 n 0000 | the ocular muscle whose contraction turns the eyeball upward and medially -05317191 08 n 01 capsule 0 005 @ 05225602 n 0000 + 02678677 a 0101 ~ 05247369 n 0000 ~ 05316025 n 0000 ~ 05326200 n 0000 | a structure that encloses a body part -05317354 08 n 01 cornea 0 004 @ 05426243 n 0000 #p 05311054 n 0000 + 02704245 a 0101 ~ 05317815 n 0000 | the transparent dome-shaped anterior portion of the outer covering of the eye; it covers the iris and pupil and is continuous with the sclera -05317603 08 n 01 pterygium 0 001 @ 05315095 n 0000 | either of two thickened triangular layers of conjunctiva extending from the nasal edge of the eye to the cornea; it arises from irritation of the pinguecula -05317815 08 n 02 arcus 0 arcus_senilis 0 001 @ 05317354 n 0000 | a whitish deposit in the shape of an arc that is sometimes seen in the cornea -05317960 08 n 01 uvea 0 004 @ 05225602 n 0000 #p 05311054 n 0000 + 02821723 a 0102 + 02821723 a 0101 | the part of the eye that contains the iris and ciliary body and choroid -05318137 08 n 01 uveoscleral_pathway 0 002 @ 05246796 n 0000 #p 05311054 n 0000 | a tubule that drains excess aqueous humor -05318263 08 n 02 aqueous_humor 0 aqueous_humour 0 001 @ 05397468 n 0000 | the limpid fluid within the eyeball between the cornea and the lens -05318407 08 n 03 vitreous_humor 0 vitreous_humour 0 vitreous_body 0 002 @ 05397468 n 0000 %s 14909895 n 0000 | the clear colorless transparent jelly that fills the posterior chamber of the eyeball -05318606 08 n 02 diaphragm 0 midriff 0 004 @ 05461816 n 0000 @ 05426243 n 0000 #p 05549830 n 0000 ;c 06057539 n 0000 | (anatomy) a muscular partition separating the abdominal and thoracic cavities; functions in respiration -05318831 08 n 04 eardrum 0 tympanum 0 tympanic_membrane 0 myringa 0 004 @ 05426243 n 0000 #p 05320899 n 0000 ~ 05324388 n 0000 %p 05324553 n 0000 | the membrane in the ear that vibrates to sound -05319028 08 n 01 endocranium 0 002 @ 05426243 n 0000 #p 05540121 n 0000 | membrane lining the inside of the skull -05319144 08 n 01 endosteum 0 002 @ 05426243 n 0000 #p 05275651 n 0000 | vascular membrane that lines the inner surface of long bones -05319279 08 n 01 ependyma 0 001 @ 05426243 n 0000 | thin epithelial membrane lining the ventricles of the brain and the spinal cord canal -05319419 08 n 01 fertilization_membrane 0 001 @ 05426243 n 0000 | the membrane that forms around a fertilized ovum and prevents penetration by additional spermatozoon -05319588 08 n 02 hyaloid_membrane 0 hyaloid 0 001 @ 05426243 n 0000 | the transparent membrane enveloping the vitreous humor of the eye and separating it from the retina -05319760 08 n 01 intima 0 002 @ 05426243 n 0000 + 03008785 a 0101 | the innermost membrane of an organ (especially the inner lining of an artery or vein or lymphatic vessel) -05319936 08 n 01 iris 0 003 @ 05426243 n 0000 #p 05311054 n 0000 %p 05320183 n 0000 | muscular diaphragm that controls the size of the pupil which in turn controls the amount of light that enters the eye; it forms the colored portion of the eye -05320183 08 n 01 pupil 0 003 @ 09201031 n 0000 #p 05319936 n 0000 + 02786103 a 0101 | the contractile aperture in the center of the iris of the eye; resembles a large black dot -05320362 08 n 03 lens 0 crystalline_lens 0 lens_of_the_eye 0 004 @ 05297523 n 0000 #p 05311054 n 0000 %p 05320636 n 0000 %p 05326200 n 0000 | biconvex transparent body situated behind the iris in the eye; its role (along with the cornea) is to focuses light on the retina -05320636 08 n 02 lens_cortex 0 cortex 2 002 @ 05267548 n 0000 #p 05320362 n 0000 | the tissue that surrounds the lens nucleus -05320764 08 n 02 lens_nucleus 0 nucleus 2 001 @ 05225602 n 0000 | the central structure of the lens that is surrounded by the cortex -05320899 08 n 01 ear 0 009 @ 05299178 n 0000 #p 05538625 n 0000 #p 05300507 n 0000 #p 05323036 n 0000 %p 05304795 n 0000 %p 05318831 n 0000 %p 05321144 n 0000 %p 05325378 n 0000 %p 05338025 n 0000 | the sense organ for hearing and equilibrium -05321144 08 n 01 organ_of_hearing 0 003 @ 05299178 n 0000 #p 05320899 n 0000 ~ 05322855 n 0000 | the part of the ear that is responsible for sensations of sound -05321307 08 n 03 inner_ear 0 internal_ear 0 labyrinth 0 011 @ 05299178 n 0000 #p 05300675 n 0000 %p 05240850 n 0000 %p 05321664 n 0000 %p 05321917 n 0000 %p 05322103 n 0000 %p 05322247 n 0000 %p 05323228 n 0000 %p 05326624 n 0000 %p 05349445 n 0000 %p 05372290 n 0000 | a complex system of interconnecting cavities; concerned with hearing and equilibrium -05321664 08 n 01 membranous_labyrinth 0 004 @ 05225602 n 0000 #p 05321307 n 0000 %p 05322432 n 0000 %p 05322570 n 0000 | the sensory structures of the inner ear including the labyrinthine receptors and the cochlea; contained within the bony labyrinth -05321917 08 n 02 bony_labyrinth 0 osseous_labyrinth 0 002 @ 05225602 n 0000 #p 05321307 n 0000 | cavity in the petrous part of the temporal bone that contains the membranous labyrinth -05322103 08 n 01 endolymph 0 002 @ 05397468 n 0000 #p 05321307 n 0000 | the bodily fluid that fills the membranous labyrinth of the inner ear -05322247 08 n 01 perilymph 0 002 @ 05397468 n 0000 #p 05321307 n 0000 | the bodily fluid that fills the space between the bony labyrinth and the membranous labyrinth of the inner ear -05322432 08 n 02 utricle 0 utriculus 0 002 @ 05516848 n 0000 #p 05321664 n 0000 | a small pouch into which the semicircular canals open -05322570 08 n 02 saccule 0 sacculus 0 002 @ 05515670 n 0000 #p 05321664 n 0000 | a small sac or pouch (especially the smaller chamber of the membranous labyrinth) -05322735 08 n 01 modiolus 0 002 @ 05269901 n 0000 #p 05326624 n 0000 | the central conical bony pillar of the cochlea -05322855 08 n 01 organ_of_Corti 0 003 @ 05321144 n 0000 #p 05326624 n 0000 %p 05242622 n 0000 | the hearing organ of the inner ear; contains receptors that respond to sound waves -05323036 08 n 02 vestibular_apparatus 0 vestibular_system 0 003 @ 05510702 n 0000 %p 05320899 n 0000 %p 05323228 n 0000 | organs mediating the labyrinthine sense; concerned with equilibrium -05323228 08 n 01 semicircular_canal 0 003 @ 05299178 n 0000 #p 05321307 n 0000 #p 05323036 n 0000 | one of three tube loops filled with fluid and in planes nearly at right angles with one another; concerned with equilibrium -05323454 08 n 01 stretch_receptor 0 001 @ 05299178 n 0000 | a receptor in a muscle that responds to stretching of the muscle tissue -05323588 08 n 02 earlobe 0 ear_lobe 0 002 @ 05493303 n 0000 #p 05323889 n 0000 | the fleshy pendulous part of the external human ear -05323723 08 n 02 external_ear 0 outer_ear 0 004 @ 05298572 n 0000 #p 05300675 n 0000 %p 05248667 n 0000 %p 05323889 n 0000 | the part of the ear visible externally -05323889 08 n 03 auricle 2 pinna 0 ear 1 007 @ 05531161 n 0000 #p 05323723 n 0000 + 02649125 a 0101 + 00812417 a 0101 %p 05323588 n 0000 %p 05324134 n 0000 ~ 05324276 n 0000 | the externally visible cartilaginous structure of the external ear -05324134 08 n 01 tragus 0 002 @ 05531161 n 0000 #p 05323889 n 0000 | a small cartilaginous flap in front of the external opening of the ear -05324276 08 n 01 cauliflower_ear 0 001 @ 05323889 n 0000 | an auricle deformed by injury; common among boxers -05324388 08 n 01 perforated_eardrum 0 001 @ 05318831 n 0000 | an eardrum with a hole or tear in it; can interfere with normal hearing and cause other ear problems -05324553 08 n 01 umbo 0 002 @ 13864153 n 0000 #p 05318831 n 0000 | a slight rounded elevation where the malleus attaches to the eardrum -05324691 08 n 01 mediastinum 0 002 @ 05303402 n 0000 #p 05553049 n 0000 | the part of the thoracic cavity between the lungs that contains the heart and aorta and esophagus and trachea and thymus -05324888 08 n 03 middle_ear 0 tympanic_cavity 0 tympanum 1 007 @ 05303402 n 0000 #p 05300675 n 0000 %p 05277728 n 0000 %p 05325153 n 0000 %p 05325943 n 0000 %p 05326340 n 0000 %p 05326465 n 0000 | the main cavity of the ear; between the eardrum and the inner ear -05325153 08 n 02 Eustachian_tube 0 auditory_tube 0 002 @ 05247057 n 0000 #p 05324888 n 0000 | either of the paired tubes connecting the middle ears to the nasopharynx; equalizes air pressure on the two sides of the eardrum -05325378 08 n 01 fenestra 0 005 @ 05249636 n 0000 #p 05320899 n 0000 ;c 06054700 n 0000 ~ 05325606 n 0000 ~ 05325786 n 0000 | a small opening covered with membrane (especially one in the bone between the middle and inner ear) -05325606 08 n 04 fenestra_ovalis 0 fenestra_vestibuli 0 oval_window 0 fenestra_of_the_vestibule 0 001 @ 05325378 n 0000 | fenestra that has the base of the stapes attached to it -05325786 08 n 04 fenestra_rotunda 0 fenestra_cochleae 0 round_window 0 fenestra_of_the_cochlea 0 001 @ 05325378 n 0000 | fenestra leading into the cochlea -05325943 08 n 02 malleus 0 hammer 0 002 @ 05277941 n 0000 #p 05324888 n 0000 | the ossicle attached to the eardrum -05326060 08 n 01 lamella 0 002 @ 05426243 n 0000 #p 05269901 n 0000 | a thin membrane that is one of the calcified layers that form bones -05326200 08 n 01 lens_capsule 0 002 @ 05317191 n 0000 #p 05320362 n 0000 | a tenuous mesoblastic membrane surrounding the lens of the eye -05326340 08 n 02 incus 0 anvil 0 002 @ 05277941 n 0000 #p 05324888 n 0000 | the ossicle between the malleus and the stapes -05326465 08 n 02 stapes 0 stirrup 0 002 @ 05277941 n 0000 #p 05324888 n 0000 | the stirrup-shaped ossicle that transmits sound from the incus to the cochlea -05326624 08 n 01 cochlea 0 005 @ 05246511 n 0000 #p 05321307 n 0000 %p 05286272 n 0000 %p 05322735 n 0000 %p 05322855 n 0000 | the snail-shaped tube (in the inner ear coiled around the modiolus) where sound vibrations are converted into nerve impulses by the organ of Corti -05326900 08 n 02 meninx 0 meninges 0 007 @ 05426243 n 0000 + 02761251 a 0201 ~ 05482328 n 0000 ~ 05482529 n 0000 ~ 05482676 n 0000 ~ 05482800 n 0000 %p 05482922 n 0000 | a membrane (one of 3) that envelops the brain and spinal cord -05327134 08 n 02 mucous_membrane 0 mucosa 0 005 @ 05426243 n 0000 + 02867505 a 0201 ~ 05315095 n 0000 ~ 05519820 n 0000 ~ 05521934 n 0000 | mucus-secreting membrane lining all body cavities or passages that communicate with the exterior -05327373 08 n 01 periosteum 0 002 @ 05426243 n 0000 %p 05286412 n 0000 | a dense fibrous membrane covering the surface of bones (except at their extremities) and serving as an attachment for tendons and muscles; contains nerves and blood vessels that nourish the enclosed bone -05327652 08 n 01 perithelium 0 002 @ 05426243 n 0000 + 02775797 a 0101 | tissue layer around small blood vessels -05327767 08 n 04 gland 0 secretory_organ 0 secretor 0 secreter 0 008 @ 05297523 n 0000 + 00069295 v 0301 + 03069238 a 0101 ~ 01975117 n 0000 ~ 02468178 n 0000 ~ 05328867 n 0000 ~ 05329735 n 0000 %p 05516366 n 0000 | any of various organs that synthesize substances needed by the body and release it through ducts or directly into the bloodstream -05328115 08 n 01 oil_gland 0 003 @ 05328867 n 0000 ~ 02468017 n 0000 ~ 05328232 n 0000 | a gland that secretes oil -05328232 08 n 03 sebaceous_gland 0 sebaceous_follicle 0 glandulae_sebaceae 0 005 @ 05328115 n 0000 #p 05461179 n 0000 #p 05518257 n 0000 ~ 05328508 n 0000 ~ 05328695 n 0000 | a cutaneous gland that secretes sebum (usually into a hair follicle) for lubricating hair and skin -05328508 08 n 02 Meibomian_gland 0 tarsal_gland 0 001 @ 05328232 n 0000 | a long sebaceous gland that lubricates the eyelids; "bacterial infection of a Meibomian gland produces a stye" -05328695 08 n 01 Montgomery's_tubercle 0 001 @ 05328232 n 0000 | one of the sebaceous glands on the areolae of the breast that lubricate the breast during breast-feeding -05328867 08 n 03 exocrine_gland 0 exocrine 0 duct_gland 0 013 @ 05327767 n 0000 ~ 05328115 n 0000 ~ 05330659 n 0000 ~ 05331653 n 0000 ~ 05387167 n 0000 ~ 05523629 n 0000 ~ 05524062 n 0000 ~ 05527597 n 0000 ~ 05532795 n 0000 ~ 05532944 n 0000 ~ 05554189 n 0000 ~ 05555167 n 0000 ~ 05555294 n 0000 | a gland that secretes externally through a duct -05329215 08 n 04 digestive_system 0 gastrointestinal_system 0 systema_alimentarium 0 systema_digestorium 0 008 @ 05237227 n 0000 #p 05216365 n 0000 %p 05385534 n 0000 %p 05387167 n 0000 %p 05405946 n 0000 %p 05532225 n 0000 %p 05532795 n 0000 %p 05532944 n 0000 | the system that makes food absorbable into the body -05329533 08 n 01 endocrine_system 0 003 @ 05237227 n 0000 #p 05216365 n 0000 %p 05329735 n 0000 | the system of glands that produce endocrine secretions that help to control bodily metabolic activity -05329735 08 n 03 endocrine_gland 0 endocrine 1 ductless_gland 0 019 @ 05327767 n 0000 #p 05329533 n 0000 + 02915055 a 0202 ~ 05330244 n 0000 ~ 05330365 n 0000 ~ 05331171 n 0000 ~ 05331404 n 0000 ~ 05332569 n 0000 ~ 05483890 n 0000 ~ 05484355 n 0000 ~ 05484573 n 0000 ~ 05484711 n 0000 ~ 05484862 n 0000 ~ 05485098 n 0000 ~ 05485314 n 0000 ~ 05490983 n 0000 ~ 05491308 n 0000 ~ 05518614 n 0000 ~ 05524430 n 0000 | any of the glands of the endocrine system that secrete hormones directly into the bloodstream -05330244 08 n 02 thyroid_gland 0 thyroid 0 002 @ 05329735 n 0000 + 02981329 a 0202 | located near the base of the neck -05330365 08 n 02 parathyroid_gland 0 parathyroid 0 001 @ 05329735 n 0000 | any one of four endocrine glands situated above or within the thyroid gland -05330518 08 n 01 sweat_duct 0 001 @ 05251537 n 0000 | a small duct that conveys sweat from a sudoriferous gland to the surface of the skin -05330659 08 n 02 sweat_gland 0 sudoriferous_gland 0 004 @ 05328867 n 0000 #p 05238282 n 0000 ~ 05330848 n 0000 ~ 05331035 n 0000 | any of the glands in the skin that secrete perspiration -05330848 08 n 01 apocrine_gland 0 001 @ 05330659 n 0000 | a large sweat gland that produces both a fluid and an apocrine secretion; in human beings located in hairy regions of the body -05331035 08 n 01 eccrine_gland 0 001 @ 05330659 n 0000 | a small sweat gland that produces only a fluid; restricted to the human skin -05331171 08 n 03 adrenal_gland 0 adrenal 0 suprarenal_gland 0 005 @ 05329735 n 0000 #p 05332802 n 0000 + 02604343 a 0201 %p 05490983 n 0000 %p 05491308 n 0000 | either of a pair of complex endocrine glands situated near the kidney -05331404 08 n 02 prostate_gland 0 prostate 0 003 @ 05329735 n 0000 #p 05513807 n 0000 + 02785279 a 0202 | a firm partly muscular chestnut sized gland in males at the neck of the urethra; produces a viscid secretion that is the fluid part of semen -05331653 08 n 03 lacrimal_gland 0 lachrymal_gland 0 tear_gland 0 002 @ 05328867 n 0000 #p 05405554 n 0000 | any of the glands in the eyes that secrete tears -05331812 08 n 03 lacrimal_duct 0 lachrymal_duct 0 tear_duct 0 002 @ 05250659 n 0000 #p 05405554 n 0000 | any of several small ducts that carry tears from the lacrimal glands -05331988 08 n 03 lacrimal_sac 0 tear_sac 0 dacryocyst 0 002 @ 05517578 n 0000 #p 05405554 n 0000 | either of the two dilated ends of the lacrimal ducts at the nasal ends of the eyes that fill with tears secreted by the lacrimal glands -05332225 08 n 01 lacrimal_bone 0 002 @ 05269901 n 0000 #p 05285275 n 0000 | small fragile bone making up part of the front inner walls of each eye socket and providing room for the passage of the lacrimal ducts -05332438 08 n 01 nasolacrimal_duct 0 001 @ 05250659 n 0000 | a duct that carries tears from the lacrimal sac to the nasal cavity -05332569 08 n 02 thymus_gland 0 thymus 0 003 @ 05329735 n 0000 #p 05546540 n 0000 #p 05460870 n 0000 | a ductless glandular organ at the base of the neck that produces lymphocytes and aids in producing immunity; atrophies with age -05332802 08 n 01 kidney 0 012 @ 05333259 n 0000 #p 05511061 n 0000 %p 05247178 n 0000 %p 05331171 n 0000 %p 05337178 n 0000 %p 05354381 n 0000 %p 05358036 n 0000 %p 05379247 n 0000 %p 05423882 n 0000 %p 05424199 n 0000 %p 05491154 n 0000 %p 05596442 n 0000 | either of two bean-shaped excretory organs that filter wastes (especially urea) from the blood and excrete them and water in urine; "urine passes out of the kidney through ureters to the bladder" -05333259 08 n 02 excretory_organ 0 urinary_organ 0 004 @ 05298729 n 0000 #p 05509452 n 0000 ~ 01458509 n 0000 ~ 05332802 n 0000 | an organ that separates waste substances from the blood and discharges them -05333467 08 n 02 spleen 0 lien 0 007 @ 05287882 n 0000 #p 05396366 n 0000 + 02801156 a 0203 + 02801156 a 0101 + 02801156 a 0102 %p 05350061 n 0000 %p 05380822 n 0000 | a large dark-red oval organ on the left side of the body between the stomach and the diaphragm; produces cells involved in immune responses -05333777 08 n 03 artery 0 arteria 0 arterial_blood_vessel 0 078 @ 05417975 n 0000 + 02641856 a 0101 ~ 05335310 n 0000 ~ 05335850 n 0000 ~ 05335971 n 0000 ~ 05336893 n 0000 ~ 05337055 n 0000 ~ 05337178 n 0000 ~ 05337301 n 0000 ~ 05337485 n 0000 ~ 05337663 n 0000 ~ 05337855 n 0000 ~ 05338025 n 0000 ~ 05338166 n 0000 ~ 05338410 n 0000 ~ 05338614 n 0000 ~ 05338847 n 0000 ~ 05339047 n 0000 ~ 05339168 n 0000 ~ 05339357 n 0000 ~ 05340317 n 0000 ~ 05340599 n 0000 ~ 05340795 n 0000 ~ 05341206 n 0000 ~ 05341920 n 0000 ~ 05342070 n 0000 ~ 05342214 n 0000 ~ 05342374 n 0000 ~ 05342499 n 0000 ~ 05343408 n 0000 ~ 05343542 n 0000 ~ 05343718 n 0000 ~ 05344350 n 0000 ~ 05344514 n 0000 ~ 05344697 n 0000 ~ 05344848 n 0000 ~ 05345247 n 0000 ~ 05345421 n 0000 ~ 05345581 n 0000 ~ 05346406 n 0000 ~ 05346585 n 0000 ~ 05346714 n 0000 ~ 05346892 n 0000 ~ 05347146 n 0000 ~ 05347871 n 0000 ~ 05348054 n 0000 ~ 05348269 n 0000 ~ 05348540 n 0000 ~ 05348698 n 0000 ~ 05348884 n 0000 ~ 05349445 n 0000 ~ 05349659 n 0000 ~ 05349906 n 0000 ~ 05350061 n 0000 ~ 05350256 n 0000 ~ 05350453 n 0000 ~ 05350679 n 0000 ~ 05351058 n 0000 ~ 05351746 n 0000 ~ 05352291 n 0000 ~ 05352433 n 0000 ~ 05352601 n 0000 ~ 05352754 n 0000 ~ 05352896 n 0000 ~ 05353070 n 0000 ~ 05353241 n 0000 ~ 05353364 n 0000 ~ 05353507 n 0000 ~ 05353683 n 0000 ~ 05353819 n 0000 ~ 05354238 n 0000 ~ 05354381 n 0000 ~ 05354580 n 0000 ~ 05355527 n 0000 ~ 05355706 n 0000 ~ 05355890 n 0000 ~ 05356083 n 0000 ~ 05356291 n 0000 | a blood vessel that carries blood from the heart to the body -05335310 08 n 02 alveolar_artery 0 arteria_alveolaris 0 004 @ 05333777 n 0000 #p 05310351 n 0000 ~ 05335515 n 0000 ~ 05335700 n 0000 | a branch of the maxillary artery that supplies the alveolar process -05335515 08 n 02 inferior_alveolar_artery 0 arteria_alveolaris_inferior 0 001 @ 05335310 n 0000 | the alveolar artery that goes through the mandibular canal to supply the lower teeth -05335700 08 n 02 superior_alveolar_artery 0 arteria_alveolaris_superior 0 001 @ 05335310 n 0000 | the alveolar artery that supplies the upper teeth -05335850 08 n 02 angular_artery 0 arteria_angularis 0 001 @ 05333777 n 0000 | the terminal branch of the facial artery -05335971 08 n 01 aorta 0 008 @ 05333777 n 0000 + 02631812 a 0102 + 02631812 a 0101 ~ 05336246 n 0000 ~ 05336377 n 0000 ~ 05336487 n 0000 ~ 05336635 n 0000 ~ 05336748 n 0000 | the large trunk artery that carries blood from the left ventricle of the heart to branch arteries -05336246 08 n 01 ascending_aorta 0 001 @ 05335971 n 0000 | the ascending part of the aorta as it emerges from the left ventricle -05336377 08 n 01 aortic_arch 0 001 @ 05335971 n 0000 | the part of the aorta that arches and turns downward -05336487 08 n 01 descending_aorta 0 001 @ 05335971 n 0000 | the descending part of the aorta that branches into the thoracic and abdominal aortae -05336635 08 n 01 abdominal_aorta 0 002 @ 05335971 n 0000 #p 05556943 n 0000 | a branch of the descending aorta -05336748 08 n 01 thoracic_aorta 0 002 @ 05335971 n 0000 #p 05552607 n 0000 | a branch of the descending aorta; divides into the iliac arteries -05336893 08 n 02 appendicular_artery 0 arteria_appendicularis 0 001 @ 05333777 n 0000 | the branch of the ileocolic artery that supplies the vermiform appendix -05337055 08 n 02 arcuate_artery 0 arteria_arcuata 0 002 @ 05333777 n 0000 #p 05563266 n 0000 | curved artery in the foot -05337178 08 n 01 arcuate_artery_of_the_kidney 0 002 @ 05333777 n 0000 #p 05332802 n 0000 | curved arteries of the kidney -05337301 08 n 03 arteriole 0 arteriola 0 capillary_artery 0 003 @ 05333777 n 0000 + 02948640 a 0201 + 02948640 a 0101 | one of the small thin-walled arteries that end in capillaries -05337485 08 n 02 artery_of_the_penis_bulb 0 arteria_bulbi_penis 0 001 @ 05333777 n 0000 | a branch of the internal pudendal artery of males that supplies the bulb of the penis -05337663 08 n 02 artery_of_the_vestibule_bulb 0 arteria_bulbi_vestibuli 0 001 @ 05333777 n 0000 | a branch of the internal pudendal artery in females that supplies the bulb of the vestibule -05337855 08 n 02 ascending_artery 0 arteria_ascendens 0 002 @ 05333777 n 0000 #p 05537060 n 0000 | the branch of the ileocolic artery that supplies the ascending colon -05338025 08 n 02 auricular_artery 0 arteria_auricularis 0 002 @ 05333777 n 0000 #p 05320899 n 0000 | artery that supplies blood to the ear -05338166 08 n 02 axillary_artery 0 arteria_axillaris 0 002 @ 05333777 n 0000 #p 05549576 n 0000 | the part of the main artery of the arm that lies in the armpit and is continuous with the subclavian artery above and the brachial artery below -05338410 08 n 02 basilar_artery 0 arteria_basilaris 0 002 @ 05333777 n 0000 #p 05538625 n 0000 | an unpaired artery; supplies the pons and cerebellum and the back part of the cerebrum and the inner ear -05338614 08 n 02 brachial_artery 0 arteria_brachialis 0 002 @ 05333777 n 0000 #p 05563770 n 0000 | the main artery of the upper arm; a continuation of the axillary artery; bifurcates into the radial and ulnar arteries at the elbow -05338847 08 n 02 radial_artery 0 arteria_radialis 0 001 @ 05333777 n 0000 | branch of the brachial artery beginning below the elbow and extending down the forearm around the wrist and into the palm -05339047 08 n 01 bronchial_artery 0 002 @ 05333777 n 0000 #p 05387544 n 0000 | arteries that accompany the bronchioles -05339168 08 n 02 buccal_artery 0 arteria_buccalis 0 002 @ 05333777 n 0000 #p 05602835 n 0000 | a branch of the maxillary artery that supplies blood to the buccinator muscle and the cheek -05339357 08 n 02 carotid_artery 0 arteria_carotis 0 005 @ 05333777 n 0000 #p 05546540 n 0000 ~ 05339583 n 0000 ~ 05339751 n 0000 ~ 05339946 n 0000 | either of two major arteries of the neck and head; branches from the aorta -05339583 08 n 02 common_carotid_artery 0 common_carotid 0 001 @ 05339357 n 0000 | runs upward in the neck and divides into the external and internal carotid arteries -05339751 08 n 02 external_carotid_artery 0 external_carotid 0 001 @ 05339357 n 0000 | the branch of the carotid artery that supplies blood to the face and tongue and external parts of the head -05339946 08 n 01 internal_carotid_artery 0 001 @ 05339357 n 0000 | the branch of the carotid artery that supplies blood to the brain and eyes and internal parts of the head -05340121 08 n 01 carotid_body 0 001 @ 05300231 n 0000 | a chemoreceptor located near the bifurcations of the carotid arteries; monitors oxygen content of the blood and helps control respiration -05340317 08 n 04 celiac_trunk 0 celiac_artery 0 truncus_celiacus 0 arteria_celiaca 0 001 @ 05333777 n 0000 | an artery that originates from the abdominal aorta just below the diaphragm and branches into the left gastric artery and the common hepatic artery and the splenic artery -05340599 08 n 02 central_artery_of_the_retina 0 arteria_centralis_retinae 0 002 #p 05311054 n 0000 @ 05333777 n 0000 | a branch of the ophthalmic artery; enters the eyeball with the optic nerve -05340795 08 n 02 cerebellar_artery 0 arteria_cerebelli 0 004 @ 05333777 n 0000 #p 05485554 n 0000 ~ 05340972 n 0000 ~ 05341089 n 0000 | an artery that supplies the cerebellum -05340972 08 n 01 inferior_cerebellar_artery 0 001 @ 05340795 n 0000 | the inferior branch of the cerebellar artery -05341089 08 n 01 superior_cerebellar_artery 0 001 @ 05340795 n 0000 | the superior branch of the cerebellar artery -05341206 08 n 02 cerebral_artery 0 arteria_cerebri 0 005 @ 05333777 n 0000 ~ 05341416 n 0000 ~ 05341641 n 0000 ~ 05341789 n 0000 ~ 05354744 n 0000 | any of the arteries supplying blood to the cerebral cortex -05341416 08 n 01 anterior_cerebral_artery 0 001 @ 05341206 n 0000 | one of two branches of the internal carotid artery; divides into two branches that serve (1) the thalamus and (2) parts of the frontal and parietal cortex -05341641 08 n 01 middle_cerebral_artery 0 001 @ 05341206 n 0000 | one of two branches of the internal carotid artery; divides into three branches -05341789 08 n 01 posterior_cerebral_artery 0 001 @ 05341206 n 0000 | arises from the basilar artery; divides into three branches -05341920 08 n 02 cervical_artery 0 areteria_cervicalis 0 002 @ 05333777 n 0000 #p 05546540 n 0000 | an artery that supplies the muscles of the neck -05342070 08 n 02 choroidal_artery 0 arteria_choroidea 0 002 @ 05333777 n 0000 #p 05506648 n 0000 | an artery that supplies the choroid plexus -05342214 08 n 02 ciliary_artery 0 arteria_ciliaris 0 002 @ 05333777 n 0000 #p 05311054 n 0000 | one of several arteries supplying the choroid coat of the eye -05342374 08 n 01 circle_of_Willis 0 002 @ 05333777 n 0000 #p 05481095 n 0000 | a ring of arteries at the base of the brain -05342499 08 n 01 circumflex_artery 0 005 @ 05333777 n 0000 ~ 05342673 n 0000 ~ 05342854 n 0000 ~ 05343037 n 0000 ~ 05343218 n 0000 | any of several paired curving arteries -05342673 08 n 02 circumflex_artery_of_the_thigh 0 arteria_circumflexa_femoris 0 002 @ 05342499 n 0000 #p 05562249 n 0000 | an artery that supplies the hip joint and thigh muscles -05342854 08 n 02 circumflex_humeral_artery 0 arteria_circumflexa_humeri 0 002 @ 05342499 n 0000 #p 05549061 n 0000 | an artery that supplies the shoulder joint and shoulder muscles -05343037 08 n 02 circumflex_iliac_artery 0 arteria_circumflexa_ilium 0 001 @ 05342499 n 0000 | an artery that supplies the lower abdominal walls and skin and the sartorius muscle -05343218 08 n 02 circumflex_scapular_artery 0 arteria_circumflexa_scapulae 0 002 @ 05342499 n 0000 #p 05549061 n 0000 | an artery that serves the muscles of the shoulder and scapular area -05343408 08 n 02 colic_artery 0 arteria_colica 0 002 @ 05333777 n 0000 #p 05556943 n 0000 | arteries that supply blood to the colon -05343542 08 n 02 communicating_artery 0 arteria_communicans 0 002 @ 05333777 n 0000 #p 05481095 n 0000 | any of three arteries in the brain that make up the circle of Willis -05343718 08 n 02 coronary_artery 0 arteria_coronaria 0 005 @ 05333777 n 0000 #p 05388805 n 0000 ~ 05343941 n 0000 ~ 05344073 n 0000 ~ 05344213 n 0000 | the artery that branches from the aorta to supply blood to the heart -05343941 08 n 01 atrial_artery 0 001 @ 05343718 n 0000 | the branch of the coronary artery that supplies the muscles of the atria -05344073 08 n 01 right_coronary_artery 0 001 @ 05343718 n 0000 | arises from the right aortic sinus; supplies the right side of the heart -05344213 08 n 01 left_coronary_artery 0 001 @ 05343718 n 0000 | arises from the left aortic sinus; supplies the left side of the heart -05344350 08 n 02 cystic_artery 0 arteria_cystica 0 001 @ 05333777 n 0000 | a branch of the hepatic artery; supplies the gall bladder and the surface of the liver -05344514 08 n 02 digital_arteries 0 arteria_digitalis 0 003 @ 05333777 n 0000 #p 05564590 n 0000 #p 05563266 n 0000 | arteries in the hand and foot that supply the fingers and toes -05344697 08 n 02 epigastric_artery 0 arteria_epigastrica 0 001 @ 05333777 n 0000 | one of three arteries supplying the anterior walls of the abdomen -05344848 08 n 02 ethmoidal_artery 0 arteria_ethmoidalis 0 002 @ 05333777 n 0000 #p 05598147 n 0000 | a branch of the ophthalmic artery supplying structures in and around the nasal capsule -05345038 08 n 03 facial_artery 0 arteria_facialis 0 external_maxillary_artery 0 001 @ 05350679 n 0000 | an artery that originates in the external carotid and gives off branches that supply the neck and face -05345247 08 n 02 femoral_artery 0 arteria_femoralis 0 002 @ 05333777 n 0000 #p 05562249 n 0000 | the chief artery of the thigh; a continuation of the external iliac artery -05345421 08 n 02 popliteal_artery 0 arteria_poplitea 0 001 @ 05333777 n 0000 | a continuation of the femoral artery that branches to supply the legs and feet -05345581 08 n 02 gastric_artery 0 arteria_gastrica 0 005 @ 05333777 n 0000 #p 05395690 n 0000 ~ 05345783 n 0000 ~ 05345978 n 0000 ~ 05346191 n 0000 | the arteries that supply the walls of the stomach -05345783 08 n 02 right_gastric_artery 0 ateria_gastrica_dextra 0 001 @ 05345581 n 0000 | a branch of the hepatic artery that supplies the pyloric portion of the stomach on the lesser curvature -05345978 08 n 02 left_gastric_artery 0 arteria_gastrica_sinistra 0 001 @ 05345581 n 0000 | a branch of the celiac artery that supplies the lesser curvature of the stomach and the abdominal part of the esophagus -05346191 08 n 03 short_gastric_artery 0 arteria_gastrica_breves 0 vasa_brevis 0 001 @ 05345581 n 0000 | several small arteries branching off of the splenic artery and going to the greater curvature of the stomach -05346406 08 n 02 gluteal_artery 0 arteria_glutes 0 002 @ 05333777 n 0000 #p 05556325 n 0000 | branches of the internal iliac artery that supply the hip joint and gluteal region -05346585 08 n 02 hepatic_artery 0 arteria_hepatica 0 002 @ 05333777 n 0000 #p 05385534 n 0000 | arteries that supply the liver -05346714 08 n 03 ileal_artery 0 intestinal_artery 0 arteria_ileum 0 002 @ 05333777 n 0000 #p 05534712 n 0000 | branch of the superior mesenteric artery that supplies the ileum -05346892 08 n 02 ileocolic_artery 0 arteria_ileocolica 0 001 @ 05333777 n 0000 | an artery that originates from the superior mesenteric artery and supplies the terminal part of the ileum and the cecum and the vermiform appendix and the ascending colon -05347146 08 n 02 iliac_artery 0 arteria_iliaca 0 005 @ 05333777 n 0000 #p 05275315 n 0000 ~ 05347359 n 0000 ~ 05347465 n 0000 ~ 05347631 n 0000 | one of the large arteries supplying blood to the pelvis and legs -05347359 08 n 01 common_iliac_artery 0 001 @ 05347146 n 0000 | terminal branches of the abdominal aorta -05347465 08 n 01 external_iliac_artery 0 001 @ 05347146 n 0000 | the outer branch of the common iliac artery on either side of the body; becomes the femoral artery -05347631 08 n 02 internal_iliac_artery 0 hypogastric_artery 0 001 @ 05347146 n 0000 | the inner branch of the common iliac artery on either side of the body; divides into several branches that supply blood to the pelvic and gluteal areas -05347871 08 n 02 iliolumbar_artery 0 arteria_iliolumbalis 0 001 @ 05333777 n 0000 | an artery that originates in the internal iliac artery and supplies the pelvic muscles and bones -05348054 08 n 02 infraorbital_artery 0 arteria_infraorbitalis 0 001 @ 05333777 n 0000 | an artery that originates from the maxillary artery and supplies structures below the orbit (from lower eyelid to upper lip) -05348269 08 n 01 innominate_artery 0 001 @ 05333777 n 0000 | a large artery arising from the arch of the aorta and divides into the right subclavian artery and the right common carotid artery; supplies the right side of the neck and head and the right shoulder and arm -05348540 08 n 02 intercostal_artery 0 arteria_intercostalis 0 001 @ 05333777 n 0000 | several arteries and supplying the intercostal spaces of the rib cage -05348698 08 n 02 jejunal_artery 0 intestinal_artery 1 002 @ 05333777 n 0000 #p 05534712 n 0000 | an artery that is a branch of the superior mesenteric artery that supplies the jejunum -05348884 08 n 02 labial_artery 0 arteria_labialis 0 004 @ 05333777 n 0000 #p 05305806 n 0000 ~ 05349101 n 0000 ~ 05349273 n 0000 | an artery that is a branch of the facial artery that supplies the lips of the mouth -05349101 08 n 02 inferior_labial_artery 0 arteria_labialis_inferior 0 001 @ 05348884 n 0000 | an artery that is a branch of the facial artery that supplies the lower lip -05349273 08 n 02 superior_labial_artery 0 arteria_labialis_superior 0 001 @ 05348884 n 0000 | an artery that is a branch of the facial artery that supplies the upper lip -05349445 08 n 03 labyrinthine_artery 0 artery_of_the_labyrinth 0 internal_auditory_artery 0 002 @ 05333777 n 0000 #p 05321307 n 0000 | an artery that is a branch of the basilar artery that supplies the labyrinth -05349659 08 n 02 lacrimal_artery 0 arteria_lacrimalis 0 002 @ 05333777 n 0000 #p 05311054 n 0000 | an artery that originates from the ophthalmic artery and supplies the lacrimal gland and rectal eye muscles and the upper eyelid and the forehead -05349906 08 n 02 laryngeal_artery 0 arteria_laryngea 0 002 @ 05333777 n 0000 #p 05529729 n 0000 | either of two arteries that supply blood to the larynx -05350061 08 n 03 lienal_artery 0 splenic_artery 0 arteria_lienalis 0 002 @ 05333777 n 0000 #p 05333467 n 0000 | an artery that originates from the celiac trunk and supplies blood to the spleen -05350256 08 n 02 lingual_artery 0 arteria_lingualis 0 002 @ 05333777 n 0000 #p 05301908 n 0000 | an artery originating from the external carotid artery and supplying the under side of the tongue -05350453 08 n 02 lumbar_artery 0 arteria_lumbalis 0 001 @ 05333777 n 0000 | one of four or five pairs of arteries that originate in the abdominal aorta and supply the lumbar vertebrae and the back muscles and abdominal wall -05350679 08 n 02 maxillary_artery 0 arteria_maxillaris 0 003 @ 05333777 n 0000 ~ 05345038 n 0000 ~ 05350900 n 0000 | either of two arteries branching from the external carotid artery and supplying structure of the face -05350900 08 n 01 internal_maxillary_artery 0 001 @ 05350679 n 0000 | the maxillary artery that supplies deep structure of the face and some of the meninges -05351058 08 n 02 meningeal_artery 0 arteria_meningea 0 004 @ 05333777 n 0000 ~ 05351278 n 0000 ~ 05351442 n 0000 ~ 05351572 n 0000 | any of three arteries supplying the meninges of the brain and neighboring structures -05351278 08 n 01 anterior_meningeal_artery 0 001 @ 05351058 n 0000 | branch of the anterior ethmoidal artery that supplies meninges in the anterior cranial fossa -05351442 08 n 01 middle_meningeal_artery 0 001 @ 05351058 n 0000 | branch of the maxillary artery; its branches supply meninges -05351572 08 n 01 posterior_meningeal_artery 0 001 @ 05351058 n 0000 | branch of the ascending pharyngeal artery that supplies the dura mater of the posterior cranial fossa -05351746 08 n 02 mesenteric_artery 0 arteria_mesenterica 0 003 @ 05333777 n 0000 ~ 05351968 n 0000 ~ 05352112 n 0000 | one of two branches of the aorta that pass between the two layers of the mesentery to the intestines -05351968 08 n 01 inferior_mesenteric_artery 0 001 @ 05351746 n 0000 | arises near the lower end of the aorta and supplies the large intestine -05352112 08 n 01 superior_mesenteric_artery 0 001 @ 05351746 n 0000 | originates from the upper part of the aorta that supplies the small intestines and the cecum and the colon -05352291 08 n 02 metacarpal_artery 0 arteria_metacarpea 0 002 @ 05333777 n 0000 #p 05564590 n 0000 | dorsal and palmar arteries of the hand -05352433 08 n 02 metatarsal_artery 0 arteria_metatarsea 0 002 @ 05333777 n 0000 #p 05563266 n 0000 | dorsal and plantar arteries to the metatarsal region of the foot -05352601 08 n 02 musculophrenic_artery 0 arteria_musculophrenica 0 001 @ 05333777 n 0000 | an artery that supplies the abdomen and intercostal muscles -05352754 08 n 02 nutrient_artery 0 arteria_nutricia 0 001 @ 05333777 n 0000 | an artery that supplies the medullary cavity of the long bone -05352896 08 n 02 ophthalmic_artery 0 arteria_ophthalmica 0 001 @ 05333777 n 0000 | a branch of the internal carotid artery that supplies the eye and neighboring structures -05353070 08 n 02 ovarian_artery 0 arteria_ovarica 0 002 @ 05333777 n 0000 #p 05515287 n 0000 | the artery that branches from the aorta and supplies blood to the ovaries -05353241 08 n 02 palatine_artery 0 arteria_palatina 0 001 @ 05333777 n 0000 | one of several arteries supplying the face -05353364 08 n 02 pancreatic_artery 0 arteria_pancreatica 0 001 @ 05333777 n 0000 | a branch of the splenic artery that supplies the pancreas -05353507 08 n 02 perineal_artery 0 arteria_perinealis 0 001 @ 05333777 n 0000 | a branch of the internal pudendal artery that supplies superficial structures of the perineum -05353683 08 n 02 pudendal_artery 0 arteria_pudenda 0 001 @ 05333777 n 0000 | arteries supplying the external genital organs of humans -05353819 08 n 02 pulmonary_artery 0 arteria_pulmonalis 0 002 @ 05333777 n 0000 ~ 05354026 n 0000 | one of two arteries (branches of the pulmonary trunk) that carry venous blood from the heart to the lungs -05354026 08 n 02 pulmonary_trunk 0 truncus_pulmonalis 0 001 @ 05353819 n 0000 | the artery that carries venous blood from the right ventricle of the heart and divides into the right and left pulmonary arteries -05354238 08 n 02 rectal_artery 0 arteria_rectalis 0 002 @ 05333777 n 0000 #p 05537806 n 0000 | one of the arteries supplying the rectal area -05354381 08 n 02 renal_artery 0 arteria_renalis 0 002 @ 05333777 n 0000 #p 05332802 n 0000 | an artery originating from the abdominal aorta and supplying the kidneys and adrenal glands and ureters -05354580 08 n 02 subclavian_artery 0 arteria_subclavia 0 002 @ 05333777 n 0000 #p 05274105 n 0000 | either of two arteries that supply blood to the neck and arms -05354744 08 n 01 temporal_artery 0 004 @ 05341206 n 0000 ~ 05354955 n 0000 ~ 05355146 n 0000 ~ 05355341 n 0000 | any of the three arteries on either side of the brain supplying the cortex of the temporal lobe -05354955 08 n 02 anterior_temporal_artery 0 arteria_temporalis_anterior 0 001 @ 05354744 n 0000 | temporal artery that goes to the anterior part of the cerebral cortex of the temporal lobe -05355146 08 n 02 intermediate_temporal_artery 0 arteria_temporalis_intermedia 0 001 @ 05354744 n 0000 | temporal artery that goes to the middle part of the cerebral cortex of the temporal lobe -05355341 08 n 02 posterior_temporal_artery 0 arteria_temporalis_posterior 0 001 @ 05354744 n 0000 | temporal artery that supplies the posterior part of the cortex of the temporal lobe -05355527 08 n 03 testicular_artery 0 internal_spermatic_artery 0 arteria_testicularis 0 002 @ 05333777 n 0000 #p 05524615 n 0000 | a branch of the aorta supplying the testicles -05355706 08 n 02 ulnar_artery 0 arteria_ulnaris 0 001 @ 05333777 n 0000 | large artery that branches from the brachial artery to supply the muscles of the forearm and wrist and hand -05355890 08 n 02 uterine_artery 0 arteria_uterina 0 002 @ 05333777 n 0000 #p 05519085 n 0000 | a branch of the internal iliac artery that supplies the uterus and the upper part of the vagina -05356083 08 n 02 vaginal_artery 0 arteria_vaginalis 0 002 @ 05333777 n 0000 #p 05521111 n 0000 | a branch of the internal iliac that provides blood for the vagina and the base of the bladder and the rectum -05356291 08 n 02 vertebral_artery 0 arteria_vertebralis 0 001 @ 05333777 n 0000 | the first branch of the subclavian artery; divided into four parts -05356442 08 n 02 accessory_cephalic_vein 0 vena_cephalica_accessoria 0 002 @ 05418717 n 0000 #p 05564323 n 0000 | a vein that passes along the radial edge of the forearm and joins the cephalic vein near the elbow -05356657 08 n 03 accessory_hemiazygos_vein 0 accessory_hemiazygous_vein 0 vena_hemiazygos_accessoria 0 001 @ 05418717 n 0000 | a vein formed by the union of the 4th to 7th posterior intercostal veins; empties into the azygos vein -05356889 08 n 02 accessory_vertebral_vein 0 vena_vertebralis_accessoria 0 001 @ 05418717 n 0000 | a vein that accompanies the vertebral vein but passes through the foramen of the transverse process of the 7th cervical vertebra and empties into the brachiocephalic vein -05357160 08 n 02 accompanying_vein 0 vena_comitans 0 001 @ 05418717 n 0000 | a vein accompanying another structure; a vein may accompany an artery in such a way that the arterial pulses aid venous return -05357366 08 n 02 anastomotic_vein 0 vena_anastomotica 0 001 @ 05418717 n 0000 | either of two communicating veins serving the brain -05357500 08 n 02 angular_vein 0 vena_angularis 0 001 @ 05418717 n 0000 | a short vein formed by the supraorbital vein and the supratrochlear vein and continuing as the facial vein -05357682 08 n 02 anterior_vertebral_vein 0 vena_vertebralis_anterior 0 001 @ 05418717 n 0000 | a vein that accompanies the ascending cervical artery and opens into the vertebral vein -05357867 08 n 02 appendicular_vein 0 vena_appendicularis 0 001 @ 05418717 n 0000 | a vein that accompanies the appendicular artery and empties into the ileocolic vein -05358036 08 n 02 arcuate_vein_of_the_kidney 0 vena_arcuata_renis 0 002 @ 05418717 n 0000 #p 05332802 n 0000 | veins that receive blood from interlobular veins of kidney and rectal venules -05358226 08 n 02 auricular_vein 0 vena_auricularis 0 001 @ 05418717 n 0000 | one of two veins serving the ear region -05358345 08 n 02 axillary_vein 0 vena_axillaris 0 001 @ 05418717 n 0000 | a continuation of the basilic vein and brachial vein that becomes the subclavian vein -05358507 08 n 03 azygos_vein 0 azygous_vein 0 vena_azygos 0 001 @ 05418717 n 0000 | one of a system of veins that drain the thoracic and abdominal walls; arises as a continuation of the right ascending lumbar vein and terminates in the superior vena cava -05358764 08 n 02 basal_vein 0 vena_basalis 0 001 @ 05418717 n 0000 | a large vein passing along the medial surface of the temporal lobe and emptying into the great cerebral vein -05358944 08 n 02 basilic_vein 0 vena_basilica 0 002 @ 05418717 n 0000 #p 05564323 n 0000 | a vein that drains the back of the hand and forearm and empties into the axillary vein -05359124 08 n 02 basivertebral_vein 0 vena_basivertebralis 0 001 @ 05418717 n 0000 | one of a number of veins draining the spongy substance of the vertebrae and emptying into the anterior internal vertebral venous plexus -05359347 08 n 02 brachial_vein 0 vena_brachialis 0 001 @ 05418717 n 0000 | two veins in either arm that accompany the brachial artery and empty into the axillary vein -05359516 08 n 03 brachiocephalic_vein 0 innominate_vein 0 vena_brachiocephalica 0 001 @ 05418717 n 0000 | veins formed by the union of the internal jugular and subclavian veins -05359695 08 n 02 bronchial_vein 0 vena_bronchialis 0 001 @ 05418717 n 0000 | veins serving the bronchi; empty into the azygos vein -05359828 08 n 01 cardinal_vein 0 004 @ 05418717 n 0000 ~ 05360042 n 0000 ~ 05360170 n 0000 ~ 05360297 n 0000 | any of the major venous channels in primitive adult vertebrates and in embryos of higher vertebrates -05360042 08 n 01 anterior_cardinal_vein 0 001 @ 05359828 n 0000 | a major drainage channel from the cephalic part of the body -05360170 08 n 01 posterior_cardinal_vein 0 001 @ 05359828 n 0000 | a major drainage channel from the caudal part of the body -05360297 08 n 01 common_cardinal_vein 0 001 @ 05359828 n 0000 | the major return channels to the heart; formed by anastomosis of the anterior and posterior cardinal veins -05360470 08 n 02 central_veins_of_liver 0 venae_centrales_hepatis 0 001 @ 05418717 n 0000 | terminal branches of the hepatic veins that lie in the hepatic lobules and receive blood from the liver sinusoids -05360678 08 n 02 central_vein_of_retina 0 vena_centrales_retinae 0 001 @ 05418717 n 0000 | vein formed by the union of the retinal veins; accompanies central arteries of the retina in the optic nerve -05360880 08 n 02 central_vein_of_suprarenal_gland 0 vena_centralis_glandulae_suprarenalis 0 001 @ 05418717 n 0000 | a single draining vein; on the right it empties into the inferior vena cava; on the left it empties into the left renal vein -05361123 08 n 02 cephalic_vein 0 vena_cephalica 0 002 @ 05418717 n 0000 #p 05563770 n 0000 | a large vein of the arm that empties into the axillary vein -05361278 08 n 02 cerebellar_vein 0 vena_cerebellum 0 001 @ 05418717 n 0000 | the veins draining the cerebellum -05361391 08 n 02 cerebral_vein 0 vena_cerebri 0 007 @ 05418717 n 0000 ~ 05361640 n 0000 ~ 05362016 n 0000 ~ 05362197 n 0000 ~ 05362405 n 0000 ~ 05362593 n 0000 ~ 05363064 n 0000 | any of several veins serving the cerebral hemispheres of the brain -05361640 08 n 02 anterior_cerebral_vein 0 vena_cerebri_anterior 0 001 @ 05361391 n 0000 | accompanies the anterior cerebral artery and empties into the basal vein -05361805 08 n 02 anterior_facial_vein 0 vena_facialis_anterior 0 001 @ 05367341 n 0000 | a continuation of the angular vein; unites with the retromandibular vein before emptying into the internal jugular vein -05362016 08 n 02 great_cerebral_vein 0 vena_cerebri_magna 0 001 @ 05361391 n 0000 | a cerebral vein formed by the two internal cerebral veins and continuing into the sinus rectus -05362197 08 n 02 inferior_cerebral_vein 0 venae_cerebrum_inferior 0 001 @ 05361391 n 0000 | veins that drain the undersurface of the cerebral hemispheres and empty into the cavernous and transverse sinuses -05362405 08 n 02 internal_cerebral_vein 0 vena_cerebrum_internus 0 001 @ 05361391 n 0000 | two paired veins passing caudally near the midline and uniting to form the great cerebral vein -05362593 08 n 02 middle_cerebral_vein 0 vena_cerebri_media 0 003 @ 05361391 n 0000 ~ 05362745 n 0000 ~ 05362912 n 0000 | either of two cerebral veins -05362745 08 n 01 deep_middle_cerebral_vein 0 001 @ 05362593 n 0000 | accompanies the middle cerebral artery deep in the Sylvian fissure; empties into the basal vein -05362912 08 n 01 superficial_middle_cerebral_vein 0 001 @ 05362593 n 0000 | a large vein along the line of the Sylvian fissure to the cavernous sinus -05363064 08 n 02 superior_cerebral_vein 0 vena_cerebrum_superior 0 001 @ 05361391 n 0000 | a cerebral vein that drains the dorsal convexity of the cerebral hemisphere and empties into the cavernous sinus -05363270 08 n 03 cervical_vein 0 deep_cervical_vein 0 vena_cervicalis_profunda 0 001 @ 05418717 n 0000 | a vein that accompanies an artery of the same name -05363428 08 n 02 choroid_vein 0 vena_choroidea 0 001 @ 05418717 n 0000 | either of two veins serving the choroid coat of the eye -05363559 08 n 02 ciliary_veins 0 venae_ciliares 0 001 @ 05418717 n 0000 | small veins coming from the ciliary body -05363676 08 n 02 circumflex_vein 0 vena_circumflexa 0 003 @ 05418717 n 0000 ~ 05363868 n 0000 ~ 05364000 n 0000 | any of several curved parallel veins accompanying arteries of the same name -05363868 08 n 02 circumflex_iliac_vein 0 vena_circumflexa_ilium 0 001 @ 05363676 n 0000 | accompanies the artery of the same name -05364000 08 n 02 circumflex_femoral_vein 0 vena_circumflexus_femoris 0 001 @ 05363676 n 0000 | either of two veins that accompany arteries of the same name serving the hip and thigh -05364184 08 n 02 clitoral_vein 0 vena_clitoridis 0 004 @ 05418717 n 0000 ~ 05423319 n 0000 ~ 05423443 n 0000 ~ 05423595 n 0000 | veins that serve the clitoris -05364345 08 n 02 colic_vein 0 vena_colica 0 001 @ 05418717 n 0000 | vein serving the large intestine -05364448 08 n 01 common_facial_vein 0 001 @ 05418717 n 0000 | vein formed by union of facial vein and the retromandibular vein and emptying into the jugular vein -05364612 08 n 02 conjunctival_veins 0 venae_conjunctivales 0 001 @ 05418717 n 0000 | veins draining the conjunctiva -05364730 08 n 01 costoaxillary_vein 0 001 @ 05418717 n 0000 | one of several veins connecting intercostal veins with the lateral thoracic vein or the thoracoepigastric vein -05364905 08 n 02 cutaneous_vein 0 vena_cutanea 0 001 @ 05418717 n 0000 | one of a number of veins in the subcutaneous tissue that empty into deep veins -05365059 08 n 02 cystic_vein 0 vena_cystica 0 001 @ 05418717 n 0000 | vein that drains the gallbladder -05365164 08 n 02 digital_vein 0 vena_digitalis 0 001 @ 05418717 n 0000 | one of the veins serving the fingers or toes -05365284 08 n 02 diploic_vein 0 vena_diploica 0 001 @ 05418717 n 0000 | one of the veins serving the spongy part of the cranial bones -05365420 08 n 02 dorsal_scapular_vein 0 vena_scapularis_dorsalis 0 001 @ 05418717 n 0000 | vein that is a tributary of the subclavian vein or external jugular vein and accompanies the descending scapular artery -05365633 08 n 02 dorsal_root 0 dorsal_horn 0 002 @ 05475134 n 0000 #p 05569053 n 0000 | one of the two roots of a spinal nerve that passes dorsally to the spinal cord and that consists of sensory fibers -05365838 08 n 02 emissary_vein 0 vena_emissaria 0 001 @ 05418717 n 0000 | one of several connecting veins in the scalp and head that drain blood from sinuses in the dura mater to veins outside the skull -05366043 08 n 01 epigastric_vein 0 004 @ 05418717 n 0000 ~ 05366206 n 0000 ~ 05366341 n 0000 ~ 05366485 n 0000 | veins serving the anterior walls of the abdomen -05366206 08 n 02 inferior_epigastric_vein 0 vena_epigastrica_inferior 0 001 @ 05366043 n 0000 | empties into the external iliac vein -05366341 08 n 02 superficial_epigastric_vein 0 vena_epigastrica_superficialis 0 001 @ 05366043 n 0000 | empties into the great saphenous vein -05366485 08 n 02 superior_epigastric_veins 0 venae_epigastricae_superiores 0 001 @ 05366043 n 0000 | veins that accompany the superior epigastric artery -05366640 08 n 02 episcleral_veins 0 venae_episclerales 0 001 @ 05426087 n 0000 | small veins in the sclera near the corneal margin; empty into the anterior ciliary veins -05366812 08 n 03 esophageal_veins 0 oesophageal_veins 0 venae_esophageae 0 001 @ 05418717 n 0000 | small veins from the esophagus emptying into the brachiocephalic vein or the azygos veins -05367003 08 n 02 ethmoidal_vein 0 vena_ethmoidalis 0 001 @ 05418717 n 0000 | veins that drain the ethmoidal sinuses and empty into the superior ophthalmic vein -05367165 08 n 02 external_nasal_vein 0 vena_nasalis_externa 0 001 @ 05418717 n 0000 | one of the veins that drain the external nose and empty into the angular or facial vein -05367341 08 n 02 facial_vein 0 vena_facialis 0 004 @ 05418717 n 0000 #p 05600637 n 0000 ~ 05361805 n 0000 ~ 05379438 n 0000 | any of several veins draining the face -05367508 08 n 02 femoral_vein 0 vena_femoralis 0 002 @ 05418717 n 0000 #p 05562249 n 0000 | a vein that accompanies the femoral artery in the same sheath; a continuation of the popliteal vein; becomes the external iliac vein -05367735 08 n 02 gastric_vein 0 vena_gastrica 0 004 @ 05418717 n 0000 #p 05395690 n 0000 ~ 05372725 n 0000 ~ 05378850 n 0000 | one of several veins draining the stomach walls -05367912 08 n 03 gastroomental_vein 0 gastroepiploic_vein 0 vena_gastroomentalis 0 002 @ 05418717 n 0000 #p 05395690 n 0000 | one of two veins serving the great curvature of the stomach -05368100 08 n 02 genicular_vein 0 vena_genus 0 002 @ 05418717 n 0000 #p 05573602 n 0000 | veins that drain blood from structures around the knee; empty into the popliteal vein -05368278 08 n 01 glans 0 003 @ 05225602 n 0000 ~ 05368444 n 0000 ~ 05368594 n 0000 | a small rounded structure; especially that at the end of the penis or clitoris -05368444 08 n 01 glans_clitoridis 0 002 @ 05368278 n 0000 #p 05523420 n 0000 | small mass of erectile tissue at the end of the body of the clitoris -05368594 08 n 01 glans_penis 0 002 @ 05368278 n 0000 #p 05526384 n 0000 | the conical mass of erectile tissue that forms the head of the penis -05368739 08 n 02 gluteal_vein 0 vena_gluteus 0 001 @ 05418717 n 0000 | veins draining the gluteal muscles on either side of the body -05368874 08 n 03 hemizygos_vein 0 hemizygous_vein 0 vena_hemizygos 0 001 @ 05418717 n 0000 | a continuation of the left ascending lumbar vein; crosses the midline at the 8th vertebra and empties into the azygos vein -05369092 08 n 03 hemorrhoidal_vein 0 rectal_vein 0 vena_rectalis 0 001 @ 05418717 n 0000 | any of several veins draining the walls of the anal canal and rectum -05369254 08 n 02 hepatic_vein 0 vena_hepatica 0 002 @ 05418717 n 0000 #p 05385534 n 0000 | a vein that drains the liver; empties into the vena cava -05369404 08 n 02 hypogastric_vein 0 internal_iliac_vein 0 001 @ 05370125 n 0000 | a vein that unites with the external iliac vein to form the common iliac vein -05369566 08 n 02 ileocolic_vein 0 vena_ileocolica 0 001 @ 05418717 n 0000 | a vein that drains the end of the ileum and the appendix and the cecum and the lower part of the ascending colon -05369757 08 n 01 external_iliac_vein 0 001 @ 05370125 n 0000 | a continuation of the femoral vein; unites with the internal iliac vein to form the common iliac vein -05369924 08 n 01 common_iliac_vein 0 001 @ 05370125 n 0000 | formed by the internal and external iliac veins; unites with its fellow from the opposite side of the body to form the inferior vena cava -05370125 08 n 02 iliac_vein 0 vena_iliaca 0 004 @ 05418717 n 0000 ~ 05369404 n 0000 ~ 05369757 n 0000 ~ 05369924 n 0000 | one of three veins draining the pelvic area -05370293 08 n 02 iliolumbar_vein 0 vena_iliolumbalis 0 001 @ 05418717 n 0000 | a branch of the internal iliac vein -05370410 08 n 02 intercapitular_vein 0 vena_intercapitalis 0 003 @ 05418717 n 0000 #p 05564590 n 0000 #p 05563266 n 0000 | veins connecting the dorsal and palmar veins of the hand or the dorsal and plantar veins of the foot -05370636 08 n 02 intercostal_vein 0 vena_intercostalis 0 001 @ 05418717 n 0000 | several veins draining the intercostal spaces of the rib cage -05370781 08 n 02 intervertebral_vein 0 vena_intervertebralis 0 001 @ 05418717 n 0000 | one of several veins accompanying spinal nerves -05370918 08 n 03 jugular_vein 0 vena_jugularis 0 jugular 0 006 @ 05418717 n 0000 #p 05546540 n 0000 + 02852756 a 0101 ~ 05371144 n 0000 ~ 05371301 n 0000 ~ 05371482 n 0000 | veins in the neck that return blood from the head -05371144 08 n 01 anterior_jugular_vein 0 001 @ 05370918 n 0000 | arises below the chin from veins draining the lower face; joins the external jugular vein -05371301 08 n 01 external_jugular_vein 0 001 @ 05370918 n 0000 | formed by the junction of the posterior auricular and the retromandibular veins; empties into the subclavian vein -05371482 08 n 01 internal_jugular_vein 0 001 @ 05370918 n 0000 | a continuation of the sigmoid sinus of the dura mater; joins the subclavian vein to form the brachiocephalic vein -05371663 08 n 02 labial_vein 0 vena_labialis 0 004 @ 05418717 n 0000 #p 05305806 n 0000 ~ 05371829 n 0000 ~ 05371977 n 0000 | a vein draining the lips of the mouth -05371829 08 n 02 inferior_labial_vein 0 vena_labialis_inferior 0 001 @ 05371663 n 0000 | a tributary of the facial vein that drains the lower lip -05371977 08 n 02 superior_labial_vein 0 vena_labialis_superior 0 001 @ 05371663 n 0000 | a tributary of the facial vein that drains the upper lip -05372125 08 n 02 labial_vein 1 vena_labialis 1 004 @ 05418717 n 0000 #p 05521636 n 0000 ~ 05424351 n 0000 ~ 05424504 n 0000 | veins draining the lips of the vulva -05372290 08 n 02 labyrinthine_vein 0 internal_auditory_vein 0 002 @ 05418717 n 0000 #p 05321307 n 0000 | veins that drain the inner ear -05372428 08 n 02 lacrimal_vein 0 vena_lacrimalis 0 002 @ 05418717 n 0000 #p 05311054 n 0000 | drains the lacrimal gland; empties into the superior ophthalmic vein -05372593 08 n 02 laryngeal_vein 0 vena_laryngea 0 002 @ 05418717 n 0000 #p 05529729 n 0000 | one of two veins draining the larynx -05372725 08 n 02 left_gastric_vein 0 vena_gastrica_sinistra 0 001 @ 05367735 n 0000 | arises from a union of veins from the gastric cardia; runs in the lesser omentum; empties into the portal vein -05372924 08 n 02 lingual_vein 0 vena_lingualis 0 002 @ 05418717 n 0000 #p 05301908 n 0000 | a vein that receives blood from the tongue and the floor of the mouth and empties into the internal jugular or the facial vein -05373145 08 n 02 lumbar_vein 0 vena_lumbalis 0 001 @ 05418717 n 0000 | veins that drain the posterior body wall and the lumbar vertebral venous plexuses -05373300 08 n 02 maxillary_vein 0 vena_maxillaris 0 001 @ 05418717 n 0000 | posterior continuation of the pterygoid plexus; joins the superficial temporal vein to form the retromandibular vein -05373495 08 n 02 meningeal_veins 0 venae_meningeae 0 001 @ 05418717 n 0000 | veins at accompany the meningeal arteries -05373616 08 n 02 mesenteric_vein 0 vena_mesenterica 0 001 @ 05418717 n 0000 | a tributary of the portal vein passing from the intestine between the two layers of mesentery -05373790 08 n 02 metacarpal_vein 0 vena_metacarpus 0 002 @ 05418717 n 0000 #p 05564590 n 0000 | dorsal and palmar veins of the hand -05373924 08 n 02 metatarsal_vein 0 vena_metatarsus 0 002 @ 05418717 n 0000 #p 05563266 n 0000 | dorsal and plantar branches of veins serving the metatarsal region of the foot -05374101 08 n 02 musculophrenic_vein 0 vena_musculophrenica 0 001 @ 05418717 n 0000 | veins that drain the upper abdominal wall and the lower intercostal spaces and the abdomen -05374280 08 n 02 nasofrontal_vein 0 vena_nasofrontalis 0 001 @ 05418717 n 0000 | a vein located in the anterior medial part of the orbit; connects the superior ophthalmic with the angular vein -05374475 08 n 02 oblique_vein_of_the_left_atrium 0 vena_obliqua_atrii_sinistri 0 001 @ 05418717 n 0000 | a tributary of the coronary sinus; on the posterior wall of the left atrium -05374658 08 n 02 obturator_vein 0 vena_obturatoria 0 001 @ 05418717 n 0000 | a vein formed by the union of tributaries that drain the hip joints and thigh muscles; empties into the internal iliac vein -05374861 08 n 02 occipital_vein 0 vena_occipitalis 0 001 @ 05418717 n 0000 | a vein that drains the occipital region -05374980 08 n 02 ophthalmic_vein 0 vena_ophthalmica 0 003 @ 05418717 n 0000 ~ 05375169 n 0000 ~ 05375322 n 0000 | either of two veins that serve the eye; empties into the cavernous sinus -05375169 08 n 01 inferior_ophthalmic_vein 0 001 @ 05374980 n 0000 | a vein that drains a venous network in the floor and medial wall of the eye socket -05375322 08 n 01 superior_ophthalmic_vein 0 001 @ 05374980 n 0000 | a vein that begins at the inner angle of the eye socket and passes through the superior orbital fissure to empty into the cavernous sinus -05375530 08 n 02 ovarian_vein 0 vena_ovarica 0 001 @ 05418717 n 0000 | one of the veins that drain the ovaries; the right opens into the inferior vena cava; the left opens into the left renal vein -05375729 08 n 02 palatine_vein 0 vena_palatina 0 001 @ 05418717 n 0000 | a vein that drains the region of the palate and empties into the facial vein -05375881 08 n 02 pancreatic_vein 0 venae_pancreatica 0 001 @ 05418717 n 0000 | veins draining the pancreas and emptying into the superior mesenteric and splenic veins -05376050 08 n 02 paraumbilical_vein 0 vena_paraumbilicalis 0 001 @ 05418717 n 0000 | small veins arising in skin around the navel; terminate as accessory portal veins -05376219 08 n 01 parotid_vein 0 001 @ 05418717 n 0000 | parotid branches of the facial vein; they drain part of the parotid gland and empty into the retromandibular vein -05376391 08 n 02 pectoral_vein 0 vena_pectoralis 0 001 @ 05418717 n 0000 | veins that drain the pectoral muscles and empty into the subclavian vein -05376541 08 n 02 perforating_vein 0 vena_perforantis 0 001 @ 05418717 n 0000 | veins that accompany the perforating arteries; drain leg muscles; empty into the deep femoral vein -05376721 08 n 02 pericardial_vein 0 vena_pericardiaca 0 001 @ 05418717 n 0000 | several small veins from the pericardium -05376844 08 n 03 peroneal_vein 0 fibular_vein 0 vena_peroneus 0 002 @ 05418717 n 0000 #p 05560787 n 0000 | accompany the peroneal arteries; arising in the heel and running up the back of the leg to join the posterior tibial veins of the popliteal vein -05377098 08 n 02 pharyngeal_vein 0 vena_pharyngeus 0 001 @ 05418717 n 0000 | veins from the pharyngeal plexus that empty into the internal jugular vein -05377252 08 n 02 phrenic_vein 0 vena_phrenica 0 001 @ 05418717 n 0000 | either of two veins that drain the diaphragm -05377371 08 n 02 popliteal_vein 0 vena_poplitea 0 001 @ 05418717 n 0000 | a vein arising in the knee and ascending to become the femoral vein -05377515 08 n 01 portal_system 0 002 @ 05511286 n 0000 %p 05377665 n 0000 | system of veins that carry blood from the abdominal organs to the liver -05377665 08 n 04 portal_vein 0 hepatic_portal_vein 0 portal 0 vena_portae 0 002 @ 05418717 n 0000 #p 05377515 n 0000 | a short vein that carries blood into the liver -05377833 08 n 02 posterior_vein_of_the_left_ventricle 0 vena_posterior_ventriculi_sinistri 0 001 @ 05418717 n 0000 | arises near the apex of the heart and empties into the coronary sinus -05378022 08 n 02 prepyloric_vein 0 vena_pylorica 0 001 @ 05418717 n 0000 | a tributary of the right gastric vein -05378137 08 n 02 pudendal_vein 0 venae_pudendum 0 001 @ 05418717 n 0000 | vein of the pudendum -05378234 08 n 02 pulmonary_vein 0 vena_pulmonalis 0 004 @ 05418717 n 0000 #p 05387544 n 0000 ~ 05378458 n 0000 ~ 05378654 n 0000 | any of four veins that carry arterial blood from the lungs to the left atrium of the heart -05378458 08 n 02 inferior_pulmonary_vein 0 vena_pulmanalis_inferior 0 001 @ 05378234 n 0000 | either of two pulmonary veins (left and right) returning blood from the inferior lobes of the lungs -05378654 08 n 02 superior_pulmonary_vein 0 vena_pulmonalis_superior 0 001 @ 05378234 n 0000 | either of two pulmonary veins (left and right) returning blood from the superior lobes of the lungs -05378850 08 n 03 pyloric_vein 0 right_gastric_vein 0 vena_gastrica-dextra 0 001 @ 05367735 n 0000 | receives veins from the upper surfaces of the stomach and empties into the portal vein -05379039 08 n 02 radial_vein 0 vena_radialis 0 002 @ 05418717 n 0000 #p 05564323 n 0000 | superficial veins ascending the radial side of the forearm; combines with the ulnar veins to form the brachial vein -05379247 08 n 02 renal_vein 0 vena_renalis 0 002 @ 05418717 n 0000 #p 05332802 n 0000 | veins that accompany renal arteries; open into the vena cava at the level of the 2nd lumbar vertebra -05379438 08 n 03 retromandibular_vein 0 vena_retromandibularis 0 posterior_facial_vein 0 001 @ 05367341 n 0000 | posterior branch of the facial vein; formed by temporal veins in front of the ear -05379635 08 n 02 sacral_vein 0 vena_sacralis 0 001 @ 05418717 n 0000 | vein of the sacral region -05379734 08 n 02 saphenous_vein 0 vena_saphena 0 004 @ 05418717 n 0000 #p 05560787 n 0000 ~ 05379944 n 0000 ~ 05380122 n 0000 | either of two chief superficial veins of the leg that drain blood from the foot -05379944 08 n 02 long_saphenous_vein 0 great_saphenous_vein 0 001 @ 05379734 n 0000 | the longest vein in the body; runs from foot to the groin where it joins the femoral vein -05380122 08 n 01 short_saphenous_vein 0 001 @ 05379734 n 0000 | a vein running from the foot up the back of the leg to the knee -05380252 08 n 02 scleral_veins 0 venae_sclerales 0 001 @ 05418717 n 0000 | tributaries of the anterior ciliary veins that drain the sclera of the eye -05380404 08 n 02 scrotal_vein 0 vena_scrotalis 0 001 @ 05418717 n 0000 | veins passing from the scrotum to the pudendal veins -05380532 08 n 02 sigmoid_vein 0 vena_sigmoideus 0 002 @ 05418717 n 0000 #p 05535869 n 0000 | tributaries of the inferior mesenteric vein; drains the sigmoid colon -05380697 08 n 02 spinal_vein 0 vena_spinalis 0 002 @ 05418717 n 0000 #p 05503705 n 0000 | veins that drain the spinal cord -05380822 08 n 02 splenic_vein 0 vena_lienalis 0 002 @ 05418717 n 0000 #p 05333467 n 0000 | a vein formed by several small veins on the surface of the spleen; joins the superior mesenteric to form the portal vein -05381036 08 n 01 stellate_venule 0 001 @ 05426087 n 0000 | a star-shaped group of venules in the renal cortex -05381148 08 n 02 sternocleidomastoid_vein 0 vena_sternocleidomastoidea 0 001 @ 05418717 n 0000 | drains the sternocleidomastoid muscle; empties into the internal jugular vein -05381325 08 n 02 stylomastoid_vein 0 vena_stylomastoidea 0 001 @ 05418717 n 0000 | a vein that drains the tympanic cavity and empties into the retromandibular vein -05381491 08 n 02 subclavian_vein 0 vena_subclavia 0 001 @ 05418717 n 0000 | a continuation of the axillary vein; joins the internal jugular to form the brachiocephalic vein -05381666 08 n 02 sublingual_vein 0 vena_sublingualis 0 001 @ 05418717 n 0000 | a tributary of the lingual vein -05381779 08 n 02 supraorbital_vein 0 vena_supraorbitalis 0 001 @ 05418717 n 0000 | drains the front of the scalp; unites with the supratrochlear vein to form the angular vein -05381956 08 n 02 supratrochlear_vein 0 vena_supratrochlearis 0 001 @ 05418717 n 0000 | drains the front of the scalp; unites with the supraorbital vein to form the angular vein -05382135 08 n 02 temporal_vein 0 vena_temporalis 0 004 @ 05418717 n 0000 ~ 05382316 n 0000 ~ 05382432 n 0000 ~ 05382589 n 0000 | any of several veins draining the temporal region -05382316 08 n 01 deep_temporal_vein 0 001 @ 05382135 n 0000 | temporal veins that empty into the pterygoid plexus -05382432 08 n 01 middle_temporal_vein 0 001 @ 05382135 n 0000 | arises near the eye; joins the superficial temporal veins to form the retromandibular vein -05382589 08 n 01 superficial_temporal_vein 0 001 @ 05382135 n 0000 | join the middle temporal vein to empty into the retromandibular vein -05382729 08 n 02 testicular_vein 0 vena_testicularis 0 002 @ 05418717 n 0000 #p 05524615 n 0000 | a vein from the testicles -05382855 08 n 01 thalamostriate_vein 0 003 @ 05418717 n 0000 ~ 05383216 n 0000 ~ 05383348 n 0000 | a vein serving the thalamus and corpus striatum -05383004 08 n 02 thoracoepigastric_vein 0 vena_thoracoepigastrica 0 001 @ 05418717 n 0000 | a vein arising from the region of the superficial epigastric vein and opening into the axillary vein or thoracic vein -05383216 08 n 01 superior_thalamostriate_vein 0 001 @ 05382855 n 0000 | a long vein that helps to form the internal cerebral vein -05383348 08 n 02 inferior_thalamostriate_vein 0 striate_vein 0 001 @ 05382855 n 0000 | tributaries to the basal vein -05383467 08 n 02 thoracic_vein 0 vena_thoracica 0 002 @ 05418717 n 0000 #p 05552607 n 0000 | veins that drain the thoracic walls -05383598 08 n 02 thyroid_vein 0 vena_thyroidea 0 004 @ 05418717 n 0000 ~ 05383791 n 0000 ~ 05383956 n 0000 ~ 05384128 n 0000 | any of several small veins draining blood from the thyroid area -05383791 08 n 01 inferior_thyroid_vein 0 001 @ 05383598 n 0000 | any of several veins on each side that drain the thyroid gland and empty into the innominate vein -05383956 08 n 01 middle_thyroid_vein 0 001 @ 05383598 n 0000 | a vein on each side that drains the lateral part of the thyroid and empties into the internal jugular vein -05384128 08 n 01 superior_thyroid_vein 0 001 @ 05383598 n 0000 | a vein on each side that drains the upper part of the thyroid and empties into the internal jugular vein -05384300 08 n 02 tibial_vein 0 vena_tibialis 0 002 @ 05418717 n 0000 #p 05560787 n 0000 | veins of the lower leg; empty into the popliteal vein -05384446 08 n 02 tracheal_vein 0 vena_trachealis 0 001 @ 05418717 n 0000 | several small veins from the trachea -05384560 08 n 01 tympanic_vein 0 001 @ 05418717 n 0000 | veins from the tympanic cavity that empty into the retromandibular vein -05384691 08 n 02 ulnar_vein 0 vena_ulnaris 0 002 @ 05418717 n 0000 #p 05564323 n 0000 | any of several veins of the forearm -05384817 08 n 02 umbilical_vein 0 vena_umbilicalis 0 002 @ 05418717 n 0000 #p 05520479 n 0000 | a vein in the umbilical cord; returns nutrient blood from the placenta to the fetus -05384999 08 n 01 uterine_vein 0 001 @ 05418717 n 0000 | one of two veins on each side that arise from the uterine plexus and empty into the internal iliac vein -05385161 08 n 02 gallbladder 0 gall_bladder 0 002 @ 05512139 n 0000 #p 05552607 n 0000 | a muscular sac attached to the liver that stores bile (secreted by the liver) until it is needed for digestion -05385363 08 n 01 hypochondrium 0 002 @ 05221895 n 0000 #p 05556943 n 0000 | the upper region of the abdomen just below the lowest ribs on either side of the epigastrium -05385534 08 n 01 liver 0 012 @ 05298729 n 0000 #p 05329215 n 0000 #p 05511618 n 0000 + 02543149 a 0103 %p 05242752 n 0000 %p 05346585 n 0000 %p 05369254 n 0000 %p 05386309 n 0000 %p 05386426 n 0000 %p 05386845 n 0000 %p 05387028 n 0000 %p 05424074 n 0000 | large and complicated reddish-brown glandular organ located in the upper right portion of the abdominal cavity; secretes bile and functions in metabolism of protein and carbohydrate and fat; synthesizes substances involved in the clotting of the blood; synthesizes vitamin A; detoxifies poisonous substances and breaks down worn-out erythrocytes -05386139 08 n 01 Haversian_canal 0 001 @ 05250659 n 0000 | any of the many tiny canals that contain blood vessels and connective tissue and that form a network in bone -05386309 08 n 01 hepatic_lobe 0 002 @ 05493303 n 0000 #p 05385534 n 0000 | any of the five lobes forming the liver -05386426 08 n 01 hepatic_duct 0 002 @ 05250659 n 0000 #p 05385534 n 0000 | the duct that drains bile from the liver -05386544 08 n 02 inguinal_canal 0 canalis_inguinalis 0 001 @ 05250659 n 0000 | oblique passage through the lower abdominal wall; in males it is the passage through which the testes descend into the scrotum and it contains the spermatic cord; in females it transmits the round ligament of the uterus -05386845 08 n 02 common_bile_duct 0 bile_duct 0 003 @ 05250659 n 0000 #p 05385534 n 0000 %p 05572629 n 0000 | a duct formed by the hepatic and cystic ducts; opens into the duodenum -05387028 08 n 01 biliary_ductule 0 002 @ 05251537 n 0000 #p 05385534 n 0000 | excretory ducts of the liver; empty into the hepatic ducts -05387167 08 n 01 pancreas 0 005 @ 05328867 n 0000 #p 05329215 n 0000 + 02932561 a 0101 %p 05387395 n 0000 %p 05485314 n 0000 | a large elongated exocrine gland located behind the stomach; secretes pancreatic juice and insulin -05387395 08 n 01 pancreatic_duct 0 003 @ 05250659 n 0000 #p 05387167 n 0000 %p 05572782 n 0000 | a duct connecting the pancreas with the intestine -05387544 08 n 01 lung 0 007 @ 05528060 n 0000 #p 05510358 n 0000 %p 05339047 n 0000 %p 05378234 n 0000 %p 05387842 n 0000 %p 05387959 n 0000 %p 05528395 n 0000 | either of two saclike respiratory organs in the chest of vertebrates; serves to remove carbon dioxide and provide oxygen to the blood -05387842 08 n 01 alveolar_bed 0 002 @ 05225602 n 0000 #p 05387544 n 0000 | lung tissue densely packed with alveoli -05387959 08 n 01 lobe_of_the_lung 0 002 @ 05493303 n 0000 #p 05387544 n 0000 | any of the three lobes of the right lung or the two lobes of the left lung -05388115 08 n 01 pleura 0 005 @ 05605944 n 0000 #p 05388527 n 0000 + 02947653 a 0101 ~ 05388311 n 0000 ~ 05388437 n 0000 | the thin serous membrane around the lungs and inner walls of the chest -05388311 08 n 01 parietal_pleura 0 001 @ 05388115 n 0000 | pleura that lines the inner chest walls and covers the diaphragm -05388437 08 n 01 visceral_pleura 0 001 @ 05388115 n 0000 | pleura that covers the lungs -05388527 08 n 01 pleural_cavity 0 002 @ 05303402 n 0000 %p 05388115 n 0000 | the cavity in the thorax that contains the lungs and heart -05388665 08 n 01 pleural_space 0 001 @ 13910384 n 0000 | the small potential space between the parietal and visceral layers of the pleura -05388805 08 n 03 heart 0 pump 0 ticker 0 008 @ 05298729 n 0000 #p 05511618 n 0000 %p 05343718 n 0000 ~ 05389182 n 0000 ~ 05389310 n 0000 %p 05389939 n 0000 %p 05395098 n 0000 %p 05395286 n 0000 | the hollow muscular organ located behind the sternum and between the lungs; its rhythmic contractions move the blood through the body; "he stood still, his heart thumping wildly" -05389182 08 n 01 athlete's_heart 0 001 @ 05388805 n 0000 | enlarged heart commonly found among athletes trained for endurance -05389310 08 n 01 biauriculate_heart 0 002 @ 05388805 n 0000 ;c 01861778 n 0000 | a heart (as of mammals and birds and reptiles) having two auricles -05389460 08 n 04 pacemaker 0 cardiac_pacemaker 0 sinoatrial_node 0 SA_node 0 001 @ 05389939 n 0000 | a specialized bit of heart tissue that controls the heartbeat -05389625 08 n 02 cusp 1 leaflet 0 003 @ 05389762 n 0000 #p 05395098 n 0000 + 03652226 n 0201 | a thin triangular flap of a heart valve -05389762 08 n 01 flap 0 005 @ 05267548 n 0000 ~ 05309245 n 0000 ~ 05309392 n 0000 ~ 05313679 n 0000 ~ 05389625 n 0000 | a movable piece of tissue partly connected to the body -05389939 08 n 02 cardiac_muscle 0 heart_muscle 0 009 @ 05289057 n 0000 #p 05388805 n 0000 ~ 05389460 n 0000 ~ 05390233 n 0000 ~ 05390479 n 0000 ~ 05390761 n 0000 ~ 05391000 n 0000 ~ 05391118 n 0000 ~ 05391269 n 0000 | the muscle tissue of the heart; adapted to continued rhythmic contraction -05390233 08 n 01 papillary_muscle 0 002 @ 05389939 n 0000 #p 05394277 n 0000 | any of several muscles associated with the atrioventricular valves; "the papillary muscles contract during systole to prevent regurgitation of blood into the atria" -05390479 08 n 04 atrioventricular_bundle 0 bundle_of_His 0 atrioventricular_trunk 0 truncus_atrioventricularis 0 001 @ 05389939 n 0000 | a bundle of modified heart muscle that transmits the cardiac impulse from the atrioventricular node to the ventricles causing them to contract -05390761 08 n 01 atrioventricular_node 0 001 @ 05389939 n 0000 | a node of specialized heart muscle located in the septal wall of the right atrium; receives impulses from the sinoatrial node and transmits them to atrioventricular bundle -05391000 08 n 01 myocardium 0 002 @ 05389939 n 0000 + 03013124 a 0101 | the middle muscular layer of the heart wall -05391118 08 n 01 Purkinje_fiber 0 002 @ 05389939 n 0000 #p 05391269 n 0000 | a specialized cardiac muscle fiber that is part of the Purkinje network -05391269 08 n 03 Purkinje_network 0 Purkinje's_tissue 0 Purkinje's_system 0 002 @ 05389939 n 0000 %p 05391118 n 0000 | a network of Purkinje fibers that carry the cardiac impulse from the atrioventricular node to the ventricles of the heart and causes them to contract -05391540 08 n 01 area_of_cardiac_dullness 0 002 @ 05221895 n 0000 #p 05552607 n 0000 | a triangular area of the front of the chest (determined by percussion); corresponds to the part of the heart not covered by the lungs -05391763 08 n 02 ventricle 1 heart_ventricle 0 004 @ 05392744 n 0000 + 02823559 a 0101 ~ 05391977 n 0000 ~ 05392157 n 0000 | a chamber of the heart that receives blood from an atrium and pumps it to the arteries -05391977 08 n 01 left_ventricle 0 001 @ 05391763 n 0000 | the chamber on the left side of the heart that receives arterial blood from the left atrium and pumps it into the aorta -05392157 08 n 01 right_ventricle 0 001 @ 05391763 n 0000 | the chamber on the right side of the heart that receives venous blood from the right atrium and pumps it into the pulmonary trunk -05392348 08 n 03 auricle 1 atrial_auricle 0 auricula_atrii 0 003 @ 05516848 n 0000 #p 05393230 n 0000 + 02648988 a 0101 | a small conical pouch projecting from the upper anterior part of each atrium of the heart -05392562 08 n 03 auricula 0 auricular_appendage 0 auricular_appendix 0 002 @ 05516848 n 0000 #p 05393230 n 0000 | a pouch projecting from the top front of each atrium of the heart -05392744 08 n 01 chamber 0 003 @ 05303402 n 0000 ~ 05391763 n 0000 ~ 05393023 n 0000 | an enclosed volume in the body; "the chambers of his heart were healthy" -05392906 08 n 02 cranial_cavity 0 intracranial_cavity 0 001 @ 05303402 n 0000 | the cavity enclosed by the cranium -05393023 08 n 01 atrium 0 003 @ 05392744 n 0000 + 02647497 a 0101 ~ 05393230 n 0000 | any chamber that is connected to other chambers or passageways (especially one of the two upper chambers of the heart) -05393230 08 n 02 atrium_cordis 0 atrium_of_the_heart 0 005 @ 05393023 n 0000 %p 05392348 n 0000 %p 05392562 n 0000 ~ 05393429 n 0000 ~ 05393629 n 0000 | the upper chamber of each half of the heart -05393429 08 n 03 right_atrium 0 right_atrium_of_the_heart 0 atrium_dextrum 0 001 @ 05393230 n 0000 | the right upper chamber of the heart that receives blood from the venae cavae and coronary sinus -05393629 08 n 03 left_atrium 0 left_atrium_of_the_heart 0 atrium_sinistrum 0 001 @ 05393230 n 0000 | the left upper chamber of the heart that receives blood from the pulmonary veins -05393813 08 n 03 mitral_valve 0 bicuspid_valve 0 left_atrioventricular_valve 0 001 @ 05394277 n 0000 | valve with two cusps; situated between the left atrium and the left ventricle -05393996 08 n 02 tricuspid_valve 0 right_atrioventricular_valve 0 001 @ 05394277 n 0000 | valve with three cusps; situated between the right atrium and the right ventricle; allows blood to pass from atrium to ventricle and closes to prevent backflow when the ventricle contracts -05394277 08 n 01 atrioventricular_valve 0 004 @ 05395098 n 0000 %p 05390233 n 0000 ~ 05393813 n 0000 ~ 05393996 n 0000 | either of two heart valves through which blood flows from the atria to the ventricles; prevents return of blood to the atrium -05394526 08 n 01 aortic_valve 0 001 @ 05394904 n 0000 | a semilunar valve between the left ventricle and the aorta; prevents blood from flowing from the aorta back into the heart -05394707 08 n 01 pulmonary_valve 0 001 @ 05394904 n 0000 | a semilunar valve between the right ventricle and the pulmonary artery; prevents blood from flowing from the artery back into the heart -05394904 08 n 01 semilunar_valve 0 003 @ 05395098 n 0000 ~ 05394526 n 0000 ~ 05394707 n 0000 | a heart valve with cusps shaped like half-moons; prevents blood from flowing back into the heart -05395098 08 n 02 heart_valve 0 cardiac_valve 0 005 @ 05395286 n 0000 #p 05388805 n 0000 %p 05389625 n 0000 ~ 05394277 n 0000 ~ 05394904 n 0000 | a valve to control one-way flow of blood -05395286 08 n 01 valve 0 007 @ 05225602 n 0000 #p 05388805 n 0000 + 03128193 a 0101 + 05395548 n 0102 ~ 05395098 n 0000 ~ 05395548 n 0000 ~ 05536638 n 0000 | a structure in a hollow organ (like the heart) with a flap to insure one-way flow of fluid through it -05395548 08 n 03 valvule 0 valvelet 0 valvula 0 004 @ 05395286 n 0000 + 05395286 n 0201 + 04519536 n 0201 + 04519153 n 0201 | a small valve -05395690 08 n 04 stomach 0 tummy 0 tum 0 breadbasket 0 012 @ 05298729 n 0000 #p 05532225 n 0000 + 02733187 a 0102 ~ 01974055 n 0000 ~ 02399424 n 0000 ~ 02399648 n 0000 ~ 02399791 n 0000 ~ 02399942 n 0000 %p 05345581 n 0000 %p 05367735 n 0000 %p 05367912 n 0000 %p 05508943 n 0000 | an enlarged and muscular saclike organ of the alimentary canal; the principal organ of digestion -05396071 08 n 01 epigastrium 0 003 @ 05221895 n 0000 + 02720818 a 0101 + 02720715 a 0101 | the region lying on or over the stomach (just below the sternum) -05396229 08 n 01 cardia 0 001 @ 05249636 n 0000 | the opening into the stomach and that part of the stomach connected to the esophagus -05396366 08 n 02 lymphatic_system 0 systema_lymphaticum 0 007 @ 05511286 n 0000 #p 05216365 n 0000 %p 05287882 n 0000 %p 05333467 n 0000 %p 05396690 n 0000 %p 05396807 n 0000 %p 05451384 n 0000 | the interconnected system of spaces and vessels between body tissues and organs by which lymph circulates throughout the body -05396690 08 n 01 thoracic_duct 0 002 @ 05396807 n 0000 #p 05396366 n 0000 | the major duct of the lymphatic system -05396807 08 n 02 lymph_vessel 0 lymphatic_vessel 0 004 @ 05250659 n 0000 #p 05396366 n 0000 ~ 05396690 n 0000 ~ 05397032 n 0000 | a vascular duct that carries lymph which is eventually added to the venous blood circulation -05397032 08 n 01 lacteal 0 001 @ 05396807 n 0000 | any of the lymphatic vessels that convey chyle from the small intestine to the thoracic duct -05397178 08 n 01 vascular_structure 0 003 @ 05225602 n 0000 ~ 05308950 n 0000 ~ 05520699 n 0000 | a structure composed of or provided with blood vessels -05397333 08 n 02 vessel 0 vas 0 003 @ 05246511 n 0000 #p 05511286 n 0000 ~ 05417975 n 0000 | a tube in which a body fluid circulates -05397468 08 n 05 liquid_body_substance 0 bodily_fluid 0 body_fluid 0 humor 0 humour 0 024 @ 05263850 n 0000 + 02851001 a 0401 ~ 05318263 n 0000 ~ 05318407 n 0000 ~ 05322103 n 0000 ~ 05322247 n 0000 ~ 05398023 n 0000 ~ 05398462 n 0000 ~ 05398609 n 0000 ~ 05398871 n 0000 ~ 05399034 n 0000 ~ 05399627 n 0000 ~ 05399847 n 0000 ~ 05403149 n 0000 ~ 05403849 n 0000 ~ 05404074 n 0000 ~ 05404336 n 0000 ~ 05404598 n 0000 ~ 05404728 n 0000 ~ 05406782 n 0000 ~ 05406958 n 0000 ~ 05417272 n 0000 ~ 05417472 n 0000 ~ 05504107 n 0000 | the liquid parts of the body -05398023 08 n 02 extracellular_fluid 0 ECF 0 003 @ 05397468 n 0000 ~ 05398298 n 0000 ~ 05403427 n 0000 | liquid containing proteins and electrolytes including the liquid in blood plasma and interstitial fluid; "the body normally has about 15 quarts of extracellular fluid" -05398298 08 n 01 interstitial_fluid 0 001 @ 05398023 n 0000 | liquid found between the cells of the body that provides much of the liquid environment of the body -05398462 08 n 01 intracellular_fluid 0 001 @ 05397468 n 0000 | liquid contained inside the cell membranes (usually containing dissolved solutes) -05398609 08 n 02 juice 0 succus 0 003 @ 05397468 n 0000 ~ 05398760 n 0000 ~ 05405946 n 0000 | any of several liquids of the body; "digestive juices" -05398760 08 n 01 cancer_juice 0 001 @ 05398609 n 0000 | a milky substance found in certain cancerous growths -05398871 08 n 01 karyolymph 0 001 @ 05397468 n 0000 | a clear liquid in the cell nucleus in which the nucleolus and chromatin and other structures are dispersed -05399034 08 n 01 milk 0 006 @ 05397468 n 0000 @ 07570720 n 0000 + 00194373 v 0101 + 00194170 v 0101 ~ 05399243 n 0000 ~ 05399356 n 0000 | produced by mammary glands of female mammals for feeding their young -05399243 08 n 01 mother's_milk 0 001 @ 05399034 n 0000 | milk secreted by a woman who has recently given birth -05399356 08 n 02 colostrum 0 foremilk 0 001 @ 05399034 n 0000 | milky fluid secreted for the first day or two after parturition -05399486 08 n 01 amniotic_cavity 0 002 @ 05303402 n 0000 %p 05399627 n 0000 | the fluid-filled cavity that surrounds the developing embryo -05399627 08 n 03 amniotic_fluid 0 amnionic_fluid 0 waters 0 002 @ 05397468 n 0000 #p 05399486 n 0000 | the serous fluid in which the embryo is suspended inside the amnion; "before a woman gives birth her waters break" -05399847 08 n 01 blood 0 016 @ 05397468 n 0000 ;c 01471682 n 0000 + 00247439 a 0101 + 01233642 v 0101 ~ 05400445 n 0000 ~ 05400601 n 0000 ~ 05401753 n 0000 ~ 05401851 n 0000 ~ 05401951 n 0000 ~ 05402333 n 0000 ~ 05402472 n 0000 ~ 05402576 n 0000 ~ 05402788 n 0000 ~ 05402961 n 0000 %s 05403149 n 0000 %p 05449268 n 0000 | the fluid (red in vertebrates) that is pumped through the body by the heart and contains plasma, blood cells, and platelets; "blood carries oxygen and nutrients to the tissues and carries away waste products"; "the ancients believed that blood was the seat of the emotions" -05400445 08 n 01 arterial_blood 0 001 @ 05399847 n 0000 | blood found in arteries; "except for the pulmonary artery the arterial blood is rich in oxygen" -05400601 08 n 02 blood_group 0 blood_type 0 007 @ 05399847 n 0000 ~ 05400860 n 0000 ~ 05400978 n 0000 ~ 05401096 n 0000 ~ 05401229 n 0000 ~ 05401411 n 0000 ~ 05401587 n 0000 | human blood cells (usually just the red blood cells) that have the same antigens -05400860 08 n 03 A 0 type_A 0 group_A 0 001 @ 05400601 n 0000 | the blood group whose red cells carry the A antigen -05400978 08 n 03 B 0 type_B 0 group_B 0 001 @ 05400601 n 0000 | the blood group whose red cells carry the B antigen -05401096 08 n 03 AB 0 type_AB 0 group_AB 0 001 @ 05400601 n 0000 | the blood group whose red cells carry both the A and B antigens -05401229 08 n 03 O 0 type_O 0 group_O 0 001 @ 05400601 n 0000 | the blood group whose red cells carry neither the A nor B antigens; "people with type O blood are universal donors" -05401411 08 n 02 Rh-positive_blood_type 0 Rh_positive 0 001 @ 05400601 n 0000 | the blood group (approximately 85% of people) whose red cells have the Rh factor (Rh antigen) -05401587 08 n 03 Rh-negative_blood_type 0 Rh-negative_blood 0 Rh_negative 0 001 @ 05400601 n 0000 | the blood group whose red cells lack the Rh factor (Rh antigen) -05401753 08 n 01 gore 0 002 @ 05399847 n 0000 + 01445235 v 0101 | coagulated blood from a wound -05401851 08 n 01 lifeblood 0 001 @ 05399847 n 0000 | the blood considered as the seat of vitality -05401951 08 n 02 bloodstream 0 blood_stream 0 002 @ 05399847 n 0000 #p 05511618 n 0000 | the blood flowing through the circulatory system -05402091 08 n 02 clot 0 coagulum 0 008 @ 07961016 n 0000 + 00458276 v 0202 + 00457998 v 0202 + 00458276 v 0101 + 00368367 v 0102 + 00457998 v 0101 ~ 14373246 n 0000 ~ 14373407 n 0000 | a lump of material formed from the content of a liquid -05402333 08 n 02 blood_clot 0 grume 0 002 @ 05399847 n 0000 + 02416036 a 0204 | a semisolid mass of coagulated red and white blood cells -05402472 08 n 01 cord_blood 0 001 @ 05399847 n 0000 | blood obtained from the umbilical cord at birth -05402576 08 n 03 menorrhea 0 menstrual_blood 0 menstrual_flow 0 002 @ 05399847 n 0000 #p 05220126 n 0000 | flow of blood from the uterus; occurs at roughly monthly intervals during a woman's reproductive years -05402788 08 n 01 venous_blood 0 001 @ 05399847 n 0000 | blood found in the veins; "except in the pulmonary vein venous blood is rich in carbon dioxide and poor in oxygen" -05402961 08 n 01 whole_blood 0 001 @ 05399847 n 0000 | blood that has not been modified except for the addition of an anticoagulant; "whole blood is normally used in blood transfusions" -05403149 08 n 02 serum 0 blood_serum 0 008 @ 05397468 n 0000 #s 05399847 n 0000 + 03116391 a 0101 ~ 05403702 n 0000 %s 14731799 n 0000 %s 14732116 n 0000 %s 15030264 n 0000 ~ 15097578 n 0000 | an amber, watery fluid, rich in proteins, that separates out when blood coagulates -05403427 08 n 03 plasma 0 plasm 1 blood_plasma 0 003 @ 05398023 n 0000 %s 14736359 n 0000 %s 15022389 n 0000 | the colorless watery fluid of the blood and lymph that contains no cells, but in which the blood cells (erythrocytes, leukocytes, and thrombocytes) are suspended -05403702 08 n 01 antiserum 0 001 @ 05403149 n 0000 | blood serum containing antibodies against specific antigens; provides immunity to a disease -05403849 08 n 01 chyle 0 004 @ 05397468 n 0000 + 02851122 a 0102 + 02851122 a 0101 %s 05404074 n 0000 | a milky fluid consisting of lymph and emulsified fats; formed in the small intestine during digestion of ingested fats -05404074 08 n 01 lymph 0 004 @ 05397468 n 0000 #p 05511618 n 0000 #s 05403849 n 0000 + 02831031 a 0101 | a thin coagulable fluid (similar to plasma but) containing white blood cells (lymphocytes) and chyle; is conveyed to the blood stream by lymphatic vessels -05404336 08 n 06 semen 0 seed 0 seminal_fluid 0 ejaculate 0 cum 0 come 0 005 @ 05397468 n 0000 + 00055010 v 0401 + 00052548 v 0101 ~ 02322712 n 0000 %p 05457469 n 0000 | the thick white fluid containing spermatozoa that is ejaculated by the male genital tract -05404598 08 n 01 ink 0 001 @ 05397468 n 0000 | dark protective fluid ejected into the water by cuttlefish and other cephalopods -05404728 08 n 01 secretion 0 015 @ 05397468 n 0000 ~ 02638104 n 0000 ~ 05405139 n 0000 ~ 05405751 n 0000 ~ 05407119 n 0000 ~ 05407772 n 0000 ~ 05414534 n 0000 ~ 05415200 n 0000 ~ 05415395 n 0000 ~ 05416198 n 0000 ~ 05416979 n 0000 ~ 14774228 n 0000 ~ 14846646 n 0000 ~ 14846779 n 0000 ~ 14846890 n 0000 | a functionally specialized substance (especially one that is not a waste) released from a gland or cell -05405139 08 n 02 lacrimal_secretion 0 lachrymal_secretion 0 002 @ 05404728 n 0000 %p 05405324 n 0000 | saline fluid secreted by lacrimal glands; lubricates the surface of the eyeball -05405324 08 n 02 tear 1 teardrop 0 004 @ 13771404 n 0000 #p 05405139 n 0000 + 00066977 v 0101 %s 14845743 n 0000 | a drop of the clear salty saline solution secreted by the lacrimal glands; "his story brought tears to her eyes" -05405554 08 n 01 lacrimal_apparatus 0 005 @ 05225602 n 0000 #p 05311054 n 0000 %p 05331653 n 0000 %p 05331812 n 0000 %p 05331988 n 0000 | the structures that secrete and drain tears from the eye -05405751 08 n 03 perspiration 0 sweat 0 sudor 0 004 @ 05404728 n 0000 + 00067545 v 0201 + 00067545 v 0103 %s 14845743 n 0000 | salty fluid secreted by sweat glands; "sweat poured off his brow" -05405946 08 n 02 digestive_juice 0 digestive_fluid 0 005 @ 05398609 n 0000 #p 05329215 n 0000 ~ 05406128 n 0000 ~ 05406397 n 0000 ~ 05406570 n 0000 | secretions that aid digestion -05406128 08 n 02 gastric_juice 0 gastric_acid 0 004 @ 05405946 n 0000 %s 14938687 n 0000 %s 14978729 n 0000 %s 15004317 n 0000 | digestive secretions of the stomach glands consisting chiefly of hydrochloric acid and mucin and the enzymes pepsin and rennin and lipase -05406397 08 n 01 pancreatic_juice 0 001 @ 05405946 n 0000 | a fluid secreted into the duodenum by the pancreas; important for breaking down starches and proteins and fats -05406570 08 n 02 bile 0 gall 0 004 @ 05405946 n 0000 + 02664067 a 0102 + 02663950 a 0101 + 02664067 a 0101 | a digestive juice secreted by the liver and stored in the gallbladder; aids in the digestion of fats -05406782 08 n 02 black_bile 0 melancholy 0 001 @ 05397468 n 0000 | a humor that was once believed to be secreted by the kidneys or spleen and to cause sadness and melancholy -05406958 08 n 02 yellow_bile 0 choler 0 001 @ 05397468 n 0000 | a humor that was once believed to be secreted by the liver and to cause irritability and anger -05407119 08 n 03 hormone 0 endocrine 0 internal_secretion 0 026 @ 05404728 n 0000 + 02915055 a 0202 + 02934744 a 0101 ~ 05408113 n 0000 ~ 05408388 n 0000 ~ 05408684 n 0000 ~ 05410131 n 0000 ~ 05410315 n 0000 ~ 05410646 n 0000 ~ 05411338 n 0000 ~ 05411430 n 0000 ~ 05411571 n 0000 ~ 05411785 n 0000 ~ 05412053 n 0000 ~ 05412242 n 0000 ~ 05412649 n 0000 ~ 05413102 n 0000 ~ 05413241 n 0000 ~ 05414147 n 0000 ~ 14745635 n 0000 ~ 14747838 n 0000 ~ 14752057 n 0000 ~ 14807929 n 0000 ~ 15073784 n 0000 ~ 15073973 n 0000 ~ 15074203 n 0000 | the secretion of an endocrine gland that is transmitted by the blood to the tissue on which it has a specific effect -05407772 08 n 01 intestinal_juice 0 001 @ 05404728 n 0000 | secretions by glands lining the walls of the intestines -05407890 08 n 02 noradrenaline 0 norepinephrine 0 003 @ 14807929 n 0000 @ 14807737 n 0000 @ 04522421 n 0000 | a catecholamine precursor of epinephrine that is secreted by the adrenal medulla and also released at synapses -05408113 08 n 07 adrenocorticotropic_hormone 0 adrenocorticotrophic_hormone 0 ACTH 0 adrenocorticotropin 0 adrenocorticotrophin 0 corticotropin 0 corticotrophin 0 001 @ 05407119 n 0000 | a hormone produced by the anterior pituitary gland that stimulates the adrenal cortex -05408388 08 n 04 epinephrine 0 epinephrin 0 adrenaline 0 Adrenalin 0 005 @ 05407119 n 0000 @ 14807929 n 0000 @ 14807558 n 0000 @ 04522421 n 0000 ;u 06845599 n 0401 | a catecholamine secreted by the adrenal medulla in response to stress (trade name Adrenalin); stimulates autonomic nerve action -05408684 08 n 02 gastrointestinal_hormone 0 GI_hormones 0 006 @ 05407119 n 0000 ~ 05408908 n 0000 ~ 05409136 n 0000 ~ 05409426 n 0000 ~ 05409663 n 0000 ~ 05409945 n 0000 | hormones that affect gastrointestinal functioning -05408908 08 n 01 gastrin 0 001 @ 05408684 n 0000 | polypeptide hormone secreted by the mucous lining of the stomach; when peptides and amino acids are present in the small intestine the secretion of gastric acid is stimulated -05409136 08 n 01 cholecystokinin 0 001 @ 05408684 n 0000 | a gastrointestinal hormone that stimulates the secretion of pancreatic enzymes and the contraction and emptying of the gall bladder; its release is stimulated by the presence of fatty acids and amino acids in the small intestine -05409426 08 n 01 secretin 0 001 @ 05408684 n 0000 | a gastrointestinal hormone that stimulates the secretion of water and bicarbonate from the pancreas and bile ducts whenever the stomach empties too much acid into the small intestine -05409663 08 n 01 ghrelin 0 001 @ 05408684 n 0000 | a gastrointestinal hormone produced by epithelial cells lining the fundus of the stomach; appears to be a stimulant for appetite and feeding, but is also a strong stimulant of growth hormone secretion from the anterior pituitary -05409945 08 n 01 motilin 0 001 @ 05408684 n 0000 | a gastrointestinal hormone that apparently participates in controlling smooth muscle contractions in the stomach and small intestine -05410131 08 n 01 glucagon 0 001 @ 05407119 n 0000 | a hormone secreted by the pancreas; stimulates increases in blood sugar levels in the blood (thus opposing the action of insulin) -05410315 08 n 04 gonadotropin 0 gonadotrophin 0 gonadotropic_hormone 0 gonadotrophic_hormone 0 006 @ 05407119 n 0000 + 03069388 a 0101 ~ 14748765 n 0000 ~ 14749030 n 0000 ~ 14749272 n 0000 ~ 14749543 n 0000 | hormone secreted by the anterior pituitary gland and placenta; stimulates the gonads and controls reproductive activity -05410646 08 n 01 insulin 0 004 @ 05407119 n 0000 @ 14914301 n 0000 ~ 05410901 n 0000 ~ 05411049 n 0000 | hormone secreted by the isles of Langerhans in the pancreas; regulates storage of glycogen in the liver and accelerates oxidation of sugar in cells -05410901 08 n 02 Lente_Insulin 0 Lente_Iletin 0 001 @ 05410646 n 0000 | trade names for forms of insulin that are used to treat diabetes mellitus -05411049 08 n 02 recombinant_human_insulin 0 Humulin 0 002 @ 05410646 n 0000 ;u 06845599 n 0201 | a form of insulin (trade name Humulin) made from recombinant DNA that is identical to human insulin; used to treat diabetics who are allergic to preparations made from beef or pork insulin -05411338 08 n 01 melatonin 0 001 @ 05407119 n 0000 | hormone secreted by the pineal gland -05411430 08 n 01 neurohormone 0 001 @ 05407119 n 0000 | a hormone that is released by nerve impulses (e.g., norepinephrine or vasopressin) -05411571 08 n 02 oxytocin 0 Pitocin 0 002 @ 05407119 n 0000 ;u 06845599 n 0201 | hormone secreted by the posterior pituitary gland (trade name Pitocin); stimulates contractions of the uterus and ejection of milk -05411785 08 n 02 parathyroid_hormone 0 parathormone 0 001 @ 05407119 n 0000 | hormone synthesized and released into the blood stream by the parathyroid glands; regulates phosphorus and calcium in the body and functions in neuromuscular excitation and blood clotting -05412053 08 n 01 relaxin 0 001 @ 05407119 n 0000 | hormone secreted by the corpus luteum during the last days of pregnancy; relaxes the pelvic ligaments and prepares the uterus for labor -05412242 08 n 05 releasing_hormone 0 RH 0 releasing_factor 0 hypothalamic_releasing_hormone 0 hypothalamic_releasing_factor 0 001 @ 05407119 n 0000 | any of several hormones produced in the hypothalamus and carried by a vein to the anterior pituitary gland where they stimulate the release of anterior pituitary hormones; each of these hormones causes the anterior pituitary to secrete a specific hormone -05412649 08 n 07 somatotropin 0 somatotrophin 0 somatotropic_hormone 0 somatotrophic_hormone 0 STH 0 human_growth_hormone 0 growth_hormone 0 002 @ 05407119 n 0000 ~ 05412912 n 0000 | a hormone produced by the anterior pituitary gland; promotes growth in humans -05412912 08 n 01 Protropin 0 001 @ 05412649 n 0000 | trade name of a synthetic human growth hormone given to children deficient in the hormone; use by athletes and weightlifters is banned -05413102 08 n 01 thymosin 0 001 @ 05407119 n 0000 | hormone secreted by the thymus; stimulates immunological activity of lymphoid tissue -05413241 08 n 01 thyroid_hormone 0 004 @ 05407119 n 0000 ~ 05413465 n 0000 ~ 05413647 n 0000 ~ 05413873 n 0000 | any of several closely related compounds that are produced by the thyroid gland and are active metabolically -05413465 08 n 02 calcitonin 0 thyrocalcitonin 0 001 @ 05413241 n 0000 | thyroid hormone that tends to lower the level of calcium in the blood plasma and inhibit resorption of bone -05413647 08 n 04 thyroxine 0 thyroxin 0 tetraiodothyronine 0 T 4 001 @ 05413241 n 0000 | hormone produced by the thyroid glands to regulate metabolism by controlling the rate of oxidation in cells; "thyroxine is 65% iodine" -05413873 08 n 03 triiodothyronine 0 liothyronine 0 T 3 001 @ 05413241 n 0000 | thyroid hormone similar to thyroxine but with one less iodine atom per molecule and produced in smaller quantity; exerts the same biological effects as thyroxine but is more potent and briefer -05414147 08 n 04 vasopressin 0 antidiuretic_hormone 0 ADH 0 Pitressin 0 003 @ 05407119 n 0000 @ 04522421 n 0000 ;u 06845599 n 0401 | hormone secreted by the posterior pituitary gland (trade name Pitressin) and also by nerve endings in the hypothalamus; affects blood pressure by stimulating capillary muscles and reduces urine flow by affecting reabsorption of water by kidney tubules -05414534 08 n 02 autacoid 0 autocoid 0 003 @ 05404728 n 0000 + 02650672 a 0101 ~ 05414931 n 0000 | any physiologically active internal secretion especially one of uncertain classification -05414724 08 n 01 histamine 0 001 @ 14739004 n 0000 | amine formed from histidine that stimulates gastric secretions and dilates blood vessels; released by the human immune system during allergic reactions -05414931 08 n 01 prostaglandin 0 001 @ 05414534 n 0000 | a potent substance that acts like a hormone and is found in many bodily tissues (and especially in semen); produced in response to trauma and may affect blood pressure and metabolism and smooth muscle activity -05415200 08 n 02 synovia 0 synovial_fluid 0 003 @ 05404728 n 0000 + 02808548 a 0101 %s 14909895 n 0000 | viscid lubricating fluid secreted by the membrane lining joints and tendon sheaths etc. -05415395 08 n 02 mucus 0 mucous_secretion 0 007 @ 05404728 n 0000 + 02903593 a 0101 ~ 05415815 n 0000 ~ 05416048 n 0000 ~ 05416128 n 0000 ~ 05417821 n 0000 %s 14730955 n 0000 | protective secretion of the mucus membranes; in the gut it lubricates the passage of food and protects the epithelial cells; in the nose and throat and lungs it can make it difficult for bacteria to penetrate the body through the epithelium -05415815 08 n 02 phlegm 0 sputum 0 002 @ 05415395 n 0000 + 01178856 a 0101 | expectorated matter; saliva mixed with discharges from the respiratory passages; in ancient and medieval physiology it was believed to cause sluggishness -05416048 08 n 01 snot 0 002 @ 05415395 n 0000 + 00423269 a 0101 | nasal mucus -05416128 08 n 01 booger 0 001 @ 05415395 n 0000 | dried nasal mucus -05416198 08 n 03 saliva 0 spit 0 spittle 0 008 @ 05404728 n 0000 #p 05532944 n 0000 + 00101956 v 0201 + 03012094 a 0101 + 00102791 v 0101 ~ 05416678 n 0000 ~ 05416861 n 0000 %s 14738521 n 0000 | a clear liquid secreted into the mouth by the salivary glands and mucous glands of the mouth; moistens the mouth and starts the digestion of starches -05416545 08 n 01 salivary_duct 0 001 @ 05250659 n 0000 | a duct through which saliva passes from the salivary gland into the mouth -05416678 08 n 04 drool 0 dribble 0 drivel 0 slobber 0 005 @ 05416198 n 0000 + 00102974 v 0405 + 00102974 v 0301 + 00102974 v 0206 + 00102974 v 0102 | saliva spilling from the mouth -05416861 08 n 01 tobacco_juice 0 001 @ 05416198 n 0000 | saliva colored brown by tobacco (snuff or chewing tobacco) -05416979 08 n 01 sebum 0 003 @ 05404728 n 0000 + 00992432 a 0103 ~ 05417162 n 0000 | the oily secretion of the sebaceous glands; with perspiration it moistens and protects the skin -05417162 08 n 01 smegma 0 001 @ 05416979 n 0000 | a white secretion of the sebaceous glands of the foreskin -05417272 08 n 01 lochia 0 001 @ 05397468 n 0000 | substance discharged from the vagina (cellular debris and mucus and blood) that gradually decreases in amount during the weeks following childbirth -05417472 08 n 06 pus 0 purulence 0 suppuration 0 ichor 0 sanies 0 festering 0 006 @ 05397468 n 0000 + 02851709 a 0502 + 02851709 a 0401 + 00097179 v 0301 + 00096766 v 0303 ~ 05417698 n 0000 | a fluid product of inflammation -05417698 08 n 01 gleet 0 001 @ 05417472 n 0000 | a thin morbid discharge as from a wound or especially chronic gonorrhea -05417821 08 n 02 leukorrhea 0 leucorrhea 0 001 @ 05415395 n 0000 | discharge of white mucous material from the vagina; often an indication of infection -05417975 08 n 01 blood_vessel 0 007 @ 05397333 n 0000 #p 05511618 n 0000 ~ 05333777 n 0000 ~ 05418177 n 0000 ~ 05418585 n 0000 ~ 05418717 n 0000 ~ 05425910 n 0000 | a vessel in which blood circulates -05418177 08 n 01 ductus_arteriosus 0 003 @ 05417975 n 0000 #p 01459791 n 0000 ~ 05418432 n 0000 | a blood vessel in a fetus that bypasses pulmonary circulation by connecting the pulmonary artery directly to the ascending aorta; normally closes at birth -05418432 08 n 01 patent_ductus_arteriosus 0 001 @ 05418177 n 0000 | a ductus arteriosus that failed to close at birth; may require surgical correction -05418585 08 n 01 vasa_vasorum 0 001 @ 05417975 n 0000 | any small blood vessel ramifying on the outside of a major artery or vein -05418717 08 n 03 vein 0 vena 0 venous_blood_vessel 0 139 @ 05417975 n 0000 #p 05511618 n 0000 + 02642034 a 0101 ~ 05356442 n 0000 ~ 05356657 n 0000 ~ 05356889 n 0000 ~ 05357160 n 0000 ~ 05357366 n 0000 ~ 05357500 n 0000 ~ 05357682 n 0000 ~ 05357867 n 0000 ~ 05358036 n 0000 ~ 05358226 n 0000 ~ 05358345 n 0000 ~ 05358507 n 0000 ~ 05358764 n 0000 ~ 05358944 n 0000 ~ 05359124 n 0000 ~ 05359347 n 0000 ~ 05359516 n 0000 ~ 05359695 n 0000 ~ 05359828 n 0000 ~ 05360470 n 0000 ~ 05360678 n 0000 ~ 05360880 n 0000 ~ 05361123 n 0000 ~ 05361278 n 0000 ~ 05361391 n 0000 ~ 05363270 n 0000 ~ 05363428 n 0000 ~ 05363559 n 0000 ~ 05363676 n 0000 ~ 05364184 n 0000 ~ 05364345 n 0000 ~ 05364448 n 0000 ~ 05364612 n 0000 ~ 05364730 n 0000 ~ 05364905 n 0000 ~ 05365059 n 0000 ~ 05365164 n 0000 ~ 05365284 n 0000 ~ 05365420 n 0000 ~ 05365838 n 0000 ~ 05366043 n 0000 ~ 05366812 n 0000 ~ 05367003 n 0000 ~ 05367165 n 0000 ~ 05367341 n 0000 ~ 05367508 n 0000 ~ 05367735 n 0000 ~ 05367912 n 0000 ~ 05368100 n 0000 ~ 05368739 n 0000 ~ 05368874 n 0000 ~ 05369092 n 0000 ~ 05369254 n 0000 ~ 05369566 n 0000 ~ 05370125 n 0000 ~ 05370293 n 0000 ~ 05370410 n 0000 ~ 05370636 n 0000 ~ 05370781 n 0000 ~ 05370918 n 0000 ~ 05371663 n 0000 ~ 05372125 n 0000 ~ 05372290 n 0000 ~ 05372428 n 0000 ~ 05372593 n 0000 ~ 05372924 n 0000 ~ 05373145 n 0000 ~ 05373300 n 0000 ~ 05373495 n 0000 ~ 05373616 n 0000 ~ 05373790 n 0000 ~ 05373924 n 0000 ~ 05374101 n 0000 ~ 05374280 n 0000 ~ 05374475 n 0000 ~ 05374658 n 0000 ~ 05374861 n 0000 ~ 05374980 n 0000 ~ 05375530 n 0000 ~ 05375729 n 0000 ~ 05375881 n 0000 ~ 05376050 n 0000 ~ 05376219 n 0000 ~ 05376391 n 0000 ~ 05376541 n 0000 ~ 05376721 n 0000 ~ 05376844 n 0000 ~ 05377098 n 0000 ~ 05377252 n 0000 ~ 05377371 n 0000 ~ 05377665 n 0000 ~ 05377833 n 0000 ~ 05378022 n 0000 ~ 05378137 n 0000 ~ 05378234 n 0000 ~ 05379039 n 0000 ~ 05379247 n 0000 ~ 05379635 n 0000 ~ 05379734 n 0000 ~ 05380252 n 0000 ~ 05380404 n 0000 ~ 05380532 n 0000 ~ 05380697 n 0000 ~ 05380822 n 0000 ~ 05381148 n 0000 ~ 05381325 n 0000 ~ 05381491 n 0000 ~ 05381666 n 0000 ~ 05381779 n 0000 ~ 05381956 n 0000 ~ 05382135 n 0000 ~ 05382729 n 0000 ~ 05382855 n 0000 ~ 05383004 n 0000 ~ 05383467 n 0000 ~ 05383598 n 0000 ~ 05384300 n 0000 ~ 05384446 n 0000 ~ 05384560 n 0000 ~ 05384691 n 0000 ~ 05384817 n 0000 ~ 05384999 n 0000 ~ 05421586 n 0000 ~ 05421723 n 0000 ~ 05421900 n 0000 ~ 05421997 n 0000 ~ 05422574 n 0000 ~ 05422668 n 0000 ~ 05423779 n 0000 ~ 05424074 n 0000 ~ 05424199 n 0000 ~ 05425207 n 0000 ~ 05425436 n 0000 ~ 05425581 n 0000 ~ 05425703 n 0000 ~ 05426087 n 0000 | a blood vessel that carries blood from the capillaries toward the heart; "all veins except the pulmonary vein carry unaerated blood" -05421414 08 n 02 venation 0 venous_blood_system 0 003 @ 05237227 n 0000 #p 05511618 n 0000 ;c 06083243 n 0000 | (zoology) the system of venous blood vessels in an animal -05421586 08 n 01 varicose_vein 0 002 @ 05418717 n 0000 @ 14573553 n 0000 | a vein that is permanently dilated; most common in the legs -05421723 08 n 01 vena_bulbi_penis 0 002 @ 05418717 n 0000 #p 05526384 n 0000 | vein of the head of the penis; tributary of the internal pudendal vein that drains the perineum -05421900 08 n 01 vena_canaliculi_cochleae 0 001 @ 05418717 n 0000 | vein of the cochlear canal -05421997 08 n 01 vein_of_penis 0 004 @ 05418717 n 0000 ~ 05422135 n 0000 ~ 05422317 n 0000 ~ 05422457 n 0000 | a vein serving the penis -05422135 08 n 01 venae_dorsales_penis_superficiales 0 001 @ 05421997 n 0000 | superficial dorsal veins of the penis; paired tributaries of the external pudendal veins on each side -05422317 08 n 01 venae_dorsales_penis_profunda 0 001 @ 05421997 n 0000 | deep dorsal vein of the penis; tributary of the prostatic plexus -05422457 08 n 01 vena_profunda_penis 0 001 @ 05421997 n 0000 | deep vein of the penis; enters the prostatic plexus -05422574 08 n 01 vena_bulbi_vestibuli 0 001 @ 05418717 n 0000 | vein of the vestibular bulb -05422668 08 n 01 vena_cava 0 003 @ 05418717 n 0000 ~ 05422852 n 0000 ~ 05423095 n 0000 | either of two large veins that return oxygen-depleted blood to the right atrium of the heart -05422852 08 n 02 inferior_vena_cava 0 postcava 0 001 @ 05422668 n 0000 | receives blood from lower limbs and abdominal organs and empties into the posterior part of the right atrium of the heart; formed from the union of the two iliac veins -05423095 08 n 02 superior_vena_cava 0 precava 0 001 @ 05422668 n 0000 | receives blood from the head and arms and chest and empties into the right atrium of the heart; formed from the azygos and both brachiocephalic veins -05423319 08 n 01 venae_profundae_clitoridis 0 001 @ 05364184 n 0000 | deep veins of the clitoris; join the vesical plexus -05423443 08 n 01 vena_dorsalis_clitoridis_profunda 0 001 @ 05364184 n 0000 | deep dorsal vein of the clitoris; tributary of the vesical venous plexus -05423595 08 n 01 venae_dorsales_clitoridis_superficiales 0 001 @ 05364184 n 0000 | superficial dorsal veins of the clitoris; tributaries of the external pudendal vein on either side -05423779 08 n 01 venae_palpebrales 0 002 @ 05418717 n 0000 #p 05313535 n 0000 | veins of the eyelids -05423882 08 n 01 venae_interlobulares_renis 0 002 @ 05424199 n 0000 #p 05332802 n 0000 | interlobular veins of the kidney; receive blood from the arcuate vein and empty into the renal veins -05424074 08 n 01 venae_interlobulares_hepatis 0 002 @ 05418717 n 0000 #p 05385534 n 0000 | interlobular veins of the liver -05424199 08 n 01 venae_renis 0 003 @ 05418717 n 0000 #p 05332802 n 0000 ~ 05423882 n 0000 | veins of the kidney; drain the kidney into the renal vein -05424351 08 n 02 venae_labiales_anteriores 0 anterior_labial_veins 0 001 @ 05372125 n 0000 | veins from the labia majora to the external pudendal vein -05424504 08 n 02 venae_labiales_posteriores 0 posterior_labial_veins 0 001 @ 05372125 n 0000 | veins that pass posterior from the labia majora to the internal pudendal vein -05424679 08 n 01 venter 1 002 @ 05220461 n 0000 + 00132385 a 0101 | a bulging body part (as the belly of a muscle) -05424796 08 n 01 venter 2 003 @ 05519085 n 0000 ;c 08441203 n 0000 + 00132385 a 0101 | the womb; "`in venter' is legal terminology for `conceived but not yet born'" -05424963 08 n 04 ventral_root 0 ventral_horn 0 anterior_root 0 anterior_horn 0 002 @ 05474738 n 0000 #p 05569053 n 0000 | one of two the two roots of a spinal nerve that passes ventrally from the spinal cord and that consists of motor fibers -05425207 08 n 02 vertebral_vein 0 vena_vertebralis 0 001 @ 05418717 n 0000 | a vein that goes through the foramina of the cervical vertebrae and forms a plexus around the vertebral artery; empties into the brachiocephalic vein -05425436 08 n 02 vesical_vein 0 vena_vesicalis 0 001 @ 05418717 n 0000 | veins that drain the vesical plexus and join the internal iliac veins -05425581 08 n 02 vestibular_vein 0 vena_vestibularis 0 001 @ 05418717 n 0000 | veins that drain the saccule and utricle -05425703 08 n 03 vortex_vein 0 vorticose_vein 0 vena_vorticosum 0 001 @ 05418717 n 0000 | a vein formed by branches from the back surface of the eye and the ciliary body; empties into the ophthalmic veins -05425910 08 n 02 capillary 0 capillary_vessel 0 003 @ 05417975 n 0000 ~ 05247804 n 0000 ~ 05248006 n 0000 | any of the minute blood vessels connecting arterioles with venules -05426087 08 n 03 venule 0 venula 0 capillary_vein 0 003 @ 05418717 n 0000 ~ 05366640 n 0000 ~ 05381036 n 0000 | a minute vein continuous with a capillary -05426243 08 n 02 membrane 0 tissue_layer 0 033 @ 05267548 n 0000 + 01177704 a 0101 ~ 01462209 n 0000 ~ 01473620 n 0000 ~ 01898328 n 0000 ~ 05247621 n 0000 ~ 05286167 n 0000 ~ 05286272 n 0000 ~ 05310790 n 0000 ~ 05313115 n 0000 ~ 05313344 n 0000 ~ 05317354 n 0000 ~ 05318606 n 0000 ~ 05318831 n 0000 ~ 05319028 n 0000 ~ 05319144 n 0000 ~ 05319279 n 0000 ~ 05319419 n 0000 ~ 05319588 n 0000 ~ 05319760 n 0000 ~ 05319936 n 0000 ~ 05326060 n 0000 ~ 05326900 n 0000 ~ 05327134 n 0000 ~ 05327373 n 0000 ~ 05327652 n 0000 ~ 05426989 n 0000 ~ 05427570 n 0000 ~ 05447423 n 0000 ~ 05605944 n 0000 ~ 05606247 n 0000 ~ 05606633 n 0000 %s 14982681 n 0000 | a pliable sheet of tissue that covers or lines or connects the organs or cells of animals or plants -05426989 08 n 01 retina 0 011 @ 05426243 n 0000 #p 05311054 n 0000 + 02979139 a 0101 %p 05240850 n 0000 %p 05455375 n 0000 %p 05455563 n 0000 %p 05455690 n 0000 %p 05455912 n 0000 %p 05456082 n 0000 %p 05456257 n 0000 %p 05456456 n 0000 | the innermost light-sensitive membrane covering the back wall of the eyeball; it is continuous with the optic nerve -05427346 08 n 02 ganglion_cell 0 gangliocyte 0 001 @ 05465567 n 0000 | a nerve cell whose body is outside the central nervous system; "damage to ganglion cells in the retina may play a role in the development of glaucoma" -05427570 08 n 01 sarcolemma 0 003 @ 05426243 n 0000 + 02791943 a 0101 + 03007718 a 0101 | an extensible membrane enclosing the contractile substance of a muscle fiber -05427739 08 n 01 peritoneum 0 004 @ 05605944 n 0000 + 03001012 a 0101 ~ 05429195 n 0000 ~ 05429525 n 0000 | a transparent membrane that lines the abdominal cavity in mammals and covers most of the viscera -05427946 08 n 02 peritoneal_cavity 0 greater_peritoneal_sac 0 002 @ 05303402 n 0000 %p 05428136 n 0000 | the interior of the peritoneum; a potential space between layers of the peritoneum -05428136 08 n 03 bursa_omentalis 0 omental_bursa 0 lesser_peritoneal_cavity 0 002 @ 05303402 n 0000 #p 05427946 n 0000 | an isolated part of the peritoneal cavity that is dorsal to the stomach -05428331 08 n 01 endocardium 0 001 @ 05605944 n 0000 | the membrane that lines the cavities of the heart and forms part of the heart valves -05428473 08 n 01 pericardium 0 004 @ 05605944 n 0000 + 02856654 a 0101 %p 05428645 n 0000 %p 05428794 n 0000 | a serous membrane with two layers that surrounds the heart -05428645 08 n 02 epicardium 0 visceral_pericardium 0 002 @ 05605944 n 0000 #p 05428473 n 0000 | the innermost of the two layers of the pericardium -05428794 08 n 01 parietal_pericardium 0 002 @ 05605944 n 0000 #p 05428473 n 0000 | the tough outermost layer of the pericardium that is attached to the diaphragm and the sternum -05428974 08 n 02 pericardial_cavity 0 pericardial_space 0 001 @ 05303402 n 0000 | the space between the layers of the pericardium that contains fluid that lubricates the membrane surfaces and allows easy heart movement -05429195 08 n 01 mesentery 0 003 @ 05427739 n 0000 + 03009476 a 0101 ~ 05429404 n 0000 | a double layer of peritoneum that attaches to the back wall of the abdominal cavity and supports the small intestines -05429404 08 n 01 mesocolon 0 001 @ 05429195 n 0000 | mesentery that holds the lower colon to the dorsal abdominal wall -05429525 08 n 01 omentum 0 003 @ 05427739 n 0000 ~ 05429658 n 0000 ~ 05429840 n 0000 | a fold of peritoneum supporting the viscera -05429658 08 n 03 greater_omentum 0 gastrocolic_omentum 0 caul 1 001 @ 05429525 n 0000 | part of the peritoneum attached to the stomach and to the colon and covering the intestines -05429840 08 n 01 lesser_omentum 0 001 @ 05429525 n 0000 | a part of the peritoneum attached to the stomach and liver and supporting the hepatic vessels -05429994 08 n 01 submucosa 0 001 @ 05286536 n 0000 | the connective tissue beneath mucous membrane -05430095 08 n 03 lymph_node 0 lymph_gland 0 node 1 006 @ 05287882 n 0000 #p 05511618 n 0000 #p 05460870 n 0000 ~ 05430300 n 0000 ~ 05430454 n 0000 ~ 14315722 n 0000 | the source of lymph and lymphocytes -05430300 08 n 01 axillary_node 0 001 @ 05430095 n 0000 | any of the lymph glands of the armpit; fights infections in the neck and chest and arm regions -05430454 08 n 02 Peyer's_patch 0 Peter's_gland 0 001 @ 05430095 n 0000 | any of several lymph nodes in the walls of the intestines near the junction of the ileum and colon -05430628 08 n 02 somatic_cell 0 vegetative_cell 0 017 @ 00006484 n 0000 ~ 05241072 n 0000 ~ 05241827 n 0000 ~ 05431177 n 0000 ~ 05447599 n 0000 ~ 05449268 n 0000 ~ 05450888 n 0000 ~ 05455912 n 0000 ~ 05456622 n 0000 ~ 05459232 n 0000 ~ 05465071 n 0000 ~ 05465567 n 0000 ~ 05467432 n 0000 ~ 05470013 n 0000 ~ 05607602 n 0000 ~ 05607863 n 0000 ~ 05608206 n 0000 | any of the cells of a plant or animal except the reproductive cells; a cell that does not participate in the production of gametes; "somatic cells are produced from preexisting cells"; -05431177 08 n 01 neoplastic_cell 0 002 @ 05430628 n 0000 ~ 05431285 n 0000 | a cell that is part of tumor -05431285 08 n 01 cancer_cell 0 002 @ 05431177 n 0000 #p 14237561 n 0000 | a cell that is part of a malignant tumor -05431402 08 n 01 blastema 0 004 @ 00006484 n 0000 + 03049812 a 0103 + 03049812 a 0102 + 03049812 a 0101 | a mass of undifferentiated cells from which an organ or body part develops -05431585 08 n 02 energid 0 protoplast 0 002 @ 05220461 n 0000 #p 00006484 n 0000 | a biological unit consisting of a nucleus and the body of cytoplasm with which it interacts -05431762 08 n 01 pronucleus 0 001 @ 05434927 n 0000 | the nucleus of the ovum or sperm after fertilization but before they fuse to form the nucleus of the zygote -05431926 08 n 02 zygote 0 fertilized_ovum 0 006 @ 00006484 n 0000 ;c 00004475 n 0000 ;c 06075527 n 0000 + 02882275 a 0101 ~ 05432230 n 0000 ~ 05432420 n 0000 | (genetics) the diploid cell resulting from the union of a haploid spermatozoon and ovum (including the organism that develops from that cell) -05432230 08 n 01 heterozygote 0 002 @ 05431926 n 0000 ;c 06075527 n 0000 | (genetics) an organism having two different alleles of a particular gene and so giving rise to varying offspring -05432420 08 n 01 homozygote 0 002 @ 05431926 n 0000 ;c 06075527 n 0000 | (genetics) an organism having two identical alleles of a particular gene and so breeding true for the particular characteristic -05432623 08 n 01 parthenote 0 002 @ 00006484 n 0000 ;c 00004475 n 0000 | a cell resulting from parthenogenesis -05432736 08 n 02 protoplasm 0 living_substance 0 005 @ 00019613 n 0000 ~ 05432948 n 0000 ~ 05434784 n 0000 ~ 05435722 n 0000 ~ 15023959 n 0000 | the substance of a living cell (including cytoplasm and nucleus) -05432948 08 n 02 cytoplasm 0 cytol 0 017 @ 05432736 n 0000 #p 00006484 n 0000 + 02708931 a 0101 + 02708776 a 0101 + 02708776 a 0102 ~ 01428003 n 0000 ~ 05433400 n 0000 %p 05433496 n 0000 ~ 05433709 n 0000 ~ 05433856 n 0000 ~ 05433953 n 0000 ~ 05434053 n 0000 %p 05434361 n 0000 %p 05434557 n 0000 ~ 05446767 n 0000 ~ 05446971 n 0000 ~ 05605762 n 0000 | the protoplasm of a cell excluding the nucleus; is full of proteins that control cell metabolism -05433400 08 n 01 cytoplast 0 001 @ 05432948 n 0000 | the intact cytoplasmic content of a cell -05433496 08 n 01 cytoskeleton 0 002 @ 05225602 n 0000 #p 05432948 n 0000 | a microscopic network of actin filaments and microtubules in the cytoplasm of many living cells that gives the cell shape and coherence -05433709 08 n 01 cytosol 0 001 @ 05432948 n 0000 | the aqueous part of the cytoplasm within which various particles and organelles are suspended -05433856 08 n 01 ectoplasm 0 001 @ 05432948 n 0000 | the outer granule-free layer of cytoplasm -05433953 08 n 01 endoplasm 0 001 @ 05432948 n 0000 | the inner portion of the cytoplasm of a cell -05434053 08 n 02 hyaloplasm 0 ground_substance 1 002 @ 05432948 n 0000 + 02744460 a 0101 | the clear nongranular portion of the cytoplasm of a cell -05434203 08 n 01 lysosome 0 001 @ 05445668 n 0000 | an organelle found in the cytoplasm of most cells (especially in leukocytes and liver and kidney cells) -05434361 08 n 01 microsome 0 003 @ 09291513 n 0000 #p 05432948 n 0000 + 03019219 a 0101 | a tiny granule in the cytoplasm that is where protein synthesis takes place under the direction of mRNA -05434557 08 n 04 Golgi_body 0 Golgi_apparatus 0 Golgi_complex 0 dictyosome 0 002 @ 05517578 n 0000 #p 05432948 n 0000 | a netlike structure in the cytoplasm of animal cells (especially in those cells that produce secretions) -05434784 08 n 02 nucleoplasm 0 karyoplasm 0 002 @ 05432736 n 0000 #s 05434927 n 0000 | the protoplasm that constitutes the nucleus of a cell -05434927 08 n 03 nucleus 0 cell_nucleus 0 karyon 0 011 @ 05445668 n 0000 #p 00006484 n 0000 + 02626274 v 0101 ~ 05431762 n 0000 %s 05434784 n 0000 %p 05435277 n 0000 %p 05436080 n 0000 %p 05436381 n 0000 %p 05436548 n 0000 %p 05442131 n 0000 ~ 05498581 n 0000 | a part of the cell containing DNA and RNA and responsible for growth and reproduction -05435277 08 n 02 nucleolus 0 nucleole 0 002 @ 05445668 n 0000 #p 05434927 n 0000 | a small round body of protein in a cell nucleus; such organelles contain RNA and are involved in protein synthesis -05435477 08 n 04 nucleolus_organizer 0 nucleolus_organiser 0 nucleolar_organizer 0 nucleolar_organiser 0 002 @ 05225602 n 0000 #p 05442131 n 0000 | the particular part of a chromosome that is associated with a nucleolus after nuclear division -05435722 08 n 02 germ_plasm 0 plasm 0 001 @ 05432736 n 0000 | the protoplasm of the germ cells that contains chromosomes and genes -05435855 08 n 01 sex_chromatin 0 001 @ 05436080 n 0000 | chromatin found only in female cells; "the presence or absence of sex chromatin in cells obtained by amniocentesis makes it possible to determine the sex of a fetus" -05436080 08 n 02 chromatin 0 chromatin_granule 0 005 @ 05263850 n 0000 #p 05434927 n 0000 #p 05442131 n 0000 + 02696234 a 0101 ~ 05435855 n 0000 | the readily stainable substance of a cell nucleus consisting of DNA and RNA and various proteins; during mitotic division it condenses into chromosomes -05436381 08 n 01 achromatin 0 003 @ 05263850 n 0000 #p 05434927 n 0000 + 02696638 a 0101 | the part of a cell nucleus that is relatively uncolored by stains or dyes -05436548 08 n 01 linin 0 002 @ 05263850 n 0000 #p 05434927 n 0000 | an obsolete term for the network of viscous material in the cell nucleus on which the chromatin granules were thought to be suspended -05436752 08 n 03 gene 0 cistron 0 factor 0 030 @ 08459252 n 0000 #p 14830364 n 0000 #p 05442131 n 0000 ;c 06075527 n 0000 ;c 06078088 n 0000 + 02734544 a 0103 + 02734192 a 0102 + 02734544 a 0101 + 02734192 a 0101 ~ 05437600 n 0000 ~ 05437785 n 0000 ~ 05438483 n 0000 ~ 05438642 n 0000 ~ 05438956 n 0000 ~ 05439100 n 0000 ~ 05439286 n 0000 ~ 05439413 n 0000 ~ 05439942 n 0000 ~ 05440046 n 0000 ~ 05440410 n 0000 ~ 05440555 n 0000 ~ 05440756 n 0000 ~ 05440875 n 0000 ~ 05441053 n 0000 ~ 05441224 n 0000 ~ 05441338 n 0000 ~ 05441468 n 0000 ~ 05441686 n 0000 ~ 05441929 n 0000 ~ 05442022 n 0000 | (genetics) a segment of DNA that is involved in producing a polypeptide chain; it can include regions preceding and following the coding DNA as well as introns between the exons; it is considered a unit of heredity; "genes were formerly called factors" -05437600 08 n 01 dominant_gene 0 001 @ 05436752 n 0000 | gene that produces the same phenotype in the organism whether or not its allele identical; "the dominant gene for brown eyes" -05437785 08 n 02 allele 0 allelomorph 0 005 @ 05436752 n 0000 ;c 06075527 n 0000 + 02612400 a 0101 ~ 05438130 n 0000 ~ 05438315 n 0000 | (genetics) either of a pair (or series) of alternative forms of a gene that can occupy the same locus on a particular chromosome and that control the same character; "some alleles are dominant over others" -05438130 08 n 02 dominant_allele 0 dominant 0 002 @ 05437785 n 0000 + 00793793 a 0201 | an allele that produces the same phenotype whether its paired allele is identical or different -05438315 08 n 02 recessive_allele 0 recessive 0 001 @ 05437785 n 0000 | an allele that produces its characteristic phenotype only when its paired allele is identical -05438483 08 n 01 genetic_marker 0 001 @ 05436752 n 0000 | a specific gene that produces a recognizable trait and can be used in family or population studies -05438642 08 n 01 homeotic_gene 0 002 @ 05436752 n 0000 ~ 05438778 n 0000 | one the genes that are involved in embryologic development -05438778 08 n 02 homeobox 0 homeobox_gene 0 001 @ 05438642 n 0000 | one of various similar homeotic genes that are involved in bodily segmentation during embryonic development -05438956 08 n 01 lethal_gene 0 001 @ 05436752 n 0000 | any gene that has an effect that causes the death of the organism at any stage of life -05439100 08 n 02 linkage_group 0 linked_genes 0 001 @ 05436752 n 0000 | any pair of genes that tend to be transmitted together; "the genes of Drosophila fall into four linkage groups" -05439286 08 n 02 modifier 0 modifier_gene 0 001 @ 05436752 n 0000 | a gene that modifies the effect produced by another gene -05439413 08 n 01 mutant_gene 0 002 @ 05436752 n 0000 ~ 05439810 n 0000 | a gene that has changed so that the normal transmission and expression of a trait is affected -05439582 08 n 01 haplotype 0 002 @ 07963711 n 0000 ;c 06075527 n 0000 | (genetics) a combination of alleles (for different genes) that are located closely together on the same chromosome and that tend to be inherited together -05439810 08 n 02 cystic_fibrosis_transport_regulator 0 CFTR 0 001 @ 05439413 n 0000 | the gene that is mutated in cystic fibrosis -05439942 08 n 01 nonallele 0 001 @ 05436752 n 0000 | genes that are not competitors at the same locus -05440046 08 n 01 operator_gene 0 002 @ 05436752 n 0000 #p 05440207 n 0000 | a gene that activates the production of messenger RNA by adjacent structural genes -05440207 08 n 01 operon 0 003 @ 14830364 n 0000 %p 05440046 n 0000 %p 05441053 n 0000 | a segment of DNA containing adjacent genes including structural genes and an operator gene and a regulatory gene -05440410 08 n 02 oncogene 0 transforming_gene 0 001 @ 05436752 n 0000 | a gene that disposes normal cells to change into cancerous tumor cells -05440555 08 n 01 polygene 0 002 @ 05436752 n 0000 + 01315025 a 0101 | a gene that by itself has little effect on the phenotype but which can act together with others to produce observable variations -05440756 08 n 01 proto-oncogene 0 001 @ 05436752 n 0000 | a normal gene that has the potential to become an oncogene -05440875 08 n 01 recessive_gene 0 001 @ 05436752 n 0000 | gene that produces its characteristic phenotype only when its allele is identical; "the recessive gene for blue eyes" -05441053 08 n 02 regulatory_gene 0 regulator_gene 0 002 @ 05436752 n 0000 #p 05440207 n 0000 | a gene that produces a repressor substance that inhibits an operator gene -05441224 08 n 01 repressor_gene 0 001 @ 05436752 n 0000 | gene that prevents a nonallele from being transcribed -05441338 08 n 01 structural_gene 0 001 @ 05436752 n 0000 | a gene that controls the production of a specific protein or peptide -05441468 08 n 04 suppressor 0 suppresser 0 suppressor_gene 0 suppresser_gene 0 002 @ 05436752 n 0000 ~ 05441806 n 0000 | a gene that suppresses the phenotypic expression of another gene (especially of a mutant gene) -05441686 08 n 01 transgene 0 001 @ 05436752 n 0000 | an exogenous gene introduced into the genome of another organism -05441806 08 n 01 tumor_suppressor_gene 0 001 @ 05441468 n 0000 | a suppressor gene that blocks unscheduled cell division -05441929 08 n 01 X-linked_gene 0 001 @ 05436752 n 0000 | a gene located on an X chromosome -05442022 08 n 02 Y-linked_gene 0 holandric_gene 0 001 @ 05436752 n 0000 | a gene located on a Y chromosome -05442131 08 n 01 chromosome 0 015 @ 09224911 n 0000 #p 05434927 n 0000 + 02956752 a 0101 %p 05435477 n 0000 %p 05436080 n 0000 %p 05436752 n 0000 ~ 05443651 n 0000 ~ 05443966 n 0000 %p 05444175 n 0000 %p 05444324 n 0000 ~ 05444610 n 0000 ~ 05444709 n 0000 ~ 05445099 n 0000 ~ 05445247 n 0000 %p 05610520 n 0000 | a threadlike strand of DNA in the cell nucleus that carries the genes in a linear order; "humans have 22 chromosome pairs plus two sex chromosomes" -05442594 08 n 01 X_chromosome 0 001 @ 05443651 n 0000 | the sex chromosome that is present in both sexes: singly in males and doubly in females; "human females normally have two X chromosomes" -05442789 08 n 01 XX 0 002 @ 05443651 n 0000 ;c 06075527 n 0000 | (genetics) normal complement of sex chromosomes in a female -05442916 08 n 01 XXX 0 002 @ 05443651 n 0000 ;c 06075527 n 0000 | (genetics) abnormal complement of three X chromosomes in a female -05443050 08 n 01 XXY 0 002 @ 05443651 n 0000 ;c 06075527 n 0000 | (genetics) abnormal complement of sex hormones in a male resulting in Klinefelter's syndrome -05443211 08 n 01 XY 0 002 @ 05443651 n 0000 ;c 06075527 n 0000 | (genetics) normal complement of sex hormones in a male -05443333 08 n 01 XYY 0 002 @ 05443651 n 0000 ;c 06075527 n 0000 | (genetics) abnormal complement of sex hormones in a male who has two Y chromosomes -05443484 08 n 01 Y_chromosome 0 001 @ 05443651 n 0000 | the sex chromosome that is carried by men; "human males normally have one X chromosome and one Y chromosome" -05443651 08 n 01 sex_chromosome 0 009 @ 05442131 n 0000 ;c 06075527 n 0000 ~ 05442594 n 0000 ~ 05442789 n 0000 ~ 05442916 n 0000 ~ 05443050 n 0000 ~ 05443211 n 0000 ~ 05443333 n 0000 ~ 05443484 n 0000 | (genetics) a chromosome that determines the sex of an individual; "mammals normally have two sex chromosomes" -05443966 08 n 02 autosome 0 somatic_chromosome 0 002 @ 05442131 n 0000 + 02956502 a 0101 | any chromosome that is not a sex chromosome; appear in pairs in body cells but as single chromosomes in spermatozoa -05444175 08 n 01 chromatid 0 002 @ 14867858 n 0000 #p 05442131 n 0000 | one of two identical strands into which a chromosome splits during mitosis -05444324 08 n 02 centromere 0 kinetochore 0 003 @ 05225602 n 0000 #p 05442131 n 0000 + 03139930 a 0101 | a specialized condensed region of each chromosome that appears during mitosis where the chromatids are held together to form an X shape; "the centromere is difficult to sequence" -05444610 08 n 01 acentric_chromosome 0 001 @ 05442131 n 0000 | a chromosome lacking a centromere -05444709 08 n 01 acrocentric_chromosome 0 001 @ 05442131 n 0000 | a chromosome with the centromere near one end so that one chromosomal arm is short and one is long -05444876 08 n 01 karyotype 0 001 @ 04933544 n 0000 | the appearance of the chromosomal makeup of a somatic cell in an individual or species (including the number and arrangement and size and structure of the chromosomes) -05445099 08 n 01 metacentric_chromosome 0 001 @ 05442131 n 0000 | a chromosome having two equal arms because the centromere is in median position -05445247 08 n 01 telocentric_chromosome 0 001 @ 05442131 n 0000 | a chromosome like a straight rod with the centromere in terminal position -05445389 08 n 02 mitochondrion 0 chondriosome 0 002 @ 05445668 n 0000 ~ 05445546 n 0000 | an organelle containing enzymes responsible for producing energy -05445546 08 n 01 sarcosome 0 002 @ 05445389 n 0000 + 03007826 a 0101 | a large mitochondrion in a striated muscle fiber -05445668 08 n 03 organelle 0 cell_organelle 0 cell_organ 0 009 @ 05297523 n 0000 #p 00006484 n 0000 ~ 01458105 n 0000 ~ 05434203 n 0000 ~ 05434927 n 0000 ~ 05435277 n 0000 ~ 05445389 n 0000 ~ 05446181 n 0000 ~ 05446394 n 0000 | a specialized part of a cell; analogous to an organ; "the first organelle to be identified was the nucleus" -05446006 08 n 01 aster 0 001 @ 05225602 n 0000 | star-shaped structure formed in the cytoplasm of a cell having fibers like rays that surround the centrosome during mitosis -05446181 08 n 01 centriole 0 001 @ 05445668 n 0000 | one of a pair of small cylindrical cell organelles near the nucleus in animal cells; composed of nine triplet microtubules and form the asters during mitosis -05446394 08 n 01 ribosome 0 001 @ 05445668 n 0000 | an organelle in the cytoplasm of a living cell; they attach to mRNA and move down it one codon at a time and then stop until tRNA brings the required amino acid; when it reaches a stop codon it falls apart and releases the completed protein molecule for use by the cell; "the ribosome is the site of protein synthesis" -05446767 08 n 02 centrosome 0 central_body 0 002 @ 05432948 n 0000 + 02688263 a 0101 | small region of cytoplasm adjacent to the nucleus; contains the centrioles and serves to organize the microtubules -05446971 08 n 01 sarcoplasm 0 002 @ 05432948 n 0000 #p 05459953 n 0000 | the cytoplasm of a striated muscle fiber -05447087 08 n 01 vacuole 0 002 @ 05303402 n 0000 #p 00006484 n 0000 | a tiny cavity filled with fluid in the cytoplasm of a cell -05447218 08 n 02 sclera 0 sclerotic_coat 0 002 @ 05606528 n 0000 #p 05311054 n 0000 | the whitish fibrous membrane (albuginea) that with the cornea forms the outer covering and protection of the eyeball -05447423 08 n 01 semipermeable_membrane 0 002 @ 05426243 n 0000 ~ 05312782 n 0000 | a membrane (as a cell membrane) that allows some molecules to pass through but not others -05447599 08 n 01 bone_cell 0 005 @ 05430628 n 0000 #p 05269901 n 0000 ~ 05448928 n 0000 ~ 05449073 n 0000 ~ 05449196 n 0000 | a cell that is part of a bone -05447757 08 n 02 embryonic_cell 0 formative_cell 0 007 @ 00006484 n 0000 ~ 05447962 n 0000 ~ 05448053 n 0000 ~ 05448149 n 0000 ~ 05448257 n 0000 ~ 05448400 n 0000 ~ 05448501 n 0000 | a cell of an embryo -05447962 08 n 01 blastocyte 0 001 @ 05447757 n 0000 | an undifferentiated embryonic cell -05448053 08 n 01 ameloblast 0 001 @ 05447757 n 0000 | a cell from which tooth enamel develops -05448149 08 n 02 osteoblast 0 bone-forming_cell 0 001 @ 05447757 n 0000 | a cell from which bone develops -05448257 08 n 01 erythroblast 0 002 @ 05447757 n 0000 ~ 05448827 n 0000 | a nucleated cell in bone marrow from which red blood cells develop -05448400 08 n 01 fibroblast 0 001 @ 05447757 n 0000 | a cell from which connective tissue develops -05448501 08 n 01 neuroblast 0 001 @ 05447757 n 0000 | a cell from which a nerve cell develops -05448597 08 n 01 myelocyte 0 001 @ 05449959 n 0000 | an immature leukocyte normally found in bone marrow -05448704 08 n 01 myeloblast 0 001 @ 05449959 n 0000 | a precursor of leukocytes that normally occurs only in bone marrow -05448827 08 n 01 sideroblast 0 001 @ 05448257 n 0000 | an erythroblast having granules of ferritin -05448928 08 n 01 megakaryocyte 0 002 @ 05447599 n 0000 + 03012477 a 0101 | a large bone marrow cell; regarded as the source of blood platelets -05449073 08 n 01 osteoclast 0 001 @ 05447599 n 0000 | cell that functions in the breakdown and resorption of bone tissue -05449196 08 n 01 osteocyte 0 001 @ 05447599 n 0000 | mature bone cell -05449268 08 n 03 blood_cell 0 blood_corpuscle 0 corpuscle 0 006 @ 05430628 n 0000 #p 05399847 n 0000 + 02984998 a 0301 ~ 05449959 n 0000 ~ 05450370 n 0000 ~ 05454070 n 0000 | either of two types of cells (erythrocytes and leukocytes) and sometimes including platelets -05449538 08 n 03 akaryocyte 0 akaryote 0 acaryote 0 001 @ 00006484 n 0000 | a cell without a nucleus (as an erythrocyte) -05449661 08 n 02 megalocyte 0 macrocyte 0 001 @ 05454070 n 0000 | abnormally large red blood cell (associated with pernicious anemia) -05449797 08 n 01 megaloblast 0 002 @ 05454070 n 0000 + 03012599 a 0101 | abnormally large red blood cell present in pernicious anemia and folic acid deficiency -05449959 08 n 07 leukocyte 0 leucocyte 0 white_blood_cell 0 white_cell 0 white_blood_corpuscle 0 white_corpuscle 0 WBC 0 010 @ 05449268 n 0000 @ 05451265 n 0000 ~ 05448597 n 0000 ~ 05448704 n 0000 ~ 05451384 n 0000 ~ 05453145 n 0000 ~ 05453267 n 0000 ~ 05453523 n 0000 ~ 05453657 n 0000 ~ 05453943 n 0000 | blood cells that engulf and digest bacteria and fungi; an important part of the body's defense system -05450370 08 n 01 packed_cells 0 001 @ 05449268 n 0000 | a preparation of blood cells separated from the liquid plasma; "packed cells are given to severely anemic patients in order to avoid overloading the circulatory system with too much fluid" -05450617 08 n 01 histiocyte 0 002 @ 05450740 n 0000 #p 05286536 n 0000 | a macrophage that is found in connective tissue -05450740 08 n 01 macrophage 0 002 @ 05450888 n 0000 ~ 05450617 n 0000 | a large phagocyte; some are fixed and other circulate in the blood stream -05450888 08 n 02 phagocyte 0 scavenger_cell 0 005 @ 05430628 n 0000 + 02776576 a 0101 ~ 05450740 n 0000 ~ 05451099 n 0000 ~ 05451265 n 0000 | a cell that engulfs and digests debris and invading microorganisms -05451099 08 n 01 fixed_phagocyte 0 001 @ 05450888 n 0000 | a phagocyte that does not circulate in the blood but is fixed in the liver or spleen or bone marrow etc. -05451265 08 n 01 free_phagocyte 0 002 @ 05450888 n 0000 ~ 05449959 n 0000 | a phagocyte that circulates in the blood -05451384 08 n 02 lymphocyte 0 lymph_cell 0 007 @ 05449959 n 0000 #p 05396366 n 0000 + 02831143 a 0101 ~ 05451695 n 0000 ~ 05451981 n 0000 ~ 05452765 n 0000 ~ 05452845 n 0000 | an agranulocytic leukocyte that normally makes up a quarter of the white blood cell count but increases in the presence of infection -05451695 08 n 02 B_cell 0 B_lymphocyte 0 001 @ 05451384 n 0000 | a lymphocyte derived from bone marrow that provides humoral immunity; it recognizes free antigen molecules in solution and matures into plasma cells that secrete immunoglobulin (antibodies) that inactivate the antigens -05451981 08 n 02 T_cell 0 T_lymphocyte 0 003 @ 05451384 n 0000 ~ 05452204 n 0000 ~ 05452516 n 0000 | a small lymphocyte developed in the thymus; it orchestrates the immune system's response to infected or malignant cells -05452204 08 n 04 helper_T_cell 0 helper_cell 0 CD4_T_cell 0 CD4_cell 0 001 @ 05451981 n 0000 | T cell with CD4 receptor that recognizes antigens on the surface of a virus-infected cell and secretes lymphokines that stimulate B cells and killer T cells; helper T cells are infected and killed by the AIDS virus -05452516 08 n 05 killer_T_cell 0 killer_cell 0 cytotoxic_T_cell 0 CD8_T_cell 0 CD8_cell 0 001 @ 05451981 n 0000 | T cell with CD8 receptor that recognizes antigens on the surface of a virus-infected cell and binds to the infected cell and kill it -05452765 08 n 01 lymphoblast 0 001 @ 05451384 n 0000 | an immature lymphocyte -05452845 08 n 02 plasma_cell 0 plasmacyte 0 002 @ 05451384 n 0000 ~ 05453057 n 0000 | a cell that develops from a B lymphocyte in reaction to a specific antigen; found in bone marrow and sometimes in the blood -05453057 08 n 01 plasmablast 0 001 @ 05452845 n 0000 | the precursor of a plasma cell -05453145 08 n 01 granulocyte 0 002 @ 05449959 n 0000 + 03009253 a 0101 | a leukocyte that has granules in its cytoplasm -05453267 08 n 01 monocyte 0 002 @ 05449959 n 0000 ~ 05453412 n 0000 | a type of granular leukocyte that functions in the ingestion of bacteria -05453412 08 n 01 monoblast 0 001 @ 05453267 n 0000 | a large immature monocyte normally found in bone marrow -05453523 08 n 02 basophil 0 basophile 0 001 @ 05449959 n 0000 | a leukocyte with basophilic granules easily stained by basic stains -05453657 08 n 02 neutrophil 0 neutrophile 0 002 @ 05449959 n 0000 ~ 05453815 n 0000 | the chief phagocytic leukocyte; stains with either basic or acid dyes -05453815 08 n 01 microphage 0 002 @ 05453657 n 0000 ;c 01348530 n 0000 | a neutrophil that ingests small things (as bacteria) -05453943 08 n 02 eosinophil 0 eosinophile 0 002 @ 05449959 n 0000 + 03010071 a 0101 | a leukocyte readily stained with eosin -05454070 08 n 03 red_blood_cell 0 RBC 0 erythrocyte 0 011 @ 05449268 n 0000 ~ 05449661 n 0000 ~ 05449797 n 0000 ~ 05454452 n 0000 ~ 05454578 n 0000 ~ 05454702 n 0000 ~ 05454833 n 0000 ~ 05454978 n 0000 ~ 05455113 n 0000 ~ 05455206 n 0000 %s 15024240 n 0000 | a mature blood cell that contains hemoglobin to carry oxygen to the bodily tissues; a biconcave disc that has no nucleus -05454452 08 n 01 acanthocyte 0 001 @ 05454070 n 0000 | an abnormal red blood cell that has thorny projections of protoplasm -05454578 08 n 01 microcyte 0 001 @ 05454070 n 0000 | an abnormally small red blood cell (less than 5 microns in diameter) -05454702 08 n 01 reticulocyte 0 001 @ 05454070 n 0000 | an immature red blood cell containing a network of filaments or granules -05454833 08 n 01 sickle_cell 0 001 @ 05454070 n 0000 | an abnormal red blood cell that has a crescent shape and an abnormal form of hemoglobin -05454978 08 n 01 siderocyte 0 001 @ 05454070 n 0000 | an abnormal red blood cell containing granules of iron not bound in hemoglobin -05455113 08 n 01 spherocyte 0 001 @ 05454070 n 0000 | an abnormal spherical red blood cell -05455206 08 n 01 target_cell 0 001 @ 05454070 n 0000 | an abnormal red blood cell with the appearance of a dark ring surrounding a dark center; associated with anemia -05455375 08 n 02 fovea 0 fovea_centralis 0 002 @ 05221895 n 0000 #p 05426989 n 0000 | area consisting of a small depression in the retina containing cones and where vision is most acute -05455563 08 n 01 parafovea 0 002 @ 05221895 n 0000 #p 05426989 n 0000 | area of the retina immediately surrounding the fovea -05455690 08 n 04 macula 0 macula_lutea 0 macular_area 0 yellow_spot 0 002 @ 05221895 n 0000 #p 05426989 n 0000 | a small yellowish central area of the retina that is rich in cones and that mediates clear detailed vision -05455912 08 n 01 visual_cell 0 004 @ 05430628 n 0000 #p 05426989 n 0000 ~ 05456257 n 0000 ~ 05456456 n 0000 | one of the cells of the retina that is sensitive to light -05456082 08 n 03 blind_spot 0 optic_disc 0 optic_disk 0 002 @ 08620061 n 0000 #p 05426989 n 0000 | the point where the optic nerve enters the retina; not sensitive to light -05456257 08 n 03 cone 0 cone_cell 0 retinal_cone 0 003 @ 05455912 n 0000 #p 05426989 n 0000 %p 15088669 n 0000 | a visual receptor cell in the retina that is sensitive to bright light and to color -05456456 08 n 03 rod 0 rod_cell 0 retinal_rod 0 003 @ 05455912 n 0000 #p 05426989 n 0000 %p 15088869 n 0000 | a visual receptor cell that is sensitive to dim light -05456622 08 n 02 fat_cell 0 adipose_cell 0 002 @ 05430628 n 0000 %s 14864360 n 0000 | cells composed of fat -05456732 08 n 03 reproductive_cell 0 germ_cell 0 sex_cell 0 003 @ 00006484 n 0000 #p 05509146 n 0000 ~ 05456945 n 0000 | a spermatozoon or an ovum; a cell responsible for transmitting DNA to the next generation -05456945 08 n 01 gamete 0 008 @ 05456732 n 0000 ~ 05457201 n 0000 ~ 05457343 n 0000 ~ 05457469 n 0000 ~ 05457973 n 0000 ~ 05459101 n 0000 ~ 11549391 n 0000 ~ 13095543 n 0000 | a mature sexual reproductive cell having a single set of unpaired chromosomes -05457201 08 n 01 anisogamete 0 002 @ 05456945 n 0000 + 02624834 a 0101 | either of a pair of unlike gametes especially those unlike in size -05457343 08 n 01 isogamete 0 001 @ 05456945 n 0000 | either of a pair of conjugating gametes of the same size and structure -05457469 08 n 04 sperm 0 sperm_cell 0 spermatozoon 0 spermatozoan 0 007 @ 05456945 n 0000 #p 05513807 n 0000 #p 05404336 n 0000 + 02800529 a 0102 + 02800529 a 0101 %p 01458302 n 0000 %p 05457795 n 0000 | the male reproductive cell; the male gamete; "a sperm is mostly a nucleus surrounded by little other cellular material" -05457795 08 n 01 acrosome 0 002 @ 05470189 n 0000 #p 05457469 n 0000 | a process at the anterior end of a sperm cell that produces enzymes to facilitate penetration of the egg -05457973 08 n 02 ovum 0 egg_cell 0 006 @ 05456945 n 0000 #p 05513529 n 0000 + 00062397 v 0101 ~ 01460457 n 0000 ~ 05458173 n 0000 ~ 05458300 n 0000 | the female reproductive cell; the female gamete -05458173 08 n 01 ootid 0 001 @ 05457973 n 0000 | mature ovum after penetration by sperm but before the formation of a zygote -05458300 08 n 01 ovule 1 003 @ 05457973 n 0000 + 02932931 a 0101 + 00062397 v 0101 | a small or immature ovum -05458412 08 n 01 gametocyte 0 003 @ 00006484 n 0000 ~ 05458576 n 0000 ~ 05458990 n 0000 | an immature animal or plant cell that develops into a gamete by meiosis -05458576 08 n 01 oocyte 0 001 @ 05458412 n 0000 | a female gametocyte that develops into an ovum after two meiotic divisions -05458703 08 n 01 polar_body 0 001 @ 00006484 n 0000 | a small cell containing little cytoplasm that is produced along with the oocyte and later discarded -05458859 08 n 01 spermatocele 0 001 @ 14315192 n 0000 | a swelling on the epididymis or the testis; usually contains spermatozoa -05458990 08 n 01 spermatocyte 0 001 @ 05458412 n 0000 | a male gametocyte that develops into four spermatids -05459101 08 n 01 spermatid 0 001 @ 05456945 n 0000 | an immature gamete produced by a spermatocyte; develops into a spermatozoon -05459232 08 n 03 muscle_cell 0 muscle_fiber 0 muscle_fibre 0 005 @ 05229622 n 0000 @ 05430628 n 0000 #p 05289297 n 0000 ~ 05459769 n 0000 ~ 05460759 n 0000 | an elongated contractile cell that forms the muscles of the body -05459457 08 n 02 Leydig_cell 0 Leydig's_cell 0 001 @ 00006484 n 0000 | a cell in the testes that secretes the hormone testosterone -05459590 08 n 02 Sertoli_cell 0 Sertoli's_cell 0 001 @ 00006484 n 0000 | elongated cells found in the seminiferous tubules of the testis; apparently they nourish the spermatids -05459769 08 n 02 striated_muscle_cell 0 striated_muscle_fiber 0 003 @ 05459232 n 0000 #p 05289861 n 0000 %p 05459953 n 0000 | an elongated contractile cell in striated muscle tissue -05459953 08 n 03 myofibril 0 myofibrilla 0 sarcostyle 0 004 @ 14867858 n 0000 #p 05459769 n 0000 %p 05446971 n 0000 %p 05460163 n 0000 | one of many contractile filaments that make up a striated muscle fiber -05460163 08 n 01 sarcomere 0 002 @ 09429387 n 0000 #p 05459953 n 0000 | one of the segments into which a myofibril is divided -05460291 08 n 01 smooth_muscle 1 002 @ 05289057 n 0000 %p 05460759 n 0000 | muscle tissue that does not appear striated under the microscope; has the form of thin layers or sheets -05460473 08 n 02 smooth_muscle 0 involuntary_muscle 0 003 @ 05289297 n 0000 ~ 05520168 n 0000 ~ 05572057 n 0000 | a muscle that contracts without conscious control and found in walls of internal organs such as stomach and intestine and bladder and blood vessels (excluding the heart) -05460759 08 n 01 smooth_muscle_cell 0 002 @ 05459232 n 0000 #p 05460291 n 0000 | cells of the smooth muscles -05460870 08 n 01 immune_system 0 005 @ 05237227 n 0000 %p 05285623 n 0000 %p 05332569 n 0000 %p 05430095 n 0000 %p 05461349 n 0000 | a system (including the thymus and bone marrow and lymphoid tissues) that protects the body from foreign substances and pathogenic organisms by producing the immune response -05461179 08 n 01 integumentary_system 0 005 @ 05237227 n 0000 %p 05238282 n 0000 %p 05254795 n 0000 %p 05328232 n 0000 %p 05581693 n 0000 | the skin and its appendages -05461349 08 n 02 reticuloendothelial_system 0 RES 0 003 @ 05237227 n 0000 #p 05460870 n 0000 %p 05461610 n 0000 | a widely distributed system consisting of all the cells able to ingest bacteria or colloidal particles etc, except for certain white blood cells -05461610 08 n 03 mononuclear_phagocyte_system 0 MPS 0 system_of_macrophages 0 002 @ 05237227 n 0000 #p 05461349 n 0000 | a widely distributed system of free and fixed macrophages derived from bone marrow -05461816 08 n 03 muscular_structure 0 musculature 0 muscle_system 0 007 @ 05237227 n 0000 #p 05462057 n 0000 %p 05289057 n 0000 %p 05295381 n 0000 %p 05296253 n 0000 ~ 05318606 n 0000 ~ 05533948 n 0000 | the muscular system of an organism -05462057 08 n 01 musculoskeletal_system 0 004 @ 05237227 n 0000 #p 05216365 n 0000 %p 05461816 n 0000 %p 05585383 n 0000 | the system of muscles and tendons and ligaments and bones and joints and associated tissues that move the body and maintain its form -05462315 08 n 02 nervous_system 0 systema_nervosum 0 012 @ 05237227 n 0000 #p 05216365 n 0000 %p 05296775 n 0000 %p 05296968 n 0000 %p 05465567 n 0000 %p 05475681 n 0000 %p 05480794 n 0000 %p 05501711 n 0000 %p 05504336 n 0000 %p 05504532 n 0000 ~ 05505131 n 0000 ~ 05505679 n 0000 | the sensory and control apparatus consisting of a network of nerve cells -05462674 08 n 01 neural_structure 0 038 @ 05225602 n 0000 ~ 05228020 n 0000 ~ 05296968 n 0000 ~ 05463449 n 0000 ~ 05463533 n 0000 ~ 05476915 n 0000 ~ 05477305 n 0000 ~ 05478139 n 0000 ~ 05481095 n 0000 ~ 05481549 n 0000 ~ 05482129 n 0000 ~ 05485554 n 0000 ~ 05485856 n 0000 ~ 05486159 n 0000 ~ 05486319 n 0000 ~ 05486510 n 0000 ~ 05487423 n 0000 ~ 05491993 n 0000 ~ 05495172 n 0000 ~ 05495981 n 0000 ~ 05496261 n 0000 ~ 05496592 n 0000 ~ 05496802 n 0000 ~ 05496990 n 0000 ~ 05498773 n 0000 ~ 05499044 n 0000 ~ 05499172 n 0000 ~ 05499379 n 0000 ~ 05499828 n 0000 ~ 05500006 n 0000 ~ 05500594 n 0000 ~ 05500812 n 0000 ~ 05500992 n 0000 ~ 05501185 n 0000 ~ 05501932 n 0000 ~ 05503555 n 0000 ~ 05503705 n 0000 ~ 05504532 n 0000 | a structure that is part of the nervous system -05463449 08 n 01 reflex_arc 0 001 @ 05462674 n 0000 | the neural path of a reflex -05463533 08 n 04 center 0 centre 0 nerve_center 0 nerve_centre 0 008 @ 05462674 n 0000 ~ 05463873 n 0000 ~ 05477686 n 0000 ~ 05488385 n 0000 ~ 05490370 n 0000 ~ 05500312 n 0000 ~ 05500465 n 0000 ~ 05605192 n 0000 | a cluster of nerve cells governing a specific bodily process; "in most people the speech center is in the left hemisphere" -05463873 08 n 01 auditory_center 0 001 @ 05463533 n 0000 | the part of the brain (in a fold of the cerebral cortex of the temporal lobe on both sides of the brain) that receives impulses from the ear by way of the auditory nerve -05464104 08 n 02 nerve_fiber 0 nerve_fibre 0 010 @ 05229622 n 0000 @ 14866889 n 0000 #p 05474346 n 0000 ~ 05464378 n 0000 %p 05464939 n 0000 ~ 05465228 n 0000 ~ 05468849 n 0000 ~ 05469861 n 0000 ~ 05474976 n 0000 ~ 05475397 n 0000 | a threadlike extension of a nerve cell -05464378 08 n 02 medullated_nerve_fiber 0 myelinated_nerve_fiber 0 002 @ 05464104 n 0000 %p 05464685 n 0000 | a nerve fiber encased in a sheath of myelin -05464534 08 n 02 Ranvier's_nodes 0 nodes_of_Ranvier 0 002 @ 09379111 n 0000 #p 05464685 n 0000 | small gaps in the myelin sheath of medullated axons -05464685 08 n 02 medullary_sheath 0 myelin_sheath 0 006 @ 05238036 n 0000 #p 05464378 n 0000 %p 05286167 n 0000 %p 05464534 n 0000 %p 05468523 n 0000 %s 14957893 n 0000 | a layer of myelin encasing (and insulating) the axons of medullated nerve fibers -05464939 08 n 02 neurolemma 0 neurilemma 0 002 @ 05238036 n 0000 #p 05464104 n 0000 | thin membranous sheath around a nerve fiber -05465071 08 n 01 Schwann_cell 0 001 @ 05430628 n 0000 | any cell that covers the nerve fibers in the peripheral nervous system and forms the myelin sheath -05465228 08 n 01 effector 1 002 @ 05464104 n 0000 %p 05466393 n 0000 | a nerve fiber that terminates on a muscle or gland and stimulates contraction or secretion -05465392 08 n 01 end_organ 0 003 @ 05297523 n 0000 ~ 05466393 n 0000 ~ 05466575 n 0000 | a specialized structure at the peripheral end of some motor or sensory nerve fibers -05465567 08 n 02 nerve_cell 0 neuron 0 011 @ 05430628 n 0000 #p 05462315 n 0000 + 02894119 a 0201 + 02894119 a 0203 + 02894119 a 0202 ~ 05427346 n 0000 ~ 05465868 n 0000 ~ 05466696 n 0000 ~ 05466892 n 0000 %p 05468849 n 0000 %p 05469861 n 0000 | a cell that is specialized to conduct nerve impulses -05465868 08 n 01 brain_cell 0 004 @ 05465567 n 0000 #p 05481095 n 0000 ~ 05466005 n 0000 ~ 05466244 n 0000 | a nerve cell in the brain -05466005 08 n 02 Golgi's_cell 0 Golgi_cell 0 003 @ 05465868 n 0000 #p 05486510 n 0000 #p 05503705 n 0000 | a neuron in the cerebral cortex with short dendrites and with either a long axon or a short axon that ramifies in the grey matter -05466244 08 n 01 Purkinje_cell 0 001 @ 05465868 n 0000 | a large densely branching neuron that is the characteristic cell of the cerebellar cortex -05466393 08 n 03 end-plate 0 endplate 0 motor_end_plate 0 002 @ 05465392 n 0000 #p 05465228 n 0000 | the flattened end of a motor neuron that transmits neural impulses to a muscle -05466575 08 n 01 osmoreceptor 0 001 @ 05465392 n 0000 | sensory end organ that responds to changes in osmotic pressure -05466696 08 n 04 motor_neuron 0 efferent_neuron 0 motor_nerve_fiber 0 motoneuron 0 002 @ 05465567 n 0000 #p 05474738 n 0000 | a neuron conducting impulses outwards from the brain or spinal cord -05466892 08 n 02 sensory_neuron 0 afferent_neuron 0 002 @ 05465567 n 0000 #p 05475134 n 0000 | a neuron conducting impulses inwards to the brain or spinal cord -05467054 08 n 02 neuroglia 0 glia 0 009 @ 05268797 n 0000 #s 14237032 n 0000 #p 05480794 n 0000 + 02736179 a 0201 + 02883210 a 0101 %p 05467432 n 0000 ~ 05467619 n 0000 ~ 05468211 n 0000 ~ 05468523 n 0000 | sustentacular tissue that surrounds and supports neurons in the central nervous system; glial and neural cells together compose the tissue of the central nervous system -05467432 08 n 03 neurogliacyte 0 neuroglial_cell 0 glial_cell 0 005 @ 05430628 n 0000 #p 05467054 n 0000 ~ 05467758 n 0000 ~ 05468351 n 0000 ~ 05468739 n 0000 | a cell of the neuroglia -05467619 08 n 02 astroglia 0 macroglia 0 002 @ 05467054 n 0000 %p 05467758 n 0000 | tissue consisting of large stellate neuroglial cells -05467758 08 n 01 astrocyte 0 005 @ 05467432 n 0000 #p 05467619 n 0000 + 02646215 a 0101 ~ 05467922 n 0000 ~ 05468098 n 0000 | comparatively large neuroglial cell -05467922 08 n 01 fibrous_astrocyte 0 002 @ 05467758 n 0000 #p 05483677 n 0000 | star-shaped cells with long processes; found in the white matter of the brain and spinal cord -05468098 08 n 01 protoplasmic_astrocyte 0 001 @ 05467758 n 0000 | a kind of astrocyte found in the grey matter -05468211 08 n 01 microglia 0 002 @ 05467054 n 0000 %p 05468351 n 0000 | neuroglial tissue of mesodermal origin that can become phagocytic -05468351 08 n 01 microgliacyte 0 002 @ 05467432 n 0000 #p 05468211 n 0000 | a cell of the microglia that may become phagocytic and collect waste products of nerve tissue -05468523 08 n 02 oligodendroglia 0 oligodendria 0 003 @ 05467054 n 0000 #p 05464685 n 0000 %p 05468739 n 0000 | tissue consisting of glial cells with sheetlike processes that form the myelin sheath of nerve fibers -05468739 08 n 01 oligodendrocyte 0 002 @ 05467432 n 0000 #p 05468523 n 0000 | a cell of the oligodendroglia -05468849 08 n 02 axon 0 axone 0 004 @ 05464104 n 0000 #p 05465567 n 0000 + 02655431 a 0101 %p 05469032 n 0000 | long nerve fiber that conducts away from the cell body of the neuron -05469032 08 n 02 nerve_ending 0 nerve_end 0 005 @ 08566028 n 0000 #p 05468849 n 0000 ~ 05469240 n 0000 ~ 05469424 n 0000 ~ 05469664 n 0000 | the terminal structure of an axon that does not end at a synapse -05469240 08 n 01 free_nerve_ending 0 002 @ 05469032 n 0000 #p 05238282 n 0000 | microscopic sensory nerve endings in the skin that are not connected to any specific sensory receptor -05469424 08 n 01 Pacinian_corpuscle 0 002 @ 05469032 n 0000 #p 05238282 n 0000 | a specialized bulblike nerve ending located in the subcutaneous tissue of the skin; occurs abundantly in the skin of palms and soles and joints and genitals -05469664 08 n 01 proprioceptor 0 001 @ 05469032 n 0000 | special nerve endings in the muscles and tendons and other organs that respond to stimuli regarding the position and movement of the body -05469861 08 n 01 dendrite 0 003 @ 05464104 n 0000 #p 05465567 n 0000 + 02934066 a 0101 | short fiber that conducts toward the cell body of the neuron -05470013 08 n 01 hybridoma 0 001 @ 05430628 n 0000 | a hybrid cell resulting from the fusion of a lymphocyte and a tumor cell; used to culture a specific monoclonal antibody -05470189 08 n 03 process 0 outgrowth 0 appendage 1 046 @ 05220461 n 0000 ~ 01325417 n 0000 ~ 01325853 n 0000 ~ 01326015 n 0000 ~ 01427848 n 0000 ~ 01458302 n 0000 ~ 01900150 n 0000 ~ 01900341 n 0000 ~ 01900488 n 0000 ~ 01900985 n 0000 ~ 01901213 n 0000 ~ 01901492 n 0000 ~ 02157557 n 0000 ~ 02462349 n 0000 ~ 02584643 n 0000 ~ 02585168 n 0000 ~ 05280365 n 0000 ~ 05309965 n 0000 ~ 05310206 n 0000 ~ 05310351 n 0000 ~ 05457795 n 0000 ~ 05471181 n 0000 ~ 05471629 n 0000 ~ 05472032 n 0000 ~ 05472681 n 0000 ~ 05472959 n 0000 ~ 05473104 n 0000 ~ 05473318 n 0000 ~ 05473507 n 0000 ~ 05473593 n 0000 ~ 05473735 n 0000 ~ 05537576 n 0000 ~ 05542193 n 0000 ~ 05542416 n 0000 ~ 05542539 n 0000 ~ 05542686 n 0000 ~ 05546383 n 0000 ~ 05574151 n 0000 ~ 05587628 n 0000 ~ 05588991 n 0000 ~ 05592870 n 0000 ~ 05593654 n 0000 ~ 05603342 n 0000 ~ 05603650 n 0000 ~ 11820191 n 0000 ~ 13088096 n 0000 | a natural prolongation or projection from a part of an organism either animal or plant; "a bony process" -05471181 08 n 02 caruncle 0 caruncula 0 005 @ 05470189 n 0000 + 02682134 a 0201 + 02682134 a 0101 + 02682134 a 0102 ~ 05471427 n 0000 | an outgrowth on a plant or animal such as a fowl's wattle or a protuberance near the hilum of certain seeds -05471427 08 n 02 wattle 0 lappet 0 001 @ 05471181 n 0000 | a fleshy wrinkled and often brightly colored fold of skin hanging from the neck or throat of certain birds (chickens and turkeys) or lizards -05471629 08 n 01 condyle 0 006 @ 05470189 n 0000 #p 05269901 n 0000 + 02701548 a 0101 ~ 05471837 n 0000 ~ 05472394 n 0000 ~ 05472538 n 0000 | a round bump on a bone where it forms a joint with another bone -05471837 08 n 03 condylar_process 0 condyloid_process 0 mandibular_condyle 0 002 @ 05471629 n 0000 #p 05275905 n 0000 | the condyle of the ramus of the mandible that articulates with the skull -05472032 08 n 02 coronoid_process 0 processus_coronoideus 0 003 @ 05470189 n 0000 #p 05269901 n 0000 ~ 05472205 n 0000 | a sharp triangular process projecting from a bone -05472205 08 n 01 coronoid_process_of_the_mandible 0 003 @ 05472032 n 0000 #p 05275905 n 0000 %p 05232074 n 0000 | the coronoid process that provides an attachment for the temporal muscle -05472394 08 n 01 lateral_condyle 0 002 @ 05471629 n 0000 #p 05573895 n 0000 | a condyle on the outer side of the lower extremity of the femur -05472538 08 n 01 medial_condyle 0 002 @ 05471629 n 0000 #p 05573895 n 0000 | a condyle on the inner side of the lower extremity of the femur -05472681 08 n 01 epicondyle 0 002 @ 05470189 n 0000 ~ 05472846 n 0000 | a projection on a bone above a condyle serving for the attachment of muscles and ligaments -05472846 08 n 01 lateral_epicondyle 0 001 @ 05472681 n 0000 | epicondyle near the lateral condyle of the femur -05472959 08 n 01 fimbria 0 001 @ 05470189 n 0000 | thin projections forming a fringe (especially around the ovarian end of the Fallopian tube) -05473104 08 n 01 apophysis 0 004 @ 05470189 n 0000 #p 05284333 n 0000 ;c 06057539 n 0000 + 02634428 a 0101 | (anatomy) a natural outgrowth or projection on an organ or body part such as the process of a vertebra -05473318 08 n 02 spicule 0 spiculum 0 001 @ 05470189 n 0000 | small pointed structure serving as a skeletal element in various marine and freshwater invertebrates e.g. sponges and corals -05473507 08 n 01 osteophyte 0 001 @ 05470189 n 0000 | small abnormal bony outgrowth -05473593 08 n 01 papilla 0 002 @ 05470189 n 0000 + 03010176 a 0101 | a small projection of tissue at the base of a hair or tooth or feather -05473735 08 n 01 papilla 1 003 @ 05470189 n 0000 #p 05299178 n 0000 + 03010176 a 0101 | a small nipple-shaped protuberance concerned with taste, touch, or smell; "the papillae of the tongue" -05473928 08 n 01 synapse 0 004 @ 14420954 n 0000 #p 05474346 n 0000 + 02933954 a 0101 ~ 05474195 n 0000 | the junction between two neurons (axon-to-dendrite) or between a neuron and a muscle; "nerve impulses cross a synapse through the action of neurotransmitters" -05474195 08 n 02 neuromuscular_junction 0 myoneural_junction 0 001 @ 05473928 n 0000 | the junction between a nerve fiber and the muscle it supplies -05474346 08 n 02 nerve 0 nervus 0 015 @ 05475681 n 0000 + 02904518 a 0101 %p 05236152 n 0000 %p 05464104 n 0000 %p 05473928 n 0000 ~ 05474738 n 0000 ~ 05475134 n 0000 ~ 05476256 n 0000 ~ 05476592 n 0000 ~ 05504807 n 0000 ~ 05505479 n 0000 ~ 05567875 n 0000 ~ 05568349 n 0000 ~ 05568767 n 0000 ~ 05569053 n 0000 | any bundle of nerve fibers running to various organs and tissues of the body -05474738 08 n 03 motor_nerve 0 efferent_nerve 0 efferent 0 006 @ 05474346 n 0000 + 00333987 a 0301 ~ 05424963 n 0000 %p 05466696 n 0000 %p 05474976 n 0000 ~ 05491612 n 0000 | a nerve that conveys impulses toward or to muscles or glands -05474976 08 n 02 motor_fiber 0 efferent_fiber 0 002 @ 05464104 n 0000 #p 05474738 n 0000 | a nerve fiber that carries impulses toward the muscles or glands -05475134 08 n 03 sensory_nerve 0 afferent_nerve 0 afferent 0 006 @ 05474346 n 0000 + 00333351 a 0301 ~ 05365633 n 0000 %p 05466892 n 0000 %p 05475397 n 0000 ~ 05475562 n 0000 | a nerve that passes impulses from receptors toward or to the central nervous system -05475397 08 n 02 sensory_fiber 0 afferent_fiber 0 002 @ 05464104 n 0000 #p 05475134 n 0000 | a nerve fiber that carries impulses toward the central nervous system -05475562 08 n 02 lemniscus 0 fillet 0 001 @ 05475134 n 0000 | a bundle of sensory nerve fibers going to the thalamus -05475681 08 n 04 fiber_bundle 0 fibre_bundle 0 fascicle 0 fasciculus 0 004 @ 05296775 n 0000 #p 05462315 n 0000 ~ 05227572 n 0000 ~ 05474346 n 0000 | a bundle of fibers (especially nerve fibers) -05475878 08 n 04 nerve_pathway 0 tract 0 nerve_tract 0 pathway 0 004 @ 05483677 n 0000 ~ 05229049 n 0000 ~ 05476094 n 0000 ~ 05476754 n 0000 | a bundle of myelinated nerve fibers following a path through the brain -05476094 08 n 01 commissure 0 002 @ 05475878 n 0000 ~ 05491461 n 0000 | a bundle of nerve fibers passing from one side to the other of the brain or spinal cord -05476256 08 n 01 cranial_nerve 0 013 @ 05474346 n 0000 ~ 05477946 n 0000 ~ 05478336 n 0000 ~ 05478526 n 0000 ~ 05478684 n 0000 ~ 05478896 n 0000 ~ 05479108 n 0000 ~ 05479314 n 0000 ~ 05479503 n 0000 ~ 05479786 n 0000 ~ 05480076 n 0000 ~ 05480401 n 0000 ~ 05480607 n 0000 | any of the 12 paired nerves that originate in the brain stem -05476592 08 n 02 depressor 1 depressor_nerve 0 001 @ 05474346 n 0000 | any nerve whose activity tends to reduce the activity or tone of the body part it serves -05476754 08 n 02 peduncle 0 cerebral_peduncle 0 002 @ 05475878 n 0000 #p 05495981 n 0000 | a bundle of myelinated neurons joining different parts of the brain -05476915 08 n 02 hemisphere 0 cerebral_hemisphere 0 006 @ 05462674 n 0000 #p 05491993 n 0000 + 02934876 a 0101 + 02740070 a 0101 ~ 05477112 n 0000 ~ 05477510 n 0000 | either half of the cerebrum -05477112 08 n 02 left_hemisphere 0 left_brain 0 002 @ 05476915 n 0000 %p 05489394 n 0000 | the cerebral hemisphere to the left of the corpus callosum that controls the right half of the body -05477305 08 n 04 pyriform_area 0 piriform_area 0 pyriform_lobe 0 piriform_lobe 0 002 @ 05462674 n 0000 #p 05477686 n 0000 | pear-shaped neural structure on either side of the brain in the rhinencephalon -05477510 08 n 02 right_hemisphere 0 right_brain 0 001 @ 05476915 n 0000 | the cerebral hemisphere to the right of the corpus callosum that controls the left half of the body -05477686 08 n 02 rhinencephalon 0 olfactory_brain 0 003 @ 05463533 n 0000 %p 05477305 n 0000 %p 05478139 n 0000 | a center in the cerebral hemispheres that governs the sense of smell in lower animals; in humans it seems to mediate complex emotional behavior -05477946 08 n 03 olfactory_nerve 0 nervii_olfactorii 0 first_cranial_nerve 0 002 @ 05476256 n 0000 #p 05510702 n 0000 | a collective term for numerous olfactory filaments in the nasal mucosa -05478139 08 n 01 olfactory_bulb 0 002 @ 05462674 n 0000 #p 05477686 n 0000 | one of two enlargements at the terminus of the olfactory nerve at the base of the brain just above the nasal cavities -05478336 08 n 04 optic_nerve 0 nervus_opticus 0 second_cranial_nerve 0 optic_tract 0 003 @ 05476256 n 0000 #p 05300926 n 0000 #p 05496990 n 0000 | the cranial nerve that serves the retina -05478526 08 n 04 oculomotor 0 oculomotor_nerve 0 nervus_oculomotorius 0 third_cranial_nerve 0 001 @ 05476256 n 0000 | supplies extrinsic muscles of the eye -05478684 08 n 04 trochlear 0 trochlear_nerve 0 trochlearis 0 fourth_cranial_nerve 0 001 @ 05476256 n 0000 | either of the two cranial nerves on either side that control the superior oblique muscles of the eyes -05478896 08 n 05 trigeminal 0 trigeminal_nerve 0 trigeminus 0 nervus_trigeminus 0 fifth_cranial_nerve 0 001 @ 05476256 n 0000 | the main sensory nerve of the face and motor nerve for the muscles of mastication -05479108 08 n 06 abducent 0 abducent_nerve 0 abducens 0 abducens_nerve 0 nervus_abducens 0 sixth_cranial_nerve 0 001 @ 05476256 n 0000 | a small motor nerve supplying the lateral rectus muscle of the eye -05479314 08 n 04 facial 0 facial_nerve 0 nervus_facialis 0 seventh_cranial_nerve 0 003 @ 05476256 n 0000 #p 05600637 n 0000 + 02877704 a 0101 | cranial nerve that supplies facial muscles -05479503 08 n 05 acoustic_nerve 0 auditory_nerve 0 vestibulocochlear_nerve 0 nervus_vestibulocochlearis 0 eighth_cranial_nerve 0 002 @ 05476256 n 0000 #p 05300507 n 0000 | a composite sensory nerve supplying the hair cells of the vestibular organ and the hair cells of the cochlea -05479786 08 n 03 glossopharyngeal_nerve 0 nervus_glossopharyngeus 0 ninth_cranial_nerve 0 001 @ 05476256 n 0000 | sensory nerve to the pharynx and back of the tongue; motor fibers innervate muscles that elevate the pharynx and larynx; includes parasympathetic fibers to the otic ganglion -05480076 08 n 07 vagus 0 vagus_nerve 0 nervus_vagus 0 pneumogastric 0 pneumogastric_nerve 0 tenth_cranial_nerve 0 wandering_nerve 0 003 @ 05476256 n 0000 + 02822055 a 0402 + 02822055 a 0101 | a mixed nerve that supplies the pharynx and larynx and lungs and heart and esophagus and stomach and most of the abdominal viscera -05480401 08 n 04 accessory_nerve 0 spinal_accessory 0 nervus_accessorius 0 eleventh_cranial_nerve 0 001 @ 05476256 n 0000 | arises from two sets of roots (cranial and spinal) that unite to form the nerve -05480607 08 n 04 hypoglossal 0 hypoglossal_nerve 0 nervus_hypoglosus 0 twelfth_cranial_nerve 0 001 @ 05476256 n 0000 | supplies intrinsic muscles of the tongue and other tongue muscles -05480794 08 n 03 central_nervous_system 0 CNS 0 systema_nervosum_centrale 0 007 @ 05237227 n 0000 #p 05462315 n 0000 %p 05467054 n 0000 %p 05481095 n 0000 %s 05483677 n 0000 %p 05491612 n 0000 %p 05503705 n 0000 | the portion of the vertebrate nervous system consisting of the brain and spinal cord -05481095 08 n 02 brain 0 encephalon 0 014 @ 05462674 n 0000 #p 05538625 n 0000 #p 05480794 n 0000 + 01327020 v 0101 + 01401676 v 0101 %p 05342374 n 0000 %p 05343542 n 0000 %p 05465868 n 0000 %p 05481549 n 0000 %p 05495981 n 0000 %p 05499828 n 0000 %p 05500594 n 0000 %p 05501185 n 0000 %p 05502556 n 0000 | that part of the central nervous system that includes all the higher nervous centers; enclosed within the skull; continuous with the spinal cord -05481549 08 n 02 neencephalon 0 neoencephalon 0 002 @ 05462674 n 0000 #p 05481095 n 0000 | the part of the brain having the most recent phylogenetic origin; the cerebral cortex and related parts -05481746 08 n 02 neopallium 0 neocortex 0 002 @ 05486510 n 0000 + 03010781 a 0201 | the cortical part of the neencephalon -05481870 08 n 02 archipallium 0 paleocortex 0 002 @ 05486510 n 0000 + 03010904 a 0201 | the olfactory cortex of the cerebrum -05481997 08 n 01 metencephalon 0 001 @ 05500594 n 0000 | the part of the hindbrain that develops into the pons and the cerebellum -05482129 08 n 03 paleencephalon 0 paleoencephalon 0 palaeencephalon 0 001 @ 05462674 n 0000 | the more primitive parts of the brain phylogenetically; most structures other than the cerebral cortex -05482328 08 n 01 leptomeninges 0 003 @ 05326900 n 0000 %p 05482676 n 0000 %p 05482800 n 0000 | the two innermost layers of the meninges; cerebrospinal fluid circulates between these innermost layers -05482529 08 n 02 dura_mater 0 dura 0 003 @ 05326900 n 0000 #s 05607402 n 0000 + 02715142 a 0201 | the outermost (and toughest) of the 3 meninges -05482676 08 n 02 arachnoid 0 arachnoid_membrane 0 002 @ 05326900 n 0000 #p 05482328 n 0000 | the middle of the 3 meninges -05482800 08 n 01 pia_mater 0 002 @ 05326900 n 0000 #p 05482328 n 0000 | the highly vascular innermost of the 3 meninges -05482922 08 n 01 subarachnoid_space 0 002 @ 13910384 n 0000 #p 05326900 n 0000 | a space in the meninges beneath the arachnoid membrane and above the pia mater that contains the cerebrospinal fluid -05483122 08 n 02 neuropil 0 neuropile 0 002 @ 05296775 n 0000 #s 05483388 n 0000 | the complex network of unmyelinated axones, dendrites, and glial branches that form the bulk of the central nervous system's grey matter and in which nerve cell bodies are embedded -05483388 08 n 05 grey_matter 0 gray_matter 0 grey_substance 0 gray_substance 0 substantia_grisea 0 003 @ 05296775 n 0000 #s 05486510 n 0000 %s 05483122 n 0000 | greyish nervous tissue containing cell bodies as well as fibers; forms the cerebral cortex consisting of unmyelinated neurons -05483677 08 n 02 white_matter 0 substantia_alba 0 004 @ 05296775 n 0000 #s 05480794 n 0000 %p 05467922 n 0000 ~ 05475878 n 0000 | whitish nervous tissue of the CNS consisting of neurons and their myelin sheaths -05483890 08 n 04 pituitary 0 pituitary_gland 0 pituitary_body 0 hypophysis 0 008 @ 05329735 n 0000 #p 05496990 n 0000 + 03011592 a 0402 + 03011592 a 0401 + 03100479 a 0101 %p 05484198 n 0000 %p 05484355 n 0000 %p 05484862 n 0000 | the master gland of the endocrine system; located at the base of the brain -05484198 08 n 01 hypophyseal_stalk 0 002 @ 05229990 n 0000 #p 05483890 n 0000 | the funnel-shaped stalk connecting the pituitary gland to the hypothalamus -05484355 08 n 03 anterior_pituitary 0 anterior_pituitary_gland 0 adenohypophysis 0 003 @ 05329735 n 0000 #p 05483890 n 0000 %p 05484573 n 0000 | the anterior lobe of the pituitary body; primarily glandular in nature -05484573 08 n 02 pars_distilis 0 pars_anterior 0 002 @ 05329735 n 0000 #p 05484355 n 0000 | the anterior part of the anterior pituitary -05484711 08 n 01 pars_intermedia 0 002 @ 05329735 n 0000 #p 05484862 n 0000 | a thin piece of tissue that has become part of the posterior pituitary -05484862 08 n 04 posterior_pituitary 0 posterior_pituitary_gland 0 neurohypophysis 0 pars_nervosa 0 003 @ 05329735 n 0000 #p 05483890 n 0000 %p 05484711 n 0000 | the posterior lobe of the pituitary body; primarily glandular in nature -05485098 08 n 04 pineal_gland 0 pineal_body 0 epiphysis_cerebri 0 epiphysis 1 001 @ 05329735 n 0000 | a small endocrine gland in the brain; situated beneath the back part of the corpus callosum; secretes melatonin -05485314 08 n 03 islands_of_Langerhans 0 isles_of_Langerhans 0 islets_of_Langerhans 0 002 @ 05329735 n 0000 #p 05387167 n 0000 | cell clusters in the pancreas that form the endocrine part of that organ; secrete insulin and other hormones -05485554 08 n 01 cerebellum 0 008 @ 05462674 n 0000 #p 05500594 n 0000 + 02688833 a 0101 %p 05340795 n 0000 %p 05485856 n 0000 %p 05485988 n 0000 %p 05486159 n 0000 %p 05486319 n 0000 | a major division of the vertebrate brain; situated above the medulla oblongata and beneath the cerebrum in humans -05485856 08 n 01 cerebellar_hemisphere 0 002 @ 05462674 n 0000 #p 05485554 n 0000 | either of two lateral lobes of the cerebellum -05485988 08 n 01 dentate_nucleus 0 002 @ 05501932 n 0000 #p 05485554 n 0000 | a large laminar nucleus of grey matter within the white matter of each cerebral hemisphere -05486159 08 n 02 vermis 0 vermis_cerebelli 0 002 @ 05462674 n 0000 #p 05485554 n 0000 | the narrow central part of the cerebellum between the two hemispheres -05486319 08 n 01 paleocerebellum 0 002 @ 05462674 n 0000 #p 05485554 n 0000 | the anterior lobe of the cerebellum which was one of the earliest parts of the hindbrain to develop in mammals -05486510 08 n 04 cerebral_cortex 0 cerebral_mantle 0 pallium 1 cortex 1 013 @ 05462674 n 0000 #p 05491993 n 0000 + 02974979 a 0401 %p 05466005 n 0000 ~ 05481746 n 0000 ~ 05481870 n 0000 %s 05483388 n 0000 %p 05486920 n 0000 %p 05493758 n 0000 %p 05493992 n 0000 %p 05494130 n 0000 %p 05494365 n 0000 %p 05494933 n 0000 | the layer of unmyelinated neurons (the grey matter) forming the cortex of the cerebrum -05486920 08 n 02 cortical_area 0 cortical_region 0 011 @ 05221895 n 0000 #p 05486510 n 0000 ~ 05487224 n 0000 ~ 05488223 n 0000 ~ 05488615 n 0000 ~ 05489394 n 0000 ~ 05489640 n 0000 ~ 05489810 n 0000 ~ 05489998 n 0000 ~ 05490204 n 0000 ~ 05494617 n 0000 | any of various regions of the cerebral cortex -05487224 08 n 02 association_area 0 association_cortex 0 001 @ 05486920 n 0000 | cortical areas that are neither motor or sensory but are thought to be involved in higher processing of information -05487423 08 n 01 geniculate_body 0 004 @ 05462674 n 0000 #p 05499172 n 0000 ~ 05487694 n 0000 ~ 05487941 n 0000 | one of four small oval masses that protrude slightly from the underside of the thalamus and function as synaptic centers on the way to the cerebral cortex -05487694 08 n 03 lateral_geniculate_body 0 corpus_geniculatum_laterale 0 lateral_geniculate 0 001 @ 05487423 n 0000 | a neural structure that serves as a processing station on the way from the retina to the occipital lobe of the cerebral cortex -05487941 08 n 03 medial_geniculate_body 0 corpus_geniculatum_mediale 0 medial_geniculate 0 001 @ 05487423 n 0000 | a neural structure that serves as the last of a series of processing centers along the auditory pathway from the cochlea to the temporal lobe of the cerebral cortex -05488223 08 n 02 auditory_area 0 auditory_cortex 0 001 @ 05486920 n 0000 | the cortical area that receives auditory information from the medial geniculate body -05488385 08 n 05 Broca's_area 0 Broca's_center 0 Broca's_gyrus 0 Broca's_convolution 0 convolution_of_Broca 0 002 @ 05463533 n 0000 #p 05489394 n 0000 | the motor speech center in the left hemisphere of the brain in most people -05488615 08 n 01 Brodmann's_area 0 001 @ 05486920 n 0000 | one of the cortical areas mapped out on the basis of its cytoarchitecture -05488750 08 n 01 frontal_gyrus 0 002 @ 05492426 n 0000 #p 05493758 n 0000 | any of the convolutions of the outer surface of the frontal lobe of the cerebrum -05488909 08 n 01 temporal_gyrus 0 002 @ 05492426 n 0000 #p 05494933 n 0000 | any of the convolutions of the outer surface of the temporal lobe of the cerebrum -05489070 08 n 01 parietal_gyrus 0 002 @ 05492426 n 0000 #p 05494130 n 0000 | any of the convolutions of the outer surface of the parietal lobe of the cerebrum -05489231 08 n 01 occipital_gyrus 0 002 @ 05492426 n 0000 #p 05494365 n 0000 | any of the convolutions of the outer surface of the occipital lobe of the cerebrum -05489394 08 n 02 language_area 0 language_zone 0 004 @ 05486920 n 0000 #p 05477112 n 0000 %p 05488385 n 0000 %p 05490370 n 0000 | a large cortical area (in the left hemisphere in most people) containing all the centers associated with language -05489640 08 n 05 motor_area 0 motor_region 0 motor_cortex 0 Rolando's_area 0 excitable_area 0 001 @ 05486920 n 0000 | the cortical area that influences motor movements -05489810 08 n 01 sensorium 0 001 @ 05486920 n 0000 | the areas of the brain that process and register incoming sensory information and make possible the conscious awareness of the world -05489998 08 n 02 sensorimotor_area 0 sensorimotor_region 0 001 @ 05486920 n 0000 | an area of the cortex including the precentral gyrus and the postcentral gyrus and combining sensory and motor functions -05490204 08 n 02 visual_area 0 visual_cortex 0 001 @ 05486920 n 0000 | the cortical area that receives information from the lateral geniculate body of the thalamus -05490370 08 n 02 Wernicke's_area 0 Wernicke's_center 0 002 @ 05463533 n 0000 #p 05489394 n 0000 | the auditory word center; located in the posterior part of the superior temporal convolution in most people -05490578 08 n 01 cortex 0 006 @ 05267548 n 0000 @ 13095685 n 0000 + 02974979 a 0101 ! 05490799 n 0101 ~ 05490983 n 0000 ~ 05491154 n 0000 | the tissue forming the outer layer of an organ or structure in plant or animal -05490799 08 n 01 medulla 0 005 @ 05267548 n 0000 @ 13095685 n 0000 + 02760820 a 0101 ! 05490578 n 0101 ~ 05491308 n 0000 | the inner part of an organ or structure in plant or animal -05490983 08 n 01 adrenal_cortex 0 003 @ 05490578 n 0000 @ 05329735 n 0000 #p 05331171 n 0000 | the cortex of the adrenal gland; secretes corticosterone and sex hormones -05491154 08 n 01 renal_cortex 0 002 @ 05490578 n 0000 #p 05332802 n 0000 | the cortex of the kidney containing the glomeruli and the convoluted tubules -05491308 08 n 01 adrenal_medulla 0 003 @ 05490799 n 0000 @ 05329735 n 0000 #p 05331171 n 0000 | the medulla of the adrenal gland; secretes epinephrine -05491461 08 n 01 corpus_callosum 0 002 @ 05476094 n 0000 #p 05495981 n 0000 | a broad transverse nerve tract connecting the two cerebral hemispheres -05491612 08 n 03 pyramidal_tract 0 pyramidal_motor_system 0 corticospinal_tract 0 003 @ 05474738 n 0000 #p 05480794 n 0000 %p 05497363 n 0000 | any of the important motor nerves on each side of the central nervous system that run from the sensorimotor areas of the cortex through the brainstem to motor neurons of the cranial nerve nuclei and the ventral root of the spinal cord -05491993 08 n 01 cerebrum 0 007 @ 05462674 n 0000 #p 05496802 n 0000 %p 05223823 n 0000 %p 05224080 n 0000 %p 05476915 n 0000 %p 05486510 n 0000 %p 05492426 n 0000 | anterior portion of the brain consisting of two hemispheres; dominant part of the brain in humans -05492259 08 n 02 fold 0 plica 0 005 @ 05225602 n 0000 ~ 05314255 n 0000 ~ 05530429 n 0000 ~ 05607271 n 0000 ~ 05607402 n 0000 | a folded part (as in skin or muscle) -05492426 08 n 02 gyrus 0 convolution 0 007 @ 05225602 n 0000 #p 05491993 n 0000 ~ 05488750 n 0000 ~ 05488909 n 0000 ~ 05489070 n 0000 ~ 05489231 n 0000 ~ 05492655 n 0000 | a convex fold or elevation in the surface of the brain -05492655 08 n 01 central_gyrus 0 003 @ 05492426 n 0000 ~ 05492806 n 0000 ~ 05493141 n 0000 | either of two gyri on either side of the central sulcus -05492806 08 n 01 precentral_gyrus 0 002 @ 05492655 n 0000 #p 05493758 n 0000 | the convolution of the frontal lobe that is bounded in back by the central sulcus and that contains the motor area -05493002 08 n 01 precordium 0 002 @ 05298572 n 0000 + 02783795 a 0101 | the external surface of the body overlying the heart and stomach -05493141 08 n 01 postcentral_gyrus 0 002 @ 05492655 n 0000 #p 05494130 n 0000 | the convolution of parietal lobe that is bounded in front by the central sulcus -05493303 08 n 01 lobe 0 013 @ 05220461 n 0000 #p 05297523 n 0000 ;c 06057539 n 0000 + 02934314 a 0101 ~ 05323588 n 0000 ~ 05386309 n 0000 ~ 05387959 n 0000 ~ 05493650 n 0000 ~ 05493758 n 0000 ~ 05493992 n 0000 ~ 05494130 n 0000 ~ 05494365 n 0000 ~ 05494933 n 0000 | (anatomy) a somewhat rounded subdivision of a bodily organ or part; "ear lobe" -05493650 08 n 01 lobule 0 002 @ 05493303 n 0000 + 02948068 a 0101 | a small lobe or subdivision of a lobe -05493758 08 n 02 frontal_lobe 0 frontal_cortex 0 004 @ 05493303 n 0000 #p 05486510 n 0000 %p 05488750 n 0000 %p 05492806 n 0000 | that part of the cerebral cortex in either hemisphere of the brain lying directly behind the forehead -05493992 08 n 02 prefrontal_lobe 0 prefrontal_cortex 0 002 @ 05493303 n 0000 #p 05486510 n 0000 | the anterior part of the frontal lobe -05494130 08 n 02 parietal_lobe 0 parietal_cortex 0 004 @ 05493303 n 0000 #p 05486510 n 0000 %p 05489070 n 0000 %p 05493141 n 0000 | that part of the cerebral cortex in either hemisphere of the brain lying below the crown of the head -05494365 08 n 02 occipital_lobe 0 occipital_cortex 0 005 @ 05493303 n 0000 #p 05486510 n 0000 %p 05224585 n 0000 %p 05489231 n 0000 %p 05494617 n 0000 | that part of the cerebral cortex in either hemisphere of the brain lying in the back of the head -05494617 08 n 05 striate_cortex 0 striate_area 0 first_visual_area 0 area_17_of_Brodmann 0 Brodmann's_area_17 0 002 @ 05486920 n 0000 #p 05494365 n 0000 | the part of the occipital cortex that receives the fibers of the optic radiation from the lateral geniculate body and is the primary receptive area for vision -05494933 08 n 02 temporal_lobe 0 temporal_ccortex 0 004 @ 05493303 n 0000 #p 05486510 n 0000 %p 05488909 n 0000 %p 05495571 n 0000 | that part of the cerebral cortex in either hemisphere of the brain lying inside the temples of the head -05495172 08 n 03 medulla_oblongata 0 medulla 2 bulb 2 005 @ 05462674 n 0000 #p 05501185 n 0000 + 03141487 a 0301 + 02760940 a 0201 %p 05605192 n 0000 | lower or hindmost part of the brain; continuous with spinal cord; (`bulb' is an old term for medulla oblongata); "the medulla oblongata is the most vital part of the brain because it contains centers controlling breathing and heart functioning" -05495571 08 n 03 amygdala 0 amygdaloid_nucleus 0 corpus_amygdaloideum 0 003 @ 05497363 n 0000 #p 05498773 n 0000 #p 05494933 n 0000 | an almond-shaped neural structure in the anterior part of the temporal lobe of the cerebrum; intimately connected with the hypothalamus and the hippocampus and the cingulate gyrus; as part of the limbic system it plays an important role in motivation and emotional behavior -05495981 08 n 02 forebrain 0 prosencephalon 0 006 @ 05462674 n 0000 #p 05481095 n 0000 %p 05476754 n 0000 %p 05491461 n 0000 %p 05496802 n 0000 %p 05496990 n 0000 | the anterior portion of the brain; the part of the brain that develops from the anterior part of the neural tube -05496261 08 n 01 hippocampus 0 002 @ 05462674 n 0000 #p 05498773 n 0000 | a complex neural structure (shaped like a sea horse) consisting of grey matter and located on the floor of each lateral ventricle; intimately involved in motivation and emotion as part of the limbic system; has a central role in the formation of memories -05496592 08 n 02 cingulate_gyrus 0 gyrus_cinguli 0 002 @ 05462674 n 0000 #p 05498773 n 0000 | a long curved structure on the medial surface of the cerebral hemispheres; the cortical part of the limbic system -05496802 08 n 01 telencephalon 0 003 @ 05462674 n 0000 #p 05495981 n 0000 %p 05491993 n 0000 | the anterior division of the forebrain; the cerebrum and related parts of the hypothalamus -05496990 08 n 04 diencephalon 0 interbrain 0 betweenbrain 0 thalmencephalon 0 010 @ 05462674 n 0000 #p 05495981 n 0000 %p 05228020 n 0000 %p 05229990 n 0000 %p 05299927 n 0000 %p 05478336 n 0000 %p 05483890 n 0000 %p 05497363 n 0000 %p 05499172 n 0000 %p 05499379 n 0000 | the posterior division of the forebrain; connects the cerebral hemispheres with the mesencephalon -05497363 08 n 01 basal_ganglion 0 010 @ 05296968 n 0000 #p 05491612 n 0000 #p 05496990 n 0000 ~ 05495571 n 0000 ~ 05497741 n 0000 ~ 05497922 n 0000 ~ 05498048 n 0000 ~ 05498300 n 0000 ~ 05498460 n 0000 ~ 05499542 n 0000 | any of several masses of subcortical grey matter at the base of each cerebral hemisphere that seem to be involved in the regulation of voluntary movement -05497741 08 n 02 caudate_nucleus 0 caudate 0 003 @ 05497363 n 0000 #p 05499542 n 0000 + 00319534 a 0201 | a tail-shaped basal ganglion located in a lateral ventricle of the brain -05497922 08 n 01 claustrum 0 001 @ 05497363 n 0000 | a layer of grey matter in the brain adjacent to the lenticular nucleus -05498048 08 n 02 lenticular_nucleus 0 lentiform_nucleus 0 004 @ 05497363 n 0000 #p 05499542 n 0000 %p 05498300 n 0000 %p 05498460 n 0000 | a basal ganglion shaped like a lens and including the outer reddish putamen and the inner pale yellow pallidum -05498300 08 n 03 pallidum 0 globus_pallidus 0 paleostriatum 0 002 @ 05497363 n 0000 #p 05498048 n 0000 | the inner pale yellow part of the lenticular nucleus -05498460 08 n 01 putamen 0 002 @ 05497363 n 0000 #p 05498048 n 0000 | the outer reddish part of the lenticular nucleus -05498581 08 n 01 subthalamic_nucleus 0 002 @ 05434927 n 0000 #p 05499044 n 0000 | an oval mass of grey matter located in the caudal part of the subthalamus; associated with the striate body -05498773 08 n 03 limbic_system 0 visceral_brain 0 limbic_brain 0 005 @ 05462674 n 0000 %p 05227572 n 0000 %p 05495571 n 0000 %p 05496261 n 0000 %p 05496592 n 0000 | a system of functionally related neural structures in the brain that are involved in emotional behavior -05499044 08 n 01 subthalamus 0 003 @ 05462674 n 0000 #p 05499172 n 0000 %p 05498581 n 0000 | the ventral part of the thalamus -05499172 08 n 01 thalamus 0 004 @ 05462674 n 0000 #p 05496990 n 0000 %p 05487423 n 0000 %p 05499044 n 0000 | large egg-shaped structures of grey matter that form the dorsal subdivision of the diencephalon -05499379 08 n 01 hypothalamus 0 003 @ 05462674 n 0000 #p 05496990 n 0000 + 02982729 a 0101 | a basal part of the diencephalon governing autonomic nervous system -05499542 08 n 03 corpus_striatum 0 striatum 0 striate_body 0 003 @ 05497363 n 0000 %p 05497741 n 0000 %p 05498048 n 0000 | a striped mass of white and grey matter located in front of the thalamus in each cerebral hemisphere; consists of the caudate nucleus and the lenticular nucleus -05499828 08 n 02 midbrain 0 mesencephalon 0 005 @ 05462674 n 0000 #p 05481095 n 0000 %p 05500006 n 0000 %p 05500312 n 0000 %p 05500465 n 0000 | the middle portion of the brain -05500006 08 n 03 substantia_nigra 0 nucleus_niger 0 locus_niger 0 002 @ 05462674 n 0000 #p 05499828 n 0000 | a layer of deeply pigmented grey matter in the midbrain; associated with the striate body; is involved in metabolic disturbances associated with Parkinson's disease and with Huntington's disease -05500312 08 n 01 superior_colliculus 0 002 @ 05463533 n 0000 #p 05499828 n 0000 | an essential visual center between the retina and the striate cortex -05500465 08 n 01 inferior_colliculus 0 002 @ 05463533 n 0000 #p 05499828 n 0000 | an essential auditory center in the midbrain -05500594 08 n 02 hindbrain 0 rhombencephalon 0 005 @ 05462674 n 0000 #p 05481095 n 0000 ~ 05481997 n 0000 %p 05485554 n 0000 %p 05500812 n 0000 | the posterior portion of the brain including cerebellum and brainstem -05500812 08 n 01 myelencephalon 0 002 @ 05462674 n 0000 #p 05500594 n 0000 | the posterior part of the hindbrain in developing vertebrates; forms the medulla oblongata in adults -05500992 08 n 02 pons 0 pons_Varolii 0 003 @ 05462674 n 0000 #p 05501185 n 0000 %p 05605192 n 0000 | a band of nerve fibers linking the medulla oblongata and the cerebellum with the midbrain -05501185 08 n 03 brainstem 0 brain-stem 0 brain_stem 0 005 @ 05462674 n 0000 #p 05481095 n 0000 %p 05495172 n 0000 %p 05500992 n 0000 %p 05502090 n 0000 | the part of the brain continuous with the spinal cord and comprising the medulla oblongata and pons and midbrain and parts of the hypothalamus -05501485 08 n 01 reticulum 0 006 @ 08434259 n 0000 + 02006228 a 0102 + 02625659 v 0101 + 02479853 v 0101 + 01585142 v 0101 ~ 05501711 n 0000 | any fine network (especially one in the body composed of cells or blood vessels) -05501711 08 n 02 neural_network 0 neural_net 0 004 @ 05501485 n 0000 #p 05462315 n 0000 ~ 05502090 n 0000 ~ 05502375 n 0000 | any network of neurons or nuclei that function together to perform some function in the body -05501932 08 n 01 nucleus 1 002 @ 05462674 n 0000 ~ 05485988 n 0000 | any histologically identifiable mass of neural cell bodies in the brain or spinal cord -05502090 08 n 02 reticular_formation 0 RF 0 003 @ 05501711 n 0000 #p 05501185 n 0000 %p 05502375 n 0000 | a complex neural network in the central core of the brainstem; monitors the state of the body and functions in such processes as arousal and sleep and attention and muscle tone -05502375 08 n 02 reticular_activating_system 0 RAS 0 002 @ 05501711 n 0000 #p 05502090 n 0000 | the network in the reticular formation that serves an alerting or arousal function -05502556 08 n 01 ventricle 2 007 @ 05303402 n 0000 #p 05481095 n 0000 + 02823559 a 0101 ~ 05502855 n 0000 ~ 05503009 n 0000 ~ 05503196 n 0000 %p 05504107 n 0000 | one of four connected cavities in the brain; is continuous with the central canal of the spinal cord and contains cerebrospinal fluid -05502855 08 n 01 fourth_ventricle 0 001 @ 05502556 n 0000 | an irregular ventricle between the third ventricle and the central canal of the spinal cord -05503009 08 n 01 third_ventricle 0 001 @ 05502556 n 0000 | a narrow ventricle in the midplane below the corpus callosum; communicates with the fourth ventricle via the Sylvian aqueduct -05503196 08 n 01 lateral_ventricle 0 001 @ 05502556 n 0000 | either of two horseshoe-shaped ventricles one in each cerebral hemisphere; they communicate with the third ventricle via the foramen of Monro -05503401 08 n 03 cerebral_aqueduct 0 Sylvian_aqueduct 0 aqueductus_cerebri 0 001 @ 05250659 n 0000 | a canal connecting the third and fourth ventricles -05503555 08 n 01 radiation 0 002 @ 05462674 n 0000 + 02686952 v 0101 | a radial arrangement of nerve fibers connecting different parts of the brain -05503705 08 n 02 spinal_cord 0 medulla_spinalis 0 006 @ 05462674 n 0000 @ 05264756 n 0000 #p 05480794 n 0000 %p 05380697 n 0000 %p 05466005 n 0000 %p 05504107 n 0000 | a major part of the central nervous system which conducts sensory and motor nerve impulses to and from the brain; a long tubelike structure extending from the base of the brain through the vertebral canal to the upper lumbar region -05504107 08 n 02 spinal_fluid 0 cerebrospinal_fluid 0 003 @ 05397468 n 0000 #p 05502556 n 0000 #p 05503705 n 0000 | clear liquid produced in the ventricles of the brain; fills and protects cavities in the brain and spinal cord -05504336 08 n 02 peripheral_nervous_system 0 systema_nervosum_periphericum 0 002 @ 05237227 n 0000 #p 05462315 n 0000 | the section of the nervous system lying outside the brain and spinal cord -05504532 08 n 02 autonomic_nervous_system 0 ANS 0 005 @ 05462674 n 0000 #p 05462315 n 0000 %p 05297163 n 0000 %p 05505131 n 0000 %p 05505679 n 0000 | the part of the nervous system of vertebrates that controls involuntary actions of the smooth muscles and heart and glands -05504807 08 n 03 radial_nerve 0 nervus_radialis 0 musculospiral_nerve 0 001 @ 05474346 n 0000 | largest branch of the brachial plexus; extends down the humerus to the lateral epicondyle where it divides into one branch that goes to the skin on the back of the hand and another that goes to the underlying extensor muscles -05505131 08 n 01 sympathetic_nervous_system 0 006 @ 05462315 n 0000 #p 05504532 n 0000 %p 05505479 n 0000 %p 05508735 n 0000 %p 05609111 n 0000 %p 05609524 n 0000 | originates in the thoracic regions of the spinal cord; opposes physiological effects of the parasympathetic: reduces digestive secretions; speeds the heart; contracts blood vessels -05505479 08 n 01 splanchnic_nerve 0 002 @ 05474346 n 0000 #p 05505131 n 0000 | any of several nerves of the sympathetic part of the autonomic nervous system that innervate viscera and blood vessels -05505679 08 n 02 parasympathetic_nervous_system 0 parasympathetic 0 003 @ 05462315 n 0000 #p 05504532 n 0000 + 03011248 a 0201 | originates in the brain stem and lower part of the spinal cord; opposes physiological effects of the sympathetic nervous system: stimulates digestive secretions; slows the heart; constricts the pupils; dilates blood vessels -05506034 08 n 02 brachial_plexus 0 plexus_brachialis 0 001 @ 05236848 n 0000 | a network of nerves formed by cervical and thoracic spinal nerves and supplying the arm and parts of the shoulder -05506229 08 n 02 cardiac_plexus 0 plexus_cardiacus 0 001 @ 05236848 n 0000 | a plexus of nerves supplying the heart and nearby structures -05506369 08 n 02 carotid_plexus 0 plexus_caroticus 0 001 @ 05236848 n 0000 | a plexus of nerves surrounding the internal carotid artery -05506507 08 n 02 cervical_plexus 0 plexus_cervicalis 0 001 @ 05236848 n 0000 | a nerve plexus lying beneath the sternocleidomastoid muscle -05506648 08 n 02 choroid_plexus 0 plexus_choroideus 0 002 @ 05236322 n 0000 %p 05342070 n 0000 | a vascular plexus of the cerebral ventricles that regulate intraventricular pressure -05506832 08 n 02 coccygeal_plexus 0 plexus_coccygeus 0 001 @ 05236848 n 0000 | a small plexus formed by the fifth sacral and coccygeal nerves -05506976 08 n 02 hypogastric_plexus 0 plexus_hypogastricus 0 001 @ 05236848 n 0000 | a plexus of nerves serving the pelvic viscera -05507109 08 n 02 lumbar_plexus 0 plexus_lumbalis 0 001 @ 05236848 n 0000 | a plexus of nerves formed by the ventral branches of the first four lumbar nerves -05507268 08 n 02 lumbar_plexus 1 plexus_lumbalis 1 001 @ 05236322 n 0000 | a lymphatic plexus located along the lower portion of the aorta and iliac vessels -05507427 08 n 01 lumbosacral_plexus 0 001 @ 05236848 n 0000 | a nerve plexus formed by the ventral divisions of the coccygeal and sacral and lumbar nerves; supplies the lower limbs and perineum and coccygeal area -05507642 08 n 02 mesenteric_plexus 0 plexus_mesentericus 0 001 @ 05236848 n 0000 | a plexus of autonomic nerves -05507756 08 n 02 myenteric_plexus 0 plexus_myentericus 0 001 @ 05236848 n 0000 | a plexus of unmyelinated fibers and postganglionic autonomic cell bodies in the muscular coat of the esophagus and stomach and intestines -05507977 08 n 02 periarterial_plexus 0 plexus_periarterialis 0 001 @ 05236848 n 0000 | an autonomic plexus that accompanies an artery -05508113 08 n 01 plexus_dentalis 0 001 @ 05236848 n 0000 | a plexus of nerves serving the teeth -05508211 08 n 01 pterygoid_plexus 0 001 @ 05236322 n 0000 | a plexus of veins draining the region of the pterygoid muscles and draining into the internal maxillary and anterior facial veins -05508403 08 n 02 pulmonary_plexis 0 plexus_pulmonalis 0 001 @ 05236848 n 0000 | one of two autonomic nerve plexuses in each lung -05508534 08 n 02 sacral_plexus 0 plexus_sacralis 0 001 @ 05236848 n 0000 | a nerve plexus formed by the 4th and 5th lumbar and 1st, 2nd, 3rd sacral nerves; supplies the pelvic region and lower limbs -05508735 08 n 04 solar_plexus 0 coeliac_plexus 0 plexus_celiacus 0 abdominal_nerve_plexus 0 002 @ 05236848 n 0000 #p 05505131 n 0000 | a large plexus of sympathetic nerves in the abdomen behind the stomach -05508943 08 n 02 pit_of_the_stomach 0 epigastric_fossa 0 002 @ 13872211 n 0000 #p 05395690 n 0000 | a slight depression in the midline just below the sternum (where a blow can affect the solar plexus) -05509146 08 n 02 reproductive_system 0 genital_system 0 006 @ 05237227 n 0000 #p 05509452 n 0000 %p 05456732 n 0000 %p 05513302 n 0000 ~ 05513529 n 0000 ~ 05513807 n 0000 | organs and tissues involved in the production and maturation of gametes and in their union and subsequent development as offspring -05509452 08 n 08 urogenital_system 0 urogenital_apparatus 0 urinary_system 0 urinary_apparatus 0 genitourinary_system 0 genitourinary_apparatus 0 systema_urogenitale 0 apparatus_urogenitalis 0 007 @ 05237227 n 0000 %p 05333259 n 0000 %p 05509146 n 0000 %p 05511061 n 0000 %p 05512337 n 0000 %p 05512835 n 0000 %p 05513020 n 0000 | the system that includes all organs involved in reproduction and in the formation and voidance of urine -05509889 08 n 02 respiratory_system 0 systema_respiratorium 0 005 @ 05237227 n 0000 #p 05216365 n 0000 %p 05510173 n 0000 %p 05528060 n 0000 %p 05532050 n 0000 | the system for taking in oxygen and giving off carbon dioxide; in terrestrial animals this is accomplished by breathing -05510173 08 n 02 respiratory_tract 0 airway 0 004 @ 05510907 n 0000 #p 05509889 n 0000 ~ 05510358 n 0000 ~ 05510506 n 0000 | the passages through which air enters and leaves the body -05510358 08 n 01 lower_respiratory_tract 0 004 @ 05510173 n 0000 %p 05387544 n 0000 %p 05531511 n 0000 %p 05531666 n 0000 | the bronchi and lungs -05510506 08 n 01 upper_respiratory_tract 0 006 @ 05510173 n 0000 %p 05528604 n 0000 %p 05529729 n 0000 %p 05531814 n 0000 %p 05547508 n 0000 %p 05598147 n 0000 | the nose and throat and trachea -05510702 08 n 01 sensory_system 0 007 @ 05237227 n 0000 #p 05216365 n 0000 %p 05299178 n 0000 ~ 05300507 n 0000 ~ 05300926 n 0000 ~ 05323036 n 0000 %p 05477946 n 0000 | the body's system of sense organs -05510907 08 n 01 tract 1 003 @ 05237227 n 0000 ~ 05510173 n 0000 ~ 05511061 n 0000 | a system of body parts that together serve some particular purpose -05511061 08 n 01 urinary_tract 0 006 @ 05510907 n 0000 #p 05509452 n 0000 %p 05332802 n 0000 %p 05512337 n 0000 %p 05512835 n 0000 %p 05513020 n 0000 | the organs and tubes involved in the production and excretion of urine -05511286 08 n 01 vascular_system 0 009 @ 05237227 n 0000 #p 05216365 n 0000 #p 13083586 n 0000 ~ 02151448 n 0000 ~ 05377515 n 0000 ~ 05396366 n 0000 %p 05397333 n 0000 ~ 05511618 n 0000 %p 13096863 n 0000 | the vessels and tissue that carry or circulate fluids such as blood or lymph or sap through the body of an animal or plant -05511618 08 n 02 circulatory_system 0 cardiovascular_system 0 011 @ 05511286 n 0000 #p 05216365 n 0000 %p 05385534 n 0000 %p 05388805 n 0000 %p 05401951 n 0000 %p 05404074 n 0000 %p 05417975 n 0000 %p 05418717 n 0000 %p 05421414 n 0000 %p 05430095 n 0000 ~ 05511975 n 0000 | the organs and tissues involved in circulating blood and lymph through the body -05511975 08 n 02 fetal_circulation 0 foetal_circulation 0 001 @ 05511618 n 0000 | the system of blood vessels and structures through which blood moves in a fetus -05512139 08 n 02 bladder 0 vesica 0 005 @ 05515670 n 0000 + 03143662 a 0201 + 03049350 a 0101 ~ 05385161 n 0000 ~ 05512337 n 0000 | a distensible membranous sac (usually containing liquid or gas) -05512337 08 n 01 urinary_bladder 0 004 @ 05512139 n 0000 #p 05511061 n 0000 #p 05509452 n 0000 %p 05572396 n 0000 | a membranous sac for temporary retention of urine -05512505 08 n 01 introitus 0 001 @ 05249636 n 0000 | entrance or opening to a hollow organ or tube (especially the vaginal opening); "the introitus of the vagina" -05512670 08 n 02 urethral_orifice 0 external_orifice 0 003 @ 05249636 n 0000 #p 05513020 n 0000 #p 05521111 n 0000 | the orifice through which urine is discharged -05512835 08 n 01 ureter 0 003 @ 05250659 n 0000 #p 05511061 n 0000 #p 05509452 n 0000 | either of a pair of thick-walled tubes that carry urine from the kidney to the urinary bladder -05513020 08 n 01 urethra 0 008 @ 05250659 n 0000 #p 05511061 n 0000 #p 05509452 n 0000 #p 05526384 n 0000 #p 05521636 n 0000 + 02821373 a 0101 %p 05512670 n 0000 %p 05572227 n 0000 | duct through which urine is discharged in most mammals and which serves as the male genital duct -05513302 08 n 02 reproductive_organ 0 sex_organ 0 007 @ 05297523 n 0000 #p 05509146 n 0000 ~ 05514081 n 0000 ~ 05514717 n 0000 ~ 05515157 n 0000 ~ 05525252 n 0000 ~ 05554653 n 0000 | any organ involved in sexual reproduction -05513529 08 n 01 female_reproductive_system 0 010 @ 05509146 n 0000 #p 05219923 n 0000 %p 05457973 n 0000 %p 05514410 n 0000 %p 05515287 n 0000 %p 05518870 n 0000 %p 05519085 n 0000 %p 05521111 n 0000 %p 05521636 n 0000 %p 05523859 n 0000 | the reproductive system of females -05513807 08 n 01 male_reproductive_system 0 010 @ 05509146 n 0000 #p 05219724 n 0000 %p 05331404 n 0000 %p 05457469 n 0000 %p 05514905 n 0000 %p 05523629 n 0000 %p 05524615 n 0000 %p 05526175 n 0000 %p 05526384 n 0000 %p 05527597 n 0000 | the reproductive system of males -05514081 08 n 06 genitalia 0 genital_organ 0 genitals 0 private_parts 0 privates 0 crotch 1 004 @ 05513302 n 0000 ~ 05514272 n 0000 ~ 05514410 n 0000 ~ 05514905 n 0000 | external sex organ -05514272 08 n 01 pudendum 0 002 @ 05514081 n 0000 + 03104332 a 0101 | human external genital organs collectively especially of a female -05514410 08 n 04 female_genitalia 0 female_genitals 0 female_genital_organ 0 fanny 1 007 @ 05514081 n 0000 #p 05219923 n 0000 #p 05513529 n 0000 ~ 05263732 n 0000 %p 05521111 n 0000 ~ 05521514 n 0000 ~ 05521636 n 0000 | external female sex organs; "in England `fanny' is vulgar slang for female genitals" -05514717 08 n 01 female_internal_reproductive_organ 0 005 @ 05513302 n 0000 #p 05219923 n 0000 ~ 05515287 n 0000 ~ 05518870 n 0000 ~ 05519085 n 0000 | the reproductive organs of a woman -05514905 08 n 04 male_genitalia 0 male_genitals 0 male_genital_organ 0 family_jewels 0 007 @ 05514081 n 0000 #p 05219724 n 0000 #p 05513807 n 0000 %p 05517406 n 0000 %p 05524615 n 0000 %p 05525252 n 0000 %p 05526384 n 0000 | external male sex organs -05515157 08 n 01 male_internal_reproductive_organ 0 002 @ 05513302 n 0000 #p 05219724 n 0000 | the reproductive organs of a man -05515287 08 n 01 ovary 0 007 @ 05514717 n 0000 @ 05524430 n 0000 #p 05513529 n 0000 ;c 01471682 n 0000 + 02932685 a 0101 %p 05353070 n 0000 %p 05518449 n 0000 | (vertebrates) one of usually two organs that produce ova and secrete estrogen and progesterone -05515545 08 n 01 ovotestis 0 001 @ 05524430 n 0000 | hermaphroditic gonad that contains both testicular and ovarian tissue -05515670 08 n 01 sac 0 018 @ 05303402 n 0000 ~ 01465046 n 0000 ~ 01465243 n 0000 ~ 01472638 n 0000 ~ 01472939 n 0000 ~ 01905543 n 0000 ~ 02467581 n 0000 ~ 02467746 n 0000 ~ 02467884 n 0000 ~ 05322570 n 0000 ~ 05512139 n 0000 ~ 05516366 n 0000 ~ 05516554 n 0000 ~ 05516711 n 0000 ~ 05516848 n 0000 ~ 05517578 n 0000 ~ 05528395 n 0000 ~ 05604854 n 0000 | a structure resembling a bag in an animal -05516067 08 n 01 target_organ 0 002 @ 05297523 n 0000 ;c 06062407 n 0000 | (radiology) organ intended to receive the therapeutic dose of a radioactive substance -05516230 08 n 01 taret_organ 1 002 @ 05297523 n 0000 ;c 06049850 n 0000 | (endocrinology) organ most affected by a particular hormone -05516366 08 n 01 acinus 0 005 @ 05515670 n 0000 #p 05327767 n 0000 + 02601940 a 0101 + 02601940 a 0104 + 02601940 a 0102 | one of the small sacs or saclike dilations in a compound gland -05516554 08 n 01 bursa 0 002 @ 05515670 n 0000 + 02672116 a 0101 | a small fluid-filled sac located between movable parts of the body especially at joints -05516711 08 n 02 cisterna 0 cistern 0 001 @ 05515670 n 0000 | a sac or cavity containing fluid especially lymph or cerebrospinal fluid -05516848 08 n 02 pouch 0 pocket 0 009 @ 05515670 n 0000 ;c 06057539 n 0000 ~ 01974229 n 0000 ~ 05322432 n 0000 ~ 05392348 n 0000 ~ 05392562 n 0000 ~ 05517145 n 0000 ~ 05517268 n 0000 ~ 05517406 n 0000 | (anatomy) saclike structure in any of various animals (as a marsupial or gopher or pelican) -05517145 08 n 01 cheek_pouch 0 001 @ 05516848 n 0000 | a membranous pouch inside the mouth of many rodents (as a gopher) -05517268 08 n 01 marsupium 0 001 @ 05516848 n 0000 | an external abdominal pouch in most marsupials where newborn offspring are suckled -05517406 08 n 01 scrotum 0 005 @ 05516848 n 0000 #p 05514905 n 0000 + 03098096 a 0101 %p 05276425 n 0000 %p 05527216 n 0000 | the external pouch that contains the testes -05517578 08 n 02 vesicle 0 cyst 0 007 @ 05515670 n 0000 + 02709299 a 0201 ~ 05331988 n 0000 ~ 05434557 n 0000 ~ 05517837 n 0000 ~ 05518094 n 0000 ~ 05520292 n 0000 | a small anatomically normal sac or bladderlike structure (especially one containing fluid) -05517837 08 n 03 blister 0 bulla 0 bleb 0 008 @ 05517578 n 0000 ;c 06060845 n 0000 + 01174438 a 0301 + 01174438 a 0102 + 00379774 v 0101 ~ 14312776 n 0000 ~ 14312889 n 0000 ~ 14334122 n 0000 | (pathology) an elevation of the skin filled with serous fluid -05518094 08 n 01 follicle 0 004 @ 05517578 n 0000 + 03019836 a 0101 ~ 05518257 n 0000 ~ 05518449 n 0000 | any small spherical group of cells containing a cavity -05518257 08 n 01 hair_follicle 0 002 @ 05518094 n 0000 %p 05328232 n 0000 | a small tubular cavity containing the root of a hair; small muscles and sebaceous glands are associated with them -05518449 08 n 01 Graafian_follicle 0 003 @ 05518094 n 0000 #p 05515287 n 0000 %p 05518614 n 0000 | a vascular body in a mammalian ovary enclosing a developing egg -05518614 08 n 01 corpus_luteum 0 003 @ 05329735 n 0000 #p 05518449 n 0000 + 02758222 a 0101 | yellow endocrine tissue that forms in a ruptured Graafian follicle following the release of an ovum; it degenerates after a few days unless pregnancy has begun -05518870 08 n 03 Fallopian_tube 0 uterine_tube 0 oviduct 0 004 @ 05247057 n 0000 @ 05514717 n 0000 #p 05519085 n 0000 #p 05513529 n 0000 | either of a pair of tubes conducting the egg from the ovary to the uterus -05519085 08 n 02 uterus 0 womb 0 010 @ 05514717 n 0000 #p 05513529 n 0000 %p 05303232 n 0000 %p 05355890 n 0000 ~ 05424796 n 0000 %p 05518870 n 0000 %p 05519401 n 0000 %p 05519820 n 0000 %p 05520168 n 0000 %p 05520699 n 0000 | a hollow muscular organ in the pelvic cavity of females; contains the developing fetus -05519401 08 n 01 uterine_cavity 0 002 @ 05303402 n 0000 #p 05519085 n 0000 | the space inside the uterus between the cervical canal and the Fallopian tubes -05519559 08 n 02 cervical_canal 0 canalis_cervicis_uteri 0 001 @ 05250659 n 0000 | a spindle-shaped canal extending from the uterus to the vagina -05519707 08 n 01 decidua 0 002 @ 05239808 n 0000 #s 05519820 n 0000 | the epithelial tissue of the endometrium -05519820 08 n 01 endometrium 0 005 @ 05327134 n 0000 #p 05519085 n 0000 ;c 14046202 n 0000 + 03063492 a 0101 %s 05519707 n 0000 | (pregnancy) the mucous membrane that lines the uterus; thickens under hormonal control and (if pregnancy does not occur) is shed in menstruation; if pregnancy occurs it is shed along with the placenta at parturition -05520168 08 n 01 myometrium 0 002 @ 05460473 n 0000 #p 05519085 n 0000 | the smooth muscle forming the wall of the uterus -05520292 08 n 01 liposome 0 001 @ 05517578 n 0000 | an artificially made microscopic vesicle into which nucleic acids can be packaged; used in molecular biology as a transducing vector -05520479 08 n 02 umbilical_cord 0 umbilical 0 006 @ 05250659 n 0000 @ 05264756 n 0000 @ 05310790 n 0000 #p 01458842 n 0000 #p 01459791 n 0000 %p 05384817 n 0000 | membranous duct connecting the fetus with the placenta -05520699 08 n 01 placenta 0 005 @ 05397178 n 0000 #p 05519085 n 0000 + 01830946 a 0101 %p 05310596 n 0000 ~ 05520965 n 0000 | the vascular structure in the uterus of most mammals providing oxygen and nutrients for and transferring wastes from the developing fetus -05520965 08 n 01 afterbirth 0 001 @ 05520699 n 0000 | the placenta and fetal membranes that are expelled from the uterus after the baby is born -05521111 08 n 01 vagina 0 007 @ 05250659 n 0000 #p 05514410 n 0000 #p 05513529 n 0000 + 03128070 a 0101 %p 05356083 n 0000 %p 05512670 n 0000 %p 05521934 n 0000 | the lower part of the female reproductive tract; a moist canal in female mammals extending from the labia minora to the uterus; "the vagina receives the penis during coitus"; "the vagina is elastic enough to allow the passage of a fetus" -05521514 08 n 06 cunt 0 puss 0 pussy 0 slit 0 snatch 0 twat 0 001 @ 05514410 n 0000 | obscene terms for female genitals -05521636 08 n 01 vulva 0 012 @ 05514410 n 0000 #p 05513529 n 0000 + 02840203 a 0102 %p 05372125 n 0000 %p 05513020 n 0000 %p 05522283 n 0000 %p 05522456 n 0000 %p 05522674 n 0000 %p 05522784 n 0000 %p 05522998 n 0000 %p 05523108 n 0000 %p 05523420 n 0000 | external parts of the female genitalia -05521934 08 n 03 hymen 0 maidenhead 0 virginal_membrane 0 004 @ 05327134 n 0000 #p 05521111 n 0000 + 03137031 a 0101 ~ 05522148 n 0000 | a fold of tissue that partly covers the entrance to the vagina of a virgin -05522148 08 n 01 imperforate_hymen 0 001 @ 05521934 n 0000 | hymen that is completely closed so that menstrual blood cannot flow out -05522283 08 n 03 mons 0 mons_veneris 0 mons_pubis 0 003 @ 05268965 n 0000 #p 05521636 n 0000 #p 05558555 n 0000 | a mound of fatty tissue covering the pubic area in women -05522456 08 n 01 labium 0 004 @ 05225090 n 0000 #p 05521636 n 0000 ~ 05522674 n 0000 ~ 05522998 n 0000 | a liplike structure that bounds a bodily orifice (especially any of the four labiate folds of a woman's vulva) -05522674 08 n 01 labia_majora 0 002 @ 05522456 n 0000 #p 05521636 n 0000 | the two outer folds of the vulva -05522784 08 n 07 pudendal_cleft 0 urogenital_cleft 0 rima_pudendi 0 rima_vulvae 0 pudendal_cleavage 0 pudendal_slit 0 vulvar_slit 0 002 @ 05610008 n 0000 #p 05521636 n 0000 | the fissure between the labia majora -05522998 08 n 01 labia_minora 0 002 @ 05522456 n 0000 #p 05521636 n 0000 | the two inner folds of the vulva -05523108 08 n 01 vestibule_of_the_vagina 0 002 @ 05304603 n 0000 #p 05521636 n 0000 | the space between the labia minora containing the orifice of the urethra -05523269 08 n 01 erectile_organ 0 004 @ 05297523 n 0000 %p 05288912 n 0000 ~ 05523420 n 0000 ~ 05526384 n 0000 | an organ containing erectile tissue -05523420 08 n 03 clitoris 0 clit 0 button 1 006 @ 05523269 n 0000 #p 05521636 n 0000 + 02840328 a 0102 + 02840328 a 0101 %p 05368444 n 0000 %p 05527085 n 0000 | a female sexual organ homologous to the penis -05523629 08 n 02 Cowper's_gland 0 bulbourethral_gland 0 002 @ 05328867 n 0000 #p 05513807 n 0000 | either of two glands that discharge a component of seminal fluid into the urethra; homologous to Bartholin's gland in the female -05523859 08 n 01 Bartholin's_gland 0 002 @ 05555294 n 0000 #p 05513529 n 0000 | either of the two posterior vestibular glands that secrete a lubricating mucus; homologous to Cowper's gland in the male -05524062 08 n 03 cervical_glands 0 cervical_glands_of_the_uterus 0 glandulae_cervicales_uteri 0 001 @ 05328867 n 0000 | mucus-secreting glands in the mucosa of the uterine cervix -05524243 08 n 01 seminiferous_tubule 0 002 @ 05246796 n 0000 #p 05524615 n 0000 | any of the numerous long convoluted tubules in the testis which are the sites where spermatozoa mature -05524430 08 n 02 gonad 0 sex_gland 0 005 @ 05329735 n 0000 + 02975349 a 0101 ~ 05515287 n 0000 ~ 05515545 n 0000 ~ 05524615 n 0000 | a gland in which gametes (sex cells) are produced -05524615 08 n 08 testis 0 testicle 0 orchis 0 ball 1 ballock 0 bollock 0 nut 0 egg 0 014 @ 05525252 n 0000 @ 05524430 n 0000 #p 05513807 n 0000 #p 05514905 n 0000 + 02933304 a 0201 %p 05355527 n 0000 %p 05382729 n 0000 %p 05524243 n 0000 ~ 05525100 n 0000 ~ 05525391 n 0000 %p 05525628 n 0000 %p 05525807 n 0000 %p 05526175 n 0000 %p 05527848 n 0000 | one of the two male reproductive glands that produce spermatozoa and secrete androgens; "she kicked him in the balls and got away" -05525100 08 n 01 cobblers 0 002 @ 05524615 n 0000 ;r 08860123 n 0000 | a man's testicles (from Cockney rhyming slang: cobbler's awl rhymes with ball) -05525252 08 n 01 male_reproductive_gland 0 003 @ 05513302 n 0000 #p 05514905 n 0000 ~ 05524615 n 0000 | the reproductive organs of a man -05525391 08 n 02 undescended_testis 0 undescended_testicle 0 002 @ 05524615 n 0000 #p 14092247 n 0000 | a testis that fails to move into the scrotum as the male fetus develops; "undescended testicles have an increased risk for cancer" -05525628 08 n 01 epididymis 0 004 @ 05250659 n 0000 #p 05527216 n 0000 #p 05524615 n 0000 %p 05525970 n 0000 | a convoluted tubule in each testis; carries sperm to vas deferens -05525807 08 n 01 rete_testis 0 002 @ 05236322 n 0000 #p 05524615 n 0000 | network of tubules carrying sperm from the seminiferous tubules to the vasa efferentia -05525970 08 n 01 vasa_efferentia 0 002 @ 05246796 n 0000 #p 05525628 n 0000 | the several highly convoluted tubules that lead from the rete testis to the vas deferens and form the head of the epididymis -05526175 08 n 02 vas_deferens 0 ductus_deferens 0 004 @ 05250659 n 0000 #p 05527216 n 0000 #p 05524615 n 0000 #p 05513807 n 0000 | a duct that carries spermatozoa from the epididymis to the ejaculatory duct -05526384 08 n 03 penis 0 phallus 0 member 1 012 @ 05523269 n 0000 #p 05514905 n 0000 #p 05513807 n 0000 + 01477391 a 0201 + 02839179 a 0201 + 03097952 a 0102 %p 05368594 n 0000 %p 05421723 n 0000 %p 05513020 n 0000 ~ 05526713 n 0000 ~ 05526860 n 0000 %p 05526957 n 0000 | the male organ of copulation (`member' is a euphemism) -05526713 08 n 08 cock 0 prick 0 dick 0 shaft 1 pecker 0 peter 0 tool 0 putz 0 002 @ 05526384 n 0000 ;u 07124340 n 0000 | obscene terms for penis -05526860 08 n 02 micropenis 0 microphallus 0 001 @ 05526384 n 0000 | an abnormally small penis -05526957 08 n 02 prepuce 0 foreskin 0 002 @ 05238282 n 0000 #p 05526384 n 0000 | a fold of skin covering the tip of the penis -05527085 08 n 02 prepuce 1 foreskin 1 002 @ 05238282 n 0000 #p 05523420 n 0000 | a fold of skin covering the tip of the clitoris -05527216 08 n 01 seminal_duct 0 005 @ 05250659 n 0000 #p 05517406 n 0000 %p 05525628 n 0000 %p 05526175 n 0000 %p 05527389 n 0000 | the efferent duct of the testis in man -05527389 08 n 01 ejaculatory_duct 0 002 @ 05250659 n 0000 #p 05527216 n 0000 | a part of the seminal duct formed by the duct from the seminal vesicle and the vas deferens; passes through the prostate gland -05527597 08 n 01 seminal_vesicle 0 002 @ 05328867 n 0000 #p 05513807 n 0000 | either of a pair of glands located on either side of the male urinary bladder that open into the vas deferens and that secrete many components of semen during ejaculation -05527848 08 n 01 spermatic_cord 0 002 @ 05264756 n 0000 #p 05524615 n 0000 | a structure resembling a cord that suspends the testis within the scrotum and contains the vas deferens and other vessels and nerves -05528060 08 n 01 respiratory_organ 0 005 @ 05298729 n 0000 #p 05509889 n 0000 ~ 02510769 n 0000 ~ 05387544 n 0000 ~ 05528245 n 0000 | any organ involved in the process of respiration -05528245 08 n 01 book_lung 0 001 @ 05528060 n 0000 | organ in many arachnids containing many thin folds of membrane resembling the leaves of a book -05528395 08 n 03 alveolus 0 air_sac 3 air_cell 0 003 @ 05515670 n 0000 #p 05387544 n 0000 + 00327690 a 0101 | a tiny sac for holding air in the lungs; formed by the terminal dilation of tiny air passageways -05528604 08 n 01 nasal_cavity 0 004 @ 05303402 n 0000 #p 05598147 n 0000 #p 05510506 n 0000 %p 05240850 n 0000 | either of the two cavities lying between the floor of the cranium and the roof of the mouth and extending from the face to the pharynx -05528854 08 n 01 nasopharynx 0 004 @ 05303402 n 0000 #p 05547508 n 0000 + 02767250 a 0101 %p 05309050 n 0000 | cavity forming the upper part of the pharynx -05529012 08 n 01 oropharynx 0 003 @ 05303402 n 0000 #p 05547508 n 0000 + 02771740 a 0101 | cavity formed by the pharynx at the back of the mouth -05529159 08 n 01 laryngopharynx 0 003 @ 05303402 n 0000 #p 05547508 n 0000 + 02882135 a 0101 | the lower part of the pharynx -05529286 08 n 06 pharyngeal_tonsil 0 adenoid 0 Luschka's_tonsil 0 third_tonsil 0 tonsilla_pharyngealis 0 tonsilla_adenoidea 0 004 @ 05287882 n 0000 #p 05547508 n 0000 + 02603540 a 0201 + 02603673 a 0201 | a collection of lymphatic tissue in the throat behind the uvula (on the posterior wall and roof of the nasopharynx); "hypertrophy of the pharyngeal tonsils is called adenoids"; "enlarged adenoids may restrict the breathing of children" -05529729 08 n 02 larynx 0 voice_box 0 010 @ 05531161 n 0000 @ 05305614 n 0000 #p 05510506 n 0000 + 02881995 a 0101 %p 05301526 n 0000 %p 05349906 n 0000 %p 05372593 n 0000 %p 05530092 n 0000 %p 05530296 n 0000 %p 05530429 n 0000 | a cartilaginous structure at the top of the trachea; contains elastic vocal cords that are the source of the vocal tone in speech -05530092 08 n 03 arytenoid 0 arytaenoid 0 arytenoid_cartilage 0 002 @ 05288091 n 0000 #p 05529729 n 0000 | either of two small cartilages at the back of the larynx to which the vocal folds are attached -05530296 08 n 02 thyroid_cartilage 0 Adam's_apple 0 002 @ 05288091 n 0000 #p 05529729 n 0000 | the largest cartilage of the larynx -05530429 08 n 04 vocal_cord 0 vocal_fold 0 vocal_band 0 plica_vocalis 0 004 @ 05492259 n 0000 #p 05529729 n 0000 ~ 05530657 n 0000 ~ 05530871 n 0000 | either of two pairs of folds of mucous membrane projecting into the larynx -05530657 08 n 05 false_vocal_cord 0 false_vocal_fold 0 superior_vocal_cord 0 ventricular_fold 0 vestibular_fold 0 001 @ 05530429 n 0000 | either of the upper two vocal cords that are not involved in vocalization -05530871 08 n 04 true_vocal_cord 0 true_vocal_fold 0 inferior_vocal_cord 0 inferior_vocal_fold 0 001 @ 05530429 n 0000 | either of the two lower vocal folds that come together to form the glottis; produce a vocal tone when they are approximated and air from the lungs passes between them -05531161 08 n 01 cartilaginous_structure 0 007 @ 05225602 n 0000 %s 05288091 n 0000 ~ 05301752 n 0000 ~ 05323889 n 0000 ~ 05324134 n 0000 ~ 05529729 n 0000 ~ 05592302 n 0000 | body structure given shape by cartilage -05531379 08 n 01 cartilaginous_tube 0 003 @ 05250659 n 0000 ~ 05531511 n 0000 ~ 05531814 n 0000 | a duct with cartilaginous walls -05531511 08 n 02 bronchus 0 bronchial_tube 0 003 @ 05531379 n 0000 #p 05510358 n 0000 + 02948482 a 0101 | either of the two main branches of the trachea -05531666 08 n 01 bronchiole 0 003 @ 05250659 n 0000 #p 05510358 n 0000 + 02948774 a 0101 | any of the smallest bronchial ducts; ending in alveoli -05531814 08 n 02 trachea 1 windpipe 0 005 @ 05531379 n 0000 #p 05510506 n 0000 #p 05546540 n 0000 + 02944089 a 0101 %p 05301752 n 0000 | membranous tube with cartilaginous rings that conveys inhaled air from the larynx to the bronchi -05532050 08 n 01 trachea 2 003 @ 05246796 n 0000 #p 05509889 n 0000 + 02944089 a 0101 | one of the tubules forming the respiratory system of most insects and many arachnids -05532225 08 n 06 alimentary_canal 0 alimentary_tract 0 digestive_tube 0 digestive_tract 0 gastrointestinal_tract 0 GI_tract 0 008 @ 05250659 n 0000 #p 05329215 n 0000 %p 05395690 n 0000 ~ 05532641 n 0000 %p 05533948 n 0000 %p 05534712 n 0000 %p 05535484 n 0000 %p 05547508 n 0000 | tubular passage of mucous membrane and muscle extending about 8.3 meters from mouth to anus; functions in digestion and elimination -05532641 08 n 01 enteron 0 003 @ 05532225 n 0000 + 03063721 a 0101 + 03063721 a 0102 | the alimentary canal (especially of an embryo or a coelenterate) -05532795 08 n 01 digestive_gland 0 002 @ 05328867 n 0000 #p 05329215 n 0000 | any gland having ducts that pour secretions into the digestive tract -05532944 08 n 01 salivary_gland 0 007 @ 05328867 n 0000 #p 05302499 n 0000 #p 05329215 n 0000 %p 05416198 n 0000 ~ 05533212 n 0000 ~ 05533392 n 0000 ~ 05533635 n 0000 | any of three pairs of glands in the mouth and digestive system that secrete saliva for digestion -05533212 08 n 01 parotid_gland 0 001 @ 05532944 n 0000 | a large salivary gland that produces 50% of daytime saliva; in human beings it is located in front of and below each ear -05533392 08 n 02 sublingual_gland 0 sublingual_salivary_gland 0 001 @ 05532944 n 0000 | a small salivary gland that produces mucin (the viscous component of saliva); in human beings it is located on either side of the mouth under the tongue -05533635 08 n 05 submaxillary_gland 0 submaxillary_salivary_gland 0 submandibular_gland 0 submandibular_salivary_gland 0 mandibular_gland 0 001 @ 05532944 n 0000 | a salivary gland inside the lower jaw on either side that produces most of the nocturnal saliva; discharges saliva into the mouth under the tongue -05533948 08 n 04 esophagus 0 oesophagus 0 gorge 0 gullet 0 006 @ 05248181 n 0000 @ 05461816 n 0000 #p 05532225 n 0000 + 02722801 a 0101 %p 05534174 n 0000 %p 05571132 n 0000 | the passage between the pharynx and the stomach -05534174 08 n 01 epicardia 0 002 @ 05248181 n 0000 #p 05533948 n 0000 | the short part of the esophagus extending downward from the diaphragm to the stomach -05534333 08 n 03 intestine 0 bowel 0 gut 0 007 @ 05298729 n 0000 #p 05556943 n 0000 + 01590747 v 0301 + 02935530 a 0101 %p 05534578 n 0000 ~ 05534712 n 0000 ~ 05535484 n 0000 | the part of the alimentary canal between the stomach and the anus -05534578 08 n 01 hindgut 0 002 @ 05298729 n 0000 #p 05534333 n 0000 | the caudal part of the alimentary canal in vertebrate embryos -05534712 08 n 01 small_intestine 0 007 @ 05534333 n 0000 #p 05532225 n 0000 %p 05346714 n 0000 %p 05348698 n 0000 ~ 05534955 n 0000 ~ 05535247 n 0000 ~ 05535367 n 0000 | the longest part of the alimentary canal; where digestion is completed -05534955 08 n 01 duodenum 0 002 @ 05534712 n 0000 + 02908647 a 0101 | the part of the small intestine between the stomach and the jejunum -05535095 08 n 01 pylorus 0 003 @ 05249636 n 0000 + 03105571 a 0101 %p 05573099 n 0000 | a small circular opening between the stomach and the duodenum -05535247 08 n 01 jejunum 0 001 @ 05534712 n 0000 | the part of the small intestine between the duodenum and the ileum -05535367 08 n 01 ileum 0 001 @ 05534712 n 0000 | the part of the small intestine between the jejunum and the cecum -05535484 08 n 01 large_intestine 0 009 @ 05534333 n 0000 #p 05532225 n 0000 ~ 05535869 n 0000 %p 05536370 n 0000 %p 05536858 n 0000 %p 05537060 n 0000 %p 05537243 n 0000 %p 05537417 n 0000 %p 05537806 n 0000 | beginning with the cecum and ending with the rectum; includes the cecum and the colon and the rectum; extracts moisture from food residues which are later excreted as feces -05535869 08 n 01 colon 0 008 @ 05535484 n 0000 + 02700317 a 0101 %p 05380532 n 0000 ~ 05536178 n 0000 ~ 05536858 n 0000 ~ 05537060 n 0000 ~ 05537243 n 0000 ~ 05537417 n 0000 | the part of the large intestine between the cecum and the rectum; it extracts moisture from food residues before they are excreted -05536178 08 n 01 megacolon 0 001 @ 05535869 n 0000 | an abnormal enlargement of the colon; can be congenital (as in Hirschsprung's disease) or acquired (as when children refuse to defecate) -05536370 08 n 03 cecum 0 caecum 0 blind_gut 0 005 @ 05303402 n 0000 #p 05535484 n 0000 + 02684742 a 0202 + 02684742 a 0101 %p 05537576 n 0000 | the cavity in which the large intestine begins and into which the ileum opens; "the appendix is an offshoot of the cecum" -05536638 08 n 01 ileocecal_valve 0 001 @ 05395286 n 0000 | valve between the ileum of the small intestine and the cecum of the large intestine; prevents material from flowing back from the large to the small intestine -05536858 08 n 01 transverse_colon 0 002 #p 05535484 n 0000 @ 05535869 n 0000 | the part of the large intestine that extends across the abdominal cavity and joins the ascending to the descending colon -05537060 08 n 01 ascending_colon 0 003 #p 05535484 n 0000 @ 05535869 n 0000 %p 05337855 n 0000 | the part of the large intestine that ascends from the cecum to the transverse colon -05537243 08 n 01 descending_colon 0 002 #p 05535484 n 0000 @ 05535869 n 0000 | the part of the large intestine that descends from the transverse colon to the sigmoid colon -05537417 08 n 02 sigmoid_colon 0 sigmoid_flexure 0 002 #p 05535484 n 0000 @ 05535869 n 0000 | the s-shaped curve between the descending colon and the rectum -05537576 08 n 04 appendix 0 vermiform_appendix 0 vermiform_process 0 cecal_appendage 0 002 @ 05470189 n 0000 #p 05536370 n 0000 | a vestigial process that extends from the lower end of the cecum and that resembles a small pouch -05537806 08 n 01 rectum 0 005 @ 05220461 n 0000 #p 05535484 n 0000 + 02933426 a 0101 %p 05354238 n 0000 %p 05538016 n 0000 | the terminal section of the alimentary canal; from the sigmoid flexure to the anus -05538016 08 n 01 anus 0 006 @ 05249636 n 0000 #p 05537806 n 0000 + 02620436 a 0101 ~ 05538215 n 0000 ~ 05538338 n 0000 %p 05571713 n 0000 | the excretory opening at the end of the alimentary canal -05538215 08 n 04 arse 0 arsehole 0 asshole 0 bunghole 0 002 @ 05538016 n 0000 ;u 07157273 n 0000 | vulgar slang for anus -05538338 08 n 01 imperforate_anus 0 001 @ 05538016 n 0000 | a congenital defect of the anus; there is partial or complete obstruction of the anal opening -05538494 08 n 01 perineum 0 002 @ 05221895 n 0000 + 02856851 a 0101 | the general region between the anus and the genital organs -05538625 08 n 02 head 0 caput 0 011 @ 05225090 n 0000 #p 05216365 n 0000 #p 00015388 n 0000 %p 02452464 n 0000 %p 05320899 n 0000 %p 05338410 n 0000 %p 05481095 n 0000 ~ 05539138 n 0000 %p 05540121 n 0000 %p 05600637 n 0000 %p 05602683 n 0000 | the upper part of the human body or the front part of the body in animals; contains the face and brains; "he stuck his head out the window" -05539012 08 n 01 poll 2 003 @ 08663354 n 0000 #p 02374451 n 0000 #p 02403454 n 0000 | the part of the head between the ears -05539138 08 n 01 human_head 0 009 @ 05538625 n 0000 #p 02472293 n 0000 ~ 05539370 n 0000 ~ 05539454 n 0000 %p 05539595 n 0000 %p 05539947 n 0000 %p 05540976 n 0000 %p 05541097 n 0000 %p 05601357 n 0000 | the head of a human being -05539370 08 n 01 bullethead 0 001 @ 05539138 n 0000 | a head shaped like a bullet -05539454 08 n 06 attic 0 bean 0 bonce 0 noodle 0 noggin 0 dome 0 002 @ 05539138 n 0000 + 01400856 v 0201 | informal terms for a human head -05539595 08 n 03 pate 0 poll 1 crown 1 003 @ 08663354 n 0000 #p 05539138 n 0000 ~ 05539717 n 0000 | the top of the head -05539717 08 n 01 tonsure 0 002 @ 05539595 n 0000 + 00037779 v 0101 | the shaved crown of a monk's or priest's head -05539834 08 n 01 epicranium 0 001 @ 05237755 n 0000 | the muscle and aponeurosis and skin covering the cranium -05539947 08 n 01 scalp 0 003 @ 05238282 n 0000 #p 05539138 n 0000 + 00198477 v 0101 | the skin that covers the top of the head; "they wanted to take his scalp as a trophy" -05540121 08 n 01 skull 0 011 @ 05269901 n 0000 #p 05538625 n 0000 #p 05587288 n 0000 %p 05230603 n 0000 %p 05273822 n 0000 %p 05280998 n 0000 %p 05285275 n 0000 %p 05319028 n 0000 %p 05540513 n 0000 %p 05546040 n 0000 %p 05610734 n 0000 | the bony skeleton of the head of vertebrates -05540407 08 n 02 calvaria 0 skullcap 0 002 @ 05269901 n 0000 #p 05540513 n 0000 | the dome of the skull -05540513 08 n 03 cranium 0 braincase 0 brainpan 0 019 @ 05269901 n 0000 #p 05540121 n 0000 + 02844273 a 0101 %p 05231397 n 0000 %p 05235461 n 0000 %p 05274590 n 0000 %p 05282000 n 0000 %p 05540407 n 0000 %p 05541231 n 0000 %p 05541645 n 0000 %p 05541872 n 0000 %p 05543917 n 0000 %p 05544078 n 0000 %p 05544575 n 0000 %p 05544725 n 0000 %p 05544906 n 0000 %p 05545047 n 0000 %p 05545212 n 0000 %p 05545879 n 0000 | the part of the skull that encloses the brain -05540976 08 n 01 occiput 0 003 @ 05269901 n 0000 #p 05539138 n 0000 + 02934994 a 0101 | back part of the head or skull -05541097 08 n 01 sinciput 0 002 @ 05269901 n 0000 #p 05539138 n 0000 | the front part of the head or skull (including the forehead) -05541231 08 n 03 frontal_bone 0 os_frontale 0 forehead 1 006 @ 05276860 n 0000 #p 05540513 n 0000 %p 05232691 n 0000 %p 05234016 n 0000 %p 05234438 n 0000 %p 05541509 n 0000 | the large cranial bone forming the front part of the cranium: includes the upper part of the orbits -05541509 08 n 01 frontal_eminence 0 002 @ 13894434 n 0000 #p 05541231 n 0000 | either prominence of the frontal bone above each orbit -05541645 08 n 01 parietal_bone 0 004 @ 05276860 n 0000 #p 05540513 n 0000 %p 05232503 n 0000 %p 05235350 n 0000 | either of two skull bones between the frontal and occipital bones and forming the top and sides of the cranium -05541872 08 n 01 occipital_bone 0 004 @ 05276860 n 0000 #p 05540513 n 0000 %p 05233238 n 0000 %p 05542052 n 0000 | a saucer-shaped membrane bone that forms the back of the skull -05542052 08 n 01 occipital_protuberance 0 002 @ 13894434 n 0000 #p 05541872 n 0000 | prominence on the outer surface of the occipital bone -05542193 08 n 04 mastoid 0 mastoid_process 0 mastoid_bone 0 mastoidal 0 004 @ 05470189 n 0000 #p 05282000 n 0000 + 02853534 a 0101 %p 05233875 n 0000 | process of the temporal bone behind the ear at the base of the skull -05542416 08 n 01 styloid_process 0 002 @ 05470189 n 0000 #p 05282000 n 0000 | extends from the base of the temporal bone -05542539 08 n 01 pterygoid_process 0 002 @ 05470189 n 0000 #p 05280998 n 0000 | two bony processes descending from the body of the sphenoid bone -05542686 08 n 03 tuberosity 0 tubercle 2 eminence 0 004 @ 05470189 n 0000 + 02818751 a 0201 + 03026095 a 0101 ~ 05248921 n 0000 | a protuberance on a bone especially for attachment of a muscle or ligament -05542893 08 n 03 suture 0 sutura 0 fibrous_joint 0 009 @ 05595083 n 0000 ~ 05543917 n 0000 ~ 05544078 n 0000 ~ 05544264 n 0000 ~ 05544432 n 0000 ~ 05544575 n 0000 ~ 05544725 n 0000 ~ 05544906 n 0000 ~ 05545047 n 0000 | an immovable joint (especially between the bones of the skull) -05543177 08 n 03 synovial_joint 0 articulatio_synovialis 0 diarthrosis 0 007 @ 05595083 n 0000 ~ 05276668 n 0000 ~ 05578251 n 0000 ~ 05580416 n 0000 ~ 05585205 n 0000 ~ 05595531 n 0000 ~ 05597188 n 0000 | a joint so articulated as to move freely -05543425 08 n 01 anterior_fontanelle 0 001 @ 05545212 n 0000 | corresponds to the bregma when bones have ossified -05543541 08 n 04 sphenoid_fontanelle 0 sphenoid_fontanel 0 sphenoidal_fontanelle 0 sphenoidal_fontanel 0 001 @ 05545212 n 0000 | the irregularly shaped area on either side of the cranium where the frontal bone and the anterior tip of the parietal bone and the temporal bone and the greater wing of the sphenoid bone meet; corresponds to the pterion when bones have ossified -05543917 08 n 02 coronal_suture 0 sutura_coronalis 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture between the parietal and frontal bones of the skull -05544078 08 n 02 frontal_suture 0 sutura_frontalis 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture between two halves of the frontal bone (usually obliterated by the age of 6) -05544264 08 n 02 intermaxillary_suture 0 sutura_intermaxillaris 0 002 @ 05542893 n 0000 #p 05284132 n 0000 | the suture between the two maxillae of the upper jawbone -05544432 08 n 02 internasal_suture 0 sutura_internasalis 0 002 @ 05542893 n 0000 #p 05598147 n 0000 | the suture between the two nasal bones -05544575 08 n 02 lamboid_suture 0 sutura_lamboidea 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture between the occipital and parietal bones -05544725 08 n 01 occipitomastoid_suture 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture between the occipital and the temporal bones; a continuation of the lamboid suture -05544906 08 n 01 parietomastoid_suture 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture between the parietal and the temporal bones -05545047 08 n 03 sagittal_suture 0 interparietal_suture 0 sutura_sagittalis 0 002 @ 05542893 n 0000 #p 05540513 n 0000 | the suture uniting the two parietal bones -05545212 08 n 03 fontanelle 0 fontanel 0 soft_spot 0 005 @ 05249636 n 0000 #p 05540513 n 0000 #p 05219420 n 0000 ~ 05543425 n 0000 ~ 05543541 n 0000 | any membranous gap between the bones of the cranium in an infant or fetus -05545439 08 n 02 foramen 0 hiatus 0 003 @ 09379111 n 0000 ~ 05545611 n 0000 ~ 05545879 n 0000 | a natural opening or perforation through a bone or a membranous structure -05545611 08 n 03 interventricular_foramen 0 foramen_of_Monro 0 Monro's_foramen 0 001 @ 05545439 n 0000 | the small opening (on both the right and left sides) that connects the third ventricle in the diencephalon with the lateral ventricle in the cerebral hemisphere -05545879 08 n 01 foramen_magnum 0 002 @ 05545439 n 0000 #p 05540513 n 0000 | the large opening at the base of the cranium through which the spinal cord passes -05546040 08 n 01 jaw 0 008 @ 05269901 n 0000 #p 05540121 n 0000 + 01201089 v 0104 ~ 05275905 n 0000 ~ 05284132 n 0000 %p 05310206 n 0000 %p 05310351 n 0000 ~ 05546298 n 0000 | the part of the skull of a vertebrate that frames the mouth and holds the teeth -05546298 08 n 01 chop 0 001 @ 05546040 n 0000 | a jaw; "I'll hit him on the chops" -05546383 08 n 01 zygomatic_process 0 002 @ 05470189 n 0000 #p 05273822 n 0000 | a slender process of the temporal bone that strengthens the zygomatic arch -05546540 08 n 02 neck 0 cervix 1 014 @ 05225090 n 0000 #p 05216365 n 0000 + 02689430 a 0201 %p 05239680 n 0000 %p 05332569 n 0000 %p 05339357 n 0000 %p 05341920 n 0000 %p 05370918 n 0000 %p 05531814 n 0000 ~ 05547313 n 0000 %p 05547396 n 0000 %p 05547508 n 0000 %p 05588551 n 0000 %p 05590366 n 0000 | the part of an organism (human or animal) that connects the head to the rest of the body; "he admired her long graceful neck"; "the horse won by a neck" -05546997 08 n 02 frill 0 ruff 0 001 @ 05225090 n 0000 | an external body part consisting of feathers or hair about the neck of a bird or other animal -05547149 08 n 01 frill 1 002 @ 05581349 n 0000 ;c 06073888 n 0000 | (paleontology) a bony plate that curves upward behind the skull of many ceratopsian dinosaurs -05547313 08 n 01 bull_neck 0 001 @ 05546540 n 0000 | a thick short powerful neck -05547396 08 n 03 nape 0 scruff 0 nucha 0 002 @ 08629508 n 0000 #p 05546540 n 0000 | the back side of the neck -05547508 08 n 02 throat 0 pharynx 0 013 @ 05548726 n 0000 #p 05546540 n 0000 #p 05532225 n 0000 #p 05510506 n 0000 + 02997099 a 0201 + 01216317 a 0101 %p 05301072 n 0000 %p 05305136 n 0000 %p 05528854 n 0000 %p 05529012 n 0000 %p 05529159 n 0000 %p 05529286 n 0000 %p 05609884 n 0000 | the passage to the stomach and lungs; in the front part of the neck below the chin and above the collarbone -05547904 08 n 01 fauces 0 002 @ 05248181 n 0000 + 02992796 a 0101 | the passage between the back of the mouth and the pharynx -05548032 08 n 02 fistula 0 sinus 3 003 @ 05248181 n 0000 + 02264657 a 0101 + 02729065 a 0101 | an abnormal passage leading from a suppurating cavity to the body surface -05548203 08 n 01 bypass 0 001 @ 05548521 n 0000 | a surgically created shunt (usually around a damaged part) -05548314 08 n 01 portacaval_shunt 0 001 @ 05548521 n 0000 | shunt that is created surgically between the portal vein and the inferior vena cava so that blood from the abdominal organs can bypass the liver -05548521 08 n 01 shunt 0 003 @ 05248181 n 0000 ~ 05548203 n 0000 ~ 05548314 n 0000 | a passage by which a bodily fluid (especially blood) is diverted from one channel to another; "an arteriovenus shunt" -05548726 08 n 01 tubular_cavity 0 002 @ 05303402 n 0000 ~ 05547508 n 0000 | a cavity having the shape of a tube -05548840 08 n 01 shoulder 0 007 @ 05220461 n 0000 #p 05549830 n 0000 + 01239054 v 0101 + 01238907 v 0101 + 01239359 v 0101 %p 05549576 n 0000 %p 05590740 n 0000 | the part of the body between the neck and the upper arm -05549061 08 n 03 shoulder 2 shoulder_joint 0 articulatio_humeri 0 007 @ 05595531 n 0000 #p 05549830 n 0000 + 01239359 v 0101 %p 05279688 n 0000 %p 05342854 n 0000 %p 05343218 n 0000 %p 05604950 n 0000 | a ball-and-socket joint between the head of the humerus and a cavity of the scapula -05549350 08 n 03 deltoid 0 deltoid_muscle 0 musculus_deltoideus 0 002 @ 05289861 n 0000 #p 05604950 n 0000 | a large triangular muscle covering the shoulder joint and serving to abduct and flex and extend and rotate the arm -05549576 08 n 04 armpit 0 axilla 0 axillary_cavity 0 axillary_fossa 0 004 @ 05303402 n 0000 #p 05548840 n 0000 + 02655180 a 0201 %p 05338166 n 0000 | the hollow under the arm where it is joined to the shoulder; "they were up to their armpits in water" -05549830 08 n 03 torso 0 trunk 0 body 1 019 @ 05220461 n 0000 #p 05216365 n 0000 %p 05318606 n 0000 %p 05548840 n 0000 %p 05549061 n 0000 %p 05550330 n 0000 %p 05551318 n 0000 %p 05552607 n 0000 %p 05555473 n 0000 %p 05555688 n 0000 %p 05555917 n 0000 %p 05556204 n 0000 %p 05556325 n 0000 %p 05556472 n 0000 %p 05556943 n 0000 %p 05558717 n 0000 %p 05559256 n 0000 %p 05559727 n 0000 %p 05597594 n 0000 | the body excluding the head and neck and limbs; "they moved their arms and legs and bodies" -05550330 08 n 02 serratus 0 serratus_muscles 0 004 @ 05289861 n 0000 #p 05549830 n 0000 ~ 05550494 n 0000 ~ 05550688 n 0000 | any of several muscles of the trunk -05550494 08 n 04 anterior_serratus_muscle 0 serratus_anterior 0 musculus_serratus_anterior 0 serratus_magnus 0 001 @ 05550330 n 0000 | muscles that rotate the scapula and elevate the rib cage -05550688 08 n 03 posterior_serratus_muscle 0 serratus_posterior 0 musculus_serratus_posterior 0 003 @ 05550330 n 0000 ~ 05550908 n 0000 ~ 05551142 n 0000 | skeletal muscle that draws the rib cage backward and downward -05550908 08 n 01 serratus_posterior_inferior 0 001 @ 05550688 n 0000 | a thin quadrilateral muscle at the junction of the thoracic and lumbar regions; acts to counteract the pull of the diaphragm on the ribs to which it is attached -05551142 08 n 01 serratus_posterior_superior 0 001 @ 05550688 n 0000 | a thin quadrilateral muscle of the upper and dorsal part of the thorax; acts to elevate the upper ribs -05551318 08 n 01 side 0 004 @ 05221895 n 0000 #p 05549830 n 0000 ;c 02472293 n 0000 ;c 00015388 n 0000 | either the left or right half of a body; "he had a pain in his side" -05551494 08 n 02 female_chest 0 bust 0 003 @ 05552607 n 0000 #p 05219923 n 0000 + 02138989 a 0202 | the chest of a woman -05551617 08 n 01 male_chest 0 002 @ 05552607 n 0000 #p 05219724 n 0000 | the chest of a man -05551711 08 n 05 pectoral 0 pectoral_muscle 0 pectoralis 0 musculus_pectoralis 0 pecs 0 005 @ 05289861 n 0000 #p 05552607 n 0000 + 02860389 a 0101 ~ 05551939 n 0000 ~ 05552106 n 0000 | either of two large muscles of the chest -05551939 08 n 03 pectoralis_major 0 musculus_pectoralis_major 0 greater_pectoral_muscle 0 001 @ 05551711 n 0000 | a skeletal muscle that adducts and rotates the arm -05552106 08 n 03 pectoralis_minor 0 musculus_pectoralis_minor 0 smaller_pectoral_muscle 0 001 @ 05551711 n 0000 | a skeletal muscle that draws down the scapula or raises the ribs -05552287 08 n 03 intercostal 0 intercostal_muscle 0 musculus_intercostalis 0 002 @ 05289861 n 0000 + 02704983 a 0101 | muscles between the ribs; they contract during inspiration -05552467 08 n 02 depressor 0 depressor_muscle 0 002 @ 05289861 n 0000 + 01574923 v 0102 | any skeletal muscle that draws a body part down -05552607 08 n 03 thorax 1 chest 0 pectus 0 015 @ 05220461 n 0000 #p 05549830 n 0000 #p 01471682 n 0000 + 02038555 a 0202 %p 05281189 n 0000 %p 05336748 n 0000 %p 05383467 n 0000 %p 05385161 n 0000 %p 05391540 n 0000 ~ 05551494 n 0000 ~ 05551617 n 0000 %p 05551711 n 0000 %p 05553049 n 0000 %p 05553288 n 0000 %p 05553768 n 0000 | the part of the human torso between the neck and the diaphragm or the corresponding part in other vertebrates -05553049 08 n 02 chest_cavity 0 thoracic_cavity 0 003 @ 05303402 n 0000 #p 05552607 n 0000 %p 05324691 n 0000 | the cavity in the vertebrate body enclosed by the ribs between the diaphragm and the neck and containing the lungs and heart -05553288 08 n 02 breast 1 chest 1 004 @ 05225090 n 0000 #p 05552607 n 0000 + 02710244 v 0101 ~ 05553486 n 0000 | the front of the trunk from the neck to the abdomen; "he beat his breast in anger" -05553486 08 n 01 bosom 1 004 @ 05553288 n 0000 + 02138989 a 0101 + 02147313 v 0101 + 01424456 v 0103 | a person's breast or chest -05553618 08 n 01 thorax 2 002 @ 05220461 n 0000 #p 01767661 n 0000 | the middle region of the body of an arthropod between the head and the abdomen -05553768 08 n 01 rib_cage 0 003 @ 05585665 n 0000 #p 05552607 n 0000 #p 05587288 n 0000 | the bony enclosing wall of the chest -05553897 08 n 01 cleavage 0 001 @ 05221895 n 0000 | the line formed by a groove between two parts (especially the separation between a woman's breasts) -05554051 08 n 01 lactiferous_duct 0 002 @ 05250659 n 0000 #p 05554405 n 0000 | ducts of the mammary gland that carry milk to the nipple -05554189 08 n 02 mammary_gland 0 mamma 0 007 @ 05328867 n 0000 #p 01862399 n 0000 + 02893994 a 0201 ~ 02370265 n 0000 ~ 02370360 n 0000 ~ 05554405 n 0000 %p 05554653 n 0000 | milk-secreting organ of female mammals -05554405 08 n 06 breast 0 bosom 0 knocker 0 boob 0 tit 1 titty 0 005 @ 05554189 n 0000 #p 05220126 n 0000 + 02138989 a 0201 %p 05554051 n 0000 %p 05554804 n 0000 | either of two soft fleshy milk-secreting glandular organs on the chest of a woman -05554653 08 n 06 nipple 0 mammilla 0 mamilla 0 pap 0 teat 0 tit 2 002 @ 05513302 n 0000 #p 05554189 n 0000 | the small projection of a mammary gland -05554804 08 n 02 areola 1 ring_of_color 0 003 @ 05221895 n 0000 #p 05554405 n 0000 + 02640746 a 0101 | small circular area such as that around the human nipple or an inflamed area around a pimple or insect bite -05555017 08 n 01 areola 2 001 @ 05230171 n 0000 | small space in a tissue or body part such as the area between veins on a leaf or an insect's wing -05555167 08 n 01 nabothian_gland 0 001 @ 05328867 n 0000 | one of many small glands of the uterine cervix that secrete mucus -05555294 08 n 01 vestibular_gland 0 002 @ 05328867 n 0000 ~ 05523859 n 0000 | a gland that opens into the vestibule of the vagina; secretions lubricate the vagina during coitus -05555473 08 n 03 middle 0 midriff 1 midsection 0 002 @ 05221895 n 0000 #p 05549830 n 0000 | the middle area of the human torso (usually in front); "young American women believe that a bare midriff is fashionable" -05555688 08 n 02 waist 0 waistline 0 003 @ 05221895 n 0000 #p 05549830 n 0000 ~ 05555840 n 0000 | the narrowing of the body between the ribs and hips -05555840 08 n 01 wasp_waist 0 001 @ 05555688 n 0000 | a very slender waist -05555917 08 n 02 belly 2 paunch 0 005 @ 05268965 n 0000 #p 05549830 n 0000 + 00986457 a 0202 + 00257535 v 0101 ~ 05556071 n 0000 | a protruding abdomen -05556071 08 n 05 pot 0 potbelly 0 bay_window 0 corporation 0 tummy 1 002 @ 05555917 n 0000 ;u 07157273 n 0000 | slang for a paunch -05556204 08 n 02 spare_tire 0 love_handle 0 002 @ 05268965 n 0000 #p 05549830 n 0000 | excess fat around the waistline -05556325 08 n 01 hip 0 003 @ 05220461 n 0000 #p 05549830 n 0000 %p 05346406 n 0000 | either side of the body below the waist and above the thigh -05556472 08 n 01 haunch 1 002 @ 05220461 n 0000 #p 05549830 n 0000 | the hip and buttock and upper thigh in human beings -05556595 08 n 06 navel 0 umbilicus 0 bellybutton 0 belly_button 0 omphalos 0 omphalus 0 003 @ 08620061 n 0000 #p 05556943 n 0000 + 02840935 a 0201 | a scar where the umbilical cord was attached; "you were not supposed to show your navel on television"; "they argued whether or not Adam had a navel"; "she had a tattoo just above her bellybutton" -05556943 08 n 04 abdomen 0 venter 0 stomach 1 belly 0 014 @ 05220461 n 0000 #p 05549830 n 0000 + 02733187 a 0303 + 00132385 a 0201 + 02934594 a 0101 %p 05336635 n 0000 %p 05343408 n 0000 %p 05385363 n 0000 %p 05534333 n 0000 %p 05556595 n 0000 %p 05557339 n 0000 ~ 05557723 n 0000 %p 05558345 n 0000 %p 05604434 n 0000 | the region of the body of a vertebrate between the thorax and the pelvis -05557339 08 n 03 abdominal 0 abdominal_muscle 0 ab 1 004 @ 05289861 n 0000 #p 05556943 n 0000 ~ 05557839 n 0000 ~ 05558078 n 0000 | the muscles of the abdomen -05557500 08 n 01 dorsum 0 002 @ 05220461 n 0000 + 00132127 a 0101 | the back of the body of a vertebrate or any analogous surface (as the upper or outer surface of an organ or appendage or part); "the dorsum of the foot" -05557723 08 n 02 underbelly 0 underbody 0 001 @ 05556943 n 0000 | the soft belly or underside of an animal's body -05557839 08 n 04 external_oblique_muscle 0 musculus_obliquus_externus_abdominis 0 abdominal_external_oblique_muscle 0 oblique 0 002 @ 05557339 n 0000 + 01718867 a 0401 | a diagonally arranged abdominal muscle on either side of the torso -05558078 08 n 04 transversus_abdominis_muscle 0 transverse_muscle_of_abdomen 0 musculus_transversalis_abdominis 0 transversus_abdominis 0 001 @ 05557339 n 0000 | a flat muscle with transverse fibers that forms the anterior and lateral walls of the abdominal cavity -05558345 08 n 02 abdominal_cavity 0 abdomen 1 003 @ 05303402 n 0000 #p 05556943 n 0000 + 02934594 a 0201 | the cavity containing the major viscera; in mammals it is separated from the thorax by the diaphragm -05558555 08 n 03 pubes 0 pubic_region 0 loins 0 002 @ 05221895 n 0000 %p 05522283 n 0000 | the lower part of the abdomen just above the external genital organs -05558717 08 n 02 back 0 dorsum 1 008 @ 05220461 n 0000 #p 05549830 n 0000 + 00132127 a 0201 %p 01895219 n 0000 %p 05559023 n 0000 %p 05559122 n 0000 %p 05589132 n 0000 %p 05589378 n 0000 | the posterior part of a human (or animal) body from the neck to the end of the spine; "his back was nicely tanned" -05559023 08 n 01 small 0 002 @ 05220461 n 0000 #p 05558717 n 0000 | the slender part of the back -05559122 08 n 02 latissimus_dorsi 0 lat 0 002 @ 05289861 n 0000 #p 05558717 n 0000 | a broad flat muscle on either side of the back -05559256 08 n 1c buttocks 0 nates 0 arse 1 butt 0 backside 0 bum 0 buns 0 can 0 fundament 0 hindquarters 0 hind_end 0 keister 0 posterior 0 prat 0 rear 0 rear_end 0 rump 0 stern 0 seat 0 tail 1 tail_end 0 tooshie 0 tush 0 bottom 0 behind 0 derriere 0 fanny 0 ass 0 003 @ 05220461 n 0000 #p 05549830 n 0000 + 00131426 a 0d01 | the fleshy part of the human body that you sit on; "he deserves a good kick in the butt"; "are you going to sit on your fanny and do nothing?" -05559727 08 n 02 buttock 0 cheek 1 003 @ 05220461 n 0000 #p 05549830 n 0000 %p 05570129 n 0000 | either of the two large fleshy masses of muscular tissue that form the human rump -05559908 08 n 03 extremity 0 appendage 0 member 0 010 @ 05225090 n 0000 ~ 01768596 n 0000 ~ 01768808 n 0000 ~ 01785234 n 0000 ~ 02156532 n 0000 ~ 02465257 n 0000 ~ 02466132 n 0000 ~ 02585446 n 0000 ~ 05560244 n 0000 ~ 05566097 n 0000 | an external body part that projects from the body; "it is important to keep the extremities warm" -05560244 08 n 01 limb 0 014 @ 05559908 n 0000 #p 05587034 n 0000 ~ 02464461 n 0000 ~ 02464785 n 0000 ~ 02465084 n 0000 %p 05560631 n 0000 ~ 05560787 n 0000 ~ 05561390 n 0000 ~ 05561507 n 0000 ~ 05562249 n 0000 ~ 05563770 n 0000 ~ 05564229 n 0000 ~ 05564323 n 0000 %p 05566919 n 0000 | one of the jointed appendages of an animal used for locomotion or grasping: arm; leg; wing; flipper -05560631 08 n 01 stump 0 003 @ 05220461 n 0000 #p 05560244 n 0000 #p 05282746 n 0000 | the part of a limb or tooth that remains after the rest is removed -05560787 08 n 01 leg 1 024 @ 05560244 n 0000 #p 05216365 n 0000 + 02385851 a 0101 %p 05376844 n 0000 %p 05379734 n 0000 %p 05384300 n 0000 %p 05561390 n 0000 ~ 05561707 n 0000 ~ 05561834 n 0000 ~ 05562015 n 0000 ~ 05562161 n 0000 %p 05562249 n 0000 %p 05562756 n 0000 %p 05562902 n 0000 %p 05563266 n 0000 %p 05567875 n 0000 %p 05568349 n 0000 %p 05573602 n 0000 %p 05578442 n 0000 %p 05591256 n 0000 %p 05594037 n 0000 %p 05594201 n 0000 %p 05594367 n 0000 %p 14559983 n 0000 | a human limb; commonly used to refer to a whole limb but technically only the part of the limb between the knee and ankle -05561390 08 n 01 crus 0 003 @ 05560244 n 0000 #p 05560787 n 0000 + 02705809 a 0101 | the leg from the knee to foot -05561507 08 n 01 leg 2 005 @ 05560244 n 0000 + 02385851 a 0101 ~ 01784925 n 0000 ~ 02464327 n 0000 %p 05563034 n 0000 | a structure in animals that is similar to a human leg and used for locomotion -05561707 08 n 03 pin 0 peg 0 stick 0 001 @ 05560787 n 0000 | informal terms for the leg; "fever left him weak on his sticks" -05561834 08 n 06 bowleg 0 bow_leg 0 bandyleg 0 bandy_leg 0 genu_varum 0 tibia_vara 0 002 @ 05560787 n 0000 @ 14548343 n 0000 | a leg bowed outward at the knee (or below the knee) -05562015 08 n 04 shank's_mare 0 shanks'_mare 0 shank's_pony 0 shanks'_pony 0 001 @ 05560787 n 0000 | you own legs; "I traveled on shank's mare" -05562161 08 n 02 spindlelegs 0 spindleshanks 0 001 @ 05560787 n 0000 | long thin legs -05562249 08 n 01 thigh 0 014 @ 05560244 n 0000 #p 05560787 n 0000 %p 05291945 n 0000 %p 05292073 n 0000 %p 05292200 n 0000 %p 05294819 n 0000 %p 05342673 n 0000 %p 05345247 n 0000 %p 05367508 n 0000 ~ 05562595 n 0000 %p 05568104 n 0000 %p 05573895 n 0000 %p 05579053 n 0000 %p 05596004 n 0000 | the part of the leg between the hip and the knee -05562595 08 n 01 lap 0 001 @ 05562249 n 0000 | the upper side of the thighs of a seated person; "he picked up the little girl and plopped her down in his lap" -05562756 08 n 01 shank 0 003 @ 05220461 n 0000 #p 05560787 n 0000 %p 05574332 n 0000 | the part of the human leg between the knee and the ankle -05562902 08 n 01 shin 1 002 @ 05220461 n 0000 #p 05560787 n 0000 | the front part of the human leg between the knee and the ankle -05563034 08 n 02 vertebrate_foot 0 pedal_extremity 0 007 @ 05566919 n 0000 #p 05561507 n 0000 #p 01471682 n 0000 ~ 02153445 n 0000 ~ 05563266 n 0000 %p 05594568 n 0000 %p 05594822 n 0000 | the extremity of the limb in vertebrates -05563266 08 n 03 foot 1 human_foot 0 pes 0 017 @ 05563034 n 0000 #p 05560787 n 0000 #p 02472293 n 0000 + 01906322 v 0101 %p 05274808 n 0000 %p 05337055 n 0000 %p 05344514 n 0000 %p 05352433 n 0000 %p 05370410 n 0000 %p 05373924 n 0000 ~ 05576421 n 0000 %p 05576950 n 0000 %p 05577190 n 0000 %p 05577410 n 0000 %p 05577741 n 0000 %p 05577969 n 0000 %p 05578095 n 0000 | the part of the leg of a human being below the ankle joint; "his bare feet projected from his trousers"; "armored from head to foot" -05563770 08 n 01 arm 0 015 @ 05560244 n 0000 #p 05216365 n 0000 #p 02472293 n 0000 + 02739427 n 0101 %p 05338614 n 0000 %p 05361123 n 0000 %p 05564323 n 0000 %p 05564590 n 0000 %p 05568767 n 0000 %p 05579436 n 0000 %p 05579753 n 0000 %p 05579944 n 0000 %p 05584928 n 0000 %p 05593017 n 0000 %p 05593181 n 0000 | a human limb; technically the part of the superior limb between the shoulder and the elbow but commonly used to refer to the whole superior limb -05564229 08 n 01 cubitus 1 001 @ 05560244 n 0000 | the arm from the elbow to the fingertips -05564323 08 n 01 forearm 0 009 @ 05560244 n 0000 #p 05563770 n 0000 %p 05292856 n 0000 %p 05356442 n 0000 %p 05358944 n 0000 %p 05379039 n 0000 %p 05384691 n 0000 %p 05593318 n 0000 %p 05593476 n 0000 | the part of the superior limb between the elbow and the wrist -05564590 08 n 04 hand 0 manus 0 mitt 0 paw 1 017 @ 05566919 n 0000 #p 05563770 n 0000 #p 02472293 n 0000 + 01211098 v 0401 + 02230772 v 0102 %p 05344514 n 0000 %p 05352291 n 0000 %p 05370410 n 0000 %p 05373790 n 0000 ~ 05565064 n 0000 ~ 05565192 n 0000 ~ 05565337 n 0000 ~ 05565548 n 0000 %p 05565696 n 0000 %p 05566504 n 0000 %p 05576194 n 0000 %p 05593871 n 0000 | the (prehensile) extremity of the superior limb; "he had the hands of a surgeon"; "he extended his mitt" -05565064 08 n 02 fist 0 clenched_fist 0 001 @ 05564590 n 0000 | a hand with the fingers clenched in the palm (as for hitting) -05565192 08 n 03 hooks 0 meat_hooks 0 maulers 0 001 @ 05564590 n 0000 | large strong hand (as of a fighter); "wait till I get my hooks on him" -05565337 08 n 02 right 0 right_hand 0 001 @ 05564590 n 0000 | the hand that is on the right side of the body; "he writes with his right hand but pitches with his left"; "hit him with quick rights to the body" -05565548 08 n 02 left 0 left_hand 0 002 @ 05564590 n 0000 + 10252921 n 0204 | the hand that is on the left side of the body; "jab with your left" -05565696 08 n 02 palm 0 thenar 0 007 @ 05221895 n 0000 #p 05564590 n 0000 + 02814104 a 0202 + 02814104 a 0201 + 02773062 a 0101 + 01210737 v 0102 %p 05565937 n 0000 | the inner surface of the hand from the wrist to the base of the fingers -05565937 08 n 01 thenar 1 004 @ 05221895 n 0000 #p 05565696 n 0000 + 02814104 a 0102 + 02814104 a 0101 | the fleshy area of the palm at the base of the thumb -05566097 08 n 02 digit 0 dactyl 0 008 @ 05559908 n 0000 #p 01471682 n 0000 + 02713096 a 0101 %p 05278584 n 0000 ~ 05566366 n 0000 ~ 05566504 n 0000 ~ 05577410 n 0000 %p 05581693 n 0000 | a finger or toe in human beings or corresponding body part in other vertebrates -05566366 08 n 01 minimus 0 003 @ 05566097 n 0000 ~ 05567727 n 0000 ~ 05577969 n 0000 | the fifth digit; the little finger or little toe -05566504 08 n 01 finger 0 015 @ 05566097 n 0000 #p 05564590 n 0000 @ 05566919 n 0000 + 01209678 v 0102 + 01209953 v 0101 + 00924431 v 0101 %p 02440523 n 0000 %p 05567117 n 0000 ~ 05567217 n 0000 ~ 05567381 n 0000 ~ 05567489 n 0000 ~ 05567604 n 0000 ~ 05567727 n 0000 %p 05584265 n 0000 %p 05585205 n 0000 | any of the terminal members of the hand (sometimes excepting the thumb); "her fingers were long and thin" -05566919 08 n 01 extremity 1 006 @ 05225090 n 0000 #p 05560244 n 0000 ~ 05563034 n 0000 ~ 05564590 n 0000 ~ 05566504 n 0000 ~ 05577410 n 0000 | that part of a limb that is farthest from the torso -05567117 08 n 01 fingertip 0 002 @ 08663156 n 0000 #p 05566504 n 0000 | the end (tip) of a finger -05567217 08 n 02 thumb 0 pollex 0 004 @ 05566504 n 0000 + 01209953 v 0102 %p 05291604 n 0000 %p 05584390 n 0000 | the thick short innermost digit of the forelimb -05567381 08 n 03 index 0 index_finger 0 forefinger 0 001 @ 05566504 n 0000 | the finger next to the thumb -05567489 08 n 02 ring_finger 0 annualry 0 001 @ 05566504 n 0000 | the third finger (especially of the left hand) -05567604 08 n 01 middle_finger 0 001 @ 05566504 n 0000 | the second finger; between the index finger and the ring finger -05567727 08 n 03 little_finger 0 pinkie 0 pinky 0 003 @ 05566504 n 0000 @ 05566366 n 0000 %p 05291230 n 0000 | the finger farthest from the thumb -05567875 08 n 02 sciatic_nerve 0 nervus_ischiadicus 0 002 @ 05474346 n 0000 #p 05560787 n 0000 | arises from the sacral plexus and passes about halfway down the thigh where it divides into the common peroneal and tibial nerves -05568104 08 n 03 femoral_nerve 0 nervus_femoralis 0 anterior_crural_nerve 0 002 @ 05569053 n 0000 #p 05562249 n 0000 | one of a pair of nerves that originate from lumbar nerves and supply the muscles and skin of the anterior part of the thigh -05568349 08 n 02 saphenous_nerve 0 nervus_saphenus 0 002 @ 05474346 n 0000 #p 05560787 n 0000 | a branch of the femoral nerve that supplies cutaneous branches to the inner aspect of the leg and foot -05568550 08 n 02 phrenic_nerve 0 nervus_phrenicus 0 001 @ 05569053 n 0000 | one of a pair of nerves that arises from cervical spinal roots and passes down the thorax to innervate the diaphragm and control breathing -05568767 08 n 03 ulnar_nerve 0 cubital_nerve 0 nervus_ulnaris 0 003 @ 05474346 n 0000 #p 05563770 n 0000 ~ 05580662 n 0000 | a nerve running along the inner side of the arm and passing near the elbow; supplies intrinsic muscles of the hand and the skin of the medial side of the hand -05569053 08 n 02 spinal_nerve 0 nervus_spinalis 0 010 @ 05474346 n 0000 %p 05365633 n 0000 %p 05424963 n 0000 ~ 05568104 n 0000 ~ 05568550 n 0000 ~ 05569427 n 0000 ~ 05569577 n 0000 ~ 05569690 n 0000 ~ 05569835 n 0000 ~ 05569979 n 0000 | any of the 31 pairs of nerves emerging from each side of the spinal cord (each attached to the cord by two roots: ventral and dorsal) -05569427 08 n 01 cervical_nerve 0 001 @ 05569053 n 0000 | any of eight pairs of spinal nerves emerging from the cervical section of the spinal cord -05569577 08 n 02 coccygeal_nerve 0 nervus_coccygeus 0 001 @ 05569053 n 0000 | the lowest pair of spinal nerves -05569690 08 n 01 lumbar_nerve 0 001 @ 05569053 n 0000 | any of five pairs of spinal nerves emerging from the lumbar section of the spinal cord -05569835 08 n 01 sacral_nerve 0 001 @ 05569053 n 0000 | any of five pairs of spinal nerves emerging from the sacral region of the spinal cord -05569979 08 n 01 thoracic_nerve 0 001 @ 05569053 n 0000 | any of twelve pairs of spinal nerves emerging from the thoracic region of the spinal cord -05570129 08 n 04 gluteus 0 gluteus_muscle 0 gluteal_muscle 0 glute 0 006 @ 05289861 n 0000 #p 05559727 n 0000 + 02736276 a 0101 ~ 05570396 n 0000 ~ 05570500 n 0000 ~ 05570600 n 0000 | any one of three large skeletal muscles that form the buttock and move the thigh -05570396 08 n 01 gluteus_maximus 0 001 @ 05570129 n 0000 | the outermost of the three gluteal muscles -05570500 08 n 01 gluteus_medius 0 001 @ 05570129 n 0000 | the middle of the three gluteal muscles -05570600 08 n 01 gluteus_minimus 0 001 @ 05570129 n 0000 | the innermost of the three gluteal muscles -05570704 08 n 02 hamstring 0 hamstring_tendon 0 002 @ 05296253 n 0000 + 00091851 v 0101 | one of the tendons at the back of the knee -05570839 08 n 03 sphincter 0 anatomical_sphincter 0 sphincter_muscle 0 009 @ 05289297 n 0000 ~ 05571501 n 0000 ~ 05571713 n 0000 ~ 05572227 n 0000 ~ 05572396 n 0000 ~ 05572629 n 0000 ~ 05572782 n 0000 ~ 05572940 n 0000 ~ 05573099 n 0000 | a ring of muscle that contracts to close an opening -05571132 08 n 01 cardiac_sphincter 0 002 @ 05571501 n 0000 #p 05533948 n 0000 | the valve between the distal end of the esophagus and the stomach; the physiological sphincter at the esophagogastric junction -05571341 08 n 02 esophagogastric_junction 0 oesophagogastric_junction 0 001 @ 13911151 n 0000 | the junction between the esophagus and the stomach epithelium -05571501 08 n 01 physiological_sphincter 0 002 @ 05570839 n 0000 ~ 05571132 n 0000 | a sphincter that is not recognizable at autopsy because its resting arrangement cannot be distinguished from adjacent tissue -05571713 08 n 03 anal_sphincter 0 sphincter_ani 0 musculus_sphincter_ani 0 004 @ 05570839 n 0000 #p 05538016 n 0000 %p 05571904 n 0000 %p 05572057 n 0000 | the sphincter muscle of the anus -05571904 08 n 01 musculus_sphincter_ani_externus 0 002 @ 05289861 n 0000 #p 05571713 n 0000 | an external ring of striated muscle surrounding the anus -05572057 08 n 01 musculus_sphincter_ani_internus 0 002 @ 05460473 n 0000 #p 05571713 n 0000 | an internal ring of smooth muscle formed by circular fibers of the rectum -05572227 08 n 02 urethral_sphincter 0 musculus_sphincter_urethrae 0 002 @ 05570839 n 0000 #p 05513020 n 0000 | a striated sphincter muscle that constricts the urethra -05572396 08 n 02 bladder_sphincter 0 musculus_sphincter_vesicae 0 002 @ 05570839 n 0000 #p 05512337 n 0000 | the sphincter muscle of the urinary bladder; made up of a thickened muscular layer of bladder around the urethral opening -05572629 08 n 01 musculus_sphincter_ductus_choledochi 0 002 @ 05570839 n 0000 #p 05386845 n 0000 | the smooth muscle sphincter of the common bile duct -05572782 08 n 01 musculus_sphincter_ductus_pancreatici 0 002 @ 05570839 n 0000 #p 05387395 n 0000 | the smooth muscle sphincter of the main pancreatic duct -05572940 08 n 02 pupillary_sphincter 0 musculus_sphincter_pupillae 0 002 @ 05570839 n 0000 #p 05311054 n 0000 | a ring of smooth muscle surrounding the iris -05573099 08 n 03 pyloric_sphincter 0 pyloric_valve 0 musculus_sphincter_pylori 0 002 @ 05570839 n 0000 #p 05535095 n 0000 | the sphincter muscle of the pylorus that separates the stomach from the duodenum -05573306 08 n 01 tensor 0 003 @ 05289297 n 0000 + 00026153 v 0101 ~ 05573474 n 0000 | any of several muscles that cause an attached structure to become tense or firm -05573474 08 n 01 tensor_tympani 0 001 @ 05573306 n 0000 | a small muscle in the middle ear that tenses to protect the eardrum -05573602 08 n 05 knee 0 knee_joint 0 human_knee 0 articulatio_genus 0 genu 0 005 @ 05580416 n 0000 #p 05560787 n 0000 %p 05278395 n 0000 %p 05293944 n 0000 %p 05368100 n 0000 | hinge joint in the human leg connecting the tibia and fibula with the femur and protected in front by the patella -05573895 08 n 03 femur 0 thighbone 0 femoris 0 006 @ 05594037 n 0000 #p 05562249 n 0000 + 02726017 a 0101 %p 05472394 n 0000 %p 05472538 n 0000 %p 05574151 n 0000 | the longest and thickest bone of the human skeleton; extends from the pelvis to the knee -05574151 08 n 01 trochanter 0 002 @ 05470189 n 0000 #p 05573895 n 0000 | one of the bony prominences developed near the upper extremity of the femur to which muscles are attached -05574332 08 n 02 calf 0 sura 0 006 @ 05289861 n 0000 #p 05562756 n 0000 ~ 05574519 n 0000 %p 05574633 n 0000 %p 05575582 n 0000 %p 05578740 n 0000 | the muscular back part of the shank -05574519 08 n 01 mid-calf 0 001 @ 05574332 n 0000 | the middle of the calf; half way between the knee and ankle -05574633 08 n 02 gastrocnemius 0 gastrocnemius_muscle 0 002 @ 05289861 n 0000 #p 05574332 n 0000 | the muscle in the back part of the leg that forms the greater part of the calf; responsible for the plantar flexion of the foot -05574862 08 n 01 psoas 0 001 @ 05289861 n 0000 | either of two muscles of the abdomen and pelvis that flex the trunk and rotate the thigh -05575002 08 n 02 rhomboid 0 rhomboid_muscle 0 003 @ 05289861 n 0000 ~ 05575185 n 0000 ~ 05575374 n 0000 | any of several muscles of the upper back that help move the shoulder blade -05575185 08 n 03 rhomboideus_major_muscle 0 greater_rhomboid_muscle 0 musculus_rhomboideus_major 0 001 @ 05575002 n 0000 | rhomboid muscle that draws the scapula toward the spinal column -05575374 08 n 03 rhomboid_minor_muscle 0 lesser_rhomboid_muscle 0 musculus_rhomboideus_minor 0 001 @ 05575002 n 0000 | rhomboid muscle that draws the scapula toward the vertebral column and slightly upward -05575582 08 n 02 soleus 0 soleus_muscle 0 002 @ 05289861 n 0000 #p 05574332 n 0000 | a broad flat muscle in the calf of the leg under the gastrocnemius muscle -05575743 08 n 02 splenius 0 splenius_muscle 0 001 @ 05289861 n 0000 | either of two flat muscles that extend from the upper vertebrae to the base of the skull and serve to rotate or flex or extend the head and neck -05575960 08 n 01 peroneus 0 001 @ 05289861 n 0000 | muscle of the lower leg that is involved in moving the foot -05576074 08 n 01 pterygoid_muscle 0 001 @ 05289861 n 0000 | muscle descending from the sphenoid bone to the lower jaw -05576194 08 n 01 ball 0 004 @ 05225602 n 0000 #p 05577190 n 0000 #p 05564590 n 0000 + 01523270 v 0101 | a more or less rounded anatomical body or mass; "the ball at the base of the thumb"; "he stood on the balls of his feet" -05576421 08 n 03 flatfoot 0 splayfoot 0 pes_planus 0 001 @ 05563266 n 0000 | a foot afflicted with a fallen arch; abnormally flattened and spread out -05576573 08 n 01 arch 0 007 @ 05585665 n 0000 + 02034986 v 0101 ~ 05576827 n 0000 ~ 05576950 n 0000 ~ 05586280 n 0000 ~ 05587814 n 0000 ~ 05587997 n 0000 | a curved bony structure supporting or enclosing organs (especially the inner sides of the feet) -05576827 08 n 01 metatarsal_arch 0 001 @ 05576573 n 0000 | the short lateral arch formed by the heads of the metatarsals -05576950 08 n 01 instep 0 003 @ 05576573 n 0000 #p 05563266 n 0000 ~ 05577060 n 0000 | the arch of the foot -05577060 08 n 02 sunken_arch 0 fallen_arch 0 001 @ 05576950 n 0000 | an instep flattened so the entire sole rests on the ground -05577190 08 n 01 sole 0 003 @ 05221895 n 0000 #p 05563266 n 0000 %p 05576194 n 0000 | the underside of the foot -05577304 08 n 01 tiptoe 0 003 @ 08663156 n 0000 #p 05577410 n 0000 + 01924023 v 0101 | the tip of a toe -05577410 08 n 01 toe 1 010 @ 05566097 n 0000 #p 05563266 n 0000 @ 05566919 n 0000 + 01207044 v 0101 + 01906525 v 0101 %p 05577304 n 0000 ~ 05577741 n 0000 ~ 05577866 n 0000 ~ 05577969 n 0000 %p 05584486 n 0000 | one of the digits of the foot -05577654 08 n 01 toe 2 002 @ 05220461 n 0000 #p 02153959 n 0000 | forepart of a hoof -05577741 08 n 03 big_toe 0 great_toe 0 hallux 0 002 @ 05577410 n 0000 #p 05563266 n 0000 | the first largest innermost toe -05577866 08 n 01 hammertoe 0 001 @ 05577410 n 0000 | a deformed toe which is bent in a clawlike arch -05577969 08 n 01 little_toe 0 003 @ 05577410 n 0000 @ 05566366 n 0000 #p 05563266 n 0000 | the fifth smallest outermost toe -05578095 08 n 01 heel 0 005 @ 05585665 n 0000 #p 05563266 n 0000 + 01751545 v 0101 + 01992114 v 0101 %p 05578740 n 0000 | the back part of the human foot -05578251 08 n 02 gliding_joint 0 articulatio_plana 0 003 @ 05543177 n 0000 ~ 05578442 n 0000 ~ 05584928 n 0000 | a freely moving joint in which the articulations allow only gliding motions -05578442 08 n 04 ankle 0 ankle_joint 0 mortise_joint 0 articulatio_talocruralis 0 006 @ 05578251 n 0000 #p 05560787 n 0000 + 02713364 n 0101 + 02713218 n 0101 + 02713097 n 0101 %p 05271383 n 0000 | a gliding joint between the distal ends of the tibia and fibula and the proximal end of the talus -05578740 08 n 02 Achilles_tendon 0 tendon_of_Achilles 0 003 @ 05296253 n 0000 #p 05574332 n 0000 #p 05578095 n 0000 | a large tendon that runs from the heel to the calf -05578911 08 n 01 girdle 0 004 @ 05585665 n 0000 + 01608122 v 0101 ~ 05586111 n 0000 ~ 05596651 n 0000 | an encircling or ringlike structure -05579053 08 n 02 musculus_biceps_femoris 0 femoral_biceps 0 002 @ 05579239 n 0000 #p 05562249 n 0000 | the biceps muscle of the thigh; it flexes the knee and rotates the leg laterally -05579239 08 n 01 biceps 0 004 @ 05289861 n 0000 + 02663676 a 0101 ~ 05579053 n 0000 ~ 05579436 n 0000 | any skeletal muscle having two origins (but especially the muscle that flexes the forearm) -05579436 08 n 03 biceps_brachii 0 musculus_biceps_brachii 0 biceps_humeri 0 002 @ 05579239 n 0000 #p 05563770 n 0000 | a muscle that flexes and supinates the forearm -05579604 08 n 01 triceps 0 002 @ 05289861 n 0000 ~ 05579753 n 0000 | any skeletal muscle having three origins (but especially the triceps brachii) -05579753 08 n 02 triceps_brachii 0 musculus_triceps_brachii 0 002 @ 05579604 n 0000 #p 05563770 n 0000 | the skeletal muscle having three origins that extends the forearm when it contracts -05579944 08 n 06 elbow 0 elbow_joint 0 human_elbow 0 cubitus 0 cubital_joint 0 articulatio_cubiti 0 007 @ 05580416 n 0000 #p 05563770 n 0000 + 02707429 a 0401 + 01873942 v 0101 + 01239494 v 0101 %p 05293773 n 0000 %p 05580662 n 0000 | hinge joint between the forearm and upper arm and the corresponding joint in the forelimb of a quadruped -05580286 08 n 01 interphalangeal_joint 0 001 @ 05580416 n 0000 | any of the joints between the phalanges of the fingers or toes -05580416 08 n 03 hinge_joint 0 ginglymus 0 ginglymoid_joint 0 004 @ 05543177 n 0000 ~ 05573602 n 0000 ~ 05579944 n 0000 ~ 05580286 n 0000 | a freely moving joint in which the bones are so articulated as to allow extensive movement in one plane -05580662 08 n 02 funny_bone 0 crazy_bone 0 002 @ 05568767 n 0000 #p 05579944 n 0000 | a point on the elbow where the ulnar nerve passes near the surface; a sharp tingling sensation results when the nerve is knocked against the bone; "the funny bone is not humerus" -05580929 08 n 01 lamina 0 008 @ 05581349 n 0000 + 00208613 a 0101 + 00208613 a 0102 + 01625666 v 0101 + 01232387 v 0101 + 01391538 v 0101 + 01365131 v 0101 ~ 05581161 n 0000 | a thin plate or layer (especially of bone or mineral) -05581161 08 n 01 lamina_arcus_vertebrae 0 001 @ 05580929 n 0000 | lamina of the vertebral arch; the flattened posterior part of the vertebral arch from which the spinous process extends -05581349 08 n 01 plate 0 005 @ 05225602 n 0000 ~ 01902368 n 0000 ~ 01921440 n 0000 ~ 05547149 n 0000 ~ 05580929 n 0000 | any flat platelike body structure or part -05581514 08 n 02 horny_structure 0 unguis 0 004 @ 05225602 n 0000 ~ 02154133 n 0000 ~ 02156140 n 0000 ~ 05581693 n 0000 | any rigid body structure composed primarily of keratin -05581693 08 n 01 nail 0 007 @ 05581514 n 0000 #p 05461179 n 0000 #p 05566097 n 0000 %p 05582038 n 0000 %p 05582191 n 0000 ~ 05584265 n 0000 ~ 05584486 n 0000 | horny plate covering and protecting part of the dorsal surface of the digits -05581932 08 n 01 cuticle 1 001 @ 05238282 n 0000 | the dead skin at the base of a fingernail or toenail -05582038 08 n 03 half-moon 0 lunula 0 lunule 0 002 @ 05221895 n 0000 #p 05581693 n 0000 | the crescent-shaped area at the base of the human fingernail -05582191 08 n 01 matrix 0 002 @ 05267548 n 0000 #p 05581693 n 0000 | the formative tissue at the base of a nail -05582305 08 n 03 matrix 1 intercellular_substance 0 ground_substance 0 004 @ 05263850 n 0000 #p 05269901 n 0000 #p 05288091 n 0000 #p 05286536 n 0000 | the body substance in which tissue cells are embedded -05582513 08 n 02 fascia 0 facia 0 002 @ 05286536 n 0000 ~ 05582690 n 0000 | a sheet or band of fibrous connective tissue separating or binding together muscles and organs etc -05582690 08 n 01 aponeurosis 0 002 @ 05582513 n 0000 + 02634073 a 0101 | any of the deeper and thicker fascia that attach muscles to bones; resemble flattened tendons -05582859 08 n 02 graft 0 transplant 0 007 @ 05267548 n 0000 ;c 06063588 n 0000 + 01530431 v 0201 + 01530431 v 0102 ~ 05583158 n 0000 ~ 05583386 n 0000 ~ 05583624 n 0000 | (surgery) tissue or organ transplanted from a donor to a recipient; in some cases the patient can be both donor and recipient -05583158 08 n 02 autograft 0 autoplasty 0 002 @ 05582859 n 0000 + 02652124 a 0201 | tissue that is taken from one site and grafted to another site on the same person; "skin from his thigh replaced the burned skin on his arms" -05583386 08 n 02 homograft 0 allograft 0 001 @ 05582859 n 0000 | tissue or organ transplanted from a donor of the same species but different genetic makeup; recipient's immune system must be suppressed to prevent rejection of the graft -05583624 08 n 02 heterograft 0 xenograft 0 001 @ 05582859 n 0000 | tissue from an animal of one species used as a temporary graft (as in cases of severe burns) on an individual of another species -05583822 08 n 01 scar_tissue 0 002 @ 05286536 n 0000 ~ 05584008 n 0000 | the connective tissue that forms a scar; consists of fibroblasts in new scars and collagen fibers in old scars -05584008 08 n 01 adhesion 0 001 @ 05583822 n 0000 | a fibrous band of scar tissue that binds together normally separate anatomical structures -05584152 08 n 01 stroma 0 001 @ 05267548 n 0000 | the supporting tissue of an organ (as opposed to parenchyma) -05584265 08 n 01 fingernail 0 003 @ 05581693 n 0000 #p 05566504 n 0000 ~ 05584390 n 0000 | the nail at the end of a finger -05584390 08 n 01 thumbnail 0 002 @ 05584265 n 0000 #p 05567217 n 0000 | the nail of the thumb -05584486 08 n 01 toenail 0 003 @ 05581693 n 0000 #p 05577410 n 0000 ~ 05584605 n 0000 | the nail at the end of a toe -05584605 08 n 02 ingrown_toenail 0 onyxis 0 001 @ 05584486 n 0000 | toenail having its free tip or edges embedded in the surrounding flesh -05584746 08 n 02 hangnail 0 agnail 0 001 @ 05238282 n 0000 | a loose narrow strip of skin near the base of a fingernail; tearing it produces a painful sore that is easily infected -05584928 08 n 05 wrist 0 carpus 0 wrist_joint 0 radiocarpal_joint 0 articulatio_radiocarpea 0 005 @ 05578251 n 0000 #p 05563770 n 0000 + 03053336 a 0201 %p 05271814 n 0000 %p 05272110 n 0000 | a joint between the distal end of the radius and the proximal row of carpal bones -05585205 08 n 03 knuckle 0 knuckle_joint 0 metacarpophalangeal_joint 0 003 @ 05543177 n 0000 #p 05566504 n 0000 + 01605291 v 0101 | a joint of a finger when the fist is closed -05585383 08 n 04 skeletal_system 0 skeleton 0 frame 0 systema_skeletale 0 006 @ 05237227 n 0000 #p 05462057 n 0000 + 02935725 a 0201 %p 05585665 n 0000 ~ 05586446 n 0000 ~ 05586759 n 0000 | the hard structure (bones and cartilages) that provides a frame for the body of an animal -05585665 08 n 01 skeletal_structure 0 013 @ 05225602 n 0000 #p 05585383 n 0000 ~ 05553768 n 0000 ~ 05576573 n 0000 ~ 05578095 n 0000 ~ 05578911 n 0000 ~ 05585999 n 0000 ~ 05587034 n 0000 ~ 05587288 n 0000 ~ 05588174 n 0000 ~ 05593871 n 0000 ~ 05594568 n 0000 ~ 05594822 n 0000 | any structure created by the skeleton of an organism -05585999 08 n 01 column 0 001 @ 05585665 n 0000 | any tubular or pillar-like supporting structure in the body -05586111 08 n 01 pectoral_girdle 0 003 @ 05578911 n 0000 #p 05587034 n 0000 %p 05586280 n 0000 | a skeletal support to which the forelimbs of vertebrates are attached -05586280 08 n 02 shoulder_girdle 0 pectoral_arch 0 002 @ 05576573 n 0000 #p 05586111 n 0000 | the bony arch formed by the collarbones and shoulder blades in humans -05586446 08 n 01 endoskeleton 0 010 @ 05585383 n 0000 ;c 01471682 n 0000 %p 05269901 n 0000 %p 05274105 n 0000 %p 05279688 n 0000 %p 05587034 n 0000 %p 05587288 n 0000 %p 05593017 n 0000 %p 05594037 n 0000 %p 05595083 n 0000 | the internal skeleton; bony and cartilaginous structure (especially of vertebrates) -05586759 08 n 01 exoskeleton 0 004 @ 05585383 n 0000 @ 05237755 n 0000 ;c 01905661 n 0000 ~ 01904029 n 0000 | the exterior protective or supporting structure or shell of many animals (especially invertebrates) including bony or horny parts such as nails or scales or hoofs -05587034 08 n 01 appendicular_skeleton 0 005 @ 05585665 n 0000 #p 05586446 n 0000 %p 05560244 n 0000 %p 05586111 n 0000 %p 05596651 n 0000 | the part of the skeleton that includes the pectoral girdle and the pelvic girdle and the upper and lower limbs -05587288 08 n 01 axial_skeleton 0 006 @ 05585665 n 0000 #p 05586446 n 0000 %p 05281189 n 0000 %p 05540121 n 0000 %p 05553768 n 0000 %p 05588174 n 0000 | the part of the skeleton that includes the skull and spinal column and sternum and ribs -05587531 08 n 01 axial_muscle 0 001 @ 05289861 n 0000 | a skeletal muscle of the trunk or head -05587628 08 n 01 transverse_process 0 002 @ 05470189 n 0000 #p 05284333 n 0000 | one of two processes that extend from each vertebra and provide the point of articulation for the ribs -05587814 08 n 02 hemal_arch 0 haemal_arch 0 002 @ 05576573 n 0000 #p 05273684 n 0000 | a structure arising ventrally from a vertebral centrum and enclosing the caudal blood vessels -05587997 08 n 02 neural_arch 0 vertebral_arch 0 002 @ 05576573 n 0000 #p 05273684 n 0000 | a structure arising dorsally from a vertebral centrum and enclosing the spinal cord -05588174 08 n 06 spinal_column 0 vertebral_column 0 spine 0 backbone 0 back 1 rachis 0 009 @ 05585665 n 0000 #p 05587288 n 0000 + 02884456 a 0301 ~ 01466472 n 0000 ~ 01895128 n 0000 %p 05249232 n 0000 %p 05274247 n 0000 %p 05284333 n 0000 %p 05284617 n 0000 | the series of vertebrae forming the axis of the skeleton and protecting the spinal cord; "the fall broke his back" -05588551 08 n 02 cervical_vertebra 0 neck_bone 0 004 @ 05284333 n 0000 #p 05546540 n 0000 ~ 05588746 n 0000 ~ 05588840 n 0000 | one of 7 vertebrae in the human spine located in the neck region -05588746 08 n 02 atlas 0 atlas_vertebra 0 001 @ 05588551 n 0000 | the 1st cervical vertebra -05588840 08 n 02 axis 0 axis_vertebra 0 002 @ 05588551 n 0000 %p 05588991 n 0000 | the 2nd cervical vertebra; serves as a pivot for turning the head -05588991 08 n 01 odontoid_process 0 002 @ 05470189 n 0000 #p 05588840 n 0000 | a toothlike process at the back of 2nd vertebra of the neck -05589132 08 n 02 thoracic_vertebra 0 dorsal_vertebra 0 002 @ 05284333 n 0000 #p 05558717 n 0000 | one of 12 vertebrae in the human vertebral column; thoracic vertebrae extend from the seventh cervical vertebra down to the first lumbar vertebra -05589378 08 n 01 lumbar_vertebra 0 002 @ 05284333 n 0000 #p 05558717 n 0000 | one of 5 vertebrae in the human vertebral column; lumbar vertebrae extend from the twelfth thoracic vertebra down to the sacral vertebrae -05589596 08 n 01 sacral_vertebra 0 002 @ 05284333 n 0000 #p 05279407 n 0000 | one of 5 vertebrae in the human spine that fuse in the adult to form the sacrum -05589756 08 n 02 coccygeal_vertebra 0 caudal_vertebra 0 002 @ 05284333 n 0000 #p 05274247 n 0000 | one of 4 vertebrae in the human coccyx -05589896 08 n 03 sartorius 0 sartorius_muscle 0 musculus_sartorius 0 002 @ 05289861 n 0000 + 02792214 a 0101 | a muscle in the thigh that helps to rotate the leg into the sitting position assumed by a tailor; the longest muscle in the human body -05590144 08 n 03 scalenus 0 scalene_muscle 0 musculus_scalenus 0 001 @ 05289861 n 0000 | any of four pairs of muscles extending from the cervical vertebrae to the second rib; involved in moving the neck and in breathing -05590366 08 n 04 sternocleidomastoid 0 sternocleidomastoid_muscle 0 sternocleido_mastoideus 0 musculus_sternocleidomastoideus 0 002 @ 05289861 n 0000 #p 05546540 n 0000 | one of two thick muscles running from the sternum and clavicle to the mastoid and occipital bone; turns head obliquely to the opposite side; when acting together they flex the neck and extend the head -05590740 08 n 02 teres 0 teres_muscle 0 004 @ 05289861 n 0000 #p 05548840 n 0000 ~ 05590939 n 0000 ~ 05591096 n 0000 | either of two muscles in the shoulder region that move the shoulders and arms -05590939 08 n 03 teres_major 0 teres_major_muscle 0 musculus_teres_major 0 001 @ 05590740 n 0000 | teres muscle that moves the arm and rotates it medially -05591096 08 n 03 teres_minor 0 teres_minor_muscle 0 musculus_teres_minor 0 001 @ 05590740 n 0000 | teres muscle that adducts the arm and rotates it laterally -05591256 08 n 03 tibialis 0 tibialis_muscle 0 musculus_tibialis 0 004 @ 05289861 n 0000 #p 05560787 n 0000 ~ 05591503 n 0000 ~ 05591661 n 0000 | either of two skeletal muscle in each leg arising from the tibia; provides for movement of the foot -05591503 08 n 02 tibialis_anticus 0 tibialis_anterior 0 001 @ 05591256 n 0000 | a muscle running from the tibia to the first metatarsal and cuneiform bones -05591661 08 n 02 tibialis_posticus 0 tibialis_posterior 0 001 @ 05591256 n 0000 | a deep muscle of the leg -05591770 08 n 04 trapezius 0 trapezius_muscle 0 cowl_muscle 0 musculus_trapezius 0 001 @ 05289861 n 0000 | either of two flat triangular muscles of the shoulder and upper back that are involved in moving the shoulders and arms -05591999 08 n 01 true_rib 0 001 @ 05279026 n 0000 | one of the first seven ribs in a human being which attach to the sternum -05592126 08 n 01 costa 2 002 @ 05225602 n 0000 + 02704844 a 0101 | a riblike part of a plant or animal (such as a middle rib of a leaf or a thickened vein of an insect wing) -05592302 08 n 01 costal_cartilage 0 002 @ 05531161 n 0000 #p 05279026 n 0000 | the cartilages that connect the sternum and the ends of the ribs; its elasticity allows the chest to move in respiration -05592504 08 n 01 epiphysis 0 003 @ 05275651 n 0000 + 02990501 a 0102 + 02990501 a 0101 | the end of a long bone; initially separated from the main bone by a layer of cartilage that eventually ossifies so the parts become fused -05592733 08 n 02 diaphysis 0 shaft 0 003 @ 05275651 n 0000 + 02990660 a 0102 + 02990660 a 0101 | the main (mid) section of a long bone -05592870 08 n 01 metaphysis 0 002 @ 05470189 n 0000 #p 05275651 n 0000 | the growing part of a long bone between the diaphysis and the epiphysis -05593017 08 n 01 arm_bone 0 006 @ 05275651 n 0000 #p 05563770 n 0000 #p 05586446 n 0000 ~ 05593181 n 0000 ~ 05593318 n 0000 ~ 05593476 n 0000 | a bone in the arm -05593181 08 n 01 humerus 0 003 @ 05593017 n 0000 #p 05563770 n 0000 %p 05248921 n 0000 | bone extending from the shoulder to the elbow -05593318 08 n 01 radius 0 003 @ 05593017 n 0000 #p 05564323 n 0000 + 02836910 a 0101 | the outer and slightly shorter of the two bones of the human forearm -05593476 08 n 02 ulna 0 elbow_bone 0 004 @ 05593017 n 0000 #p 05564323 n 0000 + 02837047 a 0101 %p 05593654 n 0000 | the inner and longer of the two bones of the human forearm -05593654 08 n 02 olecranon 0 olecranon_process 0 002 @ 05470189 n 0000 #p 05593476 n 0000 | process of the ulna that forms the outer bump of the elbow and fits into the fossa of the humerus when the arm is extended -05593871 08 n 01 metacarpus 0 004 @ 05585665 n 0000 #p 05564590 n 0000 + 03086167 a 0101 %p 05277261 n 0000 | the part of the hand between the carpus and phalanges -05594037 08 n 01 leg_bone 0 006 @ 05275651 n 0000 #p 05560787 n 0000 #p 05586446 n 0000 ~ 05573895 n 0000 ~ 05594201 n 0000 ~ 05594367 n 0000 | a bone of the leg -05594201 08 n 02 fibula 0 calf_bone 0 002 @ 05594037 n 0000 #p 05560787 n 0000 | the outer and thinner of the two bones of the human leg between the knee and ankle -05594367 08 n 04 tibia 0 shinbone 0 shin_bone 0 shin 0 003 @ 05594037 n 0000 #p 05560787 n 0000 + 02815135 a 0101 | the inner and thicker of the two bones of the human leg between the knee and ankle -05594568 08 n 01 metatarsus 0 004 @ 05585665 n 0000 #p 05563034 n 0000 + 03086476 a 0101 %p 05277405 n 0000 | the skeleton of the human foot between the toes and the tarsus; the corresponding part of the foot in birds or of the hind foot in quadrupeds -05594822 08 n 01 tarsus 0 005 @ 05585665 n 0000 #p 05563034 n 0000 + 03123143 a 0101 %p 05271685 n 0000 %p 05281874 n 0000 | the part of the foot of a vertebrate between the metatarsus and the leg; in human beings the bones of the ankle and heel collectively -05595083 08 n 03 joint 0 articulation 0 articulatio 0 015 @ 05220461 n 0000 #p 05296639 n 0000 #p 05586446 n 0000 ;c 06057539 n 0000 + 02643220 a 0202 + 02643220 a 0201 + 02354287 v 0202 ~ 02462464 n 0000 ~ 02463205 n 0000 ~ 02464065 n 0000 ~ 02468368 n 0000 %p 05285101 n 0000 %p 05293597 n 0000 ~ 05542893 n 0000 ~ 05543177 n 0000 | (anatomy) the point of connection between two bones or elements of a skeleton (especially if it allows motion) -05595531 08 n 06 ball-and-socket_joint 0 spheroid_joint 0 cotyloid_joint 0 enarthrodial_joint 0 enarthrosis 0 articulatio_spheroidea 0 003 @ 05543177 n 0000 ~ 05549061 n 0000 ~ 05596004 n 0000 | a freely moving joint in which a sphere on the head of one bone fits into a rounded cavity in the other bone -05595837 08 n 01 head 1 001 @ 05225602 n 0000 | the rounded end of a bone that fits into a rounded cavity in another bone to form a joint; "the head of the humerus" -05596004 08 n 04 hip 2 hip_joint 0 coxa 0 articulatio_coxae 0 004 @ 05595531 n 0000 #p 05562249 n 0000 #p 05596651 n 0000 %p 05275466 n 0000 | the ball-and-socket joint between the head of the femur and the acetabulum -05596224 08 n 02 acetabulum 0 cotyloid_cavity 0 003 @ 05280831 n 0000 #p 05274959 n 0000 + 00535844 a 0101 | the cup-shaped hollow in the hipbone into which the head of the femur fits to form a ball-and-socket joint -05596442 08 n 02 pelvis 1 renal_pelvis 0 002 @ 05303402 n 0000 #p 05332802 n 0000 | a structure shaped like a funnel in the outlet of the kidney into which urine is discharged before passing into the ureter -05596651 08 n 04 pelvis 0 pelvic_girdle 0 pelvic_arch 0 hip 1 010 @ 05578911 n 0000 #p 05587034 n 0000 + 02894741 a 0101 %p 05274247 n 0000 %p 05274959 n 0000 %p 05275315 n 0000 %p 05275466 n 0000 %p 05278714 n 0000 %p 05279407 n 0000 %p 05596004 n 0000 | the structure of the vertebrate skeleton supporting the lower limbs in humans and the hind limbs or corresponding parts in other vertebrates -05597050 08 n 01 pelvic_cavity 0 001 @ 05303402 n 0000 | the space bounded by the bones of the pelvis and containing the pelvic viscera -05597188 08 n 04 pivot_joint 0 rotary_joint 0 rotatory_joint 0 articulatio_trochoidea 0 001 @ 05543177 n 0000 | a freely moving joint in which movement is limited to rotation; "the articulation of the radius and ulna in the arm is a pivot joint" -05597436 08 n 02 crotch 0 fork 0 002 @ 13887509 n 0000 #p 05216365 n 0000 | the angle formed by the inner sides of the legs where they join the human trunk -05597594 08 n 01 loins 1 003 @ 05220461 n 0000 #p 05549830 n 0000 %p 05597734 n 0000 | the region of the hips and groin and lower abdomen -05597734 08 n 02 groin 0 inguen 0 003 @ 05221895 n 0000 #p 05597594 n 0000 + 02749257 a 0201 | the crease at the junction of the inner part of the thigh with the trunk together with the adjacent region and often including the external genitals -05597980 08 n 01 quick 0 001 @ 05221895 n 0000 | any area of the body that is highly sensitive to pain (as the flesh underneath the skin or a fingernail or toenail) -05598147 08 n 02 nose 0 olfactory_organ 0 020 @ 05300231 n 0000 #p 05600637 n 0000 #p 05510506 n 0000 + 01424350 v 0102 + 01873051 v 0101 + 02125223 v 0102 ~ 02452637 n 0000 ~ 02452813 n 0000 %p 05283816 n 0000 %p 05344848 n 0000 %p 05528604 n 0000 %p 05544432 n 0000 ~ 05598707 n 0000 ~ 05598868 n 0000 ~ 05598982 n 0000 ~ 05599084 n 0000 %p 05599203 n 0000 ~ 05599398 n 0000 ~ 05599501 n 0000 %p 05600109 n 0000 | the organ of smell and entrance to the respiratory tract; the prominent part of the face of man or other mammals; "he has a cold in the nose" -05598707 08 n 08 beak 0 honker 0 hooter 0 nozzle 0 snoot 0 snout 1 schnozzle 0 schnoz 0 002 @ 05598147 n 0000 ;r 09044862 n 0000 | informal terms for the nose -05598868 08 n 01 conk 0 003 @ 05598147 n 0000 ;r 08860123 n 0000 + 01401371 v 0101 | informal term for the nose -05598982 08 n 01 hawk_nose 0 001 @ 05598147 n 0000 | a nose curved downward like the beak of a hawk -05599084 08 n 01 proboscis 0 002 @ 05598147 n 0000 ;u 07075172 n 0000 | the human nose (especially when it is large) -05599203 08 n 01 bridge 0 003 @ 05225602 n 0000 #p 05598147 n 0000 %p 05277532 n 0000 | the hard ridge that forms the upper part of the nose; "her glasses left marks on the bridge of her nose" -05599398 08 n 01 pug_nose 0 001 @ 05598147 n 0000 | a short nose; flattened and turned up at the end -05599501 08 n 02 Roman_nose 0 hooknose 0 001 @ 05598147 n 0000 | a nose with a prominent slightly aquiline bridge -05599617 08 n 02 chin 0 mentum 2 004 @ 05601758 n 0000 #p 05600637 n 0000 %p 05263029 n 0000 ~ 05599769 n 0000 | the protruding part of the lower jaw -05599769 08 n 02 double_chin 0 buccula 0 001 @ 05599617 n 0000 | a fold of fatty tissue under the chin -05599874 08 n 01 dimple 0 002 @ 13896369 n 0000 + 00028876 v 0101 | a small natural hollow in the cheek or chin; "His dimple appeared whenever he smiled" -05600030 08 n 01 lantern_jaw 0 001 @ 05275905 n 0000 | a long thin lower jaw -05600109 08 n 02 nostril 0 anterior_naris 0 002 @ 05600431 n 0000 #p 05598147 n 0000 | either one of the two external openings to the nasal cavity in the nose -05600270 08 n 01 posterior_naris 0 001 @ 05600431 n 0000 | either one of the two posterior openings at the back of the nasal cavity leading to the nasopharynx -05600431 08 n 01 naris 0 004 @ 05249636 n 0000 + 03026652 a 0101 ~ 05600109 n 0000 ~ 05600270 n 0000 | any of the openings to the nasal cavities that allow air to flow through the cavities to the pharynx -05600637 08 n 02 face 0 human_face 1 019 @ 05225090 n 0000 #p 05538625 n 0000 #p 02472293 n 0000 + 02877704 a 0101 %p 05261566 n 0000 %p 05301908 n 0000 %p 05311054 n 0000 %p 05313535 n 0000 %p 05367341 n 0000 %p 05479314 n 0000 %p 05598147 n 0000 %p 05599617 n 0000 ~ 05601357 n 0000 %p 05601758 n 0000 %p 05602132 n 0000 %p 05602548 n 0000 %p 05602835 n 0000 %p 05602982 n 0000 %p 05603160 n 0000 | the front of the human head from the forehead to the chin and ear to ear; "he washed his face"; "I wish I had seen the look on his face when he got the news" -05601198 08 n 01 face 1 004 @ 05225090 n 0000 #p 00015388 n 0000 + 02877704 a 0101 ~ 02452464 n 0000 | the part of an animal corresponding to the human face -05601357 08 n 07 countenance 0 physiognomy 0 phiz 0 visage 0 kisser 0 smiler 0 mug 0 006 @ 05600637 n 0000 #p 05539138 n 0000 ;u 07075172 n 0000 ;r 08860123 n 0000 + 00028565 v 0601 ~ 05601662 n 0000 | the human face (`kisser' and `smiler' and `mug' are informal terms for `face' and `phiz' is British) -05601662 08 n 02 pudding_face 0 pudding-face 0 001 @ 05601357 n 0000 | a large fat human face -05601758 08 n 02 feature 0 lineament 0 009 @ 05220461 n 0000 #p 05600637 n 0000 + 02630189 v 0102 ~ 05599617 n 0000 ~ 05602548 n 0000 ~ 05602683 n 0000 ~ 05602835 n 0000 ~ 05602982 n 0000 ~ 05603160 n 0000 | the characteristic parts of a person's face: eyes and nose and mouth and chin; "an expression of pleasure crossed his features"; "his lineaments were very regular" -05602132 08 n 01 facial_muscle 0 005 @ 05289861 n 0000 #p 05600637 n 0000 ~ 05294068 n 0000 ~ 05294256 n 0000 ~ 05294374 n 0000 | any of the skeletal muscles of the face -05602304 08 n 04 temporalis_muscle 0 temporal_muscle 0 temporalis 0 musculus_temporalis 0 001 @ 05289861 n 0000 | muscle extending from the temporal fossa to the coronoid process of the mandible; acts to raise the mandible and close the jaws -05602548 08 n 02 brow 0 forehead 0 003 @ 05601758 n 0000 #p 05600637 n 0000 %p 08523340 n 0000 | the part of the face above the eyes -05602683 08 n 01 temple 0 002 @ 05601758 n 0000 #p 05538625 n 0000 | the flat area on either side of the forehead; "the veins in his temple throbbed" -05602835 08 n 01 cheek 0 004 @ 05601758 n 0000 #p 05600637 n 0000 %p 05294068 n 0000 %p 05339168 n 0000 | either side of the face below the eyes -05602982 08 n 01 jowl 1 003 @ 05601758 n 0000 #p 05600637 n 0000 + 00987349 a 0102 | a fullness and looseness of the flesh of the lower cheek and jaw (characteristic of aging) -05603160 08 n 01 jaw 1 003 @ 05601758 n 0000 #p 05600637 n 0000 + 01201089 v 0104 | the bones of the skull that frame the mouth and serve to open it; the bones that hold the teeth -05603342 08 n 01 ridge 0 002 @ 05470189 n 0000 ~ 05603475 n 0000 | any long raised border or margin of a bone or tooth or membrane -05603475 08 n 04 supraorbital_ridge 0 supraorbital_torus 0 superciliary_ridge 0 superciliary_arch 0 001 @ 05603342 n 0000 | a ridge on the frontal bone above the eye socket -05603650 08 n 01 excrescence 0 005 @ 05470189 n 0000 @ 14234074 n 0000 ;c 06060845 n 0000 + 02723904 a 0101 ~ 05603854 n 0000 | (pathology) an abnormal outgrowth or enlargement of some part of the body -05603854 08 n 01 vegetation 0 002 @ 05603650 n 0000 + 00231288 v 0101 | an abnormal growth or excrescence (especially a warty excrescence on the valves of the heart) -05604022 08 n 01 rudiment 0 003 @ 05220461 n 0000 + 00742714 a 0102 + 00524965 a 0101 | the remains of a body part that was functional at an earlier stage of life; "Meckel's diverticulum is the rudiment of the embryonic yolk sac" -05604254 08 n 02 wall 0 paries 0 003 @ 08657249 n 0000 ;c 06057539 n 0000 ~ 05604434 n 0000 | (anatomy) a layer (a lining or membrane) that encloses a structure; "stomach walls" -05604434 08 n 01 abdominal_wall 0 002 @ 05604254 n 0000 #p 05556943 n 0000 | a wall of the abdomen -05604535 08 n 02 humor 1 humour 1 005 @ 05263850 n 0000 ;c 06080522 n 0000 ;c 15259284 n 0000 ;c 15253139 n 0000 + 02851001 a 0101 | (Middle Ages) one of the four fluids in the body whose balance was believed to determine your emotional and physical state; "the humors are blood and phlegm and yellow and black bile" -05604854 08 n 01 pericardial_sac 0 001 @ 05515670 n 0000 | the membrane surrounding the heart -05604950 08 n 01 rotator_cuff 0 003 @ 05225602 n 0000 #p 05549061 n 0000 %p 05549350 n 0000 | a supporting structure of the shoulder consisting of the muscles and tendons that attach the arm to the shoulder joint and enable the arm to move -05605192 08 n 01 respiratory_center 0 003 @ 05463533 n 0000 #p 05495172 n 0000 #p 05500992 n 0000 | the center in the medulla oblongata and pons that integrates sensory information about the level of oxygen and carbon dioxide in the blood and determines the signals to be sent to the respiratory muscles -05605498 08 n 01 spindle 0 002 @ 14866889 n 0000 ;c 06037666 n 0000 | (biology) tiny fibers that are seen in cell division; the fibers radiate from two poles and meet at the equator in the middle; "chromosomes are distributed by spindles in mitosis and meiosis" -05605762 08 n 01 syncytium 0 001 @ 05432948 n 0000 | a mass of cytoplasm containing several nuclei and enclosed in a membrane but no internal cell boundaries (as in muscle fibers) -05605944 08 n 02 serous_membrane 0 serosa 0 007 @ 05426243 n 0000 ~ 05388115 n 0000 ~ 05427739 n 0000 ~ 05428331 n 0000 ~ 05428473 n 0000 ~ 05428645 n 0000 ~ 05428794 n 0000 | a thin membrane lining the closed cavities of the body; has two layers with a space between that is filled with serous fluid -05606247 08 n 02 synovial_membrane 0 synovium 0 001 @ 05426243 n 0000 | a thin membrane in synovial (freely moving) joints that lines the joint capsule and secretes synovial fluid -05606429 08 n 01 tunica_albuginea_testes 0 001 @ 05606528 n 0000 | whitish cover of the testicle -05606528 08 n 01 albuginea 0 003 @ 05606633 n 0000 ~ 05447218 n 0000 ~ 05606429 n 0000 | whitish tunic -05606633 08 n 03 tunic 0 tunica 0 adventitia 0 003 @ 05426243 n 0000 + 02606283 a 0301 ~ 05606528 n 0000 | an enveloping or covering membrane or layer of body tissue -05606801 08 n 03 celom 0 coelom 0 celoma 0 001 @ 05303402 n 0000 | a cavity in the mesoderm of an embryo that gives rise in humans to the pleural cavity and pericardial cavity and peritoneal cavity -05607001 08 n 01 cornu 0 002 @ 05225602 n 0000 ;c 06057539 n 0000 | (anatomy) any structure that resembles a horn in shape -05607126 08 n 01 corona 0 003 @ 05225602 n 0000 ;c 06057539 n 0000 + 02984607 a 0101 | (anatomy) any structure that resembles a crown in shape -05607271 08 n 01 ruga 0 002 @ 05492259 n 0000 ;c 06057539 n 0000 | (anatomy) a fold or wrinkle or crease; "rugae of the stomach" -05607402 08 n 01 tentorium 0 003 @ 05492259 n 0000 ;c 06057539 n 0000 %s 05482529 n 0000 | (anatomy) a fold of dura mater that covers the cerebellum and supports the occipital lobes of the cerebrum -05607602 08 n 03 mast_cell 0 mastocyte 0 labrocyte 0 002 @ 05430628 n 0000 #p 05286536 n 0000 | a large connective tissue cell that contains histamine and heparin and serotonin which are released in allergic reactions or in response to injury or inflammation -05607863 08 n 01 stem_cell 0 002 @ 05430628 n 0000 ~ 05608044 n 0000 | an undifferentiated cell whose daughter cells may differentiate into other cell types (such as blood cells) -05608044 08 n 01 hematopoeitic_stem_cell 0 001 @ 05607863 n 0000 | blood forming stem cells in the bone marrow; T cells and B cells arise from these stem cells -05608206 08 n 01 target_cell 1 001 @ 05430628 n 0000 | any cell that has a specific receptor for an antigen or antibody or hormone or drug, or is the focus of contact by a virus or phagocyte or nerve fiber etc. -05608419 08 n 01 McBurney's_point 0 001 @ 08620061 n 0000 | a point one third of the way along a line drawn from the hip to the umbilicus; the point of maximum sensitivity in acute appendicitis -05608615 08 n 01 zona_pellucida 0 001 @ 05611062 n 0000 | thick membrane around the mammalian ovum; can be penetrated by one sperm in the fertilization process; usually remains around the fertilized egg until it is implanted in the wall of the uterus -05608868 08 n 01 receptor 1 003 @ 05225602 n 0000 ~ 05609111 n 0000 ~ 05609524 n 0000 | a cellular structure that is postulated to exist in order to mediate between a chemical agent that acts on nervous tissue and the physiological response -05609111 08 n 03 alpha_receptor 0 alpha-adrenergic_receptor 0 alpha-adrenoceptor 0 002 @ 05608868 n 0000 #p 05505131 n 0000 | receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasoconstriction and relaxation of intestinal muscles and contraction of smooth muscles) -05609524 08 n 03 beta_receptor 0 beta-adrenergic_receptor 0 beta-adrenoceptor 0 002 @ 05608868 n 0000 #p 05505131 n 0000 | receptors postulated to exist on nerve cell membranes of the sympathetic nervous system in order to explain the specificity of certain agents that affect only some sympathetic activities (such as vasodilation and increased heart beat) -05609884 08 n 01 pharyngeal_recess 0 002 @ 13872421 n 0000 #p 05547508 n 0000 | a small recess in the wall of the pharynx -05610008 08 n 01 rima 0 005 @ 05249636 n 0000 ~ 05302499 n 0000 ~ 05522784 n 0000 ~ 05610198 n 0000 ~ 05610365 n 0000 | a narrow elongated opening or fissure between two symmetrical parts -05610198 08 n 04 rima_glottidis 0 rima_vocalis 0 true_glottis 0 glottis_vera 0 002 @ 05610008 n 0000 #p 05301526 n 0000 | the space between the two true vocal folds -05610365 08 n 04 rima_vestibuli 0 rima_respiratoria 0 false_glottis 0 glottis_spuria 0 001 @ 05610008 n 0000 | the opening between the false vocal folds -05610520 08 n 01 telomere 0 002 @ 08566028 n 0000 #p 05442131 n 0000 | either (free) end of a eukaryotic chromosome; "telomeres act as caps to keep the sticky ends of chromosomes from randomly clumping together" -05610734 08 n 01 vomer 0 003 @ 05269901 n 0000 #p 05540121 n 0000 #p 05223110 n 0000 | thin trapezoidal bone of the skull forming the posterior and inferior parts of the nasal septum -05610919 08 n 02 Wormian_bone 0 sutural_bone 0 001 @ 05269901 n 0000 | any of the tiny soft bones found in the sutures between cranial bones -05611062 08 n 02 zone 0 zona 0 004 @ 05225602 n 0000 ;c 06057539 n 0000 ~ 05608615 n 0000 ~ 05611221 n 0000 | (anatomy) any encircling or beltlike structure -05611221 08 n 02 zonule 0 zonula 0 001 @ 05611062 n 0000 | small beltlike zone -05611302 09 n 05 mind 0 head 0 brain 1 psyche 0 nous 0 009 @ 00023271 n 0000 + 01780740 a 0402 + 01780740 a 0401 + 00609506 v 0101 ~ 05611684 n 0000 ~ 05613043 n 0000 ~ 05613170 n 0000 ~ 05613274 n 0000 ~ 05613478 n 0000 | that which is responsible for one's thoughts and feelings; the seat of the faculty of reason; "his mind wandered"; "I couldn't get his words out of my head" -05611684 09 n 01 noddle 0 002 @ 05611302 n 0000 ;r 08860123 n 0000 | an informal British expression for head or mind; "use your noddle" -05611822 09 n 01 place 0 003 @ 00023271 n 0000 + 02392762 v 0101 ~ 06246896 n 0000 | an abstract mental location; "he has a special place in my thoughts"; "a place in my heart"; "a political system with no place for the less prominent groups" -05612067 09 n 02 public_knowledge 0 general_knowledge 0 004 @ 00023271 n 0000 ~ 05612241 n 0000 ~ 05612706 n 0000 ~ 05612809 n 0000 | knowledge that is available to anyone -05612241 09 n 01 common_knowledge 0 002 @ 05612067 n 0000 ~ 05612531 n 0000 | anything generally known to everyone -05612358 09 n 01 episteme 0 002 @ 00023271 n 0000 + 02850132 a 0101 | the body of ideas that determine the knowledge that is intellectually certain at any particular time -05612531 09 n 01 ancient_history 0 001 @ 05612241 n 0000 | knowledge of some recent fact or event that has become so commonly known that it has lost its original pertinence -05612706 09 n 01 light 2 001 @ 05612067 n 0000 | public awareness; "it brought the scandal to light" -05612809 09 n 02 open 0 surface 1 004 @ 05612067 n 0000 + 00423702 v 0204 + 01861910 a 0101 + 02358034 v 0102 | information that has become public; "all the reports were out in the open"; "the facts had been brought to the surface" -05613043 09 n 01 tabula_rasa 0 001 @ 05611302 n 0000 | a young mind not yet affected by experience (according to John Locke) -05613170 09 n 01 ego 0 002 @ 05611302 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the conscious mind -05613274 09 n 02 unconscious_mind 0 unconscious 0 003 @ 05611302 n 0000 %p 05613625 n 0000 %p 05613794 n 0000 | that part of the mind wherein psychic activity takes place of which the person is unaware -05613478 09 n 02 subconscious_mind 0 subconscious 0 002 @ 05611302 n 0000 + 00573093 a 0201 | psychic activity just below the level of awareness -05613625 09 n 01 superego 0 003 @ 09184136 n 0000 #p 05613274 n 0000 ;c 00704305 n 0000 | (psychoanalysis) that part of the unconscious mind that acts as a conscience -05613794 09 n 01 id 0 003 @ 05622723 n 0000 #p 05613274 n 0000 ;c 00704305 n 0000 | (psychoanalysis) primitive instincts and energies underlying all psychic activity -05613962 09 n 05 astuteness 1 profundity 0 profoundness 0 depth 0 deepness 0 004 @ 05617107 n 0000 + 01873163 a 0501 + 01872745 a 0301 + 01872745 a 0201 | the intellectual ability to penetrate deeply into ideas -05614175 09 n 05 sagacity 0 sagaciousness 0 judgment 1 judgement 1 discernment 0 008 @ 05617107 n 0000 + 02569558 a 0202 + 01813920 a 0101 ~ 05614476 n 0000 ~ 05614657 n 0000 ~ 05615373 n 0000 ~ 05615500 n 0000 ~ 05616092 n 0000 | the mental ability to understand and discriminate between relations -05614476 09 n 01 eye 0 002 @ 05614175 n 0000 + 02167052 v 0101 | good discernment (either visually or as if visually); "she has an eye for fresh talent"; "he has an artist's eye" -05614657 09 n 06 common_sense 0 good_sense 0 gumption 0 horse_sense 0 sense 4 mother_wit 0 006 @ 05614175 n 0000 + 00589309 v 0501 + 01943746 a 0103 ~ 05615028 n 0000 ~ 05615147 n 0000 ~ 05615258 n 0000 | sound practical judgment; "Common sense is not so common"; "he hasn't got the sense God gave little green apples"; "fortunately she had the good sense to run away" -05615028 09 n 01 logic 2 001 @ 05614657 n 0000 | reasoned and reasonable judgment; "it made a certain kind of logic" -05615147 09 n 01 nous 2 002 @ 05614657 n 0000 ;r 08860123 n 0000 | common sense; "she has great social nous" -05615258 09 n 01 road_sense 0 001 @ 05614657 n 0000 | good judgment in avoiding trouble or accidents on the road -05615373 09 n 01 judiciousness 0 004 @ 05614175 n 0000 + 01898722 a 0101 ! 05616092 n 0101 ~ 05615869 n 0000 | good judgment -05615500 09 n 04 discretion 0 discreetness 0 circumspection 0 prudence 0 004 @ 05614175 n 0000 + 01898129 a 0401 + 01898490 a 0202 ~ 05615749 n 0000 | knowing how to avoid embarrassment or distress; "the servants showed great tact and discretion" -05615749 09 n 01 confidentiality 0 002 @ 05615500 n 0000 + 01859571 a 0101 | discretion in keeping secret information -05615869 09 n 04 caution 0 precaution 0 care 0 forethought 0 002 @ 05615373 n 0000 + 00325281 a 0101 | judiciousness in avoiding harm or danger; "he exercised caution in opening the door"; "he handled the vase with care" -05616092 09 n 02 injudiciousness 0 indiscreetness 0 004 @ 05614175 n 0000 + 00773109 a 0201 + 01899970 a 0101 ! 05615373 n 0101 | lacking good judgment -05616246 09 n 02 ability 0 power 1 019 @ 00023271 n 0000 + 00510348 a 0101 + 00306663 a 0101 + 00001740 a 0101 ! 05644922 n 0101 = 00001740 a 0000 ~ 05616786 n 0000 ~ 05617310 n 0000 ~ 05617606 n 0000 ~ 05622456 n 0000 ~ 05622617 n 0000 ~ 05622956 n 0000 ~ 05624700 n 0000 ~ 05634613 n 0000 ~ 05636887 n 0000 ~ 05637558 n 0000 ~ 05637965 n 0000 ~ 05638882 n 0000 ~ 05650329 n 0000 | possession of the qualities (especially mental qualities) required to do something or get something done; "danger heightened his powers of discrimination" -05616786 09 n 01 know-how 0 004 @ 05616246 n 0000 ~ 05616955 n 0000 ~ 05617107 n 0000 ~ 05660268 n 0000 | the (technical) knowledge and skill required to do something -05616955 09 n 01 bag_of_tricks 0 001 @ 05616786 n 0000 | a supply of ways of accomplishing something; "every good mechanic has a large bag of tricks" -05617107 09 n 02 wisdom 1 sapience 0 004 @ 05616786 n 0000 + 02569558 a 0203 ~ 05613962 n 0000 ~ 05614175 n 0000 | ability to apply knowledge or experience or understanding or common sense and insight -05617310 09 n 01 leadership 0 003 @ 05616246 n 0000 + 09623038 n 0101 ~ 05617467 n 0000 | the ability to lead; "he believed that leadership can be taught" -05617467 09 n 01 generalship 0 003 @ 05617310 n 0000 ;c 08199025 n 0000 + 10123844 n 0101 | the leadership ability of a military general -05617606 09 n 01 intelligence 0 019 @ 05616246 n 0000 + 01926089 a 0101 + 01334398 a 0101 ! 05645597 n 0101 = 01334398 a 0000 = 01336587 a 0000 ~ 05618056 n 0000 ~ 05618293 n 0000 ~ 05618849 n 0000 ~ 05619059 n 0000 ~ 05619226 n 0000 ~ 05619345 n 0000 ~ 05619553 n 0000 ~ 05619743 n 0000 ~ 05620294 n 0000 ~ 05620468 n 0000 ~ 05620955 n 0000 ~ 05621439 n 0000 ~ 05622196 n 0000 | the ability to comprehend; to understand and profit from experience -05618056 09 n 06 brain 0 brainpower 0 learning_ability 0 mental_capacity 0 mentality 0 wit 0 004 @ 05617606 n 0000 + 02898750 a 0501 + 01779986 a 0501 + 01335156 a 0101 | mental ability; "he's got plenty of brains but no common sense" -05618293 09 n 03 breadth 0 comprehensiveness 0 largeness 0 004 @ 05617606 n 0000 + 01863970 a 0301 + 01863970 a 0201 ~ 05618607 n 0000 | the capacity to understand a broad range of topics; "a teacher must have a breadth of knowledge of the subject"; "a man distinguished by the largeness and scope of his views" -05618607 09 n 02 capaciousness 0 roominess 0 001 @ 05618293 n 0000 | intellectual breadth; "the very capaciousness of the idea meant that agreement on fundamentals was unnecessary"; "his unselfishness gave him great intellectual roominess" -05618849 09 n 02 mind 5 intellect 2 004 @ 05617606 n 0000 + 01927455 a 0202 = 01332386 a 0000 = 01333718 a 0000 | knowledge and intellectual ability; "he reads to improve his mind"; "he has a keen intellect" -05619059 09 n 01 nonverbal_intelligence 0 001 @ 05617606 n 0000 | intelligence that is manifested in the performance of tasks requiring little or no use of language -05619226 09 n 01 verbal_intelligence 0 001 @ 05617606 n 0000 | intelligence in the use and comprehension of language -05619345 09 n 03 mental_quickness 0 quickness 0 quick-wittedness 0 003 @ 05617606 n 0000 + 00063087 a 0301 + 01335903 a 0201 | intelligence as revealed by an ability to give correct responses without delay -05619553 09 n 02 nimbleness 0 mental_dexterity 0 002 @ 05617606 n 0000 + 01334833 a 0102 | intelligence as revealed by quickness and alertness of mind; "nimbleness of wit and imagination" -05619743 09 n 02 brilliance 0 genius 2 005 @ 05617606 n 0000 + 01335156 a 0102 ~ 05619903 n 0000 ~ 05620050 n 0000 ~ 05620190 n 0000 | unusual mental ability -05619903 09 n 01 coruscation 0 002 @ 05619743 n 0000 + 00473003 v 0103 | a sudden or striking display of brilliance; "coruscations of great wit" -05620050 09 n 01 pyrotechnics 0 002 @ 05619743 n 0000 ;c 07020895 n 0000 | (music) brilliance of display (as in the performance of music) -05620190 09 n 01 scintillation 0 002 @ 05619743 n 0000 + 00473003 v 0102 | a brilliant display of wit -05620294 09 n 02 precociousness 0 precocity 0 003 @ 05617606 n 0000 + 01839829 a 0201 + 01839829 a 0101 | intelligence achieved far ahead of normal developmental schedules -05620468 09 n 04 acuteness 0 acuity 0 sharpness 1 keenness 0 006 @ 05617606 n 0000 + 01744515 a 0404 + 00438909 a 0302 + 01744515 a 0309 + 01744515 a 0101 ~ 05620754 n 0000 | a quick and penetrating intelligence; "he argued with great acuteness"; "I admired the keenness of his mind" -05620754 09 n 01 steel_trap 0 001 @ 05620468 n 0000 | an acute intelligence (an analogy based on the well-known sharpness of steel traps); "he's as sharp as a steel trap"; "a mind like a steel trap" -05620955 09 n 03 brightness 0 cleverness 0 smartness 1 006 @ 05617606 n 0000 + 01335458 a 0302 + 00438707 a 0301 + 01334958 a 0202 + 01335458 a 0101 + 00176387 a 0101 | intelligence as manifested in being quick and witty -05621178 09 n 07 craft 0 craftiness 0 cunning 1 foxiness 0 guile 1 slyness 0 wiliness 0 006 @ 05621439 n 0000 + 00148078 a 070b + 00148078 a 0608 + 00148078 a 0404 + 00148078 a 0201 + 00148078 a 0101 | shrewdness as demonstrated by being skilled in deception -05621439 09 n 04 shrewdness 0 astuteness 0 perspicacity 0 perspicaciousness 0 012 @ 05617606 n 0000 ;c 01094725 n 0000 + 02569558 a 0401 + 00771803 a 0403 + 02569558 a 0301 + 00438909 a 0201 + 00438909 a 0103 + 01155603 a 0105 ~ 05621178 n 0000 ~ 05621808 n 0000 ~ 05621946 n 0000 ~ 05622076 n 0000 | intelligence manifested by being astute (as in business dealings) -05621808 09 n 02 insightfulness 0 acumen 0 003 @ 05621439 n 0000 + 00393227 v 0201 + 01745296 a 0101 | shrewdness shown by keen insight -05621946 09 n 01 knowingness 1 003 @ 05621439 n 0000 + 01338116 a 0102 + 01307690 a 0101 | shrewdness demonstrated by knowledge -05622076 09 n 01 street_smarts 0 001 @ 05621439 n 0000 | a shrewd ability to survive in a dangerous urban environment -05622196 09 n 02 wits 0 marbles 0 001 @ 05617606 n 0000 | the basic human power of intelligent thought and perception; "he used his wits to get ahead"; "I was scared out of my wits"; "he still had all his marbles and was in full possession of a lively mind" -05622456 09 n 01 aptitude 0 006 @ 05616246 n 0000 + 02636358 a 0101 ! 05647643 n 0101 ~ 05622723 n 0000 ~ 05623181 n 0000 ~ 05623937 n 0000 | inherent ability -05622617 09 n 01 bilingualism 0 001 @ 05616246 n 0000 | the ability to speak two languages colloquially -05622723 09 n 02 instinct 0 inherent_aptitude 0 002 @ 05622456 n 0000 ~ 05613794 n 0000 | inborn pattern of behavior often responsive to specific stimuli; "the spawning instinct in salmon"; "altruistic instincts in social animals" -05622956 09 n 02 capacity 0 mental_ability 0 003 @ 05616246 n 0000 ! 05648146 n 0101 ~ 05919431 n 0000 | the power to learn or retain knowledge; in law, the ability to understand the facts and significance of your behavior -05623181 09 n 03 capability 0 capableness 0 potentiality 0 009 @ 05622456 n 0000 + 00510348 a 0202 + 00510348 a 0102 ! 05647867 n 0101 = 00306314 a 0000 = 00307474 a 0000 ~ 05623444 n 0000 ~ 05623628 n 0000 ~ 05648011 n 0000 | an aptitude that may be developed -05623444 09 n 01 perfectibility 0 003 @ 05623181 n 0000 + 01751693 a 0101 ! 05648011 n 0101 | the capability of becoming perfect; "he believes in the ultimate perfectibility of man" -05623628 09 n 04 compass 0 range 0 reach 0 grasp 1 004 @ 05623181 n 0000 + 02741149 v 0201 + 02527085 v 0101 ~ 05623818 n 0000 | the limit of capability; "within the compass of education" -05623818 09 n 02 sight 2 ken 1 002 @ 05623628 n 0000 + 02163746 v 0102 | the range of vision; "out of sight of land" -05623937 09 n 01 natural_ability 0 002 @ 05622456 n 0000 ~ 05624042 n 0000 | ability that is inherited -05624042 09 n 04 endowment 0 gift 0 talent 0 natural_endowment 0 006 @ 05623937 n 0000 + 02474239 v 0203 + 02474239 v 0101 ~ 05624254 n 0000 ~ 05624461 n 0000 ~ 05624615 n 0000 | natural abilities or qualities -05624254 09 n 03 bent 0 knack 0 hang 0 001 @ 05624042 n 0000 | a special way of doing something; "he had a bent for it"; "he had a special knack for getting into trouble"; "he couldn't get the hang of it" -05624461 09 n 02 flair 0 genius 1 001 @ 05624042 n 0000 | a natural talent; "he has a flair for mathematics"; "he has a genius for interior decorating" -05624615 09 n 01 raw_talent 0 001 @ 05624042 n 0000 | powerfully impressive talent -05624700 09 n 03 creativity 0 creativeness 0 creative_thinking 0 015 @ 05616246 n 0000 + 00585202 a 0201 + 00643250 a 0201 ! 05649385 n 0201 + 00585202 a 0101 + 00643250 a 0101 = 00643250 a 0000 = 00644372 a 0000 ~ 05625066 n 0000 ~ 05625210 n 0000 ~ 05625373 n 0000 ~ 05625465 n 0000 ~ 05633385 n 0000 ~ 05633672 n 0000 %p 05797177 n 0000 | the ability to create -05625066 09 n 02 fecundity 0 fruitfulness 0 002 @ 05624700 n 0000 + 01865967 a 0101 | the intellectual productivity of a creative imagination -05625210 09 n 01 flight 0 001 @ 05624700 n 0000 | passing above and beyond ordinary bounds; "a flight of fancy"; "flights of rhetoric"; "flights of imagination" -05625373 09 n 02 genius 0 wizardry 0 001 @ 05624700 n 0000 | exceptional creative ability -05625465 09 n 03 imagination 1 imaginativeness 0 vision 4 008 @ 05624700 n 0000 + 00643863 a 0201 + 01636397 v 0101 ~ 05625879 n 0000 ~ 05632272 n 0000 ~ 05632446 n 0000 ~ 05768806 n 0000 ~ 09483738 n 0000 | the formation of a mental image of something that is not perceived as real and is not present to the senses; "popular imagination created a world of demons"; "imagination reveals what the world could be" -05625879 09 n 03 imaginary_place 0 mythical_place 0 fictitious_place 0 026 @ 05625465 n 0000 ~ 05626524 n 0000 ~ 05626618 n 0000 ~ 05626767 n 0000 ~ 05626929 n 0000 ~ 05627083 n 0000 ~ 05627222 n 0000 ~ 05627385 n 0000 ~ 05627514 n 0000 ~ 05627682 n 0000 ~ 05627785 n 0000 ~ 05628565 n 0000 ~ 05629381 n 0000 ~ 05629682 n 0000 ~ 05630145 n 0000 ~ 05630539 n 0000 ~ 05630734 n 0000 ~ 05630874 n 0000 ~ 05631076 n 0000 ~ 05631175 n 0000 ~ 05631304 n 0000 ~ 05631449 n 0000 ~ 05631681 n 0000 ~ 05631841 n 0000 ~ 05632056 n 0000 ~ 05632175 n 0000 | a place that exists only in imagination; a place said to exist in fictional or religious writings -05626524 09 n 01 afterworld 0 001 @ 05625879 n 0000 | the place where you are after you die -05626618 09 n 02 Annwfn 0 Annwn 0 003 @ 05625879 n 0000 ;r 08894456 n 0000 ;c 07978423 n 0000 | (Welsh mythology) the other world; land of fairies -05626767 09 n 01 Asgard 0 002 @ 05625879 n 0000 ;c 07983856 n 0000 | (Norse mythology) the heavenly dwelling of the Norse gods (the Aesir) and slain war heroes -05626929 09 n 01 Atlantis 0 001 @ 05625879 n 0000 | according to legend, an island in the Atlantic Ocean that Plato said was swallowed by an earthquake -05627083 09 n 01 Brobdingnag 0 002 @ 05625879 n 0000 + 02671423 a 0101 | a land imagined by Jonathan Swift where everything was enormous -05627222 09 n 01 cloud-cuckoo-land 0 001 @ 05625879 n 0000 | an imaginary place where you say people are when they seem optimistically out of touch with reality -05627385 09 n 01 Cockaigne 0 002 @ 05625879 n 0000 ;c 15259284 n 0000 | (Middle Ages) an imaginary land of luxury and idleness -05627514 09 n 02 El_Dorado 0 eldorado 0 001 @ 05625879 n 0000 | an imaginary place of great wealth and opportunity; sought in South America by 16th-century explorers -05627682 09 n 03 fairyland 1 faerie 0 faery 0 001 @ 05625879 n 0000 | the enchanted realm of fairies -05627785 09 n 01 Heaven 0 010 @ 05625879 n 0000 + 02684971 a 0102 ! 05629682 n 0101 ~ 05628031 n 0000 ~ 05628193 n 0000 ~ 05628403 n 0000 ~ 05628658 n 0000 ~ 05628939 n 0000 ~ 05629104 n 0000 ~ 05629204 n 0000 | the abode of God and the angels -05628031 09 n 02 Abraham's_bosom 0 bosom_of_Abraham 0 002 @ 05627785 n 0000 ;c 06441973 n 0000 | the place where the just enjoy the peace of heaven after death -05628193 09 n 04 Celestial_City 0 City_of_God 0 Heavenly_City 0 Holy_City 0 001 @ 05627785 n 0000 | phrases used to refer to Heaven; "the Celestial City was Christian's goal in Bunyan's `Pilgrim's Progress'" -05628403 09 n 02 Elysium 0 Elysian_Fields 0 003 @ 05627785 n 0000 ;c 07979425 n 0000 + 02871347 a 0101 | (Greek mythology) the abode of the blessed after death -05628565 09 n 01 Elysium 1 001 @ 05625879 n 0000 | a place or condition of ideal happiness -05628658 09 n 02 Eden 0 Garden_of_Eden 0 001 @ 05627785 n 0000 | a beautiful garden where Adam and Eve were placed at the Creation; when they disobeyed and ate the forbidden fruit from the tree of knowledge of good and evil they were driven from their paradise (the fall of man) -05628939 09 n 01 Paradise 0 004 @ 05627785 n 0000 ;c 06226057 n 0000 + 01180084 a 0105 + 01180084 a 0101 | (Christianity) the abode of righteous souls after death -05629104 09 n 01 Promised_Land 0 001 @ 05627785 n 0000 | the goal towards which Christians strive -05629204 09 n 02 Valhalla 0 Walhalla 0 002 @ 05627785 n 0000 ;c 07983856 n 0000 | (Norse mythology) the hall in which the souls of heros slain in battle were received by Odin -05629381 09 n 06 Hell 2 Hades 0 infernal_region 1 netherworld 0 Scheol 0 underworld 0 006 @ 05625879 n 0000 ;c 05946687 n 0000 %p 09186709 n 0000 %p 09248724 n 0000 %p 09338453 n 0000 %p 09449773 n 0000 | (religion) the world of the dead; "No one goes to Hades with all his immense wealth"-Theognis -05629682 09 n 06 Hell 0 perdition 0 Inferno 1 infernal_region 0 nether_region 0 pit 0 006 @ 05625879 n 0000 ;c 06226057 n 0000 + 02859053 a 0301 ! 05627785 n 0101 ~ 05630277 n 0000 ~ 05630409 n 0000 | (Christianity) the abode of Satan and the forces of evil; where sinners suffer eternal punishment; "Hurl'd headlong...To bottomless perdition, there to dwell"- John Milton; "a demon from the depths of the pit"; "Hell is paved with good intentions"-Dr. Johnson -05630145 09 n 01 Houyhnhnms 0 001 @ 05625879 n 0000 | a land imagined by Jonathan Swift where intelligent horses ruled the Yahoos -05630277 09 n 02 Gehenna 0 Tartarus 0 002 @ 05629682 n 0000 + 01304081 a 0203 | a place where the wicked are punished after death -05630409 09 n 02 hellfire 0 red_region 0 001 @ 05629682 n 0000 | a place of eternal fire envisaged as punishment for the damned -05630539 09 n 01 Laputa 0 003 @ 05625879 n 0000 + 02498213 a 0104 + 03079951 a 0101 | a land imagined by Jonathan Swift where impractical projects were pursued and practical projects neglected -05630734 09 n 01 Lilliput 0 002 @ 05625879 n 0000 + 03081485 a 0101 | a land imagined by Jonathan Swift that was inhabited by tiny people -05630874 09 n 01 limbo 0 002 @ 05625879 n 0000 ;c 06182144 n 0000 | (theology) in Roman Catholicism, the place of unbaptized but innocent or righteous souls (such as infants and virtuous individuals) -05631076 09 n 01 limbo 1 001 @ 05625879 n 0000 | an imaginary place for lost or neglected things -05631175 09 n 01 Midgard 0 002 @ 05625879 n 0000 ;c 07983856 n 0000 | (Norse mythology) the abode of humans in Norse mythology -05631304 09 n 03 never-never_land 0 dreamland 0 dreamworld 0 001 @ 05625879 n 0000 | a pleasing country existing only in dreams or imagination -05631449 09 n 01 purgatory 0 003 @ 05625879 n 0000 ;c 06182144 n 0000 + 03104988 a 0101 | (theology) in Roman Catholic theology the place where those who have died in a state of grace undergo limited torment to expiate their sins -05631681 09 n 01 Ruritania 0 002 @ 05625879 n 0000 + 02790900 a 0101 | an imaginary kingdom in central Europe; often used as a scene for intrigue and romance -05631841 09 n 01 spirit_world 0 001 @ 05625879 n 0000 | any imaginary place where spiritual beings (demons or fairies or angels or the like) abide; "science has emptied the spirit world of its former inhabitants" -05632056 09 n 03 Utopia 0 Zion 1 Sion 1 001 @ 05625879 n 0000 | an imaginary place considered to be perfect or ideal -05632175 09 n 01 wonderland 0 001 @ 05625879 n 0000 | an imaginary realm of marvels or wonders -05632272 09 n 01 fancy 1 002 @ 05625465 n 0000 + 01635432 v 0105 | a kind of imagination that was held by Coleridge to be more casual and superficial than true imagination -05632446 09 n 02 fantasy 0 phantasy 0 010 @ 05625465 n 0000 + 01936778 a 0102 + 01942732 a 0101 + 01936778 a 0101 + 10078415 n 0101 + 01637368 v 0101 + 01637368 v 0102 ~ 05632732 n 0000 ~ 05632927 n 0000 ~ 05633044 n 0000 | imagination unrestricted by reality; "a schoolgirl fantasy" -05632732 09 n 02 pipe_dream 0 dream 3 001 @ 05632446 n 0000 | a fantastic but vain hope (from fantasies induced by the opium pipe); "I have this pipe dream about being emperor of the universe" -05632927 09 n 02 fantasy_life 0 phantasy_life 0 001 @ 05632446 n 0000 | an imaginary life lived in a fantasy world -05633044 09 n 03 fantasy_world 0 phantasy_world 0 fairyland 0 002 @ 05632446 n 0000 ~ 05633228 n 0000 | something existing solely in the imagination (but often mistaken for reality) -05633228 09 n 01 paracosm 0 001 @ 05633044 n 0000 | a prolonged fantasy world invented by children; can have a definite geography and language and history -05633385 09 n 05 invention 0 innovation 0 excogitation 1 conception 3 design 0 009 @ 05624700 n 0000 + 01639714 v 0501 + 01638368 v 0504 + 01633343 v 0402 + 01632411 v 0304 + 01687586 a 0202 + 01632411 v 0101 ~ 05634219 n 0000 ~ 05634457 n 0000 | the creation of something in the mind -05633672 09 n 04 inventiveness 0 ingeniousness 1 ingenuity 1 cleverness 1 004 @ 05624700 n 0000 + 00061885 a 0303 + 00643863 a 0102 ~ 05633860 n 0000 | the power of creative imagination -05633860 09 n 03 resource 0 resourcefulness 0 imagination 3 003 @ 05633672 n 0000 + 00307182 a 0201 ~ 05634059 n 0000 | the ability to deal resourcefully with unusual problems; "a man of resource" -05634059 09 n 03 armory 0 armoury 0 inventory 0 001 @ 05633860 n 0000 | a collection of resources; "he dipped into his intellectual armory to find an answer" -05634219 09 n 01 concoction 0 003 @ 05633385 n 0000 + 01635056 v 0102 + 01634142 v 0105 | the invention of a scheme or story to suit some purpose; "his testimony was a concoction"; "she has no peer in the concoction of mystery stories" -05634457 09 n 01 contrivance 1 001 @ 05633385 n 0000 | the faculty of contriving; inventive skill; "his skillful contrivance of answers to every problem" -05634613 09 n 01 originality 0 004 @ 05616246 n 0000 ~ 05634767 n 0000 ~ 05634910 n 0000 ~ 05635055 n 0000 | the ability to think and act independently -05634767 09 n 01 innovativeness 0 003 @ 05634613 n 0000 + 01876261 a 0103 + 01687586 a 0101 | originality by virtue of introducing new ideas -05634910 09 n 01 unconventionality 0 003 @ 05634613 n 0000 + 00606602 a 0101 ! 05650180 n 0101 | originality by virtue of being unconventional -05635055 09 n 02 novelty 0 freshness 0 002 @ 05634613 n 0000 + 01687167 a 0201 | originality by virtue of being new and surprising -05635188 09 n 02 aviation 0 airmanship 0 003 @ 05638987 n 0000 + 09826204 n 0203 + 01941093 v 0102 | the art of operating aircraft -05635321 09 n 01 eristic 0 002 @ 05638987 n 0000 + 00604221 a 0101 | the art of logical disputation (especially if specious) -05635448 09 n 01 falconry 0 005 @ 05638987 n 0000 + 01145766 v 0101 -c 03531691 n 0000 -c 01861767 v 0000 -c 02168710 v 0000 | the art of training falcons to hunt and return -05635624 09 n 01 fortification 0 003 @ 05638987 n 0000 + 01087197 v 0103 + 00220869 v 0103 | the art or science of strengthening defenses -05635764 09 n 01 homiletics 1 001 @ 05638987 n 0000 | the art of preaching -05635841 09 n 01 horology 0 003 @ 05638987 n 0000 + 10769905 n 0102 + 10769905 n 0103 | the art of designing and making clocks -05635970 09 n 01 minstrelsy 0 001 @ 05638987 n 0000 | the art of a minstrel -05636048 09 n 01 musicianship 0 003 @ 05638987 n 0000 + 10340312 n 0101 + 10339966 n 0101 | artistry in performing music -05636171 09 n 02 enology 0 oenology 0 003 @ 05638987 n 0000 + 09616573 n 0202 + 09616573 n 0101 | the art of wine making -05636294 09 n 01 puppetry 0 001 @ 05638987 n 0000 | the art of making puppets and presenting puppet shows -05636402 09 n 01 taxidermy 0 002 @ 05638987 n 0000 + 10693459 n 0101 | the art of mounting the skins of animals so that they have lifelike appearance -05636554 09 n 01 telescopy 0 002 @ 05638987 n 0000 + 02517002 a 0101 | the art of making and using telescopes -05636666 09 n 02 ventriloquism 0 ventriloquy 0 003 @ 05638987 n 0000 + 10747815 n 0201 + 10747815 n 0101 | the art of projecting your voice so that it seems to come from another source (as from a ventriloquist's dummy) -05636887 09 n 02 skill 0 science 2 003 @ 05616246 n 0000 ~ 05637106 n 0000 ~ 05637222 n 0000 | ability to produce solutions in some problem domain; "the skill of a well-trained boxer"; "the sweet science of pugilism" -05637106 09 n 01 nose 1 002 @ 05636887 n 0000 + 02169119 v 0104 | a natural skill; "he has a nose for good deals" -05637222 09 n 01 virtuosity 0 002 @ 05636887 n 0000 ~ 05637356 n 0000 | technical skill or fluency or style exhibited by a virtuoso -05637356 09 n 01 bravura 0 001 @ 05637222 n 0000 | brilliant and showy technical skill; "in a final bravura the ballerina appeared to be floating in water"; "the music ends with a display of bravura" -05637558 09 n 05 skill 1 accomplishment 0 acquirement 0 acquisition 0 attainment 0 015 @ 05616246 n 0000 + 00597915 v 0403 ~ 05638063 n 0000 ~ 05638374 n 0000 ~ 05638486 n 0000 ~ 05638606 n 0000 ~ 05638700 n 0000 ~ 05638778 n 0000 ~ 05639431 n 0000 ~ 05639556 n 0000 ~ 05639651 n 0000 ~ 05639832 n 0000 ~ 05640040 n 0000 ~ 05640184 n 0000 ~ 05640339 n 0000 | an ability that has been acquired by training -05637965 09 n 01 hand 0 001 @ 05616246 n 0000 | ability; "he wanted to try his hand at singing" -05638063 09 n 03 craft 1 craftsmanship 0 workmanship 0 012 @ 05637558 n 0000 + 10791221 n 0301 + 09975630 n 0201 + 09975425 n 0201 + 09974648 n 0201 + 01658762 v 0101 ~ 05643722 n 0000 ~ 05643807 n 0000 ~ 05643908 n 0000 ~ 05644016 n 0000 ~ 05644334 n 0000 ~ 05644423 n 0000 | skill in an occupation or trade -05638374 09 n 01 horsemanship 0 002 @ 05637558 n 0000 + 10185793 n 0101 | skill in handling and riding horses -05638486 09 n 01 literacy 0 003 @ 05637558 n 0000 ! 05649256 n 0101 = 01421679 a 0000 | the ability to read and write -05638606 09 n 01 marksmanship 0 002 @ 05637558 n 0000 + 10294953 n 0101 | skill in shooting -05638700 09 n 01 mastership 0 001 @ 05637558 n 0000 | the skill of a master -05638778 09 n 01 mixology 0 002 @ 05637558 n 0000 + 09841188 n 0105 | skill in preparing mixed drinks -05638882 09 n 01 superior_skill 0 002 @ 05616246 n 0000 ~ 05638987 n 0000 | more than ordinary ability -05638987 09 n 03 art 0 artistry 0 prowess 0 015 @ 05638882 n 0000 + 09812338 n 0101 ~ 05635188 n 0000 ~ 05635321 n 0000 ~ 05635448 n 0000 ~ 05635624 n 0000 ~ 05635764 n 0000 ~ 05635841 n 0000 ~ 05635970 n 0000 ~ 05636048 n 0000 ~ 05636171 n 0000 ~ 05636294 n 0000 ~ 05636402 n 0000 ~ 05636554 n 0000 ~ 05636666 n 0000 | a superior skill that you can learn by study and practice and observation; "the art of conversation"; "it's quite an art" -05639431 09 n 01 numeracy 0 003 @ 05637558 n 0000 = 00832075 a 0000 = 00832200 a 0000 | skill with numbers and mathematics -05639556 09 n 01 oarsmanship 0 002 @ 05637558 n 0000 + 10368920 n 0101 | skill as an oarsman -05639651 09 n 01 salesmanship 0 002 @ 05637558 n 0000 + 10548537 n 0101 | skill in selling; skill in persuading people to buy; "he read a book on salesmanship but it didn't help" -05639832 09 n 01 seamanship 0 003 @ 05637558 n 0000 + 10294602 n 0102 ~ 05639941 n 0000 | skill in sailing -05639941 09 n 01 boatmanship 0 002 @ 05639832 n 0000 + 09861946 n 0101 | skill in handling boats -05640040 09 n 01 showmanship 0 001 @ 05637558 n 0000 | the ability to present something (especially theatrical shows) in an attractive manner -05640184 09 n 02 soldiering 0 soldiership 0 003 @ 05637558 n 0000 + 10622053 n 0201 + 01097031 v 0101 | skills that are required for the life of soldier -05640339 09 n 01 swordsmanship 0 002 @ 05637558 n 0000 + 10085217 n 0102 | skill in fencing -05640433 09 n 01 skillfulness 0 012 @ 00024720 n 0000 + 02226162 a 0106 ! 05648247 n 0101 ~ 05640729 n 0000 ~ 05640924 n 0000 ~ 05641556 n 0000 ~ 05641834 n 0000 ~ 05641959 n 0000 ~ 05642175 n 0000 ~ 05642947 n 0000 ~ 05643190 n 0000 ~ 05644527 n 0000 | the state of being cognitively skillful -05640729 09 n 02 expertness 0 expertise 0 005 @ 05640433 n 0000 + 02226162 a 0102 + 02227946 a 0202 ~ 05641089 n 0000 ~ 05641205 n 0000 | skillfulness by virtue of possessing special knowledge -05640924 09 n 01 handiness 0 002 @ 05640433 n 0000 + 00062626 a 0101 | skillfulness with the hands; "he can do any sort of work requiring handiness and dexterity" -05641089 09 n 01 professionalism 0 001 @ 05640729 n 0000 | the expertness characteristic of a professional person -05641205 09 n 01 sophistication 1 002 @ 05640729 n 0000 + 00402389 v 0101 | being expert or having knowledge of some technical subject; "understanding affine transformations requires considerable mathematical sophistication" -05641432 09 n 01 coordination 1 002 @ 05732756 n 0000 + 00890874 a 0101 | being of coordinate importance, rank, or degree -05641556 09 n 01 coordination 0 004 @ 05640433 n 0000 + 02438228 v 0101 + 02437905 v 0101 ! 05641720 n 0101 | the skillful and effective interaction of movements -05641720 09 n 01 incoordination 0 002 @ 05648247 n 0000 ! 05641556 n 0101 | a lack of coordination of movements -05641834 09 n 01 versatility 0 003 @ 05640433 n 0000 + 02507772 a 0101 + 02228163 a 0101 | having a wide variety of skills -05641959 09 n 03 command 0 control 1 mastery 0 004 @ 05640433 n 0000 + 00597634 v 0301 + 02510337 v 0201 + 00597385 v 0202 | great skillfulness and knowledge of some subject or activity; "a good command of French" -05642175 09 n 05 adeptness 0 adroitness 0 deftness 0 facility 0 quickness 1 008 @ 05640433 n 0000 + 00032733 a 0503 + 00838533 a 0401 + 00062367 a 0301 + 00061262 a 0201 + 02226162 a 0101 ~ 05642553 n 0000 ~ 05642815 n 0000 | skillful performance or ability without difficulty; "his quick adeptness was a product of good design"; "he was famous for his facility as an archer" -05642553 09 n 01 touch 3 002 @ 05642175 n 0000 ~ 05642678 n 0000 | deftness in handling matters; "he has a master's touch" -05642678 09 n 03 finishing_touch 0 capstone 0 copestone 0 001 @ 05642553 n 0000 | a final touch; a crowning achievement; a culmination -05642815 09 n 03 dexterity 0 manual_dexterity 0 sleight 0 002 @ 05642175 n 0000 + 00062367 a 0103 | adroitness in using the hands -05642947 09 n 01 fluency 2 003 @ 05640433 n 0000 ! 05643072 n 0101 + 00150505 a 0103 | skillfulness in speaking or writing -05643072 09 n 01 disfluency 0 002 @ 05648247 n 0000 ! 05642947 n 0101 | lack of skillfulness in speaking or writing -05643190 09 n 02 proficiency 0 technique 1 007 @ 05640433 n 0000 + 02809220 a 0201 + 10696508 n 0201 + 10696251 n 0201 + 02226162 a 0105 ~ 05643491 n 0000 ~ 05643611 n 0000 | skillfulness in the command of fundamentals deriving from practice and familiarity; "practice greatly improves proficiency" -05643491 09 n 01 brushwork 0 001 @ 05643190 n 0000 | an artist's distinctive technique of applying paint with a brush -05643611 09 n 01 musketry 0 001 @ 05643190 n 0000 | the technique of using small arms (especially in battle) -05643722 09 n 01 housecraft 0 001 @ 05638063 n 0000 | skill in domestic management -05643807 09 n 01 priestcraft 0 001 @ 05638063 n 0000 | the skills involved in the work of a priest -05643908 09 n 01 stagecraft 0 002 @ 05638063 n 0000 ~ 07007444 n 0000 | skill in writing or staging plays -05644016 09 n 01 tradecraft 0 001 @ 05638063 n 0000 | skill acquired through experience in a trade; often used to discuss skill in espionage; "instructional designers are trained in something that might be called tradecraft"; "the CIA chief of station accepted responsibility for his agents' failures of tradecraft" -05644334 09 n 01 watercraft 0 001 @ 05638063 n 0000 | skill in the management of boats -05644423 09 n 01 woodcraft 0 001 @ 05638063 n 0000 | skill in carving or fashioning objects from wood -05644527 09 n 01 efficiency 0 004 @ 05640433 n 0000 + 00839619 a 0101 ! 05648953 n 0101 ~ 05644727 n 0000 | skillfulness in avoiding wasted time and effort; "she did the work with great efficiency" -05644727 09 n 01 economy 1 006 @ 05644527 n 0000 + 00840212 a 0101 + 00840212 a 0102 + 10043643 n 0101 + 02357228 v 0102 + 02269143 v 0103 | the efficient use of resources; "economy of effort" -05644922 09 n 01 inability 0 010 @ 00023271 n 0000 ! 05616246 n 0101 ~ 05645199 n 0000 ~ 05645597 n 0000 ~ 05647643 n 0000 ~ 05648146 n 0000 ~ 05648247 n 0000 ~ 05649256 n 0000 ~ 05649385 n 0000 ~ 05806231 n 0000 | lack of ability (especially mental ability) to do something -05645199 09 n 02 block 0 mental_block 0 003 @ 05644922 n 0000 + 00609100 v 0102 ~ 05645465 n 0000 | an inability to remember or think of something you normally can do; often caused by emotional tension; "I knew his name perfectly well but I had a temporary block" -05645465 09 n 01 writer's_block 0 001 @ 05645199 n 0000 | an inability to write; "he had writer's block; the words wouldn't come" -05645597 09 n 01 stupidity 0 009 @ 05644922 n 0000 + 01336587 a 0102 + 00439588 a 0101 ! 05617606 n 0101 ~ 05645854 n 0000 ~ 05646039 n 0000 ~ 05646218 n 0000 ~ 05647156 n 0000 ~ 05647451 n 0000 | a poor ability to understand or to profit from experience -05645854 09 n 03 denseness 1 dumbness 0 slow-wittedness 0 004 @ 05645597 n 0000 + 00440579 a 0204 + 00440579 a 0101 + 01840673 a 0303 | the quality of being mentally slow and limited -05646039 09 n 02 dullness 3 obtuseness 1 005 @ 05645597 n 0000 + 00772492 a 0201 + 00440579 a 0205 + 00440579 a 0103 ~ 14030671 n 0000 | the quality of being slow to understand -05646218 09 n 05 retardation 0 mental_retardation 0 backwardness 0 slowness 1 subnormality 0 009 @ 05645597 n 0000 + 01597702 a 0501 + 00440579 a 0406 + 01840673 a 0301 + 00440286 v 0102 ~ 05646535 n 0000 ~ 05646828 n 0000 ~ 05646926 n 0000 ~ 05647015 n 0000 | lack of normal development of intellectual capacities -05646535 09 n 02 abnormality 1 mental_defectiveness 0 003 @ 05646218 n 0000 + 01598592 a 0101 ~ 05646723 n 0000 | retardation sufficient to fall outside the normal range of intelligence -05646723 09 n 01 feeblemindedness 0 002 @ 05646535 n 0000 + 01840673 a 0104 | severe mental deficiency -05646828 09 n 02 moronity 0 mental_deficiency 0 001 @ 05646218 n 0000 | mild mental retardation -05646926 09 n 02 idiocy 0 amentia 0 001 @ 05646218 n 0000 | extreme mental retardation -05647015 09 n 01 imbecility 0 002 @ 05646218 n 0000 + 01840880 a 0101 | retardation more severe than a moron but not as severe as an idiot -05647156 09 n 04 folly 0 foolishness 0 craziness 0 madness 0 004 @ 05645597 n 0000 + 02572038 a 0403 + 02570282 a 0201 + 00886448 a 0301 | the quality of being rash and foolish; "trying to drive through a blizzard is the height of folly"; "adjusting to an insane society is total foolishness" -05647451 09 n 01 vacuousness 0 002 @ 05645597 n 0000 + 02571277 a 0105 | indicative of or marked by mental vacuity and an absence of ideas; "the vacuousness of her face belied her feelings" -05647643 09 n 01 inaptitude 0 004 @ 05644922 n 0000 ! 05622456 n 0101 ~ 05647772 n 0000 ~ 05647867 n 0000 | a lack of aptitude -05647772 09 n 01 talentlessness 0 002 @ 05647643 n 0000 + 01119305 a 0102 | a lack of talent -05647867 09 n 02 incapability 0 incapableness 0 003 @ 05647643 n 0000 + 00307474 a 0201 ! 05623181 n 0101 | lack of potential for development -05648011 09 n 01 imperfectibility 0 003 @ 05623181 n 0000 + 01753140 a 0101 ! 05623444 n 0101 | the capability of becoming imperfect -05648146 09 n 01 incapacity 0 002 @ 05644922 n 0000 ! 05622956 n 0101 | lack of intellectual power -05648247 09 n 01 unskillfulness 0 008 @ 05644922 n 0000 + 02229000 a 0103 ! 05640433 n 0101 ~ 05641720 n 0000 ~ 05643072 n 0000 ~ 05648459 n 0000 ~ 05648953 n 0000 ~ 05649116 n 0000 | a lack of cognitive skill -05648459 09 n 06 awkwardness 1 clumsiness 1 ineptness 0 ineptitude 0 maladroitness 0 slowness 2 008 @ 05648247 n 0000 + 00440579 a 0606 + 00063277 a 0501 + 01001180 a 0305 + 02229324 a 0202 + 01001180 a 0101 + 01140514 a 0101 ~ 05648756 n 0000 | unskillfulness resulting from a lack of training -05648756 09 n 01 rustiness 0 002 @ 05648459 n 0000 + 02230205 a 0102 | ineptitude or awkwardness as a consequence of age or lack of practice; "his rustiness showed when he was asked to speed up" -05648953 09 n 01 inefficiency 0 004 @ 05648247 n 0000 + 00511739 a 0102 + 00840902 a 0101 ! 05644527 n 0101 | unskillfulness resulting from a lack of efficiency -05649116 09 n 01 amateurishness 0 002 @ 05648247 n 0000 + 01870636 a 0101 | something that demonstrates a lack of professional competency -05649256 09 n 02 illiteracy 0 analphabetism 0 003 @ 05644922 n 0000 ! 05638486 n 0101 + 01421887 a 0201 | an inability to read -05649385 09 n 01 uncreativeness 0 005 @ 05644922 n 0000 + 00644372 a 0101 ! 05624700 n 0102 ~ 05649538 n 0000 ~ 05649628 n 0000 | a lack of creativity -05649538 09 n 01 fruitlessness 0 001 @ 05649385 n 0000 | a lack of creative imagination -05649628 09 n 01 unoriginality 0 004 @ 05649385 n 0000 + 01688271 a 0101 ~ 05649785 n 0000 ~ 05650180 n 0000 | uncreativeness due to a lack of originality -05649785 09 n 02 triteness 0 staleness 0 004 @ 05649628 n 0000 + 01689580 a 0202 + 01688757 a 010a ~ 05649960 n 0000 | unoriginality as a result of being dull and hackneyed -05649960 09 n 01 camp 0 003 @ 05649785 n 0000 + 02394487 a 0102 + 00525805 v 0101 | something that is considered amusing not because of its originality but because of its unoriginality; "the living room was pure camp" -05650180 09 n 01 conventionality 0 003 @ 05649628 n 0000 + 00607421 a 0101 ! 05634910 n 0101 | unoriginality as a result of being too conventional -05650329 09 n 03 faculty 0 mental_faculty 0 module 0 007 @ 05616246 n 0000 ~ 05650579 n 0000 ~ 05650820 n 0000 ~ 05651399 n 0000 ~ 05651680 n 0000 ~ 05651971 n 0000 ~ 05652593 n 0000 | one of the inherent cognitive or perceptual powers of the mind -05650579 09 n 01 attention 1 005 @ 05650329 n 0000 + 02170427 v 0101 ~ 05704266 n 0000 ~ 05704550 n 0000 ~ 05705722 n 0000 | the faculty or power of mental concentration; "keeping track of all the details requires your complete attention" -05650820 09 n 02 language 0 speech 0 005 @ 05650329 n 0000 + 00963570 v 0201 %p 05651068 n 0000 %p 05651242 n 0000 -c 00116203 v 0000 | the mental faculty or power of vocal communication; "language sets homo sapiens apart from all other animals" -05651068 09 n 01 lexis 0 003 @ 00023271 n 0000 #p 05650820 n 0000 + 02886629 a 0101 | all of the words in a language; all word forms having meaning or grammatical function -05651242 09 n 03 vocabulary 0 lexicon 0 mental_lexicon 0 003 @ 00023271 n 0000 #p 05650820 n 0000 + 02886629 a 0201 | a language user's knowledge of words -05651399 09 n 04 memory 0 retention 0 retentiveness 0 retentivity 0 006 @ 05650329 n 0000 + 02005756 a 0401 + 02005756 a 0301 + 00610010 v 0201 + 00604576 v 0101 ~ 05761918 n 0000 | the power of retaining and recalling past experience; "he had a good memory when he was younger" -05651680 09 n 03 reason 0 understanding 0 intellect 1 004 @ 05650329 n 0000 + 00632627 v 0101 + 00772189 v 0102 + 00634472 v 0101 | the capacity for rational thought or inference or discrimination; "we are told that man is endowed with reason and capable of distinguishing good from evil" -05651971 09 n 05 sense 2 sensation 1 sentience 0 sentiency 0 sensory_faculty 0 011 @ 05650329 n 0000 + 00571424 a 0401 + 00571424 a 0301 + 02106006 v 0202 + 02108665 a 0102 + 00070427 a 0101 + 02155248 v 0101 + 02106006 v 0102 + 00272391 v 0103 ~ 05652396 n 0000 ~ 05652926 n 0000 | the faculty through which the external world is apprehended; "in the dark he had to depend on touch and on his senses of smell and hearing" -05652396 09 n 03 modality 0 sense_modality 0 sensory_system 0 006 @ 05651971 n 0000 ~ 05654362 n 0000 ~ 05654873 n 0000 ~ 05657718 n 0000 ~ 05658226 n 0000 ~ 05658603 n 0000 | a particular sense -05652593 09 n 02 volition 0 will 0 004 @ 05650329 n 0000 + 00698398 v 0201 + 02565801 a 0101 ~ 05652843 n 0000 | the capability of conscious choice and decision and intention; "the exercise of their volition we construe as revolt"- George Meredith -05652843 09 n 01 velleity 0 001 @ 05652593 n 0000 | volition in its weakest form -05652926 09 n 03 sensitivity 0 sensitiveness 0 sensibility 1 013 @ 05651971 n 0000 ;c 06080522 n 0000 + 01748152 a 0301 + 02102484 a 0301 + 02102484 a 0202 + 01712753 a 0101 + 02103481 a 0101 ~ 05653327 n 0000 ~ 05653475 n 0000 ~ 05653575 n 0000 ~ 05653848 n 0000 ~ 05654052 n 0000 ~ 05654201 n 0000 | (physiology) responsiveness to external stimuli; the faculty of sensation; "sensitivity to pain" -05653327 09 n 01 acuteness 1 001 @ 05652926 n 0000 | a sensitivity that is keen and highly developed; "dogs have a remarkable acuteness of smell" -05653475 09 n 01 hypersensitivity 0 002 @ 05652926 n 0000 + 02360944 a 0102 | extreme sensitivity -05653575 09 n 02 responsiveness 0 reactivity 0 003 @ 05652926 n 0000 + 02105176 a 0201 ~ 05653710 n 0000 | responsive to stimulation -05653710 09 n 02 excitability 0 irritability 0 002 @ 05653575 n 0000 + 02104600 a 0201 | excessive sensitivity of an organ or body part -05653848 09 n 01 exteroception 0 006 @ 05652926 n 0000 ~ 05654362 n 0000 ~ 05655119 n 0000 ~ 05657718 n 0000 ~ 05658226 n 0000 ~ 05658603 n 0000 | sensitivity to stimuli originating outside of the body -05654052 09 n 01 interoception 0 003 @ 05652926 n 0000 ~ 05659621 n 0000 ~ 05659856 n 0000 | sensitivity to stimuli originating inside of the body -05654201 09 n 02 photosensitivity 0 radiosensitivity 0 003 @ 05652926 n 0000 + 02104890 a 0201 + 02104727 a 0102 | sensitivity to the action of radiant energy -05654362 09 n 04 sight 0 vision 1 visual_sense 0 visual_modality 0 017 @ 05652396 n 0000 @ 05653848 n 0000 + 02163746 v 0102 -c 05300926 n 0000 ~ 05654783 n 0000 ~ 05655482 n 0000 ~ 05655567 n 0000 ~ 05656042 n 0000 ~ 05656160 n 0000 ~ 05656294 n 0000 ~ 05656418 n 0000 ~ 05656537 n 0000 ~ 05656803 n 0000 ~ 05656890 n 0000 ~ 05656997 n 0000 ~ 05657166 n 0000 ~ 05657373 n 0000 | the ability to see; the visual faculty -05654783 09 n 01 stigmatism 0 002 @ 05654362 n 0000 + 00108595 a 0102 | normal eyesight -05654873 09 n 01 somatosense 0 003 @ 05652396 n 0000 ~ 05655119 n 0000 ~ 05722208 n 0000 | any of the sensory systems that mediate sensations of pressure and tickle and warmth and cold and vibration and limb position and limb movement and pain -05655119 09 n 05 touch 1 sense_of_touch 0 skin_senses 0 touch_modality 0 cutaneous_senses 0 004 @ 05654873 n 0000 @ 05653848 n 0000 #p 05659856 n 0000 + 02127358 v 0101 | the faculty by which external objects or forces are perceived through contact with the body (especially the hands); "only sight and touch enable us to locate objects in the space around us" -05655482 09 n 01 achromatic_vision 0 001 @ 05654362 n 0000 | vision using the rods -05655567 09 n 03 acuity 1 visual_acuity 0 sharp-sightedness 0 004 @ 05654362 n 0000 + 02158438 a 0307 ~ 05655810 n 0000 ~ 05655966 n 0000 | sharpness of vision; the visual ability to resolve fine detail (usually measured by a Snellen chart) -05655810 09 n 02 twenty-twenty 0 20/20 0 001 @ 05655567 n 0000 | normal visual acuity, as measured by the ability to read charts at a distance of 20 feet -05655966 09 n 01 oxyopia 0 001 @ 05655567 n 0000 | unusually acute vision -05656042 09 n 01 binocular_vision 0 002 @ 05654362 n 0000 ~ 05657515 n 0000 | vision involving the use of both eyes -05656160 09 n 01 central_vision 0 001 @ 05654362 n 0000 | vision using the fovea and parafovea; the middle part of the visual field -05656294 09 n 03 color_vision 0 chromatic_vision 0 trichromacy 0 001 @ 05654362 n 0000 | the normal ability to see colors -05656418 09 n 01 distance_vision 0 001 @ 05654362 n 0000 | vision for objects that a 20 feet or more from the viewer -05656537 09 n 03 eyesight 0 seeing 1 sightedness 0 005 @ 05654362 n 0000 + 02158301 a 0301 + 02158731 a 0201 + 02129709 v 0201 + 02129289 v 0201 | normal use of the faculty of vision -05656722 09 n 01 foveal_vision 0 001 @ 05657166 n 0000 | vision with the fovea -05656803 09 n 01 monocular_vision 0 001 @ 05654362 n 0000 | vision with only one eye -05656890 09 n 01 near_vision 0 001 @ 05654362 n 0000 | vision for objects 2 feet or closer to the viewer -05656997 09 n 04 night_vision 0 night-sight 0 scotopic_vision 0 twilight_vision 0 001 @ 05654362 n 0000 | the ability to see in reduced illumination (as in moonlight) -05657166 09 n 02 daylight_vision 0 photopic_vision 0 002 @ 05654362 n 0000 ~ 05656722 n 0000 | normal vision in daylight; vision with sufficient illumination that the cones are active and hue is perceived -05657373 09 n 01 peripheral_vision 0 001 @ 05654362 n 0000 | vision at the edges of the visual field using only the periphery of the retina -05657515 09 n 02 stereoscopic_vision 0 stereoscopy 0 002 @ 05656042 n 0000 + 03120176 a 0201 | three-dimensional vision produced by the fusion of two slightly different views of a scene on each retina -05657718 09 n 05 hearing 0 audition 0 auditory_sense 0 sense_of_hearing 0 auditory_modality 0 006 @ 05652396 n 0000 @ 05653848 n 0000 + 02169702 v 0101 -c 05300507 n 0000 ~ 05657999 n 0000 ~ 05658106 n 0000 | the ability to hear; the auditory faculty; "his hearing was impaired" -05657999 09 n 01 ear 0 001 @ 05657718 n 0000 | good hearing; "he had a keen ear"; "a good ear for pitch" -05658106 09 n 02 absolute_pitch 0 perfect_pitch 0 001 @ 05657718 n 0000 | the ability to identify the pitch of a tone -05658226 09 n 04 taste 4 gustation 0 sense_of_taste 0 gustatory_modality 0 009 @ 05652396 n 0000 @ 05653848 n 0000 + 02868916 a 0201 + 02868916 a 0203 + 02395115 a 0101 + 02192992 v 0101 + 02194495 v 0102 + 02191546 v 0101 + 02194286 v 0101 | the faculty of distinguishing sweet, sour, bitter, and salty properties in the mouth; "his cold deprived him of his sense of taste" -05658603 09 n 04 smell 1 sense_of_smell 0 olfaction 0 olfactory_modality 0 005 @ 05652396 n 0000 @ 05653848 n 0000 + 02123672 v 0101 + 02124748 v 0101 ~ 05658826 n 0000 | the faculty that enables us to distinguish scents -05658826 09 n 01 nose 0 003 @ 05658603 n 0000 ;c 00015388 n 0000 + 02125223 v 0102 | the sense of smell (especially in animals); "the hound has a good nose" -05658985 09 n 07 kinesthesis 0 kinaesthesis 0 kinesthesia 1 kinaesthesia 1 kinesthetics 0 muscle_sense 0 sense_of_movement 0 005 @ 05659621 n 0000 + 02870453 a 0402 + 02870453 a 0301 ! 05659260 n 0301 + 02870453 a 0101 | the ability to feel movements of the limbs and body -05659260 09 n 01 kinanesthesia 0 002 @ 05659621 n 0000 ! 05658985 n 0103 | inability to sense movement -05659365 09 n 05 equilibrium 0 labyrinthine_sense 0 vestibular_sense 0 sense_of_balance 0 sense_of_equilibrium 0 002 @ 05659621 n 0000 + 02673134 v 0102 | a sensory system located in structures of the inner ear that registers the orientation of the head -05659621 09 n 01 proprioception 0 005 @ 05654052 n 0000 #p 05659856 n 0000 ~ 05658985 n 0000 ~ 05659260 n 0000 ~ 05659365 n 0000 | the ability to sense the position and location and orientation and movement of the body and its parts -05659856 09 n 09 somesthesia 0 somesthesis 0 somaesthesia 0 somaesthesis 0 somatesthesia 0 somataesthesis 0 somatosensory_system 0 somatic_sensory_system 0 somatic_sense 0 005 @ 05654052 n 0000 %p 05655119 n 0000 %p 05659621 n 0000 ~ 05721990 n 0000 ~ 05722208 n 0000 | the faculty of bodily perception; sensory systems associated with the body; includes skin senses and proprioception and the internal organs -05660268 09 n 01 method 0 012 @ 05616786 n 0000 + 01668567 a 0101 ~ 05660937 n 0000 ~ 05661294 n 0000 ~ 05661400 n 0000 ~ 05661551 n 0000 ~ 05661668 n 0000 ~ 05661996 n 0000 ~ 05665146 n 0000 ~ 05667086 n 0000 ~ 06020737 n 0000 ~ 06251295 n 0000 | a way of doing something, especially a systematic way; implies an orderly logical arrangement (usually in steps) -05660631 09 n 01 scientific_method 0 002 @ 05661400 n 0000 ~ 05660801 n 0000 | a method of investigation involving observation and theory to test scientific hypotheses -05660801 09 n 01 experimental_method 0 001 @ 05660631 n 0000 | the use of controlled observations and measurements to test hypotheses -05660937 09 n 03 teaching_method 0 pedagogics 0 pedagogy 0 004 @ 05660268 n 0000 + 02945971 a 0302 + 02945971 a 0301 ~ 05661118 n 0000 | the principles and methods of instruction -05661118 09 n 02 Socratic_method 0 maieutic_method 0 001 @ 05660937 n 0000 | a method of teaching by question and answer; used by Socrates to elicit truths from his students -05661294 09 n 01 method_of_choice 0 001 @ 05660268 n 0000 | the best method to achieve a desired result -05661400 09 n 01 methodology 0 003 @ 05660268 n 0000 + 02943463 a 0101 ~ 05660631 n 0000 | the system of methods followed in a particular discipline -05661551 09 n 01 mnemonics 0 002 @ 05660268 n 0000 + 10324201 n 0101 | a method or system for improving the memory -05661668 09 n 01 solution 0 002 @ 05660268 n 0000 ~ 05661825 n 0000 | a method for solving a problem; "the easy solution is to look it up in the handbook" -05661825 09 n 01 silver_bullet 0 001 @ 05661668 n 0000 | a simple guaranteed solution for a difficult problem; "no silver bullet can make the world safe from terrorism" -05661996 09 n 02 system 0 system_of_rules 0 018 @ 05660268 n 0000 ~ 05662532 n 0000 ~ 05662876 n 0000 ~ 05663104 n 0000 ~ 05663491 n 0000 ~ 05663671 n 0000 ~ 05663878 n 0000 ~ 05664069 n 0000 ~ 05664487 n 0000 ~ 05664640 n 0000 ~ 05664803 n 0000 ~ 05664986 n 0000 ~ 05899087 n 0000 ~ 05953614 n 0000 ~ 05953881 n 0000 ~ 06133018 n 0000 ~ 06183899 n 0000 ~ 06663617 n 0000 | a complex of methods or rules governing behavior; "they have to operate under a system they oppose"; "that language has a complex system for indicating gender" -05662532 09 n 01 accounting 0 013 @ 05661996 n 0000 + 02265231 v 0101 -c 00893239 a 0000 -c 00806075 n 0000 -c 13261380 n 0000 -c 13328578 n 0000 -c 13328853 n 0000 -c 13332820 n 0000 ~ 13410458 n 0000 ~ 13410803 n 0000 -c 13411533 n 0000 -c 13412533 n 0000 -c 02265560 v 0000 | a system that provides quantitative information about finances -05662876 09 n 01 discipline 1 002 @ 05661996 n 0000 + 02553697 v 0101 | a system of rules of conduct or method of practice; "he quickly learned the discipline of prison routine"; "for such a plan to work requires discipline"; -05663104 09 n 02 frame_of_reference 1 frame 0 002 @ 05661996 n 0000 ~ 05663275 n 0000 | a system of assumptions and standards that sanction behavior and give it meaning -05663275 09 n 01 vocabulary 1 002 @ 05663104 n 0000 ;c 00933420 n 0000 | the system of techniques or symbols serving as a means of expression (as in arts or crafts); "he introduced a wide vocabulary of techniques" -05663491 09 n 01 gambling_system 0 001 @ 05661996 n 0000 | a system of rules for placing bets that is believed to lead to winning; "he has a perfect gambling system at roulette" -05663671 09 n 01 government 0 003 @ 05661996 n 0000 ;c 01124794 n 0000 + 02511551 v 0105 | (government) the system or form by which a community or other political unit is governed; "tyrannical government" -05663878 09 n 01 honor_system 0 001 @ 05661996 n 0000 | a system of conduct in which participants are trusted not to take unfair advantage of others; "the students are on the honor system" -05664069 09 n 03 logic 1 logical_system 0 system_of_logic 0 010 @ 05661996 n 0000 + 10269785 n 0101 + 10269785 n 0102 ~ 05664344 n 0000 ~ 06164665 n 0000 -c 00593669 v 0000 -c 00636441 v 0000 -c 00636574 v 0000 -c 00666886 v 0000 -c 00728826 v 0000 | a system of reasoning -05664344 09 n 01 Aristotelian_logic 0 001 @ 05664069 n 0000 | the syllogistic logic of Aristotle as developed by Boethius in the Middle Ages -05664487 09 n 01 merit_system 0 002 @ 05661996 n 0000 ! 05664803 n 0101 | the system of employing and promoting civil servants on the basis of ability -05664640 09 n 01 point_system 0 003 @ 05661996 n 0000 ;c 00883297 n 0000 ;c 00923444 n 0000 | a system of evaluation based on awarding points according to rules -05664803 09 n 01 spoils_system 0 002 @ 05661996 n 0000 ! 05664487 n 0101 | the system of employing and promoting civil servants who are friends and supporters of the group in power -05664986 09 n 01 organon 0 001 @ 05661996 n 0000 | a system of principles for philosophic or scientific investigations; an instrument for acquiring knowledge -05665146 09 n 01 technique 0 010 @ 05660268 n 0000 + 10696508 n 0101 + 10696251 n 0101 ~ 05665421 n 0000 ~ 05665625 n 0000 ~ 05665769 n 0000 ~ 05665984 n 0000 ~ 05666324 n 0000 ~ 05666530 n 0000 ~ 05666700 n 0000 | a practical method or art applied to some particular task -05665421 09 n 01 antialiasing 0 002 @ 05665146 n 0000 ;c 03084647 n 0000 | (computer graphics) a technique that is used to smooth jagged distortions in curves and diagonal lines so they appear smoother -05665625 09 n 01 Benday_process 0 001 @ 05665146 n 0000 | a photoengraving technique for adding shading or texture or tone to a printed image -05665769 09 n 01 bonding 0 002 @ 05665146 n 0000 ;c 06047430 n 0000 | (dentistry) a technique for repairing a tooth; resinous material is applied to the surface of the tooth where it adheres to the tooth's enamel -05665984 09 n 01 emulation 0 004 @ 05665146 n 0000 ;c 06128570 n 0000 + 02675270 v 0101 ~ 05666176 n 0000 | (computer science) technique of one machine obtaining the same results as another -05666176 09 n 01 terminal_emulation 0 002 @ 05665984 n 0000 ;c 06128570 n 0000 | (computer science) having a computer act exactly like a terminal -05666324 09 n 01 immunofluorescence 0 002 @ 05665146 n 0000 ;c 06051542 n 0000 | (immunology) a technique that uses antibodies linked to a fluorescent dye in order to study antigens in a sample of tissue -05666530 09 n 01 photomechanics 0 002 @ 05665146 n 0000 + 02777355 a 0101 | the technique of using photomechanical methods to make photographs into plates for printing -05666700 09 n 02 simulation 0 computer_simulation 0 007 @ 05665146 n 0000 @ 05890249 n 0000 ;c 06128570 n 0000 + 01722980 v 0102 -c 13734202 n 0000 -c 15135057 n 0000 -c 15135258 n 0000 | (computer science) the technique of representing the real world by a computer program; "a simulation should imitate the internal processes and not merely the results of the thing being simulated" -05667086 09 n 01 technicolor 0 001 @ 05660268 n 0000 | a trademarked method of making color motion pictures -05667196 09 n 01 practice 0 004 @ 00023271 n 0000 ~ 05667404 n 0000 ~ 05667613 n 0000 ~ 05669797 n 0000 | knowledge of how something is usually done; "it is not the local practice to wear shorts to dinner" -05667404 09 n 02 custom 0 tradition 2 007 @ 05667196 n 0000 + 01690767 a 0201 + 00611047 a 0201 + 00606079 a 0101 ~ 05669034 n 0000 ~ 05669181 n 0000 ~ 05669350 n 0000 | a specific practice of long standing -05667613 09 n 05 convention 0 normal 0 pattern 3 rule 1 formula 0 005 @ 05667196 n 0000 + 00981083 v 0501 ~ 05667951 n 0000 ~ 05668095 n 0000 ~ 05668359 n 0000 | something regarded as a normative example; "the convention of not naming the main character"; "violence is the rule not the exception"; "his formula for impressing visitors" -05667951 09 n 01 mores 0 002 @ 05667613 n 0000 ;c 06151693 n 0000 | (sociology) the conventions that embody the fundamental values of a group -05668095 09 n 02 code_of_conduct 0 code_of_behavior 0 004 @ 05667613 n 0000 ~ 05668581 n 0000 ~ 05668725 n 0000 ~ 05668915 n 0000 | a set of conventional principles and expectations that are considered binding on any person who is a member of a particular group -05668359 09 n 01 universal 0 001 @ 05667613 n 0000 | a behavioral convention or pattern characteristic of all members of a particular culture or of all human beings; "some form of religion seems to be a human universal" -05668581 09 n 01 courtly_love 0 002 @ 05668095 n 0000 ;c 15259284 n 0000 | (Middle Ages) a highly conventionalized code of conduct for lovers -05668725 09 n 01 knight_errantry 0 002 @ 05668095 n 0000 ;c 15259284 n 0000 | (Middle Ages) the code of conduct observed by a knight errant who is wandering in search of deeds of chivalry -05668915 09 n 01 protocol 2 001 @ 05668095 n 0000 | code of correct conduct; "safety protocols"; "academic protocol" -05669034 09 n 02 habit 0 wont 0 002 @ 05667404 n 0000 + 01165043 v 0102 | an established custom; "it was their habit to dine at 7 every evening" -05669181 09 n 01 Hadith 0 002 @ 05667404 n 0000 ;c 06234825 n 0000 | (Islam) a tradition based on reports of the sayings and activities of Muhammad and his companions -05669350 09 n 01 institution 0 002 @ 05667404 n 0000 ~ 05669618 n 0000 | a custom that for a long time has been an important feature of some group or society; "the institution of marriage"; "the institution of slavery"; "he had become an institution in the theater" -05669618 09 n 01 levirate 0 001 @ 05669350 n 0000 | the biblical institution whereby a man must marry the widow of his childless brother in order to maintain the brother's line -05669797 09 n 01 heritage 0 001 @ 05667196 n 0000 | practices that are handed down from the past by tradition; "a heritage of freedom" -05669934 09 n 02 cognitive_state 0 state_of_mind 1 017 @ 14373582 n 0000 ~ 05671217 n 0000 ~ 05672391 n 0000 ~ 05672698 n 0000 ~ 05674584 n 0000 ~ 05674927 n 0000 ~ 05675130 n 0000 ~ 05678932 n 0000 ~ 05682431 n 0000 ~ 05682570 n 0000 ~ 05683582 n 0000 ~ 05697135 n 0000 ~ 05698247 n 0000 ~ 05699906 n 0000 ~ 05700087 n 0000 ~ 05787175 n 0000 ~ 05787498 n 0000 | the state of a person's cognitive processes -05670343 09 n 01 enthusiasm 0 004 @ 05682950 n 0000 + 00885695 a 0101 ~ 05670512 n 0000 ~ 05670615 n 0000 | a lively interest; "enthusiasm for his program is growing" -05670512 09 n 01 Anglomania 0 001 @ 05670343 n 0000 | an excessive enthusiasm for all things English -05670615 09 n 01 balletomania 0 001 @ 05670343 n 0000 | extraordinary enthusiasm for ballets -05670710 09 n 01 concern 0 006 @ 05682950 n 0000 ~ 05670972 n 0000 ~ 05671325 n 0000 ~ 05671676 n 0000 ~ 05671974 n 0000 ~ 05672178 n 0000 | something that interests you because it is important or affects you; "the safety of the ship is the captain's concern" -05670972 09 n 04 worldly_concern 0 earthly_concern 0 world 1 earth 0 002 @ 05670710 n 0000 + 02577061 a 0301 | the concerns of this life as distinguished from heaven and the afterlife; "they consider the church to be independent of the world" -05671217 09 n 01 interestedness 0 002 @ 05669934 n 0000 + 01342237 a 0101 | the state of being interested -05671325 09 n 03 matter 1 affair 0 thing 2 002 @ 05670710 n 0000 ~ 05671526 n 0000 | a vaguely specified concern; "several matters to attend to"; "it is none of your affair"; "things are going well" -05671526 09 n 01 least 0 001 @ 05671325 n 0000 | something that is of no importance; "it is the least I can do"; "that is the least of my concerns" -05671676 09 n 03 personal_business 0 personal_matters 0 affairs 0 002 @ 05670710 n 0000 ~ 05671842 n 0000 | matters of personal concern; "get his affairs in order" -05671842 09 n 02 dirty_linen 0 dirty_laundry 0 001 @ 05671676 n 0000 | personal matters that could be embarrassing if made public -05671974 09 n 01 part 2 001 @ 05670710 n 0000 | that which concerns a person with regard to a particular role or situation; "it requires vigilance on our part"; "they resisted every effort on his part" -05672178 09 n 01 point_of_honor 0 001 @ 05670710 n 0000 | a concern that seriously reflects on your honor -05672286 09 n 01 cult_of_personality 0 001 @ 05750657 n 0000 | intense devotion to a particular person -05672391 09 n 03 amnesia 0 memory_loss 0 blackout 1 009 @ 05669934 n 0000 + 02617933 a 0101 + 01978237 a 0101 + 02617933 a 0102 ~ 05672862 n 0000 ~ 05673088 n 0000 ~ 05673209 n 0000 ~ 05673439 n 0000 ~ 05674319 n 0000 | partial or total loss of memory; "he has a total blackout for events of the evening" -05672698 09 n 01 paramnesia 0 002 @ 05669934 n 0000 ;c 06055946 n 0000 | (psychiatry) a disorder of memory in which dreams or fantasies are confused with reality -05672862 09 n 02 anterograde_amnesia 0 posttraumatic_amnesia 0 001 @ 05672391 n 0000 | loss of memory for events immediately following a trauma; sometimes in effect for events during and for a long time following the trauma -05673088 09 n 01 retrograde_amnesia 0 001 @ 05672391 n 0000 | loss of memory for events immediately preceding a trauma -05673209 09 n 01 forgetfulness 0 003 @ 05672391 n 0000 + 02006031 a 0102 ~ 05673323 n 0000 | tendency to forget -05673323 09 n 01 senior_moment 0 001 @ 05673209 n 0000 | a momentary lapse of memory (especially in older people) -05673439 09 n 01 selective_amnesia 0 002 @ 05672391 n 0000 ~ 05673710 n 0000 | amnesia about particular events that is very convenient for the person who cannot remember; "why do politicians always develop selective amnesia when questioned about their transgressions?" -05673710 09 n 01 posthypnotic_amnesia 0 001 @ 05673439 n 0000 | selective amnesia after being in a hypnotic state of events occurring during hypnosis or of information designated by the hypnotist -05673908 09 n 01 forgetfulness 1 004 @ 05679611 n 0000 + 00165943 a 0101 + 01978003 a 0102 ~ 05674134 n 0000 | unawareness caused by neglectful or heedless failure to remember; "his forgetfulness increased as he grew older" -05674134 09 n 02 obliviousness 0 oblivion 0 004 @ 05673908 n 0000 + 00165943 a 0202 + 00192026 a 0101 + 00165943 a 0102 | total forgetfulness; "he sought the great oblivion of sleep" -05674319 09 n 01 transient_global_amnesia 0 001 @ 05672391 n 0000 | memory disorder seen in middle aged and elderly persons; characterized by an episode of amnesia and bewilderment that lasts for several hours; person is otherwise alert and intellectually active -05674584 09 n 02 set 0 readiness 0 004 @ 05669934 n 0000 ;c 06136258 n 0000 + 00407848 v 0103 + 00406243 v 0106 | (psychology) being temporarily ready to respond in a particular way; "the subjects' set led them to solve problems the familiar way and to overlook the simpler solution"; "his instructions deliberately gave them the wrong set" -05674927 09 n 01 ivory_tower 0 001 @ 05669934 n 0000 | a state of mind that is discussed as if it were a place; "he lived in the ivory tower of speculation"; "they viewed universities as ivory towers" -05675130 09 n 01 consciousness 0 009 @ 05669934 n 0000 + 01337767 a 0101 + 00570590 a 0101 ! 05678932 n 0101 ~ 05675437 n 0000 ~ 05675601 n 0000 ~ 05677952 n 0000 ~ 05678148 n 0000 ~ 05678300 n 0000 | an alert cognitive state in which you are aware of yourself and your situation; "he lost consciousness" -05675437 09 n 01 stream_of_consciousness 0 001 @ 05675130 n 0000 | the continuous flow of ideas and feelings that constitute an individual's conscious experience -05675601 09 n 02 self 0 ego 1 002 @ 05675130 n 0000 ~ 05675715 n 0000 | your consciousness of your own identity -05675715 09 n 01 anima 0 003 @ 05675601 n 0000 ;c 11094611 n 0000 ;c 06136258 n 0000 | (Jungian psychology) the inner self (not the external persona) that is in touch with the unconscious -05675905 09 n 05 awareness 0 consciousness 1 cognizance 0 cognisance 0 knowingness 0 017 @ 05804793 n 0000 + 01307850 a 0502 + 01307690 a 0501 + 00830051 a 0501 + 00190115 a 0403 + 00594621 v 0403 + 00190115 a 0302 ! 05676476 n 0301 + 00594621 v 0302 + 00190960 a 0201 + 01977155 a 0102 + 00190115 a 0101 = 00190115 a 0000 = 00191603 a 0000 ~ 05676605 n 0000 ~ 05677340 n 0000 ~ 05677504 n 0000 | having knowledge of; "he had no awareness of his mistakes"; "his sudden consciousness of the problem he faced"; "their intelligence and general knowingness was impressive" -05676476 09 n 01 incognizance 0 003 @ 05804793 n 0000 + 00191603 a 0102 ! 05675905 n 0103 | a lack of knowledge or recognition -05676605 09 n 01 self-awareness 0 004 @ 05675905 n 0000 + 00570991 a 0102 ~ 05676755 n 0000 ~ 05676911 n 0000 | awareness of your own individuality -05676755 09 n 01 orientation 1 001 @ 05676605 n 0000 | a person's awareness of self with regard to position and time and place and personal relationships -05676911 09 n 01 self-consciousness 0 003 @ 05676605 n 0000 + 00570991 a 0101 ! 05677097 n 0101 | self-awareness plus the additional realization that others are similarly aware of you -05677097 09 n 01 unselfconsciousness 0 003 @ 05679611 n 0000 + 00074867 a 0101 ! 05676911 n 0101 | the quality of being not self-conscious; unawareness of yourself or of others' views of yourself; "he had the unselfconsciousness of a child" -05677340 09 n 01 feel 0 002 @ 05675905 n 0000 + 00715239 v 0102 | an intuitive awareness; "he has a feel for animals" or "it's easy when you get the feel of it"; -05677504 09 n 01 sense 5 005 @ 05675905 n 0000 + 00589469 v 0103 + 00272391 v 0103 ~ 05677744 n 0000 ~ 05677850 n 0000 | a general conscious awareness; "a sense of security"; "a sense of happiness"; "a sense of danger"; "a sense of self" -05677744 09 n 01 sense_of_direction 0 001 @ 05677504 n 0000 | an awareness of your orientation in space -05677850 09 n 01 sense_of_responsibility 0 001 @ 05677504 n 0000 | an awareness of your obligations -05677952 09 n 02 awareness 1 sentience 1 003 @ 05675130 n 0000 + 00117385 a 0201 + 01977155 a 0102 | state of elementary or undifferentiated consciousness; "the crash intruded on his awareness" -05678148 09 n 03 sensibility 0 esthesia 0 aesthesia 0 003 @ 05675130 n 0000 + 02102484 a 0101 ! 05680982 n 0101 | mental responsiveness and awareness -05678300 09 n 01 waking 0 004 @ 05675130 n 0000 + 00020133 v 0101 ! 05681117 n 0101 ~ 05678474 n 0000 | the state of remaining awake; "days of danger and nights of waking" -05678474 09 n 01 wakefulness 0 004 @ 05678300 n 0000 @ 14034177 n 0000 ~ 05678745 n 0000 ~ 05678855 n 0000 | a periodic state during which you are conscious and aware of the world; "consciousness during wakefulness in a sane person is pretty well ordered and familiar" -05678745 09 n 01 arousal 0 003 @ 05678474 n 0000 + 00018526 v 0103 + 00018813 v 0106 | awakening from sleep -05678855 09 n 01 vigil 0 001 @ 05678474 n 0000 | a period of sleeplessness -05678932 09 n 01 unconsciousness 0 015 @ 05669934 n 0000 + 00192332 a 0101 + 00571643 a 0101 ! 05675130 n 0101 ~ 05679305 n 0000 ~ 05679611 n 0000 ~ 05679800 n 0000 ~ 05679906 n 0000 ~ 05680193 n 0000 ~ 05680684 n 0000 ~ 05680839 n 0000 ~ 05680982 n 0000 ~ 05681334 n 0000 ~ 05681543 n 0000 ~ 05682055 n 0000 | a state lacking normal awareness of the self or environment -05679305 09 n 02 automatic_pilot 0 autopilot 0 001 @ 05678932 n 0000 | a cognitive state in which you act without self-awareness; "she went about her chores on automatic pilot"; "too much of the writing seems to have been done on automatic pilot"; "she talked and he dozed and my mind went on autopilot" -05679611 09 n 02 unknowingness 0 unawareness 0 004 @ 05678932 n 0000 + 00191603 a 0201 ~ 05673908 n 0000 ~ 05677097 n 0000 | unconsciousness resulting from lack of knowledge or attention -05679800 09 n 01 blackout 0 002 @ 05678932 n 0000 + 00023868 v 0103 | a momentary loss of consciousness -05679906 09 n 04 grogginess 0 stupor 0 stupefaction 0 semiconsciousness 0 003 @ 05678932 n 0000 + 00571291 a 0401 + 00875962 a 0205 | marginal consciousness; "his grogginess was caused as much by exhaustion as by the blows"; "someone stole his wallet while he was in a drunken stupor" -05680193 09 n 02 coma 0 comatoseness 0 005 @ 05678932 n 0000 + 00572202 a 0201 + 02844578 a 0201 ~ 05680423 n 0000 ~ 05680573 n 0000 | a state of deep and often prolonged unconsciousness; usually the result of disease or injury -05680423 09 n 02 diabetic_coma 0 Kussmaul's_coma 0 001 @ 05680193 n 0000 | coma that can develop in inadequately treated cases of diabetes mellitus -05680573 09 n 01 hepatic_coma 0 001 @ 05680193 n 0000 | coma that can occur in severe cases of liver disease -05680684 09 n 01 electrosleep 0 001 @ 05678932 n 0000 | unconsciousness brought about by the passage of a low voltage electric current through the brain -05680839 09 n 01 semicoma 0 001 @ 05678932 n 0000 | a mild comatose state; a coma from which the person can be roused by appropriate stimuli -05680982 09 n 01 insensibility 0 004 @ 05678932 n 0000 + 00572534 a 0101 + 02102796 a 0101 ! 05678148 n 0101 | a lack of sensibility -05681117 09 n 01 sleeping 0 004 @ 14024882 n 0000 + 00014742 v 0101 ! 05678300 n 0101 %p 05768553 n 0000 | the state of being asleep -05681252 09 n 01 hebetude 0 001 @ 14014990 n 0000 | mental lethargy or dullness -05681334 09 n 01 trance 0 003 @ 05678932 n 0000 ~ 05681701 n 0000 ~ 05681855 n 0000 | a state of mind in which consciousness is fragile and voluntary action is poor or missing; a state resembling deep sleep -05681543 09 n 01 semitrance 0 001 @ 05678932 n 0000 | a trancelike state in which the person can follow instructions but voluntary action is weak or absent -05681701 09 n 01 hypnotic_trance 0 001 @ 05681334 n 0000 | a trance induced by the use of hypnosis; the person accepts the suggestions of the hypnotist -05681855 09 n 02 religious_trance 0 ecstatic_state 0 001 @ 05681334 n 0000 | a trance induced by intense religious devotion; does not show reduced bodily functions that are typical of other trances -05682055 09 n 01 narcosis 0 003 @ 05678932 n 0000 + 02308840 a 0101 ~ 05682196 n 0000 | unconsciousness induced by narcotics or anesthesia -05682196 09 n 01 nitrogen_narcosis 0 001 @ 05682055 n 0000 | confused or stuporous state caused by high levels of dissolved nitrogen in the blood; "deep-sea divers can suffer nitrogen narcosis from breathing air under high pressure" -05682431 09 n 01 subconsciousness 0 002 @ 05669934 n 0000 + 00573093 a 0101 | a state of mind not immediately available to consciousness -05682570 09 n 02 curiosity 0 wonder 0 007 @ 05669934 n 0000 + 00729378 v 0201 + 01342572 a 0101 + 00664449 a 0101 ~ 05682798 n 0000 ~ 05682950 n 0000 ~ 05683197 n 0000 | a state in which you want to learn more about something -05682798 09 n 03 desire_to_know 0 lust_for_learning 0 thirst_for_knowledge 0 001 @ 05682570 n 0000 | curiosity that motivates investigation and study -05682950 09 n 02 interest 0 involvement 0 006 @ 05682570 n 0000 + 00600724 v 0201 + 02678438 v 0102 + 01821423 v 0101 ~ 05670343 n 0000 ~ 05670710 n 0000 | a sense of concern with and curiosity about someone or something; "an interest in music" -05683197 09 n 02 curiousness 0 inquisitiveness 0 006 @ 05682570 n 0000 + 00879259 a 0201 + 01342572 a 0201 + 01342572 a 0101 + 00664449 a 0101 ~ 05683390 n 0000 | a state of active curiosity -05683390 09 n 03 nosiness 0 prying 0 snoopiness 0 006 @ 05683197 n 0000 + 00665156 a 0304 + 02169119 v 0203 + 01630903 v 0201 + 00784874 v 0201 + 00665156 a 0101 | offensive inquisitiveness -05683582 09 n 05 confusion 0 mental_confusion 0 confusedness 0 muddiness 0 disarray 0 012 @ 05669934 n 0000 + 01684133 a 0301 + 01766133 a 0306 + 00435492 a 0301 + 00621734 v 0101 ~ 05684003 n 0000 ~ 05684440 n 0000 ~ 05684561 n 0000 ~ 05684739 n 0000 ~ 05684839 n 0000 ~ 05685030 n 0000 ~ 05685363 n 0000 | a mental state characterized by a lack of clear and orderly thought and behavior; "a confusion of impressions" -05684003 09 n 01 disorientation 1 003 @ 05683582 n 0000 + 02159741 v 0101 ~ 05684249 n 0000 | confusion (usually transient) about where you are and how to proceed; uncertainty as to direction; "his disorientation was the result of inattention" -05684249 09 n 01 culture_shock 0 001 @ 05684003 n 0000 | a condition of disorientation affecting someone who is suddenly exposed to an unfamiliar culture or way of life or set of attitudes -05684440 09 n 01 distraction 0 002 @ 05683582 n 0000 + 01764171 v 0106 | mental turmoil; "he drives me to distraction" -05684561 09 n 03 daze 0 fog 0 haze 0 005 @ 05683582 n 0000 + 00781644 a 0306 + 00781644 a 0204 + 02157731 v 0206 + 02162434 v 0103 | confusion characterized by lack of clarity -05684739 09 n 01 half-cock 0 001 @ 05683582 n 0000 | confusion resulting from lack of preparation -05684839 09 n 01 jamais_vu 0 001 @ 05683582 n 0000 | the experience of being unfamiliar with a person or situation that is actually very familiar; associated with certain types of epilepsy -05685030 09 n 07 bewilderment 0 obfuscation 0 puzzlement 0 befuddlement 0 mystification 0 bafflement 0 bemusement 0 009 @ 05683582 n 0000 + 01791232 v 0702 + 00622384 v 0607 + 00518653 v 0501 + 00621734 v 0404 + 01831308 v 0301 + 00622384 v 0305 + 00940214 v 0201 + 00622384 v 010a | confusion resulting from failure to understand -05685363 09 n 01 perplexity 0 005 @ 05683582 n 0000 + 01765643 a 0101 ~ 05685538 n 0000 ~ 05685879 n 0000 ~ 05686086 n 0000 | trouble or confusion resulting from complexity -05685538 09 n 04 mystery 0 enigma 0 secret 0 closed_book 0 008 @ 05685363 n 0000 + 00534524 a 0201 + 00102930 a 0201 + 00534524 a 0202 + 00939444 a 0105 + 00900071 a 0101 + 00622384 v 0106 + 00518653 v 0101 | something that baffles understanding and cannot be explained; "how it got out is a mystery"; "it remains one of nature's secrets" -05685879 09 n 03 tangle 0 snarl 0 maze 0 005 @ 05685363 n 0000 + 00255720 a 0203 + 00402831 v 0201 + 01462928 v 0204 + 01521124 v 0102 | something jumbled or confused; "a tangle of government regulations" -05686086 09 n 02 dilemma 0 quandary 0 002 @ 05685363 n 0000 ~ 05686272 n 0000 | state of uncertainty or perplexity especially as requiring a choice between equally unfavorable options -05686272 09 n 01 double_bind 0 002 @ 05686086 n 0000 ;c 06136258 n 0000 | (psychology) an unresolvable dilemma; situation in which a person receives contradictory messages from a person who is very powerful -05686481 09 n 01 cognitive_factor 0 004 @ 00023271 n 0000 ~ 05686690 n 0000 ~ 05686955 n 0000 ~ 05692419 n 0000 | something immaterial (as a circumstance or influence) that contributes to producing a result -05686690 09 n 02 divine_guidance 0 inspiration 0 003 @ 05686481 n 0000 ;c 06182144 n 0000 + 02055773 a 0201 | (theology) a special influence of a divinity on the minds of human beings; "they believe that the books of Scripture were written under divine guidance" -05686955 09 n 01 difficulty 2 010 @ 05686481 n 0000 ~ 05687338 n 0000 ~ 05688486 n 0000 ~ 05688630 n 0000 ~ 05688770 n 0000 ~ 05688907 n 0000 ~ 05688990 n 0000 ~ 05689109 n 0000 ~ 05689249 n 0000 ~ 06251424 n 0000 | a factor causing trouble in achieving a positive result or tending to produce a negative result; "serious difficulties were encountered in obtaining a pure reagent" -05687338 09 n 02 trouble 0 problem 0 010 @ 05686955 n 0000 + 01916784 a 0203 + 02458973 a 0101 + 02507736 v 0101 ~ 05687654 n 0000 ~ 05687832 n 0000 ~ 05687958 n 0000 ~ 05688030 n 0000 ~ 05688169 n 0000 ~ 05688397 n 0000 | a source of difficulty; "one trouble after another delayed the job"; "what's the problem?" -05687654 09 n 01 pressure_point 0 001 @ 05687338 n 0000 | where problems or difficulties are likely to occur; "a key pressure point in the controversy was the building permit" -05687832 09 n 01 can_of_worms 0 002 @ 05687338 n 0000 ;u 07075172 n 0000 | a source of unpredictable trouble and complexity -05687958 09 n 01 deep_water 0 001 @ 05687338 n 0000 | serious trouble -05688030 09 n 01 growing_pains 0 001 @ 05687338 n 0000 | problems that arise in enlarging an enterprise (especially in the early stages) -05688169 09 n 01 hydra 0 001 @ 05687338 n 0000 | trouble that cannot be overcome by a single effort because of its many aspects or its persistent and pervasive quality; "we may be facing a hydra that defies any easy solution" -05688397 09 n 01 matter 2 001 @ 05687338 n 0000 | a problem; "is anything the matter?" -05688486 09 n 01 facer 0 002 @ 05686955 n 0000 ;r 08860123 n 0000 | (a dated Briticism) a serious difficulty with which one is suddenly faced -05688630 09 n 01 killer 0 002 @ 05686955 n 0000 + 02198819 v 0101 | a difficulty that is hard to deal with; "that exam was a real killer" -05688770 09 n 01 kink 0 001 @ 05686955 n 0000 | a difficulty or flaw in a plan or operation; "there are still a few kinks to iron out" -05688907 09 n 01 pisser 0 001 @ 05686955 n 0000 | a very disagreeable difficulty -05688990 09 n 02 pitfall 0 booby_trap 0 001 @ 05686955 n 0000 | an unforeseen or unexpected or surprising difficulty -05689109 09 n 01 snorter 0 002 @ 05686955 n 0000 ;r 08860123 n 0000 | something outstandingly difficult; "the problem was a real snorter" -05689249 09 n 08 hindrance 0 hinderance 0 deterrent 0 impediment 0 balk 0 baulk 0 check 2 handicap 0 012 @ 05686955 n 0000 + 01085474 v 0801 + 02451370 v 0401 + 01764543 a 0301 + 00908099 v 0301 + 02557199 v 0104 ~ 05689645 n 0000 ~ 05689801 n 0000 ~ 05689909 n 0000 ~ 05690091 n 0000 ~ 05690269 n 0000 ~ 05690684 n 0000 | something immaterial that interferes with or delays action or progress -05689645 09 n 02 albatross 0 millstone 0 001 @ 05689249 n 0000 | (figurative) something that hinders or handicaps; "she was an albatross around his neck" -05689801 09 n 01 bind 0 002 @ 05689249 n 0000 + 00885217 v 0102 | something that hinders as if with bonds -05689909 09 n 01 diriment_impediment 0 002 @ 05689249 n 0000 ;c 08453299 n 0000 | (canon law) an impediment that invalidates a marriage (such as the existence of a prior marriage) -05690091 09 n 01 drag 0 001 @ 05689249 n 0000 | something that slows or delays progress; "taxation is a drag on the economy"; "too many laws are a drag on the use of new land" -05690269 09 n 02 obstacle 0 obstruction 0 005 @ 05689249 n 0000 ~ 05690916 n 0000 ~ 05691144 n 0000 ~ 05691241 n 0000 ~ 05691376 n 0000 | something immaterial that stands in the way and must be circumvented or surmounted; "lack of imagination is an obstacle to one's advancement"; "the poverty of a district is an obstacle to good education"; "the filibuster was a major obstruction to the success of their plan" -05690684 09 n 01 straitjacket 0 001 @ 05689249 n 0000 | anything immaterial that severely hinders or confines; "they defected because Russian dance was in a straitjacket"; "the government is operating in an economic straitjacket" -05690916 09 n 02 barrier 0 roadblock 0 003 @ 05690269 n 0000 ~ 05691492 n 0000 ~ 05691963 n 0000 | any condition that makes it difficult to make progress or to achieve an objective; "intolerance is a barrier to understanding" -05691144 09 n 04 hang-up 1 hitch 0 rub 0 snag 0 001 @ 05690269 n 0000 | an unforeseen obstacle -05691241 09 n 01 hurdle 0 001 @ 05690269 n 0000 | an obstacle that you are expected to overcome; "the last hurdle before graduation" -05691376 09 n 02 stymie 0 stymy 0 002 @ 05690269 n 0000 + 02557199 v 0105 | a thwarting and distressing situation -05691492 09 n 01 ideological_barrier 0 004 @ 05690916 n 0000 ~ 05691689 n 0000 ~ 05692094 n 0000 ~ 05692234 n 0000 | a barrier to cooperation or interaction resulting from conflicting ideologies -05691689 09 n 01 iron_curtain 0 001 @ 05691492 n 0000 | an impenetrable barrier to communication or information especially as imposed by rigid censorship and secrecy; used by Winston Churchill in 1946 to describe the demarcation between democratic and communist countries -05691963 09 n 01 language_barrier 0 001 @ 05690916 n 0000 | barrier to communication resulting from speaking different languages -05692094 09 n 01 bamboo_curtain 0 001 @ 05691492 n 0000 | an ideological barrier around communist China especially in the 1950s and 1960s -05692234 09 n 05 color_bar 0 colour_bar 0 color_line 0 colour_line 0 Jim_Crow 0 001 @ 05691492 n 0000 | barrier preventing blacks from participating in various activities with whites -05692419 09 n 05 determinant 0 determiner 0 determinative 0 determining_factor 0 causal_factor 0 007 @ 05686481 n 0000 + 00684782 a 0303 + 00947077 v 0203 + 00684782 a 0102 + 00701040 v 0101 ~ 05692758 n 0000 ~ 05692910 n 0000 | a determining or causal element or factor; "education is an important determinant of one's outlook on life" -05692758 09 n 02 clincher 0 decisive_factor 0 002 @ 05692419 n 0000 + 00763713 v 0101 | a point or fact or remark that settles something conclusively -05692910 09 n 01 influence 0 008 @ 05692419 n 0000 + 02536557 v 0101 ~ 05693206 n 0000 ~ 05693383 n 0000 ~ 05693537 n 0000 ~ 05693669 n 0000 ~ 05693919 n 0000 ~ 05694791 n 0000 | a cognitive factor that tends to have an effect on what you do; "her wishes had a great influence on his thinking" -05693206 09 n 01 imponderable 0 002 @ 05692910 n 0000 ~ 05869407 n 0000 | a factor whose effects cannot be accurately assessed; "human behavior depends on many imponderables" -05693383 09 n 01 imprint 0 002 @ 05692910 n 0000 + 02430922 v 0101 | a distinctive influence; "English stills bears the imprint of the Norman invasion" -05693537 09 n 01 morale_builder 0 001 @ 05692910 n 0000 | something or someone who influences by building or strengthening morale -05693669 09 n 02 pestilence 0 canker 0 002 @ 05692910 n 0000 + 01611329 a 0104 | a pernicious and malign influence that is hard to get rid of; "racism is a pestilence at the heart of the nation"; "according to him, I was the canker in their midst" -05693919 09 n 01 support 0 004 @ 05692910 n 0000 + 02556126 v 0101 ~ 05694232 n 0000 ~ 05694527 n 0000 | something providing immaterial assistance to a person or cause or interest; "the policy found little public support"; "his faith was all the support he needed"; "the team enjoyed the support of their fans" -05694232 09 n 06 anchor 0 mainstay 0 keystone 0 backbone 0 linchpin 0 lynchpin 0 002 @ 05693919 n 0000 + 01304944 v 0101 | a central cohesive source of support and stability; "faith is his anchor"; "the keystone of campaign reform was the ban on soft money"; "he is the linchpin of this firm" -05694527 09 n 01 lifeline 0 001 @ 05693919 n 0000 | support that enables people to survive or to continue doing something (often by providing an essential connection); "the airlift provided a lifeline for Berlin"; "she offered me a lifeline in my time of grief" -05694791 09 n 02 temptation 0 enticement 0 006 @ 05692910 n 0000 + 00782527 v 0201 + 01807529 v 0101 ~ 05695002 n 0000 ~ 05695232 n 0000 ~ 05695446 n 0000 | something that seduces or has the quality to seduce -05695002 09 n 01 forbidden_fruit 0 001 @ 05694791 n 0000 | originally an apple from the tree of knowledge of good and evil in the Garden of Eden; it is now used to refer to anything that is tempting but dangerous (as sexuality) -05695232 09 n 05 bait 0 come-on 0 hook 0 lure 0 sweetener 0 006 @ 05694791 n 0000 + 00519854 v 0501 + 00782527 v 0402 + 00783042 v 0301 + 01165290 v 0302 + 02577877 v 0101 | anything that serves as an enticement -05695446 09 n 01 allurement 0 001 @ 05694791 n 0000 | attractiveness; "its allurement was its remoteness" -05695554 09 n 01 equivalent 0 004 @ 00023271 n 0000 + 00890351 a 0101 ~ 05695806 n 0000 ~ 05696425 n 0000 | a person or thing equal to another in value or measure or force or effect or significance etc; "send two dollars or the equivalent in stamps" -05695806 09 n 03 counterpart 0 opposite_number 0 vis-a-vis 0 004 @ 05695554 n 0000 ~ 05696020 n 0000 ~ 05696199 n 0000 ~ 05696297 n 0000 | a person or thing having the same function or characteristics as another -05696020 09 n 01 match 0 003 @ 05695806 n 0000 + 00456596 v 0101 + 00456740 v 0101 | something that resembles or harmonizes with; "that tie makes a good match with your jacket" -05696199 09 n 01 mismatch 0 002 @ 05695806 n 0000 + 01294026 v 0101 | a bad or unsuitable match -05696297 09 n 01 complement 0 002 @ 05695806 n 0000 + 00049016 a 0101 | either of two parts that mutually complete each other -05696425 09 n 02 substitute 0 replacement 0 009 @ 05695554 n 0000 + 02405390 v 0202 + 00162688 v 0201 + 01853934 a 0103 + 02258617 v 0101 + 02257767 v 0101 ~ 05696701 n 0000 ~ 05696803 n 0000 ~ 05696941 n 0000 | a person or thing that takes or can take the place of another -05696701 09 n 01 ersatz 0 001 @ 05696425 n 0000 | an artificial or inferior substitute or imitation -05696803 09 n 01 successor 0 002 @ 05696425 n 0000 + 02406585 v 0101 | a thing or person that immediately replaces something or someone -05696941 09 n 01 succedaneum 0 002 @ 05696425 n 0000 ;c 06043075 n 0000 | (medicine) something that can be used as a substitute (especially any medicine that may be taken in place of another) -05697135 09 n 01 certainty 0 007 @ 05669934 n 0000 ! 05698247 n 0102 = 00336831 a 0000 = 00337404 a 0000 ~ 05697363 n 0000 ~ 05697789 n 0000 ~ 05697976 n 0000 | the state of being certain; "his certainty reassured the others" -05697363 09 n 06 assurance 0 self-assurance 0 confidence 0 self-confidence 0 authority 0 sureness 0 007 @ 05697135 n 0000 + 02461586 a 0601 + 00336831 a 0602 + 00339742 a 0402 + 00338817 a 0301 = 00336831 a 0000 = 00337404 a 0000 | freedom from doubt; belief in yourself and your abilities; "his assurance in his superiority did not make him popular"; "after that failure he lost his confidence"; "she spoke with authority" -05697789 09 n 03 certitude 0 cocksureness 0 overconfidence 0 003 @ 05697135 n 0000 + 00339288 a 0302 + 00339288 a 0201 | total certainty or greater certainty than circumstances warrant -05697976 09 n 02 reliance 0 trust 0 003 @ 05697135 n 0000 + 00721098 v 0202 + 00688377 v 0103 | certainty based on past experience; "he wrote the paper with considerable reliance on the work of other scientists"; "he put more trust in his own two legs than in the gun" -05698247 09 n 06 doubt 0 uncertainty 0 incertitude 0 dubiety 0 doubtfulness 0 dubiousness 0 013 @ 05669934 n 0000 + 00338669 a 0601 + 00338013 a 0602 + 02130672 a 0501 + 00338013 a 0501 ! 05697135 n 0201 + 00687295 v 0101 ~ 05698620 n 0000 ~ 05698791 n 0000 ~ 05698982 n 0000 ~ 05699172 n 0000 ~ 05699600 n 0000 ~ 05699770 n 0000 | the state of being unsure of something -05698620 09 n 03 mental_reservation 0 reservation 0 arriere_pensee 0 001 @ 05698247 n 0000 | an unstated doubt that prevents you from accepting something wholeheartedly -05698791 09 n 04 misgiving 0 mistrust 0 distrust 0 suspicion 0 005 @ 05698247 n 0000 + 02464277 a 0403 + 00687926 v 0403 + 00687926 v 0301 + 00687926 v 0202 | doubt about someone's honesty -05698982 09 n 04 incredulity 0 disbelief 0 skepticism 0 mental_rejection 0 004 @ 05698247 n 0000 + 00647247 a 0302 + 02463847 a 0303 + 00647070 a 0101 | doubt about the truth of something -05699172 09 n 03 indecision 0 indecisiveness 0 irresolution 0 003 @ 05698247 n 0000 + 00686081 a 0201 ~ 05699434 n 0000 | doubt concerning two or more possible alternatives or courses of action; "his indecision was only momentary but the opportunity was lost" -05699434 09 n 03 hesitation 0 vacillation 0 wavering 0 004 @ 05699172 n 0000 + 02640440 v 0302 + 02706046 v 0203 + 02640440 v 0101 | indecision in speech or action -05699600 09 n 01 peradventure 0 001 @ 05698247 n 0000 | doubt or uncertainty as to whether something is the case; "this proves beyond peradventure that he is innocent" -05699770 09 n 01 suspense 0 001 @ 05698247 n 0000 | an uncertain cognitive state; "the matter remained in suspense for several years" -05699906 09 n 02 morbidity 0 morbidness 0 002 @ 05669934 n 0000 + 02559862 a 0101 | an abnormally gloomy or unhealthy state of mind; "his fear of being alone verges on morbidity" -05700087 09 n 04 preoccupation 0 preoccupancy 0 absorption 0 engrossment 0 010 @ 05669934 n 0000 + 00601043 v 0405 + 00600370 v 0402 + 00600370 v 0301 + 02419159 a 0204 + 00544478 a 0203 + 01783394 v 0201 + 01783394 v 0101 ~ 05700625 n 0000 ~ 05701209 n 0000 | the mental state of being preoccupied by something -05700401 09 n 02 obsession 0 fixation 0 006 @ 05836921 n 0000 + 02538365 v 0201 + 02170861 v 0201 + 01585022 a 0101 + 01831143 v 0101 + 01783214 v 0102 | an unhealthy and compulsive preoccupation with something or someone -05700625 09 n 02 abstractedness 0 abstraction 1 003 @ 05700087 n 0000 + 00165171 a 0103 ~ 05700793 n 0000 | preoccupation with something to the exclusion of all else -05700793 09 n 02 reverie 0 revery 0 003 @ 05700625 n 0000 ~ 05700925 n 0000 ~ 05701107 n 0000 | an abstracted state of absorption -05700925 09 n 01 dream 4 002 @ 05700793 n 0000 + 00165585 a 0101 | a state of mind characterized by abstraction and release from reality; "he went about his work as if in a dream" -05701107 09 n 01 brown_study 0 001 @ 05700793 n 0000 | a state of deep absorption or thoughtfulness -05701209 09 n 01 absentmindedness 0 002 @ 05700087 n 0000 + 00165171 a 0102 | preoccupation so great that the ordinary demands on attention are ignored -05701363 09 n 05 process 0 cognitive_process 0 mental_process 0 operation 0 cognitive_operation 0 005 @ 00023271 n 0000 ;c 06136258 n 0000 + 00341285 v 0401 ~ 05701944 n 0000 ~ 05770664 n 0000 | (psychology) the performance of some composite cognitive activity; an operation that affects mental contents; "the process of thinking"; "the cognitive operation of remembering" -05701738 09 n 02 process 1 unconscious_process 0 004 @ 00023271 n 0000 ~ 00285387 n 0000 ~ 06246700 n 0000 ~ 13459322 n 0000 | a mental process that you are not directly aware of; "the process of denial" -05701944 09 n 01 basic_cognitive_process 0 012 @ 05701363 n 0000 ~ 05702275 n 0000 ~ 05706228 n 0000 ~ 05707495 n 0000 ~ 05708432 n 0000 ~ 05708658 n 0000 ~ 05726093 n 0000 ~ 05732756 n 0000 ~ 05748054 n 0000 ~ 05752544 n 0000 ~ 05760202 n 0000 ~ 05765159 n 0000 | cognitive processes involved in obtaining and storing knowledge -05702275 09 n 02 attention 0 attending 0 009 @ 05701944 n 0000 + 02170427 v 0101 ! 05706228 n 0101 ~ 05702726 n 0000 ~ 05703070 n 0000 ~ 05703205 n 0000 ~ 05703307 n 0000 ~ 05703429 n 0000 ~ 05703803 n 0000 | the process whereby a person concentrates on some features of the environment to the (relative) exclusion of others -05702602 09 n 01 attention_span 0 001 @ 15134340 n 0000 | the length of time you can concentrate on some idea or activity -05702726 09 n 04 attentiveness 0 heed 0 regard 1 paying_attention 0 007 @ 05702275 n 0000 + 02571901 v 0201 + 00163592 a 0101 ! 05706375 n 0101 = 01193714 a 0000 = 01194483 a 0000 ~ 05704096 n 0000 | paying particular notice (as to children or helpless people); "his attentiveness to her wishes"; "he spends without heed to the consequences" -05703070 09 n 01 clock-watching 0 001 @ 05702275 n 0000 | paying excessive attention to the clock (in anticipation of stopping work) -05703205 09 n 01 ear 1 001 @ 05702275 n 0000 | attention to what is said; "he tried to get her ear" -05703307 09 n 01 eye 1 002 @ 05702275 n 0000 + 02167052 v 0101 | attention to what is seen; "he tried to catch her eye" -05703429 09 n 03 notice 0 observation 0 observance 0 013 @ 05702275 n 0000 + 00164462 a 0301 + 02154508 v 0302 + 02455407 v 0202 + 02118933 v 0203 + 02169352 v 0201 + 01020005 v 0202 + 00732552 v 0201 + 01059123 v 0101 + 02118476 v 0101 + 02154508 v 0105 ~ 05703956 n 0000 ~ 05710573 n 0000 | the act of noticing or paying attention; "he escaped the notice of the police" -05703803 09 n 01 notice 1 002 @ 05702275 n 0000 + 01059123 v 0101 | polite or favorable attention; "his hard work soon attracted the teacher's notice" -05703956 09 n 01 mind 3 004 @ 05703429 n 0000 + 02571901 v 0102 + 02437707 v 0102 + 00724492 v 0101 | attention; "don't pay him any mind" -05704096 09 n 02 advertence 0 advertency 0 005 @ 05702726 n 0000 + 00164308 a 0201 + 02170427 v 0203 + 00164308 a 0101 + 02170427 v 0103 | the process of being heedful -05704266 09 n 04 concentration 0 engrossment 1 absorption 1 immersion 0 009 @ 05650579 n 0000 + 00601043 v 0402 + 00601043 v 0306 + 00601043 v 0205 + 00600370 v 0202 + 00722232 v 0101 ~ 05704694 n 0000 ~ 05705184 n 0000 ~ 05705355 n 0000 | complete attention; intense mental effort -05704550 09 n 01 mental_note 0 001 @ 05650579 n 0000 | special attention with intent to remember; "he made a mental note to send her flowers" -05704694 09 n 06 focus 0 focusing 0 focussing 0 focal_point 0 direction 1 centering 0 008 @ 05704266 n 0000 + 02676496 v 0606 + 00722232 v 0603 + 00722232 v 0302 + 00722232 v 0202 + 00731789 v 0105 + 00722232 v 0102 ~ 05705075 n 0000 | the concentration of attention or energy on something; "the focus of activity shifted to molecular biology"; "he had no direction in his life" -05705075 09 n 01 particularism 0 002 @ 05704694 n 0000 + 02860719 a 0101 | a focus on something particular -05705184 09 n 01 specialism 0 003 @ 05704266 n 0000 + 10632576 n 0101 + 10631941 n 0101 | the concentration of your efforts on a particular field of study or occupation -05705355 09 n 01 study 4 002 @ 05704266 n 0000 + 00704388 v 0101 | a state of deep mental absorption; "she is in a deep study" -05705484 09 n 01 hang-up 2 002 @ 05836921 n 0000 ;u 07075172 n 0000 | an emotional preoccupation -05705583 09 n 01 hobbyhorse 0 001 @ 05836921 n 0000 | a topic to which one constantly reverts; "don't get him started on his hobbyhorse" -05705722 09 n 04 watchfulness 0 wakefulness 1 vigilance 0 alertness 0 006 @ 05650579 n 0000 + 00190653 a 0401 + 00091764 a 0303 + 00091764 a 0204 + 00091311 a 0102 ~ 05706076 n 0000 | the process of paying close and continuous attention; "wakefulness, watchfulness, and bellicosity make a good hunter"; "vigilance is especially susceptible to fatigue" -05706076 09 n 01 jealousy 0 001 @ 05705722 n 0000 | zealous vigilance; "cherish their official political freedom with fierce jealousy"-Paul Blanshard -05706228 09 n 01 inattention 0 005 @ 05701944 n 0000 ! 05702275 n 0101 ~ 05706375 n 0000 ~ 05706547 n 0000 ~ 05706629 n 0000 | lack of attention -05706375 09 n 02 inattentiveness 0 heedlessness 0 003 @ 05706228 n 0000 + 01193714 a 0201 ! 05702726 n 0101 | a lack of attentiveness (as to children or helpless people) -05706547 09 n 01 distraction 1 001 @ 05706228 n 0000 | an obstacle to attention -05706629 09 n 02 disregard 0 neglect 0 006 @ 05706228 n 0000 + 00616857 v 0201 + 00616153 v 0201 + 00800930 v 0102 + 00616857 v 0103 ~ 05706954 n 0000 | lack of attention and due care -05706815 09 n 02 oversight 0 inadvertence 0 001 @ 05706954 n 0000 | an unintentional omission resulting from failure to notice something -05706954 09 n 01 omission 0 005 @ 05706629 n 0000 + 00614999 v 0103 ~ 05706815 n 0000 ~ 05707146 n 0000 ~ 05707269 n 0000 | neglecting to do something; leaving out or passing over something -05707146 09 n 01 pretermission 0 003 @ 05706954 n 0000 + 00617293 v 0101 + 00614999 v 0102 | letting pass without notice -05707269 09 n 03 exception 0 exclusion 0 elision 0 004 @ 05706954 n 0000 + 00615421 v 0301 + 00615774 v 0201 + 00615774 v 0102 | a deliberate act of omission; "with the exception of the children, everyone was told the news" -05707495 09 n 01 intuition 0 007 @ 05701944 n 0000 + 00590761 v 0101 ~ 05707718 n 0000 ~ 05708030 n 0000 ~ 05708207 n 0000 ~ 05708322 n 0000 ~ 05797473 n 0000 | instinctive knowing (without the use of rational processes) -05707718 09 n 02 feeling 0 intuitive_feeling 0 002 @ 05707495 n 0000 ~ 05707885 n 0000 | an intuitive understanding of something; "he had a great feeling for music" -05707885 09 n 01 sprachgefuhl 0 001 @ 05707718 n 0000 | an intuitive feeling for the natural idiom of a language; "Dubyuh has no sprachgefuhl" -05708030 09 n 01 gnosis 0 003 @ 05707495 n 0000 + 02849594 a 0101 + 01305792 a 0101 | intuitive knowledge of spiritual truths; said to have been possessed by ancient Gnostics -05708207 09 n 02 insight 0 sixth_sense 0 001 @ 05707495 n 0000 | grasping the inner nature of things intuitively -05708322 09 n 02 immediacy 0 immediate_apprehension 0 001 @ 05707495 n 0000 | immediate intuitive awareness -05708432 09 n 01 perception 0 009 @ 05701944 n 0000 + 00591519 v 0101 ~ 05708818 n 0000 ~ 05710687 n 0000 ~ 05710860 n 0000 ~ 05711503 n 0000 ~ 05712076 n 0000 ~ 05721180 n 0000 ~ 05722427 n 0000 | the process of perceiving -05708658 09 n 01 apperception 0 002 @ 05701944 n 0000 + 02107097 v 0101 | the process whereby perceived qualities of an object are related to past experience -05708818 09 n 02 constancy 0 perceptual_constancy 0 006 @ 05708432 n 0000 ;c 06136258 n 0000 ~ 05709148 n 0000 ~ 05709343 n 0000 ~ 05709507 n 0000 ~ 05709766 n 0000 | (psychology) the tendency for perceived objects to give rise to very similar perceptual experiences in spite of wide variations in the conditions of observation -05709148 09 n 01 brightness_constancy 0 001 @ 05708818 n 0000 | the tendency for a visual object to be perceived as having the same brightness under widely different conditions of illumination -05709343 09 n 02 color_constancy 0 colour_constancy 0 001 @ 05708818 n 0000 | the tendency for a color to look the same under widely different viewing conditions -05709507 09 n 01 shape_constancy 0 001 @ 05708818 n 0000 | the tendency to perceive the shape of a rigid object as constant despite differences in the viewing angle (and consequent differences in the shape of the pattern projected on the retina of the eye) -05709766 09 n 01 size_constancy 0 001 @ 05708818 n 0000 | the tendency to perceive the veridical size of a familiar object despite differences in their distance (and consequent differences in the size of the pattern projected on the retina of the eye) -05710020 09 n 01 perception 3 004 @ 00023271 n 0000 ~ 05710210 n 0000 ~ 05710356 n 0000 ~ 05710481 n 0000 | knowledge gained by perceiving; "a man admired for the depth of his perception" -05710210 09 n 02 discernment 2 perceptiveness 1 003 @ 05710020 n 0000 + 01744111 a 0201 + 02193194 v 0105 | perception of that which is obscure -05710356 09 n 02 penetration 0 insight 2 002 @ 05710020 n 0000 + 00728954 v 0101 | clear or deep perception of a situation -05710481 09 n 01 cognizance 2 001 @ 05710020 n 0000 | range or scope of what is perceived -05710573 09 n 01 remark 0 002 @ 05703429 n 0000 + 01058574 v 0103 | explicit notice; "it passed without remark" -05710687 09 n 02 detection 0 sensing 0 001 @ 05708432 n 0000 | the perception that something has occurred or some state exists; "early detection can often lead to a cure" -05710860 09 n 03 visual_perception 0 beholding 0 seeing 2 007 @ 05708432 n 0000 + 02129289 v 0301 ~ 05711084 n 0000 ~ 05711206 n 0000 ~ 05711308 n 0000 ~ 05711414 n 0000 ~ 05936561 n 0000 | perception by means of the eyes -05711084 09 n 01 contrast 0 001 @ 05710860 n 0000 | the perceptual effect of the juxtaposition of very different colors -05711206 09 n 01 face_recognition 0 001 @ 05710860 n 0000 | the visual perception of familiar faces -05711308 09 n 01 object_recognition 0 001 @ 05710860 n 0000 | the visual perception of familiar objects -05711414 09 n 01 visual_space 0 001 @ 05710860 n 0000 | the visual perception of space -05711503 09 n 02 auditory_perception 0 sound_perception 0 003 @ 05708432 n 0000 ~ 05711674 n 0000 ~ 05711791 n 0000 | the perception of sound as a meaningful phenomenon -05711674 09 n 01 speech_perception 0 001 @ 05711503 n 0000 | the auditory perception (and comprehension) of speech -05711791 09 n 01 musical_perception 0 002 @ 05711503 n 0000 ~ 05711915 n 0000 | the auditory perception of musical sounds -05711915 09 n 02 melody 0 tonal_pattern 0 003 @ 05711791 n 0000 + 01502195 a 0102 + 01501113 a 0101 | the perception of pleasant arrangements of musical notes -05712076 09 n 06 sensation 0 esthesis 0 aesthesis 0 sense_experience 0 sense_impression 0 sense_datum 0 009 @ 05708432 n 0000 + 02106006 v 0102 ~ 05712426 n 0000 ~ 05713347 n 0000 ~ 05713524 n 0000 ~ 05713737 n 0000 ~ 05715283 n 0000 ~ 05718254 n 0000 ~ 05720602 n 0000 | an unelaborated elementary awareness of stimulation; "a sensation of touch" -05712426 09 n 02 threshold 0 limen 0 003 @ 05712076 n 0000 ~ 05712559 n 0000 ~ 05712892 n 0000 | the smallest detectable sensation -05712559 09 n 01 absolute_threshold 0 002 @ 05712426 n 0000 ~ 05712698 n 0000 | the lowest level of stimulation that a person can detect -05712698 09 n 01 pain_threshold 0 001 @ 05712559 n 0000 | the lowest intensity of stimulation at which pain is experienced; "some people have much higher pain thresholds than do other people" -05712892 09 n 04 difference_threshold 0 differential_threshold 0 difference_limen 0 differential_limen 0 002 @ 05712426 n 0000 ~ 05713101 n 0000 | the smallest change in stimulation that a person can detect -05713101 09 n 02 just-noticeable_difference 0 jnd 0 002 @ 05712892 n 0000 ;c 06139491 n 0000 | (psychophysics) the difference between two stimuli that (under properly controlled experimental conditions) is detected as often as it is undetected -05713347 09 n 01 masking 0 001 @ 05712076 n 0000 | the blocking of one sensation resulting from the presence of another sensation; "he studied auditory masking by pure tones" -05713524 09 n 02 vision 2 visual_sensation 0 001 @ 05712076 n 0000 | the perceptual experience of seeing; "the runners emerged from the trees into his clear vision"; "he had a visual sensation of intense light" -05713737 09 n 05 smell 2 odor 0 odour 0 olfactory_sensation 0 olfactory_perception 0 010 @ 05712076 n 0000 + 02125641 v 0302 + 02125641 v 0201 + 02124332 v 0101 + 02123672 v 0101 + 02124748 v 0101 ~ 05714161 n 0000 ~ 05714466 n 0000 ~ 05714894 n 0000 ~ 05717266 n 0000 | the sensation that results when olfactory receptors in the nose are stimulated by particular chemicals in gaseous form; "she loved the smell of roses" -05714161 09 n 01 scent 0 004 @ 05713737 n 0000 + 02125223 v 0101 + 02125641 v 0103 ~ 05714332 n 0000 | an odor left in passing by which a person or animal can be traced -05714332 09 n 01 musk 0 002 @ 05714161 n 0000 + 01053046 a 0101 | the scent of a greasy glandular secretion from the male musk deer -05714466 09 n 04 aroma 1 fragrance 0 perfume 0 scent 1 010 @ 05713737 n 0000 + 00043480 v 0402 + 02125641 v 0403 + 00043480 v 0301 + 02126382 v 0301 + 01052248 a 0201 + 01052428 a 0101 + 02126382 v 0102 + 02126382 v 0103 ~ 05714745 n 0000 | a distinctive odor that is pleasant -05714745 09 n 01 incense 0 002 @ 05714466 n 0000 + 02126686 v 0102 | the pleasing scent produced when incense is burned; "incense filled the room" -05714894 09 n 08 malodor 0 malodour 0 stench 0 stink 0 reek 0 fetor 0 foetor 0 mephitis 0 006 @ 05713737 n 0000 + 01054204 a 0802 + 02124106 v 0501 + 01053144 a 0405 + 02124106 v 0402 ~ 05715150 n 0000 | a distinctive odor that is offensively unpleasant -05715150 09 n 02 niff 0 pong 0 004 @ 05714894 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 + 01054367 a 0101 | an unpleasant smell -05715283 09 n 05 taste 2 taste_sensation 0 gustatory_sensation 0 taste_perception 0 gustatory_perception 0 014 @ 05712076 n 0000 + 02192992 v 0101 + 02194495 v 0102 + 02191546 v 0101 + 02194286 v 0101 ~ 05715864 n 0000 ~ 05716577 n 0000 ~ 05716744 n 0000 ~ 05717115 n 0000 ~ 05717342 n 0000 ~ 05717549 n 0000 ~ 05717747 n 0000 ~ 05717953 n 0000 ~ 05718118 n 0000 | the sensation that results when taste buds in the tongue and throat convey information about the chemical composition of a soluble stimulus; "the candy left him with a bad taste"; "the melon had a delicious taste" -05715864 09 n 09 relish 0 flavor 0 flavour 0 sapidity 0 savor 0 savour 0 smack 0 nip 0 tang 0 017 @ 05715283 n 0000 + 02369460 a 0904 + 02398129 a 0801 + 02194495 v 0701 + 02398378 a 0603 + 00133669 a 0603 + 02193974 v 0602 + 02194138 v 0602 + 02194286 v 0603 + 02194138 v 0501 + 02194286 v 0502 + 02396911 a 0304 + 02191766 v 0303 + 02396911 a 0203 + 02191766 v 0202 ~ 05716342 n 0000 ~ 05716462 n 0000 | the taste experience when a savoury condiment is taken into the mouth -05716342 09 n 01 lemon 0 002 @ 05715864 n 0000 + 02369460 a 0101 | a distinctive tart flavor characteristic of lemons -05716462 09 n 01 vanilla 0 001 @ 05715864 n 0000 | a distinctive fragrant flavor characteristic of vanilla beans -05716577 09 n 03 sweet 0 sweetness 0 sugariness 0 003 @ 05715283 n 0000 + 02337667 a 0301 + 02368336 a 0201 | the taste experience when sugar dissolves in the mouth -05716744 09 n 03 sour 0 sourness 0 tartness 0 005 @ 05715283 n 0000 + 02399014 a 0301 + 02399014 a 0201 + 02196690 v 0101 ~ 05716961 n 0000 | the taste experience when vinegar or lemon juice is taken into the mouth -05716961 09 n 02 acidity 0 acidulousness 0 002 @ 05716744 n 0000 + 02369335 a 0204 | the taste experience when something acidic is taken into the mouth -05717115 09 n 02 bitter 0 bitterness 0 002 @ 05715283 n 0000 + 02396098 a 0101 | the taste experience when quinine or coffee is taken into the mouth -05717266 09 n 01 acridity 0 001 @ 05713737 n 0000 | having an acrid smell -05717342 09 n 03 salt 0 saltiness 0 salinity 0 005 @ 05715283 n 0000 + 02398773 a 0201 + 02398773 a 0101 + 00213353 v 0101 + 02196214 v 0101 | the taste experience when common salt is taken into the mouth -05717549 09 n 02 astringency 0 astringence 0 003 @ 05715283 n 0000 + 02369027 a 0203 + 02369027 a 0103 | a sharp astringent taste; the taste experience when a substance causes the mouth to pucker -05717747 09 n 01 finish 0 002 @ 05715283 n 0000 ;c 05822612 n 0000 | (wine tasting) the taste of a wine on the back of the tongue (as it is swallowed); "the wine has a nutty flavor and a pleasant finish" -05717953 09 n 01 flatness 0 002 @ 05715283 n 0000 + 02399595 a 0102 | a deficiency in flavor; "it needed lemon juice to sharpen the flatness of the dried lentils" -05718118 09 n 01 mellowness 0 002 @ 05715283 n 0000 + 01493636 a 0101 | a taste (especially of fruit) that is ripe and of full flavor -05718254 09 n 02 sound 0 auditory_sensation 0 009 @ 05712076 n 0000 + 02179518 v 0101 + 02180529 v 0101 + 02135048 v 0101 ~ 05718556 n 0000 ~ 05718935 n 0000 ~ 05719605 n 0000 ~ 05720248 n 0000 ~ 05720521 n 0000 | the subjective sensation of hearing something; "he strained to hear the faint sounds" -05718556 09 n 02 music 0 euphony 0 013 @ 05718254 n 0000 + 02951702 a 0201 + 00300738 a 0202 + 01455221 a 0201 + 00300738 a 0201 + 02951702 a 0202 + 01501113 a 0103 ~ 05719466 n 0000 -c 01707128 v 0000 -c 01707306 v 0000 -c 01707737 v 0000 -c 01707925 v 0000 -c 01708113 v 0000 | any agreeable (pleasing and harmonious) sounds; "he fell asleep to the music of the wind chimes" -05718935 09 n 01 music 1 014 @ 05718254 n 0000 ;c 07020895 n 0000 + 01504625 a 0101 + 10340312 n 0101 + 10339966 n 0101 ~ 05719325 n 0000 -c 00170500 v 0000 -c 00482180 v 0000 -c 00483656 v 0000 -c 01651110 v 0000 -c 01706889 v 0000 -c 01733994 v 0000 -c 01734131 v 0000 -c 01734300 v 0000 | (music) the sounds produced by singers or musical instruments (or reproductions of such sounds) -05719325 09 n 01 piano_music 0 001 @ 05718935 n 0000 | the sound of music produced by a piano; "he thought he heard piano music next door" -05719466 09 n 01 music_of_the_spheres 0 001 @ 05718556 n 0000 | an inaudible music that Pythagoras thought was produced by the celestial -05719605 09 n 02 tone 0 pure_tone 0 003 @ 05718254 n 0000 + 02437148 a 0101 ~ 05719804 n 0000 | a steady sound without overtones; "they tested his hearing with pure tones of different frequencies" -05719804 09 n 01 harmonic 0 004 @ 05719605 n 0000 + 02738346 a 0101 ~ 05719958 n 0000 ~ 05720093 n 0000 | a tone that is a component of a complex sound -05719958 09 n 03 fundamental 0 fundamental_frequency 0 first_harmonic 0 001 @ 05719804 n 0000 | the lowest tone of a harmonic series -05720093 09 n 03 overtone 0 partial 1 partial_tone 0 001 @ 05719804 n 0000 | a harmonic with a frequency that is a multiple of the fundamental frequency -05720248 09 n 03 noise 0 dissonance 0 racket 0 004 @ 05718254 n 0000 + 01164561 a 0202 + 00567604 v 0202 + 02172888 v 0103 | the auditory experience of sound that lacks musical quality; sound that is a disagreeable auditory experience; "modern music is just noise to me" -05720521 09 n 01 dub 0 001 @ 05718254 n 0000 | the new sounds added by dubbing -05720602 09 n 02 synesthesia 0 synaesthesia 0 004 @ 05712076 n 0000 + 02808126 a 0202 + 02808126 a 0101 ~ 05720826 n 0000 | a sensation that normally occurs in one sense modality occurs when another modality is stimulated -05720826 09 n 02 chromesthesia 0 chromaesthesia 0 002 @ 05720602 n 0000 ~ 05721019 n 0000 | a form of synesthesia in which nonvisual stimulation results in the experience of color sensations -05721019 09 n 02 colored_hearing 0 colored_audition 0 001 @ 05720826 n 0000 | a form of chromesthesia in which experiences of color accompany auditory stimuli -05721180 09 n 04 somesthesia 1 somaesthesia 1 somatesthesia 1 somatic_sensation 0 006 @ 05708432 n 0000 ~ 05721500 n 0000 ~ 05722868 n 0000 ~ 05724475 n 0000 ~ 05724694 n 0000 ~ 05725378 n 0000 | the perception of tactual or proprioceptive or gut sensations; "he relied on somesthesia to warn him of pressure changes" -05721500 09 n 01 feeling 1 003 @ 05721180 n 0000 + 02106006 v 0101 ~ 05721728 n 0000 | a physical sensation that you experience; "he had a queasy feeling"; "I had a strange feeling in my leg"; "he lost all feeling in his arm" -05721728 09 n 02 constriction 0 tightness 0 002 @ 05721500 n 0000 + 01447302 a 0201 | a tight feeling in some part of the body; "he felt a constriction in her chest"; "she felt an alarming tightness in her chest"; "emotion caused a constriction of his throat" -05721990 09 n 04 tactual_sensation 1 tactility 0 touch_perception 0 skin_perceptiveness 0 003 @ 05659856 n 0000 + 02391683 a 0201 + 02869097 a 0202 | the faculty of perceiving (via the skin) pressure or heat or pain -05722208 09 n 03 kinesthesia 0 kinaesthesia 0 feeling_of_movement 0 004 @ 05654873 n 0000 @ 05659856 n 0000 + 02870453 a 0202 + 02870453 a 0101 | the perception of body position and movement and muscular tensions etc -05722427 09 n 05 touch 2 touch_sensation 0 tactual_sensation 0 tactile_sensation 0 feeling 2 005 @ 05708432 n 0000 + 01209678 v 0501 + 02127358 v 0101 ~ 05723080 n 0000 ~ 05723210 n 0000 | the sensation produced by pressure receptors in the skin; "she likes the touch of silk on her skin"; "the surface had a greasy feeling" -05722754 09 n 01 pins_and_needles 0 001 @ 05722868 n 0000 | a sharp tingling sensation from lack of circulation -05722868 09 n 03 prickling 0 tingle 0 tingling 0 006 @ 05721180 n 0000 + 02122983 v 0301 + 02122983 v 0201 + 02122983 v 0102 ~ 05722754 n 0000 + 02123298 v 0101 | a somatic sensation as from many tiny prickles -05723080 09 n 01 creepiness 0 002 @ 05722427 n 0000 + 00195191 a 0101 | an uneasy sensation as of insects creeping on your skin -05723210 09 n 03 cutaneous_sensation 0 haptic_sensation 0 skin_sensation 0 005 @ 05722427 n 0000 ~ 05723417 n 0000 ~ 05723563 n 0000 ~ 05724234 n 0000 ~ 05724357 n 0000 | a sensation localized on the skin -05723417 09 n 01 tickle 0 003 @ 05723210 n 0000 + 01431987 v 0101 + 02120140 v 0101 | a cutaneous sensation often resulting from light stroking -05723563 09 n 03 itch 0 itchiness 0 itching 0 007 @ 05723210 n 0000 + 02121188 v 0301 + 01712327 a 0201 + 01712327 a 0101 + 02121188 v 0101 + 02119874 v 0103 ~ 05723811 n 0000 | an irritating cutaneous sensation that produces a desire to scratch -05723811 09 n 01 pruritus 0 003 @ 05723563 n 0000 ~ 05724019 n 0000 ~ 05724121 n 0000 | an intense itching sensation that can have various causes (as by allergies or infection or lymphoma or jaundice etc.) -05724019 09 n 01 pruritus_ani 0 001 @ 05723811 n 0000 | chronic itching of the skin around the anus -05724121 09 n 01 pruritus_vulvae 0 001 @ 05723811 n 0000 | persistent itching of the external female genitalia -05724234 09 n 02 topognosia 0 topognosis 0 001 @ 05723210 n 0000 | recognition of the location of a stimulus on the skin -05724357 09 n 01 urtication 0 002 @ 05723210 n 0000 + 02120715 v 0102 | a sensation of having been stung by nettles -05724475 09 n 02 pressure 0 pressure_sensation 0 001 @ 05721180 n 0000 | the somatic sensation that results from applying force to an area of skin; "the sensitivity of his skin to pressure and temperature was normal" -05724694 09 n 03 pain 0 pain_sensation 0 painful_sensation 0 005 @ 05721180 n 0000 + 00070816 v 0103 ~ 05724965 n 0000 ~ 05725137 n 0000 ~ 05725269 n 0000 | a somatic sensation of acute discomfort; "as the intensity increased the sensation changed from tickle to pain" -05724965 09 n 01 mittelschmerz 0 001 @ 05724694 n 0000 | pain in the area of the ovary that is felt at the time of ovulation (usually midway through the menstrual cycle) -05725137 09 n 01 phantom_limb_pain 0 001 @ 05724694 n 0000 | pain felt by an amputee that seems to be located in the missing limb -05725269 09 n 01 twinge 0 003 @ 05724694 n 0000 + 02121845 v 0101 + 02123424 v 0103 | a sharp stab of pain -05725378 09 n 01 temperature 0 004 @ 05721180 n 0000 ~ 05725527 n 0000 ~ 05725676 n 0000 ~ 05725879 n 0000 | the somatic sensation of cold or heat -05725527 09 n 02 heat 0 warmth 0 004 @ 05725378 n 0000 + 00372665 v 0101 + 02333358 v 0101 + 00371264 v 0101 | the sensation caused by heat energy -05725676 09 n 02 cold 0 coldness 0 003 @ 05725378 n 0000 + 01251128 a 0201 + 01251128 a 0101 | the sensation produced by low temperatures; "he shivered from the cold"; "the cold helped clear his head" -05725879 09 n 01 comfort_zone 0 001 @ 05725378 n 0000 | the temperature range (between 28 and 30 degrees Centigrade) at which the naked human body is able to maintain a heat balance without shivering or sweating -05726093 09 n 01 believing 0 002 @ 05701944 n 0000 ~ 05726237 n 0000 | the cognitive process that leads to convictions; "seeing is believing" -05726237 09 n 01 doublethink 0 001 @ 05726093 n 0000 | believing two contradictory ideas at the same time -05726345 09 n 01 structure 0 006 @ 00023271 n 0000 + 00404222 v 0101 ~ 05726596 n 0000 ~ 05930736 n 0000 ~ 06176107 n 0000 ~ 06177729 n 0000 | the complex composition of knowledge as elements and their combinations; "his lectures have no structure" -05726596 09 n 04 arrangement 0 organization 0 organisation 0 system 2 017 @ 05726345 n 0000 + 00480969 v 0403 + 00480969 v 0404 + 00404642 v 0302 + 00404642 v 0201 ~ 05727220 n 0000 ~ 05727808 n 0000 ~ 05728024 n 0000 ~ 05728493 n 0000 ~ 05728678 n 0000 ~ 05729036 n 0000 ~ 05729483 n 0000 ~ 05729609 n 0000 ~ 05729875 n 0000 ~ 05730046 n 0000 ~ 06162979 n 0000 ~ 15173479 n 0000 | an organized structure for arranging or classifying; "he changed the arrangement of the topics"; "the facts were familiar but it was in the organization of them that he was original"; "he tried to understand their system of classification" -05727220 09 n 01 classification_system 0 007 @ 05726596 n 0000 ~ 05727427 n 0000 ~ 05732446 n 0000 ~ 05732614 n 0000 ~ 05733090 n 0000 ~ 05733221 n 0000 ~ 05733361 n 0000 | a system for classifying things -05727427 09 n 03 Dewey_decimal_classification 0 Dewey_decimal_system 0 decimal_system_of_classification 0 001 @ 05727220 n 0000 | a system used by libraries to classify nonfictional publications into subject categories; the subject is indicated by a three-digit numeral and further specification is given by numerals following a decimal point; publications are shelved by number -05727808 09 n 01 contrivance 2 001 @ 05726596 n 0000 | an artificial or unnatural or obviously contrived arrangement of details or parts etc.; "the plot contained too many improbable contrivances to be believable" -05728024 09 n 04 coordinate_system 0 frame_of_reference 0 reference_system 0 reference_frame 0 005 @ 05726596 n 0000 ~ 05728271 n 0000 %p 06008896 n 0000 ~ 06010583 n 0000 ~ 06010737 n 0000 | a system that uses coordinates to establish position -05728271 09 n 01 Cartesian_coordinate_system 0 001 @ 05728024 n 0000 | a coordinate system for which the coordinates of a point are its distances from a set perpendicular lines that intersect at the origin of the system -05728493 09 n 01 data_structure 0 003 @ 05726596 n 0000 ;c 03082979 n 0000 ~ 05732273 n 0000 | (computer science) the organization of data (and its storage allocations in a computer) -05728678 09 n 02 design 1 plan 1 009 @ 05726596 n 0000 + 01638368 v 0201 + 00704690 v 0201 + 00709625 v 0101 + 01638368 v 0104 ~ 05731779 n 0000 ~ 05837271 n 0000 ~ 05837370 n 0000 ~ 13415547 n 0000 | an arrangement scheme; "the awkward design of the keyboard made operation difficult"; "it was an excellent design for living"; "a plan for seating guests" -05729036 09 n 02 distribution 0 statistical_distribution 0 008 @ 05726596 n 0000 ;c 06018465 n 0000 ~ 05729362 n 0000 ~ 06025521 n 0000 ~ 06025689 n 0000 ~ 06025854 n 0000 ~ 06026635 n 0000 ~ 06036697 n 0000 | (statistics) an arrangement of values of a variable showing their observed or theoretical frequency of occurrence -05729362 09 n 01 equidistribution 0 001 @ 05729036 n 0000 | a flat distribution having equal frequencies of occurrence -05729483 09 n 01 genetic_map 0 001 @ 05726596 n 0000 | graphical representation of the arrangement of genes on a chromosome -05729609 09 n 01 kinship_system 0 002 @ 05726596 n 0000 ;c 06143546 n 0000 | (anthropology) the system of social relationships that constitute kinship in a particular culture, including the terminology that is used and the reciprocal obligations that are entailed -05729875 09 n 01 lattice 0 002 @ 05726596 n 0000 ~ 05732086 n 0000 | an arrangement of points or particles or objects in a regular periodic pattern in 2 or 3 dimensions -05730046 09 n 01 living_arrangement 0 001 @ 05726596 n 0000 | an arrangement to allow people (or ideas) to coexist -05730163 09 n 01 redundancy 0 003 @ 05731779 n 0000 ;c 06099269 n 0000 + 01581305 a 0103 | (electronics) a system design that duplicates components to provide alternatives in case one component fails -05730365 09 n 02 topology 3 network_topology 0 007 @ 05731779 n 0000 ~ 05730591 n 0000 ~ 05730724 n 0000 ~ 05730930 n 0000 ~ 05731062 n 0000 ~ 05731223 n 0000 ~ 05731405 n 0000 | the configuration of a communication network -05730591 09 n 02 bus_topology 0 bus 0 001 @ 05730365 n 0000 | the topology of a network whose components are connected by a busbar -05730724 09 n 02 loop_topology 0 loop 0 001 @ 05730365 n 0000 | the topology of a network whose components are serially connected in such a way that the last component is connected to the first component -05730930 09 n 02 star_topology 0 star 0 001 @ 05730365 n 0000 | the topology of a network whose components are connected to a hub -05731062 09 n 02 mesh_topology 0 mesh 0 001 @ 05730365 n 0000 | the topology of a network whose components are all connected directly to every other component -05731223 09 n 01 physical_topology 0 001 @ 05730365 n 0000 | the appearance of the network; "the physical topologies of local area networks include the bus, the ring and the star" -05731405 09 n 01 logical_topology 0 001 @ 05730365 n 0000 | the way the network works; "a network that looks like a star can have the logical topology of a bus" -05731568 09 n 03 unitization 0 unitisation 0 chunking 0 003 @ 05731779 n 0000 ;c 06136258 n 0000 + 00657016 v 0303 | (psychology) the configuration of smaller units of information into large coordinated units -05731779 09 n 02 configuration 0 constellation 0 008 @ 05728678 n 0000 + 02689882 v 0203 + 02025009 v 0202 + 00142055 v 0201 + 01657641 v 0101 ~ 05730163 n 0000 ~ 05730365 n 0000 ~ 05731568 n 0000 | an arrangement of parts or elements; "the outcome depends on the configuration of influences at the time" -05732086 09 n 03 space_lattice 0 crystal_lattice 0 Bravais_lattice 0 001 @ 05729875 n 0000 | a 3-dimensional geometric arrangement of the atoms or molecules or ions composing a crystal -05732273 09 n 02 hierarchical_structure 0 hierarchical_data_structure 0 001 @ 05728493 n 0000 | a structure of data having several levels arranged in a treelike structure -05732446 09 n 01 hierarchical_classification_system 0 001 @ 05727220 n 0000 | a classification system where entries are arranged based on some hierarchical structure -05732614 09 n 02 file_system 0 filing_system 0 001 @ 05727220 n 0000 | a system of classifying into files (usually arranged alphabetically) -05732756 09 n 04 classification 0 categorization 0 categorisation 0 sorting 0 010 @ 05701944 n 0000 + 00657260 v 0201 + 00739662 v 0102 + 00654625 v 0101 ~ 05641432 n 0000 ~ 05733583 n 0000 ~ 05734559 n 0000 ~ 05734909 n 0000 ~ 05735789 n 0000 ~ 05736002 n 0000 | the basic cognitive process of arranging into classes or categories -05733090 09 n 02 grouping 0 pigeonholing 0 002 @ 05727220 n 0000 + 00656292 v 0201 | a system for classifying things into groups -05733221 09 n 02 rating_system 0 scoring_system 0 001 @ 05727220 n 0000 | a system of classifying according to quality or merit or amount -05733361 09 n 03 ABO_blood_group_system 0 ABO_system 0 ABO_group 0 001 @ 05727220 n 0000 | a classification system for the antigens of human blood; used in blood transfusion therapy; four groups are A and B and AB and O -05733583 09 n 02 appraisal 0 assessment 0 009 @ 05732756 n 0000 + 00681429 v 0204 + 00681429 v 0105 ~ 05733864 n 0000 ~ 05736149 n 0000 ~ 05738625 n 0000 ~ 05747495 n 0000 ~ 05747582 n 0000 ~ 05747937 n 0000 | the classification of someone or something with respect to its worth -05733864 09 n 02 critical_appraisal 0 critical_analysis 0 002 @ 05733583 n 0000 ~ 05734018 n 0000 | an appraisal based on careful analytical evaluation -05734018 09 n 02 criticism 0 critique 0 007 @ 05733864 n 0000 + 00855512 v 0202 + 00649586 a 0101 + 00826509 v 0103 ~ 05734288 n 0000 ~ 05734381 n 0000 ~ 05734477 n 0000 | a serious examination and judgment of something; "constructive criticism is always appreciated" -05734288 09 n 01 examen 2 001 @ 05734018 n 0000 | a critical study (as of a writer's work) -05734381 09 n 02 knock 0 roast 0 002 @ 05734018 n 0000 + 00851933 v 0202 | negative criticism -05734477 09 n 01 self-criticism 0 001 @ 05734018 n 0000 | criticism of yourself -05734559 09 n 02 attribution 0 ascription 0 008 @ 05732756 n 0000 + 00726300 v 0202 + 00740053 v 0102 = 00171590 a 0000 = 00172452 a 0000 ~ 05735256 n 0000 ~ 05735478 n 0000 ~ 05735680 n 0000 | assigning to a cause or source; "the attribution of lighting to an expression of God's wrath"; "he questioned the attribution of the painting to Picasso" -05734909 09 n 02 attribution 1 ascription 1 002 @ 05732756 n 0000 ~ 05735145 n 0000 | assigning some quality or character to a person or thing; "the attribution of language to birds"; "the ascription to me of honors I had not earned" -05735145 09 n 01 zoomorphism 0 001 @ 05734909 n 0000 | the attribution of animal forms or qualities to a god -05735256 09 n 01 animatism 0 002 @ 05734559 n 0000 + 02624209 a 0101 | the attribution of consciousness and personality to natural phenomena such as thunderstorms and earthquakes and to objects such as plants and stones -05735478 09 n 01 imputation 0 002 @ 05734559 n 0000 + 00726300 v 0101 | the attribution to a source or cause; "the imputation that my success was due to nepotism meant that I was not taken seriously" -05735680 09 n 02 externalization 0 externalisation 0 001 @ 05734559 n 0000 | attributing to outside causes -05735789 09 n 02 cross-classification 0 cross-division 0 001 @ 05732756 n 0000 | classification according to more than one attribute at the same time; "the cross-classification of cases was done by age and sex" -05736002 09 n 01 subsumption 0 003 @ 05732756 n 0000 + 02634667 v 0101 + 00685224 v 0101 | incorporating something under a more general category -05736149 09 n 03 evaluation 0 valuation 0 rating 0 010 @ 05733583 n 0000 + 00660971 v 0301 + 00681429 v 0203 + 00681429 v 0102 ~ 05736468 n 0000 ~ 05736593 n 0000 ~ 05736736 n 0000 ~ 05737025 n 0000 ~ 05737153 n 0000 ~ 05738404 n 0000 | an appraisal of the value of something; "he set a high valuation on friendship" -05736468 09 n 01 overvaluation 0 002 @ 05736149 n 0000 + 00695475 v 0101 | too high a value or price assigned to something -05736593 09 n 01 undervaluation 0 003 @ 05736149 n 0000 + 00694866 v 0101 + 00695761 v 0101 | too low a value or price assigned to something -05736736 09 n 01 pricing 0 004 @ 05736149 n 0000 + 02351010 v 0101 + 00721889 v 0101 ~ 05736893 n 0000 | the evaluation of something in terms of its price -05736893 09 n 01 price_gouging 0 001 @ 05736736 n 0000 | pricing above the market price when no alternative retailer is available -05737025 09 n 01 reevaluation 0 002 @ 05736149 n 0000 + 00682781 v 0102 | the evaluation of something a second time (or more) -05737153 09 n 03 mark 1 grade 0 score 0 009 @ 05736149 n 0000 + 00657728 v 0302 + 01112364 v 0301 + 00657550 v 0201 + 00658052 v 0205 ~ 05737532 n 0000 ~ 05737752 n 0000 ~ 05737982 n 0000 ~ 05738204 n 0000 | a number or letter indicating quality (especially of a student's performance); "she made good marks in algebra"; "grade A milk"; "what was your score on your homework?" -05737532 09 n 01 grade_point 0 001 @ 05737153 n 0000 | a numerical value assigned to a letter grade received in a course taken at a college or university multiplied by the number of credit hours awarded for the course -05737752 09 n 02 percentile 0 centile 0 002 @ 05737153 n 0000 ;c 06018465 n 0000 | (statistics) any of the 99 numbered points that divide an ordered set of scores into 100 parts each of which contains one-hundredth of the total -05737982 09 n 01 decile 0 002 @ 05737153 n 0000 ;c 06018465 n 0000 | (statistics) any of nine points that divided a distribution of ranked scores into equal intervals where each interval contains one-tenth of the scores -05738204 09 n 01 quartile 0 002 @ 05737153 n 0000 ;c 06018465 n 0000 | (statistics) any of three points that divide an ordered distribution into four parts each containing one quarter of the scores -05738404 09 n 01 bond_rating 0 001 @ 05736149 n 0000 | an evaluation by a rating company of the probability that a particular bond issue will default; "the bonds of highest quality are said to have bond ratings of AAA" -05738625 09 n 02 assay 0 check 0 006 @ 05733583 n 0000 + 00661824 v 0201 ~ 05738894 n 0000 ~ 05739400 n 0000 ~ 05743496 n 0000 ~ 05747160 n 0000 | an appraisal of the state of affairs; "they made an assay of the contents"; "a check on its dependability under stress" -05738894 09 n 02 countercheck 0 double_check 0 002 @ 05738625 n 0000 + 00663549 v 0201 | something that checks the correctness of a previous check -05739043 09 n 02 diagnostic_test 0 diagnostic_assay 0 014 @ 00791527 n 0000 ~ 05740929 n 0000 ~ 05741139 n 0000 ~ 05741340 n 0000 ~ 05741578 n 0000 ~ 05741765 n 0000 ~ 05743296 n 0000 ~ 05743770 n 0000 ~ 05744288 n 0000 ~ 05744421 n 0000 ~ 05744976 n 0000 ~ 05745098 n 0000 ~ 05746868 n 0000 ~ 13779570 n 0000 | an assay conducted for diagnostic purposes -05739400 09 n 01 Apgar_score 0 001 @ 05738625 n 0000 | an assessment of the physical condition of a newborn infant; involves heart rate and muscle tone and respiratory effort and color and reflex responsiveness -05739613 09 n 01 agglutination_test 0 003 @ 05742551 n 0000 ~ 05739965 n 0000 ~ 05740162 n 0000 | a blood test used to identify unknown antigens; blood with the unknown antigen is mixed with a known antibody and whether or not agglutination occurs helps to identify the antigen; used in tissue matching and blood grouping and diagnosis of infections -05739965 09 n 01 heterophil_test 0 001 @ 05739613 n 0000 | a blood test to detect heterophil antibodies that agglutinate sheep red blood cells; positive result indicates infectious mononucleosis -05740162 09 n 02 Widal_test 0 Widal's_test 0 001 @ 05739613 n 0000 | a test for detecting typhoid fever and other salmonella infections -05740300 09 n 02 bioassay 0 bio-assay 0 004 @ 00791527 n 0000 + 00695120 v 0101 ~ 05740560 n 0000 ~ 05743870 n 0000 | appraisal of the biological activity of a substance by testing its effect on an organism and comparing the result with some agreed standard -05740560 09 n 02 immunoassay 0 immunochemical_assay 0 002 @ 05740300 n 0000 ~ 05740804 n 0000 | identification of a substance (especially a protein) by its action as an antigen; "PSA in the blood can be measured with an immunochemical assay" -05740804 09 n 01 radioimmunoassay 0 001 @ 05740560 n 0000 | immunoassay of a substance that has been radioactively labeled -05740929 09 n 01 biopsy 0 004 @ 05739043 n 0000 ~ 05742551 n 0000 ~ 05742962 n 0000 ~ 05743174 n 0000 | examination of tissues or liquids from the living body to determine the existence or cause of a disease -05741139 09 n 02 cloze_procedure 0 cloze_test 0 001 @ 05739043 n 0000 | a test for diagnosing reading ability; words are deleted from a prose passage and the reader is required to fill in the blanks -05741340 09 n 03 fecal_occult_test 0 faecal_occult_test 0 stool_test 0 001 @ 05739043 n 0000 | a test performed at home in which you collect specimens of your stool that are tested for traces of blood; used to detect colorectal cancers -05741578 09 n 01 GI_series 0 001 @ 05739043 n 0000 | diagnostic tests of the alimentary canal; usually involves inserting a contrast medium (such as barium sulfate) and taking an X-ray -05741765 09 n 01 glucose_tolerance_test 0 001 @ 05739043 n 0000 | test of the body's ability to metabolize carbohydrates; used in the diagnosis of hypoglycemia and diabetes mellitus -05741949 09 n 01 complement_fixation_test 0 002 @ 05742551 n 0000 ~ 05742241 n 0000 | a blood test in which a sample of serum is exposed to a particular antigen and complement in order to determine whether or not antibodies to that particular antigen are present; used as a diagnostic test -05742241 09 n 03 Wassermann_test 0 Wasserman_reaction 0 Wassermann 0 001 @ 05741949 n 0000 | a blood test to detect syphilis; a complement fixation test is used to detect antibodies to the syphilis organism treponema; a positive reaction indicates the presence of antibodies and therefore syphilis infection -05742551 09 n 01 blood_test 0 004 @ 05740929 n 0000 ~ 05739613 n 0000 ~ 05741949 n 0000 ~ 05742703 n 0000 | a serologic analysis of a sample of blood -05742703 09 n 01 PSA_blood_test 0 001 @ 05742551 n 0000 | a blood test that measures levels of a protein called prostate specific antigen that is manufactured exclusively by the prostate gland; men with prostate problems usually have elevated levels of PSA -05742962 09 n 02 chorionic_villus_sampling 0 chorionic_villus_biopsy 0 001 @ 05740929 n 0000 | a prenatal test to detect birth defects at an early stage of pregnancy; tissue from the chorionic villi is assayed -05743174 09 n 01 needle_biopsy 0 001 @ 05740929 n 0000 | biopsy of deep tissue that is obtained through a hollow needle -05743296 09 n 03 Pap_test 0 Papanicolaou_test 0 smear_test 0 002 @ 05739043 n 0000 %p 05266239 n 0000 | a method of examining stained cells in a cervical smear for early diagnosis of uterine cancer -05743496 09 n 01 paternity_test 0 001 @ 05738625 n 0000 | a test based on blood groups to determine whether a particular man could be the biological father of a particular child; negative results prove he was not the father but positive results show only that he could be -05743770 09 n 01 PKU_test 0 001 @ 05739043 n 0000 | a test of newborn infants for phenylketonuria -05743870 09 n 01 pregnancy_test 0 002 @ 05740300 n 0000 ~ 05744010 n 0000 | a physiological test to determine whether a woman is pregnant -05744010 09 n 02 Friedman_test 0 rabbit_test 0 001 @ 05743870 n 0000 | pregnancy test that involves injecting some of the woman's urine into an unmated female rabbit and later examining the ovaries of the rabbit; presence of corpora lutea indicates that the woman is pregnant -05744288 09 n 01 Queckenstedt's_test 0 001 @ 05739043 n 0000 | a test to determine whether there is a blockage of the spinal canal -05744421 09 n 01 radioactive_iodine_test 0 003 @ 05739043 n 0000 ~ 05744620 n 0000 ~ 05744792 n 0000 | test of thyroid function in which the patient is given an oral dose of radioactive iodine-131 -05744620 09 n 01 radioactive_iodine_excretion_test 0 001 @ 05744421 n 0000 | radioactive iodine test that measures the amount of radioactive iodine excreted in the urine -05744792 09 n 02 radioactive_iodine_uptake_test 0 RAIU 0 001 @ 05744421 n 0000 | radioactive iodine test that measures the amount of radioactive iodine taken up by the thyroid gland -05744976 09 n 01 Rubin_test 0 001 @ 05739043 n 0000 | test to determine the patency or occlusion of the Fallopian tubes -05745098 09 n 01 skin_test 0 007 @ 05739043 n 0000 ~ 05745369 n 0000 ~ 05745486 n 0000 ~ 05745648 n 0000 ~ 05745744 n 0000 ~ 05745907 n 0000 ~ 05746708 n 0000 | any test to determine immunity or sensitivity to a disease by introducing small amounts on or into the skin -05745369 09 n 01 Dick_test 0 001 @ 05745098 n 0000 | a skin test to determine your susceptibility to scarlet fever -05745486 09 n 01 patch_test 0 001 @ 05745098 n 0000 | a test to determine allergic sensitivity by applying small pads soaked with allergen to the unbroken skin -05745648 09 n 01 Schick_test 0 001 @ 05745098 n 0000 | a skin test for immunity to diphtheria -05745744 09 n 01 scratch_test 0 001 @ 05745098 n 0000 | a test to determine allergic sensitivity to various substances by applying them to scratches in the skin -05745907 09 n 02 tuberculin_test 0 tuberculin_skin_test 0 003 @ 05745098 n 0000 ~ 05746163 n 0000 ~ 05746424 n 0000 | a skin test to determine past or present infection with the tuberculosis bacterium; based on hypersensitivity of the skin to tuberculin -05746163 09 n 01 Mantoux_test 0 001 @ 05745907 n 0000 | tuberculin (a derivative of tubercle bacillus) is injected intradermally; a red area appearing 1-3 days later signifies an exposure (past or present) to tubercle bacilli and the need for further testing -05746424 09 n 01 tine_test 0 001 @ 05745907 n 0000 | a tuberculin test in which a disk with several tines bearing tuberculin antigen is used to puncture the skin; development of a hard red area indicates past or present exposure to tubercle bacilli and the need for further testing -05746708 09 n 02 intradermal_test 0 subcutaneous_test 0 001 @ 05745098 n 0000 | a form of skin test in which the suspected allergen is injected into the skin -05746868 09 n 01 tissue_typing 0 001 @ 05739043 n 0000 | a series of diagnostic tests before an organ transplant to determine whether the tissues of a donor and recipient are compatible -05747056 09 n 01 Snellen_test 0 001 @ 00791078 n 0000 | a test of visual acuity using a Snellen chart -05747160 09 n 01 stress_test 0 002 @ 05738625 n 0000 ~ 05747322 n 0000 | a test measuring how a system functions when subjected to controlled amounts of stress -05747322 09 n 01 treadmill_test 0 001 @ 05747160 n 0000 | a stress test in which the patient walks on a moving treadmill while the heart and breathing rates are monitored -05747495 09 n 01 acid_test 0 001 @ 05733583 n 0000 | a rigorous or crucial appraisal -05747582 09 n 04 reappraisal 0 revaluation 0 review 0 reassessment 0 007 @ 05733583 n 0000 + 00682781 v 0401 + 00696189 v 0301 + 00315810 v 0201 + 00316195 v 0204 + 00682592 v 0101 ~ 05747815 n 0000 | a new appraisal or evaluation -05747815 09 n 02 stocktaking 0 stock-taking 0 001 @ 05747582 n 0000 | reappraisal of a situation or position or outlook -05747937 09 n 01 underevaluation 0 001 @ 05733583 n 0000 | an appraisal that underestimates the value of something -05748054 09 n 02 discrimination 0 secernment 0 006 @ 05701944 n 0000 + 02193765 v 0101 + 00650016 v 0101 ~ 05748285 n 0000 ~ 05749402 n 0000 ~ 05749619 n 0000 | the cognitive process whereby two or more stimuli are distinguished -05748285 09 n 02 differentiation 0 distinction 0 008 @ 05748054 n 0000 + 00650353 v 0201 + 00651991 v 0103 + 00650353 v 0103 + 00119074 v 0101 ~ 05748614 n 0000 ~ 05748786 n 0000 ~ 05749210 n 0000 | a discrimination between things as different and distinct; "it is necessary to make a distinction between love and infatuation" -05748614 09 n 01 contradistinction 0 002 @ 05748285 n 0000 + 00661584 v 0101 | a distinction drawn on the basis of contrast; "sculpture in contradistinction to painting" -05748786 09 n 04 line 0 dividing_line 0 demarcation 0 contrast 1 005 @ 05748285 n 0000 + 02666882 v 0401 + 00661213 v 0401 + 00730499 v 0301 ~ 05749042 n 0000 | a conceptual separation or distinction; "there is a narrow line between sanity and insanity" -05749042 09 n 02 Rubicon 0 point_of_no_return 0 001 @ 05748786 n 0000 | a line that when crossed permits of no return and typically results in irrevocable commitment -05749210 09 n 02 hairsplitting 0 word-splitting 0 002 @ 05748285 n 0000 + 01838379 a 0102 | making too fine distinctions of little importance; "they didn't take his hairsplitting seriously" -05749402 09 n 03 individualization 0 individualisation 0 individuation 0 004 @ 05748054 n 0000 + 02698178 v 0301 + 00651759 v 0202 + 00651759 v 0101 | discriminating the individual from the generic group or species -05749619 09 n 04 taste 1 appreciation 1 discernment 3 perceptiveness 0 008 @ 05748054 n 0000 + 02868326 a 0401 = 02392878 a 0000 = 02393401 a 0000 ~ 05750027 n 0000 ~ 05750163 n 0000 ~ 05751707 n 0000 ~ 05751794 n 0000 | delicate discrimination (especially of aesthetic values); "arrogance and lack of taste contributed to his rapid success"; "to ask at that particular time was the ultimate in bad taste" -05750027 09 n 03 virtu 0 vertu 0 connoisseurship 0 002 @ 05749619 n 0000 + 09956387 n 0301 | love of or taste for fine objects of art -05750163 09 n 03 vogue 0 trend 2 style 0 007 @ 05749619 n 0000 + 10155849 n 0303 + 01687569 v 0301 + 00973677 a 0201 ~ 05750471 n 0000 ~ 05750657 n 0000 ~ 05751533 n 0000 | the popular taste at a given time; "leather is the latest vogue"; "he followed current trends"; "the 1920s had a style of their own" -05750471 09 n 01 New_Look 0 001 @ 05750163 n 0000 | a style of women's clothing created by Christian Dior in 1947; involved a tight bodice and narrow waist and a flowing pleated skirt -05750657 09 n 01 fashion 0 010 @ 05750163 n 0000 ~ 05672286 n 0000 ~ 05750948 n 0000 ~ 05751063 n 0000 ~ 05751173 n 0000 ~ 05751430 n 0000 -c 01666717 v 0000 -c 01666894 v 0000 -c 02667419 v 0000 -c 02667558 v 0000 | the latest and most admired style in clothes and cosmetics and behavior -05750948 09 n 01 cut 0 001 @ 05750657 n 0000 | the style in which a garment is cut; "a dress of traditional cut" -05751063 09 n 03 haute_couture 0 high_fashion 0 high_style 0 001 @ 05750657 n 0000 | trend-setting fashions -05751173 09 n 06 fad 0 craze 0 furor 0 furore 0 cult 1 rage 0 004 @ 05750657 n 0000 + 00886448 a 0201 + 00972236 a 0102 + 10075899 n 0101 | an interest followed with exaggerated zeal; "he always follows the latest fads"; "it was all the rage that season" -05751430 09 n 01 retro 0 002 @ 05750657 n 0000 + 01884744 a 0103 | a fashion reminiscent of the past -05751533 09 n 01 bandwagon 0 001 @ 05750163 n 0000 | a popular trend that attracts growing support; "when they saw how things were going everybody jumped on the bandwagon" -05751707 09 n 02 delicacy 0 discretion 1 001 @ 05749619 n 0000 | refined taste; tact -05751794 09 n 01 culture 0 007 @ 05749619 n 0000 + 02248693 a 0101 + 02898922 a 0101 + 00159880 v 0101 ~ 05752020 n 0000 ~ 05752179 n 0000 ~ 05752422 n 0000 | the tastes in art and manners that are favored by a social group -05752020 09 n 01 counterculture 0 002 @ 05751794 n 0000 ~ 05752296 n 0000 | a culture with lifestyles and values opposed to those of the established culture -05752179 09 n 01 mass_culture 0 001 @ 05751794 n 0000 | the culture that is widely disseminated via the mass media -05752296 09 n 01 flower_power 0 001 @ 05752020 n 0000 | a counterculture of young people in the US during the 1960s and 70s -05752422 09 n 01 letters 0 001 @ 05751794 n 0000 | the literary culture; "this book shows American letters at its best" -05752544 09 n 02 learning 0 acquisition 1 013 @ 05701944 n 0000 + 00597915 v 0203 + 02210855 v 0202 ~ 05752921 n 0000 ~ 05753207 n 0000 ~ 05753379 n 0000 ~ 05753564 n 0000 ~ 05753954 n 0000 ~ 05754730 n 0000 ~ 05754899 n 0000 ~ 05755156 n 0000 ~ 05755883 n 0000 ~ 05756203 n 0000 | the cognitive process of acquiring skill or knowledge; "the child's acquisition of language" -05752921 09 n 01 conditioning 0 007 @ 05752544 n 0000 + 02571768 v 0101 ~ 05758692 n 0000 ~ 05758907 n 0000 ~ 05759182 n 0000 ~ 05759696 n 0000 ~ 05759949 n 0000 | a learning process in which an organism's behavior becomes dependent on the occurrence of a stimulus in its environment -05753207 09 n 01 developmental_learning 0 003 @ 05752544 n 0000 ~ 05755486 n 0000 ~ 05755714 n 0000 | learning that takes place as a normal part of cognitive development -05753379 09 n 01 digestion 0 002 @ 05752544 n 0000 + 00590924 v 0101 | learning and coming to understand ideas and information; "his appetite for facts was better than his digestion" -05753564 09 n 01 education 1 012 @ 05752544 n 0000 ;c 00883297 n 0000 + 02946221 a 0101 + 10045454 n 0101 + 10045454 n 0102 + 00603298 v 0104 ~ 05757049 n 0000 ~ 05757234 n 0000 ~ 05757423 n 0000 ~ 05757536 n 0000 ~ 05757731 n 0000 ~ 05757902 n 0000 | the gradual process of acquiring knowledge; "education is a preparation for life"; "a girl's education was less important than a boy's" -05753954 09 n 03 internalization 0 internalisation 0 incorporation 0 005 @ 05752544 n 0000 + 00729781 v 0202 + 00729781 v 0101 ~ 05754197 n 0000 ~ 05754519 n 0000 | learning (of values or attitudes etc.) that is incorporated within yourself -05754197 09 n 01 introjection 1 003 @ 05753954 n 0000 ;c 06136258 n 0000 + 00554894 v 0101 | (psychology) unconscious internalization of aspects of the world (especially aspects of persons) within the self in such a way that the internalized representation takes over the psychological functions of the external objects -05754519 09 n 01 introjection 0 003 @ 05753954 n 0000 ;c 00704305 n 0000 + 00554894 v 0101 | (psychoanalysis) the internalization of the parent figures and their values; leads to the formation of the superego -05754730 09 n 01 imprinting 0 002 @ 05752544 n 0000 + 02430922 v 0101 | a learning process in early life whereby species specific patterns of behavior are established -05754899 09 n 01 language_learning 0 002 @ 05752544 n 0000 ~ 05755007 n 0000 | learning to use a language -05755007 09 n 01 audio_lingual_acquisition 0 001 @ 05754899 n 0000 | system of language acquisition focusing intensively on listening and speaking -05755156 09 n 03 memorization 0 memorisation 0 committal_to_memory 0 004 @ 05752544 n 0000 + 00604576 v 0202 + 00604576 v 0101 ~ 05755393 n 0000 | learning so as to be able to remember verbatim; "the actor's memorization of his lines" -05755393 09 n 02 rote 0 rote_learning 0 001 @ 05755156 n 0000 | memorization by repetition -05755486 09 n 01 accommodation 0 003 @ 05753207 n 0000 + 00482893 v 0101 + 00299580 v 0102 | in the theories of Jean Piaget: the modification of internal representations in order to accommodate a changing knowledge of reality -05755714 09 n 01 assimilation 0 002 @ 05753207 n 0000 + 00602255 v 0102 | in the theories of Jean Piaget: the application of a general schema to a particular instance -05755883 09 n 02 study 3 work 0 005 @ 05752544 n 0000 + 02084101 a 0102 + 00607114 v 0101 + 00599992 v 0102 + 00607405 v 0101 | applying the mind to learning and understanding a subject (especially by reading); "mastering a second language requires a lot of work"; "no schools offer graduate study in interior design" -05756203 09 n 03 transfer 2 transfer_of_training 0 carry-over 0 003 @ 05752544 n 0000 + 00349951 v 0301 ~ 05756414 n 0000 | application of a skill learned in one situation to a different but similar situation -05756414 09 n 04 generalization 2 generalisation 2 stimulus_generalization 0 stimulus_generalisation 0 005 @ 05756203 n 0000 ;c 06136258 n 0000 + 01022420 v 0202 + 01022420 v 0101 ~ 05756698 n 0000 | (psychology) transfer of a response learned to one stimulus to a similar stimulus -05756698 09 n 01 irradiation 1 001 @ 05756414 n 0000 | (Pavolvian conditioning) the elicitation of a conditioned response by stimulation similar but not identical to the original stimulus -05756888 09 n 01 physical_education 0 001 @ 05984287 n 0000 | training in the development of and care for the human body; stresses athletics; includes hygiene -05757049 09 n 02 acculturation 1 assimilation 1 003 @ 05753564 n 0000 + 00602255 v 0202 + 03139749 a 0101 | the process of assimilating new ideas into an existing cognitive structure -05757234 09 n 01 mastering 0 002 @ 05753564 n 0000 + 00597634 v 0101 | becoming proficient in the use of something; having mastery of; "his mastering the art of cooking took a long time" -05757423 09 n 02 self-education 0 self-cultivation 0 001 @ 05753564 n 0000 | the process of educating yourself -05757536 09 n 02 school 0 schooling 0 003 @ 05753564 n 0000 + 02792903 a 0101 + 02387910 v 0101 | the process of being formally educated at a school; "what will you do when you finish school?" -05757731 09 n 01 special_education 0 001 @ 05753564 n 0000 | education of physically or mentally handicapped children whose needs cannot be met in an ordinary classroom -05757902 09 n 02 vocational_training 0 vocational_education 0 001 @ 05753564 n 0000 | training for a specific vocation in industry or agriculture or trade -05758059 09 n 01 experience 1 007 @ 05984287 n 0000 + 00859632 a 0101 + 00935500 a 0102 + 02110220 v 0101 ! 05988956 n 0101 ~ 05758382 n 0000 ~ 05758548 n 0000 | the accumulation of knowledge or skill that results from direct participation in events or activities; "a man of experience"; "experience is the best teacher" -05758382 09 n 02 familiarization 0 familiarisation 0 003 @ 05758059 n 0000 + 00874175 v 0202 + 00874175 v 0101 | the experience of becoming familiar with something -05758548 09 n 01 woodcraft 2 001 @ 05758059 n 0000 | skill and experience in matters relating to the woods (as hunting or fishing or camping) -05758692 09 n 02 extinction 0 experimental_extinction 0 001 @ 05752921 n 0000 | a conditioning process in which the reinforcer is removed and a conditioned response becomes independent of the conditioned stimulus -05758907 09 n 01 aversive_conditioning 0 001 @ 05752921 n 0000 | conditioning to avoid an aversive stimulus -05759017 09 n 03 conditioned_emotional_response 0 CER 0 conditioned_emotion 0 001 @ 07480068 n 0000 | an emotional response that has been acquired by conditioning -05759182 09 n 01 classical_conditioning 0 001 @ 05752921 n 0000 | conditioning that pairs a neutral stimulus with a stimulus that evokes a reflex; the stimulus that evokes the reflex is given whether or not the conditioned response occurs until eventually the neutral stimulus comes to evoke the reflex -05759487 09 n 01 instrumental_conditioning 0 001 @ 05759696 n 0000 | operant conditioning that pairs a response with a reinforcement in discrete trials; reinforcement occurs only after the response is given -05759696 09 n 01 operant_conditioning 0 002 @ 05752921 n 0000 ~ 05759487 n 0000 | conditioning in which an operant response is brought under stimulus control by virtue of presenting reinforcement contingent upon the occurrence of the operant response -05759949 09 n 01 counter_conditioning 0 001 @ 05752921 n 0000 | conditioning in which a second incompatible response is conditioned to an already conditioned stimulus; "counter conditioning lies behind many of the procedures used in behavior therapy" -05760202 09 n 02 memory 1 remembering 0 013 @ 05701944 n 0000 + 00611802 v 0201 + 00611256 v 0201 + 00607780 v 0201 + 00604576 v 0101 ~ 05760611 n 0000 ~ 05760751 n 0000 ~ 05760877 n 0000 ~ 05761380 n 0000 ~ 05761559 n 0000 ~ 05762998 n 0000 ~ 05763916 n 0000 ~ 05764973 n 0000 | the cognitive processes whereby past experience is remembered; "he can do it from memory"; "he enjoyed remembering his father" -05760611 09 n 03 short-term_memory 0 STM 0 immediate_memory 0 001 @ 05760202 n 0000 | what you can repeat immediately after perceiving it -05760751 09 n 01 working_memory 0 001 @ 05760202 n 0000 | memory for intermediate results that must be held during thinking -05760877 09 n 02 long-term_memory 0 LTM 0 004 @ 05760202 n 0000 ~ 05761044 n 0000 ~ 05761160 n 0000 ~ 05761277 n 0000 | your general store of remembered information -05761044 09 n 02 episodic_memory 0 personal_memory 0 001 @ 05760877 n 0000 | memory for episodes in your own life -05761160 09 n 01 semantic_memory 0 001 @ 05760877 n 0000 | your memory for meanings and general (impersonal) facts -05761277 09 n 02 motor_memory 0 muscle_memory 0 001 @ 05760877 n 0000 | your memory for motor skills -05761380 09 n 01 retrieval 0 002 @ 05760202 n 0000 + 00607780 v 0102 | the cognitive operation of accessing information in memory; "my retrieval of people's names is very poor" -05761559 09 n 03 recall 0 recollection 1 reminiscence 1 009 @ 05760202 n 0000 + 01977669 a 0304 + 00611055 v 0301 + 00607780 v 0206 + 00607780 v 0103 ~ 05762149 n 0000 ~ 05762258 n 0000 ~ 05762483 n 0000 ~ 05762671 n 0000 | the process of remembering (especially the process of recovering information by mental effort); "he has total recall of the episode" -05761918 09 n 03 remembrance 0 recollection 0 anamnesis 0 007 @ 05651399 n 0000 + 02620724 a 0301 + 00611481 v 0102 + 00611802 v 0101 + 00611256 v 0101 + 00609683 v 0101 + 00607780 v 0101 | the ability to recall past occurrences -05762149 09 n 01 mind 1 002 @ 05761559 n 0000 + 00609506 v 0101 | recall or remembrance; "it came to mind" -05762258 09 n 02 reconstruction 0 reconstructive_memory 0 002 @ 05761559 n 0000 + 00634090 v 0101 | recall that is hypothesized to work by storing abstract features which are then used to construct the memory during recall -05762483 09 n 02 reproduction 0 reproductive_memory 0 001 @ 05761559 n 0000 | recall that is hypothesized to work by storing the original stimulus input and reproducing it during recall -05762671 09 n 01 regurgitation 0 002 @ 05761559 n 0000 + 00959178 v 0101 | recall after rote memorization; "he complained that school was just memorization and regurgitation" -05762848 09 n 01 reminiscence 2 003 @ 05935060 n 0000 + 01977669 a 0104 + 00611055 v 0101 | a mental impression retained and recalled from the past -05762998 09 n 02 recognition 0 identification 0 005 @ 05760202 n 0000 + 00618878 v 0201 + 00610374 v 0101 ~ 05763412 n 0000 ~ 05763767 n 0000 | the process of recognizing something or someone by remembering; "a politician whose recall of names was as remarkable as his recognition of faces"; "experimental psychologists measure the elapsed time from the onset of the stimulus to its recognition by the observer" -05763412 09 n 01 identity 0 004 @ 05762998 n 0000 + 01026095 v 0102 + 00652346 v 0101 + 00618878 v 0101 | the individual characteristics by which a thing or person is recognized or known; "geneticists only recently discovered the identity of the gene that causes it"; "it was too dark to determine his identity"; "she guessed the identity of his lover" -05763767 09 n 02 speaker_identification 0 talker_identification 0 001 @ 05762998 n 0000 | identification of a person from the sound of their voice -05763916 09 n 03 association 0 connection 0 connexion 0 005 @ 05760202 n 0000 + 00713167 v 0307 + 00713167 v 0207 + 00713167 v 0101 ~ 05764197 n 0000 | the process of bringing ideas or events together in memory or imagination; "conditioning is a form of learning by association" -05764197 09 n 01 colligation 0 004 @ 05763916 n 0000 + 00713167 v 0105 + 00685224 v 0102 ~ 05774415 n 0000 | the connection of isolated facts by a general hypothesis -05764365 09 n 03 overlap 0 convergence 1 intersection 1 004 @ 05926676 n 0000 + 02660631 v 0101 ~ 05764613 n 0000 ~ 05764779 n 0000 | a representation of common ground between theories or phenomena; "there was no overlap between their proposals" -05764613 09 n 01 crossroads 0 001 @ 05764365 n 0000 | a point where a choice must be made; "Freud's work stands at the crossroads between psychology and neurology" -05764779 09 n 01 interface 0 001 @ 05764365 n 0000 | the overlap where two theories or phenomena affect each other or have links with each other; "the interface between chemistry and biology" -05764973 09 n 01 retrospection 0 002 @ 05760202 n 0000 + 00696414 v 0103 | memory for experiences that are past; "some psychologists tried to contrast retrospection and introspection" -05765159 09 n 01 representational_process 0 006 @ 05701944 n 0000 ~ 05765415 n 0000 ~ 05765901 n 0000 ~ 05766984 n 0000 ~ 05767386 n 0000 ~ 05767733 n 0000 | any basic cognitive process in which some entity comes to stand for or represent something else -05765415 09 n 04 symbol 0 symbolization 0 symbolisation 0 symbolic_representation 0 014 @ 05765159 n 0000 + 00836236 v 0303 + 00836236 v 0202 + 01982186 a 0104 + 02806907 a 0102 + 01982186 a 0103 + 00836236 v 0102 + 00836236 v 0103 ~ 06807971 n 0000 ~ 06808121 n 0000 ~ 06808271 n 0000 ~ 06809291 n 0000 ~ 06856487 n 0000 ~ 06880664 n 0000 | something visible that by association or convention represents something else that is invisible; "the eagle is a symbol of the United States" -05765901 09 n 02 typification 0 exemplification 0 004 @ 05765159 n 0000 + 02723733 v 0201 + 02699141 v 0101 ~ 05766077 n 0000 | a representational or typifying form or model -05766077 09 n 01 picture 1 001 @ 05765901 n 0000 | a typical example of some state or quality; "the very picture of a modern general"; "she was the picture of despair" -05766247 09 n 04 interpretation 0 interpreting 0 rendition 0 rendering 0 006 @ 05793000 n 0000 + 00938247 v 0202 + 01732172 v 0101 + 00938247 v 0102 + 00623151 v 0101 ~ 05766698 n 0000 | an explanation of something that is not immediately obvious; "the edict was subject to many interpretations"; "he annoyed us with his interpreting of parables"; "often imitations are extended to provide a more accurate rendition of the child's intended meaning" -05766698 09 n 02 broad_interpretation 0 judicial_activism 0 001 @ 05766247 n 0000 | an interpretation of the U.S. constitution holding that the spirit of the times and the needs of the nation can legitimately influence judicial decisions (particularly decisions of the Supreme Court) -05766984 09 n 04 depicting 0 depiction 0 portraying 0 portrayal 0 008 @ 05765159 n 0000 + 01688256 v 0401 + 01688771 v 0301 + 01688256 v 0301 + 01688256 v 0202 + 01688256 v 0102 + 01686956 v 0102 ~ 05767245 n 0000 | a representation by picture or portraiture -05767245 09 n 01 mirror 0 002 @ 05766984 n 0000 + 02766925 v 0101 | a faithful depiction or reflection; "the best mirror is an old friend" -05767386 09 n 02 anthropomorphism 0 theanthropism 1 003 @ 05765159 n 0000 + 00727409 v 0101 + 00727409 v 0102 | the representation of objects (especially a god) as having human form or traits -05767580 09 n 01 theanthropism 0 002 @ 06186301 n 0000 ;c 06182144 n 0000 | (theology) the doctrine that Jesus was a union of the human and the divine -05767733 09 n 04 imagination 2 imaging 0 imagery 0 mental_imagery 0 011 @ 05765159 n 0000 + 01635432 v 0309 + 01635432 v 0209 + 01636397 v 0101 ~ 05768107 n 0000 ~ 05768252 n 0000 ~ 05768415 n 0000 ~ 05768553 n 0000 ~ 05769314 n 0000 ~ 05769833 n 0000 ~ 05769930 n 0000 | the ability to form mental images of things or events; "he could still hear her in his imagination" -05768107 09 n 01 mind's_eye 0 001 @ 05767733 n 0000 | the imaging of remembered or invented scenes; "I could see her clearly in my mind's eye" -05768252 09 n 01 vision 3 004 @ 05767733 n 0000 + 02498213 a 0103 ~ 05775829 n 0000 ~ 05775919 n 0000 | a vivid mental image; "he had a vision of his own death" -05768415 09 n 02 picturing 0 envisioning 0 004 @ 05767733 n 0000 + 01636221 v 0201 + 01635432 v 0203 + 01635432 v 0108 | visual imagery -05768553 09 n 02 dream 1 dreaming 0 006 @ 05767733 n 0000 #p 05681117 n 0000 + 02118242 v 0201 + 02118242 v 0101 ~ 05769062 n 0000 ~ 05769156 n 0000 | a series of mental images and emotions occurring during sleep; "I had a dream about you last night" -05768806 09 n 02 dream 2 dreaming 2 006 @ 05625465 n 0000 + 01637633 v 0201 + 00165585 a 0101 + 01637633 v 0101 ~ 05769471 n 0000 ~ 05769726 n 0000 | imaginative thoughts indulged in while awake; "he lives in a dream that has nothing to do with reality" -05769062 09 n 01 nightmare 0 001 @ 05768553 n 0000 | a terrifying or deeply upsetting dream -05769156 09 n 01 wet_dream 0 002 @ 05768553 n 0000 %p 13522611 n 0000 | an erotic dream (usually at night) accompanied by the (nocturnal) emission of semen -05769314 09 n 02 chimera 0 chimaera 0 004 @ 05767733 n 0000 + 02694247 a 0101 + 02694247 a 0103 + 01942279 a 0101 | a grotesque product of the imagination -05769471 09 n 08 reverie 1 revery 1 daydream 0 daydreaming 0 oneirism 0 air_castle 0 castle_in_the_air 0 castle_in_Spain 0 005 @ 05768806 n 0000 + 02418205 v 0401 + 01637633 v 0402 + 02418205 v 0301 + 01637633 v 0302 | absentminded dreaming while awake -05769726 09 n 01 woolgathering 0 002 @ 05768806 n 0000 + 01637633 v 0103 | an idle indulgence in fantasy -05769833 09 n 01 evocation 0 002 @ 05767733 n 0000 + 00930368 v 0102 | imaginative re-creation -05769930 09 n 03 pretense 1 pretence 0 make-believe 0 002 @ 05767733 n 0000 + 01937759 a 0301 | imaginative intellectual play -05770058 09 n 01 search 0 003 @ 05770664 n 0000 ~ 05770257 n 0000 ~ 05770391 n 0000 | the examination of alternative hypotheses; "his search for a move that would avoid checkmate was unsuccessful" -05770257 09 n 01 hunt 0 002 @ 05770058 n 0000 + 01316401 v 0101 | an instance of searching for something; "the hunt for submarines" -05770391 09 n 03 pursuit 0 pursuance 0 quest 0 004 @ 05770058 n 0000 + 01317533 v 0204 + 01317533 v 0104 ~ 00320742 n 0000 | a search for an alternative that meets cognitive criteria; "the pursuit of love"; "life is more than the pursuance of fame"; "a quest for wealth" -05770664 09 n 01 higher_cognitive_process 0 007 @ 05701363 n 0000 ~ 05770058 n 0000 ~ 05770926 n 0000 ~ 05771679 n 0000 ~ 05788149 n 0000 ~ 05804793 n 0000 ~ 05808557 n 0000 | cognitive processes that presuppose the availability of knowledge and put it to use -05770926 09 n 06 thinking 0 thought 0 thought_process 0 cerebration 0 intellection 0 mentation 0 021 @ 05770664 n 0000 + 00628491 v 0403 + 00628491 v 0201 + 00608808 v 0201 + 00739082 v 0201 + 00739340 v 0101 + 00628491 v 0101 ~ 05771532 n 0000 ~ 05771836 n 0000 ~ 05772356 n 0000 ~ 05773407 n 0000 ~ 05773548 n 0000 ~ 05784560 n 0000 ~ 05784699 n 0000 ~ 05784831 n 0000 ~ 05792842 n 0000 ~ 05793000 n 0000 ~ 05794694 n 0000 ~ 05796750 n 0000 ~ 05796937 n 0000 ~ 05797177 n 0000 | the process of using your mind to consider something carefully; "thinking always made him frown"; "she paused for thought" -05771532 09 n 01 free_association 0 001 @ 05770926 n 0000 | a thought process in which ideas (words or images) suggest other ideas in a sequence -05771679 09 n 01 suggestion 1 002 @ 05770664 n 0000 + 00930368 v 0101 | the sequential mental process in which one thought leads to another by association -05771836 09 n 02 construction 0 mental_synthesis 0 003 @ 05770926 n 0000 ~ 05772044 n 0000 ~ 05772215 n 0000 | the creation of a construct; the process of combining ideas into a congruous object of thought -05772044 09 n 01 crystallization 0 002 @ 05771836 n 0000 + 00143704 v 0101 | a mental synthesis that becomes fixed or concrete by a process resembling crystal formation -05772215 09 n 01 gestation 0 003 @ 05771836 n 0000 + 02983097 a 0101 + 01633343 v 0101 | the conception and development of an idea or plan -05772356 09 n 03 reasoning 0 logical_thinking 0 abstract_thought 0 011 @ 05770926 n 0000 + 00632627 v 0101 ~ 05772667 n 0000 ~ 05773049 n 0000 ~ 05773923 n 0000 ~ 05774129 n 0000 ~ 05774614 n 0000 ~ 05775081 n 0000 ~ 05783658 n 0000 ~ 05783768 n 0000 ~ 05783940 n 0000 | thinking that is coherent and logical -05772667 09 n 02 analysis 0 analytic_thinking 0 012 @ 05772356 n 0000 + 00112231 a 0101 + 00112231 a 0102 + 00644583 v 0101 ! 05783940 n 0101 ~ 05781800 n 0000 ~ 05781953 n 0000 ~ 05782140 n 0000 ~ 05782245 n 0000 ~ 05782448 n 0000 ~ 05782713 n 0000 ~ 05784152 n 0000 | the abstract separation of a whole into its constituent parts in order to study the parts and their relations -05773049 09 n 05 argumentation 0 logical_argument 0 argument 1 line_of_reasoning 0 line 1 006 @ 05772356 n 0000 + 00772189 v 0101 + 00772640 v 0101 ~ 05773776 n 0000 ~ 06160244 n 0000 ~ 06656408 n 0000 | a course of reasoning aimed at demonstrating a truth or falsehood; the methodical process of logical reasoning; "I can't follow your line of reasoning" -05773407 09 n 01 line_of_thought 0 001 @ 05770926 n 0000 | a particular way of thinking that is characteristic of some individual or group -05773548 09 n 02 train_of_thought 0 thread 0 001 @ 05770926 n 0000 | the connections that link the various parts of an event or argument together; "I couldn't follow his train of thought"; "he lost the thread of his argument" -05773776 09 n 02 line_of_inquiry 0 line_of_questioning 0 001 @ 05773049 n 0000 | an ordering of questions so as to develop a particular argument -05773923 09 n 01 conjecture 1 005 @ 05772356 n 0000 + 00861216 a 0101 + 00633443 v 0104 ~ 05779371 n 0000 ~ 05779712 n 0000 | reasoning that involves the formation of conclusions from incomplete evidence -05774129 09 n 03 deduction 0 deductive_reasoning 0 synthesis 1 008 @ 05772356 n 0000 + 00111129 a 0301 + 00112628 a 0302 + 00644066 v 0302 + 00636574 v 0103 + 00944924 v 0101 + 00636574 v 0101 ~ 05779116 n 0000 | reasoning from the general to the particular (or from cause to effect) -05774415 09 n 04 generalization 1 generalisation 1 induction 0 inductive_reasoning 0 003 @ 05764197 n 0000 + 00636441 v 0301 + 01022420 v 0101 | reasoning from detailed facts to general principles -05774614 09 n 02 inference 0 illation 0 013 @ 05772356 n 0000 + 01296961 a 0102 + 00723786 a 0101 + 02748952 a 0101 + 01022420 v 0104 + 00944924 v 0102 + 00636574 v 0102 ~ 05780339 n 0000 ~ 05780563 n 0000 ~ 05780718 n 0000 ~ 05780885 n 0000 ~ 05781145 n 0000 ~ 05781347 n 0000 | the reasoning involved in drawing a conclusion or making a logical judgment on the basis of circumstantial evidence and prior conclusions rather than on the basis of direct observation -05775081 09 n 03 prediction 0 anticipation 0 prevision 3 005 @ 05772356 n 0000 + 00917772 v 0101 ~ 05775293 n 0000 ~ 05775407 n 0000 ~ 05776015 n 0000 | the act of predicting (as by reasoning about the future) -05775293 09 n 01 projection 1 001 @ 05775081 n 0000 | a prediction made by extrapolating from past observations -05775407 09 n 03 prophecy 0 prognostication 0 vaticination 0 008 @ 05775081 n 0000 + 00918312 v 0301 + 00926702 v 0302 + 00917772 v 0203 + 01881696 a 0102 + 01881696 a 0101 ~ 05775695 n 0000 ~ 05776212 n 0000 | knowledge of the future (usually said to be obtained from a divine source) -05775695 09 n 01 crystal_gazing 0 001 @ 05775407 n 0000 | staring into a crystal ball to arouse visions of future or distant events -05775829 09 n 01 prevision 1 001 @ 05768252 n 0000 | a prophetic vision (as in a dream) -05775919 09 n 01 retrovision 0 001 @ 05768252 n 0000 | a vision of events in the distant past -05776015 09 n 03 prefiguration 0 foreshadowing 0 adumbration 0 003 @ 05775081 n 0000 + 00871942 v 0208 + 01636993 v 0101 | the act of providing vague advance indications; representing beforehand -05776212 09 n 04 divination 0 foretelling 0 soothsaying 0 fortune_telling 0 012 @ 05775407 n 0000 + 02107588 v 0101 ~ 05776592 n 0000 ~ 05776679 n 0000 ~ 05776875 n 0000 ~ 05777149 n 0000 ~ 05777298 n 0000 ~ 05777439 n 0000 ~ 05777599 n 0000 ~ 05777722 n 0000 ~ 05777830 n 0000 ~ 05778029 n 0000 | the art or gift of prophecy (or the pretense of prophecy) by supernatural means -05776592 09 n 01 arithmancy 0 001 @ 05776212 n 0000 | divination by means of numbers -05776679 09 n 03 dowse 0 dowsing 0 rhabdomancy 0 004 @ 05776212 n 0000 + 10770891 n 0303 + 01315140 v 0201 + 01315140 v 0101 | searching for underground water or minerals by using a dowsing rod -05776875 09 n 01 geomancy 0 002 @ 05776212 n 0000 + 10127916 n 0101 | divination by means of signs connected with the earth (as points taken at random or the arrangement of particles thrown down at random or from the configuration of a region and its relation to another) -05777149 09 n 01 hydromancy 0 002 @ 05776212 n 0000 + 10194865 n 0101 | divination by water (as by patterns seen in the ebb and flow of the tides) -05777298 09 n 01 lithomancy 0 003 @ 05776212 n 0000 + 02911008 a 0101 + 10266744 n 0101 | divination by means of stones or stone talismans -05777439 09 n 01 necromancy 0 004 @ 05776212 n 0000 + 01576845 a 0101 + 02910789 a 0102 + 10351152 n 0101 | conjuring up the dead, especially for prophesying -05777599 09 n 01 oneiromancy 0 002 @ 05776212 n 0000 + 10377732 n 0101 | divination through the interpretation of dreams -05777722 09 n 01 onomancy 0 002 @ 05776212 n 0000 + 10378113 n 0101 | divination by the letters of a name -05777830 09 n 04 palmistry 0 palm_reading 0 chiromancy 0 chirology 0 004 @ 05776212 n 0000 + 02911243 a 0301 + 10395209 n 0303 + 02107817 v 0301 | telling fortunes by lines on the palm of the hand -05778029 09 n 01 pyromancy 0 002 @ 05776212 n 0000 + 10496825 n 0101 | divination by fire or flames -05778131 09 n 02 astrology 0 star_divination 0 020 @ 05778954 n 0000 + 02910506 a 0101 + 09817816 n 0102 + 09817816 n 0101 -c 04615456 n 0000 ~ 05778646 n 0000 -c 07986771 n 0000 -c 08685677 n 0000 -c 09752246 n 0000 -c 09752381 n 0000 -c 09752519 n 0000 -c 09752657 n 0000 -c 09752795 n 0000 -c 09752927 n 0000 -c 09753065 n 0000 -c 09753204 n 0000 -c 09753348 n 0000 -c 09753498 n 0000 -c 09753642 n 0000 -c 09753792 n 0000 | a pseudoscience claiming divination by the positions of the planets and sun and moon -05778646 09 n 01 horoscopy 0 001 @ 05778131 n 0000 | the drawing up and interpretation of horoscopes -05778749 09 n 01 alchemy 0 006 @ 05778954 n 0000 + 02610603 a 0101 + 09781921 n 0101 + 02610603 a 0102 + 00139586 v 0101 -c 02752039 n 0000 | a pseudoscientific forerunner of chemistry in medieval times -05778954 09 n 01 pseudoscience 0 003 @ 05893916 n 0000 ~ 05778131 n 0000 ~ 05778749 n 0000 | an activity resembling science but based on fallacious assumptions -05779116 09 n 01 syllogism 0 008 @ 05774129 n 0000 + 02910644 a 0101 + 10685123 n 0101 + 00653449 v 0101 + 00653449 v 0102 %p 06753030 n 0000 %p 06754184 n 0000 %p 06754415 n 0000 | deductive reasoning in which a conclusion is derived from two premises -05779371 09 n 02 theorization 0 theorisation 0 006 @ 05773923 n 0000 + 00633443 v 0203 + 00633094 v 0101 + 00632931 v 0101 ~ 05779568 n 0000 ~ 05780104 n 0000 | the production or use of theories -05779568 09 n 01 ideology 3 004 @ 05779371 n 0000 + 10197392 n 0101 + 00012932 a 0102 + 00012932 a 0101 | imaginary or visionary theorization -05779712 09 n 02 supposition 1 supposal 1 007 @ 05773923 n 0000 + 00633443 v 0208 + 00631737 v 0203 + 00861216 a 0106 + 00633443 v 0108 + 00631737 v 0103 ~ 05779923 n 0000 | the cognitive process of supposing -05779923 09 n 01 presupposition 0 002 @ 05779712 n 0000 + 00716531 v 0101 | the act of presupposing; a supposition made prior to having knowledge (as for the purpose of argument) -05780104 09 n 03 abstraction 2 generalization 3 generalisation 3 004 @ 05779371 n 0000 + 01022420 v 0302 + 01022420 v 0201 + 00692329 v 0101 | the process of formulating general concepts by abstracting common properties of instances -05780339 09 n 01 analogy 0 006 @ 05774614 n 0000 + 02071973 a 0101 + 09789898 n 0101 + 01419462 a 0101 + 00653283 v 0101 + 00653283 v 0102 | an inference that if things agree in some respects they probably agree in others -05780563 09 n 01 corollary 0 002 @ 05774614 n 0000 ;c 06163751 n 0000 | (logic) an inference that follows directly from the proof of another proposition -05780718 09 n 01 derivation 0 002 @ 05774614 n 0000 + 00636574 v 0104 | a line of reasoning that shows how a conclusion follows logically from accepted propositions -05780885 09 n 03 deduction 1 entailment 0 implication 1 005 @ 05774614 n 0000 + 02636132 v 0301 + 02635189 v 0302 + 02634808 v 0302 + 02635189 v 0201 | something that is inferred (deduced or entailed or implied); "his resignation had political implications" -05781145 09 n 01 extrapolation 1 003 @ 05774614 n 0000 + 01022420 v 0103 + 00593669 v 0101 | an inference about the future (or about some hypothetical situation) based on known facts and observations -05781347 09 n 01 presumption 1 003 @ 05774614 n 0000 ;c 08441203 n 0000 + 00632236 v 0102 | (law) an inference of the truth of a fact from other facts proved or admitted or judicially noticed -05781541 09 n 01 conclusion 1 002 @ 05892096 n 0000 ~ 05781663 n 0000 | an intuitive assumption; "jump to a conclusion" -05781663 09 n 01 non_sequitur 0 002 @ 05781541 n 0000 ;c 06163751 n 0000 | (logic) a conclusion that does not follow from the premises -05781800 09 n 02 breakdown 0 partitioning 0 003 @ 05772667 n 0000 + 00643473 v 0103 ~ 05782884 n 0000 | an analysis into mutually exclusive categories -05781953 09 n 01 cost-benefit_analysis 0 001 @ 05772667 n 0000 | an analysis of the cost effectiveness of different alternatives in order to see whether the benefits outweigh the costs -05782140 09 n 01 dissection 0 002 @ 05772667 n 0000 + 00643473 v 0104 | a minute and critical analysis -05782245 09 n 02 elimination 0 reasoning_by_elimination 0 001 @ 05772667 n 0000 | analysis of a problem into alternative possibilities followed by the systematic rejection of unacceptable alternatives -05782448 09 n 01 reductionism 2 001 @ 05772667 n 0000 | the analysis of complex things into simpler constituents -05782563 09 n 01 reductionism 1 001 @ 05989479 n 0000 | a theory that all complex systems can be completely understood in terms of their components -05782713 09 n 01 systems_analysis 0 001 @ 05772667 n 0000 | analysis of all aspects of a project along with ways to collect information about the operation of its parts -05782884 09 n 02 resolution 0 resolving 0 004 @ 05781800 n 0000 + 02193612 v 0201 ~ 05783041 n 0000 ~ 05783357 n 0000 | analysis into clear-cut components -05783041 09 n 03 factorization 0 factorisation 0 factoring 0 007 @ 05782884 n 0000 ;c 06000644 n 0000 + 00640385 v 0301 + 00640385 v 0201 + 00733250 v 0202 + 00640385 v 0101 + 00733250 v 0101 | (mathematics) the resolution of an entity into factors such that when multiplied together they give the original entity -05783357 09 n 02 diagonalization 0 diagonalisation 0 004 @ 05782884 n 0000 ;c 06013584 n 0000 + 00521874 v 0202 + 00521874 v 0101 | changing a square matrix to diagonal form (with all non-zero elements on the principal diagonal); "the diagonalization of a normal matrix by a unitary transformation" -05783658 09 n 01 ratiocination 0 002 @ 05772356 n 0000 + 00633265 v 0101 | logical and methodical reasoning -05783768 09 n 02 regress 0 reasoning_backward 0 001 @ 05772356 n 0000 | the reasoning involved when you assume the conclusion is true and reason backward to the evidence -05783940 09 n 02 synthesis 0 synthetic_thinking 0 006 @ 05772356 n 0000 + 10687231 n 0101 + 00112628 a 0101 + 00112628 a 0102 + 00644066 v 0102 ! 05772667 n 0101 | the combination of ideas into a complex whole -05784152 09 n 01 trend_analysis 0 001 @ 05772667 n 0000 | analysis of changes over time -05784242 09 n 02 cogitation 0 study 1 006 @ 05785508 n 0000 + 00704388 v 0201 + 02166460 v 0201 + 00703512 v 0101 + 00628491 v 0102 ~ 05784482 n 0000 | attentive consideration and meditation; "after much cogitation he rejected the offer" -05784482 09 n 01 lucubration 0 001 @ 05784242 n 0000 | laborious cogitation -05784560 09 n 01 mysticism 1 004 @ 05770926 n 0000 + 02863464 a 0101 + 02863464 a 0102 + 02863247 a 0102 | obscure or irrational thought -05784699 09 n 01 ideation 0 003 @ 05770926 n 0000 + 00012071 a 0102 + 01636397 v 0103 | the process of forming and relating ideas -05784831 09 n 01 consideration 0 008 @ 05770926 n 0000 + 02130300 v 0102 + 02166460 v 0102 + 00813044 v 0101 + 00689344 v 0103 ~ 05785067 n 0000 ~ 05785311 n 0000 ~ 05785508 n 0000 | the process of giving careful thought to something -05785067 09 n 03 deliberation 1 weighing 0 advisement 0 006 @ 05784831 n 0000 + 00872886 v 0302 + 00950431 v 0203 + 00813044 v 0105 + 00812580 v 0102 ~ 05786372 n 0000 | careful consideration; "a little deliberation would have deterred them" -05785311 09 n 01 exploration 0 004 @ 05784831 n 0000 + 00646271 v 0101 + 00649481 v 0101 + 00648224 v 0103 | a systematic consideration; "he called for a careful exploration of the consequences" -05785508 09 n 06 contemplation 0 reflection 0 reflexion 0 rumination 0 musing 0 thoughtfulness 0 013 @ 05784831 n 0000 + 02418872 a 0601 + 00630380 v 0507 + 00630380 v 040b + 02164825 v 0101 + 00703875 v 0101 + 00630380 v 0106 + 00704388 v 0103 ~ 05784242 n 0000 ~ 05785885 n 0000 ~ 05786184 n 0000 ~ 05786655 n 0000 ~ 05788029 n 0000 | a calm, lengthy, intent consideration -05785885 09 n 02 meditation 0 speculation 1 004 @ 05785508 n 0000 + 00630380 v 020c + 00704388 v 0102 + 00630380 v 0103 | continuous and profound contemplation or musing on a subject or series of subjects of a deep or abstruse nature; "the habit of meditation is the basis for all real knowledge" -05786184 09 n 01 meditation 1 003 @ 05785508 n 0000 ;c 05946687 n 0000 + 00704388 v 0102 | (religion) contemplation of spiritual matters (usually on religious or philosophical subjects) -05786372 09 n 01 think 0 010 @ 05785067 n 0000 ;u 07075172 n 0000 + 00608808 v 0101 + 00629738 v 0101 + 00739082 v 0101 + 00739340 v 0101 + 00723056 v 0101 + 01637166 v 0101 + 00607780 v 0107 + 00628491 v 0101 | an instance of deliberate thinking; "I need to give it a good think" -05786655 09 n 03 introspection 0 self-contemplation 0 self-examination 0 004 @ 05785508 n 0000 + 00631591 v 0101 ~ 05786871 n 0000 ~ 05787005 n 0000 | the contemplation of your own thoughts and desires and conduct -05786871 09 n 02 soul-searching 0 self-analysis 1 001 @ 05786655 n 0000 | a penetrating examination of your own beliefs and motives -05787005 09 n 02 examen 0 examination 3 003 @ 05786655 n 0000 + 02531625 v 0205 + 00644583 v 0204 | a detailed inspection of your conscience (as done daily by Jesuits) -05787175 09 n 01 inwardness 0 003 @ 05669934 n 0000 + 00951247 a 0101 ! 05787498 n 0101 | preoccupation especially with one's attitudes and ethical or ideological values; "the sensitiveness of James's characters, their seeming inwardness"; "inwardness is what an Englishman quite simply has, painlessly, as a birthright" -05787498 09 n 01 outwardness 0 003 @ 05669934 n 0000 + 00950706 a 0101 ! 05787175 n 0101 | concern with outward things or material objects as opposed to the mind and spirit; "what is the origin of the outwardness of our sensations of sound, smell, or taste"; "an abstract conception with feelings of reality and spatial outwardness attached to it" -05787848 09 n 02 omphaloskepsis 0 navel-gazing 0 001 @ 05837128 n 0000 | literally, the contemplation of one's navel, which is an idiom usually meaning complacent self-absorption -05788029 09 n 01 retrospect 0 002 @ 05785508 n 0000 + 00696414 v 0103 | contemplation of things past; "in retrospect" -05788149 09 n 02 decision_making 0 deciding 0 014 @ 05770664 n 0000 + 00684782 a 0201 + 00698855 v 0201 + 00697589 v 0201 ~ 01191755 n 0000 ~ 05788552 n 0000 ~ 05788713 n 0000 ~ 05788924 n 0000 ~ 05789089 n 0000 ~ 05789432 n 0000 ~ 05789808 n 0000 ~ 05790242 n 0000 ~ 05790572 n 0000 ~ 05790944 n 0000 | the cognitive process of reaching a decision; "a good executive must be good at decision making" -05788552 09 n 01 determination 1 001 @ 05788149 n 0000 | deciding or controlling something's outcome or nature; "the determination of grammatical inflections" -05788713 09 n 02 eclecticism 0 eclectic_method 0 003 @ 05788149 n 0000 + 00775486 a 0101 + 10043024 n 0102 | making decisions on the basis of what seems best instead of following some single doctrine or style -05788924 09 n 01 groupthink 0 001 @ 05788149 n 0000 | decision making by a group (especially in a manner that discourages creativity or individual responsibility) -05789089 09 n 03 settlement 0 resolution 1 closure 1 002 @ 05788149 n 0000 + 00764032 v 0101 | something settled or resolved; the outcome of decision making; "they finally reached a settlement with the union"; "they never did achieve a final resolution of their differences"; "he needed to grieve before he could achieve a sense of closure" -05789432 09 n 03 judgment 0 judgement 0 judging 0 006 @ 05788149 n 0000 + 00672433 v 0305 + 00670261 v 0303 + 00648977 a 0101 + 00672433 v 0105 ~ 05789666 n 0000 | the cognitive process of reaching a decision or drawing conclusions -05789666 09 n 02 prejudgment 0 prejudgement 0 002 @ 05789432 n 0000 + 00681281 v 0201 | a judgment reached before the evidence is available -05789808 09 n 05 reversal 0 change_of_mind 0 flip-flop 0 turnabout 0 turnaround 0 004 @ 05788149 n 0000 + 00121678 v 0306 + 00799798 v 0105 ~ 05790012 n 0000 | a decision to reverse an earlier decision -05790012 09 n 04 reconsideration 0 second_thought 0 afterthought 0 rethink 0 003 @ 05789808 n 0000 + 00688768 v 0401 + 00654015 v 0101 | thinking again about a choice previously made; "he had second thoughts about his purchase" -05790242 09 n 03 choice 0 pick 0 selection 0 005 @ 05788149 n 0000 + 00676450 v 0201 ~ 05790452 n 0000 ~ 05790758 n 0000 ~ 05791764 n 0000 | the person or thing chosen or selected; "he was my pick for mayor" -05790452 09 n 01 pleasure 1 001 @ 05790242 n 0000 | a formal expression; "he serves at the pleasure of the President" -05790572 09 n 02 cull 0 reject 0 004 @ 05788149 n 0000 + 02502916 v 0201 + 00796976 v 0201 + 02224781 v 0101 | the person or thing that is rejected or set aside as inferior in quality -05790758 09 n 02 favorite 0 favourite 0 003 @ 05790242 n 0000 + 01816376 a 0202 + 01462882 a 0102 | something regarded with special favor or liking; "that book is one of my favorites" -05790944 09 n 03 option 0 alternative 0 choice 2 009 @ 05788149 n 0000 + 00564667 a 0201 ~ 05791311 n 0000 ~ 05791452 n 0000 ~ 05791864 n 0000 ~ 05792010 n 0000 ~ 05792312 n 0000 ~ 05792575 n 0000 ~ 05792691 n 0000 | one of a number of things from which only one can be chosen; "what option did I have?"; "there no other alternative"; "my only choice is to refuse" -05791311 09 n 01 obverse 0 001 @ 05790944 n 0000 | the more conspicuous of two alternatives or cases or sides; "the obverse of this issue" -05791452 09 n 02 preference 0 druthers 0 002 @ 05790944 n 0000 ~ 05791602 n 0000 | the right or chance to choose; "given my druthers, I'd eat cake" -05791602 09 n 01 wish 0 001 @ 05791452 n 0000 | the particular preference that you have; "it was his last wish"; "they should respect the wishes of the people" -05791764 09 n 01 way 0 001 @ 05790242 n 0000 | doing as one pleases or chooses; "if I had my way" -05791864 09 n 02 default_option 0 default 0 001 @ 05790944 n 0000 | an option that is selected automatically unless an alternative is specified -05792010 09 n 03 possibility 1 possible_action 0 opening 0 003 @ 05790944 n 0000 + 00044353 a 0102 ~ 05792192 n 0000 | a possible alternative; "bankruptcy is always a possibility" -05792192 09 n 01 possible 0 001 @ 05792010 n 0000 | something that can be done; "politics is the art of the possible" -05792312 09 n 02 impossibility 0 impossible_action 0 002 @ 05790944 n 0000 ~ 05792446 n 0000 | an alternative that is not available -05792446 09 n 01 impossible 0 001 @ 05792312 n 0000 | something that cannot be done; "his assignment verged on the impossible" -05792575 09 n 01 Hobson's_choice 0 001 @ 05790944 n 0000 | the choice of taking what is offered or nothing at all -05792691 09 n 01 soft_option 0 001 @ 05790944 n 0000 | an easier alternative; "the instructor took the soft option and gave the boy a passing grade" -05792842 09 n 01 excogitation 0 002 @ 05770926 n 0000 + 01632411 v 0104 | thinking something out with care in order to achieve complete understanding of it -05793000 09 n 01 explanation 0 007 @ 05770926 n 0000 ~ 05766247 n 0000 ~ 05793210 n 0000 %p 05793554 n 0000 ~ 05794057 n 0000 ~ 05794403 n 0000 ~ 05989479 n 0000 | thought that makes something comprehensible -05793210 09 n 02 rationale 0 principle 2 004 @ 05793000 n 0000 ;c 08441203 n 0000 + 00633265 v 0101 ~ 06163396 n 0000 | (law) an explanation of the fundamental reasons (especially an explanation of the working of some device in terms of laws of nature); "the rationale for capital punishment"; "the principles of internal-combustion engines" -05793554 09 n 06 basis 0 base 0 foundation 0 fundament 0 groundwork 0 cornerstone 0 006 @ 05892096 n 0000 #p 05793000 n 0000 + 00636888 v 0304 + 00901060 a 0201 + 00636888 v 0202 ~ 05793907 n 0000 | the fundamental assumptions from which something is begun or developed or calculated or explained; "the whole argument rested on a basis of conjecture" -05793907 09 n 01 meat_and_potatoes 0 001 @ 05793554 n 0000 | the fundamental part; "successful negotiation is the meat and potatoes of arbitration" -05794057 09 n 01 key 0 001 @ 05793000 n 0000 | something crucial for explaining; "the key to development is economic integration" -05794189 09 n 01 natural_history 0 001 @ 05999797 n 0000 | the scientific study of plants or animals (more observational than experimental) usually published in popular magazines rather than in academic journals -05794403 09 n 02 rationalization 0 rationalisation 0 004 @ 05793000 n 0000 + 00894738 v 0206 + 00894738 v 0105 ~ 05794618 n 0000 | the cognitive process of making something seem consistent with or based on reason -05794618 09 n 01 raison_d'etre 0 001 @ 05794403 n 0000 | reason for being -05794694 09 n 03 planning 0 preparation 0 provision 0 007 @ 05770926 n 0000 + 01638368 v 0101 ~ 05795044 n 0000 ~ 05795835 n 0000 ~ 05795957 n 0000 ~ 05796423 n 0000 ~ 05796617 n 0000 | the cognitive process of thinking about what you will do in the event of something happening; "his planning for retirement was hindered by several uncertainties" -05795044 09 n 02 agreement 0 arrangement 1 004 @ 05794694 n 0000 + 01021629 v 0201 ~ 05795244 n 0000 ~ 05795334 n 0000 | the thing arranged or agreed to; "they made arrangements to meet in Chicago" -05795244 09 n 01 collusion 0 002 @ 05795044 n 0000 + 00707624 v 0102 | secret agreement -05795334 09 n 01 prearrangement 0 003 @ 05795044 n 0000 + 01648790 v 0101 ~ 05795460 n 0000 | something arranged in advance -05795460 09 n 01 reservation 1 004 @ 05795334 n 0000 + 02498320 v 0101 ~ 05795654 n 0000 + 00795632 v 0101 | something reserved in advance (as a hotel accommodation or a seat on a plane etc.) -05795654 09 n 01 upgrade 0 003 @ 05795460 n 0000 + 00583991 v 0101 + 00584220 v 0101 | a reservation that is improved; "I got an upgrade to first class when coach class was full" -05795835 09 n 01 applecart 0 001 @ 05794694 n 0000 | the planning that is disrupted when someone `upsets the applecart' -05795957 09 n 02 mens_rea 0 malice_aforethought 0 003 @ 05794694 n 0000 ;c 08441203 n 0000 ~ 05796222 n 0000 | (law) criminal intent; the thoughts and intentions behind a wrongful act (including knowledge that the act is illegal); often at issue in murder trials -05796222 09 n 01 premeditation 1 003 @ 05795957 n 0000 ;c 08441203 n 0000 + 00704073 v 0101 | (law) thought and intention to commit a crime well in advance of the crime; goes to show criminal intent -05796423 09 n 02 calculation 1 deliberation 0 002 @ 05794694 n 0000 + 00926472 v 0102 | planning something carefully and intentionally; "it was the deliberation of his act that was insulting" -05796617 09 n 02 premeditation 0 forethought 1 002 @ 05794694 n 0000 + 00704073 v 0101 | planning or plotting in advance of acting -05796750 09 n 01 problem_solving 0 005 @ 05770926 n 0000 %p 05796937 n 0000 %p 05797473 n 0000 ~ 05797597 n 0000 ~ 05802185 n 0000 | the thought processes involved in solving a problem -05796937 09 n 01 convergent_thinking 0 003 @ 05770926 n 0000 #p 05796750 n 0000 ! 05797177 n 0101 | thinking that brings together information focussed on solving a problem (especially solving problems that have a single correct solution) -05797177 09 n 02 divergent_thinking 0 out-of-the-box_thinking 0 003 @ 05770926 n 0000 #p 05624700 n 0000 ! 05796937 n 0101 | thinking that moves away in diverging directions so as to involve a variety of aspects and which sometimes lead to novel ideas and solutions; associated with creativity -05797473 09 n 01 inspiration 1 002 @ 05707495 n 0000 #p 05796750 n 0000 | a sudden intuition as part of solving a problem -05797597 09 n 03 inquiry 1 enquiry 0 research 0 009 @ 05796750 n 0000 + 00877327 v 0301 + 00648224 v 0301 ~ 05797899 n 0000 ~ 05798043 n 0000 ~ 05798315 n 0000 ~ 05800611 n 0000 ~ 05800998 n 0000 ~ 05801594 n 0000 | a search for knowledge; "their pottery deserves more research than it has received" -05797899 09 n 01 nature_study 0 001 @ 05797597 n 0000 | the study of animals and plants in the natural world (usually at an elementary level) -05798043 09 n 02 experiment 0 experimentation 0 006 @ 05797597 n 0000 + 02532886 v 0201 + 02532595 v 0201 + 02532595 v 0101 ~ 05799071 n 0000 ~ 05799212 n 0000 | the testing of an idea; "it was an experiment in living"; "not all experimentation is done in laboratories" -05798315 09 n 01 empirical_research 0 001 @ 05797597 n 0000 | an empirical search for knowledge -05798413 09 n 01 control_experiment 0 001 @ 00639556 n 0000 | an experiment designed to control for variables affecting the results of another experiment -05798569 09 n 02 control_condition 0 control 2 004 @ 05924920 n 0000 #p 00639556 n 0000 + 00663160 v 0201 + 02520997 v 0201 | a standard against which other conditions can be compared in a scientific experiment; "the control condition was inappropriate for the conclusions he wished to draw" -05798863 09 n 02 condition 1 experimental_condition 0 002 @ 01023820 n 0000 #p 00639556 n 0000 | the procedure that is varied in order to estimate a variable's effect by comparison with a control condition -05799071 09 n 01 pilot_experiment 0 001 @ 05798043 n 0000 | a preliminary experiment whose outcome can lead to a more extensive experiment -05799212 09 n 04 trial 0 trial_run 0 test 2 tryout 0 010 @ 05798043 n 0000 + 02531625 v 0404 + 01195299 v 0403 + 02531625 v 0301 + 01195299 v 0102 ~ 05799581 n 0000 ~ 05799761 n 0000 ~ 05799952 n 0000 ~ 05800153 n 0000 ~ 05800527 n 0000 | trying something to find out about it; "a sample for ten days free trial"; "a trial of progesterone failed to relieve the pain" -05799581 09 n 02 field_trial 0 field_test 0 002 @ 05799212 n 0000 + 02532261 v 0201 | a test of the performance of some new product under the conditions in which it will be used -05799761 09 n 01 alpha_test 0 002 @ 05799212 n 0000 ;c 03082979 n 0000 | (computer science) a first test of an experimental product (such as computer software) carried out by the developer -05799952 09 n 01 beta_test 0 002 @ 05799212 n 0000 ;c 03082979 n 0000 | (computer science) a second test of an experimental product (such as computer software) carried out by an outside organization -05800153 09 n 01 road_test 0 002 @ 05799212 n 0000 ~ 05800387 n 0000 | a test to insure that a vehicle is roadworthy -05800272 09 n 01 testament 0 001 @ 05959954 n 0000 | a profession of belief; "he stated his political testament" -05800387 09 n 01 test_drive 0 002 @ 05800153 n 0000 + 01931375 v 0101 | test of the roadworthiness of a vehicle one is considering buying -05800527 09 n 01 trial_balloon 0 001 @ 05799212 n 0000 | a test of public opinion -05800611 09 n 02 probe 0 investigation 0 004 @ 05797597 n 0000 + 00785962 v 0201 + 00788564 v 0101 ~ 05800838 n 0000 | an inquiry into unfamiliar or questionable activities; "there was a congressional probe into the scandal" -05800838 09 n 01 fishing_expedition 0 001 @ 05800611 n 0000 | an investigation undertaken in the hope (but not the stated purpose) of discovering information -05800998 09 n 04 poll 0 opinion_poll 0 public_opinion_poll 0 canvass 0 007 @ 05797597 n 0000 + 02458747 v 0401 + 02454312 v 0402 + 10451590 n 0101 + 02454312 v 0101 ~ 05801286 n 0000 ~ 05801465 n 0000 | an inquiry into public opinion conducted by interviewing a random sample of people -05801286 09 n 01 exit_poll 0 001 @ 05800998 n 0000 | a poll of voters as they leave the voting place; usually taken by news media in order to predict the outcome of an election -05801465 09 n 02 straw_vote 0 straw_poll 0 001 @ 05800998 n 0000 | an unofficial vote taken to determine opinion on some issue -05801594 09 n 01 heraldry 0 025 @ 05797597 n 0000 -c 00058280 a 0000 -c 00059028 a 0000 -c 00202677 a 0000 -c 00203495 a 0000 -c 00743183 a 0000 -c 00743742 a 0000 -c 00998479 a 0000 -c 01233225 a 0000 -c 01235439 a 0000 -c 01236842 a 0000 -c 01236964 a 0000 -c 01237656 a 0000 -c 01238773 a 0000 -c 01238914 a 0000 -c 02485050 a 0000 -c 02568076 a 0000 -c 03045059 a 0000 -c 03058726 n 0000 -c 03131038 n 0000 -c 03185562 n 0000 -c 03330120 n 0000 -c 03362890 n 0000 -c 03853734 n 0000 -c 02143124 v 0000 | the study and classification of armorial bearings and the tracing of genealogies -05802185 09 n 04 calculation 0 computation 0 figuring 0 reckoning 0 013 @ 05796750 n 0000 + 00637259 v 0406 + 00637259 v 0307 + 02907473 a 0201 + 00637259 v 0204 + 02265231 v 0102 + 00637259 v 0101 ~ 05802547 n 0000 ~ 05802730 n 0000 ~ 05802912 n 0000 ~ 05803379 n 0000 ~ 06014730 n 0000 ~ 06015505 n 0000 | problem solving that involves numbers or quantities -05802547 09 n 01 extrapolation 0 003 @ 05802185 n 0000 ;c 06000644 n 0000 + 00642644 v 0102 | (mathematics) calculation of the value of a function outside the range of known values -05802730 09 n 01 interpolation 0 003 @ 05802185 n 0000 ;c 06000644 n 0000 + 00642644 v 0101 | (mathematics) calculation of the value of a function between the values already known -05802912 09 n 01 conversion 0 003 @ 05802185 n 0000 ~ 05803095 n 0000 ~ 05803212 n 0000 | a change in the units or form of an expression: "conversion from Fahrenheit to Centigrade" -05803095 09 n 01 data_conversion 0 001 @ 05802912 n 0000 | conversion from one way of encoding data to another way -05803212 09 n 02 digitization 0 digitisation 0 003 @ 05802912 n 0000 + 00563824 v 0202 + 00563824 v 0101 | conversion of analog information into digital information -05803379 09 n 04 estimate 0 estimation 0 approximation 0 idea 2 009 @ 05802185 n 0000 + 00672433 v 0201 + 00672433 v 0101 ~ 01005957 n 0000 ~ 05803747 n 0000 ~ 05803938 n 0000 ~ 05804136 n 0000 ~ 05804274 n 0000 ~ 05804491 n 0000 | an approximate calculation of quantity or degree or worth; "an estimate of what it would cost"; "a rough idea how long it would take" -05803747 09 n 02 credit_rating 0 credit 0 001 @ 05803379 n 0000 | an estimate, based on previous dealings, of a person's or an organization's ability to fulfill their financial commitments -05803938 09 n 05 guess 0 guesswork 0 guessing 0 shot 0 dead_reckoning 0 004 @ 05803379 n 0000 + 00916909 v 0301 + 00631737 v 0106 + 00916909 v 0101 | an estimate based on little or no information -05804136 09 n 02 guesstimate 0 guestimate 0 002 @ 05803379 n 0000 + 00918746 v 0101 | an estimate that combines reasoning with guessing -05804274 09 n 04 overestimate 0 overestimation 0 overrating 0 overreckoning 0 004 @ 05803379 n 0000 + 00672017 v 0302 + 00672017 v 0201 + 00695475 v 0102 | a calculation that results in an estimate that is too high -05804491 09 n 04 underestimate 0 underestimation 0 underrating 0 underreckoning 0 007 @ 05803379 n 0000 + 00671335 v 0302 + 00695761 v 0202 + 00671335 v 0201 + 00673766 v 0202 + 00673766 v 0102 + 00695761 v 0102 | an estimation that is too low; an estimate that is less than the true or actual value -05804793 09 n 01 knowing 0 008 @ 05770664 n 0000 + 00594621 v 0101 ~ 05675905 n 0000 ~ 05676476 n 0000 ~ 05805012 n 0000 ~ 05805157 n 0000 ~ 05805277 n 0000 ~ 05805475 n 0000 | a clear and certain mental apprehension -05805012 09 n 01 know 0 001 @ 05804793 n 0000 | the fact of being aware of information that is known to few people; "he is always in the know" -05805157 09 n 02 cognizance 1 ken 0 001 @ 05804793 n 0000 | range of what one can know or understand; "beyond my ken" -05805277 09 n 04 prevision 2 foresight 0 farsightedness 0 prospicience 0 004 @ 05804793 n 0000 + 01895296 a 0405 + 01895296 a 0302 + 00720808 v 0102 | seeing ahead; knowing in advance; foreseeing -05805475 09 n 04 understanding 1 apprehension 0 discernment 1 savvy 0 013 @ 05804793 n 0000 + 00588221 v 0404 + 00588221 v 0208 + 00591115 v 0101 + 00588888 v 0101 ~ 05805902 n 0000 ~ 05806380 n 0000 ~ 05806498 n 0000 ~ 05806623 n 0000 ~ 05806855 n 0000 ~ 05807147 n 0000 ~ 05807306 n 0000 ~ 05807540 n 0000 | the cognitive condition of someone who understands; "he has virtually no understanding of social cause and effect" -05805902 09 n 01 comprehension 0 004 @ 05805475 n 0000 + 02106506 v 0102 + 00588221 v 0103 ! 05806231 n 0101 | an ability to understand the meaning or importance of something (or the knowledge acquired as a result); "how you can do that is beyond my comprehension"; "he was famous for his comprehension of American literature" -05806231 09 n 01 incomprehension 0 002 @ 05644922 n 0000 ! 05805902 n 0101 | an inability to understand; "his incomprehension of the consequences" -05806380 09 n 01 self-knowledge 0 001 @ 05805475 n 0000 | an understanding of yourself and your goals and abilities -05806498 09 n 01 smattering 0 002 @ 05805475 n 0000 + 00963961 v 0101 | a slight or superficial understanding of a subject -05806623 09 n 03 appreciation 0 grasp 0 hold 0 003 @ 05805475 n 0000 + 00588221 v 0206 ~ 05807012 n 0000 | understanding of the nature or meaning or quality or magnitude of something; "he has a good grasp of accounting practices" -05806855 09 n 01 grasping 0 002 @ 05805475 n 0000 + 00588221 v 0106 | understanding with difficulty; "the lecture was beyond his most strenuous graspings" -05807012 09 n 01 sense 6 001 @ 05806623 n 0000 | a natural appreciation or ability; "a keen musical sense"; "a good sense of timing" -05807147 09 n 01 hindsight 0 001 @ 05805475 n 0000 | understanding the nature of an event after it has happened; "hindsight is always better than foresight" -05807306 09 n 03 insight 1 brainstorm 0 brainwave 0 006 @ 05805475 n 0000 + 00630223 v 0201 ~ 05807933 n 0000 ~ 05808102 n 0000 ~ 05808218 n 0000 ~ 05808442 n 0000 | the clear (and often sudden) understanding of a complex situation -05807540 09 n 03 realization 0 realisation 0 recognition 2 005 @ 05805475 n 0000 + 00728617 v 0204 + 00591115 v 0203 + 00728617 v 0103 + 00591115 v 0102 | coming to understand something clearly and distinctly; "a growing realization of the risk involved"; "a sudden recognition of the problem he faced"; "increasing recognition that diabetes frequently coexists with other chronic diseases" -05807933 09 n 01 light 0 001 @ 05807306 n 0000 | mental understanding as an enlightening experience; "he finally saw the light"; "can you shed light on this problem?" -05808102 09 n 01 revelation 0 002 @ 05807306 n 0000 + 00933821 v 0105 | an enlightening or astonishing disclosure -05808218 09 n 03 discovery 0 breakthrough 0 find 0 008 @ 05807306 n 0000 + 01637982 v 0302 + 00918872 v 0302 + 02154508 v 0104 + 02128066 v 0101 + 01637982 v 0101 + 00598954 v 0108 + 00721437 v 0101 | a productive insight -05808442 09 n 01 flash 0 001 @ 05807306 n 0000 | a sudden brilliant understanding; "he had a flash of intuition" -05808557 09 n 02 linguistic_process 0 language 1 002 @ 05770664 n 0000 ~ 05808794 n 0000 | the cognitive processes involved in producing and understanding linguistic communication; "he didn't have the language to express his feelings" -05808794 09 n 01 reading 0 006 @ 05808557 n 0000 + 00625119 v 0101 ~ 05809082 n 0000 ~ 06598445 n 0000 ~ 06598648 n 0000 ~ 06598746 n 0000 | the cognitive process of understanding a written linguistic message; "his main reading was detective stories"; "suggestions for further reading" -05809082 09 n 01 speed-reading 0 001 @ 05808794 n 0000 | reading at speeds significantly faster than normal -05809192 09 n 03 content 0 cognitive_content 0 mental_object 0 023 @ 00023271 n 0000 ~ 05809745 n 0000 ~ 05810948 n 0000 ~ 05811214 n 0000 ~ 05813457 n 0000 ~ 05814162 n 0000 ~ 05814291 n 0000 ~ 05814650 n 0000 ~ 05833840 n 0000 ~ 05921123 n 0000 ~ 05926236 n 0000 ~ 05926676 n 0000 ~ 05941423 n 0000 ~ 05979909 n 0000 ~ 05980412 n 0000 ~ 05980875 n 0000 ~ 05984287 n 0000 ~ 05984584 n 0000 ~ 05984936 n 0000 ~ 05985381 n 0000 ~ 05988282 n 0000 ~ 05999266 n 0000 ~ 05999455 n 0000 | the sum or range of what has been perceived, discovered, or learned -05809745 09 n 01 tradition 1 003 @ 05809192 n 0000 + 01690767 a 0101 + 00611047 a 0101 | an inherited pattern of thought or action -05809878 09 n 02 world 0 reality 0 002 @ 05984584 n 0000 ~ 05810250 n 0000 | all of your experiences that determine how things appear to you; "his world was shattered"; "we live in different worlds"; "for them demons were as much a part of reality as trees were" -05810143 09 n 01 otherworld 0 001 @ 00002137 n 0000 | an abstract spiritual world beyond earthly reality -05810250 09 n 02 real_world 0 real_life 0 001 @ 05809878 n 0000 | the practical world as opposed to the academic world; "a good consultant must have a lot of experience in the real world" -05810440 09 n 01 deja_vu 0 001 @ 05813626 n 0000 | the experience of thinking that a new situation had occurred before -05810561 09 n 02 life 0 living 0 002 @ 05984584 n 0000 + 02614387 v 0201 | the experience of being alive; the course of human events and activities; "he could no longer cope with the complexities of life" -05810768 09 n 02 reliving 0 re-experiencing 0 002 @ 05984584 n 0000 + 00597216 v 0101 | a recurrence of a prior experience; "the reliving of a strong emotion can be therapeutic" -05810948 09 n 01 object 1 008 @ 05809192 n 0000 ~ 05811466 n 0000 ~ 05811662 n 0000 ~ 05811884 n 0000 ~ 05812038 n 0000 ~ 05812921 n 0000 ~ 05813109 n 0000 ~ 05813229 n 0000 | the focus of cognitions or feelings; "objects of thought"; "the object of my affection" -05811214 09 n 03 food 0 food_for_thought 0 intellectual_nourishment 0 002 @ 05809192 n 0000 ~ 05811380 n 0000 | anything that provides mental stimulus for thinking -05811380 09 n 01 pabulum 0 001 @ 05811214 n 0000 | insipid intellectual nourishment -05811466 09 n 01 antipathy 0 003 @ 05810948 n 0000 + 01245138 a 0102 + 01293542 a 0101 | the object of a feeling of intense aversion; something to be avoided; "cats were his greatest antipathy" -05811662 09 n 02 bugbear 0 hobgoblin 0 001 @ 05810948 n 0000 | an object of dread or apprehension; "Germany was always a bugbear for France"; "A foolish consistency is the hobgoblin of little minds"--Ralph Waldo Emerson -05811884 09 n 01 execration 0 003 @ 05810948 n 0000 + 01774426 v 0104 + 00864910 v 0102 | the object of cursing or detestation; that which is execrated -05812038 09 n 04 center 1 centre 1 center_of_attention 0 centre_of_attention 0 008 @ 05810948 n 0000 + 01277097 a 0102 + 02676496 v 0106 + 00722232 v 0103 ~ 05812370 n 0000 ~ 05812485 n 0000 ~ 05812646 n 0000 ~ 05812813 n 0000 | the object upon which interest and attention focuses; "his stories made him the center of the party" -05812370 09 n 01 conversation_piece 0 001 @ 05812038 n 0000 | something interesting that stimulates conversation -05812485 09 n 01 crosshairs 0 002 @ 05812038 n 0000 ;u 07075172 n 0000 | a center of interest; "the war on terrorism has put Saddam Hussein in the crosshairs" -05812646 09 n 01 cynosure 0 001 @ 05812038 n 0000 | something that strongly attracts attention and admiration; "if he was the cynosure of all eyes he didn't notice" -05812813 09 n 01 eye-catcher 0 001 @ 05812038 n 0000 | a striking person or thing that attracts attention -05812921 09 n 01 hallucination 1 002 @ 05810948 n 0000 + 02117649 v 0101 | an object perceived during a hallucinatory episode; "he refused to believe that the angel was a hallucination" -05813109 09 n 01 infatuation 0 002 @ 05810948 n 0000 + 01760677 v 0101 | an object of extravagant short-lived passion -05813229 09 n 02 love 0 passion 0 004 @ 05810948 n 0000 + 01775535 v 0101 + 01828736 v 0101 + 01775164 v 0101 | any object of warm affection or devotion; "the theater was her first love"; "he has a passion for cock fighting"; -05813457 09 n 02 noumenon 0 thing-in-itself 0 001 @ 05809192 n 0000 | the intellectual conception of a thing as it is in itself, not as it is known through perception -05813626 09 n 01 reminder 0 006 @ 05984584 n 0000 + 00610538 v 0101 ~ 05810440 n 0000 ~ 05813822 n 0000 ~ 05813912 n 0000 ~ 05814019 n 0000 | an experience that causes you to remember something -05813822 09 n 02 memento 0 souvenir 0 001 @ 05813626 n 0000 | a reminder of past events -05813912 09 n 01 memento_mori 0 001 @ 05813626 n 0000 | a reminder (as a death's head) of your mortality -05814019 09 n 01 shades_of 0 001 @ 05813626 n 0000 | something that reminds you of someone or something; "aren't there shades of 1948 here?" -05814162 09 n 02 universe 0 universe_of_discourse 0 001 @ 05809192 n 0000 | everything stated or assumed in a given discussion -05814291 09 n 04 topic 0 subject 1 issue 0 matter 0 007 @ 05809192 n 0000 + 02645839 v 0402 + 02817339 a 0101 ~ 05815517 n 0000 ~ 05815691 n 0000 ~ 05815890 n 0000 ~ 05816154 n 0000 | some situation or event that is thought about; "he kept drifting off the topic"; "he had been thinking about the subject for several years"; "it is a matter for the police" -05814650 09 n 01 issue 1 005 @ 05809192 n 0000 ~ 05814952 n 0000 ~ 05815075 n 0000 ~ 05815267 n 0000 ~ 05815412 n 0000 | an important question that is in dispute and must be settled; "the issue could be settled by requiring public education for everyone"; "politicians never discuss the real issues" -05814952 09 n 02 gut_issue 0 hot-button_issue 0 001 @ 05814650 n 0000 | an issue that elicits strong emotional reactions -05815075 09 n 01 paramount_issue 0 001 @ 05814650 n 0000 | an issue whose settlement is more important than anything else; and issue that must be settled before anything else can be settled -05815267 09 n 02 pocketbook_issue 0 bread-and-butter_issue 0 001 @ 05814650 n 0000 | an issue whose settlement will affect financial resources -05815412 09 n 01 quodlibet 0 001 @ 05814650 n 0000 | an issue that is presented for formal disputation -05815517 09 n 01 area 0 003 @ 05814291 n 0000 ~ 05998994 n 0000 ~ 05999134 n 0000 | a subject of study; "it was his area of specialization"; "areas of interest include..." -05815691 09 n 01 blind_spot 0 001 @ 05814291 n 0000 | a subject about which you are ignorant or prejudiced and fail to exercise good judgment; "golf is one of his blind spots and he's proud of it" -05815890 09 n 01 remit 0 002 @ 05814291 n 0000 ;u 08860123 n 0104 | the topic that a person, committee, or piece of research is expected to deal with or has authority to deal with; "they set up a group with a remit to suggest ways for strengthening family life" -05816154 09 n 02 res_judicata 0 res_adjudicata 0 001 @ 05814291 n 0000 | a matter already settled in court; cannot be raised again -05816287 09 n 01 information 0 013 @ 00023271 n 0000 + 00831651 v 0101 ~ 05816622 n 0000 ~ 05817145 n 0000 ~ 05817396 n 0000 ~ 05820620 n 0000 ~ 05822746 n 0000 ~ 05823517 n 0000 ~ 05823747 n 0000 ~ 05823932 n 0000 ~ 05824313 n 0000 ~ 05827129 n 0000 ~ 05827684 n 0000 | knowledge acquired through study or experience or instruction -05816622 09 n 02 datum 0 data_point 0 003 @ 05816287 n 0000 ~ 05816790 n 0000 ~ 06021499 n 0000 | an item of factual information derived from measurement or research -05816790 09 n 03 reading 2 meter_reading 0 indication 0 005 @ 05816622 n 0000 + 00772640 v 0302 + 00922867 v 0101 ~ 15129927 n 0000 ~ 15284878 n 0000 | a datum about some physical state that is presented to a user by a meter or similar instrument; "he could not believe the meter reading"; "the barometer gave clear indications of an approaching storm" -05817145 09 n 04 acquaintance 0 familiarity 0 conversance 0 conversancy 0 006 @ 05816287 n 0000 + 01307067 a 0401 + 01307067 a 0301 + 01307067 a 0202 + 00453053 a 0201 + 00901103 v 0103 | personal knowledge or information about someone or something -05817396 09 n 01 fact 1 010 @ 05816287 n 0000 ~ 05817743 n 0000 ~ 05817845 n 0000 ~ 05818182 n 0000 ~ 05818388 n 0000 ~ 05818620 n 0000 ~ 05818741 n 0000 ~ 05819149 n 0000 ~ 05819338 n 0000 ~ 05819453 n 0000 | a piece of information about circumstances that exist or events that have occurred; "first you must collect all the facts of the case" -05817743 09 n 01 case 0 001 @ 05817396 n 0000 | the actual state of things; "that was not the case" -05817845 09 n 03 detail 0 item 0 point 1 009 @ 05817396 n 0000 + 00946105 v 0203 + 00946105 v 0204 + 00956250 v 0101 ~ 05819890 n 0000 ~ 05820023 n 0000 ~ 05820170 n 0000 ~ 05820325 n 0000 ~ 05820462 n 0000 | an isolated fact that is considered separately from the whole; "several of the details are similar"; "a point of information" -05818182 09 n 02 particular 0 specific 0 003 @ 05817396 n 0000 ! 05818388 n 0201 ! 05818388 n 0101 | a fact about some part (as opposed to general); "he always reasons from the particular to the general" -05818388 09 n 01 general 0 005 @ 05817396 n 0000 + 00783840 a 0101 + 01101391 a 0101 ! 05818182 n 0101 ! 05818182 n 0102 | a fact about the whole (as opposed to particular); "he discussed the general but neglected the particular" -05818620 09 n 01 matter_of_fact 0 001 @ 05817396 n 0000 | a matter that is an actual fact or is demonstrable as a fact -05818741 09 n 01 observation 2 007 @ 05817396 n 0000 + 02455407 v 0102 + 02154508 v 0102 + 02118933 v 0103 + 02169352 v 0101 + 00732552 v 0101 ~ 05818978 n 0000 | facts learned by observing; "he reported his observations to the mayor" -05818978 09 n 01 scientific_fact 0 001 @ 05818741 n 0000 | an observation that has been confirmed repeatedly and is accepted as true (although its truth is never final) -05819149 09 n 01 reason 1 003 @ 05817396 n 0000 ~ 06797671 n 0000 ~ 06797947 n 0000 | a fact that logically justifies some premise or conclusion; "there is reason to believe he is lying" -05819338 09 n 01 score 1 001 @ 05817396 n 0000 | the facts about an actual situation; "he didn't know the score" -05819453 09 n 01 truth 0 003 @ 05817396 n 0000 ~ 05819644 n 0000 ~ 05819773 n 0000 | a fact that has been verified; "at last he knew the truth"; "the truth is that he didn't want to do it" -05819644 09 n 01 home_truth 0 001 @ 05819453 n 0000 | an important truth that is unpleasant to acknowledge (as about yourself) -05819773 09 n 01 verity 0 001 @ 05819453 n 0000 | an enduring or necessary ethical or religious or aesthetic truth -05819890 09 n 01 minutia 0 001 @ 05817845 n 0000 | a small or minor detail; "he had memorized the many minutiae of the legal code" -05820023 09 n 02 nook_and_cranny 0 nooks_and_crannies 0 001 @ 05817845 n 0000 | something remote; "he explored every nook and cranny of science" -05820170 09 n 02 respect 0 regard 0 002 @ 05817845 n 0000 + 02677097 v 0203 | (usually preceded by `in') a detail or point; "it differs in that respect" -05820325 09 n 01 sticking_point 0 001 @ 05817845 n 0000 | a point at which an impasse arises in progress toward an agreement or a goal -05820462 09 n 03 technicality 0 trifle 0 triviality 0 003 @ 05817845 n 0000 + 02165432 a 0302 + 02809220 a 0101 | a detail that is considered insignificant -05820620 09 n 04 example 0 illustration 2 instance 0 representative 0 014 @ 05816287 n 0000 + 01021128 v 0303 + 02155799 v 0301 + 02155493 v 0301 + 01021128 v 0202 + 02469119 a 0102 + 02723733 v 0101 + 01021128 v 0101 ~ 05821102 n 0000 ~ 05821246 n 0000 ~ 05821486 n 0000 ~ 05821646 n 0000 ~ 05821775 n 0000 ~ 05822239 n 0000 | an item of information that is typical of a class or group; "this patient provides a typical example of the syndrome"; "there is an example on page 10" -05821102 09 n 02 apology 0 excuse 0 001 @ 05820620 n 0000 | a poor example; "it was an apology for a meal"; "a poor excuse for an automobile" -05821246 09 n 01 exception 1 002 @ 05820620 n 0000 + 01676026 a 0102 | an instance that does not conform to a rule or generalization; "all her children were brilliant; the only exception was her last child"; "an exception tests the rule" -05821486 09 n 02 precedent 0 case_in_point 0 002 @ 05820620 n 0000 + 02712443 v 0102 | an example that is used to justify similar occurrences at a later time -05821646 09 n 01 quintessence 1 002 @ 05820620 n 0000 + 02998269 a 0101 | the most typical example or representative of a type -05821775 09 n 01 sample 0 007 @ 05820620 n 0000 + 01195299 v 0101 ~ 05822001 n 0000 ~ 05822085 n 0000 ~ 05822337 n 0000 ~ 05822507 n 0000 ~ 05822612 n 0000 | a small part of something intended as representative of the whole -05822001 09 n 01 coupon 0 001 @ 05821775 n 0000 | a test sample of some substance -05822085 09 n 01 cross_section 0 003 @ 05821775 n 0000 ;c 06018465 n 0000 + 02943631 a 0101 | a sample meant to be representative of a whole population -05822239 09 n 01 specimen 0 001 @ 05820620 n 0000 | an example regarded as typical of its class -05822337 09 n 01 grab_sample 0 002 @ 05821775 n 0000 ;c 06018465 n 0000 | a single sample or measurement taken at a specific time or over as short a period as feasible -05822507 09 n 01 random_sample 0 002 @ 05821775 n 0000 ;c 06018465 n 0000 | a sample grabbed at random -05822612 09 n 01 tasting 0 003 @ 05821775 n 0000 + 01195299 v 0104 -c 05717747 n 0000 | a small amount (especially of food or wine) -05822746 09 n 03 circumstance 0 condition 0 consideration 1 007 @ 05816287 n 0000 + 02166460 v 0302 + 00950431 v 0301 + 00734054 v 0301 + 01018928 v 0203 ~ 05823054 n 0000 ~ 05823317 n 0000 | information that should be kept in mind when making a decision; "another consideration is the time it would take" -05823054 09 n 01 justification 0 004 @ 05822746 n 0000 + 00894738 v 0104 + 00896803 v 0101 + 00896141 v 0101 | something (such as a fact or circumstance) that shows an action to be reasonable or necessary; "he considered misrule a justification for revolution" -05823317 09 n 01 mitigating_circumstance 0 002 @ 05822746 n 0000 ;c 08441203 n 0000 | (law) a circumstance that does not exonerate a person but which reduces the penalty associated with the offense -05823517 09 n 02 background 1 background_knowledge 0 002 @ 05816287 n 0000 + 07144571 n 0101 | information that is essential to understanding a situation or problem; "the embassy filled him in on the background of the incident" -05823747 09 n 01 descriptor 0 002 @ 05816287 n 0000 ;c 06128570 n 0000 | a piece of stored information that is used to identify an item in an information storage and retrieval system -05823932 09 n 02 evidence 0 grounds 0 011 @ 05816287 n 0000 + 02162733 a 0101 + 02162733 a 0102 + 01618376 a 0102 + 01015244 v 0104 ~ 05824514 n 0000 ~ 05824739 n 0000 ~ 05826469 n 0000 ~ 05826914 n 0000 ~ 14299637 n 0000 ~ 14301785 n 0000 | your basis for belief or disbelief; knowledge on which to base belief; "the evidence that smoking causes lung cancer is very compelling" -05824313 09 n 01 predictor 0 001 @ 05816287 n 0000 | information that supports a probabilistic estimate of future events; "the weekly bulletin contains several predictors of mutual fund performance" -05824514 09 n 01 probable_cause 0 002 @ 05823932 n 0000 ;c 08441203 n 0000 | (law) evidence sufficient to warrant an arrest or search and seizure; "a magistrate determined that there was probable cause to search the house" -05824739 09 n 02 proof 0 cogent_evidence 0 003 @ 05823932 n 0000 ~ 05825245 n 0000 ~ 05826291 n 0000 | any factual evidence that helps to establish the truth of something; "if you have any proof for what you say, now is the time to produce it" -05824985 09 n 02 reductio_ad_absurdum 0 reductio 0 001 @ 05826469 n 0000 | (reduction to the absurd) a disproof by showing that the consequences of the proposition are absurd; or a proof of a proposition by showing that its negation leads to a contradiction -05825245 09 n 04 confirmation 0 verification 0 check 1 substantiation 0 011 @ 05824739 n 0000 + 00665886 v 0404 + 02533282 v 0301 + 00662589 v 0302 + 00664483 v 0201 + 01012073 v 0101 + 00665886 v 0101 ~ 05825688 n 0000 ~ 05825802 n 0000 ~ 05825942 n 0000 ~ 05826092 n 0000 | additional proof that something that was believed (some fact or hypothesis or theory) is correct; "fossils provided further confirmation of the evolutionary theory" -05825688 09 n 01 bed_check 0 001 @ 05825245 n 0000 | a check that everyone is in bed by the time they should be -05825802 09 n 01 crosscheck 0 001 @ 05825245 n 0000 | an instance of confirming something by considering information from several sources -05825942 09 n 03 parity_check 0 redundancy_check 0 odd-even_check 0 001 @ 05825245 n 0000 | a system of checking for errors in computer functioning -05826092 09 n 01 checksum 0 001 @ 05825245 n 0000 | a digit representing the sum of the digits in an instance of digital data; used to check whether errors have occurred in transmission or storage -05826291 09 n 02 establishment 0 validation 0 004 @ 05824739 n 0000 + 01012561 v 0201 + 00667224 v 0201 + 00664788 v 0103 | the cognitive process of establishing a valid proof -05826469 09 n 03 disproof 0 falsification 0 refutation 0 007 @ 05823932 n 0000 + 00814850 v 0301 + 00667747 v 0301 + 00667942 v 0201 ~ 05824985 n 0000 ~ 05826722 n 0000 ~ 05826832 n 0000 | any evidence that helps to establish the falsity of something -05826722 09 n 01 confutation 0 002 @ 05826469 n 0000 + 00667424 v 0102 | evidence that refutes conclusively -05826832 09 n 01 counterexample 0 001 @ 05826469 n 0000 | refutation by example -05826914 09 n 03 lead 0 track 0 trail 0 002 @ 05823932 n 0000 + 02001858 v 0209 | evidence pointing to a possible solution; "the police are following a promising lead"; "the trail led straight to the perpetrator" -05827129 09 n 01 tip-off 1 002 @ 05816287 n 0000 + 00873469 v 0101 | inside information that something is going to happen -05827253 09 n 03 evocation 1 induction 1 elicitation 0 004 @ 05827684 n 0000 + 01759326 v 0302 + 01759326 v 0105 + 01646866 v 0102 | stimulation that calls up (draws forth) a particular class of behaviors; "the elicitation of his testimony was not easy" -05827509 09 n 01 kick 0 001 @ 05827684 n 0000 | the sudden stimulation provided by strong drink (or certain drugs); "a sidecar is a smooth drink but it has a powerful kick" -05827684 09 n 04 stimulation 0 stimulus 0 stimulant 0 input 0 016 @ 05816287 n 0000 + 00503164 v 0301 + 02116118 v 0201 + 00770437 v 0202 + 00794079 v 0202 + 00503164 v 0201 + 00770437 v 0102 ~ 05827253 n 0000 ~ 05827509 n 0000 ~ 05828102 n 0000 ~ 05828263 n 0000 ~ 05828425 n 0000 ~ 05828552 n 0000 ~ 05829213 n 0000 ~ 05829342 n 0000 ~ 05829480 n 0000 | any stimulating information or event; acts to arouse action -05828102 09 n 01 turn-on 0 004 @ 05827684 n 0000 ;u 07075172 n 0000 + 01762283 v 0104 + 01762528 v 0103 | something causing excitement or stimulating interest -05828263 09 n 02 turnoff 0 negative_stimulation 0 003 @ 05827684 n 0000 ;u 07075172 n 0000 + 01808626 v 0101 | something causing antagonism or loss of interest -05828425 09 n 01 conditioned_stimulus 0 001 @ 05827684 n 0000 | the stimulus that is the occasion for a conditioned response -05828552 09 n 03 reinforcing_stimulus 0 reinforcer 0 reinforcement 0 006 @ 05827684 n 0000 ;c 06136258 n 0000 + 00787660 v 0301 + 00787660 v 0201 ~ 05828820 n 0000 ~ 05829012 n 0000 | (psychology) a stimulus that strengthens or weakens the behavior that produced it -05828820 09 n 02 positive_reinforcing_stimulus 0 positive_reinforcer 0 001 @ 05828552 n 0000 | a reinforcing stimulus that serves to increase the likelihood of the response that produces it -05829012 09 n 02 negative_reinforcing_stimulus 0 negative_reinforcer 0 001 @ 05828552 n 0000 | a reinforcing stimulus whose removal serves to decrease the likelihood of the response that produced it -05829213 09 n 02 discriminative_stimulus 0 cue 1 001 @ 05827684 n 0000 | a stimulus that provides information about what to do -05829342 09 n 01 positive_stimulus 0 003 @ 05827684 n 0000 ~ 05829656 n 0000 ~ 05829782 n 0000 | a stimulus with desirable consequences -05829480 09 n 01 negative_stimulus 0 005 @ 05827684 n 0000 ~ 05830059 n 0000 ~ 05832113 n 0000 ~ 05832264 n 0000 ~ 05833683 n 0000 | a stimulus with undesirable consequences -05829656 09 n 02 bonus 0 fillip 0 001 @ 05829342 n 0000 | anything that tends to arouse; "his approval was an added fillip" -05829782 09 n 03 joy 0 delight 0 pleasure 0 005 @ 05829342 n 0000 + 01815628 v 0301 + 01815628 v 0202 + 01190948 v 0201 + 01813499 v 0102 | something or someone that provides a source of happiness; "a joy to behold"; "the pleasure of his company"; "the new car is a delight" -05830059 09 n 07 annoyance 0 bother 0 botheration 0 pain 1 infliction 0 pain_in_the_neck 0 pain_in_the_ass 0 009 @ 05829480 n 0000 + 01792567 v 0401 + 02507736 v 0307 + 01791535 v 0301 + 01787955 v 0304 + 01787955 v 0204 ~ 05830527 n 0000 ~ 05831784 n 0000 ~ 05831939 n 0000 | something or someone that causes trouble; a source of unhappiness; "washing dishes was a nuisance before we got a dish washer"; "a bit of a bother"; "he's not a friend, he's an infliction" -05830527 09 n 01 nuisance 0 007 @ 05830059 n 0000 ;c 08441203 n 0000 ~ 05830832 n 0000 ~ 05831057 n 0000 ~ 05831270 n 0000 ~ 05831412 n 0000 ~ 05831566 n 0000 | (law) a broad legal concept including anything that disturbs the reasonable use of your property or endangers life and health or is offensive -05830832 09 n 01 abatable_nuisance 0 001 @ 05830527 n 0000 | a nuisance that can remedied (suppressed or extinguished or rendered harmless); "the continued existence of an abatable nuisance is not authorized under the law" -05831057 09 n 01 attractive_nuisance 0 001 @ 05830527 n 0000 | anything on your premises that might attract children into danger or harm; "their swimming pool is an attractive nuisance; they should fence it in" -05831270 09 n 01 mixed_nuisance 0 001 @ 05830527 n 0000 | a nuisance that is both a public nuisance and a private nuisance at the same time -05831412 09 n 01 private_nuisance 0 001 @ 05830527 n 0000 | a nuisance that interferes with your interest in and private use and enjoyment of your land -05831566 09 n 02 public_nuisance 0 common_nuisance 0 001 @ 05830527 n 0000 | a nuisance that unreasonably interferes with a right that is common to the general public; "a public nuisance offends the public at large" -05831784 09 n 02 irritant 0 thorn 0 002 @ 05830059 n 0000 + 01787955 v 0106 | something that causes irritation and annoyance; "he's a thorn in my flesh" -05831939 09 n 01 plague 0 005 @ 05830059 n 0000 ;u 07075172 n 0000 + 00089550 a 0109 + 00089550 a 010a + 01789514 v 0109 | an annoyance; "those children are a damn plague" -05832113 09 n 01 aversive_stimulus 0 001 @ 05829480 n 0000 | any negative stimulus to which an organism will learn to make a response that avoids it -05832264 09 n 04 concern 1 worry 0 headache 0 vexation 0 009 @ 05829480 n 0000 + 01765908 v 0402 + 01766748 v 0201 + 01765908 v 0201 + 01767163 v 0201 + 02678438 v 0101 ~ 05832621 n 0000 ~ 05832745 n 0000 ~ 05833022 n 0000 | something or someone that causes anxiety; a source of unhappiness; "New York traffic is a constant concern"; "it's a major worry" -05832621 09 n 01 bugaboo 0 001 @ 05832264 n 0000 | a source of concern; "the old bugaboo of inflation still bothers them" -05832745 09 n 05 burden 1 load 0 encumbrance 0 incumbrance 0 onus 0 006 @ 05832264 n 0000 + 00750532 v 0103 ~ 05833169 n 0000 ~ 05833252 n 0000 ~ 05833371 n 0000 ~ 05833511 n 0000 | an onerous or difficult concern; "the burden of responsibility"; "that's a load off my mind" -05833022 09 n 01 business 1 001 @ 05832264 n 0000 | a rightful concern or responsibility; "it's none of your business"; "mind your own business" -05833169 09 n 01 dead_weight 0 001 @ 05832745 n 0000 | an oppressive encumbrance -05833252 09 n 01 fardel 0 002 @ 05832745 n 0000 ;u 07073447 n 0000 | a burden (figuratively in the form of a bundle) -05833371 09 n 01 imposition 0 002 @ 05832745 n 0000 + 00748282 v 0104 | an uncalled-for burden; "he listened but resented the imposition" -05833511 09 n 01 pill 0 001 @ 05832745 n 0000 | something unpleasant or offensive that must be tolerated or endured; "his competitor's success was a bitter pill to take" -05833683 09 n 02 grief 0 sorrow 0 002 @ 05829480 n 0000 + 01797347 v 0202 | something that causes great unhappiness; "her death was a great grief to John" -05833840 09 n 02 idea 0 thought 1 031 @ 05809192 n 0000 + 00689344 v 0201 + 00631737 v 0201 + 00607780 v 0207 + 00723056 v 0201 + 00739082 v 0201 + 00629738 v 0201 + 01637166 v 0201 + 00012689 a 0101 + 01636397 v 0103 ~ 05834567 n 0000 ~ 05835568 n 0000 ~ 05835747 n 0000 ~ 05836921 n 0000 ~ 05893653 n 0000 ~ 05898568 n 0000 ~ 05913160 n 0000 ~ 05913275 n 0000 ~ 05916155 n 0000 ~ 05916739 n 0000 ~ 05917328 n 0000 ~ 05918267 n 0000 ~ 05919549 n 0000 ~ 05919866 n 0000 ~ 05920159 n 0000 ~ 05920272 n 0000 ~ 05923696 n 0000 ~ 05924408 n 0000 ~ 05926049 n 0000 ~ 05926150 n 0000 + 00608808 v 0201 | the content of cognition; the main thing you are thinking about; "it was not a good idea"; "the thought never entered my mind" -05834567 09 n 01 inspiration 2 005 @ 05833840 n 0000 + 01646682 v 0101 ~ 05834758 n 0000 ~ 05835292 n 0000 ~ 05835449 n 0000 | arousal of the mind to special unusual activity or creativity -05834758 09 n 03 source 0 seed 0 germ 0 005 @ 05834567 n 0000 + 01687363 a 0301 + 01738597 v 0302 ~ 05834946 n 0000 ~ 05835162 n 0000 | anything that provides inspiration for later work -05834946 09 n 01 taproot 0 001 @ 05834758 n 0000 | something that provides an important central source for growth or development; "the taproot of his resentment"; "genius and insanity spring from the same taproot" -05835162 09 n 01 muse 0 002 @ 05834758 n 0000 + 00630380 v 0107 | the source of an artist's inspiration; "Euterpe was his muse" -05835292 09 n 01 mother 0 001 @ 05834567 n 0000 | a condition that is the inspiration for an activity or situation; "necessity is the mother of invention" -05835449 09 n 01 afflatus 0 001 @ 05834567 n 0000 | a strong creative impulse; divine inspiration; "divine afflatus" -05835568 09 n 01 cogitation 1 002 @ 05833840 n 0000 + 00703512 v 0101 | a carefully considered thought about something; "his cogitations were dutifully recorded in his daybook" -05835747 09 n 03 concept 0 conception 0 construct 0 022 @ 05833840 n 0000 + 00012071 a 0201 ! 05893653 n 0201 + 00012362 a 0101 + 01633343 v 0102 + 01633343 v 0103 + 01633343 v 0104 ~ 05836275 n 0000 ~ 05836598 n 0000 ~ 05838765 n 0000 ~ 05846054 n 0000 ~ 05849040 n 0000 ~ 05854150 n 0000 ~ 05855125 n 0000 ~ 05867413 n 0000 ~ 05869584 n 0000 ~ 05870916 n 0000 ~ 05872982 n 0000 ~ 05873884 n 0000 ~ 05888929 n 0000 ~ 05889896 n 0000 ~ 07259772 n 0000 | an abstract or general idea inferred or derived from specific instances -05836275 09 n 03 conceptualization 0 conceptualisation 0 conceptuality 0 005 @ 05835747 n 0000 + 00012362 a 0301 + 01633343 v 0204 + 01633343 v 0103 ~ 05836468 n 0000 | an elaborated concept -05836468 09 n 01 perception 2 001 @ 05836275 n 0000 | a way of conceiving something; "Luther had a new perception of the Bible" -05836598 09 n 01 notion 0 003 @ 05835747 n 0000 + 00012071 a 0103 ~ 05836714 n 0000 | a general inclusive concept -05836714 09 n 01 mumpsimus 0 001 @ 05836598 n 0000 | a traditional notion that is obstinately held although it is unreasonable; "he still holds to the old mumpsimus that a woman's place is in the kitchen" -05836921 09 n 01 preoccupation 2 006 @ 05833840 n 0000 + 01783394 v 0101 ~ 05700401 n 0000 ~ 05705484 n 0000 ~ 05705583 n 0000 ~ 05837128 n 0000 | an idea that preoccupies the mind and holds the attention -05837128 09 n 01 self-absorption 0 002 @ 05836921 n 0000 ~ 05787848 n 0000 | preoccupation with yourself to the exclusion of everything else -05837271 09 n 01 layout 0 001 @ 05728678 n 0000 | a plan or design of something that is laid out -05837370 09 n 02 trap 0 snare 0 005 @ 05728678 n 0000 + 00783042 v 0202 + 02496185 v 0101 ~ 05837651 n 0000 ~ 05837743 n 0000 | something (often something deceptively attractive) that catches you unawares; "the exam was full of trap questions"; "it was all a snare and delusion" -05837651 09 n 01 iron_trap 0 001 @ 05837370 n 0000 | a trap from which there is no escape -05837743 09 n 01 speed_trap 0 001 @ 05837370 n 0000 | a trap arranged on a roadway for catching speeders -05837850 09 n 01 idea 3 001 @ 05945642 n 0000 | a personal view; "he has an idea that we don't like him" -05837957 09 n 03 judgment 4 judgement 4 mind 4 003 @ 05945642 n 0000 + 00648977 a 0101 ~ 05838176 n 0000 | an opinion formed by judging something; "he was reluctant to make his judgment known"; "she changed her mind" -05838176 09 n 03 decision 0 determination 0 conclusion 0 005 @ 05837957 n 0000 + 00763399 v 0204 + 00699815 v 0201 + 00697589 v 0203 ~ 05838530 n 0000 | a position or opinion or judgment reached after consideration; "a decision unfavorable to the opposition"; "his conclusion took the evidence into account"; "satisfied with the panel's determination" -05838530 09 n 01 predetermination 0 002 @ 05838176 n 0000 + 00702773 v 0101 | a mental determination or resolve in advance; an antecedent intention to do something; "he entered the argument with a predetermination to prove me wrong" -05838765 09 n 01 category 2 008 @ 05835747 n 0000 + 02683869 a 0101 + 02684005 a 0101 + 00657260 v 0101 ~ 05839024 n 0000 ~ 05839663 n 0000 ~ 05839776 n 0000 ~ 05839910 n 0000 | a general concept that marks divisions or coordinations in a conceptual scheme -05839024 09 n 04 kind 0 sort 0 form 1 variety 1 018 @ 05838765 n 0000 + 00654625 v 0203 ~ 05840076 n 0000 ~ 05840188 n 0000 ~ 05841029 n 0000 ~ 05841151 n 0000 ~ 05844105 n 0000 ~ 05844282 n 0000 ~ 05844663 n 0000 ~ 05844881 n 0000 ~ 05845013 n 0000 ~ 05845140 n 0000 ~ 05845332 n 0000 ~ 05845419 n 0000 ~ 05845562 n 0000 ~ 05845652 n 0000 ~ 05845749 n 0000 ~ 05845888 n 0000 | a category of things distinguished by some common characteristic or quality; "sculpture is a form of art"; "what kinds of desserts are there?" -05839547 09 n 01 breed 0 001 @ 05840188 n 0000 | a special type; "Google represents a new breed of entrepreneurs" -05839663 09 n 01 pigeonhole 0 002 @ 05838765 n 0000 + 00656292 v 0101 | a specific (often simplistic) category -05839776 09 n 01 rubric 0 001 @ 05838765 n 0000 | category name; "it is usually discussed under the rubric of `functional obesity'" -05839910 09 n 01 way 1 001 @ 05838765 n 0000 | a general category of things; used in the expression `in the way of'; "they didn't have much in the way of clothing" -05840076 09 n 01 description 0 001 @ 05839024 n 0000 | sort or variety; "every description of book was there" -05840188 09 n 01 type 0 007 @ 05839024 n 0000 + 00618682 v 0101 + 02699141 v 0101 ! 05841029 n 0101 ~ 05839547 n 0000 ~ 05840431 n 0000 ~ 05840650 n 0000 | a subdivision of a particular kind of thing; "what type of sculpture do you prefer?" -05840431 09 n 01 nature 0 001 @ 05840188 n 0000 | a particular type of thing; "problems of this type are very difficult to solve"; "he's interested in trains and things of that nature"; "matters of a personal nature" -05840650 09 n 04 version 1 variant 1 variation 1 edition 0 004 @ 05840188 n 0000 + 00123170 v 0303 + 02505415 a 0201 + 00123170 v 0203 | something a little different from others of the same type; "an experimental version of the night fighter"; "a variant of the same word"; "an emery wheel is the modern variation of a grindstone"; "the boy is a younger edition of his father" -05841029 09 n 01 antitype 2 003 @ 05839024 n 0000 + 02631085 a 0101 ! 05840188 n 0101 | an opposite or contrasting type -05841151 09 n 01 art_form 0 004 @ 05839024 n 0000 ;c 06123363 n 0000 ~ 05841351 n 0000 ~ 05932282 n 0000 | (architecture) a form of artistic expression (such as writing or painting or architecture) -05841351 09 n 03 architectural_style 0 style_of_architecture 0 type_of_architecture 0 008 @ 05841151 n 0000 ~ 05841624 n 0000 ~ 05841740 n 0000 ~ 05841985 n 0000 ~ 05842387 n 0000 ~ 05842706 n 0000 ~ 05843687 n 0000 ~ 05843895 n 0000 | architecture as a kind of art form -05841624 09 n 01 Bauhaus 0 001 @ 05841351 n 0000 | a German style of architecture begun by Walter Gropius in 1918 -05841740 09 n 01 Byzantine_architecture 0 001 @ 05841351 n 0000 | the style of architecture developed in the Byzantine Empire developed after the 5th century; massive domes with square bases and round arches and spires and much use of mosaics -05841985 09 n 02 classical_architecture 0 Greco-Roman_architecture 0 004 @ 05841351 n 0000 -c 03156990 n 0000 ~ 05842191 n 0000 ~ 05842290 n 0000 | architecture influenced by the ancient Greeks or Romans -05842191 09 n 01 Greek_architecture 0 001 @ 05841985 n 0000 | the architecture of ancient Greece -05842290 09 n 01 Roman_architecture 0 001 @ 05841985 n 0000 | the architecture of ancient Rome -05842387 09 n 02 Gothic 0 Gothic_architecture 0 002 @ 05841351 n 0000 ~ 05843236 n 0000 | a style of architecture developed in northern France that spread throughout Europe between the 12th and 16th centuries; characterized by slender vertical piers and counterbalancing buttresses and by vaulting and pointed arches -05842706 09 n 02 Romanesque 0 Romanesque_architecture 0 002 @ 05841351 n 0000 ~ 05843042 n 0000 | a style of architecture developed in Italy and western Europe between the Roman and the Gothic styles after 1000 AD; characterized by round arches and vaults and by the substitution of piers for columns and profuse ornament and arcades -05843042 09 n 01 Norman_architecture 0 001 @ 05842706 n 0000 | a Romanesque style first appearing in Normandy around 950 AD and used in Britain from the Norman Conquest until the 12th century -05843236 09 n 04 perpendicular 0 perpendicular_style 0 English-Gothic 0 English-Gothic_architecture 0 002 @ 05842387 n 0000 ~ 05843513 n 0000 | a Gothic style in 14th and 15th century England; characterized by vertical lines and a four-centered (Tudor) arch and fan vaulting -05843513 09 n 01 Tudor_architecture 0 001 @ 05843236 n 0000 | a style of English-Gothic architecture popular during the Tudor period; characterized by half-timbered houses -05843687 09 n 02 Moorish 0 Moorish_architecture 0 002 @ 05841351 n 0000 + 03088220 a 0101 | a style of architecture common in Spain from the 13th to 16th centuries; characterized by horseshoe-shaped arches -05843895 09 n 01 Victorian_architecture 0 001 @ 05841351 n 0000 | a style of architecture used in Britain during the reign of Queen Victoria; characterized by massive construction and elaborate ornamentation -05844105 09 n 01 style 1 004 @ 05839024 n 0000 + 10155849 n 0103 + 01666894 v 0101 + 01687569 v 0101 | a particular kind (as to appearance); "this style of shoe is in demand" -05844282 09 n 02 flavor 1 flavour 1 004 @ 05839024 n 0000 ;c 06101551 n 0000 ~ 05844433 n 0000 ~ 05844545 n 0000 | (physics) the six kinds of quarks -05844433 09 n 01 charm 0 002 @ 05844282 n 0000 ;c 06101551 n 0000 | (physics) one of the six flavors of quark -05844545 09 n 01 strangeness 0 002 @ 05844282 n 0000 ;c 06101551 n 0000 | (physics) one of the six flavors of quark -05844663 09 n 02 color 1 colour 1 002 @ 05839024 n 0000 ;c 06101551 n 0000 | (physics) the characteristic of quarks that determines their role in the strong interaction; "each flavor of quarks comes in three colors" -05844881 09 n 01 species 0 001 @ 05839024 n 0000 | a specific kind of something; "a species of molecule"; "a species of villainy" -05845013 09 n 01 genus 0 002 @ 05839024 n 0000 + 01102164 a 0101 | a general kind of something; "ignore the genus communism" -05845140 09 n 02 brand 0 make 0 003 @ 05839024 n 0000 + 01654628 v 0203 + 01621555 v 0202 | a recognizable kind; "there's a new brand of hero in the movies now"; "what make of car is that?" -05845332 09 n 01 genre 0 001 @ 05839024 n 0000 | a kind of literary or artistic work -05845419 09 n 02 like 0 ilk 0 001 @ 05839024 n 0000 | a kind of person; "We'll not see his like again"; "I can't tolerate people of his ilk" -05845562 09 n 01 manner 1 001 @ 05839024 n 0000 | a kind; "what manner of man are you?" -05845652 09 n 01 model 3 001 @ 05839024 n 0000 | a type of product; "his car was an old model" -05845749 09 n 01 stripe 0 001 @ 05839024 n 0000 | a kind or category; "businessmen of every stripe joined in opposition to the proposal" -05845888 09 n 03 like 1 the_like 0 the_likes_of 0 001 @ 05839024 n 0000 | a similar kind; "dogs, foxes, and the like", "we don't want the likes of you around here" -05846054 09 n 02 rule 0 regulation 0 006 @ 05835747 n 0000 + 02511551 v 0201 ~ 05846355 n 0000 ~ 05848541 n 0000 ~ 05848691 n 0000 ~ 05848912 n 0000 | a principle or condition that customarily governs behavior; "it was his rule to take a walk before breakfast"; "short haircuts were the regulation" -05846355 09 n 02 restriction 0 limitation 0 006 @ 05846054 n 0000 + 00233335 v 0204 + 00235368 v 0201 ~ 05846626 n 0000 ~ 06165623 n 0000 ~ 06247701 n 0000 | a principle that limits the extent of something; "I am willing to accept certain restrictions on my movements" -05846626 09 n 01 narrowness 1 002 @ 05846355 n 0000 + 01415480 a 0101 | a restriction of range or scope; "the problem with achievement tests is the narrowness they impose on students"; "the attraction of the book is precisely its narrowness of focus"; "frustrated by the narrowness of people's horizons" -05846932 09 n 02 rule 4 formula 1 008 @ 01023820 n 0000 ;c 06000644 n 0000 + 01633173 v 0201 + 00981083 v 0201 ~ 05847320 n 0000 ~ 05847438 n 0000 ~ 05847956 n 0000 ~ 05848357 n 0000 | (mathematics) a standard procedure for solving a class of mathematical problems; "he determined the upper bound with Descartes' rule of signs"; "he gave us a general formula for attacking polynomials" -05847320 09 n 01 metarule 0 001 @ 05846932 n 0000 | a rule that describes how other rules should be used (as in AI) -05847438 09 n 03 algorithm 0 algorithmic_rule 0 algorithmic_program 0 004 @ 05846932 n 0000 + 00092691 a 0101 ~ 05847658 n 0000 ~ 05847753 n 0000 | a precise rule (or set of rules) specifying how to solve some problem -05847658 09 n 01 sorting_algorithm 0 001 @ 05847438 n 0000 | an algorithm for sorting a list -05847753 09 n 02 stemmer 0 stemming_algorithm 0 002 @ 05847438 n 0000 + 00176137 v 0101 | an algorithm for removing inflectional and derivational endings in order to reduce word forms to a common stem -05847956 09 n 03 heuristic 0 heuristic_rule 0 heuristic_program 0 003 @ 05846932 n 0000 + 00092933 a 0101 ~ 05848182 n 0000 | a commonsense rule (or set of rules) intended to increase the probability of solving some problem -05848182 09 n 01 lateral_thinking 0 001 @ 05847956 n 0000 | a heuristic for solving problems; you try to look at the problem from many angles instead of tackling it head-on -05848357 09 n 01 recursion 0 002 @ 05846932 n 0000 ;c 06000644 n 0000 | (mathematics) an expression such that each term is generated by repeating a particular mathematical operation -05848541 09 n 03 guidepost 0 guideline 0 rule_of_thumb 0 001 @ 05846054 n 0000 | a rule or principle that provides guidance to appropriate behavior -05848691 09 n 03 cy_pres 0 rule_of_cy_pres 0 cy_pres_doctrine 0 001 @ 05846054 n 0000 | a rule that when literal compliance is impossible the intention of a donor or testator should be carried out as nearly as possible -05848912 09 n 02 working_principle 0 working_rule 0 001 @ 05846054 n 0000 | a rule that is adequate to permit work to be done -05849040 09 n 03 property 0 attribute 0 dimension 0 004 @ 05835747 n 0000 ~ 05849284 n 0000 ~ 05849789 n 0000 ~ 05850212 n 0000 | a construct whereby objects or individuals can be distinguished; "self-confidence is not an endearing property" -05849284 09 n 03 quality 0 character 0 lineament 0 009 @ 05849040 n 0000 + 00356926 a 0201 + 02697950 v 0201 + 00956687 v 0202 + 02697950 v 0202 + 00956687 v 0203 + 00956687 v 0101 + 00199309 v 0101 ~ 05849667 n 0000 | a characteristic property that defines the apparent individual nature of something; "each town has a quality all its own"; "the radical character of our demands" -05849667 09 n 01 texture 0 001 @ 05849284 n 0000 | the essential quality of something; "the texture of Neapolitan life" -05849789 09 n 02 feature 0 characteristic 0 013 @ 05849040 n 0000 + 02630189 v 0102 ~ 05007280 n 0000 ~ 05850432 n 0000 ~ 05850624 n 0000 ~ 05850823 n 0000 ~ 05851131 n 0000 ~ 05851330 n 0000 ~ 05851517 n 0000 ~ 05851744 n 0000 ~ 05852007 n 0000 ~ 05852125 n 0000 ~ 05852430 n 0000 | a prominent attribute or aspect of something; "the map showed roads and other features"; "generosity is one of his best characteristics" -05850212 09 n 02 feature_of_speech 0 feature 1 002 @ 05849040 n 0000 ;c 06172789 n 0000 | (linguistics) a distinctive characteristic of a linguistic unit that serves to distinguish it from other units of the same kind -05850432 09 n 01 invariant 0 002 @ 05849789 n 0000 ;c 06000644 n 0000 | a feature (quantity or property or function) that remains unchanged when a particular transformation is applied to it -05850624 09 n 02 aspect 0 facet 0 004 @ 05849789 n 0000 ~ 05852553 n 0000 ~ 05853100 n 0000 ~ 05853449 n 0000 | a distinct feature or element in a problem; "he studied every facet of the question" -05850823 09 n 05 attraction 0 attractor 0 attracter 0 attractive_feature 0 magnet 0 007 @ 05849789 n 0000 + 00167077 a 0502 + 01807882 v 0201 + 01807882 v 0101 + 01505254 v 0101 ~ 05853636 n 0000 ~ 05853820 n 0000 | a characteristic that provides pleasure and attracts; "flowers are an attractor for bees" -05851131 09 n 01 badge 0 001 @ 05849789 n 0000 | any feature that is regarded as a sign of status (a particular power or quality or rank); "wearing a tie was regarded as a badge of respectability" -05851330 09 n 02 centerpiece 0 centrepiece 0 001 @ 05849789 n 0000 | the central or most important feature; "education was the centerpiece of the Democratic Party's political platform" -05851517 09 n 01 contour 0 001 @ 05849789 n 0000 | a feature (or the order or arrangement of features) of anything having a complex structure; "the contours of the melody"; "it defines a major contour of this administration" -05851744 09 n 02 excellence 0 excellency 0 002 @ 05849789 n 0000 + 02343110 a 0201 | an outstanding feature; something in which something or someone excels; "a center of manufacturing excellence"; "the use of herbs is one of the excellencies of French cuisine" -05852007 09 n 01 external 0 001 @ 05849789 n 0000 | outward features; "he enjoyed the solemn externals of religion" -05852125 09 n 03 peculiarity 0 distinctive_feature 0 distinguishing_characteristic 0 002 @ 05849789 n 0000 ~ 05852287 n 0000 | an odd or unusual characteristic -05852287 09 n 01 calling_card 0 001 @ 05852125 n 0000 | a distinguishing characteristic or behavior; "bombs are a terrorist's calling cards" -05852430 09 n 01 safety_feature 0 001 @ 05849789 n 0000 | feature of an artifact that is added to insure a user's safety -05852553 09 n 01 side 0 003 @ 05850624 n 0000 ~ 05852819 n 0000 ~ 05852973 n 0000 | an aspect of something (as contrasted with some other implied aspect); "he was on the heavy side"; "he is on the purchasing side of the business"; "it brought out his better side" -05852819 09 n 01 downside 0 001 @ 05852553 n 0000 | a negative aspect of something that is generally positive; "there is a downside even to motherhood" -05852973 09 n 01 hand 1 001 @ 05852553 n 0000 | one of two sides of an issue; "on the one hand..., but on the other hand..." -05853100 09 n 02 sector 0 sphere 0 002 @ 05850624 n 0000 ~ 05853273 n 0000 | a particular aspect of life or activity; "he was helpless in an important sector of his life" -05853273 09 n 01 department 0 001 @ 05853100 n 0000 | a specialized sphere of knowledge; "baking is not my department"; "his work established a new department of literature" -05853449 09 n 01 surface 0 002 @ 05850624 n 0000 + 01990281 v 0101 | a superficial aspect as opposed to the real nature of something; "it was not what it appeared to be on the surface" -05853636 09 n 01 attention 2 003 @ 05850823 n 0000 + 02170427 v 0101 ~ 05853924 n 0000 | a general interest that leads people to want to know more; "She was the center of attention" -05853820 09 n 01 tourist_attraction 0 001 @ 05850823 n 0000 | a characteristic that attracts tourists -05853924 09 n 02 foil 0 enhancer 0 003 @ 05853636 n 0000 + 00230033 v 0201 + 02739688 v 0101 | anything that serves by contrast to call attention to another thing's good qualities; "pretty girls like plain friends as foils" -05854150 09 n 02 abstraction 0 abstract 0 009 @ 05835747 n 0000 + 00011757 a 0201 + 00734587 v 0201 + 00692329 v 0201 + 00692329 v 0101 ~ 05174653 n 0000 ~ 05854474 n 0000 ~ 05854812 n 0000 ~ 05855004 n 0000 | a concept or idea not associated with any specific instance; "he loved her only in the abstract--not in person" -05854474 09 n 01 absolute 0 003 @ 05854150 n 0000 + 00897015 a 0101 + 00005205 a 0101 | something that is conceived or that exists independently and not in relation to other things; something that does not depend on anything else and is beyond human control; something that is not relative; "no mortal being can influence the absolute" -05854812 09 n 01 teacher 0 003 @ 05854150 n 0000 + 00829107 v 0101 + 00273734 v 0101 | a personified abstraction that teaches; "books were his teachers"; "experience is a demanding teacher" -05855004 09 n 01 thing 0 001 @ 05854150 n 0000 | a special abstraction; "a thing of the spirit"; "things of the heart" -05855125 09 n 01 quantity 1 013 @ 05835747 n 0000 + 00489837 v 0101 ~ 05855748 n 0000 ~ 05855904 n 0000 ~ 05856066 n 0000 ~ 05857346 n 0000 ~ 05857459 n 0000 ~ 05858936 n 0000 ~ 05859277 n 0000 ~ 05859630 n 0000 ~ 05861067 n 0000 ~ 05863919 n 0000 ~ 06036506 n 0000 | the concept that something has a magnitude and can be represented in mathematical expressions by a constant or a variable -05855517 09 n 01 quantum 0 004 @ 00033615 n 0000 ;c 06090869 n 0000 + 02976983 a 0101 ~ 06102116 n 0000 | (physics) the smallest discrete quantity of some physical property that a system can possess (according to quantum theory) -05855748 09 n 01 quantum 1 002 @ 05855125 n 0000 + 02976983 a 0101 | a discrete amount of something that is analogous to the quantities in quantum theory -05855904 09 n 01 term 0 001 @ 05855125 n 0000 | any distinct quantity contained in a polynomial; "the general term of an algebraic equation of the n-th degree" -05856066 09 n 01 numerical_quantity 0 004 @ 05855125 n 0000 ~ 05856217 n 0000 ~ 05856388 n 0000 ~ 05857165 n 0000 | a quantity expressed as a number -05856217 09 n 02 zero 0 zero_point 0 002 @ 05856066 n 0000 + 00297507 v 0101 | the point on a scale from which positive or negative numerical quantities can be measured -05856388 09 n 01 value 0 004 @ 05856066 n 0000 ~ 05856589 n 0000 ~ 05856867 n 0000 ~ 06356299 n 0000 | a numerical quantity measured or assigned or computed; "the value assigned was 16 milliseconds" -05856589 09 n 04 eigenvalue 0 eigenvalue_of_a_matrix 0 eigenvalue_of_a_square_matrix 0 characteristic_root_of_a_square_matrix 0 001 @ 05856388 n 0000 | (mathematics) any number such that a given square matrix minus that number times the identity matrix has a zero determinant -05856867 09 n 01 scale_value 0 002 @ 05856388 n 0000 ~ 05856979 n 0000 | a value on some scale of measurement -05856979 09 n 01 average 1 001 @ 05856867 n 0000 | an intermediate scale value regarded as normal or usual; "he is about average in height"; "the snowfall this month is below average" -05857165 09 n 02 vote 0 voter_turnout 0 003 @ 05856066 n 0000 + 02462580 v 0101 + 02461314 v 0101 | the total number of voters who participated; "they are expecting a large vote" -05857346 09 n 01 operand 0 001 @ 05855125 n 0000 | a quantity upon which a mathematical operation is performed -05857459 09 n 02 variable 0 variable_quantity 0 012 @ 05855125 n 0000 ~ 05857781 n 0000 ~ 05858093 n 0000 ~ 05858407 n 0000 ~ 05858551 n 0000 ~ 05858699 n 0000 ~ 05863736 n 0000 ~ 05864047 n 0000 ~ 05864177 n 0000 ~ 05864351 n 0000 ~ 05864481 n 0000 ~ 05864577 n 0000 | a quantity that can assume any of a set of values -05857781 09 n 01 argument 0 001 @ 05857459 n 0000 | a variable in a logical or mathematical expression whose value determines the dependent variable; if f(x)=y, x is the independent variable -05857974 09 n 01 arity 0 002 @ 13582013 n 0000 ;c 06163751 n 0000 | the number of arguments that a function can take -05858093 09 n 02 independent_variable 0 experimental_variable 0 003 @ 05857459 n 0000 ;c 06018465 n 0000 ~ 05858317 n 0000 | (statistics) a variable whose values are independent of changes in the values of other variables -05858317 09 n 01 factor 1 001 @ 05858093 n 0000 | an independent variable in statistics -05858407 09 n 02 correlate 0 correlative 0 002 @ 05857459 n 0000 + 02658979 v 0101 | either of two or more related or complementary variables -05858551 09 n 01 degree_of_freedom 0 002 @ 05857459 n 0000 ;c 06018465 n 0000 | (statistics) an unrestricted variable in a frequency distribution -05858699 09 n 01 dependent_variable 0 002 @ 05857459 n 0000 ;c 06018465 n 0000 | (statistics) a variable in a logical or mathematical expression whose value depends on the independent variable; "if f(x)=y, y is the dependent variable" -05858936 09 n 03 constant 0 constant_quantity 0 invariable 0 002 @ 05855125 n 0000 ~ 05859071 n 0000 | a quantity that does not vary -05859071 09 n 02 parameter 0 parametric_quantity 0 003 @ 05858936 n 0000 + 02911346 a 0101 ~ 05859477 n 0000 | a constant in the equation of a curve that can be varied to yield a family of similar curves -05859277 09 n 01 parameter 3 001 @ 05855125 n 0000 | a quantity (such as the mean or variance) that characterizes a statistical population and that can be estimated by calculations from sample data -05859477 09 n 01 degree_of_freedom 1 001 @ 05859071 n 0000 | one of the minimum number of parameters needed to describe the state of a physical system -05859630 09 n 02 product 0 mathematical_product 0 003 @ 05855125 n 0000 ~ 05859811 n 0000 ~ 05859991 n 0000 | a quantity obtained by multiplication; "the product of 2 and 3 is 6" -05859811 09 n 01 factorial 0 002 @ 05859630 n 0000 + 02725350 a 0101 | the product of all the integers up to and including a given integer; "1, 2, 6, 24, and 120 are factorials" -05859991 09 n 01 multiple 0 006 @ 05859630 n 0000 + 02215977 a 0101 ~ 05860200 n 0000 ~ 05860377 n 0000 ~ 05860498 n 0000 ~ 05860639 n 0000 | the product of a quantity by an integer; "36 is a multiple of 9" -05860200 09 n 01 double 0 004 @ 05859991 n 0000 + 02217241 a 0101 + 01734502 v 0103 + 00246217 v 0101 | a quantity that is twice as great as another; "36 is the double of 18" -05860377 09 n 01 triple 0 002 @ 05859991 n 0000 + 00246746 v 0101 | a quantity that is three times as great as another -05860498 09 n 01 quadruple 0 003 @ 05859991 n 0000 + 01735947 v 0101 + 00247048 v 0101 | a quantity that is four times as great as another -05860639 09 n 03 lowest_common_multiple 0 least_common_multiple 0 lcm 0 001 @ 05859991 n 0000 | the smallest multiple that is exactly divisible by every member of a set of numbers; "the least common multiple of 12 and 18 is 36" -05860869 09 n 01 grand_total 0 001 @ 05861067 n 0000 | the sum of the sums of several groups of numbers -05860975 09 n 01 subtotal 0 001 @ 05861067 n 0000 | the sum of part of a group of numbers -05861067 09 n 03 sum 1 amount 0 total 0 008 @ 05855125 n 0000 + 00949288 v 0301 + 02645007 v 0301 + 02645007 v 0205 + 00949288 v 0104 + 00949288 v 0106 ~ 05860869 n 0000 ~ 05860975 n 0000 | a quantity obtained by the addition of a group of numbers -05861317 09 n 01 degree 0 004 @ 06812417 n 0000 ~ 05861463 n 0000 ~ 05861579 n 0000 ~ 05861716 n 0000 | the highest power of a term or variable -05861463 09 n 01 degree_of_a_term 0 001 @ 05861317 n 0000 | the sum of the exponents of the variables in the term -05861579 09 n 01 degree_of_a_polynomial 0 001 @ 05861317 n 0000 | the degree of the term in the polynomial that has the highest degree -05861716 09 n 01 first_degree 0 001 @ 05861317 n 0000 | a degree of one; "all of the terms in a linear equation are of the first degree" -05861855 09 n 02 polynomial 0 multinomial 0 008 @ 13783816 n 0000 ;c 06000644 n 0000 + 03100751 a 0101 ~ 05862113 n 0000 ~ 05862268 n 0000 ~ 05862410 n 0000 ~ 05862501 n 0000 ~ 05862721 n 0000 | a mathematical function that is the sum of a number of terms -05862113 09 n 03 biquadratic 0 biquadratic_polynomial 0 quartic_polynomial 0 002 @ 05861855 n 0000 + 03107913 a 0101 | a polynomial of the fourth degree -05862268 09 n 01 homogeneous_polynomial 0 002 @ 05861855 n 0000 ~ 05862613 n 0000 | a polynomial consisting of terms all of the same degree -05862410 09 n 01 monic_polynomial 0 001 @ 05861855 n 0000 | a polynomial in one variable -05862501 09 n 02 quadratic 0 quadratic_polynomial 0 001 @ 05861855 n 0000 | a polynomial of the second degree -05862613 09 n 01 quantic 0 001 @ 05862268 n 0000 | a homogeneous polynomial having at least two variables -05862721 09 n 01 series 0 008 @ 05861855 n 0000 ;c 06000644 n 0000 ~ 05862970 n 0000 ~ 05863106 n 0000 ~ 05863302 n 0000 ~ 05863480 n 0000 ~ 05863583 n 0000 ~ 13790004 n 0000 | (mathematics) the sum of a finite or infinite sequence of expressions -05862970 09 n 01 power_series 0 001 @ 05862721 n 0000 | the sum of terms containing successively higher integral powers of a variable -05863106 09 n 02 convergence 0 convergency 0 005 @ 05862721 n 0000 + 02732401 v 0201 ! 05863302 n 0202 + 02732401 v 0101 ! 05863302 n 0101 | the approach of an infinite series to a finite limit -05863302 09 n 02 divergence 0 divergency 0 005 @ 05862721 n 0000 + 02732603 v 0201 ! 05863106 n 0202 + 02732603 v 0101 ! 05863106 n 0101 | an infinite series that has no limit -05863480 09 n 01 geometric_series 0 001 @ 05862721 n 0000 | a geometric progression written as a sum -05863583 09 n 01 Fourier_series 0 001 @ 05862721 n 0000 | the sum of a series of trigonometric expressions; used in the analysis of periodic functions -05863736 09 n 01 predictor_variable 0 002 @ 05857459 n 0000 ;c 06018465 n 0000 | a variable that can be used to predict the value of another variable (as in statistical regression) -05863919 09 n 01 proportional 0 002 @ 05855125 n 0000 #p 13815742 n 0000 | one of the quantities in a mathematical proportion -05864047 09 n 01 infinitesimal 0 002 @ 05857459 n 0000 ;c 06000644 n 0000 | (mathematics) a variable that has zero as its limit -05864177 09 n 05 random_variable 0 variate 0 variant 0 stochastic_variable 0 chance_variable 0 002 @ 05857459 n 0000 + 02662297 v 0201 | a variable quantity that is random -05864351 09 n 01 scalar 0 002 @ 05857459 n 0000 + 03134771 a 0101 | a variable quantity that cannot be resolved into components -05864481 09 n 01 tensor 0 001 @ 05857459 n 0000 | a generalization of the concept of a vector -05864577 09 n 01 vector 0 005 @ 05857459 n 0000 ~ 05864758 n 0000 ~ 05865034 n 0000 ~ 05865174 n 0000 ~ 05865311 n 0000 | a variable quantity that can be resolved into components -05864758 09 n 02 vector_product 0 cross_product 0 001 @ 05864577 n 0000 | a vector that is the product of two other vectors -05864884 09 n 03 scalar_product 0 inner_product 0 dot_product 0 001 @ 13729902 n 0000 | a real number (a scalar) that is the product of two vectors -05865034 09 n 02 vector_sum 0 resultant 0 002 @ 05864577 n 0000 + 00122844 a 0207 | a vector that is the sum of two or more other vectors -05865174 09 n 01 radius_vector 0 001 @ 05864577 n 0000 | a line connecting a point in space to the origin of a polar coordinate system -05865311 09 n 01 radius_vector 1 001 @ 05864577 n 0000 | a line connecting a satellite to the center of the body around which it is rotating -05865454 09 n 02 be-all_and_end-all 0 be_all_and_end_all 0 001 @ 05868954 n 0000 | the essential factor; the all-important element; the supreme aim; "profit is the be-all and end-all of business" -05865652 09 n 01 plot_element 0 002 @ 05868954 n 0000 ~ 05865774 n 0000 | a component or element of the plot of a story -05865774 09 n 02 McGuffin 0 MacGuffin 0 002 @ 05865652 n 0000 ;c 06262567 n 0000 | (film) a plot element that catches the viewers' attention or drives the plot; "the McGuffin was a key element of Alfred Hitchcock's films" -05865998 09 n 01 point 0 004 @ 05868954 n 0000 ~ 05866199 n 0000 ~ 05866653 n 0000 ~ 06011793 n 0000 | a geometric element that has position but no extension; "a point is defined by its coordinates" -05866199 09 n 02 attractor 1 attracter 1 003 @ 05865998 n 0000 ;c 06090869 n 0000 ~ 05866489 n 0000 | (physics) a point in the ideal multidimensional phase space that is used to describe a system toward which the system tends to evolve regardless of the starting conditions of the system -05866489 09 n 02 strange_attractor 0 chaotic_attractor 0 001 @ 05866199 n 0000 | an attractor for which the approach to its final point in phase space is chaotic -05866653 09 n 03 intersection 0 intersection_point 0 point_of_intersection 0 003 @ 05865998 n 0000 ~ 05866822 n 0000 ~ 05867283 n 0000 | a point where lines intersect -05866822 09 n 02 metacenter 0 metacentre 0 003 @ 05866653 n 0000 ;c 00912822 n 0000 + 03140494 a 0101 | (shipbuilding) the point of intersection between two vertical lines, one line through the center of buoyancy of the hull of a ship in equilibrium and the other line through the center of buoyancy of the hull when the ship is inclined to one side; the distance of this intersection above the center of gravity is an indication of the stability of the ship -05867283 09 n 01 vertex 0 001 @ 05866653 n 0000 | the point of intersection of lines or the point opposite the base of a figure -05867413 09 n 03 part 0 section 0 division 0 021 @ 05835747 n 0000 #p 05869584 n 0000 + 00517010 a 0301 + 01563005 v 0202 ~ 00462116 n 0000 ~ 05868051 n 0000 ~ 05868272 n 0000 ~ 05868477 n 0000 ~ 05868779 n 0000 ~ 05868954 n 0000 ~ 15255641 n 0000 ~ 15255804 n 0000 ~ 15256567 n 0000 ~ 15256714 n 0000 ~ 15257416 n 0000 ~ 15257553 n 0000 ~ 15257692 n 0000 ~ 15257829 n 0000 ~ 15258281 n 0000 ~ 15258450 n 0000 ~ 15258694 n 0000 | one of the portions into which something is regarded as divided and which together constitute a whole; "the written part of the exam"; "the finance section of the company"; "the BBC's engineering division" -05868051 09 n 01 beginning 0 004 @ 05867413 n 0000 + 02679227 v 0101 ! 05868272 n 0101 ! 05868477 n 0101 | the first part or section of something; "`It was a dark and stormy night' is a hackneyed beginning for a story" -05868272 09 n 01 middle 0 004 @ 05867413 n 0000 + 01498498 v 0101 ! 05868477 n 0101 ! 05868051 n 0101 | an intermediate part or section; "A whole is that which has beginning, middle, and end"- Aristotle -05868477 09 n 01 end 0 006 @ 05867413 n 0000 + 02735418 v 0101 + 00352826 v 0101 + 02609764 v 0101 ! 05868051 n 0101 ! 05868272 n 0101 | a final part or section; "we have given it at the end of the section since it involves the calculus"; "Start at the beginning and go on until you come to the end" -05868779 09 n 01 high_point 0 002 @ 05867413 n 0000 #p 07285403 n 0000 | the most enjoyable part of a given experience; "the trumpet solo was the high point of the concert" -05868954 09 n 05 component 0 constituent 0 element 0 factor 0 ingredient 0 006 @ 05867413 n 0000 + 00733250 v 0401 + 02621244 v 0101 ~ 05865454 n 0000 ~ 05865652 n 0000 ~ 05865998 n 0000 | an abstract part of something; "jealousy was a component of his character"; "two constituents of a musical composition are melody and harmony"; "the grammatical elements of a sentence"; "a key factor in her success"; "humor: an effective ingredient of a speech" -05869407 09 n 02 leaven 0 leavening 0 001 @ 05693206 n 0000 | an influence that works subtly to lighten or modify something; "his sermons benefited from a leavening of humor" -05869584 09 n 01 whole 0 006 @ 05835747 n 0000 + 00514884 a 0101 %p 05867413 n 0000 ~ 05869857 n 0000 ~ 05870180 n 0000 ~ 05870365 n 0000 | all of something including all its component elements or parts; "Europe considered as a whole"; "the whole of American literature" -05869857 09 n 01 unit 0 004 @ 05869584 n 0000 + 00367685 v 0101 + 00368109 v 0101 ~ 05870055 n 0000 | a single undivided whole; "an idea is not a unit that can be moved from one brain to another" -05870055 09 n 01 one 0 001 @ 05869857 n 0000 | a single person or thing; "he is the best one"; "this is the one I ordered" -05870180 09 n 01 compound 0 005 @ 05869584 n 0000 + 02177872 a 0101 + 01657828 v 0101 + 01461328 v 0101 + 00193486 v 0101 | a whole formed by a union of two or more elements or parts -05870365 09 n 02 complex 0 composite 0 004 @ 05869584 n 0000 + 02177755 a 0201 ~ 05870615 n 0000 ~ 05870790 n 0000 | a conceptual whole made up of complicated and related parts; "the complex of shopping malls, houses, and roads created a new town" -05870615 09 n 01 hybrid 0 002 @ 05870365 n 0000 + 01429953 v 0103 | a composite of mixed origin; "the vice-presidency is a hybrid of administrative and legislative offices" -05870790 09 n 01 syndrome 0 001 @ 05870365 n 0000 | a complex of concurrent things; "every word has a syndrome of meanings" -05870916 09 n 02 law 0 natural_law 0 004 @ 05835747 n 0000 ~ 05871140 n 0000 ~ 05872477 n 0000 ~ 06180720 n 0000 | a rule or body of rules of conduct inherent in human nature and essential to or binding upon human society -05871140 09 n 01 divine_law 0 001 @ 05870916 n 0000 | a law that is believed to come directly from God -05871245 09 n 01 dictate 0 002 @ 05872477 n 0000 + 00747135 v 0103 | a guiding principle; "the dictates of reason" -05871362 09 n 05 fundamentals 0 basics 0 fundamental_principle 0 basic_principle 0 bedrock 0 002 @ 05872477 n 0000 ~ 05872742 n 0000 | principles from which other truths can be derived; "first you must learn the fundamentals"; "let's get down to basics" -05871618 09 n 01 logic 3 001 @ 05872477 n 0000 | the principles that guide reasoning within a given field or situation; "economic logic requires it"; "by the logic of war" -05871792 09 n 03 pleasure_principle 0 pleasure-pain_principle 0 pleasure-unpleasure_principle 0 003 @ 05872477 n 0000 ;c 00704305 n 0000 ! 05872098 n 0101 | (psychoanalysis) the governing principle of the id; the principle that an infant seeks gratification and fails to distinguish fantasy from reality -05872098 09 n 01 reality_principle 0 003 @ 05872477 n 0000 ;c 00704305 n 0000 ! 05871792 n 0101 | (psychoanalysis) the governing principle of the ego; the principle that as a child grows it becomes aware of the real environment and the need to accommodate to it -05872362 09 n 01 insurrectionism 0 001 @ 05872477 n 0000 | the principle of revolt against constituted authority -05872477 09 n 01 principle 0 009 @ 05870916 n 0000 ~ 05871245 n 0000 ~ 05871362 n 0000 ~ 05871618 n 0000 ~ 05871792 n 0000 ~ 05872098 n 0000 ~ 05872362 n 0000 ~ 06104073 n 0000 ~ 06242970 n 0000 | a basic truth or law or assumption; "the principles of democracy" -05872742 09 n 07 rudiment 0 first_rudiment 0 first_principle 0 alphabet 0 ABC 0 ABC's 0 ABCs 0 002 @ 05871362 n 0000 ;u 06295235 n 0000 | the elementary stages of any subject (usually plural); "he mastered only the rudiments of geometry" -05872982 09 n 02 law 1 law_of_nature 0 042 @ 05835747 n 0000 #p 05989479 n 0000 ~ 05874017 n 0000 ~ 05874232 n 0000 ~ 05874716 n 0000 ~ 05874941 n 0000 ~ 05875148 n 0000 ~ 05875392 n 0000 ~ 05875723 n 0000 ~ 05875988 n 0000 ~ 05876148 n 0000 ~ 05876469 n 0000 ~ 05876912 n 0000 ~ 05877412 n 0000 ~ 05877718 n 0000 ~ 05877991 n 0000 ~ 05878229 n 0000 ~ 05878771 n 0000 ~ 05879003 n 0000 ~ 05879204 n 0000 ~ 05879441 n 0000 ~ 05880432 n 0000 ~ 05880715 n 0000 ~ 05880854 n 0000 ~ 05881102 n 0000 ~ 05881303 n 0000 ~ 05881578 n 0000 ~ 05881867 n 0000 ~ 05882226 n 0000 ~ 05882537 n 0000 ~ 05882793 n 0000 ~ 05884433 n 0000 ~ 05885622 n 0000 ~ 05886455 n 0000 ~ 05886613 n 0000 ~ 05886939 n 0000 ~ 05887156 n 0000 ~ 05887365 n 0000 ~ 05887712 n 0000 ~ 05990480 n 0000 ~ 05996110 n 0000 ~ 05996353 n 0000 | a generalization that describes recurring facts or events in nature; "the laws of thermodynamics" -05873884 09 n 01 lexicalized_concept 0 001 @ 05835747 n 0000 | a concept that is expressed by a word (in some particular language) -05874017 09 n 01 all-or-none_law 0 002 @ 05872982 n 0000 ;c 06081602 n 0000 | (neurophysiology) a nerve impulse resulting from a weak stimulus is just as strong as a nerve impulse resulting from a strong stimulus -05874232 09 n 02 principle 4 rule 2 013 @ 05872982 n 0000 ~ 05878440 n 0000 ~ 05883688 n 0000 ~ 05883992 n 0000 ~ 05885187 n 0000 ~ 05885412 n 0000 ~ 05990738 n 0000 ~ 05990981 n 0000 ~ 05991242 n 0000 ~ 05991441 n 0000 ~ 05991776 n 0000 ~ 05992015 n 0000 ~ 05992274 n 0000 | a rule or law concerning a natural phenomenon or the function of a complex system; "the principle of the conservation of mass"; "the principle of jet propulsion"; "the right-hand rule for inductive fields" -05874716 09 n 02 Archimedes'_principle 0 law_of_Archimedes 0 002 @ 05872982 n 0000 ;c 06113415 n 0000 | (hydrostatics) the apparent loss in weight of a body immersed in a fluid is equal to the weight of the displaced fluid -05874941 09 n 02 Avogadro's_law 0 Avogadro's_hypothesis 0 001 @ 05872982 n 0000 | the principle that equal volumes of all gases (given the same temperature and pressure) contain equal numbers of molecules -05875148 09 n 02 Bernoulli's_law 0 law_of_large_numbers 0 002 @ 05872982 n 0000 ;c 06018465 n 0000 | (statistics) law stating that a large number of items taken at random from a population will (on the average) have the population statistics -05875392 09 n 01 Benford's_law 0 001 @ 05872982 n 0000 | a law used by auditors to identify fictitious populations of numbers; applies to any population of numbers derived from other numbers; "Benford's law holds that 30% of the time the first non-zero digit of a derived number will be 1 and it will be 9 only 4.6% of the time" -05875723 09 n 01 Bose-Einstein_statistics 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) statistical law obeyed by a system of particles whose wave function is not changed when two particles are interchanged (the Pauli exclusion principle does not apply) -05875988 09 n 02 Boyle's_law 0 Mariotte's_law 0 001 @ 05872982 n 0000 | the pressure of an ideal gas at constant temperature varies inversely with the volume -05876148 09 n 01 Coulomb's_Law 0 001 @ 05872982 n 0000 | a fundamental principle of electrostatics; the force of attraction or repulsion between two charged particles is directly proportional to the product of the charges and inversely proportional to the distance between them; principle also holds for magnetic poles -05876469 09 n 03 Dalton's_law 0 Dalton's_law_of_partial_pressures 0 law_of_partial_pressures 0 003 @ 05872982 n 0000 ;c 06084469 n 0000 ;c 06090869 n 0000 | (chemistry and physics) law stating that the pressure exerted by a mixture of gases equals the sum of the partial pressures of the gases in the mixture; the pressure of a gas in a mixture equals the pressure it would exert if it occupied the same volume alone at the same temperature -05876912 09 n 01 distribution_law 0 003 @ 05872982 n 0000 ;c 06084469 n 0000 ~ 05877178 n 0000 | (chemistry) the total energy in an assembly of molecules is not distributed equally but is distributed around an average value according to a statistical distribution -05877178 09 n 02 Maxwell-Boltzmann_distribution_law 0 Boltzmann_distribution_law 0 002 @ 05876912 n 0000 ;c 06090869 n 0000 | (physics) a law expressing the distribution of energy among the molecules of a gas in thermal equilibrium -05877412 09 n 02 equilibrium_law 0 law_of_chemical_equilibrium 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) the principle that (at chemical equilibrium) in a reversible reaction the ratio of the rate of the forward reaction to the rate of the reverse reaction is a constant for that reaction -05877718 09 n 02 Fechner's_law 0 Weber-Fechner_law 0 002 @ 05872982 n 0000 ;c 06139491 n 0000 | (psychophysics) the concept that the magnitude of a subjective sensation increases proportional to the logarithm of the stimulus intensity; based on early work by E. H. Weber -05877991 09 n 01 Fermi-Dirac_statistics 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) law obeyed by a systems of particles whose wave function changes when two particles are interchanged (the Pauli exclusion principle applies) -05878229 09 n 03 Gay-Lussac's_law 0 Charles's_law 0 law_of_volumes 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) the density of an ideal gas at constant pressure varies inversely with the temperature -05878440 09 n 02 Gestalt_law_of_organization 0 Gestalt_principle_of_organization 0 007 @ 05874232 n 0000 #p 06141324 n 0000 ~ 06249421 n 0000 ~ 06249685 n 0000 ~ 06250208 n 0000 ~ 06250771 n 0000 ~ 06251033 n 0000 | a principle of Gestalt psychology that identifies factors leading to particular forms of perceptual organization -05878771 09 n 01 Henry's_law 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) law formulated by the English chemist William Henry; the amount of a gas that will be absorbed by water increases as the gas pressure increases -05879003 09 n 01 Hooke's_law 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) the principle that (within the elastic limit) the stress applied to a solid is proportional to the strain produced -05879204 09 n 02 Hubble's_law 0 Hubble_law 0 002 @ 05872982 n 0000 ;c 06095022 n 0000 | (astronomy) the generalization that the speed of recession of distant galaxies (the red shift) is proportional to their distance from the observer -05879441 09 n 02 Kepler's_law 0 Kepler's_law_of_planetary_motion 0 005 @ 05872982 n 0000 ;c 06095022 n 0000 ~ 05879693 n 0000 ~ 05879856 n 0000 ~ 05880187 n 0000 | (astronomy) one of three empirical laws of planetary motion stated by Johannes Kepler -05879693 09 n 01 Kepler's_first_law 0 001 @ 05879441 n 0000 | a law stating that the orbit of each planet is an ellipse with the sun at one focus of the ellipse -05879856 09 n 03 Kepler's_second_law 0 law_of_areas 0 law_of_equal_areas 0 001 @ 05879441 n 0000 | a law concerning the speed at which planets travel; a line connecting a planet to the sun will sweep out equal areas in equal times; "Kepler's second law means that a planet's orbital speed changes with its distance from the sun" -05880187 09 n 02 Kepler's_third_law 0 harmonic_law 0 001 @ 05879441 n 0000 | a law stating that the ratio of the square of the revolutionary period (in years) to the cube of the orbital axis (in astronomical units) is the same for all planets -05880432 09 n 01 Kirchhoff's_laws 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) two laws governing electric networks in which steady currents flow: the sum of all the currents at a point is zero and the sum of the voltage gains and drops around any closed circuit is zero -05880715 09 n 01 law_of_averages 0 001 @ 05872982 n 0000 | a law affirming that in the long run probabilities will determine performance -05880854 09 n 02 law_of_constant_proportion 0 law_of_definite_proportions 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) law stating that every pure substance always contains the same elements combined in the same proportions by weight -05881102 09 n 01 law_of_diminishing_returns 0 001 @ 05872982 n 0000 | a law affirming that to continue after a certain level of performance has been reached will result in a decline in effectiveness -05881303 09 n 01 law_of_effect 0 002 @ 05872982 n 0000 ;c 06136258 n 0000 | (psychology) the principle that behaviors are selected by their consequences; behavior having good consequences tends to be repeated whereas behavior that leads to bad consequences is not repeated -05881578 09 n 02 law_of_equivalent_proportions 0 law_of_reciprocal_proportions 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) law stating that the proportions in which two elements separately combine with a third element are also the proportions in which they combine together -05881867 09 n 02 law_of_gravitation 0 Newton's_law_of_gravitation 0 004 @ 05872982 n 0000 #p 05990089 n 0000 ;c 06090869 n 0000 %p 13590327 n 0000 | (physics) the law that states any two bodies attract each other with a force that is directly proportional to the product of their masses and inversely proportional to the square of the distance between them -05882226 09 n 02 law_of_multiple_proportions 0 Dalton's_law 1 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) law stating that when two elements can combine to form more than one compound the amounts of one of them that combines with a fixed amount of the other will exhibit a simple multiple relation -05882537 09 n 01 law_of_mass_action 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) the law that states the following principle: the rate of a chemical reaction is directly proportional to the molecular concentrations of the reacting substances -05882793 09 n 01 law_of_thermodynamics 0 006 @ 05872982 n 0000 ;c 06090869 n 0000 ~ 05883035 n 0000 ~ 05883296 n 0000 ~ 05883473 n 0000 ~ 06104578 n 0000 | (physics) a law governing the relations between states of energy in a closed system -05883035 09 n 01 second_law_of_thermodynamics 0 001 @ 05882793 n 0000 | a law stating that mechanical work can be derived from a body only when that body interacts with another at a lower temperature; any spontaneous process results in an increase of entropy -05883296 09 n 01 third_law_of_thermodynamics 0 001 @ 05882793 n 0000 | law stating that the entropy of a substance approaches zero as its temperature approaches absolute zero -05883473 09 n 01 zeroth_law_of_thermodynamics 0 001 @ 05882793 n 0000 | the law that if two bodies are in thermal equilibrium with a third body then the first two bodies are in thermal equilibrium with each other -05883688 09 n 04 Le_Chatelier's_principle 0 Le_Chatelier's_law 0 Le_Chatelier_principle 0 Le_Chatelier-Braun_principle 0 001 @ 05874232 n 0000 | the principle that if any change is imposed on a system that is in equilibrium then the system tends to adjust to a new equilibrium counteracting the change -05883992 09 n 01 Gresham's_Law 0 002 @ 05874232 n 0000 ;c 06149484 n 0000 | (economics) the principle that when two kinds of money having the same denominational value are in circulation the intrinsically more valuable money will be hoarded and the money of lower intrinsic value will circulate more freely until the intrinsically more valuable money is driven out of circulation; bad money drives out good; credited to Sir Thomas Gresham -05884433 09 n 01 Mendel's_law 0 004 @ 05872982 n 0000 ;c 06075527 n 0000 ~ 05884736 n 0000 ~ 05884984 n 0000 | (genetics) one of two principles of heredity formulated by Gregor Mendel on the basis of his experiments with plants; the principles were limited and modified by subsequent genetic research -05884736 09 n 01 law_of_segregation 0 001 @ 05884433 n 0000 | members of a pair of homologous chromosomes separate during the formation of gametes and are distributed to different gametes so that every gamete receives only one member of the pair -05884984 09 n 01 law_of_independent_assortment 0 001 @ 05884433 n 0000 | each member of a pair of homologous chromosomes separates independently of the members of other pairs so the results are random -05885187 09 n 01 mass-energy_equivalence 0 002 @ 05874232 n 0000 ;c 06090869 n 0000 | (physics) the principle that a measured quantity of mass is equivalent (according to relativity theory) to a measured quantity of energy -05885412 09 n 01 Naegele's_rule 0 001 @ 05874232 n 0000 | rule for calculating an expected delivery date; subtract three months from the first day of the last menstrual period and add seven days to that date -05885622 09 n 03 Newton's_law_of_motion 0 Newton's_law 0 law_of_motion 0 004 @ 05872982 n 0000 ~ 05885822 n 0000 ~ 05886039 n 0000 ~ 05886266 n 0000 | one of three basic laws of classical mechanics -05885822 09 n 03 first_law_of_motion 0 Newton's_first_law_of_motion 0 Newton's_first_law 0 001 @ 05885622 n 0000 | a body remains at rest or in motion with a constant velocity unless acted upon by an external force -05886039 09 n 03 second_law_of_motion 0 Newton's_second_law_of_motion 0 Newton's_second_law 0 001 @ 05885622 n 0000 | the rate of change of momentum is proportional to the imposed force and goes in the direction of the force -05886266 09 n 04 third_law_of_motion 0 Newton's_third_law_of_motion 0 Newton's_third_law 0 law_of_action_and_reaction 0 001 @ 05885622 n 0000 | action and reaction are equal and opposite -05886455 09 n 01 Ohm's_law 0 001 @ 05872982 n 0000 | electric current is directly proportional to voltage and inversely proportional to resistance; I = E/R -05886613 09 n 02 Pascal's_law 0 Pascal's_law_of_fluid_pressures 0 001 @ 05872982 n 0000 | pressure applied anywhere to a body of fluid causes a force to be transmitted equally in all directions; the force acts at right angles to any surface in contact with the fluid; "the hydraulic press is an application of Pascal's law" -05886939 09 n 02 Pauli_exclusion_principle 0 exclusion_principle 0 001 @ 05872982 n 0000 | no two electrons or protons or neutrons in a given system can be in states characterized by the same set of quantum numbers -05887156 09 n 02 periodic_law 0 Mendeleev's_law 0 002 @ 05872982 n 0000 ;c 06084469 n 0000 | (chemistry) the principle that chemical properties of the elements are periodic functions of their atomic numbers -05887365 09 n 01 Planck's_law 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) the basis of quantum theory; the energy of electromagnetic waves is contained in indivisible quanta that have to be radiated or absorbed as a whole; the magnitude is proportional to frequency where the constant of proportionality is given by Planck's constant -05887712 09 n 01 Planck's_radiation_law 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) an equation that expresses the distribution of energy in the radiated spectrum of an ideal black body -05887911 09 n 02 big-bang_theory 0 big_bang_theory 0 002 @ 05993844 n 0000 ;c 06098195 n 0000 | (cosmology) the theory that the universe originated sometime between 10 billion and 20 billion years ago from the cataclysmic explosion of a small volume of matter at extremely high density and temperature -05888215 09 n 01 nebular_hypothesis 0 002 @ 05993844 n 0000 ;c 06098195 n 0000 | (cosmology) the theory that the solar system evolved from a hot gaseous nebula -05888377 09 n 01 planetesimal_hypothesis 0 002 @ 05993844 n 0000 ;c 06098195 n 0000 | (cosmology) the theory that the solar system was formed by the gravitational accumulation of planetesimals -05888572 09 n 02 steady_state_theory 0 continuous_creation_theory 0 002 @ 05993844 n 0000 ;c 06098195 n 0000 | (cosmology) the theory that the universe maintains a constant average density with matter created to fill the void left by galaxies that are receding from each other; "the steady state theory has been abandoned in favor of the big bang theory" -05888929 09 n 03 hypothesis 0 possibility 0 theory 1 015 @ 05835747 n 0000 #p 05989479 n 0000 + 10706812 n 0301 + 00860611 a 0302 + 10706812 n 0302 + 00633443 v 0302 + 00633443 v 0303 + 00633443 v 0107 + 00633443 v 0105 ~ 05889575 n 0000 ~ 05889762 n 0000 ~ 05890249 n 0000 ~ 05891783 n 0000 ~ 05892096 n 0000 ~ 06155891 n 0000 | a tentative insight into the natural world; a concept that is not yet verified but that if true would explain certain facts or phenomena; "a scientific hypothesis that survives experimental testing becomes a scientific theory"; "he proposed a fresh theory of alkalis that later was accepted in chemical practices" -05889575 09 n 01 hypothetical 0 001 @ 05888929 n 0000 | a hypothetical possibility, circumstance, statement, proposal, situation, etc.; "consider the following, just as a hypothetical" -05889762 09 n 01 gemmule 0 001 @ 05888929 n 0000 | the physically discrete element that Darwin proposed as responsible for heredity -05889896 09 n 01 fact 2 001 @ 05835747 n 0000 | a concept whose truth can be proved; "scientific hypotheses are not facts" -05890021 09 n 01 mean_sun 0 001 @ 05890249 n 0000 | a theoretical sun that moves along the celestial equator at a constant speed and completes its annual course in the same amount of time the real sun takes at variable speeds -05890249 09 n 03 model 0 theoretical_account 0 framework 0 010 @ 05888929 n 0000 + 01722980 v 0101 + 01743784 v 0101 ~ 05666700 n 0000 ~ 05890021 n 0000 ~ 05890642 n 0000 ~ 05890809 n 0000 ~ 05890963 n 0000 ~ 05891232 n 0000 ~ 13561896 n 0000 | a hypothetical description of a complex entity or process; "the computer program was based on a model of the circulatory and respiratory systems" -05890642 09 n 01 Copernican_system 0 002 @ 05890249 n 0000 ;c 06095022 n 0000 | (astronomy) Copernicus' astronomical model in which the Earth rotates around the sun -05890809 09 n 01 Ptolemaic_system 0 002 @ 05890249 n 0000 ;c 06095022 n 0000 | (astronomy) Ptolemy's model of the universe with the Earth at the center -05890963 09 n 01 M-theory 0 003 @ 05890249 n 0000 ;c 06101551 n 0000 %p 05891232 n 0000 | (particle physics) a theory that involves an eleven-dimensional universe in which the weak and strong forces and gravity are unified and to which all the string theories belong -05891232 09 n 01 string_theory 0 003 @ 05890249 n 0000 #p 05890963 n 0000 ;c 06101551 n 0000 | (particle physics) a theory that postulates that subatomic particles are one-dimensional strings -05891426 09 n 02 audit_program 0 audit_programme 0 001 @ 05898568 n 0000 | a listing of audit procedures to be performed in completing an audit -05891572 09 n 03 outline 0 schema 0 scheme 2 007 @ 05898568 n 0000 + 01980796 a 0303 + 00708376 v 0301 + 01632103 v 0301 + 01980796 a 0203 + 01632103 v 0201 + 01701634 v 0102 | a schematic or preliminary plan -05891783 09 n 02 speculation 0 conjecture 0 004 @ 05888929 n 0000 + 00861216 a 0201 + 00633443 v 0204 + 00633443 v 0101 | a hypothesis that has been formed by speculating or conjecturing (usually with little hard evidence); "speculations about the outcome of the election"; "he dismissed it as mere conjecture" -05892096 09 n 03 assumption 0 supposition 0 supposal 0 010 @ 05888929 n 0000 + 00917300 v 0301 + 00861216 a 0206 + 00861216 a 0208 + 00861216 a 0207 + 00632236 v 0101 ~ 05781541 n 0000 ~ 05793554 n 0000 ~ 05893356 n 0000 ~ 05893512 n 0000 | a hypothesis that is taken for granted; "any society is built upon certain assumptions" -05892427 09 n 02 prerequisite 0 requirement 0 005 @ 01129920 n 0000 + 00849232 a 0101 ~ 05892880 n 0000 ~ 05892991 n 0000 ~ 05893261 n 0000 | something that is required in advance; "Latin was a prerequisite for admission" -05892651 09 n 02 requirement 1 demand 0 004 @ 01129920 n 0000 + 02627934 v 0209 + 02627934 v 0105 + 00755745 v 0102 | required activity; "the requirements of his work affected his health"; "there were many demands on his time" -05892880 09 n 01 precondition 0 002 @ 05892427 n 0000 + 00407328 v 0101 | a condition that is a prerequisite -05892991 09 n 01 academic_requirement 0 002 @ 05892427 n 0000 ~ 05893143 n 0000 | a requirement for admission to or completion of an academic program -05893143 09 n 01 language_requirement 0 001 @ 05892991 n 0000 | a requirement that a student know certain languages -05893261 09 n 02 essential_condition 0 sine_qua_non 0 001 @ 05892427 n 0000 | a prerequisite -05893356 09 n 03 given 0 presumption 0 precondition 1 003 @ 05892096 n 0000 + 00632236 v 0202 + 00028280 a 0101 | an assumption that is taken for granted -05893512 09 n 03 basic_assumption 0 constatation 0 self-evident_truth 0 001 @ 05892096 n 0000 | an assumption that is basic to an argument -05893653 09 n 01 misconception 0 011 @ 05833840 n 0000 + 00619869 v 0103 ! 05835747 n 0102 ~ 05893916 n 0000 ~ 05895465 n 0000 ~ 05895588 n 0000 ~ 05895723 n 0000 ~ 05896059 n 0000 ~ 05896733 n 0000 ~ 05940214 n 0000 ~ 05940688 n 0000 | an incorrect conception -05893916 09 n 02 fallacy 0 false_belief 0 007 @ 05893653 n 0000 + 02500179 a 0101 ~ 05778954 n 0000 ~ 05894143 n 0000 ~ 05894631 n 0000 ~ 05895138 n 0000 ~ 05895373 n 0000 | a misconception resulting from incorrect reasoning -05894143 09 n 01 logical_fallacy 0 005 @ 05893916 n 0000 ~ 05894311 n 0000 ~ 05894460 n 0000 ~ 05894814 n 0000 ~ 05894972 n 0000 | a fallacy in logical argumentation -05894311 09 n 01 hysteron_proteron 0 001 @ 05894143 n 0000 | the logical fallacy of using as a true premise a proposition that is yet to be proved -05894460 09 n 01 ignoratio_elenchi 0 001 @ 05894143 n 0000 | the logical fallacy of supposing that an argument proving an irrelevant point has proved the point at issue -05894631 09 n 01 pathetic_fallacy 0 001 @ 05893916 n 0000 | the fallacy of attributing human feelings to inanimate objects; `the friendly sun' is an example of the pathetic fallacy -05894814 09 n 02 petitio_principii 0 petitio 0 001 @ 05894143 n 0000 | the logical fallacy of assuming the conclusion in the premises; begging the question -05894972 09 n 02 post_hoc 0 post_hoc_ergo_propter_hoc 0 001 @ 05894143 n 0000 | the logical fallacy of believing that temporal succession implies a causal relation -05895138 09 n 03 sophism 0 sophistry 0 sophistication 2 004 @ 05893916 n 0000 + 00932798 v 0305 + 02500736 a 0101 + 09899929 n 0102 | a deliberately invalid argument displaying ingenuity in reasoning in the hope of deceiving someone -05895373 09 n 01 paralogism 0 001 @ 05893916 n 0000 | an unintentionally invalid argument -05895465 09 n 02 error 0 erroneous_belief 0 001 @ 05893653 n 0000 | a misconception resulting from incorrect information -05895588 09 n 02 self-deception 0 self-deceit 0 001 @ 05893653 n 0000 | a misconception that is favorable to the person who holds it -05895723 09 n 03 mistake 0 misunderstanding 0 misapprehension 0 004 @ 05893653 n 0000 + 00619869 v 0305 + 00619869 v 0204 + 00617748 v 0102 | an understanding of something that is not correct; "he wasn't going to admit his mistake"; "make no mistake about his intentions"; "there must be some misunderstanding--I don't have a sister" -05896059 09 n 04 illusion 0 fantasy 1 phantasy 1 fancy 2 009 @ 05893653 n 0000 + 01635432 v 0405 + 01637368 v 0201 + 01637368 v 0202 + 01937390 a 0102 + 01937187 a 0101 ~ 05896379 n 0000 ~ 05896515 n 0000 ~ 05896618 n 0000 | something many people believe that is false; "they have the illusion that I am very wealthy" -05896379 09 n 01 bubble 0 001 @ 05896059 n 0000 | an impracticable and illusory idea; "he didn't want to burst the newcomer's bubble" -05896515 09 n 02 will-o'-the-wisp 0 ignis_fatuus 0 001 @ 05896059 n 0000 | an illusion that misleads -05896618 09 n 01 wishful_thinking 0 001 @ 05896059 n 0000 | the illusion that what you wish for is actually true -05896733 09 n 02 delusion 0 hallucination 0 005 @ 05893653 n 0000 + 02117649 v 0201 + 01583880 a 0101 + 02575082 v 0103 ~ 05898430 n 0000 | a mistaken or unfounded opinion or idea; "he has delusions of competence"; "his dreams of vast wealth are a hallucination" -05896998 09 n 01 autism 0 004 @ 14304060 n 0000 ;c 06055946 n 0000 + 02542878 a 0101 ~ 05897255 n 0000 | (psychiatry) an abnormal absorption with the self; marked by communication disorders and short attention span and inability to treat others as people -05897255 09 n 01 infantile_autism 0 001 @ 05896998 n 0000 | a rare but serious syndrome of childhood characterized by withdrawal and lack of social responsiveness or interest in others and serious linguistic deficits; "there is considerable dispute among specialists concerning infantile autism" -05897553 09 n 06 apparition 0 phantom 0 phantasm 0 phantasma 0 fantasm 0 shadow 0 006 @ 05939636 n 0000 + 00626483 a 0601 + 01574925 a 0404 ~ 05897825 n 0000 ~ 05898035 n 0000 ~ 05898171 n 0000 | something existing in perception only; "a ghostly apparition at midnight" -05897825 09 n 03 unidentified_flying_object 0 UFO 0 flying_saucer 0 001 @ 05897553 n 0000 | an (apparently) flying object whose nature is unknown; especially those considered to have extraterrestrial origins -05898035 09 n 01 Flying_Dutchman 0 001 @ 05897553 n 0000 | a phantom ship that is said to appear in storms near the Cape of Good Hope -05898171 09 n 06 ghost 0 shade 1 spook 0 wraith 0 specter 0 spectre 0 003 @ 05897553 n 0000 + 01830965 v 0301 + 01783214 v 0103 | a mental representation of some haunting experience; "he looked like he had seen a ghost"; "it aroused specters from his past" -05898430 09 n 02 disorientation 0 freak_out 0 001 @ 05896733 n 0000 | a wild delusion (especially one induced by a hallucinogenic drug) -05898568 09 n 03 plan 0 program 0 programme 0 018 @ 05833840 n 0000 + 00795264 v 0302 + 00795264 v 0201 + 01638368 v 0101 + 00704690 v 0101 ~ 05891426 n 0000 ~ 05891572 n 0000 ~ 05899442 n 0000 ~ 05902327 n 0000 ~ 05902545 n 0000 ~ 05909585 n 0000 ~ 05910453 n 0000 ~ 05910940 n 0000 ~ 05911255 n 0000 ~ 05912399 n 0000 ~ 05912552 n 0000 ~ 05912814 n 0000 ~ 13421462 n 0000 | a series of steps to be carried out or goals to be accomplished; "they drew up a six-step plan"; "they discussed plans for a new bond issue" -05899087 09 n 02 program 1 programme 1 008 @ 05661996 n 0000 ~ 05900263 n 0000 ~ 05900430 n 0000 ~ 05900583 n 0000 ~ 05900716 n 0000 ~ 05900888 n 0000 ~ 05901410 n 0000 ~ 05910810 n 0000 | a system of projects or services intended to meet a public need; "he proposed an elaborate program of public works"; "working mothers rely on the day care program" -05899442 09 n 01 master_plan 0 001 @ 05898568 n 0000 | a long-term outline of a project or government function; "the zoning board adopted a master plan for the new development" -05899621 09 n 01 Apollo_program 0 001 @i 05900716 n 0000 | a program of space flights undertaken by US to land a man on the Moon; "the first lunar landing was achieved by the Apollo program on July 20, 1969" -05899831 09 n 01 Gemini_program 0 001 @i 05900716 n 0000 | a program of space flights undertaken by US in 1965 and 1966; "under the Gemini program each crew had two astronauts" -05900010 09 n 01 Mercury_program 0 001 @i 05900716 n 0000 | a program of rocket-powered flights undertaken by US between 1961 and 1963 with the goal of putting a man in orbit around the earth; "under the Mercury program each flight had one astronaut" -05900263 09 n 04 defense_program 0 defense_policy 0 defence_program 0 defence_policy 0 001 @ 05899087 n 0000 | a program for defending a country against its enemies -05900430 09 n 01 educational_program 0 004 @ 05899087 n 0000 ~ 05909730 n 0000 ~ 05909921 n 0000 ~ 05910712 n 0000 | a program for providing education -05900583 09 n 01 rehabilitation_program 0 002 @ 05899087 n 0000 ~ 05901248 n 0000 | a program for restoring someone to good health -05900716 09 n 01 space_program 0 004 @ 05899087 n 0000 ~i 05899621 n 0000 ~i 05899831 n 0000 ~i 05900010 n 0000 | a technological program intended to explore outer space -05900888 09 n 02 Superfund_program 0 Superfund 0 001 @ 05899087 n 0000 | the federal government's program to locate and investigate and clean up the worst uncontrolled and abandoned toxic waste sites nationwide; administered by the Environmental Protection Agency; "some have intimated that the Superfund's money may have turned into a political slush fund" -05901248 09 n 01 vocational_rehabilitation_program 0 001 @ 05900583 n 0000 | a program of rehabilitation through job training with an eye to gainful employment -05901410 09 n 02 tax_program 0 tax_policy 0 001 @ 05899087 n 0000 | a program for setting taxes -05901508 09 n 01 policy 0 009 @ 05902545 n 0000 ~ 05901840 n 0000 ~ 05902014 n 0000 ~ 05986822 n 0000 ~ 05986948 n 0000 ~ 05987283 n 0000 ~ 05987397 n 0000 ~ 05987522 n 0000 ~ 05987650 n 0000 | a plan of action adopted by an individual or social group; "it was a policy of retribution"; "a politician keeps changing his policies" -05901840 09 n 01 activism 0 003 @ 05901508 n 0000 + 00039122 a 0102 + 10315837 n 0102 | a policy of taking direct and militant action to achieve a political or social goal -05902014 09 n 04 beggar-my-neighbor_policy 0 beggar-my-neighbour_policy 0 beggar-my-neighbor_strategy 0 beggar-my-neighbour_strategy 0 001 @ 05901508 n 0000 | a policy of promoting oneself at the expense of others; used especially of national policy; "the United States has pursued a beggar-my-neighbor policy" -05902327 09 n 03 blueprint 0 design 2 pattern 2 003 @ 05898568 n 0000 + 01743784 v 0302 + 01683582 v 0101 | something intended as a guide for making something else; "a blueprint for a house"; "a pattern for a skirt" -05902545 09 n 01 plan_of_action 0 009 @ 05898568 n 0000 ~ 00557588 n 0000 ~ 05901508 n 0000 ~ 05902786 n 0000 ~ 05902872 n 0000 ~ 05905152 n 0000 ~ 05905348 n 0000 ~ 05905706 n 0000 %p 05980875 n 0000 | a plan for actively doing something -05902786 09 n 01 battle_plan 0 001 @ 05902545 n 0000 | plan for conducting a battle -05902872 09 n 01 system 1 005 @ 05902545 n 0000 ~ 05903112 n 0000 ~ 05903229 n 0000 ~ 05904918 n 0000 ~ 05905027 n 0000 | a procedure or process for obtaining an objective; "they had to devise a system that did not depend on cooperation" -05903112 09 n 01 credit_system 0 001 @ 05902872 n 0000 | a system for allowing people to purchase things on credit -05903229 09 n 01 legal_system 0 007 @ 05902872 n 0000 ;c 08441203 n 0000 ~ 05903445 n 0000 ~ 05903738 n 0000 ~ 05903878 n 0000 ~ 05904010 n 0000 ~ 05904135 n 0000 | a system for interpreting and enforcing the laws -05903445 09 n 01 bail 0 004 @ 05903229 n 0000 ;c 08441203 n 0000 + 02421749 v 0101 + 00890403 v 0101 | the legal system that allows an accused person to be temporarily released from custody (usually on condition that a sum of money guarantees their appearance at trial); "he is out on bail" -05903738 09 n 01 jury_system 0 002 @ 05903229 n 0000 ;c 08441203 n 0000 | a legal system for determining the facts at issue in a law suit -05903878 09 n 01 patent_system 0 002 @ 05903229 n 0000 ;c 08441203 n 0000 | a legal system for protecting the rights of inventors -05904010 09 n 01 tax_system 0 002 @ 05903229 n 0000 ;c 08441203 n 0000 | a legal system for assessing and collecting taxes -05904135 09 n 02 voting_system 0 electoral_system 0 004 @ 05903229 n 0000 ;c 08441203 n 0000 ~ 05904313 n 0000 ~ 05904616 n 0000 | a legal system for making democratic choices -05904313 09 n 05 uninominal_system 0 uninominal_voting_system 0 single-member_system 0 scrutin_uninomial_system 0 scrutin_uninominal_voting_system 0 002 @ 05904135 n 0000 ;c 08163273 n 0000 | based on the principle of having only one member (as of a legislature) selected from each electoral district -05904616 09 n 03 list_system 0 scrutin_de_liste 0 scrutin_de_liste_system 0 001 @ 05904135 n 0000 | based on the principle of proportional representation; voters choose between party lists, the number elected from each list being determined by the percentage cast for each list out of the total vote -05904918 09 n 01 pricing_system 0 001 @ 05902872 n 0000 | a system for setting prices on goods or services -05905027 09 n 01 promotion_system 0 001 @ 05902872 n 0000 | a system for advancing participants to higher-status positions -05905152 09 n 04 tactic 0 tactics 0 maneuver 0 manoeuvre 0 005 @ 05902545 n 0000 + 02369390 v 0403 + 02951000 a 0201 + 10688356 n 0201 + 02951000 a 0101 | a plan for attaining a particular goal -05905348 09 n 02 scheme 0 strategy 0 015 @ 05902545 n 0000 + 02950711 a 0201 + 02950711 a 0202 + 10661563 n 0201 ~ 05905802 n 0000 ~ 05906734 n 0000 ~ 05906867 n 0000 ~ 05906998 n 0000 ~ 05907251 n 0000 ~ 05907479 n 0000 ~ 05907682 n 0000 ~ 05908000 n 0000 ~ 05909306 n 0000 ~ 05909384 n 0000 ~ 13273381 n 0000 | an elaborate and systematic plan of action -05905706 09 n 02 travel_plan 0 itinerary 0 001 @ 05902545 n 0000 | a proposed route of travel -05905802 09 n 03 contrivance 0 stratagem 0 dodge 0 005 @ 05905348 n 0000 + 00148078 a 0303 ~ 05906080 n 0000 ~ 05906305 n 0000 ~ 05906554 n 0000 | an elaborate or deceitful scheme contrived to deceive or evade; "his testimony was just a contrivance to throw us off the track" -05906080 09 n 01 plant 0 002 @ 05905802 n 0000 + 01371201 v 0101 | something planted secretly for discovery by another; "the police used a plant to trick the thieves"; "he claimed that the evidence against him was a plant" -05906305 09 n 01 pump-and-dump_scheme 0 001 @ 05905802 n 0000 | an illegal scheme for making money by manipulating stock prices; the schemer persuades other people to buy the stock and then sells it himself as soon as the price of the stock rises -05906554 09 n 02 wangle 0 wangling 0 004 @ 05905802 n 0000 + 02527431 v 0201 + 02576921 v 0106 + 02527431 v 0101 | an instance of accomplishing something by scheming or trickery -05906734 09 n 01 counterterrorism 0 002 @ 05905348 n 0000 ;c 00759694 n 0000 | a strategy intended to prevent or counter terrorism -05906867 09 n 01 game_plan 0 002 @ 05905348 n 0000 ;c 00523513 n 0000 | (sports) a plan for achieving an objective in some sport -05906998 09 n 01 game_plan 1 001 @ 05905348 n 0000 | (figurative) a carefully thought out strategy for achieving an objective in war or politics or business or personal affairs; "newscasters speculated about the President's game plan for an invasion" -05907251 09 n 02 house_of_cards 0 bubble 1 001 @ 05905348 n 0000 | a speculative scheme that depends on unstable factors that the planner cannot control; "his proposal was nothing but a house of cards"; "a real estate bubble" -05907479 09 n 01 playbook 0 001 @ 05905348 n 0000 | a scheme or set of strategies for conducting a business campaign or a political campaign; "they borrowed a page from the playbook of the opposition" -05907682 09 n 03 plot 0 secret_plan 0 game 0 005 @ 05905348 n 0000 + 00708128 v 0101 ~ 05908391 n 0000 ~ 05908520 n 0000 ~ 05908882 n 0000 | a secret scheme to do something (especially something underhand or illegal); "they concocted a plot to discredit the governor"; "I saw through his little game from the start" -05908000 09 n 01 pyramid_scheme 0 001 @ 05905348 n 0000 | a fraudulent scheme in which people are recruited to make payments to the person who recruited them while expecting to receive payments from the persons they recruit; when the number of new recruits fails to sustain the hierarchical payment structure the scheme collapses with most of the participants losing the money they put in -05908391 09 n 02 counterplot 0 counterplan 0 002 @ 05907682 n 0000 + 00707490 v 0101 | a plot intended to subvert another plot -05908520 09 n 02 intrigue 0 machination 0 005 @ 05907682 n 0000 + 01651444 v 0206 + 00706975 v 0205 + 00707956 v 0102 ~ 05908727 n 0000 | a crafty and involved plot to achieve your (usually sinister) ends -05908727 09 n 01 priestcraft 1 001 @ 05908520 n 0000 | a derogatory reference to priests who use their influence to control secular or political affairs -05908882 09 n 02 conspiracy 0 cabal 0 005 @ 05907682 n 0000 ;c 06148148 n 0000 + 00706975 v 0202 + 00706975 v 0101 ~ 05909097 n 0000 | a plot to carry out some harmful or illegal act (especially a political plot) -05909097 09 n 01 Gunpowder_Plot 0 001 @ 05908882 n 0000 | a conspiracy in 1605 in England to blow up James I and the Houses of Parliament to avenge the persecution of Catholics in England; led by Guy Fawkes -05909306 09 n 01 waiting_game 0 001 @ 05905348 n 0000 | a strategy of delay -05909384 09 n 01 wheeze 0 002 @ 05905348 n 0000 ;r 08860123 n 0000 | (Briticism) a clever or amusing scheme or trick; "a clever wheeze probably succeeded in neutralizing the German espionage threat" -05909585 09 n 02 regimen 0 regime 0 002 @ 05898568 n 0000 ;c 06043075 n 0000 | (medicine) a systematic plan for therapy (often including diet) -05909730 09 n 01 academic_program 0 002 @ 05900430 n 0000 ;c 00883297 n 0000 | (education) a program of education in liberal arts and sciences (usually in preparation for higher education) -05909921 09 n 01 training_program 0 003 @ 05900430 n 0000 ~ 05910070 n 0000 ~ 05910328 n 0000 | a program designed for training in specific skills -05910070 09 n 01 biofeedback 0 001 @ 05909921 n 0000 | a training program in which a person is given information about physiological processes (heart rate or blood pressure) that is not normally available with the goal of gaining conscious control of them -05910328 09 n 01 preemployment_training_program 0 001 @ 05909921 n 0000 | a training program to prepare you for employment -05910453 09 n 02 project 0 projection 0 003 @ 05898568 n 0000 + 01638368 v 0102 ~ 05910577 n 0000 | a planned undertaking -05910577 09 n 03 moneymaker 0 money-spinner 0 cash_cow 0 001 @ 05910453 n 0000 | a project that generates a continuous flow of money -05910712 09 n 01 vocational_program 0 001 @ 05900430 n 0000 | a program of vocational education -05910810 09 n 01 works_program 0 001 @ 05899087 n 0000 | a program to provide jobs on public works paid for by government funds -05910940 09 n 03 agenda 0 docket 0 schedule 0 004 @ 05898568 n 0000 + 00794981 v 0301 + 00678282 v 0301 ~ 05911124 n 0000 | a temporally organized plan for matters to be attended to -05911124 09 n 02 menu 0 fare 0 001 @ 05910940 n 0000 | an agenda of things to do; "they worked rapidly down the menu of reports" -05911255 09 n 07 pension_plan 0 pension_account 0 retirement_plan 0 retirement_savings_plan 0 retirement_savings_account 0 retirement_account 0 retirement_program 0 004 @ 05898568 n 0000 ~ 05911560 n 0000 ~ 05912012 n 0000 ~ 05912243 n 0000 | a plan for setting aside money to be spent after retirement -05911560 09 n 02 401-k_plan 0 401-k 0 001 @ 05911255 n 0000 | a retirement savings plan that is funded by employee contributions and (often) matching contributions from the employer; contributions are made from your salary before taxes and the funds grow tax-free until they are withdrawn, at which point they can be converted into an IRA; funds can be transferred if you change employers and you can (to some extent) manage the investments yourself -05912012 09 n 02 individual_retirement_account 0 IRA 0 001 @ 05911255 n 0000 | a retirement plan that allows you to contribute a limited yearly sum toward your retirement; taxes on the interest earned in the account are deferred -05912243 09 n 01 Keogh_plan 0 001 @ 05911255 n 0000 | a tax-deferred pension plan for employees of unincorporated businesses or for self-employed persons -05912399 09 n 01 employee_savings_plan 0 001 @ 05898568 n 0000 | a plan that allows employees to contribute to an investment pool managed the employer -05912552 09 n 02 road_map 0 guideline 1 002 @ 05898568 n 0000 @ 06650701 n 0000 | a detailed plan or explanation to guide you in setting standards or determining a course of action; "the president said he had a road map for normalizing relations with Vietnam" -05912814 09 n 01 stock_purchase_plan 0 002 @ 05898568 n 0000 ~ 05912969 n 0000 | an organized plan for employees of a company to buy shares of its stock -05912969 09 n 02 employee_stock_ownership_plan 0 ESOP 0 001 @ 05912814 n 0000 | a program under which employees regularly accumulate shares and may ultimately assume control of the company -05913160 09 n 01 figment 0 001 @ 05833840 n 0000 | a contrived or fantastic idea; "a figment of the imagination" -05913275 09 n 03 generalization 0 generalisation 0 generality 0 006 @ 05833840 n 0000 + 00783840 a 0301 + 01426077 a 0301 + 01022906 v 0202 + 01022906 v 0101 ~ 05913538 n 0000 | an idea or conclusion having general application; "he spoke in broad generalities" -05913538 09 n 02 principle 3 rule 3 005 @ 05913275 n 0000 ~ 05913842 n 0000 ~ 05915356 n 0000 ~ 05915584 n 0000 ~ 05915811 n 0000 | a basic generalization that is accepted as true and that can be used as a basis for reasoning or conduct; "their principles of composition characterized all their works" -05913842 09 n 01 pillar 0 002 @ 05913538 n 0000 ~ 05913994 n 0000 | a fundamental principle or practice; "science eroded the pillars of superstition" -05913994 09 n 01 pillar_of_Islam 0 007 @ 05913842 n 0000 ;c 06234825 n 0000 ~ 05914234 n 0000 ~ 05914359 n 0000 ~ 05914591 n 0000 ~ 05914851 n 0000 ~ 05915034 n 0000 | (Islam) one of the five religious obligations accepted by all Muslims -05914234 09 n 01 shahadah 0 002 @ 05913994 n 0000 @ 06734702 n 0000 | the first pillar of Islam is an affirmation of faith -05914359 09 n 04 salat 0 salaat 0 salah 0 salaah 0 002 @ 05913994 n 0000 @ 01028655 n 0000 | the second pillar of Islam is prayer; a prescribed liturgy performed five times a day (preferably in a mosque) and oriented toward Mecca -05914591 09 n 01 sawm 0 002 @ 05913994 n 0000 @ 01068773 n 0000 | the third pillar of Islam is fasting (primarily during the month of Ramadan); Muslims abstain from food and drink and gambling and all sensuous pleasures from sunrise to sunset during Ramadan -05914851 09 n 01 zakat 0 002 @ 05913994 n 0000 @ 01089635 n 0000 | the fourth pillar of Islam is almsgiving as an act of worship; "the zakat is earmarked for the poor and disabled" -05915034 09 n 03 hajj 0 haj 0 hadj 0 002 @ 05913994 n 0000 @ 00311687 n 0000 | the fifth pillar of Islam is a pilgrimage to Mecca during the month of Dhu al-Hijja; at least once in a lifetime a Muslim is expected to make a religious journey to Mecca and the Kaaba; "for a Muslim the hajj is the ultimate act of worship" -05915356 09 n 01 yang 0 003 @ 05913538 n 0000 ;r 08723006 n 0000 ! 05915584 n 0101 | the bright positive masculine principle in Chinese dualistic cosmology; "yin and yang together produce everything that comes into existence" -05915584 09 n 01 yin 0 003 @ 05913538 n 0000 ;r 08723006 n 0000 ! 05915356 n 0101 | the dark negative feminine principle in Chinese dualistic cosmology; "the interaction of yin and yang maintains the harmony of the universe" -05915811 09 n 01 feng_shui 0 002 @ 05913538 n 0000 ;r 08723006 n 0000 | rules in Chinese philosophy that govern spatial arrangement and orientation in relation to patterns of yin and yang and the flow of energy (qi); the favorable or unfavorable effects are taken into consideration in designing and siting buildings and graves and furniture -05916155 09 n 01 suggestion 0 003 @ 05833840 n 0000 ~ 05916306 n 0000 ~ 05916520 n 0000 | an idea that is suggested; "the picnic was her suggestion" -05916306 09 n 04 inkling 0 intimation 0 glimmering 0 glimmer 0 003 @ 05916155 n 0000 + 00930806 v 0202 + 00927711 v 0201 | a slight suggestion or vague understanding; "he had no inkling what was about to happen" -05916520 09 n 01 posthypnotic_suggestion 0 001 @ 05916155 n 0000 | a suggestion that is made to a person who is hypnotized that specifies an action he will perform (usually in response to a cue) after he has awakened -05916739 09 n 05 impression 0 feeling 3 belief 1 notion 2 opinion 2 008 @ 05833840 n 0000 + 00721098 v 0301 + 00715239 v 0202 + 02747667 a 0101 ~ 05917174 n 0000 ~ 05917477 n 0000 ~ 05917675 n 0000 ~ 05919034 n 0000 | a vague idea in which some confidence is placed; "his impression of her was favorable"; "what are your feelings about the crisis?"; "it strengthened my belief in his sincerity"; "I had a feeling that she was lying" -05917174 09 n 01 presence 0 002 @ 05916739 n 0000 + 01846413 a 0101 | the impression that something is present; "he felt the presence of an evil force" -05917328 09 n 01 reaction 0 001 @ 05833840 n 0000 | an idea evoked by some experience; "his reaction to the news was to start planning what to do" -05917477 09 n 01 effect 0 004 @ 05916739 n 0000 + 01642924 v 0101 ~ 05917869 n 0000 ~ 05917994 n 0000 | an impression (especially one that is artificial or contrived); "he just did it for effect" -05917675 09 n 01 first_blush 0 001 @ 05916739 n 0000 | at the first glimpse or impression; "at first blush the idea possesses considerable intuitive appeal but on closer examination it fails" -05917869 09 n 01 sound_effect 0 001 @ 05917477 n 0000 | an effect that imitates a sound called for in the script of a play -05917994 09 n 01 special_effect 0 002 @ 05917477 n 0000 ~ 05918171 n 0000 | an effect used to produce scenes that cannot be achieved by normal techniques (especially on film) -05918171 09 n 01 stage_effect 0 001 @ 05917994 n 0000 | a special effect created on the stage -05918267 09 n 01 theorem 0 002 @ 05833840 n 0000 ~ 05918379 n 0000 | an idea accepted as a demonstrable truth -05918379 09 n 01 Bayes'_theorem 0 002 @ 05918267 n 0000 ;c 06018465 n 0000 | (statistics) a theorem describing how the conditional probability of a set of possible causes for a given observed event can be computed from knowledge of the probability of each cause and the conditional probability of the outcome of each cause -05918704 09 n 01 Bayes'_postulate 0 002 @ 06753299 n 0000 ;c 06018465 n 0000 | (statistics) the difficulty of applying Bayes' theorem is that the probabilities of the different causes are seldom known, in which case it may be postulated that they are all equal (sometimes known as postulating the equidistribution of ignorance) -05919034 09 n 03 intuition 1 hunch 0 suspicion 1 004 @ 05916739 n 0000 + 00921072 v 0301 + 00590761 v 0101 ~ 05919263 n 0000 | an impression that something might be the case; "he had an intuition that something had gone wrong" -05919263 09 n 02 heart 0 bosom 0 001 @ 05919034 n 0000 | the locus of feelings and intuitions; "in your heart you know it is true"; "her story would melt your bosom" -05919431 09 n 02 prescience 0 prevision 0 002 @ 05622956 n 0000 + 00772137 a 0101 | the power to foresee the future -05919549 09 n 04 notion 1 whim 0 whimsy 0 whimsey 0 002 @ 05833840 n 0000 + 00719442 a 0303 | an odd or fanciful or capricious idea; "the theatrical notion of disguise is associated with disaster in his stories"; "he had a whimsy about flying to the moon"; "whimsy can be humorous to someone with time to enjoy it" -05919866 09 n 02 meaning 0 substance 0 010 @ 05833840 n 0000 + 00931852 v 0101 + 00955148 v 0101 ~ 05920651 n 0000 ~ 05920791 n 0000 ~ 05922450 n 0000 ~ 05922809 n 0000 ~ 05922949 n 0000 ~ 05923314 n 0000 ~ 05923566 n 0000 | the idea that is intended; "What is the meaning of this proverb?" -05920159 09 n 01 burden 0 001 @ 05833840 n 0000 | the central idea that is expanded in a document or discourse -05920272 09 n 02 theme 1 motif 0 003 @ 05833840 n 0000 + 02813680 a 0101 ~ 05920482 n 0000 | a unifying idea that is a recurrent element in literary or artistic work; "it was the usual `boy gets girl' theme" -05920482 09 n 01 topos 0 001 @ 05920272 n 0000 | a traditional theme or motif or literary convention; "James Joyce uses the topos of the Wandering Jew in his Ulysses" -05920651 09 n 01 semantics 1 001 @ 05919866 n 0000 | the meaning of a word, phrase, sentence, or text; "a petty argument about semantics" -05920791 09 n 03 significance 1 import 0 implication 0 005 @ 05919866 n 0000 + 00929839 v 0301 + 02634808 v 0302 + 00932636 v 0202 + 01497387 a 0103 | a meaning that is not expressly stated but can be inferred; "the significance of his remark became clear only later"; "the expectation was spread both by word and by implication" -05921123 09 n 10 kernel 0 substance 1 core 0 center 0 centre 0 essence 0 gist 0 heart 1 heart_and_soul 0 inwardness 2 marrow 0 meat 0 nub 0 pith 0 sum 0 nitty-gritty 0 011 @ 05809192 n 0000 + 02378183 v 0f01 + 00548316 a 0e01 + 01497245 a 0c01 + 01276150 a 0604 + 01277097 a 0402 ~ 05921685 n 0000 ~ 05921868 n 0000 ~ 05922014 n 0000 ~ 05922175 n 0000 ~ 05922305 n 0000 | the choicest or most essential or most vital part of some idea or experience; "the gist of the prosecutor's argument"; "the heart and soul of the Republican Party"; "the nub of the story" -05921685 09 n 01 bare_bones 0 003 @ 05921123 n 0000 ;u 06295235 n 0000 ;u 07075172 n 0000 | (plural) the most basic facts or elements; "he told us only the bare bones of the story" -05921868 09 n 01 hypostasis 0 003 @ 05921123 n 0000 ;c 06162653 n 0000 + 00692718 v 0101 | (metaphysics) essential nature or underlying reality -05922014 09 n 02 quiddity 0 haecceity 0 001 @ 05921123 n 0000 | the essence that makes something the kind of thing it is and makes it different from any other -05922175 09 n 01 quintessence 0 002 @ 05921123 n 0000 + 02998269 a 0101 | the purest and most concentrated essence of something -05922305 09 n 01 stuff 0 001 @ 05921123 n 0000 | a critically important or characteristic component; "suspense is the very stuff of narrative" -05922450 09 n 02 tenor 0 strain 0 002 @ 05919866 n 0000 ~ 05922651 n 0000 | the general meaning or substance of an utterance; "although I disagreed with him I could follow the tenor of his argument" -05922651 09 n 02 drift 0 purport 0 002 @ 05922450 n 0000 + 01026975 v 0101 | the pervading meaning or tenor; "caught the general drift of the conversation" -05922809 09 n 02 undertone 0 undercurrent 0 001 @ 05919866 n 0000 | a subdued emotional quality underlying an utterance; implicit meaning -05922949 09 n 03 reference 0 denotation 0 extension 0 006 @ 05919866 n 0000 + 00722707 a 0301 + 00931467 v 0201 + 00722886 a 0101 + 02676054 v 0101 + 00931467 v 0102 | the most direct or specific meaning of a word or expression; the class of objects that an expression refers to; "the extension of `satellite of Mars' is the set containing only Demos and Phobos" -05923314 09 n 01 reference 1 004 @ 05919866 n 0000 + 00723015 a 0101 + 00931467 v 0102 + 00655555 v 0101 | the relation between a word or phrase and the object or idea it refers to; "he argued that reference is a consequence of conditioned reflexes" -05923566 09 n 01 connotation 0 003 @ 05919866 n 0000 + 00723395 a 0101 + 00929839 v 0102 | an idea that is implied or suggested -05923696 09 n 01 ideal 0 010 @ 05833840 n 0000 + 00624967 v 0101 + 00692907 v 0101 + 00624967 v 0102 + 00692907 v 0102 ~ 05923983 n 0000 ~ 05924519 n 0000 ~ 05924920 n 0000 ~ 05925366 n 0000 ~ 05925862 n 0000 | the idea of something that is perfect; something that one hopes to attain -05923983 09 n 01 value 1 004 @ 05923696 n 0000 + 00694068 v 0103 ~ 05924165 n 0000 ~ 05955323 n 0000 | an ideal accepted by some individual or group; "he has old-fashioned values" -05924165 09 n 01 introject 0 003 @ 05923983 n 0000 ;c 00704305 n 0000 + 00554894 v 0101 | (psychoanalysis) parental figures (and their values) that you introjected as a child; the voice of conscience is usually a parent's voice internalized -05924408 09 n 02 idealization 0 idealisation 0 001 @ 05833840 n 0000 | something that exists only as an idea -05924519 09 n 04 paragon 0 idol 0 perfection 0 beau_ideal 0 005 @ 05923696 n 0000 + 10415230 n 0301 + 01778017 v 0201 + 01778017 v 0202 ~ 05924730 n 0000 | an ideal instance; a perfect embodiment of a concept -05924730 09 n 01 gold_standard 0 001 @ 05924519 n 0000 | a paragon of excellence; "academic education is the gold standard against which other educational activity is pejoratively judged" -05924920 09 n 02 criterion 0 standard 0 006 @ 05923696 n 0000 + 00467717 v 0201 + 00467717 v 0202 + 02295710 a 0101 ~ 05798569 n 0000 ~ 05925177 n 0000 | the ideal in terms of which something can be judged; "they live by the standards of their community" -05925177 09 n 01 design_criteria 0 001 @ 05924920 n 0000 | criteria that designers should meet in designing some system or device; "the job specifications summarized the design criteria" -05925366 09 n 04 exemplar 0 example 1 model 1 good_example 0 008 @ 05923696 n 0000 + 02586446 a 0201 + 01021128 v 0201 + 02586446 a 0101 ~ 05925702 n 0000 ~ 05938633 n 0000 ~ 05938795 n 0000 ~ 05939244 n 0000 | something to be imitated; "an exemplar of success"; "a model of clarity"; "he is the very model of a modern major general" -05925702 09 n 02 beauty 0 beaut 0 001 @ 05925366 n 0000 | an outstanding example of its kind; "his roses were beauties"; "when I make a mistake it's a beaut" -05925862 09 n 01 ego_ideal 0 002 @ 05923696 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the part of the ego that contains an ideal of personal excellence toward which a person strives -05926049 09 n 01 keynote 0 002 @ 05833840 n 0000 + 00299188 v 0101 | a fundamental or central idea -05926150 09 n 01 kink 1 002 @ 05833840 n 0000 + 00609564 a 0102 | an eccentric idea -05926236 09 n 01 wisdom 2 002 @ 05809192 n 0000 ~ 05926358 n 0000 | accumulated knowledge or erudition or enlightenment -05926358 09 n 05 reconditeness 0 abstruseness 0 abstrusity 0 profoundness 1 profundity 1 005 @ 05926236 n 0000 + 02162934 a 0502 + 02162934 a 0402 + 00899226 a 0301 + 00899226 a 0201 | wisdom that is recondite and abstruse and profound; "the anthropologist was impressed by the reconditeness of the native proverbs" -05926676 09 n 03 representation 0 mental_representation 0 internal_representation 0 019 @ 05809192 n 0000 + 00772967 v 0102 + 00836236 v 0105 ~ 05764365 n 0000 ~ 05927169 n 0000 ~ 05927364 n 0000 ~ 05927586 n 0000 ~ 05927813 n 0000 ~ 05928118 n 0000 ~ 05928513 n 0000 ~ 05928840 n 0000 ~ 05930010 n 0000 ~ 05930136 n 0000 ~ 05935060 n 0000 ~ 05937112 n 0000 ~ 05939432 n 0000 ~ 05940414 n 0000 ~ 05940869 n 0000 ~ 05941037 n 0000 | a presentation to the mind in the form of an idea or image -05927169 09 n 01 instantiation 0 003 @ 05926676 n 0000 + 02155799 v 0101 + 02155493 v 0101 | a representation of an idea in the form of an instance of it; "how many instantiations were found?" -05927364 09 n 01 antitype 1 002 @ 05926676 n 0000 + 02631085 a 0101 | a person or thing represented or foreshadowed by a type or symbol; especially a figure in the Old Testament having a counterpart in the New Testament -05927586 09 n 01 stereotype 0 004 @ 05926676 n 0000 + 00607977 a 0102 + 00607977 a 0103 + 00656292 v 0102 | a conventional or formulaic conception or image; "regional stereotypes have been part of America since its founding" -05927813 09 n 02 schema 1 scheme 1 007 @ 05926676 n 0000 + 00708376 v 0201 + 01632103 v 0201 + 00568234 v 0201 + 01980796 a 0103 + 01632103 v 0101 + 00568234 v 0101 | an internal representation of the world; an organization of concepts and actions that can be revised by new information about the world -05928118 09 n 02 image 0 mental_image 0 007 @ 05926676 n 0000 + 01635432 v 0109 ~ 05928391 n 0000 ~ 05935871 n 0000 ~ 05936381 n 0000 ~ 05936704 n 0000 ~ 05936995 n 0000 | an iconic mental representation; "her imagination forced images upon her too awful to contemplate" -05928391 09 n 02 imagination_image 0 thought-image 0 001 @ 05928118 n 0000 | a mental image produced by the imagination -05928513 09 n 03 interpretation 1 reading 1 version 0 005 @ 05926676 n 0000 + 00938247 v 0102 + 00623151 v 0101 ~ 05928733 n 0000 ~ 06246241 n 0000 | a mental representation of the meaning or significance of something -05928733 09 n 01 reinterpretation 0 002 @ 05928513 n 0000 + 00624140 v 0101 | a new or different meaning -05928840 09 n 01 phantasmagoria 0 003 @ 05926676 n 0000 + 01943067 a 0101 + 01943067 a 0102 | a constantly changing medley of real or imagined images (as in a dream) -05929008 09 n 05 character 1 role 0 theatrical_role 0 part 1 persona 0 011 @ 00548802 n 0000 + 01723690 v 0501 + 00849788 v 0501 + 02697725 v 0503 ~ 05929363 n 0000 ~ 05929582 n 0000 ~ 05929670 n 0000 ~ 05929780 n 0000 ~ 05929887 n 0000 ~ 10173305 n 0000 ~ 10753779 n 0000 | an actor's portrayal of someone in a play; "she played the part of Desdemona" -05929363 09 n 02 bit_part 0 minor_role 0 002 @ 05929008 n 0000 ~ 05929461 n 0000 | a small role -05929461 09 n 01 soubrette 0 001 @ 05929363 n 0000 | a minor female role as a pert flirtatious lady's maid in a comedy -05929582 09 n 01 heavy 0 001 @ 05929008 n 0000 | a serious (or tragic) role in a play -05929670 09 n 01 hero 0 001 @ 05929008 n 0000 | the principal character in a play or movie or novel or poem -05929780 09 n 01 ingenue 0 001 @ 05929008 n 0000 | the role of an innocent artless young woman in a play -05929887 09 n 02 title_role 0 name_part 0 001 @ 05929008 n 0000 | the role of the character after whom the play is named -05930010 09 n 01 psychosexuality 0 002 @ 05926676 n 0000 + 02886971 a 0101 | the mental representation of sexual activities -05930136 09 n 03 percept 0 perception 1 perceptual_experience 0 005 @ 05926676 n 0000 ~ 05930386 n 0000 ~ 05930574 n 0000 %p 05930736 n 0000 ~ 05932477 n 0000 | the representation of what is perceived; basic component in the formation of a concept -05930386 09 n 01 figure 0 002 @ 05930136 n 0000 ! 05930574 n 0101 | a unitary percept having structure and coherence that is the object of attention and that stands out against a ground -05930574 09 n 01 ground 1 002 @ 05930136 n 0000 ! 05930386 n 0101 | a relatively homogeneous percept extending back of the figure on which attention is focused -05930736 09 n 03 form 0 shape 0 pattern 0 011 @ 05726345 n 0000 #p 05930136 n 0000 + 02712243 v 0301 + 00701040 v 0202 + 00142191 v 0102 ~ 05931152 n 0000 ~ 05931341 n 0000 ~ 05931512 n 0000 ~ 05931827 n 0000 ~ 05931980 n 0000 ~ 05932062 n 0000 | a perceptual structure; "the composition presents problems for students of musical form"; "a visual pattern must include not only objects but the spaces between them" -05931152 09 n 01 fractal 0 002 @ 05930736 n 0000 ;c 06000644 n 0000 | (mathematics) a geometric pattern that is repeated at every scale and so cannot be represented by classical geometry -05931341 09 n 01 gestalt 0 001 @ 05930736 n 0000 | a configuration or pattern of elements so unified as a whole that it cannot be described merely as a sum of its parts -05931512 09 n 01 grid 0 003 @ 05930736 n 0000 ~ 03459159 n 0000 ~ 05931658 n 0000 | a pattern of regularly spaced horizontal and vertical lines -05931658 09 n 01 Amsler_grid 0 001 @ 05931512 n 0000 | a pattern of small boxes that is used for self-monitoring by patients who have age-related macular degeneration -05931827 09 n 01 kaleidoscope 0 003 @ 05930736 n 0000 + 00345949 a 0101 + 00345949 a 0102 | a complex pattern of constantly changing colors and shapes -05931980 09 n 01 mosaic 0 001 @ 05930736 n 0000 | a pattern resembling a mosaic -05932062 09 n 01 strand 0 001 @ 05930736 n 0000 | a pattern forming a unity within a larger structural whole; "he tried to pick up the strands of his former life"; "I could hear several melodic strands simultaneously" -05932282 09 n 01 sonata_form 0 001 @ 05841151 n 0000 | a musical form having 3 sections -- exposition and development and recapitulation; characteristic of 1st movement of a sonata or symphony -05932477 09 n 02 visual_percept 0 visual_image 0 006 @ 05930136 n 0000 ~ 05932709 n 0000 ~ 05932891 n 0000 ~ 05933054 n 0000 ~ 05933246 n 0000 ~ 05933638 n 0000 | a percept that arises from the eyes; an image in the visual system -05932709 09 n 01 eye_candy 0 001 @ 05932477 n 0000 | visual images that are pleasing to see but are intellectually undemanding; "he wanted to put some eye candy on their web site" -05932891 09 n 02 field 1 field_of_view 0 003 @ 05932477 n 0000 ~ 05934852 n 0000 ~ 05934962 n 0000 | the area that is visible (as through an optical instrument) -05933054 09 n 01 sight 1 002 @ 05932477 n 0000 + 02163746 v 0102 | an instance of visual perception; "the sight of his wife brought him back to reality"; "the train was an unexpected sight" -05933246 09 n 06 view 1 aspect 1 prospect 0 scene 0 vista 0 panorama 0 012 @ 05932477 n 0000 + 02561123 a 0602 + 00220600 a 0401 + 02150948 v 0102 ~ 05933834 n 0000 ~ 05934029 n 0000 ~ 05934123 n 0000 ~ 05934278 n 0000 ~ 05934396 n 0000 ~ 05934550 n 0000 ~ 05934673 n 0000 ~ 05934780 n 0000 | the visual percept of a region; "the most desirable feature of the park are the beautiful views" -05933638 09 n 03 visual_field 0 field_of_vision 0 field_of_regard 0 001 @ 05932477 n 0000 | all of the points of the physical environment that can be perceived by a stable eye at a given moment -05933834 09 n 02 background 0 ground 0 001 @ 05933246 n 0000 | the part of a scene (or picture) that lies behind objects in the foreground; "he posed her against a background of rolling hills" -05934029 09 n 01 coast 0 001 @ 05933246 n 0000 | the area within view; "the coast is clear" -05934123 09 n 01 exposure 0 001 @ 05933246 n 0000 | aspect resulting from the direction a building or window faces; "the studio had a northern exposure" -05934278 09 n 01 foreground 0 002 @ 05933246 n 0000 + 00514069 v 0101 | the part of a scene that is near the viewer -05934396 09 n 01 glimpse 0 002 @ 05933246 n 0000 + 02119470 v 0101 | a brief or incomplete view; "from the window he could catch a glimpse of the lake" -05934550 09 n 01 middle_distance 0 001 @ 05933246 n 0000 | the part of a scene between the foreground and the background -05934673 09 n 01 side_view 0 002 @ 05933246 n 0000 ~ 08613202 n 0000 | a view from the side of something -05934780 09 n 01 tableau 0 001 @ 05933246 n 0000 | any dramatic scene -05934852 09 n 01 microscopic_field 0 001 @ 05932891 n 0000 | the areas that is visible through a microscope -05934962 09 n 01 operative_field 0 001 @ 05932891 n 0000 | the area that is open during surgery -05935060 09 n 01 memory 2 007 @ 05926676 n 0000 + 00604576 v 0101 ~ 05762848 n 0000 ~ 05935292 n 0000 ~ 05935381 n 0000 ~ 05935535 n 0000 ~ 05935717 n 0000 | something that is remembered; "search as he would, the memory was lost" -05935292 09 n 01 recollection 2 001 @ 05935060 n 0000 | something recalled to the mind -05935381 09 n 02 engram 0 memory_trace 0 001 @ 05935060 n 0000 | a postulated biochemical change (presumably in neural tissue) that represents a memory -05935535 09 n 01 confabulation 0 003 @ 05935060 n 0000 ;c 06055946 n 0000 + 01634887 v 0101 | (psychiatry) a plausible but imagined memory that fills in gaps in what is remembered -05935717 09 n 01 screen_memory 0 001 @ 05935060 n 0000 | an imagined memory of a childhood experience; hides another memory of distressing significance -05935871 09 n 01 memory_image 0 003 @ 05928118 n 0000 ~ 05936016 n 0000 ~ 05936130 n 0000 | a mental image of something previously experienced -05936016 09 n 01 memory_picture 0 001 @ 05935871 n 0000 | a memory image that is similar to a visual perception -05936130 09 n 02 afterimage 0 aftersensation 0 002 @ 05935871 n 0000 ~ 05936300 n 0000 | an image (usually a negative image) that persists after stimulation has ceased -05936300 09 n 01 aftertaste 0 001 @ 05936130 n 0000 | an afterimage of a taste -05936381 09 n 03 visual_image 1 visualization 0 visualisation 0 003 @ 05928118 n 0000 + 01636008 v 0302 + 01635432 v 0201 | a mental image that is similar to a visual perception -05936561 09 n 02 fusion 0 optical_fusion 0 001 @ 05710860 n 0000 | the combining of images from the two eyes to form a single visual percept -05936704 09 n 03 mental_picture 0 picture 0 impression 1 002 @ 05928118 n 0000 + 01635432 v 0208 | a clear and telling mental image; "he described his mental picture of his assailant"; "he had no clear picture of himself or his world"; "the events left a permanent impression in his mind" -05936995 09 n 01 auditory_image 0 001 @ 05928118 n 0000 | a mental image that is similar to an auditory perception -05937112 09 n 02 model 2 example 2 011 @ 05926676 n 0000 + 02723733 v 0201 + 01021128 v 0201 + 01743784 v 0101 ~ 05937417 n 0000 ~ 05937524 n 0000 ~ 05938170 n 0000 ~ 05938314 n 0000 ~ 05938400 n 0000 ~ 05938976 n 0000 ~ 05939109 n 0000 | a representative form or pattern; "I profited from his example" -05937417 09 n 02 lodestar 0 loadstar 0 001 @ 05937112 n 0000 | something that serves as a model or guide -05937524 09 n 04 prototype 0 paradigm 0 epitome 0 image 2 009 @ 05937112 n 0000 + 02699141 v 0302 + 02699141 v 0303 + 02965415 a 0201 + 01011392 a 0104 + 01011392 a 0105 + 01011392 a 0103 ~ 05937878 n 0000 ~ 05938014 n 0000 | a standard or typical example; "he is the prototype of good breeding"; "he provided America with an image of the good father" -05937878 09 n 01 concentrate 0 001 @ 05937524 n 0000 | a concentrated example of something; "the concentrate of contemporary despair" -05938014 09 n 01 imago 0 002 @ 05937524 n 0000 ;c 00704305 n 0000 | (psychoanalysis) an idealized image of someone (usually a parent) formed in childhood -05938170 09 n 02 type_specimen 0 holotype 0 001 @ 05937112 n 0000 | the original specimen from which the description of a new species is made -05938314 09 n 01 microcosm 0 001 @ 05937112 n 0000 | a miniature model of something -05938400 09 n 03 original 0 archetype 0 pilot 0 004 @ 05937112 n 0000 + 01011392 a 0202 + 01011392 a 0201 + 00699207 a 0101 | something that serves as a model or a basis for making copies; "this painting is a copy of the original" -05938633 09 n 02 pacesetter 0 pacemaker 0 001 @ 05925366 n 0000 | a leading instance in its field; "the new policy will be a pacesetter in community relations" -05938795 09 n 01 pattern 1 002 @ 05925366 n 0000 + 01743784 v 0102 | a model considered worthy of imitation; "the American constitution has provided a pattern for many republics" -05938976 09 n 03 template 0 templet 0 guide 0 002 @ 05937112 n 0000 ~ 07086323 n 0000 | a model or standard for making comparisons -05939109 09 n 01 prefiguration 1 002 @ 05937112 n 0000 + 01636993 v 0101 | an example that prefigures or foreshadows what is to come -05939244 09 n 01 prodigy 0 002 @ 05925366 n 0000 + 01384730 a 0102 | an impressive or wonderful example of a particular quality; "the Marines are expected to perform prodigies of valor" -05939432 09 n 01 appearance 0 005 @ 05926676 n 0000 + 02133435 v 0102 ~ 05939636 n 0000 ~ 05939948 n 0000 ~ 05940302 n 0000 | a mental representation; "I tried to describe his appearance to the police" -05939636 09 n 02 illusion 1 semblance 0 005 @ 05939432 n 0000 + 01937187 a 0101 ~ 05897553 n 0000 ~ 05939809 n 0000 ~ 05940090 n 0000 | an erroneous mental representation -05939809 09 n 01 irradiation 0 001 @ 05939636 n 0000 | the apparent enlargement of a bright object when viewed against a dark background -05939948 09 n 03 three-D 0 3-D 0 3D 0 001 @ 05939432 n 0000 | having a three-dimensional form or appearance; "aren't dreams always in 3-D?" -05940090 09 n 01 phantom_limb 0 001 @ 05939636 n 0000 | the illusion that a limb still exists after it has been amputated -05940214 09 n 01 mirage 0 001 @ 05893653 n 0000 | something illusory and unattainable -05940302 09 n 01 front 0 001 @ 05939432 n 0000 | the outward appearance of a person; "he put up a bold front" -05940414 09 n 02 blur 0 fuzz 0 006 @ 05926676 n 0000 + 00781644 a 0103 + 02158034 v 0103 + 02161758 v 0101 + 00312990 v 0101 + 00311113 v 0101 | a hazy or indistinct representation; "it happened so fast it was just a blur"; "he tried to clear his head of the whisky fuzz" -05940688 09 n 01 unsoundness 0 002 @ 05893653 n 0000 + 02500179 a 0102 | a misconception that is fallacious and not true or valid; "the unsoundness of his conclusion was obvious" -05940869 09 n 02 abstractionism 0 unrealism 0 002 @ 05926676 n 0000 + 09758424 n 0101 | a representation having no reference to concrete objects or specific examples -05941037 09 n 02 concretism 0 concrete_representation 0 003 @ 05926676 n 0000 + 02701377 a 0101 ~ 05941210 n 0000 | a representation of an abstract idea in concrete terms -05941210 09 n 02 shape 1 embodiment 1 003 @ 05941037 n 0000 + 02740352 v 0201 + 00701040 v 0102 | a concrete representation of an otherwise nebulous concept; "a circle was the embodiment of his concept of life" -05941423 09 n 01 belief 0 034 @ 05809192 n 0000 + 00683280 v 0101 ! 05979909 n 0101 ~ 05942888 n 0000 ~ 05943066 n 0000 ~ 05943300 n 0000 ~ 05944686 n 0000 ~ 05944958 n 0000 ~ 05945227 n 0000 ~ 05945383 n 0000 ~ 05945508 n 0000 ~ 05945642 n 0000 ~ 05946089 n 0000 ~ 05946234 n 0000 ~ 05946406 n 0000 ~ 05946687 n 0000 ~ 05949726 n 0000 ~ 05951692 n 0000 ~ 05951820 n 0000 ~ 05951969 n 0000 ~ 05952199 n 0000 ~ 05952367 n 0000 ~ 05952490 n 0000 ~ 05952678 n 0000 ~ 05952829 n 0000 ~ 05952979 n 0000 ~ 05953804 n 0000 ~ 05954481 n 0000 ~ 05954672 n 0000 ~ 05954807 n 0000 ~ 05954894 n 0000 ~ 05955095 n 0000 ~ 05963101 n 0000 ~ 09504135 n 0000 | any cognitive content held as true -05942104 09 n 01 apophatism 0 003 @ 05946687 n 0000 ! 05942338 n 0101 ! 05942579 n 0101 | the religious belief that God cannot be known but is completely `other' and must be described in negative terms (in terms of what God is not) -05942338 09 n 01 cataphatism 0 003 @ 05946687 n 0000 ! 05942104 n 0101 ! 05942579 n 0101 | the religious belief that God has given enough clues to be known to humans positively and affirmatively (e.g., God created Adam `in his own image') -05942579 09 n 02 doctrine_of_analogy 0 analogy 1 003 @ 05946687 n 0000 ! 05942104 n 0101 ! 05942338 n 0101 | the religious belief that between creature and creator no similarity can be found so great but that the dissimilarity is always greater; any analogy between God and humans will always be inadequate -05942888 09 n 03 conviction 0 strong_belief 0 article_of_faith 0 002 @ 05941423 n 0000 ~ 06246076 n 0000 | an unshakable belief in something without need for proof or evidence -05943066 09 n 02 faith 1 trust 1 003 @ 05941423 n 0000 + 02464693 a 0202 + 00688377 v 0201 | complete confidence in a person or plan etc; "he cherished the faith of a good woman"; "the doctor-patient relationship is based on trust" -05943300 09 n 05 doctrine 0 philosophy 1 philosophical_system 0 school_of_thought 0 ism 0 067 @ 05941423 n 0000 + 02858231 a 0202 + 10425946 n 0201 + 03006225 a 0101 + 00605086 v 0101 ~ 01076863 n 0000 ~ 05954366 n 0000 ~ 05958208 n 0000 ~ 05958337 n 0000 ~ 05958427 n 0000 ~ 05958549 n 0000 ~ 05958712 n 0000 ~ 05958919 n 0000 ~ 05959082 n 0000 ~ 05959407 n 0000 ~ 05959578 n 0000 ~ 05959954 n 0000 ~ 05960121 n 0000 ~ 05960464 n 0000 ~ 05960698 n 0000 ~ 05960925 n 0000 ~ 05961141 n 0000 ~ 05961278 n 0000 ~ 05961429 n 0000 ~ 05961608 n 0000 ~ 05961867 n 0000 ~ 05962043 n 0000 ~ 05962166 n 0000 ~ 05962252 n 0000 ~ 05962414 n 0000 ~ 05962602 n 0000 ~ 05962936 n 0000 ~ 05963494 n 0000 ~ 05963744 n 0000 ~ 05964098 n 0000 ~ 05964322 n 0000 ~ 05964445 n 0000 ~ 05964643 n 0000 ~ 05964805 n 0000 ~ 05965022 n 0000 ~ 05965195 n 0000 ~ 05965388 n 0000 ~ 05965586 n 0000 ~ 05965749 n 0000 ~ 05965933 n 0000 ~ 05966602 n 0000 ~ 05966958 n 0000 ~ 05967097 n 0000 ~ 05967191 n 0000 ~ 05967402 n 0000 ~ 05967588 n 0000 ~ 05967773 n 0000 ~ 05968553 n 0000 ~ 05968710 n 0000 ~ 05968835 n 0000 ~ 06167106 n 0000 ~ 06167328 n 0000 ~ 06185581 n 0000 ~ 06185955 n 0000 ~ 06186301 n 0000 ~ 06187529 n 0000 ~ 06249910 n 0000 ~ 06250061 n 0000 ~ 06250444 n 0000 ~ 06250597 n 0000 ~ 06789411 n 0000 ~ 15263283 n 0000 | a belief (or system of beliefs) accepted as authoritative by some group or school -05944686 09 n 01 philosophy 2 003 @ 05941423 n 0000 + 02858231 a 0102 + 10425946 n 0101 | any personal belief about how to live or how to deal with a situation; "self-indulgence was his only philosophy"; "my father's philosophy of child-rearing was to let mother do it" -05944958 09 n 03 expectation 0 outlook 0 prospect 1 009 @ 05941423 n 0000 + 00755745 v 0103 + 00592702 v 0101 + 00719734 v 0101 ~ 05950733 n 0000 ~ 05951072 n 0000 ~ 05951180 n 0000 ~ 05951323 n 0000 ~ 05951566 n 0000 | belief about (or mental picture of) the future -05945227 09 n 02 fetishism 0 fetichism 0 002 @ 05941423 n 0000 + 10085548 n 0101 | a belief in the magical power of fetishes (or the worship of a fetish) -05945383 09 n 01 geneticism 0 001 @ 05941423 n 0000 | the belief that all human characteristics are determined genetically -05945508 09 n 01 meliorism 0 002 @ 05941423 n 0000 + 10515194 n 0105 | the belief that the world can be made better by human effort -05945642 09 n 05 opinion 0 sentiment 0 persuasion 0 view 4 thought 3 011 @ 05941423 n 0000 + 00689344 v 0501 + 00631737 v 0501 + 00690614 v 0404 + 00631737 v 0102 ~ 05837850 n 0000 ~ 05837957 n 0000 ~ 05949603 n 0000 ~ 05949937 n 0000 ~ 05950559 n 0000 ~ 06149192 n 0000 | a personal belief or judgment that is not founded on proof or certainty; "my opinion differs from yours"; "I am not of your persuasion"; "what are your thoughts on Haiti?" -05946089 09 n 01 autotelism 0 002 @ 05941423 n 0000 + 02652372 a 0101 | belief that a work of art is an end in itself or its own justification -05946234 09 n 01 originalism 0 001 @ 05941423 n 0000 | the belief that the United States Constitution should be interpreted in the way the authors originally intended it -05946406 09 n 02 pacifism 1 pacificism 1 003 @ 05941423 n 0000 + 01741953 a 0102 + 10390199 n 0101 | the belief that all international disputes can be settled by arbitration -05946582 09 n 01 predestinarianism 0 001 @ 06228549 n 0000 | the belief or doctrine of predestinarians -05946687 09 n 03 religion 0 faith 0 religious_belief 0 075 @ 05941423 n 0000 @ 04847991 n 0000 + 01783158 a 0101 + 09629065 n 0101 -c 00287275 a 0000 -c 00427331 a 0000 -c 00427786 a 0000 -c 01690448 a 0000 -c 02157041 a 0000 -c 02730304 a 0000 -c 02952275 a 0000 -c 02952622 a 0000 -c 02952975 a 0000 -c 02953420 a 0000 -c 02953598 a 0000 -c 02954459 a 0000 -c 02954799 a 0000 -c 02954981 a 0000 -c 02955216 a 0000 -c 02955358 a 0000 -c 02955562 a 0000 -c 02955806 a 0000 -c 02955996 a 0000 -c 02981935 a 0000 -c 00420477 n 0000 -c 01029671 n 0000 -c 01040646 n 0000 -c 01069125 n 0000 -c 01142324 n 0000 -c 01213702 n 0000 -c 02993368 n 0000 -c 03047941 n 0000 -c 03473966 n 0000 -c 04801313 n 0000 -c 05629381 n 0000 -c 05786184 n 0000 ~ 05942104 n 0000 ~ 05942338 n 0000 ~ 05942579 n 0000 ~ 05948264 n 0000 ~ 05948537 n 0000 ~ 05948716 n 0000 ~ 05948857 n 0000 ~ 05949336 n 0000 ~ 05949472 n 0000 ~ 06223669 n 0000 ~ 06224657 n 0000 ~ 06226057 n 0000 ~ 06236802 n 0000 ~ 06237865 n 0000 ~ 06239655 n 0000 ~ 06239931 n 0000 ~ 06240244 n 0000 ~ 06243096 n 0000 ~ 06243347 n 0000 ~ 06243575 n 0000 ~ 06243963 n 0000 ~ 06244149 n 0000 ~ 06244552 n 0000 ~ 06244852 n 0000 ~ 06245084 n 0000 ~ 06245462 n 0000 -c 06684798 n 0000 -c 06769032 n 0000 -c 09543353 n 0000 -c 09876892 n 0000 -c 09957614 n 0000 -c 10248198 n 0000 -c 10366484 n 0000 -c 15294884 n 0000 -c 00224295 v 0000 -c 00684273 v 0000 -c 00684507 v 0000 -c 01778990 v 0000 -c 02698726 v 0000 | a strong belief in a supernatural power or powers that control human destiny; "he lost his faith but not his morality" -05948264 09 n 03 cult 0 cultus 0 religious_cult 0 007 @ 05946687 n 0000 + 09982370 n 0101 ~ 06225357 n 0000 ~ 06225505 n 0000 ~ 06225667 n 0000 ~ 06225855 n 0000 ~ 06245816 n 0000 | a system of religious beliefs and rituals; "devoted to the cultus of the Blessed Virgin" -05948537 09 n 01 cult 2 002 @ 05946687 n 0000 + 09982525 n 0101 | a religion or sect that is generally considered to be unorthodox, extremist, or false; "it was a satanic cult" -05948716 09 n 01 ecclesiasticism 0 001 @ 05946687 n 0000 | religion appropriate to a church and to ecclesiastical principles and practices -05948857 09 n 02 mysticism 0 religious_mysticism 0 006 @ 05946687 n 0000 + 02863247 a 0101 + 02863247 a 0102 + 02863464 a 0102 ~ 05949088 n 0000 ~ 05949266 n 0000 | a religion based on mystical communion with an ultimate reality -05949088 09 n 01 quietism 0 002 @ 05948857 n 0000 + 10501635 n 0101 | a form of religious mysticism requiring withdrawal from all human effort and passive contemplation of God -05949266 09 n 01 Sufism 0 001 @ 05948857 n 0000 | Islamic mysticism -05949336 09 n 01 nature_worship 0 001 @ 05946687 n 0000 | a system of religion that deifies and worships natural forces and phenomena -05949472 09 n 01 revealed_religion 0 001 @ 05946687 n 0000 | a religion founded primarily on the revelations of God to humankind -05949603 09 n 01 eyes 0 001 @ 05945642 n 0000 | opinion or judgment; "in the eyes of the law"; "I was wrong in her eyes" -05949726 09 n 04 public_opinion 0 popular_opinion 0 opinion 1 vox_populi 0 001 @ 05941423 n 0000 | a belief or sentiment shared by most people; the voice of the people; "he asked for a poll of public opinion" -05949937 09 n 06 preconception 0 prepossession 0 parti_pris 0 preconceived_opinion 0 preconceived_idea 0 preconceived_notion 0 003 @ 05945642 n 0000 + 00680145 v 0202 + 01634011 v 0101 | an opinion formed beforehand without adequate evidence; "he did not even try to confirm his preconceptions" -05950234 09 n 02 taboo 0 tabu 0 003 @ 06201908 n 0000 ;r 08841667 n 0000 + 02508977 v 0101 | a prejudice (especially in Polynesia and other South Pacific islands) that prohibits the use or mention of something because of its sacred nature -05950475 09 n 01 irrational_hostility 0 001 @ 06201908 n 0000 | extreme prejudice -05950559 09 n 01 pole 0 002 @ 05945642 n 0000 + 02066312 a 0104 | one of two divergent or mutually exclusive opinions; "they are at opposite poles"; "they are poles apart" -05950733 09 n 02 promise 0 hope 0 006 @ 05944958 n 0000 + 01811441 v 0201 + 01826723 v 0201 + 02740552 v 0101 + 00884317 v 0101 ~ 05950982 n 0000 | grounds for feeling hopeful about the future; "there is little or no promise that he will recover" -05950982 09 n 01 rainbow 0 001 @ 05950733 n 0000 | an illusory hope; "chasing rainbows" -05951072 09 n 01 foretaste 0 001 @ 05944958 n 0000 | an early limited awareness of something yet to occur -05951180 09 n 01 possibility 3 002 @ 05944958 n 0000 + 00044353 a 0102 | a future prospect or potential; "this room has great possibilities" -05951323 09 n 02 anticipation 1 expectancy 0 003 @ 05944958 n 0000 + 00720063 v 0201 ~ 15142025 n 0000 | something expected (as on the basis of a norm); "each of them had their own anticipations"; "an indicator of expectancy in development" -05951566 09 n 02 apprehension 1 misgiving 2 003 @ 05944958 n 0000 + 00733454 v 0201 + 01782432 v 0101 | painful expectation -05951692 09 n 01 revolutionism 0 002 @ 05941423 n 0000 + 10527334 n 0101 | a belief in the spread of revolutionary principles -05951820 09 n 01 sacerdotalism 0 002 @ 05941423 n 0000 + 02899912 a 0101 | a belief that priests can act as mediators between human beings and God -05951969 09 n 01 spiritualism 0 004 @ 05941423 n 0000 + 02911876 a 0101 + 10306279 n 0102 -c 15109931 n 0000 | the belief that the spirits of dead people can communicate with people who are still alive (especially via a medium) -05952199 09 n 03 spiritual_world 0 spiritual_domain 0 unseen 0 002 @ 05941423 n 0000 ~ 08558661 n 0000 | a belief that there is a realm controlled by a divine spirit -05952367 09 n 01 suffragism 0 001 @ 05941423 n 0000 | the belief that the right to vote should be extended (as to women) -05952490 09 n 01 supernaturalism 0 005 @ 05941423 n 0000 + 02912054 a 0102 ~ 05967977 n 0000 ~ 05968288 n 0000 ~ 05978472 n 0000 | a belief in forces beyond ordinary human understanding -05952678 09 n 02 superstition 0 superstitious_notion 0 002 @ 05941423 n 0000 + 01927061 a 0101 | an irrational belief arising from ignorance or fear -05952829 09 n 01 supremacism 0 001 @ 05941423 n 0000 | the belief that some particular group or race is superior to all others; "white supremacism" -05952979 09 n 01 theory 2 006 @ 05941423 n 0000 + 10706812 n 0101 + 00633443 v 0102 + 00633443 v 0103 ~ 05953263 n 0000 ~ 05953416 n 0000 | a belief that can guide behavior; "the architect has a theory that more is less"; "they killed him on the theory that dead men tell no tales" -05953263 09 n 01 egoism 0 002 @ 05952979 n 0000 ;c 06159473 n 0000 | (ethics) the theory that the pursuit of your own welfare in the basis of morality -05953416 09 n 03 patchwork 0 hodgepodge 0 jumble 0 004 @ 05952979 n 0000 + 01472807 v 0302 + 01657254 v 0301 + 02739861 v 0301 | a theory or argument made up of miscellaneous or incongruous ideas -05953614 09 n 01 theosophy 0 004 @ 05661996 n 0000 + 03124657 a 0101 + 10707134 n 0101 ~ 05954100 n 0000 | a system of belief based on mystical insight into the nature of God and the soul -05953804 09 n 01 theosophism 0 001 @ 05941423 n 0000 | belief in theosophy -05953881 09 n 01 anthroposophy 0 001 @ 05661996 n 0000 | a system of beliefs and practices based on the philosophy of Rudolf Steiner; it claims to integrate the practical and psychological in child-centered education -05954100 09 n 08 Kabbalah 0 Kabbala 0 Kabala 0 Cabbalah 0 Cabbala 0 Cabala 0 Qabbalah 0 Qabbala 0 002 @ 05953614 n 0000 ;c 06232880 n 0000 | an esoteric theosophy of rabbinical origin based on the Hebrew scriptures and developed between the 7th and 18th centuries -05954366 09 n 02 Kabbalism 0 Cabalism 0 002 @ 05943300 n 0000 ;c 06232880 n 0000 | the doctrines of the Kabbalah -05954481 09 n 01 thought 2 003 @ 05941423 n 0000 + 00689809 v 0101 ~ 05955186 n 0000 | the organized beliefs of a period or group or individual; "19th century thought"; "Darwinian thought" -05954672 09 n 01 totemism 0 002 @ 05941423 n 0000 + 02954331 a 0101 | belief in the kinship of a group of people with a common totem -05954807 09 n 01 tribalism 0 001 @ 05941423 n 0000 | the beliefs of a tribal society -05954894 09 n 01 values 0 001 @ 05941423 n 0000 | beliefs of a person or social group in which they have an emotional investment (either for or against something); "he has very conservatives values" -05955095 09 n 01 vampirism 0 001 @ 05941423 n 0000 | belief in the existence of vampires -05955186 09 n 01 mainstream 0 001 @ 05954481 n 0000 | the prevailing current of thought; "his thinking was in the American mainstream" -05955323 09 n 01 principle 1 007 @ 05923983 n 0000 ~ 05955593 n 0000 ~ 05955848 n 0000 ~ 05956019 n 0000 ~ 05956489 n 0000 ~ 05956651 n 0000 ~ 05957737 n 0000 | a rule or standard especially of good behavior; "a man of principle"; "he will not violate his principles" -05955593 09 n 02 accounting_principle 0 accounting_standard 0 002 @ 05955323 n 0000 #m 08145871 n 0000 | a principle that governs current accounting practice and that is used as a reference to determine the appropriate treatment of complex transactions -05955848 09 n 02 chivalry 0 knightliness 0 003 @ 05955323 n 0000 + 01729157 a 0101 + 00640106 a 0101 | the medieval principles governing knighthood and knightly conduct -05956019 09 n 04 ethic 0 moral_principle 0 value-system 0 value_orientation 0 002 @ 05955323 n 0000 ~ 05956287 n 0000 | the principles of right and wrong that are accepted by an individual or a social group; "the Puritan ethic"; "a person with old-fashioned values" -05956287 09 n 01 Chartism 0 002 @ 05956019 n 0000 + 09911051 n 0101 | the principles of a body of 19th century English reformers who advocated better social and economic conditions for working people -05956489 09 n 01 Hellenism 0 003 @ 05955323 n 0000 + 03015805 a 0102 + 03015805 a 0103 | the principles and ideals associated with classical Greek civilization -05956651 09 n 03 legal_principle 0 judicial_principle 0 judicial_doctrine 0 006 @ 05955323 n 0000 ;c 08441203 n 0000 ~ 05956906 n 0000 ~ 05957078 n 0000 ~ 05957238 n 0000 ~ 05957428 n 0000 | (law) a principle underlying the formulation of jurisprudence -05956906 09 n 01 jus_sanguinis 0 002 @ 05956651 n 0000 ;c 08441203 n 0000 | the principle that a person's nationality at birth is the same as that of his natural parents -05957078 09 n 01 jus_soli 0 002 @ 05956651 n 0000 ;c 08441203 n 0000 | the principle that a person's nationality at birth is determined by the place of birth -05957238 09 n 02 preemption 0 pre-emption 0 002 @ 05956651 n 0000 ;c 08441203 n 0000 | the judicial principle asserting the supremacy of federal over state legislation on the same subject -05957428 09 n 02 relation_back 0 relation 0 002 @ 05956651 n 0000 ;c 08441203 n 0000 | (law) the principle that an act done at a later time is deemed by law to have occurred at an earlier time; "his attorney argued for the relation back of the amended complaint to the time the initial complaint was filed" -05957737 09 n 01 scruple 0 005 @ 05955323 n 0000 + 02085449 a 0101 + 00925372 v 0101 + 01794195 v 0101 + 02641298 v 0101 | an ethical or moral principle that inhibits action -05957913 09 n 01 Golden_Rule 0 001 @ 06185955 n 0000 | a command based on Jesus' words in the Sermon on the Mount; "Whatsoever ye would that men do unto you, do you even so unto them" (Matthew 7:12) -05958114 09 n 01 Athanasian_Creed 0 001 @ 05959954 n 0000 | a Christian profession of faith -05958208 09 n 01 abolitionism 0 002 @ 05943300 n 0000 + 09756637 n 0101 | the doctrine that calls for the abolition of slavery -05958337 09 n 01 absolutism 0 001 @ 05943300 n 0000 | the doctrine of an absolute being -05958427 09 n 01 amoralism 0 002 @ 05943300 n 0000 + 09789150 n 0101 | the doctrine that moral distinctions are invalid -05958549 09 n 01 animalism 0 002 @ 05943300 n 0000 + 02624086 a 0101 | the doctrine that human beings are purely animal in nature and lacking a spiritual nature -05958712 09 n 01 animism 0 003 @ 05943300 n 0000 + 02624314 a 0102 + 09794668 n 0101 | the doctrine that all natural objects and the universe itself have souls; "animism is common among primitive peoples" -05958919 09 n 02 antiestablishmentarianism 0 antiestablishmentism 0 001 @ 05943300 n 0000 | the doctrine of opposition to the social and political establishment -05959082 09 n 01 asceticism 1 001 @ 05943300 n 0000 | the doctrine that through renunciation of worldly pleasures it is possible to achieve a high spiritual or intellectual state -05959263 09 n 01 British_empiricism 0 001 @ 05970311 n 0000 | the predominant philosophical tradition in Great Britain since the 17th century -05959407 09 n 01 contextualism 0 001 @ 05943300 n 0000 | any doctrine emphasizing the importance of the context in solving problems or establishing the meaning of terms -05959578 09 n 01 creationism 0 002 @ 05943300 n 0000 ~ 05959785 n 0000 | the literal belief in the account of Creation given in the Book of Genesis; "creationism denies the theory of evolution of species" -05959785 09 n 01 creation_science 0 001 @ 05959578 n 0000 | an effort to give scientific support for the truth of the account of Creation given in the Book of Genesis -05959954 09 n 02 creed 0 credo 0 005 @ 05943300 n 0000 + 03057075 a 0102 + 03057075 a 0101 ~ 05800272 n 0000 ~ 05958114 n 0000 | any system of principles or beliefs -05960121 09 n 02 divine_right 0 divine_right_of_kings 0 001 @ 05943300 n 0000 | the doctrine that kings derive their right to rule directly from God and are not accountable to their subjects; rebellion is the worst of political crimes; "the doctrine of the divine right of kings was enunciated by the Stuarts in Britain in the 16th century" -05960464 09 n 01 dogma 0 006 @ 05943300 n 0000 + 03061982 a 0101 + 03006389 a 0101 + 00288070 a 0102 + 00963283 v 0101 + 00980908 v 0101 | a doctrine or code of beliefs accepted as authoritative; "he believed all the Marxist dogma" -05960698 09 n 01 dualism 0 003 @ 05943300 n 0000 + 02947252 a 0101 + 10038226 n 0101 | the doctrine that reality consists of two basic opposing elements, often taken to be mind and matter (or mind and body), or good and evil -05960925 09 n 01 dynamism 0 001 @ 05943300 n 0000 | any of the various theories or doctrines or philosophical systems that attempt to explain the phenomena of the universe in terms of some immanent force or energy -05961141 09 n 01 epicureanism 0 001 @ 05943300 n 0000 | a doctrine of hedonism that was defended by several ancient Greek philosophers -05961278 09 n 02 establishmentarianism 0 establishmentism 0 001 @ 05943300 n 0000 | the doctrine of supporting the social or political establishment -05961429 09 n 01 ethicism 0 002 @ 05943300 n 0000 + 10065066 n 0101 | a doctrine that ethics and ethical ideas are valid and important; "his ethicism often led him to moralize" -05961608 09 n 01 expansionism 0 001 @ 05943300 n 0000 | the doctrine of expanding the territory or the economic influence of a country -05961745 09 n 01 experimentalism 1 001 @ 05970311 n 0000 | an empirical doctrine that advocates experimental principles -05961867 09 n 01 formalism 1 003 @ 05943300 n 0000 + 02730304 a 0101 ! 05962602 n 0101 | the doctrine that formal structure rather than content is what should be represented -05962043 09 n 01 functionalism 1 002 @ 05943300 n 0000 + 10116246 n 0101 | any doctrine that stresses utility or purpose -05962166 09 n 01 Girondism 0 001 @ 05943300 n 0000 | the doctrine of the Girondists -05962252 09 n 01 gospel 0 001 @ 05943300 n 0000 | a doctrine that is believed to be of great importance; "Newton's writings were gospel for those who followed" -05962414 09 n 01 gymnosophy 0 003 @ 05943300 n 0000 + 10153724 n 0101 + 02917221 a 0101 | the doctrine of a sect of Hindu philosophers who practiced nudity and asceticism and meditation -05962602 09 n 01 imitation 0 003 @ 05943300 n 0000 ! 05961867 n 0101 ~ 05962785 n 0000 | the doctrine that representations of nature or human behavior should be accurate imitations -05962785 09 n 01 mimesis 0 002 @ 05962602 n 0000 + 01979803 a 0101 | the imitative representation of nature and human behavior in art and literature -05962936 09 n 02 individualism 0 laissez_faire 0 002 @ 05943300 n 0000 + 00297897 a 0101 | the doctrine that government should not interfere in commercial affairs -05963101 09 n 01 individualism 1 003 @ 05941423 n 0000 + 09619824 n 0101 ~ 05963299 n 0000 | a belief in the importance of the individual and the virtue of self-reliance and personal independence -05963299 09 n 01 rugged_individualism 0 001 @ 05963101 n 0000 | individualism in social and economic affairs; belief not only in personal liberty and self-reliance but also in free competition -05963494 09 n 01 internationalism 0 005 @ 05943300 n 0000 + 01569002 a 0102 + 10211962 n 0101 ! 05965022 n 0101 ! 05965195 n 0101 | the doctrine that nations should cooperate because their common interests are more important than their differences -05963744 09 n 01 unilateralism 0 003 @ 05943300 n 0000 + 10738215 n 0101 ~ 05963973 n 0000 | the doctrine that nations should conduct their foreign affairs individualistically without the advice or involvement of other nations -05963973 09 n 01 one-way_street 0 001 @ 05963744 n 0000 | unilateral interaction; "cooperation cannot be a one-way street" -05964098 09 n 02 irredentism 0 irridentism 0 003 @ 05943300 n 0000 + 10217038 n 0202 + 10217038 n 0101 | the doctrine that irredenta should be controlled by the country to which they are ethnically or historically related -05964322 09 n 01 literalism 0 001 @ 05943300 n 0000 | the doctrine of realistic (literal) portrayal in art or literature -05964445 09 n 02 majority_rule 0 democracy 1 002 @ 05943300 n 0000 + 00486539 a 0201 | the doctrine that the numerical majority of an organized group can make decisions binding on the whole group -05964643 09 n 01 monism 0 003 @ 05943300 n 0000 + 02947019 a 0101 ! 05965749 n 0101 | the doctrine that reality consists of a single basic substance or element -05964805 09 n 01 multiculturalism 0 002 @ 05943300 n 0000 ! 05965022 n 0101 | the doctrine that several different cultures (rather than one national culture) can coexist peacefully and equitably in a single country -05965022 09 n 01 nationalism 0 003 @ 05943300 n 0000 ! 05964805 n 0101 ! 05963494 n 0101 | the doctrine that your national culture and interests are superior to any other -05965195 09 n 01 nationalism 1 003 @ 05943300 n 0000 + 10346015 n 0101 ! 05963494 n 0101 | the doctrine that nations should act independently (rather than collectively) to attain their goals -05965388 09 n 01 nihilism 0 004 @ 05943300 n 0000 + 02911757 a 0101 + 10358420 n 0101 + 09791816 n 0102 | a revolutionary doctrine that advocates destruction of the social system for its own sake -05965586 09 n 03 pacifism 0 pacificism 0 passivism 0 003 @ 05943300 n 0000 + 01741953 a 0102 + 10390199 n 0101 | the doctrine that all violence is unjustifiable -05965749 09 n 01 pluralism 0 004 @ 05943300 n 0000 + 10443659 n 0101 + 02947477 a 0101 ! 05964643 n 0101 | the doctrine that reality consists of several basic substances or elements -05965933 09 n 01 populism 0 002 @ 05943300 n 0000 + 10002031 n 0102 | the political doctrine that supports the rights and powers of the common people in their struggle with the privileged elite -05966129 09 n 04 predestination 0 foreordination 0 preordination 0 predetermination 1 010 @ 06186301 n 0000 ;c 06182144 n 0000 + 00702773 v 0401 + 00702969 v 0303 + 00703310 v 0203 + 00702969 v 0202 + 02783917 a 0101 + 10080508 n 0104 + 00703310 v 0101 ~ 05966798 n 0000 | (theology) being determined in advance; especially the doctrine (usually associated with Calvin) that God has foreordained every event throughout eternity (including the final salvation of mankind) -05966602 09 n 01 presentism 0 001 @ 05943300 n 0000 | the doctrine that the Scripture prophecies of the Apocalypse (as in the Book of Revelations) are presently in the course of being fulfilled -05966798 09 n 01 election 0 001 @ 05966129 n 0000 | the predestination of some individuals as objects of divine mercy (especially as conceived by Calvinists) -05966958 09 n 02 rationalism 1 freethinking 0 001 @ 05943300 n 0000 | the doctrine that reason is the right basis for regulating conduct -05967097 09 n 01 reformism 0 002 @ 05943300 n 0000 + 10515194 n 0102 | a doctrine of reform -05967191 09 n 02 humanism 0 secular_humanism 0 002 @ 05943300 n 0000 + 10191388 n 0101 | the doctrine emphasizing a person's capacity for self-realization through reason; rejects religion and the supernatural -05967402 09 n 02 humanitarianism 0 humanism 1 004 @ 05943300 n 0000 + 01262284 a 0204 + 10191388 n 0201 + 10191388 n 0102 | the doctrine that people's duty is to promote human welfare -05967588 09 n 02 egalitarianism 0 equalitarianism 0 001 @ 05943300 n 0000 | the doctrine of the equality of mankind and the desirability of political and economic and social equality -05967773 09 n 01 feminism 0 002 @ 05943300 n 0000 + 10084635 n 0101 | a doctrine that advocates equal rights for women -05967894 09 n 01 juju 0 001 @ 05967977 n 0000 | the power associated with a juju -05967977 09 n 02 magic 0 thaumaturgy 0 008 @ 05952490 n 0000 + 01576071 a 0103 + 10625860 n 0102 ~ 05967894 n 0000 ~ 05968209 n 0000 ~ 05978159 n 0000 ~ 05978812 n 0000 ~ 05979800 n 0000 | any art that invokes supernatural powers -05968209 09 n 01 mojo 0 001 @ 05967977 n 0000 | a magic power or magic spell -05968288 09 n 01 occultism 0 002 @ 05952490 n 0000 + 10370381 n 0101 | a belief in supernatural powers and the possibility of bringing them under human control -05968450 09 n 01 occultism 1 002 @ 05996646 n 0000 + 10370381 n 0101 | the study of the supernatural -05968553 09 n 01 reincarnationism 0 001 @ 05943300 n 0000 | a doctrine that on the death of the body the soul migrates to or is born again in another body -05968710 09 n 01 secessionism 0 002 @ 05943300 n 0000 + 10567979 n 0101 | a doctrine that maintains the right of secession -05968835 09 n 01 secularism 0 002 @ 05943300 n 0000 + 10574538 n 0101 | a doctrine that rejects religion and religious considerations -05968971 09 n 02 aesthetic 0 esthetic 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 02991287 a 0101 + 00069531 a 0101 | (philosophy) a philosophical theory as to what is beautiful; "he despised the esthetic of minimalism" -05969194 09 n 02 Aristotelianism 0 peripateticism 0 005 @ 06167328 n 0000 ;c 06158346 n 0000 + 09808080 n 0203 + 09808080 n 0102 + 09808080 n 0101 | (philosophy) the philosophy of Aristotle that deals with logic and metaphysics and ethics and poetics and politics and natural science; "Aristotelianism profoundly influenced Western thought" -05969537 09 n 01 conceptualism 0 002 @ 06167328 n 0000 + 02701253 a 0101 | the doctrine that the application of a general term to various objects indicates the existence of a mental entity that mediates the application -05969758 09 n 01 Confucianism 0 001 @ 06167328 n 0000 | the teachings of Confucius emphasizing love for humanity; high value given to learning and to devotion to family (including ancestors); peace; justice; influenced the traditional culture of China -05970012 09 n 02 deconstruction 0 deconstructionism 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 ;c 06364641 n 0000 + 00938748 v 0101 | a philosophical theory of criticism (usually of literature or film) that seeks to expose deep-seated contradictions in a work by delving below its surface meaning -05970311 09 n 03 empiricism 0 empiricist_philosophy 0 sensationalism 0 006 @ 06167328 n 0000 ;c 06158346 n 0000 + 10053591 n 0101 ~ 05959263 n 0000 ~ 05961745 n 0000 ~ 05993367 n 0000 | (philosophy) the doctrine that knowledge derives from experience -05970564 09 n 01 environmentalism 0 002 @ 06167328 n 0000 ! 05971913 n 0101 | the philosophical doctrine that environment is more important than heredity in determining intellectual growth -05970755 09 n 03 existentialism 0 existential_philosophy 0 existentialist_philosophy 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 10071557 n 0101 -c 14026376 n 0000 | (philosophy) a 20th-century philosophical movement chiefly in Europe; assumes that people are entirely free and thus responsible for what they make of themselves -05971086 09 n 01 determinism 0 005 @ 06167328 n 0000 ;c 06158346 n 0000 + 02130137 a 0101 + 10080508 n 0102 ~ 05971394 n 0000 | (philosophy) a philosophical theory holding that all events are inevitable consequences of antecedent sufficient causes; often understood as denying the possibility of free will -05971394 09 n 01 fatalism 0 003 @ 05971086 n 0000 + 03065516 a 0102 + 10080508 n 0101 | a philosophical doctrine holding that all events are predetermined in advance for all time and human beings are powerless to change them -05971621 09 n 01 formalism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 02730304 a 0101 | (philosophy) the philosophical theory that formal (logical or mathematical) statements have no meaning but that its symbols (regarded as physical entities) exhibit a form that has useful applications -05971913 09 n 01 hereditarianism 0 002 @ 06167328 n 0000 ! 05970564 n 0101 | the philosophical doctrine that heredity is more important than environment in determining intellectual growth -05972103 09 n 01 idealism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 02745284 a 0102 | (philosophy) the philosophical theory that ideas are the only reality -05972264 09 n 01 intuitionism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the doctrine that knowledge is acquired primarily by intuition -05972417 09 n 01 logicism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the philosophical theory that all of mathematics can be derived from formal logic -05972585 09 n 02 materialism 0 physicalism 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 10300829 n 0101 ~ 05993235 n 0000 | (philosophy) the philosophical theory that matter is the only reality -05972781 09 n 01 mechanism 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 02911112 a 0101 + 10304783 n 0101 | (philosophy) the philosophical theory that all phenomena can be explained in terms of physical or biological causes -05973007 09 n 01 mentalism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) a doctrine that mind is the true reality and that objects exist only as aspects of the mind's awareness -05973198 09 n 01 nativism 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 02988550 a 0102 + 09625676 n 0101 | (philosophy) the philosophical theory that some ideas are innate -05973372 09 n 01 naturalism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 10346955 n 0101 | (philosophy) the doctrine that the world can be understood in scientific terms without recourse to spiritual or supernatural explanations -05973603 09 n 01 Neoplatonism 0 002 @ 06167328 n 0000 @ 06186301 n 0000 | a system of philosophical and theological doctrines composed of elements of Platonism and Aristotelianism and oriental mysticism; its most distinctive doctrine holds that the first principle and source of reality transcends being and thought and is naturally unknowable; "Neoplatonism was predominant in pagan Europe until the 6th century"; "Neoplatonism was a major influence on early Christian writers and on later medieval and Renaissance thought and on Islamic philosophy" -05974156 09 n 01 nominalism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 02769358 a 0101 | (philosophy) the doctrine that the various objects labeled by the same term have nothing in common but their name -05974363 09 n 01 operationalism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the doctrine that the meaning of a proposition consists of the operations involved in proving or applying it -05974564 09 n 02 Platonism 0 realism 1 005 @ 06167328 n 0000 ;c 06158346 n 0000 + 10509161 n 0201 + 02780538 a 0101 + 10439629 n 0101 | (philosophy) the philosophical doctrine that abstract concepts exist independent of their names -05974798 09 n 01 pragmatism 0 006 @ 06167328 n 0000 ;c 06158346 n 0000 + 02783085 a 0101 + 02783085 a 0102 + 10463582 n 0101 ~ 05975051 n 0000 | (philosophy) the doctrine that practical consequences are the criteria of knowledge and meaning and value -05975051 09 n 01 instrumentalism 0 001 @ 05974798 n 0000 | a system of pragmatic philosophy that considers idea to be instruments that should guide our actions and their value is measured by their success -05975258 09 n 01 probabilism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 03102871 a 0101 | (philosophy) the doctrine that (since certainty is unattainable) probability is a sufficient basis for belief and action -05975473 09 n 01 rationalism 2 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 02787073 a 0101 | (philosophy) the doctrine that knowledge is acquired by reason without resort to experience -05975659 09 n 02 realism 0 naive_realism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the philosophical doctrine that physical objects continue to exist when not perceived -05975846 09 n 01 relativism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 02836161 a 0101 | (philosophy) the philosophical doctrine that all criteria of judgment are relative to the individuals and situations involved -05976065 09 n 01 Scholasticism 0 003 @ 06167328 n 0000 + 02793094 a 0101 -c 04847733 n 0000 | the system of philosophy dominant in medieval Europe; based on Aristotle and the Church Fathers -05976257 09 n 02 semiotics 0 semiology 0 005 @ 06167328 n 0000 ;c 06158346 n 0000 + 02796042 a 0101 + 02796042 a 0102 + 10577820 n 0102 | (philosophy) a philosophical theory of the functions of signs and symbols -05976471 09 n 02 sensualism 0 sensationalism 1 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the ethical doctrine that feeling is the only criterion for what is good -05976649 09 n 01 solipsism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the philosophical theory that the self is all that you know to exist -05976805 09 n 01 spiritualism 1 002 @ 06186301 n 0000 + 02911876 a 0101 | (theology) any doctrine that asserts the separate existence of God -05976948 09 n 01 Stoicism 0 002 @ 06167328 n 0000 ;c 06158346 n 0000 | (philosophy) the philosophical system of the Stoics following the teachings of the ancient Greek philosopher Zeno -05977135 09 n 01 subjectivism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 10669009 n 0101 | (philosophy) the doctrine that knowledge and value are dependent on and limited by your subjective experience -05977340 09 n 02 Taoism 1 Daoism 0 005 @ 06167328 n 0000 + 09848285 n 0101 %p 06242970 n 0000 -c 06242970 n 0000 -c 08098346 n 0000 | philosophical system developed by Lao-tzu and Chuang-tzu advocating a simple honest life and noninterference with the course of natural events -05977619 09 n 01 teleology 0 004 @ 06167328 n 0000 ;c 06158346 n 0000 + 02991586 a 0101 + 10697782 n 0101 | (philosophy) a doctrine explaining phenomena by their ends or purposes -05977800 09 n 01 traditionalism 0 001 @ 06167328 n 0000 | the doctrine that all knowledge was originally derived by divine revelation and that it is transmitted by traditions -05977977 09 n 01 vitalism 0 003 @ 06167328 n 0000 ;c 06158346 n 0000 + 10757817 n 0101 | (philosophy) a doctrine that life is a vital principle distinct from physics and chemistry -05978159 09 n 04 conjuring 0 conjuration 0 conjury 0 invocation 0 006 @ 05967977 n 0000 + 01629958 v 0404 + 01629958 v 0302 + 01629958 v 0202 + 01629958 v 0102 ~ 05978623 n 0000 | calling up a spirit or devil -05978370 09 n 01 old_wives'_tale 0 001 @ 05985381 n 0000 | a bit of lore passed on by word of mouth -05978472 09 n 02 exorcism 0 dispossession 0 004 @ 05952490 n 0000 + 10072054 n 0101 + 01527877 v 0102 %p 05978623 n 0000 | freeing from evil spirits -05978623 09 n 02 evocation 2 summoning 0 004 @ 05978159 n 0000 #p 05978472 n 0000 + 01041762 v 0201 + 01629958 v 0105 | calling up supposed supernatural forces by spells and incantations -05978812 09 n 04 sorcery 0 black_magic 0 black_art 0 necromancy 1 011 @ 05967977 n 0000 + 02910789 a 0401 + 02910789 a 0402 + 10625860 n 0404 + 01576071 a 0104 + 00383275 v 0101 + 00383275 v 0102 ~ 05979350 n 0000 ~ 05979454 n 0000 ~ 05979595 n 0000 ~ 06245674 n 0000 | the belief in magical spells that harness occult forces or evil spirits to produce unnatural effects in the world -05979198 09 n 01 theurgy 0 001 @ 05979800 n 0000 | white magic performed with the help of beneficent spirits (as formerly practiced by Neoplatonists) -05979350 09 n 02 witchcraft 0 witchery 0 002 @ 05978812 n 0000 + 00776988 v 0204 | the art of sorcery -05979454 09 n 02 enchantment 0 bewitchment 0 004 @ 05978812 n 0000 + 00776988 v 0202 + 01817314 v 0101 + 00776988 v 0105 | a magical spell -05979595 09 n 03 diabolism 0 demonism 0 Satanism 0 005 @ 05978812 n 0000 + 10552486 n 0301 + 01046006 n 0101 + 10552486 n 0102 + 01046006 n 0202 | a belief in and reverence for devils (especially Satan) -05979800 09 n 01 white_magic 0 002 @ 05967977 n 0000 ~ 05979198 n 0000 | magic used only for good purposes -05979909 09 n 02 unbelief 0 disbelief 1 004 @ 05809192 n 0000 ! 05941423 n 0101 ~ 05980051 n 0000 ~ 05980256 n 0000 | a rejection of belief -05980051 09 n 03 agnosticism 0 skepticism 1 scepticism 0 005 @ 05979909 n 0000 + 00647247 a 0303 + 02463847 a 0304 + 00647247 a 0202 + 02463847 a 0203 | the disbelief in any claims of ultimate knowledge -05980256 09 n 01 atheism 1 004 @ 05979909 n 0000 + 01784217 a 0101 + 02826443 a 0102 + 09820044 n 0101 | a lack of belief in the existence of God or gods -05980412 09 n 02 heresy 0 unorthodoxy 1 013 @ 05809192 n 0000 + 01691474 a 0102 ~ 06187756 n 0000 ~ 06189341 n 0000 ~ 06189776 n 0000 ~ 06190060 n 0000 ~ 06190305 n 0000 ~ 06190554 n 0000 ~ 06222731 n 0000 ~ 06222959 n 0000 ~ 06224439 n 0000 ~ 06227708 n 0000 ~ 06251553 n 0000 | a belief that rejects the orthodox tenets of a religion -05980750 09 n 01 iconoclasm 0 003 @ 06212422 n 0000 + 01691687 a 0101 + 00588207 a 0101 | the orientation of an iconoclast -05980875 09 n 02 goal 0 end 2 009 @ 05809192 n 0000 #p 05902545 n 0000 ~ 05981230 n 0000 ~ 05981546 n 0000 ~ 05981648 n 0000 ~ 05981768 n 0000 ~ 05982024 n 0000 ~ 05982152 n 0000 ~ 05982720 n 0000 | the state of affairs that a plan is intended to achieve and that (when achieved) terminates behavior intended to achieve it; "the ends justify the means" -05981230 09 n 04 aim 1 object 0 objective 0 target 0 007 @ 05980875 n 0000 + 01150559 v 0401 + 00708980 v 0101 ~ 05981936 n 0000 ~ 05983801 n 0000 ~ 05984066 n 0000 ~ 05984182 n 0000 | the goal intended to be attained (and which is believed to be attainable); "the sole object of her trip was to see her children" -05981546 09 n 02 bourn 0 bourne 0 001 @ 05980875 n 0000 | an archaic term for a goal or destination -05981648 09 n 01 end-all 0 001 @ 05980875 n 0000 | the ultimate goal; "human beings are not the end-all of evolution" -05981768 09 n 02 destination 0 terminus 0 004 @ 05980875 n 0000 + 02735418 v 0202 + 00746479 v 0101 + 00709379 v 0102 | the ultimate goal for which something is done -05981936 09 n 01 grail 0 001 @ 05981230 n 0000 | the object of any prolonged endeavor -05982024 09 n 01 no-goal 0 001 @ 05980875 n 0000 | a nonexistent goal; "he lived without a reason progressing toward no-goal" -05982152 09 n 05 purpose 0 intent 0 intention 0 aim 0 design 3 013 @ 05980875 n 0000 + 00698572 v 0501 + 01633825 v 0501 + 01638368 v 0504 + 00708980 v 0401 + 00708538 v 0201 + 00708980 v 0102 ~ 05982915 n 0000 ~ 05983122 n 0000 ~ 05983217 n 0000 ~ 05983347 n 0000 ~ 05983463 n 0000 ~ 05983654 n 0000 | an anticipated outcome that is intended or that guides your planned actions; "his intent was to provide a new translation"; "good intentions are not enough"; "it was created with the conscious aim of answering immediate needs"; "he made no secret of his designs" -05982720 09 n 01 intention 1 003 @ 05980875 n 0000 ;u 06295235 n 0000 + 01338116 a 0101 | (usually plural) the goal with respect to a marriage proposal; "his intentions are entirely honorable" -05982915 09 n 02 mind 6 idea 1 002 @ 05982152 n 0000 + 00724492 v 0101 | your intention; what you intend to do; "he had in mind to see his old teacher"; "the idea of the game is to capture all the pieces" -05983122 09 n 01 cross-purpose 0 001 @ 05982152 n 0000 | a contrary aim; "at cross-purposes" -05983217 09 n 01 final_cause 0 002 @ 05982152 n 0000 ;c 06158346 n 0000 | (philosophy) the end or purpose of a thing or process -05983347 09 n 01 sake 0 001 @ 05982152 n 0000 | the purpose of achieving or obtaining; "for the sake of argument" -05983463 09 n 01 view 0 001 @ 05982152 n 0000 | purpose; the phrase `with a view to' means `with the intention of' or `for the purpose of'; "he took the computer with a view to pawning it" -05983654 09 n 01 will 1 002 @ 05982152 n 0000 + 00698398 v 0101 | a fixed and persistent intent or purpose; "where there's a will there's a way" -05983801 09 n 01 business 0 002 @ 05981230 n 0000 ~ 05983943 n 0000 | an immediate objective; "gossip was the main business of the evening" -05983943 09 n 01 occasions 0 001 @ 05983801 n 0000 | something you have to do; "he minded his own specialized occasions" -05984066 09 n 01 point 2 001 @ 05981230 n 0000 | the object of an activity; "what is the point of discussing it?" -05984182 09 n 01 thing 1 001 @ 05981230 n 0000 | a special objective; "the thing is to stay in bounds" -05984287 09 n 01 education 0 009 @ 05809192 n 0000 + 10045454 n 0101 + 10045454 n 0102 + 00603298 v 0104 ~ 05756888 n 0000 ~ 05758059 n 0000 ~ 05985999 n 0000 ~ 05986395 n 0000 ~ 05986594 n 0000 | knowledge acquired by learning and instruction; "it was clear that he had a very broad education" -05984584 09 n 01 experience 0 010 @ 05809192 n 0000 + 02989601 a 0101 + 00121046 v 0102 + 01771535 v 0102 + 02108026 v 0101 + 00596644 v 0102 ~ 05809878 n 0000 ~ 05810561 n 0000 ~ 05810768 n 0000 ~ 05813626 n 0000 | the content of direct observation or participation in an event; "he had a religious experience"; "he recalled the experience vividly" -05984936 09 n 02 acculturation 0 culture 1 005 @ 05809192 n 0000 + 02248693 a 0201 + 02872501 a 0201 + 00159880 v 0201 ~ 05985126 n 0000 | all the knowledge and values shared by a society -05985126 09 n 01 meme 0 002 @ 05984936 n 0000 ;c 06037666 n 0000 | a cultural unit (an idea or value or pattern of behavior) that is passed from one person to another by non-genetic means (as by imitation); "memes are the cultural counterpart of genes" -05985381 09 n 02 lore 0 traditional_knowledge 0 003 @ 05809192 n 0000 ~ 05978370 n 0000 ~ 05985602 n 0000 | knowledge gained through tradition or anecdote; "early peoples passed on plant and animal lore through legend" -05985602 09 n 01 folklore 0 015 @ 05985381 n 0000 -c 05201183 n 0000 %p 07222050 n 0000 -c 09490825 n 0000 -c 09502481 n 0000 -c 09540739 n 0000 -c 09543154 n 0000 -c 09543748 n 0000 -c 09543924 n 0000 -c 09544109 n 0000 -c 09544262 n 0000 -c 09546280 n 0000 -c 09546453 n 0000 -c 09546905 n 0000 -c 10136775 n 0000 | the unwritten lore (stories and proverbs and riddles and songs) of a culture -05985999 09 n 07 eruditeness 0 erudition 0 learnedness 0 learning 2 scholarship 0 encyclopedism 0 encyclopaedism 0 008 @ 05984287 n 0000 + 10055566 n 0702 + 10055566 n 0601 + 10557854 n 0501 + 02084358 a 0302 + 00830051 a 0303 + 02084358 a 0101 ~ 05986295 n 0000 | profound scholarly knowledge -05986295 09 n 01 letters 1 001 @ 05985999 n 0000 | scholarly attainment; "he is a man of letters" -05986395 09 n 01 enlightenment 0 005 @ 05984287 n 0000 + 00991385 v 0101 ! 05989265 n 0101 ~ 05987835 n 0000 ~ 05987969 n 0000 | education that results in understanding and the spread of knowledge -05986594 09 n 02 foundation 1 grounding 0 001 @ 05984287 n 0000 | education or instruction in the fundamentals of a field of knowledge; "he lacks the foundation necessary for advanced study"; "a good grounding in mathematics" -05986822 09 n 01 centralism 0 001 @ 05901508 n 0000 | the political policy of concentrating power in a central organization -05986948 09 n 01 containment 0 002 @ 05901508 n 0000 + 01131473 v 0105 | a policy of creating strategic alliances in order to check the expansion of a hostile power or ideology or to force it to negotiate peacefully; "containment of communist expansion was a central principle of United States' foreign policy from 1947 to the 1975" -05987283 09 n 01 moderationism 0 001 @ 05901508 n 0000 | the policy of being moderate or acting with moderation -05987397 09 n 01 obscurantism 0 001 @ 05901508 n 0000 | a policy of opposition to enlightenment or the spread of knowledge -05987522 09 n 01 Thatcherism 0 002 @ 05901508 n 0000 ;r 08860123 n 0000 | (England) the political policy of Margaret Thatcher -05987650 09 n 01 ultramontanism 0 002 @ 05901508 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) the policy that the absolute authority of the church should be vested in the pope -05987835 09 n 02 edification 0 sophistication 0 003 @ 05986395 n 0000 + 00991385 v 0102 ~ 05988097 n 0000 | uplifting enlightenment -05987969 09 n 01 satori 0 002 @ 05986395 n 0000 ;c 06242048 n 0000 | (Zen Buddhism) a state of sudden spiritual enlightenment -05988097 09 n 03 disenchantment 0 disillusion 0 disillusionment 0 004 @ 05987835 n 0000 + 01817755 v 0302 + 01817755 v 0202 + 01817755 v 0101 | freeing from false belief or illusions -05988282 09 n 01 ignorance 0 008 @ 05809192 n 0000 + 00831225 a 0101 + 01308894 a 0101 + 00595505 v 0101 ~ 05988743 n 0000 ~ 05988956 n 0000 ~ 05989265 n 0000 ~ 05989386 n 0000 | the lack of knowledge or education -05988498 09 n 02 dark 0 darkness 0 005 @ 05989265 n 0000 + 00884501 a 0202 + 00534250 a 0201 + 02088883 a 0201 + 00884501 a 0102 | an unenlightened state; "he was in the dark concerning their intentions"; "his lectures dispelled the darkness" -05988743 09 n 04 ignorantness 0 nescience 0 unknowing 0 unknowingness 1 005 @ 05988282 n 0000 + 01308894 a 0403 + 01308894 a 0303 + 00831225 a 0202 + 00831225 a 0101 | ignorance (especially of orthodox beliefs) -05988956 09 n 02 inexperience 0 rawness 0 004 @ 05988282 n 0000 + 00937186 a 0201 + 00936740 a 0102 ! 05758059 n 0101 | lack of experience and the knowledge and understanding derived from experience; "procedural inexperience created difficulties"; "their poor behavior was due to the rawness of the troops" -05989265 09 n 01 unenlightenment 0 003 @ 05988282 n 0000 ! 05986395 n 0101 ~ 05988498 n 0000 | a lack of understanding -05989386 09 n 01 illiteracy 1 001 @ 05988282 n 0000 | ignorance resulting from not reading -05989479 09 n 01 theory 0 016 @ 05793000 n 0000 + 10706812 n 0101 + 00860611 a 0102 + 10706812 n 0102 ~ 05782563 n 0000 %p 05872982 n 0000 %p 05888929 n 0000 ~ 05992804 n 0000 ~ 05992949 n 0000 ~ 05993844 n 0000 ~ 05994484 n 0000 ~ 05994935 n 0000 ~ 06102476 n 0000 ~ 06102865 n 0000 ~ 06168152 n 0000 ~ 06168334 n 0000 | a well-substantiated explanation of some aspect of the natural world; an organized system of accepted knowledge that applies in a variety of circumstances to explain a specific set of phenomena; "theories can incorporate facts and laws and tested hypotheses"; "true in fact and theory" -05990089 09 n 04 theory_of_gravitation 0 theory_of_gravity 0 gravitational_theory 0 Newton's_theory_of_gravitation 0 003 @ 05993844 n 0000 ;c 06090869 n 0000 %p 05881867 n 0000 | (physics) the theory that any two particles of matter attract one another with a force directly proportional to the product of their masses and inversely proportional to the square of the distance between them -05990480 09 n 01 principle_of_relativity 0 002 @ 05872982 n 0000 ;c 06090869 n 0000 | (physics) a universal law that states that the laws of mechanics are not affected by a uniform rectilinear motion of the system of coordinates to which they are referred -05990738 09 n 04 Occam's_Razor 0 Ockham's_Razor 0 principle_of_parsimony 0 law_of_parsimony 0 001 @ 05874232 n 0000 | the principle that entities should not be multiplied needlessly; the simplest of two competing theories is to be preferred -05990981 09 n 01 principle_of_equivalence 0 002 @ 05874232 n 0000 ;c 06090869 n 0000 | (physics) the principle that an observer has no way of distinguishing whether his laboratory is in a uniform gravitational field or is in an accelerated frame of reference -05991242 09 n 01 principle_of_liquid_displacement 0 002 @ 05874232 n 0000 ;c 06113415 n 0000 | (hydrostatics) the volume of a body immersed in a fluid is equal to the volume of the displaced fluid -05991441 09 n 02 principle_of_superposition 0 Huygens'_principle_of_superposition 0 001 @ 05874232 n 0000 | the displacement of any point due to the superposition of wave systems is equal to the sum of the displacements of the individual waves at that point; "the principle of superposition is the basis of the wave theory of light" -05991776 09 n 03 principle_of_superposition 1 superposition_principle 1 superposition 0 002 @ 05874232 n 0000 ;c 06115701 n 0000 | (geology) the principle that in a series of stratified sedimentary rocks the lowest stratum is the oldest -05992015 09 n 02 mass-action_principle 0 mass_action 0 002 @ 05874232 n 0000 ;c 06078978 n 0000 | (neurology) the principle that the cortex of the brain operates as a coordinated system with large masses of neural tissue involved in all complex functioning -05992274 09 n 06 localization_of_function 0 localisation_of_function 0 localization_principle 0 localisation_principle 0 localization 0 localisation 0 003 @ 05874232 n 0000 ;c 06080522 n 0000 ~ 05992624 n 0000 | (physiology) the principle that specific functions have relatively circumscribed locations in some particular part or organ of the body -05992624 09 n 03 lateralization 0 lateralisation 0 laterality 0 002 @ 05992274 n 0000 + 02103781 v 0101 | localization of function on either the right or left sides of the brain -05992804 09 n 01 blastogenesis 0 002 @ 05989479 n 0000 + 02667148 a 0101 | theory that inherited characteristics are transmitted by germ plasm -05992949 09 n 02 preformation 0 theory_of_preformation 0 002 @ 05989479 n 0000 + 01660082 v 0101 | a theory (popular in the 18th century and now discredited) that an individual develops by simple enlargement of a tiny fully formed organism (a homunculus) that exists in the germ cell -05993235 09 n 01 dialectical_materialism 0 001 @ 05972585 n 0000 | the materialistic philosophy of Karl Marx and Friedrich Engels -05993367 09 n 02 positivism 0 logical_positivism 0 005 @ 05970311 n 0000 + 10269611 n 0201 + 02782815 a 0102 + 10456138 n 0101 ~ 05993622 n 0000 | the form of empiricism that bases all knowledge on perceptual experience (not on intuition or revelation) -05993622 09 n 01 Comtism 0 001 @ 05993367 n 0000 | Auguste Comte's positivistic philosophy that metaphysics and theology should be replaced by a hierarchy of sciences from mathematics at the base to sociology at the top -05993844 09 n 01 scientific_theory 0 028 @ 05989479 n 0000 #p 05999797 n 0000 ~ 05887911 n 0000 ~ 05888215 n 0000 ~ 05888377 n 0000 ~ 05888572 n 0000 ~ 05990089 n 0000 ~ 05994706 n 0000 ~ 06103270 n 0000 ~ 06105609 n 0000 ~ 06105873 n 0000 ~ 06106084 n 0000 ~ 06106305 n 0000 ~ 06106502 n 0000 ~ 06107436 n 0000 ~ 06107660 n 0000 ~ 06108079 n 0000 ~ 06108487 n 0000 ~ 06108643 n 0000 ~ 06108850 n 0000 ~ 06109227 n 0000 ~ 06109487 n 0000 ~ 06109771 n 0000 ~ 06137918 n 0000 ~ 06138099 n 0000 ~ 06140054 n 0000 ~ 06141324 n 0000 ~ 06150222 n 0000 | a theory that explains scientific observations; "scientific theories must be falsifiable" -05994484 09 n 01 field_theory 0 002 @ 05989479 n 0000 ;c 06090869 n 0000 | (physics) a theory that explains a physical phenomenon in terms of a field and the manner in which it interacts with matter or with other fields -05994706 09 n 01 organicism 0 003 @ 05993844 n 0000 ;c 06102865 n 0000 + 02986392 a 0101 | theory that the total organization of an organism rather than the functioning of individual organs is the determinant of life processes -05994935 09 n 01 economic_theory 0 008 @ 05989479 n 0000 #p 06149484 n 0000 ;c 06149484 n 0000 ~ 05995220 n 0000 ~ 05995355 n 0000 ~ 05995576 n 0000 ~ 05995726 n 0000 ~ 05995898 n 0000 | (economics) a theory of commercial activities (such as the production and consumption of goods) -05995220 09 n 01 consumerism 0 001 @ 05994935 n 0000 | the theory that an increasing consumption of goods is economically beneficial -05995355 09 n 01 Keynesianism 0 001 @ 05994935 n 0000 | the economic theories of John Maynard Keynes who advocated government monetary and fiscal programs intended to stimulate business activity and increase employment -05995576 09 n 01 liberalism 1 002 @ 05994935 n 0000 + 00575685 a 0101 | an economic theory advocating free competition and a self-regulating market -05995726 09 n 02 Malthusianism 0 Malthusian_theory 0 001 @ 05994935 n 0000 | Malthus' theory that population increase would outpace increases in the means of subsistence -05995898 09 n 01 monetarism 0 002 @ 05994935 n 0000 + 10328123 n 0101 | an economic theory holding that variations in unemployment and the rate of inflation are usually caused by changes in the supply of money -05996110 09 n 03 Stevens'_law 0 power_law 0 Stevens'_power_law 0 002 @ 05872982 n 0000 ;c 06139491 n 0000 | (psychophysics) the concept that the magnitude of a subjective sensation increases proportional to a power of the stimulus intensity -05996353 09 n 01 Weber's_law 0 002 @ 05872982 n 0000 ;c 06139491 n 0000 | (psychophysics) the concept that a just-noticeable difference in a stimulus is proportional to the magnitude of the original stimulus; "Weber's law explains why you don't notice your headlights are on in the daytime" -05996646 09 n 08 discipline 0 subject 0 subject_area 0 subject_field 0 field 0 field_of_study 0 study 2 bailiwick 0 024 @ 05999266 n 0000 + 00599992 v 0702 + 00607405 v 0701 + 03061081 a 0101 ~ 05968450 n 0000 ~ 05997361 n 0000 ~ 05997659 n 0000 ~ 05998052 n 0000 ~ 05998225 n 0000 ~ 05998356 n 0000 ~ 05998526 n 0000 ~ 05998724 n 0000 ~ 05999797 n 0000 ~ 06123363 n 0000 ~ 06125041 n 0000 ~ 06136105 n 0000 ~ 06153846 n 0000 ~ 06182144 n 0000 ~ 06248043 n 0000 ~ 06248214 n 0000 ~ 06248361 n 0000 ~ 06248530 n 0000 ~ 06248693 n 0000 ~ 06248863 n 0000 | a branch of knowledge; "in what discipline is his doctorate?"; "teachers should be well trained in their subject"; "anthropology is the study of human beings" -05997361 09 n 02 communications 0 communication_theory 0 002 @ 05996646 n 0000 -c 05091527 n 0000 | the discipline that studies the principles of transmiting information and the methods by which it is delivered (as print or radio or television etc.); "communications is his major field of study" -05997659 09 n 01 major 0 002 @ 05996646 n 0000 + 00607609 v 0101 | the principal field of study of a student at a university; "her major is linguistics" -05997814 09 n 02 region 0 realm 0 001 @ 05999266 n 0000 | a knowledge domain that you are interested in or are communicating about; "it was a limited realm of discourse"; "here we enter the region of opinion"; "the realm of the occult" -05998052 09 n 01 frontier 0 001 @ 05996646 n 0000 | an undeveloped field of study; a topic inviting research and development; "he worked at the frontier of brain science" -05998225 09 n 01 genealogy 0 002 @ 05996646 n 0000 + 03067329 a 0101 | the study or investigation of ancestry and family history -05998356 09 n 01 allometry 0 002 @ 05996646 n 0000 + 02613393 a 0101 | the study of the relative growth of a part of an organism in relation to the growth of the whole -05998526 09 n 01 bibliotics 0 003 @ 05996646 n 0000 + 02663351 a 0101 + 09852979 n 0101 | the scientific study of documents and handwriting etc. especially to determine authorship or authenticity -05998724 09 n 01 ology 0 002 @ 05996646 n 0000 ~ 05998893 n 0000 | an informal word (abstracted from words with this ending) for some unidentified branch of knowledge -05998893 09 n 01 symbology 0 001 @ 05998724 n 0000 | the study or the use of symbols and symbolism -05998994 09 n 02 grey_area 0 gray_area 0 001 @ 05815517 n 0000 | an intermediate area; a topic that is not clearly one thing or the other -05999134 09 n 01 territory 0 001 @ 05815517 n 0000 | an area of knowledge or interest; "his questions covered a lot of territory" -05999266 09 n 03 knowledge_domain 0 knowledge_base 0 domain 0 004 @ 05809192 n 0000 ~ 05996646 n 0000 ~ 05997814 n 0000 ~ 05999540 n 0000 | the content of a particular field of knowledge -05999455 09 n 01 metaknowledge 0 001 @ 05809192 n 0000 | knowledge about knowledge -05999540 09 n 01 scientific_knowledge 0 004 @ 05999266 n 0000 = 02084804 a 0000 = 02085132 a 0000 %p 05999797 n 0000 | knowledge accumulated by systematic study and organized by general principles; "mathematics is the basis for much scientific knowledge" -05999797 09 n 02 science 0 scientific_discipline 0 026 @ 05996646 n 0000 #p 05999540 n 0000 + 10560637 n 0101 ~ 05794189 n 0000 %p 05993844 n 0000 ~ 06000400 n 0000 ~ 06000644 n 0000 -c 06000644 n 0000 ~ 06065819 n 0000 ~ 06066072 n 0000 ~ 06066267 n 0000 ~ 06124395 n 0000 ~ 06125698 n 0000 ~ 06135806 n 0000 ~ 06135915 n 0000 ~ 06136258 n 0000 ~ 06142118 n 0000 ~ 06142861 n 0000 ~ 06143154 n 0000 ~ 06152734 n 0000 ~ 06152821 n 0000 ~ 06153698 n 0000 ~ 06172502 n 0000 ~ 06172789 n 0000 -c 10706812 n 0000 -c 02520997 v 0000 | a particular branch of scientific knowledge; "the science of genetics" -06000400 09 n 01 natural_science 0 007 @ 05999797 n 0000 ~ 06037298 n 0000 ~ 06084469 n 0000 ~ 06090869 n 0000 ~ 06094587 n 0000 ~ 06115476 n 0000 ~ 06123126 n 0000 | the sciences involved in the study of the physical world and its phenomena -06000644 09 n 03 mathematics 0 math 0 maths 0 152 @ 05999797 n 0000 ;c 05999797 n 0000 + 00915141 a 0101 + 02937876 a 0101 + 10301261 n 0101 -c 00355453 a 0000 -c 00472534 a 0000 -c 00597424 a 0000 -c 00597599 a 0000 -c 00728826 a 0000 -c 00769239 a 0000 -c 00769489 a 0000 -c 00785406 a 0000 -c 00786031 a 0000 -c 00915141 a 0000 -c 00916524 a 0000 -c 00943683 a 0000 -c 01417451 a 0000 -c 01417790 a 0000 -c 01547220 a 0000 -c 01547721 a 0000 -c 01659999 a 0000 -c 01660135 a 0000 -c 01819592 a 0000 -c 01819692 a 0000 -c 01819976 a 0000 -c 02110993 a 0000 -c 02373981 a 0000 -c 02506408 a 0000 -c 02607608 a 0000 -c 02620550 a 0000 -c 02711468 a 0000 -c 02792424 a 0000 -c 02828802 a 0000 -c 02909168 a 0000 -c 02929901 a 0000 -c 02930083 a 0000 -c 03012209 a 0000 -c 03049220 a 0000 -c 00073177 n 0000 -c 00073525 n 0000 -c 00869583 n 0000 -c 01212225 n 0000 -c 04738995 n 0000 -c 04803209 n 0000 -c 05064827 n 0000 -c 05065717 n 0000 -c 05783041 n 0000 -c 05802547 n 0000 -c 05802730 n 0000 -c 05846932 n 0000 -c 05848357 n 0000 -c 05850432 n 0000 -c 05861855 n 0000 -c 05862721 n 0000 -c 05864047 n 0000 -c 05931152 n 0000 ~ 06003682 n 0000 -c 06004067 n 0000 -c 06004685 n 0000 -c 06005399 n 0000 -c 06005518 n 0000 -c 06005692 n 0000 -c 06006609 n 0000 -c 06006777 n 0000 -c 06007046 n 0000 -c 06007381 n 0000 -c 06007642 n 0000 -c 06007859 n 0000 -c 06008007 n 0000 -c 06008382 n 0000 -c 06012108 n 0000 -c 06012225 n 0000 -c 06012340 n 0000 -c 06012513 n 0000 -c 06012726 n 0000 -c 06012998 n 0000 -c 06013126 n 0000 -c 06013298 n 0000 -c 06013584 n 0000 -c 06013741 n 0000 -c 06014043 n 0000 -c 06014435 n 0000 -c 06015271 n 0000 -c 06015978 n 0000 -c 06016121 n 0000 -c 06017053 n 0000 -c 06017193 n 0000 -c 06017334 n 0000 -c 06017594 n 0000 -c 06017895 n 0000 ~ 06018022 n 0000 -c 06036506 n 0000 -c 06647614 n 0000 -c 06669864 n 0000 -c 06731802 n 0000 -c 06732169 n 0000 -c 06745422 n 0000 -c 06755776 n 0000 -c 07999699 n 0000 -c 08000118 n 0000 -c 08000304 n 0000 -c 08000644 n 0000 -c 08001685 n 0000 -c 08005260 n 0000 -c 08267640 n 0000 -c 08268321 n 0000 -c 08460924 n 0000 -c 08461172 n 0000 -c 08461424 n 0000 -c 10301261 n 0000 -c 13591586 n 0000 -c 13729428 n 0000 -c 13731530 n 0000 -c 13783581 n 0000 -c 13783816 n 0000 -c 13784366 n 0000 -c 13784906 n 0000 -c 13785136 n 0000 -c 13785404 n 0000 -c 13785557 n 0000 -c 13785736 n 0000 -c 13785965 n 0000 -c 13786413 n 0000 -c 13790133 n 0000 -c 13798491 n 0000 -c 13798814 n 0000 -c 13843001 n 0000 -c 13843173 n 0000 -c 13861050 n 0000 -c 13870414 n 0000 -c 13880994 n 0000 -c 13903855 n 0000 -c 13904011 n 0000 -c 13913427 n 0000 -c 14419889 n 0000 -c 00234057 v 0000 -c 00343600 v 0000 -c 00553407 v 0000 -c 00568879 v 0000 -c 00575561 v 0000 -c 00637259 v 0000 -c 00638723 v 0000 -c 00642644 v 0000 -c 00642803 v 0000 -c 00642980 v 0000 -c 00665630 v 0000 -c 00740290 v 0000 -c 02258291 v 0000 -c 02732401 v 0000 -c 02732603 v 0000 -c 02751055 v 0000 | a science (or group of related sciences) dealing with the logic of quantity and shape and arrangement -06003682 09 n 01 pure_mathematics 0 011 @ 06000644 n 0000 ~ 06004067 n 0000 ~ 06004685 n 0000 ~ 06007642 n 0000 ~ 06012513 n 0000 ~ 06012726 n 0000 ~ 06013741 n 0000 ~ 06016121 n 0000 ~ 06017193 n 0000 ~ 06017594 n 0000 ~ 06017895 n 0000 | the branches of mathematics that study and develop the principles of mathematics for their own sake rather than for their immediate usefulness -06004067 09 n 01 arithmetic 0 022 @ 06003682 n 0000 ;c 06000644 n 0000 + 03044869 a 0102 + 03044869 a 0101 + 09808351 n 0101 ~ 06004599 n 0000 -c 00639478 v 0000 -c 00639693 v 0000 -c 00639998 v 0000 -c 00640136 v 0000 -c 00640262 v 0000 -c 00640385 v 0000 -c 00640828 v 0000 -c 00641138 v 0000 -c 00641252 v 0000 -c 00641672 v 0000 -c 00641929 v 0000 -c 00642098 v 0000 -c 00642357 v 0000 -c 00642498 v 0000 -c 02745332 v 0000 -c 02747287 v 0000 | the branch of pure mathematics dealing with the theory of numerical calculations -06004599 09 n 01 algorism 0 001 @ 06004067 n 0000 | computation with Arabic figures -06004685 09 n 01 geometry 0 033 @ 06003682 n 0000 ;c 06000644 n 0000 + 02735208 a 0101 + 01981009 a 0102 + 02735208 a 0102 + 10128016 n 0102 -c 00561600 a 0000 -c 00562026 a 0000 -c 01720549 a 0000 -c 01720930 a 0000 -c 01053404 n 0000 -c 04736337 n 0000 ~ 06005399 n 0000 ~ 06005518 n 0000 ~ 06006609 n 0000 ~ 06006777 n 0000 ~ 06007859 n 0000 ~ 06008382 n 0000 ~ 06012108 n 0000 ~ 06012225 n 0000 ~ 06012340 n 0000 -c 08648153 n 0000 -c 13863020 n 0000 -c 13872975 n 0000 -c 13877129 n 0000 -c 13878634 n 0000 -c 13889602 n 0000 -c 13904325 n 0000 -c 00522441 v 0000 -c 01583142 v 0000 -c 01583344 v 0000 -c 01583656 v 0000 -c 02258487 v 0000 | the pure mathematics of points and lines and curves and surfaces -06005399 09 n 01 affine_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | the geometry of affine transformations -06005518 09 n 03 elementary_geometry 0 parabolic_geometry 0 Euclidean_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | (mathematics) geometry based on Euclid's axioms -06005692 09 n 03 Euclid's_axiom 0 Euclid's_postulate 0 Euclidean_axiom 0 007 @ 06753550 n 0000 ;c 06000644 n 0000 ~ 06005999 n 0000 ~ 06006117 n 0000 ~ 06006243 n 0000 ~ 06006364 n 0000 ~ 06006458 n 0000 | (mathematics) any of five axioms that are generally recognized as the basis for Euclidean geometry -06005999 09 n 01 Euclid's_first_axiom 0 001 @ 06005692 n 0000 | a straight line can be drawn between any two points -06006117 09 n 01 Euclid's_second_axiom 0 001 @ 06005692 n 0000 | any terminated straight line can be projected indefinitely -06006243 09 n 01 Euclid's_third_axiom 0 001 @ 06005692 n 0000 | a circle with any radius can be drawn around any point -06006364 09 n 01 Euclid's_fourth_axiom 0 001 @ 06005692 n 0000 | all right angles are equal -06006458 09 n 02 Euclid's_fifth_axiom 0 parallel_axiom 0 001 @ 06005692 n 0000 | only one line can be drawn through a point parallel to another line -06006609 09 n 01 fractal_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | (mathematics) the geometry of fractals; "Benoit Mandelbrot pioneered fractal geometry" -06006777 09 n 01 non-Euclidean_geometry 0 004 @ 06004685 n 0000 ;c 06000644 n 0000 ~ 06007046 n 0000 ~ 06007381 n 0000 | (mathematics) geometry based on axioms different from Euclid's; "non-Euclidean geometries discard or replace one or more of the Euclidean axioms" -06007046 09 n 01 hyperbolic_geometry 0 002 @ 06006777 n 0000 ;c 06000644 n 0000 | (mathematics) a non-Euclidean geometry in which the parallel axiom is replaced by the assumption that through any point in a plane there are two or more lines that do not intersect a given line in the plane; "Karl Gauss pioneered hyperbolic geometry" -06007381 09 n 02 elliptic_geometry 0 Riemannian_geometry 0 002 @ 06006777 n 0000 ;c 06000644 n 0000 | (mathematics) a non-Euclidean geometry that regards space as like a sphere and a line as like a great circle; "Bernhard Riemann pioneered elliptic geometry" -06007642 09 n 01 numerical_analysis 0 002 @ 06003682 n 0000 ;c 06000644 n 0000 | (mathematics) the branch of mathematics that studies algorithms for approximating solutions to problems in the infinitesimal calculus -06007859 09 n 01 spherical_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | (mathematics) the geometry of figures on the surface of a sphere -06008007 09 n 01 spherical_trigonometry 0 002 @ 06012513 n 0000 ;c 06000644 n 0000 | (mathematics) the trigonometry of spherical triangles -06008148 09 n 01 triangulation 0 002 @ 06012513 n 0000 + 00647629 v 0101 | a trigonometric method of determining the position of a fixed point from the angles to it from two fixed points a known distance apart; useful in navigation -06008382 09 n 03 analytic_geometry 0 analytical_geometry 0 coordinate_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | the use of algebra to study geometric properties; operates on symbols defined in a coordinate system -06008609 09 n 01 axis 0 010 @ 08593262 n 0000 + 01445063 a 0101 + 02655015 a 0102 ~ 06008896 n 0000 ~ 06009537 n 0000 ~ 06009685 n 0000 ~ 06009857 n 0000 ~ 06009988 n 0000 ~ 06010105 n 0000 ~ 06010381 n 0000 | a straight line through a body or figure that satisfies certain conditions -06008896 09 n 01 coordinate_axis 0 005 @ 06008609 n 0000 #p 05728024 n 0000 ~ 06009233 n 0000 ~ 06009334 n 0000 ~ 06009433 n 0000 | one of the fixed reference lines of a coordinate system -06009086 09 n 01 origin 0 001 @ 13873213 n 0000 | the point of intersection of coordinate axes; where the values of the coordinates are all zero -06009233 09 n 01 x-axis 0 001 @ 06008896 n 0000 | the horizontal axis in a plane coordinate system -06009334 09 n 01 y-axis 0 001 @ 06008896 n 0000 | the vertical axis in a plane coordinate system -06009433 09 n 01 z-axis 0 001 @ 06008896 n 0000 | the third axis in a 3-dimensional coordinate system -06009537 09 n 01 major_axis 0 002 @ 06008609 n 0000 %p 06009685 n 0000 | the longest axis of an ellipse or ellipsoid; passes through the two foci -06009685 09 n 01 semimajor_axis 0 002 @ 06008609 n 0000 #p 06009537 n 0000 | one-half the major axis of an ellipse; the distance from the center of an ellipse to one end -06009857 09 n 01 minor_axis 0 002 @ 06008609 n 0000 %p 06009988 n 0000 | the shorter or shortest axis of an ellipse or ellipsoid -06009988 09 n 01 semiminor_axis 0 002 @ 06008609 n 0000 #p 06009857 n 0000 | one-half the minor axis of an ellipse -06010105 09 n 02 principal_axis 0 optic_axis 0 001 @ 06008609 n 0000 | a line that passes through the center of curvature of a lens so that light is neither reflected nor refracted; "in a normal eye the optic axis is the direction in which objects are seen most distinctly" -06010381 09 n 01 optic_axis 1 001 @ 06008609 n 0000 | in a doubly refracting crystal, the line in the direction of which no double refraction occurs; "a crystal may have either one or two optic axes" -06010583 09 n 02 inertial_reference_frame 0 inertial_frame 0 001 @ 05728024 n 0000 | a coordinate system in which Newton's first law of motion is valid -06010737 09 n 02 space-time 0 space-time_continuum 0 001 @ 05728024 n 0000 | the four-dimensional coordinate system (3 dimensions of space and 1 of time) in which physical events are located -06010930 09 n 02 coordinate 0 co-ordinate 0 003 @ 13582013 n 0000 ~ 06011092 n 0000 ~ 06011903 n 0000 | a number that identifies a position relative to an axis -06011092 09 n 01 Cartesian_coordinate 0 004 @ 06010930 n 0000 ~ 06011446 n 0000 ~ 06011589 n 0000 ~ 06011692 n 0000 | one of the coordinates in a system of coordinates that locates a point on a plane or in space by its distance from two lines or three planes respectively; the two lines or the intersections of the three planes are the coordinate axes -06011446 09 n 01 dimension 1 002 @ 06011092 n 0000 + 00143065 v 0101 | one of three Cartesian coordinates that determine a position in space -06011589 09 n 01 abscissa 0 001 @ 06011092 n 0000 | the value of a coordinate on the horizontal axis -06011692 09 n 01 ordinate 0 001 @ 06011092 n 0000 | the value of a coordinate on the vertical axis -06011793 09 n 01 intercept 0 001 @ 05865998 n 0000 | the point at which a line intersects a coordinate axis -06011903 09 n 01 polar_coordinate 0 001 @ 06010930 n 0000 | either of two values that locate a point on a plane by its distance from a fixed pole and its angle from a fixed line passing through the pole -06012108 09 n 01 plane_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | the geometry of 2-dimensional figures -06012225 09 n 01 solid_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | the geometry of 3-dimensional space -06012340 09 n 02 projective_geometry 0 descriptive_geometry 0 002 @ 06004685 n 0000 ;c 06000644 n 0000 | the geometry of properties that remain invariant under projection -06012513 09 n 02 trigonometry 0 trig 0 006 @ 06003682 n 0000 ;c 06000644 n 0000 + 02912518 a 0101 + 10729442 n 0101 ~ 06008007 n 0000 ~ 06008148 n 0000 | the mathematics of triangles and trigonometric functions -06012726 09 n 01 algebra 0 010 @ 06003682 n 0000 ;c 06000644 n 0000 + 02854350 a 0101 + 09784043 n 0101 + 02854350 a 0102 -c 00869260 n 0000 ~ 06012998 n 0000 ~ 06013126 n 0000 ~ 06013298 n 0000 ~ 06013584 n 0000 | the mathematics of generalized arithmetical operations -06012998 09 n 01 quadratics 0 002 @ 06012726 n 0000 ;c 06000644 n 0000 | a branch of algebra dealing with quadratic equations -06013126 09 n 01 linear_algebra 0 002 @ 06012726 n 0000 ;c 06000644 n 0000 | the part of algebra that deals with the theory of linear equations and linear transformation -06013298 09 n 01 vector_algebra 0 003 @ 06012726 n 0000 ;c 06000644 n 0000 ~ 06013471 n 0000 | the part of algebra that deals with the theory of vectors and vector spaces -06013471 09 n 02 decomposition 0 vector_decomposition 0 001 @ 06013298 n 0000 | the analysis of a vector field -06013584 09 n 01 matrix_algebra 0 003 @ 06012726 n 0000 ;c 06000644 n 0000 -c 05783357 n 0000 | the part of algebra that deals with the theory of matrices -06013741 09 n 02 calculus 0 infinitesimal_calculus 0 007 @ 06003682 n 0000 ;c 06000644 n 0000 + 00637259 v 0101 ~ 06014043 n 0000 ~ 06014435 n 0000 ~ 06015271 n 0000 ~ 06015978 n 0000 | the branch of mathematics that is concerned with limits and with the differentiation and integration of functions -06014043 09 n 01 analysis 2 004 @ 06013741 n 0000 ;c 06000644 n 0000 + 02620550 a 0101 ~ 06014278 n 0000 | a branch of mathematics involving calculus and the theory of limits; sequences and series and integration and differentiation -06014278 09 n 02 Fourier_analysis 0 harmonic_analysis 0 001 @ 06014043 n 0000 | analysis of a periodic function into a sum of simple sinusoidal components -06014435 09 n 02 differential_calculus 0 method_of_fluxions 0 002 @ 06013741 n 0000 ;c 06000644 n 0000 | the part of calculus that deals with the variation of a function with respect to changes in the independent variable (or variables) by means of the concepts of derivative and differential -06014730 09 n 05 derived_function 0 derivative 0 differential_coefficient 0 differential 0 first_derivative 0 005 @ 05802185 n 0000 + 02909168 a 0401 + 00698586 a 0201 ~ 05102435 n 0000 ~ 06015053 n 0000 | the result of mathematical differentiation; the instantaneous change of one quantity relative to another; df(x)/dx -06015053 09 n 02 partial_derivative 0 partial 0 001 @ 06014730 n 0000 | the derivative of a function of two or more variables with respect to a single variable while the other variables are considered to be constant -06015271 09 n 01 integral_calculus 0 002 @ 06013741 n 0000 ;c 06000644 n 0000 | the part of calculus that deals with integration and its application in the solution of differential equations and in determining areas or volumes etc. -06015505 09 n 01 integral 0 004 @ 05802185 n 0000 + 00642980 v 0101 ~ 06015700 n 0000 ~ 06015863 n 0000 | the result of a mathematical integration; F(x) is the integral of f(x) if dF/dx = f(x) -06015700 09 n 01 indefinite_integral 0 001 @ 06015505 n 0000 | the set of functions F(x) + C, where C is any real number, such that F(x) is the integral of f(x) -06015863 09 n 01 definite_integral 0 001 @ 06015505 n 0000 | the integral of a function over a definite interval -06015978 09 n 01 calculus_of_variations 0 002 @ 06013741 n 0000 ;c 06000644 n 0000 | the calculus of maxima and minima of definite integrals -06016121 09 n 01 set_theory 0 002 @ 06003682 n 0000 ;c 06000644 n 0000 | the branch of pure mathematics that deals with the nature and relations of sets -06016276 09 n 01 interval 0 004 @ 07999699 n 0000 ~ 06016462 n 0000 ~ 06016600 n 0000 ~ 06016746 n 0000 | a set containing all points (or all real numbers) between two given endpoints -06016462 09 n 02 closed_interval 0 bounded_interval 0 002 @ 06016276 n 0000 ! 06016600 n 0101 | an interval that includes its endpoints -06016600 09 n 02 open_interval 0 unbounded_interval 0 002 @ 06016276 n 0000 ! 06016462 n 0101 | an interval that does not include its endpoints -06016746 09 n 01 sub-interval 0 001 @ 06016276 n 0000 | an interval that is included in another interval -06016853 09 n 02 group 0 mathematical_group 0 003 @ 07999699 n 0000 ~ 06017053 n 0000 ~ 06017472 n 0000 | a set that is closed, associative, has an identity element and every element has an inverse -06017053 09 n 01 subgroup 0 002 @ 06016853 n 0000 ;c 06000644 n 0000 | (mathematics) a subset (that is not empty) of a mathematical group -06017193 09 n 01 group_theory 0 003 @ 06003682 n 0000 ;c 06000644 n 0000 ~ 06017334 n 0000 | the branch of mathematics dealing with groups -06017334 09 n 01 Galois_theory 0 002 @ 06017193 n 0000 ;c 06000644 n 0000 | group theory applied to the solution of algebraic equations -06017472 09 n 02 Abelian_group 0 commutative_group 0 001 @ 06016853 n 0000 | a group that satisfies the commutative law -06017594 09 n 02 topology 0 analysis_situs 0 002 @ 06003682 n 0000 ;c 06000644 n 0000 | the branch of pure mathematics that deals only with the properties of a figure X that hold for every figure into which X can be transformed with a one-to-one correspondence that is continuous in both directions -06017895 09 n 01 metamathematics 0 002 @ 06003682 n 0000 ;c 06000644 n 0000 | the logical analysis of mathematical reasoning -06018022 09 n 02 applied_mathematics 0 applied_math 0 004 @ 06000644 n 0000 ~ 06018267 n 0000 ~ 06018465 n 0000 ~ 06037108 n 0000 | the branches of mathematics that are involved in the study of the physical or biological or sociological world -06018267 09 n 01 linear_programming 0 001 @ 06018022 n 0000 | a mathematical technique used in economics; finds the maximum or minimum of linear functions in many variables subject to constraints -06018465 09 n 01 statistics 0 109 @ 06018022 n 0000 + 02911627 a 0101 + 10653238 n 0101 + 10652954 n 0101 -c 00240197 a 0000 -c 00240323 a 0000 -c 01594146 a 0000 -c 01594472 a 0000 -c 01594811 a 0000 -c 01597702 a 0000 -c 01597928 a 0000 -c 01924585 a 0000 -c 01925000 a 0000 -c 02165655 a 0000 -c 02165925 a 0000 -c 02505004 a 0000 -c 02911488 a 0000 -c 00161888 n 0000 -c 05729036 n 0000 -c 05737752 n 0000 -c 05737982 n 0000 -c 05738204 n 0000 -c 05822085 n 0000 -c 05822337 n 0000 -c 05822507 n 0000 -c 05858093 n 0000 -c 05858551 n 0000 -c 05858699 n 0000 -c 05863736 n 0000 -c 05875148 n 0000 -c 05918379 n 0000 -c 05918704 n 0000 %p 06020737 n 0000 -c 06020737 n 0000 -c 06021013 n 0000 -c 06021247 n 0000 -c 06021499 n 0000 -c 06021761 n 0000 -c 06022076 n 0000 -c 06022291 n 0000 -c 06022509 n 0000 -c 06022727 n 0000 -c 06023022 n 0000 -c 06023369 n 0000 -c 06023476 n 0000 -c 06023675 n 0000 -c 06023821 n 0000 -c 06023969 n 0000 -c 06024230 n 0000 -c 06024431 n 0000 -c 06024576 n 0000 -c 06024761 n 0000 -c 06024936 n 0000 -c 06025172 n 0000 -c 06025287 n 0000 -c 06025521 n 0000 -c 06025689 n 0000 -c 06025854 n 0000 -c 06026088 n 0000 -c 06026276 n 0000 -c 06026508 n 0000 -c 06026635 n 0000 -c 06026885 n 0000 -c 06027051 n 0000 -c 06027264 n 0000 -c 06027613 n 0000 -c 06027843 n 0000 -c 06028021 n 0000 -c 06028260 n 0000 -c 06028566 n 0000 -c 06028904 n 0000 -c 06029118 n 0000 -c 06029306 n 0000 -c 06029547 n 0000 -c 06029676 n 0000 -c 06029830 n 0000 -c 06030049 n 0000 -c 06030196 n 0000 -c 06030601 n 0000 -c 06030906 n 0000 ~ 06031248 n 0000 -c 06031657 n 0000 -c 06031866 n 0000 -c 06032066 n 0000 -c 06032246 n 0000 -c 06032752 n 0000 -c 06032898 n 0000 -c 06033172 n 0000 -c 06033427 n 0000 -c 06033692 n 0000 -c 06033889 n 0000 ~ 06034101 n 0000 -c 06034301 n 0000 -c 06034611 n 0000 -c 06034870 n 0000 -c 06035014 n 0000 -c 06035213 n 0000 -c 06035413 n 0000 -c 06035674 n 0000 -c 06035918 n 0000 -c 06036157 n 0000 -c 06036697 n 0000 -c 06036939 n 0000 -c 06037108 n 0000 ~ 06041600 n 0000 -c 06108643 n 0000 -c 10652954 n 0000 -c 13589321 n 0000 -c 02662647 v 0000 | a branch of applied mathematics concerned with the collection and interpretation of quantitative data and the use of probability theory to estimate population parameters -06020737 09 n 02 statistical_method 0 statistical_procedure 0 006 @ 05660268 n 0000 #p 06018465 n 0000 ;c 06018465 n 0000 ~ 06021013 n 0000 ~ 06021247 n 0000 ~ 06027264 n 0000 | a method of analyzing or representing statistical data; a procedure for calculating a statistic -06021013 09 n 02 least_squares 0 method_of_least_squares 0 002 @ 06020737 n 0000 ;c 06018465 n 0000 | a method of fitting a curve to data points so as to minimize the sum of the squares of the distances of the points from the curve -06021247 09 n 01 multivariate_analysis 0 006 @ 06020737 n 0000 ;c 06018465 n 0000 ~ 06027613 n 0000 ~ 06028021 n 0000 ~ 06029830 n 0000 ~ 06030601 n 0000 | a generic term for any statistical technique used to analyze data from more than one variable -06021499 09 n 01 statistic 0 010 @ 05816622 n 0000 ;c 06018465 n 0000 ~ 06021761 n 0000 ~ 06022076 n 0000 ~ 06022291 n 0000 ~ 06022509 n 0000 ~ 06022727 n 0000 ~ 06023022 n 0000 ~ 06029547 n 0000 ~ 06029676 n 0000 | a datum that can be represented numerically -06021761 09 n 02 average 0 norm 0 010 @ 06021499 n 0000 ;c 06018465 n 0000 + 01594146 a 0101 + 02645389 v 0101 + 02527294 v 0101 + 00639998 v 0101 ~ 06023243 n 0000 ~ 06023675 n 0000 ~ 06023821 n 0000 ~ 06023969 n 0000 | a statistic describing the location of a distribution; "it set the norm for American homes" -06022076 09 n 01 demographic 0 003 @ 06021499 n 0000 ;c 06018465 n 0000 + 02906351 a 0101 | a statistic characterizing human populations (or segments of human populations broken down by age or sex or income etc.) -06022291 09 n 01 deviation 0 005 @ 06021499 n 0000 ;c 06018465 n 0000 + 02661252 v 0101 ~ 06023369 n 0000 ~ 06023476 n 0000 | the difference between an observed value and the expected value of a variable or function -06022509 09 n 01 moment 0 004 @ 06021499 n 0000 ;c 06018465 n 0000 ~ 06024761 n 0000 ~ 06024936 n 0000 | the n-th moment of a distribution is the expected value of the n-th power of the deviations from a fixed value -06022727 09 n 02 nonparametric_statistic 0 distribution_free_statistic 0 005 @ 06021499 n 0000 ;c 06018465 n 0000 ~ 06034301 n 0000 ~ 06034611 n 0000 ~ 06035413 n 0000 | a statistic computed without knowledge of the form or the parameters of the distribution from which observations are drawn -06023022 09 n 01 parametric_statistic 0 004 @ 06021499 n 0000 ;c 06018465 n 0000 ~ 06028566 n 0000 ~ 06032246 n 0000 | any statistic computed by procedures that assume the data were drawn from a particular distribution -06023243 09 n 01 age_norm 0 001 @ 06021761 n 0000 | the average age at which particular performances are expected to appear -06023369 09 n 01 outlier 0 002 @ 06022291 n 0000 ;c 06018465 n 0000 | an extreme deviation from the mean -06023476 09 n 02 mean_deviation 0 mean_deviation_from_the_mean 0 002 @ 06022291 n 0000 ;c 06018465 n 0000 | the arithmetic mean of the absolute values of deviations from the mean of a distribution -06023675 09 n 02 mode 0 modal_value 0 003 @ 06021761 n 0000 ;c 06018465 n 0000 + 01594811 a 0101 | the most frequent value of a random variable -06023821 09 n 02 median 0 median_value 0 003 @ 06021761 n 0000 ;c 06018465 n 0000 + 01594472 a 0101 | the value below which 50% of the cases fall -06023969 09 n 02 mean 0 mean_value 0 006 @ 06021761 n 0000 ;c 06018465 n 0000 + 01594146 a 0102 ~ 06024230 n 0000 ~ 06024431 n 0000 ~ 06024576 n 0000 | an average of n numbers computed by adding some function of the numbers and dividing by some function of n -06024230 09 n 04 arithmetic_mean 0 first_moment 0 expectation 1 expected_value 0 002 @ 06023969 n 0000 ;c 06018465 n 0000 | the sum of the values of a random variable divided by the number of values -06024431 09 n 01 geometric_mean 0 002 @ 06023969 n 0000 ;c 06018465 n 0000 | the mean of n numbers expressed as the n-th root of their product -06024576 09 n 01 harmonic_mean 0 002 @ 06023969 n 0000 ;c 06018465 n 0000 | the mean of n numbers expressed as the reciprocal of the arithmetic mean of the reciprocals of the numbers -06024761 09 n 01 second_moment 0 002 @ 06022509 n 0000 ;c 06018465 n 0000 | the expected value of the square of the deviations of a random variable from the point of origin -06024936 09 n 01 variance 0 004 @ 06022509 n 0000 ;c 06018465 n 0000 ~ 06025172 n 0000 ~ 06025287 n 0000 | the second moment around the mean; the expected value of the square of the deviations of a random variable from its mean value -06025172 09 n 01 standard_deviation 0 002 @ 06024936 n 0000 ;c 06018465 n 0000 | the square root of the variance -06025287 09 n 01 covariance 0 005 @ 06024936 n 0000 ;c 06018465 n 0000 + 02662647 v 0101 + 02504830 a 0101 + 06032752 n 0101 | (statistics) the mean value of the product of the deviations of two variates from their respective means -06025521 09 n 01 frequency_distribution 0 002 @ 05729036 n 0000 ;c 06018465 n 0000 | a distribution of observed frequencies of occurrence of the values of a variable -06025689 09 n 02 normal_distribution 0 Gaussian_distribution 0 002 @ 05729036 n 0000 ;c 06018465 n 0000 | a theoretical distribution with finite mean and variance -06025854 09 n 01 Poisson_distribution 0 002 @ 05729036 n 0000 ;c 06018465 n 0000 | a theoretical distribution that is a good approximation to the binomial distribution when the probability is small and the number of trials is large -06026088 09 n 04 normal_curve 0 bell-shaped_curve 0 Gaussian_curve 0 Gaussian_shape 0 002 @ 13867641 n 0000 ;c 06018465 n 0000 | a symmetrical curve representing the normal distribution -06026276 09 n 02 population 0 universe 1 003 @ 07951464 n 0000 ;c 06018465 n 0000 ~ 06026508 n 0000 | (statistics) the entire aggregation of items from which samples can be drawn; "it is an estimate of the mean of the population" -06026508 09 n 01 subpopulation 0 002 @ 06026276 n 0000 ;c 06018465 n 0000 | a population that is part of a larger population -06026635 09 n 03 sample_distribution 0 sample 1 sampling 0 005 @ 05729036 n 0000 ;c 06018465 n 0000 ~ 00806621 n 0000 ~ 06026885 n 0000 ~ 06027051 n 0000 | items selected at random from a population and used to test hypotheses about the population -06026885 09 n 01 random_sample 1 002 @ 06026635 n 0000 ;c 06018465 n 0000 | a sample in which every element in the population has an equal chance of being selected -06027051 09 n 03 stratified_sample 0 representative_sample 0 proportional_sample 0 002 @ 06026635 n 0000 ;c 06018465 n 0000 | the population is divided into strata and a random sample is taken from each stratum -06027264 09 n 04 regression 0 simple_regression 0 regression_toward_the_mean 0 statistical_regression 0 005 @ 06020737 n 0000 #p 06028021 n 0000 ;c 06018465 n 0000 ~ 06028904 n 0000 ~ 06029118 n 0000 | the relation between selected values of x and observed values of y (from which the most probable value of y can be predicted for any value of x) -06027613 09 n 02 multiple_regression 0 multiple_correlation 0 003 @ 06021247 n 0000 ;c 06018465 n 0000 ~ 06027843 n 0000 | a statistical technique that predicts values of one variable on the basis of two or more other variables -06027843 09 n 01 multicollinearity 0 002 @ 06027613 n 0000 ;c 06018465 n 0000 | a case of multiple regression in which the predictor variables are themselves highly correlated -06028021 09 n 01 regression_analysis 0 005 @ 06021247 n 0000 ;c 06018465 n 0000 %p 06027264 n 0000 %p 06028260 n 0000 %p 06029306 n 0000 | the use of regression to make quantitative predictions of one variable from the values of another -06028260 09 n 02 regression_equation 0 regression_of_y_on_x 0 003 @ 06669864 n 0000 #p 06028021 n 0000 ;c 06018465 n 0000 | the equation representing the relation between selected values of one variable (x) and observed values of the other (y); it permits the prediction of the most probable values of y -06028566 09 n 01 regression_coefficient 0 003 @ 06023022 n 0000 #p 06028904 n 0000 ;c 06018465 n 0000 | when the regression line is linear (y = ax + b) the regression coefficient is the constant (a) that represents the rate of change of one variable (y) as a function of changes in the other (x); it is the slope of the regression line -06028904 09 n 02 linear_regression 0 rectilinear_regression 0 003 @ 06027264 n 0000 ;c 06018465 n 0000 %p 06028566 n 0000 | the relation between variables when the regression equation is linear: e.g., y = ax + b -06029118 09 n 01 curvilinear_regression 0 002 @ 06027264 n 0000 ;c 06018465 n 0000 | the relation between variables when the regression equation is nonlinear (quadratic or higher order) -06029306 09 n 02 regression_line 0 regression_curve 0 003 @ 07000941 n 0000 #p 06028021 n 0000 ;c 06018465 n 0000 | a smooth curve fitted to the set of paired data in regression analysis; for linear regression the curve is a straight line -06029547 09 n 01 time_series 0 002 @ 06021499 n 0000 ;c 06018465 n 0000 | a series of values of a variable at successive times -06029676 09 n 01 vital_statistics 0 002 @ 06021499 n 0000 ;c 06018465 n 0000 | data relating to births and deaths and health and diseases and marriages -06029830 09 n 01 correlational_analysis 0 004 @ 06021247 n 0000 ;c 06018465 n 0000 ~ 06030196 n 0000 %p 06031248 n 0000 | the use of statistical correlation to evaluate the strength of the relations between variables -06030049 09 n 01 correlation_matrix 0 002 @ 08267640 n 0000 ;c 06018465 n 0000 | a matrix giving the correlations between all pairs of data sets -06030196 09 n 01 factor_analysis 0 004 @ 06029830 n 0000 ;c 06018465 n 0000 + 02725181 a 0101 + 00736429 v 0102 | any of several methods for reducing correlational data to a smaller number of dimensions or factors; beginning with a correlation matrix a small number of components or factors are extracted that are regarded as the basic variables that account for the interrelations observed in the data -06030601 09 n 02 analysis_of_variance 0 ANOVA 0 002 @ 06021247 n 0000 ;c 06018465 n 0000 | a statistical method for making simultaneous comparisons between two or more means; a statistical method that yields values that can be tested to determine whether a significant relation exists between variables -06030906 09 n 01 correlation_table 0 002 @ 08266235 n 0000 ;c 06018465 n 0000 | a two-way tabulation of the relations between correlates; row headings are the scores on one variable and column headings are the scores on the second variables and a cell shows how many times the score on that row was associated with the score in that column -06031248 09 n 02 correlation 1 correlational_statistics 0 010 @ 06018465 n 0000 #p 06029830 n 0000 + 02704461 a 0101 + 02658979 v 0101 + 00713996 v 0101 ~ 06031657 n 0000 ~ 06031866 n 0000 ~ 06032898 n 0000 ~ 06033172 n 0000 ~ 06036157 n 0000 | a statistical relation between two or more variables such that systematic changes in the value of one variable are accompanied by systematic changes in the other -06031657 09 n 03 curvilinear_correlation 0 nonlinear_correlation 0 skew_correlation 0 002 @ 06031248 n 0000 ;c 06018465 n 0000 | any correlation in which the rates of change of the variables is not constant -06031866 09 n 01 partial_correlation 0 003 @ 06031248 n 0000 ;c 06018465 n 0000 ~ 06032066 n 0000 | a correlation between two variables when the effects of one or more related variables are removed -06032066 09 n 01 first-order_correlation 0 002 @ 06031866 n 0000 ;c 06018465 n 0000 | a partial correlation in which the effects of only one variable are removed (held constant) -06032246 09 n 03 correlation_coefficient 0 coefficient_of_correlation 0 correlation 0 010 @ 06023022 n 0000 ;c 06018465 n 0000 + 02704461 a 0301 + 02658979 v 0301 + 00713996 v 0301 ~ 06033427 n 0000 ~ 06033692 n 0000 ~ 06033889 n 0000 ~ 06035674 n 0000 ~ 06035918 n 0000 | a statistic representing how closely two variables co-vary; it can vary from -1 (perfect negative correlation) through 0 (no correlation) to +1 (perfect positive correlation); "what is the correlation between those two variables?" -06032752 09 n 01 covariation 0 004 @ 13572324 n 0000 ;c 06018465 n 0000 + 06025287 n 0101 + 02662647 v 0101 | (statistics) correlated variation -06032898 09 n 02 positive_correlation 0 direct_correlation 0 002 @ 06031248 n 0000 ;c 06018465 n 0000 | a correlation in which large values of one variable are associated with large values of the other and small with small; the correlation coefficient is between 0 and +1 -06033172 09 n 02 negative_correlation 0 indirect_correlation 0 002 @ 06031248 n 0000 ;c 06018465 n 0000 | a correlation in which large values of one variable are associated with small values of the other; the correlation coefficient is between 0 and -1 -06033427 09 n 02 product-moment_correlation_coefficient 0 Pearson_product-moment_correlation_coefficient 0 002 @ 06032246 n 0000 ;c 06018465 n 0000 | the most commonly used method of computing a correlation coefficient between variables that are linearly related -06033692 09 n 01 multiple_correlation_coefficient 0 002 @ 06032246 n 0000 ;c 06018465 n 0000 | an estimate of the combined influence of two or more variables on the observed (dependent) variable -06033889 09 n 02 biserial_correlation_coefficient 0 biserial_correlation 0 002 @ 06032246 n 0000 ;c 06018465 n 0000 | a correlation coefficient in which one variable is many-valued and the other is dichotomous -06034101 09 n 01 nonparametric_statistics 0 001 @ 06018465 n 0000 | the branch of statistics dealing with variables without making assumptions about the form or the parameters of their distribution -06034301 09 n 04 rank-order_correlation_coefficient 0 rank-order_correlation 0 rank-difference_correlation_coefficient 0 rank-difference_correlation 0 002 @ 06022727 n 0000 ;c 06018465 n 0000 | the most commonly used method of computing a correlation coefficient between the ranks of scores on two variables -06034611 09 n 01 Kendall_test 0 005 @ 06022727 n 0000 ;c 06018465 n 0000 ~ 06034870 n 0000 ~ 06035014 n 0000 ~ 06035213 n 0000 | any of several nonparametric measures of correlation (used when the assumptions of standard correlational analysis are not met) -06034870 09 n 01 Kendall_partial_rank_correlation 0 002 @ 06034611 n 0000 ;c 06018465 n 0000 | a nonparametric measure of partial correlation -06035014 09 n 01 coefficient_of_concordance 0 002 @ 06034611 n 0000 ;c 06018465 n 0000 | a coefficient of agreement (concordance) between different sets of rank orderings of the same set of things -06035213 09 n 03 tau_coefficient_of_correlation 0 Kendall's_tau 0 Kendall_rank_correlation 0 002 @ 06034611 n 0000 ;c 06018465 n 0000 | a nonparametric measure of the agreement between two rankings -06035413 09 n 03 phi_coefficient 0 phi_correlation 0 fourfold_point_correlation 0 002 @ 06022727 n 0000 ;c 06018465 n 0000 | an index of the relation between any two sets of scores that can both be represented on ordered binary dimensions (e.g., male-female) -06035674 09 n 02 split-half_correlation 0 chance-half_correlation 0 002 @ 06032246 n 0000 ;c 06018465 n 0000 | a correlation coefficient calculated between scores on two halves of a test; taken as an indication of the reliability of the test -06035918 09 n 02 tetrachoric_correlation_coefficient 0 tetrachoric_correlation 0 002 @ 06032246 n 0000 ;c 06018465 n 0000 | a correlation coefficient computed for two normally distributed variables that are both expressed as a dichotomy -06036157 09 n 01 spurious_correlation 0 002 @ 06031248 n 0000 ;c 06018465 n 0000 | a correlation between two variables (e.g., between the number of electric motors in the home and grades at school) that does not result from any direct relation between them (buying electric motors will not raise grades) but from their relation to other variables -06036506 09 n 01 binomial 0 003 @ 05855125 n 0000 ;c 06000644 n 0000 + 03048558 a 0101 | (mathematics) a quantity expressed as a sum or difference of two terms; a polynomial with two terms -06036697 09 n 02 binomial_distribution 0 Bernoulli_distribution 0 002 @ 05729036 n 0000 ;c 06018465 n 0000 | a theoretical distribution of the number of successes in a finite set of independent trials with a constant probability of success -06036939 09 n 01 binomial_theorem 0 003 @ 06752293 n 0000 #p 06037108 n 0000 ;c 06018465 n 0000 | a theorem giving the expansion of a binomial raised to a given power -06037108 09 n 02 probability_theory 0 theory_of_probability 0 003 @ 06018022 n 0000 ;c 06018465 n 0000 %p 06036939 n 0000 | the branch of applied mathematics that deals with probabilities -06037298 09 n 02 life_science 0 bioscience 0 012 @ 06000400 n 0000 + 09855630 n 0102 ~ 06037666 n 0000 ~ 06041466 n 0000 ~ 06041600 n 0000 ~ 06041805 n 0000 ~ 06041955 n 0000 ~ 06042187 n 0000 ~ 06042486 n 0000 ~ 06042690 n 0000 ~ 06042905 n 0000 ~ 06045562 n 0000 | any of the branches of natural science dealing with the structure and behavior of living organisms -06037666 09 n 02 biology 0 biological_science 0 196 @ 06037298 n 0000 + 02665803 a 0102 + 02665803 a 0101 + 09855630 n 0101 -c 00002312 a 0000 -c 00002527 a 0000 -c 00123653 a 0000 -c 00123804 a 0000 -c 00124493 a 0000 -c 00124685 a 0000 -c 00125553 a 0000 -c 00159498 a 0000 -c 00159735 a 0000 -c 00159975 a 0000 -c 00188155 a 0000 -c 00211564 a 0000 -c 00212949 a 0000 -c 00213610 a 0000 -c 00215087 a 0000 -c 00216155 a 0000 -c 00239185 a 0000 -c 00241260 a 0000 -c 00241397 a 0000 -c 00241530 a 0000 -c 00585597 a 0000 -c 00678666 a 0000 -c 00678923 a 0000 -c 00726612 a 0000 -c 00727268 a 0000 -c 00728993 a 0000 -c 00742714 a 0000 -c 00998850 a 0000 -c 01184448 a 0000 -c 01219373 a 0000 -c 01220640 a 0000 -c 01220882 a 0000 -c 01221057 a 0000 -c 01221290 a 0000 -c 01238486 a 0000 -c 01354750 a 0000 -c 01359424 a 0000 -c 01476685 a 0000 -c 01477806 a 0000 -c 01479181 a 0000 -c 01524722 a 0000 -c 01529897 a 0000 -c 01530801 a 0000 -c 01595050 a 0000 -c 01617675 a 0000 -c 01617859 a 0000 -c 01758339 a 0000 -c 01758582 a 0000 -c 01929062 a 0000 -c 01929312 a 0000 -c 02041940 a 0000 -c 02136423 a 0000 -c 02241247 a 0000 -c 02277829 a 0000 -c 02278513 a 0000 -c 02291632 a 0000 -c 02310533 a 0000 -c 02310771 a 0000 -c 02313138 a 0000 -c 02374349 a 0000 -c 02374697 a 0000 -c 02376809 a 0000 -c 02376995 a 0000 -c 02409500 a 0000 -c 02409712 a 0000 -c 02413037 a 0000 -c 02413221 a 0000 -c 02475179 a 0000 -c 02475292 a 0000 -c 02480151 a 0000 -c 02483386 a 0000 -c 02483540 a 0000 -c 02567117 a 0000 -c 02656930 a 0000 -c 02685299 a 0000 -c 02685539 a 0000 -c 02685946 a 0000 -c 02686159 a 0000 -c 02687191 a 0000 -c 02687434 a 0000 -c 02700792 a 0000 -c 02734016 a 0000 -c 02734914 a 0000 -c 02765965 a 0000 -c 02781885 a 0000 -c 02821243 a 0000 -c 02828917 a 0000 -c 02855185 a 0000 -c 02862629 a 0000 -c 02862797 a 0000 -c 02906478 a 0000 -c 03008659 a 0000 -c 03018498 a 0000 -c 03020884 a 0000 -c 03021051 a 0000 -c 00116180 r 0000 -c 00006484 n 0000 -c 00920510 n 0000 -c 01326751 n 0000 -c 04744161 n 0000 -c 04744645 n 0000 -c 04750547 n 0000 -c 05034989 n 0000 -c 05071185 n 0000 -c 05605498 n 0000 -c 05985126 n 0000 ~ 06066414 n 0000 ~ 06066555 n 0000 ~ 06069996 n 0000 ~ 06070503 n 0000 ~ 06070929 n 0000 ~ 06071426 n 0000 ~ 06071722 n 0000 ~ 06071934 n 0000 ~ 06075527 n 0000 ~ 06077648 n 0000 ~ 06078088 n 0000 ~ 06078327 n 0000 ~ 06078511 n 0000 ~ 06078724 n 0000 ~ 06080522 n 0000 ~ 06082834 n 0000 ~ 06082972 n 0000 ~ 06083243 n 0000 -c 06105609 n 0000 -c 06109227 n 0000 -c 06109771 n 0000 -c 06142598 n 0000 -c 06153186 n 0000 -c 07428257 n 0000 -c 07940865 n 0000 -c 08101085 n 0000 -c 08102555 n 0000 -c 08103299 n 0000 -c 08103457 n 0000 -c 08103777 n 0000 -c 08106661 n 0000 -c 08106798 n 0000 -c 08106934 n 0000 -c 08107191 n 0000 -c 08107343 n 0000 -c 08107499 n 0000 -c 08108304 n 0000 -c 08108450 n 0000 -c 08108627 n 0000 -c 08108784 n 0000 -c 08108972 n 0000 -c 08109624 n 0000 -c 08109772 n 0000 -c 08109940 n 0000 -c 08110197 n 0000 -c 08110373 n 0000 -c 08110648 n 0000 -c 08111157 n 0000 -c 08111419 n 0000 -c 08111599 n 0000 -c 08221348 n 0000 -c 09855630 n 0000 -c 10341660 n 0000 -c 11418750 n 0000 -c 11444816 n 0000 -c 11491816 n 0000 -c 11492388 n 0000 -c 11492643 n 0000 -c 11502695 n 0000 -c 11523839 n 0000 -c 13425245 n 0000 -c 13432249 n 0000 -c 13433948 n 0000 -c 13458019 n 0000 -c 13477023 n 0000 -c 13489037 n 0000 -c 13501738 n 0000 -c 13503513 n 0000 -c 13528100 n 0000 -c 13548734 n 0000 -c 13550318 n 0000 -c 13559782 n 0000 -c 13812296 n 0000 -c 13869676 n 0000 -c 13914141 n 0000 -c 14568762 n 0000 -c 14723079 n 0000 -c 14899530 n 0000 -c 00055142 v 0000 -c 00055539 v 0000 -c 00055709 v 0000 -c 00176756 v 0000 -c 00382010 v 0000 -c 00574218 v 0000 -c 01734929 v 0000 -c 02451679 v 0000 | the science that studies living organisms -06041466 09 n 01 biomedical_science 0 001 @ 06037298 n 0000 | the application of the principles of the natural sciences to medicine -06041600 09 n 03 biometrics 0 biometry 0 biostatistics 0 002 @ 06037298 n 0000 @ 06018465 n 0000 | a branch of biology that studies biological phenomena and observations by means of statistical analysis -06041805 09 n 01 craniology 0 003 @ 06037298 n 0000 + 10427467 n 0102 ~ 06045847 n 0000 | the scientific study of the skulls of various human races -06041955 09 n 01 dermatoglyphics 0 001 @ 06037298 n 0000 | the study of the whorls and loops and arches in the fingertips and on the palms of the hand and the soles of the feet; "some criminologists specialize in dermatoglyphics" -06042187 09 n 01 dietetics 0 002 @ 06037298 n 0000 ~ 06042312 n 0000 | the scientific study of food preparation and intake -06042312 09 n 01 macrobiotics 0 002 @ 06042187 n 0000 + 02983739 a 0101 | the theory of promoting health and longevity by means of diet (especially whole beans and grains) -06042486 09 n 01 eugenics 0 003 @ 06037298 n 0000 + 02715949 a 0101 ! 06042690 n 0101 | the study of methods of improving genetic qualities by selective breeding (especially as applied to human mating) -06042690 09 n 02 dysgenics 0 cacogenics 0 004 @ 06037298 n 0000 + 02715365 a 0202 + 02715365 a 0101 ! 06042486 n 0101 | the study of the operation of factors causing degeneration in the type of offspring produced -06042905 09 n 01 euthenics 0 001 @ 06037298 n 0000 | the study of methods of improving human well-being and efficient functioning by improving environmental conditions -06043075 09 n 02 medicine 0 medical_specialty 0 127 @ 06045562 n 0000 + 02607455 a 0102 + 01168988 a 0101 + 00084230 v 0102 + 00084230 v 0101 -c 00044760 a 0000 -c 00045123 a 0000 -c 00803751 a 0000 -c 01105233 a 0000 -c 01105620 a 0000 -c 01251958 a 0000 -c 01356365 a 0000 -c 01356515 a 0000 -c 01357206 a 0000 -c 01425529 a 0000 -c 01425708 a 0000 -c 01425895 a 0000 -c 01426077 a 0000 -c 01426375 a 0000 -c 01598125 a 0000 -c 01747713 a 0000 -c 01820481 a 0000 -c 01820861 a 0000 -c 02077469 a 0000 -c 02283525 a 0000 -c 02452562 a 0000 -c 02795109 a 0000 -c 02817113 a 0000 -c 02883914 a 0000 -c 03054551 a 0000 -c 03096747 a 0000 -c 00177783 n 0000 -c 00323532 n 0000 -c 00612160 n 0000 -c 00646332 n 0000 -c 00646504 n 0000 -c 00661091 n 0000 -c 00695448 n 0000 -c 00698004 n 0000 -c 00705580 n 0000 -c 00901083 n 0000 -c 00944965 n 0000 -c 01460108 n 0000 -c 03430091 n 0000 -c 03740161 n 0000 -c 03845550 n 0000 -c 03966751 n 0000 -c 04492585 n 0000 -c 04959061 n 0000 -c 05696941 n 0000 -c 05909585 n 0000 ~ 06046245 n 0000 ~ 06046383 n 0000 ~ 06046528 n 0000 ~ 06046692 n 0000 ~ 06046898 n 0000 ~ 06047096 n 0000 ~ 06047275 n 0000 ~ 06047430 n 0000 ~ 06049091 n 0000 ~ 06049500 n 0000 ~ 06049673 n 0000 ~ 06049850 n 0000 ~ 06050024 n 0000 ~ 06050257 n 0000 ~ 06050490 n 0000 ~ 06050650 n 0000 ~ 06050901 n 0000 ~ 06051134 n 0000 ~ 06051380 n 0000 ~ 06051542 n 0000 ~ 06052300 n 0000 ~ 06052521 n 0000 ~ 06052685 n 0000 ~ 06052864 n 0000 ~ 06053101 n 0000 ~ 06053280 n 0000 ~ 06053439 n 0000 ~ 06054266 n 0000 ~ 06054446 n 0000 ~ 06054700 n 0000 ~ 06054892 n 0000 ~ 06055300 n 0000 ~ 06055946 n 0000 ~ 06061631 n 0000 ~ 06062076 n 0000 ~ 06062225 n 0000 ~ 06062655 n 0000 ~ 06062842 n 0000 ~ 06063275 n 0000 ~ 06063417 n 0000 ~ 06064345 n 0000 ~ 06064683 n 0000 ~ 06064838 n 0000 ~ 06065020 n 0000 ~ 06065208 n 0000 ~ 06065423 n 0000 ~ 06065640 n 0000 -c 06108487 n 0000 -c 06797671 n 0000 -c 06797947 n 0000 -c 07332313 n 0000 -c 09897350 n 0000 -c 09929577 n 0000 -c 10026058 n 0000 -c 10187356 n 0000 -c 11505318 n 0000 -c 13322113 n 0000 -c 13445972 n 0000 -c 13479889 n 0000 -c 13498404 n 0000 -c 13500674 n 0000 -c 13539422 n 0000 -c 13575226 n 0000 -c 13759773 n 0000 -c 14213328 n 0000 -c 14237561 n 0000 -c 14299637 n 0000 -c 14301785 n 0000 -c 14527171 n 0000 -c 14557898 n 0000 -c 14943359 n 0000 -c 15043579 n 0000 -c 02109404 v 0000 -c 02150039 v 0000 -c 02150192 v 0000 -c 02151394 v 0000 | the branches of medical science that deal with nonsurgical techniques -06045562 09 n 01 medical_science 0 008 @ 06037298 n 0000 ~ 06043075 n 0000 ~ 06060845 n 0000 ~ 06062407 n 0000 ~ 06063072 n 0000 ~ 06063588 n 0000 ~ 06064106 n 0000 ~ 06078978 n 0000 | the science of dealing with the maintenance of health and the prevention and treatment of disease -06045847 09 n 01 phrenology 0 003 @ 06041805 n 0000 + 02778016 a 0101 + 10427467 n 0101 | a now abandoned study of the shape of skull as indicative of the strengths of different faculties -06046037 09 n 03 aeromedicine 0 aerospace_medicine 0 aviation_medicine 0 002 @ 06046898 n 0000 + 02607187 a 0101 | the study and treatment of disorders associated with flight (especially with space flight) -06046245 09 n 01 allergology 0 001 @ 06043075 n 0000 | the branch of medical science that studies the causes and treatment of allergies -06046383 09 n 01 anesthesiology 0 002 @ 06043075 n 0000 + 09793495 n 0101 | the branch of medical science that studies and applies anesthetics -06046528 09 n 01 angiology 0 002 @ 06043075 n 0000 + 09793830 n 0101 | the branch of medical science that studies the blood and lymph vessels and their disorders -06046692 09 n 01 bacteriology 0 005 @ 06043075 n 0000 + 02914740 a 0102 + 02914740 a 0101 + 09831411 n 0101 -c 14899328 n 0000 | the branch of medical science that studies bacteria in relation to disease -06046898 09 n 01 biomedicine 0 002 @ 06043075 n 0000 ~ 06046037 n 0000 | the branch of medical science that studies the ability of organisms to withstand environmental stress (as in space travel) -06047096 09 n 01 biomedicine 1 002 @ 06043075 n 0000 + 02760316 a 0101 | the branch of medical science that applies biological and physiological principles to clinical practice -06047275 09 n 01 cardiology 0 003 @ 06043075 n 0000 + 02914902 a 0101 + 09894445 n 0101 | the branch of medicine dealing with the heart and its diseases -06047430 09 n 03 dentistry 0 dental_medicine 0 odontology 0 018 @ 06043075 n 0000 -c 00655136 a 0000 -c 00655445 a 0000 -c 03139089 n 0000 -c 03175604 n 0000 -c 03338287 n 0000 -c 03564849 n 0000 -c 03572631 n 0000 -c 05067928 n 0000 -c 05665769 n 0000 ~ 06047923 n 0000 ~ 06048052 n 0000 ~ 06048184 n 0000 ~ 06048552 n 0000 ~ 06048851 n 0000 ~ 06049250 n 0000 -c 14060929 n 0000 -c 14061097 n 0000 | the branch of medicine dealing with the anatomy and development and diseases of the teeth -06047923 09 n 01 cosmetic_dentistry 0 001 @ 06047430 n 0000 | the branch of dentistry dealing with the appearance of the teeth -06048052 09 n 01 dental_surgery 0 002 @ 06047430 n 0000 ~ 06048373 n 0000 | the branch of dentistry involving surgical procedures -06048184 09 n 02 endodontics 0 endodontia 0 004 @ 06047430 n 0000 + 10057114 n 0201 + 02915507 a 0101 + 10057114 n 0101 | the branch of dentistry dealing with diseases of the dental pulp -06048373 09 n 02 exodontics 0 exodontia 0 004 @ 06048052 n 0000 + 10071912 n 0201 + 02916403 a 0101 + 10071912 n 0101 | the branch of dentistry dealing with extraction of teeth -06048552 09 n 05 orthodontics 0 orthodontia 0 orthodonture 0 dental_orthopedics 0 dental_orthopaedics 0 005 @ 06047430 n 0000 + 02915815 a 0301 + 02915815 a 0201 + 02915815 a 0101 + 10384610 n 0101 | the branch of dentistry dealing with the prevention or correction of irregularities of the teeth -06048851 09 n 02 periodontics 0 periodontia 0 005 @ 06047430 n 0000 + 02916006 a 0202 + 02916006 a 0102 + 02916006 a 0101 + 10416567 n 0101 | the branch of dentistry dealing with diseases of the gums and other structures around the teeth -06049091 09 n 01 prosthetics 0 002 @ 06043075 n 0000 + 02785525 a 0101 | the branch of medicine dealing with the production and use of artificial body parts -06049250 09 n 02 prosthodontics 0 prosthodontia 0 004 @ 06047430 n 0000 + 10458696 n 0201 + 02785647 a 0101 + 10458696 n 0101 | the branch of dentistry dealing with the replacement of teeth and related mouth or jaw structures by artificial devices -06049500 09 n 01 dermatology 0 004 @ 06043075 n 0000 + 02916230 a 0101 + 02916230 a 0102 + 10006177 n 0101 | the branch of medicine dealing with the skin and its diseases -06049673 09 n 01 emergency_medicine 0 001 @ 06043075 n 0000 | the branch of medicine concerned with the prompt diagnosis and treatment of injuries or trauma or sudden illness -06049850 09 n 01 endocrinology 0 003 @ 06043075 n 0000 + 10056914 n 0101 -c 05516230 n 0000 | the branch of medicine dealing with the endocrine glands and their secretions -06050024 09 n 01 epidemiology 0 006 @ 06043075 n 0000 + 02976681 a 0101 + 02976681 a 0102 + 10061882 n 0101 -c 10202854 n 0000 -c 13824114 n 0000 | the branch of medical science dealing with the transmission and control of disease -06050257 09 n 02 forensic_medicine 0 forensic_pathology 0 001 @ 06043075 n 0000 | the branch of medical science that uses medical knowledge for legal purposes; "forensic pathology provided the evidence that convicted the murderer" -06050490 09 n 01 gastroenterology 0 002 @ 06043075 n 0000 + 10121800 n 0101 | the branch of medicine that studies the gastrointestinal tract and its diseases -06050650 09 n 02 geriatrics 0 gerontology 0 006 @ 06043075 n 0000 + 02916539 a 0202 + 10128381 n 0201 + 02916730 a 0101 + 02916539 a 0101 + 10128381 n 0102 | the branch of medical science that deals with diseases and problems specific to old people -06050901 09 n 02 gynecology 0 gynaecology 0 006 @ 06043075 n 0000 + 02916969 a 0202 + 10154013 n 0202 + 02916969 a 0103 + 02916969 a 0101 + 10154013 n 0101 | the branch of medicine that deals with the diseases and hygiene of women -06051134 09 n 02 hematology 0 haematology 0 006 @ 06043075 n 0000 + 02917470 a 0202 + 10170681 n 0202 + 02917470 a 0101 + 02917470 a 0103 + 10170681 n 0101 | the branch of medicine that deals with diseases of the blood and blood-forming organs -06051380 09 n 02 hygiene 0 hygienics 0 002 @ 06043075 n 0000 + 02113191 a 0101 | the science concerned with the prevention of illness and maintenance of health -06051542 09 n 01 immunology 0 015 @ 06043075 n 0000 + 02746290 a 0102 + 02746290 a 0101 + 10199902 n 0101 -c 01547831 a 0000 -c 01547961 a 0000 + 02595829 a 0101 + 02596059 a 0101 -c 05666324 n 0000 ~ 06051925 n 0000 ~ 06052165 n 0000 -c 11426778 n 0000 -c 13975037 n 0000 -c 15037339 n 0000 -c 15037664 n 0000 | the branch of medical science that studies the body's immune system -06051925 09 n 02 immunochemistry 0 chemoimmunology 0 003 @ 06084469 n 0000 @ 06051542 n 0000 + 02745991 a 0101 | the field of chemistry concerned with chemical processes in immunology (such as chemical studies of antigens and antibodies) -06052165 09 n 01 immunopathology 0 001 @ 06051542 n 0000 | the branch of immunology that deals with pathologies of the immune system -06052300 09 n 02 internal_medicine 0 general_medicine 0 001 @ 06043075 n 0000 | the branch of medicine that deals with the diagnosis and (nonsurgical) treatment of diseases of the internal organs (especially in adults) -06052521 09 n 01 nephrology 0 001 @ 06043075 n 0000 | the branch of medicine concerned with the kidney - its development and anatomy and physiology and disorders -06052685 09 n 01 nuclear_medicine 0 001 @ 06043075 n 0000 | the branch of medicine that uses radioactive materials either to image a patient's body or to destroy diseased cells -06052864 09 n 02 neurology 2 clinical_neurology 0 005 @ 06043075 n 0000 ;c 06078978 n 0000 + 02917893 a 0102 + 02917893 a 0101 + 10354265 n 0101 | (neurology) the branch of medicine that deals with the nervous system and its disorders -06053101 09 n 01 neuropsychiatry 0 002 @ 06043075 n 0000 + 03011858 a 0101 | the branch of medicine dealing with mental disorders attributable to diseases of the nervous system -06053280 09 n 02 nosology 0 diagnostics 0 002 @ 06043075 n 0000 + 10011074 n 0201 | the branch of medical science dealing with the classification of disease -06053439 09 n 04 obstetrics 0 OB 0 tocology 0 midwifery 0 015 @ 06043075 n 0000 + 02917694 a 0101 + 02917694 a 0102 + 10369699 n 0101 -c 00238326 n 0000 -c 05081434 n 0000 -c 05303020 n 0000 ~ 06053854 n 0000 ~ 06053982 n 0000 -c 10366145 n 0000 -c 10472129 n 0000 -c 10472274 n 0000 -c 10497373 n 0000 -c 10501747 n 0000 -c 14047171 n 0000 | the branch of medicine dealing with childbirth and care of the mother -06053854 09 n 02 fetology 0 foetology 0 001 @ 06053439 n 0000 | the branch of medicine concerned with the fetus in the uterus -06053982 09 n 01 perinatology 0 002 @ 06053439 n 0000 + 10416444 n 0101 | the branch of obstetrics concerned with the anatomy and physiology and diagnosis and treatment of disorders of the mother and the fetus or newborn baby during late pregnancy and childbirth and the puerperium -06054266 09 n 01 oncology 0 004 @ 06043075 n 0000 + 02913243 a 0102 + 02913243 a 0101 + 10377633 n 0101 | the branch of medicine concerned with the study and treatment of tumors -06054446 09 n 01 ophthalmology 0 008 @ 06043075 n 0000 + 10379073 n 0101 -c 02157747 a 0000 -c 04242084 n 0000 -c 14096724 n 0000 -c 14096957 n 0000 -c 14553290 n 0000 -c 14553590 n 0000 | the branch of medicine concerned with the eye and its diseases -06054700 09 n 01 otology 0 006 @ 06043075 n 0000 + 10041195 n 0103 -c 00674562 n 0000 -c 05300675 n 0000 -c 05325378 n 0000 ~ 06060732 n 0000 | the branch of medicine concerned with the ear -06054892 09 n 03 pharmacology 0 pharmacological_medicine 0 materia_medica 0 013 @ 06043075 n 0000 + 02912686 a 0102 + 02912686 a 0101 + 10421753 n 0101 -c 01196098 a 0000 -c 02944327 a 0000 -c 04439122 n 0000 ~ 06055529 n 0000 ~ 06055692 n 0000 ~ 06055824 n 0000 ~ 06064462 n 0000 -c 06411883 n 0000 -c 13457665 n 0000 | the science or study of drugs: their preparation and properties and uses and effects -06055300 09 n 02 pharmacy 0 pharmaceutics 0 006 @ 06043075 n 0000 + 03098803 a 0202 + 03098803 a 0201 + 03098803 a 0102 + 03098803 a 0101 + 10421470 n 0101 | the art and science of preparing and dispensing drugs and medicines, -06055529 09 n 01 pharmacokinetics 0 001 @ 06054892 n 0000 | the study of the action of drugs in the body: method and rate of excretion; duration of effect; etc. -06055692 09 n 01 posology 0 001 @ 06054892 n 0000 | the pharmacological determination of appropriate doses of drugs and medicines -06055824 09 n 01 psychopharmacology 0 002 @ 06054892 n 0000 + 03011972 a 0101 | the study of drugs that affect the mind -06055946 09 n 03 psychiatry 0 psychopathology 0 psychological_medicine 0 036 @ 06043075 n 0000 + 02077253 a 0203 + 02077253 a 0202 + 02913004 a 0101 + 02913004 a 0102 + 10488016 n 0101 -c 00909220 a 0000 -c 01018951 n 0000 -c 04646372 n 0000 -c 05672698 n 0000 -c 05896998 n 0000 -c 05935535 n 0000 ~ 06056787 n 0000 ~ 06056923 n 0000 -c 06887962 n 0000 -c 13450636 n 0000 -c 13452947 n 0000 -c 13459322 n 0000 -c 13461951 n 0000 -c 13467009 n 0000 -c 13495636 n 0000 -c 13501059 n 0000 -c 13503673 n 0000 -c 13529616 n 0000 -c 13541798 n 0000 -c 13546169 n 0000 -c 13546416 n 0000 -c 13548931 n 0000 -c 13550089 n 0000 -c 14061263 n 0000 -c 14083790 n 0000 -c 14374432 n 0000 -c 14390466 n 0000 -c 00612841 v 0000 -c 00643197 v 0000 -c 01634887 v 0000 | the branch of medicine dealing with the diagnosis and treatment of mental disorders -06056787 09 n 01 alienism 0 002 @ 06055946 n 0000 ;u 07073447 n 0000 | an obsolete term for the study and treatment of mental illness -06056923 09 n 03 psychotherapy 0 psychotherapeutics 0 mental_hygiene 0 006 @ 06055946 n 0000 + 02914038 a 0101 + 10489944 n 0101 ~ 06057172 n 0000 ~ 06057326 n 0000 ~ 06057435 n 0000 | the branch of psychiatry concerned with psychological methods -06057172 09 n 01 clinical_psychology 0 001 @ 06056923 n 0000 | the branch of psychology concerned with the treatment of abnormal mentation and behavior -06057326 09 n 01 Freudian_psychology 0 001 @ 06056923 n 0000 | the psychological theories of Sigmund Freud -06057435 09 n 01 Jungian_psychology 0 001 @ 06056923 n 0000 | the psychological theories of Carl Jung -06057539 09 n 02 anatomy 0 general_anatomy 0 078 @ 06078327 n 0000 + 02897730 a 0101 + 09792237 n 0101 + 02897730 a 0102 + 01550594 v 0101 + 01550594 v 0102 -c 00327541 a 0000 -c 00568171 a 0000 -c 00778363 a 0000 -c 00778509 a 0000 -c 00778680 a 0000 -c 00778958 a 0000 -c 00828336 a 0000 -c 00948384 a 0000 -c 00948985 a 0000 -c 00949374 a 0000 -c 01354750 a 0000 -c 01665184 a 0000 -c 01665674 a 0000 -c 02021664 a 0000 -c 02148526 a 0000 -c 02214366 a 0000 -c 02440996 a 0000 -c 02618880 a 0000 -c 02646072 a 0000 -c 02647497 a 0000 -c 02655180 a 0000 -c 02670678 a 0000 -c 02678850 a 0000 -c 02693895 a 0000 -c 02704844 a 0000 -c 02704983 a 0000 -c 02707750 a 0000 -c 02717149 a 0000 -c 02726232 a 0000 -c 02896222 a 0000 -c 02934216 a 0000 -c 02992796 a 0000 -c 03008013 a 0000 -c 00176253 r 0000 -c 00386587 r 0000 -c 05218899 n 0000 -c 05222591 n 0000 -c 05222790 n 0000 -c 05222940 n 0000 -c 05223370 n 0000 -c 05223550 n 0000 -c 05224755 n 0000 -c 05228732 n 0000 -c 05229198 n 0000 -c 05236152 n 0000 -c 05246511 n 0000 -c 05264545 n 0000 -c 05278922 n 0000 -c 05288396 n 0000 -c 05303402 n 0000 -c 05318606 n 0000 -c 05473104 n 0000 -c 05493303 n 0000 -c 05516848 n 0000 -c 05595083 n 0000 -c 05604254 n 0000 -c 05607001 n 0000 -c 05607126 n 0000 -c 05607271 n 0000 -c 05607402 n 0000 -c 05611062 n 0000 ~ 06059125 n 0000 ~ 06059282 n 0000 ~ 06059540 n 0000 ~ 06059709 n 0000 ~ 06059865 n 0000 ~ 06060049 n 0000 ~ 06060208 n 0000 ~ 06060336 n 0000 ~ 06060463 n 0000 -c 08511777 n 0000 -c 13905121 n 0000 | the branch of morphology that deals with the structure of animals -06059125 09 n 02 clinical_anatomy 0 applied_anatomy 0 001 @ 06057539 n 0000 | the practical application of anatomical knowledge to diagnosis and treatment -06059282 09 n 01 comparative_anatomy 0 001 @ 06057539 n 0000 | the study of anatomical features of animals of different species -06059412 09 n 01 dental_anatomy 0 001 @ 06059865 n 0000 | the branch of gross anatomy concerning with the morphology of teeth -06059540 09 n 01 developmental_anatomy 0 001 @ 06057539 n 0000 | the branch of anatomy that studies structural changes of an individual from fertilization to maturity -06059709 09 n 03 functional_anatomy 0 physiological_anatomy 0 morphophysiology 0 001 @ 06057539 n 0000 | the study of anatomy in its relation to function -06059865 09 n 02 gross_anatomy 0 macroscopic_anatomy 0 002 @ 06057539 n 0000 ~ 06059412 n 0000 | the study of the structure of the body and its parts without the use of a microscope -06060049 09 n 01 microscopic_anatomy 0 003 @ 06057539 n 0000 ~ 06070503 n 0000 ~ 06077413 n 0000 | the study of microscopic structures of tissues and organs -06060208 09 n 01 neuroanatomy 0 003 @ 06057539 n 0000 + 02914414 a 0101 + 02914414 a 0102 | the anatomy of the nervous system -06060336 09 n 01 osteology 0 001 @ 06057539 n 0000 | the branch of anatomy that studies the bones of the vertebrate skeleton -06060463 09 n 03 regional_anatomy 0 topographic_anatomy 0 topology 1 001 @ 06057539 n 0000 | the study of anatomy based on regions or divisions of the body and emphasizing the relations between various structures (muscles and nerves and arteries etc.) in that region -06060732 09 n 02 audiology 0 audiometry 0 002 @ 06054700 n 0000 + 02648270 a 0201 | the measurement of hearing -06060845 09 n 01 pathology 0 035 @ 06045562 n 0000 + 02861206 a 0101 + 02861206 a 0102 + 10011074 n 0102 -c 00037457 a 0000 -c 00037757 a 0000 -c 00038260 a 0000 -c 00038462 a 0000 -c 00038623 a 0000 -c 01092989 a 0000 -c 01093142 a 0000 -c 01105233 a 0000 -c 01105620 a 0000 -c 01449007 a 0000 -c 02104600 a 0000 -c 02264657 a 0000 -c 02594565 a 0000 -c 02594714 a 0000 -c 00226107 n 0000 -c 00227264 n 0000 -c 04625515 n 0000 -c 04682184 n 0000 -c 04696432 n 0000 -c 05244239 n 0000 -c 05517837 n 0000 -c 05603650 n 0000 ~ 06145729 n 0000 -c 14067076 n 0000 -c 14113471 n 0000 -c 14234074 n 0000 -c 14313661 n 0000 -c 14313943 n 0000 -c 14531392 n 0000 -c 14730105 n 0000 -c 15287578 n 0000 | the branch of medical science that studies the causes and nature and effects of diseases -06061631 09 n 04 pediatrics 0 paediatrics 0 pediatric_medicine 0 pedology 0 007 @ 06043075 n 0000 + 02893637 a 0202 + 09828760 n 0204 + 02893637 a 0101 + 09828760 n 0103 + 09828760 n 0102 ~ 06061917 n 0000 | the branch of medicine concerned with the treatment of infants and children -06061917 09 n 01 neonatology 0 001 @ 06061631 n 0000 | that branch of pediatric medicine concerned with the newborn; the diagnosis and treatment of neonates -06062076 09 n 02 podiatry 0 chiropody 0 003 @ 06043075 n 0000 + 09919297 n 0201 + 09919297 n 0103 | the branch of medicine concerned with the feet -06062225 09 n 01 proctology 0 002 @ 06043075 n 0000 + 10478827 n 0101 | the branch of medicine dealing with the diagnosis and treatment of disorders of the colon or rectum or anus -06062407 09 n 01 radiology 0 006 @ 06045562 n 0000 + 02786744 a 0101 + 10504206 n 0101 -c 00903309 n 0000 -c 04462835 n 0000 -c 05516067 n 0000 | the branch of medical science dealing with the medical use of X-rays or other penetrating radiation -06062655 09 n 01 rheumatology 0 002 @ 06043075 n 0000 + 10528023 n 0101 | the branch of medicine dealing with the study and treatment of pathologies of the muscles or tendons or joints -06062842 09 n 03 rhinolaryngology 0 otorhinolaryngology 0 otolaryngology 0 004 @ 06043075 n 0000 + 10059323 n 0303 + 10059323 n 0204 + 10059323 n 0105 | the medical specialty that deals with diseases of the ear, nose and throat -06063072 09 n 01 serology 0 004 @ 06045562 n 0000 + 02987760 a 0101 + 02987760 a 0102 + 10582032 n 0101 | the branch of medical science that deals with serums; especially with blood serums and disease -06063275 09 n 01 space_medicine 0 001 @ 06043075 n 0000 | the branch of medicine concerned with the effects of space flight on human beings -06063417 09 n 01 sports_medicine 0 001 @ 06043075 n 0000 | the branch of medicine concerned with the treatment of injuries or illness resulting from athletic activities -06063588 09 n 01 surgery 0 018 @ 06045562 n 0000 + 02888968 a 0101 + 01169194 a 0101 -c 02878368 a 0000 -c 00148242 n 0000 -c 00671351 n 0000 -c 00943187 n 0000 -c 03232158 n 0000 -c 05230357 n 0000 -c 05246215 n 0000 -c 05582859 n 0000 -c 14022369 n 0000 -c 14353008 n 0000 -c 00083334 v 0000 -c 00176327 v 0000 -c 00176459 v 0000 -c 00176618 v 0000 -c 02364266 v 0000 | the branch of medical science that treats disease or injury by operative procedures; "he is professor of surgery at the Harvard Medical School" -06064106 09 n 02 orthopedics 0 orthopaedics 0 005 @ 06045562 n 0000 + 10385159 n 0202 + 03095068 a 0103 + 10385159 n 0101 -c 00116122 n 0000 | the branch of medical science concerned with disorders or deformities of the spine and joints -06064345 09 n 01 therapeutics 0 001 @ 06043075 n 0000 | branch of medicine concerned with the treatment of disease -06064462 09 n 01 toxicology 0 005 @ 06054892 n 0000 + 02912848 a 0102 + 02912848 a 0101 + 10719807 n 0101 -c 14570091 n 0000 | the branch of pharmacology that deals with the nature and effects and treatments of poisons -06064683 09 n 01 thoracic_medicine 0 001 @ 06043075 n 0000 | the branch of medicine that deals with the diagnosis and treatment of diseases of the chest -06064838 09 n 02 traumatology 0 accident_surgery 0 001 @ 06043075 n 0000 | the branch of medicine that deals with the surgical repair of injuries and wounds arising from accidents -06065020 09 n 01 tropical_medicine 0 001 @ 06043075 n 0000 | the branch of medicine that deals with the diagnosis and treatment of diseases that are found most often in tropical regions -06065208 09 n 02 urology 0 urogenital_medicine 0 002 @ 06043075 n 0000 + 10741493 n 0101 | the branch of medicine that deals with the diagnosis and treatment of disorders of the urinary tract or urogenital system -06065423 09 n 01 veterinary_medicine 0 002 @ 06043075 n 0000 -c 14453290 n 0000 | the branch of medicine that deals with the diagnosis and treatment of diseases and injuries of animals (especially domestic animals) -06065640 09 n 01 virology 0 004 @ 06043075 n 0000 + 02914599 a 0101 + 10755394 n 0101 -c 01328702 n 0000 | the branch of medical science that studies viruses and viral diseases -06065819 09 n 02 agronomy 0 scientific_agriculture 0 006 @ 05999797 n 0000 + 02608902 a 0101 + 09780120 n 0101 + 02608902 a 0102 %p 06066072 n 0000 %p 06066267 n 0000 | the application of soil and plant sciences to land management and crop production -06066072 09 n 01 agrobiology 0 004 @ 05999797 n 0000 #p 06065819 n 0000 + 02608592 a 0101 + 02608592 a 0102 | the study of plant nutrition and growth especially as a way to increase crop yield -06066267 09 n 01 agrology 0 004 @ 05999797 n 0000 #p 06065819 n 0000 + 02608753 a 0101 + 02608753 a 0102 | science of soils in relation to crops -06066414 09 n 01 biogeography 0 002 @ 06037666 n 0000 + 02665642 a 0102 | dealing with the geographical distribution of animals and plants -06066555 09 n 02 botany 0 phytology 0 164 @ 06037666 n 0000 + 09868270 n 0202 + 02668258 a 0101 + 02668258 a 0102 + 09868270 n 0101 + 00645415 v 0101 + 00645415 v 0102 -c 00002730 a 0000 -c 00002843 a 0000 -c 00031674 a 0000 -c 00031824 a 0000 -c 00158961 a 0000 -c 00213172 a 0000 -c 00316046 a 0000 -c 00316167 a 0000 -c 00318498 a 0000 -c 00318667 a 0000 -c 00321094 a 0000 -c 00322321 a 0000 -c 00332524 a 0000 -c 00333015 a 0000 -c 00365513 a 0000 -c 00365681 a 0000 -c 00613728 a 0000 -c 00654394 a 0000 -c 00677545 a 0000 -c 00677877 a 0000 -c 00678024 a 0000 -c 00678221 a 0000 -c 00678473 a 0000 -c 00741076 a 0000 -c 00741240 a 0000 -c 00741459 a 0000 -c 00741633 a 0000 -c 00743293 a 0000 -c 00743869 a 0000 -c 00819051 a 0000 -c 00871494 a 0000 -c 00871816 a 0000 -c 00872010 a 0000 -c 01236565 a 0000 -c 01380267 a 0000 -c 01477251 a 0000 -c 01478482 a 0000 -c 01542489 a 0000 -c 01542744 a 0000 -c 01657420 a 0000 -c 01663201 a 0000 -c 01663359 a 0000 -c 01694892 a 0000 -c 01701512 a 0000 -c 01701769 a 0000 -c 01703619 a 0000 -c 01703797 a 0000 -c 01704273 a 0000 -c 02006538 a 0000 -c 02047603 a 0000 -c 02142446 a 0000 -c 02166346 a 0000 -c 02171024 a 0000 -c 02216694 a 0000 -c 02220308 a 0000 -c 02220571 a 0000 -c 02239888 a 0000 -c 02241078 a 0000 -c 02241443 a 0000 -c 02242481 a 0000 -c 02244619 a 0000 -c 02245403 a 0000 -c 02317800 a 0000 -c 02318057 a 0000 -c 02479492 a 0000 -c 02482298 a 0000 -c 02483198 a 0000 -c 02484919 a 0000 -c 02576058 a 0000 -c 02576795 a 0101 -c 02626634 a 0000 -c 02633447 a 0000 -c 02633877 a 0000 -c 02635069 a 0000 -c 02639430 a 0000 -c 02639590 a 0000 -c 02641201 a 0000 -c 02642886 a 0000 -c 02644602 a 0000 -c 02644748 a 0000 -c 02644870 a 0000 -c 02652590 a 0000 -c 02652877 a 0000 -c 02655015 a 0000 -c 02659404 a 0000 -c 02659571 a 0000 -c 02663453 a 0000 -c 02675856 a 0000 -c 02676456 a 0000 -c 02678677 a 0000 -c 02701099 a 0000 -c 02741373 a 0000 -c 02773472 a 0000 -c 02795262 a 0000 -c 02819734 a 0000 -c 02819848 a 0000 -c 02937720 a 0000 -c 03021347 a 0000 -c 03022349 a 0000 -c 03022469 a 0000 -c 03025967 a 0000 -c 03049642 a 0000 -c 03119811 a 0000 -c 03133666 a 0000 -c 03133791 a 0000 -c 03133883 a 0000 -c 03134675 a 0000 -c 03141177 a 0000 -c 00017222 n 0000 -c 00274206 n 0000 ~ 06069747 n 0000 ~ 06069886 n 0000 ~ 06074372 n 0000 ~ 06074507 n 0000 ~ 06074613 n 0000 -c 07434782 n 0000 -c 07947069 n 0000 -c 08220891 n 0000 -c 08373244 n 0000 -c 08373380 n 0000 -c 09426621 n 0000 -c 10346514 n 0000 -c 11529603 n 0000 -c 11552806 n 0000 -c 11552976 n 0000 -c 11553240 n 0000 -c 11677259 n 0000 -c 11680457 n 0000 -c 11680596 n 0000 -c 11685876 n 0000 -c 11686503 n 0000 -c 11691046 n 0000 -c 11691332 n 0000 -c 11691523 n 0000 -c 11691857 n 0000 -c 11820191 n 0000 -c 12780168 n 0000 -c 13088460 n 0000 -c 13088688 n 0000 -c 13088858 n 0000 -c 13090395 n 0000 -c 13098962 n 0000 -c 13125117 n 0000 -c 13126050 n 0000 -c 13133438 n 0000 -c 13154190 n 0000 -c 13161506 n 0000 -c 13162164 n 0000 -c 13433462 n 0000 -c 13449714 n 0000 -c 13483190 n 0000 -c 13532356 n 0000 -c 14744841 n 0000 -c 14823547 n 0000 -c 00116496 v 0000 -c 01581789 v 0000 -c 01752728 v 0000 | the branch of biology that studies plants -06069747 09 n 01 mycology 0 002 @ 06066555 n 0000 + 10343088 n 0101 | the branch of botany that studies fungi and fungus-caused diseases -06069886 09 n 01 pomology 0 001 @ 06066555 n 0000 | the branch of botany that studies and cultivates fruits -06069996 09 n 01 cryobiology 0 002 @ 06037666 n 0000 ~ 06070179 n 0000 | the branch of biology that studies the effects of low temperatures on living tissues or organs or organisms -06070179 09 n 01 cryonics 0 002 @ 06069996 n 0000 + 02706593 a 0101 | the freezing of a seriously ill or recently deceased person to stop tissues from decomposing; the body is preserved until new medical cures are developed that might bring the person back to life; "cryonics is more science fiction than serious science" -06070503 09 n 01 cytology 0 007 @ 06037666 n 0000 @ 06060049 n 0000 + 02709752 a 0102 + 02709752 a 0101 -c 04944710 n 0000 ~ 06070738 n 0000 -c 00407458 v 0000 | the branch of biology that studies the structure and function of cells -06070738 09 n 01 cytogenetics 0 003 @ 06070503 n 0000 @ 06075527 n 0000 + 02709441 a 0102 | the branch of biology that studies the cellular aspects of heredity (especially the chromosomes) -06070929 09 n 03 ecology 0 bionomics 0 environmental_science 0 018 @ 06037666 n 0000 + 02906478 a 0204 + 02906478 a 0203 + 02906478 a 0102 + 02906478 a 0101 + 10043163 n 0101 -c 01106614 a 0000 -c 01106815 a 0000 -c 02716247 a 0101 ~ 06082709 n 0000 -c 07941729 n 0000 -c 07990377 n 0000 -c 11455901 n 0000 -c 11456083 n 0000 -c 11456273 n 0000 -c 13476267 n 0000 -c 13562862 n 0000 -c 13924336 n 0000 | the branch of biology concerned with the relations between organisms and their environment -06071426 09 n 01 embryology 0 009 @ 06037666 n 0000 + 01490257 a 0101 + 01490257 a 0102 -c 01463519 n 0000 -c 02155678 n 0000 ~ 06079439 n 0000 -c 13449156 n 0000 -c 13496286 n 0000 -c 13549105 n 0000 | the branch of biology that studies the formation and early development of living organisms -06071722 09 n 03 exobiology 0 space_biology 0 astrobiology 0 001 @ 06037666 n 0000 | the branch of biology concerned with the effects of outer space on living organisms and the search for extraterrestrial life -06071934 09 n 01 forestry 0 005 @ 06037666 n 0000 + 01567888 v 0102 ~ 04507891 n 0000 ~ 06072145 n 0000 -c 13111700 n 0000 | the science of planting and caring for forests and the management of growing timber -06072145 09 n 01 silviculture 0 001 @ 06071934 n 0000 | the branch of forestry dealing with the development and care of forests -06072275 09 n 02 entomology 0 bugology 0 006 @ 06083243 n 0000 + 03063868 a 0102 + 03063868 a 0101 + 10059904 n 0101 ~ 06072476 n 0000 -c 07995617 n 0000 | the branch of zoology that studies insects -06072476 09 n 02 lepidopterology 0 lepidoptery 0 002 @ 06072275 n 0000 + 10254761 n 0201 | the branch of entomology dealing with Lepidoptera -06072619 09 n 01 ethology 0 002 @ 06083243 n 0000 + 10065911 n 0101 | the branch of zoology that studies the behavior of animals in their natural habitats -06072776 09 n 01 herpetology 0 002 @ 06083243 n 0000 + 10172668 n 0101 | the branch of zoology concerned with reptiles and amphibians -06072912 09 n 01 ichthyology 0 004 @ 06083243 n 0000 + 10196617 n 0101 -c 02590709 a 0000 -c 02590891 a 0000 | the branch of zoology that studies fishes -06073067 09 n 01 malacology 0 002 @ 06083243 n 0000 ~ 01015689 n 0000 | the branch of zoology that studies the structure and behavior of mollusks -06073215 09 n 01 mammalogy 0 002 @ 06083243 n 0000 ~ 06073647 n 0000 | the branch of zoology that studies mammals -06073331 09 n 01 oology 0 001 @ 06083243 n 0000 | the branch of zoology that studies eggs (especially birds' eggs and their size, shape, coloration, and number) -06073494 09 n 01 ornithology 0 004 @ 06083243 n 0000 + 03094928 a 0101 + 10384214 n 0101 -c 01502262 n 0000 | the branch of zoology that studies birds -06073647 09 n 01 primatology 0 001 @ 06073215 n 0000 | the branch of zoology that studies primates -06073748 09 n 01 protozoology 0 003 @ 06083243 n 0000 + 02891733 a 0101 + 10486236 n 0101 | the branch of zoology that studies protozoans -06073888 09 n 03 paleontology 0 palaeontology 0 fossilology 0 009 @ 06115476 n 0000 + 02772654 a 0202 + 10394786 n 0202 + 02772654 a 0101 + 10394786 n 0101 -c 05547149 n 0000 ~ 06078724 n 0000 ~ 06145062 n 0000 ~ 06192789 n 0000 | the earth science that studies fossil organisms and related remains -06074189 09 n 04 paleoanthropology 0 palaeoanthropology 0 human_paleontology 0 human_palaeontology 0 002 @ 06192789 n 0000 + 02907330 a 0101 | the scientific study of human fossils -06074372 09 n 02 paleobotany 0 palaeobotany 0 003 @ 06078724 n 0000 @ 06066555 n 0000 ~ 06074728 n 0000 | the study of fossil plants -06074507 09 n 02 phycology 0 algology 0 001 @ 06066555 n 0000 | the branch of botany that studies algae -06074613 09 n 01 pteridology 0 002 @ 06066555 n 0000 + 02763308 a 0101 | the branch of botany that studies ferns -06074728 09 n 02 paleodendrology 0 palaeodendrology 0 001 @ 06074372 n 0000 | the branch of paleobotany that studies fossil trees -06074860 09 n 02 paleozoology 0 palaeozoology 0 004 @ 06078724 n 0000 @ 06083243 n 0000 ~ 06075016 n 0000 ~ 06075112 n 0000 | the study of fossil animals -06075016 09 n 01 paleomammalogy 0 001 @ 06074860 n 0000 | the paleobiology of ancient mammals -06075112 09 n 02 paleornithology 0 palaeornithology 0 001 @ 06074860 n 0000 | the paleobiology of birds -06075218 09 n 01 functional_genomics 0 001 @ 06077087 n 0000 | the branch of genomics that determines the biological function of the genes and their products -06075378 09 n 01 structural_genomics 0 001 @ 06077087 n 0000 | the branch of genomics that determines the three-dimensional structures of proteins -06075527 09 n 02 genetics 0 genetic_science 0 076 @ 06037666 n 0000 + 02734192 a 0101 + 02734192 a 0102 + 10126424 n 0101 -c 00793793 a 0000 -c 00793988 a 0000 -c 01147433 a 0000 -c 01147622 a 0000 -c 01147836 a 0000 -c 01148086 a 0000 -c 01200705 a 0000 -c 01200915 a 0000 -c 01314863 a 0000 -c 01315025 a 0000 -c 01546593 a 0000 -c 01546826 a 0000 -c 01547007 a 0000 -c 02884085 a 0000 -c 02884275 a 0000 -c 00399030 n 0000 -c 00850425 n 0000 -c 01024643 n 0000 -c 01314145 n 0000 -c 01319932 n 0000 -c 01320093 n 0000 -c 01320314 n 0000 -c 01320479 n 0000 -c 01320692 n 0000 -c 01327322 n 0000 -c 01372038 n 0000 -c 01372199 n 0000 -c 04616916 n 0000 -c 04617106 n 0000 -c 04922338 n 0000 -c 04922597 n 0000 -c 04923024 n 0000 -c 05431926 n 0000 -c 05432230 n 0000 -c 05432420 n 0000 -c 05436752 n 0000 -c 05437785 n 0000 -c 05439582 n 0000 -c 05442789 n 0000 -c 05442916 n 0000 -c 05443050 n 0000 -c 05443211 n 0000 -c 05443333 n 0000 -c 05443651 n 0000 -c 05884433 n 0000 ~ 06070738 n 0000 ~ 06077087 n 0000 ~ 06077276 n 0000 ~ 06077916 n 0000 ~ 06079247 n 0000 -c 07374152 n 0000 -c 07425011 n 0000 -c 07425577 n 0000 -c 07425726 n 0000 -c 07425903 n 0000 -c 07426241 n 0000 -c 07426406 n 0000 -c 07426573 n 0000 -c 07426732 n 0000 -c 11413800 n 0000 -c 11416534 n 0000 -c 11493266 n 0000 -c 11493452 n 0000 -c 13478205 n 0000 -c 13512725 n 0000 -c 13549916 n 0000 -c 13554121 n 0000 -c 13568238 n 0000 -c 13568796 n 0000 -c 13568983 n 0000 -c 13569464 n 0000 -c 00919608 v 0000 | the branch of biology that studies heredity and variation in organisms -06077087 09 n 01 genomics 0 003 @ 06075527 n 0000 ~ 06075218 n 0000 ~ 06075378 n 0000 | the branch of genetics that studies organisms in terms of their genomes (their full DNA sequences) -06077276 09 n 01 proteomics 0 001 @ 06075527 n 0000 | the branch of genetics that studies the full set of proteins encoded by a genome -06077413 09 n 01 histology 0 006 @ 06060049 n 0000 + 03072365 a 0102 + 03072365 a 0101 + 10170359 n 0101 -c 00275572 n 0000 -c 00276342 n 0000 | the branch of biology that studies the microscopic structure of animal or plant tissues -06077648 09 n 01 microbiology 0 008 @ 06037666 n 0000 + 10313580 n 0101 -c 00985608 a 0000 -c 00985909 a 0000 -c 01348530 n 0000 -c 07996010 n 0000 -c 09398935 n 0000 -c 09399198 n 0000 | the branch of biology that studies microorganisms and their effects on humans -06077916 09 n 01 molecular_genetics 0 001 @ 06075527 n 0000 | the branch of genetics concerned with the structure and activity of genetic material at the molecular level -06078088 09 n 01 molecular_biology 0 003 @ 06037666 n 0000 -c 05436752 n 0000 ~ 06126761 n 0000 | the branch of biology that studies the structure and activity of macromolecules essential to life (and especially with their genetic role) -06078327 09 n 01 morphology 0 004 @ 06037666 n 0000 + 02949275 a 0101 + 02949275 a 0102 ~ 06057539 n 0000 | the branch of biology that deals with the structure of animals and plants -06078511 09 n 01 neurobiology 0 004 @ 06037666 n 0000 + 02666294 a 0101 + 10353928 n 0101 ~ 06081833 n 0000 | the branch of biology that deals with the anatomy and physiology and pathology of the nervous system -06078724 09 n 02 paleobiology 0 palaeobiology 0 004 @ 06073888 n 0000 @ 06037666 n 0000 ~ 06074372 n 0000 ~ 06074860 n 0000 | a branch of paleontology that deals with the origin and growth and structure of fossil animals and plants as living organisms -06078978 09 n 01 neurology 1 009 @ 06045562 n 0000 + 02917893 a 0102 + 02917893 a 0101 + 10354265 n 0101 -c 02646215 a 0000 -c 02822055 a 0000 -c 05992015 n 0000 -c 06052864 n 0000 -c 15227391 n 0000 | the branch of medical science that deals with the nervous system -06079247 09 n 01 pharmacogenetics 0 001 @ 06075527 n 0000 | the branch of genetics that studies the genetically determined variations in responses to drugs in humans or laboratory organisms -06079439 09 n 01 teratology 0 001 @ 06071426 n 0000 | the branch of biology concerned with the development of malformations or serious deviations from the normal type of organism -06079620 09 n 01 biochemistry 0 021 @ 06088995 n 0000 + 02664932 a 0101 + 09854915 n 0101 -c 00291848 a 0000 -c 00292024 a 0000 -c 01074252 n 0000 -c 02684789 n 0000 -c 04173511 n 0000 ~ 06080192 n 0000 ~ 06080361 n 0000 -c 13509528 n 0000 -c 14583066 n 0000 -c 14673462 n 0000 -c 14706889 n 0000 -c 14707101 n 0000 -c 14830364 n 0000 -c 14832193 n 0000 -c 14964129 n 0000 -c 15025571 n 0000 -c 15082890 n 0000 -c 00556389 v 0000 | the organic chemistry of compounds and processes occurring in organisms; the effort to understand biology within the context of chemistry -06080192 09 n 01 enzymology 0 002 @ 06079620 n 0000 + 10061195 n 0101 | the branch of biochemistry dealing with the chemical nature and biological activity of enzymes -06080361 09 n 02 zymology 0 zymurgy 0 001 @ 06079620 n 0000 | the branch of chemistry concerned with fermentation (as in making wine or brewing or distilling) -06080522 09 n 01 physiology 0 051 @ 06037666 n 0000 + 01779558 a 0101 + 10429965 n 0101 -c 00002956 a 0000 -c 00003131 a 0000 -c 00333351 a 0000 -c 00333987 a 0000 -c 00355782 a 0000 -c 00355950 a 0000 -c 00947012 a 0000 -c 01151592 a 0000 -c 01596674 a 0000 -c 02104277 a 0000 -c 02406790 a 0000 -c 02509854 a 0000 -c 02522267 a 0000 -c 02522417 a 0000 -c 02522669 a 0000 -c 02522938 a 0000 -c 02523092 a 0000 -c 02650672 a 0000 -c 02784558 a 0000 -c 02816888 a 0000 -c 03008013 a 0000 -c 03096635 a 0000 -c 00193225 n 0000 -c 00193406 n 0000 -c 00333037 n 0000 -c 00333203 n 0000 -c 00369802 n 0000 -c 00830448 n 0000 -c 05293040 n 0000 -c 05604535 n 0000 -c 05652926 n 0000 -c 05992274 n 0000 ~ 06081602 n 0000 ~ 06082310 n 0000 ~ 06082459 n 0000 ~ 06082610 n 0000 -c 07332550 n 0000 -c 11486178 n 0000 -c 13425980 n 0000 -c 13436503 n 0000 -c 13500214 n 0000 -c 13523661 n 0000 -c 13549488 n 0000 -c 13561719 n 0000 -c 13563139 n 0000 -c 14003167 n 0000 -c 00503569 v 0000 -c 00503715 v 0000 | the branch of the biological sciences dealing with the functioning of organisms -06081602 09 n 01 neurophysiology 0 006 @ 06081833 n 0000 @ 06080522 n 0000 + 02908887 a 0101 -c 05874017 n 0000 -c 11431302 n 0000 -c 11454042 n 0000 | the branch of neuroscience that studies the physiology of the nervous system -06081833 09 n 01 neuroscience 0 006 @ 06078511 n 0000 + 10354580 n 0101 -c 02655431 a 0000 ~ 06081602 n 0000 ~ 06082025 n 0000 ~ 06082136 n 0000 | the scientific study of the nervous system -06082025 09 n 01 brain_science 0 001 @ 06081833 n 0000 | the branch of neuroscience concerned with the brain -06082136 09 n 01 cognitive_neuroscience 0 002 @ 06081833 n 0000 #p 06142861 n 0000 | the branch of neuroscience that studies the biological foundations of mental phenomena -06082310 09 n 01 hemodynamics 0 001 @ 06080522 n 0000 | the branch of physiology that studies the circulation of the blood and the forces involved -06082459 09 n 01 kinesiology 0 001 @ 06080522 n 0000 | the branch of physiology that studies the mechanics and anatomy in relation to human movement -06082610 09 n 01 myology 0 001 @ 06080522 n 0000 | the branch of physiology that studies muscles -06082709 09 n 02 paleoecology 0 palaeoecology 0 001 @ 06070929 n 0000 | the branch of ecology that studies ancient ecology -06082834 09 n 01 radiobiology 0 001 @ 06037666 n 0000 | the branch of biology that studies the effects of radiation on living organisms -06082972 09 n 01 sociobiology 0 004 @ 06037666 n 0000 + 02666132 a 0101 + 02666132 a 0102 + 10620437 n 0101 | the branch of biology that conducts comparative studies of the social organization of animals (including human beings) with regard to its evolutionary history -06083243 09 n 02 zoology 0 zoological_science 0 060 @ 06037666 n 0000 + 02891564 a 0101 + 10806222 n 0101 -c 00146501 a 0000 -c 00147160 a 0000 -c 00153545 a 0000 -c 00153789 a 0000 -c 00160144 a 0000 -c 00319534 a 0000 -c 00320847 a 0000 -c 01031503 a 0000 -c 01508444 a 0000 -c 01508592 a 0000 -c 02177397 a 0000 -c 02478589 a 0000 -c 02481457 a 0000 -c 02481951 a 0000 -c 02483692 a 0000 -c 02483908 a 0000 -c 02510062 a 0000 -c 02510273 a 0000 -c 02519029 a 0000 -c 02519171 a 0000 -c 02519399 a 0000 -c 02532508 a 0000 -c 02532898 a 0000 -c 02615079 a 0000 -c 02616202 a 0000 -c 02623880 a 0000 -c 02625975 a 0000 -c 02628073 a 0000 -c 02631238 a 0000 -c 02636811 a 0000 -c 02637380 a 0000 -c 02642634 a 0000 -c 02643673 a 0000 -c 02653924 a 0000 -c 02677703 a 0000 -c 02679063 a 0000 -c 02728683 a 0000 -c 01468913 n 0000 -c 01748100 n 0000 -c 01904029 n 0000 -c 04680752 n 0000 -c 04978792 n 0000 -c 05244045 n 0000 -c 05304341 n 0000 -c 05421414 n 0000 ~ 06072275 n 0000 ~ 06072619 n 0000 ~ 06072776 n 0000 ~ 06072912 n 0000 ~ 06073067 n 0000 ~ 06073215 n 0000 ~ 06073331 n 0000 ~ 06073494 n 0000 ~ 06073748 n 0000 ~ 06074860 n 0000 -c 10346514 n 0000 -c 14014162 n 0000 | the branch of biology that studies animals -06084469 09 n 02 chemistry 0 chemical_science 0 229 @ 06000400 n 0000 + 02692624 a 0102 + 10421470 n 0103 + 09913824 n 0101 + 02692966 a 0101 + 02692624 a 0101 -c 00025238 a 0000 -c 00025470 a 0000 -c 00025728 a 0000 -c 00026168 a 0000 -c 00026515 a 0000 -c 00346626 a 0000 -c 00491749 a 0000 -c 00491971 a 0000 -c 00492332 a 0000 -c 00492477 a 0000 -c 00651935 a 0000 -c 00652533 a 0000 -c 00676555 a 0000 -c 00677313 a 0000 -c 00757236 a 0000 -c 00757408 a 0000 -c 01058363 a 0000 -c 01058854 a 0000 -c 01059058 a 0000 -c 01059252 a 0000 -c 01191227 a 0000 -c 01191448 a 0000 -c 01231917 a 0000 -c 01232105 a 0000 -c 01502507 a 0000 -c 01546222 a 0000 -c 01546349 a 0000 -c 01573568 a 0000 -c 01657562 a 0000 -c 01679055 a 0000 -c 01679244 a 0000 -c 01908341 a 0000 -c 01928608 a 0000 -c 01929600 a 0000 -c 01929802 a 0000 -c 01930004 a 0000 -c 02026785 a 0000 -c 02351490 a 0000 -c 02519555 a 0000 -c 02555387 a 0000 -c 02555550 a 0000 -c 02612184 a 0000 -c 02613965 a 0000 -c 02641378 a 0000 -c 02655723 a 0000 -c 02662142 a 0000 -c 02672886 a 0000 -c 02679202 a 0000 -c 02679352 a 0000 -c 02679468 a 0000 -c 02679653 a 0000 -c 02763520 a 0000 -c 02822601 a 0000 -c 02855503 a 0000 -c 02871060 a 0000 -c 03049071 a 0000 -c 03098390 a 0000 -c 03124290 a 0000 -c 03126399 a 0000 -c 00125763 r 0000 -c 04944513 n 0000 -c 05025935 n 0000 -c 05026312 n 0000 -c 05034473 n 0000 -c 05039106 n 0000 -c 05876469 n 0000 -c 05876912 n 0000 -c 05877412 n 0000 -c 05878771 n 0000 -c 05880854 n 0000 -c 05881578 n 0000 -c 05882226 n 0000 -c 05882537 n 0000 -c 05887156 n 0000 ~ 06051925 n 0000 ~ 06088995 n 0000 -c 06088995 n 0000 ~ 06089314 n 0000 ~ 06089447 n 0000 ~ 06089857 n 0000 ~ 06090064 n 0000 ~ 06090304 n 0000 ~ 06090397 n 0000 ~ 06090540 n 0000 ~ 06090678 n 0000 -c 06102476 n 0000 -c 06108850 n 0000 -c 06109487 n 0000 ~ 06110823 n 0000 -c 07312829 n 0000 -c 07337935 n 0000 -c 07360293 n 0000 -c 08267446 n 0000 -c 09240621 n 0000 -c 09246883 n 0000 -c 09343266 n 0000 -c 09913824 n 0000 -c 11409059 n 0000 -c 11492833 n 0000 -c 11493083 n 0000 -c 13423922 n 0000 -c 13435152 n 0000 -c 13446390 n 0000 -c 13447361 n 0000 -c 13458268 n 0000 -c 13467224 n 0000 -c 13467700 n 0000 -c 13472125 n 0000 -c 13496017 n 0000 -c 13528100 n 0000 -c 13528441 n 0000 -c 13547199 n 0000 -c 13581598 n 0000 -c 13589681 n 0000 -c 13820000 n 0000 -c 13825840 n 0000 -c 13925340 n 0000 -c 14479615 n 0000 -c 14531203 n 0000 -c 14570330 n 0000 -c 14583843 n 0000 -c 14586258 n 0000 -c 14619225 n 0000 -c 14621080 n 0000 -c 14621446 n 0000 -c 14622141 n 0000 -c 14625110 n 0000 -c 14674584 n 0000 -c 14682133 n 0000 -c 14723628 n 0000 -c 14724025 n 0000 -c 14725024 n 0000 -c 14785941 n 0000 -c 14818238 n 0000 -c 14860455 n 0000 -c 14871968 n 0000 -c 14917208 n 0000 -c 00114837 v 0000 -c 00116888 v 0000 -c 00134737 v 0000 -c 00134898 v 0000 -c 00136800 v 0000 -c 00139586 v 0000 -c 00148763 v 0000 -c 00148967 v 0000 -c 00180837 v 0000 -c 00183879 v 0000 -c 00184633 v 0000 -c 00184907 v 0000 -c 00185103 v 0000 -c 00194696 v 0000 -c 00209174 v 0000 -c 00209598 v 0000 -c 00216801 v 0000 -c 00226379 v 0000 -c 00228858 v 0000 -c 00229026 v 0000 -c 00229280 v 0000 -c 00237877 v 0000 -c 00238372 v 0000 -c 00238542 v 0000 -c 00238720 v 0000 -c 00238867 v 0000 -c 00264875 v 0000 -c 00265094 v 0000 -c 00265941 v 0000 -c 00266081 v 0000 -c 00266197 v 0000 -c 00266391 v 0000 -c 00266586 v 0000 -c 00267519 v 0000 -c 00330909 v 0000 -c 00366741 v 0000 -c 00372251 v 0000 -c 00373520 v 0000 -c 00382493 v 0000 -c 00396513 v 0000 -c 00396703 v 0000 -c 00396880 v 0000 -c 00446514 v 0000 -c 00446695 v 0000 -c 00446885 v 0000 -c 00447158 v 0000 -c 00456357 v 0000 -c 00475183 v 0000 -c 00496770 v 0000 -c 00496956 v 0000 -c 00497219 v 0000 -c 00497391 v 0000 -c 00498836 v 0000 -c 00501534 v 0000 -c 00501718 v 0000 -c 00502332 v 0000 -c 00505349 v 0000 -c 00506225 v 0000 -c 00506377 v 0000 -c 00524083 v 0000 -c 00524299 v 0000 -c 00526081 v 0000 -c 00538571 v 0000 -c 00538852 v 0000 -c 00552253 v 0000 -c 00567291 v 0000 -c 00567484 v 0000 -c 00570003 v 0000 -c 00570205 v 0000 -c 00574514 v 0000 -c 00574996 v 0000 -c 00575169 v 0000 -c 00579367 v 0000 -c 00580142 v 0000 -c 01459542 v 0000 -c 01459696 v 0000 -c 01461885 v 0000 -c 01539633 v 0000 -c 01540232 v 0000 -c 01540449 v 0000 -c 01599435 v 0000 -c 01633173 v 0000 -c 01757994 v 0000 -c 01987781 v 0000 -c 01987936 v 0000 -c 02451679 v 0000 | the science of matter; the branch of the natural sciences dealing with the composition of substances and their properties and reactions -06088995 09 n 01 organic_chemistry 0 005 @ 06084469 n 0000 ;c 06084469 n 0000 ;c 00004475 n 0000 ~ 06079620 n 0000 ~ 06089728 n 0000 | the chemistry of compounds containing carbon (originally defined as the chemistry of substances produced by living organisms but now extended to substances synthesized artificially) -06089314 09 n 01 inorganic_chemistry 0 001 @ 06084469 n 0000 | the chemistry of compounds that do not contain hydrocarbon radicals -06089447 09 n 01 physical_chemistry 0 008 @ 06084469 n 0000 -c 03578435 n 0000 -c 11496881 n 0000 -c 14480065 n 0000 -c 14481511 n 0000 -c 14981183 n 0000 -c 00266798 v 0000 -c 00267041 v 0000 | the branch of chemistry dealing with the physical properties of chemical substances -06089728 09 n 01 phytochemistry 0 001 @ 06088995 n 0000 | the branch of organic chemistry dealing with the chemistry of plants -06089857 09 n 01 electrochemistry 0 002 @ 06084469 n 0000 + 02717784 a 0101 | branch of chemistry that deals with the chemical action of electricity and the production of electricity by chemical reactions -06090064 09 n 01 femtochemistry 0 001 @ 06084469 n 0000 | the branch of chemistry that studies elementary (often very fast) chemical reactions as they occur; the experimental methods are often based on the use of femtosecond laser pulses -06090304 09 n 01 geochemistry 0 001 @ 06084469 n 0000 | the chemistry of the earth's crust -06090397 09 n 01 photochemistry 0 002 @ 06084469 n 0000 + 02692815 a 0101 | branch of chemistry that deals with the chemical action of light -06090540 09 n 02 radiochemistry 0 nuclear_chemistry 0 002 @ 06084469 n 0000 + 10364502 n 0102 | the chemistry of radioactive substances -06090678 09 n 01 surface_chemistry 0 001 @ 06084469 n 0000 | the branch of chemistry that studies processes occurring at interfaces between phases (especially those between liquid and gas) -06090869 09 n 02 physics 0 natural_philosophy 0 189 @ 06000400 n 0000 + 02779774 a 0101 + 10428004 n 0101 -c 00169955 a 0000 -c 00170156 a 0000 -c 00328528 a 0101 -c 00328653 a 0101 -c 00346626 a 0000 -c 00358951 a 0000 -c 00509377 a 0000 -c 00509735 a 0000 -c 00651935 a 0000 -c 00652533 a 0000 -c 00744017 a 0000 -c 00744141 a 0000 -c 00845406 a 0000 -c 01016874 a 0000 -c 01017048 a 0000 -c 01058363 a 0000 -c 01058854 a 0000 -c 01360962 a 0000 -c 01361264 a 0000 -c 01928608 a 0000 -c 01928926 a 0000 -c 01929600 a 0000 -c 02414323 a 0000 -c 02691237 a 0101 -c 02835887 a 0000 -c 02848227 a 0000 -c 02862444 a 0000 -c 02865963 a 0000 -c 02976983 a 0000 -c 02979878 a 0000 -c 02979995 a 0000 -c 02980122 a 0000 -c 02980247 a 0000 -c 02995161 a 0000 -c 00125763 r 0000 -c 00029114 n 0000 -c 03095965 n 0000 -c 03524425 n 0000 -c 03705379 n 0000 -c 03745712 n 0000 -c 03834040 n 0000 -c 04739262 n 0000 -c 04917439 n 0000 -c 04920568 n 0000 -c 05010062 n 0000 -c 05019499 n 0000 -c 05024931 n 0000 -c 05025129 n 0000 -c 05025520 n 0000 -c 05025693 n 0000 -c 05026171 n 0000 -c 05089199 n 0000 -c 05089367 n 0000 -c 05855517 n 0000 -c 05866199 n 0000 -c 05875723 n 0000 -c 05876469 n 0000 -c 05877178 n 0000 -c 05877991 n 0000 -c 05878229 n 0000 -c 05879003 n 0000 -c 05880432 n 0000 -c 05881867 n 0000 -c 05882793 n 0000 -c 05885187 n 0000 -c 05887365 n 0000 -c 05887712 n 0000 -c 05990089 n 0000 -c 05990480 n 0000 -c 05990981 n 0000 -c 05994484 n 0000 ~ 06095022 n 0000 ~ 06096913 n 0000 ~ 06097478 n 0000 ~ 06098687 n 0000 ~ 06098876 n 0000 ~ 06099107 n 0000 ~ 06099269 n 0000 ~ 06100101 n 0000 ~ 06100236 n 0000 ~ 06100555 n 0000 ~ 06100778 n 0000 ~ 06101551 n 0000 ~ 06101849 n 0000 ~ 06101973 n 0000 ~ 06102316 n 0000 -c 06103422 n 0000 -c 06104073 n 0000 -c 06105314 n 0000 -c 06105873 n 0000 -c 06106084 n 0000 -c 06106305 n 0000 -c 06106502 n 0000 -c 06107436 n 0000 -c 06107660 n 0000 ~ 06111479 n 0000 ~ 06111728 n 0000 ~ 06114578 n 0000 -c 06246361 n 0000 -c 06246529 n 0000 -c 07302542 n 0000 -c 07344875 n 0000 -c 07345166 n 0000 -c 07345593 n 0000 -c 07346344 n 0000 -c 07347468 n 0000 -c 07359377 n 0000 -c 07374357 n 0000 -c 07416441 n 0000 -c 07444882 n 0000 -c 08498580 n 0000 -c 08498732 n 0000 -c 08522287 n 0000 -c 08681966 n 0000 -c 09257563 n 0000 -c 09272085 n 0000 -c 09401834 n 0000 -c 09476717 n 0000 -c 10428004 n 0000 -c 11413263 n 0000 -c 11414874 n 0000 -c 11426288 n 0000 -c 11436585 n 0000 -c 11440123 n 0000 -c 11452218 n 0000 -c 11453016 n 0000 -c 11453420 n 0000 -c 11458624 n 0000 -c 11464143 n 0000 -c 11468763 n 0000 -c 11469108 n 0000 -c 11469265 n 0000 -c 11473954 n 0000 -c 11478171 n 0000 -c 11483580 n 0000 -c 11504750 n 0000 -c 11506349 n 0000 -c 11506738 n 0000 -c 11514805 n 0000 -c 11515051 n 0000 -c 11515325 n 0000 -c 11516113 n 0000 -c 11516819 n 0000 -c 11517210 n 0000 -c 13424183 n 0000 -c 13465530 n 0000 -c 13523208 n 0000 -c 13549311 n 0000 -c 13559509 n 0000 -c 13587763 n 0000 -c 13587963 n 0000 -c 13590079 n 0000 -c 13590327 n 0000 -c 13784906 n 0000 -c 13820239 n 0000 -c 13863020 n 0000 -c 13892897 n 0000 -c 13924196 n 0000 -c 14598079 n 0000 -c 14619225 n 0000 -c 14682133 n 0000 -c 15275851 n 0000 -c 15276171 n 0000 -c 00291624 v 0000 -c 00330751 v 0000 -c 00381850 v 0000 -c 00382256 v 0000 -c 00399074 v 0000 -c 00399368 v 0000 -c 00399788 v 0000 -c 00400101 v 0000 -c 00429763 v 0000 -c 00443984 v 0000 -c 00444309 v 0000 -c 00445169 v 0000 -c 00445467 v 0000 -c 00445711 v 0000 -c 00445940 v 0000 -c 00471576 v 0000 -c 00487554 v 0000 -c 00506040 v 0000 -c 00574341 v 0000 -c 00587124 v 0000 -c 00638194 v 0000 -c 01737417 v 0000 -c 02103925 v 0000 | the science of matter and energy and their interactions; "his favorite subject was physics" -06094587 09 n 02 physics 1 physical_science 0 002 @ 06000400 n 0000 ~ 06094774 n 0000 | the physical properties, phenomena, and laws of something; "he studied the physics of radiation" -06094774 09 n 01 acoustics 0 009 @ 06094587 n 0000 + 02868489 a 0101 + 02868489 a 0102 + 09763668 n 0101 -c 05100981 n 0000 ~ 06111253 n 0000 ~ 06177033 n 0000 -c 07347224 n 0000 -c 02136271 v 0000 | the study of the physical properties of sound -06095022 09 n 02 astronomy 0 uranology 0 069 @ 06090869 n 0000 + 09818343 n 0202 + 02646605 a 0101 + 02646605 a 0102 -c 00043411 a 0000 -c 00043615 a 0000 -c 00769926 a 0000 -c 00770114 a 0000 -c 02348482 a 0000 -c 02348678 a 0000 -c 03089377 a 0000 -c 04676540 n 0000 -c 05090979 n 0000 -c 05879204 n 0000 -c 05879441 n 0000 -c 05890642 n 0000 -c 05890809 n 0000 ~ 06096451 n 0000 ~ 06096600 n 0000 ~ 06096759 n 0000 ~ 06097594 n 0000 ~ 06097775 n 0000 ~ 06097983 n 0000 ~ 06098088 n 0000 -c 07311661 n 0000 -c 07322138 n 0000 -c 07322341 n 0000 -c 07415167 n 0000 -c 07415396 n 0000 -c 07415561 n 0000 -c 08270662 n 0000 -c 08271042 n 0000 -c 08495617 n 0000 -c 08498424 n 0000 -c 08520728 n 0000 -c 08520958 n 0000 -c 08521112 n 0000 -c 08523064 n 0000 -c 08548239 n 0000 -c 08592494 n 0000 -c 08618379 n 0000 -c 08622763 n 0000 -c 08632894 n 0000 -c 08633191 n 0000 -c 09208496 n 0000 -c 09232317 n 0000 -c 09251002 n 0000 -c 09251407 n 0000 -c 09353109 n 0000 -c 09375223 n 0000 -c 09381480 n 0000 -c 09394007 n 0000 -c 09398769 n 0000 -c 09444100 n 0000 -c 09818343 n 0000 -c 11415084 n 0000 -c 11513357 n 0000 -c 13425425 n 0000 -c 13507617 n 0000 -c 13523503 n 0000 -c 13861806 n 0000 -c 13888783 n 0000 -c 13889843 n 0000 -c 15156537 n 0000 -c 15156746 n 0000 -c 15296687 n 0000 -c 01970348 v 0000 -c 01970646 v 0000 -c 02133297 v 0000 | the branch of physics that studies celestial bodies and the universe as a whole -06096451 09 n 01 astrodynamics 0 001 @ 06095022 n 0000 | the branch of astronomy that studies the motion of natural and artificial bodies in space -06096600 09 n 01 astrometry 0 001 @ 06095022 n 0000 | the branch of astronomy that deals with the measurement of the position and motion of celestial bodies -06096759 09 n 01 radio_astronomy 0 001 @ 06095022 n 0000 | the branch of astronomy that detects and studies the radio waves emitted by celestial bodies -06096913 09 n 02 aeronautics 0 astronautics 0 011 @ 06090869 n 0000 + 02607298 a 0102 + 02607298 a 0101 -c 01026721 a 0000 -c 01026911 a 0000 -c 01027076 a 0000 ~ 06097231 n 0000 -c 13822569 n 0000 -c 14002915 n 0000 -c 01841947 v 0000 -c 01933766 v 0000 | the theory and practice of navigation through air or space -06097231 09 n 01 avionics 0 002 @ 06096913 n 0000 + 02654216 a 0101 | science and technology of electronic systems and devices for aeronautics and astronautics; "avionics has become even more important with the development of the space program" -06097478 09 n 01 biophysics 0 002 @ 06090869 n 0000 + 09856267 n 0101 | physics as applied to biological problems -06097594 09 n 01 celestial_mechanics 0 001 @ 06095022 n 0000 | the branch of astronomy concerned with the application of Newton's laws of motion to the motions of heavenly bodies -06097775 09 n 01 astrophysics 0 004 @ 06095022 n 0000 + 02907798 a 0101 + 09819291 n 0101 ~ 06098195 n 0000 | the branch of astronomy concerned with the physical and chemical properties of celestial bodies -06097983 09 n 01 selenology 0 001 @ 06095022 n 0000 | the branch of astronomy that deals with the moon -06098088 09 n 01 solar_physics 0 001 @ 06095022 n 0000 | the branch of astronomy that deals with the sun -06098195 09 n 03 cosmology 0 cosmogony 0 cosmogeny 0 018 @ 06097775 n 0000 + 02703438 a 0203 + 02703438 a 0204 + 02703438 a 0101 + 02703438 a 0102 + 09819667 n 0101 -c 05887911 n 0000 -c 05888215 n 0000 -c 05888377 n 0000 -c 05888572 n 0000 -c 07408796 n 0000 -c 07409255 n 0000 -c 09247071 n 0000 -c 09449282 n 0000 -c 11441077 n 0000 -c 13590598 n 0000 -c 14582025 n 0000 -c 14582220 n 0000 | the branch of astrophysics that studies the origin and evolution and structure of the universe -06098687 09 n 02 cryogenics 0 cryogeny 0 003 @ 06090869 n 0000 + 02706480 a 0101 -c 05013204 n 0000 | the branch of physics that studies the phenomena that occur at very low temperatures -06098876 09 n 01 crystallography 0 006 @ 06090869 n 0000 -c 00366025 a 0000 -c 00366185 a 0000 -c 00658022 a 0000 -c 02373467 a 0000 -c 02412732 a 0000 | the branch of science that studies the formation and structure of crystals -06099107 09 n 02 electromagnetism 0 electromagnetics 0 002 @ 06090869 n 0000 + 02926320 a 0101 | the branch of physics concerned with electromagnetic phenomena -06099269 09 n 01 electronics 0 036 @ 06090869 n 0000 + 02718719 a 0101 + 02718497 a 0101 -c 00110497 a 0000 -c 00110701 a 0000 -c 00240655 a 0000 -c 00241079 a 0000 -c 00523867 a 0000 -c 00882312 a 0000 -c 02261013 a 0000 -c 02740649 a 0000 -c 02798117 n 0000 -c 03093792 n 0000 -c 03669886 n 0000 -c 03820728 n 0000 -c 04471632 n 0000 -c 04917870 n 0000 -c 05011162 n 0000 -c 05020019 n 0000 -c 05730163 n 0000 ~ 06115004 n 0000 ~ 06115179 n 0000 ~ 06115322 n 0000 -c 06281295 n 0000 -c 06282209 n 0000 -c 07000716 n 0000 -c 07001065 n 0000 -c 07345441 n 0000 -c 07420991 n 0000 -c 07422244 n 0000 -c 08074691 n 0000 -c 13488844 n 0000 -c 13791910 n 0000 -c 15269996 n 0000 -c 00471423 v 0000 -c 00557022 v 0000 | the branch of physics that deals with the emission and effects of electrons and with the use of electronic devices -06100101 09 n 01 electrostatics 0 002 @ 06090869 n 0000 + 02719009 a 0101 | the branch of physics that deals with static electricity -06100236 09 n 01 mechanics 0 011 @ 06090869 n 0000 + 02890983 a 0101 ~ 06111335 n 0000 ~ 06113009 n 0000 ~ 06113170 n 0000 ~ 06113301 n 0000 ~ 06113597 n 0000 ~ 06113777 n 0000 ~ 06114351 n 0000 -c 11498461 n 0000 -c 15279480 n 0000 | the branch of physics concerned with the motion of bodies in a frame of reference -06100555 09 n 03 nuclear_physics 0 atomic_physics 0 nucleonics 0 004 @ 06090869 n 0000 -c 05092421 n 0000 %p 06103270 n 0000 -c 13614256 n 0000 | the branch of physics that studies the internal structure of atomic nuclei -06100778 09 n 01 optics 0 016 @ 06090869 n 0000 + 02861859 a 0101 -c 00330396 a 0000 -c 00634259 a 0000 -c 00634404 a 0000 -c 02045008 a 0000 -c 03745864 n 0000 ~ 06101180 n 0000 ~ 06101333 n 0000 -c 13938663 n 0000 -c 13938899 n 0000 -c 00465461 v 0000 -c 02111838 v 0000 -c 02136754 v 0000 -c 02193612 v 0000 -c 02661769 v 0000 | the branch of physics that studies the physical properties of light -06101180 09 n 01 catoptrics 0 003 @ 06100778 n 0000 + 02684557 a 0101 + 02684557 a 0102 | branch of optics dealing with formation of images by mirrors -06101333 09 n 01 holography 0 001 @ 06100778 n 0000 | the branch of optics that deals with the use of coherent light from a laser in order to make a hologram that can then be used to create a three-dimensional image -06101551 09 n 03 particle_physics 0 high-energy_physics 0 high_energy_physics 0 007 @ 06090869 n 0000 -c 05844282 n 0000 -c 05844433 n 0000 -c 05844545 n 0000 -c 05844663 n 0000 -c 05890963 n 0000 -c 05891232 n 0000 | the branch of physics that studies subatomic particles and their interactions -06101849 09 n 01 plasma_physics 0 001 @ 06090869 n 0000 | the branch of physics concerned with matter in its plasma phase -06101973 09 n 01 quantum_physics 0 003 @ 06090869 n 0000 ~ 06111961 n 0000 ~ 06112223 n 0000 | the branch of physics based on quantum theory -06102116 09 n 01 quasiparticle 0 001 @ 05855517 n 0000 | a quantum of energy (in a crystal lattice or other system) that has position and momentum and can in some respects be regarded as a particle -06102316 09 n 01 rheology 0 003 @ 06090869 n 0000 + 02980247 a 0101 + 02980247 a 0102 | the branch of physics that studies the deformation and flow of matter -06102476 09 n 04 atomism 0 atomic_theory 0 atomist_theory 0 atomistic_theory 0 005 @ 05989479 n 0000 ;c 06084469 n 0000 + 01680836 a 0102 + 01680836 a 0101 ! 06102865 n 0101 | (chemistry) any theory in which all matter is composed of tiny discrete finite indivisible indestructible particles; "the ancient Greek philosophers Democritus and Epicurus held atomic theories of the universe" -06102865 09 n 02 holism 0 holistic_theory 0 005 @ 05989479 n 0000 + 01680689 a 0101 ! 06102476 n 0101 -c 05994706 n 0000 -c 06141324 n 0000 | the theory that the parts of any whole cannot exist and cannot be understood except in their relation to the whole; "holism holds that the whole is greater than the sum of its parts"; "holistic theory has been applied to ecology and language and mental states" -06103270 09 n 01 atomic_theory 1 004 @ 05993844 n 0000 #p 06100555 n 0000 ~ 06103422 n 0000 ~ 06103746 n 0000 | a theory of the structure of the atom -06103422 09 n 01 Bohr_theory 0 002 @ 06103270 n 0000 ;c 06090869 n 0000 | (physics) a theory of atomic structure that combined Rutherford's model with the quantum theory; electrons orbiting a nucleus can only be in certain stationary energy states and light is emitted when electrons jump from one energy state to another -06103746 09 n 01 Rutherford_atom 0 001 @ 06103270 n 0000 | first modern concept of atomic structure; all of the positive charge and most of the mass of the atom are contained in a compact nucleus; a number of electrons (equal to the atomic number) occupy the rest of the volume of the atom and neutralize the positive charge -06104073 09 n 01 conservation 0 008 @ 05872477 n 0000 ;c 06090869 n 0000 + 02682567 v 0101 ~ 06104372 n 0000 ~ 06104578 n 0000 ~ 06104844 n 0000 ~ 06105107 n 0000 ~ 06105314 n 0000 | (physics) the maintenance of a certain quantities unchanged during chemical reactions or physical transformations -06104372 09 n 02 conservation_of_charge 0 conservation_of_electricity 0 001 @ 06104073 n 0000 | the principle that the total electric charge of a system remains constant despite changes inside the system -06104578 09 n 03 conservation_of_energy 0 law_of_conservation_of_energy 0 first_law_of_thermodynamics 0 002 @ 06104073 n 0000 @ 05882793 n 0000 | the fundamental principle of physics that the total energy of an isolated system is constant despite internal changes -06104844 09 n 04 conservation_of_mass 0 conservation_of_matter 0 law_of_conservation_of_mass 0 law_of_conservation_of_matter 0 001 @ 06104073 n 0000 | a fundamental principle of classical physics that matter cannot be created or destroyed in an isolated system -06105107 09 n 01 conservation_of_momentum 0 001 @ 06104073 n 0000 | the principle that the total linear momentum in a closed system is constant and is not affected by processes occurring inside the system -06105314 09 n 04 parity 0 conservation_of_parity 0 space-reflection_symmetry 0 mirror_symmetry 0 002 @ 06104073 n 0000 ;c 06090869 n 0000 | (physics) parity is conserved in a universe in which the laws of physics are the same in a right-handed system of coordinates as in a left-handed system -06105609 09 n 02 cell_theory 0 cell_doctrine 0 002 @ 05993844 n 0000 ;c 06037666 n 0000 | (biology) the theory that cells form the fundamental structural and functional units of all living organisms; proposed in 1838 by Matthias Schleiden and by Theodor Schwann -06105873 09 n 03 wave_theory 0 undulatory_theory 0 wave_theory_of_light 0 004 @ 05993844 n 0000 ;c 06090869 n 0000 ! 06106084 n 0302 ! 06106084 n 0101 | (physics) the theory that light is transmitted as waves -06106084 09 n 02 corpuscular_theory 0 corpuscular_theory_of_light 0 004 @ 05993844 n 0000 ;c 06090869 n 0000 ! 06105873 n 0203 ! 06105873 n 0101 | (physics) the theory that light is transmitted as a stream of particles -06106305 09 n 02 kinetic_theory 0 kinetic_theory_of_gases 0 003 @ 05993844 n 0000 ;c 06090869 n 0000 ~ 06108339 n 0000 | (physics) a theory that gases consist of small particles in random motion -06106502 09 n 04 relativity 0 theory_of_relativity 0 relativity_theory 0 Einstein's_theory_of_relativity 0 006 @ 05993844 n 0000 ;c 06090869 n 0000 + 02835887 a 0101 ~ 06106820 n 0000 ~ 06107083 n 0000 -c 11453860 n 0000 | (physics) the theory that space and time are relative concepts rather than absolute concepts -06106820 09 n 04 general_relativity 0 general_theory_of_relativity 0 general_relativity_theory 0 Einstein's_general_theory_of_relativity 0 001 @ 06106502 n 0000 | a generalization of special relativity to include gravity (based on the principle of equivalence) -06107083 09 n 04 special_relativity 0 special_theory_of_relativity 0 special_relativity_theory 0 Einstein's_special_theory_of_relativity 0 001 @ 06106502 n 0000 | a physical theory of relativity based on the assumption that the speed of light in a vacuum is a constant and the assumption that the laws of physics are invariant in all inertial systems -06107436 09 n 01 supersymmetry 0 002 @ 05993844 n 0000 ;c 06090869 n 0000 | (physics) a theory that tries to link the four fundamental forces; "according to supersymmetry each force emerged separately during the big bang" -06107660 09 n 01 quantum_theory 0 003 @ 05993844 n 0000 ;c 06090869 n 0000 -c 06108079 n 0000 | (physics) a physical theory that certain properties occur only in discrete amounts (quanta) -06107850 09 n 01 wave_mechanics 0 001 @ 06111961 n 0000 | the modern form of quantum theory; an extension of quantum mechanics based on Schrodinger's equation; atomic events are explained as interactions between particle waves -06108079 09 n 02 uncertainty_principle 0 indeterminacy_principle 0 002 @ 05993844 n 0000 ;c 06107660 n 0000 | (quantum theory) the theory that it is impossible to measure both energy and time (or position and momentum) completely accurately at the same time -06108339 09 n 01 kinetic_theory_of_heat 0 001 @ 06106305 n 0000 | a theory that the temperature of a body increases when kinetic energy increases -06108487 09 n 01 germ_theory 0 002 @ 05993844 n 0000 ;c 06043075 n 0000 | (medicine) the theory that all contagious diseases are caused by microorganisms -06108643 09 n 01 information_theory 0 003 @ 05993844 n 0000 ;c 06018465 n 0000 ;c 06128570 n 0000 | (computer science) a statistical theory dealing with the limits and efficiency of information processing -06108850 09 n 03 theory_of_dissociation 0 theory_of_electrolytic_dissociation 0 Arrhenius_theory_of_dissociation 0 002 @ 05993844 n 0000 ;c 06084469 n 0000 | (chemistry) theory that describes aqueous solutions in terms of acids (which dissociate to give hydrogen ions) and bases (which dissociate to give hydroxyl ions); the product of an acid and a base is a salt and water -06109227 09 n 03 theory_of_evolution 0 theory_of_organic_evolution 0 evolutionism 0 005 @ 05993844 n 0000 ;c 06037666 n 0000 ~ 06110091 n 0000 ~ 06110426 n 0000 ~ 06111003 n 0000 | (biology) a scientific theory of the origin of species of plants and animals -06109487 09 n 02 theory_of_indicators 0 Ostwald's_theory_of_indicators 0 002 @ 05993844 n 0000 ;c 06084469 n 0000 | (chemistry) the theory that all indicators are either weak acids or weak bases in which the color of the ionized form is different from the color before dissociation -06109771 09 n 01 theory_of_inheritance 0 003 @ 05993844 n 0000 ;c 06037666 n 0000 ~ 06109972 n 0000 | (biology) a theory of how characteristics of one generation are derived from earlier generations -06109972 09 n 02 Mendelism 0 Mendelianism 0 001 @ 06109771 n 0000 | the theory of inheritance based on Mendel's laws -06110091 09 n 01 Darwinism 0 002 @ 06109227 n 0000 ~ 06110267 n 0000 | a theory of organic evolution claiming that new species arise and are perpetuated by natural selection -06110267 09 n 01 neo-Darwinism 0 002 @ 06110091 n 0000 + 03013726 a 0101 | a modern Darwinian theory that explains new species in terms of genetic mutations -06110426 09 n 01 Lamarckism 0 002 @ 06109227 n 0000 ~ 06110598 n 0000 | a theory of organic evolution claiming that acquired characteristics are transmitted to offspring -06110598 09 n 01 Neo-Lamarckism 0 001 @ 06110426 n 0000 | a modern Lamarckian theory emphasizing the importance of environmental factors in genetic changes and retaining the notion of the inheritance of acquired characters -06110823 09 n 01 thermochemistry 0 001 @ 06084469 n 0000 | the branch of chemistry that studies the relation between chemical action and the amount of heat absorbed or generated -06111003 09 n 02 punctuated_equilibrium 0 theory_of_punctuated_equilibrium 0 001 @ 06109227 n 0000 | a theory of evolution holding that evolutionary change in the fossil record came in fits and starts rather than in a steady process of slow change -06111253 09 n 01 harmonics 0 001 @ 06094774 n 0000 | the study of musical sound -06111335 09 n 02 classical_mechanics 0 Newtonian_mechanics 0 001 @ 06100236 n 0000 | the branch of mechanics based on Newton's laws of motion -06111479 09 n 01 solid-state_physics 0 001 @ 06090869 n 0000 | the branch of physics that studies the properties of materials in the solid state: electrical conduction in crystals of semiconductors and metals; superconductivity; photoconductivity -06111728 09 n 01 statistical_mechanics 0 001 @ 06090869 n 0000 | the branch of physics that makes theoretical predictions about the behavior of macroscopic systems on the basis of statistical laws governing its component particles -06111961 09 n 01 quantum_mechanics 0 002 @ 06101973 n 0000 ~ 06107850 n 0000 | the branch of quantum physics that accounts for matter at the atomic level; an extension of statistical mechanics based on quantum theory (especially the Pauli exclusion principle) -06112223 09 n 01 quantum_field_theory 0 003 @ 06101973 n 0000 ~ 06112505 n 0000 ~ 06112681 n 0000 | the branch of quantum physics that is concerned with the theory of fields; it was motivated by the question of how an atom radiates light as its electrons jump from excited states -06112505 09 n 02 quantum_electrodynamics 0 QED 0 001 @ 06112223 n 0000 | a relativistic quantum theory of the electromagnetic interactions of photons and electrons and muons -06112681 09 n 02 quantum_chromodynamics 0 QCD 0 001 @ 06112223 n 0000 | a theory of strong interactions between elementary particles (including the interaction that binds protons and neutrons in the nucleus); it assumes that strongly interacting particles (hadrons) are made of quarks and that gluons bind the quarks together -06113009 09 n 02 fluid_mechanics 0 hydraulics 0 004 @ 06100236 n 0000 + 03073751 a 0201 ~ 06113415 n 0000 ~ 06113914 n 0000 | study of the mechanics of fluids -06113170 09 n 01 pneumatics 0 001 @ 06100236 n 0000 | the branch of mechanics that deals with the mechanical properties of gases -06113301 09 n 01 statics 0 001 @ 06100236 n 0000 | the branch of mechanics concerned with forces in equilibrium -06113415 09 n 01 hydrostatics 0 004 @ 06113009 n 0000 + 02828123 a 0101 -c 05874716 n 0000 -c 05991242 n 0000 | study of the mechanical properties of fluids that are not in motion -06113597 09 n 02 dynamics 0 kinetics 0 003 @ 06100236 n 0000 + 02979878 a 0101 ~ 06114246 n 0000 | the branch of mechanics concerned with the forces that cause motions of bodies -06113777 09 n 01 kinematics 0 001 @ 06100236 n 0000 | the branch of mechanics concerned with motion without reference to force or mass -06113914 09 n 02 hydrodynamics 0 hydrokinetics 0 004 @ 06113009 n 0000 + 02828310 a 0201 + 02979995 a 0101 ~ 06114069 n 0000 | study of fluids in motion -06114069 09 n 01 magnetohydrodynamics 0 001 @ 06113914 n 0000 | the study of the interaction of magnetic fields and electrically conducting fluids (as plasma or molten metal) -06114246 09 n 01 ballistics 0 002 @ 06113597 n 0000 + 02658188 a 0101 | the science of flight dynamics -06114351 09 n 02 aeromechanics 0 aerodynamics 0 003 @ 06100236 n 0000 + 02980122 a 0201 + 02607078 a 0101 | the branch of mechanics that deals with the motion of gases (especially air) and their effects on bodies in the flow -06114578 09 n 01 thermodynamics 0 008 @ 06090869 n 0000 + 02908041 a 0101 + 02908041 a 0102 -c 02708232 a 0000 -c 05012272 n 0000 -c 05012585 n 0000 ~ 06114849 n 0000 -c 13427481 n 0000 | the branch of physics concerned with the conversion of different forms of energy -06114849 09 n 02 thermostatics 0 thermodynamics_of_equilibrium 0 001 @ 06114578 n 0000 | the aspect of thermodynamics concerned with thermal equilibrium -06115004 09 n 01 electron_optics 0 001 @ 06099269 n 0000 | the branch of electronics that deals with beams of electrons and their focusing and deflection by magnetic fields -06115179 09 n 01 microelectronics 0 002 @ 06099269 n 0000 + 02902068 a 0101 | the branch of electronics that deals with miniature components -06115322 09 n 01 thermionics 0 001 @ 06099269 n 0000 | the branch of electronics dealing with thermionic phenomena (especially thermionic vacuum tubes) -06115476 09 n 01 earth_science 0 007 @ 06000400 n 0000 ~ 06073888 n 0000 ~ 06115701 n 0000 ~ 06118563 n 0000 ~ 06119904 n 0000 ~ 06120317 n 0000 ~ 06122178 n 0000 | any of the sciences that deal with the earth or its parts -06115701 09 n 01 geology 0 074 @ 06115476 n 0000 + 02905591 a 0102 + 02905591 a 0101 + 10127689 n 0101 -c 00108263 a 0000 -c 00108434 a 0000 -c 00109016 a 0000 -c 00109133 a 0000 -c 00208229 a 0000 -c 00208946 a 0000 -c 00814073 a 0000 -c 00814251 a 0000 -c 00814468 a 0000 -c 00815406 a 0000 -c 01235178 a 0000 -c 01331675 a 0000 -c 01332070 a 0000 -c 01354925 a 0000 -c 01355089 a 0000 -c 01355207 a 0000 -c 01355556 a 0000 -c 01531019 a 0000 -c 02349003 a 0000 -c 02660164 a 0000 -c 02939099 a 0000 -c 02949511 a 0000 -c 05092635 n 0000 -c 05991776 n 0000 ~ 06117202 n 0000 ~ 06117395 n 0000 ~ 06117562 n 0000 ~ 06118146 n 0000 ~ 06118236 n 0000 ~ 06121113 n 0000 ~ 06121554 n 0000 ~ 06121854 n 0000 -c 07310338 n 0000 -c 07350069 n 0000 -c 07375781 n 0000 -c 07404944 n 0000 -c 08569591 n 0000 -c 09217867 n 0000 -c 09246134 n 0000 -c 09246292 n 0000 -c 09266604 n 0000 -c 09274305 n 0000 -c 09278537 n 0000 -c 09287968 n 0000 -c 09293340 n 0000 -c 09325038 n 0000 -c 09357080 n 0000 -c 09388653 n 0000 -c 09425344 n 0000 -c 09435232 n 0000 -c 09481120 n 0000 -c 11417672 n 0000 -c 13425067 n 0000 -c 13475538 n 0000 -c 13483061 n 0000 -c 13486838 n 0000 -c 13499165 n 0000 -c 13552644 n 0000 -c 13563382 n 0000 -c 13851426 n 0000 -c 13851865 n 0000 -c 13852083 n 0000 -c 13901055 n 0000 -c 14003432 n 0000 -c 14700280 n 0000 -c 14891678 n 0000 -c 14949227 n 0000 -c 00506827 v 0000 -c 00506952 v 0000 -c 02714057 v 0000 | a science that deals with the history of the earth as recorded in rocks -06117202 09 n 01 hypsography 0 001 @ 06115701 n 0000 | the scientific study of the earth's configuration above sea level (emphasizing the measurement of land altitudes relative to sea level) -06117395 09 n 02 paleogeology 0 palaeogeology 0 001 @ 06115701 n 0000 | the study of geologic features once at the surface of the earth but now buried beneath rocks -06117562 09 n 02 geophysics 0 geophysical_science 0 009 @ 06115701 n 0000 + 02908235 a 0101 + 10128519 n 0101 ~ 06117855 n 0000 ~ 06119729 n 0000 ~ 06120496 n 0000 ~ 06120653 n 0000 ~ 06120769 n 0000 ~ 06120881 n 0000 | geology that uses physical principles to study properties of the earth -06117855 09 n 02 morphology 3 geomorphology 0 007 @ 06117562 n 0000 + 02949511 a 0201 + 02949511 a 0202 + 02949511 a 0103 + 02949511 a 0104 ~ 06118370 n 0000 ~ 06121375 n 0000 | the branch of geology that studies the characteristics and configuration and evolution of rocks and land forms -06118146 09 n 02 orology 0 orography 0 001 @ 06115701 n 0000 | the science of mountains -06118236 09 n 01 stratigraphy 0 001 @ 06115701 n 0000 | the branch of geology that studies the arrangement and succession of strata -06118370 09 n 03 tectonics 0 plate_tectonics 0 plate_tectonic_theory 0 002 @ 06117855 n 0000 -c 09384532 n 0000 | the branch of geology studying the folding and faulting of the earth's crust -06118563 09 n 01 meteorology 0 029 @ 06115476 n 0000 + 02865479 a 0101 + 02865479 a 0102 + 10312287 n 0101 -c 00109633 a 0000 -c 00109782 a 0000 -c 00460735 a 0000 -c 00461311 a 0000 -c 00540366 a 0000 -c 02629942 a 0000 -c 02894878 a 0000 -c 03058223 a 0000 -c 04567222 n 0000 -c 05017757 n 0000 -c 05132542 n 0000 ~ 06119226 n 0000 ~ 06119377 n 0000 ~ 06119608 n 0000 -c 06749729 n 0000 -c 08589351 n 0000 -c 08590172 n 0000 -c 11460488 n 0000 -c 11461080 n 0000 -c 11524662 n 0000 -c 13427989 n 0000 -c 13452750 n 0000 -c 13711855 n 0000 -c 14521021 n 0000 -c 14521302 n 0000 | the earth science dealing with phenomena of the atmosphere (especially weather) -06119226 09 n 01 aerology 0 002 @ 06118563 n 0000 + 02606856 a 0101 | meteorology of the total extent of the atmosphere; especially the upper layers -06119377 09 n 01 climatology 0 002 @ 06118563 n 0000 ~ 06119496 n 0000 | meteorology of climates and their phenomena -06119496 09 n 01 bioclimatology 0 001 @ 06119377 n 0000 | the study of effects of climate on living organisms -06119608 09 n 01 nephology 0 001 @ 06118563 n 0000 | the branch of meteorology that studies clouds and cloud formation -06119729 09 n 01 hydrology 0 001 @ 06117562 n 0000 | the branch of geology that studies water on the earth and in the atmosphere: its distribution and uses and conservation -06119904 09 n 02 oceanography 0 oceanology 0 004 @ 06115476 n 0000 + 10370122 n 0101 ~ 06120111 n 0000 -c 11488601 n 0000 | the branch of science dealing with physical and biological aspects of the oceans -06120111 09 n 01 hydrography 0 002 @ 06119904 n 0000 + 02744720 a 0102 | the science of the measurement and description and mapping of the surface waters of the earth with special reference to navigation -06120317 09 n 01 limnology 0 002 @ 06115476 n 0000 + 02756025 a 0101 | the scientific study of bodies of fresh water for their biological and physical and geological properties -06120496 09 n 01 seismology 0 004 @ 06117562 n 0000 + 02908366 a 0102 + 02908366 a 0101 + 10576513 n 0101 | the branch of geology that studies earthquakes -06120653 09 n 02 volcanology 0 vulcanology 0 001 @ 06117562 n 0000 | the branch of geology that studies volcanoes -06120769 09 n 02 magnetism 0 magnetics 0 001 @ 06117562 n 0000 | the branch of science that studies magnetism -06120881 09 n 01 geodesy 0 004 @ 06117562 n 0000 + 02993362 a 0101 + 02993362 a 0102 + 02993362 a 0103 | the branch of geology that studies the shape of the earth and the determination of the exact position of geographical points -06121113 09 n 01 mineralogy 0 006 @ 06115701 n 0000 + 10319996 n 0101 -c 09287817 n 0000 -c 09371941 n 0000 -c 13881810 n 0000 -c 14883517 n 0000 | the branch of geology that studies minerals: their structure and properties and the ways of distinguishing them -06121375 09 n 02 petrology 0 lithology 0 001 @ 06117855 n 0000 | the branch of geology that studies rocks: their origin and formation and mineral composition and classification -06121554 09 n 02 speleology 0 spelaeology 0 003 @ 06115701 n 0000 + 10460286 n 0204 + 10460286 n 0103 | the scientific study of caves -06121690 09 n 01 petroleum_geology 0 001 @ 06121854 n 0000 | the branch of economic geology that deals with the occurrence and exploitation of oil and gas fields -06121854 09 n 01 economic_geology 0 003 @ 06115701 n 0000 ~ 06121690 n 0000 ~ 06122033 n 0000 | the branch of geology that deals with economically valuable geological materials -06122033 09 n 01 mining_geology 0 001 @ 06121854 n 0000 | the branch of economic geology that deals with the applications of geology to mining -06122178 09 n 02 geography 0 geographics 0 006 @ 06115476 n 0000 + 03021543 a 0102 + 10127555 n 0101 ~ 06122445 n 0000 ~ 06122578 n 0000 ~ 06122976 n 0000 | study of the earth's surface; includes people's responses to topography and climate and soil and vegetation -06122445 09 n 02 physical_geography 0 physiography 0 001 @ 06122178 n 0000 | the study of physical features of the earth's surface -06122578 09 n 01 topography 0 004 @ 06122178 n 0000 + 03018112 a 0102 + 03018112 a 0101 ~ 06122747 n 0000 | precise detailed study of the surface features of a region -06122747 09 n 01 topology 2 001 @ 06122578 n 0000 | topographic study of a given place (especially the history of the place as indicated by its topography); "Greenland's topology has been shaped by the glaciers of the ice age" -06122976 09 n 01 economic_geography 0 001 @ 06122178 n 0000 | the branch of geography concerned with the production and distribution of commodities -06123126 09 n 01 cosmography 0 003 @ 06000400 n 0000 + 09819477 n 0102 + 09819477 n 0101 | the science that maps the general features of the universe; describes both heaven and earth (but without encroaching on geography or astronomy) -06123363 09 n 01 architecture 0 042 @ 05996646 n 0000 @ 06156968 n 0000 -c 00141647 a 0000 -c 00160425 a 0000 -c 00160573 a 0000 -c 00567287 a 0000 -c 02314756 a 0000 -c 02315461 a 0000 -c 02729927 a 0000 -c 02733524 n 0000 -c 02734423 n 0000 -c 02734725 n 0000 -c 02755823 n 0000 -c 03073977 n 0000 -c 03090598 n 0000 -c 03105467 n 0000 -c 03105645 n 0000 -c 03105810 n 0000 -c 03105974 n 0000 -c 03109693 n 0000 -c 03241660 n 0000 -c 03290195 n 0000 -c 03377077 n 0000 -c 03778459 n 0000 -c 03934042 n 0000 -c 03943266 n 0000 -c 04182708 n 0000 -c 04267246 n 0000 -c 04413723 n 0000 -c 04523993 n 0000 -c 04698656 n 0000 -c 05076069 n 0000 -c 05076709 n 0000 -c 05841151 n 0000 %p 06124395 n 0000 ~ 06124532 n 0000 ~ 06124706 n 0000 ~ 06124864 n 0000 -c 13890679 n 0000 -c 01685601 v 0000 -c 02352824 v 0000 -c 02352946 v 0000 | the discipline dealing with the principles of design and construction and ornamentation of fine buildings; "architecture and eloquence are mixed arts whose end is sometimes beauty and sometimes use" -06124395 09 n 02 architectonics 0 tectonics 1 003 @ 05999797 n 0000 #p 06123363 n 0000 + 02898121 a 0102 | the science of architecture -06124532 09 n 01 landscape_architecture 0 001 @ 06123363 n 0000 | the branch of architecture dealing with the arrangement of land and buildings for human use and enjoyment -06124706 09 n 01 urban_planning 0 001 @ 06123363 n 0000 | the branch of architecture dealing with the design and organization of urban space and activities -06124864 09 n 01 interior_design 0 001 @ 06123363 n 0000 | the branch of architecture dealing with the selection and organization of furnishings for an architectural interior -06125041 09 n 04 engineering 0 engineering_science 0 applied_science 0 technology 0 022 @ 05996646 n 0000 + 02084979 a 0401 + 02809692 a 0402 + 09615807 n 0403 -c 00804708 n 0000 ~ 06126177 n 0000 ~ 06126336 n 0000 ~ 06126523 n 0000 ~ 06127460 n 0000 ~ 06127683 n 0000 ~ 06128024 n 0000 ~ 06128570 n 0000 ~ 06134075 n 0000 ~ 06134271 n 0000 ~ 06134510 n 0000 ~ 06134716 n 0000 ~ 06134899 n 0000 ~ 06135335 n 0000 ~ 06135503 n 0000 ~ 06135659 n 0000 -c 13555915 n 0000 -c 13558953 n 0000 | the discipline dealing with the art or science of applying scientific knowledge to practical problems; "he had trouble deciding which branch of engineering to study" -06125698 09 n 01 metallurgy 0 012 @ 05999797 n 0000 + 03086294 a 0102 + 03086294 a 0101 + 10312077 n 0101 -c 01906817 a 0000 -c 02026785 a 0000 ~ 06125996 n 0000 -c 00239973 v 0000 -c 00396880 v 0000 -c 00493517 v 0000 -c 00577170 v 0000 -c 01287388 v 0000 | the science and technology of metals -06125996 09 n 01 powder_metallurgy 0 001 @ 06125698 n 0000 | the metallurgy of powdered metals; how to produce solid metal objects from powdered metal by compaction and sintering -06126177 09 n 01 aeronautical_engineering 0 001 @ 06125041 n 0000 | the branch of engineering science concerned with the design and construction of aircraft -06126336 09 n 01 bionics 0 002 @ 06125041 n 0000 + 02666434 a 0101 | application of biological principles to the study and design of engineering systems (especially electronic systems) -06126523 09 n 03 biotechnology 0 bioengineering 0 ergonomics 0 002 @ 06125041 n 0000 + 02721877 a 0301 | the branch of engineering science in which biological science is used to study the relation between workers and their environments -06126761 09 n 02 biotechnology 1 biotech 0 003 @ 06078088 n 0000 ~ 06127057 n 0000 ~ 06127209 n 0000 | the branch of molecular biology that studies the use of microorganisms to perform specific industrial processes; "biotechnology produced genetically altered bacteria that solved the problem" -06127057 09 n 01 bioremediation 0 001 @ 06126761 n 0000 | the branch of biotechnology that uses biological process to overcome environmental problems -06127209 09 n 03 genetic_engineering 0 gene-splicing 0 recombinant_DNA_technology 0 001 @ 06126761 n 0000 | the technology of preparing recombinant DNA in vitro by cutting up DNA molecules and splicing together fragments from more than one organism -06127460 09 n 01 chemical_engineering 0 001 @ 06125041 n 0000 | the branch of engineering that is concerned with the design and construction and operation of the plants and machinery used in industrial chemical processes -06127683 09 n 01 civil_engineering 0 002 @ 06125041 n 0000 ~ 06127873 n 0000 | the branch of engineering concerned with the design and construction of such public works as dams or bridges -06127873 09 n 01 hydraulic_engineering 0 001 @ 06127683 n 0000 | the branch of civil engineering dealing with the use and control of water in motion -06128024 09 n 02 electrical_engineering 0 EE 0 003 @ 06125041 n 0000 -c 04076052 n 0000 ~ 06128307 n 0000 | the branch of engineering science that studies the uses of electricity and the equipment for power generation and distribution and the control of machines and communication -06128307 09 n 01 telecommunication 0 005 @ 06128024 n 0000 ;c 06271778 n 0000 ;u 06295235 n 0000 -c 06357424 n 0000 -c 00673095 v 0000 | (often plural) the branch of electrical engineering concerned with the technology of electronic communication at a distance -06128570 09 n 02 computer_science 0 computing 0 210 @ 06125041 n 0000 #p 06142118 n 0000 ;c 03082979 n 0000 -c 00183932 a 0000 -c 01650401 a 0000 -c 01650752 a 0000 -c 01835276 a 0000 -c 01952907 a 0000 -c 02379157 a 0000 -c 02380358 a 0000 -c 02787452 a 0000 -c 02803986 a 0000 -c 02902214 a 0000 -c 03093695 a 0000 -c 00164579 n 0000 -c 00616807 n 0000 -c 01102256 n 0000 -c 02671224 n 0000 -c 02673078 n 0000 -c 02769075 n 0000 -c 02771840 n 0000 -c 02911485 n 0000 -c 02916684 n 0000 -c 02935017 n 0000 -c 02995345 n 0000 -c 03082979 n 0000 -c 03084420 n 0000 -c 03085333 n 0000 -c 03097673 n 0000 -c 03108069 n 0000 -c 03117420 n 0000 -c 03150795 n 0000 -c 03170459 n 0000 -c 03187268 n 0000 -c 03204558 n 0000 -c 03209477 n 0000 -c 03209666 n 0000 -c 03211413 n 0000 -c 03221351 n 0000 -c 03243218 n 0000 -c 03294604 n 0000 -c 03337494 n 0000 -c 03348142 n 0000 -c 03382708 n 0000 -c 03493333 n 0000 -c 03567635 n 0000 -c 03578656 n 0000 -c 03668279 n 0000 -c 03706415 n 0000 -c 03706653 n 0000 -c 03827107 n 0000 -c 03827830 n 0000 -c 03916720 n 0000 -c 03952277 n 0000 -c 04004767 n 0000 -c 04050600 n 0000 -c 04058239 n 0000 -c 04058721 n 0000 -c 04071876 n 0000 -c 04110439 n 0000 -c 04114844 n 0000 -c 04153436 n 0000 -c 04166111 n 0000 -c 04175147 n 0000 -c 04193552 n 0000 -c 04464211 n 0000 -c 04537919 n 0000 -c 04588739 n 0000 -c 04932278 n 0000 -c 04932561 n 0000 -c 04932875 n 0000 -c 04978561 n 0000 -c 05061619 n 0000 -c 05089048 n 0000 -c 05200816 n 0000 -c 05665984 n 0000 -c 05666176 n 0000 -c 05666700 n 0000 -c 05823747 n 0000 -c 06108643 n 0000 ~ 06132724 n 0000 -c 06133018 n 0000 ~ 06133203 n 0000 -c 06162979 n 0000 -c 06277992 n 0000 -c 06279326 n 0000 -c 06280604 n 0000 -c 06335532 n 0000 -c 06355894 n 0000 -c 06356299 n 0000 -c 06356515 n 0000 -c 06356755 n 0000 -c 06357078 n 0000 -c 06357814 n 0000 -c 06390051 n 0000 -c 06390227 n 0000 -c 06391347 n 0000 -c 06391566 n 0000 -c 06490451 n 0000 -c 06490743 n 0000 -c 06493392 n 0000 -c 06493721 n 0000 -c 06509210 n 0000 -c 06509513 n 0000 -c 06509675 n 0000 -c 06509902 n 0000 -c 06510103 n 0000 -c 06510271 n 0000 -c 06510478 n 0000 -c 06510663 n 0000 -c 06510836 n 0000 -c 06510977 n 0000 -c 06566077 n 0000 -c 06568134 n 0000 -c 06568978 n 0000 -c 06572204 n 0000 -c 06572482 n 0000 -c 06573600 n 0000 -c 06574473 n 0000 -c 06574841 n 0000 -c 06575227 n 0000 -c 06575932 n 0000 -c 06576727 n 0000 -c 06581410 n 0000 -c 06584891 n 0000 -c 06588511 n 0000 -c 06637149 n 0000 -c 06637350 n 0000 -c 06655927 n 0000 -c 06665108 n 0000 -c 06665370 n 0000 -c 06788007 n 0000 -c 06826407 n 0000 -c 06827679 n 0000 -c 06845303 n 0000 -c 06898352 n 0000 -c 06900684 n 0000 -c 07269916 n 0000 -c 07273616 n 0000 -c 07281099 n 0000 -c 07299569 n 0000 -c 07299790 n 0000 -c 07299965 n 0000 -c 07300092 n 0000 -c 07300316 n 0000 -c 07300494 n 0000 -c 07300781 n 0000 -c 07350893 n 0000 -c 07478874 n 0000 -c 07479144 n 0000 -c 07956552 n 0000 -c 08005580 n 0000 -c 08005761 n 0000 -c 08555883 n 0000 -c 08556065 n 0000 -c 10462588 n 0000 -c 10481268 n 0000 -c 11505952 n 0000 -c 13455487 n 0000 -c 13477462 n 0000 -c 13484303 n 0000 -c 13503908 n 0000 -c 13504173 n 0000 -c 13524925 n 0000 -c 13550940 n 0000 -c 13562133 n 0000 -c 13579679 n 0000 -c 13607187 n 0000 -c 13607405 n 0000 -c 13607616 n 0000 -c 13625482 n 0000 -c 13626464 n 0000 -c 13626789 n 0000 -c 13627114 n 0000 -c 13755053 n 0000 -c 13755342 n 0000 -c 13755627 n 0000 -c 13844057 n 0000 -c 15171857 n 0000 -c 15262360 n 0000 -c 15269128 n 0000 -c 15269331 n 0000 -c 15276642 n 0000 -c 15297069 n 0000 -c 15298011 n 0000 -c 15298695 n 0000 -c 00114481 v 0000 -c 00124854 v 0000 -c 00343600 v 0000 -c 00450863 v 0000 -c 00648764 v 0000 -c 00649033 v 0000 -c 00743692 v 0000 -c 00998886 v 0000 -c 00999079 v 0000 -c 01032451 v 0000 -c 01032715 v 0000 -c 01032840 v 0000 -c 01422539 v 0000 -c 01465054 v 0000 -c 01465732 v 0000 -c 01718952 v 0000 -c 01747717 v 0000 -c 02231910 v 0000 -c 02232722 v 0000 -c 02232877 v 0000 -c 02233533 v 0000 -c 02248808 v 0000 -c 02249018 v 0000 -c 02675270 v 0000 | the branch of engineering science that studies (with the aid of computers) computable processes and structures -06132724 09 n 01 object 2 001 @ 06128570 n 0000 | (computing) a discrete item that provides a description of virtually anything known to a computer; "in object-oriented programming, objects include data and define its status, its methods of operation and how it interacts with other objects" -06133018 09 n 01 logic 4 002 @ 05661996 n 0000 ;c 06128570 n 0000 | the system of operations performed by a computer that underlies the machine's representation of logical operations -06133203 09 n 02 artificial_intelligence 0 AI 0 003 @ 06128570 n 0000 ~ 06133503 n 0000 ~ 06133654 n 0000 | the branch of computer science that deal with writing computer programs that can solve problems creatively; "workers in AI hope to imitate or duplicate intelligence in computers and robots" -06133503 09 n 02 machine_translation 0 MT 0 002 @ 06133203 n 0000 @ 06168552 n 0000 | the use of computers to translate from one language to another -06133654 09 n 01 robotics 0 003 @ 06133203 n 0000 ~ 06133802 n 0000 ~ 06133935 n 0000 | the area of AI concerned with the practical use of robots -06133802 09 n 01 animatronics 0 001 @ 06133654 n 0000 | the construction of robots to look like animals (developed for Disneyland) -06133935 09 n 01 telerobotics 0 001 @ 06133654 n 0000 | the area of robotics that is concerned with the control of robots from a distance -06134075 09 n 01 architectural_engineering 0 001 @ 06125041 n 0000 | the branch of engineering that deals with the construction of buildings (as distinguished from architecture as a design art) -06134271 09 n 02 industrial_engineering 0 industrial_management 0 001 @ 06125041 n 0000 | the branch of engineering that deals with the creation and management of systems that integrate people and materials and energy in productive ways -06134510 09 n 02 information_technology 0 IT 0 001 @ 06125041 n 0000 | the branch of engineering that deals with the use of computers and telecommunications to retrieve and store and transmit information -06134716 09 n 01 mechanical_engineering 0 002 @ 06125041 n 0000 ~ 06135095 n 0000 | the branch of engineering that deals with the design and construction and operation of machinery -06134899 09 n 01 nanotechnology 0 001 @ 06125041 n 0000 | the branch of engineering that deals with things smaller than 100 nanometers (especially with the manipulation of individual molecules) -06135095 09 n 01 tribology 0 002 @ 06134716 n 0000 + 10728727 n 0101 | the branch of engineering that deals with the interaction of surfaces in relative motion (as in bearings or gears): their design and friction and wear and lubrication -06135335 09 n 01 nuclear_engineering 0 001 @ 06125041 n 0000 | the branch of engineering concerned with the design and construction and operation of nuclear reactors -06135503 09 n 01 naval_engineering 0 001 @ 06125041 n 0000 | the branch of engineering that deals with the design and construction and operation of ships -06135659 09 n 01 rocketry 0 002 @ 06125041 n 0000 + 01241753 v 0101 | the branch of engineering science that studies rocket design and operation -06135806 09 n 01 metrology 0 002 @ 05999797 n 0000 + 02763927 a 0101 | the scientific study of measurement -06135915 09 n 01 nutrition 0 005 @ 05999797 n 0000 ;c 02472293 n 0000 + 03002351 a 0102 + 03002351 a 0101 + 10012484 n 0103 | the scientific study of food and drink (especially in humans) -06136105 09 n 02 futurology 0 futuristics 0 001 @ 05996646 n 0000 | the study or prediction of future developments on the basis of existing conditions -06136258 09 n 02 psychology 0 psychological_science 0 075 @ 05999797 n 0000 + 02905794 a 0101 + 10488865 n 0101 -c 00351523 a 0000 -c 00351818 a 0000 -c 00736020 a 0000 -c 01328753 a 0000 -c 01351021 a 0000 -c 01351391 a 0000 -c 01351922 a 0000 -c 01542071 a 0000 -c 01542252 a 0000 -c 01598319 a 0000 -c 01598592 a 0000 -c 01598859 a 0000 -c 01637032 a 0000 -c 01672239 a 0000 -c 02592147 a 0000 -c 02592396 a 0000 -c 02593735 a 0000 -c 02593861 a 0000 -c 02599689 a 0000 -c 02603779 a 0000 -c 02645042 a 0000 -c 02647917 a 0000 -c 02784317 a 0000 -c 00414179 n 0000 -c 00896832 n 0000 -c 01070892 n 0000 -c 01221254 n 0000 -c 04621738 n 0000 -c 04621963 n 0000 -c 04622216 n 0000 -c 04677716 n 0000 -c 05674584 n 0000 -c 05675715 n 0000 -c 05686272 n 0000 -c 05701363 n 0000 -c 05708818 n 0000 -c 05731568 n 0000 -c 05754197 n 0000 -c 05756414 n 0000 -c 05828552 n 0000 -c 05881303 n 0000 ~ 06137759 n 0000 -c 06137918 n 0000 -c 06138099 n 0000 ~ 06138347 n 0000 ~ 06138582 n 0000 ~ 06138789 n 0000 ~ 06138941 n 0000 ~ 06139135 n 0000 ~ 06139285 n 0000 -c 06140054 n 0000 ~ 06140799 n 0000 ~ 06141023 n 0000 -c 06141324 n 0000 ~ 06141561 n 0000 -c 06203222 n 0000 -c 07297927 n 0000 -c 09180616 n 0000 -c 09180791 n 0000 -c 09929577 n 0000 -c 10074841 n 0000 -c 10213429 n 0000 -c 13554343 n 0000 -c 14373582 n 0000 -c 14375890 n 0000 -c 14376188 n 0000 -c 14376695 n 0000 -c 14376855 n 0000 -c 00655378 v 0000 -c 00729642 v 0000 -c 00729781 v 0000 -c 02107097 v 0000 | the science of mental life -06137759 09 n 02 abnormal_psychology 0 psychopathology 1 002 @ 06136258 n 0000 + 02077253 a 0202 | the branch of psychology concerned with abnormal behavior -06137918 09 n 02 associationism 0 association_theory 0 002 @ 05993844 n 0000 ;c 06136258 n 0000 | (psychology) a theory that association is the basic principle of mental activity -06138099 09 n 01 atomism 1 004 @ 05993844 n 0000 ;c 06136258 n 0000 + 01680836 a 0102 + 01680836 a 0101 | (psychology) a theory that reduces all mental phenomena to simple elements (sensations and feelings) that form complex ideas by association -06138347 09 n 02 applied_psychology 0 industrial_psychology 0 001 @ 06136258 n 0000 | any of several branches of psychology that seek to apply psychological principles to practical problems of education or industry or marketing etc. -06138582 09 n 01 cognitive_psychology 0 005 @ 06136258 n 0000 #p 06142861 n 0000 ~ 06140268 n 0000 ~ 06140437 n 0000 ~ 06140587 n 0000 | an approach to psychology that emphasizes internal mental processes -06138789 09 n 02 comparative_psychology 0 animal_psychology 0 001 @ 06136258 n 0000 | the branch of psychology concerned with the behavior of animals -06138941 09 n 03 developmental_psychology 0 genetic_psychology 0 child_psychology 0 001 @ 06136258 n 0000 | the branch of psychology that studies the social and mental development of children -06139135 09 n 01 differential_psychology 0 001 @ 06136258 n 0000 | the branch of psychology that studies measurable differences between individuals -06139285 09 n 02 experimental_psychology 0 psychonomics 0 003 @ 06136258 n 0000 ~ 06139491 n 0000 ~ 06139764 n 0000 | the branch of psychology that uses experimental methods to study psychological issues -06139491 09 n 01 psychophysics 0 006 @ 06139285 n 0000 + 10489426 n 0101 -c 05713101 n 0000 -c 05877718 n 0000 -c 05996110 n 0000 -c 05996353 n 0000 | the branch of psychology concerned with quantitative relations between physical stimuli and their psychological effects -06139764 09 n 04 behaviorism 0 behaviourism 0 behavioristic_psychology 0 behaviouristic_psychology 0 006 @ 06139285 n 0000 + 02660651 a 0203 + 09608520 n 0202 + 02660651 a 0101 + 09608520 n 0101 ~ 06141197 n 0000 | an approach to psychology that emphasizes observable measurable behavior -06140054 09 n 01 functionalism 0 003 @ 05993844 n 0000 ;c 06136258 n 0000 + 10116246 n 0101 | a psychology based on the assumption that all mental process are useful to an organism in adapting to the environment -06140268 09 n 01 memory 3 001 @ 06138582 n 0000 | the area of cognitive psychology that studies memory processes; "he taught a graduate course on learning and memory" -06140437 09 n 01 problem_solving 1 001 @ 06138582 n 0000 | the area of cognitive psychology that studies the processes involved in solving problems -06140587 09 n 01 psycholinguistics 0 003 @ 06138582 n 0000 + 02939656 a 0101 + 10488656 n 0101 | the branch of cognitive psychology that studies the psychological basis of linguistic competence and performance -06140799 09 n 03 physiological_psychology 0 neuropsychology 0 psychophysiology 0 002 @ 06136258 n 0000 + 02908768 a 0201 | the branch of psychology that is concerned with the physiological bases of psychological processes -06141023 09 n 03 psychometry 0 psychometrics 0 psychometrika 0 002 @ 06136258 n 0000 + 02913737 a 0101 | any branch of psychology concerned with psychological measurements -06141197 09 n 01 reflexology 0 001 @ 06139764 n 0000 | the study of reflex action as it relates to the behavior of organisms -06141324 09 n 02 Gestalt_psychology 0 configurationism 0 004 @ 05993844 n 0000 ;c 06136258 n 0000 ;c 06102865 n 0000 %p 05878440 n 0000 | (psychology) a theory of psychology that emphasizes the importance of configurational properties -06141561 09 n 01 social_psychology 0 002 @ 06136258 n 0000 ~ 06141768 n 0000 | the branch of psychology that studies persons and their relationships with others and with groups and with society as a whole -06141768 09 n 01 psychodynamics 0 002 @ 06141561 n 0000 ~ 06141962 n 0000 | the branch of social psychology that deals with the processes and emotions that determine psychology and motivation -06141962 09 n 01 group_dynamics 0 001 @ 06141768 n 0000 | the branch of social psychology that studies the psychodynamics of interaction in social groups -06142118 09 n 04 information_science 0 informatics 0 information_processing 0 IP 0 005 @ 05999797 n 0000 %p 06128570 n 0000 ~ 06142412 n 0000 ~ 06142598 n 0000 -c 06494816 n 0000 | the sciences concerned with gathering, manipulating, storing, retrieving, and classifying recorded information -06142412 09 n 03 natural_language_processing 0 NLP 0 human_language_technology 0 001 @ 06142118 n 0000 | the branch of information science that deals with natural language information -06142598 09 n 01 cybernetics 0 003 @ 06142118 n 0000 ;c 06037666 n 0000 + 03057807 a 0101 | (biology) the field of science concerned with processes of communication and control (especially the comparison of these processes in biological and artificial systems) -06142861 09 n 01 cognitive_science 0 004 @ 05999797 n 0000 %p 06082136 n 0000 %p 06138582 n 0000 %p 06172789 n 0000 | the field of science concerned with cognition; includes parts of cognitive psychology and linguistics and computer science and cognitive neuroscience and philosophy of mind -06143154 09 n 01 social_science 0 009 @ 05999797 n 0000 + 10619642 n 0101 ~ 06143454 n 0000 ~ 06143546 n 0000 ~ 06148148 n 0000 ~ 06149344 n 0000 ~ 06149484 n 0000 ~ 06151550 n 0000 ~ 06151693 n 0000 | the branch of science that studies society and the relationships of individual within a society -06143454 09 n 01 civics 0 001 @ 06143154 n 0000 | the social science of municipal affairs -06143546 09 n 01 anthropology 0 022 @ 06143154 n 0000 + 09796323 n 0101 + 02907175 a 0101 -c 00413432 a 0000 -c 00871051 a 0000 -c 00871255 a 0000 -c 01291937 a 0000 -c 01971519 a 0000 -c 03087685 a 0000 -c 04723286 n 0000 -c 04723436 n 0000 -c 05729609 n 0000 ~ 06144081 n 0000 ~ 06146546 n 0000 ~ 06146880 n 0000 ~ 06147141 n 0000 ~ 06147522 n 0000 %p 06168334 n 0000 -c 09776522 n 0000 -c 13812607 n 0000 -c 13813283 n 0000 -c 13813591 n 0000 | the social science that studies the origins and social relationships of human beings -06144081 09 n 02 archeology 0 archaeology 0 030 @ 06143546 n 0000 + 02638392 a 0203 + 09804806 n 0202 + 02638392 a 0201 + 02638392 a 0104 + 09804806 n 0101 + 02638392 a 0102 -c 00269471 n 0000 -c 02739123 n 0000 -c 02922292 n 0000 ~ 06144762 n 0000 ~ 06144855 n 0000 ~ 06144970 n 0000 ~ 06145158 n 0000 ~ 06145326 n 0000 ~ 06145446 n 0000 ~ 06145586 n 0000 ~ 06145729 n 0000 ~ 06145897 n 0000 ~ 06146142 n 0000 ~ 06146260 n 0000 ~ 06146760 n 0000 -c 08287844 n 0000 -c 08291582 n 0000 -c 08291813 n 0000 -c 08550076 n 0000 -c 08560560 n 0000 -c 15231415 n 0000 -c 15231765 n 0000 -c 15231964 n 0000 | the branch of anthropology that studies prehistoric people and their cultures -06144762 09 n 01 Assyriology 0 001 @ 06144081 n 0000 | archeology of the ancient Assyrians -06144855 09 n 01 Egyptology 0 002 @ 06144081 n 0000 + 10047822 n 0101 | archeology of ancient Egyptian artifacts -06144970 09 n 01 Sumerology 0 001 @ 06144081 n 0000 | the archeology of ancient Sumerians -06145062 09 n 01 micropaleontology 0 001 @ 06073888 n 0000 | the paleontology of microfossils -06145158 09 n 04 marine_archeology 0 marine_archaeology 0 underwater_archeology 0 underwater_archaeology 0 001 @ 06144081 n 0000 | the archeology of underwater sites -06145326 09 n 02 paleoclimatology 0 palaeoclimatology 0 001 @ 06144081 n 0000 | the study of the climate of past ages -06145446 09 n 02 paleogeography 0 palaeogeography 0 001 @ 06144081 n 0000 | the study of the geography of ancient times or ancient epochs -06145586 09 n 01 paleography 0 002 @ 06144081 n 0000 ~ 06146053 n 0000 | the study of ancient forms of writing (and the deciphering of them) -06145729 09 n 02 paleopathology 0 palaeopathology 0 002 @ 06144081 n 0000 @ 06060845 n 0000 | the study of disease of former times (as inferred from fossil evidence) -06145897 09 n 02 paletiology 0 palaetiology 0 001 @ 06144081 n 0000 | the explanation of past events in terms of scientific causes (as geological causes) -06146053 09 n 01 epigraphy 0 001 @ 06145586 n 0000 | the study of ancient inscriptions -06146142 09 n 02 paleology 0 palaeology 0 001 @ 06144081 n 0000 | the study of (especially prehistoric) antiquities -06146260 09 n 02 protohistory 0 protoanthropology 0 002 @ 06144081 n 0000 ~ 06146407 n 0000 | the study humans prior to the invention of writing -06146407 09 n 02 protoarcheology 0 protoarchaeology 0 001 @ 06146260 n 0000 | the study of prehistoric human artifacts and human fossils -06146546 09 n 02 ethnography 0 descriptive_anthropology 0 003 @ 06143546 n 0000 + 03064883 a 0102 + 10065643 n 0101 | the branch of anthropology that provides scientific description of individual human societies -06146760 09 n 02 paleoethnography 0 palaeoethnography 0 001 @ 06144081 n 0000 | the ethnography of paleolithic humans -06146880 09 n 01 ethnology 0 004 @ 06143546 n 0000 + 03065047 a 0102 + 03065047 a 0101 + 10065758 n 0101 | the branch of anthropology that deals with the division of humankind into races and with their origins and distribution and distinctive characteristics -06147141 09 n 01 physical_anthropology 0 002 @ 06143546 n 0000 ~ 06147308 n 0000 | the branch of anthropology dealing with the genesis and variation of human beings -06147308 09 n 01 craniometry 0 003 @ 06147141 n 0000 + 02844419 a 0101 + 02844419 a 0102 | the branch of physical anthropology dealing with the study and measurement of dry skulls after removal of its soft parts -06147522 09 n 02 social_anthropology 0 cultural_anthropology 0 006 @ 06143546 n 0000 + 10618465 n 0101 ~ 06147770 n 0000 ~ 06147873 n 0000 ~ 06148002 n 0000 + 10618465 n 0202 | the branch of anthropology that deals with human culture and society -06147770 09 n 01 garbology 0 001 @ 06147522 n 0000 | the study of a society by analyzing its garbage -06147873 09 n 01 mythology 0 004 @ 06147522 n 0000 ;c 07978423 n 0000 + 10343869 n 0101 + 00135013 v 0101 | the study of myths -06148002 09 n 01 ritualism 0 003 @ 06147522 n 0000 + 03111832 a 0101 + 10532751 n 0101 | the study of religious or magical rites and ceremonies -06148148 09 n 03 politics 0 political_science 0 government 1 025 @ 06143154 n 0000 ;c 01124794 n 0000 + 10450161 n 0201 -c 01532760 a 0000 -c 00204943 n 0000 -c 00611972 n 0000 -c 01140658 n 0000 -c 01153861 n 0000 -c 01177703 n 0000 -c 05908882 n 0000 ~ 06148748 n 0000 ~ 06149038 n 0000 -c 07194293 n 0000 -c 07240925 n 0000 -c 07964495 n 0000 -c 08053407 n 0000 -c 08111783 n 0000 -c 08408709 n 0000 -c 09813696 n 0000 -c 10336537 n 0000 -c 10337488 n 0000 -c 10517583 n 0000 -c 11412993 n 0000 -c 13360254 n 0000 -c 13979173 n 0000 | the study of government of states and other political units -06148748 09 n 01 geopolitics 0 003 @ 06148148 n 0000 + 02907935 a 0101 ~ 06148915 n 0000 | the study of the effects of economic geography on the powers of the state -06148915 09 n 01 geostrategy 0 002 @ 06148748 n 0000 + 02735476 a 0101 | the branch of geopolitics dealing with strategy -06149038 09 n 02 realpolitik 0 practical_politics 0 001 @ 06148148 n 0000 | politics based on practical rather than moral or ideological considerations -06149192 09 n 02 politics 1 political_sympathies 0 002 @ 05945642 n 0000 + 02857407 a 0101 | the opinion you hold with respect to political questions -06149344 09 n 04 home_economics 0 home_ec 0 domestic_science 0 household_arts 0 001 @ 06143154 n 0000 | theory and practice of homemaking -06149484 09 n 03 economics 0 economic_science 0 political_economy 0 028 @ 06143154 n 0000 -c 00015097 a 0000 -c 00017186 a 0000 -c 00184075 a 0000 -c 01939596 a 0000 -c 01939784 a 0000 -c 02538626 a 0000 -c 02538803 a 0000 -c 00913705 n 0000 -c 05883992 n 0000 %p 05994935 n 0000 -c 05994935 n 0000 -c 06150222 n 0000 ~ 06150449 n 0000 ~ 06150633 n 0000 ~ 06150933 n 0000 ~ 06151108 n 0000 ~ 06151282 n 0000 -c 11513880 n 0000 -c 13355656 n 0000 -c 13451804 n 0000 -c 13580058 n 0000 -c 13580228 n 0000 -c 13824500 n 0000 -c 14444326 n 0000 -c 14444644 n 0000 -c 14444825 n 0000 -c 14542579 n 0000 | the branch of social science that deals with the production and distribution and consumption of goods and services and their management -06150222 09 n 02 game_theory 0 theory_of_games 0 004 @ 05993844 n 0000 ;c 06149484 n 0000 -c 00509706 n 0000 -c 14003599 n 0000 | (economics) a theory of competition stated in terms of gains and losses among opposing players -06150449 09 n 01 econometrics 0 003 @ 06149484 n 0000 + 02919733 a 0101 + 10043491 n 0101 | the application of mathematics and statistics to the study of economic and financial data -06150633 09 n 01 finance 0 010 @ 06149484 n 0000 + 02847894 a 0102 + 02217266 v 0101 -c 01444434 a 0000 -c 01444620 a 0000 -c 00453009 r 0000 -c 01134037 n 0000 -c 10497775 n 0000 -c 13355504 n 0000 -c 13366693 n 0000 | the branch of economics that studies the management of money and other assets -06150933 09 n 01 macroeconomics 0 003 @ 06149484 n 0000 + 02758500 a 0101 + 10279392 n 0101 | the branch of economics that studies the overall working of a national economy -06151108 09 n 01 microeconomics 0 002 @ 06149484 n 0000 + 10313724 n 0101 | the branch of economics that studies the economy of consumers or households or individual firms -06151282 09 n 01 supply-side_economics 0 001 @ 06149484 n 0000 | the school of economic theory that stresses the costs of production as a means of stimulating the economy; advocates policies that raise capital and labor output by increasing the incentive to produce -06151550 09 n 01 proxemics 0 001 @ 06143154 n 0000 | the study of spatial distances between individuals in different cultures and situations -06151693 09 n 01 sociology 0 009 @ 06143154 n 0000 + 02906206 a 0101 + 10620758 n 0101 -c 05667951 n 0000 ~ 06151942 n 0000 ~ 06152125 n 0000 ~ 06152311 n 0000 ~ 06152631 n 0000 %p 06168152 n 0000 | the study and classification of human societies -06151942 09 n 01 criminology 0 004 @ 06151693 n 0000 + 02919863 a 0101 + 09978442 n 0101 ~ 06152460 n 0000 | the scientific study of crime and criminal behavior and law enforcement -06152125 09 n 02 demography 0 human_ecology 0 003 @ 06151693 n 0000 + 10002257 n 0102 + 10002257 n 0101 | the branch of sociology that studies the characteristics of human populations -06152311 09 n 01 psephology 0 002 @ 06151693 n 0000 + 10487592 n 0101 | the branch of sociology that studies election trends (as by opinion polls) -06152460 09 n 02 penology 0 poenology 0 002 @ 06151942 n 0000 + 10414239 n 0101 | the branch of criminology concerned with prison management and prisoner rehabilitation -06152631 09 n 01 sociometry 0 001 @ 06151693 n 0000 | the quantitative study of social relationships -06152734 09 n 01 strategics 0 001 @ 05999797 n 0000 | the science or art of strategy -06152821 09 n 01 systematics 0 004 @ 05999797 n 0000 + 10693824 n 0103 ~ 06152973 n 0000 ~ 06153186 n 0000 | the science of systematic classification -06152973 09 n 02 biosystematics 0 biosystematy 0 002 @ 06152821 n 0000 + 02666637 a 0101 | use of data (e.g. cytogenetic or biochemical) to assess taxonomic relations especially within an evolutionary framework -06153186 09 n 01 taxonomy 0 006 @ 06152821 n 0000 ;c 06037666 n 0000 + 10693824 n 0101 + 03018498 a 0101 + 03018498 a 0102 ~ 06153402 n 0000 | (biology) study of the general principles of scientific classification -06153402 09 n 02 cladistics 0 cladistic_analysis 0 001 @ 06153186 n 0000 | a system of biological taxonomy based on the quantitative analysis of comparative data and used to reconstruct cladograms summarizing the (assumed) phylogenetic relations and evolutionary history of groups of organisms -06153698 09 n 01 thanatology 0 001 @ 05999797 n 0000 | the branch of science that studies death (especially its social and psychological aspects) -06153846 09 n 04 humanistic_discipline 0 humanities 0 liberal_arts 0 arts 0 021 @ 05996646 n 0000 ~ 06154464 n 0000 ~ 06154724 n 0000 ~ 06155075 n 0000 ~ 06155432 n 0000 ~ 06155567 n 0000 ~ 06156015 n 0000 ~ 06156346 n 0000 ~ 06156968 n 0000 ~ 06157326 n 0000 ~ 06158057 n 0000 ~ 06158185 n 0000 ~ 06158346 n 0000 ~ 06169285 n 0000 ~ 06170892 n 0000 ~ 06171040 n 0000 ~ 06171388 n 0000 ~ 06171524 n 0000 ~ 06171650 n 0000 ~ 06172071 n 0000 ~ 06172294 n 0000 | studies intended to provide general knowledge and intellectual skills (rather than occupational or professional skills); "the college of arts and sciences" -06154464 09 n 01 neoclassicism 0 005 @ 06153846 n 0000 @ 04929422 n 0000 + 02834992 a 0102 + 00414080 a 0102 + 10352557 n 0101 | revival of a classical style (in art or literature or architecture or music) but from a new perspective or with a new motivation -06154724 09 n 02 classicism 0 classicalism 0 005 @ 06153846 n 0000 @ 04929422 n 0000 + 02919986 a 0101 + 09926519 n 0101 ! 06155075 n 0101 | a movement in literature and art during the 17th and 18th centuries in Europe that favored rationality and restraint and strict forms; "classicism often derived its models from the ancient Greeks and Romans" -06155075 09 n 02 Romanticism 0 Romantic_Movement 0 006 @ 06153846 n 0000 @ 04929422 n 0000 + 02789151 a 0103 + 02789151 a 0101 + 10537906 n 0101 ! 06154724 n 0101 | a movement in literature and art during the late 18th and early 19th centuries that celebrated nature rather than civilization; "Romanticism valued imagination and emotion over rationality" -06155432 09 n 01 English 0 002 @ 06153846 n 0000 + 03003616 a 0101 | the discipline that studies the English language and literature -06155567 09 n 01 history 0 008 @ 06153846 n 0000 + 01279028 a 0101 + 02920121 a 0101 -c 01178415 n 0000 -c 06514093 n 0000 -c 10177150 n 0000 -c 10551898 n 0000 -c 10552019 n 0000 | the discipline that records and interprets past events involving human beings; "he teaches Medieval history"; "history takes the long view" -06155891 09 n 01 historicism 0 001 @ 05888929 n 0000 | a theory that social and cultural events are determined by history -06156015 09 n 01 art_history 0 002 @ 06153846 n 0000 ~ 06156169 n 0000 | the academic discipline that studies the development of painting and sculpture -06156169 09 n 01 iconology 0 001 @ 06156015 n 0000 | the branch of art history that studies visual images and their symbolic meaning (especially in social or political terms) -06156346 09 n 01 chronology 0 004 @ 06153846 n 0000 + 02956880 a 0101 + 00277399 v 0101 ~ 06156521 n 0000 | the determination of the actual temporal sequence of past events -06156521 09 n 01 glottochronology 0 002 @ 06156346 n 0000 + 02881057 a 0101 | the determination of how long ago different languages evolved from a common source language; "he mapped the glottochronology of the Romance languages" -06156752 09 n 01 history 1 002 @ 00023271 n 0000 + 01730060 a 0101 | all that is remembered of the past as preserved in writing; a body of knowledge; "the dawn of recorded history"; "from the beginning of history" -06156968 09 n 02 fine_arts 0 beaux_arts 0 014 @ 06153846 n 0000 -c 00070288 a 0000 -c 00413622 a 0000 -c 00414227 a 0000 -c 01908755 a 0000 -c 01912858 a 0000 -c 01980796 a 0000 -c 01981009 a 0000 -c 01981243 a 0000 ~ 00936620 n 0000 ~ 00937656 n 0000 -c 04950537 n 0000 ~ 06123363 n 0000 -c 01737141 v 0000 | the study and creation of visual works of art -06157326 09 n 01 performing_arts 0 034 @ 06153846 n 0000 + 10415638 n 0102 ~ 00100253 n 0000 ~ 00428270 n 0000 ~ 00548326 n 0000 -c 01710317 v 0000 -c 01710481 v 0000 -c 01710934 v 0000 -c 01711073 v 0000 -c 01711211 v 0000 -c 01711336 v 0000 -c 01711445 v 0000 -c 01713348 v 0000 -c 01713587 v 0000 -c 01714208 v 0000 -c 01714805 v 0000 -c 01715357 v 0000 -c 01715784 v 0000 -c 01716112 v 0000 -c 01716619 v 0000 -c 01716882 v 0000 -c 01717628 v 0000 -c 01717851 v 0000 -c 01718015 v 0000 -c 01718185 v 0000 -c 01718331 v 0000 -c 01718535 v 0000 -c 01718755 v 0000 -c 01719302 v 0000 -c 01723224 v 0000 -c 01723690 v 0000 -c 01732172 v 0000 -c 02332311 v 0000 -c 02337545 v 0000 | arts or skills that require public performance -06158057 09 n 01 Occidentalism 0 001 @ 06153846 n 0000 | the scholarly knowledge of western cultures and languages and people -06158185 09 n 02 Orientalism 0 Oriental_Studies 0 002 @ 06153846 n 0000 + 10383689 n 0101 | the scholarly knowledge of Asian cultures and languages and people -06158346 09 n 01 philosophy 0 054 @ 06153846 n 0000 + 00858053 a 0101 + 02858231 a 0101 + 02858231 a 0102 + 10425946 n 0101 + 10423589 n 0101 + 00630026 v 0101 + 00630026 v 0102 -c 01273910 a 0000 -c 01274125 a 0000 -c 01430452 a 0000 -c 02784317 a 0000 -c 05968971 n 0000 -c 05969194 n 0000 -c 05970012 n 0000 -c 05970311 n 0000 -c 05970755 n 0000 -c 05971086 n 0000 -c 05971621 n 0000 -c 05972103 n 0000 -c 05972264 n 0000 -c 05972417 n 0000 -c 05972585 n 0000 -c 05972781 n 0000 -c 05973007 n 0000 -c 05973198 n 0000 -c 05973372 n 0000 -c 05974156 n 0000 -c 05974363 n 0000 -c 05974564 n 0000 -c 05974798 n 0000 -c 05975258 n 0000 -c 05975473 n 0000 -c 05975659 n 0000 -c 05975846 n 0000 -c 05976257 n 0000 -c 05976471 n 0000 -c 05976649 n 0000 -c 05976948 n 0000 -c 05977135 n 0000 -c 05977619 n 0000 -c 05977977 n 0000 -c 05983217 n 0000 ~ 06159473 n 0000 ~ 06161048 n 0000 ~ 06161223 n 0000 ~ 06161606 n 0000 ~ 06161718 n 0000 ~ 06162653 n 0000 ~ 06163548 n 0000 ~ 06163751 n 0000 ~ 06166748 n 0000 ~ 06192186 n 0000 -c 10423589 n 0000 | the rational investigation of questions about existence and knowledge and ethics -06159473 09 n 02 ethics 0 moral_philosophy 0 011 @ 06158346 n 0000 + 02723563 a 0101 + 10065066 n 0101 + 10065066 n 0102 -c 05953263 n 0000 ~ 06159777 n 0000 ~ 06160055 n 0000 ~ 06160418 n 0000 ~ 06160596 n 0000 -c 06250061 n 0000 -c 06250597 n 0000 | the philosophical study of moral values and rules -06159777 09 n 01 bioethics 0 002 @ 06159473 n 0000 ~ 06159924 n 0000 | the branch of ethics that studies moral values in the biomedical sciences -06159924 09 n 01 neuroethics 0 001 @ 06159777 n 0000 | the study of ethical implications of treatments for neurological diseases -06160055 09 n 01 casuistry 0 003 @ 06159473 n 0000 + 03053460 a 0101 ~ 06160781 n 0000 | moral philosophy based on the application of general ethical principles to resolve moral dilemmas -06160244 09 n 01 casuistry 1 003 @ 05773049 n 0000 + 03053657 a 0101 + 09899929 n 0101 | argumentation that is specious or excessively subtle and intended to be misleading -06160418 09 n 02 eudemonism 0 endaemonism 0 001 @ 06159473 n 0000 | an ethical system that evaluates actions by reference to personal well-being through a life based on reason -06160596 09 n 01 hedonism 0 004 @ 06159473 n 0000 + 01298884 a 0102 + 01298884 a 0101 + 10168183 n 0101 | an ethical system that evaluates the pursuit of pleasure as the highest good -06160781 09 n 01 probabilism 1 002 @ 06160055 n 0000 + 03103058 a 0101 | a Roman Catholic system of casuistry that when expert opinions differ an actor can follow any solidly probable opinion that he wishes even though some different opinion might be more probable -06161048 09 n 02 etiology 0 aetiology 0 005 @ 06158346 n 0000 + 02941235 a 0204 + 02941235 a 0203 + 02941235 a 0102 + 02941235 a 0101 | the philosophical study of causation -06161223 09 n 02 aesthetics 0 esthetics 0 006 @ 06158346 n 0000 ;c 00933420 n 0000 + 00069531 a 0204 + 10064669 n 0201 + 00069531 a 0103 + 10064669 n 0102 | (art) the branch of philosophy dealing with beauty and taste (emphasizing the evaluative criteria that are applied to art); "traditional aesthetics assumed the existence of universal and timeless criteria of artistic value" -06161606 09 n 01 axiology 0 002 @ 06158346 n 0000 + 02655318 a 0101 | the study of values and value judgments -06161718 09 n 03 jurisprudence 0 law 2 legal_philosophy 0 008 @ 06158346 n 0000 + 02753868 a 0101 + 10225219 n 0103 + 10227985 n 0101 ~ 06162042 n 0000 ~ 06162223 n 0000 ~ 06162377 n 0000 ~ 06162528 n 0000 | the branch of philosophy concerned with the law and the principles that lead courts to make the decisions they do -06162042 09 n 01 contract_law 0 002 @ 06161718 n 0000 -c 07176073 n 0000 | that branch of jurisprudence that studies the rights and obligations of parties entering into contracts -06162223 09 n 01 corporation_law 0 002 @ 06161718 n 0000 -c 01060530 n 0000 | that branch of jurisprudence that studies the laws governing corporations -06162377 09 n 01 matrimonial_law 0 002 @ 06161718 n 0000 -c 07178337 n 0000 | that branch of jurisprudence that studies the laws governing matrimony -06162528 09 n 01 patent_law 0 001 @ 06161718 n 0000 | that branch of jurisprudence that studies the laws governing patents -06162653 09 n 01 metaphysics 0 006 @ 06158346 n 0000 + 02865814 a 0101 -c 05921868 n 0000 ~ 06162847 n 0000 ~ 06163223 n 0000 -c 13955152 n 0000 | the philosophical study of being and knowing -06162847 09 n 01 ontology 0 002 @ 06162653 n 0000 + 02920464 a 0101 | the metaphysical study of the nature of being and existence -06162979 09 n 01 ontology 1 002 @ 05726596 n 0000 ;c 06128570 n 0000 | (computer science) a rigorous and exhaustive organization of some knowledge domain that is usually hierarchical and contains all the relevant entities and their relations -06163223 09 n 01 cosmology 1 004 @ 06162653 n 0000 + 02703001 a 0101 + 02703001 a 0102 + 09819667 n 0101 | the metaphysical study of the origin and nature of the universe -06163396 09 n 01 dialectics 1 001 @ 05793210 n 0000 | a rationale for dialectical materialism based on change through the conflict of opposing forces -06163548 09 n 01 dialectic 0 004 @ 06158346 n 0000 + 03023644 a 0101 + 03023644 a 0102 + 10011360 n 0101 | any formal system of reasoning that arrives at the truth by the exchange of logical arguments -06163751 09 n 01 logic 0 044 @ 06158346 n 0000 + 10269785 n 0101 + 10269785 n 0102 -c 00110853 a 0000 -c 00111129 a 0000 -c 00722707 a 0000 -c 00723910 a 0000 -c 01296270 a 0000 -c 01297152 a 0000 -c 01547721 a 0000 -c 02372697 a 0000 -c 02373981 a 0000 -c 02461295 a 0000 -c 02592890 a 0000 -c 02593269 a 0000 -c 02992070 a 0000 -c 04785195 n 0000 -c 04785414 n 0000 -c 05780563 n 0000 -c 05781663 n 0000 -c 05857974 n 0000 ~ 06166644 n 0000 -c 06302542 n 0000 -c 06310125 n 0000 -c 06316813 n 0000 -c 06647614 n 0000 -c 06724559 n 0000 -c 06733227 n 0000 -c 06738823 n 0000 -c 06739013 n 0000 -c 06750804 n 0000 -c 06751142 n 0000 -c 06751367 n 0000 -c 06751572 n 0000 -c 06753299 n 0000 -c 06753550 n 0000 -c 07091385 n 0000 -c 07206887 n 0000 -c 13509042 n 0000 -c 13783038 n 0000 -c 13798491 n 0000 -c 13798814 n 0000 -c 00492095 v 0000 -c 00716345 v 0000 | the branch of philosophy that analyzes inference -06164665 09 n 03 symbolic_logic 0 mathematical_logic 0 formal_logic 0 006 @ 05664069 n 0000 ~ 06165000 n 0000 ~ 06165147 n 0000 ~ 06165364 n 0000 ~ 06165823 n 0000 ~ 06166494 n 0000 | any logical system that abstracts the form of statements away from their content in order to establish abstract criteria of consistency and validity -06165000 09 n 02 Boolean_logic 0 Boolean_algebra 0 001 @ 06164665 n 0000 | a system of symbolic logic devised by George Boole; used in computers -06165147 09 n 02 propositional_logic 0 propositional_calculus 0 001 @ 06164665 n 0000 | a branch of symbolic logic dealing with propositions as units and with their combinations and the connectives that relate them -06165364 09 n 02 predicate_calculus 0 functional_calculus 0 002 @ 06164665 n 0000 %p 06165623 n 0000 | a system of symbolic logic that represents individuals and predicates and quantification over individuals (as well as the relations between propositions) -06165623 09 n 01 quantification 0 003 @ 05846355 n 0000 #p 06165364 n 0000 + 00492095 v 0101 | a limitation imposed on the variables of a proposition (as by the quantifiers `some' or `all' or `no') -06165823 09 n 01 modal_logic 1 005 @ 06164665 n 0000 ~ 06166046 n 0000 ~ 06166166 n 0000 ~ 06166274 n 0000 ~ 06166394 n 0000 | a system of logic whose formal properties resemble certain moral and epistemological concepts -06166046 09 n 01 alethic_logic 0 001 @ 06165823 n 0000 | the modal logic of necessity and possibility and contingency -06166166 09 n 01 deontic_logic 0 001 @ 06165823 n 0000 | the modal logic of obligation and permissibility -06166274 09 n 01 epistemic_logic 0 001 @ 06165823 n 0000 | the modal logic of knowledge and uncertainty and ignorance -06166394 09 n 01 doxastic_logic 0 001 @ 06165823 n 0000 | the modal logic of belief and disbelief -06166494 09 n 01 fuzzy_logic 0 001 @ 06164665 n 0000 | a form of mathematical logic in which truth can assume a continuum of values between 0 and 1 -06166644 09 n 01 modal_logic 0 001 @ 06163751 n 0000 | the logical study of necessity and possibility -06166748 09 n 01 epistemology 0 004 @ 06158346 n 0000 + 02850132 a 0102 + 10062385 n 0101 ~ 06166898 n 0000 | the philosophical theory of knowledge -06166898 09 n 02 methodology 1 methodological_analysis 0 002 @ 06166748 n 0000 + 02943463 a 0101 | the branch of philosophy that analyzes the principles and procedures of inquiry in a particular discipline -06167106 09 n 01 phenomenology 0 001 @ 05943300 n 0000 | a philosophical doctrine proposed by Edmund Husserl based on the study of human experience in which considerations of objective reality are not taken into account -06167328 09 n 02 philosophical_doctrine 0 philosophical_theory 0 039 @ 05943300 n 0000 ~ 05968971 n 0000 ~ 05969194 n 0000 ~ 05969537 n 0000 ~ 05969758 n 0000 ~ 05970012 n 0000 ~ 05970311 n 0000 ~ 05970564 n 0000 ~ 05970755 n 0000 ~ 05971086 n 0000 ~ 05971621 n 0000 ~ 05971913 n 0000 ~ 05972103 n 0000 ~ 05972264 n 0000 ~ 05972417 n 0000 ~ 05972585 n 0000 ~ 05972781 n 0000 ~ 05973007 n 0000 ~ 05973198 n 0000 ~ 05973372 n 0000 ~ 05973603 n 0000 ~ 05974156 n 0000 ~ 05974363 n 0000 ~ 05974564 n 0000 ~ 05974798 n 0000 ~ 05975258 n 0000 ~ 05975473 n 0000 ~ 05975659 n 0000 ~ 05975846 n 0000 ~ 05976065 n 0000 ~ 05976257 n 0000 ~ 05976471 n 0000 ~ 05976649 n 0000 ~ 05976948 n 0000 ~ 05977135 n 0000 ~ 05977340 n 0000 ~ 05977619 n 0000 ~ 05977800 n 0000 ~ 05977977 n 0000 | a doctrine accepted by adherents to a philosophy -06168152 09 n 02 structuralism 3 structural_sociology 0 002 @ 05989479 n 0000 #p 06151693 n 0000 | a sociological theory based on the premise that society comes before individuals -06168334 09 n 02 structuralism 2 structural_anthropology 0 002 @ 05989479 n 0000 #p 06143546 n 0000 | an anthropological theory that there are unobservable social structures that generate observable social phenomena -06168552 09 n 01 computational_linguistics 0 002 @ 06172789 n 0000 ~ 06133503 n 0000 | the use of computers for linguistic research and applications -06168703 09 n 02 dialect_geography 0 linguistic_geography 0 001 @ 06172789 n 0000 | the study of the geographical distribution of linguistic features -06168855 09 n 01 etymology 0 006 @ 06172789 n 0000 + 03022003 a 0101 + 10066314 n 0101 + 01070455 v 0101 + 00634286 v 0101 ~ 06179574 n 0000 | the study of the sources and development of words -06169050 09 n 03 historical_linguistics 0 diachronic_linguistics 0 diachrony 0 004 @ 06172789 n 0000 + 02377418 a 0301 %p 06180720 n 0000 -c 06744154 n 0000 | the study of linguistic change; "the synchrony and diachrony of language" -06169285 09 n 01 literary_study 0 007 @ 06153846 n 0000 ~ 06169488 n 0000 ~ 06169667 n 0000 ~ 06169806 n 0000 ~ 06169932 n 0000 ~ 06170371 n 0000 ~ 06170498 n 0000 | the humanistic study of literature -06169488 09 n 02 literature 0 lit 0 003 @ 06169285 n 0000 ;c 06364641 n 0000 + 01421368 a 0101 | the humanistic study of a body of literature; "he took a course in Russian lit" -06169667 09 n 01 comparative_literature 0 001 @ 06169285 n 0000 | study of literary works from different cultures (often in translation) -06169806 09 n 02 literary_criticism 0 lit_crit 0 001 @ 06169285 n 0000 | the informed analysis and evaluation of literature -06169932 09 n 01 poetics 0 002 @ 06169285 n 0000 ~ 06170025 n 0000 | study of poetic works -06170025 09 n 02 prosody 0 metrics 0 013 @ 06169932 n 0000 -c 02020310 a 0000 -c 02897040 a 0000 -c 03059340 a 0000 -c 03120034 a 0000 -c 03126499 a 0000 -c 06348215 n 0000 -c 06348373 n 0000 -c 06348500 n 0000 -c 06348685 n 0000 -c 07093895 n 0000 -c 07094093 n 0000 -c 07094843 n 0000 | the study of poetic meter and the art of versification -06170371 09 n 01 classics 0 002 @ 06169285 n 0000 + 09926656 n 0101 | study of the literary works of ancient Greece and Rome -06170498 09 n 01 rhetoric 0 014 @ 06169285 n 0000 + 02938854 a 0101 + 02016535 a 0101 + 10380672 n 0103 -c 01420899 a 0000 -c 02619686 a 0000 -c 06397171 n 0000 -c 06397307 n 0000 -c 06399126 n 0000 -c 07098193 n 0000 -c 07099844 n 0000 -c 07099965 n 0000 -c 07100387 n 0000 -c 07239183 n 0000 | study of the technique and rules for using language effectively (especially in public speaking) -06170892 09 n 01 library_science 0 002 @ 06153846 n 0000 -c 13592598 n 0000 | the study of the principles and practices of library administration -06171040 09 n 02 linguistics 1 philology 0 007 @ 06153846 n 0000 + 03019955 a 0201 + 10423225 n 0201 + 02842445 a 0101 + 10264437 n 0101 ~ 06171265 n 0000 ~ 06178812 n 0000 | the humanistic study of language and literature -06171265 09 n 01 dialectology 0 001 @ 06171040 n 0000 | the branch of philology that is devoted to the study of dialects -06171388 09 n 01 musicology 0 003 @ 06153846 n 0000 + 02867945 a 0101 + 10341243 n 0101 | the scholarly and scientific study of music -06171524 09 n 01 Sinology 0 002 @ 06153846 n 0000 + 10601234 n 0101 | the study of Chinese history and language and culture -06171650 09 n 02 stemmatology 0 stemmatics 0 001 @ 06153846 n 0000 | the humanistic discipline that attempts to reconstruct the transmission of a text (especially a text in manuscript form) on the basis of relations between the various surviving manuscripts (sometimes using cladistic analysis); "stemmatology also plays an important role in musicology"; "transcription errors are of decisive importance in stemmatics" -06172071 09 n 01 trivium 0 002 @ 06153846 n 0000 ;c 15259284 n 0000 | (Middle Ages) an introductory curriculum at a medieval university involving grammar and logic and rhetoric; considered to be a triple way to eloquence -06172294 09 n 01 quadrivium 0 002 @ 06153846 n 0000 ;c 15259284 n 0000 | (Middle Ages) a higher division of the curriculum in a medieval university involving arithmetic and music and geometry and astronomy -06172502 09 n 04 cryptanalysis 0 cryptanalytics 0 cryptography 0 cryptology 0 007 @ 05999797 n 0000 + 02706691 a 0404 + 02706691 a 0405 + 09981540 n 0403 + 02706691 a 0303 + 09981540 n 0302 + 02706691 a 0101 | the science of analyzing and deciphering codes and ciphers and cryptograms -06172789 09 n 01 linguistics 0 082 @ 05999797 n 0000 #p 06142861 n 0000 + 02843218 a 0101 + 10264437 n 0101 -c 00111415 a 0000 -c 00111856 a 0000 -c 00120252 a 0000 -c 00120411 a 0000 -c 00201802 a 0000 -c 00699651 a 0000 -c 00699876 a 0000 -c 00819852 a 0000 -c 00820219 a 0000 -c 00820458 a 0000 -c 00820721 a 0000 -c 00820975 a 0000 -c 00821208 a 0000 -c 01973823 a 0000 -c 02297664 a 0000 -c 02297966 a 0000 -c 02298285 a 0000 -c 02298642 a 0000 -c 02298766 a 0000 -c 02478052 a 0000 -c 02482790 a 0000 -c 02593124 a 0000 -c 02593578 a 0000 -c 02836479 a 0000 -c 02856124 a 0000 -c 02993853 a 0000 -c 03041636 a 0000 -c 03045196 a 0000 -c 03102278 a 0000 -c 03129490 a 0000 -c 00098051 n 0000 -c 04986883 n 0000 -c 05087664 n 0000 -c 05153897 n 0000 -c 05850212 n 0000 ~ 06168552 n 0000 ~ 06168703 n 0000 ~ 06168855 n 0000 ~ 06169050 n 0000 -c 06174404 n 0000 -c 06175829 n 0000 -c 06175967 n 0000 -c 06176107 n 0000 -c 06176322 n 0000 -c 06176519 n 0000 -c 06177450 n 0000 ~ 06179290 n 0000 ~ 06179492 n 0000 ~ 06179792 n 0000 ~ 06181123 n 0000 ~ 06181284 n 0000 ~ 06181448 n 0000 ~ 06181584 n 0000 ~ 06181893 n 0000 -c 06249910 n 0000 -c 06250444 n 0000 -c 06290051 n 0000 -c 06290637 n 0000 -c 06300193 n 0000 -c 06331803 n 0000 -c 06483702 n 0000 -c 06483992 n 0000 -c 06484279 n 0000 -c 07111510 n 0000 -c 07111711 n 0000 -c 07111933 n 0000 -c 07259772 n 0000 -c 07259984 n 0000 -c 07276018 n 0000 -c 08103635 n 0000 -c 13433061 n 0000 -c 13508333 n 0000 -c 13802920 n 0000 -c 00587390 v 0000 -c 00587522 v 0000 -c 00634286 v 0000 -c 01013856 v 0000 -c 01735556 v 0000 | the scientific study of language -06174404 09 n 01 grammar 0 068 @ 06181584 n 0000 ;c 06172789 n 0000 + 01146012 a 0101 + 02880322 a 0102 + 02880322 a 0101 -c 00041618 a 0000 -c 00041841 a 0000 -c 00042037 a 0000 -c 00042228 a 0000 -c 00172562 a 0000 -c 00172774 a 0000 -c 00172993 a 0000 -c 00202508 a 0000 -c 00552315 a 0000 -c 00552618 a 0000 -c 00563789 a 0000 -c 00564858 a 0000 -c 00730215 a 0000 -c 00730470 a 0000 -c 00732318 a 0000 -c 00732456 a 0000 -c 00870614 a 0000 -c 00870827 a 0000 -c 01008439 a 0000 -c 01008745 a 0000 -c 01296816 a 0000 -c 01540871 a 0000 -c 01541258 a 0000 -c 01946267 a 0000 -c 01960432 a 0000 -c 01961786 a 0000 -c 02004385 a 0000 -c 02005460 a 0000 -c 02381089 a 0000 -c 02381189 a 0000 -c 02488705 a 0000 -c 02488907 a 0000 -c 02631686 a 0000 -c 02768958 a 0000 -c 02769463 a 0000 -c 02861997 a 0000 -c 02862251 a 0000 -c 02992070 a 0000 -c 02992914 a 0000 -c 03093862 a 0000 -c 03094107 a 0000 -c 03094404 a 0000 -c 03094520 a 0000 -c 03094740 a 0000 -c 03097103 a 0000 -c 03120834 a 0000 -c 03121060 a 0000 -c 00268651 r 0000 ~ 06175829 n 0000 ~ 06175967 n 0000 ~ 06176322 n 0000 ~ 06178042 n 0000 -c 06291809 n 0000 -c 06302381 n 0000 -c 06309383 n 0000 -c 06309931 n 0000 -c 06310237 n 0000 -c 06312966 n 0000 -c 06314144 n 0000 -c 06324669 n 0000 -c 00171127 v 0000 -c 00643910 v 0000 -c 02741793 v 0000 | the branch of linguistics that deals with syntax and morphology (and sometimes also deals with semantics) -06175829 09 n 01 descriptive_grammar 0 002 @ 06174404 n 0000 ;c 06172789 n 0000 | a grammar that is produced by descriptive linguistics -06175967 09 n 01 prescriptive_grammar 0 002 @ 06174404 n 0000 ;c 06172789 n 0000 | a grammar that is produced by prescriptive linguistics -06176107 09 n 03 syntax 1 sentence_structure 0 phrase_structure 0 005 @ 05726345 n 0000 ;c 06172789 n 0000 + 02880557 a 0101 + 02880557 a 0102 + 10141364 n 0102 | the grammatical arrangement of words in sentences -06176322 09 n 01 syntax 0 006 @ 06174404 n 0000 ;c 06172789 n 0000 + 02880557 a 0101 + 02880557 a 0102 + 10141364 n 0102 ~ 06176519 n 0000 | studies of the rules for forming admissible sentences -06176519 09 n 01 generative_grammar 0 002 @ 06176322 n 0000 ;c 06172789 n 0000 | (linguistics) a type of grammar that describes syntax in terms of a set of logical rules that can generate all and only the infinite number of grammatical sentences in a language and assigns them all the correct structural description -06176837 09 n 01 orthoepy 0 001 @ 06177450 n 0000 | a term formerly used for the part of phonology that dealt with the `correct' pronunciation of words and its relation to `correct' orthography -06177033 09 n 01 phonetics 0 014 @ 06094774 n 0000 + 02857893 a 0101 + 02857726 a 0101 + 10426454 n 0101 -c 01444022 a 0000 -c 01444230 a 0000 -c 02404868 a 0000 -c 02405038 a 0000 -c 02405160 a 0000 -c 07111047 n 0000 -c 13498666 n 0000 -c 00160447 v 0000 -c 00161012 v 0000 -c 00584410 v 0000 | the branch of acoustics concerned with speech processes including its production and perception and acoustic analysis -06177450 09 n 02 phonology 0 phonemics 0 007 @ 06181584 n 0000 ;c 06172789 n 0000 + 02777160 a 0102 + 02777160 a 0101 + 10426630 n 0101 ~ 06176837 n 0000 -c 07132729 n 0000 | the study of the sound system of a given language and the analysis and classification of its phonemes -06177729 09 n 04 morphology 2 sound_structure 0 syllable_structure 0 word_structure 0 003 @ 05726345 n 0000 + 02949931 a 0101 ~ 06177923 n 0000 | the admissible arrangement of sounds in words -06177923 09 n 01 affixation 0 002 @ 06177729 n 0000 + 01298283 v 0101 | the result of adding an affix to a root word -06178042 09 n 01 morphology 1 006 @ 06174404 n 0000 + 02949931 a 0101 + 02949931 a 0102 ~ 06178238 n 0000 ~ 06178380 n 0000 ~ 06178510 n 0000 | studies of the rules for forming admissible words -06178238 09 n 02 inflectional_morphology 0 accidence 0 001 @ 06178042 n 0000 | the part of grammar that deals with the inflections of words -06178380 09 n 01 derivational_morphology 0 001 @ 06178042 n 0000 | the part of grammar that deals with the derivations of words -06178510 09 n 01 compound_morphology 0 001 @ 06178042 n 0000 | the part of grammar that deals with combinations of simple words into compound words -06178660 09 n 01 morphophonemics 0 001 @ 06181584 n 0000 | the study of the phonological realization of the allomorphs of the morphemes of a language -06178812 09 n 01 lexicology 0 004 @ 06171040 n 0000 + 10256080 n 0102 ~ 06178995 n 0000 ~ 06179145 n 0000 | the branch of linguistics that studies the lexical component of language -06178995 09 n 01 onomastics 0 002 @ 06178812 n 0000 + 02771174 a 0101 | the branch of lexicology that studies the forms and origins of proper names -06179145 09 n 02 toponymy 0 toponomy 0 001 @ 06178812 n 0000 | the branch of lexicology that studies the place names of a region or a language -06179290 09 n 01 neurolinguistics 0 002 @ 06172789 n 0000 + 10354053 n 0101 | the branch of linguistics that studies the relation between language and the structure and function of the nervous system -06179492 09 n 01 pragmatics 0 001 @ 06172789 n 0000 | the study of language use -06179574 09 n 01 lexicostatistics 0 002 @ 06168855 n 0000 + 02881246 a 0101 | a statistical technique used in glottochronology; used to estimate how long ago different languages evolved from a common source language -06179792 09 n 01 semantics 0 007 @ 06172789 n 0000 + 02842042 a 0101 + 10577820 n 0101 ~ 06179985 n 0000 ~ 06180282 n 0000 ~ 06180412 n 0000 ~ 06180548 n 0000 | the study of language meaning -06179985 09 n 01 deixis 0 002 @ 06179792 n 0000 + 03135403 a 0101 | the function of pointing or specifying from the perspective of a participant in an act of speech or writing; aspects of a communication whose interpretation depends on knowledge of the context in which the communication occurs -06180282 09 n 01 formal_semantics 0 001 @ 06179792 n 0000 | the branch of semantics that studies the logical aspects of meaning -06180412 09 n 01 lexical_semantics 0 001 @ 06179792 n 0000 | the branch of semantics that studies the meanings and relations of words -06180548 09 n 03 cognitive_semantics 0 conceptual_semantics 0 semasiology 0 001 @ 06179792 n 0000 | the branch of semantics that studies the cognitive aspects of meaning -06180720 09 n 01 sound_law 0 004 @ 05870916 n 0000 #p 06169050 n 0000 ~ 06180890 n 0000 ~ 06181034 n 0000 | a law describing sound changes in the history of a language -06180890 09 n 01 Grimm's_law 0 001 @ 06180720 n 0000 | a sound law relating German consonants and consonants in other Indo-European languages -06181034 09 n 01 Verner's_law 0 001 @ 06180720 n 0000 | a qualification of Grimm's law -06181123 09 n 01 sociolinguistics 0 003 @ 06172789 n 0000 + 02842981 a 0101 + 10620586 n 0101 | the study of language in relation to its sociocultural context -06181284 09 n 02 structuralism 1 structural_linguistics 0 001 @ 06172789 n 0000 | linguistics defined as the analysis of formal structures in a text or discourse -06181448 09 n 01 synchronic_linguistics 0 001 @ 06172789 n 0000 | the study of a language without reference to its historical context -06181584 09 n 01 descriptive_linguistics 0 006 @ 06172789 n 0000 ! 06181893 n 0101 ~ 06174404 n 0000 ~ 06177450 n 0000 ~ 06178660 n 0000 -c 13462387 n 0000 | a description (at a given point in time) of a language with respect to its phonology and morphology and syntax and semantics without value judgments -06181893 09 n 01 prescriptive_linguistics 0 002 @ 06172789 n 0000 ! 06181584 n 0101 | an account of how a language should be used instead of how it is actually used; a prescription for the `correct' phonology and morphology and syntax and semantics -06182144 09 n 02 theology 1 divinity 0 025 @ 05996646 n 0000 + 02907000 a 0101 + 10705615 n 0102 -c 01721401 a 0000 -c 01721691 a 0000 -c 02952814 a 0000 -c 02953235 a 0000 -c 02982102 a 0000 -c 00094001 n 0000 -c 00237869 n 0000 -c 00613973 n 0000 -c 05630874 n 0000 -c 05631449 n 0000 -c 05686690 n 0000 -c 05767580 n 0000 -c 05966129 n 0000 ~ 06182757 n 0000 ~ 06182866 n 0000 ~ 06183004 n 0000 ~ 06183162 n 0000 ~ 06183398 n 0000 ~ 06183518 n 0000 ~ 06183652 n 0000 ~ 06183745 n 0000 -c 06183899 n 0000 | the rational and systematic study of religion and its influences and of the nature of religious truth -06182757 09 n 01 angelology 0 001 @ 06182144 n 0000 | the branch of theology that is concerned with angels -06182866 09 n 01 apologetics 0 001 @ 06182144 n 0000 | the branch of theology that is concerned with the defense of Christian doctrines -06183004 09 n 01 ecclesiology 0 001 @ 06182144 n 0000 | the branch of theology concerned with the nature and the constitution and the functions of a church -06183162 09 n 01 eschatology 0 003 @ 06182144 n 0000 + 02722630 a 0101 + 10063340 n 0101 | the branch of theology that is concerned with such final things as death and Last Judgment; Heaven and Hell; the ultimate destiny of humankind -06183398 09 n 01 hermeneutics 0 001 @ 06182144 n 0000 | the branch of theology that deals with principles of exegesis -06183518 09 n 01 homiletics 0 002 @ 06182144 n 0000 + 03073574 a 0102 | the branch of theology that deals with sermons and homilies -06183652 09 n 02 liturgics 0 liturgiology 0 001 @ 06182144 n 0000 | the study of liturgies -06183745 09 n 01 theodicy 0 001 @ 06182144 n 0000 | the branch of theology that defends God's goodness and justice in the face of the existence of evil -06183899 09 n 02 theology 0 theological_system 0 011 @ 05661996 n 0000 ;c 06182144 n 0000 + 02907000 a 0101 + 10705615 n 0102 ~ 06184270 n 0000 ~ 06184733 n 0000 ~ 06184963 n 0000 -c 07327288 n 0000 -c 00703310 v 0000 -c 01071155 v 0000 -c 02144243 v 0000 | a particular system or school of religious beliefs and teachings; "Jewish theology"; "Roman Catholic theology" -06184270 09 n 01 Christian_theology 0 012 @ 06183899 n 0000 -c 02702473 a 0000 -c 04840715 n 0000 ~ 06184574 n 0000 ~ 06185138 n 0000 ~ 06185302 n 0000 ~ 06185458 n 0000 ~ 06191687 n 0000 %p 06192908 n 0000 -c 07322550 n 0000 -c 07543910 n 0000 -c 14458181 n 0000 | the teachings of Christian churches -06184574 09 n 01 Christology 0 002 @ 06184270 n 0000 + 02696090 a 0101 | the branch of theology concerned with the person and attributes and deeds of Christ -06184733 09 n 01 liberation_theology 0 001 @ 06183899 n 0000 | a form of Christian theology (developed by South American Roman Catholics) that emphasizes social and political liberation as the anticipation of ultimate salvation -06184963 09 n 01 natural_theology 0 001 @ 06183899 n 0000 | a theology that holds that knowledge of God can be acquired by human reason without the aid of divine revelation -06185138 09 n 02 Jesuitism 0 Jesuitry 0 002 @ 06184270 n 0000 + 03076935 a 0102 | the theology or the practices of the Jesuits (often considered to be casuistic) -06185302 09 n 02 patristics 0 patrology 0 002 @ 06184270 n 0000 + 03020463 a 0101 | the study of the lives, writings, and doctrines of the Church Fathers -06185458 09 n 01 polemics 0 001 @ 06184270 n 0000 | the branch of Christian theology devoted to the refutation of errors -06185581 09 n 01 states'_rights 0 002 @ 05943300 n 0000 ~ 06185748 n 0000 | a doctrine that federal powers should be curtailed and returned to the individual states -06185748 09 n 01 nullification 0 002 @ 06185581 n 0000 + 02478059 v 0106 | the states'-rights doctrine that a state can refuse to recognize or to enforce a federal law passed by the United States Congress -06185955 09 n 03 teaching 0 precept 1 commandment 0 003 @ 05943300 n 0000 ~ 05957913 n 0000 ~ 06186166 n 0000 | a doctrine that is taught; "the teachings of religion"; "he believed all the Christian precepts" -06186166 09 n 02 mitzvah 0 mitsvah 0 002 @ 06185955 n 0000 ;c 06232880 n 0000 | (Judaism) a precept or commandment of the Jewish law -06186301 09 n 01 theological_doctrine 0 035 @ 05943300 n 0000 ~ 05767580 n 0000 ~ 05966129 n 0000 ~ 05973603 n 0000 ~ 05976805 n 0000 ~ 06187013 n 0000 ~ 06187154 n 0000 ~ 06187350 n 0000 ~ 06187756 n 0000 ~ 06187960 n 0000 ~ 06188146 n 0000 ~ 06188292 n 0000 ~ 06188603 n 0000 ~ 06188721 n 0000 ~ 06188889 n 0000 ~ 06188989 n 0000 ~ 06189241 n 0000 ~ 06189341 n 0000 ~ 06189551 n 0000 ~ 06189776 n 0000 ~ 06190060 n 0000 ~ 06190305 n 0000 ~ 06190554 n 0000 ~ 06190809 n 0000 ~ 06191018 n 0000 ~ 06191212 n 0000 ~ 06191483 n 0000 ~ 06191854 n 0000 ~ 06192027 n 0000 ~ 06192411 n 0000 ~ 06192665 n 0000 ~ 06192908 n 0000 ~ 06222731 n 0000 ~ 06222959 n 0000 ~ 06251553 n 0000 | the doctrine of a religious group -06187013 09 n 01 Christology 1 002 @ 06186301 n 0000 + 02696090 a 0101 | a religious doctrine or theory based on Jesus or Jesus' teachings -06187154 09 n 01 antinomianism 0 001 @ 06186301 n 0000 | the theological doctrine that by faith and God's grace a Christian is freed from all laws (including the moral standards of the culture) -06187350 09 n 01 Thomism 0 001 @ 06186301 n 0000 | the comprehensive theological doctrine created by Saint Thomas Aquinas in the 13th century and still taught by the Dominicans -06187529 09 n 01 utilitarianism 0 001 @ 05943300 n 0000 | doctrine that the useful is the good; especially as elaborated by Jeremy Bentham and James Mill; the aim was said to be the greatest happiness for the greatest number -06187756 09 n 01 Arianism 0 004 @ 06186301 n 0000 @ 05980412 n 0000 + 09807609 n 0101 ! 06187960 n 0101 | heretical doctrine taught by Arius that asserted the radical primacy of the Father over the Son -06187960 09 n 01 Athanasianism 0 002 @ 06186301 n 0000 ! 06187756 n 0101 | the theological doctrine taught by Athanasius that Christ the Son is of the same substance as God the Father -06188146 09 n 02 Boehmenism 0 Behmenism 0 001 @ 06186301 n 0000 | the mystical theological doctrine of Jakob Boehme that influenced the Quakers -06188292 09 n 01 consubstantiation 0 004 @ 06186301 n 0000 + 02702473 a 0101 + 00243379 v 0101 + 00243572 v 0101 | the doctrine of the High Anglican Church that after the consecration of the Eucharist the substance of the body and blood of Christ coexists with the substance of the consecrated bread and wine -06188603 09 n 01 Episcopalianism 0 001 @ 06186301 n 0000 | the theological doctrine of church government by bishops -06188721 09 n 03 Erastianism 0 Byzantinism 0 Caesaropapism 0 001 @ 06186301 n 0000 | the doctrine that the state is supreme over the church in ecclesiastical matters -06188889 09 n 01 Hinayanism 0 001 @ 06186301 n 0000 | the religious doctrine of Hinayana Buddhism -06188989 09 n 01 Jansenism 0 002 @ 06186301 n 0000 + 10219680 n 0101 | the Roman Catholic doctrine of Cornelis Jansen and his disciples; salvation is limited to those who are subject to supernatural determinism and the rest are assigned to perdition -06189241 09 n 01 Mahayanism 0 001 @ 06186301 n 0000 | the religious doctrine of Mahayana Buddhism -06189341 09 n 01 Marcionism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | the Christian heresy of the 2nd and 3rd centuries that rejected the Old Testament and denied the incarnation of God in Jesus as a human -06189551 09 n 04 millenarianism 0 millenarism 0 millenniumism 0 chiliasm 0 003 @ 06186301 n 0000 + 02865018 a 0402 + 10318414 n 0202 | belief in the Christian doctrine of the millennium mentioned in the Book of Revelations -06189776 09 n 01 Monophysitism 0 003 @ 06186301 n 0000 @ 05980412 n 0000 + 02765825 a 0102 | a Christian heresy of the 5th and 6th centuries that challenged the orthodox definition of the two natures (human and divine) in Jesus and instead believed there was a single divine nature -06190060 09 n 01 Monothelitism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | the theological doctrine that Christ had only one will even though he had two natures (human and divine); condemned as heretical in the Third Council of Constantinople -06190305 09 n 01 Nestorianism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | the theological doctrine (named after Nestorius) that Christ is both the son of God and the man Jesus (which is opposed to Roman Catholic doctrine that Christ is fully God) -06190554 09 n 01 Pelagianism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | the theological doctrine put forward by Pelagius which denied original sin and affirmed the ability of humans to be righteous; condemned as heresy by the Council of Ephesus in 431 -06190809 09 n 01 Quakerism 0 001 @ 06186301 n 0000 | the theological doctrine of the Society of Friends characterized by opposition to war and rejection of ritual and a formal creed and an ordained ministry -06191018 09 n 01 rationalism 3 003 @ 06186301 n 0000 + 10456138 n 0102 ~ 06223922 n 0000 | the theological doctrine that human reason rather than divine revelation establishes religious truth -06191212 09 n 01 reincarnation 0 001 @ 06186301 n 0000 | the Hindu or Buddhist doctrine that a person may be reborn successively into one of five classes of living beings (god or human or animal or hungry ghost or denizen of Hell) depending on the person's own actions -06191483 09 n 01 Rosicrucianism 0 001 @ 06186301 n 0000 | the theological doctrine that venerates the rose and the cross as symbols of Christ's Resurrection and redemption; claims various occult powers -06191687 09 n 01 soteriology 0 002 @ 06184270 n 0000 + 02799689 a 0101 | the branch of Christian theology that deals with salvation as the effect of a divine agency -06191854 09 n 01 synergism 0 002 @ 06186301 n 0000 + 02946888 a 0101 | the theological doctrine that salvation results from the interaction of human will and divine grace -06192027 09 n 01 total_depravity 0 001 @ 06186301 n 0000 | the Calvinist doctrine that everyone is born in a state of corruption as a result of original sin -06192186 09 n 02 transcendentalism 0 transcendental_philosophy 0 003 @ 06158346 n 0000 + 02873359 a 0101 + 10723873 n 0101 | any system of philosophy emphasizing the intuitive and spiritual above the empirical and material -06192411 09 n 01 transubstantiation 0 002 @ 06186301 n 0000 + 00383093 v 0101 | the Roman Catholic doctrine that the whole substance of the bread and the wine changes into the substance of the body and blood of Christ when consecrated in the Eucharist -06192665 09 n 01 universalism 0 001 @ 06186301 n 0000 | the theological doctrine that all people will eventually be saved -06192789 09 n 01 vertebrate_paleontology 0 002 @ 06073888 n 0000 ~ 06074189 n 0000 | the paleontology of vertebrates -06192908 09 n 02 Virgin_Birth 0 Nativity 0 002 @ 06186301 n 0000 #p 06184270 n 0000 | the theological doctrine that Jesus Christ had no human father; Christians believe that Jesus's birth fulfilled Old Testament prophecies and was attended by miracles; the Nativity is celebrated at Christmas -06193203 09 n 02 attitude 0 mental_attitude 0 018 @ 00023271 n 0000 ~ 06193727 n 0000 ~ 06194409 n 0000 ~ 06195249 n 0000 ~ 06195418 n 0000 ~ 06195555 n 0000 ~ 06195698 n 0000 ~ 06195839 n 0000 ~ 06196071 n 0000 ~ 06196284 n 0000 ~ 06196584 n 0000 ~ 06204406 n 0000 ~ 06205154 n 0000 ~ 06206800 n 0000 ~ 06207437 n 0000 ~ 06207561 n 0000 ~ 06207733 n 0000 ~ 06208021 n 0000 | a complex mental state involving beliefs and feelings and values and dispositions to act in certain ways; "he had the attitude that work was fun" -06193727 09 n 02 credence 0 acceptance 0 004 @ 06193203 n 0000 + 00686447 v 0201 ~ 06194030 n 0000 ~ 06194216 n 0000 | the mental attitude that something is believable and should be accepted as true; "he gave credence to the gossip"; "acceptance of Newtonian mechanics was unquestioned for 200 years" -06194030 09 n 01 fatalism 1 001 @ 06193727 n 0000 | a submissive mental attitude resulting from acceptance of the doctrine that everything that happens is predetermined and inevitable -06194216 09 n 01 recognition 1 001 @ 06193727 n 0000 | an acceptance (as of a claim) as true and valid; "the recognition of the Rio Grande as a boundary between Mexico and the United States" -06194409 09 n 01 culture 2 004 @ 06193203 n 0000 ~ 06194736 n 0000 ~ 06194894 n 0000 ~ 06195096 n 0000 | the attitudes and behavior that are characteristic of a particular social group or organization; "the developing drug culture"; "the reason that the agency is doomed to inaction has something to do with the FBI culture" -06194736 09 n 01 cyberculture 0 001 @ 06194409 n 0000 | the culture that emerges from the use of computers for communication and entertainment and business -06194894 09 n 01 Kalashnikov_culture 0 001 @ 06194409 n 0000 | the attitudes and behavior in a social group that resolves political disputes by force of arms; "the Kalashnikov culture in Afghanistan" -06195096 09 n 01 mosaic_culture 0 001 @ 06194409 n 0000 | a highly diverse culture; "the city's mosaic culture results in great diversity in the arts" -06195249 09 n 02 defensive 0 defensive_attitude 0 002 @ 06193203 n 0000 + 01632066 a 0101 | an attitude of defensiveness (especially in the phrase `on the defensive') -06195418 09 n 01 hardball 0 001 @ 06193203 n 0000 | a no-nonsense attitude in business or politics; "they play hardball in the Senate" -06195555 09 n 01 high_horse 0 001 @ 06193203 n 0000 | an attitude of arrogant superiority; "get off your high horse and admit you are wrong" -06195698 09 n 01 southernism 0 002 @ 06193203 n 0000 ;r 09044862 n 0000 | an attitude characteristic of Southerners (especially in the US) -06195839 09 n 04 mentality 1 outlook 1 mindset 0 mind-set 0 003 @ 06193203 n 0000 + 02898750 a 0101 + 01779986 a 0101 | a habitual or characteristic mental attitude that determines how you will interpret and respond to situations -06196071 09 n 01 paternalism 0 003 @ 06193203 n 0000 ;c 01124794 n 0000 + 01734772 a 0101 | the attitude (of a person or a government) that subordinates should be controlled in a fatherly way for their own good -06196284 09 n 03 position 1 stance 0 posture 0 004 @ 06193203 n 0000 + 00670991 v 0201 ~ 06196442 n 0000 ~ 06210363 n 0000 | a rationalized mental attitude -06196442 09 n 01 hard_line 0 001 @ 06196284 n 0000 | a firm and uncompromising stance or position; "the governor took a hard line on drugs" -06196584 09 n 03 inclination 0 disposition 1 tendency 0 023 @ 06193203 n 0000 + 00730985 a 0301 + 00730985 a 0302 + 02719399 v 0301 + 00680841 v 0201 + 02719399 v 0104 + 00680841 v 0102 ~ 06197215 n 0000 ~ 06197664 n 0000 ~ 06198505 n 0000 ~ 06198708 n 0000 ~ 06198876 n 0000 ~ 06199142 n 0000 ~ 06199446 n 0000 ~ 06199561 n 0000 ~ 06199702 n 0000 ~ 06199893 n 0000 ~ 06200010 n 0000 ~ 06200178 n 0000 ~ 06200617 n 0000 ~ 06200741 n 0000 ~ 06201136 n 0000 ~ 06202686 n 0000 | an attitude of mind especially one that favors one alternative over others; "he had an inclination to give up too easily"; "a tendency to be too strict" -06197215 09 n 01 direction 0 002 @ 06196584 n 0000 ~ 06197503 n 0000 | a general course along which something has a tendency to develop; "I couldn't follow the direction of his thoughts"; "his ideals determined the direction of his career"; "they proposed a new direction for the firm" -06197503 09 n 01 tenor 1 001 @ 06197215 n 0000 | a settled or prevailing or habitual course of a person's life; "nothing disturbed the even tenor of her ways" -06197664 09 n 03 drift 2 trend 0 movement 0 005 @ 06196584 n 0000 + 01026975 v 0101 + 00572502 v 0101 ~ 06197958 n 0000 ~ 06198313 n 0000 | a general tendency to change (as of opinion); "not openly liberal but that is the trend of the book"; "a broad movement of the electorate to the right" -06197958 09 n 01 evolutionary_trend 0 002 @ 06197664 n 0000 ~ 06198083 n 0000 | a general direction of evolutionary change -06198083 09 n 01 neoteny 0 002 @ 06197958 n 0000 + 02768421 a 0101 | an evolutionary trend to be born earlier so that development is cut off at an earlier stage and juvenile characteristics are retained in adults of the species -06198313 09 n 01 gravitation 0 003 @ 06197664 n 0000 + 02732148 v 0101 + 02731996 v 0101 | a figurative movement toward some attraction; "the gravitation of the middle class to the suburbs" -06198505 09 n 01 Call 0 002 @ 06196584 n 0000 + 00753881 v 0101 | a special disposition (as if from a divine source) to pursue a particular course; "he was disappointed that he had not heard the Call" -06198708 09 n 01 denominationalism 1 001 @ 06196584 n 0000 | the tendency, in Protestantism, to separate into religious denominations or to advocate such separations -06198876 09 n 01 devices 0 001 @ 06196584 n 0000 | an inclination or desire; used in the plural in the phrase `left to your own devices'; "eventually the family left the house to the devices of this malevolent force"; "the children were left to their own devices" -06199142 09 n 02 sympathy 0 understanding 3 005 @ 06196584 n 0000 + 00594058 v 0205 + 02374914 a 0101 + 00594058 v 0101 + 00594058 v 0102 | an inclination to support or be loyal to or to agree with an opinion; "his sympathies were always with the underdog"; "I knew I could count on his understanding" -06199446 09 n 02 favoritism 0 favouritism 0 001 @ 06196584 n 0000 | an inclination to favor some person or group -06199561 09 n 03 proclivity 0 propensity 0 leaning 0 001 @ 06196584 n 0000 | a natural inclination; "he has a proclivity for exaggeration" -06199702 09 n 02 bent 1 set 1 003 @ 06196584 n 0000 + 00947077 v 0202 + 00699815 v 0202 | a relatively permanent inclination to react in a particular way; "the set of his mind was obvious" -06199893 09 n 01 literalism 1 001 @ 06196584 n 0000 | a disposition to interpret statements in their literal sense -06200010 09 n 01 perseveration 0 002 @ 06196584 n 0000 + 00350461 v 0101 | the tendency for a memory or idea to persist or recur without any apparent stimulus for it -06200178 09 n 01 predisposition 0 003 @ 06196584 n 0000 + 00680692 v 0101 ~ 06200344 n 0000 | an inclination beforehand to interpret statements in a particular way -06200344 09 n 03 predilection 0 preference 1 orientation 2 004 @ 06200178 n 0000 + 00065184 a 0202 + 01462882 a 0207 + 00679389 v 0202 | a predisposition in favor of something; "a predilection for expensive cars"; "his sexual preferences"; "showed a Marxist orientation" -06200617 09 n 02 favor 0 favour 0 001 @ 06196584 n 0000 | an inclination to approve; "that style is in favor this season" -06200741 09 n 04 disfavor 0 disfavour 0 dislike 0 disapproval 0 003 @ 06196584 n 0000 ~ 06200929 n 0000 ~ 06201042 n 0000 | an inclination to withhold approval from some person or group -06200929 09 n 01 doghouse 0 001 @ 06200741 n 0000 | an idiomatic term for being in disfavor; "in the doghouse" -06201042 09 n 01 reprobation 0 002 @ 06200741 n 0000 + 00864159 v 0102 | severe disapproval -06201136 09 n 02 partiality 0 partisanship 0 012 @ 06196584 n 0000 + 10059582 n 0202 + 10402086 n 0201 + 01722965 a 0101 ! 06202686 n 0101 ~ 06201476 n 0000 ~ 06201667 n 0000 ~ 06201778 n 0000 ~ 06201908 n 0000 ~ 06202296 n 0000 ~ 06202429 n 0000 ~ 06202553 n 0000 | an inclination to favor one group or view or opinion over alternatives -06201476 09 n 02 anthropocentrism 0 anthropocentricity 0 003 @ 06201136 n 0000 + 03135137 a 0201 + 03135137 a 0101 | an inclination to evaluate reality exclusively in terms of human values -06201667 09 n 01 ethnocentrism 0 001 @ 06201136 n 0000 | belief in the superiority of one's own ethnic group -06201778 09 n 01 Eurocentrism 0 002 @ 06201136 n 0000 + 02716101 a 0101 | belief in the preeminence of Europe and the Europeans -06201908 09 n 03 bias 0 prejudice 1 preconception 1 014 @ 06201136 n 0000 + 02762081 a 0201 + 02762081 a 0202 + 00680145 v 0201 + 02513742 v 0201 + 01085677 v 0101 + 00680346 v 0101 ~ 05950234 n 0000 ~ 05950475 n 0000 ~ 06203222 n 0000 ~ 06203472 n 0000 ~ 06203603 n 0000 ~ 06203758 n 0000 ~ 06204289 n 0000 | a partiality that prevents objective consideration of an issue or situation -06202296 09 n 01 tilt 0 001 @ 06201136 n 0000 | a slight but noticeable partiality; "the court's tilt toward conservative rulings" -06202429 09 n 03 sectionalism 0 provincialism 0 localism 0 001 @ 06201136 n 0000 | a partiality for some particular place -06202553 09 n 01 unfairness 0 003 @ 06201136 n 0000 + 00957176 a 0101 ! 06203030 n 0101 | partiality that is not fair or equitable -06202686 09 n 02 impartiality 0 nonpartisanship 0 006 @ 06196584 n 0000 + 00286214 a 0102 + 01723308 a 0101 ! 06201136 n 0101 ~ 06202907 n 0000 ~ 06203030 n 0000 | an inclination to weigh both views or opinions equally -06202907 09 n 01 disinterestedness 0 002 @ 06202686 n 0000 + 01723543 a 0101 | freedom from bias or from selfish motives -06203030 09 n 04 fairness 0 fair-mindedness 0 candor 0 candour 0 003 @ 06202686 n 0000 + 00956976 a 0201 ! 06202553 n 0101 | ability to make judgments free from discrimination or dishonesty -06203222 09 n 01 experimenter_bias 0 002 @ 06201908 n 0000 ;c 06136258 n 0000 | (psychology) bias introduced by an experimenter whose expectations about the outcome of the experiment can be subtly communicated to the participants in the experiment -06203472 09 n 01 homophobia 0 001 @ 06201908 n 0000 | prejudice against (fear or dislike of) homosexual people and homosexuality -06203603 09 n 01 Islamophobia 0 001 @ 06201908 n 0000 | prejudice against Muslims; "Muslim intellectuals are afraid of growing Islamophobia in the West" -06203758 09 n 01 racism 0 004 @ 06201908 n 0000 + 10502950 n 0101 ~ 06203956 n 0000 ~ 06204126 n 0000 | the prejudice that members of one race are intrinsically superior to members of other races -06203956 09 n 02 anti-Semitism 0 antisemitism 0 003 @ 06203758 n 0000 + 03043482 a 0202 + 03043482 a 0101 | the intense dislike for and prejudice against Jewish people -06204126 09 n 01 white_supremacy 0 002 @ 06203758 n 0000 + 10779610 n 0101 | the prejudice that members of the white race are superior to members of other races -06204289 09 n 01 tendentiousness 0 002 @ 06201908 n 0000 + 00730985 a 0101 | an intentional and controversial bias -06204406 09 n 01 tolerance 0 006 @ 06193203 n 0000 + 02436341 a 0101 ! 06205154 n 0101 ~ 06204623 n 0000 ~ 06204820 n 0000 ~ 06205018 n 0000 | willingness to recognize and respect the beliefs or practices of others -06204623 09 n 01 broad-mindedness 0 004 @ 06204406 n 0000 + 02155771 a 0102 + 00286578 a 0101 ! 06205411 n 0101 | an inclination to tolerate or overlook opposing or shocking opinions or behavior -06204820 09 n 02 liberality 1 liberalness 1 005 @ 06204406 n 0000 + 02031473 a 0201 + 00286837 a 0203 + 00575230 a 0201 + 02031473 a 0101 | an inclination to favor progress and individual freedom -06205018 09 n 02 disinterest 1 neutrality 0 002 @ 06204406 n 0000 + 01615625 a 0202 | tolerance attributable to a lack of involvement -06205154 09 n 01 intolerance 0 008 @ 06193203 n 0000 + 02436622 a 0101 ! 06204406 n 0101 ~ 06205411 n 0000 ~ 06206210 n 0000 ~ 06206334 n 0000 ~ 06206470 n 0000 ~ 06206576 n 0000 | unwillingness to recognize and respect differences in opinions or beliefs -06205411 09 n 02 narrow-mindedness 0 narrowness 0 009 @ 06205154 n 0000 + 00287640 a 0202 + 02091997 a 0101 + 00287640 a 0101 ! 06204623 n 0101 ~ 06205698 n 0000 ~ 06205827 n 0000 ~ 06205937 n 0000 ~ 06206021 n 0000 | an inclination to criticize opposing opinions or shocking behavior -06205698 09 n 01 parochialism 0 001 @ 06205411 n 0000 | a limitation of views or interests like that defined by a local parish -06205827 09 n 01 pettiness 0 002 @ 06205411 n 0000 + 00288498 a 0101 | narrowness of mind or ideas or views -06205937 09 n 01 provincialism 1 001 @ 06205411 n 0000 | a lack of sophistication -06206021 09 n 02 sectarianism 0 denominationalism 0 001 @ 06205411 n 0000 | a narrow-minded adherence to a particular sect or party or denomination; "he condemned religious sectarianism" -06206210 09 n 02 bigotry 0 dogmatism 0 002 @ 06205154 n 0000 + 10023656 n 0201 | the intolerance and prejudice of a bigot -06206334 09 n 03 fanaticism 0 fanatism 0 zealotry 0 002 @ 06205154 n 0000 + 01726859 a 0201 | excessive intolerance of opposing views -06206470 09 n 01 religionism 0 002 @ 06205154 n 0000 + 09629065 n 0101 | exaggerated religious zealotry -06206576 09 n 01 zero_tolerance 0 001 @ 06205154 n 0000 | extreme intolerance of antisocial behavior (usually by an uncompromising application of the law); "he urged zero tolerance for priests who abuse children sexually" -06206800 09 n 03 respect 1 esteem 0 regard 2 006 @ 06193203 n 0000 + 00694068 v 0202 + 02457233 v 0101 + 00694068 v 0101 ! 06207437 n 0101 ~ 06207029 n 0000 | an attitude of admiration or esteem; "she lost all respect for him" -06207029 09 n 02 estimate 1 estimation 1 002 @ 06206800 n 0000 ~ 06207199 n 0000 | the respect with which a person is held; "they had a high estimation of his ability" -06207199 09 n 02 reputation 0 report 0 002 @ 06207029 n 0000 + 00689950 v 0102 | the general estimation that the public has for a person; "he acquired a reputation as an actor before he started writing"; "he was a person of bad report" -06207437 09 n 01 disrespect 0 003 @ 06193203 n 0000 + 02457825 v 0101 ! 06206800 n 0101 | a disrespectful mental attitude -06207561 09 n 01 reverence 0 006 @ 06193203 n 0000 + 02012333 a 0102 + 02011810 a 0101 + 01778568 v 0101 + 01778017 v 0105 ! 06207733 n 0101 | a reverent mental attitude -06207733 09 n 01 irreverence 0 004 @ 06193203 n 0000 + 01782717 a 0102 ! 06207561 n 0101 ~ 06207874 n 0000 | an irreverent mental attitude -06207874 09 n 01 profaneness 0 003 @ 06207733 n 0000 + 02012748 a 0102 + 02056880 a 0101 | an attitude of irreverence or contempt for a divinity -06208021 09 n 01 orientation 0 009 @ 06193203 n 0000 ~ 06208265 n 0000 ~ 06208409 n 0000 ~ 06208614 n 0000 ~ 06208751 n 0000 ~ 06211811 n 0000 ~ 06212422 n 0000 ~ 06212839 n 0000 ~ 06222336 n 0000 | an integrated set of attitudes and beliefs -06208265 09 n 01 wavelength 0 001 @ 06208021 n 0000 | a shared orientation leading to mutual understanding; "they are on the same wavelength" -06208409 09 n 01 experimentalism 0 001 @ 06208021 n 0000 | an orientation that favors experimentation and innovation; "the children of psychologists are often raised in an atmosphere of experimentalism" -06208614 09 n 01 reorientation 0 002 @ 06208021 n 0000 + 02159594 v 0102 | a fresh orientation; a changed set of attitudes and beliefs -06208751 09 n 03 position 0 view 2 perspective 0 011 @ 06208021 n 0000 + 02130300 v 0201 + 00690614 v 0204 ~ 06209101 n 0000 ~ 06209242 n 0000 ~ 06209419 n 0000 ~ 06210171 n 0000 ~ 06210791 n 0000 ~ 06210964 n 0000 ~ 06211389 n 0000 ~ 06211702 n 0000 | a way of regarding situations or topics etc.; "consider what follows from the positivist view" -06209101 09 n 02 bird's_eye_view 0 panoramic_view 0 001 @ 06208751 n 0000 | a situation or topic as if viewed from an altitude or distance -06209242 09 n 01 futurism 0 004 @ 06208751 n 0000 + 02993094 a 0101 + 10116702 n 0101 + 10078529 n 0102 | the position that the meaning of life should be sought in the future -06209419 09 n 03 vanguard 0 forefront 0 cutting_edge 0 001 @ 06208751 n 0000 | the position of greatest importance or advancement; the leading position in any movement or field; "the Cotswolds were once at the forefront of woollen manufacturing in England"; "the idea of motion was always to the forefront of his mind and central to his philosophy" -06209770 09 n 01 cityscape 0 001 @ 06210363 n 0000 | a viewpoint toward a city or other heavily populated area; "the dominant character of the cityscape is it poverty" -06209940 09 n 01 landscape 0 001 @ 06210363 n 0000 | an extensive mental viewpoint; "the political landscape looks bleak without a change of administration"; "we changed the landscape for solving the problem of payroll inequity" -06210171 09 n 01 paradigm 1 001 @ 06208751 n 0000 | the generally accepted perspective of a particular discipline at a given time; "he framed the problem within the psychoanalytic paradigm" -06210363 09 n 04 point_of_view 0 viewpoint 0 stand 0 standpoint 0 009 @ 06196284 n 0000 + 00670991 v 0301 + 02702120 v 0301 + 02734488 v 0301 + 02611373 v 0301 ~ 06209770 n 0000 ~ 06209940 n 0000 ~ 06211078 n 0000 ~ 06211206 n 0000 | a mental position from which things are viewed; "we should consider this problem from the viewpoint of the Russians"; "teaching history gave him a special point of view toward current events" -06210791 09 n 01 light 1 001 @ 06208751 n 0000 | a particular perspective or aspect of a situation; "although he saw it in a different light, he still did not understand" -06210964 09 n 01 sight 3 001 @ 06208751 n 0000 | a range of mental vision; "in his sight she could do no wrong" -06211078 09 n 02 slant 0 angle 0 002 @ 06210363 n 0000 + 00680485 v 0101 | a biased way of looking at or presenting something -06211206 09 n 01 complexion 0 001 @ 06210363 n 0000 | a point of view or general attitude or inclination; "he altered the complexion of his times"; "a liberal political complexion" -06211389 09 n 02 Weltanschauung 0 world_view 0 002 @ 06208751 n 0000 ~ 06211529 n 0000 | a comprehensive view of the world and human life -06211529 09 n 01 clockwork_universe 0 001 @ 06211389 n 0000 | the view that the universe resembles a clock built by God and ticking along according to Newtonian mechanics -06211702 09 n 01 straddle 0 002 @ 06208751 n 0000 + 02705832 v 0101 | a noncommittal or equivocal position -06211811 09 n 01 orthodoxy 0 003 @ 06208021 n 0000 ! 06212422 n 0101 ~ 06211963 n 0000 | a belief or orientation agreeing with conventional standards -06211963 09 n 02 conformity 0 conformism 0 006 @ 06211811 n 0000 + 09957614 n 0201 ! 06212650 n 0202 ! 06212650 n 0101 ~ 06212155 n 0000 ~ 06212302 n 0000 | orthodoxy in thoughts and belief -06212155 09 n 01 conventionality 1 003 @ 06211963 n 0000 + 00611281 a 0101 + 00605516 a 0101 | conformity with conventional thought and behavior -06212302 09 n 01 legalism 0 001 @ 06211963 n 0000 | strict conformity to the letter of the law rather than its spirit -06212422 09 n 03 unorthodoxy 0 heterodoxy 0 heresy 1 005 @ 06208021 n 0000 + 01691474 a 0302 ! 06211811 n 0101 ~ 05980750 n 0000 ~ 06212650 n 0000 | any opinions or doctrines at variance with the official or orthodox position -06212650 09 n 03 nonconformity 0 nonconformism 0 nonconformance 0 004 @ 06212422 n 0000 + 09957834 n 0201 ! 06211963 n 0202 ! 06211963 n 0101 | a lack of orthodoxy in thoughts or beliefs -06212839 09 n 03 political_orientation 0 ideology 1 political_theory 0 039 @ 06208021 n 0000 + 10197392 n 0201 = 00574422 a 0000 = 00575230 a 0000 + 02745555 a 0201 ~ 06213688 n 0000 ~ 06213890 n 0000 ~ 06214020 n 0000 ~ 06214379 n 0000 ~ 06214580 n 0000 ~ 06214744 n 0000 ~ 06216160 n 0000 ~ 06216805 n 0000 ~ 06216948 n 0000 ~ 06217103 n 0000 ~ 06217318 n 0000 ~ 06217464 n 0000 ~ 06217657 n 0000 ~ 06217806 n 0000 ~ 06217944 n 0000 ~ 06218162 n 0000 ~ 06218308 n 0000 ~ 06218459 n 0000 ~ 06218623 n 0000 ~ 06218824 n 0000 ~ 06219185 n 0000 ~ 06219300 n 0000 ~ 06219415 n 0000 ~ 06219613 n 0000 ~ 06219711 n 0000 ~ 06219875 n 0000 ~ 06220199 n 0000 ~ 06220299 n 0000 ~ 06220449 n 0000 ~ 06220616 n 0000 ~ 06221224 n 0000 ~ 06221323 n 0000 ~ 06221485 n 0000 ~ 06221790 n 0000 | an orientation that characterizes the thinking of a group or nation -06213688 09 n 03 absolutism 1 totalitarianism 0 totalism 0 004 @ 06212839 n 0000 + 02818111 a 0302 + 03139045 a 0102 + 09755398 n 0101 | the principle of complete and unrestricted power in government -06213890 09 n 01 anarchism 0 002 @ 06212839 n 0000 + 02621348 a 0101 | a political theory favoring the abolition of governments -06214020 09 n 01 autocracy 0 002 @ 06212839 n 0000 ~ 06214164 n 0000 | a political theory favoring unlimited authority by a single individual -06214164 09 n 01 Machiavellianism 0 001 @ 06214020 n 0000 | the political doctrine of Machiavelli: any means (however unscrupulous) can be used by a ruler in order to create and maintain his autocratic government -06214379 09 n 02 centrism 0 moderatism 0 002 @ 06212839 n 0000 + 09904837 n 0101 | a political philosophy of avoiding the extremes of left and right by taking a moderate position or course of action -06214580 09 n 01 collectivism 0 003 @ 06212839 n 0000 + 00298507 a 0102 + 10619176 n 0101 | a political theory that the people should own the means of production -06214744 09 n 01 communism 0 011 @ 06212839 n 0000 + 02874876 a 0102 + 09945603 n 0101 + 09945319 n 0101 + 00409281 v 0101 + 00408852 v 0101 ~ 06215043 n 0000 ~ 06215152 n 0000 ~ 06215495 n 0000 ~ 06215618 n 0000 ~ 06215977 n 0000 | a political theory favoring collectivism in a classless society -06215043 09 n 01 Castroism 0 001 @ 06214744 n 0000 | a form of communism developed in Cuba by Fidel Castro -06215152 09 n 02 Leninism 0 Marxism-Leninism 0 001 @ 06214744 n 0000 | the political and economic theories of Lenin which provided the guiding doctrine of the Soviet Union; the modification of Marxism by Lenin stressed that imperialism is the highest form of capitalism (which shifts the struggle from developed to underdeveloped countries) -06215495 09 n 01 Maoism 0 002 @ 06214744 n 0000 + 10292622 n 0101 | a form of communism developed in China by Mao Zedong -06215618 09 n 01 Marxism 0 003 @ 06214744 n 0000 + 10297140 n 0101 -c 08181075 n 0000 | the economic and political theories of Karl Marx and Friedrich Engels that hold that human actions and institutions are economically determined and that class struggle is needed to create historical change and that capitalism will ultimately be superseded by communism -06215977 09 n 01 Trotskyism 0 002 @ 06214744 n 0000 + 10731013 n 0102 | the form of communism advocated by Leon Trotsky; calls for immediate worldwide revolution by the proletariat -06216160 09 n 02 conservatism 0 conservativism 0 004 @ 06212839 n 0000 + 09957156 n 0201 ~ 06216408 n 0000 ~ 06216634 n 0000 | a political or theological orientation advocating the preservation of the best in society and opposing radical changes -06216408 09 n 01 neoconservatism 0 001 @ 06216160 n 0000 | an approach to politics or theology that represents a return to a traditional point of view (in contrast to more liberal or radical schools of thought of the 1960s) -06216634 09 n 01 reaction 1 002 @ 06216160 n 0000 + 02030562 a 0101 | extreme conservatism in political or social matters; "the forces of reaction carried the election" -06216805 09 n 01 segregationism 0 002 @ 06212839 n 0000 + 10576316 n 0102 | a political orientation favoring political or racial segregation -06216948 09 n 01 constitutionalism 0 002 @ 06212839 n 0000 + 09959387 n 0101 | advocacy of a system of government according to constitutional principles -06217103 09 n 01 democracy 0 004 @ 06212839 n 0000 + 00715140 a 0101 + 02533748 v 0101 + 02533907 v 0101 | the political orientation of those who favor government by the people or by their elected representatives -06217318 09 n 01 social_democracy 0 001 @ 06212839 n 0000 | the belief in a gradual transition from capitalism to socialism by democratic means -06217464 09 n 01 domino_theory 0 001 @ 06212839 n 0000 | the political theory that if one nation comes under communist control then neighboring nations will also come under communist control -06217657 09 n 01 elitism 0 002 @ 06212839 n 0000 + 10050558 n 0101 | the attitude that society should be governed by an elite group of individuals -06217806 09 n 01 extremism 0 002 @ 06212839 n 0000 + 10074735 n 0101 | any political theory favoring immoderate uncompromising policies -06217944 09 n 01 fascism 0 004 @ 06212839 n 0000 + 02920769 a 0102 + 10079893 n 0101 ~ 08366440 n 0000 | a political theory advocating an authoritarian hierarchical government (as opposed to democracy or liberalism) -06218162 09 n 01 federalism 0 002 @ 06212839 n 0000 + 10082997 n 0101 | the idea of a federal organization of more or less self-governing units -06218308 09 n 01 imperialism 0 003 @ 06212839 n 0000 + 03074368 a 0101 + 10200246 n 0101 | a political orientation that advocates imperial interests -06218459 09 n 01 leftism 0 002 @ 06212839 n 0000 + 10619176 n 0102 | the ideology of the political left; belief in or support of the tenets of the political left -06218623 09 n 01 liberalism 0 003 @ 06212839 n 0000 + 00575685 a 0101 ~ 06219009 n 0000 | a political orientation that favors social progress by reform and by changing laws rather than by revolution -06218824 09 n 01 meritocracy 0 002 @ 06212839 n 0000 + 03086002 a 0101 | the belief that rulers should be chosen for their superior abilities and not because of their wealth or birth -06219009 09 n 01 neoliberalism 0 001 @ 06218623 n 0000 | a political orientation originating in the 1960s; blends liberal political views with an emphasis on economic growth -06219185 09 n 01 libertarianism 0 001 @ 06212839 n 0000 | an ideological belief in freedom of thought and speech -06219300 09 n 01 monarchism 0 001 @ 06212839 n 0000 | a belief in and advocacy of monarchy as a political system -06219415 09 n 01 Negritude 0 001 @ 06212839 n 0000 | an ideological position that holds Black culture to be independent and valid on its own terms; an affirmation of the African cultural heritage -06219613 09 n 01 Orleanism 0 001 @ 06212839 n 0000 | the political philosophy of the Orleanists -06219711 09 n 01 progressivism 0 001 @ 06212839 n 0000 | the political orientation of those who favor progress toward better conditions in government and society -06219875 09 n 01 radicalism 0 002 @ 06212839 n 0000 ~ 06220041 n 0000 | the political orientation of those who favor revolutionary change in government and society -06220041 09 n 01 Jacobinism 0 001 @ 06219875 n 0000 | the ideology of the most radical element of the French Revolution that instituted the Reign of Terror -06220199 09 n 01 reactionism 0 001 @ 06212839 n 0000 | the political orientation of reactionaries -06220299 09 n 01 republicanism 0 001 @ 06212839 n 0000 | the political orientation of those who hold that a republic is the best form of government -06220449 09 n 01 rightism 0 002 @ 06212839 n 0000 + 10531227 n 0101 | the ideology of the political right; belief in or support of the tenets of the political right -06220616 09 n 01 socialism 0 006 @ 06212839 n 0000 + 00298041 a 0101 + 10618848 n 0101 ~ 06220819 n 0000 ~ 06220955 n 0000 ~ 06221119 n 0000 | a political theory advocating state ownership of industry -06220819 09 n 01 Fabianism 0 002 @ 06220616 n 0000 ;r 08860123 n 0000 | socialism to be established by gradual reforms within the law -06220955 09 n 01 guild_socialism 0 001 @ 06220616 n 0000 | a form of socialist theory advocating state ownership of industry but managements by guilds of workers -06221119 09 n 01 utopian_socialism 0 001 @ 06220616 n 0000 | socialism achieved by voluntary sacrifice -06221224 09 n 01 theocracy 0 001 @ 06212839 n 0000 | the belief in government by divine guidance -06221323 09 n 01 Utopianism 0 001 @ 06212839 n 0000 | the political orientation of a Utopian who believes in impossibly idealistic schemes of social perfection -06221485 09 n 01 dovishness 0 004 @ 06212839 n 0000 + 01741953 a 0103 ! 06221790 n 0101 ~ 06221659 n 0000 | any political orientation favoring compromise to avoid conflict -06221659 09 n 01 peace_advocacy 0 001 @ 06221485 n 0000 | any policy that advocates maintaining peaceful international relations -06221790 09 n 01 hawkishness 0 005 @ 06212839 n 0000 + 01742715 a 0102 ! 06221485 n 0101 ~ 06221974 n 0000 ~ 06222236 n 0000 | any political orientation favoring aggressive policies -06221974 09 n 01 militarism 0 003 @ 06221790 n 0000 + 01518577 a 0101 + 10316013 n 0101 | a political orientation of a people or a government to maintain a strong military force and to be prepared to use it aggressively to defend or promote national interests -06222236 09 n 02 warmongering 0 war_advocacy 0 001 @ 06221790 n 0000 | a policy of advocating war -06222336 09 n 01 religious_orientation 0 004 @ 06208021 n 0000 ~ 06222508 n 0000 ~ 06223468 n 0000 ~ 06227453 n 0000 | an attitude toward religion or religious practices -06222508 09 n 01 agnosticism 1 001 @ 06222336 n 0000 | a religious orientation of doubt; a denial of ultimate knowledge of the existence of God; "agnosticism holds that you can neither prove nor disprove God's existence" -06222731 09 n 01 Docetism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | the heretical doctrine (associated with the Gnostics) that Jesus had no human body and his sufferings and death on the cross were apparent rather than real -06222959 09 n 01 Gnosticism 0 004 @ 06186301 n 0000 @ 05980412 n 0000 ~ 06223204 n 0000 -c 09536584 n 0000 | a religious orientation advocating gnosis as the way to release a person's spiritual element; considered heresy by Christian churches -06223204 09 n 02 Mandaeanism 0 Mandeanism 0 001 @ 06222959 n 0000 | a Gnostic religion originating the 2nd and 3rd centuries that believes John the Baptist was the Messiah and that incorporates Jewish and Christian elements into a framework of dualistic beliefs -06223468 09 n 02 atheism 0 godlessness 0 006 @ 06222336 n 0000 + 01782717 a 0201 + 01784217 a 0101 + 02826443 a 0102 + 09820044 n 0101 ! 06223669 n 0101 | the doctrine or belief that there is no God -06223669 09 n 01 theism 0 009 @ 05946687 n 0000 + 02931345 a 0103 + 02931345 a 0102 + 09848110 n 0101 ! 06223468 n 0101 ~ 06224136 n 0000 ~ 06224305 n 0000 ~ 06224975 n 0000 ~ 06225235 n 0000 | the doctrine or belief in the existence of a God or gods -06223922 09 n 02 deism 0 free_thought 0 003 @ 06191018 n 0000 + 02931554 a 0102 + 10000459 n 0101 | the form of theological rationalism that believes in God on the basis of reason without reference to revelation -06224136 09 n 01 monotheism 0 006 @ 06223669 n 0000 + 01781243 a 0101 + 10329579 n 0101 ! 06224305 n 0101 ~ 06232880 n 0000 ~ 06234825 n 0000 | belief in a single God -06224305 09 n 01 polytheism 0 004 @ 06223669 n 0000 + 01781356 a 0101 ! 06224136 n 0101 ~ 06224439 n 0000 | belief in multiple Gods -06224439 09 n 01 tritheism 0 004 @ 06224305 n 0000 @ 05980412 n 0000 ;c 06226057 n 0000 + 10730077 n 0101 | (Christianity) the heretical belief that the Father and the Son and the Holy Spirit are three separate gods -06224657 09 n 03 paganism 0 pagan_religion 0 heathenism 0 002 @ 05946687 n 0000 ~ 06224831 n 0000 | any of various religions other than Christianity or Judaism or Islamism -06224831 09 n 01 druidism 0 001 @ 06224657 n 0000 | the system of religion and philosophy taught by the Druids and their rites and ceremonies -06224975 09 n 01 pantheism 0 003 @ 06223669 n 0000 + 02931675 a 0102 + 10396594 n 0101 | the doctrine or belief that God is the universe and its phenomena (taken or conceived of as a whole) or the doctrine that regards the universe as a manifestation of God -06225235 09 n 01 pantheism 1 002 @ 06223669 n 0000 + 02931675 a 0102 | (rare) worship that admits or tolerates all gods -06225357 09 n 01 cargo_cult 0 001 @ 05948264 n 0000 | a religious cult that anticipates a time of joy, serenity, and justice when salvation comes -06225505 09 n 01 macumba 0 001 @ 05948264 n 0000 | a Brazilian religious cult of African origin; combines voodoo elements with singing and chanting and dancing -06225667 09 n 02 obeah 0 obi 0 001 @ 05948264 n 0000 | a religious belief of African origin involving witchcraft and sorcery; practiced in parts of the West Indies and tropical Americas -06225855 09 n 01 Rastafarianism 0 001 @ 05948264 n 0000 | a religious cult based on a belief that Ras Tafari (Haile Selassie) is the Messiah and that Africa (especially Ethiopia) is the Promised Land -06226057 09 n 02 Christianity 0 Christian_religion 0 034 @ 05946687 n 0000 + 00411009 a 0101 -c 01451225 a 0000 -c 01452024 a 0000 -c 01069311 n 0000 -c 04805304 n 0000 -c 04805813 n 0000 -c 05628939 n 0000 -c 05629682 n 0000 -c 06224439 n 0000 ~ 06226934 n 0000 ~ 06227263 n 0000 ~ 06227708 n 0000 ~ 06228086 n 0000 ~ 06228549 n 0000 ~ 06229410 n 0000 -c 06270690 n 0000 -c 06747190 n 0000 -c 06790235 n 0000 -c 06790557 n 0000 -c 06790845 n 0000 -c 06791017 n 0000 -c 06791195 n 0000 -c 07357866 n 0000 -c 08147019 n 0000 -c 08312559 n 0000 -c 09921792 n 0000 -c 10819285 n 0000 -c 11121108 n 0000 -c 15193052 n 0000 -c 15299367 n 0000 -c 00383093 v 0000 -c 01172838 v 0000 -c 01470856 v 0000 | a monotheistic system of beliefs and practices based on the Old Testament and the teachings of Jesus as embodied in the New Testament and emphasizing the role of Jesus as savior -06226934 09 n 02 Adventism 0 Second_Adventism 0 003 @ 06226057 n 0000 + 09678747 n 0101 ~ 06227121 n 0000 | any Christian religion that believes the second coming of Christ is imminent -06227121 09 n 01 Seventh-Day_Adventism 0 001 @ 06226934 n 0000 | Adventism that is strongly Protestant and observes Saturday as the Sabbath -06227263 09 n 02 Catholicism 0 Catholicity 0 005 @ 06226057 n 0000 + 02920951 a 0101 + 00386566 v 0101 ~ 06227562 n 0000 ~ 06228346 n 0000 | the beliefs and practices of a Catholic Church -06227453 09 n 01 anti-Catholicism 0 001 @ 06222336 n 0000 | a religious orientation opposed to Catholicism -06227562 09 n 03 Romanism 0 Roman_Catholicism 0 papism 0 001 @ 06227263 n 0000 | the beliefs and practices of the Catholic Church based in Rome -06227708 09 n 02 Albigensianism 0 Catharism 0 002 @ 06226057 n 0000 @ 05980412 n 0000 | a Christian movement considered to be a medieval descendant of Manichaeism in southern France in the 12th and 13th centuries; characterized by dualism (asserted the coexistence of two mutually opposed principles, one good and one evil); was exterminated for heresy during the Inquisition -06228086 09 n 01 Donatism 0 002 @ 06226057 n 0000 + 10025391 n 0101 | a schismatic Christian religion in northern Africa from the 4th to the 7th century; held that only those who led a blameless life belonged in the church or could administer the sacraments -06228346 09 n 01 Eastern_Catholicism 0 001 @ 06227263 n 0000 | the beliefs and practices of any of the eastern Catholic Churches based in Constantinople or Antioch or Alexandria or Moscow or Jerusalem -06228549 09 n 01 Protestantism 0 021 @ 06226057 n 0000 ~ 05946582 n 0000 ~ 06229106 n 0000 ~ 06229586 n 0000 ~ 06229853 n 0000 ~ 06230060 n 0000 ~ 06230208 n 0000 ~ 06230358 n 0000 ~ 06230502 n 0000 ~ 06230613 n 0000 ~ 06230809 n 0000 ~ 06231030 n 0000 ~ 06231328 n 0000 ~ 06231494 n 0000 ~ 06231680 n 0000 ~ 06231794 n 0000 ~ 06232047 n 0000 ~ 06232166 n 0000 ~ 06232298 n 0000 ~ 06232499 n 0000 ~ 06232635 n 0000 | the theological system of any of the churches of western Christendom that separated from the Roman Catholic Church during the Reformation -06229106 09 n 01 Anglicanism 0 002 @ 06228549 n 0000 ~ 06229240 n 0000 | the faith and doctrine and practice of the Anglican Church -06229240 09 n 02 Anglo-Catholicism 0 High_Anglicanism 0 001 @ 06229106 n 0000 | a doctrine and practice within the Church of England emphasizing the Catholic tradition -06229410 09 n 02 Tractarianism 0 Puseyism 0 001 @ 06226057 n 0000 | principles of the founders of the Oxford movement as expounded in pamphlets called `Tracts for the Times' -06229586 09 n 01 Arminianism 0 002 @ 06228549 n 0000 + 02625546 a 0101 | 17th century theology (named after its founder Jacobus Arminius) that opposes the absolute predestinarianism of John Calvin and holds that human free will is compatible with God's sovereignty -06229853 09 n 01 Calvinism 0 003 @ 06228549 n 0000 + 02952975 a 0102 + 09889346 n 0101 | the theological system of John Calvin and his followers emphasizing omnipotence of God and salvation by grace alone -06230060 09 n 01 Christian_Science 0 001 @ 06228549 n 0000 | religious system based on teachings of Mary Baker Eddy emphasizing spiritual healing -06230208 09 n 01 Lutheranism 0 001 @ 06228549 n 0000 | teachings of Martin Luther emphasizing the cardinal doctrine of justification by faith alone -06230358 09 n 01 Unitarianism 0 001 @ 06228549 n 0000 | Christian doctrine that stresses individual freedom of belief and rejects the Trinity -06230502 09 n 01 Trinitarianism 0 001 @ 06228549 n 0000 | Christian doctrine stressing belief in the Trinity -06230613 09 n 01 Congregationalism 0 002 @ 06228549 n 0000 + 09955643 n 0101 | system of beliefs and church government of a Protestant denomination in which each member church is self-governing -06230809 09 n 01 Mennonitism 0 001 @ 06228549 n 0000 | system of beliefs and practices including belief in scriptural authority; plain dress; adult baptism; foot washing; restriction of marriage to members of the group -06231030 09 n 01 evangelicalism 0 002 @ 06228549 n 0000 ~ 06231191 n 0000 | stresses the importance of personal conversion and faith as the means of salvation -06231191 09 n 01 revivalism 0 003 @ 06231030 n 0000 + 02955216 a 0101 + 10067011 n 0102 | an attempt to reawaken the evangelical faith -06231328 09 n 01 fundamentalism 0 003 @ 06228549 n 0000 + 02953235 a 0102 + 10116370 n 0101 | the interpretation of every word in the sacred texts as literal truth -06231494 09 n 01 Methodism 0 002 @ 06228549 n 0000 + 10312600 n 0101 | the religious beliefs and practices of Methodists characterized by concern with social welfare and public morals -06231680 09 n 02 Wesleyanism 0 Wesleyism 0 001 @ 06228549 n 0000 | evangelical principles taught by John Wesley -06231794 09 n 01 Anabaptism 0 002 @ 06228549 n 0000 + 09677427 n 0101 | a Protestant movement in the 16th century that believed in the primacy of the Bible, baptised only believers, not infants, and believed in complete separation of church and state -06232047 09 n 01 Baptistic_doctrine 0 001 @ 06228549 n 0000 | any of various doctrines closely related to Anabaptism -06232166 09 n 01 Mormonism 0 001 @ 06228549 n 0000 | the doctrines and practices of the Mormon Church based on the Book of Mormon -06232298 09 n 01 pentecostalism 0 002 @ 06228549 n 0000 + 10414865 n 0102 | the principles and practices of Pentecostal religious groups; characterized by religious excitement and talking in tongues -06232499 09 n 01 Presbyterianism 0 001 @ 06228549 n 0000 | the doctrines and practices of the Presbyterian Church: based in Calvinism -06232635 09 n 01 Puritanism 0 003 @ 06228549 n 0000 ;c 01032368 n 0000 ;r 08871007 n 0000 | the beliefs and practices characteristic of Puritans (most of whom were Calvinists who wished to purify the Church of England of its Catholic aspects) -06232880 09 n 01 Judaism 0 056 @ 06224136 n 0000 + 02922448 a 0102 -c 00427644 a 0000 -c 00428121 a 0000 -c 00045114 n 0000 -c 00056551 n 0000 -c 00258093 n 0000 -c 01035667 n 0000 -c 02737467 n 0000 -c 03527675 n 0000 -c 03746005 n 0000 -c 03746155 n 0000 -c 03998333 n 0000 -c 04374735 n 0000 -c 04378651 n 0000 -c 05954100 n 0000 -c 05954366 n 0000 -c 06186166 n 0000 ~ 06234104 n 0000 ~ 06234619 n 0000 ~ 06234728 n 0000 -c 06408239 n 0000 -c 06408442 n 0000 -c 06462219 n 0000 -c 06696991 n 0000 -c 06763052 n 0000 -c 06856189 n 0000 -c 07034865 n 0000 -c 07453924 n 0000 -c 07454196 n 0000 -c 07640991 n 0000 -c 07681450 n 0000 -c 07686021 n 0000 -c 07878479 n 0000 -c 09543154 n 0000 -c 09885416 n 0000 -c 10136775 n 0000 -c 10544615 n 0000 -c 15161872 n 0000 -c 15177866 n 0000 -c 15182805 n 0000 -c 15183085 n 0000 -c 15185471 n 0000 -c 15195928 n 0000 -c 15196870 n 0000 -c 15197042 n 0000 -c 15197302 n 0000 -c 15197658 n 0000 -c 15197954 n 0000 -c 15198136 n 0000 -c 15198401 n 0000 -c 15198662 n 0000 -c 15198872 n 0000 -c 15199033 n 0000 -c 15199406 n 0000 -c 15296489 n 0000 | the monotheistic religion of the Jews having its spiritual and ethical principles embodied chiefly in the Torah and in the Talmud -06234104 09 n 01 Orthodox_Judaism 0 002 @ 06232880 n 0000 ~ 06234257 n 0000 | beliefs and practices of a Judaic sect that strictly observes Mosaic law -06234257 09 n 04 Hasidism 0 Hassidism 0 Chasidism 0 Chassidism 0 002 @ 06234104 n 0000 ~ 06234415 n 0000 | beliefs and practices of a sect of Orthodox Jews -06234415 09 n 02 Chabad 0 Chabad_Hasidism 0 001 @ 06234257 n 0000 | a form of Hasidism practiced by Lithuanian and Russian Jews under communist rule; the beliefs and practices of the Lubavitch movement -06234619 09 n 01 Conservative_Judaism 0 001 @ 06232880 n 0000 | beliefs and practices of Conservative Jews -06234728 09 n 01 Reform_Judaism 0 001 @ 06232880 n 0000 | beliefs and practices of Reform Jews -06234825 09 n 05 Islam 0 Islamism 0 Mohammedanism 0 Muhammadanism 0 Muslimism 0 032 @ 06224136 n 0000 + 09682803 n 0201 + 02923510 a 0103 + 09682803 n 0101 -c 00427496 a 0000 -c 00416409 n 0000 -c 00769695 n 0000 -c 00774506 n 0000 -c 01243089 n 0000 -c 03606719 n 0000 -c 03724756 n 0000 -c 03762434 n 0000 -c 03762602 n 0000 -c 03788195 n 0000 -c 05669181 n 0000 -c 05913994 n 0000 ~ 06235829 n 0000 ~ 06235977 n 0000 ~ 06236309 n 0000 ~ 06236602 n 0000 -c 07281635 n 0000 -c 07330560 n 0000 -c 07664582 n 0000 -c 08224684 n 0000 -c 09543353 n 0000 -c 09544433 n 0000 -c 09544746 n 0000 -c 09544876 n 0000 -c 09545000 n 0000 -c 10166626 n 0000 -c 10199251 n 0000 -c 10282014 n 0000 | the monotheistic religious system of Muslims founded in Arabia in the 7th century and based on the teachings of Muhammad as laid down in the Koran; "Islam is a complete way of life, not a Sunday religion"; "the term Muhammadanism is offensive to Muslims who believe that Allah, not Muhammad, founded their religion" -06235829 09 n 01 Mahdism 0 003 @ 06234825 n 0000 + 10282014 n 0101 + 10282262 n 0101 | belief in the appearance of the Mahdi; devotion to a Mahdi -06235977 09 n 02 Salafism 0 Salafi_movement 0 001 @ 06234825 n 0000 | a militant group of extremist Sunnis who believe themselves the only correct interpreters of the Koran and consider moderate Muslims to be infidels; seek to convert all Muslims and to insure that its own fundamentalist version of Islam will dominate the world -06236309 09 n 01 Shiism 0 002 @ 06234825 n 0000 ~ 06236492 n 0000 | the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs -06236492 09 n 01 Ismailism 0 001 @ 06236309 n 0000 | the branch of Shiism noted for its esoteric philosophy -06236602 09 n 02 Wahhabism 0 Wahabism 0 001 @ 06234825 n 0000 | a conservative and intolerant form of Islam that is practiced in Saudi Arabia; "Osama bin Laden and his followers practice Wahhabism" -06236802 09 n 02 Hinduism 0 Hindooism 0 036 @ 05946687 n 0000 -c 01042998 n 0000 -c 03716656 n 0000 -c 05081957 n 0000 -c 05082116 n 0000 ~ 06238036 n 0000 ~ 06238265 n 0000 ~ 06238574 n 0000 ~ 06238831 n 0000 ~ 06238931 n 0000 ~ 06239076 n 0000 ~ 06239215 n 0000 ~ 06239361 n 0000 ~ 06245286 n 0000 -c 06431156 n 0000 -c 06431496 n 0000 -c 06464419 n 0000 -c 06466030 n 0000 -c 06466479 n 0000 -c 06623788 n 0000 -c 06789801 n 0000 -c 06969129 n 0000 -c 07321517 n 0000 -c 07321657 n 0000 -c 07330362 n 0000 -c 07343017 n 0000 -c 08306194 n 0000 -c 08306371 n 0000 -c 08306665 n 0000 -c 09486781 n 0000 -c 09522978 n 0000 -c 09692430 n 0000 -c 10152616 n 0000 -c 10281896 n 0000 -c 10545682 n 0000 -c 13988224 n 0000 | a body of religious and philosophical beliefs and cultural practices native to India and based on a caste system; it is characterized by a belief in reincarnation, by a belief in a supreme being of many forms and natures, by the view that opposing theories are aspects of one eternal truth, and by a desire for liberation from earthly evils -06237865 09 n 02 Brahmanism 0 Brahminism 0 001 @ 05946687 n 0000 | the religious beliefs of ancient India as prescribed in the sacred Vedas and Brahmanas and Upanishads -06238036 09 n 01 Darsana 0 002 @ 06236802 n 0000 ;c 06969129 n 0000 | (from the Sanskrit word for `to see') one of six orthodox philosophical systems or viewpoints on the nature of reality and the release from bondage to karma -06238265 09 n 01 Mimamsa 0 002 @ 06236802 n 0000 ;c 06969129 n 0000 | (from the Sanskrit word for `reflection' or `interpretation') one of six orthodox philosophical systems or viewpoints on ritual traditions rooted in the Vedas and the Brahmanas as opposed to Vedanta which relies mostly on the Upanishads -06238574 09 n 01 Vedanta 0 002 @ 06236802 n 0000 ;c 06969129 n 0000 | (from the Sanskrit for `end of the Veda') one of six orthodox philosophical systems or viewpoints rooted in the Upanishads as opposed to Mimamsa which relies on the Vedas and Brahmanas -06238831 09 n 01 Krishnaism 0 001 @ 06236802 n 0000 | worship of Krishna the 8th avatar of Vishnu -06238931 09 n 02 Shivaism 0 Sivaism 0 002 @ 06236802 n 0000 + 09685564 n 0101 | worship of Shiva one of the 3 chief gods of the Hindu pantheon -06239076 09 n 02 Shaktism 0 Saktism 0 003 @ 06236802 n 0000 + 09685398 n 0201 + 09685398 n 0101 | worship of Shakti as the wife of Shiva -06239215 09 n 03 Vaishnavism 0 Vaisnavism 0 Vishnuism 0 001 @ 06236802 n 0000 | worship of Vishnu one of the 3 chief gods of the Hindu pantheon -06239361 09 n 01 yoga 0 004 @ 06236802 n 0000 + 02985904 a 0101 + 02985904 a 0102 %p 05080923 n 0000 | Hindu discipline aimed at training the consciousness for a state of perfect spiritual insight and tranquility that is achieved through the three paths of actions and knowledge and devotion -06239655 09 n 01 Jainism 0 003 @ 05946687 n 0000 + 09685085 n 0101 -c 06789801 n 0000 | religion founded in the 6th century BC as a revolt against Hinduism; emphasizes asceticism and immortality and transmigration of the soul; denies existence of a perfect or supreme being -06239931 09 n 01 Sikhism 0 007 @ 05946687 n 0000 -c 02797550 a 0000 -c 06430784 n 0000 -c 08099825 n 0000 -c 10152889 n 0000 -c 10598349 n 0000 -c 11199394 n 0000 | the doctrines of a monotheistic religion founded in northern India in the 16th century by Guru Nanak and combining elements of Hinduism and Islam -06240244 09 n 01 Buddhism 0 018 @ 05946687 n 0000 + 02924102 a 0102 + 09683757 n 0101 -c 03716656 n 0000 ~ 06240865 n 0000 ~ 06241156 n 0000 ~ 06241825 n 0000 ~ 06242048 n 0000 ~ 06242237 n 0000 ~ 06242427 n 0000 -c 06466479 n 0000 -c 06789801 n 0000 -c 07330362 n 0000 -c 07343017 n 0000 -c 09534187 n 0000 -c 09684352 n 0000 -c 10152616 n 0000 -c 13988224 n 0000 | the teaching of Buddha that life is permeated with suffering caused by desire, that suffering ceases when desire ceases, and that enlightenment obtained through right conduct and wisdom and meditation releases one from desire and suffering and rebirth -06240865 09 n 02 Mahayana 0 Mahayana_Buddhism 0 003 @ 06240244 n 0000 + 09684082 n 0101 ~ 06242780 n 0000 | one of two great schools of Buddhist doctrine emphasizing a common search for universal salvation especially through faith alone; the dominant religion of China and Tibet and Japan -06241156 09 n 02 Theravada 0 Theravada_Buddhism 0 002 @ 06240244 n 0000 ~ 06241576 n 0000 | one of two great schools of Buddhist doctrine emphasizing personal salvation through your own efforts; a conservative form of Buddhism that adheres to Pali scriptures and the non-theistic ideal of self purification to nirvana; the dominant religion of Sri Lanka (Ceylon) and Myanmar (Burma) and Thailand and Laos and Cambodia -06241576 09 n 02 Hinayana 0 Hinayana_Buddhism 0 001 @ 06241156 n 0000 | an offensive name for the early conservative Theravada Buddhism; it died out in India but survived in Sri Lanka and was taken from there to other regions of southwestern Asia -06241825 09 n 02 Lamaism 0 Tibetan_Buddhism 0 003 @ 06240244 n 0000 ;r 08906952 n 0000 + 09684352 n 0101 | a Buddhist doctrine that includes elements from India that are not Buddhist and elements of preexisting shamanism -06242048 09 n 02 Zen 0 Zen_Buddhism 0 003 @ 06240244 n 0000 + 09683924 n 0101 -c 05987969 n 0000 | a Buddhist doctrine that enlightenment can be attained through direct intuitive insight -06242237 09 n 01 Shingon 0 002 @ 06240244 n 0000 ;r 08921850 n 0000 | a form of Buddhism emphasizing mystical symbolism of mantras and mudras and the Buddha's ideal which is inexpressible -06242427 09 n 02 Tantra 0 Tantrism 0 003 @ 06240244 n 0000 + 02926025 a 0201 + 09684476 n 0201 | doctrine of enlightenment as the realization of the oneness of one's self and the visible world; combines elements of Hinduism and paganism including magical and mystical elements like mantras and mudras and erotic rites; especially influential in Tibet -06242780 09 n 01 Yogacara 0 001 @ 06240865 n 0000 | one of the main traditions of Mahayana Buddhism; holds that the mind is real but that objects are just ideas or states of consciousness -06242970 09 n 01 Tao 0 003 @ 05872477 n 0000 #p 05977340 n 0000 ;c 05977340 n 0000 | the ultimate principle of the universe -06243096 09 n 02 Taoism 2 Hsuan_Chiao 0 002 @ 05946687 n 0000 + 09848285 n 0101 | popular Chinese philosophical system based in teachings of Lao-tzu but characterized by a pantheism of many gods and the practices of alchemy and divination and magic -06243347 09 n 02 Shinto 0 Shintoism 0 003 @ 05946687 n 0000 + 02924739 a 0203 + 09685806 n 0201 | the ancient indigenous religion of Japan lacking formal dogma; characterized by a veneration of nature spirits and of ancestors -06243575 09 n 02 Manichaeism 0 Manichaeanism 0 004 @ 05946687 n 0000 + 02759009 a 0102 + 02947252 a 0102 + 02759009 a 0101 | a religion founded by Manes in the third century; a synthesis of Zoroastrian dualism between light and dark and Babylonian folklore and Buddhist ethics and superficial elements of Christianity; spread widely in the Roman Empire but had largely died out by 1000 -06243963 09 n 02 Mithraism 0 Mithraicism 0 003 @ 05946687 n 0000 + 03019322 a 0102 + 09686051 n 0101 | ancient Persian religion; popular among Romans during first three centuries a.d. -06244149 09 n 02 Zoroastrianism 0 Mazdaism 0 004 @ 05946687 n 0000 -c 02926519 a 0000 ~ 06244445 n 0000 -c 09524555 n 0000 | system of religion founded in Persia in the 6th century BC by Zoroaster; set forth in the Zend-Avesta; based on concept of struggle between light (good) and dark (evil) -06244445 09 n 02 Parsiism 0 Parseeism 0 001 @ 06244149 n 0000 | the faith of a Zoroastrian sect in India -06244552 09 n 01 Bahaism 0 001 @ 05946687 n 0000 | a religion founded in Iran in 1863; emphasizes the spiritual unity of all humankind; incorporates Christian and Islamic tenets; many adherents live in the United States; "Bahaism has no public rituals or sacraments and praying is done in private" -06244852 09 n 02 shamanism 1 Asian_shamanism 0 002 @ 05946687 n 0000 + 03135786 a 0102 | an animistic religion of northern Asia having the belief that the mediation between the visible and the spirit worlds is effected by shamans -06245084 09 n 01 shamanism 2 003 @ 05946687 n 0000 ;r 09044862 n 0000 + 03135786 a 0102 | any animistic religion similar to Asian shamanism (especially as practiced by certain Native American tribes) -06245286 09 n 01 Vedism 0 002 @ 06236802 n 0000 + 10747294 n 0101 | the form of Hinduism that revolves primarily around the mythic version and ritual ideologies in the Vedas -06245462 09 n 01 Wicca 0 001 @ 05946687 n 0000 | the polytheistic nature religion of modern witchcraft whose central deity is a mother goddess; claims origins in pre-Christian pagan religions of western Europe -06245674 09 n 01 obiism 0 001 @ 05978812 n 0000 | belief in a kind of sorcery that originated in Africa and is practiced in the West Indies -06245816 09 n 04 voodoo 0 vodoun 0 voodooism 0 hoodooism 0 004 @ 05948264 n 0000 + 00777391 v 0101 ~ 10184290 n 0000 -c 10805932 n 0000 | a religious cult practiced chiefly in Caribbean countries (especially Haiti); involves witchcraft and animistic deities -06246076 09 n 01 amateurism 0 001 @ 05942888 n 0000 | the conviction that people should participate in sports as a hobby (for the fun of it) rather than for money -06246241 09 n 01 anagoge 0 001 @ 05928513 n 0000 | a mystical or allegorical interpretation (especially of Scripture) -06246361 09 n 01 dynamical_system 0 003 @ 00029114 n 0000 ;c 06090869 n 0000 ~ 06246529 n 0000 | (physics) a phase space together with a transformation of that space -06246529 09 n 01 chaos 0 003 @ 06246361 n 0000 ;c 06090869 n 0000 + 02691237 a 0101 | (physics) a dynamical system that is extremely sensitive to its initial conditions -06246700 09 n 01 condensation 0 002 @ 05701738 n 0000 ;c 00704305 n 0000 | (psychoanalysis) an unconscious process whereby two ideas or images combine into a single symbol; especially in dreams -06246896 09 n 03 level 0 layer 0 stratum 0 002 @ 05611822 n 0000 + 01262113 v 0201 | an abstract place usually conceived as having depth; "a good actor communicates on several levels"; "a simile has at least two layers of meaning"; "the mind functions on many strata simultaneously" -06247181 09 n 01 transference 0 003 @ 13467009 n 0000 ;c 00704305 n 0000 ~ 06247484 n 0000 | (psychoanalysis) the process whereby emotions are passed on or displaced from one person to another; during psychoanalysis the displacement of feelings toward others (usually the parents) is onto the analyst -06247484 09 n 01 countertransference 0 001 @ 06247181 n 0000 | the psychoanalyst's displacement of emotion onto the patient or more generally the psychoanalyst's emotional involvement in the therapeutic interaction -06247701 09 n 01 restraint 0 002 @ 05846355 n 0000 ~ 06247867 n 0000 | a rule or condition that limits freedom; "legal restraints"; "restraints imposed on imports" -06247867 09 n 01 floodgate 0 001 @ 06247701 n 0000 | something that restrains a flood or outpouring; "suspension of surveillance opened the floodgates to illegal immigrants" -06248043 09 n 01 military_science 0 004 @ 05996646 n 0000 ;c 08199025 n 0000 ~ 06248968 n 0000 ~ 06249177 n 0000 | the discipline dealing with the principles of warfare -06248214 09 n 01 escapology 0 002 @ 05996646 n 0000 + 10063177 n 0101 | the study of methods of escaping (especially as a form of entertainment) -06248361 09 n 01 graphology 0 002 @ 05996646 n 0000 + 10144188 n 0101 | the study of handwriting (especially as an indicator of the writer's character or disposition) -06248530 09 n 01 numerology 0 003 @ 05996646 n 0000 + 02770123 a 0101 + 10366383 n 0101 | the study of the supposed occult influence of numbers on human affairs -06248693 09 n 01 protology 0 001 @ 05996646 n 0000 | the study of origins and first things; "To Christians, protology refers to God's fundamental purpose for humanity" -06248863 09 n 01 theogony 0 001 @ 05996646 n 0000 | the study of the origins and genealogy of the gods -06248968 09 n 01 tactics 1 004 @ 06248043 n 0000 ;c 08199025 n 0000 + 02951000 a 0101 + 10688356 n 0101 | the branch of military science dealing with detailed maneuvers to achieve objectives set by strategy -06249177 09 n 01 strategy 1 006 @ 06248043 n 0000 ;c 08199025 n 0000 + 01279735 a 0101 + 02950711 a 0101 + 02950711 a 0102 + 10661563 n 0101 | the branch of military science dealing with military command and the planning and conduct of a war -06249421 09 n 02 closure 0 law_of_closure 0 001 @ 05878440 n 0000 | a Gestalt principle of organization holding that there is an innate tendency to perceive incomplete objects as complete and to close or fill gaps and to perceive asymmetric stimuli as symmetric -06249685 09 n 02 common_fate 0 law_of_common_fate 0 001 @ 05878440 n 0000 | a Gestalt principle of organization holding that aspects of perceptual field that move or function in a similar manner will be perceived as a unit -06249910 09 n 01 descriptivism 0 002 @ 05943300 n 0000 ;c 06172789 n 0000 | (linguistics) a doctrine supporting or promoting descriptive linguistics -06250061 09 n 01 descriptivism 1 002 @ 05943300 n 0000 ;c 06159473 n 0000 | (ethics) a doctrine holding that moral statements have a truth value -06250208 09 n 03 good_continuation 0 continuation 0 law_of_continuation 0 001 @ 05878440 n 0000 | a Gestalt principle of organization holding that there is an innate tendency to perceive a line as continuing its established direction -06250444 09 n 01 prescriptivism 0 002 @ 05943300 n 0000 ;c 06172789 n 0000 | (linguistics) a doctrine supporting or promoting prescriptive linguistics -06250597 09 n 01 prescriptivism 1 002 @ 05943300 n 0000 ;c 06159473 n 0000 | (ethics) a doctrine holding that moral statements prescribe appropriate attitudes and behavior -06250771 09 n 02 proximity 0 law_of_proximity 0 001 @ 05878440 n 0000 | a Gestalt principle of organization holding that (other things being equal) objects or events that are near to one another (in space or time) are perceived as belonging together as a unit -06251033 09 n 02 similarity 0 law_of_similarity 0 001 @ 05878440 n 0000 | a Gestalt principle of organization holding that (other things being equal) parts of a stimulus field that are similar to each other tend to be perceived as belonging together as a unit -06251295 09 n 01 wrinkle 0 001 @ 05660268 n 0000 | a clever method of doing something (especially something new and different) -06251424 09 n 01 wrinkle 1 001 @ 05686955 n 0000 | a minor difficulty; "they finally have the wrinkles pretty well ironed out" -06251553 09 n 01 Zurvanism 0 002 @ 06186301 n 0000 @ 05980412 n 0000 | a heretical Zoroastrian doctrine holding that Zurvan was the ultimate source of the universe and that both Ahura Mazda and Ahriman were Zurvan's offspring -06251781 10 n 01 transmission 0 015 @ 06252138 n 0000 + 02079933 v 0103 + 00973056 v 0105 ~ 06252954 n 0000 ~ 06253140 n 0000 ~ 06259898 n 0000 ~ 06261464 n 0000 ~ 06261586 n 0000 ~ 06261744 n 0000 ~ 06278662 n 0000 ~ 06280816 n 0000 ~ 06281295 n 0000 -c 06819824 n 0000 ~ 07280295 n 0000 ~ 07280599 n 0000 | communication by means of transmitted signals -06252138 10 n 02 communication 1 communicating 0 023 @ 00030358 n 0000 + 01070102 v 0201 + 00742320 v 0201 + 00740577 v 0201 + 00496670 a 0101 + 01070102 v 0101 + 00742320 v 0101 + 00740577 v 0101 ~ 06251781 n 0000 ~ 06252743 n 0000 ~ 06254475 n 0000 ~ 06260121 n 0000 ~ 06264398 n 0000 ~ 07006119 n 0000 ~ 07138085 n 0000 ~ 07139700 n 0000 ~ 07139873 n 0000 ~ 07197021 n 0000 ~ 07245125 n 0000 ~ 07245686 n 0000 ~ 07246742 n 0000 ~ 07279285 n 0000 ~ 07279453 n 0000 | the activity of communicating; the activity of conveying information; "they could not act without official communication from Moscow" -06252743 10 n 01 intercommunication 0 003 @ 06252138 n 0000 + 00740577 v 0102 ~ 07134445 n 0000 | mutual communication; communication with each other; "they intercepted intercommunication between enemy ships" -06252954 10 n 03 conveyance 0 imparting 0 impartation 0 005 @ 06251781 n 0000 + 02296153 v 0301 + 02296153 v 0201 + 00928630 v 0101 ~ 06685198 n 0000 | the transmission of information -06253140 10 n 04 dissemination 0 airing 0 public_exposure 0 spreading 0 005 @ 06251781 n 0000 + 00968211 v 0408 + 00968211 v 0105 ~ 06253371 n 0000 ~ 06253518 n 0000 | the opening of a subject to widespread discussion and debate -06253371 10 n 01 circulation 0 002 @ 06253140 n 0000 + 02043190 v 0101 | the dissemination of copies of periodicals (as newspapers or magazines) -06253518 10 n 02 propagation 0 extension 1 003 @ 06253140 n 0000 + 01379256 v 0101 + 00968211 v 0106 | the spreading of something (a belief or practice) into new regions -06253690 10 n 01 message 1 010 @ 00033020 n 0000 ~ 06254007 n 0000 ~ 06254239 n 0000 ~ 06254371 n 0000 ~ 06275634 n 0000 ~ 06276287 n 0000 ~ 06276401 n 0000 ~ 06406317 n 0000 ~ 06622709 n 0000 ~ 07281099 n 0000 | a communication (usually brief) that is written or spoken or signaled; "he sent a three-word message" -06254007 10 n 01 broadcast 0 008 @ 06253690 n 0000 + 00973056 v 0103 + 00968211 v 0107 ~ 06619751 n 0000 ~ 06622366 n 0000 ~ 06622449 n 0000 ~ 06622595 n 0000 ~ 06683359 n 0000 | message that is transmitted by radio or television -06254239 10 n 02 cipher 1 cypher 1 003 @ 06253690 n 0000 + 00994076 v 0204 + 00994076 v 0103 | a message written in a secret code -06254371 10 n 01 heliogram 0 001 @ 06253690 n 0000 | a message transmitted by means of the sun's rays -06254475 10 n 01 medium 0 004 @ 06252138 n 0000 ~ 06254915 n 0000 ~ 06255354 n 0000 -c 02493666 v 0000 | an intervening substance through which signals can travel as a means for communication -06254669 10 n 01 medium 1 008 @ 03575240 n 0000 ~ 06255081 n 0000 ~ 06255613 n 0000 ~ 06262567 n 0000 ~ 06263609 n 0000 ~ 06263762 n 0000 ~ 06271778 n 0000 ~ 06591815 n 0000 | a means or instrumentality for storing or communicating information -06254915 10 n 02 ether 0 aether 0 001 @ 06254475 n 0000 | a medium that was once supposed to fill all space and to support the propagation of electromagnetic waves -06255081 10 n 01 vehicle 0 001 @ 06254669 n 0000 | a medium for the expression or achievement of something; "his editorials provided a vehicle for his political views"; "a congregation is a vehicle of group identity"; "the play was just a vehicle to display her talents" -06255354 10 n 02 air 2 airwave 0 003 @ 06254475 n 0000 + 00973728 v 0101 + 00973056 v 0101 | medium for radio and television broadcasting; "the program was on the air from 9 til midnight"; "the president used the airwaves to take his message to the people" -06255613 10 n 01 paper 0 002 @ 06254669 n 0000 #s 06256697 n 0000 | a medium for written communication; "the notion of an office running without paper is absurd" -06255777 10 n 03 sheet 0 piece_of_paper 0 sheet_of_paper 0 009 @ 14974264 n 0000 ~ 04240327 n 0000 ~ 06256041 n 0000 ~ 06256229 n 0000 ~ 06257141 n 0000 ~ 06259487 n 0000 ~ 06259584 n 0000 ~ 06259736 n 0000 ~ 06855817 n 0000 | paper used for writing or printing -06256041 10 n 01 signature 1 002 @ 06255777 n 0000 #p 06410904 n 0000 | a sheet with several pages printed on it; it folds to page size and is bound with other signatures to form a book -06256229 10 n 02 leaf 0 folio 0 008 @ 06255777 n 0000 #p 06349220 n 0000 + 06413889 n 0104 + 02089837 v 0101 + 02153023 v 0105 ~ 06256494 n 0000 ~ 06256591 n 0000 ~ 06256697 n 0000 | a sheet of any written or printed material (especially in a manuscript or book) -06256494 10 n 01 flyleaf 0 001 @ 06256229 n 0000 | a blank leaf in the front or back of a book -06256591 10 n 01 interleaf 0 001 @ 06256229 n 0000 | a blank leaf inserted between the leaves of a book -06256697 10 n 01 page 0 016 @ 06256229 n 0000 + 00949093 v 0103 + 00949093 v 0102 %s 06255613 n 0000 ~ 06257250 n 0000 ~ 06257372 n 0000 ~ 06257484 n 0000 ~ 06257569 n 0000 ~ 06257653 n 0000 ~ 06257772 n 0000 ~ 06257909 n 0000 ~ 06258031 n 0000 ~ 06258541 n 0000 %p 06258680 n 0000 %p 06389398 n 0000 %p 06795168 n 0000 | one side of one leaf (of a book or magazine or newspaper or letter etc.) or the written or pictorial matter it contains -06257141 10 n 01 tear_sheet 0 001 @ 06255777 n 0000 | a sheet that can be easily torn out of a publication -06257250 10 n 01 full_page 0 001 @ 06256697 n 0000 | something that covers an entire page; "the ad took up a full page" -06257372 10 n 01 half_page 0 001 @ 06256697 n 0000 | something that covers (the top or bottom) half of a page -06257484 10 n 01 recto 0 002 @ 06256697 n 0000 ! 06257569 n 0101 | right-hand page -06257569 10 n 01 verso 0 002 @ 06256697 n 0000 ! 06257484 n 0101 | left-hand page -06257653 10 n 01 title_page 0 001 @ 06256697 n 0000 | a page of a book displaying the title and author and publisher -06257772 10 n 02 half_title 0 bastard_title 0 001 @ 06256697 n 0000 | a first page of some books displaying only the title of the book -06257909 10 n 01 sports_page 0 002 @ 06256697 n 0000 #p 06392787 n 0000 | any page in the sports section of a newspaper -06258031 10 n 04 spread 0 spread_head 0 spreadhead 0 facing_pages 0 004 @ 06256697 n 0000 #p 06589574 n 0000 ~ 06258228 n 0000 ~ 06258361 n 0000 | two facing pages of a book or other publication -06258228 10 n 02 center_spread 0 centre_spread 0 002 @ 06258031 n 0000 #p 06595351 n 0000 | the spread at the center of a magazine -06258361 10 n 02 centerfold 0 centrefold 0 002 @ 06258031 n 0000 @ 06258541 n 0000 | a magazine center spread; especially a foldout of a large photograph or map or other feature -06258541 10 n 02 foldout 0 gatefold 0 002 @ 06256697 n 0000 ~ 06258361 n 0000 | an oversize page that is folded in to a book or magazine -06258680 10 n 04 pagination 0 folio 1 page_number 0 paging 1 004 @ 13582013 n 0000 #p 06256697 n 0000 + 00949093 v 0403 + 00949093 v 0102 | the system of numbering pages -06258852 10 n 02 stationery 0 letter_paper 0 002 @ 15105268 n 0000 ~ 06259027 n 0000 | paper cut to an appropriate size for writing letters; usually with matching envelopes -06259027 10 n 01 letterhead 0 001 @ 06258852 n 0000 | a sheet of stationery with name and address of the organization printed at the top -06259166 10 n 01 notepaper 0 002 @ 15105268 n 0000 ~ 06259297 n 0000 | writing paper intended for writing short notes or letters -06259297 10 n 01 Post-It 0 001 @ 06259166 n 0000 | brand name for a slip of notepaper that has an adhesive that allows it to stick to a surface and be removed without damaging the surface -06259487 10 n 01 foolscap 0 001 @ 06255777 n 0000 | a size of paper used especially in Britain -06259584 10 n 01 style_sheet 0 001 @ 06255777 n 0000 | a sheet summarizing the editorial conventions to be followed in preparing text for publication -06259736 10 n 01 worksheet 0 001 @ 06255777 n 0000 | a sheet of paper with multiple columns; used by an accountant to assemble figures for financial statements -06259898 10 n 02 channel 0 transmission_channel 0 003 @ 06251781 n 0000 + 02079933 v 0106 + 01435380 v 0105 | a path over which electrical signals can pass; "a channel is typically what you rent from a telephone company" -06260121 10 n 03 channel 1 communication_channel 0 line 5 010 @ 06252138 n 0000 ;u 06295235 n 0000 + 02079933 v 0106 + 01933900 v 0101 + 01435380 v 0104 + 01435380 v 0105 ~ 06260817 n 0000 ~ 06261060 n 0000 ~ 06261260 n 0000 ~ 07013400 n 0000 | (often plural) a means of communication or access; "it must go through official channels"; "lines of communication were set up between the two firms" -06260518 10 n 01 band 0 002 @ 08399586 n 0000 ~ 06260628 n 0000 | a range of frequencies between two limits -06260628 10 n 02 frequency_band 0 waveband 0 002 @ 06260518 n 0000 ;c 06277280 n 0000 | a band of adjacent radio frequencies (e.g., assigned for transmitting radio or television signals) -06260817 10 n 01 back_channel 0 001 @ 06260121 n 0000 | an alternative to the regular channels of communication that is used when agreements must be made secretly (especially in diplomacy or government); "they negotiated via a back channel" -06261060 10 n 01 lens 0 002 @ 06260121 n 0000 ;u 07105475 n 0000 | (metaphor) a channel through which something can be seen or understood; "the writer is the lens through which history can be seen" -06261260 10 n 04 liaison 0 link 0 contact 0 inter-group_communication 0 002 @ 06260121 n 0000 + 00743344 v 0304 | a channel for communication between groups; "he provided a liaison with the guerrillas" -06261464 10 n 01 channels 0 001 @ 06251781 n 0000 | official routes of communication; "you have to go through channels" -06261586 10 n 02 medium 2 mass_medium 0 002 @ 06251781 n 0000 ~ 06264176 n 0000 | (usually plural) transmissions that are disseminated widely to the public -06261744 10 n 02 multimedia 0 multimedia_system 0 002 @ 06251781 n 0000 ~ 06261922 n 0000 | transmission that combine media of communication (text and graphics and sound etc.) -06261922 10 n 04 hypermedia 0 hypermedia_system 0 interactive_multimedia 0 interactive_multimedia_system 0 002 @ 06261744 n 0000 %p 06589151 n 0000 | a multimedia system in which related items of information are connected and can be presented together -06262176 10 n 01 hypertext 0 002 @ 06388918 n 0000 #p 06638527 n 0000 | machine-readable text that is not sequential but is organized so that related items of information are connected; "Let me introduce the word hypertext to mean a body of written or pictorial material interconnected in such a complex way that it could not conveniently be presented or represented on paper"--Ted Nelson -06262567 10 n 03 film 0 cinema 0 celluloid 0 009 @ 06254669 n 0000 ;c 00933420 n 0000 ;c 01094725 n 0000 + 02696795 a 0201 + 01711965 v 0101 + 01002740 v 0101 -c 00384329 n 0000 -c 05865774 n 0000 ~ 06262943 n 0000 | a medium that disseminates moving pictures; "theater pieces transferred to celluloid"; "this story would be good cinema"; "film coverage of sporting events" -06262943 10 n 01 silver_screen 0 001 @ 06262567 n 0000 | the film industry -06263020 10 n 01 gutter_press 0 002 @ 06263202 n 0000 ;r 08860123 n 0000 | press that engages in sensational journalism (especially concerning the private lives of public figures) -06263202 10 n 01 free_press 0 002 @ 06263369 n 0000 ~ 06263020 n 0000 | a press not restricted or controlled by government censorship regarding politics or ideology -06263369 10 n 02 press 0 public_press 0 005 @ 06263609 n 0000 ~ 06263202 n 0000 ~ 06267145 n 0000 ~ 06595351 n 0000 %p 08403435 n 0000 | the print media responsible for gathering and publishing news in the form of newspapers or magazines -06263609 10 n 01 print_media 0 004 @ 06254669 n 0000 ~ 06263369 n 0000 ~ 06266417 n 0000 ~ 06271620 n 0000 | a medium that disseminates printed matter -06263762 10 n 02 storage_medium 0 data-storage_medium 0 002 @ 06254669 n 0000 ~ 06263895 n 0000 | a medium for storing information -06263895 10 n 03 magnetic_storage_medium 0 magnetic_medium 0 magnetic_storage 0 001 @ 06263762 n 0000 | any storage medium in which different patterns of magnetization are used to represent stored bits or bytes of information; "the hard disk in you computer is magnetic storage" -06264176 10 n 02 broadcast_medium 0 broadcasting 1 006 @ 06261586 n 0000 -c 00973056 v 0000 -c 00973530 v 0000 -c 00973728 v 0000 -c 00973888 v 0000 -c 00974031 v 0000 | a medium that disseminates via telecommunications -06264398 10 n 04 mail 0 mail_service 0 postal_service 0 post 0 008 @ 06252138 n 0000 + 02885934 a 0401 + 01031256 v 0402 + 01031256 v 0101 + 01437888 v 0101 ~ 06264812 n 0000 ~ 06264932 n 0000 ~ 06265142 n 0000 | the system whereby messages are transmitted via the post office; "the mail handles billions of items every day"; "he works for the United States mail service"; "in England they call mail `the post'" -06264812 10 n 02 airmail 0 airpost 0 002 @ 06264398 n 0000 + 01032127 v 0101 | a system of conveying mail by aircraft -06264932 10 n 01 snail_mail 0 004 @ 06264398 n 0000 ! 06279326 n 0101 ! 06279326 n 0102 ! 06279326 n 0103 | any mail that is physically delivered by the postal service; "email is much faster than snail mail" -06265142 10 n 02 rural_free_delivery 0 RFD 0 001 @ 06264398 n 0000 | free government delivery of mail in outlying country areas -06265272 10 n 04 first_class 0 1st_class 0 first-class_mail 0 1st-class_mail 0 002 @ 06275634 n 0000 ~ 06623614 n 0000 | mail that includes letters and postcards and packages sealed against inspection -06265475 10 n 02 express 0 express_mail 0 003 @ 06275634 n 0000 + 01031756 v 0101 ~ 06265815 n 0000 | mail that is distributed by a rapid and efficient system -06265636 10 n 01 poste_restante 0 001 @ 06763273 n 0000 | a notation written on mail that is to be held at the post office until called for (not in the United States or Canada) -06265815 10 n 01 pony_express 0 001 @ 06265475 n 0000 | express mail carried by relays of riders on horseback; especially between Missouri and California around 1860 -06265983 10 n 01 parcel_post 0 001 @ 06275634 n 0000 | postal service that handles packages -06266077 10 n 01 bulk_mail 0 001 @ 06275634 n 0000 | mail consisting of large numbers of identical items (circulars or advertisements) sent to individual addresses at less than 1st-class rates and paid for in one lot -06266296 10 n 01 direct_mail 0 001 @ 07248801 n 0000 | advertising sent directly to prospective customers via the mail -06266417 10 n 02 journalism 0 news_media 0 007 @ 06263609 n 0000 + 03077419 a 0101 + 10224578 n 0101 ~ 06266633 n 0000 ~ 06266710 n 0000 ~ 06267991 n 0000 %s 06676109 n 0000 | newspapers and magazines collectively -06266633 10 n 01 Fleet_Street 0 001 @ 06266417 n 0000 | British journalism -06266710 10 n 01 photojournalism 0 003 @ 06266417 n 0000 ~ 06266878 n 0000 ~ 06266973 n 0000 | journalism that presents a story primarily through the use of pictures -06266878 10 n 01 news_photography 0 001 @ 06266710 n 0000 | photography of newsworthy events -06266973 10 n 01 rotogravure 1 002 @ 06266710 n 0000 #p 06267145 n 0000 | printed material (text and pictures) produced by an intaglio printing process in a rotary press -06267145 10 n 02 newspaper 0 paper 3 013 @ 06263369 n 0000 %p 06266973 n 0000 ~ 06267564 n 0000 ~ 06267655 n 0000 ~ 06267758 n 0000 ~ 06267893 n 0000 %p 06268567 n 0000 %p 06268784 n 0000 %p 06269130 n 0000 %p 06344461 n 0000 %p 06392787 n 0000 %p 06483339 n 0000 %p 07003352 n 0000 | a daily or weekly publication on folded sheets; contains news and articles and advertisements; "he read his newspaper at breakfast" -06267564 10 n 01 daily 0 001 @ 06267145 n 0000 | a newspaper that is published every day -06267655 10 n 01 gazette 0 002 @ 06267145 n 0000 + 01746604 v 0101 | a newspaper or official journal -06267758 10 n 02 school_newspaper 0 school_paper 0 001 @ 06267145 n 0000 | a newspaper written and published by students in a school -06267893 10 n 03 tabloid 0 rag 0 sheet 1 001 @ 06267145 n 0000 | newspaper with half-size pages -06267991 10 n 03 yellow_journalism 0 tabloid 1 tab 1 001 @ 06266417 n 0000 | sensationalist journalism -06268096 10 n 01 article 0 009 @ 06367571 n 0000 @ 06269396 n 0000 ~ 06268567 n 0000 ~ 06268784 n 0000 ~ 06269014 n 0000 ~ 06269130 n 0000 ~ 06269785 n 0000 ~ 06269956 n 0000 ~ 06270129 n 0000 | nonfictional prose forming an independent part of a publication -06268357 10 n 01 column 1 001 @ 06387980 n 0000 | a page or text that is vertically divided; "the newspaper devoted several columns to the subject"; "the bookkeeper used pages that were divided into columns" -06268567 10 n 03 column 0 editorial 0 newspaper_column 0 006 @ 06268096 n 0000 #p 06267145 n 0000 + 09939154 n 0202 + 01027924 v 0201 + 09939154 n 0101 ~ 06271514 n 0000 | an article giving opinions or perspectives -06268784 10 n 02 feature 1 feature_article 0 004 @ 06268096 n 0000 #p 06267145 n 0000 #p 06595351 n 0000 + 02631659 v 0102 | a special or prominent article in a newspaper or magazine; "they ran a feature on retirement planning" -06269014 10 n 01 magazine_article 0 002 @ 06268096 n 0000 #p 06595351 n 0000 | an article published in a magazine -06269130 10 n 03 news_article 0 news_story 0 newspaper_article 0 009 @ 06268096 n 0000 #p 06267145 n 0000 -c 00977839 a 0000 %p 06270879 n 0000 %p 06271055 n 0000 ~ 06271192 n 0000 ~ 06271288 n 0000 ~ 06271403 n 0000 %p 06399870 n 0000 | an article reporting news -06269396 10 n 01 piece 2 006 @ 03129123 n 0000 ~ 06268096 n 0000 ~ 06269674 n 0000 ~ 07008544 n 0000 ~ 07008680 n 0000 ~ 07008947 n 0000 | an artistic or literary composition; "he wrote an interesting piece on Iran"; "the children acted out a comic piece to amuse the guests" -06269674 10 n 01 morceau 0 002 @ 06269396 n 0000 @ 07037465 n 0000 | a short literary or musical composition -06269785 10 n 03 offprint 0 reprint 0 separate 0 002 @ 06268096 n 0000 + 01736098 v 0201 | a separately printed article that originally appeared in a larger publication -06269956 10 n 01 paper 2 001 @ 06268096 n 0000 | a scholarly article describing the results of observations or stating hypotheses; "he has written many scientific papers" -06270129 10 n 01 think_piece 0 001 @ 06268096 n 0000 | an article in a newspaper or magazine or journal that represents opinions and ideas and discussion rather than bare facts -06270308 10 n 03 reissue 0 reprint 1 reprinting 0 004 @ 06589574 n 0000 + 01736098 v 0301 + 01736098 v 0201 + 01736098 v 0102 | a publication (such as a book) that is reprinted without changes or editing and offered again for sale -06270541 10 n 01 new_edition 0 001 @ 06589574 n 0000 | a publication (such as a book) that has been modified or updated and offered again for sale -06270690 10 n 02 article_of_faith 0 credendum 0 002 @ 06790042 n 0000 ;c 06226057 n 0000 | (Christianity) any of the sections into which a creed or other statement of doctrine is divided -06270879 10 n 03 lead 1 lead-in 0 lede 0 002 @ 06392001 n 0000 #p 06269130 n 0000 | the introductory section of a story; "it was an amusing lead-in to a very serious matter" -06271055 10 n 01 opening_line 0 002 @ 07012534 n 0000 #p 06269130 n 0000 | the first line of a piece of writing (as a newspaper story) -06271192 10 n 02 lead 0 lead_story 0 001 @ 06269130 n 0000 | a news story of major importance -06271288 10 n 01 personal 0 001 @ 06269130 n 0000 | a short newspaper article about a particular person or group -06271403 10 n 01 sidebar 1 001 @ 06269130 n 0000 | a short news story presenting sidelights on a major story -06271514 10 n 01 agony_column 0 001 @ 06268567 n 0000 | a newspaper column devoted to personal problems -06271620 10 n 02 samizdat 0 underground_press 0 001 @ 06263609 n 0000 | a system of clandestine printing and distribution of dissident or banned literature -06271778 10 n 02 telecommunication 0 telecom 0 020 @ 06254669 n 0000 ;u 06295235 n 0000 + 00790703 v 0101 -c 00233756 a 0000 -c 00234522 a 0000 -c 01004775 n 0000 -c 03277602 n 0000 -c 05111248 n 0000 -c 06128307 n 0000 ~ 06272290 n 0000 ~ 06274921 n 0000 ~ 06275353 n 0000 ~ 06276697 n 0000 ~ 06277025 n 0000 -c 08074691 n 0000 -c 15282032 n 0000 -c 15282188 n 0000 -c 15285279 n 0000 -c 15285456 n 0000 -c 01062739 v 0000 | (often plural) systems used in transmitting messages over a distance electronically -06272290 10 n 02 telephone 0 telephony 0 013 @ 06271778 n 0000 + 03123434 a 0201 + 10698064 n 0202 + 00789448 v 0102 ~ 06272612 n 0000 ~ 06272803 n 0000 ~ 06273414 n 0000 ~ 06273743 n 0000 -c 00789448 v 0000 -c 00789934 v 0000 -c 00790135 v 0000 -c 00790308 v 0000 -c 00790509 v 0000 | transmitting speech at a distance -06272612 10 n 02 voice_mail 0 voicemail 0 001 @ 06272290 n 0000 | a computerized system for answering and routing telephone calls; telephone messages can be recorded and stored and relayed -06272803 10 n 03 call 1 phone_call 0 telephone_call 0 010 @ 06272290 n 0000 + 00789448 v 0101 ~ 06273207 n 0000 ~ 06273294 n 0000 ~ 06273555 n 0000 ~ 06273890 n 0000 ~ 06273986 n 0000 ~ 06274092 n 0000 ~ 06274408 n 0000 ~ 06274546 n 0000 | a telephone connection; "she reported several anonymous calls"; "he placed a phone call to London"; "he heard the phone ringing but didn't want to take the call" -06273207 10 n 01 call-back 0 002 @ 06272803 n 0000 + 00791764 v 0101 | a return call -06273294 10 n 01 collect_call 0 001 @ 06272803 n 0000 | a telephone call that the receiving party is asked to pay for -06273414 10 n 01 call_forwarding 0 001 @ 06272290 n 0000 | lets you transfer your incoming calls to any telephone that you can dial direct -06273555 10 n 01 call-in 0 002 @ 06272803 n 0000 + 00790135 v 0101 | a telephone call to a radio station or a television station in which the caller participates in the on-going program -06273743 10 n 01 call_waiting 0 001 @ 06272290 n 0000 | a way of letting you know that someone else is calling when you are using your telephone -06273890 10 n 01 crank_call 0 001 @ 06272803 n 0000 | a hostile telephone call (from a crank) -06273986 10 n 01 local_call 0 001 @ 06272803 n 0000 | a telephone call made within a local calling area -06274092 10 n 03 long_distance 0 long-distance_call 0 trunk_call 0 002 @ 06272803 n 0000 ~ 06274292 n 0000 | a telephone call made outside the local calling area; "I talked to her by long distance" -06274292 10 n 01 toll_call 0 001 @ 06274092 n 0000 | a long-distance telephone call at charges above a local rate -06274408 10 n 01 conference_call 0 002 @ 06272803 n 0000 ~ 06274760 n 0000 | a telephone call in which more than two people participate -06274546 10 n 01 wake-up_call 0 001 @ 06272803 n 0000 | a telephone call that you request be made a specific time in order to wake you up at that time (especially in hotels); "she left a wake-up call for 7 a.m." -06274760 10 n 01 three-way_calling 0 001 @ 06274408 n 0000 | a way of adding a third party to your conversation without the assistance of a telephone operator -06274921 10 n 01 telegraphy 0 004 @ 06271778 n 0000 + 10697519 n 0102 + 10697519 n 0101 -c 01007222 v 0000 | communicating at a distance by electric transmission over wire -06275095 10 n 03 cable 0 cablegram 0 overseas_telegram 0 002 @ 06622709 n 0000 + 01007222 v 0101 | a telegram sent abroad -06275219 10 n 01 letter_telegram 0 001 @ 06622709 n 0000 | a cheaper form of telegram that is sent abroad for delivery the next day -06275353 10 n 01 wireless 0 003 @ 06271778 n 0000 ~ 06275471 n 0000 ~ 06276501 n 0000 | transmission by radio waves -06275471 10 n 03 radiotelegraph 0 radiotelegraphy 0 wireless_telegraphy 0 001 @ 06275353 n 0000 | telegraphy that uses transmission by radio rather than by wire -06275634 10 n 01 mail 1 013 @ 06253690 n 0000 + 01437888 v 0101 ~ 06265272 n 0000 ~ 06265475 n 0000 ~ 06265983 n 0000 ~ 06266077 n 0000 ~ 06275977 n 0000 ~ 06622993 n 0000 ~ 06623100 n 0000 ~ 06623207 n 0000 ~ 06623316 n 0000 ~ 06623481 n 0000 %p 06624161 n 0000 | the bags of letters and packages that are transported by the postal service -06275977 10 n 02 third-class_mail 0 third_class 0 002 @ 06275634 n 0000 ~ 06276141 n 0000 | mail consisting of printed matter qualifying for reduced postal rates -06276141 10 n 01 junk_mail 0 001 @ 06275977 n 0000 | third-class mail consisting of advertising and often addressed to `resident' or `occupant' -06276287 10 n 02 phone_message 0 telephone_message 0 001 @ 06253690 n 0000 | a message transmitted by telephone -06276401 10 n 01 radiogram 0 001 @ 06253690 n 0000 | a message transmitted by wireless telegraphy -06276501 10 n 03 radiotelephone 0 radiotelephony 0 wireless_telephone 0 003 @ 06275353 n 0000 + 02786866 a 0201 + 02786866 a 0101 | telephony that uses transmission by radio rather than by wire -06276697 10 n 01 broadcasting 0 007 @ 06271778 n 0000 -c 00384510 n 0000 -c 03820474 n 0000 ~ 06276902 n 0000 ~ 06277135 n 0000 ~ 06277280 n 0000 ~ 06281040 n 0000 | taking part in a radio or tv program -06276902 10 n 01 Rediffusion 0 002 @ 06276697 n 0000 ;r 08860123 n 0000 | a system for distributing radio or tv programs -06277025 10 n 01 multiplex 0 001 @ 06271778 n 0000 | communicates two or more signals over a common channel -06277135 10 n 03 radio 0 radiocommunication 0 wireless 1 003 @ 06276697 n 0000 + 01007495 v 0101 -c 00744070 v 0000 | medium for communication -06277280 10 n 04 television 0 telecasting 0 TV 0 video 1 015 @ 06276697 n 0000 + 00969506 v 0201 + 00969506 v 0102 -c 01020117 n 0000 -c 04404412 n 0000 -c 04405907 n 0000 -c 06260628 n 0000 %p 06277803 n 0000 %p 06278136 n 0000 ~ 06278338 n 0000 ~ 06278475 n 0000 -c 09944529 n 0000 -c 00969506 v 0000 -c 00969769 v 0000 -c 03154986 a 0000 | broadcasting visual images of stationary or moving objects; "she is a star of screen and video"; "Television is a medium because it is neither rare nor well done" - Ernie Kovacs -06277803 10 n 02 video 0 picture 1 002 @ 06873252 n 0000 #p 06277280 n 0000 | the visible part of a television transmission; "they could still receive the sound but the picture was gone" -06277992 10 n 01 video 2 002 @ 06873252 n 0000 ;c 06128570 n 0000 | (computer science) the appearance of text and graphics on a video display -06278136 10 n 02 audio 0 sound 0 004 @ 07109019 n 0000 #p 06277280 n 0000 + 02180529 v 0201 + 02176268 v 0201 | the audible part of a transmitted signal; "they always raise the audio for commercials" -06278338 10 n 02 cable_television 0 cable 1 001 @ 06277280 n 0000 | television that is transmitted over cable directly to the receiver -06278475 10 n 02 high-definition_television 0 HDTV 0 001 @ 06277280 n 0000 | a television system that has more than the usual number of lines per frame so its pictures show more detail -06278662 10 n 01 electronic_communication 0 005 @ 06251781 n 0000 ~ 06278830 n 0000 ~ 06279326 n 0000 ~ 06280477 n 0000 ~ 06280604 n 0000 | communication by computer -06278830 10 n 02 digital_communication 0 data_communication 0 003 @ 06278662 n 0000 ;c 03082979 n 0000 ~ 06279071 n 0000 | electronic transmission of information that has been encoded digitally (as for storage and processing by computers) -06279071 10 n 02 asynchronous_transfer_mode 0 ATM 0 001 @ 06278830 n 0000 | a means of digital communications that is capable of very high speeds; suitable for transmission of images or voice or video as well as data; "ATM is used for both LAN and WAN" -06279326 10 n 03 electronic_mail 0 e-mail 0 email 0 009 @ 06278662 n 0000 ;c 06128570 n 0000 ! 06264932 n 0301 + 01032451 v 0302 ! 06264932 n 0201 + 01032451 v 0201 ! 06264932 n 0101 ~ 06279805 n 0000 ~ 06280347 n 0000 | (computer science) a system of world-wide electronic communication in which a computer user can compose a message at one terminal that can be regenerated at the recipient's terminal when the recipient logs in; "you cannot send packages by electronic mail" -06279805 10 n 01 freemail 0 001 @ 06279326 n 0000 | a service providing free email delivery in exchange for exposure to advertising -06279939 10 n 01 emoticon 0 002 @ 06877078 n 0000 ~ 06280162 n 0000 | a representation of a facial expression (as a smile or frown) created by typing a sequence of characters in sending email; ":-( and :-) are emoticons" -06280162 10 n 01 smiley 0 001 @ 06279939 n 0000 | an emoticon of a smiling face -06280244 10 n 01 smoking_gun 0 001 @ 06643408 n 0000 | indisputable evidence (especially of a crime) -06280347 10 n 02 spam 0 junk_e-mail 0 001 @ 06279326 n 0000 | unwanted e-mail (usually of a commercial nature sent out in bulk) -06280477 10 n 02 messaging 0 electronic_messaging 0 001 @ 06278662 n 0000 | the sending and processing of e-mail by computer -06280604 10 n 02 prompt 1 command_prompt 0 002 @ 06278662 n 0000 ;c 06128570 n 0000 | (computer science) a symbol that appears on the computer screen to indicate that the computer is ready to receive a command -06280816 10 n 04 fiber_optics 0 fiberoptics 0 fibre_optics 0 fibreoptics 0 005 @ 06251781 n 0000 + 02727009 a 0404 + 02727009 a 0202 + 02727009 a 0103 + 02727009 a 0101 | the transmission of light signals via glass fibers -06281040 10 n 01 reception 0 003 @ 06276697 n 0000 ~ 06281175 n 0000 ~ 06282209 n 0000 | quality or fidelity of a received broadcast -06281175 10 n 02 signal_detection 0 detection 0 001 @ 06281040 n 0000 | the detection that a signal is being received -06281295 10 n 01 modulation 0 007 @ 06251781 n 0000 ;c 06099269 n 0000 + 00123894 v 0101 ~ 06281594 n 0000 ~ 06281721 n 0000 ~ 06281848 n 0000 ~ 06281959 n 0000 | (electronics) the transmission of a signal by using it to vary a carrier wave; changing the carrier's amplitude or frequency or phase -06281594 10 n 02 amplitude_modulation 0 AM 0 001 @ 06281295 n 0000 | modulation of the amplitude of the (radio) carrier wave -06281721 10 n 02 frequency_modulation 0 FM 0 001 @ 06281295 n 0000 | modulation of the frequency of the (radio) carrier wave -06281848 10 n 02 phase_modulation 0 PM 0 001 @ 06281295 n 0000 | modulation of the phase of the carrier wave -06281959 10 n 01 pulse_modulation 0 002 @ 06281295 n 0000 ~ 06282093 n 0000 | modulation that imposes a signal on a train of pulses -06282093 10 n 01 pulse-time_modulation 0 001 @ 06281959 n 0000 | modulation of the time between successive pulses -06282209 10 n 01 demodulation 0 003 @ 06281040 n 0000 ;c 06099269 n 0000 + 01351601 v 0101 | (electronics) the reception of a signal by extracting it from the carrier wave -06282383 10 n 02 contagion 0 infection 0 004 @ 00033020 n 0000 + 01302811 a 0201 + 00605498 v 0201 + 01303298 a 0101 | the communication of an attitude or emotional state among a number of people; "a contagion of mirth"; "the infection of his enthusiasm for poetry" -06282651 10 n 02 language 0 linguistic_communication 0 026 @ 00033020 n 0000 -c 00429355 a 0000 -c 01000592 a 0000 -c 01751940 a 0000 -c 02377186 a 0000 -c 02377418 a 0000 ~ 06283459 n 0000 ~ 06283647 n 0000 ~ 06283764 n 0000 ~ 06283912 n 0000 ~ 06284067 n 0000 -c 06822198 n 0000 ~ 06875697 n 0000 ~ 06894544 n 0000 ~ 06900156 n 0000 ~ 06903396 n 0000 ~ 06903519 n 0000 ~ 06903972 n 0000 ~ 06904171 n 0000 ~ 06906116 n 0000 ~ 07013736 n 0000 -c 07066659 n 0000 ~ 07083441 n 0000 -c 07109196 n 0000 ~ 07281523 n 0000 -c 02330967 v 0000 | a systematic means of communicating by the use of sounds or conventional symbols; "he taught foreign languages"; "the language introduced is standard throughout the text"; "the speed with which a program can be executed depends on the language in which it is written" -06283459 10 n 01 usage 0 001 @ 06282651 n 0000 | the customary manner in which a language (or a form of a language) is spoken or written; "English usage"; "a usage borrowed from French" -06283647 10 n 01 dead_language 0 001 @ 06282651 n 0000 | a language that is no longer learned as a native language -06283764 10 n 01 words 4 001 @ 06282651 n 0000 | language that is spoken or written; "he has a gift for words"; "she put her thoughts into words" -06283912 10 n 01 source_language 0 003 @ 06282651 n 0000 ~ 06899110 n 0000 ~ 06899446 n 0000 | a language that is to be translated into another language -06284067 10 n 02 object_language 1 target_language 1 001 @ 06282651 n 0000 | the language into which a text written in another language is to be translated -06284225 10 n 02 language_unit 0 linguistic_unit 0 012 @ 13809207 n 0000 #p 07013549 n 0000 ~ 06284777 n 0000 ~ 06286395 n 0000 ~ 06304671 n 0000 ~ 06306034 n 0000 ~ 06306233 n 0000 ~ 06306480 n 0000 ~ 06333653 n 0000 ~ 07015151 n 0000 ~ 07111047 n 0000 ~ 07276018 n 0000 | one of the natural units into which linguistic messages can be analyzed -06284573 10 n 01 slot 0 001 @ 05074774 n 0000 | a position in a grammatical linguistic construction in which a variety of alternative units are interchangeable; "he developed a version of slot grammar" -06284777 10 n 01 discourse 1 002 @ 06284225 n 0000 ~ 06284898 n 0000 | extended verbal expression in speech or writing -06284898 10 n 03 context 0 linguistic_context 0 context_of_use 0 002 @ 06284777 n 0000 + 03002190 a 0101 | discourse that surrounds a language unit and helps to determine its interpretation -06285090 10 n 01 sentence 0 011 @ 07013736 n 0000 + 02991690 a 0101 ~ 06285435 n 0000 ~ 06285559 n 0000 ~ 06286100 n 0000 %p 06312966 n 0000 %p 06314144 n 0000 ~ 06600903 n 0000 ~ 06601053 n 0000 ~ 06601217 n 0000 ~ 07196682 n 0000 | a string of words satisfying the grammatical rules of a language; "he always spoke in grammatical sentences" -06285435 10 n 01 simple_sentence 0 001 @ 06285090 n 0000 | a sentence having no coordinate clauses or subordinate clauses -06285559 10 n 01 complex_sentence 0 006 @ 06285090 n 0000 ~ 06285789 n 0000 ~ 06285940 n 0000 %p 06314423 n 0000 %p 06314595 n 0000 %p 06314808 n 0000 | a sentence composed of at least one main clause and one subordinate clause -06285789 10 n 01 loose_sentence 0 001 @ 06285559 n 0000 | a complex sentence in which the main clause comes first and the subordinate clause follows -06285940 10 n 01 periodic_sentence 0 001 @ 06285559 n 0000 | a complex sentence in which the main clause comes last and is preceded by the subordinate clause -06286100 10 n 01 compound_sentence 0 001 @ 06285090 n 0000 | a sentence composed of at least two coordinate independent clauses -06286230 10 n 01 sentential_function 0 001 @ 06731802 n 0000 | formal expression containing variables; becomes a sentence when variables are replaced by constants -06286395 10 n 01 word 0 058 @ 06284225 n 0000 + 00980453 v 0103 ~ 06287620 n 0000 ~ 06287859 n 0000 ~ 06288024 n 0000 ~ 06288350 n 0000 ~ 06288947 n 0000 ~ 06289074 n 0000 ~ 06289250 n 0000 ~ 06289472 n 0000 ~ 06289693 n 0000 ~ 06290051 n 0000 ~ 06290246 n 0000 ~ 06290401 n 0000 ~ 06290539 n 0000 ~ 06290637 n 0000 ~ 06291122 n 0000 ~ 06291318 n 0000 ~ 06291603 n 0000 ~ 06291809 n 0000 ~ 06292000 n 0000 ~ 06292290 n 0000 ~ 06292478 n 0000 ~ 06292649 n 0000 ~ 06292836 n 0000 ~ 06292973 n 0000 ~ 06293106 n 0000 ~ 06293229 n 0000 ~ 06293460 n 0000 ~ 06293746 n 0000 ~ 06293898 n 0000 ~ 06294309 n 0000 ~ 06294441 n 0000 ~ 06294584 n 0000 ~ 06294716 n 0000 ~ 06294828 n 0000 ~ 06294941 n 0000 ~ 06301672 n 0000 ~ 06301792 n 0000 ~ 06301953 n 0000 ~ 06302083 n 0000 ~ 06302269 n 0000 ~ 06302381 n 0000 ~ 06302542 n 0000 ~ 06303150 n 0000 ~ 06303315 n 0000 ~ 06303540 n 0000 ~ 06303682 n 0000 ~ 06303888 n 0000 ~ 06304059 n 0000 ~ 06304338 n 0000 ~ 06304425 n 0000 ~ 06304576 n 0000 %p 06304671 n 0000 %p 06308049 n 0000 ~ 06308436 n 0000 ~ 06360314 n 0000 ~ 06752695 n 0000 | a unit of language that native speakers can identify; "words are the blocks from which sentences are made"; "he hardly said ten words all morning" -06287620 10 n 01 anagram 0 007 @ 06286395 n 0000 + 02620252 a 0101 + 02620252 a 0102 + 00625518 v 0102 + 00625518 v 0103 + 00625518 v 0101 ~ 06294147 n 0000 | a word or phrase spelled by rearranging the letters of another word or phrase -06287859 10 n 01 anaphor 0 001 @ 06286395 n 0000 | a word (such as a pronoun) used to avoid repetition; the referent of an anaphor is determined by its antecedent -06288024 10 n 03 antonym 0 opposite_word 0 opposite 0 005 @ 06286395 n 0000 ! 06303682 n 0101 + 02381764 a 0101 ~ 06305716 n 0000 ~ 06305838 n 0000 | a word that expresses a meaning opposed to the meaning of another word, in which case the two words are antonyms of each other; "to him the antonym of `gay' was `depressed'" -06288350 10 n 01 back-formation 0 001 @ 06286395 n 0000 | a word invented (usually unwittingly by subtracting an affix) on the assumption that a familiar word derives from it -06288527 10 n 03 blend 0 portmanteau_word 0 portmanteau 0 007 @ 06294441 n 0000 -u 03788498 n 0000 -u 07574923 n 0000 -u 10591811 n 0000 -u 10791002 n 0000 -u 14518377 n 0000 -u 01865726 v 0000 | a new word formed by joining two others and combining their meanings; "`smog' is a blend of `smoke' and `fog'"; "`motel' is a portmanteau word made by combining `motor' and `hotel'"; "`brunch' is a well-known portmanteau" -06288947 10 n 01 charade 0 002 @ 06286395 n 0000 #p 00459727 n 0000 | a word acted out in an episode of the game of charades -06289074 10 n 02 cognate 0 cognate_word 0 002 @ 06286395 n 0000 + 01973823 a 0101 | a word is cognate with another if both derive from the same word in an ancestral language -06289250 10 n 02 content_word 0 open-class_word 0 006 @ 06286395 n 0000 ~ 06292154 n 0000 ~ 06319293 n 0000 ~ 06320569 n 0000 ~ 06320801 n 0000 %p 06601973 n 0000 | a word to which an independent meaning can be assigned -06289472 10 n 01 contraction 0 001 @ 06286395 n 0000 | a word formed from two or more words by omitting or combining some sounds; "`won't' is a contraction of `will not'"; "`o'clock' is a contraction of `of the clock'" -06289693 10 n 02 deictic 0 deictic_word 0 002 @ 06286395 n 0000 + 03135403 a 0101 | a word specifying identity or spatial or temporal location from the perspective of a speaker or hearer in the context in which the communication occurs; "words that introduce particulars of the speaker's and hearer's shared cognitive field into the message"- R.Rommetveit -06290051 10 n 01 derivative 0 003 @ 06286395 n 0000 ;c 06172789 n 0000 + 00698586 a 0101 | (linguistics) a word that is derived from another word; "`electricity' is a derivative of `electric'" -06290246 10 n 01 diminutive 0 002 @ 06286395 n 0000 + 01392249 a 0102 | a word that is formed with a suffix (such as -let or -kin) to indicate smallness -06290401 10 n 01 dirty_word 1 001 @ 06286395 n 0000 | a word that is considered to be unmentionable; "`failure' is a dirty word to him" -06290539 10 n 02 disyllable 0 dissyllable 0 001 @ 06286395 n 0000 | a word having two syllables -06290637 10 n 04 form 0 word_form 0 signifier 0 descriptor 0 011 @ 06286395 n 0000 ;c 06172789 n 0000 + 00931852 v 0303 ~ 06295235 n 0000 ~ 06299916 n 0000 ~ 06300058 n 0000 ~ 06300193 n 0000 ~ 06300445 n 0000 ~ 06300632 n 0000 ~ 07091587 n 0000 ~ 07091902 n 0000 | the phonological or orthographic sound or appearance of a word that can be used to describe or identify something; "the inflected forms of a word can be represented by a stem and a list of inflections to be attached" -06291122 10 n 02 four-letter_word 0 four-letter_Anglo-Saxon_word 0 001 @ 06286395 n 0000 | any of several short English words (often having 4 letters) generally regarded as obscene or offensive -06291318 10 n 02 function_word 0 closed-class_word 0 007 @ 06286395 n 0000 ~ 06324475 n 0000 ~ 06325145 n 0000 ~ 06325370 n 0000 ~ 06325826 n 0000 ~ 06326406 n 0000 %p 06602148 n 0000 | a word that is uninflected and serves a grammatical function but has little identifiable meaning -06291603 10 n 03 guide_word 0 guideword 0 catchword 1 001 @ 06286395 n 0000 | a word printed at the top of the page of a dictionary or other reference book to indicate the first or last item on that page -06291809 10 n 02 head 3 head_word 1 002 @ 06286395 n 0000 ;c 06174404 n 0000 | (grammar) the word in a grammatical constituent that plays the same grammatical role as the whole constituent -06292000 10 n 01 headword 0 002 @ 06286395 n 0000 #p 06300823 n 0000 | a word placed at the beginning of a line or paragraph (as in a dictionary entry) -06292154 10 n 02 headword 2 head_word 2 002 @ 06289250 n 0000 #p 06316048 n 0000 | a content word that can be qualified by a modifier -06292290 10 n 01 heteronym 0 001 @ 06286395 n 0000 | two words are heteronyms if they are spelled the same way but differ in pronunciation; "the word `bow' is an example of a heteronym" -06292478 10 n 02 holonym 0 whole_name 0 001 @ 06286395 n 0000 | a word that names the whole of which a given word is a part; "`hat' is a holonym for `brim' and `crown'" -06292649 10 n 01 homonym 0 003 @ 06286395 n 0000 ~ 07131022 n 0000 ~ 07131169 n 0000 | two words are homonyms if they are pronounced or spelled the same way but have different meanings -06292836 10 n 03 hypernym 0 superordinate 0 superordinate_word 0 001 @ 06286395 n 0000 | a word that is more generic than a given word -06292973 10 n 03 hyponym 0 subordinate 0 subordinate_word 0 001 @ 06286395 n 0000 | a word that is more specific than a given word -06293106 10 n 01 key_word 0 002 @ 06286395 n 0000 #p 06491786 n 0000 | a significant word used in indexing or cataloging -06293229 10 n 03 loanblend 0 loan-blend 0 hybrid 0 003 @ 06286395 n 0000 ;r 08780881 n 0000 ;c 06962600 n 0000 | a word that is composed of parts from different languages (e.g., `monolingual' has a Greek prefix and a Latin root) -06293460 10 n 02 loanword 0 loan 0 003 @ 06286395 n 0000 ~ 06293655 n 0000 ~ 07081646 n 0000 | a word borrowed from another language; e.g. `blitz' is a German word borrowed into modern English -06293655 10 n 01 Latinism 0 001 @ 06293460 n 0000 | a word or phrase borrowed from Latin -06293746 10 n 02 meronym 0 part_name 0 001 @ 06286395 n 0000 | a word that names a part of a larger whole; "`brim' and `crown' are meronyms of `hat'" -06293898 10 n 01 metonym 0 003 @ 06286395 n 0000 + 01419999 a 0101 + 01419999 a 0102 | a word that denotes one thing but refers to a related thing; "Washington is a metonym for the United States government"; "plastic is a metonym for credit card" -06294147 10 n 01 antigram 0 001 @ 06287620 n 0000 | an anagram that means the opposite of the original word or phrase; "`restful' is the antigram of `fluster'" -06294309 10 n 02 monosyllable 0 monosyllabic_word 0 002 @ 06286395 n 0000 + 02289018 a 0101 | a word or utterance of one syllable -06294441 10 n 03 neologism 0 neology 0 coinage 0 003 @ 06286395 n 0000 + 01697986 v 0301 ~ 06288527 n 0000 | a newly invented word or phrase -06294584 10 n 02 nonce_word 0 hapax_legomenon 0 001 @ 06286395 n 0000 | a word with a special meaning used for a special occasion -06294716 10 n 01 oxytone 0 001 @ 06286395 n 0000 | word having stress or an acute accent on the last syllable -06294828 10 n 01 palindrome 0 001 @ 06286395 n 0000 | a word or phrase that reads the same backward as forward -06294941 10 n 01 primitive 0 001 @ 06286395 n 0000 | a word serving as the basis for inflected or derived forms; "`pick' is the primitive from which `picket' is derived" -06295113 10 n 01 primitive 1 001 @ 06731802 n 0000 | a mathematical expression from which another expression is derived -06295235 10 n 02 plural 0 plural_form 0 241 @ 06290637 n 0000 ! 06299916 n 0101 -u 00040962 n 0000 -u 00065418 n 0000 -u 00179916 n 0000 -u 00415988 n 0000 -u 00457228 n 0000 -u 00508800 n 0000 -u 00508952 n 0000 -u 00510050 n 0000 -u 00518770 n 0000 -u 00551714 n 0000 -u 00577357 n 0000 -u 00585174 n 0000 -u 00627437 n 0000 -u 00800121 n 0000 -u 00935005 n 0000 -u 00959645 n 0000 -u 01030152 n 0000 -u 01042764 n 0000 -u 01043333 n 0000 -u 01055688 n 0000 -u 01090117 n 0000 -u 01107726 n 0000 -u 01149793 n 0000 -u 01223877 n 0000 -u 01229350 n 0000 -u 01229549 n 0000 -u 02730568 n 0000 -u 02758270 n 0000 -u 02771166 n 0000 -u 02800793 n 0000 -u 02808185 n 0000 -u 02822399 n 0000 -u 02825442 n 0000 -u 02826259 n 0000 -u 02831595 n 0000 -u 02836607 n 0101 -u 02837887 n 0000 -u 02841315 n 0000 -u 02850552 n 0000 -u 02854739 n 0000 -u 02857907 n 0000 -u 02858044 n 0000 -u 02869249 n 0000 -u 02887489 n 0000 -u 02892948 n 0000 -u 02896442 n 0000 -u 02901114 n 0000 -u 02902816 n 0000 -u 02910864 n 0000 -u 02936020 n 0000 -u 03001282 n 0000 -u 03006903 n 0000 -u 03036341 n 0000 -u 03039827 n 0000 -u 03041449 n 0000 -u 03042384 n 0000 -u 03071923 n 0000 -u 03072056 n 0000 -u 03093574 n 0000 -u 03107488 n 0000 -u 03139464 n 0000 -u 03195659 n 0000 -u 03234164 n 0000 -u 03237212 n 0000 -u 03252064 n 0000 -u 03257877 n 0000 -u 03263076 n 0000 -u 03293321 n 0000 -u 03320735 n 0000 -u 03324928 n 0000 -u 03347472 n 0000 -u 03348454 n 0000 -u 03354350 n 0000 -u 03357081 n 0000 -u 03361550 n 0000 -u 03380134 n 0000 -u 03381231 n 0000 -u 03405265 n 0000 -u 03405595 n 0000 -u 03412906 n 0000 -u 03427084 n 0000 -u 03443912 n 0000 -u 03461119 n 0000 -u 03501811 n 0000 -u 03504420 n 0000 -u 03504723 n 0000 -u 03543112 n 0000 -u 03545585 n 0000 -u 03558633 n 0000 -u 03585438 n 0000 -u 03586911 n 0000 -u 03594734 n 0000 -u 03600285 n 0000 -u 03627021 n 0000 -u 03669367 n 0000 -u 03674591 n 0000 -u 03675907 n 0000 -u 03679384 n 0000 -u 03684224 n 0000 -u 03688192 n 0000 -u 03763727 n 0000 -u 03793954 n 0000 -u 03807334 n 0000 -u 03816530 n 0000 -u 03825080 n 0103 -u 03871255 n 0000 -u 03885028 n 0000 -u 03888605 n 0000 -u 03966976 n 0000 -u 03970363 n 0000 -u 04016684 n 0000 -u 04019335 n 0000 -u 04023021 n 0000 -u 04024137 n 0000 -u 04037076 n 0000 -u 04054566 n 0000 -u 04071393 n 0000 -u 04088343 n 0000 -u 04093223 n 0000 -u 04131811 n 0000 -u 04148054 n 0000 -u 04163530 n 0000 -u 04178329 n 0000 -u 04186848 n 0000 -u 04205318 n 0000 -u 04219580 n 0000 -u 04233715 n 0000 -u 04240867 n 0000 -u 04245508 n 0000 -u 04250473 n 0000 -u 04253304 n 0000 -u 04254319 n 0000 -u 04272054 n 0000 -u 04284735 n 0000 -u 04295571 n 0000 -u 04298171 n 0000 -u 04323819 n 0000 -u 04324515 n 0000 -u 04324741 n 0000 -u 04324910 n 0000 -u 04335693 n 0000 -u 04337287 n 0000 -u 04355684 n 0000 -u 04356056 n 0000 -u 04367950 n 0000 -u 04370288 n 0000 -u 04371430 n 0000 -u 04384199 n 0000 -u 04424692 n 0000 -u 04434932 n 0000 -u 04446162 n 0000 -u 04450749 n 0000 -u 04455835 n 0000 -u 04480303 n 0000 -u 04508489 n 0000 -u 04509171 n 0000 -u 04542715 n 0000 -u 04563560 n 0000 -u 04563790 n 0000 -u 04570532 n 0000 -u 04580493 n 0000 -u 04602840 n 0000 -u 04611654 n 0000 -u 04677113 n 0000 -u 04756504 n 0000 -u 04862236 n 0000 -u 04898087 n 0000 -u 05126228 n 0000 -u 05188220 n 0000 -u 05872742 n 0000 -u 05921685 n 0000 -u 05982720 n 0000 -u 06128307 n 0000 -u 06260121 n 0000 -u 06271778 n 0000 -u 06346220 n 0000 -u 06363778 n 0000 -u 06411753 n 0000 -u 06606464 n 0000 -u 06630017 n 0000 -u 06630627 n 0000 -u 06770875 n 0000 -u 06843838 n 0000 -u 07140348 n 0000 -u 07142365 n 0000 -u 07168623 n 0000 -u 07334876 n 0000 -u 07454452 n 0000 -u 07715221 n 0000 -u 07804152 n 0000 -u 07851054 n 0000 -u 07942152 n 0000 -u 07943300 n 0000 -u 07943646 n 0000 -u 07947789 n 0000 -u 07956250 n 0000 -u 07968702 n 0000 -u 07971023 n 0000 -u 08147670 n 0000 -u 08179205 n 0000 -u 08179455 n 0000 -u 08184052 n 0000 -u 08207540 n 0000 -u 08224684 n 0000 -u 08404895 n 0000 -u 08477307 n 0000 -u 08500213 n 0000 -u 08623424 n 0000 -u 09203677 n 0000 -u 09212572 n 0000 -u 09248914 n 0000 -u 09269341 n 0000 -u 09269972 n 0000 -u 09337406 n 0000 -u 09407346 n 0000 -u 09425344 n 0000 -u 09426307 n 0000 -u 09445566 n 0000 -u 09824609 n 0000 -u 09956147 n 0000 -u 13262462 n 0000 -u 13292390 n 0000 -u 13292989 n 0000 -u 13306436 n 0000 -u 13306669 n 0000 -u 13329641 n 0000 -u 13330283 n 0000 -u 13330591 n 0000 -u 13330764 n 0000 -u 13333047 n 0000 -u 13341756 n 0000 -u 13396054 n 0000 -u 13407208 n 0000 -u 13746946 n 0000 -u 13923030 n 0000 -u 13923219 n 0000 -u 14255064 n 0000 -u 14359459 n 0000 -u 14441083 n 0000 | the form of a word that is used to denote more than one -06299916 10 n 02 singular 0 singular_form 0 002 @ 06290637 n 0000 ! 06295235 n 0101 | the form of a word that is used to denote a singleton -06300058 10 n 01 ghost_word 0 001 @ 06290637 n 0000 | a word form that has entered the language through the perpetuation of an error -06300193 10 n 06 root 0 root_word 0 base 0 stem 1 theme 3 radical 2 004 @ 06290637 n 0000 ;c 06172789 n 0000 + 00176137 v 0401 + 02627753 v 0401 | (linguistics) the form of a word after all affixes are removed; "thematic vowels are part of the stem" -06300445 10 n 02 etymon 0 root 1 001 @ 06290637 n 0000 | a simple form inferred as the common basis from which related words in several languages can be derived by linguistic processes -06300632 10 n 03 citation_form 0 main_entry_word 0 entry_word 0 002 @ 06290637 n 0000 #p 06300823 n 0000 | the form of a word that heads a lexical entry and is alphabetized in a dictionary -06300823 10 n 02 lexical_entry 0 dictionary_entry 0 004 @ 06503724 n 0000 #p 06418901 n 0000 %p 06292000 n 0000 %p 06300632 n 0000 | the entry in a dictionary of information about a word -06301012 10 n 01 Beatitude 0 002 @ 07151380 n 0000 #p 07244433 n 0000 | one of the eight sayings of Jesus at the beginning of the Sermon on the Mount; in Latin each saying begins with `beatus' (blessed); "her favorite Beatitude is `Blessed are the meek for they shall inherit the earth'" -06301302 10 n 01 logion 0 001 @ 07151380 n 0000 | a saying of Jesus that is regarded as authentic although it is not recorded in the Gospels -06301445 10 n 03 calque 0 calque_formation 0 loan_translation 0 001 @ 07151380 n 0000 | an expression introduced into one language by translating it from another language; "`superman' is a calque for the German `Ubermensch'" -06301672 10 n 01 paroxytone 0 001 @ 06286395 n 0000 | word having stress or acute accent on the next to last syllable -06301792 10 n 01 partitive 0 002 @ 06286395 n 0000 + 03097289 a 0101 | word (such a `some' or `less') that is used to indicate a part as distinct from a whole -06301953 10 n 03 polysemant 0 polysemantic_word 0 polysemous_word 0 001 @ 06286395 n 0000 | a word having more than one meaning -06302083 10 n 02 polysyllable 0 polysyllabic_word 0 005 @ 06286395 n 0000 + 02289405 a 0101 + 01435675 a 0101 ~ 06305385 n 0000 ~ 06305474 n 0000 | a word of more than three syllables -06302269 10 n 01 proparoxytone 0 001 @ 06286395 n 0000 | word having stress or acute accent on the antepenult -06302381 10 n 01 quantifier 0 003 @ 06286395 n 0000 ;c 06174404 n 0000 ~ 06302967 n 0000 | (grammar) a word that expresses a quantity (as `fifteen' or `many') -06302542 10 n 02 quantifier 1 logical_quantifier 0 003 @ 06286395 n 0000 ;c 06163751 n 0000 ~ 06302755 n 0000 | (logic) a word (such as `some' or `all' or `no') that binds the variables in a logical proposition -06302755 10 n 02 existential_quantifier 0 existential_operator 0 001 @ 06302542 n 0000 | a logical quantifier of a proposition that asserts the existence of at least one thing for which the proposition is true -06302967 10 n 01 universal_quantifier 0 001 @ 06302381 n 0000 | a logical quantifier of a proposition that asserts that the proposition is true for all members of a class of things -06303150 10 n 01 reduplication 0 001 @ 06286395 n 0000 | a word formed by or containing a repeated syllable or speech sound (usually at the beginning of the word) -06303315 10 n 01 retronym 0 001 @ 06286395 n 0000 | a word introduced because an existing term has become inadequate; "Nobody ever heard of analog clocks until digital clocks became common, so `analog clock' is a retronym" -06303540 10 n 01 substantive 0 003 @ 06286395 n 0000 + 03120834 a 0101 ~ 06319293 n 0000 | any word or group of words functioning as a noun -06303682 10 n 02 synonym 0 equivalent_word 0 003 @ 06286395 n 0000 ! 06288024 n 0101 + 02381302 a 0101 | two words that can be interchanged in a context are said to be synonymous relative to that context -06303888 10 n 01 term 0 003 @ 06286395 n 0000 + 01029642 v 0101 ~ 06603130 n 0000 | a word or expression used for some particular thing; "he learned many medical terms" -06304059 10 n 03 terminology 0 nomenclature 0 language 3 004 @ 06286395 n 0000 + 03123561 a 0101 ~ 06787835 n 0000 ~ 06788463 n 0000 | a system of words used to name things in a particular discipline; "legal terminology"; "biological nomenclature"; "the language of sociology" -06304338 10 n 01 trisyllable 0 001 @ 06286395 n 0000 | a word having three syllables -06304425 10 n 02 troponym 0 manner_name 0 001 @ 06286395 n 0000 | a word that denotes a manner of doing something; "`march' is a troponym of `walk'" -06304576 10 n 02 vocable 0 spoken_word 0 001 @ 06286395 n 0000 | a word that is spoken aloud -06304671 10 n 01 syllable 0 013 @ 06284225 n 0000 #p 06286395 n 0000 + 02806721 a 0101 + 02288668 a 0101 + 01563336 v 0102 + 01563336 v 0103 + 00979988 v 0101 + 01563336 v 0101 ~ 06305029 n 0000 ~ 06305109 n 0000 ~ 06305223 n 0000 ~ 06305610 n 0000 ~ 06868043 n 0000 | a unit of spoken language larger than a phoneme; "the word `pocket' has two syllables" -06305029 10 n 01 ultima 0 001 @ 06304671 n 0000 | the last syllable in a word -06305109 10 n 03 penult 0 penultima 0 penultimate 0 001 @ 06304671 n 0000 | the next to last syllable in a word -06305223 10 n 03 antepenult 0 antepenultima 0 antepenultimate 0 002 @ 06304671 n 0000 + 01015940 a 0201 | the 3rd syllable of a word counting back from the end -06305385 10 n 01 jawbreaker 0 001 @ 06302083 n 0000 | a word that is hard to pronounce -06305474 10 n 02 sesquipedalian 0 sesquipedalia 0 002 @ 06302083 n 0000 + 01435675 a 0102 | a very long word (a foot and a half long) -06305610 10 n 01 reduplication 1 001 @ 06304671 n 0000 | the syllable added in a reduplicated word form -06305716 10 n 01 direct_antonym 0 001 @ 06288024 n 0000 | antonyms that are commonly associated (e.g., `wet' and `dry') -06305838 10 n 01 indirect_antonym 0 001 @ 06288024 n 0000 | antonyms whose opposition is mediated (e.g., the antonymy of `wet' and `parched' is mediated by the similarity of `parched' to `dry') -06306034 10 n 01 lexeme 0 001 @ 06284225 n 0000 | a minimal unit (as a word or stem) in the lexicon of a language; `go' and `went' and `gone' and `going' are all members of the English lexeme `go' -06306233 10 n 01 morpheme 0 007 @ 06284225 n 0000 + 02936410 a 0101 ~ 06306606 n 0000 ~ 06306842 n 0000 ~ 06306945 n 0000 ~ 06308436 n 0000 ~ 06308765 n 0000 | minimal meaningful language unit; it cannot be divided into smaller meaningful units -06306480 10 n 01 formative 0 001 @ 06284225 n 0000 | minimal language unit that has a syntactic (or morphological) function -06306606 10 n 01 allomorph 0 002 @ 06306233 n 0000 ~ 07111510 n 0000 | a variant phonological representation of a morpheme; "the final sounds of `bets' and `beds' and `horses' and `oxen' are allomorphs of the English plural morpheme" -06306842 10 n 02 free_morpheme 0 free_form 0 001 @ 06306233 n 0000 | a morpheme that can occur alone -06306945 10 n 02 bound_morpheme 0 bound_form 0 003 @ 06306233 n 0000 ~ 06307152 n 0000 ~ 06308049 n 0000 | a morpheme that occurs only as part of a larger construction; eg an -s at the end of plural nouns -06307152 10 n 01 combining_form 0 040 @ 06306945 n 0000 -u 00071242 a 0000 -u 00140542 a 0000 -u 00206750 a 0000 -u 00207547 a 0000 -u 00236338 a 0000 -u 00296061 a 0000 -u 00815586 a 0000 -u 00916383 a 0000 -u 01057103 a 0000 -u 01077995 a 0000 -u 01078178 a 0000 -u 01084644 a 0000 -u 01118232 a 0000 -u 01209542 a 0000 -u 01218660 a 0000 -u 01222100 a 0000 -u 01279183 a 0000 -u 01432712 a 0000 -u 01432894 a 0000 -u 01433081 a 0000 -u 01536276 a 0000 -u 01683496 a 0000 -u 01700075 a 0000 -u 01827261 a 0000 -u 01915991 a 0000 -u 02224362 a 0000 -u 02255608 a 0000 -u 02430756 a 0000 -u 02953847 a 0000 -u 02985206 a 0000 -u 00010466 r 0000 -u 00011093 r 0000 -u 00011516 r 0000 -u 03168364 n 0000 -u 03970884 n 0000 -u 13648378 n 0000 -u 13650225 n 0000 -u 13650735 n 0000 -u 13651520 n 0000 | a bound form used only in compounds; "`hemato-' is a combining form in words like `hematology'" -06308049 10 n 01 affix 0 008 @ 06306945 n 0000 #p 06286395 n 0000 + 02607752 a 0102 + 02607752 a 0101 + 01298283 v 0101 ~ 06308304 n 0000 ~ 06308987 n 0000 ~ 06309272 n 0000 | a linguistic element added to a word to produce an inflected or derived form -06308304 10 n 01 prefix 0 003 @ 06308049 n 0000 + 01297961 v 0101 ~ 06308674 n 0000 | an affix that is added in front of the word -06308436 10 n 01 classifier 0 003 @ 06286395 n 0000 @ 06306233 n 0000 + 00739662 v 0102 | a word or morpheme used in some languages in certain contexts (such as counting) to indicate the semantic class to which the counted item belongs -06308674 10 n 01 alpha_privative 0 001 @ 06308304 n 0000 | the negative prefix a- or un- -06308765 10 n 02 ending 0 termination 0 003 @ 06306233 n 0000 ~ 06308987 n 0000 ~ 06309131 n 0000 | the end of a word (a suffix or inflectional ending or final morpheme); "I don't like words that have -ism as an ending" -06308987 10 n 02 suffix 0 postfix 0 003 @ 06308049 n 0000 @ 06308765 n 0000 + 01298123 v 0101 | an affix that is added at the end of the word -06309131 10 n 02 inflectional_ending 0 inflectional_suffix 0 001 @ 06308765 n 0000 | an inflection that is added at the end of a root word -06309272 10 n 01 infix 0 002 @ 06308049 n 0000 + 01298545 v 0101 | an affix that is inserted inside the word -06309383 10 n 02 grammatical_category 0 syntactic_category 0 009 @ 07997703 n 0000 ;c 06174404 n 0000 ~ 06310945 n 0000 ~ 06317464 n 0000 ~ 06326526 n 0000 ~ 06326797 n 0000 ~ 06328643 n 0000 ~ 06329506 n 0000 ~ 06331803 n 0000 | (grammar) a category of words having the same grammatical properties -06309684 10 n 02 substitution_class 0 paradigm 0 002 @ 07997703 n 0000 + 02773691 a 0201 | the class of all items that can be substituted into the same position (or slot) in a grammatical sentence (are in paradigmatic relation with one another) -06309931 10 n 01 subject 1 002 @ 06312966 n 0000 ;c 06174404 n 0000 | (grammar) one of the two main constituents of a sentence; the grammatical constituent about which something is predicated -06310125 10 n 01 subject 2 002 @ 06751974 n 0000 ;c 06163751 n 0000 | (logic) the first term of a proposition -06310237 10 n 01 object 0 006 @ 06312966 n 0000 ;c 06174404 n 0000 ~ 06310449 n 0000 ~ 06310578 n 0000 ~ 06310713 n 0000 ~ 06310848 n 0000 | (grammar) a constituent that is acted upon; "the object of the verb" -06310449 10 n 02 prepositional_object 0 object_of_a_preposition 0 001 @ 06310237 n 0000 | the object governed by a preposition -06310578 10 n 02 direct_object 0 object_of_the_verb 0 001 @ 06310237 n 0000 | the object that receives the direct action of the verb -06310713 10 n 01 indirect_object 0 001 @ 06310237 n 0000 | the object that is the recipient or beneficiary of the action of the verb -06310848 10 n 01 retained_object 0 001 @ 06310237 n 0000 | an object in a passive construction -06310945 10 n 02 case 0 grammatical_case 0 003 @ 06309383 n 0000 ~ 06311160 n 0000 ~ 06311334 n 0000 | nouns or pronouns or adjectives (often marked by inflection) related in some way to other words in a sentence -06311160 10 n 03 nominative 0 nominative_case 0 subject_case 0 002 @ 06310945 n 0000 ! 06311334 n 0101 | the category of nouns serving as the grammatical subject of a verb -06311334 10 n 02 oblique 0 oblique_case 0 007 @ 06310945 n 0000 ! 06311160 n 0101 ~ 06311557 n 0000 ~ 06311723 n 0000 ~ 06311852 n 0000 ~ 06312237 n 0000 ~ 06312418 n 0000 | any grammatical case other than the nominative -06311557 10 n 03 accusative 0 accusative_case 0 objective_case 0 002 @ 06311334 n 0000 + 00924257 a 0101 | the case of nouns serving as the direct object of a verb -06311723 10 n 02 dative 0 dative_case 0 001 @ 06311334 n 0000 | the category of nouns serving as the indirect object of a verb -06311852 10 n 04 genitive 0 genitive_case 0 possessive 0 possessive_case 0 002 @ 06311334 n 0000 ~ 06312001 n 0000 | the case expressing ownership -06312001 10 n 02 attributive_genitive 0 attributive_genitive_case 0 001 @ 06311852 n 0000 | a word in the genitive case that is used as an attributive adjective; "an example of the attributive genetive is `John's' in `John's mother'" -06312237 10 n 02 vocative 0 vocative_case 0 002 @ 06311334 n 0000 + 03129490 a 0101 | the case (in some inflected languages) used when the referent of the noun is being addressed -06312418 10 n 02 ablative 0 ablative_case 0 001 @ 06311334 n 0000 | the case indicating the agent in passive sentences or the instrument or manner or place of the action described by the verb -06312612 10 n 01 ablative_absolute 0 001 @ 06312966 n 0000 | a constituent in Latin grammar; a noun and its modifier can function as a sentence modifier -06312767 10 n 01 adjunct 0 002 @ 06313651 n 0000 ~ 06315873 n 0000 | a construction that can be used to extend the meaning of a word or phrase but is not one of the main constituents of a sentence -06312966 10 n 02 constituent 0 grammatical_constituent 0 010 @ 06313457 n 0000 #p 06285090 n 0000 ;c 06174404 n 0000 ~ 06309931 n 0000 ~ 06310237 n 0000 ~ 06312612 n 0000 ~ 06313300 n 0000 ~ 06313651 n 0000 ~ 06314036 n 0000 ~ 06751974 n 0000 | (grammar) a word or phrase or clause forming part of a larger grammatical construction -06313300 10 n 01 immediate_constituent 0 001 @ 06312966 n 0000 | a constituent of a sentence at the first step in an analysis: e.g., subject and predicate -06313457 10 n 02 syntagma 0 syntagm 0 004 @ 07013736 n 0000 + 02808653 a 0201 + 02808653 a 0101 ~ 06312966 n 0000 | a syntactic string of words that forms a part of some larger syntactic unit -06313651 10 n 03 construction 1 grammatical_construction 0 expression 5 008 @ 06312966 n 0000 ! 06314036 n 0101 ~ 06312767 n 0000 ~ 06314144 n 0000 ~ 06315638 n 0000 ~ 06315755 n 0000 ~ 06316048 n 0000 ~ 06316376 n 0000 | a group of words that form a constituent of a sentence and are considered as a single unit; "I concluded from his awkward constructions that he was a foreigner" -06314036 10 n 01 misconstruction 0 002 @ 06312966 n 0000 ! 06313651 n 0101 | an ungrammatical constituent -06314144 10 n 01 clause 0 008 @ 06313651 n 0000 #p 06285090 n 0000 ;c 06174404 n 0000 + 02936971 a 0101 ~ 06314423 n 0000 ~ 06314595 n 0000 ~ 06314808 n 0000 ~ 06315096 n 0000 | (grammar) an expression including a subject and predicate but not constituting a complete sentence -06314423 10 n 02 main_clause 0 independent_clause 0 002 @ 06314144 n 0000 #p 06285559 n 0000 | a clause in a complex sentence that can stand alone as a complete sentence -06314595 10 n 01 coordinate_clause 0 002 @ 06314144 n 0000 #p 06285559 n 0000 | a clause in a complex sentence that is grammatically equivalent to the main clause and that performs the same grammatical function -06314808 10 n 02 subordinate_clause 0 dependent_clause 0 004 @ 06314144 n 0000 #p 06285559 n 0000 ~ 06315301 n 0000 ~ 06315454 n 0000 | a clause in a complex sentence that cannot stand alone as a complete sentence and that functions within the sentence as a noun or adjective or adverb -06315096 10 n 01 relative_clause 0 001 @ 06314144 n 0000 | a clause introduced by a relative pronoun; "`who visits frequently' is a relative clause in the sentence `John, who visits frequently, is ill'" -06315301 10 n 01 restrictive_clause 0 001 @ 06314808 n 0000 | a subordinate clause that limits or restricts the meaning of the noun phrase it modifies -06315454 10 n 02 nonrestrictive_clause 0 descriptive_clause 0 001 @ 06314808 n 0000 | a subordinate clause that does not limit or restrict the meaning of the noun phrase it modifies -06315638 10 n 01 complement 0 001 @ 06313651 n 0000 | a word or phrase used to complete a grammatical construction -06315755 10 n 01 involution 0 001 @ 06313651 n 0000 | a long and intricate and complicated grammatical construction -06315873 10 n 02 parenthetical_expression 0 parenthetical 0 002 @ 06312767 n 0000 + 01857527 a 0202 | an expression in parentheses; "his writing was full of parentheticals" -06316048 10 n 01 phrase 0 011 @ 06313651 n 0000 + 02937108 a 0101 + 00980453 v 0104 %p 06292154 n 0000 ~ 06316480 n 0000 ~ 06316626 n 0000 ~ 06317247 n 0000 ~ 06317351 n 0000 %p 06320801 n 0000 ~ 06385582 n 0000 ~ 07152463 n 0000 | an expression consisting of one or more words forming a grammatical constituent of a sentence -06316376 10 n 01 predicator 0 002 @ 06313651 n 0000 + 01017222 v 0101 | an expression that predicates -06316480 10 n 03 noun_phrase 0 nominal_phrase 0 nominal 0 001 @ 06316048 n 0000 | a phrase that can function as the subject or object of a verb -06316626 10 n 02 predicate 0 verb_phrase 0 002 @ 06316048 n 0000 + 01017222 v 0101 | one of the two main constituents of a sentence; the predicate contains the verb and its complements -06316813 10 n 01 predicate 1 003 @ 06751974 n 0000 ;c 06163751 n 0000 + 01017222 v 0101 | (logic) what is predicated of the subject of a proposition; the second term in a proposition is predicated of the first term by means of the copula; "`Socrates is a man' predicates manhood of Socrates" -06317107 10 n 01 split_infinitive 0 001 @ 06318904 n 0000 | an infinitive with an adverb between `to' and the verb (e.g., `to boldly go') -06317247 10 n 01 prepositional_phrase 0 001 @ 06316048 n 0000 | a phrase beginning with a preposition -06317351 10 n 02 pronominal_phrase 0 pronominal 0 001 @ 06316048 n 0000 | a phrase that functions as a pronoun -06317464 10 n 03 part_of_speech 0 form_class 0 word_class 0 002 @ 06309383 n 0000 ~ 06317672 n 0000 | one of the traditional categories of words intended to reflect their functions in a grammatical context -06317672 10 n 01 major_form_class 0 005 @ 06317464 n 0000 ~ 06317862 n 0000 ~ 06318062 n 0000 ~ 06319029 n 0000 ~ 06319157 n 0000 | any of the major parts of speech of traditional grammar -06317862 10 n 01 noun 1 003 @ 06317672 n 0000 #p 06319293 n 0000 #m 13804203 n 0000 | the word class that can serve as the subject or object of a verb, the object of a preposition, or in apposition -06318062 10 n 01 verb 1 011 @ 06317672 n 0000 #p 06320569 n 0000 #m 13804085 n 0000 + 02823724 a 0101 + 00554729 v 0101 ~ 06318513 n 0000 ~ 06318904 n 0000 ~ 06330528 n 0000 ~ 06330764 n 0000 ~ 06331281 n 0000 ~ 06331641 n 0000 | the word class that serves as the predicate of a sentence -06318352 10 n 01 gerund 0 002 @ 06320314 n 0000 + 03121060 a 0101 | a noun formed from a verb (such as the `-ing' form of an English verb when used as a noun) -06318513 10 n 01 auxiliary_verb 0 002 @ 06318062 n 0000 ~ 06318722 n 0000 | a verb that combines with another verb in a verb phrase to help form tense, mood, voice, or condition of the verb it combines with -06318722 10 n 04 modal_auxiliary_verb 0 modal_auxiliary 0 modal_verb 0 modal 0 001 @ 06318513 n 0000 | an auxiliary verb (such as `can' or `will') that is used to express modality -06318904 10 n 01 infinitive 0 003 @ 06318062 n 0000 + 02937294 a 0101 ~ 06317107 n 0000 | the uninflected form of the verb -06319029 10 n 01 adjective 1 003 @ 06317672 n 0000 #p 06321702 n 0000 + 02936020 a 0101 | the word class that qualifies nouns -06319157 10 n 01 adverb 1 003 @ 06317672 n 0000 #p 06323612 n 0000 + 02936235 a 0101 | the word class that qualifies verbs or clauses -06319293 10 n 01 noun 0 009 @ 06289250 n 0000 @ 06303540 n 0000 %p 06317862 n 0000 ~ 06319575 n 0000 ~ 06319710 n 0000 ~ 06319799 n 0000 ~ 06319881 n 0000 ~ 06320004 n 0000 ~ 06320153 n 0000 | a content word that can be used to refer to a person, place, thing, quality, or action -06319575 10 n 01 collective_noun 0 001 @ 06319293 n 0000 | a noun that is singular in form but refers to a group of people or things -06319710 10 n 01 mass_noun 0 001 @ 06319293 n 0000 | a noun that does not form plurals -06319799 10 n 01 count_noun 0 001 @ 06319293 n 0000 | a noun that forms plurals -06319881 10 n 01 generic_noun 0 001 @ 06319293 n 0000 | a noun that does not specify either masculine or feminine gender -06320004 10 n 02 proper_noun 0 proper_name 0 002 @ 06319293 n 0000 ! 06320153 n 0101 | a noun that denotes a particular thing; usually capitalized -06320153 10 n 01 common_noun 0 004 @ 06319293 n 0000 ! 06320004 n 0101 ~ 06320314 n 0000 ~ 06320440 n 0000 | a noun that denotes any or all members of a class -06320314 10 n 02 verbal_noun 0 deverbal_noun 0 002 @ 06320153 n 0000 ~ 06318352 n 0000 | a noun that is derived from a verb -06320440 10 n 01 adnoun 0 001 @ 06320153 n 0000 | an adjective used as a noun; "`meek' in `blessed are the meek' is an adnoun" -06320569 10 n 01 verb 0 007 @ 06289250 n 0000 + 02823724 a 0101 + 00554729 v 0101 %p 06318062 n 0000 ~ 06328386 n 0000 ~ 06472824 n 0000 ~ 06473041 n 0000 | a content word that denotes an action, occurrence, or state of existence -06320801 10 n 02 modifier 0 qualifier 0 008 @ 06289250 n 0000 #p 06316048 n 0000 + 00171127 v 0202 + 00171127 v 0101 ~ 06321054 n 0000 ~ 06321702 n 0000 ~ 06323612 n 0000 ~ 06323822 n 0000 | a content word that qualifies the meaning of a noun or verb -06321054 10 n 02 intensifier 0 intensive 0 022 @ 06320801 n 0000 + 00227165 v 0101 -u 00005839 a 0000 -u 02270057 a 0000 -u 00015135 r 0000 -u 00025144 r 0000 -u 00032299 r 0000 -u 00038013 r 0000 -u 00046639 r 0000 -u 00097522 r 0000 -u 00111269 r 0000 -u 00112009 r 0000 -u 00132532 r 0000 -u 00146594 r 0000 -u 00147386 r 0000 -u 00182199 r 0000 -u 00183090 r 0000 -u 00212604 r 0000 -u 00246296 r 0000 -u 00314835 r 0000 -u 00349967 r 0000 -u 00429274 r 0000 | a modifier that has little meaning except to intensify the meaning it modifies; "`up' in `finished up' is an intensifier"; "`honestly' in `I honestly don't know' is an intensifier" -06321702 10 n 01 adjective 0 008 @ 06320801 n 0000 + 02936020 a 0101 %p 06319029 n 0000 ~ 06321932 n 0000 ~ 06322157 n 0000 ~ 06322468 n 0000 ~ 06322693 n 0000 ~ 06323284 n 0000 | a word that expresses an attribute of something -06321932 10 n 02 descriptive_adjective 0 qualifying_adjective 0 001 @ 06321702 n 0000 | an adjective that ascribes to its noun the value of an attribute of that noun (e.g., `a nervous person' or `a musical speaking voice') -06322157 10 n 02 relational_adjective 0 classifying_adjective 0 002 @ 06321702 n 0000 ~ 06322357 n 0000 | an adjective that classifies its noun (e.g., `a nervous disease' or `a musical instrument') -06322357 10 n 01 pertainym 0 002 @ 06322157 n 0000 ;u 07075172 n 0000 | meaning relating to or pertaining to -06322468 10 n 02 positive 0 positive_degree 0 002 @ 06321702 n 0000 @ 06323612 n 0000 | the primary form of an adjective or adverb; denotes a quality without qualification, comparison, or relation to increase or diminution -06322693 10 n 02 comparative 0 comparative_degree 0 016 @ 06321702 n 0000 @ 06323612 n 0000 + 02990954 a 0101 -u 00067379 a 0000 -u 00230335 a 0000 -u 00230940 a 0000 -u 00231252 a 0000 -u 00231761 a 0000 -u 00443618 a 0000 -u 00814611 a 0000 -u 01555133 a 0000 -u 01555416 a 0000 -u 01556355 a 0000 -u 01556616 a 0000 -u 00017077 r 0000 -u 00407802 r 0000 | the comparative form of an adjective or adverb; "`faster' is the comparative of the adjective `fast'"; "`less famous' is the comparative degree of the adjective `famous'"; "`more surely' is the comparative of the adverb `surely'" -06323284 10 n 02 superlative 1 superlative_degree 0 002 @ 06321702 n 0000 @ 06323612 n 0000 | the superlative form of an adjective or adverb; "`fastest' is the superlative of the adjective `fast'"; "`least famous' is the superlative degree of the adjective `famous'"; "`most surely' is the superlative of the adverb `surely'" -06323612 10 n 01 adverb 0 007 @ 06320801 n 0000 + 02936235 a 0101 %p 06319157 n 0000 ~ 06322468 n 0000 ~ 06322693 n 0000 ~ 06323284 n 0000 ~ 06324355 n 0000 | a word that modifies something other than a noun -06323822 10 n 02 dangling_modifier 0 misplaced_modifier 0 002 @ 06320801 n 0000 ~ 06324086 n 0000 | a word or phrase apparently modifying an unintended word because of its placement in a sentence: e.g., `when young' in `when young, circuses appeal to all of us' -06324086 10 n 01 dangling_participle 0 001 @ 06323822 n 0000 | a participle (usually at the beginning of a sentence) apparently modifying a word other than the word intended: e.g., `flying across the country' in `flying across the country the Rockies came into view' -06324355 10 n 01 adverbial 0 002 @ 06323612 n 0000 + 02936235 a 0101 | a word or group of words function as an adverb -06324475 10 n 02 determiner 0 determinative 0 003 @ 06291318 n 0000 + 00947077 v 0103 ~ 06324669 n 0000 | one of a limited class of noun modifiers that determine the referents of noun phrases -06324669 10 n 01 article 1 004 @ 06324475 n 0000 ;c 06174404 n 0000 ~ 06324864 n 0000 ~ 06325001 n 0000 | (grammar) a determiner that may indicate the specificity of reference of a noun phrase -06324864 10 n 01 definite_article 0 001 @ 06324669 n 0000 | a determiner (as `the' in English) that indicates specificity of reference -06325001 10 n 01 indefinite_article 0 001 @ 06324669 n 0000 | a determiner (as `a' or `some' in English) that indicates nonspecific reference -06325145 10 n 01 preposition 0 001 @ 06291318 n 0000 | a function word that combines with a noun or pronoun or noun phrase to form a prepositional phrase that can have an adverbial or adjectival relation to some other word -06325370 10 n 01 pronoun 0 006 @ 06291318 n 0000 ~ 06325576 n 0000 ~ 06325678 n 0000 ~ 06327136 n 0000 ~ 06327261 n 0000 ~ 06327551 n 0000 | a function word that is used in place of a noun or noun phrase -06325576 10 n 01 anaphoric_pronoun 0 001 @ 06325370 n 0000 | a pronoun that refers to an antecedent -06325678 10 n 02 demonstrative_pronoun 0 demonstrative 0 002 @ 06325370 n 0000 + 01323962 a 0201 | a pronoun that points out an intended referent -06325826 10 n 04 conjunction 0 conjunctive 0 connective 0 continuative 0 003 @ 06291318 n 0000 ~ 06326054 n 0000 ~ 06326226 n 0000 | an uninflected function word that serves to conjoin words or phrases or clauses or sentences -06326054 10 n 01 coordinating_conjunction 0 001 @ 06325826 n 0000 | a conjunction (like `and' or `or') that connects two identically constructed grammatical constituents -06326226 10 n 02 subordinating_conjunction 0 subordinate_conjunction 0 001 @ 06325826 n 0000 | a conjunction (like `since' or `that' or `who') that introduces a dependent clause -06326406 10 n 01 particle 0 001 @ 06291318 n 0000 | a function word that can be used in English to form phrasal verbs -06326526 10 n 01 number 5 001 @ 06309383 n 0000 | the grammatical category for the forms of nouns and pronouns and verbs that are used depending on the number of entities involved (singular or dual or plural); "in English the subject and the verb must agree in number" -06326797 10 n 01 person 0 004 @ 06309383 n 0000 ~ 06327718 n 0000 ~ 06327870 n 0000 ~ 06328022 n 0000 | a grammatical category used in the classification of pronouns, possessive determiners, and verb forms according to whether they indicate the speaker, the addressee, or a third party; "stop talking about yourself in the third person" -06327136 10 n 01 personal_pronoun 0 002 @ 06325370 n 0000 ~ 06328207 n 0000 | a pronoun expressing a distinction of person -06327261 10 n 01 reciprocal_pronoun 0 001 @ 06325370 n 0000 | a pronoun or pronominal phrase (as `each other') that expresses a mutual action or relationship between the individuals indicated in the plural subject; "The sentence `They cared for each other' contains a reciprocal pronoun" -06327551 10 n 01 relative_pronoun 0 001 @ 06325370 n 0000 | a pronoun (as `that' or `which' or `who') that introduces a relative clause referring to some antecedent -06327718 10 n 01 first_person 0 001 @ 06326797 n 0000 | pronouns and verbs used to refer to the speaker or writer of the language in which they occur -06327870 10 n 01 second_person 0 001 @ 06326797 n 0000 | pronouns and verbs used to refer to the person addressed by the language in which they occur -06328022 10 n 01 third_person 0 001 @ 06326797 n 0000 | pronouns and verbs that are used to refer to something other than the speaker or addressee of the language in which they occur -06328207 10 n 02 reflexive_pronoun 0 reflexive 0 002 @ 06327136 n 0000 + 00202508 a 0201 | a personal pronoun compounded with -self to show the agent's action affects the agent -06328386 10 n 01 reflexive_verb 0 001 @ 06320569 n 0000 | a verb whose agent performs an action that is directed at the agent; "the sentence `he washed' has a reflexive verb"; "`perjure' is a reflexive verb because you cannot perjure anyone but yourself" -06328643 10 n 02 gender 0 grammatical_gender 0 004 @ 06309383 n 0000 ~ 06328996 n 0000 ~ 06329165 n 0000 ~ 06329313 n 0000 | a grammatical category in inflected languages governing the agreement between nouns and pronouns and adjectives; in some languages it is quite arbitrary but in Indo-European languages it is usually based on sex or animateness -06328996 10 n 01 feminine 0 002 @ 06328643 n 0000 + 01486197 a 0101 | a gender that refers chiefly (but not exclusively) to females or to objects classified as female -06329165 10 n 01 masculine 0 001 @ 06328643 n 0000 | a gender that refers chiefly (but not exclusively) to males or to objects classified as male -06329313 10 n 01 neuter 0 003 @ 06328643 n 0000 + 01486327 a 0101 + 00060477 v 0102 | a gender that refers chiefly (but not exclusively) to inanimate objects (neither masculine nor feminine) -06329506 10 n 01 tense 0 007 @ 06309383 n 0000 ~ 06329734 n 0000 ~ 06330037 n 0000 ~ 06330262 n 0000 ~ 06330401 n 0000 ~ 13805734 n 0000 ~ 13806140 n 0000 | a grammatical category of verbs used to express distinctions of time -06329734 10 n 02 present 0 present_tense 0 003 @ 06329506 n 0000 + 01731351 a 0101 ~ 06329909 n 0000 | a verb tense that expresses actions or states at the time of speaking -06329909 10 n 01 historical_present 0 001 @ 06329734 n 0000 | the use of the present tense to describe past actions or states -06330037 10 n 01 aorist 0 002 @ 06329506 n 0000 + 02631686 a 0101 | a verb tense in some languages (classical Greek and Sanskrit) expressing action (especially past action) without indicating its completion or continuation -06330262 10 n 02 past 0 past_tense 0 002 @ 06329506 n 0000 ~ 13806614 n 0000 | a verb tense that expresses actions or states in the past -06330401 10 n 02 future 0 future_tense 0 001 @ 06329506 n 0000 | a verb tense that expresses actions or states in the future -06330528 10 n 02 participle 0 participial 0 005 @ 06318062 n 0000 + 03097103 a 0201 + 03097103 a 0101 ~ 06331014 n 0000 ~ 06331154 n 0000 | a non-finite form of the verb; in English it is used adjectivally and to form compound tenses -06330764 10 n 01 phrasal_verb 0 001 @ 06318062 n 0000 | an English verb followed by one or more particles where the combination behaves as a syntactic and semantic unit; "`turn out' is a phrasal verb in the question `how many turned out to vote?'" -06331014 10 n 01 present_participle 0 001 @ 06330528 n 0000 | a participle expressing present action; in English is formed by adding -ing -06331154 10 n 02 past_participle 0 perfect_participle 0 001 @ 06330528 n 0000 | a participle that expresses completed action -06331281 10 n 03 transitive_verb 0 transitive_verb_form 0 transitive 0 002 @ 06318062 n 0000 ~ 06331477 n 0000 | a verb (or verb construction) that requires an object in order to be grammatical -06331477 10 n 02 doubly_transitive_verb 0 doubly_transitive_verb_form 0 001 @ 06331281 n 0000 | a transitive verb that takes both a direct and an indirect object -06331641 10 n 03 intransitive_verb 0 intransitive_verb_form 0 intransitive 0 001 @ 06318062 n 0000 | a verb (or verb construction) that does not take an object -06331803 10 n 02 semantic_role 0 participant_role 0 010 @ 06309383 n 0000 ;c 06172789 n 0000 ~ 06332136 n 0000 ~ 06332364 n 0000 ~ 06332545 n 0000 ~ 06332731 n 0000 ~ 06332919 n 0000 ~ 06333095 n 0000 ~ 06333285 n 0000 ~ 06333478 n 0000 | (linguistics) the underlying relation that a constituent has with the main verb in a clause -06332136 10 n 03 affected_role 0 patient_role 0 patient 0 001 @ 06331803 n 0000 | the semantic role of an entity that is not the agent but is directly involved in or affected by the happening denoted by the verb in the clause -06332364 10 n 02 agentive_role 0 agent 0 001 @ 06331803 n 0000 | the semantic role of the animate entity that instigates or causes the happening denoted by the verb in the clause -06332545 10 n 02 benefactive_role 0 beneficiary 0 001 @ 06331803 n 0000 | the semantic role of the intended recipient who benefits from the happening denoted by the verb in the clause -06332731 10 n 02 instrumental_role 0 instrument 1 001 @ 06331803 n 0000 | the semantic role of the entity (usually inanimate) that the agent uses to perform an action or start a process -06332919 10 n 02 locative_role 0 locative 0 001 @ 06331803 n 0000 | the semantic role of the noun phrase that designates the place of the state or action denoted by the verb -06333095 10 n 02 recipient_role 0 recipient 0 001 @ 06331803 n 0000 | the semantic role of the animate entity that is passively involved in the happening denoted by the verb in the clause -06333285 10 n 02 resultant_role 0 result 1 001 @ 06331803 n 0000 | the semantic role of the noun phrase whose referent exists only by virtue of the activity denoted by the verb in the clause -06333478 10 n 02 temporal_role 0 temporal 0 001 @ 06331803 n 0000 | the semantic role of the noun phrase that designates the time of the state or action denoted by the verb -06333653 10 n 01 name 0 031 @ 06284225 n 0000 + 01024190 v 0105 + 00652346 v 0107 + 00947439 v 0101 + 01028748 v 0101 ~ 06334377 n 0000 ~ 06334512 n 0000 ~ 06334778 n 0000 ~ 06334985 n 0000 ~ 06335532 n 0000 ~ 06335832 n 0000 ~ 06336149 n 0000 ~ 06336285 n 0000 ~ 06336363 n 0000 ~ 06336537 n 0000 ~ 06336904 n 0000 ~ 06337202 n 0000 ~ 06337307 n 0000 ~ 06338003 n 0000 ~ 06338158 n 0000 ~ 06338278 n 0000 ~ 06338485 n 0000 ~ 06338744 n 0000 ~ 06338908 n 0000 ~ 06339244 n 0000 ~ 06343520 n 0000 ~ 06343838 n 0000 ~ 06404582 n 0000 ~ 06845199 n 0000 ~ 06845303 n 0000 ~ 06845599 n 0000 | a language unit by which a person or thing is known; "his name really is George Washington"; "those are two names for the same thing" -06334377 10 n 01 agnomen 0 001 @ 06333653 n 0000 | an additional name or an epithet appended to a name (as in `Ferdinand the Great') -06334512 10 n 04 assumed_name 1 fictitious_name 0 Doing_Business_As 0 DBA 0 002 @ 06333653 n 0000 ;c 08441203 n 0000 | (law) a name under which a corporation conducts business that is not the legal name of the corporation as shown in its articles of incorporation -06334778 10 n 01 eponym 0 003 @ 06333653 n 0000 + 03036595 a 0102 + 03036595 a 0101 | the name derived from a person (real or imaginary); "Down's syndrome is an eponym for the English physician John Down" -06334985 10 n 01 eponym 1 003 @ 06333653 n 0000 + 03036595 a 0102 + 03036595 a 0101 | the person for whom something is named; "Constantine I is the eponym for Constantinople" -06335162 10 n 03 extension 0 filename_extension 0 file_name_extension 0 002 @ 07013549 n 0000 #p 06335532 n 0000 | a string of characters beginning with a period and followed by one or more letters; the optional second part of a PC computer filename; "most applications provide extensions for the files they create"; "most BASIC files use the filename extension .BAS" -06335532 10 n 04 filename 0 file_name 0 computer_filename 0 computer_file_name 0 003 @ 06333653 n 0000 ;c 06128570 n 0000 %p 06335162 n 0000 | (computer science) the name given to a computer file in order to distinguish it from other files; may contain an extension that indicates the type of file -06335832 10 n 02 patronymic 0 patronym 0 004 @ 06333653 n 0000 ;r 08859173 n 0000 + 03097689 a 0201 + 03097689 a 0101 | a family name derived from name of your father or a paternal ancestor (especially with an affix (such as -son in English or O'- in Irish) added to the name of your father or a paternal ancestor) -06336149 10 n 02 matronymic 0 metronymic 0 001 @ 06333653 n 0000 | a name derived from the name of your mother or a maternal ancestor -06336285 10 n 01 street_name 0 001 @ 06333653 n 0000 | the name of a street -06336363 10 n 01 street_name 1 001 @ 06333653 n 0000 | the name of a brokerage firm in which stock is held on behalf of a customer; "all my stocks are held in street name" -06336537 10 n 01 street_name 2 003 @ 06333653 n 0000 @ 07157273 n 0000 -u 02837416 n 0000 | slang for something (especially for an illegal drug); "`smack' is a street name for heroin" -06336723 10 n 01 street_name 3 001 @ 06338908 n 0000 | an alternative name that a person chooses or is given (especially in inner city neighborhoods); "her street name is Bonbon" -06336904 10 n 04 surname 0 family_name 0 cognomen 0 last_name 0 002 @ 06333653 n 0000 ~ 06337111 n 0000 | the name used to identify the members of a family (as distinguished from each member's given name) -06337111 10 n 01 maiden_name 0 001 @ 06336904 n 0000 | a woman's surname before marriage -06337202 10 n 01 middle_name 0 001 @ 06333653 n 0000 | a name between your first name and your surname -06337307 10 n 03 first_name 0 given_name 0 forename 0 003 @ 06333653 n 0000 ~ 06337458 n 0000 ~ 06337594 n 0000 | the name that precedes the surname -06337458 10 n 02 Christian_name 0 baptismal_name 0 001 @ 06337307 n 0000 | the first name given to Christians at birth or christening -06337594 10 n 01 praenomen 0 001 @ 06337307 n 0000 | the first name of a citizen of ancient Rome -06337693 10 n 06 nickname 0 moniker 0 cognomen 1 sobriquet 0 soubriquet 0 byname 0 002 @ 06338908 n 0000 + 01028640 v 0102 | a familiar name for a person (often a shortened version of a person's given name); "Joe's mother would not use his nickname and always called him Joseph"; "Henry's nickname was Slim" -06338003 10 n 01 nickname 1 001 @ 06333653 n 0000 | a descriptive name for a place or thing; "the nickname for the U.S. Constitution is `Old Ironsides'" -06338158 10 n 03 alias 0 assumed_name 0 false_name 0 001 @ 06333653 n 0000 | a name that has been assumed temporarily -06338278 10 n 03 pseudonym 0 anonym 0 nom_de_guerre 0 004 @ 06333653 n 0000 + 00121376 a 0101 ~ 06338571 n 0000 ~ 06338653 n 0000 | a fictitious name used when the person performs a particular social role -06338485 10 n 01 misnomer 0 001 @ 06333653 n 0000 | an incorrect or unsuitable name -06338571 10 n 01 stage_name 0 001 @ 06338278 n 0000 | the pseudonym of an actor -06338653 10 n 02 pen_name 0 nom_de_plume 0 001 @ 06338278 n 0000 | an author's pseudonym -06338744 10 n 02 writer's_name 0 author's_name 0 002 @ 06333653 n 0000 #p 06348885 n 0000 | the name that appears on the by-line to identify the author of a work -06338908 10 n 04 appellation 0 denomination 0 designation 0 appellative 0 008 @ 06333653 n 0000 + 00722386 a 0401 + 01030132 v 0301 + 01030132 v 0202 ~ 06336723 n 0000 ~ 06337693 n 0000 ~ 06339416 n 0000 ~ 06343117 n 0000 | identifying word or words by which someone or something is called and classified or distinguished from others -06339244 10 n 02 pet_name 0 hypocorism 0 001 @ 06333653 n 0000 | a name of endearment (especially one using a diminutive suffix); "`Billy' is a hypocorism for `William'" -06339416 10 n 03 title 2 title_of_respect 0 form_of_address 0 023 @ 06338908 n 0000 + 02816198 a 0101 ~ 06340047 n 0000 ~ 06340182 n 0000 ~ 06340395 n 0000 ~ 06340563 n 0000 ~ 06340707 n 0000 ~ 06340838 n 0000 ~ 06340977 n 0000 ~ 06341127 n 0000 ~ 06341249 n 0000 ~ 06341340 n 0000 ~ 06341431 n 0000 ~ 06341525 n 0000 ~ 06341609 n 0000 ~ 06341773 n 0000 ~ 06341862 n 0000 ~ 06342015 n 0000 ~ 06342182 n 0000 ~ 06342362 n 0000 ~ 06342490 n 0000 ~ 06342623 n 0000 ~ 10081204 n 0000 | an identifying appellation signifying status or function: e.g. `Mr.' or `General'; "the professor didn't like his friends to use his formal title" -06340047 10 n 02 Aga 0 Agha 0 002 @ 06339416 n 0000 ;r 09039411 n 0000 | title for a civil or military leader (especially in Turkey) -06340182 10 n 01 Defender_of_the_Faith 0 001 @ 06339416 n 0000 | a title that Leo X bestowed on Henry VIII and later withdrew; parliament restored the title and it has been used by English sovereigns ever since -06340395 10 n 01 Don 0 002 @ 06339416 n 0000 ;c 06966825 n 0000 | a Spanish courtesy title or form of address for men that is prefixed to the forename; "Don Roberto" -06340563 10 n 01 Dona 0 002 @ 06339416 n 0000 ;c 06966825 n 0000 | a Spanish courtesy title or form of address for a woman; "Dona Marguerita" -06340707 10 n 01 Frau 0 002 @ 06339416 n 0000 ;c 06950528 n 0000 | a German courtesy title or form of address for an adult woman -06340838 10 n 01 Fraulein 0 002 @ 06339416 n 0000 ;c 06950528 n 0000 | a German courtesy title or form of address for an unmarried woman -06340977 10 n 01 Hakham 0 003 @ 06339416 n 0000 @ 10546202 n 0000 ;c 06987124 n 0000 | a Hebrew title of respect for a wise and highly educated man -06341127 10 n 01 Herr 0 002 @ 06339416 n 0000 ;c 06950528 n 0000 | a German courtesy title or form of address for a man -06341249 10 n 01 Miss 0 001 @ 06339416 n 0000 | a form of address for an unmarried woman -06341340 10 n 03 Mister 0 Mr 0 Mr. 0 001 @ 06339416 n 0000 | a form of address for a man -06341431 10 n 02 Mrs 0 Mrs. 0 001 @ 06339416 n 0000 | a form of address for a married woman -06341525 10 n 02 Ms 2 Ms. 0 001 @ 06339416 n 0000 | a form of address for a woman -06341609 10 n 01 Rabbi 0 004 @ 06339416 n 0000 ;c 06987124 n 0000 + 02930765 a 0101 + 02930765 a 0102 | a Hebrew title of respect for a Jewish scholar or teacher -06341773 10 n 01 Reverend 0 001 @ 06339416 n 0000 | a title of respect for a clergyman -06341862 10 n 01 Senor 0 002 @ 06339416 n 0000 ;c 06966825 n 0000 | a Spanish title or form of address for a man; similar to the English `Mr' or `sir' -06342015 10 n 01 Senora 0 002 @ 06339416 n 0000 ;c 06966825 n 0000 | a Spanish title or form of address for a married woman; similar to the English `Mrs' or `madam' -06342182 10 n 01 Senorita 0 002 @ 06339416 n 0000 ;c 06966825 n 0000 | a Spanish title or form of address used to or of an unmarried girl or woman; similar to the English `Miss' -06342362 10 n 01 Signora 0 002 @ 06339416 n 0000 ;c 06964247 n 0000 | an Italian title or form of address for a married woman -06342490 10 n 01 Signorina 0 002 @ 06339416 n 0000 ;c 06964247 n 0000 | an Italian title or form of address for an unmarried woman -06342623 10 n 01 Very_Reverend 0 001 @ 06339416 n 0000 | a title of respect for various ecclesiastical officials (as cathedral deans and canons and others) -06342781 10 n 01 Lordship 0 002 @ 06343117 n 0000 + 10271677 n 0101 | a title used to address any British peer except a duke and extended to a bishop or a judge; "Your Lordship"; "His Lordship" -06342977 10 n 01 Ladyship 0 001 @ 06343117 n 0000 | a title used to address any peeress except a duchess; "Your Ladyship"; "Her Ladyship" -06343117 10 n 01 title 3 006 @ 06338908 n 0000 + 02815843 a 0101 ~ 06342781 n 0000 ~ 06342977 n 0000 ~ 06343364 n 0000 ~ 06343440 n 0000 | an appellation signifying nobility; "`your majesty' is the appropriate title to use in addressing a king" -06343364 10 n 01 baronetcy 0 001 @ 06343117 n 0000 | the title of a baron -06343440 10 n 01 viscountcy 0 001 @ 06343117 n 0000 | the title of a viscount -06343520 10 n 01 title 0 005 @ 06333653 n 0000 + 02815998 a 0101 + 01029500 v 0102 ~ 06344846 n 0000 ~ 06344998 n 0000 | the name of a work of art or literary composition etc.; "he looked for books with the word `jazz' in the title"; "he refused to give titles to his paintings"; "I can never remember movie titles" -06343838 10 n 02 place_name 0 toponym 0 002 @ 06333653 n 0000 #p 08464449 n 0000 | the name by which a geographical place is known -06343971 10 n 03 heading 0 header 0 head 0 010 @ 07012534 n 0000 + 02694287 v 0201 + 02694287 v 0101 ~ 06344329 n 0000 ~ 06344461 n 0000 ~ 06344691 n 0000 ~ 06344998 n 0000 ~ 06345131 n 0000 ~ 06345320 n 0000 ~ 06345993 n 0000 | a line of text serving to indicate what the passage below it is about; "the heading seemed to have little to do with the text" -06344329 10 n 02 crossheading 0 crosshead 0 001 @ 06343971 n 0000 | a heading of a subsection printed within the body of the text -06344461 10 n 02 headline 0 newspaper_headline 0 007 @ 06343971 n 0000 #p 06267145 n 0000 + 02332445 v 0101 + 00976224 v 0101 ~ 06345566 n 0000 ~ 06345773 n 0000 ~ 06345878 n 0000 | the heading or caption of a newspaper article -06344691 10 n 01 lemma 1 001 @ 06343971 n 0000 | the heading that indicates the subject of an annotation or a literary composition or a dictionary entry -06344846 10 n 01 masthead 0 001 @ 06343520 n 0000 | the title of a newspaper or magazine; usually printed on the front page and on the editorial page -06344998 10 n 01 rubric 0 002 @ 06343971 n 0000 @ 06343520 n 0000 | a title or heading that is printed in red or in a special type -06345131 10 n 02 running_head 0 running_headline 0 003 @ 06343971 n 0000 #p 06410904 n 0000 ~ 06345441 n 0000 | a heading printed at the top of every page (or every other page) of a book -06345320 10 n 02 subheading 0 subhead 1 002 @ 06343971 n 0000 ~ 06346461 n 0000 | a heading of a subdivision of a text -06345441 10 n 01 running_title 0 001 @ 06345131 n 0000 | the title (or a shortened title) of a book used as a running head -06345566 10 n 06 dropline 0 drop_line 0 stepped_line 0 stagger_head 0 staggered_head 0 stephead 0 001 @ 06344461 n 0000 | a headline with the top line flush left and succeeding lines indented to the right -06345773 10 n 01 screamer 0 002 @ 06344461 n 0000 + 00912833 v 0102 | a sensational newspaper headline -06345878 10 n 02 streamer 0 banner 0 001 @ 06344461 n 0000 | a newspaper headline that runs across the full page -06345993 10 n 03 title 5 statute_title 0 rubric 4 001 @ 06343971 n 0000 | a heading that names a statute or legislative bill; may give a brief summary of the matters it deals with; "Title 8 provided federal help for schools" -06346220 10 n 01 title 6 002 @ 06362953 n 0000 ;u 06295235 n 0000 | (usually plural) written material introduced into a movie or TV show to give credits or represent dialogue or explain an action; "the titles go by faster than I can read" -06346461 10 n 01 title 1 005 @ 06345320 n 0000 + 01028466 v 0102 ~ 06346681 n 0000 ~ 06346891 n 0000 ~ 06347037 n 0000 | a general or descriptive heading for a section of a written work; "the novel had chapter titles" -06346681 10 n 01 credit 1 003 @ 06346461 n 0000 #p 06613686 n 0000 + 00727791 v 0102 | an entry on a list of persons who contributed to a film or written work; "the credits were given at the end of the film" -06346891 10 n 02 caption 0 legend 0 003 @ 06346461 n 0000 #p 06999233 n 0000 + 02323870 v 0101 | brief description accompanying an illustration -06347037 10 n 01 subtitle 0 001 @ 06346461 n 0000 | secondary or explanatory title -06347122 10 n 01 mistranslation 0 002 @ 06536389 n 0000 + 00960453 v 0101 | an incorrect translation -06347225 10 n 03 pony 0 trot 0 crib 0 002 @ 06536389 n 0000 + 02574977 v 0301 | a literal translation used in studying a foreign language (often used illicitly) -06347388 10 n 01 retroversion 0 001 @ 06536389 n 0000 | translation back into the original language; "the teacher translated Latin texts into English which he gave to his students for retroversion" -06347588 10 n 02 subtitle 1 caption 1 004 @ 06536389 n 0000 #p 06613686 n 0000 + 02323870 v 0201 + 02332311 v 0101 | translation of foreign dialogue of a movie or TV program; usually displayed at the bottom of the screen -06347811 10 n 02 supertitle 0 surtitle 0 002 @ 06536389 n 0000 #p 07026352 n 0000 | translation of the words of a foreign opera (or choral work) projected on a screen above the stage -06347996 10 n 02 line_of_poetry 0 line_of_verse 0 007 @ 07012534 n 0000 #p 06377442 n 0000 #p 06378917 n 0000 ~ 06348215 n 0000 ~ 06348373 n 0000 ~ 06348500 n 0000 ~ 06348685 n 0000 | a single line of words in a poem -06348215 10 n 01 acatalectic 0 003 @ 06347996 n 0000 ;c 06170025 n 0000 + 00317886 a 0101 | (prosody) a line of verse that has the full number of syllables -06348373 10 n 01 Alexandrine 0 002 @ 06347996 n 0000 ;c 06170025 n 0000 | (prosody) a line of verse that has six iambic feet -06348500 10 n 01 catalectic 0 004 @ 06347996 n 0000 ;c 06170025 n 0000 + 07094355 n 0101 + 00318082 a 0101 | (prosody) a line of verse that lacks a syllable in the last metrical foot -06348685 10 n 01 hypercatalectic 0 003 @ 06347996 n 0000 ;c 06170025 n 0000 + 00318291 a 0101 | (prosody) a line of poetry having an extra syllable or syllables at the end of the last metrical foot -06348885 10 n 02 by-line 0 credit_line 0 002 @ 07012534 n 0000 %p 06338744 n 0000 | a line giving the name of the writer of a story or article -06349030 10 n 01 dateline 0 003 @ 07012534 n 0000 #p 06682794 n 0000 + 00735224 v 0101 | a line at the beginning of a news article giving the date and place of origin of the news dispatch -06349220 10 n 03 written_communication 0 written_language 0 black_and_white 0 012 @ 00033020 n 0000 %p 06256229 n 0000 ~ 06349597 n 0000 ~ 06359877 n 0000 ~ 06362953 n 0000 ~ 06363778 n 0000 ~ 06365808 n 0000 ~ 06366002 n 0000 ~ 06598030 n 0000 ~ 06623614 n 0000 ~ 06667317 n 0000 ~ 06678302 n 0000 | communication by means of written symbols (either printed or handwritten) -06349597 10 n 02 transcription 0 written_text 0 004 @ 06349220 n 0000 + 00995103 v 0101 ~ 06349828 n 0000 ~ 06349952 n 0000 | something written, especially copied from one medium to another, as a typewritten version of dictation -06349828 10 n 01 transliteration 0 002 @ 06349597 n 0000 + 00994682 v 0101 | a transcription from one alphabet to another -06349952 10 n 01 phonetic_transcription 0 002 @ 06349597 n 0000 %p 06839858 n 0000 | a transcription intended to represent each distinct speech sound with a separate symbol -06350127 10 n 03 shorthand 0 stenography 0 tachygraphy 0 003 @ 06403393 n 0000 + 02803389 a 0202 + 10654015 n 0201 | a method of writing rapidly -06350274 10 n 04 longhand 0 running_hand 0 cursive 0 cursive_script 0 005 @ 06403393 n 0000 ~ 06350592 n 0000 ~ 06350777 n 0000 ~ 06350918 n 0000 ~ 06351086 n 0000 | rapid handwriting in which letters are set down in full and are cursively connected within words without lifting the writing implement from the paper -06350592 10 n 01 minuscule 0 002 @ 06350274 n 0000 + 01474324 a 0102 | a small cursive script developed from uncial between the 7th and 9th centuries and used in medieval manuscripts -06350777 10 n 01 copperplate 0 001 @ 06350274 n 0000 | a graceful style of handwriting based on the writing used on copperplate engravings -06350918 10 n 01 italic 2 004 @ 06350274 n 0000 + 03075798 a 0101 + 01749017 v 0101 + 01749017 v 0102 | a style of handwriting with the letters slanting to the right -06351086 10 n 01 round_hand 0 001 @ 06350274 n 0000 | a clearly written style of longhand with large round curves -06351202 10 n 02 orthography 0 writing_system 0 015 @ 06359877 n 0000 + 02909952 a 0101 %m 00390198 n 0000 %m 00390445 n 0000 %p 00390735 n 0000 ~ 06351613 n 0000 ~ 06353445 n 0000 ~ 06361218 n 0000 ~ 06361314 n 0000 ~ 06361446 n 0000 ~i 06361934 n 0000 ~ 06362172 n 0000 ~ 06362441 n 0000 ~ 06362628 n 0000 %p 06841365 n 0000 | a method of representing the sounds of a language by written or printed symbols -06351613 10 n 01 script 1 011 @ 06351202 n 0000 ~ 06351888 n 0000 ~ 06352301 n 0000 ~ 06352618 n 0000 ~ 06352782 n 0000 ~ 06352954 n 0000 ~ 06353089 n 0000 ~ 06353225 n 0000 ~ 06361635 n 0000 ~ 06361770 n 0000 ~ 06497459 n 0000 | a particular orthography or writing system -06351888 10 n 02 Aramaic 1 Aramaic_script 0 001 @ 06351613 n 0000 | an alphabetical (or perhaps syllabic) script used since the 9th century BC to write the Aramaic language; many other scripts were subsequently derived from it -06352117 10 n 02 Armenian 1 Armenian_alphabet 0 002 @ 06497459 n 0000 + 02625648 a 0101 | a writing system having an alphabet of 38 letters in which the Armenian language is written -06352301 10 n 01 Avestan 1 002 @ 06351613 n 0000 + 02926519 a 0101 | the script in which the ancient Persian language of the Avesta is written -06352446 10 n 01 Babylonian 1 002 @ 06361635 n 0000 ;r 08916832 n 0000 | the ideographic and syllabic writing system in which the ancient Babylonian language was written -06352618 10 n 01 Brahmi 0 001 @ 06351613 n 0000 | a script (probably adapted from the Aramaic about the 7th century BC) from which later Indian scripts developed -06352782 10 n 04 Devanagari 0 Devanagari_script 0 Nagari 0 Nagari_script 0 002 @ 06361770 n 0000 @ 06351613 n 0000 | a syllabic script used in writing Sanskrit and Hindi -06352954 10 n 01 Pahlavi 1 001 @ 06351613 n 0000 | the script (derived from the Aramaic alphabet) used to write the Pahlavi language -06353089 10 n 03 Uighur 1 Uigur 1 Uygur 1 001 @ 06351613 n 0000 | the script (derived from Aramaic) used to write the Uighur language -06353225 10 n 01 uncial 0 002 @ 06351613 n 0000 + 02819988 a 0101 | a style of orthography characterized by somewhat rounded capital letters; found especially in Greek and Latin manuscripts of the 4th to 8th centuries -06353445 10 n 01 spelling 0 005 @ 06351202 n 0000 + 01699896 v 0101 + 00937879 v 0101 ~ 06353653 n 0000 %p 06828818 n 0000 | forming words with letters according to the principles underlying accepted usage -06353653 10 n 01 misspelling 0 002 @ 06353445 n 0000 + 00938146 v 0101 | a spelling that is incorrect -06353757 10 n 01 coding_system 0 003 @ 06359877 n 0000 ~ 06353934 n 0000 ~ 06355894 n 0000 | a system of signals used to represent letters or numbers in transmitting messages -06353934 10 n 01 code 0 009 @ 06353757 n 0000 + 00994076 v 0101 ~ 06354204 n 0000 ~ 06354626 n 0000 ~ 06354774 n 0000 ~ 06355078 n 0000 ~ 06355307 n 0000 ~ 06355459 n 0000 ~ 06355705 n 0000 | a coding system used for transmitting messages requiring brevity or secrecy -06354204 10 n 02 access 0 access_code 0 002 @ 06353934 n 0000 ~ 06354481 n 0000 | a code (a series of characters or digits) that must be entered in some way (typed or dialed or spoken) to get the use of something (a telephone line or a computer or a local area network etc.) -06354481 10 n 02 back_door 0 backdoor 0 001 @ 06354204 n 0000 | an undocumented way to get access to a computer system or the data it contains -06354626 10 n 01 area_code 0 001 @ 06353934 n 0000 | a number usually of 3 digits assigned to a telephone area as in the United States and Canada -06354774 10 n 02 bar_code 0 Universal_Product_Code 0 001 @ 06353934 n 0000 | code consisting of a series of vertical bars of variable width that are scanned by a laser; printed on consumer product packages to identify the item for a computer that provides the price and registers inventory information -06355078 10 n 01 color_code 0 001 @ 06353934 n 0000 | system using colors to designate classifications -06355183 10 n 03 cryptogram 0 cryptograph 1 secret_writing 0 001 @ 06362953 n 0000 | a piece of writing in code or cipher -06355307 10 n 04 cipher 0 cypher 0 cryptograph 2 secret_code 0 003 @ 06353934 n 0000 + 00994076 v 0204 + 00994076 v 0103 | a secret method of writing -06355459 10 n 03 Morse 0 Morse_code 0 international_Morse_code 0 003 @ 06353934 n 0000 %p 06805826 n 0000 %p 06805962 n 0000 | a telegraph code in which letters and numbers are represented by strings of dots and dashes (short and long signals) -06355705 10 n 04 ZIP_code 0 ZIP 0 postcode 0 postal_code 0 002 @ 06353934 n 0000 #p 06787150 n 0000 | a code of letters and digits added to a postal address to aid in the sorting of mail -06355894 10 n 02 code 2 computer_code 0 013 @ 06353757 n 0000 ;c 06128570 n 0000 + 00994076 v 0101 ~ 06356515 n 0000 ~ 06356755 n 0000 ~ 06357304 n 0000 ~ 06357424 n 0000 ~ 06357814 n 0000 ~ 06357985 n 0000 ~ 06358159 n 0000 ~ 06358311 n 0000 ~ 06566077 n 0000 ~ 06584891 n 0000 | (computer science) the symbolic arrangement of data or instructions in a computer program or the set of such instructions -06356299 10 n 02 argument 4 parameter 0 003 @ 06356515 n 0000 @ 05856388 n 0000 ;c 06128570 n 0000 | (computer science) a reference or value that is passed to a function, procedure, subroutine, command, or program -06356515 10 n 03 address 4 computer_address 0 reference 8 005 @ 06355894 n 0000 ;c 06128570 n 0000 + 02249018 v 0101 ~ 06356299 n 0000 ~ 06358747 n 0000 | (computer science) the code that identifies where a piece of information is stored -06356755 10 n 02 American_Standard_Code_for_Information_Interchange 0 ASCII 0 003 @ 06355894 n 0000 ;c 06128570 n 0000 %p 06820425 n 0000 | (computer science) a code for information exchange between computers made by different companies; a string of 7 binary digits represents each character; used in most microcomputers -06357078 10 n 01 ASCII_character_set 0 002 @i 06488880 n 0000 ;c 06128570 n 0000 | (computer science) 128 characters that make up the ASCII coding scheme; "the ASCII character set is the most universal character coding set" -06357304 10 n 01 binary_code 0 001 @ 06355894 n 0000 | code using a string of 8 binary digits to represent characters -06357424 10 n 02 error_correction_code 0 ECC 0 003 @ 06355894 n 0000 ;c 06128307 n 0000 ~ 06357632 n 0000 | (telecommunication) a coding system that incorporates extra parity bits in order to detect errors -06357632 10 n 01 cyclic_redundancy_check 0 001 @ 06357424 n 0000 | an error correction code that is recorded in each sector of a magnetic disk and used to catch errors in the data -06357814 10 n 02 firmware 0 microcode 0 002 @ 06355894 n 0000 ;c 06128570 n 0000 | (computer science) coded instructions that are stored permanently in read-only memory -06357985 10 n 02 machine_code 0 machine_language 0 001 @ 06355894 n 0000 | a set of instructions coded so that the computer can use it directly without further translation -06358159 10 n 01 object_code 0 001 @ 06355894 n 0000 | the machine-language output of a compiler that is ready for execution on a particular computer -06358311 10 n 02 operation_code 0 order_code 0 001 @ 06355894 n 0000 | the portion of a set of operation descriptions that specifies the operation to be performed; the set of operations in a computer -06358513 10 n 01 source_code 0 001 @ 06511242 n 0000 | program instructions written as an ASCII text file; must be translated by a compiler or interpreter or assembler into the object code for a particular computer before execution -06358747 10 n 03 URL 0 uniform_resource_locator 0 universal_resource_locator 0 001 @ 06356515 n 0000 | the address of a web page on the world wide web -06358900 10 n 02 web_page 0 webpage 0 002 @ 06510977 n 0000 ~ 06359096 n 0000 | a document connected to the World Wide Web and viewable by anyone connected to the internet who has a web browser -06359096 10 n 02 home_page 0 homepage 0 001 @ 06358900 n 0000 | the opening page of a web site -06359193 10 n 04 web_site 0 website 0 internet_site 0 site 0 003 @ 03082979 n 0000 ~ 06359467 n 0000 ~ 06359657 n 0000 | a computer connected to the internet that maintains a series of web pages on the World Wide Web; "the Israeli web site was damaged by hostile hackers" -06359467 10 n 02 chat_room 0 chatroom 0 001 @ 06359193 n 0000 | a site on the internet where a number of users can communicate in real time (typically one dedicated to a particular topic) -06359657 10 n 02 portal_site 0 portal 0 001 @ 06359193 n 0000 | a site that the owner positions as an entrance to other sites on the internet; "a portal typically has search engines and free email and chat rooms etc." -06359877 10 n 01 writing 1 011 @ 06349220 n 0000 ~ 06351202 n 0000 ~ 06353757 n 0000 ~ 06402425 n 0000 ~ 06402565 n 0000 ~ 06403291 n 0000 ~ 06403393 n 0000 ~ 06403679 n 0000 ~ 06403852 n 0000 ~ 06677302 n 0000 ~ 06808493 n 0000 | letters or symbols that are written or imprinted on a surface to represent the sounds or words of a language; "he turned the paper over so the writing wouldn't show"; "the doctor's writing was illegible" -06360314 10 n 01 written_word 0 004 @ 06286395 n 0000 ~ 06360599 n 0000 ~ 06360723 n 0000 ~ 06360850 n 0000 | the written form of a word; "while the spoken word stands for something, the written word stands for something that stands for something"; "a craftsman of the written word" -06360599 10 n 01 bigram 0 001 @ 06360314 n 0000 | a word that is written with two letters in an alphabetic writing system -06360723 10 n 01 trigram 0 001 @ 06360314 n 0000 | a word that is written with three letters in an alphabetic writing system -06360850 10 n 01 tetragram 0 002 @ 06360314 n 0000 ~ 06360996 n 0000 | a word that is written with four letters in an alphabetic writing system -06360996 10 n 01 Tetragrammaton 0 001 @ 06360850 n 0000 | four Hebrew letters usually transliterated as YHWH (Yahweh) or JHVH (Jehovah) signifying the Hebrew name for God which the Jews regarded as too holy to pronounce -06361218 10 n 01 picture_writing 0 001 @ 06351202 n 0000 | a writing system using pictographs -06361314 10 n 02 alphabetic_writing 0 alphabetic_script 0 001 @ 06351202 n 0000 | a writing system based on alphabetic characters -06361446 10 n 01 boustrophedon 0 002 @ 06351202 n 0000 + 02668981 a 0101 | an ancient writing system: having alternate lines written in opposite directions; literally `as the ox ploughs' -06361635 10 n 01 cuneiform 0 002 @ 06351613 n 0000 ~ 06352446 n 0000 | an ancient wedge-shaped script used in Mesopotamia and Persia -06361770 10 n 02 syllabary 0 syllabic_script 0 003 @ 06351613 n 0000 ~ 06352782 n 0000 ~i 06362059 n 0000 | a writing system whose characters represent syllables -06361934 10 n 01 Linear_A 0 001 @i 06351202 n 0000 | an undeciphered writing system used in Crete in the 17th century B.C. -06362059 10 n 01 Linear_B 0 001 @i 06361770 n 0000 | a syllabic script used in Greece in the 13th century B.C. -06362172 10 n 01 ideography 0 001 @ 06351202 n 0000 | the use of ideograms in writing -06362260 10 n 02 hieratic 0 hieratic_script 0 003 @ 06362441 n 0000 + 02742039 a 0101 ~ 06990193 n 0000 | a cursive form of Egyptian hieroglyphics; used especially by the priests -06362441 10 n 02 hieroglyph 0 hieroglyphic 0 004 @ 06351202 n 0000 + 02742206 a 0201 + 02742206 a 0102 ~ 06362260 n 0000 | a writing system using picture symbols; used in ancient Egypt -06362628 10 n 01 point_system 0 002 @ 06351202 n 0000 ~ 06362792 n 0000 | a system of writing or printing using patterns of raised dots that can be read by touch -06362792 10 n 01 braille 0 002 @ 06362628 n 0000 + 00995716 v 0101 | a point system of writing in which patterns of raised dots represent letters and numerals -06362953 10 n 03 writing 0 written_material 0 piece_of_writing 0 029 @ 06349220 n 0000 ~ 00397191 n 0000 ~ 06346220 n 0000 ~ 06355183 n 0000 ~ 06364149 n 0000 ~ 06364329 n 0000 ~ 06364641 n 0000 ~ 06365102 n 0000 ~ 06365467 n 0000 ~ 06374587 n 0000 ~ 06392001 n 0000 %p 06398760 n 0000 ~ 06399995 n 0000 ~ 06402031 n 0000 ~ 06405699 n 0000 ~ 06406979 n 0000 ~ 06407094 n 0000 ~ 06408651 n 0000 ~ 06408779 n 0000 ~ 06409562 n 0000 ~ 06427831 n 0000 ~ 06429590 n 0000 ~ 06430309 n 0000 ~i 06466030 n 0000 ~ 06470073 n 0000 ~ 07007684 n 0000 ~ 07239428 n 0000 ~ 07277158 n 0000 ~ 07277384 n 0000 | the work of a writer; anything expressed in letters of the alphabet (especially when considered from the point of view of style and effect); "the writing in her novels is excellent"; "that editorial was a fine piece of writing" -06363778 10 n 01 writing 2 004 @ 06349220 n 0000 @ 03841417 n 0000 ;u 06295235 n 0000 ~ 06364004 n 0000 | (usually plural) the collected work of an author; "the idea occurs with increasing frequency in Hemingway's writings" -06364004 10 n 02 patristics 0 patrology 0 003 @ 06363778 n 0000 + 03020463 a 0101 + 03020463 a 0102 | the writings of the early Church Fathers -06364149 10 n 03 rewrite 0 revision 0 rescript 0 003 @ 06362953 n 0000 + 01700934 v 0101 + 00995838 v 0101 | something that has been written again; "the rewrite was much better" -06364329 10 n 02 literary_composition 0 literary_work 0 012 @ 06362953 n 0000 ~ 06366130 n 0000 ~ 06366269 n 0000 ~ 06366391 n 0000 ~ 06367107 n 0000 ~ 06367373 n 0000 ~ 06377000 n 0000 ~ 06377133 n 0000 ~ 06377275 n 0000 ~ 06377442 n 0000 ~ 06387053 n 0000 ~ 06387204 n 0000 | imaginative or creative writing -06364641 10 n 01 literature 0 020 @ 06362953 n 0000 + 02830501 a 0101 -c 00317008 a 0000 -c 00969103 a 0000 -c 01028467 a 0000 -c 01110470 a 0000 -c 00610592 n 0000 -c 02378755 n 0000 -c 05970012 n 0000 -c 06169488 n 0000 -c 06365102 n 0000 -c 06401526 n 0000 -c 06401787 n 0000 -c 06427831 n 0000 ~ 06463347 n 0000 -c 07258964 n 0000 -c 10539160 n 0000 -c 11518494 n 0000 -c 14002481 n 0000 -c 15134054 n 0000 | creative writing of recognized artistic value -06365102 10 n 01 literature 1 003 @ 06362953 n 0000 ;c 06364641 n 0000 ~ 06365357 n 0000 | published writings in a particular style on a particular subject; "the technical literature"; "one aspect of Waterloo has not yet been treated in the literature" -06365357 10 n 01 historiography 0 002 @ 06365102 n 0000 + 10177150 n 0102 | a body of historical literature -06365467 10 n 01 matter 0 011 @ 06362953 n 0000 ~ 06387332 n 0000 ~ 06387980 n 0000 ~ 06388579 n 0000 ~ 06389109 n 0000 ~ 06390688 n 0000 ~ 06390805 n 0000 ~ 06391347 n 0000 ~ 06391566 n 0000 ~ 06399631 n 0000 ~ 07235218 n 0000 | written works (especially in books or magazines); "he always took some reading matter with him on the plane" -06365808 10 n 01 prescription 1 001 @ 06349220 n 0000 | written instructions from a physician or dentist to a druggist concerning the form and dosage of a drug to be issued to a given patient -06366002 10 n 01 prescription 2 001 @ 06349220 n 0000 | written instructions for an optician on the lenses for a given person -06366130 10 n 01 acrostic 1 001 @ 06364329 n 0000 | verse in which certain letters such as the first in each line form a word or message -06366269 10 n 02 belles-lettres 0 belles_lettres 0 001 @ 06364329 n 0000 | creative writing valued for esthetic content -06366391 10 n 02 dialogue 2 dialog 2 001 @ 06364329 n 0000 | a literary composition in the form of a conversation between two people; "he has read Plato's Dialogues in the original Greek" -06366581 10 n 01 allegory 1 007 @ 07066659 n 0000 + 01981916 a 0102 + 01981916 a 0101 + 00624263 v 0101 + 00135285 v 0101 + 00624263 v 0102 + 00135285 v 0102 | an expressive style that uses fictional characters and events to describe some subject by suggestive resemblances; an extended metaphor -06366879 10 n 01 euphuism 0 001 @ 06376572 n 0000 | an elegant style of prose of the Elizabethan period; characterized by balance and antithesis and alliteration and extended similes with and allusions to nature and mythology -06367107 10 n 01 fiction 0 009 @ 06364329 n 0000 + 02727706 a 0101 + 01935935 a 0104 + 01635176 v 0101 ~ 06367702 n 0000 ~ 06367879 n 0000 ~ 06368425 n 0000 ~ 06369829 n 0000 ~ 06370178 n 0000 | a literary work based on the imagination and not necessarily on fact -06367373 10 n 02 fictionalization 0 fictionalisation 0 003 @ 06364329 n 0000 + 00116619 v 0204 + 01635176 v 0101 | a literary work based partly or wholly on fact but written as if it were fiction -06367571 10 n 02 nonfiction 0 nonfictional_prose 0 002 @ 06376572 n 0000 ~ 06268096 n 0000 | prose writing that is not fictional -06367702 10 n 01 dystopia 0 001 @ 06367107 n 0000 | a work of fiction describing an imaginary place where life is extremely bad because of deprivation or oppression or terror -06367879 10 n 01 novel 0 009 @ 06367107 n 0000 + 10363573 n 0101 + 06368962 n 0101 ~ 06368142 n 0000 ~ 06368321 n 0000 ~ 06368962 n 0000 ~ 06369077 n 0000 ~ 06369216 n 0000 ~ 06369690 n 0000 | an extended fictional work in prose; usually in the form of a story -06368142 10 n 02 detective_novel 0 mystery_novel 0 001 @ 06367879 n 0000 | novel in which the reader is challenged to solve a puzzle before the detective explains it at the end -06368321 10 n 02 dime_novel 0 penny_dreadful 0 001 @ 06367879 n 0000 | a melodramatic paperback novel -06368425 10 n 02 fantasy 0 phantasy 0 003 @ 06367107 n 0000 + 10078415 n 0101 ~ 06368628 n 0000 | fiction with a large amount of imagination in it; "she made a lot of money writing romantic fantasies" -06368628 10 n 01 science_fiction 0 004 @ 06368425 n 0000 -c 01254473 n 0000 ~ 06368814 n 0000 -c 02104690 v 0000 | literary fantasy involving the imagined impact of science on society -06368814 10 n 01 cyberpunk 0 001 @ 06368628 n 0000 | a genre of fast-paced science fiction involving oppressive futuristic computerized societies -06368962 10 n 02 novelette 0 novella 0 003 @ 06367879 n 0000 + 06367879 n 0101 + 03833065 n 0101 | a short novel -06369077 10 n 01 roman_a_clef 0 001 @ 06367879 n 0000 | a novel in which actual persons and events are disguised as fictional characters -06369216 10 n 01 romance 1 005 @ 06367879 n 0000 + 01837182 a 0102 + 00834557 v 0101 ~ 06369405 n 0000 ~ 06369554 n 0000 | a novel dealing with idealized events remote from everyday life -06369405 10 n 01 Gothic_romance 0 002 @ 06369216 n 0000 + 10139944 n 0101 | a romance that deals with desolate and mysterious and grotesque events -06369554 10 n 01 bodice_ripper 0 001 @ 06369216 n 0000 | a romantic novel containing scenes in which the heroine is sexually violated -06369690 10 n 01 roman_fleuve 0 001 @ 06367879 n 0000 | a French novel in the form of a long chronicle of a family or other social group -06369829 10 n 01 story 0 012 @ 06367107 n 0000 ~ 06370268 n 0000 ~ 06370792 n 0000 ~ 06371267 n 0000 ~ 06371413 n 0000 ~ 06371999 n 0000 ~ 06372095 n 0000 ~ 06372680 n 0000 ~ 06373090 n 0000 ~ 06373314 n 0000 %p 06373747 n 0000 %p 06373991 n 0000 | a piece of fiction that narrates a chain of related events; "he writes stories for the magazines" -06370178 10 n 01 utopia 1 001 @ 06367107 n 0000 | a work of fiction describing a utopia -06370268 10 n 02 adventure_story 0 heroic_tale 0 003 @ 06369829 n 0000 ~ 06370403 n 0000 ~ 06370522 n 0000 | a story of an adventure -06370403 10 n 01 thriller 0 002 @ 06370268 n 0000 + 02117333 v 0101 | a suspenseful adventure story or play or movie -06370522 10 n 01 saga 0 001 @ 06370268 n 0000 | a narrative telling the adventures of a hero or a family; originally (12th to 14th centuries) a story of the families that settled Iceland and their descendants but now any prose narrative that resembles such an account -06370792 10 n 03 mystery 0 mystery_story 0 whodunit 0 003 @ 06369829 n 0000 ~ 06370985 n 0000 ~ 06371145 n 0000 | a story about a crime (usually murder) presented as a novel or play or movie -06370985 10 n 01 detective_story 0 001 @ 06370792 n 0000 | a narrative about someone who investigates crimes and obtains evidence leading to their resolution -06371145 10 n 01 murder_mystery 0 001 @ 06370792 n 0000 | a narrative about a murder and how the murderer is discovered -06371267 10 n 02 love_story 0 romance 2 004 @ 06369829 n 0000 + 01037910 v 0207 + 01775782 v 0201 + 02534492 v 0203 | a story dealing with love -06371413 10 n 02 legend 1 fable 1 012 @ 06369829 n 0000 + 01936184 a 0201 + 10075529 n 0201 + 01935744 a 0102 -c 03451909 n 0000 -c 04114554 n 0000 ~ 06371734 n 0000 -c 06377000 n 0000 -c 09498497 n 0000 -c 09498697 n 0000 -c 10550951 n 0000 -c 10551265 n 0000 | a story about mythical or supernatural beings or events -06371734 10 n 01 Arthurian_legend 0 009 @ 06371413 n 0000 -c 08507109 n 0000 -c 08558289 n 0000 -c 10987176 n 0000 -c 10992933 n 0000 -c 10996533 n 0000 -c 11018439 n 0000 -c 11115293 n 0000 -c 11176388 n 0000 | the legend of King Arthur and his court at Camelot -06371999 10 n 01 short_story 0 001 @ 06369829 n 0000 | a prose narrative shorter than a novel -06372095 10 n 04 fable 0 parable 0 allegory 0 apologue 0 012 @ 06369829 n 0000 + 01981916 a 0301 + 00624263 v 0301 + 00135285 v 0301 + 00624263 v 0302 + 00135285 v 0302 + 02996904 a 0201 + 02996904 a 0202 + 01936184 a 0101 + 10075529 n 0101 ~ 06372428 n 0000 ~i 06372572 n 0000 | a short moral story (often with animal characters) -06372428 10 n 01 Aesop's_fables 0 001 @ 06372095 n 0000 | a collection of fables believed to have been written by the Greek storyteller Aesop -06372572 10 n 01 Pilgrim's_Progress 0 001 @i 06372095 n 0000 | an allegory written by John Bunyan in 1678 -06372680 10 n 01 myth 0 007 @ 06369829 n 0000 #m 07978423 n 0000 + 01936184 a 0102 + 02995972 a 0101 + 01936184 a 0103 + 00135013 v 0101 ~ 06372925 n 0000 | a traditional story accepted as history; serves to explain the world view of a people -06372925 10 n 03 Gotterdammerung 0 Ragnarok 0 Twilight_of_the_Gods 0 001 @ 06372680 n 0000 | myth about the ultimate destruction of the gods in a battle with evil -06373090 10 n 01 parable 1 004 @ 06369829 n 0000 ;c 06453849 n 0000 + 02996904 a 0101 + 02996904 a 0102 | (New Testament) any of the stories told by Jesus to convey his religious message; "the parable of the prodigal son" -06373314 10 n 01 plot 0 003 @ 06369829 n 0000 ~ 06373513 n 0000 ~ 06373645 n 0000 | the story that is told in a novel or play or movie etc.; "the characters were well drawn but the plot was banal" -06373513 10 n 01 action 0 001 @ 06373314 n 0000 | the series of events that form a plot; "his novels always have a lot of action" -06373645 10 n 02 storyline 0 plot_line 0 001 @ 06373314 n 0000 | the plot of a book or play or film -06373747 10 n 02 climax 0 culmination 0 006 @ 15244650 n 0000 #p 06369829 n 0000 + 02526934 v 0201 + 00485609 v 0201 + 02487718 a 0101 + 00485609 v 0102 | the decisive moment in a novel or play; "the deathbed scene is the climax of the play" -06373991 10 n 02 anticlimax 0 bathos 1 003 @ 06398401 n 0000 #p 06369829 n 0000 + 02629659 a 0101 | a change from a serious subject to a disappointing one -06374148 10 n 01 tearjerker 0 001 @ 07221094 n 0000 | an excessively sentimental narrative -06374241 10 n 01 interior_monologue 0 001 @ 06376572 n 0000 | a literary genre that presents a fictional character's sequence of thoughts in the form of a monologue -06374408 10 n 01 stream_of_consciousness 0 001 @ 06376572 n 0000 | a literary genre that reveals a character's thoughts and feeling as they develop by means of a long soliloquy -06374587 10 n 02 criticism 1 literary_criticism 0 008 @ 06362953 n 0000 + 02830645 a 0101 + 00826509 v 0103 ~ 06374834 n 0000 ~ 06375008 n 0000 ~ 06375215 n 0000 ~ 06376014 n 0000 ~ 06410391 n 0000 | a written evaluation of a work of literature -06374834 10 n 01 explication_de_texte 0 001 @ 06374587 n 0000 | a method of literary criticism that analyzes details of a text in order to reveal its structure and meaning -06375008 10 n 01 textual_criticism 0 004 @ 06374587 n 0000 ~ 06375329 n 0000 ~ 06375471 n 0000 ~ 06375624 n 0000 | comparison of a particular text with related materials in order to establish authenticity -06375215 10 n 01 new_criticism 0 001 @ 06374587 n 0000 | literary criticism based on close analysis of the text -06375329 10 n 01 higher_criticism 0 001 @ 06375008 n 0000 | the scientific study of biblical writings to determine their origin and meaning -06375471 10 n 01 lower_criticism 0 001 @ 06375008 n 0000 | the study of existing manuscripts of the Scriptures in order to determine the original text -06375624 10 n 02 Masorah 0 Masora 0 002 @ 06375008 n 0000 + 02895565 a 0101 | a vast body of textual criticism of the Hebrew Scriptures including notes on features of writing and on the occurrence of certain words and on variant sources and instructions for pronunciation and other comments that were written between AD 600 and 900 by Jewish scribes in the margins or at the end of texts -06376014 10 n 01 analysis 0 001 @ 06374587 n 0000 | a form of literary criticism in which the structure of a piece of writing is analyzed -06376154 10 n 01 drama 0 018 @ 07092158 n 0000 + 02714800 a 0101 + 10030277 n 0101 + 01701311 v 0101 + 00988287 v 0101 + 01701311 v 0102 + 00988287 v 0102 -c 02376277 a 0000 -c 02376562 a 0000 -c 02973241 a 0000 -c 02973392 a 0000 -c 02973540 a 0000 -c 04551638 n 0000 -c 07007945 n 0000 ~ 07015400 n 0000 ~ 07015510 n 0000 ~ 07016948 n 0000 -c 07068133 n 0000 | the literary genre of works intended for the theater -06376572 10 n 01 prose 0 007 @ 07092158 n 0000 ~ 06366879 n 0000 ~ 06367571 n 0000 ~ 06374241 n 0000 ~ 06374408 n 0000 ~ 06376776 n 0000 ~ 06376860 n 0000 | ordinary writing as distinguished from verse -06376776 10 n 01 prose_poem 0 001 @ 06376572 n 0000 | prose that resembles poetry -06376860 10 n 01 polyphonic_prose 0 001 @ 06376572 n 0000 | a rhythmical prose employing the poetic devices of alliteration and assonance -06377000 10 n 01 hagiology 0 002 @ 06364329 n 0000 ;c 06371413 n 0000 | literature narrating the lives (and legends) of the saints -06377133 10 n 01 lucubration 0 002 @ 06364329 n 0000 + 00955601 v 0102 | a solemn literary work that is the product of laborious cogitation -06377275 10 n 01 pastoral 1 003 @ 06364329 n 0000 + 02051179 a 0103 ~ 06379439 n 0000 | a literary work idealizing the rural life (especially the life of shepherds) -06377442 10 n 02 poem 0 verse_form 0 023 @ 06364329 n 0000 %p 06347996 n 0000 ~ 06377971 n 0000 ~ 06378104 n 0000 ~ 06378298 n 0000 ~ 06378427 n 0000 ~ 06378524 n 0000 ~ 06379568 n 0000 ~ 06379721 n 0000 ~ 06380373 n 0000 ~ 06380495 n 0000 ~ 06380726 n 0000 ~ 06380879 n 0000 ~ 06381372 n 0000 ~ 06381594 n 0000 ~ 06381761 n 0000 ~ 06381869 n 0000 %p 06384269 n 0000 %p 06384708 n 0000 ~ 06385244 n 0000 %p 07052291 n 0000 %p 07093895 n 0000 %p 07096661 n 0000 | a composition written in metrical feet forming rhythmical lines -06377971 10 n 01 abecedarius 0 001 @ 06377442 n 0000 | a poem having lines beginning with letters of the alphabet in regular order -06378104 10 n 02 Alcaic 0 Alcaic_verse 0 001 @ 06377442 n 0000 | verse in the meter used in Greek and Latin poetry consisting of strophes of 4 tetrametric lines; reputedly invented by Alcaeus -06378298 10 n 02 ballad 0 lay 0 003 @ 06377442 n 0000 + 09980090 n 0102 ~ 06953471 n 0000 | a narrative poem of popular origin -06378427 10 n 01 ballade 0 001 @ 06377442 n 0000 | a poem consisting of 3 stanzas and an envoy -06378524 10 n 01 blank_verse 0 001 @ 06377442 n 0000 | unrhymed verse (usually in iambic pentameter) -06378627 10 n 01 clerihew 0 001 @ 06381869 n 0000 | a witty satiric verse containing two rhymed couplets and mentioning a famous person; "`The president is George W. Bush, Who is happy to sit on his tush, While sending his armies to fight, For anything he thinks is right' is a clerihew" -06378917 10 n 01 couplet 0 004 @ 07052291 n 0000 %p 06347996 n 0000 ~ 06385728 n 0000 ~ 06385842 n 0000 | a stanza consisting of two successive lines of verse; usually rhymed -06379094 10 n 01 dithyramb 0 003 @ 07035870 n 0000 ;r 08780881 n 0000 ;c 15253139 n 0000 | (ancient Greece) a passionate hymn (usually in honor of Dionysus) -06379253 10 n 03 doggerel 0 doggerel_verse 0 jingle 0 001 @ 06381869 n 0000 | a comic verse of irregular measure; "he had heard some silly doggerel that kept running through his mind" -06379439 10 n 04 eclogue 0 bucolic 0 idyll 0 idyl 0 001 @ 06377275 n 0000 | a short poem descriptive of rural or pastoral life -06379568 10 n 02 elegy 0 lament 0 004 @ 06377442 n 0000 + 01802219 v 0201 + 10050043 n 0101 + 01703326 v 0101 | a mournful poem; a lament for the dead -06379721 10 n 04 epic_poem 0 heroic_poem 0 epic 0 epos 0 012 @ 06377442 n 0000 + 03015589 a 0401 + 03015589 a 0301 + 03015589 a 0302 ~i 06380055 n 0000 ~i 06380256 n 0000 ~i 06382072 n 0000 ~i 06382193 n 0000 ~i 06382345 n 0000 ~ 06382506 n 0000 ~ 06382590 n 0000 ~ 06386156 n 0000 | a long narrative poem telling of a hero's deeds -06380055 10 n 01 Aeneid 0 001 @i 06379721 n 0000 | an epic in Latin by Virgil; tells the adventures of Aeneas after the Trojan War; provides an illustrious historical background for the Roman Empire -06380256 10 n 02 Divine_Comedy 0 Divina_Commedia 0 001 @i 06379721 n 0000 | a narrative epic poem written by Dante -06380373 10 n 02 free_verse 0 vers_libre 0 001 @ 06377442 n 0000 | unrhymed verse without a consistent metrical pattern -06380495 10 n 01 haiku 0 001 @ 06377442 n 0000 | an epigrammatic Japanese verse form of three short lines -06380603 10 n 01 limerick 0 001 @ 06381869 n 0000 | a humorous verse form of 5 anapestic lines with a rhyme scheme aabba -06380726 10 n 02 lyric 0 lyric_poem 0 004 @ 06377442 n 0000 ~ 06383659 n 0000 %p 06386693 n 0000 %p 06386832 n 0000 | a short poem of songlike quality -06380879 10 n 02 rondeau 0 rondel 0 004 @ 06377442 n 0000 + 06381274 n 0101 ~ 06381134 n 0000 ~ 06381274 n 0000 | a French verse form of 10 or 13 lines running on two rhymes; the opening phrase is repeated as the refrain of the second and third stanzas -06381134 10 n 01 roundel 0 001 @ 06380879 n 0000 | English form of rondeau having three triplets with a refrain after the first and third -06381274 10 n 01 rondelet 0 002 @ 06380879 n 0000 + 06380879 n 0101 | a shorter form of rondeau -06381372 10 n 01 sonnet 0 007 @ 06377442 n 0000 + 10625000 n 0101 + 01703613 v 0101 + 01703730 v 0101 ~ 06382716 n 0000 ~ 06383107 n 0000 ~ 06383334 n 0000 | a verse form consisting of 14 lines with a fixed rhyme scheme -06381594 10 n 01 tanka 0 001 @ 06377442 n 0000 | a form of Japanese poetry; the 1st and 3rd lines have five syllables and the 2nd, 4th, and 5th have seven syllables -06381761 10 n 01 terza_rima 0 001 @ 06377442 n 0000 | a verse form with a rhyme scheme: aba bcb cdc, etc. -06381869 10 n 02 verse 0 rhyme 1 008 @ 06377442 n 0000 + 10528493 n 0202 + 01701858 v 0201 + 01702514 v 0101 + 01702514 v 0102 ~ 06378627 n 0000 ~ 06379253 n 0000 ~ 06380603 n 0000 | a piece of poetry -06382072 10 n 01 Iliad 0 001 @i 06379721 n 0000 | a Greek epic poem (attributed to Homer) describing the siege of Troy -06382193 10 n 01 Odyssey 0 001 @i 06379721 n 0000 | a Greek epic poem (attributed to Homer) describing the journey of Odysseus after the fall of Troy -06382345 10 n 01 Nibelungenlied 0 001 @i 06379721 n 0000 | an epic poem written in Middle High German and based on the legends of Siegfried and Teutonic kings -06382506 10 n 01 chanson_de_geste 0 001 @ 06379721 n 0000 | Old French epic poems -06382590 10 n 01 rhapsody 0 003 @ 06379721 n 0000 + 00954137 v 0101 + 00954137 v 0102 | an epic poem adapted for recitation -06382716 10 n 02 Petrarchan_sonnet 0 Italian_sonnet 0 001 @ 06381372 n 0000 | a sonnet consisting of an octave with the rhyme pattern abbaabba, followed by a sestet with the rhyme pattern cdecde or cdcdcd -06382923 10 n 01 octave 1 001 @ 07052291 n 0000 | a rhythmic group of eight lines of verse -06383016 10 n 01 sestet 1 001 @ 07052291 n 0000 | a rhythmic group of six lines of verse -06383107 10 n 03 Shakespearean_sonnet 0 Elizabethan_sonnet 0 English_sonnet 0 001 @ 06381372 n 0000 | a sonnet consisting three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab cdcd efef gg -06383334 10 n 01 Spenserian_sonnet 0 001 @ 06381372 n 0000 | a sonnet consisting of three quatrains and a concluding couplet in iambic pentameter with the rhyme pattern abab bcbd cdcd ee -06383523 10 n 01 epos 1 001 @ 07092592 n 0000 | a body of poetry that conveys the traditions of a society by treating some epic theme -06383659 10 n 01 ode 0 005 @ 06380726 n 0000 ~ 06383819 n 0000 ~ 06383934 n 0000 ~ 06384034 n 0000 ~ 06384165 n 0000 | a lyric poem with complex stanza forms -06383819 10 n 01 epithalamium 0 002 @ 06383659 n 0000 ~ 07053364 n 0000 | an ode honoring a bride and bridegroom -06383934 10 n 02 Horatian_ode 0 Sapphic_ode 0 001 @ 06383659 n 0000 | an ode with several stanzas -06384034 10 n 02 Pindaric_ode 0 Pindaric 0 001 @ 06383659 n 0000 | an ode form used by Pindar; has triple groups of triple units -06384165 10 n 01 choral_ode 0 001 @ 06383659 n 0000 | ode sung by the chorus in classical Greek drama -06384269 10 n 01 canto 0 002 @ 06392001 n 0000 #p 06377442 n 0000 | a major division of a long poem -06384371 10 n 02 envoy 0 envoi 0 001 @ 07052291 n 0000 | a brief stanza concluding certain forms of poetry -06384480 10 n 01 quatrain 0 003 @ 07052291 n 0000 ~ 06384593 n 0000 ~ 06385997 n 0000 | a stanza of four lines -06384593 10 n 01 elegiac_stanza 0 001 @ 06384480 n 0000 | a quatrain in iambic pentameter with abab rhyme scheme -06384708 10 n 02 verse 1 verse_line 0 012 @ 07012534 n 0000 #p 06377442 n 0000 + 01702514 v 0101 + 01702514 v 0102 ~ 06384995 n 0000 ~ 06385080 n 0000 ~ 07096029 n 0000 ~ 07096142 n 0000 ~ 07096237 n 0000 ~ 07096330 n 0000 ~ 07096425 n 0000 ~ 07096569 n 0000 | a line of metrical text -06384995 10 n 01 iambic 0 001 @ 06384708 n 0000 | a verse line consisting of iambs -06385080 10 n 02 Adonic 0 Adonic_line 0 001 @ 06384708 n 0000 | a verse line with a dactyl followed by a spondee or trochee; supposedly used in laments by Adonis -06385244 10 n 01 versicle 0 002 @ 06377442 n 0000 ~ 06385434 n 0000 | a short verse said or sung by a priest or minister in public worship and followed by a response from the congregation -06385434 10 n 01 sursum_corda 0 002 @ 06385244 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a Latin versicle meaning `lift up your hearts' -06385582 10 n 01 response 3 001 @ 06316048 n 0000 | a phrase recited or sung by the congregation following a versicle by the priest or minister -06385728 10 n 01 closed_couplet 0 001 @ 06378917 n 0000 | a rhymed couplet that forms a complete syntactic unit -06385842 10 n 01 heroic_couplet 0 001 @ 06378917 n 0000 | a couplet consisting of two rhymed lines of iambic pentameter and written in an elevated style -06385997 10 n 01 heroic_stanza 0 001 @ 06384480 n 0000 | a quatrain consisting of two heroic couplets written in an elevated style; the rhyme scheme is abab -06386156 10 n 03 heroic_verse 0 heroic_meter 0 heroic 0 001 @ 06379721 n 0000 | a verse form suited to the treatment of heroic or elevated themes; dactylic hexameter or iambic pentameter -06386345 10 n 01 mock-heroic 0 001 @ 06780069 n 0000 | a satirical imitation of heroic verse -06386440 10 n 01 Spenserian_stanza 0 001 @ 07052291 n 0000 | a stanza with eight lines of iambic pentameter and a concluding Alexandrine with the rhyme pattern abab bcbc c; "the Spenserian stanza was introduced by Edmund Spenser in The Faerie Queene" -06386693 10 n 01 strophe 0 002 @ 07052291 n 0000 #p 06380726 n 0000 | one section of a lyric poem or choral ode in classical Greek drama -06386832 10 n 01 antistrophe 0 002 @ 07052291 n 0000 #p 06380726 n 0000 | the section of a choral ode answering a previous strophe in classical Greek drama; the second of two metrically corresponding sections in a poem -06387053 10 n 01 potboiler 0 001 @ 06364329 n 0000 | a literary composition of poor quality that was written quickly to make money (to boil the pot) -06387204 10 n 01 tushery 0 001 @ 06364329 n 0000 | writing of poor quality; characterized by affected choice of archaic words -06387332 10 n 01 dictation 2 002 @ 06365467 n 0000 + 00626890 v 0101 | matter that has been dictated and transcribed; a dictated passage; "he signed and mailed his dictation without bothering to read it" -06387538 10 n 01 cookie 0 003 @ 06387980 n 0000 ~ 06387727 n 0000 ~ 06387864 n 0000 | a short line of text that a web site puts on your computer's hard drive when you access the web site -06387727 10 n 01 session_cookie 0 001 @ 06387538 n 0000 | a cookie that is stored temporarily and is destroyed when you close the link -06387864 10 n 01 precision_cookie 0 001 @ 06387538 n 0000 | a cookie that is saved permanently on your hard drive -06387980 10 n 02 text 0 textual_matter 0 020 @ 06365467 n 0000 #p 06589574 n 0000 + 02925879 a 0101 ~ 06268357 n 0000 ~ 06387538 n 0000 %p 06389947 n 0000 ~ 06390512 n 0000 ~ 06390962 n 0000 ~ 06391171 n 0000 ~ 06391766 n 0000 %p 06394865 n 0000 %p 06396142 n 0000 %p 06397903 n 0000 %p 06399995 n 0000 %p 06400271 n 0000 ~ 06624161 n 0000 ~ 07012534 n 0000 ~ 07014187 n 0000 ~ 07051975 n 0000 ~ 07052291 n 0000 | the words of something written; "there were more than a thousand words of text"; "they handed out the printed text of the mayor's speech"; "he wants to reconstruct the original text" -06388579 10 n 01 text 1 002 @ 06365467 n 0000 + 02925879 a 0101 | the main body of a written work (as distinct from illustrations or footnotes etc.); "pictures made the text easier to understand" -06388777 10 n 01 machine-displayable_text 0 001 @ 06391171 n 0000 | electronic text that is stored and used in the form of a digital image -06388918 10 n 01 machine-readable_text 0 002 @ 06391171 n 0000 ~ 06262176 n 0000 | electronic text that is stored as strings of characters and that can be displayed in a variety of formats -06389109 10 n 01 typescript 0 001 @ 06365467 n 0000 | typewritten matter especially a typewritten copy of a manuscript -06389230 10 n 01 erasure 1 002 @ 05128519 n 0000 + 01548718 v 0101 | a surface area where something has been erased; "another word had been written over the erasure" -06389398 10 n 01 margin 0 002 @ 06389553 n 0000 #p 06256697 n 0000 | the blank space that surrounds the text on a page; "he jotted a note in the margin" -06389553 10 n 03 space 1 blank_space 0 place 1 005 @ 05128519 n 0000 #p 06473563 n 0000 + 01494310 v 0303 ~ 06389398 n 0000 ~ 06389753 n 0000 | a blank area; "write your name in the space provided" -06389753 10 n 04 indentation 0 indention 0 indent 1 indenture 3 003 @ 06389553 n 0000 + 01745377 v 0301 + 01745377 v 0101 | the space left between the margin and the start of an indented line -06389947 10 n 01 word_order 0 002 @ 08456993 n 0000 #p 06387980 n 0000 | the order of words in a text -06390051 10 n 01 core_dump 0 002 @ 06390227 n 0000 ;c 06128570 n 0000 | (computer science) dump of the contents of the chief registers in the CPU; usually used for debugging -06390227 10 n 01 dump 0 003 @ 06390512 n 0000 ;c 06128570 n 0000 ~ 06390051 n 0000 | (computer science) a copy of the contents of a computer storage device; sometimes used in debugging programs -06390423 10 n 01 fair_copy 0 001 @ 06390512 n 0000 | a clean copy of a corrected draft -06390512 10 n 02 copy 1 written_matter 0 004 @ 06387980 n 0000 ~ 06390227 n 0000 ~ 06390423 n 0000 ~ 06676254 n 0000 | matter to be printed; exclusive of graphical materials -06390688 10 n 02 front_matter 0 prelims 0 001 @ 06365467 n 0000 | written matter preceding the main text of a book -06390805 10 n 02 back_matter 0 end_matter 0 003 @ 06365467 n 0000 %p 06399631 n 0000 %p 06491786 n 0000 | written matter following the main text of a book -06390962 10 n 02 draft 0 draft_copy 0 002 @ 06387980 n 0000 + 01701634 v 0101 | any of the various versions in the development of a written work; "a preliminary draft"; "the final draft of the constitution" -06391171 10 n 01 electronic_text 0 003 @ 06387980 n 0000 ~ 06388777 n 0000 ~ 06388918 n 0000 | text that is in a form that computer can store or display on a computer screen -06391347 10 n 01 soft_copy 0 002 @ 06365467 n 0000 ;c 06128570 n 0000 | (computer science) matter that is in a form that a computer can store or display it on a computer screen; "he sent them soft copy of the report" -06391566 10 n 01 hard_copy 0 002 @ 06365467 n 0000 ;c 06128570 n 0000 | (computer science) matter that is held in a computer and is typed or printed on paper; "he ran off a hard copy of the report" -06391766 10 n 02 installment 1 instalment 1 003 @ 06387980 n 0000 #p 06593803 n 0000 ~ 06391902 n 0000 | a part of a published serial -06391902 10 n 02 fascicle 0 fascicule 0 001 @ 06391766 n 0000 | an installment of a printed work -06392001 10 n 02 section 0 subdivision 0 024 @ 06362953 n 0000 @ 07020895 n 0000 ;c 07020895 n 0000 ~ 06270879 n 0000 ~ 06384269 n 0000 ~ 06392660 n 0000 ~ 06392787 n 0000 ~ 06392935 n 0000 ~ 06394865 n 0000 ~ 06396142 n 0000 ~ 06396330 n 0000 ~ 06396468 n 0000 ~ 06396644 n 0000 ~ 06396812 n 0000 ~ 06396930 n 0000 ~ 06397307 n 0000 ~ 06398401 n 0000 ~ 06400271 n 0000 ~ 06433672 n 0000 ~ 06461830 n 0000 ~ 06741993 n 0000 ~ 06815970 n 0000 ~ 07039238 n 0000 ~ 07068631 n 0000 | a self-contained part of a larger composition (written or musical); "he always turns first to the business section"; "the history of this work is discussed in the next section" -06392660 10 n 01 above 0 001 @ 06392001 n 0000 | an earlier section of a written text; "for instructions refer to the above" -06392787 10 n 01 sports_section 0 003 @ 06392001 n 0000 #p 06267145 n 0000 %p 06257909 n 0000 | the section of a newspaper that reports on sports -06392935 10 n 02 article 2 clause 1 011 @ 06392001 n 0000 #p 06470073 n 0000 ;c 06520944 n 0000 + 00885082 v 0101 ~ 06393253 n 0000 ~ 06393424 n 0000 ~ 06393620 n 0000 ~ 06393800 n 0000 ~ 06394051 n 0000 ~ 06394282 n 0000 ~ 06394564 n 0000 | a separate section of a legal document (as a statute or contract or will) -06393253 10 n 01 arbitration_clause 0 002 @ 06392935 n 0000 #p 06520944 n 0000 | a clause in a contract providing for arbitration of disputes arising under the contract -06393424 10 n 01 deductible 0 002 @ 06392935 n 0000 + 00689673 a 0101 | a clause in an insurance policy that relieves the insurer of responsibility to pay the initial loss up to a stated amount -06393620 10 n 01 double_indemnity 0 001 @ 06392935 n 0000 | a clause in an insurance policy that provides for double the face value of the policy in the case of accidental death -06393800 10 n 02 escalator_clause 0 escalator 0 001 @ 06392935 n 0000 | a clause in a contract that provides for an increase or a decrease in wages or prices or benefits etc. depending on certain conditions (as a change in the cost of living index) -06394051 10 n 01 joker 0 001 @ 06392935 n 0000 | an inconspicuous clause in a document or bill that affects its meaning in a way that is not immediately apparent; "when I demanded my money he showed me the joker in the contract" -06394282 10 n 01 reserve_clause 0 002 @ 06392935 n 0000 #p 06520944 n 0000 | a clause that used to be part of the contract with a professional athlete extending the contract for a year beyond its expiration; "the reserve clause was used to bind players to a particular ball club" -06394564 10 n 01 rider 0 003 @ 06392935 n 0000 #p 06536853 n 0000 #p 06564387 n 0000 | a clause that is appended to a legislative bill -06394701 10 n 01 body 0 003 @ 06598915 n 0000 #p 07220773 n 0000 #p 07238694 n 0000 | the central message of a communication; "the body of the message was short" -06394865 10 n 01 book 3 062 @ 06392001 n 0000 #p 06387980 n 0000 ~i 06432376 n 0000 ~i 06432715 n 0000 ~i 06433035 n 0000 ~i 06433249 n 0000 ~i 06433475 n 0000 ~i 06433923 n 0000 ~i 06434165 n 0000 ~i 06434368 n 0000 ~i 06434650 n 0000 ~i 06434826 n 0000 ~i 06435004 n 0000 ~i 06435198 n 0000 ~i 06435651 n 0000 ~i 06435916 n 0000 ~i 06436183 n 0000 ~i 06436443 n 0000 ~i 06436717 n 0000 ~i 06436939 n 0000 ~i 06437137 n 0000 ~i 06437308 n 0000 ~i 06437531 n 0000 ~i 06437824 n 0000 ~i 06438126 n 0000 ~i 06438290 n 0000 ~i 06438477 n 0000 ~i 06438748 n 0000 ~i 06438995 n 0000 ~i 06439253 n 0000 ~i 06439408 n 0000 ~i 06439560 n 0000 ~i 06439712 n 0000 ~i 06439924 n 0000 ~i 06440102 n 0000 ~i 06440313 n 0000 ~i 06440489 n 0000 ~i 06440663 n 0000 ~i 06440937 n 0000 ~i 06441195 n 0000 ~i 06441464 n 0000 ~i 06441607 n 0000 ~i 06441803 n 0000 ~i 06441973 n 0000 ~i 06442239 n 0000 ~i 06442405 n 0000 ~ 06442616 n 0000 ~i 06447897 n 0000 ~i 06458685 n 0000 ~i 06458836 n 0000 ~i 06459016 n 0000 ~i 06459173 n 0000 ~i 06459323 n 0000 ~i 06459450 n 0000 ~i 06459681 n 0000 ~i 06459834 n 0000 ~i 06459978 n 0000 ~i 06460167 n 0000 ~i 06460295 n 0000 ~i 06460524 n 0000 ~i 06460776 n 0000 ~i 06460926 n 0000 | a major division of a long written composition; "the book of Isaiah" -06396142 10 n 01 chapter 0 002 @ 06392001 n 0000 #p 06387980 n 0000 | a subdivision of a written work; usually numbered and titled; "he read a chapter every night before falling asleep" -06396330 10 n 01 episode 1 001 @ 06392001 n 0000 | a brief section of a literary or dramatic work that forms part of a connected series -06396468 10 n 01 spot 0 001 @ 06392001 n 0000 | a section of an entertainment that is assigned to a specific performer or performance; "they changed his spot on the program" -06396644 10 n 01 spot 1 001 @ 06392001 n 0000 | a short section or illustration (as between radio or tv programs or in a magazine) that is often used for advertising -06396812 10 n 01 insert 0 001 @ 06392001 n 0000 | a folded section placed between the leaves of another publication -06396930 10 n 01 introduction 0 009 @ 06392001 n 0000 #p 07220773 n 0000 #p 07238694 n 0000 ~ 06397171 n 0000 ~ 06397476 n 0000 ~ 06397903 n 0000 ~ 06398090 n 0000 ~ 06398270 n 0000 ~ 07009421 n 0000 | the first section of a communication -06397171 10 n 01 exordium 0 002 @ 06396930 n 0000 ;c 06170498 n 0000 | (rhetoric) the introductory section of an oration or discourse -06397307 10 n 01 narration 2 003 @ 06392001 n 0000 ;c 06170498 n 0000 + 00953216 v 0102 | (rhetoric) the second section of an oration in which the facts are set forth -06397476 10 n 01 opening 0 003 @ 06396930 n 0000 ~ 06397645 n 0000 ~ 06397789 n 0000 | the initial part of the introduction; "the opening established the basic theme" -06397645 10 n 01 teaser 2 002 @ 06397476 n 0000 ;u 07075172 n 0000 | an attention-getting opening presented at the start of a television show -06397789 10 n 01 salutation 2 002 @ 06397476 n 0000 + 00899597 v 0101 | word of greeting used to begin a letter -06397903 10 n 03 foreword 0 preface 0 prolusion 0 004 @ 06396930 n 0000 #p 06387980 n 0000 + 00126339 a 0202 + 00901799 v 0202 | a short introductory essay preceding the text of a book -06398090 10 n 01 preamble 0 003 @ 06396930 n 0000 #p 06470073 n 0000 + 00902144 v 0101 | a preliminary introduction to a statute or constitution (usually explaining its purpose) -06398270 10 n 01 prolegomenon 0 001 @ 06396930 n 0000 | a preliminary discussion inserted at the beginning of a book or treatise -06398401 10 n 05 conclusion 0 end 0 close 0 closing 0 ending 1 012 @ 06392001 n 0000 #p 07220773 n 0000 #p 07238694 n 0000 + 02610628 v 0402 + 02735418 v 0201 + 01620854 v 0201 + 02609764 v 0201 ~ 06373991 n 0000 ~ 06398760 n 0000 ~ 06398963 n 0000 ~ 06399126 n 0000 ~ 07039478 n 0000 | the last section of a communication; "in conclusion I want to say..." -06398760 10 n 02 epilogue 0 epilog 0 002 @ 06398401 n 0000 #p 06362953 n 0000 | a short passage added at the end of a literary work; "the epilogue told what eventually happened to the main characters" -06398963 10 n 02 epilogue 1 epilog 1 001 @ 06398401 n 0000 | a short speech (often in verse) addressed directly to the audience by an actor at the end of a play -06399126 10 n 01 peroration 0 004 @ 06398401 n 0000 #p 07241551 n 0000 ;c 06170498 n 0000 + 01051698 v 0101 | (rhetoric) the concluding section of an oration; "he summarized his main points in his peroration" -06399337 10 n 01 appendix 0 003 @ 06399631 n 0000 ~ 06399870 n 0000 ~ 06544657 n 0000 | supplementary material that is collected and appended at the back of a book -06399503 10 n 02 sequel 0 continuation 0 001 @ 06399631 n 0000 | a part added to a book or play that continues and extends it -06399631 10 n 03 addendum 0 supplement 0 postscript 1 006 @ 06365467 n 0000 #p 06390805 n 0000 + 01328705 v 0203 + 00049879 a 0201 ~ 06399337 n 0000 ~ 06399503 n 0000 | textual matter that is added onto a publication; usually at the end -06399870 10 n 01 shirttail 0 002 @ 06399337 n 0000 #p 06269130 n 0000 | a brief addendum at the end of a newspaper article -06399995 10 n 01 paragraph 0 006 @ 06362953 n 0000 #p 06387980 n 0000 + 10397694 n 0101 + 01699539 v 0101 + 01699700 v 0101 + 02469443 v 0101 | one of several distinct subdivisions of a text intended to separate ideas; the beginning is usually marked by a new indented line -06400271 10 n 01 passage 0 008 @ 06392001 n 0000 #p 06387980 n 0000 ~ 06400510 n 0000 ~ 06401004 n 0000 ~ 06401107 n 0000 ~ 06401222 n 0000 ~ 06401328 n 0000 ~ 07172557 n 0000 | a section of text; particularly a section of medium length -06400510 10 n 04 excerpt 0 excerption 0 extract 0 selection 0 009 @ 06400271 n 0000 + 00677021 v 0302 + 00677021 v 0101 ~ 06400849 n 0000 ~i 06453119 n 0000 ~ 06612538 n 0000 ~ 06612649 n 0000 ~ 06612865 n 0000 ~ 06613056 n 0000 | a passage selected from a larger work; "he presented excerpts from William James' philosophical writings" -06400849 10 n 01 chrestomathy 0 001 @ 06400510 n 0000 | a selection of passages from different authors that is compiled as an aid in learning a language -06401004 10 n 01 locus_classicus 0 001 @ 06400271 n 0000 | an authoritative and often-quoted passage -06401107 10 n 01 place 0 001 @ 06400271 n 0000 | the passage that is being read; "he lost his place on the page" -06401222 10 n 01 purple_passage 0 001 @ 06400271 n 0000 | a passage full of ornate and flowery language -06401328 10 n 01 transition 0 006 @ 06400271 n 0000 ~ 06401526 n 0000 ~ 06401787 n 0000 ~ 06618035 n 0000 ~ 06618234 n 0000 ~ 06618427 n 0000 | a passage that connects a topic to one that follows -06401526 10 n 01 flashback 0 004 @ 06401328 n 0000 ;c 06364641 n 0000 ! 06401787 n 0101 + 02004701 v 0102 | a transition (in literary or theatrical works or films) to an earlier event or scene that interrupts the normal chronological development of the story -06401787 10 n 01 flash-forward 0 003 @ 06401328 n 0000 ;c 06364641 n 0000 ! 06401526 n 0101 | a transition (in literary or theatrical works or films) to a later event or scene that interrupts the normal chronological development of the story -06402031 10 n 02 diary 0 journal 1 003 @ 06362953 n 0000 + 10011486 n 0101 ~ 06402202 n 0000 | a daily written record of (usually personal) experiences and observations -06402202 10 n 02 web_log 0 blog 0 001 @ 06402031 n 0000 | a shared on-line journal where people can post diary entries about their personal experiences and hobbies; "postings on a blog are usually in chronological order" -06402425 10 n 02 capitalization 0 capitalisation 0 003 @ 06359877 n 0000 + 01692266 v 0202 + 01692266 v 0101 | writing in capital letters -06402565 10 n 02 typing 0 typewriting 0 007 @ 06359877 n 0000 + 01004692 v 0202 + 01004692 v 0101 ~ 06402770 n 0000 ~ 06402871 n 0000 ~ 06402970 n 0000 ~ 06403107 n 0000 | writing done with a typewriter -06402770 10 n 01 double-spacing 0 001 @ 06402565 n 0000 | typing that leaves alternate lines blank -06402871 10 n 01 single-spacing 0 001 @ 06402565 n 0000 | typing that does not leave lines blank -06402970 10 n 01 triple-spacing 0 002 @ 06402565 n 0000 + 01005654 v 0101 | typing that leaves two lines blank between lines of typing -06403107 10 n 02 touch_typing 0 touch_system 0 001 @ 06402565 n 0000 | typewriting in which the fingers are trained to hit particular keys; typist can read and type at the same time -06403291 10 n 01 printing 1 001 @ 06359877 n 0000 | text handwritten in the style of printed matter -06403393 10 n 03 handwriting 0 hand 0 script 2 008 @ 06359877 n 0000 ;c 00614730 n 0000 + 02938361 a 0301 + 01005209 v 0101 ~ 06350127 n 0000 ~ 06350274 n 0000 ~ 06403969 n 0000 ~ 06404147 n 0000 | something written by hand; "she recognized his handwriting"; "his hand was illegible" -06403679 10 n 02 hieroglyph 1 hieroglyphic 1 003 @ 06359877 n 0000 + 02742403 a 0201 + 02742403 a 0102 | writing that resembles hieroglyphics (usually by being illegible) -06403852 10 n 01 skywriting 0 001 @ 06359877 n 0000 | writing formed in the sky by smoke released from an airplane -06403969 10 n 03 calligraphy 0 penmanship 0 chirography 0 005 @ 06403393 n 0000 + 10564660 n 0203 + 02909651 a 0102 + 09889170 n 0102 + 09889170 n 0101 | beautiful handwriting -06404147 10 n 04 scribble 0 scratch 0 scrawl 0 cacography 0 005 @ 06403393 n 0000 + 01747203 v 0302 + 01747203 v 0101 ~ 06404322 n 0000 ~ 06404416 n 0000 | poor handwriting -06404322 10 n 01 chicken_scratch 0 001 @ 06404147 n 0000 | cramped or illegible handwriting -06404416 10 n 01 squiggle 1 002 @ 06404147 n 0000 + 02313676 a 0101 | an illegible scrawl; "his signature was just a squiggle but only he could make that squiggle" -06404582 10 n 01 signature 0 008 @ 06333653 n 0000 + 00996485 v 0101 ~ 06404806 n 0000 ~ 06404907 n 0000 ~ 06405020 n 0000 ~ 06405198 n 0000 ~ 06405589 n 0000 %p 06890688 n 0000 | your name written in your own handwriting -06404806 10 n 01 allograph 1 001 @ 06404582 n 0000 | a signature written by one person for another -06404907 10 n 02 autograph 2 John_Hancock 0 002 @ 06404582 n 0000 + 00997133 v 0101 | a person's own signature -06405020 10 n 02 countersignature 0 countersign 0 003 @ 06404582 n 0000 + 00997432 v 0201 + 00997432 v 0101 | a second confirming signature endorsing a document already signed -06405198 10 n 02 endorsement 4 indorsement 4 004 @ 06404582 n 0000 + 00997794 v 0202 + 00997794 v 0101 ~ 06405423 n 0000 | a signature that validates something; "the cashier would not cash the check without an endorsement" -06405423 10 n 02 blank_endorsement 0 endorsement_in_blank 0 001 @ 06405198 n 0000 | an endorsement on commercial paper naming no payee and so payable to the bearer -06405589 10 n 01 sign_manual 0 001 @ 06404582 n 0000 | the signature of a sovereign on an official document -06405699 10 n 02 inscription 0 lettering 0 004 @ 06362953 n 0000 ~ 06406177 n 0000 ~ 06406547 n 0000 ~ 06406625 n 0000 | letters inscribed (especially words engraved or carved) on something -06405891 10 n 01 Rosetta_Stone 0 001 @i 04313628 n 0000 | a part of an inscribed granite stela that was originally about six feet tall and was set up in 196 BC; the inscriptions in hieroglyphics and Demotic and Greek gave the first clues to the decipherment of Egyptian hieroglyphics -06406177 10 n 01 superscription 0 003 @ 06405699 n 0000 + 01692096 v 0101 + 01691927 v 0101 | an inscription written above something else -06406317 10 n 02 dedication 0 inscription 1 004 @ 06253690 n 0000 ;c 07020895 n 0000 ;c 00903559 n 0000 + 00887142 v 0101 | a short message (as in a book or musical work or on a photograph) dedicating it to someone or something -06406547 10 n 01 epigraph 0 001 @ 06405699 n 0000 | an engraved inscription -06406625 10 n 01 epitaph 0 001 @ 06405699 n 0000 | an inscription on a tombstone or monument in memory of the person buried there -06406757 10 n 01 epitaph 1 001 @ 06688522 n 0000 | a summary statement of commemoration for a dead person -06406865 10 n 01 festschrift 0 001 @ 06688522 n 0000 | a collection of writings published in honor of a scholar -06406979 10 n 02 manuscript 0 ms 1 001 @ 06362953 n 0000 | the form of a literary work submitted for publication -06407094 10 n 01 autograph 0 003 @ 06362953 n 0000 + 00997133 v 0101 ~ 06407221 n 0000 | something written by one's own hand -06407221 10 n 02 manuscript 1 holograph 0 004 @ 06407094 n 0000 ~ 06407372 n 0000 ~ 06407514 n 0000 ~ 06407733 n 0000 | handwritten book or document -06407372 10 n 02 codex 0 leaf-book 0 001 @ 06407221 n 0000 | an unbound manuscript of some ancient classic (as distinguished from a scroll) -06407514 10 n 01 palimpsest 0 001 @ 06407221 n 0000 | a manuscript (usually written on papyrus or parchment) on which more than one text has been written with the earlier writing incompletely erased and still visible -06407733 10 n 02 scroll 0 roll 1 005 @ 06407221 n 0000 + 00124854 v 0101 ~i 06407915 n 0000 ~ 06408239 n 0000 ~ 06408442 n 0000 | a document that can be rolled up (as for storage) -06407915 10 n 01 Dead_Sea_scrolls 0 002 @i 06407733 n 0000 ;c 06449735 n 0000 | (Old Testament) a collection of written scrolls (containing nearly all of the Old Testament) found in a cave near the Dead Sea in the late 1940s; "the Dead Sea Scrolls provide information about Judaism and the Bible around the time of Jesus" -06408239 10 n 01 Megillah 0 002 @ 06407733 n 0000 ;c 06232880 n 0000 | (Judaism) the scroll of parchment that contains the biblical story of Esther; traditionally read in synagogues to celebrate Purim -06408442 10 n 01 Torah 2 002 @ 06407733 n 0000 ;c 06232880 n 0000 | (Judaism) the scroll of parchment on which the first five books of the Hebrew Scripture is written; is used in a synagogue during services -06408651 10 n 01 treatise 0 004 @ 06362953 n 0000 ~ 06409085 n 0000 ~ 06409290 n 0000 ~ 06409448 n 0000 | a formal exposition -06408779 10 n 02 adaptation 0 version 2 003 @ 06362953 n 0000 ~ 06408990 n 0000 ~ 07093759 n 0000 | a written work (as a novel) that has been recast in a new form; "the play is an adaptation of a short novel" -06408990 10 n 01 modernization 0 001 @ 06408779 n 0000 | a modernized version (as of a play) -06409085 10 n 02 dissertation 0 thesis 1 002 @ 06408651 n 0000 + 00814621 v 0103 | a treatise advancing a new point of view resulting from research; usually a requirement for an advanced academic degree -06409290 10 n 02 tract 0 pamphlet 0 002 @ 06408651 n 0000 + 10395605 n 0201 | a brief treatise on a subject of interest; published in the form of a booklet -06409448 10 n 01 monograph 0 001 @ 06408651 n 0000 | a detailed and documented treatise on a particular subject -06409562 10 n 01 essay 0 006 @ 06362953 n 0000 + 10064405 n 0101 ~ 06409752 n 0000 ~ 06410070 n 0000 ~ 06410187 n 0000 ~ 06410283 n 0000 | an analytic or interpretive literary composition -06409752 10 n 04 composition 0 paper 1 report 2 theme 1 002 @ 06409562 n 0000 ~ 06409937 n 0000 | an essay (especially one written as an assignment); "he got an A on his composition" -06409937 10 n 01 term_paper 0 001 @ 06409752 n 0000 | a composition intended to indicate a student's progress during a school term -06410070 10 n 01 disquisition 0 001 @ 06409562 n 0000 | an elaborate analytical or explanatory essay or discussion -06410187 10 n 01 memoir 1 001 @ 06409562 n 0000 | an essay on a scientific or scholarly topic -06410283 10 n 01 thanatopsis 0 001 @ 06409562 n 0000 | an essay expressing a view on the subject of death -06410391 10 n 04 review 1 critique 0 critical_review 0 review_article 0 006 @ 06374587 n 0000 + 00855512 v 0202 + 00855512 v 0101 ~ 06410655 n 0000 ~ 06410776 n 0000 ~ 06693744 n 0000 | an essay or article that gives a critical evaluation (as of a book or play) -06410655 10 n 01 book_review 0 001 @ 06410391 n 0000 | a critical review of a book (usually a recently published book) -06410776 10 n 01 notice 4 002 @ 06410391 n 0000 + 01058574 v 0102 | a short critical review; "the play received good notices" -06410904 10 n 01 book 0 029 @ 06589574 n 0000 + 06413889 n 0101 %p 06256041 n 0000 %p 06345131 n 0000 ~ 06411592 n 0000 ~ 06411753 n 0000 ~ 06411883 n 0000 ~ 06412350 n 0000 ~ 06412610 n 0000 ~ 06412771 n 0000 ~ 06413260 n 0000 ~ 06413459 n 0000 ~ 06413579 n 0000 ~ 06413889 n 0000 ~ 06414372 n 0000 ~ 06415791 n 0000 ~ 06415922 n 0000 ~ 06416049 n 0000 ~ 06416206 n 0000 ~ 06416452 n 0000 ~ 06416598 n 0000 ~ 06416946 n 0000 ~ 06417598 n 0000 ~ 06418006 n 0000 ~ 06418146 n 0000 ~ 07282497 n 0000 ~i 07282929 n 0000 ~i 07283065 n 0000 ~i 07283198 n 0000 | a written work or composition that has been published (printed on pages bound together); "I am reading a good book on economics" -06411592 10 n 01 authority 0 002 @ 06410904 n 0000 ~ 06412213 n 0000 | an authoritative written work; "this book is the final authority on the life of Milton" -06411753 10 n 01 curiosa 0 002 @ 06410904 n 0000 ;u 06295235 n 0000 | books on strange or unusual subjects (especially erotica) -06411883 10 n 02 formulary 0 pharmacopeia 0 002 @ 06410904 n 0000 ;c 06054892 n 0000 | (pharmacology) a book containing a compilation of pharmaceutical products with their formulas and methods of preparation; "postexposure prophylaxis is an integral part of the pharmacopeia in preventing severe disease after acute infections" -06412213 10 n 01 last_word 1 001 @ 06411592 n 0000 | an authoritative statement; "my doctor has the last word on the medicines I take" -06412350 10 n 02 trade_book 0 trade_edition 0 003 @ 06410904 n 0000 ! 06414372 n 0203 ~ 06412497 n 0000 | a book intended for general readership -06412497 10 n 02 best_seller 0 bestseller 0 001 @ 06412350 n 0000 | a book that has had a large and rapid sale -06412610 10 n 01 bestiary 0 001 @ 06410904 n 0000 | a medieval book (usually illustrated) with allegorical and amusing descriptions of real and fabled animals -06412771 10 n 01 catechism 0 006 @ 06410904 n 0000 + 09901337 n 0101 + 02982288 a 0101 + 02981935 a 0101 + 00787515 v 0101 + 00787515 v 0102 | an elementary book summarizing the principles of a Christian religion; written as questions and answers -06413020 10 n 02 cookbook 0 cookery_book 0 001 @ 06417598 n 0000 | a book of recipes and cooking directions -06413130 10 n 01 instruction_book 0 001 @ 06417598 n 0000 | a book of directions for using or operating some piece of equipment -06413260 10 n 02 pop-up_book 0 pop-up 0 001 @ 06410904 n 0000 | a book (usually for children) that contains one or more pages such that a three-dimensional structure rises up when a page is opened -06413459 10 n 01 storybook 0 001 @ 06410904 n 0000 | a book containing a collection of stories (usually for children) -06413579 10 n 01 tome 0 001 @ 06410904 n 0000 | a (usually) large and scholarly book -06413666 10 n 01 volume 0 002 @ 06589574 n 0000 #m 07996689 n 0000 | a publication that is one of a set of several similar publications; "the third volume was missing"; "he asked for the 1989 volume of the Annual Review" -06413889 10 n 05 booklet 0 brochure 0 folder 0 leaflet 0 pamphlet 1 008 @ 06410904 n 0000 + 10395605 n 0501 + 06256229 n 0401 + 07009946 n 0102 + 06410904 n 0101 + 02870092 n 0101 ~ 06414151 n 0000 ~ 06414267 n 0000 | a small book usually having a paper cover -06414151 10 n 01 blue_book 2 001 @ 06413889 n 0000 | a blue booklet used in universities for writing examinations -06414267 10 n 01 ticket_book 0 001 @ 06413889 n 0000 | a book of tickets that can be torn out and used -06414372 10 n 05 textbook 0 text 2 text_edition 0 schoolbook 0 school_text 0 006 @ 06410904 n 0000 ! 06412350 n 0302 ~ 06414727 n 0000 ~ 06414849 n 0000 ~ 06414948 n 0000 ~ 06415061 n 0000 | a book prepared for use in schools or colleges; "his economics textbook is in its tenth edition"; "the professor wrote the text that he assigned students to buy" -06414727 10 n 01 crammer 0 003 @ 06414372 n 0000 + 00605783 v 0101 + 00407146 v 0101 | a textbook designed for cramming -06414849 10 n 01 introduction 2 001 @ 06414372 n 0000 | a basic or elementary instructional text -06414948 10 n 01 primer 0 003 @ 06414372 n 0000 ~ 06415323 n 0000 ~ 06421538 n 0000 | an introductory textbook -06415061 10 n 01 reader 0 002 @ 06414372 n 0000 ~ 06415186 n 0000 | one of a series of texts for students learning to read -06415186 10 n 01 McGuffey_Eclectic_Readers 0 001 @ 06415061 n 0000 | readers that combined lessons in reading with moralistic messages -06415323 10 n 01 speller 0 001 @ 06414948 n 0000 | an introductory textbook to teach spelling -06415419 10 n 01 notebook 0 004 @ 02870092 n 0000 ~ 06415584 n 0000 ~ 06415688 n 0000 ~ 06416766 n 0000 | a book with blank pages for recording notes or memoranda -06415584 10 n 01 commonplace_book 0 001 @ 06415419 n 0000 | a notebook in which you enter memorabilia -06415688 10 n 01 jotter 0 002 @ 06415419 n 0000 + 01006056 v 0102 | a small notebook for rough notes -06415791 10 n 01 workbook 0 001 @ 06410904 n 0000 | a student's book or booklet containing problems with spaces for solving them -06415922 10 n 01 copybook 0 001 @ 06410904 n 0000 | a book containing models of good penmanship; used in teaching penmanship -06416049 10 n 02 appointment_book 0 appointment_calendar 0 001 @ 06410904 n 0000 | a book containing a calendar and space to keep a record of appointments -06416206 10 n 02 catalog 0 catalogue 0 006 @ 06410904 n 0000 + 01626844 v 0201 + 00652622 v 0201 + 01626844 v 0102 + 00652622 v 0102 ~ 06674947 n 0000 | a book or pamphlet containing an enumeration of things; "he found it in the Sears catalog" -06416452 10 n 01 phrase_book 0 001 @ 06410904 n 0000 | a book containing common expressions in a foreign language along with their translations -06416598 10 n 01 playbook 0 001 @ 06410904 n 0000 | a book containing the scripts of one or more dramatic plays; "the 1963 playbook leaves out the whole first scene" -06416766 10 n 01 playbook 1 001 @ 06415419 n 0000 | a notebook containing descriptions and diagrams of the plays that a team has practiced (especially an American football team) -06416946 10 n 02 prayer_book 0 prayerbook 0 004 @ 06410904 n 0000 ~ 06417096 n 0000 ~ 06417279 n 0000 ~ 06417467 n 0000 | a book containing prayers -06417096 10 n 01 breviary 0 002 @ 06416946 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a book of prayers to be recited daily certain priests and members of religious orders -06417279 10 n 01 missal 0 002 @ 06416946 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a book containing all the prayers and responses needed to celebrate Mass throughout the year -06417467 10 n 02 Psalter 0 Book_of_Psalms 1 002 @ 06416946 n 0000 #p 06457171 n 0000 | a collection of Psalms for liturgical use -06417598 10 n 04 reference_book 0 reference 4 reference_work 0 book_of_facts 0 011 @ 06410904 n 0000 + 00877083 v 0202 ~ 06413020 n 0000 ~ 06413130 n 0000 ~ 06418558 n 0000 ~ 06418693 n 0000 ~ 06421301 n 0000 ~ 06423619 n 0000 ~ 06426468 n 0000 ~ 06427086 n 0000 ~ 06427387 n 0000 | a book to which you can refer for authoritative facts; "he contributed articles to the basic reference work on that topic" -06418006 10 n 01 review_copy 0 001 @ 06410904 n 0000 | a copy of a newly published book that is sent for review to a writer or periodical -06418146 10 n 01 songbook 0 002 @ 06410904 n 0000 ~ 06418258 n 0000 | a book containing a collection of songs -06418258 10 n 03 hymnal 0 hymnbook 0 hymnary 0 001 @ 06418146 n 0000 | a songbook containing a collection of hymns -06418375 10 n 01 prayer_wheel 0 001 @ 07189130 n 0000 | a cylinder with prayers written on it; each revolution counts as uttering the prayers; used especially by Buddhists in Tibet -06418558 10 n 01 source_book 0 001 @ 06417598 n 0000 | a collection of historically important documents published together as a book -06418693 10 n 01 wordbook 0 006 @ 06417598 n 0000 ~ 06418901 n 0000 ~ 06420573 n 0000 ~ 06420678 n 0000 ~ 06420781 n 0000 ~ 06421016 n 0000 | a reference book containing words (usually with their meanings) -06418901 10 n 02 dictionary 0 lexicon 0 011 @ 06418693 n 0000 + 02886869 a 0201 %p 06300823 n 0000 ~ 06419234 n 0000 ~ 06419354 n 0000 ~ 06419503 n 0000 ~ 06419628 n 0000 ~ 06419757 n 0000 ~ 06419912 n 0000 ~ 06420053 n 0000 ~ 06420219 n 0000 | a reference book containing an alphabetical list of words with information about them -06419234 10 n 01 bilingual_dictionary 0 001 @ 06418901 n 0000 | a dictionary giving equivalent words in two languages -06419354 10 n 02 desk_dictionary 0 collegiate_dictionary 0 001 @ 06418901 n 0000 | an abridged dictionary of a size convenient to hold in the hand -06419503 10 n 01 etymological_dictionary 0 001 @ 06418901 n 0000 | a dictionary giving the historical origins of each word -06419628 10 n 01 gazetteer 0 002 @ 06418901 n 0000 #p 06427086 n 0000 | a geographical dictionary (as at the back of an atlas) -06419757 10 n 02 learner's_dictionary 0 school_dictionary 0 001 @ 06418901 n 0000 | a dictionary specially written for those learning a foreign language -06419912 10 n 02 pocket_dictionary 0 little_dictionary 0 001 @ 06418901 n 0000 | a dictionary that is small enough to carry in your pocket -06420053 10 n 02 spell-checker 0 spelling_checker 0 001 @ 06418901 n 0000 | an electronic dictionary in a word processor that can be used to catch misspelled words -06420219 10 n 02 unabridged_dictionary 0 unabridged 0 002 @ 06418901 n 0000 ~i 06420424 n 0000 | a dictionary that has not been shortened by the omitting terms or definitions; a comprehensive dictionary -06420424 10 n 03 Oxford_English_Dictionary 0 O.E.D. 0 OED 0 001 @i 06420219 n 0000 | an unabridged dictionary constructed on historical principles -06420573 10 n 01 onomasticon 0 001 @ 06418693 n 0000 | a list of proper nouns naming persons or places -06420678 10 n 01 vocabulary 0 001 @ 06418693 n 0000 | a listing of the words used in some enterprise -06420781 10 n 02 glossary 0 gloss 1 003 @ 06418693 n 0000 + 00960961 v 0201 + 00961329 v 0201 | an alphabetical list of technical terms in some specialized field of knowledge; usually published as an appendix to a text on that field -06421016 10 n 02 thesaurus 0 synonym_finder 0 002 @ 06418693 n 0000 ~ 06421154 n 0000 | a book containing a classified list of synonyms -06421154 10 n 02 word_finder 0 wordfinder 0 001 @ 06421016 n 0000 | a thesaurus organized to help you find the word you want but cannot think of -06421301 10 n 03 handbook 0 enchiridion 0 vade_mecum 0 005 @ 06417598 n 0000 ~ 06421685 n 0000 ~ 06422643 n 0000 ~ 06422740 n 0000 ~ 06423496 n 0000 | a concise reference book providing specific information about a subject or location -06421538 10 n 01 hornbook 0 001 @ 06414948 n 0000 | a primer that provides instruction in the rudiments or basic skills of a branch of knowledge -06421685 10 n 01 manual 0 006 @ 06421301 n 0000 ~ 06421844 n 0000 ~ 06422032 n 0000 ~ 06422144 n 0000 ~ 06422364 n 0000 ~ 06422488 n 0000 | a small handbook -06421844 10 n 02 consuetudinary 0 consuetudinal 0 001 @ 06421685 n 0000 | a manual describing the customs of a particular group (especially the ceremonial practices of a monastic order) -06422032 10 n 01 grimoire 0 001 @ 06421685 n 0000 | a manual of black magic (for invoking spirits and demons) -06422144 10 n 04 instruction_manual 0 instructions 0 book_of_instructions 0 operating_instructions 0 001 @ 06421685 n 0000 | a manual usually accompanying a technical device and explaining how to install or operate it -06422364 10 n 01 reference_manual 0 001 @ 06421685 n 0000 | a manual containing information organized in a summary manner -06422488 10 n 01 sex_manual 0 001 @ 06421685 n 0000 | a manual containing instruction in sexual techniques; intended to enhance the reader's sexual life -06422643 10 n 01 bible 1 001 @ 06421301 n 0000 | a book regarded as authoritative in its field -06422740 10 n 02 guidebook 0 guide 0 004 @ 06421301 n 0000 ~ 06422912 n 0000 ~ 06423090 n 0000 ~ 06423378 n 0000 | something that offers basic information or instruction -06422912 10 n 01 field_guide 0 001 @ 06422740 n 0000 | a guidebook describing natural objects of some type that might be encountered in the field; "a field guide to mushrooms" -06423090 10 n 01 roadbook 0 001 @ 06422740 n 0000 | a guidebook describing the roads of a country; contains maps and (sometimes) a gazetteer -06423233 10 n 01 baedeker 0 001 @ 06423378 n 0000 | any of a series of travel guidebooks published by the German firm founded by Karl Baedeker -06423378 10 n 02 travel_guidebook 0 itinerary 0 002 @ 06422740 n 0000 ~ 06423233 n 0000 | a guidebook for travelers -06423496 10 n 02 reckoner 0 ready_reckoner 0 001 @ 06421301 n 0000 | a handbook of tables used to facilitate computation -06423619 10 n 01 directory 0 003 @ 06417598 n 0000 ~ 06423754 n 0000 ~ 06507711 n 0000 | an alphabetical list of names and addresses -06423754 10 n 04 phonebook 0 phone_book 0 telephone_book 0 telephone_directory 0 003 @ 06423619 n 0000 ~ 07251148 n 0000 ~ 07251373 n 0000 | a directory containing an alphabetical list of telephone subscribers and their telephone numbers -06423994 10 n 03 ballistic_identification 0 ballistic_fingerprinting 0 bullet_fingerprinting 0 001 @ 06885083 n 0000 | identification of the gun that fired a bullet from an analysis of the unique marks that every gun makes on the bullet it fires and on the shell ejected from it -06424275 10 n 03 biometric_identification 0 biometric_authentication 0 identity_verification 0 010 @ 06885083 n 0000 ;c 00759694 n 0000 ~ 06643883 n 0000 ~ 06644105 n 0000 ~ 06644393 n 0000 ~ 06644658 n 0000 ~ 06645458 n 0000 ~ 06645623 n 0000 ~ 06645831 n 0000 ~ 06646022 n 0000 | the automatic identification of living individuals by using their physiological and behavioral characteristics; "negative identification can only be accomplished through biometric identification"; "if a pin or password is lost or forgotten it can be changed and reissued but a biometric identification cannot" -06424869 10 n 01 key 1 001 @ 06885389 n 0000 | a generic term for any device whose possession entitles the holder to a means of access; "a safe-deposit box usually requires two keys to open it" -06425065 10 n 02 number 2 identification_number 0 009 @ 06885389 n 0000 + 00235918 v 0101 + 00948071 v 0102 + 00946755 v 0101 + 00948853 v 0101 ~ 06425534 n 0000 ~ 06425808 n 0000 ~ 06425960 n 0000 ~ 06887441 n 0000 | a numeral or string of numerals that is used for identification; "she refused to give them her Social Security number" -06425404 10 n 01 business_card 0 001 @ 06477371 n 0000 | a card on which are printed the person's name and business affiliation -06425534 10 n 03 bank_identification_number 0 BIN 0 ABA_transit_number 0 001 @ 06425065 n 0000 | an identification number consisting of a two-part code assigned to banks and savings associations; the first part shows the location and the second identifies the bank itself -06425808 10 n 02 license_number 0 registration_number 0 001 @ 06425065 n 0000 | the number on the license plate that identifies the car that bears it -06425960 10 n 01 Social_Security_number 0 002 @ 06425065 n 0000 ;r 09044862 n 0000 | the number of a particular individual's Social Security account -06426111 10 n 03 phone_number 0 telephone_number 0 number 3 001 @ 06791372 n 0000 | the number is used in calling a particular telephone; "he has an unlisted number" -06426279 10 n 01 almanac 0 001 @ 06426468 n 0000 | an annual publication containing tabular information in a particular field or fields arranged according to the calendar of a given year -06426468 10 n 03 annual 0 yearly 0 yearbook 0 004 @ 06417598 n 0000 ~ 06426279 n 0000 ~ 06426655 n 0000 ~ 06426865 n 0000 | a reference book that is published regularly once every year -06426655 10 n 02 almanac 1 farmer's_calendar 0 001 @ 06426468 n 0000 | an annual publication including weather forecasts and other miscellaneous information arranged according to the calendar of a given year -06426865 10 n 01 ephemeris 0 001 @ 06426468 n 0000 | an annual publication containing astronomical tables that give the positions of the celestial bodies throughout the year; "today computers calculate the ephemerides" -06427086 10 n 03 atlas 0 book_of_maps 0 map_collection 0 003 @ 06417598 n 0000 %p 06419628 n 0000 ~ 06427240 n 0000 | a collection of maps in book form -06427240 10 n 02 dialect_atlas 0 linguistic_atlas 0 001 @ 06427086 n 0000 | an atlas showing the distribution of distinctive linguistic features -06427387 10 n 04 encyclopedia 0 cyclopedia 0 encyclopaedia 0 cyclopaedia 0 002 @ 06417598 n 0000 ~ 06427710 n 0000 | a reference work (often in several volumes) containing articles on various topics (often arranged in alphabetical order) dealing with the entire range of human knowledge or with some particular specialty -06427710 10 n 01 book_of_knowledge 0 001 @ 06427387 n 0000 | an elementary encyclopedia dealing with general knowledge -06427831 10 n 02 editing 0 redaction 0 008 @ 06362953 n 0000 ;c 06364641 n 0000 + 00200397 v 0202 + 00200397 v 0101 ~ 06428105 n 0000 ~ 06428216 n 0000 ~ 06428537 n 0000 ~ 06428792 n 0000 | putting something (as a literary work or a legislative bill) into acceptable form -06428105 10 n 01 copy_editing 0 001 @ 06427831 n 0000 | putting something into a form suitable for a printer -06428216 10 n 03 deletion 0 excision 0 cut 1 004 @ 06427831 n 0000 + 01549420 v 0204 + 01549187 v 0101 + 00200863 v 0103 | the omission that is made when an editorial change shortens a written passage; "an editor's deletions frequently upset young authors"; "both parties agreed on the excision of the proposed clause" -06428537 10 n 01 correction 1 002 @ 06427831 n 0000 ~ 06428646 n 0000 | something substituted for an error -06428646 10 n 01 erasure 0 002 @ 06428537 n 0000 + 01548718 v 0101 | a correction made by erasing; "there were many erasures in the typescript" -06428792 10 n 02 rewriting 0 revising 0 005 @ 06427831 n 0000 + 00996102 v 0201 + 00995838 v 0101 ~ 06428976 n 0000 ~ 06429145 n 0000 | editing that involves writing something again -06428976 10 n 04 revision 1 revisal 0 revise 0 rescript 1 004 @ 06428792 n 0000 + 00996102 v 0301 + 00996102 v 0201 + 00996102 v 0101 | the act of rewriting something -06429145 10 n 03 rewording 0 recasting 0 rephrasing 0 004 @ 06428792 n 0000 + 00961736 v 0302 + 00961736 v 0103 ~ 06429316 n 0000 | changing a particular word or phrase -06429316 10 n 02 paraphrase 0 paraphrasis 0 004 @ 06429145 n 0000 + 00353001 a 0101 + 00961736 v 0101 ~ 06429483 n 0000 | rewording for the purpose of clarification -06429483 10 n 01 translation 1 001 @ 06429316 n 0000 | rewording something in less technical terminology -06429590 10 n 04 sacred_text 0 sacred_writing 0 religious_writing 0 religious_text 0 031 @ 06362953 n 0000 ~ 06430385 n 0000 ~i 06430784 n 0000 ~i 06430996 n 0000 ~i 06431156 n 0000 ~i 06431496 n 0000 ~ 06431740 n 0000 ~ 06435394 n 0000 ~i 06451891 n 0000 ~i 06452223 n 0000 ~i 06452363 n 0000 ~i 06452601 n 0000 ~i 06453324 n 0000 ~ 06453723 n 0000 ~ 06455138 n 0000 ~ 06455497 n 0000 ~i 06455775 n 0000 ~ 06455990 n 0000 ~ 06457045 n 0000 ~ 06457952 n 0000 ~ 06461077 n 0000 ~ 06461406 n 0000 ~i 06461609 n 0000 ~ 06462219 n 0000 ~i 06462656 n 0000 ~i 06462807 n 0000 ~ 06464419 n 0000 ~i 06466253 n 0000 ~ 06466479 n 0000 ~ 06466677 n 0000 ~i 06466787 n 0000 | writing that is venerated for the worship of a deity -06430309 10 n 01 screed 0 001 @ 06362953 n 0000 | a long piece of writing -06430385 10 n 02 scripture 1 sacred_scripture 0 002 @ 06429590 n 0000 ~ 06430537 n 0000 | any writing that is regarded as sacred by a religious group -06430537 10 n 01 canon 2 004 @ 06430385 n 0000 + 03001653 a 0101 + 03001653 a 0102 + 09891730 n 0101 | a collection of books accepted as holy scripture especially the books of the Bible recognized by any Christian church as genuine and inspired -06430784 10 n 03 Adi_Granth 0 Granth 0 Granth_Sahib 0 002 @i 06429590 n 0000 ;c 06239931 n 0000 | the principal sacred text of Sikhism contains hymns and poetry as well as the teachings of the first five gurus -06430996 10 n 02 Avesta 0 Zend-Avesta 0 002 @i 06429590 n 0000 + 02926519 a 0101 | a collection of Zoroastrian texts gathered during the 4th or 6th centuries -06431156 10 n 03 Bhagavad-Gita 0 Bhagavadgita 0 Gita 0 003 @i 06429590 n 0000 #p 06431496 n 0000 ;c 06236802 n 0000 | (Hinduism) the sacred `song of God' composed about 200 BC and incorporated into the Mahabharata (a Sanskrit epic); contains a discussion between Krishna and the Indian hero Arjuna on human nature and the purpose of life -06431496 10 n 03 Mahabharata 0 Mahabharatam 0 Mahabharatum 0 003 @i 06429590 n 0000 ;c 06236802 n 0000 %p 06431156 n 0000 | (Hinduism) a sacred epic Sanskrit poem of India dealing in many episodes with the struggle between two rival families -06431740 10 n 09 Bible 0 Christian_Bible 0 Book 4 Good_Book 0 Holy_Scripture 0 Holy_Writ 0 Scripture 0 Word_of_God 0 Word 7 022 @ 06429590 n 0000 + 02854521 a 0702 + 02854747 a 0101 + 02854521 a 0101 ~ 06448283 n 0000 ~i 06448594 n 0000 ~i 06448868 n 0000 ~i 06449095 n 0000 ~i 06449254 n 0000 ~i 06449361 n 0000 ~i 06449477 n 0000 ~i 06449620 n 0000 %p 06449735 n 0000 %p 06453723 n 0000 %p 06453849 n 0000 -c 06525588 n 0000 -c 07171785 n 0000 -c 07171940 n 0000 %p 07172557 n 0000 -c 09539394 n 0000 -c 11455386 n 0000 -c 00135578 v 0000 | the sacred writings of the Christian religions; "he went to carry the Word to the heathen" -06432376 10 n 02 Genesis 0 Book_of_Genesis 0 004 @i 06394865 n 0000 #p 06451891 n 0000 #p 06449735 n 0000 -c 04460634 n 0000 | the first book of the Old Testament: tells of Creation; Adam and Eve; the Fall of Man; Cain and Abel; Noah and the flood; God's covenant with Abraham; Abraham and Isaac; Jacob and Esau; Joseph and his brothers -06432715 10 n 02 Exodus 0 Book_of_Exodus 0 003 @i 06394865 n 0000 #p 06451891 n 0000 #p 06449735 n 0000 | the second book of the Old Testament: tells of the departure of the Israelites out of slavery in Egypt led by Moses; God gave them the Ten Commandments and the rest of Mosaic law on Mount Sinai during the Exodus -06433035 10 n 02 Leviticus 0 Book_of_Leviticus 0 004 @i 06394865 n 0000 #p 06451891 n 0000 #p 06449735 n 0000 + 02755399 a 0101 | the third book of the Old Testament; contains Levitical law and ritual precedents -06433249 10 n 02 Numbers 0 Book_of_Numbers 0 003 @i 06394865 n 0000 #p 06451891 n 0000 #p 06449735 n 0000 | the fourth book of the Old Testament; contains a record of the number of Israelites who followed Moses out of Egypt -06433475 10 n 02 Deuteronomy 0 Book_of_Deuteronomy 0 003 @i 06394865 n 0000 #p 06451891 n 0000 %p 06433672 n 0000 | the fifth book of the Old Testament; contains a second statement of Mosaic law -06433672 10 n 02 mezuzah 0 mezuza 0 002 @ 06392001 n 0000 #p 06433475 n 0000 | religious texts from Deuteronomy inscribed on parchment and rolled up in a case that is attached to the doorframe of many Jewish households in accordance with Jewish law -06433923 10 n 03 Joshua 0 Josue 0 Book_of_Joshua 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | a book in the Old Testament describing how Joshua led the Israelites into Canaan (the Promised Land) after the death of Moses -06434165 10 n 02 Judges 0 Book_of_Judges 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | a book of the Old Testament that tells the history of Israel under the leaders known as judges -06434368 10 n 02 Ruth 0 Book_of_Ruth 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | a book of the Old Testament that tells the story of Ruth who was not an Israelite but who married an Israelite and who stayed with her mother-in-law Naomi after her husband died -06434650 10 n 02 I_Samuel 0 1_Samuel 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | the first of two books in the Old Testament that tell of Saul and David -06434826 10 n 02 II_Samuel 0 2_Samuel 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | the second of two books of the Old Testament that tell of Saul and David -06435004 10 n 02 I_Kings 0 1_Kings 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | the first of two Old Testament books telling the histories of the kings of Judah and Israel -06435198 10 n 02 II_Kings 0 2_Kings 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | the second of two Old Testament books telling the histories of the kings of Judah and Israel -06435394 10 n 01 Paralipomenon 0 004 @ 06429590 n 0000 ;c 06449735 n 0000 %p 06435651 n 0000 %p 06435916 n 0000 | (Old Testament) an obsolete name for the Old Testament books of I Chronicles and II Chronicles which were regarded as supplementary to Kings -06435651 10 n 02 I_Chronicles 0 1_Chronicles 0 004 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 #p 06435394 n 0000 | the first of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC -06435916 10 n 02 II_Chronicles 0 2_Chronicles 0 004 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 #p 06435394 n 0000 | the second of two Old Testament books telling the history of Judah and Israel until the return from the Babylonian Captivity in 536 BC -06436183 10 n 02 Ezra 0 Book_of_Ezra 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book telling of a rabbi's efforts in the 5th century BC to reconstitute Jewish law and worship in Jerusalem after the Babylonian Captivity -06436443 10 n 02 Nehemiah 0 Book_of_Nehemiah 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book telling how a Jewish official at the court of Artaxerxes I in 444 BC became a leader in rebuilding Jerusalem after the Babylonian Captivity -06436717 10 n 02 Esther 0 Book_of_Esther 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book telling of a beautiful Jewess who became queen of Persia and saved her people from massacre -06436939 10 n 02 Job 0 Book_of_Job 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | a book in the Old Testament containing Job's pleas to God about his afflictions and God's reply -06437137 10 n 02 Psalms 0 Book_of_Psalms 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book consisting of a collection of 150 Psalms -06437308 10 n 02 Proverbs 0 Book_of_Proverbs 0 004 @i 06394865 n 0000 #p 06453324 n 0000 #p 06461077 n 0000 #p 06449735 n 0000 | an Old Testament book consisting of proverbs from various Israeli sages (including Solomon) -06437531 10 n 02 Ecclesiastes 0 Book_of_Ecclesiastes 0 004 @i 06394865 n 0000 #p 06453324 n 0000 #p 06461077 n 0000 #p 06449735 n 0000 | an Old Testament book consisting of reflections on the vanity of human life; is traditionally attributed to Solomon but probably was written about 250 BC -06437824 10 n 04 Song_of_Songs 0 Song_of_Solomon 0 Canticle_of_Canticles 0 Canticles 0 004 @i 06394865 n 0000 #p 06453324 n 0000 #p 06461077 n 0000 #p 06449735 n 0000 | an Old Testament book consisting of a collection of love poems traditionally attributed to Solomon but actually written much later -06438126 10 n 02 Isaiah 0 Book_of_Isaiah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book consisting of Isaiah's prophecies -06438290 10 n 02 Jeremiah 0 Book_of_Jeremiah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | a book in the Old Testament containing the oracles of the prophet Jeremiah -06438477 10 n 02 Lamentations 0 Book_of_Lamentations 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book lamenting the desolation of Judah after the destruction of Jerusalem in 586 BC; traditionally attributed to the prophet Jeremiah -06438748 10 n 03 Ezekiel 0 Ezechiel 0 Book_of_Ezekiel 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book containing Ezekiel's prophecies of the downfall of Jerusalem and Judah and their subsequent restoration -06438995 10 n 03 Daniel 0 Book_of_Daniel 0 Book_of_the_Prophet_Daniel 0 003 @i 06394865 n 0000 #p 06453324 n 0000 #p 06449735 n 0000 | an Old Testament book that tells of the apocalyptic visions and the experiences of Daniel in the court of Nebuchadnezzar -06439253 10 n 02 Hosea 0 Book_of_Hosea 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Hosea's prophecies -06439408 10 n 02 Joel 0 Book_of_Joel 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Joel's prophecies -06439560 10 n 02 Amos 0 Book_of_Amos 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Amos's prophecies -06439712 10 n 03 Obadiah 0 Abdias 0 Book_of_Obadiah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Obadiah's prophecies; the shortest book in the Christian Bible -06439924 10 n 02 Jonah 0 Book_of_Jonah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | a book in the Old Testament that tells the story of Jonah and the whale -06440102 10 n 03 Micah 0 Micheas 0 Book_of_Micah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling the prophecies of Micah foretelling the destruction of Jerusalem -06440313 10 n 02 Nahum 0 Book_of_Nahum 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Nahum's prophecy of the fall of Nineveh -06440489 10 n 03 Habakkuk 0 Habacuc 0 Book_of_Habakkuk 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling Habakkuk's prophecies -06440663 10 n 03 Zephaniah 0 Sophonias 0 Book_of_Zephaniah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling the prophecies of Zephaniah which are concerned mainly with the approaching judgment by God upon the sinners of Judah -06440937 10 n 03 Haggai 0 Aggeus 0 Book_of_Haggai 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling the prophecies of Haggai which are concerned mainly with rebuilding the temples after the Babylonian Captivity -06441195 10 n 03 Zechariah 0 Zacharias 0 Book_of_Zachariah 0 003 @i 06394865 n 0000 #p 06452601 n 0000 #p 06449735 n 0000 | an Old Testament book telling the prophecies of Zechariah which are concerned mainly with the renewal of Israel after the Babylonian Captivity -06441464 10 n 03 Malachi 0 Malachias 0 Book_of_Malachi 0 001 @i 06394865 n 0000 | an Old Testament book containing the prophecies of Malachi -06441607 10 n 02 Matthew 0 Gospel_According_to_Matthew 0 003 @i 06455138 n 0000 @i 06394865 n 0000 #p 06453849 n 0000 | one of the Gospels in the New Testament; includes the Sermon on the Mount -06441803 10 n 02 Mark 6 Gospel_According_to_Mark 0 003 @i 06455138 n 0000 @i 06394865 n 0000 #p 06453849 n 0000 | the shortest of the four Gospels in the New Testament -06441973 10 n 03 Luke 0 Gospel_of_Luke 0 Gospel_According_to_Luke 0 005 @i 06455138 n 0000 @i 06394865 n 0000 #p 06453849 n 0000 -c 05628031 n 0000 -c 07037059 n 0000 | one of the four Gospels in the New Testament; contains details of Jesus's birth and early life -06442239 10 n 02 John 0 Gospel_According_to_John 0 003 @i 06455138 n 0000 @i 06394865 n 0000 #p 06453849 n 0000 | the last of the four Gospels in the New Testament -06442405 10 n 02 Acts_of_the_Apostles 0 Acts 0 002 @i 06394865 n 0000 #p 06453849 n 0000 | a New Testament book describing the development of the early church from Christ's Ascension to Paul's sojourn at Rome -06442616 10 n 01 Epistle 0 023 @ 06394865 n 0000 #p 06453849 n 0000 ~i 06443163 n 0000 ~i 06443398 n 0000 ~i 06443658 n 0000 ~i 06443922 n 0000 ~i 06444148 n 0000 ~i 06444458 n 0000 ~i 06444711 n 0000 ~i 06444959 n 0000 ~i 06445214 n 0000 ~i 06445473 n 0000 ~i 06445729 n 0000 ~i 06445989 n 0000 ~i 06446217 n 0000 ~i 06446476 n 0000 ~i 06446711 n 0000 ~i 06446860 n 0000 ~i 06447039 n 0000 ~i 06447221 n 0000 ~i 06447400 n 0000 ~i 06447582 n 0000 ~i 06447763 n 0000 | a book of the New Testament written in the form of a letter from an Apostle -06443163 10 n 03 Epistle_of_Paul_the_Apostle_to_the_Romans 0 Epistle_to_the_Romans 0 Romans 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing an exposition of the doctrines of Saint Paul; written in AD 58 -06443398 10 n 03 First_Epistle_of_Paul_the_Apostle_to_the_Corinthians 0 First_Epistle_to_the_Corinthians 0 I_Corinthians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing the first epistle from Saint Paul to the church at Corinth -06443658 10 n 03 Second_Epistle_of_Paul_the_Apostle_to_the_Corinthians 0 Second_Epistle_to_the_Corinthians 0 II_Corinthians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing the second epistle from Saint Paul to the church at Corinth -06443922 10 n 03 Epistle_of_Paul_the_Apostle_to_the_Galatians 0 Epistle_to_the_Galatians 0 Galatians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing the epistle from Saint Paul to the Galatians -06444148 10 n 03 Epistle_of_Paul_the_Apostle_to_the_Ephesians 0 Epistle_to_the_Ephesians 0 Ephesians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing the epistle from Saint Paul to the Ephesians which explains the divine plan for the world and the consummation of this in Christ -06444458 10 n 03 Epistle_of_Paul_the_Apostle_to_the_Philippians 0 Epistle_to_the_Philippians 0 Philippians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing an epistle from Saint Paul to the church at Philippi in Macedonia -06444711 10 n 03 Epistle_of_Paul_the_Apostle_to_the_Colossians 0 Epistle_to_the_Colossians 0 Colossians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing an epistle from Saint Paul to the Colossians in ancient Phrygia -06444959 10 n 03 First_Epistle_of_Paul_the_Apostle_to_the_Thessalonians 0 First_Epistle_to_the_Thessalonians 0 I_Thessalonians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing Saint Paul's first epistle to the Thessalonians -06445214 10 n 03 Second_Epistle_of_Paul_the_Apostle_to_the_Thessalonians 0 Second_Epistle_to_the_Thessalonians 0 II_Thessalonians 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing Saint Paul's second epistle to the Thessalonians -06445473 10 n 03 First_Epistle_of_Paul_the_Apostle_to_Timothy 0 First_Epistle_to_Timothy 0 I_Timothy 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing Saint Paul's first epistle to Timothy; contains advice on pastoral matters -06445729 10 n 03 Second_Epistle_of_Paul_the_Apostle_to_Timothy 0 Second_Epistle_to_Timothy 0 II_Timothy 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing Saint Paul's second epistle to Timothy; contains advice on pastoral matters -06445989 10 n 03 Epistle_of_Paul_the_Apostle_to_Titus 0 Epistle_to_Titus 0 Titus 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book containing Saint Paul's epistle to Titus; contains advice on pastoral matters -06446217 10 n 03 Epistle_of_Paul_the_Apostle_to_Philemon 0 Epistle_to_Philemon 0 Philemon 0 002 @i 06442616 n 0000 @i 06453849 n 0000 | a New Testament book containing an epistle from Saint Paul to Philemon asking Philemon to forgive the slave for escaping -06446476 10 n 02 Epistle_to_the_Hebrews 0 Hebrews 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book traditionally included among the epistle of Saint Paul but now generally considered not to have been written by him -06446711 10 n 02 Epistle_of_James 0 James 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book attributed to Saint James the Apostle -06446860 10 n 02 First_Epistle_of_Peter 0 I_Peter 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | the first New Testament book traditionally attributed to Saint Peter the Apostle -06447039 10 n 02 Second_Epistle_of_Peter 0 II_Peter 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | the second New Testament book traditionally attributed to Saint Peter the Apostle -06447221 10 n 02 First_Epistle_of_John 0 I_John 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | the first New Testament epistle traditionally attributed to Saint John the Apostle -06447400 10 n 02 Second_Epistel_of_John 0 II_John 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | the second New Testament epistle traditionally attributed to Saint John the Apostle -06447582 10 n 02 Third_Epistel_of_John 0 III_John 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | the third New Testament epistle traditionally attributed to Saint John the Apostle -06447763 10 n 02 Epistle_of_Jude 0 Jude 0 002 @i 06442616 n 0000 #p 06453849 n 0000 | a New Testament book attributed to Saint Jude -06447897 10 n 04 Revelation 0 Revelation_of_Saint_John_the_Divine 0 Apocalypse 0 Book_of_Revelation 0 005 @i 06394865 n 0000 #p 06453849 n 0000 + 01882292 a 0301 -c 05144880 n 0000 + 02144243 v 0101 | the last book of the New Testament; contains visionary descriptions of heaven and of conflicts between good and evil and of the end of the world; attributed to Saint John the Apostle -06448283 10 n 01 family_Bible 0 001 @ 06431740 n 0000 | a large Bible with pages to record marriages and births -06448397 10 n 01 Septuagint 0 001 @i 06449735 n 0000 | the oldest Greek version of the Old Testament; said to have been translated from the Hebrew by Jewish scholars at the request of Ptolemy II -06448594 10 n 01 Vulgate 0 002 @i 06431740 n 0000 ;c 08083599 n 0000 | the Latin edition of the Bible translated from Hebrew and Greek mainly by St. Jerome at the end of the 4th century; as revised in 1592 it was adopted as the official text for the Roman Catholic Church -06448868 10 n 06 Douay_Bible 0 Douay_Version 0 Douay-Rheims_Bible 0 Douay-Rheims_Version 0 Rheims-Douay_Bible 0 Rheims-Douay_Version 0 001 @i 06431740 n 0000 | an English translation of the Vulgate by Roman Catholic scholars -06449095 10 n 03 Authorized_Version 0 King_James_Version 0 King_James_Bible 0 001 @i 06431740 n 0000 | an English translation of the Bible published in 1611 -06449254 10 n 01 Revised_Version 0 001 @i 06431740 n 0000 | a British revision of the Authorized Version -06449361 10 n 01 New_English_Bible 0 001 @i 06431740 n 0000 | a modern English version of the Bible and Apocrypha -06449477 10 n 02 American_Standard_Version 0 American_Revised_Version 0 001 @i 06431740 n 0000 | a revised version of the King James Version -06449620 10 n 01 Revised_Standard_Version 0 001 @i 06431740 n 0000 | a revision of the American Standard Version -06449735 10 n 01 Old_Testament 0 103 @ 06544142 n 0000 #p 06431740 n 0000 -c 03444376 n 0000 -c 03649288 n 0000 -c 06407915 n 0000 %p 06432376 n 0000 %p 06432715 n 0000 %p 06433035 n 0000 %p 06433249 n 0000 %p 06433923 n 0000 %p 06434165 n 0000 %p 06434368 n 0000 %p 06434650 n 0000 %p 06434826 n 0000 %p 06435004 n 0000 %p 06435198 n 0000 -c 06435394 n 0000 %p 06435651 n 0000 %p 06435916 n 0000 %p 06436183 n 0000 %p 06436443 n 0000 %p 06436717 n 0000 %p 06436939 n 0000 %p 06437137 n 0000 %p 06437308 n 0000 %p 06437531 n 0000 %p 06437824 n 0000 %p 06438126 n 0000 %p 06438290 n 0000 %p 06438477 n 0000 %p 06438748 n 0000 %p 06438995 n 0000 %p 06439253 n 0000 %p 06439408 n 0000 %p 06439560 n 0000 %p 06439712 n 0000 %p 06439924 n 0000 %p 06440102 n 0000 %p 06440313 n 0000 %p 06440489 n 0000 %p 06440663 n 0000 %p 06440937 n 0000 %p 06441195 n 0000 ~i 06448397 n 0000 %p 06451891 n 0000 %p 06457952 n 0000 %p 06466787 n 0000 -c 07418146 n 0000 -c 07860629 n 0000 -c 08483935 n 0000 -c 08795654 n 0000 -c 08795974 n 0000 -c 09539517 n 0000 -c 09586553 n 0000 -c 09586743 n 0000 -c 09586994 n 0000 -c 09587217 n 0000 -c 09587409 n 0000 -c 10158222 n 0000 -c 10158319 n 0000 -c 10218390 n 0000 -c 10219778 n 0000 -c 10273669 n 0000 -c 10273906 n 0000 -c 10588860 n 0000 -c 10599068 n 0000 -c 10806841 n 0000 -c 10838288 n 0000 -c 10843425 n 0000 -c 10845050 n 0000 -c 10922019 n 0000 -c 10923700 n 0000 -c 10929116 n 0000 -c 10961087 n 0000 -c 10961372 n 0000 -c 11005972 n 0000 -c 11049128 n 0000 -c 11073586 n 0000 -c 11074140 n 0000 -c 11074573 n 0000 -c 11074870 n 0000 -c 11082652 n 0000 -c 11082842 n 0000 -c 11089868 n 0000 -c 11091863 n 0000 -c 11092541 n 0000 -c 11093469 n 0000 -c 11177370 n 0000 -c 11193392 n 0000 -c 11202063 n 0000 -c 11202477 n 0000 -c 11251384 n 0000 -c 11255775 n 0000 -c 11258353 n 0000 -c 11279648 n 0000 -c 11279874 n 0000 -c 11281555 n 0000 -c 11282613 n 0000 -c 11307759 n 0000 -c 11357660 n 0000 -c 13118398 n 0000 -c 14458763 n 0000 -c 15050161 n 0000 | the collection of books comprising the sacred scripture of the Hebrews and recording their history as the chosen people; the first half of the Christian Bible -06451891 10 n 03 Torah 0 Pentateuch 0 Laws 0 008 @i 06429590 n 0000 #p 06452363 n 0000 #p 06449735 n 0000 %p 06432376 n 0000 %p 06432715 n 0000 %p 06433035 n 0000 %p 06433249 n 0000 %p 06433475 n 0000 | the first of three divisions of the Hebrew Scriptures comprising the first five books of the Hebrew Bible considered as a unit -06452223 10 n 01 Torah 1 001 @i 06429590 n 0000 | the whole body of the Jewish sacred writings and tradition including the oral tradition -06452363 10 n 03 Tanakh 0 Tanach 0 Hebrew_Scripture 0 004 @i 06429590 n 0000 %p 06451891 n 0000 %p 06452601 n 0000 %p 06453324 n 0000 | the Jewish scriptures which consist of three divisions--the Torah and the Prophets and the Writings -06452601 10 n 02 Prophets 0 Nebiim 0 022 @i 06429590 n 0000 #p 06452363 n 0000 %p 06433923 n 0000 %p 06434165 n 0000 %p 06434650 n 0000 %p 06434826 n 0000 %p 06435004 n 0000 %p 06435198 n 0000 %p 06438126 n 0000 %p 06438290 n 0000 %p 06438748 n 0000 %p 06439253 n 0000 %p 06439408 n 0000 %p 06439560 n 0000 %p 06439712 n 0000 %p 06439924 n 0000 %p 06440102 n 0000 %p 06440313 n 0000 %p 06440489 n 0000 %p 06440663 n 0000 %p 06440937 n 0000 %p 06441195 n 0000 | the second of three divisions of the Hebrew Scriptures -06453119 10 n 04 Haftorah 0 Haftarah 0 Haphtorah 0 Haphtarah 0 001 @i 06400510 n 0000 | a short selection from the Prophets read on every Sabbath in a Jewish synagogue following a reading from the Torah -06453324 10 n 03 Hagiographa 0 Ketubim 0 Writings 1 015 @i 06429590 n 0000 #p 06452363 n 0000 %p 06434368 n 0000 %p 06435651 n 0000 %p 06435916 n 0000 %p 06436183 n 0000 %p 06436443 n 0000 %p 06436717 n 0000 %p 06436939 n 0000 %p 06437137 n 0000 %p 06437308 n 0000 %p 06437531 n 0000 %p 06437824 n 0000 %p 06438477 n 0000 %p 06438995 n 0000 | the third of three divisions of the Hebrew Scriptures -06453723 10 n 01 Testament 1 002 @ 06429590 n 0000 #p 06431740 n 0000 | either of the two main parts of the Christian Bible -06453849 10 n 01 New_Testament 0 056 @ 06544142 n 0000 #p 06431740 n 0000 -c 06373090 n 0000 %p 06441607 n 0000 %p 06441803 n 0000 %p 06441973 n 0000 %p 06442239 n 0000 %p 06442405 n 0000 %p 06442616 n 0000 %p 06443163 n 0000 %p 06443398 n 0000 %p 06443658 n 0000 %p 06443922 n 0000 %p 06444148 n 0000 %p 06444458 n 0000 %p 06444711 n 0000 %p 06444959 n 0000 %p 06445214 n 0000 %p 06445473 n 0000 %p 06445729 n 0000 %p 06445989 n 0000 ~i 06446217 n 0000 %p 06446476 n 0000 %p 06446711 n 0000 %p 06446860 n 0000 %p 06447039 n 0000 %p 06447221 n 0000 %p 06447400 n 0000 %p 06447582 n 0000 %p 06447763 n 0000 %p 06447897 n 0000 %p 06455138 n 0000 -c 07311822 n 0000 -c 07312018 n 0000 -c 07358377 n 0000 -c 08486538 n 0000 -c 08506932 n 0000 -c 09491324 n 0000 -c 09607055 n 0000 -c 09798811 n 0000 -c 10818088 n 0000 -c 10832908 n 0000 -c 10886361 n 0000 -c 11078982 n 0000 -c 11085924 n 0000 -c 11087359 n 0000 -c 11091706 n 0000 -c 11093674 n 0000 -c 11094055 n 0000 -c 11144604 n 0000 -c 11164671 n 0000 -c 11172181 n 0000 -c 11225661 n 0000 -c 11232050 n 0000 -c 15171307 n 0000 -c 15263283 n 0000 | the collection of books of the Gospels, Acts of the Apostles, the Pauline and other epistles, and Revelation; composed soon after Christ's death; the second half of the Christian Bible -06455138 10 n 03 Gospel 0 Gospels 0 evangel 0 010 @ 06429590 n 0000 #p 06453849 n 0000 + 02923005 a 0301 + 02922814 a 0301 ~i 06441607 n 0000 ~i 06441803 n 0000 ~i 06441973 n 0000 ~i 06442239 n 0000 %p 06455497 n 0000 ~ 06455682 n 0000 | the four books in the New Testament (Matthew, Mark, Luke, and John) that tell the story of Christ's life and teachings -06455497 10 n 02 Synoptic_Gospels 0 Synoptics 0 002 @ 06429590 n 0000 #p 06455138 n 0000 | the first three Gospels which describe events in Christ's life from a similar point of view -06455682 10 n 01 Word_of_God 1 001 @ 06455138 n 0000 | the message of the Gospel of Christ -06455775 10 n 01 Book_of_Mormon 0 001 @i 06429590 n 0000 | a sacred text revealed to Joseph Smith in 1830 by an ancient prophet Mormon; supposedly a record of ancient peoples of America translated by Joseph Smith -06455990 10 n 01 prayer 1 012 @ 06429590 n 0000 + 00759944 v 0101 ~ 06456276 n 0000 ~i 06456384 n 0000 ~i 06456515 n 0000 ~i 06456642 n 0000 ~i 06456759 n 0000 ~i 06456945 n 0000 ~i 06457442 n 0000 ~i 06457612 n 0000 ~ 07033613 n 0000 ~ 07034035 n 0000 | a fixed text used in praying -06456276 10 n 01 Agnus_Dei 1 001 @ 06455990 n 0000 | a liturgical prayer beginning with these Latin words -06456384 10 n 01 Angelus 0 001 @i 06455990 n 0000 | a prayer said 3 times a day by Roman Catholics in memory of the Annunciation -06456515 10 n 02 Ave_Maria 0 Hail_Mary 0 001 @i 06455990 n 0000 | a salutation to the Virgin Mary now used in prayers to her -06456642 10 n 02 Canticle_of_Simeon 0 Nunc_dimittis 0 001 @i 06455990 n 0000 | the prayer of Simeon (Luke 2:29-32) -06456759 10 n 02 Evening_Prayer 0 evensong 0 002 @i 06455990 n 0000 ;c 08087981 n 0000 | (Anglican Church) a daily evening service with prayers prescribed in the Book of Common Prayer -06456945 10 n 01 Kol_Nidre 0 001 @i 06455990 n 0000 | the opening prayer on the eve of Yom Kippur -06457045 10 n 01 service_book 0 002 @ 06429590 n 0000 ~i 06457171 n 0000 | a book setting forth the forms of church service -06457171 10 n 01 Book_of_Common_Prayer 0 003 @i 06457045 n 0000 %p 06417467 n 0000 %p 06457442 n 0000 | the Anglican service book of the Church of England; has had several revisions since the Reformation and is widely admired for the dignity and beauty of its language -06457442 10 n 01 Litany 0 002 @i 06455990 n 0000 #p 06457171 n 0000 | a prayer consisting of a series of invocations by the priest with responses from the congregation -06457612 10 n 01 Lord's_Prayer 0 003 @i 06455990 n 0000 #p 07244433 n 0000 ~i 06457796 n 0000 | the prayer that Christ gave his disciples in the Sermon on the Mount (Matthew 6:9-13) -06457796 10 n 01 Paternoster 0 002 @i 06457612 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) the Lord's Prayer in Latin; translates as `our father' -06457952 10 n 01 Apocrypha 0 019 @ 06429590 n 0000 #p 06449735 n 0000 + 02633222 a 0101 %p 06458685 n 0000 %p 06458836 n 0000 %p 06459016 n 0000 %p 06459173 n 0000 %p 06459323 n 0000 %p 06459450 n 0000 %p 06459681 n 0000 %p 06459834 n 0000 %p 06459978 n 0000 %p 06460167 n 0000 %p 06460295 n 0000 %p 06460524 n 0000 %p 06460776 n 0000 %p 06460926 n 0000 -c 10226219 n 0000 -c 11057221 n 0000 | 14 books of the Old Testament included in the Vulgate (except for II Esdras) but omitted in Jewish and Protestant versions of the Bible; eastern Christian churches (except the Coptic Church) accept all these books as canonical; the Russian Orthodox Church accepts these texts as divinely inspired but does not grant them the same status -06458685 10 n 01 Additions_to_Esther 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of text added to the Book of Esther -06458836 10 n 01 Prayer_of_Azariah_and_Song_of_the_Three_Children 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of text added to the Book of Daniel -06459016 10 n 02 Susanna 0 Book_of_Susanna 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of text added to the Book of Daniel -06459173 10 n 01 Bel_and_the_Dragon 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of text added to the Book of Daniel -06459323 10 n 02 Baruch 0 Book_of_Baruch 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book ascribed to Baruch -06459450 10 n 02 Letter_of_Jeremiah 0 Epistle_of_Jeremiah 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of a letter ascribed to Jeremiah to the Jews in exile in Babylon warning them against idolatry -06459681 10 n 02 Tobit 0 Book_of_Tobit 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book that was a popular novel for several centuries -06459834 10 n 02 Judith 0 Book_of_Judith 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book telling how Judith saved her people -06459978 10 n 02 I_Esdra 0 1_Esdras 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting of a compilation from I Chronicles and II Chronicles and Ezra and Nehemiah -06460167 10 n 02 II_Esdras 0 2_Esdras 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book of angelic revelations -06460295 10 n 04 Ben_Sira 0 Sirach 0 Ecclesiasticus 0 Wisdom_of_Jesus_the_Son_of_Sirach 0 003 @i 06394865 n 0000 #p 06461077 n 0000 #p 06457952 n 0000 | an Apocryphal book mainly of maxims (resembling Proverbs in that respect) -06460524 10 n 02 Wisdom_of_Solomon 0 Wisdom 0 003 @i 06394865 n 0000 #p 06461077 n 0000 #p 06457952 n 0000 | an Apocryphal book consisting mainly of a meditation on wisdom; although ascribed to Solomon it was probably written in the first century BC -06460776 10 n 02 I_Maccabees 0 1_Maccabees 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book describing the life of Judas Maccabaeus -06460926 10 n 02 II_Maccabees 0 2_Maccabees 0 002 @i 06394865 n 0000 #p 06457952 n 0000 | an Apocryphal book describing the life of Judas Maccabaeus -06461077 10 n 03 sapiential_book 0 wisdom_book 0 wisdom_literature 0 006 @ 06429590 n 0000 %p 06437308 n 0000 %p 06437531 n 0000 %p 06437824 n 0000 %p 06460295 n 0000 %p 06460524 n 0000 | any of the biblical books (Proverbs, Ecclesiastes, Song of Songs, Wisdom of Solomon, Ecclesiasticus) that are considered to contain wisdom -06461406 10 n 01 Pseudepigrapha 0 001 @ 06429590 n 0000 | 52 texts written between 200 BC and AD 200 but ascribed to various prophets and kings in the Hebrew scriptures; many are apocalyptic in nature -06461609 10 n 04 Koran 0 Quran 0 al-Qur'an 0 Book 5 003 @i 06429590 n 0000 + 02855055 a 0101 %p 06461830 n 0000 | the sacred writings of Islam revealed by God to the prophet Muhammad during his life at Mecca and Medina -06461830 10 n 01 sura 0 003 @ 06392001 n 0000 #p 06461609 n 0000 ~i 06462002 n 0000 | one of the sections (or chapters) in the Koran; "the Quran is divided in 114 suras" -06462002 10 n 02 Fatiha 0 Fatihah 0 001 @i 06461830 n 0000 | the first or opening sura of the Quran which is the central prayer of Islam and is used on all special occasions as well as during the five daily prayers -06462219 10 n 01 Talmudic_literature 0 005 @ 06429590 n 0000 ;c 06232880 n 0000 ~i 06462396 n 0000 ~ 06463011 n 0000 ~ 06463170 n 0000 | (Judaism) ancient rabbinical writings -06462396 10 n 01 Talmud 0 003 @i 06462219 n 0000 %p 06462656 n 0000 %p 06462807 n 0000 | the collection of ancient rabbinic writings on Jewish law and tradition (the Mishna and the Gemara) that constitute the basis of religious authority in Orthodox Judaism -06462656 10 n 01 Gemara 0 002 @i 06429590 n 0000 #p 06462396 n 0000 | the second part of the Talmud consisting primarily of commentary on the Mishna -06462807 10 n 02 Mishna 0 Mishnah 0 002 @i 06429590 n 0000 #p 06462396 n 0000 | the first part of the Talmud; a collection of early oral interpretations of the scriptures that was compiled about AD 200 -06463011 10 n 03 Haggadah 0 Haggada 0 Hagada 0 001 @ 06462219 n 0000 | Talmudic literature that does not deal with law but is still part of Jewish tradition -06463170 10 n 03 Halakah 0 Halaka 0 Halacha 0 001 @ 06462219 n 0000 | Talmudic literature that deals with law and with the interpretation of the laws on the Hebrew Scriptures -06463347 10 n 01 Sanskrit_literature 0 007 @ 06364641 n 0000 ~ 06463559 n 0000 ~ 06463786 n 0000 ~i 06464024 n 0000 ~ 06464241 n 0000 ~i 06623788 n 0000 ~ 06623997 n 0000 | Hindu literature written in Sanskrit -06463559 10 n 01 Hastinapura 0 001 @ 06463347 n 0000 | one of two classical Hindu epics; a great collection of poetry worked into and around a central heroic narrative (eight times as large as the Iliad and Odyssey combined) -06463786 10 n 01 Purana 0 002 @ 06463347 n 0000 + 02786215 a 0101 | a body of 18 works written between the first and 11th centuries and incorporating legends and speculative histories of the universe and myths and customary observances -06464024 10 n 01 Ramayana 0 001 @i 06463347 n 0000 | one of two classical Hindu epics telling of the banishment of Rama from his kingdom and the abduction of his wife by a demon and Rama's restoration to the throne -06464241 10 n 01 tantra 0 001 @ 06463347 n 0000 | any of a fairly recent class of Hindu or Buddhist religious literature concerned with ritual acts of body and speech and mind -06464419 10 n 02 Vedic_literature 0 Veda 0 008 @ 06429590 n 0000 ;c 06236802 n 0000 ;c 06969129 n 0000 + 10747294 n 0201 ~i 06464838 n 0000 ~i 06465457 n 0000 ~i 06465623 n 0000 ~i 06465780 n 0000 | (from the Sanskrit word for `knowledge') any of the most ancient sacred writings of Hinduism written in early Sanskrit; traditionally believed to comprise the Samhitas, the Brahmanas, the Aranyakas, and the Upanishads -06464838 10 n 01 Samhita 0 005 @i 06464419 n 0000 ~i 06465008 n 0000 ~i 06465139 n 0000 ~i 06465255 n 0000 ~i 06465351 n 0000 | one of four collections of sacred texts -06465008 10 n 01 Rig-Veda 0 001 @i 06464838 n 0000 | a Veda consisting of a collection of Hindu poems dating from before 2000 BC -06465139 10 n 01 Sama-Veda 0 001 @i 06464838 n 0000 | a collection of mantras and tunes for use with the Rig-Veda -06465255 10 n 01 Atharva-Veda 0 001 @i 06464838 n 0000 | a collection of mantras and formulas -06465351 10 n 01 Yajur-Veda 0 001 @i 06464838 n 0000 | a collection of sacrificial formulas and prayers -06465457 10 n 01 Brahmana 0 001 @i 06464419 n 0000 | prose works attached to the Samhitas instructing the bahmins to perform the very elaborate sacrificial rituals -06465623 10 n 01 Aranyaka 0 001 @i 06464419 n 0000 | a treatise resembling a Brahmana but to be read or expounded by anchorites in the quiet of the forest -06465780 10 n 01 Vedanga 0 001 @i 06464419 n 0000 | Vedic texts from the fifth and fourth centuries BC dealing with phonetics and ritual injunctions and linguistics and grammar and etymology and lexicography and prosody and astronomy and astrology -06466030 10 n 01 Ayurveda 0 003 @i 06362953 n 0000 ;c 06969129 n 0000 ;c 06236802 n 0000 | (Sanskrit) an ancient medical treatise summarizing the Hindu art of healing and prolonging life; sometimes regarded as a 5th Veda -06466253 10 n 01 Upanishad 0 001 @i 06429590 n 0000 | a later sacred text of Hinduism of a mystical nature dealing with metaphysical questions; "the Vedanta philosophy developed from the pantheistic views of the Upanishads" -06466479 10 n 01 mantra 0 003 @ 06429590 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | (Sanskrit) literally a `sacred utterance' in Vedism; one of a collection of orally transmitted poetic hymns -06466677 10 n 01 psalm 2 002 @ 06429590 n 0000 + 10487363 n 0101 | any sacred song used to praise the deity -06466787 10 n 01 Psalm 0 003 @i 06429590 n 0000 #p 06449735 n 0000 + 10487363 n 0101 | one of the 150 lyrical poems and prayers that comprise the Book of Psalms in the Old Testament; said to have been written by David -06467007 10 n 02 summary 0 sum-up 0 016 @ 06722453 n 0000 + 00547317 a 0104 + 01007924 v 0102 + 01007924 v 0103 ~ 06467680 n 0000 ~ 06467868 n 0000 ~ 06467996 n 0000 ~ 06468123 n 0000 ~ 06468328 n 0000 ~ 06468403 n 0000 ~ 06468523 n 0000 ~ 06468951 n 0000 ~ 06469223 n 0000 ~ 06469597 n 0000 ~ 06469694 n 0000 ~ 06469874 n 0000 | a brief statement that presents the main points in a concise form; "he gave a summary of the conclusions" -06467445 10 n 02 summarization 1 summarisation 1 005 @ 07217924 n 0000 + 02752695 v 0202 + 01007924 v 0203 + 02752695 v 0101 + 01007924 v 0102 | the act of preparing a summary (or an instance thereof); stating briefly and succinctly -06467680 10 n 02 argument 1 literary_argument 0 001 @ 06467007 n 0000 | a summary of the subject or plot of a literary work or play or movie; "the editor added the argument to the poem" -06467868 10 n 01 capitulation 0 002 @ 06467007 n 0000 ~ 06469377 n 0000 | a summary that enumerates the main parts of a topic -06467996 10 n 01 compendium 0 002 @ 06467007 n 0000 + 00547317 a 0101 | a concise but comprehensive summary of a larger work -06468123 10 n 04 condensation 0 abridgement 0 abridgment 0 capsule 0 005 @ 06467007 n 0000 + 00244416 v 0403 + 00244416 v 0404 + 00243900 v 0201 + 00244625 v 0102 | a shortened version of a written work -06468328 10 n 01 conspectus 0 001 @ 06467007 n 0000 | an overall summary -06468403 10 n 03 curriculum_vitae 0 CV 0 resume 1 001 @ 06467007 n 0000 | a summary of your academic and work history -06468523 10 n 01 line_score 0 001 @ 06467007 n 0000 | a summary of the scoring in a game (usually in tabular form) -06468640 10 n 01 brief 0 002 @ 06468951 n 0000 + 00831273 v 0101 | a condensed written summary or abstract -06468749 10 n 01 apercu 0 001 @ 06468951 n 0000 | a short synopsis -06468818 10 n 01 epitome 0 003 @ 06468951 n 0000 + 02699141 v 0102 + 02699141 v 0103 | a brief abstract (as of an article or book) -06468951 10 n 04 outline 0 synopsis 0 abstract 0 precis 0 008 @ 06467007 n 0000 + 01008437 v 0401 + 01008288 v 0301 + 02808380 a 0201 + 01006421 v 0102 ~ 06468640 n 0000 ~ 06468749 n 0000 ~ 06468818 n 0000 | a sketchy summary of the main points of an argument or theory -06469223 10 n 01 overview 0 001 @ 06467007 n 0000 | a general summary of a subject; "the treasurer gave a brief overview of the financial consequences" -06469377 10 n 03 recapitulation 0 recap 0 review 0 005 @ 06467868 n 0000 + 00696414 v 0301 + 01008903 v 0202 + 01008903 v 0101 ~ 07099965 n 0000 | a summary at the end that repeats the substance of a longer discussion -06469597 10 n 01 roundup 0 001 @ 06467007 n 0000 | a summary list; as in e.g. "a news roundup" -06469694 10 n 03 sketch 0 survey 0 resume 0 005 @ 06467007 n 0000 + 01007924 v 0304 + 00646542 v 0201 + 00525105 a 0101 + 01006421 v 0101 | short descriptive summary (of events) -06469874 10 n 03 summation 0 summing_up 0 rundown 0 004 @ 06467007 n 0000 ;c 08441203 n 0000 + 00049683 a 0101 + 02752695 v 0103 | a concluding summary (as in presenting a case before a law court) -06470073 10 n 03 document 0 written_document 0 papers 0 026 @ 06362953 n 0000 + 02896789 a 0102 + 02896789 a 0101 + 00666510 v 0101 %p 06392935 n 0000 %p 06398090 n 0000 ~ 06470922 n 0000 ~ 06471069 n 0000 ~ 06471242 n 0000 ~ 06471345 n 0000 ~ 06471737 n 0000 ~ 06472025 n 0000 ~ 06472242 n 0000 ~ 06473168 n 0000 ~ 06473381 n 0000 ~ 06473563 n 0000 ~ 06479665 n 0000 ~ 06485178 n 0000 ~ 06501141 n 0000 ~ 06501311 n 0000 ~ 06511560 n 0000 ~ 06511874 n 0000 ~ 06675122 n 0000 ~ 06675338 n 0000 ~ 06675691 n 0000 ~ 07218470 n 0000 | writing that provides information (especially information of an official nature) -06470688 10 n 01 articles_of_incorporation 0 002 @ 06479665 n 0000 #p 06471737 n 0000 | a legal document that creates a corporation; it is filed with a state by the founders of a corporation and is governed by the laws of the state -06470922 10 n 01 ballot 0 003 @ 06470073 n 0000 + 02463141 v 0101 ~ 06476573 n 0000 | a document listing the alternatives that is used in voting -06471069 10 n 01 brevet 0 002 @ 06470073 n 0000 + 02554797 v 0101 | a document entitling a commissioned officer to hold a higher rank temporarily (but without higher pay) -06471242 10 n 01 capitulation 1 001 @ 06470073 n 0000 | a document containing the terms of surrender -06471345 10 n 04 certificate 0 certification 1 credential 0 credentials 0 014 @ 06470073 n 0000 + 02444662 v 0203 + 02447793 v 0201 + 02447793 v 0101 + 02262139 v 0101 + 00804002 v 0101 ~ 06476741 n 0000 ~ 06478452 n 0000 ~ 06478582 n 0000 ~ 06478988 n 0000 ~ 06479204 n 0000 ~ 06479374 n 0000 ~ 06479494 n 0000 ~ 06544432 n 0000 | a document attesting to the truth of certain stated facts -06471737 10 n 01 charter 0 006 @ 06470073 n 0000 + 02447692 v 0101 %p 06470688 n 0000 %p 06476741 n 0000 ~ 06476899 n 0000 ~ 06477209 n 0000 | a document incorporating an institution and specifying its rights; includes the articles of incorporation and the certificate of incorporation -06472025 10 n 02 commercial_document 0 commercial_instrument 0 006 @ 06470073 n 0000 ~ 06516595 n 0000 ~ 06518068 n 0000 ~ 06518719 n 0000 ~ 06528783 n 0000 ~ 06529219 n 0000 | a document of or relating to commerce -06472242 10 n 01 confession 1 003 @ 06470073 n 0000 + 00818553 v 0103 + 00819508 v 0101 | a written document acknowledging an offense and signed by the guilty party -06472409 10 n 01 confession 3 002 @ 06789411 n 0000 ~i 06472607 n 0000 | the document that spells out the belief system of a given church (especially the Reformation churches of the 16th century) -06472607 10 n 01 Augsburg_Confession 0 001 @i 06472409 n 0000 | the document drawn up in 1555 to defend the catholicity of Lutheran doctrine and to justify innovations in Lutheran practice; is still in effect today -06472824 10 n 03 copula 0 copulative 0 linking_verb 0 003 @ 06320569 n 0000 + 00563789 a 0201 + 02984491 a 0101 | an equating verb (such as `be' or `become') that links the subject with the complement of a sentence -06473041 10 n 01 frequentative 0 001 @ 06320569 n 0000 | a verb form that serves to express frequent repetition of an action -06473168 10 n 02 copyright 0 right_of_first_publication 0 003 @ 06470073 n 0000 @ 05177285 n 0000 + 02239533 v 0101 | a document granting exclusive right to publish and sell literary or musical or artistic work -06473381 10 n 02 enclosure 0 inclosure 0 002 @ 06470073 n 0000 + 00187526 v 0102 | something (usually a supporting document) that is enclosed in an envelope with a covering letter -06473563 10 n 01 form 1 009 @ 06470073 n 0000 %p 06389553 n 0000 ~ 06473837 n 0000 ~ 06473940 n 0000 ~ 06474030 n 0000 ~ 06474122 n 0000 ~ 06476200 n 0000 ~ 06476384 n 0000 ~ 06476475 n 0000 | a printed document with spaces in which to write; "he filled out his tax form" -06473837 10 n 01 application_form 0 001 @ 06473563 n 0000 | a form to use when making an application -06473940 10 n 01 claim_form 0 001 @ 06473563 n 0000 | a form to use when filing a claim -06474030 10 n 01 order_form 0 001 @ 06473563 n 0000 | a form to use when placing an order -06474122 10 n 01 questionnaire 0 002 @ 06473563 n 0000 ~ 06474289 n 0000 | a form containing a set of questions; submitted to people to gain statistical information -06474289 10 n 02 personality_inventory 0 personality_assessment 0 003 @ 06474122 n 0000 @ 01007463 n 0000 ~ 06474603 n 0000 | a questionnaire that is supposed to yield a description of a person's personality traits; "a personality inventory is a direct test of personality, as contrasted with a projective test" -06474603 10 n 02 self-report_personality_inventory 0 self-report_inventory 0 005 @ 06474289 n 0000 ~ 06474972 n 0000 ~ 06475307 n 0000 ~ 06475589 n 0000 ~ 06475933 n 0000 | a personality inventory in which a person is asked which of a list of traits and characteristics describe her or him or to indicate which behaviors and hypothetical choices he or she would make -06474972 10 n 02 California_Personality_Inventory 0 CPI 1 001 @ 06474603 n 0000 | a self-report personality inventory originally derived from the MMPI; consists of several hundred yes-no questions and yields scores on a number of scales including dominance and self acceptance and self control and socialization and achievement etc. -06475307 10 n 02 Eysenck_Personality_Inventory 0 EPI 0 001 @ 06474603 n 0000 | a self-report personality inventory based on Hans Eysenck's factor analysis of personality which assumes three basic factors (the two most important being extraversion to introversion and neuroticism) -06475589 10 n 02 Minnesota_Multiphasic_Personality_Inventory 0 MMPI 0 001 @ 06474603 n 0000 | a self-report personality inventory consisting of 550 items that describe feelings or actions which the person is asked to agree with or disagree with; many scales estimating traits and qualities of personality have been developed using MMPI items -06475933 10 n 02 Sixteen_Personality_Factor_Questionnaire 0 16_PF 0 001 @ 06474603 n 0000 | a self-report personality inventory developed by Raymond B. Cattell to measure the 16 personality dimensions that emerged from his factor analysis of a wide range of traits -06476200 10 n 02 requisition 1 requisition_form 0 002 @ 06473563 n 0000 + 00754430 v 0101 | an official form on which a request in made; "first you have to fill out the requisition" -06476384 10 n 01 tax_form 0 001 @ 06473563 n 0000 | a form to use when paying your taxes -06476475 10 n 01 telegraph_form 0 001 @ 06473563 n 0000 | a form to use when sending a telegram -06476573 10 n 01 absentee_ballot 0 002 @ 06470922 n 0000 ;c 00181781 n 0000 | (election) a ballot that is cast while absent (usually mailed in prior to election day) -06476741 10 n 01 certificate_of_incorporation 0 002 @ 06471345 n 0000 #p 06471737 n 0000 | state approval of the articles of incorporation of a corporation -06476899 10 n 01 bank_charter 0 001 @ 06471737 n 0000 | a charter authorizing the operation of a bank -06477003 10 n 03 Magna_Carta 0 Magna_Charta 0 The_Great_Charter 0 002 @i 06477209 n 0000 ;r 08860123 n 0000 | the royal charter of political rights given to rebellious English barons by King John in 1215 -06477209 10 n 01 royal_charter 0 003 @ 06471737 n 0000 ;r 08860123 n 0000 ~i 06477003 n 0000 | a charter granted by the sovereign (especially in Great Britain) -06477371 10 n 02 card 1 identity_card 0 008 @ 06885389 n 0000 + 00663894 v 0101 ~ 06425404 n 0000 ~ 06477645 n 0000 ~ 06477818 n 0000 ~ 06477970 n 0000 ~ 06478199 n 0000 ~ 06478331 n 0000 | a card certifying the identity of the bearer; "he had to show his card to get in" -06477645 10 n 01 donor_card 0 001 @ 06477371 n 0000 | a card that you carry on your person and that authorizes the use of your organs for transplantation after your death -06477818 10 n 01 keycard 0 001 @ 06477371 n 0000 | a plastic card that has a magnetically coded strip that is scanned in order to operate a mechanism -06477970 10 n 01 membership_card 0 002 @ 06477371 n 0000 ~ 06478097 n 0000 | a card certifying membership in an organization -06478097 10 n 01 union_card 0 001 @ 06477970 n 0000 | a card certifying membership in a labor union -06478199 10 n 02 library_card 0 borrower's_card 0 001 @ 06477371 n 0000 | a card certifying the bearer's right to use the library -06478331 10 n 01 ration_card 0 001 @ 06477371 n 0000 | a card certifying the bearer's right to purchase rationed goods -06478452 10 n 01 birth_certificate 0 001 @ 06471345 n 0000 | a copy of the official document giving details of a person's birth -06478582 10 n 02 diploma 0 sheepskin 0 002 @ 06471345 n 0000 ~ 06478734 n 0000 | a document certifying the successful completion of a course of study -06478734 10 n 02 Higher_National_Diploma 0 HND 0 002 @ 06478582 n 0000 ;r 08860123 n 0000 | a diploma given for vocational training that prepares the student for a career in a particular area; good students may progress to a course leading to a degree -06478988 10 n 02 commission 0 military_commission 0 002 @ 06471345 n 0000 ;c 08199025 n 0000 | an official document issued by a government and conferring on the recipient the rank of an officer in the armed forces -06479204 10 n 01 bill_of_health 0 001 @ 06471345 n 0000 | a certificate saying that a departing ship's company is healthy (to be presented at the next port of arrival) -06479374 10 n 01 registration 0 002 @ 06471345 n 0000 + 02471690 v 0101 | a document certifying an act of registering -06479494 10 n 02 teaching_certificate 0 teacher's_certificate 0 001 @ 06471345 n 0000 | a certificate saying that the holder is qualified to teach in the public schools -06479665 10 n 04 legal_document 0 legal_instrument 0 official_document 0 instrument 0 037 @ 06470073 n 0000 ;c 08441203 n 0000 + 00991151 v 0401 ~ 06470688 n 0000 ~ 06480506 n 0000 ~ 06481156 n 0000 ~ 06500937 n 0000 ~ 06501748 n 0000 ~ 06501918 n 0000 ~ 06526004 n 0000 ~ 06530789 n 0000 ~ 06531481 n 0000 ~ 06531657 n 0000 ~ 06531908 n 0000 ~ 06532095 n 0000 ~ 06532330 n 0000 ~ 06536853 n 0000 ~ 06543781 n 0000 ~ 06544142 n 0000 ~ 06544841 n 0000 ~ 06545137 n 0000 ~ 06545528 n 0000 ~ 06546408 n 0000 ~ 06546633 n 0000 ~ 06548671 n 0000 ~ 06549661 n 0000 ~ 06551627 n 0000 ~ 06551784 n 0000 ~ 06552814 n 0000 ~ 06552984 n 0000 ~ 06556481 n 0000 ~ 06736529 n 0000 ~ 06771653 n 0000 ~ 07235335 n 0000 ~ 07235790 n 0000 ~ 07235936 n 0000 ~ 13416345 n 0000 | (law) a document that states some contractual relationship or grants some right -06480506 10 n 02 derivative_instrument 0 derivative 1 005 @ 06479665 n 0000 ;c 08441203 n 0000 + 00698586 a 0201 ~ 06480723 n 0000 ~ 13241600 n 0000 | a financial instrument whose value is based on another security -06480723 10 n 01 futures_contract 0 002 @ 06480506 n 0000 ~ 06480991 n 0000 | an agreement to buy or sell a specific amount of a commodity or financial instrument at a particular price on a stipulated future date; the contract can be sold before the settlement date -06480991 10 n 01 stock-index_futures 0 001 @ 06480723 n 0000 | a futures contract based on a stock index; a bet on the future price of the indexed group of stocks -06481156 10 n 01 negotiable_instrument 0 003 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 13377268 n 0000 | an unconditional order or promise to pay an amount of money -06481320 10 n 02 list 0 listing 0 054 @ 06637824 n 0000 + 00946755 v 0202 + 00945853 v 0201 + 00946755 v 0102 + 02472223 v 0101 + 00945853 v 0101 %p 06482401 n 0000 ~ 06485261 n 0000 ~ 06485431 n 0000 ~ 06486630 n 0000 ~ 06486874 n 0000 ~ 06487260 n 0000 ~ 06487395 n 0000 ~ 06487610 n 0000 ~ 06487729 n 0000 ~ 06487897 n 0000 ~ 06488880 n 0000 ~ 06489070 n 0000 ~ 06489190 n 0000 ~ 06489560 n 0000 ~ 06489659 n 0000 ~ 06489847 n 0000 ~ 06489968 n 0000 ~ 06490173 n 0000 ~ 06490451 n 0000 ~ 06490627 n 0000 ~ 06490887 n 0000 ~ 06491026 n 0000 ~ 06491168 n 0000 ~ 06491371 n 0000 ~ 06491561 n 0000 ~ 06491665 n 0000 ~ 06491786 n 0000 ~ 06492188 n 0000 ~ 06492438 n 0000 ~ 06492664 n 0000 ~ 06492811 n 0000 ~ 06493158 n 0000 ~ 06493392 n 0000 ~ 06493926 n 0000 ~ 06494016 n 0000 ~ 06494153 n 0000 ~ 06494373 n 0000 ~ 06494538 n 0000 ~ 06494646 n 0000 ~ 06494816 n 0000 ~ 06495000 n 0000 ~ 06495328 n 0000 ~ 06495516 n 0000 ~ 06495625 n 0000 ~ 06495824 n 0000 ~ 06495948 n 0000 ~ 06496116 n 0000 ~ 06496299 n 0000 | a database containing an ordered array of items (names or topics) -06482401 10 n 02 item 0 point 3 010 @ 13809207 n 0000 #p 06481320 n 0000 + 00946105 v 0103 + 00946105 v 0104 ~ 06482868 n 0000 ~ 06482978 n 0000 ~ 06483061 n 0000 ~ 06483171 n 0000 ~ 06483339 n 0000 ~ 06483454 n 0000 | a distinct part that can be specified separately in a group of things that could be enumerated on a list; "he noticed an item in the New York Times"; "she had several items on her shopping list"; "the main point on the agenda was taken up first" -06482868 10 n 01 agenda_item 0 002 @ 06482401 n 0000 #p 06485261 n 0000 | one of the items to be considered -06482978 10 n 01 incidental 0 001 @ 06482401 n 0000 | an item that is incidental -06483061 10 n 01 inventory_item 0 002 @ 06482401 n 0000 #p 06492664 n 0000 | an item listed in an inventory -06483171 10 n 01 line_item 0 002 @ 06482401 n 0000 #p 06537124 n 0000 | an item in an appropriation bill; "Some governors can veto line items in their state budgets" -06483339 10 n 01 news_item 0 003 @ 06482401 n 0000 #p 06267145 n 0000 ~ 06484887 n 0000 | an item in a newspaper -06483454 10 n 02 place 2 position 1 006 @ 06482401 n 0000 + 01086691 v 0101 + 00659776 v 0101 + 00658052 v 0106 ~ 06483702 n 0000 ~ 06483992 n 0000 | an item on a list or in a sequence; "in the second place"; "moved from third to fifth position" -06483702 10 n 01 postposition 0 003 @ 06483454 n 0000 ;c 06172789 n 0000 + 01248205 v 0101 | (linguistics) the placing of one linguistic element after another (as placing a modifier after the word that it modifies in a sentence or placing an affix after the base to which it is attached) -06483992 10 n 01 preposition 1 003 @ 06483454 n 0000 ;c 06172789 n 0000 + 01248405 v 0101 | (linguistics) the placing of one linguistic element before another (as placing a modifier before the word it modifies in a sentence or placing an affix before the base to which it is attached) -06484279 10 n 01 topicalization 1 003 @ 07102945 n 0000 ;c 06172789 n 0000 + 01013856 v 0101 | (linguistics) emphasis placed on the topic or focus of a sentence by preposing it to the beginning of the sentence; placing the topic at the beginning of the sentence is typical for English; "`Those girls, they giggle when they see me' and `Cigarettes, you couldn't pay me to smoke them' are examples of topicalization" -06484696 10 n 01 ammunition 0 001 @ 06634376 n 0000 | information that can be used to attack or defend a claim or argument or viewpoint; "his admission provided ammunition for his critics" -06484887 10 n 01 factoid 0 001 @ 06483339 n 0000 | a brief (usually one sentence and usually trivial) news item -06485001 10 n 01 factoid 1 001 @ 06634376 n 0000 | something resembling a fact; unverified (often invented) information that is given credibility because it appeared in print -06485178 10 n 01 papyrus 1 001 @ 06470073 n 0000 | a document written on papyrus -06485261 10 n 03 agenda 0 agendum 0 order_of_business 0 003 @ 06481320 n 0000 %p 06482868 n 0000 ~ 06485800 n 0000 | a list of matters to be taken up (as at a meeting) -06485431 10 n 01 A-list 0 001 @ 06481320 n 0000 | a list of names of specially favored people; "the boss gave me his A-list of people we should try to recruit" -06485593 10 n 01 docket 0 004 @ 06487395 n 0000 ;c 08441203 n 0000 + 01008546 v 0101 + 01008719 v 0101 | (law) the calendar of a court; the list of cases to be tried or a summary of the court's activities -06485800 10 n 01 order_of_the_day 0 002 @ 06485261 n 0000 ~ 06485933 n 0000 | the order of business for an assembly on a given day -06485933 10 n 02 order_paper 0 order_book 0 001 @ 06485800 n 0000 | a printed copy of the order of the day -06486042 10 n 01 network_programming 0 001 @ 06495328 n 0000 | the schedule of programs to be broadcast on a network -06486161 10 n 03 batting_order 0 card 3 lineup 0 003 @ 06495000 n 0000 ;c 00471613 n 0000 %p 06486405 n 0000 | (baseball) a list of batters in the order in which they will bat; "the managers presented their cards to the umpire at home plate" -06486405 10 n 03 cleanup 0 cleanup_position 0 cleanup_spot 0 003 @ 00722479 n 0000 #p 06486161 n 0000 ;c 00471613 n 0000 | (baseball) the fourth position in the batting order (usually filled by the best batter on the team) -06486630 10 n 01 bibliography 0 003 @ 06481320 n 0000 + 02662538 a 0102 + 09852558 n 0101 | a list of writings with time and place of publication (such as the writings of a single author or the works referred to in preparing a document etc.) -06486874 10 n 01 bill 6 005 @ 06481320 n 0000 ~ 06487050 n 0000 ~ 06487172 n 0000 ~ 06492939 n 0000 ~ 06748703 n 0000 | a list of particulars (as a playbill or bill of fare) -06487050 10 n 01 bill_of_entry 0 001 @ 06486874 n 0000 | a list of goods received at a customhouse for export or import -06487172 10 n 01 bill_of_goods 0 001 @ 06486874 n 0000 | a consignment of merchandise -06487260 10 n 03 blacklist 0 black_book 0 shitlist 0 002 @ 06481320 n 0000 + 02473143 v 0101 | a list of people who are out of favor -06487395 10 n 01 calendar 1 003 @ 06481320 n 0000 + 00678981 v 0101 ~ 06485593 n 0000 | a list or register of events (appointments or social events or court cases etc); "I have you on my calendar for next Monday" -06487610 10 n 01 calorie_chart 0 001 @ 06481320 n 0000 | a list of foods and information about their caloric content -06487729 10 n 01 canon 3 003 @ 06481320 n 0000 + 00823129 v 0101 + 00823129 v 0102 | a complete list of saints that have been recognized by the Roman Catholic Church -06487897 10 n 02 catalog 1 catalogue 1 009 @ 06481320 n 0000 + 01626844 v 0201 + 00652622 v 0201 + 01626844 v 0102 + 00652622 v 0102 ~ 06488224 n 0000 ~ 06488325 n 0000 ~ 06488629 n 0000 ~ 06488763 n 0000 | a complete list of things; usually arranged systematically; "it does not pretend to be a catalog of his achievements" -06488224 10 n 01 discography 0 001 @ 06487897 n 0000 | a descriptive catalog of musical recordings -06488325 10 n 02 library_catalog 0 library_catalogue 0 002 @ 06487897 n 0000 ~ 06488473 n 0000 | an enumeration of all the resources of a library -06488473 10 n 02 card_catalog 0 card_catalogue 0 001 @ 06488325 n 0000 | a library catalog in which each publication is described on a separate file card -06488629 10 n 02 parts_catalog 0 parts_catalogue 0 001 @ 06487897 n 0000 | a list advertising parts for machinery along with prices -06488763 10 n 02 seed_catalog 0 seed_catalogue 0 001 @ 06487897 n 0000 | a list advertising seeds and their prices -06488880 10 n 01 character_set 0 004 @ 06481320 n 0000 ~i 06357078 n 0000 ~ 06497459 n 0000 ~ 06500262 n 0000 | an ordered list of characters that are used together in writing or printing -06489070 10 n 01 checklist 0 001 @ 06481320 n 0000 | a list of items (names or tasks etc.) to be checked or consulted -06489190 10 n 02 class_list 0 honours_list 0 002 @ 06481320 n 0000 ;r 08860123 n 0000 | a list issued by examiners that categorizes students according to the class of honours they achieved in their degree examinations -06489410 10 n 01 clericalism 0 001 @ 06656408 n 0000 | a policy of supporting the influence and power of the clergy in secular or political matters -06489560 10 n 01 codex 1 001 @ 06481320 n 0000 | an official list of chemicals or medicines etc. -06489659 10 n 02 contents 0 table_of_contents 0 003 @ 06481320 n 0000 @ 08266235 n 0000 #p 06589574 n 0000 | a list of divisions (chapters or articles) and the pages on which they start -06489847 10 n 01 corrigenda 0 001 @ 06481320 n 0000 | a list of printing errors in a book along with their corrections -06489968 10 n 01 credits 0 003 @ 06628861 n 0000 @ 06481320 n 0000 #p 06613686 n 0000 | a list of acknowledgements of those who contributed to the creation of a film (usually run at the end of the film) -06490173 10 n 02 criminal_record 0 record 0 001 @ 06481320 n 0000 | a list of crimes for which an accused person has been previously convicted; "he ruled that the criminal record of the defendant could not be disclosed to the court"; "the prostitute had a record a mile long" -06490451 10 n 01 directory 1 003 @ 06481320 n 0000 ;c 06128570 n 0000 ~ 06490743 n 0000 | (computer science) a listing of the files stored in memory (usually on a hard disk) -06490627 10 n 01 distribution_list 0 001 @ 06481320 n 0000 | list of names to whom a communication should be sent -06490743 10 n 01 subdirectory 0 002 @ 06490451 n 0000 ;c 06128570 n 0000 | (computer science) a directory that is listed in another directory -06490887 10 n 02 enumeration 0 numbering 0 004 @ 06481320 n 0000 + 00948853 v 0201 + 00946755 v 0201 + 00946105 v 0101 | a numbered list -06491026 10 n 01 FAQ 0 001 @ 06481320 n 0000 | a list of questions that are frequently asked (about a given topic) along with their answers -06491168 10 n 01 free_list 0 001 @ 06481320 n 0000 | a list of commodities that are not subject to tariffs -06491277 10 n 01 grocery_list 0 001 @ 06495516 n 0000 | a list of groceries to be purchased -06491371 10 n 02 grocery_list 1 shopping_list 1 001 @ 06481320 n 0000 | a list of heterogenous items that someone wants; "the union came to the table with a whole grocery list of demands" -06491561 10 n 01 hit_list 0 001 @ 06481320 n 0000 | a list of victims to be eliminated (as by murder) -06491665 10 n 01 hit_parade 0 001 @ 06481320 n 0000 | a ranked list of the songs that are most popular at a given time -06491786 10 n 01 index 0 007 @ 06481320 n 0000 #p 06390805 n 0000 + 02937534 a 0101 + 02354112 v 0101 + 02472817 v 0101 %p 06293106 n 0000 ~ 06492040 n 0000 | an alphabetical listing of names and topics along with page numbers where they are discussed -06492040 10 n 01 concordance 0 002 @ 06491786 n 0000 + 01465506 v 0101 | an index of all main words in a book along with their immediate contexts -06492188 10 n 01 key 2 002 @ 06481320 n 0000 ~ 06492320 n 0000 | a list of words or phrases that explain symbols or abbreviations -06492320 10 n 01 key_word 2 001 @ 06492188 n 0000 | a word that is used as a pattern to decode an encrypted message -06492438 10 n 01 key 3 001 @ 06481320 n 0000 | a list of answers to a test; "some students had stolen the key to the final exam" -06492569 10 n 01 parts_inventory 0 001 @ 06492664 n 0000 | an inventory of replacement parts -06492664 10 n 02 inventory 0 stock_list 0 003 @ 06481320 n 0000 %p 06483061 n 0000 ~ 06492569 n 0000 | a detailed list of all the items in stock -06492811 10 n 01 mailing_list 0 001 @ 06481320 n 0000 | a list of names and addresses to which advertising material is mailed -06492939 10 n 05 menu 0 bill_of_fare 0 card 5 carte_du_jour 0 carte 0 004 @ 06486874 n 0000 ~ 06497117 n 0000 ~ 06497233 n 0000 ~ 06497331 n 0000 | a list of dishes available at a restaurant; "the menu was in French" -06493158 10 n 02 masthead 1 flag 1 001 @ 06481320 n 0000 | a listing printed in all issues of a newspaper or magazine (usually on the editorial page) that gives the name of the publication and the names of the editorial staff, etc. -06493392 10 n 02 menu 1 computer_menu 0 004 @ 06481320 n 0000 ;c 06128570 n 0000 ~ 06493579 n 0000 ~ 06493721 n 0000 | (computer science) a list of options available to a computer user -06493579 10 n 01 drop-down_menu 0 001 @ 06493392 n 0000 | a menu of options that appears below the item when the computer user clicks on it -06493721 10 n 03 hierarchical_menu 0 cascading_menu 0 submenu 0 002 @ 06493392 n 0000 ;c 06128570 n 0000 | a secondary menu that appears while you are holding the cursor over an item on the primary menu -06493926 10 n 01 necrology 1 001 @ 06481320 n 0000 | a list of people who died recently -06494016 10 n 02 playlist 0 play_list 0 001 @ 06481320 n 0000 | a list of musical selections for performance or for broadcast by radio -06494153 10 n 01 portfolio 0 001 @ 06481320 n 0000 | a list of the financial assets held by an individual or a bank or other financial institution; "they were disappointed by the poor returns on their stock portfolio" -06494373 10 n 01 posting 1 002 @ 06481320 n 0000 ;c 00619230 n 0000 | (bookkeeping) a listing on the company's records; "the posting was made in the cash account" -06494538 10 n 01 price_list 0 001 @ 06481320 n 0000 | a listing of prices for different goods or services -06494646 10 n 03 push-down_list 0 push-down_stack 0 stack 0 001 @ 06481320 n 0000 | a list in which the next item to be removed is the item most recently stored (LIFO) -06494816 10 n 01 queue 0 003 @ 06481320 n 0000 ;c 06142118 n 0000 ~ 06502054 n 0000 | (information processing) an ordered list of tasks to be performed or messages to be transmitted -06495000 10 n 02 roll 0 roster 1 007 @ 06481320 n 0000 ~ 06486161 n 0000 ~ 06495220 n 0000 ~ 06496624 n 0000 ~ 06496773 n 0000 ~ 06496862 n 0000 ~ 06497013 n 0000 | a list of names; "his name was struck off the rolls" -06495220 10 n 01 death-roll 0 001 @ 06495000 n 0000 | a list of persons killed in a war or other disaster -06495328 10 n 01 schedule 0 005 @ 06481320 n 0000 + 00794981 v 0101 ~ 06486042 n 0000 ~ 06496397 n 0000 ~ 06496499 n 0000 | an ordered list of times at which things are planned to occur -06495516 10 n 01 shopping_list 0 002 @ 06481320 n 0000 ~ 06491277 n 0000 | a list of items to be purchased -06495625 10 n 02 short_list 0 shortlist 0 001 @ 06481320 n 0000 | a list of applicants winnowed from a longer list who have been deemed suitable and from which the successful person will be chosen -06495824 10 n 01 sick_list 0 001 @ 06481320 n 0000 | a list of those who are ill (e.g. on a warship or in a regiment etc) -06495948 10 n 02 slate 2 ticket 2 002 @ 06481320 n 0000 + 02397106 v 0101 | a list of candidates nominated by a political party to run for election to public offices -06496116 10 n 01 standing 0 001 @ 06481320 n 0000 | an ordered listing of scores or results showing the relative positions of competitors (individuals or teams) in a sporting event -06496299 10 n 01 wish_list 0 001 @ 06481320 n 0000 | a list of events that you wish would occur -06496397 10 n 01 timetable 0 001 @ 06495328 n 0000 | a schedule of times of arrivals and departures -06496499 10 n 01 timetable 1 001 @ 06495328 n 0000 | a schedule listing events and the times at which they will take place -06496624 10 n 01 muster_roll 0 002 @ 06495000 n 0000 ;c 08199025 n 0000 | a list of names of officers and men in a military unit or ship's company -06496773 10 n 01 church_roll 0 001 @ 06495000 n 0000 | a list of the members of church -06496862 10 n 01 rota 0 002 @ 06495000 n 0000 ;r 08860123 n 0000 | a roster of names showing the order in which people should perform certain duties -06497013 10 n 01 waiting_list 0 001 @ 06495000 n 0000 | a roster of those waiting to obtain something -06497117 10 n 01 a_la_carte 0 001 @ 06492939 n 0000 | a menu having individual dishes listed with separate prices -06497233 10 n 01 prix_fixe 0 001 @ 06492939 n 0000 | a menu listing fixed meals at fixed prices -06497331 10 n 01 table_d'hote 0 001 @ 06492939 n 0000 | a menu offering a complete meal with limited choices at a fixed price -06497459 10 n 01 alphabet 0 017 @ 06488880 n 0000 @ 06351613 n 0000 + 02614194 a 0101 + 02614194 a 0102 + 00100634 a 0102 + 02330967 v 0101 + 00279239 v 0101 + 00279239 v 0102 ~ 06352117 n 0000 ~ 06497872 n 0000 ~ 06498569 n 0000 ~ 06499244 n 0000 ~ 06499796 n 0000 ~ 06500062 n 0000 ~ 06500448 n 0000 ~ 06500765 n 0000 %m 06828818 n 0000 | a character set that includes letters and is used to write a language -06497872 10 n 02 Roman_alphabet 0 Latin_alphabet 0 028 @ 06497459 n 0000 @ 06825863 n 0000 %m 06831177 n 0000 %m 06831284 n 0000 %m 06831391 n 0000 %m 06831498 n 0000 %m 06831605 n 0000 %m 06831712 n 0000 %m 06831819 n 0000 %m 06831926 n 0000 %m 06832033 n 0000 %m 06832140 n 0000 %m 06832248 n 0000 %m 06832356 n 0000 %m 06832464 n 0000 %m 06832572 n 0000 %m 06832680 n 0000 %m 06832788 n 0000 %m 06832896 n 0000 %m 06833004 n 0000 %m 06833112 n 0000 %m 06833220 n 0000 %m 06833328 n 0000 %m 06833436 n 0000 %m 06833544 n 0000 %m 06833663 n 0000 %m 06833776 n 0000 %m 06833890 n 0000 | the alphabet evolved by the ancient Romans which serves for writing most of the languages of western Europe -06498569 10 n 03 Hebrew_alphabet 0 Hebraic_alphabet 0 Hebrew_script 0 025 @ 06497459 n 0000 @ 06825736 n 0000 %m 06836714 n 0000 %m 06836822 n 0000 %m 06836929 n 0000 %m 06837037 n 0000 %m 06837146 n 0000 %m 06837251 n 0000 %m 06837357 n 0000 %m 06837465 n 0000 %m 06837572 n 0000 %m 06837679 n 0000 %m 06837787 n 0000 %m 06837895 n 0000 %m 06838005 n 0000 %m 06838112 n 0000 %m 06838219 n 0000 %m 06838329 n 0000 %p 06838437 n 0000 %p 06838543 n 0000 %p 06838652 n 0000 %p 06838760 n 0000 %p 06838868 n 0000 %p 06838975 n 0000 %p 06839083 n 0000 | a Semitic alphabet used since the 5th century BC for writing the Hebrew language (and later for writing Yiddish and Ladino) -06499244 10 n 01 Greek_alphabet 0 025 @ 06497459 n 0000 %m 06834138 n 0000 %m 06834245 n 0000 %m 06834351 n 0000 %m 06834458 n 0000 %m 06834565 n 0000 %m 06834674 n 0000 %m 06834780 n 0000 %m 06834885 n 0000 %m 06834992 n 0000 %m 06835098 n 0000 %m 06835206 n 0000 %m 06835315 n 0000 %m 06835420 n 0000 %m 06835525 n 0000 %m 06835630 n 0000 %m 06835740 n 0000 %m 06835845 n 0000 %m 06835951 n 0000 %m 06836059 n 0000 %m 06836165 n 0000 %m 06836275 n 0000 %m 06836381 n 0000 %m 06836493 n 0000 %m 06836599 n 0000 | the alphabet used by ancient Greeks -06499796 10 n 02 Cyrillic_alphabet 0 Cyrillic 0 003 @ 06497459 n 0000 @ 06825863 n 0000 + 03059033 a 0201 | an alphabet derived from the Greek alphabet and used for writing Slavic languages (Russian, Bulgarian, Serbian, Ukrainian, and some other Slavic languages) -06500062 10 n 01 Arabic_alphabet 0 002 @ 06497459 n 0000 @ 06825736 n 0000 | the alphabet of 28 characters derived from Aramaic and used for writing Arabic languages (and borrowed for writing Urdu) -06500262 10 n 02 alphanumerics 0 alphanumeric_characters 0 003 @ 06488880 n 0000 + 02614579 a 0104 + 02614579 a 0102 | a character set that includes letters and digits and punctuation -06500448 10 n 02 phonetic_alphabet 0 sound_alphabet 0 003 @ 06497459 n 0000 ~ 06500639 n 0000 %m 06839858 n 0000 | an alphabet of characters intended to represent specific sounds of speech -06500639 10 n 01 visible_speech 0 001 @ 06500448 n 0000 | a phonetic alphabet invented by Melville Bell in the 19th century -06500765 10 n 02 manual_alphabet 0 finger_alphabet 0 002 @ 06497459 n 0000 #p 06876007 n 0000 | an alphabet used by the deaf; letters are represented by finger positions -06500937 10 n 01 passport 0 003 @ 06479665 n 0000 ;c 08441203 n 0000 %p 06687883 n 0000 | a document issued by a country to a citizen allowing that person to travel abroad and re-enter the home country -06501141 10 n 02 patent 1 patent_of_invention 0 003 @ 06470073 n 0000 + 02445356 v 0101 + 02239692 v 0101 | a document granting an inventor sole rights to an invention -06501311 10 n 04 platform 0 political_platform 0 political_program 0 program 4 002 @ 06470073 n 0000 %p 06501622 n 0000 | a document stating the aims and principles of a political party; "their candidate simply ignored the party platform"; "they won the election even though they offered no positive program" -06501622 10 n 01 plank 0 002 @ 06656408 n 0000 #p 06501311 n 0000 | an endorsed policy in the platform of a political party -06501748 10 n 01 ship's_papers 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | official papers which a ship is legally required to have; related to ownership, cargo, etc. -06501918 10 n 01 manifest 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | a customs document listing the contents put on a ship or plane -06502054 10 n 01 push-down_queue 0 001 @ 06494816 n 0000 | a queue in which the last item to go in is the first item to come out (LIFO) -06502192 10 n 02 cadaster 0 cadastre 0 002 @ 06507041 n 0000 + 02673022 a 0201 | a public register showing the details of ownership and value of land; made for the purpose of taxation -06502378 10 n 02 written_record 0 written_account 0 020 @ 06647206 n 0000 ~ 06502858 n 0000 ~ 06503034 n 0000 ~ 06503224 n 0000 ~i 06503386 n 0000 ~ 06503551 n 0000 ~ 06503724 n 0000 ~ 06503884 n 0000 ~ 06504155 n 0000 ~ 06504462 n 0000 ~ 06504662 n 0000 ~ 06504838 n 0000 ~ 06505154 n 0000 ~ 06505517 n 0000 ~ 06507041 n 0000 ~ 06508112 n 0000 ~ 06508299 n 0000 ~ 06536227 n 0000 ~ 06536389 n 0000 ~ 06536737 n 0000 | a written document preserving knowledge of facts or events -06502858 10 n 05 blotter 0 day_book 0 police_blotter 0 rap_sheet 0 charge_sheet 0 001 @ 06502378 n 0000 | the daily written record of events (as arrests) in a police station -06503034 10 n 01 casebook 0 002 @ 06502378 n 0000 + 02295511 a 0101 | a book in which detailed written records of a case are kept and which are a source of information for subsequent work -06503224 10 n 01 chronology 0 004 @ 06502378 n 0000 + 02956880 a 0101 + 00277399 v 0101 ~ 06504965 n 0000 | a record of events in the order of their occurrence -06503386 10 n 02 Domesday_Book 0 Doomsday_Book 0 001 @i 06502378 n 0000 | record of a British census and land survey in 1085-1086 ordered by William the Conqueror -06503551 10 n 01 dossier 0 001 @ 06502378 n 0000 | a collection of papers containing detailed information about a particular person or subject (usually a person's record) -06503724 10 n 01 entry 1 005 @ 06502378 n 0000 + 01000214 v 0102 ~ 06300823 n 0000 ~ 06505252 n 0000 ~ 06505434 n 0000 | an item inserted in a written record -06503884 10 n 01 log 0 004 @ 06502378 n 0000 ;c 04194289 n 0000 ;c 02691156 n 0000 + 01002481 v 0101 | a written record of events on a voyage (of a ship or plane) -06504049 10 n 01 logbook 0 002 @ 06636524 n 0000 ~ 06504326 n 0000 | a book in which the log is written -06504155 10 n 01 log 2 001 @ 06502378 n 0000 | a written record of messages sent or received; "they kept a log of all transmission by the radio station"; "an email log" -06504326 10 n 01 bell_book 0 001 @ 06504049 n 0000 | a logbook in which all orders concerning the main engines of a ship are recorded -06504462 10 n 01 note 0 006 @ 06502378 n 0000 + 01020934 v 0101 ~ 06505799 n 0000 ~ 06505935 n 0000 ~ 06506191 n 0000 ~ 06506315 n 0000 | a brief written record; "he made a note of the appointment" -06504662 10 n 01 paper_trail 0 001 @ 06502378 n 0000 | the written evidence of someone's activities; "this paper trail consisted mainly of electronically stored information" -06504838 10 n 01 timecard 0 001 @ 06502378 n 0000 | a card recording an employee's starting and quitting times each work day -06504965 10 n 01 timeline 0 001 @ 06503224 n 0000 | a sequence of related events arranged in chronological order and displayed along a line (usually drawn left to right or top to bottom) -06505154 10 n 01 time_sheet 0 001 @ 06502378 n 0000 | a record of the hours worked by employees -06505252 10 n 02 nolle_prosequi 0 nol_pros 0 002 @ 06503724 n 0000 + 00363268 v 0102 | an entry in the court record to the effect that the plaintiff or prosecutor will not proceed -06505434 10 n 01 notebook_entry 0 001 @ 06503724 n 0000 | an entry in a notebook -06505517 10 n 02 transcript 0 copy 0 004 @ 06502378 n 0000 ;c 08441203 n 0000 + 09964805 n 0201 + 01747374 v 0201 | a reproduction of a written record (e.g. of a legal or school record) -06505705 10 n 01 memorabilia 0 001 @ 06647206 n 0000 | a record of things worth remembering -06505799 10 n 02 jotting 0 jot 0 003 @ 06504462 n 0000 + 01006056 v 0202 + 01006056 v 0102 | a brief (and hurriedly handwritten) note -06505935 10 n 01 marginalia 0 002 @ 06504462 n 0000 ~ 06506037 n 0000 | notes written in the margin -06506037 10 n 02 scholium 0 scholia 0 001 @ 06505935 n 0000 | a marginal note written by a scholiast (a commentator on ancient or classical literature) -06506191 10 n 03 memo 0 memorandum 0 memoranda 0 002 @ 06504462 n 0000 ~ 06506430 n 0000 | a written proposal or reminder -06506315 10 n 01 minute 0 001 @ 06504462 n 0000 | a short note; "the secretary keeps the minutes of the meeting" -06506430 10 n 02 aide-memoire 0 position_paper 1 001 @ 06506191 n 0000 | a memorandum summarizing the items of an agreement (used especially in diplomatic communications) -06506603 10 n 01 corker 0 002 @ 06598915 n 0000 ;u 07157273 n 0000 | (dated slang) a remarkable or excellent thing or person; "that story was a corker" -06506757 10 n 01 reminder 0 003 @ 06598915 n 0000 + 00610538 v 0101 ~ 06856189 n 0000 | a message that helps you remember something; "he ignored his wife's reminders" -06506926 10 n 01 check_register 0 001 @ 06507041 n 0000 | a register of checks issued (usually in numeric order) -06507041 10 n 02 register 0 registry 0 010 @ 06502378 n 0000 + 02471690 v 0201 + 01001857 v 0202 + 02472033 v 0102 + 01001857 v 0102 + 02471690 v 0101 ~ 06502192 n 0000 ~ 06506926 n 0000 ~ 06507330 n 0000 ~ 06507454 n 0000 | an official written record of names or events or transactions -06507330 10 n 01 studbook 0 001 @ 06507041 n 0000 | official record of the pedigree of purebred animals especially horses -06507454 10 n 01 rent-roll 0 001 @ 06507041 n 0000 | a register of rents; includes the names of tenants and the amount of rent they pay -06507592 10 n 01 won-lost_record 0 002 @ 06636524 n 0000 ;c 00523513 n 0000 | (sports) a record of win versus losses -06507711 10 n 01 blue_book 0 001 @ 06423619 n 0000 | a register of persons who are socially prominent -06507815 10 n 03 stub 1 check_stub 0 counterfoil 0 001 @ 06647206 n 0000 | the part of a check that is retained as a record -06507941 10 n 02 card 6 scorecard 0 002 @ 06636524 n 0000 ;c 00464894 n 0000 | (golf) a record of scores (as in golf); "you have to turn in your card to get a handicap" -06508112 10 n 03 minutes 0 proceedings 0 transactions 0 004 @ 06502378 n 0000 #p 06508299 n 0000 ~ 06508417 n 0000 ~ 06508579 n 0000 | a written account of what transpired at a meeting -06508299 10 n 01 minute_book 0 002 @ 06502378 n 0000 %p 06508112 n 0000 | a book in which minutes have been written -06508417 10 n 01 Congressional_Record 0 001 @ 06508112 n 0000 | a published written account of the speeches and debates and votes of the United States Congress -06508579 10 n 01 Hansard 0 001 @ 06508112 n 0000 | the official published verbatim report of the proceedings of a parliamentary body; originally of the British Parliament; "the Canadian Hansard is published in both English and French" -06508816 10 n 02 file 0 data_file 0 008 @ 06647206 n 0000 + 00869931 v 0103 + 01001643 v 0101 + 01001857 v 0101 ~i 06509075 n 0000 ~ 06509210 n 0000 ~ 06511396 n 0000 ~ 06792818 n 0000 | a set of related records (either written or electronic) kept together -06509075 10 n 01 Combined_DNA_Index_System 0 001 @i 06508816 n 0000 | the DNA file maintained by the Federal Bureau of Investigation -06509210 10 n 01 computer_file 0 011 @ 06508816 n 0000 ;c 06128570 n 0000 ~ 06509513 n 0000 ~ 06509675 n 0000 ~ 06509902 n 0000 ~ 06510103 n 0000 ~ 06510271 n 0000 ~ 06510478 n 0000 ~ 06510663 n 0000 ~ 06510836 n 0000 ~ 06510977 n 0000 | (computer science) a file maintained in computer-readable form -06509513 10 n 01 backup_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file dedicated to storing and updating computer backups -06509675 10 n 01 binary_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file containing machine-readable information that must be read by an application; characters use all 8 bits of each byte -06509902 10 n 02 master_file 0 main_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file that is used as the authority in a given job and that is relatively permanent -06510103 10 n 01 disk_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file stored on a magnetic disk and identified by a unique label -06510271 10 n 02 transaction_file 0 detail_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file containing relatively transient data about a particular data processing task -06510478 10 n 02 input_file 0 input_data 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file that contains data that serve as input to a device or program -06510663 10 n 01 output_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a computer file that contains data that are the output of a device or program -06510836 10 n 01 read-only_file 0 002 @ 06509210 n 0000 ;c 06128570 n 0000 | (computer science) a file that you can read but cannot change -06510977 10 n 02 text_file 0 document 1 005 @ 06509210 n 0000 ;c 06128570 n 0000 + 02896789 a 0201 ~ 06358900 n 0000 ~ 06511242 n 0000 | (computer science) a computer file that contains text (and possibly formatting instructions) using seven-bit ASCII characters -06511242 10 n 01 ASCII_text_file 0 002 @ 06510977 n 0000 ~ 06358513 n 0000 | a text file that contains only ASCII characters without special formatting -06511396 10 n 02 mug_file 0 mug_book 0 002 @ 06508816 n 0000 %m 03797548 n 0000 | a file of mug shots (pictures of criminals that are kept on file by the police) -06511560 10 n 01 resignation 1 003 @ 06470073 n 0000 + 02382367 v 0104 ~ 06511762 n 0000 | a formal document giving notice of your intention to resign; "he submitted his resignation as of next month" -06511762 10 n 02 abdication 1 stepping_down 1 002 @ 06511560 n 0000 + 02379198 v 0101 | the act of abdicating -06511874 10 n 03 resolution 1 declaration 1 resolve 0 006 @ 06470073 n 0000 + 00699626 v 0302 + 01021420 v 0302 + 00698855 v 0303 ~i 06512099 n 0000 ~ 06512324 n 0000 | a formal expression by a meeting; agreed to by a vote -06512099 10 n 01 Declaration_of_Independence 0 001 @i 06511874 n 0000 | the document recording the proclamation of the second Continental Congress (4 July 1776) asserting the independence of the Colonies from Great Britain -06512324 10 n 01 joint_resolution 0 003 @ 06511874 n 0000 ;r 09044862 n 0000 ;c 08441203 n 0000 | a resolution passed by both houses of Congress which becomes legally binding when signed by the Chief Executive (or passed over the Chief Executive's veto) -06512580 10 n 01 application 0 006 @ 06513366 n 0000 + 00765396 v 0101 ~ 06512857 n 0000 ~ 06512943 n 0000 ~ 06513043 n 0000 ~ 06513255 n 0000 | a verbal or written request for assistance or employment or admission to a school; "December 31 is the deadline for applications" -06512857 10 n 01 job_application 0 001 @ 06512580 n 0000 | an application for a job -06512943 10 n 01 credit_application 0 001 @ 06512580 n 0000 | an application for a line of credit -06513043 10 n 01 loan_application 0 002 @ 06512580 n 0000 ~ 06513154 n 0000 | an application to borrow money -06513154 10 n 01 mortgage_application 0 001 @ 06513043 n 0000 | an application for a mortgage loan -06513255 10 n 01 patent_application 0 001 @ 06512580 n 0000 | an application for sole rights to an invention -06513366 10 n 03 request 1 petition 0 postulation 1 007 @ 06598915 n 0000 + 00714585 a 0201 + 00754731 v 0201 + 00753428 v 0101 ~ 06512580 n 0000 ~ 06513764 n 0000 ~ 07191279 n 0000 | a formal message requesting something that is submitted to an authority -06513624 10 n 01 memorial 1 001 @ 06598915 n 0000 | a written statement of facts submitted in conjunction with a petition to an authority -06513764 10 n 04 solicitation 1 appeal 2 collection 1 ingathering 0 002 @ 06513366 n 0000 ~ 06513953 n 0000 | request for a sum of money; "an appeal to raise money for starving children" -06513953 10 n 01 whip-round 0 002 @ 06513764 n 0000 ;r 08860123 n 0000 | (British) solicitation of money usually for a benevolent purpose -06514093 10 n 04 history 0 account 0 chronicle 0 story 4 011 @ 06647206 n 0000 ;c 06155567 n 0000 + 01001136 v 0301 + 01279028 a 0101 ~ 06514529 n 0000 ~ 06514621 n 0000 ~ 06514880 n 0000 ~ 06515489 n 0000 ~ 06515662 n 0000 ~ 06515827 n 0000 ~ 07221756 n 0000 | a record or narrative description of past events; "a history of France"; "he gave an inaccurate account of the plot to kill the president"; "the story of exposure to lead" -06514529 10 n 01 ancient_history 0 001 @ 06514093 n 0000 | a history of the ancient world -06514621 10 n 01 etymology 0 006 @ 06514093 n 0000 + 03022003 a 0101 + 10066314 n 0101 + 01070455 v 0101 + 00634286 v 0101 ~ 06514786 n 0000 | a history of a word -06514786 10 n 01 folk_etymology 0 001 @ 06514621 n 0000 | a popular but erroneous etymology -06514880 10 n 01 case_history 0 003 @ 06514093 n 0000 ~ 06515054 n 0000 ~ 06515297 n 0000 | detailed record of the background of a person or group under study or treatment -06515054 10 n 01 family_history 0 002 @ 06514880 n 0000 #p 06515297 n 0000 | part of a patient's medical history in which questions are asked in an attempt to find out whether the patient has hereditary tendencies toward particular diseases -06515297 10 n 03 medical_history 0 medical_record 0 anamnesis 0 003 @ 06514880 n 0000 + 02620724 a 0301 %p 06515054 n 0000 | the case history of a medical patient as recalled by the patient -06515489 10 n 03 historical_document 0 historical_paper 0 historical_record 0 001 @ 06514093 n 0000 | writing having historical value (as opposed to fiction or myth etc.) -06515662 10 n 02 annals 0 chronological_record 0 003 @ 06514093 n 0000 + 02625281 a 0101 + 09794797 n 0101 | a chronological account of events in successive years -06515827 10 n 04 biography 0 life 0 life_story 0 life_history 0 007 @ 06514093 n 0000 + 03048680 a 0102 + 09855433 n 0101 ~ 06516087 n 0000 ~ 06516242 n 0000 ~ 06516404 n 0000 ~i 06748270 n 0000 | an account of the series of events making up a person's life -06516087 10 n 01 autobiography 0 005 @ 06515827 n 0000 + 02651468 a 0101 + 02651244 a 0101 + 09825296 n 0101 ~ 06516495 n 0000 | a biography of yourself -06516242 10 n 01 hagiography 0 002 @ 06515827 n 0000 + 10155692 n 0101 | a biography that idealizes or idolizes the person (especially a person who is a saint) -06516404 10 n 01 profile 0 002 @ 06515827 n 0000 + 01699346 v 0101 | biographical sketch -06516495 10 n 01 memoir 0 001 @ 06516087 n 0000 | an account of the author's personal experiences -06516595 10 n 02 statement 1 financial_statement 0 005 @ 06472025 n 0000 ~ 06516782 n 0000 ~ 06516955 n 0000 ~ 13354985 n 0000 ~ 13355301 n 0000 | a document showing credits and debits -06516782 10 n 01 bank_statement 0 001 @ 06516595 n 0000 | a periodic statement prepared by a bank for each client; "I wish my bank statement arrived earlier in the month" -06516955 10 n 03 bill 1 account 2 invoice 0 011 @ 06516595 n 0000 + 02320903 v 0301 + 02265231 v 0201 + 02320374 v 0102 ~ 06517345 n 0000 ~ 06517447 n 0000 ~ 06517547 n 0000 ~ 06517663 n 0000 ~ 06517779 n 0000 ~ 06517867 n 0000 ~ 06517942 n 0000 | an itemized statement of money owed for goods shipped or services rendered; "he paid his bill and left"; "send me an account of what I owe" -06517345 10 n 01 electric_bill 0 001 @ 06516955 n 0000 | a bill for money owed for electricity used -06517447 10 n 01 hotel_bill 0 001 @ 06516955 n 0000 | statement of charges for staying in a hotel -06517547 10 n 02 medical_bill 0 doctor's_bill 0 001 @ 06516955 n 0000 | statement of charges for medical services -06517663 10 n 02 phone_bill 0 telephone_bill 0 001 @ 06516955 n 0000 | statement of charges for telephone service -06517779 10 n 02 reckoning 0 tally 0 001 @ 06516955 n 0000 | a bill for an amount due -06517867 10 n 01 tax_bill 0 001 @ 06516955 n 0000 | money owed for taxes -06517942 10 n 03 check 0 chit 0 tab 0 001 @ 06516955 n 0000 | the bill in a restaurant; "he asked the waiter for the check" -06518068 10 n 02 coupon 0 voucher 0 004 @ 06472025 n 0000 ~ 06518253 n 0000 ~ 06518420 n 0000 ~ 06518565 n 0000 | a negotiable certificate that can be detached and redeemed as needed -06518253 10 n 01 book_token 0 002 @ 06518068 n 0000 ;r 08860123 n 0000 | a gift voucher that can be exchanged for books costing up to an amount given on the voucher -06518420 10 n 02 meal_ticket 0 luncheon_voucher 0 001 @ 06518068 n 0000 | coupon redeemable at a restaurant and entitling the holder to a meal -06518565 10 n 01 twofer 1 001 @ 06518068 n 0000 | a coupon that allows the holder to purchase two items (as two tickets to a play) for the price of one -06518719 10 n 01 ticket 1 010 @ 06472025 n 0000 + 02329413 v 0101 ~ 06519077 n 0000 ~ 06519253 n 0000 ~ 06519369 n 0000 ~ 06519480 n 0000 ~ 06519607 n 0000 ~ 06519728 n 0000 ~ 06519846 n 0000 ~ 06519936 n 0000 | a commercial document showing that the holder is entitled to something (as to ride on public transportation or to enter a public entertainment) -06519077 10 n 02 commutation_ticket 0 season_ticket 0 001 @ 06518719 n 0000 | a ticket good for several trips or to attend a season of entertainments; sold at a reduced rate -06519253 10 n 02 plane_ticket 0 airplane_ticket 0 001 @ 06518719 n 0000 | a ticket good for a trip on an airplane -06519369 10 n 01 pass 4 001 @ 06518719 n 0000 | a complimentary ticket; "the star got passes for his family" -06519480 10 n 01 transfer 1 002 @ 06518719 n 0000 + 02088241 v 0101 | a ticket that allows a passenger to change conveyances -06519607 10 n 02 railroad_ticket 0 train_ticket 0 001 @ 06518719 n 0000 | a ticket good for a ride on a railroad train -06519728 10 n 02 theater_ticket 0 theatre_ticket 0 001 @ 06518719 n 0000 | a ticket good for admission to a theater -06519846 10 n 01 bus_ticket 0 001 @ 06518719 n 0000 | a ticket good for a ride on a bus -06519936 10 n 02 round-trip_ticket 0 return_ticket 0 002 @ 06518719 n 0000 ~ 06520092 n 0000 | a ticket to a place and back (usually over the same route) -06520092 10 n 01 day_return 0 001 @ 06519936 n 0000 | a return ticket (at reduced fare) for traveling both ways in the same day -06520222 10 n 01 receipt 0 006 @ 06628861 n 0000 + 00662485 v 0101 + 00892698 v 0102 ~ 06520429 n 0000 ~ 06520742 n 0000 ~ 13414443 n 0000 | an acknowledgment (usually tangible) that payment has been made -06520429 10 n 02 stub 0 ticket_stub 0 002 @ 06520222 n 0000 ~ 06520571 n 0000 | a torn part of a ticket returned to the holder as a receipt -06520571 10 n 01 rain_check 0 001 @ 06520429 n 0000 | a ticket stub entitling the holder to admission to a future event if the scheduled event was cancelled due to rain -06520742 10 n 02 bill_of_lading 0 waybill 0 001 @ 06520222 n 0000 | a receipt given by the carrier to the shipper acknowledging receipt of the goods being shipped and specifying the terms of delivery -06520944 10 n 01 contract 0 045 @ 06771653 n 0000 + 02702656 a 0101 + 02409941 v 0102 + 00888786 v 0101 -c 00289594 a 0000 -c 00289799 a 0000 -c 00938305 a 0000 -c 02161136 a 0000 -c 06392935 n 0000 %p 06393253 n 0000 %p 06394282 n 0000 ~ 06521878 n 0000 ~ 06522119 n 0000 ~ 06522357 n 0000 ~ 06522501 n 0000 ~ 06522633 n 0000 ~ 06522784 n 0000 ~ 06522941 n 0000 ~ 06523132 n 0000 ~ 06523353 n 0000 ~ 06523473 n 0000 ~ 06523641 n 0000 ~ 06523842 n 0000 ~ 06523969 n 0000 ~ 06524111 n 0000 ~ 06524278 n 0000 ~ 06524454 n 0000 ~ 06524552 n 0000 ~ 06524767 n 0000 ~ 06526291 n 0000 ~ 06526486 n 0000 ~ 06526619 n 0000 ~ 06526961 n 0000 ~ 06527320 n 0000 ~ 06527447 n 0000 ~ 06527576 n 0000 ~ 06527710 n 0000 ~ 06528403 n 0000 -c 06604548 n 0000 -c 06632097 n 0000 -c 06737394 n 0000 %p 06761994 n 0000 ~ 06772837 n 0000 %p 07075006 n 0000 -c 00762043 v 0000 | a binding agreement between two or more persons that is enforceable by law -06521878 10 n 02 adhesion_contract 0 contract_of_adhesion 0 001 @ 06520944 n 0000 | a contract that heavily restricts one party while leaving the other free (as some standard form printed contracts); implies inequality in bargaining power -06522119 10 n 01 aleatory_contract 0 001 @ 06520944 n 0000 | a contract whose performance by one party depends on the occurrence of an uncertain contingent event (but if it is contingent on the outcome of a wager it is not enforceable) -06522357 10 n 01 bilateral_contract 0 001 @ 06520944 n 0000 | a contract involving mutual promises (each party is both promisor and promisee) -06522501 10 n 01 charter 1 003 @ 06520944 n 0000 + 02460619 v 0103 + 02208537 v 0104 | a contract to hire or lease transportation -06522633 10 n 01 conditional_contract 0 001 @ 06520944 n 0000 | a contract whose performance depends on a fact or event that affects legal relations -06522784 10 n 01 cost-plus_contract 0 001 @ 06520944 n 0000 | a contract in which the contractor is paid his total cost plus a stated percentage of profit -06522941 10 n 01 gambling_contract 0 001 @ 06520944 n 0000 | a contract whose performance by one party is contingent on the outcome of a bet; unenforceable by statute in most jurisdictions -06523132 10 n 01 lease 0 005 @ 06520944 n 0000 + 02208537 v 0101 + 02208903 v 0101 + 02460619 v 0104 + 02460199 v 0102 | a contract granting use or occupation of property during a specified time for a specified payment -06523353 10 n 02 marriage_contract 0 marriage_settlement 0 001 @ 06520944 n 0000 | a prenuptial agreement or contract -06523473 10 n 01 output_contract 0 001 @ 06520944 n 0000 | a contract in which you promise to deliver your entire output to the other party who promises to accept it -06523641 10 n 03 policy 2 insurance_policy 0 insurance 0 002 @ 06520944 n 0000 ~ 06526124 n 0000 | written contract or certificate of insurance; "you should have read the small print on your policy" -06523842 10 n 02 purchase_contract 0 purchase_agreement 0 001 @ 06520944 n 0000 | a contract stating the terms of a purchase -06523969 10 n 01 quasi_contract 0 001 @ 06520944 n 0000 | a contract created by law for reasons of justice without any expression of assent -06524111 10 n 01 requirements_contract 0 001 @ 06520944 n 0000 | a contract in which you agree to purchase all your requirements of a particular sort from one party -06524278 10 n 03 sealed_instrument 0 contract_under_seal 0 special_contract 0 001 @ 06520944 n 0000 | a contract that is signed and has the (wax) seal of the signer attached -06524454 10 n 01 service_contract 0 001 @ 06520944 n 0000 | a contract for maintenance services -06524552 10 n 01 severable_contract 0 001 @ 06520944 n 0000 | a contract which, in the event of a breach by one of the parties, can be considered as several independent agreements expressed in a single instrument -06524767 10 n 01 subcontract 0 003 @ 06520944 n 0000 + 02460883 v 0101 + 02461063 v 0101 | a contract assigning to another party some obligations of a prior contract -06524935 10 n 02 conspiracy 0 confederacy 0 004 @ 06770275 n 0000 + 02919275 a 0101 + 00707624 v 0101 ~ 06525406 n 0000 | a secret agreement between two or more people to perform an unlawful act -06525132 10 n 01 fair-trade_agreement 0 001 @ 06770275 n 0000 | an agreement (illegal in the United States) between the manufacturer of a trademarked item of merchandise and its retail distributors to sell the item at a price at or above the price set by the manufacturer -06525406 10 n 01 conspiracy_of_silence 0 001 @ 06524935 n 0000 | a conspiracy not to talk about some situation or event; "there was a conspiracy of silence about police brutality" -06525588 10 n 01 covenant 1 003 @ 06770275 n 0000 ;c 06431740 n 0000 + 02474780 v 0101 | (Bible) an agreement between God and his people in which God makes certain promises and requires certain behavior from them in return -06525813 10 n 01 unilateral_contract 0 001 @ 06770275 n 0000 | a one-sided agreement whereby you promise to do (or refrain from doing) something in return for a performance (not a promise) -06526004 10 n 01 debenture 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | a certificate or voucher acknowledging a debt -06526124 10 n 02 floater 0 floating_policy 0 001 @ 06523641 n 0000 | an insurance policy covering loss of movable property (e.g. jewelry) regardless of its location -06526291 10 n 01 partnership 0 003 @ 06520944 n 0000 + 10402417 n 0101 + 09935434 n 0103 | a contract between two or more persons who agree to pool talent and money and share profits or losses -06526486 10 n 02 articles_of_agreement 0 shipping_articles 0 001 @ 06520944 n 0000 | a contract between crew and captain of a ship -06526619 10 n 02 concession 0 grant 0 002 @ 06520944 n 0000 ~ 06526811 n 0000 | a contract granting the right to operate a subsidiary business; "he got the beer concession at the ball park" -06526811 10 n 01 franchise 0 002 @ 06526619 n 0000 + 02447542 v 0101 | an authorization to sell a company's goods or services in a particular place -06526961 10 n 03 labor_contract 0 labor_agreement 0 collective_agreement 0 002 @ 06520944 n 0000 ~ 06527170 n 0000 | contract between labor and management governing wages and benefits and working conditions -06527170 10 n 01 yellow-dog_contract 0 001 @ 06526961 n 0000 | a labor contract (now illegal) whereby the employee agrees not to join a trade union -06527320 10 n 02 employment_contract 0 employment_agreement 0 001 @ 06520944 n 0000 | contract between employer and employee -06527447 10 n 01 distribution_agreement 0 001 @ 06520944 n 0000 | a contract governing the marketing of an item of merchandise -06527576 10 n 01 licensing_agreement 0 001 @ 06520944 n 0000 | contract giving someone the legal right to use a patent or trademark -06527710 10 n 02 merger_agreement 0 acquisition_agreement 0 001 @ 06520944 n 0000 | contract governing the merger of two or more companies -06527851 10 n 02 sale 0 sales_agreement 0 003 @ 06770275 n 0000 ~ 06528191 n 0000 ~ 06528557 n 0000 | an agreement (or contract) in which property is transferred from the seller (vendor) to the buyer (vendee) for a fixed price in money (paid or agreed to be paid by the buyer); "the salesman faxed the sales agreement to his home office" -06528191 10 n 01 conditional_sale 0 001 @ 06527851 n 0000 | a sale in which the buyer receives title to the property only upon the performance of some condition (usually the full payment of the purchase price) -06528403 10 n 02 sale_in_gross 0 contract_of_hazard 0 001 @ 06520944 n 0000 | a sale of a tract of land as a whole without a warranty as to the acreage -06528557 10 n 04 sheriff's_sale 0 execution_sale 0 judicial_sale 0 forced_sale 0 001 @ 06527851 n 0000 | a sale of property by the sheriff under authority of a court's writ of execution in order satisfy an unpaid obligation -06528783 10 n 03 appraisal 1 estimate 0 estimation 0 004 @ 06472025 n 0000 + 00672433 v 0301 + 00672433 v 0201 ~ 06528992 n 0000 | a document appraising the value of something (as for insurance or taxation) -06528992 10 n 04 overestimate 0 overestimation 0 overvaluation 0 overappraisal 0 006 @ 06528783 n 0000 + 00695475 v 0301 + 00695475 v 0202 + 00672017 v 0201 + 00695475 v 0102 + 00672017 v 0101 | an appraisal that is too high -06529219 10 n 02 order 1 purchase_order 0 010 @ 06472025 n 0000 + 00745499 v 0101 ~ 06529630 n 0000 ~ 06529879 n 0000 ~ 06529996 n 0000 ~ 06530143 n 0000 ~ 06530255 n 0000 ~ 06530412 n 0000 ~ 06530586 n 0000 ~ 06530703 n 0000 | a commercial document used to request someone to supply something in return for payment and providing specifications and quantities; "IBM received an order for a hundred computers" -06529630 10 n 02 credit_order 0 bill-me_order 0 002 @ 06529219 n 0000 ~ 06529798 n 0000 | an order that is received without payment; requires billing at a later date -06529798 10 n 01 open_account 0 001 @ 06529630 n 0000 | an unpaid credit order -06529879 10 n 01 indent 0 002 @ 06529219 n 0000 ;r 08860123 n 0000 | an order for goods to be exported or imported -06529996 10 n 01 market_order 0 001 @ 06529219 n 0000 | an order to a broker to sell or buy stocks or commodities at the prevailing market price -06530143 10 n 01 production_order 0 001 @ 06529219 n 0000 | an order that initiates the manufacturing process -06530255 10 n 01 reorder 0 001 @ 06529219 n 0000 | a repeated order for the same merchandise; "he's the one who sends out all the new orders and reorders" -06530412 10 n 02 stop_order 0 stop-loss_order 0 001 @ 06529219 n 0000 | an order to a broker to sell (buy) when the price of a security falls (rises) to a designated level -06530586 10 n 01 stop_payment 0 001 @ 06529219 n 0000 | a depositor's order to a bank to refuse payment on a check -06530703 10 n 01 mail_order 0 001 @ 06529219 n 0000 | a purchase negotiated by mail -06530789 10 n 01 power_of_attorney 0 004 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06530976 n 0000 ~ 06531141 n 0000 | a legal instrument authorizing someone to act as the grantor's agent -06530976 10 n 01 stock_power 0 001 @ 06530789 n 0000 | a power of attorney document to transfer ownership of a registered security from the owner to another party -06531141 10 n 01 proxy 0 001 @ 06530789 n 0000 | a power of attorney document given by shareholders of a corporation authorizing a specific vote on their behalf at a corporate meeting -06531327 10 n 01 stock_symbol 0 001 @ 06806469 n 0000 | the letters used to identify listed companies on the securities exchanges where they are traded -06531481 10 n 01 letters_of_administration 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | legal document naming someone to administer an estate when no executor has been named -06531657 10 n 01 letters_testamentary 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | a legal document from a probate court or court officer informing you of your appointment as executor of a will and empowering you to discharge those responsibilities -06531908 10 n 03 working_papers 0 work_papers 0 work_permit 0 001 @ 06479665 n 0000 | a legal document giving information required for employment of certain people in certain countries -06532095 10 n 02 act 1 enactment 0 005 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06532763 n 0000 ~ 06539770 n 0000 ~ 06564387 n 0000 | a legal document codifying the result of deliberations of a committee or society or legislative body -06532330 10 n 01 law 0 016 @ 06479665 n 0000 #p 08441203 n 0000 ;c 08441203 n 0000 ~ 06532910 n 0000 ~ 06533039 n 0000 ~ 06533297 n 0000 ~ 06533484 n 0000 ~ 06533648 n 0000 ~ 06534548 n 0000 ~ 06538105 n 0000 ~ 06538215 n 0000 ~ 06538412 n 0000 ~ 06538655 n 0000 ~ 06538785 n 0000 ~ 06538895 n 0000 ~ 06541820 n 0000 | legal document setting forth rules governing a particular kind of activity; "there is a law against kidnapping" -06532763 10 n 01 nullity 0 002 @ 06532095 n 0000 + 02500590 a 0101 | something that is null (especially an enactment that has no legal validity) -06532910 10 n 01 anti-drug_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a law forbidding the sale or use of narcotic drugs -06533039 10 n 04 anti-racketeering_law 0 Racketeer_Influenced_and_Corrupt_Organizations_Act 0 RICO_Act 0 RICO 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | law intended to eradicate organized crime by establishing strong sanctions and forfeiture provisions -06533297 10 n 02 antitrust_legislation 0 antitrust_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | law intended to promote free competition in the market place by outlawing monopolies -06533484 10 n 01 statute_of_limitations 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a statute prescribing the time period during which legal action can be taken -06533648 10 n 03 fundamental_law 0 organic_law 0 constitution 0 004 @ 06532330 n 0000 ;c 08441203 n 0000 + 02353201 v 0301 ~i 06534132 n 0000 | law determining the fundamental political principles of a government -06533863 10 n 01 Articles_of_Confederation 0 001 @i 06771653 n 0000 | a written agreement ratified in 1781 by the thirteen original states; it provided a legal symbol of their union by giving the central government no coercive power over the states or their citizens -06534132 10 n 05 United_States_Constitution 0 U.S._Constitution 0 US_Constitution 0 Constitution 1 Constitution_of_the_United_States 0 007 @i 06533648 n 0000 ;c 08441203 n 0000 %p 06535980 n 0000 %p 06727758 n 0000 %p 06728726 n 0000 %p 06728998 n 0000 %p 06729251 n 0000 | the constitution written at the Constitutional Convention in Philadelphia in 1787 and subsequently ratified by the original thirteen states -06534548 10 n 01 public_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a law affecting the public at large -06534659 10 n 04 Roman_law 0 Justinian_code 0 civil_law 1 jus_civile 0 004 @ 06667792 n 0000 -c 00087849 n 0000 -c 00577330 v 0000 -c 00889026 v 0000 | the legal code of ancient Rome; codified under Justinian; the basis for many modern systems of civil law -06534918 10 n 01 Salic_law 0 001 @ 06667792 n 0000 | the code of laws of the Salian Franks and other German tribes -06535035 10 n 03 case_law 0 precedent 0 common_law 0 003 @ 08453464 n 0000 ;c 08453464 n 0000 -c 00579564 n 0000 | (civil law) a law established by following earlier judicial decisions -06535222 10 n 02 legislation 0 statute_law 0 009 @ 08453464 n 0000 #p 06536227 n 0000 ;c 08441203 n 0000 + 02466670 v 0101 -c 00354330 a 0000 -c 01125693 n 0000 ~ 06535476 n 0000 ~ 06535652 n 0000 -c 08135342 n 0000 | law enacted by a legislative body -06535476 10 n 01 enabling_legislation 0 002 @ 06535222 n 0000 ;c 08441203 n 0000 | legislation that gives appropriate officials the authority to implement or enforce the law -06535652 10 n 02 occupational_safety_and_health_act 0 federal_job_safety_law 0 002 @ 06535222 n 0000 ;c 08441203 n 0000 | a law passed by the United States Congress that created the Occupational Safety and Health Administration to prevent employees from being injured or contracting diseases in the course of their employment -06535980 10 n 01 advice_and_consent 0 003 @ 07151380 n 0000 #p 06534132 n 0000 ;c 08441203 n 0000 | a legal expression in the United States Constitution that allows the Senate to constrain the President's powers of appointment and treaty-making -06536227 10 n 01 statute_book 0 003 @ 06502378 n 0000 ;c 08441203 n 0000 %p 06535222 n 0000 | a record of the whole body of legislation in a given jurisdiction -06536389 10 n 04 translation 0 interlingual_rendition 0 rendering 2 version 0 008 @ 06502378 n 0000 + 02728142 v 0101 + 00959827 v 0101 ~ 06347122 n 0000 ~ 06347225 n 0000 ~ 06347388 n 0000 ~ 06347588 n 0000 ~ 06347811 n 0000 | a written communication in a second language having the same meaning as the written communication in a first language -06536737 10 n 01 worksheet 1 001 @ 06502378 n 0000 | a piece of paper recording work planned or done on a project -06536853 10 n 02 bill 4 measure 2 008 @ 06479665 n 0000 ;c 08441203 n 0000 %p 06394564 n 0000 ~ 06537124 n 0000 ~ 06537323 n 0000 ~ 06537562 n 0000 ~ 06537701 n 0000 ~ 06537832 n 0000 | a statute in draft before it becomes law; "they held a public hearing on the bill" -06537124 10 n 01 appropriation_bill 0 003 @ 06536853 n 0000 ;c 08441203 n 0000 %p 06483171 n 0000 | a legislative act proposing to authorize the expenditure of public funds for a specified purpose -06537323 10 n 01 bill_of_attainder 0 002 @ 06536853 n 0000 ;c 08441203 n 0000 | a legislative act finding a person guilty of treason or felony without a trial; "bills of attainder are prohibited by the Constitution of the United States" -06537562 10 n 01 bottle_bill 0 002 @ 06536853 n 0000 ;c 08441203 n 0000 | a statute that would require merchants to reclaim used bottles -06537701 10 n 01 farm_bill 0 002 @ 06536853 n 0000 ;c 08441203 n 0000 | a statute that would regulate farm production and prices -06537832 10 n 01 trade_bill 0 002 @ 06536853 n 0000 ;c 08441203 n 0000 | a statute that would regulate foreign trade -06537951 10 n 01 bylaw 0 001 @ 06652242 n 0000 | a rule adopted by an organization in order to regulate its own affairs and the behavior of its members -06538105 10 n 01 blue_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a statute regulating work on Sundays -06538215 10 n 01 blue_sky_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a state law regulating the sale of securities in an attempt to control the sale of securities in fraudulent enterprises -06538412 10 n 01 gag_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | any law that limits freedom of the press -06538525 10 n 01 game_law 0 002 @ 06664051 n 0000 ;c 08441203 n 0000 | a regulation intended to manage or preserve game animals -06538655 10 n 01 homestead_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a law conferring privileges on owners of homesteads -06538785 10 n 01 poor_law 0 002 @ 06532330 n 0000 ;c 08441203 n 0000 | a law providing support for the poor -06538895 10 n 01 Riot_Act 0 003 @ 06532330 n 0000 #p 06539178 n 0000 ;c 08441203 n 0000 | a former English law requiring mobs to disperse after a magistrate reads the law to them -06539076 10 n 01 riot_act 1 001 @ 06711855 n 0000 | a vigorous reprimand; "I read him the riot act" -06539178 10 n 01 criminal_law 0 012 @ 06667792 n 0000 ;c 08441203 n 0000 -c 00766234 n 0000 -c 01189282 n 0000 -c 01193362 n 0000 %p 06538895 n 0000 -c 06560939 n 0000 -c 06561744 n 0000 -c 06561942 n 0000 -c 06563950 n 0000 -c 10474950 n 0000 -c 13350976 n 0000 | the body of law dealing with crimes and their punishment -06539502 10 n 01 court_order 0 007 @ 06552984 n 0000 ;c 08441203 n 0000 ~ 06540863 n 0000 ~ 06553846 n 0000 ~ 06557585 n 0000 ~ 06557827 n 0000 ~ 06558088 n 0000 | a writ issued by a court of law requiring a person to do something or to refrain from doing something -06539770 10 n 05 decree 0 edict 0 fiat 0 order 0 rescript 3 015 @ 06532095 n 0000 ;c 08441203 n 0000 + 00747135 v 0401 + 00746718 v 0401 + 00715868 v 0102 + 01027508 v 0101 ~ 06540284 n 0000 ~ 06540527 n 0000 ~ 06540702 n 0000 ~ 06541167 n 0000 ~ 06541381 n 0000 ~ 06541726 n 0000 ~ 06542047 n 0000 ~ 06542267 n 0000 ~ 06726761 n 0000 | a legally binding command or decision entered on the court record (as if issued by a court or judge); "a friend in New Mexico said that the order caused no trouble out there" -06540284 10 n 01 consent_decree 0 002 @ 06539770 n 0000 ;c 08441203 n 0000 | an agreement between two parties that is sanctioned by the court; for example, a company might agree to stop certain questionable practices without admitting guilt -06540527 10 n 01 curfew 1 002 @ 06539770 n 0000 ;c 08441203 n 0000 | an order that after a specific time certain activities (as being outside on the streets) are prohibited -06540702 10 n 01 decree_nisi 0 002 @ 06539770 n 0000 ;c 08441203 n 0000 | a decree issued on a first petition for divorce; becomes absolute at some later date -06540863 10 n 01 divestiture 0 003 @ 06539502 n 0000 ;c 08441203 n 0000 + 02314275 v 0103 | an order to an offending party to rid itself of property; it has the purpose of depriving the defendant of the gains of wrongful behavior; "the court found divestiture to be necessary in preventing a monopoly" -06541167 10 n 01 imperial_decree 0 003 @ 06539770 n 0000 ~ 06541301 n 0000 ~ 06541578 n 0000 | a decree issued by a sovereign ruler -06541301 10 n 01 ukase 0 001 @ 06541167 n 0000 | an edict of the Russian tsar -06541381 10 n 02 legal_separation 0 judicial_separation 0 002 @ 06539770 n 0000 ;c 08441203 n 0000 | a judicial decree regulating the rights and responsibilities of a married couple living apart -06541578 10 n 02 pragmatic_sanction 0 pragmatic 0 001 @ 06541167 n 0000 | an imperial decree that becomes part of the fundamental law of the land -06541726 10 n 01 programma 0 001 @ 06539770 n 0000 | an edict that has been publicly posted -06541820 10 n 01 prohibition 2 003 @ 06532330 n 0000 ;c 08441203 n 0000 + 10037922 n 0102 | a law forbidding the sale of alcoholic beverages; "in 1920 the 18th amendment to the Constitution established prohibition in the US" -06542047 10 n 03 prohibition 0 ban 0 proscription 0 007 @ 06539770 n 0000 + 00795863 v 0304 + 02493666 v 0201 + 00796392 v 0201 ~ 06542742 n 0000 ~ 06542830 n 0000 ~ 06558088 n 0000 | a decree that prohibits something -06542267 10 n 01 stay 0 005 @ 06539770 n 0000 ;c 08441203 n 0000 + 02560021 v 0101 + 00460900 v 0101 ~ 06542569 n 0000 | a judicial order forbidding some action until an event occurs or the order is lifted; "the Supreme Court has the power to stay an injunction pending an appeal to the whole Court" -06542569 10 n 01 stay_of_execution 0 002 @ 06542267 n 0000 ;c 08441203 n 0000 | an order whereby a judgment is precluded from being executed for a specific period of time -06542742 10 n 01 banning-order 0 001 @ 06542047 n 0000 | an order that bans something -06542830 10 n 04 injunction 1 enjoining 0 enjoinment 0 cease_and_desist_order 0 008 @ 06542047 n 0000 ;c 08441203 n 0000 + 00796839 v 0301 + 00796839 v 0201 + 00796839 v 0101 ~ 06543246 n 0000 ~ 06543389 n 0000 ~ 06543536 n 0000 | (law) a judicial remedy issued in order to prohibit a party from doing or continuing to do a certain activity; "injunction were formerly obtained by writ but now by a judicial order" -06543246 10 n 01 mandatory_injunction 0 002 @ 06542830 n 0000 ;c 08441203 n 0000 | injunction requiring the performance of some specific act -06543389 10 n 02 permanent_injunction 0 final_injunction 0 002 @ 06542830 n 0000 ;c 08441203 n 0000 | injunction issued on completion of a trial -06543536 10 n 02 temporary_injunction 0 interlocutory_injunction 0 002 @ 06542830 n 0000 ;c 08441203 n 0000 | injunction issued during a trial to maintain the status quo or preserve the subject matter of the litigation until the trial is over -06543781 10 n 02 brief 1 legal_brief 0 003 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06543949 n 0000 | a document stating the facts and points of law of a client's case -06543949 10 n 01 amicus_curiae_brief 0 002 @ 06543781 n 0000 ;c 08441203 n 0000 | a brief presented by someone interested in influencing the outcome of a lawsuit but who is not a party to it -06544142 10 n 02 will 0 testament 0 008 @ 06479665 n 0000 ;c 08441203 n 0000 + 02812838 a 0201 + 02229055 v 0102 ~ 06449735 n 0000 ~ 06453849 n 0000 %p 06544657 n 0000 ~ 13416241 n 0000 | a legal document declaring a person's wishes regarding the disposal of their property when they die -06544432 10 n 02 probate 0 probate_will 0 003 @ 06471345 n 0000 ;c 08441203 n 0000 + 02465297 v 0101 | a judicial certificate saying that a will is genuine and conferring on the executors the power to administer the estate -06544657 10 n 01 codicil 0 003 @ 06399337 n 0000 #p 06544142 n 0000 ;c 08441203 n 0000 | a supplement to a will; a testamentary instrument intended to alter an already executed will -06544841 10 n 01 living_will 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | a document written by someone still legally capable requesting that he should be allowed to die if subsequently severely disabled or suffering terminal illness; "after he discovered he had AIDS he drew up a living will" -06545137 10 n 03 deed 0 deed_of_conveyance 0 title 4 007 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06545728 n 0000 ~ 06545843 n 0000 ~ 06545960 n 0000 ~ 06546157 n 0000 ~ 06546261 n 0000 | a legal document signed and sealed and delivered to effect a transfer of property and to show the legal right to possess it; "he signed the deed"; "he kept the title to his car in the glove compartment" -06545528 10 n 01 assignment 2 003 @ 06479665 n 0000 ;c 08441203 n 0000 + 02228531 v 0101 | the instrument by which a claim or right or interest or property is transferred from one person to another -06545728 10 n 01 bill_of_sale 0 002 @ 06545137 n 0000 ;c 08441203 n 0000 | a deed transferring personal property -06545843 10 n 01 deed_poll 0 002 @ 06545137 n 0000 ;c 08441203 n 0000 | a deed made and executed by only one party -06545960 10 n 01 enfeoffment 0 003 @ 06545137 n 0000 ;c 08441203 n 0000 + 02363371 v 0101 | under the feudal system, the deed by which a person was given land in exchange for a pledge of service -06546157 10 n 01 mortgage_deed 0 002 @ 06545137 n 0000 ;c 08441203 n 0000 | deed embodying a mortgage -06546261 10 n 01 title_deed 0 003 @ 06545137 n 0000 ;c 08441203 n 0000 ~ 06546931 n 0000 | a legal document proving a person's right to property -06546408 10 n 02 trust_deed 0 deed_of_trust 0 002 @ 06479665 n 0000 ;c 08441203 n 0000 | a written instrument legally conveying property to a trustee often used to secure an obligation such as a mortgage or promissory note -06546633 10 n 01 conveyance 1 004 @ 06479665 n 0000 ;c 08441203 n 0000 + 09962612 n 0101 ~ 06546783 n 0000 | document effecting a property transfer -06546783 10 n 02 quitclaim 0 quitclaim_deed 0 002 @ 06546633 n 0000 ;c 08441203 n 0000 | document transferring title or right or claim to another -06546931 10 n 01 muniments 0 002 @ 06546261 n 0000 ;c 08441203 n 0000 | deeds and other documentary evidence of title to land -06547059 10 n 01 warrant 0 009 @ 06552984 n 0000 ;c 08441203 n 0000 ~ 06547321 n 0000 ~ 06547615 n 0000 ~ 06547992 n 0000 ~ 06548110 n 0000 ~ 06548317 n 0000 ~ 06548498 n 0000 ~ 06552639 n 0000 | a writ from a court commanding police to perform specified acts -06547321 10 n 01 search_warrant 0 002 @ 06547059 n 0000 ;c 08441203 n 0000 | a warrant authorizing law enforcement officials to search for objects or people involved in the commission of a crime and to produce them in court; the warrant describes the locations where the officials may search -06547615 10 n 02 bench_warrant 0 arrest_warrant 0 003 @ 06547059 n 0000 ;c 08441203 n 0000 ~ 06547832 n 0000 | a warrant authorizing law enforcement officials to apprehend an offender and bring that person to court -06547832 10 n 01 pickup 0 003 @ 06547615 n 0000 ;u 07075172 n 0000 + 01215137 v 0105 | a warrant to take someone into custody; "put out a pickup on that man" -06547992 10 n 01 death_warrant 0 002 @ 06547059 n 0000 ;c 08441203 n 0000 | a warrant to execute the death sentence -06548110 10 n 02 cachet 1 lettre_de_cachet 0 002 @ 06547059 n 0000 ;c 08441203 n 0000 | a warrant formerly issued by a French king who could warrant imprisonment or death in a signed letter under his seal -06548317 10 n 01 reprieve 0 003 @ 06547059 n 0000 ;c 08441203 n 0000 + 02644035 v 0101 | a warrant granting postponement (usually to postpone the execution of the death sentence) -06548498 10 n 01 commutation 0 004 @ 06547059 n 0000 ;c 08441203 n 0000 + 00161225 v 0103 + 00161987 v 0101 | a warrant substituting a lesser punishment for a greater one -06548671 10 n 03 tax_return 0 income_tax_return 0 return 1 006 @ 06479665 n 0000 ~ 06548991 n 0000 ~ 06549115 n 0000 ~ 06549318 n 0000 ~ 06549407 n 0000 ~ 06549566 n 0000 | document giving the tax collector information about the taxpayer's tax liability; "his gross income was enough that he had to file a tax return" -06548991 10 n 01 amended_return 0 001 @ 06548671 n 0000 | a tax return that corrects the information in an earlier return -06549115 10 n 02 declaration_of_estimated_tax 0 estimated_tax_return 0 001 @ 06548671 n 0000 | return required of a taxpayer whose tax withheld from income does not meet the tax liability for the year -06549318 10 n 01 false_return 0 001 @ 06548671 n 0000 | an incorrect income tax return -06549407 10 n 01 information_return 0 001 @ 06548671 n 0000 | a return that provides information to the tax collector but does not compute the tax liability -06549566 10 n 01 joint_return 0 001 @ 06548671 n 0000 | a return filed by a husband and wife -06549661 10 n 03 license 0 licence 0 permit 2 015 @ 06479665 n 0000 ;c 08441203 n 0000 + 00802946 v 0302 + 00802318 v 0301 + 02444662 v 0101 ~ 06550046 n 0000 ~ 06550206 n 0000 ~ 06550381 n 0000 ~ 06550552 n 0000 ~ 06550763 n 0000 ~ 06550891 n 0000 ~ 06551070 n 0000 ~ 06551339 n 0000 ~ 06551498 n 0000 ~ 06690226 n 0000 | a legal document giving official permission to do something -06550046 10 n 01 building_permit 0 001 @ 06549661 n 0000 | a document authorizing the holder to construct a building of a particular kind on a particular lot -06550206 10 n 04 driver's_license 0 driver's_licence 0 driving_license 0 driving_licence 0 001 @ 06549661 n 0000 | a license authorizing the bearer to drive a motor vehicle -06550381 10 n 03 fishing_license 0 fishing_licence 0 fishing_permit 0 001 @ 06549661 n 0000 | a license authorizing the bearer to fish during a specified period of time -06550552 10 n 04 hunting_license 0 hunting_licence 0 hunting_permit 0 game_license 0 001 @ 06549661 n 0000 | a license authorizing the bearer to kill a certain type of animal during a specified period of time -06550763 10 n 01 learner's_permit 0 001 @ 06549661 n 0000 | a document authorizing the bearer to learn to drive an automobile -06550891 10 n 03 letter_of_marque 0 letters_of_marque 0 letter_of_mark_and_reprisal 0 001 @ 06549661 n 0000 | a license to a private citizen to seize property of another nation -06551070 10 n 02 liquor_license 0 liquor_licence 0 002 @ 06549661 n 0000 ~ 06551226 n 0000 | a license authorizing the holder to sell alcoholic beverages -06551226 10 n 01 on-license 0 001 @ 06551070 n 0000 | a license to sell liquor for consumption on the premises -06551339 10 n 04 marriage_license 0 marriage_licence 0 wedding_license 0 wedding_licence 0 001 @ 06549661 n 0000 | a license authorizing two people to marry -06551498 10 n 02 occupation_license 0 occupation_licence 0 001 @ 06549661 n 0000 | a license to pursue a particular occupation -06551627 10 n 02 patent 0 letters_patent 0 003 @ 06479665 n 0000 ;c 08441203 n 0000 + 02445356 v 0101 | an official document granting a right or privilege -06551784 10 n 04 opinion 0 legal_opinion 0 judgment 0 judgement 0 008 @ 06479665 n 0000 ;c 08441203 n 0000 + 02501278 v 0301 ~ 06552116 n 0000 ~ 06552320 n 0000 ~ 06552470 n 0000 ~ 06765656 n 0000 ~ 06765887 n 0000 | the legal document stating the reasons for a judicial decision; "opinions are usually written by a single judge" -06552116 10 n 01 concurring_opinion 0 002 @ 06551784 n 0000 ;c 08441203 n 0000 | an opinion that agrees with the court's disposition of the case but is written to express a particular judge's reasoning -06552320 10 n 01 dissenting_opinion 0 002 @ 06551784 n 0000 ;c 08441203 n 0000 | an opinion that disagrees with the court's disposition of the case -06552470 10 n 01 majority_opinion 0 002 @ 06551784 n 0000 ;c 08441203 n 0000 | the opinion joined by a majority of the court (generally known simply as `the opinion') -06552639 10 n 02 pardon 0 amnesty 0 004 @ 06547059 n 0000 ;c 08441203 n 0000 + 00905677 v 0201 + 00905399 v 0101 | a warrant granting release from punishment for an offense -06552814 10 n 02 acquittance 0 release 1 003 @ 06479665 n 0000 ;c 08441203 n 0000 + 02316304 v 0201 | a legal document evidencing the discharge of a debt or obligation -06552984 10 n 02 writ 0 judicial_writ 0 021 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06539502 n 0000 ~ 06547059 n 0000 ~ 06553472 n 0000 ~ 06553631 n 0000 ~ 06554373 n 0000 ~ 06554531 n 0000 ~ 06554675 n 0000 ~ 06554981 n 0000 ~ 06555191 n 0000 ~ 06555341 n 0000 ~ 06555570 n 0000 ~ 06555695 n 0000 ~ 06555847 n 0000 ~ 06555971 n 0000 ~ 06556150 n 0000 ~ 06556343 n 0000 ~ 06556692 n 0000 ~ 06557047 n 0000 ~ 06557317 n 0000 | (law) a legal document issued by a court or judicial officer -06553472 10 n 01 assize 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | an ancient writ issued by a court of assize to the sheriff for the recovery of property -06553631 10 n 02 certiorari 0 writ_of_certiorari 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a common law writ issued by a superior court to one of inferior jurisdiction demanding the record of a particular case -06553846 10 n 02 execution 0 writ_of_execution 0 002 @ 06539502 n 0000 ;c 08441203 n 0000 | a routine court order that attempts to enforce the judgment that has been granted to a plaintiff by authorizing a sheriff to carry it out -06554078 10 n 02 execution 1 execution_of_instrument 0 003 @ 00615659 n 0000 ;c 08441203 n 0000 + 02563860 v 0101 | (law) the completion of a legal instrument (such as a contract or deed) by signing it (and perhaps sealing and delivering it) so that it becomes legally binding and enforceable -06554373 10 n 02 habeas_corpus 0 writ_of_habeas_corpus 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ ordering a prisoner to be brought before a judge -06554531 10 n 01 venire_facias 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a judicial writ ordering a sheriff to summon people for jury duty -06554675 10 n 02 mandamus 0 writ_of_mandamus 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | an extraordinary writ commanding an official to perform a ministerial act that the law recognizes as an absolute duty and not a matter for the official's discretion; used only when all other judicial remedies fail -06554981 10 n 01 attachment 0 003 @ 06552984 n 0000 ;c 08441203 n 0000 + 02273293 v 0102 | a writ authorizing the seizure of property that may be needed for the payment of a judgment in a judicial proceeding -06555191 10 n 01 fieri_facias 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ ordering a levy on the belongings of a debtor to satisfy the debt -06555341 10 n 01 scire_facias 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a judicial writ based on some record and requiring the party against whom it is brought to show cause why the record should not be enforced or annulled -06555570 10 n 01 sequestration 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ that authorizes the seizure of property -06555695 10 n 01 writ_of_detinue 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ ordering the release of goods that have been unlawfully detained -06555847 10 n 01 writ_of_election 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ ordering the holding of an election -06555971 10 n 01 writ_of_error 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a judicial writ from an appellate court ordering the court of record to produce the records of trial -06556150 10 n 01 writ_of_prohibition 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a judicial writ from a higher court ordering a lower court not to exercise jurisdiction in a particular case -06556343 10 n 01 writ_of_right 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ ordering that land be restored to its rightful owner -06556481 10 n 03 mandate 0 authorization 0 authorisation 0 005 @ 06479665 n 0000 ;c 08441203 n 0000 + 00751389 v 0101 = 00178575 a 0000 = 00179486 a 0000 | a document giving an official instruction or command -06556692 10 n 02 summons 0 process 0 008 @ 06552984 n 0000 ;c 08441203 n 0000 + 01438681 v 0202 + 02582042 v 0204 + 00791134 v 0102 ~ 06558277 n 0000 ~ 06558434 n 0000 ~ 06558678 n 0000 | a writ issued by authority of law; usually compels the defendant's attendance in a civil suit; failure to appear results in a default judgment against the defendant -06557047 10 n 02 subpoena 0 subpoena_ad_testificandum 0 003 @ 06552984 n 0000 ;c 08441203 n 0000 + 00793418 v 0101 | a writ issued by court authority to compel the attendance of a witness at a judicial proceeding; disobedience may be punishable as a contempt of court -06557317 10 n 01 subpoena_duces_tecum 0 002 @ 06552984 n 0000 ;c 08441203 n 0000 | a writ issued by a court at the request of one of the parties to a suit; it requires a witness to bring to court or to a deposition any relevant documents under the witness's control -06557585 10 n 01 gag_order 0 002 @ 06539502 n 0000 ;c 08441203 n 0000 | a court order restricting information or comment by the participants involved in a lawsuit; "imposing a gag order on members of the press violates the First Amendment" -06557827 10 n 01 garnishment 0 003 @ 06539502 n 0000 ;c 08441203 n 0000 + 02274079 v 0102 | a court order to an employer to withhold all or part of an employee's wages and to send the money to the court or to the person who won a lawsuit against the employee -06558088 10 n 02 interdict 1 interdiction 2 004 @ 06539502 n 0000 @ 06542047 n 0000 ;c 08441203 n 0000 + 00795863 v 0103 | a court order prohibiting a party from doing a certain activity -06558277 10 n 01 citation 2 003 @ 06556692 n 0000 ;c 08441203 n 0000 + 00791134 v 0103 | a summons that commands the appearance of a party at a proceeding -06558434 10 n 02 monition 2 process_of_monition 0 002 @ 06556692 n 0000 ;c 08441203 n 0000 | a summons issued after the filing of a libel or claim directing all parties concerned to show cause why the judgment asked for should not be granted -06558678 10 n 01 ticket 0 005 @ 06556692 n 0000 ;c 08441203 n 0000 + 02498716 v 0101 ~ 06558893 n 0000 ~ 06559004 n 0000 | a summons issued to an offender (especially to someone who violates a traffic regulation) -06558893 10 n 01 speeding_ticket 0 001 @ 06558678 n 0000 | a ticket issued for driving above the speed limit -06559004 10 n 01 parking_ticket 0 001 @ 06558678 n 0000 | a ticket issued for parking in a restricted place -06559114 10 n 01 bill_of_Particulars 0 003 @ 06731186 n 0000 #p 06559365 n 0000 ;c 08441203 n 0000 | the particular events to be dealt with in a criminal trial; advises the defendant and the court of the facts the defendant will be required to meet -06559365 10 n 01 pleading 0 018 @ 06722453 n 0000 ;c 08441203 n 0000 + 01016316 v 0101 + 00760576 v 0101 %p 06559114 n 0000 ~ 06559832 n 0000 ~ 06560021 n 0000 ~ 06560254 n 0000 ~ 06561942 n 0000 ~ 06562217 n 0000 ~ 06562615 n 0000 ~ 06562802 n 0000 ~ 06562993 n 0000 ~ 06563168 n 0000 ~ 06563324 n 0000 ~ 06563478 n 0000 ~ 06563640 n 0000 ~ 06563801 n 0000 | (law) a statement in legal and logical form stating something on behalf of a party to a legal proceeding -06559832 10 n 01 affirmative_pleading 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | any defensive pleading that affirms facts rather than merely denying the facts alleged by the plaintiff -06560021 10 n 02 alternative_pleading 0 pleading_in_the_alternative 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | a pleading that alleges facts so separate that it is difficult to determine which facts the person intends to rely on -06560254 10 n 01 answer 3 006 @ 06559365 n 0000 ;c 08441203 n 0000 + 00815171 v 0101 ~ 06560758 n 0000 ~ 06560939 n 0000 ~ 06561138 n 0000 | the principal pleading by the defendant in response to plaintiff's complaint; in criminal law it consists of the defendant's plea of `guilty' or `not guilty' (or nolo contendere); in civil law it must contain denials of all allegations in the plaintiff's complaint that the defendant hopes to controvert and it can contain affirmative defenses or counterclaims -06560758 10 n 01 evasive_answer 0 002 @ 06560254 n 0000 ;c 08441203 n 0000 | (law) an answer by a defendant that fails to admit or deny the allegations set forth in the complaint -06560939 10 n 02 nolo_contendere 0 non_vult 0 002 @ 06560254 n 0000 ;c 06539178 n 0000 | (law) an answer of `no contest' by a defendant who does not admit guilt but that subjects him to conviction -06561138 10 n 01 plea 2 005 @ 06560254 n 0000 ;c 08441203 n 0000 ~ 06561343 n 0000 ~ 06561461 n 0000 ~ 06561744 n 0000 | (law) a defendant's answer by a factual matter (as distinguished from a demurrer) -06561343 10 n 01 counterplea 0 002 @ 06561138 n 0000 ;c 08441203 n 0000 | a plaintiff's reply to a defendant's plea -06561461 10 n 01 dilatory_plea 0 002 @ 06561138 n 0000 ;c 08441203 n 0000 | a plea that delays the action without settling the cause of action; it can challenge the jurisdiction or claim disability of the defendant etc. (such defenses are usually raised in the defendant's answer) -06561744 10 n 02 insanity_plea 0 plea_of_insanity 0 002 @ 06561138 n 0000 ;c 06539178 n 0000 | (criminal law) a plea in which the defendant claims innocence due to mental incompetence at the time -06561942 10 n 02 charge 0 complaint 4 007 @ 06559365 n 0000 #p 07235335 n 0000 ;c 06539178 n 0000 + 00844298 v 0201 + 00843468 v 0101 + 00869931 v 0101 ~ 07234230 n 0000 | (criminal law) a pleading describing some wrong or offense; "he was arrested on a charge of larceny" -06562217 10 n 01 complaint 3 004 @ 06559365 n 0000 ;c 08453464 n 0000 + 00844298 v 0101 ~ 06562436 n 0000 | (civil law) the first pleading of the plaintiff setting out the facts on which the claim for relief is based -06562436 10 n 01 libel 1 002 @ 06562217 n 0000 ;c 08441203 n 0000 | the written statement of a plaintiff explaining the cause of action (the defamation) and any relief he seeks -06562615 10 n 01 defective_pleading 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | any pleading that fails to conform in form or substance to minimum standards of accuracy or sufficiency -06562802 10 n 01 demurrer 1 004 @ 06559365 n 0000 ;c 08441203 n 0000 + 01016626 v 0101 + 00807941 v 0101 | (law) any pleading that attacks the legal sufficiency of the opponent's pleadings -06562993 10 n 02 rebutter 0 rebuttal 1 003 @ 06559365 n 0000 ;c 08441203 n 0000 + 00814850 v 0102 | (law) a pleading by the defendant in reply to a plaintiff's surrejoinder -06563168 10 n 01 replication 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | (law) a pleading made by a plaintiff in reply to the defendant's plea or answer -06563324 10 n 01 rejoinder 1 002 @ 06559365 n 0000 ;c 08441203 n 0000 | (law) a pleading made by a defendant in response to the plaintiff's replication -06563478 10 n 01 special_pleading 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | (law) a pleading that alleges new facts in avoidance of the opposing allegations -06563640 10 n 02 surrebutter 0 surrebuttal 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | (law) a pleading by the plaintiff in reply to the defendant's rebutter -06563801 10 n 01 surrejoinder 0 002 @ 06559365 n 0000 ;c 08441203 n 0000 | (law) a pleading by the plaintiff in reply to the defendant's rejoinder -06563950 10 n 02 plea_bargain 0 plea_bargaining 0 005 @ 07149836 n 0000 ;c 06539178 n 0000 ;c 08441203 n 0000 + 00764526 v 0201 + 00764526 v 0101 | (criminal law) a negotiation in which the defendant agrees to enter a plea of guilty to a lesser charge and the prosecutor agrees to drop a more serious charge; "his admission was part of a plea bargain with the prosecutor"; "plea bargaining helps to stop the courts becoming congested" -06564387 10 n 02 legislative_act 0 statute 0 009 @ 06532095 n 0000 ;c 08441203 n 0000 %p 06394564 n 0000 ~ 06564640 n 0000 ~ 06564887 n 0000 ~ 06565201 n 0000 ~ 06565397 n 0000 ~ 06565788 n 0000 ~ 06565919 n 0000 | an act passed by a legislative body -06564640 10 n 01 fair-trade_act 0 001 @ 06564387 n 0000 | formerly a state law that protected manufacturers from price-cutting by allowing them to set minimum retail prices for their merchandise; eliminated by the United States Congress in 1975 -06564887 10 n 01 Stamp_Act 0 001 @ 06564387 n 0000 | an act passed by the British Parliament in 1756 that raised revenue from the American Colonies by a duty in the form of a stamp required on all newspapers and legal or commercial documents; opposition by the Colonies resulted in the repeal of the act in 1766 -06565201 10 n 02 enabling_act 0 enabling_clause 0 002 @ 06564387 n 0000 ;c 08441203 n 0000 | a provision in a law that confers on appropriate officials the power to implement or enforce the law -06565397 10 n 02 Foreign_Intelligence_Surveillance_Act 0 FISA 0 001 @ 06564387 n 0000 | an act passed by Congress in 1978 to establish procedures for requesting judicial authorization for foreign intelligence surveillance and to create the Foreign Intelligence Surveillance Court; intended to increase United States counterintelligence; separate from ordinary law enforcement surveillance -06565788 10 n 01 ordinance 1 003 @ 06564387 n 0000 ;c 08441203 n 0000 + 00746084 v 0101 | a statute enacted by a city government -06565919 10 n 01 special_act 0 002 @ 06564387 n 0000 ;c 08441203 n 0000 | a legislative act that applies only to a particular person or particular district -06566077 10 n 06 software 0 software_program 0 computer_software 0 software_system 0 software_package 0 package 0 021 @ 06355894 n 0000 ;c 06128570 n 0000 ! 03493333 n 0101 ~ 06566805 n 0000 ~ 06566949 n 0000 ~ 06567143 n 0000 ~ 06567400 n 0000 ~ 06567531 n 0000 ~ 06567689 n 0000 ~ 06567865 n 0000 ~ 06567960 n 0000 ~ 06568134 n 0000 ~ 06568978 n 0000 ~ 06582403 n 0000 ~ 06587596 n 0000 ~ 06587790 n 0000 ~ 06587980 n 0000 ~ 06588139 n 0000 ~ 06588326 n 0000 ~ 06588785 n 0000 ~ 06903255 n 0000 | (computer science) written programs or procedures or rules and associated documentation pertaining to the operation of a computer system and that are stored in read/write memory; "the market for software is expected to expand" -06566805 10 n 01 alpha_software 0 001 @ 06566077 n 0000 | a first release of a software product that is usually tested only by the developers -06566949 10 n 01 authoring_language 0 001 @ 06566077 n 0000 | software that can be used to develop interactive computer programs without the technically demanding task of computer programming -06567143 10 n 01 beta_software 0 001 @ 06566077 n 0000 | software that has not yet been released but has received an alpha test and still has more bugs than a regular release; "beta software is usually available only to particular users who will test it" -06567400 10 n 01 compatible_software 0 001 @ 06566077 n 0000 | software that can run on different computers without modification -06567531 10 n 01 compatible_software 1 001 @ 06566077 n 0000 | application software programs that share common conventions so they can be utilized together -06567689 10 n 02 computer-aided_design 0 CAD 0 001 @ 06566077 n 0000 | software used in art and architecture and engineering and manufacturing to assist in precision drawing -06567865 10 n 01 freeware 0 001 @ 06566077 n 0000 | software that is provided without charge -06567960 10 n 01 groupware 0 001 @ 06566077 n 0000 | software that can be used by a group of people who are working on the same information but may be distributed in space -06568134 10 n 02 operating_system 0 OS 0 007 @ 06566077 n 0000 #p 03962685 n 0000 ;c 06128570 n 0000 ~ 06568422 n 0000 ~ 06568706 n 0000 %p 06580351 n 0000 ~ 06581823 n 0000 | (computer science) software that controls the execution of computer programs and may provide various services -06568422 10 n 02 DOS 0 disk_operating_system 0 002 @ 06568134 n 0000 ~i 06568552 n 0000 | an operating system that is on a disk -06568552 10 n 02 MS-DOS 0 Microsoft_disk_operating_system 0 001 @i 06568422 n 0000 | an operating system developed by Bill Gates for personal computers -06568706 10 n 03 UNIX 0 UNIX_system 0 UNIX_operating_system 0 002 @ 06568134 n 0000 ~i 06568855 n 0000 | trademark for a powerful operating system -06568855 10 n 01 Linux 0 002 @i 06568706 n 0000 ;u 06851742 n 0000 | an open-source version of the UNIX operating system -06568978 10 n 04 program 2 programme 2 computer_program 0 computer_programme 0 042 @ 06566077 n 0000 ;c 06128570 n 0000 + 01747717 v 0202 + 01747717 v 0101 ~ 06569966 n 0000 ~ 06570110 n 0000 ~ 06570963 n 0000 ~ 06572857 n 0000 ~ 06573020 n 0000 ~ 06573223 n 0000 ~ 06573337 n 0000 ~ 06573472 n 0000 ~ 06573600 n 0000 ~ 06574334 n 0000 ~ 06575227 n 0000 ~ 06575932 n 0000 ~ 06576153 n 0000 ~ 06576265 n 0000 ~ 06576539 n 0000 ~ 06576893 n 0000 ~ 06577063 n 0000 ~ 06577369 n 0000 ~ 06577585 n 0000 ~ 06578060 n 0000 ~ 06578203 n 0000 ~ 06578323 n 0000 ~ 06578654 n 0000 ~ 06579452 n 0000 ~ 06579715 n 0000 ~ 06579952 n 0000 ~ 06580219 n 0000 ~ 06580351 n 0000 ~ 06580543 n 0000 ~ 06580646 n 0000 ~ 06581068 n 0000 ~ 06581268 n 0000 ~ 06581410 n 0000 %p 06582403 n 0000 %p 06584891 n 0000 ~ 06902109 n 0000 ~ 06902521 n 0000 ~ 06902831 n 0000 | (computer science) a sequence of instructions that a computer can interpret and execute; "the program required several hundred lines of code" -06569966 10 n 01 anti-virus_program 0 001 @ 06568978 n 0000 | a computer program that checks a computer for viruses and prevents their spread -06570110 10 n 03 application 1 application_program 0 applications_programme 0 009 @ 06568978 n 0000 ~ 06570520 n 0000 ~ 06570647 n 0000 ~ 06570805 n 0000 ~ 06571301 n 0000 ~ 06572011 n 0000 ~ 06572482 n 0000 ~ 06572654 n 0000 ~ 06574841 n 0000 | a program that gives a computer instructions that provide the user with tools to accomplish a task; "he has tried several different word processing applications" -06570520 10 n 01 active_application 0 001 @ 06570110 n 0000 | an application that is currently running and in the foreground -06570647 10 n 01 applet 0 001 @ 06570110 n 0000 | a Java application; an application program that uses the client's web browser to provide a user interface -06570805 10 n 01 frame 1 001 @ 06570110 n 0000 | an application that divides the user's display into two or more windows that can be scrolled independently -06570963 10 n 02 binary 0 binary_program 0 001 @ 06568978 n 0000 | a pre-compiled, pre-linked program that is ready to run under a given operating system; a binary for one operating system will not run on a different operating system; "the same source code can be compiled to produce different binaries for different operating systems" -06571301 10 n 02 browser 0 web_browser 0 008 @ 06570110 n 0000 + 01315333 v 0101 ~i 06571538 n 0000 ~i 06571639 n 0000 ~i 06571724 n 0000 ~i 06571790 n 0000 ~i 06571862 n 0000 ~i 06571938 n 0000 | a program used to view HTML documents -06571538 10 n 03 Internet_Explorer 0 Explorer 0 IE 0 001 @i 06571301 n 0000 | a commercial browser -06571639 10 n 01 Konqueror 0 001 @i 06571301 n 0000 | a freeware browser for Linux -06571724 10 n 01 lynx 0 001 @i 06571301 n 0000 | a text browser -06571790 10 n 01 Mosaic 0 001 @i 06571301 n 0000 | a freeware browser -06571862 10 n 01 Netscape 0 001 @i 06571301 n 0000 | a commercial browser -06571938 10 n 01 Opera 1 001 @i 06571301 n 0000 | a commercial browser -06572011 10 n 02 natural_language_processor 0 natural_language_processing_application 0 002 @ 06570110 n 0000 ~ 06572204 n 0000 | an application program that deals with natural language text -06572204 10 n 01 disambiguator 0 003 @ 06572011 n 0000 ;c 06128570 n 0000 + 00957178 v 0101 | (computer science) a natural language processing application that tries to determine the intended meaning of a word or phrase by examining the linguistic context in which it is used -06572482 10 n 01 job 1 002 @ 06570110 n 0000 ;c 06128570 n 0000 | (computer science) a program application that may consist of several steps but is a single logical unit -06572654 10 n 02 word_processor 0 word_processing_system 0 001 @ 06570110 n 0000 | an application that provides the user with tools needed to write and edit and format text and to send it to a printer -06572857 10 n 01 loop 1 001 @ 06568978 n 0000 | a computer program that performs a series of instructions repeatedly until some specified condition is satisfied -06573020 10 n 01 malevolent_program 0 005 @ 06568978 n 0000 ~ 06585203 n 0000 ~ 06585552 n 0000 ~ 06585816 n 0000 ~ 06586098 n 0000 | a computer program designed to have undesirable or harmful effects -06573223 10 n 01 patch 0 001 @ 06568978 n 0000 | a short set of commands to correct a bug in a computer program -06573337 10 n 02 assembler 0 assembly_program 0 001 @ 06568978 n 0000 | a program to convert assembly language into machine language -06573472 10 n 01 checking_program 0 001 @ 06568978 n 0000 | a program that examines other computer programs for syntax errors -06573600 10 n 02 compiler 0 compiling_program 0 008 @ 06568978 n 0000 ;c 06128570 n 0000 + 01627105 v 0101 ~ 06573934 n 0000 ~ 06574027 n 0000 ~ 06574132 n 0000 ~ 06574231 n 0000 %p 06577369 n 0000 | (computer science) a program that decodes instructions written in a higher order language and produces an assembly language program -06573934 10 n 01 C_compiler 0 001 @ 06573600 n 0000 | a compiler for programs written in C -06574027 10 n 01 Fortran_compiler 0 001 @ 06573600 n 0000 | a compiler for programs written in FORTRAN -06574132 10 n 01 LISP_compiler 0 001 @ 06573600 n 0000 | a compiler for programs written in LISP -06574231 10 n 01 Pascal_compiler 0 001 @ 06573600 n 0000 | a compiler for programs written in Pascal -06574334 10 n 01 debugger 0 002 @ 06568978 n 0000 + 00200242 v 0101 | a program that helps in locating and correcting programming errors -06574473 10 n 02 driver 0 device_driver 0 003 @ 06581410 n 0000 ;c 06128570 n 0000 + 01181741 v 0101 | (computer science) a program that determines how a computer will communicate with a peripheral device -06574680 10 n 01 diagnostic_program 0 001 @ 06581410 n 0000 | a program that recognizes and explains faults in the equipment or mistakes in a computer program -06574841 10 n 02 editor_program 0 editor 0 004 @ 06570110 n 0000 ;c 06128570 n 0000 ~ 06576376 n 0000 ~ 06576727 n 0000 | (computer science) a program designed to perform such editorial functions as rearrangement or modification or deletion of data -06575092 10 n 01 input_program 0 002 @ 06581410 n 0000 %p 06583645 n 0000 | a utility program that organizes the input to a computer -06575227 10 n 02 interface 0 user_interface 0 004 @ 06568978 n 0000 ;c 06128570 n 0000 ~ 06575505 n 0000 ~ 06575681 n 0000 | (computer science) a program that controls a display for the user (usually on a computer monitor) and that allows the user to interact with the system -06575505 10 n 02 command_line_interface 0 CLI 0 001 @ 06575227 n 0000 | a user interface in which you type commands instead of choosing them from a menu or selecting an icon -06575681 10 n 02 graphical_user_interface 0 GUI 0 003 @ 06575227 n 0000 %p 03187268 n 0000 %p 07269916 n 0000 | a user interface based on graphics (icons and pictures and menus) instead of text; uses a mouse as well as a keyboard as an input device -06575932 10 n 02 interpreter 0 interpretive_program 0 003 @ 06568978 n 0000 ;c 06128570 n 0000 + 00959827 v 0102 | (computer science) a program that translates and executes source language statements one line at a time -06576153 10 n 01 job_control 0 001 @ 06568978 n 0000 | a program that is called to prepare each job to be run -06576265 10 n 01 library_program 0 002 @ 06568978 n 0000 #p 07977592 n 0000 | a program in a program library -06576376 10 n 01 linkage_editor 0 001 @ 06574841 n 0000 | an editor program that creates one module from several by resolving cross-references among the modules -06576539 10 n 02 monitor_program 0 monitoring_program 0 001 @ 06568978 n 0000 | a program that observes and regulates and controls or verifies the operations of a data-processing system -06576727 10 n 01 text_editor 0 002 @ 06574841 n 0000 ;c 06128570 n 0000 | (computer science) an application that can be used to create and view and edit text files -06576893 10 n 02 object_program 0 target_program 0 002 @ 06568978 n 0000 ! 06577063 n 0101 | a fully compiled or assembled program ready to be loaded into the computer -06577063 10 n 01 source_program 0 002 @ 06568978 n 0000 ! 06576893 n 0101 | a program written in a language from which statements are translated into machine language -06577232 10 n 01 output_program 0 002 @ 06581410 n 0000 %p 06583929 n 0000 | a utility program that organizes the output of a computer -06577369 10 n 01 parser 0 002 @ 06568978 n 0000 #p 06573600 n 0000 | a computer program that divides code up into functional components; "compilers must parse source code in order to translate it into object code" -06577585 10 n 02 tagger 0 tagging_program 0 003 @ 06568978 n 0000 ~ 06577781 n 0000 ~ 06577916 n 0000 | a computer program that attaches labels to the grammatical constituents of textual matter -06577781 10 n 01 sense_tagger 0 001 @ 06577585 n 0000 | a tagging program whose labels indicate the meanings of words or expressions -06577916 10 n 02 part-of-speech_tagger 0 pos_tagger 0 001 @ 06577585 n 0000 | a tagging program whose labels indicate a word's part of speech -06578060 10 n 01 relocatable_program 0 001 @ 06568978 n 0000 | a program that can be located in different parts of memory at different times -06578203 10 n 01 reusable_program 0 001 @ 06568978 n 0000 | a program that can be loaded once and executed repeatedly -06578323 10 n 02 Web_Map_Service 0 Web_Map_Server 0 002 @ 06568978 n 0000 ~i 06578527 n 0000 | a computer program that produces maps of spatially referenced data dynamically from geographic information -06578527 10 n 01 MapQuest 0 003 @i 06578323 n 0000 + 00649033 v 0101 ;u 06851742 n 0101 | a free, widely-used Web Map Server -06578654 10 n 01 search_engine 0 004 @ 06568978 n 0000 ~i 06578905 n 0000 ~i 06579127 n 0000 ~i 06579294 n 0000 | a computer program that retrieves documents or files or data from a database or from a computer network (especially from the internet) -06578905 10 n 01 Google 0 003 @i 06578654 n 0000 + 00648764 v 0101 ;u 06851742 n 0101 | a widely used search engine that uses text-matching techniques to find web pages that are important and relevant to a user's search -06579127 10 n 01 Yahoo 0 002 @i 06578654 n 0000 ;u 06851742 n 0000 | a widely used search engine for the web that finds information, news, images, products, finance -06579294 10 n 01 Ask_Jeeves 0 002 @i 06578654 n 0000 ;u 06851742 n 0000 | a widely used search engine accepting plain English questions or phrases or terms -06579452 10 n 01 self-adapting_program 0 001 @ 06568978 n 0000 | a program that can change its performance in response to its environment -06579592 10 n 01 snapshot_program 0 001 @ 06580866 n 0000 | a trace program that produces output for selected conditions -06579715 10 n 02 spider 0 wanderer 0 001 @ 06568978 n 0000 | a computer program that prowls the internet looking for publicly accessible resources that can be added to a database; the database can then be searched with a search engine -06579952 10 n 01 spreadsheet 0 001 @ 06568978 n 0000 | a screen-oriented interactive program enabling a user to lay out financial data on the screen -06580103 10 n 02 sort_program 0 sorting_program 0 001 @ 06581410 n 0000 | a utility program that sorts data items -06580219 10 n 01 stored_program 0 001 @ 06568978 n 0000 | a program that is stored in the memory of the computer that executes it -06580351 10 n 03 supervisory_program 0 supervisor 0 executive_program 0 003 @ 06568978 n 0000 #p 06568134 n 0000 %p 06584376 n 0000 | a program that controls the execution of other programs -06580543 10 n 01 syntax_checker 0 001 @ 06568978 n 0000 | a program to check natural language syntax -06580646 10 n 03 system_program 0 systems_program 0 systems_software 0 001 @ 06568978 n 0000 | a program (as an operating system or compiler or utility program) that controls some aspect of the operation of a computer -06580866 10 n 01 trace_program 0 003 @ 06581410 n 0000 ~ 06579592 n 0000 %p 06584536 n 0000 | a utility program that exhibits the sequence and results of executing the instructions in another program -06581068 10 n 01 text-matching 0 001 @ 06568978 n 0000 | a computer program that looks for text that matches a given text; "Google uses text-matching to find web pages containing a particular text" -06581268 10 n 02 translator 0 translating_program 0 001 @ 06568978 n 0000 | a program that translates one programming language into another -06581410 10 n 03 utility_program 0 utility 0 service_program 0 009 @ 06568978 n 0000 ;c 06128570 n 0000 ~ 06574473 n 0000 ~ 06574680 n 0000 ~ 06575092 n 0000 ~ 06577232 n 0000 ~ 06580103 n 0000 ~ 06580866 n 0000 %p 06584702 n 0000 | (computer science) a program designed for general support of the processes of a computer; "a computer system provides utility programs to perform the tasks needed by most users" -06581823 10 n 01 Windows 0 002 @ 06568134 n 0000 ;u 06851742 n 0000 | (trademark) an operating system with a graphical user interface -06581959 10 n 01 decision_table 0 001 @ 06900282 n 0000 | a table of all contingencies and the actions to be taken for each -06582085 10 n 04 flow_chart 0 flowchart 0 flow_diagram 0 flow_sheet 0 001 @ 06900282 n 0000 | a diagram of the sequence of operations in a computer program or an accounting system -06582267 10 n 02 logic_diagram 0 logical_diagram 0 001 @ 06900282 n 0000 | a graphical representation of a program using formal logic -06582403 10 n 05 routine 0 subroutine 0 subprogram 0 procedure 0 function 0 012 @ 06566077 n 0000 #p 06568978 n 0000 + 03103198 a 0401 ~ 06583178 n 0000 ~ 06583354 n 0000 ~ 06583790 n 0000 ~ 06584049 n 0000 ~ 06584162 n 0000 ~ 06584256 n 0000 ~ 06584376 n 0000 ~ 06584536 n 0000 ~ 06584702 n 0000 | a set sequence of steps, part of larger computer program -06582761 10 n 01 call 7 003 @ 06584891 n 0000 ~ 06582986 n 0000 ~ 06587217 n 0000 | an instruction that interrupts the program being executed; "Pascal performs calls by simply giving the name of the routine to be executed" -06582986 10 n 01 function_call 0 001 @ 06582761 n 0000 | a call that passes control to a subroutine; after the subroutine is executed control returns to the next instruction in main program -06583178 10 n 01 cataloged_procedure 0 002 @ 06582403 n 0000 #p 07977592 n 0000 | a set of control statements that have been placed in a library and can be retrieved by name -06583354 10 n 01 contingency_procedure 0 001 @ 06582403 n 0000 | an alternative to the normal procedure; triggered if an unusual but anticipated situation arises -06583518 10 n 01 dump_routine 0 001 @ 06584702 n 0000 | a routine that writes from an internal store to some external medium -06583645 10 n 01 input_routine 0 002 @ 06584702 n 0000 #p 06575092 n 0000 | a routine that writes from an external source to an internal store -06583790 10 n 01 library_routine 0 002 @ 06582403 n 0000 #p 07977592 n 0000 | a debugged routine that is maintained in a program library -06583929 10 n 01 output_routine 0 002 @ 06584702 n 0000 #p 06577232 n 0000 | a routine that controls an output device -06584049 10 n 01 random_number_generator 0 001 @ 06582403 n 0000 | a routine designed to yield a random number -06584162 10 n 01 recursive_routine 0 001 @ 06582403 n 0000 | a routine that can call itself -06584256 10 n 01 reusable_routine 0 001 @ 06582403 n 0000 | a routine that can be loaded once and executed repeatedly -06584376 10 n 02 supervisory_routine 0 executive_routine 0 002 @ 06582403 n 0000 #p 06580351 n 0000 | a routine that coordinates the operation of subroutines -06584536 10 n 01 tracing_routine 0 002 @ 06582403 n 0000 #p 06580866 n 0000 | a routine that provides a chronological record of the execution of a computer program -06584702 10 n 02 utility_routine 0 service_routine 0 005 @ 06582403 n 0000 #p 06581410 n 0000 ~ 06583518 n 0000 ~ 06583645 n 0000 ~ 06583929 n 0000 | a routine that can be used as needed -06584891 10 n 04 instruction 2 command 1 statement 3 program_line 0 009 @ 06355894 n 0000 #p 06568978 n 0000 ;c 06128570 n 0000 ~ 06582761 n 0000 ~ 06586355 n 0000 ~ 06586471 n 0000 ~ 06586886 n 0000 ~ 06587048 n 0000 ~ 06587399 n 0000 | (computer science) a line of code written as part of a computer program -06585203 10 n 02 logic_bomb 0 slag_code 0 001 @ 06573020 n 0000 | a set of instructions inserted into a program that are designed to execute (or `explode') if a particular condition is satisfied; when exploded it may delete or corrupt data, or print a spurious message, or have other harmful effects; "a disgruntled employee planted a logic bomb" -06585552 10 n 02 trojan 0 trojan_horse 0 001 @ 06573020 n 0000 | a program that appears desirable but actually contains something harmful; "the contents of a trojan can be a virus or a worm"; "when he downloaded the free game it turned out to be a trojan horse" -06585816 10 n 02 virus 0 computer_virus 0 001 @ 06573020 n 0000 | a software program capable of reproducing itself and usually capable of causing great harm to files or other programs on the same computer; "a true virus cannot spread to another computer without human assistance" -06586098 10 n 01 worm 0 001 @ 06573020 n 0000 | a software program capable of reproducing itself that can spread from one computer to the next over a network; "worms take advantage of automatic file sending and receiving features found on many computers" -06586355 10 n 01 command_line 0 001 @ 06584891 n 0000 | commands that a user types in order to run an application -06586471 10 n 01 link 1 003 @ 06584891 n 0000 ;c 00928947 n 0000 ~ 06586672 n 0000 | (computing) an instruction that connects one part of a program or an element on a list to another program or list -06586672 10 n 01 hyperlink 0 001 @ 06586471 n 0000 | a link from a hypertext file to another location or file; typically activated by clicking on a highlighted word or icon at a particular location on the screen -06586886 10 n 02 macro 0 macro_instruction 0 001 @ 06584891 n 0000 | a single computer instruction that results in a series of instructions in machine language -06587048 10 n 01 system_error 0 001 @ 06584891 n 0000 | an instruction that is either not recognized by an operating system or is in violation of the procedural rules -06587217 10 n 02 system_call 0 supervisor_call_instruction 0 001 @ 06582761 n 0000 | an instruction that interrupts the program being executed and passes control to the supervisor -06587399 10 n 01 toggle 0 001 @ 06584891 n 0000 | any instruction that works first one way and then the other; it turns something on the first time it is used and then turns it off the next time -06587596 10 n 01 shareware 0 001 @ 06566077 n 0000 | software that is available free of charge; may be distributed for evaluation with a fee requested for additional features or a manual etc. -06587790 10 n 01 shrink-wrapped_software 0 001 @ 06566077 n 0000 | software on CD-ROMs that are boxed and shrink-wrapped and sold in stores (implying a widely supported standard platform) -06587980 10 n 01 spyware 0 001 @ 06566077 n 0000 | computer software that obtains information from a user's computer without the user's knowledge or consent -06588139 10 n 01 supervisory_software 0 001 @ 06566077 n 0000 | specialized programs that reside permanently in the computer's main memory and control the processing of user's programs -06588326 10 n 02 software_documentation 0 documentation 1 002 @ 06566077 n 0000 + 01002297 v 0201 | program listings or technical manuals describing the operation and use of programs -06588511 10 n 04 electronic_database 0 on-line_database 0 computer_database 0 electronic_information_service 0 005 @ 06637824 n 0000 ;c 06128570 n 0000 ~ 06637973 n 0000 ~ 06638527 n 0000 ~ 06638868 n 0000 | (computer science) a database that can be accessed by computers -06588785 10 n 02 database_management_system 0 DBMS 0 003 @ 06566077 n 0000 ~ 06588998 n 0000 ~ 06589151 n 0000 | a software system that facilitates the creation and maintenance and use of an electronic database -06588998 10 n 01 relational_database_management_system 0 001 @ 06588785 n 0000 | a database management system designed to manage a relational database -06589151 10 n 01 object-oriented_database_management_system 0 003 @ 06588785 n 0000 #p 06261922 n 0000 ~ 06589352 n 0000 | a database management system designed to manage an object-oriented database -06589352 10 n 01 hypertext_system 0 001 @ 06589151 n 0000 | a database management system that allows strings of text (`objects') to be processed as a complex network of nodes that are linked together in an arbitrary way -06589574 10 n 01 publication 0 022 @ 04599396 n 0000 + 01745722 v 0102 + 01744611 v 0101 + 00967625 v 0101 %p 04677385 n 0000 %p 06258031 n 0000 ~ 06270308 n 0000 ~ 06270541 n 0000 %p 06387980 n 0000 ~ 06410904 n 0000 ~ 06413666 n 0000 %p 06489659 n 0000 ~ 06590065 n 0000 ~ 06590210 n 0000 ~ 06591442 n 0000 ~ 06593296 n 0000 ~ 06595351 n 0000 ~ 06595797 n 0000 %p 06780678 n 0000 %p 06998748 n 0000 ~ 07258664 n 0000 ~ 07258964 n 0000 | a copy of a printed work offered for distribution -06590065 10 n 01 read 0 003 @ 06589574 n 0000 + 02730813 v 0101 + 00625119 v 0101 | something that is read; "the article was a very good read" -06590210 10 n 02 impression 2 printing 2 005 @ 06589574 n 0000 ;c 06677302 n 0000 ~ 06590446 n 0000 ~ 06590885 n 0000 ~ 06591342 n 0000 | all the copies of a work printed at one time; "they ran off an initial printing of 2000 copies" -06590446 10 n 01 edition 2 003 @ 06590210 n 0000 ~ 06590601 n 0000 ~ 06590723 n 0000 | the form in which a text (especially a printed book) is published -06590601 10 n 01 limited_edition 0 001 @ 06590446 n 0000 | an edition that is restricted to a specific number of copies -06590723 10 n 02 variorum 0 variorum_edition 0 001 @ 06590446 n 0000 | an edition containing various versions of a text or notes by various scholars or editors -06590885 10 n 03 proof 1 test_copy 0 trial_impression 0 006 @ 06590210 n 0000 ;c 06677302 n 0000 + 00628302 v 0102 + 01752316 v 0101 ~ 06591108 n 0000 ~ 06591224 n 0000 | (printing) an impression made to check for errors -06591108 10 n 01 galley_proof 0 001 @ 06590885 n 0000 | a proof taken before the type is broken up to print pages -06591224 10 n 01 foundry_proof 0 001 @ 06590885 n 0000 | a proof taken from a form before duplicate plates are made -06591342 10 n 01 mackle 0 001 @ 06590210 n 0000 | a printed impression that is blurred or doubled -06591442 10 n 02 collection 0 compendium 1 004 @ 06589574 n 0000 ~ 06591609 n 0000 ~ 06592991 n 0000 ~ 06593099 n 0000 | a publication containing a variety of works -06591609 10 n 01 anthology 0 007 @ 06591442 n 0000 + 09796062 n 0101 + 01626705 v 0101 + 01626705 v 0102 ~ 06592576 n 0000 ~ 06592699 n 0000 ~ 06592844 n 0000 | a collection of selected literary passages -06591815 10 n 02 album 0 record_album 0 002 @ 06254669 n 0000 ~ 06592078 n 0000 | one or more recordings issued together; originally released on 12-inch phonograph records (usually with attractive record covers) and later on cassette audiotape and compact disc -06592078 10 n 01 concept_album 0 003 @ 06591815 n 0000 ~ 06592281 n 0000 ~ 06592421 n 0000 | an album whose recordings are unified by some theme (instrumental or lyrical or narrative or compositional) -06592281 10 n 01 rock_opera 0 001 @ 06592078 n 0000 | albums of rock music that aspired to the status of art; first appeared in the 1960s -06592421 10 n 02 tribute_album 0 benefit_album 0 001 @ 06592078 n 0000 | concept album compiling a performer's work or work supporting some worthy cause -06592576 10 n 02 divan 0 diwan 0 001 @ 06591609 n 0000 | a collection of Persian or Arabic poems (usually by one author) -06592699 10 n 03 florilegium 0 garland 0 miscellany 0 001 @ 06591609 n 0000 | an anthology of short literary pieces and poems and ballads etc. -06592844 10 n 01 omnibus 0 001 @ 06591609 n 0000 | an anthology of articles on a related subject or an anthology of the works of a single author -06592991 10 n 01 archives 0 001 @ 06591442 n 0000 | collection of records especially about an institution -06593099 10 n 02 compilation 0 digest 0 005 @ 06591442 n 0000 + 00244625 v 0201 + 00590924 v 0201 + 02304982 v 0106 + 01626138 v 0102 | something that is compiled (as into a single book or file) -06593296 10 n 01 periodical 0 009 @ 06589574 n 0000 + 01967240 a 0102 ~ 06593542 n 0000 ~ 06593668 n 0000 ~ 06593803 n 0000 ~ 06595056 n 0000 ~ 06596978 n 0000 ~ 06597466 n 0000 ~ 06597758 n 0000 | a publication that appears at fixed intervals -06593542 10 n 01 digest 1 003 @ 06593296 n 0000 + 00244625 v 0101 + 00590924 v 0101 | a periodical that summarizes the news -06593668 10 n 01 pictorial 0 002 @ 06593296 n 0000 + 02861617 a 0101 | a periodical (magazine or newspaper) containing many pictures -06593803 10 n 03 series 0 serial 1 serial_publication 0 012 @ 06593296 n 0000 + 01667729 a 0204 + 02797021 a 0201 %p 06391766 n 0000 ~ 06594130 n 0000 ~ 06594258 n 0000 ~ 06594376 n 0000 ~ 06594505 n 0000 ~ 06594625 n 0000 ~ 06594751 n 0000 ~ 06594904 n 0000 %m 06596978 n 0000 | a periodical that appears at scheduled times -06594130 10 n 01 semiweekly 0 001 @ 06593803 n 0000 | a periodical that is published twice each week (or 104 issues per year) -06594258 10 n 01 weekly 0 001 @ 06593803 n 0000 | a periodical that is published every week (or 52 issues per year) -06594376 10 n 01 semimonthly 0 001 @ 06593803 n 0000 | a periodical that is published twice each month (or 24 issues per year) -06594505 10 n 01 monthly 0 001 @ 06593803 n 0000 | a periodical that is published every month (or 12 issues per year) -06594625 10 n 01 quarterly 0 001 @ 06593803 n 0000 | a periodical that is published every quarter (or four issues per year) -06594751 10 n 01 bimonthly 0 001 @ 06593803 n 0000 | a periodical that is published twice a month or every two months (either 24 or 6 issues per year) -06594904 10 n 01 biweekly 0 001 @ 06593803 n 0000 | a periodical that is published twice a week or every two weeks (either 104 or 26 issues per year) -06595056 10 n 01 organ 0 002 @ 06593296 n 0000 ~ 06595220 n 0000 | a periodical that is published by a special interest group; "the organ of the communist party" -06595220 10 n 01 house_organ 0 001 @ 06595056 n 0000 | a periodical published by a business firm for its employees and customers -06595351 10 n 02 magazine 0 mag 0 011 @ 06263369 n 0000 @ 06589574 n 0000 %p 06258228 n 0000 %p 06268784 n 0000 %p 06269014 n 0000 ~ 06596179 n 0000 ~ 06596364 n 0000 ~ 06596474 n 0000 ~ 06596607 n 0000 ~ 06596727 n 0000 ~ 06596845 n 0000 | a periodic publication containing pictures and stories and articles of interest to those who purchase it or subscribe to it; "it takes several years before a magazine starts to break even or make money" -06595797 10 n 01 tip_sheet 0 002 @ 06589574 n 0000 ~ 06596025 n 0000 | a publication containing the latest information or tips or predictions for a particular business or stock market information or horse racing results, etc. -06596025 10 n 02 dope_sheet 0 scratch_sheet 0 001 @ 06595797 n 0000 | a racing publication giving information on horses and the outcomes of horse races -06596179 10 n 01 colour_supplement 0 002 @ 06595351 n 0000 ;r 08860123 n 0000 | (British) a magazine that is printed in color and circulated with a newspaper (especially on weekends) -06596364 10 n 01 comic_book 0 002 @ 06595351 n 0000 %p 07003352 n 0000 | a magazine devoted to comic strips -06596474 10 n 01 news_magazine 0 001 @ 06595351 n 0000 | a magazine devoted to reports of current events; usually published weekly -06596607 10 n 02 pulp 0 pulp_magazine 0 001 @ 06595351 n 0000 | an inexpensive magazine printed on poor quality paper -06596727 10 n 03 slick 0 slick_magazine 0 glossy 0 001 @ 06595351 n 0000 | a magazine printed on good quality paper -06596845 10 n 01 trade_magazine 0 001 @ 06595351 n 0000 | a magazine published for and read by members of a particular trade group -06596978 10 n 02 issue 0 number 0 004 @ 06593296 n 0000 #m 06593803 n 0000 + 00967625 v 0104 ~ 06597204 n 0000 | one of a series published periodically; "she found an old issue of the magazine in her dentist's waiting room" -06597204 10 n 01 edition 0 002 @ 06596978 n 0000 ~ 06597349 n 0000 | an issue of a newspaper; "he read it in yesterday's edition of the Times" -06597349 10 n 01 extra 0 001 @ 06597204 n 0000 | an additional edition of a newspaper (usually to report a crisis) -06597466 10 n 01 journal 0 002 @ 06593296 n 0000 ~ 06597617 n 0000 | a periodical dedicated to a particular subject; "he reads the medical journals" -06597617 10 n 01 annals 1 003 @ 06597466 n 0000 + 02625281 a 0101 + 09794797 n 0101 | reports of the work of a society or learned body etc -06597758 10 n 01 review 3 003 @ 06593296 n 0000 + 00855512 v 0101 ~ 06597930 n 0000 | a periodical that publishes critical essays on current affairs or literature or art -06597930 10 n 01 literary_review 0 001 @ 06597758 n 0000 | a review devoted to literary criticism -06598030 10 n 02 reading 0 reading_material 0 002 @ 06349220 n 0000 ~ 06598244 n 0000 | written material intended to be read; "the teacher assigned new readings"; "he bought some reading material at the airport" -06598244 10 n 02 bumf 0 bumph 0 002 @ 06598030 n 0000 ;r 08860123 n 0000 | reading materials (documents, written information) that you must read and deal with but that you think are extremely boring -06598445 10 n 04 perusal 0 perusing 0 poring_over 0 studying 1 005 @ 05808794 n 0000 + 00607114 v 0401 + 00599992 v 0402 + 02152812 v 0201 + 02152812 v 0101 | reading carefully with intent to remember -06598648 10 n 02 browse 0 browsing 0 001 @ 05808794 n 0000 | reading superficially or at random -06598746 10 n 02 skim 0 skimming 0 005 @ 05808794 n 0000 + 02152278 v 0202 + 00627824 v 0201 + 00627824 v 0101 + 02152278 v 0102 | reading or glancing through quickly -06598915 10 n 04 message 0 content 0 subject_matter 0 substance 0 034 @ 00033020 n 0000 ~ 06394701 n 0000 ~ 06506603 n 0000 ~ 06506757 n 0000 ~ 06513366 n 0000 ~ 06513624 n 0000 ~ 06599655 n 0000 ~ 06599788 n 0000 ~ 06600684 n 0000 ~ 06601327 n 0000 ~ 06607339 n 0000 ~ 06612266 n 0000 ~ 06628861 n 0000 ~ 06634095 n 0000 ~ 06634376 n 0000 ~ 06650701 n 0000 ~ 06684383 n 0000 ~ 06686736 n 0000 ~ 06709533 n 0000 ~ 06714552 n 0000 ~ 06714976 n 0000 ~ 06722186 n 0000 ~ 06722453 n 0000 ~ 06723452 n 0000 ~ 06776138 n 0000 ~ 06782019 n 0000 ~ 06786629 n 0000 ~ 07162194 n 0000 ~ 07164546 n 0000 ~ 07167578 n 0000 ~ 07221094 n 0000 ~ 07247071 n 0000 ~ 07247602 n 0000 ~ 07247803 n 0000 | what a communication that is about something is about -06599655 10 n 01 latent_content 0 002 @ 06598915 n 0000 ;c 00704305 n 0000 | (psychoanalysis) hidden meaning of a fantasy or dream -06599788 10 n 03 subject 0 topic 0 theme 0 007 @ 06598915 n 0000 + 02813680 a 0301 + 02817339 a 0201 ~ 06600139 n 0000 ~ 06600282 n 0000 ~ 06783768 n 0000 ~ 07240278 n 0000 | the subject matter of a conversation or discussion; "he didn't want to discuss that subject"; "it was a very sensitive topic"; "his letters were always on the theme of love" -06600139 10 n 01 bone_of_contention 0 001 @ 06599788 n 0000 | the subject of a dispute; "the real bone of contention, as you know, is money" -06600282 10 n 01 precedent 2 003 @ 06599788 n 0000 + 00126497 a 0101 + 02692686 v 0101 | a subject mentioned earlier (preceding in time) -06600421 10 n 01 didacticism 0 002 @ 00033020 n 0000 + 01324131 a 0102 | communication that is suitable for or intended to be instructive; "the didacticism expected in books for the young"; "the didacticism of the 19th century gave birth to many great museums" -06600684 10 n 05 digression 0 aside 1 excursus 0 divagation 0 parenthesis 1 005 @ 06598915 n 0000 + 01857527 a 0502 + 01857527 a 0501 + 00780575 v 0403 + 00780575 v 0101 | a message that departs from the main subject -06600903 10 n 02 declarative_sentence 0 declaratory_sentence 0 001 @ 06285090 n 0000 | a sentence (in the indicative mood) that makes a declaration -06601053 10 n 01 run-on_sentence 0 001 @ 06285090 n 0000 | an ungrammatical sentence in which two or more independent clauses are conjoined without a conjunction -06601217 10 n 01 topic_sentence 0 001 @ 06285090 n 0000 | a sentence that states the topic of its paragraph -06601327 10 n 04 meaning 0 significance 0 signification 0 import 0 019 @ 06598915 n 0000 + 00932636 v 0402 + 00931852 v 0303 + 01497387 a 0203 + 00932324 v 0201 + 00931852 v 0101 + 00955148 v 0101 ~ 06601973 n 0000 ~ 06602148 n 0000 ~ 06602324 n 0000 ~ 06602472 n 0000 ~ 06602935 n 0000 ~ 06603494 n 0000 ~ 06604066 n 0000 ~ 06605897 n 0000 ~ 06606044 n 0000 ~ 06606191 n 0000 ~ 06606464 n 0000 ~ 06606808 n 0000 | the message that is intended or expressed or signified; "what is the meaning of this sentence"; "the significance of a red traffic light"; "the signification of Chinese characters"; "the import of his announcement was ambiguous" -06601973 10 n 01 lexical_meaning 0 002 @ 06601327 n 0000 #p 06289250 n 0000 | the meaning of a content word that depends on the nonlinguistic concepts it is used to express -06602148 10 n 01 grammatical_meaning 0 002 @ 06601327 n 0000 #p 06291318 n 0000 | the meaning of a word that depends on its role in a sentence; varies with inflectional form -06602324 10 n 02 symbolization 0 symbolisation 0 003 @ 06601327 n 0000 + 00987597 v 0202 + 00987597 v 0101 | the use of symbols to convey meaning -06602472 10 n 02 sense 0 signified 0 002 @ 06601327 n 0000 ~ 06602801 n 0000 | the meaning of a word or expression; the way in which a word or expression or situation can be interpreted; "the dictionary gave several senses for the word"; "in the best sense charity is really a duty"; "the signifier is linked to the signified" -06602801 10 n 03 word_meaning 0 word_sense 0 acceptation 0 002 @ 06602472 n 0000 + 00686447 v 0301 | the accepted meaning of a word -06602935 10 n 02 intension 0 connotation 0 004 @ 06601327 n 0000 + 00723395 a 0201 + 00931232 v 0201 + 00723910 a 0101 | what you must know in order to determine the reference of an expression -06603130 10 n 01 referent 2 001 @ 06303888 n 0000 | something that refers; a term that refers to another term -06603242 10 n 01 referent 1 001 @ 06751974 n 0000 | the first term in a proposition; the term to which other terms relate -06603366 10 n 01 relatum 0 001 @ 06751974 n 0000 | a term in a proposition that is related to the referent of the proposition -06603494 10 n 01 referent 0 004 @ 06601327 n 0000 ~ 06603651 n 0000 ~ 06603816 n 0000 ~ 06603927 n 0000 | something referred to; the object of a reference -06603651 10 n 01 antecedent 0 002 @ 06603494 n 0000 + 00121865 a 0101 | the referent of an anaphor; a phrase or clause that is referred to by an anaphoric pronoun -06603816 10 n 01 denotatum 0 001 @ 06603494 n 0000 | an actual object referred to by a linguistic expression -06603927 10 n 01 designatum 0 001 @ 06603494 n 0000 | something (whether existing or not) that is referred to by a linguistic expression -06604066 10 n 05 effect 0 essence 0 burden 0 core 0 gist 0 001 @ 06601327 n 0000 | the central meaning or theme of a speech or literary work -06604209 10 n 01 alpha_and_omega 0 001 @ 06606694 n 0000 | the basic meaning of something; the crucial part -06604319 10 n 01 ambiguity 0 007 @ 07151380 n 0000 + 01672239 a 0101 + 00895442 a 0102 ~ 06604548 n 0000 ~ 06604743 n 0000 ~ 06604963 n 0000 ~ 06605780 n 0000 | an expression whose meaning cannot be determined from its context -06604548 10 n 01 loophole 0 002 @ 06604319 n 0000 ;c 06520944 n 0000 | an ambiguity (especially one in the text of a law or contract) that makes it possible to evade a difficulty or obligation -06604743 10 n 02 amphibology 0 amphiboly 0 001 @ 06604319 n 0000 | an ambiguous grammatical construction; e.g., `they are flying planes' can mean either that someone is flying planes or that something is flying planes -06604963 10 n 01 parisology 0 001 @ 06604319 n 0000 | the use of ambiguous words -06605046 10 n 01 euphemism 0 011 @ 07151380 n 0000 + 00908483 a 0101 + 00933107 v 0101 ! 06605396 n 0101 -u 00095873 a 0000 -u 00234675 n 0000 -u 07333649 n 0000 -u 07361863 n 0000 -u 08121694 n 0000 -u 13441387 n 0000 -u 13506727 n 0000 | an inoffensive or indirect expression that is substituted for one that is considered offensive or too harsh -06605396 10 n 01 dysphemism 0 005 @ 07151380 n 0000 + 00908672 a 0101 ! 06605046 n 0101 ~ 02924554 n 0000 ~ 10375402 n 0000 | an offensive or disparaging expression that is substituted for an inoffensive one; "his favorite dysphemism was to ask for axle grease when he wanted butter" -06605682 10 n 01 shucks 0 001 @ 07151380 n 0000 | an expression of disappointment or irritation -06605780 10 n 01 double_entendre 0 001 @ 06604319 n 0000 | an ambiguity with one interpretation that is indelicate -06605897 10 n 03 intent 0 purport 0 spirit 0 003 @ 06601327 n 0000 + 00708980 v 0203 + 00955148 v 0102 | the intended meaning of a communication -06606044 10 n 02 moral 0 lesson 1 001 @ 06601327 n 0000 | the significance of a story or event; "the moral of the story is to love thy neighbor" -06606191 10 n 05 nuance 0 nicety 0 shade 0 subtlety 0 refinement 0 002 @ 06601327 n 0000 + 00401688 v 0501 | a subtle difference in meaning or opinion or attitude; "without understanding the finer nuances you can't enjoy the humor"; "don't argue about shades of meaning" -06606464 10 n 01 overtone 0 002 @ 06601327 n 0000 ;u 06295235 n 0000 | (usually plural) an ulterior implicit meaning or quality; "overtones of despair" -06606618 10 n 01 bottom_line 0 001 @ 06606808 n 0000 | the decisive point -06606694 10 n 02 crux 0 crux_of_the_matter 0 002 @ 06606808 n 0000 ~ 06604209 n 0000 | the most important point -06606808 10 n 01 point 1 005 @ 06601327 n 0000 ~ 06606618 n 0000 ~ 06606694 n 0000 ~ 06607067 n 0000 ~ 06607204 n 0000 | a brief version of the essential meaning of something; "get to the point"; "he missed the point of the joke"; "life has lost its point" -06607067 10 n 01 rallying_point 0 001 @ 06606808 n 0000 | a point or principle on which scattered or opposing groups can come together -06607204 10 n 01 talking_point 0 001 @ 06606808 n 0000 | an especially persuasive point helping to support an argument or discussion -06607339 10 n 05 nonsense 0 bunk 1 nonsensicality 0 meaninglessness 0 hokum 0 019 @ 06598915 n 0000 + 01497736 a 0401 + 01498594 a 0302 ~ 06607809 n 0000 ~ 06608035 n 0000 ~ 06608143 n 0000 ~ 06608277 n 0000 ~ 06608405 n 0000 ~ 06608525 n 0000 ~ 06608617 n 0000 ~ 06608728 n 0000 ~ 06608977 n 0000 ~ 06609296 n 0000 ~ 06609403 n 0000 ~ 06609503 n 0000 ~ 06609672 n 0000 ~ 06609785 n 0000 ~ 06609909 n 0000 ~ 06611147 n 0000 | a message that seems to convey no meaning -06607809 10 n 03 absurdity 0 absurdness 0 ridiculousness 0 006 @ 06607339 n 0000 + 01266397 a 0303 + 02570643 a 0309 + 01431112 a 0201 + 02570643 a 0201 + 01431112 a 0101 | a message whose content is at variance with reason -06608035 10 n 02 amphigory 0 nonsense_verse 0 001 @ 06607339 n 0000 | nonsensical writing (usually verse) -06608143 10 n 03 balderdash 0 fiddle-faddle 0 piffle 0 003 @ 06607339 n 0000 + 00106843 v 0301 + 01036804 v 0302 | trivial nonsense -06608277 10 n 02 buzzword 0 cant 1 001 @ 06607339 n 0000 | stock phrases that have become nonsense through endless repetition -06608405 10 n 01 cobblers 0 002 @ 06607339 n 0000 ;r 08860123 n 0000 | nonsense; "I think that is a load of cobblers" -06608525 10 n 01 crock 0 001 @ 06607339 n 0000 | nonsense; foolish talk; "that's a crock" -06608617 10 n 02 fa_la 0 fal_la 0 001 @ 06607339 n 0000 | meaningless syllables in the refrain of a partsong -06608728 10 n 02 gibberish 0 gibber 0 010 @ 06607339 n 0000 + 00776846 v 0201 + 00776846 v 0101 ~ 06610063 n 0000 ~ 06610143 n 0000 ~ 06610332 n 0000 ~ 06610436 n 0000 ~ 06610897 n 0000 ~ 06610992 n 0000 ~ 06612420 n 0000 | unintelligible talking -06608977 10 n 03 incoherence 0 incoherency 0 unintelligibility 0 004 @ 06607339 n 0000 + 00535293 a 0302 + 00464962 a 0101 ~ 06609176 n 0000 | nonsense that is simply incoherent and unintelligible -06609176 10 n 01 word_salad 0 001 @ 06608977 n 0000 | jumble of incoherent speech as sometimes heard in schizophrenia -06609296 10 n 01 jabberwocky 0 001 @ 06607339 n 0000 | nonsensical language (according to Lewis Carroll) -06609403 10 n 02 mummery 0 flummery 0 001 @ 06607339 n 0000 | meaningless ceremonies and flattery -06609503 10 n 05 palaver 0 hot_air 0 empty_words 0 empty_talk 0 rhetoric 3 002 @ 06607339 n 0000 + 01036804 v 0103 | loud and confused and empty talk; "mere rhetoric" -06609672 10 n 02 rigmarole 0 rigamarole 0 001 @ 06607339 n 0000 | a set of confused and meaningless statements -06609785 10 n 02 shmegegge 0 schmegegge 0 002 @ 06607339 n 0000 ;c 06951067 n 0000 | (Yiddish) baloney; hot air; nonsense -06609909 10 n 04 stuff 0 stuff_and_nonsense 0 hooey 0 poppycock 0 002 @ 06607339 n 0000 ;u 07157273 n 0000 | senseless talk; "don't give me that stuff" -06610063 10 n 01 abracadabra 0 001 @ 06608728 n 0000 | gibberish and nonsense -06610143 10 n 03 babble 0 babbling 0 lallation 0 005 @ 06608728 n 0000 + 01065630 v 0201 + 01037650 v 0201 + 01065630 v 0101 + 01037650 v 0101 | gibberish resembling the sounds of a baby -06610332 10 n 02 blather 0 blatherskite 0 002 @ 06608728 n 0000 + 01037650 v 0102 | foolish gibberish -06610436 10 n 01 double_Dutch 0 003 @ 06608728 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | an incomprehensible talk -06610557 10 n 01 bill_of_goods 1 001 @ 06758225 n 0000 | communication (written or spoken) that persuades someone to accept something untrue or undesirable; "they tried to sell me a bill of goods about a secondhand car" -06610779 10 n 02 humbug 1 snake_oil 0 001 @ 06758225 n 0000 | communication (written or spoken) intended to deceive -06610897 10 n 01 double_talk 0 001 @ 06608728 n 0000 | deliberately unintelligible gibberish -06610992 10 n 03 jabber 0 jabbering 0 gabble 0 004 @ 06608728 n 0000 + 01036804 v 030e + 01051956 v 0203 + 01051956 v 0103 | rapid and indistinct speech -06611147 10 n 0b baloney 0 boloney 0 bilgewater 0 bosh 0 drool 0 humbug 0 taradiddle 2 tarradiddle 2 tommyrot 0 tosh 0 twaddle 0 003 @ 06607339 n 0000 ;u 07157273 n 0000 + 01036804 v 0b06 | pretentious or silly talk or writing -06611376 10 n 07 bullshit 0 bull 0 Irish_bull 0 horseshit 0 shit 0 crap 0 dogshit 0 005 @ 06611681 n 0000 ;u 07124340 n 0000 + 01127782 a 0602 + 00839526 v 0203 + 00839526 v 0102 | obscene words for unacceptable behavior; "I put up with a lot of bullshit from that jerk"; "what he said was mostly bull" -06611681 10 n 06 bunk 0 bunkum 0 buncombe 0 guff 0 rot 0 hogwash 0 002 @ 06612266 n 0000 ~ 06611376 n 0000 | unacceptable behavior (especially ludicrously false statements) -06611856 10 n 01 chickenshit 0 002 @ 06612266 n 0000 ;u 07124340 n 0000 | a false statement that is considered to indicate timidity or fear -06611998 10 n 08 folderol 0 rubbish 0 tripe 0 trumpery 0 trash 0 wish-wash 0 applesauce 0 codswallop 0 002 @ 06612266 n 0000 ;u 07157273 n 0000 | nonsensical talk or writing -06612174 10 n 02 pap 0 pablum 0 001 @ 06612266 n 0000 | worthless or oversimplified ideas -06612266 10 n 02 drivel 0 garbage 0 005 @ 06598915 n 0000 ~ 06611681 n 0000 ~ 06611856 n 0000 ~ 06611998 n 0000 ~ 06612174 n 0000 | a worthless message -06612420 10 n 01 mumbo_jumbo 0 001 @ 06608728 n 0000 | language or ritual causing, or intending to cause, confusion -06612538 10 n 02 analects 0 analecta 0 001 @ 06400510 n 0000 | a collection of excerpts from a literary work -06612649 10 n 05 clipping 0 newspaper_clipping 0 press_clipping 0 cutting 0 press_cutting 0 001 @ 06400510 n 0000 | an excerpt cut from a newspaper or magazine; "he searched through piles of letters and clippings" -06612865 10 n 02 cut 4 track 0 001 @ 06400510 n 0000 | a distinct selection of music from a recording or a compact disc; "he played the first cut on the cd"; "the title track of the album" -06613056 10 n 03 quotation 0 quote 1 citation 3 010 @ 06400510 n 0000 + 01705257 v 0302 + 01015866 v 0303 + 01023259 v 0302 + 01024190 v 0304 + 01023259 v 0201 + 01023259 v 0101 ~ 06613340 n 0000 ~ 06613448 n 0000 ~ 06613576 n 0000 | a passage or expression that is quoted or cited -06613340 10 n 01 epigraph 1 001 @ 06613056 n 0000 | a quotation at the beginning of some piece of writing -06613448 10 n 01 mimesis 0 002 @ 06613056 n 0000 + 01216807 a 0101 | the representation of another person's words in a speech -06613576 10 n 02 misquotation 0 misquote 0 002 @ 06613056 n 0000 + 01023781 v 0101 | an incorrect quotation -06613686 10 n 0a movie 0 film 1 picture 2 moving_picture 0 moving-picture_show 0 motion_picture 0 motion-picture_show 0 picture_show 0 pic 0 flick 0 032 @ 06619065 n 0000 @ 04007894 n 0000 + 01711965 v 0201 + 01002740 v 0201 %p 04173172 n 0000 %p 06346681 n 0000 %p 06347588 n 0000 %p 06489968 n 0000 ~ 06614628 n 0000 %p 06614729 n 0000 ~ 06615026 n 0000 ~ 06615216 n 0000 ~ 06615458 n 0000 ~ 06615818 n 0000 ~ 06615927 n 0000 ~ 06616216 n 0000 ~ 06616314 n 0000 ~ 06616806 n 0000 ~ 06617011 n 0000 ~ 06617165 n 0000 ~ 06617413 n 0000 ~ 06617644 n 0000 ~ 06617752 n 0000 ~ 06617866 n 0000 ~ 06618822 n 0000 ~ 06618937 n 0000 ~ 07019172 n 0000 -c 00960562 v 0000 -c 00960734 v 0000 -c 01002740 v 0000 -c 01003049 v 0000 -c 01003741 v 0000 | a form of entertainment that enacts a story by sound and a sequence of images giving the illusion of continuous movement; "they went to a movie every Saturday night"; "the film was shot on location" -06614628 10 n 01 telefilm 0 001 @ 06613686 n 0000 | a movie that is made to be shown on television -06614729 10 n 02 scene 1 shot 1 003 @ 03925226 n 0000 #p 06613686 n 0000 ~ 06614901 n 0000 | a consecutive series of pictures that constitutes a unit of action in a film -06614901 10 n 01 outtake 0 001 @ 06614729 n 0000 | a scene that is filmed but is not used in the final editing of the film -06615026 10 n 02 feature 0 feature_film 0 002 @ 06613686 n 0000 ~ 06616035 n 0000 | the principal (full-length) film in a program at a movie theater; "the feature tonight is `Casablanca'" -06615216 10 n 01 final_cut 0 001 @ 06613686 n 0000 | the final edited version of a movie as approved by the director and producer -06615348 10 n 02 travelogue 0 travelog 0 001 @ 06615561 n 0000 | a film or illustrated lecture on traveling -06615458 10 n 01 home_movie 0 001 @ 06613686 n 0000 | a film made at home by an amateur photographer -06615561 10 n 01 attraction 0 005 @ 06619065 n 0000 + 01807882 v 0101 + 01505254 v 0101 ~ 06615348 n 0000 ~ 06615736 n 0000 | an entertainment that is offered to the public -06615736 10 n 01 counterattraction 0 001 @ 06615561 n 0000 | a rival attraction -06615818 10 n 01 collage_film 0 001 @ 06613686 n 0000 | a movie that juxtaposes different kinds of footage -06615927 10 n 01 coming_attraction 0 001 @ 06613686 n 0000 | a movie that is advertised to draw customers -06616035 10 n 02 Western 0 horse_opera 0 002 @ 06615026 n 0000 ~ 06618653 n 0000 | a film about life in the western United States during the period of exploration and development -06616216 10 n 01 shoot-'em-up 0 001 @ 06613686 n 0000 | a movie featuring shooting and violence -06616314 10 n 01 short_subject 0 003 @ 06613686 n 0000 ~ 06616464 n 0000 ~ 06616703 n 0000 | a brief film; often shown prior to showing the feature -06616464 10 n 03 cartoon 2 animated_cartoon 0 toon 0 003 @ 06616314 n 0000 + 09898346 n 0101 + 01693727 v 0101 | a film made by photographing a series of cartoon drawings to give the illusion of movement when projected in rapid sequence -06616703 10 n 01 newsreel 0 001 @ 06616314 n 0000 | a short film and commentary about current events -06616806 10 n 04 documentary 0 docudrama 0 documentary_film 0 infotainment 0 003 @ 06613686 n 0000 + 01002297 v 0101 + 01934026 a 0102 | a film or TV program presenting the facts about a person or event -06617011 10 n 01 cinema_verite 0 001 @ 06613686 n 0000 | a movie that shows ordinary people in actual activities without being controlled by a director -06617165 10 n 01 film_noir 0 001 @ 06613686 n 0000 | a movie that is marked by a mood of pessimism, fatalism, menace, and cynical characters; "film noir was applied by French critics to describe American thriller or detective films in the 1940s" -06617413 10 n 01 skin_flick 0 003 @ 06613686 n 0000 ;u 07157273 n 0000 ~ 06617527 n 0000 | a pornographic movie -06617527 10 n 01 peepshow 0 001 @ 06617413 n 0000 | a short pornographic film shown in a small coin-operated booth -06617644 10 n 01 rough_cut 0 001 @ 06613686 n 0000 | the first print of a movie after preliminary editing -06617752 10 n 03 silent_movie 0 silent_picture 0 silents 0 001 @ 06613686 n 0000 | a movie without a soundtrack -06617866 10 n 01 slow_motion 0 001 @ 06613686 n 0000 | a movie that apparently takes place at a slower than normal speed; achieved by taking the film at a faster rate -06618035 10 n 01 dissolve 0 002 @ 06401328 n 0000 + 00447771 v 0101 | (film) a gradual transition from one scene to the next; the next scene is gradually superimposed as the former scene fades out -06618234 10 n 01 cut 0 002 @ 06401328 n 0000 ~ 06618549 n 0000 | (film) an immediate transition from one shot to the next; "the cut from the accident scene to the hospital seemed too abrupt" -06618427 10 n 01 jump 0 002 @ 06401328 n 0000 + 00560391 v 0102 | (film) an abrupt transition from one scene to another -06618549 10 n 01 jump_cut 0 001 @ 06618234 n 0000 | an immediate transition from one scene to another -06618653 10 n 01 spaghetti_Western 0 002 @ 06616035 n 0000 ;r 08801678 n 0000 | a low-budget Western movie produced by a European (especially an Italian) film company -06618822 10 n 02 talking_picture 0 talkie 0 001 @ 06613686 n 0000 | a movie with synchronized speech and singing -06618937 10 n 03 three-D 0 3-D 0 3D 0 001 @ 06613686 n 0000 | a movie with images having three dimensional form or appearance -06619065 10 n 01 show 0 012 @ 07288639 n 0000 + 02148788 v 0101 ~ 00528397 n 0000 ~ 06613686 n 0000 ~ 06615561 n 0000 ~ 06619428 n 0000 ~ 06891493 n 0000 ~ 07017999 n 0000 ~ 07018931 n 0000 ~ 07019500 n 0000 ~ 07019633 n 0000 ~ 07020239 n 0000 | a social event involving a public performance or entertainment; "they wanted to see some of the shows on Broadway" -06619428 10 n 03 broadcast 1 program 1 programme 1 011 @ 06619065 n 0000 + 00973056 v 0103 + 00968211 v 0107 ~ 06619850 n 0000 ~ 06620063 n 0000 ~ 06620227 n 0000 ~ 06620579 n 0000 ~ 06621061 n 0000 ~ 06621447 n 0000 ~ 06621771 n 0000 ~ 06621917 n 0000 | a radio or television show; "did you see his program last night?" -06619751 10 n 01 rebroadcast 1 001 @ 06254007 n 0000 | a broadcast that repeated at a later time -06619850 10 n 03 news_program 0 news_show 0 news 2 002 @ 06619428 n 0000 ~ 06683692 n 0000 | a program devoted to current events, often using interviews and commentary; "we watch the 7 o'clock news every night" -06620063 10 n 01 rerun 0 003 @ 06619428 n 0000 + 01649482 v 0101 + 00973888 v 0101 | a program that is broadcast again; "she likes to watch `I love Lucy' reruns" -06620227 10 n 02 talk_show 0 chat_show 0 002 @ 06619428 n 0000 ~ 06620467 n 0000 | a program during which well-known people discuss a topic or answer questions telephoned in by the audience; "in England they call a talk show a chat show" -06620467 10 n 01 phone-in 0 001 @ 06620227 n 0000 | a program in which the audience participates by telephone -06620579 10 n 04 television_program 0 TV_program 0 television_show 0 TV_show 0 005 @ 06619428 n 0000 ~ 06620790 n 0000 ~ 06620906 n 0000 ~ 07017379 n 0000 ~ 07017534 n 0000 | a program broadcast by television -06620790 10 n 02 colorcast 0 colourcast 0 001 @ 06620579 n 0000 | a television program that is broadcast in color -06620906 10 n 03 pilot_program 0 pilot_film 0 pilot 0 001 @ 06620579 n 0000 | a program exemplifying a contemplated series; intended to attract sponsors -06621061 10 n 02 game_show 0 giveaway 1 002 @ 06619428 n 0000 ~ 06621215 n 0000 | a television or radio program in which contestants compete for awards -06621215 10 n 01 quiz_program 0 001 @ 06621061 n 0000 | a game show in which contestants answer questions -06621323 10 n 01 film_clip 0 002 @ 03338821 n 0000 #p 06622595 n 0000 | a strip of motion picture film used in a telecast -06621447 10 n 02 serial 0 series 1 006 @ 06619428 n 0000 + 01667729 a 0104 + 02797021 a 0101 %p 06621771 n 0000 ~ 06622020 n 0000 ~ 06622252 n 0000 | a serialized set of programs; "a comedy series"; "the Masterworks concert series" -06621681 10 n 01 cliffhanger 0 001 @ 06621771 n 0000 | an episode that ends in suspense -06621771 10 n 03 episode 0 installment 0 instalment 0 003 @ 06619428 n 0000 #p 06621447 n 0000 ~ 06621681 n 0000 | a part of a broadcast serial -06621917 10 n 01 sustaining_program 0 001 @ 06619428 n 0000 | a program without a commercial sponsor -06622020 10 n 01 soap_opera 0 001 @ 06621447 n 0000 | a serialized program usually dealing with sentimentalized family matters that is broadcast on radio or television (frequently sponsored by a company advertising soap products) -06622252 10 n 01 tetralogy 0 001 @ 06621447 n 0000 | a series of four related works (plays or operas or novels) -06622366 10 n 01 radio_broadcast 0 001 @ 06254007 n 0000 | a broadcast via radio -06622449 10 n 01 simulcast 0 001 @ 06254007 n 0000 | a broadcast that is carried simultaneously by radio and television (or by FM and AM radio) -06622595 10 n 01 telecast 0 003 @ 06254007 n 0000 + 00969506 v 0101 %p 06621323 n 0000 | a television broadcast -06622709 10 n 02 telegram 0 wire 0 005 @ 06253690 n 0000 + 01007222 v 0203 ~ 06275095 n 0000 ~ 06275219 n 0000 ~ 06622877 n 0000 | a message transmitted by telegraph -06622877 10 n 01 night_letter 0 001 @ 06622709 n 0000 | a cheaper form of telegram sent for delivery the next day -06622993 10 n 01 airmail 1 001 @ 06275634 n 0000 | letters and packages that are transported by aircraft -06623100 10 n 01 air_mail 0 002 @ 06275634 n 0000 ! 06623207 n 0101 | mail that is sent by air transport -06623207 10 n 01 surface_mail 0 002 @ 06275634 n 0000 ! 06623100 n 0101 | mail that is sent by land or sea -06623316 10 n 02 registered_mail 0 registered_post 0 001 @ 06275634 n 0000 | mail that is registered by the post office when sent in order to assure safe delivery -06623481 10 n 01 special_delivery 0 001 @ 06275634 n 0000 | mail that is delivered by a special carrier (for an additional charge) -06623614 10 n 01 correspondence 0 005 @ 06349220 n 0000 @ 06265272 n 0000 + 01006810 v 0101 %p 06624161 n 0000 ~ 06627006 n 0000 | communication by the exchange of letters -06623788 10 n 01 Kamasutra 0 002 @i 06463347 n 0000 ;c 06236802 n 0000 | (Hinduism) an ancient Sanskrit text giving rules for sensuous and sensual pleasure and love and marriage in accordance with Hindu law -06623997 10 n 01 sutra 0 001 @ 06463347 n 0000 | a rule or aphorism in Sanskrit literature or a group of aphoristic doctrinal summaries prepared for memorization -06624161 10 n 02 letter 0 missive 0 023 @ 06387980 n 0000 @ 03217458 n 0000 #p 06623614 n 0000 #p 06275634 n 0000 ~ 06624724 n 0000 ~ 06624816 n 0000 ~ 06624967 n 0000 ~ 06625062 n 0000 ~ 06625217 n 0000 ~ 06625329 n 0000 ~ 06625465 n 0000 ~ 06625601 n 0000 ~ 06625739 n 0000 ~ 06625850 n 0000 ~ 06625965 n 0000 ~ 06626060 n 0000 ~ 06626183 n 0000 ~ 06626743 n 0000 ~ 06626860 n 0000 %p 06764623 n 0000 %p 06787150 n 0000 %p 07012534 n 0000 ~ 07186148 n 0000 | a written message addressed to a person or organization; "mailed an indignant letter to the editor" -06624724 10 n 01 business_letter 0 001 @ 06624161 n 0000 | a letter dealing with business -06624816 10 n 02 covering_letter 0 cover_letter 0 001 @ 06624161 n 0000 | a letter sent along with other documents to provide additional information -06624967 10 n 01 crank_letter 0 001 @ 06624161 n 0000 | a hostile (usually anonymous) letter -06625062 10 n 02 encyclical 0 encyclical_letter 0 001 @ 06624161 n 0000 | a letter from the pope sent to all Roman Catholic bishops throughout the world -06625217 10 n 01 fan_letter 0 002 @ 06624161 n 0000 #p 08463345 n 0000 | a letter that is a piece of fan mail -06625329 10 n 01 personal_letter 0 003 @ 06624161 n 0000 ~ 06626286 n 0000 ~ 06626618 n 0000 | a letter dealing with personal affairs -06625465 10 n 01 form_letter 0 001 @ 06624161 n 0000 | a letter that is printed in multiple copies and mailed to a list of recipients -06625601 10 n 01 open_letter 0 001 @ 06624161 n 0000 | a letter of protest; addressed to one person but intended for the general public -06625739 10 n 01 chain_letter 0 001 @ 06624161 n 0000 | a letter that is sent successively to several people -06625850 10 n 01 pastoral 2 002 @ 06624161 n 0000 + 02860564 a 0101 | a letter from a pastor to the congregation -06625965 10 n 01 round_robin 0 001 @ 06624161 n 0000 | a letter signed by a number of people -06626060 10 n 04 airmail_letter 0 air_letter 0 aerogram 0 aerogramme 0 001 @ 06624161 n 0000 | a letter sent by air mail -06626183 10 n 01 epistle 1 002 @ 06624161 n 0000 + 01046553 a 0101 | a specially long, formal letter -06626286 10 n 04 note 3 short_letter 0 line 4 billet 0 002 @ 06625329 n 0000 ~ 06626446 n 0000 | a short personal letter; "drop me a line when you get there" -06626446 10 n 01 excuse 1 003 @ 06626286 n 0000 + 00894221 v 0101 + 00893878 v 0101 | a note explaining an absence; "he had to get his mother to write an excuse for him" -06626618 10 n 02 love_letter 0 billet_doux 0 001 @ 06625329 n 0000 | a personal letter to a loved one expressing affection -06626743 10 n 02 dead_letter 0 dead_mail 0 001 @ 06624161 n 0000 | mail that can neither be delivered nor returned -06626860 10 n 01 letter_of_intent 0 002 @ 06624161 n 0000 ~ 13419755 n 0000 | any letter expressing an intention to take (or forgo) some action -06627006 10 n 01 card 0 005 @ 06623614 n 0000 ~ 06627357 n 0000 ~ 06627450 n 0000 ~ 06627938 n 0000 ~ 06628328 n 0000 | a rectangular piece of stiff paper used to send messages (may have printed greetings or pictures); "they sent us a card from Miami" -06627260 10 n 01 birthday_card 0 001 @ 06627450 n 0000 | a card expressing a birthday greeting -06627357 10 n 01 get-well_card 0 001 @ 06627006 n 0000 | a card expressing get-well wishes -06627450 10 n 01 greeting_card 0 005 @ 06627006 n 0000 ~ 06627260 n 0000 ~ 06627623 n 0000 ~ 06627722 n 0000 ~ 06627816 n 0000 | a card sent to express personal greetings -06627623 10 n 01 Christmas_card 0 001 @ 06627450 n 0000 | a card expressing a Christmas greeting -06627722 10 n 01 Easter_card 0 001 @ 06627450 n 0000 | a card expressing an Easter greeting -06627816 10 n 01 Valentine 0 001 @ 06627450 n 0000 | a card sent or given (as to a sweetheart) on Saint Valentine's Day -06627938 10 n 04 postcard 0 post_card 0 postal_card 0 mailing-card 0 003 @ 06627006 n 0000 ~ 06628125 n 0000 ~ 06628228 n 0000 | a card for sending messages by post without an envelope -06628125 10 n 01 lettercard 0 001 @ 06627938 n 0000 | a postcard that folds so the message is inside -06628228 10 n 01 picture_postcard 0 001 @ 06627938 n 0000 | a postcard with a picture on one side -06628328 10 n 01 sympathy_card 0 003 @ 06627006 n 0000 ~ 06628450 n 0000 ~ 06628663 n 0000 | a card expressing sympathy -06628450 10 n 01 Mass_card 0 002 @ 06628328 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a card sent to a bereaved family that says the sender has arranged for a Mass to be said in memory of the deceased -06628663 10 n 01 spiritual_bouquet 0 002 @ 06628328 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a card indicating that the sender will perform certain devotional acts on behalf of another -06628861 10 n 02 acknowledgment 0 acknowledgement 0 016 @ 06598915 n 0000 + 01059123 v 0102 + 00892467 v 0101 + 00592883 v 0101 ~ 06489968 n 0000 ~ 06520222 n 0000 ~ 06629392 n 0000 ~ 06630017 n 0000 ~ 06631921 n 0000 ~ 06632097 n 0000 ~ 06633363 n 0000 ~ 06633596 n 0000 ~ 06633692 n 0000 ~ 06634239 n 0000 ~ 07215948 n 0000 ~ 07228971 n 0000 | a statement acknowledging something or someone; "she must have seen him but she gave no sign of acknowledgment"; "the preface contained an acknowledgment of those who had helped her" -06629392 10 n 02 farewell 0 word_of_farewell 0 006 @ 06628861 n 0000 ~ 06629610 n 0000 ~ 06629858 n 0000 ~ 06632671 n 0000 ~ 06632807 n 0000 ~ 06632947 n 0000 | an acknowledgment or expression of goodwill at parting -06629610 10 n 0f adieu 0 adios 0 arrivederci 0 auf_wiedersehen 0 au_revoir 0 bye 0 bye-bye 0 cheerio 0 good-by 0 goodby 0 good-bye 0 goodbye 0 good_day 0 sayonara 0 so_long 0 001 @ 06629392 n 0000 | a farewell remark; "they said their good-byes" -06629858 10 n 02 bon_voyage 0 send-off 0 002 @ 06629392 n 0000 + 01062555 v 0203 | an organized expression of goodwill at the start of a trip or new venture -06630017 10 n 02 greeting 0 salutation 0 017 @ 06628861 n 0000 ;u 06295235 n 0000 + 00899597 v 0201 + 00897125 v 0101 + 00897241 v 0101 ~ 06630459 n 0000 ~ 06630627 n 0000 ~ 06630852 n 0000 ~ 06631050 n 0000 ~ 06631140 n 0000 ~ 06631322 n 0000 ~ 06632358 n 0000 ~ 06632511 n 0000 ~ 06632671 n 0000 ~ 06632807 n 0000 ~ 06633041 n 0000 ~ 06633205 n 0000 | (usually plural) an acknowledgment or expression of good will (especially on meeting) -06630459 10 n 01 well-wishing 0 002 @ 06630017 n 0000 + 01000737 a 0101 | an expression of good will from one person to another; "much hand-shaking and well-wishing" -06630627 10 n 03 regard 0 wish 1 compliments 1 003 @ 06630017 n 0000 ;u 06295235 n 0000 + 00902932 v 0201 | (usually plural) a polite expression of desire for someone's welfare; "give him my kind regards"; "my best wishes" -06630852 10 n 02 reception 1 response 2 002 @ 06630017 n 0000 + 10511069 n 0101 | the manner in which something is greeted; "she did not expect the cold reception she received from her superiors" -06631050 10 n 01 hail 0 002 @ 06630017 n 0000 + 00900376 v 0101 | enthusiastic greeting -06631140 10 n 02 pax 0 kiss_of_peace 0 002 @ 06630017 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a greeting signifying Christian love for those assisting at the Eucharist -06631322 10 n 01 welcome 0 005 @ 06630017 n 0000 + 02237206 v 0101 ~ 06631506 n 0000 ~ 06631661 n 0000 ~ 06631833 n 0000 | a greeting or reception; "the proposal got a warm welcome" -06631506 10 n 02 cordial_reception 0 hospitality 0 003 @ 06631322 n 0000 + 01243825 a 0201 ! 06631661 n 0201 | kindness in welcoming guests or strangers -06631661 10 n 01 inhospitality 0 003 @ 06631322 n 0000 + 01244195 a 0101 ! 06631506 n 0102 | unkind and inconsiderate welcome; "he was taken aback by such inhospitality" -06631833 10 n 01 glad_hand 0 001 @ 06631322 n 0000 | a warm welcome; may be insincere -06631921 10 n 02 aloha 0 ciao 0 002 @ 06628861 n 0000 ;r 08801678 n 0000 | an acknowledgment that can be used to say hello or goodbye (aloha is Hawaiian and ciao is Italian) -06632097 10 n 04 handshake 0 shake 0 handshaking 0 handclasp 0 005 @ 06628861 n 0000 ;c 06520944 n 0000 + 00898019 v 0301 + 00992518 v 0201 + 00898019 v 0101 | grasping and shaking a person's hand (as to acknowledge an introduction or to agree on a contract) -06632358 10 n 01 salute 2 002 @ 06630017 n 0000 + 00899597 v 0101 | an act of greeting with friendly words and gestures like bowing or lifting the hat -06632511 10 n 05 hello 0 hullo 0 hi 0 howdy 0 how-do-you-do 0 001 @ 06630017 n 0000 | an expression of greeting; "every morning they exchanged polite hellos" -06632671 10 n 02 good_morning 0 morning 0 002 @ 06630017 n 0000 @ 06629392 n 0000 | a conventional expression of greeting or farewell -06632807 10 n 02 good_afternoon 0 afternoon 0 002 @ 06630017 n 0000 @ 06629392 n 0000 | a conventional expression of greeting or farewell -06632947 10 n 01 good_night 0 001 @ 06629392 n 0000 | a conventional expression of farewell -06633041 10 n 02 salute 1 military_greeting 0 004 @ 06630017 n 0000 ;c 08199025 n 0000 + 00899956 v 0101 + 00900214 v 0101 | a formal military gesture of respect -06633205 10 n 03 calling_card 0 visiting_card 0 card 4 001 @ 06630017 n 0000 | a printed or written greeting that is left to indicate that you have visited -06633363 10 n 01 apology 0 005 @ 06628861 n 0000 + 01631830 a 0101 + 00892923 v 0101 + 00894738 v 0102 + 00892923 v 0102 | an expression of regret at having caused trouble for someone; "he wrote a letter of apology to the hostess" -06633596 10 n 01 mea_culpa 0 001 @ 06628861 n 0000 | an acknowledgment of your error or guilt -06633692 10 n 02 condolence 0 commiseration 0 004 @ 06628861 n 0000 + 01822248 v 0201 + 02375491 a 0101 + 01822536 v 0101 | an expression of sympathy with another's grief; "they sent their condolences" -06633896 10 n 02 congratulation 0 felicitation 0 004 @ 07160883 n 0000 + 00881998 v 0202 + 00883847 v 0102 + 00881998 v 0101 | the act of acknowledging that someone has an occasion for celebration -06634095 10 n 01 refusal 0 003 @ 06598915 n 0000 + 02237338 v 0101 ~ 06634239 n 0000 | a message refusing to accept something that is offered -06634239 10 n 02 declination 0 regrets 0 003 @ 06634095 n 0000 @ 06628861 n 0000 + 02237338 v 0105 | a polite refusal of an invitation -06634376 10 n 02 information 0 info 0 028 @ 06598915 n 0000 + 00831651 v 0101 ~ 06484696 n 0000 ~ 06485001 n 0000 ~ 06634960 n 0000 ~ 06635509 n 0000 ~ 06635944 n 0000 ~ 06636259 n 0000 ~ 06636806 n 0000 ~ 06637677 n 0000 ~ 06637824 n 0000 ~ 06642138 n 0000 ~ 06642356 n 0000 ~ 06642518 n 0000 ~ 06642672 n 0000 ~ 06650070 n 0000 ~ 06651854 n 0000 ~ 06672953 n 0000 ~ 06673142 n 0000 ~ 06674542 n 0000 ~ 06676416 n 0000 ~ 06681177 n 0000 ~ 06733939 n 0000 ~ 06819698 n 0000 ~ 07002992 n 0000 ~ 07218853 n 0000 ~ 07219004 n 0000 ~ 07220300 n 0000 | a message received and understood -06634960 10 n 01 misinformation 0 004 @ 06634376 n 0000 + 00834009 v 0101 ~ 06635104 n 0000 ~ 06635313 n 0000 | information that is incorrect -06635104 10 n 01 blowback 0 001 @ 06634960 n 0000 | misinformation resulting from the recirculation into the source country of disinformation previously planted abroad by that country's intelligence service -06635313 10 n 01 disinformation 0 001 @ 06634960 n 0000 | misinformation that is deliberately disseminated in order to influence or confuse rivals (foreign enemies or business competitors etc.) -06635509 10 n 01 material 0 003 @ 06634376 n 0000 ~ 06635759 n 0000 ~ 06676109 n 0000 | information (data or ideas or observations) that can be used or reworked into a finished form; "the archives provided rich material for a definitive biography" -06635759 10 n 01 rehash 0 003 @ 06635509 n 0000 + 01009097 v 0102 + 01162629 v 0101 | old material that is slightly reworked and used again; "merely a dull rehash of his first novel" -06635944 10 n 02 details 0 inside_information 0 002 @ 06634376 n 0000 ~ 06636113 n 0000 | true confidential information; "after the trial he gave us the real details" -06636113 10 n 04 dope 0 poop 0 the_skinny 0 low-down 0 001 @ 06635944 n 0000 | slang terms for inside information; "is that the straight dope?" -06636259 10 n 01 fact 1 004 @ 06634376 n 0000 ~ 06636524 n 0000 ~ 06639563 n 0000 ~ 06639674 n 0000 | a statement or assertion of verified information about something that is the case or has happened; "he supported his argument with an impressive array of facts" -06636524 10 n 03 record 2 record_book 0 book 2 004 @ 06636259 n 0000 ~ 06504049 n 0000 ~ 06507592 n 0000 ~ 06507941 n 0000 | a compilation of the known facts regarding something or someone; "Al Smith used to say, `Let's look at the record'"; "his name is in all the record books" -06636806 10 n 04 format 0 formatting 0 data_format 0 data_formatting 0 009 @ 06634376 n 0000 ;c 03082979 n 0000 + 01745141 v 0201 + 00700336 v 0201 + 00563552 v 0201 + 00563552 v 0101 + 00700336 v 0101 ~ 06637149 n 0000 ~ 06637350 n 0000 | the organization of information according to preset specifications (usually for computer processing) -06637149 10 n 01 high-level_formatting 0 002 @ 06636806 n 0000 ;c 06128570 n 0000 | (computer science) the format for the root directory and the file allocation tables and other basic configurations -06637350 10 n 03 low-level_formatting 0 initialization 0 initialisation 0 005 @ 06636806 n 0000 ;c 06128570 n 0000 + 00563552 v 0303 + 00700896 v 0201 + 00563552 v 0202 | (computer science) the format of sectors on the surface of a hard disk drive so that the operating system can access them and setting a starting position -06637677 10 n 01 gen 0 002 @ 06634376 n 0000 ;r 08860123 n 0000 | informal term for information; "give me the gen on your new line of computers" -06637824 10 n 01 database 0 004 @ 06634376 n 0000 ~ 06481320 n 0000 ~ 06588511 n 0000 ~ 06638739 n 0000 | an organized body of related information -06637973 10 n 01 relational_database 0 002 @ 06588511 n 0000 ~i 06638254 n 0000 | a database in which relations between information items are explicitly specified as accessible attributes; "in a relational database the data are organized as a number of differently sized tables" -06638254 10 n 02 Medical_Literature_Analysis_and_Retrieval_System 0 MEDLARS 0 001 @i 06637973 n 0000 | relational database of the United States National Library of Medicine for the storage and retrieval of bibliographical information concerning the biomedical literature -06638527 10 n 01 object-oriented_database 0 002 @ 06588511 n 0000 %p 06262176 n 0000 | a database in which the operations carried out on information items (data objects) are considered part of their definition -06638739 10 n 01 subdata_base 0 001 @ 06637824 n 0000 | a subset of data in a database that are used in a specific application -06638868 10 n 01 lexical_database 0 004 @ 06588511 n 0000 ~ 06639023 n 0000 ~i 06639204 n 0000 ~ 06639428 n 0000 | a database of information about words -06639023 10 n 03 machine_readable_dictionary 0 MRD 0 electronic_dictionary 0 001 @ 06638868 n 0000 | a machine-readable version of a standard dictionary; organized alphabetically -06639204 10 n 02 WordNet 0 Princeton_WordNet 0 004 @i 06638868 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 -c 08272860 n 0000 | a machine-readable lexical database organized by meanings; developed at Princeton University -06639428 10 n 01 wordnet 1 001 @ 06638868 n 0000 | any of the machine-readable lexical databases modeled after the Princeton WordNet -06639563 10 n 02 basics 0 rudiments 0 001 @ 06636259 n 0000 | a statement of fundamental facts or principles -06639674 10 n 04 index 1 index_number 0 indicant 0 indicator 0 007 @ 06636259 n 0000 ~ 06640016 n 0000 ~ 06640317 n 0000 ~ 06640977 n 0000 ~ 06641181 n 0000 ~ 06641818 n 0000 ~ 06641924 n 0000 | a number or ratio (a value on a scale of measurement) derived from a series of observed facts; can reveal relative changes as a function of time -06640016 10 n 02 body_mass_index 0 BMI 0 001 @ 06639674 n 0000 | a measure of someone's weight in relation to height; to calculate one's BMI, multiply one's weight in pounds and divide that by the square of one's height in inches; overweight is a BMI greater than 25; obese is a BMI greater than 30 -06640317 10 n 01 business_index 0 001 @ 06639674 n 0000 | a statistical compilation that provides a context for economic or financial conditions; "this business index is computed relative to the base year of 2005" -06640533 10 n 02 Dow_Jones 0 Dow-Jones_Industrial_Average 0 001 @i 06641924 n 0000 | an indicator of stock market prices; based on the share values of 30 blue-chip stocks listed on the New York Stock Exchange; "the Dow Jones Industrial Average is the most widely cited indicator of how the stock market is doing" -06640848 10 n 02 Standard_and_Poor's 0 Standard_and_Poor's_Index 0 001 @i 06641924 n 0000 | a broadly based stock market index -06640977 10 n 01 leading_indicator 0 001 @ 06639674 n 0000 | one of 11 indicators for different sections of the economy; used by the Department of Commerce to predict economic trends in the near future -06641181 10 n 02 price_index 0 price_level 0 004 @ 06639674 n 0000 ~ 06641423 n 0000 ~ 06641524 n 0000 ~ 06641654 n 0000 | an index that traces the relative changes in the price of an individual good (or a market basket of goods) over time -06641423 10 n 01 retail_price_index 0 001 @ 06641181 n 0000 | an index of changes in retail prices -06641524 10 n 02 producer_price_index 0 wholesale_price_index 0 001 @ 06641181 n 0000 | an index of changes in wholesale prices -06641654 10 n 03 consumer_price_index 0 CPI 0 cost-of-living_index 0 001 @ 06641181 n 0000 | an index of the cost of all goods and services to a typical consumer -06641818 10 n 01 short_account 0 001 @ 06639674 n 0000 | the aggregate of short sales on an open market -06641924 10 n 02 stock_index 0 stock_market_index 0 003 @ 06639674 n 0000 ~i 06640533 n 0000 ~i 06640848 n 0000 | index based on a statistical compilation of the share prices of a number of representative stocks -06642138 10 n 04 news 0 intelligence 1 tidings 0 word 2 004 @ 06634376 n 0000 ~ 06643120 n 0000 ~ 06643185 n 0000 ~ 06643303 n 0000 | information about recent and important events; "they awaited news of the outcome" -06642356 10 n 01 news 3 002 @ 06634376 n 0000 + 01305244 a 0101 | informal information of any kind that is not previously known to someone; "it was news to me" -06642518 10 n 01 nuts_and_bolts 0 001 @ 06634376 n 0000 | detailed practical information about how something works or how something can be accomplished -06642672 10 n 02 intelligence 2 intelligence_information 0 002 @ 06634376 n 0000 ~ 06642899 n 0000 | secret information about an enemy (or potential enemy); "we sent out planes to gather intelligence on their radar coverage" -06642899 10 n 01 military_intelligence 0 002 @ 06642672 n 0000 ;c 08199025 n 0000 | information about the armed forces of another country that is useful in planning and conducting military policy or military operations -06643120 10 n 01 good_word 0 001 @ 06642138 n 0000 | good news -06643185 10 n 01 latest 0 001 @ 06642138 n 0000 | the most recent news or development; "have you heard the latest?" -06643303 10 n 01 update 0 002 @ 06642138 n 0000 + 00833546 v 0101 | news that updates your information -06643408 10 n 01 evidence 1 013 @ 06797169 n 0000 + 02723723 a 0101 + 01287486 a 0102 + 01015244 v 0104 + 00820976 v 0105 ~ 06280244 n 0000 ~ 06643763 n 0000 ~ 06645266 n 0000 ~ 06647206 n 0000 ~ 06648207 n 0000 ~ 06648724 n 0000 ~ 06649915 n 0000 ~ 06885083 n 0000 | an indication that makes something evident; "his trembling was evidence of his fear" -06643763 10 n 03 clue 1 clew 0 cue 1 002 @ 06643408 n 0000 ~ 06646243 n 0000 | evidence that helps to solve a problem -06643883 10 n 02 DNA_fingerprint 0 genetic_fingerprint 0 001 @ 06424275 n 0000 | biometric identification obtained by examining a person's unique sequence of DNA base pairs; often used for evidence in criminal law cases -06644105 10 n 03 face_recognition 0 facial_recognition 0 automatic_face_recognition 0 002 @ 06424275 n 0000 ;c 00759694 n 0000 | biometric identification by scanning a person's face and matching it against a library of known faces; "they used face recognition to spot known terrorists" -06644393 10 n 01 fingerprint 1 005 @ 06798750 n 0000 @ 06424275 n 0000 + 01748748 v 0101 ~ 06644823 n 0000 ~ 06644916 n 0000 | a print made by an impression of the ridges in the skin of a finger; often used for biometric identification in criminal investigations -06644658 10 n 02 finger_scan 0 finger_scanning 0 001 @ 06424275 n 0000 | biometric identification by automatically scanning a person's fingerprints electronically -06644823 10 n 01 loop 0 001 @ 06644393 n 0000 | the basic pattern of the human fingerprint -06644916 10 n 01 thumbprint 0 001 @ 06644393 n 0000 | fingerprint made by the thumb (especially by the pad of the thumb) -06645039 10 n 03 footprint 0 footmark 0 step 2 003 @ 06798750 n 0000 + 02091410 v 0301 ~ 06645266 n 0000 | a mark of a foot or shoe on a surface; "the police made casts of the footprints in the soft earth outside the window" -06645266 10 n 01 footprint_evidence 0 002 @ 06645039 n 0000 @ 06643408 n 0000 | evidence in the form of footprints; "there was footprint evidence that he had been at the scene of the crime" -06645458 10 n 01 iris_scanning 0 001 @ 06424275 n 0000 | biometric identification by scanning the iris of the eye; "the structure of the iris is very distinctive" -06645623 10 n 01 signature_recognition 0 001 @ 06424275 n 0000 | biometric identification by automatically scanning a person's signature and matching it electronically against a library of known signatures -06645831 10 n 01 retinal_scanning 0 001 @ 06424275 n 0000 | biometric identification by scanning the retina of the eye; "identification by retinal scanning is complicated by eye movements" -06646022 10 n 01 voiceprint 0 001 @ 06424275 n 0000 | biometric identification by electronically recording and graphically representing a person's voice; "voiceprints are uniquely characteristic of individual speakers" -06646243 10 n 02 sign 5 mark 5 004 @ 06643763 n 0000 + 02118476 v 0202 + 00932324 v 0101 ~ 06646531 n 0000 | a perceptible indication of something not immediately apparent (as a visible clue that something has happened); "he showed signs of strain"; "they welcomed the signs of spring" -06646531 10 n 01 token 1 001 @ 06646243 n 0000 | something serving as a sign of something else -06646628 10 n 04 trace 0 vestige 0 tincture 0 shadow 0 002 @ 06797169 n 0000 ~ 06646854 n 0000 | an indication that something has been present; "there wasn't a trace of evidence for the claim"; "a tincture of condescension" -06646854 10 n 01 footprint 1 001 @ 06646628 n 0000 | a trace suggesting that something was once present or felt or otherwise important; "the footprints of an earlier civilization" -06647036 10 n 01 trace 2 003 @ 06798750 n 0000 + 02156063 v 0101 + 02004352 v 0101 | a visible mark (as a footprint) left by the passage of person or animal or vehicle -06647206 10 n 01 record 3 010 @ 06643408 n 0000 ;c 00903559 n 0000 + 00612042 v 0106 + 01000214 v 0101 ~ 06502378 n 0000 ~ 06505705 n 0000 ~ 06507815 n 0000 ~ 06508816 n 0000 ~ 06514093 n 0000 ~ 06675799 n 0000 | anything (such as a document or a phonograph record or a photograph) providing permanent evidence of or information about past events; "the film provided a valuable record of stage techniques" -06647614 10 n 01 proof 0 006 @ 06648724 n 0000 ;c 06163751 n 0000 ;c 06000644 n 0000 ~ 06647864 n 0000 ~ 06647960 n 0000 ~ 06648046 n 0000 | a formal series of statements showing that if one thing is true something else necessarily follows from it -06647864 10 n 01 mathematical_proof 0 001 @ 06647614 n 0000 | proof of a mathematical theorem -06647960 10 n 01 logical_proof 0 001 @ 06647614 n 0000 | proof of a logical theorem -06648046 10 n 02 demonstration 3 monstrance 0 001 @ 06647614 n 0000 | proof by a process of argument or a series of proposition proving an asserted conclusion -06648207 10 n 02 testimony 2 testimonial 2 007 @ 06643408 n 0000 + 02812989 a 0201 + 02812989 a 0101 + 01015244 v 0101 + 01014821 v 0101 ~ 06648462 n 0000 ~ 06648590 n 0000 | something that serves as evidence; "his effort was testimony to his devotion" -06648462 10 n 01 good_authority 0 001 @ 06648207 n 0000 | testimony by someone who should know; "I have it on good authority" -06648590 10 n 01 testament 2 001 @ 06648207 n 0000 | strong evidence for something; "his easy victory was a testament to his skill" -06648724 10 n 02 argument 2 statement 2 012 @ 06643408 n 0000 + 00878136 v 0202 + 00772640 v 0101 ~ 06647614 n 0000 ~ 06649108 n 0000 ~ 06649223 n 0000 ~ 06649325 n 0000 ~ 06649426 n 0000 ~ 06649567 n 0000 ~ 06649704 n 0000 ~ 06649786 n 0000 ~ 06755156 n 0000 | a fact or assertion offered as evidence that something is true; "it was a strong argument that his hypothesis was true" -06649108 10 n 01 counterargument 0 001 @ 06648724 n 0000 | an argument offered in opposition to another argument -06649223 10 n 01 pro 0 002 @ 06648724 n 0000 ! 06649325 n 0101 | an argument in favor of a proposal -06649325 10 n 01 con 0 002 @ 06648724 n 0000 ! 06649223 n 0101 | an argument opposed to a proposal -06649426 10 n 01 case 1 001 @ 06648724 n 0000 | a statement of facts and reasons used to support an argument; "he stated his case clearly" -06649567 10 n 03 clincher 0 determiner 1 determining_factor 0 002 @ 06648724 n 0000 + 00763399 v 0204 | an argument that is conclusive -06649704 10 n 01 adducing 0 001 @ 06648724 n 0000 | citing as evidence or proof -06649786 10 n 01 last_word 0 001 @ 06648724 n 0000 | the final statement in a verbal argument; "she always gets the last word" -06649915 10 n 01 attestation 1 004 @ 06643408 n 0000 + 00820611 v 0101 + 00820976 v 0101 + 00820352 v 0101 | the evidence by which something is attested -06650070 10 n 01 confirmation 0 005 @ 06634376 n 0000 + 01012073 v 0101 + 00665886 v 0101 ~ 06650238 n 0000 ~ 06650431 n 0000 | information that confirms or verifies -06650238 10 n 02 reinforcement 0 reenforcement 0 001 @ 06650070 n 0000 | information that makes more forcible or convincing; "his gestures provided eloquent reinforcement for his complaints" -06650431 10 n 03 documentation 0 certification 0 corroboration 0 006 @ 06650070 n 0000 + 02663340 v 0301 + 01012561 v 0302 + 00665886 v 0302 + 00820976 v 0202 + 00666510 v 0101 | confirmation that some fact or statement is true through the use of documentary evidence -06650701 10 n 05 guidance 0 counsel 0 counseling 0 counselling 0 direction 0 010 @ 06598915 n 0000 + 00872886 v 0403 + 00872886 v 0303 + 00872886 v 0203 ~ 05912552 n 0000 ~ 06651047 n 0000 ~ 06651145 n 0000 ~ 06651302 n 0000 ~ 06651463 n 0000 ~ 06651577 n 0000 | something that provides direction or advice as to a decision or course of action -06651047 10 n 01 career_counseling 0 001 @ 06650701 n 0000 | counseling on career opportunities -06651145 10 n 01 cynosure 0 001 @ 06650701 n 0000 | something that provides guidance (as Polaris guides mariners); "let faith be your cynosure to walk by" -06651302 10 n 01 genetic_counseling 0 001 @ 06650701 n 0000 | guidance for prospective parents on the likelihood of genetic disorders in their future children -06651463 10 n 01 marriage_counseling 0 001 @ 06650701 n 0000 | counseling on marital problems and disagreements -06651577 10 n 06 tip 0 lead 2 steer 0 confidential_information 0 wind 0 hint 2 005 @ 06650701 n 0000 + 00927430 v 0601 + 02439732 v 0302 + 10712835 n 0101 + 00873469 v 0102 | an indication of potential opportunity; "he got a tip on the stock market"; "a good lead for a job" -06651854 10 n 01 insider_information 0 001 @ 06634376 n 0000 | important information about the plans or condition of a corporation that has not been released to the public; use for personal profit is illegal -06652064 10 n 01 rule 3 001 @ 06786629 n 0000 | any one of a systematic body of regulations defining the way of life of members of a religious order; "the rule of St. Dominic" -06652242 10 n 02 rule 0 prescript 0 016 @ 06786629 n 0000 #p 07954211 n 0000 + 00715868 v 0101 ~ 06537951 n 0000 ~ 06652614 n 0000 ~ 06652878 n 0000 ~ 06653363 n 0000 ~ 06655074 n 0000 ~ 06655388 n 0000 ~ 06655805 n 0000 ~ 06655927 n 0000 ~ 06663940 n 0000 ~ 06664051 n 0000 ~ 06664594 n 0000 ~ 06664845 n 0000 ~ 06665108 n 0000 | prescribed guide for conduct or action -06652614 10 n 01 rubric 2 001 @ 06652242 n 0000 | an authoritative rule of conduct or procedure -06652712 10 n 01 rubric 3 002 @ 06786629 n 0000 + 01683957 v 0102 | directions for the conduct of Christian church services (often printed in red in a prayer book) -06652878 10 n 04 order 2 rules_of_order 0 parliamentary_law 0 parliamentary_procedure 0 008 @ 06652242 n 0000 ~ 06653160 n 0000 ~ 06654977 n 0000 ~ 06666829 n 0000 ~ 06667169 n 0000 ~ 07163803 n 0000 -c 10484526 n 0000 ~i 10534849 n 0000 | a body of rules followed by an assembly -06653160 10 n 01 interpellation 0 003 @ 06652878 n 0000 ;c 08319198 n 0000 + 00785329 v 0101 | (parliament) a parliamentary procedure of demanding that a government official explain some act or policy -06653363 10 n 01 rule_of_evidence 0 010 @ 06652242 n 0000 ;c 08441203 n 0000 ~ 06653727 n 0000 ~ 06653911 n 0000 ~ 06654074 n 0000 ~ 06654275 n 0000 ~ 06654490 n 0000 ~ 06654639 n 0000 ~ 06654791 n 0000 ~ 06735261 n 0000 | (law) a rule of law whereby any alleged matter of fact that is submitted for investigation at a judicial trial is established or disproved -06653727 10 n 01 best_evidence_rule 0 001 @ 06653363 n 0000 | a rule of evidence requiring that to prove the content of a writing or recording or photograph the original is required -06653911 10 n 01 estoppel 0 001 @ 06653363 n 0000 | a rule of evidence whereby a person is barred from denying the truth of a fact that has already been settled -06654074 10 n 01 exclusionary_rule 0 001 @ 06653363 n 0000 | a rule that provides that otherwise admissible evidence cannot be used in a criminal trial if it was the result of illegal police conduct -06654275 10 n 01 fruit_of_the_poisonous_tree 0 001 @ 06653363 n 0000 | a rule that once primary evidence is determined to have been illegally obtained any secondary evidence following from it may also not be used -06654490 10 n 01 hearsay_rule 0 001 @ 06653363 n 0000 | a rule that declares not admissible as evidence any statement other than that by a witness -06654639 10 n 01 parol_evidence_rule 0 001 @ 06653363 n 0000 | a rule that oral evidence cannot be used to contradict the terms of a written contract -06654791 10 n 01 res_ipsa_loquitur 0 001 @ 06653363 n 0000 | a rule of evidence whereby the negligence of an alleged wrongdoer can be inferred from the fact that the accident happened -06654977 10 n 01 standing_order 0 001 @ 06652878 n 0000 | a rule of order permanently in force -06655074 10 n 01 Miranda_rule 0 001 @ 06652242 n 0000 | the rule that police (when interrogating you after an arrest) are obliged to warn you that anything you say may be used as evidence and to read you your constitutional rights (the right to a lawyer and the right to remain silent until advised by a lawyer) -06655388 10 n 02 principle 0 precept 0 006 @ 06652242 n 0000 #p 06663617 n 0000 ~ 06655569 n 0000 ~ 06655683 n 0000 ~ 06656274 n 0000 ~ 06663785 n 0000 | rule of personal conduct -06655569 10 n 01 higher_law 0 001 @ 06655388 n 0000 | a principle that takes precedent over the laws of society -06655683 10 n 01 moral_principle 0 002 @ 06655388 n 0000 ~ 06656143 n 0000 | the principle that conduct should be moral -06655805 10 n 01 golden_rule 1 001 @ 06652242 n 0000 | any important rule; "the golden rule of teaching is to be clear" -06655927 10 n 01 GIGO 0 002 @ 06652242 n 0000 ;c 06128570 n 0000 | (computer science) a rule stating that the quality of the output is a function of the quality of the input; put garbage in and you get garbage out -06656143 10 n 01 categorical_imperative 0 001 @ 06655683 n 0000 | the moral principle that behavior should be determined by duty -06656274 10 n 01 hypothetical_imperative 0 001 @ 06655388 n 0000 | a principle stating the action required to attain a desired goal -06656408 10 n 01 policy 0 009 @ 05773049 n 0000 ~ 06489410 n 0000 ~ 06501622 n 0000 ~ 06656741 n 0000 ~ 06658994 n 0000 ~ 06660816 n 0000 ~ 06660942 n 0000 ~ 06663308 n 0000 ~ 06663463 n 0000 | a line of argument rationalizing the course of action of a government; "they debated the policy or impolicy of the proposed legislation" -06656741 10 n 01 economic_policy 0 006 @ 06656408 n 0000 ~ 06656961 n 0000 ~ 06657109 n 0000 ~ 06657202 n 0000 ~ 06658545 n 0000 ~ 06658786 n 0000 | a government policy for maintaining economic growth and tax revenues -06656961 10 n 01 fiscal_policy 0 001 @ 06656741 n 0000 | a government policy for dealing with the budget (especially with taxation and borrowing) -06657109 10 n 01 New_Deal 0 001 @ 06656741 n 0000 | the economic policy of F. D. Roosevelt -06657202 10 n 01 control 0 004 @ 06656741 n 0000 ~ 06657464 n 0000 ~ 06657646 n 0000 ~ 06658118 n 0000 | the economic policy of controlling or limiting or curbing prices or wages etc.; "they wanted to repeal all the legislation that imposed economic controls" -06657464 10 n 01 price_control 0 001 @ 06657202 n 0000 | restriction on maximum prices that is established and maintained by the government (as during periods of war or inflation) -06657646 10 n 03 ceiling 0 roof 0 cap 0 003 @ 06657202 n 0000 + 00236104 v 0301 ~ 06657913 n 0000 | an upper limit on what is allowed; "he put a ceiling on the number of women who worked for him"; "there was a roof on salaries"; "they established a cap for prices" -06657913 10 n 01 glass_ceiling 0 001 @ 06657646 n 0000 | a ceiling based on attitudinal or organizational bias in the work force that prevents minorities and women from advancing to leadership positions -06658118 10 n 02 floor 0 base 1 003 @ 06657202 n 0000 ~ 06658269 n 0000 ~ 06658441 n 0000 | a lower limit; "the government established a wage floor" -06658269 10 n 01 price_floor 0 001 @ 06658118 n 0000 | floor below which prices are not allowed to fall; "the government used price supports to maintain the price floor" -06658441 10 n 01 wage_floor 0 001 @ 06658118 n 0000 | floor below which wages are not allowed to fall -06658545 10 n 01 perestroika 0 001 @ 06656741 n 0000 | an economic policy adopted in the former Soviet Union; intended to increase automation and labor efficiency but it led eventually to the end of central planning in the Russian economy -06658786 10 n 01 protectionism 0 003 @ 06656741 n 0000 + 10485883 n 0101 ~ 06660224 n 0000 | the policy of imposing duties or quotas on imports in order to protect home industries from overseas competition -06658994 10 n 01 social_policy 0 005 @ 06656408 n 0000 ~ 06659168 n 0000 ~ 06659397 n 0000 ~ 06659530 n 0000 ~ 06660668 n 0000 | a policy of for dealing with social issues -06659168 10 n 01 apartheid 0 001 @ 06658994 n 0000 | a social policy or racial segregation involving political and economic and legal discrimination against people who are not Whites; the former official policy in South Africa -06659397 10 n 01 glasnost 0 001 @ 06658994 n 0000 | a policy of the Soviet government allowing freer discussion of social problems -06659530 10 n 01 social_action 0 003 @ 06658994 n 0000 ~ 06659685 n 0000 ~ 06660009 n 0000 | a social policy of reform (especially socioeconomic reform) -06659685 10 n 01 affirmative_action 0 001 @ 06659530 n 0000 | a policy designed to redress past discrimination against women and minority groups through measures to improve their economic and educational opportunities; "affirmative action has been extremely controversial and was challenged in 1978 in the Bakke decision" -06660009 10 n 01 fence_mending 0 001 @ 06659530 n 0000 | social action to improve poor relations (especially in politics); "they moved forward from a period of fence mending to substantive changes in the country" -06660224 10 n 02 trade_barrier 0 import_barrier 0 003 @ 06658786 n 0000 ~ 06660396 n 0000 ~ 06660520 n 0000 | any regulation or policy that restricts international trade -06660396 10 n 01 quota 0 001 @ 06660224 n 0000 | a limitation on imports; "the quota for Japanese imports was negotiated" -06660520 10 n 03 embargo 0 trade_embargo 0 trade_stoppage 0 002 @ 06660224 n 0000 + 02452758 v 0101 | a government order imposing a trade barrier -06660668 10 n 01 nativism 0 002 @ 06658994 n 0000 + 02988793 a 0102 | the policy of perpetuating native cultures (in opposition to acculturation) -06660816 10 n 01 party_line 0 001 @ 06656408 n 0000 | the policy of a political group; "He won in a vote along party lines" -06660942 10 n 01 foreign_policy 0 012 @ 06656408 n 0000 ~ 06661243 n 0000 ~ 06661396 n 0000 ~ 06661562 n 0000 ~ 06661747 n 0000 ~ 06661923 n 0000 ~ 06662193 n 0000 ~ 06662366 n 0000 ~ 06662522 n 0000 ~ 06662712 n 0000 ~ 06662850 n 0000 ~ 06663018 n 0000 | a policy governing international relations -06661243 10 n 01 brinkmanship 0 001 @ 06660942 n 0000 | the policy of pushing a dangerous situation to the brink of disaster (to the limits of safety) -06661396 10 n 01 imperialism 0 004 @ 06660942 n 0000 + 03074368 a 0101 + 10200246 n 0101 ~ 06662057 n 0000 | a policy of extending your rule over foreign countries -06661562 10 n 02 intervention 0 interference 0 004 @ 06660942 n 0000 + 02538765 v 0203 ! 06661747 n 0202 ! 06661747 n 0101 | a policy of intervening in the affairs of other countries -06661747 10 n 02 nonintervention 0 noninterference 0 003 @ 06660942 n 0000 ! 06661562 n 0202 ! 06661562 n 0101 | a foreign policy of staying out of other countries' disputes -06661923 10 n 01 nonaggression 0 001 @ 06660942 n 0000 | a policy of not initiating hostilities; "they signed a nonaggression pact" -06662057 10 n 01 manifest_destiny 0 001 @ 06661396 n 0000 | a policy of imperialism rationalized as inevitable (as if granted by God) -06662193 10 n 01 isolationism 0 003 @ 06660942 n 0000 + 03022917 a 0102 + 10217684 n 0101 | a policy of nonparticipation in international economic and political relations -06662366 10 n 01 Monroe_Doctrine 0 001 @ 06660942 n 0000 | an American foreign policy opposing interference in the western hemisphere from outside powers -06662522 10 n 01 Truman_doctrine 0 001 @ 06660942 n 0000 | President Truman's policy of providing economic and military aid to any country threatened by communism or totalitarian ideology -06662712 10 n 01 neutralism 0 002 @ 06660942 n 0000 + 10355306 n 0101 | a policy of neutrality or nonalignment in international affairs -06662850 10 n 01 regionalism 1 001 @ 06660942 n 0000 | a foreign policy that defines the international interests of a country in terms of particular geographic areas -06663018 10 n 02 trade_policy 0 national_trading_policy 0 002 @ 06660942 n 0000 ~ 06663168 n 0000 | a government's policy controlling foreign trade -06663168 10 n 02 open-door_policy 0 open_door 0 001 @ 06663018 n 0000 | the policy of granting equal trade opportunities to all countries -06663308 10 n 01 zero-tolerance_policy 0 001 @ 06656408 n 0000 | any policy that allows no exception; "a zero-tolerance policy toward pedophile priests" -06663463 10 n 01 Zionism 0 002 @ 06656408 n 0000 + 10805501 n 0101 | a policy for establishing and developing a national homeland for Jews in Palestine -06663617 10 n 02 ethic 0 ethical_code 0 003 @ 05661996 n 0000 %p 06655388 n 0000 ~ 06669513 n 0000 | a system of principles governing morality and acceptable conduct -06663785 10 n 01 caveat_emptor 0 001 @ 06655388 n 0000 | a commercial principle that without a warranty the buyer takes upon himself the risk of quality -06663940 10 n 01 dictate 0 003 @ 06652242 n 0000 + 02587084 v 0101 + 00747135 v 0103 | an authoritative rule -06664051 10 n 02 regulation 0 ordinance 0 005 @ 06652242 n 0000 ~ 06538525 n 0000 ~ 06664213 n 0000 ~ 06664353 n 0000 ~ 06664473 n 0000 | an authoritative rule -06664213 10 n 01 age_limit 0 001 @ 06664051 n 0000 | regulation establishing the maximum age for doing something or holding some position -06664353 10 n 01 assize 1 001 @ 06664051 n 0000 | the regulation of weights and measures of articles offered for sale -06664473 10 n 01 speed_limit 0 001 @ 06664051 n 0000 | regulation establishing the top speed permitted on a given road -06664594 10 n 01 canon 0 002 @ 06652242 n 0000 + 09891730 n 0101 | a rule or especially body of rules or principles generally established as valid and fundamental in a field or art or philosophy; "the neoclassical canon"; "canons of polite society" -06664845 10 n 01 etiquette 0 003 @ 06652242 n 0000 ~ 06664981 n 0000 ~ 06666729 n 0000 | rules governing socially acceptable behavior -06664981 10 n 01 protocol 0 001 @ 06664845 n 0000 | forms of ceremony and etiquette observed by diplomats and heads of state -06665108 10 n 02 protocol 1 communications_protocol 0 007 @ 06652242 n 0000 ;c 06128570 n 0000 ~ 06665370 n 0000 ~ 06665847 n 0000 ~ 06666030 n 0000 ~ 06666210 n 0000 ~ 06666486 n 0000 | (computer science) rules determining the format and transmission of data -06665370 10 n 02 file_transfer_protocol 0 FTP 0 004 @ 06665108 n 0000 ;c 06128570 n 0000 + 02233352 v 0201 ~ 06665612 n 0000 | protocol that allows users to copy files between their local system and any system they can reach on the network -06665612 10 n 02 anonymous_ftp 0 anonymous_file_transfer_protocol 0 001 @ 06665370 n 0000 | a common way to make software available; users are allowed to log in as `guest' without a password and copy whatever has been made available -06665847 10 n 02 hypertext_transfer_protocol 0 HTTP 0 001 @ 06665108 n 0000 | a protocol (utilizing TCP) to transfer hypertext requests and information between servers and browsers -06666030 10 n 02 musical_instrument_digital_interface 0 MIDI 0 001 @ 06665108 n 0000 | a standard protocol for communication between electronic musical instruments and computers -06666210 10 n 02 transmission_control_protocol 0 TCP 0 002 @ 06665108 n 0000 #p 06666486 n 0000 | a protocol developed for the internet to get data from one network device to another; "TCP uses a retransmission strategy to insure that data will not be lost in transmission" -06666486 10 n 02 transmission_control_protocol/internet_protocol 0 TCP/IP 0 002 @ 06665108 n 0000 %p 06666210 n 0000 | a set of protocols (including TCP) developed for the internet in the 1970s to get data from one network device to another -06666729 10 n 01 punctilio 0 001 @ 06664845 n 0000 | a fine point of etiquette or petty formality -06666829 10 n 04 closure 0 cloture 0 gag_rule 0 gag_law 1 004 @ 06652878 n 0000 + 00527034 v 0202 + 00527034 v 0101 ~ 06667027 n 0000 | a rule for limiting or ending debate in a deliberative body -06667027 10 n 02 closure_by_compartment 0 guillotine 0 001 @ 06666829 n 0000 | closure imposed on the debate of specific sections of a bill -06667169 10 n 01 point_of_order 0 001 @ 06652878 n 0000 | a question as to whether the current proceedings are allowed by parliamentary procedure -06667317 10 n 02 code 1 codification 0 011 @ 06349220 n 0000 + 00481739 v 0201 + 00481739 v 0101 ~ 06667625 n 0000 ~ 06667792 n 0000 ~ 06668432 n 0000 ~ 06668611 n 0000 ~ 06668813 n 0000 ~ 06669013 n 0000 ~ 06669193 n 0000 ~ 06669384 n 0000 | a set of rules or principles or laws (especially written ones) -06667625 10 n 01 Bushido 0 001 @ 06667317 n 0000 | traditional code of the Japanese samurai which stressed courage and loyalty and self-discipline and simple living -06667792 10 n 01 legal_code 0 007 @ 06667317 n 0000 ;c 08441203 n 0000 ~ 06534659 n 0000 ~ 06534918 n 0000 ~ 06539178 n 0000 ~ 06668019 n 0000 ~ 06668147 n 0000 | a code of laws adopted by a state or nation; "a code of laws" -06668019 10 n 01 penal_code 0 002 @ 06667792 n 0000 ;c 08441203 n 0000 | the legal code governing crimes and their punishment -06668147 10 n 02 United_States_Code 0 U._S._Code 0 002 @ 06667792 n 0000 ;c 08441203 n 0000 | a consolidation and codification by subject matter of the general and permanent laws of the United States; is prepared and published by a unit of the United States House of Representatives -06668432 10 n 01 building_code 0 002 @ 06667317 n 0000 ;c 08441203 n 0000 | set of standards established and enforced by local government for the structural safety of buildings -06668611 10 n 01 dress_code 0 001 @ 06667317 n 0000 | a set of rules specifying the correct manner of dress while on the premises of the institution (or specifying what manner of dress is prohibited) -06668813 10 n 01 fire_code 0 002 @ 06667317 n 0000 ;c 08441203 n 0000 | set of standards established and enforced by government for fire prevention and safety in case of fire as in fire escapes etc -06669013 10 n 01 omerta 0 002 @ 06667317 n 0000 ;c 08245802 n 0000 | a code of silence practiced by the Mafia; a refusal to give evidence to the police about criminal activities -06669193 10 n 02 sanitary_code 0 health_code 0 002 @ 06667317 n 0000 ;c 08441203 n 0000 | set of standards established and enforced by government for health requirements as in plumbing etc -06669384 10 n 01 Highway_Code 0 002 @ 06667317 n 0000 ;r 08860123 n 0000 | the code of rules governing the use of public roads -06669513 10 n 01 double_standard 0 002 @ 06663617 n 0000 ~ 06669673 n 0000 | an ethical or moral code that applies more strictly to one group than to another -06669673 10 n 01 double_standard_of_sexual_behavior 0 001 @ 06669513 n 0000 | a code that permits greater sexual freedom for men than for women (associated with the subordination of women) -06669864 10 n 01 equation 0 010 @ 06732169 n 0000 ;c 06000644 n 0000 + 02633534 v 0101 ~ 06028260 n 0000 ~ 06670137 n 0000 ~ 06670240 n 0000 ~ 06670390 n 0000 ~ 06670521 n 0000 ~ 06671150 n 0000 ~ 13789627 n 0000 | a mathematical statement that two expressions are equal -06670137 10 n 01 linear_equation 0 001 @ 06669864 n 0000 | a polynomial equation of the first degree -06670240 10 n 02 quadratic_equation 0 quadratic 0 001 @ 06669864 n 0000 | an equation in which the highest power of an unknown quantity is a square -06670390 10 n 02 biquadratic_equation 0 biquadratic 0 002 @ 06669864 n 0000 + 03107913 a 0201 | an equation of the fourth degree -06670521 10 n 01 differential_equation 0 005 @ 06669864 n 0000 ~ 06670711 n 0000 ~ 06670866 n 0000 ~ 06671013 n 0000 ~ 06671339 n 0000 | an equation containing differentials of a function -06670711 10 n 01 Maxwell's_equations 0 001 @ 06670521 n 0000 | four differential equations that summarize classical properties of electromagnetic fields -06670866 10 n 01 partial_differential_equation 0 001 @ 06670521 n 0000 | a differential equation involving a functions of more than one variable -06671013 10 n 02 Schrodinger_equation 0 Schrodinger_wave_equation 0 001 @ 06670521 n 0000 | the fundamental equation of wave mechanics -06671150 10 n 01 simultaneous_equations 0 001 @ 06669864 n 0000 | a set of equations in two or more variables for which there are values that can satisfy all the equations simultaneously -06671339 10 n 01 wave_equation 0 001 @ 06670521 n 0000 | a differential equation that describes the passage of harmonic waves through a medium -06671484 10 n 01 advice 0 004 @ 07162194 n 0000 ~ 06671637 n 0000 ~ 06671818 n 0000 ~ 06672297 n 0000 | a proposal for an appropriate course of action -06671637 10 n 01 recommendation 0 004 @ 06671484 n 0000 + 00875141 v 0101 + 00882948 v 0102 ~ 06672040 n 0000 | something (as a course of action) that is recommended as advisable -06671818 10 n 01 indication 3 003 @ 06671484 n 0000 + 00928232 v 0101 + 00772640 v 0102 | something (as a course of action) that is indicated as expedient or necessary; "there were indications that it was time to leave" -06672040 10 n 01 referral 0 001 @ 06671637 n 0000 | a recommendation to consult the (professional) person or group to whom one has been referred; "the insurance company says that you need a written referral from your physician before seeing a specialist" -06672297 10 n 04 admonition 1 monition 1 warning 1 word_of_advice 0 007 @ 06671484 n 0000 + 00870577 v 0301 + 00871195 v 0203 + 00870577 v 0204 + 00870577 v 0103 + 00871195 v 0102 ~ 06672752 n 0000 | cautionary advice about something imminent (especially imminent danger or other unpleasantness); "a letter of admonition about the dangers of immorality"; "the warning was to beware of surprises"; "his final word of advice was not to play with matches" -06672752 10 n 04 example 0 deterrent_example 0 lesson 0 object_lesson 0 002 @ 06672297 n 0000 + 01771124 a 0103 | punishment intended as a warning to others; "they decided to make an example of him" -06672953 10 n 02 secret 1 arcanum 0 004 @ 06634376 n 0000 ~ 06673671 n 0000 ~ 06673770 n 0000 ~ 06674188 n 0000 | information known only to a special group; "the secret of Cajun cooking" -06673142 10 n 01 secret 0 004 @ 06634376 n 0000 ~ 06673435 n 0000 ~ 06674028 n 0000 ~ 06674385 n 0000 | something that should remain hidden from others (especially information that is not to be passed on); "the combination to the safe was a secret"; "he tried to keep his drinking a secret" -06673435 10 n 01 confidence 0 003 @ 06673142 n 0000 + 01859571 a 0101 + 00936465 v 0101 | a secret that is confided or entrusted to another; "everyone trusted him with their confidences"; "the priest could not reveal her confidences" -06673671 10 n 01 esoterica 0 001 @ 06672953 n 0000 | secrets known only to an initiated minority -06673770 10 n 08 cabala 0 cabbala 0 cabbalah 0 kabala 0 kabbala 0 kabbalah 0 qabala 0 qabalah 0 004 @ 06672953 n 0000 + 00899738 a 0703 + 00899738 a 0502 + 00899738 a 0101 | an esoteric or occult matter resembling the Kabbalah that is traditionally secret -06674028 10 n 01 open_secret 0 001 @ 06673142 n 0000 | something that is supposed to be secret but is generally known; "their love affair was an open secret" -06674188 10 n 05 password 0 watchword 0 word 5 parole 1 countersign 1 002 @ 06885389 n 0000 @ 06672953 n 0000 | a secret word or phrase known only to a restricted group; "he forgot the password" -06674385 10 n 01 trade_secret 0 001 @ 06673142 n 0000 | a secret (method or device or formula) that gives a manufacturer an advantage over the competition -06674542 10 n 01 propaganda 0 008 @ 06634376 n 0000 + 03022739 a 0102 + 10482921 n 0101 + 00970873 v 0101 + 00970732 v 0101 + 00970873 v 0102 + 00970732 v 0102 ~ 06674791 n 0000 | information that is spread for the purpose of promoting some cause -06674791 10 n 01 agitprop 0 001 @ 06674542 n 0000 | political propaganda (especially communist propaganda) communicated via art and literature and cinema -06674947 10 n 03 course_catalog 0 course_catalogue 0 prospectus 0 002 @ 06416206 n 0000 ~ 07165778 n 0000 | a catalog listing the courses offered by a college or university -06675122 10 n 01 source 0 004 @ 06470073 n 0000 + 00666722 v 0101 ~ 06675581 n 0000 ~ 06675979 n 0000 | a document (or organization) from which information is obtained; "the reporter had two sources for the story" -06675338 10 n 01 specification 2 002 @ 06470073 n 0000 ;c 08441203 n 0000 | (patent law) a document drawn up by the applicant for a patent of invention that provides an explicit and detailed description of the nature and use of an invention -06675581 10 n 01 source_materials 0 001 @ 06675122 n 0000 | publications from which information is obtained -06675691 10 n 01 voucher 1 001 @ 06470073 n 0000 | a document that serves as evidence of some expenditure -06675799 10 n 01 working_papers 1 001 @ 06647206 n 0000 | records kept of activities involved in carrying out a project; "the auditor was required to produce his working papers" -06675979 10 n 03 well 0 wellspring 0 fountainhead 0 001 @ 06675122 n 0000 | an abundant source; "she was a well of information" -06676109 10 n 01 copy 2 002 @ 06635509 n 0000 #s 06266417 n 0000 | material suitable for a journalistic account; "catastrophes make good copy" -06676254 10 n 01 filler 0 002 @ 06390512 n 0000 + 00452512 v 0101 | copy to fill space between more important articles in the layout of a magazine or newspaper -06676416 10 n 05 course_of_study 0 program 5 programme 5 curriculum 0 syllabus 0 006 @ 06634376 n 0000 + 02708020 a 0401 %p 00890441 n 0000 ~ 06676709 n 0000 ~ 06677089 n 0000 ~ 06677194 n 0000 | an integrated course of academic studies; "he was admitted to a new program at the university" -06676709 10 n 03 crash_course 0 crash_program 0 crash_programme 0 001 @ 06676416 n 0000 | a rapid and intense course of training or research (usually undertaken in an emergency); "he took a crash course in Italian on his way to Italy"; "his first job was a crash course in survival and in learning how to get along with people"; "a crash programme is needed to create new jobs" -06677089 10 n 01 reading_program 0 001 @ 06676416 n 0000 | a program designed to teach literacy skills -06677194 10 n 01 degree_program 0 001 @ 06676416 n 0000 | a course of study leading to an academic degree -06677302 10 n 02 printing 0 printing_process 0 030 @ 06359877 n 0000 + 01745722 v 0101 + 01747945 v 0101 -c 00667463 a 0000 -c 00910750 a 0000 -c 01656129 a 0000 -c 01656520 a 0000 -c 02349685 a 0000 -c 02349852 a 0000 -c 02350035 a 0000 -c 01103159 n 0000 -c 03476843 n 0000 -c 04030655 n 0000 -c 06590210 n 0000 -c 06590885 n 0000 ~ 06677974 n 0000 ~ 06678664 n 0000 ~ 06678784 n 0000 ~ 06679041 n 0000 ~ 06679457 n 0000 ~ 06680570 n 0000 ~ 06681035 n 0000 -c 06800532 n 0000 -c 06800871 n 0000 -c 06828061 n 0000 -c 13574928 n 0000 -c 00303806 v 0000 -c 01974916 v 0000 -c 02365936 v 0000 -c 02366105 v 0000 | reproduction by applying ink to paper as for publication -06677974 10 n 02 typography 0 composition 2 004 @ 06677302 n 0000 + 02910248 a 0102 + 02910248 a 0101 + 09949946 n 0104 | art and technique of printing with movable type -06678146 10 n 01 print 2 001 @ 04718999 n 0000 | availability in printed form; "we've got to get that story into print"; "his book is no longer in print" -06678302 10 n 01 print 0 004 @ 06349220 n 0000 + 01747945 v 0101 + 01745722 v 0101 ~ 06678506 n 0000 | the text appearing in a book, newspaper, or other printed publication; "I want to see it in print" -06678506 10 n 02 small_print 0 fine_print 0 001 @ 06678302 n 0000 | material printed in small type; "he needed his glasses in order to read the fine print" -06678664 10 n 02 relief_printing 0 letterpress 0 001 @ 06677302 n 0000 | printing from a plate with raised characters -06678784 10 n 03 intaglio_printing 0 intaglio 0 gravure 0 002 @ 06677302 n 0000 ~ 06679167 n 0000 | a printing process that uses an etched or engraved plate; the plate is smeared with ink and wiped clean, then the ink left in the recesses makes the print -06679041 10 n 01 process_printing 0 001 @ 06677302 n 0000 | a method of printing colored reproductions from halftone plates -06679167 10 n 01 photogravure 0 002 @ 06678784 n 0000 ~ 06679308 n 0000 | printing from an intaglio plate prepared by photographic methods -06679308 10 n 01 rotogravure 0 001 @ 06679167 n 0000 | printing by transferring an image from a photogravure plate to a cylinder in a rotary press -06679457 10 n 02 planographic_printing 0 planography 0 004 @ 06677302 n 0000 + 02779044 a 0201 ~ 06679726 n 0000 ~ 06680002 n 0000 | the process of printing from a surface on which the printing areas are not raised but are ink-receptive (as opposed to ink repellent) -06679726 10 n 03 collotype 0 collotype_printing 0 photogelatin_process 0 002 @ 06679457 n 0000 ~ 03510987 n 0000 | a photomechanical printing process that uses a glass plate with a gelatin surface that carries the image to be reproduced; can be used with one or more colors -06680002 10 n 01 lithography 0 005 @ 06679457 n 0000 + 10266486 n 0101 ~ 06680195 n 0000 ~ 06680333 n 0000 ~ 06680818 n 0000 | a method of planographic printing from a metal or stone surface -06680195 10 n 01 photolithography 0 001 @ 06680002 n 0000 | a planographic printing process using plates made from a photographic image -06680333 10 n 01 chromolithography 0 001 @ 06680002 n 0000 | single- or multi-color lithography -06680431 10 n 02 photo-offset_printing 0 photo-offset 0 001 @ 06680570 n 0000 | a method of offset printing using photomechanical plates -06680570 10 n 02 offset 0 offset_printing 0 005 @ 06677302 n 0000 + 01746940 v 0101 + 02232044 v 0101 ~ 06680431 n 0000 ~ 06680913 n 0000 | a plate makes an inked impression on a rubber-blanketed cylinder, which in turn transfers it to the paper -06680818 10 n 01 offset_lithography 0 001 @ 06680002 n 0000 | offset printing by lithography -06680913 10 n 01 letterset_printing 0 001 @ 06680570 n 0000 | image is transferred from a relief type plate to a roller -06681035 10 n 01 carbon_process 0 001 @ 06677302 n 0000 | a process of printing on paper coated with bichromated gelatin containing pigment -06681177 10 n 01 news 1 008 @ 06634376 n 0000 ~ 06681454 n 0000 ~ 06681551 n 0000 ~ 06683359 n 0000 ~ 06683784 n 0000 ~ 06684052 n 0000 ~ 06684153 n 0000 ~ 06684262 n 0000 | information reported in a newspaper or news magazine; "the news of my death was greatly exaggerated" -06681454 10 n 01 business_news 0 001 @ 06681177 n 0000 | news about businesses and investments -06681551 10 n 05 report 0 news_report 0 story 1 account 3 write_up 0 009 @ 06681177 n 0000 + 01068134 v 0501 + 00967098 v 0101 + 00965035 v 0101 ~ 06681976 n 0000 ~ 06682290 n 0000 ~ 06682794 n 0000 ~ 06682952 n 0000 ~ 06683183 n 0000 | a short account of the news; "the report of his speech"; "the story was on the 11 o'clock news"; "the account of his speech that was given on the evening news made the governor furious" -06681976 10 n 02 newsletter 0 newssheet 0 002 @ 06681551 n 0000 ~ 06682152 n 0000 | report or open letter giving informal or confidential news of interest to a special group -06682152 10 n 01 market_letter 0 001 @ 06681976 n 0000 | a newsletter written by an analyst of the stock market and sold to subscribers -06682290 10 n 01 bulletin 0 004 @ 06681551 n 0000 + 00955033 v 0101 ~ 06682494 n 0000 ~ 06682683 n 0000 | a brief report (especially an official statement issued for immediate publication or broadcast) -06682494 10 n 04 news_bulletin 0 newsflash 0 flash 0 newsbreak 0 003 @ 06682290 n 0000 + 00929509 v 0301 + 00424691 v 0301 | a short news announcement concerning some on-going news story -06682683 10 n 01 information_bulletin 0 001 @ 06682290 n 0000 | a bulletin containing the latest information -06682794 10 n 03 dispatch 0 despatch 0 communique 0 003 @ 06681551 n 0000 + 01955127 v 0101 %p 06349030 n 0000 | an official report (usually sent in haste) -06682952 10 n 01 urban_legend 0 001 @ 06681551 n 0000 | a story that appears mysteriously and spreads spontaneously in various forms and is usually false; contains elements of humor or horror and is popularly believed to be true -06683183 10 n 02 exclusive 0 scoop 0 001 @ 06681551 n 0000 | a news report that is reported first by one news organization; "he got a scoop on the bribery of city officials" -06683359 10 n 01 newscast 0 004 @ 06681177 n 0000 @ 06254007 n 0000 ~ 06683513 n 0000 ~ 06683595 n 0000 | a broadcast of news or commentary on the news -06683513 10 n 01 radio_news 0 001 @ 06683359 n 0000 | a radio broadcast of news -06683595 10 n 01 sportscast 0 001 @ 06683359 n 0000 | a broadcast of sports news or commentary -06683692 10 n 01 television_news 0 001 @ 06619850 n 0000 | a television broadcast of news -06683784 10 n 03 coverage 0 reporting 0 reportage 0 004 @ 06681177 n 0000 + 00967098 v 0301 + 00967098 v 0201 + 00967098 v 0102 | the news as presented by reporters for newspapers or radio or television; "they accused the paper of biased coverage of race relations" -06684052 10 n 01 hard_news 0 001 @ 06681177 n 0000 | news that deals with serious topics or events -06684153 10 n 01 soft_news 0 001 @ 06681177 n 0000 | news that does not deal with serious topics or events -06684262 10 n 01 stop_press 0 001 @ 06681177 n 0000 | late news that is inserted into the newspaper at the last minute -06684383 10 n 02 commitment 0 dedication 1 006 @ 06598915 n 0000 + 00887463 v 0202 ~ 06684572 n 0000 ~ 06684798 n 0000 ~ 07226545 n 0000 ~ 07227772 n 0000 | a message that makes a pledge -06684572 10 n 02 oath 0 swearing 1 003 @ 06684383 n 0000 + 01011031 v 0207 + 01013040 v 0201 | a commitment to tell the truth (especially in a court of law); to lie under oath is to become subject to prosecution for perjury -06684798 10 n 01 affirmation 1 003 @ 06684383 n 0000 ;c 05946687 n 0000 ~ 06685040 n 0000 | (religion) a solemn declaration that serves the same purpose as an oath (if an oath is objectionable to the person on religious or ethical grounds) -06685040 10 n 01 profession 1 002 @ 06684798 n 0000 + 00888326 v 0101 | affirmation of acceptance of some religion or faith; "a profession of Christianity" -06685198 10 n 01 giving 0 004 @ 06252954 n 0000 + 02296153 v 0103 + 02235842 v 0101 + 00888009 v 0101 | the imparting of news or promises etc.; "he gave us the news and made a great show of the giving"; "giving his word of honor seemed to come too easily" -06685456 10 n 04 guarantee 0 warrant 1 warrantee 0 warranty 0 007 @ 07227772 n 0000 + 00891936 v 0202 + 00891936 v 0101 + 00890100 v 0101 ~ 06685754 n 0000 ~ 06685860 n 0000 ~ 06685975 n 0000 | a written assurance that some product or service will be provided or will meet certain specifications -06685754 10 n 02 security 0 surety 0 001 @ 06685456 n 0000 | a guarantee that an obligation will be met -06685860 10 n 01 deposit 1 001 @ 06685456 n 0000 | a payment given as a guarantee that an obligation will be met -06685975 10 n 01 stock_warrant 0 001 @ 06685456 n 0000 | a written certificate that gives the holder the right to purchase shares of a stock for a specified price within a specified period of time -06686174 10 n 01 guarantee 1 007 @ 07227772 n 0000 + 00891936 v 0101 + 00890590 v 0101 + 00889555 v 0102 + 00890100 v 0101 ~ 06686467 n 0000 ~ 06686573 n 0000 | an unconditional commitment that something will happen or that something is true; "there is no guarantee that they are not lying" -06686467 10 n 01 safety_net 0 001 @ 06686174 n 0000 | a guarantee of professional or financial security -06686573 10 n 01 full_faith_and_credit 0 001 @ 06686174 n 0000 | a guarantee to pay interest and principal on debt; usually issued by the United States Treasury -06686736 10 n 02 approval 0 commendation 1 017 @ 06598915 n 0000 + 01689169 v 0201 + 00882948 v 0201 + 00882395 v 0201 + 00803815 v 0101 ! 06709533 n 0101 ~ 06687178 n 0000 ~ 06687358 n 0000 ~ 06688274 n 0000 ~ 06689125 n 0000 ~ 06689297 n 0000 ~ 06691442 n 0000 ~ 06691684 n 0000 ~ 06691989 n 0000 ~ 06692572 n 0000 ~ 06693198 n 0000 ~ 06697195 n 0000 | a message expressing a favorable opinion; "words of approval seldom passed his lips" -06687178 10 n 01 approbation 0 006 @ 06686736 n 0000 + 00803815 v 0101 + 00687033 v 0101 + 00806502 v 0101 + 00673983 v 0101 ! 06709692 n 0101 | official recognition or approval -06687358 10 n 06 sanction 0 countenance 0 endorsement 0 indorsement 0 warrant 2 imprimatur 0 009 @ 06686736 n 0000 + 02447793 v 0403 + 02447793 v 0302 + 00802318 v 0204 + 02479154 v 0101 + 00806502 v 0104 ~ 06687701 n 0000 ~ 06687883 n 0000 ~ 06688059 n 0000 | formal and explicit approval; "a Democrat usually gets the union's endorsement" -06687701 10 n 05 O.K. 0 OK 0 okay 0 okey 0 okeh 0 004 @ 06687358 n 0000 + 00806502 v 0303 + 00806502 v 0202 + 00806502 v 0102 | an endorsement; "they gave us the O.K. to go ahead" -06687883 10 n 01 visa 0 003 @ 06687358 n 0000 #p 06500937 n 0000 + 00998182 v 0101 | an endorsement made in a passport that allows the bearer to enter the country issuing it -06688059 10 n 01 nihil_obstat 0 001 @ 06687358 n 0000 | the phrase used by the official censor of the Roman Catholic Church to say that a publication has been examined and contains nothing offensive to the church -06688274 10 n 02 recognition 0 credit 0 005 @ 06686736 n 0000 + 00727143 v 0201 ~ 06688522 n 0000 ~ 06688751 n 0000 ~ 06688913 n 0000 | approval; "give her recognition for trying"; "he was given credit for his work"; "give her credit for trying" -06688522 10 n 03 memorial 0 commemoration 0 remembrance 0 007 @ 06688274 n 0000 + 02356567 v 0301 + 00882802 v 0301 + 00612042 v 0201 + 00612042 v 0102 ~ 06406757 n 0000 ~ 06406865 n 0000 | a recognition of meritorious service -06688751 10 n 02 ovation 0 standing_ovation 0 002 @ 06688274 n 0000 %p 06691989 n 0000 | enthusiastic recognition (especially one accompanied by loud applause) -06688913 10 n 02 salute 0 salutation 1 004 @ 06688274 n 0000 + 01175467 v 0204 + 00900214 v 0201 + 01175467 v 0104 | an act of honor or courteous recognition; "a musical salute to the composer on his birthday" -06689125 10 n 03 connivance 1 secret_approval 0 tacit_consent 0 003 @ 06686736 n 0000 ;c 08441203 n 0000 + 02585360 v 0101 | (law) tacit approval of someone's wrongdoing -06689297 10 n 01 permission 0 009 @ 06686736 n 0000 ~ 05176607 n 0000 ~ 06689554 n 0000 ~ 06689667 n 0000 ~ 06689829 n 0000 ~ 06689948 n 0000 ~ 06690114 n 0000 ~ 06690408 n 0000 ~ 06691083 n 0000 | approval to do something; "he asked permission to leave" -06689554 10 n 01 all_clear 1 001 @ 06689297 n 0000 | permission to proceed because obstacles have been removed -06689667 10 n 01 consent 0 004 @ 06689297 n 0000 + 00553732 a 0101 + 00797697 v 0102 ~ 07175863 n 0000 | permission to do something; "he indicated his consent" -06689829 10 n 01 dismissal 1 002 @ 06689297 n 0000 + 00900728 v 0101 | permission to go; the sending away of someone -06689948 10 n 01 green_light 1 001 @ 06689297 n 0000 | permission to proceed with a project or to take action; "the gave the green light for construction to begin" -06690114 10 n 01 leave 0 001 @ 06689297 n 0000 | permission to do something; "she was granted leave to speak" -06690226 10 n 02 pass 0 liberty_chit 0 002 @ 06549661 n 0000 ;c 08199025 n 0000 | a permit to enter or leave a military installation; "he had to show his pass in order to get out" -06690408 10 n 02 pass 3 laissez_passer 0 004 @ 06689297 n 0000 ~ 06690647 n 0000 ~ 06690770 n 0000 ~ 06690928 n 0000 | a document indicating permission to do something without restrictions; "the media representatives had special passes" -06690647 10 n 02 boarding_card 0 boarding_pass 0 001 @ 06690408 n 0000 | a pass that allows you to board a ship or plane -06690770 10 n 01 hall_pass 0 001 @ 06690408 n 0000 | written permission from a teacher for a student to be out the classroom and in the halls of the school -06690928 10 n 01 ticket-of-leave 0 001 @ 06690408 n 0000 | a permit formerly given to convicts allowing them to leave prison under specific restrictions -06691083 10 n 02 pass 1 passport 1 003 @ 06689297 n 0000 + 00803325 v 0103 ~ 06691267 n 0000 | any authorization to pass or go somewhere; "the pass to visit had a strict time limit" -06691267 10 n 02 safe-conduct 0 safeguard 0 002 @ 06691083 n 0000 + 02026327 v 0201 | a document or escort providing safe passage through a region especially in time of war -06691442 10 n 01 encouragement 1 009 @ 06686736 n 0000 ! 07253637 n 0101 ~ 07251619 n 0000 ~ 07251779 n 0000 ~ 07251984 n 0000 ~ 07252206 n 0000 ~ 07252378 n 0000 ~ 07252764 n 0000 ~ 07253482 n 0000 | the expression of approval and support -06691684 10 n 05 acclaim 0 acclamation 0 plaudits 0 plaudit 0 eclat 0 004 @ 06686736 n 0000 + 00861725 v 0201 + 00861929 v 0104 + 00861725 v 0101 | enthusiastic approval; "the book met with modest acclaim"; "he acknowledged the plaudits of the crowd"; "they gave him more eclat than he really deserved" -06691989 10 n 03 applause 0 hand_clapping 0 clapping 0 007 @ 06686736 n 0000 #p 06688751 n 0000 + 00861929 v 0302 + 00034115 v 0301 ~ 06692238 n 0000 ~ 06692369 n 0000 ~ 06692464 n 0000 | a demonstration of approval by clapping the hands together -06692238 10 n 01 hand 1 001 @ 06691989 n 0000 | a round of applause to signify approval; "give the little lady a great big hand" -06692369 10 n 01 handclap 0 001 @ 06691989 n 0000 | a clap of the hands to indicate approval -06692464 10 n 01 round 1 001 @ 06691989 n 0000 | an outburst of applause; "there was a round of applause" -06692572 10 n 01 cheer 0 006 @ 06686736 n 0000 + 00858568 v 0101 ~ 06692740 n 0000 ~ 06692834 n 0000 ~ 06692973 n 0000 ~ 06693086 n 0000 | a cry or shout of approval -06692740 10 n 01 banzai 0 001 @ 06692572 n 0000 | a Japanese cheer of enthusiasm or triumph -06692834 10 n 01 bravo 0 002 @ 06692572 n 0000 + 00860482 v 0101 | a cry of approval as from an audience at the end of great performance -06692973 10 n 02 hurrah 0 hooray 0 001 @ 06692572 n 0000 | a victory cheer; "let's give the team a big hurrah" -06693086 10 n 01 salvo 0 001 @ 06692572 n 0000 | a sudden outburst of cheers; "there was a salvo of approval" -06693198 10 n 04 praise 0 congratulations 1 kudos 0 extolment 0 008 @ 06686736 n 0000 + 00860620 v 0402 + 00856824 v 0101 ~ 06693870 n 0000 ~ 06694149 n 0000 ~ 06694359 n 0000 ~ 06694540 n 0000 ~ 06695227 n 0000 | an expression of approval and commendation; "he always appreciated praise for his work" -06693502 10 n 01 praise 1 002 @ 01028655 n 0000 ~ 06693655 n 0000 | offering words of homage as an act of worship; "they sang a hymn of praise to God" -06693655 10 n 01 hallelujah 0 001 @ 06693502 n 0000 | a shout or song of praise to God -06693744 10 n 01 rave 0 002 @ 06410391 n 0000 + 00882220 v 0101 | an extravagantly enthusiastic review; "he gave it a rave" -06693870 10 n 01 superlative 0 008 @ 06693198 n 0000 -u 00227507 a 0000 -u 00229630 a 0000 -u 01555732 a 0000 -u 01556061 a 0000 -u 01557120 a 0000 -u 01557386 a 0000 -u 00408021 r 0000 | an exaggerated expression (usually of praise); "the critics lavished superlatives on it" -06694149 10 n 05 encomium 0 eulogy 1 panegyric 0 paean 0 pean 0 006 @ 06693198 n 0000 + 00906099 a 0303 + 09617161 n 0302 + 00906099 a 0304 + 00906099 a 0202 + 00906099 a 0101 | a formal expression of praise -06694359 10 n 02 eulogy 0 eulogium 0 004 @ 06693198 n 0000 + 00906099 a 0102 + 00880780 v 0101 + 00880780 v 0102 | a formal expression of praise for someone who has died recently -06694540 10 n 03 recommendation 2 testimonial 0 good_word 1 005 @ 06693198 n 0000 + 02813162 a 0201 + 00882948 v 0102 ~ 06694796 n 0000 ~ 06695110 n 0000 | something that recommends (or expresses commendation of) a person or thing as worthy or desirable -06694796 10 n 03 character 1 reference 1 character_reference 0 002 @ 06694540 n 0000 + 00956687 v 0103 | a formal recommendation by a former employer to a potential future employer describing the person's qualifications and dependability; "requests for character references are all too often answered evasively" -06695110 10 n 01 puff 0 002 @ 06694540 n 0000 + 01065272 v 0101 | exaggerated praise (as for promotional purposes) -06695227 10 n 01 compliment 0 006 @ 06693198 n 0000 + 00905905 a 0101 + 00881661 v 0101 ~ 06695424 n 0000 ~ 06695579 n 0000 ~ 06696308 n 0000 | a remark (or act) expressing praise and admiration -06695424 10 n 01 trade-last 0 001 @ 06695227 n 0000 | a compliment that I heard about you that I offer to trade for a compliment you have heard about me -06695579 10 n 01 flattery 0 006 @ 06695227 n 0000 + 00880227 v 0101 ~ 06695753 n 0000 ~ 06695862 n 0000 ~ 06696025 n 0000 ~ 06696181 n 0000 | excessive or insincere praise -06695753 10 n 01 adulation 0 001 @ 06695579 n 0000 | servile flattery; exaggerated and hypocritical praise -06695862 10 n 03 blandishment 0 cajolery 0 palaver 1 004 @ 06695579 n 0000 + 00768778 v 0303 + 00768778 v 0202 + 00880227 v 0102 | flattery intended to persuade -06696025 10 n 04 blarney 0 coaxing 0 soft_soap 0 sweet_talk 0 003 @ 06695579 n 0000 + 00768778 v 0205 + 00768778 v 0104 | flattery designed to gain favor -06696181 10 n 01 puffery 0 001 @ 06695579 n 0000 | a flattering commendation (especially when used for promotional purposes) -06696308 10 n 03 unction 0 smarm 0 fulsomeness 0 003 @ 06695227 n 0000 + 02181432 a 0302 + 02181432 a 0205 | excessive but superficial compliments given with affected charm -06696483 10 n 05 award 0 accolade 0 honor 0 honour 0 laurels 0 020 @ 06806469 n 0000 + 02546075 v 0402 + 00821959 a 0301 + 02546075 v 0301 + 02261888 v 0101 ~ 04487996 n 0000 ~ 06696991 n 0000 ~ 06697331 n 0000 ~ 06705891 n 0000 ~ 06705984 n 0000 ~ 06706125 n 0000 ~ 06706317 n 0000 ~ 06706504 n 0000 ~ 06706676 n 0000 ~ 06709442 n 0000 ~ 07268603 n 0000 ~ 07268759 n 0000 ~ 07268967 n 0000 ~ 07269163 n 0000 ~ 07269430 n 0000 | a tangible symbol signifying approval or distinction; "an award for bravery" -06696991 10 n 01 aliyah 0 002 @ 06696483 n 0000 ;c 06232880 n 0000 | (Judaism) the honor of being called up to the reading desk in the synagogue to read from the Torah; "he was called on for an aliyah" -06697195 10 n 02 tribute 1 testimonial 1 002 @ 06686736 n 0000 + 02813162 a 0201 | something given or done as an expression of esteem -06697331 10 n 02 academic_degree 0 degree 0 008 @ 06696483 n 0000 ~ 06697703 n 0000 ~ 06698252 n 0000 ~ 06700030 n 0000 ~ 06700447 n 0000 ~ 06702458 n 0000 ~ 06704740 n 0000 ~ 06705079 n 0000 | an award conferred by a college or university signifying that the recipient has satisfactorily completed a course of study; "he earned his degree at Princeton summa cum laude" -06697703 10 n 02 associate_degree 0 associate 0 004 @ 06697331 n 0000 ~ 06697935 n 0000 ~ 06698031 n 0000 ~ 06698150 n 0000 | a degree granted by a two-year college on successful completion of the undergraduates course of studies -06697935 10 n 02 Associate_in_Arts 0 AA 0 001 @ 06697703 n 0000 | an associate degree in arts -06698031 10 n 02 Associate_in_Applied_Science 0 AAS 0 001 @ 06697703 n 0000 | an associate degree in applied science -06698150 10 n 02 Associate_in_Nursing 0 AN 0 001 @ 06697703 n 0000 | an associate degree in nursing -06698252 10 n 02 bachelor's_degree 0 baccalaureate 0 013 @ 06697331 n 0000 ~ 06698640 n 0000 ~ 06698775 n 0000 ~ 06698902 n 0000 ~ 06699012 n 0000 ~ 06699115 n 0000 ~ 06699225 n 0000 ~ 06699366 n 0000 ~ 06699465 n 0000 ~ 06699579 n 0000 ~ 06699685 n 0000 ~ 06699811 n 0000 ~ 06699926 n 0000 | an academic degree conferred on someone who has successfully completed undergraduate studies -06698640 10 n 04 Bachelor_of_Arts 0 BA 0 Artium_Baccalaurens 0 AB 0 001 @ 06698252 n 0000 | a bachelor's degree in arts and sciences -06698775 10 n 02 Bachelor_of_Arts_in_Library_Science 0 ABLS 0 001 @ 06698252 n 0000 | a bachelor's degree in library science -06698902 10 n 02 Bachelor_of_Arts_in_Nursing 0 BAN 2 001 @ 06698252 n 0000 | a bachelor's degree in nursing -06699012 10 n 02 Bachelor_of_Divinity 0 BD 0 001 @ 06698252 n 0000 | a bachelor's degree in religion -06699115 10 n 02 Bachelor_of_Literature 0 BLitt 0 001 @ 06698252 n 0000 | a bachelor's degree in literature -06699225 10 n 02 Bachelor_of_Medicine 0 MB 0 002 @ 06698252 n 0000 ;r 08860123 n 0000 | (a British degree) a bachelor's degree in medicine -06699366 10 n 02 Bachelor_of_Music 0 BMus 0 001 @ 06698252 n 0000 | a bachelor's degree in music -06699465 10 n 02 Bachelor_of_Naval_Science 0 BNS 0 001 @ 06698252 n 0000 | a bachelor's degree in naval science -06699579 10 n 03 Bachelor_of_Science 0 BS 0 SB 0 001 @ 06698252 n 0000 | a bachelor's degree in science -06699685 10 n 02 Bachelor_of_Science_in_Architecture 0 BSArch 0 001 @ 06698252 n 0000 | a bachelor's degree in architecture -06699811 10 n 01 Bachelor_of_Science_in_Engineering 0 001 @ 06698252 n 0000 | a bachelor's degree in engineering -06699926 10 n 02 Bachelor_of_Theology 0 ThB 0 001 @ 06698252 n 0000 | a bachelor's degree in theology -06700030 10 n 02 honours 0 honours_degree 0 003 @ 06697331 n 0000 ;r 08860123 n 0000 ~ 06700169 n 0000 | a university degree with honors -06700169 10 n 02 first 0 first-class_honours_degree 0 003 @ 06700030 n 0000 ;r 08860123 n 0000 ~ 06700325 n 0000 | an honours degree of the highest class -06700325 10 n 01 double_first 0 002 @ 06700169 n 0000 ;r 08860123 n 0000 | a first-class honours degree in two subjects -06700447 10 n 01 master's_degree 0 015 @ 06697331 n 0000 ~ 06700844 n 0000 ~ 06701001 n 0000 ~ 06701128 n 0000 ~ 06701251 n 0000 ~ 06701359 n 0000 ~ 06701495 n 0000 ~ 06701596 n 0000 ~ 06701698 n 0000 ~ 06701800 n 0000 ~ 06701906 n 0000 ~ 06702020 n 0000 ~ 06702139 n 0000 ~ 06702247 n 0000 ~ 06702358 n 0000 | an academic degree higher than a bachelor's degree but lower than a doctor's degree -06700844 10 n 02 Master_of_Architecture 0 MArch 0 001 @ 06700447 n 0000 | a degree granted for the successful completion of advanced study of architecture -06701001 10 n 04 Master_of_Arts 0 MA 0 Artium_Magister 0 AM 1 001 @ 06700447 n 0000 | a master's degree in arts and sciences -06701128 10 n 02 Master_of_Arts_in_Library_Science 0 MALS 0 001 @ 06700447 n 0000 | a master's degree in library science -06701251 10 n 02 Master_of_Arts_in_Teaching 0 MAT 0 001 @ 06700447 n 0000 | a master's degree in teaching -06701359 10 n 03 Master_in_Business 0 Master_in_Business_Administration 0 MBA 0 001 @ 06700447 n 0000 | a master's degree in business -06701495 10 n 02 Master_of_Divinity 0 MDiv 0 001 @ 06700447 n 0000 | a master's degree in religion -06701596 10 n 02 Master_of_Education 0 MEd 0 001 @ 06700447 n 0000 | a master's degree in education -06701698 10 n 02 Master_of_Fine_Arts 0 MFA 0 001 @ 06700447 n 0000 | a master's degree in fine arts -06701800 10 n 02 Master_of_Literature 0 MLitt 0 001 @ 06700447 n 0000 | a master's degree in literature -06701906 10 n 02 Master_of_Library_Science 0 MLS 0 001 @ 06700447 n 0000 | a master's degree in library science -06702020 10 n 01 Master_in_Public_Affairs 0 001 @ 06700447 n 0000 | a master's degree in questions of public concern -06702139 10 n 04 Master_of_Science 0 MS 0 SM 0 MSc 0 001 @ 06700447 n 0000 | a master's degree in science -06702247 10 n 01 Master_of_Science_in_Engineering 0 001 @ 06700447 n 0000 | a master's degree in engineering -06702358 10 n 02 Master_of_Theology 0 ThM 0 001 @ 06700447 n 0000 | a master's degree in theology -06702458 10 n 02 doctor's_degree 0 doctorate 0 017 @ 06697331 n 0000 + 02893338 a 0202 + 02893338 a 0201 ~ 06702888 n 0000 ~ 06703002 n 0000 ~ 06703114 n 0000 ~ 06703213 n 0000 ~ 06703321 n 0000 ~ 06703420 n 0000 ~ 06703522 n 0000 ~ 06703632 n 0000 ~ 06703733 n 0000 ~ 06703834 n 0000 ~ 06703953 n 0000 ~ 06704366 n 0000 ~ 06704482 n 0000 ~ 06704582 n 0000 | one of the highest earned academic degrees conferred by a university -06702888 10 n 02 Doctor_of_Dental_Medicine 0 DMD 0 001 @ 06702458 n 0000 | a doctor's degree in dental medicine -06703002 10 n 02 Doctor_of_Dental_Surgery 0 DDS 0 001 @ 06702458 n 0000 | a doctor's degree in dental surgery -06703114 10 n 02 Doctor_of_Divinity 0 DD 0 001 @ 06702458 n 0000 | a doctor's degree in religion -06703213 10 n 03 Doctor_of_Education 0 EdD 0 DEd 0 001 @ 06702458 n 0000 | a doctor's degree in education -06703321 10 n 02 Doctor_of_Medicine 0 MD 0 001 @ 06702458 n 0000 | a doctor's degree in medicine -06703420 10 n 03 Doctor_of_Music 0 DMus 0 MusD 0 001 @ 06702458 n 0000 | a doctor's degree in music -06703522 10 n 02 Doctor_of_Musical_Arts 0 AMusD 0 001 @ 06702458 n 0000 | a doctor's degree in musical arts -06703632 10 n 02 Doctor_of_Optometry 0 OD 0 001 @ 06702458 n 0000 | a doctor's degree in optometry -06703733 10 n 02 Doctor_of_Osteopathy 0 DO 1 001 @ 06702458 n 0000 | doctor's degree in osteopathy -06703834 10 n 02 Doctor_of_Arts 1 D.A. 0 001 @ 06702458 n 0000 | a doctor's degree with a special disciplinary focus -06703953 10 n 01 Doctor_of_Philosophy 0 003 @ 06702458 n 0000 ~ 06704115 n 0000 ~ 06704295 n 0000 | a doctorate awarded for original contributions to knowledge -06704115 10 n 02 Ph.D. 0 PhD 0 001 @ 06703953 n 0000 | a doctorate usually based on at least 3 years graduate study and a dissertation; the highest degree awarded graduate study -06704295 10 n 01 DPhil 0 001 @ 06703953 n 0000 | a British doctorate -06704366 10 n 02 Doctor_of_Public_Health 0 DPH 0 001 @ 06702458 n 0000 | a doctor's degree in preventive medicine -06704482 10 n 02 Doctor_of_Theology 0 ThD 0 001 @ 06702458 n 0000 | a doctor's degree in theology -06704582 10 n 02 Doctor_of_Sacred_Theology 0 STD 0 001 @ 06702458 n 0000 | a doctor's degree in theology; "STD is from the Latin Sanctae Theologiae Doctor" -06704740 10 n 01 law_degree 0 003 @ 06697331 n 0000 ~ 06704898 n 0000 ~ 06704990 n 0000 | degree conferred on someone who successfully completes law school -06704898 10 n 02 Bachelor_of_Laws 0 LLB 0 001 @ 06704740 n 0000 | a three-year law degree -06704990 10 n 02 Master_of_Laws 0 LLM 0 001 @ 06704740 n 0000 | an advanced law degree -06705079 10 n 02 honorary_degree 0 honoris_causa 0 007 @ 06697331 n 0000 ~ 06705306 n 0000 ~ 06705398 n 0000 ~ 06705495 n 0000 ~ 06705595 n 0000 ~ 06705698 n 0000 ~ 06705787 n 0000 | a degree conferred to honor the recipient -06705306 10 n 02 Doctor_of_Arts 0 ArtsD 0 001 @ 06705079 n 0000 | an honorary arts degree -06705398 10 n 01 Doctor_of_Fine_Arts 0 001 @ 06705079 n 0000 | an honorary degree in fine arts -06705495 10 n 01 Doctor_of_Humane_Letters 0 001 @ 06705079 n 0000 | an honorary degree in letters -06705595 10 n 01 Doctor_of_Humanities 0 001 @ 06705079 n 0000 | an honorary degree in the humanities -06705698 10 n 02 Doctor_of_Laws 0 LLD 0 001 @ 06705079 n 0000 | an honorary law degree -06705787 10 n 03 Doctor_of_Science 0 DS 0 ScD 0 001 @ 06705079 n 0000 | an honorary degree in science -06705891 10 n 02 pennant 1 crown 0 001 @ 06696483 n 0000 | the award given to the champion -06705984 10 n 03 cachet 0 seal 0 seal_of_approval 0 002 @ 06696483 n 0000 + 00698732 v 0201 | an indication of approved or superior status -06706125 10 n 02 citation 0 commendation 0 003 @ 06696483 n 0000 + 00882395 v 0201 + 01023071 v 0102 | an official award (as for bravery or service) usually given as formal public statement -06706317 10 n 02 mention 0 honorable_mention 0 002 @ 06696483 n 0000 + 01023071 v 0101 | an official recognition of merit; "although he didn't win the prize he did get special mention" -06706504 10 n 02 letter 2 varsity_letter 0 002 @ 06696483 n 0000 + 02290349 v 0101 | an award earned by participation in a school sport; "he won letters in three sports" -06706676 10 n 06 decoration 0 laurel_wreath 0 medal 0 medallion 0 palm 0 ribbon 0 019 @ 06696483 n 0000 + 10305062 n 0302 + 10305062 n 0301 + 02547046 v 0101 ~ 06707178 n 0000 ~ 06707382 n 0000 ~ 06707555 n 0000 ~ 06707709 n 0000 ~ 06707846 n 0000 ~ 06708007 n 0000 ~ 06708167 n 0000 ~ 06708304 n 0000 ~ 06708475 n 0000 ~ 06708664 n 0000 ~ 06708866 n 0000 ~ 06708970 n 0000 ~ 06709112 n 0000 ~ 06709245 n 0000 ~ 06709349 n 0000 | an award for winning a championship or commemorating some other event -06707178 10 n 02 Medal_of_Honor 0 Congressional_Medal_of_Honor 0 001 @ 06706676 n 0000 | the highest U.S. military decoration awarded for bravery and valor in action `above and beyond the call of duty' -06707382 10 n 01 Distinguished_Service_Medal 0 001 @ 06706676 n 0000 | a United States military decoration for meritorious service in wartime duty of great responsibility -06707555 10 n 01 Distinguished_Service_Cross 0 001 @ 06706676 n 0000 | a United States Army decoration for extraordinary heroism against an armed enemy -06707709 10 n 01 Navy_Cross 0 001 @ 06706676 n 0000 | a United States Navy decoration for extraordinary heroism against an armed enemy -06707846 10 n 01 Distinguished_Flying_Cross 0 001 @ 06706676 n 0000 | a United States Air Force decoration for heroism while participating in an aerial flight -06708007 10 n 01 Air_Medal 0 001 @ 06706676 n 0000 | a United States Air Force decoration for meritorious achievement while participating in an aerial flight -06708167 10 n 02 Silver_Star_Medal 0 Silver_Star 0 001 @ 06706676 n 0000 | a United States military decoration for gallantry in action -06708304 10 n 02 Bronze_Star_Medal 0 Bronze_Star 0 001 @ 06706676 n 0000 | a United States military decoration awarded for meritorious service (except in aerial flight) -06708475 10 n 02 Order_of_the_Purple_Heart 0 Purple_Heart 0 001 @ 06706676 n 0000 | a United States military decoration awarded to any member of the armed forces who is wounded in action -06708664 10 n 01 Oak_Leaf_Cluster 0 001 @ 06706676 n 0000 | a United States military decoration consisting of bronze or silver oak leaves and acorns awarded to anyone who has won a given medal before -06708866 10 n 01 Victoria_Cross 0 001 @ 06706676 n 0000 | a British military decoration for gallantry -06708970 10 n 01 Distinguished_Conduct_Medal 0 001 @ 06706676 n 0000 | a British military decoration for distinguished conduct in the field -06709112 10 n 01 Distinguished_Service_Order 0 001 @ 06706676 n 0000 | a British military decoration for special service in action -06709245 10 n 01 Croix_de_Guerre 0 001 @ 06706676 n 0000 | a French military decoration for gallantry -06709349 10 n 01 Medaille_Militaire 0 001 @ 06706676 n 0000 | a French military decoration -06709442 10 n 01 trophy 0 001 @ 06696483 n 0000 | an award for success in war or hunting -06709533 10 n 01 disapproval 0 005 @ 06598915 n 0000 ! 06686736 n 0101 ~ 06709692 n 0000 ~ 06710546 n 0000 ~ 07253637 n 0000 | the expression of disapproval -06709692 10 n 02 disapprobation 0 condemnation 0 007 @ 06709533 n 0000 + 02149302 v 0201 + 00906735 v 0202 + 00864159 v 0201 ! 06687178 n 0101 ~ 06709998 n 0000 ~ 06710152 n 0000 | an expression of strong disapproval; pronouncing as wrong or morally culpable; "his uncompromising condemnation of racism" -06709998 10 n 02 censure 0 animadversion 0 004 @ 06709692 n 0000 + 00827158 v 0201 + 00823669 v 0102 ~ 06710330 n 0000 | harsh criticism or disapproval -06710152 10 n 02 demonization 0 demonisation 0 003 @ 06709692 n 0000 + 00547300 v 0202 + 00547300 v 0101 | to represent as diabolically evil; "the demonization of our enemies" -06710330 10 n 01 interdict 0 001 @ 06709998 n 0000 | an ecclesiastical censure by the Roman Catholic Church withdrawing certain sacraments and Christian burial from a person or all persons in a particular district -06710546 10 n 02 criticism 0 unfavorable_judgment 0 013 @ 06709533 n 0000 + 00647542 a 0101 + 00826509 v 0103 ~ 01220619 n 0000 ~ 06710960 n 0000 ~ 06711030 n 0000 ~ 06711159 n 0000 ~ 06711404 n 0000 ~ 06711539 n 0000 ~ 06711855 n 0000 ~ 06712498 n 0000 ~ 06712625 n 0000 ~ 06712761 n 0000 | disapproval expressed by pointing out faults or shortcomings; "the senator received severe criticism from his opponent" -06710960 10 n 01 brickbat 0 001 @ 06710546 n 0000 | blunt criticism -06711030 10 n 02 faultfinding 0 carping 0 002 @ 06710546 n 0000 + 00647867 a 0102 | persistent petty and unjustified criticism -06711159 10 n 05 fire 0 attack 0 flak 0 flack 0 blast 0 002 @ 06710546 n 0000 + 00862683 v 0201 | intense adverse criticism; "Clinton directed his fire at the Republican Party"; "the government has come under attack"; "don't give me any flak" -06711404 10 n 01 thrust 0 001 @ 06710546 n 0000 | verbal criticism; "he enlivened his editorials with barbed thrusts at politicians" -06711539 10 n 01 potshot 0 001 @ 06710546 n 0000 | criticism aimed at an easy target and made without careful consideration; "reporters took potshots at the mayor" -06711705 10 n 01 counterblast 0 001 @ 07199565 n 0000 | a vigorous and unrestrained response; "her tirade provoked a counterblast from her husband" -06711855 10 n 05 rebuke 0 reproof 0 reproval 0 reprehension 0 reprimand 0 016 @ 06710546 n 0000 + 00824767 v 0508 + 00823669 v 0501 + 00826201 v 0401 + 00824066 v 0302 + 00824767 v 0206 + 00824767 v 0103 ~ 06539076 n 0000 ~ 06712833 n 0000 ~ 06713026 n 0000 ~ 06713187 n 0000 ~ 06713377 n 0000 ~ 06713512 n 0000 ~ 06713930 n 0000 ~ 06714288 n 0000 ~ 06714420 n 0000 | an act or expression of criticism and censure; "he had to take the rebuke with a smile on his face" -06712325 10 n 02 sermon 1 preaching 1 004 @ 06713930 n 0000 + 00827730 v 0201 + 00828374 v 0101 + 00828374 v 0102 | a moralistic rebuke; "your preaching is wasted on him" -06712498 10 n 01 slating 0 001 @ 06710546 n 0000 | a severely critical attack; "the reviewers gave his book a sound slating" -06712625 10 n 01 static 0 001 @ 06710546 n 0000 | angry criticism; "they will probably give you a lot of static about your editorial" -06712761 10 n 01 stricture 0 001 @ 06710546 n 0000 | severe criticism -06712833 10 n 04 chiding 0 scolding 0 objurgation 0 tongue-lashing 0 005 @ 06711855 n 0000 + 00824292 v 0303 + 00824767 v 020c + 00824767 v 010d ~ 06713099 n 0000 | rebuking a person harshly -06713026 10 n 01 what_for 0 001 @ 06711855 n 0000 | a strong reprimand -06713099 10 n 02 wig 0 wigging 0 001 @ 06712833 n 0000 | British slang for a scolding -06713187 10 n 07 castigation 0 earful 0 bawling_out 0 chewing_out 0 upbraiding 0 going-over 0 dressing_down 0 003 @ 06711855 n 0000 + 00825975 v 0502 + 00824292 v 0102 | a severe scolding -06713377 10 n 02 berating 0 blowing_up 0 001 @ 06711855 n 0000 | a severe rebuke; "he deserved the berating that the coach gave him" -06713512 10 n 01 reproach 0 003 @ 06711855 n 0000 ~ 06713650 n 0000 ~ 06713752 n 0000 | a mild rebuke or criticism; "words of reproach" -06713650 10 n 02 self-reproach 0 self-reproof 0 001 @ 06713512 n 0000 | the act of blaming yourself -06713752 10 n 02 blame 0 rap 0 003 @ 06713512 n 0000 + 01321529 a 0101 + 00842772 v 0101 | a reproach for some lapse or misdeed; "he took the blame for it"; "it was a bum rap" -06713930 10 n 03 lecture 1 speech 3 talking_to 0 005 @ 06711855 n 0000 + 00990008 v 0201 + 00824767 v 0107 ~ 06712325 n 0000 ~ 06714184 n 0000 | a lengthy rebuke; "a good lecture was my father's idea of discipline"; "the teacher gave him a talking to" -06714184 10 n 01 curtain_lecture 0 001 @ 06713930 n 0000 | a private lecture to a husband by his wife -06714288 10 n 03 correction 0 chastening 0 chastisement 0 002 @ 06711855 n 0000 + 00824292 v 0301 | a rebuke for making a mistake -06714420 10 n 03 admonition 0 admonishment 0 monition 0 003 @ 06711855 n 0000 + 00824066 v 0201 + 00824066 v 0101 | a firm rebuke -06714552 10 n 01 respects 0 001 @ 06598915 n 0000 | (often used with `pay') a formal expression of esteem; "he paid his respects to the mayor" -06714697 10 n 01 ad-lib 0 002 @ 06765044 n 0000 + 01728840 v 0103 | remark made spontaneously without prior preparation; "his ad-libs got him in trouble with the politicians" -06714874 10 n 01 courtesy 0 001 @ 06765044 n 0000 | a courteous or respectful or considerate remark -06714976 10 n 02 disrespect 0 discourtesy 0 009 @ 06598915 n 0000 + 02457825 v 0101 ~ 06715223 n 0000 ~ 06715638 n 0000 ~ 06715786 n 0000 ~ 06715927 n 0000 ~ 06717170 n 0000 ~ 06721813 n 0000 ~ 07124172 n 0000 | an expression of lack of respect -06715223 10 n 05 abuse 0 insult 0 revilement 0 contumely 0 vilification 1 010 @ 06714976 n 0000 + 00847870 v 0501 + 01995500 a 0401 + 00847870 v 0302 + 00848420 v 0202 + 00845299 v 0101 ~ 06721269 n 0000 ~ 06721342 n 0000 ~ 06721461 n 0000 ~ 06721604 n 0000 | a rude expression intended to offend or hurt; "when a student made a stupid mistake he spared them no abuse"; "they yelled insults at the visiting team" -06715638 10 n 01 derision 0 005 @ 06714976 n 0000 + 00852922 v 0101 ~ 06716234 n 0000 ~ 06716796 n 0000 ~ 06716992 n 0000 | contemptuous laughter -06715786 10 n 01 ridicule 0 003 @ 06714976 n 0000 + 01266397 a 0103 + 00851933 v 0101 | language or behavior intended to mock or humiliate -06715927 10 n 02 contempt 0 scorn 0 006 @ 06714976 n 0000 + 01774799 v 0203 + 01995288 a 0101 ~ 06716117 n 0000 ~ 06716483 n 0000 ~ 06716675 n 0000 | open disrespect for a person or thing -06716117 10 n 01 fleer 0 002 @ 06715927 n 0000 + 00029518 v 0101 | contempt expressed by mockery in looks or words -06716234 10 n 05 jeer 0 jeering 0 mockery 0 scoff 0 scoffing 0 008 @ 06715638 n 0000 + 00801782 v 0501 + 00850192 v 0502 + 00801782 v 0401 + 00850192 v 0402 + 00849080 v 0301 + 00850192 v 0201 + 00850192 v 0101 | showing your contempt by derision -06716483 10 n 02 sneer 0 leer 0 005 @ 06715927 n 0000 + 02464277 a 0201 + 02164288 v 0201 + 00032778 v 0101 + 00032539 v 0101 | a facial expression of contempt or scorn; the upper lip curls -06716675 10 n 01 sneer 1 003 @ 06715927 n 0000 + 00032539 v 0101 + 00032778 v 0101 | a contemptuous or scornful remark -06716796 10 n 04 put-down 0 squelch 0 squelcher 0 takedown 0 006 @ 06715638 n 0000 ;u 07075172 n 0000 + 01800422 v 0401 + 00463234 v 0301 + 00463234 v 0201 + 01800422 v 0105 | a crushing remark -06716992 10 n 02 stultification 0 befooling 0 003 @ 06715638 n 0000 + 01801080 v 0101 + 00853445 v 0101 | derision of someone or something as foolish or absurd or inconsistent -06717170 10 n 03 disparagement 0 depreciation 0 derogation 0 052 @ 06714976 n 0000 + 00864475 v 0304 + 00855933 v 0202 + 00845909 v 0101 -u 01466305 a 0000 -u 04668139 n 0000 ~ 06718269 n 0000 ~ 06718434 n 0000 ~ 06718543 n 0000 ~ 06719203 n 0000 ~ 06719299 n 0000 ~ 06719404 n 0000 ~ 06719579 n 0000 -u 09637684 n 0000 -u 09637837 n 0000 -u 09638009 n 0000 -u 09638245 n 0000 -u 09639719 n 0000 -u 09641226 n 0000 -u 09641422 n 0000 -u 09642917 n 0000 -u 09643078 n 0000 -u 09643545 n 0000 -u 09643670 n 0000 -u 09643799 n 0000 -u 09645091 n 0303 -u 09667205 n 0000 -u 09680657 n 0000 -u 09682122 n 0000 -u 09698337 n 0000 -u 09715521 n 0000 -u 09716439 n 0000 -u 09718652 n 0000 -u 09720406 n 0000 -u 09722898 n 0000 -u 09748239 n 0000 -u 09883947 n 0000 -u 10076033 n 0000 -u 10157378 n 0000 -u 10157549 n 0000 -u 10203682 n 0000 -u 10228864 n 0000 -u 10287082 n 0000 -u 10330439 n 0000 -u 10350484 n 0000 -u 10431330 n 0000 -u 10588182 n 0000 -u 10589243 n 0000 -u 10663137 n 0000 -u 10673946 n 0000 -u 10727623 n 0000 -u 10786992 n 0000 | a communication that belittles somebody or something -06718269 10 n 01 cold_water 0 001 @ 06717170 n 0000 | disparagement of a plan or hope or expectation; "she poured cold water on the whole idea of going to Africa" -06718434 10 n 02 denigration 0 belittling 0 002 @ 06717170 n 0000 + 00864475 v 0103 | a belittling comment -06718543 10 n 02 aspersion 0 slur 0 004 @ 06717170 n 0000 + 01044891 v 0201 + 00846509 v 0104 ~ 06718862 n 0000 | a disparaging remark; "in the 19th century any reference to female sexuality was considered a vile aspersion"; "it is difficult for a woman to understand a man's sensitivity to any slur on his virility" -06718862 10 n 01 ethnic_slur 0 014 @ 06718543 n 0000 -u 09636339 n 0103 -u 09637684 n 0000 -u 09637837 n 0000 -u 09638009 n 0000 -u 09638245 n 0000 -u 09642917 n 0000 -u 09682122 n 0000 -u 09698337 n 0000 -u 09715521 n 0000 -u 09716439 n 0000 -u 09720406 n 0000 -u 09722898 n 0000 -u 10431330 n 0000 | a slur on someone's race or language -06719203 10 n 02 detraction 0 petty_criticism 0 001 @ 06717170 n 0000 | a petty disparagement -06719299 10 n 01 sour_grapes 0 001 @ 06717170 n 0000 | disparagement of something that is unattainable -06719404 10 n 03 condescension 0 disdain 0 patronage 0 002 @ 06717170 n 0000 + 00908977 v 0103 | a communication that indicates lack of respect by patronizing the recipient -06719579 10 n 06 defamation 0 calumny 0 calumniation 0 obloquy 0 traducement 0 hatchet_job 0 011 @ 06717170 n 0000 + 00848169 v 0503 + 01161233 a 0202 + 00846509 v 0206 + 00846509 v 0101 ~ 06719974 n 0000 ~ 06720216 n 0000 ~ 06720371 n 0000 ~ 06720600 n 0000 ~ 06720784 n 0000 ~ 06720964 n 0000 | a false accusation of an offense or a malicious misrepresentation of someone's words or actions -06719974 10 n 03 character_assassination 0 assassination 1 blackwash 0 002 @ 06719579 n 0000 + 00847158 v 0201 | an attack intended to ruin someone's reputation -06720137 10 n 01 mud 0 001 @ 06720600 n 0000 | slanderous remarks or charges -06720216 10 n 03 smear 0 vilification 0 malignment 0 004 @ 06719579 n 0000 + 00848169 v 0302 + 00847870 v 0201 + 00846509 v 0107 | slanderous defamation -06720371 10 n 01 libel 0 006 @ 06719579 n 0000 ;c 00733883 n 0000 ;c 08441203 n 0000 + 01161233 a 0108 + 01161233 a 0107 + 00847683 v 0101 | a false and malicious publication printed for the purpose of defaming a living person -06720600 10 n 01 slander 0 005 @ 06719579 n 0000 @ 07160883 n 0000 + 01161233 a 0109 + 00846509 v 0102 ~ 06720137 n 0000 | words falsely spoken that damage the reputation of another -06720784 10 n 02 name_calling 0 names 0 001 @ 06719579 n 0000 | verbal abuse; a crude substitute for argument; "sticks and stones may break my bones but names can never hurt me" -06720964 10 n 02 name 1 epithet 1 002 @ 06719579 n 0000 ~ 06721081 n 0000 | a defamatory or abusive word or phrase -06721081 10 n 01 smear_word 0 001 @ 06720964 n 0000 | an epithet that can be used to smear someone's reputation; "he used the smear word `communist' for everyone who disagreed with him" -06721269 10 n 01 low_blow 0 001 @ 06715223 n 0000 | unscrupulous abuse -06721342 10 n 02 scurrility 0 billingsgate 0 002 @ 06715223 n 0000 + 01628531 a 0103 | foul-mouthed or obscene abuse -06721461 10 n 02 stinger 0 cut 2 002 @ 06715223 n 0000 + 01793742 v 0101 | a remark capable of wounding mentally; "the unkindest cut of all" -06721604 10 n 03 vituperation 0 invective 0 vitriol 0 003 @ 06715223 n 0000 + 01802165 a 030b + 00847870 v 0103 | abusive or venomous language used to express blame or censure or bitter deep-seated ill will -06721813 10 n 03 impudence 0 cheek 0 impertinence 0 003 @ 06714976 n 0000 + 00963452 v 0201 + 00205295 a 0103 | an impudent statement -06721949 10 n 06 sass 0 sassing 0 backtalk 0 back_talk 0 lip 0 mouth 0 005 @ 07199922 n 0000 + 01040707 v 0601 + 00941990 v 0604 + 00816143 v 0201 + 00205295 a 0107 | an impudent or insolent rejoinder; "don't give me any of your sass" -06722186 10 n 02 interpolation 0 insertion 0 002 @ 06598915 n 0000 + 00201407 v 0101 | a message (spoken or written) that is introduced or inserted; "with the help of his friend's interpolations his story was eventually told"; "with many insertions in the margins" -06722453 10 n 01 statement 0 044 @ 06598915 n 0000 + 01009240 v 0101 ~ 06467007 n 0000 ~ 06559365 n 0000 ~ 06723635 n 0000 ~ 06723908 n 0000 ~ 06724066 n 0000 ~ 06724763 n 0000 ~ 06725877 n 0000 ~ 06726158 n 0000 ~ 06727758 n 0000 ~ 06732013 n 0000 ~ 06732169 n 0000 ~ 06737112 n 0000 ~ 06738162 n 0000 ~ 06738281 n 0000 ~ 06738823 n 0000 ~ 06739013 n 0000 ~ 06739676 n 0000 ~ 06739782 n 0000 ~ 06743506 n 0000 ~ 06746005 n 0000 ~ 06746580 n 0000 ~ 06748969 n 0000 ~ 06750804 n 0000 ~ 06756267 n 0000 ~ 06756407 n 0000 ~ 06759063 n 0000 ~ 06762380 n 0000 ~ 06762602 n 0000 ~ 06762711 n 0000 ~ 06765044 n 0000 ~ 06768528 n 0000 ~ 06768735 n 0000 ~ 06768901 n 0000 ~ 06770275 n 0000 ~ 06770875 n 0000 ~ 06783598 n 0000 ~ 06816935 n 0000 ~ 07203388 n 0000 ~ 07204110 n 0000 ~ 07227406 n 0000 ~ 07234735 n 0000 ~ 07280941 n 0000 | a message that is stated or declared; a communication (oral or written) setting forth particulars or facts etc; "according to his statement he was in London on that day" -06723452 10 n 01 statement 5 001 @ 06598915 n 0000 | a nonverbal message; "a Cadillac makes a statement about who you are"; "his tantrums are a statement of his need for attention" -06723635 10 n 01 amendment 0 007 @ 06722453 n 0000 + 00996328 v 0101 ~i 06728034 n 0000 ~i 06728331 n 0000 ~i 06728726 n 0000 ~i 06728998 n 0000 ~i 06729251 n 0000 | a statement that is added to or revises or improves a proposal or document (a bill or constitution etc.) -06723908 10 n 01 thing 0 001 @ 06722453 n 0000 | a statement regarded as an object; "to say the same thing in other terms"; "how can you say such a thing?" -06724066 10 n 02 truth 0 true_statement 0 005 @ 06722453 n 0000 ! 06756407 n 0101 ~ 06724323 n 0000 ~ 07091385 n 0000 ~ 07154243 n 0000 | a true statement; "he told the truth"; "he thought of answering with the truth but he knew they wouldn't believe it" -06724323 10 n 02 gospel 2 gospel_truth 0 001 @ 06724066 n 0000 | an unquestionable truth; "his word was gospel" -06724437 10 n 01 antinomy 0 001 @ 07206887 n 0000 | a contradiction between two statements that seem equally reasonable -06724559 10 n 01 paradox 0 003 @ 07206887 n 0000 ;c 06163751 n 0000 + 00939895 a 0101 | (logic) a statement that contradicts itself; "`I always lie' is a paradox because if it is true it must be false" -06724763 10 n 02 description 1 verbal_description 0 004 @ 06722453 n 0000 ~ 06724942 n 0000 ~ 06725067 n 0000 ~ 07201804 n 0000 | a statement that represents something in words -06724942 10 n 01 job_description 0 001 @ 06724763 n 0000 | description of the responsibilities associated with a given job -06725067 10 n 02 specification 0 spec 0 004 @ 06724763 n 0000 + 01018928 v 0104 ~ 06725249 n 0000 ~ 06725680 n 0000 | a detailed description of design criteria for a piece of work -06725249 10 n 01 computer_architecture 0 002 @ 06725067 n 0000 ~ 06725467 n 0000 | the art of assembling logical elements into a computing device; the specification of the relation between parts of a computer system -06725467 10 n 02 neural_network 0 neural_net 0 001 @ 06725249 n 0000 | computer architecture in which processors are connected in a manner suggestive of connections between neurons; can learn by trial and error -06725680 10 n 01 network_architecture 0 001 @ 06725067 n 0000 | specification of design principles (including data formats and procedures) for creating a network configuration of data processors -06725877 10 n 01 declaration 0 010 @ 06722453 n 0000 + 01010118 v 0101 ~ 06726478 n 0000 ~ 06727133 n 0000 ~ 06727224 n 0000 ~ 06727616 n 0000 ~ 06729499 n 0000 ~ 06733119 n 0000 ~ 06733227 n 0000 ~ 06733476 n 0000 | a statement that is emphatic and explicit (spoken or written) -06726158 10 n 04 announcement 1 proclamation 0 annunciation 1 declaration 3 006 @ 06722453 n 0000 + 00965871 v 0402 + 00978173 v 0201 + 00965871 v 0101 ~ 06726671 n 0000 ~ 06726939 n 0000 | a formal public statement; "the government made an announcement about changes in the drug war"; "a declaration of independence" -06726478 10 n 01 bastardization 0 002 @ 06725877 n 0000 + 00818253 v 0101 | declaring or rendering bastard; "the annulment of their marriage resulted in the bastardization of their children" -06726671 10 n 01 edict 1 001 @ 06726158 n 0000 | a formal or authoritative proclamation -06726761 10 n 02 bull 1 papal_bull 0 001 @ 06539770 n 0000 | a formal proclamation issued by the pope (usually written in antiquated characters and sealed with a leaden bulla) -06726939 10 n 01 promulgation 1 003 @ 06726158 n 0000 + 00861560 v 0101 + 00977336 v 0103 | the official announcement of a new law or ordinance whereby the law or ordinance is put into effect -06727133 10 n 01 confession 2 001 @ 06725877 n 0000 | a public declaration of your faith -06727224 10 n 02 manifesto 0 pronunciamento 0 003 @ 06725877 n 0000 ;c 01124794 n 0000 ~i 06727416 n 0000 | a public declaration of intentions (as issued by a political party or government) -06727416 10 n 01 Communist_Manifesto 0 001 @i 06727224 n 0000 | a socialist manifesto written by Marx and Engels (1842) describing the history of the working-class movement according to their views -06727616 10 n 03 pronouncement 0 dictum 0 say-so 0 003 @ 06725877 n 0000 + 00971650 v 0101 ~ 07170080 n 0000 | an authoritative declaration -06727758 10 n 01 Bill_of_Rights 0 006 @ 06722453 n 0000 #p 06534132 n 0000 ;r 09044862 n 0000 ;c 08441203 n 0000 %p 06728034 n 0000 %p 06728331 n 0000 | a statement of fundamental rights and privileges (especially the first ten amendments to the United States Constitution) -06728034 10 n 01 First_Amendment 0 003 @i 06723635 n 0000 #p 06727758 n 0000 ;c 08441203 n 0000 | an amendment to the Constitution of the United States guaranteeing the right of free expression; includes freedom of assembly and freedom of the press and freedom of religion and freedom of speech -06728331 10 n 01 Fifth_Amendment 0 003 @i 06723635 n 0000 #p 06727758 n 0000 ;c 08441203 n 0000 | an amendment to the Constitution of the United States that imposes restrictions on the government's prosecution of persons accused of crimes; mandates due process of law and prohibits self-incrimination and double jeopardy; requires just compensation if private property is taken for public use -06728726 10 n 01 Fourteenth_Amendment 0 003 @i 06723635 n 0000 #p 06534132 n 0000 ;c 08441203 n 0000 | an amendment to the Constitution of the United States adopted in 1868; extends the guarantees of the Bill of Rights to the states as well as to the federal government -06728998 10 n 01 Eighteenth_Amendment 0 003 @i 06723635 n 0000 #p 06534132 n 0000 ;c 08441203 n 0000 | an amendment to the Constitution of the United States adopted in 1920; prohibited the manufacture and sale of alcoholic beverages; repealed in 1932 -06729251 10 n 01 Nineteenth_Amendment 0 003 @i 06723635 n 0000 #p 06534132 n 0000 ;c 08441203 n 0000 | an amendment to the Constitution of the United States adopted in 1920; guarantees that no state can deny the right to vote on the basis of sex -06729499 10 n 03 assertion 0 averment 0 asseveration 0 012 @ 06725877 n 0000 + 01016778 v 0302 + 01011031 v 0205 + 01016778 v 0101 ~ 06729864 n 0000 ~ 06730563 n 0000 ~ 06730780 n 0000 ~ 06731378 n 0000 ~ 06731697 n 0000 ~ 06732350 n 0000 ~ 06732710 n 0000 ~ 07204240 n 0000 | a declaration that is made emphatically (as if no supporting evidence were necessary) -06729864 10 n 01 claim 0 005 @ 06729499 n 0000 + 02275365 v 0101 ~ 06730068 n 0000 ~ 06730241 n 0000 ~ 06730371 n 0000 | an assertion of a right (as to money or property); "his claim asked for damages" -06730068 10 n 01 cause_of_action 0 002 @ 06729864 n 0000 ;c 08441203 n 0000 | a claim sufficient to demand judicial attention; the facts that give rise to right of action -06730241 10 n 01 dibs 0 002 @ 06729864 n 0000 ;u 07157273 n 0000 | a claim of rights; "I have dibs on that last slice of pizza" -06730371 10 n 01 pretension 0 002 @ 06729864 n 0000 + 02275799 v 0101 | the advancing of a claim; "his pretension to the crown"; "the town still puts forward pretensions as a famous resort" -06730563 10 n 01 claim 2 003 @ 06729499 n 0000 + 00756338 v 0101 ~ 06731186 n 0000 | an assertion that something is true or factual; "his claim that he was innocent"; "evidence contradicted the government's claims" -06730780 10 n 02 accusation 1 charge 4 006 @ 06729499 n 0000 + 00843959 v 0201 + 00843468 v 0201 + 03041739 a 0101 + 00843468 v 0102 ~ 06731069 n 0000 | an assertion that someone is guilty of a fault or offence; "the newspaper published charges that Jones was guilty of drunken driving" -06731069 10 n 01 countercharge 0 001 @ 06730780 n 0000 | a charge brought by an accused person against the accuser -06731186 10 n 02 allegation 1 allegement 0 003 @ 06730563 n 0000 + 01016002 v 0201 ~ 06559114 n 0000 | statements affirming or denying certain matters of fact that you are prepared to prove -06731378 10 n 01 contention 2 003 @ 06729499 n 0000 + 00756898 v 0101 ~ 06731510 n 0000 | a point asserted as part of an argument -06731510 10 n 01 submission 3 003 @ 06731378 n 0000 ;c 08441203 n 0000 + 00878136 v 0101 | (law) a contention presented by a lawyer to a judge or jury as part of the case he is arguing -06731697 10 n 02 ipse_dixit 0 ipsedixitism 0 001 @ 06729499 n 0000 | an unsupported dogmatic assertion -06731802 10 n 02 formula 0 expression 3 006 @ 06732169 n 0000 ;c 06000644 n 0000 + 00981083 v 0101 ~ 06286230 n 0000 ~ 06295113 n 0000 ~ 13789849 n 0000 | a group of symbols that make a mathematical statement -06732013 10 n 01 formula 1 003 @ 06722453 n 0000 + 01632411 v 0105 + 00981083 v 0101 | a conventionalized statement expressing some fundamental principle -06732169 10 n 01 mathematical_statement 0 005 @ 06722453 n 0000 ;c 06000644 n 0000 ~ 06669864 n 0000 ~ 06731802 n 0000 %p 06808720 n 0000 | a statement of a mathematical relation -06732350 10 n 03 avowal 0 avouchment 0 affirmation 0 006 @ 06729499 n 0000 + 01011031 v 0301 + 01011031 v 0104 ~ 06732581 n 0000 ~ 06732925 n 0000 ~ 07203696 n 0000 | a statement asserting the existence or the truth of something -06732581 10 n 02 reassertion 0 reaffirmation 0 003 @ 06732350 n 0000 + 01011923 v 0201 + 01012073 v 0102 | renewed affirmation -06732710 10 n 01 testimony 1 004 @ 06729499 n 0000 + 02812989 a 0101 + 01015244 v 0101 + 01014821 v 0101 | an assertion offering firsthand authentication of a fact; "according to his own testimony he can't do it" -06732925 10 n 02 profession 0 professing 0 003 @ 06732350 n 0000 + 00760735 v 0201 + 00818553 v 0102 | an open avowal (true or false) of some belief or opinion; "a profession of disagreement" -06733119 10 n 01 protestation 0 002 @ 06725877 n 0000 + 00910135 v 0101 | a strong declaration of protest -06733227 10 n 02 postulation 0 predication 0 005 @ 06725877 n 0000 ;c 06163751 n 0000 + 00931232 v 0202 + 01017001 v 0201 + 00716758 v 0101 | (logic) a declaration of something self-evident; something that can be assumed as the basis for argument -06733476 10 n 01 threat 1 003 @ 06725877 n 0000 ~ 06733682 n 0000 ~ 06733782 n 0000 | declaration of an intention or a determination to inflict harm on another; "his threat to kill me was quite explicit" -06733682 10 n 01 commination 0 001 @ 06733476 n 0000 | a threat of divine punishment or vengeance -06733782 10 n 01 menace 0 003 @ 06733476 n 0000 + 00012137 v 0101 + 01067194 v 0101 | a threat or the act of threatening; "he spoke with desperate menace" -06733939 10 n 01 evidence 0 012 @ 06634376 n 0000 ;c 08441203 n 0000 + 00954422 v 0102 + 01015244 v 0104 ~ 06734322 n 0000 ~ 06734467 n 0000 ~ 06734823 n 0000 ~ 06735077 n 0000 ~ 06735533 n 0000 ~ 06735731 n 0000 ~ 06735922 n 0000 ~ 06736083 n 0000 | (law) all the means by which any alleged matter of fact whose truth is investigated at judicial trial is established or disproved -06734322 10 n 01 exhibit 0 001 @ 06733939 n 0000 | an object or statement produced before a court of law and referred to while giving evidence -06734467 10 n 01 testimony 0 009 @ 06733939 n 0000 ;c 08441203 n 0000 + 02812989 a 0101 + 01014821 v 0101 ~ 06734702 n 0000 ~ 06736217 n 0000 ~ 06736405 n 0000 ~ 06736529 n 0000 ~ 06736946 n 0000 | a solemn statement made under oath -06734702 10 n 01 witness 0 002 @ 06734467 n 0000 ~ 05914234 n 0000 | testimony by word or deed to your religious faith -06734823 10 n 01 corpus_delicti 0 002 @ 06733939 n 0000 ;c 08441203 n 0000 | the body of evidence that constitute the offence; the objective proof that a crime has been committed (sometimes mistakenly thought to refer to the body of a homicide victim) -06735077 10 n 01 direct_evidence 0 003 @ 06733939 n 0000 ;c 08441203 n 0000 ! 06735533 n 0101 | evidence (usually the testimony of a witness) directly related to the fact in dispute -06735261 10 n 01 res_gestae 0 002 @ 06653363 n 0000 ;c 08441203 n 0000 | rule of evidence that covers words that are so closely associated with an occurrence that the words are considered part of the occurrence and as such their report does not violate the hearsay rule -06735533 10 n 02 circumstantial_evidence 0 indirect_evidence 0 003 @ 06733939 n 0000 ;c 08441203 n 0000 ! 06735077 n 0101 | evidence providing only a basis for inference about the fact in dispute -06735731 10 n 01 corroborating_evidence 0 002 @ 06733939 n 0000 ;c 08441203 n 0000 | additional evidence or evidence of different kind that supports a proof already offered in a proceeding -06735922 10 n 01 hearsay_evidence 0 002 @ 06733939 n 0000 ;c 08441203 n 0000 | evidence based on what someone has told the witness and not of direct knowledge -06736083 10 n 01 state's_evidence 0 002 @ 06733939 n 0000 ;c 08441203 n 0000 | evidence for the prosecution in criminal proceedings -06736217 10 n 01 declaration 2 002 @ 06734467 n 0000 ;c 08441203 n 0000 | (law) unsworn statement that can be admitted in evidence in a legal transaction; "his declaration of innocence" -06736405 10 n 01 attestation 0 003 @ 06734467 n 0000 ;c 08441203 n 0000 + 01014821 v 0102 | the action of bearing witness -06736529 10 n 01 affidavit 0 004 @ 06734467 n 0000 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06736769 n 0000 | written declaration made under oath; a written statement sworn to be true before someone legally authorized to administer an oath -06736769 10 n 01 verification 0 003 @ 06736529 n 0000 ;c 08441203 n 0000 + 01012395 v 0101 | (law) an affidavit attached to a statement confirming the truth of that statement -06736946 10 n 01 subornation 1 004 @ 06734467 n 0000 ;c 08441203 n 0000 + 00835158 v 0101 + 00834943 v 0101 | perjured testimony that someone was persuaded to give -06737112 10 n 02 bid 1 bidding 1 009 @ 06722453 n 0000 #p 00490569 n 0000 ;c 00490569 n 0000 + 02300060 v 0201 + 02300060 v 0101 ~ 06737394 n 0000 ~ 06737628 n 0000 ~ 06737758 n 0000 ~ 06738008 n 0000 | (bridge) the number of tricks a bridge player is willing to contract to make -06737394 10 n 02 contract 1 declaration 4 004 @ 06737112 n 0000 #p 00490569 n 0000 ;c 06520944 n 0000 + 02300549 v 0201 | (contract bridge) the highest bid becomes the contract setting the number of tricks that the bidder must make -06737628 10 n 01 takeout 0 002 @ 06737112 n 0000 ;c 00490569 n 0000 | (bridge) a bid that asks your partner to bid another suit -06737758 10 n 02 overbid 1 overcall 0 003 @ 06737112 n 0000 ;c 00490569 n 0000 + 02301151 v 0101 | (bridge) a bid that is higher than your opponent's bid (especially when your partner has not bid at all and your bid exceeds the value of your hand) -06738008 10 n 03 preemptive_bid 0 pre-empt 0 preempt 0 001 @ 06737112 n 0000 | a high bid that is intended to prevent the opposing players from bidding -06738162 10 n 01 word 3 002 @ 06722453 n 0000 + 00980453 v 0103 | a brief statement; "he didn't say a word about it" -06738281 10 n 02 explanation 0 account 4 017 @ 06722453 n 0000 + 00965035 v 0203 + 00867644 v 0201 + 01065456 v 0101 %p 06738823 n 0000 %p 06739013 n 0000 ~ 06739180 n 0000 ~ 06739509 n 0000 ~ 06739990 n 0000 ~ 06740183 n 0000 ~ 06742173 n 0000 ~ 06743362 n 0000 ~ 06744000 n 0000 ~ 06744154 n 0000 ~ 06744396 n 0000 ~ 07170753 n 0000 ~ 07282289 n 0000 | a statement that makes something comprehensible by describing the relevant structure or operation or circumstances etc.; "the explanation was very simple"; "I expected a brief account" -06738823 10 n 02 explicandum 0 explanandum 0 003 @ 06722453 n 0000 #p 06738281 n 0000 ;c 06163751 n 0000 | (logic) a statement of something (a fact or thing or expression) to be explained -06739013 10 n 01 explanans 0 003 @ 06722453 n 0000 #p 06738281 n 0000 ;c 06163751 n 0000 | (logic) statements that explain the explicandum; the explanatory premises -06739180 10 n 01 simplification 0 003 @ 06738281 n 0000 + 00400427 v 0101 ~ 06739345 n 0000 | an explanation that omits superfluous details and reduces complexity -06739345 10 n 02 oversimplification 0 simplism 0 002 @ 06739180 n 0000 + 00400741 v 0101 | a simplification that goes too far (to the point of misrepresentation) -06739509 10 n 01 accounting 0 001 @ 06738281 n 0000 | a convincing explanation that reveals basic causes; "he was unable to give a clear accounting for his actions" -06739676 10 n 01 value_statement 0 001 @ 06722453 n 0000 | a statement of the desirability of something -06739782 10 n 01 representation 2 002 @ 06722453 n 0000 + 00825447 v 0101 | a statement of facts and reasons made in appealing or protesting; "certain representations were made concerning police brutality" -06739990 10 n 01 reason 1 001 @ 06738281 n 0000 | an explanation of the cause of some phenomenon; "the reason a steady state was never reached was that the back pressure built up too slowly" -06740183 10 n 01 justification 0 007 @ 06738281 n 0000 + 00902424 v 0102 + 00894738 v 0104 + 00896803 v 0101 + 00896141 v 0101 ~ 06740402 n 0000 ~ 06740644 n 0000 | a statement in explanation of some action or belief -06740402 10 n 03 cause 0 reason 0 grounds 0 004 @ 06740183 n 0000 + 00323199 a 0101 + 01645601 v 0101 + 00770437 v 0103 | a justification for something existing or happening; "he had no cause to complain"; "they had good reason to rejoice" -06740644 10 n 03 defense 0 defence 0 vindication 0 007 @ 06740183 n 0000 + 00904690 v 0301 + 00896141 v 0302 + 00895304 v 0201 ~ 06740919 n 0000 ~ 06741099 n 0000 ~ 06741305 n 0000 | the justification for some act or belief; "he offered a persuasive defense of the theory" -06740919 10 n 02 apology 2 apologia 1 004 @ 06740644 n 0000 + 01631830 a 0101 + 09798534 n 0101 + 00894738 v 0102 | a formal written defense of something you believe in strongly -06741099 10 n 01 alibi 0 003 @ 06740644 n 0000 ;c 08441203 n 0000 + 00893741 v 0101 | (law) a defense by an accused person purporting to show that he or she could not have committed the crime in question -06741305 10 n 04 excuse 0 alibi 1 exculpation 0 self-justification 0 007 @ 06740644 n 0000 + 00893741 v 0201 + 00893167 v 0101 + 00894738 v 0103 + 00893435 v 0101 + 00905852 v 0101 ~ 06741728 n 0000 | a defense of some offensive behavior or some failure to keep a promise etc.; "he kept finding excuses to stay"; "every day he had a new alibi for not getting a job"; "his transparent self-justification was unacceptable" -06741728 10 n 02 extenuation 0 mitigation 0 004 @ 06741305 n 0000 + 00906037 v 0203 + 00198850 v 0201 + 00906037 v 0101 | a partial excuse to mitigate censure; an attempt to represent an offense as less serious than it appears by showing mitigating circumstances -06741993 10 n 01 exposition 2 002 @ 06392001 n 0000 ;c 07020895 n 0000 | (music) the section of a movement (especially in sonata form) where the major musical themes first occur -06742173 10 n 01 exposition 1 002 @ 06738281 n 0000 + 00955601 v 0104 | an account that sets forth the meaning or intent of a writing or discourse; "we would have understood the play better if there had been some initial exposition of the background" -06742426 10 n 02 exposition 0 expounding 0 004 @ 07170753 n 0000 + 00955601 v 0208 + 01001294 v 0103 ~ 06742772 n 0000 | a systematic interpretation or explanation (usually written) of a specific topic -06742630 10 n 01 construal 0 002 @ 07170753 n 0000 + 00623151 v 0102 | an interpretation of the meaning of something; the act of construing -06742772 10 n 01 philosophizing 0 003 @ 06742426 n 0000 + 00630026 v 0101 ~ 06742932 n 0000 | the exposition (often superficially) of a particular philosophy -06742932 10 n 03 moralizing 0 moralization 0 moralisation 0 005 @ 06742772 n 0000 + 00828374 v 0305 + 00828374 v 0204 + 00828374 v 0104 ~ 06743230 n 0000 | indulgence in moral pronouncements; the exposition (often superficially) of a particular moral code; "his constant moralizing drove me mad" -06743230 10 n 01 preachification 0 002 @ 06742932 n 0000 + 00828374 v 0103 | moralization delivered tediously in a preachy manner -06743362 10 n 01 explication 0 003 @ 06738281 n 0000 + 00925873 v 0101 + 00939277 v 0102 | a detailed explanation of the meaning of something -06743506 10 n 05 solution 0 answer 2 result 0 resolution 0 solvent 0 004 @ 06722453 n 0000 + 00634906 v 0501 + 00636279 v 0201 ~ 06743867 n 0000 | a statement that solves a problem or explains how to solve the problem; "they were trying to find a peaceful solution"; "the answers were in the back of the book"; "he computed the result to four decimal places" -06743867 10 n 01 denouement 0 001 @ 06743506 n 0000 | the final resolution of the main complication of a literary or dramatic work -06744000 10 n 02 gloss 0 rubric 1 003 @ 06738281 n 0000 + 00960961 v 0101 + 00961329 v 0101 | an explanation or definition of an obscure word in a text -06744154 10 n 03 deriving 0 derivation 1 etymologizing 0 005 @ 06738281 n 0000 ;c 06169050 n 0000 + 00634286 v 0301 + 00251791 v 0201 + 00251791 v 0101 | (historical linguistics) an explanation of the historical origins of a word or phrase -06744396 10 n 01 definition 0 009 @ 06738281 n 0000 + 00957378 v 0101 ~ 06744663 n 0000 ~ 06745015 n 0000 ~ 06745156 n 0000 ~ 06745285 n 0000 ~ 06745422 n 0000 ~ 06745628 n 0000 ~ 06745861 n 0000 | a concise explanation of the meaning of a word or phrase or symbol -06744663 10 n 01 contextual_definition 0 001 @ 06744396 n 0000 | a definition in which the term is used by embedding it in a larger expression containing its explanation; "a contextual definition of `legal duty' might be `X has a legal duty to do Y means that X is required to do Y by a contract relationship that would be upheld in a court of law'" -06745015 10 n 01 dictionary_definition 0 001 @ 06744396 n 0000 | a definition that reports the standard uses of a word or phrase or symbol -06745156 10 n 01 explicit_definition 0 001 @ 06744396 n 0000 | a definition that gives an exact equivalent of the term defined -06745285 10 n 01 ostensive_definition 0 001 @ 06744396 n 0000 | a definition that points out or exhibits instances of the term defined -06745422 10 n 01 recursive_definition 0 002 @ 06744396 n 0000 ;c 06000644 n 0000 | (mathematics) a definition of a function from which values of the function can be calculated in a finite number of steps -06745628 10 n 01 redefinition 0 003 @ 06744396 n 0000 + 02611827 v 0101 + 00957549 v 0101 | the act of giving a new definition; "words like `conservative' require periodic redefinition"; "she provided a redefinition of his duties" -06745861 10 n 01 stipulative_definition 0 001 @ 06744396 n 0000 | a definition that is stipulated by someone and that is not a standard usage -06746005 10 n 03 answer 1 reply 1 response 1 005 @ 06722453 n 0000 + 00815686 v 0202 + 00815686 v 0101 ~ 06746347 n 0000 ~ 06746471 n 0000 | a statement (either spoken or written) that is made to reply to a question or request or criticism or accusation; "I waited several days for his answer"; "he wrote replies to several of his critics" -06746347 10 n 01 rescript 2 001 @ 06746005 n 0000 | a reply by a Pope to an inquiry concerning a point of law or morality -06746471 10 n 01 feedback 0 002 @ 06746005 n 0000 + 00876200 v 0101 | response to an inquiry or experiment -06746580 10 n 02 announcement 0 promulgation 0 010 @ 06722453 n 0000 + 00977336 v 0203 + 00965871 v 0101 ~ 06747008 n 0000 ~i 06747190 n 0000 ~ 06747369 n 0000 ~ 06747484 n 0000 ~ 06747670 n 0000 ~ 06748466 n 0000 ~ 07276538 n 0000 | a public statement containing information about an event that has happened or is going to happen; "the announcement appeared in the local newspaper"; "the promulgation was written in English" -06747008 10 n 01 advisory 0 003 @ 06746580 n 0000 + 01304802 a 0101 + 00872886 v 0102 | an announcement that usually advises or warns the public of some threat; "a frost advisory" -06747190 10 n 01 Annunciation 0 002 @i 06746580 n 0000 ;c 06226057 n 0000 | (Christianity) the announcement to the Virgin Mary by the angel Gabriel of the incarnation of Christ -06747369 10 n 01 banns 0 002 @ 06746580 n 0000 ;c 01032368 n 0000 | a public announcement of a proposed marriage -06747484 10 n 03 handout 0 press_release 0 release 0 001 @ 06746580 n 0000 | an announcement distributed to members of the press in order to supplement or replace an oral presentation -06747670 10 n 01 notice 1 004 @ 06746580 n 0000 + 00873682 v 0102 ~ 06747907 n 0000 ~ 06748133 n 0000 | an announcement containing information about an event; "you didn't give me enough notice"; "an obituary notice"; "a notice of sale -06747907 10 n 01 caveat 2 002 @ 06747670 n 0000 ;c 08441203 n 0000 | (law) a formal notice filed with a court or officer to suspend a proceeding until filer is given a hearing; "a caveat filed against the probate of a will" -06748133 10 n 03 obituary 0 obit 0 necrology 0 001 @ 06747670 n 0000 | a notice of someone's death; usually includes a short biography -06748270 10 n 01 Parallel_Lives 0 001 @i 06515827 n 0000 | a collection of biographies of famous pairs of Greeks and Romans written by Plutarch; used by Shakespeare in writing some of his plays -06748466 10 n 02 program 0 programme 0 003 @ 06746580 n 0000 ~ 06748703 n 0000 ~ 06748841 n 0000 | an announcement of the events that will occur as part of a theatrical or sporting event; "you can't tell the players without a program" -06748703 10 n 01 playbill 1 002 @ 06486874 n 0000 @ 06748466 n 0000 | a theatrical program; "he couldn't find her name on the playbill" -06748841 10 n 01 racecard 0 001 @ 06748466 n 0000 | a program for a race meeting; lists the races and the names of the horses -06748969 10 n 04 prediction 0 foretelling 0 forecasting 0 prognostication 0 010 @ 06722453 n 0000 + 00917772 v 0403 + 00926472 v 0301 + 00917772 v 0202 ~ 06749267 n 0000 ~ 06749468 n 0000 ~ 06749594 n 0000 ~ 06749729 n 0000 ~ 06749881 n 0000 ~ 06750154 n 0000 | a statement made about the future -06749267 10 n 01 extropy 0 002 @ 06748969 n 0000 + 02724960 a 0101 | the prediction that human intelligence and technology will enable life to expand in an orderly way throughout the entire universe -06749468 10 n 01 fortunetelling 0 001 @ 06748969 n 0000 | the practice of predicting people's futures (usually for payment) -06749594 10 n 01 horoscope 0 001 @ 06748969 n 0000 | a prediction of someone's future based on the relative positions of the planets -06749729 10 n 02 meteorology 0 weather_forecasting 0 003 @ 06748969 n 0000 ;c 06118563 n 0000 + 10312287 n 0101 | predicting what the weather will be -06749881 10 n 02 prognosis 0 forecast 0 009 @ 06748969 n 0000 + 00871942 v 020c + 00926472 v 0201 + 00712135 v 0206 + 01883325 a 0102 + 00871942 v 0104 + 00917772 v 0103 ~ 06750514 n 0000 ~ 06750698 n 0000 | a prediction about how something (as the weather) will develop -06750154 10 n 02 prophecy 0 divination 0 005 @ 06748969 n 0000 + 02107588 v 0201 + 01881696 a 0102 + 01881696 a 0101 ~ 06750339 n 0000 | a prediction uttered under divine inspiration -06750339 10 n 01 oracle 0 002 @ 06750154 n 0000 + 03000868 a 0101 | a prophecy (usually obscure or allegorical) revealed by a priest or priestess; believed to be infallible -06750514 10 n 01 financial_forecast 0 001 @ 06749881 n 0000 | a forecast of the expected financial position and the results of operations and cash flows based on expected conditions -06750698 10 n 02 weather_forecast 0 weather_outlook 0 001 @ 06749881 n 0000 | a forecast of the weather -06750804 10 n 01 proposition 0 012 @ 06722453 n 0000 ;c 06163751 n 0000 ~ 06751142 n 0000 ~ 06751367 n 0000 ~ 06751572 n 0000 ~ 06751742 n 0000 ~ 06751833 n 0000 %p 06751974 n 0000 ~ 06752293 n 0000 ~ 06753030 n 0000 ~ 06753299 n 0000 ~ 06753550 n 0000 | (logic) a statement that affirms or denies something and is either true or false -06751142 10 n 02 particular 0 particular_proposition 0 004 @ 06750804 n 0000 ;c 06163751 n 0000 ! 06751367 n 0202 ! 06751367 n 0101 | (logic) a proposition that asserts something about some (but not all) members of a class -06751367 10 n 02 universal 0 universal_proposition 0 004 @ 06750804 n 0000 ;c 06163751 n 0000 ! 06751142 n 0202 ! 06751142 n 0101 | (logic) a proposition that asserts something of all members of a class -06751572 10 n 01 negation 2 003 @ 06750804 n 0000 ;c 06163751 n 0000 + 02663141 v 0103 | (logic) a proposition that is true if and only if another proposition is false -06751742 10 n 01 converse 0 001 @ 06750804 n 0000 | a proposition obtained by conversion -06751833 10 n 01 lemma 0 001 @ 06750804 n 0000 | a subsidiary proposition that is assumed to be true in order to prove another proposition -06751974 10 n 01 term 1 010 @ 06312966 n 0000 #p 06750804 n 0000 ~ 06310125 n 0000 ~ 06316813 n 0000 ~ 06603242 n 0000 ~ 06603366 n 0000 ~ 06752410 n 0000 ~ 06754658 n 0000 ~ 06754816 n 0000 ~ 06754972 n 0000 | one of the substantive phrases in a logical proposition; "the major term of a syllogism must occur twice" -06752293 10 n 01 theorem 0 002 @ 06750804 n 0000 ~ 06036939 n 0000 | a proposition deducible from basic postulates -06752410 10 n 02 categorem 0 categoreme 0 005 @ 06751974 n 0000 + 02592890 a 0201 ! 06752695 n 0202 + 02592890 a 0101 ! 06752695 n 0101 | a categorematic expression; a term capable of standing alone as the subject or predicate of a logical proposition; "names are called categorems" -06752695 10 n 02 syncategorem 0 syncategoreme 0 005 @ 06286395 n 0000 + 02593269 a 0201 ! 06752410 n 0202 + 02593269 a 0101 ! 06752410 n 0101 | a syncategorematic expression; a word that cannot be used alone as a term in a logical proposition; "logical quantifiers, adverbs, prepositions, and conjunctions are called syncategoremes" -06753030 10 n 02 conclusion 1 ratiocination 0 004 @ 06750804 n 0000 #p 05779116 n 0000 %p 06754658 n 0000 %p 06754816 n 0000 | the proposition arrived at by logical reasoning (such as the proposition that must follow from the major and minor premises of a syllogism) -06753299 10 n 02 postulate 0 posit 0 006 @ 06750804 n 0000 ;c 06163751 n 0000 + 00716758 v 0202 + 00716758 v 0101 ~ 05918704 n 0000 ~ 06753800 n 0000 | (logic) a proposition that is accepted as true in order to provide a basis for logical reasoning -06753550 10 n 01 axiom 1 006 @ 06750804 n 0000 ;c 06163751 n 0000 + 01618895 a 0101 + 02653385 a 0101 + 02653385 a 0102 ~ 06005692 n 0000 | (logic) a proposition that is not susceptible of proof or disproof; its truth is assumed to be self-evident -06753800 10 n 03 premise 0 premiss 0 assumption 0 009 @ 06753299 n 0000 + 00632236 v 0301 + 00717208 v 0202 + 00717208 v 0101 ~ 06754184 n 0000 ~ 06754415 n 0000 ~ 06755454 n 0000 ~ 06755568 n 0000 ~ 06756111 n 0000 | a statement that is assumed to be true and from which a conclusion can be drawn; "on the assumption that he has been injured we can infer that he will not to play" -06754184 10 n 02 major_premise 0 major_premiss 0 004 @ 06753800 n 0000 #p 05779116 n 0000 %p 06754658 n 0000 %p 06754972 n 0000 | the premise of a syllogism that contains the major term (which is the predicate of the conclusion) -06754415 10 n 03 minor_premise 0 minor_premiss 0 subsumption 0 004 @ 06753800 n 0000 #p 05779116 n 0000 %p 06754816 n 0000 %p 06754972 n 0000 | the premise of a syllogism that contains the minor term (which is the subject of the conclusion) -06754658 10 n 01 major_term 0 003 @ 06751974 n 0000 #p 06753030 n 0000 #p 06754184 n 0000 | the term in a syllogism that is the predicate of the conclusion -06754816 10 n 01 minor_term 0 003 @ 06751974 n 0000 #p 06753030 n 0000 #p 06754415 n 0000 | the term in a syllogism that is the subject of the conclusion -06754972 10 n 01 middle_term 0 003 @ 06751974 n 0000 #p 06754184 n 0000 #p 06754415 n 0000 | the term in a syllogism that is common to both premises and excluded from the conclusion -06755156 10 n 01 specious_argument 0 004 @ 06648724 n 0000 ~ 06755342 n 0000 ~ 07182367 n 0000 ~ 07182888 n 0000 | an argument that appears good at first view but is really fallacious -06755342 10 n 01 vicious_circle 0 001 @ 06755156 n 0000 | an argument that assumes that which is to be proved -06755454 10 n 01 thesis 0 001 @ 06753800 n 0000 | an unproved statement put forward as a premise in an argument -06755568 10 n 03 condition 1 precondition 0 stipulation 0 004 @ 06753800 n 0000 + 01018928 v 0103 ~ 06755776 n 0000 ~ 06755947 n 0000 | an assumption on which rests the validity or effect of something else -06755776 10 n 01 boundary_condition 0 002 @ 06755568 n 0000 ;c 06000644 n 0000 | (mathematics) a condition specified for the solution to a set of differential equations -06755947 10 n 02 provision 0 proviso 0 003 @ 06755568 n 0000 + 00556318 a 0103 + 01063188 v 0101 | a stipulated condition; "he accepted subject to one provision" -06756111 10 n 01 scenario 1 001 @ 06753800 n 0000 | a postulated sequence of possible events; "planners developed several scenarios in case of an attack" -06756267 10 n 01 quotation 2 002 @ 06722453 n 0000 + 01023925 v 0101 | a statement of the current market price of a security or commodity -06756407 10 n 03 falsehood 0 falsity 0 untruth 0 011 @ 06722453 n 0000 + 02182088 a 0201 + 02461723 a 0201 + 00835903 v 0201 + 00202236 v 0201 ! 06724066 n 0101 ~ 06756680 n 0000 ~ 06756831 n 0000 ~ 06757891 n 0000 ~ 06758225 n 0000 ~ 07206887 n 0000 | a false statement -06756680 10 n 03 dodge 0 dodging 0 scheme 0 002 @ 06756407 n 0000 + 00809654 v 0109 | a statement that evades the question by cleverness or trickery -06756831 10 n 02 lie 0 prevarication 0 007 @ 06756407 n 0000 + 00835506 v 0204 + 00834259 v 0101 ~ 06757057 n 0000 ~ 06757479 n 0000 ~ 06757676 n 0000 ~ 06757771 n 0000 | a statement that deviates from or perverts the truth -06757057 10 n 05 fib 0 story 2 tale 1 tarradiddle 0 taradiddle 0 003 @ 06756831 n 0000 + 00835294 v 0101 ~ 06757289 n 0000 | a trivial lie; "he told a fib about eating his spinach"; "how can I stop my child from telling stories?" -06757289 10 n 05 fairytale 1 fairy_tale 1 fairy_story 1 cock-and-bull_story 0 song_and_dance 2 001 @ 06757057 n 0000 | an interesting but highly implausible story; often told as an excuse -06757479 10 n 01 jactitation 1 002 @ 06756831 n 0000 ;c 08441203 n 0000 | (law) a false boast that can harm others; especially a false claim to be married to someone (formerly actionable at law) -06757676 10 n 02 whopper 0 walloper 0 001 @ 06756831 n 0000 | a gross untruth; a blatant lie -06757771 10 n 01 white_lie 0 001 @ 06756831 n 0000 | an unimportant lie (especially one told to be tactful or polite) -06757891 10 n 03 fabrication 0 fiction 1 fable 2 008 @ 06756407 n 0000 + 00645982 a 0301 + 10075529 n 0301 + 01935935 a 0203 + 01116857 a 0203 + 01635176 v 0201 + 01634424 v 0101 ~ 06758135 n 0000 | a deliberately false or improbable account -06758135 10 n 01 canard 0 001 @ 06757891 n 0000 | a deliberately misleading fabrication -06758225 10 n 03 misrepresentation 0 deceit 0 deception 0 015 @ 06756407 n 0000 + 02575082 v 0301 + 02576921 v 0107 + 00836705 v 0101 ~ 06610557 n 0000 ~ 06610779 n 0000 ~ 06758584 n 0000 ~ 06758698 n 0000 ~ 06758835 n 0000 ~ 06759256 n 0000 ~ 06759349 n 0000 ~ 06760508 n 0000 ~ 06760722 n 0000 ~ 06760969 n 0000 ~ 06761099 n 0000 | a misleading falsehood -06758584 10 n 01 half-truth 0 001 @ 06758225 n 0000 | a partially true statement intended to deceive or mislead -06758698 10 n 02 facade 0 window_dressing 0 001 @ 06758225 n 0000 | a showy misrepresentation intended to conceal something unpleasant -06758835 10 n 03 exaggeration 0 overstatement 0 magnification 0 006 @ 06758225 n 0000 + 00839834 v 0306 + 00434077 v 0301 + 00839834 v 0201 ! 06759063 n 0201 + 00839834 v 0102 | making to seem more important than it really is -06759063 10 n 01 understatement 0 004 @ 06722453 n 0000 + 00841125 v 0101 ! 06758835 n 0102 ~ 07104292 n 0000 | a statement that is restrained in ironic contrast to what might have been said -06759256 10 n 01 snow_job 0 001 @ 06758225 n 0000 | a long and elaborate misrepresentation -06759349 10 n 04 pretense 0 pretence 0 feigning 0 dissembling 0 008 @ 06758225 n 0000 + 00838043 v 0405 + 00838043 v 0301 + 01849288 a 0101 + 00838043 v 0103 ~ 06759602 n 0000 ~ 06759776 n 0000 ~ 06760076 n 0000 | pretending with intention to deceive -06759602 10 n 01 bluff 0 002 @ 06759349 n 0000 + 00837872 v 0101 | pretense that your position is stronger than it really is; "his bluff succeeded in getting him accepted" -06759776 10 n 02 pretext 0 stalking-horse 0 002 @ 06759349 n 0000 ~ 06759974 n 0000 | something serving to conceal plans; a fictitious reason that is concocted in order to conceal the real reason -06759974 10 n 01 putoff 0 002 @ 06759776 n 0000 + 02642814 v 010a | a pretext for delay or inaction -06760076 10 n 02 hypocrisy 0 lip_service 0 003 @ 06759349 n 0000 + 02182562 a 0101 ~ 06760249 n 0000 | an expression of agreement that is not supported by real conviction -06760249 10 n 01 crocodile_tears 0 001 @ 06760076 n 0000 | a hypocritical display of sorrow; false or insincere weeping; "the secretaries wept crocodile tears over the manager's dilemma"; "politicians shed crocodile tears over the plight of the unemployed" -06760508 10 n 02 subterfuge 0 blind 0 001 @ 06758225 n 0000 | something intended to misrepresent the true nature of an activity; "he wasn't sick--it was just a subterfuge"; "the holding company was just a blind" -06760722 10 n 07 trickery 0 hocus-pocus 0 slickness 0 hanky_panky 0 jiggery-pokery 0 skulduggery 0 skullduggery 0 003 @ 06758225 n 0000 + 00148078 a 0307 + 02575723 v 0104 | verbal misrepresentation intended to take advantage of you in some way -06760969 10 n 02 fraudulence 0 duplicity 0 002 @ 06758225 n 0000 + 01223271 a 0204 | a fraudulent or duplicitous representation -06761099 10 n 02 evasion 0 equivocation 0 006 @ 06758225 n 0000 + 00835506 v 0202 ~ 06761342 n 0000 ~ 06761482 n 0000 ~ 06761603 n 0000 ~ 06761798 n 0000 | a statement that is not literally false but that cleverly avoids an unpleasant truth -06761342 10 n 02 circumlocution 1 indirect_expression 0 002 @ 06761099 n 0000 + 00767626 a 0101 | an indirect way of expressing something -06761482 10 n 01 doublespeak 0 001 @ 06761099 n 0000 | any language that pretends to communicate but actually does not -06761603 10 n 02 hedge 0 hedging 0 003 @ 06761099 n 0000 + 00809654 v 0201 + 00809654 v 0101 | an intentionally noncommittal or ambiguous statement; "when you say `maybe' you are just hedging" -06761798 10 n 03 quibble 0 quiddity 0 cavil 0 003 @ 06761099 n 0000 + 00808671 v 0301 + 00810385 v 0101 | an evasion of the point of an argument by raising irrelevant distinctions or objections -06761994 10 n 02 fine_print 1 small_print 1 002 @ 06762380 n 0000 #p 06520944 n 0000 | the part of a contract that contains reservations and qualifications that are often printed in small type; "don't sign a contract without reading the fine print" -06762245 10 n 01 weasel_word 0 001 @ 06762380 n 0000 | an equivocal qualification; a word used to avoid making an outright assertion -06762380 10 n 02 reservation 0 qualification 0 004 @ 06722453 n 0000 + 00199309 v 0201 ~ 06761994 n 0000 ~ 06762245 n 0000 | a statement that limits or restricts some claim; "he recommended her without any reservations" -06762602 10 n 01 cautious_statement 0 001 @ 06722453 n 0000 | a statement made with careful qualifications -06762711 10 n 02 comment 1 commentary 0 008 @ 06722453 n 0000 + 01058574 v 0201 + 00961586 v 0201 + 00961586 v 0101 + 01033189 v 0101 + 00961329 v 0102 ~ 06763052 n 0000 ~ 06763273 n 0000 | a written explanation or criticism or illustration that is added to a book or other textual material; "he wrote an extended comment on the proposal" -06763052 10 n 01 Midrash 0 002 @ 06762711 n 0000 ;c 06232880 n 0000 | (Judaism) an ancient commentary on part of the Hebrew scriptures that is based on Jewish methods of interpretation and attached to the biblical text -06763273 10 n 03 note 2 annotation 0 notation 1 011 @ 06762711 n 0000 + 01020934 v 0301 + 01704953 v 0201 + 01020005 v 0101 + 01704953 v 0101 + 00961329 v 0103 ~ 06265636 n 0000 ~ 06763681 n 0000 ~ 06764244 n 0000 ~ 06764380 n 0000 ~ 06764623 n 0000 | a comment or instruction (usually added); "his notes were appended at the end of the article"; "he added a short notation to the address on the envelope" -06763681 10 n 07 citation 1 cite 0 acknowledgment 1 credit 2 reference 3 mention 2 quotation 1 011 @ 06763273 n 0000 + 01024190 v 0601 + 01705257 v 0501 + 00727791 v 0402 + 01059123 v 0302 + 01705257 v 0102 + 01015866 v 0103 + 01023259 v 0102 + 01024190 v 0104 ~ 06764751 n 0000 ~ 06764867 n 0000 | a short note recognizing a source of information or of a quoted passage; "the student's essay failed to list several important citations"; "the acknowledgments are usually printed at the front of a book"; "the article includes mention of similar clinical cases" -06764244 10 n 02 footnote 0 footer 0 002 @ 06763273 n 0000 + 01704953 v 0102 | a printed note placed below the text on a printed page -06764380 10 n 03 nota_bene 0 NB 0 N.B. 0 001 @ 06763273 n 0000 | a Latin phrase (or its abbreviation) used to indicate that special attention should be paid to something; "the margins of his book were generously supplied with pencilled NBs" -06764623 10 n 02 postscript 0 PS 0 002 @ 06763273 n 0000 #p 06624161 n 0000 | a note appended to a letter after the signature -06764751 10 n 01 photo_credit 0 001 @ 06763681 n 0000 | a note acknowledging the source of a published photograph -06764867 10 n 02 cross-reference 0 cross-index 0 002 @ 06763681 n 0000 + 02472958 v 0201 | a reference at one place in a work to information at another place in the same work -06765044 10 n 03 remark 0 comment 0 input 1 016 @ 06722453 n 0000 + 00939035 v 0201 + 01058574 v 0201 + 01020005 v 0104 ~ 06714697 n 0000 ~ 06714874 n 0000 ~ 06765531 n 0000 ~ 06766092 n 0000 ~ 06766190 n 0000 ~ 06767035 n 0000 ~ 06767693 n 0000 ~ 06767777 n 0000 ~ 06767922 n 0000 ~ 06768394 n 0000 ~ 07154046 n 0000 ~ 07282695 n 0000 | a statement that expresses a personal opinion or belief or adds information; "from time to time she contributed a personal comment on his account" -06765531 10 n 02 gambit 0 ploy 0 001 @ 06765044 n 0000 | an opening remark intended to secure an advantage for the speaker -06765656 10 n 01 fatwah 0 002 @ 06551784 n 0000 ;c 08095647 n 0000 | (Islam) a legal opinion or ruling issued by an Islamic scholar; "bin Laden issued three fatwahs calling upon Muslims to take up arms against the United States" -06765887 10 n 02 obiter_dictum 0 dictum 2 002 @ 06551784 n 0000 ;c 08441203 n 0000 | an opinion voiced by a judge on a point of law not directly bearing on the case in question and therefore not binding -06766092 10 n 02 obiter_dictum 2 passing_comment 0 001 @ 06765044 n 0000 | an incidental remark -06766190 10 n 02 mention 1 reference 2 007 @ 06765044 n 0000 + 01024190 v 0206 + 01020005 v 0103 + 01024190 v 0101 ~ 06766544 n 0000 ~ 06766654 n 0000 ~ 06766812 n 0000 | a remark that calls attention to something or someone; "she made frequent mention of her promotion"; "there was no mention of it"; "the speaker made several references to his wife" -06766544 10 n 01 allusion 0 002 @ 06766190 n 0000 + 01026728 v 0101 | passing reference or indirect mention -06766654 10 n 01 retrospection 0 002 @ 06766190 n 0000 + 00696414 v 0103 | reference to things past; "the story begins with no introductory retrospections" -06766812 10 n 01 name-dropping 0 001 @ 06766190 n 0000 | the practice of casually mentioning important people in order to impress your listener; "the hard thing about name-dropping is to avoid being too obvious about it" -06767035 10 n 03 observation 0 reflection 0 reflexion 0 008 @ 06765044 n 0000 + 02455407 v 0102 + 02154508 v 0102 + 02118933 v 0103 + 02169352 v 0101 + 00732552 v 0101 ~i 06767287 n 0000 ~i 06767512 n 0000 | a remark expressing careful consideration -06767287 10 n 01 Parkinson's_law 1 001 @i 06767035 n 0000 | C. Northcote Parkinson's cynical observation that the number of subordinates in an organization will increase linearly regardless of the amount of work to be done -06767512 10 n 01 Parkinson's_law 2 001 @i 06767035 n 0000 | C. Northcote Parkinson's cynical observation that work will expand so as to fill the time available for its completion -06767693 10 n 01 rib 0 002 @ 06765044 n 0000 + 00851933 v 0107 | a teasing remark -06767777 10 n 04 wisecrack 0 crack 0 sally 0 quip 0 004 @ 06765044 n 0000 + 00853958 v 0402 + 00953923 v 0201 + 01058880 v 0101 | witty remark -06767922 10 n 07 shot 0 shaft 1 slam 0 dig 0 barb 0 jibe 0 gibe 0 003 @ 06765044 n 0000 + 00850192 v 0705 ~ 06768259 n 0000 | an aggressive remark directed at a person like a missile and intended to have a telling effect; "his parting shot was `drop dead'"; "she threw shafts of sarcasm"; "she takes a dig at me every chance she gets" -06768259 10 n 01 cheap_shot 0 001 @ 06767922 n 0000 | an unnecessarily aggressive and unfair remark directed at a defenseless person -06768394 10 n 02 conversation_stopper 0 stopper 1 001 @ 06765044 n 0000 | a remark to which there is no polite conversational reply -06768528 10 n 01 rhetorical_question 0 001 @ 06722453 n 0000 | a statement that is formulated as a question but that is not supposed to be answered; "he liked to make his points with rhetorical questions" -06768735 10 n 01 misstatement 0 005 @ 06722453 n 0000 + 00799243 v 0101 ~ 06769392 n 0000 ~ 06769883 n 0000 ~ 06770028 n 0000 | a statement that contains a mistake -06768901 10 n 01 restatement 0 004 @ 06722453 n 0000 + 00958334 v 0105 ~ 06769032 n 0000 ~ 06769238 n 0000 | a revised statement -06769032 10 n 02 demythologization 0 demythologisation 0 004 @ 06768901 n 0000 ;c 05946687 n 0000 + 00135578 v 0202 + 00135578 v 0101 | the restatement of a message (as a religious one) in rational terms -06769238 10 n 02 mythologization 0 mythologisation 0 003 @ 06768901 n 0000 + 00135013 v 0202 + 00135013 v 0101 | the restatement of a message as a myth -06769392 10 n 02 error 0 mistake 0 004 @ 06768735 n 0000 + 00617748 v 0202 ~ 06769578 n 0000 ~ 06769670 n 0000 | part of a statement that is not correct; "the book was full of errors" -06769578 10 n 01 corrigendum 0 001 @ 06769392 n 0000 | a printer's error; to be corrected -06769670 10 n 06 misprint 0 erratum 0 typographical_error 0 typo 0 literal_error 0 literal 0 002 @ 06769392 n 0000 + 01746839 v 0101 | a mistake in printed matter resulting from mechanical failures of some kind -06769883 10 n 02 malapropism 0 malaprop 0 001 @ 06768735 n 0000 | the unintentional misuse of a word by confusion with one that sounds similar -06770028 10 n 01 slip_of_the_tongue 0 002 @ 06768735 n 0000 ~ 06770164 n 0000 | an accidental and usually trivial mistake in speaking -06770164 10 n 01 spoonerism 0 001 @ 06770028 n 0000 | transposition of initial consonants in a pair of words -06770275 10 n 02 agreement 1 understanding 0 019 @ 06722453 n 0000 + 00764222 v 0101 ~ 06524935 n 0000 ~ 06525132 n 0000 ~ 06525588 n 0000 ~ 06525813 n 0000 ~ 06527851 n 0000 %p 06770875 n 0000 ~ 06771159 n 0000 ~ 06771424 n 0000 ~ 06771526 n 0000 ~ 06771653 n 0000 ~ 06771957 n 0000 ~ 06772461 n 0000 ~ 06772583 n 0000 ~ 07177772 n 0000 ~ 07177924 n 0000 ~ 07178698 n 0000 ~ 07178992 n 0000 | the statement (oral or written) of an exchange of promises; "they had an agreement that they would not interfere in each other's business"; "there was an understanding between management and the workers" -06770875 10 n 02 condition 2 term 2 004 @ 06722453 n 0000 #p 06770275 n 0000 ;u 06295235 n 0000 + 01018928 v 0103 | (usually plural) a statement of what is required as part of an agreement; "the contract set out the conditions of the lease"; "the terms of the treaty were generous" -06771159 10 n 02 bargain 0 deal 0 002 @ 06770275 n 0000 + 02259829 v 0102 | an agreement between parties (usually arrived at after discussion) fixing obligations of each; "he made a bargain with the devil"; "he rose to prominence through a series of shady deals" -06771424 10 n 01 working_agreement 0 001 @ 06770275 n 0000 | an informal agreement to work together -06771526 10 n 01 gentlemen's_agreement 0 001 @ 06770275 n 0000 | a personal agreement based on honor and not legally binding -06771653 10 n 01 written_agreement 0 011 @ 06770275 n 0000 @ 06479665 n 0000 ;c 08441203 n 0000 ~ 06520944 n 0000 ~i 06533863 n 0000 ~ 06772094 n 0000 ~ 06772260 n 0000 ~ 06773006 n 0000 ~ 06773150 n 0000 ~ 06773434 n 0000 ~ 13414554 n 0000 | a legal document summarizing the agreement between parties -06771957 10 n 01 submission 1 001 @ 06770275 n 0000 | an agreement between parties in a dispute to abide by the decision of an arbiter -06772094 10 n 01 submission 2 001 @ 06771653 n 0000 | a legal document summarizing an agreement between parties in a dispute to abide by the decision of an arbiter -06772260 10 n 03 covenant 0 compact 0 concordat 0 003 @ 06771653 n 0000 + 01030832 v 0101 ~i 06774871 n 0000 | a signed written agreement between two or more parties (nations) to perform some action -06772461 10 n 02 entente 0 entente_cordiale 0 001 @ 06770275 n 0000 | a friendly understanding between political powers -06772583 10 n 01 oral_contract 0 001 @ 06770275 n 0000 | an agreement that is not in writing and is not signed by the parties but is a real existing contract that lacks only the formal requirement of a memorandum to render it enforceable in litigation -06772837 10 n 01 indenture 1 003 @ 06520944 n 0000 + 00885569 v 0101 + 00885569 v 0102 | a contract binding one party into the service of another for a specified term -06773006 10 n 01 indenture 2 001 @ 06771653 n 0000 | formal agreement between the issuer of bonds and the bondholders as to terms of the debt -06773150 10 n 01 obligation 0 004 @ 06771653 n 0000 + 00885217 v 0104 + 00885217 v 0101 ~ 06773347 n 0000 | a legal agreement specifying a payment or action and the penalty for failure to comply -06773347 10 n 01 debt 0 001 @ 06773150 n 0000 | an obligation to pay or do something -06773434 10 n 03 treaty 0 pact 0 accord 1 008 @ 06771653 n 0000 ~ 06773684 n 0000 ~ 06773857 n 0000 ~ 06773976 n 0000 ~ 06774316 n 0000 ~i 06775086 n 0000 ~i 06775218 n 0000 ~i 06775409 n 0000 | a written agreement between two states or sovereigns -06773684 10 n 01 alliance 0 001 @ 06773434 n 0000 | a formal agreement establishing an association or alliance between nations or other groups to achieve a particular aim -06773857 10 n 01 commercial_treaty 0 001 @ 06773434 n 0000 | a treaty governing commerce between two or more nations -06773976 10 n 03 peace 0 peace_treaty 0 pacification 0 005 @ 06773434 n 0000 + 01647867 v 0301 + 01647867 v 0101 ~i 06774192 n 0000 ~i 06775602 n 0000 | a treaty to cease hostilities; "peace came on November 11th" -06774192 10 n 01 Peace_of_Westphalia 0 001 @i 06773976 n 0000 | the peace treaty that ended the Thirty Years' War in 1648 -06774316 10 n 01 convention 0 004 @ 06773434 n 0000 ;c 07148573 n 0000 ~i 06774468 n 0000 ~i 06774650 n 0000 | (diplomacy) an international agreement -06774468 10 n 01 Chemical_Weapons_Convention 0 001 @i 06774316 n 0000 | a global treaty banning the production or acquisition or stockpiling or transfer or use of chemical weapons -06774650 10 n 01 Geneva_Convention 0 001 @i 06774316 n 0000 | an agreement first drawn up in Geneva in 1864 and later revised concerning the treatment of captured and wounded military personnel and civilians in wartime -06774871 10 n 01 Lateran_Treaty 0 001 @i 06772260 n 0000 | the agreement signed in the Lateran Palace in 1929 by Italy and the Holy See which recognized the Vatican City as a sovereign and independent papal state -06775086 10 n 01 North_Atlantic_Treaty 0 001 @i 06773434 n 0000 | the treaty signed in 1949 by 12 countries that established NATO -06775218 10 n 01 SALT_I 0 001 @i 06773434 n 0000 | the first treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks -06775409 10 n 01 SALT_II 0 001 @i 06773434 n 0000 | the second treaty between the United States and the Union of Soviet Socialist Republics resulting from the Strategic Arms Limitation Talks -06775602 10 n 01 Treaty_of_Versailles 0 001 @i 06773976 n 0000 | the treaty imposed on Germany by the Allied powers in 1920 after the end of World War I which demanded exorbitant reparations from the Germans -06775812 10 n 01 sentimentalism 0 002 @ 07069948 n 0000 ~ 06775969 n 0000 | the excessive expression of tender feelings, nostalgia, or sadness in any form -06775969 10 n 04 treacle 0 mush 0 slop 0 glop 0 003 @ 06775812 n 0000 + 00856511 a 0302 + 02368566 a 0104 | writing or music that is excessively sweet and sentimental -06776138 10 n 05 wit 0 humor 0 humour 0 witticism 0 wittiness 0 021 @ 06598915 n 0000 + 01268194 a 0501 + 01264336 a 0302 + 10191943 n 0302 + 01264336 a 0201 + 10191943 n 0201 + 01268194 a 0101 ~ 06776679 n 0000 ~ 06776783 n 0000 ~ 06776877 n 0000 ~ 06776986 n 0000 ~ 06777164 n 0000 ~ 06777687 n 0000 ~ 06778102 n 0000 ~ 06780069 n 0000 ~ 06780678 n 0000 ~ 06780882 n 0000 ~ 06781811 n 0000 ~ 06781878 n 0000 -u 07885937 n 0000 -u 10534389 n 0000 | a message whose ingenuity or verbal skill or incongruity has the power to evoke laughter -06776679 10 n 01 jeu_d'esprit 0 002 @ 06776138 n 0000 ;r 08929922 n 0000 | a witty comment or writing -06776783 10 n 02 bon_mot 0 mot 0 002 @ 06776138 n 0000 ;r 08929922 n 0000 | a clever remark -06776877 10 n 01 esprit_de_l'escalier 0 001 @ 06776138 n 0000 | a witty remark that occurs to you too late -06776986 10 n 02 pungency 0 bite 0 002 @ 06776138 n 0000 + 02079313 a 0104 | wit having a sharp and caustic quality; "he commented with typical pungency"; "the bite of satire" -06777164 10 n 04 sarcasm 0 irony 1 satire 0 caustic_remark 0 012 @ 06776138 n 0000 + 02080110 a 0302 + 02080110 a 0301 + 10552742 n 0301 + 00852685 v 0301 + 00852685 v 0302 + 01266092 a 0203 + 01266092 a 0202 + 10552742 n 0202 + 02079029 a 0101 = 02079029 a 0000 = 02080488 a 0000 | witty language used to convey insults or scorn; "he used sarcasm to upset his opponent"; "irony is wasted on the stupid"; "Satire is a sort of glass, wherein beholders do generally discover everybody's face but their own"--Jonathan Swift -06777687 10 n 01 repartee 0 002 @ 06776138 n 0000 ~ 06777794 n 0000 | adroitness and cleverness in reply -06777794 10 n 04 banter 0 raillery 0 give-and-take 1 backchat 0 004 @ 06777687 n 0000 + 00855295 v 0105 ~ 06777961 n 0000 ~ 06778032 n 0000 | light teasing repartee -06777961 10 n 01 badinage 0 001 @ 06777794 n 0000 | frivolous banter -06778032 10 n 01 persiflage 0 001 @ 06777794 n 0000 | light teasing -06778102 10 n 05 joke 0 gag 0 laugh 1 jest 0 jape 0 020 @ 06776138 n 0000 + 00105554 v 0402 + 00853633 v 0402 + 00031820 v 0301 + 10117267 n 0202 + 00853958 v 0201 + 01267076 a 0103 + 10224098 n 0102 + 00105554 v 0101 + 00853633 v 0101 %p 06778777 n 0000 ~ 06778925 n 0000 ~ 06779096 n 0000 ~ 06779210 n 0000 ~ 06779310 n 0000 ~ 06779511 n 0000 ~ 06779642 n 0000 ~ 06779713 n 0000 ~ 06779839 n 0000 ~ 06779914 n 0000 | a humorous anecdote or remark intended to provoke laughter; "he told a very funny joke"; "he knows a million gags"; "thanks for the laugh"; "he laughed unpleasantly at his own jest"; "even a schoolboy's jape is supposed to have some ascertainable point" -06778777 10 n 04 punch_line 0 laugh_line 0 gag_line 0 tag_line 0 002 @ 07012534 n 0000 #p 06778102 n 0000 | the point of a joke or humorous story -06778925 10 n 07 belly_laugh 0 sidesplitter 0 howler 0 thigh-slapper 0 scream 1 wow 0 riot 0 002 @ 06778102 n 0000 + 00029836 v 0302 | a joke that seems extremely funny -06779096 10 n 04 dirty_joke 0 dirty_story 0 blue_joke 0 blue_story 0 001 @ 06778102 n 0000 | an indelicate joke -06779210 10 n 01 ethnic_joke 0 001 @ 06778102 n 0000 | a joke at the expense of some ethnic group -06779310 10 n 04 funny_story 0 good_story 0 funny_remark 0 funny 0 001 @ 06778102 n 0000 | an account of an amusing incident (usually with a punch line); "she told a funny story"; "she made a funny" -06779511 10 n 01 in-joke 0 001 @ 06778102 n 0000 | a joke that is appreciated only by members of some particular group of people -06779642 10 n 01 one-liner 0 001 @ 06778102 n 0000 | a one-line joke -06779713 10 n 01 shaggy_dog_story 0 001 @ 06778102 n 0000 | a long rambling joke whose humor derives from its pointlessness -06779839 10 n 01 sick_joke 0 001 @ 06778102 n 0000 | a joke in bad taste -06779914 10 n 02 sight_gag 0 visual_joke 0 001 @ 06778102 n 0000 | a joke whose effect is achieved by visual means rather than by speech (as in a movie) -06780069 10 n 03 caricature 0 imitation 0 impersonation 0 006 @ 06776138 n 0000 + 00849788 v 0301 + 09896170 n 0101 + 00849592 v 0101 ~ 06386345 n 0000 ~ 06780309 n 0000 | a representation of a person that is exaggerated for comic effect -06780309 10 n 0b parody 0 lampoon 0 spoof 0 sendup 0 mockery 1 takeoff 0 burlesque 1 travesty 1 charade 1 pasquinade 0 put-on 0 008 @ 06780069 n 0000 + 02873654 a 0701 + 00849939 v 0702 + 01743313 v 0601 + 00849939 v 0301 + 00852685 v 0203 + 10400998 n 0101 + 00849939 v 0103 | a composition that imitates or misrepresents somebody's style, usually in a humorous way -06780678 10 n 02 cartoon 0 sketch 2 005 @ 06776138 n 0000 #p 06589574 n 0000 + 09898346 n 0101 + 01693727 v 0101 ~ 07003352 n 0000 | a humorous or satirical drawing published in a newspaper or magazine -06780882 10 n 03 fun 0 play 2 sport 0 005 @ 06776138 n 0000 ~ 06781151 n 0000 ~ 06781281 n 0000 ~ 06781383 n 0000 ~ 06781581 n 0000 | verbal wit or mockery (often at another's expense but not to be taken seriously); "he became a figure of fun"; "he said it in sport" -06781151 10 n 02 jocosity 0 jocularity 0 003 @ 06780882 n 0000 + 01267076 a 0203 + 01267076 a 0102 | fun characterized by humor -06781281 10 n 02 waggery 0 waggishness 0 002 @ 06780882 n 0000 + 01268002 a 0201 | waggish behavior -06781383 10 n 04 drollery 0 clowning 0 comedy 1 funniness 0 005 @ 06780882 n 0000 + 01265308 a 0404 + 01265308 a 0302 + 01265308 a 0303 + 00105778 v 0201 | a comic incident or series of incidents -06781581 10 n 04 pun 0 punning 0 wordplay 0 paronomasia 0 004 @ 06780882 n 0000 + 01702331 v 0201 + 10493093 n 0101 + 01702331 v 0101 | a humorous play on words; "I do it for the pun of it"; "his constant punning irritated her" -06781811 10 n 01 ribaldry 0 001 @ 06776138 n 0000 | ribald humor -06781878 10 n 01 topper 0 002 @ 06776138 n 0000 + 02669081 v 0106 | an exceedingly good witticism that surpasses all that have gone before -06782019 10 n 02 opinion 1 view 0 006 @ 06598915 n 0000 + 00690614 v 0204 + 01027668 v 0101 ~ 06782383 n 0000 ~ 06782680 n 0000 ~ 06783265 n 0000 | a message expressing a belief about something; the expression of a belief that is held with confidence but not substantiated by positive knowledge or proof; "his opinions appeared frequently on the editorial page" -06782383 10 n 01 adverse_opinion 0 001 @ 06782019 n 0000 | an opinion concerning financial statements (usually based on an audit by a CPA) that the statements as a whole do not present results fairly or are not in conformity with the generally accepted accounting practices of the United States -06782680 10 n 07 guess 0 conjecture 0 supposition 0 surmise 0 surmisal 0 speculation 3 hypothesis 1 017 @ 06782019 n 0000 + 00861216 a 0703 + 00633443 v 0707 + 00633443 v 0705 + 00927049 v 0601 + 00689205 v 0501 + 00921072 v 0402 + 00689205 v 0401 + 00861216 a 0306 + 00861216 a 0308 + 00861216 a 0307 + 00917300 v 0301 + 00861216 a 0201 + 00631737 v 0106 + 00672433 v 0104 + 00916909 v 0101 ~ 06783155 n 0000 | a message expressing an opinion based on incomplete evidence -06783155 10 n 01 divination 1 001 @ 06782680 n 0000 | successful conjecture by unusual insight or good luck -06783265 10 n 02 side 0 position 0 001 @ 06782019 n 0000 | an opinion that is held in opposition to another in an argument or dispute; "there are two sides to every question" -06783442 10 n 01 approximation 0 001 @ 07173585 n 0000 | an imprecise or incomplete account; "newspapers gave only an approximation of the actual events" -06783598 10 n 01 estimate 1 002 @ 06722453 n 0000 + 00672433 v 0101 | a statement indicating the likely cost of some job; "he got an estimate from the car repair shop" -06783768 10 n 02 question 1 head 2 004 @ 06599788 n 0000 ~ 06784003 n 0000 ~ 06784317 n 0000 ~ 06784470 n 0000 | the subject matter at issue; "the question of disease merits serious discussion"; "under the head of minor Roman poets" -06784003 10 n 01 problem 0 010 @ 06783768 n 0000 ~ 06784639 n 0000 ~ 06784966 n 0000 ~ 06785101 n 0000 ~ 06785223 n 0000 ~ 06785367 n 0000 ~ 06785541 n 0000 ~ 06785840 n 0000 ~ 06786358 n 0000 ~ 06786486 n 0000 | a question raised for consideration or solution; "our homework consisted of ten problems to solve" -06784317 10 n 02 question_of_fact 0 matter_of_fact 0 001 @ 06783768 n 0000 | a disputed factual contention that is generally left for a jury to decide -06784470 10 n 02 question_of_law 0 matter_of_law 0 002 @ 06783768 n 0000 ;c 08441203 n 0000 | a disputed legal contention that is generally left for a judge to decide -06784639 10 n 04 puzzle 0 puzzler 0 mystifier 0 teaser 0 007 @ 06784003 n 0000 + 00622384 v 0306 + 00622384 v 0205 + 01831308 v 0101 + 00622384 v 0105 ~ 06786012 n 0000 ~ 06786209 n 0000 | a particularly baffling problem that is said to have a correct solution; "he loved to solve chessmate puzzles"; "that's a real puzzler" -06784966 10 n 01 case 2 001 @ 06784003 n 0000 | a problem requiring investigation; "Perry Mason solved the case of the missing heir" -06785101 10 n 01 homework_problem 0 001 @ 06784003 n 0000 | a problem that students are assigned to do outside of class -06785223 10 n 04 riddle 0 conundrum 0 enigma 0 brain-teaser 0 003 @ 06784003 n 0000 + 00742051 v 0101 + 00623006 v 0101 | a difficult problem -06785367 10 n 04 poser 0 stumper 0 toughie 0 sticker 1 003 @ 06784003 n 0000 + 00620379 v 0201 + 00622384 v 0109 | a particularly difficult or baffling question or problem -06785541 10 n 01 Gordian_knot 0 001 @ 06784003 n 0000 | any very difficult problem; insoluble in its own terms -06785654 10 n 02 crossword_puzzle 0 crossword 0 001 @ 04028315 n 0000 | a puzzle in which words corresponding to numbered clues are to be found and written in to squares in the puzzle -06785840 10 n 01 koan 0 001 @ 06784003 n 0000 | a paradoxical anecdote or a riddle that has no solution; used in Zen Buddhism to show the inadequacy of logical reasoning -06786012 10 n 01 sudoku 0 001 @ 06784639 n 0000 | a number puzzle in which the numbers 1 through 9 must be placed into a grid of cells so that each row or column contains only one of each number -06786209 10 n 02 word_square 0 acrostic 0 001 @ 06784639 n 0000 | a puzzle where you fill a square grid with words reading the same down as across -06786358 10 n 01 pons_asinorum 0 001 @ 06784003 n 0000 | a problem that severely tests the ability of an inexperienced person -06786486 10 n 01 rebus 0 001 @ 06784003 n 0000 | a puzzle where you decode a message consisting of pictures representing syllables and words -06786629 10 n 02 direction 2 instruction 4 014 @ 06598915 n 0000 + 02981759 a 0201 ~ 06652064 n 0000 ~ 06652242 n 0000 ~ 06652712 n 0000 ~ 06787037 n 0000 ~ 06787150 n 0000 ~ 06787602 n 0000 ~ 06788565 n 0000 ~ 06788785 n 0000 ~ 06788897 n 0000 ~ 06789080 n 0000 ~ 06789215 n 0000 ~ 07276242 n 0000 | a message describing how something is to be done; "he gave directions faster than she could follow them" -06787037 10 n 01 misdirection 0 002 @ 06786629 n 0000 + 02000288 v 0102 | incorrect directions or instructions -06787150 10 n 03 address 2 destination 0 name_and_address 0 005 @ 06786629 n 0000 #p 06624161 n 0000 + 00990812 v 0101 %p 06355705 n 0000 ~ 06787429 n 0000 | written directions for finding some location; written on letters or packages that are to be delivered to that location -06787429 10 n 01 return_address 0 001 @ 06787150 n 0000 | the address of the sender of a letter or parcel indicating where it should be returned if it cannot be delivered -06787602 10 n 01 markup 0 001 @ 06786629 n 0000 | detailed stylistic instructions for typesetting something that is to be printed; manual markup is usually written on the copy (e.g. underlining words that are to be set in italics) -06787835 10 n 01 markup_language 0 003 @ 06304059 n 0000 ~ 06788007 n 0000 ~ 06788262 n 0000 | a set of symbols and rules for their use when doing a markup of a document -06788007 10 n 02 standard_generalized_markup_language 0 SGML 0 002 @ 06787835 n 0000 ;c 06128570 n 0000 | (computer science) a standardized language for the descriptive markup of documents; a set of rules for using whatever markup vocabulary is adopted -06788262 10 n 03 hypertext_markup_language 0 hypertext_mark-up_language 0 HTML 0 001 @ 06787835 n 0000 | a set of tags and rules (conforming to SGML) for using them in developing hypertext documents -06788463 10 n 02 toponymy 0 toponomy 0 001 @ 06304059 n 0000 | the nomenclature of regional anatomy -06788565 10 n 01 prescription 0 002 @ 06786629 n 0000 + 00747135 v 0102 | directions prescribed beforehand; the action of prescribing authoritative rules or directions; "I tried to follow her prescription for success" -06788785 10 n 02 recipe 0 formula 2 002 @ 06786629 n 0000 + 01633173 v 0201 | directions for making something -06788897 10 n 01 rule 2 003 @ 06786629 n 0000 #p 07954211 n 0000 ~ 07275823 n 0000 | directions that define the way a game or sport is to be conducted; "he knew the rules of chess" -06789080 10 n 01 stage_direction 0 002 @ 06786629 n 0000 #p 07007945 n 0000 | an instruction written as part of the script of a play -06789215 10 n 01 style 1 003 @ 06786629 n 0000 + 02018296 a 0101 + 00993608 v 0101 | editorial directions to be followed in spelling and punctuation and capitalization and typographical display -06789411 10 n 04 religious_doctrine 0 church_doctrine 0 gospel 1 creed 0 012 @ 05943300 n 0000 + 03057075 a 0402 + 03057075 a 0401 ~ 00757483 n 0000 ~ 06472409 n 0000 ~ 06789801 n 0000 ~ 06790042 n 0000 ~ 06790235 n 0000 ~ 06790557 n 0000 ~ 06790845 n 0000 ~ 06791017 n 0000 ~ 06791195 n 0000 | the written body of teachings of a religious group that are generally accepted by that group -06789801 10 n 01 ahimsa 0 004 @ 06789411 n 0000 ;c 06240244 n 0000 ;c 06236802 n 0000 ;c 06239655 n 0000 | a Buddhist and Hindu and especially Jainist doctrine holding that all forms of life are sacred and urging the avoidance of violence -06790042 10 n 02 dogma 0 tenet 0 005 @ 06789411 n 0000 + 00288070 a 0101 + 00963283 v 0101 + 00980908 v 0101 ~ 06270690 n 0000 | a religious doctrine that is proclaimed as true without proof -06790235 10 n 03 ecumenism 0 ecumenicism 0 ecumenicalism 0 004 @ 06789411 n 0000 ;c 06226057 n 0000 + 02092460 a 0101 + 02092460 a 0103 | (Christianity) the doctrine of the ecumenical movement that promotes cooperation and better understanding among different religious denominations: aimed at universal Christian unity -06790557 10 n 02 Immaculate_Conception 0 Immaculate_Conception_of_the_Virgin_Mary 0 003 @ 06789411 n 0000 ;c 06226057 n 0000 ;c 08083599 n 0000 | (Christianity) the Roman Catholic dogma that God preserved the Virgin Mary from any stain of original sin from the moment she was conceived -06790845 10 n 01 Incarnation 0 002 @ 06789411 n 0000 ;c 06226057 n 0000 | (Christianity) the Christian doctrine of the union of God and man in the person of Jesus Christ -06791017 10 n 01 Nicene_Creed 0 002 @ 06789411 n 0000 ;c 06226057 n 0000 | (Christianity) a formal creed summarizing Christian beliefs; first adopted in 325 and later expanded -06791195 10 n 01 real_presence 0 002 @ 06789411 n 0000 ;c 06226057 n 0000 | (Christianity) the Christian doctrine that the body of Christ is actually present in the Eucharist -06791372 10 n 03 signal 0 signaling 0 sign 3 037 @ 00033020 n 0000 + 00867231 v 0302 + 01039330 v 0301 + 00932324 v 0301 + 01039330 v 0202 + 00921300 v 0105 + 01039330 v 0102 + 02296984 v 0101 + 00924612 v 0101 + 01039330 v 0103 + 00922438 v 0101 ~ 04063661 n 0000 ~ 06426111 n 0000 ~ 06792188 n 0000 ~ 06792364 n 0000 ~ 06792645 n 0000 ~ 06792950 n 0000 ~ 06793091 n 0000 ~ 06795168 n 0000 ~ 06796506 n 0000 ~ 06803157 n 0000 ~ 06803636 n 0000 ~ 06804097 n 0000 ~ 06804199 n 0000 ~ 06804606 n 0000 ~ 06804988 n 0000 ~ 06805128 n 0000 ~ 06805665 n 0000 ~ 06806098 n 0000 ~ 06806318 n 0000 ~ 06806469 n 0000 ~ 06873571 n 0000 ~ 07262579 n 0000 ~ 07263220 n 0000 ~ 07264086 n 0000 ~ 07264820 n 0000 ~ 07264925 n 0000 | any nonverbal action or gesture that encodes a message; "signals from the boat suddenly stopped" -06792188 10 n 02 starting_signal 0 start 0 001 @ 06791372 n 0000 | a signal to begin (as in a race); "the starting signal was a green light"; "the runners awaited the start" -06792364 10 n 01 storm_signal 0 002 @ 06791372 n 0000 ~ 06792526 n 0000 | a signal announcing the approach of a storm (particularly a storm of marked violence) -06792526 10 n 01 storm_cone 0 002 @ 06792364 n 0000 ;r 08860123 n 0000 | a canvas cone hoisted to warn of high winds -06792645 10 n 02 radio_beam 0 beam 0 002 @ 06791372 n 0000 + 00973056 v 0204 | a signal transmitted along a narrow path; guides airplane pilots in darkness or bad weather -06792818 10 n 02 tickler 0 tickler_file 0 001 @ 06508816 n 0000 | a file of memoranda or notices that remind of things to be done -06792950 10 n 01 ticktack 0 002 @ 06791372 n 0000 ;r 08860123 n 0000 | system of signalling by hand signs used by bookmakers at racetracks -06793091 10 n 01 time_signal 0 001 @ 06791372 n 0000 | a signal (especially electronic or by radio) indicating the precisely correct time -06793231 10 n 01 sign 0 005 @ 00033020 n 0000 + 01498319 v 0101 ~ 06793426 n 0000 ~ 06794110 n 0000 ~ 06794374 n 0000 | a public display of a message; "he posted signs in all the shop windows" -06793426 10 n 06 poster 0 posting 0 placard 0 notice 0 bill 0 card 2 012 @ 06793231 n 0000 + 00991900 v 0502 + 00977153 v 0501 + 00991900 v 0301 + 01591835 v 0301 + 01591621 v 0201 + 01570403 v 0201 + 00991683 v 0201 + 01591621 v 0101 + 00991683 v 0101 ~ 06793817 n 0000 ~ 06793959 n 0000 | a sign posted in a public place as an advertisement; "a poster advertised the coming attractions" -06793817 10 n 03 show_bill 0 show_card 0 theatrical_poster 0 002 @ 06793426 n 0000 %p 07251003 n 0000 | a poster advertising a show or play -06793959 10 n 02 flash_card 0 flashcard 0 001 @ 06793426 n 0000 | a card with words or numbers or pictures that is flashed to a class by the teacher -06794110 10 n 01 street_sign 0 002 @ 06793231 n 0000 ~ 06794216 n 0000 | a sign visible from the street -06794216 10 n 01 address 1 001 @ 06794110 n 0000 | a sign in front of a house or business carrying the conventional form by which its location is described -06794374 10 n 02 signpost 0 guidepost 0 003 @ 06793231 n 0000 + 00922320 v 0101 ~ 06794537 n 0000 | a post bearing a sign that gives directions or shows the way -06794537 10 n 02 fingerpost 0 fingerboard 0 001 @ 06794374 n 0000 | a guidepost resembling a hand with a pointing index finger -06794666 10 n 04 mark 1 stigma 0 brand 1 stain 0 010 @ 06806469 n 0000 + 01537409 v 0402 + 02508245 v 0303 + 01031109 v 0302 + 03120454 a 0201 + 02508245 v 0201 + 02508245 v 0105 ~ 06794980 n 0000 ~ 06795290 n 0000 ~ 06795657 n 0000 | a symbol of disgrace or infamy; "And the Lord set a mark upon Cain"--Genesis -06794980 10 n 01 demerit 0 001 @ 06794666 n 0000 | a mark against a person for misconduct or failure; usually given in school or armed forces; "ten demerits and he loses his privileges" -06795168 10 n 01 dog-ear 0 002 @ 06791372 n 0000 #p 06256697 n 0000 | a corner of a page turned down to mark your place -06795290 10 n 02 bar_sinister 0 bend_sinister 0 002 @ 06794666 n 0000 @ 03853734 n 0000 | a mark of bastardy; lines from top right to bottom left -06795438 10 n 01 earmark 0 001 @ 07270179 n 0000 | identification mark on the ear of a domestic animal -06795543 10 n 01 brand 2 002 @ 07270179 n 0000 + 02508663 v 0101 | identification mark on skin, made by burning -06795657 10 n 02 cloven_hoof 0 cloven_foot 0 001 @ 06794666 n 0000 | the mark of Satan -06795746 10 n 02 token 0 item 1 005 @ 06806469 n 0000 + 00946105 v 0203 + 00946105 v 0204 ~ 06796119 n 0000 ~ 06796333 n 0000 | an individual instance of a type of symbol; "the word`error' contains three tokens of `r'" -06795967 10 n 01 type 0 001 @ 06806469 n 0000 | all of the tokens of the same symbol; "the word `element' contains five different types of character" -06796119 10 n 03 postage 0 postage_stamp 0 stamp 1 003 @ 06795746 n 0000 + 01273814 v 0301 + 01031256 v 0102 | a small adhesive token stuck on a letter or package to indicate that that postal fees have been paid -06796333 10 n 01 trading_stamp 0 001 @ 06795746 n 0000 | a token resembling a stamp given by a retailer to a buyer; the token is redeemable for articles on a special list -06796506 10 n 01 animal_communication 0 002 @ 06791372 n 0000 ~ 06796642 n 0000 | communication between animals (of the same species) -06796642 10 n 04 birdcall 0 call 3 birdsong 0 song 2 007 @ 06796506 n 0000 + 01526521 n 0402 + 01067816 v 0401 + 00783523 v 0201 + 00975036 v 0201 ~ 06796942 n 0000 ~ 06797047 n 0000 | the characteristic sound produced by a bird; "a bird will not learn its song unless it hears it at an early age" -06796942 10 n 01 bell-like_call 0 001 @ 06796642 n 0000 | a birdcall that resembles the tone of a bell -06797047 10 n 01 two-note_call 0 001 @ 06796642 n 0000 | a birdcall having two notes; "the two-note call of the cuckoo" -06797169 10 n 02 indication 0 indicant 1 017 @ 00033020 n 0000 + 00772640 v 0202 + 00921300 v 0203 + 00772640 v 0102 + 00921300 v 0103 ~ 01228380 n 0000 ~ 06643408 n 0000 ~ 06646628 n 0000 ~ 06798187 n 0000 ~ 06798336 n 0000 ~ 06798472 n 0000 ~ 06798558 n 0000 ~ 06798750 n 0000 ~ 06802444 n 0000 ~ 06802571 n 0000 ~ 06802785 n 0000 ~ 06802880 n 0000 | something that serves to indicate or suggest; "an indication of foul play"; "indications of strain"; "symptoms are the prime indicants of disease" -06797671 10 n 01 indication 2 005 @ 05819149 n 0000 ;c 06043075 n 0000 + 00928232 v 0101 + 00921300 v 0103 ! 06797947 n 0101 | (medicine) a reason to prescribe a drug or perform a procedure; "the presence of bacterial infection was an indication for the use of antibiotics" -06797947 10 n 01 contraindication 0 004 @ 05819149 n 0000 ;c 06043075 n 0000 + 00928476 v 0101 ! 06797671 n 0101 | (medicine) a reason that makes it inadvisable to prescribe a particular drug or employ a particular procedure or treatment -06798187 10 n 01 symptom 0 002 @ 06797169 n 0000 + 00357254 a 0102 | anything that accompanies X and is regarded as an indication of X's existence -06798336 10 n 02 signalization 0 signalisation 0 003 @ 06797169 n 0000 + 00922438 v 0202 + 00922438 v 0101 | a conspicuous indication -06798472 10 n 01 pointing_out 0 001 @ 06797169 n 0000 | indication by demonstration -06798558 10 n 01 manifestation 0 002 @ 06797169 n 0000 + 00820976 v 0103 | a manifest indication of the existence or presence or nature of some person or thing; "a manifestation of disease" -06798750 10 n 02 mark 3 print 1 012 @ 06797169 n 0000 + 01275762 v 0103 + 00508032 v 0101 + 00921738 v 0101 ~ 06644393 n 0000 ~ 06645039 n 0000 ~ 06647036 n 0000 ~ 06799142 n 0000 ~ 06799260 n 0000 ~ 06799754 n 0000 ~ 06799897 n 0000 ~ 08593924 n 0000 | a visible indication made on a surface; "some previous reader had covered the pages with dozens of marks"; "paw prints were everywhere" -06799142 10 n 01 mintmark 0 001 @ 06798750 n 0000 | a mark on a coin that identifies the mint where it was produced -06799260 10 n 01 stroke 1 005 @ 06798750 n 0000 ~ 06799485 n 0000 ~ 06799588 n 0000 ~ 06799688 n 0000 ~ 06801418 n 0000 | a mark made on a surface by a pen, pencil, or paintbrush; "she applied the paint in careful strokes" -06799485 10 n 01 downstroke 0 001 @ 06799260 n 0000 | a stroke normally made in a downward direction -06799588 10 n 01 upstroke 0 001 @ 06799260 n 0000 | a stroke normally made in an upward direction -06799688 10 n 01 flick 1 001 @ 06799260 n 0000 | a short stroke -06799754 10 n 03 hoofprint 0 hoof_mark 0 hoof-mark 0 001 @ 06798750 n 0000 | a visible impression on a surface made by the hoof of an animal -06799897 10 n 01 line 1 019 @ 06798750 n 0000 + 01276361 v 0101 + 01582645 v 0103 ~ 03136773 n 0000 ~ 06800344 n 0000 ~ 06800532 n 0000 ~ 06800698 n 0000 ~ 06800871 n 0000 ~ 06801033 n 0000 ~ 06801138 n 0000 ~ 06801313 n 0000 ~ 06801740 n 0000 ~ 06801965 n 0000 ~ 06802138 n 0000 ~ 06802258 n 0000 ~ 06821770 n 0000 ~ 06828061 n 0000 ~ 06862059 n 0000 ~ 06862399 n 0000 | a mark that is long relative to its width; "He drew a line on the chart" -06800344 10 n 01 dotted_line 0 001 @ 06799897 n 0000 | a line made up of dots or dashes; often used to indicate where you are supposed to sign a contract; "just sign on the dotted line" -06800532 10 n 01 ascender 0 002 @ 06799897 n 0000 ;c 06677302 n 0000 | (printing) the part of tall lowercase letters that extends above the other lowercase letters -06800698 10 n 01 bar_line 0 003 @ 06799897 n 0000 @ 06814870 n 0000 ~ 06864900 n 0000 | a vertical line before the accented beat marking the boundary between musical bars -06800871 10 n 01 descender 0 002 @ 06799897 n 0000 ;c 06677302 n 0000 | (printing) the part of lowercase letters that extends below the other lowercase letters -06801033 10 n 02 squiggle 0 curlicue 0 002 @ 06799897 n 0000 + 02313676 a 0101 | a short twisting line -06801138 10 n 01 spectrum_line 0 003 @ 06799897 n 0000 #p 11420831 n 0000 ~ 11457586 n 0000 | an isolated component of a spectrum formed by radiation at a uniform frequency -06801313 10 n 01 trend_line 0 001 @ 06799897 n 0000 | a line on a graph indicating a statistical trend -06801418 10 n 02 underscore 0 underline 0 003 @ 06799260 n 0000 + 01004235 v 0201 + 01004235 v 0102 | a line drawn underneath (especially under written matter) -06801580 10 n 02 contour 0 contour_line 0 003 @ 06801740 n 0000 + 01689752 v 0101 ~ 06801865 n 0000 | a line drawn on a map connecting points of equal height -06801740 10 n 02 isometric_line 0 isometric 0 002 @ 06799897 n 0000 ~ 06801580 n 0000 | a line connecting isometric points -06801865 10 n 01 thalweg 0 001 @ 06801580 n 0000 | a line following the lowest points of a valley -06801965 10 n 01 graduation 0 002 @ 06799897 n 0000 + 00295697 v 0102 | a line (as on a vessel or ruler) that marks a measurement; "the ruler had 16 graduations per inch" -06802138 10 n 01 guideline 1 001 @ 06799897 n 0000 | a light line that is used in lettering to help align the letters -06802258 10 n 01 hairline 0 002 @ 06799897 n 0000 ~ 06802347 n 0000 | a very thin line -06802347 10 n 01 hair_stroke 0 001 @ 06802258 n 0000 | a very fine line in writing or printing -06802444 10 n 01 glimpse 0 001 @ 06797169 n 0000 | a vague indication; "he caught only a glimpse of the professor's meaning" -06802571 10 n 05 harbinger 0 forerunner 0 predecessor 0 herald 0 precursor 0 003 @ 06797169 n 0000 + 00974173 v 0405 + 00974173 v 0103 | something that precedes and indicates the approach of something or someone -06802785 10 n 02 hint 1 clue 0 002 @ 06797169 n 0000 + 00927430 v 0101 | a slight indication -06802880 10 n 01 smoke 0 001 @ 06797169 n 0000 | an indication of some hidden activity; "with all that smoke there must be a fire somewhere" -06803023 10 n 01 air_alert 0 001 @ 06803157 n 0000 | the warning signal that begins a period of preparation for an enemy air attack -06803157 10 n 04 alarm 0 alert 1 warning_signal 0 alarum 0 011 @ 06791372 n 0000 + 00872414 v 0202 ~ 04456734 n 0000 ~ 06803023 n 0000 ~ 06803478 n 0000 ~ 07265276 n 0000 ~ 07265381 n 0000 ~ 07265508 n 0000 ~ 07265619 n 0000 ~ 07265789 n 0000 ~ 07265886 n 0000 | an automatic signal (usually a sound) warning of danger -06803478 10 n 01 burglar_alarm 0 001 @ 06803157 n 0000 | a loud warning signal produced by a burglar alarm; "they could hear the burglar alarm a mile away" -06803636 10 n 02 distress_signal 0 distress_call 0 003 @ 06791372 n 0000 ~ 06803845 n 0000 ~ 06803954 n 0000 | an internationally recognized signal sent out by a ship or plane indicating that help is needed -06803845 10 n 01 SOS 0 001 @ 06803636 n 0000 | an internationally recognized distress signal in radio code -06803954 10 n 01 Mayday 0 001 @ 06803636 n 0000 | an internationally recognized distress signal via radiotelephone (from the French m'aider) -06804097 10 n 01 all_clear 0 001 @ 06791372 n 0000 | a signal (usually a siren) that danger is over -06804199 10 n 01 bugle_call 0 006 @ 06791372 n 0000 ~ 06804388 n 0000 ~ 06804483 n 0000 ~ 06804728 n 0000 ~ 06804847 n 0000 ~ 06805497 n 0000 | a signal broadcast by the sound of a bugle -06804388 10 n 01 recall 1 001 @ 06804199 n 0000 | a bugle call that signals troops to return -06804483 10 n 02 taps 0 lights-out 0 002 @ 06804199 n 0000 ;c 08199025 n 0000 | (military) signal to turn the lights out -06804606 10 n 01 curfew 0 001 @ 06791372 n 0000 | a signal (usually a bell) announcing the start of curfew restrictions -06804728 10 n 02 reveille 0 wake-up_signal 0 002 @ 06804199 n 0000 ;c 08199025 n 0000 | (military) signal to wake up -06804847 10 n 01 retreat 0 002 @ 06804199 n 0000 ;c 08199025 n 0000 | (military) a bugle call signaling the lowering of the flag at sunset -06804988 10 n 01 retreat 1 002 @ 06791372 n 0000 ;c 08199025 n 0000 | (military) a signal to begin a withdrawal from a dangerous position -06805128 10 n 01 drumbeat 0 003 @ 06791372 n 0000 ;c 08199025 n 0000 ~ 06805497 n 0000 | (military) the beating of a drum as a signal for lowering the flag at sundown -06805297 10 n 03 tattle 0 singing 2 telling 3 005 @ 07213395 n 0000 + 01305344 a 0302 + 00954422 v 0301 + 00937208 v 0208 + 00937208 v 0104 | disclosing information or giving evidence about another -06805497 10 n 01 tattoo 0 003 @ 06805128 n 0000 @ 06804199 n 0000 ;c 08199025 n 0000 | a drumbeat or bugle call that signals the military to return to their quarters -06805665 10 n 02 telegraphic_signal 0 radiotelegraphic_signal 0 003 @ 06791372 n 0000 ~ 06805826 n 0000 ~ 06805962 n 0000 | a signal transmitted by telegraphy -06805826 10 n 02 dot 0 dit 0 002 @ 06805665 n 0000 #p 06355459 n 0000 | the shorter of the two telegraphic signals used in Morse code -06805962 10 n 02 dash 0 dah 0 002 @ 06805665 n 0000 #p 06355459 n 0000 | the longer of the two telegraphic signals used in Morse code -06806098 10 n 02 whistle 0 whistling 0 003 @ 06791372 n 0000 + 01043612 v 0201 + 01043612 v 0101 | the act of signalling (e.g., summoning) by whistling or blowing a whistle; "the whistle signalled the end of the game" -06806318 10 n 01 high_sign 0 001 @ 06791372 n 0000 | a silent signal of warning or recognition; "she started to speak but he gave her the high sign" -06806469 10 n 01 symbol 0 026 @ 06791372 n 0000 + 02806907 a 0102 + 02806907 a 0101 + 00836236 v 0102 + 00836236 v 0103 ~ 06531327 n 0000 ~ 06696483 n 0000 ~ 06794666 n 0000 ~ 06795746 n 0000 ~ 06795967 n 0000 ~ 06807056 n 0000 ~ 06807198 n 0000 ~ 06807849 n 0000 ~ 06808408 n 0000 ~ 06809756 n 0000 ~ 06817623 n 0000 ~ 06821581 n 0000 ~ 06824041 n 0000 ~ 06855207 n 0000 ~ 06883956 n 0000 ~ 06884097 n 0000 ~ 07267160 n 0000 ~ 07269916 n 0000 ~ 07270179 n 0000 ~ 07270601 n 0000 ~ 07271280 n 0000 | an arbitrary sign (written or printed) that has acquired a conventional significance -06807056 10 n 01 nose 0 003 @ 06806469 n 0000 + 00665156 a 0101 + 00665156 a 0102 | a symbol of inquisitiveness; "keep your nose out of it" -06807198 10 n 02 numeral 0 number 1 009 @ 06806469 n 0000 + 00235918 v 0201 + 00948071 v 0202 + 00946755 v 0201 + 00948853 v 0201 + 02645007 v 0202 ~ 06807501 n 0000 ~ 06807657 n 0000 ~ 06812794 n 0000 | a symbol used to represent a number; "he learned to write the numerals before he went to school" -06807501 10 n 03 Arabic_numeral 0 Hindu_numeral 0 Hindu-Arabic_numeral 0 002 @ 06807198 n 0000 ! 06807657 n 0101 | one of the symbols 1,2,3,4,5,6,7,8,9,0 -06807657 10 n 01 Roman_numeral 0 002 @ 06807198 n 0000 ! 06807501 n 0101 | a symbol in the old Roman notation; I,V,X,L,C,D,M represent 1,5,10,50,100,500,1000 respectively in Arabic notation -06807849 10 n 01 symbolism 0 002 @ 06806469 n 0000 + 10685853 n 0101 | a system of symbols and symbolic representations -06807971 10 n 01 crossbones 0 001 @ 05765415 n 0000 | two crossed bones (or a representation of two crossed bones) used as a symbol danger or death -06808121 10 n 02 horn_of_plenty 0 cornucopia 0 001 @ 05765415 n 0000 | a goat's horn filled with grain and flowers and fruit symbolizing prosperity -06808271 10 n 01 death's_head 0 001 @ 05765415 n 0000 | a human skull (or a representation of a human skull) used as a symbol of death -06808408 10 n 01 lingam 0 001 @ 06806469 n 0000 | the Hindu phallic symbol of Siva -06808493 10 n 02 notation 0 notational_system 0 006 @ 06359877 n 0000 + 00995286 v 0101 ~ 06808720 n 0000 ~ 06814870 n 0000 ~ 06816445 n 0000 ~ 06816785 n 0000 | a technical system of symbols used to represent special things -06808720 10 n 01 mathematical_notation 0 015 @ 06808493 n 0000 #p 06732169 n 0000 ~ 06809074 n 0000 ~ 06809905 n 0000 ~ 06810407 n 0000 ~ 06810544 n 0000 ~ 06810997 n 0000 ~ 06811283 n 0000 ~ 06811625 n 0000 ~ 06812289 n 0000 ~ 06812417 n 0000 ~ 06813506 n 0000 ~ 06813700 n 0000 ~ 06814021 n 0000 ~ 06814236 n 0000 | a notation used by mathematicians -06809074 10 n 04 numeration_system 0 number_system 0 number_representation_system 0 system_of_numeration 0 003 @ 06808720 n 0000 ~ 06809421 n 0000 -c 13597794 n 0000 | any notation for the representation of numbers -06809291 10 n 01 oriflamme 0 001 @ 05765415 n 0000 | an inspiring symbol or ideal that serves as a rallying point in a struggle -06809421 10 n 02 positional_notation 0 positional_representation_system 0 006 @ 06809074 n 0000 ~ 06810020 n 0000 ~ 06810238 n 0000 ~ 06810790 n 0000 ~ 06811109 n 0000 ~ 06811419 n 0000 | a numeration system in which a real number is represented by an ordered set of characters where the value of a character depends on its position -06809756 10 n 02 pound 0 pound_sign 0 001 @ 06806469 n 0000 | a symbol for a unit of currency (especially for the pound sterling in Great Britain) -06809905 10 n 01 binary_notation 0 001 @ 06808720 n 0000 | any notation that uses 2 characters (usually 0 and 1) -06810020 10 n 04 binary_numeration_system 0 pure_binary_numeration_system 0 binary_number_system 0 binary_system 0 001 @ 06809421 n 0000 | a positional system of numeration that uses binary digits and a radix of two -06810238 10 n 02 octal_numeration_system 0 octal_number_system 0 001 @ 06809421 n 0000 | a positional system of numeration that uses octal digits and a radix of eight -06810407 10 n 01 decimal_notation 0 001 @ 06808720 n 0000 | any notation that uses 10 different characters (usually the digits 0 to 9) -06810544 10 n 01 octal_notation 0 001 @ 06808720 n 0000 | any mathematical notation that uses 8 different characters (usually the digits 0 to 7) -06810691 10 n 01 algorism 0 001 @ 06810790 n 0000 | the Arabic (or decimal) system of numeration -06810790 10 n 03 decimal_numeration_system 0 decimal_number_system 0 decimal_system 0 002 @ 06809421 n 0000 ~ 06810691 n 0000 | a positional system of numeration that uses decimal digits and a base of ten -06810997 10 n 01 duodecimal_notation 0 001 @ 06808720 n 0000 | any notation that uses 12 different characters -06811109 10 n 02 duodecimal_number_system 0 duodecimal_system 0 001 @ 06809421 n 0000 | a positional system of numeration that uses duodecimal digits and a radix of twelve -06811283 10 n 02 hexadecimal_notation 0 sexadecimal_notation 0 001 @ 06808720 n 0000 | any notation that uses 16 different characters -06811419 10 n 03 hexadecimal_number_system 0 sexadecimal_number_system 0 hexadecimal_system 0 001 @ 06809421 n 0000 | a positional system of numeration that uses hexadecimal digits and a radix of sixteen -06811625 10 n 01 sign 4 007 @ 06808720 n 0000 + 00931852 v 0103 + 00932324 v 0101 ~ 06811867 n 0000 ~ 06811986 n 0000 ~ 06812085 n 0000 ~ 06812188 n 0000 | a character indicating a relation between quantities; "don't forget the minus sign" -06811867 10 n 01 equal_sign 0 001 @ 06811625 n 0000 | a sign indicating that the quantities on either side are equal -06811986 10 n 01 plus_sign 0 001 @ 06811625 n 0000 | a sign indicating the operation of addition -06812085 10 n 01 minus_sign 0 001 @ 06811625 n 0000 | a sign indicating the operation of subtraction -06812188 10 n 01 radical_sign 0 001 @ 06811625 n 0000 | a sign indicating the extraction of a root -06812289 10 n 03 decimal_point 0 percentage_point 0 point 4 001 @ 06808720 n 0000 | the dot at the left of a decimal fraction -06812417 10 n 03 exponent 0 power 0 index 2 004 @ 06808720 n 0000 + 02965274 a 0101 ~ 05861317 n 0000 ~ 06812631 n 0000 | a mathematical notation indicating the number of times a quantity is multiplied by itself -06812631 10 n 02 logarithm 0 log 1 004 @ 06812417 n 0000 + 02994617 a 0101 ~ 06812915 n 0000 ~ 06813004 n 0000 | the exponent required to produce a given number -06812794 10 n 02 antilogarithm 0 antilog 0 001 @ 06807198 n 0000 | the number of which a given number is the logarithm -06812915 10 n 01 common_logarithm 0 001 @ 06812631 n 0000 | a logarithm to the base 10 -06813004 10 n 02 natural_logarithm 0 Napierian_logarithm 0 001 @ 06812631 n 0000 | a logarithm to the base e -06813115 10 n 02 mantissa 0 fixed-point_part 0 001 @ 13732078 n 0000 | the positive fractional part of the representation of a logarithm; in the expression log 643 = 2.808 the mantissa is .808 -06813310 10 n 01 characteristic 0 001 @ 13728499 n 0000 | the integer part (positive or negative) of the representation of a logarithm; in the expression log 643 = 2.808 the characteristic is 2 -06813506 10 n 02 fixed-point_notation 0 fixed-point_representation_system 0 001 @ 06808720 n 0000 | a radix numeration system in which the location of the decimal point is fixed by convention -06813700 10 n 02 floating-point_notation 0 floating-point_representation_system 0 001 @ 06808720 n 0000 | a radix numeration system in which the location of the decimal point is indicated by an exponent of the radix; in the floating-point representation system, 0.0012 is represented as 0.12-2 where -2 is the exponent -06814021 10 n 01 infix_notation 0 001 @ 06808720 n 0000 | a notation for forming mathematical expressions using parentheses and governed by rules of operator precedence; operators are dispersed among the operands -06814236 10 n 01 parenthesis-free_notation 0 003 @ 06808720 n 0000 ~ 06814443 n 0000 ~ 06814655 n 0000 | a notation for forming mathematical expressions that does not use parentheses to delimit components -06814443 10 n 03 prefix_notation 0 Lukasiewicz_notation 0 Polish_notation 0 001 @ 06814236 n 0000 | a parenthesis-free notation for forming mathematical expressions in which each operator precedes its operands -06814655 10 n 03 postfix_notation 0 suffix_notation 0 reverse_Polish_notation 0 001 @ 06814236 n 0000 | a parenthesis-free notation for forming mathematical expressions in which each operator follows its operands -06814870 10 n 01 musical_notation 0 028 @ 06808493 n 0000 #p 06815714 n 0000 ;c 07020895 n 0000 ~ 06800698 n 0000 ~ 06816335 n 0000 ~ 06856568 n 0000 ~ 06858779 n 0000 ~ 06861860 n 0000 %p 06862059 n 0000 %p 06862202 n 0000 %p 06862399 n 0000 ~ 06862562 n 0000 ~ 06863618 n 0000 ~ 06863751 n 0000 ~ 06864014 n 0000 ~ 06864524 n 0000 ~ 06864725 n 0000 ~ 06865177 n 0000 ~ 06865345 n 0000 ~ 06865953 n 0000 ~ 06866599 n 0000 ~ 06866919 n 0000 ~ 06867218 n 0000 ~ 06867345 n 0000 ~ 06867510 n 0000 ~ 06867675 n 0000 ~ 06869271 n 0000 ~ 06869428 n 0000 | (music) notation used by musicians -06815458 10 n 01 lead_sheet 0 001 @ 06816106 n 0000 | a sheet containing the words and melody for a song (and some indication of harmony) written in simple form -06815621 10 n 01 piano_music 0 001 @ 06816106 n 0000 | sheet music to be played on a piano -06815714 10 n 02 score 0 musical_score 0 003 @ 06816106 n 0000 + 01706488 v 0101 %p 06814870 n 0000 | a written form of a musical composition; parts for different instruments appear on separate staves on large pages; "he studied the score of the sonata" -06815970 10 n 02 obbligato 0 obligato 0 001 @ 06392001 n 0000 | a part of the score that must be performed without change or omission -06816106 10 n 01 sheet_music 0 005 @ 07037465 n 0000 ;c 07020895 n 0000 ~ 06815458 n 0000 ~ 06815621 n 0000 ~ 06815714 n 0000 | a musical composition in printed or written form; "she turned the pages of the music as he played" -06816335 10 n 01 tablature 0 001 @ 06814870 n 0000 | a musical notation indicating the fingering to be used -06816445 10 n 01 choreography 1 002 @ 06808493 n 0000 ~ 06816555 n 0000 | a notation used by choreographers -06816555 10 n 01 Labanotation 0 001 @ 06816445 n 0000 | a system of notation for dance movements that uses symbols to represent points on a dancer's body and the direction of the dancer's movement and the tempo and the dynamics -06816785 10 n 01 chemical_notation 0 002 @ 06808493 n 0000 #p 06816935 n 0000 | a notation used by chemists to express technical facts in chemistry -06816935 10 n 02 formula 3 chemical_formula 0 006 @ 06722453 n 0000 + 02730861 a 0101 + 00981083 v 0101 %p 06816785 n 0000 ~ 06817173 n 0000 ~ 06817459 n 0000 | a representation of a substance using symbols for its constituent elements -06817173 10 n 01 molecular_formula 0 002 @ 06816935 n 0000 ~ 06817312 n 0000 | a chemical formula based on analysis and molecular weight -06817312 10 n 01 structural_formula 0 001 @ 06817173 n 0000 | an expanded molecular formula showing the arrangement of atoms within the molecule -06817459 10 n 01 empirical_formula 0 001 @ 06816935 n 0000 | a chemical formula showing the ratio of elements in a compound rather than the total number of atoms -06817623 10 n 02 written_symbol 0 printed_symbol 0 004 @ 06806469 n 0000 ~ 06817782 n 0000 ~ 06818970 n 0000 ~ 06821889 n 0000 | a written or printed symbol -06817782 10 n 01 mark 0 012 @ 06817623 n 0000 + 01004062 v 0102 ~ 06818121 n 0000 ~ 06818317 n 0000 ~ 06818439 n 0000 ~ 06818603 n 0000 ~ 06818747 n 0000 ~ 06820964 n 0000 ~ 06821279 n 0000 ~ 06821422 n 0000 ~ 06822034 n 0000 ~ 06841365 n 0000 | a written or printed symbol (as for punctuation); "his answer was just a punctuation mark" -06818121 10 n 02 arrow 0 pointer 0 006 @ 06817782 n 0000 + 02713184 v 0202 + 01152670 v 0201 + 00923793 v 0202 %p 06821770 n 0000 %p 06822034 n 0000 | a mark to indicate a direction or relation -06818317 10 n 01 broad_arrow 0 001 @ 06817782 n 0000 | a mark shaped like an arrowhead; used to mark convicts' clothing -06818439 10 n 03 call_mark 0 call_number 0 pressmark 0 001 @ 06817782 n 0000 | a mark consisting of characters written on a book; used to indicate shelf location -06818603 10 n 01 caret 0 001 @ 06817782 n 0000 | a mark used by an author or editor to indicate where something is to be inserted into a text -06818747 10 n 03 check_mark 0 check 1 tick 0 002 @ 06817782 n 0000 + 00662182 v 0201 | a mark indicating that something has been noted or completed etc.; "as he called the role he put a check mark by each student's name" -06818970 10 n 03 character 0 grapheme 0 graphic_symbol 0 024 @ 06817623 n 0000 + 01322391 v 0101 ~ 06819557 n 0000 ~ 06819824 n 0000 ~ 06820023 n 0000 ~ 06820212 n 0000 ~ 06820425 n 0000 ~ 06823925 n 0000 ~ 06824227 n 0000 ~ 06824757 n 0000 ~ 06825120 n 0000 ~ 06828199 n 0000 ~ 06828389 n 0000 ~ 06828529 n 0000 ~ 06828662 n 0000 ~ 06828818 n 0000 ~ 06839190 n 0000 ~ 06839858 n 0000 ~ 06840047 n 0000 ~ 06840187 n 0000 ~ 06840530 n 0000 ~ 06840648 n 0000 ~ 06841159 n 0000 ~ 06841287 n 0000 | a written symbol that is used to represent speech; "the Greek alphabet has 24 characters" -06819557 10 n 01 allograph 0 001 @ 06818970 n 0000 | a variant form of a grapheme, as `m' or `M' or a handwritten version of that grapheme -06819698 10 n 02 readout 0 read-out 0 001 @ 06634376 n 0000 | the information displayed or recorded on an electronic device -06819824 10 n 01 check_character 0 002 @ 06818970 n 0000 ;c 06251781 n 0000 | a character that is added to the end of a block of transmitted data and used to check the accuracy of the transmission -06820023 10 n 02 superscript 0 superior 0 002 @ 06818970 n 0000 ! 06820212 n 0101 | a character or symbol set or printed or written above and immediately to one side of another character -06820212 10 n 02 subscript 0 inferior 0 003 @ 06818970 n 0000 + 02349852 a 0101 ! 06820023 n 0101 | a character or symbol set or printed or written beneath or slightly below and to the side of another character -06820425 10 n 01 ASCII_character 0 003 @ 06818970 n 0000 #p 06356755 n 0000 ~ 06820601 n 0000 | any member of the standard code for representing characters by binary numbers -06820601 10 n 02 control_character 0 ASCII_control_character 0 002 @ 06820425 n 0000 ~ 06820837 n 0000 | ASCII characters to indicate carriage return or tab or backspace; typed by depressing a key and the control key at the same time -06820837 10 n 01 backspace_character 0 001 @ 06820601 n 0000 | a control character that indicates moving a space to the left -06820964 10 n 02 diacritical_mark 0 diacritic 0 011 @ 06817782 n 0000 + 00774911 a 0201 + 00774911 a 0202 ~ 06822198 n 0000 ~ 06822831 n 0000 ~ 06822958 n 0000 ~ 06823102 n 0000 ~ 06823259 n 0000 ~ 06823440 n 0000 ~ 06823561 n 0000 ~ 06823760 n 0000 | a mark added to a letter to indicate a special pronunciation -06821279 10 n 02 ditto_mark 0 ditto 0 002 @ 06817782 n 0000 + 00959027 v 0201 | a mark used to indicate the word above it should be repeated -06821422 10 n 02 dollar_mark 0 dollar_sign 0 001 @ 06817782 n 0000 | a mark ($) written before a number to indicate that it stands for the number of dollars -06821581 10 n 03 dollar 0 dollar_mark 1 dollar_sign 1 001 @ 06806469 n 0000 | a symbol of commercialism or greed; "he worships the almighty dollar"; "the dollar sign means little to him" -06821770 10 n 01 shaft 0 002 @ 06799897 n 0000 #p 06818121 n 0000 | a line that forms the length of an arrow pointer -06821889 10 n 01 phonogram 0 002 @ 06817623 n 0000 + 02777055 a 0101 | any written symbol standing for a sound or syllable or morpheme or word -06822034 10 n 02 point 2 head 1 002 @ 06817782 n 0000 #p 06818121 n 0000 | a V-shaped mark at one end of an arrow pointer; "the point of the arrow was due north" -06822198 10 n 02 accent 2 accent_mark 0 007 @ 06820964 n 0000 ;c 06282651 n 0000 + 03139235 a 0101 + 00983333 v 0103 ~ 06822476 n 0000 ~ 06822576 n 0000 ~ 06822707 n 0000 | a diacritical mark used to indicate stress or placed above a vowel to indicate a special pronunciation -06822476 10 n 01 stress_mark 0 001 @ 06822198 n 0000 | a mark indicating the stress on a syllable -06822576 10 n 03 acute_accent 0 acute 0 ague 0 001 @ 06822198 n 0000 | a mark (') placed above a vowel to indicate pronunciation -06822707 10 n 02 grave_accent 0 grave 0 001 @ 06822198 n 0000 | a mark (`) placed above a vowel to indicate pronunciation -06822831 10 n 01 breve 0 001 @ 06820964 n 0000 | a diacritical mark (U-shaped) placed over a vowel to indicate a short sound -06822958 10 n 01 cedilla 0 001 @ 06820964 n 0000 | a diacritical mark (,) placed below the letter c to indicate that it is pronounced as an s -06823102 10 n 01 circumflex 0 001 @ 06820964 n 0000 | a diacritical mark (^) placed above a vowel in some languages to indicate a special phonetic quality -06823259 10 n 02 hacek 0 wedge 0 001 @ 06820964 n 0000 | a diacritical mark (an inverted circumflex) placed above certain letters (such as the letter c) to indicate pronunciation -06823440 10 n 01 macron 0 001 @ 06820964 n 0000 | a diacritical mark (-) placed above a vowel to indicate a long sound -06823561 10 n 01 tilde 0 001 @ 06820964 n 0000 | a diacritical mark (~) placed over the letter n in Spanish to indicate a palatal nasal sound or over a vowel in Portuguese to indicate nasalization -06823760 10 n 03 umlaut 0 dieresis 0 diaeresis 0 001 @ 06820964 n 0000 | a diacritical mark (two dots) placed over a vowel in German to indicate a change in sound -06823925 10 n 01 ligature 1 001 @ 06818970 n 0000 | character consisting of two or more letters combined into one -06824041 10 n 01 monogram 0 001 @ 06806469 n 0000 | a graphic symbol consisting of 2 or more letters combined (usually your initials); printed on stationery or embroidered on clothing -06824227 10 n 05 capital 0 capital_letter 0 uppercase 0 upper-case_letter 0 majuscule 0 007 @ 06818970 n 0000 + 01474196 a 0501 ! 06824757 n 0302 + 01467919 a 0101 + 01692266 v 0101 + 01692266 v 0102 ~ 06824955 n 0000 | one of the large alphabetic characters used as the first letter in writing or printing proper names and sometimes for emphasis; "printers once kept the type for capitals and for small letters in separate cases; capitals were kept in the upper half of the type case and so became known as upper-case letters" -06824757 10 n 04 small_letter 0 lowercase 0 lower-case_letter 0 minuscule 1 002 @ 06818970 n 0000 ! 06824227 n 0203 | the characters that were once kept in bottom half of a compositor's type case -06824955 10 n 02 small_capital 0 small_cap 0 001 @ 06824227 n 0000 | a character having the form of an upper-case letter but the same height as lower-case letters -06825120 10 n 01 type 1 004 @ 06818970 n 0000 + 01004692 v 0101 ~ 06825273 n 0000 ~ 06825399 n 0000 | printed characters; "small type is hard to read" -06825273 10 n 01 type_family 0 002 @ 06825120 n 0000 %m 06825399 n 0000 | a complete set of type suitable for printing text -06825399 10 n 05 font 0 fount 0 typeface 0 face 0 case 3 012 @ 06825120 n 0000 #m 06825273 n 0000 ~ 06825736 n 0000 ~ 06825863 n 0000 ~ 06825996 n 0000 ~ 06826214 n 0000 ~ 06826407 n 0000 ~ 06826589 n 0000 ~ 06827219 n 0000 ~ 06827344 n 0000 ~ 06827679 n 0000 ~ 06827947 n 0000 | a specific size and style of type within a type family -06825736 10 n 01 unicameral_script 0 003 @ 06825399 n 0000 ~ 06498569 n 0000 ~ 06500062 n 0000 | a script with a single case -06825863 10 n 01 bicameral_script 0 003 @ 06825399 n 0000 ~ 06497872 n 0000 ~ 06499796 n 0000 | a script having two distinct cases -06825996 10 n 04 typewriter_font 0 constant-width_font 0 fixed-width_font 0 monospaced_font 0 002 @ 06825399 n 0000 ! 06826214 n 0301 | a typeface is which each character is given the same width (as by a typewriter) -06826214 10 n 01 proportional_font 0 005 @ 06825399 n 0000 ! 06825996 n 0103 ~ 06826726 n 0000 ~ 06826974 n 0000 ~ 06827503 n 0000 | any font whose different characters have different widths -06826407 10 n 02 font_cartridge 0 cartridge_font 0 002 @ 06825399 n 0000 ;c 06128570 n 0000 | any font that is contained in a cartridge that can be plugged into a computer printer -06826589 10 n 02 Gothic 1 black_letter 0 002 @ 06825399 n 0000 + 03069797 a 0101 | a heavy typeface in use from 15th to 18th centuries -06826726 10 n 04 modern 0 modern_font 0 Bodoni 0 Bodoni_font 0 002 @ 06826214 n 0000 ! 06826974 n 0101 | a typeface (based on an 18th century design by Gianbattista Bodoni) distinguished by regular shape and hairline serifs and heavy downstrokes -06826974 10 n 02 old_style 0 old_style_font 0 002 @ 06826214 n 0000 ! 06826726 n 0101 | a typeface (based on an 18th century design) distinguished by irregularity and slanted ascender serifs and little contrast between light and heavy strokes -06827219 10 n 03 boldface 0 bold_face 0 bold 0 002 @ 06825399 n 0000 + 01748916 v 0101 | a typeface with thick heavy lines -06827344 10 n 01 italic 1 004 @ 06825399 n 0000 + 03075798 a 0101 + 01749017 v 0101 + 01749017 v 0102 | a typeface with letters slanting upward to the right -06827503 10 n 04 roman 1 roman_type 0 roman_letters 0 roman_print 0 003 @ 06826214 n 0000 + 02922086 a 0101 + 02921325 a 0102 | a typeface used in ancient Roman inscriptions -06827679 10 n 02 screen_font 0 raster_font 0 002 @ 06825399 n 0000 ;c 06128570 n 0000 | the font that is displayed on a computer screen; "when the screen font resembles a printed font a document may look approximately the same on the screen as it will when printed" -06827947 10 n 02 sans_serif 0 Helvetica 0 001 @ 06825399 n 0000 | a typeface in which characters have no serifs -06828061 10 n 02 serif 0 seriph 0 002 @ 06799897 n 0000 ;c 06677302 n 0000 | a short line at the end of the main strokes of a character -06828199 10 n 02 percent_sign 0 percentage_sign 0 001 @ 06818970 n 0000 | a sign (`%') used to indicate that the number preceding it should be understood as a proportion multiplied by 100 -06828389 10 n 02 asterisk 0 star 0 003 @ 06818970 n 0000 + 00510869 v 0201 + 00510869 v 0102 | a star-shaped character * used in printing -06828529 10 n 02 dagger 0 obelisk 0 001 @ 06818970 n 0000 | a character used in printing to indicate a cross reference or footnote -06828662 10 n 03 double_dagger 0 double_obelisk 0 diesis 0 001 @ 06818970 n 0000 | a character used in printing to indicate a cross reference or footnote -06828818 10 n 03 letter 1 letter_of_the_alphabet 0 alphabetic_character 0 086 @ 06818970 n 0000 #m 06497459 n 0000 #p 06353445 n 0000 + 01692443 v 0101 + 01692579 v 0101 ~ 06830561 n 0000 ~ 06830708 n 0000 ~ 06830838 n 0000 ~ 06830997 n 0000 ~ 06831177 n 0000 ~ 06831284 n 0000 ~ 06831391 n 0000 ~ 06831498 n 0000 ~ 06831605 n 0000 ~ 06831712 n 0000 ~ 06831819 n 0000 ~ 06831926 n 0000 ~ 06832033 n 0000 ~ 06832140 n 0000 ~ 06832248 n 0000 ~ 06832356 n 0000 ~ 06832464 n 0000 ~ 06832572 n 0000 ~ 06832680 n 0000 ~ 06832788 n 0000 ~ 06832896 n 0000 ~ 06833004 n 0000 ~ 06833112 n 0000 ~ 06833220 n 0000 ~ 06833328 n 0000 ~ 06833436 n 0000 ~ 06833544 n 0000 ~ 06833663 n 0000 ~ 06833776 n 0000 ~ 06833890 n 0000 ~ 06834138 n 0000 ~ 06834245 n 0000 ~ 06834351 n 0000 ~ 06834458 n 0000 ~ 06834565 n 0000 ~ 06834674 n 0000 ~ 06834780 n 0000 ~ 06834885 n 0000 ~ 06834992 n 0000 ~ 06835098 n 0000 ~ 06835206 n 0000 ~ 06835315 n 0000 ~ 06835420 n 0000 ~ 06835525 n 0000 ~ 06835630 n 0000 ~ 06835740 n 0000 ~ 06835845 n 0000 ~ 06835951 n 0000 ~ 06836059 n 0000 ~ 06836165 n 0000 ~ 06836275 n 0000 ~ 06836381 n 0000 ~ 06836493 n 0000 ~ 06836599 n 0000 ~ 06836714 n 0000 ~ 06836822 n 0000 ~ 06836929 n 0000 ~ 06837037 n 0000 ~ 06837146 n 0000 ~ 06837251 n 0000 ~ 06837357 n 0000 ~ 06837465 n 0000 ~ 06837572 n 0000 ~ 06837679 n 0000 ~ 06837787 n 0000 ~ 06837895 n 0000 ~ 06838005 n 0000 ~ 06838112 n 0000 ~ 06838219 n 0000 ~ 06838329 n 0000 ~ 06838437 n 0000 ~ 06838543 n 0000 ~ 06838652 n 0000 ~ 06838760 n 0000 ~ 06838868 n 0000 ~ 06838975 n 0000 ~ 06839083 n 0000 ~ 06839411 n 0000 ~ 06839637 n 0000 ~ 07114712 n 0000 ~ 07115381 n 0000 | the conventional characters of the alphabet used to represent speech; "his grandmother taught him his letters" -06830561 10 n 01 ascender 1 002 @ 06828818 n 0000 + 02037472 v 0101 | a lowercase letter that has a part extending above other lowercase letters -06830708 10 n 01 descender 1 001 @ 06828818 n 0000 | a lowercase letter that has a part extending below other lowercase letters -06830838 10 n 02 digraph 0 digram 0 001 @ 06828818 n 0000 | two successive letters (especially two letters used to represent a single sound: `sh' in `shoe') -06830997 10 n 01 initial 0 002 @ 06828818 n 0000 + 00997307 v 0101 | the first letter of a word (especially a person's name); "he refused to put the initials FRS after his name" -06831177 10 n 02 A 0 a 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 1st letter of the Roman alphabet -06831284 10 n 02 B 0 b 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 2nd letter of the Roman alphabet -06831391 10 n 02 C 0 c 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 3rd letter of the Roman alphabet -06831498 10 n 02 D 0 d 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 4th letter of the Roman alphabet -06831605 10 n 02 E 0 e 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 5th letter of the Roman alphabet -06831712 10 n 02 F 0 f 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 6th letter of the Roman alphabet -06831819 10 n 02 G 0 g 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 7th letter of the Roman alphabet -06831926 10 n 02 H 0 h 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 8th letter of the Roman alphabet -06832033 10 n 02 I 0 i 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 9th letter of the Roman alphabet -06832140 10 n 02 J 0 j 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 10th letter of the Roman alphabet -06832248 10 n 02 K 0 k 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 11th letter of the Roman alphabet -06832356 10 n 02 L 0 l 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 12th letter of the Roman alphabet -06832464 10 n 02 M 0 m 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 13th letter of the Roman alphabet -06832572 10 n 02 N 0 n 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 14th letter of the Roman alphabet -06832680 10 n 02 O 0 o 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 15th letter of the Roman alphabet -06832788 10 n 02 P 0 p 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 16th letter of the Roman alphabet -06832896 10 n 02 Q 0 q 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 17th letter of the Roman alphabet -06833004 10 n 02 R 0 r 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 18th letter of the Roman alphabet -06833112 10 n 02 S 0 s 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 19th letter of the Roman alphabet -06833220 10 n 02 T 0 t 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 20th letter of the Roman alphabet -06833328 10 n 02 U 0 u 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 21st letter of the Roman alphabet -06833436 10 n 02 V 0 v 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 22nd letter of the Roman alphabet -06833544 10 n 03 W 0 w 0 double-u 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 23rd letter of the Roman alphabet -06833663 10 n 03 X 0 x 0 ex 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 24th letter of the Roman alphabet -06833776 10 n 03 Y 0 y 0 wye 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 25th letter of the Roman alphabet -06833890 10 n 06 Z 0 z 0 zee 0 zed 0 ezed 0 izzard 0 002 @ 06828818 n 0000 #m 06497872 n 0000 | the 26th letter of the Roman alphabet; "the British call Z zed and the Scots call it ezed but Americans call it zee"; "he doesn't know A from izzard" -06834138 10 n 01 alpha 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 1st letter of the Greek alphabet -06834245 10 n 01 beta 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 2nd letter of the Greek alphabet -06834351 10 n 01 gamma 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 3rd letter of the Greek alphabet -06834458 10 n 01 delta 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 4th letter of the Greek alphabet -06834565 10 n 01 epsilon 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 5th letter of the Greek alphabet -06834674 10 n 01 zeta 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 6th letter of the Greek alphabet -06834780 10 n 01 eta 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 7th letter of the Greek alphabet -06834885 10 n 01 theta 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 8th letter of the Greek alphabet -06834992 10 n 01 iota 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 9th letter of the Greek alphabet -06835098 10 n 01 kappa 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 10th letter of the Greek alphabet -06835206 10 n 01 lambda 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 11th letter of the Greek alphabet -06835315 10 n 01 mu 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 12th letter of the Greek alphabet -06835420 10 n 01 nu 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 13th letter of the Greek alphabet -06835525 10 n 01 xi 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 14th letter of the Greek alphabet -06835630 10 n 01 omicron 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 15th letter of the Greek alphabet -06835740 10 n 01 pi 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 16th letter of the Greek alphabet -06835845 10 n 01 rho 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 17th letter of the Greek alphabet -06835951 10 n 01 sigma 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 18th letter of the Greek alphabet -06836059 10 n 01 tau 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 19th letter of the Greek alphabet -06836165 10 n 01 upsilon 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 20th letter of the Greek alphabet -06836275 10 n 01 phi 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 21st letter of the Greek alphabet -06836381 10 n 02 chi 0 khi 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 22nd letter of the Greek alphabet -06836493 10 n 01 psi 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the 23rd letter of the Greek alphabet -06836599 10 n 01 omega 0 002 @ 06828818 n 0000 #m 06499244 n 0000 | the last (24th) letter of the Greek alphabet -06836714 10 n 01 aleph 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 1st letter of the Hebrew alphabet -06836822 10 n 01 beth 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 2nd letter of the Hebrew alphabet -06836929 10 n 01 gimel 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 3rd letter of the Hebrew alphabet -06837037 10 n 01 daleth 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 4th letter of the Hebrew alphabet -06837146 10 n 01 he 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 5th letter of the Hebrew alphabet -06837251 10 n 01 waw 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 6th letter of the Hebrew alphabet -06837357 10 n 01 zayin 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 7th letter of the Hebrew alphabet -06837465 10 n 01 heth 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 8th letter of the Hebrew alphabet -06837572 10 n 01 teth 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 9th letter of the Hebrew alphabet -06837679 10 n 01 yodh 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 10th letter of the Hebrew alphabet -06837787 10 n 01 kaph 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 11th letter of the Hebrew alphabet -06837895 10 n 01 lamedh 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 12th letter of the Hebrew alphabet -06838005 10 n 01 mem 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 13th letter of the Hebrew alphabet -06838112 10 n 01 nun 1 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 14th letter of the Hebrew alphabet -06838219 10 n 01 samekh 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 15th letter of the Hebrew alphabet -06838329 10 n 01 ayin 0 002 @ 06828818 n 0000 #m 06498569 n 0000 | the 16th letter of the Hebrew alphabet -06838437 10 n 01 pe 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 17th letter of the Hebrew alphabet -06838543 10 n 01 sadhe 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 18th letter of the Hebrew alphabet -06838652 10 n 01 qoph 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 19th letter of the Hebrew alphabet -06838760 10 n 01 resh 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 20th letter of the Hebrew alphabet -06838868 10 n 01 sin 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 21st letter of the Hebrew alphabet -06838975 10 n 01 shin 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 22nd letter of the Hebrew alphabet -06839083 10 n 01 taw 0 002 @ 06828818 n 0000 #p 06498569 n 0000 | the 23rd letter of the Hebrew alphabet -06839190 10 n 02 space 0 blank 0 002 @ 06818970 n 0000 + 01988080 v 0101 | a blank character used to separate successive words in writing or printing; "he said the space is the most important character in the alphabet" -06839411 10 n 02 polyphone 0 polyphonic_letter 0 002 @ 06828818 n 0000 + 02856124 a 0101 | a letter that has two or more pronunciations; "`c' is a polyphone because it is pronounced like `k' in `car' but like `s' in `cell'" -06839637 10 n 02 block_letter 0 block_capital 0 001 @ 06828818 n 0000 | a plain hand-drawn letter -06839737 10 n 01 scarlet_letter 0 001 @ 06880664 n 0000 | the letter A in red; Puritans required adulterers to wear it -06839858 10 n 01 phonetic_symbol 0 003 @ 06818970 n 0000 #m 06500448 n 0000 #p 06349952 n 0000 | a written character used in phonetic transcription of represent a particular speech sound -06840047 10 n 01 mathematical_symbol 0 001 @ 06818970 n 0000 | a character that is used to indicates a mathematical relation or operation -06840187 10 n 02 rune 0 runic_letter 0 003 @ 06818970 n 0000 + 02938236 a 0101 ~ 06840442 n 0000 | any character from an ancient Germanic alphabet used in Scandinavia from the 3rd century to the Middle Ages; "each rune had its own magical significance" -06840442 10 n 01 thorn 0 001 @ 06840187 n 0000 | a Germanic character of runic origin -06840530 10 n 01 pictograph 0 002 @ 06818970 n 0000 + 02778122 a 0101 | a graphic character used in picture writing -06840648 10 n 02 ideogram 0 ideograph 0 003 @ 06818970 n 0000 ~ 06840890 n 0000 %p 06841159 n 0000 | a graphic character that indicates the meaning of a thing without indicating the sounds used to say it; "Chinese characters are ideograms" -06840890 10 n 02 logogram 0 logograph 0 002 @ 06840648 n 0000 + 02756743 a 0101 | a single written symbol that represents an entire word or phrase without indicating its pronunciation; "7 is a logogram that is pronounced `seven' in English and `nanatsu' in Japanese" -06841159 10 n 01 radical 1 002 @ 06818970 n 0000 #p 06840648 n 0000 | a character conveying the lexical meaning of a logogram -06841287 10 n 01 stenograph 0 001 @ 06818970 n 0000 | a shorthand character -06841365 10 n 02 punctuation 0 punctuation_mark 0 019 @ 06817782 n 0000 #p 06351202 n 0000 + 00190023 v 0101 ~ 06841873 n 0000 ~ 06841987 n 0000 ~ 06842165 n 0000 ~ 06842290 n 0000 ~ 06842452 n 0000 ~ 06842660 n 0000 ~ 06842852 n 0000 ~ 06843017 n 0000 ~ 06843148 n 0000 ~ 06843393 n 0000 ~ 06843520 n 0000 ~ 06844040 n 0000 ~ 06844199 n 0000 ~ 06844739 n 0000 ~ 06844903 n 0000 ~ 06845076 n 0000 | the marks used to clarify meaning by indicating separation of words into sentences and clauses and phrases -06841873 10 n 01 ampersand 0 001 @ 06841365 n 0000 | a punctuation mark (&) used to represent conjunction (and) -06841987 10 n 01 apostrophe 1 003 @ 06841365 n 0000 + 00993754 v 0101 + 00993754 v 0102 | the mark (') used to indicate the omission of one or more letters from a printed word -06842165 10 n 01 brace 0 001 @ 06841365 n 0000 | either of two punctuation marks ({ or }) used to enclose textual material -06842290 10 n 02 bracket 0 square_bracket 0 002 @ 06841365 n 0000 + 00800586 v 0101 | either of two punctuation marks ([ or ]) used to enclose textual material -06842452 10 n 02 bracket 1 angle_bracket 0 002 @ 06841365 n 0000 + 00800586 v 0101 | either of two punctuation marks (`<' or `>') used in computer programming and sometimes used to enclose textual material -06842660 10 n 01 colon 0 001 @ 06841365 n 0000 | a punctuation mark (:) used after a word introducing a series or an example or an explanation (or after the salutation of a business letter) -06842852 10 n 01 comma 0 001 @ 06841365 n 0000 | a punctuation mark (,) used to indicate the separation of elements within the grammatical structure of a sentence -06843017 10 n 02 exclamation_mark 0 exclamation_point 0 001 @ 06841365 n 0000 | a punctuation mark (!) used after an exclamation -06843148 10 n 02 hyphen 0 dash 1 003 @ 06841365 n 0000 + 01700326 v 0101 + 01700326 v 0102 | a punctuation mark (-) used between parts of a compound word or between the syllables of a word when the word is divided at the end of a line of text -06843393 10 n 01 parenthesis 0 001 @ 06841365 n 0000 | either of two punctuation marks (or) used to enclose textual material -06843520 10 n 05 period 0 point 0 full_stop 0 stop 1 full_point 0 005 @ 06841365 n 0000 + 01589056 v 0201 + 01589224 v 0201 + 01589363 v 0201 ~ 06843838 n 0000 | a punctuation mark (.) placed at the end of a declarative sentence to indicate a full stop or after abbreviations; "in England they call a period a stop" -06843838 10 n 01 suspension_point 0 002 @ 06843520 n 0000 ;u 06295235 n 0000 | (usually plural) one of a series of points indicating that something has been omitted or that the sentence is incomplete -06844040 10 n 02 question_mark 0 interrogation_point 0 001 @ 06841365 n 0000 | a punctuation mark (?) placed at the end of a sentence to indicate a question -06844199 10 n 03 quotation_mark 0 quote 0 inverted_comma 0 005 @ 06841365 n 0000 + 01004403 v 0201 ~ 06844427 n 0000 ~ 06844509 n 0000 ~ 06844594 n 0000 | a punctuation mark used to attribute the enclosed text to someone else -06844427 10 n 01 single_quote 0 001 @ 06844199 n 0000 | a single quotation mark -06844509 10 n 01 double_quotes 0 001 @ 06844199 n 0000 | a pair of quotation marks -06844594 10 n 01 scare_quote 0 001 @ 06844199 n 0000 | the use of quotation marks to indicate that it is not the authors preferred terminology -06844739 10 n 01 semicolon 0 001 @ 06841365 n 0000 | a punctuation mark (`;') used to connect independent clauses; indicates a closer relation than does a period -06844903 10 n 06 solidus 0 slash 0 virgule 0 diagonal 0 stroke 0 separatrix 0 001 @ 06841365 n 0000 | a punctuation mark (/) used to separate related items of information -06845076 10 n 01 swung_dash 0 001 @ 06841365 n 0000 | a punctuation mark used in text to indicate the omission of a word -06845199 10 n 01 company_name 0 001 @ 06333653 n 0000 | the name by which a corporation is identified -06845303 10 n 01 domain_name 0 002 @ 06333653 n 0000 ;c 06128570 n 0000 | strings of letters and numbers (separated by periods) that are used to name organizations and computers and addresses on the internet; "domain names are organized hierarchically with the more generic parts to the right" -06845599 10 n 04 trade_name 0 brand_name 0 brand 0 marque 0 306 @ 06333653 n 0000 -u 02673480 n 0102 -u 02699343 n 0102 -u 02705651 n 0104 -u 02705651 n 0103 -u 02705651 n 0102 -u 02706373 n 0102 -u 02748618 n 0105 -u 02748618 n 0104 -u 02748618 n 0103 -u 02989178 n 0102 -u 02989313 n 0102 -u 02989475 n 0102 -u 02989685 n 0103 -u 02989685 n 0102 -u 02989893 n 0102 -u 02990561 n 0102 -u 02996249 n 0104 -u 02996249 n 0103 -u 02996249 n 0102 -u 02996840 n 0102 -u 02998209 n 0102 -u 03021531 n 0102 -u 03022041 n 0103 -u 03022041 n 0102 -u 03022788 n 0102 -u 03022978 n 0103 -u 03022978 n 0102 -u 03023175 n 0102 -u 03023415 n 0102 -u 03031553 n 0102 -u 03032576 n 0102 -u 03047353 n 0102 -u 03048094 n 0103 -u 03048412 n 0102 -u 03048598 n 0102 -u 03155334 n 0102 -u 03157582 n 0102 -u 03174211 n 0102 -u 03186005 n 0102 -u 03189995 n 0102 -u 03190303 n 0102 -u 03191967 n 0102 -u 03192142 n 0102 -u 03192347 n 0102 -u 03195118 n 0102 -u 03197804 n 0102 -u 03198637 n 0102 -u 03198951 n 0102 -u 03203441 n 0103 -u 03214051 n 0102 -u 03285106 n 0102 -u 03285348 n 0102 -u 03287459 n 0102 -u 03295357 n 0106 -u 03295357 n 0105 -u 03295357 n 0104 -u 03295357 n 0103 -u 03295357 n 0102 -u 03296759 n 0102 -u 03298211 n 0102 -u 03299006 n 0102 -u 03299648 n 0102 -u 03299788 n 0102 -u 03300578 n 0103 -u 03300578 n 0102 -u 03300907 n 0102 -u 03319858 n 0102 -u 03326948 n 0104 -u 03328392 n 0103 -u 03362393 n 0102 -u 03370927 n 0104 -u 03370927 n 0103 -u 03371363 n 0103 -u 03371532 n 0102 -u 03372656 n 0102 -u 03406597 n 0102 -u 03433079 n 0102 -u 03435382 n 0102 -u 03440024 n 0102 -u 03441778 n 0102 -u 03441930 n 0103 -u 03441930 n 0102 -u 03460674 n 0102 -u 03464266 n 0102 -u 03480186 n 0102 -u 03552169 n 0104 -u 03552169 n 0103 -u 03552169 n 0102 -u 03553708 n 0103 -u 03553908 n 0102 -u 03554131 n 0104 -u 03554131 n 0103 -u 03556281 n 0105 -u 03556281 n 0104 -u 03556281 n 0103 -u 03561889 n 0104 -u 03561889 n 0103 -u 03567325 n 0102 -u 03568653 n 0102 -u 03569657 n 0102 -u 03584111 n 0102 -u 03587442 n 0102 -u 03587715 n 0103 -u 03587874 n 0102 -u 03588046 n 0102 -u 03588668 n 0102 -u 03608356 n 0102 -u 03612134 n 0104 -u 03612134 n 0103 -u 03612134 n 0102 -u 03612378 n 0102 -u 03612559 n 0103 -u 03612559 n 0102 -u 03617834 n 0000 -u 03654086 n 0102 -u 03658373 n 0102 -u 03662016 n 0000 -u 03670622 n 0102 -u 03677308 n 0103 -u 03677308 n 0102 -u 03690005 n 0102 -u 03693089 n 0102 -u 03694490 n 0102 -u 03718056 n 0102 -u 03739136 n 0103 -u 03739327 n 0103 -u 03743577 n 0102 -u 03747103 n 0103 -u 03747281 n 0102 -u 03747508 n 0102 -u 03747746 n 0104 -u 03747746 n 0103 -u 03747746 n 0102 -u 03748456 n 0102 -u 03752649 n 0102 -u 03753657 n 0102 -u 03754822 n 0102 -u 03754979 n 0102 -u 03755140 n 0103 -u 03755140 n 0102 -u 03755545 n 0102 -u 03755991 n 0103 -u 03756624 n 0102 -u 03757428 n 0102 -u 03757925 n 0102 -u 03758720 n 0102 -u 03761845 n 0102 -u 03762809 n 0102 -u 03771066 n 0102 -u 03774673 n 0102 -u 03774842 n 0102 -u 03780896 n 0102 -u 03804048 n 0102 -u 03804311 n 0102 -u 03806381 n 0102 -u 03807052 n 0103 -u 03807052 n 0102 -u 03807895 n 0102 -u 03817062 n 0102 -u 03818090 n 0103 -u 03818843 n 0102 -u 03824014 n 0102 -u 03826443 n 0102 -u 03830582 n 0102 -u 03837157 n 0103 -u 03837157 n 0102 -u 03856148 n 0102 -u 03867515 n 0102 -u 03867675 n 0102 -u 03869044 n 0102 -u 03869222 n 0102 -u 03886237 n 0102 -u 03891851 n 0102 -u 03909835 n 0102 -u 03911251 n 0102 -u 03912328 n 0102 -u 03912664 n 0102 -u 03913129 n 0103 -u 03913437 n 0102 -u 03918297 n 0102 -u 03921337 n 0102 -u 03921749 n 0102 -u 03922412 n 0102 -u 03922561 n 0102 -u 03922722 n 0102 -u 03942244 n 0102 -u 03946532 n 0102 -u 03948041 n 0102 -u 03971771 n 0102 -u 03976268 n 0000 -u 03976467 n 0102 -u 03976467 n 0101 -u 03979847 n 0102 -u 03997980 n 0102 -u 03998525 n 0102 -u 04002931 n 0102 -u 04006727 n 0102 -u 04006953 n 0103 -u 04007510 n 0102 -u 04010348 n 0102 -u 04011409 n 0102 -u 04012852 n 0103 -u 04034641 n 0104 -u 04034884 n 0103 -u 04034884 n 0102 -u 04051068 n 0102 -u 04053995 n 0102 -u 04078236 n 0105 -u 04078236 n 0104 -u 04078236 n 0103 -u 04078236 n 0102 -u 04087524 n 0102 -u 04090064 n 0103 -u 04090064 n 0102 -u 04100994 n 0102 -u 04135315 n 0103 -u 04135710 n 0103 -u 04163740 n 0103 -u 04174853 n 0102 -u 04218383 n 0103 -u 04221994 n 0102 -u 04349701 n 0102 -u 04351776 n 0102 -u 04353016 n 0102 -u 04353410 n 0102 -u 04383537 n 0102 -u 04387932 n 0000 -u 04407007 n 0102 -u 04412550 n 0102 -u 04412727 n 0102 -u 04416530 n 0102 -u 04419315 n 0104 -u 04419315 n 0103 -u 04419315 n 0102 -u 04424003 n 0103 -u 04424936 n 0104 -u 04425262 n 0102 -u 04425656 n 0102 -u 04438742 n 0102 -u 04441282 n 0102 -u 04443588 n 0102 -u 04443918 n 0102 -u 04448511 n 0102 -u 04448826 n 0102 -u 04449796 n 0102 -u 04470037 n 0102 -u 04476633 n 0103 -u 04480625 n 0102 -u 04481373 n 0102 -u 04518854 n 0102 -u 04520618 n 0102 -u 04527808 n 0103 -u 04527808 n 0102 -u 04535634 n 0102 -u 04535826 n 0102 -u 04545471 n 0103 -u 04545471 n 0102 -u 04551205 n 0102 -u 04613939 n 0101 -u 05408388 n 0104 -u 05411049 n 0102 -u 05411571 n 0102 -u 05414147 n 0104 ~ 06851516 n 0000 -u 14605132 n 0105 -u 14605132 n 0104 -u 14605132 n 0103 -u 14713748 n 0102 -u 14746048 n 0102 -u 14746417 n 0104 -u 14747168 n 0102 -u 14748335 n 0103 -u 14748335 n 0102 -u 14750782 n 0104 -u 14752702 n 0104 -u 14752702 n 0103 -u 14752952 n 0102 -u 14753188 n 0103 -u 14753188 n 0102 -u 14753414 n 0105 -u 14753414 n 0104 -u 14753414 n 0103 -u 14753414 n 0102 -u 14753808 n 0106 -u 14753808 n 0105 -u 14753808 n 0104 -u 14753808 n 0103 -u 14753808 n 0102 -u 14754192 n 0102 -u 14777277 n 0102 -u 14777606 n 0102 -u 14838217 n 0103 -u 14838217 n 0102 -u 14859622 n 0102 -u 14861042 n 0000 -u 14886579 n 0106 -u 14886579 n 0105 -u 14910165 n 0103 -u 14928885 n 0102 -u 15017121 n 0102 -u 15042542 n 0000 -u 15071684 n 0106 -u 15078768 n 0104 -u 15078768 n 0103 -u 15078768 n 0102 | a name given to a product or service -06851516 10 n 02 label 2 recording_label 0 001 @ 06845599 n 0000 | trade name of a company that produces musical recordings; "the artists and repertoire department of a recording label is responsible for finding new talent" -06851742 10 n 01 trademark 0 167 @ 07270179 n 0000 -u 00499263 n 0102 -u 00502161 n 0000 -u 00505238 n 0000 -u 00505615 n 0000 -u 02109256 n 0000 -u 02668093 n 0103 -u 02674482 n 0107 -u 02674482 n 0106 -u 02674482 n 0105 -u 02674482 n 0104 -u 02674482 n 0103 -u 02674482 n 0102 -u 02678528 n 0102 -u 02695321 n 0103 -u 02695321 n 0102 -u 02696384 n 0102 -u 02698036 n 0102 -u 02702304 n 0102 -u 02702575 n 0103 -u 02705651 n 0104 -u 02705651 n 0103 -u 02705651 n 0102 -u 02706373 n 0102 -u 02711890 n 0103 -u 02731629 n 0102 -u 02747915 n 0102 -u 02748618 n 0105 -u 02748618 n 0104 -u 02748618 n 0103 -u 02754421 n 0102 -u 02765247 n 0102 -u 02765868 n 0102 -u 02786058 n 0000 -u 02830596 n 0101 -c 02911890 n 0102 -u 02926044 n 0102 -u 02930214 n 0102 -u 02930214 n 0101 -u 02958002 n 0102 -u 02983507 n 0101 -u 02992795 n 0103 -u 02992795 n 0102 -u 03073296 n 0000 -u 03121190 n 0000 -u 03133878 n 0000 -u 03158414 n 0102 -u 03158414 n 0101 -u 03256032 n 0000 -u 03268142 n 0000 -u 03385295 n 0000 -u 03397947 n 0000 -u 03496486 n 0000 -u 03534776 n 0000 -u 03549199 n 0000 -u 03559531 n 0102 -u 03559531 n 0101 -u 03584254 n 0000 -u 03584400 n 0000 -u 03594523 n 0000 -u 03644698 n 0000 -u 03655295 n 0102 -u 03655295 n 0101 -u 03660124 n 0101 -u 03668803 n 0000 -u 03674731 n 0000 -u 03675235 n 0102 -u 03675235 n 0101 -u 03680355 n 0000 -u 03695857 n 0000 -u 03725506 n 0000 -u 03736809 n 0102 -u 03736809 n 0101 -u 03753826 n 0102 -u 03767459 n 0105 -u 03767459 n 0104 -u 03777568 n 0000 -u 03808144 n 0104 -u 03808144 n 0103 -u 03808144 n 0102 -u 03855756 n 0000 -u 03869389 n 0104 -u 03923564 n 0000 -u 03927299 n 0102 -u 03927299 n 0101 -u 04102162 n 0000 -u 04104147 n 0000 -u 04168199 n 0103 -u 04168199 n 0102 -u 04168199 n 0101 ~ 04185529 n 0000 -u 04189816 n 0000 -u 04219185 n 0000 -u 04231905 n 0000 -u 04250599 n 0000 -u 04282992 n 0000 -u 04302988 n 0000 -u 04403524 n 0000 -u 04419315 n 0104 -u 04419315 n 0103 -u 04419315 n 0102 -u 04506895 n 0000 -u 04522309 n 0000 -u 04524594 n 0000 -u 04533499 n 0000 -u 04539407 n 0000 -u 04546340 n 0000 -u 04570214 n 0000 -u 04573379 n 0101 -u 04584056 n 0102 -u 04584056 n 0101 -u 04585980 n 0000 -u 06568855 n 0000 -u 06578527 n 0101 -u 06578905 n 0101 -u 06579127 n 0000 -u 06579294 n 0000 -u 06581823 n 0000 -u 06639204 n 0102 -u 06639204 n 0101 ~ 07272084 n 0000 -u 07573347 n 0000 -u 07607492 n 0000 -u 07613815 n 0102 -u 07632679 n 0000 -u 07703053 n 0000 -u 07853946 n 0000 -u 07909593 n 0000 -u 07910656 n 0101 -u 10510078 n 0000 -u 14592217 n 0000 -u 14592405 n 0000 -u 14594032 n 0102 -u 14594032 n 0101 -u 14594174 n 0101 -u 14595933 n 0000 -u 14596216 n 0000 -u 14596398 n 0101 -u 14596599 n 0000 -u 14703458 n 0000 -u 14708531 n 0101 -u 14776924 n 0000 -u 14777104 n 0000 -u 14777188 n 0000 -u 14777441 n 0000 -u 14777523 n 0000 -u 14777768 n 0000 -u 14777856 n 0000 -u 14777939 n 0000 -u 14793223 n 0000 -u 14799476 n 0000 -u 14810854 n 0102 -u 14813957 n 0000 -u 14815628 n 0000 -u 14839322 n 0000 -u 14874731 n 0000 -u 14916369 n 0000 -u 14921414 n 0000 -u 14928008 n 0000 -u 14928332 n 0000 -u 14944617 n 0102 -u 14944617 n 0101 -u 14946082 n 0000 -u 14952654 n 0000 -u 14961896 n 0000 -u 14999614 n 0000 -u 15057212 n 0101 | a formally registered symbol identifying the manufacturer or distributor of a product -06855035 10 n 03 authentication 0 hallmark 0 assay-mark 0 002 @ 07270179 n 0000 + 00664276 v 0101 | a mark on an article of trade to indicate its origin and authenticity -06855207 10 n 02 stamp 0 impression 0 005 @ 06806469 n 0000 + 01531265 v 0103 + 01273016 v 0101 ~ 06855432 n 0000 ~ 06855985 n 0000 | a symbol that is the result of printing or engraving; "he put his stamp on the envelope" -06855432 10 n 02 imprint 0 embossment 0 002 @ 06855207 n 0000 + 01531742 v 0102 | an impression produced by pressure or printing -06855563 10 n 01 imprint 1 001 @ 06885083 n 0000 | an identification of a publisher; a publisher's name along with the date and address and edition that is printed at the bottom of the title page; "the book was published under a distinguished imprint" -06855817 10 n 02 revenue_stamp 0 stamp 2 001 @ 06255777 n 0000 | a small piece of adhesive paper that is put on an object to show that a government tax has been paid -06855985 10 n 01 seal 1 003 @ 06855207 n 0000 + 01356582 v 0101 + 01353405 v 0101 | a stamp affixed to a document (as to attest to its authenticity or to seal it); "the warrant bore the sheriff's seal" -06856189 10 n 02 phylactery 0 tefillin 0 002 @ 06506757 n 0000 ;c 06232880 n 0000 | (Judaism) either of two small leather cases containing texts from the Hebrew Scriptures (known collectively as tefillin); traditionally worn (on the forehead and the left arm) by Jewish men during morning prayer -06856487 10 n 01 white_feather 0 001 @ 05765415 n 0000 | a symbol of cowardice -06856568 10 n 02 scale 0 musical_scale 0 009 @ 06814870 n 0000 ;c 07020895 n 0000 + 03134979 a 0101 + 03141756 a 0101 ~ 06857487 n 0000 ~ 06860323 n 0000 ~ 06861196 n 0000 ~ 06861315 n 0000 %m 06865345 n 0000 | (music) a series of notes differing in pitch according to a specific scheme (usually within an octave) -06856884 10 n 03 flourish 3 fanfare 1 tucket 0 002 @ 07028373 n 0000 ;c 07020895 n 0000 | (music) a short lively tune played on brass instruments; "he entered to a flourish of trumpets"; "her arrival was greeted with a rousing fanfare" -06857122 10 n 01 glissando 0 002 @ 07028373 n 0000 ~ 06857264 n 0000 | a rapid series of ascending or descending notes on the musical scale -06857264 10 n 02 swoop 0 slide 0 004 @ 06857122 n 0000 ;c 07020895 n 0000 + 02090990 v 0201 + 02064759 v 0101 | (music) rapid sliding up or down the musical scale; "the violinist was indulgent with his swoops and slides" -06857487 10 n 01 gamut 0 002 @ 06856568 n 0000 ;c 07020895 n 0000 | the entire scale of musical notes -06857591 10 n 01 roulade 0 002 @ 07028373 n 0000 ;c 07020895 n 0000 | (music) an elaborate run of several notes sung to one syllable -06857726 10 n 02 tonic 0 keynote 0 003 @ 06865345 n 0000 ;c 07020895 n 0000 ~ 06866332 n 0000 | (music) the first note of a diatonic scale -06857867 10 n 01 supertonic 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the second note of a diatonic scale -06857986 10 n 01 mediant 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the third note of a diatonic scale; midway between the tonic and the dominant -06858144 10 n 01 subdominant 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the fourth note of the diatonic scale -06858266 10 n 01 dominant 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the fifth note of the diatonic scale -06858384 10 n 01 submediant 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the sixth note of a major or minor scale (or the third below the tonic) -06858539 10 n 02 subtonic 0 leading_tone 0 002 @ 06865345 n 0000 ;c 07020895 n 0000 | (music) the seventh note of the diatonic scale -06858674 10 n 02 pedal_point 0 pedal 0 002 @ 06865345 n 0000 + 01728052 v 0201 | a sustained bass note -06858779 10 n 02 interval 0 musical_interval 0 010 @ 06814870 n 0000 ~ 06859056 n 0000 ~ 06859175 n 0000 ~ 06859309 n 0000 ~ 06859401 n 0000 ~ 06859504 n 0000 ~ 06859674 n 0000 ~ 06859800 n 0000 ~ 06859925 n 0000 ~ 06860049 n 0000 | the difference in pitch between two notes -06859056 10 n 04 tone 0 whole_tone 0 step 0 whole_step 0 001 @ 06858779 n 0000 | a musical interval of two semitones -06859175 10 n 02 semitone 0 half_step 0 001 @ 06858779 n 0000 | the musical interval between adjacent keys on a keyboard instrument -06859309 10 n 02 quarter_tone 0 quarter-tone 0 001 @ 06858779 n 0000 | half of a semitone -06859401 10 n 02 octave 0 musical_octave 0 001 @ 06858779 n 0000 | a musical interval of eight tones -06859504 10 n 01 third 0 001 @ 06858779 n 0000 | the musical interval between one note and another three notes away from it; "a simple harmony written in major thirds" -06859674 10 n 01 fourth 0 001 @ 06858779 n 0000 | the musical interval between one note and another four notes away from it -06859800 10 n 01 fifth 0 001 @ 06858779 n 0000 | the musical interval between one note and another five notes away from it -06859925 10 n 01 sixth 0 001 @ 06858779 n 0000 | the musical interval between one note and another six notes away from it -06860049 10 n 01 seventh 0 001 @ 06858779 n 0000 | the musical interval between one note and another seven notes away from it -06860177 10 n 02 trill 0 shake 1 002 @ 06865345 n 0000 + 01050896 v 0102 | a note that alternates rapidly with another note a semitone above it -06860323 10 n 01 diatonic_scale 0 002 @ 06856568 n 0000 ~ 06861630 n 0000 | a scale with eight notes in an octave; all but two are separated by whole tones -06860481 10 n 04 ecclesiastical_mode 0 Gregorian_mode 0 church_mode 0 medieval_mode 0 001 @ 06861630 n 0000 | any of a system of modes used in Gregorian chants up until 1600; derived historically from the Greek mode -06860699 10 n 01 Greek_mode 0 001 @ 06861630 n 0000 | any of the descending diatonic scales in the music of classical Greece -06860826 10 n 02 major_scale 0 major_diatonic_scale 0 002 @ 06861630 n 0000 ~ 06866442 n 0000 | a diatonic scale with notes separated by whole tones except for the 3rd and 4th and 7th and 8th -06861020 10 n 02 minor_scale 0 minor_diatonic_scale 0 001 @ 06861630 n 0000 | a diatonic scale with notes separated by whole tones except for the 2nd and 3rd and 5th and 6th -06861196 10 n 01 chromatic_scale 0 001 @ 06856568 n 0000 | a 12-note scale including all the semitones of the octave -06861315 10 n 01 gapped_scale 0 002 @ 06856568 n 0000 ~ 06861435 n 0000 | a musical scale with fewer than seven notes -06861435 10 n 02 pentatonic_scale 0 pentatone 0 002 @ 06861315 n 0000 + 02938485 a 0201 | a gapped scale with five notes; usually the fourth and seventh notes of the diatonic scale are omitted -06861630 10 n 02 mode 0 musical_mode 0 006 @ 06860323 n 0000 + 02864551 a 0101 ~ 06860481 n 0000 ~ 06860699 n 0000 ~ 06860826 n 0000 ~ 06861020 n 0000 | any of various fixed orders of the various diatonic notes within an octave -06861860 10 n 02 staff 0 stave 0 004 @ 06814870 n 0000 ;c 07020895 n 0000 %p 06862059 n 0000 %p 06862202 n 0000 | (music) the system of five horizontal lines on which the musical notes are written -06862059 10 n 01 staff_line 0 003 @ 06799897 n 0000 #p 06814870 n 0000 #p 06861860 n 0000 | any of the 5 horizontal marks comprising a staff -06862202 10 n 01 space 2 003 @ 05128519 n 0000 #p 06814870 n 0000 #p 06861860 n 0000 | one of the areas between or below or above the lines of a musical staff; "the spaces are the notes F-A-C-E" -06862399 10 n 02 ledger_line 0 leger_line 0 002 @ 06799897 n 0000 #p 06814870 n 0000 | a short line; a notation for extending the range above or below the staff -06862562 10 n 01 clef 0 007 @ 06814870 n 0000 ~ 06862805 n 0000 ~ 06862954 n 0000 ~ 06863086 n 0000 ~ 06863209 n 0000 ~ 06863326 n 0000 ~ 06863442 n 0000 | a musical notation written on a staff indicating the pitch of the notes following it -06862805 10 n 03 treble_clef 0 treble_staff 0 G_clef 0 001 @ 06862562 n 0000 | a clef that puts the G above middle C on the second line of a staff -06862954 10 n 02 bass_clef 0 F_clef 0 001 @ 06862562 n 0000 | a clef that puts the F below middle C on the fourth line of a staff -06863086 10 n 02 alto_clef 0 viola_clef 0 001 @ 06862562 n 0000 | a clef that puts middle C on the third line of a staff -06863209 10 n 01 C_clef 0 001 @ 06862562 n 0000 | a movable clef that puts middle C on one of the lines of a staff -06863326 10 n 01 soprano_clef 0 001 @ 06862562 n 0000 | a clef that puts middle C on the bottom line of the staff -06863442 10 n 01 tenor_clef 0 001 @ 06862562 n 0000 | a clef that puts middle C on the fourth line of the staff; used for writing music for bassoons or cellos or tenor horns -06863618 10 n 02 key_signature 0 signature 2 001 @ 06814870 n 0000 | the sharps or flats that follow the clef and indicate the key -06863751 10 n 02 key 0 tonality 0 007 @ 06814870 n 0000 + 02437148 a 0201 ! 06864014 n 0201 + 00483656 v 0101 ~ 06864192 n 0000 ~ 06864308 n 0000 ~ 06864407 n 0000 | any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music -06864014 10 n 02 atonality 0 atonalism 0 004 @ 06814870 n 0000 + 02647236 a 0201 + 02438188 a 0101 ! 06863751 n 0102 | the absence of a key; alternative to the diatonic system -06864192 10 n 02 major_key 0 major_mode 0 001 @ 06863751 n 0000 | a key whose harmony is based on the major scale -06864308 10 n 02 minor_key 0 minor_mode 0 001 @ 06863751 n 0000 | a key based on the minor scale -06864407 10 n 02 tonic_key 0 home_key 0 001 @ 06863751 n 0000 | the basic key in which a piece of music is written -06864524 10 n 02 time_signature 0 musical_time_signature 0 002 @ 06814870 n 0000 ~ 06865049 n 0000 | a musical notation indicating the number of beats to a measure and kind of note that takes a beat -06864725 10 n 02 measure 0 bar 0 001 @ 06814870 n 0000 | musical notation for a repeating pattern of musical beats; "the orchestra omitted the last twelve bars of the song" -06864900 10 n 01 double_bar 0 001 @ 06800698 n 0000 | notation marking the end of principal parts of a musical composition; two adjacent bar lines -06865049 10 n 01 alla_breve 0 001 @ 06864524 n 0000 | a musical time signature indicating two or four half notes to a measure -06865177 10 n 01 rest 0 004 @ 06814870 n 0000 ~ 06870726 n 0000 ~ 06870965 n 0000 ~ 06871262 n 0000 | a musical notation indicating a silence of a specified duration -06865345 10 n 03 note 4 musical_note 0 tone 2 025 @ 06814870 n 0000 #m 06856568 n 0000 + 02438043 a 0301 ~ 06857726 n 0000 ~ 06857867 n 0000 ~ 06857986 n 0000 ~ 06858144 n 0000 ~ 06858266 n 0000 ~ 06858384 n 0000 ~ 06858539 n 0000 ~ 06858674 n 0000 ~ 06860177 n 0000 ~ 06869815 n 0000 ~ 06869951 n 0000 ~ 06870437 n 0000 ~ 06870576 n 0000 ~ 06870844 n 0000 ~ 06871127 n 0000 ~ 06871384 n 0000 ~ 06871534 n 0000 ~ 06871675 n 0000 ~ 06871828 n 0000 ~ 06871983 n 0000 ~ 07051517 n 0000 ~ 07084747 n 0000 | a notation representing the pitch and duration of a musical sound; "the singer held the note too long" -06865953 10 n 01 slur 1 004 @ 06814870 n 0000 ;c 07020895 n 0000 + 01727866 v 0101 ~ 06866124 n 0000 | (music) a curved line spanning notes that are to be played legato -06866124 10 n 01 tie 0 003 @ 06865953 n 0000 ;c 07020895 n 0000 + 01355411 v 0101 | (music) a slur over two notes of the same pitch; indicates that the note is to be sustained for their combined time value -06866332 10 n 01 C 2 002 @ 06857726 n 0000 ;c 07020895 n 0000 | (music) the keynote of the scale of C major -06866442 10 n 03 C_major 0 C_major_scale 0 scale_of_C_major 0 002 @ 06860826 n 0000 ;c 07020895 n 0000 | (music) the major scale having no sharps or flats -06866599 10 n 01 sharp 0 003 @ 06814870 n 0000 + 01577973 a 0101 ~ 06866757 n 0000 | a musical notation indicating one half step higher than the note named -06866757 10 n 01 double_sharp 0 001 @ 06866599 n 0000 | a musical notation of two sharps in front of a note indicating that it is to be raised by two semitones -06866919 10 n 01 flat 0 002 @ 06814870 n 0000 ~ 06867057 n 0000 | a musical notation indicating one half step lower than the note named -06867057 10 n 01 double_flat 0 001 @ 06866919 n 0000 | a musical notation of two flats in front of a note indicating that it is to be lowered by two semitones -06867218 10 n 02 natural 0 cancel 0 002 @ 06814870 n 0000 + 02477334 v 0201 | a notation cancelling a previous sharp or flat -06867345 10 n 01 accidental 0 001 @ 06814870 n 0000 | a musical notation that makes a note sharp or flat or natural although that is not part of the key signature -06867510 10 n 01 fermata 0 001 @ 06814870 n 0000 | a musical notation (over a note or chord or rest) that indicates it is to be prolonged by an unspecified amount -06867675 10 n 02 solmization 0 solmisation 0 004 @ 06814870 n 0000 + 01731353 v 0101 + 01730384 v 0101 ~ 06867880 n 0000 | a system of naming the notes of a musical scale by syllables instead of letters -06867880 10 n 02 tonic_solfa 0 solfa 0 002 @ 06867675 n 0000 %p 06868043 n 0000 | a system of solmization using the solfa syllables: do, re, mi, fa, sol, la, ti -06868043 10 n 01 solfa_syllable 0 009 @ 06304671 n 0000 #p 06867880 n 0000 ~ 06868309 n 0000 ~ 06868445 n 0000 ~ 06868582 n 0000 ~ 06868709 n 0000 ~ 06868844 n 0000 ~ 06868986 n 0000 ~ 06869129 n 0000 | one of the names for notes of a musical scale in solmization -06868309 10 n 03 do 0 doh 0 ut 0 001 @ 06868043 n 0000 | the syllable naming the first (tonic) note of any major scale in solmization -06868445 10 n 02 re 0 ray 0 001 @ 06868043 n 0000 | the syllable naming the second (supertonic) note of any major scale in solmization -06868582 10 n 01 mi 0 001 @ 06868043 n 0000 | the syllable naming the third (mediant) note of any major scale in solmization -06868709 10 n 01 fa 0 001 @ 06868043 n 0000 | the syllable naming the fourth (subdominant) note of the diatonic scale in solmization -06868844 10 n 03 sol 0 soh 0 so 0 001 @ 06868043 n 0000 | the syllable naming the fifth (dominant) note of any musical scale in solmization -06868986 10 n 02 la 0 lah 0 001 @ 06868043 n 0000 | the syllable naming the sixth (submediant) note of a major or minor scale in solmization -06869129 10 n 03 ti 0 te 0 si 0 001 @ 06868043 n 0000 | the syllable naming the seventh (subtonic) note of any musical scale in solmization -06869271 10 n 01 segno 0 002 @ 06814870 n 0000 ;c 07020895 n 0000 | (music) a notation written at the beginning or end of a passage that is to be repeated -06869428 10 n 01 sforzando 0 002 @ 06814870 n 0000 ;c 07020895 n 0000 | (music) a notation written above a note and indicating that it is to be played with a strong initial attack -06869610 10 n 01 arpeggio 0 001 @ 06869951 n 0000 | a chord whose notes are played in rapid succession rather than simultaneously -06869742 10 n 01 sforzando 1 001 @ 06869951 n 0000 | an accented chord -06869815 10 n 01 middle_C 0 001 @ 06865345 n 0000 | the note designated by the first ledger line below the treble staff; 261.63 hertz -06869951 10 n 01 chord 0 008 @ 06865345 n 0000 + 02695765 a 0101 + 01727354 v 0101 + 00482180 v 0103 ~ 06869610 n 0000 ~ 06869742 n 0000 ~ 06870211 n 0000 ~ 06870349 n 0000 | a combination of three or more notes that blend harmoniously when sounded together -06870211 10 n 02 common_chord 0 triad 0 001 @ 06869951 n 0000 | a three-note major or minor chord; a note and its third and fifth tones -06870349 10 n 01 seventh_chord 0 001 @ 06869951 n 0000 | a triad with a seventh added -06870437 10 n 02 passing_note 0 passing_tone 0 001 @ 06865345 n 0000 | a nonharmonic note inserted for transition between harmonic notes -06870576 10 n 02 whole_note 0 semibreve 0 001 @ 06865345 n 0000 | a musical note having the longest time value (equal to four beats in common time) -06870726 10 n 01 whole_rest 0 001 @ 06865177 n 0000 | a musical rest equal in duration to four beats in common time -06870844 10 n 02 half_note 0 minim 0 001 @ 06865345 n 0000 | a musical note having the time value of half a whole note -06870965 10 n 01 half_rest 0 001 @ 06865177 n 0000 | a musical rest having the time value of half a whole rest or equal in duration to two beats in common time -06871127 10 n 02 quarter_note 0 crotchet 0 001 @ 06865345 n 0000 | a musical note having the time value of a quarter of a whole note -06871262 10 n 01 quarter_rest 0 001 @ 06865177 n 0000 | a musical rest having one-fourth the time value of a whole rest -06871384 10 n 02 eighth_note 0 quaver 0 002 @ 06865345 n 0000 + 01050896 v 0203 | a musical note having the time value of an eighth of a whole note -06871534 10 n 02 sixteenth_note 0 semiquaver 0 001 @ 06865345 n 0000 | a musical note having the time value of a sixteenth of a whole note -06871675 10 n 02 thirty-second_note 0 demisemiquaver 0 001 @ 06865345 n 0000 | a musical note having the time value of a thirty-second of a whole note -06871828 10 n 02 sixty-fourth_note 0 hemidemisemiquaver 0 001 @ 06865345 n 0000 | a musical note having the time value of a sixty-fourth of a whole note -06871983 10 n 03 grace_note 0 appoggiatura 0 acciaccatura 0 001 @ 06865345 n 0000 | an embellishing note usually written in smaller size -06872122 10 n 01 singing_voice 0 008 @ 07110615 n 0000 ~ 06872354 n 0000 ~ 06872562 n 0000 ~ 06872676 n 0000 ~ 06872785 n 0000 ~ 06872905 n 0000 ~ 06873017 n 0000 ~ 06873139 n 0000 | the musical quality of the voice while singing -06872354 10 n 03 bass 0 bass_voice 0 basso 0 002 @ 06872122 n 0000 ~ 06872479 n 0000 | the lowest adult male singing voice -06872479 10 n 01 basso_profundo 0 001 @ 06872354 n 0000 | a very deep bass voice -06872562 10 n 02 baritone 0 baritone_voice 0 001 @ 06872122 n 0000 | the second lowest adult male singing voice -06872676 10 n 02 tenor 0 tenor_voice 0 001 @ 06872122 n 0000 | the adult male singing voice above baritone -06872785 10 n 02 countertenor 0 alto 1 002 @ 06872122 n 0000 + 01213961 a 0202 | the highest adult male singing voice -06872905 10 n 02 contralto 0 alto 0 002 @ 06872122 n 0000 + 01215663 a 0201 | the lowest female singing voice -06873017 10 n 02 mezzo-soprano 0 mezzo 0 001 @ 06872122 n 0000 | the female singing voice between contralto and soprano -06873139 10 n 01 soprano 0 001 @ 06872122 n 0000 | the highest female voice; the voice of a boy before puberty -06873252 10 n 01 visual_communication 0 013 @ 00033020 n 0000 ~ 06277803 n 0000 ~ 06277992 n 0000 %p 06873571 n 0000 ~ 06876309 n 0000 ~ 06876892 n 0000 ~ 06879180 n 0000 ~ 06879766 n 0000 ~ 06887599 n 0000 ~ 06998748 n 0000 ~ 06999045 n 0000 ~ 06999802 n 0000 ~ 07000195 n 0000 | communication that relies on vision -06873571 10 n 01 visual_signal 0 015 @ 06791372 n 0000 #p 06873252 n 0000 ~ 06873927 n 0000 ~ 06874019 n 0000 ~ 06874571 n 0000 ~ 06874930 n 0000 ~ 06875094 n 0000 ~ 07257582 n 0000 ~ 07257815 n 0000 ~ 07262704 n 0000 ~ 07262942 n 0000 ~ 07263053 n 0000 ~ 07264213 n 0000 ~ 07265990 n 0000 ~ 07267067 n 0000 | a signal that involves visual communication -06873927 10 n 01 watch_fire 0 001 @ 06873571 n 0000 | a fire lighted at night as a signal -06874019 10 n 01 light 0 002 @ 06873571 n 0000 ~ 06874185 n 0000 | a visual warning signal; "they saw the light of the beacon"; "there was a light at every corner" -06874185 10 n 03 traffic_light 0 traffic_signal 0 stoplight 0 004 @ 06874019 n 0000 ~ 06874391 n 0000 ~ 06874497 n 0000 ~ 06874837 n 0000 | a visual signal to control the flow of traffic at intersections -06874391 10 n 02 green_light 0 go-ahead 0 002 @ 06874185 n 0000 + 00781303 v 0201 | a signal to proceed -06874497 10 n 01 red_light 0 001 @ 06874185 n 0000 | the signal to stop -06874571 10 n 02 red_light 1 warning_light 0 002 @ 06873571 n 0000 ~ 06874688 n 0000 | a cautionary sign of danger -06874688 10 n 01 idiot_light 0 002 @ 06874571 n 0000 #p 03098140 n 0000 | a colored warning light on an instrument panel (as for low oil pressure) -06874837 10 n 01 yellow_light 0 001 @ 06874185 n 0000 | the signal to proceed with caution -06874930 10 n 02 flare 0 flash 1 004 @ 06873571 n 0000 ~ 07264384 n 0000 ~ 07264484 n 0000 ~ 07264615 n 0000 | a burst of light used to communicate or illuminate -06875094 10 n 02 flag 0 signal_flag 0 005 @ 06873571 n 0000 + 01040550 v 0101 ~ 06875288 n 0000 ~ 06875392 n 0000 ~ 07265619 n 0000 | a rectangular piece of fabric used as a signalling device -06875288 10 n 01 pennant 0 001 @ 06875094 n 0000 | a flag longer than it is wide (and often tapering) -06875392 10 n 02 code_flag 0 nautical_signal_flag 0 002 @ 06875094 n 0000 ~ 06875552 n 0000 | one of an international code of flag signals used between ships -06875552 10 n 01 blue_peter 0 001 @ 06875392 n 0000 | a blue flag with a white square in the center indicates that the vessel is ready to sail -06875697 10 n 02 sign_language 0 signing 0 005 @ 06282651 n 0000 + 01039330 v 0201 ~ 06875883 n 0000 ~ 06876007 n 0000 %p 06876144 n 0000 | language expressed by visible hand gestures -06875883 10 n 02 finger_spelling 0 fingerspelling 0 002 @ 06875697 n 0000 + 00741702 v 0201 | an alphabet of manual signs -06876007 10 n 02 ASL 0 American_sign_language 0 002 @ 06875697 n 0000 %p 06500765 n 0000 | the sign language used in the United States -06876144 10 n 01 sign 1 005 @ 06876309 n 0000 #p 06875697 n 0000 + 00929160 v 0101 + 01039330 v 0101 + 00932324 v 0101 | a gesture that is part of a sign language -06876309 10 n 02 gesture 0 motion 0 018 @ 06873252 n 0000 + 00992041 v 0203 + 00992041 v 0102 + 00992041 v 0101 ~ 06876144 n 0000 ~ 06876771 n 0000 ~ 06877008 n 0000 ~ 06877078 n 0000 ~ 06890470 n 0000 ~ 07015242 n 0000 ~ 07163803 n 0000 ~ 07273924 n 0000 ~ 07274027 n 0000 ~ 07274197 n 0000 ~ 07274316 n 0000 ~ 07274425 n 0000 ~ 07274730 n 0000 ~ 07274890 n 0000 | the use of movements (especially of the hands) to communicate familiar or prearranged signals -06876771 10 n 01 gesticulation 0 002 @ 06876309 n 0000 + 00992041 v 0101 | a deliberate and vigorous gesture or motion -06876892 10 n 01 body_language 0 001 @ 06873252 n 0000 | communication via the movements or attitudes of the body -06877008 10 n 01 beck 0 001 @ 06876309 n 0000 | a beckoning gesture -06877078 10 n 02 facial_expression 0 facial_gesture 0 011 @ 06876309 n 0000 ~ 06279939 n 0000 ~ 06877381 n 0000 ~ 06877578 n 0000 ~ 06877849 n 0000 ~ 06878071 n 0000 ~ 06878404 n 0000 ~ 06878706 n 0000 ~ 06878803 n 0000 ~ 06878934 n 0000 ~ 06879056 n 0000 | a gesture executed with the facial muscles -06877381 10 n 01 gape 0 003 @ 06877078 n 0000 + 02164531 v 0102 ~ 06877509 n 0000 | an expression of openmouthed astonishment -06877509 10 n 01 rictus 0 001 @ 06877381 n 0000 | a gaping grimace -06877578 10 n 02 grimace 0 face 1 003 @ 06877078 n 0000 + 00034288 v 0101 ~ 06877742 n 0000 | a contorted facial expression; "she made a grimace at the prospect" -06877742 10 n 03 pout 0 moue 0 wry_face 0 002 @ 06877578 n 0000 + 00034758 v 0101 | a disdainful grimace -06877849 10 n 02 frown 0 scowl 0 003 @ 06877078 n 0000 + 00033852 v 0201 + 00032981 v 0101 | a facial expression of dislike or displeasure -06877990 10 n 01 simper 0 001 @ 06878071 n 0000 | a silly self-conscious smile -06878071 10 n 04 smile 0 smiling 0 grin 0 grinning 0 009 @ 06877078 n 0000 + 00029025 v 0401 + 00029025 v 0301 + 00363031 a 0202 + 00028565 v 0201 + 01067512 v 0101 + 00028565 v 0101 ~ 06877990 n 0000 ~ 06878580 n 0000 | a facial expression characterized by turning up the corners of the mouth; usually shows pleasure or amusement -06878404 10 n 01 laugh 2 002 @ 06877078 n 0000 + 00031820 v 0101 | a facial expression characteristic of a person laughing; "his face wrinkled in a silent laugh of derision" -06878580 10 n 01 smirk 0 002 @ 06878071 n 0000 + 00029336 v 0101 | a smile expressing smugness or scorn instead of pleasure -06878706 10 n 01 snarl 1 002 @ 06877078 n 0000 + 00916274 v 0102 | an angry vicious expression -06878803 10 n 01 straight_face 0 001 @ 06877078 n 0000 | a serious facial expression giving no evidence of interest or amusement -06878934 10 n 01 wink 0 003 @ 06877078 n 0000 + 00008299 v 0101 + 00008435 v 0101 | closing one eye quickly as a signal -06879056 10 n 01 wince 0 003 @ 06877078 n 0000 + 02061069 v 0106 + 00008977 v 0101 | the facial expression of sudden pain -06879180 10 n 02 demonstration 0 demo 0 006 @ 06873252 n 0000 + 02148788 v 0202 + 02148788 v 0105 ~ 06879521 n 0000 ~ 06880249 n 0000 ~ 06880533 n 0000 | a visual presentation showing how something works; "the lecture was accompanied by dramatic demonstrations"; "the lecturer shot off a pistol as a demonstration of the startle response" -06879521 10 n 02 display 1 show 3 003 @ 06879180 n 0000 ~ 06880013 n 0000 ~ 06880134 n 0000 | something intended to communicate a particular impression; "made a display of strength"; "a show of impatience"; "a good show of looking interested" -06879766 10 n 01 eye_contact 0 001 @ 06873252 n 0000 | a meeting of the eyes between two people that expresses meaningful nonverbal communication; "it was a mere glance, but the eye contact was enough to tell her that he was desperate to leave" -06880013 10 n 01 big_stick 0 001 @ 06879521 n 0000 | a display of force or power; "speak softly but carry a big stick" -06880134 10 n 02 gaudery 0 pomp 0 002 @ 06879521 n 0000 + 01849960 a 0203 | cheap or pretentious or vain display -06880249 10 n 04 expression 2 manifestation 1 reflection 1 reflexion 1 005 @ 06879180 n 0000 + 00820976 v 0203 ~ 01072236 n 0000 ~ 07014029 n 0000 ~ 07014320 n 0000 | expression without words; "tears are an expression of grief"; "the pulse is a reflection of the heart's condition" -06880533 10 n 02 exemplification 0 illustration 1 003 @ 06879180 n 0000 + 01021128 v 0202 + 01021128 v 0101 | showing by example -06880664 10 n 02 emblem 0 allegory 2 026 @ 05765415 n 0000 + 01981916 a 0201 + 00624263 v 0201 + 00135285 v 0201 + 00624263 v 0202 + 00135285 v 0202 + 02469119 a 0101 + 01982186 a 0101 + 01982186 a 0102 ~ 06839737 n 0000 ~ 06881224 n 0000 ~ 06881360 n 0000 ~ 06881494 n 0000 ~ 06881563 n 0000 ~ 06881662 n 0000 ~ 06881798 n 0000 ~ 06882009 n 0000 ~ 06882138 n 0000 ~ 06882244 n 0000 ~ 06882333 n 0000 ~ 06882561 n 0000 ~ 06883274 n 0000 ~ 06883383 n 0000 ~ 06883460 n 0000 ~ 06883565 n 0000 ~ 06883725 n 0000 | a visible symbol representing an abstract idea -06881224 10 n 01 cupid 0 001 @ 06880664 n 0000 | a symbol for love in the form of a cherubic naked boy with wings and a bow and arrow -06881360 10 n 01 donkey 0 001 @ 06880664 n 0000 | the symbol of the Democratic Party; introduced in cartoons by Thomas Nast in 1874 -06881494 10 n 01 dove 0 001 @ 06880664 n 0000 | an emblem of peace -06881563 10 n 01 eagle 0 001 @ 06880664 n 0000 | an emblem representing power; "the Roman eagle" -06881662 10 n 01 elephant 0 001 @ 06880664 n 0000 | the symbol of the Republican Party; introduced in cartoons by Thomas Nast in 1874 -06881798 10 n 01 fasces 0 001 @ 06880664 n 0000 | bundle of rods containing an axe with the blade protruding; in ancient Rome it was a symbol of a magistrate's power; in modern Italy it is a symbol of fascism -06882009 10 n 02 national_flag 0 ensign 1 002 @ 06880664 n 0000 @ 03354903 n 0000 | an emblem flown as a symbol of nationality -06882138 10 n 01 hammer_and_sickle 0 001 @ 06880664 n 0000 | the emblem on the flag of the Soviet Union -06882244 10 n 01 red_flag 1 001 @ 06880664 n 0000 | the emblem of socialist revolution -06882333 10 n 05 Star_of_David 0 Shield_of_David 0 Magen_David 0 Mogen_David 0 Solomon's_seal 0 002 @ 06880664 n 0000 @ 13880811 n 0000 | a six-pointed star formed from two equilateral triangles; an emblem symbolizing Judaism -06882561 10 n 01 badge 0 010 @ 06880664 n 0000 + 01589869 v 0101 ~ 06882953 n 0000 ~ 06883073 n 0000 ~ 06887278 n 0000 ~ 07268166 n 0000 ~ 07268302 n 0000 ~ 07268413 n 0000 ~ 07269552 n 0000 ~ 07269758 n 0000 | an emblem (a small piece of plastic or cloth or metal) that signifies your status (rank or membership or affiliation etc.); "they checked everyone's badge before letting them in" -06882953 10 n 01 merit_badge 0 001 @ 06882561 n 0000 | a badge award to Boy Scouts in recognition of special projects -06883073 10 n 01 insignia 0 007 @ 06882561 n 0000 ~ 06884520 n 0000 ~ 06884670 n 0000 ~ 06884790 n 0000 ~ 06884954 n 0000 ~ 07267931 n 0000 ~ 07268035 n 0000 | a badge worn to show official position -06883274 10 n 02 Agnus_Dei 0 Paschal_Lamb 0 001 @ 06880664 n 0000 | figure of a lamb; emblematic of Christ -06883383 10 n 01 maple-leaf 0 001 @ 06880664 n 0000 | the emblem of Canada -06883460 10 n 01 medallion 1 001 @ 06880664 n 0000 | an emblem indicating that a taxicab is registered -06883565 10 n 01 spread_eagle 0 001 @ 06880664 n 0000 | an emblem (an eagle with wings and legs spread) on the obverse of the Great Seal of the United States -06883725 10 n 02 swastika 0 Hakenkreuz 0 003 @ 06880664 n 0000 @ 04416901 n 0000 ;r 08766988 n 0000 | the official emblem of the Nazi Party and the Third Reich; a cross with the arms bent at right angles in a clockwise direction -06883956 10 n 01 mantle 0 001 @ 06806469 n 0000 | the cloak as a symbol of authority; "place the mantle of authority on younger shoulders" -06884097 10 n 01 Crown 1 004 @ 06806469 n 0000 + 02390949 v 0101 + 02390949 v 0102 ~i 06884337 n 0000 | the Crown (or the reigning monarch) as the symbol of the power and authority of a monarchy; "the colonies revolted against the Crown" -06884337 10 n 01 British_Crown 0 001 @i 06884097 n 0000 | the symbol of the power of the British monarchy; "members of the British Commonwealth owe allegiance to the British Crown" -06884520 10 n 01 caduceus 0 002 @ 06883073 n 0000 + 02673345 a 0101 | an insignia used by the medical profession; modeled after the staff of Hermes -06884670 10 n 01 insignia_of_rank 0 002 @ 06883073 n 0000 ;c 08199025 n 0000 | an insignia worn on a military uniform -06884790 10 n 01 shoulder_flash 0 002 @ 06883073 n 0000 ;r 08860123 n 0000 | something worn on the shoulder of a military uniform as an emblem of a division etc. -06884954 10 n 03 service_stripe 0 hashmark 0 hash_mark 0 001 @ 06883073 n 0000 | an insignia worn to indicate years of service -06885083 10 n 01 identification 1 011 @ 06643408 n 0000 + 01026095 v 0102 ~ 06423994 n 0000 ~ 06424275 n 0000 ~ 06855563 n 0000 ~ 06885389 n 0000 ~ 06885906 n 0000 ~ 06886273 n 0000 ~ 06886488 n 0000 ~ 06886655 n 0000 ~ 06886818 n 0000 | evidence of identity; something that identifies a person or thing -06885389 10 n 01 positive_identification 0 010 @ 06885083 n 0000 ~ 06424869 n 0000 ~ 06425065 n 0000 ~ 06477371 n 0000 ~ 06674188 n 0000 ~ 06887055 n 0000 ~ 06887278 n 0000 ~ 13376012 n 0000 ~ 13376764 n 0000 ~ 13377003 n 0000 | evidence proving that you are who you say you are; evidence establishing that you are among the group of people already known to the system; recognition by the system leads to acceptance; "a system for positive identification can prevent the use of a single identity by several people" -06885906 10 n 01 negative_identification 0 001 @ 06885083 n 0000 | evidence proving that you are not who you say you are not; evidence establishing that you are not among a group of people already known to the system; recognition by the system leads to rejection; "a system for negative identification can prevent the use of multiple identities by a single person" -06886273 10 n 01 facial_profiling 0 002 @ 06885083 n 0000 ;c 00759694 n 0000 | identification of criminals and terrorist by means of videotapes of their faces; "facial profiling is a new form of airport security" -06886488 10 n 01 fingerprint 0 001 @ 06885083 n 0000 | a generic term for any identifying characteristic; "that tax bill had the senator's fingerprints all over it" -06886655 10 n 01 linguistic_profiling 0 001 @ 06885083 n 0000 | using speech characteristics or dialect to identify a speaker's race or religion or social class -06886818 10 n 01 profiling 0 001 @ 06885083 n 0000 | recording a person's behavior and analyzing psychological characteristics in order to predict or assess their ability in a certain sphere or to identify a particular group of people -06887055 10 n 01 green_card 0 001 @ 06885389 n 0000 | a card that identifies the bearer as an alien with permanent resident status in the United States; "he was surprised to discover that green cards are no longer green" -06887278 10 n 02 ID 0 I.D. 0 002 @ 06882561 n 0000 @ 06885389 n 0000 | a card or badge used to identify the bearer; "you had to show your ID in order to get in" -06887441 10 n 03 personal_identification_number 0 PIN 0 PIN_number 0 001 @ 06425065 n 0000 | a number you choose and use to gain access to various accounts -06887599 10 n 01 projection 0 002 @ 06873252 n 0000 + 02138075 v 0101 | the projection of an image from a film onto a screen -06887726 10 n 01 display 0 008 @ 00033020 n 0000 ~ 06887962 n 0000 ~ 06888174 n 0000 ~ 06888345 n 0000 ~ 06888944 n 0000 ~ 06889330 n 0000 ~ 06890846 n 0000 ~ 06891022 n 0000 | exhibiting openly in public view; "a display of courage" -06887962 10 n 01 acting_out 1 002 @ 06887726 n 0000 ;c 06055946 n 0000 | (psychiatry) the display of previously inhibited emotions (often in actions rather than words); considered to be healthy and therapeutic -06888174 10 n 01 array 0 001 @ 06887726 n 0000 | an impressive display; "it was a bewildering array of books"; "his tools were in an orderly array on the basement wall" -06888345 10 n 03 screening 0 showing 1 viewing 0 004 @ 06887726 n 0000 + 02148788 v 0201 + 02139883 v 0101 ~ 06888506 n 0000 | the display of a motion picture -06888506 10 n 01 preview 0 003 @ 06888345 n 0000 + 02151816 v 0101 ~ 06888848 n 0000 | a screening for a select audience in advance of release for the general public -06888674 10 n 03 preview 1 prevue 0 trailer 0 001 @ 07248801 n 0000 | an advertisement consisting of short scenes from a motion picture that will appear in the near future -06888848 10 n 01 sneak_preview 0 001 @ 06888506 n 0000 | a preview to test audience reactions -06888944 10 n 01 sight 0 003 @ 06887726 n 0000 + 02163746 v 0102 ~ 06889138 n 0000 | anything that is seen; "he was a familiar sight on the television"; "they went to Paris to see the sights" -06889138 10 n 01 spectacle 0 002 @ 06888944 n 0000 + 00580805 a 0104 | something or someone seen (especially a notable or unusual sight); "the tragic spectacle of cripples trying to escape" -06889330 10 n 03 ostentation 0 fanfare 0 flash 2 010 @ 06887726 n 0000 + 02393791 a 0303 + 00407420 a 0301 + 01848355 a 0101 + 02141973 v 0104 ~ 06889591 n 0000 ~ 06889701 n 0000 ~ 06889875 n 0000 ~ 06890000 n 0000 ~ 06890128 n 0000 | a gaudy outward display -06889591 10 n 02 bravado 0 bluster 0 002 @ 06889330 n 0000 + 00883226 v 0208 | a swaggering show of courage -06889701 10 n 01 exhibitionism 1 003 @ 06889330 n 0000 + 02090823 a 0101 + 10070711 n 0101 | extravagant and conspicuous behavior intended to attract attention to yourself -06889875 10 n 01 ritz 0 002 @ 06889330 n 0000 + 00850875 a 0101 | ostentatious display of elegance; "they put on the ritz" -06890000 10 n 01 splurge 0 002 @ 06889330 n 0000 + 02142413 v 0101 | an ostentatious display (of effort or extravagance etc.) -06890128 10 n 01 pedantry 0 002 @ 06889330 n 0000 + 02083908 a 0103 | an ostentatious and inappropriate display of learning -06890254 10 n 02 flourish 0 brandish 0 003 @ 07274027 n 0000 + 01446901 v 0201 + 01446901 v 0102 | the act of waving -06890373 10 n 01 flourish 1 001 @ 07070429 n 0000 | a display of ornamental speech or language -06890470 10 n 01 flourish 2 001 @ 06876309 n 0000 | a showy gesture; "she entered with a great flourish" -06890577 10 n 01 flourish 4 002 @ 03282401 n 0000 ~ 06890688 n 0000 | an ornamental embellishment in writing -06890688 10 n 01 paraph 0 002 @ 06890577 n 0000 #p 06404582 n 0000 | a flourish added after or under your signature (originally to protect against forgery) -06890846 10 n 01 flaunt 0 003 @ 06887726 n 0000 + 01848611 a 0101 + 02141973 v 0101 | the act of displaying something ostentatiously; "his behavior was an outrageous flaunt" -06891022 10 n 01 presentation 0 006 @ 06887726 n 0000 + 02148788 v 0104 + 00989602 v 0102 + 00772967 v 0101 ~ 06891339 n 0000 ~ 07006951 n 0000 | the act of making something publicly available; presenting news or other information by broadcasting or printing it; "he prepared his presentation carefully in advance" -06891339 10 n 01 unveiling 0 002 @ 06891022 n 0000 + 01483655 v 0101 | putting on display for the first time; "he attended the unveiling of the statue" -06891493 10 n 02 performance 0 public_presentation 0 015 @ 06619065 n 0000 + 01714208 v 0101 ~ 06892016 n 0000 ~ 06892534 n 0000 ~ 06892775 n 0000 ~ 06893065 n 0000 ~ 06893183 n 0000 ~ 06893285 n 0000 ~ 06893441 n 0000 ~ 06893565 n 0000 ~ 06893772 n 0000 ~ 06893885 n 0000 ~ 06894243 n 0000 ~ 06894371 n 0000 %p 07039478 n 0000 | a dramatic or musical entertainment; "they listened to ten different performances"; "the play ran for 100 performances"; "the frequent performances of the symphony testify to its popularity" -06892016 10 n 05 act 2 routine 1 number 4 turn 0 bit 0 005 @ 06891493 n 0000 + 02744977 v 0101 + 01719921 v 0101 + 01719302 v 0101 ~ 06892358 n 0000 | a short theatrical performance that is part of a longer program; "he did his act three times every evening"; "she had a catchy little routine"; "it was one of the best numbers he ever did" -06892358 10 n 03 show-stopper 0 showstopper 0 stopper 0 001 @ 06892016 n 0000 | an act so striking or impressive that the show must be delayed until the audience quiets down -06892534 10 n 01 benefit 0 002 @ 06891493 n 0000 ~ 06892657 n 0000 | a performance to raise money for a charitable cause -06892657 10 n 01 benefit_concert 0 001 @ 06892534 n 0000 | a concert given for the benefit of some charitable cause -06892775 10 n 01 concert 0 005 @ 06891493 n 0000 + 01716407 v 0101 + 01716407 v 0102 -c 00897026 n 0000 ~ 06892979 n 0000 | a performance of music by players or singers not involving theatrical staging -06892979 10 n 01 rock_concert 0 001 @ 06892775 n 0000 | a performance of rock music -06893065 10 n 01 pianism 0 001 @ 06891493 n 0000 | performance by or technique of a pianist; "a program of pianism" -06893183 10 n 01 play_reading 0 001 @ 06891493 n 0000 | performance of a play by a group of readers -06893285 10 n 01 premiere 0 004 @ 06891493 n 0000 + 01012855 a 0102 + 01718185 v 0102 + 01718331 v 0102 | the first public performance of a play or movie -06893441 10 n 01 recital 3 002 @ 06891493 n 0000 + 10511649 n 0101 | performance of music or dance especially by soloists -06893565 10 n 02 rendition 0 rendering 1 002 @ 06891493 n 0000 + 01732172 v 0202 | a performance of a musical composition or a dramatic role etc.; "they heard a live rendition of three pieces by Schubert" -06893772 10 n 01 song_and_dance 1 001 @ 06891493 n 0000 | theatrical performance combining singing and dancing -06893885 10 n 04 theatrical_performance 0 theatrical 0 representation 1 histrionics 0 006 @ 06891493 n 0000 + 00796337 a 0401 + 01711445 v 0303 + 01719302 v 0303 + 00796047 a 0201 ~ 06894111 n 0000 | a performance of a play -06894111 10 n 01 matinee 0 001 @ 06893885 n 0000 | a theatrical performance held during the daytime (especially in the afternoon) -06894243 10 n 01 spectacular 0 001 @ 06891493 n 0000 | a lavishly produced performance; "they put on a Christmas spectacular" -06894371 10 n 01 world_premiere 0 002 @ 06891493 n 0000 ;c 07020895 n 0000 | (music) the first public performance (as of a dramatic or musical work) anywhere in the world -06894544 10 n 01 artificial_language 0 029 @ 06282651 n 0000 ! 06904171 n 0101 ~ 06895176 n 0000 ~ 06895266 n 0000 ~ 06895396 n 0000 ~ 06895601 n 0000 ~ 06895684 n 0000 ~ 06895791 n 0000 ~ 06895940 n 0000 ~ 06896059 n 0000 ~ 06896304 n 0000 ~ 06896500 n 0000 ~ 06896623 n 0000 ~ 06896716 n 0000 ~ 06896961 n 0000 ~ 06897042 n 0000 ~ 06897129 n 0000 ~ 06897205 n 0000 ~ 06897306 n 0000 ~ 06897381 n 0000 ~ 06897474 n 0000 ~ 06897553 n 0000 ~ 06897627 n 0000 ~ 06897797 n 0000 ~ 06897976 n 0000 ~ 06898052 n 0000 ~ 06898129 n 0000 ~ 06898352 n 0000 ~ 06905680 n 0000 | a language that is deliberately created for a specific purpose -06895176 10 n 01 Antido 0 001 @ 06894544 n 0000 | an artificial language related to Ido -06895266 10 n 01 Arulo 0 001 @ 06894544 n 0000 | an artificial language intended for international use as an auxiliary language -06895396 10 n 01 Basic_English 0 001 @ 06894544 n 0000 | a simplified form of English proposed for use as an auxiliary language for international communication; devised by C. K. Ogden and I. A. Richards -06895601 10 n 01 Blaia_Zimondal 0 001 @ 06894544 n 0000 | an artificial language -06895684 10 n 01 Esperantido 0 001 @ 06894544 n 0000 | an artificial language based on Esperanto and Ido -06895791 10 n 01 Esperanto 0 001 @ 06894544 n 0000 | an artificial language based as far as possible on words common to all the European languages -06895940 10 n 01 Europan 0 001 @ 06894544 n 0000 | an artificial language proposed as an auxiliary European language -06896059 10 n 01 Idiom_Neutral 0 001 @ 06894544 n 0000 | an artificial language proposed for use as an auxiliary international language; based on Volapuk but with a vocabulary selected on the basis of the maximum internationality of the roots -06896304 10 n 01 Interlingua 0 001 @ 06894544 n 0000 | an artificial language proposed for use as an auxiliary international language; based on words common to English and the Romance languages -06896500 10 n 01 Ido 0 001 @ 06894544 n 0000 | an artificial language that is a revision and simplification of Esperanto -06896623 10 n 01 Latinesce 0 001 @ 06894544 n 0000 | an artificial language based on Latin -06896716 10 n 01 Latino 0 002 @ 06894544 n 0000 ~ 06896856 n 0000 | an artificial language based on words common to the Romance languages -06896856 10 n 01 Latino_sine_flexione 0 001 @ 06896716 n 0000 | Latino without inflectional morphology -06896961 10 n 01 Lingualumina 0 001 @ 06894544 n 0000 | an artificial language -06897042 10 n 01 Lingvo_Kosmopolita 0 001 @ 06894544 n 0000 | an artificial language -06897129 10 n 01 Monario 0 001 @ 06894544 n 0000 | an artificial language -06897205 10 n 01 Nov-Esperanto 0 001 @ 06894544 n 0000 | an artificial language based on Esperanto -06897306 10 n 01 Novial 0 001 @ 06894544 n 0000 | an artificial language -06897381 10 n 01 Nov-Latin 0 001 @ 06894544 n 0000 | an artificial language based on Latin -06897474 10 n 01 Occidental 0 001 @ 06894544 n 0000 | an artificial language -06897553 10 n 01 Optez 0 001 @ 06894544 n 0000 | an artificial language -06897627 10 n 01 Pasigraphy 0 001 @ 06894544 n 0000 | an artificial international language using characters (as mathematical symbols) instead of words to express ideas -06897797 10 n 01 Ro 0 001 @ 06894544 n 0000 | an artificial language for international use that rejects all existing words and is based instead on an abstract analysis of ideas -06897976 10 n 01 Romanal 0 001 @ 06894544 n 0000 | an artificial language -06898052 10 n 01 Solresol 0 001 @ 06894544 n 0000 | an artificial language -06898129 10 n 01 Volapuk 0 001 @ 06894544 n 0000 | one of the first artificial language constructed for use as an auxiliary international language; based largely on English but with some German and French and Latin roots -06898352 10 n 02 programming_language 0 programing_language 0 017 @ 06894544 n 0000 ;c 06128570 n 0000 ~ 06898972 n 0000 ~ 06899310 n 0000 ~ 06899633 n 0000 ~ 06900282 n 0000 ~ 06900507 n 0000 ~ 06900684 n 0000 ~ 06901163 n 0000 ~ 06901333 n 0000 ~ 06901591 n 0000 ~ 06901936 n 0000 ~ 06902193 n 0000 ~ 06902611 n 0000 ~ 06902696 n 0000 ~ 06902909 n 0000 ~ 06903115 n 0000 | (computer science) a language designed for programming computers -06898794 10 n 01 algebraic_language 0 003 @ 06898972 n 0000 ~ 06901764 n 0000 ~ 06902362 n 0000 | an algorithmic language having statements that resemble algebraic expressions -06898972 10 n 01 algorithmic_language 0 002 @ 06898352 n 0000 ~ 06898794 n 0000 | an artificial language designed to express algorithms -06899110 10 n 02 application-oriented_language 0 problem-oriented_language 0 003 @ 06283912 n 0000 ~ 06899845 n 0000 ~ 06900005 n 0000 | a language whose statements resemble terminology of the user -06899310 10 n 01 assembly_language 0 001 @ 06898352 n 0000 | a low-level programing language; close approximation to machine language -06899446 10 n 03 command_language 0 query_language 0 search_language 0 001 @ 06283912 n 0000 | a source language consisting of procedural operators that invoke functions to be executed -06899633 10 n 04 computer_language 0 computer-oriented_language 0 machine_language 2 machine-oriented_language 0 001 @ 06898352 n 0000 | a programming language designed for use on a specific class of computers -06899845 10 n 01 high-level_language 0 001 @ 06899110 n 0000 | a problem-oriented language requiring little knowledge of the computer on which it will be run -06900005 10 n 01 job-control_language 0 001 @ 06899110 n 0000 | a problem-oriented language used to describe job requirements to an operating system -06900156 10 n 01 metalanguage 0 002 @ 06282651 n 0000 ~ 06901471 n 0000 | a language that can be used to describe languages -06900282 10 n 01 multidimensional_language 0 005 @ 06898352 n 0000 ! 06901163 n 0101 ~ 06581959 n 0000 ~ 06582085 n 0000 ~ 06582267 n 0000 | a programming language whose expressions are assembled in more than one dimension -06900507 10 n 02 object_language 2 target_language 2 001 @ 06898352 n 0000 | a computer language into which something written in another computer language is to be translated -06900684 10 n 02 object-oriented_programming_language 0 object-oriented_programing_language 0 003 @ 06898352 n 0000 ;c 06128570 n 0000 ~ 06901053 n 0000 | (computer science) a programming language that enables the programmer to associate a set of procedures with each type of data structure; "C++ is an object-oriented programming language that is an extension of C" -06901053 10 n 01 Java 0 001 @ 06900684 n 0000 | a platform-independent object-oriented programming language -06901163 10 n 01 one-dimensional_language 0 002 @ 06898352 n 0000 ! 06900282 n 0101 | a programming language whose expressions are represented by strings of characters -06901333 10 n 01 stratified_language 0 002 @ 06898352 n 0000 ! 06901591 n 0101 | a language that cannot be used as its own metalanguage -06901471 10 n 01 syntax_language 0 001 @ 06900156 n 0000 | a language used to describe the syntax of another language -06901591 10 n 01 unstratified_language 0 002 @ 06898352 n 0000 ! 06901333 n 0101 | a programming language that (like natural language) can be used as its own metalanguage -06901764 10 n 01 ALGOL 0 001 @ 06898794 n 0000 | (from a combination of ALGOrithmic and Language); a programming language used to express computer programs as algorithms -06901936 10 n 02 LISP 0 list-processing_language 0 001 @ 06898352 n 0000 | a flexible procedure-oriented programing language that manipulates symbols in the form of lists -06902109 10 n 01 LISP_program 0 001 @ 06568978 n 0000 | a program written in LISP -06902193 10 n 03 Prolog 0 logic_programing 0 logic_programming 0 001 @ 06898352 n 0000 | a computer language designed in Europe to support natural language processing -06902362 10 n 01 FORTRAN 0 001 @ 06898794 n 0000 | a high-level programing language for mathematical and scientific purposes; stands for formula translation -06902521 10 n 01 FORTRAN_program 0 001 @ 06568978 n 0000 | a program written in FORTRAN -06902611 10 n 01 COBOL 0 001 @ 06898352 n 0000 | common business-oriented language -06902696 10 n 01 C 1 001 @ 06898352 n 0000 | a general-purpose programing language closely associated with the UNIX operating system -06902831 10 n 01 C_program 0 001 @ 06568978 n 0000 | a program written in C -06902909 10 n 01 BASIC 0 001 @ 06898352 n 0000 | a popular programming language that is relatively easy to learn; an acronym for beginner's all-purpose symbolic instruction code; no longer in general use -06903115 10 n 01 Pascal 0 001 @ 06898352 n 0000 | a programing language designed to teach programming through a top-down modular approach -06903255 10 n 01 upgrade 0 002 @ 06566077 n 0000 + 00207184 v 0101 | software that provides better performance than an earlier version did -06903396 10 n 01 native_language 0 001 @ 06282651 n 0000 | the language that a person has spoken from earliest childhood -06903519 10 n 01 indigenous_language 0 002 @ 06282651 n 0000 ~ 06903699 n 0000 | a language that originated in a specified place and was not brought to that place from elsewhere -06903699 10 n 02 substrate 0 substratum 0 001 @ 06903519 n 0000 | an indigenous language that contributes features to the language of an invading people who impose their language on the indigenous population; "the Celtic languages of Britain are a substrate for English" -06903972 10 n 02 superstrate 0 superstratum 0 001 @ 06282651 n 0000 | the language of a later invading people that is imposed on an indigenous population and contributes features to their language -06904171 10 n 02 natural_language 0 tongue 0 024 @ 06282651 n 0000 ! 06894544 n 0101 ~ 06904748 n 0000 ~ 06904943 n 0000 ~ 06905358 n 0000 ~ 06906439 n 0000 ~ 06918042 n 0000 ~ 06928234 n 0000 ~ 06930934 n 0000 ~ 06936620 n 0000 ~ 06937098 n 0000 ~ 06937531 n 0000 ~ 06941115 n 0000 ~ 06941341 n 0000 ~ 06941644 n 0000 ~ 06955931 n 0000 ~ 06966695 n 0000 ~ 06968454 n 0000 ~ 06968601 n 0000 ~ 06978180 n 0000 ~ 06979014 n 0000 ~ 06986558 n 0000 ~ 06991277 n 0000 ~ 06997697 n 0000 | a human written or spoken language used by a community; opposed to e.g. a computer language -06904748 10 n 03 mother_tongue 0 maternal_language 0 first_language 0 001 @ 06904171 n 0000 | one's native language; the language learned by children and passed from one generation to the next -06904943 10 n 02 tone_language 0 tonal_language 0 004 @ 06904171 n 0000 ~ 06905141 n 0000 ~ 06905243 n 0000 %p 07113732 n 0000 | a language in which different tones distinguish different meanings -06905141 10 n 01 contour_language 0 001 @ 06904943 n 0000 | a tone language that uses pitch changes -06905243 10 n 01 register_language 0 001 @ 06904943 n 0000 | a tone language that uses different voice registers -06905358 10 n 01 creole 0 003 @ 06904171 n 0000 + 00116365 v 0101 ~ 06905513 n 0000 | a mother tongue that originates from contact between two languages -06905513 10 n 01 Haitian_Creole 0 002 @ 06905358 n 0000 @ 06963951 n 0000 | a creole language spoken by most Haitians; based on French and various African languages -06905680 10 n 01 pidgin 0 002 @ 06894544 n 0000 ~ 06905828 n 0000 | an artificial language used for trade between speakers of different languages -06905828 10 n 02 Chinook_Jargon 0 Oregon_Jargon 0 001 @ 06905680 n 0000 | a pidgin incorporating Chinook and French and English words; formerly used as a lingua franca in northwestern North America -06906028 10 n 01 Sango 0 001 @ 06991764 n 0000 | a trade language widely used in Chad -06906116 10 n 03 lingua_franca 0 interlanguage 0 koine 1 001 @ 06282651 n 0000 | a common language used by speakers of different languages; "Koine is a dialect of ancient Greek that was the lingua franca of the empire of Alexander the Great and was widely spoken throughout the eastern Mediterranean area in Roman times" -06906439 10 n 05 Amerind 0 Amerindian_language 0 American-Indian_language 0 American_Indian 0 Indian 0 021 @ 06904171 n 0000 + 02928066 a 0102 ~ 06906971 n 0000 ~ 06907567 n 0000 ~ 06907728 n 0000 ~ 06913313 n 0000 ~ 06913635 n 0000 ~ 06913768 n 0000 ~ 06915601 n 0000 ~ 06916803 n 0000 ~ 06917083 n 0000 ~ 06917392 n 0000 ~ 06917602 n 0000 ~ 06917764 n 0000 ~ 06917926 n 0000 ~ 06918396 n 0000 ~ 06919215 n 0000 ~ 06920129 n 0000 ~ 06920497 n 0000 ~ 06920756 n 0000 ~ 06923880 n 0000 | any of the languages spoken by Amerindians -06906971 10 n 03 Algonquian 0 Algonquin 0 Algonquian_language 0 023 @ 06906439 n 0000 + 02611442 a 0203 ~ 06908048 n 0000 ~ 06908159 n 0000 ~ 06908291 n 0000 ~ 06908494 n 0000 ~ 06908700 n 0000 ~ 06909298 n 0000 ~ 06909571 n 0000 ~ 06909848 n 0000 ~ 06910134 n 0000 ~ 06910423 n 0000 ~ 06910517 n 0000 ~ 06910639 n 0000 ~ 06910755 n 0000 ~ 06910868 n 0000 ~ 06910958 n 0000 ~ 06911067 n 0000 ~ 06911366 n 0000 ~ 06911666 n 0000 ~ 06911857 n 0000 ~ 06911962 n 0000 ~ 06912149 n 0000 | family of North American Indian languages spoken from Labrador to South Carolina and west to the Great Plains -06907567 10 n 04 Atakapa 0 Atakapan 0 Attacapa 0 Attacapan 0 001 @ 06906439 n 0000 | a language spoken by the Atakapa of the Gulf Coast of Louisiana and Texas -06907728 10 n 05 Athapaskan 0 Athapascan 0 Athabaskan 0 Athabascan 0 Athapaskan_language 0 007 @ 06906439 n 0000 ;r 09044862 n 0000 ~ 06919433 n 0000 ~ 06919712 n 0000 ~ 06919818 n 0000 ~ 06919911 n 0000 ~ 06920010 n 0000 | a group of Amerindian languages (the name coined by an American anthropologist, Edward Sapir) -06908048 10 n 01 Abnaki 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Abnaki and Penobscot -06908159 10 n 02 Algonkian 0 Algonkin 0 002 @ 06906971 n 0000 + 02611442 a 0102 | the Algonquian language spoken by the Algonkian -06908291 10 n 02 Arapaho 0 Arapahoe 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Arapaho -06908401 10 n 01 Biloxi 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Biloxi -06908494 10 n 01 Blackfoot 0 001 @ 06906971 n 0000 | any of the Algonquian languages spoken by the Blackfoot -06908605 10 n 01 Catawba 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Catawba -06908700 10 n 01 Cheyenne 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Cheyenne -06908801 10 n 01 Chiwere 0 004 @ 06920129 n 0000 ~ 06908968 n 0000 ~ 06909079 n 0000 ~ 06909190 n 0000 | the Siouan language spoken by the Iowa and Oto and Missouri -06908968 10 n 02 Iowa 0 Ioway 0 001 @ 06908801 n 0000 | a dialect of the Chiwere language spoken by the Iowa -06909079 10 n 01 Missouri 0 001 @ 06908801 n 0000 | a dialect of the Chiwere language spoken by the Missouri -06909190 10 n 02 Oto 0 Otoe 0 001 @ 06908801 n 0000 | a dialect of the Chiwere language spoken by the Oto -06909298 10 n 01 Cree 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Cree -06909391 10 n 01 Crow 1 001 @ 06920129 n 0000 | a Siouan language spoken by the Crow -06909478 10 n 01 Dakota 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Dakota -06909571 10 n 01 Delaware 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Delaware -06909672 10 n 01 Dhegiha 0 006 @ 06920129 n 0000 ~ 06910323 n 0000 ~ 06911484 n 0000 ~ 06911575 n 0000 ~ 06911758 n 0000 ~ 06912056 n 0000 | a branch of the Siouan languages -06909848 10 n 01 Fox 0 001 @ 06906971 n 0000 | the Algonquian language of the Fox -06909932 10 n 02 Hidatsa 0 Gros_Ventre 0 001 @ 06920129 n 0000 | a Siouan language spoken by the Hidatsa -06910039 10 n 01 Hunkpapa 0 001 @ 06920129 n 0000 | a Siouan language spoken by the Hunkpapa -06910134 10 n 01 Illinois 0 001 @ 06906971 n 0000 | the Algonquian language of the Illinois and Miami -06910238 10 n 01 Haida 0 001 @ 06913635 n 0000 | the Na-Dene language of the Haida -06910323 10 n 02 Kansa 0 Kansas 0 001 @ 06909672 n 0000 | the Dhegiha dialect spoken by the Kansa -06910423 10 n 01 Kickapoo 0 001 @ 06906971 n 0000 | the Algonquian language of the Kickapoo -06910517 10 n 02 Malecite 0 Maleseet 0 001 @ 06906971 n 0000 | the Algonquian language of the Malecite and Passamaquody -06910639 10 n 02 Massachuset 0 Massachusetts 0 001 @ 06906971 n 0000 | the Algonquian language of the Massachuset -06910755 10 n 02 Menomini 0 Menominee 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Menomini -06910868 10 n 01 Micmac 0 001 @ 06906971 n 0000 | the Algonquian language of the Micmac -06910958 10 n 02 Mohican 0 Mahican 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Mohican -06911067 10 n 01 Nanticoke 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Nanticoke and Conoy -06911180 10 n 01 Ofo 0 001 @ 06920129 n 0000 | a Siouan language spoken by the Ofo -06911265 10 n 02 Oglala 0 Ogalala 0 001 @ 06920129 n 0000 | a Siouan language spoken by the Oglala -06911366 10 n 03 Ojibwa 0 Ojibway 0 Chippewa 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Ojibwa -06911484 10 n 01 Omaha 0 001 @ 06909672 n 0000 | the Dhegiha dialect spoken by the Omaha -06911575 10 n 01 Osage 0 001 @ 06909672 n 0000 | the Dhegiha dialect spoken by the Osage -06911666 10 n 01 Pamlico 0 001 @ 06906971 n 0000 | the Algonquian language of the Pamlico -06911758 10 n 02 Ponca 0 Ponka 0 001 @ 06909672 n 0000 | the Dhegiha dialect spoken by the Ponca -06911857 10 n 01 Potawatomi 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Potawatomi -06911962 10 n 01 Powhatan 0 001 @ 06906971 n 0000 | the Algonquian language of the Powhatan -06912056 10 n 01 Quapaw 0 001 @ 06909672 n 0000 | the Dhegiha dialect spoken by the Quapaw -06912149 10 n 01 Shawnee 0 001 @ 06906971 n 0000 | the Algonquian language spoken by the Shawnee -06912248 10 n 01 Alabama 0 001 @ 06913313 n 0000 | the Muskhogean language of the Alabama -06912340 10 n 01 Chickasaw 0 001 @ 06913313 n 0000 | the Muskhogean language of the Chickasaw -06912436 10 n 02 Choctaw 0 Chahta 0 001 @ 06913313 n 0000 | the Muskhogean language of the Choctaw -06912537 10 n 01 Hitchiti 0 001 @ 06913313 n 0000 | the Muskhogean language spoken by the Hitchiti -06912638 10 n 01 Koasati 0 001 @ 06913313 n 0000 | the Muskhogean language spoken by the Koasati -06912737 10 n 01 Muskogee 0 001 @ 06913313 n 0000 | the Muskhogean language spoken by the Muskogee -06912838 10 n 01 Santee 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Santee -06912931 10 n 01 Seminole 0 001 @ 06913313 n 0000 | the Muskhogean language of the Seminole -06913025 10 n 01 Tlingit 0 001 @ 06913635 n 0000 | the Na-Dene language spoken by the Tlingit -06913121 10 n 01 Tutelo 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Tutelo -06913214 10 n 01 Winnebago 0 001 @ 06920129 n 0000 | the Siouan language spoken by the Winnebago -06913313 10 n 04 Muskhogean 0 Muskhogean_language 0 Muskogean 0 Muskogean_language 0 008 @ 06906439 n 0000 ~ 06912248 n 0000 ~ 06912340 n 0000 ~ 06912436 n 0000 ~ 06912537 n 0000 ~ 06912638 n 0000 ~ 06912737 n 0000 ~ 06912931 n 0000 | a family of North American Indian languages spoken in the southeastern United States -06913635 10 n 01 Na-Dene 0 003 @ 06906439 n 0000 ~ 06910238 n 0000 ~ 06913025 n 0000 | a family of North American Indian languages -06913768 10 n 01 Mosan 0 004 @ 06906439 n 0000 ~ 06913948 n 0000 ~ 06914167 n 0000 ~ 06914423 n 0000 | a family of Amerindian languages spoken in Washington and British Columbia -06913948 10 n 01 Chemakuan 0 002 @ 06913768 n 0000 ~ 06914069 n 0000 | a group of Mosan languages spoken in Washington -06914069 10 n 01 Chemakum 0 001 @ 06913948 n 0000 | a Chemakuan language spoken by the Chemakum -06914167 10 n 02 Salish 0 Salishan 0 002 @ 06913768 n 0000 ~ 06914331 n 0000 | a family of Mosan language spoken in northwestern United States and western Canada -06914331 10 n 01 Skagit 0 001 @ 06914167 n 0000 | a Salishan dialect spoken by the Skagit -06914423 10 n 02 Wakashan 0 Wakashan_language 0 003 @ 06913768 n 0000 ~ 06914612 n 0000 ~ 06914709 n 0000 | a family of North American Indian languages of British Columbia and Washington -06914612 10 n 01 Kwakiutl 0 001 @ 06914423 n 0000 | a Wakashan language spoken by the Kwakiutl -06914709 10 n 01 Nootka 0 001 @ 06914423 n 0000 | a Wakashan language spoken by the Nootka -06914802 10 n 01 Shoshone 0 001 @ 06915313 n 0000 | the language spoken by the Shoshone (belonging to the Uto-Aztecan family) -06914930 10 n 01 Comanche 0 001 @ 06915313 n 0000 | the Shoshonean language spoken by the Comanche -06915031 10 n 01 Hopi 0 001 @ 06915313 n 0000 | the Shoshonean language spoken by the Hopi -06915124 10 n 01 Paiute 0 001 @ 06915313 n 0000 | the Shoshonean language spoken by the Paiute -06915221 10 n 01 Ute 0 001 @ 06915313 n 0000 | the Shoshonean language spoken by the Utes -06915313 10 n 04 Shoshonean 0 Shoshonean_language 0 Shoshonian 0 Shoshonian_language 0 006 @ 06918396 n 0000 ~ 06914802 n 0000 ~ 06914930 n 0000 ~ 06915031 n 0000 ~ 06915124 n 0000 ~ 06915221 n 0000 | a subfamily of Uto-Aztecan languages spoken mainly in the southwestern United States -06915601 10 n 03 Caddo 0 Caddoan 0 Caddoan_language 0 004 @ 06906439 n 0000 ~ 06915821 n 0000 ~ 06915927 n 0000 ~ 06916021 n 0000 | a family of North American Indian languages spoken widely in the Midwest by the Caddo -06915821 10 n 02 Arikara 0 Aricara 0 001 @ 06915601 n 0000 | the Caddoan language spoken by the Arikara -06915927 10 n 01 Pawnee 0 001 @ 06915601 n 0000 | the Caddoan language spoken by the Pawnee -06916021 10 n 01 Wichita 0 001 @ 06915601 n 0000 | the Caddoan language spoken by the Wichita -06916117 10 n 01 Cherokee 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Cherokee -06916217 10 n 01 Cayuga 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Cayuga -06916313 10 n 01 Mohawk 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Mohawk -06916409 10 n 01 Seneca 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Seneca -06916505 10 n 01 Oneida 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Oneida -06916601 10 n 01 Onondaga 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Onondaga -06916701 10 n 01 Tuscarora 0 001 @ 06916803 n 0000 | the Iroquoian language spoken by the Tuscarora -06916803 10 n 03 Iroquoian 0 Iroquois 0 Iroquoian_language 0 008 @ 06906439 n 0000 ~ 06916117 n 0000 ~ 06916217 n 0000 ~ 06916313 n 0000 ~ 06916409 n 0000 ~ 06916505 n 0000 ~ 06916601 n 0000 ~ 06916701 n 0000 | a family of North American Indian languages spoken by the Iroquois -06917083 10 n 05 Quechua 0 Quechuan 0 Quechuan_language 0 Kechua 0 Kechuan 0 003 @ 06906439 n 0000 + 03108623 a 0502 + 03108623 a 0101 | the language of the Quechua which was spoken by the Incas -06917280 10 n 01 Guarani 0 001 @ 06917602 n 0000 | the language spoken by the Guarani of Paraguay and Bolivia -06917392 10 n 02 Maraco 0 Maracan_language 0 001 @ 06906439 n 0000 | the language spoken by the Maraco -06917497 10 n 01 Tupi 0 001 @ 06917602 n 0000 | the language spoken by the Tupi of Brazil and Paraguay -06917602 10 n 02 Tupi-Guarani 0 Tupi-Guarani_language 0 003 @ 06906439 n 0000 ~ 06917280 n 0000 ~ 06917497 n 0000 | a family of South American Indian languages -06917764 10 n 02 Arawak 0 Arawakan 0 002 @ 06906439 n 0000 + 02637537 a 0101 | a family of South American Indian languages spoken in northeastern South America -06917926 10 n 02 Carib 0 Caribbean_language 0 001 @ 06906439 n 0000 | the family of languages spoken by the Carib -06918042 10 n 02 Eskimo-Aleut 0 Eskimo-Aleut_language 0 003 @ 06904171 n 0000 ~ 06918215 n 0000 ~ 06918312 n 0000 | the family of languages that includes Eskimo and Aleut -06918215 10 n 02 Eskimo 0 Esquimau 0 001 @ 06918042 n 0000 | the language spoken by the Eskimo -06918312 10 n 01 Aleut 0 001 @ 06918042 n 0000 | the language spoken by the Aleut -06918396 10 n 02 Uto-Aztecan 0 Uto-Aztecan_language 0 008 @ 06906439 n 0000 ~ 06915313 n 0000 ~ 06918640 n 0000 ~ 06918734 n 0000 ~ 06918832 n 0000 ~ 06918932 n 0000 ~ 06919023 n 0000 ~ 06919122 n 0000 | a family of American Indian languages -06918640 10 n 01 Pima 0 001 @ 06918396 n 0000 | the Uto-Aztecan language spoken by the Pima -06918734 10 n 01 Aztecan 0 001 @ 06918396 n 0000 | the Uto-Aztecan language spoken by the Aztec -06918832 10 n 01 Nahuatl 0 001 @ 06918396 n 0000 | the Uto-Aztecan language spoken by the Nahuatl -06918932 10 n 01 Cahita 0 001 @ 06918396 n 0000 | the Uto-Aztecan language of the Cahita -06919023 10 n 01 Tatahumara 0 001 @ 06918396 n 0000 | the Uto-Aztecan language of the Tatahumara -06919122 10 n 02 Zapotec 0 Zapotecan 0 001 @ 06918396 n 0000 | the language of the Zapotec -06919215 10 n 03 Maya 0 Mayan 0 Mayan_language 0 006 @ 06906439 n 0000 ~ 06925743 n 0000 ~ 06925833 n 0000 ~ 06925917 n 0000 ~ 06926020 n 0000 ~ 06926112 n 0000 | a family of American Indian languages spoken by Maya -06919433 10 n 01 Apache 0 003 @ 06907728 n 0000 ~ 06919548 n 0000 ~ 06919630 n 0000 | the language of the Apache -06919548 10 n 01 Chiricahua_Apache 0 001 @ 06919433 n 0000 | an Apache language -06919630 10 n 01 San_Carlos_Apache 0 001 @ 06919433 n 0000 | an Apache language -06919712 10 n 02 Navaho 0 Navajo 0 001 @ 06907728 n 0000 | the Athapaskan language spoken by the Navaho -06919818 10 n 01 Hupa 0 001 @ 06907728 n 0000 | the Athapaskan language spoken by the Hupa -06919911 10 n 01 Mattole 0 001 @ 06907728 n 0000 | the Athapaskan language spoken by the Mattole -06920010 10 n 03 Chipewyan 0 Chippewyan 0 Chippewaian 0 001 @ 06907728 n 0000 | the language spoken by the Chipewyan -06920129 10 n 02 Siouan 0 Siouan_language 0 014 @ 06906439 n 0000 ~ 06908401 n 0000 ~ 06908605 n 0000 ~ 06908801 n 0000 ~ 06909391 n 0000 ~ 06909478 n 0000 ~ 06909672 n 0000 ~ 06909932 n 0000 ~ 06910039 n 0000 ~ 06911180 n 0000 ~ 06911265 n 0000 ~ 06912838 n 0000 ~ 06913121 n 0000 ~ 06913214 n 0000 | a family of North American Indian languages spoken by the Sioux -06920497 10 n 02 Tanoan 0 Tanoan_language 0 002 @ 06906439 n 0000 ~ 06920665 n 0000 | a family of North American Indian language spoken in southwestern United States -06920665 10 n 01 Kiowa 0 001 @ 06920497 n 0000 | the Tanoan language spoken by the Kiowa -06920756 10 n 02 Hokan 0 Hoka 0 008 @ 06906439 n 0000 ~ 06920994 n 0000 ~ 06921092 n 0000 ~ 06921186 n 0000 ~ 06921392 n 0000 ~ 06921593 n 0000 ~ 06922045 n 0000 ~ 06923580 n 0000 | a family of Amerindian languages spoken in California -06920994 10 n 01 Chimariko 0 001 @ 06920756 n 0000 | the Hokan language spoken by the Chimariko -06921092 10 n 01 Esselen 0 001 @ 06920756 n 0000 | the Hokan language spoken by the Esselen -06921186 10 n 01 Kulanapan 0 002 @ 06920756 n 0000 ~ 06921300 n 0000 | a group of languages of the Hokan family -06921300 10 n 01 Pomo 0 001 @ 06921186 n 0000 | the Kulanapan language spoken by the Pomo -06921392 10 n 01 Quoratean 0 002 @ 06920756 n 0000 ~ 06921506 n 0000 | a group of languages of the Hokan family -06921506 10 n 01 Karok 0 001 @ 06921392 n 0000 | the Quoratean language of the Karok -06921593 10 n 01 Shastan 0 004 @ 06920756 n 0000 ~ 06921755 n 0000 ~ 06921853 n 0000 ~ 06921951 n 0000 | a group of languages of the Hokan family in California -06921755 10 n 01 Achomawi 0 001 @ 06921593 n 0000 | the Shastan language spoken by the Achomawi -06921853 10 n 01 Atsugewi 0 001 @ 06921593 n 0000 | the Shastan language spoken by the Atsugewi -06921951 10 n 01 Shasta 0 001 @ 06921593 n 0000 | the Shastan language spoken by the Shasta -06922045 10 n 01 Yuman 0 013 @ 06920756 n 0000 ~ 06922389 n 0000 ~ 06922485 n 0000 ~ 06922579 n 0000 ~ 06922681 n 0000 ~ 06922777 n 0000 ~ 06922875 n 0000 ~ 06922965 n 0000 ~ 06923066 n 0000 ~ 06923182 n 0000 ~ 06923283 n 0000 ~ 06923398 n 0000 ~ 06923492 n 0000 | a group of language of the Hokan family in Arizona and California and Mexico -06922389 10 n 01 Akwa'ala 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Akwa'ala -06922485 10 n 01 Cochimi 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Cochimi -06922579 10 n 02 Cocopa 0 Cocopah 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Cocopa -06922681 10 n 01 Diegueno 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Diegueno -06922777 10 n 01 Havasupai 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Havasupai -06922875 10 n 01 Kamia 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Kamia -06922965 10 n 02 Kiliwa 0 Kiliwi 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Kiliwa -06923066 10 n 01 Maricopa 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Maricopa and the Halchidhoma -06923182 10 n 02 Mohave 0 Mojave 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Mohave -06923283 10 n 03 Walapai 0 Hualapai 0 Hualpai 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Walapai -06923398 10 n 01 Yavapai 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Yavapai -06923492 10 n 01 Yuma 0 001 @ 06922045 n 0000 | the Yuman language spoken by the Yuma -06923580 10 n 01 Yanan 0 003 @ 06920756 n 0000 ~ 06923704 n 0000 ~ 06923792 n 0000 | a language group of the Hokan family -06923704 10 n 01 Yahi 0 001 @ 06923580 n 0000 | the Yanan language spoken by the Yahi -06923792 10 n 01 Yana 0 001 @ 06923580 n 0000 | the Yanan language spoken by the Yana -06923880 10 n 01 Penutian 0 012 @ 06906439 n 0000 ~ 06924214 n 0000 ~ 06924560 n 0000 ~ 06924659 n 0000 ~ 06924790 n 0000 ~ 06924895 n 0000 ~ 06924996 n 0000 ~ 06925103 n 0000 ~ 06925214 n 0000 ~ 06925305 n 0000 ~ 06925538 n 0000 ~ 06925644 n 0000 | a family of Amerindian language spoken in the great interior valley of California -06924214 10 n 01 Copehan 0 003 @ 06923880 n 0000 ~ 06924376 n 0000 ~ 06924468 n 0000 | a group of Penutian languages spoken to the west of the Sacramento river -06924376 10 n 01 Patwin 0 001 @ 06924214 n 0000 | a Copehan language spoken by the Patwin -06924468 10 n 01 Wintun 0 001 @ 06924214 n 0000 | a Copehan language spoken by the Wintun -06924560 10 n 01 Costanoan 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Costanoan -06924659 10 n 02 Mariposan 0 Yokuts 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Yokuts in the San Joaquin Valley -06924790 10 n 02 Moquelumnan 0 Miwok 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Miwok -06924895 10 n 02 Pujunan 0 Maidu 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Maidu -06924996 10 n 02 Chinookan 0 Chinook 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Chinook -06925103 10 n 02 Kalapooian 0 Kalapuyan 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Kalapuya -06925214 10 n 01 Kusan 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Kusan -06925305 10 n 02 Shahaptian 0 Sahaptin 0 002 @ 06923880 n 0000 ~ 06925435 n 0000 | a Penutian language spoken by the Shahaptian -06925435 10 n 01 Nez_Perce 0 001 @ 06925305 n 0000 | the Shahaptian language spoken by the Nez Perce -06925538 10 n 02 Takilman 0 Takelma 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Takelma -06925644 10 n 01 Tsimshian 0 001 @ 06923880 n 0000 | a Penutian language spoken by the Tsimshian -06925743 10 n 01 Kekchi 0 001 @ 06919215 n 0000 | a Mayan language spoken by the Kekchi -06925833 10 n 01 Mam 0 001 @ 06919215 n 0000 | a Mayan language spoken by the Mam -06925917 10 n 02 Yucatec 0 Yucateco 0 001 @ 06919215 n 0000 | a Mayan language spoken by the Yucatec -06926020 10 n 01 Quiche 0 001 @ 06919215 n 0000 | the Mayan language spoken by the Quiche -06926112 10 n 01 Cakchiquel 0 001 @ 06919215 n 0000 | the Mayan language spoken by the Cakchiquel -06926212 10 n 02 Altaic 0 Altaic_language 0 007 @ 06955931 n 0000 + 02614816 a 0101 ~ 06926458 n 0000 ~ 06928430 n 0000 ~ 06928839 n 0000 ~ 06929171 n 0000 ~ 06929279 n 0000 | a group of related languages spoken in Asia and southeastern Europe -06926458 10 n 04 Turki 0 Turkic 0 Turko-Tatar 0 Turkic_language 0 013 @ 06926212 n 0000 ~ 06926798 n 0000 ~ 06926889 n 0000 ~ 06927007 n 0000 ~ 06927128 n 0000 ~ 06927228 n 0000 ~ 06927363 n 0000 ~ 06927486 n 0000 ~ 06927645 n 0000 ~ 06927736 n 0000 ~ 06927851 n 0000 ~ 06927952 n 0000 ~ 06928047 n 0000 | a subfamily of Altaic languages -06926798 10 n 01 Turkish 0 001 @ 06926458 n 0000 | a Turkic language spoken by the Turks -06926889 10 n 03 Turkmen 0 Turkoman 0 Turcoman 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Turkoman -06927007 10 n 01 Azerbaijani 0 002 @ 06926458 n 0000 + 02655560 a 0101 | the Turkic language spoken by the Azerbaijani -06927128 10 n 02 Kazak 0 Kazakh 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Kazak -06927228 10 n 01 Tatar 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Tatar living from the Volga to the Ural Mountains -06927363 10 n 05 Uzbek 0 Uzbeg 0 Uzbak 0 Usbek 0 Usbeg 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Uzbek -06927486 10 n 03 Uighur 0 Uigur 0 Uygur 0 001 @ 06926458 n 0000 | the Turkic language spoken by approximately 7,000,000 Uighur in extreme northwestern China -06927645 10 n 01 Yakut 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Yakut -06927736 10 n 03 Kirghiz 0 Kirgiz 0 Khirghiz 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Kirghiz -06927851 10 n 01 Karakalpak 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Karakalpak -06927952 10 n 01 Chuvash 0 001 @ 06926458 n 0000 | the Turkic language spoken by the Chuvash -06928047 10 n 04 Chagatai 0 Jagatai 0 Jaghatai 0 Eastern_Turki 0 001 @ 06926458 n 0000 | a Turkic literary language of medieval central Asia (named for one of the sons of Genghis Khan) -06928234 10 n 02 Chukchi 0 Chukchi_language 0 001 @ 06904171 n 0000 | an indigenous and isolated language of unknown origin spoken by the Chukchi that is pronounced differently by men and women -06928430 10 n 02 Tungusic 0 Tungusic_language 0 003 @ 06926212 n 0000 ~ 06928610 n 0000 ~ 06928744 n 0000 | a family of Altaic languages spoken in Mongolia and neighboring areas -06928610 10 n 04 Tungus 0 Tunguz 0 Evenki 0 Ewenki 0 001 @ 06928430 n 0000 | the Tungusic language of the Evenki in eastern Siberia -06928744 10 n 01 Manchu 0 001 @ 06928430 n 0000 | the Tungusic language spoken by the Manchu -06928839 10 n 03 Mongolian 0 Mongolic 0 Mongolic_language 0 003 @ 06926212 n 0000 + 03087088 a 0102 ~ 06929008 n 0000 | a family of Altaic language spoken in Mongolia -06929008 10 n 03 Khalkha 0 Khalka 0 Kalka 0 001 @ 06928839 n 0000 | the language of the Khalkha that is the official language of the Mongolian People's Republic -06929171 10 n 01 Korean 0 002 @ 06926212 n 0000 + 02967791 a 0101 | the Altaic language spoken by Koreans -06929279 10 n 01 Japanese 0 004 @ 06926212 n 0000 ;r 08921850 n 0000 ~ 06929459 n 0000 -c 10315217 n 0000 | the language (usually considered to be Altaic) spoken by the Japanese -06929459 10 n 01 Ryukyuan 0 002 @ 06929279 n 0000 ;r 08921850 n 0000 | the language (related to Japanese) that is spoken by the people of the Ryukyu Islands -06929618 10 n 02 Sinitic 0 Sinitic_language 0 002 @ 06930934 n 0000 ~ 06929742 n 0000 | a group of Sino-Tibetan languages -06929742 10 n 01 Chinese 0 007 @ 06929618 n 0000 ;r 08723006 n 0000 ~ 06930093 n 0000 ~ 06930298 n 0000 ~ 06930427 n 0000 ~ 06930633 n 0000 ~ 06930804 n 0000 | any of the Sino-Tibetan languages spoken in China; regarded as dialects of a single language (even though they are mutually unintelligible) because they share an ideographic writing system -06930093 10 n 04 Mandarin 0 Mandarin_Chinese 0 Mandarin_dialect 0 Beijing_dialect 0 001 @ 06929742 n 0000 | the dialect of Chinese spoken in Beijing and adopted as the official language for all of China -06930298 10 n 03 Wu 0 Wu_dialect 0 Shanghai_dialect 0 001 @ 06929742 n 0000 | a dialect of Chinese spoken in the Yangtze delta -06930427 10 n 04 Yue 0 Yue_dialect 0 Cantonese 0 Cantonese_dialect 0 001 @ 06929742 n 0000 | the dialect of Chinese spoken in Canton and neighboring provinces and in Hong Kong and elsewhere outside China -06930633 10 n 07 Min 0 Min_dialect 0 Fukien 0 Fukkianese 0 Hokkianese 0 Amoy 0 Taiwanese 0 001 @ 06929742 n 0000 | any of the forms of Chinese spoken in Fukien province -06930804 10 n 02 Hakka 0 Hakka_dialect 0 001 @ 06929742 n 0000 | a dialect of Chinese spoken in southeastern China by the Hakka -06930934 10 n 02 Sino-Tibetan 0 Sino-Tibetan_language 0 008 @ 06904171 n 0000 ;r 08723006 n 0000 ;r 08906952 n 0000 ;r 08715390 n 0000 ;r 09036452 n 0000 ~ 06929618 n 0000 ~ 06931199 n 0000 ~ 06934132 n 0000 | the family of tonal languages spoken in eastern Asia -06931199 10 n 02 Tibeto-Burman 0 Tibeto-Burman_language 0 008 @ 06930934 n 0000 ~ 06931499 n 0000 ~ 06931605 n 0000 ~ 06931724 n 0000 ~ 06931891 n 0000 ~ 06932130 n 0000 ~ 06932265 n 0000 ~ 06933022 n 0000 | a branch of the Sino-Tibetan family of languages spoken from Tibet to the Malay Peninsula -06931499 10 n 02 Qiang 0 Qiangic 0 001 @ 06931199 n 0000 | the Tibeto-Burman language spoken in Sichuan -06931605 10 n 02 Bai 0 Baic 0 001 @ 06931199 n 0000 | the Tibeto-Burman language spoken in the Dali region of Yunnan -06931724 10 n 01 Himalayish 0 003 @ 06931199 n 0000 ~ 06933931 n 0000 ~ 06934020 n 0000 | the Tibeto-Burman language spoken in Tibet and Nepal and Bhutan and Sikkim -06931891 10 n 01 Kamarupan 0 006 @ 06931199 n 0000 ~ 06933279 n 0000 ~ 06933429 n 0000 ~ 06933546 n 0000 ~ 06933689 n 0000 ~ 06933824 n 0000 | the Tibeto-Burman language spoken in northeastern India and adjacent regions of western Burma -06932130 10 n 02 Karen 0 Karenic 0 001 @ 06931199 n 0000 | the Tibeto-Burman language spoken in the Thailand and Burmese borderlands -06932265 10 n 02 Lolo-Burmese 0 Burmese-Yi 0 003 @ 06931199 n 0000 ~ 06932435 n 0000 ~ 06932537 n 0000 | the Tibeto-Burman language spoken in northern Burma and Yunnan -06932435 10 n 01 Burmese 0 002 @ 06932265 n 0000 + 03052018 a 0101 | the official language of Burma -06932537 10 n 01 Loloish 0 005 @ 06932265 n 0000 ~ 06932734 n 0000 ~ 06932803 n 0000 ~ 06932879 n 0000 ~ 06932948 n 0000 | languages spoken by hill tribes in northern Burma and neighboring areas -06932734 10 n 01 Lisu 0 001 @ 06932537 n 0000 | a Loloish language -06932803 10 n 02 Hani 0 Akha 0 001 @ 06932537 n 0000 | a Loloish language -06932879 10 n 01 Lahu 0 001 @ 06932537 n 0000 | a Loloish language -06932948 10 n 02 Lolo 0 Yi 0 001 @ 06932537 n 0000 | a Loloish language -06933022 10 n 02 Kachin 0 Kachinic 0 002 @ 06931199 n 0000 ~ 06933185 n 0000 | Tibeto-Burman languages spoken in northernmost Burma and adjacent China and India -06933185 10 n 03 Jinghpo 0 Jinghpaw 0 Chingpo 0 001 @ 06933022 n 0000 | a Kachinic language -06933279 10 n 03 Kuki 0 Chin 0 Kuki-Chin 0 001 @ 06931891 n 0000 | Kamarupan languages spoken in western Burma and Bangladesh and easternmost India -06933429 10 n 01 Naga 0 001 @ 06931891 n 0000 | Kamarupan languages spoken in northeastern India and western Burma -06933546 10 n 01 Mikir-Meithei 0 001 @ 06931891 n 0000 | Kamarupan languages spoken in the states of Manipur and Assam in northeastern India -06933689 10 n 02 Bodo-Garo 0 Barish 0 001 @ 06931891 n 0000 | Kamarupan languages spoken in the state of Assam in northeastern India -06933824 10 n 04 Miri 0 Mirish 0 Abor 0 Dafla 0 001 @ 06931891 n 0000 | little known Kamarupan languages -06933931 10 n 01 Tibetan 0 001 @ 06931724 n 0000 | Himalayish language spoken in Tibet -06934020 10 n 01 Newari 0 001 @ 06931724 n 0000 | Himalayish language spoken in the Kathmandu valley of Nepal -06934132 10 n 03 Kadai 0 Kam-Tai 0 Kadai_language 0 003 @ 06930934 n 0000 ~ 06934309 n 0000 ~ 06934389 n 0000 | a family of Sino-Tibetan languages spoken in southeastern Asia -06934309 10 n 01 Kam-Sui 0 001 @ 06934132 n 0000 | a group of Kadai languages -06934389 10 n 01 Tai 0 020 @ 06934132 n 0000 ~ 06934848 n 0000 ~ 06934933 n 0000 ~ 06935016 n 0000 ~ 06935111 n 0000 ~ 06935223 n 0000 ~ 06935314 n 0000 ~ 06935417 n 0000 ~ 06935513 n 0000 ~ 06935594 n 0000 ~ 06935741 n 0000 ~ 06935823 n 0000 ~ 06935911 n 0000 ~ 06935990 n 0000 ~ 06936070 n 0000 ~ 06936149 n 0000 ~ 06936290 n 0000 ~ 06936379 n 0000 ~ 06936461 n 0000 ~ 06936540 n 0000 | the most widespread and best known of the Kadai family of languages -06934848 10 n 01 White_Tai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06934933 10 n 01 Red_Tai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935016 10 n 02 Tai_Dam 0 Black_Tai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935111 10 n 03 Tai_Nuea 0 Chinese_Shan 0 Dehong_Dai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935223 10 n 02 Tai_Long 0 Shan 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935314 10 n 02 Tai_Lue 0 Xishuangbanna_Dai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935417 10 n 02 Tai_Yuan 0 Kam_Muang 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935513 10 n 01 Khuen 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935594 10 n 01 Lao 0 001 @ 06934389 n 0000 | the Tai language of a Buddhist people living in the area of the Mekong River in Thailand and Laos -06935741 10 n 01 Khamti 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935823 10 n 01 Southern_Tai 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935911 10 n 01 Tay 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06935990 10 n 01 Nung 2 001 @ 06934389 n 0000 | a branch of the Tai languages -06936070 10 n 01 Tho 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06936149 10 n 03 Thai 0 Siamese 0 Central_Thai 0 003 @ 06934389 n 0000 + 03116809 a 0203 + 03116809 a 0101 | a branch of the Tai languages -06936290 10 n 02 Bouyei 0 Buyi 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06936379 10 n 01 Zhuang 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06936461 10 n 01 Yay 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06936540 10 n 01 Saek 0 001 @ 06934389 n 0000 | a branch of the Tai languages -06936620 10 n 03 Austro-Asiatic 0 Austro-Asiatic_language 0 Munda-Mon-Khmer 0 003 @ 06904171 n 0000 ~ 06936823 n 0000 ~ 06936948 n 0000 | a family of languages spoken in southern and southeastern Asia -06936823 10 n 01 Munda 0 001 @ 06936620 n 0000 | a family of languages spoken by people scattered throughout central India -06936948 10 n 01 Mon-Khmer 0 004 @ 06936620 n 0000 ~ 06937229 n 0000 ~ 06937348 n 0000 ~ 06937441 n 0000 | a branch of the Austro-Asiatic languages -06937098 10 n 03 Hmong 0 Hmong_language 0 Miao 0 001 @ 06904171 n 0000 | a language of uncertain affiliation spoken by the Hmong -06937229 10 n 03 Vietnamese 0 Annamese 0 Annamite 0 001 @ 06936948 n 0000 | the Mon-Khmer language spoken in Vietnam -06937348 10 n 01 Khmer 0 001 @ 06936948 n 0000 | the Mon-Khmer language spoken in Cambodia -06937441 10 n 01 Mon 0 001 @ 06936948 n 0000 | the Mon-Khmer language spoken by the Mon -06937531 10 n 02 Austronesian 0 Austronesian_language 0 005 @ 06904171 n 0000 + 02977638 a 0101 ~ 06937768 n 0000 ~ 06940290 n 0000 ~ 06940701 n 0000 | the family of languages spoken in Australia and Formosa and Malaysia and Polynesia -06937768 10 n 02 Malayo-Polynesian 0 Polynesian 0 004 @ 06937531 n 0000 ~ 06937985 n 0000 ~ 06938190 n 0000 ~ 06938729 n 0000 | the branch of the Austronesian languages spoken from Madagascar to the central Pacific -06937985 10 n 02 Oceanic 0 Eastern_Malayo-Polynesian 0 005 @ 06937768 n 0000 ~ 06938294 n 0000 ~ 06938386 n 0000 ~ 06938493 n 0000 ~ 06938623 n 0000 | an eastern subfamily of Malayo-Polynesian languages -06938190 10 n 01 Tongan 0 001 @ 06937768 n 0000 | the Polynesian language spoken by the Tongan people -06938294 10 n 01 Tahitian 0 001 @ 06937985 n 0000 | the Oceanic language spoken on Tahiti -06938386 10 n 01 Maori 0 001 @ 06937985 n 0000 | the Oceanic language spoken by the Maori in New Zealand -06938493 10 n 01 Hawaiian 0 003 @ 06937985 n 0000 ;r 09078231 n 0000 + 02738760 a 0101 | the Oceanic languages spoken on Hawaii -06938623 10 n 01 Fijian 0 002 @ 06937985 n 0000 + 03065969 a 0101 | the Oceanic language spoken on Fiji -06938729 10 n 01 Western_Malayo-Polynesian 0 003 @ 06937768 n 0000 ~ 06938887 n 0000 ~ 06939756 n 0000 | a western subfamily of Malayo-Polynesian languages -06938887 10 n 01 Malay 0 004 @ 06938729 n 0000 + 03083069 a 0101 ~ 06939051 n 0000 ~ 06939198 n 0000 | a western subfamily of Western Malayo-Polynesian languages -06939051 10 n 04 Malaysian 0 Bahasa_Malaysia 0 Bahasa_Melayu 0 Bahasa_Kebangsaan 0 001 @ 06938887 n 0000 | the Malay language spoken in Malaysia -06939198 10 n 03 Indonesian 0 Bahasa_Indonesia 0 Bahasa 0 004 @ 06938887 n 0000 ~ 06939431 n 0000 ~ 06939542 n 0000 ~ 06939656 n 0000 | the dialect of Malay used as the national language of the Republic of Indonesia or of Malaysia -06939431 10 n 01 Javanese 0 002 @ 06939198 n 0000 + 03076663 a 0101 | the Indonesian language spoken on Java -06939542 10 n 01 Sundanese 0 001 @ 06939198 n 0000 | the Indonesian language spoken in the Lesser Sunda Islands -06939656 10 n 01 Balinese 0 001 @ 06939198 n 0000 | the Indonesian language of the people of Bali -06939756 10 n 02 Philippine 0 Filipino 0 005 @ 06938729 n 0000 + 03066180 a 0201 + 03066180 a 0102 ~ 06940001 n 0000 ~ 06940109 n 0000 | official language of the Philippines; based on Tagalog; draws its lexicon from other Philippine languages -06940001 10 n 01 Tagalog 0 001 @ 06939756 n 0000 | the language of the Tagalog on which Filipino is based -06940109 10 n 02 Cebuan 0 Cebuano 0 001 @ 06939756 n 0000 | language of the people of Cebu in the Philippines; its lexicon contributes to the official language of the Philippines -06940290 10 n 02 Australian 0 Aboriginal_Australian 0 005 @ 06937531 n 0000 ;r 08831004 n 0000 + 03045750 a 0101 ~ 06940502 n 0000 ~ 06940601 n 0000 | the Austronesian languages spoken by Australian aborigines -06940502 10 n 02 Dyirbal 0 Jirrbal 0 001 @ 06940290 n 0000 | a language of Australian aborigines -06940601 10 n 02 Walbiri 0 Warlpiri 0 001 @ 06940290 n 0000 | a language of Australian aborigines -06940701 10 n 01 Formosan 0 004 @ 06937531 n 0000 ~ 06940854 n 0000 ~ 06940969 n 0000 ~ 06941041 n 0000 | the Austronesian languages spoken on Formosa -06940854 10 n 02 Tayalic 0 Atayalic 0 001 @ 06940701 n 0000 | a language spoken by a Malaysian people on Formosa -06940969 10 n 01 Tsouic 0 001 @ 06940701 n 0000 | a Formosan language -06941041 10 n 01 Paiwanic 0 001 @ 06940701 n 0000 | a Formosan language -06941115 10 n 02 Papuan 0 Papuan_language 0 002 @ 06904171 n 0000 + 03096269 a 0101 | any of the indigenous languages spoken in Papua New Guinea or New Britain or the Solomon Islands that are not Malayo-Polynesian languages -06941341 10 n 02 Khoisan 0 Khoisan_language 0 002 @ 06904171 n 0000 ~ 06941479 n 0000 | a family of languages spoken in southern Africa -06941479 10 n 03 Khoikhoin 0 Khoikhoi 0 Hottentot 0 001 @ 06941341 n 0000 | any of the Khoisan languages spoken by the pastoral people of Namibia and South Africa -06941644 10 n 03 Indo-European 0 Indo-European_language 0 Indo-Hittite 0 014 @ 06904171 n 0000 ~ 06942094 n 0000 ~ 06942252 n 0000 ~ 06942699 n 0000 ~ 06942874 n 0000 ~ 06943027 n 0000 ~ 06943558 n 0000 ~ 06946497 n 0000 ~ 06960298 n 0000 ~ 06961853 n 0000 ~ 06968707 n 0000 ~ 06971872 n 0000 ~ 06975594 n 0000 ~ 06976392 n 0000 | the family of languages that by 1000 BC were spoken throughout Europe and in parts of southwestern and southern Asia -06942094 10 n 02 Proto-Indo_European 0 PIE 0 001 @ 06941644 n 0000 | a prehistoric unrecorded language that was the ancestor of all Indo-European languages -06942252 10 n 01 Albanian 0 004 @ 06941644 n 0000 + 02609813 a 0101 ~ 06942419 n 0000 ~ 06942550 n 0000 | the Indo-European language spoken by the people of Albania -06942419 10 n 02 Gheg 0 Gheg_dialect 0 001 @ 06942252 n 0000 | the dialect of Albanian spoken in northern Albania and Yugoslavia -06942550 10 n 02 Tosk 0 Tosk_dialect 0 001 @ 06942252 n 0000 | the dialect of Albanian spoken in southern Albania and in areas of Greece and Italy -06942699 10 n 02 Armenian 0 Armenian_language 0 002 @ 06941644 n 0000 + 02625648 a 0101 | the Indo-European language spoken predominantly in Armenia, but also in Azerbaijan -06942874 10 n 01 Illyrian 0 001 @ 06941644 n 0000 | a minor and almost extinct branch of the Indo-European languages; spoken along the Dalmatian coast -06943027 10 n 01 Thraco-Phrygian 0 003 @ 06941644 n 0000 ~ 06943221 n 0000 ~ 06943378 n 0000 | an extinct branch of the Indo-European language family thought by some to be related to Armenian -06943221 10 n 01 Thracian 0 001 @ 06943027 n 0000 | a Thraco-Phrygian language spoken by the ancient people of Thrace but extinct by the early Middle Ages -06943378 10 n 01 Phrygian 0 001 @ 06943027 n 0000 | a Thraco-Phrygian language spoken by the ancient inhabitants of Phrygia and now extinct--preserved only in a few inscriptions -06943558 10 n 03 Balto-Slavic 0 Balto-Slavic_language 0 Balto-Slavonic 0 003 @ 06941644 n 0000 ~ 06943771 n 0000 ~ 06945679 n 0000 | a family of Indo-European languages including the Slavic and Baltic languages -06943771 10 n 04 Slavic 0 Slavic_language 0 Slavonic 0 Slavonic_language 0 014 @ 06943558 n 0000 + 03118790 a 0102 ~ 06944156 n 0000 ~ 06944348 n 0000 ~ 06944480 n 0000 ~ 06944623 n 0000 ~ 06944720 n 0000 ~ 06944820 n 0000 ~ 06944911 n 0000 ~ 06945010 n 0000 ~ 06945095 n 0000 ~ 06945344 n 0000 ~ 06945473 n 0000 ~ 06945569 n 0000 | a branch of the Indo-European family of languages -06944156 10 n 04 Old_Church_Slavonic 0 Old_Church_Slavic 0 Church_Slavic 0 Old_Bulgarian 0 001 @ 06943771 n 0000 | the Slavic language into which the Bible was translated in the 9th century -06944348 10 n 01 Russian 0 002 @ 06943771 n 0000 ;r 09003284 n 0000 | the Slavic language that is the official language of Russia -06944480 10 n 03 Belarusian 0 Byelorussian 0 White_Russian 0 002 @ 06943771 n 0000 + 02660940 a 0101 | the Slavic language spoken in Belarus -06944623 10 n 01 Ukrainian 0 001 @ 06943771 n 0000 | the Slavic language spoken in the Ukraine -06944720 10 n 01 Polish 0 002 @ 06943771 n 0000 + 02961258 a 0101 | the Slavic language of Poland -06944820 10 n 01 Slovak 0 001 @ 06943771 n 0000 | the Slavic language spoken in Slovakia -06944911 10 n 01 Czech 0 002 @ 06943771 n 0000 + 02961688 a 0101 | the Slavic language of Czechs -06945010 10 n 01 Slovene 0 001 @ 06943771 n 0000 | the Slavic language of Slovenes -06945095 10 n 02 Serbo-Croat 0 Serbo-Croatian 0 001 @ 06943771 n 0000 | the Slavic language of the Serbs and Croats; the Serbian dialect is usually written in the Cyrillic alphabet and the Croatian dialect is usually written in the Roman alphabet -06945344 10 n 02 Sorbian 0 Lusatian 0 001 @ 06943771 n 0000 | a Slavonic language spoken in rural area of southeastern Germany -06945473 10 n 01 Macedonian 0 001 @ 06943771 n 0000 | the Slavic language of modern Macedonia -06945569 10 n 01 Bulgarian 0 002 @ 06943771 n 0000 + 03051307 a 0101 | a Slavic language spoken in Bulgaria -06945679 10 n 02 Baltic 0 Baltic_language 0 005 @ 06943558 n 0000 + 02962659 a 0101 ~ 06946017 n 0000 ~ 06946199 n 0000 ~ 06946355 n 0000 | a branch of the Indo-European family of languages related to the Slavonic languages; Baltic languages have preserved many archaic features that are believed to have existed in Proto-Indo European -06946017 10 n 01 Old_Prussian 0 001 @ 06945679 n 0000 | a dead language of the (non-German) Prussians (extinct after 1700); thought to belong to the Baltic branch of Indo-European -06946199 10 n 01 Lithuanian 0 002 @ 06945679 n 0000 + 02962961 a 0101 | the official language of Lithuania; belongs to the Baltic branch of Indo-European -06946355 10 n 02 Latvian 0 Lettish 0 001 @ 06945679 n 0000 | the official language of Latvia; belongs to the Baltic branch of Indo-European -06946497 10 n 02 Germanic 0 Germanic_language 0 007 @ 06941644 n 0000 + 02958126 a 0102 ~ 06946823 n 0000 ~ 06953054 n 0000 ~ 06953167 n 0000 ~ 06953731 n 0000 ~ 06955560 n 0000 | a branch of the Indo-European family of languages; members that are spoken currently fall into two major groups: Scandinavian and West Germanic -06946823 10 n 02 West_Germanic 0 West_Germanic_language 0 006 @ 06946497 n 0000 ~ 06947032 n 0000 ~ 06950528 n 0000 ~ 06952249 n 0000 ~ 06952572 n 0000 ~ 06955242 n 0000 | a branch of the Germanic languages -06947032 10 n 02 English 0 English_language 0 013 @ 06946823 n 0000 + 03003616 a 0101 + 03003344 a 0101 ~ 06947479 n 0000 ~ 06948017 n 0000 ~ 06948149 n 0000 ~ 06948260 n 0000 ~ 06948396 n 0000 ~ 06948761 n 0000 ~ 06949506 n 0000 ~ 06949591 n 0000 ~ 06950049 n 0000 ~ 06950209 n 0000 | an Indo-European language belonging to the West Germanic branch; the official language of Britain and the United States and most of the commonwealth countries -06947479 10 n 03 American_English 0 American_language 0 American 0 003 @ 06947032 n 0000 + 02927512 a 0301 ~ 06947658 n 0000 | the English language as used in the United States -06947658 10 n 08 African_American_Vernacular_English 0 AAVE 0 African_American_English 0 Black_English 0 Black_English_Vernacular 0 Black_Vernacular 0 Black_Vernacular_English 0 Ebonics 0 003 @ 06947479 n 0000 ;u 07075172 n 0801 -u 10119953 n 0000 | a nonstandard form of American English characteristically spoken by African Americans in the United States -06948017 10 n 01 cockney 0 002 @ 06947032 n 0000 + 03055658 a 0101 | the nonstandard dialect of natives of the east end of London -06948149 10 n 01 geordie 0 001 @ 06947032 n 0000 | the nonstandard dialect of natives of Newcastle-upon-Tyne -06948260 10 n 02 King's_English 0 Queen's_English 0 001 @ 06947032 n 0000 | English as spoken by educated persons in southern England -06948396 10 n 01 Received_Pronunciation 0 002 @ 07128692 n 0000 @ 06947032 n 0000 | the approved pronunciation of British English; originally based on the King's English as spoken at public schools and at Oxford and Cambridge Universities (and widely accepted elsewhere in Britain); until recently it was the pronunciation of English used in British broadcasting -06948761 10 n 01 Middle_English 0 006 @ 06947032 n 0000 ~ 06948943 n 0000 ~ 06949121 n 0000 ~ 06949207 n 0000 ~ 06949326 n 0000 ~ 06949407 n 0000 | English from about 1100 to 1450 -06948943 10 n 01 East_Midland 0 001 @ 06948761 n 0000 | the dialect of Middle English that replaced West Saxon as the literary language and which developed into Modern English -06949121 10 n 01 West_Midland 0 001 @ 06948761 n 0000 | a dialect of Middle English -06949207 10 n 01 Northern 0 001 @ 06948761 n 0000 | a dialect of Middle English that developed into Scottish Lallans -06949326 10 n 01 Kentish 1 001 @ 06948761 n 0000 | a dialect of Middle English -06949407 10 n 02 Southwestern 0 West_Saxon 1 001 @ 06948761 n 0000 | a dialect of Middle English -06949506 10 n 01 Modern_English 0 001 @ 06947032 n 0000 | English since about 1450 -06949591 10 n 02 Old_English 0 Anglo-Saxon 0 005 @ 06947032 n 0000 + 03114843 a 0201 ~ 06949762 n 0000 ~ 06949852 n 0000 ~ 06949946 n 0000 | English prior to about 1100 -06949762 10 n 01 West_Saxon 0 001 @ 06949591 n 0000 | a literary dialect of Old English -06949852 10 n 01 Anglian 0 001 @ 06949591 n 0000 | one of the major dialects of Old English -06949946 10 n 02 Kentish 0 Jutish 0 001 @ 06949591 n 0000 | one of the major dialects of Old English -06950049 10 n 01 Oxford_English 0 001 @ 06947032 n 0000 | the dialect of English spoken at Oxford University and regarded by many as affected and pretentious -06950209 10 n 03 Scottish 0 Scots 0 Scots_English 0 005 @ 06947032 n 0000 ;r 08890097 n 0000 + 03024647 a 0201 + 03024647 a 0102 ~ 06950400 n 0000 | the dialect of English used in Scotland -06950400 10 n 02 Lallans 0 Scottish_Lallans 0 001 @ 06950209 n 0000 | a dialect of English spoken in the Lowlands of Scotland -06950528 10 n 03 German 0 High_German 0 German_language 0 012 @ 06946823 n 0000 ;r 08766988 n 0000 + 02957469 a 0101 + 02958126 a 0102 + 03068330 a 0101 -c 06340707 n 0000 -c 06340838 n 0000 -c 06341127 n 0000 ~ 06950886 n 0000 ~ 06950973 n 0000 ~ 06951067 n 0000 ~ 06952115 n 0000 | the standard German language; developed historically from West Germanic -06950886 10 n 01 Old_High_German 0 001 @ 06950528 n 0000 | High German prior to 1200 -06950973 10 n 01 Middle_High_German 0 001 @ 06950528 n 0000 | High German from 1100 to 1500 -06951067 10 n 01 Yiddish 0 046 @ 06950528 n 0000 -c 00829243 a 0000 -c 01837025 a 0000 -c 00171882 n 0000 -c 00494406 n 0000 -c 00513251 n 0000 -c 00513597 n 0000 -c 00550545 n 0000 -c 00624285 n 0000 -c 02998696 n 0000 -c 04627936 n 0000 -c 04916200 n 0000 -c 06609785 n 0000 -c 07136469 n 0000 -c 07211503 n 0000 -c 07218299 n 0000 -c 07497019 n 0000 -c 07577538 n 0000 -c 07624757 n 0000 -c 07693725 n 0000 -c 07970079 n 0000 -c 08400605 n 0000 -c 09905530 n 0000 -c 09921673 n 0000 -c 10133458 n 0000 -c 10230432 n 0000 -c 10237935 n 0000 -c 10239928 n 0000 -c 10240921 n 0000 -c 10309009 n 0000 -c 10310516 n 0000 -c 10350774 n 0000 -c 10365846 n 0000 -c 10496393 n 0000 -c 10556825 n 0000 -c 10556953 n 0000 -c 10557094 n 0000 -c 10557404 n 0000 -c 10557517 n 0000 -c 10557699 n 0000 -u 10588182 n 0000 -u 10589243 n 0000 -c 10803282 n 0000 -c 10803463 n 0000 -c 13762836 n 0000 -c 13976907 n 0000 | a dialect of High German including some Hebrew and other words; spoken in Europe as a vernacular by many Jews; written in the Hebrew script -06952115 10 n 01 Pennsylvania_Dutch 0 001 @ 06950528 n 0000 | a dialect of High German spoken in parts of Pennsylvania and Maryland -06952249 10 n 02 Low_German 0 Plattdeutsch 0 003 @ 06946823 n 0000 ~ 06952400 n 0000 ~ 06952480 n 0000 | a German dialect spoken in northern Germany -06952400 10 n 01 Old_Saxon 0 001 @ 06952249 n 0000 | Low German prior to 1200 -06952480 10 n 01 Middle_Low_German 0 001 @ 06952249 n 0000 | Low German from 1100 to 1500 -06952572 10 n 01 Dutch 0 003 @ 06946823 n 0000 ~ 06952705 n 0000 ~ 06952861 n 0000 | the West Germanic language of the Netherlands -06952705 10 n 02 Flemish 0 Flemish_dialect 0 002 @ 06952572 n 0000 + 03066448 a 0101 | one of two official languages of Belgium; closely related to Dutch -06952861 10 n 03 Afrikaans 0 Taal 0 South_African_Dutch 0 002 @ 06952572 n 0000 + 03042394 a 0101 | an official language of the Republic of South Africa; closely related to Dutch and Flemish -06953054 10 n 01 Proto-Norse 0 001 @ 06946497 n 0000 | the Germanic language of Scandinavia up until about 700 -06953167 10 n 01 Old_Norse 0 002 @ 06946497 n 0000 ~ 06953332 n 0000 | the extinct Germanic language of medieval Scandinavia and Iceland from about to 700 to 1350 -06953332 10 n 01 Old_Icelandic 0 001 @ 06953167 n 0000 | the extinct dialect of Old Norse that was spoken in Iceland up until about 1600 -06953471 10 n 01 Edda 0 001 @ 06378298 n 0000 | either of two distinct works in Old Icelandic dating from the late 13th century and consisting of 34 mythological and heroic ballads composed between 800 and 1200; the primary source for Scandinavian mythology -06953731 10 n 06 Scandinavian 0 Scandinavian_language 0 Nordic 0 Norse 0 North_Germanic 0 North_Germanic_language 0 006 @ 06946497 n 0000 ~ 06954048 n 0000 ~ 06954183 n 0000 ~ 06954303 n 0000 ~ 06954925 n 0000 ~ 06955087 n 0000 | the northern family of Germanic languages that are spoken in Scandinavia and Iceland -06954048 10 n 01 Danish 0 002 @ 06953731 n 0000 + 02960338 a 0101 | a Scandinavian language that is the official language of Denmark -06954183 10 n 01 Icelandic 0 001 @ 06953731 n 0000 | a Scandinavian language that is the official language of Iceland -06954303 10 n 01 Norwegian 0 004 @ 06953731 n 0000 + 02959912 a 0101 ~ 06954461 n 0000 ~ 06954768 n 0000 | a Scandinavian language that is spoken in Norway -06954461 10 n 03 Bokmal 0 Bokmaal 0 Dano-Norwegian 0 002 @ 06954303 n 0000 ~ 06954640 n 0000 | book language; one of two official languages of Norway; closely related to Danish -06954640 10 n 02 Riksmal 0 Riksmaal 0 001 @ 06954461 n 0000 | in 1929 this dialect of Norwegian was officially renamed Bokmal -06954768 10 n 04 Nynorsk 0 New_Norwegian 0 Landsmal 0 Landsmaal 0 001 @ 06954303 n 0000 | one of two official languages of Norway; based on rural dialects -06954925 10 n 01 Swedish 0 001 @ 06953731 n 0000 | a Scandinavian language that is the official language of Sweden and one of two official languages of Finland -06955087 10 n 02 Faroese 0 Faeroese 0 001 @ 06953731 n 0000 | a Scandinavian language (closely related to Icelandic) that is spoken on the Faroe Islands -06955242 10 n 01 Frisian 0 002 @ 06946823 n 0000 ~ 06955418 n 0000 | a West Germanic language spoken in Friesland in the northwestern Netherlands; a near relative of English -06955418 10 n 01 Old_Frisian 0 001 @ 06955242 n 0000 | the Frisian language until the 16th century; the Germanic language of ancient Frisia -06955560 10 n 02 East_Germanic 0 East_Germanic_language 0 002 @ 06946497 n 0000 ~ 06955706 n 0000 | an extinct branch of the Germanic languages -06955706 10 n 01 Gothic 0 002 @ 06955560 n 0000 + 03069643 a 0101 | extinct East Germanic language of the ancient Goths; the only surviving record being fragments of a 4th-century translation of the Bible by Bishop Ulfilas -06955931 10 n 01 Ural-Altaic 0 003 @ 06904171 n 0000 ~ 06926212 n 0000 ~ 06956129 n 0000 | a (postulated) group of languages including many of the indigenous languages of Russia (but not Russian) -06956129 10 n 02 Uralic 0 Uralic_language 0 004 @ 06955931 n 0000 ~ 06956287 n 0000 ~ 06959261 n 0000 ~ 06959584 n 0000 | a family of Ural-Altaic languages -06956287 10 n 02 Finno-Ugric 0 Finno-Ugrian 0 003 @ 06956129 n 0000 ~ 06956544 n 0000 ~ 06958615 n 0000 | a family of Uralic languages indigenous to Scandinavia and Hungary and Russia and western Siberia (prior to the Slavic expansion into those regions) -06956544 10 n 03 Fennic 0 Finnic 0 Non-Ugric 0 004 @ 06956287 n 0000 ~ 06956896 n 0000 ~ 06957140 n 0000 ~ 06957524 n 0000 | one of two branches of the Finno-Ugric languages; a family of languages including Finnish and Estonian (but not Hungarian) -06956794 10 n 02 Udmurt 0 Votyak 0 001 @ 06956896 n 0000 | the Finnic language spoken by the Votyak -06956896 10 n 01 Permic 0 003 @ 06956544 n 0000 ~ 06956794 n 0000 ~ 06957042 n 0000 | a group of Finnic languages spoken in the northwest Urals -06957042 10 n 02 Komi 0 Zyrian 0 001 @ 06956896 n 0000 | the Finnic language spoken by the Komi -06957140 10 n 01 Volgaic 0 003 @ 06956544 n 0000 ~ 06957287 n 0000 ~ 06957403 n 0000 | a group of Finnic languages spoken around the Volga river -06957287 10 n 03 Cheremis 0 Cheremiss 0 Mari 0 001 @ 06957140 n 0000 | the Finnic language spoken by the Cheremis -06957403 10 n 03 Mordva 0 Mordvin 0 Mordvinian 0 001 @ 06957140 n 0000 | the Finnic language spoken by the Mordvinians -06957524 10 n 01 Baltic-Finnic 0 008 @ 06956544 n 0000 ~ 06957768 n 0000 ~ 06957896 n 0000 ~ 06958063 n 0000 ~ 06958178 n 0000 ~ 06958255 n 0000 ~ 06958417 n 0000 ~ 06958522 n 0000 | a group of Finnic languages including Finnish and Estonian -06957768 10 n 01 Livonian 0 001 @ 06957524 n 0000 | the Finnic language spoken by the people of Livonia in Estonia and Latvia -06957896 10 n 02 Estonian 0 Esthonian 0 002 @ 06957524 n 0000 + 02723158 a 0101 | the official language of Estonia; belongs to the Baltic-Finnic family of languages -06958063 10 n 02 Karelian 0 Carelian 0 001 @ 06957524 n 0000 | a Finnic language spoken by the people of Karelia -06958178 10 n 01 Ludian 0 001 @ 06957524 n 0000 | a Baltic-Finnic language -06958255 10 n 02 Finnish 0 Suomi 0 002 @ 06957524 n 0000 + 02959553 a 0101 | the official language of Finland; belongs to the Baltic Finnic family of languages -06958417 10 n 03 Veps 0 Vepse 0 Vepsian 0 001 @ 06957524 n 0000 | a Finnic language spoken by the Veps -06958522 10 n 01 Ingrian 0 001 @ 06957524 n 0000 | a Finnic language spoken by the Ingrian -06958615 10 n 02 Ugric 0 Ugrian 0 004 @ 06956287 n 0000 ~ 06958836 n 0000 ~ 06959018 n 0000 ~ 06959140 n 0000 | one of the two branches of the Finno-Ugric family of languages; spoken in Hungary and northwestern Siberia -06958836 10 n 02 Hungarian 0 Magyar 0 002 @ 06958615 n 0000 + 02961505 a 0202 | the official language of Hungary (also spoken in Rumania); belongs to the Ugric family of languages -06959018 10 n 02 Khanty 0 Ostyak 0 001 @ 06958615 n 0000 | a Ugric language (related to Hungarian) spoken by the Ostyak -06959140 10 n 02 Mansi 0 Vogul 0 001 @ 06958615 n 0000 | the Ugric language (related to Hungarian) spoken by the Vogul -06959261 10 n 02 Lappic 0 Lappish 0 002 @ 06956129 n 0000 ~ 06959427 n 0000 | any of the languages spoken by the Lapps and generally assumed to be Uralic languages -06959427 10 n 05 Lapp 0 Sami 0 Saami 0 Same 0 Saame 0 001 @ 06959261 n 0000 | the language of nomadic Lapps in northern Scandinavia and the Kola Peninsula -06959584 10 n 02 Samoyedic 0 Samoyed 0 005 @ 06956129 n 0000 ~ 06959788 n 0000 ~ 06959932 n 0000 ~ 06960083 n 0000 ~ 06960180 n 0000 | the Uralic languages spoken by the Samoyed in northwestern Siberia -06959788 10 n 04 Nenets 0 Nentsi 0 Nentsy 0 Yurak-Samoyed 0 001 @ 06959584 n 0000 | a Uralic language spoken by a Samoyed of northern Siberia -06959932 10 n 06 Enets 0 Entsi 0 Entsy 0 Yenisei 0 Yenisei-Samoyed 0 Yeniseian 0 001 @ 06959584 n 0000 | the Uralic language spoken by the Yeniseian -06960083 10 n 01 Nganasan 0 001 @ 06959584 n 0000 | the Uralic language spoken by the Nganasan -06960180 10 n 02 Selkup 0 Ostyak-Samoyed 0 001 @ 06959584 n 0000 | the Uralic language spoken by the Ostyak-Samoyed -06960298 10 n 02 Celtic 0 Celtic_language 0 004 @ 06941644 n 0000 + 02957823 a 0101 ~ 06960566 n 0000 ~ 06961399 n 0000 | a branch of the Indo-European languages that (judging from inscriptions and place names) was spread widely over Europe in the pre-Christian era -06960566 10 n 03 Gaelic 0 Goidelic 0 Erse 0 005 @ 06960298 n 0000 + 02957823 a 0102 ~ 06960778 n 0000 ~ 06961122 n 0000 ~ 06961221 n 0000 | any of several related languages of the Celts in Ireland and Scotland -06960778 10 n 02 Irish 0 Irish_Gaelic 0 005 @ 06960566 n 0000 ;r 08859173 n 0000 + 03003744 a 0101 ~ 06960948 n 0000 ~ 06961033 n 0000 | the Celtic language of Ireland -06960948 10 n 01 Old_Irish 0 001 @ 06960778 n 0000 | Irish Gaelic up to about 1100 -06961033 10 n 01 Middle_Irish 0 001 @ 06960778 n 0000 | Irish Gaelic from 1100 to 1500 -06961122 10 n 02 Scottish_Gaelic 0 Scots_Gaelic 0 001 @ 06960566 n 0000 | the Gaelic of Scotland -06961221 10 n 01 Manx 0 002 @ 06960566 n 0000 + 03084548 a 0101 | the ancient Gaelic formerly spoken on the Isle of Man; the language is sometimes used on ceremonial occasions -06961399 10 n 02 Brythonic 0 Brittanic 0 004 @ 06960298 n 0000 ~ 06961557 n 0000 ~ 06961681 n 0000 ~ 06961771 n 0000 | a southern group of Celtic languages -06961557 10 n 02 Welsh 0 Cymric 0 003 @ 06961399 n 0000 ;r 08894456 n 0000 + 03130073 a 0101 | a Celtic language of Wales -06961681 10 n 01 Cornish 0 001 @ 06961399 n 0000 | a Celtic language spoken in Cornwall -06961771 10 n 01 Breton 0 001 @ 06961399 n 0000 | a Celtic language of Brittany -06961853 10 n 02 Italic 0 Italic_language 0 004 @ 06941644 n 0000 + 03075662 a 0101 ~ 06962060 n 0000 ~ 06962600 n 0000 | a branch of the Indo-European languages of which Latin is the chief representative -06962060 10 n 01 Osco-Umbrian 0 004 @ 06961853 n 0000 ~ 06962244 n 0000 ~ 06962350 n 0000 ~ 06962454 n 0000 | a group of dead languages of ancient Italy; they were displace by Latin -06962244 10 n 01 Umbrian 0 001 @ 06962060 n 0000 | an extinct Italic language of ancient southern Italy -06962350 10 n 01 Oscan 0 001 @ 06962060 n 0000 | an extinct Italic language of ancient southern Italy -06962454 10 n 01 Sabellian 0 001 @ 06962060 n 0000 | an extinct Osco-Umbrian language of ancient Italy that survives only in a few inscriptions -06962600 10 n 01 Latin 0 015 @ 06961853 n 0000 + 10248091 n 0101 -c 00113009 r 0000 -c 00251304 r 0000 -c 00251408 r 0000 -c 00038175 n 0000 -c 06293229 n 0000 ~ 06962954 n 0000 ~ 06963082 n 0000 ~ 06963292 n 0000 ~ 06963571 n 0000 ~ 06963822 n 0000 ~ 06963951 n 0000 -c 13740591 n 0000 -c 15204201 n 0000 | any dialect of the language of ancient Rome -06962954 10 n 01 Old_Latin 0 001 @ 06962600 n 0000 | the oldest recorded Latin (dating back at early as the 6th century B.C.) -06963082 10 n 01 classical_Latin 0 001 @ 06962600 n 0000 | the language of educated people in ancient Rome; "Latin is a language as dead as dead can be. It killed the ancient Romans--and now it's killing me" -06963292 10 n 01 Low_Latin 0 003 @ 06962600 n 0000 ~ 06963429 n 0000 ~ 06963704 n 0000 | any dialect of Latin other than the classical -06963429 10 n 01 Vulgar_Latin 0 001 @ 06963292 n 0000 | nonclassical Latin dialects spoken in the Roman Empire; source of Romance languages -06963571 10 n 02 Late_Latin 0 Biblical_Latin 0 001 @ 06962600 n 0000 | the form of Latin written between the 3rd and 8th centuries -06963704 10 n 01 Medieval_Latin 0 001 @ 06963292 n 0000 | Latin used for liturgical purposes during the Middle Ages -06963822 10 n 02 Neo-Latin 0 New_Latin 0 001 @ 06962600 n 0000 | Latin since the Renaissance; used for scientific nomenclature -06963951 10 n 03 Romance 0 Romance_language 0 Latinian_language 0 010 @ 06962600 n 0000 ~ 06905513 n 0000 ~ 06964247 n 0000 ~ 06964901 n 0000 ~ 06966310 n 0000 ~ 06966454 n 0000 ~ 06966825 n 0000 ~ 06967529 n 0000 ~ 06967710 n 0000 ~ 06968343 n 0000 | the group of languages derived from Latin -06964247 10 n 01 Italian 0 009 @ 06963951 n 0000 ;r 08801678 n 0000 + 02957066 a 0101 -c 06342362 n 0000 -c 06342490 n 0000 ~ 06964485 n 0000 ~ 06964600 n 0000 ~ 06964788 n 0000 -c 10025635 n 0000 | the Romance language spoken in Italy -06964485 10 n 01 Old_Italian 0 001 @ 06964247 n 0000 | the Italian language up to the middle of the 16th century -06964600 10 n 01 Sardinian 0 002 @ 06964247 n 0000 + 03025403 a 0101 | the Italian dialect spoken in Sardinia; sometimes considered a separate language with many loan words from Spanish -06964788 10 n 01 Tuscan 0 001 @ 06964247 n 0000 | a dialect of Italian spoken in Tuscany (especially Florence) -06964901 10 n 01 French 0 013 @ 06963951 n 0000 ;r 08929922 n 0000 -u 01004051 a 0000 -u 01130735 n 0000 ~ 06965249 n 0000 ~ 06965406 n 0000 ~ 06965580 n 0000 ~ 06965698 n 0000 ~ 06965834 n 0000 ~ 06965961 n 0000 ~ 06966070 n 0000 -u 07156219 n 0000 -u 10052244 n 0000 | the Romance language spoken in France and in countries colonized by France -06965249 10 n 02 Langue_d'oil 0 Langue_d'oil_French 0 001 @ 06964901 n 0000 | medieval provincial dialects of French spoken in central and northern France -06965406 10 n 02 Langue_d'oc 0 Langue_d'oc_French 0 002 @ 06964901 n 0000 ~ 06966190 n 0000 | medieval provincial dialects of French formerly spoken in the south of France -06965580 10 n 01 Old_French 0 001 @ 06964901 n 0000 | the earliest form of the French language; 9th to 15th century -06965698 10 n 03 Norman-French 0 Norman_French 0 Old_North_French 0 001 @ 06964901 n 0000 | the medieval Norman dialect of Old French -06965834 10 n 02 Anglo-French 0 Anglo-Norman 0 001 @ 06964901 n 0000 | the French (Norman) language used in medieval England -06965961 10 n 01 Canadian_French 0 001 @ 06964901 n 0000 | the French language as spoken in Quebec, Canada -06966070 10 n 01 Walloon 0 001 @ 06964901 n 0000 | a dialect of French spoken in Belgium and adjacent parts of France -06966190 10 n 02 Provencal 0 Occitan 0 001 @ 06965406 n 0000 | the medieval dialects of Langue d'oc (southern France) -06966310 10 n 01 Portuguese 0 003 @ 06963951 n 0000 ;r 08984788 n 0000 + 02959007 a 0101 | the Romance language spoken in Portugal and Brazil -06966454 10 n 01 Galician 0 002 @ 06963951 n 0000 ;r 09023321 n 0000 | a language spoken in Galicia in northwestern Spain; it is between Portuguese and Spanish but closer to Portuguese; sometimes considered a Portuguese or Spanish dialect -06966695 10 n 01 Basque 0 001 @ 06904171 n 0000 | the language of the Basque people; of no known relation to any other language -06966825 10 n 01 Spanish 0 013 @ 06963951 n 0000 ;r 09023321 n 0000 -c 00517564 n 0000 -c 06340395 n 0000 -c 06340563 n 0000 -c 06341862 n 0000 -c 06342015 n 0000 -c 06342182 n 0000 ~ 06967185 n 0000 ~ 06967282 n 0000 ~ 06967428 n 0000 -c 10025195 n 0000 -c 11084110 n 0000 | the Romance language spoken in most of Spain and the countries colonized by Spain -06967185 10 n 01 Castilian 0 001 @ 06966825 n 0000 | the Spanish language as spoken in Castile -06967282 10 n 02 Judeo-Spanish 0 Ladino 0 001 @ 06966825 n 0000 | the Spanish dialect spoken by Sephardic Jews but written in the Hebrew script -06967428 10 n 01 Mexican_Spanish 0 001 @ 06966825 n 0000 | the dialect of Spanish spoken in Mexico -06967529 10 n 01 Catalan 0 003 @ 06963951 n 0000 ;r 09023321 n 0000 + 03053859 a 0101 | the Romance language spoken in Catalonia in eastern Spain (related to Spanish and Occitan) -06967710 10 n 02 Rhaeto-Romance 0 Rhaeto-Romanic 0 004 @ 06963951 n 0000 ~ 06967935 n 0000 ~ 06968052 n 0000 ~ 06968174 n 0000 | Romance dialects spoken in parts of southeastern Switzerland and northern Italy and the Tyrol -06967935 10 n 02 Friulian 0 Friuli 0 001 @ 06967710 n 0000 | a Rhaeto-Romance dialect spoken in northeastern Italy -06968052 10 n 01 Ladin 0 001 @ 06967710 n 0000 | a Rhaeto-Romance dialect of Romansh spoken in southeastern Switzerland -06968174 10 n 02 Romansh 0 Rumansh 0 001 @ 06967710 n 0000 | the Rhaeto-Romance language spoken in southeastern Switzerland; it is an official language of Switzerland -06968343 10 n 02 Romanian 0 Rumanian 0 001 @ 06963951 n 0000 | an eastern Romance language spoken in Romania -06968454 10 n 03 Elamitic 0 Elamite 0 Susian 0 001 @ 06904171 n 0000 | an extinct ancient language of unknown affinities; spoken by the Elamites -06968601 10 n 02 Kassite 0 Cassite 0 001 @ 06904171 n 0000 | an ancient language spoken by the Kassites -06968707 10 n 01 Tocharian 0 003 @ 06941644 n 0000 ~ 06968909 n 0000 ~ 06969018 n 0000 | a branch of the Indo-European language family that originated in central Asia during the first millennium A.D. -06968909 10 n 03 Turfan 0 East_Tocharian 0 Turfan_dialect 0 001 @ 06968707 n 0000 | a dialect of Tocharian -06969018 10 n 03 Kuchean 0 West_Tocharian 0 Kuchean_dialect 1 001 @ 06968707 n 0000 | a dialect of Tocharian -06969129 10 n 02 Sanskrit 0 Sanskritic_language 0 019 @ 06972090 n 0000 ;c 06236802 n 0000 -c 06238036 n 0000 -c 06238265 n 0000 -c 06238574 n 0000 -c 06464419 n 0000 -c 06466030 n 0000 ~ 06969822 n 0000 ~ 06969916 n 0000 ~ 06970103 n 0000 ~ 06970510 n 0000 ~ 06970645 n 0000 ~ 06971281 n 0000 ~ 06971454 n 0000 ~ 06971605 n 0000 ~ 06971741 n 0000 -c 09524263 n 0000 -c 09524671 n 0000 -c 13802098 n 0000 | (Hinduism) an ancient language of India (the language of the Vedas and of Hinduism); an official language of India although it is now used only for religious purposes -06969705 10 n 01 Sindhi 0 001 @ 06972090 n 0000 | the Indic language of Sind which is spoken also in western India -06969822 10 n 02 Romany 0 Gypsy 0 001 @ 06969129 n 0000 | the Indic language of the Gypsies -06969916 10 n 01 Urdu 0 001 @ 06969129 n 0000 | the official literary language of Pakistan, closely related to Hindi; widely used in India (mostly by Moslems); written in Arabic script -06970103 10 n 01 Hindi 0 003 @ 06969129 n 0000 + 02923745 a 0102 ~ 06970373 n 0000 | the most widely spoken of modern Indic vernaculars; spoken mostly in the north of India; along with English it is the official language of India; usually written in Devanagari script -06970373 10 n 03 Hindustani 0 Hindoostani 0 Hindostani 0 002 @ 06970103 n 0000 + 02971672 a 0101 | a form of Hindi spoken around Delhi -06970510 10 n 01 Bihari 0 001 @ 06969129 n 0000 | the Indic language spoken in Bihar (and by some people in Pakistan and Bangladesh) -06970645 10 n 01 Magadhan 0 004 @ 06969129 n 0000 ~ 06970784 n 0000 ~ 06970946 n 0000 ~ 06971123 n 0000 | a subfamily of Indic languages -06970784 10 n 02 Assamese 0 Asamiya 0 002 @ 06970645 n 0000 + 02977465 a 0101 | the Magadhan language spoken by the Assamese people; closely related to Bengali -06970946 10 n 02 Bengali 0 Bangla 0 002 @ 06970645 n 0000 + 03047714 a 0101 | a Magadhan language spoken by the Bengali people; the official language of Bangladesh and Bengal -06971123 10 n 01 Oriya 0 001 @ 06970645 n 0000 | a Magadhan language that is spoken by the Oriya and is the official language of the Indian state of Orissa -06971281 10 n 02 Marathi 0 Mahratti 0 001 @ 06969129 n 0000 | an Indic language; the state language of Maharashtra in west central India; written in the Devanagari script -06971454 10 n 02 Gujarati 0 Gujerati 0 001 @ 06969129 n 0000 | the Indic language spoken by the people of India who live in Gujarat in western India -06971605 10 n 02 Punjabi 0 Panjabi 0 001 @ 06969129 n 0000 | the Indic language spoken by most people in Punjab in northwestern India -06971741 10 n 03 Sinhalese 0 Singhalese 0 Sinhala 0 001 @ 06969129 n 0000 | the Indic language spoken by the people of Sri Lanka -06971872 10 n 02 Indo-Iranian 0 Indo-Iranian_language 0 003 @ 06941644 n 0000 ~ 06972090 n 0000 ~ 06973610 n 0000 | the branch of the Indo-European family of languages including the Indic and Iranian language groups -06972090 10 n 02 Indic 0 Indo-Aryan 0 007 @ 06971872 n 0000 ~ 06969129 n 0000 ~ 06969705 n 0000 ~ 06972311 n 0000 ~ 06972985 n 0000 ~ 06973092 n 0000 ~ 06973505 n 0000 | a branch of the Indo-Iranian family of languages -06972311 10 n 03 Dard 0 Dardic 0 Dardic_language 0 005 @ 06972090 n 0000 ~ 06972558 n 0000 ~ 06972654 n 0000 ~ 06972756 n 0000 ~ 06972874 n 0000 | any of a group of Indic languages spoken in Kashmir and eastern Afghanistan and northern Pakistan -06972558 10 n 01 Shina 0 001 @ 06972311 n 0000 | a Dardic language spoken in northern Kashmir -06972654 10 n 01 Khowar 0 001 @ 06972311 n 0000 | a Dardic language spoken in northwestern Pakistan -06972756 10 n 01 Kafiri 0 001 @ 06972311 n 0000 | a Dardic language spoken by the Kafir in northeastern Afghanistan -06972874 10 n 01 Kashmiri 0 002 @ 06972311 n 0000 + 03078234 a 0101 | the official state language of Kashmir -06972985 10 n 01 Nepali 0 002 @ 06972090 n 0000 + 02971839 a 0102 | the official state language of Nepal -06973092 10 n 01 Prakrit 0 003 @ 06972090 n 0000 + 02761569 a 0101 ~ 06973334 n 0000 | any of the vernacular Indic languages of north and central India (as distinguished from Sanskrit) recorded from the 3rd century BC to the 4th century AD -06973334 10 n 01 Pali 0 001 @ 06973092 n 0000 | an ancient Prakrit language (derived from Sanskrit) that is the scriptural and liturgical language of Theravada Buddhism -06973505 10 n 01 Prakrit 1 002 @ 06972090 n 0000 + 02761569 a 0101 | any of the modern Indic languages -06973610 10 n 02 Iranian 0 Iranian_language 0 013 @ 06971872 n 0000 + 03075191 a 0101 ~ 06973941 n 0000 ~ 06974047 n 0000 ~ 06974127 n 0000 ~ 06974283 n 0000 ~ 06974390 n 0000 ~ 06974558 n 0000 ~ 06974687 n 0000 ~ 06974846 n 0000 ~ 06975132 n 0000 ~ 06975368 n 0000 ~ 06975469 n 0000 | the modern Persian language spoken in Iran -06973941 10 n 02 Avestan 0 Zend 0 002 @ 06973610 n 0000 + 02926519 a 0101 | an ancient Iranian language -06974047 10 n 01 Gathic 0 001 @ 06973610 n 0000 | an ancient Iranian language -06974127 10 n 02 Persian 0 Farsi 0 003 @ 06973610 n 0000 + 03075191 a 0102 -c 15223916 n 0000 | the language of Persia (Iran) in any of its ancient forms -06974283 10 n 02 Dari 0 Dari_Persian 0 001 @ 06973610 n 0000 | an Iranian language spoken in Afghanistan -06974390 10 n 03 Tajiki 0 Tajik 0 Tadzhik 0 001 @ 06973610 n 0000 | the Iranian language of the Tajik that is closely related to Farsi; spoken in Iran and Tajikistan -06974558 10 n 01 Kurdish 0 001 @ 06973610 n 0000 | an Iranian language spoken in Turkey and Iran and Iraq and Syria and Russia -06974687 10 n 02 Balochi 0 Baluchi 0 001 @ 06973610 n 0000 | an Iranian language spoken in Pakistan and Iran and Afghanistan and Russia and the Persian gulf -06974846 10 n 02 Pahlavi 0 Pehlevi 0 002 @ 06973610 n 0000 ~ 06975007 n 0000 | the Iranian language of the Zoroastrian literature of the 3rd to 10th centuries -06975007 10 n 01 Parthian 0 001 @ 06974846 n 0000 | the Iranian language spoken in the Parthian kingdom (250 BC to AD 226) -06975132 10 n 05 Pashto 0 Pashtu 0 Paxto 0 Afghani 0 Afghan 0 004 @ 06973610 n 0000 + 03003928 a 0502 + 03003928 a 0401 -c 08321956 n 0000 | an Iranian language spoken in Afghanistan and Pakistan; the official language of Afghanistan -06975368 10 n 01 Ossete 0 001 @ 06973610 n 0000 | a northeastern Iranian language spoken in Russia -06975469 10 n 01 Scythian 0 002 @ 06973610 n 0000 + 02793793 a 0101 | the Iranian language spoken by the ancient Scythians -06975594 10 n 02 Anatolian 0 Anatolian_language 0 006 @ 06941644 n 0000 ~ 06975902 n 0000 ~ 06976087 n 0000 ~ 06976161 n 0000 ~ 06976244 n 0000 ~ 06976318 n 0000 | an extinct branch of the Indo-European family of languages known from inscriptions and important in the reconstruction of Proto-Indo European -06975902 10 n 01 Hittite 0 001 @ 06975594 n 0000 | the language of the Hittites and the principal language of the Anatolian group of languages; deciphered from cuneiform inscriptions -06976087 10 n 01 Lycian 0 001 @ 06975594 n 0000 | an Anatolian language -06976161 10 n 02 Luwian 0 Luvian 0 001 @ 06975594 n 0000 | an Anatolian language -06976244 10 n 01 Lydian 0 001 @ 06975594 n 0000 | an Anatolian language -06976318 10 n 01 Palaic 0 001 @ 06975594 n 0000 | an Anatolian language -06976392 10 n 03 Greek 0 Hellenic 0 Hellenic_language 0 009 @ 06941644 n 0000 ;r 08780881 n 0000 + 03016202 a 0203 + 03016202 a 0101 ~ 06976680 n 0000 ~ 06977087 n 0000 ~ 06977190 n 0000 ~ 06977328 n 0000 ~ 06977434 n 0000 | the Hellenic branch of the Indo-European family of languages -06976680 10 n 02 Modern_Greek 0 New_Greek 0 003 @ 06976392 n 0000 ~ 06976833 n 0000 ~ 06976959 n 0000 | the Greek language as spoken and written today -06976833 10 n 02 Romaic 0 Demotic 0 003 @ 06976680 n 0000 + 02710672 a 0201 + 03112046 a 0101 | the modern Greek vernacular -06976959 10 n 01 Katharevusa 0 001 @ 06976680 n 0000 | literary style of Modern Greek containing features borrowed from Koine -06977087 10 n 01 Late_Greek 0 001 @ 06976392 n 0000 | the Greek language in the 3rd to 8th centuries -06977190 10 n 03 Medieval_Greek 0 Middle_Greek 0 Byzantine_Greek 0 001 @ 06976392 n 0000 | the Greek language from about 600 to 1200 AD -06977328 10 n 01 Koine 0 001 @ 06976392 n 0000 | a Greek dialect that flourished under the Roman Empire -06977434 10 n 01 Ancient_Greek 0 005 @ 06976392 n 0000 ~ 06977610 n 0000 ~ 06977800 n 0000 ~ 06977948 n 0000 ~ 06978068 n 0000 | the Greek language prior to the Roman Empire -06977610 10 n 04 Attic 0 Ionic 0 Ionic_dialect 0 Classical_Greek 0 002 @ 06977434 n 0000 + 03017286 a 0101 | the dialect of Ancient Greek spoken and written in Attica and Athens and Ionia -06977800 10 n 03 Aeolic 0 Aeolic_dialect 0 Eolic 0 001 @ 06977434 n 0000 | the dialect of Ancient Greek spoken in Thessaly and Boeotia and Aeolis -06977948 10 n 02 Arcadic 0 Arcadic_dialect 0 001 @ 06977434 n 0000 | the dialect of Ancient Greek spoken by Arcadians -06978068 10 n 02 Doric 0 Doric_dialect 0 001 @ 06977434 n 0000 | the dialect of Ancient Greek spoken in Doris -06978180 10 n 02 Caucasian 0 Caucasian_language 0 005 @ 06904171 n 0000 ~ 06978422 n 0000 ~ 06978527 n 0000 ~ 06978766 n 0000 ~ 06978904 n 0000 | a number of languages spoken in the Caucasus that are unrelated to languages spoken elsewhere -06978422 10 n 01 Chechen 0 001 @ 06978180 n 0000 | a northern Caucasian language spoken by the Chechen -06978527 10 n 01 Circassian 0 002 @ 06978180 n 0000 ~ 06978656 n 0000 | a northern Caucasian language spoken by the Circassian -06978656 10 n 02 Abkhazian 0 Abkhasian 0 001 @ 06978527 n 0000 | a Circassian language spoken by the Abkhaz -06978766 10 n 01 Georgian 0 001 @ 06978180 n 0000 | a southern Caucasian language with 3 million speakers and a long literary tradition -06978904 10 n 01 Ubykh 0 001 @ 06978180 n 0000 | an extinct Caucasian language spoken exclusively in Turkey -06979014 10 n 03 Dravidian 0 Dravidic 0 Dravidian_language 0 005 @ 06904171 n 0000 ~ 06979249 n 0000 ~ 06980465 n 0000 ~ 06981498 n 0000 ~ 06982221 n 0000 | a large family of languages spoken in south and central India and Sri Lanka -06979249 10 n 01 South_Dravidian 0 008 @ 06979014 n 0000 ~ 06979492 n 0000 ~ 06979645 n 0000 ~ 06979743 n 0000 ~ 06979957 n 0000 ~ 06980085 n 0000 ~ 06980175 n 0000 ~ 06980315 n 0000 | a Dravidian language spoken primarily in southern India -06979492 10 n 01 Irula 0 001 @ 06979249 n 0000 | a Dravidian language closely related to Tamil that is spoken in a hilly section of southwestern India -06979645 10 n 02 Kota 0 Kotar 0 001 @ 06979249 n 0000 | a Dravidian language spoken by the Kota -06979743 10 n 01 Toda 0 001 @ 06979249 n 0000 | the Dravidian language spoken by the Toda in southern India -06979853 10 n 01 Badaga 0 001 @ 06979957 n 0000 | the dialect of Kannada that is spoken by the Badaga -06979957 10 n 02 Kannada 0 Kanarese 0 002 @ 06979249 n 0000 ~ 06979853 n 0000 | a Dravidian language spoken in southern India -06980085 10 n 01 Tulu 0 001 @ 06979249 n 0000 | a Dravidian language spoken by the Tulu -06980175 10 n 01 Malayalam 0 001 @ 06979249 n 0000 | a Dravidian language (closely related to Tamil) that is spoken in southwestern India -06980315 10 n 01 Tamil 0 001 @ 06979249 n 0000 | the Dravidian language spoken since prehistoric times by the Tamil in southern India and Sri Lanka -06980465 10 n 01 South-Central_Dravidian 0 008 @ 06979014 n 0000 ~ 06980721 n 0000 ~ 06980837 n 0000 ~ 06980971 n 0000 ~ 06981085 n 0000 ~ 06981187 n 0000 ~ 06981289 n 0000 ~ 06981401 n 0000 | a Dravidian language spoken primarily in south central India -06980721 10 n 01 Telugu 0 001 @ 06980465 n 0000 | a Dravidian language spoken by the Telugu in southeastern India -06980837 10 n 01 Savara 0 001 @ 06980465 n 0000 | a Dravidian language spoken by the Savara in southeastern India (north of Madras) -06980971 10 n 01 Gondi 0 001 @ 06980465 n 0000 | a Dravidian language spoken by the Gond in south central India -06981085 10 n 01 Pengo 0 001 @ 06980465 n 0000 | a Dravidian language spoken in south central India -06981187 10 n 01 Manda 0 001 @ 06980465 n 0000 | a Dravidian language spoken in south central India -06981289 10 n 01 Kui 0 001 @ 06980465 n 0000 | the Dravidian language spoken by the Kui in southeastern India -06981401 10 n 01 Kuvi 0 001 @ 06980465 n 0000 | a Dravidian language spoken in southeast India -06981498 10 n 01 Central_Dravidian 0 006 @ 06979014 n 0000 ~ 06981706 n 0000 ~ 06981818 n 0000 ~ 06981920 n 0000 ~ 06982022 n 0000 ~ 06982125 n 0000 | a Dravidian language spoken primarily in central India -06981706 10 n 01 Kolami 0 001 @ 06981498 n 0000 | the Dravidian language spoken by the Kolam in central India -06981818 10 n 01 Naiki 0 001 @ 06981498 n 0000 | a Dravidian language spoken in south central India -06981920 10 n 01 Parji 0 001 @ 06981498 n 0000 | a Dravidian language spoken in south central India -06982022 10 n 01 Ollari 0 001 @ 06981498 n 0000 | a Dravidian language spoken in south central India -06982125 10 n 01 Gadaba 0 001 @ 06981498 n 0000 | the Dravidian language spoken by the Gadaba -06982221 10 n 01 North_Dravidian 0 004 @ 06979014 n 0000 ~ 06982391 n 0000 ~ 06982487 n 0000 ~ 06982581 n 0000 | a Dravidian language spoken primarily in eastern India -06982391 10 n 01 Kurux 0 001 @ 06982221 n 0000 | a Dravidian language spoken in eastern India -06982487 10 n 01 Malto 0 001 @ 06982221 n 0000 | the Dravidian language spoken by the Malto -06982581 10 n 01 Brahui 0 001 @ 06982221 n 0000 | an isolated Dravidian language spoken by the Brahui in Pakistan -06982697 10 n 02 Hausa 0 Haussa 0 001 @ 06983521 n 0000 | the chief member of the Chadic family of Afroasiatic languages; widely used as a trading language -06982855 10 n 02 Bole 0 Bolanci 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria and closely related to Hausa -06982989 10 n 01 Angas 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria and closely related to Hausa -06983114 10 n 03 Ron 0 Bokkos 0 Daffo 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria -06983225 10 n 01 Bade 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria -06983320 10 n 01 Warji 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria -06983416 10 n 02 Zaar 0 Sayanci 0 001 @ 06983521 n 0000 | a Chadic language spoken in northern Nigeria -06983521 10 n 01 West_Chadic 0 008 @ 06986276 n 0000 ~ 06982697 n 0000 ~ 06982855 n 0000 ~ 06982989 n 0000 ~ 06983114 n 0000 ~ 06983225 n 0000 ~ 06983320 n 0000 ~ 06983416 n 0000 | a group of Chadic languages spoken in northern Nigeria; Hausa in the most important member -06983795 10 n 03 Tera 0 Pidlimdi 0 Yamaltu 0 001 @ 06984953 n 0000 | a three-tone Chadic language -06983895 10 n 02 Bura 0 Pabir 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06983997 10 n 02 Higi 0 Kapsiki 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984101 10 n 02 Mandara 0 Wandala 0 001 @ 06984953 n 0000 | a Chadic language spoken in the Mandara mountains in Cameroon; has only two vowels -06984247 10 n 02 Matakam 0 Mafa 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984351 10 n 01 Sukur 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984446 10 n 03 Daba 0 Kola 0 Musgoi 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984556 10 n 01 Bata 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984650 10 n 01 Kotoko 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984746 10 n 03 Musgu 0 Munjuk 0 Mulwi 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984858 10 n 01 Gidar 0 001 @ 06984953 n 0000 | a Chadic language spoken south of Lake Chad -06984953 10 n 01 Biu-Mandara 0 012 @ 06986276 n 0000 ~ 06983795 n 0000 ~ 06983895 n 0000 ~ 06983997 n 0000 ~ 06984101 n 0000 ~ 06984247 n 0000 ~ 06984351 n 0000 ~ 06984446 n 0000 ~ 06984556 n 0000 ~ 06984650 n 0000 ~ 06984746 n 0000 ~ 06984858 n 0000 | a group of Chadic languages spoken in the border area between Cameroon and Nigeria south of Lake Chad -06985310 10 n 02 Somrai 0 Sibine 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad -06985404 10 n 01 Nancere 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad -06985490 10 n 01 Kera 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad -06985573 10 n 02 Dangla 0 Dangaleat 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad; uses seven vowels plus differences in vowel length -06985722 10 n 01 Mokulu 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad -06985807 10 n 01 Sokoro 0 001 @ 06985892 n 0000 | a Chadic language spoken in Chad -06985892 10 n 01 East_Chadic 0 007 @ 06986276 n 0000 ~ 06985310 n 0000 ~ 06985404 n 0000 ~ 06985490 n 0000 ~ 06985573 n 0000 ~ 06985722 n 0000 ~ 06985807 n 0000 | a group of Chadic languages spoken in Chad -06986100 10 n 01 Masa 0 001 @ 06986276 n 0000 | an independent group of closely related Chadic languages spoken in the area between the Biu-Mandara and East Chadic languages -06986276 10 n 03 Chad 0 Chadic 0 Chadic_language 0 005 @ 06986558 n 0000 ~ 06983521 n 0000 ~ 06984953 n 0000 ~ 06985892 n 0000 ~ 06986100 n 0000 | a family of Afroasiatic tonal languages (mostly two tones) spoken in the regions west and south of Lake Chad in north central Africa -06986558 10 n 06 Afroasiatic 0 Afro-Asiatic 0 Afroasiatic_language 0 Afrasian 0 Afrasian_language 0 Hamito-Semitic 0 008 @ 06904171 n 0000 ~ 06986276 n 0000 ~ 06986894 n 0000 ~ 06989869 n 0000 ~ 06990000 n 0000 ~ 06990544 n 0000 ~ 06990836 n 0000 ~ 06991117 n 0000 | a large family of related languages spoken both in Asia and Africa -06986894 10 n 01 Semitic 0 008 @ 06986558 n 0000 + 03115874 a 0101 ~ 06987525 n 0000 ~ 06987812 n 0000 ~ 06988057 n 0000 ~ 06988307 n 0000 ~ 06988913 n 0000 ~ 06989146 n 0000 | a major branch of the Afro-Asiatic language family -06987124 10 n 01 Hebrew 0 008 @ 06989146 n 0000 + 03039087 a 0103 + 10167448 n 0101 + 03039087 a 0101 -c 06340977 n 0000 -c 06341609 n 0000 ~ 06987409 n 0000 -c 10502329 n 0000 | the ancient Canaanitic language of the Hebrews that has been revived as the official language of Israel -06987409 10 n 01 Modern_Hebrew 0 001 @ 06987124 n 0000 | Hebrew used in Israel today; revived from ancient Hebrew -06987525 10 n 01 Akkadian 0 003 @ 06986894 n 0000 ;r 08916316 n 0000 ~ 06987659 n 0000 | an ancient branch of the Semitic languages -06987659 10 n 02 Assyrian_Akkadian 0 Assyrian 1 002 @ 06987525 n 0000 ;r 08916316 n 0000 | an extinct language of the Assyrians in ancient Mesopotamia -06987812 10 n 02 Amharic 0 Ethiopian_language 0 002 @ 06986894 n 0000 + 02616997 a 0101 | the dominant and official language of Ethiopia; a Semitic language much influenced by the Cushitic language with which Amhara have been in close contact -06988057 10 n 02 Arabic 0 Arabic_language 0 007 @ 06986894 n 0000 + 03044740 a 0101 -c 02667093 n 0000 -c 03797703 n 0000 -c 07227055 n 0000 -c 08791978 n 0000 -c 10585628 n 0000 | the Semitic language of the Arabs; spoken in a variety of dialects -06988307 10 n 01 Aramaic 0 005 @ 06986894 n 0000 + 02637063 a 0101 ~ 06988540 n 0000 ~ 06988684 n 0000 ~ 06988808 n 0000 | a Semitic language originally of the ancient Arameans but still spoken by other people in southwestern Asia -06988540 10 n 01 Biblical_Aramaic 0 001 @ 06988307 n 0000 | the form of Aramaic that was spoken in Palestine in the time of the New Testament -06988684 10 n 02 Assyrian_Neo-Aramaic 0 Assyrian 0 002 @ 06988307 n 0000 ;r 08913434 n 0000 | the language of modern Iraq -06988808 10 n 02 Mandaean 0 Mandean 0 001 @ 06988307 n 0000 | the form of Aramaic used by the Mandeans -06988913 10 n 03 Maltese 0 Maltese_language 0 Malti 0 001 @ 06986894 n 0000 | the national language of the Republic of Malta; a Semitic language derived from Arabic but with many loan words from Italian, Spanish, and Norman-French -06989146 10 n 02 Canaanitic 0 Canaanitic_language 0 005 @ 06986894 n 0000 ~ 06987124 n 0000 ~ 06989325 n 0000 ~ 06989473 n 0000 ~ 06989769 n 0000 | a group of Semitic languages -06989325 10 n 01 Canaanite 0 001 @ 06989146 n 0000 | the extinct language of the Semitic people who occupied Canaan before the Israelite conquest -06989473 10 n 01 Phoenician 0 003 @ 06989146 n 0000 ;r 08919693 n 0000 ~ 06989657 n 0000 | the extinct language of an ancient Semitic people who dominated trade in the ancient world -06989657 10 n 01 Punic 0 002 @ 06989473 n 0000 + 03104740 a 0102 | the Phoenician dialect of ancient Carthage -06989769 10 n 01 Ugaritic 0 001 @ 06989146 n 0000 | an extinct Semitic language of northern Syria -06989869 10 n 02 Hamitic 0 Hamitic_language 0 001 @ 06986558 n 0000 | a group of languages in northern Africa related to Semitic -06990000 10 n 01 Egyptian 0 003 @ 06986558 n 0000 + 02971469 a 0101 ~ 06990371 n 0000 | the ancient and now extinct language of Egypt under the Pharaohs; written records date back to 3000 BC -06990193 10 n 02 Demotic 1 Demotic_script 0 001 @ 06362260 n 0000 | a simplified cursive form of the ancient hieratic script; "Demotic script was eventually replaced by Greek" -06990371 10 n 01 Coptic 0 002 @ 06990000 n 0000 + 03056463 a 0101 | the liturgical language of the Coptic Church used in Egypt and Ethiopia; written in the Greek alphabet -06990544 10 n 01 Berber 0 002 @ 06986558 n 0000 ~ 06990741 n 0000 | a cluster of related dialects that were once the major language of northern Africa west of Egypt; now spoken mostly in Morocco -06990741 10 n 01 Tuareg 0 001 @ 06990544 n 0000 | the dialect of Berber spoken by the Tuareg -06990836 10 n 01 Cushitic 0 002 @ 06986558 n 0000 ~ 06991004 n 0000 | a group of languages spoken in Ethiopia and Somalia and northwestern Kenya and adjacent regions -06991004 10 n 01 Somali 0 002 @ 06990836 n 0000 + 03119182 a 0102 | the Cushitic language spoken by the Somali -06991117 10 n 01 Omotic 0 001 @ 06986558 n 0000 | a group of related languages spoken in a valley of southern Ethiopia; closely related to Cushitic languages -06991277 10 n 02 Niger-Kordofanian 0 Niger-Kordofanian_language 0 004 @ 06904171 n 0000 ;c 06995792 n 0000 ~ 06991622 n 0000 ~ 06991764 n 0000 | the family of languages that includes most of the languages spoken in Africa south of the Sahara; the majority of them are tonal languages but there are important exceptions (e.g., Swahili or Fula) -06991622 10 n 01 Kordofanian 0 001 @ 06991277 n 0000 | a group of languages spoken in the relatively small Kordofan area of the south Sudan -06991764 10 n 01 Niger-Congo 0 007 @ 06991277 n 0000 ~ 06906028 n 0000 ~ 06991980 n 0000 ~ 06996160 n 0000 ~ 06996309 n 0000 ~ 06997012 n 0000 ~ 06997168 n 0000 | a family of African language spoken in west Africa -06991980 10 n 02 Bantu 0 Bantoid_language 0 027 @ 06991764 n 0000 + 03046708 a 0101 ~ 06992600 n 0000 ~ 06992709 n 0000 ~ 06992807 n 0000 ~ 06992929 n 0000 ~ 06993015 n 0000 ~ 06993108 n 0000 ~ 06993225 n 0000 ~ 06993348 n 0000 ~ 06993445 n 0000 ~ 06993573 n 0000 ~ 06993647 n 0000 ~ 06993719 n 0000 ~ 06993870 n 0000 ~ 06993977 n 0000 ~ 06994089 n 0000 ~ 06994157 n 0000 ~ 06994225 n 0000 ~ 06994329 n 0000 ~ 06994918 n 0000 ~ 06995016 n 0000 ~ 06995135 n 0000 ~ 06995222 n 0000 ~ 06995439 n 0000 ~ 06995792 n 0000 ~ 06996029 n 0000 | a family of languages widely spoken in the southern half of the African continent -06992600 10 n 01 Chichewa 0 001 @ 06991980 n 0000 | the Bantu language of the Chewa of east central Africa -06992709 10 n 01 ChiMwini 0 001 @ 06991980 n 0000 | a Bantu language spoken in southern Somalia -06992807 10 n 01 Chishona 0 001 @ 06991980 n 0000 | a Bantu language that is one of the two major languages of Zimbabwe -06992929 10 n 01 Fang 0 001 @ 06991980 n 0000 | a Bantu language spoken in Cameroon -06993015 10 n 01 Gikuyu 0 001 @ 06991980 n 0000 | a Bantu language spoken in western Kenya -06993108 10 n 01 Giriama 0 001 @ 06991980 n 0000 | a Bantu language spoken in the coastal regions of eastern Kenya -06993225 10 n 01 Herero 0 001 @ 06991980 n 0000 | a Banto language spoken by the Herero in Namibia, Botswana, and Angola -06993348 10 n 01 Kamba 0 001 @ 06991980 n 0000 | a Bantu language spoken by the Kamba in Kenya -06993445 10 n 03 Kichaga 0 Chaga 0 Chagga 0 001 @ 06991980 n 0000 | a Bantu language spoken by the Chaga in northern Tanzania -06993573 10 n 01 Kinyarwanda 0 001 @ 06991980 n 0000 | a Bantu language -06993647 10 n 01 Kiswahili 0 001 @ 06991980 n 0000 | a Bantu language -06993719 10 n 01 Kongo 0 001 @ 06991980 n 0000 | the Bantu language spoken by the Kongo living in the tropical forests of Zaire and Congo and Angola -06993870 10 n 02 Luba 0 Tshiluba 0 001 @ 06991980 n 0000 | a Bantu language spoken in southeastern Congo -06993977 10 n 01 LuGanda 0 001 @ 06991980 n 0000 | the Bantu language of the Buganda people; spoken in Uganda -06994089 10 n 01 Luyia 0 001 @ 06991980 n 0000 | a Bantu language -06994157 10 n 01 Mashi 0 001 @ 06991980 n 0000 | a Bantu language -06994225 10 n 01 Mwera 0 001 @ 06991980 n 0000 | a Bantu language spoken in southern coastal Tanzania -06994329 10 n 01 Nguni 0 005 @ 06991980 n 0000 ~ 06994488 n 0000 ~ 06994608 n 0000 ~ 06994700 n 0000 ~ 06994792 n 0000 | a group of southern Bantu languages -06994488 10 n 02 Ndebele 0 Matabele 0 001 @ 06994329 n 0000 | a Bantu language sometimes considered a dialect of Zulu -06994608 10 n 01 Swazi 0 001 @ 06994329 n 0000 | a Bantu language closely related to Zulu -06994700 10 n 01 Xhosa 0 001 @ 06994329 n 0000 | a Bantu language closely related to Zulu -06994792 10 n 01 Zulu 0 001 @ 06994329 n 0000 | a Bantu language of considerable literary importance in southeastern Africa -06994918 10 n 01 Nyamwezi 0 001 @ 06991980 n 0000 | a Bantu language spoken in central Tanzania -06995016 10 n 01 Pokomo 0 001 @ 06991980 n 0000 | a Bantu language spoken in the Kenyan coastal areas of East Africa -06995135 10 n 01 Shona 0 001 @ 06991980 n 0000 | a Bantu language spoken in Zimbabwe -06995222 10 n 01 Sotho 0 004 @ 06991980 n 0000 + 03119441 a 0101 ~ 06995526 n 0000 ~ 06995664 n 0000 | any of the mutually intelligible southern Bantu languages of the Sotho in Botswana and South Africa and Lesotho -06995439 10 n 01 Umbundu 0 001 @ 06991980 n 0000 | a Bantu language spoken in Angola -06995526 10 n 02 Sesotho 0 Basuto 0 001 @ 06995222 n 0000 | the dialect of Sotho spoken by the Basotho; an official language of Lesotho -06995664 10 n 03 Tswana 0 Setswana 0 Sechuana 0 001 @ 06995222 n 0000 | the dialect of Sotho spoken by the Tswana in Botswana -06995792 10 n 01 Swahili 0 003 @ 06991980 n 0000 -c 03608504 n 0000 -c 06991277 n 0000 | the most widely spoken Bantu languages; the official language of Kenya and Tanzania and widely used as a lingua franca in east and central Africa -06996029 10 n 01 Tonga 0 001 @ 06991980 n 0000 | the language of the Tongan people of south central Africa (Zambia and Rhodesia) -06996160 10 n 02 Gur 0 Voltaic 0 001 @ 06991764 n 0000 | a group of Niger-Congo languages spoken primarily in southeastern Mali and northern Ghana -06996309 10 n 01 West_African 0 005 @ 06991764 n 0000 + 03042249 a 0101 ~ 06996510 n 0000 ~ 06996755 n 0000 ~ 06996894 n 0000 | a group of languages spoken in the extreme western part of West Africa -06996510 10 n 04 Fula 0 Ful 0 Fulani 0 Peul 0 001 @ 06996309 n 0000 | a family of languages of the Fulani of West Africa and used as a lingua franca in the sub-Saharan regions from Senegal to Chad; the best known of the West African languages -06996755 10 n 01 Serer 0 001 @ 06996309 n 0000 | a West African language closely related to Fula; spoken primarily in Senegal and Gambia -06996894 10 n 01 Wolof 0 001 @ 06996309 n 0000 | the West African language of the Wolof in Senegal; related to Fula -06997012 10 n 01 Mande 0 001 @ 06991764 n 0000 | a group of African languages in the Niger-Congo group spoken from Senegal east as far as the Ivory Coast -06997168 10 n 01 Kwa 0 004 @ 06991764 n 0000 ~ 06997368 n 0000 ~ 06997486 n 0000 ~ 06997587 n 0000 | a group of African language in the Niger-Congo group spoken from the Ivory Coast east to Nigeria -06997368 10 n 02 Yoruba 0 Aku 0 001 @ 06997168 n 0000 | a Kwa language spoken by the Yoruba in southwestern Nigeria -06997486 10 n 01 Akan 0 001 @ 06997168 n 0000 | a Kwa language spoken in Ghana and the Ivory Coast -06997587 10 n 01 Ewe 0 001 @ 06997168 n 0000 | a Kwa language spoken by the Ewe in Ghana and Togo and Benin -06997697 10 n 02 Nilo-Saharan 0 Nilo-Saharan_language 0 004 @ 06904171 n 0000 ~ 06997938 n 0000 ~ 06998530 n 0000 ~ 06998631 n 0000 | a family of East African languages spoken by Nilotic peoples from the Sahara south to Kenya and Tanzania -06997938 10 n 01 Chari-Nile 0 002 @ 06997697 n 0000 ~ 06998108 n 0000 | a group of Nilo-Saharan language spoken in parts of the Sudan and Zaire and Uganda and Tanzania -06998108 10 n 02 Nilotic 0 Nilotic_language 0 005 @ 06997938 n 0000 + 03091464 a 0101 ~ 06998322 n 0000 ~ 06998392 n 0000 ~ 06998460 n 0000 | a group of languages of East Africa belonging to the Chari-Nile group -06998322 10 n 01 Dinka 0 001 @ 06998108 n 0000 | a Nilotic language -06998392 10 n 01 Luo 0 001 @ 06998108 n 0000 | a Nilotic language -06998460 10 n 01 Masai 0 001 @ 06998108 n 0000 | a Nilotic language -06998530 10 n 01 Saharan 0 001 @ 06997697 n 0000 | a Nilo-Saharan language spoken in parts of Chad -06998631 10 n 01 Songhai 0 001 @ 06997697 n 0000 | a Nilo-Saharan language spoken by the Songhai in Mali and Niger -06998748 10 n 04 artwork 0 art 0 graphics 1 nontextual_matter 0 005 @ 06873252 n 0000 #p 06589574 n 0000 + 09812338 n 0201 ~ 06999233 n 0000 ~ 07003119 n 0000 | photographs or other visual representations in a printed publication; "the publisher was responsible for all the artwork in the book" -06999045 10 n 01 graphic_design 0 002 @ 06873252 n 0000 + 10144055 n 0101 | visual communication by a skillful combination of text and pictures in advertisements, magazines, books, etc. -06999233 10 n 01 illustration 0 006 @ 06998748 n 0000 + 01668421 v 0101 + 01687401 v 0101 %p 06346891 n 0000 ~ 06999436 n 0000 ~ 06999647 n 0000 | artwork that helps make something clear or attractive -06999436 10 n 02 picture 0 pictorial_matter 0 004 @ 06999233 n 0000 + 02861617 a 0102 + 01686956 v 0101 + 01686956 v 0102 | illustrations used to decorate or explain a text; "the dictionary had many pictures" -06999647 10 n 02 figure 0 fig 0 001 @ 06999233 n 0000 | a diagram or picture illustrating textual material; "the area covered can be seen from Figure 2" -06999802 10 n 01 chart 0 011 @ 06873252 n 0000 + 09910840 n 0101 ~ 07000065 n 0000 ~ 07001294 n 0000 ~ 07001446 n 0000 ~ 07001717 n 0000 ~ 07002022 n 0000 ~ 07002146 n 0000 ~ 07002312 n 0000 ~ 07002459 n 0000 ~ 07002599 n 0000 | a visual display of information -07000065 10 n 01 plot 1 002 @ 06999802 n 0000 + 00710922 v 0102 | a chart or map showing the movements or progress of an object -07000195 10 n 02 graph 0 graphical_record 0 020 @ 06873252 n 0000 + 02736808 a 0102 + 01755291 v 0101 + 01755137 v 0101 ~ 04168716 n 0000 %p 07000941 n 0000 ~ 07001065 n 0000 ~ 07003672 n 0000 ~ 07003807 n 0000 ~ 07003935 n 0000 ~ 07004057 n 0000 ~ 07004241 n 0000 ~ 07004564 n 0000 ~ 07004738 n 0000 ~ 07004962 n 0000 ~ 07005158 n 0000 ~ 07005270 n 0000 ~ 07005897 n 0000 ~ 07006018 n 0000 ~ 13789751 n 0000 | a visual representation of the relations between certain quantities plotted with reference to a set of axes -07000716 10 n 02 frequency-response_curve 0 frequency-response_characteristic 0 002 @ 07001065 n 0000 ;c 06099269 n 0000 | (electronics) a graph of frequency response with signal amplitude or gain plotted against frequency -07000941 10 n 01 curve 0 003 @ 13863771 n 0000 #p 07000195 n 0000 ~ 06029306 n 0000 | a line on a graph representing data -07001065 10 n 02 characteristic_curve 0 characterisic_function 0 003 @ 07000195 n 0000 ;c 06099269 n 0000 ~ 07000716 n 0000 | (electronics) graph showing how a particular characteristic of a device varies with other parameters -07001294 10 n 01 organization_chart 0 001 @ 06999802 n 0000 | a chart showing the lines of responsibility between departments of a large organization -07001446 10 n 01 color_chart 0 002 @ 06999802 n 0000 ~ 07001547 n 0000 | a chart displaying colors -07001547 10 n 02 color_circle 0 color_wheel 0 001 @ 07001446 n 0000 | a chart in which complementary colors (or their names) are arranged on opposite sides of a circle -07001717 10 n 02 bar_chart 0 bar_graph 0 002 @ 06999802 n 0000 ~ 07001865 n 0000 | a chart with bars whose lengths are proportional to quantities -07001865 10 n 01 histogram 0 001 @ 07001717 n 0000 | a bar chart representing a frequency distribution; heights of the bars represent observed frequencies -07002022 10 n 01 eye_chart 0 001 @ 06999802 n 0000 | a chart that is read from a fixed distance; used as a test of vision -07002146 10 n 01 flip_chart 0 001 @ 06999802 n 0000 | a chart with several sheets hinged at the top; sheets can be flipped over to present information sequentially -07002312 10 n 01 pie_chart 0 001 @ 06999802 n 0000 | a circular chart divided into triangular areas proportional to the percentages of the whole -07002459 10 n 01 star_chart 0 001 @ 06999802 n 0000 | a chart showing the relative positions of the stars in a particular part of the sky -07002599 10 n 01 profile 1 002 @ 06999802 n 0000 ~ 07002863 n 0000 | an analysis (often in graphical form) representing the extent to which something exhibits various characteristics; "a biochemical profile of blood"; "a psychological profile of serial killers" -07002863 10 n 01 population_profile 0 001 @ 07002599 n 0000 | a chart showing the number of people as a function of their ages -07002992 10 n 02 tabulation 0 tabular_matter 0 002 @ 06634376 n 0000 + 01745536 v 0104 | information set out in tabular form -07003119 10 n 01 drawing 0 004 @ 06998748 n 0000 + 01643464 v 0101 + 01690294 v 0101 ~ 07003568 n 0000 | an illustration that is drawn by hand and published in a book, magazine, or newspaper; "it is shown by the drawing in Fig. 7" -07003352 10 n 04 comic_strip 0 cartoon_strip 0 strip 0 funnies 0 004 @ 06780678 n 0000 #p 06267145 n 0000 #p 06596364 n 0000 %p 07003568 n 0000 | a sequence of drawings telling a story in a newspaper or comic book -07003568 10 n 01 frame 0 002 @ 07003119 n 0000 #p 07003352 n 0000 | a single drawing in a comic_strip -07003672 10 n 01 ballistocardiogram 0 002 @ 07000195 n 0000 #p 00142361 n 0000 | a graphical recording made by a ballistocardiograph -07003807 10 n 01 echoencephalogram 0 001 @ 07000195 n 0000 | a graphical image of the brain produced by an echoencephalograph -07003935 10 n 01 echocardiogram 0 001 @ 07000195 n 0000 | a graphical image of the heart produced by an echocardiograph -07004057 10 n 04 electrocardiogram 0 cardiogram 0 EKG 0 ECG 0 002 @ 07000195 n 0000 #p 00142361 n 0000 | a graphical recording of the cardiac cycle produced by an electrocardiograph -07004241 10 n 03 electroencephalogram 0 encephalogram 0 EEG 0 001 @ 07000195 n 0000 | a graphical record of electrical activity of the brain; produced by an electroencephalograph -07004422 10 n 02 electromyogram 0 EMG 0 001 @ 07005158 n 0000 | a graphical record of electric currents associated with muscle contractions -07004564 10 n 01 electroretinogram 0 001 @ 07000195 n 0000 | a graphical recording of the electrical activity of the retina that results when light is flashed into the eye -07004738 10 n 01 Laffer_curve 0 001 @ 07000195 n 0000 | a graph purporting to show the relation between tax rates and government income; income increases as tax rates increase up to an optimum beyond which income declines -07004962 10 n 01 learning_curve 0 001 @ 07000195 n 0000 | a graph showing the rate of learning (especially a graph showing the amount recalled as a function of the number of attempts to recall) -07005158 10 n 01 myogram 0 002 @ 07000195 n 0000 ~ 07004422 n 0000 | a graphical recording of muscle activity -07005270 10 n 03 radiation_pattern 0 radiation_diagram 0 pattern 0 002 @ 07000195 n 0000 %p 07005523 n 0000 | graphical representation (in polar or Cartesian coordinates) of the spatial distribution of radiation from an antenna as a function of angle -07005523 10 n 01 lobe 0 003 @ 13875571 n 0000 #p 07005270 n 0000 ~ 07005715 n 0000 | the enhanced response of an antenna in a given direction as indicated by a loop in its radiation pattern -07005715 10 n 01 major_lobe 0 001 @ 07005523 n 0000 | the maximum lobe in the radiation pattern which is intended to be along the forward axis and which gives the effect of a beam -07005897 10 n 01 tachogram 0 001 @ 07000195 n 0000 | a graphical record of speed and distance produced by a tachograph -07006018 10 n 01 thermogram 0 001 @ 07000195 n 0000 | a graphical record produced by a thermograph -07006119 10 n 05 dramaturgy 0 dramatic_art 0 dramatics 0 theater 0 theatre 0 025 @ 06252138 n 0000 + 02813315 a 0401 + 00796047 a 0401 + 03005423 a 0101 + 03005423 a 0102 -c 00264027 r 0000 -c 00264179 r 0000 -c 02705201 n 0000 -c 03049066 n 0000 -c 04417809 n 0000 ~ 07006712 n 0000 %p 07007684 n 0000 -c 07102593 n 0000 -c 08572162 n 0000 -c 08647616 n 0000 -c 09629477 n 0000 -c 01719921 v 0000 -c 01720491 v 0000 -c 01720660 v 0000 -c 01720773 v 0000 -c 01720980 v 0000 -c 01721169 v 0000 -c 01721415 v 0000 -c 01751173 v 0000 -c 01751389 v 0000 | the art of writing and producing plays -07006712 10 n 01 stage 0 004 @ 07006119 n 0000 + 00796715 a 0101 + 00796715 a 0102 + 01711445 v 0101 | the theater as a profession (usually `the stage'); "an early movie simply showed a long kiss by two actors of the contemporary stage" -07006951 10 n 01 production 0 004 @ 06891022 n 0000 + 02157100 v 0101 ~ 07007171 n 0000 %p 07007444 n 0000 | a presentation for the stage or screen or radio or television; "have you seen the new production of Hamlet?" -07007171 10 n 02 theatrical_production 0 staging 0 004 @ 07006951 n 0000 + 01711445 v 0201 ~ 07007341 n 0000 ~ 07007556 n 0000 | the production of a drama on the stage -07007341 10 n 01 coup_de_theatre 0 001 @ 07007171 n 0000 | a highly successful theatrical production -07007444 10 n 01 coup_de_theatre 1 002 @ 05643908 n 0000 #p 07006951 n 0000 | a sensational bit of stagecraft -07007556 10 n 01 summer_stock 0 001 @ 07007171 n 0000 | theatrical productions performed by a stock company during the summer -07007684 10 n 02 dramatic_composition 0 dramatic_work 0 007 @ 06362953 n 0000 #p 07006119 n 0000 ~ 07007945 n 0000 %p 07009421 n 0000 ~ 07009640 n 0000 ~ 07009808 n 0000 ~ 07009946 n 0000 | a play for performance on the stage or television or in a movie etc. -07007945 10 n 03 play 1 drama 1 dramatic_play 0 023 @ 07007684 n 0000 ;c 06376154 n 0000 + 02714800 a 0201 + 10030277 n 0201 + 01701311 v 0201 + 00988287 v 0201 + 01701311 v 0202 + 00988287 v 0202 + 07009538 n 0101 + 01716882 v 0101 + 01719921 v 0102 + 01716619 v 0101 + 01719302 v 0102 %p 06789080 n 0000 ~ 07008849 n 0000 ~ 07009161 n 0000 ~ 07009538 n 0000 %p 07009640 n 0000 ~ 07018313 n 0000 ~ 07018444 n 0000 ~ 07018604 n 0000 ~ 07018724 n 0000 ~ 07018824 n 0000 | a dramatic work intended for performance by actors on a stage; "he wrote several plays but only one was produced on Broadway" -07008544 10 n 01 afterpiece 0 002 @ 06269396 n 0000 ~ 07018211 n 0000 | a brief dramatic piece (usually comic) presented after a play -07008680 10 n 01 fragment 0 005 @ 06269396 n 0000 + 00517314 a 0102 + 00517314 a 0101 + 00338071 v 0102 ~ 07009042 n 0000 | an incomplete piece; "fragments of a play" -07008849 10 n 01 Grand_Guignol 0 001 @ 07007945 n 0000 | a play of a macabre or horrific nature -07008947 10 n 01 hiatus 0 001 @ 06269396 n 0000 | a missing piece (as a gap in a manuscript) -07009042 10 n 02 snatch 0 bit 1 001 @ 07008680 n 0000 | a small fragment; "overheard snatches of their conversation" -07009161 10 n 01 theater_of_the_absurd 0 001 @ 07007945 n 0000 | plays stressing the irrational or illogical aspects of life, usually to show that modern life is pointless; "Samuel Beckett and Eugene Ionesco have written plays for the theater of the absurd" -07009421 10 n 01 prologue 0 003 @ 06396930 n 0000 #p 07007684 n 0000 + 00902289 v 0101 | an introduction to a play -07009538 10 n 01 playlet 0 003 @ 07007945 n 0000 + 07018931 n 0101 + 07007945 n 0101 | a short play -07009640 10 n 01 act 0 005 @ 07007684 n 0000 #p 07007945 n 0000 #p 07026352 n 0000 #p 00528667 n 0000 %p 07009808 n 0000 | a subdivision of a play or opera or ballet -07009808 10 n 01 scene 0 002 @ 07007684 n 0000 #p 07009640 n 0000 | a subdivision of an act of a play; "the first act has three scenes" -07009946 10 n 03 script 0 book 1 playscript 0 010 @ 07007684 n 0000 + 06413889 n 0201 + 01756719 v 0101 ~ 07010275 n 0000 ~ 07010393 n 0000 ~ 07010541 n 0000 ~ 07012025 n 0000 ~ 07012135 n 0000 ~ 07012279 n 0000 ~ 07012414 n 0000 | a written version of a play or other dramatic composition; used in preparing for a performance -07010275 10 n 02 promptbook 0 prompt_copy 0 001 @ 07009946 n 0000 | the copy of the playscript used by the prompter -07010393 10 n 01 continuity 0 001 @ 07009946 n 0000 | a detailed script used in making a film in order to avoid discontinuities from shot to shot -07010541 10 n 02 dialogue 0 dialog 0 003 @ 07009946 n 0000 ~ 07010692 n 0000 %p 07010821 n 0000 | the lines spoken by characters in drama or fiction -07010692 10 n 01 duologue 0 001 @ 07010541 n 0000 | a part of the script in which the speaking roles are limited to two actors -07010821 10 n 03 actor's_line 0 speech 2 words 0 007 @ 07012534 n 0000 #p 07010541 n 0000 ~ 07011075 n 0000 ~ 07011209 n 0000 ~ 07011387 n 0000 ~ 07011529 n 0000 ~ 07011689 n 0000 | words making up the dialogue of a play; "the actor forgot his speech" -07011075 10 n 01 aside 0 001 @ 07010821 n 0000 | a line spoken by an actor to the audience but not intended for others on the stage -07011209 10 n 01 cue 0 003 @ 07010821 n 0000 + 00877848 v 0103 ~ 07011803 n 0000 | an actor's line that immediately precedes and serves as a reminder for some action or speech -07011387 10 n 01 monologue 1 003 @ 07010821 n 0000 + 10329035 n 0101 + 00964478 v 0101 | a (usually long) dramatic speech by a single actor -07011529 10 n 01 soliloquy 1 002 @ 07010821 n 0000 + 00964478 v 0103 | a (usually long) dramatic speech intended to give the illusion of unspoken reflections -07011689 10 n 01 throwaway 2 001 @ 07010821 n 0000 | words spoken in a casual way with conscious under-emphasis -07011803 10 n 02 prompt 0 prompting 1 003 @ 07011209 n 0000 + 00877848 v 0201 + 00877848 v 0101 | a cue given to a performer (usually the beginning of the next line to be spoken); "the audience could hear his prompting" -07012025 10 n 01 libretto 0 002 @ 07009946 n 0000 + 10258152 n 0101 | the words of an opera or musical play -07012135 10 n 01 scenario 0 002 @ 07009946 n 0000 + 10555936 n 0101 | an outline or synopsis of a play (or, by extension, of a literary work) -07012279 10 n 01 screenplay 0 001 @ 07009946 n 0000 | a script for a film including dialogue and descriptions of characters and sets -07012414 10 n 01 shooting_script 0 001 @ 07009946 n 0000 | the final detailed script for making a movie or TV program -07012534 10 n 01 line 2 014 @ 06387980 n 0000 #p 07052291 n 0000 #p 06624161 n 0000 ~ 06271055 n 0000 ~ 06343971 n 0000 ~ 06347996 n 0000 ~ 06348885 n 0000 ~ 06349030 n 0000 ~ 06384708 n 0000 ~ 06778777 n 0000 ~ 07010821 n 0000 ~ 07013269 n 0000 ~ 07152151 n 0000 ~ 13423267 n 0000 | text consisting of a row of words written across a page or computer screen; "the letter consisted of three short lines"; "there are six lines in every stanza" -07012979 10 n 01 line 6 001 @ 07245125 n 0000 | persuasive but insincere talk that is usually intended to deceive or impress; "`let me show you my etchings' is a rather worn line"; "he has a smooth line but I didn't fall for it"; "that salesman must have practiced his fast line of talk" -07013269 10 n 01 orphan 0 001 @ 07012534 n 0000 | the first line of a paragraph that is set as the last line of a page or column -07013400 10 n 03 spiel 0 patter 0 line_of_gab 0 002 @ 06260121 n 0000 + 00963155 v 0101 | plausible glib talk (especially useful to a salesperson) -07013549 10 n 01 string 0 005 @ 08459252 n 0000 %p 06284225 n 0000 ~ 06335162 n 0000 ~ 07013736 n 0000 ~ 07013933 n 0000 | a linear sequence of symbols (characters or words or phrases) -07013736 10 n 03 string_of_words 0 word_string 0 linguistic_string 0 004 @ 07013549 n 0000 @ 06282651 n 0000 ~ 06285090 n 0000 ~ 06313457 n 0000 | a linear sequence of words as spoken or written -07013933 10 n 01 substring 0 001 @ 07013549 n 0000 | a string that is part of a longer string -07014029 10 n 01 act 3 003 @ 06880249 n 0000 + 01721556 v 0103 + 00013615 v 0101 | a manifestation of insincerity; "he put on quite an act for her benefit" -07014187 10 n 01 lipogram 0 001 @ 06387980 n 0000 | a text that excludes a particular letter or particular letters of the alphabet -07014320 10 n 05 effusion 0 gush 0 outburst 0 blowup 0 ebullition 0 009 @ 06880249 n 0000 + 01795428 v 0402 + 00720524 a 0203 + 00882220 v 0202 + 00291286 v 0101 ~ 07014596 n 0000 ~ 07014752 n 0000 ~ 07014854 n 0000 ~ 07014997 n 0000 | an unrestrained expression of emotion -07014596 10 n 01 acting_out 0 001 @ 07014320 n 0000 | a (usually irritating) impulsive and uncontrollable outburst by a problem child or a neurotic adult -07014752 10 n 01 cry 2 002 @ 07014320 n 0000 + 00066191 v 0101 | a fit of weeping; "had a good cry" -07014854 10 n 01 explosion 1 002 @ 07014320 n 0000 + 00306539 v 0101 | a sudden outburst; "an explosion of laughter"; "an explosion of rage" -07014997 10 n 01 flare 1 001 @ 07014320 n 0000 | a sudden outburst of emotion; "she felt a flare of delight"; "she could not control her flare of rage" -07015151 10 n 01 collocation 0 001 @ 06284225 n 0000 | a grouping of words in a sentence -07015242 10 n 01 high-five 0 001 @ 06876309 n 0000 | a gesture of greeting or elation; one person's upraised palm slaps the upraised palm of another person -07015400 10 n 01 closet_drama 0 001 @ 06376154 n 0000 | drama more suitable for reading that for performing -07015510 10 n 01 comedy 0 014 @ 06376154 n 0000 + 02973392 a 0101 + 01265308 a 0103 ! 07016948 n 0101 ~ 07015841 n 0000 ~ 07015928 n 0000 ~ 07016098 n 0000 ~ 07016250 n 0000 ~ 07016428 n 0000 ~ 07016542 n 0000 ~ 07016648 n 0000 ~ 07016797 n 0000 ~ 07017733 n 0000 ~ 07017877 n 0000 | light and humorous drama with a happy ending -07015841 10 n 01 black_comedy 0 001 @ 07015510 n 0000 | comedy that uses black humor -07015928 10 n 01 commedia_dell'arte 0 001 @ 07015510 n 0000 | Italian comedy of the 16th to 18th centuries improvised from standardized situations and stock characters -07016098 10 n 01 dark_comedy 0 001 @ 07015510 n 0000 | a comedy characterized by grim or satiric humor; a comedy having gloomy or disturbing elements -07016250 10 n 03 farce 0 farce_comedy 0 travesty 0 003 @ 07015510 n 0000 + 01724083 v 0301 + 01266397 a 0101 | a comedy characterized by broad satire and improbable situations -07016428 10 n 01 high_comedy 0 001 @ 07015510 n 0000 | a sophisticated comedy; often satirizing genteel society -07016542 10 n 01 low_comedy 0 001 @ 07015510 n 0000 | a comedy characterized by slapstick and burlesque -07016648 10 n 01 melodrama 0 002 @ 07015510 n 0000 + 00796337 a 0102 | an extravagant comedy in which action is more salient than characterization -07016797 10 n 02 seriocomedy 0 tragicomedy 2 003 @ 07015510 n 0000 + 01363370 a 0202 + 01267762 a 0202 | a comedy with serious elements or overtones -07016948 10 n 01 tragedy 0 004 @ 06376154 n 0000 + 02973241 a 0101 ! 07015510 n 0101 ~ 07017161 n 0000 | drama in which the protagonist is overcome by some superior force or circumstance; excites terror or pity -07017161 10 n 01 tragicomedy 0 004 @ 07016948 n 0000 + 02973540 a 0101 + 01363370 a 0102 + 01267762 a 0102 | a dramatic composition involving elements of both tragedy and comedy usually with the tragic predominating -07017379 10 n 02 situation_comedy 0 sitcom 0 001 @ 06620579 n 0000 | a humorous television program based on situations that could arise in everyday life -07017534 10 n 01 special 1 001 @ 06620579 n 0000 | a television production that features a particular person or work or topic; "the last of a series of BBC specials on Iran is being shown tonight" -07017733 10 n 02 situation_comedy 1 sitcom 1 001 @ 07015510 n 0000 | a humorous drama based on situations that might arise in day-to-day life -07017877 10 n 01 slapstick 0 001 @ 07015510 n 0000 | a boisterous comedy with chases and collisions and practical jokes -07017999 10 n 01 burlesque 0 003 @ 06619065 n 0000 + 02873654 a 0101 + 00849939 v 0102 | a theatrical entertainment of broad and earthy humor; consists of comic skits and short turns (and sometimes striptease) -07018211 10 n 01 exode 0 001 @ 07008544 n 0000 | a farcical afterpiece in the ancient Roman theater -07018313 10 n 01 miracle_play 0 001 @ 07007945 n 0000 | a medieval play representing episodes from the life of a saint or martyr -07018444 10 n 01 morality_play 0 001 @ 07007945 n 0000 | an allegorical play popular in the 15th and 16th centuries; characters personified virtues and vices -07018604 10 n 01 mystery_play 0 001 @ 07007945 n 0000 | a medieval play representing episodes from the life of Christ -07018724 10 n 01 Passion_play 0 001 @ 07007945 n 0000 | a play representing the Passion of Christ -07018824 10 n 01 satyr_play 0 001 @ 07007945 n 0000 | an ancient Greek burlesque with a chorus of satyrs -07018931 10 n 01 play 3 008 @ 06619065 n 0000 + 07009538 n 0101 + 01716882 v 0101 + 01719921 v 0102 + 01716619 v 0101 + 01719302 v 0102 ~ 07019172 n 0000 ~ 07019396 n 0000 | a theatrical performance of a drama; "the play lasted two hours" -07019172 10 n 03 musical 0 musical_comedy 0 musical_theater 0 004 @ 07018931 n 0000 @ 06613686 n 0000 + 01501113 a 0103 + 01504625 a 0101 | a play or film whose action and dialogue is interspersed with singing and dancing -07019396 10 n 01 curtain_raiser 0 001 @ 07018931 n 0000 | a short play presented before the main play -07019500 10 n 03 galanty_show 0 shadow_show 0 shadow_play 0 001 @ 06619065 n 0000 | a drama executed by throwing shadows on a wall -07019633 10 n 02 puppet_show 0 puppet_play 0 001 @ 06619065 n 0000 | a show in which the actors are puppets -07019743 10 n 01 minstrel_show 0 001 @ 07020239 n 0000 | a variety show in which the performers are made up in blackface -07019866 10 n 02 revue 0 review 2 002 @ 07020239 n 0000 ~ 07020017 n 0000 | a variety show with topical sketches and songs and dancing and comedians -07020017 10 n 01 follies 0 002 @ 07019866 n 0000 ~ 07020121 n 0000 | a revue with elaborate costuming -07020121 10 n 01 Ziegfeld_Follies 0 001 @ 07020017 n 0000 | a series of extravagant revues produced by Flo Ziegfeld -07020239 10 n 02 variety_show 0 variety 0 004 @ 06619065 n 0000 ~ 07019743 n 0000 ~ 07019866 n 0000 ~ 07020423 n 0000 | a show consisting of a series of short unrelated performances -07020423 10 n 02 vaudeville 0 music_hall 0 001 @ 07020239 n 0000 | a variety show with songs and comic acts etc. -07020538 10 n 01 dance 0 008 @ 02743547 n 0000 + 01708676 v 0101 ~ 05214599 n 0000 ~ 07020763 n 0000 -c 01708317 v 0000 -c 01709781 v 0000 -c 01710048 v 0000 -c 01751545 v 0000 | an artistic form of nonverbal communication -07020763 10 n 01 choreography 0 001 @ 07020538 n 0000 | the representation of dancing by symbols as music is represented by notes -07020895 10 n 01 music 0 189 @ 07109019 n 0000 + 10340312 n 0101 + 10339966 n 0101 -c 00409750 a 0000 -c 00409889 a 0000 -c 00414518 a 0000 -c 00565799 a 0000 -c 00565962 a 0000 -c 00882890 a 0000 -c 00945513 a 0000 -c 00945772 a 0000 -c 00981818 a 0000 -c 00982602 a 0000 -c 01016215 a 0000 -c 01016436 a 0000 -c 01110470 a 0000 -c 01164561 a 0000 -c 01213786 a 0000 -c 01215263 a 0000 -c 01468994 a 0000 -c 01469161 a 0000 -c 01472098 a 0000 -c 01472225 a 0000 -c 01501718 a 0000 -c 01543772 a 0000 -c 01544169 a 0000 -c 01577771 a 0000 -c 01577973 a 0000 -c 01578152 a 0000 -c 02252480 a 0000 -c 02279523 a 0000 -c 02293856 a 0000 -c 02294263 a 0000 -c 02319922 a 0000 -c 02320289 a 0000 -c 02437148 a 0000 -c 02438188 a 0000 -c 02647236 a 0000 -c 02731850 a 0000 -c 02731953 a 0000 -c 02797257 a 0000 -c 02855757 a 0000 -c 02856460 a 0000 -c 02931947 a 0000 -c 00019900 r 0000 -c 00029278 r 0000 -c 00061899 r 0000 -c 00065486 r 0000 -c 00264927 r 0000 -c 00265059 r 0000 -c 00267812 r 0000 -c 00270581 r 0000 -c 00270713 r 0000 -c 00348592 r 0000 -c 00403175 r 0000 -c 00423378 r 0000 -c 00423749 r 0000 -c 00423888 r 0000 -c 00513248 r 0000 -c 00102162 n 0000 -c 00210940 n 0000 -c 00520880 n 0000 -c 00543233 n 0000 -c 00940217 n 0000 -c 00999588 n 0000 -c 02757061 n 0000 -c 02795978 n 0000 -c 03273551 n 0000 -c 04262161 n 0000 -c 04327324 n 0000 -c 04338143 n 0000 -c 04376400 n 0000 -c 04981781 n 0000 -c 04987356 n 0000 -c 04987620 n 0000 -c 04990525 n 0000 -c 04990781 n 0000 -c 04991225 n 0000 -c 04991389 n 0000 -c 05052243 n 0000 -c 05126849 n 0000 -c 05620050 n 0000 -c 05718935 n 0000 ~ 06392001 n 0000 -c 06392001 n 0000 -c 06406317 n 0000 -c 06741993 n 0000 -c 06814870 n 0000 -c 06816106 n 0000 -c 06856568 n 0000 -c 06856884 n 0000 -c 06857264 n 0000 -c 06857487 n 0000 -c 06857591 n 0000 -c 06857726 n 0000 -c 06857867 n 0000 -c 06857986 n 0000 -c 06858144 n 0000 -c 06858266 n 0000 -c 06858384 n 0000 -c 06858539 n 0000 -c 06861860 n 0000 -c 06865953 n 0000 -c 06866124 n 0000 -c 06866332 n 0000 -c 06866442 n 0000 -c 06869271 n 0000 -c 06869428 n 0000 -c 06894371 n 0000 ~ 07024607 n 0000 ~ 07024705 n 0000 ~ 07024929 n 0000 ~ 07025151 n 0000 ~ 07025302 n 0000 ~ 07027180 n 0000 -c 07027942 n 0000 -c 07028221 n 0000 ~ 07028373 n 0000 -c 07029247 n 0000 -c 07029819 n 0000 ~ 07030976 n 0000 ~ 07037465 n 0000 ~ 07038767 n 0000 -c 07039238 n 0000 ~ 07040543 n 0000 ~ 07040820 n 0000 -c 07045519 n 0000 -c 07046543 n 0000 -c 07046737 n 0000 -c 07047011 n 0000 -c 07047804 n 0000 ~ 07048782 n 0000 ~ 07050177 n 0000 ~ 07054336 n 0000 ~ 07054433 n 0000 ~ 07057196 n 0000 ~ 07057385 n 0000 -c 07057385 n 0000 -c 07066659 n 0000 -c 07068631 n 0000 ~ 07071942 n 0000 -c 07087508 n 0000 ~ 07277915 n 0000 ~ 07278014 n 0000 ~ 07278146 n 0000 ~ 07278256 n 0000 ~ 07278365 n 0000 ~ 07278510 n 0000 ~ 07278582 n 0000 ~ 07278652 n 0000 ~ 07278775 n 0000 ~ 07278925 n 0000 ~ 07281635 n 0000 ~ 07282006 n 0000 -c 07399137 n 0000 -c 07998206 n 0000 -c 07998323 n 0000 -c 07998450 n 0000 -c 10069296 n 0000 -c 10339966 n 0000 -c 10596517 n 0000 -c 14004958 n 0000 -c 15122011 n 0000 -c 15134913 n 0000 -c 15264363 n 0000 -c 15286042 n 0000 -c 00387153 v 0000 -c 00393398 v 0000 -c 00393534 v 0000 -c 01651110 v 0000 -c 01705494 v 0000 -c 01705841 v 0000 -c 01706014 v 0000 -c 01706129 v 0000 -c 01706375 v 0000 -c 01706488 v 0000 -c 01706631 v 0000 -c 01706756 v 0000 -c 01706889 v 0000 -c 01707495 v 0000 -c 01724891 v 0000 -c 01725051 v 0000 -c 01725375 v 0000 -c 01725886 v 0000 -c 01726172 v 0000 -c 01726879 v 0000 -c 01727354 v 0000 -c 01731353 v 0000 -c 02179915 v 0000 | an artistic form of auditory communication incorporating instrumental or vocal tones in a structured and continuous manner -07024607 10 n 01 pizzicato 0 001 @ 07020895 n 0000 | a note or passage that is played pizzicato -07024705 10 n 03 monophony 0 monophonic_music 0 monody 0 005 @ 07020895 n 0000 + 01544059 a 0302 ! 07024929 n 0202 + 01543772 a 0101 ! 07024929 n 0101 | music consisting of a single vocal part (usually with accompaniment) -07024929 10 n 03 polyphony 0 polyphonic_music 0 concerted_music 0 005 @ 07020895 n 0000 ! 07024705 n 0202 + 02855757 a 0102 ! 07024705 n 0101 ~ 07025419 n 0000 | music arranged in parts for several voices or instruments -07025151 10 n 02 polytonality 0 polytonalism 0 002 @ 07020895 n 0000 + 02437685 a 0101 | music that uses two or more different keys at the same time -07025302 10 n 01 popularism 0 001 @ 07020895 n 0000 | music adapted to the understanding and taste of the majority -07025419 10 n 01 counterpoint 0 004 @ 07024929 n 0000 + 09612580 n 0101 + 01705841 v 0101 -c 07030174 n 0000 | a musical form involving the simultaneous sound of two or more melodies -07025604 10 n 02 black_music 0 African-American_music 0 005 @ 07071942 n 0000 ~ 07051185 n 0000 ~ 07061968 n 0000 ~ 07064055 n 0000 ~ 07064315 n 0000 | music created by African-American musicians; early forms were songs that had a melodic line and a strong rhythmic beat with repeated choruses -07025900 10 n 03 classical_music 0 classical 0 serious_music 0 008 @ 07071942 n 0000 ~ 07026239 n 0000 ~ 07026352 n 0000 ~ 07042249 n 0000 ~ 07043275 n 0000 ~ 07043675 n 0000 ~ 07043968 n 0000 ~ 07044088 n 0000 | traditional genre of music conforming to an established form and appealing to critical interest and developed musical taste -07026239 10 n 01 chamber_music 0 001 @ 07025900 n 0000 | serious music performed by a small group of musicians -07026352 10 n 01 opera 0 008 @ 07025900 n 0000 + 02912383 a 0101 %p 06347811 n 0000 %p 07009640 n 0000 ~ 07026646 n 0000 ~ 07026827 n 0000 ~ 07026920 n 0000 %p 07049514 n 0000 | a drama set to music; consists of singing with orchestral accompaniment and an orchestral overture and interludes -07026646 10 n 04 comic_opera 0 opera_bouffe 0 bouffe 0 opera_comique 0 002 @ 07026352 n 0000 ~ 07027090 n 0000 | opera with a happy ending and in which some of the text is spoken -07026827 10 n 01 grand_opera 0 001 @ 07026352 n 0000 | opera in which all the text is sung -07026920 10 n 01 musical_drama 0 001 @ 07026352 n 0000 | opera in which the musical and dramatic elements are equally important; the music is appropriate to the action -07027090 10 n 02 operetta 0 light_opera 0 001 @ 07026646 n 0000 | a short amusing opera -07027180 10 n 02 harmony 1 musical_harmony 0 008 @ 07020895 n 0000 + 02738091 a 0101 + 01163083 a 0101 + 01163320 a 0103 ~ 07027458 n 0000 ~ 07027805 n 0000 ~ 07027942 n 0000 ~ 07028221 n 0000 | the structure of music with respect to the composition and progression of chords -07027458 10 n 02 harmonization 0 harmonisation 0 006 @ 07027180 n 0000 + 01707306 v 0202 + 00482180 v 0202 + 01707306 v 0101 + 00482180 v 0101 ~ 07027651 n 0000 | a piece of harmonized music -07027651 10 n 02 reharmonization 0 reharmonisation 0 002 @ 07027458 n 0000 + 01707128 v 0101 | a piece of music whose original harmony has been revised -07027805 10 n 01 four-part_harmony 0 001 @ 07027180 n 0000 | harmony in which each chord has four notes that create four melodic lines -07027942 10 n 01 preparation 0 004 @ 07027180 n 0000 ;c 07020895 n 0000 + 02179915 v 0101 ! 07028221 n 0101 | (music) a note that produces a dissonant chord is first heard in a consonant chord; "the resolution of one dissonance is often the preparation for another dissonance" -07028221 10 n 01 resolution 2 003 @ 07027180 n 0000 ;c 07020895 n 0000 ! 07027942 n 0101 | (music) a dissonant chord is followed by a consonant chord -07028373 10 n 07 tune 0 melody 0 air 1 strain 0 melodic_line 0 line 3 melodic_phrase 0 013 @ 07020895 n 0000 + 01502195 a 0202 + 01501113 a 0201 + 01706756 v 0201 ~ 06856884 n 0000 ~ 06857122 n 0000 ~ 06857591 n 0000 ~ 07028797 n 0000 ~ 07028964 n 0000 ~ 07029088 n 0000 ~ 07029247 n 0000 ~ 07030718 n 0000 %p 07045353 n 0000 | a succession of notes forming a distinctive sequence; "she was humming an air from Beethoven" -07028797 10 n 02 leitmotiv 0 leitmotif 0 001 @ 07028373 n 0000 | a melodic phrase that accompanies the reappearance of a person or situation (as in Wagner's operas) -07028964 10 n 01 theme_song 0 001 @ 07028373 n 0000 | a melody that recurs and comes to represent a musical play or movie -07029088 10 n 03 signature 3 signature_tune 0 theme_song 1 001 @ 07028373 n 0000 | a melody used to identify a performer or a dance band or radio/tv program -07029247 10 n 04 theme 2 melodic_theme 0 musical_theme 0 idea 0 006 @ 07028373 n 0000 ;c 07020895 n 0000 + 02813978 a 0101 ~ 07029682 n 0000 ~ 07029819 n 0000 ~ 07030012 n 0000 | (music) melodic subject of a musical composition; "the theme is announced in the first measures"; "the accompanist picked up the idea and elaborated it" -07029581 10 n 02 obbligato 2 obligato 2 001 @ 07029682 n 0000 | a persistent but subordinate motif -07029682 10 n 02 motif 0 motive 0 002 @ 07029247 n 0000 ~ 07029581 n 0000 | a theme that is repeated or elaborated in a piece of music -07029819 10 n 01 statement 4 004 @ 07029247 n 0000 ;c 07020895 n 0000 ~ 07030376 n 0000 ~ 07030549 n 0000 | (music) the presentation of a musical theme; "the initial statement of the sonata" -07030012 10 n 01 variation 0 003 @ 07029247 n 0000 ~ 07030174 n 0000 ~ 07047275 n 0000 | a repetition of a musical theme in which it is modified or embellished -07030174 10 n 01 inversion 1 002 @ 07030012 n 0000 ;c 07025419 n 0000 | (counterpoint) a variation of a melody or part in which ascending intervals are replaced by descending intervals and vice versa -07030376 10 n 01 augmentation 0 002 @ 07029819 n 0000 ! 07030549 n 0101 | the statement of a theme in notes of greater duration (usually twice the length of the original) -07030549 10 n 01 diminution 0 002 @ 07029819 n 0000 ! 07030376 n 0101 | the statement of a theme in notes of lesser duration (usually half the length of the original) -07030718 10 n 02 part 0 voice 2 006 @ 07028373 n 0000 ~ 07031276 n 0000 ~ 07031401 n 0000 ~ 07031534 n 0000 ~ 07031752 n 0000 ~ 07032292 n 0000 | the melody carried by a particular voice or instrument in polyphonic music; "he tried to sing the tenor part" -07030976 10 n 01 part_music 0 002 @ 07020895 n 0000 ~ 07031144 n 0000 | vocal music for several voices in independent parts (usually performed without accompaniment) -07031144 10 n 01 homophony 0 002 @ 07030976 n 0000 + 01543937 a 0101 | part music with one dominant voice (in a homophonic style) -07031276 10 n 01 primo 0 002 @ 07030718 n 0000 #p 07041451 n 0000 | the principal part of a duet (especially a piano duet) -07031401 10 n 01 secondo 0 002 @ 07030718 n 0000 #p 07041451 n 0000 | the second or lower part of a duet (especially a piano duet) -07031534 10 n 01 voice_part 0 002 @ 07030718 n 0000 ~ 07031636 n 0000 | a part written for a singer -07031636 10 n 01 canto 1 001 @ 07031534 n 0000 | the highest part (usually the melody) in a piece of choral music -07031752 10 n 04 accompaniment 0 musical_accompaniment 0 backup 0 support 1 005 @ 07030718 n 0000 + 01720773 v 0401 + 01728355 v 0102 ~ 07032026 n 0000 ~ 07032206 n 0000 | a musical part (vocal or instrumental) that supports or provides background for other musical parts -07032026 10 n 02 descant 0 discant 0 003 @ 07031752 n 0000 + 01050651 v 0103 + 01710836 v 0101 | a decorative musical accompaniment (often improvised) added above a basic melody -07032206 10 n 01 vamp 0 001 @ 07031752 n 0000 | an improvised musical accompaniment -07032292 10 n 02 bass 1 bass_part 0 003 @ 07030718 n 0000 ~ 07032426 n 0000 ~ 07032556 n 0000 | the lowest part in polyphonic music -07032426 10 n 01 ground_bass 0 002 @ 07032292 n 0000 @ 07045637 n 0000 | a short melody in the bass that is constantly repeated -07032556 10 n 04 figured_bass 0 basso_continuo 0 continuo 0 thorough_bass 0 001 @ 07032292 n 0000 | a bass part written out in full and accompanied by numbers to indicate the chords to be played -07032753 10 n 01 crossover 0 002 @ 00084371 n 0000 ;c 07071942 n 0000 | the appropriation of a new style (especially in popular music) by combining elements of different genres in order to appeal to a wider audience; "a jazz-classical crossover album" -07033007 10 n 02 religious_music 0 church_music 0 006 @ 07071942 n 0000 ~ 07033245 n 0000 ~ 07033753 n 0000 ~ 07034409 n 0000 ~ 07034516 n 0000 ~ 07035420 n 0000 | genre of music composed for performance as part of religious ceremonies -07033245 10 n 02 antiphon 0 antiphony 1 005 @ 07033007 n 0000 + 02630519 a 0102 + 03110741 a 0102 + 02630519 a 0101 ~ 07033433 n 0000 | a verse or song to be chanted or sung in response -07033433 10 n 01 gradual 0 002 @ 07033245 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) an antiphon (usually from the Book of Psalms) immediately after the epistle at Mass -07033613 10 n 01 Mass 1 001 @ 06455990 n 0000 | a sequence of prayers constituting the Christian Eucharistic rite; "the priest said Mass" -07033753 10 n 01 Mass 0 003 @ 07033007 n 0000 #p 01042465 n 0000 ~ 07033913 n 0000 | a musical setting for a Mass; "they played a Mass composed by Beethoven" -07033913 10 n 01 Requiem 1 002 @ 07033753 n 0000 #p 01042661 n 0000 | a musical setting for a Mass celebrating the dead -07034035 10 n 01 Shema 0 001 @ 06455990 n 0000 | a liturgical prayer (considered to be the essence of Jewish religion) that is recited at least twice daily by adult Jewish males to declare their faith; "as soon as Leonard learned to talk he was taught to recite the first words of the Shema, the creed of Judaism which originated on Sinai with Moses and is recited daily" -07034409 10 n 02 processional 0 prosodion 0 001 @ 07033007 n 0000 | religious music used in a procession -07034516 10 n 02 antiphonary 0 antiphonal 0 002 @ 07033007 n 0000 + 03110741 a 0202 | bound collection of antiphons -07034634 10 n 01 chant 0 006 @ 07035420 n 0000 + 01066775 v 0102 + 01049737 v 0101 ~i 07034865 n 0000 ~i 07035061 n 0000 ~ 07035153 n 0000 | a repetitive song in which as many syllables as necessary are assigned to a single tone -07034865 10 n 01 Hallel 0 002 @i 07034634 n 0000 ;c 06232880 n 0000 | (Judaism) a chant of praise (Psalms 113 through 118) used at Passover and Shabuoth and Sukkoth and Hanukkah and Rosh Hodesh -07035061 10 n 01 Hare_Krishna 0 001 @i 07034634 n 0000 | a chant to the Hindu god Krishna -07035153 10 n 03 plainsong 0 plainchant 0 Gregorian_chant 0 002 @ 07034634 n 0000 ~ 07035305 n 0000 | a liturgical chant of the Roman Catholic Church -07035305 10 n 01 cantus_firmus 0 001 @ 07035153 n 0000 | a melody used as the basis for a polyphonic composition -07035420 10 n 01 religious_song 0 006 @ 07033007 n 0000 @ 07048000 n 0000 ~ 07034634 n 0000 ~ 07035598 n 0000 ~ 07035747 n 0000 ~ 07035870 n 0000 | religious music for singing -07035598 10 n 02 spiritual 0 Negro_spiritual 0 001 @ 07035420 n 0000 | a kind of religious song originated by Blacks in the southern United States -07035747 10 n 02 carol 0 Christmas_carol 0 001 @ 07035420 n 0000 | joyful religious song celebrating the birth of Christ -07035870 10 n 02 hymn 0 anthem 0 013 @ 07035420 n 0000 + 01731718 v 0101 + 00861423 v 0101 ~ 06379094 n 0000 ~ 07036203 n 0000 ~ 07036328 n 0000 ~ 07036443 n 0000 ~i 07036546 n 0000 ~ 07036699 n 0000 ~i 07036768 n 0000 ~ 07036862 n 0000 ~ 07037232 n 0000 ~i 07037384 n 0000 | a song of praise (to God or to a saint or to a nation) -07036203 10 n 01 doxology 0 002 @ 07035870 n 0000 #p 01033345 n 0000 | a hymn or verse in Christian liturgy glorifying God -07036328 10 n 02 chorale 0 choral 0 001 @ 07035870 n 0000 | a stately Protestant (especially Lutheran) hymn tune -07036443 10 n 01 canticle 0 002 @ 07035870 n 0000 ~i 07037059 n 0000 | a hymn derived from the Bible -07036546 10 n 01 Dies_Irae 0 001 @i 07035870 n 0000 | the first words of a medieval Latin hymn describing the Last Judgment (literally `day of wrath') -07036699 10 n 01 hymeneal 0 001 @ 07035870 n 0000 | a wedding hymn -07036768 10 n 01 Internationale 0 001 @i 07035870 n 0000 | a revolutionary socialist anthem -07036862 10 n 02 paean 1 pean 1 003 @ 07035870 n 0000 ;r 08780881 n 0000 ;c 15253139 n 0000 | (ancient Greece) a hymn of praise (especially one sung in ancient Greece to invoke or thank a deity) -07037059 10 n 01 Magnificat 0 002 @i 07036443 n 0000 ;c 06441973 n 0000 | (Luke) the canticle of the Virgin Mary (from Luke 1:46 beginning `Magnificat anima mea Dominum') -07037232 10 n 01 recessional 0 002 @ 07035870 n 0000 + 03109261 a 0101 | a hymn that is sung at the end of a service as the clergy and choir withdraw -07037384 10 n 01 Te_Deum 0 001 @i 07035870 n 0000 | an ancient liturgical hymn -07037465 10 n 05 musical_composition 0 opus 0 composition 1 piece 1 piece_of_music 0 042 @ 07020895 n 0000 + 01705494 v 0301 ~ 06269674 n 0000 ~ 06816106 n 0000 ~ 07038400 n 0000 ~ 07039056 n 0000 %p 07039478 n 0000 ~ 07039620 n 0000 ~ 07039770 n 0000 ~ 07039949 n 0000 ~ 07040148 n 0000 ~ 07040413 n 0000 ~ 07040939 n 0000 ~ 07041451 n 0000 ~ 07041595 n 0000 ~ 07041688 n 0000 ~ 07041795 n 0000 ~ 07041902 n 0000 ~ 07042023 n 0000 ~ 07042137 n 0000 ~ 07042498 n 0000 ~ 07042586 n 0000 ~ 07042862 n 0000 ~ 07043518 n 0000 ~ 07043824 n 0000 ~ 07044353 n 0000 ~ 07044543 n 0000 ~ 07044917 n 0000 ~ 07046339 n 0000 ~ 07046543 n 0000 ~ 07046737 n 0000 ~ 07047011 n 0000 ~ 07047373 n 0000 ~ 07047505 n 0000 ~ 07047679 n 0000 ~ 07047804 n 0000 ~ 07048000 n 0000 ~ 07048627 n 0000 ~ 07280424 n 0000 ~ 07280754 n 0000 ~ 07281219 n 0000 ~ 07281375 n 0000 | a musical work that has been created; "the composition is written in four movements" -07038400 10 n 02 musical_arrangement 0 arrangement 0 003 @ 07037465 n 0000 ~ 07038615 n 0000 ~ 07038910 n 0000 | a piece of music that has been adapted for performance by a particular set of voices or instruments -07038615 10 n 01 orchestration 0 002 @ 07038400 n 0000 + 01707737 v 0101 | an arrangement of a piece of music for performance by an orchestra or band -07038767 10 n 01 instrumental_music 0 001 @ 07020895 n 0000 | music intended to be performed by a musical instrument or group of instruments -07038910 10 n 01 instrumentation 0 001 @ 07038400 n 0000 | the instruments called for in a musical score or arrangement for a band or orchestra -07039056 10 n 02 realization 0 realisation 0 002 @ 07037465 n 0000 + 01707495 v 0101 | a musical composition that has been completed or enriched by someone other than the composer -07039238 10 n 01 recapitulation 1 003 @ 06392001 n 0000 ;c 07020895 n 0000 + 01727490 v 0104 | (music) the section of a composition or movement (especially in sonata form) in which musical themes that were introduced earlier are repeated -07039478 10 n 02 finale 0 coda 0 003 @ 06398401 n 0000 #p 06891493 n 0000 #p 07037465 n 0000 | the closing section of a musical composition -07039620 10 n 01 intermezzo 0 001 @ 07037465 n 0000 | a short piece of instrumental music composed for performance between acts of a drama or opera -07039770 10 n 01 allegro 0 003 @ 07037465 n 0000 @ 07044917 n 0000 + 00982065 a 0101 | a musical composition or musical passage to be performed quickly in a brisk lively manner -07039949 10 n 01 allegretto 0 002 @ 07044917 n 0000 @ 07037465 n 0000 | a musical composition or musical passage to be performed at a somewhat quicker tempo than andante but not as fast as allegro -07040148 10 n 01 andante 0 002 @ 07044917 n 0000 @ 07037465 n 0000 | a musical composition or musical passage to be performed moderately slow -07040292 10 n 01 intermezzo 2 001 @ 07046339 n 0000 | a short movement coming between the major sections of a symphony -07040413 10 n 01 introit 0 001 @ 07037465 n 0000 | a composition of vocal music that is appropriate for opening church services -07040543 10 n 01 prelude 0 003 @ 07020895 n 0000 + 01725615 v 0101 ~ 07040693 n 0000 | music that precedes a fugue or introduces an act in an opera -07040693 10 n 01 chorale_prelude 0 001 @ 07040543 n 0000 | a composition for organ using a chorale as a basis for variations -07040820 10 n 01 overture 1 001 @ 07020895 n 0000 | orchestral music played at the beginning of an opera or oratorio -07040939 10 n 01 solo 0 004 @ 07037465 n 0000 + 10623650 n 0101 + 01715040 v 0101 ~ 07041125 n 0000 | a musical composition for one voice or instrument (with or without accompaniment) -07041125 10 n 01 voluntary 0 002 @ 07040939 n 0000 ~ 07041344 n 0000 | composition (often improvised) for a solo instrument (especially solo organ) and not a regular part of a religious service or musical performance -07041344 10 n 01 postlude 0 001 @ 07041125 n 0000 | a voluntary played at the end of a religious service -07041451 10 n 03 duet 0 duette 0 duo 0 003 @ 07037465 n 0000 %p 07031276 n 0000 %p 07031401 n 0000 | a musical composition for two performers -07041595 10 n 01 trio 0 001 @ 07037465 n 0000 | a musical composition for three performers -07041688 10 n 02 quartet 0 quartette 0 001 @ 07037465 n 0000 | a musical composition for four performers -07041795 10 n 02 quintet 0 quintette 0 001 @ 07037465 n 0000 | a musical composition for five performers -07041902 10 n 03 sextet 0 sextette 0 sestet 0 001 @ 07037465 n 0000 | a musical composition written for six performers -07042023 10 n 02 septet 0 septette 0 001 @ 07037465 n 0000 | a musical composition written for seven performers -07042137 10 n 02 octet 0 octette 0 001 @ 07037465 n 0000 | a musical composition written for eight performers -07042249 10 n 02 cantata 0 oratorio 0 002 @ 07025900 n 0000 ~i 07042405 n 0000 | a musical composition for voices and orchestra based on a religious text -07042405 10 n 01 Messiah 0 001 @i 07042249 n 0000 | an oratorio composed by Handel in 1742 -07042498 10 n 01 bagatelle 0 001 @ 07037465 n 0000 | a light piece of music for piano -07042586 10 n 02 divertimento 0 serenade 1 002 @ 07037465 n 0000 + 01703857 v 0201 | a musical composition in several movements; has no fixed form -07042735 10 n 01 keen 0 003 @ 07050619 n 0000 ;r 08859173 n 0000 + 01802219 v 0102 | a funeral lament sung with loud wailing -07042862 10 n 01 canon 1 002 @ 07037465 n 0000 ~ 07043026 n 0000 | a contrapuntal piece of music in which a melody in one part is imitated exactly in other parts -07043026 10 n 04 enigma_canon 0 enigmatic_canon 0 enigmatical_canon 0 riddle_canon 0 001 @ 07042862 n 0000 | a canon in which the entrances of successive parts were indicated by cryptic symbols and devices (popular in the 15th and 16th centuries) -07043275 10 n 01 concerto 0 002 @ 07025900 n 0000 ~ 07043389 n 0000 | a composition for orchestra and a soloist -07043389 10 n 01 concerto_grosso 0 001 @ 07043275 n 0000 | a baroque composition for orchestra and a group of solo instruments -07043518 10 n 01 etude 0 001 @ 07037465 n 0000 | a short composition for a solo instrument; intended as an exercise or to demonstrate technical virtuosity -07043675 10 n 01 fugue 0 001 @ 07025900 n 0000 | a musical form consisting of a theme repeated a fifth above or a fourth below its first statement -07043824 10 n 04 pastorale 0 pastoral 0 idyll 2 idyl 2 002 @ 07037465 n 0000 + 02051179 a 0203 | a musical composition that evokes rural life -07043968 10 n 02 rondo 0 rondeau 1 001 @ 07025900 n 0000 | a musical form that is often the last movement of a sonata -07044088 10 n 01 sonata 0 005 @ 07025900 n 0000 ~ 07044276 n 0000 ~ 07044680 n 0000 ~ 07044760 n 0000 %p 07046339 n 0000 | a musical composition of 3 or 4 movements of contrasting forms -07044276 10 n 01 piano_sonata 0 001 @ 07044088 n 0000 | a sonata for piano -07044353 10 n 01 toccata 0 001 @ 07037465 n 0000 | a baroque musical composition (usually for a keyboard instrument) with full chords and rapid elaborate runs in a rhythmically free style -07044543 10 n 01 fantasia 0 001 @ 07037465 n 0000 | a musical composition of a free form usually incorporating several familiar themes -07044680 10 n 01 sonatina 0 001 @ 07044088 n 0000 | a short and simple sonata -07044760 10 n 02 symphony 0 symphonic_music 0 003 @ 07044088 n 0000 + 03002040 a 0101 + 01727052 v 0101 | a long and complex sonata for symphony orchestra -07044917 10 n 02 passage 1 musical_passage 0 013 @ 07037465 n 0000 ~ 07039770 n 0000 ~ 07039949 n 0000 ~ 07040148 n 0000 ~ 07045245 n 0000 ~ 07045353 n 0000 ~ 07045928 n 0000 ~ 07046218 n 0000 ~ 07046543 n 0000 ~ 07047804 n 0000 ~ 07087346 n 0000 ~ 07087641 n 0000 ~ 07239927 n 0000 | a short section of a musical composition -07045245 10 n 01 intro 1 001 @ 07044917 n 0000 | a brief introductory passage to a piece of popular music -07045353 10 n 02 phrase 1 musical_phrase 0 005 @ 07044917 n 0000 #p 07028373 n 0000 + 02937108 a 0101 ~ 07045519 n 0000 ~ 07045637 n 0000 | a short musical passage -07045519 10 n 01 ligature 0 002 @ 07045353 n 0000 ;c 07020895 n 0000 | (music) a group of notes connected by a slur -07045637 10 n 01 ostinato 0 003 @ 07045353 n 0000 ~ 07032426 n 0000 ~ 07045788 n 0000 | a musical phrase repeated over and over during a composition -07045788 10 n 01 riff 0 002 @ 07045637 n 0000 + 01649605 v 0101 | a jazz ostinato; usually provides a background for a solo improvisation -07045928 10 n 01 cadence 0 002 @ 07044917 n 0000 ~ 07046030 n 0000 | the close of a musical section -07046030 10 n 02 plagal_cadence 0 amen_cadence 0 001 @ 07045928 n 0000 | a cadence (frequently ending church music) in which the chord of the subdominant precedes the chord of the tonic -07046218 10 n 01 cadenza 0 001 @ 07044917 n 0000 | a brilliant solo passage occurring near the end of a piece of music -07046339 10 n 01 movement 0 004 @ 07037465 n 0000 #p 07044088 n 0000 ~ 07040292 n 0000 ~ 07046917 n 0000 | a major self-contained part of a symphony or sonata; "the second movement is slow and melodic" -07046543 10 n 01 largo 0 004 @ 07037465 n 0000 @ 07044917 n 0000 ;c 07020895 n 0000 + 00983196 a 0101 | (music) a composition or passage that is to be performed in a slow and dignified manner -07046737 10 n 01 larghetto 0 002 @ 07037465 n 0000 ;c 07020895 n 0000 | (music) a composition or passage played in a slow tempo slightly faster than largo but slower than adagio -07046917 10 n 01 scherzo 0 001 @ 07046339 n 0000 | a fast movement (usually in triple time) -07047011 10 n 01 suite 0 003 @ 07037465 n 0000 ;c 07020895 n 0000 ~ 07047165 n 0000 | a musical composition of several movements only loosely connected -07047165 10 n 01 partita 0 001 @ 07047011 n 0000 | (music) an instrumental suite common in the 18th century -07047275 10 n 01 partita 1 001 @ 07030012 n 0000 | one of the variations contained in a partita -07047373 10 n 02 symphonic_poem 0 tone_poem 0 001 @ 07037465 n 0000 | an orchestral composition based on literature or folk tales -07047505 10 n 03 medley 0 potpourri 0 pastiche 0 001 @ 07037465 n 0000 | a musical composition consisting of a series of songs or other musical pieces from various sources -07047679 10 n 02 nocturne 0 notturno 0 001 @ 07037465 n 0000 | a pensive lyrical piece of music (especially for the piano) -07047804 10 n 01 adagio 0 003 @ 07037465 n 0000 @ 07044917 n 0000 ;c 07020895 n 0000 | (music) a composition played in adagio tempo (slowly and gracefully); "they played the adagio too quickly" -07048000 10 n 02 song 0 vocal 1 027 @ 07037465 n 0000 + 10624540 n 0102 + 10624310 n 0101 + 01729431 v 0101 + 01731031 v 0101 ~ 07035420 n 0000 ~ 07048928 n 0000 ~ 07049514 n 0000 ~ 07049713 n 0000 ~ 07049931 n 0000 %p 07050177 n 0000 ~ 07050503 n 0000 ~ 07050619 n 0000 ~ 07050827 n 0000 ~ 07050952 n 0000 ~ 07051620 n 0000 ~ 07051728 n 0000 ~ 07051851 n 0000 %p 07051975 n 0000 ~ 07052700 n 0000 ~ 07052799 n 0000 ~ 07053364 n 0000 ~ 07053491 n 0000 ~ 07053606 n 0000 ~ 07053732 n 0000 ~ 07053884 n 0000 ~ 07053993 n 0000 | a short musical composition with words; "a successful musical must have at least three good songs" -07048627 10 n 01 study 1 001 @ 07037465 n 0000 | a composition intended to develop one aspect of the performer's technique; "a study in spiccato bowing" -07048782 10 n 01 antiphony 0 003 @ 07020895 n 0000 + 02630519 a 0102 + 02630519 a 0101 | alternate (responsive) singing by a choir in two parts -07048928 10 n 01 anthem 1 002 @ 07048000 n 0000 ~ 07049055 n 0000 | a song of devotion or loyalty (as to a nation or school) -07049055 10 n 01 national_anthem 0 003 @ 07048928 n 0000 ~i 07049205 n 0000 ~i 07049291 n 0000 | a song formally adopted as the anthem for a nation -07049205 10 n 01 Marseillaise 0 001 @i 07049055 n 0000 | the French national anthem -07049291 10 n 01 The_Star-Spangled_Banner 1 001 @i 07049055 n 0000 | a poem written by Francis Scott Key during the War of 1812 was set to music and adopted by Congress in 1931 as the national anthem of the United States -07049514 10 n 01 aria 0 003 @ 07048000 n 0000 #p 07026352 n 0000 ~ 07049634 n 0000 | an elaborate song for solo voice -07049634 10 n 02 arietta 0 short_aria 0 001 @ 07049514 n 0000 | a short aria -07049713 10 n 02 ballad 1 lay 1 003 @ 07048000 n 0000 + 09980090 n 0102 ~ 07049849 n 0000 | a narrative song with a recurrent refrain -07049849 10 n 01 minstrelsy 0 001 @ 07049713 n 0000 | ballads sung by minstrels -07049931 10 n 02 barcarole 0 barcarolle 0 001 @ 07048000 n 0000 | a boating song sung by Venetian gondoliers -07050042 10 n 04 chantey 0 chanty 0 sea_chantey 0 shanty 0 001 @ 07053993 n 0000 | a rhythmical work song originally sung by sailors -07050177 10 n 02 refrain 0 chorus 0 005 @ 07020895 n 0000 #p 07048000 n 0000 + 02874282 a 0201 + 01730799 v 0202 ~ 07050379 n 0000 | the part of a song where a soloist is joined by a group of singers -07050379 10 n 02 tra-la 0 tra-la-la 0 001 @ 07050177 n 0000 | a set of nonsensical syllables used while humming a refrain -07050503 10 n 01 ditty 0 001 @ 07048000 n 0000 | a short simple song (or the words of a poem intended to be sung) -07050619 10 n 05 dirge 0 coronach 0 lament 1 requiem 0 threnody 0 003 @ 07048000 n 0000 + 01802219 v 0301 ~ 07042735 n 0000 | a song or hymn of mourning composed or performed as a memorial to a dead person -07050827 10 n 01 drinking_song 0 001 @ 07048000 n 0000 | a song celebrating the joys of drinking; sung at drinking parties -07050952 10 n 03 folk_song 0 folksong 0 folk_ballad 0 004 @ 07060167 n 0000 @ 07048000 n 0000 ~ 07051185 n 0000 ~ 07051441 n 0000 | a song that is traditionally sung by the common people of a region and forms part of their culture -07051185 10 n 01 blues 0 004 @ 07025604 n 0000 @ 07050952 n 0000 %p 07051517 n 0000 ~ 07063249 n 0000 | a type of folksong that originated among Black Americans at the beginning of the 20th century; has a melancholy sound from repeated use of blue notes -07051441 10 n 01 fado 0 001 @ 07050952 n 0000 | a sad Portuguese folksong -07051517 10 n 01 blue_note 0 002 @ 06865345 n 0000 #p 07051185 n 0000 | a flattened third or seventh -07051620 10 n 01 lied 0 001 @ 07048000 n 0000 | a German art song of the 19th century for voice and piano -07051728 10 n 02 love_song 0 love-song 0 001 @ 07048000 n 0000 | a song about love or expressing love for another person -07051851 10 n 03 lullaby 0 cradlesong 0 berceuse 0 001 @ 07048000 n 0000 | a quiet song intended to lull a child to sleep -07051975 10 n 03 lyric 1 words 2 language 2 005 @ 06387980 n 0000 #p 07048000 n 0000 + 10277912 n 0101 + 01698916 v 0101 ~ 07052619 n 0000 | the text of a popular song or musical-comedy number; "his compositions always started with the lyrics"; "he wrote both words and music"; "the song uses colloquial language" -07052291 10 n 01 stanza 0 013 @ 06387980 n 0000 #p 06377442 n 0000 ~ 06378917 n 0000 ~ 06382923 n 0000 ~ 06383016 n 0000 ~ 06384371 n 0000 ~ 06384480 n 0000 ~ 06386440 n 0000 ~ 06386693 n 0000 ~ 06386832 n 0000 %p 07012534 n 0000 ~ 07097831 n 0000 ~ 07097965 n 0000 | a fixed number of lines of verse forming a unit of a poem -07052619 10 n 01 love_lyric 0 001 @ 07051975 n 0000 | the lyric of a love song -07052700 10 n 02 oldie 0 golden_oldie 0 001 @ 07048000 n 0000 | a song that was formerly popular -07052799 10 n 01 partsong 0 003 @ 07048000 n 0000 ~ 07052925 n 0000 ~ 07053089 n 0000 | a song with two or more voice parts -07052925 10 n 01 madrigal 0 003 @ 07052799 n 0000 + 10279867 n 0101 + 01732014 v 0101 | an unaccompanied partsong for 2 or 3 voices; follows a strict poetic form -07053089 10 n 02 round 0 troll 0 002 @ 07052799 n 0000 + 01731577 v 0201 | a partsong in which voices follow each other; one voice starts and others join in one after another until all are singing different parts of the song at the same time; "they enjoyed singing rounds" -07053364 10 n 02 prothalamion 0 prothalamium 0 002 @ 07048000 n 0000 @ 06383819 n 0000 | a song in celebration of a marriage -07053491 10 n 01 roundelay 0 001 @ 07048000 n 0000 | a song in which a line or phrase is repeated as the refrain -07053606 10 n 02 scolion 0 banquet_song 0 001 @ 07048000 n 0000 | a song (sometimes improvised) sung by guests at a banquet -07053732 10 n 01 serenade 0 003 @ 07048000 n 0000 + 01703857 v 0101 ~ 07054122 n 0000 | a song characteristically played outside the house of a woman -07053884 10 n 01 torch_song 0 001 @ 07048000 n 0000 | a popular song concerned with disappointment in love -07053993 10 n 01 work_song 0 002 @ 07048000 n 0000 ~ 07050042 n 0000 | a usually rhythmical song to accompany repetitious work -07054122 10 n 06 shivaree 0 chivaree 0 charivari 0 callithump 0 callathump 0 belling 0 002 @ 07053732 n 0000 + 02675320 a 0401 | a noisy mock serenade (made by banging pans and kettles) to a newly married couple -07054336 10 n 01 ballet 0 002 @ 07020895 n 0000 + 02658043 a 0101 | music written for a ballet -07054433 10 n 01 dance_music 0 028 @ 07020895 n 0000 ~ 07054994 n 0000 ~ 07055103 n 0000 ~ 07055203 n 0000 ~ 07055295 n 0000 ~ 07055401 n 0000 ~ 07055502 n 0000 ~ 07055612 n 0000 ~ 07055720 n 0000 ~ 07055805 n 0000 ~ 07055923 n 0000 ~ 07056021 n 0000 ~ 07056113 n 0000 ~ 07056265 n 0000 ~ 07056406 n 0000 ~ 07056504 n 0000 ~ 07056593 n 0000 ~ 07056680 n 0000 ~ 07056764 n 0000 ~ 07056895 n 0000 ~ 07057001 n 0000 ~ 07057829 n 0000 ~ 07057948 n 0000 ~ 07058064 n 0000 ~ 07058184 n 0000 ~ 07060844 n 0000 ~ 07060976 n 0000 ~ 07061180 n 0000 | music to dance to -07054994 10 n 01 beguine 0 001 @ 07054433 n 0000 | music written in the bolero rhythm of the beguine dance -07055103 10 n 01 bolero 0 001 @ 07054433 n 0000 | music written in the rhythm of the bolero dance -07055203 10 n 01 carioca 0 001 @ 07054433 n 0000 | music composed for dancing the carioca -07055295 10 n 01 conga 0 002 @ 07054433 n 0000 + 01896767 v 0101 | music composed for dancing the conga -07055401 10 n 01 flamenco 0 001 @ 07054433 n 0000 | guitar music composed for dancing the flamenco -07055502 10 n 01 gavotte 0 001 @ 07054433 n 0000 | music composed in quadruple time for dancing the gavotte -07055612 10 n 01 habanera 0 001 @ 07054433 n 0000 | music composed in duple time for dancing the habanera -07055720 10 n 01 hornpipe 0 001 @ 07054433 n 0000 | music for dancing the hornpipe -07055805 10 n 02 jig 0 gigue 0 002 @ 07054433 n 0000 + 01898032 v 0101 | music in three-four time for dancing a jig -07055923 10 n 01 landler 0 001 @ 07054433 n 0000 | music in triple time for dancing the landler -07056021 10 n 01 mazurka 0 001 @ 07054433 n 0000 | music composed for dancing the mazurka -07056113 10 n 01 minuet 0 001 @ 07054433 n 0000 | a stately piece of music composed for dancing the minuet; often incorporated into a sonata or suite -07056265 10 n 01 paso_doble 0 001 @ 07054433 n 0000 | music in march time composed for dancing the paso doble; often played at bull fights -07056406 10 n 02 pavane 0 pavan 0 001 @ 07054433 n 0000 | music composed for dancing the pavane -07056504 10 n 01 polka 0 001 @ 07054433 n 0000 | music performed for dancing the polka -07056593 10 n 01 quadrille 0 001 @ 07054433 n 0000 | music for dancing the quadrille -07056680 10 n 01 reel 0 001 @ 07054433 n 0000 | music composed for dancing a reel -07056764 10 n 02 rumba 0 rhumba 0 002 @ 07054433 n 0000 + 01897779 v 0201 | syncopated music in duple time for dancing the rumba -07056895 10 n 01 samba 0 002 @ 07054433 n 0000 + 01896881 v 0101 | music composed for dancing the samba -07057001 10 n 01 saraband 0 001 @ 07054433 n 0000 | music composed for dancing the saraband -07057095 10 n 01 schottische 0 001 @ 07060167 n 0000 | music performed for dancing the schottische -07057196 10 n 02 serialism 0 serial_music 0 002 @ 07020895 n 0000 ~ 07057539 n 0000 | 20th century music that uses a definite order of notes as a thematic basis for a musical composition -07057385 10 n 01 syncopation 2 003 @ 07020895 n 0000 ;c 07020895 n 0000 + 00170500 v 0101 | music (especially dance music) that has a syncopated rhythm -07057539 10 n 04 twelve-tone_music 0 12-tone_music 0 twelve-tone_system 0 12-tone_system 0 001 @ 07057196 n 0000 | a type of serial music introduced by Arnold Schoenberg; uses a tone row formed by the twelve semitones of the chromatic scale (and inverted or backward versions of the row) -07057829 10 n 01 tango 0 002 @ 07054433 n 0000 + 01896007 v 0101 | music written in duple time for dancing the tango -07057948 10 n 01 tarantella 0 001 @ 07054433 n 0000 | music composed in six-eight time for dancing the tarantella -07058064 10 n 01 techno 0 001 @ 07054433 n 0000 | a style of fast heavy electronic dance music usually without vocals -07058184 10 n 01 waltz 0 002 @ 07054433 n 0000 + 01895612 v 0101 | music composed in triple time for waltzing -07058296 10 n 02 marching_music 0 march 1 003 @ 07071942 n 0000 ~ 07058468 n 0000 ~ 07058871 n 0000 | genre of music written for marching; "Sousa wrote the best marches" -07058468 10 n 03 military_march 0 military_music 0 martial_music 0 003 @ 07058296 n 0000 ~ 07058668 n 0000 ~ 07058762 n 0000 | brisk marching music suitable for troops marching in a military parade -07058668 10 n 01 quickstep 0 001 @ 07058468 n 0000 | military march accompanying quick time -07058762 10 n 01 pibroch 0 001 @ 07058468 n 0000 | martial music with variations; to be played by bagpipes -07058871 10 n 02 processional_march 0 recessional_march 0 003 @ 07058296 n 0000 ~ 07059028 n 0000 ~ 07059150 n 0000 | a march to be played for processions -07059028 10 n 02 funeral_march 0 dead_march 0 001 @ 07058871 n 0000 | a slow march to be played for funeral processions -07059150 10 n 01 wedding_march 0 001 @ 07058871 n 0000 | a march to be played for a wedding procession -07059255 10 n 02 popular_music 0 popular_music_genre 0 013 @ 07071942 n 0000 ~ 07059626 n 0000 ~ 07059821 n 0000 ~ 07059962 n 0000 ~ 07060167 n 0000 ~ 07060697 n 0000 ~ 07062697 n 0000 ~ 07064055 n 0000 ~ 07064315 n 0000 ~ 07064537 n 0000 ~ 07064715 n 0000 ~ 07066285 n 0000 ~ 07066459 n 0000 | any genre of music having wide appeal (but usually only for a short time) -07059626 10 n 02 disco 0 disco_music 0 001 @ 07059255 n 0000 | popular dance music (especially in the late 1970s); melodic with a regular bass beat; intended mainly for dancing at discotheques -07059821 10 n 01 macumba 0 001 @ 07059255 n 0000 | popular dance music of Brazil; derived from the practices of the macumba religious cult -07059962 10 n 02 pop_music 0 pop 0 001 @ 07059255 n 0000 | music of general appeal to teenagers; a bland watered-down version of rock'n'roll with more rhythm and harmony and an emphasis on romantic love -07060167 10 n 03 folk_music 0 ethnic_music 0 folk 0 006 @ 07059255 n 0000 ~ 07050952 n 0000 ~ 07057095 n 0000 ~ 07060440 n 0000 ~ 07061334 n 0000 ~ 07062451 n 0000 | the traditional and typically anonymous music that is an expression of the life of people in a community -07060440 10 n 03 country_music 0 country_and_western 0 C_and_W 0 004 @ 07060167 n 0000 ~ 07062190 n 0000 ~ 07062315 n 0000 ~ 07062550 n 0000 | a simple style of folk music heard mostly in the southern United States; usually played on stringed instruments -07060697 10 n 03 dance_music 1 danceroom_music 0 ballroom_music 0 001 @ 07059255 n 0000 | a genre of popular music composed for ballroom dancing -07060844 10 n 02 ragtime 0 rag 1 002 @ 07054433 n 0000 + 01725886 v 0201 | music with a syncopated melody (usually for the piano) -07060976 10 n 01 jazz 1 004 @ 07054433 n 0000 ;c 07062697 n 0000 + 02019881 a 0101 + 01725734 v 0101 | a style of dance music popular in the 1920s; similar to New Orleans jazz but played by large bands -07061180 10 n 01 kwela 0 001 @ 07054433 n 0000 | a kind of danceable music popular among black South Africans; includes a whistle among its instruments -07061334 10 n 02 gospel 3 gospel_singing 0 004 @ 07060167 n 0000 ;c 00546070 n 0000 ~ 07061677 n 0000 ~ 07061968 n 0000 | folk music consisting of a genre of a cappella music originating with Black slaves in the United States and featuring call and response; influential on the development of other genres of popular music (especially soul) -07061677 10 n 01 doo-wop 0 001 @ 07061334 n 0000 | a genre (usually a cappella) of Black vocal-harmony music of the 1950s that evolved in New York City from gospel singing; characterized by close four-part harmonies; the name derived from some of the nonsense syllables sung by the backup -07061968 10 n 01 soul 0 002 @ 07061334 n 0000 @ 07025604 n 0000 | a secular form of gospel that was a major Black musical genre in the 1960s and 1970s; "soul was politically significant during the Civil Rights movement" -07062190 10 n 01 bluegrass 0 001 @ 07060440 n 0000 | a type of country music played at a rapid tempo on banjos and guitars -07062315 10 n 01 hillbilly_music 0 001 @ 07060440 n 0000 | country music originating in mountainous regions of southern United States -07062451 10 n 01 square-dance_music 0 001 @ 07060167 n 0000 | music performed for square dancing -07062550 10 n 01 zydeco 0 001 @ 07060440 n 0000 | music of southern Louisiana that combines French dance melodies with Caribbean music and blues -07062697 10 n 01 jazz 0 014 @ 07059255 n 0000 + 02019881 a 0101 + 01725734 v 0101 -c 00855158 a 0000 ~ 00547244 n 0000 -c 07060976 n 0000 ~ 07063101 n 0000 ~ 07063249 n 0000 ~ 07063413 n 0000 ~ 07063585 n 0000 ~ 07063775 n 0000 ~ 07063921 n 0000 ~ 07065932 n 0000 ~ 07066042 n 0000 | a genre of popular music that originated in New Orleans around 1900 and developed through increasingly complex styles -07063101 10 n 02 bop 0 bebop 0 003 @ 07062697 n 0000 + 01895263 v 0202 + 01895263 v 0101 | an early form of modern jazz (originating around 1940) -07063249 10 n 02 boogie 0 boogie-woogie 0 003 @ 07062697 n 0000 @ 07051185 n 0000 + 01897203 v 0101 | an instrumental version of the blues (especially for piano) -07063413 10 n 01 cool_jazz 0 001 @ 07062697 n 0000 | jazz that is restrained and fluid and marked by intricate harmonic structures often lagging slightly behind the beat -07063585 10 n 01 funk 0 002 @ 07062697 n 0000 + 00855158 a 0101 | an earthy type of jazz combining it with blues and soul; has a heavy bass line that accentuates the first beat in the bar -07063775 10 n 01 hot_jazz 0 001 @ 07062697 n 0000 | jazz that is emotionally charged and intense and marked by strong rhythms and improvisation -07063921 10 n 03 modern_jazz 0 new_jazz 0 neo_jazz 0 001 @ 07062697 n 0000 | any of various styles of jazz that appeared after 1940 -07064055 10 n 03 rap 2 rap_music 0 hip-hop 0 003 @ 07059255 n 0000 @ 07025604 n 0000 + 01715997 v 0101 | genre of African-American music of the 1980s and 1990s in which rhyming lyrics are chanted to a musical accompaniment; several forms of rap have emerged -07064315 10 n 02 rhythm_and_blues 0 R_and_B 0 002 @ 07059255 n 0000 @ 07025604 n 0000 | a combination of blues and jazz that was developed in the United States by Black musicians; an important precursor of rock 'n' roll -07064537 10 n 01 rockabilly 0 001 @ 07059255 n 0000 | a fusion of black music and country music that was popular in the 1950s; sometimes described as blues with a country beat -07064715 10 n 06 rock_'n'_roll 0 rock'n'roll 0 rock-and-roll 0 rock_and_roll 0 rock 1 rock_music 0 007 @ 07059255 n 0000 ~ 07065149 n 0000 ~ 07065333 n 0000 ~ 07065562 n 0000 ~ 07065740 n 0000 %p 07086861 n 0000 -c 07086861 n 0000 | a genre of popular music originating in the 1950s; a blend of black rhythm-and-blues with white country-and-western; "rock is a generic term for the range of styles that evolved out of rock'n'roll." -07065149 10 n 02 heavy_metal 0 heavy_metal_music 0 001 @ 07064715 n 0000 | loud and harsh sounding rock music with a strong beat; lyrics usually involve violent or fantastic imagery -07065333 10 n 02 progressive_rock 0 art_rock 0 001 @ 07064715 n 0000 | a style of rock music that emerged in the 1970s; associated with attempts to combine rock with jazz and other forms; intended for listening and not dancing -07065562 10 n 02 psychedelic_rock 0 acid_rock 0 001 @ 07064715 n 0000 | a musical style that emerged in the 1960s; rock music inspired by or related to drug-induced experience -07065740 10 n 02 punk_rock 0 punk 0 001 @ 07064715 n 0000 | rock music with deliberately offensive lyrics expressing anger and social alienation; in part a reaction against progressive rock -07065932 10 n 01 trad 0 002 @ 07062697 n 0000 ;r 08860123 n 0000 | traditional jazz as revived in the 1950s -07066042 10 n 03 swing 1 swing_music 0 jive 0 004 @ 07062697 n 0000 + 01708542 v 0301 + 02020011 a 0103 + 02752277 v 0101 | a style of jazz played by big bands popular in the 1930s; flowing rhythms but less complex than later styles of jazz -07066285 10 n 01 reggae 0 001 @ 07059255 n 0000 | popular music originating in the West Indies; repetitive bass riffs and regular chords played on the off beat by a guitar -07066459 10 n 01 skiffle 0 002 @ 07059255 n 0000 ;r 08860123 n 0000 | a style of popular music in the 1950s; based on American folk music and played on guitars and improvised percussion instruments -07066659 10 n 02 expressive_style 0 style 0 037 @ 00033020 n 0000 ;c 06282651 n 0000 ;c 00933420 n 0000 ;c 07020895 n 0000 + 02018296 a 0201 + 10155849 n 0203 + 10667477 n 0201 + 01687569 v 0201 ~ 06366581 n 0000 ~ 07067876 n 0000 ~ 07068048 n 0000 ~ 07068133 n 0000 ~ 07068844 n 0000 ~ 07069210 n 0000 ~ 07069517 n 0000 ~ 07069747 n 0000 ~ 07069948 n 0000 ~ 07070429 n 0000 ~ 07070779 n 0000 ~ 07071017 n 0000 ~ 07071250 n 0000 ~ 07071366 n 0000 ~ 07071483 n 0000 ~ 07071942 n 0000 ~ 07072195 n 0000 ~ 07072337 n 0000 ~ 07072434 n 0000 ~ 07072698 n 0000 ~ 07072838 n 0000 ~ 07073071 n 0000 ~ 07087940 n 0000 ~ 07088438 n 0000 ~ 07088645 n 0000 ~ 07089622 n 0000 ~ 07089751 n 0000 ~ 07092158 n 0000 ~ 07093273 n 0000 | a way of expressing something (in language or art or music etc.) that is characteristic of a particular person or group of people or period; "all the reporters were expected to adopt the style of the newspaper" -07067591 10 n 01 address 3 002 @ 07071483 n 0000 + 01150981 v 0101 | the manner of speaking to another individual; "he failed in his manner of address to the captain" -07067760 10 n 01 catch 0 001 @ 07071483 n 0000 | a break or check in the voice (usually a sign of strong emotion) -07067876 10 n 01 analysis 1 001 @ 07066659 n 0000 | the use of closed-class words instead of inflections: e.g., `the father of the bride' instead of `the bride's father' -07068048 10 n 01 bathos 0 001 @ 07066659 n 0000 | triteness or triviality of style -07068133 10 n 02 black_humor 0 black_humour 0 002 @ 07066659 n 0000 ;c 06376154 n 0000 | the juxtaposition of morbid and farcical elements (in writing or drama) to give a disturbing effect -07068324 10 n 01 Gongorism 0 001 @ 07069517 n 0000 | an affected elegance of style that was introduced into Spanish literature by the poet Gongora -07068473 10 n 01 conceit 1 001 @ 07068844 n 0000 | an artistic device or effect; "the architect's brilliant conceit was to build the house around the tree" -07068631 10 n 01 development 0 002 @ 06392001 n 0000 ;c 07020895 n 0000 | (music) the section of a composition or movement (especially in sonata form) where the major musical themes are developed and elaborated -07068844 10 n 01 device 0 003 @ 07066659 n 0000 ~ 07068473 n 0000 ~ 07098193 n 0000 | something in an artistic work designed to achieve a particular effect -07069002 10 n 01 doctorspeak 0 001 @ 07071017 n 0000 | medical jargon -07069074 10 n 01 ecobabble 0 001 @ 07071017 n 0000 | using the technical language of ecology to make the user seem ecologically aware -07069210 10 n 03 eloquence 0 fluency 0 smoothness 0 003 @ 07066659 n 0000 + 00150505 a 0203 + 00150505 a 0101 | powerful and effective language; "his eloquence attracted a large congregation"; "fluency in spoken and written English is essential"; "his oily smoothness concealed his guilt from the police" -07069517 10 n 01 euphuism 1 002 @ 07066659 n 0000 ~ 07068324 n 0000 | any artificially elegant style of language -07069632 10 n 01 Eurobabble 0 001 @ 07071017 n 0000 | the jargon of European community documents and regulations -07069747 10 n 01 flatness 0 004 @ 07066659 n 0000 + 02307563 a 0102 + 01541828 a 0101 + 00660551 a 0103 | a want of animation or brilliance; "the almost self-conscious flatness of Hemingway's style" -07069948 10 n 02 formulation 0 expression 1 011 @ 07066659 n 0000 + 00980453 v 0102 ~ 06775812 n 0000 ~ 07070883 n 0000 ~ 07073447 n 0000 ~ 07075006 n 0000 ~ 07075172 n 0000 ~ 07081177 n 0000 ~ 07081345 n 0000 ~ 07081473 n 0000 ~ 07081739 n 0000 | the style of expressing yourself; "he suggested a better formulation"; "his manner of expression showed how much he cared" -07070321 10 n 01 gobbledygook 0 001 @ 07071017 n 0000 | incomprehensible or pompous jargon of specialists -07070429 10 n 05 grandiosity 0 magniloquence 0 ornateness 0 grandiloquence 0 rhetoric 2 007 @ 07066659 n 0000 + 02017721 a 0401 + 02017141 a 0302 + 02017721 a 0202 + 01850288 a 0101 ~ 06890373 n 0000 ~ 07087777 n 0000 | high-flown style; excessive use of verbal ornamentation; "the grandiosity of his prose"; "an excessive ornateness of language" -07070779 10 n 01 headlinese 0 001 @ 07066659 n 0000 | using the abbreviated style of headline writers -07070883 10 n 01 honorific 0 002 @ 07069948 n 0000 + 01994404 a 0101 | an expression of respect; "the Japanese use many honorifics" -07071017 10 n 01 jargon 1 007 @ 07066659 n 0000 ~ 07069002 n 0000 ~ 07069074 n 0000 ~ 07069632 n 0000 ~ 07070321 n 0000 ~ 07072587 n 0000 ~ 07088319 n 0000 | specialized technical terminology characteristic of a particular subject -07071250 10 n 01 journalese 0 002 @ 07066659 n 0000 ~ 07088053 n 0000 | the style in which newspapers are written -07071366 10 n 01 legalese 0 001 @ 07066659 n 0000 | a style that uses the abstruse technical vocabulary of the law -07071483 10 n 03 manner_of_speaking 0 speech 5 delivery 0 011 @ 07066659 n 0000 #p 07082025 n 0000 + 00989602 v 0301 ~ 07067591 n 0000 ~ 07067760 n 0000 ~ 07082198 n 0000 ~ 07082444 n 0000 ~ 07082573 n 0000 ~ 07083246 n 0000 ~ 07083732 n 0000 ~ 07083958 n 0000 | your characteristic style or manner of expressing yourself orally; "his manner of speaking was quite abrupt"; "her speech was barren of southernisms"; "I detected a slight accent in his speech" -07071942 10 n 04 music_genre 0 musical_genre 0 genre 1 musical_style 0 008 @ 07066659 n 0000 @ 07020895 n 0000 ~ 07025604 n 0000 ~ 07025900 n 0000 -c 07032753 n 0000 ~ 07033007 n 0000 ~ 07058296 n 0000 ~ 07059255 n 0000 | an expressive style of music -07072195 10 n 01 officialese 0 001 @ 07066659 n 0000 | the style of writing characteristic of some government officials: formal and obscure -07072337 10 n 01 pathos 0 001 @ 07066659 n 0000 | a style that has the power to evoke feelings -07072434 10 n 01 prose 1 004 @ 07066659 n 0000 + 02018649 a 0102 + 01346343 a 0102 + 00922840 a 0103 | matter of fact, commonplace, or dull expression -07072587 10 n 01 psychobabble 0 001 @ 07071017 n 0000 | using language loaded with psychological terminology -07072698 10 n 01 rhetoric 0 003 @ 07066659 n 0000 + 10380672 n 0103 %p 07098193 n 0000 | using language effectively to please or persuade -07072838 10 n 02 saltiness 0 coarseness 0 002 @ 07066659 n 0000 + 02306874 a 0102 | language or humor that is down-to-earth; "the saltiness of their language was inappropriate"; "self-parody and saltiness riddled their core genre" -07073071 10 n 01 self-expression 0 001 @ 07066659 n 0000 | the expression of one's individuality (usually through creative activities) -07073208 10 n 02 articulation 1 voice 1 005 @ 07139873 n 0000 + 00933403 v 0201 + 00980453 v 0105 + 00978369 v 0101 + 00978549 v 0102 | expressing in coherent verbal form; "the articulation of my feelings"; "I gave voice to my feelings" -07073447 10 n 02 archaism 0 archaicism 0 078 @ 07069948 n 0000 + 02638740 a 0201 + 02638740 a 0101 + 00522068 v 0101 + 00522068 v 0102 -u 00244820 a 0000 -u 00245458 a 0000 -u 00256237 a 0000 -u 00326608 a 0000 -u 00455717 a 0000 -u 00475996 a 0000 -u 00482580 a 0000 -u 00549675 a 0000 -u 00572392 a 0000 -u 00671593 a 0000 -u 00703366 a 0000 -u 00705616 a 0000 -u 00705776 a 0000 -u 00962135 a 0000 -u 01251830 a 0000 -u 01253112 a 0000 -u 01357206 a 0000 -u 01407816 a 0000 -u 01436671 a 0000 -u 01554940 a 0000 -u 01827161 a 0000 -u 01840673 a 0000 -u 02282171 a 0000 -u 02285854 a 0000 -u 02456698 a 0000 -u 02562705 a 0000 -u 02743112 a 0000 -u 02763684 a 0000 -u 02822472 a 0000 -u 02938361 a 0000 -u 03063305 a 0000 -u 00043521 r 0000 -u 00232936 r 0000 -u 00277064 r 0000 -u 00289088 r 0000 -u 00398843 r 0000 -u 00420004 r 0000 -u 00492745 r 0000 -u 00415988 n 0000 -u 02378299 n 0000 -u 03437184 n 0000 -u 03525372 n 0000 -u 03537550 n 0000 -u 04624289 n 0000 -u 04867440 n 0000 -u 05099662 n 0000 -u 05172131 n 0102 -u 05833252 n 0000 -u 06056787 n 0000 -u 07946516 n 0000 -u 09636339 n 0105 -u 09636339 n 0104 -u 09636339 n 0103 -u 09636796 n 0000 -u 09637512 n 0000 -u 09638454 n 0000 -u 09638569 n 0000 -u 09638722 n 0000 -u 09643078 n 0000 -u 09886911 n 0000 -u 12212690 n 0000 -u 13284356 n 0000 -u 14416473 n 0000 -u 14842703 n 0000 -u 14842847 n 0000 -u 14844414 n 0000 -u 14847103 n 0000 -u 14847357 n 0000 -u 14950300 n 0000 -c 00663160 v 0000 -u 01426397 v 010f -u 02527085 v 0000 -u 02637202 v 0000 | the use of an archaic expression -07075006 10 n 01 boilerplate 0 002 @ 07069948 n 0000 #p 06520944 n 0000 | standard formulations uniformly found in certain types of legal documents or news stories -07075172 10 n 01 colloquialism 0 287 @ 07069948 n 0000 -u 00004817 a 0000 -u 00019505 a 0000 -u 00020647 a 0000 -u 00022437 a 0000 -u 00033077 a 0000 -u 00092136 a 0000 -u 00115094 a 0000 -u 00115193 a 0000 -u 00115906 a 0000 -u 00167520 a 0000 -u 00218673 a 0000 -u 00228876 a 0000 -u 00265314 a 0000 -u 00294463 a 0000 -u 00341655 a 0000 -u 00437223 a 0000 -u 00439905 a 0000 -u 00452114 a 0000 -u 00456929 a 0000 -u 00458266 a 0000 -u 00459953 a 0000 -u 00476819 a 0000 -u 00478311 a 0000 -u 00532560 a 0000 -u 00653617 a 0000 -u 00680156 a 0000 -u 00680634 a 0000 -u 00694773 a 0000 -u 00733632 a 0000 -u 00735882 a 0000 -u 00748563 a 0000 -u 00750054 a 0000 -u 00765289 a 0000 -u 00799401 a 0000 -u 00806243 a 0000 -u 00811248 a 0000 -u 00850875 a 0000 -u 00855309 a 0000 -u 00886448 a 0000 -u 00901650 a 0000 -u 00919984 a 0000 -u 00933415 a 0000 -u 00971660 a 0000 -u 00972354 a 0000 -u 00972501 a 0000 -u 00975011 a 0000 -u 00975778 a 0000 -u 00976016 a 0000 -u 01019450 a 0000 -u 01054367 a 0000 -u 01075524 a 0000 -u 01086213 a 0000 -u 01123879 a 0000 -u 01127440 a 0000 -u 01127782 a 0000 -u 01129021 a 0000 -u 01138450 a 0000 -u 01201298 a 0000 -u 01267339 a 0000 -u 01274741 a 0000 -u 01276872 a 0000 -u 01280908 a 0000 -u 01281874 a 0000 -u 01307571 a 0000 -u 01332907 a 0000 -u 01388062 a 0000 -u 01389022 a 0000 -u 01391074 a 0000 -u 01392633 a 0000 -u 01392896 a 0000 -u 01403632 a 0000 -u 01423187 a 0000 -u 01462461 a 0000 -u 01468850 a 0000 -u 01510628 a 0000 -u 01520908 a 0000 -u 01533659 a 0000 -u 01538583 a 0000 -u 01586194 a 0000 -u 01677200 a 0000 -u 01678586 a 0000 -u 01709681 a 0000 -u 01766958 a 0000 -u 01777662 a 0000 -u 01795353 a 0000 -u 01816525 a 0000 -u 01836766 a 0000 -u 01850446 a 0000 -u 01850742 a 0000 -u 01863442 a 0000 -u 01871349 a 0000 -u 01880071 a 0000 -u 01914250 a 0000 -u 01917594 a 0000 -u 02076234 a 0000 -u 02077904 a 0000 -u 02081114 a 0000 -u 02204580 a 0000 -u 02227485 a 0000 -u 02257601 a 0000 -u 02298642 a 0000 -u 02337558 a 0000 -u 02341864 a 0000 -u 02342463 a 0000 -u 02346013 a 0000 -u 02347742 a 0000 -u 02358650 a 0000 -u 02358762 a 0000 -u 02358898 a 0000 -u 02383564 a 0000 -u 02407346 a 0000 -u 02421364 a 0000 -u 02432154 a 0000 -u 02434473 a 0000 -u 02509710 a 0000 -u 02512044 a 0000 -u 02571536 a 0000 -u 00003846 r 0000 -u 00008007 r 0000 -u 00009541 r 0000 -u 00015471 r 0000 -u 00025290 r 0000 -u 00025559 r 0000 -u 00025728 r 0000 -u 00032598 r 0000 -u 00033809 r 0000 -u 00039318 r 0000 -u 00054950 r 0000 -u 00056916 r 0000 -u 00057042 r 0000 -u 00057388 r 0000 -u 00058033 r 0000 -u 00089076 r 0000 -u 00091032 r 0000 -u 00101752 r 0000 -u 00104661 r 0000 -u 00118727 r 0000 -u 00144722 r 0000 -u 00147876 r 0000 -u 00148139 r 0000 -u 00161630 r 0000 -u 00164676 r 0000 -u 00168564 r 0000 -u 00200614 r 0000 -u 00277585 r 0000 -u 00354033 r 0000 -u 00355080 r 0000 -u 00426140 r 0000 -u 00426278 r 0000 -u 00472323 r 0000 -u 00104088 n 0000 -u 00323262 n 0000 -u 00580190 n 0000 -u 00583089 n 0000 -u 00797468 n 0000 -u 00802785 n 0000 -u 00854393 n 0000 -u 01096674 n 0000 -u 01172598 n 0000 -u 01260556 n 0000 -u 01260731 n 0000 -u 01503976 n 0000 -u 02324587 n 0000 -u 02834506 n 0000 -u 03173142 n 0000 -u 03404012 n 0000 -u 03436182 n 0000 -u 03655838 n 0000 -u 03688192 n 0000 -u 03711603 n 0000 -u 04027820 n 0000 -u 04055595 n 0000 -u 04056491 n 0000 -u 04066023 n 0000 -u 04095109 n 0000 -u 04165811 n 0000 -u 04201992 n 0000 -u 04355115 n 0000 -u 04552097 n 0000 -u 04761960 n 0000 -u 04815177 n 0000 -u 04931267 n 0000 -u 05032351 n 0000 -u 05084733 n 0000 -u 05096294 n 0000 -u 05105009 n 0000 -u 05206445 n 0000 -u 05210820 n 0000 -u 05311054 n 0000 -u 05312040 n 0000 -u 05599084 n 0000 -u 05601357 n 0000 -u 05687832 n 0000 -u 05705484 n 0000 -u 05786372 n 0000 -u 05812485 n 0000 -u 05828102 n 0000 -u 05828263 n 0000 -u 05831939 n 0000 -u 05921685 n 0000 -u 06322357 n 0000 -u 06397645 n 0000 -u 06547832 n 0000 -u 06610436 n 0000 -u 06716796 n 0000 -u 06947658 n 0108 -u 07141537 n 0000 -u 07142924 n 0000 -u 07144416 n 0000 -u 07246215 n 0000 -u 07292418 n 0000 -u 07319399 n 0000 -u 07320894 n 0000 -u 07519983 n 0000 -u 07539962 n 0000 -u 07677860 n 0000 -u 07907037 n 0000 -u 07960666 n 0000 -u 08245425 n 0000 -u 08590719 n 0000 -u 09125984 n 0000 -u 09270508 n 0000 -u 09605110 n 0000 -u 09853881 n 0000 -u 09879144 n 0000 -u 09890662 n 0000 -u 09891300 n 0000 -u 09976283 n 0000 -u 10011785 n 0000 -u 10013114 n 0000 -u 10022908 n 0000 -u 10026367 n 0000 -u 10085101 n 0000 -u 10097477 n 0000 -u 10114662 n 0000 -u 10117851 n 0000 -u 10123711 n 0000 -u 10162780 n 0000 -u 10163593 n 0000 -u 10194566 n 0000 -u 10240235 n 0000 -u 10251329 n 0000 -u 10288516 n 0000 -u 10314182 n 0000 -u 10335801 n 0000 -u 10397142 n 0000 -u 10505459 n 0000 -u 10531557 n 0000 -u 10591347 n 0000 -u 10627899 n 0000 -u 10628368 n 0000 -u 10638136 n 0000 -u 10642845 n 0000 -u 10666615 n 0000 -u 10709876 n 0000 -u 10719395 n 0000 -u 10762342 n 0000 -u 10788852 n 0000 -u 13259797 n 0000 -u 13272712 n 0000 -u 13366428 n 0000 -u 13371190 n 0000 -u 13372123 n 0000 -u 13772313 n 0000 -u 13927112 n 0000 -u 13937727 n 0000 -u 13988498 n 0000 -u 14018055 n 0000 -u 14038027 n 0000 -u 14360742 n 0000 -u 14405061 n 0000 -u 14485673 n 0000 -u 14485811 n 0000 -u 14485990 n 0000 -u 14521954 n 0000 -u 15048623 n 0000 -u 15060569 n 0000 -u 15170178 n 0000 -u 15243202 n 0000 -u 15244200 n 0000 -u 00590241 v 0000 -u 01906322 v 0000 -u 02010698 v 0102 -u 02167210 v 0000 -u 02532458 v 0000 -u 02600082 v 0000 | a colloquial expression; characteristic of spoken or written communication that seeks to imitate informal speech -07080778 10 n 01 mot_juste 0 001 @ 07081739 n 0000 | the appropriate word or expression -07080868 10 n 02 verbalization 0 verbalisation 0 004 @ 00407535 n 0000 + 00940384 v 0203 + 00941990 v 0206 + 00941990 v 0105 | the activity of expressing something in words -07081043 10 n 02 verbalization 1 verbalisation 1 001 @ 07081739 n 0000 | the words that are spoken in the activity of verbalization -07081177 10 n 02 parlance 0 idiom 2 003 @ 07069948 n 0000 + 03004358 a 0201 + 03004358 a 0202 | a manner of speaking that is natural to native speakers of a language -07081345 10 n 01 Americanism 0 001 @ 07069948 n 0000 | an expression that is characteristic of English as spoken by Americans -07081473 10 n 03 Anglicism 0 Briticism 0 Britishism 0 001 @ 07069948 n 0000 | an expression that is used in Great Britain (especially as contrasted with American English) -07081646 10 n 01 Gallicism 0 001 @ 06293460 n 0000 | a word or phrase borrowed from French -07081739 10 n 06 wording 0 diction 0 phrasing 0 phraseology 0 choice_of_words 0 verbiage 0 005 @ 07069948 n 0000 + 00980453 v 0304 + 00980453 v 0103 ~ 07080778 n 0000 ~ 07081043 n 0000 | the manner in which something is expressed in words; "use concise military verbiage"- G.S.Patton -07082025 10 n 02 paralanguage 0 paralinguistic_communication 0 002 @ 00033020 n 0000 %p 07071483 n 0000 | the use of manner of speaking to communicate particular meanings -07082198 10 n 01 tongue 1 002 @ 07071483 n 0000 ~ 07082346 n 0000 | a manner of speaking; "he spoke with a thick tongue"; "she has a glib tongue" -07082346 10 n 01 sharp_tongue 0 001 @ 07082198 n 0000 | a bitter or critical manner of speaking -07082444 10 n 01 shibboleth 0 001 @ 07071483 n 0000 | a manner of speaking that is distinctive of a particular group of people -07082573 10 n 02 tone 1 tone_of_voice 0 005 @ 07071483 n 0000 + 01050313 v 0101 ~ 07082819 n 0000 ~ 07082972 n 0000 ~ 07083136 n 0000 | the quality of a person's voice; "he began in a conversational tone"; "he spoke in a nervous tone of voice" -07082819 10 n 01 note 5 001 @ 07082573 n 0000 | a tone of voice that shows what the speaker is feeling; "there was a note of uncertainty in his voice" -07082972 10 n 02 roundness 0 rotundity 0 002 @ 07082573 n 0000 + 01457486 a 0103 | the fullness of a tone of voice; "there is a musky roundness to his wordiness" -07083136 10 n 01 undertone 0 001 @ 07082573 n 0000 | a quiet or hushed tone of voice; "spoke in undertones" -07083246 10 n 01 elocution 0 005 @ 07071483 n 0000 + 00073935 a 0101 + 03063176 a 0101 + 10050880 n 0101 + 00769180 v 0101 | an expert manner of speaking involving control of voice and gesture -07083441 10 n 04 barrage 0 bombardment 0 outpouring 0 onslaught 0 003 @ 06282651 n 0000 + 00863579 v 0201 + 00863579 v 0102 | the rapid and continuous delivery of linguistic communication (spoken or written); "a barrage of questions"; "a bombardment of mail complaining about his mistake" -07083732 10 n 02 prosody 0 inflection 0 007 @ 07071483 n 0000 + 00982293 v 0202 ~ 07084166 n 0000 ~ 07085072 n 0000 ~ 07085210 n 0000 ~ 07085375 n 0000 ~ 07086323 n 0000 | the patterns of stress and intonation in a language -07083958 10 n 02 modulation 3 inflection 1 004 @ 07071483 n 0000 + 00982293 v 0202 + 00982293 v 0103 + 00171458 v 0101 | a manner of speaking in which the loudness or pitch or tone of the voice is modified -07084166 10 n 03 intonation 0 modulation 2 pitch_contour 0 009 @ 07083732 n 0000 + 00982293 v 0203 + 01050313 v 0102 + 01049737 v 0102 + 01050313 v 0101 + 01049737 v 0103 ~ 07084428 n 0000 ~ 07084560 n 0000 ~ 07084927 n 0000 | rise and fall of the voice pitch -07084428 10 n 01 intonation_pattern 0 001 @ 07084166 n 0000 | intonations characteristic of questions and requests and statements -07084560 10 n 03 monotone 0 drone 0 droning 0 006 @ 07084166 n 0000 + 02188442 v 0301 + 00944788 v 0301 + 00944788 v 0201 + 01541828 a 0102 + 01541828 a 0103 | an unchanging intonation -07084747 10 n 01 monotone 1 002 @ 06865345 n 0000 + 01541828 a 0103 | a single tone repeated with different words or different rhythms (especially in rendering liturgical texts) -07084927 10 n 01 singsong 0 003 @ 07084166 n 0000 + 02095696 v 0101 + 01050165 v 0101 | a regular and monotonous rising and falling intonation -07085072 10 n 01 caesura 0 002 @ 07083732 n 0000 + 02673594 a 0101 | a break or pause (usually for sense) in the middle of a verse line -07085210 10 n 02 enjambment 0 enjambement 0 001 @ 07083732 n 0000 | the continuation of a syntactic unit from one line of verse into the next line without a pause -07085375 10 n 03 stress 1 emphasis 0 accent 0 012 @ 07083732 n 0000 + 03139235 a 0301 + 02290454 a 0301 + 00983333 v 0303 + 00983333 v 0302 + 02319765 a 0201 + 00842041 a 0201 + 00983333 v 0101 ~ 07085786 n 0000 ~ 07085961 n 0000 ~ 07086088 n 0000 ~ 07086215 n 0000 | the relative prominence of a syllable or musical note (especially with regard to stress or pitch); "he put the stress on the wrong syllable" -07085786 10 n 01 accentuation 0 002 @ 07085375 n 0000 + 00983333 v 0103 | the use or application of an accent; the relative prominence of syllables in a phrase or utterance -07085961 10 n 02 tonic_accent 0 pitch_accent 0 001 @ 07085375 n 0000 | emphasis that results from pitch rather than loudness -07086088 10 n 02 word_stress 0 word_accent 0 001 @ 07085375 n 0000 | the distribution of stresses within a polysyllabic word -07086215 10 n 01 sentence_stress 0 001 @ 07085375 n 0000 | the distribution of stresses within a sentence -07086323 10 n 02 rhythm 0 speech_rhythm 0 002 @ 07083732 n 0000 @ 05938976 n 0000 | the arrangement of spoken words alternating stressed and unstressed elements; "the rhythm of Frost's poetry" -07086518 10 n 03 rhythm 1 beat 0 musical_rhythm 0 010 @ 15122011 n 0000 + 01880113 v 0201 + 01399576 v 0201 + 02174830 v 0202 + 01880673 v 0201 + 01726879 v 0201 ~ 07086861 n 0000 ~ 07086972 n 0000 ~ 07087102 n 0000 ~ 07087223 n 0000 | the basic rhythmic unit in a piece of music; "the piece has a fast rhythm"; "the conductor set the beat" -07086861 10 n 01 backbeat 0 003 @ 07086518 n 0000 #p 07064715 n 0000 ;c 07064715 n 0000 | a loud steady beat -07086972 10 n 01 downbeat 0 001 @ 07086518 n 0000 | the first beat of a musical measure (as the conductor's arm moves downward) -07087102 10 n 02 upbeat 0 offbeat 0 001 @ 07086518 n 0000 | an unaccented beat (especially the last beat of a measure) -07087223 10 n 01 syncopation 0 002 @ 07086518 n 0000 + 00170500 v 0101 | a musical rhythm accenting a normally weak beat -07087346 10 n 01 recitative 0 002 @ 07044917 n 0000 ~ 07087508 n 0000 | a vocal passage of narrative text that a singer delivers with natural rhythms of speech -07087508 10 n 01 arioso 0 002 @ 07087346 n 0000 ;c 07020895 n 0000 | (music) a short recitative that is melodic but is not an aria -07087641 10 n 02 transition 1 modulation 1 002 @ 07044917 n 0000 + 01729142 v 0201 | a musical passage moving from one key to another -07087777 10 n 05 bombast 0 fustian 0 rant 0 claptrap 0 blah 0 003 @ 07070429 n 0000 + 01051956 v 0301 + 02016881 a 0101 | pompous or pretentious talk or writing -07087940 10 n 01 sesquipedality 0 003 @ 07066659 n 0000 + 01851330 a 0101 + 01435675 a 0102 | using long words -07088053 10 n 02 sensationalism 0 luridness 0 004 @ 07071250 n 0000 + 02101757 a 0201 + 02101942 a 0102 + 10579835 n 0101 | the journalistic use of subject matter that appeals to vulgar tastes; "the tabloids relied on sensationalism to maintain their circulation" -07088319 10 n 01 technobabble 0 001 @ 07071017 n 0000 | technical jargon from computing and other high-tech subjects -07088438 10 n 01 terseness 0 007 @ 07066659 n 0000 + 00547641 a 0104 ! 07089751 n 0101 ~ 07089024 n 0000 ~ 07089276 n 0000 ~ 07089431 n 0000 ~ 07089531 n 0000 | a neatly short and concise expressive style -07088645 10 n 02 turn_of_phrase 0 turn_of_expression 0 002 @ 07066659 n 0000 ~ 07088868 n 0000 | a distinctive spoken or written expression; "John's succinct turn of phrase persuaded her that it would not be a good idea" -07088868 10 n 01 conceit 0 001 @ 07088645 n 0000 | a witty or ingenious turn of phrase; "he could always come up with some inspired off-the-wall conceit" -07089024 10 n 04 conciseness 0 concision 0 pithiness 0 succinctness 0 004 @ 07088438 n 0000 + 00547317 a 0403 + 00548316 a 0301 + 00546646 a 0101 | terseness and economy in writing and speaking achieved by expressing a great deal in just a few words -07089276 10 n 01 crispness 0 002 @ 07088438 n 0000 + 00547641 a 0101 | an expressive style that is direct and to the point; "the crispness of his reply" -07089431 10 n 01 brevity 0 002 @ 07088438 n 0000 + 00547166 a 0101 | the use of brief expressions -07089531 10 n 02 laconism 0 laconicism 0 001 @ 07088438 n 0000 | terseness of expression -07089622 10 n 01 vein 0 001 @ 07066659 n 0000 | a distinctive style or manner; "he continued in this vein for several minutes" -07089751 10 n 02 verboseness 0 verbosity 0 009 @ 07066659 n 0000 + 00549236 a 0203 + 00549236 a 0103 ! 07088438 n 0101 ~ 07090019 n 0000 ~ 07090108 n 0000 ~ 07090379 n 0000 ~ 07090721 n 0000 ~ 07091087 n 0000 | an expressive style that uses excessive or empty words -07090019 10 n 02 verbiage 2 verbalism 1 001 @ 07089751 n 0000 | overabundance of words -07090108 10 n 05 prolixity 0 prolixness 0 windiness 0 long-windedness 0 wordiness 0 009 @ 07089751 n 0000 + 00549236 a 0401 + 00549236 a 0304 + 00548781 a 0201 + 00548781 a 0101 = 00546646 a 0000 = 00548781 a 0000 + 00549236 a 0505 ~ 07090573 n 0000 | boring verbosity -07090379 10 n 03 circumlocution 0 periphrasis 0 ambage 0 004 @ 07089751 n 0000 + 00767626 a 0304 + 00767626 a 0203 + 00767626 a 0101 | a style that involves indirect ways of expressing things -07090573 10 n 03 turgidity 0 turgidness 0 flatulence 0 003 @ 07090108 n 0000 + 02016881 a 0206 + 02016881 a 0106 | pompously embellished language -07090721 10 n 02 repetitiveness 0 repetitiousness 0 006 @ 07089751 n 0000 + 01964367 a 0202 + 00592539 a 0102 + 01964367 a 0101 ~ 07090938 n 0000 ~ 07091214 n 0000 | verboseness resulting from excessive repetitions -07090938 10 n 01 redundancy 0 002 @ 07090721 n 0000 + 01581305 a 0103 | repetition of messages to reduce the probability of errors in transmission -07091087 10 n 01 pleonasm 0 002 @ 07089751 n 0000 + 00549826 a 0101 | using more words than necessary; "a tiny little child" -07091214 10 n 01 tautology 0 003 @ 07090721 n 0000 + 00549826 a 0103 + 00549826 a 0104 | useless repetition; "to say that something is `adequate enough' is a tautology" -07091385 10 n 01 tautology 1 003 @ 06724066 n 0000 ;c 06163751 n 0000 + 00549826 a 0104 | (logic) a statement that is necessarily true; "the statement `he is brave or he is not brave' is a tautology" -07091587 10 n 01 abbreviation 0 004 @ 06290637 n 0000 + 00243749 v 0101 ~ 07091737 n 0000 -u 14412564 n 0000 | a shortened form of a word or phrase -07091737 10 n 01 apocope 0 001 @ 07091587 n 0000 | abbreviation of a word by omitting the final sound or sounds; "the British get `pud' from `pudding' by apocope" -07091902 10 n 01 acronym 0 008 @ 06290637 n 0000 + 02859341 a 0101 + 02859341 a 0102 -u 00075283 n 0000 -u 00616398 n 0000 -u 07989220 n 0000 -u 09476717 n 0000 -u 10358575 n 0000 | a word formed from the initial letters of the several words in the name -07092158 10 n 03 writing_style 0 literary_genre 0 genre 2 005 @ 07066659 n 0000 ~ 06376154 n 0000 ~ 06376572 n 0000 ~ 07092356 n 0000 ~ 07092592 n 0000 | a style of expressing yourself in writing -07092356 10 n 01 form 2 003 @ 07092158 n 0000 + 02621395 v 0101 ~ 07093603 n 0000 | an arrangement of the elements in a composition or discourse; "the essay was in the form of a dialogue"; "he first sketches the plot in outline form" -07092592 10 n 03 poetry 2 poesy 2 verse 2 026 @ 07092158 n 0000 + 01702514 v 0301 + 01702514 v 0302 + 02857099 a 0102 -c 00274971 a 0000 -c 01919676 a 0000 -c 02285854 a 0000 -c 02856286 a 0000 -c 00472323 r 0000 -c 04982478 n 0000 ~ 06383523 n 0000 ~ 07093158 n 0000 -c 07535532 n 0000 -c 08860001 n 0000 -c 01698916 v 0000 -c 01699059 v 0000 -c 01701858 v 0000 -c 01702033 v 0000 -c 01702154 v 0000 -c 01702514 v 0000 -c 01703023 v 0000 -c 01703195 v 0000 -c 01703326 v 0000 -c 01703613 v 0000 -c 01703730 v 0000 -c 02661142 v 0000 | literature in metrical form -07093158 10 n 02 heroic_poetry 0 epic_poetry 0 001 @ 07092592 n 0000 | poetry celebrating the deeds of some hero -07093273 10 n 01 poetry 3 006 @ 07066659 n 0000 + 02018141 a 0102 + 02857099 a 0102 + 02018141 a 0101 + 01420337 a 0101 + 02857099 a 0101 | any communication resembling poetry in beauty or the evocation of feeling -07093489 10 n 01 versification 0 002 @ 00929718 n 0000 + 01702514 v 0102 | the art or practice of writing verse -07093603 10 n 01 versification 1 004 @ 07092356 n 0000 + 01702514 v 0102 ~ 07093895 n 0000 ~ 07096661 n 0000 | the form or metrical composition of a poem -07093759 10 n 01 versification 2 002 @ 06408779 n 0000 + 01702514 v 0102 | a metrical adaptation of something (e.g., of a prose text) -07093895 10 n 03 poetic_rhythm 0 rhythmic_pattern 0 prosody 1 005 @ 07093603 n 0000 #p 06377442 n 0000 ;c 06170025 n 0000 ~ 07094093 n 0000 ~ 07094621 n 0000 | (prosody) a system of versification -07094093 10 n 05 meter 0 metre 0 measure 1 beat 2 cadence 1 008 @ 07093895 n 0000 ;c 06170025 n 0000 + 02020310 a 0202 + 02020310 a 0102 ~ 07094355 n 0000 ~ 07094508 n 0000 ~ 07094731 n 0000 ~ 07094843 n 0000 | (prosody) the accent in a metrical foot of verse -07094355 10 n 01 catalexis 0 003 @ 07094093 n 0000 + 06348500 n 0101 + 00318082 a 0101 | the absence of a syllable in the last foot of a line or verse -07094508 10 n 01 scansion 0 002 @ 07094093 n 0000 + 01051828 v 0101 | analysis of verse into metrical patterns -07094621 10 n 01 sprung_rhythm 0 001 @ 07093895 n 0000 | a poetic rhythm that imitates the rhythm of speech -07094731 10 n 02 common_measure 0 common_meter 0 001 @ 07094093 n 0000 | the usual (iambic) meter of a ballad -07094843 10 n 03 metrical_foot 0 foot 0 metrical_unit 0 009 @ 07094093 n 0000 ;c 06170025 n 0000 ~ 07095148 n 0000 ~ 07095280 n 0000 ~ 07095390 n 0000 ~ 07095516 n 0000 ~ 07095653 n 0000 ~ 07095775 n 0000 ~ 07095895 n 0000 | (prosody) a group of 2 or 3 syllables forming the basic unit of poetic rhythm -07095148 10 n 01 dactyl 0 002 @ 07094843 n 0000 + 03059340 a 0101 | a metrical unit with stressed-unstressed-unstressed syllables -07095280 10 n 02 iamb 0 iambus 0 001 @ 07094843 n 0000 | a metrical unit with unstressed-stressed syllables -07095390 10 n 02 anapest 0 anapaest 0 001 @ 07094843 n 0000 | a metrical unit with unstressed-unstressed-stressed syllables -07095516 10 n 01 amphibrach 0 001 @ 07094843 n 0000 | a metrical unit with unstressed-stressed-unstressed syllables (e.g., `remember') -07095653 10 n 01 trochee 0 002 @ 07094843 n 0000 + 03126499 a 0101 | a metrical unit with stressed-unstressed syllables -07095775 10 n 01 spondee 0 002 @ 07094843 n 0000 + 03120034 a 0101 | a metrical unit with stressed-stressed syllables -07095895 10 n 02 pyrrhic 1 dibrach 0 002 @ 07094843 n 0000 + 03107285 a 0101 | a metrical unit with unstressed-unstressed syllables -07096029 10 n 01 tetrameter 0 002 @ 06384708 n 0000 + 02834603 a 0101 | a verse line having four metrical feet -07096142 10 n 01 pentameter 0 001 @ 06384708 n 0000 | a verse line having five metrical feet -07096237 10 n 01 hexameter 0 001 @ 06384708 n 0000 | a verse line having six metrical feet -07096330 10 n 01 octameter 0 001 @ 06384708 n 0000 | a verse line having eight metrical feet -07096425 10 n 01 octosyllable 0 002 @ 06384708 n 0000 + 02289151 a 0101 | a verse line having eight syllables or a poem of octosyllabic lines -07096569 10 n 01 decasyllable 0 001 @ 06384708 n 0000 | a verse line having ten syllables -07096661 10 n 02 rhyme 0 rime 0 012 @ 07093603 n 0000 #p 06377442 n 0000 + 02750432 v 0202 + 10528493 n 0102 + 02750432 v 0101 -c 02063279 a 0000 ~ 07096995 n 0000 ~ 07097094 n 0000 ~ 07097346 n 0000 ~ 07097548 n 0000 ~ 07097707 n 0000 ~ 07098093 n 0000 | correspondence in the sounds of two or more lines (especially final sounds) -07096995 10 n 01 internal_rhyme 0 001 @ 07096661 n 0000 | a rhyme between words in the same line -07097094 10 n 04 alliteration 0 initial_rhyme 0 beginning_rhyme 0 head_rhyme 0 002 @ 07096661 n 0000 + 01702154 v 0101 | use of the same consonant at the beginning of each stressed syllable in a line of verse; "around the rock the ragged rascal ran" -07097346 10 n 02 assonance 0 vowel_rhyme 0 004 @ 07096661 n 0000 + 02063279 a 0101 + 01966016 a 0101 + 02750642 v 0101 | the repetition of similar vowels in the stressed syllables of successive words -07097548 10 n 02 consonance 0 consonant_rhyme 0 001 @ 07096661 n 0000 | the repetition of consonants (or consonant patterns) especially at the ends of words -07097707 10 n 01 double_rhyme 0 001 @ 07096661 n 0000 | a two-syllable rhyme; "`ended' and `blended' form a double rhyme" -07097831 10 n 01 rhyme_royal 0 001 @ 07052291 n 0000 | a stanza form having seven lines of iambic pentameter; introduced by Chaucer -07097965 10 n 01 ottava_rima 0 001 @ 07052291 n 0000 | a stanza of eight lines of heroic verse with the rhyme scheme abababcc -07098093 10 n 01 eye_rhyme 0 001 @ 07096661 n 0000 | an imperfect rhyme (e.g., `love' and `move') -07098193 10 n 01 rhetorical_device 0 036 @ 07068844 n 0000 #p 07072698 n 0000 ;c 06170498 n 0000 ~ 07098989 n 0000 ~ 07099135 n 0000 ~ 07099271 n 0000 ~ 07101140 n 0000 ~ 07101250 n 0000 ~ 07101406 n 0000 ~ 07101557 n 0000 ~ 07101649 n 0000 ~ 07101778 n 0000 ~ 07101937 n 0000 ~ 07102034 n 0000 ~ 07102271 n 0000 ~ 07102373 n 0000 ~ 07102483 n 0000 ~ 07102802 n 0000 ~ 07102945 n 0000 ~ 07103106 n 0000 ~ 07103258 n 0000 ~ 07103402 n 0000 ~ 07103558 n 0000 ~ 07103671 n 0000 ~ 07103802 n 0000 ~ 07103912 n 0000 ~ 07104020 n 0000 ~ 07104149 n 0000 ~ 07104292 n 0000 ~ 07104574 n 0000 ~ 07104733 n 0000 ~ 07104912 n 0000 ~ 07105045 n 0000 ~ 07105238 n 0000 ~ 07105342 n 0000 ~ 07105475 n 0000 | a use of language that creates a literary effect (but often without regard for literal significance) -07098989 10 n 02 anacoluthia 0 anacoluthon 0 001 @ 07098193 n 0000 | an abrupt change within a sentence from one syntactic structure to another -07099135 10 n 01 asyndeton 0 002 @ 07098193 n 0000 + 02381189 a 0101 | the omission of conjunctions where they would normally be used -07099271 10 n 01 repetition 0 012 @ 07098193 n 0000 + 01964367 a 0102 ~ 07099598 n 0000 ~ 07099752 n 0000 ~ 07099844 n 0000 ~ 07100113 n 0000 ~ 07100253 n 0000 ~ 07100387 n 0000 ~ 07100522 n 0000 ~ 07100678 n 0000 ~ 07100815 n 0000 ~ 07100942 n 0000 | the repeated use of the same word or word pattern as a rhetorical device -07099598 10 n 02 anadiplosis 0 reduplication 2 001 @ 07099271 n 0000 | repetition of the final words of a sentence or line at the beginning of the next -07099752 10 n 01 epanalepsis 0 001 @ 07099271 n 0000 | repetition after intervening words -07099844 10 n 01 epanodos 0 002 @ 07099271 n 0000 ;c 06170498 n 0000 | repetition of a group of words in reverse order -07099965 10 n 01 epanodos 1 002 @ 06469377 n 0000 ;c 06170498 n 0000 | recapitulation of the main ideas of a speech (especially in reverse order) -07100113 10 n 02 epiphora 0 epistrophe 0 001 @ 07099271 n 0000 | repetition of the ends of two or more successive sentences, verses, etc. -07100253 10 n 01 gemination 0 002 @ 07099271 n 0000 + 00246588 v 0101 | the doubling of a word or phrase (as for rhetorical effect) -07100387 10 n 01 ploce 0 002 @ 07099271 n 0000 ;c 06170498 n 0000 | (rhetoric) repetition to gain special emphasis or extend meaning -07100522 10 n 01 polyptoton 0 001 @ 07099271 n 0000 | repetition of a word in a different case or inflection in the same sentence; "My own heart's heart" -07100678 10 n 02 epanaphora 0 anaphora 1 001 @ 07099271 n 0000 | repetition of a word or phrase at the beginning of successive clauses -07100815 10 n 01 anaphora 0 001 @ 07099271 n 0000 | using a pronoun or similar word instead of repeating a word used earlier -07100942 10 n 01 symploce 0 001 @ 07099271 n 0000 | repetition of a word or phrase at the beginning and another at the end of successive clauses, i.e., simultaneous use of anaphora and epistrophe -07101140 10 n 02 anastrophe 0 inversion 0 001 @ 07098193 n 0000 | the reversal of the normal order of words -07101250 10 n 01 antiphrasis 0 002 @ 07098193 n 0000 #p 07106246 n 0000 | the use of a word in a sense opposite to its normal sense (especially in irony) -07101406 10 n 01 antithesis 0 002 @ 07098193 n 0000 + 02065404 a 0101 | the juxtaposition of contrasting words or ideas to give a feeling of balance -07101557 10 n 01 antinomasia 0 001 @ 07098193 n 0000 | substitution of a title for a name -07101649 10 n 01 apophasis 0 002 @ 07098193 n 0000 + 02634232 a 0101 | mentioning something by saying it will not be mentioned -07101778 10 n 01 aposiopesis 0 002 @ 07098193 n 0000 + 02634820 a 0101 | breaking off in the middle of a sentence (as by writers of realistic conversations) -07101937 10 n 01 apostrophe 0 001 @ 07098193 n 0000 | address to an absent or imaginary person -07102034 10 n 01 catachresis 0 003 @ 07098193 n 0000 + 02682863 a 0101 + 02682863 a 0102 | strained or paradoxical use of words either in error (as `blatant' to mean `flagrant') or deliberately (as in a mixed metaphor: `blind mouths') -07102271 10 n 01 chiasmus 0 001 @ 07098193 n 0000 | inversion in the second of two parallel phrases -07102373 10 n 01 climax 1 001 @ 07098193 n 0000 | arrangement of clauses in ascending order of forcefulness -07102483 10 n 01 conversion 0 001 @ 07098193 n 0000 | interchange of subject and predicate of a proposition -07102593 10 n 01 dramatic_irony 0 002 @ 07106246 n 0000 ;c 07006119 n 0000 | (theater) irony that occurs when the meaning of the situation is understood by the audience but not by the characters in the play -07102802 10 n 02 ecphonesis 0 exclamation 1 002 @ 07098193 n 0000 + 00977336 v 0202 | an exclamatory rhetorical device; "O tempore! O mores" -07102945 10 n 01 emphasis 1 003 @ 07098193 n 0000 + 00156575 a 0101 ~ 06484279 n 0000 | special and significant stress by means of position or repetition e.g. -07103106 10 n 01 enallage 0 001 @ 07098193 n 0000 | a substitution of part of speech or gender or number or tense etc. (e.g., editorial `we' for `I') -07103258 10 n 01 epanorthosis 0 001 @ 07098193 n 0000 | immediate rephrasing for intensification or justification; "Seems, madam! Nay, it is" -07103402 10 n 01 epiplexis 0 001 @ 07098193 n 0000 | a rhetorical device in which the speaker reproaches the audience in order to incite or convince them -07103558 10 n 01 hendiadys 0 001 @ 07098193 n 0000 | use of two conjoined nouns instead of a noun and modifier -07103671 10 n 01 hypallage 0 001 @ 07098193 n 0000 | reversal of the syntactic relation of two words (as in `her beauty's face') -07103802 10 n 01 hyperbaton 0 001 @ 07098193 n 0000 | reversal of normal word order (as in `cheese I love') -07103912 10 n 01 hypozeugma 0 001 @ 07098193 n 0000 | use of a series of subjects with a single predicate -07104020 10 n 01 hypozeuxis 0 001 @ 07098193 n 0000 | use of a series of parallel clauses (as in `I came, I saw, I conquered') -07104149 10 n 01 hysteron_proteron 0 001 @ 07098193 n 0000 | reversal of normal order of two words or sentences etc. (as in `bred and born') -07104292 10 n 02 litotes 0 meiosis 0 002 @ 07098193 n 0000 @ 06759063 n 0000 | understatement for rhetorical effect (especially when expressing an affirmative by negating its contrary); "saying `I was not a little upset' when you mean `I was very upset' is an example of litotes" -07104574 10 n 01 onomatopoeia 0 004 @ 07098193 n 0000 + 03137397 a 0102 + 01217579 a 0105 + 01217579 a 0104 | using words that imitate the sound they denote -07104733 10 n 04 paralepsis 0 paraleipsis 0 paralipsis 0 preterition 0 001 @ 07098193 n 0000 | suggesting by deliberately concise treatment that much of significance is omitted -07104912 10 n 01 paregmenon 0 001 @ 07098193 n 0000 | juxtaposing words having a common derivation (as in `sense and sensibility') -07105045 10 n 01 polysyndeton 0 001 @ 07098193 n 0000 | using several conjunctions in close succession, especially where some might be omitted (as in `he ran and jumped and laughed for joy') -07105238 10 n 01 prolepsis 0 001 @ 07098193 n 0000 | anticipating and answering objections in advance -07105342 10 n 01 wellerism 0 001 @ 07098193 n 0000 | a comparison comprising a well-known quotation followed by a facetious sequel -07105475 10 n 04 trope 0 figure_of_speech 0 figure 1 image 0 028 @ 07098193 n 0000 + 01420899 a 0101 -u 00036580 n 0000 -u 00038573 n 0000 -u 00064151 n 0000 -u 00064370 n 0000 -u 00064789 n 0000 -u 00580565 n 0000 -u 00753973 n 0000 -u 06261060 n 0000 ~ 07106113 n 0000 ~ 07106246 n 0000 ~ 07106502 n 0000 ~ 07106651 n 0000 ~ 07106800 n 0000 ~ 07107676 n 0000 ~ 07108010 n 0000 ~ 07108123 n 0000 ~ 07108282 n 0000 ~ 07108453 n 0000 ~ 07108807 n 0000 -u 11414041 n 0000 -u 13855828 n 0000 -u 15144178 n 0000 -u 15145012 n 0000 -u 15267945 n 0000 -u 15268094 n 0000 -u 15294745 n 0000 | language used in a figurative or nonliteral sense -07106113 10 n 01 conceit 2 001 @ 07105475 n 0000 | an elaborate poetic image or a far-fetched comparison of very dissimilar things -07106246 10 n 01 irony 0 008 @ 07105475 n 0000 + 00563288 a 0101 + 00563288 a 0102 -u 01128871 a 0000 -u 02586206 a 0000 -u 00037470 r 0000 %p 07101250 n 0000 ~ 07102593 n 0000 | a trope that involves incongruity between what is expected and what occurs -07106502 10 n 02 hyperbole 0 exaggeration 1 004 @ 07105475 n 0000 + 00839834 v 0202 + 00881030 a 0101 + 00839834 v 0104 | extravagant exaggeration -07106651 10 n 01 kenning 0 001 @ 07105475 n 0000 | conventional metaphoric name for something, used especially in Old English and Old Norse poetry -07106800 10 n 01 metaphor 0 006 @ 07105475 n 0000 + 01419784 a 0102 + 01419784 a 0101 ~ 07107083 n 0000 ~ 07107381 n 0000 ~ 07107522 n 0000 | a figure of speech in which an expression is used to refer to something that it does not literally denote in order to suggest a similarity -07107083 10 n 02 dead_metaphor 0 frozen_metaphor 0 001 @ 07106800 n 0000 | a metaphor that has occurred so often that it has become a new meaning of the expression (e.g., `he is a snake' may once have been a metaphor but after years of use it has died and become a new sense of the word `snake') -07107381 10 n 01 mixed_metaphor 0 001 @ 07106800 n 0000 | a combination of two or more metaphors that together produce a ridiculous effect -07107522 10 n 01 synesthetic_metaphor 0 001 @ 07106800 n 0000 | a metaphor that exploits a similarity between experiences in different sense modalities -07107676 10 n 01 metonymy 0 004 @ 07105475 n 0000 + 01419999 a 0102 ~ 07107896 n 0000 -c 10758713 n 0000 | substituting the name of an attribute or feature for the name of the thing itself (as in `they counted heads') -07107896 10 n 01 metalepsis 0 001 @ 07107676 n 0000 | substituting metonymy of one figurative sense for another -07108010 10 n 01 oxymoron 0 001 @ 07105475 n 0000 | conjoining contradictory terms (as in `deafening silence') -07108123 10 n 02 personification 0 prosopopoeia 0 002 @ 07105475 n 0000 + 02698944 v 0102 | representing an abstract quality or idea as a person or creature -07108282 10 n 01 simile 0 001 @ 07105475 n 0000 | a figure of speech that expresses a resemblance between things of different kinds (usually formed with `like' or `as') -07108453 10 n 01 synecdoche 0 005 @ 07105475 n 0000 + 01420488 a 0101 + 01420488 a 0102 -u 03507241 n 0000 -u 09618957 n 0000 | substituting a more inclusive term for a less inclusive one or vice versa -07108657 10 n 01 syllepsis 0 001 @ 07108807 n 0000 | use of a word to govern two or more words though agreeing in number or case etc. with only one -07108807 10 n 01 zeugma 0 002 @ 07105475 n 0000 ~ 07108657 n 0000 | use of a word to govern two or more words though appropriate to only one; "`Mr. Pickwick took his hat and his leave' is an example of zeugma" -07109019 10 n 01 auditory_communication 0 005 @ 00033020 n 0000 ~ 06278136 n 0000 ~ 07020895 n 0000 ~ 07109196 n 0000 ~ 07109847 n 0000 | communication that relies on hearing -07109196 10 n 07 speech 0 speech_communication 0 spoken_communication 0 spoken_language 0 language 1 voice_communication 0 oral_communication 0 013 @ 07109019 n 0000 ;c 06282651 n 0000 ~ 07109730 n 0000 ~ 07128692 n 0000 ~ 07133701 n 0000 ~ 07140659 n 0000 ~ 07151380 n 0000 ~ 07155081 n 0000 ~ 07156693 n 0000 ~ 07156819 n 0000 ~ 07159791 n 0000 ~ 07160635 n 0000 ~ 07160752 n 0000 | (language) communication by word of mouth; "his speech was garbled"; "he uttered harsh language"; "he recorded the spoken language of the streets" -07109730 10 n 01 words 3 001 @ 07109196 n 0000 | the words that are spoken; "I listened to his words very closely" -07109847 10 n 02 utterance 0 vocalization 1 028 @ 07109019 n 0000 + 00745187 v 0201 + 00983824 v 0101 + 00940384 v 0104 + 00941990 v 0103 ~ 01011883 n 0000 %p 07111047 n 0000 ~ 07120524 n 0000 ~ 07121157 n 0000 ~ 07125367 n 0000 ~ 07125523 n 0000 ~ 07126228 n 0000 ~ 07126383 n 0000 ~ 07126521 n 0000 ~ 07126734 n 0000 ~ 07127006 n 0000 ~ 07127252 n 0000 ~ 07128322 n 0000 ~ 07128527 n 0000 ~ 07128946 n 0000 ~ 07129422 n 0000 ~ 07129602 n 0000 ~ 07129758 n 0000 ~ 07129867 n 0000 ~ 07130050 n 0000 ~ 07130183 n 0000 ~ 07130774 n 0000 ~ 07210951 n 0000 | the use of uttered sounds for auditory communication -07110457 10 n 01 speech 4 002 @ 07129867 n 0000 + 00962447 v 0102 | the exchange of spoken words; "they were perfectly comfortable together without speech" -07110615 10 n 06 voice 0 vocalization 0 vocalisation 0 vocalism 0 phonation 0 vox 0 009 @ 00033020 n 0000 + 00745187 v 0503 + 10599806 n 0402 + 00952182 v 0304 + 00952182 v 0203 + 00952182 v 0101 ~ 06872122 n 0000 ~ 07281871 n 0000 ~ 07282166 n 0000 | the sound made by the vibration of vocal folds modified by the resonance of the vocal tract; "a singer takes good care of his voice"; "the giraffe cannot make any vocalizations" -07111047 10 n 03 phone 0 speech_sound 0 sound 1 016 @ 06284225 n 0000 #p 07109847 n 0000 ;c 06177033 n 0000 + 00952182 v 0302 + 02180529 v 0301 + 03099549 a 0101 + 02857893 a 0102 + 02857893 a 0101 + 02857726 a 0101 + 00745187 v 0103 ~ 07111711 n 0000 ~ 07112550 n 0000 ~ 07114409 n 0000 ~ 07115021 n 0000 ~ 07119358 n 0000 ~ 07120364 n 0000 | (phonetics) an individual sound unit of speech without concern as to whether or not it is a phoneme of some language -07111510 10 n 01 morphophoneme 0 003 @ 06306606 n 0000 ;c 06172789 n 0000 + 02936859 a 0101 | (linguistics) the phonemes (or strings of phonemes) that constitute the various allomorphs of a morpheme -07111711 10 n 01 phoneme 0 004 @ 07111047 n 0000 ;c 06172789 n 0000 + 02858086 a 0101 ~ 07111933 n 0000 | (linguistics) one of a small set of speech sounds that are distinguished by the speakers of a particular language -07111933 10 n 01 allophone 0 003 @ 07111711 n 0000 ;c 06172789 n 0000 + 02613584 a 0101 | (linguistics) any of various acoustically different forms of the same phoneme -07112103 10 n 01 ablaut 0 002 @ 07112550 n 0000 ~ 07112282 n 0000 | a vowel whose quality or length is changed to indicate linguistic distinctions (such as sing sang sung song) -07112282 10 n 02 grade 0 gradation 0 001 @ 07112103 n 0000 | a degree of ablaut -07112364 10 n 01 diphthong 0 002 @ 07112550 n 0000 + 00744237 v 0101 | a vowel sound that starts near the articulatory position for one vowel and moves toward the position for another -07112550 10 n 02 vowel 0 vowel_sound 0 009 @ 07111047 n 0000 + 02825985 a 0101 + 02287276 a 0101 + 00983635 v 0103 ! 07115021 n 0101 ~ 07112103 n 0000 ~ 07112364 n 0000 ~ 07114023 n 0000 ~ 07114284 n 0000 | a speech sound made with the vocal tract open -07112805 10 n 02 accentual_system 0 prosodic_system 0 001 @ 07279045 n 0000 | the system of accentuation used in a particular language -07112942 10 n 02 consonant_system 0 consonantal_system 0 001 @ 07113192 n 0000 | the system of consonants used in a particular language -07113080 10 n 01 morphophonemic_system 0 001 @ 07279045 n 0000 | the morphophonemics of a particular language -07113192 10 n 01 phonemic_system 0 003 @ 07279045 n 0000 ~ 07112942 n 0000 ~ 07113903 n 0000 | the system of phonemes recognized in a language -07113337 10 n 02 phonological_system 0 phonologic_system 0 002 @ 07279045 n 0000 ~ 07113732 n 0000 | the system of phones used in a particular language -07113491 10 n 01 syllabicity 0 002 @ 07279045 n 0000 + 02806721 a 0101 | the pattern of syllable formation in a particular language -07113625 10 n 01 tense_system 0 001 @ 07279045 n 0000 | a system of tenses used in a particular language -07113732 10 n 02 tone_system 0 tonal_system 0 002 @ 07113337 n 0000 #p 06904943 n 0000 | the system of tones used in a particular language or dialect of a tone language -07113903 10 n 02 vowel_system 0 vocalism 1 001 @ 07113192 n 0000 | the system of vowels used in a particular language -07114023 10 n 02 schwa 0 shwa 0 002 @ 07112550 n 0000 ~ 07114154 n 0000 | a neutral middle vowel; occurs in unstressed syllables -07114154 10 n 02 murmur_vowel 0 murmur 1 001 @ 07114023 n 0000 | a schwa that is incidental to the pronunciation of a consonant -07114284 10 n 02 stem_vowel 0 thematic_vowel 0 001 @ 07112550 n 0000 | a vowel that ends a stem and precedes an inflection -07114409 10 n 02 semivowel 0 glide 0 002 @ 07111047 n 0000 ~ 07114535 n 0000 | a vowellike sound that serves as a consonant -07114535 10 n 01 palatal 0 002 @ 07114409 n 0000 + 01157494 a 0101 | a semivowel produced with the tongue near the palate (like the initial sound in the English word `yeast') -07114712 10 n 01 vowel 1 004 @ 06828818 n 0000 + 02825985 a 0101 + 02287276 a 0101 ~ 07114870 n 0000 | a letter of the alphabet standing for a spoken vowel -07114870 10 n 01 vowel_point 0 001 @ 07114712 n 0000 | a mark placed below or near a consonant (as in Hebrew or Arabic) to indicate the spoken vowel -07115021 10 n 01 consonant 0 016 @ 07111047 n 0000 + 02702209 a 0101 + 02287636 a 0101 ! 07112550 n 0101 ~ 07115493 n 0000 ~ 07115684 n 0000 ~ 07116758 n 0000 ~ 07117007 n 0000 ~ 07117193 n 0000 ~ 07119211 n 0000 ~ 07119521 n 0000 ~ 07119643 n 0000 ~ 07119776 n 0000 ~ 07119897 n 0000 ~ 07120025 n 0000 ~ 07120176 n 0000 | a speech sound that is not a vowel -07115381 10 n 01 consonant 1 001 @ 06828818 n 0000 | a letter of the alphabet standing for a spoken consonant -07115493 10 n 04 alveolar_consonant 0 dental_consonant 0 alveolar 0 dental 0 002 @ 07115021 n 0000 + 02615424 a 0301 | a consonant articulated with the tip of the tongue near the gum ridge -07115684 10 n 01 obstruent 0 004 @ 07115021 n 0000 ~ 07115914 n 0000 ~ 07118367 n 0000 ~ 07118990 n 0000 | a consonant that is produced with a partial or complete blockage of the airflow from the lungs through the nose or mouth -07115914 10 n 06 stop_consonant 0 stop 0 occlusive 0 plosive_consonant 0 plosive_speech_sound 0 plosive 0 008 @ 07115684 n 0000 + 02950154 a 0301 ! 07118367 n 0101 %p 07116304 n 0000 %p 07116443 n 0000 ~ 07117472 n 0000 ~ 07117595 n 0000 ~ 07118210 n 0000 | a consonant produced by stopping the flow of air at some point and suddenly releasing it; "his stop consonants are too aspirated" -07116304 10 n 01 implosion 0 003 @ 01074694 n 0000 #p 07115914 n 0000 + 00305846 v 0101 | the initial occluded phase of a stop consonant -07116443 10 n 02 plosion 0 explosion 0 003 @ 00210940 n 0000 #p 07115914 n 0000 + 01055661 v 0201 | the terminal forced release of pressure built up during the occlusive phase of a stop consonant -07116641 10 n 01 affrication 0 001 @ 07131854 n 0000 | the conversion of a simple stop consonant into an affricate -07116758 10 n 01 aspirate 0 002 @ 07115021 n 0000 + 00952039 v 0101 | a consonant pronounced with aspiration -07116869 10 n 01 aspiration 0 002 @ 07131854 n 0000 + 00952039 v 0101 | a manner of articulation involving an audible release of breath -07117007 10 n 02 labial_consonant 0 labial 0 004 @ 07115021 n 0000 + 02754417 a 0201 ~ 07117333 n 0000 ~ 07117472 n 0000 | a consonant whose articulation involves movement of the lips -07117193 10 n 02 labiodental_consonant 0 labiodental 0 001 @ 07115021 n 0000 | a consonant whose articulation involves the lips and teeth -07117333 10 n 01 bilabial 0 002 @ 07117007 n 0000 + 03048385 a 0101 | a consonant that is articulated using both lips; /p/ or /b/ or /w/ -07117472 10 n 01 labial_stop 0 002 @ 07115914 n 0000 @ 07117007 n 0000 | a stop consonant that is produced with the lips -07117595 10 n 03 glottal_stop 0 glottal_plosive 0 glottal_catch 0 001 @ 07115914 n 0000 | a stop consonant articulated by releasing pressure at the glottis; as in the sudden onset of a vowel -07117788 10 n 01 epenthesis 0 001 @ 07131854 n 0000 | the insertion of a vowel or consonant into a word to make its pronunciation easier; "the insertion of a vowel in the plural of the word `bush' is epenthesis" -07118002 10 n 02 nasalization 0 nasalisation 0 004 @ 07131854 n 0000 + 00951206 v 0202 + 00951399 v 0101 + 00951206 v 0101 | the act of nasalizing; the utterance of sounds modulated by the nasal resonators -07118210 10 n 02 suction_stop 0 click 0 002 @ 07115914 n 0000 + 01055146 v 0201 | a stop consonant made by the suction of air into the mouth (as in Bantu) -07118367 10 n 02 continuant_consonant 0 continuant 0 003 @ 07115684 n 0000 ! 07115914 n 0101 ~ 07118554 n 0000 | consonant articulated by constricting (but not closing) the vocal tract -07118554 10 n 03 fricative_consonant 0 fricative 0 spirant 0 002 @ 07118367 n 0000 ~ 07118747 n 0000 | a continuant consonant produced by breath moving against a narrowing of the vocal tract -07118747 10 n 02 sibilant 0 sibilant_consonant 0 007 @ 07118554 n 0000 + 01157179 a 0103 + 01054186 v 0104 + 01054027 v 0101 + 00547022 v 0101 + 01055404 v 0101 + 01054399 v 0101 | a consonant characterized by a hissing sound (like s or sh) -07118990 10 n 03 affricate 0 affricate_consonant 0 affricative 0 001 @ 07115684 n 0000 | a composite speech sound consisting of a stop and a fricative articulated at the same point (as `ch' in `chair' and `j' in `joy') -07119211 10 n 02 nasal_consonant 0 nasal 0 002 @ 07115021 n 0000 + 01213550 a 0203 | a consonant produced through the nose with the mouth closed -07119358 10 n 02 orinasal_phone 0 orinasal 0 001 @ 07111047 n 0000 | a speech sound produced with both the oral and nasal passages open (as French nasal vowels) -07119521 10 n 01 lingual 0 001 @ 07115021 n 0000 | a consonant that is produced with the tongue and other speech organs -07119643 10 n 01 liquid 0 001 @ 07115021 n 0000 | a frictionless continuant that is not a nasal consonant (especially `l' and `r') -07119776 10 n 01 geminate 0 001 @ 07115021 n 0000 | a doubled or long consonant; "the `n' in `thinness' is a geminate" -07119897 10 n 02 surd 0 voiceless_consonant 0 001 @ 07115021 n 0000 | a consonant produced without sound from the vocal cords -07120025 10 n 02 velar 0 velar_consonant 0 001 @ 07115021 n 0000 | a consonant produced with the back of the tongue touching or near the soft palate -07120176 10 n 04 guttural 0 guttural_consonant 0 pharyngeal 0 pharyngeal_consonant 0 002 @ 07115021 n 0000 + 02737461 a 0101 | a consonant articulated in the back of the mouth or throat -07120364 10 n 02 sonant 0 voiced_sound 0 003 @ 07111047 n 0000 + 02286083 a 0102 + 00952182 v 0102 | a speech sound accompanied by sound from the vocal cords -07120524 10 n 06 cry 0 outcry 0 call 2 yell 0 shout 0 vociferation 0 024 @ 07109847 n 0000 + 00912048 v 0506 + 00913065 v 0501 + 00912473 v 0501 + 00913065 v 0405 + 00912833 v 0401 + 00913065 v 0304 + 00738747 v 0301 + 01105186 v 0202 + 00913065 v 0103 ~ 07121361 n 0000 ~ 07121904 n 0000 ~ 07122018 n 0000 ~ 07122118 n 0000 ~ 07122409 n 0000 ~ 07122555 n 0000 ~ 07122639 n 0000 ~ 07122730 n 0000 ~ 07123012 n 0000 ~ 07123288 n 0000 ~ 07123404 n 0000 ~ 07123552 n 0000 ~ 07123710 n 0000 ~ 07123870 n 0000 | a loud utterance; often in protest or opposition; "the speaker was interrupted by loud cries from the rear of the audience" -07121157 10 n 02 cry 4 yell 1 004 @ 07109847 n 0000 + 00913065 v 0205 + 00913065 v 0103 ~ 07208930 n 0000 | a loud utterance of emotion (especially when inarticulate); "a cry of rage"; "a yell of pain" -07121361 10 n 0a bellow 0 bellowing 0 holla 0 holler 0 hollering 0 hollo 0 holloa 0 roar 0 roaring 0 yowl 0 019 @ 07120524 n 0000 + 01047381 v 0a04 + 00914634 v 0a01 + 01048718 v 0902 + 00915605 v 0902 + 01046932 v 0904 + 00029836 v 0801 + 01046932 v 0804 + 00915605 v 0802 + 00913795 v 0601 + 00913065 v 0608 + 00915423 v 0501 + 00913065 v 0507 + 00915423 v 0401 + 00913065 v 0407 + 01048718 v 0201 + 01048569 v 0202 + 01048718 v 0101 + 01048569 v 0102 | a very loud utterance (like the sound of an animal); "his bellow filled the hallway" -07121904 10 n 01 blue_murder 0 001 @ 07120524 n 0000 | an extravagantly loud outcry; "she screamed blue murder" -07122018 10 n 01 catcall 0 002 @ 07120524 n 0000 + 01060909 v 0101 | a cry expressing disapproval -07122118 10 n 05 clamor 0 clamoring 0 clamour 0 clamouring 0 hue_and_cry 0 007 @ 07120524 n 0000 + 00774641 v 0302 + 00915041 v 0302 + 00774641 v 0201 + 00915041 v 0201 + 01920367 a 0103 + 00915041 v 0101 | loud and persistent outcry from many people; "he ignored the clamor of the crowd" -07122409 10 n 01 halloo 0 002 @ 07120524 n 0000 + 00914061 v 0101 | a shout to attract attention; "he gave a great halloo but no one heard him" -07122555 10 n 01 hoot 1 001 @ 07120524 n 0000 | a loud raucous cry (as of an owl) -07122639 10 n 01 hosanna 0 001 @ 07120524 n 0000 | a cry of praise or adoration (to God) -07122730 10 n 01 noise 0 002 @ 07120524 n 0000 + 01919931 a 0101 | a loud outcry of protest or complaint; "the announcement of the election recount caused a lot of noise"; "whatever it was he didn't like it and he was going to let them know by making as loud a noise as he could" -07123012 10 n 06 scream 0 screaming 0 shriek 0 shrieking 0 screech 0 screeching 0 007 @ 07120524 n 0000 + 01214606 a 0502 + 01048939 v 0505 + 00914420 v 0401 + 00914420 v 0301 + 00913065 v 0206 + 00913065 v 0106 | sharp piercing cry; "her screaming attracted the neighbors" -07123288 10 n 01 whoop 0 002 @ 07120524 n 0000 + 00914215 v 0101 | a loud hooting cry of exultation or excitement -07123404 10 n 04 war_cry 0 war_whoop 0 rallying_cry 1 battle_cry 0 001 @ 07120524 n 0000 | a yell intended to rally a group of soldiers in battle -07123552 10 n 02 yelling 0 shouting 1 003 @ 07120524 n 0000 + 00913065 v 0201 + 00913065 v 0105 | uttering a loud inarticulate cry as of pain or excitement -07123710 10 n 01 yodel 0 002 @ 07120524 n 0000 + 01050651 v 0101 | a songlike cry in which the voice fluctuates rapidly between the normal voice and falsetto -07123870 10 n 09 boo 0 hoot 2 Bronx_cheer 0 hiss 0 raspberry 0 razzing 0 razz 0 snort 0 bird 0 008 @ 07120524 n 0000 + 01045073 v 0801 + 00850501 v 0602 + 00862225 v 0402 + 01054186 v 0401 + 01053771 v 0401 + 01042725 v 0201 + 00862225 v 0101 | a cry or noise made to express displeasure or contempt -07124172 10 n 01 blasphemy 0 003 @ 07128527 n 0000 @ 06714976 n 0000 + 00425002 a 0101 | blasphemous language (expressing disrespect for God or for something sacred) -07124340 10 n 05 obscenity 0 smut 0 vulgarism 0 filth 0 dirty_word 0 015 @ 07128527 n 0000 + 00425313 a 0402 + 00425313 a 0205 + 01625063 a 0103 -u 00080861 a 0000 -u 00846021 n 0000 -u 05526713 n 0000 -u 06611376 n 0000 -u 06611856 n 0000 ~ 07124736 n 0000 ~ 07124928 n 0000 -u 09815188 n 0000 -u 13533886 n 0000 -u 13740765 n 0000 -u 14854581 n 0000 | an offensive or indecent word or phrase -07124736 10 n 02 bawdry 0 bawdy 0 002 @ 07124340 n 0000 + 00424787 a 0201 | lewd or obscene talk or writing; "it was smoking-room bawdry"; "they published a collection of Elizabethan bawdy" -07124928 10 n 01 scatology 0 002 @ 07124340 n 0000 + 00426186 a 0101 | a preoccupation with obscenity (especially that dealing with excrement or excretory functions) -07125096 10 n 07 curse 0 curse_word 0 expletive 1 oath 1 swearing 2 swearword 0 cuss 0 005 @ 07128527 n 0000 + 00865387 v 0702 + 00865387 v 0504 + 00866314 v 0101 + 00865387 v 0101 | profane or obscene expression usually of surprise or anger; "expletives were deleted" -07125367 10 n 02 croak 0 croaking 0 004 @ 07109847 n 0000 + 01064401 v 0201 + 00299313 a 0101 + 01064401 v 0101 | a harsh hoarse utterance (as of a frog) -07125523 10 n 02 exclamation 0 exclaiming 0 006 @ 07109847 n 0000 + 00912048 v 0201 + 00912048 v 0101 ~ 07125786 n 0000 ~ 07125958 n 0000 ~ 07126116 n 0000 | an abrupt excited utterance; "she gave an exclamation of delight"; "there was much exclaiming over it" -07125786 10 n 03 devil 0 deuce 0 dickens 0 001 @ 07125523 n 0000 | a word used in exclamations of confusion; "what the devil"; "the deuce with it"; "the dickens you say" -07125958 10 n 02 ejaculation 0 interjection 0 003 @ 07125523 n 0000 + 00914769 v 0201 + 00981944 v 0105 | an abrupt emphatic exclamation expressing emotion -07126116 10 n 01 expostulation 1 001 @ 07125523 n 0000 | an exclamation of protest or remonstrance or reproof -07126228 10 n 01 expletive 2 001 @ 07109847 n 0000 | a word or phrase conveying no independent meaning but added to fill out a sentence or metrical line -07126383 10 n 02 groan 0 moan 0 003 @ 07109847 n 0000 + 01045419 v 0202 + 01045419 v 0101 | an utterance expressing pain or disapproval -07126521 10 n 02 hem 0 ahem 0 001 @ 07109847 n 0000 | the utterance of a sound similar to clearing the throat; intended to get attention, express hesitancy, fill a pause, hide embarrassment, warn a friend, etc. -07126734 10 n 03 howl 0 howling 0 ululation 0 006 @ 07109847 n 0000 + 01046932 v 0302 + 01046932 v 0201 + 00029836 v 0202 + 00029836 v 0102 + 01046932 v 0101 | a long loud emotional utterance; "he gave a howl of pain"; "howls of laughter"; "their howling had no effect" -07127006 10 n 02 laugh 0 laughter 0 010 @ 07109847 n 0000 + 00031820 v 0101 ~ 07127350 n 0000 ~ 07127451 n 0000 ~ 07127563 n 0000 ~ 07127693 n 0000 ~ 07127790 n 0000 ~ 07127911 n 0000 ~ 07128060 n 0000 ~ 07128225 n 0000 | the sound of laughing -07127252 10 n 01 mumble 0 002 @ 07109847 n 0000 + 01044533 v 0101 | a soft indistinct utterance -07127350 10 n 01 cachinnation 0 002 @ 07127006 n 0000 + 00032414 v 0101 | loud convulsive laughter -07127451 10 n 01 cackle 0 002 @ 07127006 n 0000 + 00031418 v 0101 | a loud laugh suggestive of a hen's cackle -07127563 10 n 02 chortle 0 chuckle 0 003 @ 07127006 n 0000 + 00031663 v 0201 + 00031663 v 0102 | a soft partly suppressed laugh -07127693 10 n 01 giggle 0 002 @ 07127006 n 0000 + 00030142 v 0101 | a foolish or nervous laugh -07127790 10 n 02 guffaw 0 belly_laugh 1 002 @ 07127006 n 0000 + 00031540 v 0101 | a burst of deep loud hearty laughter -07127911 10 n 04 hee-haw 0 horselaugh 0 ha-ha 0 haw-haw 0 002 @ 07127006 n 0000 + 01054553 v 0101 | a loud laugh that sounds like a horse neighing -07128060 10 n 03 snicker 0 snort 1 snigger 0 005 @ 07127006 n 0000 + 00030010 v 0302 + 01138450 a 0202 + 01045073 v 0201 + 00030010 v 0101 | a disrespectful laugh -07128225 10 n 01 titter 0 002 @ 07127006 n 0000 + 00030142 v 0102 | a nervous restrained laugh -07128322 10 n 01 paging 0 002 @ 07109847 n 0000 + 00754560 v 0101 | calling out the name of a person (especially by a loudspeaker system); "the public address system in the hospital was used for paging" -07128527 10 n 01 profanity 0 005 @ 07109847 n 0000 + 00425002 a 0103 ~ 07124172 n 0000 ~ 07124340 n 0000 ~ 07125096 n 0000 | vulgar or irreverent speech or action -07128692 10 n 02 pronunciation 1 orthoepy 0 003 @ 07109196 n 0000 + 00978549 v 0101 ~ 06948396 n 0000 | the way a word or a language is customarily spoken; "the pronunciation of Chinese is difficult for foreigners"; "that is the correct pronunciation" -07128946 10 n 01 pronunciation 0 007 @ 07109847 n 0000 + 00978549 v 0101 ~ 07129202 n 0000 ~ 07130918 n 0000 ~ 07131366 n 0000 ~ 07131511 n 0000 ~ 07131854 n 0000 | the manner in which someone utters a word; "they are always correcting my pronunciation" -07129202 10 n 02 sibilation 0 assibilation 0 006 @ 07128946 n 0000 + 01054027 v 0201 + 00547022 v 0201 + 01055404 v 0101 + 01054399 v 0101 + 01054186 v 0104 | pronunciation with a sibilant (hissing or whistling) sound -07129422 10 n 03 exultation 0 rejoicing 0 jubilation 0 004 @ 07109847 n 0000 + 00857923 v 0305 + 00857923 v 0203 + 00857923 v 0102 | the utterance of sounds expressing great joy -07129602 10 n 02 sigh 0 suspiration 0 004 @ 07109847 n 0000 + 00004032 v 0202 + 00985800 v 0101 + 00004032 v 0101 | an utterance made by exhaling audibly -07129758 10 n 01 snarl 0 003 @ 07109847 n 0000 + 00916520 v 0101 + 00916274 v 0102 | a vicious angry growl -07129867 10 n 02 speaking 1 speech_production 0 005 @ 07109847 n 0000 + 00963570 v 0101 + 00941990 v 0102 ~ 07110457 n 0000 ~ 07130341 n 0000 | the utterance of intelligible speech -07130050 10 n 01 speech 6 002 @ 07109847 n 0000 + 00941990 v 0102 | something spoken; "he could hear them uttering merry speeches" -07130183 10 n 02 sputter 0 splutter 0 003 @ 07109847 n 0000 + 00986897 v 0202 + 00986897 v 0101 | an utterance (of words) with spitting sounds (as in rage) -07130341 10 n 04 whisper 0 whispering 0 susurration 0 voicelessness 0 006 @ 07129867 n 0000 + 02286294 a 0402 + 01044377 v 0301 + 00915830 v 0201 + 00915830 v 0101 ~ 07130580 n 0000 | speaking softly without vibration of the vocal cords -07130580 10 n 01 stage_whisper 0 001 @ 07130341 n 0000 | a loud whisper that can be overheard; on the stage it is heard by the audience but it supposed to be inaudible to the rest of the cast -07130774 10 n 02 rasp 0 rasping 0 004 @ 07109847 n 0000 + 00981814 v 0201 + 00299476 a 0104 + 00981814 v 0101 | uttering in an irritated tone -07130918 10 n 01 mispronunciation 0 002 @ 07128946 n 0000 + 00951601 v 0101 | incorrect pronunciation -07131022 10 n 01 homograph 0 001 @ 06292649 n 0000 | two words are homographs if they are spelled the same way but differ in meaning (e.g. fair) -07131169 10 n 01 homophone 0 002 @ 06292649 n 0000 + 02064013 a 0101 | two words are homophones if they are pronounced the same way but differ in meaning or spelling or both (e.g. bare and bear) -07131366 10 n 01 homophony 1 003 @ 07128946 n 0000 + 02064013 a 0101 + 02993853 a 0101 | the same pronunciation for words of different origins -07131511 10 n 02 accent 1 speech_pattern 0 003 @ 07128946 n 0000 + 00983333 v 0103 ~ 07131741 n 0000 | distinctive manner of oral expression; "he couldn't suppress his contemptuous accent"; "she had a very clear speech pattern" -07131741 10 n 01 drawl 0 002 @ 07131511 n 0000 + 00980176 v 0101 | a slow speech pattern with prolonged vowels -07131854 10 n 01 articulation 0 012 @ 07128946 n 0000 + 00978549 v 0102 ~ 07116641 n 0000 ~ 07116869 n 0000 ~ 07117788 n 0000 ~ 07118002 n 0000 ~ 07132226 n 0000 ~ 07132415 n 0000 ~ 07132729 n 0000 ~ 07132937 n 0000 ~ 07133143 n 0000 ~ 07133477 n 0000 | the aspect of pronunciation that involves bringing articulatory organs together so as to shape the sounds of speech -07132226 10 n 02 retroflection 0 retroflexion 0 002 @ 07131854 n 0000 + 00979411 v 0201 | an articulatory gesture made by turning the tip of the tongue back against the roof of the mouth -07132415 10 n 02 enunciation 0 diction 1 004 @ 07131854 n 0000 + 00978549 v 0105 + 00978369 v 0102 ~ 07132634 n 0000 | the articulation of speech regarded from the point of view of its intelligibility to the audience -07132634 10 n 01 mumbling 0 002 @ 07132415 n 0000 + 01044533 v 0101 | indistinct enunciation -07132729 10 n 02 syncope 0 syncopation 1 004 @ 07131854 n 0000 ;c 06177450 n 0000 + 00317086 v 0201 + 00317086 v 0101 | (phonology) the loss of sounds from within a word (as in `fo'c'sle' for `forecastle') -07132937 10 n 01 sandhi 0 001 @ 07131854 n 0000 | the articulatory process whereby the pronunciation of a word or morpheme changes when it is followed immediately by another (especially in fluent speech) -07133143 10 n 01 thickness 0 002 @ 07131854 n 0000 + 01337314 a 0102 | indistinct articulation; "judging from the thickness of his speech he had been drinking heavily" -07133313 10 n 01 tongue_twister 0 001 @ 07151380 n 0000 | an expression that is difficult to articulate clearly; "`rubber baby buggy bumper' is a tongue twister" -07133477 10 n 01 trill 1 001 @ 07131854 n 0000 | the articulation of a consonant (especially the consonant `r') with a rapid flutter of the tongue against the palate or uvula; "he pronounced his R's with a distinct trill" -07133701 10 n 01 conversation 0 020 @ 07109196 n 0000 + 09961999 n 0102 + 01045963 a 0102 + 09961999 n 0101 + 00964694 v 0101 ~ 07134179 n 0000 ~ 07134287 n 0000 ~ 07134706 n 0000 ~ 07134850 n 0000 ~ 07135450 n 0000 ~ 07135734 n 0000 ~ 07137315 n 0000 ~ 07137622 n 0000 ~ 07137733 n 0000 ~ 07141537 n 0000 ~ 07141644 n 0000 ~ 07141789 n 0000 ~ 07141922 n 0000 ~ 07142005 n 0000 ~ 07142107 n 0000 | the use of speech for informal exchange of views or ideas or information etc. -07134179 10 n 01 crossfire 0 001 @ 07133701 n 0000 | a lively or heated interchange of ideas and opinions -07134287 10 n 02 phatic_speech 0 phatic_communication 0 001 @ 07133701 n 0000 | conversational speech used to communicate sociability more than information -07134445 10 n 02 intercourse 0 social_intercourse 0 002 @ 06252743 n 0000 ~ 07134575 n 0000 | communication between individuals -07134575 10 n 02 communion 0 sharing 0 003 @ 07134445 n 0000 + 01063930 v 0201 + 00760187 v 0101 | sharing thoughts and feelings -07134706 10 n 01 exchange 0 001 @ 07133701 n 0000 | a mutual expression of views (especially an unpleasant one); "they had a bitter exchange" -07134850 10 n 05 chat 0 confab 0 confabulation 0 schmooze 0 schmoose 0 007 @ 07133701 n 0000 + 00876665 v 0302 + 01038666 v 0304 + 00876665 v 0203 + 00496422 a 0101 + 01038666 v 0103 ~ 07135080 n 0000 | an informal conversation -07135080 10 n 0d chitchat 0 chit-chat 0 chit_chat 0 small_talk 0 gab 0 gabfest 0 gossip 0 tittle-tattle 0 chin_wag 0 chin-wag 0 chin_wagging 0 chin-wagging 0 causerie 0 008 @ 07134850 n 0000 + 01036804 v 0805 + 00496422 a 0702 + 01038666 v 070b + 02384077 a 0502 + 01038666 v 0306 + 01038666 v 0206 + 01038666 v 0106 | light informal conversation for social occasions -07135450 10 n 02 gossiping 0 gossipmongering 0 003 @ 07133701 n 0000 + 01041954 v 0102 ~ 07135627 n 0000 | a conversation that spreads personal information about other people -07135627 10 n 01 scandalmongering 0 002 @ 07135450 n 0000 + 02101942 a 0101 | spreading malicious gossip -07135734 10 n 02 talk 0 talking 0 013 @ 07133701 n 0000 + 00962447 v 0201 + 00952841 v 0102 + 00963570 v 0102 + 00941990 v 0101 + 00962447 v 0101 ~ 07136098 n 0000 ~ 07136206 n 0000 ~ 07136315 n 0000 ~ 07136469 n 0000 ~ 07136578 n 0000 ~ 07136711 n 0000 ~ 07136940 n 0000 | an exchange of ideas via conversation; "let's have more work and less talk around here" -07136098 10 n 02 cant 2 pious_platitude 0 001 @ 07135734 n 0000 | insincere talk about religion or morals -07136206 10 n 03 dialogue 1 dialog 1 duologue 1 001 @ 07135734 n 0000 | a conversation between two persons -07136315 10 n 01 heart-to-heart 0 002 @ 07135734 n 0000 + 01310273 a 0103 | an intimate talk in private; "he took me aside for a little heart-to-heart" -07136469 10 n 01 shmooze 0 002 @ 07135734 n 0000 ;c 06951067 n 0000 | (Yiddish) a warm heart-to-heart talk -07136578 10 n 01 shop_talk 0 001 @ 07135734 n 0000 | talk about your business that only others in the same business can understand -07136711 10 n 06 wind 1 malarkey 0 malarky 0 idle_words 0 jazz 2 nothingness 0 002 @ 07135734 n 0000 + 00549236 a 0104 | empty rhetoric or insincere or exaggerated talk; "that's a lot of wind"; "don't give me any of that jazz" -07136940 10 n 05 yak 0 yack 0 yakety-yak 0 chatter 0 cackle 1 006 @ 07135734 n 0000 + 01056554 v 0501 + 01038666 v 0408 + 01036804 v 0401 + 01037498 v 0201 ~ 07137129 n 0000 | noisy talk -07137129 10 n 05 prate 0 prattle 0 idle_talk 0 blether 0 chin_music 0 004 @ 07136940 n 0000 + 01037650 v 0404 + 01036804 v 0209 + 01036804 v 0104 | idle or foolish and irrelevant talk -07137315 10 n 01 nothings 0 002 @ 07133701 n 0000 ~ 07137461 n 0000 | inconsequential conversation; "they traded a few nothings as they parted" -07137461 10 n 02 sweet_nothings 0 honeyed_words 0 001 @ 07137315 n 0000 | inconsequential expressions of affection; "he whispered sweet nothings into her ear" -07137622 10 n 01 commerce 0 001 @ 07133701 n 0000 | social exchange, especially of opinions, attitudes, etc. -07137733 10 n 01 colloquy 0 001 @ 07133701 n 0000 | formal conversation -07137807 10 n 01 detail 0 002 @ 07138085 n 0000 + 00956250 v 0101 | extended treatment of particulars; "the essay contained too much detail" -07137950 10 n 01 dilation 0 002 @ 07138085 n 0000 + 00955601 v 0109 | a lengthy discussion (spoken or written) on a particular topic -07138085 10 n 03 discussion 2 treatment 0 discourse 0 009 @ 06252138 n 0000 + 01034312 v 0301 + 01033527 v 0202 + 01034312 v 0103 ~ 07137807 n 0000 ~ 07137950 n 0000 ~ 07138915 n 0000 ~ 07139316 n 0000 ~ 07172756 n 0000 | an extended communication (often interactive) dealing with some particular topic; "the book contains an excellent discussion of modal logic"; "his treatment of the race question is badly biased" -07138504 10 n 01 indirect_discourse 0 002 @ 07217924 n 0000 ! 07138736 n 0101 | a report of a discourse in which deictic terms are modified appropriately (e.g., "he said `I am a fool' would be modified to `he said he is a fool'") -07138736 10 n 02 direct_discourse 0 direct_quotation 0 002 @ 07217924 n 0000 ! 07138504 n 0101 | a report of the exact words used in a discourse (e.g., "he said `I am a fool'") -07138915 10 n 01 consideration 0 005 @ 07138085 n 0000 + 02166460 v 0102 + 00813044 v 0101 + 00689344 v 0103 ~ 07139532 n 0000 | a discussion of a topic (as in a meeting); "consideration of the traffic problem took more than an hour" -07139151 10 n 01 expatiation 0 002 @ 07172756 n 0000 + 00955601 v 0103 | a discussion (spoken or written) that enlarges on a topic or theme at length or in detail -07139316 10 n 01 talk 3 003 @ 07138085 n 0000 + 00941990 v 0101 + 00962447 v 0101 | discussion; (`talk about' is a less formal alternative for `discussion of'); "his poetry contains much talk about love and anger" -07139532 10 n 01 reconsideration 0 002 @ 07138915 n 0000 + 00654015 v 0101 | a consideration of a topic (as in a meeting) with a view to changing an earlier decision -07139700 10 n 01 exhortation 1 003 @ 06252138 n 0000 + 00858781 v 0107 + 00765649 v 0104 | a communication intended to urge or persuade the recipients to take some action -07139873 10 n 03 expression 4 verbal_expression 0 verbalism 0 005 @ 06252138 n 0000 + 00940384 v 0101 ~ 07073208 n 0000 ~ 07140237 n 0000 ~ 07140348 n 0000 | the communication (in speech or writing) of your beliefs or opinions; "expressions of good will"; "he helped me find verbal expression for my ideas"; "the idea was immediate but the verbalism took hours" -07140237 10 n 01 cold_turkey 0 001 @ 07139873 n 0000 | a blunt expression of views; "I told him cold turkey" -07140348 10 n 02 congratulation 1 felicitation 1 006 @ 07139873 n 0000 ;u 06295235 n 0000 + 00881998 v 0202 + 01772498 v 0103 + 00881998 v 0101 + 00881661 v 0102 | (usually plural) an expression of pleasure at the success or good fortune of another; "I sent them my sincere congratulations on their marriage" -07140659 10 n 03 discussion 0 give-and-take 0 word 4 009 @ 07109196 n 0000 + 00813978 v 0102 ~ 07140978 n 0000 ~ 07142365 n 0000 ~ 07142566 n 0000 ~ 07143869 n 0000 ~ 07144039 n 0000 ~ 07144190 n 0000 ~ 07148192 n 0000 | an exchange of views on some topic; "we had a good discussion"; "we had a word or two about it" -07140978 10 n 03 argument 0 argumentation 0 debate 1 008 @ 07140659 n 0000 + 00773432 v 0303 + 00812580 v 0301 + 00714884 v 0301 + 00772189 v 0201 + 00772640 v 0201 + 00772189 v 0101 ~ 07141319 n 0000 | a discussion in which reasons are advanced for and against some proposition or proposal; "the argument over foreign aid goes on and on" -07141319 10 n 01 logomachy 0 002 @ 07140978 n 0000 + 10270109 n 0102 | argument about words or the meaning of words -07141437 10 n 01 parley 0 002 @ 07148192 n 0000 + 00763009 v 0101 | a negotiation between enemies -07141537 10 n 01 rap 1 003 @ 07133701 n 0000 ;u 07075172 n 0000 + 01042432 v 0101 | voluble conversation -07141644 10 n 01 rap_session 0 001 @ 07133701 n 0000 | conversation in a situation where feelings can be expressed and criticized or supported -07141789 10 n 01 second-hand_speech 0 001 @ 07133701 n 0000 | overheard conversation (especially overheard cellphone conversation) -07141922 10 n 01 table_talk 0 001 @ 07133701 n 0000 | conversation during a meal -07142005 10 n 01 telephone_conversation 0 001 @ 07133701 n 0000 | a conversation over the telephone -07142107 10 n 01 tete-a-tete 0 003 @ 07133701 n 0000 + 01860890 a 0101 ~ 07142242 n 0000 | a private conversation between two people -07142242 10 n 01 pillow_talk 0 001 @ 07142107 n 0000 | intimate conversation between lovers (typically occurring in bed) -07142365 10 n 01 deliberation 0 004 @ 07140659 n 0000 ;u 06295235 n 0000 + 00813044 v 0105 + 00812580 v 0102 | (usually plural) discussion of all sides of a question; "the deliberations of the jury" -07142566 10 n 02 conference 0 group_discussion 0 013 @ 07140659 n 0000 + 00876665 v 0101 ~ 07142924 n 0000 ~ 07143044 n 0000 ~ 07143137 n 0000 ~ 07143624 n 0000 ~ 07144416 n 0000 ~ 07144834 n 0000 ~ 07145026 n 0000 ~ 07145314 n 0000 ~ 07145508 n 0000 ~ 07145783 n 0000 ~ 07145958 n 0000 | a discussion among participants who have an agreed (serious) topic -07142924 10 n 01 bull_session 0 002 @ 07142566 n 0000 ;u 07075172 n 0000 | an informal discussion (usually among men) -07143044 10 n 01 colloquy 1 001 @ 07142566 n 0000 | a conversation especially a formal one -07143137 10 n 01 consultation 1 006 @ 07142566 n 0000 + 00877559 v 0101 + 00877083 v 0101 + 00876665 v 0104 + 00876442 v 0101 ~ 07143450 n 0000 | a conference between two or more people to consider a particular question; "frequent consultations with his lawyer"; "a consultation of several medical specialists" -07143450 10 n 01 sidebar 0 002 @ 07143137 n 0000 ;c 08441203 n 0000 | (law) a courtroom conference between the lawyers and the judge that is held out of the jury's hearing -07143624 10 n 03 consultation 0 audience 0 interview 0 003 @ 07142566 n 0000 + 00876665 v 0104 + 00877559 v 0101 | a conference (usually with someone important); "he had a consultation with the judge"; "he requested an audience with the king" -07143869 10 n 01 panel_discussion 0 001 @ 07140659 n 0000 | discussion of a subject of public interest by a group of persons forming a panel usually before an audience -07144039 10 n 02 postmortem 0 post-mortem 0 003 @ 07140659 n 0000 + 00121649 a 0202 + 00121649 a 0102 | discussion of an event after it has occurred -07144190 10 n 02 public_discussion 0 ventilation 0 002 @ 07140659 n 0000 + 00944548 v 0202 | free and open discussion of (or debate on) some question of public interest; "such a proposal deserves thorough public discussion" -07144416 10 n 02 huddle 0 powwow 0 004 @ 07142566 n 0000 ;u 07075172 n 0000 + 00763136 v 0201 %m 10190871 n 0000 | (informal) a quick private conference -07144571 10 n 01 backgrounder 0 002 @ 07144834 n 0000 + 05823517 n 0101 | a press conference or interview in which a government official explains to reporters the background of an action or policy; "the secretary gave us a backgrounder on public health issues" -07144834 10 n 02 press_conference 0 news_conference 0 002 @ 07142566 n 0000 ~ 07144571 n 0000 | a conference at which press and tv reporters ask questions of a politician or other celebrity -07145026 10 n 02 pretrial 0 pretrial_conference 0 002 @ 07142566 n 0000 ;c 08441203 n 0000 | (law) a conference held before the trial begins to bring the parties together to outline discovery proceedings and to define the issues to be tried; more useful in civil than in criminal cases -07145314 10 n 03 round_table 0 roundtable 0 round-table_conference 0 001 @ 07142566 n 0000 | a meeting of peers for discussion and exchange of views; "a roundtable on the future of computing" -07145508 10 n 01 session 0 008 @ 07142566 n 0000 ~ 07146190 n 0000 ~ 07146300 n 0000 ~ 07147116 n 0000 ~ 07147267 n 0000 ~ 07147733 n 0000 ~ 07147902 n 0000 ~ 07148022 n 0000 | a meeting for execution of a group's functions; "it was the opening session of the legislature" -07145783 10 n 01 teach-in 0 001 @ 07142566 n 0000 | an extended session (as on a college campus) for lectures and discussion on an important and usually controversial issue -07145958 10 n 02 teleconference 0 teleconferencing 0 001 @ 07142566 n 0000 | a conference of people who are in different locations that is made possible by the use of such telecommunications equipment as closed-circuit television -07146190 10 n 01 sitting 0 002 @ 07145508 n 0000 + 02024874 v 0101 | a session as of a legislature or court -07146300 10 n 01 clinic 0 006 @ 07145508 n 0000 + 02885529 a 0101 ~ 07146534 n 0000 ~ 07146640 n 0000 ~ 07146784 n 0000 ~ 07146980 n 0000 | meeting for diagnosis of problems and instruction or remedial work in a particular activity -07146534 10 n 01 reading_clinic 0 001 @ 07146300 n 0000 | a clinic for people with reading disabilities -07146640 10 n 01 basketball_clinic 0 001 @ 07146300 n 0000 | a meeting at which basketball players receive special evaluation and instruction -07146784 10 n 01 baseball_clinic 0 001 @ 07146300 n 0000 | a meeting at which baseball players receive special evaluation and instruction; "a summer baseball clinic for promising young players" -07146980 10 n 01 hockey_clinic 0 001 @ 07146300 n 0000 | a meeting at which hockey players receive special evaluation and instruction -07147116 10 n 02 executive_session 0 closed_session 0 001 @ 07145508 n 0000 | a session (usually of a legislative body) that is closed to the public -07147267 10 n 01 hearing 0 003 @ 07145508 n 0000 + 02500902 v 0101 ~ 07147511 n 0000 | a session (of a committee or grand jury) in which witnesses are called and testimony is taken; "the investigative committee will hold hearings in Chicago" -07147511 10 n 01 confirmation_hearing 0 001 @ 07147267 n 0000 | a hearing held by the US Senate to gather information on whether to approve or reject candidates for high federal office who are nominated by the president -07147733 10 n 01 skull_session 0 001 @ 07145508 n 0000 | a session (as of executives or advisors) to discuss policy or strategy or to solve problems or exchange ideas -07147902 10 n 01 special_session 0 001 @ 07145508 n 0000 | a session that is held in addition to the regular sessions -07148022 10 n 01 tutorial 0 002 @ 07145508 n 0000 + 03127435 a 0101 | a session of intensive tuition given by a tutor to an individual or to a small number of students -07148192 10 n 03 negotiation 0 dialogue 3 talks 0 008 @ 07140659 n 0000 + 00761713 v 0102 ~ 07141437 n 0000 ~ 07148573 n 0000 ~ 07149836 n 0000 ~ 07150023 n 0000 ~ 07150499 n 0000 ~ 07150644 n 0000 | a discussion intended to produce an agreement; "the buyout negotiation lasted several days"; "they disagreed but kept an open dialogue"; "talks between Israelis and Palestinians" -07148573 10 n 02 diplomacy 0 diplomatic_negotiations 0 009 @ 07148192 n 0000 + 02713715 a 0101 + 10013927 n 0102 -c 06774316 n 0000 ~ 07148828 n 0000 ~ 07148938 n 0000 ~ 07149107 n 0000 ~ 07149348 n 0000 ~i 07149582 n 0000 | negotiation between nations -07148828 10 n 01 dollar_diplomacy 0 001 @ 07148573 n 0000 | diplomacy influenced by economic considerations -07148938 10 n 02 power_politics 0 gunboat_diplomacy 0 001 @ 07148573 n 0000 | diplomacy in which the nations threaten to use force in order to obtain their objectives -07149107 10 n 01 recognition 1 001 @ 07148573 n 0000 | the explicit and formal acknowledgement of a government or of the national independence of a country; "territorial disputes were resolved in Guatemala's recognition of Belize in 1991" -07149348 10 n 01 shuttle_diplomacy 0 001 @ 07148573 n 0000 | international negotiations conducted by a mediator who frequently flies back and forth between the negotiating parties; "Kissinger's shuttle diplomacy in the Middle East" -07149582 10 n 02 Strategic_Arms_Limitation_Talks 0 SALT 0 001 @i 07148573 n 0000 | negotiations between the United States and the Union of Soviet Socialist Republics opened in 1969 in Helsinki designed to limit both countries' stock of nuclear weapons -07149836 10 n 01 bargaining 0 005 @ 07148192 n 0000 + 02259829 v 0102 ~ 06563950 n 0000 ~ 07150138 n 0000 ~ 07150328 n 0000 | the negotiation of the terms of a transaction or agreement -07150023 10 n 01 collective_bargaining 0 001 @ 07148192 n 0000 | negotiation between an employer and trade union -07150138 10 n 04 haggle 0 haggling 0 wrangle 0 wrangling 0 004 @ 07149836 n 0000 + 00774344 v 0402 + 02259547 v 0201 + 02259547 v 0101 | an instance of intense argument (as in bargaining) -07150328 10 n 01 holdout 0 003 @ 07149836 n 0000 + 01116585 v 0102 + 02641741 v 0101 | a refusal by a negotiator to come to terms in the hope of obtaining a better deal -07150499 10 n 01 horse_trading 0 002 @ 07148192 n 0000 + 00762889 v 0101 | negotiation accompanied by mutual concessions and shrewd bargaining -07150644 10 n 01 mediation 0 005 @ 07148192 n 0000 + 00760956 v 0102 ~ 07150850 n 0000 ~ 07151122 n 0000 ~ 07151285 n 0000 | a negotiation to resolve differences that is conducted by some impartial party -07150850 10 n 01 arbitration 0 004 @ 07150644 n 0000 ;c 08441203 n 0000 + 02637730 a 0102 + 00760956 v 0105 | (law) the hearing and determination of a dispute by an impartial referee agreed to by both parties (often used to settle disputes between labor and management) -07151122 10 n 01 conciliation 0 002 @ 07150644 n 0000 + 00764902 v 0104 | any of various forms of mediation whereby disputes may be settled short of arbitration -07151285 10 n 01 umpirage 0 002 @ 07150644 n 0000 + 01085237 v 0102 | mediation by an umpire -07151380 10 n 03 saying 0 expression 0 locution 0 020 @ 07109196 n 0000 + 00945499 v 0101 ~ 06301012 n 0000 ~ 06301302 n 0000 ~ 06301445 n 0000 ~ 06535980 n 0000 ~ 06604319 n 0000 ~ 06605046 n 0000 ~ 06605396 n 0000 ~ 06605682 n 0000 ~ 07133313 n 0000 ~ 07151892 n 0000 ~ 07152027 n 0000 ~ 07152259 n 0000 ~ 07152948 n 0000 ~ 07153727 n 0000 ~ 07153838 n 0000 ~ 07154330 n 0000 ~ 07154760 n 0000 ~ 07154868 n 0000 | a word or phrase that particular people use in particular situations; "pardon the expression" -07151892 10 n 02 anatomical_reference 0 anatomical 0 002 @ 07151380 n 0000 + 02897524 a 0202 | an expression that relates to anatomy -07152027 10 n 01 southernism 0 001 @ 07151380 n 0000 | a locution or pronunciation peculiar to the southern United States -07152151 10 n 01 sound_bite 0 001 @ 07012534 n 0000 | a very short speech; usually on radio or television -07152259 10 n 04 motto 0 slogan 0 catchword 0 shibboleth 1 005 @ 07151380 n 0000 + 10612373 n 0201 ~ 07152463 n 0000 ~ 07152590 n 0000 ~ 07152752 n 0000 | a favorite saying of a sect or political group -07152463 10 n 02 catchphrase 0 catch_phrase 0 002 @ 06316048 n 0000 @ 07152259 n 0000 | a phrase that has become a catchword -07152590 10 n 01 mantra 1 001 @ 07152259 n 0000 | a commonly repeated word or phrase; "she repeated `So pleased with how its going' at intervals like a mantra" -07152752 10 n 05 war_cry 1 rallying_cry 0 battle_cry 1 cry 3 watchword 1 001 @ 07152259 n 0000 | a slogan used to rally support for a cause; "a cry to arms"; "our watchword will be `democracy'" -07152948 10 n 02 maxim 0 axiom 0 005 @ 07151380 n 0000 + 02653651 a 0201 ~ 07153130 n 0000 ~ 07153385 n 0000 ~ 07153641 n 0000 | a saying that is widely accepted on its own merits -07153130 10 n 03 aphorism 0 apothegm 0 apophthegm 0 009 @ 07152948 n 0000 + 00546951 a 0202 + 02635221 a 0201 + 02635221 a 0202 + 00546951 a 0101 + 02653651 a 0102 + 09798404 n 0101 + 00741911 v 0101 + 00741911 v 0102 | a short pithy instructive saying -07153385 10 n 01 gnome 0 002 @ 07152948 n 0000 ~ 07153502 n 0000 | a short pithy saying expressing a general truth -07153502 10 n 02 Murphy's_Law 0 Sod's_Law 0 001 @ 07153385 n 0000 | humorous axiom stating that anything that can go wrong will go wrong -07153641 10 n 01 moralism 0 002 @ 07152948 n 0000 + 01548925 a 0101 | a moral maxim -07153727 10 n 02 epigram 0 quip 1 003 @ 07151380 n 0000 + 00853958 v 0202 + 00546951 a 0103 | a witty saying -07153838 10 n 04 proverb 0 adage 0 saw 0 byword 0 002 @ 07151380 n 0000 + 02990304 a 0101 | a condensed but memorable saying embodying some important fact of experience that is taken as true by many people -07154046 10 n 05 platitude 0 cliche 0 banality 0 commonplace 0 bromide 0 005 @ 06765044 n 0000 @ 07154243 n 0000 + 01688757 a 0402 + 01688757 a 0301 + 01689223 a 0104 | a trite or obvious remark -07154243 10 n 01 truism 0 002 @ 06724066 n 0000 ~ 07154046 n 0000 | an obvious truth -07154330 10 n 05 idiom 1 idiomatic_expression 0 phrasal_idiom 0 set_phrase 0 phrase 2 008 @ 07151380 n 0000 + 02937108 a 0501 + 00980453 v 0504 + 03004358 a 0101 -u 01092727 a 0000 -u 00037876 r 0000 -u 00168428 r 0000 ~ 07154666 n 0000 | an expression whose meanings cannot be inferred from the meanings of the words that make it up -07154666 10 n 02 ruralism 0 rusticism 0 001 @ 07154330 n 0000 | a rural idiom or expression -07154760 10 n 01 agrapha 0 001 @ 07151380 n 0000 | sayings of Jesus not recorded in the canonical Gospels -07154868 10 n 01 sumpsimus 0 001 @ 07151380 n 0000 | a correct expression that takes the place of a popular but incorrect expression; "he preferred his erroneous but pleasing mumpsimus to the correct sumpsimus" -07155081 10 n 01 non-standard_speech 0 010 @ 07109196 n 0000 ~ 07155426 n 0000 ~ 07155531 n 0000 ~ 07155661 n 0000 ~ 07156375 n 0000 ~ 07156497 n 0000 ~ 07157000 n 0000 ~ 07157123 n 0000 ~ 07157273 n 0000 ~ 07159467 n 0000 | speech that differs from the usual accepted, easily recognizable speech of native adult members of a speech community -07155426 10 n 02 baby_talk 0 babytalk 0 001 @ 07155081 n 0000 | the developing speech of a young child -07155531 10 n 03 baby_talk 1 babytalk 1 motherese 0 001 @ 07155081 n 0000 | an adult's imitation of the speech of a young child -07155661 10 n 03 dialect 0 idiom 0 accent 3 008 @ 07155081 n 0000 + 00983333 v 0303 + 03004561 a 0101 -u 01455221 a 0000 -u 00074641 r 0000 ~ 07156091 n 0000 ~ 07156219 n 0000 -u 01236941 v 0000 | the usage or vocabulary that is characteristic of a specific group of people; "the immigrants spoke an odd dialect of English"; "he has a strong German accent"; "it has been said that a language is a dialect with an army and navy" -07156091 10 n 01 eye_dialect 0 001 @ 07155661 n 0000 | the use of misspellings to identify a colloquial or uneducated speaker -07156219 10 n 01 patois 0 002 @ 07155661 n 0000 ;u 06964901 n 0000 | a regional dialect of a language (especially French); usually considered substandard -07156375 10 n 01 localism 0 001 @ 07155081 n 0000 | a phrase or pronunciation that is peculiar to a particular locality -07156497 10 n 01 regionalism 0 003 @ 07155081 n 0000 -u 00078463 a 0000 -u 00624913 a 0000 | a feature (as a pronunciation or expression or custom) that is characteristic of a particular region -07156693 10 n 01 idiolect 0 001 @ 07109196 n 0000 | the language or speech of one individual at a particular period in life -07156819 10 n 01 monologue 2 002 @ 07109196 n 0000 + 00964478 v 0101 | a long utterance by one person (especially one that prevents others from participating in the conversation) -07157000 10 n 01 telegraphese 0 001 @ 07155081 n 0000 | language characterized by terseness and ellipsis as in telegrams -07157123 10 n 01 vernacular 0 002 @ 07155081 n 0000 + 01046226 a 0102 | the everyday speech of the people (as distinguished from literary language) -07157273 10 n 07 slang 0 cant 0 jargon 0 lingo 0 argot 0 patois 1 vernacular 1 096 @ 07155081 n 0000 + 01046784 a 0101 -u 00607857 a 0000 -u 00798103 a 0000 -u 00808614 a 0000 -u 00968957 a 0000 -u 01129533 a 0000 -u 01201758 a 0000 -u 01587643 a 0000 -u 01678586 a 0000 -u 02227663 a 0000 -u 02327315 a 0000 -u 02387790 a 0000 -u 02512794 a 0000 -u 00009373 r 0000 -u 00046449 r 0000 -u 00361041 n 0000 -u 00780615 n 0000 -u 00783063 n 0000 -u 00784934 n 0000 -u 00811036 n 0000 -u 00846021 n 0000 -u 00855301 n 0000 -u 00856193 n 0000 -u 00882045 n 0000 -u 00896688 n 0000 -u 00993787 n 0000 -u 02830596 n 0102 -u 02936281 n 0000 -u 02983507 n 0102 -u 03167978 n 0000 -u 03427202 n 0000 -u 03758614 n 0000 -u 03823540 n 0000 -u 04145735 n 0000 -u 04753799 n 0000 -u 05033046 n 0000 -u 05218119 n 0103 -u 05262422 n 0000 -u 05538215 n 0000 -u 05556071 n 0000 -u 05715150 n 0000 ~ 06336537 n 0000 -u 06506603 n 0000 -u 06609909 n 0000 -u 06611147 n 0000 -u 06611998 n 0000 -u 06617413 n 0000 -u 06730241 n 0000 ~ 07159276 n 0000 -u 07448232 n 0000 -u 07459642 n 0000 -u 07577657 n 0000 -u 08225334 n 0000 -u 08641944 n 0000 -u 09639719 n 0000 -u 09641226 n 0000 -u 09641422 n 0000 -u 09643799 n 0000 -u 09667205 n 0000 -u 09682122 n 0000 -u 09698337 n 0000 -u 09716439 n 0000 -u 09718652 n 0000 -u 09720406 n 0000 -u 09748239 n 0000 -u 09780984 n 0000 -u 09827363 n 0000 -u 09831731 n 0000 -u 09863339 n 0000 -u 09883947 n 0000 -u 10138242 n 0000 -u 10153155 n 0000 -u 10375690 n 0000 -u 10386196 n 0000 -u 10557246 n 0000 -u 10643584 n 0000 -u 10673946 n 0000 -u 10729923 n 0000 -u 10753779 n 0102 -u 10786992 n 0000 -u 11470348 n 0000 -u 13250680 n 0000 -u 13724838 n 0000 -u 13769672 n 0000 -u 14050434 n 0000 -u 14372286 n 0000 -u 14375761 n 0000 -u 14408519 n 0000 -u 00341184 v 0000 -u 00359806 v 0000 + 00964110 v 0101 -u 01210152 v 0000 -u 01709781 v 0000 -u 02227362 v 0000 -u 02614023 v 0000 | a characteristic language of a particular group (as among thieves); "they don't speak our lingo" -07159276 10 n 01 rhyming_slang 0 001 @ 07157273 n 0000 | slang that replaces words with rhyming words or expressions and then typically omits the rhyming component; "Cockney rhyming slang" -07159467 10 n 03 slang 1 slang_expression 0 slang_term 0 004 @ 07155081 n 0000 + 01046784 a 0101 + 00845658 v 0101 + 00964110 v 0101 | informal language consisting of words and expressions that are not considered appropriate for formal occasions; often vituperative or vulgar; "their speech was full of slang expressions" -07159791 10 n 04 spell 0 magic_spell 0 magical_spell 0 charm 0 006 @ 07109196 n 0000 + 02586458 v 0401 + 01130455 v 0401 + 01064560 v 0101 ~ 07160116 n 0000 ~ 07160424 n 0000 | a verbal formula believed to have magical force; "he whispered a spell as he moved his hands"; "inscribed around its base is a charm in Balinese" -07160116 10 n 02 incantation 0 conjuration 0 003 @ 07159791 n 0000 + 01629958 v 0202 ~ 07160296 n 0000 | a ritual recitation of words or sounds believed to have a magical effect -07160296 10 n 01 invocation 1 002 @ 07160116 n 0000 + 01629958 v 0104 | an incantation used in conjuring or summoning a devil -07160424 10 n 04 hex 0 jinx 0 curse 2 whammy 0 004 @ 07159791 n 0000 + 00865958 v 0301 + 00776988 v 0206 + 00776988 v 0101 | an evil spell; "a witch put a curse on his whole family"; "he put the whammy on me" -07160635 10 n 01 dictation 0 002 @ 07109196 n 0000 + 00626890 v 0101 | speech intended for reproduction in writing -07160752 10 n 02 soliloquy 0 monologue 0 003 @ 07109196 n 0000 + 00964478 v 0201 + 00964478 v 0103 | speech you make to yourself -07160883 10 n 01 speech_act 0 026 @ 00030358 n 0000 ~ 06633896 n 0000 ~ 06720600 n 0000 ~ 07161429 n 0000 ~ 07168131 n 0000 ~ 07175241 n 0000 ~ 07180570 n 0000 ~ 07180787 n 0000 ~ 07185076 n 0000 ~ 07185325 n 0000 ~ 07199565 n 0000 ~ 07201365 n 0000 ~ 07203126 n 0000 ~ 07204401 n 0000 ~ 07207273 n 0000 ~ 07208338 n 0000 ~ 07212190 n 0000 ~ 07213395 n 0000 ~ 07226545 n 0000 ~ 07229530 n 0000 ~ 07230502 n 0000 ~ 07231294 n 0000 ~ 07232421 n 0000 ~ 07232988 n 0000 ~ 07238694 n 0000 ~ 07254267 n 0000 | the use of language to perform some act -07161429 10 n 02 proposal 1 proposition 2 004 @ 07160883 n 0000 + 00875394 v 0201 + 00875394 v 0101 ~ 07167415 n 0000 | the act of making a proposal; "they listened to her proposal" -07161613 10 n 01 contract_offer 0 001 @ 07164546 n 0000 | offer by an employer to contract to pay an employee at a given rate -07161741 10 n 04 marriage_proposal 0 proposal_of_marriage 0 marriage_offer 0 proposal 2 003 @ 07164546 n 0000 + 00879764 v 0401 ~ 07162059 n 0000 | an offer of marriage -07161912 10 n 01 proposition 3 002 @ 07164546 n 0000 + 00875951 v 0101 | an offer for a private bargain (especially a request for sexual favors) -07162059 10 n 01 question 4 001 @ 07161741 n 0000 | an informal reference to a marriage proposal; "he was ready to pop the question" -07162194 10 n 01 proposal 0 008 @ 06598915 n 0000 ~ 06671484 n 0000 ~ 07162424 n 0000 ~ 07162545 n 0000 ~ 07162680 n 0000 ~ 07162975 n 0000 ~ 07163110 n 0000 ~ 07163593 n 0000 | something proposed (such as a plan or assumption) -07162424 10 n 01 counterproposal 0 001 @ 07162194 n 0000 | a proposal offered as an alternative to an earlier proposal -07162545 10 n 01 hypothesis 0 002 @ 07162194 n 0000 + 00633443 v 0105 | a proposal intended to explain certain facts or observations -07162680 10 n 03 suggestion 0 proposition 1 proffer 0 008 @ 07162194 n 0000 + 02297142 v 0302 + 00706243 v 0202 + 00927430 v 0102 + 00875394 v 0102 ~ 07163988 n 0000 ~ 07164163 n 0000 ~ 07164349 n 0000 | a proposal offered for acceptance or rejection; "it was a suggestion we couldn't refuse" -07162975 10 n 01 introduction 3 001 @ 07162194 n 0000 | a new proposal; "they resisted the introduction of impractical alternatives" -07163110 10 n 01 re-introduction 0 001 @ 07162194 n 0000 | a proposal of something previously rejected; "they avoided a re-introduction of the old terminology" -07163272 10 n 01 first_reading 0 001 @ 07167415 n 0000 | the first presentation of a bill in a legislature -07163381 10 n 01 second_reading 0 001 @ 07167415 n 0000 | the second presentation of a bill in a legislature; to approve its general principles (Britain) or to discuss a committee's report and take a vote (US) -07163593 10 n 02 motion 1 question 2 001 @ 07162194 n 0000 | a formal proposal for action made to a deliberative assembly for discussion and vote; "he made a motion to adjourn"; "she called for the question" -07163803 10 n 01 previous_question 0 002 @ 06876309 n 0000 @ 06652878 n 0000 | a motion calling for an immediate vote on the main question under discussion by a deliberative assembly -07163988 10 n 03 hint 0 intimation 0 breath 0 003 @ 07162680 n 0000 + 00930806 v 0202 + 00927430 v 0101 | an indirect suggestion; "not a breath of scandal ever touched her" -07164163 10 n 03 touch 1 trace 1 ghost 0 001 @ 07162680 n 0000 | a suggestion of some quality; "there was a touch of sarcasm in his tone"; "he detected a ghost of a smile on her face" -07164349 10 n 04 overture 0 advance 0 approach 0 feeler 0 002 @ 07162680 n 0000 + 00990392 v 0301 | a tentative suggestion designed to elicit the reactions of others; "she rejected his advances" -07164546 10 n 02 offer 0 offering 0 015 @ 06598915 n 0000 + 00706557 v 0201 + 02298632 v 0101 ~ 07161613 n 0000 ~ 07161741 n 0000 ~ 07161912 n 0000 ~ 07164972 n 0000 ~ 07165086 n 0000 ~ 07165506 n 0000 ~ 07166101 n 0000 ~ 07166281 n 0000 ~ 07166432 n 0000 ~ 07166851 n 0000 ~ 07167186 n 0000 ~ 07167326 n 0000 | something offered (as a proposal or bid); "noteworthy new offerings for investors included several index funds" -07164972 10 n 01 counteroffer 0 001 @ 07164546 n 0000 | an offer made by someone who has rejected a prior offer -07165086 10 n 02 bid 0 tender 0 007 @ 07164546 n 0000 + 02296495 v 0201 + 02298632 v 0203 + 02240674 v 0101 + 02298632 v 0102 ~ 07165298 n 0000 ~ 07165410 n 0000 | a formal proposal to buy at a specified price -07165298 10 n 01 overbid 0 002 @ 07165086 n 0000 + 02301151 v 0101 | a bid that is higher than preceding bids -07165410 10 n 01 buyout_bid 0 001 @ 07165086 n 0000 | a bid to buy all of a person's holdings -07165506 10 n 01 prospectus 1 001 @ 07164546 n 0000 | a formal written offer to sell securities (filed with the SEC) that sets forth a plan for a (proposed) business enterprise; "a prospectus should contain the facts that an investor needs to make an informed decision" -07165778 10 n 02 preliminary_prospectus 0 red_herring 0 001 @ 06674947 n 0000 | a first draft of a prospectus; must be clearly marked to indicate that parts may be changed in the final prospectus; "because some portions of the cover page are printed in red ink a preliminary prospectus is sometimes called a red herring" -07166101 10 n 01 tender_offer 0 002 @ 07164546 n 0000 ~ 00790347 n 0000 | an offer to buy shares in a corporation (usually above the market price) for cash or securities or both -07166281 10 n 01 reward 0 002 @ 07164546 n 0000 ~ 07167041 n 0000 | the offer of money for helping to find a criminal or for returning lost property -07166432 10 n 02 rights_offering 0 rights_issue 0 001 @ 07164546 n 0000 | an offering of common stock to existing shareholders who hold subscription rights or pre-emptive rights that entitle them to buy newly issued shares at a discount from the price at which they will be offered to the public later; "the investment banker who handles a rights offering usually agrees to buy any shares not bought by shareholders" -07166851 10 n 01 special 0 001 @ 07164546 n 0000 | a special offering (usually temporary and at a reduced price) that is featured in advertising; "they are having a special on pork chops" -07167041 10 n 01 price 0 001 @ 07166281 n 0000 | a monetary reward for helping to catch a criminal; "the cattle thief has a price on his head" -07167186 10 n 02 peace_offering 0 olive_branch 0 001 @ 07164546 n 0000 | something offered to an adversary in the hope of obtaining peace -07167326 10 n 01 twofer 0 001 @ 07164546 n 0000 | an offer of two for the price of one -07167415 10 n 01 presentation 1 005 @ 07161429 n 0000 + 02148788 v 0104 + 00989602 v 0102 ~ 07163272 n 0000 ~ 07163381 n 0000 | the act of presenting a proposal -07167578 10 n 02 submission 0 entry 0 003 @ 06598915 n 0000 + 00878636 v 0101 ~ 07167954 n 0000 | something (manuscripts or architectural plans and models or estimates or works of art of all genres etc.) submitted for the judgment of others (as in a competition); "several of his submissions were rejected by publishers"; "what was the date of submission of your proposal?" -07167954 10 n 01 filing 0 002 @ 07167578 n 0000 + 01001857 v 0101 | the entering of a legal document into the public record; "he filed a complaint"; "he filed his tax return" -07168131 10 n 04 command 0 bid 3 bidding 2 dictation 1 013 @ 07160883 n 0000 + 02587084 v 0401 + 00747135 v 0403 + 00759657 v 0301 + 00759657 v 0201 + 00751567 v 0101 ~ 07168486 n 0000 ~ 07168623 n 0000 ~ 07169480 n 0000 ~ 07169848 n 0000 ~ 07170467 n 0000 ~ 07170572 n 0000 ~ 07170660 n 0000 | an authoritative direction or instruction to do something -07168486 10 n 01 countermand 0 002 @ 07168131 n 0000 + 00799798 v 0104 | a contrary command cancelling or reversing a previous command -07168623 10 n 01 order 3 008 @ 07168131 n 0000 ;c 08199025 n 0000 ;u 06295235 n 0000 + 00747135 v 0101 + 00746718 v 0101 ~ 07168983 n 0000 ~ 07169098 n 0000 ~ 07169242 n 0000 | (often plural) a command given by a superior (e.g., a military or law enforcement officer) that must be obeyed; "the British ships dropped anchor and waited for orders from London" -07168983 10 n 01 marching_orders 0 001 @ 07168623 n 0000 | an order from a superior officer for troops to depart -07169098 10 n 01 summons 2 003 @ 07168623 n 0000 + 00791134 v 0102 ~ 07169353 n 0000 | an order to appear in person at a given place and time -07169242 10 n 01 word 6 001 @ 07168623 n 0000 | a verbal command for action; "when I give the word, charge!" -07169353 10 n 01 call_up 0 003 @ 07169098 n 0000 ;c 08199025 n 0000 + 01097960 v 0101 | an order to report for military duty -07169480 10 n 03 commission 1 charge 1 direction 1 006 @ 07168131 n 0000 + 02475922 v 0202 + 00750345 v 0201 + 09943811 n 0101 + 02480803 v 0101 ~ 07169743 n 0000 | a formal statement of a command or injunction to do something; "the judge's charge to the jury" -07169743 10 n 01 misdirection 2 001 @ 07169480 n 0000 | an incorrect charge to a jury given by a judge -07169848 10 n 01 commandment 0 003 @ 07168131 n 0000 + 00751567 v 0101 ~i 07169970 n 0000 | something that is commanded -07169970 10 n 02 Decalogue 0 Ten_Commandments 0 001 @i 07169848 n 0000 | the biblical commandments of Moses -07170080 10 n 01 directive 0 004 @ 06727616 n 0000 + 00199114 a 0103 + 00749205 v 0101 ~ 07170282 n 0000 | a pronouncement encouraging or banning some activity; "the boss loves to send us directives" -07170282 10 n 01 Presidential_Directive 0 001 @ 07170080 n 0000 | a directive issued by the President of the United States; usually addressed to all heads of departments and agencies -07170467 10 n 01 injunction 0 002 @ 07168131 n 0000 + 00746718 v 0103 | a formal command or admonition -07170572 10 n 01 behest 0 001 @ 07168131 n 0000 | an authoritative command or request -07170660 10 n 01 open_sesame 0 001 @ 07168131 n 0000 | a magical command; used by Ali Baba -07170753 10 n 01 interpretation 0 016 @ 06738281 n 0000 + 00938247 v 0102 + 00623151 v 0101 ~ 06742426 n 0000 ~ 06742630 n 0000 ~ 07171206 n 0000 ~ 07171785 n 0000 ~ 07171940 n 0000 ~ 07172117 n 0000 ~ 07173258 n 0000 ~ 07173585 n 0000 ~ 07173766 n 0000 ~ 07173959 n 0000 ~ 07174138 n 0000 ~ 07174260 n 0000 ~ 07174433 n 0000 | an explanation that results from interpreting something; "the report included his interpretation of the forensic evidence" -07171206 10 n 03 clarification 0 elucidation 0 illumination 0 006 @ 07170753 n 0000 + 00621058 v 030b + 00939857 v 0203 + 00621058 v 020c + 00939857 v 0101 ~ 07171513 n 0000 | an interpretation that removes obstacles to understanding; "the professor's clarification helped her to understand the textbook" -07171513 10 n 01 disambiguation 0 003 @ 07171206 n 0000 + 00957178 v 0101 ~ 07171666 n 0000 | clarification that follows from the removal of ambiguity -07171666 10 n 01 lexical_disambiguation 0 001 @ 07171513 n 0000 | disambiguation of the sense of a polysemantic word -07171785 10 n 01 eisegesis 0 002 @ 07170753 n 0000 ;c 06431740 n 0000 | personal interpretation of a text (especially of the Bible) using your own ideas -07171940 10 n 01 exegesis 0 004 @ 07170753 n 0000 ;c 06431740 n 0000 + 02724166 a 0101 + 02724166 a 0102 | an explanation or critical interpretation (especially of the Bible) -07172117 10 n 01 ijtihad 0 001 @ 07170753 n 0000 | the endeavor of a Moslem scholar to derive a rule of divine law from the Koran and Hadith without relying on the views of other scholars; by the end of the 10th century theologians decided that debate on such matters would be closed and Muslim theology and law were frozen; "some reform-minded Islamic scholars believe that reopening ijtihad is a prerequisite for the survival of Islam" -07172557 10 n 01 text 3 002 @ 06400271 n 0000 #p 06431740 n 0000 | a passage from the Bible that is used as the subject of a sermon; "the preacher chose a text from Psalms to introduce his sermon" -07172756 10 n 03 expansion 0 enlargement 0 elaboration 0 006 @ 07138085 n 0000 + 00955601 v 0301 + 00955601 v 0205 + 00955601 v 0107 ~ 07139151 n 0000 ~ 07172979 n 0000 | a discussion that provides additional information -07172979 10 n 02 embellishment 0 embroidery 0 003 @ 07172756 n 0000 + 00956405 v 0201 + 00956405 v 0104 | elaboration of an interpretation by the use of decorative (sometimes fictitious) detail; "the mystery has been heightened by many embellishments in subsequent retellings" -07173258 10 n 01 literal_interpretation 0 002 @ 07170753 n 0000 ~ 07173389 n 0000 | an interpretation based on the exact wording -07173389 10 n 01 letter 3 001 @ 07173258 n 0000 | a strictly literal interpretation (as distinct from the intention); "he followed instructions to the letter"; "he obeyed the letter of the law" -07173585 10 n 01 version 1 002 @ 07170753 n 0000 ~ 06783442 n 0000 | an interpretation of a matter from a particular viewpoint; "his version of the fight was different from mine" -07173766 10 n 01 reading 1 002 @ 07170753 n 0000 + 00624476 v 0102 | a particular interpretation or performance; "on that reading it was an insult"; "he was famous for his reading of Mozart" -07173959 10 n 02 construction 0 twist 0 002 @ 07170753 n 0000 + 00932798 v 0201 | an interpretation of a text or action; "they put an unsympathetic construction on his conduct" -07174138 10 n 01 reconstruction 0 001 @ 07170753 n 0000 | an interpretation formed by piecing together bits of evidence -07174260 10 n 02 popularization 0 popularisation 0 003 @ 07170753 n 0000 + 00578508 v 0202 + 00578508 v 0101 | an interpretation that easily understandable and acceptable -07174433 10 n 03 misinterpretation 0 misunderstanding 0 mistaking 0 008 @ 07170753 n 0000 + 00618267 v 0301 + 00619869 v 0204 + 00619869 v 0102 + 00624801 v 0102 ~ 07174785 n 0000 ~ 07174877 n 0000 ~ 07175102 n 0000 | putting the wrong interpretation on; "his misinterpretation of the question caused his error"; "there was no mistaking her meaning" -07174785 10 n 01 imbroglio 0 001 @ 07174433 n 0000 | a very embarrassing misunderstanding -07174877 10 n 02 misconstrual 0 misconstruction 1 003 @ 07174433 n 0000 + 00619869 v 0201 + 00619869 v 0101 | a kind of misinterpretation resulting from putting a wrong construction on words or actions (often deliberately) -07175102 10 n 01 misreading 0 003 @ 07174433 n 0000 + 00627693 v 0101 + 00624801 v 0101 | misinterpretation caused by inaccurate reading -07175241 10 n 01 agreement 0 015 @ 07160883 n 0000 + 01035530 v 0101 + 00764222 v 0101 + 00805376 v 0101 ! 07180787 n 0101 ~ 07175575 n 0000 ~ 07176682 n 0000 ~ 07176804 n 0000 ~ 07176962 n 0000 ~ 07177192 n 0000 ~ 07179820 n 0000 ~ 07179943 n 0000 ~ 07180183 n 0000 ~ 07180372 n 0000 ~ 07216412 n 0000 | the verbal act of agreeing -07175575 10 n 02 assent 0 acquiescence 0 006 @ 07175241 n 0000 + 01612627 a 0201 + 00804139 v 0203 + 00804139 v 0101 ~ 07176073 n 0000 ~ 07176243 n 0000 | agreement with a statement or proposal to do something; "he gave his assent eagerly"; "a murmur of acquiescence from the assembly" -07175863 10 n 01 informed_consent 0 001 @ 06689667 n 0000 | consent by a patient to undergo a medical or surgical treatment or to participate in an experiment after the patient understands the risks involved -07176073 10 n 01 acceptance 1 002 @ 07175575 n 0000 ;c 06162042 n 0000 | (contract law) words signifying consent to the terms of an offer (thereby creating a contract) -07176243 10 n 03 concession 2 conceding 0 yielding 0 009 @ 07175575 n 0000 + 00806049 v 0302 + 02316649 v 0201 + 01117609 v 0201 + 00806049 v 0201 + 02316649 v 0101 + 01117609 v 0101 + 00806049 v 0101 ~ 07176499 n 0000 | the act of conceding or yielding -07176499 10 n 02 bye 1 pass 2 002 @ 07176243 n 0000 + 02523953 v 0201 | you advance to the next round in a tournament without playing an opponent; "he had a bye in the first round" -07176682 10 n 02 concurrence 0 concurrency 0 002 @ 07175241 n 0000 + 00805376 v 0103 | agreement of results or opinions -07176804 10 n 03 accord 0 conformity 1 accordance 0 002 @ 07175241 n 0000 + 00552841 a 0301 | concurrence of opinion; "we are in accord with your proposal" -07176962 10 n 02 connivance 0 collusion 0 004 @ 07175241 n 0000 + 00707624 v 0202 + 00707956 v 0103 ~ 07177111 n 0000 | agreement on a secret plot -07177111 10 n 01 cahoot 0 001 @ 07176962 n 0000 | collusion; "in cahoots with" -07177192 10 n 02 accession 2 assenting 0 002 @ 07175241 n 0000 + 00804139 v 0102 | agreeing with or consenting to (often unwillingly); "accession to such demands would set a dangerous precedent"; "assenting to the Congressional determination" -07177437 10 n 01 accommodation 2 004 @ 07177924 n 0000 + 00482893 v 0101 ~ 07179192 n 0000 ~ 07179342 n 0000 | a settlement of differences; "they reached an accommodation with Japan" -07177622 10 n 01 conclusion 2 001 @ 07177924 n 0000 | a final settlement; "the conclusion of a business deal"; "the conclusion of the peace treaty" -07177772 10 n 01 reservation 1 001 @ 06770275 n 0000 | the written record or promise of an arrangement by which accommodations are secured in advance -07177924 10 n 01 settlement 0 009 @ 06770275 n 0000 + 00764032 v 0101 + 00763399 v 0101 + 00698855 v 0102 ~ 07177437 n 0000 ~ 07177622 n 0000 ~ 07178182 n 0000 ~ 07178337 n 0000 ~ 07178525 n 0000 | a conclusive resolution of a matter and disposition of it -07178182 10 n 01 out-of-court_settlement 0 001 @ 07177924 n 0000 | resolution of a dispute prior to the rendering of a final decision by the trial court -07178337 10 n 01 property_settlement 0 002 @ 07177924 n 0000 ;c 06162377 n 0000 | (matrimonial law) the division of property owned or acquired by marriage partners during their marriage -07178525 10 n 01 accord_and_satisfaction 0 001 @ 07177924 n 0000 | the settlement of a debt by paying less than the amount demanded in exchange for extinguishing the debt -07178698 10 n 01 severance_agreement 0 002 @ 06770275 n 0000 ~ 07178839 n 0000 | an agreement on the terms on which an employee will leave -07178839 10 n 01 golden_handshake 0 001 @ 07178698 n 0000 | a lucrative severance agreement offered to an employee (usually as an incentive to retire) -07178992 10 n 01 suicide_pact 0 001 @ 06770275 n 0000 | an agreement by two or more people to commit suicide together at a given place and time; "the two lovers killed themselves in a suicide pact" -07179192 10 n 01 modus_vivendi 0 001 @ 07177437 n 0000 | a temporary accommodation of a disagreement between parties pending a permanent settlement -07179342 10 n 01 compromise 0 004 @ 07177437 n 0000 + 01035803 v 0101 + 01035380 v 0101 ~i 07179609 n 0000 | an accommodation in which both sides make concessions; "the newly elected congressmen rejected a compromise because they considered it `business as usual'" -07179609 10 n 01 Missouri_Compromise 0 001 @i 07179342 n 0000 | an agreement in 1820 between pro-slavery and anti-slavery factions in the United States concerning the extension of slavery into new territories -07179820 10 n 01 subscription 0 001 @ 07175241 n 0000 | agreement expressed by (or as if expressed by) signing your name -07179943 10 n 02 ratification 1 confirmation 1 003 @ 07175241 n 0000 + 02476518 v 0201 + 02464866 v 0102 | making something valid by formally ratifying or confirming it; "the ratification of the treaty"; "confirmation of the appointment" -07180183 10 n 03 harmony 0 concord 0 concordance 2 006 @ 07175241 n 0000 + 00553478 a 0301 + 00805376 v 0304 + 00805376 v 0204 + 01648488 v 0201 + 01163320 a 0103 | agreement of opinions -07180372 10 n 04 second 0 secondment 0 endorsement 2 indorsement 2 004 @ 07175241 n 0000 + 02556817 v 0404 + 02556817 v 0201 + 02556817 v 0101 | a speech seconding a motion; "do I hear a second?" -07180570 10 n 01 citation 4 005 @ 07160883 n 0000 ;c 08441203 n 0000 + 01705257 v 0102 + 01023259 v 0102 + 01024190 v 0104 | (law) the act of citing (as of spoken words or written passages or legal precedents etc.) -07180787 10 n 01 disagreement 0 009 @ 07160883 n 0000 + 00804802 v 0101 ! 07175241 n 0101 ~ 07181043 n 0000 ~ 07181208 n 0000 ~ 07181358 n 0000 ~ 07181453 n 0000 ~ 07181546 n 0000 ~ 07181935 n 0000 | the speech act of disagreeing or arguing or disputing -07181043 10 n 04 confrontation 0 encounter 0 showdown 0 face-off 0 003 @ 07180787 n 0000 + 02701775 a 0101 + 02742638 v 0101 | a hostile disagreement face-to-face -07181208 10 n 01 dissidence 0 003 @ 07180787 n 0000 + 01691474 a 0101 + 00075737 a 0103 | disagreement; especially disagreement with the government -07181358 10 n 01 dissent 3 002 @ 07180787 n 0000 + 00804802 v 0103 | a difference of opinion -07181453 10 n 01 nonconformity 0 001 @ 07180787 n 0000 | lack of harmony or correspondence -07181546 10 n 02 discord 0 dissension 0 004 @ 07180787 n 0000 + 00804802 v 0203 ~ 07181713 n 0000 ~ 07181842 n 0000 | disagreement among those expected to cooperate -07181713 10 n 01 confrontation 2 002 @ 07181546 n 0000 + 02701775 a 0101 | discord resulting from a clash of ideas or opinions -07181842 10 n 02 division 0 variance 0 001 @ 07181546 n 0000 | discord that splits a group -07181935 10 n 04 dispute 0 difference 0 difference_of_opinion 0 conflict 0 009 @ 07180787 n 0000 + 00804802 v 0202 + 00603804 a 0103 + 00775156 v 0102 + 00869126 v 0102 ~ 07183000 n 0000 ~ 07183151 n 0000 ~ 07183853 n 0000 ~ 07184149 n 0000 | a disagreement or argument about something important; "he had a dispute with his wife"; "there were irreconcilable differences"; "the familiar conflict between Republicans and Democrats" -07182367 10 n 02 straw_man 0 strawman 0 001 @ 06755156 n 0000 | a weak or sham argument set up to be easily refuted -07182485 10 n 02 argy-bargy 0 argle-bargle 0 002 @ 07183151 n 0000 ;r 08860123 n 0000 | a verbal dispute; a wrangling argument -07182614 10 n 01 firestorm 0 001 @ 07183151 n 0000 | an outburst of controversy; "the incident triggered a political firestorm" -07182744 10 n 01 sparring 0 002 @ 07183151 n 0000 + 00773922 v 0101 | an argument in which the participants are trying to gain some advantage -07182888 10 n 01 special_pleading 1 001 @ 06755156 n 0000 | an argument that ignores all unfavorable evidence -07183000 10 n 01 collision 0 002 @ 07181935 n 0000 + 02667698 v 0103 | a conflict of opposed ideas or attitudes or goals; "a collision of interests" -07183151 10 n 08 controversy 0 contention 0 contestation 0 disputation 1 disceptation 0 tilt 0 argument 3 arguing 0 015 @ 07181935 n 0000 + 00773432 v 0701 + 00775156 v 0402 + 00869126 v 0402 + 00869596 v 0301 + 00602293 a 0201 + 00603804 a 0201 + 00773432 v 0202 + 00869596 v 0202 + 00601783 a 0101 ~ 07182485 n 0000 ~ 07182614 n 0000 ~ 07182744 n 0000 ~ 07183660 n 0000 ~ 07184391 n 0000 | a contentious speech act; a dispute where there is strong disagreement; "they were involved in a violent argument" -07183660 10 n 01 polemic 0 006 @ 07183151 n 0000 + 00602563 a 0101 + 00602563 a 0102 + 00774932 v 0101 + 00774932 v 0103 + 00774932 v 0104 | a controversy (especially over a belief or dogma) -07183853 10 n 01 gap 0 002 @ 07181935 n 0000 ~ 07184024 n 0000 | a difference (especially an unfortunate difference) between two opinions or two views or two situations -07184024 10 n 01 generation_gap 0 001 @ 07183853 n 0000 | a difference between the views of young people and their parents -07184149 10 n 06 quarrel 0 wrangle 1 row 0 words 1 run-in 0 dustup 0 006 @ 07181935 n 0000 + 00774344 v 0202 + 00775156 v 0101 ~ 07184545 n 0000 ~ 07184735 n 0000 ~ 07184965 n 0000 | an angry dispute; "they had a quarrel"; "they had words" -07184391 10 n 01 fight 0 002 @ 07183151 n 0000 + 01091427 v 0101 | an intense verbal dispute; "a violent fight over the bill is expected in the Senate" -07184545 10 n 03 affray 0 altercation 0 fracas 0 002 @ 07184149 n 0000 ~ 07184652 n 0000 | noisy quarrel -07184652 10 n 01 batrachomyomachia 0 001 @ 07184545 n 0000 | a silly altercation -07184735 10 n 07 bicker 0 bickering 0 spat 0 tiff 0 squabble 0 pettifoggery 0 fuss 0 006 @ 07184149 n 0000 + 00984624 a 0703 + 00774056 v 0603 + 00774056 v 0505 + 00774817 v 0301 + 00774056 v 0104 | a quarrel about petty points -07184965 10 n 01 bust-up 0 001 @ 07184149 n 0000 | a serious quarrel (especially one that ends a friendship) -07185076 10 n 02 offer 1 offering 1 008 @ 07160883 n 0000 + 02297742 v 0201 + 02297948 v 0102 + 02613487 v 0101 + 02297742 v 0101 + 02425112 v 0102 + 02297142 v 0101 + 02296726 v 0101 | the verbal act of offering; "a generous offer of assistance" -07185325 10 n 02 request 0 asking 0 015 @ 07160883 n 0000 + 01069809 v 0101 + 00753428 v 0101 + 00752764 v 0101 ~ 07185668 n 0000 ~ 07185870 n 0000 ~ 07186148 n 0000 ~ 07186828 n 0000 ~ 07189130 n 0000 ~ 07190693 n 0000 ~ 07190941 n 0000 ~ 07192990 n 0000 ~ 07193184 n 0000 ~ 07279687 n 0000 ~ 07280072 n 0000 | the verbal act of requesting -07185668 10 n 02 notification 1 notice 2 003 @ 07185325 n 0000 + 00873682 v 0202 + 00873682 v 0102 | a request for payment; "the notification stated the grace period and the penalties for defaulting" -07185870 10 n 02 wish 0 indirect_request 0 004 @ 07185325 n 0000 + 01824532 v 0101 + 01824339 v 0101 + 00903212 v 0101 | an expression of some desire or inclination; "I could tell that it was his wish that the guests leave"; "his crying was an indirect request for attention" -07186148 10 n 01 invitation 0 011 @ 07185325 n 0000 @ 06624161 n 0000 + 03134550 a 0101 + 02384940 v 0101 + 02384686 v 0101 + 01470225 v 0103 + 01469770 v 0101 + 01063695 v 0101 + 00793580 v 0101 ~ 07186528 n 0000 ~ 07186661 n 0000 | a request (spoken or written) to participate or be present or take part in something; "an invitation to lunch"; "she threw the invitation away" -07186528 10 n 02 bidding 0 summons 1 002 @ 07186148 n 0000 + 00793580 v 0102 | a request to be present; "they came at his bidding" -07186661 10 n 01 invite 0 003 @ 07186148 n 0000 + 02384940 v 0101 + 02384686 v 0101 | a colloquial expression for invitation; "he didn't get no invite to the party" -07186828 10 n 03 entreaty 0 prayer 0 appeal 0 008 @ 07185325 n 0000 + 00755447 v 0301 ~ 07187150 n 0000 ~ 07187297 n 0000 ~ 07187638 n 0000 ~ 07187773 n 0000 ~ 07188570 n 0000 ~ 07188685 n 0000 | earnest or urgent request; "an entreaty to stop the fighting"; "an appeal for help"; "an appeal to the public to keep calm" -07187150 10 n 01 adjuration 0 003 @ 07186828 n 0000 + 00755331 v 0101 + 00759657 v 0104 | a solemn and earnest appeal to someone to do something -07187297 10 n 02 demagoguery 0 demagogy 0 004 @ 07186828 n 0000 + 03060782 a 0201 + 03060782 a 0202 ~ 07187486 n 0000 | impassioned appeals to the prejudices and emotions of the populace -07187486 10 n 02 flag_waving 0 jingoism 0 003 @ 07187297 n 0000 + 01740358 a 0203 + 09911849 n 0202 | an appeal intended to arouse patriotic emotions -07187638 10 n 02 supplication 1 plea 0 002 @ 07186828 n 0000 + 00758627 v 0101 | a humble request for help from someone in authority -07187773 10 n 01 solicitation 0 005 @ 07186828 n 0000 + 00782057 v 0101 ~ 07187996 n 0000 ~ 07188238 n 0000 ~ 07188385 n 0000 | an entreaty addressed to someone of superior status; "a solicitation to the king for relief" -07187996 10 n 03 beggary 0 begging 0 mendicancy 0 005 @ 07187773 n 0000 + 00714437 a 0301 + 02270815 v 0101 + 00782057 v 0102 + 00759269 v 0101 | a solicitation for money or food (especially in the street by an apparently penniless person) -07188238 10 n 01 touch 0 001 @ 07187773 n 0000 | the act of soliciting money (as a gift or loan); "he watched the beggar trying to make a touch" -07188385 10 n 03 importunity 0 urgency 0 urging 1 002 @ 07187773 n 0000 + 00875141 v 0202 | insistent solicitation and entreaty; "his importunity left me no alternative but to agree" -07188570 10 n 01 suit 0 001 @ 07186828 n 0000 | a petition or appeal made to a person of superior status or rank -07188685 10 n 04 courtship 0 wooing 0 courting 0 suit 1 005 @ 07186828 n 0000 + 02534761 v 0301 + 02534492 v 0302 + 02534492 v 0201 ~ 07188979 n 0000 | a man's courting of a woman; seeking the affections of a woman (usually with the hope of marriage); "its was a brief and intense courtship" -07188979 10 n 01 bundling 0 001 @ 07188685 n 0000 | a onetime custom during courtship of unmarried couples occupying the same bed without undressing -07189130 10 n 03 prayer 2 petition 1 orison 0 011 @ 07185325 n 0000 + 00759944 v 0101 ~ 06418375 n 0000 ~ 07189411 n 0000 ~ 07189633 n 0000 ~ 07189779 n 0000 ~ 07189932 n 0000 ~ 07190039 n 0000 ~ 07190188 n 0000 ~ 07190290 n 0000 ~ 07190584 n 0000 | reverent petition to a deity -07189411 10 n 02 benediction 0 blessing 0 003 @ 07189130 n 0000 + 00866505 v 0201 ~ 07189562 n 0000 | a ceremonial prayer invoking divine protection -07189562 10 n 01 benison 0 001 @ 07189411 n 0000 | a spoken blessing -07189633 10 n 01 collect 0 001 @ 07189130 n 0000 | a short prayer generally preceding the lesson in the Church of Rome or the Church of England -07189779 10 n 01 commination 1 001 @ 07189130 n 0000 | prayers proclaiming God's anger against sinners; read in the Church of England on Ash Wednesday -07189932 10 n 01 deprecation 0 001 @ 07189130 n 0000 | a prayer to avert or remove some evil or disaster -07190039 10 n 03 grace 0 blessing 1 thanksgiving 0 001 @ 07189130 n 0000 | a short prayer of thanks before a meal; "their youngest son said grace" -07190188 10 n 01 intercession 1 001 @ 07189130 n 0000 | a prayer to God on behalf of another person -07190290 10 n 02 invocation 0 supplication 0 004 @ 07189130 n 0000 #p 01032040 n 0000 + 00755447 v 0102 ~ 07190474 n 0000 | a prayer asking God's help as part of a religious service -07190474 10 n 01 rogation 0 001 @ 07190290 n 0000 | a solemn supplication ceremony prescribed by the church -07190584 10 n 01 requiescat 0 001 @ 07189130 n 0000 | a prayer for the repose of the soul of a dead person -07190693 10 n 01 call 4 002 @ 07185325 n 0000 ~ 07190840 n 0000 | a request; "many calls for Christmas stories"; "not many calls for buggywhips" -07190840 10 n 01 recall 0 001 @ 07190693 n 0000 | a call to return; "the recall of our ambassador" -07190941 10 n 02 charge 3 billing 0 005 @ 07185325 n 0000 + 02320374 v 0101 + 02321046 v 0101 + 02317289 v 0101 ~ 07191162 n 0000 | request for payment of a debt; "they submitted their charges at the end of each month" -07191162 10 n 01 presentment 0 001 @ 07190941 n 0000 | a document that must be accepted and paid by another person -07191279 10 n 01 demand 0 010 @ 06513366 n 0000 + 00754942 v 0101 ~ 07191569 n 0000 ~ 07191696 n 0000 ~ 07191777 n 0000 ~ 07192129 n 0000 ~ 07192240 n 0000 ~ 07192511 n 0000 ~ 07192661 n 0000 ~ 07192845 n 0000 | an urgent or peremptory request; "his demands for attention were unceasing" -07191569 10 n 01 challenge 3 002 @ 07191279 n 0000 + 00808343 v 0101 | a demand by a sentry for a password or identification -07191696 10 n 01 ultimatum 0 001 @ 07191279 n 0000 | a final peremptory demand -07191777 10 n 02 insistence 0 insisting 0 005 @ 07191279 n 0000 + 00777931 v 0202 + 00592539 a 0101 + 00818974 v 0101 ~ 07191950 n 0000 | continual and persistent demands -07191950 10 n 01 purism 0 002 @ 07191777 n 0000 + 10494037 n 0101 | scrupulous or exaggerated insistence on purity or correctness (especially in language); "linguistic purisms" -07192129 10 n 02 call 5 claim 1 001 @ 07191279 n 0000 | a demand especially in the phrase "the call of duty" -07192240 10 n 01 requisition 0 003 @ 07191279 n 0000 + 02276000 v 0101 + 00751567 v 0102 | the act of requiring; an authoritative request or demand, especially by a military or public authority that takes something over (usually temporarily) for military or public use -07192511 10 n 01 call 6 002 @ 07191279 n 0000 #p 00488225 n 0000 | a demand for a show of hands in a card game; "after two raises there was a call" -07192661 10 n 02 margin_call 0 call 8 002 @ 07191279 n 0000 + 02359061 v 0201 | a demand by a broker that a customer deposit enough to bring his margin up to the minimum requirement -07192845 10 n 02 wage_claim 0 pay_claim 0 001 @ 07191279 n 0000 | the wage demanded from management for workers by their union representatives -07192990 10 n 01 trick_or_treat 0 001 @ 07185325 n 0000 | a request by children on Halloween; they pass from door to door asking for goodies and threatening to play tricks on those who refuse -07193184 10 n 02 questioning 0 inquiring 0 008 @ 07185325 n 0000 + 00785962 v 0202 + 00784342 v 0202 + 00788184 v 0102 + 00785008 v 0101 ~ 07193405 n 0000 ~ 07193596 n 0000 ~ 07193958 n 0000 | a request for information -07193405 10 n 01 challenge 1 002 @ 07193184 n 0000 + 00869126 v 0101 | questioning a statement and demanding an explanation; "his challenge of the assumption that Japan is still our enemy" -07193596 10 n 05 question 0 inquiry 1 enquiry 0 query 0 interrogation 2 009 @ 07193184 n 0000 + 00788184 v 0501 + 00785008 v 0402 + 00784342 v 0303 + 00784342 v 0202 + 00808855 v 0102 + 00785008 v 0101 + 00788184 v 0102 ! 07200527 n 0101 | an instance of questioning; "there was a question about my training"; "we made inquiries of all those who were present" -07193958 10 n 03 interrogation 0 examination 1 interrogatory 0 013 @ 07193184 n 0000 + 00788564 v 0202 + 00786816 v 0201 + 00788184 v 0101 ~ 07194293 n 0000 ~ 07194499 n 0000 ~ 07194676 n 0000 ~ 07194811 n 0000 ~ 07194950 n 0000 ~ 07195241 n 0000 ~ 07195404 n 0000 ~ 07196075 n 0000 ~ 07220466 n 0000 | formal systematic questioning -07194293 10 n 01 catechism 1 004 @ 07193958 n 0000 ;c 06148148 n 0000 + 00787359 v 0101 + 00787359 v 0102 | a series of question put to an individual (such as a political candidate) to elicit their views -07194499 10 n 01 deposition 0 003 @ 07193958 n 0000 ;c 08441203 n 0000 + 01013040 v 0102 | (law) a pretrial interrogation of a witness; usually conducted in a lawyer's office -07194676 10 n 01 inquisition 0 001 @ 07193958 n 0000 | a severe interrogation (often violating the rights or privacy of individuals) -07194811 10 n 01 third_degree 0 001 @ 07193958 n 0000 | interrogation often accompanied by torture to extort information or a confession -07194950 10 n 01 cross-examination 0 005 @ 07193958 n 0000 ;c 08441203 n 0000 + 00787049 v 0101 %p 07195630 n 0000 %p 07195765 n 0000 | (law) close questioning of a hostile witness in a court of law to discredit or throw a new light on the testimony already provided in direct examination -07195241 10 n 01 direct_examination 0 002 @ 07193958 n 0000 ;c 08441203 n 0000 | (law) the initial questioning of a witness by the party that called the witness -07195404 10 n 02 redirect_examination 0 reexamination 1 002 @ 07193958 n 0000 ;c 08441203 n 0000 | (law) questioning of a witness by the party that called the witness after that witness has been subject to cross-examination -07195630 10 n 01 cross-question 0 003 @ 07196682 n 0000 #p 07194950 n 0000 + 00787049 v 0102 | a question asked in cross-examination -07195765 10 n 01 leading_question 0 002 @ 07196682 n 0000 #p 07194950 n 0000 | a question phrased in such a way as to suggest the desired answer; a lawyer may ask leading questions on cross-examination -07195969 10 n 01 yes-no_question 0 001 @ 07196682 n 0000 | a question that can be answered by yes or no -07196075 10 n 01 interview 1 006 @ 07193958 n 0000 + 00809453 v 0101 + 00809248 v 0101 + 00808855 v 0101 ~ 07196405 n 0000 ~ 07196575 n 0000 | the questioning of a person (or a conversation in which information is elicited); often conducted by journalists; "my interviews with teenagers revealed a weakening of religious bonds" -07196405 10 n 02 job_interview 0 employment_interview 0 001 @ 07196075 n 0000 | an interview to determine whether an applicant is suitable for a position of employment -07196575 10 n 01 telephone_interview 0 001 @ 07196075 n 0000 | an interview conducted over the telephone -07196682 10 n 04 question 3 interrogation 1 interrogative 0 interrogative_sentence 0 007 @ 06285090 n 0000 + 00788184 v 0201 + 00788184 v 0102 + 00785008 v 0101 ~ 07195630 n 0000 ~ 07195765 n 0000 ~ 07195969 n 0000 | a sentence of inquiry that asks for a reply; "he asked a direct question"; "he had trouble phrasing his interrogations" -07197021 10 n 03 examination 0 exam 0 test 0 018 @ 06252138 n 0000 + 00669970 v 0301 + 01112584 v 0301 + 00786458 v 0302 + 02531625 v 0105 + 00788564 v 0102 + 00786816 v 0101 ~ 07197537 n 0000 ~ 07197889 n 0000 ~ 07198119 n 0000 ~ 07198276 n 0000 ~ 07198437 n 0000 ~ 07198605 n 0000 ~ 07198846 n 0000 ~ 07199013 n 0000 ~ 07199191 n 0000 ~ 07199328 n 0000 ~ 07199456 n 0000 | a set of questions or exercises evaluating skill or knowledge; "when the test was stolen the professor had to make a new set of questions" -07197537 10 n 02 bar_examination 0 bar_exam 0 001 @ 07197021 n 0000 | an examination conducted at regular intervals to determine whether a candidate is qualified to practice law in a given jurisdiction; "applicants may qualify to take the New York bar examination by graduating from an approved law school"; "he passed the bar exam on his third try" -07197889 10 n 03 comprehensive_examination 0 comprehensive 0 comp 0 001 @ 07197021 n 0000 | an intensive examination testing a student's proficiency in some special field of knowledge; "she took her comps in English literature" -07198119 10 n 02 entrance_examination 0 entrance_exam 0 001 @ 07197021 n 0000 | examination to determine a candidate's preparation for a course of studies -07198276 10 n 03 final_examination 0 final_exam 0 final 0 002 @ 07197021 n 0000 + 01010271 a 0302 | an examination administered at the end of an academic term -07198437 10 n 01 litmus_test 0 001 @ 07197021 n 0000 | a test that relies on a single indicator; "her litmus test for good breeding is whether you split infinitives" -07198605 10 n 03 midterm_examination 0 midterm_exam 0 midterm 0 001 @ 07197021 n 0000 | an examination administered in the middle of an academic term -07198757 10 n 01 pop_quiz 0 001 @ 07199191 n 0000 | a quiz given without prior warning -07198846 10 n 05 oral 0 oral_exam 0 oral_examination 0 viva_voce 0 viva 0 002 @ 07197021 n 0000 + 02284169 a 0101 | an examination conducted by spoken communication -07199013 10 n 03 preliminary_examination 0 preliminary_exam 0 prelim 0 001 @ 07197021 n 0000 | an examination taken by graduate students to determine their fitness to continue -07199191 10 n 01 quiz 0 003 @ 07197021 n 0000 + 00786458 v 0101 ~ 07198757 n 0000 | an examination consisting of a few short questions -07199328 10 n 04 test_paper 0 examination_paper 0 exam_paper 0 question_sheet 0 001 @ 07197021 n 0000 | a written examination -07199456 10 n 01 tripos 0 001 @ 07197021 n 0000 | final honors degree examinations at Cambridge University -07199565 10 n 02 reply 0 response 0 007 @ 07160883 n 0000 + 00815686 v 0102 ~ 06711705 n 0000 ~ 07199814 n 0000 ~ 07199922 n 0000 ~ 07200290 n 0000 ~ 07200527 n 0000 | the speech act of continuing a conversational exchange; "he growled his reply" -07199814 10 n 01 non_sequitur 0 001 @ 07199565 n 0000 | a reply that has no relevance to what preceded it -07199922 10 n 07 rejoinder 0 retort 0 return 2 riposte 0 replication 1 comeback 0 counter 0 008 @ 07199565 n 0000 + 00815379 v 0701 + 00816353 v 0602 + 00816353 v 0405 + 00816353 v 0304 + 02357072 v 0301 + 00816353 v 0201 ~ 06721949 n 0000 | a quick reply to a question or remark (especially a witty or critical one); "it brought a sharp rejoinder from the teacher" -07200290 10 n 01 echo 0 003 @ 07199565 n 0000 + 00957679 v 0102 ~ 07200421 n 0000 | a reply that repeats what has just been said -07200421 10 n 01 echolalia 0 001 @ 07200290 n 0000 | an infant's repetition of sounds uttered by others -07200527 10 n 01 answer 0 005 @ 07199565 n 0000 + 00815686 v 0101 ! 07193596 n 0101 ~ 07200692 n 0000 ~ 07200813 n 0000 | the speech act of replying to a question -07200692 10 n 01 Urim_and_Thummim 0 001 @ 07200527 n 0000 | lots thrown to determine God's answers to yes-no questions -07200813 10 n 03 refutation 0 defense 1 defence 1 004 @ 07200527 n 0000 + 00814850 v 0101 ~ 07201105 n 0000 ~ 07201220 n 0000 | the speech act of answering an attack on your assertions; "his refutation of the charges was short and persuasive"; "in defense he said the other man started it" -07201105 10 n 01 confutation 0 002 @ 07200813 n 0000 + 00667424 v 0102 | the speech act of refuting conclusively -07201220 10 n 01 rebuttal 0 002 @ 07200813 n 0000 + 00814850 v 0102 | the speech act of refuting by offering a contrary contention or argument -07201365 10 n 01 description 0 007 @ 07160883 n 0000 + 00965035 v 0102 + 00987071 v 0101 ~ 07201562 n 0000 ~ 07202579 n 0000 ~ 07202812 n 0000 ~ 07203016 n 0000 | the act of describing something -07201562 10 n 02 characterization 1 characterisation 1 003 @ 07201365 n 0000 + 00956687 v 0203 + 00956687 v 0102 | the act of describing distinctive characteristics or essential features; "the media's characterization of Al Gore as a nerd" -07201804 10 n 07 word_picture 0 word-painting 0 delineation 1 depiction 1 picture 3 characterization 0 characterisation 0 008 @ 06724763 n 0000 + 00956687 v 0703 + 00987071 v 0502 + 00987071 v 0402 + 02611630 v 0303 + 00989084 v 0301 ~ 07202311 n 0000 ~ 07202391 n 0000 | a graphic or vivid verbal description; "too often the narrative was interrupted by long word pictures"; "the author gives a depressing picture of life in Poland"; "the pamphlet contained brief characterizations of famous Vermonters" -07202311 10 n 01 epithet 0 001 @ 07201804 n 0000 | descriptive word or phrase -07202391 10 n 03 portrayal 1 portraiture 1 portrait 0 004 @ 07201804 n 0000 + 00988890 v 0301 + 00988890 v 0201 + 00988890 v 0101 | a word picture of a person's appearance and character -07202579 10 n 01 label 1 004 @ 07201365 n 0000 + 00971650 v 0102 + 01588493 v 0102 + 01029852 v 0101 | a brief description given for purposes of identification; "the label Modern is applied to many different kinds of architecture" -07202812 10 n 03 particularization 0 particularisation 0 detailing 0 004 @ 07201365 n 0000 + 00956250 v 0301 + 01021973 v 0203 + 01021973 v 0102 | an individualized description of a particular instance -07203016 10 n 02 sketch 3 vignette 0 002 @ 07201365 n 0000 + 01006421 v 0101 | a brief literary description -07203126 10 n 03 affirmation 2 assertion 1 statement 6 008 @ 07160883 n 0000 + 00878136 v 0302 + 01009240 v 0301 + 01011031 v 0203 + 00717045 v 0202 + 01011725 v 0101 + 01011031 v 0101 ~ 07203613 n 0000 | the act of affirming or asserting or stating something -07203388 10 n 01 representation 0 001 @ 06722453 n 0000 | a factual statement made by one party in order to induce another party to enter into a contract; "the sales contract contains several representations by the vendor" -07203613 10 n 01 say-so 1 001 @ 07203126 n 0000 | one chap's arbitrary assertion -07203696 10 n 01 affirmative 0 006 @ 06732350 n 0000 + 00075135 a 0101 ! 07204911 n 0101 ~ 07203900 n 0000 ~ 07204008 n 0000 ~ 07205439 n 0000 | a reply of affirmation; "he answered in the affirmative" -07203900 10 n 01 yes 0 002 @ 07203696 n 0000 ! 07205104 n 0101 | an affirmative; "I was hoping for a yes" -07204008 10 n 01 yea 0 002 @ 07203696 n 0000 ! 07205210 n 0101 | an affirmative; "The yeas have it" -07204110 10 n 01 declaration 6 002 @ 06722453 n 0000 + 01010852 v 0101 | a statement of taxable goods or of dutiable properties -07204240 10 n 02 denial 1 disaffirmation 0 003 @ 06729499 n 0000 + 00816556 v 0101 ~ 07206461 n 0000 | the act of asserting that something alleged is not true -07204401 10 n 01 denial 0 007 @ 07160883 n 0000 + 02214190 v 0101 ~ 07204665 n 0000 ~ 07204822 n 0000 ~ 07204911 n 0000 ~ 07205573 n 0000 ~ 07205946 n 0000 | the act of refusing to comply (as with a request); "it resulted in a complete denial of his privileges" -07204665 10 n 01 abnegation 0 002 @ 07204401 n 0000 + 00758042 v 0101 | the denial and rejection of a doctrine or belief; "abnegation of the Holy Trinity" -07204822 10 n 01 naysaying 0 001 @ 07204401 n 0000 | the act of saying no to a request -07204911 10 n 01 negative 0 006 @ 07204401 n 0000 + 02473431 v 0103 ! 07203696 n 0101 ~ 07205104 n 0000 ~ 07205210 n 0000 ~ 07205308 n 0000 | a reply of denial; "he answered in the negative" -07205104 10 n 01 no 0 002 @ 07204911 n 0000 ! 07203900 n 0101 | a negative; "his no was loud and clear" -07205210 10 n 01 nay 0 002 @ 07204911 n 0000 ! 07204008 n 0101 | a negative; "the nays have it" -07205308 10 n 01 double_negative 0 001 @ 07204911 n 0000 | a grammatically substandard but emphatic negative; "I don't never go" -07205439 10 n 01 double_negative 1 001 @ 07203696 n 0000 | an affirmative constructed from two negatives; "A not unwelcome outcome" -07205573 10 n 01 refusal 1 005 @ 07204401 n 0000 + 02502916 v 0104 + 02212825 v 0102 ~ 07205718 n 0000 ~ 07255174 n 0000 | the act of refusing -07205718 10 n 01 repudiation 1 003 @ 07205573 n 0000 + 00911917 v 0101 + 00686039 v 0101 | refusal to acknowledge or pay a debt or honor a contract (especially by public authorities); "the repudiation of the debt by the city" -07205946 10 n 02 disavowal 0 disclaimer 1 003 @ 07204401 n 0000 + 00820075 v 0101 ~ 07206096 n 0000 | denial of any connection with or knowledge of -07206096 10 n 03 retraction 0 abjuration 0 recantation 0 005 @ 07205946 n 0000 + 00798717 v 0302 + 00798717 v 0201 + 00798717 v 0104 ~ 07206302 n 0000 | a disavowal or taking back of a previous assertion -07206302 10 n 03 withdrawal 0 backdown 0 climb-down 0 003 @ 07206096 n 0000 + 01997680 v 0203 + 00799076 v 0104 | a retraction of a previously held position -07206461 10 n 01 negation 0 004 @ 07204240 n 0000 + 00823436 v 0102 ~ 07206596 n 0000 ~ 07207142 n 0000 | the speech act of negating -07206596 10 n 01 contradiction 0 003 @ 07206461 n 0000 + 00823436 v 0101 ~ 07206800 n 0000 | the speech act of contradicting someone; "he spoke as if he thought his claims were immune to contradiction" -07206800 10 n 01 self-contradiction 0 001 @ 07206596 n 0000 | contradicting yourself -07206887 10 n 02 contradiction 1 contradiction_in_terms 0 004 @ 06756407 n 0000 ;c 06163751 n 0000 ~ 06724437 n 0000 ~ 06724559 n 0000 | (logic) a statement that is necessarily false; "the statement `he is brave and he is not brave' is a contradiction" -07207142 10 n 01 cancellation 0 002 @ 07206461 n 0000 + 02477334 v 0101 | the speech act of revoking or annulling or making void -07207273 10 n 01 rejection 0 004 @ 07160883 n 0000 ~ 07207410 n 0000 ~ 07208000 n 0000 ~ 07208184 n 0000 | the speech act of rejecting -07207410 10 n 02 repudiation 0 renunciation 1 005 @ 07207273 n 0000 + 00757544 v 0202 + 00757544 v 0103 ~ 07207680 n 0000 ~ 07207860 n 0000 | rejecting or disowning or disclaiming as invalid; "Congressional repudiation of the treaty that the President had negotiated" -07207680 10 n 01 disclaimer 0 004 @ 07207410 n 0000 ;c 08441203 n 0000 + 00758197 v 0101 + 00757375 v 0101 | (law) a voluntary repudiation of a person's legal claim to something -07207860 10 n 02 disownment 0 disowning 0 003 @ 07207410 n 0000 + 02316097 v 0202 + 02316097 v 0102 | refusal to acknowledge as one's own -07208000 10 n 03 rebuff 0 snub 0 repulse 0 005 @ 07207273 n 0000 + 01506157 v 0303 + 01131197 v 0302 + 00798539 v 0202 + 01131197 v 0104 | an instance of driving away or warding off -07208184 10 n 02 short_shrift 0 summary_treatment 0 001 @ 07207273 n 0000 | a brief and unsympathetic rejection; "they made short shrift of my request" -07208338 10 n 01 objection 0 009 @ 07160883 n 0000 ~ 07208565 n 0000 ~ 07208708 n 0000 ~ 07209089 n 0000 ~ 07209305 n 0000 ~ 07209533 n 0000 ~ 07209965 n 0000 ~ 07210225 n 0000 ~ 07210553 n 0000 | the speech act of objecting -07208565 10 n 01 challenge 2 002 @ 07208338 n 0000 + 00808162 v 0101 | a formal objection to the selection of a particular person as a juror -07208708 10 n 01 complaint 0 008 @ 07208338 n 0000 + 00907147 v 0101 ~ 07210801 n 0000 ~ 07211092 n 0000 ~ 07211374 n 0000 ~ 07211503 n 0000 ~ 07211604 n 0000 ~ 07211752 n 0000 | an expression of grievance or resentment -07208930 10 n 01 complaint 2 003 @ 07121157 n 0000 ~ 07209868 n 0000 ~ 07211950 n 0000 | (formerly) a loud cry (or repeated cries) of pain or rage or sorrow -07209089 10 n 03 demur 0 demurral 0 demurrer 0 006 @ 07208338 n 0000 ;c 08441203 n 0000 + 01016626 v 0301 + 00807941 v 0301 + 01016626 v 0201 + 00807941 v 0101 | (law) a formal objection to an opponent's pleadings -07209305 10 n 01 dissent 2 004 @ 07208338 n 0000 ;c 08441203 n 0000 + 00554302 a 0101 + 00804802 v 0103 | (law) the difference of one judge's opinion from that of the majority; "he expressed his dissent in a contrary opinion" -07209533 10 n 01 exception 0 003 @ 07208338 n 0000 + 00807941 v 0102 ~ 07209691 n 0000 | grounds for adverse criticism; "his authority is beyond exception" -07209691 10 n 01 caption 2 002 @ 07209533 n 0000 + 00647867 a 0101 | taking exception; especially a quibble based on a captious argument; "a mere caption unworthy of a reply" -07209868 10 n 01 exclamation 2 001 @ 07208930 n 0000 | a loud complaint or protest or reproach -07209965 10 n 05 gripe 0 kick 0 beef 0 bitch 0 squawk 0 007 @ 07208338 n 0000 + 00910973 v 0506 + 00225912 a 0401 + 00907657 v 0402 + 00910973 v 0305 + 00907147 v 0202 + 00910973 v 0101 | informal terms for objecting; "I have a gripe about the service here" -07210225 10 n 02 protest 0 protestation 1 004 @ 07208338 n 0000 + 01011542 v 0201 + 01011542 v 0101 + 00910135 v 0101 | a formal and solemn declaration of objection; "they finished the game under protest to the league president"; "the senator rose to register his protest"; "the many protestations did not stay the execution" -07210553 10 n 01 protest 1 002 @ 07208338 n 0000 + 00910135 v 0101 | the act of making a strong public expression of disagreement and disapproval; "he shouted his protests at the umpire"; "a shower of protest was heard from the rear of the hall" -07210801 10 n 01 grievance 0 001 @ 07208708 n 0000 | a complaint about a (real or imaginary) wrong that causes resentment and is grounds for action -07210951 10 n 01 growling 0 002 @ 07109847 n 0000 + 01045719 v 0102 | a gruff or angry utterance (suggestive of the growling of an animal) -07211092 10 n 06 grumble 0 grumbling 0 murmur 0 murmuring 0 mutter 0 muttering 0 008 @ 07208708 n 0000 + 00909219 v 0602 + 00909219 v 0502 + 00909219 v 0401 + 00909219 v 0301 + 00909219 v 0203 + 00909219 v 0103 + 00909573 v 0102 | a complaint uttered in a low and indistinct tone -07211374 10 n 01 jeremiad 0 001 @ 07208708 n 0000 | a long and mournful complaint; "a jeremiad against any form of government" -07211503 10 n 01 kvetch 0 002 @ 07208708 n 0000 ;c 06951067 n 0000 | (Yiddish) a nagging complaint -07211604 10 n 01 pet_peeve 0 001 @ 07208708 n 0000 | an opportunity for complaint that is seldom missed; "grammatical mistakes are his pet peeve" -07211752 10 n 02 whimper 0 whine 0 006 @ 07208708 n 0000 + 00513981 a 0204 + 00513981 a 0203 + 01042531 v 0202 + 00907930 v 0201 + 00066025 v 0102 | a complaint uttered in a plaintive whining way -07211950 10 n 04 lament 2 lamentation 0 plaint 0 wail 0 005 @ 07208930 n 0000 + 01046932 v 0403 + 00066025 v 0401 + 01802219 v 0201 + 01802219 v 0101 | a cry of sorrow and grief; "their pitiful laments could be heard throughout the ward" -07212190 10 n 02 informing 0 making_known 0 008 @ 07160883 n 0000 + 00831651 v 0101 ~ 07212424 n 0000 ~ 07213232 n 0000 ~ 07217349 n 0000 ~ 07217782 n 0000 ~ 07217924 n 0000 ~ 07224151 n 0000 | a speech act that conveys information -07212424 10 n 03 telling 0 apprisal 0 notification 0 006 @ 07212190 n 0000 + 00873682 v 0302 + 00873682 v 0205 + 01009240 v 0103 ~ 07212612 n 0000 ~ 07212874 n 0000 | informing by words -07212612 10 n 01 notice 3 002 @ 07212424 n 0000 ~ 07213079 n 0000 | advance notification (usually written) of the intention to withdraw from an arrangement of contract; "we received a notice to vacate the premises"; "he gave notice two months before he moved" -07212874 10 n 01 warning 2 001 @ 07212424 n 0000 | notification of something, usually in advance; "they gave little warning of their arrival"; "she had only had four days' warning before leaving Berlin" -07213079 10 n 03 dismissal 0 dismission 0 pink_slip 0 002 @ 07212612 n 0000 ~ 07276414 n 0000 | official notice that you have been fired from your job -07213232 10 n 02 revelation 1 divine_revelation 0 002 @ 07212190 n 0000 + 02144243 v 0101 | communication of knowledge to man by a divine or supernatural agency -07213395 10 n 03 disclosure 0 revelation 2 revealing 0 012 @ 07160883 n 0000 + 00933821 v 0305 + 00933821 v 0102 ~ 06805297 n 0000 ~ 07213717 n 0000 ~ 07214267 n 0000 ~ 07214432 n 0000 ~ 07214642 n 0000 ~ 07214894 n 0000 ~ 07214994 n 0000 ~ 07215185 n 0000 ~ 07215377 n 0000 | the speech act of making something evident -07213717 10 n 01 display 2 004 @ 07213395 n 0000 ~ 07213889 n 0000 ~ 07213989 n 0000 ~ 07214150 n 0000 | behavior that makes your feelings public; "a display of emotion" -07213889 10 n 01 histrionics 1 001 @ 07213717 n 0000 | a deliberate display of emotion for effect -07213989 10 n 01 production 1 001 @ 07213717 n 0000 | a display that is exaggerated or unduly complicated; "she tends to make a big production out of nothing" -07214150 10 n 01 sackcloth_and_ashes 0 001 @ 07213717 n 0000 | a display of extreme remorse or repentance or grief -07214267 10 n 02 divulgence 0 divulgement 0 003 @ 07213395 n 0000 + 00933821 v 0208 + 00933821 v 0108 | the act of disclosing something that was secret or private -07214432 10 n 01 discovery 0 008 @ 07213395 n 0000 + 02286687 v 010a + 02154508 v 0104 + 02128066 v 0101 + 01637982 v 0101 + 00933821 v 0106 + 00598954 v 0108 + 00721437 v 0101 | something that is discovered -07214642 10 n 01 discovery 1 002 @ 07213395 n 0000 ;c 08441203 n 0000 | (law) compulsory pretrial disclosure of documents relevant to a case; enables one side in a litigation to elicit information from the other side concerning the facts in the case -07214894 10 n 01 giveaway 0 002 @ 07213395 n 0000 + 00933821 v 010a | an unintentional disclosure -07214994 10 n 02 informing 1 ratting 0 003 @ 07213395 n 0000 + 00841986 v 0205 + 00833199 v 0101 | to furnish incriminating evidence to an officer of the law (usually in return for favors) -07215185 10 n 02 leak 0 news_leak 0 004 @ 07213395 n 0000 + 00496259 a 0102 + 00936169 v 0101 + 00937023 v 0101 | unauthorized (especially deliberate) disclosure of confidential information -07215377 10 n 01 exposure 0 004 @ 07213395 n 0000 + 00933821 v 0107 ~ 07215568 n 0000 ~ 07215816 n 0000 | the disclosure of something secret; "they feared exposure of their campaign plans" -07215568 10 n 02 expose 0 unmasking 0 005 @ 07215377 n 0000 + 01358573 v 0201 + 00935631 v 0201 + 00933821 v 0107 + 00853195 v 0102 | the exposure of an impostor or a fraud; "he published an expose of the graft and corruption in city government" -07215816 10 n 01 muckraking 0 002 @ 07215377 n 0000 + 00934744 v 0101 | the exposure of scandal (especially about public figures) -07215948 10 n 01 admission 0 003 @ 06628861 n 0000 + 00817311 v 0101 ~ 07216083 n 0000 | an acknowledgment of the truth of something -07216083 10 n 01 confession 0 004 @ 07215948 n 0000 + 00818553 v 0103 + 00819508 v 0101 ~ 07216228 n 0000 | an admission of misdeeds or faults -07216228 10 n 02 self-accusation 0 self-condemnation 0 002 @ 07216083 n 0000 @ 07234230 n 0000 | an admission that you have failed to do or be something you know you should do or be -07216412 10 n 01 concession 1 005 @ 07175241 n 0000 ~ 07216615 n 0000 ~ 07216761 n 0000 ~ 07217117 n 0000 ~ 07217260 n 0000 | a point conceded or yielded; "they won all the concessions they asked for" -07216615 10 n 01 sop 0 002 @ 07216412 n 0000 + 02284429 v 0101 | a concession given to mollify or placate; "the offer was a sop to my feelings" -07216761 10 n 02 stipulation 1 judicial_admission 0 002 @ 07216412 n 0000 ;c 08441203 n 0000 | (law) an agreement or concession made by parties in a judicial proceeding (or by their attorneys) relating to the business before the court; must be in writing unless they are part of the court record; "a stipulation of fact was made in order to avoid delay" -07217117 10 n 01 takeaway 0 001 @ 07216412 n 0000 | a concession made by a labor union to a company that is trying to lower its expenditures -07217260 10 n 01 wage_concession 0 001 @ 07216412 n 0000 | an agreement to raise wages -07217349 10 n 03 presentation 2 introduction 1 intro 0 006 @ 07212190 n 0000 + 00901103 v 0201 + 00901651 v 0101 + 00901103 v 0102 ~ 07217579 n 0000 ~ 07217673 n 0000 | formally making a person known to another or to the public -07217579 10 n 01 debut 0 001 @ 07217349 n 0000 | the presentation of a debutante in society -07217673 10 n 01 reintroduction 0 002 @ 07217349 n 0000 + 00901464 v 0101 | an act of renewed introduction -07217782 10 n 01 briefing 0 003 @ 07212190 n 0000 ;c 08199025 n 0000 + 00831273 v 0101 | detailed instructions, as for a military operation -07217924 10 n 02 report 1 account 5 011 @ 07212190 n 0000 + 00967098 v 0101 + 00965035 v 0101 ~ 06467445 n 0000 ~ 07138504 n 0000 ~ 07138736 n 0000 ~ 07218299 n 0000 ~ 07220466 n 0000 ~ 07220586 n 0000 ~ 07220773 n 0000 ~ 07223170 n 0000 | the act of informing by verbal report; "he heard reports that they were causing trouble"; "by all accounts they were a happy couple" -07218299 10 n 01 megillah 1 002 @ 07217924 n 0000 ;c 06951067 n 0000 | (Yiddish) a long boring tediously detailed account; "he insisted on giving us the whole megillah" -07218470 10 n 03 report 3 study 0 written_report 0 011 @ 06470073 n 0000 + 00966809 v 0101 + 00965035 v 0101 ~ 07219162 n 0000 ~ 07219297 n 0000 ~ 07219530 n 0000 ~ 07219636 n 0000 ~ 07219751 n 0000 ~ 07219923 n 0000 ~ 07220045 n 0000 ~ 07220178 n 0000 | a written document describing the findings of some individual or group; "this accords with the recent study by Hill and Dale" -07218853 10 n 01 skinny 0 001 @ 06634376 n 0000 | confidential information about a topic or person; "he wanted the inside skinny on the new partner" -07219004 10 n 01 stuff 1 001 @ 06634376 n 0000 | information in some unspecified form; "it was stuff I had heard before"; "there's good stuff in that book" -07219162 10 n 01 assay 0 001 @ 07218470 n 0000 | a written report of the results of an analysis of the composition of some substance -07219297 10 n 01 case_study 0 002 @ 07218470 n 0000 ;c 08059412 n 0000 | a careful study of some social unit (as a corporation or division within a corporation) that attempts to determine what factors led to its success or failure -07219530 10 n 02 white_book 0 white_paper 0 001 @ 07218470 n 0000 | a government report; bound in white -07219636 10 n 01 blue_book 1 001 @ 07218470 n 0000 | a report published by the British government; bound in blue -07219751 10 n 01 green_paper 0 002 @ 07218470 n 0000 ;r 08860123 n 0000 | a preliminary report of government proposals that is published in order to stimulate discussion -07219923 10 n 01 progress_report 0 001 @ 07218470 n 0000 | a report of work accomplished during a specified time period -07220045 10 n 01 position_paper 0 001 @ 07218470 n 0000 | a report that explains or justifies or recommends some particular policy -07220178 10 n 01 medical_report 0 001 @ 07218470 n 0000 | a report of the results of a medical examination of a patient -07220300 10 n 02 report_card 0 report 4 001 @ 06634376 n 0000 | a written evaluation of a student's scholarship and deportment; "his father signed his report card" -07220466 10 n 01 debriefing 0 003 @ 07217924 n 0000 @ 07193958 n 0000 + 00831476 v 0101 | report of a mission or task -07220586 10 n 01 anecdote 0 005 @ 07217924 n 0000 + 00495916 a 0101 + 03044331 a 0101 + 09793352 n 0101 + 00495916 a 0103 | short account of an incident (especially a biographical one) -07220773 10 n 03 narration 0 recital 1 yarn 0 009 @ 07217924 n 0000 + 00954038 v 0301 + 00953216 v 0204 + 00954271 v 0101 + 00953216 v 0102 %p 06394701 n 0000 %p 06396930 n 0000 %p 06398401 n 0000 ~ 07222823 n 0000 | the act of giving an account describing incidents or a course of events; "his narration was hesitant" -07221094 10 n 04 narrative 0 narration 1 story 3 tale 0 012 @ 06598915 n 0000 + 00952524 v 0401 + 00954271 v 0201 + 00953216 v 0202 ~ 06374148 n 0000 ~i 07221623 n 0000 ~ 07221939 n 0000 ~ 07222050 n 0000 ~ 07222433 n 0000 ~ 07222581 n 0000 ~ 07222728 n 0000 + 00953216 v 0401 | a message that tells the particulars of an act or occurrence or course of events; presented in writing or drama or cinema or as a radio or television program; "his narrative was interesting"; "Disney's stories entertain adults as well as children" -07221623 10 n 01 Canterbury_Tales 0 001 @i 07221094 n 0000 | an uncompleted series of tales written after 1387 by Geoffrey Chaucer -07221756 10 n 01 recital 4 002 @ 06514093 n 0000 + 00953216 v 0104 | a detailed account or description of something; "he was forced to listen to a recital of his many shortcomings" -07221939 10 n 01 tall_tale 0 001 @ 07221094 n 0000 | an improbable (unusual or incredible or fanciful) story -07222050 10 n 02 folktale 0 folk_tale 0 004 @ 07221094 n 0000 #p 05985602 n 0000 -c 03374102 n 0000 ~i 07222230 n 0000 | a tale circulated by word of mouth among the common folk -07222230 10 n 03 Arabian_Nights'_Entertainment 0 Arabian_Nights 0 Thousand_and_One_Nights 0 002 @i 07222050 n 0000 -c 02694279 n 0000 | a collection of folktales in Arabic dating from the 10th century -07222433 10 n 02 sob_story 0 sob_stuff 0 001 @ 07221094 n 0000 | a sentimental story (or drama) of personal distress; designed to arouse sympathy -07222581 10 n 03 fairytale 0 fairy_tale 0 fairy_story 0 002 @ 07221094 n 0000 -c 09590205 n 0000 | a story about fairies; told to amuse children -07222728 10 n 01 nursery_rhyme 0 001 @ 07221094 n 0000 | a tale in rhymed verse for children -07222823 10 n 03 relation 1 telling 1 recounting 0 004 @ 07220773 n 0000 + 00953216 v 0303 + 00953216 v 0201 + 00953058 v 0101 | an act of narration; "he was the hero according to his own relation"; "his endless recounting of the incident eventually became unbearable" -07223094 10 n 01 earful 1 001 @ 07223170 n 0000 | an outpouring of gossip -07223170 10 n 03 gossip 1 comment 2 scuttlebutt 0 007 @ 07217924 n 0000 + 01041954 v 0102 ~ 07223094 n 0000 ~ 07223450 n 0000 ~ 07223635 n 0000 ~ 07223811 n 0000 ~ 07223985 n 0000 | a report (often malicious) about the behavior of other people; "the divorce caused much gossip" -07223450 10 n 03 rumor 0 rumour 0 hearsay 0 003 @ 07223170 n 0000 + 01042228 v 0202 + 01042228 v 0101 | gossip (usually a mixture of truth and untruth) passed around by word of mouth -07223635 10 n 03 grapevine 0 pipeline 0 word_of_mouth 0 001 @ 07223170 n 0000 | gossip spread by spoken communication; "the news of their affair was spread by word of mouth" -07223811 10 n 03 scandal 0 dirt 0 malicious_gossip 0 003 @ 07223170 n 0000 + 01810447 v 0103 + 01810447 v 0104 | disgraceful gossip about the private lives of other people -07223985 10 n 02 talk 1 talk_of_the_town 0 003 @ 07223170 n 0000 + 02384077 a 0106 + 00937208 v 0103 | idle gossip or rumor; "there has been talk about you lately" -07224151 10 n 01 warning 0 012 @ 07212190 n 0000 + 00870213 v 0101 ~ 07224481 n 0000 ~ 07224684 n 0000 ~ 07224774 n 0000 ~ 07225167 n 0000 ~ 07225333 n 0000 ~ 07225450 n 0000 ~ 07225577 n 0000 ~ 07225696 n 0000 ~ 07225857 n 0000 ~ 07226015 n 0000 | a message informing of danger; "a warning that still more bombs could explode" -07224481 10 n 01 wake-up_call 1 001 @ 07224151 n 0000 | a warning to take action concerning something that was overlooked or neglected; "the bombing was a wake-up call to strengthen domestic security" -07224684 10 n 01 alarmism 0 002 @ 07224151 n 0000 + 09781504 n 0101 | needless warnings -07224774 10 n 02 alert 0 alerting 0 003 @ 07224151 n 0000 + 00872414 v 0102 ~i 07224923 n 0000 | a warning serves to make you more alert to danger -07224923 10 n 02 Emergency_Alert_System 0 EAS 0 001 @i 07224774 n 0000 | a federal warning system that is activated by FEMA; enables the President to take over the United States airwaves to warn the whole country of major catastrophic events -07225167 10 n 02 caution 0 caveat 1 003 @ 07224151 n 0000 + 01771124 a 0102 + 00871195 v 0101 | a warning against certain acts; "a caveat against unfair practices" -07225333 10 n 01 false_alarm 0 001 @ 07224151 n 0000 | a warning that is given about something that fails to occur -07225450 10 n 02 forewarning 0 premonition 0 002 @ 07224151 n 0000 + 00870942 v 0101 | an early warning about a future event -07225577 10 n 01 heads-up 0 001 @ 07224151 n 0000 | a warning message; "he sent a heads-up to the District Attorney" -07225696 10 n 01 strategic_warning 0 003 @ 07224151 n 0000 ;c 08199025 n 0000 ~ 07226330 n 0000 | (military) a warning prior to the start of a threatening act -07225857 10 n 01 tactical_warning 0 003 @ 07224151 n 0000 ;c 08199025 n 0000 ~ 07226151 n 0000 | (military) a warning after the initiation of a hostile act -07226015 10 n 01 threat 0 001 @ 07224151 n 0000 | a warning that something unpleasant is imminent; "they were under threat of arrest" -07226151 10 n 01 warning_of_attack 0 002 @ 07225857 n 0000 ;c 08199025 n 0000 | a warning to national policy makers that an enemy intends to launch an attack in the near future -07226330 10 n 01 warning_of_war 0 002 @ 07225696 n 0000 ;c 08199025 n 0000 | a warning to national policy makers that an enemy intends war or is preparing for war and is on a course that increases the risk of war -07226545 10 n 01 promise 0 009 @ 07160883 n 0000 @ 06684383 n 0000 + 00884317 v 0101 + 00884011 v 0101 ~ 07226841 n 0000 ~ 07227301 n 0000 ~ 07228211 n 0000 ~ 07228349 n 0000 ~ 07228630 n 0000 | a verbal commitment by one person to another agreeing to do (or not to do) something in the future -07226841 10 n 01 oath 2 003 @ 07226545 n 0000 ~ 07227055 n 0000 ~i 07227158 n 0000 | a solemn promise, usually invoking a divine witness, regarding your future acts or behavior; "they took an oath of allegiance" -07227055 10 n 01 bayat 0 002 @ 07226841 n 0000 ;c 06988057 n 0000 | an oath of allegiance to an emir -07227158 10 n 01 Hippocratic_oath 0 001 @i 07226841 n 0000 | an oath taken by physicians to observe medical ethics deriving from Hippocrates -07227301 10 n 03 parole 0 word 1 word_of_honor 0 001 @ 07226545 n 0000 | a promise; "he gave his word" -07227406 10 n 01 assurance 0 003 @ 06722453 n 0000 + 00776268 v 0101 ~ 07227589 n 0000 | a statement intended to inspire confidence; "the President's assurances were not respected" -07227589 10 n 01 clean_bill_of_health 0 001 @ 07227406 n 0000 | an assurance that someone is healthy or something is in good condition; "the doctor gave him a clean bill of health" -07227772 10 n 02 assurance 1 pledge 0 008 @ 06684383 n 0000 + 00884946 v 0201 + 00884540 v 0201 + 00884011 v 0102 ~ 06685456 n 0000 ~ 06686174 n 0000 ~ 07228105 n 0000 ~ 07228751 n 0000 | a binding commitment to do or give or refrain from something; "an assurance of help when needed"; "signed a pledge never to reveal the secret" -07228105 10 n 02 plight 0 troth 1 002 @ 07227772 n 0000 + 00884540 v 0102 | a solemn pledge of fidelity -07228211 10 n 03 betrothal 0 troth 2 engagement 0 003 @ 07226545 n 0000 + 00886602 v 0302 ~ 07228531 n 0000 | a mutual promise to marry -07228349 10 n 01 pinning 0 001 @ 07226545 n 0000 | a mutual promise of a couple not to date anyone else; on college campuses it was once signaled by the giving of a fraternity pin -07228531 10 n 01 ringing 0 001 @ 07228211 n 0000 | the giving of a ring as a token of engagement -07228630 10 n 01 rain_check 1 001 @ 07226545 n 0000 | a promise that an unaccepted offer will be renewed in the future -07228751 10 n 01 vow 0 003 @ 07227772 n 0000 + 00886978 v 0101 + 00886759 v 0101 | a solemn pledge (to oneself or to another or to a deity) to do something or to behave in a certain manner; "they took vows of poverty" -07228971 10 n 01 thanks 0 004 @ 06628861 n 0000 ~ 07229111 n 0000 ~ 07229245 n 0000 ~ 07229341 n 0000 | an acknowledgment of appreciation -07229111 10 n 01 appreciation 0 001 @ 07228971 n 0000 | an expression of gratitude; "he expressed his appreciation in a short note" -07229245 10 n 01 thank_you 0 001 @ 07228971 n 0000 | a conversational expression of gratitude -07229341 10 n 02 bow 0 curtain_call 0 001 @ 07228971 n 0000 | an appearance by actors or performers at the end of the concert or play in order to acknowledge the applause of the audience -07229530 10 n 04 boast 0 boasting 0 self-praise 0 jactitation 0 006 @ 07160883 n 0000 + 00883226 v 0101 ~ 07229747 n 0000 ~ 07230089 n 0000 ~ 07230227 n 0000 ~ 07230320 n 0000 | speaking of yourself in superlatives -07229747 10 n 07 brag 0 bragging 0 crow 0 crowing 0 vaporing 0 line-shooting 0 gasconade 0 007 @ 07229530 n 0000 + 00883226 v 070a + 00857517 v 0401 + 00883635 v 0403 + 00883635 v 0303 + 01890752 a 0104 + 00883226 v 0105 | an instance of boastful talk; "his brag is worse than his fight"; "whenever he won we were exposed to his gasconade" -07230089 10 n 04 braggadocio 0 bluster 1 rodomontade 0 rhodomontade 0 002 @ 07229530 n 0000 + 00883226 v 0208 | vain and empty boasting -07230227 10 n 01 vaunt 0 002 @ 07229530 n 0000 + 00883226 v 0109 | extravagant self-praise -07230320 10 n 01 self-assertion 0 001 @ 07229530 n 0000 | the act of putting forth your own opinions in a boastful or inconsiderate manner that implies you feel superior to others -07230502 10 n 01 naming 0 010 @ 07160883 n 0000 + 00947439 v 0101 + 01024190 v 0105 + 01028748 v 0101 + 01026095 v 0101 + 00652346 v 0107 ~ 07230796 n 0000 ~ 07230959 n 0000 ~ 07231048 n 0000 ~ 07231199 n 0000 | the verbal act of naming; "the part he failed was the naming of state capitals" -07230796 10 n 01 acrophony 0 001 @ 07230502 n 0000 | naming a letter of the alphabet by using a word whose initial sound is the sound represented by that letter -07230959 10 n 01 numeration 1 002 @ 07230502 n 0000 + 00626768 v 0101 | naming numbers -07231048 10 n 02 indication 1 denotation 0 003 @ 07230502 n 0000 + 00932161 v 0201 + 00923793 v 0101 | the act of indicating or pointing out by name -07231199 10 n 01 specification 1 002 @ 07230502 n 0000 + 00677683 v 0102 | naming explicitly -07231294 10 n 01 challenge 0 009 @ 07160883 n 0000 + 00868591 v 0101 ~ 07231532 n 0000 ~ 07231728 n 0000 ~ 07231840 n 0000 ~ 07231943 n 0000 ~ 07232053 n 0000 ~ 07232189 n 0000 ~ 07232275 n 0000 | a call to engage in a contest or fight -07231532 10 n 02 dare 0 daring 0 004 @ 07231294 n 0000 + 00868097 v 0202 + 02545045 v 0101 + 00868097 v 0102 | a challenge to do something dangerous or foolhardy; "he could never refuse a dare" -07231728 10 n 01 confrontation 1 003 @ 07231294 n 0000 + 02701775 a 0101 + 01078783 v 0101 | a bold challenge -07231840 10 n 01 call-out 0 002 @ 07231294 n 0000 + 00868979 v 0101 | a challenge to a fight or duel -07231943 10 n 01 defiance 0 003 @ 07231294 n 0000 + 00695523 a 0101 + 00868097 v 0101 | a hostile challenge -07232053 10 n 02 calling_into_question 0 demand_for_explanation 0 001 @ 07231294 n 0000 | a challenge to defend what someone has said -07232189 10 n 01 demand_for_identification 0 001 @ 07231294 n 0000 | as by a sentry -07232275 10 n 02 gauntlet 0 gantlet 0 001 @ 07231294 n 0000 | to offer or accept a challenge; "threw down the gauntlet"; "took up the gauntlet" -07232421 10 n 01 explanation 1 005 @ 07160883 n 0000 + 00893435 v 0102 + 00939277 v 0101 ~ 07232655 n 0000 ~ 07232811 n 0000 | the act of explaining; making something plain or intelligible; "I heard his explanation of the accident" -07232655 10 n 01 elucidation 1 003 @ 07232421 n 0000 + 00939857 v 0103 + 00621058 v 010c | an act of explaining that serves to clear up and cast light on -07232811 10 n 01 explication 1 002 @ 07232421 n 0000 + 00939277 v 0102 | the act of making clear or removing obscurity from the meaning of a word or symbol or expression etc. -07232988 10 n 02 denunciation 0 denouncement 0 008 @ 07160883 n 0000 + 02508245 v 0204 + 00841580 v 0201 ~ 07233214 n 0000 ~ 07233304 n 0000 ~ 07233415 n 0000 ~ 07233542 n 0000 ~ 07233634 n 0000 | a public act of denouncing -07233214 10 n 01 excoriation 0 002 @ 07232988 n 0000 + 00864159 v 0105 | severe censure -07233304 10 n 02 fulmination 0 diatribe 0 002 @ 07232988 n 0000 + 00841767 v 0101 | thunderous verbal attack -07233415 10 n 03 tirade 0 philippic 0 broadside 1 002 @ 07232988 n 0000 @ 07242324 n 0000 | a speech of violent denunciation -07233542 10 n 01 damnation 0 002 @ 07232988 n 0000 + 00865958 v 0103 | the act of damning -07233634 10 n 03 execration 0 condemnation 1 curse 1 005 @ 07232988 n 0000 + 00865958 v 0301 + 00864910 v 0102 ~ 07233863 n 0000 ~ 07233996 n 0000 | an appeal to some supernatural power to inflict evil on someone or some group -07233863 10 n 01 anathema 0 002 @ 07233634 n 0000 + 00864910 v 0106 | a formal ecclesiastical curse accompanied by excommunication -07233996 10 n 02 imprecation 0 malediction 0 003 @ 07233634 n 0000 + 00865958 v 0208 + 00865958 v 0107 | the act of calling down a curse that invokes evil (and usually serves as an insult); "he suffered the imprecations of the mob" -07234230 10 n 02 accusation 0 accusal 0 016 @ 06561942 n 0000 + 00843468 v 0202 + 00842989 v 0201 + 03041739 a 0101 + 00842989 v 0101 ~ 07216228 n 0000 ~ 07234657 n 0000 ~ 07236077 n 0000 ~ 07236307 n 0000 ~ 07236957 n 0000 ~ 07237038 n 0000 ~ 07237409 n 0000 ~ 07237561 n 0000 ~ 07237647 n 0000 ~ 07237758 n 0000 ~ 07238102 n 0000 | a formal charge of wrongdoing brought against a person; the act of imputing blame or guilt -07234657 10 n 01 recrimination 0 001 @ 07234230 n 0000 | mutual accusations -07234735 10 n 01 recital 0 001 @ 06722453 n 0000 | a detailed statement giving facts and figures; "his wife gave a recital of his infidelities" -07234881 10 n 03 recitation 0 recital 2 reading 2 007 @ 07241837 n 0000 + 00626428 v 0301 + 10511649 n 0201 + 01703454 v 0201 + 01703454 v 0101 + 01051364 v 0102 ~ 07242470 n 0000 | a public instance of reciting or repeating (from memory) something prepared in advance; "the program included songs and recitations of well-loved poems" -07235218 10 n 01 recitation 1 002 @ 06365467 n 0000 + 00945255 v 0101 | written matter that is recited from memory -07235335 10 n 02 indictment 0 bill_of_indictment 0 005 @ 06479665 n 0000 + 02521284 v 0101 %p 06561942 n 0000 ~ 07235574 n 0000 ~ 07235696 n 0000 | a formal document written for a prosecuting attorney charging a person with some offense -07235574 10 n 02 murder_charge 0 murder_indictment 0 001 @ 07235335 n 0000 | an indictment charging someone with murder -07235696 10 n 01 true_bill 0 001 @ 07235335 n 0000 | an indictment endorsed by a grand jury -07235790 10 n 01 impeachment 0 002 @ 06479665 n 0000 + 00844744 v 0101 | a formal document charging a public official with misconduct in office -07235936 10 n 01 arraignment 0 002 @ 06479665 n 0000 + 02497992 v 0101 | a legal document calling someone to court to answer an indictment -07236077 10 n 01 allegation 0 005 @ 07234230 n 0000 ;c 08441203 n 0000 ~ 07236466 n 0000 ~ 07236627 n 0000 ~ 07236759 n 0000 | (law) a formal accusation against somebody (often in a court of law); "an allegation of malpractice" -07236307 10 n 01 blame_game 0 001 @ 07234230 n 0000 | accusations exchanged among people who refuse to accept sole responsibility for some undesirable event -07236466 10 n 01 grievance 1 001 @ 07236077 n 0000 | an allegation that something imposes an illegal obligation or denies some legal right or causes injustice -07236627 10 n 02 lodgment 0 lodgement 0 002 @ 07236077 n 0000 + 00869931 v 0202 | bringing a charge or accusation against someone -07236759 10 n 01 plaint 1 002 @ 07236077 n 0000 ;r 08860123 n 0000 | (United Kingdom) a written statement of the grounds of complaint made to court of law asking for the grievance to be redressed -07236957 10 n 01 imprecation 1 001 @ 07234230 n 0000 | a slanderous accusation -07237038 10 n 01 imputation 0 003 @ 07234230 n 0000 + 00726784 v 0101 ~ 07237234 n 0000 | a statement attributing something dishonest (especially a criminal offense); "he denied the imputation" -07237234 10 n 02 finger-pointing 0 fingerpointing 0 001 @ 07237038 n 0000 | the imputation of blame; "they want all the finger-pointing about intelligence failures to stop" -07237409 10 n 01 indictment 1 002 @ 07234230 n 0000 + 02521284 v 0101 | an accusation of wrongdoing; "the book is an indictment of modern philosophy" -07237561 10 n 01 information 2 001 @ 07234230 n 0000 | formal accusation of a crime -07237647 10 n 01 preferment 0 001 @ 07234230 n 0000 | the act of making accusations; "preferment of charges" -07237758 10 n 03 incrimination 0 inculpation 0 blame 1 007 @ 07234230 n 0000 + 00842538 v 0301 + 00727991 v 0301 + 02636921 v 0203 + 02636921 v 0101 + 00842989 v 0103 ~ 07238589 n 0000 | an accusation that you are responsible for some lapse or misdeed; "his incrimination was based on my testimony"; "the police laid the blame on the driver" -07238102 10 n 01 implication 0 005 @ 07234230 n 0000 + 02636921 v 0102 + 02677332 v 0101 ~ 07238308 n 0000 ~ 07238455 n 0000 | an accusation that brings into intimate and usually incriminating connection -07238308 10 n 02 unspoken_accusation 0 veiled_accusation 0 001 @ 07238102 n 0000 | an accusation that is understood without needing to be spoken -07238455 10 n 02 insinuation 0 innuendo 0 002 @ 07238102 n 0000 + 00927711 v 0103 | an indirect (and usually malicious) implication -07238589 10 n 01 self-incrimination 0 001 @ 07237758 n 0000 | an accusation that incriminates yourself -07238694 10 n 02 address 0 speech 1 018 @ 07160883 n 0000 + 00989201 v 0202 + 00990008 v 0201 + 00989201 v 0101 %p 06394701 n 0000 %p 06396930 n 0000 %p 06398401 n 0000 ~ 07239183 n 0000 ~ 07239327 n 0000 ~ 07239428 n 0000 ~i 07239550 n 0000 ~ 07239788 n 0000 ~ 07240077 n 0000 ~ 07240549 n 0000 ~ 07240763 n 0000 ~ 07241205 n 0000 ~ 07241837 n 0000 ~ 07243837 n 0000 | the act of delivering a formal spoken communication to an audience; "he listened to an address on minor Roman poets" -07239183 10 n 01 allocution 0 002 @ 07238694 n 0000 ;c 06170498 n 0000 | (rhetoric) a formal or authoritative address that advises or exhorts -07239327 10 n 01 colloquium 0 001 @ 07238694 n 0000 | an address to an academic meeting or seminar -07239428 10 n 01 dithyramb 1 002 @ 07238694 n 0000 @ 06362953 n 0000 | a wildly enthusiastic speech or piece of writing -07239550 10 n 01 Gettysburg_Address 0 001 @i 07238694 n 0000 | a three-minute address by Abraham Lincoln during the American Civil War at the dedication of a national cemetery on the site of the Battle of Gettysburg (November 19, 1863) -07239788 10 n 01 impromptu 0 001 @ 07238694 n 0000 | an extemporaneous speech or remark; "a witty impromptu must not sound premeditated" -07239927 10 n 01 impromptu 2 001 @ 07044917 n 0000 | a short musical passage that seems to have been made spontaneously without advance preparation -07240077 10 n 02 inaugural_address 0 inaugural 0 003 @ 07238694 n 0000 #p 00243373 n 0000 ;r 09044862 n 0000 | an address delivered at an inaugural ceremony (especially by a United States president) -07240278 10 n 01 keynote 1 003 @ 06599788 n 0000 #p 07240417 n 0000 + 00768265 v 0101 | the principal theme in a speech or literary work -07240417 10 n 02 keynote_speech 0 keynote_address 0 002 @ 07241205 n 0000 %p 07240278 n 0000 | a speech setting forth the keynote -07240549 10 n 03 lecture 0 public_lecture 0 talk 2 004 @ 07238694 n 0000 + 00830761 v 0302 + 00594146 n 0101 + 00830761 v 0101 | a speech that is open to the public; "he attended a lecture on telecommunications" -07240763 10 n 01 litany 1 001 @ 07238694 n 0000 | any long and tedious address or recital; "the patient recited a litany of complaints"; "a litany of failures" -07240925 10 n 03 nominating_speech 0 nominating_address 0 nomination 0 003 @ 07241205 n 0000 ;c 06148148 n 0000 + 00879540 v 0301 | an address (usually at a political convention) proposing the name of a candidate to run for election; "the nomination was brief and to the point" -07241205 10 n 01 oratory 0 010 @ 07238694 n 0000 + 02017933 a 0101 ~ 07240417 n 0000 ~ 07240925 n 0000 ~ 07241551 n 0000 ~ 07242324 n 0000 ~ 07242657 n 0000 ~ 07243306 n 0000 ~ 07243382 n 0000 ~ 07243565 n 0000 | addressing an audience formally (usually a long and rhetorical address and often pompous); "he loved the sound of his own oratory" -07241551 10 n 01 oration 0 003 @ 07241205 n 0000 %p 06399126 n 0000 ~ 07241723 n 0000 | an instance of oratory; "he delivered an oration on the decline of family values" -07241723 10 n 01 peroration 1 002 @ 07241551 n 0000 + 01051573 v 0101 | a flowery and highly rhetorical oration -07241837 10 n 04 public_speaking 0 speechmaking 0 speaking 0 oral_presentation 0 004 @ 07238694 n 0000 + 00989201 v 0302 ~ 07234881 n 0000 ~ 07242104 n 0000 | delivering an address to a public audience; "people came to see the candidates and hear the speechmaking" -07242104 10 n 03 debate 0 disputation 0 public_debate 0 003 @ 07241837 n 0000 + 00775156 v 0202 + 00812580 v 0101 | the formal presentation of a stated proposition and the opposition to it (usually followed by a vote) -07242324 10 n 01 declamation 0 005 @ 07241205 n 0000 + 00910364 v 0101 ~ 07233415 n 0000 ~ 07242912 n 0000 ~ 07243193 n 0000 | vehement oratory -07242470 10 n 01 declamation 1 002 @ 07234881 n 0000 + 01051364 v 0101 | recitation of a speech from memory with studied gestures and intonation as an exercise in elocution or rhetoric -07242657 10 n 01 epideictic_oratory 0 001 @ 07241205 n 0000 | a type of oratory used to eulogize or condemn a person or group of people; "Pericles' funeral oration for Athenians killed in the Peloponnesian War is a famous example of epideictic oratory" -07242912 10 n 03 harangue 0 rant 1 ranting 0 005 @ 07242324 n 0000 + 01051956 v 0301 + 01051956 v 0201 + 00990249 v 0101 ~ 07243114 n 0000 | a loud bombastic declamation expressed with strong emotion -07243114 10 n 01 screed 2 001 @ 07242912 n 0000 | a long monotonous harangue -07243193 10 n 01 raving 0 002 @ 07242324 n 0000 + 01051956 v 0106 | declaiming wildly; "the raving of maniacs" -07243306 10 n 01 stump_speech 0 001 @ 07241205 n 0000 | political oratory -07243382 10 n 03 salutatory_address 0 salutatory_oration 0 salutatory 0 001 @ 07241205 n 0000 | an opening or welcoming statement (especially one delivered at graduation exercises) -07243565 10 n 04 valediction 0 valedictory_address 0 valedictory_oration 0 valedictory 0 003 @ 07241205 n 0000 + 01291098 a 0401 + 02822229 a 0401 | a farewell oration (especially one delivered during graduation exercises by an outstanding member of a graduating class) -07243837 10 n 03 sermon 0 discourse 2 preaching 0 010 @ 07238694 n 0000 ;c 01032368 n 0000 + 00828003 v 0301 + 00828374 v 0101 + 00828374 v 0102 ~ 07244154 n 0000 ~ 07244305 n 0000 ~i 07244433 n 0000 ~ 07244613 n 0000 ~ 07244949 n 0000 | an address of a religious nature (usually delivered during a church service) -07244154 10 n 01 baccalaureate 1 002 @ 07243837 n 0000 #p 07454758 n 0000 | a farewell sermon to a graduating class at their commencement ceremonies -07244305 10 n 02 kerygma 0 kerugma 0 001 @ 07243837 n 0000 | preaching the gospel of Christ in the manner of the early church -07244433 10 n 01 Sermon_on_the_Mount 0 003 @i 07243837 n 0000 %p 06301012 n 0000 %p 06457612 n 0000 | the first major discourse delivered by Jesus (Matthew 5-7 and Luke 6:20-49) -07244613 10 n 01 evangelism 0 007 @ 07243837 n 0000 + 10067305 n 0101 + 10067011 n 0101 + 00828227 v 0101 + 00828227 v 0102 + 00386390 v 0102 ~ 07244822 n 0000 | zealous preaching and advocacy of the gospel -07244822 10 n 01 televangelism 0 002 @ 07244613 n 0000 + 10698241 n 0101 | evangelism at a distance by the use of television -07244949 10 n 02 homily 0 preachment 0 005 @ 07243837 n 0000 + 00828003 v 0201 + 03073574 a 0101 + 03073420 a 0101 + 03073574 a 0102 | a sermon on a moral or religious topic -07245125 10 n 02 persuasion 0 suasion 0 011 @ 06252138 n 0000 + 00766418 v 0101 ! 07245686 n 0101 ~ 07012979 n 0000 ~ 07245472 n 0000 ~ 07245885 n 0000 ~ 07246036 n 0000 ~ 07246382 n 0000 ~ 07246469 n 0000 ~ 07246582 n 0000 ~ 07246932 n 0000 | the act of persuading (or attempting to persuade); communication intended to induce belief or action -07245472 10 n 01 arm-twisting 0 001 @ 07245125 n 0000 | persuasion by the use of direct personal pressure; "some gentle arm-twisting produced the desired result"; "no amount of arm-twisting will get me to agree" -07245686 10 n 01 dissuasion 0 003 @ 06252138 n 0000 + 00770141 v 0101 ! 07245125 n 0101 | persuading not to do or believe something; talking someone out of a belief or an intended course of action -07245885 10 n 03 electioneering 0 bell_ringing 0 canvassing 0 002 @ 07245125 n 0000 + 02414473 v 0101 | persuasion of voters in a political campaign -07246036 10 n 02 exhortation 0 incitement 0 004 @ 07245125 n 0000 + 00858781 v 0107 + 00765649 v 0104 ~ 07246215 n 0000 | the act of exhorting; an earnest attempt at persuasion -07246215 10 n 01 pep_talk 0 002 @ 07246036 n 0000 ;u 07075172 n 0000 | a speech of exhortation attempting to instill enthusiasm and determination in a team or staff -07246382 10 n 01 proselytism 0 001 @ 07245125 n 0000 | the practice of proselytizing -07246469 10 n 01 sloganeering 0 002 @ 07245125 n 0000 + 01698152 v 0101 | persuasion by means of empty slogans -07246582 10 n 02 suggestion 1 prompting 0 004 @ 07245125 n 0000 + 00771961 v 0201 + 00930806 v 0101 + 00875394 v 0102 | persuasion formulated as a suggestion -07246742 10 n 04 expostulation 0 remonstrance 0 remonstration 0 objection 1 003 @ 06252138 n 0000 + 00807461 v 0401 + 00773285 v 0101 | the act of expressing earnest opposition or protest -07246932 10 n 02 weapon 0 artillery 0 001 @ 07245125 n 0000 | a means of persuading or arguing; "he used all his conversational weapons" -07247071 10 n 04 promotion 0 publicity 0 promotional_material 0 packaging 0 010 @ 06598915 n 0000 #p 01112420 n 0000 + 00976653 v 0103 ~ 07247451 n 0000 ~ 07247925 n 0000 ~ 07248060 n 0000 ~ 07248507 n 0000 ~ 07248653 n 0000 ~ 07248801 n 0000 ~ 07249817 n 0000 | a message issued in behalf of some product or cause or idea or person or institution; "the packaging of new ideas" -07247451 10 n 01 buildup 0 001 @ 07247071 n 0000 | highly favorable publicity and praise; "his letter of recommendation gave her a terrific buildup" -07247602 10 n 01 sensationalism 1 005 @ 06598915 n 0000 + 02101942 a 0102 + 10579835 n 0101 = 02101580 a 0000 = 02102321 a 0000 | subject matter that is calculated to excite and please vulgar tastes -07247803 10 n 01 shocker 0 002 @ 06598915 n 0000 + 01783022 v 0101 | a sensational message (in a film or play or novel) -07247925 10 n 02 public_relations 0 PR 0 001 @ 07247071 n 0000 | a promotion intended to create goodwill for a person or institution -07248060 10 n 03 endorsement 1 indorsement 1 blurb 0 004 @ 07247071 n 0000 + 02453889 v 0203 + 02556817 v 0103 + 02453889 v 0102 | a promotional statement (as found on the dust jackets of books); "the author got all his friends to write blurbs for his book" -07248320 10 n 04 book_jacket 0 dust_cover 0 dust_jacket 0 dust_wrapper 0 001 @ 03590306 n 0000 | a paper jacket for a book; a jacket on which promotional information is usually printed -07248507 10 n 04 ballyhoo 0 hoopla 0 hype 0 plug 0 003 @ 07247071 n 0000 + 00976487 v 0401 + 00976365 v 0101 | blatant or sensational promotion -07248653 10 n 03 sales_talk 0 sales_pitch 0 pitch 0 002 @ 07247071 n 0000 + 02302817 v 0306 | promotion by means of an argument and demonstration -07248801 10 n 06 ad 0 advertisement 0 advertizement 0 advertising 0 advertizing 0 advert 0 013 @ 07247071 n 0000 + 00976653 v 0401 + 00976653 v 0302 + 00976653 v 0201 ~ 06266296 n 0000 ~ 06888674 n 0000 ~ 07249180 n 0000 ~ 07249336 n 0000 ~ 07249426 n 0000 ~ 07250034 n 0000 ~ 07250339 n 0000 ~ 07250868 n 0000 ~ 07251003 n 0000 | a public promotion of some product or service -07249180 10 n 01 advertorial 0 001 @ 07248801 n 0000 | an advertisement that is written and presented in the style of an editorial or journalistic report -07249336 10 n 01 mailer 0 001 @ 07248801 n 0000 | an advertisement that is sent by mail -07249426 10 n 02 newspaper_ad 0 newspaper_advertisement 0 002 @ 07248801 n 0000 ~ 07249585 n 0000 | a printed advertisement that is published in a newspaper -07249585 10 n 03 classified_ad 0 classified_advertisement 0 classified 0 002 @ 07249426 n 0000 ~ 07249932 n 0000 | a short ad in a newspaper or magazine (usually in small print) and appearing along with other ads of the same type -07249817 10 n 01 sales_promotion 0 001 @ 07247071 n 0000 | promotion that supplements or coordinates advertising -07249932 10 n 01 want_ad 0 001 @ 07249585 n 0000 | a newspaper advertisement stating what is wanted -07250034 10 n 02 commercial 0 commercial_message 0 003 @ 07248801 n 0000 + 00483146 a 0101 ~ 07250198 n 0000 | a commercially sponsored ad on radio or television -07250198 10 n 02 infomercial 0 informercial 0 001 @ 07250034 n 0000 | a television commercial presented in the form of a short documentary -07250339 10 n 08 circular 0 handbill 0 bill 2 broadside 0 broadsheet 0 flier 0 flyer 0 throwaway 1 008 @ 07248801 n 0000 + 02043190 v 0101 + 02454649 v 0101 + 02043665 v 0101 + 02454649 v 0102 + 02043665 v 0102 + 00968211 v 0103 ~ 07250727 n 0000 | an advertisement (usually printed on a page or in a leaflet) intended for wide distribution; "he mailed the circular to all subscribers" -07250727 10 n 01 stuffer 0 001 @ 07250339 n 0000 | an advertising circular that is enclosed with other material and (usually) sent by mail -07250868 10 n 01 teaser 1 001 @ 07248801 n 0000 | an advertisement that offers something free in order to arouse customers' interest -07251003 10 n 01 top_billing 0 002 @ 07248801 n 0000 #p 06793817 n 0000 | the advertisement of a star's name at the top of a theatrical poster -07251148 10 n 01 white_pages 0 001 @ 06423754 n 0000 | a telephone directory or section of a directory (usually printed on white paper) where the names of people are listed alphabetically along with their telephone numbers -07251373 10 n 01 yellow_pages 0 001 @ 06423754 n 0000 | a telephone directory or section of a directory (usually printed on yellow paper) where business products and services are listed alphabetically by field along with classified advertising -07251619 10 n 03 abetment 0 abettal 0 instigation 0 004 @ 06691442 n 0000 + 00771961 v 0303 + 02549211 v 0201 + 02549211 v 0101 | the verbal act of urging on -07251779 10 n 02 cheering 0 shouting 0 004 @ 06691442 n 0000 + 01817938 v 0101 + 00858568 v 0101 + 00858781 v 0101 | encouragement in the form of cheers from spectators; "it's all over but the shouting" -07251984 10 n 03 promotion 1 furtherance 0 advancement 0 005 @ 06691442 n 0000 + 02397637 v 0303 + 02554422 v 0202 + 02554922 v 0204 + 02554922 v 0101 | encouragement of the progress or growth or acceptance of something -07252206 10 n 02 fostering 0 fosterage 0 004 @ 06691442 n 0000 + 02554422 v 0201 + 02554422 v 0101 + 00908351 v 0101 | encouragement; aiding the development of something -07252378 10 n 07 goad 0 goading 0 prod 0 prodding 0 urging 0 spur 0 spurring 0 011 @ 06691442 n 0000 + 02554647 v 0701 + 01818835 v 0601 + 00765649 v 0501 + 01230710 v 0401 + 01230710 v 0301 + 01241073 v 0201 + 00851733 v 0202 + 00851733 v 0102 + 01818835 v 0102 + 01241073 v 0101 | a verbalization that encourages you to attempt something; "the ceaseless prodding got on his nerves" -07252764 10 n 02 provocation 0 incitement 1 004 @ 06691442 n 0000 + 01649999 v 0206 + 00794079 v 0101 ~ 07252967 n 0000 | needed encouragement; "the result was a provocation of vigorous investigation" -07252967 10 n 01 subornation 0 003 @ 07252764 n 0000 + 02581276 v 0101 ~ 07253142 n 0000 | underhandedly or improperly inducing someone to do something improper or unlawful -07253142 10 n 01 subornation_of_perjury 0 002 @ 07252967 n 0000 ;c 08441203 n 0000 | (law) inducing someone to make a false oath as part of a judicial proceeding; "to prove subordination of perjury you must prove the perjury and also prove that the perjured statement was procured by the accused suborner who knew that it would be false" -07253482 10 n 01 vote_of_confidence 0 001 @ 06691442 n 0000 | an expression of approval and encouragement; "they gave the chairman a vote of confidence" -07253637 10 n 01 discouragement 0 005 @ 06709533 n 0000 ! 06691442 n 0101 ~ 07253814 n 0000 ~ 07253948 n 0000 ~ 07254057 n 0000 | the expression of opposition and disapproval -07253814 10 n 01 disheartenment 0 002 @ 07253637 n 0000 + 01819387 v 0101 | a communication that leaves you disheartened or daunted -07253948 10 n 01 dissuasion 1 002 @ 07253637 n 0000 + 00770141 v 0101 | a communication that dissuades you -07254057 10 n 03 determent 0 deterrence 0 intimidation 0 005 @ 07253637 n 0000 + 01819554 v 0301 + 01781180 v 0301 + 00770141 v 0202 + 00770141 v 0102 | a communication that makes you afraid to try something -07254267 10 n 01 resignation 0 005 @ 07160883 n 0000 + 02382367 v 0104 + 02367032 v 0102 ~ 07254456 n 0000 ~ 07254594 n 0000 | the act of giving up (a claim or office or possession etc.) -07254456 10 n 02 abdication 0 stepping_down 0 002 @ 07254267 n 0000 + 02379198 v 0101 | a formal resignation and renunciation of powers -07254594 10 n 02 renunciation 0 renouncement 0 006 @ 07254267 n 0000 + 02379198 v 0202 + 00757544 v 0202 + 02379198 v 0102 + 02227487 v 0102 ~ 07254836 n 0000 | an act (spoken or written) declaring that something is surrendered or disowned -07254836 10 n 02 relinquishment 0 relinquishing 0 004 @ 07254594 n 0000 + 02227487 v 0204 + 02316304 v 0102 ~ 07255027 n 0000 | a verbal act of renouncing a claim or right or position etc. -07255027 10 n 03 giving_up 0 yielding 1 surrender 0 003 @ 07254836 n 0000 + 01115585 v 0301 + 00804476 v 0201 | a verbal act of admitting defeat -07255174 10 n 01 prohibition 1 003 @ 07205573 n 0000 ~ 07255299 n 0000 ~ 07255401 n 0000 | refusal to approve or assent to -07255299 10 n 01 interdiction 1 002 @ 07255174 n 0000 + 00795863 v 0103 | authoritative prohibition -07255401 10 n 04 ban 1 banning 0 forbiddance 0 forbidding 0 006 @ 07255174 n 0000 + 00795863 v 0401 + 00795863 v 0301 + 02493666 v 0101 + 00796392 v 0101 ~ 07255628 n 0000 | an official prohibition or edict against something -07255628 10 n 01 test_ban 0 001 @ 07255401 n 0000 | a ban on the testing of nuclear weapons that is mutually agreed to by countries that possess nuclear weapons -07255791 10 n 03 psychic_communication 0 psychical_communication 0 anomalous_communication 0 004 @ 00033020 n 0000 ~ 07255998 n 0000 ~ 07256230 n 0000 ~ 07256375 n 0000 | communication by paranormal means -07255998 10 n 02 telepathy 0 thought_transference 0 005 @ 07255791 n 0000 + 02109326 a 0101 + 10319580 n 0102 + 10697879 n 0101 + 00992804 v 0101 | apparent communication from one mind to another without using sensory perceptions -07256230 10 n 01 telegnosis 0 002 @ 07255791 n 0000 + 02109162 a 0101 | apparent knowledge of distant events without using sensory perceptions -07256375 10 n 03 psychic_phenomena 0 psychic_phenomenon 0 parapsychology 0 007 @ 07255791 n 0000 + 01599782 a 0301 + 10398806 n 0301 ~ 07256695 n 0000 ~ 07257045 n 0000 ~ 07257227 n 0000 ~ 07257393 n 0000 | phenomena that appear to contradict physical laws and suggest the possibility of causation by mental processes -07256695 10 n 05 clairvoyance 0 second_sight 0 extrasensory_perception 0 E.S.P. 0 ESP 0 004 @ 07256375 n 0000 + 01882474 a 0101 + 02109012 a 0101 ~ 07256932 n 0000 | apparent power to perceive things that are not present to the senses -07256932 10 n 02 precognition 0 foreknowledge 0 001 @ 07256695 n 0000 | knowledge of an event before it occurs -07257045 10 n 02 telekinesis 0 psychokinesis 0 002 @ 07256375 n 0000 + 01600041 a 0201 | the power to move something by thinking about it without the application of physical force -07257227 10 n 03 table_rapping 0 table_tapping 0 spirit_rapping 0 002 @ 07256375 n 0000 #p 08417920 n 0000 | alleged form of communication with spirits of the dead -07257393 10 n 04 table_tipping 0 table_tilting 0 table_turning 0 table_lifting 0 002 @ 07256375 n 0000 #p 08417920 n 0000 | manipulation of a table during a seance; attributed to spirits -07257582 10 n 08 windsock 0 wind_sock 0 sock 1 air_sock 0 air-sleeve 0 wind_sleeve 0 wind_cone 0 drogue 2 001 @ 06873571 n 0000 | a truncated cloth cone mounted on a mast; used (e.g., at airports) to show the direction of the wind -07257815 10 n 02 post 2 stake 0 005 @ 06873571 n 0000 + 01591940 v 0201 + 01591476 v 0201 ~ 07258109 n 0000 ~ 07258238 n 0000 | a pole or stake set up to mark something (as the start or end of a race track); "a pair of posts marked the goal"; "the corner of the lot was indicated by a stake" -07258109 10 n 01 starting_post 0 001 @ 07257815 n 0000 | a post marking the starting point of a race (especially a horse race) -07258238 10 n 01 winning_post 0 001 @ 07257815 n 0000 | the post at the end of a racecourse -07258332 10 n 03 reference_point 0 point_of_reference 0 reference 6 007 @ 07262579 n 0000 ~ 07259145 n 0000 ~ 07259319 n 0000 ~ 07259610 n 0000 ~ 07262108 n 0000 ~ 07262462 n 0000 ~ 07266178 n 0000 | an indicator that orients you generally; "it is used as a reference for comparing the heating and the electrical energy involved" -07258664 10 n 02 reference 7 source 1 004 @ 06589574 n 0000 + 00666722 v 0201 + 01705257 v 0101 + 00877083 v 0102 | a publication (or a passage from a publication) that is referred to; "he carried an armful of references back to his desk"; "he spent hours looking for the source of that quotation" -07258964 10 n 01 republication 0 003 @ 06589574 n 0000 ;c 06364641 n 0000 + 01746145 v 0101 | something that has been published again; a fresh publication (as of a literary work) -07259145 10 n 02 benchmark 2 bench_mark 2 001 @ 07258332 n 0000 | a surveyor's mark on a permanent object of predetermined position and elevation used as a reference point -07259319 10 n 01 landmark 0 002 @ 07258332 n 0000 ~ 07259438 n 0000 | a mark showing the boundary of a piece of land -07259438 10 n 03 merestone 0 meerestone 0 mearstone 0 001 @ 07259319 n 0000 | an old term for a landmark that consisted of a pile of stones surmounted by an upright slab -07259610 10 n 04 lubber's_line 0 lubber_line 0 lubber's_mark 0 lubber's_point 0 001 @ 07258332 n 0000 | a fixed line on a ship's compass indicating its heading -07259772 10 n 02 rule 1 linguistic_rule 0 005 @ 05835747 n 0000 ;c 06172789 n 0000 ~ 07259984 n 0000 ~ 07260175 n 0000 ~ 07260493 n 0000 | (linguistics) a rule describing (or prescribing) a linguistic practice -07259984 10 n 02 universal 1 linguistic_universal 0 002 @ 07259772 n 0000 ;c 06172789 n 0000 | (linguistics) a grammatical rule (or other linguistic feature) that is found in all languages -07260175 10 n 02 grammatical_rule 0 rule_of_grammar 0 002 @ 07259772 n 0000 ~ 07260332 n 0000 | a linguistic rule for the syntax of grammatical utterances -07260332 10 n 01 transformation 0 001 @ 07260175 n 0000 | a rule describing the conversion of one syntactic structure into another related syntactic structure -07260493 10 n 02 morphological_rule 0 rule_of_morphology 0 001 @ 07259772 n 0000 | a linguistic rule for the formation of words -07260623 10 n 04 standard 0 criterion 0 measure 3 touchstone 0 015 @ 13577171 n 0000 + 02295710 a 0201 + 02295710 a 0202 + 00467717 v 0101 + 00467717 v 0102 ~ 07261143 n 0000 ~ 07261300 n 0000 ~ 07261542 n 0000 ~ 07261782 n 0000 ~ 07261955 n 0000 ~ 13372961 n 0000 ~ 13850304 n 0000 ~ 13854101 n 0000 ~ 13854318 n 0000 ~ 13854488 n 0000 | a basis for comparison; a reference point against which other things can be evaluated; "the schools comply with federal standards"; "they set the measure for all subsequent work" -07261143 10 n 01 benchmark 1 001 @ 07260623 n 0000 | a standard by which something can be measured or judged; "his painting sets the benchmark of quality" -07261300 10 n 02 earned_run_average 0 ERA 0 002 @ 07260623 n 0000 ;c 00471613 n 0000 | (baseball) a measure of a pitcher's effectiveness; calculated as the average number of earned runs allowed by the pitcher for every nine innings pitched -07261542 10 n 02 grade_point_average 0 GPA 0 001 @ 07260623 n 0000 | a measure of a student's academic achievement at a college or university; calculated by dividing the total number of grade points received by the total number attempted -07261782 10 n 03 procrustean_standard 0 procrustean_rule 0 procrustean_bed 0 001 @ 07260623 n 0000 | a standard that is enforced uniformly without regard to individuality -07261955 10 n 01 yardstick 0 001 @ 07260623 n 0000 | a measure or standard used for comparison; "on what kind of yardstick is he basing his judgment?" -07262108 10 n 02 target 0 mark 4 004 @ 07258332 n 0000 ~ 07262278 n 0000 ~ 07262354 n 0000 %p 08517449 n 0000 | a reference point to shoot at; "his arrow hit the mark" -07262278 10 n 01 clout 0 001 @ 07262108 n 0000 | a target used in archery -07262354 10 n 01 drogue 3 001 @ 07262108 n 0000 | a funnel-shaped device towed as a target by an airplane -07262462 10 n 01 white_line 0 001 @ 07258332 n 0000 | a white stripe in the middle of a road to mark traffic lanes -07262579 10 n 01 indicator 1 003 @ 06791372 n 0000 + 00921300 v 0103 ~ 07258332 n 0000 | a signal for attracting attention -07262704 10 n 04 blinker 0 turn_signal 0 turn_indicator 0 trafficator 0 003 @ 06873571 n 0000 #p 03270165 n 0000 + 02159890 v 0102 | a blinking light on a motor vehicle that indicates the direction in which the vehicle is about to turn -07262942 10 n 01 armband 0 001 @ 06873571 n 0000 | worn around arm as identification or to indicate mourning -07263053 10 n 02 rocket 2 skyrocket 0 002 @ 06873571 n 0000 + 01944086 v 0202 | propels bright light high in the sky, or used to propel a lifesaving line or harpoon -07263220 10 n 01 electronic_signal 0 003 @ 06791372 n 0000 ~ 07263503 n 0000 ~ 07263897 n 0000 | a signal generated by electronic means -07263358 10 n 03 blip 0 pip 1 radar_target 0 001 @ 07263503 n 0000 | a radar echo displayed so as to show the position of a reflecting surface -07263503 10 n 01 radar_echo 0 003 @ 07263220 n 0000 ~ 07263358 n 0000 ~ 07263745 n 0000 | an electronic signal that has been reflected back to the radar antenna; contains information about the location and distance of the reflecting object -07263745 10 n 01 clutter 0 002 @ 07263503 n 0000 @ 07430211 n 0000 | unwanted echoes that interfere with the observation of signals on a radar screen -07263897 10 n 02 radar_beacon 0 racon 0 001 @ 07263220 n 0000 | a device that, on receiving radar signals, transmits coded signals in response to help navigators determine their position -07264086 10 n 01 radio_beacon 0 001 @ 06791372 n 0000 | a characteristic signal emitted by a transmitter used for navigation -07264213 10 n 02 beacon 0 beacon_fire 0 003 @ 06873571 n 0000 + 02160433 v 0101 ~ 07264725 n 0000 | a fire (usually on a hill or tower) that can be seen from a distance -07264384 10 n 01 star_shell 0 001 @ 06874930 n 0000 | an artillery shell containing an illuminant -07264484 10 n 01 Bengal_light 0 001 @ 06874930 n 0000 | a steady bright blue light; formerly used as a signal but now a firework -07264615 10 n 02 Very_light 0 Very-light 0 001 @ 06874930 n 0000 | a colored flare fired from a Very pistol -07264725 10 n 02 signal_fire 0 signal_light 0 001 @ 07264213 n 0000 | a fire set as a signal -07264820 10 n 02 input_signal 0 input 0 001 @ 06791372 n 0000 | signal going into an electronic system -07264925 10 n 02 output_signal 0 output 2 003 @ 06791372 n 0000 ~ 07265075 n 0000 ~ 07265170 n 0000 | signal that comes out of an electronic system -07265075 10 n 01 printout 0 001 @ 07264925 n 0000 | the output of a computer in printed form -07265170 10 n 02 readout 1 read-out 1 001 @ 07264925 n 0000 | the output of a computer in readable form -07265276 10 n 01 fire_alarm 0 001 @ 06803157 n 0000 | a shout or bell to warn that fire has broken out -07265381 10 n 02 foghorn 0 fogsignal 0 001 @ 06803157 n 0000 | a loud low warning signal that can be heard by fogbound ships -07265508 10 n 01 horn 2 001 @ 06803157 n 0000 | a noise made by the driver of an automobile to give warning; -07265619 10 n 01 red_flag 0 002 @ 06875094 n 0000 @ 06803157 n 0000 | a flag that serves as a warning signal; "we didn't swim at the beach because the red flag was up" -07265789 10 n 01 siren 0 001 @ 06803157 n 0000 | a warning signal that is a loud wailing sound -07265886 10 n 02 tocsin 0 alarm_bell 0 001 @ 06803157 n 0000 | the sound of an alarm (usually a bell) -07265990 10 n 02 stoplight 1 brake_light 0 002 @ 06873571 n 0000 #p 02891188 n 0000 | a red light on the rear of a motor vehicle that signals when the brakes are applied to slow or stop -07266178 10 n 01 buoy 0 007 @ 07258332 n 0000 + 01904795 v 0101 + 00922771 v 0101 ~ 07266442 n 0000 ~ 07266776 n 0000 ~ 07266879 n 0000 ~ 07266979 n 0000 | bright-colored; a float attached by rope to the seabed to mark channels in a harbor or underwater hazards -07266442 10 n 01 acoustic_buoy 0 003 @ 07266178 n 0000 ~ 07266573 n 0000 ~ 07266665 n 0000 | a buoy that can be heard (at night) -07266573 10 n 02 bell_buoy 0 gong_buoy 0 001 @ 07266442 n 0000 | a buoy with a bell on it -07266665 10 n 02 whistle_buoy 0 whistling_buoy 0 001 @ 07266442 n 0000 | a buoy that makes a whistling noise -07266776 10 n 02 can 1 can_buoy 0 001 @ 07266178 n 0000 | a buoy with a round bottom and conical top -07266879 10 n 03 conical_buoy 0 nun 0 nun_buoy 0 001 @ 07266178 n 0000 | a buoy resembling a cone -07266979 10 n 01 spar_buoy 0 001 @ 07266178 n 0000 | a buoy resembling a vertical log -07267067 10 n 01 barber's_pole 0 001 @ 06873571 n 0000 | striped pole outside a barbershop -07267160 10 n 01 staff 1 005 @ 06806469 n 0000 ~ 07267309 n 0000 ~ 07267461 n 0000 ~ 07267573 n 0000 ~ 07267795 n 0000 | a rod carried as a symbol -07267309 10 n 02 crosier 0 crozier 0 001 @ 07267160 n 0000 | a staff surmounted by a crook or cross carried by bishops as a symbol of pastoral office -07267461 10 n 01 mace 0 001 @ 07267160 n 0000 | a ceremonial staff carried as a symbol of office or authority -07267573 10 n 04 scepter 0 sceptre 0 verge 0 wand 1 002 @ 07267160 n 0000 ~ 07267702 n 0000 | a ceremonial or emblematic staff -07267702 10 n 01 bauble 0 001 @ 07267573 n 0000 | a mock scepter carried by a court jester -07267795 10 n 01 tipstaff 0 001 @ 07267160 n 0000 | staff with a metal tip carried as a sign of office by e.g. a bailiff or constable -07267931 10 n 01 cordon 1 001 @ 06883073 n 0000 | cord or ribbon worn as an insignia of honor or rank -07268035 10 n 01 wings 0 001 @ 06883073 n 0000 | stylized bird wings worn as an insignia by qualified pilots or air crew members -07268166 10 n 01 black_belt 0 001 @ 06882561 n 0000 | a black sash worn to show expert standards in the martial arts (judo or karate) -07268302 10 n 02 blue_ribbon 0 cordon_bleu 0 001 @ 06882561 n 0000 | an honor or award gained for excellence -07268413 10 n 01 button 0 001 @ 06882561 n 0000 | a round flat badge displaying information and suitable for pinning onto a garment; "they passed out campaign buttons for their candidate" -07268603 10 n 01 Emmy 0 001 @ 06696483 n 0000 | an annual award by the Academy of Television Arts and Sciences for outstanding achievements in television -07268759 10 n 01 Nobel_prize 0 002 @ 06696483 n 0000 + 10359546 n 0101 | an annual award for outstanding contributions to chemistry or physics or physiology and medicine or literature or economics or peace -07268967 10 n 02 Academy_Award 0 Oscar 0 001 @ 06696483 n 0000 | an annual award by the Academy of Motion Picture Arts and Sciences for achievements in motion picture production and performance -07269163 10 n 01 Prix_de_Rome 0 001 @ 06696483 n 0000 | an annual prize awarded by the French government in a competition of painters and artists and sculptors and musicians and architects; the winner in each category receives support for a period of study in Rome -07269430 10 n 01 Prix_Goncourt 0 001 @ 06696483 n 0000 | an award given annually for contributions to French literature -07269552 10 n 04 chevron 0 stripe 0 stripes 0 grade_insignia 0 002 @ 06882561 n 0000 ;c 08199025 n 0000 | V-shaped sleeve badge indicating military rank and service; "they earned their stripes in Kuwait" -07269758 10 n 01 stripe 1 002 @ 06882561 n 0000 ;c 08199025 n 0000 | a piece of braid, usually on the sleeve, indicating military rank or length of service -07269916 10 n 01 icon 0 004 @ 06806469 n 0000 #p 06575681 n 0000 ;c 06128570 n 0000 + 02851550 a 0101 | (computer science) a graphic symbol (usually a simple picture) that denotes a program or a command or a data file or a concept in a graphical user interface -07270179 10 n 03 marker 0 marking 0 mark 2 017 @ 06806469 n 0000 + 00651991 v 0302 + 00508032 v 0301 + 01588493 v 0203 + 00651991 v 0102 ~ 06795438 n 0000 ~ 06795543 n 0000 ~ 06851742 n 0000 ~ 06855035 n 0000 ~ 07270718 n 0000 ~ 07270893 n 0000 ~ 07271052 n 0000 ~ 07271167 n 0000 ~ 07271791 n 0000 ~ 07271942 n 0000 ~ 07272172 n 0000 ~ 07273802 n 0000 | a distinguishing symbol; "the owner's mark was on all the sheep" -07270601 10 n 01 identifier 0 001 @ 06806469 n 0000 | a symbol that establishes the identity of the one bearing it -07270718 10 n 01 postmark 0 002 @ 07270179 n 0000 + 01274104 v 0101 | a cancellation mark stamped on mail by postal officials; indicates the post office and date of mailing -07270893 10 n 01 watermark 0 001 @ 07270179 n 0000 | a distinguishing mark impressed on paper during manufacture; visible when paper is held up to the light -07271052 10 n 01 broad_arrow 1 001 @ 07270179 n 0000 | an arrowhead mark identifying British government property -07271167 10 n 02 milestone 1 milepost 0 001 @ 07270179 n 0000 | stone post at side of a road to show distances -07271280 10 n 01 variable 0 003 @ 06806469 n 0000 ~ 07271478 n 0000 ~ 07271648 n 0000 | a symbol (like x or y) that is used in mathematical or logical expressions to represent a variable quantity -07271478 10 n 01 placeholder 0 001 @ 07271280 n 0000 | a symbol in a logical or mathematical expression that can be replaced by the name of any member of specified set -07271648 10 n 02 unknown 0 unknown_quantity 0 002 @ 07271280 n 0000 + 01376894 a 0101 | a variable whose values are solutions of an equation -07271791 10 n 02 peg 4 pin 5 002 @ 07270179 n 0000 + 01442203 v 0101 | small markers inserted into a surface to mark scores or define locations etc. -07271942 10 n 02 spot 2 pip 0 002 @ 07270179 n 0000 #p 03963982 n 0000 | a mark on a die or on a playing card (shape depending on the suit) -07272084 10 n 02 logo 0 logotype 0 001 @ 06851742 n 0000 | a company emblem or device -07272172 10 n 01 label 0 008 @ 07270179 n 0000 + 00971650 v 0102 + 01588493 v 0102 + 01029852 v 0101 ~ 07272545 n 0000 ~ 07273136 n 0000 ~ 07273416 n 0000 ~ 07273616 n 0000 | an identifying or descriptive marker that is attached to an object -07272416 10 n 02 bookplate 0 ex_libris 0 001 @ 07272545 n 0000 | a label identifying the owner of a book in which it is pasted -07272545 10 n 03 gummed_label 0 sticker 0 paster 0 004 @ 07272172 n 0000 + 01332205 v 0302 + 01356750 v 0205 ~ 07272416 n 0000 | an adhesive label -07272694 10 n 01 dog_tag 1 001 @ 07273136 n 0000 | metal plate on a dog collar bearing its registration number -07272807 10 n 01 dog_tag 2 001 @ 07273136 n 0000 | military identification tag worn on a chain around the neck -07272920 10 n 01 name_tag 0 001 @ 07273136 n 0000 | a tag showing the name of the person who wears it -07273024 10 n 01 price_tag 0 001 @ 07273136 n 0000 | a tag showing the price of the article it is attached to -07273136 10 n 02 tag 0 ticket 3 006 @ 07272172 n 0000 + 01588493 v 0101 ~ 07272694 n 0000 ~ 07272807 n 0000 ~ 07272920 n 0000 ~ 07273024 n 0000 | a label written or printed on paper, cardboard, or plastic that is attached to something to indicate its owner, nature, price, etc. -07273416 10 n 01 tag 1 001 @ 07272172 n 0000 | a label associated with something for the purpose of identification; "semantic tags were attached in order to identify different meanings of the word" -07273616 10 n 01 title_bar 0 002 @ 07272172 n 0000 ;c 06128570 n 0000 | (computer science) a horizontal label at the top of a window, bearing the name of the currently active document -07273802 10 n 01 cairn 0 001 @ 07270179 n 0000 | a mound of stones piled up as a memorial or to mark a boundary or path -07273924 10 n 01 shrug 0 002 @ 06876309 n 0000 + 00033955 v 0101 | a gesture involving the shoulders -07274027 10 n 03 wave 1 waving 0 wafture 0 004 @ 06876309 n 0000 + 01041415 v 0202 + 01041415 v 0102 ~ 06890254 n 0000 | the act of signaling by a movement of the hand -07274197 10 n 01 V_sign 0 001 @ 06876309 n 0000 | a sign (for victory); making a V with the index and middle fingers -07274316 10 n 01 nod 1 002 @ 06876309 n 0000 + 00898434 v 0101 | a sign of assent or salutation or command -07274425 10 n 03 bow 1 bowing 0 obeisance 0 009 @ 01228102 n 0000 @ 06876309 n 0000 + 02062632 v 0104 + 02040273 v 0101 + 00898691 v 0101 ~ 07275078 n 0000 ~ 07275275 n 0000 ~ 07275489 n 0000 ~ 07275713 n 0000 | bending the head or body or knee as a sign of reverence or submission or shame or greeting -07274730 10 n 01 sign_of_the_cross 0 001 @ 06876309 n 0000 | a gesture with the right hand moving to form a cross; used by Catholics as a profession of faith -07274890 10 n 02 curtsy 0 curtsey 0 005 @ 01228102 n 0000 @ 06876309 n 0000 + 02040549 v 0202 + 00899352 v 0101 + 02040549 v 0101 | bending the knees; a gesture of respect made by women -07275078 10 n 02 genuflection 0 genuflexion 0 005 @ 07274425 n 0000 + 02040709 v 0203 + 02040934 v 0201 + 02040709 v 0103 + 02040934 v 0101 | the act of bending the knees in worship or reverence -07275275 10 n 02 kowtow 0 kotow 0 004 @ 07274425 n 0000 + 00880978 v 0206 + 00880978 v 0105 + 02040709 v 0102 | a former Chinese custom of touching the ground with the forehead as a sign of respect or submission -07275489 10 n 02 scrape 0 scraping 0 003 @ 07274425 n 0000 + 02040709 v 0201 + 02040709 v 0101 | a deep bow with the foot drawn backwards (indicating excessive humility); "all that bowing and scraping did not impress him" -07275713 10 n 01 salaam 0 002 @ 07274425 n 0000 + 00899847 v 0101 | a deep bow; a Muslim form of salutation -07275823 10 n 01 ground_rule 0 002 @ 06788897 n 0000 ;c 00471613 n 0000 | (baseball) a special rule (as in baseball) dealing with situations that arise due to the nature of the playing grounds -07276018 10 n 01 sign 6 002 @ 06284225 n 0000 ;c 06172789 n 0000 | a fundamental linguistic unit linking a signifier to that which is signified; "The bond between the signifier and the signified is arbitrary"--de Saussure -07276242 10 n 01 system_command 0 001 @ 06786629 n 0000 | a computer user's instruction (not part of a program) that calls for action by the computer's executive program -07276414 10 n 02 walking_papers 0 marching_orders 1 001 @ 07213079 n 0000 | (informal) a notice of dismissal or discharge -07276538 10 n 02 wanted_notice 0 wanted_poster 0 002 @ 06746580 n 0000 ~ 07276732 n 0000 | a public announcement by a law enforcement agency that they desire to question or arrest some person -07276732 10 n 02 International_Wanted_Notice 0 Red_Notice 0 001 @ 07276538 n 0000 | an Interpol notice describing a wanted person and asking that he or she be arrested with a view to extradition; a wanted notice that is issued by Interpol at the request of an Interpol member country and distributed to all member countries; "an Interpol Red Notice is the closest instrument to an international arrest warrant in use today" -07277158 10 n 01 plagiarism 0 005 @ 06362953 n 0000 + 00698848 a 0101 + 10437262 n 0101 + 02278061 v 0101 + 02278061 v 0102 | a piece of writing that has been copied from someone else and is presented as being your own work -07277384 10 n 01 transcript 1 001 @ 06362953 n 0000 | something that has been transcribed; a written record (usually typewritten) of dictated or recorded speech; "he read a transcript of the interrogation"; "you can obtain a transcript of this radio program by sending a self-addressed envelope to the station" -07277697 10 n 01 voice 3 001 @ 00033020 n 0000 | something suggestive of speech in being a medium of expression; "the wee small voice of conscience"; "the voice of experience"; "he said his voices told him to do it" -07277915 10 n 01 Bach 0 001 @ 07020895 n 0000 | the music of Bach; "he played Bach on the organ" -07278014 10 n 01 Beethoven 0 002 @ 07020895 n 0000 + 03028987 a 0101 | the music of Beethoven; "he enjoyed Beethoven most of all" -07278146 10 n 01 Brahms 0 001 @ 07020895 n 0000 | the music of Brahms; "Brahms was included in the program" -07278256 10 n 01 Chopin 0 001 @ 07020895 n 0000 | the music of Chopin; "he practiced Chopin day and night" -07278365 10 n 01 Gilbert_and_Sullivan 0 001 @ 07020895 n 0000 | the music of Gilbert and Sullivan; "he could sing all of Gilbert and Sullivan" -07278510 10 n 01 Handel 0 001 @ 07020895 n 0000 | the music of Handel -07278582 10 n 01 Haydn 0 001 @ 07020895 n 0000 | the music of Haydn -07278652 10 n 01 Mozart 0 002 @ 07020895 n 0000 + 03035675 a 0102 | the music of Mozart; "the concert was mostly Mozart" -07278775 10 n 01 Stravinsky 0 002 @ 07020895 n 0000 + 03038199 a 0101 | the music of Stravinsky; "Stravinsky no longer causes riots in the streets" -07278925 10 n 01 Wagner 0 001 @ 07020895 n 0000 | the music of Wagner; "they say that Hitler listened only to Wagner" -07279045 10 n 01 language_system 0 007 @ 08435388 n 0000 ~ 07112805 n 0000 ~ 07113080 n 0000 ~ 07113192 n 0000 ~ 07113337 n 0000 ~ 07113491 n 0000 ~ 07113625 n 0000 | a system of linguistic units or elements used in a particular language -07279285 10 n 02 contact 1 touch 2 001 @ 06252138 n 0000 | a communicative interaction; "the pilot made contact with the base"; "he got in touch with his colleagues" -07279453 10 n 01 traffic 0 001 @ 06252138 n 0000 | the amount of activity over a communication system during a given period of time; "heavy traffic overloaded the trunk lines"; "traffic on the internet is lightest during the night" -07279687 10 n 01 order 4 003 @ 07185325 n 0000 + 00745499 v 0101 ~ 07279968 n 0000 | a request for something to be made, supplied, or served; "I gave the waiter my order"; "the company's products were in such demand that they got more orders than their call center could handle" -07279968 10 n 01 short_order 0 001 @ 07279687 n 0000 | an order for food that can be prepared quickly -07280072 10 n 02 recall 2 callback 0 004 @ 07185325 n 0000 + 02312478 v 0203 + 02480216 v 0101 + 02312478 v 0101 | a request by the manufacturer of a defective product to return the product (as for replacement or repair) -07280295 10 n 01 uplink 0 001 @ 06251781 n 0000 | a transmission from Earth to a spacecraft or the path of such a transmission -07280424 10 n 01 capriccio 0 001 @ 07037465 n 0000 | an instrumental composition that doesn't adhere to rules for any specific musical form and is played with improvisation -07280599 10 n 01 interrogation 3 002 @ 06251781 n 0000 + 00973530 v 0101 | a transmission that will trigger an answering transmission from a transponder -07280754 10 n 01 motet 0 001 @ 07037465 n 0000 | an unaccompanied choral composition with sacred lyrics; intended to be sung as part of a church service; originated in the 13th century -07280941 10 n 01 negation 1 002 @ 06722453 n 0000 + 00823436 v 0102 | a negative statement; a statement that is a refusal or denial of some other statement -07281099 10 n 01 packet 0 002 @ 06253690 n 0000 ;c 06128570 n 0000 | (computer science) a message or message fragment -07281219 10 n 02 program_music 0 programme_music 0 001 @ 07037465 n 0000 | musical compositions intended to evoke images or remind the listener of events -07281375 10 n 01 incidental_music 0 001 @ 07037465 n 0000 | music composed to accompany the action of a drama or to fill intervals between scenes -07281523 10 n 01 slanguage 0 001 @ 06282651 n 0000 | language characterized by excessive use of slang or cant -07281635 10 n 01 Ta'ziyeh 0 002 @ 07020895 n 0000 ;c 06234825 n 0000 | (Islam) a form of Iranian musical pageant that is the theatrical expression of religious passion; based on the Battle of Kerbala and performed annually (in Farsi) -07281871 10 n 02 sprechgesang 0 sprechstimme 0 001 @ 07110615 n 0000 | a style of dramatic vocalization between singing and speaking -07282006 10 n 02 vocal_music 0 vocal 0 001 @ 07020895 n 0000 | music intended to be performed by one or more singers, usually with instrumental accompaniment -07282166 10 n 01 voice_over 0 001 @ 07110615 n 0000 | the voice on an unseen commentator in a film of television program -07282289 10 n 01 walk-through 0 001 @ 06738281 n 0000 | a thorough explanation (usually accompanied by a demonstration) of each step in a procedure or process; "she gave me a walk-through of my new duties" -07282497 10 n 01 yearbook 1 001 @ 06410904 n 0000 | a book published annually by the graduating class of a high school or college usually containing photographs of faculty and graduating students -07282695 10 n 01 zinger 0 001 @ 06765044 n 0000 | a striking or amusing or caustic remark; "he always greeted me with a new zinger"; "she tried to think of some killer of an argument, a real zinger that would disarm all opposition" -07282929 10 n 02 Das_Kapital 0 Capital 1 001 @i 06410904 n 0000 | a book written by Karl Marx (1867) describing his economic theories -07283065 10 n 01 Erewhon 0 001 @i 06410904 n 0000 | a satirical novel written by Samuel Butler (1872) describing a fictitious land -07283198 10 n 01 Utopia 0 002 @i 06410904 n 0000 + 03020193 a 0102 | a book written by Sir Thomas More (1516) describing the perfect society on an imaginary island -07283364 11 n 01 might-have-been 0 001 @ 00029378 n 0000 | an event that could have occurred but never did -07283473 11 n 01 nonevent 0 001 @ 00029378 n 0000 | an anticipated event that turns out to be far less significant than was expected -07283608 11 n 04 happening 0 occurrence 0 occurrent 0 natural_event 0 047 @ 00029378 n 0000 + 00667641 a 0201 + 00339934 v 0101 ~ 07284554 n 0000 ~ 07285036 n 0000 ~ 07285403 n 0000 ~ 07289014 n 0000 ~ 07289358 n 0000 ~ 07289481 n 0000 ~ 07289588 n 0000 ~ 07289831 n 0000 ~ 07289956 n 0000 ~ 07290761 n 0000 ~ 07290905 n 0000 ~ 07291312 n 0000 ~ 07296083 n 0000 ~ 07296190 n 0000 ~ 07296428 n 0000 ~ 07299569 n 0000 ~ 07300960 n 0000 ~ 07302836 n 0000 ~ 07307477 n 0000 ~ 07307754 n 0000 ~ 07308889 n 0000 ~ 07309781 n 0000 ~ 07317764 n 0000 ~ 07319103 n 0000 ~ 07321772 n 0000 ~ 07330007 n 0000 ~ 07335716 n 0000 ~ 07336346 n 0000 ~ 07339329 n 0000 ~ 07353376 n 0000 ~ 07361128 n 0000 ~ 07367812 n 0000 ~ 07371293 n 0000 ~ 07373277 n 0000 ~ 07400831 n 0000 ~ 07412092 n 0000 ~ 07414740 n 0000 ~ 07416714 n 0000 ~ 07434942 n 0000 ~ 07435273 n 0000 ~ 07475870 n 0000 ~ 07477587 n 0000 ~ 07477945 n 0000 ~ 07479525 n 0000 | an event that happens -07284554 11 n 04 accompaniment 0 concomitant 0 attendant 0 co-occurrence 0 007 @ 07283608 n 0000 + 02378496 a 0405 + 02660442 v 0403 + 00122844 a 0301 + 02716165 v 0102 ~ 07284848 n 0000 ~ 07285191 n 0000 | an event or situation that happens at the same time as or in connection with another -07284848 11 n 01 associate 0 001 @ 07284554 n 0000 | any event that usually accompanies or is closely connected with another; "first was the lightning and then its thunderous associate" -07285036 11 n 01 avalanche 1 001 @ 07283608 n 0000 | a sudden appearance of an overwhelming number of things; "the program brought an avalanche of mail" -07285191 11 n 01 background 1 002 @ 07284554 n 0000 + 00513492 v 0101 | relatively unimportant or inconspicuous accompanying situation; "when the rain came he could hear the sound of thunder in the background" -07285403 11 n 01 experience 0 018 @ 07283608 n 0000 + 00121046 v 0102 + 01771535 v 0102 + 02108026 v 0101 + 02110220 v 0101 %p 05868779 n 0000 ~ 07285872 n 0000 ~ 07286014 n 0000 ~ 07287088 n 0000 ~ 07287288 n 0000 ~ 07287472 n 0000 ~ 07287610 n 0000 ~ 07287730 n 0000 ~ 07287812 n 0000 ~ 07288024 n 0000 ~ 07288215 n 0000 ~ 07288385 n 0000 ~ 07288485 n 0000 | an event as apprehended; "a surprising experience"; "that painful experience certainly got our attention" -07285872 11 n 01 appalling 0 001 @ 07285403 n 0000 | an experience that appalls; "is it better to view the appalling or merely hear of it?" -07286014 11 n 04 augury 0 sign 0 foretoken 0 preindication 0 004 @ 07285403 n 0000 + 00349592 v 0101 ~ 07286278 n 0000 ~ 07286368 n 0000 | an event that is experienced as indicating important things to come; "he hoped it was an augury"; "it was a sign from God" -07286278 11 n 01 war_cloud 0 001 @ 07286014 n 0000 | an ominous sign that war threatens -07286368 11 n 06 omen 0 portent 0 presage 0 prognostic 0 prognostication 0 prodigy 0 014 @ 07286014 n 0000 + 02164165 a 0602 + 00871942 v 0504 + 01883325 a 0402 + 00871942 v 0306 + 02164165 a 0201 + 01883106 a 0203 + 00871942 v 0202 + 00178126 a 0103 + 00194357 a 0106 + 00871942 v 0105 ~ 07286799 n 0000 ~ 07286905 n 0000 ~ 07286999 n 0000 | a sign of something about to happen; "he looked for an omen before going into battle" -07286799 11 n 01 auspice 0 003 @ 07286368 n 0000 + 00871942 v 0103 + 00347420 v 0101 | a favorable omen -07286905 11 n 01 foreboding 0 002 @ 07286368 n 0000 + 00917772 v 0105 | an unfavorable omen -07286999 11 n 01 death_knell 0 001 @ 07286368 n 0000 | an omen of death or destruction -07287088 11 n 02 flash 1 flashing 0 003 @ 07285403 n 0000 + 00424691 v 0201 + 00424691 v 0101 | a short vivid experience; "a flash of emotion swept over him"; "the flashings of pain were a warning" -07287288 11 n 02 good_time 0 blast 2 001 @ 07285403 n 0000 | a highly pleasurable or exciting experience; "we had a good time at the party"; "celebrating after the game was a blast" -07287472 11 n 01 loss 1 001 @ 07285403 n 0000 | the experience of losing a loved one; "he sympathized on the loss of their grandfather" -07287610 11 n 01 near-death_experience 0 001 @ 07285403 n 0000 | the experience of being close to death but surviving -07287730 11 n 01 ordeal 0 001 @ 07285403 n 0000 | a severe or trying experience -07287812 11 n 01 out-of-body_experience 0 001 @ 07285403 n 0000 | the dissociative experience of observing yourself from an external perspective as though your mind or soul had left and was observing your body -07288024 11 n 01 taste 0 002 @ 07285403 n 0000 + 00597061 v 0101 | a brief experience of something; "he got a taste of life on the wild side"; "she enjoyed her brief taste of independence" -07288215 11 n 01 time 1 001 @ 07285403 n 0000 | a person's experience on a particular occasion; "he had a time holding back the tears"; "they had a good time together" -07288385 11 n 02 trip 1 head_trip 0 001 @ 07285403 n 0000 | an exciting or stimulating experience -07288485 11 n 01 vision 0 001 @ 07285403 n 0000 | a religious or mystical experience of a supernatural appearance; "he had a vision of the Virgin Mary" -07288639 11 n 01 social_event 0 004 @ 00029378 n 0000 ~ 06619065 n 0000 ~ 07447261 n 0000 ~ 07456188 n 0000 | an event characteristic of persons forming groups -07288801 11 n 01 miracle 1 006 @ 00029378 n 0000 + 01048976 a 0103 ~i 07311822 n 0000 ~i 07312018 n 0000 ~ 07357866 n 0000 ~ 07358377 n 0000 | a marvellous event manifesting a supernatural act of a divine agent -07289014 11 n 01 trouble 0 013 @ 07283608 n 0000 + 02458973 a 0101 + 00070816 v 0101 + 01764171 v 0104 + 01770501 v 0103 ~ 07304852 n 0000 ~ 07305234 n 0000 ~ 07305438 n 0000 ~ 07305551 n 0000 ~ 07305907 n 0000 ~ 07306160 n 0000 ~ 07306252 n 0000 ~ 07430211 n 0000 | an event causing distress or pain; "what is the trouble?"; "heart trouble" -07289358 11 n 01 treat 0 002 @ 07283608 n 0000 + 02261642 v 0101 | an occurrence that causes special pleasure or delight -07289481 11 n 01 miracle 0 002 @ 07283608 n 0000 + 01576551 a 0103 | any amazing or wonderful occurrence -07289588 11 n 02 wonder 0 marvel 0 007 @ 07283608 n 0000 + 01576551 a 0201 + 01576551 a 0202 + 00925735 v 0201 + 00925490 v 0202 + 01676517 a 010a + 00925490 v 0101 | something that causes feelings of wonder; "the wonders of modern science" -07289831 11 n 01 thing 0 002 @ 07283608 n 0000 ~ 07290144 n 0000 | an event; "a funny thing happened on the way to the..." -07289956 11 n 01 episode 0 005 @ 07283608 n 0000 ~ 07290278 n 0000 ~ 07307172 n 0000 ~ 07307297 n 0000 %p 07307477 n 0000 | a happening that is distinctive in a series of related events -07290144 11 n 01 feast 0 002 @ 07289831 n 0000 + 01182152 v 0102 | something experienced with great delight; "a feast for the eyes" -07290278 11 n 02 drama 0 dramatic_event 0 007 @ 07289956 n 0000 + 01284212 a 0101 + 00794825 a 0101 + 00956405 v 0108 + 00988287 v 0101 + 00988287 v 0102 ~ 07290503 n 0000 | an episode that is turbulent or highly emotional -07290503 11 n 01 night_terror 0 001 @ 07290278 n 0000 | an emotional episode (usually in young children) in which the person awakens in terror with feelings of anxiety and fear but is unable to remember any incident that might have provoked those feelings -07290761 11 n 03 eventuality 0 contingency 0 contingence 0 002 @ 07283608 n 0000 + 01822411 a 0201 | a possible event or occurrence or result -07290905 11 n 01 beginning 0 011 @ 07283608 n 0000 + 00348746 v 0101 ! 07291312 n 0101 ~ 07291215 n 0000 ~ 07319909 n 0000 ~ 07323922 n 0000 ~ 07324380 n 0000 ~ 07324502 n 0000 ~ 07324673 n 0000 ~ 07325190 n 0000 ~ 07328942 n 0000 | the event consisting of the start of something; "the beginning of the war" -07291215 11 n 01 casus_belli 0 001 @ 07290905 n 0000 | an event used to justify starting a war -07291312 11 n 03 ending 0 conclusion 0 finish 2 015 @ 07283608 n 0000 + 00351963 v 0301 + 02609764 v 0303 + 00484166 v 0302 + 02735418 v 0101 + 01620854 v 0101 ! 07290905 n 0101 ~ 07291794 n 0000 ~ 07292694 n 0000 ~ 07295850 n 0000 ~ 07334490 n 0000 ~ 07355014 n 0000 ~ 07365849 n 0000 ~ 07473441 n 0000 ~ 07475364 n 0000 | event whose occurrence ends something; "his death marked the ending of an era"; "when these final episodes are broadcast it will be the finish of the show" -07291794 11 n 03 end 0 last 0 final_stage 0 009 @ 07291312 n 0000 + 01620854 v 0101 + 02735418 v 0101 + 00352826 v 0101 + 02609764 v 0101 ~ 07292118 n 0000 ~ 07292273 n 0000 ~ 07292418 n 0000 ~ 07292577 n 0000 | the concluding parts of an event or occurrence; "the end was exciting"; "I had to miss the last of the movie" -07292118 11 n 02 endgame 0 end_game 0 001 @ 07291794 n 0000 | the final stages of a chess game after most of the pieces have been removed from the board -07292273 11 n 02 endgame 1 end_game 1 001 @ 07291794 n 0000 | the final stages of an extended process of negotiation; "the diplomatic endgame" -07292418 11 n 01 homestretch 0 002 @ 07291794 n 0000 ;u 07075172 n 0000 | the end of an enterprise; "they were on the homestretch when the computer crashed" -07292577 11 n 01 passing 2 002 @ 07291794 n 0000 + 00421691 v 0106 | the end of something; "the passing of winter" -07292694 11 n 05 result 0 resultant 0 final_result 0 outcome 0 termination 0 013 @ 07291312 n 0000 + 00122844 a 0207 + 02635659 v 0202 + 02634265 v 0101 ~ 07293080 n 0000 ~ 07293180 n 0000 ~ 07293546 n 0000 ~ 07293678 n 0000 ~ 07294019 n 0000 ~ 07294907 n 0000 ~ 07295391 n 0000 ~ 07295507 n 0000 ~ 07295955 n 0000 | something that results; "he listened for the results on the radio" -07293080 11 n 01 denouement 0 001 @ 07292694 n 0000 | the outcome of a complex sequence of events -07293180 11 n 01 deal 0 004 @ 07292694 n 0000 + 02445509 v 0103 ~ 07293391 n 0000 ~ 07293475 n 0000 | the type of treatment received (especially as the result of an agreement); "he got a good deal on his car" -07293391 11 n 02 fair_deal 0 square_deal 0 001 @ 07293180 n 0000 | fair treatment -07293475 11 n 01 raw_deal 0 001 @ 07293180 n 0000 | unfair treatment -07293546 11 n 01 decision 1 001 @ 07292694 n 0000 | the outcome of a game or contest; "the team dropped three decisions in a row" -07293678 11 n 01 decision 2 003 @ 07292694 n 0000 ;c 00445802 n 0000 ~ 07293903 n 0000 | (boxing) a victory won on points when no knockout has occurred; "had little trouble in taking a unanimous decision over his opponent" -07293903 11 n 01 split_decision 0 001 @ 07293678 n 0000 | a boxing decision in which the judges are not unanimous -07294019 11 n 02 consequence 0 aftermath 0 007 @ 07292694 n 0000 ~ 07294260 n 0000 ~ 07294423 n 0000 ~ 07294550 n 0000 ~ 07294699 n 0000 ~ 07294777 n 0000 ~ 07295629 n 0000 | the outcome of an event especially as relative to an individual -07294260 11 n 01 corollary 0 001 @ 07294019 n 0000 | a practical consequence that follows naturally; "blind jealousy is a frequent corollary of passionate love" -07294423 11 n 03 deserts 0 comeuppance 0 comeupance 0 001 @ 07294019 n 0000 | an outcome (good or bad) that is well deserved -07294550 11 n 01 fruit 0 001 @ 07294019 n 0000 | the consequence of some effort or action; "he lived long enough to see the fruit of his policies" -07294699 11 n 01 sequella 0 001 @ 07294019 n 0000 | a secondary consequence -07294777 11 n 01 train 0 001 @ 07294019 n 0000 | a series of consequences wrought by an event; "it led to a train of disasters" -07294907 11 n 02 poetic_justice 0 just_deserts 0 001 @ 07292694 n 0000 | an outcome in which virtue triumphs over vice (often ironically) -07295047 11 n 03 offspring 0 materialization 1 materialisation 1 003 @ 11410625 n 0000 + 00344174 v 0303 + 00344174 v 0202 | something that comes into existence as a result; "industrialism prepared the way for acceptance of the French Revolution's various socialistic offspring"; "this skyscraper is the solid materialization of his efforts" -07295391 11 n 01 separation 1 001 @ 07292694 n 0000 | the termination of employment (by resignation or dismissal) -07295507 11 n 02 sequel 0 subsequence 0 002 @ 07292694 n 0000 + 00122626 a 0201 | something that follows something else -07295629 11 n 03 wages 0 reward 0 payoff 0 003 @ 07294019 n 0000 + 02546075 v 0203 + 02344381 v 0201 | a recompense for worthy acts or retribution for wrongdoing; "the wages of sin is death"; "virtue is its own reward" -07295850 11 n 02 foregone_conclusion 0 matter_of_course 0 001 @ 07291312 n 0000 | an inevitable ending -07295955 11 n 01 worst 0 002 @ 07292694 n 0000 + 00229630 a 0101 | the least favorable outcome; "the worst that could happen" -07296083 11 n 01 one-off 0 001 @ 07283608 n 0000 | a happening that occurs only once and is not repeated -07296190 11 n 02 periodic_event 0 recurrent_event 0 008 @ 07283608 n 0000 ~ 07312616 n 0000 ~ 07341038 n 0000 ~ 07342049 n 0000 ~ 07343910 n 0000 ~ 07344015 n 0000 ~ 07400906 n 0000 ~ 07402519 n 0000 | an event that recurs at intervals -07296428 11 n 03 change 0 alteration 0 modification 0 035 @ 07283608 n 0000 + 00169806 v 0301 + 00126264 v 0202 + 00123170 v 0101 + 00126264 v 0101 + 00109660 v 0101 ~ 05060783 n 0000 ~ 05061345 n 0000 ~ 07297376 n 0000 ~ 07297633 n 0000 ~ 07297811 n 0000 ~ 07297927 n 0000 ~ 07298154 n 0000 ~ 07320302 n 0000 ~ 07331400 n 0000 ~ 07337096 n 0000 ~ 07337390 n 0000 ~ 07355194 n 0000 ~ 07355491 n 0000 ~ 07355887 n 0000 ~ 07356489 n 0000 ~ 07356676 n 0000 ~ 07357101 n 0000 ~ 07358060 n 0000 ~ 07358576 n 0000 ~ 07359599 n 0000 ~ 07411645 n 0000 ~ 07411851 n 0000 ~ 07416441 n 0000 ~ 07420770 n 0000 ~ 07423560 n 0000 ~ 07424109 n 0000 ~ 07425011 n 0000 ~ 07425427 n 0000 ~ 07478169 n 0000 | an event that occurs when something passes from one state or phase to another; "the change was intended to increase sales"; "this storm is certainly a change for the worse"; "the neighborhood had undergone few modifications since his last visit years ago" -07297376 11 n 01 avulsion 0 001 @ 07296428 n 0000 | an abrupt change in the course of a stream that forms the boundary between two parcels of land resulting in the loss of part of the land of one landowner and a consequent increase in the land of another -07297633 11 n 01 break 4 001 @ 07296428 n 0000 | an abrupt change in the tone or register of the voice (as at puberty or due to emotion); "then there was a break in her voice" -07297811 11 n 01 mutation 1 002 @ 07296428 n 0000 + 02987177 a 0101 | a change or alteration in form or qualities -07297927 11 n 01 sublimation 1 003 @ 07296428 n 0000 ;c 06136258 n 0000 + 01953527 v 0101 | (psychology) modifying the natural expression of an impulse or instinct (especially a sexual one) to one that is socially acceptable -07298154 11 n 01 surprise 0 010 @ 07296428 n 0000 + 01126051 v 0102 + 02596493 v 0101 + 00725274 v 0101 ~ 07298396 n 0000 ~ 07298543 n 0000 ~ 07298624 n 0000 ~ 07298715 n 0000 ~ 07298982 n 0000 ~ 07299439 n 0000 | a sudden unexpected event -07298396 11 n 03 bombshell 0 thunderbolt 0 thunderclap 1 001 @ 07298154 n 0000 | a shocking surprise; "news of the attack came like a bombshell" -07298543 11 n 01 coup_de_theatre 0 001 @ 07298154 n 0000 | a dramatic surprise -07298624 11 n 01 eye_opener 0 001 @ 07298154 n 0000 | something surprising and revealing -07298715 11 n 03 peripeteia 0 peripetia 0 peripety 0 001 @ 07298154 n 0000 | a sudden and unexpected change of fortune or reverse of circumstances (especially in a literary work); "a peripeteia swiftly turns a routine sequence of events into a story worth telling" -07298982 11 n 02 shock 1 blow 1 005 @ 07298154 n 0000 + 00090186 v 0103 + 01783022 v 0101 + 01809064 v 0101 ~ 07299203 n 0000 | an unpleasant or disappointing surprise; "it came as a shock to learn that he was injured" -07299203 11 n 01 blip 0 001 @ 07298982 n 0000 | a sudden minor shock or meaningless interruption; "the market had one bad blip today"; "you can't react to the day-to-day blips"; "renewed jitters in the wake of a blip in retail sales" -07299439 11 n 01 stunner 0 001 @ 07298154 n 0000 | an unexpected and amazing event; "the stunner was what happened on Saturday" -07299569 11 n 02 error 0 computer_error 0 005 @ 07283608 n 0000 ;c 06128570 n 0000 ~ 07299790 n 0000 ~ 07300092 n 0000 ~ 07300781 n 0000 | (computer science) the occurrence of an incorrect result produced by a computer -07299790 11 n 01 hardware_error 0 003 @ 07299569 n 0000 ;c 06128570 n 0000 ~ 07299965 n 0000 | error resulting from a malfunction of some physical component of the computer -07299965 11 n 01 disk_error 0 002 @ 07299790 n 0000 ;c 06128570 n 0000 | error resulting from malfunction of a magnetic disk -07300092 11 n 02 software_error 0 programming_error 0 004 @ 07299569 n 0000 ;c 06128570 n 0000 ~ 07300316 n 0000 ~ 07300494 n 0000 | error resulting from bad code in some program involved in producing the erroneous result -07300316 11 n 03 semantic_error 0 run-time_error 0 runtime_error 0 002 @ 07300092 n 0000 ;c 06128570 n 0000 | an error in logic or arithmetic that must be detected at run time -07300494 11 n 01 syntax_error 0 002 @ 07300092 n 0000 ;c 06128570 n 0000 | an error of language resulting from code that does not conform to the syntax of the programming language; "syntax errors can be recognized at compilation time"; "a common syntax error is to omit a parenthesis" -07300781 11 n 01 algorithm_error 0 002 @ 07299569 n 0000 ;c 06128570 n 0000 | error resulting from the choice of the wrong algorithm or method for achieving the intended result -07300960 11 n 04 accident 0 stroke 2 fortuity 0 chance_event 0 006 @ 07283608 n 0000 + 01338909 a 0101 ~ 07314277 n 0000 ~ 07316856 n 0000 ~ 07316999 n 0000 ~ 07317144 n 0000 | anything that happens suddenly or by chance without an apparent cause; "winning the lottery was a happy accident"; "the pregnancy was a stroke of bad luck"; "it was due to an accident or fortuity" -07301336 11 n 01 accident 1 006 @ 07314427 n 0000 ~ 07301543 n 0000 ~ 07301950 n 0000 ~ 07313636 n 0000 ~ 07353075 n 0000 ~ 07361717 n 0000 | an unfortunate mishap; especially one causing damage or injury -07301543 11 n 01 collision 0 005 @ 07301336 n 0000 + 01561143 v 0101 ~ 07311540 n 0000 ~ 07317285 n 0000 ~ 07317369 n 0000 | an accident resulting from violent impact of a moving object; "three passengers were killed in the collision"; "the collision of the two ships resulted in a serious oil spill" -07301846 11 n 01 near_miss 0 001 @ 07314427 n 0000 | an accidental collision that is narrowly avoided -07301950 11 n 02 crash 0 wreck 0 003 @ 07301336 n 0000 + 01561819 v 0101 ~ 07302164 n 0000 | a serious accident (usually involving one or more vehicles); "they are still investigating the crash of the TWA plane" -07302164 11 n 01 prang 0 002 @ 07301950 n 0000 ;r 08860123 n 0000 | a crash involving a car or plane -07302267 11 n 01 derailment 0 003 @ 07314427 n 0000 + 02012043 v 0101 + 02011865 v 0101 | an accident in which a train runs off its track -07302407 11 n 01 ground_loop 0 001 @ 07314427 n 0000 | a sharp uncontrollable turn made by an airplane while moving along the ground -07302542 11 n 02 collision 1 hit 1 005 @ 07339329 n 0000 ;c 06090869 n 0000 + 01236164 v 0201 + 01561143 v 0101 + 01562733 v 0101 | (physics) a brief event in which two or more bodies come together; "the collision of the particles resulted in an exchange of energy and a change of direction" -07302836 11 n 01 fire 0 011 @ 07283608 n 0000 + 00378664 v 0102 ~ 07303153 n 0000 ~ 07303335 n 0000 ~ 07303466 n 0000 ~ 07303585 n 0000 ~ 07303697 n 0000 ~ 07303839 n 0000 ~ 07303988 n 0000 ~ 07304096 n 0000 ~ 07304266 n 0000 | the event of something burning (often destructive); "they lost everything in the fire" -07303153 11 n 01 backfire 3 001 @ 07302836 n 0000 | a fire that is set intentionally in order to slow an approaching forest fire or grassfire by clearing a burned area in its path -07303335 11 n 02 bonfire 0 balefire 0 001 @ 07302836 n 0000 | a large outdoor fire that is lighted as a signal or in celebration -07303466 11 n 01 brush_fire 0 001 @ 07302836 n 0000 | an uncontrolled fire that consumes brush and shrubs and bushes -07303585 11 n 01 campfire 0 001 @ 07302836 n 0000 | a small outdoor fire for warmth or cooking (as at a camp) -07303697 11 n 02 conflagration 0 inferno 0 003 @ 07302836 n 0000 + 02974812 a 0201 ~ 07304753 n 0000 | a very intense and uncontrolled fire -07303839 11 n 01 forest_fire 0 004 @ 07302836 n 0000 ~ 07304353 n 0000 ~ 07304507 n 0000 ~ 07304630 n 0000 | an uncontrolled fire in a wooded area -07303988 11 n 02 grassfire 0 prairie_fire 0 001 @ 07302836 n 0000 | an uncontrolled fire in a grassy area -07304096 11 n 02 smoulder 0 smolder 0 002 @ 07302836 n 0000 + 00377569 v 0102 | a fire that burns with thick smoke but no flame; "the smoulder suddenly became a blaze" -07304266 11 n 01 smudge 0 001 @ 07302836 n 0000 | a smoky fire to drive away insects -07304353 11 n 01 crown_fire 0 001 @ 07303839 n 0000 | a forest fire that advances with great speed jumping from crown to crown ahead of the ground fire -07304507 11 n 01 ground_fire 0 001 @ 07303839 n 0000 | a forest fire that burns the humus; may not appear on the surface -07304630 11 n 01 surface_fire 0 001 @ 07303839 n 0000 | a forest fire that burns only the surface litter and undergrowth -07304753 11 n 01 wildfire 0 001 @ 07303697 n 0000 | a raging and rapidly spreading conflagration -07304852 11 n 02 misfortune 0 bad_luck 0 007 @ 07289014 n 0000 ~ 07305098 n 0000 ~ 07314427 n 0000 ~ 07314838 n 0000 ~ 07336612 n 0000 ~ 07336763 n 0000 ~ 07336999 n 0000 | unnecessary and unforeseen trouble resulting from an unfortunate event -07305098 11 n 02 pity 0 shame 0 002 @ 07304852 n 0000 + 01050890 a 0105 | an unfortunate development; "it's a pity he couldn't do it" -07305234 11 n 01 affliction 0 007 @ 07289014 n 0000 + 01797730 v 0101 ~ 07306032 n 0000 ~ 07372959 n 0000 ~ 07420354 n 0000 ~ 14081375 n 0000 ~ 14445226 n 0000 | a cause of great suffering and distress -07305438 11 n 01 convulsion 0 001 @ 07289014 n 0000 | a physical disturbance such as an earthquake or upheaval -07305551 11 n 01 embarrassment 0 003 @ 07289014 n 0000 + 01792097 v 0101 ! 07305760 n 0101 | some event that causes someone to be embarrassed; "the outcome of the vote was an embarrassment for the liberals" -07305760 11 n 01 disembarrassment 0 003 @ 07357101 n 0000 + 02350175 v 0103 ! 07305551 n 0101 | something that extricates you from embarrassment -07305907 11 n 02 hell 0 blaze 0 001 @ 07289014 n 0000 | a cause of difficulty and suffering; "war is hell"; "go to blazes" -07306032 11 n 02 calvary 0 martyrdom 1 002 @ 07305234 n 0000 + 10296618 n 0201 | any experience that causes intense suffering -07306160 11 n 01 onslaught 0 001 @ 07289014 n 0000 | a sudden and severe onset of trouble -07306252 11 n 02 scandal 0 outrage 0 009 @ 07289014 n 0000 + 01626562 a 0204 + 01810447 v 0207 + 01549964 a 0102 + 01810447 v 0103 + 01810447 v 0104 ~ 07306481 n 0000 ~i 07306680 n 0000 ~i 07306963 n 0000 | a disgraceful event -07306481 11 n 03 skeleton 0 skeleton_in_the_closet 0 skeleton_in_the_cupboard 0 001 @ 07306252 n 0000 | a scandal that is kept secret; "there must be a skeleton somewhere in that family's closet" -07306680 11 n 02 Teapot_Dome 0 Teapot_Dome_scandal 0 001 @i 07306252 n 0000 | a government scandal involving a former United States Navy oil reserve in Wyoming that was secretly leased to a private oil company in 1921; became symbolic of the scandals of the Harding administration -07306963 11 n 02 Watergate 0 Watergate_scandal 0 001 @i 07306252 n 0000 | a political scandal involving abuse of power and bribery and obstruction of justice; led to the resignation of Richard Nixon in 1974 -07307172 11 n 01 chapter 0 001 @ 07289956 n 0000 | a series of related events forming an episode; "a chapter of disasters" -07307297 11 n 01 idyll 0 003 @ 07289956 n 0000 + 01801446 a 0101 + 01751465 a 0101 | an episode of such pastoral or romantic charm as to qualify as the subject of a poetic idyll -07307477 11 n 01 incident 0 006 @ 07283608 n 0000 #p 07289956 n 0000 ~ 07307646 n 0000 ~ 07360647 n 0000 ~ 07360841 n 0000 ~ 07360957 n 0000 | a single distinct event -07307646 11 n 01 cause_celebre 0 001 @ 07307477 n 0000 | an incident that attracts great public attention -07307754 11 n 01 discharge 0 004 @ 07283608 n 0000 ~ 07307895 n 0000 ~ 07308563 n 0000 ~ 07436475 n 0000 | the sudden giving off of energy -07307895 11 n 01 electrical_discharge 0 004 @ 07307754 n 0000 ~ 07308042 n 0000 ~ 07308450 n 0000 ~ 11476231 n 0000 | a discharge of electricity -07308042 11 n 04 nerve_impulse 0 nervous_impulse 0 neural_impulse 0 impulse 0 002 @ 07307895 n 0000 ~ 07308308 n 0000 | the electrical discharge that travels along a nerve fiber; "they demonstrated the transmission of impulses from the cortex to the hypothalamus" -07308308 11 n 01 action_potential 0 001 @ 07308042 n 0000 | the local voltage change across the cell wall as a nerve impulse is transmitted -07308450 11 n 01 spike 0 002 @ 07307895 n 0000 + 00157219 v 0101 | a transient variation in voltage or current -07308563 11 n 03 explosion 0 detonation 0 blowup 0 011 @ 07307754 n 0000 + 00306723 v 0303 + 00306298 v 0201 + 00306723 v 0101 ~ 07408086 n 0000 ~ 07408171 n 0000 ~ 07408621 n 0000 ~ 07408796 n 0000 ~ 07408965 n 0000 ~ 07409121 n 0000 ~ 07409255 n 0000 | a violent release of energy caused by a chemical or nuclear reaction -07308889 11 n 03 case 0 instance 0 example 0 007 @ 07283608 n 0000 + 01021128 v 0301 + 02155799 v 0201 + 02155493 v 0201 ~ 07309223 n 0000 ~ 07309457 n 0000 ~ 07309599 n 0000 | an occurrence of something; "it was a case of bad judgment"; "another instance occurred yesterday"; "but there is always the famous example of the Smiths" -07309223 11 n 02 humiliation 0 mortification 0 003 @ 07308889 n 0000 + 01799794 v 0202 + 01799794 v 0101 | an instance in which you are caused to lose your prestige or self-respect; "he had to undergo one humiliation after another" -07309457 11 n 02 piece 0 bit 0 001 @ 07308889 n 0000 | an instance of some kind; "it was a nice piece of work"; "he had a bit of good luck" -07309599 11 n 02 time 0 clip 0 001 @ 07308889 n 0000 | an instance or single occasion for some event; "this time he succeeded"; "he called four times"; "he could do ten at a clip" -07309781 11 n 02 movement 0 motion 0 024 @ 07283608 n 0000 + 01835496 v 0103 ~ 07310338 n 0000 ~ 07310507 n 0000 ~ 07310642 n 0000 ~ 07310839 n 0000 ~ 07310991 n 0000 ~ 07311115 n 0000 ~ 07345593 n 0000 ~ 07345960 n 0000 ~ 07349679 n 0000 ~ 07350069 n 0000 ~ 07350192 n 0000 ~ 07350754 n 0000 ~ 07350893 n 0000 ~ 07351031 n 0000 ~ 07351195 n 0000 ~ 07351612 n 0000 ~ 07351909 n 0000 ~ 07352048 n 0000 ~ 07352190 n 0000 ~ 07364700 n 0000 ~ 07442068 n 0000 ~ 11433140 n 0000 | a natural event that involves a change in the position or location of something -07310338 11 n 02 crustal_movement 0 tectonic_movement 0 002 @ 07309781 n 0000 ;c 06115701 n 0000 | movement resulting from or causing deformation of the earth's crust -07310507 11 n 02 approach 0 approaching 0 002 @ 07309781 n 0000 + 02053941 v 0101 | the event of one object coming closer to another -07310642 11 n 02 passing 1 passage 0 003 @ 07309781 n 0000 + 02049696 v 0201 + 02049696 v 0101 | the motion of one object relative to another; "stellar passings can perturb the orbits of comets" -07310839 11 n 02 deflection 1 deflexion 1 001 @ 07309781 n 0000 | the movement of the pointer or pen of a measuring instrument from its zero position -07310991 11 n 02 bending 0 bend 0 002 @ 07309781 n 0000 ~ 07410883 n 0000 | movement that causes the formation of a curve -07311115 11 n 02 change_of_location 0 travel 0 017 @ 07309781 n 0000 + 01841079 v 0201 + 01835496 v 0201 ~ 07311661 n 0000 ~ 07312221 n 0000 ~ 07312503 n 0000 ~ 07362830 n 0000 ~ 07363067 n 0000 ~ 07363346 n 0000 ~ 07370125 n 0000 ~ 07370270 n 0000 ~ 07405893 n 0000 ~ 07445265 n 0000 ~ 07445480 n 0000 ~ 07445896 n 0000 ~ 07446270 n 0000 ~ 07446404 n 0000 | a movement through space that changes the location of something -07311540 11 n 01 fender-bender 0 001 @ 07301543 n 0000 | a collision between motor vehicles that produces minor damage -07311661 11 n 01 ascension 1 004 @ 07311115 n 0000 ;c 06095022 n 0000 + 02644050 a 0101 + 01970348 v 0104 | (astronomy) the rising of a star above the horizon -07311822 11 n 02 Ascension 2 Ascension_of_Christ 0 002 @i 07288801 n 0000 ;c 06453849 n 0000 | (New Testament) the rising of the body of Jesus into heaven on the 40th day after his Resurrection -07312018 11 n 03 Resurrection 0 Christ's_Resurrection 0 Resurrection_of_Christ 0 002 @i 07288801 n 0000 ;c 06453849 n 0000 | (New Testament) the rising of Christ on the third day after the Crucifixion -07312221 11 n 01 circulation 0 004 @ 07311115 n 0000 ;c 00017222 n 0000 + 02042843 v 0101 + 00270005 v 0103 | free movement or passage (as of cytoplasm within a cell or sap through a plant); "ocean circulation is an important part of global climate"; "a fan aids air circulation" -07312503 11 n 01 creep 0 002 @ 07311115 n 0000 + 01885845 v 0102 | a slow longitudinal movement or deformation -07312616 11 n 01 migration 0 003 @ 07296190 n 0000 + 02895861 a 0101 + 01857093 v 0101 | the periodic passage of groups of animals (especially birds or fishes) from one region to another for feeding or breeding -07312829 11 n 01 migration 1 002 @ 00029378 n 0000 ;c 06084469 n 0000 | (chemistry) the nonrandom movement of an atom or radical from one place to another within a molecule -07313004 11 n 02 shrinking 0 shrinkage 0 005 @ 07355887 n 0000 + 00241038 v 0201 + 00240571 v 0201 + 00241038 v 0101 ~ 07313241 n 0000 | process or result of becoming less or smaller; "the material lost 2 inches per yard in shrinkage" -07313241 11 n 03 compression 0 condensation 0 contraction 2 006 @ 07313004 n 0000 + 00365647 v 0201 + 00366547 v 0201 + 00365188 v 0201 + 01387786 v 0101 ~ 07313518 n 0000 | the process or result of becoming smaller or pressed together; "the contraction of a gas on cooling" -07313518 11 n 02 constriction 0 coarctation 0 002 @ 07313241 n 0000 + 00304422 v 0101 | tight or narrow compression -07313636 11 n 02 injury 0 accidental_injury 0 004 @ 07301336 n 0000 + 00069879 v 0101 ~ 07411490 n 0000 ~ 07433662 n 0000 | an accident that results in physical damage or hurt -07313814 11 n 06 rupture 0 breach 0 break 3 severance 0 rift 0 falling_out 0 004 @ 07331400 n 0000 + 01560984 v 0401 + 02431320 v 0305 ~ 07314078 n 0000 | a personal or social separation (as between opposing factions); "they hoped to avoid a break in relations" -07314078 11 n 01 schism 0 003 @ 07313814 n 0000 + 03115053 a 0101 ~i 15298283 n 0000 | the formal separation of a church into two churches or the withdrawal of one group over doctrinal differences -07314277 11 n 01 hap 0 002 @ 07300960 n 0000 + 00339934 v 0102 | an accidental happening; "he recorded all the little haps and mishaps of his life" -07314427 11 n 03 mishap 0 misadventure 0 mischance 0 008 @ 07304852 n 0000 ~ 07301336 n 0000 ~ 07301846 n 0000 ~ 07302267 n 0000 ~ 07302407 n 0000 ~ 07314658 n 0000 ~ 07317519 n 0000 ~ 07478874 n 0000 | an instance of misfortune -07314658 11 n 01 puncture 0 004 @ 07314427 n 0000 + 00309990 v 0101 + 00403798 v 0101 + 01274971 v 0101 | loss of air pressure in a tire when a hole is made by some sharp object -07314838 11 n 05 calamity 0 catastrophe 0 disaster 0 tragedy 0 cataclysm 0 016 @ 07304852 n 0000 + 00587193 a 0502 + 00587193 a 0501 + 01363153 a 0402 + 01363153 a 0401 + 01050088 a 0303 + 01050088 a 0102 ~ 07315350 n 0000 ~ 07315631 n 0000 ~ 07315790 n 0000 ~ 07316242 n 0000 ~ 07316403 n 0000 ~ 07316603 n 0000 ~ 07316724 n 0000 ~ 07348870 n 0000 ~ 07349299 n 0000 | an event resulting in great loss and misfortune; "the whole city was affected by the irremediable calamity"; "the earthquake was a disaster" -07315350 11 n 05 act_of_God 0 force_majeure 0 vis_major 0 inevitable_accident 0 unavoidable_casualty 0 001 @ 07314838 n 0000 | a natural and unavoidable catastrophe that interrupts the expected course of events; "he discovered that his house was not insured against acts of God" -07315631 11 n 01 apocalypse 0 003 @ 07314838 n 0000 + 02633115 a 0101 + 01882292 a 0102 | a cosmic cataclysm in which God destroys the ruling powers of evil -07315790 11 n 01 famine 0 002 @ 07314838 n 0000 ~ 07315965 n 0000 | a severe shortage of food (as through crop failure) resulting in violent hunger and starvation and death -07315965 11 n 04 the_Irish_Famine 0 the_Great_Hunger 0 the_Great_Starvation 0 the_Great_Calamity 0 001 @ 07315790 n 0000 | a famine in Ireland resulting from a potato blight; between 1846 and 1851 a million people starved to death and 1.6 million emigrated (most to America) -07316242 11 n 01 kiss_of_death 0 001 @ 07314838 n 0000 | something that is ruinous; "if this were known it would be the kiss of death for my political career" -07316403 11 n 01 meltdown 0 001 @ 07314838 n 0000 | a disaster comparable to a nuclear meltdown; "there is little likelihood of a meltdown comparable to the American banking collapse in March 1933" -07316603 11 n 01 plague 0 001 @ 07314838 n 0000 | any large scale calamity (especially when thought to be sent by God) -07316724 11 n 01 visitation 1 002 @ 07314838 n 0000 + 00260142 v 0101 | any disaster or catastrophe; "a visitation of the plague" -07316856 11 n 03 break 1 good_luck 0 happy_chance 0 001 @ 07300960 n 0000 | an unexpected piece of good luck; "he finally got his big break" -07316999 11 n 02 coincidence 0 happenstance 0 001 @ 07300960 n 0000 | an event that might have been arranged although it was really accidental -07317144 11 n 01 lottery 0 001 @ 07300960 n 0000 | something that is regarded as a chance event; "the election was just a lottery to them" -07317285 11 n 01 pileup 0 001 @ 07301543 n 0000 | multiple collisions of vehicles -07317369 11 n 02 smash 0 smash-up 0 003 @ 07301543 n 0000 ;c 03791235 n 0000 + 01561408 v 0101 | a serious collision (especially of motor vehicles) -07317519 11 n 02 slip 0 trip 0 004 @ 07314427 n 0000 + 01900760 v 0201 + 01900408 v 0202 ~ 00076884 n 0000 | an accidental misstep threatening (or causing) a fall; "he blamed his slip on the ice"; "the jolt caused many slips and a few spills" -07317764 11 n 01 failure 0 013 @ 07283608 n 0000 + 02522319 v 0101 + 02528380 v 0101 ! 07319103 n 0101 ~ 07318133 n 0000 ~ 07318299 n 0000 ~ 07318476 n 0000 ~ 07319652 n 0000 ~ 07319774 n 0000 ~ 07365024 n 0000 ~ 07367091 n 0000 ~ 07421316 n 0000 ~ 07475364 n 0000 | an event that does not accomplish its intended purpose; "the surprise party was a complete failure" -07318133 11 n 03 downfall 1 ruin 1 ruination 1 003 @ 07317764 n 0000 + 02558951 v 0201 ~ 07333162 n 0000 | failure that results in a loss of position or reputation -07318299 11 n 01 flame-out 1 001 @ 07317764 n 0000 | a complete or conspicuous failure; "the spectacular flame-out of the company's stock cost many people their life savings" -07318476 11 n 01 malfunction 0 004 @ 07317764 n 0000 + 01525295 v 0101 ~ 07318618 n 0000 ~ 07318824 n 0000 | a failure to function normally -07318618 11 n 01 blowout 0 002 @ 07318476 n 0000 + 00435294 v 0101 | a sudden malfunction of a part or apparatus; "the right front tire had a blowout"; "as a result of the blowout we lost all the lights" -07318824 11 n 01 stall 0 004 @ 07318476 n 0000 + 01862776 v 0101 + 01862640 v 0101 + 01862340 v 0101 | a malfunction in the flight of an aircraft in which there is a sudden loss of lift that results in a downward plunge; "the plane went into a stall and I couldn't control it" -07319103 11 n 01 success 0 006 @ 07283608 n 0000 ! 07317764 n 0101 ~ 07319399 n 0000 ~ 07319549 n 0000 ~ 07473441 n 0000 ~ 07477413 n 0000 | an event that accomplishes its intended purpose; "let's call heads a success and tails a failure"; "the election was a remarkable success for the Whigs" -07319399 11 n 01 barnburner 0 002 @ 07319103 n 0000 ;u 07075172 n 0000 | an impressively successful event; "the rock concert was a real barnburner" -07319549 11 n 01 Godspeed 0 001 @ 07319103 n 0000 | a successful journey; "they wished him Godspeed" -07319652 11 n 02 miscarriage 0 abortion 0 003 @ 07317764 n 0000 + 00353839 v 0201 + 02528380 v 0103 | failure of a plan -07319774 11 n 02 miss 0 misfire 1 003 @ 07317764 n 0000 + 01237901 v 0101 + 02022659 v 0101 | a failure to hit (or meet or find etc) -07319909 11 n 03 emergence 0 egress 1 issue 0 005 @ 07290905 n 0000 + 00528990 v 0206 + 00423971 v 0101 ~ 07320176 n 0000 ~ 07434782 n 0000 | the becoming visible; "not a day's difference between the emergence of the andrenas and the opening of the willow catkins" -07320176 11 n 01 eruption 2 002 @ 07319909 n 0000 + 00548266 v 0101 | the emergence of a tooth as it breaks through the gum -07320302 11 n 04 birth 0 nativity 0 nascency 0 nascence 0 010 @ 07296428 n 0000 + 00003356 a 0301 + 00056930 v 0104 ! 07355491 n 0101 ~ 07320622 n 0000 ~ 07320734 n 0000 ~ 07321012 n 0000 ~ 07321142 n 0000 ~ 07321247 n 0000 + 00360932 v 0101 | the event of being born; "they celebrated the birth of their first child" -07320622 11 n 01 delivery 0 001 @ 07320302 n 0000 | the event of giving birth; "she had a difficult delivery" -07320734 11 n 01 live_birth 0 003 @ 07320302 n 0000 ! 00230475 n 0103 ~ 07320894 n 0000 | the birth of a living fetus (regardless of the length of gestation) -07320894 11 n 02 blessed_event 0 happy_event 0 002 @ 07320734 n 0000 ;u 07075172 n 0000 | the live birth of a child -07321012 11 n 01 posthumous_birth 0 001 @ 07320302 n 0000 | birth of a child by Caesarean section after the death of the mother -07321142 11 n 01 posthumous_birth 1 001 @ 07320302 n 0000 | birth of a child after the father has died -07321247 11 n 03 reincarnation 0 rebirth 0 renascence 0 003 @ 07320302 n 0000 ~ 07321387 n 0000 ~ 07321517 n 0000 | a second or new birth -07321387 11 n 01 transmigration 0 002 @ 07321247 n 0000 + 02698726 v 0102 | the passing of a soul into another body after death -07321517 11 n 01 cycle_of_rebirth 0 003 @ 07321247 n 0000 ;c 06236802 n 0000 ~ 07321657 n 0000 | (Hinduism) repeated rebirth in new forms -07321657 11 n 01 moksa 0 002 @ 07321517 n 0000 ;c 06236802 n 0000 | (Hinduism) release from the cycle of rebirth -07321772 11 n 01 appearance 0 007 @ 07283608 n 0000 + 00422090 v 0101 ! 07335716 n 0101 ~ 07321967 n 0000 ~ 07323024 n 0000 ~ 07323231 n 0000 ~ 07323436 n 0000 | the event of coming into sight -07321967 11 n 01 reappearance 0 003 @ 07321772 n 0000 + 00426301 v 0101 ~ 07322138 n 0000 | the event of something appearing again; "the reappearance of Halley's comet" -07322138 11 n 02 egress 0 emersion 0 005 @ 07321967 n 0000 #p 07368646 n 0000 ;c 06095022 n 0000 ! 07322341 n 0202 ! 07322341 n 0101 | (astronomy) the reappearance of a celestial body after an eclipse -07322341 11 n 02 ingress 0 immersion 1 005 @ 07335716 n 0000 #p 07368646 n 0000 ;c 06095022 n 0000 ! 07322138 n 0202 ! 07322138 n 0101 | (astronomy) the disappearance of a celestial body prior to an eclipse -07322550 11 n 05 Second_Coming 0 Second_Coming_of_Christ 0 Second_Advent 0 Advent 0 Parousia 0 002 @i 07323231 n 0000 ;c 06184270 n 0000 | (Christian theology) the reappearance of Jesus as judge for the Last Judgment -07322769 11 n 02 makeup 0 make-up 0 003 @ 00029378 n 0000 + 02520730 v 0201 + 02520730 v 0101 | an event that is substituted for a previously cancelled event; "he missed the test and had to take a makeup"; "the two teams played a makeup one week later" -07323024 11 n 03 materialization 0 materialisation 0 manifestation 1 004 @ 07321772 n 0000 + 00423075 v 0301 + 00344174 v 0203 + 00344174 v 0102 | an appearance in bodily form (as of a disembodied spirit) -07323231 11 n 01 manifestation 0 006 @ 07321772 n 0000 ~i 07322550 n 0000 ~ 07323605 n 0000 ~ 07323682 n 0000 ~ 07323821 n 0000 ~ 07349069 n 0000 | a clear appearance; "a manifestation of great emotion" -07323436 11 n 01 apparition 0 001 @ 07321772 n 0000 | the appearance of a ghostlike figure; "I was recalled to the present by the apparition of a frightening specter" -07323605 11 n 01 epiphany 0 001 @ 07323231 n 0000 | a divine manifestation -07323682 11 n 01 theophany 0 001 @ 07323231 n 0000 | a visible (but not necessarily material) manifestation of a deity to a human person -07323821 11 n 01 Word_of_God 0 001 @ 07323231 n 0000 | a manifestation of the mind and will of God -07323922 11 n 03 origin 0 origination 0 inception 0 010 @ 07290905 n 0000 + 02743343 v 0201 + 02624263 v 0201 + 02743343 v 0101 + 02624263 v 0101 + 01628449 v 0101 ~ 07324235 n 0000 ~ 07326557 n 0000 ~ 07327013 n 0000 ~ 07327288 n 0000 | an event that is a beginning; a first part or stage of subsequent events -07324235 11 n 01 germination 0 002 @ 07323922 n 0000 + 00357667 v 0101 | the origin of some development; "the germination of their discontent" -07324380 11 n 02 genesis 0 generation 0 003 @ 07290905 n 0000 + 01627355 v 0201 + 00054628 v 0207 | a coming into being -07324502 11 n 01 ground_floor 0 001 @ 07290905 n 0000 | becoming part of a venture at the beginning (regarded as position of advantage); "he got in on the ground floor" -07324673 11 n 03 emergence 1 outgrowth 0 growth 1 005 @ 07290905 n 0000 + 02624263 v 0307 + 00125841 v 0302 + 00426581 v 0101 ~ 07324917 n 0000 | the gradual beginning or coming forth; "figurines presage the emergence of sculpture in Greece" -07324917 11 n 01 rise 0 006 @ 07324673 n 0000 + 00432436 v 0102 ! 07427728 n 0101 ~ 07325102 n 0000 ~ 07352835 n 0000 ~ 07479366 n 0000 | a growth in strength or number or importance -07325102 11 n 01 crime_wave 0 001 @ 07324917 n 0000 | a sudden rise in the crime rate -07325190 11 n 01 start 0 020 @ 07290905 n 0000 + 02600948 v 0102 + 02608823 v 0102 + 02379528 v 0101 + 01650610 v 0101 + 01628449 v 0103 + 02608347 v 0102 + 00348746 v 0103 + 00345761 v 0105 ~ 07325639 n 0000 ~ 07325762 n 0000 ~ 07325864 n 0000 ~ 07325990 n 0000 ~ 07326108 n 0000 ~ 07326262 n 0000 ~ 07326369 n 0000 ~ 07329169 n 0000 ~ 07329363 n 0000 ~ 07329568 n 0000 ~ 07329737 n 0000 | the beginning of anything; "it was off to a good start" -07325639 11 n 01 adrenarche 0 001 @ 07325190 n 0000 | the increase in activity of the adrenal glands just before puberty -07325762 11 n 01 menarche 0 001 @ 07325190 n 0000 | the first occurrence of menstruation in a woman -07325864 11 n 01 thelarche 0 001 @ 07325190 n 0000 | the start of breast development in a woman at the beginning of puberty -07325990 11 n 02 onset 0 oncoming 0 001 @ 07325190 n 0000 | the beginning or early stages; "the onset of pneumonia" -07326108 11 n 02 dawn 1 morning 0 002 @ 07325190 n 0000 + 02609614 v 0101 | the earliest period; "the dawn of civilization"; "the morning of the world" -07326262 11 n 02 flying_start 0 running_start 0 001 @ 07325190 n 0000 | a quick and auspicious beginning -07326369 11 n 01 opener 0 002 @ 07325190 n 0000 + 02425462 v 0101 | the first event in a series; "she played Chopin for her opener"; "the season's opener was a game against the Yankees" -07326557 11 n 01 cause 0 009 @ 07323922 n 0000 + 00323199 a 0101 + 01645601 v 0101 + 00770437 v 0103 ~ 07326880 n 0000 ~ 07327608 n 0000 ~ 07327805 n 0000 ~ 07328756 n 0000 ~ 07426108 n 0000 | events that provide the generative force that is the origin of something; "they are trying to determine the cause of the crash" -07326880 11 n 01 antecedent 0 003 @ 07326557 n 0000 + 00121865 a 0101 + 02712443 v 0105 | a preceding occurrence or cause or event -07327013 11 n 03 preliminary 2 overture 0 prelude 0 003 @ 07323922 n 0000 + 02671498 v 0301 + 00878086 a 0101 | something that serves as a preceding event or introduces what follows; "training is a necessary preliminary to employment"; "drinks were the overture to dinner" -07327288 11 n 03 emanation 0 rise 3 procession 0 003 @ 07323922 n 0000 ;c 06183899 n 0000 + 00098770 v 0202 | (theology) the origination of the Holy Spirit at Pentecost; "the emanation of the Holy Spirit"; "the rising of the Holy Ghost"; "the doctrine of the procession of the Holy Spirit from the Father and the Son" -07327608 11 n 02 etiology 0 aetiology 0 007 @ 07326557 n 0000 + 02940953 a 0204 + 10066059 n 0202 + 02940953 a 0203 + 02940953 a 0102 + 02940953 a 0101 + 10066059 n 0101 | the cause of a disease -07327805 11 n 01 factor 0 007 @ 07326557 n 0000 ~ 07328058 n 0000 ~ 07328305 n 0000 ~ 07328436 n 0000 ~ 07328646 n 0000 ~ 15023294 n 0000 ~ 15023720 n 0000 | anything that contributes causally to a result; "a number of factors determined the outcome" -07328058 11 n 01 fundamental 0 001 @ 07327805 n 0000 | any factor that could be considered important to the understanding of a particular business; "fundamentals include a company's growth, revenues, earnings, management, and capital structure" -07328305 11 n 01 parameter 0 001 @ 07327805 n 0000 | any factor that defines a system and determines (or limits) its performance -07328436 11 n 01 unknown_quantity 0 001 @ 07327805 n 0000 | a factor in a given situation whose bearing and importance is not apparent; "I don't know what the new man will do; he's still an unknown quantity" -07328646 11 n 01 wild_card 0 001 @ 07327805 n 0000 | an unpredictable factor; "the weather was a wild card" -07328756 11 n 01 producer 0 002 @ 07326557 n 0000 + 01752495 v 0101 | something that produces; "Maine is a leading producer of potatoes"; "this microorganism is a producer of disease" -07328942 11 n 02 creation 0 conception 0 004 @ 07290905 n 0000 + 01640207 v 0101 + 01753788 v 0101 ~ 07436986 n 0000 | the event that occurred at the beginning of something; "from its creation the plan was doomed to failure" -07329169 11 n 01 alpha 0 002 @ 07325190 n 0000 + 01276482 a 0101 | the beginning of a series or sequence; "the Alpha and Omega, the first and the last, the beginning and the end"--Revelations -07329363 11 n 03 opening 0 opening_night 0 curtain_raising 0 002 @ 07325190 n 0000 + 01008947 a 0101 | the first performance (as of a theatrical production); "the opening received good critical reviews" -07329568 11 n 03 kickoff 0 send-off 0 start-off 0 002 @ 07325190 n 0000 + 02395782 v 0102 | a start given to contestants; "I was there with my parents at the kickoff" -07329737 11 n 01 racing_start 0 002 @ 07325190 n 0000 ~ 07329833 n 0000 | the start of a race -07329833 11 n 02 flying_start 1 running_start 1 001 @ 07329737 n 0000 | a racing start in which the contestants are already in full motion when they pass the starting line -07330007 11 n 02 destiny 0 fate 0 007 @ 07283608 n 0000 + 00746479 v 0202 ~ 07330250 n 0000 ~ 07330362 n 0000 ~ 07330560 n 0000 ~ 07330666 n 0000 ~ 07334206 n 0000 | an event (or a course of events) that will inevitably happen in the future -07330250 11 n 01 inevitable 0 001 @ 07330007 n 0000 | an unavoidable event; "don't argue with the inevitable" -07330362 11 n 01 karma 0 003 @ 07330007 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | (Hinduism and Buddhism) the effects of a person's actions that determine his destiny in his next incarnation -07330560 11 n 02 kismet 0 kismat 0 002 @ 07330007 n 0000 ;c 06234825 n 0000 | (Islam) the will of Allah -07330666 11 n 01 predestination 0 004 @ 07330007 n 0000 + 10080508 n 0104 + 00746242 v 0101 + 00702969 v 0101 | previous determination as if by destiny or fate -07330828 11 n 02 annihilation 0 disintegration 1 003 @ 07334490 n 0000 + 00470701 v 0102 ~ 07332691 n 0000 | total destruction; "bomb tests resulted in the annihilation of the atoll" -07331013 11 n 02 eradication 0 obliteration 0 005 @ 07334490 n 0000 + 00472230 v 0201 + 00478830 v 0202 + 00311338 v 0201 + 01662118 v 0102 | the complete destruction of every trace of something -07331210 11 n 04 debilitation 0 enervation 0 enfeeblement 0 exhaustion 0 004 @ 07427337 n 0000 + 00389638 v 0301 + 00389856 v 0201 + 00389638 v 0102 | serious weakening and loss of energy -07331400 11 n 03 separation 0 breakup 0 detachment 0 007 @ 07296428 n 0000 + 01299758 v 0301 + 02431320 v 0206 + 01557774 v 0101 ~ 07313814 n 0000 ~ 07367548 n 0000 + 02029663 v 0201 | coming apart -07331600 11 n 01 diffusion 0 002 @ 07445896 n 0000 ;c 07978423 n 0000 | the spread of social institutions (and myths and skills) from one society to another -07331759 11 n 02 dispersion 0 scattering 0 005 @ 07445896 n 0000 + 02030424 v 0205 + 02028994 v 0101 ~ 07331932 n 0000 ~ 07332148 n 0000 | spreading widely or driving off -07331932 11 n 01 Diaspora 0 001 @ 07331759 n 0000 | the dispersion of the Jews outside Israel; from the destruction of the temple in Jerusalem in 587-86 BC when they were exiled to Babylonia up to the present time -07332148 11 n 01 dissipation 0 003 @ 07331759 n 0000 + 02030424 v 0102 + 02028994 v 0102 | breaking up and scattering by dispersion; "the dissipation of the mist" -07332313 11 n 01 invasion 1 003 @ 07445896 n 0000 ;c 06043075 n 0000 + 01227488 v 0101 | (pathology) the spread of pathogenic microorganisms or malignant cells to new sites in the body; "the tumor's invasion of surrounding structures" -07332550 11 n 01 irradiation 0 002 @ 07445896 n 0000 ;c 06080522 n 0000 | (physiology) the spread of sensory neural impulses in the cortex -07332691 11 n 02 extinction 0 extermination 0 002 @ 07330828 n 0000 + 00470701 v 0103 | complete annihilation; "they think a meteor cause the extinction of the dinosaurs" -07332864 11 n 01 Crucifixion 0 001 @i 07355491 n 0000 | the death of Jesus by crucifixion -07332956 11 n 02 fatality 0 human_death 0 003 @ 07355491 n 0000 ~ 07361576 n 0000 ~ 07361717 n 0000 | a death resulting from an accident or a disaster; "a decrease in the number of automobile fatalities" -07333162 11 n 01 finish 1 001 @ 07318133 n 0000 | the downfall of someone (as of persons on one side of a conflict); "booze will be the finish of him"; "it was a fight to the finish" -07333347 11 n 01 martyrdom 0 002 @ 07355491 n 0000 + 10296832 n 0101 | death that is imposed because of the person's adherence of a religious faith or cause -07333506 11 n 01 megadeath 0 001 @ 07355491 n 0000 | the death of a million people; "they calibrate the effects of atom bombs in megadeaths" -07333649 11 n 07 passing 0 loss 2 departure 0 exit 0 expiration 0 going 0 release 0 009 @ 07355491 n 0000 ;u 06605046 n 0000 + 00358431 v 0604 + 00358431 v 0507 + 00358431 v 0405 + 01848718 v 0303 + 02014165 v 0301 + 02008396 v 0301 + 00358431 v 0108 | euphemistic expressions for death; "thousands mourned his passing" -07333971 11 n 01 wrongful_death 0 001 @ 07355491 n 0000 | a death that results from a wrongful act or from negligence; a death that can serve as the basis for a civil action for damages on behalf of the dead person's family or heirs -07334206 11 n 04 doom 0 doomsday 0 day_of_reckoning 0 end_of_the_world 0 002 @ 07330007 n 0000 + 00890855 v 0101 | an unpleasant or disastrous destiny; "everyone was aware of the approaching doom but was helpless to avoid it"; "that's unfortunate but it isn't the end of the world" -07334490 11 n 03 destruction 0 demolition 0 wipeout 0 014 @ 07291312 n 0000 + 00470701 v 0305 + 00478830 v 0303 + 00479391 v 0302 + 00471196 v 0302 + 01621219 v 0301 + 01656458 v 0201 + 01564144 v 0101 ~ 07330828 n 0000 ~ 07331013 n 0000 ~ 07334876 n 0000 ~ 07335097 n 0000 ~ 07335243 n 0000 ~ 07335581 n 0000 | an event (or the result of an event) that completely destroys something -07334876 11 n 02 ravage 0 depredation 0 004 @ 07334490 n 0000 ;u 06295235 n 0000 + 00388635 v 0105 + 00389083 v 0102 | (usually plural) a destructive action; "the ravages of time"; "the depredations of age and disease" -07335097 11 n 02 razing 0 wrecking 0 002 @ 07334490 n 0000 + 01661804 v 0102 | the event of a structure being completely demolished and leveled -07335243 11 n 02 ruin 0 ruination 0 005 @ 07334490 n 0000 + 01161635 a 0102 + 01564144 v 0102 ~ 07335414 n 0000 ~ 07478718 n 0000 | an event that results in destruction -07335414 11 n 02 devastation 0 desolation 0 004 @ 07335243 n 0000 + 00388635 v 0204 + 00531302 v 0202 + 00388635 v 0103 | an event that results in total destruction -07335581 11 n 02 wrack 0 rack 0 002 @ 07334490 n 0000 + 01566185 v 0103 | the destruction or collapse of something; "wrack and ruin" -07335716 11 n 01 disappearance 0 007 @ 07283608 n 0000 + 02156546 v 0102 ! 07321772 n 0101 ~ 07322341 n 0000 ~ 07335917 n 0000 ~ 07336104 n 0000 ~ 07336214 n 0000 | the event of passing out of sight -07335917 11 n 01 evanescence 0 003 @ 07335716 n 0000 + 01756940 a 0101 + 00421691 v 0101 | the event of fading and gradually vanishing from sight; "the evanescence of the morning mist" -07336104 11 n 01 vanishing 0 002 @ 07335716 n 0000 + 00426958 v 0102 | a sudden or mysterious disappearance -07336214 11 n 02 receding 0 fadeout 0 003 @ 07335716 n 0000 + 00447771 v 0202 + 00570694 v 0101 | a slow or gradual disappearance -07336346 11 n 01 disappearance 1 001 @ 07283608 n 0000 | ceasing to exist; "he regretted the disappearance of Greek from school curricula"; "what was responsible for the disappearance of the rainforest?"; "the disappearance of resistance at very low temperatures" -07336612 11 n 01 adversity 0 002 @ 07304852 n 0000 + 00997036 a 0101 | a stroke of ill fortune; a calamitous event; "a period marked by adversities" -07336763 11 n 01 hardship 0 001 @ 07304852 n 0000 | something that causes or entails suffering; "I cannot think it a hardship that more indulgence is allowed to men than to women"- James Boswell; "the many hardships of frontier life" -07336999 11 n 01 knock 2 001 @ 07304852 n 0000 | a bad experience; "the school of hard knocks" -07337096 11 n 01 vagary 0 001 @ 07296428 n 0000 | an unexpected and inexplicable change in something (in a situation or a person's behavior, etc.); "the vagaries of the weather"; "his wealth fluctuates with the vagaries of the stock market"; "he has dealt with human vagaries for many years" -07337390 11 n 02 variation 1 fluctuation 0 011 @ 07296428 n 0000 + 01876907 v 0201 + 02662297 v 0101 ~ 07337694 n 0000 ~ 07337935 n 0000 ~ 07366289 n 0000 ~ 07443761 n 0000 ~ 07444100 n 0000 ~ 07444278 n 0000 ~ 07444392 n 0000 ~ 07444495 n 0000 | an instance of change; the rate or magnitude of change -07337694 11 n 01 vicissitude 0 001 @ 07337390 n 0000 | a variation in circumstances or fortune at different times in your life or in the development of something; "the project was subject to the usual vicissitudes of exploratory research" -07337935 11 n 01 allomerism 0 003 @ 07337390 n 0000 ;c 06084469 n 0000 + 02613294 a 0101 | (chemistry) variability in chemical composition without variation in crystalline form -07338114 11 n 04 engagement 0 mesh 0 meshing 0 interlocking 0 005 @ 07339329 n 0000 + 01510827 v 0302 + 01510827 v 0202 + 01510827 v 0101 + 00220115 v 0101 | contact by fitting together; "the engagement of the clutch"; "the meshing of gears" -07338358 11 n 01 flick 0 002 @ 07339329 n 0000 + 01591158 v 0102 | a light sharp contact (usually with something flexible); "he gave it a flick with his finger"; "he felt the flick of a whip" -07338552 11 n 01 impact 0 003 @ 07339329 n 0000 ~ 07338681 n 0000 ~ 07338970 n 0000 | the striking of one body against another -07338681 11 n 02 blow 0 bump 0 010 @ 07338552 n 0000 + 02243567 a 0203 + 01239619 v 0201 ~ 07339098 n 0000 ~ 07409930 n 0000 ~ 07410021 n 0000 ~ 07410207 n 0000 ~ 07410526 n 0000 ~ 07410613 n 0000 ~ 07410745 n 0000 | an impact (as from a collision); "the bump threw him off the bicycle" -07338970 11 n 01 slam 1 003 @ 07338552 n 0000 + 01242689 v 0101 + 01242391 v 0101 | a forceful impact that makes a loud noise -07339098 11 n 04 jolt 0 jar 0 jounce 0 shock 2 003 @ 07338681 n 0000 + 01864865 v 0202 + 01864865 v 0101 | a sudden jarring impact; "the door closed with a jolt"; "all the jars and jolts were smoothed out by the shock absorbers" -07339329 11 n 03 contact 0 impinging 0 striking 0 009 @ 07283608 n 0000 + 01236164 v 0302 + 02569790 v 0201 + 01205696 v 0104 ~ 07302542 n 0000 ~ 07338114 n 0000 ~ 07338358 n 0000 ~ 07338552 n 0000 ~ 07409592 n 0000 | the physical coming together of two or more things; "contact with the pier scraped paint from the hull" -07339653 11 n 02 damage 1 equipment_casualty 0 004 @ 07340094 n 0000 ;c 08199025 n 0000 ~ 07339808 n 0000 ~ 07339941 n 0000 | loss of military equipment -07339808 11 n 02 battle_damage 0 combat_casualty 0 002 @ 07339653 n 0000 ;c 08199025 n 0000 | loss of military equipment in battle -07339941 11 n 02 operational_damage 0 operational_casualty 0 002 @ 07339653 n 0000 ;c 08199025 n 0000 | loss of military equipment in field operations -07340094 11 n 01 casualty 1 004 @ 07355887 n 0000 ;c 08199025 n 0000 ~ 07339653 n 0000 ~ 07340725 n 0000 | a decrease of military personnel or equipment -07340249 11 n 03 wound 0 injury 1 combat_injury 0 005 @ 07340725 n 0000 ;c 08199025 n 0000 + 00069879 v 0102 ~ 07340453 n 0000 ~ 07340592 n 0000 | a casualty to military personnel resulting from combat -07340453 11 n 01 blighty_wound 0 001 @ 07340249 n 0000 | a wound that would cause an English soldier to be sent home from service abroad -07340592 11 n 01 flesh_wound 0 001 @ 07340249 n 0000 | a wound that does not damage important internal organs or shatter any bones -07340725 11 n 02 personnel_casualty 0 loss 0 004 @ 07340094 n 0000 ;c 08199025 n 0000 ~ 07340249 n 0000 ~ 07340895 n 0000 | military personnel lost by death or capture -07340895 11 n 01 sacrifice 0 001 @ 07340725 n 0000 | personnel that are sacrificed (e.g., surrendered or lost in order to gain an objective) -07341038 11 n 02 cycle 1 oscillation 1 006 @ 07296190 n 0000 + 01878063 v 0201 ~ 07341304 n 0000 ~ 07341665 n 0000 ~ 07341860 n 0000 ~ 15288111 n 0000 | a single complete execution of a periodically repeated phenomenon; "a year constitutes a cycle of the seasons" -07341304 11 n 01 cardiac_cycle 0 001 @ 07341038 n 0000 | the complete cycle of events in the heart from the beginning of one heart beat to the beginning of the next; an electrical impulse conducted through the heart muscle that constricts the atria which is followed by constriction of the ventricles; "the cardiac cycle can be shown on an electrocardiogram" -07341665 11 n 02 Carnot_cycle 0 Carnot's_ideal_cycle 0 001 @ 07341038 n 0000 | a cycle (of expansion and compression) of an idealized reversible heat engine that does work without loss of heat -07341860 11 n 01 pass 1 002 @ 07341038 n 0000 ;c 03082979 n 0000 | one complete cycle of operations (as by a computer); "it was not possible to complete the computation in a single pass" -07342049 11 n 02 repeat 0 repetition 0 012 @ 07296190 n 0000 + 01964367 a 0202 + 00343334 v 0202 + 01727490 v 0103 + 02595662 v 0101 + 00343334 v 0102 + 01734502 v 0104 + 00958334 v 0101 ~ 07342383 n 0000 ~ 07342495 n 0000 ~ 07343195 n 0000 ~ 07343363 n 0000 | an event that repeats; "the events today were a repeat of yesterday's" -07342383 11 n 01 sequence 0 001 @ 07342049 n 0000 | several repetitions of a melodic phrase in different keys -07342495 11 n 01 cycle 2 009 @ 07342049 n 0000 + 01967803 a 0101 + 00675701 a 0101 + 00675701 a 0102 + 00343771 v 0101 + 02052675 v 0101 + 02051270 v 0101 ~ 07342772 n 0000 ~ 07343017 n 0000 | a periodically repeated sequence of events; "a cycle of reprisal and retaliation" -07342772 11 n 01 merry-go-round 0 001 @ 07342495 n 0000 | a never-ending cycle of activities and events (especially when they seem to have little purpose); "if we lose the election the whole legislative merry-go-round will have to start over" -07343017 11 n 01 samsara 0 003 @ 07342495 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | (Hinduism and Buddhism) the endless cycle of birth and suffering and death and rebirth -07343195 11 n 02 replay 0 rematch 0 004 @ 07342049 n 0000 ;c 00455599 n 0000 + 01081001 v 0101 + 01075883 v 0101 | something (especially a game) that is played again -07343363 11 n 02 recurrence 0 return 1 005 @ 07342049 n 0000 + 00592880 a 0102 + 00343334 v 0101 ~ 07343574 n 0000 ~ 07343713 n 0000 | happening again (especially at regular intervals); "the return of spring" -07343574 11 n 03 atavism 0 reversion 1 throwback 0 002 @ 07343363 n 0000 + 09819860 n 0101 | a reappearance of an earlier characteristic -07343713 11 n 01 flashback 0 001 @ 07343363 n 0000 | an unexpected but vivid recurrence of a past experience (especially a recurrence of the effects of an hallucinogenic drug taken much earlier) -07343910 11 n 01 sunrise 0 001 @ 07296190 n 0000 | the daily event of the sun rising above the horizon -07344015 11 n 01 sunset 0 001 @ 07296190 n 0000 | the daily event of the sun sinking below the horizon -07344120 11 n 02 ground_swell 0 heavy_swell 0 001 @ 07348258 n 0000 | a broad and deep undulation of the ocean -07344233 11 n 03 surf 0 breaker 0 breakers 0 003 @ 07352190 n 0000 + 01972976 v 0201 + 01948077 v 0102 | waves breaking on the shore -07344368 11 n 02 wake 0 backwash 0 001 @ 07352190 n 0000 | the wave that spreads behind a boat as it moves forward; "the motorboat's wake capsized the canoe" -07344528 11 n 01 swash 0 002 @ 07352190 n 0000 + 01374020 v 0106 | the movement or sound of water; "the swash of waves on the beach" -07344663 11 n 04 ripple 0 rippling 0 riffle 0 wavelet 0 006 @ 07352190 n 0000 + 07352190 n 0401 + 02040054 v 0303 + 02040054 v 0201 + 02187922 v 0101 + 02040054 v 0101 | a small wave on the surface of a liquid -07344875 11 n 02 gravity_wave 0 gravitation_wave 0 002 @ 07345593 n 0000 ;c 06090869 n 0000 | (physics) a wave that is hypothesized to propagate gravity and to travel at the speed of light -07345066 11 n 01 sine_wave 0 001 @ 07345593 n 0000 | a wave whose waveform resembles a sine curve -07345166 11 n 02 oscillation 0 vibration 0 009 @ 07345593 n 0000 ;c 06090869 n 0000 + 01878063 v 0202 + 01878063 v 0101 ~ 07345441 n 0000 ~ 07347468 n 0000 ~ 11477710 n 0000 ~ 11477921 n 0000 ~ 11478171 n 0000 | (physics) a regular periodic variation in value about a mean -07345441 11 n 01 ripple 1 002 @ 07345166 n 0000 ;c 06099269 n 0000 | (electronics) an oscillation of small amplitude imposed on top of a steady value -07345593 11 n 02 wave 0 undulation 0 015 @ 07309781 n 0000 ;c 06090869 n 0000 + 01901783 v 0202 ~ 07344875 n 0000 ~ 07345066 n 0000 ~ 07345166 n 0000 ~ 07346057 n 0000 ~ 07346195 n 0000 ~ 07346772 n 0000 ~ 07347051 n 0000 ~ 07347224 n 0000 ~ 07347664 n 0000 ~ 07347846 n 0000 ~ 07420991 n 0000 ~ 07439284 n 0000 | (physics) a movement up and down or back and forth -07345960 11 n 01 jitter 1 002 @ 07309781 n 0000 + 02752865 a 0101 | a small irregular movement -07346057 11 n 01 fluctuation 1 003 @ 07345593 n 0000 + 01877204 v 0101 + 01876907 v 0101 | a wave motion; "the fluctuations of the sea" -07346195 11 n 01 seiche 0 001 @ 07345593 n 0000 | a wave on the surface of a lake or landlocked bay; caused by atmospheric or seismic disturbances -07346344 11 n 03 soliton 0 soliton_wave 0 solitary_wave 0 002 @ 07347051 n 0000 ;c 06090869 n 0000 | (physics) a quantum of energy or quasiparticle that can be propagated as a traveling wave in nonlinear systems and is neither preceded nor followed by another such disturbance; does not obey the superposition principle and does not dissipate; "soliton waves can travel long distances with little loss of energy or structure" -07346772 11 n 02 standing_wave 0 stationary_wave 0 001 @ 07345593 n 0000 | a wave (as a sound wave in a chamber or an electromagnetic wave in a transmission line) in which the ratio of its instantaneous amplitude at one point to that at any other point does not vary with time -07347051 11 n 02 traveling_wave 0 travelling_wave 0 002 @ 07345593 n 0000 ~ 07346344 n 0000 | a wave in which the medium moves in the direction of propagation of the wave -07347224 11 n 02 sound_wave 0 acoustic_wave 0 003 @ 07345593 n 0000 ;c 06094774 n 0000 ~ 07347373 n 0000 | (acoustics) a wave that transmits sound -07347373 11 n 01 air_wave 0 001 @ 07347224 n 0000 | a sound wave that is transmitted via air -07347468 11 n 01 transient 0 003 @ 07345166 n 0000 ;c 06090869 n 0000 + 01756292 a 0104 | (physics) a short-lived oscillation in a system caused by a sudden change of voltage or current or load -07347664 11 n 03 wave_form 0 waveform 0 wave_shape 0 001 @ 07345593 n 0000 | the shape of a wave illustrated graphically by plotting the values of the period quantity against time -07347846 11 n 02 shock_wave 0 blast_wave 0 002 @ 07345593 n 0000 ~ 07348041 n 0000 | a region of high pressure travelling through a gas at a high velocity; "the explosion created a shock wave" -07348041 11 n 01 sonic_boom 0 001 @ 07347846 n 0000 | an explosive sound caused by the shock wave of an airplane traveling faster than the speed of sound; "a sonic boom follows an aircraft as a wake follows a ship" -07348258 11 n 02 swell 0 crestless_wave 0 002 @ 07352190 n 0000 ~ 07344120 n 0000 | the undulating movement of the surface of the open sea -07348399 11 n 02 lift 1 rise 1 003 @ 07352190 n 0000 + 01990281 v 0204 + 01974062 v 0102 | a wave that lifts the surface of the water or ground -07348545 11 n 02 billow 0 surge 1 005 @ 07352190 n 0000 + 01885239 v 0202 + 01903756 v 0202 + 00304455 a 0101 + 02041206 v 0101 | a large sea wave -07348694 11 n 01 tidal_wave 0 001 @ 07352190 n 0000 | a wave resulting from the periodic flow of the tides that is caused by the gravitational attraction of the moon and sun -07348870 11 n 01 tidal_wave 1 002 @ 07352190 n 0000 @ 07314838 n 0000 | an unusual (and often destructive) rise of water along the seashore caused by a storm or a combination of wind and high tide -07349069 11 n 01 tidal_wave 2 001 @ 07323231 n 0000 | an overwhelming manifestation of some emotion or phenomenon; "a tidal wave of nausea"; "the flood of letters hit him with the force of a tidal wave"; "a tidal wave of crime" -07349299 11 n 01 tsunami 0 002 @ 07314838 n 0000 @ 07352190 n 0000 | a cataclysm resulting from a destructive sea wave caused by an earthquake or volcanic eruption; "a colossal tsunami destroyed the Minoan civilization in minutes" -07349532 11 n 03 roller 0 roll 1 rolling_wave 0 002 @ 07352190 n 0000 + 01901783 v 0101 | a long heavy sea wave as it advances towards the shore -07349679 11 n 02 periodic_motion 0 periodic_movement 0 002 @ 07309781 n 0000 ~ 07349880 n 0000 | motion that recurs over and over and the period of time required for each recurrence remains the same -07349880 11 n 01 harmonic_motion 0 002 @ 07349679 n 0000 ~ 07411011 n 0000 | a periodic motion in which the displacement is either symmetrical about a point or is the sum of such motions -07350069 11 n 01 heave 0 003 @ 07309781 n 0000 ;c 06115701 n 0000 + 00356954 v 0101 | (geology) a horizontal dislocation -07350192 11 n 04 recoil 0 repercussion 0 rebound 0 backlash 0 006 @ 07309781 n 0000 + 01892104 v 0306 + 01892104 v 0107 ~ 07350401 n 0000 ~ 07350567 n 0000 ~ 07409475 n 0000 | a movement back from an impact -07350401 11 n 02 bounce 0 bouncing 0 004 @ 07350192 n 0000 + 00843595 a 0101 + 01892608 v 0101 + 01892104 v 0101 | rebounding from an impact (or series of impacts) -07350567 11 n 02 resilience 0 resiliency 0 005 @ 07350192 n 0000 + 00843595 a 0204 + 01892104 v 0202 + 00843595 a 0104 + 00387680 v 0101 | an occurrence of rebounding or springing back -07350754 11 n 02 recoil 1 kick 0 003 @ 07309781 n 0000 + 01371454 v 0203 + 01371454 v 0102 | the backward jerk of a gun when it is fired -07350893 11 n 01 seek 0 002 @ 07309781 n 0000 ;c 06128570 n 0000 | the movement of a read/write head to a specific data track on a disk -07351031 11 n 02 squeeze 0 wring 0 004 @ 07309781 n 0000 + 01350971 v 0201 + 01593937 v 0105 + 01456771 v 0102 | a twisting squeeze; "gave the wet cloth a wring" -07351195 11 n 03 throw 0 stroke 0 cam_stroke 0 003 @ 07309781 n 0000 ~ 07351380 n 0000 ~ 07351497 n 0000 | the maximum movement available to a pivoted or reciprocating piece by a cam -07351380 11 n 01 instroke 0 001 @ 07351195 n 0000 | the stroke of an engine piston moving away from the crankshaft -07351497 11 n 01 outstroke 0 001 @ 07351195 n 0000 | the stroke of an engine piston moving toward the crankshaft -07351612 11 n 02 turning 0 turn 0 011 @ 07309781 n 0000 + 00138508 v 0202 + 01909812 v 0201 + 02089984 v 0201 + 01907258 v 0201 + 01907258 v 0101 ~ 07411160 n 0000 ~ 07411350 n 0000 ~ 07440979 n 0000 ~ 07447022 n 0000 ~ 07447177 n 0000 | a movement in a new direction; "the turning of the wind" -07351909 11 n 02 twist 2 wrench 0 004 @ 07309781 n 0000 + 01868780 v 0201 + 01349493 v 0102 + 01868370 v 0106 | a jerky pulling movement -07352048 11 n 01 undulation 1 002 @ 07309781 n 0000 + 01901783 v 0102 | wavelike motion; a gentle rising and falling in the manner of waves -07352190 11 n 02 wave 1 moving_ridge 0 015 @ 07309781 n 0000 + 07344663 n 0104 ~ 07344233 n 0000 ~ 07344368 n 0000 ~ 07344528 n 0000 ~ 07344663 n 0000 ~ 07348258 n 0000 ~ 07348399 n 0000 ~ 07348545 n 0000 ~ 07348694 n 0000 ~ 07348870 n 0000 ~ 07349299 n 0000 ~ 07349532 n 0000 ~ 07352617 n 0000 ~ 07352693 n 0000 | one of a series of ridges that moves across the surface of a liquid (especially across a large body of water) -07352617 11 n 01 comber 0 001 @ 07352190 n 0000 | a long curling sea wave -07352693 11 n 02 whitecap 0 white_horse 0 001 @ 07352190 n 0000 | a wave that is blown by the wind so its crest is broken and appears white -07352835 11 n 01 wave 2 001 @ 07324917 n 0000 | something that rises rapidly; "a wave of emotion swept over him"; "there was a sudden wave of buying before the market closed"; "a wave of conservatism in the country led by the hard right" -07353075 11 n 02 shipwreck 0 wreck 1 004 @ 07301336 n 0000 + 01566185 v 0202 + 01566038 v 0101 ~ 07353232 n 0000 | an accident that destroys a ship at sea -07353232 11 n 01 capsizing 0 002 @ 07353075 n 0000 ;c 00314469 n 0000 | (nautical) the event of a boat accidentally turning over in the water -07353376 11 n 01 finish 0 005 @ 07283608 n 0000 ~ 07353716 n 0000 ~ 07354243 n 0000 ~ 07354504 n 0000 ~ 07354628 n 0000 | designated event that concludes a contest (especially a race); "excitement grew as the finish neared"; "my horse was several lengths behind at the finish"; "the winner is the team with the most points at the finish" -07353716 11 n 03 draw 0 standoff 0 tie 0 005 @ 07353376 n 0000 + 01115190 v 0301 + 01115190 v 0102 ~ 07354009 n 0000 ~ 07354080 n 0000 | the finish of a contest in which the score is tied and the winner is undecided; "the game ended in a draw"; "their record was 3 wins, 6 losses and a tie" -07354009 11 n 01 dead_heat 0 001 @ 07353716 n 0000 | a tie in a race -07354080 11 n 01 stalemate 0 002 @ 07353716 n 0000 + 01077203 v 0101 | drawing position in chess: any of a player's possible moves would place his king in check -07354243 11 n 01 photo_finish 0 001 @ 07353376 n 0000 | in general, any very close finish; in particular, a finish of a race in which the contestants are so close together that the winner must be determined from a photograph taken at the instant of finishing -07354504 11 n 02 second-place_finish 0 runner-up_finish 0 001 @ 07353376 n 0000 | a finish in second place (as in a race) -07354628 11 n 01 third-place_finish 0 001 @ 07353376 n 0000 | a finish in third place (as in a race) -07354731 11 n 01 win 0 004 @ 07473441 n 0000 + 01111028 v 0103 + 01100145 v 0101 ~ 07354911 n 0000 | a victory (as in a race or other competition); "he was happy to get the win" -07354911 11 n 01 first-place_finish 0 001 @ 07354731 n 0000 | a finish in first place (as in a race) -07355014 11 n 02 omega 0 Z 0 001 @ 07291312 n 0000 | the ending of a series or sequence; "the Alpha and the Omega, the first and the last, the beginning and the end"--Revelation -07355194 11 n 01 conversion 1 003 @ 07296428 n 0000 + 00384411 v 0101 ~ 07355347 n 0000 | a change of religion; "his conversion to the Catholic faith" -07355347 11 n 02 Christianization 0 Christianisation 0 003 @ 07355194 n 0000 + 00385865 v 0202 + 00385865 v 0101 | conversion to Christianity -07355491 11 n 03 death 0 decease 0 expiry 0 011 @ 07296428 n 0000 + 00358431 v 0202 ! 07320302 n 0101 + 00358431 v 0101 + 02109818 v 0101 ~i 07332864 n 0000 ~ 07332956 n 0000 ~ 07333347 n 0000 ~ 07333506 n 0000 ~ 07333649 n 0000 ~ 07333971 n 0000 | the event of dying or departure from life; "her death came as a terrible shock"; "upon your decease the capital will pass to your grandchildren" -07355887 11 n 03 decrease 0 lessening 0 drop-off 0 011 @ 07296428 n 0000 + 00152887 v 0301 + 00441445 v 0101 + 00151689 v 0101 ! 07356676 n 0101 ~ 07313004 n 0000 ~ 07340094 n 0000 ~ 07356266 n 0000 ~ 07356970 n 0000 ~ 07422800 n 0000 ~ 07423001 n 0000 | a change downward; "there was a decrease in his temperature as the fever subsided"; "there was a sharp drop-off in sales" -07356266 11 n 01 sinking 1 001 @ 07355887 n 0000 | a slow fall or decline (as for lack of strength); "after several hours of sinking an unexpected rally rescued the market"; "he could not control the sinking of his legs" -07356489 11 n 01 destabilization 0 004 @ 07296428 n 0000 ;c 04194289 n 0000 ;c 02686568 n 0000 + 00271711 v 0101 | an event that causes a loss of equilibrium (as of a ship or aircraft) -07356676 11 n 01 increase 0 010 @ 07296428 n 0000 + 00153263 v 0101 + 00156601 v 0101 ! 07355887 n 0101 ~ 07369470 n 0000 ~ 07413899 n 0000 ~ 07414068 n 0000 ~ 07414222 n 0000 ~ 07414370 n 0000 ~ 07414566 n 0000 | a change resulting in an increase; "the increase is scheduled for next month" -07356970 11 n 01 attrition 0 002 @ 07355887 n 0000 + 02648106 a 0101 | a wearing down to weaken or destroy; "a war of attrition" -07357101 11 n 03 easing 0 moderation 0 relief 0 004 @ 07296428 n 0000 + 00518395 v 0102 ~ 07305760 n 0000 ~ 07357253 n 0000 | a change for the better -07357253 11 n 01 breath_of_fresh_air 0 001 @ 07357101 n 0000 | a welcome relief; "the new management was like a breath of fresh air" -07357388 11 n 03 improvement 0 betterment 0 advance 1 010 @ 07359599 n 0000 + 02554922 v 0302 + 00248659 v 0304 + 00205046 v 0201 + 00205046 v 0102 ~ 01047338 n 0000 ~ 07357679 n 0000 ~ 07369604 n 0000 ~ 07419599 n 0000 ~ 07419792 n 0000 | a change for the better; progress in development -07357679 11 n 02 refinement 0 elaboration 0 003 @ 07357388 n 0000 + 00400883 v 0204 + 00474017 v 0102 | the result of improving something; "he described a refinement of this technique" -07357866 11 n 01 Assumption 0 003 @ 07288801 n 0000 ;c 06226057 n 0000 + 01470856 v 0101 | (Christianity) the taking up of the body and soul of the Virgin Mary when her earthly life had ended -07358060 11 n 01 deformation 1 010 @ 07296428 n 0000 + 02954143 a 0101 + 01350699 v 0102 + 01280014 v 0103 + 01584875 v 0101 + 00140967 v 0103 + 00476744 v 0101 + 00477665 v 0101 ~ 11506738 n 0000 ~ 11515325 n 0000 | alteration in the shape or dimensions of an object as a result of the application of stress to it -07358377 11 n 02 Transfiguration 0 Transfiguration_of_Jesus 0 003 @ 07288801 n 0000 ;c 06453849 n 0000 + 00580512 v 0101 | (New Testament) the sudden emanation of radiance from the person of Jesus -07358576 11 n 01 transition 1 005 @ 07296428 n 0000 + 00550546 v 0101 + 00550823 v 0101 ~ 07358768 n 0000 ~ 07358985 n 0000 | a change from one place or state or subject or stage to another -07358768 11 n 01 ground_swell 1 001 @ 07358576 n 0000 | an obvious change of public opinion or political sentiment that occurs without leadership or overt expression; "there was a ground swell of antiwar sentiment" -07358985 11 n 03 leap 0 jump 0 saltation 1 004 @ 07358576 n 0000 + 00155547 v 0202 + 00560391 v 0101 ~ 07359377 n 0000 | an abrupt transition; "a successful leap from college to the major leagues" -07359184 11 n 02 quantum_leap 0 quantum_jump 1 001 @ 07414222 n 0000 | a sudden large increase or advance; "this may not insure success but it will represent a quantum leap from last summer" -07359377 11 n 01 quantum_jump 0 002 @ 07358985 n 0000 ;c 06090869 n 0000 | (physics) an abrupt transition of an electron or atom or molecule from one quantum state to another with the emission or absorption of a quantum -07359599 11 n 03 transformation 0 transmutation 0 shift 1 013 @ 07296428 n 0000 + 00555654 v 0301 + 00555447 v 0301 ~ 07357388 n 0000 ~ 07359920 n 0000 ~ 07360077 n 0000 ~ 07360211 n 0000 ~ 07360293 n 0000 ~ 07360477 n 0000 ~ 07415730 n 0000 ~ 07426893 n 0000 ~ 07427224 n 0000 ~ 07427337 n 0000 | a qualitative change -07359920 11 n 01 population_shift 0 001 @ 07359599 n 0000 | a change in the relative numbers of the different groups of individuals making up a population -07360077 11 n 01 pyrolysis 0 002 @ 07359599 n 0000 + 03106748 a 0101 | transformation of a substance produced by the action of heat -07360211 11 n 01 sea_change 0 001 @ 07359599 n 0000 | a profound transformation -07360293 11 n 01 sublimation 2 003 @ 07359599 n 0000 ;c 06084469 n 0000 + 00366020 v 0102 | (chemistry) a change directly from the solid to the gaseous state without becoming liquid -07360477 11 n 03 tin_pest 0 tin_disease 0 tin_plague 0 001 @ 07359599 n 0000 | the transformation of ordinary white tin into powdery grey tin at very cold temperatures -07360647 11 n 03 infection 0 contagion 0 transmission 0 004 @ 07307477 n 0000 + 02231661 v 0302 + 01303042 a 0203 + 00089750 v 0101 | an incident in which an infectious disease is transmitted -07360841 11 n 01 scene 0 001 @ 07307477 n 0000 | an incident (real or imaginary); "their parting was a sad scene" -07360957 11 n 01 sideshow 0 001 @ 07307477 n 0000 | a subordinate incident of little importance relative to the main event; "instruction is not an educational sideshow" -07361128 11 n 01 collapse 0 005 @ 07283608 n 0000 + 01989053 v 0101 ~ 07361416 n 0000 ~ 07365432 n 0000 ~ 07365524 n 0000 | a natural event caused by something suddenly falling down or caving in; "the roof is in danger of collapse"; "the collapse of the old star under its own gravity" -07361416 11 n 02 cave_in 0 subsidence 1 003 @ 07361128 n 0000 + 01986367 v 0201 + 01989053 v 0103 | the sudden collapse of something into a hollow beneath it -07361576 11 n 02 killing 0 violent_death 0 003 @ 07332956 n 0000 + 01325536 v 0101 + 01323958 v 0101 | an event that causes someone to die -07361717 11 n 02 fatal_accident 0 casualty 2 003 @ 07332956 n 0000 @ 07301336 n 0000 ~ 07361863 n 0000 | an accident that causes someone to die -07361863 11 n 01 collateral_damage 0 003 @ 07361717 n 0000 ;u 06605046 n 0000 ;c 08199025 n 0000 | (euphemism) inadvertent casualties and destruction inflicted on civilians in the course of military operations -07362075 11 n 02 cessation 0 surcease 0 003 @ 07365849 n 0000 + 02680814 v 0103 ~ 01201429 n 0000 | a stopping; "a cessation of the thunder" -07362218 11 n 03 settling 0 subsiding 0 subsidence 0 004 @ 07363883 n 0000 + 01986367 v 0301 + 01986367 v 0201 + 01986185 v 0102 | a gradual sinking to a lower level -07362386 11 n 02 drop 0 fall 0 009 @ 07363346 n 0000 @ 07362830 n 0000 + 01984317 v 0201 + 01972298 v 0201 + 01976841 v 0101 + 01977701 v 0101 ~ 07362699 n 0000 ~ 07434209 n 0000 ~ 07434320 n 0000 | a free and rapid descent by the force of gravity; "it was a miracle that he survived the drop from that height" -07362699 11 n 01 free_fall 0 001 @ 07362386 n 0000 | the ideal falling motion of something subject only to a gravitational field -07362830 11 n 01 gravitation 0 005 @ 07311115 n 0000 + 02737183 a 0101 + 01835280 v 0101 ! 07363067 n 0101 ~ 07362386 n 0000 | movement downward resulting from gravitational attraction; "irrigation by gravitation rather than by pumps" -07363067 11 n 01 levitation 0 002 @ 07311115 n 0000 ! 07362830 n 0101 | movement upward in virtue of lightness -07363180 11 n 01 lightening 0 001 @ 07363346 n 0000 | descent of the uterus into the pelvic cavity that occurs late in pregnancy; the fetus is said to have dropped -07363346 11 n 01 descent 0 008 @ 07311115 n 0000 + 01970826 v 0101 ~ 07362386 n 0000 ~ 07363180 n 0000 ~ 07363545 n 0000 ~ 07363668 n 0000 ~ 07363883 n 0000 ~ 07404944 n 0000 | a movement downward -07363545 11 n 01 set 0 001 @ 07363346 n 0000 | the descent of a heavenly body below the horizon; "before the set of sun" -07363668 11 n 02 shower 0 cascade 0 002 @ 07363346 n 0000 + 02757651 v 0101 | a sudden downpour (as of tears or sparks etc) likened to a rain shower; "a little shower of rose petals"; "a sudden cascade of sparks" -07363883 11 n 01 sinking 0 005 @ 07363346 n 0000 + 01989873 v 0101 ~ 07362218 n 0000 ~ 07364115 n 0000 ~ 07364573 n 0000 | a descent as through liquid (especially through water); "they still talk about the sinking of the Titanic" -07364115 11 n 04 submergence 0 submerging 0 submersion 0 immersion 0 011 @ 07363883 n 0000 + 01991472 v 0302 + 01578254 v 0302 + 01991472 v 0301 + 01991472 v 0201 + 01578254 v 0201 + 00217700 v 0203 + 01991472 v 0101 + 01578254 v 0101 + 00217700 v 0103 ~ 07364434 n 0000 | sinking until covered completely with water -07364434 11 n 01 dip 0 005 @ 07364115 n 0000 + 01578124 v 0101 + 00286483 v 0101 + 01192312 v 0102 + 01577093 v 0102 | a brief immersion -07364573 11 n 02 foundering 0 going_under 0 003 @ 07363883 n 0000 ;c 04194289 n 0000 + 01990168 v 0101 | (of a ship) sinking -07364700 11 n 01 wobble 0 005 @ 07309781 n 0000 + 02292797 a 0103 + 01869003 v 0101 + 01884974 v 0102 ~ 07364851 n 0000 | an unsteady rocking motion -07364851 11 n 01 shimmy 0 001 @ 07364700 n 0000 | an abnormal wobble in a motor vehicle (especially in the front wheels); "he could feel the shimmy in the steering wheel" -07365024 11 n 03 flop 0 bust 0 fizzle 0 004 @ 07317764 n 0000 + 01369758 v 0202 + 02530003 v 0104 ~ 07365193 n 0000 | a complete failure; "the play was a dismal flop" -07365193 11 n 03 turkey 0 bomb 0 dud 0 002 @ 07365024 n 0000 + 02523521 v 0203 | an event that fails badly or is totally ineffectual; "the first experiment was a real turkey"; "the meeting was a dud as far as new business was concerned" -07365432 11 n 02 debacle 2 fiasco 2 001 @ 07361128 n 0000 | a sudden and violent collapse -07365524 11 n 01 implosion 0 003 @ 07361128 n 0000 + 00305846 v 0101 ~ 07365673 n 0000 | a sudden inward collapse; "the implosion of a light bulb" -07365673 11 n 01 gravitational_collapse 0 001 @ 07365524 n 0000 | the implosion of a star resulting from its own gravity; the result is a smaller and denser celestial object -07365849 11 n 02 stop 0 halt 0 010 @ 07291312 n 0000 + 00354452 v 0204 + 02559752 v 0202 + 01860795 v 0202 + 01859586 v 0201 + 01859221 v 0101 + 02680814 v 0102 + 01860795 v 0101 ~ 07362075 n 0000 ~ 07366145 n 0000 | the event of something ending; "it came to a stop at the bottom of the hill" -07366145 11 n 03 stand 0 standstill 0 tie-up 0 003 @ 07365849 n 0000 + 01477014 v 0301 + 02707125 v 0101 | an interruption of normal activity -07366289 11 n 04 deviation 0 divergence 0 departure 1 difference 0 010 @ 07337390 n 0000 + 00651991 v 0403 + 00650353 v 0403 + 00119074 v 0401 + 02661252 v 0304 + 02661252 v 0203 + 02661252 v 0101 ~ 07366627 n 0000 ~ 07366799 n 0000 ~ 07366971 n 0000 | a variation that deviates from the standard or norm; "the deviation from the mean" -07366627 11 n 03 discrepancy 0 variance 0 variant 0 004 @ 07366289 n 0000 + 02068277 a 0301 + 02661252 v 0302 + 00554098 a 0102 | an event that departs from expectations -07366799 11 n 01 driftage 0 003 @ 07366289 n 0000 ;c 02686568 n 0000 + 01925694 v 0103 | the deviation (by a vessel or aircraft) from its intended course due to drifting -07366971 11 n 03 inflection 0 flection 0 flexion 0 001 @ 07366289 n 0000 | deviation from a straight or normal course -07367091 11 n 02 malformation 0 miscreation 0 003 @ 07317764 n 0000 + 00701576 v 0201 ~ 07367231 n 0000 | something abnormal or anomalous -07367231 11 n 01 monstrosity 0 002 @ 07367091 n 0000 + 01131454 a 0104 | something hideous or frightful; "they regarded the atom bomb as a monstrosity" -07367385 11 n 02 dislocation 0 disruption 0 003 @ 07367812 n 0000 + 00414823 v 0101 + 00465762 v 0101 | an event that results in a displacement or discontinuity -07367548 11 n 01 break 2 003 @ 07331400 n 0000 + 00334186 v 0101 ~ 07367708 n 0000 | the occurrence of breaking; "the break in the dam threatened the valley" -07367708 11 n 01 snap 1 003 @ 07367548 n 0000 + 00337065 v 0101 + 01573515 v 0103 | a sudden breaking -07367812 11 n 02 interruption 0 break 0 006 @ 07283608 n 0000 + 02746449 v 0201 ~ 07367385 n 0000 ~ 07368130 n 0000 ~ 07368256 n 0000 ~ 07368646 n 0000 | some abrupt occurrence that interrupts an ongoing activity; "the telephone is an annoying interruption"; "there was a break in the action when a player was hurt" -07368130 11 n 01 punctuation 0 001 @ 07367812 n 0000 | something that makes repeated and regular interruptions or divisions -07368256 11 n 05 suspension 0 respite 0 reprieve 0 hiatus 0 abatement 1 005 @ 07367812 n 0000 + 00245059 v 0501 + 00363493 v 0102 ~ 07368482 n 0000 ~ 07419960 n 0000 | an interruption in the intensity or amount of something -07368482 11 n 01 defervescence 0 003 @ 07368256 n 0000 + 03059847 a 0101 + 00571901 v 0101 | abatement of a fever as indicated by a reduction in body temperature -07368646 11 n 02 eclipse 0 occultation 0 008 @ 07367812 n 0000 + 02158340 v 0101 %p 07322138 n 0000 %p 07322341 n 0000 ~ 07368877 n 0000 ~ 07368993 n 0000 ~ 07369206 n 0000 ~ 07369344 n 0000 | one celestial body obscures another -07368877 11 n 01 solar_eclipse 0 002 @ 07368646 n 0000 ~ 07369099 n 0000 | the moon interrupts light from the sun -07368993 11 n 01 lunar_eclipse 0 001 @ 07368646 n 0000 | the earth interrupts light shining on the moon -07369099 11 n 01 annular_eclipse 0 001 @ 07368877 n 0000 | only a thin outer disk of the sun can be seen -07369206 11 n 01 total_eclipse 0 001 @ 07368646 n 0000 | an eclipse as seen from a place where the eclipsed body is completely obscured -07369344 11 n 01 partial_eclipse 0 001 @ 07368646 n 0000 | an eclipse in which the eclipsed body is only partially obscured -07369470 11 n 01 augmentation 0 003 @ 07356676 n 0000 + 00154388 v 0101 + 00157950 v 0101 | the amount by which something increases -07369604 11 n 03 adjustment 0 accommodation 0 fitting 0 011 @ 07357388 n 0000 + 00300537 v 0301 + 00456740 v 0302 + 02702830 v 0202 + 00482893 v 0201 + 00299580 v 0202 + 00150287 v 0101 ~ 00194127 n 0000 ~ 00194257 n 0000 ~ 00194831 n 0000 ~ 07369922 n 0000 | making or becoming suitable; adjusting to circumstances -07369922 11 n 01 shakedown 0 001 @ 07369604 n 0000 | initial adjustments to improve the functioning or the efficiency and to bring to a more satisfactory state; "the new industry's economic shakedown" -07370125 11 n 02 entrance 0 entering 0 004 @ 07311115 n 0000 + 02016523 v 0201 + 02016523 v 0101 ~ 07429976 n 0000 | a movement into or inward -07370270 11 n 01 fall 4 003 @ 07311115 n 0000 + 01970826 v 0102 ! 07445480 n 0101 | a movement downward; "the rise and fall of the tides" -07370410 11 n 03 climb 0 climbing 0 mounting 0 006 @ 07445480 n 0000 + 01921964 v 0303 + 00433232 v 0302 + 01921964 v 0201 + 00155143 v 0203 + 00433232 v 0103 | an event that involves rising to a higher point (as in altitude or temperature or intensity etc.) -07370671 11 n 03 elevation 0 lift 0 raising 0 005 @ 07445480 n 0000 + 01973759 v 0302 + 01968569 v 0202 + 01974062 v 0202 + 01974062 v 0103 | the event of something being raised upward; "an elevation of the temperature in the afternoon"; "a raising of the land resulting from volcanic activity" -07370968 11 n 02 heave 1 heaving 1 003 @ 07445480 n 0000 + 02041206 v 0203 + 02041206 v 0103 | an upward movement (especially a rhythmical rising and falling); "the heaving of waves on a rough sea" -07371168 11 n 01 liftoff 0 002 @ 07445480 n 0000 + 02014553 v 0102 | the initial ascent of a rocket from its launching pad -07371293 11 n 01 sound 0 065 @ 07283608 n 0000 + 02179518 v 0101 + 02180529 v 0101 + 02135048 v 0101 + 02176268 v 0101 ~ 07376454 n 0000 ~ 07376937 n 0000 ~ 07377082 n 0000 ~ 07377244 n 0000 ~ 07378234 n 0000 ~ 07379223 n 0000 ~ 07379409 n 0000 ~ 07379577 n 0000 ~ 07379695 n 0000 ~ 07380686 n 0000 ~ 07380934 n 0000 ~ 07382572 n 0000 ~ 07383257 n 0000 ~ 07383323 n 0000 ~ 07383475 n 0000 ~ 07383823 n 0000 ~ 07384023 n 0000 ~ 07384741 n 0000 ~ 07385998 n 0000 ~ 07386370 n 0000 ~ 07386920 n 0000 ~ 07387509 n 0000 ~ 07388816 n 0000 ~ 07388987 n 0000 ~ 07389170 n 0000 ~ 07389330 n 0000 ~ 07389569 n 0000 ~ 07390307 n 0000 ~ 07390400 n 0000 ~ 07390645 n 0000 ~ 07390762 n 0000 ~ 07390857 n 0000 ~ 07391863 n 0000 ~ 07392373 n 0000 ~ 07393756 n 0000 ~ 07393988 n 0000 ~ 07394588 n 0000 ~ 07396120 n 0000 ~ 07396233 n 0000 ~ 07396414 n 0000 ~ 07396658 n 0000 ~ 07396822 n 0000 ~ 07396945 n 0000 ~ 07397230 n 0000 ~ 07397641 n 0000 ~ 07397761 n 0000 ~ 07398097 n 0000 ~ 07398276 n 0000 ~ 07398362 n 0000 ~ 07398659 n 0000 ~ 07398873 n 0000 ~ 07399137 n 0000 ~ 07399452 n 0000 ~ 07399620 n 0000 ~ 07399829 n 0000 ~ 07399917 n 0000 ~ 07400156 n 0000 ~ 07400361 n 0000 ~ 07400701 n 0000 ~ 07479799 n 0000 | the sudden occurrence of an audible event; "the sound awakened them" -07372565 11 n 04 fuss 0 trouble 1 bother 0 hassle 0 003 @ 07428450 n 0000 + 01789514 v 0402 + 02507736 v 0307 | an angry disturbance; "he didn't want to make a fuss"; "they had labor trouble"; "a spot of bother" -07372779 11 n 02 headway 0 head 0 004 @ 07445265 n 0000 + 01999423 v 0202 + 01931768 v 0207 + 01935233 v 0201 | forward movement; "the ship made little headway against the gale" -07372959 11 n 03 trial 0 tribulation 0 visitation 0 005 @ 07305234 n 0000 + 00748282 v 0303 + 01797989 v 0201 + 01798782 v 0101 ~ 07420435 n 0000 | an annoying or frustrating or catastrophic event; "his mother-in-law's visits were a great trial for him"; "life is full of tribulations"; "a visitation of the plague" -07373277 11 n 01 union 0 004 @ 07283608 n 0000 ~ 07373481 n 0000 ~ 07373602 n 0000 ~ 07373803 n 0000 | the occurrence of a uniting of separate parts; "lightning produced an unusual union of the metals" -07373481 11 n 01 amphimixis 0 002 @ 07373277 n 0000 #m 13555240 n 0000 | union of sperm and egg in sexual reproduction -07373602 11 n 03 fusion 0 merger 0 unification 0 005 @ 07373277 n 0000 + 00243124 v 0302 + 00367685 v 0301 + 00243124 v 0203 + 00394813 v 0107 | an occurrence that involves the production of a union -07373803 11 n 02 combining 0 combine 0 014 @ 07373277 n 0000 + 02631163 v 0202 + 02309008 v 0201 + 01385170 v 0202 + 01461328 v 0202 + 00193486 v 0202 + 00394813 v 020a + 02631163 v 0102 + 01385170 v 0102 ~ 07374152 n 0000 ~ 07374357 n 0000 ~ 07374633 n 0000 ~ 07374756 n 0000 ~ 07375214 n 0000 | an occurrence that results in things being united -07374152 11 n 01 recombination 0 004 @ 07373803 n 0000 ;c 06075527 n 0000 + 00565858 v 0101 + 00566024 v 0101 | (genetics) a combining of genes or characters different from what they were in the parents -07374357 11 n 01 recombination 1 003 @ 07373803 n 0000 ;c 06090869 n 0000 + 00193954 v 0101 | (physics) a combining of charges or transfer of electrons in a gas that results in the neutralization of ions; important for ions arising from the passage of high-energy particles -07374633 11 n 01 consolidation 0 003 @ 07373803 n 0000 + 00165789 v 0101 + 00165618 v 0101 | combining into a solid mass -07374756 11 n 02 mix 0 mixture 0 010 @ 07373803 n 0000 + 01462005 v 0201 + 00184117 v 0201 + 01418667 v 0103 + 00184117 v 0101 + 00556193 v 0101 + 01462005 v 0101 + 00394813 v 0103 ~ 07375053 n 0000 ~ 07375405 n 0000 | an event that combines things in a mixture; "a gradual mixture of cultures" -07375053 11 n 01 concoction 0 002 @ 07374756 n 0000 + 01459896 v 0101 | an occurrence of an unusual mixture; "it suddenly spewed out a thick green concoction" -07375214 11 n 02 conglomeration 0 conglobation 0 003 @ 07373803 n 0000 + 00144694 v 0202 + 00158804 v 0103 | an occurrence combining miscellaneous things into a (more or less) rounded mass -07375405 11 n 01 blend 0 003 @ 07374756 n 0000 + 01462468 v 0101 + 00394813 v 0101 | an occurrence of thorough mixing -07375525 11 n 03 rapid_climb 0 rapid_growth 0 zoom 0 002 @ 07445480 n 0000 + 01943718 v 0305 | a rapid rise -07375635 11 n 01 takeoff 0 003 @ 07445480 n 0000 + 02014165 v 0108 + 02014553 v 0101 | the initial ascent of an airplane as it becomes airborne -07375781 11 n 04 upheaval 0 uplift 0 upthrow 0 upthrust 0 004 @ 07445480 n 0000 ;c 06115701 n 0000 + 01969601 v 0201 + 01456088 v 0101 | (geology) a rise of land to a higher elevation (as in the process of mountain building) -07376008 11 n 01 uplifting 0 002 @ 07445480 n 0000 + 01873666 v 0101 | the rise of something; "the uplifting of the clouds revealed the blue of a summer sky" -07376168 11 n 01 baa 0 002 @ 07382572 n 0000 + 01048330 v 0104 | the cry made by sheep -07376257 11 n 05 bang 0 clap 0 eruption 1 blast 1 bam 0 006 @ 07387509 n 0000 + 02182479 v 0401 + 01237398 v 0201 + 02187693 v 0101 + 02100176 v 0101 ~ 07399735 n 0000 | a sudden very loud noise -07376454 11 n 01 bong 0 001 @ 07371293 n 0000 | a dull resonant sound as of a bell -07376539 11 n 01 banging 0 001 @ 07387509 n 0000 | a continuing very loud noise -07376621 11 n 01 bark 0 003 @ 07382572 n 0000 + 01047745 v 0101 ~ 07378163 n 0000 | the sound made by a dog -07376731 11 n 01 bark 2 002 @ 07387509 n 0000 + 01047596 v 0101 | a noise resembling the bark of a dog -07376836 11 n 01 bay 0 002 @ 07382572 n 0000 + 01047951 v 0101 | the sound of a hound on the scent -07376937 11 n 01 beat 1 003 @ 07371293 n 0000 + 02175578 v 0104 + 01398919 v 0101 | the sound of stroke or blow; "he heard the beat of a drum" -07377082 11 n 02 beep 0 bleep 0 004 @ 07371293 n 0000 + 02187171 v 0201 + 02183175 v 0103 + 00791372 v 0101 | a short high tone produced as a signal or warning -07377244 11 n 02 bell 0 toll 0 005 @ 07371293 n 0000 + 02181973 v 0201 + 01297274 v 0101 ~ 07386194 n 0000 ~ 07446744 n 0000 | the sound of a bell being struck; "saved by the bell"; "she heard the distant toll of church bells" -07377473 11 n 05 blare 0 blaring 0 cacophony 0 clamor 0 din 0 006 @ 07387509 n 0000 + 02187510 v 0502 + 01920367 a 0403 + 00298767 a 0302 + 00298767 a 0301 + 02182479 v 0102 | a loud harsh or strident noise -07377682 11 n 04 boom 1 roar 0 roaring 0 thunder 0 009 @ 07387509 n 0000 + 01453467 a 0403 + 01046587 v 0401 + 00915605 v 0401 + 02088792 v 0401 + 01046059 v 0301 + 01046059 v 0201 + 02174662 v 0101 + 02187510 v 0101 | a deep prolonged loud noise -07377931 11 n 01 bleat 0 002 @ 07382572 n 0000 + 01048330 v 0101 | the sound of sheep or goats (or any sound resembling this) -07378059 11 n 01 bray 0 003 @ 07382572 n 0000 + 01054553 v 0102 + 00029630 v 0101 | the cry of an ass -07378163 11 n 01 bow-wow 0 001 @ 07376621 n 0000 | the bark of a dog -07378234 11 n 03 buzz 0 bombilation 0 bombination 0 005 @ 07371293 n 0000 + 02182109 v 0302 + 02182109 v 0203 + 02182109 v 0101 + 00792304 v 0101 | sound of rapid vibration; "the buzz of a bumble bee" -07378437 11 n 01 cackle 0 003 @ 07382572 n 0000 + 00299144 a 0101 + 01056369 v 0101 | the sound made by a hen after laying an egg -07378569 11 n 01 caterwaul 0 002 @ 07382572 n 0000 + 00914634 v 0102 | the yowling sound made by a cat in heat -07378682 11 n 01 caw 0 002 @ 07382572 n 0000 + 01060065 v 0101 | the sound made by corvine birds -07378781 11 n 02 chatter 0 chattering 0 003 @ 07387509 n 0000 + 01037303 v 0201 + 01037303 v 0101 | the high-pitched continuing noise made by animals (birds or monkeys) -07378952 11 n 02 chatter 1 chattering 1 002 @ 07387509 n 0000 + 01553869 v 0201 | the rapid series of noises made by the parts of a machine -07379094 11 n 02 cheep 0 peep 0 003 @ 07382572 n 0000 + 01052301 v 0201 + 01052301 v 0102 | the short weak cry of a young bird -07379223 11 n 03 chink 0 click 0 clink 0 006 @ 07371293 n 0000 + 02186690 v 0301 + 02186506 v 0303 + 02185664 v 0201 + 01893771 v 0202 + 02186506 v 0104 | a short light metallic sound -07379409 11 n 01 chirp 0 005 @ 07371293 n 0000 + 02694784 a 0101 + 01730663 v 0102 + 01052301 v 0103 ~ 07399027 n 0000 | a sharp sound made by small birds or insects -07379577 11 n 02 chirrup 0 twitter 0 003 @ 07371293 n 0000 + 01053623 v 0202 + 01052301 v 0104 | a series of chirps -07379695 11 n 01 chorus 0 003 @ 07371293 n 0000 + 02874282 a 0101 + 00986750 v 0101 | any utterance produced simultaneously by a group; "a chorus of boos" -07379852 11 n 01 chug 0 002 @ 07387509 n 0000 + 02179372 v 0101 | the dull explosive noise made by an engine -07379963 11 n 02 clack 0 clap 1 004 @ 07387509 n 0000 + 01237398 v 0201 + 02172127 v 0102 + 01054849 v 0103 | a sharp abrupt noise as if two objects hit together; may be repeated -07380144 11 n 07 clang 0 clangor 0 clangour 0 clangoring 0 clank 0 clash 0 crash 1 009 @ 07387509 n 0000 + 02088627 v 0701 + 02174311 v 0501 + 02174461 v 0302 + 01920834 a 0201 + 02174115 v 0202 + 02174461 v 0201 + 02174115 v 0201 + 02174115 v 0101 | a loud resonant repeating noise; "he could hear the clang of distant bells" -07380473 11 n 01 clatter 0 002 @ 07387509 n 0000 + 02172127 v 0101 | a rattling noise (often produced by rapid movement); "the shutters clattered against the house"; "the clatter of iron wheels on cobblestones" -07380686 11 n 01 click-clack 0 002 @ 07371293 n 0000 ~ 07380784 n 0000 | a succession of clicks -07380784 11 n 02 clickety-clack 0 clickety-click 0 001 @ 07380686 n 0000 | a fast and rhythmic click-clack; "the clickety-clack of the typewriters" -07380934 11 n 06 clip-clop 0 clippety-clop 0 clop 0 clopping 0 clunking 0 clumping 0 001 @ 07371293 n 0000 | the sound of a horse's hoofs hitting on a hard surface -07381100 11 n 02 cluck 0 clucking 0 002 @ 07382572 n 0000 + 01054849 v 0101 | the sound made by a hen (as in calling her chicks) -07381231 11 n 01 cock-a-doodle-doo 0 001 @ 07382286 n 0000 | an imitation of the crow of a cock -07381329 11 n 01 coo 0 002 @ 07382572 n 0000 + 00909896 v 0101 | the sound made by a pigeon -07381423 11 n 03 crack 0 cracking 0 snap 0 005 @ 07387509 n 0000 + 02088949 v 0301 + 00355670 v 0301 + 01893771 v 0301 + 02183024 v 0201 | a sudden sharp noise; "the crack of a whip"; "he heard the cracking of the ice"; "he can hear the snap of a twig" -07381678 11 n 03 crackle 0 crackling 0 crepitation 0 005 @ 07387509 n 0000 + 02175384 v 0301 + 02175384 v 0202 + 02175384 v 0102 ~ 07383092 n 0000 | the sharp sound of snapping noises -07381864 11 n 02 creak 0 creaking 0 004 @ 07387509 n 0000 + 02171664 v 0204 + 01921335 a 0101 + 02171664 v 0104 | a squeaking sound; "the creak of the floorboards gave him away" -07382044 11 n 01 crepitation_rale 0 002 @ 07391240 n 0000 @ 14299637 n 0000 | the crackling sound heard on auscultation when patients with respiratory diseases inhale; associated with tuberculosis and pneumonia and congestive heart failure -07382286 11 n 01 crow 0 003 @ 07382572 n 0000 + 00857653 v 0101 ~ 07381231 n 0000 | the cry of a cock (or an imitation of it) -07382414 11 n 01 crunch 0 002 @ 07387509 n 0000 + 01058224 v 0101 | the sound of something crunching; "he heard the crunch of footsteps on the gravel path" -07382572 11 n 01 cry 0 023 @ 07371293 n 0000 + 00985464 v 0101 ~ 07376168 n 0000 ~ 07376621 n 0000 ~ 07376836 n 0000 ~ 07377931 n 0000 ~ 07378059 n 0000 ~ 07378437 n 0000 ~ 07378569 n 0000 ~ 07378682 n 0000 ~ 07379094 n 0000 ~ 07381100 n 0000 ~ 07381329 n 0000 ~ 07382286 n 0000 ~ 07384127 n 0000 ~ 07384473 n 0000 ~ 07385249 n 0000 ~ 07385548 n 0000 ~ 07386614 n 0000 ~ 07386821 n 0000 ~ 07387316 n 0000 ~ 07392280 n 0000 ~ 07400552 n 0000 | the characteristic utterance of an animal; "animal cries filled the night" -07383092 11 n 01 decrepitation 0 003 @ 07381678 n 0000 + 00122485 v 0101 + 00122289 v 0101 | the crackling or breaking up of certain crystals when they are heated -07383257 11 n 01 ding 0 001 @ 07371293 n 0000 | a ringing sound -07383323 11 n 02 drip 1 dripping 1 001 @ 07371293 n 0000 | the sound of a liquid falling drop by drop; "the constant sound of dripping irritated him" -07383475 11 n 01 drum 0 002 @ 07371293 n 0000 + 01732532 v 0101 | the sound of a drum; "he could hear the drums before he heard the fifes" -07383616 11 n 01 ding-dong 0 001 @ 07387509 n 0000 | the noise made by a bell -07383696 11 n 01 explosion 2 001 @ 07387509 n 0000 | the noise caused by an explosion; "the explosion was heard a mile away" -07383823 11 n 03 footfall 0 footstep 0 step 0 004 @ 07371293 n 0000 + 02091885 v 0301 + 01928838 v 0301 ~ 07398560 n 0000 | the sound of a step of someone walking; "he heard footsteps on the porch" -07384023 11 n 01 gargle 0 002 @ 07371293 n 0000 + 01059945 v 0101 | the sound produced while gargling -07384127 11 n 01 gobble 0 002 @ 07382572 n 0000 + 01058426 v 0101 | the characteristic sound made by a turkey cock -07384244 11 n 01 grate 0 001 @ 07387509 n 0000 | a harsh rasping sound made by scraping something -07384344 11 n 01 grinding 0 002 @ 07387509 n 0000 + 01394464 v 0102 | a harsh and strident sound (as of the grinding of gears) -07384473 11 n 02 growl 0 growling 0 003 @ 07382572 n 0000 + 01045719 v 0202 + 01045719 v 0102 | the sound of growling (as made by animals) -07384614 11 n 02 grunt 0 oink 0 002 @ 07387509 n 0000 + 01043231 v 0101 | the short low gruff noise of the kind made by hogs -07384741 11 n 01 gurgle 0 003 @ 07371293 n 0000 + 02177976 v 0101 + 02187922 v 0106 | the bubbling sound of water flowing from a bottle with a narrow neck -07384898 11 n 05 hiss 0 hissing 0 hushing 0 fizzle 1 sibilation 0 008 @ 07387509 n 0000 + 01053771 v 0504 + 00862225 v 0202 + 01054186 v 0201 + 01053771 v 0201 + 00862225 v 0102 + 01054186 v 0101 + 01053771 v 0101 | a fricative sound (especially as an expression of disapproval); "the performers could not be heard over the hissing of the audience" -07385249 11 n 01 honk 0 002 @ 07382572 n 0000 + 01053339 v 0101 | the cry of a goose (or any sound resembling this) -07385367 11 n 01 howl 0 003 @ 07387509 n 0000 + 01046059 v 0102 ~ 07395777 n 0000 | a loud sustained noise resembling the cry of a hound; "the howl of the wind made him restless" -07385548 11 n 01 howl 2 002 @ 07382572 n 0000 + 01047381 v 0101 | the long plaintive cry of a hound or a wolf -07385660 11 n 04 hubbub 0 uproar 0 brouhaha 0 katzenjammer 0 002 @ 07387509 n 0000 + 01921466 a 0203 | loud confused noise from many sources -07385803 11 n 02 hum 0 humming 0 006 @ 07387509 n 0000 + 02706605 v 0201 + 01056214 v 0201 + 02706605 v 0101 + 02187041 v 0101 + 01056214 v 0101 | a humming noise; "the hum of distant traffic" -07385998 11 n 02 jingle 0 jangle 0 005 @ 07371293 n 0000 + 00300007 a 0202 + 02172683 v 0203 + 02010266 a 0102 + 02172683 v 0101 | a metallic sound; "the jingle of coins"; "the jangle of spurs" -07386194 11 n 01 knell 0 003 @ 07377244 n 0000 + 02181538 v 0102 + 02181865 v 0101 | the sound of a bell rung slowly to announce a death or a funeral or the end of something -07386370 11 n 02 knock 1 knocking 0 006 @ 07371293 n 0000 + 02178866 v 0203 + 01414467 v 0201 + 02178866 v 0103 + 02185373 v 0103 + 01414467 v 0101 | the sound of knocking (as on a door or in an engine or bearing); "the knocking grew louder" -07386614 11 n 05 meow 0 mew 0 miaou 0 miaow 0 miaul 0 005 @ 07382572 n 0000 + 00941719 v 0402 + 00941719 v 0301 + 01052782 v 0202 + 01052782 v 0101 | the sound made by a cat (or any sound resembling this) -07386821 11 n 01 moo 0 002 @ 07382572 n 0000 + 01055018 v 0101 | the sound made by a cow or bull -07386920 11 n 06 mutter 0 muttering 0 murmur 0 murmuring 0 murmuration 0 mussitation 0 010 @ 07371293 n 0000 + 01044533 v 0604 + 01044114 v 0501 + 01044114 v 0401 + 01456221 a 0301 + 01044114 v 0301 + 10342543 n 0303 + 01044533 v 0202 + 01044533 v 0102 + 10342543 n 0101 | a low continuous indistinct sound; often accompanied by movement of the lips without the production of articulate speech -07387316 11 n 04 neigh 0 nicker 0 whicker 0 whinny 0 005 @ 07382572 n 0000 + 01059743 v 0404 + 01059743 v 0303 + 01059743 v 0202 + 01059743 v 0101 | the characteristic sounds made by a horse -07387509 11 n 01 noise 0 052 @ 07371293 n 0000 + 02172888 v 0103 ~ 07376257 n 0000 ~ 07376539 n 0000 ~ 07376731 n 0000 ~ 07377473 n 0000 ~ 07377682 n 0000 ~ 07378781 n 0000 ~ 07378952 n 0000 ~ 07379852 n 0000 ~ 07379963 n 0000 ~ 07380144 n 0000 ~ 07380473 n 0000 ~ 07381423 n 0000 ~ 07381678 n 0000 ~ 07381864 n 0000 ~ 07382414 n 0000 ~ 07383616 n 0000 ~ 07383696 n 0000 ~ 07384244 n 0000 ~ 07384344 n 0000 ~ 07384614 n 0000 ~ 07384898 n 0000 ~ 07385367 n 0000 ~ 07385660 n 0000 ~ 07385803 n 0000 ~ 07388706 n 0000 ~ 07389931 n 0000 ~ 07390049 n 0000 ~ 07390205 n 0000 ~ 07390945 n 0000 ~ 07391240 n 0000 ~ 07391516 n 0000 ~ 07391682 n 0000 ~ 07392483 n 0000 ~ 07392783 n 0000 ~ 07392982 n 0000 ~ 07393161 n 0000 ~ 07393500 n 0000 ~ 07393589 n 0000 ~ 07393919 n 0000 ~ 07394115 n 0000 ~ 07394236 n 0000 ~ 07394478 n 0000 ~ 07394814 n 0000 ~ 07395104 n 0000 ~ 07395446 n 0000 ~ 07395623 n 0000 ~ 07395867 n 0000 ~ 07395957 n 0000 ~ 07396530 n 0000 ~ 07397355 n 0000 | sound of any kind (especially unintelligible or dissonant sound); "he enjoyed the street noises"; "they heard indistinct noises of people talking"; "during the firework display that ended the gala the noise reached 98 decibels" -07388706 11 n 01 pant 0 001 @ 07387509 n 0000 | the noise made by a short puff of steam (as from an engine) -07388816 11 n 03 paradiddle 0 roll 3 drum_roll 0 002 @ 07371293 n 0000 + 02198014 v 0201 | the sound of a drum (especially a snare drum) beaten rapidly and continuously -07388987 11 n 03 pat 0 rap 0 tap 0 006 @ 07371293 n 0000 + 01901021 v 0301 + 02185373 v 0301 + 01247804 v 0301 + 01233027 v 0102 ~ 07389757 n 0000 | the sound made by a gentle blow -07389170 11 n 01 patter 0 002 @ 07371293 n 0000 + 02185187 v 0101 | a quick succession of light rapid sounds; "the patter of mice"; "the patter of tiny feet" -07389330 11 n 04 peal 0 pealing 0 roll 0 rolling 0 007 @ 07371293 n 0000 + 02198014 v 0401 + 02198014 v 0301 + 02180898 v 0202 + 02181402 v 0201 + 02180898 v 0102 + 02181402 v 0101 | a deep prolonged sound (as of thunder or large bells) -07389569 11 n 01 ping 0 004 @ 07371293 n 0000 + 02178709 v 0101 + 02178866 v 0102 + 01236795 v 0101 | a sharp high-pitched resonant sound (as of a sonar echo or a bullet striking metal) -07389757 11 n 01 pitter-patter 0 002 @ 07388987 n 0000 + 02185187 v 0102 | a series of rapid tapping sounds; "she missed the pitter-patter of little feet around the house" -07389931 11 n 01 plonk 0 002 @ 07387509 n 0000 + 01500572 v 0103 | the noise of something dropping (as into liquid) -07390049 11 n 01 plop 0 003 @ 07387509 n 0000 + 01977421 v 0101 + 01977266 v 0101 | the noise of a rounded object dropping into a liquid without a splash -07390205 11 n 01 plump 0 002 @ 07387509 n 0000 + 01978199 v 0102 | the sound of a sudden heavy fall -07390307 11 n 01 plunk 0 002 @ 07371293 n 0000 + 02184965 v 0104 | a hollow twanging sound -07390400 11 n 02 pop 0 popping 0 008 @ 07371293 n 0000 + 02185988 v 0201 + 01134071 v 0201 + 00309582 v 0101 + 00309792 v 0101 + 02186192 v 0101 + 01134071 v 0101 + 02185988 v 0101 | a sharp explosive sound as from a gunshot or drawing a cork -07390645 11 n 01 purr 0 002 @ 07371293 n 0000 + 01052936 v 0101 | a low vibrating sound typical of a contented cat -07390762 11 n 01 quack 0 002 @ 07371293 n 0000 + 01053098 v 0101 | the harsh sound of a duck -07390857 11 n 01 quaver 0 002 @ 07371293 n 0000 + 01051118 v 0101 | a tremulous sound -07390945 11 n 01 racket 0 004 @ 07387509 n 0000 + 01921466 a 0101 + 02172008 v 0101 + 02491383 v 0102 | a loud and disturbing noise -07391079 11 n 03 rat-a-tat-tat 0 rat-a-tat 0 rat-tat 0 001 @ 07396658 n 0000 | a series of short sharp taps (as made by strokes on a drum or knocks on a door) -07391240 11 n 03 rattle 0 rattling 0 rale 0 005 @ 07387509 n 0000 + 02175057 v 0201 + 01890626 v 0201 + 02175057 v 0101 ~ 07382044 n 0000 | a rapid series of short loud sounds (as might be heard with a stethoscope in some types of respiratory disorders); "the death rattle" -07391516 11 n 01 report 0 001 @ 07387509 n 0000 | a sharp explosive sound (especially the sound of a gun firing); "they heard a violent report followed by silence" -07391682 11 n 01 rhonchus 0 001 @ 07387509 n 0000 | a sound like whistling or snoring that is heard with a stethoscope during expiration as air passes through obstructed channels -07391863 11 n 03 ring 0 ringing 0 tintinnabulation 0 008 @ 07371293 n 0000 + 02181281 v 0301 + 02181538 v 0201 + 02180898 v 0201 + 00789448 v 0105 + 02181538 v 0101 + 02180898 v 0101 ~ 07446920 n 0000 | the sound of a bell ringing; "the distinctive ring of the church bell"; "the ringing of the telephone"; "the tintinnabulation that so voluminously swells from the ringing and the dinging of the bells"--E. A. Poe -07392280 11 n 01 roar 1 002 @ 07382572 n 0000 + 01048718 v 0102 | the sound made by a lion -07392373 11 n 03 rub-a-dub 0 rataplan 0 drumbeat 0 001 @ 07371293 n 0000 | the sound made by beating a drum -07392483 11 n 04 rumble 0 rumbling 0 grumble 0 grumbling 0 009 @ 07387509 n 0000 + 02187320 v 0402 + 01045719 v 0401 + 02187320 v 0302 + 01045719 v 0301 + 02187320 v 0201 + 01045719 v 0203 + 01045719 v 0103 + 02187320 v 0101 | a loud low dull continuous noise; "they heard the rumbling of thunder" -07392783 11 n 04 rustle 0 rustling 0 whisper 0 whispering 0 003 @ 07387509 n 0000 + 02182662 v 0201 + 02182662 v 0101 | a light noise, like the noise of silk clothing or leaves blowing in the wind -07392982 11 n 04 scrape 0 scraping 0 scratch 0 scratching 0 002 @ 07387509 n 0000 + 00299476 a 0306 | a harsh noise made by scraping; "the scrape of violin bows distracted her" -07393161 11 n 06 screech 0 screeching 0 shriek 0 shrieking 0 scream 0 screaming 0 007 @ 07387509 n 0000 + 02173336 v 0601 + 02173336 v 0501 + 00914420 v 0301 + 02171664 v 0203 + 01214606 a 0102 + 02171664 v 0103 | a high-pitched noise resembling a human cry; "he ducked at the screechings of shells"; "he heard the scream of the brakes" -07393500 11 n 01 scrunch 0 002 @ 07387509 n 0000 + 02184797 v 0103 | a crunching noise -07393589 11 n 01 shrilling 0 002 @ 07387509 n 0000 + 00914420 v 0102 | a continuing shrill noise; "the clash of swords and the shrilling of trumpets"--P. J. Searles -07393756 11 n 01 sigh 0 003 @ 07371293 n 0000 + 00985800 v 0101 + 00004032 v 0101 | a sound like a person sighing; "she heard the sigh of the wind in the trees" -07393919 11 n 01 sizzle 0 001 @ 07387509 n 0000 | a sizzling noise -07393988 11 n 01 skirl 0 003 @ 07371293 n 0000 + 01726762 v 0101 + 02177846 v 0101 | the sound of (the chanter of) a bagpipe -07394115 11 n 01 slam 2 002 @ 07387509 n 0000 + 01242832 v 0101 | the noise made by the forceful impact of two objects -07394236 11 n 01 snap 2 003 @ 07387509 n 0000 + 01242208 v 0101 + 02182851 v 0101 | the noise produced by the rapid movement of a finger from the tip to the base of the thumb on the same hand; "servants appeared at the snap of his fingers" -07394478 11 n 01 snore 0 002 @ 07387509 n 0000 + 00017031 v 0101 | the rattling noise produced when snoring -07394588 11 n 01 song 0 002 @ 07371293 n 0000 + 01043887 v 0102 | a distinctive or characteristic sound; "the song of bullets was in the air"; "the song of the wind"; "the wheels sang their song as the train rocketed ahead" -07394814 11 n 07 spatter 0 spattering 0 splatter 0 splattering 0 sputter 0 splutter 0 sputtering 0 005 @ 07387509 n 0000 + 02186360 v 0701 + 00986897 v 0602 + 02186360 v 0501 + 02173513 v 0301 | the noise of something spattering or sputtering explosively; "he heard a spatter of gunfire" -07395104 11 n 02 splash 0 plash 0 007 @ 07387509 n 0000 + 01374020 v 0203 + 02801037 a 0101 + 02186868 v 0101 + 01374020 v 0104 + 01374767 v 0102 ~ 07395303 n 0000 | the sound like water splashing -07395303 11 n 01 splat 0 003 @ 07395104 n 0000 + 00463633 v 0101 + 02173513 v 0101 | a single splash; "he heard a splat as it hit the floor" -07395446 11 n 01 squawk 0 003 @ 07387509 n 0000 + 00299144 a 0102 + 01048939 v 0101 | the noise of squawking; "she awoke to the squawk of chickens"; "the squawk of car horns" -07395623 11 n 01 squeak 0 003 @ 07387509 n 0000 + 01214606 a 0104 + 02171664 v 0102 | a short high-pitched noise; "the squeak of shoes on powdery snow" -07395777 11 n 01 squeal 0 002 @ 07385367 n 0000 + 01054694 v 0101 | a high-pitched howl -07395867 11 n 01 squish 0 001 @ 07387509 n 0000 | the noise of soft mud being walked on -07395957 11 n 01 stridulation 0 002 @ 07387509 n 0000 + 02172296 v 0101 | a shrill grating or chirping noise made by some insects by rubbing body parts together -07396120 11 n 01 strum 0 002 @ 07371293 n 0000 + 02180362 v 0101 | sound of strumming; "the strum of a guitar" -07396233 11 n 02 susurration 0 susurrus 0 003 @ 07371293 n 0000 + 01044377 v 0201 + 01044377 v 0101 | the indistinct sound of people whispering; "a soft susurrus of conversation" -07396414 11 n 01 swish 0 003 @ 07371293 n 0000 + 01921868 a 0101 + 02188198 v 0102 | a brushing or rustling sound -07396530 11 n 02 swoosh 0 whoosh 0 001 @ 07387509 n 0000 | the noise produced by the sudden rush of a fluid (a gas or liquid) -07396658 11 n 01 tapping 0 003 @ 07371293 n 0000 + 02185373 v 0101 ~ 07391079 n 0000 | the sound of light blow or knock; "he heard the tapping of the man's cane" -07396822 11 n 01 throbbing 1 001 @ 07371293 n 0000 | a sound with a strong rhythmic beat; "the throbbing of the engines" -07396945 11 n 05 thump 1 thumping 0 clump 0 clunk 0 thud 0 009 @ 07371293 n 0000 + 02184797 v 0502 + 01238204 v 0501 + 02184610 v 0501 + 00174056 a 0401 + 02184965 v 0403 + 02184965 v 0302 + 02184610 v 0202 + 02184610 v 0102 | a heavy dull sound (as made by impact of heavy objects) -07397230 11 n 01 thrum 0 002 @ 07371293 n 0000 + 02180362 v 0102 | a thrumming sound; "he could hear the thrum of a banjo" -07397355 11 n 01 thunder 1 004 @ 07387509 n 0000 + 00306034 a 0101 + 02770535 v 0101 ~ 07397552 n 0000 | a booming or crashing noise caused by air expanding along the path of a bolt of lightning -07397552 11 n 01 thunderclap 0 001 @ 07397355 n 0000 | a single sharp crash of thunder -07397641 11 n 01 thunk 0 001 @ 07371293 n 0000 | a dull hollow sound; "the basketball made a thunk as it hit the rim" -07397761 11 n 02 tick 0 ticking 0 005 @ 07371293 n 0000 + 02175578 v 0201 + 02185664 v 0202 + 02185664 v 0102 ~ 07397955 n 0000 | a metallic tapping sound; "he counted the ticks of the clock" -07397955 11 n 03 ticktock 0 tocktact 0 tictac 0 002 @ 07397761 n 0000 + 02175578 v 0102 | steady recurrent ticking sound as made by a clock -07398097 11 n 02 ting 0 tinkle 0 005 @ 07371293 n 0000 + 02010831 a 0202 + 02186506 v 0201 + 02180262 v 0101 + 02136019 v 0101 | a light clear metallic sound as of a small bell -07398276 11 n 01 toot 0 002 @ 07371293 n 0000 + 02183175 v 0105 | a blast of a horn -07398362 11 n 01 tootle 0 002 @ 07371293 n 0000 + 02183442 v 0101 | the sound of casual playing on a musical instrument; "he enjoyed hearing the tootles of their horns as the musicians warmed up" -07398560 11 n 01 tramp 0 001 @ 07383823 n 0000 | a heavy footfall; "the tramp of military boots" -07398659 11 n 02 trample 0 trampling 0 005 @ 07371293 n 0000 + 01929467 v 0202 + 01867504 v 0102 + 00070439 v 0101 + 01929467 v 0102 | the sound of heavy treading or stomping; "he heard the trample of many feet" -07398873 11 n 01 twang 0 004 @ 07371293 n 0000 + 01452783 v 0101 + 02173838 v 0101 + 02173967 v 0101 | a sharp vibrating sound (as of a plucked string) -07399027 11 n 01 tweet 0 002 @ 07379409 n 0000 + 02177661 v 0101 | a weak chirping sound as of a small bird -07399137 11 n 01 vibrato 0 003 @ 07371293 n 0000 ;c 07020895 n 0000 ~ 07399336 n 0000 | (music) a pulsating effect in an instrumental or vocal tone produced by slight and rapid variations in pitch -07399336 11 n 01 tremolo 0 001 @ 07399137 n 0000 | vocal vibrato especially an excessive or poorly controlled one -07399452 11 n 01 voice 0 001 @ 07371293 n 0000 | a sound suggestive of a vocal utterance; "the noisy voice of the waterfall"; "the incessant voices of the artillery" -07399620 11 n 01 vroom 0 001 @ 07371293 n 0000 | the roaring sound made by a motor that is running at high speed -07399735 11 n 01 water_hammer 0 001 @ 07376257 n 0000 | the banging sound of steam in pipes -07399829 11 n 01 whack 0 001 @ 07371293 n 0000 | the sound made by a sharp swift blow -07399917 11 n 04 whir 0 whirr 0 whirring 0 birr 0 005 @ 07371293 n 0000 + 02188587 v 0405 + 02188587 v 0304 + 02188587 v 0203 + 02188587 v 0104 | sound of something in rapid motion; "whir of a bird's wings"; "the whir of the propellers" -07400156 11 n 02 whistle 0 whistling 0 004 @ 07371293 n 0000 + 02183626 v 0201 + 01043887 v 0201 + 01043887 v 0101 | the sound made by something moving rapidly or by steam coming out of a small aperture -07400361 11 n 01 whiz 0 002 @ 07371293 n 0000 + 02188587 v 0102 | a buzzing or hissing sound as of something traveling rapidly through the air; "he heard the whiz of bullets near his head" -07400552 11 n 03 yip 0 yelp 0 yelping 0 003 @ 07382572 n 0000 + 01048171 v 0301 + 01048171 v 0201 | a sharp high-pitched cry (especially by a dog) -07400701 11 n 01 zing 0 001 @ 07371293 n 0000 | a brief high-pitched buzzing or humming sound; "the zing of the passing bullet" -07400831 11 n 01 news_event 0 001 @ 07283608 n 0000 | a newsworthy event -07400906 11 n 04 pulse 0 pulsation 2 heartbeat 0 beat 0 008 @ 07296190 n 0000 + 01880113 v 0401 + 01879251 v 0201 + 01879251 v 0103 + 01879251 v 0101 ~ 07401236 n 0000 ~ 07401409 n 0000 ~ 07401726 n 0000 | the rhythmic contraction and expansion of the arteries with each beat of the heart; "he could feel the beat of her heart" -07401236 11 n 01 diastole 0 002 @ 07400906 n 0000 + 02712270 a 0101 | the widening of the chambers of the heart between two contractions when the chambers fill with blood -07401409 11 n 01 systole 0 002 @ 07400906 n 0000 ~ 07401604 n 0000 | the contraction of the chambers of the heart (especially the ventricles) to drive blood into the aorta and pulmonary artery -07401604 11 n 01 extrasystole 0 001 @ 07401409 n 0000 | a premature systole resulting in a momentary cardiac arrhythmia -07401726 11 n 03 throb 0 throbbing 0 pounding 1 005 @ 07400906 n 0000 + 01880113 v 0302 + 02122665 v 0201 + 01879251 v 0102 + 02122665 v 0101 | an instance of rapid strong pulsation (of the heart); "he felt a throbbing in his head" -07401960 11 n 03 high_tide 0 high_water 0 highwater 0 005 @ 07402519 n 0000 ! 07402271 n 0101 ~ 07402873 n 0000 ~ 07403300 n 0000 ~ 07403459 n 0000 | the tide when the water is highest -07402147 11 n 02 ebb 0 reflux 0 003 @ 07405893 n 0000 #p 07402393 n 0000 + 01903935 v 0101 | the outward flow of the tide -07402271 11 n 02 low_tide 0 low_water 0 002 @ 07402519 n 0000 ! 07401960 n 0101 | the lowest (farthest) ebb of the tide -07402393 11 n 01 ebbtide 0 003 @ 07402519 n 0000 ! 07403030 n 0101 %p 07402147 n 0000 | the tide while water is flowing out -07402519 11 n 01 tide 0 013 @ 07296190 n 0000 + 02815241 a 0101 + 01874320 v 0101 + 01874424 v 0101 ~ 07401960 n 0000 ~ 07402271 n 0000 ~ 07402393 n 0000 ~ 07403030 n 0000 ~ 07403601 n 0000 ~ 07403779 n 0000 %p 07404114 n 0000 %p 07404443 n 0000 %p 07404798 n 0000 | the periodic rise and fall of the sea level under the gravitational pull of the moon -07402873 11 n 01 direct_tide 0 001 @ 07401960 n 0000 | the occurrence of high tide on one side of the earth coinciding with high tide on the opposite side -07403030 11 n 03 flood_tide 0 flood 0 rising_tide 0 002 @ 07402519 n 0000 ! 07402393 n 0101 | the occurrence of incoming water (between a low tide and the following high tide); "a tide in the affairs of men which, taken at the flood, leads on to fortune" -Shakespeare -07403300 11 n 02 neap_tide 0 neap 0 002 @ 07401960 n 0000 ! 07403459 n 0101 | a less than average tide occurring at the first and third quarters of the moon -07403459 11 n 01 springtide 0 002 @ 07401960 n 0000 ! 07403300 n 0101 | a greater than average tide occurring during the new and full moons -07403601 11 n 02 leeward_tide 0 lee_tide 0 001 @ 07402519 n 0000 | a tide that runs in the same direction as the wind is blowing; "a leeward tide is dangerous for small boats" -07403779 11 n 02 slack_water 0 slack_tide 0 001 @ 07402519 n 0000 | the occurrence of relatively still water at the turn of the (low) tide -07403920 11 n 05 tidal_bore 0 bore 0 eagre 0 aegir 0 eager 0 001 @ 07404114 n 0000 | a high wave (often dangerous) caused by tidal flow (as by colliding tidal currents or in a narrow estuary) -07404114 11 n 02 tidal_flow 0 tidal_current 0 003 @ 07406765 n 0000 #p 07402519 n 0000 ~ 07403920 n 0000 | the water current caused by the tides -07404261 11 n 06 undertow 0 sea_puss 0 sea-puss 0 sea_purse 0 sea-purse 0 sea-poose 0 001 @ 07404798 n 0000 | the seaward undercurrent created after waves have broken on the shore -07404443 11 n 02 riptide 0 rip_current 0 002 @ 07406765 n 0000 #p 07402519 n 0000 | a strong surface current flowing outwards from a shore -07404584 11 n 05 rip 0 riptide 1 tide_rip 0 crosscurrent 0 countercurrent 0 001 @ 11520989 n 0000 | a stretch of turbulent water in a river or the sea caused by one current flowing into or across another current -07404798 11 n 02 undertide 0 undercurrent 0 003 @ 07406765 n 0000 #p 07402519 n 0000 ~ 07404261 n 0000 | a current below the surface of a fluid -07404944 11 n 01 slide 0 005 @ 07363346 n 0000 ;c 06115701 n 0000 + 01870275 v 0105 ~ 07405137 n 0000 ~ 07405411 n 0000 | (geology) the descent of a large mass of earth or rocks or snow etc. -07405137 11 n 01 avalanche 0 003 @ 07404944 n 0000 + 01966706 v 0101 ~ 07405292 n 0000 | a slide of large masses of snow and ice and mud down a mountain -07405292 11 n 01 lahar 0 001 @ 07405137 n 0000 | an avalanche of volcanic water and mud down the slopes of a volcano -07405411 11 n 02 landslide 0 landslip 0 003 @ 07404944 n 0000 ~ 07405579 n 0000 ~ 07405817 n 0000 | a slide of a large mass of dirt and rock down a mountain or cliff -07405579 11 n 01 mudslide 0 001 @ 07405411 n 0000 | a landslide of mud -07405652 11 n 01 Plinian_eruption 0 001 @ 07436475 n 0000 | a volcanic eruption in which a stream of gas and ash is violently ejected to a height of several miles -07405817 11 n 01 rockslide 0 001 @ 07405411 n 0000 | a landslide of rocks -07405893 11 n 02 flow 0 flowing 0 020 @ 07311115 n 0000 + 02066939 v 0202 + 02743727 v 0101 + 02067689 v 0101 + 02066939 v 0102 ~ 03387926 n 0000 ~ 07402147 n 0000 ~ 07406350 n 0000 ~ 07406601 n 0000 ~ 07406765 n 0000 ~ 07407137 n 0000 ~ 07407272 n 0000 ~ 07407459 n 0000 ~ 07407777 n 0000 ~ 07407970 n 0000 ~ 07432119 n 0000 ~ 07432559 n 0000 ~ 07433868 n 0000 ~ 07439570 n 0000 ~ 07440240 n 0000 | the motion characteristic of fluids (liquids or gases) -07406350 11 n 02 backflow 0 backflowing 0 002 @ 07405893 n 0000 ~ 07406474 n 0000 | a flow that returns toward its source -07406474 11 n 01 regurgitation 0 002 @ 07406350 n 0000 + 02069396 v 0101 | backflow of blood through a defective heart valve -07406601 11 n 03 airflow 0 air_flow 0 flow_of_air 0 001 @ 07405893 n 0000 | the flow of air; "she adjusted the fan so that the airflow was directed right at her" -07406765 11 n 02 current 0 stream 0 009 @ 07405893 n 0000 + 02070466 v 0201 ~ 07404114 n 0000 ~ 07404443 n 0000 ~ 07404798 n 0000 ~ 07407593 n 0000 ~ 07432973 n 0000 ~ 07433145 n 0000 ~ 11488387 n 0000 | a steady flow of a fluid (usually from natural causes); "the raft floated downstream on the current"; "he felt a stream of air"; "the hose ejected a stream of water" -07407137 11 n 02 freshet 0 spate 0 001 @ 07405893 n 0000 | the occurrence of a water flow resulting from sudden rain or melting snow -07407272 11 n 03 overflow 0 runoff 0 overspill 0 003 @ 07405893 n 0000 + 02067889 v 0202 + 02072159 v 0101 | the occurrence of surplus liquid (as water) exceeding the limit or capacity -07407459 11 n 02 dripping 0 drippage 0 001 @ 07405893 n 0000 | a liquid (as water) that flows in drops (as from the eaves of house) -07407593 11 n 02 torrent 0 violent_stream 0 002 @ 07406765 n 0000 + 02817796 a 0101 | a violently fast stream of water (or other liquid); "the houses were swept away in the torrent" -07407777 11 n 03 discharge 1 outpouring 0 run 0 006 @ 07405893 n 0000 + 02261746 a 0302 + 02066939 v 0301 + 01377032 v 0101 ~ 07436100 n 0000 ~ 07436661 n 0000 | the pouring forth of a fluid -07407970 11 n 02 flux 0 fluxion 0 003 @ 07405893 n 0000 + 02066510 v 0202 + 00443984 v 0102 | a flow or discharge -07408086 11 n 01 airburst 0 001 @ 07308563 n 0000 | an explosion in the atmosphere -07408171 11 n 01 blast 0 003 @ 07308563 n 0000 + 01135922 v 0101 ~ 07408288 n 0000 | an explosion (as of dynamite) -07408288 11 n 01 bomb_blast 0 002 @ 07408171 n 0000 ~ 07408386 n 0000 | the explosion of a bomb -07408386 11 n 02 nuclear_explosion 0 atomic_explosion 0 002 @ 07408288 n 0000 %p 09279870 n 0000 | the explosion of an atomic bomb -07408519 11 n 02 backblast 0 back-blast 0 001 @ 07408965 n 0000 | backfire from a recoilless weapon -07408621 11 n 01 backfire 0 002 @ 07308563 n 0000 + 02173663 v 0101 | a loud noise made by the explosion of fuel in the manifold or exhaust of an internal combustion engine -07408796 11 n 01 big_bang 0 002 @ 07308563 n 0000 ;c 06098195 n 0000 | (cosmology) the cosmic explosion that is hypothesized to have marked the origin of the universe -07408965 11 n 02 blowback 0 backfire 1 002 @ 07308563 n 0000 ~ 07408519 n 0000 | the backward escape of gases and unburned gunpowder after a gun is fired -07409121 11 n 01 fragmentation 0 002 @ 07308563 n 0000 + 00338071 v 0102 | the scattering of bomb fragments after the bomb explodes -07409255 11 n 01 inflation 0 002 @ 07308563 n 0000 ;c 06098195 n 0000 | (cosmology) a brief exponential expansion of the universe (faster than the speed of light) postulated to have occurred shortly after the big bang -07409475 11 n 02 ricochet 0 carom 0 003 @ 07350192 n 0000 + 01892849 v 0201 + 01892104 v 0109 | a glancing rebound -07409592 11 n 02 touch 0 touching 0 009 @ 07339329 n 0000 + 02127358 v 0201 + 02685665 v 0103 + 01206849 v 0101 + 01205696 v 0101 + 02127358 v 0101 + 01206218 v 0101 ~ 07413714 n 0000 ~ 07413815 n 0000 | the event of something coming in contact with the body; "he longed for the touch of her hand"; "the cooling touch of the night air" -07409930 11 n 01 concussion 1 002 @ 07338681 n 0000 + 01890510 v 0101 | any violent blow -07410021 11 n 03 rap 1 strike 0 tap 1 007 @ 07338681 n 0000 + 02185373 v 0301 + 01247804 v 0301 + 01410223 v 0201 + 01236164 v 0202 + 02185373 v 0102 + 01414288 v 0101 | a gentle blow -07410207 11 n 05 knock 0 bash 0 bang 1 smash 1 belt 0 008 @ 07338681 n 0000 + 01415162 v 0501 + 01566705 v 0403 + 00335923 v 0401 + 01401772 v 0401 + 01242391 v 0302 + 01397088 v 0206 + 01238640 v 0101 | a vigorous blow; "the sudden knock floored him"; "he took a bash right in his face"; "he got a bang on the head" -07410526 11 n 02 pounding 0 buffeting 0 001 @ 07338681 n 0000 | repeated heavy blows -07410613 11 n 01 sideswipe 0 001 @ 07338681 n 0000 | a glancing blow from or on the side of something (especially motor vehicles) -07410745 11 n 02 slap 0 smack 0 003 @ 07338681 n 0000 + 01414916 v 0201 + 01416871 v 0101 | a blow from a flat object (as an open hand) -07410883 11 n 03 deflection 0 deflexion 0 refraction 0 001 @ 07310991 n 0000 | the amount by which a propagating wave is bent -07411011 11 n 01 simple_harmonic_motion 0 001 @ 07349880 n 0000 | periodic motion in which the restoring force is proportional to the displacement -07411160 11 n 02 reversal 0 turn_around 0 003 @ 07351612 n 0000 + 01878949 v 0203 + 00386715 v 0103 | turning in an opposite direction or position; "the reversal of the image in the lens" -07411350 11 n 02 yaw 0 swerve 0 003 @ 07351612 n 0000 + 02033295 v 0201 + 02066028 v 0101 | an erratic deflection from an intended course -07411490 11 n 01 concussion 0 002 @ 07313636 n 0000 + 01890510 v 0101 | injury to the brain caused by a blow; usually resulting in loss of consciousness -07411645 11 n 03 twinkle 0 scintillation 0 sparkling 0 005 @ 07296428 n 0000 + 02766390 v 0301 + 02767760 v 0201 + 02764765 v 0101 + 02159890 v 0104 | a rapid change in brightness; a brief spark or flash -07411851 11 n 02 shimmer 0 play 0 005 @ 07296428 n 0000 + 01903385 v 0201 + 00283167 a 0101 + 02706478 v 0101 + 02763450 v 0101 | a weak and tremulous light; "the shimmer of colors on iridescent feathers"; "the play of light on the water" -07412092 11 n 01 flash 0 008 @ 07283608 n 0000 + 00424869 v 0101 ~ 07412310 n 0000 ~ 07412478 n 0000 ~ 07412668 n 0000 ~ 07412876 n 0000 ~ 07412993 n 0000 ~ 07413629 n 0000 | a sudden intense burst of radiant energy -07412310 11 n 03 flicker 0 spark 1 glint 0 005 @ 07412092 n 0000 + 02162947 v 0303 + 02766687 v 0201 + 02160177 v 0101 + 02763609 v 0101 | a momentary flash of light -07412478 11 n 03 gleam 0 gleaming 0 glimmer 0 005 @ 07412092 n 0000 + 00281527 a 0301 + 02160779 v 0302 + 02160779 v 0201 + 02160779 v 0101 | a flash of light (especially reflected light) -07412668 11 n 03 glitter 0 sparkle 0 coruscation 0 006 @ 07412092 n 0000 + 02766390 v 0303 + 00279618 a 020a + 02766687 v 0202 + 02766390 v 0201 + 00279618 a 0107 | the occurrence of a small flash or spark -07412876 11 n 01 heat_flash 0 001 @ 07412092 n 0000 | a flash of intense heat (as released by an atomic explosion) -07412993 11 n 01 lightning 0 003 @ 07412092 n 0000 ~ 07413237 n 0000 ~ 07413452 n 0000 | the flash of light that accompanies an electric discharge in the atmosphere (or something resembling such a flash); can scintillate for a second or more -07413237 11 n 01 heat_lightning 0 001 @ 07412993 n 0000 | bright flashes of light near the horizon without thunder (especially on hot evenings); usually attributed to distant lightning that is reflected by clouds -07413452 11 n 01 sheet_lighting 0 001 @ 07412993 n 0000 | lightning that appears as a broad sheet; due to reflections of more distant lightning and to diffusion by the clouds -07413629 11 n 01 streak 0 001 @ 07412092 n 0000 | a sudden flash (as of lightning) -07413714 11 n 02 brush 0 light_touch 0 002 @ 07409592 n 0000 + 01240720 v 0101 | momentary contact -07413815 11 n 01 stroke 1 002 @ 07409592 n 0000 + 01225970 v 0101 | a light touch -07413899 11 n 01 concentration 0 006 @ 07356676 n 0000 + 00237259 v 0104 + 00237511 v 0101 + 00236999 v 0103 ~ 07419233 n 0000 ~ 07419408 n 0000 | increase in density -07414068 11 n 01 explosion 1 002 @ 07356676 n 0000 + 00157623 v 0101 | a sudden great increase; "the population explosion"; "the information explosion" -07414222 11 n 02 jump 1 leap 1 003 @ 07356676 n 0000 + 00155727 v 0101 ~ 07359184 n 0000 | a sudden and decisive increase; "a jump in attendance" -07414370 11 n 02 runup 0 run-up 0 001 @ 07356676 n 0000 | a substantial increase over a relatively short period of time; "a runup in interest rates"; "market runups are followed by corrections" -07414566 11 n 01 waxing 0 004 @ 07356676 n 0000 ! 07423001 n 0101 + 00433525 v 0101 + 00433232 v 0101 | a gradual increase in magnitude or extent; "the waxing of the moon" -07414740 11 n 01 convergence 0 005 @ 07283608 n 0000 + 00612114 a 0101 + 02032634 v 0101 + 02710402 v 0101 ~ 07414922 n 0000 | the occurrence of two or more things coming together -07414922 11 n 02 meeting 0 encounter 0 004 @ 07414740 n 0000 + 02248465 v 0205 + 02023107 v 0101 ~ 07415167 n 0000 | a casual or unexpected convergence; "he still remembers their meeting in Paris"; "there was a brief encounter in the hallway" -07415167 11 n 02 conjunction 0 alignment 0 004 @ 07414922 n 0000 ;c 06095022 n 0000 ~ 07415396 n 0000 ~ 07415561 n 0000 | (astronomy) apparent meeting or passing of two or more celestial bodies in the same degree of the zodiac -07415396 11 n 01 inferior_conjunction 0 002 @ 07415167 n 0000 ;c 06095022 n 0000 | (astronomy) the alignment of the Earth and a planet on the same side of the sun -07415561 11 n 01 superior_conjunction 0 002 @ 07415167 n 0000 ;c 06095022 n 0000 | (astronomy) the alignment of the Earth and a planet on the opposite side of the sun -07415730 11 n 03 conversion 0 transition 0 changeover 0 007 @ 07359599 n 0000 + 00381013 v 0302 + 00550823 v 0201 + 00381013 v 0101 ~ 07415962 n 0000 ~ 07416107 n 0000 ~ 07416308 n 0000 | an event that results in a transformation -07415962 11 n 01 glycogenesis 0 001 @ 07415730 n 0000 | the conversion of glucose to glycogen when the glucose in the blood exceeds the demand -07416107 11 n 02 isomerization 0 isomerisation 0 005 @ 07415730 n 0000 + 00575169 v 0202 + 00574996 v 0202 + 00575169 v 0101 + 00574996 v 0101 | the conversion of a compound into an isomer of itself -07416308 11 n 01 rectification 0 002 @ 07415730 n 0000 + 00161731 v 0101 | the conversion of alternating current to direct current -07416441 11 n 01 transmutation 1 003 @ 07296428 n 0000 ;c 06090869 n 0000 + 00382493 v 0101 | (physics) the change of one chemical element into another (as by nuclear decay or radioactive bombardment); "the transmutation of base metals into gold proved to be impossible" -07416714 11 n 02 juncture 0 occasion 0 008 @ 07283608 n 0000 ~ 07417043 n 0000 ~ 07417298 n 0000 ~ 07417644 n 0000 ~ 07417851 n 0000 ~ 07418716 n 0000 ~ 07418822 n 0000 ~ 07418963 n 0000 | an event that occurs at a critical time; "at such junctures he always had an impulse to leave"; "it was needed only on special occasions" -07417043 11 n 02 climax 0 flood_tide 1 003 @ 07416714 n 0000 + 02487718 a 0101 + 00485609 v 0102 | the highest point of anything conceived of as growing or developing or unfolding; "the climax of the artist's career"; "in the flood tide of his success" -07417298 11 n 01 conjuncture 0 001 @ 07416714 n 0000 | a critical combination of events or circumstances -07417405 11 n 03 emergency 0 exigency 0 pinch 1 003 @ 07417644 n 0000 + 00712877 a 0203 + 01143855 a 0101 | a sudden unforeseen crisis (usually involving danger) that requires immediate action; "he never knew what to do in an emergency" -07417644 11 n 01 crisis 0 003 @ 07416714 n 0000 + 00656132 a 0101 ~ 07417405 n 0000 | a crucial stage or turning point in the course of something; "after the crisis the patient either dies or gets better" -07417851 11 n 03 landmark 0 turning_point 0 watershed 0 003 @ 07416714 n 0000 ~ 07418146 n 0000 ~ 07418497 n 0000 | an event marking a unique or important historical change of course or one on which important developments depend; "the agreement was a watershed in the history of both nations" -07418146 11 n 01 Fall_of_Man 0 002 @ 07417851 n 0000 ;c 06449735 n 0000 | (Judeo-Christian mythology) when Adam and Eve ate of the fruit of the tree of knowledge of good and evil in the Garden of Eden, God punished them by driving them out of the Garden of Eden and into the world where they would be subject to sickness and pain and eventual death -07418497 11 n 01 road_to_Damascus 0 001 @ 07417851 n 0000 | a sudden turning point in a person's life (similar to the sudden conversion of the Apostle Paul on the road from Jerusalem to Damascus of arrest Christians) -07418716 11 n 01 milestone 0 001 @ 07416714 n 0000 | a significant event in your life (or in a project) -07418822 11 n 03 pass 0 head 1 straits 0 001 @ 07416714 n 0000 | a difficult juncture; "a pretty pass"; "matters came to a head yesterday" -07418963 11 n 01 reality_check 0 001 @ 07416714 n 0000 | an occasion on which one is reminded of the nature of things in the real world; "this program is intended as a reality check for CEOs"; "after all those elaborate productions, I felt in need of a reality check" -07419233 11 n 04 compaction 0 compression 2 concretion 0 densification 0 003 @ 07413899 n 0000 + 00374534 v 0301 + 01484027 v 0101 | an increase in the density of something -07419408 11 n 01 rarefaction 0 003 @ 07413899 n 0000 + 00570383 v 0101 + 00226379 v 0101 | a decrease in the density of something; "a sound wave causes periodic rarefactions in its medium" -07419599 11 n 02 conservation 0 preservation 0 003 @ 07357388 n 0000 + 10060621 n 0102 + 02280132 v 0101 | an occurrence of improvement by virtue of preventing loss or injury or other change -07419792 11 n 01 recovery 0 002 @ 07357388 n 0000 + 00528339 v 0101 | return to an original state; "the recovery of the forest after the fire was surprisingly rapid" -07419960 11 n 03 remission 0 remittal 0 subsidence 2 005 @ 07368256 n 0000 + 00232956 v 0301 + 00268314 v 0201 + 00268314 v 0101 ~ 07420217 n 0000 | an abatement in intensity or degree (as in the manifestations of a disease); "his cancer is in remission" -07420217 11 n 01 resolution 0 001 @ 07419960 n 0000 | the subsidence of swelling or other signs of inflammation (especially in a lung) -07420354 11 n 02 curse 0 torment 0 001 @ 07305234 n 0000 | a severe affliction -07420435 11 n 01 fire 1 001 @ 07372959 n 0000 | a severe trial; "he went through fire and damnation" -07420538 11 n 02 detriment 0 hurt 1 004 @ 07420770 n 0000 + 00260470 v 0201 + 01161984 a 0102 ~ 07420671 n 0000 | a damage or loss -07420671 11 n 01 expense 0 001 @ 07420538 n 0000 | a detriment or sacrifice; "at the expense of" -07420770 11 n 03 damage 0 harm 1 impairment 0 007 @ 07296428 n 0000 + 00262881 v 0301 + 00102586 v 0201 + 00258857 v 0101 ~ 07420538 n 0000 ~ 07433973 n 0000 ~ 07443010 n 0000 | the occurrence of a change for the worse -07420991 11 n 04 pulsation 0 pulsing 0 pulse 1 impulse 1 006 @ 07345593 n 0000 ;c 06099269 n 0000 + 01623027 v 0301 + 01623027 v 0302 + 01623027 v 0201 + 01623027 v 0102 | (electronics) a sharp transient wave in the normal electrical state (or a series of such transients); "the pulsations seemed to be coming from a star" -07421316 11 n 02 breakdown 1 equipment_failure 0 008 @ 07317764 n 0000 + 00434374 v 0109 ~ 07421580 n 0000 ~ 07421669 n 0000 ~ 07421749 n 0000 ~ 07421859 n 0000 ~ 07422036 n 0000 ~ 07422244 n 0000 | a cessation of normal operation; "there was a power breakdown" -07421580 11 n 01 brake_failure 0 001 @ 07421316 n 0000 | brakes fail to stop a vehicle -07421669 11 n 01 engine_failure 0 001 @ 07421316 n 0000 | engine does not run -07421749 11 n 02 misfire 0 dud 1 002 @ 07421316 n 0000 + 01134653 v 0101 | an explosion that fails to occur -07421859 11 n 01 outage 0 002 @ 07421316 n 0000 ;c 03082979 n 0000 | a temporary suspension of operation (as of computers); "there will be a network outage from 8 to 10 a.m." -07422036 11 n 02 power_outage 0 power_failure 0 003 @ 07421316 n 0000 ~ 07422506 n 0000 ~ 07422629 n 0000 | equipment failure resulting when the supply of power fails; "the ice storm caused a power outage" -07422244 11 n 01 fault 0 002 @ 07421316 n 0000 ;c 06099269 n 0000 | (electronics) equipment failure attributable to some defect in a circuit (loose connection or insulation failure or short circuit etc.); "it took much longer to find the fault than to fix it" -07422506 11 n 01 blackout 0 002 @ 07422036 n 0000 + 00312648 v 0101 | the failure of electric power for a general region -07422629 11 n 01 flame-out 0 002 @ 07422036 n 0000 ;c 03596285 n 0000 | the failure of a jet engine caused by an interruption of the fuel supply or by faulty combustion -07422800 11 n 02 dwindling 0 dwindling_away 0 003 @ 07355887 n 0000 + 00267681 v 0101 ~ 07423248 n 0000 | a becoming gradually less; "there is no greater sadness that the dwindling away of a family" -07423001 11 n 01 waning 0 005 @ 07355887 n 0000 ! 07414566 n 0101 + 00431826 v 0103 + 00433778 v 0101 + 00433933 v 0101 | a gradual decrease in magnitude or extent; "the waning of his enthusiasm was obvious"; "the waxing and waning of the moon" -07423248 11 n 01 fading_away 0 001 @ 07422800 n 0000 | gradually diminishing in brightness or loudness or strength -07423365 11 n 03 turn 1 turn_of_events 0 twist 0 004 @ 07423560 n 0000 + 00125841 v 0101 + 00146138 v 0102 + 02626604 v 0102 | an unforeseen development; "events suddenly took an awkward turn" -07423560 11 n 01 development 1 005 @ 07296428 n 0000 + 00339464 v 0103 ~ 07423365 n 0000 ~ 07423818 n 0000 ~ 07423899 n 0000 | a recent event that has some relevance for the present situation; "recent developments in Iraq"; "what a revolting development!" -07423818 11 n 01 phenomenon 0 001 @ 07423560 n 0000 | a remarkable development -07423899 11 n 02 complication 0 ramification 0 003 @ 07423560 n 0000 + 00401373 v 0202 + 00402539 v 0101 | a development that complicates a situation; "the court's decision had many unforeseen ramifications" -07424109 11 n 01 revolution 1 009 @ 07296428 n 0000 + 01642657 a 0101 + 10527334 n 0101 + 00605310 v 0101 + 00125633 v 0101 + 00605310 v 0102 + 00125633 v 0102 ~ 07424436 n 0000 ~ 07424797 n 0000 | a drastic and far-reaching change in ways of thinking and behaving; "the industrial revolution was also a cultural revolution" -07424436 11 n 02 Cultural_Revolution 0 Great_Proletarian_Cultural_Revolution 0 002 @ 07424109 n 0000 ;r 08723006 n 0000 | a radical reform in China initiated by Mao Zedong in 1965 and carried out largely by the Red Guard; intended to eliminate counterrevolutionary elements in the government it resulted in purges of the intellectuals and socioeconomic chaos -07424797 11 n 01 green_revolution 0 001 @ 07424109 n 0000 | the introduction of pesticides and high-yield grains and better management during the 1960s and 1970s which greatly increased agricultural productivity -07425011 11 n 03 mutation 0 genetic_mutation 0 chromosomal_mutation 0 011 @ 07296428 n 0000 ;c 06075527 n 0000 + 02987177 a 0101 + 00119873 v 0101 ~ 07425577 n 0000 ~ 07425726 n 0000 ~ 07425903 n 0000 %p 07426108 n 0000 ~ 07426406 n 0000 ~ 07426573 n 0000 ~ 07426732 n 0000 | (genetics) any event that changes genetic structure; any alteration in the inherited nucleic acid sequence of the genotype of an organism -07425427 11 n 01 sex_change 0 001 @ 07296428 n 0000 | a change in a person's physical sexual characteristics (as by surgery and hormone treatments) -07425577 11 n 01 deletion 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) the loss or absence of one or more nucleotides from a chromosome -07425726 11 n 01 inversion 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) a kind of mutation in which the order of the genes in a section of a chromosome is reversed -07425903 11 n 01 transposition 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) a kind of mutation in which a chromosomal segment is transfered to a new position on the same or another chromosome -07426108 11 n 01 mutagenesis 0 003 @ 07326557 n 0000 #p 07425011 n 0000 ~ 07426241 n 0000 | an event capable of causing a mutation -07426241 11 n 01 insertional_mutagenesis 0 002 @ 07426108 n 0000 ;c 06075527 n 0000 | (genetics) a mutation caused by the insertion of exogenous DNA into a genome -07426406 11 n 02 point_mutation 0 gene_mutation 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) a mutation due to an intramolecular reorganization of a gene -07426573 11 n 01 reversion 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) a return to a normal phenotype (usually resulting from a second mutation) -07426732 11 n 01 saltation 0 002 @ 07425011 n 0000 ;c 06075527 n 0000 | (genetics) a mutation that drastically changes the phenotype of an organism or species -07426893 11 n 02 degeneration 0 retrogression 0 003 @ 07359599 n 0000 ~ 07428111 n 0000 ~ 07428257 n 0000 | passing from a more complex to a simpler biological form -07427060 11 n 02 atrophy 0 withering 0 003 @ 07427337 n 0000 + 00421917 v 0202 + 00093979 v 0101 | any weakening or degeneration (especially through lack of use) -07427224 11 n 01 strengthening 0 003 @ 07359599 n 0000 + 00220461 v 0101 ! 07427337 n 0101 | becoming stronger -07427337 11 n 01 weakening 0 008 @ 07359599 n 0000 + 00223500 v 0101 ! 07427224 n 0101 ~ 07331210 n 0000 ~ 07427060 n 0000 ~ 07427534 n 0000 ~ 07427728 n 0000 ~ 07443210 n 0000 | becoming weaker -07427534 11 n 02 attenuation 0 fading 0 004 @ 07427337 n 0000 + 00421917 v 0201 + 00093593 v 0202 + 00220701 v 0101 | weakening in force or intensity; "attenuation in the volume of the sound" -07427728 11 n 02 fall 1 downfall 0 005 @ 07427337 n 0000 + 02385153 v 0101 + 02528985 v 0101 ! 07324917 n 0101 ~ 07427951 n 0000 | a sudden decline in strength or number or importance; "the fall of the House of Hapsburg" -07427951 11 n 01 anticlimax 0 002 @ 07427728 n 0000 + 02487906 a 0101 | a disappointing decline after a previous rise; "the anticlimax of a brilliant career" -07428111 11 n 01 abiotrophy 0 001 @ 07426893 n 0000 | a loss of vitality and a degeneration of cells and tissues not due to any apparent injury -07428257 11 n 01 cataplasia 0 003 @ 07426893 n 0000 ;c 06037666 n 0000 + 02683315 a 0101 | (biology) degenerative reversion of cells or tissue to a less differentiated or more primitive form -07428450 11 n 02 perturbation 0 disturbance 0 003 @ 00407535 n 0000 ~ 07372565 n 0000 ~ 07428797 n 0000 | activity that is a malfunction, intrusion, or interruption; "the term `distress' connotes some degree of perturbation and emotional upset"; "he looked around for the source of the disturbance"; "there was a disturbance of neural function" -07428797 11 n 01 magnetic_storm 0 001 @ 07428450 n 0000 | a sudden disturbance of the earth's magnetic field; caused by emission of particles from the sun -07428954 11 n 04 earthquake 0 quake 0 temblor 0 seism 0 007 @ 11417672 n 0000 + 02293230 a 0401 + 02293230 a 0402 + 01888784 v 0202 ~ 07429276 n 0000 ~ 07429484 n 0000 ~ 07429870 n 0000 | shaking and vibration at the surface of the earth resulting from underground movement along a fault plane of from volcanic activity -07429276 11 n 02 shock 0 seismic_disturbance 0 001 @ 07428954 n 0000 | an instance of agitation of the earth's crust; "the first shock of the earthquake came shortly after noon while workers were at lunch" -07429484 11 n 03 tremor 0 earth_tremor 0 microseism 0 004 @ 07428954 n 0000 + 01888784 v 0101 ~ 07429637 n 0000 ~ 07429782 n 0000 | a small earthquake -07429637 11 n 01 aftershock 0 001 @ 07429484 n 0000 | a tremor (or one of a series of tremors) occurring after the main shock of an earthquake -07429782 11 n 01 foreshock 0 001 @ 07429484 n 0000 | a tremor preceding an earthquake -07429870 11 n 02 seaquake 0 submarine_earthquake 0 001 @ 07428954 n 0000 | an earthquake at the sea bed -07429976 11 n 03 invasion 0 encroachment 0 intrusion 0 004 @ 07370125 n 0000 + 01993352 v 0201 + 02019716 v 0102 + 02654686 v 0101 | any entry into an area not previously occupied; "an invasion of tourists"; "an invasion of locusts" -07430211 11 n 03 noise 1 interference 0 disturbance 1 008 @ 07289014 n 0000 ~ 07263745 n 0000 ~ 07430480 n 0000 ~ 07431247 n 0000 ~ 07431369 n 0000 ~ 07431502 n 0000 ~ 07431683 n 0000 ~ 07431852 n 0000 | electrical or acoustic activity that can disturb communication -07430480 11 n 02 background 0 background_signal 0 003 @ 07430211 n 0000 ~ 07430770 n 0000 ~ 07431119 n 0000 | extraneous signals that can be confused with the phenomenon to be observed or measured; "they got a bad connection and could hardly hear one another over the background signals" -07430770 11 n 02 background_noise 0 ground_noise 0 002 @ 07430480 n 0000 ~ 07430964 n 0000 | extraneous noise contaminating sound measurements that cannot be separated from the desired signal -07430964 11 n 01 surface_noise 0 001 @ 07430770 n 0000 | noise produced by the friction of the stylus of a record player moving over the rotating record -07431119 11 n 01 background_radiation 0 001 @ 07430480 n 0000 | radiation coming from sources other than those being observed -07431247 11 n 02 crosstalk 0 XT 0 001 @ 07430211 n 0000 | the presence of an unwanted signal via an accidental coupling -07431369 11 n 01 fadeout 1 001 @ 07430211 n 0000 | a gradual temporary loss of a transmitted signal due to electrical disturbances -07431502 11 n 01 jitter 0 001 @ 07430211 n 0000 | small rapid variations in a waveform resulting from fluctuations in the voltage supply or mechanical vibrations or other sources -07431683 11 n 03 static 0 atmospherics 0 atmospheric_static 0 002 @ 07430211 n 0000 ~ 07432034 n 0000 | a crackling or hissing noise caused by electrical interference -07431852 11 n 01 white_noise 0 001 @ 07430211 n 0000 | a noise produced by a stimulus containing all of the audible frequencies of vibration; "white noise is a good masking agent" -07432034 11 n 01 radio_noise 0 001 @ 07431683 n 0000 | static at radio wavelengths -07432119 11 n 03 seepage 0 ooze 0 oozing 0 008 @ 07405893 n 0000 + 02071974 v 0302 + 00067999 v 0305 + 01397892 a 0202 + 00067999 v 0205 + 02071974 v 0202 + 02071974 v 0101 ~ 07432337 n 0000 | the process of seeping -07432337 11 n 02 exudation 0 transudation 0 003 @ 07432119 n 0000 + 00067999 v 0203 + 00067999 v 0101 | the process of exuding; the slow escape of liquids from blood vessels through pores or breaks in the cell membranes -07432559 11 n 03 drip 0 trickle 0 dribble 0 007 @ 07405893 n 0000 + 01611516 v 0301 + 02070874 v 0201 + 01397786 a 0101 + 01611516 v 0102 + 02071142 v 0101 ~ 07432835 n 0000 | flowing in drops; the formation and falling of drops of liquid; "there's a drip through the roof" -07432835 11 n 01 intravenous_drip 0 001 @ 07432559 n 0000 | slow continuous drip introducing solutions intravenously (a drop at a time) -07432973 11 n 02 eddy 0 twist 1 002 @ 07406765 n 0000 + 02047650 v 0101 | a miniature whirlpool or whirlwind resulting when the current of a fluid doubles back on itself -07433145 11 n 03 whirlpool 0 vortex 0 maelstrom 0 003 @ 07406765 n 0000 + 02047650 v 0103 ~ 07433336 n 0000 | a powerful circular current of water (usually the result of conflicting tides) -07433336 11 n 01 Charybdis 0 002 @ 07433145 n 0000 ;c 07979425 n 0000 | (Greek mythology) a ship-devouring whirlpool lying on the other side of a narrow strait from Scylla -07433510 11 n 02 dismemberment 0 taking_apart 0 003 @ 07433662 n 0000 @ 00421437 n 0000 + 01572224 v 0101 | the removal of limbs; being cut to pieces -07433662 11 n 01 mutilation 0 004 @ 07313636 n 0000 + 00292672 v 0101 + 00090708 v 0101 ~ 07433510 n 0000 | an injury that causes disfigurement or that deprives you of a limb or other important body part -07433868 11 n 01 emission 0 001 @ 07405893 n 0000 | the occurrence of a flow of water (as from a pipe) -07433973 11 n 02 distortion 0 deformation 0 003 @ 07420770 n 0000 + 00477665 v 0201 ~ 07434102 n 0000 | a change for the worse -07434102 11 n 02 warp 0 warping 0 002 @ 07433973 n 0000 + 00835903 v 0204 | a moral or mental distortion -07434209 11 n 01 plunge 0 003 @ 07362386 n 0000 + 01977080 v 0101 + 01967373 v 0102 | a steep and rapid fall -07434320 11 n 01 precipitation 0 003 @ 07362386 n 0000 + 01971750 v 0101 + 01507596 v 0101 | the act of casting down or falling headlong from a height -07434473 11 n 04 fertilization 1 fertilisation 1 fecundation 1 dressing 0 004 @ 00264366 n 0000 + 00504270 v 0302 + 00502757 v 0101 ~ 07434678 n 0000 | making fertile as by applying fertilizer or manure -07434678 11 n 01 top_dressing 0 001 @ 07434473 n 0000 | a layer of fertilizer or manure not plowed in -07434782 11 n 01 dissilience 0 003 @ 07319909 n 0000 ;c 06066555 n 0000 + 00003700 a 0101 | the emergence of seeds as seed pods burst open when they are ripe -07434942 11 n 03 outburst 0 burst 0 flare-up 1 004 @ 07283608 n 0000 + 00307785 v 0303 ~ 07435149 n 0000 ~ 07436352 n 0000 | a sudden intense happening; "an outburst of heavy rain"; "a burst of lightning" -07435149 11 n 01 salvo 0 001 @ 07434942 n 0000 | an outburst resembling the discharge of firearms or the release of bombs -07435273 11 n 03 outbreak 0 eruption 3 irruption 0 005 @ 07283608 n 0000 + 00307785 v 0302 + 00307785 v 0201 ~ 07435533 n 0000 ~ 07435891 n 0000 | a sudden violent spontaneous occurrence (usually of some undesirable condition); "the outbreak of hostilities" -07435533 11 n 01 epidemic 0 003 @ 07435273 n 0000 + 01426375 a 0101 ~ 07435713 n 0000 | a widespread outbreak of an infectious disease; many people are infected at the same time -07435713 11 n 01 pandemic 0 002 @ 07435533 n 0000 + 01427188 a 0101 | an epidemic that is geographically widespread; occurring throughout a region or even throughout the world -07435891 11 n 01 recrudescence 0 003 @ 07435273 n 0000 + 02013422 a 0101 + 00339464 v 0102 | a return of something after a period of abatement; "a recrudescence of racism"; "a recrudescence of the symptoms" -07436100 11 n 04 jet 0 squirt 0 spurt 0 spirt 0 008 @ 07407777 n 0000 + 02068413 v 0402 + 02068413 v 0301 + 01313411 v 0201 + 01375637 v 0201 + 01516290 v 0101 ~ 07446533 n 0000 ~ 07446599 n 0000 | the occurrence of a sudden discharge (as of liquid) -07436352 11 n 01 rush 1 002 @ 07434942 n 0000 + 00459498 v 0101 | a sudden burst of activity; "come back after the rush" -07436475 11 n 02 volcanic_eruption 0 eruption 0 003 @ 07307754 n 0000 + 00307568 v 0201 ~ 07405652 n 0000 | the sudden occurrence of a violent discharge of steam and volcanic material -07436661 11 n 04 escape 0 leak 0 leakage 0 outflow 0 007 @ 07407777 n 0000 + 00529759 v 0301 + 00258109 v 0301 + 01397385 a 0201 + 00529759 v 0201 + 00258109 v 0201 + 00530017 v 0101 | the discharge of a fluid from some container; "they tried to stop the escape of gas from the damaged pipe"; "he had to clean up the leak" -07436986 11 n 04 fertilization 0 fertilisation 0 fecundation 0 impregnation 0 010 @ 07328942 n 0000 + 00053341 v 0401 + 00053159 v 0401 + 00052548 v 0302 + 00052548 v 0103 ~ 07437372 n 0000 ~ 07437575 n 0000 ~ 07437990 n 0000 ~ 07438190 n 0000 ~ 07438396 n 0000 | creation by the physical union of male and female gametes; of sperm and ova in an animal or pollen and ovule in a plant -07437372 11 n 02 pollination 0 pollenation 0 005 @ 07436986 n 0000 + 00054059 v 0202 + 00054059 v 0101 ~ 07438792 n 0000 ~ 07438983 n 0000 | transfer of pollen from the anther to the stigma of a plant -07437575 11 n 02 cross-fertilization 0 cross-fertilisation 0 007 @ 07436986 n 0000 + 00053889 v 0202 + 00053656 v 0202 + 00053889 v 0101 + 00053656 v 0101 ! 07437990 n 0101 ~ 07437870 n 0000 | fertilization by the union of male and female gametes from different individual of the same species -07437870 11 n 01 allogamy 0 003 @ 07437575 n 0000 + 02613090 a 0101 ! 07438655 n 0101 | cross-fertilization in plants -07437990 11 n 02 self-fertilization 0 self-fertilisation 0 003 @ 07436986 n 0000 ! 07437575 n 0101 ~ 07438655 n 0000 | fertilization by the union of male and female gametes from the same individual -07438190 11 n 01 superfecundation 0 001 @ 07436986 n 0000 | fertilization of two or more ova released during the same menstrual cycle by sperm from separate acts of coitus (especially by different males) -07438396 11 n 01 superfetation 0 002 @ 07436986 n 0000 + 00067850 v 0101 | fertilization of a second ovum after a pregnancy has begun; results in two fetuses of different ages in the uterus at the same time; "superfetation is normal in some animal species" -07438655 11 n 01 autogamy 0 004 @ 07437990 n 0000 + 00871494 a 0102 + 00871494 a 0101 ! 07437870 n 0101 | self-fertilization in plants -07438792 11 n 01 cross-pollination 0 003 @ 07437372 n 0000 + 00054059 v 0103 ! 07438983 n 0101 | fertilization by transfer of pollen from the anthers of one flower to the stigma of another -07438983 11 n 01 self-pollination 0 003 @ 07437372 n 0000 ! 07438792 n 0101 ~ 07439167 n 0000 | fertilization by transfer of pollen from the anthers to the stigma of the same flower -07439167 11 n 01 cleistogamy 0 001 @ 07438983 n 0000 | the production of small nonopening self-pollinating flowers -07439284 11 n 04 flap 1 flapping 0 flutter 1 fluttering 0 010 @ 07345593 n 0000 + 01878719 v 0404 + 02093610 v 0202 + 02093390 v 0202 + 01901783 v 0203 + 01880888 v 0201 + 02093390 v 0102 + 02093610 v 0102 + 01880888 v 0101 + 01901783 v 0103 | the motion made by flapping up and down -07439570 11 n 03 flush 0 gush 0 outpouring 1 006 @ 07405893 n 0000 + 02068413 v 0203 + 00454868 v 0101 + 00455368 v 0102 + 00455212 v 0101 ~ 07440852 n 0000 | a sudden rapid flow (as of water); "he heard the flush of a toilet"; "there was a little gush of blood"; "she attacked him with an outpouring of words" -07439883 11 n 01 radiation 0 004 @ 13518963 n 0000 @ 07445896 n 0000 + 00436668 v 0102 ~ 07440045 n 0000 | the spread of a group of organisms into new habitats -07440045 11 n 01 adaptive_radiation 0 001 @ 07439883 n 0000 | the development of many different forms from an originally homogeneous group of organisms as they fill different ecological niches -07440240 11 n 04 rush 0 spate 2 surge 0 upsurge 0 005 @ 07405893 n 0000 + 02041206 v 0302 + 01903756 v 0302 ~ 07440411 n 0000 ~ 07440617 n 0000 | a sudden forceful flow -07440411 11 n 02 debris_surge 0 debris_storm 0 001 @ 07440240 n 0000 | the sudden spread of dust and debris from a collapsing building; "the destruction of the building produced an enormous debris surge" -07440617 11 n 01 onrush 0 001 @ 07440240 n 0000 | a forceful forward rush or flow; "from the bow she stared at the mesmerising onrush of the sea where it split and foamed"; "the explosion interrupted the wild onrush of her thoughts" -07440852 11 n 01 springtide 1 001 @ 07439570 n 0000 | a swelling rush of anything; "he rose on the springtide of prosperity" -07440979 11 n 03 rotation 0 revolution 0 gyration 0 010 @ 07351612 n 0000 + 02046755 v 0305 + 02939919 a 0202 + 02043982 v 0203 + 02045043 v 0201 ~ 07441373 n 0000 ~ 07441494 n 0000 ~ 07441619 n 0000 ~ 07441902 n 0000 ~ 07442288 n 0000 | a single complete turn (axial or orbital); "the plane made three rotations before it crashed"; "the revolution of the earth about the sun takes one year" -07441373 11 n 02 dextrorotation 0 clockwise_rotation 0 002 @ 07440979 n 0000 ! 07441494 n 0101 | rotation to the right -07441494 11 n 02 levorotation 0 counterclockwise_rotation 0 002 @ 07440979 n 0000 ! 07441373 n 0101 | rotation to the left -07441619 11 n 03 axial_rotation 0 axial_motion 0 roll 2 008 @ 07440979 n 0000 + 01866610 v 0301 + 00100410 v 0301 + 00143204 v 0301 + 01522276 v 0303 + 01887020 v 0302 + 01866192 v 0301 ~ 07442874 n 0000 | rotary motion of an object around its own axis; "wheels in axial rotation" -07441902 11 n 02 orbital_rotation 0 orbital_motion 0 001 @ 07440979 n 0000 | motion of an object in an orbit around a fixed point; "satellites in orbital rotation" -07442068 11 n 02 whirl 0 commotion 0 004 @ 07309781 n 0000 + 02047857 v 0101 + 02048891 v 0104 + 02047650 v 0105 | confused movement; "he was caught up in a whirl of work"; "a commotion of people fought for the exits" -07442288 11 n 01 spin 0 004 @ 07440979 n 0000 ~ 07442439 n 0000 ~ 07442569 n 0000 ~ 07442744 n 0000 | a swift whirling motion (usually of a missile) -07442439 11 n 01 backspin 0 001 @ 07442288 n 0000 | spin (usually of a moving ball) that retards or reverses the forward motion -07442569 11 n 02 English 0 side 0 002 @ 07442288 n 0000 ;c 00523513 n 0000 | (sports) the spin given to a ball by striking it on one side or releasing it with a sharp twist -07442744 11 n 01 topspin 0 001 @ 07442288 n 0000 | forward spin (usually of a moving ball) that is imparted by an upward stroke -07442874 11 n 01 wallow 0 002 @ 07441619 n 0000 + 01866030 v 0101 | an indolent or clumsy rolling about; "a good wallow in the water" -07443010 11 n 03 run 1 ladder 0 ravel 0 005 @ 07420770 n 0000 + 01521124 v 0301 + 01521367 v 0301 + 00334803 v 0201 + 00334803 v 0102 | a row of unravelled stitches; "she got a run in her stocking" -07443210 11 n 03 relaxation 0 loosening 0 slackening 0 007 @ 07427337 n 0000 + 00421125 v 0301 + 00419375 v 0201 + 00419137 v 0201 + 00441212 v 0104 + 00419137 v 0102 ~ 07443539 n 0000 | an occurrence of control or strength weakening; "the relaxation of requirements"; "the loosening of his grip"; "the slackening of the wind" -07443539 11 n 01 thaw 0 001 @ 07443210 n 0000 | a relaxation or slackening of tensions or reserve; becoming less hostile; "the thaw between the United States and Russia has led to increased cooperation in world affairs" -07443761 11 n 05 substitution 0 permutation 0 transposition 1 replacement 0 switch 0 007 @ 07337390 n 0000 + 02259005 v 0504 + 00140751 v 0502 + 00121678 v 0503 + 00162688 v 0401 + 02258617 v 0101 + 02257767 v 0101 | an event in which one thing is substituted for another; "the replacement of lost blood by a transfusion of donor blood" -07444100 11 n 02 business_cycle 0 trade_cycle 0 001 @ 07337390 n 0000 | recurring fluctuations in economic activity consisting of recession and recovery and growth and decline -07444278 11 n 01 daily_variation 0 001 @ 07337390 n 0000 | fluctuations that occur between one day and the next -07444392 11 n 01 diurnal_variation 0 001 @ 07337390 n 0000 | fluctuations that occur during each day -07444495 11 n 01 tide 1 002 @ 07337390 n 0000 + 01903756 v 0101 | something that may increase or decrease (like the tides of the sea); "a rising tide of popular interest" -07444668 11 n 02 shift 0 displacement 0 006 @ 07446404 n 0000 + 00550117 v 0102 + 00548913 v 0101 + 00380159 v 0103 ~ 07444882 n 0000 ~ 07445010 n 0000 | an event in which something is displaced without rotation -07444882 11 n 01 amplitude 0 002 @ 07444668 n 0000 ;c 06090869 n 0000 | (physics) the maximum displacement of a periodic wave -07445010 11 n 01 luxation 0 003 @ 07444668 n 0000 + 00465762 v 0102 ~ 07445149 n 0000 | displacement or misalignment of a joint or organ -07445149 11 n 01 subluxation 0 002 @ 07445010 n 0000 + 00091513 v 0101 | partial displacement of a joint or organ -07445265 11 n 03 progress 0 progression 0 advance 0 005 @ 07311115 n 0000 + 00198383 a 0301 + 01992503 v 0301 + 01992503 v 0102 ~ 07372779 n 0000 | a movement forward; "he listened for the progress of the troops" -07445480 11 n 04 rise 2 rising 0 ascent 0 ascension 0 016 @ 07311115 n 0000 + 02644050 a 0401 + 01969216 v 0401 + 01969216 v 0301 + 01968569 v 0201 + 01970348 v 0101 + 01968569 v 0101 ! 07370270 n 0101 ~ 07370410 n 0000 ~ 07370671 n 0000 ~ 07370968 n 0000 ~ 07371168 n 0000 ~ 07375525 n 0000 ~ 07375635 n 0000 ~ 07375781 n 0000 ~ 07376008 n 0000 | a movement upward; "they cheered the rise of the hot-air balloon" -07445896 11 n 02 spread 0 spreading 0 014 @ 07311115 n 0000 + 02689299 v 0201 + 02060141 v 0102 + 02082690 v 0101 + 00969873 v 0102 + 00968211 v 0108 + 02689299 v 0101 + 01380122 v 0101 + 01378556 v 0101 ~ 07331600 n 0000 ~ 07331759 n 0000 ~ 07332313 n 0000 ~ 07332550 n 0000 ~ 07439883 n 0000 | process or result of distributing or extending over a wide expanse of space -07446270 11 n 01 stampede 0 002 @ 07311115 n 0000 + 02086805 v 0101 | a wild headlong rush of frightened animals (horses or cattle) -07446404 11 n 01 translation 0 003 @ 07311115 n 0000 + 00522441 v 0101 ~ 07444668 n 0000 | a uniform movement without rotation -07446533 11 n 01 spray 0 001 @ 07436100 n 0000 | a jet of vapor -07446599 11 n 01 spritz 0 003 @ 07436100 n 0000 + 01313592 v 0101 + 01313780 v 0101 | a quick squirt of some liquid (usually carbonated water) -07446744 11 n 02 angelus_bell 0 angelus 0 001 @ 07377244 n 0000 | the sound of a bell rung in Roman Catholic churches to announce the time when the Angelus should be recited -07446920 11 n 01 bell_ringing 0 001 @ 07391863 n 0000 | the sound of someone playing a set of bells -07447022 11 n 02 return 2 coming_back 0 002 @ 07351612 n 0000 + 00387310 v 0102 | the occurrence of a change in direction back in the opposite direction -07447177 11 n 01 volution 0 001 @ 07351612 n 0000 | a rolling or revolving motion -07447261 11 n 05 affair 0 occasion 1 social_occasion 0 function 0 social_function 0 007 @ 07288639 n 0000 ~ 07447641 n 0000 ~ 07450651 n 0000 ~ 07450842 n 0000 ~ 07455640 n 0000 ~ 07455760 n 0000 ~ 07455984 n 0000 | a vaguely specified social event; "the party was quite an affair"; "an occasion arranged to honor the president"; "a seemingly endless round of social functions" -07447641 11 n 01 party 0 013 @ 07447261 n 0000 + 02491851 v 0101 ~ 07448038 n 0000 ~ 07448121 n 0000 ~ 07448232 n 0000 ~ 07448394 n 0000 ~ 07448608 n 0000 ~ 07448717 n 0000 ~ 07449862 n 0000 ~ 07450229 n 0000 ~ 07450343 n 0000 ~ 07450463 n 0000 ~ 07450549 n 0000 | an occasion on which people can assemble for social interaction and entertainment; "he planned a party to celebrate Bastille Day" -07448038 11 n 03 bash 1 do 0 brawl 0 001 @ 07447641 n 0000 | an uproarious party -07448121 11 n 01 birthday_party 0 001 @ 07447641 n 0000 | a party held on the anniversary of someone's birth -07448232 11 n 02 bunfight 0 bun-fight 0 003 @ 07447641 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | (Briticism) a grand formal party on an important occasion -07448394 11 n 01 ceilidh 0 003 @ 07447641 n 0000 ;r 08890097 n 0000 ;r 08859173 n 0000 | an informal social gathering at which there is Scottish or Irish folk music and singing and folk dancing and story telling -07448608 11 n 01 cocktail_party 0 001 @ 07447641 n 0000 | an afternoon party at which cocktails are served -07448717 11 n 01 dance 0 006 @ 07447641 n 0000 + 01708676 v 0101 ~ 07448885 n 0000 ~ 07449452 n 0000 ~ 07449548 n 0000 ~ 07449676 n 0000 | a party for social dancing -07448885 11 n 02 ball 0 formal 0 004 @ 07448717 n 0000 ~ 07449037 n 0000 ~ 07449157 n 0000 ~ 07449316 n 0000 | a lavish dance requiring formal attire -07449037 11 n 02 cotillion 0 cotilion 0 001 @ 07448885 n 0000 | a ball at which young ladies are presented to society -07449157 11 n 03 masked_ball 0 masquerade_ball 0 fancy-dress_ball 0 002 @ 07448885 n 0000 @ 08253450 n 0000 | a ball at which guests wear costumes and masks -07449316 11 n 02 promenade 0 prom 0 001 @ 07448885 n 0000 | a formal ball held for a school class toward the end of the academic year -07449452 11 n 01 barn_dance 0 001 @ 07448717 n 0000 | a dance party featuring country dancing -07449548 11 n 02 hop 0 record_hop 0 002 @ 07448717 n 0000 + 01966861 v 0101 | an informal dance where popular music is played -07449676 11 n 01 rave 0 002 @ 07448717 n 0000 + 02492054 v 0101 | a dance party that lasts all night and electronically synthesized music is played; "raves are very popular in Berlin" -07449862 11 n 03 fete 0 feast 1 fiesta 0 006 @ 07447641 n 0000 + 01186208 v 0201 + 01185981 v 0201 + 02490877 v 0102 ~ 07450055 n 0000 ~ 07455301 n 0000 | an elaborate party (often outdoors) -07450055 11 n 01 luau 0 002 @ 07449862 n 0000 ;r 09078231 n 0000 | an elaborate Hawaiian feast or party (especially one accompanied by traditional foods and entertainment) -07450229 11 n 01 house_party 0 001 @ 07447641 n 0000 | a party lasting over one or more nights at a large house -07450343 11 n 01 jolly 0 004 @ 07447641 n 0000 ;r 08860123 n 0000 + 01367651 a 0103 + 00855295 v 0103 | a happy party -07450463 11 n 01 tea_party 0 001 @ 07447641 n 0000 | a party at which tea is served -07450549 11 n 01 whist_drive 0 002 @ 07447641 n 0000 ;r 08860123 n 0000 | a progressive whist party -07450651 11 n 02 celebration 0 jubilation 0 004 @ 07447261 n 0000 + 02491262 v 0201 + 02578510 v 0102 + 02490877 v 0101 | a joyful occasion for special festivities to mark some happy event -07450842 11 n 04 ceremony 0 ceremonial 0 ceremonial_occasion 0 observance 1 018 @ 07447261 n 0000 + 02578510 v 0401 + 01042491 a 0201 + 01042491 a 0101 ~ 07451338 n 0000 ~ 07451463 n 0000 ~ 07452074 n 0000 ~ 07452251 n 0000 ~ 07452348 n 0000 ~ 07452699 n 0000 ~ 07452841 n 0000 ~ 07453063 n 0000 ~ 07453195 n 0000 ~ 07454452 n 0000 ~ 07454632 n 0000 ~ 07455007 n 0000 ~ 07455151 n 0000 ~ 07455301 n 0000 | a formal event performed on a special occasion; "a ceremony commemorating Pearl Harbor" -07451338 11 n 01 circumstance 0 001 @ 07450842 n 0000 | formal ceremony about important occasions; "pomp and circumstance" -07451463 11 n 01 funeral 0 005 @ 07450842 n 0000 + 01368464 a 0101 + 02950588 a 0101 ~ 07451687 n 0000 ~ 07451903 n 0000 | a ceremony at which a dead person is buried or cremated; "hundreds of people attended his funeral" -07451687 11 n 05 burial 0 entombment 0 inhumation 0 interment 0 sepulture 0 005 @ 07451463 n 0000 + 02456493 v 0404 + 02456493 v 0303 + 02456493 v 0202 + 02456493 v 0101 | the ritual placing of a corpse in a grave -07451903 11 n 01 sky_burial 0 001 @ 07451463 n 0000 | a traditional Tibetan funeral ritual in which the corpse is exposed to the open air to be eaten by sacred vultures -07452074 11 n 04 wedding 0 wedding_ceremony 0 nuptials 0 hymeneals 0 002 @ 07450842 n 0000 + 02489456 v 0102 | the social event at which the ceremony of marriage is performed -07452251 11 n 02 pageant 0 pageantry 0 001 @ 07450842 n 0000 | a rich and spectacular ceremony -07452348 11 n 01 dedication 0 005 @ 07450842 n 0000 + 02395996 v 0101 + 00887463 v 0102 + 00677966 v 0101 ~ 07452559 n 0000 | a ceremony in which something (as a building) is dedicated to some goal or purpose -07452559 11 n 01 rededication 0 002 @ 07452348 n 0000 + 00888150 v 0101 | a new dedication; "the rededication of the Temple of Jerusalem" -07452699 11 n 01 opening 1 003 @ 07450842 n 0000 + 02425462 v 0101 + 02426171 v 0101 | a ceremony accompanying the start of some enterprise -07452841 11 n 03 commemoration 0 memorialization 0 memorialisation 0 005 @ 07450842 n 0000 + 00768062 v 0302 + 00768062 v 0201 + 00612612 v 0101 + 00611481 v 0101 | a ceremony to honor the memory of someone or something -07453063 11 n 01 military_ceremony 0 002 @ 07450842 n 0000 ;c 08199025 n 0000 | a formal ceremony performed by military personnel -07453195 11 n 03 initiation 0 induction 0 installation 0 009 @ 07450842 n 0000 + 02384041 v 0301 + 02390470 v 0202 + 02384275 v 0201 + 02390470 v 0101 ~ 00243373 n 0000 ~ 07453638 n 0000 ~ 07453924 n 0000 ~ 07454196 n 0000 | a formal entry into an organization or position or office; "his initiation into the club"; "he was ordered to report for induction into the army"; "he gave a speech as part of his installation into the hall of fame" -07453638 11 n 05 coronation 0 enthronement 0 enthronization 0 enthronisation 0 investiture 1 008 @ 07453195 n 0000 + 02386675 v 0501 + 02386388 v 0501 + 02391193 v 0401 + 02391193 v 0301 + 02386388 v 0203 + 02391193 v 0201 + 02390949 v 0102 | the ceremony of installing a new monarch -07453924 11 n 01 bar_mitzvah 0 003 @ 07453195 n 0000 ;c 06232880 n 0000 + 02474958 v 0101 | (Judaism) an initiation ceremony marking the 13th birthday of a Jewish boy and signifying the beginning of religious responsibility; "a bar mitzvah is an important social event" -07454196 11 n 03 bat_mitzvah 0 bath_mitzvah 0 bas_mitzvah 0 003 @ 07453195 n 0000 ;c 06232880 n 0000 + 02475109 v 0101 | (Judaism) an initiation ceremony marking the 12th birthday of a Jewish girl and signifying the beginning of religious responsibility -07454452 11 n 01 exercise 1 003 @ 07450842 n 0000 ;u 06295235 n 0000 ~ 07454758 n 0000 | (usually plural) a ceremony that involves processions and speeches; "academic exercises" -07454632 11 n 01 fire_walking 0 001 @ 07450842 n 0000 | the ceremony of walking barefoot over hot stones or a bed of embers -07454758 11 n 05 commencement 2 commencement_exercise 0 commencement_ceremony 0 graduation 1 graduation_exercise 0 004 @ 07454452 n 0000 + 02264179 v 0401 + 02264397 v 0401 %p 07244154 n 0000 | an academic exercise in which diplomas are conferred -07455007 11 n 02 formality 0 formalities 0 002 @ 07450842 n 0000 + 01633153 a 0101 | a requirement of etiquette or custom; "a mere formality" -07455151 11 n 01 Maundy 0 002 @ 07450842 n 0000 ;r 08860123 n 0000 | a public ceremony on Maundy Thursday when the monarch distributes Maundy money -07455301 11 n 01 potlatch 0 002 @ 07450842 n 0000 @ 07449862 n 0000 | a ceremonial feast held by some Indians of the northwestern coast of North America (as in celebrating a marriage or a new accession) in which the host gives gifts to tribesmen and others to display his superior wealth (sometimes, formerly, to his own impoverishment) -07455640 11 n 01 fundraiser 0 001 @ 07447261 n 0000 | a social function that is held for the purpose of raising money -07455760 11 n 02 photo_opportunity 0 photo_op 0 001 @ 07447261 n 0000 | an occasion that lends itself to (or is deliberately arranged for) taking photographs that provide favorable publicity for those who are photographed -07455984 11 n 01 sleepover 0 002 @ 07447261 n 0000 + 02652729 v 0101 | an occasion of spending a night away from home or having a guest spend the night in your home (especially as a party for children) -07456188 11 n 02 contest 0 competition 0 018 @ 07288639 n 0000 ~ 00456199 n 0000 ~ 07456638 n 0000 ~ 07456906 n 0000 ~ 07457834 n 0000 ~ 07457936 n 0000 ~ 07458099 n 0000 ~ 07458212 n 0000 ~ 07458453 n 0000 ~ 07464725 n 0000 ~ 07465290 n 0000 ~ 07465448 n 0000 ~ 07467704 n 0000 ~ 07470671 n 0000 ~ 07472327 n 0000 ~ 07472657 n 0000 ~ 07477066 n 0000 ~ 07477231 n 0000 | an occasion on which a winner is selected from among two or more contestants -07456638 11 n 03 athletic_contest 0 athletic_competition 0 athletics 0 009 @ 07456188 n 0000 ~ 07457016 n 0000 ~ 07457126 n 0000 ~ 07457311 n 0000 ~ 07457599 n 0000 ~ 07457722 n 0000 ~ 07467846 n 0000 ~ 07471972 n 0000 ~ 07472168 n 0000 | a contest between athletes -07456906 11 n 01 bout 0 001 @ 07456188 n 0000 | a contest or fight (especially between boxers or wrestlers) -07457016 11 n 01 decathlon 0 001 @ 07456638 n 0000 | an athletic contest consisting of ten different events -07457126 11 n 03 Olympic_Games 0 Olympics 0 Olympiad 0 002 @ 07456638 n 0000 ~ 07457485 n 0000 | the modern revival of the ancient games held once every 4 years in a selected country -07457311 11 n 01 Special_Olympics 0 001 @ 07456638 n 0000 | an athletic contest modeled after the Olympic Games but intended for mentally or physically handicapped persons -07457485 11 n 02 Winter_Olympic_Games 0 Winter_Olympics 0 001 @ 07457126 n 0000 | an Olympics for winter sports -07457599 11 n 02 preliminary 0 prelim 0 002 @ 07456638 n 0000 + 00878086 a 0101 | a minor match preceding the main event -07457722 11 n 01 pentathlon 0 001 @ 07456638 n 0000 | an athletic contest consisting of five different events -07457834 11 n 01 championship 0 001 @ 07456188 n 0000 | a competition at which a champion is chosen -07457936 11 n 01 chicken 0 001 @ 07456188 n 0000 | a foolhardy competition; a dangerous activity that is continued until one competitor becomes afraid and stops -07458099 11 n 01 cliffhanger 0 001 @ 07456188 n 0000 | a contest whose outcome is uncertain up to the very end -07458212 11 n 01 dogfight 0 001 @ 07456188 n 0000 | a fiercely disputed contest; "their rancor dated from a political dogfight between them"; "a real dogfight for third place"; "a prolonged dogfight over their rival bids for the contract" -07458453 11 n 01 race 0 020 @ 07456188 n 0000 + 01524102 a 0101 + 01086103 v 0101 ~ 07458892 n 0000 ~ 07459249 n 0000 ~ 07459523 n 0000 ~ 07459642 n 0000 ~ 07459778 n 0000 ~ 07459868 n 0000 ~ 07460104 n 0000 ~ 07460651 n 0000 ~ 07460793 n 0000 ~ 07461288 n 0000 ~ 07461411 n 0000 ~ 07463323 n 0000 ~ 07463470 n 0000 ~ 07463607 n 0000 ~ 07463733 n 0000 ~ 07464083 n 0000 ~ 07464234 n 0000 | a contest of speed; "the race is to the swift" -07458892 11 n 03 automobile_race 0 auto_race 0 car_race 0 003 @ 07458453 n 0000 ~ 07459066 n 0000 ~ 07459157 n 0000 | a race between (usually high-performance) automobiles -07459066 11 n 01 Grand_Prix 0 001 @ 07458892 n 0000 | one of several international races -07459157 11 n 01 rally 1 001 @ 07458892 n 0000 | an automobile race run over public roads -07459249 11 n 01 bicycle_race 0 002 @ 07458453 n 0000 ~ 07459363 n 0000 | a race between people riding bicycles -07459363 11 n 01 Tour_de_France 0 001 @ 07459249 n 0000 | a French bicycle race for professional cyclists that lasts three weeks and covers about 3,000 miles -07459523 11 n 01 boat_race 0 002 @ 07458453 n 0000 ~ 07459992 n 0000 | a race between people rowing or driving boats -07459642 11 n 01 burnup 0 003 @ 07458453 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | a high-speed motorcycle race on a public road -07459778 11 n 01 chariot_race 0 001 @ 07458453 n 0000 | a race between ancient chariots -07459868 11 n 01 dog_racing 0 001 @ 07458453 n 0000 | a race between dogs; usually an occasion for betting on the outcome -07459992 11 n 02 sailing-race 0 yacht_race 0 001 @ 07459523 n 0000 | a race between crews of people in yachts -07460104 11 n 03 footrace 0 foot_race 0 run 2 010 @ 07458453 n 0000 + 01086103 v 0302 + 01914947 v 0301 + 02092309 v 0301 + 01926311 v 0301 ~ 07460403 n 0000 ~ 07460546 n 0000 ~ 07462917 n 0000 ~ 07463029 n 0000 ~ 07468861 n 0000 | a race run on foot; "she broke the record for the half-mile run" -07460403 11 n 02 funrun 0 fun_run 0 001 @ 07460104 n 0000 | a footrace run for fun (often including runners who are sponsored for a charity) -07460546 11 n 01 marathon 0 002 @ 07460104 n 0000 + 10292969 n 0101 | a footrace of 26 miles 385 yards -07460651 11 n 01 freestyle 0 001 @ 07458453 n 0000 | a race (as in swimming) in which each contestant has a free choice of the style to use -07460793 11 n 01 cross_country 0 002 @ 07458453 n 0000 ~ 07460904 n 0000 | a long race run over open country -07460904 11 n 02 Iditarod 0 Iditarod_Trail_Dog_Sled_Race 0 001 @ 07460793 n 0000 | an important dogsled race run annually on the Iditarod Trail -07461050 11 n 01 three-day_event 0 004 @ 00450700 n 0000 %p 00288000 n 0000 %p 00450998 n 0000 %p 00451186 n 0000 | an equestrian competition; the first day is dressage; the second is cross-country jumping; the third is stadium jumping -07461288 11 n 01 heat 0 001 @ 07458453 n 0000 | a preliminary race in which the winner advances to a more important race -07461411 11 n 01 horse_race 0 007 @ 07458453 n 0000 ~ 07461650 n 0000 ~ 07461831 n 0000 ~ 07461956 n 0000 ~ 07462547 n 0000 ~ 07462693 n 0000 ~ 07463171 n 0000 | a contest of speed between horses; usually held for the purpose of betting -07461650 11 n 01 claiming_race 0 001 @ 07461411 n 0000 | a horse race in which each owner declares before the race at what price his horse will be offered for sale after the race -07461831 11 n 01 selling_race 0 001 @ 07461411 n 0000 | a horse race in which the winning horse must be put up for auction -07461956 11 n 02 harness_race 0 harness_racing 0 001 @ 07461411 n 0000 | a horse race between people riding in sulkies behind horses that are trotting or pacing -07462119 11 n 01 Kentucky_Derby 0 001 @ 07463171 n 0000 | an annual race for three-year-old horses; held at Churchill Downs in Louisville, Kentucky -07462269 11 n 01 Preakness 0 001 @ 07463171 n 0000 | an annual race for three-year-old horses; held at Pimlico in Baltimore, Maryland -07462405 11 n 01 Belmont_Stakes 0 001 @ 07463171 n 0000 | an annual race for three-year-old horses; held on Long Island at Elmont, New York -07462547 11 n 01 stake_race 0 001 @ 07461411 n 0000 | a horse race in which part of the prize is put up by the owners of the horses in the race -07462693 11 n 01 steeplechase 1 002 @ 07461411 n 0000 ~ 07462808 n 0000 | a horse race over an obstructed course -07462808 11 n 01 Grand_National 0 001 @ 07462693 n 0000 | an annual steeplechase run in Liverpool, England -07462917 11 n 01 obstacle_race 0 001 @ 07460104 n 0000 | a race in which competitors must negotiate obstacles -07463029 11 n 01 steeplechase 2 001 @ 07460104 n 0000 | a footrace of usually 3000 meters over a closed track with hurdles and a water jump -07463171 11 n 01 thoroughbred_race 0 004 @ 07461411 n 0000 ~ 07462119 n 0000 ~ 07462269 n 0000 ~ 07462405 n 0000 | a race between thoroughbred horses -07463323 11 n 01 potato_race 0 001 @ 07458453 n 0000 | a novelty race in which competitors move potatoes from one place to another one at a time -07463470 11 n 01 sack_race 0 001 @ 07458453 n 0000 | a novelty race in which competitors jump ahead with their feet confined in a sack -07463607 11 n 01 scratch_race 0 001 @ 07458453 n 0000 | a race in which all contestants start from scratch (on equal terms) -07463733 11 n 02 ski_race 0 skiing_race 0 003 @ 07458453 n 0000 ~ 07463872 n 0000 ~ 07463950 n 0000 | a race between people wearing skis -07463872 11 n 01 downhill 0 001 @ 07463733 n 0000 | a ski race down a trail -07463950 11 n 01 slalom 0 002 @ 07463733 n 0000 + 01939037 v 0101 | a downhill race over a winding course defined by upright poles -07464083 11 n 02 relay 0 relay_race 0 002 @ 07458453 n 0000 ~ 07464402 n 0000 | a race between teams; each member runs or swims part of the distance -07464234 11 n 01 repechage 0 001 @ 07458453 n 0000 | a race (especially in rowing) in which runners-up in the eliminating heats compete for a place in the final race -07464402 11 n 01 torch_race 0 003 @ 07464083 n 0000 ;r 08780881 n 0000 ;c 15253139 n 0000 | (ancient Greece) in which a torch is passed from one runner to the next -07464568 11 n 01 World_Cup 0 001 @ 07464725 n 0000 | a soccer tournament held every four years between national soccer teams to determine a world champion -07464725 11 n 02 tournament 0 tourney 0 006 @ 07456188 n 0000 + 01123159 v 0201 ~ 07464568 n 0000 ~ 07464969 n 0000 ~ 07465159 n 0000 ~ 07467579 n 0000 | a sporting competition in which contestants play a series of games to decide the winner -07464969 11 n 01 elimination_tournament 0 004 @ 07464725 n 0000 %p 07466832 n 0000 %p 07467212 n 0000 %p 07467393 n 0000 | a tournament in which losers are eliminated in successive rounds -07465159 11 n 01 open 0 002 @ 07464725 n 0000 + 02003357 a 0101 | a tournament in which both professionals and amateurs may play -07465290 11 n 01 playoff 0 004 @ 07456188 n 0000 + 01081152 v 0104 %p 00461162 n 0000 ~ 07465781 n 0000 | any final competition to determine a championship -07465448 11 n 01 series 0 004 @ 07456188 n 0000 ;c 00523513 n 0000 ~ 07465657 n 0000 ~ 07465781 n 0000 | (sports) several contests played successively by the same teams; "the visiting team swept the series" -07465657 11 n 01 home_stand 0 001 @ 07465448 n 0000 | a series of successive games played at a team's home field or court -07465781 11 n 01 World_Series 0 002 @ 07465448 n 0000 @ 07465290 n 0000 | series that constitutes the playoff for the baseball championship; "we watched the World Series on TV" -07465960 11 n 01 boxing_match 0 003 @ 07470671 n 0000 ~ 07471708 n 0000 ~ 07471806 n 0000 | a match between boxers; usually held in a boxing ring -07466108 11 n 01 chess_match 0 001 @ 07470671 n 0000 | a match between chess players -07466195 11 n 01 cockfight 0 001 @ 07470671 n 0000 | a match in a cockpit between two fighting cocks heeled with metal gaffs -07466322 11 n 01 cricket_match 0 001 @ 07470671 n 0000 | a match between two cricket teams -07466415 11 n 02 diving 0 diving_event 0 002 @ 07470671 n 0000 #p 07468534 n 0000 | an athletic competition that involves diving into water -07466557 11 n 01 field_event 0 009 @ 07470671 n 0000 #p 07468692 n 0000 ~ 07469476 n 0000 ~ 07469609 n 0000 ~ 07469772 n 0000 ~ 07469975 n 0000 ~ 07470110 n 0000 ~ 07470285 n 0000 ~ 07470420 n 0000 | a competition that takes place on a field rather than on a running track -07466832 11 n 01 final 0 004 @ 07470671 n 0000 #p 07464969 n 0000 + 01010271 a 0102 ~ 07467027 n 0000 | the final match between the winners of all previous matches in an elimination tournament -07467027 11 n 01 cup_final 0 002 @ 07466832 n 0000 ;c 00478262 n 0000 | the final match of any cup competition (such as the annual final of the English soccer competition at Wembley) -07467212 11 n 01 quarterfinal 0 002 @ 07470671 n 0000 #p 07464969 n 0000 | one of the four competitions in an elimination tournament whose winners go on to play in the semifinals -07467393 11 n 02 semifinal 0 semi 0 003 @ 07470671 n 0000 #p 07464969 n 0000 + 10578021 n 0101 | one of the two competitions in the next to the last round of an elimination tournament -07467579 11 n 01 round_robin 0 001 @ 07464725 n 0000 | a tournament in which every contestant plays every other contestant -07467704 11 n 01 field_trial 0 001 @ 07456188 n 0000 | a contest between gun dogs to determine their proficiency in pointing and retrieving -07467846 11 n 02 meet 0 sports_meeting 0 009 @ 07456638 n 0000 + 01079480 v 0101 + 02486932 v 0101 %p 00439826 n 0000 ~ 07468116 n 0000 ~ 07468244 n 0000 ~ 07468456 n 0000 ~ 07468534 n 0000 ~ 07468692 n 0000 | a meeting at which a number of athletic contests are held -07468116 11 n 01 gymkhana 0 001 @ 07467846 n 0000 | a meet at which riders and horses display a range of skills and aptitudes -07468244 11 n 01 race_meeting 0 002 @ 07467846 n 0000 ;r 08860123 n 0000 | a regular occasion on which a number of horse races are held on the same track; "the Epsom race meeting was an important social event" -07468456 11 n 01 regatta 0 001 @ 07467846 n 0000 | a meeting for boat races -07468534 11 n 02 swimming_meet 0 swim_meet 0 003 @ 07467846 n 0000 %p 07466415 n 0000 %p 07470545 n 0000 | a swimming competition between two or more teams -07468692 11 n 01 track_meet 0 004 @ 07467846 n 0000 %p 00440039 n 0000 %p 07466557 n 0000 %p 07468861 n 0000 | a track and field competition between two or more teams -07468861 11 n 01 track_event 0 005 @ 07460104 n 0000 #p 07468692 n 0000 ~ 07469043 n 0000 ~ 07469162 n 0000 ~ 07469325 n 0000 | a footrace performed on a track (indoor or outdoor) -07469043 11 n 01 dash 0 001 @ 07468861 n 0000 | a footrace run at top speed; "he is preparing for the 100-yard dash" -07469162 11 n 03 hurdles 0 hurdling 0 hurdle_race 0 002 @ 07468861 n 0000 + 01967205 v 0201 | a footrace in which contestants must negotiate a series of hurdles -07469325 11 n 01 mile 0 003 @ 07468861 n 0000 + 13651520 n 0101 + 10315561 n 0101 | a footrace extending one mile; "he holds the record in the mile" -07469476 11 n 01 high_jump 0 001 @ 07466557 n 0000 | a competition that involves jumping as high as possible over a horizontal bar -07469609 11 n 02 long_jump 0 broad_jump 0 002 @ 07466557 n 0000 %p 00476788 n 0000 | a competition that involves jumping as far as possible from a running start -07469772 11 n 04 pole_vault 0 pole_vaulting 0 pole_jump 0 pole_jumping 0 002 @ 07466557 n 0000 %p 00476788 n 0000 | a competition that involves jumping over a high crossbar with the aid of a long pole -07469975 11 n 01 shot_put 0 001 @ 07466557 n 0000 | an athletic competition in which a heavy metal ball is hurled as far as possible -07470110 11 n 01 hammer_throw 0 001 @ 07466557 n 0000 | an athletic competition in which a heavy metal ball that is attached to a flexible wire is hurled as far as possible -07470285 11 n 01 discus 0 001 @ 07466557 n 0000 | an athletic competition in which a disk-shaped object is thrown as far as possible -07470420 11 n 01 javelin 0 001 @ 07466557 n 0000 | an athletic competition in which a javelin is thrown as far as possible -07470545 11 n 01 swimming_event 0 002 @ 07470671 n 0000 #p 07468534 n 0000 | an athletic competition that involves swimming -07470671 11 n 01 match 0 015 @ 07456188 n 0000 + 01081152 v 0103 ~ 07465960 n 0000 ~ 07466108 n 0000 ~ 07466195 n 0000 ~ 07466322 n 0000 ~ 07466415 n 0000 ~ 07466557 n 0000 ~ 07466832 n 0000 ~ 07467212 n 0000 ~ 07467393 n 0000 ~ 07470545 n 0000 ~ 07471037 n 0000 ~ 07471126 n 0000 ~ 07471246 n 0000 | a formal contest in which two or more persons or teams compete -07471037 11 n 01 tennis_match 0 001 @ 07470671 n 0000 | a match between tennis players -07471126 11 n 03 test_match 0 match_game 0 matched_game 0 001 @ 07470671 n 0000 | an international championship match -07471246 11 n 01 wrestling_match 0 003 @ 07470671 n 0000 %p 07471371 n 0000 %p 07471514 n 0000 | a match between wrestlers -07471371 11 n 02 fall 2 pin 0 003 @ 07473441 n 0000 #p 07471246 n 0000 ~ 07471514 n 0000 | when a wrestler's shoulders are forced to the mat -07471514 11 n 01 takedown 1 003 @ 07471371 n 0000 #p 07471246 n 0000 ;c 00447540 n 0000 | (amateur wrestling) being brought to the mat from a standing position; "a takedown counts two points" -07471708 11 n 01 sparring_match 0 001 @ 07465960 n 0000 | a practice or exhibition boxing match -07471806 11 n 02 prizefight 0 prize_fight 0 003 @ 07465960 n 0000 + 01420451 v 0201 + 01420451 v 0101 | a boxing match between professional boxers for a cash prize -07471972 11 n 02 triple_jump 0 hop-step-and-jump 0 001 @ 07456638 n 0000 | an athletic contest in which a competitor must perform successively a hop and a step and a jump in continuous movement -07472168 11 n 01 tug-of-war 0 001 @ 07456638 n 0000 | a contest in which teams pull of opposite ends of a rope; the team dragged across a central line loses -07472327 11 n 01 tournament 1 002 @ 07456188 n 0000 %p 07472460 n 0000 | a series of jousts between knights contesting for a prize -07472460 11 n 02 joust 0 tilt 1 004 @ 00788973 n 0000 #p 07472327 n 0000 + 01122906 v 0201 + 01122736 v 0101 | a combat between two mounted knights tilting against each other with blunted lances -07472657 11 n 01 race 1 004 @ 07456188 n 0000 + 01086103 v 0101 ~ 07472808 n 0000 ~ 07472929 n 0000 | any competition; "the race for the presidency" -07472808 11 n 01 arms_race 0 001 @ 07472657 n 0000 | a competition between nations to have the most powerful armaments -07472929 11 n 03 political_campaign 0 campaign 0 run 3 005 @ 07472657 n 0000 + 01094086 v 0302 + 01094086 v 0201 ~ 07473207 n 0000 ~ 07473332 n 0000 | a race between candidates for elective office; "I managed his campaign for governor"; "he is raising money for a Senate run" -07473207 11 n 02 governor's_race 0 campaign_for_governor 0 001 @ 07472929 n 0000 | a race for election to the governorship -07473332 11 n 02 senate_campaign 0 senate_race 0 001 @ 07472929 n 0000 | a race for election to the senate -07473441 11 n 02 victory 0 triumph 0 017 @ 07291312 n 0000 @ 07319103 n 0000 + 01101734 v 0202 + 00695209 a 0102 + 02333314 a 0101 ! 07475364 n 0101 ~ 07354731 n 0000 ~ 07471371 n 0000 ~ 07474006 n 0000 ~ 07474185 n 0000 ~ 07474318 n 0000 ~ 07474533 n 0000 ~ 07474645 n 0000 ~ 07475035 n 0000 ~ 07475107 n 0000 ~ 07475242 n 0000 ~ 07475762 n 0000 | a successful ending of a struggle or contest; "a narrow victory"; "the general always gets credit for his army's victory"; "clinched a victory"; "convincing victory"; "the agreement was a triumph for common sense" -07474006 11 n 01 independence 0 001 @ 07473441 n 0000 | the successful ending of the American Revolution; "they maintained close relations with England even after independence" -07474185 11 n 01 landslide 1 001 @ 07473441 n 0000 | an overwhelming electoral victory; "Roosevelt defeated Hoover in a landslide" -07474318 11 n 01 last_laugh 0 001 @ 07473441 n 0000 | ultimate success achieved after a near failure (inspired by the saying `he laughs best who laughs last'); "we had the last laugh after the votes were counted" -07474533 11 n 01 Pyrrhic_victory 0 001 @ 07473441 n 0000 | a victory that is won by incurring terrible losses -07474645 11 n 02 slam 0 sweep 0 004 @ 07473441 n 0000 #p 00490569 n 0000 ~ 07474809 n 0000 ~ 07474911 n 0000 | winning all or all but one of the tricks in bridge -07474809 11 n 01 grand_slam 0 001 @ 07474645 n 0000 | winning all of the tricks in a hand of bridge -07474911 11 n 02 little_slam 0 small_slam 0 001 @ 07474645 n 0000 | winning all but one of the tricks in a hand of bridge -07475035 11 n 01 checkmate 0 001 @ 07473441 n 0000 | complete victory -07475107 11 n 06 runaway 0 blowout 1 romp 0 laugher 0 shoo-in 0 walkaway 0 002 @ 07473441 n 0000 + 01100567 v 0301 | an easy victory -07475242 11 n 01 service_break 0 002 @ 07473441 n 0000 #p 00482298 n 0000 | a tennis game won on the opponent's service -07475364 11 n 02 defeat 0 licking 1 012 @ 07291312 n 0000 @ 07317764 n 0000 + 09999795 n 0101 + 02473688 v 0103 ! 07473441 n 0101 ~ 07476177 n 0000 ~ 07476282 n 0000 ~ 07476404 n 0000 ~ 07476495 n 0000 ~ 07476623 n 0000 ~ 07476851 n 0000 ~ 07476952 n 0000 | an unsuccessful ending to a struggle or contest; "it was a narrow defeat"; "the army's only defeat"; "they suffered a convincing licking" -07475762 11 n 02 walk-in 0 waltz 0 001 @ 07473441 n 0000 | an assured victory (especially in an election) -07475870 11 n 05 reverse 1 reversal 2 setback 1 blow 2 black_eye 0 003 @ 07283608 n 0000 + 02452092 v 0301 ~ 07476092 n 0000 | an unfortunate happening that hinders or impedes; something that is thwarting or frustrating -07476092 11 n 01 whammy 0 001 @ 07475870 n 0000 | a serious or devastating setback -07476177 11 n 01 heartbreaker 0 001 @ 07475364 n 0000 | a narrow defeat or a defeat at the last minute -07476282 11 n 01 lurch 0 002 @ 07475364 n 0000 + 01103693 v 0101 | a decisive defeat in a game (especially in cribbage) -07476404 11 n 01 rout 0 002 @ 07475364 n 0000 + 01104248 v 0103 | an overwhelming defeat -07476495 11 n 02 shutout 0 skunk 0 002 @ 07475364 n 0000 + 01103693 v 0202 | a defeat in a game where one side fails to score -07476623 11 n 07 thrashing 0 walloping 0 debacle 0 drubbing 0 slaughter 0 trouncing 0 whipping 0 006 @ 07475364 n 0000 + 01102997 v 0704 + 01101913 v 0605 + 01412912 v 0404 + 01103180 v 0201 + 01412912 v 0105 | a sound defeat -07476851 11 n 01 waterloo 0 001 @ 07475364 n 0000 | a final crushing defeat; "he met his waterloo" -07476952 11 n 01 whitewash 0 001 @ 07475364 n 0000 | a defeat in which the losing person or team fails to score -07477066 11 n 03 spelling_bee 0 spelldown 0 spelling_contest 0 001 @ 07456188 n 0000 | a contest in which you are eliminated if you fail to spell a word correctly -07477231 11 n 01 trial 1 002 @ 07456188 n 0000 ;c 00523513 n 0000 | (sports) a preliminary competition to determine qualifications; "the trials for the semifinals began yesterday" -07477413 11 n 01 bite 0 002 @ 07319103 n 0000 ;c 00453935 n 0000 | (angling) an instance of a fish taking the bait; "after fishing for an hour he still had not had a bite" -07477587 11 n 08 boom 2 bonanza 0 gold_rush 0 gravy 0 godsend 0 manna_from_heaven 0 windfall 0 bunce 0 001 @ 07283608 n 0000 | a sudden happening that brings good fortune (as a sudden opportunity to make money); "the demand for testing has created a boom for those unregulated laboratories where boxes of specimen jars are processed like an assembly line" -07477945 11 n 02 crash 2 collapse 1 004 @ 07283608 n 0000 + 01989053 v 0201 + 00224460 v 0201 + 00583064 v 0101 | a sudden large decline of business or the prices of stocks (especially one that causes additional failures) -07478169 11 n 01 loss_of_consciousness 0 002 @ 07296428 n 0000 ~ 07478318 n 0000 | the occurrence of a loss of the ability to perceive and respond -07478318 11 n 04 faint 0 swoon 0 syncope 0 deliquium 0 004 @ 07478169 n 0000 + 00023646 v 0203 + 02544525 a 0101 + 00023646 v 0101 | a spontaneous loss of consciousness caused by insufficient blood to the brain -07478531 11 n 01 Fall 3 002 @i 00029378 n 0000 + 02565911 v 0101 | the lapse of mankind into sinfulness because of the sin of Adam and Eve; "women have been blamed ever since the Fall" -07478718 11 n 01 shipwreck 1 003 @ 07335243 n 0000 + 02529162 v 0101 + 02559613 v 0101 | an irretrievable loss; "that was the shipwreck of their romance" -07478874 11 n 01 crash 3 004 @ 07314427 n 0000 ;c 06128570 n 0000 + 00434919 v 0101 ~ 07479144 n 0000 | (computer science) an event that causes a computer system to become inoperative; "the crash occurred during a thunderstorm and the system has been down ever since" -07479144 11 n 01 head_crash 0 002 @ 07478874 n 0000 ;c 06128570 n 0000 | (computer science) a crash of a read/write head in a hard disk drive (usually caused by contact of the head with the surface of the magnetic disk) -07479366 11 n 01 spike 1 001 @ 07324917 n 0000 | a sharp rise followed by a sharp decline; "the seismograph showed a sharp spike in response to the temblor" -07479525 11 n 01 supervention 0 002 @ 07283608 n 0000 + 00341422 v 0101 | a following on in addition -07479628 11 n 01 zap 0 001 @ 00029378 n 0000 | a sudden event that imparts energy or excitement, usually with a dramatic impact; "they gave it another zap of radiation" -07479799 11 n 01 zizz 0 002 @ 07371293 n 0000 ;r 08860123 n 0000 | a buzzing or whizzing sound; "a nasty zizz in the engine" -07479926 12 n 01 affect 0 003 @ 00026192 n 0000 + 00854255 a 0101 + 01767949 v 0101 | the conscious subjective aspect of feeling or emotion -07480068 12 n 01 emotion 0 013 @ 00026192 n 0000 + 02983577 a 0101 + 01927279 a 0101 + 01772806 v 0101 ~ 05759017 n 0000 ~ 07516354 n 0000 ~ 07519253 n 0000 ~ 07521039 n 0000 ~ 07523905 n 0000 ~ 07527352 n 0000 ~ 07543288 n 0000 ~ 07546465 n 0000 ~ 13985818 n 0000 | any strong feeling -07480356 12 n 01 thing 0 001 @ 00026192 n 0000 | a persistent illogical feeling of desire or aversion; "he has a thing about seafood"; "she has a thing about him" -07480521 12 n 01 glow 0 002 @ 00026192 n 0000 + 01829747 v 0101 | a feeling of considerable warmth; "the glow of new love"; "a glow of regret" -07480666 12 n 01 faintness 0 002 @ 00026192 n 0000 + 02544525 a 0101 | a feeling of faintness and of being ready to swoon -07480790 12 n 02 soul 0 soulfulness 0 002 @ 00026192 n 0000 + 00856651 a 0201 | deep feeling or emotion -07480896 12 n 02 passion 0 passionateness 0 006 @ 00026192 n 0000 + 01725712 a 0201 ~ 07481084 n 0000 ~ 07481223 n 0000 ~ 07481375 n 0000 ~ 07481625 n 0000 | a strong feeling or emotion -07481084 12 n 01 infatuation 0 002 @ 07480896 n 0000 + 01760677 v 0101 | a foolish and usually extravagant passion or love or admiration -07481223 12 n 02 wildness 0 abandon 0 002 @ 07480896 n 0000 + 01727303 a 0101 | a feeling of extreme emotional intensity; "the wildness of his anger" -07481375 12 n 07 ardor 2 ardour 2 fervor 0 fervour 0 fervency 0 fire 0 fervidness 0 005 @ 07480896 n 0000 + 01726235 a 0703 + 01726235 a 0604 + 01726235 a 0502 ~ 07481785 n 0000 | feelings of great warmth and intensity; "he spoke with great ardor" -07481625 12 n 01 storminess 0 002 @ 07480896 n 0000 + 01742912 a 0101 | violent passion in speech or action; "frightened by the storminess of their argument" -07481785 12 n 01 zeal 2 002 @ 07481375 n 0000 + 00886253 a 0102 | excessive fervor to do something or accomplish some end; "he had an absolute zeal for litigation" -07481951 12 n 01 sentiment 0 005 @ 00026192 n 0000 + 02449287 a 0101 + 00854413 a 010a ~ 07482128 n 0000 ~ 07482368 n 0000 | tender, romantic, or nostalgic feeling or emotion -07482128 12 n 01 sentimentality 0 003 @ 07481951 n 0000 + 02449287 a 0101 ~ 07482267 n 0000 | extravagant or affected feeling or emotion -07482267 12 n 02 mawkishness 0 bathos 0 002 @ 07482128 n 0000 + 00854413 a 0105 | insincere pathos -07482368 12 n 01 razbliuto 0 002 @ 07481951 n 0000 ;r 09003284 n 0000 | the sentimental feeling you have about someone you once loved but no longer do -07482521 12 n 01 complex 0 005 @ 00026192 n 0000 ;c 00704305 n 0000 ~ 07482782 n 0000 ~ 07483005 n 0000 ~ 07483120 n 0000 | (psychoanalysis) a combination of emotions and impulses that have been rejected from awareness but still influence a person's behavior -07482782 12 n 02 Oedipus_complex 0 Oedipal_complex 0 001 @ 07482521 n 0000 | a complex of males; desire to possess the mother sexually and to exclude the father; said to be a source of personality disorders if unresolved -07483005 12 n 01 Electra_complex 0 001 @ 07482521 n 0000 | a complex of females; sexual attraction to the father -07483120 12 n 01 inferiority_complex 0 001 @ 07482521 n 0000 | a sense of personal inferiority arising from conflict between the desire to be noticed and the fear of being humiliated -07483305 12 n 02 ambivalence 0 ambivalency 0 003 @ 00026192 n 0000 + 00337841 a 0101 ~ 07483439 n 0000 | mixed feelings or emotions -07483439 12 n 01 conflict 0 002 @ 07483305 n 0000 + 02667228 v 0101 | opposition between two simultaneous but incompatible feelings; "he was immobilized by conflict and indecision" -07483622 12 n 01 apathy 0 005 @ 00026192 n 0000 + 01342949 a 0101 + 02281611 a 0101 ~ 07483782 n 0000 ~ 07484109 n 0000 | an absence of emotion or enthusiasm -07483782 12 n 07 emotionlessness 0 impassivity 0 impassiveness 0 phlegm 0 indifference 1 stolidity 0 unemotionality 0 008 @ 07483622 n 0000 + 00857560 a 0602 + 00858340 a 0401 + 00858340 a 0402 + 00857560 a 0301 + 00501313 a 0303 + 00857560 a 0201 + 01257990 a 0101 | apathy demonstrated by an absence of emotional reactions -07484109 12 n 03 languor 1 lassitude 0 listlessness 0 003 @ 07483622 n 0000 + 02281938 a 0302 + 00876465 a 0301 | a feeling of lack of interest or energy -07484265 12 n 01 desire 0 011 @ 00026192 n 0000 + 01825237 v 0101 ~ 07484547 n 0000 ~ 07485203 n 0000 ~ 07485281 n 0000 ~ 07485475 n 0000 ~ 07486229 n 0000 ~ 07486628 n 0000 ~ 07487955 n 0000 ~ 07490451 n 0000 ~ 07490579 n 0000 | the feeling that accompanies an unsatisfied state -07484547 12 n 03 ambition 0 aspiration 0 dream 0 007 @ 07484265 n 0000 + 00705517 v 0202 + 00745642 a 0101 + 01826060 v 0101 ~ 07484792 n 0000 ~ 07484929 n 0000 ~ 07485047 n 0000 | a cherished desire; "his ambition is to own his own business" -07484792 12 n 01 American_Dream 0 001 @ 07484547 n 0000 | the widespread aspiration of Americans to live better than their parents did -07484929 12 n 01 emulation 0 003 @ 07484547 n 0000 + 02675701 v 0101 + 01122405 v 0101 | ambition to equal or excel -07485047 12 n 01 nationalism 0 002 @ 07484547 n 0000 + 10346015 n 0101 | the aspiration for national independence felt by people under foreign domination -07485203 12 n 01 bloodlust 0 001 @ 07484265 n 0000 | a desire for bloodshed -07485281 12 n 01 temptation 0 002 @ 07484265 n 0000 + 00793785 v 0101 | the desire to have or do something that you know you should avoid; "he felt the temptation and his will power weakened" -07485475 12 n 01 craving 0 004 @ 07484265 n 0000 + 01188485 v 0101 ~ 07485626 n 0000 ~ 07486145 n 0000 | an intense desire for some particular thing -07485626 12 n 03 appetite 0 appetency 0 appetence 0 005 @ 07485475 n 0000 + 00888051 a 0301 + 00888051 a 0201 ~ 07485916 n 0000 ~ 07486055 n 0000 | a feeling of craving something; "an appetite for life"; "the object of life is to satisfy as many appetencies as possible"- Granville Hicks -07485916 12 n 01 stomach 0 002 @ 07485626 n 0000 + 01197626 v 0101 | an appetite for food; "exercise gave him a good stomach for dinner" -07486055 12 n 01 sweet_tooth 0 001 @ 07485626 n 0000 | a strong appetite for sweet food -07486145 12 n 01 addiction 0 001 @ 07485475 n 0000 | an abnormally strong craving -07486229 12 n 03 wish 0 wishing 0 want 0 009 @ 07484265 n 0000 + 01825237 v 0302 + 00709205 v 0301 + 01824339 v 0201 + 01824736 v 0101 + 01824532 v 0101 + 01824339 v 0101 + 00903212 v 0101 ~ 07486527 n 0000 | a specific feeling of desire; "he got his wish"; "he was above all wishing and desire" -07486527 12 n 01 velleity 0 001 @ 07486229 n 0000 | a mere wish, unaccompanied by effort to obtain -07486628 12 n 03 longing 0 yearning 0 hungriness 0 011 @ 07484265 n 0000 + 00888200 a 0302 + 01805684 v 0202 + 01828405 v 0203 + 01828405 v 0102 ~ 07486922 n 0000 ~ 07487063 n 0000 ~ 07487177 n 0000 ~ 07487276 n 0000 ~ 07487375 n 0000 ~ 07538965 n 0000 | prolonged unfulfilled desire or need -07486922 12 n 02 hankering 0 yen 0 003 @ 07486628 n 0000 + 01805684 v 0203 + 01828405 v 0101 | a yearning for something or to do something -07487063 12 n 01 pining 0 003 @ 07486628 n 0000 + 01805684 v 0104 ~ 07487493 n 0000 | a feeling of deep longing -07487177 12 n 01 wishfulness 0 002 @ 07486628 n 0000 + 00887719 a 0102 | an unrealistic yearning -07487276 12 n 01 wistfulness 0 002 @ 07486628 n 0000 + 01362950 a 0102 | a sadly pensive longing -07487375 12 n 01 nostalgia 0 003 @ 07486628 n 0000 + 00889098 a 0101 ~ 07487594 n 0000 | longing for something past -07487493 12 n 01 lovesickness 0 002 @ 07487063 n 0000 + 01150063 a 0101 | a pining for a loved one -07487594 12 n 01 homesickness 0 002 @ 07487375 n 0000 + 00889239 a 0101 | a longing to return home -07487695 12 n 02 sex 0 sexual_urge 0 004 @ 00026192 n 0000 + 02137538 a 0103 + 02131072 a 0101 + 01762283 v 0102 | all of the feelings resulting from the urge to gratify sexual impulses; "he wanted a better sex life"; "the film contained no sex or violence" -07487955 12 n 04 sexual_desire 0 eros 0 concupiscence 0 physical_attraction 0 015 @ 07484265 n 0000 + 01727133 a 0303 + 02132080 a 0201 ~ 07488340 n 0000 ~ 07488567 n 0000 ~ 07488676 n 0000 ~ 07488788 n 0000 ~ 07488875 n 0000 ~ 07489059 n 0000 ~ 07489294 n 0000 ~ 07489548 n 0000 ~ 07489714 n 0000 ~ 07489925 n 0000 ~ 07490042 n 0000 ~ 07490138 n 0000 | a desire for sexual intimacy -07488340 12 n 03 love 1 sexual_love 0 erotic_love 0 002 @ 07487955 n 0000 + 01426397 v 0103 | a deep feeling of sexual desire and attraction; "their love left them indifferent to their surroundings"; "she was his first love" -07488567 12 n 01 aphrodisia 0 002 @ 07487955 n 0000 ! 07488676 n 0101 | a desire for heterosexual intimacy -07488676 12 n 01 anaphrodisia 0 002 @ 07487955 n 0000 ! 07488567 n 0101 | decline or absence of sexual desire -07488788 12 n 01 passion 2 001 @ 07487955 n 0000 | a feeling of strong sexual desire -07488875 12 n 03 sensuality 0 sensualness 0 sensualism 0 005 @ 07487955 n 0000 + 09629246 n 0301 + 01778572 a 0204 + 01257145 a 0201 + 01778572 a 0104 | desire for sensual pleasures -07489059 12 n 05 amorousness 2 eroticism 0 erotism 0 sexiness 0 amativeness 0 006 @ 07487955 n 0000 + 01465061 a 0501 + 02137538 a 0403 + 02131072 a 0401 + 01465214 a 0102 ~ 07490214 n 0000 | the arousal of feelings of sexual desire -07489294 12 n 01 fetish 0 001 @ 07487955 n 0000 | a form of sexual desire in which gratification depends to an abnormal degree on some object or item of clothing or part of the body; "common male fetishes are breasts, legs, hair, shoes, and underwear" -07489548 12 n 01 libido 0 004 @ 07487955 n 0000 ;c 00704305 n 0000 + 02133207 a 0103 + 02945514 a 0101 | (psychoanalysis) a Freudian term for sexual urge or desire -07489714 12 n 03 lecherousness 0 lust 0 lustfulness 0 007 @ 07487955 n 0000 + 02133207 a 0304 + 02133779 a 0302 + 01727133 a 0301 + 01727133 a 0202 + 01188485 v 0205 + 02133431 a 0101 | a strong sexual desire -07489925 12 n 01 nymphomania 0 002 @ 07487955 n 0000 + 01584857 a 0101 | abnormally intense sexual desire in women -07490042 12 n 01 satyriasis 0 001 @ 07487955 n 0000 | abnormally intense sexual desire in men -07490138 12 n 01 the_hots 0 001 @ 07487955 n 0000 | intense sexual desire -07490214 12 n 05 prurience 0 pruriency 0 lasciviousness 0 carnality 0 lubricity 0 005 @ 07489059 n 0000 + 01778572 a 0402 + 02133207 a 0301 + 02133779 a 0203 + 02133779 a 0103 | feeling morbid sexual desire or a propensity to lewdness -07490451 12 n 02 urge 0 itch 0 002 @ 07484265 n 0000 + 01825761 v 0201 | a strong restless desire; "why this urge to travel?" -07490579 12 n 03 caprice 0 impulse 1 whim 0 002 @ 07484265 n 0000 + 00719442 a 0101 | a sudden desire; "he bought it on an impulse" -07490713 12 n 02 pleasure 0 pleasance 0 009 @ 00026192 n 0000 + 01800349 a 0201 + 01815628 v 0101 ! 07494363 n 0101 ~ 07491038 n 0000 ~ 07491708 n 0000 ~ 07492170 n 0000 ~ 07492516 n 0000 ~ 07493527 n 0000 | a fundamental feeling that is hard to define but that people desire to experience; "he was tingling with pleasure" -07491038 12 n 02 delight 0 delectation 0 006 @ 07490713 n 0000 + 01190948 v 0101 + 01815628 v 0102 ~ 07491286 n 0000 ~ 07491476 n 0000 ~ 07491591 n 0000 | a feeling of extreme pleasure or satisfaction; "his delight to see her was obvious to all" -07491286 12 n 02 entrancement 0 ravishment 0 004 @ 07491038 n 0000 + 01817314 v 0205 + 01806505 v 010c + 00020926 v 0101 | a feeling of delight at being filled with wonder and enchantment -07491476 12 n 01 amusement 0 002 @ 07491038 n 0000 + 00859758 v 0101 | a feeling of delight at being entertained -07491591 12 n 01 Schadenfreude 0 002 @ 07491038 n 0000 ;r 08766988 n 0000 | delight in another person's misfortune -07491708 12 n 01 enjoyment 0 006 @ 07490713 n 0000 + 01828736 v 0102 + 01820302 v 0101 + 01190948 v 0102 ~ 07491895 n 0000 ~ 07491981 n 0000 | the pleasure felt when having a good time -07491895 12 n 01 joie_de_vivre 0 001 @ 07491708 n 0000 | a keen enjoyment of living -07491981 12 n 04 gusto 0 relish 2 zest 0 zestfulness 0 005 @ 07491708 n 0000 @ 07555014 n 0000 + 02281182 a 0401 + 02281182 a 0303 + 01820302 v 0203 | vigorous and enthusiastic enjoyment -07492170 12 n 01 pleasantness 0 004 @ 07490713 n 0000 + 01586866 a 0101 ! 07494787 n 0101 ~ 07492368 n 0000 | the feeling caused by agreeable stimuli; one pole of a continuum of states of feeling -07492368 12 n 01 afterglow 0 001 @ 07492170 n 0000 | the pleasure of remembering some pleasant event; "he basked in the afterglow of his victory" -07492516 12 n 01 comfort 0 003 @ 07490713 n 0000 ~ 07492655 n 0000 ~ 07493280 n 0000 | a feeling of freedom from worry or disappointment -07492655 12 n 03 consolation 0 solace 0 solacement 0 006 @ 07492516 n 0000 + 01814815 v 0304 + 01814815 v 0204 + 01814815 v 0103 ~ 07492928 n 0000 ~ 07493095 n 0000 | the comfort you feel when consoled in times of disappointment; "second place was no consolation to him" -07492928 12 n 01 cold_comfort 0 001 @ 07492655 n 0000 | very limited consolation or empathy; "he told me that time heals all wounds but that was cold comfort to me" -07493095 12 n 02 silver_lining 0 bright_side 0 001 @ 07492655 n 0000 | a consoling aspect of a difficult situation; "every cloud has a silver lining"; "look on the bright side of it" -07493280 12 n 03 relief 0 alleviation 0 assuagement 0 003 @ 07492516 n 0000 + 00064095 v 0304 + 00064095 v 0202 | the feeling that comes when something burdensome is removed or reduced; "as he heard the news he was suddenly flooded with relief" -07493527 12 n 01 sexual_pleasure 0 004 @ 07490713 n 0000 ~ 07493682 n 0000 ~ 07493830 n 0000 ~ 07494175 n 0000 | pleasure derived from sexual activities -07493682 12 n 02 algolagnia 0 algophilia 0 002 @ 07493527 n 0000 + 02611187 a 0101 | sexual pleasure derived from inflicting or experiencing pain -07493830 12 n 01 sadism 0 004 @ 07493527 n 0000 + 02057535 a 0101 + 10545792 n 0101 ~ 07494018 n 0000 | sexual pleasure obtained by inflicting harm (physical or psychological) on others -07494018 12 n 01 sadomasochism 0 004 @ 07493830 n 0000 @ 07494175 n 0000 + 02791483 a 0101 + 10545940 n 0101 | sadism and masochism combined in one person -07494175 12 n 01 masochism 0 004 @ 07493527 n 0000 + 02057681 a 0101 + 10297367 n 0101 ~ 07494018 n 0000 | sexual pleasure obtained from receiving punishment (physical or psychological) -07494363 12 n 02 pain 0 painfulness 0 010 @ 00026192 n 0000 + 01804175 a 0202 + 01711071 a 0201 + 01792567 v 0101 ! 07490713 n 0101 ~ 07494682 n 0000 ~ 07494787 n 0000 ~ 07495236 n 0000 ~ 07495327 n 0000 ~ 07496463 n 0000 | emotional distress; a fundamental feeling that people try to avoid; "the pain of loneliness" -07494682 12 n 01 growing_pains 0 001 @ 07494363 n 0000 | emotional distress arising during adolescence -07494787 12 n 01 unpleasantness 0 003 @ 07494363 n 0000 + 01801600 a 0101 ! 07492170 n 0101 | the feeling caused by disagreeable stimuli; one pole of a continuum of states of feeling -07494972 12 n 03 pang 0 stab 0 twinge 0 002 @ 00026192 n 0000 ~ 07495156 n 0000 | a sudden sharp feeling; "pangs of regret"; "she felt a stab of excitement"; "twinges of conscience" -07495156 12 n 01 guilt_pang 0 001 @ 07494972 n 0000 | pangs of feeling guilty -07495236 12 n 01 mental_anguish 0 001 @ 07494363 n 0000 | sustained dull painful emotion -07495327 12 n 02 suffering 1 hurt 1 008 @ 07494363 n 0000 + 01792567 v 0203 + 00064643 v 0201 + 02121511 v 0103 + 00065070 v 0101 ~ 07495551 n 0000 ~ 07495878 n 0000 ~ 07495973 n 0000 | feelings of mental or physical pain -07495551 12 n 03 agony 0 torment 1 torture 1 009 @ 07495327 n 0000 + 01711724 a 0306 + 01802689 v 0302 + 01802689 v 0201 + 02608090 a 0101 + 10172793 n 0102 + 09779280 n 0101 + 01794523 v 0102 + 01794363 v 0102 | intense feelings of suffering; acute mental or physical pain; "an agony of doubt"; "the torments of the damned" -07495878 12 n 01 throes 0 001 @ 07495327 n 0000 | violent pangs of suffering; "death throes" -07495973 12 n 03 discomfort 0 soreness 0 irritation 0 004 @ 07495327 n 0000 + 00063291 v 0301 + 01804175 a 0203 + 00115193 a 0203 | an uncomfortable feeling of mental painfulness or distress -07496166 12 n 01 chafing 0 002 @ 14332617 n 0000 ~ 07496291 n 0000 | soreness or irritation of the skin caused by friction -07496291 12 n 01 intertrigo 0 001 @ 07496166 n 0000 | chafing between two skin surfaces that are in contact (as in the armpit or under the breasts or between the thighs) -07496463 12 n 03 distress 2 hurt 2 suffering 2 009 @ 07494363 n 0000 + 01794668 v 0301 + 02122164 v 0203 + 00064643 v 0201 + 01798100 v 0101 ~ 07496755 n 0000 ~ 07496924 n 0000 ~ 07497019 n 0000 ~ 07497122 n 0000 | psychological suffering; "the death of his wife caused him great distress" -07496755 12 n 03 anguish 2 torment 2 torture 2 005 @ 07496463 n 0000 + 01802689 v 0302 + 01802689 v 0201 + 01794969 v 0101 + 01792567 v 0102 | extreme mental distress -07496924 12 n 02 self-torture 0 self-torment 0 001 @ 07496463 n 0000 | self-imposed distress -07497019 12 n 01 tsoris 0 002 @ 07496463 n 0000 ;c 06951067 n 0000 | (Yiddish) trouble and suffering -07497122 12 n 01 wound 0 001 @ 07496463 n 0000 | a figurative injury (to your feelings or pride); "he feared that mentioning it might reopen the wound"; "deep in her breast lives the silent wound"; "The right reader of a good poem can tell the moment it strikes him that he has taken an immortal wound--that he will never get over it"--Robert Frost -07497473 12 n 01 liking 0 010 @ 00026192 n 0000 ! 07501545 n 0101 ~ 07497797 n 0000 ~ 07497976 n 0000 ~ 07498210 n 0000 ~ 07498769 n 0000 ~ 07498854 n 0000 ~ 07499615 n 0000 ~ 07500159 n 0000 ~ 07500741 n 0000 | a feeling of pleasure and enjoyment; "I've always had a liking for reading"; "she developed a liking for gin" -07497797 12 n 03 fondness 1 fancy 0 partiality 0 003 @ 07497473 n 0000 + 01776468 v 0201 + 01292683 a 0101 | a predisposition to like something; "he had a fondness for whiskey" -07497976 12 n 04 captivation 0 enchantment 0 enthrallment 0 fascination 0 005 @ 07497473 n 0000 + 01806505 v 040a + 01817314 v 0304 + 01806505 v 020d + 01806505 v 0107 | a feeling of great liking for something wonderful and unusual -07498210 12 n 04 preference 0 penchant 0 predilection 0 taste 2 004 @ 07497473 n 0000 + 01826498 v 0101 ~ 07498455 n 0000 ~ 07498614 n 0000 | a strong liking; "my own preference is for good literature"; "the Irish have a penchant for blarney" -07498455 12 n 01 acquired_taste 0 001 @ 07498210 n 0000 | a preference that is only acquired after considerable experience; "martinis are an acquired taste" -07498614 12 n 01 weakness 0 001 @ 07498210 n 0000 | a penchant for something even though it might not be good for you; "he has a weakness for chocolate" -07498769 12 n 01 mysophilia 0 001 @ 07497473 n 0000 | abnormal attraction to filth -07498854 12 n 01 inclination 0 007 @ 07497473 n 0000 + 02719399 v 0104 + 00680841 v 0102 ! 07501922 n 0101 ~ 07499113 n 0000 ~ 07499276 n 0000 ~ 07499449 n 0000 | that toward which you are inclined to feel a liking; "her inclination is for classical music" -07499113 12 n 03 leaning 0 propensity 0 tendency 0 002 @ 07498854 n 0000 + 02719399 v 0301 | an inclination to do something; "he felt leanings toward frivolity" -07499276 12 n 01 stomach 1 001 @ 07498854 n 0000 | an inclination or liking for things involving conflict or difficulty or unpleasantness; "he had no stomach for a fight" -07499449 12 n 01 undertow 0 001 @ 07498854 n 0000 | an inclination contrary to the strongest or prevailing feeling; "his account had a poignant undertow of regret" -07499615 12 n 01 friendliness 0 006 @ 07497473 n 0000 + 01246801 a 0101 ! 07502241 n 0101 ~ 07499830 n 0000 ~ 07499930 n 0000 ~ 07500042 n 0000 | a feeling of liking for another person; enjoyment in their company -07499830 12 n 02 amicability 0 amicableness 0 001 @ 07499615 n 0000 | a disinclination to quarrel -07499930 12 n 02 good_will 0 goodwill 0 001 @ 07499615 n 0000 | the friendly hope that something will succeed -07500042 12 n 01 brotherhood 0 001 @ 07499615 n 0000 | the feeling that men should treat one another like brothers -07500159 12 n 01 approval 0 005 @ 07497473 n 0000 + 00673983 v 0101 ! 07502829 n 0101 ~ 07500414 n 0000 ~ 07500612 n 0000 | a feeling of liking something or someone good; "although she fussed at them, she secretly viewed all her children with approval" -07500414 12 n 02 favor 0 favour 0 007 @ 07500159 n 0000 + 02400037 v 0203 + 02453692 v 0203 + 02464725 v 0202 + 02453692 v 0102 + 00692143 v 0101 + 02400037 v 0102 | a feeling of favorable regard -07500612 12 n 01 approbation 0 004 @ 07500159 n 0000 + 00803815 v 0101 + 00687033 v 0101 + 00673983 v 0101 | official approval -07500741 12 n 02 admiration 1 esteem 0 007 @ 07497473 n 0000 + 00694068 v 0202 + 01827858 v 0101 ~ 07500957 n 0000 ~ 07501093 n 0000 ~ 07501194 n 0000 ~ 07501326 n 0000 | a feeling of delighted approval and liking -07500957 12 n 01 Anglophilia 0 003 @ 07500741 n 0000 + 02623672 a 0101 ! 07502099 n 0101 | admiration for Britain and British customs -07501093 12 n 01 hero_worship 0 001 @ 07500741 n 0000 | admiration for great men (or their memory) -07501194 12 n 01 philhellenism 0 002 @ 07500741 n 0000 + 10422540 n 0102 | admiration for Greece and the Greeks and Greek customs -07501326 12 n 01 philogyny 0 002 @ 07500741 n 0000 ! 07547064 n 0101 | admiration for women -07501420 12 n 02 worship 1 adoration 0 002 @ 07543288 n 0000 + 01778017 v 0103 | a feeling of profound love and admiration -07501545 12 n 01 dislike 0 015 @ 00026192 n 0000 + 01776727 v 0101 ! 07497473 n 0101 ~ 07501922 n 0000 ~ 07502099 n 0000 ~ 07502241 n 0000 ~ 07502387 n 0000 ~ 07502669 n 0000 ~ 07502829 n 0000 ~ 07502980 n 0000 ~ 07503260 n 0000 ~ 07503716 n 0000 ~ 07503849 n 0000 ~ 07504258 n 0000 ~ 07548366 n 0000 | a feeling of aversion or antipathy; "my dislike of him was instinctive" -07501922 12 n 01 disinclination 0 002 @ 07501545 n 0000 ! 07498854 n 0101 | that toward which you are inclined to feel dislike; "his disinclination for modesty is well known" -07502099 12 n 01 Anglophobia 0 003 @ 07501545 n 0000 + 02623776 a 0101 ! 07500957 n 0101 | dislike (or fear) of Britain and British customs -07502241 12 n 01 unfriendliness 0 003 @ 07501545 n 0000 + 01246388 a 0101 ! 07499615 n 0101 | dislike experienced as an absence of friendliness -07502387 12 n 03 alienation 0 disaffection 0 estrangement 0 004 @ 07501545 n 0000 + 02597246 v 0301 + 01823528 v 0204 ~ 07502576 n 0000 | the feeling of being alienated from other people -07502576 12 n 01 isolation 0 001 @ 07502387 n 0000 | a feeling of being disliked and alone -07502669 12 n 03 antipathy 0 aversion 0 distaste 0 004 @ 07501545 n 0000 + 01245138 a 0102 + 01293542 a 0101 + 01245138 a 0103 | a feeling of intense dislike -07502829 12 n 01 disapproval 0 003 @ 07501545 n 0000 + 00674340 v 0101 ! 07500159 n 0101 | a feeling of disliking something or what someone is doing -07502980 12 n 04 contempt 0 disdain 0 scorn 0 despite 0 004 @ 07501545 n 0000 + 01774799 v 0303 + 01774799 v 0204 + 01995288 a 0101 | lack of respect accompanied by a feeling of intense dislike; "he was held in contempt"; "the despite in which outsiders were held is legendary" -07503260 12 n 01 disgust 0 006 @ 07501545 n 0000 + 01808374 v 0101 + 02194913 v 0101 ~ 07503430 n 0000 ~ 07503987 n 0000 ~ 07504111 n 0000 | strong feelings of dislike -07503430 12 n 06 abhorrence 0 abomination 0 detestation 0 execration 0 loathing 0 odium 0 009 @ 07546465 n 0000 @ 07503260 n 0000 + 01460679 a 0604 + 01774426 v 0502 + 01774426 v 0404 + 01774136 v 0302 + 01774426 v 0203 + 01625063 a 0101 + 01774426 v 0101 | hate coupled with disgust -07503716 12 n 01 creepy-crawlies 0 001 @ 07501545 n 0000 | feelings of dislike and anxiety; "the cave gave me the creepy-crawlies" -07503849 12 n 01 scunner 0 002 @ 07501545 n 0000 ;r 08890097 n 0000 | a strong dislike; "they took a scunner against the United States" -07503987 12 n 04 repugnance 0 repulsion 0 revulsion 0 horror 0 002 @ 07503260 n 0000 + 01625063 a 0104 | intense aversion -07504111 12 n 01 nausea 0 004 @ 07503260 n 0000 + 02560035 a 0102 + 02195191 v 0102 + 01808374 v 0103 | disgust so strong it makes you feel sick -07504258 12 n 01 technophobia 0 001 @ 07501545 n 0000 | dislike for new technology -07504343 12 n 01 gratitude 0 003 @ 00026192 n 0000 ! 07504711 n 0101 ~ 07504529 n 0000 | a feeling of thankfulness and appreciation; "he was overwhelmed with gratitude for their help" -07504529 12 n 03 gratefulness 0 thankfulness 0 appreciativeness 0 004 @ 07504343 n 0000 + 01146732 a 0301 + 01146493 a 0202 + 01146493 a 0101 | warm friendly feelings of gratitude -07504711 12 n 02 ingratitude 0 ungratefulness 0 003 @ 00026192 n 0000 + 01147044 a 0201 ! 07504343 n 0101 | a lack of gratitude -07504841 12 n 01 concern 0 004 @ 07553301 n 0000 ! 07505538 n 0101 ~ 07505207 n 0000 ~ 07505347 n 0000 | a feeling of sympathy for someone or something; "She felt strong concern for those less fortunate" -07505047 12 n 01 care 0 003 @ 14408646 n 0000 + 01822936 v 0101 + 01766748 v 0102 | a cause for feeling concern; "his major care was the illness of his wife" -07505207 12 n 02 solicitude 0 solicitousness 0 003 @ 07504841 n 0000 + 00544860 a 0201 + 00164681 a 0201 | a feeling of excessive concern -07505347 12 n 02 softheartedness 0 tenderness 0 003 @ 07504841 n 0000 + 02448889 a 0201 + 01158453 a 0101 | a feeling of concern for the welfare of someone (especially someone defenseless) -07505538 12 n 01 unconcern 0 004 @ 00026192 n 0000 ! 07504841 n 0101 ~ 07505676 n 0000 ~ 07506149 n 0000 | a feeling of lack of concern -07505676 12 n 01 indifference 0 007 @ 07505538 n 0000 + 01724072 a 0101 + 01280576 a 0102 + 00546452 a 0101 + 01723856 a 0101 ~ 07505871 n 0000 ~ 07506031 n 0000 | unbiased impartial unconcern -07505871 12 n 02 distance 0 aloofness 2 003 @ 07505676 n 0000 + 01987646 a 0102 + 02683127 v 0101 | indifference by personal withdrawal; "emotional distance" -07506031 12 n 02 withdrawal 0 detachment 0 002 @ 07505676 n 0000 + 01766952 v 0102 | avoiding emotional involvement -07506149 12 n 03 heartlessness 0 coldheartedness 0 hardheartedness 0 006 @ 07505538 n 0000 + 00507292 a 0301 + 01158020 a 0301 + 02533540 a 0201 + 01158020 a 0102 ~ 07506382 n 0000 | an absence of concern for the welfare of others -07506382 12 n 04 cruelty 0 mercilessness 0 pitilessness 0 ruthlessness 0 004 @ 07506149 n 0000 + 01508086 a 0403 + 01264179 a 0301 + 01507402 a 0201 | feelings of extreme heartlessness -07506569 12 n 01 shame 0 007 @ 00026192 n 0000 + 01792287 v 0101 + 02508078 v 0101 + 02547225 v 0105 ~ 07506797 n 0000 ~ 07506962 n 0000 ~ 07507098 n 0000 | a painful emotion resulting from an awareness of inadequacy or guilt -07506797 12 n 01 conscience 0 002 @ 07506569 n 0000 + 02086115 a 0101 | a feeling of shame when you do something immoral; "he has no conscience about his cruelty" -07506962 12 n 02 self-disgust 0 self-hatred 0 001 @ 07506569 n 0000 | shame resulting from strong dislike of yourself or your actions -07507098 12 n 01 embarrassment 0 007 @ 07506569 n 0000 ~ 07507329 n 0000 ~ 07507560 n 0000 ~ 07507742 n 0000 ~ 07507912 n 0000 ~ 07508092 n 0000 ~ 07508232 n 0000 | the shame you feel when your inadequacy or guilt is made public -07507329 12 n 03 self-consciousness 0 uneasiness 1 uncomfortableness 0 004 @ 07507098 n 0000 + 00479933 a 0301 + 00480439 a 0203 + 00480965 a 0101 | embarrassment deriving from the feeling that others are critically aware of you -07507560 12 n 02 shamefacedness 0 sheepishness 0 005 @ 07507098 n 0000 + 00154837 a 0202 + 00154583 a 0103 + 00154837 a 0101 + 01538690 a 0101 | feeling embarrassed about yourself -07507742 12 n 03 chagrin 0 humiliation 0 mortification 0 004 @ 07507098 n 0000 + 01799794 v 0302 + 01799794 v 0201 + 01799794 v 0103 | strong feelings of embarrassment -07507912 12 n 02 confusion 0 discombobulation 0 004 @ 07507098 n 0000 + 01791232 v 0203 + 00621734 v 0208 + 01790739 v 0101 | a feeling of embarrassment that leaves you confused -07508092 12 n 02 abashment 0 bashfulness 0 003 @ 07507098 n 0000 + 00252130 a 0201 + 01792097 v 0102 | feeling embarrassed due to modesty -07508232 12 n 04 discomfiture 0 discomposure 0 disconcertion 0 disconcertment 0 008 @ 07507098 n 0000 @ 07523905 n 0000 + 01790739 v 0403 + 01790020 v 0404 + 01790739 v 0303 + 01790020 v 0304 + 01790020 v 0202 + 01790020 v 0105 | anxious embarrassment -07508486 12 n 02 pride 0 pridefulness 0 007 @ 00026192 n 0000 + 00704898 a 0204 ! 07509131 n 0101 ~ 04886881 n 0000 ~ 07508705 n 0000 ~ 07508806 n 0000 ~ 07508996 n 0000 | a feeling of self-respect and personal worth -07508705 12 n 02 self-esteem 0 self-pride 0 001 @ 07508486 n 0000 | a feeling of pride in yourself -07508806 12 n 03 ego 1 egotism 0 self-importance 0 004 @ 07508486 n 0000 + 01889819 a 0303 + 01891773 a 0202 + 10047459 n 0201 | an inflated feeling of pride in your superiority to others -07508996 12 n 04 amour_propre 0 conceit 0 self-love 0 vanity 0 002 @ 07508486 n 0000 + 01891773 a 0407 | feelings of excessive pride -07509131 12 n 02 humility 0 humbleness 0 004 @ 00026192 n 0000 ! 07508486 n 0101 ~ 07509325 n 0000 ~ 07509474 n 0000 | a humble feeling; "he was filled with humility at the sight of the Pope" -07509325 12 n 02 meekness 0 submission 0 003 @ 07509131 n 0000 + 01893510 a 0101 + 02328916 a 0101 | the feeling of patient, submissive humbleness -07509474 12 n 01 self-depreciation 0 001 @ 07509131 n 0000 | a feeling of being of little worth -07509572 12 n 02 astonishment 0 amazement 0 006 @ 00026192 n 0000 + 00724832 v 0201 + 00724832 v 0102 ~ 07509996 n 0000 ~ 07510348 n 0000 ~ 07510495 n 0000 | the feeling that accompanies something extremely surprising; "he looked at me in astonishment" -07509827 12 n 01 devastation 0 002 @ 00026192 n 0000 + 00260311 v 0101 | the feeling of being confounded or overwhelmed; "her departure left him in utter devastation" -07509996 12 n 03 wonder 0 wonderment 0 admiration 2 004 @ 07509572 n 0000 + 00925490 v 0201 + 00925490 v 0101 ~ 07510184 n 0000 | the feeling aroused by something strange and surprising -07510184 12 n 01 awe 2 002 @ 07509996 n 0000 + 01779644 v 0101 | an overwhelming feeling of wonder or admiration; "he stared over the edge with a feeling of awe" -07510348 12 n 01 surprise 0 002 @ 07509572 n 0000 + 00725274 v 0101 | the astonishment you feel when something totally unexpected happens to you -07510495 12 n 01 stupefaction 0 003 @ 07509572 n 0000 + 00622384 v 010c ~ 07510625 n 0000 | a feeling of stupefied astonishment -07510625 12 n 03 daze 0 shock 1 stupor 0 005 @ 07510495 n 0000 + 00090186 v 0203 + 01783022 v 0201 + 01810447 v 0201 + 02115430 v 0103 | the feeling of distress and disbelief that you have when something bad happens accidentally; "his mother's death left him in a daze"; "he was numb with shock" -07510923 12 n 01 expectation 0 004 @ 00026192 n 0000 + 00719734 v 0101 + 00059019 v 0105 ~ 07511080 n 0000 | the feeling that something is about to happen -07511080 12 n 02 anticipation 0 expectancy 0 005 @ 07510923 n 0000 + 01228797 a 0203 ~ 07511238 n 0000 ~ 07511380 n 0000 ~ 07511733 n 0000 | an expectation -07511238 12 n 01 suspense 1 001 @ 07511080 n 0000 | excited anticipation of an approaching climax; "the play kept the audience in suspense" -07511380 12 n 01 fever 0 003 @ 07511080 n 0000 ~ 07511524 n 0000 ~ 07511626 n 0000 | intense nervous anticipation; "in a fever of resentment" -07511524 12 n 01 buck_fever 0 001 @ 07511380 n 0000 | nervous excitement of an inexperienced hunter -07511626 12 n 01 gold_fever 0 001 @ 07511380 n 0000 | greed and the contagious excitement of a gold rush -07511733 12 n 01 hope 1 003 @ 07511080 n 0000 + 01811441 v 0101 + 01826723 v 0101 | a specific instance of feeling hopeful; "it revived their hope of winning the pennant" -07511906 12 n 01 levity 0 003 @ 00026192 n 0000 ! 07512147 n 0101 ~ 07512039 n 0000 | feeling an inappropriate lack of seriousness -07512039 12 n 02 gaiety 1 playfulness 0 002 @ 07511906 n 0000 + 02121859 a 0201 | a festive merry feeling -07512147 12 n 02 gravity 0 solemnity 1 005 @ 00026192 n 0000 + 02118840 a 0203 + 02119213 a 0204 ! 07511906 n 0101 ~ 07512315 n 0000 | a solemn and dignified feeling -07512315 12 n 03 earnestness 0 seriousness 0 sincerity 0 003 @ 07512147 n 0000 + 02118840 a 0302 + 02179968 a 0103 | an earnest and sincere feeling -07512465 12 n 02 sensitivity 0 sensitiveness 0 008 @ 00026192 n 0000 + 02105990 a 0201 + 02105990 a 0101 = 02105990 a 0000 = 02106761 a 0000 ~ 07512719 n 0000 ~ 07512848 n 0000 ~ 07513035 n 0000 | sensitivity to emotional feelings (of self and others) -07512719 12 n 01 oversensitiveness 0 002 @ 07512465 n 0000 + 02106651 a 0101 | sensitivity leading to easy irritation or upset -07512848 12 n 01 sensibility 0 003 @ 07512465 n 0000 ~ 07513247 n 0000 ~ 07513413 n 0000 | refined sensitivity to pleasurable or painful impressions; "cruelty offended his sensibility" -07513035 12 n 01 feelings 0 003 @ 07512465 n 0000 + 01771535 v 0101 + 00690305 v 0101 | emotional or moral sensitivity (especially in relation to personal principles or dignity); "the remark hurt his feelings" -07513247 12 n 03 insight 0 perceptiveness 0 perceptivity 0 004 @ 07512848 n 0000 + 01744111 a 0301 + 02868326 a 0201 + 01744111 a 0201 | a feeling of understanding -07513413 12 n 01 sensuousness 0 002 @ 07512848 n 0000 + 00070427 a 0101 | a sensuous feeling -07513508 12 n 01 agitation 0 007 @ 00026192 n 0000 ! 07514968 n 0101 ~ 07513711 n 0000 ~ 07513795 n 0000 ~ 07514189 n 0000 ~ 07514345 n 0000 ~ 07514520 n 0000 | the feeling of being agitated; not calm -07513711 12 n 01 unrest 0 001 @ 07513508 n 0000 | a feeling of restless agitation -07513795 12 n 03 fidget 0 fidgetiness 0 restlessness 0 005 @ 07513508 n 0000 + 02058448 v 0101 + 02406166 a 0102 + 02406166 a 0202 ~ 07514071 n 0000 | a feeling of agitation expressed in continual motion; "he's got the fidgets"; "waiting gave him a feeling of restlessness" -07514071 12 n 01 impatience 0 002 @ 07513795 n 0000 + 00811536 a 0101 | a restless desire for change and excitement -07514189 12 n 01 stewing 0 001 @ 07513508 n 0000 | an extreme state of worry and agitation; "his stewing over the fight kept him awake most of the night" -07514345 12 n 01 stir 0 006 @ 07513508 n 0000 + 01770802 v 0102 + 01761706 v 0105 + 02116118 v 0103 ~ 07514600 n 0000 ~ 07514782 n 0000 | emotional agitation and excitement -07514520 12 n 02 tumult 0 turmoil 0 001 @ 07513508 n 0000 | violent agitation -07514600 12 n 01 electricity 0 003 @ 07514345 n 0000 + 02406640 a 0101 + 01830798 v 0101 | keen and shared excitement; "the stage crackled with electricity whenever she was on it" -07514782 12 n 01 sensation 0 001 @ 07514345 n 0000 | a general feeling of excitement and heightened interest; "anticipation produced in me a sensation somewhere between hope and fear" -07514968 12 n 01 calmness 0 006 @ 00026192 n 0000 + 00529657 a 0101 ! 07513508 n 0101 ~ 07515169 n 0000 ~ 07515328 n 0000 ~ 07515560 n 0000 | a feeling of calm; an absence of agitation or excitement -07515169 12 n 02 placidity 0 placidness 0 003 @ 07514968 n 0000 + 01134486 a 0204 + 00302951 a 0201 | a feeling of calmness; a quiet and undisturbed feeling -07515328 12 n 03 coolness 0 imperturbability 0 imperturbableness 0 004 @ 07514968 n 0000 + 00530047 a 0301 + 00530047 a 0201 + 00971660 a 0101 | calm and unruffled self-assurance; "he performed with all the coolness of a veteran" -07515560 12 n 04 tranquillity 0 tranquility 0 quietness 0 quietude 0 007 @ 07514968 n 0000 + 00302951 a 0302 + 01922763 a 0301 + 00302951 a 0204 + 00302951 a 0104 ~ 07515790 n 0000 ~ 07515974 n 0000 | a state of peace and quiet -07515790 12 n 07 peace 0 peacefulness 0 peace_of_mind 0 repose 0 serenity 0 heartsease 0 ataraxis 0 002 @ 07515560 n 0000 + 01765392 v 0101 | the absence of mental stress or anxiety -07515974 12 n 02 easiness 0 relaxation 0 005 @ 07515560 n 0000 + 02602212 v 0201 + 00025654 v 0201 + 00822115 a 0101 ~ 07516222 n 0000 | a feeling of refreshing tranquility and an absence of tension or worry; "the easiness we feel when sleeping" -07516222 12 n 02 languor 0 dreaminess 0 003 @ 07515974 n 0000 + 00876204 a 0201 + 00165585 a 0201 | a relaxed comfortable feeling -07516354 12 n 03 anger 0 choler 1 ire 0 015 @ 07480068 n 0000 + 01726613 a 0201 + 01135914 a 0201 + 00114921 a 0201 + 00113818 a 0101 + 01787106 v 0101 + 01785971 v 0101 ~ 07516997 n 0000 ~ 07517417 n 0000 ~ 07517550 n 0000 ~ 07517737 n 0000 ~ 07517869 n 0000 ~ 07518000 n 0000 ~ 07518132 n 0000 ~ 07518261 n 0000 | a strong emotion; a feeling that is oriented toward some real or supposed grievance -07516756 12 n 02 dudgeon 0 high_dudgeon 0 001 @ 07517737 n 0000 | a feeling of intense indignation (now used only in the phrase `in high dudgeon') -07516905 12 n 01 wrath 0 001 @ 07516997 n 0000 | intense anger (usually on an epic scale) -07516997 12 n 03 fury 0 rage 0 madness 0 008 @ 07516354 n 0000 + 00115193 a 0302 + 02723016 v 0202 + 01796033 v 0201 + 00114454 a 0103 + 01786906 v 0101 ~ 07516905 n 0000 ~ 07517292 n 0000 | a feeling of intense anger; "hell hath no fury like a woman scorned"; "his face turned red with rage" -07517292 12 n 01 lividity 0 002 @ 07516997 n 0000 + 00115906 a 0101 | a state of fury so great the face becomes discolored -07517417 12 n 02 infuriation 0 enragement 0 003 @ 07516354 n 0000 + 01795888 v 0201 + 01786906 v 0101 | a feeling of intense anger -07517550 12 n 03 umbrage 0 offense 0 offence 0 003 @ 07516354 n 0000 + 01789270 v 0302 + 00115494 a 0104 | a feeling of anger caused by being offended; "he took offence at my question" -07517737 12 n 02 indignation 0 outrage 0 003 @ 07516354 n 0000 + 01810447 v 0207 ~ 07516756 n 0000 | a feeling of righteous anger -07517869 12 n 01 huffiness 0 003 @ 07516354 n 0000 + 02106509 a 0101 + 00115193 a 0101 | a passing state of anger and resentment -07518000 12 n 02 dander 0 hackles 0 001 @ 07516354 n 0000 | a feeling of anger and animosity; "having one's hackles or dander up" -07518132 12 n 02 bad_temper 0 ill_temper 0 003 @ 07516354 n 0000 ~ 07552549 n 0000 ~ 14406303 n 0000 | a persisting angry mood -07518261 12 n 03 annoyance 0 chafe 0 vexation 0 006 @ 07516354 n 0000 ~ 07518468 n 0000 ~ 07518663 n 0000 ~ 07518878 n 0000 ~ 07519040 n 0000 ~ 07540424 n 0000 | anger produced by some annoying irritation -07518468 12 n 03 pique 0 temper 1 irritation 1 004 @ 07518261 n 0000 + 01787955 v 0306 + 00202934 v 0203 + 01789270 v 0101 | a sudden outburst of anger; "his temper sparked like damp firewood" -07518663 12 n 01 frustration 1 003 @ 07518261 n 0000 + 02558172 v 0107 + 01803003 v 0106 | a feeling of annoyance at being hindered or criticized; "her constant complaints were the main source of his frustration" -07518878 12 n 02 aggravation 0 exasperation 0 004 @ 07518261 n 0000 + 01786906 v 0202 + 01820901 v 0202 + 01820901 v 0103 | an exasperated feeling of annoyance -07519040 12 n 02 harassment 0 torment 3 002 @ 07518261 n 0000 + 01803003 v 0201 | a feeling of intense annoyance caused by being tormented; "so great was his harassment that he wanted to destroy his tormentors" -07519253 12 n 03 fear 0 fearfulness 0 fright 0 019 @ 07480068 n 0000 + 01779165 v 0302 + 00079485 a 0201 + 01780202 v 0101 ! 07526182 n 0101 = 00077645 a 0000 = 00081671 a 0000 ~ 07519773 n 0000 ~ 07519983 n 0000 ~ 07520112 n 0000 ~ 07520411 n 0000 ~ 07520507 n 0000 ~ 07520612 n 0000 ~ 07521437 n 0000 ~ 07521563 n 0000 ~ 07521674 n 0000 ~ 07522729 n 0000 ~ 07523760 n 0000 %p 14405774 n 0000 | an emotion experienced in anticipation of some specific pain or danger (usually accompanied by a desire to flee or fight) -07519773 12 n 03 alarm 0 dismay 0 consternation 0 006 @ 07519253 n 0000 + 01782650 v 0201 + 01782650 v 0102 + 00872414 v 0101 = 00193015 a 0000 = 00196560 a 0000 | fear resulting from the awareness of danger -07519983 12 n 01 creeps 0 002 @ 07519253 n 0000 ;u 07075172 n 0000 | a feeling of fear and revulsion; "he gives me the creeps" -07520112 12 n 07 frisson 0 shiver 0 chill 2 quiver 0 shudder 0 thrill 2 tingle 0 007 @ 07519253 n 0000 + 02122983 v 0701 + 01812324 v 0604 + 01796346 v 0601 + 00194924 a 0505 + 00194924 a 0204 + 01888946 v 0202 | an almost pleasurable sensation of fright; "a frisson of surprise shot through him" -07520411 12 n 01 horror 1 002 @ 07519253 n 0000 + 01782650 v 0105 | intense and profound fear -07520507 12 n 01 hysteria 1 002 @ 07519253 n 0000 + 00086606 a 0101 | excessive or uncontrollable fear -07520612 12 n 03 panic 0 terror 0 affright 0 012 @ 07519253 n 0000 + 01779165 v 0304 + 10702781 n 0201 + 02506361 v 0201 + 01780941 v 0202 + 02506361 v 0202 + 01780941 v 0203 + 01780941 v 0201 + 00080357 a 0101 + 01781983 v 0101 + 01782218 v 0101 ~ 07520925 n 0000 | an overwhelming feeling of fear and anxiety -07520925 12 n 01 swivet 0 001 @ 07520612 n 0000 | a panic or extreme discomposure; "it threw her into a swivet" -07521039 12 n 04 fear 2 reverence 0 awe 0 veneration 0 007 @ 07480068 n 0000 + 01778568 v 0404 + 02012333 a 0202 + 01781882 a 0202 + 01778568 v 0201 + 01778568 v 0203 + 01778568 v 0102 | a feeling of profound respect for someone or something; "the fear of God"; "the Chinese reverence for the dead"; "the French treat food with gentle reverence"; "his respect for the law bordered on veneration" -07521437 12 n 02 scare 0 panic_attack 0 003 @ 07519253 n 0000 + 00194924 a 0102 + 01779165 v 0103 | a sudden attack of fear -07521563 12 n 01 stage_fright 0 001 @ 07519253 n 0000 | fear that affects a person about to face an audience -07521674 12 n 03 apprehension 0 apprehensiveness 0 dread 0 011 @ 07519253 n 0000 + 00193799 a 0304 + 01780202 v 0302 + 00822907 a 0201 + 00079069 a 0201 + 01782432 v 0101 ~ 07522043 n 0000 ~ 07522128 n 0000 ~ 07522632 n 0000 ~ 07533257 n 0000 ~ 07537259 n 0000 | fearful expectation or anticipation; "the student looked around the examination room with apprehension" -07522043 12 n 01 trepidation 0 001 @ 07521674 n 0000 | a feeling of alarm or dread -07522128 12 n 04 foreboding 0 premonition 0 presentiment 0 boding 0 004 @ 07521674 n 0000 + 00917772 v 0105 ~ 07522418 n 0000 ~ 07522536 n 0000 | a feeling of evil to come; "a steadily escalating sense of foreboding"; "the lawyer had a presentiment that the judge would dismiss the case" -07522418 12 n 01 shadow 0 001 @ 07522128 n 0000 | a premonition of something adverse; "a shadow over his happiness" -07522536 12 n 01 presage 0 001 @ 07522128 n 0000 | a foreboding about what is about to happen -07522632 12 n 01 suspense 2 001 @ 07521674 n 0000 | apprehension about what is going to happen -07522729 12 n 03 timidity 0 timidness 0 timorousness 0 009 @ 07519253 n 0000 + 00265989 a 0303 + 00265989 a 0203 + 00251809 a 0201 + 00251809 a 0101 + 00339941 a 0203 ~ 07523016 n 0000 ~ 07523180 n 0000 ~ 07523286 n 0000 | fear of the unknown or unfamiliar or fear of making decisions -07523016 12 n 01 cold_feet 0 001 @ 07522729 n 0000 | timidity that prevents the continuation of a course of action; "I was going to tell him but I got cold feet" -07523180 12 n 01 shyness 0 002 @ 07522729 n 0000 + 00339941 a 0102 | a feeling of fear of embarrassment -07523286 12 n 03 diffidence 0 self-doubt 0 self-distrust 0 006 @ 07522729 n 0000 + 01987856 a 0101 ! 07526505 n 0101 + 00339941 a 0101 ~ 07523485 n 0000 ~ 07523649 n 0000 | lack of self-confidence -07523485 12 n 02 hesitance 0 hesitancy 0 003 @ 07523286 n 0000 + 00686573 a 0201 + 00686573 a 0101 | a feeling of diffidence and indecision about doing something -07523649 12 n 01 unassertiveness 0 002 @ 07523286 n 0000 + 00156839 a 0101 | diffidence about self promotion -07523760 12 n 01 intimidation 0 002 @ 07519253 n 0000 + 01781180 v 0101 | the feeling of being intimidated; being made to feel afraid or timid -07523905 12 n 01 anxiety 0 011 @ 07480068 n 0000 ~ 07508232 n 0000 ~ 07524242 n 0000 ~ 07524529 n 0000 ~ 07524760 n 0000 ~ 07524918 n 0000 ~ 07525057 n 0000 ~ 07525367 n 0000 ~ 07525555 n 0000 ~ 07525760 n 0000 ~ 07526002 n 0000 | a vague unpleasant emotion that is experienced in anticipation of some (usually ill-defined) misfortune -07524242 12 n 02 worry 0 trouble 3 005 @ 07523905 n 0000 + 01764171 v 0204 + 01770501 v 0203 + 01766748 v 0101 + 01767163 v 0101 | a strong feeling of anxiety; "his worry over the prospect of being fired"; "it is not work but worry that kills"; "he wanted to die and end his troubles" -07524529 12 n 03 concern 1 care 1 fear 1 005 @ 07523905 n 0000 + 01780434 v 0301 + 01780729 v 0301 + 01766748 v 0202 + 02678438 v 0101 | an anxious feeling; "care had aged him"; "they hushed it up out of fear of public reaction" -07524760 12 n 02 anxiousness 0 disquiet 0 003 @ 07523905 n 0000 + 01764171 v 0203 + 02456157 a 0101 | a feeling of mild anxiety about possible developments -07524918 12 n 01 insecurity 0 002 @ 07523905 n 0000 + 02093493 a 0101 | the anxiety you experience when you feel vulnerable and insecure -07525057 12 n 04 edginess 0 uneasiness 2 inquietude 0 disquietude 0 004 @ 07523905 n 0000 + 00822449 a 0201 + 02406370 a 0101 ~ 07525259 n 0000 | feelings of anxiety that make you tense and irritable -07525259 12 n 01 willies 0 001 @ 07525057 n 0000 | feelings of uneasiness; "that guy gave me the willies" -07525367 12 n 02 sinking 0 sinking_feeling 0 001 @ 07523905 n 0000 | a feeling caused by uneasiness or apprehension; "with a sinking heart"; "a sinking feeling in the pit of my stomach" -07525555 12 n 03 scruple 0 qualm 0 misgiving 0 006 @ 07523905 n 0000 + 00733454 v 0301 + 02085449 a 0101 + 00925372 v 0101 + 01794195 v 0101 + 02641298 v 0101 | uneasiness about the fitness of an action -07525760 12 n 04 jitteriness 0 jumpiness 0 nervousness 0 restiveness 0 006 @ 07523905 n 0000 + 02406370 a 0408 + 02456157 a 0302 + 00919813 a 0302 + 02406370 a 0205 + 02406370 a 0104 | the anxious feeling you have when you have the jitters -07526002 12 n 01 angst 0 001 @ 07523905 n 0000 | an acute but unspecific feeling of anxiety; usually reserved for philosophical anxiety about the world or about personal freedom -07526182 12 n 02 fearlessness 0 bravery 0 005 @ 00026192 n 0000 + 00250119 a 0104 ! 07519253 n 0101 + 00081671 a 0102 ~ 07526338 n 0000 | feeling no fear -07526338 12 n 01 security 0 003 @ 07526182 n 0000 + 02093305 a 0101 ~ 07526505 n 0000 | freedom from anxiety or fear; "the watch dog gave her a feeling of security" -07526505 12 n 01 confidence 0 005 @ 07526338 n 0000 + 00452605 a 0101 ! 07523286 n 0101 = 00338817 a 0000 = 00339941 a 0000 | a feeling of trust (in someone or something); "I have confidence in our team"; "confidence is always borrowed, never owned" -07526757 12 n 01 happiness 0 012 @ 00026192 n 0000 + 01148283 a 0101 ! 07532440 n 0101 = 01148283 a 0000 = 01149494 a 0000 ~ 07527061 n 0000 ~ 07527167 n 0000 ~ 07529245 n 0000 ~ 07529563 n 0000 ~ 07529817 n 0000 ~ 07530478 n 0000 ~ 07531105 n 0000 | emotions experienced when in a state of well-being -07527061 12 n 01 bonheur 0 002 @ 07526757 n 0000 ;r 08929922 n 0000 | (French) happiness and good humor -07527167 12 n 03 gladness 0 gladfulness 0 gladsomeness 0 005 @ 07526757 n 0000 + 01361705 a 0301 + 01146920 a 0101 + 00362892 a 0102 + 01361414 a 0101 | experiencing joy and pleasure -07527352 12 n 03 joy 0 joyousness 0 joyfulness 0 012 @ 07480068 n 0000 + 01367211 a 0303 + 01363613 a 0301 + 01366718 a 0201 + 01366718 a 0101 + 01813499 v 0102 + 01813884 v 0102 ! 07534430 n 0101 ~ 07527656 n 0000 ~ 07527817 n 0000 ~ 07528212 n 0000 ~ 07555647 n 0000 | the emotion of great happiness -07527656 12 n 03 elation 0 high_spirits 0 lightness 0 004 @ 07527352 n 0000 + 01190316 a 0301 + 01811736 v 0101 ~ 07529096 n 0000 | a feeling of joy and pride -07527817 12 n 04 exultation 0 jubilance 0 jubilancy 0 jubilation 0 010 @ 07527352 n 0000 + 00857923 v 0405 + 01367211 a 0304 + 00704898 a 0303 + 00857923 v 0305 + 01367211 a 0204 + 00704898 a 0203 + 00857923 v 0205 + 01813668 v 0101 ~ 07528097 n 0000 | a feeling of extreme joy -07528097 12 n 01 triumph 0 003 @ 07527817 n 0000 + 00704898 a 0106 + 01823370 v 0103 | the exultation of victory -07528212 12 n 02 exhilaration 0 excitement 0 006 @ 07527352 n 0000 + 01772960 v 0201 + 01812324 v 0101 ~ 07528470 n 0000 ~ 07528807 n 0000 ~ 07528976 n 0000 | the feeling of lively and cheerful joy; "he could hardly conceal his excitement when she agreed" -07528470 12 n 07 bang 0 boot 0 charge 0 rush 0 flush 0 thrill 0 kick 0 005 @ 07528212 n 0000 + 01812324 v 0604 + 01796346 v 0601 + 02117333 v 0601 + 01762528 v 0304 | the swift release of a store of affective force; "they got a great bang out of it"; "what a boot!"; "he got a quick rush from injecting heroin"; "he does it for kicks" -07528807 12 n 01 intoxication 0 002 @ 07528212 n 0000 + 01811736 v 0105 | excitement and elation beyond the bounds of sobriety; "the intoxication of wealth and power" -07528976 12 n 01 titillation 0 001 @ 07528212 n 0000 | a tingling feeling of excitement (as from teasing or tickling) -07529096 12 n 02 euphoria 0 euphory 0 003 @ 07527656 n 0000 + 00908929 a 0201 ! 07539367 n 0101 | a feeling of great (usually exaggerated) elation -07529245 12 n 02 gaiety 0 merriment 0 004 @ 07526757 n 0000 ~ 07529377 n 0000 ~ 07529683 n 0000 ~ 07551890 n 0000 | a gay feeling -07529377 12 n 05 hilarity 0 mirth 0 mirthfulness 0 glee 0 gleefulness 0 005 @ 07529245 n 0000 + 01367211 a 0502 + 01367651 a 0306 + 01265308 a 0306 + 01266841 a 0101 | great merriment -07529563 12 n 01 rejoicing 0 003 @ 07526757 n 0000 + 01823370 v 0102 + 01813884 v 0101 | a feeling of great happiness -07529683 12 n 02 jocundity 0 jocularity 0 003 @ 07529245 n 0000 + 01267076 a 0203 + 01367651 a 0102 | a feeling facetious merriment -07529817 12 n 01 belonging 0 003 @ 07526757 n 0000 ~ 07530000 n 0000 ~ 07530124 n 0000 | happiness felt in a secure relationship; "with his classmates he felt a sense of belonging" -07530000 12 n 01 comfortableness 0 002 @ 07529817 n 0000 + 00479330 a 0101 | a feeling of being at ease in a relationship -07530124 12 n 02 closeness 0 intimacy 0 003 @ 07529817 n 0000 + 00451510 a 0101 ~ 07530322 n 0000 | a feeling of being intimate and belonging together; "their closeness grew as the night wore on" -07530322 12 n 01 togetherness 0 002 @ 07530124 n 0000 + 01586194 a 0101 | affectionate closeness; "togetherness is the new wonder ingredient in marriage" -07530478 12 n 02 cheerfulness 0 blitheness 0 006 @ 07526757 n 0000 + 01664015 a 0201 + 01664015 a 0101 ! 07537068 n 0101 ~ 07530723 n 0000 ~ 07530866 n 0000 | a feeling of spontaneous good spirits; "his cheerfulness made everyone feel better" -07530723 12 n 02 buoyancy 0 perkiness 0 003 @ 07530478 n 0000 + 00363621 a 0203 + 00363621 a 0101 | cheerfulness that bubbles to the surface -07530866 12 n 04 carefreeness 0 insouciance 0 lightheartedness 0 lightsomeness 0 005 @ 07530478 n 0000 + 00363291 a 0404 + 00363291 a 0303 + 00545746 a 0202 + 01998260 a 0101 | the cheerful feeling you have when nothing is troubling you -07531105 12 n 01 contentment 0 004 @ 07526757 n 0000 + 01194238 v 0101 ! 07538965 n 0101 ~ 07531255 n 0000 | happiness with one's situation in life -07531255 12 n 01 satisfaction 0 006 @ 07531105 n 0000 ! 07539511 n 0101 ~ 07531536 n 0000 ~ 07531713 n 0000 ~ 07532112 n 0000 ~ 07532276 n 0000 | the contentment one feels when one has fulfilled a desire, need, or expectation; "the chef tasted the sauce with great satisfaction" -07531536 12 n 01 pride 1 003 @ 07531255 n 0000 + 01772498 v 0101 ~ 04886790 n 0000 | satisfaction with your (or another's) achievements; "he takes pride in his son's success" -07531713 12 n 04 complacency 0 complacence 0 self-complacency 0 self-satisfaction 0 005 @ 07531255 n 0000 + 00589067 a 0303 + 00589067 a 0201 + 00589067 a 0101 ~ 07531998 n 0000 | the feeling you have when you are satisfied with yourself; "his complacency was absolutely disgusting" -07531998 12 n 01 smugness 0 002 @ 07531713 n 0000 + 00589448 a 0101 | an excessive feeling of self-satisfaction -07532112 12 n 02 fulfillment 0 fulfilment 0 003 @ 07531255 n 0000 + 01183573 v 0205 + 01183573 v 0104 | a feeling of satisfaction at having achieved your desires -07532276 12 n 03 gloat 0 gloating 0 glee 2 005 @ 07531255 n 0000 + 02166861 v 0201 + 00883635 v 0201 + 02166861 v 0101 + 00883635 v 0101 | malicious satisfaction -07532440 12 n 02 sadness 0 unhappiness 0 016 @ 00026192 n 0000 + 00909363 a 0203 + 01149494 a 0201 + 01361863 a 0101 ! 07526757 n 0101 ~ 07532832 n 0000 ~ 07532945 n 0000 ~ 07533097 n 0000 ~ 07533978 n 0000 ~ 07534108 n 0000 ~ 07534278 n 0000 ~ 07534430 n 0000 ~ 07535670 n 0000 ~ 07537068 n 0000 ~ 07537485 n 0000 ~ 07537668 n 0000 | emotions experienced when not in a state of well-being -07532832 12 n 01 dolefulness 0 002 @ 07532440 n 0000 + 01362387 a 0101 | sadness caused by grief or affliction -07532945 12 n 01 heaviness 0 002 @ 07532440 n 0000 + 01188762 a 0101 | persisting sadness; "nothing lifted the heaviness of her heart after her loss" -07533097 12 n 01 melancholy 0 005 @ 07532440 n 0000 ~ 07533257 n 0000 ~ 07533492 n 0000 ~ 07533607 n 0000 ~ 07533735 n 0000 | a feeling of thoughtful sadness -07533257 12 n 04 gloom 0 gloominess 0 somberness 0 sombreness 0 007 @ 07533097 n 0000 @ 07521674 n 0000 + 00365261 a 0402 + 00365261 a 0301 + 00365261 a 0402 + 00365261 a 0301 + 00703615 a 0201 | a feeling of melancholy apprehension -07533492 12 n 01 heavyheartedness 0 002 @ 07533097 n 0000 + 01362598 a 0101 | a feeling of dispirited melancholy -07533607 12 n 02 pensiveness 0 brooding 0 002 @ 07533097 n 0000 + 02419434 a 0106 | persistent morbid meditation on a problem -07533735 12 n 02 world-weariness 0 Weltschmerz 0 002 @ 07533097 n 0000 + 02432682 a 0102 | sadness on thinking about the evils of the world -07533877 12 n 02 woe 0 woefulness 0 002 @ 07535209 n 0000 + 01366525 a 0202 | intense mournfulness -07533978 12 n 01 misery 0 001 @ 07532440 n 0000 | a feeling of intense unhappiness; "she was exhausted by her misery and grief" -07534108 12 n 03 forlornness 0 loneliness 0 desolation 2 003 @ 07532440 n 0000 + 00614057 v 0303 + 00704360 a 0201 | sadness resulting from being forsaken or abandoned -07534278 12 n 02 weepiness 0 tearfulness 0 004 @ 07532440 n 0000 + 01365239 a 0204 + 02473141 a 0201 + 02473886 a 0101 | sadness expressed by weeping -07534430 12 n 01 sorrow 0 007 @ 07532440 n 0000 + 01797347 v 0102 ! 07527352 n 0101 ~ 07534847 n 0000 ~ 07535010 n 0000 ~ 07535209 n 0000 ~ 07538272 n 0000 | an emotion of great sadness associated with loss or bereavement; "he tried to express his sorrow at her loss" -07534700 12 n 03 attrition 0 contrition 0 contriteness 0 002 @ 07535670 n 0000 + 01743506 a 0301 | sorrow for sin arising from fear of damnation -07534847 12 n 01 broken_heart 0 001 @ 07534430 n 0000 | devastating sorrow and despair; "he is recovering from a broken heart"; "a broken heart languishes here" -07535010 12 n 04 grief 0 heartache 0 heartbreak 0 brokenheartedness 0 003 @ 07534430 n 0000 + 01365103 a 0401 ~ 07535532 n 0000 | intense sorrow caused by loss of a loved one (especially by death) -07535209 12 n 03 mournfulness 0 sorrowfulness 0 ruthfulness 0 007 @ 07534430 n 0000 + 01743506 a 0304 + 01364008 a 0201 + 01366157 a 0101 + 01362387 a 0102 ~ 07533877 n 0000 ~ 07535430 n 0000 | a state of gloomy sorrow -07535430 12 n 01 plaintiveness 0 002 @ 07535209 n 0000 + 01366157 a 0102 | expressing sorrowfulness -07535532 12 n 02 dolor 0 dolour 0 004 @ 07535010 n 0000 ;c 07092592 n 0000 + 01365239 a 0102 + 01365239 a 0101 | (poetry) painful grief -07535670 12 n 04 sorrow 1 regret 0 rue 0 ruefulness 0 009 @ 07532440 n 0000 + 01743506 a 0403 + 01796582 v 0303 + 00911562 v 0201 + 01796924 v 0201 + 01796582 v 0202 + 01797347 v 0102 ~ 07534700 n 0000 ~ 07536074 n 0000 | sadness associated with some wrong done or some disappointment; "he drank to drown his sorrows"; "he wrote a note expressing his regret"; "to his rue, the error cost him the game" -07536074 12 n 03 compunction 0 remorse 0 self-reproach 0 003 @ 07535670 n 0000 ~ 07536245 n 0000 ~ 07536870 n 0000 | a feeling of deep regret (usually for some misdeed) -07536245 12 n 04 guilt 0 guilty_conscience 0 guilt_feelings 0 guilt_trip 0 003 @ 07536074 n 0000 + 00154583 a 0101 ~ 07536437 n 0000 | remorse caused by feeling responsible for some offense -07536437 12 n 01 survivor_guilt 0 002 @ 07536245 n 0000 #p 14386130 n 0000 | a deep feeling of guilt often experienced by those who have survived some catastrophe that took the lives of many others; derives in part from a feeling that they did not do enough to save the others who perished and in part from feelings of being unworthy relative to those who died; "survivor guilt was first noted in those who survived the Holocaust" -07536870 12 n 03 repentance 0 penitence 0 penance 0 006 @ 07536074 n 0000 + 01743704 a 0201 + 01902980 a 0201 + 01743217 a 0201 + 01743217 a 0102 + 01796582 v 0101 | remorse for your past conduct -07537068 12 n 02 cheerlessness 0 uncheerfulness 0 005 @ 07532440 n 0000 + 00364479 a 0203 + 00364479 a 0102 ! 07530478 n 0101 ~ 07537376 n 0000 | a feeling of dreary or pessimistic sadness -07537259 12 n 02 chill 0 pall 0 003 @ 07521674 n 0000 + 01785748 v 0204 + 01818972 v 0101 | a sudden numbing dread -07537376 12 n 01 joylessness 0 002 @ 07537068 n 0000 + 01368192 a 0101 | a feeling of dismal cheerlessness -07537485 12 n 01 depression 0 006 @ 07532440 n 0000 ~ 07537973 n 0000 ~ 07538142 n 0000 ~ 07538395 n 0000 ~ 07538674 n 0000 ~ 07539367 n 0000 | sad feelings of gloom and inadequacy -07537668 12 n 05 downheartedness 0 dejectedness 0 low-spiritedness 0 lowness 0 dispiritedness 0 007 @ 07532440 n 0000 + 02281938 a 0501 + 00703615 a 0505 + 01893303 a 0405 + 00703615 a 040a + 00703615 a 030b + 00703615 a 0108 | a feeling of low spirits; "he felt responsible for her lowness of spirits" -07537973 12 n 02 demoralization 0 demoralisation 0 003 @ 07537485 n 0000 + 01814396 v 0208 + 01814396 v 0107 | depression resulting from an undermining of your morale -07538142 12 n 01 helplessness 0 003 @ 07537485 n 0000 + 01230616 a 0101 + 00726317 a 0101 | a feeling of being unable to manage -07538272 12 n 01 self-pity 0 001 @ 07534430 n 0000 | a feeling of sorrow (often self-indulgent) over your own sufferings -07538395 12 n 04 despondency 0 despondence 0 heartsickness 0 disconsolateness 0 008 @ 07537485 n 0000 + 01232298 a 0402 + 01365103 a 0303 + 01230153 a 0302 + 01230153 a 0201 + 01811172 v 0201 + 01230153 a 0101 + 01811172 v 0101 | feeling downcast and disheartened and hopeless -07538674 12 n 02 oppression 0 oppressiveness 0 003 @ 07537485 n 0000 + 00788474 a 0201 ~ 07538812 n 0000 | a feeling of being oppressed -07538812 12 n 01 weight 0 002 @ 07538674 n 0000 + 01190168 a 0101 | an oppressive feeling of heavy force; "bowed down by the weight of responsibility" -07538965 12 n 03 discontentment 0 discontent 0 discontentedness 0 009 @ 07486628 n 0000 + 00589624 a 0301 + 00589624 a 0202 + 01816983 v 0201 + 01816983 v 0101 ! 07531105 n 0101 ~ 07539259 n 0000 ~ 07539367 n 0000 ~ 07539511 n 0000 | a longing for something better than the present situation -07539259 12 n 01 disgruntlement 0 002 @ 07538965 n 0000 + 01830600 v 0101 | a feeling of sulky discontent -07539367 12 n 01 dysphoria 0 004 @ 07538965 n 0000 @ 07537485 n 0000 + 00909363 a 0101 ! 07529096 n 0101 | abnormal depression and discontent -07539511 12 n 01 dissatisfaction 0 006 @ 07538965 n 0000 + 01816645 v 0101 ! 07531255 n 0101 ~ 07539790 n 0000 ~ 07540424 n 0000 ~ 07540602 n 0000 | the feeling of being displeased and discontent; "he was never slow to express his dissatisfaction with the service he received" -07539790 12 n 03 boredom 0 ennui 0 tedium 0 004 @ 07539511 n 0000 + 01345307 a 0307 ~ 07539962 n 0000 ~ 07540081 n 0000 | the feeling of being bored by something tedious -07539962 12 n 01 blahs 0 002 @ 07539790 n 0000 ;u 07075172 n 0000 | a general feeling of boredom and dissatisfaction -07540081 12 n 01 fatigue 0 002 @ 07539790 n 0000 + 00076114 v 0104 | (always used with a modifier) boredom resulting from overexposure to something; "he was suffering from museum fatigue"; "after watching TV with her husband she had a bad case of football fatigue"; "the American public is experiencing scandal fatigue"; "political fatigue" -07540424 12 n 01 displeasure 0 003 @ 07539511 n 0000 @ 07518261 n 0000 + 01817130 v 0101 | the feeling of being displeased or annoyed or dissatisfied with someone or something -07540602 12 n 02 disappointment 0 letdown 0 004 @ 07539511 n 0000 + 01798936 v 0202 + 01798936 v 0101 ~ 07540866 n 0000 | a feeling of dissatisfaction that results when your expectations are not realized; "his hopes were so high he was doomed to disappointment" -07540866 12 n 02 frustration 0 defeat 0 003 @ 07540602 n 0000 + 09999795 n 0201 + 02558172 v 0107 | the feeling that accompanies an experience of being thwarted in attaining your goals -07541053 12 n 01 hope 0 007 @ 00026192 n 0000 + 01811441 v 0101 + 01826723 v 0101 ! 07541923 n 0101 ~ 07541316 n 0000 ~ 07541449 n 0000 ~ 07541558 n 0000 | the general feeling that some desire will be fulfilled; "in spite of his troubles he never gave up hope" -07541316 12 n 01 hopefulness 0 003 @ 07541053 n 0000 + 01228530 a 0101 ! 07542249 n 0101 | the feeling you have when you have hope -07541449 12 n 01 encouragement 0 002 @ 07541053 n 0000 + 01818235 v 0101 | the feeling of being encouraged -07541558 12 n 01 optimism 0 006 @ 07541053 n 0000 + 01817908 a 0102 + 01663571 a 0101 + 10380126 n 0101 ! 07543033 n 0101 ~ 07541760 n 0000 | the optimistic feeling that all is going to turn out well -07541760 12 n 02 sanguinity 0 sanguineness 0 003 @ 07541558 n 0000 + 01664455 a 0201 + 01664455 a 0101 | feeling sanguine; optimistically cheerful and confident -07541923 12 n 01 despair 0 007 @ 00026192 n 0000 + 01810933 v 0101 ! 07541053 n 0101 ~ 07542249 n 0000 ~ 07542433 n 0000 ~ 07542675 n 0000 ~ 07543033 n 0000 | the feeling that everything is wrong and nothing will turn out well; "they moaned in despair and dismay"; "one harsh word would send her into the depths of despair" -07542249 12 n 01 hopelessness 0 004 @ 07541923 n 0000 + 02229812 a 0101 + 01229020 a 0101 ! 07541316 n 0101 | the despair you feel when you have abandoned hope of comfort or success -07542433 12 n 02 resignation 0 surrender 0 003 @ 07541923 n 0000 + 00732394 v 0101 ~ 07542560 n 0000 | acceptance of despair -07542560 12 n 01 defeatism 0 002 @ 07542433 n 0000 + 09999795 n 0101 | acceptance of the inevitability of defeat -07542675 12 n 03 discouragement 2 disheartenment 0 dismay 2 005 @ 07541923 n 0000 + 01814396 v 0305 + 01819387 v 0201 + 01819147 v 0101 ~ 07542881 n 0000 | the feeling of despair in the face of obstacles -07542881 12 n 01 intimidation 1 001 @ 07542675 n 0000 | the feeling of discouragement in the face of someone's superior fame or wealth or status etc. -07543033 12 n 01 pessimism 0 005 @ 07541923 n 0000 + 01664581 a 0101 + 10419472 n 0101 ! 07541558 n 0101 ~ 07543204 n 0000 | the feeling that things will turn out badly -07543204 12 n 01 cynicism 0 001 @ 07543033 n 0000 | a cynical feeling of distrust -07543288 12 n 01 love 0 017 @ 07480068 n 0000 + 01775535 v 0101 + 01828736 v 0101 + 01775164 v 0101 ! 07546465 n 0101 ~ 07501420 n 0000 ~ 07543732 n 0000 ~ 07543910 n 0000 ~ 07544039 n 0000 ~ 07544129 n 0000 ~ 07544213 n 0000 ~ 07544351 n 0000 ~ 07544491 n 0000 ~ 07545717 n 0000 ~ 07545957 n 0000 ~ 07546125 n 0000 ~ 07546389 n 0000 | a strong positive emotion of regard and affection; "his love for his work"; "children need a lot of love" -07543732 12 n 02 agape 0 agape_love 0 001 @ 07543288 n 0000 | selfless love of one person for another without sexual implications (especially love that is spiritual in nature) -07543910 12 n 01 agape 1 002 @ 07543288 n 0000 ;c 06184270 n 0000 | (Christian theology) the love of God or Christ for mankind -07544039 12 n 01 filial_love 0 001 @ 07543288 n 0000 | the love of a child for a parent -07544129 12 n 02 ardor 0 ardour 0 001 @ 07543288 n 0000 | intense feeling of love -07544213 12 n 02 amorousness 1 enamoredness 0 003 @ 07543288 n 0000 + 01465668 a 0201 + 01465061 a 0102 | a feeling of love or fondness -07544351 12 n 04 puppy_love 0 calf_love 0 crush 0 infatuation 2 002 @ 07543288 n 0000 + 01760677 v 0401 | temporary love of an adolescent -07544491 12 n 02 devotion 0 devotedness 0 002 @ 07543288 n 0000 + 00519668 a 0201 | feelings of ardent love; "their devotion to each other was beautiful" -07544647 12 n 08 affection 0 affectionateness 0 fondness 0 tenderness 1 heart 4 warmness 0 warmheartedness 0 philia 0 012 @ 00026192 n 0000 + 02533313 a 0701 + 01464700 a 0605 + 02530861 a 0601 + 02531243 a 0501 + 01464700 a 0404 + 01464700 a 0302 + 01464700 a 0201 ~ 07545161 n 0000 ~ 07545303 n 0000 ~ 07545415 n 0000 ~ 07545594 n 0000 | a positive feeling of liking; "he had trouble expressing the affection he felt"; "the child won everyone's heart"; "the warmness of his welcome made us feel right at home" -07545161 12 n 02 attachment 0 fond_regard 0 002 @ 07544647 n 0000 + 02538086 v 0103 | a feeling of affection for a person or an institution -07545303 12 n 01 protectiveness 0 002 @ 07544647 n 0000 + 02449177 a 0101 | a feeling of protective affection -07545415 12 n 02 regard 2 respect 0 002 @ 07544647 n 0000 + 02457233 v 0201 | a feeling of friendship and esteem; "she mistook his manly regard for love"; "he inspires respect" -07545594 12 n 01 soft_spot 0 001 @ 07544647 n 0000 | a sentimental affection; "she had a soft spot for her youngest son" -07545717 12 n 01 benevolence 0 003 @ 07543288 n 0000 ! 07550369 n 0101 ~ 07545833 n 0000 | disposition to do good -07545833 12 n 01 beneficence 0 003 @ 07545717 n 0000 + 00223802 a 0101 ! 07550551 n 0101 | doing good; feeling beneficent -07545957 12 n 01 heartstrings 0 002 @ 07543288 n 0000 @ 07553741 n 0000 | your deepest feelings of love and compassion; "many adoption cases tug at the heartstrings" -07546125 12 n 02 lovingness 0 caring 1 005 @ 07543288 n 0000 + 00506601 a 0201 + 01822936 v 0201 + 01463965 a 0101 ~ 07546279 n 0000 | a loving feeling -07546279 12 n 02 warmheartedness 1 warmth 0 002 @ 07546125 n 0000 + 02533313 a 0101 | a warmhearted feeling -07546389 12 n 01 loyalty 0 001 @ 07543288 n 0000 | feelings of allegiance -07546465 12 n 02 hate 0 hatred 0 014 @ 07480068 n 0000 + 01774136 v 0101 ! 07543288 n 0101 ~ 07503430 n 0000 ~ 07546844 n 0000 ~ 07546973 n 0000 ~ 07547064 n 0000 ~ 07547219 n 0000 ~ 07547293 n 0000 ~ 07547473 n 0000 ~ 07547547 n 0000 ~ 07547674 n 0000 ~ 07547805 n 0000 ~ 07550369 n 0000 | the emotion of intense dislike; a feeling of dislike so strong that it demands action -07546844 12 n 01 misanthropy 0 004 @ 07546465 n 0000 + 01138161 a 0101 + 01138161 a 0102 + 10321882 n 0102 | hatred of mankind -07546973 12 n 01 misogamy 0 002 @ 07546465 n 0000 + 10322546 n 0101 | hatred of marriage -07547064 12 n 02 misogyny 0 misogynism 0 005 @ 07546465 n 0000 + 02464491 a 0101 + 01138316 a 0101 ! 07501326 n 0101 + 10322648 n 0101 | hatred of women -07547219 12 n 01 misology 0 001 @ 07546465 n 0000 | hatred of reasoning -07547293 12 n 01 misoneism 0 002 @ 07546465 n 0000 ~ 07547397 n 0000 | hatred of change or innovation -07547397 12 n 01 misocainea 0 001 @ 07547293 n 0000 | hatred of new ideas -07547473 12 n 01 misopedia 0 001 @ 07546465 n 0000 | hatred of children -07547547 12 n 01 murderousness 0 002 @ 07546465 n 0000 + 00248837 a 0102 | a bloodthirsty hatred arousing murderous impulses -07547674 12 n 02 despisal 0 despising 0 003 @ 07546465 n 0000 + 01774799 v 0202 + 01774799 v 0102 | a feeling of scornful hatred -07547805 12 n 03 hostility 0 enmity 0 ill_will 0 009 @ 07546465 n 0000 + 01246388 a 0202 + 01244410 a 0101 ~ 07548100 n 0000 ~ 07548224 n 0000 ~ 07548366 n 0000 ~ 07548567 n 0000 ~ 07548695 n 0000 ~ 07548978 n 0000 | the feeling of a hostile person; "he could no longer contain his hostility" -07548100 12 n 03 animosity 0 animus 0 bad_blood 0 001 @ 07547805 n 0000 | a feeling of ill will arousing active hostility -07548224 12 n 01 class_feeling 0 001 @ 07547805 n 0000 | feelings of envy and resentment of one social or economic class for toward another -07548366 12 n 01 antagonism 2 006 @ 07547805 n 0000 @ 07501545 n 0000 + 00760577 a 0101 + 09773245 n 0102 + 01807314 v 0101 + 01807314 v 0102 | an actively expressed feeling of dislike and hostility -07548567 12 n 02 aggression 0 aggressiveness 0 001 @ 07547805 n 0000 | a feeling of hostility that arouses thoughts of attack -07548695 12 n 02 belligerence 0 belligerency 0 004 @ 07547805 n 0000 + 01244846 a 0202 + 01244846 a 0102 ~ 07548860 n 0000 | hostile or warlike attitude or nature -07548860 12 n 01 warpath 0 001 @ 07548695 n 0000 | hostile or belligerent mood; "the chief is on the warpath today" -07548978 12 n 05 resentment 0 bitterness 0 gall 0 rancor 0 rancour 0 009 @ 07547805 n 0000 + 00116940 a 0401 + 01786760 v 0301 + 01245610 a 0201 + 01773346 v 0101 ~ 07549265 n 0000 ~ 07549401 n 0000 ~ 07549536 n 0000 ~ 07549716 n 0000 | a feeling of deep and bitter anger and ill-will -07549265 12 n 01 heartburning 0 001 @ 07548978 n 0000 | intense resentment; "his promotion caused much heartburning among his rivals" -07549401 12 n 02 sulkiness 0 huffishness 0 003 @ 07548978 n 0000 + 01137994 a 0201 + 01137994 a 0102 | a feeling of sulky resentment -07549536 12 n 03 grudge 0 score 0 grievance 0 002 @ 07548978 n 0000 + 01774005 v 0102 | a resentment strong enough to justify retaliation; "holding a grudge"; "settling a score" -07549716 12 n 02 envy 0 enviousness 0 007 @ 07548978 n 0000 + 00888765 a 0202 + 01827619 v 0101 + 01827064 v 0101 ~ 07549979 n 0000 ~ 07550079 n 0000 ~ 07550204 n 0000 | a feeling of grudging admiration and desire to have something that is possessed by another -07549979 12 n 01 covetousness 1 001 @ 07549716 n 0000 | an envious eagerness to possess something -07550079 12 n 02 jealousy 0 green-eyed_monster 0 001 @ 07549716 n 0000 | a feeling of jealous envy (especially of a rival) -07550204 12 n 01 penis_envy 0 002 @ 07549716 n 0000 ;c 00704305 n 0000 | (psychoanalysis) a female's presumed envy of the male's penis; said to explain femininity -07550369 12 n 02 malevolence 0 malignity 0 006 @ 07546465 n 0000 + 00225564 a 0101 ! 07545717 n 0101 ~ 07550551 n 0000 ~ 07550666 n 0000 ~ 07550891 n 0000 | wishing evil to others -07550551 12 n 01 maleficence 0 003 @ 07550369 n 0000 + 00224166 a 0101 ! 07545833 n 0101 | doing or causing evil -07550666 12 n 05 malice 0 maliciousness 0 spite 0 spitefulness 0 venom 0 006 @ 07550369 n 0000 + 00226105 a 0502 + 00225099 a 0402 + 01793177 v 0306 + 00224731 a 0201 + 00224731 a 0101 | feeling a need to see others suffer -07550891 12 n 02 vindictiveness 0 vengefulness 0 004 @ 07550369 n 0000 + 01041634 a 0203 + 01041634 a 0102 + 00225099 a 0103 | a malevolent desire for revenge -07551052 12 n 04 temper 0 mood 0 humor 0 humour 0 008 @ 00026192 n 0000 + 00859604 v 0402 + 00859604 v 0301 + 00856325 a 0201 ~ 07551418 n 0000 ~ 07551498 n 0000 ~ 07551691 n 0000 ~ 07552087 n 0000 | a characteristic (habitual or relatively temporary) state of feeling; "whether he praised or cursed me depended on his temper at the time"; "he was in a bad humor" -07551418 12 n 01 peeve 0 001 @ 07551052 n 0000 | an annoyed or irritated mood -07551498 12 n 02 sulk 0 sulkiness 1 004 @ 07551052 n 0000 + 01137994 a 0202 + 01137994 a 0102 + 02719016 v 0101 | a mood or display of sullen aloofness or withdrawal; "stayed home in a sulk" -07551691 12 n 04 good_humor 0 good_humour 0 good_temper 0 amiability 0 005 @ 07551052 n 0000 + 01134232 a 0401 + 01075178 a 0402 ! 07552087 n 0101 ~ 07551890 n 0000 | a cheerful and agreeable mood -07551890 12 n 03 jollity 0 jolliness 0 joviality 0 005 @ 07551691 n 0000 @ 07529245 n 0000 + 01367651 a 0304 + 01367651 a 0203 + 01367651 a 0103 | feeling jolly and jovial and full of good humor -07552087 12 n 03 ill_humor 0 ill_humour 0 distemper 0 004 @ 07551052 n 0000 ! 07551691 n 0101 ~ 07552252 n 0000 ~ 07552729 n 0000 | an angry and disagreeable mood -07552252 12 n 01 moodiness 0 003 @ 07552087 n 0000 + 01137378 a 0105 ~ 07552367 n 0000 | a sullen gloomy feeling -07552367 12 n 03 moroseness 0 glumness 0 sullenness 0 005 @ 07552252 n 0000 + 00462409 a 0303 + 01137378 a 0204 + 00704270 a 0201 + 01137378 a 0106 | a gloomy ill-tempered feeling -07552549 12 n 04 irascibility 0 short_temper 0 spleen 0 quick_temper 0 004 @ 07518132 n 0000 + 01135420 a 0303 + 01135914 a 0102 + 00114921 a 0102 | a feeling of resentful anger -07552729 12 n 07 irritability 0 crossness 0 fretfulness 0 fussiness 0 peevishness 0 petulance 0 choler 2 008 @ 07552087 n 0000 + 01136541 a 0608 + 01136541 a 0505 + 01136248 a 0404 + 00513981 a 0301 + 01136541 a 0103 ~ 07553016 n 0000 ~ 07553176 n 0000 | an irritable petulant feeling -07553016 12 n 03 testiness 0 touchiness 1 tetchiness 0 004 @ 07552729 n 0000 + 01136541 a 030b + 02106509 a 0204 + 01136541 a 010a | feeling easily irritated -07553176 12 n 01 pet 0 001 @ 07552729 n 0000 | a fit of petulance or sulkiness (especially at what is felt to be a slight) -07553301 12 n 02 sympathy 0 fellow_feeling 0 009 @ 00026192 n 0000 + 02374914 a 0101 + 01822248 v 0102 ~ 07504841 n 0000 ~ 07553590 n 0000 ~ 07553741 n 0000 ~ 07553964 n 0000 ~ 07554758 n 0000 ~ 07554856 n 0000 | sharing the feelings of others (especially feelings of sorrow or anguish) -07553590 12 n 02 kindheartedness 0 kind-heartedness 0 003 @ 07553301 n 0000 + 01373545 a 0101 ~ 07554224 n 0000 | sympathy arising from a kind heart -07553741 12 n 02 compassion 0 compassionateness 0 006 @ 07553301 n 0000 + 00506299 a 0201 + 01821996 v 0103 ~ 07545957 n 0000 ~ 07554342 n 0000 ~ 07554500 n 0000 | a deep awareness of and sympathy for another's suffering -07553964 12 n 04 commiseration 0 pity 0 ruth 0 pathos 0 005 @ 07553301 n 0000 + 01050890 a 0404 + 01050890 a 0205 + 01821996 v 0202 + 01822248 v 0101 | a feeling of sympathy and sorrow for the misfortunes of others; "the blind are too often objects of pity" -07554224 12 n 01 mellowness 0 002 @ 07553590 n 0000 + 01492061 a 0101 | kindheartedness through maturity or old age -07554342 12 n 02 tenderness 3 tenderheartedness 0 004 @ 07553741 n 0000 + 01466207 a 0201 + 00506852 a 0201 + 02448889 a 0101 | warm compassionate feelings -07554500 12 n 02 mercifulness 0 mercy 0 003 @ 07553741 n 0000 + 01507134 a 0101 ~ 07554640 n 0000 | the feeling that motivates compassion -07554640 12 n 01 forgiveness 0 001 @ 07554500 n 0000 | compassionate feelings that support a willingness to forgive -07554758 12 n 01 compatibility 0 001 @ 07553301 n 0000 | a feeling of sympathetic understanding -07554856 12 n 01 empathy 0 004 @ 07553301 n 0000 + 02375639 a 0102 + 00594058 v 0103 + 00594058 v 0104 | understanding and entering into another's feelings -07555014 12 n 01 enthusiasm 0 006 @ 00026192 n 0000 + 00885695 a 0101 ~ 07491981 n 0000 ~ 07555184 n 0000 ~ 07555647 n 0000 ~ 07555775 n 0000 | a feeling of excitement -07555184 12 n 04 eagerness 0 avidity 1 avidness 0 keenness 0 005 @ 07555014 n 0000 + 00886253 a 0301 + 00886253 a 0201 + 00810916 a 0101 ~ 07555402 n 0000 | a positive feeling of wanting to push ahead with something -07555402 12 n 04 ardor 1 ardour 1 elan 0 zeal 1 002 @ 07555184 n 0000 + 00886253 a 0402 | a feeling of strong eagerness (usually in favor of a person or cause); "they were imbued with a revolutionary ardor"; "he felt a kind of religious zeal" -07555647 12 n 01 exuberance 0 004 @ 07555014 n 0000 @ 07527352 n 0000 + 02279723 a 0102 + 00857923 v 0101 | joyful enthusiasm -07555775 12 n 01 technophilia 0 001 @ 07555014 n 0000 | enthusiasm for new technology -07555863 13 n 02 food 0 solid_food 0 022 @ 15046900 n 0000 #p 00021265 n 0000 ~ 07563509 n 0000 ~ 07572712 n 0000 ~ 07593549 n 0000 ~ 07601999 n 0000 ~ 07622061 n 0000 ~ 07649582 n 0000 ~ 07649854 n 0000 ~ 07698915 n 0000 ~ 07702362 n 0000 ~ 07702509 n 0000 ~ 07702642 n 0000 ~ 07705711 n 0000 ~ 07773238 n 0000 ~ 07773827 n 0000 ~ 07775375 n 0000 ~ 07776866 n 0000 ~ 07848338 n 0000 ~ 07849336 n 0000 ~ 07850329 n 0000 ~ 07938427 n 0000 | any solid substance (as opposed to liquid) that is used as a source of nourishment; "food and drink" -07556406 13 n 01 comfort_food 0 001 @ 00021265 n 0000 | food that is simply prepared and gives a sense of wellbeing; typically food with a high sugar or carbohydrate content that is associated with childhood or with home cooking -07556637 13 n 06 comestible 0 edible 0 eatable 0 pabulum 0 victual 0 victuals 0 006 @ 00021265 n 0000 + 01167188 v 0501 + 02281485 v 0501 + 02332999 v 0501 + 00828779 a 0102 ~ 07556872 n 0000 | any substance that can be used as food -07556872 13 n 01 tuck 0 002 @ 07556637 n 0000 ;r 08860123 n 0000 | eatables (especially sweets) -07556970 13 n 01 course 0 005 @ 07570720 n 0000 #p 07573696 n 0000 ~ 07579575 n 0000 ~ 07581346 n 0000 ~ 07609840 n 0000 | part of a meal served at one time; "she prepared a three course meal" -07557165 13 n 05 dainty 0 delicacy 0 goody 0 kickshaw 0 treat 0 009 @ 07570720 n 0000 + 01176232 v 0502 + 02396578 a 0101 ~ 07594737 n 0000 ~ 07594840 n 0000 ~ 07596684 n 0000 ~ 07610295 n 0000 ~ 07643981 n 0000 ~ 07873057 n 0000 | something considered choice to eat -07557434 13 n 01 dish 0 147 @ 07570720 n 0000 #p 07573696 n 0000 + 01180351 v 0105 ~ 07579688 n 0000 ~ 07579917 n 0000 ~ 07580053 n 0000 ~ 07580253 n 0000 ~ 07580359 n 0000 ~ 07583197 n 0000 ~ 07588947 n 0000 ~ 07591961 n 0000 ~ 07593471 n 0000 ~ 07611839 n 0000 ~ 07617188 n 0000 ~ 07619004 n 0000 %p 07621776 n 0000 ~ 07624466 n 0000 ~ 07625324 n 0000 ~ 07642361 n 0000 ~ 07648913 n 0000 ~ 07648997 n 0000 ~ 07654148 n 0000 ~ 07654298 n 0000 ~ 07655067 n 0000 ~ 07655263 n 0000 ~ 07663899 n 0000 ~ 07665438 n 0000 ~ 07666176 n 0000 ~ 07696403 n 0000 ~ 07712382 n 0000 ~ 07806221 n 0000 %p 07809096 n 0000 ~ 07823951 n 0000 ~ 07825850 n 0000 %p 07829412 n 0000 ~ 07841495 n 0000 ~ 07842202 n 0000 ~ 07842308 n 0000 ~ 07842433 n 0000 ~ 07842605 n 0000 ~ 07842753 n 0000 ~ 07843464 n 0000 ~ 07843636 n 0000 ~ 07861557 n 0000 ~ 07861681 n 0000 ~ 07861813 n 0000 ~ 07861983 n 0000 ~ 07862244 n 0000 ~ 07862348 n 0000 ~ 07862461 n 0000 ~ 07862611 n 0000 ~ 07862770 n 0000 ~ 07862946 n 0000 ~ 07863107 n 0000 ~ 07863229 n 0000 ~ 07863374 n 0000 ~ 07863644 n 0000 ~ 07863935 n 0000 ~ 07864065 n 0000 ~ 07864198 n 0000 ~ 07864317 n 0000 ~ 07864638 n 0000 ~ 07864756 n 0000 ~ 07864934 n 0000 ~ 07865196 n 0000 ~ 07865484 n 0000 ~ 07865700 n 0000 ~ 07865788 n 0000 ~ 07866015 n 0000 ~ 07866151 n 0000 ~ 07866277 n 0000 ~ 07866409 n 0000 ~ 07866723 n 0000 ~ 07866868 n 0000 ~ 07867021 n 0000 ~ 07867164 n 0000 ~ 07867324 n 0000 ~ 07867421 n 0000 ~ 07867883 n 0000 ~ 07868200 n 0000 ~ 07868340 n 0000 ~ 07868508 n 0000 ~ 07868684 n 0000 ~ 07868830 n 0000 ~ 07868955 n 0000 ~ 07869111 n 0000 ~ 07869291 n 0000 ~ 07869391 n 0000 ~ 07869611 n 0000 ~ 07869775 n 0000 ~ 07869937 n 0000 ~ 07870313 n 0000 ~ 07870894 n 0000 ~ 07871065 n 0000 ~ 07871335 n 0000 ~ 07871436 n 0000 ~ 07871810 n 0000 ~ 07872593 n 0000 ~ 07872748 n 0000 ~ 07873198 n 0000 ~ 07873464 n 0000 ~ 07873807 n 0000 ~ 07874531 n 0000 ~ 07874674 n 0000 ~ 07874780 n 0000 ~ 07875152 n 0000 ~ 07875267 n 0000 ~ 07875436 n 0000 ~ 07875560 n 0000 ~ 07875926 n 0000 ~ 07876026 n 0000 ~ 07876189 n 0000 ~ 07876281 n 0000 ~ 07876550 n 0000 ~ 07876651 n 0000 ~ 07876775 n 0000 ~ 07876893 n 0000 ~ 07877187 n 0000 ~ 07877299 n 0000 ~ 07877675 n 0000 ~ 07877849 n 0000 ~ 07877961 n 0000 ~ 07878145 n 0000 ~ 07878283 n 0000 ~ 07878479 n 0000 ~ 07878647 n 0000 ~ 07878785 n 0000 ~ 07878926 n 0000 ~ 07879072 n 0000 ~ 07879174 n 0000 ~ 07879350 n 0000 ~ 07879450 n 0000 ~ 07879560 n 0000 ~ 07879659 n 0000 ~ 07879821 n 0000 ~ 07879953 n 0000 ~ 07880080 n 0000 ~ 07880213 n 0000 ~ 07880325 n 0000 ~ 07880458 n 0000 ~ 07880751 n 0000 ~ 07880968 n 0000 ~ 07881404 n 0000 ~ 07881625 n 0000 ~ 07937461 n 0000 ~ 07937621 n 0000 ~ 07938594 n 0000 | a particular item of prepared food; "she prepared a special dish for dinner" -07560193 13 n 01 fast_food 0 001 @ 07570720 n 0000 | inexpensive food (hamburgers or chicken or milkshakes) prepared and served quickly -07560331 13 n 01 finger_food 0 001 @ 07570720 n 0000 | food to be eaten with the fingers -07560422 13 n 01 ingesta 0 001 @ 07570720 n 0000 | solid and liquid nourishment taken into the body through the mouth -07560542 13 n 01 kosher 0 001 @ 07570720 n 0000 | food that fulfills the requirements of Jewish dietary law -07560652 13 n 01 fare 0 009 @ 00021265 n 0000 + 01172969 v 0101 ~ 07560903 n 0000 ~ 07561112 n 0000 ~ 07561590 n 0000 ~ 07565083 n 0000 ~ 07565161 n 0000 ~ 07565259 n 0000 ~ 07565725 n 0000 | the food and drink that are regularly served or consumed -07560903 13 n 01 diet 1 006 @ 07560652 n 0000 ;c 00015388 n 0000 + 02846322 a 0101 + 02846322 a 0102 + 02846322 a 0103 + 10012484 n 0101 | the usual food and drink consumed by an organism (person or animal) -07561112 13 n 01 diet 0 023 @ 07560652 n 0000 + 02846322 a 0101 + 02846322 a 0102 + 02846322 a 0103 + 10012484 n 0101 + 01189224 v 0101 + 01190012 v 0101 ~ 07561730 n 0000 ~ 07561848 n 0000 ~ 07562017 n 0000 ~ 07562379 n 0000 ~ 07562495 n 0000 ~ 07562651 n 0000 ~ 07562984 n 0000 ~ 07563207 n 0000 ~ 07563366 n 0000 ~ 07563642 n 0000 ~ 07563800 n 0000 ~ 07564101 n 0000 ~ 07564292 n 0000 ~ 07564629 n 0000 ~ 07564796 n 0000 ~ 07564971 n 0000 | a prescribed selection of foods -07561590 13 n 01 dietary 0 004 @ 07560652 n 0000 + 02846322 a 0101 + 01190012 v 0101 + 01189224 v 0101 | a regulated daily food allowance -07561730 13 n 01 allergy_diet 0 001 @ 07561112 n 0000 | a diet designed to avoid the foods that you are allergic to -07561848 13 n 01 balanced_diet 0 001 @ 07561112 n 0000 | a diet that contains adequate amounts of all the necessary nutrients required for healthy growth and activity -07562017 13 n 02 bland_diet 0 ulcer_diet 0 001 @ 07561112 n 0000 | a diet of foods that are not irritating; "he ate a bland diet because of his colitis" -07562172 13 n 01 clear_liquid_diet 0 001 @ 07563800 n 0000 | a diet of fluids with minimal residues (fat-free broth or strained fruit juices or gelatin); cannot be used for more than one day postoperative -07562379 13 n 01 diabetic_diet 0 001 @ 07561112 n 0000 | a diet designed to help control the symptoms of diabetes -07562495 13 n 01 dietary_supplement 0 002 @ 07561112 n 0000 ~ 07938149 n 0000 | something added to complete a diet or to make up for a dietary deficiency -07562651 13 n 02 carbohydrate_loading 0 carbo_loading 0 001 @ 07561112 n 0000 | a diet of foods high in starch that increases carbohydrate reserves in muscles; "carbo loading is used by endurance athletes just before competing" -07562881 13 n 01 fad_diet 0 001 @ 07564629 n 0000 | a reducing diet that enjoys temporary popularity -07562984 13 n 01 gluten-free_diet 0 001 @ 07561112 n 0000 | diet prescribed to treat celiac disease; eliminates such foods as wheat and rye and oats and beans and cabbage and turnips and cucumbers that are rich in gluten -07563207 13 n 01 high-protein_diet 0 001 @ 07561112 n 0000 | a diet high in plant and animal proteins; used to treat malnutrition or to increase muscle mass -07563366 13 n 02 high-vitamin_diet 0 vitamin-deficiency_diet 0 001 @ 07561112 n 0000 | a diet designed to patients with vitamin deficiencies -07563509 13 n 01 leftovers 0 001 @ 07555863 n 0000 | food remaining from a previous meal; "he had leftovers for dinner last night" -07563642 13 n 01 light_diet 0 001 @ 07561112 n 0000 | diet prescribed for bedridden or convalescent people; does not include fried or highly seasoned foods -07563800 13 n 01 liquid_diet 0 002 @ 07561112 n 0000 ~ 07562172 n 0000 | a diet of foods that can be served in liquid or strained form (plus custards or puddings); prescribed after certain kinds of surgery -07564008 13 n 01 low-calorie_diet 0 001 @ 07564629 n 0000 | a diet that is low on calories -07564101 13 n 01 low-fat_diet 0 001 @ 07561112 n 0000 | a diet containing limited amounts of fat and stressing foods high in carbohydrates; used in treatment of some gallbladder conditions -07564292 13 n 03 low-sodium_diet 0 low-salt_diet 0 salt-free_diet 0 001 @ 07561112 n 0000 | a diet that limits the intake of salt (sodium chloride); often used in treating hypertension or edema or certain other disorders -07564515 13 n 01 macrobiotic_diet 0 001 @ 07564971 n 0000 | a diet consisting chiefly of beans and whole grains -07564629 13 n 02 reducing_diet 0 obesity_diet 0 003 @ 07561112 n 0000 ~ 07562881 n 0000 ~ 07564008 n 0000 | a diet designed to help you lose weight (especially fat) -07564796 13 n 03 soft_diet 0 pap 0 spoon_food 0 002 @ 07561112 n 0000 %p 07703053 n 0000 | a diet that does not require chewing; advised for those with intestinal disorders -07564971 13 n 01 vegetarianism 0 002 @ 07561112 n 0000 ~ 07564515 n 0000 | a diet excluding all meat and fish -07565083 13 n 01 menu 0 001 @ 07560652 n 0000 | the dishes making up a meal -07565161 13 n 04 chow 0 chuck 2 eats 0 grub 0 001 @ 07560652 n 0000 | informal terms for a meal -07565259 13 n 02 board 0 table 1 005 @ 07560652 n 0000 + 02656763 v 0101 + 01177118 v 0101 + 01176897 v 0101 ~ 07565458 n 0000 | food or meals in general; "she sets a fine table"; "room and board" -07565458 13 n 01 training_table 0 002 @ 07565259 n 0000 #p 03751065 n 0000 | planned meals for athletes in training (usually served in a mess hall) -07565608 13 n 01 mess 0 002 @ 07573696 n 0000 + 01176079 v 0101 | a meal eaten in a mess hall by service personnel -07565725 13 n 01 ration 1 004 @ 07560652 n 0000 + 02234803 v 0101 + 02234988 v 0101 ~ 07565945 n 0000 | the food allowance for one day (especially for service personnel); "the rations should be nutritionally balanced" -07565945 13 n 01 field_ration 0 003 @ 07565725 n 0000 ~ 07566092 n 0000 ~ 07566231 n 0000 | rations issued for United States troops in the field -07566092 13 n 01 K_ration 0 001 @ 07565945 n 0000 | a small package of emergency rations; issued to United States troops in World War II -07566231 13 n 01 C-ration 0 001 @ 07565945 n 0000 | a canned field ration issued by the United States Army -07566340 13 n 02 foodstuff 0 food_product 0 023 @ 00021265 n 0000 ~ 07566863 n 0000 ~ 07567039 n 0000 ~ 07567139 n 0000 ~ 07567390 n 0000 ~ 07567707 n 0000 ~ 07568818 n 0000 ~ 07569106 n 0000 ~ 07572858 n 0000 ~ 07572957 n 0000 ~ 07573453 n 0000 ~ 07598335 n 0000 ~ 07619881 n 0000 ~ 07755089 n 0000 ~ 07802417 n 0000 ~ 07809096 n 0000 ~ 07840804 n 0000 ~ 07843775 n 0000 ~ 07844604 n 0000 ~ 07850083 n 0000 ~ 07882497 n 0000 ~ 07923748 n 0000 ~ 07937344 n 0000 | a substance that can be used or prepared for use as food -07566863 13 n 01 starches 0 004 @ 07566340 n 0000 ~ 07679356 n 0000 ~ 07710616 n 0000 ~ 07804323 n 0000 | foodstuff rich in natural starch (especially potatoes, rice, bread) -07567039 13 n 01 breadstuff 2 001 @ 07566340 n 0000 | flour or meal or grain used in baking bread -07567139 13 n 06 coloring 0 colouring 0 food_coloring 0 food_colouring 0 food_color 0 food_colour 0 003 @ 07566340 n 0000 + 00283911 v 0206 + 00283911 v 0101 | a digestible substance used to give color to food; "food color made from vegetable dyes" -07567390 13 n 01 concentrate 0 006 @ 07566340 n 0000 + 00237259 v 0104 + 00236999 v 0103 ~ 07567611 n 0000 ~ 07846359 n 0000 ~ 07924955 n 0000 | a concentrated form of a foodstuff; the bulk is reduced by removing water -07567611 13 n 01 tomato_concentrate 0 001 @ 07567390 n 0000 | a concentrated form of tomatoes -07567707 13 n 01 meal 1 009 @ 07566340 n 0000 + 02759910 a 0101 ~ 07567980 n 0000 ~ 07568095 n 0000 ~ 07568241 n 0000 ~ 07568389 n 0000 ~ 07568502 n 0000 ~ 07568625 n 0000 ~ 07568706 n 0000 | coarsely ground foodstuff; especially seeds of various cereal grasses or pulse -07567980 13 n 01 kibble 0 001 @ 07567707 n 0000 | coarsely ground grain in the form of pellets (as for pet food) -07568095 13 n 02 cornmeal 0 Indian_meal 0 004 @ 07567707 n 0000 #s 07688412 n 0000 #s 07703743 n 0000 #s 07703333 n 0000 | coarsely ground corn -07568241 13 n 01 farina 0 001 @ 07567707 n 0000 | fine meal made from cereal grain especially wheat; often used as a cooked cereal or in puddings -07568389 13 n 03 matzo_meal 0 matzoh_meal 0 matzah_meal 0 001 @ 07567707 n 0000 | meal made from ground matzos -07568502 13 n 02 oatmeal 1 rolled_oats 0 002 @ 07567707 n 0000 #s 07874780 n 0000 | meal made from rolled or ground oats -07568625 13 n 01 pea_flour 0 001 @ 07567707 n 0000 | meal made from dried peas -07568706 13 n 01 pinole 0 001 @ 07567707 n 0000 | meal made of finely ground corn mixed with sugar and spices -07568818 13 n 02 roughage 0 fiber 0 002 @ 07566340 n 0000 ~ 07568991 n 0000 | coarse, indigestible plant food low in nutrients; its bulk stimulates intestinal peristalsis -07568991 13 n 01 bran 0 002 @ 07568818 n 0000 %s 14806176 n 0000 | food prepared from the husks of cereal grains -07569106 13 n 01 flour 0 011 @ 07566340 n 0000 #s 07679356 n 0000 #s 07860988 n 0000 #s 07622708 n 0000 + 02233154 a 0101 + 00381496 v 0101 + 01261950 v 0101 ~ 07569423 n 0000 ~ 07569543 n 0000 ~ 07569873 n 0000 ~ 07570021 n 0000 | fine powdery foodstuff obtained by grinding and sifting the meal of a cereal grain -07569423 13 n 01 plain_flour 0 002 @ 07569106 n 0000 ;r 08860123 n 0000 | flour that does not contain a raising agent -07569543 13 n 01 wheat_flour 0 002 @ 07569106 n 0000 ~ 07569644 n 0000 | flour prepared from wheat -07569644 13 n 04 whole_wheat_flour 0 graham_flour 0 graham 0 whole_meal_flour 0 002 @ 07569543 n 0000 ;r 08860123 n 0000 | flour made by grinding the entire wheat berry including the bran; (`whole meal flour' is British usage) -07569873 13 n 03 soybean_meal 0 soybean_flour 0 soy_flour 0 003 @ 07569106 n 0000 #s 07844867 n 0000 %s 07729485 n 0000 | meal made from soybeans -07570021 13 n 01 semolina 0 001 @ 07569106 n 0000 | milled product of durum wheat (or other hard wheat) used in pasta -07570141 13 n 01 blood_meal 0 001 @ 07800091 n 0000 | the dried and powdered blood of animals -07570237 13 n 01 gluten 0 004 @ 14728724 n 0000 + 00053691 a 0102 ~ 07570447 n 0000 ~ 07570635 n 0000 | a protein substance that remains when starch is removed from cereal grains; gives cohesiveness to dough -07570447 13 n 01 corn_gluten 0 001 @ 07570237 n 0000 | gluten prepared from corn -07570530 13 n 01 corn_gluten_feed 0 001 @ 07800091 n 0000 | a feed consisting primarily of corn gluten -07570635 13 n 01 wheat_gluten 0 001 @ 07570237 n 0000 | gluten prepared from wheat -07570720 13 n 07 nutriment 0 nourishment 0 nutrition 0 sustenance 0 aliment 0 alimentation 0 victuals 1 025 @ 00021265 n 0000 + 01204191 v 0602 + 02557719 a 0501 + 01204191 v 0502 + 01202728 v 0403 + 03002351 a 0302 + 02557719 a 0305 + 03002351 a 0301 + 10012484 n 0303 + 01202728 v 0201 ~ 05399034 n 0000 ~ 07556970 n 0000 ~ 07557165 n 0000 ~ 07557434 n 0000 ~ 07560193 n 0000 ~ 07560331 n 0000 ~ 07560422 n 0000 ~ 07560542 n 0000 ~ 07573696 n 0000 ~ 07650792 n 0000 ~ 07650903 n 0000 ~ 07651025 n 0000 ~ 07803895 n 0000 ~ 07803992 n 0000 ~ 15089258 n 0000 | a source of materials to nourish the body -07571324 13 n 02 cuisine 0 culinary_art 0 006 @ 00243918 n 0000 ~ 07571547 n 0000 ~ 07571765 n 0000 ~ 07571903 n 0000 ~ 07572134 n 0000 ~ 07572206 n 0000 | the practice or manner of preparing food or the food so prepared -07571547 13 n 01 dim_sum 0 002 @ 07571324 n 0000 ;r 08723006 n 0000 | traditional Chinese cuisine; a variety of foods (including several kinds of steamed or fried dumplings) are served successively in small portions -07571765 13 n 01 haute_cuisine 0 002 @ 07571324 n 0000 ;r 08929922 n 0000 | (French) an elaborate and skillful manner of preparing food -07571903 13 n 01 nouvelle_cuisine 0 002 @ 07571324 n 0000 ;r 08929922 n 0000 | a school of French cooking that uses light sauces and tries to bring out the natural flavors of foods instead of making heavy use of butter and cream -07572134 13 n 01 rechauffe 0 001 @ 07571324 n 0000 | warmed leftovers -07572206 13 n 01 gastronomy 2 002 @ 07571324 n 0000 + 02975840 a 0101 | a particular style of cookery (as of a region); "New England gastronomy" -07572353 13 n 05 commissariat 0 provisions 0 provender 1 viands 1 victuals 2 003 @ 00021265 n 0000 ~ 07572519 n 0000 ~ 07572616 n 0000 | a stock or supply of foods -07572519 13 n 01 food_cache 0 001 @ 07572353 n 0000 | food in a secure or hidden storage place -07572616 13 n 01 larder 0 001 @ 07572353 n 0000 | a supply of food especially for a household -07572712 13 n 02 fresh_food 0 fresh_foods 0 001 @ 07555863 n 0000 | food that is not preserved by canning or dehydration or freezing or smoking -07572858 13 n 02 frozen_food 0 frozen_foods 0 001 @ 07566340 n 0000 | food preserved by freezing -07572957 13 n 04 canned_food 0 canned_foods 0 canned_goods 0 tinned_goods 0 002 @ 07566340 n 0000 ~ 07573103 n 0000 | food preserved by canning -07573103 13 n 02 canned_meat 0 tinned_meat 0 003 @ 07572957 n 0000 ~ 07573241 n 0000 ~ 07573347 n 0000 | meat preserved in a can or tin -07573241 13 n 01 Fanny_Adams 0 002 @ 07573103 n 0000 ;r 08860123 n 0000 | nautical term for tinned meat -07573347 13 n 01 Spam 0 002 @ 07573103 n 0000 ;u 06851742 n 0000 | a canned meat made largely from pork -07573453 13 n 02 dehydrated_food 0 dehydrated_foods 0 001 @ 07566340 n 0000 | food preserved by dehydration -07573563 13 n 01 square_meal 0 001 @ 07573696 n 0000 | a substantial and nourishing meal; "he seldom got three square meals a day" -07573696 13 n 02 meal 0 repast 0 022 @ 07570720 n 0000 %p 07556970 n 0000 %p 07557434 n 0000 ~ 07565608 n 0000 ~ 07573563 n 0000 ~ 07574176 n 0000 ~ 07574426 n 0000 ~ 07574602 n 0000 ~ 07574923 n 0000 ~ 07575076 n 0000 ~ 07575510 n 0000 ~ 07575726 n 0000 ~ 07575984 n 0000 ~ 07576182 n 0000 ~ 07576438 n 0000 ~ 07577374 n 0000 ~ 07577657 n 0000 ~ 07577772 n 0000 ~ 07578093 n 0000 %p 07578363 n 0000 %p 07580053 n 0000 %p 07695965 n 0000 | the food served and eaten at one time -07574176 13 n 01 potluck 0 001 @ 07573696 n 0000 | whatever happens to be available especially when offered to an unexpected guest or when brought by guests and shared by all; "having arrived unannounced we had to take potluck"; "a potluck supper" -07574426 13 n 01 refection 0 001 @ 07573696 n 0000 | a light meal or repast -07574504 13 n 01 refreshment 0 001 @ 07577374 n 0000 | snacks and drinks served as a light meal -07574602 13 n 01 breakfast 0 005 @ 07573696 n 0000 + 01185875 v 0101 + 01185740 v 0101 ~ 07574780 n 0000 ~ 08385989 n 0000 | the first meal of the day (usually in the morning) -07574780 13 n 02 continental_breakfast 0 petit_dejeuner 0 001 @ 07574602 n 0000 | a breakfast that usually includes a roll and coffee or tea -07574923 13 n 01 brunch 0 003 @ 07573696 n 0000 ;u 06288527 n 0000 + 01185604 v 0101 | combination breakfast and lunch; usually served in late morning -07575076 13 n 04 lunch 0 luncheon 0 tiffin 0 dejeuner 0 004 @ 07573696 n 0000 + 01185475 v 0101 + 01185304 v 0101 ~ 07575226 n 0000 | a midday meal -07575226 13 n 01 business_lunch 0 001 @ 07575076 n 0000 | lunch (usually at a restaurant) where business is discussed and the cost is charged as a business expense -07575392 13 n 01 high_tea 0 002 @ 07575726 n 0000 ;r 08860123 n 0000 | substantial early evening meal including tea -07575510 13 n 03 tea 1 afternoon_tea 0 teatime 0 002 @ 07573696 n 0000 ;r 08860123 n 0000 | a light midafternoon meal of tea and sandwiches or cakes; "an Englishman would interrupt a war to have his afternoon tea" -07575726 13 n 01 dinner 0 004 @ 07573696 n 0000 + 01167780 v 0101 + 01167981 v 0101 ~ 07575392 n 0000 | the main meal of the day served in the evening or at midday; "dinner will be at 8"; "on Sundays they had a large dinner when they returned from church" -07575984 13 n 01 supper 0 003 @ 07573696 n 0000 + 01205459 v 0101 ~ 01035667 n 0000 | a light evening meal; served in early evening if dinner is at midday or served late in the evening at bedtime -07576182 13 n 01 buffet 0 002 @ 07573696 n 0000 ~ 07593199 n 0000 | a meal set out on a buffet at which guests help themselves -07576311 13 n 01 TV_dinner 0 001 @ 07593549 n 0000 | a meal that is prepared in advance and frozen; can be heated and served -07576438 13 n 01 picnic 0 003 @ 07573696 n 0000 + 01168259 v 0101 ~ 07576577 n 0000 | any informal meal eaten outside or on an excursion -07576577 13 n 01 cookout 0 007 @ 07576438 n 0000 + 00324806 v 0103 ~ 07576781 n 0000 ~ 07576969 n 0000 ~ 07577144 n 0000 ~ 07577244 n 0000 ~ 07589872 n 0000 | an informal meal cooked and eaten outdoors -07576781 13 n 02 barbecue 0 barbeque 0 002 @ 07576577 n 0000 + 00324806 v 0102 | a cookout in which food is cooked over an open fire; especially a whole animal carcass roasted on a spit -07576969 13 n 01 clambake 0 001 @ 07576577 n 0000 | a cookout at the seashore where clams and fish and other foods are cooked--usually on heated stones covered with seaweed -07577144 13 n 01 fish_fry 0 001 @ 07576577 n 0000 | a cookout where fried fish is the main course -07577244 13 n 02 wiener_roast 0 weenie_roast 0 001 @ 07576577 n 0000 | a cookout where roasted frankfurters are the main course -07577374 13 n 03 bite 0 collation 0 snack 0 005 @ 07573696 n 0000 + 01173405 v 0302 ~ 07574504 n 0000 ~ 07577538 n 0000 ~ 07577918 n 0000 | a light informal meal -07577538 13 n 01 nosh 0 003 @ 07577374 n 0000 ;c 06951067 n 0000 + 01173405 v 0101 | (Yiddish) a snack or light meal -07577657 13 n 01 nosh-up 0 003 @ 07573696 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | a large satisfying meal -07577772 13 n 01 ploughman's_lunch 0 002 @ 07573696 n 0000 ;r 08860123 n 0000 | a meal consisting of a sandwich of bread and cheese and a salad -07577918 13 n 02 coffee_break 0 tea_break 0 001 @ 07577374 n 0000 | a snack taken during a break in the work day; "a ten-minute coffee break"; "the British have tea breaks" -07578093 13 n 03 banquet 0 feast 0 spread 1 004 @ 07573696 n 0000 + 01186208 v 0201 + 01185981 v 0201 + 01186208 v 0102 | a meal that is well prepared and greatly enjoyed; "a banquet for the graduating seniors"; "the Thanksgiving feast"; "they put out quite a spread" -07578363 13 n 03 helping 0 portion 0 serving 0 016 @ 13760316 n 0000 #p 07573696 n 0000 + 01181295 v 0301 + 01181295 v 0102 %p 07578879 n 0000 ~ 07647870 n 0000 ~ 07648267 n 0000 ~ 07648408 n 0000 ~ 07648549 n 0000 ~ 07649202 n 0000 ~ 07649342 n 0000 ~ 07649463 n 0000 ~ 07654667 n 0000 ~ 07884266 n 0000 ~ 07885223 n 0000 ~ 07885832 n 0000 | an individual quantity of food or drink taken as part of a meal; "the helpings were all small"; "his portion was larger than hers"; "there's enough for two servings each" -07578879 13 n 02 taste 0 mouthful 0 005 @ 13760316 n 0000 #p 07578363 n 0000 + 01195299 v 0104 ~ 07579076 n 0000 ~ 07579276 n 0000 | a small amount eaten or drunk; "take a taste--you'll like it" -07579076 13 n 03 morsel 0 bit 0 bite 1 004 @ 07578879 n 0000 ~ 07579399 n 0000 ~ 07622261 n 0000 ~ 07861421 n 0000 | a small amount of solid food; a mouthful; "all they had left was a bit of bread" -07579276 13 n 02 swallow 0 sup 0 002 @ 07578879 n 0000 + 01205459 v 0201 | a small amount of liquid food; "a sup of ale" -07579399 13 n 06 chew 0 chaw 0 cud 0 quid 0 plug 0 wad 0 004 @ 07579076 n 0000 + 01483779 v 0603 + 01201574 v 0201 + 01201089 v 0101 | a wad of something chewable as tobacco -07579575 13 n 02 entree 0 main_course 0 002 @ 07556970 n 0000 ~ 07579787 n 0000 | the principal dish of a meal -07579688 13 n 01 piece_de_resistance 0 001 @ 07557434 n 0000 | the most important dish of a meal -07579787 13 n 01 plate 1 001 @ 07579575 n 0000 | a main course served on a plate; "a vegetable plate"; "the blue plate special" -07579917 13 n 01 adobo 0 002 @ 07557434 n 0000 ;r 08981244 n 0000 | a dish of marinated vegetables and meat or fish; served with rice -07580053 13 n 03 side_dish 0 side_order 0 entremets 0 004 @ 07557434 n 0000 #p 07573696 n 0000 ~ 07726525 n 0000 ~ 07849619 n 0000 | a dish that is served with, but is subordinate to, a main course -07580253 13 n 01 special 0 001 @ 07557434 n 0000 | a dish or meal given prominence in e.g. a restaurant -07580359 13 n 01 casserole 0 002 @ 07557434 n 0000 ~ 07580470 n 0000 | food cooked and served in a casserole -07580470 13 n 01 chicken_casserole 0 002 @ 07580359 n 0000 ~ 07580592 n 0000 | chicken cooked and served in a casserole -07580592 13 n 03 chicken_cacciatore 0 chicken_cacciatora 0 hunter's_chicken 0 001 @ 07580470 n 0000 | chicken casserole prepared with tomatoes and mushrooms and herbs in the Italian style -07580782 13 n 02 roast 0 joint 0 012 @ 07653394 n 0000 + 00618377 a 0101 + 00324560 v 0101 ~ 07661273 n 0000 ~ 07661711 n 0000 ~ 07661950 n 0000 ~ 07662406 n 0000 ~ 07662978 n 0000 ~ 07663796 n 0000 ~ 07665844 n 0000 ~ 07668215 n 0000 ~ 07669788 n 0000 | a piece of meat roasted or for roasting and of a size for slicing into more than one portion -07581132 13 n 01 confit 0 001 @ 07653394 n 0000 | a piece of meat (especially a duck) cooked slowly in its own fat -07581249 13 n 01 antipasto 0 001 @ 07581346 n 0000 | a course of appetizers in an Italian meal -07581346 13 n 03 appetizer 0 appetiser 0 starter 0 006 @ 07556970 n 0000 ~ 07581249 n 0000 ~ 07581607 n 0000 ~ 07581775 n 0000 ~ 07582277 n 0000 ~ 07708512 n 0000 | food or drink to stimulate the appetite (usually served before a meal or as the first course) -07581607 13 n 01 canape 0 001 @ 07581346 n 0000 | an appetizer consisting usually of a thin slice of bread or toast spread with caviar or cheese or other savory food -07581775 13 n 01 cocktail 1 004 @ 07581346 n 0000 ~ 07581931 n 0000 ~ 07582027 n 0000 ~ 07582152 n 0000 | an appetizer served as a first course at a meal -07581931 13 n 01 fruit_cocktail 0 001 @ 07581775 n 0000 | a mixture of sliced or diced fruits -07582027 13 n 01 crab_cocktail 0 002 @ 07581775 n 0000 %p 07787715 n 0000 | a cocktail of cold cooked crabmeat and a sauce -07582152 13 n 01 shrimp_cocktail 0 002 @ 07581775 n 0000 %s 07794159 n 0000 | a cocktail of cold cooked shrimp and a sauce -07582277 13 n 01 hors_d'oeuvre 0 004 @ 07581346 n 0000 ~ 07734879 n 0000 ~ 07785487 n 0000 ~ 07873348 n 0000 | a dish served as an appetizer before the main meal -07582441 13 n 01 relish 0 006 @ 07810907 n 0000 ~ 07767344 n 0000 ~ 07824988 n 0000 ~ 07825312 n 0000 ~ 07825496 n 0000 ~ 07825597 n 0000 | spicy or savory condiment -07582609 13 n 01 dip 0 006 @ 07810907 n 0000 + 01192312 v 0102 ~ 07582811 n 0000 ~ 07582892 n 0000 ~ 07582970 n 0000 ~ 07583066 n 0000 | tasty mixture or liquid into which bite-sized foods are dipped -07582811 13 n 01 bean_dip 0 001 @ 07582609 n 0000 | a dip made of cooked beans -07582892 13 n 01 cheese_dip 0 001 @ 07582609 n 0000 | a dip made of cheeses -07582970 13 n 01 clam_dip 0 001 @ 07582609 n 0000 | a dip made of clams and soft cream cheese -07583066 13 n 01 guacamole 0 001 @ 07582609 n 0000 | a dip made of mashed avocado mixed with chopped onions and other seasonings -07583197 13 n 01 soup 0 030 @ 07557434 n 0000 ~ 07583865 n 0000 ~ 07583978 n 0000 ~ 07584110 n 0000 ~ 07584332 n 0000 ~ 07584423 n 0000 ~ 07584593 n 0000 ~ 07585208 n 0000 ~ 07585557 n 0000 ~ 07585644 n 0000 ~ 07585758 n 0000 ~ 07585906 n 0000 ~ 07585997 n 0000 ~ 07586099 n 0000 ~ 07586179 n 0000 ~ 07586318 n 0000 ~ 07586485 n 0000 ~ 07586604 n 0000 ~ 07586718 n 0000 ~ 07586894 n 0000 ~ 07587023 n 0000 ~ 07587206 n 0000 ~ 07587331 n 0000 ~ 07587441 n 0000 ~ 07588193 n 0000 ~ 07588299 n 0000 ~ 07588419 n 0000 ~ 07588574 n 0000 ~ 07588688 n 0000 ~ 07588817 n 0000 | liquid food especially of meat or fish or vegetable stock often containing pieces of solid food -07583865 13 n 01 soup_du_jour 0 001 @ 07583197 n 0000 | the soup that a restaurant is featuring on a given day -07583978 13 n 01 alphabet_soup 0 001 @ 07583197 n 0000 | soup that contains small noodles in the shape of letters of the alphabet -07584110 13 n 01 consomme 0 002 @ 07583197 n 0000 ~ 07584228 n 0000 | clear soup usually of beef or veal or chicken -07584228 13 n 01 madrilene 0 001 @ 07584110 n 0000 | a tomato-flavored consomme; often served chilled -07584332 13 n 01 bisque 0 001 @ 07583197 n 0000 | a thick cream soup made from shellfish -07584423 13 n 06 borsch 0 borsh 0 borscht 0 borsht 0 borshch 0 bortsch 0 001 @ 07583197 n 0000 | a Russian or Polish soup usually containing beet juice as a foundation -07584593 13 n 01 broth 0 003 @ 07583197 n 0000 ~ 07584859 n 0000 ~ 07584938 n 0000 | a thin soup of meat or fish or vegetable stock -07584727 13 n 03 liquor 1 pot_liquor 0 pot_likker 0 001 @ 07585208 n 0000 | the liquid in which vegetables or meat have be cooked -07584859 13 n 01 barley_water 0 001 @ 07584593 n 0000 | used to feed infants -07584938 13 n 01 bouillon 0 001 @ 07584593 n 0000 | a clear seasoned broth -07585015 13 n 02 beef_broth 0 beef_stock 0 001 @ 07585208 n 0000 | a stock made with beef -07585107 13 n 02 chicken_broth 0 chicken_stock 0 001 @ 07585208 n 0000 | a stock made with chicken -07585208 13 n 02 broth 1 stock 1 005 @ 07583197 n 0000 ~ 07584727 n 0000 ~ 07585015 n 0000 ~ 07585107 n 0000 ~ 07585474 n 0000 | liquid in which meat and vegetables are simmered; used as a basis for e.g. soups or sauces; "she made gravy with a base of beef stock" -07585474 13 n 01 stock_cube 0 001 @ 07585208 n 0000 | a cube of dehydrated stock -07585557 13 n 01 chicken_soup 0 001 @ 07583197 n 0000 | soup made from chicken broth -07585644 13 n 02 cock-a-leekie 0 cocky-leeky 0 001 @ 07583197 n 0000 | soup made from chicken boiled with leeks -07585758 13 n 01 gazpacho 0 001 @ 07583197 n 0000 | a soup made with chopped tomatoes and onions and cucumbers and peppers and herbs; served cold -07585906 13 n 01 gumbo 0 001 @ 07583197 n 0000 | a soup or stew thickened with okra pods -07585997 13 n 01 julienne 1 001 @ 07583197 n 0000 | a clear soup garnished with julienne vegetables -07586099 13 n 01 marmite 0 001 @ 07583197 n 0000 | soup cooked in a large pot -07586179 13 n 01 mock_turtle_soup 0 001 @ 07583197 n 0000 | soup made from a calf's head or other meat in imitation of green turtle soup -07586318 13 n 01 mulligatawny 0 002 @ 07583197 n 0000 ;r 08900535 n 0000 | a soup of eastern India that is flavored with curry; prepared with a meat or chicken base -07586485 13 n 01 oxtail_soup 0 002 @ 07583197 n 0000 %s 02158494 n 0000 | a soup made from the skinned tail of an ox -07586604 13 n 01 pea_soup 0 001 @ 07583197 n 0000 | a thick soup made of dried peas (usually made into a puree) -07586718 13 n 02 pepper_pot 0 Philadelphia_pepper_pot 0 001 @ 07583197 n 0000 | a soup made with vegetables and tripe and seasoned with peppercorns; often contains dumplings -07586894 13 n 03 petite_marmite 0 minestrone 0 vegetable_soup 0 001 @ 07583197 n 0000 | soup made with a variety of vegetables -07587023 13 n 02 potage 0 pottage 1 001 @ 07583197 n 0000 | thick (often creamy) soup -07587111 13 n 01 pottage 0 001 @ 07588947 n 0000 | a stew of vegetables and (sometimes) meat -07587206 13 n 02 turtle_soup 0 green_turtle_soup 0 001 @ 07583197 n 0000 | soup usually made of the flesh of green turtles -07587331 13 n 01 eggdrop_soup 0 001 @ 07583197 n 0000 | made by stirring beaten eggs into a simmering broth -07587441 13 n 01 chowder 0 004 @ 07583197 n 0000 ~ 07587618 n 0000 ~ 07587700 n 0000 ~ 07588111 n 0000 | a thick soup or stew made with milk and bacon and onions and potatoes -07587618 13 n 01 corn_chowder 0 001 @ 07587441 n 0000 | chowder containing corn -07587700 13 n 01 clam_chowder 0 003 @ 07587441 n 0000 ~ 07587819 n 0000 ~ 07587962 n 0000 | chowder containing clams -07587819 13 n 01 Manhattan_clam_chowder 0 001 @ 07587700 n 0000 | a chowder made with clams and tomatoes and other vegetables and seasonings -07587962 13 n 01 New_England_clam_chowder 0 001 @ 07587700 n 0000 | a thick chowder made with clams and potatoes and onions and salt pork and milk -07588111 13 n 01 fish_chowder 0 001 @ 07587441 n 0000 | chowder containing fish -07588193 13 n 03 won_ton 1 wonton 1 wonton_soup 0 001 @ 07583197 n 0000 | a soup with won ton dumplings -07588299 13 n 01 split-pea_soup 0 001 @ 07583197 n 0000 | made of stock and split peas with onions carrots and celery -07588419 13 n 02 green_pea_soup 0 potage_St._Germain 0 001 @ 07583197 n 0000 | made of fresh green peas and stock with shredded lettuce onion and celery -07588574 13 n 01 lentil_soup 0 001 @ 07583197 n 0000 | made of stock and lentils with onions carrots and celery -07588688 13 n 01 Scotch_broth 0 001 @ 07583197 n 0000 | a thick soup made from beef or mutton with vegetables and pearl barley -07588817 13 n 01 vichyssoise 0 001 @ 07583197 n 0000 | a creamy potato soup flavored with leeks and onions; usually served cold -07588947 13 n 01 stew 0 023 @ 07557434 n 0000 + 00323856 v 0101 ~ 07587111 n 0000 ~ 07589458 n 0000 ~ 07589543 n 0000 ~ 07589724 n 0000 ~ 07589967 n 0000 ~ 07590068 n 0000 ~ 07590177 n 0000 ~ 07590320 n 0000 ~ 07590502 n 0000 ~ 07590611 n 0000 ~ 07591049 n 0000 ~ 07591162 n 0000 ~ 07591236 n 0000 ~ 07591330 n 0000 ~ 07591473 n 0000 ~ 07592094 n 0000 ~ 07592481 n 0000 ~ 07592656 n 0000 ~ 07592768 n 0000 ~ 07593004 n 0000 ~ 07593107 n 0000 | food prepared by stewing especially meat or fish with vegetables -07589458 13 n 01 bigos 0 001 @ 07588947 n 0000 | a Polish stew of cabbage and meat -07589543 13 n 01 Brunswick_stew 0 001 @ 07588947 n 0000 | spicy southern specialty: chicken (or small game) with corn and tomatoes and lima beans and okra and onions and potatoes -07589724 13 n 01 burgoo 2 001 @ 07588947 n 0000 | thick spicy stew of whatever meat and whatever vegetables are available; southern United States -07589872 13 n 01 burgoo 3 001 @ 07576577 n 0000 | a gathering at which burgoo stew is served -07589967 13 n 02 olla_podrida 0 Spanish_burgoo 0 001 @ 07588947 n 0000 | Spanish version of burgoo -07590068 13 n 03 mulligan_stew 0 mulligan 0 Irish_burgoo 0 001 @ 07588947 n 0000 | Irish version of burgoo -07590177 13 n 03 purloo 0 chicken_purloo 0 poilu 0 001 @ 07588947 n 0000 | thick stew made of rice and chicken and small game; southern U.S. -07590320 13 n 03 goulash 0 Hungarian_goulash 0 gulyas 0 004 @ 07588947 n 0000 ~ 07590752 n 0000 ~ 07590841 n 0000 ~ 07590974 n 0000 | a rich meat stew highly seasoned with paprika -07590502 13 n 01 hotchpotch 0 001 @ 07588947 n 0000 | a stew (or thick soup) made with meat and vegetables -07590611 13 n 02 hot_pot 0 hotpot 0 002 @ 07588947 n 0000 ;r 08860123 n 0000 | a stew of meat and potatoes cooked in a tightly covered pot -07590752 13 n 01 beef_goulash 0 001 @ 07590320 n 0000 | meat is browned before stewing -07590841 13 n 01 pork-and-veal_goulash 0 001 @ 07590320 n 0000 | made with sauerkraut and caraway seeds and served with sour cream -07590974 13 n 01 porkholt 0 001 @ 07590320 n 0000 | made of lamb or pork -07591049 13 n 01 Irish_stew 0 001 @ 07588947 n 0000 | meat (especially mutton) stewed with potatoes and onions -07591162 13 n 01 oyster_stew 0 001 @ 07588947 n 0000 | oysters in cream -07591236 13 n 01 lobster_stew 0 001 @ 07588947 n 0000 | diced lobster meat in milk or cream -07591330 13 n 03 lobscouse 0 lobscuse 0 scouse 0 001 @ 07588947 n 0000 | a stew of meat and vegetables and hardtack that is eaten by sailors -07591473 13 n 01 fish_stew 0 003 @ 07588947 n 0000 ~ 07591586 n 0000 ~ 07591813 n 0000 | a stew made with fish -07591586 13 n 01 bouillabaisse 0 001 @ 07591473 n 0000 | highly seasoned Mediterranean soup or stew made of several kinds of fish and shellfish with tomatoes and onions or leeks and seasoned with saffron and garlic and herbs -07591813 13 n 01 matelote 0 001 @ 07591473 n 0000 | highly seasoned soup or stew made of freshwater fishes (eel, carp, perch) with wine and stock -07591961 13 n 01 paella 0 002 @ 07557434 n 0000 ;r 09023321 n 0000 | saffron-flavored dish made of rice with shellfish and chicken -07592094 13 n 01 fricassee 0 004 @ 07588947 n 0000 + 00323703 v 0101 ~ 07592317 n 0000 ~ 07592400 n 0000 | pieces of chicken or other meat stewed in gravy with e.g. carrots and onions and served with noodles or dumplings -07592317 13 n 01 chicken_stew 0 001 @ 07592094 n 0000 | a stew made with chicken -07592400 13 n 01 turkey_stew 0 001 @ 07592094 n 0000 | a stew made with turkey -07592481 13 n 01 beef_stew 0 001 @ 07588947 n 0000 | a stew made with beef -07592558 13 n 01 stew_meat 0 001 @ 07649854 n 0000 | tough meat that needs stewing to be edible -07592656 13 n 01 ragout 0 002 @ 07588947 n 0000 ~ 07592922 n 0000 | well-seasoned stew of meat and vegetables -07592768 13 n 01 ratatouille 0 001 @ 07588947 n 0000 | a vegetable stew; usually made with tomatoes, eggplant, zucchini, peppers, onion, and seasonings -07592922 13 n 01 salmi 0 001 @ 07592656 n 0000 | ragout of game in a rich sauce -07593004 13 n 01 pot-au-feu 0 001 @ 07588947 n 0000 | traditional French stew of vegetables and beef -07593107 13 n 01 slumgullion 0 001 @ 07588947 n 0000 | a thin stew of meat and vegetables -07593199 13 n 01 smorgasbord 0 002 @ 07576182 n 0000 ;r 08760510 n 0000 | an assortment of foods starting with herring or smoked eel or salmon etc with bread and butter; then cheeses and eggs and pickled vegetables and aspics; finally hot foods; served as a buffet meal -07593471 13 n 01 viand 2 001 @ 07557434 n 0000 | a choice or delicious dish -07593549 13 n 01 convenience_food 0 005 @ 07555863 n 0000 ~ 07576311 n 0000 ~ 07593774 n 0000 ~ 07594406 n 0000 ~ 07594511 n 0000 | any packaged dish or food that can be prepared quickly and easily as by thawing or heating -07593774 13 n 01 ready-mix 0 005 @ 07593549 n 0000 @ 07882886 n 0000 ~ 07593972 n 0000 ~ 07594066 n 0000 ~ 07594155 n 0000 | a commercial preparation containing most of the ingredients for a dish -07593972 13 n 01 brownie_mix 0 001 @ 07593774 n 0000 | a commercial mix for making brownies -07594066 13 n 01 cake_mix 0 001 @ 07593774 n 0000 | a commercial mix for making a cake -07594155 13 n 01 lemonade_mix 0 001 @ 07593774 n 0000 | a commercial mix for making lemonade -07594250 13 n 02 self-rising_flour 0 self-raising_flour 0 001 @ 07882886 n 0000 | a commercially prepared mixture of flour and salt and a leavening agent -07594406 13 n 02 delicatessen 0 delicatessen_food 0 001 @ 07593549 n 0000 | ready-to-eat food products -07594511 13 n 03 takeout 0 takeout_food 0 takeaway 0 003 @ 07593549 n 0000 + 01166940 v 0302 + 01166940 v 0101 | prepared food that is intended to be eaten off of the premises; "in England they call takeout food `takeaway'" -07594737 13 n 03 choice_morsel 0 tidbit 0 titbit 0 001 @ 07557165 n 0000 | a small tasty bit of food -07594840 13 n 02 savory 1 savoury 1 005 @ 07557165 n 0000 + 02398378 a 0203 + 00133669 a 0203 + 02398378 a 0102 + 00133669 a 0102 | an aromatic or spicy dish served at the end of dinner or as an hors d'oeuvre -07595051 13 n 01 calf's-foot_jelly 0 001 @ 07643981 n 0000 | a savory jelly made with gelatin obtained by boiling calves' feet -07595180 13 n 02 caramel 1 caramelized_sugar 0 005 @ 07859284 n 0000 + 00114615 v 0101 + 00114291 v 0101 + 00114615 v 0102 + 00114291 v 0102 | burnt sugar; used to color and flavor food -07595368 13 n 01 lump_sugar 0 001 @ 07859284 n 0000 | refined sugar molded into rectangular shapes convenient as single servings -07595499 13 n 03 sugarloaf 0 sugar_loaf 0 loaf_sugar 0 002 @ 07859284 n 0000 @ 07649582 n 0000 | a large conical loaf of concentrated refined sugar -07595649 13 n 01 cane_sugar 0 001 @ 07859284 n 0000 | sugar from sugarcane used as sweetening agent -07595751 13 n 02 castor_sugar 0 caster_sugar 0 002 @ 07595914 n 0000 ;r 08860123 n 0000 | very finely granulated sugar that was formerly sprinkled from a castor -07595914 13 n 01 powdered_sugar 0 003 @ 07596046 n 0000 ~ 07595751 n 0000 ~ 07596160 n 0000 | sugar granulated into a fine powder -07596046 13 n 01 granulated_sugar 0 002 @ 07859284 n 0000 ~ 07595914 n 0000 | sugar in the form of small grains -07596160 13 n 01 icing_sugar 0 001 @ 07595914 n 0000 | finely powdered sugar used to make icing -07596258 13 n 01 beet_sugar 0 001 @ 07859284 n 0000 | sugar from sugar beets used as sweetening agent -07596362 13 n 01 corn_sugar 0 001 @ 07859284 n 0000 | dextrose used as sweetening agent -07596452 13 n 01 brown_sugar 0 002 @ 07859284 n 0000 ~ 07596566 n 0000 | unrefined or only partly refined sugar -07596566 13 n 02 demerara 0 demerara_sugar 0 001 @ 07596452 n 0000 | light brown cane sugar; originally from Guyana -07596684 13 n 02 sweet 0 confection 0 012 @ 07557165 n 0000 ~ 07596967 n 0000 ~ 07597145 n 0000 ~ 07597263 n 0000 ~ 07597365 n 0000 ~ 07598622 n 0000 ~ 07599998 n 0000 ~ 07600696 n 0000 ~ 07602650 n 0000 ~ 07604956 n 0000 ~ 07620689 n 0000 ~ 07621264 n 0000 | a food rich in sugar -07596967 13 n 01 confectionery 0 001 @ 07596684 n 0000 | candy and other sweets considered collectively; "the business decided to concentrate on confectionery and soft drinks" -07597145 13 n 01 confiture 0 003 @ 07596684 n 0000 ~ 07600506 n 0000 ~ 07642471 n 0000 | preserved or candied fruit -07597263 13 n 01 sweetmeat 0 001 @ 07596684 n 0000 | a sweetened delicacy (as a preserve or pastry) -07597365 13 n 02 candy 0 confect 0 043 @ 07596684 n 0000 ~ 07598256 n 0000 ~ 07598529 n 0000 ~ 07598734 n 0000 ~ 07599068 n 0000 ~ 07599468 n 0000 ~ 07599649 n 0000 ~ 07599783 n 0000 ~ 07600394 n 0000 ~ 07601572 n 0000 ~ 07601686 n 0000 ~ 07601809 n 0000 ~ 07605040 n 0000 ~ 07605198 n 0000 ~ 07605282 n 0000 ~ 07605380 n 0000 ~ 07605474 n 0000 ~ 07605944 n 0000 ~ 07606191 n 0000 ~ 07606278 n 0000 ~ 07606419 n 0000 ~ 07606669 n 0000 ~ 07606764 n 0000 ~ 07607361 n 0000 ~ 07607492 n 0000 ~ 07607605 n 0000 ~ 07607707 n 0000 ~ 07608098 n 0000 ~ 07608245 n 0000 ~ 07608339 n 0000 ~ 07608429 n 0000 ~ 07608533 n 0000 ~ 07608641 n 0000 ~ 07608721 n 0000 ~ 07608866 n 0000 ~ 07608980 n 0000 ~ 07609083 n 0000 ~ 07609215 n 0000 ~ 07609316 n 0000 ~ 07609407 n 0000 ~ 07609632 n 0000 ~ 07609728 n 0000 ~ 07841907 n 0000 | a rich sweet made of flavored sugar and often combined with fruit or nuts -07598256 13 n 01 candy_bar 0 001 @ 07597365 n 0000 | a candy shaped as a bar -07598335 13 n 03 carob 0 carob_powder 0 Saint-John's-bread 0 002 @ 07566340 n 0000 %s 12493426 n 0000 | powder from the ground seeds and pods of the carob tree; used as a chocolate substitute -07598529 13 n 01 carob_bar 0 001 @ 07597365 n 0000 | a bar of candy made with carob powder -07598622 13 n 01 hardbake 0 001 @ 07596684 n 0000 | a British sweet made with molasses and butter and almonds -07598734 13 n 01 hard_candy 0 005 @ 07597365 n 0000 ~ 07598928 n 0000 ~ 07599161 n 0000 ~ 07599242 n 0000 ~ 07599383 n 0000 | candy that is brittle; "you can break a tooth on that hard candy" -07598928 13 n 02 barley-sugar 0 barley_candy 0 001 @ 07598734 n 0000 | a brittle transparent candy made by melting and cooling cane sugar -07599068 13 n 01 brandyball 0 001 @ 07597365 n 0000 | a British candy flavored with brandy -07599161 13 n 01 jawbreaker 0 001 @ 07598734 n 0000 | a large round hard candy -07599242 13 n 01 lemon_drop 0 001 @ 07598734 n 0000 | a hard candy with lemon flavor and a yellow color and (usually) the shape of a lemon -07599383 13 n 01 sourball 0 001 @ 07598734 n 0000 | round piece of tart hard candy -07599468 13 n 01 patty 1 002 @ 07597365 n 0000 ~ 07599554 n 0000 | round flat candy -07599554 13 n 01 peppermint_patty 0 001 @ 07599468 n 0000 | a patty flavored with peppermint -07599649 13 n 01 bonbon 0 001 @ 07597365 n 0000 | a candy that usually has a center of fondant or fruit or nuts coated in chocolate -07599783 13 n 03 brittle 0 toffee 0 toffy 0 002 @ 07597365 n 0000 ~ 07599911 n 0000 | caramelized sugar cooled in thin sheets -07599911 13 n 01 peanut_brittle 0 001 @ 07599783 n 0000 | brittle containing peanuts -07599998 13 n 02 chewing_gum 0 gum 0 004 @ 07596684 n 0000 ~ 07600177 n 0000 ~ 07600285 n 0000 %s 14900695 n 0000 | a preparation (usually made of sweetened chicle) for chewing -07600177 13 n 01 gum_ball 0 001 @ 07599998 n 0000 | a ball of chewing gum with a coating of colored sugar -07600285 13 n 01 bubble_gum 0 001 @ 07599998 n 0000 | a kind of chewing gum that can be blown into bubbles -07600394 13 n 01 butterscotch 0 001 @ 07597365 n 0000 | a hard brittle candy made with butter and brown sugar -07600506 13 n 03 candied_fruit 0 succade 0 crystallized_fruit 0 003 @ 07597145 n 0000 ~ 07600895 n 0000 ~ 07601407 n 0000 | fruit cooked in sugar syrup and encrusted with a sugar crystals -07600696 13 n 05 candied_apple 0 candy_apple 0 taffy_apple 0 caramel_apple 0 toffee_apple 0 001 @ 07596684 n 0000 | an apple that is covered with a candy-like substance (usually caramelized sugar) -07600895 13 n 01 crystallized_ginger 0 001 @ 07600506 n 0000 | strips of gingerroot cooked in sugar syrup and coated with sugar -07601025 13 n 01 grapefruit_peel 0 002 @ 07601407 n 0000 #p 07749969 n 0000 | strips of grapefruit peel cooked in sugar syrup and coated with sugar -07601175 13 n 01 lemon_peel 1 001 @ 07601407 n 0000 | strips of lemon peel cooked in sugar and coated with sugar -07601290 13 n 01 orange_peel 1 001 @ 07601407 n 0000 | strips of orange peel cooked in sugar and coated with sugar -07601407 13 n 01 candied_citrus_peel 0 004 @ 07600506 n 0000 ~ 07601025 n 0000 ~ 07601175 n 0000 ~ 07601290 n 0000 | strips of citrus peel cooked in a sugar syrup -07601572 13 n 01 candy_cane 0 001 @ 07597365 n 0000 | a hard candy in the shape of a rod (usually with stripes) -07601686 13 n 01 candy_corn 0 001 @ 07597365 n 0000 | a small yellow and white candy shaped to resemble a kernel of corn -07601809 13 n 01 caramel 0 005 @ 07597365 n 0000 + 00114615 v 0101 + 00114291 v 0101 + 00114615 v 0102 + 00114291 v 0102 | firm chewy candy made from caramelized sugar and butter and milk -07601999 13 n 01 chocolate 0 011 @ 07555863 n 0000 ~ 07602279 n 0000 ~ 07602454 n 0000 ~ 07602829 n 0000 ~ 07602996 n 0000 ~ 07603177 n 0000 ~ 07603722 n 0000 ~ 07603930 n 0000 ~ 07604307 n 0000 ~ 07604587 n 0000 %s 07754894 n 0000 | a food made from roasted ground cacao beans -07602279 13 n 03 bitter_chocolate 0 baking_chocolate 0 cooking_chocolate 0 001 @ 07601999 n 0000 | pure unsweetened chocolate used in baking and icings and sauces and candy -07602454 13 n 01 chocolate_candy 0 007 @ 07601999 n 0000 %s 07602650 n 0000 ~ 07603411 n 0000 ~ 07603511 n 0000 ~ 07604182 n 0000 ~ 07604840 n 0000 ~ 07607138 n 0000 | candy made with chocolate -07602650 13 n 02 center 0 centre 0 002 @ 07596684 n 0000 #s 07602454 n 0000 | the sweet central portion of a piece of candy that is enclosed in chocolate or some other covering -07602829 13 n 01 chocolate_liquor 0 001 @ 07601999 n 0000 | the liquid or paste that is produced when cocoa beans are roasted and ground; the basis of all chocolate -07602996 13 n 01 cocoa_butter 0 002 @ 07601999 n 0000 #s 07604587 n 0000 | the vegetable fat from the cacao that is extracted from chocolate liquor; the basis for white chocolate -07603177 13 n 01 cocoa_powder 0 002 @ 07601999 n 0000 ~ 07604043 n 0000 | the powdery remains of chocolate liquor after cocoa butter is removed; used in baking and in low fat and low calorie recipes and as a flavoring for ice cream -07603411 13 n 01 choc 0 001 @ 07602454 n 0000 | colloquial British abbreviation; "a box of chocs" -07603511 13 n 01 chocolate_bar 0 002 @ 07602454 n 0000 ~ 07603613 n 0000 | a bar of chocolate candy -07603613 13 n 01 Hershey_bar 0 001 @ 07603511 n 0000 | a bar of milk chocolate made by the Hershey company -07603722 13 n 03 bittersweet_chocolate 0 semi-sweet_chocolate 0 dark_chocolate 0 001 @ 07601999 n 0000 | chocolate liquor with cocoa butter and small amounts of sugar and vanilla; lecithin is usually added -07603930 13 n 01 couverture 0 001 @ 07601999 n 0000 | chocolate that contains at least 32 percent cocoa butter -07604043 13 n 01 Dutch-processed_cocoa 0 001 @ 07603177 n 0000 | cocoa powder treated with a mild alkalizing agent (such as baking soda) -07604182 13 n 02 jimmies 0 sprinkles 0 001 @ 07602454 n 0000 | bits of sweet chocolate used as a topping on e.g. ice cream -07604307 13 n 01 milk_chocolate 0 001 @ 07601999 n 0000 | chocolate made from chocolate liquor with sugar and cocoa butter and powdered milk solids and vanilla and (usually) lecithin; the most common form of chocolate for eating; used in chocolate candy and baking and coatings -07604587 13 n 01 white_chocolate 0 002 @ 07601999 n 0000 %s 07602996 n 0000 | a blend of cocoa butter and milk solids and sugar and vanilla; used in candy bars and baking and coatings; not technically chocolate because it contains no chocolate liquor -07604840 13 n 01 nonpareil 2 001 @ 07602454 n 0000 | a flat disk of chocolate covered with beads of colored sugar -07604956 13 n 01 comfit 0 001 @ 07596684 n 0000 | candy containing a fruit or nut -07605040 13 n 03 cotton_candy 0 spun_sugar 0 candyfloss 0 001 @ 07597365 n 0000 | a candy made by spinning sugar that has been boiled to a high temperature -07605198 13 n 01 dragee 1 001 @ 07597365 n 0000 | sugar-coated nut or fruit piece -07605282 13 n 01 dragee 2 001 @ 07597365 n 0000 | silvery candy beads used for decorating cakes -07605380 13 n 01 fondant 0 001 @ 07597365 n 0000 | candy made of a thick creamy sugar paste -07605474 13 n 01 fudge 0 004 @ 07597365 n 0000 ~ 07605597 n 0000 ~ 07605693 n 0000 ~ 07605804 n 0000 | soft creamy candy -07605597 13 n 01 chocolate_fudge 0 001 @ 07605474 n 0000 | fudge made with chocolate or cocoa -07605693 13 n 02 divinity 0 divinity_fudge 0 001 @ 07605474 n 0000 | white creamy fudge made with egg whites -07605804 13 n 04 penuche 0 penoche 0 panoche 0 panocha 0 001 @ 07605474 n 0000 | fudge made with brown sugar and butter and milk and nuts -07605944 13 n 01 gumdrop 0 002 @ 07597365 n 0000 ~ 07606058 n 0000 | a jellied candy coated with sugar crystals -07606058 13 n 01 jujube 1 001 @ 07605944 n 0000 | chewy fruit-flavored jellied candy (sometimes medicated to soothe a sore throat) -07606191 13 n 01 honey_crisp 0 001 @ 07597365 n 0000 | a crisp candy made with honey -07606278 13 n 02 mint 0 mint_candy 0 003 @ 07597365 n 0000 ~ 07606538 n 0000 %s 07819166 n 0000 | a candy that is flavored with a mint oil -07606419 13 n 01 horehound 0 001 @ 07597365 n 0000 | a candy that is flavored with an extract of the horehound plant -07606538 13 n 02 peppermint 1 peppermint_candy 0 002 @ 07606278 n 0000 %s 07812497 n 0000 | a candy flavored with peppermint oil -07606669 13 n 02 jelly_bean 0 jelly_egg 0 001 @ 07597365 n 0000 | sugar-glazed jellied candy -07606764 13 n 02 kiss 0 candy_kiss 0 005 @ 07597365 n 0000 ~ 07606933 n 0000 ~ 07607027 n 0000 ~ 07607138 n 0000 ~ 07607280 n 0000 | any of several bite-sized candies -07606933 13 n 01 molasses_kiss 0 001 @ 07606764 n 0000 | a candy kiss that resembles toffee -07607027 13 n 01 meringue_kiss 0 001 @ 07606764 n 0000 | a kiss made of sugar and egg white and baked slowly -07607138 13 n 01 chocolate_kiss 0 002 @ 07606764 n 0000 @ 07602454 n 0000 | a kiss that consists of a conical bite-sized piece of chocolate -07607280 13 n 01 Scotch_kiss 0 001 @ 07606764 n 0000 | butterscotch candy kiss -07607361 13 n 02 licorice 0 liquorice 0 001 @ 07597365 n 0000 | a black candy flavored with the dried root of the licorice plant -07607492 13 n 01 Life_Saver 0 002 @ 07597365 n 0000 ;u 06851742 n 0000 | a candy shaped like a small lifesaver -07607605 13 n 03 lollipop 0 sucker 1 all-day_sucker 0 001 @ 07597365 n 0000 | hard candy on a stick -07607707 13 n 01 lozenge 0 003 @ 07597365 n 0000 ~ 07607832 n 0000 ~ 07607967 n 0000 | a small aromatic or medicated candy -07607832 13 n 01 cachou 0 001 @ 07607707 n 0000 | a scented lozenge used to sweeten the breath (e.g. to conceal the odor of tobacco) -07607967 13 n 04 cough_drop 0 troche 0 pastille 0 pastil 0 001 @ 07607707 n 0000 | a medicated lozenge used to soothe the throat -07608098 13 n 01 marshmallow 0 001 @ 07597365 n 0000 | spongy confection made of gelatin and sugar and corn syrup and dusted with powdered sugar -07608245 13 n 02 marzipan 0 marchpane 0 001 @ 07597365 n 0000 | almond paste and egg whites -07608339 13 n 01 nougat 0 001 @ 07597365 n 0000 | nuts or fruit pieces in a sugar paste -07608429 13 n 01 nougat_bar 0 001 @ 07597365 n 0000 | a bar of nougat candy often dipped in chocolate -07608533 13 n 01 nut_bar 0 001 @ 07597365 n 0000 | paste of nuts and sugar on a pastry base cut into bars -07608641 13 n 01 peanut_bar 0 001 @ 07597365 n 0000 | bar of peanuts in taffy -07608721 13 n 01 popcorn_ball 0 001 @ 07597365 n 0000 | popcorn combined with a thick sugar or molasses or caramel syrup and formed into balls -07608866 13 n 01 praline 0 001 @ 07597365 n 0000 | cookie-sized candy made of brown sugar and butter and pecans -07608980 13 n 01 rock_candy 1 001 @ 07597365 n 0000 | sugar in large hard clear crystals on a string -07609083 13 n 02 rock_candy 2 rock 0 001 @ 07597365 n 0000 | hard bright-colored stick candy (typically flavored with peppermint) -07609215 13 n 01 sugar_candy 0 001 @ 07597365 n 0000 | made by boiling pure sugar until it hardens -07609316 13 n 01 sugarplum 0 001 @ 07597365 n 0000 | any of various small sugary candies -07609407 13 n 01 taffy 0 002 @ 07597365 n 0000 ~ 07609549 n 0000 | chewy candy of sugar or syrup boiled until thick and pulled until glossy -07609549 13 n 01 molasses_taffy 0 001 @ 07609407 n 0000 | taffy made of molasses -07609632 13 n 02 truffle 2 chocolate_truffle 0 001 @ 07597365 n 0000 | creamy chocolate candy -07609728 13 n 01 Turkish_Delight 0 001 @ 07597365 n 0000 | a jellied candy typically flavored with rose water -07609840 13 n 03 dessert 0 sweet 1 afters 0 020 @ 07556970 n 0000 ~ 07610502 n 0000 ~ 07610620 n 0000 ~ 07610746 n 0000 ~ 07610890 n 0000 ~ 07611046 n 0000 ~ 07611148 n 0000 ~ 07611267 n 0000 ~ 07611358 n 0000 ~ 07611733 n 0000 ~ 07611991 n 0000 ~ 07612137 n 0000 ~ 07612273 n 0000 ~ 07612367 n 0000 ~ 07612632 n 0000 ~ 07612996 n 0000 ~ 07613158 n 0000 ~ 07613266 n 0000 ~ 07621497 n 0000 ~ 07938594 n 0000 | a dish served as the last course of a meal -07610295 13 n 02 ambrosia 1 nectar 1 004 @ 07557165 n 0000 ;c 07978924 n 0000 + 02395910 a 0203 + 01179241 a 0101 | (classical mythology) the food and drink of the gods; mortals who ate it became immortal -07610502 13 n 01 ambrosia 2 001 @ 07609840 n 0000 | fruit dessert made of oranges and bananas with shredded coconut -07610620 13 n 01 baked_Alaska 0 001 @ 07609840 n 0000 | cake covered with ice cream and meringue browned quickly in an oven -07610746 13 n 01 blancmange 0 001 @ 07609840 n 0000 | sweet almond-flavored milk pudding thickened with gelatin or cornstarch; usually molded -07610890 13 n 01 charlotte 0 002 @ 07609840 n 0000 ~ 07614004 n 0000 | a mold lined with cake or crumbs and filled with fruit or whipped cream or custard -07611046 13 n 02 compote 0 fruit_compote 0 001 @ 07609840 n 0000 | dessert of stewed or baked fruit -07611148 13 n 01 dumpling 2 002 @ 07609840 n 0000 ~ 07614103 n 0000 | dessert made by baking fruit wrapped in pastry -07611267 13 n 01 flan 0 001 @ 07609840 n 0000 | open pastry filled with fruit or custard -07611358 13 n 01 frozen_dessert 0 016 @ 07609840 n 0000 ~ 07614198 n 0000 ~ 07614500 n 0000 ~ 07614730 n 0000 ~ 07615289 n 0000 ~ 07615774 n 0000 ~ 07615954 n 0000 ~ 07616046 n 0000 ~ 07616174 n 0000 ~ 07616265 n 0000 ~ 07616386 n 0000 ~ 07616487 n 0000 ~ 07616590 n 0000 ~ 07616906 n 0000 ~ 07617051 n 0000 ~ 07631926 n 0000 | any of various desserts prepared by freezing -07611733 13 n 01 junket 0 001 @ 07609840 n 0000 | dessert made of sweetened milk coagulated with rennet -07611839 13 n 01 mousse 1 003 @ 07557434 n 0000 ~ 07617447 n 0000 ~ 07617526 n 0000 | a light creamy dish made from fish or meat and set with gelatin -07611991 13 n 01 mousse 2 002 @ 07609840 n 0000 ~ 07617611 n 0000 | a rich, frothy, creamy dessert made with whipped egg whites and heavy cream -07612137 13 n 01 pavlova 0 001 @ 07609840 n 0000 | a dessert consisting of a meringue base or cup filled with fruit and whipped cream -07612273 13 n 01 peach_melba 0 001 @ 07609840 n 0000 | ice cream and peaches with a liqueur -07612367 13 n 01 whip 0 002 @ 07609840 n 0000 ~ 07612530 n 0000 | a dessert made of sugar and stiffly beaten egg whites or cream and usually flavored with fruit -07612530 13 n 01 prune_whip 0 001 @ 07612367 n 0000 | dessert made of prune puree and whipped cream -07612632 13 n 01 pudding 0 013 @ 07609840 n 0000 ~ 07617344 n 0000 ~ 07617708 n 0000 ~ 07618029 n 0000 ~ 07618119 n 0000 ~ 07618281 n 0000 ~ 07618432 n 0000 ~ 07618587 n 0000 ~ 07618684 n 0000 ~ 07618871 n 0000 ~ 07620047 n 0000 ~ 07620145 n 0000 ~ 07620327 n 0000 | any of various soft sweet desserts thickened usually with flour and baked or boiled or steamed -07612996 13 n 02 pudding 2 pud 0 003 @ 07609840 n 0000 ;r 08860123 n 0000 ~ 07613480 n 0000 | (British) the dessert course of a meal (`pud' is used informally) -07613158 13 n 02 syllabub 1 sillabub 1 001 @ 07609840 n 0000 | sweetened cream beaten with wine or liquor -07613266 13 n 01 tiramisu 0 001 @ 07609840 n 0000 | an Italian dessert consisting of layers of sponge cake soaked with coffee and brandy or liqueur layered with mascarpone cheese and topped with grated chocolate -07613480 13 n 01 trifle 0 002 @ 07612996 n 0000 ~ 07613671 n 0000 | a cold pudding made of layers of sponge cake spread with fruit or jelly; may be decorated with nuts, cream, or chocolate -07613671 13 n 01 tipsy_cake 0 002 @ 07613480 n 0000 ;r 08860123 n 0000 | a trifle soaked in wine and decorated with almonds and candied fruit -07613815 13 n 02 jello 0 Jell-O 0 003 @ 07644244 n 0000 @ 14590975 n 0000 ;u 06851742 n 0201 | fruit-flavored dessert (trade mark Jell-O) made from a commercially prepared gelatin powder -07614004 13 n 01 charlotte_russe 0 001 @ 07610890 n 0000 | lady fingers enclosing Bavarian cream -07614103 13 n 01 apple_dumpling 0 001 @ 07611148 n 0000 | apples wrapped in pastry and baked -07614198 13 n 02 ice 0 frappe 1 002 @ 07611358 n 0000 ~ 07614348 n 0000 | a frozen dessert with fruit flavoring (especially one containing no milk) -07614348 13 n 02 water_ice 0 sorbet 0 001 @ 07614198 n 0000 | an ice containing no milk but having a mushy consistency; usually made from fruit juice -07614500 13 n 02 ice_cream 0 icecream 0 007 @ 07611358 n 0000 ~ 07614825 n 0000 ~ 07615052 n 0000 ~ 07615190 n 0000 ~ 07615460 n 0000 ~ 07615569 n 0000 ~ 07615671 n 0000 | frozen dessert containing cream and sugar and flavoring -07614730 13 n 01 ice-cream_cone 0 001 @ 07611358 n 0000 | ice cream in a crisp conical wafer -07614825 13 n 01 chocolate_ice_cream 0 002 @ 07614500 n 0000 ~ 07614942 n 0000 | ice cream flavored with chocolate -07614942 13 n 01 choc-ice 0 001 @ 07614825 n 0000 | colloquial British abbreviation for chocolate ice cream -07615052 13 n 01 Neapolitan_ice_cream 0 001 @ 07614500 n 0000 | a block of ice cream with 3 or 4 layers of different colors and flavors -07615190 13 n 01 peach_ice_cream 0 001 @ 07614500 n 0000 | ice cream flavored with fresh peaches -07615289 13 n 02 sherbert 0 sherbet 0 001 @ 07611358 n 0000 | a frozen dessert made primarily of fruit juice and sugar, but also containing milk or egg-white or gelatin -07615460 13 n 01 strawberry_ice_cream 0 001 @ 07614500 n 0000 | ice cream flavored with fresh strawberries -07615569 13 n 01 tutti-frutti 0 001 @ 07614500 n 0000 | ice cream containing chopped candied fruits -07615671 13 n 01 vanilla_ice_cream 0 001 @ 07614500 n 0000 | ice cream flavored with vanilla extract -07615774 13 n 04 ice_lolly 0 lolly 0 lollipop 2 popsicle 0 001 @ 07611358 n 0000 | ice cream or water ice on a small wooden stick; "in England a popsicle is called an ice lolly" -07615954 13 n 01 ice_milk 0 001 @ 07611358 n 0000 | similar to ice cream but made of milk -07616046 13 n 01 frozen_yogurt 0 002 @ 07849336 n 0000 @ 07611358 n 0000 | a soft frozen dessert of sweetened flavored yogurt -07616174 13 n 01 snowball 1 001 @ 07611358 n 0000 | ball of crushed ice with fruit syrup -07616265 13 n 01 snowball 2 001 @ 07611358 n 0000 | ball of ice cream covered with coconut and usually chocolate sauce -07616386 13 n 01 parfait 0 001 @ 07611358 n 0000 | layers of ice cream and syrup and whipped cream -07616487 13 n 02 ice-cream_sundae 0 sundae 0 001 @ 07611358 n 0000 | ice cream served with a topping -07616590 13 n 01 split 0 002 @ 07611358 n 0000 ~ 07616748 n 0000 | a dessert of sliced fruit and ice cream covered with whipped cream and cherries and nuts -07616748 13 n 01 banana_split 0 001 @ 07616590 n 0000 | a banana split lengthwise and topped with scoops of ice cream and sauces and nuts and whipped cream -07616906 13 n 01 frozen_pudding 0 001 @ 07611358 n 0000 | a chilled dessert consisting of a mixture of custard and nuts and (sometimes) liquor -07617051 13 n 02 frozen_custard 0 soft_ice_cream 0 001 @ 07611358 n 0000 | dessert resembling ice cream but with a boiled custard base -07617188 13 n 01 pudding 1 003 @ 07557434 n 0000 ~ 07617839 n 0000 ~ 07617932 n 0000 | any of various soft thick unsweetened baked dishes; "corn pudding" -07617344 13 n 01 flummery 0 001 @ 07612632 n 0000 | a bland custard or pudding especially of oatmeal -07617447 13 n 01 fish_mousse 0 001 @ 07611839 n 0000 | mousse made with fish -07617526 13 n 01 chicken_mousse 0 001 @ 07611839 n 0000 | mousse made with chicken -07617611 13 n 01 chocolate_mousse 0 001 @ 07611991 n 0000 | dessert mousse made with chocolate -07617708 13 n 02 plum_pudding 0 Christmas_pudding 0 001 @ 07612632 n 0000 | a rich steamed or boiled pudding that resembles cake -07617839 13 n 01 carrot_pudding 0 001 @ 07617188 n 0000 | pudding made with grated carrots -07617932 13 n 01 corn_pudding 0 001 @ 07617188 n 0000 | pudding made of corn and cream and egg -07618029 13 n 01 steamed_pudding 0 001 @ 07612632 n 0000 | a pudding cooked by steaming -07618119 13 n 02 duff 0 plum_duff 0 001 @ 07612632 n 0000 | a stiff flour pudding steamed or boiled usually and containing e.g. currants and raisins and citron -07618281 13 n 01 vanilla_pudding 0 001 @ 07612632 n 0000 | sweet vanilla flavored custard-like pudding usually thickened with flour rather than eggs -07618432 13 n 01 chocolate_pudding 0 001 @ 07612632 n 0000 | sweet chocolate flavored custard-like pudding usually thickened with flour rather than eggs -07618587 13 n 01 brown_Betty 0 001 @ 07612632 n 0000 | baked pudding of apples and breadcrumbs -07618684 13 n 02 Nesselrode 0 Nesselrode_pudding 0 001 @ 07612632 n 0000 | a rich frozen pudding made of chopped chestnuts and maraschino cherries and candied fruits and liqueur or rum -07618871 13 n 01 pease_pudding 0 002 @ 07612632 n 0000 ;r 08860123 n 0000 | a pudding made with strained split peas mixed with egg -07619004 13 n 01 custard 0 006 @ 07557434 n 0000 ~ 07619208 n 0000 ~ 07619301 n 0000 ~ 07619409 n 0000 ~ 07619508 n 0000 ~ 07620597 n 0000 | sweetened mixture of milk and eggs baked or boiled or frozen -07619208 13 n 01 creme_caramel 0 001 @ 07619004 n 0000 | baked custard topped with caramel -07619301 13 n 01 creme_anglais 0 001 @ 07619004 n 0000 | custard sauce flavored with vanilla or a liqueur -07619409 13 n 01 creme_brulee 0 001 @ 07619004 n 0000 | custard sprinkled with sugar and broiled -07619508 13 n 01 fruit_custard 0 001 @ 07619004 n 0000 | a custard containing fruit -07619594 13 n 01 quiche 0 002 @ 07623933 n 0000 ~ 07619786 n 0000 | a tart filled with rich unsweetened custard; often contains other ingredients (as cheese or ham or seafood or vegetables) -07619786 13 n 01 quiche_Lorraine 0 001 @ 07619594 n 0000 | quiche made with cheese and bacon -07619881 13 n 01 tapioca 0 003 @ 07566340 n 0000 #s 12927013 n 0000 %s 14761578 n 0000 | granular preparation of cassava starch used to thicken especially puddings -07620047 13 n 01 tapioca_pudding 0 001 @ 07612632 n 0000 | sweet pudding thickened with tapioca -07620145 13 n 02 roly-poly 0 roly-poly_pudding 0 002 @ 07612632 n 0000 ;r 08860123 n 0000 | pudding made of suet pastry spread with jam or fruit and rolled up and baked or steamed -07620327 13 n 01 suet_pudding 0 003 @ 07612632 n 0000 ;r 08860123 n 0000 ~ 07620485 n 0000 | a sweet or savory pudding made with suet and steamed or boiled -07620485 13 n 01 spotted_dick 0 002 @ 07620327 n 0000 ;r 08860123 n 0000 | a suet pudding containing currants -07620597 13 n 01 Bavarian_cream 0 001 @ 07619004 n 0000 | a rich custard set with gelatin -07620689 13 n 02 maraschino 1 maraschino_cherry 0 001 @ 07596684 n 0000 | cherry preserved in true or imitation maraschino liqueur -07620822 13 n 03 frosting 0 icing 0 ice 1 004 @ 07621776 n 0000 + 01517175 v 0302 + 01517175 v 0202 + 01517175 v 0101 | a flavored sugar topping used to coat and decorate cakes -07621001 13 n 01 glaze 0 002 @ 07621776 n 0000 + 02196378 v 0102 | any of various thin shiny (savory or sweet) coatings applied to foods -07621140 13 n 01 meringue 0 001 @ 07621776 n 0000 | sweet topping especially for pies made of beaten egg whites and sugar -07621264 13 n 01 nonpareil 1 001 @ 07596684 n 0000 | colored beads of sugar used as a topping on e.g. candies and cookies -07621388 13 n 01 whipped_cream 0 001 @ 07621776 n 0000 | cream that has been beaten until light and fluffy -07621497 13 n 02 zabaglione 0 sabayon 0 001 @ 07609840 n 0000 | light foamy custard-like dessert served hot or chilled -07621618 13 n 01 garnish 0 003 @ 03169390 n 0000 + 01679433 v 0102 ~ 07621776 n 0000 | something (such as parsley) added to a dish for flavor or decoration -07621776 13 n 01 topping 0 007 @ 07621618 n 0000 #p 07557434 n 0000 ~ 07620822 n 0000 ~ 07621001 n 0000 ~ 07621140 n 0000 ~ 07621388 n 0000 ~ 07621976 n 0000 | a flavorful addition on top of a dish -07621976 13 n 01 streusel 0 001 @ 07621776 n 0000 | a crumbly topping for a pastry -07622061 13 n 01 baked_goods 0 005 @ 07555863 n 0000 %p 07622261 n 0000 ~ 07622708 n 0000 ~ 07628870 n 0000 ~ 07679356 n 0000 | foods (like breads and cakes and pastries) that are cooked in an oven -07622261 13 n 01 crumb 0 008 @ 07579076 n 0000 #p 07622061 n 0000 + 00708738 a 0101 + 00180197 v 0101 + 00338866 v 0101 + 01265740 v 0101 ~ 07622473 n 0000 ~ 07622587 n 0000 | small piece of e.g. bread or cake -07622473 13 n 01 breadcrumb 0 001 @ 07622261 n 0000 | crumb of bread; used especially for coating or thickening -07622587 13 n 01 cracker_crumbs 0 001 @ 07622261 n 0000 | crumbs of crackers used especially for coating or thickening -07622708 13 n 01 pastry 0 019 @ 07622061 n 0000 %s 07569106 n 0000 ~ 07623263 n 0000 ~ 07623363 n 0000 ~ 07623475 n 0000 ~ 07623576 n 0000 ~ 07623664 n 0000 ~ 07625201 n 0000 ~ 07625493 n 0000 ~ 07626959 n 0000 ~ 07627223 n 0000 ~ 07627380 n 0000 ~ 07627478 n 0000 ~ 07627564 n 0000 ~ 07627693 n 0000 ~ 07627790 n 0000 ~ 07628328 n 0000 ~ 07628470 n 0000 ~ 07937786 n 0000 | any of various baked foods made of dough or batter -07623136 13 n 02 pastry 2 pastry_dough 0 002 @ 07860988 n 0000 ~ 07627931 n 0000 | a dough of flour and water and shortening -07623263 13 n 02 pie_crust 0 pie_shell 0 001 @ 07622708 n 0000 | pastry used to hold pie fillings -07623363 13 n 02 dowdy 0 pandowdy 0 001 @ 07622708 n 0000 | deep-dish apple dessert covered with a rich crust -07623475 13 n 01 frangipane 0 001 @ 07622708 n 0000 | pastry with a creamy almond-flavored filling -07623576 13 n 01 streusel 1 001 @ 07622708 n 0000 | pastry with a topping of streusel -07623664 13 n 01 tart 1 004 @ 07622708 n 0000 ;r 08860123 n 0000 + 07624339 n 0101 ~ 07623834 n 0000 | a pastry cup with a filling of fruit or custard and no top crust -07623834 13 n 01 apple_tart 1 001 @ 07623664 n 0000 | a tart filled with sliced apples and sugar -07623933 13 n 01 tart 0 007 @ 07625493 n 0000 ;r 09044862 n 0000 + 07624339 n 0101 ~ 07619594 n 0000 ~ 07624130 n 0000 ~ 07624239 n 0000 ~ 07624339 n 0000 | a small open pie with a fruit filling -07624130 13 n 01 apple_tart 0 001 @ 07623933 n 0000 | a small open pie filled with sliced apples and sugar -07624239 13 n 01 lobster_tart 0 001 @ 07623933 n 0000 | a pastry shell filled with cooked lobster -07624339 13 n 01 tartlet 0 003 @ 07623933 n 0000 + 07623664 n 0101 + 07623933 n 0101 | a small tart usually used as a canape -07624466 13 n 01 turnover 0 006 @ 07557434 n 0000 + 01222958 v 0103 ~ 07624666 n 0000 ~ 07624757 n 0000 ~ 07624924 n 0000 ~ 07625061 n 0000 | a dish made by folding a piece of pastry over a filling -07624666 13 n 01 apple_turnover 0 001 @ 07624466 n 0000 | turnover with an apple filling -07624757 13 n 01 knish 0 002 @ 07624466 n 0000 ;c 06951067 n 0000 | (Yiddish) a baked or fried turnover filled with potato or meat or cheese; often eaten as a snack -07624924 13 n 03 pirogi 0 piroshki 0 pirozhki 0 002 @ 07624466 n 0000 ;r 09003284 n 0000 | small fruit or meat turnover baked or fried -07625061 13 n 01 samosa 0 001 @ 07624466 n 0000 | small turnover of Indian origin filled with vegetables or meat and fried and served hot -07625201 13 n 02 timbale 1 timbale_case 0 001 @ 07622708 n 0000 | small pastry shell for creamy mixtures of minced foods -07625324 13 n 01 timbale 0 001 @ 07557434 n 0000 | individual serving of minced e.g. meat or fish in a rich creamy sauce baked in a small pastry mold or timbale shell -07625493 13 n 01 pie 0 014 @ 07622708 n 0000 ~ 07623933 n 0000 ~ 07625831 n 0000 ~ 07625977 n 0000 ~ 07626094 n 0000 ~ 07626174 n 0000 ~ 07626287 n 0000 ~ 07626405 n 0000 ~ 07626501 n 0000 ~ 07626602 n 0000 ~ 07626721 n 0000 ~ 07626833 n 0000 ~ 07627310 n 0000 ~ 07871940 n 0000 | dish baked in pastry-lined pan often with a pastry top -07625831 13 n 02 deep-dish_pie 0 cobbler 1 001 @ 07625493 n 0000 | a pie made of fruit with rich biscuit dough usually only on top of the fruit -07625977 13 n 01 shoofly_pie 0 001 @ 07625493 n 0000 | open pie filled with a mixture of sweet crumbs and molasses -07626094 13 n 01 mince_pie 0 001 @ 07625493 n 0000 | pie containing mincemeat -07626174 13 n 01 apple_pie 0 001 @ 07625493 n 0000 | pie (with a top crust) containing sliced apples and sugar -07626287 13 n 01 lemon_meringue_pie 0 001 @ 07625493 n 0000 | pie containing lemon custard and topped with meringue -07626405 13 n 01 blueberry_pie 0 001 @ 07625493 n 0000 | pie containing blueberries and sugar -07626501 13 n 01 rhubarb_pie 0 001 @ 07625493 n 0000 | pie containing diced rhubarb and much sugar -07626602 13 n 01 pecan_pie 0 001 @ 07625493 n 0000 | pie made of pecans and sugar and corn syrup and butter and eggs -07626721 13 n 01 pumpkin_pie 0 001 @ 07625493 n 0000 | pie made of mashed pumpkin and milk and eggs and sugar -07626833 13 n 01 squash_pie 0 001 @ 07625493 n 0000 | similar to pumpkin pie but made with winter squash instead of pumpkin -07626959 13 n 01 French_pastry 0 002 @ 07622708 n 0000 ~ 07627086 n 0000 | sweet filled pastry made of especially puff paste -07627086 13 n 01 napoleon 0 001 @ 07626959 n 0000 | a rectangular piece of pastry with thin flaky layers and filled with custard cream -07627223 13 n 02 patty_shell 0 bouchee 0 001 @ 07622708 n 0000 | shell of puff paste -07627310 13 n 01 patty 2 001 @ 07625493 n 0000 | small pie or pasty -07627380 13 n 01 sausage_roll 0 001 @ 07622708 n 0000 | sausage meat rolled and baked in pastry -07627478 13 n 01 toad-in-the-hole 0 001 @ 07622708 n 0000 | sausage baked in batter -07627564 13 n 01 vol-au-vent 0 001 @ 07622708 n 0000 | puff paste shell filled with a savory meat mixture usually with a sauce -07627693 13 n 01 strudel 0 001 @ 07622708 n 0000 | thin sheet of filled dough rolled and baked -07627790 13 n 01 baklava 0 001 @ 07622708 n 0000 | rich Middle Eastern cake made of thin layers of flaky pastry filled with nuts and honey -07627931 13 n 02 puff_paste 0 pate_feuillete 0 002 @ 07623136 n 0000 ~ 07628068 n 0000 | dough used for very light flaky rich pastries -07628068 13 n 01 phyllo 0 001 @ 07627931 n 0000 | tissue thin sheets of pastry used especially in Greek dishes -07628181 13 n 03 puff_batter 0 pouf_paste 0 pate_a_choux 0 001 @ 07860805 n 0000 | batter for making light hollow cases to hold various fillings -07628328 13 n 01 profiterole 0 001 @ 07622708 n 0000 | a small hollow pastry that is typically filled with cream and covered with chocolate -07628470 13 n 01 puff 0 002 @ 07622708 n 0000 ~ 07628576 n 0000 | a light inflated pastry or puff shell -07628576 13 n 02 cream_puff 0 chou 0 002 @ 07628470 n 0000 ~ 07628691 n 0000 | puff filled with cream or custard -07628691 13 n 01 eclair 0 002 @ 07628576 n 0000 ~ 07628779 n 0000 | oblong cream puff -07628779 13 n 01 chocolate_eclair 0 001 @ 07628691 n 0000 | eclair topped with chocolate -07628870 13 n 01 cake 0 040 @ 07622061 n 0000 ~ 07629697 n 0000 ~ 07629797 n 0000 ~ 07629988 n 0000 ~ 07630089 n 0000 ~ 07630220 n 0000 ~ 07630294 n 0000 ~ 07630398 n 0000 ~ 07630512 n 0000 ~ 07630782 n 0000 ~ 07630909 n 0000 ~ 07631023 n 0000 ~ 07631212 n 0000 ~ 07631350 n 0000 ~ 07631834 n 0000 ~ 07632037 n 0000 ~ 07632802 n 0000 ~ 07632980 n 0000 ~ 07633064 n 0000 ~ 07633146 n 0000 ~ 07633229 n 0000 ~ 07633369 n 0000 ~ 07633511 n 0000 ~ 07633640 n 0000 ~ 07633743 n 0000 ~ 07633861 n 0000 ~ 07633960 n 0000 ~ 07634048 n 0000 ~ 07634141 n 0000 ~ 07634306 n 0000 ~ 07634406 n 0000 ~ 07634514 n 0000 ~ 07634605 n 0000 ~ 07634751 n 0000 ~ 07635155 n 0000 ~ 07638676 n 0000 ~ 07640203 n 0000 ~ 07641699 n 0000 ~ 07642070 n 0000 ~ 07642182 n 0000 | baked goods made from or based on a mixture of flour, sugar, eggs, and fat -07629697 13 n 01 applesauce_cake 0 001 @ 07628870 n 0000 | moist spicy cake containing applesauce -07629797 13 n 01 baba 0 002 @ 07628870 n 0000 ~ 07629898 n 0000 | a small cake leavened with yeast -07629898 13 n 02 baba_au_rhum 0 rum_baba 0 001 @ 07629797 n 0000 | a baba soaked in rum -07629988 13 n 01 birthday_cake 0 001 @ 07628870 n 0000 | decorated cake served at a birthday party -07630089 13 n 01 cheesecake 0 001 @ 07628870 n 0000 | made with sweetened cream cheese and eggs and cream baked in a crumb crust -07630220 13 n 01 chiffon_cake 0 001 @ 07628870 n 0000 | very light cake -07630294 13 n 01 chocolate_cake 0 002 @ 07628870 n 0000 ~ 07631109 n 0000 | cake containing chocolate -07630398 13 n 01 coconut_cake 0 001 @ 07628870 n 0000 | cake containing shredded coconut in batter and frosting -07630512 13 n 02 coffeecake 0 coffee_cake 0 003 @ 07628870 n 0000 ~ 07630667 n 0000 ~ 07691424 n 0000 | a cake or sweet bread usually served with coffee -07630667 13 n 01 babka 0 001 @ 07630512 n 0000 | a coffee cake flavored with orange rind and raisins and almonds -07630782 13 n 01 crumb_cake 0 001 @ 07628870 n 0000 | cake or coffeecake topped with a mixture of sugar and butter and flour -07630909 13 n 01 crumpet 0 001 @ 07628870 n 0000 | a thick soft cake with a porous texture; cooked on a griddle -07631023 13 n 01 cupcake 0 001 @ 07628870 n 0000 | small cake baked in a muffin tin -07631109 13 n 02 devil's_food 0 devil's_food_cake 0 001 @ 07630294 n 0000 | very dark chocolate cake -07631212 13 n 01 Eccles_cake 0 002 @ 07628870 n 0000 ;r 08860123 n 0000 | a flat round cake of sweetened pastry filled with dried fruit -07631350 13 n 01 fruitcake 0 003 @ 07628870 n 0000 ~ 07631511 n 0000 ~ 07631672 n 0000 | a rich cake containing dried fruit and nuts and citrus peel and so on -07631511 13 n 01 Christmas_cake 0 002 @ 07631350 n 0000 ;r 08860123 n 0000 | a rich fruitcake (usually covered with icing and marzipan) and eaten at Christmas -07631672 13 n 01 simnel 1 002 @ 07631350 n 0000 ;r 08860123 n 0000 | a fruitcake (sometimes covered with almond paste) eaten at mid-Lent or Easter or Christmas -07631834 13 n 01 gateau 0 001 @ 07628870 n 0000 | any of various rich and elaborate cakes -07631926 13 n 02 ice-cream_cake 0 icebox_cake 0 001 @ 07611358 n 0000 | ice cream molded to look like a cake -07632037 13 n 01 sponge_cake 0 005 @ 07628870 n 0000 ~ 07632240 n 0000 ~ 07632357 n 0000 ~ 07632515 n 0000 ~ 07632679 n 0000 | a light porous cake made with eggs and flour and sugar without shortening -07632240 13 n 02 angel_cake 0 angel_food_cake 0 001 @ 07632037 n 0000 | a light sponge cake made without egg yolks -07632357 13 n 02 jellyroll 0 Swiss_roll 0 001 @ 07632037 n 0000 | thin sheet of sponge cake spread with jelly and then rolled up to make a cylindrical cake -07632515 13 n 02 Madeira_cake 0 Madeira_sponge 0 001 @ 07632037 n 0000 | a rich sponge cake with close texture; intended to be eaten with a glass of Madeira wine -07632679 13 n 01 Twinkie 0 002 @ 07632037 n 0000 ;u 06851742 n 0000 | a small sponge cake with a synthetic cream filling -07632802 13 n 02 wedding_cake 0 bridecake 0 001 @ 07628870 n 0000 | a rich cake with two or more tiers and covered with frosting and decorations; served at a wedding reception -07632980 13 n 01 white_cake 0 001 @ 07628870 n 0000 | cake made without egg yolks -07633064 13 n 01 spice_cake 0 001 @ 07628870 n 0000 | cake flavored with spices -07633146 13 n 01 gingerbread 0 001 @ 07628870 n 0000 | cake flavored with ginger -07633229 13 n 01 pound_cake 0 002 @ 07628870 n 0000 @ 07649582 n 0000 | rich loaf cake made of a pound each of butter and sugar and flour -07633369 13 n 01 layer_cake 0 001 @ 07628870 n 0000 | cake having layers held together by a sweet filling and usually covered with frosting -07633511 13 n 01 torte 0 001 @ 07628870 n 0000 | rich cake usually covered with cream and fruit or nuts; originated in Austria -07633640 13 n 01 petit_four 0 001 @ 07628870 n 0000 | small (individual) frosted and ornamented cake -07633743 13 n 01 prune_cake 0 001 @ 07628870 n 0000 | moist cake containing prunes that have been made into a puree -07633861 13 n 02 jumble 0 jumbal 0 001 @ 07628870 n 0000 | small flat ring-shaped cake or cookie -07633960 13 n 01 savarin 0 001 @ 07628870 n 0000 | a sponge cake baked in a ring mold -07634048 13 n 01 Boston_cream_pie 0 001 @ 07628870 n 0000 | layer cake filled with custard -07634141 13 n 02 upside-down_cake 0 skillet_cake 0 001 @ 07628870 n 0000 | batter baked atop a layer of sweetened fruit then turned upside down so fruit is on top -07634306 13 n 01 honey_cake 0 001 @ 07628870 n 0000 | a spicy cake partially sweetened with honey -07634406 13 n 01 marble_cake 0 001 @ 07628870 n 0000 | made of light and dark batter very lightly blended -07634514 13 n 01 genoise 0 001 @ 07628870 n 0000 | rich and delicate Italian sponge cake -07634605 13 n 02 seedcake 0 seed_cake 0 002 @ 07628870 n 0000 %s 07827554 n 0000 | a sweet cake flavored with sesame or caraway seeds and lemon -07634751 13 n 01 teacake 1 003 @ 07628870 n 0000 ;r 09044862 n 0000 ~ 07635044 n 0000 | any of various small cakes or cookies often served with tea -07634901 13 n 02 teacake 2 tea_biscuit 0 002 @ 07635155 n 0000 ;r 08860123 n 0000 | flat semisweet cookie or biscuit usually served with tea -07635044 13 n 01 Sally_Lunn 0 001 @ 07634751 n 0000 | a flat round slightly sweet teacake usually served hot -07635155 13 n 03 cookie 0 cooky 0 biscuit 2 026 @ 07628870 n 0000 ;r 08860123 n 0000 ~ 07634901 n 0000 ~ 07635746 n 0000 ~ 07635827 n 0000 ~ 07635934 n 0000 ~ 07636126 n 0000 ~ 07636271 n 0000 ~ 07636384 n 0000 ~ 07636534 n 0000 ~ 07636869 n 0000 ~ 07636957 n 0000 ~ 07637045 n 0000 ~ 07637178 n 0000 ~ 07637292 n 0000 ~ 07637398 n 0000 ~ 07637508 n 0000 ~ 07637652 n 0000 ~ 07637737 n 0000 ~ 07638128 n 0000 ~ 07638226 n 0000 ~ 07638317 n 0000 ~ 07638439 n 0000 ~ 07638574 n 0000 ~ 07695012 n 0000 ~ 07705137 n 0000 | any of various small flat sweet cakes (`biscuit' is the British term) -07635746 13 n 01 dog_biscuit 0 001 @ 07635155 n 0000 | a hard biscuit for dogs -07635827 13 n 01 butter_cookie 0 002 @ 07635155 n 0000 ~ 07636020 n 0000 | cookie containing much butter -07635934 13 n 01 spice_cookie 0 001 @ 07635155 n 0000 | cookie flavored with spices -07636020 13 n 02 shortbread 0 shortbread_cookie 0 001 @ 07635827 n 0000 | very rich thick butter cookie -07636126 13 n 02 almond_cookie 0 almond_crescent 0 001 @ 07635155 n 0000 | very rich cookie containing ground almonds; usually crescent-shaped -07636271 13 n 01 brownie 0 001 @ 07635155 n 0000 | square or bar of very rich chocolate cake usually with nuts -07636384 13 n 04 gingersnap 0 ginger_snap 0 snap 0 ginger_nut 0 002 @ 07635155 n 0000 ~ 07695097 n 0000 | a crisp round cookie flavored with ginger -07636534 13 n 01 macaroon 0 003 @ 07635155 n 0000 ~ 07636669 n 0000 ~ 07636779 n 0000 | chewy cookie usually containing almond paste -07636669 13 n 02 ratafia 2 ratafia_biscuit 0 001 @ 07636534 n 0000 | macaroon flavored with ratafia liqueur -07636779 13 n 01 coconut_macaroon 0 001 @ 07636534 n 0000 | macaroon containing coconut -07636869 13 n 01 kiss 1 001 @ 07635155 n 0000 | a cookie made of egg whites and sugar -07636957 13 n 01 ladyfinger 0 001 @ 07635155 n 0000 | small finger-shaped sponge cake -07637045 13 n 01 anise_cookie 0 002 @ 07635155 n 0000 %s 07826653 n 0000 | cookie made without butter and flavored with anise seed -07637178 13 n 01 molasses_cookie 0 001 @ 07635155 n 0000 | very spicy cookies sweetened partially with molasses -07637292 13 n 02 oreo 0 oreo_cookie 0 001 @ 07635155 n 0000 | chocolate cookie with white cream filling -07637398 13 n 01 raisin-nut_cookie 0 001 @ 07635155 n 0000 | cookie filled with a paste of raisins and nuts -07637508 13 n 01 refrigerator_cookie 0 001 @ 07635155 n 0000 | dough formed into a roll and chilled in the refrigerator then sliced and baked -07637652 13 n 01 raisin_cookie 0 001 @ 07635155 n 0000 | cookie containing raisins -07637737 13 n 01 fruit_bar 0 003 @ 07635155 n 0000 ~ 07637949 n 0000 ~ 07638039 n 0000 | cookies containing chopped fruits either mixed in the dough or spread between layers of dough then baked and cut in bars -07637949 13 n 01 apricot_bar 0 001 @ 07637737 n 0000 | fruit bar containing apricot jam -07638039 13 n 01 date_bar 0 001 @ 07637737 n 0000 | fruit bar containing chopped dates -07638128 13 n 01 sugar_cookie 0 001 @ 07635155 n 0000 | cookies sprinkled with granulated sugar -07638226 13 n 01 oatmeal_cookie 0 001 @ 07635155 n 0000 | cookies containing rolled oats -07638317 13 n 02 chocolate_chip_cookie 0 Toll_House_cookie 0 001 @ 07635155 n 0000 | cookies containing chocolate chips -07638439 13 n 01 fortune_cookie 0 002 @ 07635155 n 0000 ;r 08723006 n 0000 | thin folded wafer containing a maxim on a slip of paper -07638574 13 n 01 gingerbread_man 0 001 @ 07635155 n 0000 | gingerbread cut in the shape of a person -07638676 13 n 01 friedcake 0 006 @ 07628870 n 0000 ~ 07638898 n 0000 ~ 07639069 n 0000 ~ 07639577 n 0000 ~ 07639716 n 0000 ~ 07639855 n 0000 | small cake in the form of a ring or twist or ball or strip fried in deep fat -07638898 13 n 01 doughboy 0 001 @ 07638676 n 0000 | a rounded lump of dough that is deep-fried and served as hot bread; "the doughboy was a predecessor of the doughnut" -07639069 13 n 03 doughnut 0 donut 0 sinker 0 002 @ 07638676 n 0000 ~ 07639188 n 0000 | a small ring-shaped friedcake -07639188 13 n 01 raised_doughnut 0 003 @ 07639069 n 0000 ~ 07639344 n 0000 ~ 07639475 n 0000 | a doughnut made light with yeast rather than baking powder -07639344 13 n 03 Berlin_doughnut 0 bismark 0 jelly_doughnut 0 001 @ 07639188 n 0000 | a raised doughnut filled with jelly or jam -07639475 13 n 01 fastnacht 0 001 @ 07639188 n 0000 | doughnut traditionally eaten on Shrove Tuesday -07639577 13 n 02 cruller 0 twister 0 001 @ 07638676 n 0000 | small friedcake formed into twisted strips and fried; richer than doughnuts -07639716 13 n 02 French_fritter 0 beignet 0 001 @ 07638676 n 0000 | a deep-fried, yeast-raised doughnut dusted with confectioners' sugar -07639855 13 n 01 fritter 0 003 @ 07638676 n 0000 ~ 07640014 n 0000 ~ 07640105 n 0000 | small quantity of fried batter containing fruit or meat or vegetables -07640014 13 n 01 apple_fritter 0 001 @ 07639855 n 0000 | fritter containing sliced apple -07640105 13 n 01 corn_fritter 0 001 @ 07639855 n 0000 | fritter containing corn or corn kernels -07640203 13 n 09 pancake 0 battercake 0 flannel_cake 0 flannel-cake 0 flapcake 0 flapjack 0 griddlecake 1 hotcake 0 hot_cake 0 009 @ 07628870 n 0000 ~ 07640653 n 0000 ~ 07640749 n 0000 ~ 07640844 n 0000 ~ 07640991 n 0000 ~ 07641138 n 0000 ~ 07641380 n 0000 ~ 07641581 n 0000 ~ 07880583 n 0000 | a flat cake of thin batter fried on both sides on a griddle -07640560 13 n 01 yeast_cake 0 001 @ 15106271 n 0000 | small cake of compressed moist yeast -07640653 13 n 01 buckwheat_cake 0 001 @ 07640203 n 0000 | a pancake made with buckwheat flour -07640749 13 n 01 buttermilk_pancake 0 001 @ 07640203 n 0000 | a pancake made with buttermilk -07640844 13 n 02 blini 0 bliny 0 001 @ 07640203 n 0000 | Russian pancake of buckwheat flour and yeast; usually served with caviar and sour cream -07640991 13 n 02 blintz 0 blintze 0 002 @ 07640203 n 0000 ;c 06232880 n 0000 | (Judaism) thin pancake folded around a filling and fried or baked -07641138 13 n 03 crape 0 crepe 0 French_pancake 0 002 @ 07640203 n 0000 ~ 07641256 n 0000 | small very thin pancake -07641256 13 n 01 crepe_Suzette 0 001 @ 07641138 n 0000 | crepes flamed in a sweet orange-and-lemon flavored liqueur sauce -07641380 13 n 02 pfannkuchen 0 german_pancake 0 001 @ 07640203 n 0000 | puffy mildly sweet lemon-flavored egg mixture sprinkled with confectioners' sugar and served with jam or a wine or fruit sauce -07641581 13 n 02 potato_pancake 0 latke 0 001 @ 07640203 n 0000 | made of grated potato and egg with a little flour -07641699 13 n 01 waffle 0 002 @ 07628870 n 0000 ~ 07641807 n 0000 | pancake batter baked in a waffle iron -07641807 13 n 01 Belgian_waffle 0 001 @ 07641699 n 0000 | thick sweet waffle often eaten with ice cream or fruit sauce -07641928 13 n 02 fish_cake 0 fish_ball 2 002 @ 07663899 n 0000 ~ 07865575 n 0000 | a fried ball or patty of flaked fish and mashed potatoes -07642070 13 n 01 rock_cake 0 001 @ 07628870 n 0000 | a small cake with a hard surface said to resemble a rock -07642182 13 n 02 Victoria_sandwich 0 Victoria_sponge 0 002 @ 07628870 n 0000 ;r 08860123 n 0000 | a cake consisting of two layers of sponge cake with a jelly filling in between -07642361 13 n 02 fish_stick 0 fish_finger 0 001 @ 07557434 n 0000 | a long fillet of fish breaded and fried -07642471 13 n 04 conserve 0 preserve 0 conserves 0 preserves 0 009 @ 07597145 n 0000 + 00212414 v 0201 + 00212049 v 0101 ~ 07642742 n 0000 ~ 07642833 n 0000 ~ 07642933 n 0000 ~ 07643026 n 0000 ~ 07643306 n 0000 ~ 07643764 n 0000 | fruit preserved by cooking with sugar -07642742 13 n 01 apple_butter 0 001 @ 07642471 n 0000 | thick dark spicy puree of apples -07642833 13 n 01 chowchow 1 001 @ 07642471 n 0000 | a Chinese preserve of mixed fruits and ginger -07642933 13 n 01 jam 0 002 @ 07642471 n 0000 ~ 07643200 n 0000 | preserve of crushed fruit -07643026 13 n 02 lemon_curd 0 lemon_cheese 0 002 @ 07642471 n 0000 ;r 08860123 n 0000 | a conserve with a thick consistency; made with lemons and butter and eggs and sugar -07643200 13 n 02 strawberry_jam 0 strawberry_preserves 0 001 @ 07642933 n 0000 | made with strawberries -07643306 13 n 01 jelly 0 005 @ 07642471 n 0000 + 00507143 v 0101 + 00507331 v 0101 ~ 07643474 n 0000 ~ 07643679 n 0000 | a preserve made of the jelled juice of fruit -07643474 13 n 01 apple_jelly 0 002 @ 07643306 n 0000 ~ 07643577 n 0000 | jelly made from apple juice -07643577 13 n 01 crabapple_jelly 0 001 @ 07643474 n 0000 | a tart apple jelly made from crab apples -07643679 13 n 01 grape_jelly 0 001 @ 07643306 n 0000 | jelly made from grape juice -07643764 13 n 01 marmalade 0 002 @ 07642471 n 0000 ~ 07643891 n 0000 | a preserve made of the pulp and rind of citrus fruits -07643891 13 n 01 orange_marmalade 0 001 @ 07643764 n 0000 | marmalade made from oranges -07643981 13 n 02 gelatin 2 jelly 1 006 @ 07557165 n 0000 + 00507143 v 0201 + 00507331 v 0201 ~ 07595051 n 0000 ~ 07644244 n 0000 ~ 07808675 n 0000 | an edible jelly (sweet or pungent) made with gelatin and used as a dessert or salad base or a coating for foods -07644244 13 n 01 gelatin_dessert 0 002 @ 07643981 n 0000 ~ 07613815 n 0000 | jellied dessert made with gelatin and fruit juice or water -07644382 13 n 02 bird 0 fowl 0 012 @ 07649854 n 0000 #p 01503061 n 0000 %p 01895511 n 0000 ~ 07644706 n 0000 ~ 07646927 n 0000 %p 07647870 n 0000 %p 07648267 n 0000 %p 07648549 n 0000 %p 07649096 n 0000 %p 07649342 n 0000 %p 07649463 n 0000 %p 07650637 n 0000 | the flesh of a bird or fowl (wild or domestic) used as food -07644706 13 n 01 poultry 0 009 @ 07644382 n 0000 #p 01789740 n 0000 ~ 07644967 n 0000 ~ 07646163 n 0000 ~ 07646284 n 0000 ~ 07646403 n 0000 ~ 07646578 n 0000 ~ 07646821 n 0000 ~ 07647731 n 0000 | flesh of chickens or turkeys or ducks or geese raised for food -07644967 13 n 03 chicken 0 poulet 0 volaille 0 010 @ 07644706 n 0000 #p 01791625 n 0000 ~ 07645242 n 0000 ~ 07645384 n 0000 ~ 07645469 n 0000 ~ 07645631 n 0000 ~ 07645886 n 0000 ~ 07646067 n 0000 %p 07648408 n 0000 %p 07648814 n 0000 | the flesh of a chicken used for food -07645242 13 n 01 broiler 0 002 @ 07644967 n 0000 + 00328370 v 0101 | flesh of a small young chicken not over 2 1/2 lb suitable for broiling -07645384 13 n 01 capon 0 001 @ 07644967 n 0000 | flesh of a castrated male chicken -07645469 13 n 03 fryer 0 frier 0 pullet 0 003 @ 07644967 n 0000 + 00325328 v 0201 + 00325328 v 0101 | flesh of a medium-sized young chicken suitable for frying -07645631 13 n 01 roaster 0 002 @ 07644967 n 0000 ~ 07645769 n 0000 | flesh of a large young chicken over 3 1/2 lb suitable for roasting -07645769 13 n 02 Oven_Stuffer 0 Oven_Stuffer_Roaster 0 001 @ 07645631 n 0000 | a brand name for a roasting chicken -07645886 13 n 01 spatchcock 0 002 @ 07644967 n 0000 + 01665332 v 0101 | flesh of a chicken (or game bird) split down the back and grilled (usually immediately after being killed) -07646067 13 n 01 hen 0 001 @ 07644967 n 0000 | flesh of an older chicken suitable for stewing -07646163 13 n 01 Rock_Cornish_hen 0 002 @ 07644706 n 0000 #p 01790557 n 0000 | flesh of a small fowl bred for roasting -07646284 13 n 01 guinea_hen 0 002 @ 07644706 n 0000 #p 01809106 n 0000 | flesh of a guinea fowl (especially of hens) -07646403 13 n 02 squab 0 dove 0 002 @ 07644706 n 0000 #p 01814370 n 0000 | flesh of a pigeon suitable for roasting or braising; flesh of a dove (young squab) may be broiled -07646578 13 n 01 duck 0 004 @ 07644706 n 0000 #p 01846331 n 0000 + 07646718 n 0101 ~ 07646718 n 0000 | flesh of a duck (domestic or wild) -07646718 13 n 01 duckling 0 002 @ 07646578 n 0000 + 07646578 n 0101 | flesh of a young domestic duck -07646821 13 n 01 goose 0 002 @ 07644706 n 0000 #p 01855672 n 0000 | flesh of a goose (domestic or wild) -07646927 13 n 01 wildfowl 0 005 @ 07644382 n 0000 ~ 07647115 n 0000 ~ 07647321 n 0000 ~ 07647496 n 0000 ~ 07647602 n 0000 | flesh of any of a number of wild game birds suitable for food -07647115 13 n 01 grouse 0 004 @ 07646927 n 0000 #p 01795088 n 0000 ;c 02153203 n 0000 + 01143028 v 0101 | flesh of any of various grouse of the family Tetraonidae; usually roasted; flesh too dry to broil -07647321 13 n 01 quail 0 003 @ 07646927 n 0000 #p 01806567 n 0000 ;c 02153203 n 0000 | flesh of quail; suitable for roasting or broiling if young; otherwise must be braised -07647496 13 n 01 partridge 0 002 @ 07646927 n 0000 ;r 09044862 n 0000 | flesh of either quail or grouse -07647602 13 n 01 pheasant 0 003 @ 07646927 n 0000 #p 01803362 n 0000 ;c 02153203 n 0000 | flesh of a pheasant; usually braised -07647731 13 n 01 turkey 0 003 @ 07644706 n 0000 %p 07648408 n 0000 %p 07648717 n 0000 | flesh of large domesticated fowl usually roasted -07647870 13 n 01 drumstick 0 005 @ 07578363 n 0000 #p 07644382 n 0000 ~ 07648036 n 0000 ~ 07648150 n 0000 %p 07650637 n 0000 | the lower joint of the leg of a fowl -07648036 13 n 02 turkey_leg 0 turkey_drumstick 0 001 @ 07647870 n 0000 | the lower joint of the leg of a turkey -07648150 13 n 02 chicken_leg 0 chicken_drumstick 0 001 @ 07647870 n 0000 | the lower joint of the leg of a chicken -07648267 13 n 02 second_joint 0 thigh 0 003 @ 07578363 n 0000 #p 07644382 n 0000 %p 07650637 n 0000 | the upper joint of the leg of a fowl -07648408 13 n 02 breast 0 white_meat 0 003 @ 07578363 n 0000 #p 07644967 n 0000 #p 07647731 n 0000 | meat carved from the breast of a fowl -07648549 13 n 01 wing 0 004 @ 07578363 n 0000 #p 07644382 n 0000 ~ 07648717 n 0000 ~ 07648814 n 0000 | the wing of a fowl; "he preferred the drumsticks to the wings" -07648717 13 n 01 turkey_wing 0 002 @ 07648549 n 0000 #p 07647731 n 0000 | the wing of a turkey -07648814 13 n 01 chicken_wing 0 002 @ 07648549 n 0000 #p 07644967 n 0000 | the wing of a chicken -07648913 13 n 01 buffalo_wing 0 001 @ 07557434 n 0000 | crisp spicy chicken wings -07648997 13 n 01 barbecued_wing 0 001 @ 07557434 n 0000 | chicken wings cooked in barbecue sauce -07649096 13 n 02 giblet 0 giblets 0 002 @ 07651454 n 0000 #p 07644382 n 0000 | edible viscera of a fowl -07649202 13 n 01 medallion 0 001 @ 07578363 n 0000 | a circular helping of food (especially a boneless cut of meat); "medallions of veal" -07649342 13 n 01 oyster 1 002 @ 07578363 n 0000 #p 07644382 n 0000 | a small muscle on each side of the back of a fowl -07649463 13 n 02 parson's_nose 0 pope's_nose 0 002 @ 07578363 n 0000 #p 07644382 n 0000 | the tail of a dressed fowl -07649582 13 n 01 loaf 1 007 @ 07555863 n 0000 ~ 07595499 n 0000 ~ 07633229 n 0000 ~ 07671953 n 0000 ~ 07677071 n 0000 ~ 07678428 n 0000 ~ 07876893 n 0000 | a quantity of food (other than bread) formed in a particular shape; "meat loaf"; "sugar loaf"; "a loaf of cheese" -07649854 13 n 01 meat 1 027 @ 07555863 n 0000 + 01499457 a 0101 -c 01368948 a 0000 ~ 07592558 n 0000 ~ 07644382 n 0000 ~ 07650449 n 0000 ~ 07650637 n 0000 ~ 07651159 n 0000 ~ 07651325 n 0000 ~ 07651454 n 0000 ~ 07653394 n 0000 ~ 07654438 n 0000 ~ 07663592 n 0000 ~ 07664468 n 0000 ~ 07664582 n 0000 ~ 07664770 n 0000 ~ 07665146 n 0000 ~ 07665308 n 0000 ~ 07666406 n 0000 ~ 07666733 n 0000 ~ 07667151 n 0000 ~ 07668702 n 0000 ~ 07675627 n 0000 ~ 07675962 n 0000 ~ 07782475 n 0000 %s 14728724 n 0000 %s 14973303 n 0000 | the flesh of animals (including fishes and birds and snails) used as food -07650449 13 n 01 game 0 006 @ 07649854 n 0000 + 01054047 a 0102 + 01054047 a 0101 ~ 07653311 n 0000 ~ 07663492 n 0000 ~ 07666521 n 0000 | the flesh of wild animals that is used for food -07650637 13 n 01 dark_meat 1 004 @ 07649854 n 0000 #p 07644382 n 0000 #p 07647870 n 0000 #p 07648267 n 0000 | the flesh of the legs of fowl used as food -07650792 13 n 01 mess 1 002 @ 07570720 n 0000 + 01176079 v 0101 | soft semiliquid food; "a mess of porridge" -07650903 13 n 01 mince 0 002 @ 07570720 n 0000 + 01560583 v 0101 | food chopped into small bits; "a mince of mushrooms" -07651025 13 n 01 puree 0 002 @ 07570720 n 0000 + 01250474 v 0101 | food prepared by cooking and straining or processed in a blender -07651159 13 n 01 raw_meat 0 002 @ 07649854 n 0000 ~ 07651245 n 0000 | uncooked meat -07651245 13 n 01 gobbet 0 001 @ 07651159 n 0000 | a lump or chunk of raw meat -07651325 13 n 01 red_meat 0 001 @ 07649854 n 0000 | meat that is dark in color before cooking (as beef, venison, lamb, mutton) -07651454 13 n 02 variety_meat 0 organs 0 013 @ 07649854 n 0000 ~ 07649096 n 0000 ~ 07651774 n 0000 ~ 07651905 n 0000 ~ 07652052 n 0000 ~ 07652488 n 0000 ~ 07652585 n 0000 ~ 07652788 n 0000 ~ 07652881 n 0000 ~ 07652995 n 0000 ~ 07663220 n 0000 ~ 07671722 n 0000 ~ 07671953 n 0000 | edible viscera of a butchered animal -07651774 13 n 01 offal 0 001 @ 07651454 n 0000 | viscera and trimmings of a butchered animal often considered inedible by humans -07651905 13 n 01 heart 0 001 @ 07651454 n 0000 | a firm rather dry variety meat (usually beef or veal); "a five-pound beef heart will serve six" -07652052 13 n 01 liver 0 005 @ 07651454 n 0000 ~ 07652207 n 0000 ~ 07652310 n 0000 ~ 07652401 n 0000 ~ 07793946 n 0000 | liver of an animal used as meat -07652207 13 n 02 calves'_liver 0 calf's_liver 0 001 @ 07652052 n 0000 | liver of a calf used as meat -07652310 13 n 01 chicken_liver 0 001 @ 07652052 n 0000 | liver of a chicken used as meat -07652401 13 n 01 goose_liver 0 001 @ 07652052 n 0000 | liver of a goose used as meat -07652488 13 n 02 sweetbread 0 sweetbreads 0 001 @ 07651454 n 0000 | edible glands of an animal -07652585 13 n 01 brain 0 002 @ 07651454 n 0000 ~ 07652696 n 0000 | the brain of certain animals used as meat -07652696 13 n 01 calf's_brain 0 001 @ 07652585 n 0000 | the brain of a calf eaten as meat -07652788 13 n 01 stomach_sweetbread 0 001 @ 07651454 n 0000 | edible pancreas of an animal -07652881 13 n 02 neck_sweetbread 0 throat_sweetbread 0 001 @ 07651454 n 0000 | edible thymus gland of an animal -07652995 13 n 01 tongue 0 003 @ 07651454 n 0000 ~ 07653126 n 0000 ~ 07653217 n 0000 | the tongue of certain animals used as meat -07653126 13 n 01 beef_tongue 0 001 @ 07652995 n 0000 | the tongue of a cow eaten as meat -07653217 13 n 01 calf's_tongue 0 001 @ 07652995 n 0000 | the tongue of a calf eaten as meat -07653311 13 n 01 venison 0 001 @ 07650449 n 0000 | meat from a deer used as food -07653394 13 n 02 cut 0 cut_of_meat 0 027 @ 07649854 n 0000 ~ 07580782 n 0000 ~ 07581132 n 0000 ~ 07653982 n 0000 ~ 07654538 n 0000 ~ 07655505 n 0000 ~ 07655626 n 0000 ~ 07655898 n 0000 ~ 07655988 n 0000 ~ 07656077 n 0000 ~ 07656741 n 0000 ~ 07656866 n 0000 ~ 07657068 n 0000 ~ 07657440 n 0000 ~ 07657547 n 0000 ~ 07657903 n 0000 ~ 07658678 n 0000 ~ 07658958 n 0000 ~ 07659793 n 0000 ~ 07661357 n 0000 ~ 07661583 n 0000 ~ 07665595 n 0000 ~ 07667042 n 0000 ~ 07667326 n 0000 ~ 07667636 n 0000 ~ 07668073 n 0000 ~ 07668902 n 0000 | a piece of meat that has been cut from an animal carcass -07653982 13 n 01 chop 0 005 @ 07653394 n 0000 + 01258091 v 0101 ~ 07666847 n 0000 ~ 07667974 n 0000 ~ 07670254 n 0000 | a small cut of meat including part of a rib -07654148 13 n 02 barbecue 2 barbeque 2 002 @ 07557434 n 0000 + 00324806 v 0102 | meat that has been barbecued or grilled in a highly seasoned sauce -07654298 13 n 02 biryani 0 biriani 0 001 @ 07557434 n 0000 | an Indian dish made with highly seasoned rice and meat or fish or vegetables -07654438 13 n 01 cold_cuts 0 002 @ 07649854 n 0000 ~ 07678428 n 0000 | sliced assorted cold meats -07654538 13 n 01 chine 0 002 @ 07653394 n 0000 + 01323202 v 0101 | cut of meat or fish including at least part of the backbone -07654667 13 n 02 piece 0 slice 0 005 @ 07578363 n 0000 + 01254477 v 0201 + 01174294 v 0103 ~ 07654886 n 0000 ~ 07655337 n 0000 | a serving that has been cut from a larger portion; "a piece of pie"; "a slice of bread" -07654886 13 n 04 cutlet 0 scallop 2 scollop 2 escallop 2 003 @ 07654667 n 0000 + 01140315 v 0302 + 01140315 v 0201 | thin slice of meat (especially veal) usually fried or broiled -07655067 13 n 01 escalope_de_veau_Orloff 0 001 @ 07557434 n 0000 | lightly sauteed veal cutlets spread with a Soubise sauce and liver paste then sprinkled with grated Parmesan and baked briefly -07655263 13 n 01 saute 0 001 @ 07557434 n 0000 | a dish of sauteed food -07655337 13 n 04 fillet 2 filet 2 fish_fillet 0 fish_filet 0 003 @ 07654667 n 0000 + 01249294 v 0202 + 01249294 v 0101 | a longitudinal slice or boned side of a fish -07655505 13 n 01 leg 0 003 @ 07653394 n 0000 ~ 07668481 n 0000 ~ 07668588 n 0000 | the limb of an animal used for food -07655626 13 n 02 side 0 side_of_meat 0 003 @ 07653394 n 0000 ~ 07655790 n 0000 ~ 07669588 n 0000 | a lengthwise dressed half of an animal's carcass used for food -07655790 13 n 01 side_of_beef 0 002 @ 07655626 n 0000 %p 07656452 n 0000 | dressed half of a beef carcass -07655898 13 n 01 forequarter 0 001 @ 07653394 n 0000 | the front half of a side of meat -07655988 13 n 01 hindquarter 0 001 @ 07653394 n 0000 | the back half of a side of meat -07656077 13 n 01 cut_of_beef 0 017 @ 07653394 n 0000 #p 07663592 n 0000 ~ 07656452 n 0000 ~ 07656645 n 0000 ~ 07657664 n 0000 ~ 07657757 n 0000 ~ 07658814 n 0000 ~ 07659196 n 0000 ~ 07659308 n 0000 ~ 07659425 n 0000 ~ 07659560 n 0000 ~ 07661165 n 0000 ~ 07661486 n 0000 ~ 07661845 n 0000 ~ 07662156 n 0000 ~ 07662833 n 0000 ~ 07663118 n 0000 | cut of meat from beef cattle -07656452 13 n 01 chuck 0 004 @ 07656077 n 0000 #p 07655790 n 0000 %p 07661165 n 0000 %p 07661583 n 0000 | the part of a forequarter from the neck to the ribs and including the shoulder blade -07656645 13 n 01 chuck_short_ribs 0 001 @ 07656077 n 0000 | between the chuck and the brisket -07656741 13 n 01 rib 0 003 @ 07653394 n 0000 ~ 07656961 n 0000 %p 07661950 n 0000 | cut of meat including one or more ribs -07656866 13 n 01 entrecote 0 001 @ 07653394 n 0000 | cut of meat taken from between the ribs -07656961 13 n 01 sparerib 0 001 @ 07656741 n 0000 | a cut of pork ribs with much of the meat trimmed off -07657068 13 n 01 shank 0 003 @ 07653394 n 0000 ~ 07657233 n 0000 ~ 07657337 n 0000 | a cut of meat (beef or veal or mutton or lamb) from the upper part of the leg -07657233 13 n 01 foreshank 0 001 @ 07657068 n 0000 | a cut of meat from the upper part of a front leg -07657337 13 n 01 hindshank 0 001 @ 07657068 n 0000 | a cut of meat from the upper part of a rear leg -07657440 13 n 02 shin 0 shin_bone 0 001 @ 07653394 n 0000 | a cut of meat from the lower part of the leg -07657547 13 n 01 brisket 0 001 @ 07653394 n 0000 | a cut of meat from the breast or lower chest especially of beef -07657664 13 n 01 plate 2 001 @ 07656077 n 0000 | the thin under portion of the forequarter -07657757 13 n 01 flank 0 002 @ 07656077 n 0000 %p 07658461 n 0000 | a cut from the fleshy part of an animal's side between the ribs and the leg -07657903 13 n 01 steak 0 003 @ 07653394 n 0000 ~ 07658058 n 0000 ~ 07658168 n 0000 | a slice of meat cut from the fleshy part of an animal or large fish -07658058 13 n 01 fish_steak 0 002 @ 07657903 n 0000 ~ 07791937 n 0000 | cross-section slice of a large fish -07658168 13 n 01 beefsteak 0 012 @ 07657903 n 0000 ~ 07658461 n 0000 ~ 07658580 n 0000 ~ 07659684 n 0000 ~ 07660065 n 0000 ~ 07660463 n 0000 ~ 07660800 n 0000 ~ 07661002 n 0000 ~ 07662275 n 0000 ~ 07662618 n 0000 ~ 07662719 n 0000 ~ 07664121 n 0000 | a beef steak usually cooked by broiling -07658461 13 n 01 flank_steak 0 002 @ 07658168 n 0000 #p 07657757 n 0000 | a cut of beef from the flank of the animal -07658580 13 n 01 minute_steak 0 001 @ 07658168 n 0000 | a thin steak that can be cooked quickly -07658678 13 n 01 loin 0 001 @ 07653394 n 0000 | a cut of meat taken from the side and back of an animal between the ribs and the rump -07658814 13 n 01 beef_loin 0 004 @ 07656077 n 0000 #p 07663592 n 0000 %p 07658958 n 0000 %p 07660800 n 0000 | cut of meat from a loin of beef -07658958 13 n 01 sirloin 0 007 @ 07653394 n 0000 #p 07658814 n 0000 %p 07659196 n 0000 %p 07659308 n 0000 %p 07659425 n 0000 %p 07659560 n 0000 %p 07659684 n 0000 | the portion of the loin (especially of beef) just in front of the rump -07659196 13 n 01 wedge_bone 0 002 @ 07656077 n 0000 #p 07658958 n 0000 | part of the sirloin nearest the rump -07659308 13 n 01 flat_bone 0 002 @ 07656077 n 0000 #p 07658958 n 0000 | part of the sirloin next to the wedge bone -07659425 13 n 01 pin_bone 0 002 @ 07656077 n 0000 #p 07658958 n 0000 | part of the sirloin between the flat bone and the porterhouse -07659560 13 n 01 sirloin_tip 0 002 @ 07656077 n 0000 #p 07658958 n 0000 | a cut of beef from the upper end of the sirloin -07659684 13 n 01 sirloin_steak 0 002 @ 07658168 n 0000 #p 07658958 n 0000 | a cut of beef from the sirloin -07659793 13 n 02 tenderloin 0 undercut 0 003 @ 07653394 n 0000 ~ 07659968 n 0000 ~ 07660283 n 0000 | the tender meat of the loin muscle on each side of the vertebral column -07659968 13 n 01 beef_tenderloin 0 002 @ 07659793 n 0000 %p 07660065 n 0000 | beef loin muscle -07660065 13 n 02 fillet 1 filet 1 007 @ 07658168 n 0000 #p 07659968 n 0000 + 01249294 v 0202 + 01249294 v 0101 ~ 07660361 n 0000 ~ 07660590 n 0000 ~ 07660686 n 0000 | a boneless steak cut from the tenderloin of beef -07660283 13 n 01 pork_tenderloin 0 001 @ 07659793 n 0000 | pork loin muscle -07660361 13 n 01 Chateaubriand 0 001 @ 07660065 n 0000 | a very thick center cut of beef tenderloin -07660463 13 n 02 Delmonico_steak 0 club_steak 0 001 @ 07658168 n 0000 | small steak from the front of the short loin of beef -07660590 13 n 01 tournedos 0 001 @ 07660065 n 0000 | thick steak cut from the beef tenderloin -07660686 13 n 01 filet_mignon 0 001 @ 07660065 n 0000 | small steak cut from the thick end of a beef tenderloin -07660800 13 n 02 porterhouse 0 porterhouse_steak 0 002 @ 07658168 n 0000 #p 07658814 n 0000 | large steak from the thick end of the short loin containing a T-shaped bone and large piece of tenderloin -07661002 13 n 01 T-bone_steak 0 001 @ 07658168 n 0000 | small steak from the thin end of the short loin containing a T-shaped bone and small piece of tenderloin -07661165 13 n 01 blade 0 002 @ 07656077 n 0000 #p 07656452 n 0000 | a cut of beef from the shoulder blade -07661273 13 n 01 blade_roast 0 001 @ 07580782 n 0000 | a roast cut from the blade -07661357 13 n 01 neck 0 003 @ 07653394 n 0000 %p 07665713 n 0000 %p 07666933 n 0000 | a cut of meat from the neck of an animal -07661486 13 n 01 beef_neck 0 001 @ 07656077 n 0000 | a cut of beef from the neck of the animal -07661583 13 n 01 shoulder 0 002 @ 07653394 n 0000 #p 07656452 n 0000 | a cut of meat including the upper joint of the foreleg -07661711 13 n 01 pot_roast 0 002 @ 07580782 n 0000 ~ 07662517 n 0000 | cut of beef suitable for simmering in liquid in a closed pot -07661845 13 n 01 short_ribs 0 001 @ 07656077 n 0000 | cut of beef containing rib ends near the sternum -07661950 13 n 02 rib_roast 0 standing_rib_roast 0 002 @ 07580782 n 0000 #p 07656741 n 0000 | a cut of meat (beef or venison) including more than one rib and the meat located along the outside of the ribs -07662156 13 n 01 round 0 002 @ 07656077 n 0000 %p 07662275 n 0000 | a cut of beef between the rump and the lower leg -07662275 13 n 01 round_steak 0 002 @ 07658168 n 0000 #p 07662156 n 0000 | a lean cut of beef from between the rump and the shank -07662406 13 n 01 top_round 0 001 @ 07580782 n 0000 | roast cut from the round; usually suitable for roasting -07662517 13 n 01 bottom_round 0 001 @ 07661711 n 0000 | cut from the round; suitable for pot roast -07662618 13 n 01 rump_steak 0 002 @ 07658168 n 0000 #p 07662833 n 0000 | a steak cut from the rump -07662719 13 n 02 strip_steak 0 New_York_strip 0 001 @ 07658168 n 0000 | steak from upper part of the short loin -07662833 13 n 01 rump 0 003 @ 07656077 n 0000 %p 07662618 n 0000 %p 07662978 n 0000 | fleshy hindquarters; behind the loin and above the round -07662978 13 n 01 rump_roast 0 002 @ 07580782 n 0000 #p 07662833 n 0000 | a cut of beef or veal from the fleshy hindquarters of the animal -07663118 13 n 01 aitchbone 0 001 @ 07656077 n 0000 | a cut of beef including the H-shaped rump bone -07663220 13 n 01 tripe 0 002 @ 07651454 n 0000 ~ 07663360 n 0000 | lining of the stomach of a ruminant (especially a bovine) used as food -07663360 13 n 01 honeycomb_tripe 0 001 @ 07663220 n 0000 | lining of the reticulum (or second stomach) of a ruminant used as food -07663492 13 n 01 buffalo 0 002 @ 07650449 n 0000 #p 02410702 n 0000 | meat from an American bison -07663592 13 n 02 beef 0 boeuf 0 007 @ 07649854 n 0000 #p 02402425 n 0000 %p 07656077 n 0000 %p 07658814 n 0000 ~ 07664007 n 0000 ~ 07664266 n 0000 ~ 07664379 n 0000 | meat from an adult domestic bovine -07663796 13 n 02 beef_roast 0 roast_beef 0 001 @ 07580782 n 0000 | cut of beef suitable for roasting -07663899 13 n 02 patty 3 cake 2 002 @ 07557434 n 0000 ~ 07641928 n 0000 | small flat mass of chopped food -07664007 13 n 02 ground_beef 0 hamburger 0 002 @ 07663592 n 0000 #p 07697100 n 0000 | beef that has been ground -07664121 13 n 05 chopped_steak 0 chop_steak 0 chopsteak 0 hamburger_steak 0 beef_patty 0 001 @ 07658168 n 0000 | a patty of ground cooked beef -07664266 13 n 03 bully_beef 0 corned_beef 0 corn_beef 0 001 @ 07663592 n 0000 | beef cured or pickled in brine -07664379 13 n 01 pastrami 0 001 @ 07663592 n 0000 | highly seasoned cut of smoked beef -07664468 13 n 01 carbonado 0 001 @ 07649854 n 0000 | a piece of meat (or fish) that has been scored and broiled -07664582 13 n 01 halal 0 003 @ 07649854 n 0000 ;c 06234825 n 0000 + 00427496 a 0101 | (Islam) meat from animals that have been slaughtered in the prescribed way according to the shariah -07664770 13 n 03 jerky 0 jerked_meat 0 jerk 0 003 @ 07649854 n 0000 ~ 07664936 n 0000 ~ 07665013 n 0000 | meat (especially beef) cut in strips and dried in the sun -07664936 13 n 01 beef_jerky 0 001 @ 07664770 n 0000 | strips of dried beef -07665013 13 n 01 biltong 0 002 @ 07664770 n 0000 ;r 08999482 n 0000 | meat that is salted and cut into strips and dried in the sun -07665146 13 n 02 pemmican 0 pemican 0 001 @ 07649854 n 0000 | lean dried meat pounded fine and mixed with melted fat; used especially by North American Indians -07665308 13 n 02 veal 0 veau 0 004 @ 07649854 n 0000 #p 01887896 n 0000 %p 07665595 n 0000 ~ 07666303 n 0000 | meat from a calf -07665438 13 n 02 veal_parmesan 0 veal_parmigiana 0 001 @ 07557434 n 0000 | sauteed veal cutlet in a breadcrumb-and-cheese coating served with tomato sauce -07665595 13 n 01 cut_of_veal 0 003 @ 07653394 n 0000 #p 07665308 n 0000 ~ 07665713 n 0000 | cut of meat from a calf -07665713 13 n 02 scrag 1 scrag_end 0 003 @ 07665595 n 0000 #p 07661357 n 0000 + 01570744 v 0102 | the lean end of a neck of veal -07665844 13 n 02 veal_roast 0 roast_veal 0 003 @ 07580782 n 0000 ~ 07665983 n 0000 ~ 07666071 n 0000 | cut of veal suitable for roasting -07665983 13 n 01 breast_of_veal 0 001 @ 07665844 n 0000 | usually stuffed and roasted -07666071 13 n 01 fricandeau 0 001 @ 07665844 n 0000 | larded veal braised and glazed in its own juices -07666176 13 n 01 veal_cordon_bleu 0 001 @ 07557434 n 0000 | thin slices of veal stuffed with cheese and ham and then sauteed -07666303 13 n 01 calves'_feet 0 001 @ 07665308 n 0000 | feet of calves used as food; usually jellied -07666406 13 n 02 horsemeat 0 horseflesh 0 002 @ 07649854 n 0000 #p 02374451 n 0000 | the flesh of horses as food -07666521 13 n 02 rabbit 0 hare 0 005 @ 07650449 n 0000 #p 02325366 n 0000 #p 02324850 n 0000 #p 02326432 n 0000 + 01142761 v 0101 | flesh of any of various rabbits or hares (wild or domesticated) eaten as food -07666733 13 n 02 mouton 0 mutton 0 002 @ 07649854 n 0000 #p 02413131 n 0000 | meat from a mature domestic sheep -07666847 13 n 01 mutton_chop 0 001 @ 07653982 n 0000 | chop cut from a mature sheep -07666933 13 n 01 scrag 2 003 @ 07667042 n 0000 #p 07661357 n 0000 + 01570744 v 0102 | lean end of the neck -07667042 13 n 01 cut_of_mutton 0 002 @ 07653394 n 0000 ~ 07666933 n 0000 | cut of meat from a mature sheep -07667151 13 n 01 lamb 0 005 @ 07649854 n 0000 #p 02413131 n 0000 + 00058265 v 0101 %p 07667326 n 0000 %p 07667872 n 0000 | the flesh of a young domestic sheep eaten as food -07667326 13 n 01 cut_of_lamb 0 005 @ 07653394 n 0000 #p 07667151 n 0000 ~ 07667480 n 0000 ~ 07667778 n 0000 ~ 07667872 n 0000 | cut of meat from a lamb -07667480 13 n 02 breast_of_lamb 0 poitrine_d'agneau 0 001 @ 07667326 n 0000 | a cut of lamb including the breastbone and attached muscles dressed as meat -07667636 13 n 01 saddle 0 001 @ 07653394 n 0000 | cut of meat (especially mutton or lamb) consisting of part of the backbone and both loins -07667778 13 n 01 saddle_of_lamb 0 001 @ 07667326 n 0000 | backbone and both loins of a lamb -07667872 13 n 01 loin_of_lamb 0 002 @ 07667326 n 0000 #p 07667151 n 0000 | meat from a loin of lamb -07667974 13 n 03 lamb_chop 0 lamb-chop 0 lambchop 0 001 @ 07653982 n 0000 | chop cut from a lamb -07668073 13 n 01 rack 0 002 @ 07653394 n 0000 ~ 07668356 n 0000 | rib section of a forequarter of veal or pork or especially lamb or mutton -07668215 13 n 02 lamb_roast 0 roast_lamb 0 003 @ 07580782 n 0000 ~ 07668356 n 0000 ~ 07668588 n 0000 | a cut of lamb suitable for roasting -07668356 13 n 02 rack_of_lamb 0 crown_roast 0 002 @ 07668215 n 0000 @ 07668073 n 0000 | a roast of the rib section of lamb -07668481 13 n 01 ham_hock 0 001 @ 07655505 n 0000 | a small cut of meat from the leg just above the foot -07668588 13 n 02 leg_of_lamb 0 gigot 0 002 @ 07668215 n 0000 @ 07655505 n 0000 | lamb leg suitable for roasting -07668702 13 n 02 pork 0 porc 0 007 @ 07649854 n 0000 #p 02395406 n 0000 %p 07668902 n 0000 ~ 07669098 n 0000 %p 07669470 n 0000 ~ 07671107 n 0000 ~ 07671581 n 0000 | meat from a domestic hog or pig -07668902 13 n 01 cut_of_pork 0 007 @ 07653394 n 0000 #p 07668702 n 0000 ~ 07669470 n 0000 ~ 07669891 n 0000 ~ 07670147 n 0000 ~ 07670433 n 0000 ~ 07671459 n 0000 | cut of meat from a hog or pig -07669098 13 n 02 cochon_de_lait 0 suckling_pig 0 001 @ 07668702 n 0000 | whole young pig suitable for roasting -07669211 13 n 02 flitch 1 side_of_bacon 0 003 @ 07670433 n 0000 #p 07669588 n 0000 %p 07669367 n 0000 | salted and cured abdominal wall of a side of pork -07669367 13 n 01 gammon 1 002 @ 07670433 n 0000 #p 07669211 n 0000 | hind portion of a side of bacon -07669470 13 n 01 pork_loin 0 003 @ 07668902 n 0000 #p 07668702 n 0000 %p 07670995 n 0000 | meat from a loin of pork -07669588 13 n 01 side_of_pork 0 003 @ 07655626 n 0000 %p 07669211 n 0000 ~ 07669713 n 0000 | dressed half of a hog carcass -07669713 13 n 01 pork_belly 0 001 @ 07669588 n 0000 | side of fresh pork -07669788 13 n 02 pork_roast 0 roast_pork 0 001 @ 07580782 n 0000 | cut of pork suitable for roasting -07669891 13 n 03 ham 0 jambon 0 gammon 0 003 @ 07668902 n 0000 ~ 07670044 n 0000 ~ 07670328 n 0000 | meat cut from the thigh of a hog (usually smoked) -07670044 13 n 01 Virginia_ham 0 001 @ 07669891 n 0000 | a lean hickory-smoked ham; has dark red meat -07670147 13 n 02 picnic_ham 0 picnic_shoulder 0 001 @ 07668902 n 0000 | shoulder of a hog usually smoked -07670254 13 n 01 porkchop 0 001 @ 07653982 n 0000 | chop cut from a hog -07670328 13 n 01 prosciutto 0 001 @ 07669891 n 0000 | Italian salt-cured ham usually sliced paper thin -07670433 13 n 01 bacon 0 006 @ 07668902 n 0000 ~ 07669211 n 0000 ~ 07669367 n 0000 ~ 07670657 n 0000 %p 07670902 n 0000 ~ 07670995 n 0000 | back and sides of a hog salted and dried or smoked; usually sliced thin and fried -07670657 13 n 01 bacon_strip 0 001 @ 07670433 n 0000 | a slice of bacon -07670731 13 n 01 rind 0 004 @ 14580897 n 0000 ~ 07670902 n 0000 ~ 07738353 n 0000 ~ 07850957 n 0000 | the natural outer covering of food (usually removed before eating) -07670902 13 n 01 bacon_rind 0 002 @ 07670731 n 0000 #p 07670433 n 0000 | the rind of bacon -07670995 13 n 01 Canadian_bacon 0 002 @ 07670433 n 0000 #p 07669470 n 0000 | from a boned strip of cured loin -07671107 13 n 01 salt_pork 0 003 @ 07668702 n 0000 ~ 07671269 n 0000 ~ 07671363 n 0000 | fat from the back and sides and belly of a hog carcass cured with salt -07671269 13 n 01 fatback 0 001 @ 07671107 n 0000 | salt pork from the back of a hog carcass -07671363 13 n 01 sowbelly 0 001 @ 07671107 n 0000 | salt pork from the belly of a hog carcass -07671459 13 n 01 spareribs 1 001 @ 07668902 n 0000 | cut of pork from the rib section with most of the meat trimmed off -07671581 13 n 02 pigs'_feet 0 pigs'_knuckles 0 001 @ 07668702 n 0000 | feet or knuckles of hogs used as food; pickled or stewed or jellied -07671722 13 n 03 chitterlings 0 chitlins 0 chitlings 0 001 @ 07651454 n 0000 | small intestines of hogs prepared as food -07671845 13 n 01 cracklings 0 001 @ 07672135 n 0000 | the crisp residue left after lard has been rendered -07671953 13 n 01 haslet 0 002 @ 07651454 n 0000 @ 07649582 n 0000 | heart and liver and other edible viscera especially of hogs; usually chopped and formed into a loaf and braised -07672135 13 n 01 edible_fat 0 008 @ 14864360 n 0000 ~ 07671845 n 0000 ~ 07672421 n 0000 ~ 07672583 n 0000 ~ 07672687 n 0000 ~ 07672790 n 0000 ~ 07673249 n 0000 ~ 07673397 n 0000 | oily or greasy matter making up the bulk of fatty tissue in animals and in seeds and other plant tissue -07672421 13 n 01 lard 0 003 @ 07672135 n 0000 #s 02395406 n 0000 + 01679669 v 0101 | soft white semisolid fat obtained by rendering the fatty tissue of the hog -07672583 13 n 01 marbling 0 001 @ 07672135 n 0000 | the intermixture of fat and lean in a cut of meat -07672687 13 n 01 shortening 0 001 @ 07672135 n 0000 | fat such as butter or lard used in baked goods -07672790 13 n 01 suet 0 002 @ 07672135 n 0000 + 00992716 a 0101 | hard fat around the kidneys and loins in beef and sheep -07672914 13 n 05 margarine 0 margarin 0 oleo 0 oleomargarine 0 marge 0 004 @ 07856270 n 0000 %s 07673397 n 0000 ~ 07848645 n 0000 %s 14741124 n 0000 | a spread made chiefly from vegetable oils and used as a substitute for butter -07673145 13 n 01 cooking_oil 0 001 @ 07673397 n 0000 | any of numerous vegetable oils used in cooking -07673249 13 n 01 drippings 0 002 @ 07672135 n 0000 + 02071142 v 0101 | fat that exudes from meat and drips off while it is being roasted or fried -07673397 13 n 02 vegetable_oil 0 oil 0 020 @ 07672135 n 0000 #s 07672914 n 0000 + 00992432 a 0202 ~ 07673145 n 0000 ~ 07673872 n 0000 ~ 07674001 n 0000 ~ 07674161 n 0000 ~ 07674267 n 0000 ~ 07674393 n 0000 ~ 07674508 n 0000 ~ 07674617 n 0000 ~ 07674749 n 0000 ~ 07674912 n 0000 ~ 07675040 n 0000 ~ 07675156 n 0000 ~ 07675262 n 0000 ~ 07675411 n 0000 ~ 07675535 n 0000 ~ 11994718 n 0000 ~ 14755641 n 0000 | any of a group of liquid edible fats that are obtained from plants -07673872 13 n 01 sweet_oil 0 001 @ 07673397 n 0000 | mild vegetable oil when used as food; especially olive or edible rape oil -07674001 13 n 02 canola_oil 0 canola 0 002 @ 07673397 n 0000 %s 14968526 n 0000 | vegetable oil made from rapeseed; it is high in monounsaturated fatty acids -07674161 13 n 02 coconut_oil 0 copra_oil 0 002 @ 07673397 n 0000 #s 07772935 n 0000 | oil from coconuts -07674267 13 n 01 corn_oil 0 003 @ 07673397 n 0000 #s 12144580 n 0000 %s 14937943 n 0000 | oil from the germs of corn grains -07674393 13 n 01 cottonseed_oil 0 002 @ 07673397 n 0000 #s 11689815 n 0000 | edible oil pressed from cottonseeds -07674508 13 n 01 olive_oil 0 003 @ 07673397 n 0000 #s 12301445 n 0000 %s 14968526 n 0000 | oil from olives -07674617 13 n 01 palm_oil 0 002 @ 07673397 n 0000 #s 12590715 n 0000 | oil from nuts of oil palms especially the African oil palm -07674749 13 n 02 peanut_oil 0 groundnut_oil 0 003 @ 07673397 n 0000 #s 11748811 n 0000 ;u 08860123 n 0204 | an oil from peanuts; used in cooking and making soap -07674912 13 n 01 salad_oil 0 001 @ 07673397 n 0000 | any of several edible vegetable oils that can be used in salad dressings -07675040 13 n 01 safflower_oil 0 002 @ 07673397 n 0000 #s 11946313 n 0000 | oil from seeds of the safflower plant -07675156 13 n 01 sesame_oil 0 002 @ 07673397 n 0000 #s 07827410 n 0000 | oil obtained from sesame seeds -07675262 13 n 02 soybean_oil 0 soyabean_oil 0 004 @ 07673397 n 0000 #s 07729485 n 0000 %s 14937943 n 0000 %s 14938199 n 0000 | oil from soya beans -07675411 13 n 02 sunflower_oil 0 sunflower-seed_oil 0 002 @ 07673397 n 0000 #s 07775197 n 0000 | oil from sunflower seeds -07675535 13 n 01 walnut_oil 0 002 @ 07673397 n 0000 #s 07771539 n 0000 | oil from walnuts -07675627 13 n 01 sausage 0 014 @ 07649854 n 0000 %s 07675962 n 0000 ~ 07676121 n 0000 ~ 07676273 n 0000 ~ 07676425 n 0000 ~ 07676520 n 0000 ~ 07676602 n 0000 ~ 07677071 n 0000 ~ 07677255 n 0000 ~ 07677360 n 0000 ~ 07677480 n 0000 ~ 07677593 n 0000 ~ 07677747 n 0000 ~ 07678313 n 0000 | highly seasoned minced meat stuffed in casings -07675962 13 n 01 sausage_meat 0 002 @ 07649854 n 0000 #s 07675627 n 0000 | any meat that is minced and spiced and cooked as patties or used to fill sausages -07676121 13 n 03 blood_sausage 0 blood_pudding 0 black_pudding 0 001 @ 07675627 n 0000 | a black sausage containing pig's blood and other ingredients -07676273 13 n 02 bologna 0 Bologna_sausage 0 002 @ 07675627 n 0000 ~ 07676967 n 0000 | large smooth-textured smoked sausage of beef and veal and pork -07676425 13 n 01 chipolata 0 002 @ 07675627 n 0000 ;r 08860123 n 0000 | a small thin sausage -07676520 13 n 01 chorizo 0 001 @ 07675627 n 0000 | a spicy Spanish pork sausage -07676602 13 n 08 frank 0 frankfurter 0 hotdog 1 hot_dog 1 dog 1 wiener 0 wienerwurst 0 weenie 0 003 @ 07675627 n 0000 #p 07697537 n 0000 ~ 07676855 n 0000 | a smooth-textured sausage of minced beef or pork usually smoked; often served on a bread roll -07676855 13 n 01 Vienna_sausage 0 001 @ 07676602 n 0000 | short slender frankfurter usually with ends cut off -07676967 13 n 01 polony 0 002 @ 07676273 n 0000 ;r 08860123 n 0000 | another name for Bologna sausage -07677071 13 n 01 headcheese 0 002 @ 07675627 n 0000 @ 07649582 n 0000 | sausage or jellied loaf made of chopped parts of the head meat and sometimes feet and tongue of a calf or pig -07677255 13 n 02 knackwurst 0 knockwurst 0 001 @ 07675627 n 0000 | short thick highly seasoned sausage -07677360 13 n 03 liver_pudding 0 liver_sausage 0 liverwurst 0 001 @ 07675627 n 0000 | sausage containing ground liver -07677480 13 n 01 pepperoni 0 001 @ 07675627 n 0000 | a pork and beef sausage (or a thin slice of this sausage) -07677593 13 n 01 pork_sausage 0 005 @ 07675627 n 0000 ~ 07677860 n 0000 ~ 07677982 n 0000 ~ 07678065 n 0000 ~ 07678193 n 0000 | sausage containing pork -07677747 13 n 01 salami 0 001 @ 07675627 n 0000 | highly seasoned fatty sausage of pork and beef usually dried -07677860 13 n 01 banger 0 003 @ 07677593 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | (British informal) pork sausage -07677982 13 n 02 bratwurst 0 brat 0 001 @ 07677593 n 0000 | a small pork sausage -07678065 13 n 01 linguica 0 001 @ 07677593 n 0000 | a highly seasoned Portuguese pork sausage flavored with garlic and onions -07678193 13 n 01 saveloy 0 002 @ 07677593 n 0000 ;r 08860123 n 0000 | a ready-cooked and highly seasoned pork sausage -07678313 13 n 01 souse 0 002 @ 07675627 n 0000 + 00321801 v 0101 | pork trimmings chopped and pickled and jelled -07678428 13 n 02 lunch_meat 0 luncheon_meat 0 002 @ 07654438 n 0000 @ 07649582 n 0000 | any of various sausages or molded loaf meats sliced and served cold -07678586 13 n 01 mincemeat 0 001 @ 07882497 n 0000 | spiced mixture of chopped raisins and apples and other ingredients with or without meat -07678729 13 n 02 stuffing 0 dressing 2 006 @ 07882497 n 0000 + 00542809 v 0201 + 00320681 v 0102 ~ 07678953 n 0000 ~ 07679034 n 0000 ~ 07679140 n 0000 | a mixture of seasoned ingredients used to stuff meats and vegetables -07678953 13 n 01 turkey_stuffing 0 001 @ 07678729 n 0000 | stuffing for turkey -07679034 13 n 02 oyster_stuffing 0 oyster_dressing 0 001 @ 07678729 n 0000 | stuffing made with oysters -07679140 13 n 02 forcemeat 0 farce 0 002 @ 07678729 n 0000 + 00320681 v 0201 | mixture of ground raw chicken and mushrooms with pistachios and truffles and onions and parsley and lots of butter and bound with eggs -07679356 13 n 03 bread 0 breadstuff 1 staff_of_life 0 036 @ 07622061 n 0000 @ 07566863 n 0000 #p 07695965 n 0000 + 01337653 v 0101 %s 07569106 n 0000 ~ 07680168 n 0000 ~ 07680313 n 0000 ~ 07680416 n 0000 ~ 07680517 n 0000 ~ 07680761 n 0000 ~ 07680932 n 0000 ~ 07681355 n 0000 ~ 07681450 n 0000 ~ 07681691 n 0000 ~ 07681805 n 0000 ~ 07681926 n 0000 ~ 07682197 n 0000 ~ 07682316 n 0000 ~ 07682477 n 0000 ~ 07682624 n 0000 ~ 07682808 n 0000 ~ 07682952 n 0000 ~ 07683138 n 0000 ~ 07683786 n 0000 ~ 07684164 n 0000 ~ 07684289 n 0000 ~ 07684422 n 0000 ~ 07684517 n 0000 ~ 07684600 n 0000 ~ 07685730 n 0000 ~ 07686461 n 0000 ~ 07686634 n 0000 ~ 07686720 n 0000 ~ 07686873 n 0000 ~ 07687053 n 0000 ~ 07687211 n 0000 | food made from dough of flour or meal and usually raised with yeast or baking powder and then baked -07680168 13 n 01 anadama_bread 0 002 @ 07679356 n 0000 ;r 09048880 n 0000 | a yeast-raised bread made of white flour and cornmeal and molasses -07680313 13 n 01 bap 0 002 @ 07679356 n 0000 ;r 08890097 n 0000 | a small loaf or roll of soft bread -07680416 13 n 01 barmbrack 0 002 @ 07679356 n 0000 ;r 08859173 n 0000 | a rich currant cake or bun -07680517 13 n 02 breadstick 0 bread-stick 0 002 @ 07679356 n 0000 ~ 07680655 n 0000 | a crisp stick-shaped roll; often served with soup -07680655 13 n 01 grissino 0 002 @ 07680517 n 0000 ;r 08801678 n 0000 | a long slender crusty breadstick -07680761 13 n 02 brown_bread 1 Boston_brown_bread 0 001 @ 07679356 n 0000 | dark steamed bread made of cornmeal wheat and flour with molasses and soda and milk or water -07680932 13 n 02 bun 0 roll 0 014 @ 07679356 n 0000 ~ 07681264 n 0000 ~ 07690019 n 0000 ~ 07690152 n 0000 ~ 07691539 n 0000 ~ 07691650 n 0000 ~ 07691758 n 0000 ~ 07691863 n 0000 ~ 07691954 n 0000 ~ 07692114 n 0000 ~ 07692248 n 0000 ~ 07692405 n 0000 ~ 07692614 n 0000 ~ 07693725 n 0000 | small rounded bread either plain or sweet -07681264 13 n 01 tea_bread 0 001 @ 07680932 n 0000 | sweetened buns to be eaten with tea -07681355 13 n 01 caraway_seed_bread 0 001 @ 07679356 n 0000 | bread containing caraway seeds -07681450 13 n 02 challah 0 hallah 0 003 @ 07679356 n 0000 ;c 00243918 n 0000 ;c 06232880 n 0000 | (Judaism) a loaf of white bread containing eggs and leavened with yeast; often formed into braided loaves and glazed with eggs before baking -07681691 13 n 01 cinnamon_bread 0 001 @ 07679356 n 0000 | bread flavored with cinnamon often containing raisins -07681805 13 n 01 cracked-wheat_bread 0 001 @ 07679356 n 0000 | bread made with cracked wheat that has been ground fine -07681926 13 n 01 cracker 0 007 @ 07679356 n 0000 ~ 07695187 n 0000 ~ 07695284 n 0000 ~ 07695410 n 0000 ~ 07695504 n 0000 ~ 07695652 n 0000 ~ 07695742 n 0000 | a thin crisp wafer made of flour and water with or without leavening and shortening; unsweetened or semisweet -07682197 13 n 01 crouton 0 001 @ 07679356 n 0000 | a small piece of toasted or fried bread; served in soup or salads -07682316 13 n 04 dark_bread 0 whole_wheat_bread 0 whole_meal_bread 0 brown_bread 2 002 @ 07679356 n 0000 ~ 07683039 n 0000 | bread made with whole wheat flour -07682477 13 n 01 English_muffin 0 001 @ 07679356 n 0000 | round, raised muffin cooked on a griddle; usually split and toasted before being eaten -07682624 13 n 01 flatbread 0 005 @ 07679356 n 0000 ~ 07683265 n 0000 ~ 07683360 n 0000 ~ 07683490 n 0000 ~ 07683617 n 0000 | any of various breads made from usually unleavened dough -07682808 13 n 01 garlic_bread 0 001 @ 07679356 n 0000 | French or Italian bread sliced and spread with garlic butter then crisped in the oven -07682952 13 n 01 gluten_bread 0 001 @ 07679356 n 0000 | bread made with gluten flour -07683039 13 n 01 graham_bread 0 001 @ 07682316 n 0000 | bread made of graham (whole wheat) flour -07683138 13 n 01 Host 0 001 @ 07679356 n 0000 | a technical name for the bread used in the service of Mass or Holy Communion -07683265 13 n 01 flatbrod 0 001 @ 07682624 n 0000 | the thin wafer-like bread of Scandinavia -07683360 13 n 01 bannock 0 001 @ 07682624 n 0000 | a flat bread made of oat or barley flour; common in New England and Scotland -07683490 13 n 02 chapatti 0 chapati 0 002 @ 07682624 n 0000 ;r 08900535 n 0000 | flat pancake-like bread cooked on a griddle -07683617 13 n 02 pita 0 pocket_bread 0 003 @ 07682624 n 0000 #p 07698250 n 0000 ;r 08791167 n 0000 | usually small round bread that can open into a pocket for filling -07683786 13 n 02 loaf_of_bread 0 loaf 0 004 @ 07679356 n 0000 %p 07683973 n 0000 ~ 07684084 n 0000 ~ 07871810 n 0000 | a shaped mass of baked bread that is usually sliced before eating -07683973 13 n 01 heel 0 002 @ 08566028 n 0000 #p 07683786 n 0000 | one of the crusty ends of a loaf of bread -07684084 13 n 01 French_loaf 0 001 @ 07683786 n 0000 | a loaf of French bread -07684164 13 n 04 matzo 0 matzoh 0 matzah 0 unleavened_bread 0 001 @ 07679356 n 0000 | brittle flat bread eaten at Passover -07684289 13 n 02 nan 0 naan 0 001 @ 07679356 n 0000 | leavened bread baked in a clay oven in India; usually shaped like a teardrop -07684422 13 n 01 onion_bread 0 001 @ 07679356 n 0000 | bread containing finely minced onions -07684517 13 n 01 raisin_bread 0 001 @ 07679356 n 0000 | bread containing raisins -07684600 13 n 01 quick_bread 0 013 @ 07679356 n 0000 ~ 07684938 n 0000 ~ 07685031 n 0000 ~ 07685118 n 0000 ~ 07685218 n 0000 ~ 07685303 n 0000 ~ 07685399 n 0000 ~ 07685546 n 0000 ~ 07687789 n 0000 ~ 07690273 n 0000 ~ 07690585 n 0000 ~ 07690892 n 0000 ~ 07693972 n 0000 | breads made with a leavening agent that permits immediate baking -07684938 13 n 01 banana_bread 0 001 @ 07684600 n 0000 | moist bread containing banana pulp -07685031 13 n 01 date_bread 0 001 @ 07684600 n 0000 | bread containing chopped dates -07685118 13 n 01 date-nut_bread 0 001 @ 07684600 n 0000 | bread containing chopped dates and nuts -07685218 13 n 01 nut_bread 0 001 @ 07684600 n 0000 | bread containing chopped nuts -07685303 13 n 01 oatcake 0 001 @ 07684600 n 0000 | thin flat unleavened cake of baked oatmeal -07685399 13 n 01 Irish_soda_bread 0 001 @ 07684600 n 0000 | round loaf made with soda and buttermilk; often containing caraway seeds and raisins -07685546 13 n 02 skillet_bread 0 fry_bread 0 001 @ 07684600 n 0000 | usually cooked in a skillet over an open fire: especially cornbread with ham bits and sometimes Irish soda bread -07685730 13 n 01 rye_bread 0 005 @ 07679356 n 0000 ~ 07685918 n 0000 ~ 07686021 n 0000 ~ 07686202 n 0000 ~ 07686299 n 0000 | any of various breads made entirely or partly with rye flour -07685918 13 n 02 black_bread 0 pumpernickel 0 001 @ 07685730 n 0000 | bread made of coarse rye flour -07686021 13 n 02 Jewish_rye_bread 0 Jewish_rye 0 003 @ 07685730 n 0000 ;c 00243918 n 0000 ;c 06232880 n 0000 | (Judaism) bread made with rye flour; usually contains caraway seeds -07686202 13 n 01 limpa 0 001 @ 07685730 n 0000 | a rye bread made with molasses or brown sugar -07686299 13 n 02 Swedish_rye_bread 0 Swedish_rye 0 001 @ 07685730 n 0000 | a moist aromatic yeast-raised bread made with rye flour and molasses and orange rind -07686461 13 n 01 salt-rising_bread 0 001 @ 07679356 n 0000 | white wheat bread raised by a salt-tolerant bacterium in a mixture of salt and either cornmeal or potato pulp -07686634 13 n 01 simnel 0 001 @ 07679356 n 0000 | a crisp bread of fine white flour -07686720 13 n 02 sour_bread 0 sourdough_bread 0 001 @ 07679356 n 0000 | made with a starter of a small amount of dough in which fermentation is active -07686873 13 n 01 toast 0 006 @ 07679356 n 0000 + 00322151 v 0102 ~ 07689490 n 0000 ~ 07689624 n 0000 ~ 07689757 n 0000 ~ 07689842 n 0000 | slices of bread that have been toasted -07687053 13 n 01 wafer 2 001 @ 07679356 n 0000 | thin disk of unleavened bread used in a religious service (especially in the celebration of the Eucharist) -07687211 13 n 02 white_bread 0 light_bread 0 003 @ 07679356 n 0000 ~ 07687469 n 0000 ~ 07687626 n 0000 | bread made with finely ground and usually bleached wheat flour -07687381 13 n 02 baguet 0 baguette 0 001 @ 07687469 n 0000 | narrow French stick loaf -07687469 13 n 01 French_bread 0 002 @ 07687211 n 0000 ~ 07687381 n 0000 | a crusty sourdough bread often baked in long slender tapered loaves or baguettes -07687626 13 n 01 Italian_bread 0 001 @ 07687211 n 0000 | unsweetened yeast-raised bread made without shortening and baked in long thick loaves with tapered ends -07687789 13 n 01 cornbread 0 009 @ 07684600 n 0000 ~ 07688021 n 0000 ~ 07688130 n 0000 ~ 07688265 n 0000 ~ 07688624 n 0000 ~ 07688757 n 0000 ~ 07688898 n 0000 ~ 07689003 n 0000 ~ 07689313 n 0000 | bread made primarily of cornmeal -07688021 13 n 01 corn_cake 0 001 @ 07687789 n 0000 | baked in a pan or on a griddle (southern and midland) -07688130 13 n 01 skillet_corn_bread 0 001 @ 07687789 n 0000 | cornbread usually containing ham or bacon bits and cooked in a skillet -07688265 13 n 03 ashcake 0 ash_cake 0 corn_tash 0 001 @ 07687789 n 0000 | corn bread wrapped in cabbage leaves and baked in hot ashes (southern) -07688412 13 n 01 hoecake 0 003 @ 07689003 n 0000 ;r 09050730 n 0000 %s 07568095 n 0000 | thin usually unleavened johnnycake made of cornmeal; originally baked on the blade of a hoe over an open fire (southern) -07688624 13 n 02 cornpone 0 pone 0 001 @ 07687789 n 0000 | cornbread often made without milk or eggs and baked or fried (southern) -07688757 13 n 03 corn_dab 0 corn_dodger 0 dodger 0 001 @ 07687789 n 0000 | small oval cake of corn bread baked or fried (chiefly southern) -07688898 13 n 02 hush_puppy 0 hushpuppy 0 001 @ 07687789 n 0000 | deep-fried cornbread ball (southern) -07689003 13 n 03 johnnycake 0 johnny_cake 0 journey_cake 0 004 @ 07687789 n 0000 ;r 09048880 n 0000 ~ 07688412 n 0000 ~ 07689217 n 0000 | cornbread usually cooked pancake-style on a griddle (chiefly New England) -07689217 13 n 01 Shawnee_cake 0 002 @ 07689003 n 0000 ;r 09137032 n 0000 | form of johnnycake -07689313 13 n 02 spoon_bread 0 batter_bread 0 001 @ 07687789 n 0000 | soft bread made of cornmeal and sometimes rice or hominy; must be served with a spoon (chiefly southern) -07689490 13 n 01 cinnamon_toast 0 001 @ 07686873 n 0000 | buttered toast with sugar and cinnamon (and nutmeg and grated lemon peel) -07689624 13 n 01 orange_toast 0 001 @ 07686873 n 0000 | buttered toast with sugar and grated orange rind and a little orange juice -07689757 13 n 01 Melba_toast 0 001 @ 07686873 n 0000 | very thin crisp brown toast -07689842 13 n 04 zwieback 0 rusk 0 Brussels_biscuit 0 twice-baked_bread 0 001 @ 07686873 n 0000 | slice of sweet raised bread baked again until it is brown and hard and crisp -07690019 13 n 02 frankfurter_bun 0 hotdog_bun 0 002 @ 07680932 n 0000 #p 07697537 n 0000 | a long bun shaped to hold a frankfurter -07690152 13 n 02 hamburger_bun 0 hamburger_roll 0 001 @ 07680932 n 0000 | a round bun shaped to hold a hamburger patty -07690273 13 n 02 muffin 0 gem 0 004 @ 07684600 n 0000 ~ 07690431 n 0000 ~ 07690511 n 0000 ~ 07690739 n 0000 | a sweet quick bread baked in a cup-shaped pan -07690431 13 n 01 bran_muffin 0 001 @ 07690273 n 0000 | muffin containing bran -07690511 13 n 01 corn_muffin 0 001 @ 07690273 n 0000 | cornbread muffin -07690585 13 n 01 Yorkshire_pudding 0 001 @ 07684600 n 0000 | light puffy bread made of a puff batter and traditionally baked in the pan with roast beef -07690739 13 n 01 popover 0 001 @ 07690273 n 0000 | light hollow muffin made of a puff batter (individual Yorkshire pudding) baked in a deep muffin cup -07690892 13 n 01 scone 0 002 @ 07684600 n 0000 ~ 07691091 n 0000 | small biscuit (rich with cream and eggs) cut into diamonds or sticks and baked in an oven or (especially originally) on a griddle -07691091 13 n 03 drop_scone 0 griddlecake 2 Scotch_pancake 0 001 @ 07690892 n 0000 | a scone made by dropping a spoonful of batter on a griddle -07691237 13 n 02 cross_bun 0 hot_cross_bun 0 001 @ 07692614 n 0000 | moderately sweet raised roll containing spices and raisins and citron and decorated with a cross-shaped sugar glaze -07691424 13 n 01 coffee_ring 0 001 @ 07630512 n 0000 | ring-shaped coffeecake with fruits or nuts and often iced -07691539 13 n 01 brioche 0 001 @ 07680932 n 0000 | a light roll rich with eggs and butter and somewhat sweet -07691650 13 n 02 crescent_roll 0 croissant 0 001 @ 07680932 n 0000 | very rich flaky crescent-shaped roll -07691758 13 n 02 hard_roll 0 Vienna_roll 0 001 @ 07680932 n 0000 | yeast-raised roll with a hard crust -07691863 13 n 01 soft_roll 0 001 @ 07680932 n 0000 | yeast-raised roll with a soft crust -07691954 13 n 01 kaiser_roll 0 001 @ 07680932 n 0000 | rounded raised poppy-seed roll made of a square piece of dough by folding the corners in to the center -07692114 13 n 01 Parker_House_roll 0 001 @ 07680932 n 0000 | yeast-raised dinner roll made by folding a disk of dough before baking -07692248 13 n 01 clover-leaf_roll 0 001 @ 07680932 n 0000 | yeast-raised dinner roll made by baking three small balls of dough in each cup of a muffin pan -07692405 13 n 01 onion_roll 0 002 @ 07680932 n 0000 ~ 07692517 n 0000 | yeast-raised roll flavored with onion -07692517 13 n 02 bialy 0 bialystoker 0 001 @ 07692405 n 0000 | flat crusty-bottomed onion roll -07692614 13 n 02 sweet_roll 0 coffee_roll 0 007 @ 07680932 n 0000 ~ 07691237 n 0000 ~ 07692887 n 0000 ~ 07693048 n 0000 ~ 07693223 n 0000 ~ 07693439 n 0000 ~ 07693590 n 0000 | any of numerous yeast-raised sweet rolls with our without raisins or nuts or spices or a glaze -07692887 13 n 02 bear_claw 0 bear_paw 0 001 @ 07692614 n 0000 | almond-flavored yeast-raised pastry shaped in an irregular semicircle resembling a bear's claw -07693048 13 n 03 cinnamon_roll 0 cinnamon_bun 0 cinnamon_snail 0 001 @ 07692614 n 0000 | rolled dough spread with cinnamon and sugar (and raisins) then sliced before baking -07693223 13 n 04 honey_bun 0 sticky_bun 0 caramel_bun 0 schnecken 0 001 @ 07692614 n 0000 | rolled dough spread with sugar and nuts then sliced and baked in muffin tins with honey or sugar and butter in the bottom -07693439 13 n 01 pinwheel_roll 0 001 @ 07692614 n 0000 | pinwheel-shaped rolls spread with cinnamon and sugar and filled with e.g. jam before baking -07693590 13 n 02 danish 0 danish_pastry 0 001 @ 07692614 n 0000 | light sweet yeast-raised roll usually filled with fruits or cheese -07693725 13 n 02 bagel 0 beigel 0 003 @ 07680932 n 0000 ;c 06951067 n 0000 ~ 07693889 n 0000 | (Yiddish) glazed yeast-raised doughnut-shaped roll with hard crust -07693889 13 n 01 onion_bagel 0 001 @ 07693725 n 0000 | bagel flavored with onion -07693972 13 n 01 biscuit 0 006 @ 07684600 n 0000 ~ 07694169 n 0000 ~ 07694268 n 0000 ~ 07694403 n 0000 ~ 07694516 n 0000 ~ 07694839 n 0000 | small round bread leavened with baking-powder or soda -07694169 13 n 01 rolled_biscuit 0 001 @ 07693972 n 0000 | biscuit made from dough rolled and cut -07694268 13 n 01 drop_biscuit 0 001 @ 07693972 n 0000 | biscuit made from dough with enough milk that it can be dropped from a spoon -07694403 13 n 01 baking-powder_biscuit 0 002 @ 07693972 n 0000 ~ 07694659 n 0000 | leavened with baking powder -07694516 13 n 02 buttermilk_biscuit 0 soda_biscuit 0 001 @ 07693972 n 0000 | very tender biscuit partially leavened with buttermilk and soda -07694659 13 n 01 shortcake 0 001 @ 07694403 n 0000 | very short biscuit dough baked as individual biscuits or a round loaf; served with sweetened fruit and usually whipped cream -07694839 13 n 05 hardtack 0 pilot_biscuit 0 pilot_bread 0 sea_biscuit 0 ship_biscuit 0 001 @ 07693972 n 0000 | very hard unsalted biscuit or bread; a former ship's staple -07695012 13 n 01 wafer 1 001 @ 07635155 n 0000 | a small thin crisp cake or cookie -07695097 13 n 01 brandysnap 0 001 @ 07636384 n 0000 | a gingersnap flavored with brandy -07695187 13 n 01 saltine 0 001 @ 07681926 n 0000 | a cracker sprinkled with salt before baking -07695284 13 n 01 soda_cracker 0 001 @ 07681926 n 0000 | unsweetened cracker leavened slightly with soda and cream of tartar -07695410 13 n 01 oyster_cracker 0 001 @ 07681926 n 0000 | a small dry usually round cracker -07695504 13 n 01 water_biscuit 0 001 @ 07681926 n 0000 | a thin flour-and-water biscuit usually made without shortening; often served with cheese -07695652 13 n 01 graham_cracker 0 001 @ 07681926 n 0000 | semisweet whole-wheat cracker -07695742 13 n 01 pretzel 0 002 @ 07681926 n 0000 ~ 07695878 n 0000 | glazed and salted cracker typically in the shape of a loose knot -07695878 13 n 01 soft_pretzel 0 001 @ 07695742 n 0000 | a pretzel made of soft bread -07695965 13 n 01 sandwich 0 019 @ 07712382 n 0000 #p 07573696 n 0000 + 01665081 v 0101 %p 07679356 n 0000 ~ 07696527 n 0000 ~ 07696625 n 0000 ~ 07696728 n 0000 ~ 07696839 n 0000 ~ 07696977 n 0000 ~ 07697100 n 0000 ~ 07697408 n 0000 ~ 07697537 n 0000 ~ 07697699 n 0000 ~ 07697825 n 0000 ~ 07698250 n 0000 ~ 07698401 n 0000 ~ 07698543 n 0000 ~ 07698672 n 0000 ~ 07698782 n 0000 | two (or more) slices of bread with a filling between them -07696403 13 n 01 sandwich_plate 0 001 @ 07557434 n 0000 | a serving consisting of a sandwich or sandwiches with garnishes -07696527 13 n 01 butty 0 002 @ 07695965 n 0000 ;r 08860123 n 0000 | a sandwich; "a bacon butty" -07696625 13 n 01 ham_sandwich 0 001 @ 07695965 n 0000 | a sandwich made with a filling of sliced ham -07696728 13 n 01 chicken_sandwich 0 001 @ 07695965 n 0000 | a sandwich made with a filling of sliced chicken -07696839 13 n 03 club_sandwich 0 three-decker 0 triple-decker 0 001 @ 07695965 n 0000 | made with three slices of usually toasted bread -07696977 13 n 02 open-face_sandwich 0 open_sandwich 0 001 @ 07695965 n 0000 | sandwich without a covering slice of bread -07697100 13 n 03 hamburger 1 beefburger 0 burger 0 003 @ 07695965 n 0000 %p 07664007 n 0000 ~ 07697313 n 0000 | a sandwich consisting of a fried cake of minced beef served on a bun, often with other ingredients -07697313 13 n 01 cheeseburger 0 001 @ 07697100 n 0000 | a hamburger with melted cheese on it -07697408 13 n 01 tunaburger 0 001 @ 07695965 n 0000 | a sandwich that resembles a hamburger but made with tuna instead of beef -07697537 13 n 03 hotdog 2 hot_dog 2 red_hot 0 004 @ 07695965 n 0000 %p 07676602 n 0000 %p 07690019 n 0000 ~ 07865105 n 0000 | a frankfurter served hot on a bun -07697699 13 n 01 Sloppy_Joe 0 001 @ 07695965 n 0000 | ground beef (not a patty) cooked in a spicy sauce and served on a bun -07697825 13 n 0f bomber 0 grinder 0 hero 0 hero_sandwich 0 hoagie 0 hoagy 0 Cuban_sandwich 0 Italian_sandwich 0 poor_boy 0 sub 0 submarine 0 submarine_sandwich 0 torpedo 0 wedge 0 zep 0 001 @ 07695965 n 0000 | a large sandwich made of a long crusty roll split lengthwise and filled with meats and cheese (and tomato and onion and lettuce and condiments); different names are used in different sections of the United States -07698250 13 n 01 gyro 0 002 @ 07695965 n 0000 %p 07683617 n 0000 | a Greek sandwich: sliced roast lamb with onion and tomato stuffed into pita bread -07698401 13 n 02 bacon-lettuce-tomato_sandwich 0 BLT 0 001 @ 07695965 n 0000 | sandwich filled with slices of bacon and tomato with lettuce -07698543 13 n 01 Reuben 0 001 @ 07695965 n 0000 | a hot sandwich with corned beef and Swiss cheese and sauerkraut on rye bread -07698672 13 n 02 western 0 western_sandwich 0 001 @ 07695965 n 0000 | a sandwich made from a western omelet -07698782 13 n 01 wrap 0 002 @ 07695965 n 0000 %p 07880583 n 0000 | a sandwich in which the filling is rolled up in a soft tortilla -07698915 13 n 02 pasta 0 alimentary_paste 0 022 @ 07555863 n 0000 ~ 07699430 n 0000 ~ 07699584 n 0000 ~ 07699682 n 0000 ~ 07699914 n 0000 ~ 07700095 n 0000 ~ 07700167 n 0000 ~ 07700255 n 0000 ~ 07700348 n 0000 ~ 07700439 n 0000 ~ 07700539 n 0000 ~ 07700638 n 0000 ~ 07700868 n 0000 ~ 07700964 n 0000 ~ 07701053 n 0000 ~ 07701147 n 0000 ~ 07701244 n 0000 ~ 07701372 n 0000 ~ 07701457 n 0000 ~ 07701597 n 0000 ~ 07702193 n 0000 ~ 07872492 n 0000 | shaped and dried dough made from flour and water and sometimes egg -07699430 13 n 02 farfalle 0 bowtie_pasta 0 001 @ 07698915 n 0000 | pasta shaped with scalloped edges and pinched in the middle, suggestive of a bow tie -07699584 13 n 01 noodle 0 002 @ 07698915 n 0000 ~ 07699815 n 0000 | a ribbonlike strip of pasta -07699682 13 n 01 orzo 0 001 @ 07698915 n 0000 | pasta shaped like pearls of barley; frequently prepared with lamb in Greek cuisine -07699815 13 n 01 egg_noodle 0 001 @ 07699584 n 0000 | narrow strip of pasta dough made with eggs -07699914 13 n 01 spaghetti 0 001 @ 07698915 n 0000 | pasta in the form of long strings -07700003 13 n 01 spaghetti 1 001 @ 07863374 n 0000 | spaghetti served with a tomato sauce -07700095 13 n 01 spaghettini 0 001 @ 07698915 n 0000 | thin spaghetti -07700167 13 n 01 tortellini 0 001 @ 07698915 n 0000 | small ring-shaped stuffed pasta -07700255 13 n 01 ziti 0 001 @ 07698915 n 0000 | medium-sized tubular pasta in short pieces -07700348 13 n 01 rigatoni 0 001 @ 07698915 n 0000 | tubular pasta in short ribbed pieces -07700439 13 n 01 fedelline 0 001 @ 07698915 n 0000 | extremely fine pasta thinner than vermicelli -07700539 13 n 02 linguine 0 linguini 0 001 @ 07698915 n 0000 | pasta in long slender flat strips -07700638 13 n 02 fettuccine 0 fettuccini 0 002 @ 07698915 n 0000 ~ 07700766 n 0000 | pasta in flat strips wider than linguine -07700766 13 n 01 fettuccine_Alfredo 0 001 @ 07700638 n 0000 | fettuccine in cream sauce with cheese -07700868 13 n 01 vermicelli 0 001 @ 07698915 n 0000 | pasta in strings thinner than spaghetti -07700964 13 n 01 macaroni 0 001 @ 07698915 n 0000 | pasta in the form of slender tubes -07701053 13 n 02 lasagna 1 lasagne 0 001 @ 07698915 n 0000 | very wide flat strips of pasta -07701147 13 n 01 penne 0 001 @ 07698915 n 0000 | pasta in short tubes with diagonally cut ends -07701244 13 n 02 ravioli 0 cappelletti 0 001 @ 07698915 n 0000 | small circular or square cases of dough with savory fillings -07701372 13 n 01 tagliatelle 0 001 @ 07698915 n 0000 | pasta cut in narrow ribbons -07701457 13 n 01 manicotti 0 001 @ 07698915 n 0000 | large pasta tubes stuffed with chopped meat or mild cheese and baked in tomato sauce -07701597 13 n 01 couscous 0 001 @ 07698915 n 0000 | a pasta made in northern Africa of crushed and steamed semolina -07701715 13 n 01 gnocchi 0 001 @ 07702193 n 0000 | (Italian) a small dumpling made of potato or flour or semolina that is boiled or baked and is usually served with a sauce or with grated cheese -07701912 13 n 03 matzo_ball 0 matzoh_ball 0 matzah_ball 0 001 @ 07702193 n 0000 | a Jewish dumpling made of matzo meal; usually served in soup -07702057 13 n 02 won_ton 0 wonton 0 001 @ 07702193 n 0000 | a Chinese dumpling filled with spiced minced pork; usually served in soup -07702193 13 n 02 dumpling 1 dumplings 0 004 @ 07698915 n 0000 ~ 07701715 n 0000 ~ 07701912 n 0000 ~ 07702057 n 0000 | small balls or strips of boiled or steamed dough -07702362 13 n 01 health_food 0 002 @ 07555863 n 0000 -c 02558767 a 0000 | any natural or prepared food popularly believed to promote good health -07702509 13 n 01 junk_food 0 001 @ 07555863 n 0000 | food that tastes good but is high in calories having little nutritional value -07702642 13 n 01 breakfast_food 0 003 @ 07555863 n 0000 ~ 07702796 n 0000 ~ 07702957 n 0000 | any food (especially cereal) usually served for breakfast -07702796 13 n 01 cereal 0 005 @ 07702642 n 0000 + 02688623 a 0101 ~ 07703053 n 0000 ~ 07703177 n 0000 ~ 07704755 n 0000 | a breakfast food prepared from grain -07702957 13 n 01 muesli 0 001 @ 07702642 n 0000 | mixture of untoasted dry cereals and fruits -07703053 13 n 01 Pablum 0 003 @ 07702796 n 0000 #p 07564796 n 0000 ;u 06851742 n 0000 | a soft form of cereal for infants -07703177 13 n 01 hot_cereal 0 005 @ 07702796 n 0000 ~ 07703333 n 0000 ~ 07704428 n 0000 ~ 07704579 n 0000 ~ 07704656 n 0000 | a cereal that is served hot -07703333 13 n 02 mush 0 cornmeal_mush 0 006 @ 07703177 n 0000 + 01154639 a 0101 %s 07568095 n 0000 ~ 07703515 n 0000 ~ 07703599 n 0000 ~ 07703743 n 0000 | cornmeal boiled in water -07703515 13 n 01 atole 0 001 @ 07703333 n 0000 | eaten as mush or as a thin gruel -07703599 13 n 01 hasty_pudding 1 002 @ 07703333 n 0000 ;r 09048880 n 0000 | cornmeal mush served with sweetening (maple syrup or brown sugar) -07703743 13 n 01 polenta 0 003 @ 07703333 n 0000 ;r 08801678 n 0000 %s 07568095 n 0000 | a thick mush made of cornmeal boiled in stock or water -07703889 13 n 01 hasty_pudding 2 002 @ 07874780 n 0000 ;r 08860123 n 0000 | sweetened porridge made of tapioca or flour or oatmeal cooked quickly in milk or water -07704054 13 n 01 gruel 0 004 @ 07874780 n 0000 ~ 07704205 n 0000 ~ 07704305 n 0000 ~ 07875086 n 0000 | a thin porridge (usually oatmeal or cornmeal) -07704205 13 n 02 congee 0 jook 0 001 @ 07704054 n 0000 | a Chinese rice gruel eaten for breakfast -07704305 13 n 01 skilly 0 001 @ 07704054 n 0000 | a thin porridge or soup (usually oatmeal and water flavored with meat) -07704428 13 n 02 grits 0 hominy_grits 0 001 @ 07703177 n 0000 | coarsely ground hulled corn boiled as a breakfast dish in the southern United States -07704579 13 n 01 kasha 0 001 @ 07703177 n 0000 | boiled or baked buckwheat -07704656 13 n 01 frumenty 0 001 @ 07703177 n 0000 | sweet spiced porridge made from hulled wheat -07704755 13 n 02 cold_cereal 0 dry_cereal 0 008 @ 07702796 n 0000 ~ 07704994 n 0000 ~ 07705221 n 0000 ~ 07705303 n 0000 ~ 07705386 n 0000 ~ 07705473 n 0000 ~ 07705557 n 0000 ~ 07705633 n 0000 | a cereal that is not heated before serving -07704994 13 n 01 granola 0 001 @ 07704755 n 0000 | cereal made of especially rolled oats with dried fruits and nuts and honey or brown sugar -07705137 13 n 01 granola_bar 0 001 @ 07635155 n 0000 | cookie bar made of granola -07705221 13 n 01 raisin_bran 0 001 @ 07704755 n 0000 | bran flakes with raisins -07705303 13 n 01 corn_flake 0 001 @ 07704755 n 0000 | crisp flake made from corn -07705386 13 n 01 bran_flake 0 001 @ 07704755 n 0000 | wheat flake including the bran -07705473 13 n 01 wheatflake 0 001 @ 07704755 n 0000 | crisp flake made from wheat -07705557 13 n 01 puffed_rice 0 001 @ 07704755 n 0000 | puffy rice kernels -07705633 13 n 01 puffed_wheat 0 001 @ 07704755 n 0000 | puffy wheat berries -07705711 13 n 04 produce 0 green_goods 0 green_groceries 0 garden_truck 0 005 @ 07555863 n 0000 + 01739814 v 0104 ~ 07705931 n 0000 ~ 07707451 n 0000 ~ 07708260 n 0000 | fresh fruits and vegetable grown for the market -07705931 13 n 01 edible_fruit 0 078 @ 07705711 n 0000 @ 13134947 n 0000 ~ 07738105 n 0000 ~ 07738224 n 0000 %p 07738353 n 0000 ~ 07739035 n 0000 ~ 07739125 n 0000 ~ 07742704 n 0000 ~ 07745803 n 0000 ~ 07746551 n 0000 ~ 07746749 n 0000 ~ 07746910 n 0000 ~ 07747055 n 0000 ~ 07748574 n 0000 ~ 07750872 n 0000 ~ 07751004 n 0000 ~ 07751148 n 0000 ~ 07751280 n 0000 ~ 07751451 n 0000 ~ 07752377 n 0000 ~ 07753113 n 0000 ~ 07753275 n 0000 ~ 07753448 n 0000 ~ 07753592 n 0000 ~ 07753743 n 0000 ~ 07754451 n 0000 ~ 07754684 n 0000 ~ 07755262 n 0000 ~ 07755411 n 0000 ~ 07757132 n 0000 ~ 07758407 n 0000 ~ 07758680 n 0000 ~ 07760859 n 0000 ~ 07762114 n 0000 ~ 07762244 n 0000 ~ 07762373 n 0000 ~ 07762534 n 0000 ~ 07762740 n 0000 ~ 07762913 n 0000 ~ 07763107 n 0000 ~ 07763290 n 0000 ~ 07763483 n 0000 ~ 07763629 n 0000 ~ 07763792 n 0000 ~ 07763987 n 0000 ~ 07764155 n 0000 ~ 07764315 n 0000 ~ 07764486 n 0000 ~ 07764630 n 0000 ~ 07764847 n 0000 ~ 07765073 n 0000 ~ 07765208 n 0000 ~ 07765361 n 0000 ~ 07765517 n 0000 ~ 07765612 n 0000 ~ 07765728 n 0000 ~ 07765862 n 0000 ~ 07765999 n 0000 ~ 07766173 n 0000 ~ 07766409 n 0000 ~ 07766530 n 0000 ~ 07766723 n 0000 ~ 07766891 n 0000 ~ 07767002 n 0000 ~ 07767847 n 0000 ~ 07768590 n 0000 ~ 07768694 n 0000 ~ 07768858 n 0000 ~ 07769005 n 0000 ~ 07769102 n 0000 ~ 07769306 n 0000 ~ 07769584 n 0000 ~ 07769731 n 0000 ~ 07769886 n 0000 ~ 07770034 n 0000 ~ 07770180 n 0000 ~ 07770289 n 0000 ~ 07770439 n 0000 | edible reproductive body of a seed plant especially one having sweet flesh -07707451 13 n 03 vegetable 0 veggie 0 veg 0 028 @ 07705711 n 0000 #p 12205694 n 0000 ;u 08860123 n 0304 ~ 07708124 n 0000 ~ 07708398 n 0000 ~ 07708798 n 0000 ~ 07709172 n 0000 ~ 07709333 n 0000 ~ 07710007 n 0000 ~ 07710283 n 0000 ~ 07713267 n 0000 ~ 07713395 n 0000 ~ 07715561 n 0000 ~ 07718472 n 0000 ~ 07718747 n 0000 ~ 07718920 n 0000 ~ 07719213 n 0000 ~ 07719330 n 0000 ~ 07722217 n 0000 ~ 07723039 n 0000 ~ 07730033 n 0000 ~ 07730406 n 0000 ~ 07733394 n 0000 ~ 07734744 n 0000 ~ 07735510 n 0000 ~ 07736971 n 0000 ~ 07768423 n 0000 ~ 07817871 n 0000 | edible seeds or roots or stems or leaves or bulbs or tubers or nonsweet fruits of any of numerous herbaceous plant -07708124 13 n 02 julienne 0 julienne_vegetable 0 001 @ 07707451 n 0000 | a vegetable cut into thin strips (usually used as a garnish) -07708260 13 n 01 eater 0 002 @ 07705711 n 0000 + 01168468 v 0101 | any green goods that are good to eat; "these apples are good eaters" -07708398 13 n 02 raw_vegetable 0 rabbit_food 0 002 @ 07707451 n 0000 #s 07708512 n 0000 | an uncooked vegetable -07708512 13 n 01 crudites 0 004 @ 07581346 n 0000 %s 07708398 n 0000 ~ 07708685 n 0000 ~ 07730320 n 0000 | raw vegetables cut into bite-sized strips and served with a dip -07708685 13 n 01 celery_stick 0 002 @ 07708512 n 0000 #p 07730406 n 0000 | celery stalks cut into small sticks -07708798 13 n 01 legume 0 008 @ 07707451 n 0000 ~ 07709046 n 0000 ~ 07724943 n 0000 ~ 07725255 n 0000 ~ 07725376 n 0000 ~ 07726095 n 0000 ~ 07726672 n 0000 %s 14728724 n 0000 | the seedpod of a leguminous plant (such as peas or beans or lentils) -07709046 13 n 01 pulse 0 001 @ 07708798 n 0000 | edible seeds of various pod-bearing plants (peas or beans or lentils etc.) -07709172 13 n 01 potherb 0 001 @ 07707451 n 0000 | any of various herbaceous plants whose leaves or stems or flowers are cooked and used for food or seasoning -07709333 13 n 03 greens 0 green 0 leafy_vegetable 0 013 @ 07707451 n 0000 ~ 07709701 n 0000 ~ 07719437 n 0000 ~ 07719980 n 0000 ~ 07720277 n 0000 ~ 07723330 n 0000 ~ 07733217 n 0000 ~ 07733712 n 0000 ~ 07733847 n 0000 ~ 07736256 n 0000 ~ 07736371 n 0000 ~ 07736527 n 0000 ~ 07736692 n 0000 | any of various leafy plants or their leaves and stems eaten as vegetables -07709701 13 n 01 chop-suey_greens 0 002 @ 07709333 n 0000 #p 11951052 n 0000 | succulent and aromatic young dark green leaves used in Chinese and Vietnamese and Japanese cooking -07709881 13 n 02 bean_curd 0 tofu 0 002 @ 07850083 n 0000 %s 07844867 n 0000 | cheeselike food made of curdled soybean milk -07710007 13 n 01 solanaceous_vegetable 0 006 @ 07707451 n 0000 ~ 07710616 n 0000 ~ 07713074 n 0000 ~ 07720442 n 0000 ~ 07734017 n 0000 ~ 07734555 n 0000 | any of several fruits of plants of the family Solanaceae; especially of the genera Solanum, Capsicum, and Lycopersicon -07710283 13 n 01 root_vegetable 0 013 @ 07707451 n 0000 ~ 07710616 n 0000 ~ 07711907 n 0000 ~ 07712063 n 0000 ~ 07719058 n 0000 ~ 07719839 n 0000 ~ 07730207 n 0000 ~ 07730708 n 0000 ~ 07735052 n 0000 ~ 07735404 n 0000 ~ 07735687 n 0000 ~ 07735803 n 0000 ~ 07736813 n 0000 | any of various fleshy edible underground roots or tubers -07710616 13 n 06 potato 0 white_potato 0 Irish_potato 0 murphy 0 spud 0 tater 0 010 @ 07710283 n 0000 @ 07566863 n 0000 @ 07710007 n 0000 #p 12897493 n 0000 ~ 07710952 n 0000 ~ 07711080 n 0000 ~ 07711232 n 0000 %p 07711471 n 0000 ~ 07711569 n 0000 ~ 07711799 n 0000 | an edible tuber native to South America; a staple food of Ireland -07710952 13 n 01 baked_potato 0 002 @ 07710616 n 0000 ~ 07711371 n 0000 | potato that has been cooked by baking it in an oven -07711080 13 n 04 french_fries 0 french-fried_potatoes 0 fries 0 chips 1 002 @ 07710616 n 0000 ;u 08860123 n 0404 | strips of potato fried in deep fat -07711232 13 n 02 home_fries 0 home-fried_potatoes 0 001 @ 07710616 n 0000 | sliced pieces of potato fried in a pan until brown and crisp -07711371 13 n 01 jacket_potato 0 001 @ 07710952 n 0000 | a baked potato served with the jacket on -07711471 13 n 01 jacket 0 002 @ 07738353 n 0000 #p 07710616 n 0000 | the outer skin of a potato -07711569 13 n 01 mashed_potato 0 001 @ 07710616 n 0000 | potato that has been peeled and boiled and then mashed -07711683 13 n 03 potato_skin 0 potato_peel 0 potato_peelings 0 001 @ 07712382 n 0000 | crisp fried potato peeling -07711799 13 n 01 Uruguay_potato 0 002 @ 07710616 n 0000 #p 12894438 n 0000 | similar to the common potato -07711907 13 n 01 yam 2 001 @ 07710283 n 0000 | edible tuberous root of various yam plants of the genus Dioscorea grown in the tropics world-wide for food -07712063 13 n 01 sweet_potato 0 003 @ 07710283 n 0000 #p 12827684 n 0000 ~ 07712267 n 0000 | the edible tuberous root of the sweet potato vine which is grown widely in warm regions of the United States -07712267 13 n 01 yam 0 001 @ 07712063 n 0000 | sweet potato with deep orange flesh that remains moist when baked -07712382 13 n 01 snack_food 0 005 @ 07557434 n 0000 ~ 07695965 n 0000 ~ 07711683 n 0000 ~ 07712559 n 0000 ~ 07712748 n 0000 | food for light meals or for eating between meals -07712559 13 n 04 chip 0 crisp 0 potato_chip 0 Saratoga_chip 0 004 @ 07712382 n 0000 + 02446931 a 0201 + 02446931 a 0202 + 00322151 v 0203 | a thin crisp slice of potato fried in deep fat -07712748 13 n 01 corn_chip 0 002 @ 07712382 n 0000 ~ 07712856 n 0000 | thin piece of cornmeal dough fried -07712856 13 n 01 tortilla_chip 0 002 @ 07712748 n 0000 ~ 07712959 n 0000 | a small piece of tortilla -07712959 13 n 01 nacho 0 001 @ 07712856 n 0000 | a tortilla chip topped with cheese and chili-pepper and broiled -07713074 13 n 03 eggplant 0 aubergine 0 mad_apple 0 002 @ 07710007 n 0000 #p 12896000 n 0000 | egg-shaped vegetable having a shiny skin typically dark purple but occasionally white or yellow -07713267 13 n 02 pieplant 0 rhubarb 0 001 @ 07707451 n 0000 | long pinkish sour leafstalks usually eaten cooked and sweetened -07713395 13 n 01 cruciferous_vegetable 0 011 @ 07707451 n 0000 #p 11868814 n 0000 ~ 07713763 n 0000 ~ 07713895 n 0000 ~ 07714990 n 0000 ~ 07715103 n 0000 ~ 07715221 n 0000 ~ 07715407 n 0000 ~ 07733567 n 0000 ~ 07735687 n 0000 ~ 07735803 n 0000 | a vegetable of the mustard family: especially mustard greens; various cabbages; broccoli; cauliflower; brussels sprouts -07713763 13 n 04 mustard 1 mustard_greens 0 leaf_mustard 0 Indian_mustard 0 001 @ 07713395 n 0000 | leaves eaten as cooked greens -07713895 13 n 02 cabbage 0 chou 1 006 @ 07713395 n 0000 #p 11875691 n 0000 ~ 07714078 n 0000 ~ 07714287 n 0000 ~ 07714448 n 0000 ~ 07714571 n 0000 | any of various types of cabbage -07714078 13 n 03 kale 0 kail 0 cole 0 002 @ 07713895 n 0000 ~ 07714188 n 0000 | coarse curly-leafed cabbage -07714188 13 n 02 collards 0 collard_greens 0 001 @ 07714078 n 0000 | kale that has smooth leaves -07714287 13 n 03 Chinese_cabbage 0 celery_cabbage 0 Chinese_celery 0 001 @ 07713895 n 0000 | elongated head of crisp celery-like stalks and light green leaves -07714448 13 n 02 bok_choy 0 bok_choi 0 001 @ 07713895 n 0000 | elongated head of dark green leaves on thick white stalks -07714571 13 n 01 head_cabbage 0 003 @ 07713895 n 0000 ~ 07714802 n 0000 ~ 07714895 n 0000 | any of several varieties of cabbage having a large compact globular head; may be steamed or boiled or stir-fried or used raw in coleslaw -07714802 13 n 01 red_cabbage 0 001 @ 07714571 n 0000 | compact head of purplish-red leaves -07714895 13 n 02 savoy_cabbage 0 savoy 0 001 @ 07714571 n 0000 | head of soft crinkly leaves -07714990 13 n 01 broccoli 0 002 @ 07713395 n 0000 #p 11876803 n 0000 | branched green undeveloped flower heads -07715103 13 n 01 cauliflower 0 002 @ 07713395 n 0000 #p 11876634 n 0000 | compact head of white undeveloped flowers -07715221 13 n 01 brussels_sprouts 0 003 @ 07713395 n 0000 #p 11876432 n 0000 ;u 06295235 n 0000 | the small edible cabbage-like buds growing along a stalk of the brussels sprout plant -07715407 13 n 02 broccoli_rabe 0 broccoli_raab 0 002 @ 07713395 n 0000 #p 11878101 n 0000 | slightly bitter dark green leaves and clustered flower buds -07715561 13 n 01 squash 0 004 @ 07707451 n 0000 #p 12158798 n 0000 ~ 07715721 n 0000 ~ 07717070 n 0000 | edible fruit of a squash plant; eaten as a vegetable -07715721 13 n 01 summer_squash 0 008 @ 07715561 n 0000 #p 12159055 n 0000 ~ 07716034 n 0000 ~ 07716358 n 0000 ~ 07716504 n 0000 ~ 07716649 n 0000 ~ 07716750 n 0000 ~ 07716906 n 0000 | any of various fruits of the gourd family that mature during the summer; eaten while immature and before seeds and rind harden -07716034 13 n 01 yellow_squash 0 003 @ 07715721 n 0000 #p 12159388 n 0000 ~ 07716203 n 0000 | squash having yellow skin and yellowish flesh and usually elongated neck -07716203 13 n 03 crookneck 0 crookneck_squash 0 summer_crookneck 0 001 @ 07716034 n 0000 | yellow squash with a thin curved neck and somewhat warty skin -07716358 13 n 02 zucchini 0 courgette 0 002 @ 07715721 n 0000 #p 12159804 n 0000 | small cucumber-shaped vegetable marrow; typically dark green -07716504 13 n 02 marrow 0 vegetable_marrow 0 002 @ 07715721 n 0000 #p 12159555 n 0000 | large elongated squash with creamy to deep green skins -07716649 13 n 01 cocozelle 0 002 @ 07715721 n 0000 #p 12159942 n 0000 | squash resembling zucchini -07716750 13 n 01 pattypan_squash 0 002 @ 07715721 n 0000 #p 12160125 n 0000 | round greenish-white squash having one face flattened with a scalloped edge -07716906 13 n 01 spaghetti_squash 0 002 @ 07715721 n 0000 #p 12160303 n 0000 | medium-sized oval squash with flesh in the form of strings that resemble spaghetti -07717070 13 n 01 winter_squash 0 008 @ 07715561 n 0000 #p 12160490 n 0000 ~ 07717410 n 0000 ~ 07717556 n 0000 ~ 07717714 n 0000 ~ 07717858 n 0000 ~ 07718195 n 0000 ~ 07718329 n 0000 | any of various fruits of the gourd family with thick rinds and edible yellow to orange flesh that mature in the fall and can be stored for several months -07717410 13 n 01 acorn_squash 0 002 @ 07717070 n 0000 #p 12160857 n 0000 | small dark green or yellow ribbed squash with yellow to orange flesh -07717556 13 n 01 butternut_squash 0 002 @ 07717070 n 0000 #p 12161744 n 0000 | buff-colored squash with a long usually straight neck and sweet orange flesh -07717714 13 n 01 hubbard_squash 0 002 @ 07717070 n 0000 #p 12161056 n 0000 | large football-shaped winter squash with a warty grey-green rind -07717858 13 n 01 turban_squash 0 003 @ 07717070 n 0000 #p 12161285 n 0000 ~ 07718068 n 0000 | large squash shaped somewhat like a turban usually with a rounded central portion protruding from the blossom end -07718068 13 n 01 buttercup_squash 0 001 @ 07717858 n 0000 | drum-shaped squash with dark green rind marked in silver or grey -07718195 13 n 01 cushaw 0 002 @ 07717070 n 0000 #p 12162181 n 0000 | globose or ovoid squash with striped grey and green warty rind -07718329 13 n 01 winter_crookneck_squash 0 002 @ 07717070 n 0000 #p 12161969 n 0000 | a squash with a hard rind and an elongated curved neck -07718472 13 n 02 cucumber 0 cuke 0 003 @ 07707451 n 0000 #p 12165384 n 0000 ~ 07718671 n 0000 | cylindrical green fruit with thin green rind and white flesh eaten as a vegetable; related to melons -07718671 13 n 01 gherkin 1 001 @ 07718472 n 0000 | small prickly cucumber -07718747 13 n 02 artichoke 0 globe_artichoke 0 003 @ 07707451 n 0000 #p 11959632 n 0000 %p 07718920 n 0000 | a thistlelike flower head with edible fleshy leaves and heart -07718920 13 n 01 artichoke_heart 0 002 @ 07707451 n 0000 #p 07718747 n 0000 | the tender fleshy center of the immature artichoke flower -07719058 13 n 02 Jerusalem_artichoke 0 sunchoke 0 001 @ 07710283 n 0000 | sunflower tuber eaten raw or boiled or sliced thin and fried as Saratoga chips -07719213 13 n 01 asparagus 0 002 @ 07707451 n 0000 #p 12441183 n 0000 | edible young shoots of the asparagus plant -07719330 13 n 01 bamboo_shoot 0 002 @ 07707451 n 0000 #p 12147835 n 0000 | edible young shoots of bamboo -07719437 13 n 01 sprout 0 005 @ 07709333 n 0000 + 00095377 v 0101 + 00357332 v 0107 ~ 07719616 n 0000 ~ 07719756 n 0000 | a newly grown bud (especially from a germinating seed) -07719616 13 n 01 bean_sprout 0 001 @ 07719437 n 0000 | any of various sprouted beans: especially mung beans or lentils or edible soybeans -07719756 13 n 01 alfalfa_sprout 0 001 @ 07719437 n 0000 | sprouted alfalfa seeds -07719839 13 n 02 beet 0 beetroot 0 004 @ 07710283 n 0000 #p 11832480 n 0000 ~ 07720084 n 0000 ~ 07720185 n 0000 | round red root vegetable -07719980 13 n 01 beet_green 0 002 @ 07709333 n 0000 #p 11832480 n 0000 | young leaves of the beetroot -07720084 13 n 01 sugar_beet 0 001 @ 07719839 n 0000 | white-rooted beet grown as a source of sugar -07720185 13 n 01 mangel-wurzel 0 001 @ 07719839 n 0000 | cultivated as feed for livestock -07720277 13 n 04 chard 0 Swiss_chard 0 spinach_beet 0 leaf_beet 0 002 @ 07709333 n 0000 #p 11832671 n 0000 | long succulent whitish stalks with large green leaves -07720442 13 n 01 pepper 2 004 @ 07710007 n 0000 #p 12900462 n 0000 ~ 07720615 n 0000 ~ 07721325 n 0000 | sweet and hot varieties of fruits of plants of the genus Capsicum -07720615 13 n 01 sweet_pepper 0 006 @ 07720442 n 0000 #p 12901264 n 0000 ~ 07720875 n 0000 ~ 07721018 n 0000 ~ 07721118 n 0000 ~ 07721195 n 0000 | large mild crisp thick-walled capsicum peppers usually bell-shaped or somewhat oblong; commonly used in salads -07720875 13 n 01 bell_pepper 0 001 @ 07720615 n 0000 | large bell-shaped sweet pepper in green or red or yellow or orange or black varieties -07721018 13 n 01 green_pepper 0 001 @ 07720615 n 0000 | a sweet pepper that becomes red when ripe -07721118 13 n 01 globe_pepper 0 001 @ 07720615 n 0000 | round sweet pepper -07721195 13 n 02 pimento 0 pimiento 0 002 @ 07720615 n 0000 #s 07824702 n 0000 | fully ripened sweet red pepper; usually cooked -07721325 13 n 01 hot_pepper 0 003 @ 07720442 n 0000 ~ 07721456 n 0000 ~ 07722052 n 0000 | any of various pungent capsicum fruits -07721456 13 n 05 chili 0 chili_pepper 0 chilli 0 chilly 0 chile 0 005 @ 07721325 n 0000 #p 12900987 n 0000 #s 07822687 n 0000 ~ 07721678 n 0000 ~ 07721942 n 0000 | very hot and finely tapering pepper of special pungency -07721678 13 n 02 jalapeno 0 jalapeno_pepper 0 002 @ 07721456 n 0000 ~ 07721833 n 0000 | hot green or red pepper of southwestern United States and Mexico -07721833 13 n 01 chipotle 0 001 @ 07721678 n 0000 | a ripe jalapeno that has been dried for use in cooking -07721942 13 n 02 cayenne 2 cayenne_pepper 2 001 @ 07721456 n 0000 | a long and often twisted hot red pepper -07722052 13 n 02 tabasco 2 red_pepper 2 003 @ 07721325 n 0000 #p 12902021 n 0000 #s 07826091 n 0000 | very hot red peppers; usually long and thin; some very small -07722217 13 n 01 onion 0 006 @ 07707451 n 0000 ~ 07722390 n 0000 ~ 07722485 n 0000 ~ 07722666 n 0000 ~ 07722763 n 0000 ~ 07723177 n 0000 | an aromatic flavorful vegetable -07722390 13 n 01 Bermuda_onion 0 001 @ 07722217 n 0000 | mild flat onion grown in warm areas -07722485 13 n 03 green_onion 0 spring_onion 0 scallion 0 003 @ 07722217 n 0000 ;r 09044862 n 0301 ;r 08860123 n 0204 | a young onion before the bulb has enlarged; eaten in salads -07722666 13 n 01 Vidalia_onion 0 001 @ 07722217 n 0000 | sweet-flavored onion grown in Georgia -07722763 13 n 01 Spanish_onion 0 002 @ 07722217 n 0000 ~ 07722888 n 0000 | large mild and succulent onion; often eaten raw -07722888 13 n 02 purple_onion 0 red_onion 0 001 @ 07722763 n 0000 | flat mild onion having purplish tunics; used as garnish on hamburgers and salads -07723039 13 n 01 leek 0 002 @ 07707451 n 0000 #p 12434239 n 0000 | related to onions; white cylindrical bulb and flat dark-green leaves -07723177 13 n 01 shallot 0 002 @ 07722217 n 0000 #p 12433178 n 0000 | small mild-flavored onion-like or garlic-like clustered bulbs used for seasoning -07723330 13 n 02 salad_green 0 salad_greens 0 007 @ 07709333 n 0000 ~ 07723559 n 0000 ~ 07724819 n 0000 ~ 07730855 n 0000 ~ 07731587 n 0000 ~ 07732747 n 0000 ~ 07820036 n 0000 | greens suitable for eating uncooked as in salads -07723559 13 n 01 lettuce 0 006 @ 07723330 n 0000 #p 11986511 n 0000 ~ 07723753 n 0000 ~ 07724269 n 0000 ~ 07724492 n 0000 ~ 07724654 n 0000 | leaves of any of various plants of Lactuca sativa -07723753 13 n 01 butterhead_lettuce 0 005 @ 07723559 n 0000 #p 11986900 n 0000 ~ 07723968 n 0000 ~ 07724078 n 0000 ~ 07724173 n 0000 | lettuce with relatively soft leaves in a loose head; easily broken or bruised -07723968 13 n 01 buttercrunch 0 001 @ 07723753 n 0000 | lettuce with delicate and relatively crunchy leaves -07724078 13 n 01 Bibb_lettuce 0 001 @ 07723753 n 0000 | lettuce with relatively crisp leaves -07724173 13 n 01 Boston_lettuce 0 001 @ 07723753 n 0000 | lettuce with relatively soft leaves -07724269 13 n 03 crisphead_lettuce 0 iceberg_lettuce 0 iceberg 0 002 @ 07723559 n 0000 #p 11986900 n 0000 | lettuce with crisp tightly packed light-green leaves in a firm head; "iceberg is still the most popular lettuce" -07724492 13 n 04 cos 0 cos_lettuce 0 romaine 0 romaine_lettuce 0 001 @ 07723559 n 0000 | lettuce with long dark-green leaves in a loosely packed elongated head -07724654 13 n 02 leaf_lettuce 0 loose-leaf_lettuce 0 002 @ 07723559 n 0000 #p 11987126 n 0000 | lettuce with loosely curled leaves that do not form a compact head -07724819 13 n 01 celtuce 0 002 @ 07723330 n 0000 #p 11987349 n 0000 | leaves having celery-like stems eaten raw or cooked -07724943 13 n 02 bean 0 edible_bean 0 005 @ 07708798 n 0000 #p 12556307 n 0000 ~ 07725158 n 0000 ~ 07726796 n 0000 ~ 07729485 n 0000 | any of various edible seeds of plants of the family Leguminosae used for food -07725158 13 n 01 goa_bean 0 002 @ 07724943 n 0000 #p 12564083 n 0000 | Old World tropical bean -07725255 13 n 01 lentil 0 002 @ 07708798 n 0000 #p 12544240 n 0000 | round flat seed of the lentil plant used for food -07725376 13 n 01 pea 0 005 @ 07708798 n 0000 ~ 07725531 n 0000 ~ 07725663 n 0000 ~ 07726230 n 0000 ~ 07726386 n 0000 | seed of a pea plant used for food -07725531 13 n 02 green_pea 0 garden_pea 0 004 @ 07725376 n 0000 ~ 07725789 n 0000 ~ 07725888 n 0000 ~ 07726009 n 0000 | fresh pea -07725663 13 n 01 marrowfat_pea 0 001 @ 07725376 n 0000 | a variety of large pea that is commonly processed and sold in cans -07725789 13 n 02 snow_pea 0 sugar_pea 0 001 @ 07725531 n 0000 | green peas with flat edible pods -07725888 13 n 01 sugar_snap_pea 0 001 @ 07725531 n 0000 | green peas with edible pods that are very crisp and not flat -07726009 13 n 01 split-pea 0 001 @ 07725531 n 0000 | dried hulled pea; used in soup -07726095 13 n 02 chickpea 0 garbanzo 0 002 @ 07708798 n 0000 #p 12515711 n 0000 | large white roundish Asiatic legume; usually dried -07726230 13 n 03 cajan_pea 0 pigeon_pea 0 dahl 0 002 @ 07725376 n 0000 #p 12510774 n 0000 | small highly nutritious seed of the tropical pigeon-pea plant -07726386 13 n 01 field_pea 0 002 @ 07725376 n 0000 #p 12561309 n 0000 | coarse small-seeded pea often used as food when young and tender -07726525 13 n 01 mushy_peas 0 001 @ 07580053 n 0000 | marrowfat peas that have been soaked overnight and then boiled; served with fish and chips -07726672 13 n 02 black-eyed_pea 0 cowpea 0 002 @ 07708798 n 0000 #p 12578626 n 0000 | eaten fresh as shell beans or dried -07726796 13 n 01 common_bean 0 009 @ 07724943 n 0000 #p 12556793 n 0000 ~ 07727048 n 0000 ~ 07727140 n 0000 ~ 07727252 n 0000 ~ 07727377 n 0000 ~ 07727458 n 0000 ~ 07727578 n 0000 ~ 07727741 n 0000 | any of numerous beans eaten either fresh or dried -07727048 13 n 01 kidney_bean 0 001 @ 07726796 n 0000 | large dark red bean; usually dried -07727140 13 n 03 navy_bean 0 pea_bean 0 white_bean 0 001 @ 07726796 n 0000 | white-seeded bean; usually dried -07727252 13 n 01 pinto_bean 0 001 @ 07726796 n 0000 | mottled or spotted bean of southwestern United States; usually dried -07727377 13 n 01 frijole 0 001 @ 07726796 n 0000 | Mexican bean; usually dried -07727458 13 n 02 black_bean 0 turtle_bean 0 001 @ 07726796 n 0000 | black-seeded bean of South America; usually dried -07727578 13 n 01 fresh_bean 0 004 @ 07726796 n 0000 ~ 07727868 n 0000 ~ 07728708 n 0000 ~ 07728804 n 0000 | beans eaten before they are ripe as opposed to dried -07727741 13 n 02 flageolet 0 haricot 2 001 @ 07726796 n 0000 | a French bean variety with light-colored seeds; usually dried -07727868 13 n 01 green_bean 0 006 @ 07727578 n 0000 ~ 07728053 n 0000 ~ 07728181 n 0000 ~ 07728284 n 0000 ~ 07728391 n 0000 ~ 07728585 n 0000 | immature bean pod eaten as a vegetable -07728053 13 n 02 snap_bean 0 snap 1 001 @ 07727868 n 0000 | tender green beans without strings that easily snap into sections -07728181 13 n 01 string_bean 0 001 @ 07727868 n 0000 | green beans with strings that must be removed -07728284 13 n 02 Kentucky_wonder 0 Kentucky_wonder_bean 0 001 @ 07727868 n 0000 | flat-podded green bean -07728391 13 n 04 scarlet_runner 0 scarlet_runner_bean 0 runner_bean 0 English_runner_bean 0 001 @ 07727868 n 0000 | long bean pods usually sliced into half-inch lengths; a favorite in Britain -07728585 13 n 03 haricot_vert 0 haricots_verts 0 French_bean 0 001 @ 07727868 n 0000 | very small and slender green bean -07728708 13 n 02 wax_bean 0 yellow_bean 0 001 @ 07727578 n 0000 | snap beans with yellow pods -07728804 13 n 01 shell_bean 0 006 @ 07727578 n 0000 #p 12557995 n 0000 ~ 07729000 n 0000 ~ 07729225 n 0000 ~ 07729384 n 0000 ~ 07729828 n 0000 | unripe beans removed from the pod before cooking -07729000 13 n 01 lima_bean 0 003 @ 07728804 n 0000 #p 12558230 n 0000 ~ 07729142 n 0000 | broad flat beans simmered gently; never eaten raw -07729142 13 n 01 Fordhooks 0 001 @ 07729000 n 0000 | relatively large lima beans -07729225 13 n 04 sieva_bean 0 butter_bean 0 butterbean 0 civet_bean 0 002 @ 07728804 n 0000 #p 12558425 n 0000 | small flat green bean similar to lima beans -07729384 13 n 02 fava_bean 0 broad_bean 0 001 @ 07728804 n 0000 | shell beans cooked as lima beans -07729485 13 n 04 soy 0 soybean 0 soya 0 soya_bean 0 006 @ 07724943 n 0000 #s 07569873 n 0000 #s 07825972 n 0000 #p 12532168 n 0000 %s 07675262 n 0000 ~ 07729926 n 0000 | the most highly proteinaceous vegetable known; the fruit of the soybean plant is used in a variety of foods and as fodder (especially as a replacement for animal protein) -07729828 13 n 01 green_soybean 0 001 @ 07728804 n 0000 | seeds shelled and cooked as lima beans -07729926 13 n 01 field_soybean 0 002 @ 07729485 n 0000 #s 07801508 n 0000 | seeds used as livestock feed -07730033 13 n 01 cardoon 0 002 @ 07707451 n 0000 #p 11959862 n 0000 | only parts eaten are roots and especially stalks (blanched and used as celery); related to artichokes -07730207 13 n 01 carrot 0 002 @ 07710283 n 0000 #p 12937388 n 0000 | orange root; important source of carotene -07730320 13 n 01 carrot_stick 0 001 @ 07708512 n 0000 | a stick of carrot eaten raw -07730406 13 n 01 celery 0 004 @ 07707451 n 0000 #p 12933403 n 0000 %p 07708685 n 0000 ~ 07730562 n 0000 | stalks eaten raw or cooked or used as seasoning -07730562 13 n 02 pascal_celery 0 Paschal_celery 0 001 @ 07730406 n 0000 | any of several types of commercially grown celery having green stalks -07730708 13 n 02 celeriac 0 celery_root 0 002 @ 07710283 n 0000 #p 12933616 n 0000 | thickened edible aromatic root of a variety of celery plant -07730855 13 n 02 chicory 0 curly_endive 0 003 @ 07723330 n 0000 #p 11953038 n 0000 ~ 07731006 n 0000 | crisp spiky leaves with somewhat bitter taste -07731006 13 n 01 radicchio 0 001 @ 07730855 n 0000 | prized variety of chicory having globose heads of red leaves -07731122 13 n 01 coffee_substitute 0 003 @ 07929519 n 0000 ~ 07731284 n 0000 ~ 07731436 n 0000 | a drink resembling coffee that is sometimes substituted for it -07731284 13 n 02 chicory 2 chicory_root 0 001 @ 07731122 n 0000 | root of the chicory plant roasted and ground to substitute for or adulterate coffee -07731436 13 n 01 Postum 0 001 @ 07731122 n 0000 | trade mark for a coffee substitute invented by C. W. Post and made with chicory and roasted grains -07731587 13 n 03 chicory_escarole 0 endive 0 escarole 0 003 @ 07723330 n 0000 #p 11953339 n 0000 ~ 07731767 n 0000 | variety of endive having leaves with irregular frilled edges -07731767 13 n 03 Belgian_endive 0 French_endive 0 witloof 0 002 @ 07731587 n 0000 #p 11953339 n 0000 | young broad-leaved endive plant deprived of light to form a narrow whitish head -07731952 13 n 02 corn 0 edible_corn 0 006 @ 07802417 n 0000 #p 12143676 n 0000 ~ 07732168 n 0000 ~ 07732302 n 0000 ~ 07732636 n 0000 %p 12144742 n 0000 | ears of corn that can be prepared and served for human food -07732168 13 n 02 sweet_corn 0 green_corn 0 001 @ 07731952 n 0000 | corn that can be eaten as a vegetable while still young and soft -07732302 13 n 01 hominy 0 003 @ 07731952 n 0000 ~ 07732433 n 0000 ~ 07732525 n 0000 | hulled corn with the bran and germ removed -07732433 13 n 01 lye_hominy 0 001 @ 07732302 n 0000 | hominy prepared by bleaching in lye -07732525 13 n 01 pearl_hominy 0 001 @ 07732302 n 0000 | hominy prepared by milling to pellets of medium size -07732636 13 n 01 popcorn 0 002 @ 07731952 n 0000 #p 12145477 n 0000 | small kernels of corn exploded by heat -07732747 13 n 01 cress 0 004 @ 07723330 n 0000 ~ 07732904 n 0000 ~ 07733005 n 0000 ~ 07733124 n 0000 | pungent leaves of any of numerous cruciferous herbs -07732904 13 n 01 watercress 0 001 @ 07732747 n 0000 | cresses that grow in clear ponds and streams -07733005 13 n 01 garden_cress 0 002 @ 07732747 n 0000 #p 11890507 n 0000 | cress cultivated for salads and garnishes -07733124 13 n 01 winter_cress 0 001 @ 07732747 n 0000 | cress cultivated for winter salads -07733217 13 n 01 dandelion_green 0 002 @ 07709333 n 0000 #p 12024445 n 0000 | edible leaves of the common dandelion collected from the wild; used in salads and in making wine -07733394 13 n 02 gumbo 1 okra 0 002 @ 07707451 n 0000 #p 12171966 n 0000 | long mucilaginous green pods; may be simmered or sauteed but used especially in soups and stews -07733567 13 n 02 kohlrabi 0 turnip_cabbage 0 002 @ 07713395 n 0000 #p 11877283 n 0000 | fleshy turnip-shaped edible stem of the kohlrabi plant -07733712 13 n 03 lamb's-quarter 0 pigweed 0 wild_spinach 1 002 @ 07709333 n 0000 #p 11828577 n 0000 | leaves collected from the wild -07733847 13 n 01 wild_spinach 2 003 @ 07709333 n 0000 #p 11828577 n 0000 #p 11828973 n 0000 | leafy greens collected from the wild and used as a substitute for spinach -07734017 13 n 01 tomato 0 004 @ 07710007 n 0000 #p 12905817 n 0000 ~ 07734183 n 0000 ~ 07734292 n 0000 | mildly acid red or yellow pulpy fruit eaten as a vegetable -07734183 13 n 01 beefsteak_tomato 0 001 @ 07734017 n 0000 | any of several large tomatoes with thick flesh -07734292 13 n 01 cherry_tomato 0 003 @ 07734017 n 0000 #p 12906021 n 0000 ~ 07734417 n 0000 | small red to yellow tomatoes -07734417 13 n 01 plum_tomato 0 001 @ 07734292 n 0000 | a kind of cherry tomato that is frequently used in cooking rather than eaten raw -07734555 13 n 03 tomatillo 0 husk_tomato 0 Mexican_husk_tomato 0 002 @ 07710007 n 0000 #p 12911440 n 0000 | small edible yellow to purple tomato-like fruit enclosed in a bladderlike husk -07734744 13 n 01 mushroom 0 003 @ 07707451 n 0000 #p 07734879 n 0000 + 01382437 v 0101 | fleshy body of any of numerous edible fungi -07734879 13 n 01 stuffed_mushroom 0 002 @ 07582277 n 0000 %p 07734744 n 0000 | mushrooms stuffed with any of numerous mixtures of e.g. meats or nuts or seafood or spinach -07735052 13 n 01 salsify 0 003 @ 07710283 n 0000 ~ 07735179 n 0000 ~ 07735294 n 0000 | either of two long roots eaten cooked -07735179 13 n 02 oyster_plant 0 vegetable_oyster 0 002 @ 07735052 n 0000 #p 12027222 n 0000 | long white salsify -07735294 13 n 02 scorzonera 0 black_salsify 0 002 @ 07735052 n 0000 #p 12013035 n 0000 | long black salsify -07735404 13 n 01 parsnip 0 002 @ 07710283 n 0000 #p 12941717 n 0000 | whitish edible root; eaten cooked -07735510 13 n 01 pumpkin 0 002 @ 07707451 n 0000 #p 12158443 n 0000 | usually large pulpy deep-yellow round fruit of the squash family maturing in late summer or early autumn -07735687 13 n 01 radish 0 003 @ 07710283 n 0000 @ 07713395 n 0000 #p 11894327 n 0000 | pungent fleshy edible root -07735803 13 n 01 turnip 0 005 @ 07710283 n 0000 @ 07713395 n 0000 #p 11877473 n 0000 ~ 07735981 n 0000 ~ 07736087 n 0000 | root of any of several members of the mustard family -07735981 13 n 01 white_turnip 0 002 @ 07735803 n 0000 #p 11877646 n 0000 | white root of a turnip plant -07736087 13 n 04 rutabaga 0 swede 0 swedish_turnip 0 yellow_turnip 0 002 @ 07735803 n 0000 #p 11877860 n 0000 | the large yellow root of a rutabaga plant used as food -07736256 13 n 01 turnip_greens 0 002 @ 07709333 n 0000 #p 11877646 n 0000 | tender leaves of young white turnips -07736371 13 n 02 sorrel 0 common_sorrel 0 002 @ 07709333 n 0000 #p 12604228 n 0000 | large sour-tasting arrowhead-shaped leaves used in salads and sauces -07736527 13 n 01 French_sorrel 0 002 @ 07709333 n 0000 #p 12604845 n 0000 | greens having small tart oval to pointed leaves; preferred to common sorrel for salads -07736692 13 n 01 spinach 0 002 @ 07709333 n 0000 #p 11835568 n 0000 | dark green leaves; eaten cooked or raw in salads -07736813 13 n 05 taro 0 taro_root 0 cocoyam 0 dasheen 0 edda 0 003 @ 07710283 n 0000 #p 11786539 n 0000 #s 07874531 n 0000 | tropical starchy tuberous root -07736971 13 n 02 truffle 0 earthnut 1 001 @ 07707451 n 0000 | edible subterranean fungus of the genus Tuber -07737081 13 n 01 edible_nut 0 021 @ 13136556 n 0000 ~ 07737594 n 0000 ~ 07737745 n 0000 ~ 07750586 n 0000 ~ 07769465 n 0000 ~ 07771082 n 0000 ~ 07771212 n 0000 ~ 07771731 n 0000 ~ 07771891 n 0000 ~ 07772026 n 0000 ~ 07772147 n 0000 ~ 07772274 n 0000 ~ 07772413 n 0000 ~ 07772788 n 0000 ~ 07772935 n 0000 ~ 07774182 n 0000 ~ 07774295 n 0000 ~ 07774596 n 0000 ~ 07774719 n 0000 ~ 07774842 n 0000 ~ 07775050 n 0000 | a hard-shelled seed consisting of an edible kernel or meat enclosed in a woody or leathery shell -07737594 13 n 01 bunya_bunya 0 002 @ 07737081 n 0000 #p 11646694 n 0000 | nut tasting like roasted chestnuts; a staple food of Australian aborigines -07737745 13 n 06 peanut 0 earthnut 2 goober 0 goober_pea 0 groundnut 1 monkey_nut 0 002 @ 07737081 n 0000 #p 11748501 n 0000 | pod of the peanut vine containing usually 2 nuts or seeds; `groundnut' and `monkey nut' are British terms -07737980 13 n 01 water_chestnut 0 002 @ 13128365 n 0000 #p 12153741 n 0000 | edible bulbous tuber of a Chinese marsh plant -07738105 13 n 01 freestone 0 001 @ 07705931 n 0000 | fruit (especially peach) whose flesh does not adhere to the pit -07738224 13 n 02 cling 0 clingstone 0 001 @ 07705931 n 0000 | fruit (especially peach) whose flesh adheres strongly to the pit -07738353 13 n 02 peel 0 skin 0 008 @ 07670731 n 0000 #p 07705931 n 0000 + 01262936 v 0201 + 01262936 v 0102 ~ 07711471 n 0000 ~ 07738570 n 0000 ~ 07738760 n 0000 ~ 07738905 n 0000 | the rind of a fruit or vegetable -07738570 13 n 02 banana_peel 0 banana_skin 0 001 @ 07738353 n 0000 | the skin of a banana (especially when it is stripped off and discarded); "he slipped on a banana skin and almost fell" -07738760 13 n 02 lemon_peel 0 lemon_rind 0 004 @ 07738353 n 0000 #p 07749582 n 0000 ~ 07810745 n 0000 %s 07812790 n 0000 | the rind of a lemon -07738905 13 n 02 orange_peel 0 orange_rind 0 003 @ 07738353 n 0000 #p 07747607 n 0000 ~ 07810825 n 0000 | the rind of an orange -07739035 13 n 01 windfall 0 001 @ 07705931 n 0000 | fruit that has fallen from the tree -07739125 13 n 01 apple 0 006 @ 07705931 n 0000 @ 13138842 n 0000 #p 12633994 n 0000 ~ 07739344 n 0000 ~ 07739506 n 0000 ~ 07742012 n 0000 | fruit with red or yellow or green skin and sweet to tart crisp whitish flesh -07739344 13 n 02 crab_apple 0 crabapple 0 002 @ 07739125 n 0000 #p 12634429 n 0000 | small sour apple; suitable for preserving; "crabapples make a tangy jelly" -07739506 13 n 02 eating_apple 0 dessert_apple 0 017 @ 07739125 n 0000 ! 07742012 n 0101 ~ 07739923 n 0000 ~ 07740033 n 0000 ~ 07740220 n 0000 ~ 07740597 n 0000 ~ 07740744 n 0000 ~ 07740855 n 0000 ~ 07740954 n 0000 ~ 07741235 n 0000 ~ 07741357 n 0000 ~ 07741461 n 0000 ~ 07741623 n 0000 ~ 07741706 n 0000 ~ 07741804 n 0000 ~ 07741888 n 0000 ~ 07742313 n 0000 | an apple used primarily for eating raw without cooking -07739923 13 n 01 Baldwin 0 001 @ 07739506 n 0000 | an American eating apple with red or yellow and red skin -07740033 13 n 01 Cortland 0 001 @ 07739506 n 0000 | large apple with a red skin -07740115 13 n 01 Cox's_Orange_Pippin 0 001 @ 07741461 n 0000 | a yellow Pippin with distinctive flavor -07740220 13 n 01 Delicious 0 003 @ 07739506 n 0000 ~ 07740342 n 0000 ~ 07740461 n 0000 | variety of sweet eating apples -07740342 13 n 02 Golden_Delicious 0 Yellow_Delicious 0 001 @ 07740220 n 0000 | a sweet eating apple with yellow skin -07740461 13 n 01 Red_Delicious 0 001 @ 07740220 n 0000 | a sweet eating apple with bright red skin; most widely grown apple worldwide -07740597 13 n 01 Empire 0 001 @ 07739506 n 0000 | an eating apple that somewhat resembles a McIntosh; used as both an eating and a cooking apple -07740744 13 n 01 Grimes'_golden 0 001 @ 07739506 n 0000 | yellow apple that ripens in late autumn; eaten raw -07740855 13 n 01 Jonathan 0 001 @ 07739506 n 0000 | red late-ripening apple; primarily eaten raw -07740954 13 n 01 McIntosh 0 002 @ 07739506 n 0000 ~ 07741138 n 0000 | early-ripening apple popular in the northeastern United States; primarily eaten raw but suitable for applesauce -07741138 13 n 01 Macoun 0 001 @ 07740954 n 0000 | similar to McIntosh; juicy and late-ripening -07741235 13 n 01 Northern_Spy 0 001 @ 07739506 n 0000 | large late-ripening apple with skin striped with yellow and red -07741357 13 n 01 Pearmain 0 001 @ 07739506 n 0000 | any of several varieties of apples with red skins -07741461 13 n 01 Pippin 0 002 @ 07739506 n 0000 ~ 07740115 n 0000 | any of numerous superior eating apples with yellow or greenish yellow skin flushed with red -07741623 13 n 01 Prima 0 001 @ 07739506 n 0000 | used primarily as eating apples -07741706 13 n 01 Stayman 0 001 @ 07739506 n 0000 | apple grown chiefly in the Shenandoah Valley -07741804 13 n 01 Winesap 0 001 @ 07739506 n 0000 | crisp apple with dark red skin -07741888 13 n 01 Stayman_Winesap 0 001 @ 07739506 n 0000 | crisp tart apple; good for eating raw and suitable for cooking -07742012 13 n 01 cooking_apple 0 006 @ 07739125 n 0000 ! 07739506 n 0101 ~ 07742224 n 0000 ~ 07742415 n 0000 ~ 07742513 n 0000 ~ 07742605 n 0000 | an apple used primarily in cooking for pies and applesauce etc -07742224 13 n 01 Bramley's_Seedling 0 001 @ 07742012 n 0000 | very large cooking apple -07742313 13 n 01 Granny_Smith 0 001 @ 07739506 n 0000 | apple with a green skin and hard tart flesh -07742415 13 n 01 Lane's_Prince_Albert 0 001 @ 07742012 n 0000 | apple used primarily in cooking -07742513 13 n 01 Newtown_Wonder 0 001 @ 07742012 n 0000 | apple used primarily in cooking -07742605 13 n 01 Rome_Beauty 0 001 @ 07742012 n 0000 | large red apple used primarily for baking -07742704 13 n 01 berry 0 021 @ 07705931 n 0000 #p 13137409 n 0000 + 01384102 v 0101 ~ 07743224 n 0000 ~ 07743384 n 0000 ~ 07743544 n 0000 ~ 07743723 n 0000 ~ 07743902 n 0000 ~ 07744057 n 0000 ~ 07744246 n 0000 ~ 07744811 n 0000 ~ 07745046 n 0000 ~ 07745197 n 0000 ~ 07745357 n 0000 ~ 07745466 n 0000 ~ 07745661 n 0000 ~ 07745940 n 0000 ~ 07746038 n 0000 ~ 07746186 n 0000 ~ 07746334 n 0000 ~ 07767171 n 0000 | any of numerous small and pulpy edible fruits; used as desserts or in making jams and jellies and preserves -07743224 13 n 03 bilberry 0 whortleberry 0 European_blueberry 0 002 @ 07742704 n 0000 #p 12248574 n 0000 | blue-black berries similar to American blueberries -07743384 13 n 01 huckleberry 0 002 @ 07742704 n 0000 #p 12236768 n 0000 | blue-black berry similar to blueberries and bilberries of the eastern United States -07743544 13 n 01 blueberry 0 003 @ 07742704 n 0000 #p 12247407 n 0000 #p 12247664 n 0000 | sweet edible dark-blue berries of either low-growing or high-growing blueberry plants -07743723 13 n 05 wintergreen 0 boxberry 0 checkerberry 0 teaberry 0 spiceberry 1 002 @ 07742704 n 0000 #p 12235765 n 0000 | spicy red berrylike fruit; source of wintergreen oil -07743902 13 n 01 cranberry 0 004 @ 07742704 n 0000 @ 13137409 n 0000 #p 12245885 n 0000 #s 07823698 n 0000 | very tart red berry used for sauce or juice -07744057 13 n 04 lingonberry 0 mountain_cranberry 0 cowberry 0 lowbush_cranberry 0 002 @ 07742704 n 0000 #p 12249542 n 0000 | tart red berries similar to American cranberries but smaller -07744246 13 n 01 currant 1 004 @ 07742704 n 0000 ~ 07744430 n 0000 ~ 07744559 n 0000 ~ 07744682 n 0000 | any of several tart red or black berries used primarily for jellies and jams -07744430 13 n 01 gooseberry 0 002 @ 07744246 n 0000 #p 12806015 n 0000 | currant-like berry used primarily in jams and jellies -07744559 13 n 01 black_currant 0 002 @ 07744246 n 0000 #p 12805561 n 0000 | small black berries used in jams and jellies -07744682 13 n 01 red_currant 0 002 @ 07744246 n 0000 #p 12805373 n 0000 | small red berries used primarily in jams and jellies -07744811 13 n 01 blackberry 0 005 @ 07742704 n 0000 @ 13138658 n 0000 #p 12654012 n 0000 #p 12654659 n 0000 + 01383089 v 0101 | large sweet black or very dark purple edible aggregate fruit of any of various bushes of the genus Rubus -07745046 13 n 01 boysenberry 0 002 @ 07742704 n 0000 #p 12654857 n 0000 | large raspberry-flavored fruit; cross between blackberries and raspberries -07745197 13 n 01 dewberry 0 003 @ 07742704 n 0000 #p 12655351 n 0000 #p 12655726 n 0000 | blackberry-like fruits of any of several trailing blackberry bushes -07745357 13 n 01 loganberry 0 002 @ 07742704 n 0000 #p 12655062 n 0000 | large red variety of the dewberry -07745466 13 n 01 raspberry 0 004 @ 07742704 n 0000 @ 13138658 n 0000 #p 12656528 n 0000 #p 12656685 n 0000 | red or black edible aggregate berries usually smaller than the related blackberries -07745661 13 n 04 saskatoon 0 serviceberry 0 shadberry 0 juneberry 0 002 @ 07742704 n 0000 #p 12623524 n 0000 | edible purple or red berries -07745803 13 n 04 lanseh 0 lansa 0 lansat 0 lanset 0 002 @ 07705931 n 0000 #p 12699301 n 0000 | East Indian tart yellow berrylike fruit -07745940 13 n 01 strawberry 0 002 @ 07742704 n 0000 #p 12630478 n 0000 | sweet fleshy red fruit -07746038 13 n 02 sugarberry 0 hackberry 0 001 @ 07742704 n 0000 | small edible dark purple to black berry with large pits; southern United States -07746186 13 n 01 persimmon 0 003 @ 07742704 n 0000 #p 12771597 n 0000 #p 12771390 n 0000 | orange fruit resembling a plum; edible when fully ripe -07746334 13 n 04 acerola 0 barbados_cherry 0 surinam_cherry 0 West_Indian_cherry 0 002 @ 07742704 n 0000 #p 12694486 n 0000 | acid red or yellow cherry-like fruit of a tropical American shrub very rich in vitamin C -07746551 13 n 02 carambola 0 star_fruit 0 002 @ 07705931 n 0000 #p 12704343 n 0000 | deeply ridged yellow-brown tropical fruit; used raw as a vegetable or in salad or when fully ripe as a dessert -07746749 13 n 02 ceriman 0 monstera 0 002 @ 07705931 n 0000 #p 11789589 n 0000 | tropical cylindrical fruit resembling a pinecone with pineapple-banana flavor -07746910 13 n 02 carissa_plum 0 natal_plum 0 002 @ 07705931 n 0000 #p 11771924 n 0000 | edible scarlet plumlike fruit of a South African plant -07747055 13 n 03 citrus 0 citrus_fruit 0 citrous_fruit 0 013 @ 07705931 n 0000 #p 12707781 n 0000 + 03055059 a 0101 %p 07747455 n 0000 ~ 07747607 n 0000 ~ 07747951 n 0000 ~ 07749446 n 0000 ~ 07749582 n 0000 ~ 07749731 n 0000 ~ 07749969 n 0000 ~ 07750146 n 0000 ~ 07750299 n 0000 ~ 07750449 n 0000 | any of numerous fruits of the genus Citrus having thick rind and juicy pulp; grown in warm regions -07747455 13 n 01 section 0 003 @ 09429387 n 0000 #p 07747055 n 0000 + 01563005 v 0102 | a segment of a citrus fruit; "he ate a section of the orange" -07747607 13 n 01 orange 0 006 @ 07747055 n 0000 #p 12708293 n 0000 %p 07738905 n 0000 ~ 07747811 n 0000 ~ 07748753 n 0000 ~ 07748912 n 0000 | round yellow to orange fruit of any of several citrus trees -07747811 13 n 01 temple_orange 0 002 @ 07747607 n 0000 #p 12710917 n 0000 | large sweet easily-peeled Florida fruit with deep orange rind -07747951 13 n 02 mandarin 0 mandarin_orange 0 005 @ 07747055 n 0000 #p 12709901 n 0000 ~ 07748157 n 0000 ~ 07748276 n 0000 ~ 07748416 n 0000 | a somewhat flat reddish-orange loose skinned citrus of China -07748157 13 n 01 clementine 0 001 @ 07747951 n 0000 | a mandarin orange of a deep reddish orange color and few seeds -07748276 13 n 01 satsuma 0 002 @ 07747951 n 0000 #p 12710577 n 0000 | medium-sized largely seedless mandarin orange with thin smooth skin -07748416 13 n 01 tangerine 0 002 @ 07747951 n 0000 #p 12710295 n 0000 | any of various deep orange mandarins grown in the United States and southern Africa -07748574 13 n 03 tangelo 0 ugli 0 ugli_fruit 0 002 @ 07705931 n 0000 #p 12711182 n 0000 | large sweet juicy hybrid between tangerine and grapefruit having a thick wrinkled skin -07748753 13 n 03 bitter_orange 0 Seville_orange 0 sour_orange 0 002 @ 07747607 n 0000 #p 12708654 n 0000 | highly acidic orange used especially in marmalade -07748912 13 n 01 sweet_orange 0 005 @ 07747607 n 0000 #p 12710693 n 0000 ~ 07749095 n 0000 ~ 07749192 n 0000 ~ 07749312 n 0000 | orange with sweet juicy pulp; often has a thin skin -07749095 13 n 01 Jaffa_orange 0 001 @ 07748912 n 0000 | sweet almost seedless orange of Israel -07749192 13 n 01 navel_orange 0 001 @ 07748912 n 0000 | seedless orange enclosing a small secondary fruit at the apex -07749312 13 n 01 Valencia_orange 0 001 @ 07748912 n 0000 | variety of sweet orange cultivated extensively in Florida and California -07749446 13 n 01 kumquat 0 002 @ 07747055 n 0000 #p 12713063 n 0000 | small oval citrus fruit with thin sweet rind and very acid pulp -07749582 13 n 01 lemon 0 004 @ 07747055 n 0000 #p 12711596 n 0000 + 02369460 a 0101 %p 07738760 n 0000 | yellow oval fruit with juicy acidic flesh -07749731 13 n 01 lime 0 003 @ 07747055 n 0000 #p 12711984 n 0000 ~ 07749870 n 0000 | the green acidic fruit of any of various lime trees -07749870 13 n 01 key_lime 0 001 @ 07749731 n 0000 | small yellow-green limes of southern Florida -07749969 13 n 01 grapefruit 0 003 @ 07747055 n 0000 #p 12709688 n 0000 %p 07601025 n 0000 | large yellow fruit with somewhat acid juicy pulp; usual serving consists of a half -07750146 13 n 02 pomelo 0 shaddock 0 002 @ 07747055 n 0000 #p 12709103 n 0000 | large pear-shaped fruit similar to grapefruit but with coarse dry pulp -07750299 13 n 01 citrange 0 002 @ 07747055 n 0000 #p 12712320 n 0000 | more aromatic and acid tasting than oranges; used in beverages and marmalade -07750449 13 n 01 citron 0 002 @ 07747055 n 0000 #p 12709349 n 0000 | large lemonlike fruit with thick aromatic rind; usually preserved -07750586 13 n 01 almond 0 004 @ 07737081 n 0000 @ 13138308 n 0000 #p 12645174 n 0000 ~ 07750736 n 0000 | oval-shaped edible seed of the almond tree -07750736 13 n 01 Jordan_almond 0 001 @ 07750586 n 0000 | an almond covered with a sugar coating that is hard and flavored and colored -07750872 13 n 01 apricot 0 002 @ 07705931 n 0000 #p 12641007 n 0000 | downy yellow to rosy-colored fruit resembling a small peach -07751004 13 n 01 peach 0 003 @ 07705931 n 0000 @ 13138308 n 0000 #p 12648045 n 0000 | downy juicy fruit with sweet yellowish or whitish flesh -07751148 13 n 01 nectarine 0 002 @ 07705931 n 0000 #p 12648196 n 0000 | a variety or mutation of the peach that has a smooth skin -07751280 13 n 01 pitahaya 0 002 @ 07705931 n 0000 #p 11843053 n 0000 | highly colored edible fruit of pitahaya cactus having bright red juice; often as large as a peach -07751451 13 n 01 plum 0 008 @ 07705931 n 0000 @ 13138308 n 0000 #p 12638218 n 0000 ~ 07751737 n 0000 ~ 07751858 n 0000 ~ 07751977 n 0000 ~ 07752109 n 0000 ~ 07752264 n 0000 | any of numerous varieties of small to medium-sized round or oval fruit having a smooth skin and a single pit -07751737 13 n 02 damson 0 damson_plum 0 002 @ 07751451 n 0000 #p 12639910 n 0000 | dark purple plum of the damson tree -07751858 13 n 02 greengage 0 greengage_plum 0 001 @ 07751451 n 0000 | sweet green or greenish-yellow variety of plum -07751977 13 n 01 beach_plum 0 002 @ 07751451 n 0000 #p 12639376 n 0000 | small dark purple fruit used especially in jams and pies -07752109 13 n 01 sloe 0 003 @ 07751451 n 0000 #p 12638753 n 0000 #s 07904637 n 0000 | small sour dark purple fruit of especially the Allegheny plum bush -07752264 13 n 01 Victoria_plum 0 002 @ 07751451 n 0000 ;r 08860123 n 0000 | a large red plum served as dessert -07752377 13 n 01 dried_fruit 0 004 @ 07705931 n 0000 ~ 07752514 n 0000 ~ 07752602 n 0000 ~ 07752664 n 0000 | fruit preserved by drying -07752514 13 n 01 dried_apricot 0 001 @ 07752377 n 0000 | apricots preserved by drying -07752602 13 n 01 prune 0 001 @ 07752377 n 0000 | dried plum -07752664 13 n 01 raisin 0 004 @ 07752377 n 0000 ~ 07752782 n 0000 ~ 07752874 n 0000 ~ 07752966 n 0000 | dried grape -07752782 13 n 02 seedless_raisin 0 sultana 1 001 @ 07752664 n 0000 | dried seedless grape -07752874 13 n 01 seeded_raisin 0 001 @ 07752664 n 0000 | seeded grape that has been dried -07752966 13 n 01 currant 2 001 @ 07752664 n 0000 | small dried seedless raisin grown in the Mediterranean region and California; used in cooking -07753113 13 n 01 fig 0 002 @ 07705931 n 0000 #p 12401684 n 0000 | fleshy sweet pear-shaped yellowish or purple multiple fruit eaten fresh or preserved or dried -07753275 13 n 02 pineapple 0 ananas 0 002 @ 07705931 n 0000 #p 12607456 n 0000 | large sweet fleshy tropical fruit with a terminal tuft of stiff leaves; widely cultivated -07753448 13 n 02 anchovy_pear 0 river_pear 0 002 @ 07705931 n 0000 #p 12327528 n 0000 | West Indian fruit resembling the mango; often pickled -07753592 13 n 01 banana 0 003 @ 07705931 n 0000 #p 12353203 n 0000 #p 12352639 n 0000 | elongated crescent-shaped yellow fruit with soft sweet flesh -07753743 13 n 01 passion_fruit 0 005 @ 07705931 n 0000 #p 12383402 n 0000 ~ 07753980 n 0000 ~ 07754155 n 0000 ~ 07754279 n 0000 | egg-shaped tropical fruit of certain passionflower vines; used for sherbets and confectionery and drinks -07753980 13 n 01 granadilla 0 003 @ 07753743 n 0000 #p 12383894 n 0000 #p 12384037 n 0000 | the egg-shaped edible fruit of tropical American vines related to passionflowers -07754155 13 n 01 sweet_calabash 0 002 @ 07753743 n 0000 #p 12384680 n 0000 | apple-sized passion fruit of the West Indies -07754279 13 n 04 bell_apple 0 sweet_cup 0 water_lemon 0 yellow_granadilla 0 002 @ 07753743 n 0000 #p 12384375 n 0000 | the edible yellow fruit of the Jamaica honeysuckle -07754451 13 n 01 breadfruit 0 002 @ 07705931 n 0000 #p 12400489 n 0000 | a large round seedless or seeded fruit with a texture like bread; eaten boiled or baked or roasted or ground into flour; the roasted seeds resemble chestnuts -07754684 13 n 03 jackfruit 0 jak 0 jack 0 002 @ 07705931 n 0000 #p 12400720 n 0000 | immense East Indian fruit resembling breadfruit; it contains an edible pulp and nutritious seeds that are commonly roasted -07754894 13 n 02 cacao_bean 0 cocoa_bean 0 004 @ 12201580 n 0000 #s 07601999 n 0000 #s 07755089 n 0000 #s 07909231 n 0000 | seed of the cacao tree; ground roasted beans are source of chocolate -07755089 13 n 01 cocoa 1 004 @ 07566340 n 0000 #s 07922764 n 0000 %s 07754894 n 0000 ~ 07922955 n 0000 | powder of ground roasted cacao beans with most of the fat removed -07755262 13 n 02 canistel 0 eggfruit 0 002 @ 07705931 n 0000 #p 12775717 n 0000 | ovoid orange-yellow mealy sweet fruit of Florida and West Indies -07755411 13 n 01 melon 0 005 @ 07705931 n 0000 #p 12163824 n 0000 ~ 07755619 n 0000 ~ 07755707 n 0000 ~ 07756951 n 0000 | any of numerous fruits of the gourd family having a hard rind and sweet juicy flesh -07755619 13 n 01 melon_ball 0 001 @ 07755411 n 0000 | a bite of melon cut as a sphere -07755707 13 n 02 muskmelon 0 sweet_melon 0 005 @ 07755411 n 0000 #p 12164363 n 0000 ~ 07755929 n 0000 ~ 07756096 n 0000 ~ 07756641 n 0000 | the fruit of a muskmelon vine; any of several sweet melons related to cucumbers -07755929 13 n 02 cantaloup 0 cantaloupe 0 002 @ 07755707 n 0000 #p 12164656 n 0000 | the fruit of a cantaloup vine; small to medium-sized melon with yellowish flesh -07756096 13 n 01 winter_melon 0 005 @ 07755707 n 0000 #p 12164881 n 0000 ~ 07756325 n 0000 ~ 07756499 n 0000 ~ 07756838 n 0000 | the fruit of the winter melon vine; a green melon with pale green to orange flesh that keeps well -07756325 13 n 02 honeydew 0 honeydew_melon 0 001 @ 07756096 n 0000 | the fruit of a variety of winter melon vine; a large smooth greenish-white melon with pale green flesh -07756499 13 n 01 Persian_melon 0 001 @ 07756096 n 0000 | the fruit of a variety of winter melon vine; a large green melon with orange flesh -07756641 13 n 03 net_melon 0 netted_melon 0 nutmeg_melon 0 002 @ 07755707 n 0000 #p 12165170 n 0000 | the fruit of a variety of muskmelon vine; a melon with netlike markings and deep green flesh -07756838 13 n 02 casaba 0 casaba_melon 0 001 @ 07756096 n 0000 | melon having yellowish rind and whitish flesh -07756951 13 n 01 watermelon 0 002 @ 07755411 n 0000 #p 12164065 n 0000 | large oblong or roundish melon with a hard green rind and sweet watery red or occasionally yellowish pulp -07757132 13 n 01 cherry 0 006 @ 07705931 n 0000 @ 13138308 n 0000 #p 12641413 n 0000 ~ 07757312 n 0000 ~ 07757874 n 0000 ~ 07757990 n 0000 | a red fruit with a single hard stone -07757312 13 n 02 sweet_cherry 0 black_cherry 0 004 @ 07757132 n 0000 #p 12642200 n 0000 ~ 07757511 n 0000 ~ 07757602 n 0000 | any of several fruits of cultivated cherry trees that have sweet flesh -07757511 13 n 01 bing_cherry 0 001 @ 07757312 n 0000 | dark red or blackish sweet cherry -07757602 13 n 03 heart_cherry 0 oxheart 0 oxheart_cherry 0 002 @ 07757312 n 0000 ~ 07757753 n 0000 | large heart-shaped sweet cherry with soft flesh -07757753 13 n 02 blackheart 0 blackheart_cherry 0 001 @ 07757602 n 0000 | heart cherry with dark flesh and skin cherry -07757874 13 n 02 capulin 0 Mexican_black_cherry 0 002 @ 07757132 n 0000 #p 12642964 n 0000 | Mexican black cherry -07757990 13 n 01 sour_cherry 0 003 @ 07757132 n 0000 ~ 07758125 n 0000 ~ 07758260 n 0000 | acid cherries used for pies and preserves -07758125 13 n 01 amarelle 0 002 @ 07757990 n 0000 #p 12643688 n 0000 | pale red sour cherry with colorless or nearly colorless juice -07758260 13 n 01 morello 0 003 @ 07757990 n 0000 #p 12643877 n 0000 %s 07904072 n 0000 | cultivated sour cherry with dark-colored skin and juice -07758407 13 n 03 cocoa_plum 0 coco_plum 0 icaco 0 002 @ 07705931 n 0000 #p 12625003 n 0000 | plum-shaped whitish to almost black fruit used for preserves; tropical American -07758582 13 n 01 gherkin 2 001 @ 07824988 n 0000 | any of various small cucumbers pickled whole -07758680 13 n 01 grape 0 008 @ 07705931 n 0000 #p 13144794 n 0000 + 02397903 a 0102 + 02397903 a 0101 ~ 07759424 n 0000 ~ 07759691 n 0000 ~ 07759816 n 0000 %s 07891726 n 0000 | any of various juicy fruit of the genus Vitis with green or purple skins; grow in clusters -07758950 13 n 01 fox_grape 0 004 @ 07759691 n 0000 #p 13145040 n 0000 ~ 07759194 n 0000 ~ 07759324 n 0000 | purplish-black wild grape of the eastern United States with tough skins that slip easily from the flesh; cultivated in many varieties -07759194 13 n 01 Concord_grape 0 001 @ 07758950 n 0000 | slipskin grape; a purple table grape of the northeastern United States -07759324 13 n 01 Catawba 0 001 @ 07758950 n 0000 | slipskin grape; a reddish American table grape -07759424 13 n 02 muscadine 0 bullace_grape 0 003 @ 07758680 n 0000 #p 13145250 n 0000 ~ 07759576 n 0000 | dull-purple grape of southern United States -07759576 13 n 01 scuppernong 0 001 @ 07759424 n 0000 | amber-green muscadine grape of southeastern United States -07759691 13 n 01 slipskin_grape 0 002 @ 07758680 n 0000 ~ 07758950 n 0000 | a grape whose skin slips readily from the pulp -07759816 13 n 01 vinifera_grape 0 008 @ 07758680 n 0000 #p 13145444 n 0000 ~ 07760070 n 0000 ~ 07760153 n 0000 ~ 07760297 n 0000 ~ 07760395 n 0000 ~ 07760501 n 0000 ~ 07760755 n 0000 | grape from a cultivated variety of the common grape vine of Europe -07760070 13 n 01 emperor 0 001 @ 07759816 n 0000 | red table grape of California -07760153 13 n 03 muscat 1 muscatel 1 muscat_grape 0 002 @ 07759816 n 0000 %s 07901457 n 0000 | sweet aromatic grape used for raisins and wine -07760297 13 n 01 ribier 0 001 @ 07759816 n 0000 | dark reddish-purple table grape of California -07760395 13 n 01 sultana 2 001 @ 07759816 n 0000 | pale yellow seedless grape used for raisins and wine -07760501 13 n 01 Tokay 1 003 @ 07759816 n 0000 ~ 07760673 n 0000 %s 07898895 n 0000 | variety of wine grape originally grown in Hungary; the prototype of vinifera grapes -07760673 13 n 01 flame_tokay 0 001 @ 07760501 n 0000 | purplish-red table grape -07760755 13 n 01 Thompson_Seedless 0 001 @ 07759816 n 0000 | seedless green table grape of California -07760859 13 n 01 custard_apple 0 008 @ 07705931 n 0000 #p 11693981 n 0000 ~ 07761141 n 0000 ~ 07761309 n 0000 ~ 07761461 n 0000 ~ 07761611 n 0000 ~ 07761777 n 0000 ~ 07761954 n 0000 | the fruit of any of several tropical American trees of the genus Annona having soft edible pulp -07761141 13 n 02 cherimoya 0 cherimolla 0 002 @ 07760859 n 0000 #p 11694300 n 0000 | large tropical fruit with leathery skin and soft pulp; related to custard apples -07761309 13 n 02 soursop 0 guanabana 0 002 @ 07760859 n 0000 #p 11694664 n 0000 | large spiny tropical fruit with tart pulp related to custard apples -07761461 13 n 02 bullock's_heart 0 Jamaica_apple 0 002 @ 07760859 n 0000 #p 11694866 n 0000 | large heart-shaped tropical fruit with soft acid pulp -07761611 13 n 03 sweetsop 0 annon 0 sugar_apple 0 002 @ 07760859 n 0000 #p 11695085 n 0000 | sweet pulpy tropical fruit with thick scaly rind and shiny black seeds -07761777 13 n 01 ilama 0 002 @ 07760859 n 0000 #p 11694469 n 0000 | whitish tropical fruit with a pinkish tinge related to custard apples; grown in the southern United States -07761954 13 n 01 pond_apple 0 002 @ 07760859 n 0000 #p 11695285 n 0000 | ovoid yellow fruit with very fragrant peach-colored flesh; related to custard apples -07762114 13 n 02 papaw 0 pawpaw 0 002 @ 07705931 n 0000 #p 11695599 n 0000 | fruit with yellow flesh; related to custard apples -07762244 13 n 01 papaya 0 002 @ 07705931 n 0000 #p 12373100 n 0000 | large oval melon-like tropical fruit with yellowish flesh -07762373 13 n 01 kai_apple 0 002 @ 07705931 n 0000 #p 12378753 n 0000 | South African fruit smelling and tasting like apricots; used for pickles and preserves -07762534 13 n 03 ketembilla 0 kitembilla 0 kitambilla 0 002 @ 07705931 n 0000 #p 12378963 n 0000 | maroon-purple gooseberry-like fruit of India having tart-sweet purple pulp used especially for preserves -07762740 13 n 02 ackee 0 akee 0 002 @ 07705931 n 0000 #p 12742290 n 0000 | red pear-shaped tropical fruit with poisonous seeds; flesh is poisonous when unripe or overripe -07762913 13 n 01 durian 0 002 @ 07705931 n 0000 #p 12190869 n 0000 | huge fruit native to southeastern Asia `smelling like Hell and tasting like Heaven'; seeds are roasted and eaten like nuts -07763107 13 n 02 feijoa 0 pineapple_guava 0 002 @ 07705931 n 0000 #p 12332555 n 0000 | dark-green kiwi-sized tropical fruit with white flesh; used chiefly for jellies and preserves -07763290 13 n 02 genip 0 Spanish_lime 0 002 @ 07705931 n 0000 #p 12744850 n 0000 | round one-inch Caribbean fruit with green leathery skin and sweet juicy translucent pulp; eaten like grapes -07763483 13 n 02 genipap 0 genipap_fruit 0 002 @ 07705931 n 0000 #p 12667582 n 0000 | a succulent orange-sized tropical fruit with a thick rind -07763629 13 n 03 kiwi 0 kiwi_fruit 0 Chinese_gooseberry 0 002 @ 07705931 n 0000 #p 12371439 n 0000 | fuzzy brown egg-shaped fruit with slightly tart green flesh -07763792 13 n 02 loquat 0 Japanese_plum 0 002 @ 07705931 n 0000 #p 12629666 n 0000 | yellow olive-sized semitropical fruit with a large free stone and relatively little flesh; used for jellies -07763987 13 n 01 mangosteen 0 002 @ 07705931 n 0000 #p 12366675 n 0000 | two- to three-inch tropical fruit with juicy flesh suggestive of both peaches and pineapples -07764155 13 n 01 mango 0 002 @ 07705931 n 0000 #p 12761284 n 0000 | large oval tropical fruit having smooth skin, juicy aromatic pulp, and a large hairy seed -07764315 13 n 03 sapodilla 0 sapodilla_plum 0 sapota 0 002 @ 07705931 n 0000 #p 12774641 n 0000 | tropical fruit with a rough brownish skin and very sweet brownish pulp -07764486 13 n 03 sapote 0 mammee 2 marmalade_plum 0 002 @ 07705931 n 0000 #p 12775919 n 0000 | brown oval fruit flesh makes excellent sherbet -07764630 13 n 02 tamarind 0 tamarindo 0 002 @ 07705931 n 0000 #p 12501202 n 0000 | large tropical seed pod with very tangy pulp that is eaten fresh or cooked with rice and fish or preserved for curries and chutneys -07764847 13 n 04 avocado 0 alligator_pear 0 avocado_pear 0 aguacate 0 002 @ 07705931 n 0000 #p 11706761 n 0000 | a pear-shaped tropical fruit with green or blackish skin and rich yellowish pulp enclosing a single large seed -07765073 13 n 01 date 0 002 @ 07705931 n 0000 #p 12593994 n 0000 | sweet edible fruit of the date palm with a single long woody seed -07765208 13 n 01 elderberry 0 003 @ 07705931 n 0000 @ 13138308 n 0000 #p 12678548 n 0000 | berrylike fruit of an elder used for e.g. wines and jellies -07765361 13 n 01 guava 0 002 @ 07705931 n 0000 #p 12333530 n 0000 | tropical fruit having yellow skin and pink pulp; eaten fresh or used for e.g. jellies -07765517 13 n 01 mombin 0 002 @ 07705931 n 0000 #p 12766043 n 0000 | purplish tropical fruit -07765612 13 n 02 hog_plum 2 yellow_mombin 0 002 @ 07705931 n 0000 #p 12765846 n 0000 | yellow oval tropical fruit -07765728 13 n 02 hog_plum 1 wild_plum 0 002 @ 07705931 n 0000 #p 12639168 n 0000 | fruit of the wild plum of southern United States -07765862 13 n 01 jaboticaba 0 002 @ 07705931 n 0000 #p 12333053 n 0000 | tough-skinned purple grapelike tropical fruit grown in Brazil -07765999 13 n 03 jujube 2 Chinese_date 0 Chinese_jujube 0 003 @ 07705931 n 0000 @ 13138308 n 0000 #p 13143285 n 0000 | dark red plumlike fruit of Old World buckthorn trees -07766173 13 n 07 litchi 0 litchi_nut 0 litchee 0 lichi 0 leechee 0 lichee 0 lychee 0 002 @ 07705931 n 0000 #p 12744387 n 0000 | Chinese fruit having a thin brittle shell enclosing a sweet jellylike pulp and a single seed; often dried -07766409 13 n 02 longanberry 0 dragon's_eye 0 002 @ 07705931 n 0000 #p 12743352 n 0000 | Asian fruit similar to litchi -07766530 13 n 03 mamey 0 mammee 1 mammee_apple 0 002 @ 07705931 n 0000 #p 12370174 n 0000 | globular or ovoid tropical fruit with thick russet leathery rind and juicy yellow or reddish flesh -07766723 13 n 01 marang 0 002 @ 07705931 n 0000 #p 12400924 n 0000 | tropical fruit from the Philippines having a mass of small seeds embedded in sweetish white pulp -07766891 13 n 01 medlar 1 002 @ 07705931 n 0000 #p 12636224 n 0000 | crabapple-like fruit used for preserves -07767002 13 n 01 medlar 2 002 @ 07705931 n 0000 #p 12670758 n 0000 | a South African globular fruit with brown leathery skin and pithy flesh having a sweet-acid taste -07767171 13 n 01 mulberry 0 002 @ 07742704 n 0000 #p 12399132 n 0000 | sweet usually dark purple blackberry-like fruit of any of several mulberry trees of the genus Morus -07767344 13 n 01 olive 0 005 @ 07582441 n 0000 @ 13138308 n 0000 #p 12301180 n 0000 ~ 07767549 n 0000 ~ 07767709 n 0000 | one-seeded fruit of the European olive tree usually pickled and used as a relish -07767549 13 n 02 black_olive 0 ripe_olive 0 001 @ 07767344 n 0000 | olives picked ripe and cured in brine then dried or pickled or preserved canned or in oil -07767709 13 n 01 green_olive 0 001 @ 07767344 n 0000 | olives picked green and pickled in brine; infrequently stuffed with e.g. pimento -07767847 13 n 01 pear 0 007 @ 07705931 n 0000 @ 13138842 n 0000 #p 12651611 n 0000 ~ 07768068 n 0000 ~ 07768139 n 0000 ~ 07768230 n 0000 ~ 07768318 n 0000 | sweet juicy gritty-textured fruit available in many varieties -07768068 13 n 01 bosc 0 001 @ 07767847 n 0000 | greenish-yellow pear -07768139 13 n 01 anjou 0 001 @ 07767847 n 0000 | a pear with firm flesh and a green skin -07768230 13 n 02 bartlett 0 bartlett_pear 0 001 @ 07767847 n 0000 | juicy yellow pear -07768318 13 n 02 seckel 0 seckel_pear 0 001 @ 07767847 n 0000 | small yellowish- to reddish-brown pear -07768423 13 n 01 plantain 0 002 @ 07707451 n 0000 #p 12352990 n 0000 | starchy banana-like fruit; eaten (always cooked) as a staple vegetable throughout the tropics -07768590 13 n 01 plumcot 0 002 @ 07705931 n 0000 #p 12640435 n 0000 | hybrid between plum and apricot -07768694 13 n 01 pomegranate 0 002 @ 07705931 n 0000 #p 12345280 n 0000 | large globular fruit having many seeds with juicy red pulp in a tough brownish-red rind -07768858 13 n 01 prickly_pear 0 002 @ 07705931 n 0000 #p 11851578 n 0000 | round or pear-shaped spiny fruit of any of various prickly pear cacti -07769005 13 n 01 garambulla 0 002 @ 07705931 n 0000 #p 11850521 n 0000 | small berrylike fruit -07769102 13 n 02 Barbados_gooseberry 0 blade_apple 0 002 @ 07705931 n 0000 #p 11852531 n 0000 | small yellow to orange fruit of the Barbados gooseberry cactus used in desserts and preserves and jellies -07769306 13 n 04 quandong 0 quandang 0 quantong 0 native_peach 0 002 @ 07705931 n 0000 #p 12736603 n 0000 | red Australian fruit; used for dessert or in jam -07769465 13 n 01 quandong_nut 0 002 @ 07737081 n 0000 #p 12736603 n 0000 | edible nutlike seed of the quandong fruit -07769584 13 n 01 quince 0 003 @ 07705931 n 0000 @ 13138842 n 0000 #p 12628986 n 0000 | aromatic acid-tasting pear-shaped fruit used in preserves -07769731 13 n 02 rambutan 0 rambotan 0 002 @ 07705931 n 0000 #p 12745386 n 0000 | pleasantly acid bright red oval Malayan fruit covered with soft spines -07769886 13 n 02 pulasan 0 pulassan 0 002 @ 07705931 n 0000 #p 12745564 n 0000 | fruit of an East Indian tree similar to the rambutan but sweeter -07770034 13 n 01 rose_apple 0 002 @ 07705931 n 0000 #p 12332218 n 0000 | fragrant oval yellowish tropical fruit used in jellies and confections -07770180 13 n 02 sorb 0 sorb_apple 0 002 @ 07705931 n 0000 #p 12658846 n 0000 | acid gritty-textured fruit -07770289 13 n 01 sour_gourd 1 002 @ 07705931 n 0000 #p 12189779 n 0000 | acid-tasting Australian gourd-like fruit with a woody rind and large seeds -07770439 13 n 02 sour_gourd 2 monkey_bread 0 002 @ 07705931 n 0000 #p 12189987 n 0000 | African gourd-like fruit with edible pulp -07770571 13 n 01 edible_seed 0 007 @ 13135832 n 0000 ~ 07770763 n 0000 ~ 07770869 n 0000 ~ 07772631 n 0000 ~ 07773700 n 0000 ~ 07775197 n 0000 ~ 07814634 n 0000 | many are used as seasoning -07770763 13 n 01 pumpkin_seed 0 002 @ 07770571 n 0000 #p 12158443 n 0000 | the edible seed of a pumpkin -07770869 13 n 02 betel_nut 0 areca_nut 0 002 @ 07770571 n 0000 #p 12584365 n 0000 | seed of betel palm; chewed with leaves of the betel pepper and lime as a digestive stimulant and narcotic in southeastern Asia -07771082 13 n 01 beechnut 0 002 @ 07737081 n 0000 #p 12260799 n 0000 | small sweet triangular nut of any of various beech trees -07771212 13 n 01 walnut 0 004 @ 07737081 n 0000 #p 12318378 n 0000 ~ 07771405 n 0000 ~ 07771539 n 0000 | nut of any of various walnut trees having a wrinkled two-lobed seed with a hard shell -07771405 13 n 01 black_walnut 0 002 @ 07771212 n 0000 #p 12319204 n 0000 | American walnut having a very hard and thick woody shell -07771539 13 n 01 English_walnut 0 003 @ 07771212 n 0000 #m 12319414 n 0000 %s 07675535 n 0000 | nut with a wrinkled two-lobed seed and hard but relatively thin shell; widely used in cooking -07771731 13 n 02 brazil_nut 0 brazil 0 002 @ 07737081 n 0000 #p 12327846 n 0000 | three-sided tropical American nut with white oily meat and hard brown shell -07771891 13 n 01 butternut 1 002 @ 07737081 n 0000 #p 12318965 n 0000 | oily egg-shaped nut of an American tree of the walnut family -07772026 13 n 01 souari_nut 0 002 @ 07737081 n 0000 #p 12373739 n 0000 | a large nutlike seed of a South American tree -07772147 13 n 02 cashew 0 cashew_nut 0 002 @ 07737081 n 0000 #p 12759273 n 0000 | kidney-shaped nut edible only when roasted -07772274 13 n 01 chestnut 0 002 @ 07737081 n 0000 #p 12262553 n 0000 | edible nut of any of various chestnut trees of the genus Castanea -07772413 13 n 03 chincapin 0 chinkapin 0 chinquapin 0 003 @ 07737081 n 0000 #p 12263738 n 0000 #p 12263987 n 0000 | small nut of either of two small chestnut trees of the southern United States; resembles a hazelnut -07772631 13 n 01 water_chinquapin 0 002 @ 07770571 n 0000 #p 11717577 n 0000 | edible nutlike seeds of an American lotus having the flavor of a chinquapin -07772788 13 n 04 hazelnut 0 filbert 0 cobnut 0 cob 0 002 @ 07737081 n 0000 #p 12288823 n 0000 | nut of any of several trees of the genus Corylus -07772935 13 n 02 coconut 0 cocoanut 0 006 @ 07737081 n 0000 #p 12587803 n 0000 %s 07674161 n 0000 %s 07773238 n 0000 %s 07773428 n 0000 %s 07773572 n 0000 | large hard-shelled oval nut with a fibrous husk containing thick white meat surrounding a central cavity filled (when fresh) with fluid or milk -07773238 13 n 02 coconut 2 coconut_meat 0 003 @ 07555863 n 0000 #s 07772935 n 0000 ~ 07773572 n 0000 | the edible white meat of a coconut; often shredded for use in e.g. cakes and curries -07773428 13 n 02 coconut_milk 0 coconut_water 0 002 @ 07844604 n 0000 #s 07772935 n 0000 | clear to whitish fluid from within a fresh coconut -07773572 13 n 01 copra 0 002 @ 07773238 n 0000 #s 07772935 n 0000 | the dried meat of the coconut from which oil is extracted -07773700 13 n 01 dika_nut 0 003 @ 07770571 n 0000 #s 07773827 n 0000 #p 12717644 n 0000 | edible oil-rich seed of wild mango -07773827 13 n 01 dika_bread 0 002 @ 07555863 n 0000 %s 07773700 n 0000 | somewhat astringent paste prepared by grinding and heating seeds of the African wild mango; a staple food of some African peoples -07774032 13 n 03 groundnut 0 potato_bean 0 wild_bean 0 002 @ 13128365 n 0000 #p 12507379 n 0000 | nutlike tuber; important food of Native Americans -07774182 13 n 01 grugru_nut 0 002 @ 07737081 n 0000 #p 12583855 n 0000 | nut of Brazilian or West Indian palms -07774295 13 n 01 hickory_nut 0 003 @ 07737081 n 0000 #p 12321873 n 0000 #p 12321395 n 0000 | small hard-shelled nut of North American hickory trees especially the shagbark hickories -07774479 13 n 01 cola_extract 0 002 @ 07809368 n 0000 #s 12197359 n 0000 | a flavoring extracted from the kola nut -07774596 13 n 01 macadamia_nut 0 002 @ 07737081 n 0000 #p 12221522 n 0000 | nutlike seed with sweet and crisp white meat -07774719 13 n 01 pecan 0 002 @ 07737081 n 0000 #p 12321077 n 0000 | smooth brown oval nut of south central United States -07774842 13 n 03 pine_nut 0 pignolia 0 pinon_nut 0 003 @ 07737081 n 0000 #p 11609684 n 0000 #p 11611758 n 0000 | edible seed of any of several nut pines especially some pinons of southwestern North America -07775050 13 n 02 pistachio 0 pistachio_nut 0 002 @ 07737081 n 0000 #p 12761702 n 0000 | nut of Mediterranean trees having an edible green kernel -07775197 13 n 01 sunflower_seed 0 003 @ 07770571 n 0000 #p 11978713 n 0000 %s 07675411 n 0000 | edible seed of sunflowers; used as food and poultry feed and as a source of oil -07775375 13 n 01 fish 0 016 @ 07555863 n 0000 + 01140794 v 0101 ~ 07782939 n 0000 ~ 07783102 n 0000 ~ 07783667 n 0000 ~ 07783967 n 0000 ~ 07784367 n 0000 ~ 07785631 n 0000 ~ 07789382 n 0000 ~ 07789541 n 0000 ~ 07792027 n 0000 ~ 07794452 n 0000 ~ 07795598 n 0000 ~ 07795751 n 0000 ~ 07798357 n 0000 ~ 07798554 n 0000 | the flesh of fish used as food; "in Japan most fish is eaten raw"; "after the scare about foot-and-mouth disease a lot of people started eating fish instead of meat"; "they have a chef who specializes in fish" -07775905 13 n 01 saltwater_fish 0 031 @ 07776866 n 0000 ~ 07777189 n 0000 ~ 07777945 n 0000 ~ 07778224 n 0000 ~ 07778342 n 0000 ~ 07778494 n 0000 ~ 07778680 n 0000 ~ 07778810 n 0000 ~ 07778938 n 0000 ~ 07779747 n 0000 ~ 07780627 n 0000 ~ 07781319 n 0000 ~ 07781689 n 0000 ~ 07781972 n 0000 ~ 07784522 n 0000 ~ 07784810 n 0000 ~ 07784991 n 0000 ~ 07785783 n 0000 ~ 07785887 n 0000 ~ 07786005 n 0000 ~ 07789063 n 0000 ~ 07789240 n 0000 ~ 07790081 n 0000 ~ 07790246 n 0000 ~ 07790400 n 0000 ~ 07792219 n 0000 ~ 07792383 n 0000 ~ 07792470 n 0000 ~ 07794063 n 0000 ~ 07797189 n 0000 ~ 07797518 n 0000 | flesh of fish from the sea used as food -07776545 13 n 01 freshwater_fish 0 013 @ 07776866 n 0000 ~ 07777358 n 0000 ~ 07777512 n 0000 ~ 07779123 n 0000 ~ 07779263 n 0000 ~ 07779375 n 0000 ~ 07779895 n 0000 ~ 07780038 n 0000 ~ 07780173 n 0000 ~ 07780307 n 0000 ~ 07794893 n 0000 ~ 07795019 n 0000 ~ 07795133 n 0000 | flesh of fish from fresh water used as food -07776866 13 n 01 seafood 0 012 @ 07555863 n 0000 ~ 07775905 n 0000 ~ 07776545 n 0000 ~ 07781801 n 0000 ~ 07782365 n 0000 ~ 07782668 n 0000 ~ 07782804 n 0000 ~ 07783210 n 0000 ~ 07794159 n 0000 ~ 07795317 n 0000 ~ 07799278 n 0000 ~ 07799447 n 0000 | edible fish (broadly including freshwater fish) or shellfish or roe etc -07777189 13 n 02 bream 1 sea_bream 0 002 @ 07775905 n 0000 #p 02590702 n 0000 | flesh of any of various saltwater fishes of the family Sparidae or the family Bramidae -07777358 13 n 02 bream 2 freshwater_bream 0 002 @ 07776545 n 0000 #p 02563182 n 0000 | flesh of various freshwater fishes of North America or of Europe -07777512 13 n 02 freshwater_bass 0 bass 1 004 @ 07776545 n 0000 #p 02564270 n 0000 ~ 07777735 n 0000 ~ 07777840 n 0000 | any of various North American freshwater fish with lean flesh (especially of the genus Micropterus) -07777735 13 n 01 largemouth_bass 0 002 @ 07777512 n 0000 #p 02565324 n 0000 | flesh of largemouth bass -07777840 13 n 01 smallmouth_bass 0 002 @ 07777512 n 0000 #p 02565072 n 0000 | flesh of smallmouth bass -07777945 13 n 02 sea_bass 0 bass 2 003 @ 07775905 n 0000 #p 02566834 n 0000 ~ 07778103 n 0000 | the lean flesh of a saltwater fish of the family Serranidae -07778103 13 n 02 striped_bass 0 striper 0 001 @ 07777945 n 0000 | caught along the Atlantic coast of the United States -07778224 13 n 01 grouper 0 002 @ 07775905 n 0000 #p 02568959 n 0000 | flesh of a saltwater fish similar to sea bass -07778342 13 n 01 croaker 0 002 @ 07775905 n 0000 #p 02596381 n 0000 | the lean flesh of a saltwater fish caught along Atlantic coast of southern U.S. -07778494 13 n 01 whiting 0 003 @ 07775905 n 0000 #p 02597367 n 0000 #p 02524659 n 0000 | flesh of any of a number of slender food fishes especially of Atlantic coasts of North America -07778680 13 n 01 whiting 2 002 @ 07775905 n 0000 #p 02523110 n 0000 | flesh of a cod-like fish of the Atlantic waters of Europe -07778810 13 n 01 cusk 0 002 @ 07775905 n 0000 #p 02525382 n 0000 | the lean flesh of a cod-like fish of North Atlantic waters -07778938 13 n 02 dolphinfish 0 mahimahi 0 003 @ 07775905 n 0000 #p 02581957 n 0000 ;r 09078231 n 0000 | the lean flesh of a saltwater fish found in warm waters (especially in Hawaii) -07779123 13 n 01 carp 0 002 @ 07776545 n 0000 #p 01439808 n 0000 | the lean flesh of a fish that is often farmed; can be baked or braised -07779263 13 n 01 buffalofish 0 002 @ 07776545 n 0000 #p 01445429 n 0000 | large carp-like North American fish -07779375 13 n 01 pike 0 004 @ 07776545 n 0000 #p 02561108 n 0000 ~ 07779535 n 0000 ~ 07779664 n 0000 | highly valued northern freshwater fish with lean flesh -07779535 13 n 01 muskellunge 0 002 @ 07779375 n 0000 #p 02561514 n 0000 | flesh of very large North American pike; a game fish -07779664 13 n 01 pickerel 0 001 @ 07779375 n 0000 | flesh of young or small pike -07779747 13 n 01 monkfish 0 002 @ 07775905 n 0000 #p 02548247 n 0000 | flesh of a large-headed anglerfish of the Atlantic waters of North America -07779895 13 n 01 sucker 2 002 @ 07776545 n 0000 #p 01444922 n 0000 | flesh of any of numerous North American food fishes with toothless jaws -07780038 13 n 02 catfish 0 mudcat 0 001 @ 07776545 n 0000 | flesh of scaleless food fish of the southern United States; often farmed -07780173 13 n 01 perch 0 003 @ 07776545 n 0000 #p 02557182 n 0000 #p 02557318 n 0000 | any of numerous fishes of America and Europe -07780307 13 n 01 sunfish 0 003 @ 07776545 n 0000 #p 02562315 n 0000 ~ 07780486 n 0000 | the lean flesh of any of numerous American perch-like fishes of the family Centrarchidae -07780486 13 n 01 crappie 0 002 @ 07780307 n 0000 #p 02562796 n 0000 | small sunfishes of the genus Pomoxis of central United States rivers -07780627 13 n 03 tuna 0 tuna_fish 0 tunny 0 005 @ 07775905 n 0000 #p 02626762 n 0000 ~ 07780874 n 0000 ~ 07781022 n 0000 ~ 07781207 n 0000 | important warm-water fatty fish of the genus Thunnus of the family Scombridae; usually served as steaks -07780874 13 n 01 albacore 0 002 @ 07780627 n 0000 #p 02627037 n 0000 | relatively small tuna with choice white flesh; major source of canned tuna -07781022 13 n 01 bonito 0 002 @ 07780627 n 0000 #p 02627835 n 0000 | flesh of mostly Pacific food fishes of the genus Sarda of the family Scombridae; related to but smaller than tuna -07781207 13 n 02 bluefin 0 bluefin_tuna 0 002 @ 07780627 n 0000 #p 02627292 n 0000 | flesh of very large tuna -07781319 13 n 01 mackerel 0 004 @ 07775905 n 0000 #p 02624551 n 0000 ~ 07781497 n 0000 ~ 07800004 n 0000 | flesh of very important usually small (to 18 in) fatty Atlantic fish -07781497 13 n 01 Spanish_mackerel 0 003 @ 07781319 n 0000 #p 02625612 n 0000 #p 02624807 n 0000 | flesh of commercially important fishes especially of the Atlantic coastal waters of America -07781689 13 n 01 pompano 0 002 @ 07775905 n 0000 #p 02579557 n 0000 | flesh of pompano; warm-water fatty fish -07781801 13 n 03 squid 0 calamari 0 calamary 0 004 @ 07776866 n 0000 #p 01971280 n 0000 ;c 00243918 n 0000 ;r 08801678 n 0000 | (Italian cuisine) squid prepared as food -07781972 13 n 04 blowfish 0 sea_squab 0 puffer 0 pufferfish 0 004 @ 07775905 n 0000 #p 02655020 n 0000 ~ 07782204 n 0000 %s 15069338 n 0000 | delicacy that is highly dangerous because of a potent nerve poison in ovaries and liver -07782204 13 n 01 fugu 0 001 @ 07781972 n 0000 | a blowfish highly prized as a delicacy in Japan but highly dangerous because the skin and organs are poisonous -07782365 13 n 01 octopus 0 002 @ 07776866 n 0000 #p 01970164 n 0000 | tentacles of octopus prepared as food -07782475 13 n 02 escargot 0 snail 0 003 @ 07649854 n 0000 #s 01944812 n 0000 + 01382917 v 0201 | edible terrestrial snail usually served in the shell with a sauce of melted butter and garlic -07782668 13 n 02 periwinkle 0 winkle 0 002 @ 07776866 n 0000 #s 01948446 n 0000 | small edible marine snail; steamed in wine or baked -07782804 13 n 01 whelk 0 003 @ 07776866 n 0000 #s 01947396 n 0000 + 01143147 v 0101 | large marine snail much used as food in Europe -07782939 13 n 01 panfish 0 001 @ 07775375 n 0000 | any of numerous small food fishes; especially those caught with hook and line and not available on the market -07783102 13 n 01 stockfish 0 001 @ 07775375 n 0000 | fish cured by being split and air-dried without salt -07783210 13 n 01 shellfish 0 012 @ 07776866 n 0000 #p 01940736 n 0000 ~ 07783550 n 0000 ~ 07786164 n 0000 ~ 07786686 n 0000 ~ 07787613 n 0000 ~ 07787715 n 0000 ~ 07788885 n 0000 ~ 07792640 n 0000 ~ 07792725 n 0000 ~ 07793260 n 0000 ~ 07797641 n 0000 | meat of edible aquatic invertebrate with a shell (especially a mollusk or crustacean) -07783550 13 n 01 mussel 0 002 @ 07783210 n 0000 #p 01964271 n 0000 | black marine bivalves usually steamed in wine -07783667 13 n 01 anchovy 0 002 @ 07775375 n 0000 #s 07783827 n 0000 | tiny fishes usually canned or salted; used for hors d'oeuvres or as seasoning in sauces -07783827 13 n 01 anchovy_paste 0 002 @ 07809368 n 0000 %s 07783667 n 0000 | paste made primarily of anchovies; used in sauces and spreads -07783967 13 n 01 eel 0 004 @ 07775375 n 0000 #p 02526818 n 0000 ~ 07784197 n 0000 ~ 07784274 n 0000 | the fatty flesh of eel; an elongate fish found in fresh water in Europe and America; large eels are usually smoked or pickled -07784197 13 n 01 smoked_eel 0 001 @ 07783967 n 0000 | eel cured by smoking -07784274 13 n 01 elver 0 001 @ 07783967 n 0000 | young eel; may be sauteed or batter-fried -07784367 13 n 03 mullet 0 grey_mullet 0 gray_mullet 0 002 @ 07775375 n 0000 #p 02601344 n 0000 | highly valued lean flesh of marine or freshwater mullet -07784522 13 n 01 herring 0 008 @ 07775905 n 0000 #p 02532028 n 0000 ~ 07785138 n 0000 ~ 07785235 n 0000 ~ 07785342 n 0000 ~ 07798233 n 0000 ~ 07798985 n 0000 ~ 07799132 n 0000 | valuable flesh of fatty fish from shallow waters of northern Atlantic or Pacific; usually salted or pickled -07784810 13 n 01 kingfish 0 003 @ 07775905 n 0000 #p 02597608 n 0000 #p 02626265 n 0000 | the lean flesh of any of several fish caught off the Atlantic coast of the United States -07784991 13 n 01 lingcod 0 002 @ 07775905 n 0000 #p 02553028 n 0000 | the lean flesh of a fish caught off the Pacific coast of the United States -07785138 13 n 02 kipper 0 kippered_herring 0 001 @ 07784522 n 0000 | salted and smoked herring -07785235 13 n 01 bloater 0 001 @ 07784522 n 0000 | large fatty herring lightly salted and briefly smoked -07785342 13 n 01 pickled_herring 0 002 @ 07784522 n 0000 ~ 07785487 n 0000 | herring preserved in a pickling liquid (usually brine or vinegar) -07785487 13 n 01 rollmops 0 002 @ 07785342 n 0000 @ 07582277 n 0000 | a pickled herring filet that has been rolled or wrapped around a pickle -07785631 13 n 01 alewife 0 002 @ 07775375 n 0000 #p 02531114 n 0000 | flesh of shad-like fish abundant along the Atlantic coast or in coastal streams -07785783 13 n 01 bluefish 0 002 @ 07775905 n 0000 #p 02573704 n 0000 | fatty bluish flesh of bluefish -07785887 13 n 01 swordfish 0 002 @ 07775905 n 0000 #p 02629716 n 0000 | flesh of swordfish usually served as steaks -07786005 13 n 01 butterfish 0 003 @ 07775905 n 0000 #p 02632989 n 0000 #p 02615298 n 0000 | any of numerous small flat Atlantic food fish having smooth skin -07786164 13 n 02 huitre 0 oyster 0 005 @ 07783210 n 0000 #p 01960459 n 0000 + 01383511 v 0201 ~ 07786337 n 0000 ~ 07786484 n 0000 | edible body of any of numerous oysters -07786337 13 n 01 oysters_Rockefeller 0 001 @ 07786164 n 0000 | oysters spread with butter and spinach and seasonings and baked on the half shell -07786484 13 n 02 bluepoint 0 blue_point 0 002 @ 07786164 n 0000 #p 01961059 n 0000 | oysters originally from Long Island Sound but now from anywhere along the northeastern seacoast; usually eaten raw -07786686 13 n 01 clam 0 005 @ 07783210 n 0000 #p 01956481 n 0000 + 01383947 v 0101 ~ 07786856 n 0000 ~ 07787429 n 0000 | flesh of either hard-shell or soft-shell clams -07786856 13 n 04 quahaug 0 quahog 0 hard-shell_clam 0 round_clam 0 004 @ 07786686 n 0000 #p 01958038 n 0000 ~ 07787108 n 0000 ~ 07787270 n 0000 | Atlantic coast round clams with hard shells; large clams usually used for chowders or other clam dishes -07787108 13 n 02 littleneck 0 littleneck_clam 0 001 @ 07786856 n 0000 | a quahog when young and small; usually eaten raw; an important food popular in New York -07787270 13 n 02 cherrystone 0 cherrystone_clam 0 001 @ 07786856 n 0000 | small quahog larger than a littleneck; eaten raw or cooked as in e.g. clams casino -07787429 13 n 04 soft-shell_clam 0 steamer 0 steamer_clam 0 long-neck_clam 0 003 @ 07786686 n 0000 #p 01957335 n 0000 + 00327145 v 0201 | a clam that is usually steamed in the shell -07787613 13 n 01 cockle 0 002 @ 07783210 n 0000 #p 01960177 n 0000 | common edible European bivalve -07787715 13 n 02 crab 0 crabmeat 0 010 @ 07783210 n 0000 #p 07582027 n 0000 + 01140065 v 0101 ~ 07787980 n 0000 ~ 07788106 n 0000 ~ 07788198 n 0000 ~ 07788340 n 0000 ~ 07788435 n 0000 ~ 07788609 n 0000 ~ 07788730 n 0000 | the edible flesh of any of various crabs -07787980 13 n 01 blue_crab 0 002 @ 07787715 n 0000 #p 01979874 n 0000 | Atlantic crab; most common source of fresh crabmeat -07788106 13 n 01 crab_legs 0 001 @ 07787715 n 0000 | legs of especially Alaska king crabs -07788198 13 n 02 soft-shell_crab 0 soft-shelled_crab 0 001 @ 07787715 n 0000 | freshly molted crab with new shell still tender and flexible -07788340 13 n 01 Japanese_crab 0 001 @ 07787715 n 0000 | crabmeat usually canned; from Japan -07788435 13 n 04 Alaska_king_crab 0 Alaskan_king_crab 0 king_crab 0 Alaska_crab 0 002 @ 07787715 n 0000 #p 01981276 n 0000 | meat of large cold-water crab; mainly leg meat -07788609 13 n 01 Dungeness_crab 0 002 @ 07787715 n 0000 #p 01978287 n 0000 | flesh of Cancer magister (Dungeness crab) -07788730 13 n 01 stone_crab 0 002 @ 07787715 n 0000 #p 01977485 n 0000 | pale flesh with delicate texture and flavor; found in Florida but now very rare -07788885 13 n 04 crayfish 1 crawfish 0 crawdad 0 ecrevisse 0 003 @ 07783210 n 0000 #p 01985797 n 0000 #p 01985493 n 0000 | tiny lobster-like crustaceans usually boiled briefly -07789063 13 n 02 cod 0 codfish 0 003 @ 07775905 n 0000 #p 02522722 n 0000 ~ 07789911 n 0000 | lean white flesh of important North Atlantic food fish; usually baked or poached -07789240 13 n 02 pollack 0 pollock 0 002 @ 07775905 n 0000 #p 02524202 n 0000 | lean white flesh of North Atlantic fish; similar to codfish -07789382 13 n 02 schrod 0 scrod 0 001 @ 07775375 n 0000 | flesh of young Atlantic cod weighing up to 2 pounds; also young haddock and pollock; often broiled -07789541 13 n 01 haddock 0 003 @ 07775375 n 0000 #p 02523877 n 0000 ~ 07789745 n 0000 | lean white flesh of fish similar to but smaller than cod; usually baked or poached or as fillets sauteed or fried -07789745 13 n 04 finnan_haddie 0 finnan_haddock 0 finnan 0 smoked_haddock 0 001 @ 07789541 n 0000 | haddock usually baked but sometimes broiled with lots of butter -07789911 13 n 01 salt_cod 0 001 @ 07789063 n 0000 | codfish preserved in salt; must be desalted and flaked by soaking in water and pounding; used in e.g. codfish cakes -07790081 13 n 02 porgy 0 scup 1 002 @ 07775905 n 0000 #p 02593679 n 0000 | lean flesh of fish found in warm waters of southern Atlantic coast of the United States -07790246 13 n 01 scup 2 002 @ 07775905 n 0000 #p 02593453 n 0000 | flesh of fish found in colder waters of northern Atlantic coast of the United States -07790400 13 n 01 flatfish 0 004 @ 07775905 n 0000 ~ 07790601 n 0000 ~ 07791274 n 0000 ~ 07791808 n 0000 | sweet lean whitish flesh of any of numerous thin-bodied fish; usually served as thin fillets -07790601 13 n 01 flounder 0 006 @ 07790400 n 0000 ~ 07790800 n 0000 ~ 07790935 n 0000 ~ 07791039 n 0000 ~ 07791145 n 0000 ~ 07791663 n 0000 | flesh of any of various American and European flatfish -07790800 13 n 01 yellowtail_flounder 0 002 @ 07790601 n 0000 #p 02659176 n 0000 | flesh of American flounder having a yellowish tail -07790935 13 n 01 plaice 0 002 @ 07790601 n 0000 #p 02658531 n 0000 | flesh of large European flatfish -07791039 13 n 01 turbot 0 002 @ 07790601 n 0000 #p 02663211 n 0000 | flesh of a large European flatfish -07791145 13 n 01 sand_dab 0 001 @ 07790601 n 0000 | the lean flesh of a small flounder from the Pacific coast of North America -07791274 13 n 02 sole 0 fillet_of_sole 0 004 @ 07790400 n 0000 #p 02663849 n 0000 ~ 07791434 n 0000 ~ 07791535 n 0000 | lean flesh of any of several flatfish -07791434 13 n 02 grey_sole 0 gray_sole 0 001 @ 07791274 n 0000 | greyish-white flesh of a flatfish -07791535 13 n 02 lemon_sole 1 English_sole 0 002 @ 07791274 n 0000 #p 02659808 n 0000 | highly valued almost pure white flesh -07791663 13 n 02 lemon_sole 2 winter_flounder 0 002 @ 07790601 n 0000 #p 02659478 n 0000 | flesh of American flounder; important in the winter -07791808 13 n 01 halibut 0 002 @ 07790400 n 0000 #p 02660208 n 0000 | lean flesh of very large flatfish of Atlantic or Pacific -07791937 13 n 01 flitch 2 001 @ 07658058 n 0000 | fish steak usually cut from a halibut -07792027 13 n 01 hake 0 001 @ 07775375 n 0000 | the lean flesh of a fish similar to cod -07792117 13 n 03 redfish 0 rosefish 0 ocean_perch 0 001 @ 07792219 n 0000 | North Atlantic rockfish -07792219 13 n 01 rockfish 0 003 @ 07775905 n 0000 #p 02644113 n 0000 ~ 07792117 n 0000 | the lean flesh of any of various valuable market fish caught among rocks -07792383 13 n 01 sailfish 0 001 @ 07775905 n 0000 | a saltwater fish with lean flesh -07792470 13 n 01 weakfish 0 003 @ 07775905 n 0000 #p 02599347 n 0000 #p 02599557 n 0000 | lean flesh of food and game fishes of the Atlantic coast of the United States -07792640 13 n 01 limpet 0 001 @ 07783210 n 0000 | mollusk with a low conical shell -07792725 13 n 01 lobster 0 008 @ 07783210 n 0000 #p 01983048 n 0000 ~ 07792926 n 0000 ~ 07793133 n 0000 ~ 07793521 n 0000 ~ 07793685 n 0000 %p 07793795 n 0000 %p 07793946 n 0000 | flesh of a lobster -07792926 13 n 03 American_lobster 0 Northern_lobster 0 Maine_lobster 0 002 @ 07792725 n 0000 #p 01983481 n 0000 | flesh of cold-water lobsters having large tender claws; caught from Maine to the Carolinas -07793133 13 n 01 European_lobster 0 002 @ 07792725 n 0000 #m 01983674 n 0000 | similar to but smaller than American lobsters -07793260 13 n 04 spiny_lobster 0 langouste 0 rock_lobster 0 crayfish 2 002 @ 07783210 n 0000 #p 01984695 n 0000 | warm-water lobsters without claws; those from Australia and South Africa usually marketed as frozen tails; caught also in Florida and California -07793521 13 n 03 Norwegian_lobster 0 langoustine 0 scampo 0 002 @ 07792725 n 0000 #p 01984245 n 0000 | caught in European waters; slenderer than American lobster -07793685 13 n 01 lobster_tail 0 001 @ 07792725 n 0000 | lobster tail meat; usually from spiny rock lobsters -07793795 13 n 01 coral 0 002 @ 07799278 n 0000 #p 07792725 n 0000 | unfertilized lobster roe; reddens in cooking; used as garnish or to color sauces -07793946 13 n 01 tomalley 0 002 @ 07652052 n 0000 #p 07792725 n 0000 | edible greenish substance in boiled lobster -07794063 13 n 02 sardine 0 pilchard 0 001 @ 07775905 n 0000 | small fatty fish usually canned -07794159 13 n 02 prawn 0 shrimp 0 006 @ 07776866 n 0000 #p 01986806 n 0000 #s 07582152 n 0000 + 01142070 v 0201 + 01382606 v 0101 ~ 07794353 n 0000 | any of various edible decapod crustaceans -07794353 13 n 01 river_prawn 0 002 @ 07794159 n 0000 #p 01987727 n 0000 | large Australian prawn -07794452 13 n 01 trout 0 003 @ 07775375 n 0000 ~ 07794605 n 0000 ~ 07794744 n 0000 | flesh of any of several primarily freshwater game and food fishes -07794605 13 n 01 rainbow_trout 0 002 @ 07794452 n 0000 #p 02537525 n 0000 | flesh of Pacific trout that migrate from salt to fresh water -07794744 13 n 02 sea_trout 0 salmon_trout 0 002 @ 07794452 n 0000 #p 02537319 n 0000 | flesh of marine trout that migrate from salt to fresh water -07794893 13 n 02 brook_trout 0 speckled_trout 0 002 @ 07776545 n 0000 #p 02538216 n 0000 | a delicious freshwater food fish -07795019 13 n 01 lake_trout 0 002 @ 07776545 n 0000 #p 02538010 n 0000 | flesh of large trout of northern lakes -07795133 13 n 01 whitefish 1 003 @ 07776545 n 0000 #p 02538985 n 0000 ~ 07795459 n 0000 | flesh of salmon-like or trout-like cold-water fish of cold lakes of the northern hemisphere -07795317 13 n 01 whitefish 2 002 @ 07776866 n 0000 ;r 08860123 n 0000 | any market fish--edible saltwater fish or shellfish--except herring -07795459 13 n 02 lake_herring 0 cisco 0 002 @ 07795133 n 0000 #p 02539573 n 0000 | cold-water fish caught in Lake Superior and northward -07795598 13 n 01 rock_salmon 0 002 @ 07775375 n 0000 ;r 08860123 n 0000 | any of several coarse fishes (such as dogfish or wolffish) when used as food -07795751 13 n 01 salmon 0 008 @ 07775375 n 0000 #p 02534734 n 0000 ~ 07796005 n 0000 ~ 07796165 n 0000 ~ 07796321 n 0000 ~ 07796468 n 0000 ~ 07796649 n 0000 ~ 07798147 n 0000 | flesh of any of various marine or freshwater fish of the family Salmonidae -07796005 13 n 01 Atlantic_salmon 0 002 @ 07795751 n 0000 #p 02535537 n 0000 | fatty pink flesh of fish from northern coastal Atlantic; usually marketed fresh -07796165 13 n 03 red_salmon 0 sockeye 0 sockeye_salmon 0 002 @ 07795751 n 0000 #p 02536165 n 0000 | fatty red flesh of salmon of Pacific coast and rivers -07796321 13 n 03 chinook_salmon 0 chinook 0 king_salmon 0 002 @ 07795751 n 0000 #p 02536456 n 0000 | pink or white flesh of large Pacific salmon -07796468 13 n 04 silver_salmon 0 coho_salmon 0 coho 0 cohoe 0 002 @ 07795751 n 0000 #p 02536864 n 0000 | fatty pinkish flesh of small salmon caught in the Pacific and Great Lakes -07796649 13 n 01 smoked_salmon 0 002 @ 07795751 n 0000 ~ 07796750 n 0000 | salmon cured by smoking -07796750 13 n 01 lox 0 003 @ 07796649 n 0000 ~ 07796877 n 0000 ~ 07796970 n 0000 | brine-cured salmon that is lightly smoked -07796877 13 n 01 Scandinavian_lox 0 001 @ 07796750 n 0000 | salt-cured Scandinavian salmon -07796970 13 n 05 Nova_Scotia_lox 0 Nova_lox 0 Nova_Scotia_salmon 0 Nova_salmon 0 Nova_style_salmon 0 001 @ 07796750 n 0000 | brine-cured salmon that is less salty than most; sometimes sugar is also used in the curing -07797189 13 n 01 snapper 0 004 @ 07775905 n 0000 #p 02586543 n 0000 #p 02593019 n 0000 ~ 07797357 n 0000 | flesh of any of various important food fishes of warm seas -07797357 13 n 01 red_snapper 0 002 @ 07797189 n 0000 #p 02587051 n 0000 | highly esteemed reddish lean flesh of snapper from Atlantic coast and Gulf of Mexico -07797518 13 n 01 red_rockfish 0 002 @ 07775905 n 0000 #p 02644665 n 0000 | red flesh of large food fish of Pacific coast -07797641 13 n 03 scallop 0 scollop 0 escallop 0 006 @ 07783210 n 0000 #p 01965889 n 0000 + 01140315 v 0202 + 01140315 v 0101 ~ 07797913 n 0000 ~ 07798025 n 0000 | edible muscle of mollusks having fan-shaped shells; served broiled or poached or in salads or cream sauces -07797913 13 n 01 sea_scallop 0 002 @ 07797641 n 0000 #p 01966586 n 0000 | muscle of large deep-water scallops -07798025 13 n 01 bay_scallop 0 002 @ 07797641 n 0000 #p 01966377 n 0000 | muscle of small choice shallow-water scallops -07798147 13 n 01 kippered_salmon 0 001 @ 07795751 n 0000 | salted and smoked salmon -07798233 13 n 02 red_herring 0 smoked_herring 0 001 @ 07784522 n 0000 | a dried and smoked herring having a reddish color -07798357 13 n 01 shad 0 002 @ 07775375 n 0000 #p 02530637 n 0000 | bony flesh of herring-like fish usually caught during their migration to fresh water for spawning; especially of Atlantic coast -07798554 13 n 01 smelt 0 004 @ 07775375 n 0000 #p 02540412 n 0000 ~ 07798728 n 0000 ~ 07798872 n 0000 | small cold-water silvery fish; migrate between salt and fresh water -07798728 13 n 02 American_smelt 0 rainbow_smelt 0 002 @ 07798554 n 0000 #p 02540791 n 0000 | common smelt of eastern North America and Alaska -07798872 13 n 02 European_smelt 0 sparling 0 002 @ 07798554 n 0000 #p 02540983 n 0000 | common smelt of Europe -07798985 13 n 02 sprat 0 brisling 0 002 @ 07784522 n 0000 #p 02532918 n 0000 | small fatty European fish; usually smoked or canned like sardines -07799132 13 n 01 whitebait 0 001 @ 07784522 n 0000 | minnows or other small fresh- or saltwater fish (especially herring); usually cooked whole -07799278 13 n 02 roe 0 hard_roe 0 004 @ 07776866 n 0000 ~ 07793795 n 0000 ~ 07799579 n 0000 ~ 07799874 n 0000 | fish eggs or egg-filled ovary; having a grainy texture -07799447 13 n 02 milt 0 soft_roe 0 001 @ 07776866 n 0000 | fish sperm or sperm-filled reproductive gland; having a creamy texture -07799579 13 n 02 caviar 0 caviare 0 002 @ 07799278 n 0000 ~ 07799738 n 0000 | salted roe of sturgeon or other large fish; usually served as an hors d'oeuvre -07799738 13 n 01 beluga_caviar 0 002 @ 07799579 n 0000 #p 02640857 n 0000 | roe of beluga sturgeon usually from Russia; highly valued -07799874 13 n 01 shad_roe 0 002 @ 07799278 n 0000 #p 02530637 n 0000 | roe of shad; may be parboiled or baked or sauteed gently -07800004 13 n 01 smoked_mackerel 0 001 @ 07781319 n 0000 | mackerel cured by smoking -07800091 13 n 02 feed 0 provender 2 018 @ 00021265 n 0000 + 01180206 v 0101 + 01179865 v 0101 ~ 07570141 n 0000 ~ 07570530 n 0000 ~ 07800487 n 0000 ~ 07800636 n 0000 ~ 07800740 n 0000 ~ 07801007 n 0000 ~ 07801342 n 0000 ~ 07801508 n 0000 ~ 07805006 n 0000 ~ 07805254 n 0000 ~ 07805478 n 0000 ~ 07805594 n 0000 ~ 07805731 n 0000 ~ 07805872 n 0000 ~ 14867545 n 0000 | food for domestic livestock -07800487 13 n 01 cattle_cake 0 002 @ 07800091 n 0000 ;r 08860123 n 0000 | a concentrated feed for cattle; processed in the form of blocks or cakes -07800636 13 n 01 creep_feed 0 001 @ 07800091 n 0000 | feed given to young animals isolated in a creep -07800740 13 n 01 fodder 0 007 @ 07800091 n 0000 + 01178101 v 0101 ~ 07801091 n 0000 ~ 07801779 n 0000 ~ 07801892 n 0000 ~ 07802026 n 0000 ~ 07802246 n 0000 | coarse food (especially for livestock) composed of entire plants or the leaves and stalks of a cereal crop -07801007 13 n 01 feed_grain 0 001 @ 07800091 n 0000 | grain grown for cattle feed -07801091 13 n 05 eatage 0 forage 0 pasture 0 pasturage 0 grass 0 006 @ 07800740 n 0000 + 01576478 v 0403 + 01576165 v 0405 + 01576478 v 0303 + 01576165 v 0305 + 01177699 v 0201 | bulky food like grass or hay for browsing or grazing horses or cattle -07801342 13 n 02 silage 0 ensilage 0 002 @ 07800091 n 0000 + 02283197 v 0201 | fodder harvested while green and kept succulent by partial fermentation as in a silo -07801508 13 n 01 oil_cake 0 003 @ 07800091 n 0000 %s 07729926 n 0000 ~ 07801709 n 0000 | mass of e.g. linseed or cottonseed or soybean from which the oil has been pressed; used as food for livestock -07801709 13 n 01 oil_meal 0 001 @ 07801508 n 0000 | ground oil cake -07801779 13 n 01 alfalfa 0 002 @ 07800740 n 0000 #p 12549420 n 0000 | leguminous plant grown for hay or forage -07801892 13 n 02 broad_bean 2 horse_bean 0 002 @ 07800740 n 0000 #p 12576029 n 0000 | a bean plant cultivated for use animal fodder -07802026 13 n 01 hay 0 003 @ 07800740 n 0000 #s 13775939 n 0000 ~ 07802152 n 0000 | grass mowed and cured for use as fodder -07802152 13 n 01 timothy 0 002 @ 07802026 n 0000 #p 12130549 n 0000 | a grass grown for hay -07802246 13 n 01 stover 0 001 @ 07800740 n 0000 | the dried stalks and leaves of a field crop (especially corn) used as animal fodder after the grain has been harvested -07802417 13 n 03 grain 0 food_grain 0 cereal 1 013 @ 07566340 n 0000 + 02688623 a 0301 ~ 07731952 n 0000 ~ 07802767 n 0000 ~ 07802863 n 0000 ~ 07802963 n 0000 ~ 07803093 n 0000 ~ 07803310 n 0000 ~ 07803545 n 0000 ~ 07804152 n 0000 ~ 07804323 n 0000 ~ 07804771 n 0000 ~ 07888909 n 0000 | foodstuff prepared from the starchy grains of cereal grasses -07802767 13 n 01 grist 0 001 @ 07802417 n 0000 | grain intended to be or that has been ground -07802863 13 n 01 groats 0 001 @ 07802417 n 0000 | the hulled and crushed grain of various cereals -07802963 13 n 01 millet 0 001 @ 07802417 n 0000 | small seed of any of various annual cereal grasses especially Setaria italica -07803093 13 n 02 barley 0 barleycorn 0 003 @ 07802417 n 0000 #p 12123450 n 0000 ~ 07803213 n 0000 | a grain of barley -07803213 13 n 01 pearl_barley 0 001 @ 07803093 n 0000 | barley ground into small round pellets -07803310 13 n 01 buckwheat 0 002 @ 07802417 n 0000 #p 12601494 n 0000 | grain ground into flour -07803408 13 n 03 bulgur 0 bulghur 0 bulgur_wheat 0 003 @ 07803545 n 0000 #p 07808904 n 0000 ;r 09039411 n 0000 | parched crushed wheat -07803545 13 n 02 wheat 0 wheat_berry 0 005 @ 07802417 n 0000 #p 12142874 n 0000 ~ 07803408 n 0000 ~ 07803779 n 0000 %p 07803992 n 0000 | grains of common wheat; sometimes cooked whole or cracked as cereal; usually ground into flour -07803779 13 n 01 cracked_wheat 0 001 @ 07803545 n 0000 | grains of wheat that have been crushed into small pieces -07803895 13 n 01 stodge 0 001 @ 07570720 n 0000 | heavy and filling (and usually starchy) food -07803992 13 n 01 wheat_germ 0 002 @ 07570720 n 0000 #p 07803545 n 0000 | embryo of the wheat kernel; removed before milling and eaten as a source of vitamins -07804152 13 n 01 oat 0 003 @ 07802417 n 0000 #p 12110085 n 0000 ;u 06295235 n 0000 | seed of the annual grass Avena sativa (spoken of primarily in the plural as `oats') -07804323 13 n 01 rice 0 007 @ 07802417 n 0000 @ 07566863 n 0000 #p 12126084 n 0000 + 01460408 v 0101 ~ 07804543 n 0000 ~ 07804657 n 0000 ~ 07804900 n 0000 | grains used as food either unpolished or more often polished -07804543 13 n 01 brown_rice 0 001 @ 07804323 n 0000 | unpolished rice retaining the yellowish-brown outer layer -07804657 13 n 02 white_rice 0 polished_rice 0 001 @ 07804323 n 0000 | having husk or outer brown layers removed -07804771 13 n 02 wild_rice 0 Indian_rice 0 002 @ 07802417 n 0000 #p 12145919 n 0000 | grains of aquatic grass of North America -07804900 13 n 01 paddy 0 001 @ 07804323 n 0000 | rice in the husk either gathered or still in the field -07805006 13 n 05 slop 0 slops 0 swill 0 pigswill 0 pigwash 0 004 @ 07800091 n 0000 + 01178220 v 0302 + 01579488 v 0101 + 01178220 v 0101 | wet feed (especially for pigs) consisting of mostly kitchen waste mixed with water or skimmed or sour milk -07805254 13 n 01 mash 0 004 @ 07800091 n 0000 + 00331082 v 0102 + 01593937 v 0104 ~ 07805389 n 0000 | mixture of ground animal feeds -07805389 13 n 02 chicken_feed 0 scratch 0 001 @ 07805254 n 0000 | dry mash for poultry -07805478 13 n 02 cud 1 rechewed_food 0 001 @ 07800091 n 0000 | food of a ruminant regurgitated to be chewed again -07805594 13 n 03 bird_feed 0 bird_food 0 birdseed 0 002 @ 07800091 n 0000 ~ 07806120 n 0000 | food given to birds; usually mixed seeds -07805731 13 n 03 petfood 0 pet-food 0 pet_food 0 003 @ 07800091 n 0000 ~ 07805966 n 0000 ~ 07806043 n 0000 | food prepared for animal pets -07805872 13 n 01 mast 0 001 @ 07800091 n 0000 | nuts of forest trees used as feed for swine -07805966 13 n 01 dog_food 0 001 @ 07805731 n 0000 | food prepared for dogs -07806043 13 n 01 cat_food 0 001 @ 07805731 n 0000 | food prepared for cats -07806120 13 n 01 canary_seed 0 001 @ 07805594 n 0000 | a mixture of seeds used to feed caged birds -07806221 13 n 01 salad 0 014 @ 07557434 n 0000 ~ 07806633 n 0000 ~ 07807002 n 0000 ~ 07807171 n 0000 ~ 07807594 n 0000 ~ 07807710 n 0000 ~ 07807922 n 0000 ~ 07808166 n 0000 ~ 07808268 n 0000 ~ 07808352 n 0000 ~ 07808479 n 0000 ~ 07808587 n 0000 ~ 07808806 n 0000 ~ 07808904 n 0000 | food mixtures either arranged on a plate or tossed and served with a moist dressing; usually consisting of or including greens -07806633 13 n 01 tossed_salad 0 004 @ 07806221 n 0000 ~ 07806774 n 0000 ~ 07806879 n 0000 ~ 07807317 n 0000 | salad tossed with a dressing -07806774 13 n 01 green_salad 0 001 @ 07806633 n 0000 | tossed salad composed primarily of salad greens -07806879 13 n 01 Caesar_salad 0 001 @ 07806633 n 0000 | typically having fried croutons and dressing made with a raw egg -07807002 13 n 01 salmagundi 0 001 @ 07806221 n 0000 | cooked meats and eggs and vegetables usually arranged in rows around the plate and dressed with a salad dressing -07807171 13 n 01 salad_nicoise 0 001 @ 07806221 n 0000 | typically containing tomatoes and anchovies and garnished with black olives and capers -07807317 13 n 01 combination_salad 0 002 @ 07806633 n 0000 ~ 07807472 n 0000 | containing meat or chicken or cheese in addition to greens and vegetables -07807472 13 n 01 chef's_salad 0 001 @ 07807317 n 0000 | the combination salad prepared as a particular chef's specialty -07807594 13 n 01 potato_salad 0 001 @ 07806221 n 0000 | any of various salads having chopped potatoes as the base -07807710 13 n 01 pasta_salad 0 002 @ 07806221 n 0000 ~ 07807834 n 0000 | a salad having any of various pastas as the base -07807834 13 n 01 macaroni_salad 0 001 @ 07807710 n 0000 | having macaroni as the base -07807922 13 n 01 fruit_salad 0 002 @ 07806221 n 0000 ~ 07808022 n 0000 | salad composed of fruits -07808022 13 n 01 Waldorf_salad 0 001 @ 07807922 n 0000 | typically made of apples and celery with nuts or raisins and dressed with mayonnaise -07808166 13 n 01 crab_Louis 0 001 @ 07806221 n 0000 | lettuce and crabmeat dressed with sauce Louis -07808268 13 n 01 herring_salad 0 001 @ 07806221 n 0000 | based on pickled herring -07808352 13 n 02 tuna_fish_salad 0 tuna_salad 0 001 @ 07806221 n 0000 | salad composed primarily of chopped canned tuna fish -07808479 13 n 01 chicken_salad 0 001 @ 07806221 n 0000 | salad composed primarily of chopped chicken meat -07808587 13 n 02 coleslaw 0 slaw 0 001 @ 07806221 n 0000 | basically shredded cabbage -07808675 13 n 01 aspic 0 001 @ 07643981 n 0000 | savory jelly based on fish or meat stock used as a mold for meats or vegetables -07808806 13 n 01 molded_salad 0 001 @ 07806221 n 0000 | salad of meats or vegetables in gelatin -07808904 13 n 02 tabbouleh 0 tabooli 0 003 @ 07806221 n 0000 ;r 08957381 n 0000 %p 07803408 n 0000 | a finely chopped salad with tomatoes and parsley and mint and scallions and bulgur wheat -07809096 13 n 02 ingredient 0 fixings 0 007 @ 07566340 n 0000 #p 07557434 n 0000 ~ 07809368 n 0000 ~ 07826250 n 0000 ~ 07841037 n 0000 ~ 07841345 n 0000 ~ 07926540 n 0000 | food that is a component of a mixture in cooking; "the recipe lists all the fixings for a salad" -07809368 13 n 06 flavorer 0 flavourer 0 flavoring 0 flavouring 0 seasoner 0 seasoning 0 056 @ 07809096 n 0000 + 02191766 v 0601 + 02191766 v 0501 + 02191766 v 0403 + 02191766 v 0302 + 02191766 v 0203 + 02191766 v 0102 ~ 07774479 n 0000 ~ 07783827 n 0000 ~ 07810531 n 0000 ~ 07810907 n 0000 ~ 07811416 n 0000 ~ 07812184 n 0000 ~ 07812497 n 0000 ~ 07812662 n 0000 ~ 07812790 n 0000 ~ 07812913 n 0000 ~ 07813107 n 0000 ~ 07813324 n 0000 ~ 07813409 n 0000 ~ 07813495 n 0000 ~ 07813579 n 0000 ~ 07813717 n 0000 ~ 07814925 n 0000 ~ 07815588 n 0000 ~ 07816052 n 0000 ~ 07817465 n 0000 ~ 07818029 n 0000 ~ 07818133 n 0000 ~ 07818277 n 0000 ~ 07818572 n 0000 ~ 07819303 n 0000 ~ 07819769 n 0000 ~ 07821919 n 0000 ~ 07822323 n 0000 ~ 07822518 n 0000 ~ 07822687 n 0000 ~ 07823814 n 0000 ~ 07824702 n 0000 ~ 07826453 n 0000 ~ 07826544 n 0000 ~ 07826653 n 0000 ~ 07827130 n 0000 ~ 07827284 n 0000 ~ 07827410 n 0000 ~ 07827554 n 0000 ~ 07827750 n 0000 ~ 07828041 n 0000 ~ 07828156 n 0000 ~ 07828275 n 0000 ~ 07828378 n 0000 ~ 07828642 n 0000 ~ 07828807 n 0000 ~ 07858595 n 0000 ~ 07920989 n 0000 ~ 07921090 n 0000 | something added to food primarily for the savor it imparts -07810531 13 n 01 bouillon_cube 0 001 @ 07809368 n 0000 | a cube of evaporated seasoned meat extract -07810633 13 n 02 beef_tea 0 Bovril 0 001 @ 14848785 n 0000 | an extract of beef (given to people who are ill) -07810745 13 n 01 lemon_zest 0 001 @ 07738760 n 0000 | tiny bits of lemon peel -07810825 13 n 01 orange_zest 0 001 @ 07738905 n 0000 | tiny bits of orange peel -07810907 13 n 01 condiment 0 020 @ 07809368 n 0000 ~ 07582441 n 0000 ~ 07582609 n 0000 ~ 07819480 n 0000 ~ 07822197 n 0000 ~ 07822845 n 0000 ~ 07823105 n 0000 ~ 07823280 n 0000 ~ 07823369 n 0000 ~ 07823460 n 0000 ~ 07823591 n 0000 ~ 07823698 n 0000 ~ 07824268 n 0000 ~ 07824383 n 0000 ~ 07824502 n 0000 ~ 07825972 n 0000 ~ 07828987 n 0000 ~ 07829412 n 0000 ~ 07856270 n 0000 ~ 07857356 n 0000 | a preparation (a sauce or relish or spice) to enhance flavor or enjoyment; "mustard and ketchup are condiments" -07811416 13 n 01 herb 0 030 @ 07809368 n 0000 + 02893195 a 0101 ~ 07812046 n 0000 ~ 07816164 n 0000 ~ 07816296 n 0000 ~ 07816398 n 0000 ~ 07816575 n 0000 ~ 07816726 n 0000 ~ 07816839 n 0000 ~ 07817024 n 0000 ~ 07817160 n 0000 ~ 07817315 n 0000 ~ 07817599 n 0000 ~ 07817758 n 0000 ~ 07818689 n 0000 ~ 07818825 n 0000 ~ 07818995 n 0000 ~ 07819166 n 0000 ~ 07819896 n 0000 ~ 07820145 n 0000 ~ 07820297 n 0000 ~ 07820497 n 0000 ~ 07820814 n 0000 ~ 07821260 n 0000 ~ 07821404 n 0000 ~ 07821610 n 0000 ~ 07821758 n 0000 ~ 07826340 n 0000 ~ 07827896 n 0000 ~ 07932841 n 0000 | aromatic potherb used in cookery for its savory qualities -07812046 13 n 01 fines_herbes 0 001 @ 07811416 n 0000 | a mixture of finely chopped fresh herbs; "an omelet flavored with fines herbes" -07812184 13 n 01 spice 0 011 @ 07809368 n 0000 + 02192570 v 0102 ~ 07813833 n 0000 ~ 07814007 n 0000 ~ 07814203 n 0000 ~ 07814487 n 0000 ~ 07814790 n 0000 ~ 07815163 n 0000 ~ 07815294 n 0000 ~ 07815424 n 0000 ~ 07826930 n 0000 | any of a variety of pungent aromatic vegetable substances used for flavoring food -07812497 13 n 01 peppermint_oil 0 004 @ 07809368 n 0000 #s 12856091 n 0000 #s 07606538 n 0000 %s 14950394 n 0000 | oil from the peppermint plant used as flavoring -07812662 13 n 01 spearmint_oil 0 002 @ 07809368 n 0000 #s 12856287 n 0000 | an aromatic oil obtained from the spearmint plant -07812790 13 n 01 lemon_oil 0 002 @ 07809368 n 0000 #s 07738760 n 0000 | fragrant yellow oil obtained from the lemon peel -07812913 13 n 02 wintergreen_oil 0 oil_of_wintergreen 0 003 @ 07809368 n 0000 #s 12235765 n 0000 %s 14952441 n 0000 | oil or flavoring obtained from the creeping wintergreen or teaberry plant -07813107 13 n 03 salt 0 table_salt 0 common_salt 0 004 @ 07809368 n 0000 + 01073822 a 0101 + 00213353 v 0101 + 02196214 v 0101 | white crystalline form of especially sodium chloride used to season and preserve food -07813324 13 n 01 celery_salt 0 001 @ 07809368 n 0000 | ground celery seed and salt -07813409 13 n 01 garlic_salt 0 001 @ 07809368 n 0000 | ground dried garlic and salt -07813495 13 n 01 onion_salt 0 001 @ 07809368 n 0000 | ground dried onion and salt -07813579 13 n 01 seasoned_salt 0 001 @ 07809368 n 0000 | combination of salt and vegetable extracts and spices and monosodium glutamate -07813717 13 n 01 sour_salt 0 002 @ 07809368 n 0000 %s 14812872 n 0000 | crystals of citric acid used as seasoning -07813833 13 n 01 five_spice_powder 0 002 @ 07812184 n 0000 %s 07826930 n 0000 | Chinese seasoning made by grinding star anise and fennel and pepper and cloves and cinnamon -07814007 13 n 01 allspice 0 002 @ 07812184 n 0000 #p 12331066 n 0000 | ground dried berrylike fruit of a West Indian allspice tree; suggesting combined flavors of cinnamon and nutmeg and cloves -07814203 13 n 01 cinnamon 0 003 @ 07812184 n 0000 #p 11704791 n 0000 ~ 07814390 n 0000 | spice from the dried aromatic bark of the Ceylon cinnamon tree; used as rolled strips or ground -07814390 13 n 01 stick_cinnamon 0 001 @ 07814203 n 0000 | dried rolled strips of cinnamon bark -07814487 13 n 01 clove 0 002 @ 07812184 n 0000 #s 12339831 n 0000 | spice from dried unopened flower bud of the clove tree; used whole or ground -07814634 13 n 02 cumin 0 cumin_seed 0 003 @ 07770571 n 0000 #p 12936826 n 0000 #s 07910245 n 0000 | aromatic seeds of the cumin herb of the carrot family -07814790 13 n 01 fennel 0 001 @ 07812184 n 0000 | fennel seeds are ground and used as a spice or as an ingredient of a spice mixture -07814925 13 n 02 ginger 2 gingerroot 0 005 @ 07809368 n 0000 #p 12356023 n 0000 #s 07815163 n 0000 #s 07928367 n 0000 + 02192818 v 0101 | pungent rhizome of the common ginger plant; used fresh as a seasoning especially in Asian cookery -07815163 13 n 02 ginger 0 powdered_ginger 0 003 @ 07812184 n 0000 + 02192818 v 0101 %s 07814925 n 0000 | dried ground gingerroot -07815294 13 n 01 mace 0 002 @ 07812184 n 0000 %s 07815424 n 0000 | spice made from the dried fleshy covering of the nutmeg seed -07815424 13 n 01 nutmeg 0 003 @ 07812184 n 0000 #p 11714382 n 0000 #s 07815294 n 0000 | hard aromatic seed of the nutmeg tree used as spice when grated or ground -07815588 13 n 02 pepper 1 peppercorn 0 006 @ 07809368 n 0000 #p 13149506 n 0000 + 02397496 a 0101 + 02196081 v 0101 ~ 07815839 n 0000 ~ 07815956 n 0000 | pungent seasoning from the berry of the common pepper plant of East India; use whole or ground -07815839 13 n 01 black_pepper 0 001 @ 07815588 n 0000 | pepper that is ground from whole peppercorns with husks on -07815956 13 n 01 white_pepper 0 001 @ 07815588 n 0000 | pepper ground from husked peppercorns -07816052 13 n 01 sassafras 0 002 @ 07809368 n 0000 #p 11707229 n 0000 | dried root bark of the sassafras tree -07816164 13 n 02 basil 0 sweet_basil 0 002 @ 07811416 n 0000 #p 12860542 n 0000 | leaves of the common basil; used fresh or dried -07816296 13 n 01 bay_leaf 0 002 @ 07811416 n 0000 #p 11704093 n 0000 | dried leaf of the bay laurel -07816398 13 n 01 borage 0 002 @ 07811416 n 0000 #p 12816508 n 0000 | an herb whose leaves are used to flavor sauces and punches; young leaves can be eaten in salads or cooked -07816575 13 n 01 hyssop 0 002 @ 07811416 n 0000 #p 12848499 n 0000 | bitter leaves used sparingly in salads; dried flowers used in soups and tisanes -07816726 13 n 01 caraway 0 002 @ 07811416 n 0000 #p 12934479 n 0000 | leaves used sparingly in soups and stews -07816839 13 n 01 chervil 0 002 @ 07811416 n 0000 #p 12932706 n 0000 | fresh ferny parsley-like leaves used as a garnish with chicken and veal and omelets and green salads and spinach -07817024 13 n 01 chives 0 002 @ 07811416 n 0000 #p 12435152 n 0000 | cylindrical leaves used fresh as a mild onion-flavored seasoning -07817160 13 n 02 comfrey 0 healing_herb 0 002 @ 07811416 n 0000 #p 12822955 n 0000 | leaves make a popular tisane; young leaves used in salads or cooked -07817315 13 n 03 coriander 0 Chinese_parsley 0 cilantro 0 002 @ 07811416 n 0000 #p 12936469 n 0000 | parsley-like herb used as seasoning or garnish -07817465 13 n 02 coriander 2 coriander_seed 0 002 @ 07809368 n 0000 #p 12936469 n 0000 | dried coriander seeds used whole or ground -07817599 13 n 01 costmary 0 002 @ 07811416 n 0000 #p 12021499 n 0000 | leaves used sparingly (because of bitter overtones) in sauces and soups and stuffings -07817758 13 n 02 fennel 1 common_fennel 0 002 @ 07811416 n 0000 #p 12939282 n 0000 | leaves used for seasoning -07817871 13 n 03 fennel 2 Florence_fennel 0 finocchio 0 002 @ 07707451 n 0000 #p 12939479 n 0000 | aromatic bulbous stem base eaten cooked or raw in salads -07818029 13 n 01 fennel_seed 0 002 @ 07809368 n 0000 #p 12939282 n 0000 | aromatic anis-scented seeds -07818133 13 n 02 fenugreek 0 fenugreek_seed 0 002 @ 07809368 n 0000 #p 12574470 n 0000 | aromatic seeds used as seasoning especially in curry -07818277 13 n 02 garlic 0 ail 0 004 @ 07809368 n 0000 #p 12434775 n 0000 + 02733034 a 0101 ~ 07818422 n 0000 | aromatic bulb used as seasoning -07818422 13 n 02 clove 1 garlic_clove 0 001 @ 07818277 n 0000 | one of the small bulblets that can be split off of the axis of a larger garlic bulb -07818572 13 n 01 garlic_chive 0 002 @ 07809368 n 0000 #p 12435777 n 0000 | large flat leaves used as chive is used -07818689 13 n 01 lemon_balm 0 002 @ 07811416 n 0000 #p 12854600 n 0000 | lemony leaves used for a tisane or in soups or fruit punches -07818825 13 n 01 lovage 0 002 @ 07811416 n 0000 #p 12940226 n 0000 | stalks eaten like celery or candied like angelica; seeds used for flavoring or pickled like capers -07818995 13 n 02 marjoram 0 oregano 0 002 @ 07811416 n 0000 #p 12853287 n 0000 | pungent leaves used as seasoning with meats and fowl and in stews and soups and omelets -07819166 13 n 01 mint 1 003 @ 07811416 n 0000 #s 07606278 n 0000 #p 12855042 n 0000 | the leaves of a mint plant used fresh or candied -07819303 13 n 01 mustard_seed 0 004 @ 07809368 n 0000 #p 11879505 n 0000 #p 11896519 n 0000 #s 07819480 n 0000 | black or white seeds ground to make mustard pastes or powders -07819480 13 n 02 mustard 0 table_mustard 0 005 @ 07810907 n 0000 ~ 03994417 n 0000 %s 07819303 n 0000 ~ 07819682 n 0000 %s 15033367 n 0000 | pungent powder or paste prepared from ground mustard seeds -07819682 13 n 01 Chinese_mustard 0 001 @ 07819480 n 0000 | very hot prepared mustard -07819769 13 n 01 nasturtium 0 002 @ 07809368 n 0000 #p 12719684 n 0000 | flowers and seeds and leaves all used as flavorings -07819896 13 n 01 parsley 0 001 @ 07811416 n 0000 | aromatic herb with flat or crinkly leaves that are cut finely and used to garnish food -07820036 13 n 01 salad_burnet 0 002 @ 07723330 n 0000 #p 12637485 n 0000 | leaves sometimes used for salad -07820145 13 n 01 rosemary 0 002 @ 07811416 n 0000 #p 12864160 n 0000 | extremely pungent leaves used fresh or dried as seasoning for especially meats -07820297 13 n 01 rue 0 002 @ 07811416 n 0000 #p 12707199 n 0000 | leaves sometimes used for flavoring fruit or claret cup but should be used with great caution: can cause irritation like poison ivy -07820497 13 n 01 sage 0 003 @ 07811416 n 0000 #p 12865824 n 0000 ~ 07820683 n 0000 | aromatic fresh or dried grey-green leaves used widely as seasoning for meats and fowl and game etc -07820683 13 n 01 clary_sage 0 002 @ 07820497 n 0000 #p 12865037 n 0000 | fresh leaves used in omelets and fritters and with lamb -07820814 13 n 02 savory 0 savoury 0 003 @ 07811416 n 0000 ~ 07820960 n 0000 ~ 07821107 n 0000 | either of two aromatic herbs of the mint family -07820960 13 n 02 summer_savory 0 summer_savoury 0 002 @ 07820814 n 0000 #p 12867184 n 0000 | herb with delicately flavored leaves with many uses -07821107 13 n 02 winter_savory 0 winter_savoury 0 002 @ 07820814 n 0000 #p 12867449 n 0000 | resinous leaves used in stews and stuffings and meat loaf -07821260 13 n 02 sweet_woodruff 0 waldmeister 0 002 @ 07811416 n 0000 #p 12665271 n 0000 | fragrant dark green leaves used to flavor May wine -07821404 13 n 01 sweet_cicely 0 002 @ 07811416 n 0000 #p 12940609 n 0000 | fresh ferny leaves and green seeds used as garnish in salads and cold vegetables; dried seeds used in confectionery and liqueurs -07821610 13 n 02 tarragon 0 estragon 0 002 @ 07811416 n 0000 #p 11930203 n 0000 | fresh leaves (or leaves preserved in vinegar) used as seasoning -07821758 13 n 01 thyme 0 002 @ 07811416 n 0000 #p 12870682 n 0000 | leaves can be used as seasoning for almost any meat and stews and stuffings and vegetables -07821919 13 n 01 turmeric 0 002 @ 07809368 n 0000 #p 12356395 n 0000 | ground dried rhizome of the turmeric plant used as seasoning -07822053 13 n 01 caper 0 002 @ 07824988 n 0000 #p 11865874 n 0000 | pickled flower buds used as a pungent relish in various dishes and sauces -07822197 13 n 04 catsup 0 ketchup 0 cetchup 0 tomato_ketchup 0 001 @ 07810907 n 0000 | thick spicy sauce made from tomatoes -07822323 13 n 03 cardamom 0 cardamon 0 cardamum 0 002 @ 07809368 n 0000 #p 12358293 n 0000 | aromatic seeds used as seasoning like cinnamon and cloves especially in pickles and barbecue sauces -07822518 13 n 03 cayenne 0 cayenne_pepper 0 red_pepper 0 002 @ 07809368 n 0000 #s 12900987 n 0000 | ground pods and seeds of pungent red peppers of the genus Capsicum -07822687 13 n 01 chili_powder 0 002 @ 07809368 n 0000 %s 07721456 n 0000 | powder made of ground chili peppers mixed with e.g. cumin and garlic and oregano -07822845 13 n 01 chili_sauce 0 001 @ 07810907 n 0000 | tomatoes and onions and peppers (sweet or hot) simmered with vinegar and sugar and various seasonings -07823004 13 n 01 chili_vinegar 0 001 @ 07828987 n 0000 | fiery vinegar flavored with chili peppers -07823105 13 n 02 chutney 0 Indian_relish 0 001 @ 07810907 n 0000 | a spicy condiment made of chopped fruits or vegetables cooked in vinegar and sugar with ginger and spices -07823280 13 n 01 steak_sauce 0 001 @ 07810907 n 0000 | pungent bottled sauce for steak -07823369 13 n 01 taco_sauce 0 001 @ 07810907 n 0000 | spicy tomato-based sauce for tacos -07823460 13 n 01 salsa 0 001 @ 07810907 n 0000 | spicy sauce of tomatoes and onions and chili peppers to accompany Mexican foods -07823591 13 n 01 mint_sauce 0 001 @ 07810907 n 0000 | sweetened diluted vinegar with chopped mint leaves -07823698 13 n 01 cranberry_sauce 0 002 @ 07810907 n 0000 %s 07743902 n 0000 | sauce made of cranberries and sugar -07823814 13 n 01 curry_powder 0 001 @ 07809368 n 0000 | pungent blend of cumin and ground coriander seed and turmeric and other spices -07823951 13 n 01 curry 0 005 @ 07557434 n 0000 ;c 00243918 n 0000 ;r 08841956 n 0000 + 02192225 v 0101 ~ 07824191 n 0000 | (East Indian cookery) a pungent dish of vegetables or meats flavored with curry powder and usually eaten with rice -07824191 13 n 01 lamb_curry 0 001 @ 07823951 n 0000 | curry made with lamb -07824268 13 n 02 duck_sauce 0 hoisin_sauce 0 001 @ 07810907 n 0000 | a thick sweet and pungent Chinese condiment -07824383 13 n 01 horseradish 0 003 @ 07810907 n 0000 #s 11873182 n 0000 #s 07830841 n 0000 | grated horseradish root -07824502 13 n 01 marinade 0 003 @ 07810907 n 0000 + 00213544 v 0102 + 00213544 v 0101 | mixtures of vinegar or wine and oil with various spices and seasonings; used for soaking foods before cooking -07824702 13 n 01 paprika 0 004 @ 07809368 n 0000 #s 12901264 n 0000 %s 07721195 n 0000 ~ 07824863 n 0000 | a mild powdered seasoning made from dried pimientos -07824863 13 n 01 Spanish_paprika 0 001 @ 07824702 n 0000 | a mild seasoning made from a variety of pimiento grown in Spain -07824988 13 n 01 pickle 0 006 @ 07582441 n 0000 + 00213223 v 0101 ~ 07758582 n 0000 ~ 07822053 n 0000 ~ 07825194 n 0000 ~ 07825717 n 0000 | vegetables (especially cucumbers) preserved in brine or vinegar -07825194 13 n 01 dill_pickle 0 001 @ 07824988 n 0000 | pickle preserved in brine or vinegar flavored with dill seed -07825312 13 n 01 chowchow 2 001 @ 07582441 n 0000 | chopped pickles in mustard sauce -07825399 13 n 01 bread_and_butter_pickle 0 001 @ 07825717 n 0000 | thinly sliced sweet pickles -07825496 13 n 01 pickle_relish 0 001 @ 07582441 n 0000 | relish of chopped (usually sweet) pickles -07825597 13 n 01 piccalilli 0 001 @ 07582441 n 0000 | relish of chopped pickled cucumbers and green peppers and onion -07825717 13 n 01 sweet_pickle 0 002 @ 07824988 n 0000 ~ 07825399 n 0000 | pickle cured in brine and preserved in sugar and vinegar -07825850 13 n 02 applesauce 0 apple_sauce 0 001 @ 07557434 n 0000 | puree of stewed apples usually sweetened and spiced -07825972 13 n 02 soy_sauce 0 soy 1 002 @ 07810907 n 0000 %s 07729485 n 0000 | thin sauce made of fermented soy beans -07826091 13 n 02 Tabasco 1 Tabasco_sauce 0 002 @ 07830593 n 0000 %s 07722052 n 0000 | very spicy sauce (trade name Tabasco) made from fully-aged red peppers -07826250 13 n 01 tomato_paste 0 001 @ 07809096 n 0000 | thick concentrated tomato puree -07826340 13 n 01 angelica 1 001 @ 07811416 n 0000 | aromatic stems or leaves or roots of Angelica Archangelica -07826453 13 n 01 angelica 2 001 @ 07809368 n 0000 | candied stalks of the angelica plant -07826544 13 n 01 almond_extract 0 001 @ 07809368 n 0000 | flavoring made from almonds macerated in alcohol -07826653 13 n 03 anise 0 aniseed 0 anise_seed 0 008 @ 07809368 n 0000 #p 12943049 n 0000 #s 07637045 n 0000 #s 07908411 n 0000 #s 07908647 n 0000 #s 07904934 n 0000 #s 07910538 n 0000 #s 07910656 n 0000 | liquorice-flavored seeds, used medicinally and in cooking and liquors -07826930 13 n 03 Chinese_anise 0 star_anise 0 star_aniseed 0 003 @ 07812184 n 0000 #p 11709205 n 0000 #s 07813833 n 0000 | anise-scented star-shaped fruit or seed used in Asian cooking and medicine -07827130 13 n 01 juniper_berries 0 003 @ 07809368 n 0000 #p 11638109 n 0000 #s 07904395 n 0000 | berrylike cone of a common juniper; used in making gin -07827284 13 n 01 saffron 0 002 @ 07809368 n 0000 #p 12416703 n 0000 | dried pungent stigmas of the Old World saffron crocus -07827410 13 n 02 sesame_seed 0 benniseed 0 003 @ 07809368 n 0000 #p 12874783 n 0000 %s 07675156 n 0000 | small oval seeds of the sesame plant -07827554 13 n 01 caraway_seed 0 005 @ 07809368 n 0000 #p 12934479 n 0000 #s 07634605 n 0000 #s 07902799 n 0000 #s 07910245 n 0000 | aromatic seeds of the caraway plant; used widely as seasoning -07827750 13 n 01 poppy_seed 0 002 @ 07809368 n 0000 #p 11902389 n 0000 | small grey seed of a poppy flower; used whole or ground in baked items -07827896 13 n 02 dill 0 dill_weed 0 002 @ 07811416 n 0000 #p 12931542 n 0000 | aromatic threadlike foliage of the dill plant used as seasoning -07828041 13 n 01 dill_seed 0 002 @ 07809368 n 0000 #p 12931542 n 0000 | seed of the dill plant used as seasoning -07828156 13 n 01 celery_seed 0 002 @ 07809368 n 0000 #p 12933403 n 0000 | seed of the celery plant used as seasoning -07828275 13 n 01 lemon_extract 0 001 @ 07809368 n 0000 | a flavoring made from (or imitating) lemons -07828378 13 n 02 monosodium_glutamate 0 MSG 0 001 @ 07809368 n 0000 | white crystalline compound used as a food additive to enhance flavor; often used in Chinese cooking; "food manufacturers sometimes list MSG simply as `artificial flavors' in ingredient lists" -07828642 13 n 01 vanilla_bean 0 004 @ 07809368 n 0000 #p 12086778 n 0000 #s 07828807 n 0000 %s 12087032 n 0000 | long bean-like fruit; seeds are used as flavoring -07828807 13 n 02 vanilla 0 vanilla_extract 0 002 @ 07809368 n 0000 %s 07828642 n 0000 | a flavoring prepared from vanilla beans macerated in alcohol (or imitating vanilla beans) -07828987 13 n 02 vinegar 0 acetum 0 005 @ 07810907 n 0000 + 02196690 v 0204 ~ 07823004 n 0000 ~ 07829248 n 0000 ~ 07829331 n 0000 | sour-tasting liquid produced usually by oxidation of the alcohol in wine or cider and used as a condiment or food preservative -07829248 13 n 01 cider_vinegar 0 001 @ 07828987 n 0000 | vinegar made from cider -07829331 13 n 01 wine_vinegar 0 001 @ 07828987 n 0000 | vinegar made from wine -07829412 13 n 01 sauce 0 054 @ 07810907 n 0000 #p 07557434 n 0000 + 00535844 v 0101 + 01364357 v 0101 ~ 07830493 n 0000 ~ 07830593 n 0000 ~ 07830690 n 0000 ~ 07830841 n 0000 ~ 07831450 n 0000 ~ 07831663 n 0000 ~ 07831821 n 0000 ~ 07831955 n 0000 ~ 07832099 n 0000 ~ 07832202 n 0000 ~ 07832307 n 0000 ~ 07832416 n 0000 ~ 07832592 n 0000 ~ 07832741 n 0000 ~ 07832902 n 0000 ~ 07834774 n 0000 ~ 07835331 n 0000 ~ 07835457 n 0000 ~ 07835547 n 0000 ~ 07835701 n 0000 ~ 07835823 n 0000 ~ 07835921 n 0000 ~ 07836077 n 0000 ~ 07836269 n 0000 ~ 07836456 n 0000 ~ 07836838 n 0000 ~ 07837110 n 0000 ~ 07837234 n 0000 ~ 07837362 n 0000 ~ 07837755 n 0000 ~ 07838073 n 0000 ~ 07838233 n 0000 ~ 07838551 n 0000 ~ 07838659 n 0000 ~ 07838811 n 0000 ~ 07838905 n 0000 ~ 07839055 n 0000 ~ 07839172 n 0000 ~ 07839312 n 0000 ~ 07839593 n 0000 ~ 07839730 n 0000 ~ 07839864 n 0000 ~ 07840027 n 0000 ~ 07840124 n 0000 ~ 07840219 n 0000 ~ 07840304 n 0000 ~ 07840395 n 0000 ~ 07840520 n 0000 ~ 07857598 n 0000 ~ 07870734 n 0000 | flavorful relish or dressing or topping served as an accompaniment to food -07830493 13 n 01 anchovy_sauce 0 001 @ 07829412 n 0000 | made of white sauce and mashed anchovies -07830593 13 n 01 hot_sauce 0 002 @ 07829412 n 0000 ~ 07826091 n 0000 | a pungent peppery sauce -07830690 13 n 01 hard_sauce 0 001 @ 07829412 n 0000 | butter and sugar creamed together with brandy or other flavoring and served with rich puddings -07830841 13 n 02 horseradish_sauce 0 sauce_Albert 0 002 @ 07829412 n 0000 %s 07824383 n 0000 | creamy white sauce with horseradish and mustard -07830986 13 n 01 bolognese_pasta_sauce 0 001 @ 07838233 n 0000 | sauce for pasta; contains mushrooms and ham and chopped vegetables and beef and tomato paste -07831146 13 n 01 carbonara 0 001 @ 07838233 n 0000 | sauce for pasta; contains eggs and bacon or ham and grated cheese -07831267 13 n 01 tomato_sauce 0 001 @ 07838233 n 0000 | sauce made with a puree of tomatoes (or strained tomatoes) with savory vegetables and other seasonings; can be used on pasta -07831450 13 n 02 tartare_sauce 0 tartar_sauce 0 001 @ 07829412 n 0000 | mayonnaise with chopped pickles and sometimes capers and shallots and parsley and hard-cooked egg; sauce for seafood especially fried fish -07831663 13 n 01 wine_sauce 0 001 @ 07829412 n 0000 | white or veloute sauce with wine and stock variously seasoned with onions and herbs; for fish or meat -07831821 13 n 02 marchand_de_vin 0 mushroom_wine_sauce 0 001 @ 07829412 n 0000 | brown sauce with mushrooms and red wine or Madeira -07831955 13 n 01 bread_sauce 0 001 @ 07829412 n 0000 | creamy white sauce made with bread instead of flour and seasoned with cloves and onion -07832099 13 n 01 plum_sauce 0 001 @ 07829412 n 0000 | for Chinese dishes: plum preserves and chutney -07832202 13 n 01 peach_sauce 0 001 @ 07829412 n 0000 | for Chinese dishes: peach preserves and chutney -07832307 13 n 01 apricot_sauce 0 001 @ 07829412 n 0000 | for Chinese dishes: apricot preserves and chutney -07832416 13 n 01 pesto 0 001 @ 07829412 n 0000 | a sauce typically served with pasta; contains crushed basil leaves and garlic and pine nuts and Parmesan cheese in olive oil -07832592 13 n 02 ravigote 0 ravigotte 0 001 @ 07829412 n 0000 | veloute sauce seasoned with chopped chervil, chives, tarragon, shallots and capers -07832741 13 n 01 remoulade_sauce 0 001 @ 07829412 n 0000 | a mayonnaise sauce flavored with herbs and mustard and capers; served with e.g. salad and cold meat -07832902 13 n 02 dressing 1 salad_dressing 0 014 @ 07829412 n 0000 + 01364184 v 0101 ~ 07833333 n 0000 ~ 07833535 n 0000 ~ 07833672 n 0000 ~ 07833816 n 0000 ~ 07833951 n 0000 ~ 07834065 n 0000 ~ 07834160 n 0000 ~ 07834286 n 0000 ~ 07834507 n 0000 ~ 07834872 n 0000 ~ 07835051 n 0000 ~ 07835173 n 0000 | savory dressings for salads; basically of two kinds: either the thin French or vinaigrette type or the creamy mayonnaise type -07833333 13 n 01 sauce_Louis 0 001 @ 07832902 n 0000 | mayonnaise and heavy cream combined with chopped green pepper and green onion seasoned with chili sauce and Worcestershire sauce and lemon juice -07833535 13 n 02 bleu_cheese_dressing 0 blue_cheese_dressing 0 001 @ 07832902 n 0000 | creamy dressing containing crumbled blue cheese -07833672 13 n 02 blue_cheese_dressing 2 Roquefort_dressing 0 001 @ 07832902 n 0000 | vinaigrette containing crumbled Roquefort or blue cheese -07833816 13 n 03 French_dressing 0 vinaigrette 0 sauce_vinaigrette 0 001 @ 07832902 n 0000 | oil and vinegar with mustard and garlic -07833951 13 n 01 Lorenzo_dressing 0 001 @ 07832902 n 0000 | vinaigrette with chili sauce and chopped watercress -07834065 13 n 01 anchovy_dressing 0 001 @ 07832902 n 0000 | vinaigrette and mashed anchovies -07834160 13 n 01 Italian_dressing 0 001 @ 07832902 n 0000 | a vinaigrette with garlic and herbs: oregano and basil and dill -07834286 13 n 01 half-and-half_dressing 0 001 @ 07832902 n 0000 | half mayonnaise and half vinaigrette seasoned with minced garlic and mashed anchovies and grated Parmesan cheese; especially good for combination salads -07834507 13 n 02 mayonnaise 0 mayo 0 002 @ 07832902 n 0000 ~ 07834618 n 0000 | egg yolks and oil and vinegar -07834618 13 n 02 green_mayonnaise 0 sauce_verte 0 001 @ 07834507 n 0000 | mayonnaise with tarragon or dill and chopped watercress and spinach or cucumber -07834774 13 n 03 aioli 0 aioli_sauce 0 garlic_sauce 0 001 @ 07829412 n 0000 | garlic mayonnaise -07834872 13 n 02 Russian_dressing 0 Russian_mayonnaise 0 001 @ 07832902 n 0000 | mayonnaise with horseradish grated onion and chili sauce or catsup; sometimes with caviar added -07835051 13 n 01 salad_cream 0 002 @ 07832902 n 0000 ;r 08860123 n 0000 | a creamy salad dressing resembling mayonnaise -07835173 13 n 01 Thousand_Island_dressing 0 001 @ 07832902 n 0000 | mayonnaise with chili sauce or catsup and minced olives and peppers and hard-cooked egg -07835331 13 n 01 barbecue_sauce 0 001 @ 07829412 n 0000 | spicy sweet and sour sauce usually based on catsup or chili sauce -07835457 13 n 01 hollandaise 0 001 @ 07829412 n 0000 | eggs and butter with lemon juice -07835547 13 n 01 bearnaise 0 001 @ 07829412 n 0000 | a sauce like hollandaise but made with white wine and tarragon and shallots instead of lemon juice -07835701 13 n 02 Bercy 0 Bercy_butter 0 001 @ 07829412 n 0000 | butter creamed with white wine and shallots and parsley -07835823 13 n 01 bordelaise 0 001 @ 07829412 n 0000 | brown sauce with beef marrow and red wine -07835921 13 n 03 bourguignon 0 bourguignon_sauce 0 Burgundy_sauce 0 001 @ 07829412 n 0000 | reduced red wine with onions and parsley and thyme and butter -07836077 13 n 02 brown_sauce 1 sauce_Espagnole 0 001 @ 07829412 n 0000 | bouillon or beef stock thickened with butter and flour roux and variously seasoned with herbs or Worcestershire etc. -07836269 13 n 02 Espagnole 0 sauce_Espagnole 1 001 @ 07829412 n 0000 | brown sauce with tomatoes and a caramelized mixture of minced carrots and onions and celery seasoned with Madeira -07836456 13 n 02 Chinese_brown_sauce 0 brown_sauce 2 003 @ 07829412 n 0000 ;c 00243918 n 0000 ;r 08723006 n 0000 | a sauce based on soy sauce -07836600 13 n 01 blanc 0 001 @ 07837362 n 0000 | a white sauce of fat, broth, and vegetables (used especially with braised meat) -07836731 13 n 01 cheese_sauce 0 002 @ 07837362 n 0000 ~ 07837630 n 0000 | white sauce with grated cheese -07836838 13 n 02 chocolate_sauce 0 chocolate_syrup 0 002 @ 07829412 n 0000 ~ 07837002 n 0000 | sauce made with unsweetened chocolate or cocoa and sugar and water -07837002 13 n 02 hot-fudge_sauce 0 fudge_sauce 0 001 @ 07836838 n 0000 | thick chocolate sauce served hot -07837110 13 n 02 cocktail_sauce 0 seafood_sauce 0 001 @ 07829412 n 0000 | usually catsup with horseradish and lemon juice -07837234 13 n 02 Colbert 0 Colbert_butter 0 001 @ 07829412 n 0000 | butter creamed with parsley and tarragon and beef extract -07837362 13 n 03 white_sauce 0 bechamel_sauce 0 bechamel 0 004 @ 07829412 n 0000 ~ 07836600 n 0000 ~ 07836731 n 0000 ~ 07837545 n 0000 | milk thickened with a butter and flour roux -07837545 13 n 01 cream_sauce 0 001 @ 07837362 n 0000 | white sauce made with cream -07837630 13 n 01 Mornay_sauce 0 001 @ 07836731 n 0000 | onion-flavored creamy cheese sauce with egg yolk and grated cheese -07837755 13 n 02 demiglace 0 demi-glaze 0 001 @ 07829412 n 0000 | sauce Espagnole with extra beef stock simmered down and seasoned with dry wine or sherry -07837912 13 n 02 gravy 0 pan_gravy 0 001 @ 07923748 n 0000 | the seasoned but not thickened juices that drip from cooking meats; often a little water is added -07838073 13 n 01 gravy 1 001 @ 07829412 n 0000 | a sauce made by adding stock, flour, or other ingredients to the juice and fat that drips from cooking meats -07838233 13 n 02 spaghetti_sauce 0 pasta_sauce 0 005 @ 07829412 n 0000 ~ 07830986 n 0000 ~ 07831146 n 0000 ~ 07831267 n 0000 ~ 07838441 n 0000 | any of numerous sauces for spaghetti or other kinds of pasta -07838441 13 n 01 marinara 0 001 @ 07838233 n 0000 | sauce for pasta; contains tomatoes and garlic and herbs -07838551 13 n 01 mole 0 002 @ 07829412 n 0000 ;r 08740875 n 0000 | spicy sauce often containing chocolate -07838659 13 n 02 hunter's_sauce 0 sauce_chausseur 0 001 @ 07829412 n 0000 | brown sauce and tomato puree with onions and mushrooms and dry white wine -07838811 13 n 01 mushroom_sauce 0 001 @ 07829412 n 0000 | brown sauce and sauteed mushrooms -07838905 13 n 01 mustard_sauce 0 001 @ 07829412 n 0000 | sauce of prepared mustard thinned with vinegar and vegetable oil with sugar and seasonings -07839055 13 n 02 Nantua 0 shrimp_sauce 0 001 @ 07829412 n 0000 | white sauce with whipping cream and shrimp butter -07839172 13 n 02 Hungarian_sauce 0 paprika_sauce 0 001 @ 07829412 n 0000 | veloute sauce with sauteed chopped onion and paprika and cream -07839312 13 n 02 pepper_sauce 0 Poivrade 0 001 @ 07829412 n 0000 | for venison: brown sauce with sauteed vegetables and trimmings and marinade and plenty of pepper -07839478 13 n 01 roux 0 001 @ 07882497 n 0000 | a mixture of fat and flour heated and used as a basis for sauces -07839593 13 n 01 Smitane 0 001 @ 07829412 n 0000 | veloute or brown sauce with sauteed chopped onion and dry white wine and sour cream -07839730 13 n 02 Soubise 0 white_onion_sauce 0 001 @ 07829412 n 0000 | veloute sauce with sauteed chopped onions and whipping cream -07839864 13 n 02 Lyonnaise_sauce 0 brown_onion_sauce 0 001 @ 07829412 n 0000 | brown sauce with sauteed chopped onions and parsley and dry white wine or vinegar -07840027 13 n 01 veloute 0 001 @ 07829412 n 0000 | white sauce made with stock instead of milk -07840124 13 n 02 allemande 0 allemande_sauce 0 001 @ 07829412 n 0000 | egg-thickened veloute -07840219 13 n 01 caper_sauce 0 001 @ 07829412 n 0000 | allemande sauce with capers -07840304 13 n 01 poulette 0 001 @ 07829412 n 0000 | allemande sauce with chopped parsley -07840395 13 n 01 curry_sauce 0 001 @ 07829412 n 0000 | allemande sauce with curry powder and coconut milk instead of stock -07840520 13 n 03 Worcester_sauce 0 Worcestershire 0 Worcestershire_sauce 0 001 @ 07829412 n 0000 | a savory sauce of vinegar and soy sauce and spices -07840672 13 n 02 coconut_milk 2 coconut_cream 0 001 @ 07844604 n 0000 | white liquid obtained from compressing fresh coconut meat -07840804 13 n 02 egg 0 eggs 0 007 @ 07566340 n 0000 + 01261491 v 0101 + 01508268 v 0101 %p 07841037 n 0000 %p 07841345 n 0000 %p 09432430 n 0000 %s 14728724 n 0000 | oval reproductive body of a fowl (especially a hen) used as food -07841037 13 n 04 egg_white 0 white 0 albumen 0 ovalbumin 0 002 @ 07809096 n 0000 #p 07840804 n 0000 | the white part of an egg; the nutritive and protective gelatinous substance surrounding the yolk consisting mainly of albumin dissolved in water; "she separated the whites from the yolks of several eggs" -07841345 13 n 02 egg_yolk 0 yolk 0 002 @ 07809096 n 0000 #p 07840804 n 0000 | the yellow spherical part of an egg that is surrounded by the albumen -07841495 13 n 02 boiled_egg 0 coddled_egg 0 002 @ 07557434 n 0000 ~ 07841639 n 0000 | egg cooked briefly in the shell in gently boiling water -07841639 13 n 02 hard-boiled_egg 0 hard-cooked_egg 0 002 @ 07841495 n 0000 ~ 07841800 n 0000 | an egg boiled gently until both the white and the yolk solidify -07841800 13 n 01 Easter_egg 0 001 @ 07841639 n 0000 | a colored hard-boiled egg used to celebrate Easter -07841907 13 n 01 Easter_egg 1 003 @ 07597365 n 0000 ~ 07842044 n 0000 ~ 07842130 n 0000 | an egg-shaped candy used to celebrate Easter -07842044 13 n 01 chocolate_egg 0 001 @ 07841907 n 0000 | egg-shaped chocolate candy -07842130 13 n 01 candy_egg 0 001 @ 07841907 n 0000 | egg-shaped candy -07842202 13 n 02 poached_egg 0 dropped_egg 0 001 @ 07557434 n 0000 | egg cooked in gently boiling water -07842308 13 n 01 scrambled_eggs 0 001 @ 07557434 n 0000 | eggs beaten and cooked to a soft firm consistency while stirring -07842433 13 n 02 deviled_egg 0 stuffed_egg 0 001 @ 07557434 n 0000 | halved hard-cooked egg with the yolk mashed with mayonnaise and seasonings and returned to the white -07842605 13 n 03 shirred_egg 0 baked_egg 0 egg_en_cocotte 0 001 @ 07557434 n 0000 | egg cooked individually in cream or butter in a small ramekin -07842753 13 n 02 omelet 0 omelette 0 004 @ 07557434 n 0000 ~ 07842972 n 0000 ~ 07843220 n 0000 ~ 07866571 n 0000 | beaten eggs or an egg mixture cooked until just set; may be folded around e.g. ham or cheese or jelly -07842972 13 n 01 firm_omelet 0 003 @ 07842753 n 0000 ~ 07843117 n 0000 ~ 07843348 n 0000 | eggs beaten with milk or cream and cooked until set -07843117 13 n 01 French_omelet 0 001 @ 07842972 n 0000 | omelet cooked quickly and slid onto a plate -07843220 13 n 01 fluffy_omelet 0 001 @ 07842753 n 0000 | souffle-like omelet made by beating and adding the whites separately -07843348 13 n 01 western_omelet 0 001 @ 07842972 n 0000 | a firm omelet that has diced ham and peppers and onions -07843464 13 n 01 souffle 0 002 @ 07557434 n 0000 ~ 07863802 n 0000 | light fluffy dish of egg yolks and stiffly beaten egg whites mixed with e.g. cheese or fish or fruit -07843636 13 n 01 fried_egg 0 001 @ 07557434 n 0000 | eggs cooked by sauteing in oil or butter; sometimes turned and cooked on both sides -07843775 13 n 01 dairy_product 0 011 @ 07566340 n 0000 ~ 07844042 n 0000 ~ 07847198 n 0000 ~ 07847706 n 0000 ~ 07848338 n 0000 ~ 07849336 n 0000 ~ 07849733 n 0000 ~ 07849912 n 0000 ~ 07850219 n 0000 ~ 07850329 n 0000 %s 14973303 n 0000 | milk and butter and cheese -07844042 13 n 01 milk 1 025 @ 07843775 n 0000 @ 07881800 n 0000 + 00434384 a 0101 + 00194373 v 0101 + 00194170 v 0101 ~ 07844786 n 0000 ~ 07845166 n 0000 ~ 07845335 n 0000 ~ 07845421 n 0000 ~ 07845495 n 0000 ~ 07845571 n 0000 ~ 07845702 n 0000 ~ 07845775 n 0000 ~ 07845863 n 0000 ~ 07846014 n 0000 ~ 07846143 n 0000 ~ 07846359 n 0000 ~ 07846471 n 0000 ~ 07846557 n 0000 ~ 07846688 n 0000 ~ 07846802 n 0000 ~ 07846938 n 0000 ~ 07847047 n 0000 ~ 07921360 n 0000 %s 14728724 n 0000 | a white nutritious liquid secreted by mammals and used as food by human beings -07844604 13 n 01 milk 2 006 @ 07566340 n 0000 + 00194373 v 0101 ~ 07773428 n 0000 ~ 07840672 n 0000 ~ 07844867 n 0000 ~ 07845087 n 0000 | any of several nutritive milklike liquids -07844786 13 n 01 sour_milk 0 001 @ 07844042 n 0000 | milk that has turned sour -07844867 13 n 03 soya_milk 0 soybean_milk 0 soymilk 0 003 @ 07844604 n 0000 #s 07709881 n 0000 %s 07569873 n 0000 | a milk substitute containing soybean flour and water; used in some infant formulas and in making tofu -07845087 13 n 01 formula 0 001 @ 07844604 n 0000 | a liquid food for infants -07845166 13 n 01 pasteurized_milk 0 001 @ 07844042 n 0000 | milk that has been exposed briefly to high temperatures to destroy microorganisms and prevent fermentation -07845335 13 n 01 cows'_milk 0 001 @ 07844042 n 0000 | milk obtained from dairy cows -07845421 13 n 01 yak's_milk 0 001 @ 07844042 n 0000 | the milk of a yak -07845495 13 n 01 goats'_milk 0 001 @ 07844042 n 0000 | the milk of a goat -07845571 13 n 01 acidophilus_milk 0 001 @ 07844042 n 0000 | milk fermented by bacteria; used to treat gastrointestinal disorders -07845702 13 n 01 raw_milk 0 001 @ 07844042 n 0000 | unpasteurized milk -07845775 13 n 01 scalded_milk 0 001 @ 07844042 n 0000 | milk heated almost to boiling -07845863 13 n 01 homogenized_milk 0 001 @ 07844042 n 0000 | milk with the fat particles broken up and dispersed uniformly so the cream will not rise -07846014 13 n 01 certified_milk 0 001 @ 07844042 n 0000 | milk from dairies regulated by an authorized medical milk commission -07846143 13 n 04 powdered_milk 0 dry_milk 0 dried_milk 0 milk_powder 0 002 @ 07844042 n 0000 ~ 07846274 n 0000 | dehydrated milk -07846274 13 n 01 nonfat_dry_milk 0 001 @ 07846143 n 0000 | dehydrated skimmed milk -07846359 13 n 01 evaporated_milk 0 002 @ 07844042 n 0000 @ 07567390 n 0000 | milk concentrated by evaporation -07846471 13 n 01 condensed_milk 0 001 @ 07844042 n 0000 | sweetened evaporated milk -07846557 13 n 02 skim_milk 0 skimmed_milk 0 002 @ 07844042 n 0000 ! 07846802 n 0101 | milk from which the cream has been skimmed -07846688 13 n 01 semi-skimmed_milk 0 001 @ 07844042 n 0000 | milk from which some of the cream has been removed -07846802 13 n 01 whole_milk 0 002 @ 07844042 n 0000 ! 07846557 n 0101 | milk from which no constituent (such as fat) has been removed -07846938 13 n 01 low-fat_milk 0 001 @ 07844042 n 0000 | milk from which some of the cream has been removed -07847047 13 n 01 buttermilk 0 001 @ 07844042 n 0000 | residue from making butter from sour raw milk; or pasteurized milk curdled by adding a culture -07847198 13 n 01 cream 0 010 @ 07843775 n 0000 + 02416285 a 0101 + 00171339 v 0101 + 01418037 v 0101 ~ 07847453 n 0000 ~ 07847585 n 0000 ~ 07847827 n 0000 ~ 07847917 n 0000 ~ 07848093 n 0000 ~ 07848196 n 0000 | the part of milk containing the butterfat -07847453 13 n 02 clotted_cream 0 Devonshire_cream 0 002 @ 07847198 n 0000 ;r 08860123 n 0000 | thick cream made from scalded milk -07847585 13 n 02 double_creme 0 heavy_whipping_cream 0 001 @ 07847198 n 0000 | cream with a fat content of 48% or more -07847706 13 n 01 half-and-half 0 001 @ 07843775 n 0000 | half milk and half light cream; contains 10% to 18% butterfat -07847827 13 n 01 heavy_cream 0 001 @ 07847198 n 0000 | contains more than 36% butterfat -07847917 13 n 03 light_cream 0 coffee_cream 0 single_cream 0 001 @ 07847198 n 0000 | cream that has at least 18% butterfat; "in England they call light cream `single cream'" -07848093 13 n 02 sour_cream 0 soured_cream 0 001 @ 07847198 n 0000 | artificially soured light cream -07848196 13 n 02 whipping_cream 0 light_whipping_cream 0 001 @ 07847198 n 0000 | cream that has enough butterfat (30% to 36%) to be whipped -07848338 13 n 01 butter 0 010 @ 07843775 n 0000 @ 07555863 n 0000 + 00992291 a 0101 + 02672344 a 0101 + 01267998 v 0101 ~ 07848645 n 0000 ~ 07848771 n 0000 ~ 07849026 n 0000 ~ 07849186 n 0000 ~ 07856186 n 0000 | an edible emulsion of fat globules made by churning milk or cream; for cooking and table use -07848645 13 n 01 stick 0 002 @ 07848338 n 0000 @ 07672914 n 0000 | a rectangular quarter pound block of butter or margarine -07848771 13 n 02 clarified_butter 0 drawn_butter 0 002 @ 07848338 n 0000 ~ 07848936 n 0000 | butter made clear by heating and removing the sediment of milk solids -07848936 13 n 01 ghee 0 001 @ 07848771 n 0000 | clarified butter used in Indian cookery -07849026 13 n 02 brown_butter 0 beurre_noisette 0 001 @ 07848338 n 0000 | clarified butter browned slowly and seasoned with vinegar or lemon juice and capers -07849186 13 n 02 Meuniere_butter 0 lemon_butter 0 001 @ 07848338 n 0000 | clarified butter browned slowly and seasoned with lemon juice and parsley -07849336 13 n 03 yogurt 0 yoghurt 0 yoghourt 0 004 @ 07843775 n 0000 @ 07555863 n 0000 ~ 07616046 n 0000 ~ 07849506 n 0000 | a custard-like food made from curdled milk -07849506 13 n 01 blueberry_yogurt 0 001 @ 07849336 n 0000 | yogurt with sweetened blueberries or blueberry jam -07849619 13 n 01 raita 0 001 @ 07580053 n 0000 | an Indian side dish of yogurt and chopped cucumbers and spices -07849733 13 n 01 whey 0 001 @ 07843775 n 0000 | watery part of milk produced when raw milk sours and coagulates; "Little Miss Muffet sat on a tuffet eating some curds and whey" -07849912 13 n 01 curd 0 002 @ 07843775 n 0000 #s 07850329 n 0000 | coagulated milk; used to make cheese; "Little Miss Muffet sat on a tuffet eating some curds and whey" -07850083 13 n 01 curd 2 002 @ 07566340 n 0000 ~ 07709881 n 0000 | a coagulated liquid resembling milk curd; "bean curd"; "lemon curd" -07850219 13 n 01 clabber 0 002 @ 07843775 n 0000 + 00457770 v 0102 | raw milk that has soured and thickened -07850329 13 n 01 cheese 0 030 @ 07843775 n 0000 @ 07555863 n 0000 %s 07849912 n 0000 %p 07850957 n 0000 ~ 07851298 n 0000 ~ 07851641 n 0000 ~ 07851767 n 0000 ~ 07851926 n 0000 ~ 07852045 n 0000 ~ 07852614 n 0000 ~ 07852712 n 0000 ~ 07852833 n 0000 ~ 07852919 n 0000 ~ 07853232 n 0000 ~ 07853345 n 0000 ~ 07853445 n 0000 ~ 07853560 n 0000 ~ 07853648 n 0000 ~ 07853762 n 0000 ~ 07853852 n 0000 ~ 07853946 n 0000 ~ 07854066 n 0000 ~ 07854184 n 0000 ~ 07854266 n 0000 ~ 07854348 n 0000 ~ 07854455 n 0000 ~ 07854614 n 0000 ~ 07854707 n 0000 ~ 07854813 n 0000 ~ 07855317 n 0000 | a solid food prepared from the pressed curd of milk -07850957 13 n 01 cheese_rind 0 002 @ 07670731 n 0000 #p 07850329 n 0000 | the rind of a cheese -07851054 13 n 01 paring 0 003 @ 00002684 n 0000 ;u 06295235 n 0000 + 01262936 v 0103 | (usually plural) a part of a fruit or vegetable that is pared or cut off; especially the skin or peel; "she could peel an apple with a single long paring" -07851298 13 n 01 cream_cheese 0 003 @ 07850329 n 0000 ~ 07851443 n 0000 ~ 07851554 n 0000 | soft unripened cheese made of sweet milk and cream -07851443 13 n 01 double_cream 0 001 @ 07851298 n 0000 | fresh soft French cheese containing at least 60% fat -07851554 13 n 01 mascarpone 0 001 @ 07851298 n 0000 | soft mild Italian cream cheese -07851641 13 n 02 triple_cream 0 triple_creme 0 001 @ 07850329 n 0000 | fresh soft French cheese containing at least 72% fat -07851767 13 n 04 cottage_cheese 0 pot_cheese 0 farm_cheese 0 farmer's_cheese 0 001 @ 07850329 n 0000 | mild white cheese made from curds of soured skim milk -07851926 13 n 02 process_cheese 0 processed_cheese 0 001 @ 07850329 n 0000 | made by blending several lots of cheese -07852045 13 n 02 bleu 0 blue_cheese 0 006 @ 07850329 n 0000 ~ 07852229 n 0000 ~ 07852302 n 0000 ~ 07852376 n 0000 ~ 07852452 n 0000 ~ 07852532 n 0000 | cheese containing a blue mold -07852229 13 n 01 Stilton 0 001 @ 07852045 n 0000 | English blue cheese -07852302 13 n 01 Roquefort 0 001 @ 07852045 n 0000 | French blue cheese -07852376 13 n 01 gorgonzola 0 001 @ 07852045 n 0000 | Italian blue cheese -07852452 13 n 01 Danish_blue 0 001 @ 07852045 n 0000 | blue cheese of Denmark -07852532 13 n 01 Bavarian_blue 0 001 @ 07852045 n 0000 | blue cheese of Bavaria -07852614 13 n 01 Brie 0 001 @ 07850329 n 0000 | soft creamy white cheese; milder than Camembert -07852712 13 n 01 brick_cheese 0 001 @ 07850329 n 0000 | semisoft sweet American cheese from whole milk in a brick form -07852833 13 n 01 Camembert 0 001 @ 07850329 n 0000 | rich soft creamy French cheese -07852919 13 n 04 cheddar 0 cheddar_cheese 0 Armerican_cheddar 0 American_cheese 0 002 @ 07850329 n 0000 ~ 07853125 n 0000 | hard smooth-textured cheese; originally made in Cheddar in southwestern England -07853125 13 n 02 rat_cheese 0 store_cheese 0 001 @ 07852919 n 0000 | informal names for American cheddar -07853232 13 n 01 Cheshire_cheese 0 001 @ 07850329 n 0000 | a mild yellow English cheese with a crumbly texture -07853345 13 n 01 double_Gloucester 0 001 @ 07850329 n 0000 | a smooth firm mild orange-red cheese -07853445 13 n 01 Edam 0 001 @ 07850329 n 0000 | mild yellow Dutch cheese made in balls encased in a red covering -07853560 13 n 02 goat_cheese 0 chevre 0 001 @ 07850329 n 0000 | made from goats' milk -07853648 13 n 02 Gouda 0 Gouda_cheese 0 001 @ 07850329 n 0000 | mild cream-colored Dutch cheese shaped in balls -07853762 13 n 01 grated_cheese 0 001 @ 07850329 n 0000 | hard or semihard cheese grated -07853852 13 n 01 hand_cheese 0 001 @ 07850329 n 0000 | any cheese originally molded by hand -07853946 13 n 01 Liederkranz 0 002 @ 07850329 n 0000 ;u 06851742 n 0000 | a soft cheese with a strong odor and flavor -07854066 13 n 01 Limburger 0 001 @ 07850329 n 0000 | a soft white cheese with a very strong pungent odor and flavor -07854184 13 n 01 mozzarella 0 001 @ 07850329 n 0000 | mild white Italian cheese -07854266 13 n 01 Muenster 0 001 @ 07850329 n 0000 | semisoft pale-yellow cheese -07854348 13 n 01 Parmesan 0 001 @ 07850329 n 0000 | hard dry sharp-flavored Italian cheese; often grated -07854455 13 n 02 quark_cheese 0 quark 0 001 @ 07850329 n 0000 | fresh unripened cheese of a smooth texture made from pasteurized milk, a starter, and rennet -07854614 13 n 01 ricotta 0 001 @ 07850329 n 0000 | soft Italian cheese like cottage cheese -07854707 13 n 01 string_cheese 0 001 @ 07850329 n 0000 | cheese formed in long strings twisted together -07854813 13 n 01 Swiss_cheese 0 004 @ 07850329 n 0000 ~ 07854982 n 0000 ~ 07855105 n 0000 ~ 07855188 n 0000 | hard pale yellow cheese with many holes from Switzerland -07854982 13 n 04 Emmenthal 0 Emmental 0 Emmenthaler 0 Emmentaler 0 001 @ 07854813 n 0000 | Swiss cheese with large holes -07855105 13 n 01 Gruyere 0 001 @ 07854813 n 0000 | Swiss cheese with small holes -07855188 13 n 01 sapsago 0 001 @ 07854813 n 0000 | a hard green Swiss cheese made with skim-milk curd and flavored with clover -07855317 13 n 01 Velveeta 0 001 @ 07850329 n 0000 | trademark: soft processed American cheese -07855413 13 n 01 nut_butter 0 001 @ 07856270 n 0000 | ground nuts blended with a little butter -07855510 13 n 01 peanut_butter 0 001 @ 07856270 n 0000 | a spread made from ground peanuts -07855603 13 n 01 marshmallow_fluff 0 001 @ 07856270 n 0000 | a very sweet white spread resembling marshmallow candy -07855721 13 n 01 onion_butter 0 001 @ 07856270 n 0000 | butter blended with minced onion -07855812 13 n 01 pimento_butter 0 001 @ 07856270 n 0000 | butter blended with mashed pimento -07855907 13 n 01 shrimp_butter 0 001 @ 07856270 n 0000 | butter blended with chopped shrimp or seasoned with essence from shrimp shells -07856045 13 n 01 lobster_butter 0 001 @ 07856270 n 0000 | butter blended with chopped lobster or seasoned with essence from lobster shells -07856186 13 n 01 yak_butter 0 001 @ 07848338 n 0000 | butter made from yaks' milk -07856270 13 n 02 spread 0 paste 1 020 @ 07810907 n 0000 + 01611746 v 0101 + 01611901 v 0101 ~ 07672914 n 0000 ~ 07855413 n 0000 ~ 07855510 n 0000 ~ 07855603 n 0000 ~ 07855721 n 0000 ~ 07855812 n 0000 ~ 07855907 n 0000 ~ 07856045 n 0000 ~ 07856756 n 0000 ~ 07856895 n 0000 ~ 07856992 n 0000 ~ 07857076 n 0000 ~ 07857170 n 0000 ~ 07857731 n 0000 ~ 07857959 n 0000 ~ 07858336 n 0000 ~ 07858484 n 0000 | a tasty mixture to be spread on bread or crackers or used in preparing other dishes -07856756 13 n 01 cheese_spread 0 001 @ 07856270 n 0000 | spread made of cheese mixed with butter or cream or cream cheese and seasonings -07856895 13 n 01 anchovy_butter 0 001 @ 07856270 n 0000 | butter blended with mashed anchovies -07856992 13 n 01 fishpaste 0 001 @ 07856270 n 0000 | a paste of fish or shellfish -07857076 13 n 01 garlic_butter 0 001 @ 07856270 n 0000 | butter seasoned with mashed garlic -07857170 13 n 01 miso 0 002 @ 07856270 n 0000 ;r 08921850 n 0000 | a thick paste made from fermented soybeans and barley or rice malt; used in Japanese cooking to make soups or sauces -07857356 13 n 01 wasabi 0 002 @ 07810907 n 0000 ;r 08921850 n 0000 | the thick green root of the wasabi plant that the Japanese use in cooking and that tastes like strong horseradish; in powder or paste form it is often eaten with raw fish -07857598 13 n 01 snail_butter 0 001 @ 07829412 n 0000 | for preparing snails: butter seasoned with shallots and garlic and parsley -07857731 13 n 05 hummus 0 humus 0 hommos 0 hoummos 0 humous 0 001 @ 07856270 n 0000 | a thick spread made from mashed chickpeas, tahini, lemon juice and garlic; used especially as a dip for pita; originated in the Middle East -07857959 13 n 01 pate 0 003 @ 07856270 n 0000 ~ 07858114 n 0000 ~ 07858197 n 0000 | liver or meat or fowl finely minced or ground and variously seasoned -07858114 13 n 01 duck_pate 0 001 @ 07857959 n 0000 | a pate made from duck liver -07858197 13 n 02 foie_gras 0 pate_de_foie_gras 0 001 @ 07857959 n 0000 | a pate made from goose liver (marinated in Cognac) and truffles -07858336 13 n 01 tapenade 0 001 @ 07856270 n 0000 | a spread consisting of capers and black olives and anchovies made into a puree with olive oil -07858484 13 n 01 tahini 0 001 @ 07856270 n 0000 | a thick Middle Eastern paste made from ground sesame seeds -07858595 13 n 02 sweetening 0 sweetener 0 008 @ 07809368 n 0000 + 02195470 v 0201 + 02195470 v 0101 ~ 07858841 n 0000 ~ 07858978 n 0000 ~ 07859142 n 0000 ~ 07859284 n 0000 ~ 07859583 n 0000 | something added to foods to make them taste sweeter -07858841 13 n 01 aspartame 0 001 @ 07858595 n 0000 | an artificial sweetener made from aspartic acid; used as a calorie-free sweetener -07858978 13 n 01 honey 0 005 @ 07858595 n 0000 #s 07890750 n 0000 #s 07891095 n 0000 + 00376537 a 0101 + 02195852 v 0101 | a sweet yellow liquid produced by bees -07859142 13 n 01 saccharin 0 001 @ 07858595 n 0000 | a crystalline substance 500 times sweeter than sugar; used as a calorie-free sweetener -07859284 13 n 02 sugar 0 refined_sugar 0 010 @ 07858595 n 0000 + 02195951 v 0101 ~ 07595180 n 0000 ~ 07595368 n 0000 ~ 07595499 n 0000 ~ 07595649 n 0000 ~ 07596046 n 0000 ~ 07596258 n 0000 ~ 07596362 n 0000 ~ 07596452 n 0000 | a white crystalline carbohydrate used as a sweetener and preservative -07859583 13 n 02 syrup 0 sirup 0 008 @ 07858595 n 0000 ~ 07859796 n 0000 ~ 07859951 n 0000 ~ 07860103 n 0000 ~ 07860208 n 0000 ~ 07860331 n 0000 ~ 07860447 n 0000 ~ 07860548 n 0000 | a thick sweet sticky liquid -07859796 13 n 01 sugar_syrup 0 001 @ 07859583 n 0000 | sugar and water and sometimes corn syrup boiled together; used as sweetening especially in drinks -07859951 13 n 01 molasses 0 001 @ 07859583 n 0000 | thick dark syrup produced by boiling down juice from sugar cane; especially during sugar refining -07860103 13 n 02 sorghum 0 sorghum_molasses 0 001 @ 07859583 n 0000 | made from juice of sweet sorghum -07860208 13 n 02 treacle 0 golden_syrup 0 003 @ 07859583 n 0000 ;r 08860123 n 0000 + 02368566 a 0104 | a pale cane syrup -07860331 13 n 01 grenadine 0 001 @ 07859583 n 0000 | thin syrup made from pomegranate juice; used in mixed drinks -07860447 13 n 01 maple_syrup 0 001 @ 07859583 n 0000 | made by concentrating sap from sugar maples -07860548 13 n 01 corn_syrup 0 001 @ 07859583 n 0000 | syrup prepared from corn -07860629 13 n 03 miraculous_food 0 manna 0 manna_from_heaven 0 002 @ 00021265 n 0000 ;c 06449735 n 0000 | (Old Testament) food that God gave the Israelites during the Exodus -07860805 13 n 01 batter 0 004 @ 07882497 n 0000 ~ 07628181 n 0000 ~ 07861247 n 0000 ~ 07861334 n 0000 | a liquid or semiliquid mixture, as of flour, eggs, and milk, used in cooking -07860988 13 n 01 dough 0 005 @ 07882497 n 0000 + 01185417 a 0101 %s 07569106 n 0000 ~ 07623136 n 0000 ~ 07861158 n 0000 | a flour mixture stiff enough to knead or roll -07861158 13 n 01 bread_dough 0 001 @ 07860988 n 0000 | any of various doughs for bread -07861247 13 n 01 pancake_batter 0 001 @ 07860805 n 0000 | batter for making pancakes -07861334 13 n 01 fritter_batter 0 001 @ 07860805 n 0000 | batter for making fritters -07861421 13 n 02 sop 0 sops 0 003 @ 07579076 n 0000 + 01577513 v 0101 + 01605692 v 0101 | piece of solid food for dipping in a liquid -07861557 13 n 01 coq_au_vin 0 001 @ 07557434 n 0000 | chicken and onions and mushrooms braised in red wine and seasonings -07861681 13 n 01 chicken_provencale 0 001 @ 07557434 n 0000 | chicken cooked in a sauce made with tomatoes, garlic, and olive oil -07861813 13 n 01 chicken_and_rice 0 002 @ 07557434 n 0000 ~ 07862095 n 0000 | rice and chicken cooked together with or without other ingredients and variously seasoned -07861983 13 n 01 moo_goo_gai_pan 0 001 @ 07557434 n 0000 | a Cantonese dish of chicken and sauteed vegetables -07862095 13 n 01 arroz_con_pollo 0 001 @ 07861813 n 0000 | rice and chicken cooked together Spanish style; highly seasoned especially with saffron -07862244 13 n 01 bacon_and_eggs 0 001 @ 07557434 n 0000 | eggs (fried or scrambled) served with bacon -07862348 13 n 02 barbecued_spareribs 0 spareribs 2 001 @ 07557434 n 0000 | baked or roasted with a spicy sauce -07862461 13 n 02 beef_Bourguignonne 0 boeuf_Bourguignonne 0 001 @ 07557434 n 0000 | beef and mushrooms and onions stewed in red wine and seasonings -07862611 13 n 02 beef_Wellington 0 filet_de_boeuf_en_croute 0 001 @ 07557434 n 0000 | rare-roasted beef tenderloin coated with mushroom paste in puff pastry -07862770 13 n 01 bitok 0 001 @ 07557434 n 0000 | a Russian dish made with patties of ground meat (mixed with onions and bread and milk) and served with a sauce of sour cream -07862946 13 n 02 boiled_dinner 0 New_England_boiled_dinner 0 001 @ 07557434 n 0000 | corned beef simmered with onions and cabbage and usually other vegetables -07863107 13 n 01 Boston_baked_beans 0 001 @ 07557434 n 0000 | dried navy beans baked slowly with molasses and salt pork -07863229 13 n 01 bubble_and_squeak 0 002 @ 07557434 n 0000 ;r 08860123 n 0000 | leftover cabbage fried with cooked potatoes and sometimes meat -07863374 13 n 01 pasta 1 005 @ 07557434 n 0000 ~ 07700003 n 0000 ~ 07863547 n 0000 ~ 07870167 n 0000 ~ 07871234 n 0000 | a dish that contains pasta as its main ingredient -07863547 13 n 01 cannelloni 0 001 @ 07863374 n 0000 | tubular pasta filled with meat or cheese -07863644 13 n 02 carbonnade_flamande 0 Belgian_beef_stew 0 001 @ 07557434 n 0000 | beef stewed in beer seasoned with garlic and served with boiled potatoes -07863802 13 n 01 cheese_souffle 0 001 @ 07843464 n 0000 | puffy dish of cheese and eggs (whites beaten separately) and white sauce -07863935 13 n 01 chicken_Marengo 0 001 @ 07557434 n 0000 | braised chicken with onions and mushrooms in a wine and tomato sauce -07864065 13 n 01 chicken_cordon_bleu 0 001 @ 07557434 n 0000 | thin slices of chicken stuffed with cheese and ham and then sauteed -07864198 13 n 01 Maryland_chicken 0 001 @ 07557434 n 0000 | chicken fried than oven-baked and served with milk gravy -07864317 13 n 02 chicken_paprika 0 chicken_paprikash 0 001 @ 07557434 n 0000 | chicken simmered in broth with onions and paprika then mixed with sour cream -07864475 13 n 01 chicken_Tetrazzini 0 001 @ 07864638 n 0000 | chicken prepared in a cream sauce with mushrooms and served over pasta; usually topped with cheese -07864638 13 n 01 Tetrazzini 0 002 @ 07557434 n 0000 ~ 07864475 n 0000 | a pasta dish with cream sauce and mushrooms -07864756 13 n 01 chicken_Kiev 0 001 @ 07557434 n 0000 | pounded chicken cutlets rolled around butter (that has been seasoned with herbs) and then covered with crumbs and fried -07864934 13 n 02 chili 1 chili_con_carne 0 002 @ 07557434 n 0000 ;r 08740875 n 0000 | ground beef and chili peppers or chili powder often with tomatoes and kidney beans -07865105 13 n 01 chili_dog 0 001 @ 07697537 n 0000 | a hotdog with chili con carne on it -07865196 13 n 01 chop_suey 0 001 @ 07557434 n 0000 | meat or fish stir-fried with vegetables (e.g., celery, onions, peppers or bean sprouts) seasoned with ginger and garlic and soy sauce; served with rice; created in the United States and frequently served in Chinese restaurants there -07865484 13 n 01 chow_mein 0 001 @ 07557434 n 0000 | chop suey served with fried noodles -07865575 13 n 02 codfish_ball 0 codfish_cake 0 001 @ 07641928 n 0000 | usually made of flaked salt cod and mashed potatoes -07865700 13 n 01 coquille 0 001 @ 07557434 n 0000 | seafood served in a scallop shell -07865788 13 n 01 coquilles_Saint-Jacques 0 001 @ 07557434 n 0000 | scallops in white wine sauce served in scallop shells -07865911 13 n 01 Cornish_pasty 0 001 @ 07872170 n 0000 | meat pie with filling of meat and vegetables -07866015 13 n 01 croquette 0 001 @ 07557434 n 0000 | minced cooked meats (or vegetables) in thick white sauce; breaded and deep-fried -07866151 13 n 01 cottage_pie 0 002 @ 07557434 n 0000 ;r 08860123 n 0000 | a dish of minced meat topped with mashed potatoes -07866277 13 n 01 rissole 0 001 @ 07557434 n 0000 | minced cooked meat or fish coated in egg and breadcrumbs and fried in deep fat -07866409 13 n 02 dolmas 0 stuffed_grape_leaves 0 001 @ 07557434 n 0000 | well-seasoned rice (with nuts or currants or minced lamb) simmered or braised in stock -07866571 13 n 02 egg_foo_yong 0 egg_fu_yung 0 002 @ 07842753 n 0000 ;r 08723006 n 0000 | omelet containing onions and celery and chopped meat or fish -07866723 13 n 02 egg_roll 0 spring_roll 0 002 @ 07557434 n 0000 ;r 08723006 n 0000 | minced vegetables and meat wrapped in a pancake and fried -07866868 13 n 01 eggs_Benedict 0 001 @ 07557434 n 0000 | toasted English muffin topped with ham and a poached egg (or an oyster) and hollandaise sauce -07867021 13 n 01 enchilada 0 002 @ 07557434 n 0000 ;r 08740875 n 0000 | tortilla with meat filling baked in tomato sauce seasoned with chili -07867164 13 n 02 falafel 0 felafel 0 002 @ 07557434 n 0000 ;r 08791167 n 0000 | small croquette of mashed chick peas or fava beans seasoned with sesame seeds -07867324 13 n 01 fish_and_chips 0 001 @ 07557434 n 0000 | fried fish and french-fried potatoes -07867421 13 n 02 fondue 0 fondu 0 003 @ 07557434 n 0000 ~ 07867616 n 0000 ~ 07867751 n 0000 | hot cheese or chocolate melted to the consistency of a sauce into which bread or fruits are dipped -07867616 13 n 01 cheese_fondue 0 001 @ 07867421 n 0000 | fondue made of cheese melted in wine for dipping bread and sometimes fruits -07867751 13 n 01 chocolate_fondue 0 001 @ 07867421 n 0000 | fondue made of chocolate melted with milk or cream for dipping fruits -07867883 13 n 02 fondue 2 fondu 2 002 @ 07557434 n 0000 ~ 07868045 n 0000 | cubes of meat or seafood cooked in hot oil and then dipped in any of various sauces -07868045 13 n 02 beef_fondue 0 boeuf_fondu_bourguignon 0 001 @ 07867883 n 0000 | cubes of beef cooked in hot oil and then dipped in various tasty sauces -07868200 13 n 01 French_toast 0 001 @ 07557434 n 0000 | bread slice dipped in egg and milk and fried; topped with sugar or fruit or syrup -07868340 13 n 02 fried_rice 0 Chinese_fried_rice 0 001 @ 07557434 n 0000 | boiled rice mixed with scallions and minced pork or shrimp and quickly scrambled with eggs -07868508 13 n 01 frittata 0 001 @ 07557434 n 0000 | Italian omelet with diced vegetables and meats; cooked until bottom is set then inverted into another pan to cook the top -07868684 13 n 01 frog_legs 0 002 @ 07557434 n 0000 #p 01640846 n 0000 | hind legs of frogs used as food; resemble chicken and cooked as chicken -07868830 13 n 01 galantine 0 001 @ 07557434 n 0000 | boned poultry stuffed then cooked and covered with aspic; served cold -07868955 13 n 02 gefilte_fish 0 fish_ball 0 001 @ 07557434 n 0000 | well-seasoned balls of ground fish and eggs and crushed crumbs simmered in fish stock -07869111 13 n 01 haggis 0 002 @ 07557434 n 0000 ;r 08890097 n 0000 | made of sheep's or calf's viscera minced with oatmeal and suet and onions and boiled in the animal's stomach -07869291 13 n 01 ham_and_eggs 0 001 @ 07557434 n 0000 | eggs (scrambled or fried) served with ham -07869391 13 n 01 hash 0 003 @ 07557434 n 0000 + 01257399 v 0101 ~ 07869522 n 0000 | chopped meat mixed with potatoes and browned -07869522 13 n 01 corned_beef_hash 0 001 @ 07869391 n 0000 | hash made with corned beef -07869611 13 n 01 jambalaya 0 001 @ 07557434 n 0000 | spicy Creole dish of rice and ham, sausage, chicken, or shellfish with tomatoes, peppers, onions, and celery -07869775 13 n 03 kabob 0 kebab 0 shish_kebab 0 002 @ 07557434 n 0000 ~ 07870069 n 0000 | cubes of meat marinated and cooked on a skewer usually with vegetables -07869937 13 n 01 kedgeree 0 002 @ 07557434 n 0000 ;r 08860123 n 0000 | a dish of rice and hard-boiled eggs and cooked flaked fish -07870069 13 n 02 souvlaki 0 souvlakia 0 002 @ 07869775 n 0000 ;r 08780881 n 0000 | made of lamb -07870167 13 n 02 lasagna 2 lasagne 2 001 @ 07863374 n 0000 | baked dish of layers of lasagna pasta with sauce and cheese and meat or vegetables -07870313 13 n 01 seafood_Newburg 0 004 @ 07557434 n 0000 ~ 07870478 n 0000 ~ 07870620 n 0000 %s 07870734 n 0000 | seafood in Newburg sauce served on toast or rice -07870478 13 n 02 lobster_Newburg 0 lobster_a_la_Newburg 0 001 @ 07870313 n 0000 | lobster in Newburg sauce served on buttered toast or rice -07870620 13 n 01 shrimp_Newburg 0 001 @ 07870313 n 0000 | shrimp in Newburg sauce usually served in a rice ring -07870734 13 n 01 Newburg_sauce 0 002 @ 07829412 n 0000 #s 07870313 n 0000 | lobster butter and cream and egg yolks seasoned with onions and sherry or Madeira -07870894 13 n 01 lobster_thermidor 0 001 @ 07557434 n 0000 | diced lobster mixed with Mornay sauce placed back in the shell and sprinkled with grated cheese and browned -07871065 13 n 02 lutefisk 0 lutfisk 0 002 @ 07557434 n 0000 ;r 08760510 n 0000 | dried cod soaked in a lye solution before boiling to give it a gelatinous consistency -07871234 13 n 01 macaroni_and_cheese 0 001 @ 07863374 n 0000 | macaroni prepared in a cheese sauce -07871335 13 n 01 macedoine 0 001 @ 07557434 n 0000 | mixed diced fruits or vegetables; hot or cold -07871436 13 n 01 meatball 0 003 @ 07557434 n 0000 ~ 07871588 n 0000 ~ 07871720 n 0000 | ground meat formed into a ball and fried or simmered in broth -07871588 13 n 02 porcupine_ball 0 porcupines 0 001 @ 07871436 n 0000 | meat patties rolled in rice and simmered in a tomato sauce -07871720 13 n 01 Swedish_meatball 0 001 @ 07871436 n 0000 | meatballs simmered in stock -07871810 13 n 02 meat_loaf 0 meatloaf 0 003 @ 07557434 n 0000 @ 07683786 n 0000 ~ 07875693 n 0000 | a baked loaf of ground meat -07871940 13 n 01 meat_pie 0 006 @ 07625493 n 0000 ~ 07872170 n 0000 ~ 07872381 n 0000 ~ 07877062 n 0000 ~ 07877411 n 0000 ~ 07877575 n 0000 | pie made with meat or fowl enclosed in pastry or covered with pastry or biscuit dough -07872170 13 n 01 pasty 0 003 @ 07871940 n 0000 ~ 07865911 n 0000 ~ 07872284 n 0000 | small meat pie or turnover -07872284 13 n 01 pork_pie 0 001 @ 07872170 n 0000 | small pie filled with minced seasoned pork -07872381 13 n 01 tourtiere 0 001 @ 07871940 n 0000 | a meat pie that is usually eaten at Christmas in Quebec -07872492 13 n 01 mostaccioli 0 001 @ 07698915 n 0000 | pasta somewhat resembling little moustaches -07872593 13 n 01 moussaka 0 001 @ 07557434 n 0000 | casserole of eggplant and ground lamb with onion and tomatoes bound with white sauce and beaten eggs -07872748 13 n 01 osso_buco 0 001 @ 07557434 n 0000 | sliced veal knuckle or shin bone cooked with olive oil and wine and tomatoes and served with rice or vegetables -07872915 13 n 01 marrowbone 0 002 @ 05269901 n 0000 %p 07873057 n 0000 | a bone containing edible marrow; used especially in flavoring soup -07873057 13 n 02 marrow 2 bone_marrow 0 002 @ 07557165 n 0000 #p 07872915 n 0000 | very tender and very nutritious tissue from marrowbones -07873198 13 n 01 pheasant_under_glass 0 001 @ 07557434 n 0000 | a dish of roast pheasant served in a manner characteristic of expensive restaurants -07873348 13 n 01 pigs_in_blankets 0 001 @ 07582277 n 0000 | small frankfurters wrapped in biscuit dough and baked -07873464 13 n 04 pilaf 0 pilaff 0 pilau 0 pilaw 0 002 @ 07557434 n 0000 ~ 07873679 n 0000 | rice cooked in well-seasoned broth with onions or celery and usually poultry or game or shellfish and sometimes tomatoes -07873679 13 n 01 bulgur_pilaf 0 001 @ 07873464 n 0000 | pilaf made with bulgur wheat instead of rice and usually without meat -07873807 13 n 02 pizza 0 pizza_pie 0 006 @ 07557434 n 0000 ~ 07874063 n 0000 ~ 07874159 n 0000 ~ 07874259 n 0000 ~ 07874343 n 0000 ~ 07874441 n 0000 | Italian open pie made of thin bread dough spread with a spiced mixture of e.g. tomato sauce and cheese -07874063 13 n 01 sausage_pizza 0 001 @ 07873807 n 0000 | tomato and cheese pizza with sausage -07874159 13 n 01 pepperoni_pizza 0 001 @ 07873807 n 0000 | tomato and cheese pizza with pepperoni -07874259 13 n 01 cheese_pizza 0 001 @ 07873807 n 0000 | pizza with lots of cheese -07874343 13 n 01 anchovy_pizza 0 001 @ 07873807 n 0000 | tomato and cheese pizza with anchovies -07874441 13 n 01 Sicilian_pizza 0 001 @ 07873807 n 0000 | pizza made with a thick crust -07874531 13 n 01 poi 0 002 @ 07557434 n 0000 %s 07736813 n 0000 | Hawaiian dish of taro root pounded to a paste and often allowed to ferment -07874674 13 n 01 pork_and_beans 0 001 @ 07557434 n 0000 | dried beans cooked with pork and tomato sauce -07874780 13 n 01 porridge 0 005 @ 07557434 n 0000 %s 07568502 n 0000 ~ 07703889 n 0000 ~ 07704054 n 0000 ~ 07874995 n 0000 | soft food made by boiling oatmeal or other meal or legumes in water or milk until thick -07874995 13 n 02 oatmeal 0 burgoo 1 001 @ 07874780 n 0000 | porridge made of rolled oats -07875086 13 n 01 loblolly 0 001 @ 07704054 n 0000 | thick gruel -07875152 13 n 01 potpie 0 001 @ 07557434 n 0000 | deep-dish meat and vegetable pie or a meat stew with dumplings -07875267 13 n 03 rijsttaffel 0 rijstaffel 0 rijstafel 0 001 @ 07557434 n 0000 | dish originating in Indonesia; a wide variety of foods and sauces are served with rice -07875436 13 n 02 risotto 0 Italian_rice 0 001 @ 07557434 n 0000 | rice cooked with broth and sprinkled with grated cheese -07875560 13 n 01 roulade 0 001 @ 07557434 n 0000 | a dish consisting of a slice of meat that is rolled around a filling and cooked -07875693 13 n 01 fish_loaf 0 002 @ 07871810 n 0000 ~ 07875835 n 0000 | flaked fish baked in a loaf with bread crumbs and various seasonings -07875835 13 n 01 salmon_loaf 0 001 @ 07875693 n 0000 | fish loaf made with flaked salmon -07875926 13 n 01 Salisbury_steak 0 001 @ 07557434 n 0000 | ground beef patty usually with a sauce -07876026 13 n 01 sauerbraten 0 001 @ 07557434 n 0000 | pot roast marinated several days in seasoned vinegar before cooking; usually served with potato dumplings -07876189 13 n 01 sauerkraut 0 001 @ 07557434 n 0000 | shredded cabbage fermented in brine -07876281 13 n 02 scallopine 0 scallopini 0 002 @ 07557434 n 0000 ~ 07876460 n 0000 | sauteed cutlets (usually veal or poultry) that have been pounded thin and coated with flour -07876460 13 n 01 veal_scallopini 0 001 @ 07876281 n 0000 | thin sauteed cutlets of veal -07876550 13 n 01 scampi 0 001 @ 07557434 n 0000 | large shrimp sauteed in oil or butter and garlic -07876651 13 n 01 Scotch_egg 0 001 @ 07557434 n 0000 | hard-cooked egg encased in sausage meat then breaded and deep-fried -07876775 13 n 01 Scotch_woodcock 0 001 @ 07557434 n 0000 | creamy scrambled eggs on toast spread with anchovy paste -07876893 13 n 01 scrapple 0 002 @ 07557434 n 0000 @ 07649582 n 0000 | scraps of meat (usually pork) boiled with cornmeal and shaped into loaves for slicing and frying -07877062 13 n 01 shepherd's_pie 0 001 @ 07871940 n 0000 | pie of hash covered with mashed potatoes and browned in the oven -07877187 13 n 01 spaghetti_and_meatballs 0 001 @ 07557434 n 0000 | spaghetti with meatballs in a tomato sauce -07877299 13 n 01 Spanish_rice 0 001 @ 07557434 n 0000 | spicy rice with tomatoes and onions and green peppers -07877411 13 n 01 steak_and_kidney_pie 0 001 @ 07871940 n 0000 | steak with sauteed kidneys and onions cooked in wine and stock then covered with pastry and baked -07877575 13 n 01 kidney_pie 0 001 @ 07871940 n 0000 | like steak and kidney pie but without steak -07877675 13 n 03 steak_tartare 0 tartar_steak 0 cannibal_mound 0 001 @ 07557434 n 0000 | ground beef mixed with raw egg and e.g. onions and capers and anchovies; eaten raw -07877849 13 n 01 pepper_steak 1 001 @ 07557434 n 0000 | strips of steak sauteed with green peppers and onions -07877961 13 n 03 steak_au_poivre 0 peppered_steak 0 pepper_steak 2 001 @ 07557434 n 0000 | steak covered with crushed peppercorns pan-broiled and served with brandy-and-butter sauce -07878145 13 n 01 beef_Stroganoff 0 001 @ 07557434 n 0000 | sauteed strips of beef and mushrooms in sour cream sauce served with noodles -07878283 13 n 01 stuffed_cabbage 0 001 @ 07557434 n 0000 | parboiled head of cabbage scooped out and filled with a hash of chopped e.g. beef or ham and baked; served with tomato or cheese sauce -07878479 13 n 02 kishke 0 stuffed_derma 0 002 @ 07557434 n 0000 ;c 06232880 n 0000 | (Judaism) roasted fowl intestines with a seasoned filling of matzo meal and suet -07878647 13 n 01 stuffed_peppers 0 001 @ 07557434 n 0000 | parboiled green peppers stuffed usually with rice and meat and baked briefly -07878785 13 n 02 stuffed_tomato 1 hot_stuffed_tomato 0 001 @ 07557434 n 0000 | tomato cases filled with various mixtures and baked briefly -07878926 13 n 02 stuffed_tomato 2 cold_stuffed_tomato 0 001 @ 07557434 n 0000 | tomato cases filled with various salad mixtures and served cold -07879072 13 n 01 succotash 0 001 @ 07557434 n 0000 | fresh corn and lima beans with butter or cream -07879174 13 n 01 sukiyaki 0 002 @ 07557434 n 0000 ;r 08921850 n 0000 | thin beef strips (or chicken or pork) cooked briefly at the table with onions and greens and soy sauce -07879350 13 n 01 sashimi 0 002 @ 07557434 n 0000 ;r 08921850 n 0000 | very thinly sliced raw fish -07879450 13 n 01 sushi 0 002 @ 07557434 n 0000 ;r 08921850 n 0000 | rice (with raw fish) wrapped in seaweed -07879560 13 n 01 Swiss_steak 0 001 @ 07557434 n 0000 | steak braised in tomato and onion mixture -07879659 13 n 01 tamale 0 002 @ 07557434 n 0000 ;r 08740875 n 0000 | corn and cornmeal dough stuffed with a meat mixture then wrapped in corn husks and steamed -07879821 13 n 01 tamale_pie 0 001 @ 07557434 n 0000 | a meat mixture covered with cornbread topping that resembles a Mexican dish -07879953 13 n 01 tempura 0 002 @ 07557434 n 0000 ;r 08921850 n 0000 | vegetables and seafood dipped in batter and deep-fried -07880080 13 n 01 teriyaki 0 001 @ 07557434 n 0000 | beef or chicken or seafood marinated in spicy soy sauce and grilled or broiled -07880213 13 n 01 terrine 0 001 @ 07557434 n 0000 | a pate or fancy meatloaf baked in an earthenware casserole -07880325 13 n 03 Welsh_rarebit 0 Welsh_rabbit 0 rarebit 0 001 @ 07557434 n 0000 | cheese melted with ale or beer served over toast -07880458 13 n 02 schnitzel 0 Wiener_schnitzel 0 002 @ 07557434 n 0000 ;r 08846324 n 0000 | deep-fried breaded veal cutlets -07880583 13 n 01 tortilla 0 004 @ 07640203 n 0000 #p 07698782 n 0000 ;r 08740875 n 0000 ~ 07881310 n 0000 | thin unleavened pancake made from cornmeal or wheat flour -07880751 13 n 01 taco 0 003 @ 07557434 n 0000 ;r 08740875 n 0000 ~ 07880880 n 0000 | a tortilla rolled cupped around a filling -07880880 13 n 01 chicken_taco 0 001 @ 07880751 n 0000 | a taco with a chicken filling -07880968 13 n 01 burrito 0 004 @ 07557434 n 0000 ;r 08740875 n 0000 ~ 07881117 n 0000 ~ 07881205 n 0000 | a flour tortilla folded around a filling -07881117 13 n 01 beef_burrito 0 001 @ 07880968 n 0000 | a burrito with a beef filling -07881205 13 n 01 quesadilla 0 001 @ 07880968 n 0000 | a tortilla that is filled with cheese and heated -07881310 13 n 01 tostada 1 002 @ 07880583 n 0000 ;r 08740875 n 0000 | a crisp flat tortilla -07881404 13 n 01 tostada 0 002 @ 07557434 n 0000 ~ 07881525 n 0000 | a flat tortilla with various fillings piled on it -07881525 13 n 01 bean_tostada 0 001 @ 07881404 n 0000 | a flat tortilla topped with refried beans -07881625 13 n 02 refried_beans 0 frijoles_refritos 0 002 @ 07557434 n 0000 ;r 08740875 n 0000 | dried beans cooked and mashed and then fried in lard with various seasonings -07881800 13 n 04 beverage 0 drink 0 drinkable 0 potable 0 027 @ 00021265 n 0000 @ 14940386 n 0000 + 00797113 a 0402 + 01170052 v 0201 ~ 07844042 n 0000 ~ 07882420 n 0000 ~ 07883251 n 0000 ~ 07884567 n 0000 ~ 07890970 n 0000 ~ 07891095 n 0000 ~ 07891189 n 0000 ~ 07891309 n 0000 ~ 07913180 n 0000 ~ 07914006 n 0000 ~ 07914128 n 0000 ~ 07914271 n 0000 ~ 07919310 n 0000 ~ 07921455 n 0000 ~ 07922764 n 0000 ~ 07924033 n 0000 ~ 07925966 n 0000 ~ 07926785 n 0000 ~ 07927197 n 0000 ~ 07929519 n 0000 ~ 07933274 n 0000 ~ 07933530 n 0000 ~ 07936263 n 0000 | any liquid suitable for drinking; "may I take your beverage order?" -07882420 13 n 01 wish-wash 0 001 @ 07881800 n 0000 | any thin watery drink -07882497 13 n 03 concoction 0 mixture 0 intermixture 0 010 @ 07566340 n 0000 + 00394813 v 0203 + 01666131 v 0101 ~ 07678586 n 0000 ~ 07678729 n 0000 ~ 07839478 n 0000 ~ 07860805 n 0000 ~ 07860988 n 0000 ~ 07882886 n 0000 ~ 07883031 n 0000 | any foodstuff made by combining different ingredients; "he volunteered to taste her latest concoction"; "he drank a mixture of beer and lemonade" -07882886 13 n 02 mix 0 premix 0 003 @ 07882497 n 0000 ~ 07593774 n 0000 ~ 07594250 n 0000 | a commercially prepared mixture of dry ingredients -07883031 13 n 01 filling 0 002 @ 07882497 n 0000 ~ 07883156 n 0000 | a food mixture used to fill pastry or sandwiches etc. -07883156 13 n 01 lekvar 0 001 @ 07883031 n 0000 | a sweet filling made of prunes or apricots -07883251 13 n 01 potion 0 003 @ 07881800 n 0000 ~ 07883384 n 0000 ~ 07883661 n 0000 | a medicinal or magical or poisonous beverage -07883384 13 n 01 elixir 0 003 @ 07883251 n 0000 @ 03880770 n 0000 ~ 07883510 n 0000 | a substance believed to cure all ills -07883510 13 n 01 elixir_of_life 0 001 @ 07883384 n 0000 | a hypothetical substance believed to maintain life indefinitely; once sought by alchemists -07883661 13 n 05 philter 0 philtre 0 love-potion 0 love-philter 0 love-philtre 0 001 @ 07883251 n 0000 | a drink credited with magical power; can make the one who takes it love the one who gave it -07883860 13 n 01 chaser 0 002 @ 07885223 n 0000 + 02001858 v 0101 | a drink to follow immediately after another drink -07883980 13 n 04 draft 0 draught 0 potation 0 tipple 0 003 @ 07885223 n 0000 + 01172114 v 0401 ~ 07884182 n 0000 | a serving of drink (usually alcoholic) drawn from a keg; "they served beer on draft" -07884182 13 n 01 quaff 0 002 @ 07883980 n 0000 + 01202068 v 0102 | a hearty draft -07884266 13 n 02 round 1 round_of_drinks 0 001 @ 07578363 n 0000 | a serving to each of a group (usually alcoholic); "he ordered a second round" -07884413 13 n 02 pledge 0 toast 1 003 @ 07885223 n 0000 + 01175467 v 0201 + 01175467 v 0103 | a drink in honor of or to the health of a person or event -07884567 13 n 05 alcohol 0 alcoholic_drink 0 alcoholic_beverage 0 intoxicant 0 inebriant 0 026 @ 07881800 n 0000 @ 03248958 n 0000 + 01190494 v 0503 + 01190494 v 0401 + 01158596 a 0101 + 00139908 v 0101 + 00139729 v 0101 ~ 07885705 n 0000 ~ 07886057 n 0000 ~ 07886176 n 0000 ~ 07886317 n 0000 ~ 07886463 n 0000 ~ 07886572 n 0000 ~ 07891433 n 0000 ~ 07891613 n 0000 ~ 07891726 n 0000 ~ 07901587 n 0000 ~ 07902121 n 0000 ~ 07905618 n 0000 ~ 07907943 n 0000 ~ 07911371 n 0000 ~ 07921615 n 0000 ~ 07922147 n 0000 ~ 07922512 n 0000 ~ 07922607 n 0000 ~ 07925808 n 0000 | a liquor or brew containing alcohol as the active agent; "alcohol (or drink) ruined him" -07885223 13 n 01 drink 4 020 @ 07578363 n 0000 + 01170052 v 0101 ~ 07883860 n 0000 ~ 07883980 n 0000 ~ 07884413 n 0000 ~ 07885937 n 0000 ~ 07912499 n 0000 ~ 07912619 n 0000 ~ 07912726 n 0000 ~ 07912834 n 0000 ~ 07912933 n 0000 ~ 07913081 n 0000 ~ 07916773 n 0000 ~ 07916872 n 0000 ~ 07916970 n 0000 ~ 07918454 n 0000 ~ 07918601 n 0000 ~ 07923034 n 0000 ~ 07923297 n 0000 ~ 07923665 n 0000 | a single serving of a beverage; "I asked for a hot drink"; "likes a drink before dinner" -07885705 13 n 01 proof_spirit 0 001 @ 07884567 n 0000 | a mixture containing half alcohol by volume at 60 degrees Fahrenheit -07885832 13 n 01 libation 0 001 @ 07578363 n 0000 | a serving (of wine) poured out in honor of a deity -07885937 13 n 01 libation 2 002 @ 07885223 n 0000 ;u 06776138 n 0000 | (facetious) a serving of an alcoholic beverage -07886057 13 n 02 home_brew 0 homebrew 0 001 @ 07884567 n 0000 | an alcoholic beverage (especially beer) made at home -07886176 13 n 02 hooch 0 hootch 0 002 @ 07884567 n 0000 ~ 07922299 n 0000 | an illicitly distilled (and usually inferior) alcoholic liquor -07886317 13 n 02 kava 0 kavakava 0 002 @ 07884567 n 0000 ;r 08841667 n 0000 | an alcoholic drink made from the aromatic roots of the kava shrub -07886463 13 n 01 aperitif 0 001 @ 07884567 n 0000 | alcoholic beverage taken before a meal as an appetizer -07886572 13 n 02 brew 0 brewage 0 009 @ 07884567 n 0000 + 01663920 v 0201 + 01663920 v 0101 + 00327813 v 0101 ~ 07886849 n 0000 ~ 07890617 n 0000 ~ 07890750 n 0000 ~ 07932323 n 0000 ~ 07932454 n 0000 | drink made by steeping and boiling and fermenting rather than distilling -07886849 13 n 01 beer 0 006 @ 07886572 n 0000 + 00798017 a 0101 ~ 07887099 n 0000 ~ 07887192 n 0000 ~ 07887634 n 0000 ~ 07889510 n 0000 | a general name for alcoholic beverages made by fermenting a cereal (or mixture of cereals) flavored with hops -07887099 13 n 02 draft_beer 0 draught_beer 0 001 @ 07886849 n 0000 | beer drawn from a keg -07887192 13 n 01 suds 0 001 @ 07886849 n 0000 | a dysphemism for beer (especially for lager that effervesces) -07887304 13 n 02 Munich_beer 0 Munchener 0 001 @ 07887634 n 0000 | a dark lager produced in Munich since the 10th century; has a distinctive taste of malt -07887461 13 n 02 bock 0 bock_beer 0 001 @ 07887634 n 0000 | a very strong lager traditionally brewed in the fall and aged through the winter for consumption in the spring -07887634 13 n 02 lager 0 lager_beer 0 007 @ 07886849 n 0000 ~ 07887304 n 0000 ~ 07887461 n 0000 ~ 07887967 n 0000 ~ 07888058 n 0000 ~ 07888229 n 0000 ~ 07889274 n 0000 | a general term for beer made with bottom fermenting yeast (usually by decoction mashing); originally it was brewed in March or April and matured until September -07887967 13 n 01 light_beer 0 001 @ 07887634 n 0000 | lager with reduced alcohol content -07888058 13 n 02 Oktoberfest 0 Octoberfest 0 001 @ 07887634 n 0000 | a strong lager made originally in Germany for the Oktoberfest celebration; sweet and copper-colored -07888229 13 n 02 Pilsner 0 Pilsener 0 001 @ 07887634 n 0000 | a pale lager with strong flavor of hops; first brewed in the Bohemian town of Pilsen -07888378 13 n 01 shebeen 2 001 @ 04395875 n 0000 | unlicensed drinking establishment -07888465 13 n 03 Weissbier 0 white_beer 0 wheat_beer 0 004 @ 07889510 n 0000 ;r 08766988 n 0000 ~ 07888709 n 0000 ~ 07888816 n 0000 | a general name for beers made from wheat by top fermentation; usually very pale and cloudy and effervescent -07888709 13 n 01 Weizenbier 0 001 @ 07888465 n 0000 | a general name in southern Germany for wheat beers -07888816 13 n 01 Weizenbock 0 001 @ 07888465 n 0000 | a German wheat beer of bock strength -07888909 13 n 01 malt 1 006 @ 07802417 n 0000 #s 07889274 n 0000 + 10286855 n 0101 + 00117757 v 0101 + 00186001 v 0101 ~ 07889193 n 0000 | a cereal grain (usually barley) that is kiln-dried after having been germinated by soaking in water; used especially in brewing and distilling -07889193 13 n 01 wort 0 001 @ 07888909 n 0000 | unfermented or fermenting malt -07889274 13 n 02 malt 2 malt_liquor 0 005 @ 07887634 n 0000 + 10286855 n 0101 + 00117624 v 0101 + 00117878 v 0101 %s 07888909 n 0000 | a lager of high alcohol content; by law it is considered too alcoholic to be sold as lager or beer -07889510 13 n 01 ale 0 007 @ 07886849 n 0000 ~ 07888465 n 0000 ~ 07889814 n 0000 ~ 07889990 n 0000 ~ 07890068 n 0000 ~ 07890226 n 0000 ~ 07890352 n 0000 | a general name for beer made with a top fermenting yeast; in some of the United States an ale is (by law) a brew of more than 4% alcohol by volume -07889814 13 n 01 bitter 0 003 @ 07889510 n 0000 ;r 08860123 n 0000 + 02396098 a 0101 | English term for a dry sharp-tasting ale with strong flavor of hops (usually on draft) -07889990 13 n 01 Burton 0 001 @ 07889510 n 0000 | a strong dark English ale -07890068 13 n 01 pale_ale 0 002 @ 07889510 n 0000 ;r 08860123 n 0000 | an amber colored ale brewed with pale malts; similar to bitter but drier and lighter -07890226 13 n 02 porter 0 porter's_beer 0 001 @ 07889510 n 0000 | a very dark sweet ale brewed from roasted unmalted barley -07890352 13 n 01 stout 0 002 @ 07889510 n 0000 ~ 07890540 n 0000 | a strong very dark heavy-bodied ale made from pale malt and roasted unmalted barley and (often) caramel malt with hops -07890540 13 n 01 Guinness 0 001 @ 07890352 n 0000 | a kind of bitter stout -07890617 13 n 01 kvass 0 002 @ 07886572 n 0000 ;r 09003284 n 0000 | fermented beverage resembling beer but made from rye or barley -07890750 13 n 01 mead 0 004 @ 07886572 n 0000 %s 07858978 n 0000 ~ 07890890 n 0000 %s 07890970 n 0000 | made of fermented honey and water -07890890 13 n 01 metheglin 0 001 @ 07890750 n 0000 | spiced or medicated mead -07890970 13 n 01 hydromel 0 002 @ 07881800 n 0000 #s 07890750 n 0000 | honey diluted in water; becomes mead when fermented -07891095 13 n 01 oenomel 0 002 @ 07881800 n 0000 %s 07858978 n 0000 | wine mixed with honey -07891189 13 n 01 near_beer 0 001 @ 07881800 n 0000 | drink that resembles beer but with less than 1/2 percent alcohol -07891309 13 n 01 ginger_beer 0 001 @ 07881800 n 0000 | carbonated slightly alcoholic drink flavored with fermented ginger -07891433 13 n 03 sake 0 saki 0 rice_beer 0 003 @ 07884567 n 0000 #s 12125890 n 0000 ;r 08921850 n 0000 | Japanese alcoholic beverage made from fermented rice; usually served hot -07891613 13 n 01 nipa 0 002 @ 07884567 n 0000 #s 12592058 n 0000 | made from sap of the Australasian nipa palm -07891726 13 n 02 wine 0 vino 0 034 @ 07884567 n 0000 #s 07758680 n 0000 #s 07927070 n 0000 + 02399259 a 0101 + 02399259 a 0102 + 02854013 a 0101 + 02854013 a 0102 + 01176567 v 0101 + 01190840 v 0101 + 00459114 v 0101 ~ 07892418 n 0000 ~ 07892512 n 0000 ~ 07892813 n 0000 ~ 07893253 n 0000 ~ 07893425 n 0000 ~ 07893528 n 0000 ~ 07893891 n 0000 ~ 07895237 n 0000 ~ 07896060 n 0000 ~ 07896165 n 0000 ~ 07896287 n 0000 ~ 07896422 n 0000 ~ 07896560 n 0000 ~ 07896661 n 0000 ~ 07896994 n 0000 ~ 07897116 n 0000 ~ 07897750 n 0000 ~ 07898745 n 0000 ~ 07898895 n 0000 ~ 07899108 n 0000 ~ 07899976 n 0000 ~ 07900225 n 0000 ~ 07900406 n 0000 ~ 07926920 n 0000 | fermented juice (of grapes especially) -07892418 13 n 01 vintage 0 001 @ 07891726 n 0000 | a season's yield of wine from a vineyard -07892512 13 n 01 red_wine 0 011 @ 07891726 n 0000 #s 07916970 n 0000 ~ 07894102 n 0000 ~ 07894298 n 0000 ~ 07894965 n 0000 ~ 07895435 n 0000 ~ 07895595 n 0000 ~ 07895710 n 0000 ~ 07895839 n 0000 ~ 07897865 n 0000 ~ 07898333 n 0000 | wine having a red color derived from skins of dark-colored grapes -07892813 13 n 01 white_wine 0 017 @ 07891726 n 0000 ~ 07894451 n 0000 ~ 07894551 n 0000 ~ 07894703 n 0000 ~ 07894799 n 0000 ~ 07895100 n 0000 ~ 07895962 n 0000 ~ 07896765 n 0000 ~ 07896893 n 0000 ~ 07897200 n 0000 ~ 07897975 n 0000 ~ 07898247 n 0000 ~ 07898443 n 0000 ~ 07899533 n 0000 ~ 07899660 n 0000 ~ 07899769 n 0000 ~ 07899899 n 0000 | pale yellowish wine made from white grapes or red grapes with skins removed before fermentation -07893253 13 n 04 blush_wine 0 pink_wine 0 rose 0 rose_wine 0 001 @ 07891726 n 0000 | pinkish table wine from red grapes whose skins were removed after fermentation began -07893425 13 n 02 altar_wine 0 sacramental_wine 0 001 @ 07891726 n 0000 | used in a communion service -07893528 13 n 01 sparkling_wine 0 003 @ 07891726 n 0000 ~ 07893642 n 0000 ~ 07893792 n 0000 | effervescent wine -07893642 13 n 02 champagne 0 bubbly 0 001 @ 07893528 n 0000 | a white sparkling wine either produced in Champagne or resembling that produced there -07893792 13 n 01 cold_duck 0 001 @ 07893528 n 0000 | pink sparkling wine originally from Germany -07893891 13 n 02 Burgundy 0 Burgundy_wine 0 004 @ 07891726 n 0000 ~ 07894102 n 0000 ~ 07894551 n 0000 ~ 07894703 n 0000 | red table wine from the Burgundy region of France (or any similar wine made elsewhere) -07894102 13 n 01 Beaujolais 0 002 @ 07893891 n 0000 @ 07892512 n 0000 | dry fruity light red wine drunk within a few months after it is made; from the Beaujolais district in southeastern France -07894298 13 n 01 Medoc 0 003 @ 07895237 n 0000 @ 07892512 n 0000 #s 13146583 n 0000 | red Bordeaux wine from the Medoc district of southwestern France -07894451 13 n 01 Canary_wine 0 001 @ 07892813 n 0000 | a sweet white wine from the Canary Islands -07894551 13 n 02 Chablis 0 white_Burgundy 0 002 @ 07893891 n 0000 @ 07892813 n 0000 | dry white table wine of Chablis, France or a wine resembling it -07894703 13 n 01 Montrachet 0 002 @ 07893891 n 0000 @ 07892813 n 0000 | a white Burgundy wine -07894799 13 n 02 Chardonnay 0 Pinot_Chardonnay 0 002 @ 07892813 n 0000 #s 13145924 n 0000 | dry white table wine resembling Chablis but made from Chardonnay grapes -07894965 13 n 01 Pinot_noir 0 002 @ 07892512 n 0000 #s 13146225 n 0000 | dry red California table wine made from purple Pinot grapes -07895100 13 n 01 Pinot_blanc 0 002 @ 07892813 n 0000 #s 13146403 n 0000 | dry white California table wine made from white Pinot grapes -07895237 13 n 02 Bordeaux 0 Bordeaux_wine 0 003 @ 07891726 n 0000 ~ 07894298 n 0000 ~ 07895435 n 0000 | any of several red or white wines produced around Bordeaux, France or wines resembling them -07895435 13 n 02 claret 0 red_Bordeaux 0 004 @ 07895237 n 0000 @ 07892512 n 0000 + 01171799 v 0101 ~ 07898117 n 0000 | dry red Bordeaux or Bordeaux-like wine -07895595 13 n 01 Chianti 0 001 @ 07892512 n 0000 | dry red Italian table wine from the Chianti region of Tuscany -07895710 13 n 02 Cabernet 0 Cabernet_Sauvignon 0 002 @ 07892512 n 0000 #s 13146740 n 0000 | superior Bordeaux type of red wine -07895839 13 n 01 Merlot 0 001 @ 07892512 n 0000 | dry red wine made from a grape grown widely in Bordeaux and California -07895962 13 n 01 Sauvignon_blanc 0 002 @ 07892813 n 0000 #s 13146928 n 0000 | a California wine -07896060 13 n 01 California_wine 0 001 @ 07891726 n 0000 | any of various wines produced in California -07896165 13 n 01 Cotes_de_Provence 0 001 @ 07891726 n 0000 | a wine from southeastern France on the Mediterranean coast -07896287 13 n 01 dessert_wine 0 002 @ 07891726 n 0000 ~ 07898617 n 0000 | still sweet wine often served with dessert or after a meal -07896422 13 n 01 Dubonnet 0 001 @ 07891726 n 0000 | (trademark) a sweet aromatic French wine (red or white) used chiefly as an aperitif -07896560 13 n 01 jug_wine 0 001 @ 07891726 n 0000 | inexpensive wine sold in large bottles or jugs -07896661 13 n 02 macon 0 maconnais 0 001 @ 07891726 n 0000 | fine Burgundy wine usually white and dry -07896765 13 n 01 Moselle 0 001 @ 07892813 n 0000 | German white wine from the Moselle valley or a similar wine made elsewhere -07896893 13 n 01 Muscadet 0 001 @ 07892813 n 0000 | dry white wine from the Loire valley in France -07896994 13 n 01 plonk 0 003 @ 07891726 n 0000 ;r 08860123 n 0000 ;r 08831004 n 0000 | a cheap wine of inferior quality -07897116 13 n 01 retsina 0 001 @ 07891726 n 0000 | Greek wine flavored with resin -07897200 13 n 03 Rhine_wine 0 Rhenish 0 hock 0 005 @ 07892813 n 0000 ;r 08860123 n 0000 + 03111283 a 0201 ~ 07897438 n 0000 ~ 07897600 n 0000 | any of several white wines from the Rhine River valley in Germany (`hock' is British usage) -07897438 13 n 01 Riesling 0 002 @ 07897200 n 0000 #s 13147270 n 0000 | fragrant dry or sweet white wine from the Rhine valley or a similar wine from California -07897600 13 n 01 liebfraumilch 0 002 @ 07897200 n 0000 ;r 08766988 n 0000 | a sweetened Rhenish wine (especially one from Hesse in western Germany) -07897750 13 n 01 Rhone_wine 0 001 @ 07891726 n 0000 | any of various wines from the Rhone River valley in France -07897865 13 n 01 Rioja 0 001 @ 07892512 n 0000 | dry red table wine from the Rioja region of northern Spain -07897975 13 n 01 sack 0 001 @ 07892813 n 0000 | any of various light dry strong white wine from Spain and Canary Islands (including sherry) -07898117 13 n 01 Saint_Emilion 0 001 @ 07895435 n 0000 | full-bodied red wine from around the town of Saint Emilion in Bordeaux -07898247 13 n 01 Soave 0 001 @ 07892813 n 0000 | dry white Italian wine from Verona -07898333 13 n 01 zinfandel 0 002 @ 07892512 n 0000 #s 13147386 n 0000 | dry fruity red wine from California -07898443 13 n 02 Sauterne 0 Sauternes 0 001 @ 07892813 n 0000 | semisweet golden-colored table or dessert wine from around Bordeaux in France; similar wine from California -07898617 13 n 01 straw_wine 0 001 @ 07896287 n 0000 | sweet wine from grapes partially sun-dried on the vine or on straw mats -07898745 13 n 01 table_wine 0 002 @ 07891726 n 0000 ~ 07899003 n 0000 | wine containing not more than 14 percent alcohol usually served with a meal -07898895 13 n 01 Tokay 2 002 @ 07891726 n 0000 #s 07760501 n 0000 | Hungarian wine made from Tokay grapes -07899003 13 n 01 vin_ordinaire 0 001 @ 07898745 n 0000 | cheap French table wine of unspecified origin -07899108 13 n 01 vermouth 0 003 @ 07891726 n 0000 ~ 07899292 n 0000 ~ 07899434 n 0000 | any of several white wines flavored with aromatic herbs; used as aperitifs or in mixed drinks -07899292 13 n 02 sweet_vermouth 0 Italian_vermouth 0 003 @ 07899108 n 0000 #s 07915618 n 0000 #s 07916183 n 0000 | sweet dark amber variety -07899434 13 n 02 dry_vermouth 0 French_vermouth 0 001 @ 07899108 n 0000 | dry pale amber variety -07899533 13 n 01 Chenin_blanc 0 002 @ 07892813 n 0000 #s 13147532 n 0000 | made in California and the Loire valley in France -07899660 13 n 01 Verdicchio 0 001 @ 07892813 n 0000 | a dry white Italian wine made from Verdicchio grapes -07899769 13 n 01 Vouvray 0 001 @ 07892813 n 0000 | a dry white French wine (either still or sparkling) made in the Loire valley -07899899 13 n 01 Yquem 0 001 @ 07892813 n 0000 | a sweet white French wine -07899976 13 n 02 generic 0 generic_wine 0 003 @ 07891726 n 0000 ! 07900225 n 0202 ! 07900225 n 0101 | a wine that is a blend of several varieties of grapes with no one grape predominating; a wine that does not carry the name of any specific grape -07900225 13 n 02 varietal 0 varietal_wine 0 003 @ 07891726 n 0000 ! 07899976 n 0202 ! 07899976 n 0101 | a wine made principally from one grape and carrying the name of that grape -07900406 13 n 01 fortified_wine 0 006 @ 07891726 n 0000 ~ 07900616 n 0000 ~ 07900825 n 0000 ~ 07900958 n 0000 ~ 07901355 n 0000 ~ 07901457 n 0000 | wine to which alcohol (usually grape brandy) has been added -07900616 13 n 01 Madeira 0 002 @ 07900406 n 0000 ~ 07900734 n 0000 | an amber dessert wine from the Madeira Islands -07900734 13 n 01 malmsey 0 002 @ 07900616 n 0000 #s 13147689 n 0000 | sweet Madeira wine -07900825 13 n 02 port 0 port_wine 0 002 @ 07900406 n 0000 + 01171661 v 0101 | sweet dark-red dessert wine originally from Portugal -07900958 13 n 01 sherry 0 003 @ 07900406 n 0000 ~ 07901176 n 0000 ~ 07901264 n 0000 | dry to sweet amber wine from the Jerez region of southern Spain or similar wines produced elsewhere; usually drunk as an aperitif -07901176 13 n 01 Manzanilla 0 001 @ 07900958 n 0000 | very dry pale sherry from Spain -07901264 13 n 01 Amontillado 0 001 @ 07900958 n 0000 | pale medium-dry sherry from Spain -07901355 13 n 01 Marsala 0 001 @ 07900406 n 0000 | dark sweet or semisweet dessert wine from Sicily -07901457 13 n 04 muscat 2 muscatel 2 muscadel 2 muscadelle 2 002 @ 07900406 n 0000 #s 07760153 n 0000 | wine from muscat grapes -07901587 13 n 07 liquor 0 spirits 0 booze 0 hard_drink 0 hard_liquor 0 John_Barleycorn 0 strong_drink 0 020 @ 07884567 n 0000 + 00798491 a 0302 + 01171183 v 0302 + 01159217 a 0201 + 01159217 a 0202 ~ 07902336 n 0000 ~ 07902799 n 0000 ~ 07902937 n 0000 ~ 07903101 n 0000 ~ 07903208 n 0000 ~ 07904395 n 0000 ~ 07904934 n 0000 ~ 07905038 n 0000 ~ 07905474 n 0000 ~ 07905770 n 0000 ~ 07905979 n 0000 ~ 07906111 n 0000 ~ 07906284 n 0000 ~ 07907037 n 0000 ~ 07926127 n 0000 | an alcoholic beverage that is distilled rather than fermented -07902121 13 n 02 neutral_spirits 0 ethyl_alcohol 0 002 @ 07884567 n 0000 %s 14709265 n 0000 | nonflavored alcohol of 95 percent or 190 proof used for blending with straight whiskies and in making gin and liqueurs -07902336 13 n 02 aqua_vitae 0 ardent_spirits 0 001 @ 07901587 n 0000 | strong distilled liquor or brandy -07902443 13 n 01 eau_de_vie 0 001 @ 07903208 n 0000 | strong coarse brandy -07902520 13 n 03 moonshine 0 bootleg 0 corn_liquor 0 004 @ 07906877 n 0000 + 02242049 v 0201 + 01625985 v 0201 + 00228858 v 0101 | whiskey illegally distilled from a corn mash -07902698 13 n 01 bathtub_gin 0 001 @ 07904395 n 0000 | homemade gin especially that made illegally -07902799 13 n 02 aquavit 0 akvavit 0 002 @ 07901587 n 0000 %s 07827554 n 0000 | Scandinavian liquor usually flavored with caraway seeds -07902937 13 n 02 arrack 0 arak 0 001 @ 07901587 n 0000 | any of various strong liquors distilled from the fermented sap of toddy palms or from fermented molasses -07903101 13 n 01 bitters 0 001 @ 07901587 n 0000 | alcoholic liquor flavored with bitter herbs and roots -07903208 13 n 01 brandy 0 014 @ 07901587 n 0000 #s 07918309 n 0000 #s 07916582 n 0000 #s 07931096 n 0000 #s 07911061 n 0000 ~ 07902443 n 0000 ~ 07903543 n 0000 ~ 07903643 n 0000 ~ 07903731 n 0000 ~ 07903841 n 0000 ~ 07903962 n 0000 ~ 07904072 n 0000 ~ 07904190 n 0000 ~ 07904293 n 0000 | distilled from wine or fermented fruit juice -07903543 13 n 01 applejack 0 002 @ 07903208 n 0000 #s 07921615 n 0000 | distilled from hard cider -07903643 13 n 01 Calvados 0 001 @ 07903208 n 0000 | dry apple brandy made in Normandy -07903731 13 n 01 Armagnac 0 001 @ 07903208 n 0000 | dry brandy distilled in the Armagnac district of France -07903841 13 n 01 Cognac 0 001 @ 07903208 n 0000 | high quality grape brandy distilled in the Cognac district of France -07903962 13 n 01 grappa 0 001 @ 07903208 n 0000 | Italian brandy made from residue of grapes after pressing -07904072 13 n 01 kirsch 0 002 @ 07903208 n 0000 #s 07758260 n 0000 | from fermented juice of black morello cherries -07904190 13 n 01 marc 0 001 @ 07903208 n 0000 | made from residue of grapes or apples after pressing -07904293 13 n 01 slivovitz 0 001 @ 07903208 n 0000 | a colorless plum brandy popular in the Balkans -07904395 13 n 01 gin 0 009 @ 07901587 n 0000 #s 07915094 n 0000 #s 07916041 n 0000 #s 07916183 n 0000 #s 07916582 n 0000 %s 07827130 n 0000 ~ 07902698 n 0000 ~ 07904637 n 0000 ~ 07904760 n 0000 | strong liquor flavored with juniper berries -07904637 13 n 01 sloe_gin 0 002 @ 07904395 n 0000 %s 07752109 n 0000 | gin flavored with sloes (fruit of the blackthorn) -07904760 13 n 03 geneva 0 Holland_gin 0 Hollands 0 001 @ 07904395 n 0000 | gin made in the Netherlands -07904865 13 n 01 grog 0 001 @ 07905038 n 0000 | rum cut with water -07904934 13 n 01 ouzo 0 002 @ 07901587 n 0000 %s 07826653 n 0000 | a Greek liquor flavored with anise -07905038 13 n 01 rum 0 010 @ 07901587 n 0000 #s 07914413 n 0000 #s 07918706 n 0000 #s 07918879 n 0000 #s 07919055 n 0000 #s 07919165 n 0000 #s 07931452 n 0000 ~ 07904865 n 0000 ~ 07905296 n 0000 ~ 07905386 n 0000 | liquor distilled from fermented molasses -07905296 13 n 02 demerara 1 demerara_rum 0 001 @ 07905038 n 0000 | dark rum from Guyana -07905386 13 n 01 Jamaica_rum 0 001 @ 07905038 n 0000 | heavy pungent rum from Jamaica -07905474 13 n 02 schnapps 0 schnaps 0 001 @ 07901587 n 0000 | any of various strong liquors especially a Dutch spirit distilled from potatoes -07905618 13 n 01 pulque 0 002 @ 07884567 n 0000 #s 12477747 n 0000 | fermented Mexican drink from juice of various agave plants especially the maguey -07905770 13 n 01 mescal 0 002 @ 07901587 n 0000 #s 12477747 n 0000 | a colorless Mexican liquor distilled from fermented juices of certain desert plants of the genus Agavaceae (especially the century plant) -07905979 13 n 01 tequila 0 002 @ 07901587 n 0000 #s 12477983 n 0000 | Mexican liquor made from fermented juices of an agave plant -07906111 13 n 01 vodka 0 005 @ 07901587 n 0000 #s 07916319 n 0000 #s 07913393 n 0000 #s 07917272 n 0000 #s 07913644 n 0000 | unaged colorless liquor originating in Russia -07906284 13 n 02 whiskey 0 whisky 0 011 @ 07901587 n 0000 #s 07915618 n 0000 #s 07916437 n 0000 #s 07918193 n 0000 ~ 07906572 n 0000 ~ 07906718 n 0000 ~ 07906877 n 0000 ~ 07907161 n 0000 ~ 07907429 n 0000 ~ 07907548 n 0000 ~ 07907831 n 0000 | a liquor made from fermented mash of grain -07906572 13 n 02 blended_whiskey 0 blended_whisky 0 001 @ 07906284 n 0000 | mixture of two or more whiskeys or of a whiskey and neutral spirits -07906718 13 n 01 bourbon 0 002 @ 07906284 n 0000 #s 07915491 n 0000 | whiskey distilled from a mash of corn and malt and rye and aged in charred oak barrels -07906877 13 n 03 corn_whiskey 0 corn_whisky 0 corn 3 002 @ 07906284 n 0000 ~ 07902520 n 0000 | whiskey distilled from a mash of not less than 80 percent corn -07907037 13 n 01 firewater 0 002 @ 07901587 n 0000 ;u 07075172 n 0000 | any strong spirits (such as strong whisky or rum) -07907161 13 n 03 Irish 0 Irish_whiskey 0 Irish_whisky 0 004 @ 07906284 n 0000 #s 07919441 n 0000 + 03003744 a 0101 ~ 07907342 n 0000 | whiskey made in Ireland chiefly from barley -07907342 13 n 01 poteen 0 001 @ 07907161 n 0000 | unlawfully distilled Irish whiskey -07907429 13 n 03 rye 0 rye_whiskey 0 rye_whisky 0 001 @ 07906284 n 0000 | whiskey distilled from rye or rye and malt -07907548 13 n 07 Scotch 0 Scotch_whiskey 0 Scotch_whisky 0 malt_whiskey 0 malt_whisky 0 Scotch_malt_whiskey 0 Scotch_malt_whisky 0 003 @ 07906284 n 0000 #s 07915800 n 0000 ~ 07909593 n 0000 | whiskey distilled in Scotland; especially whiskey made from malted barley in a pot still -07907831 13 n 02 sour_mash 0 sour_mash_whiskey 0 001 @ 07906284 n 0000 | any whiskey distilled from sour mash -07907943 13 n 02 liqueur 0 cordial 0 020 @ 07884567 n 0000 ~ 07908411 n 0000 ~ 07908567 n 0000 ~ 07908647 n 0000 ~ 07908812 n 0000 ~ 07908923 n 0000 ~ 07909129 n 0000 ~ 07909231 n 0000 ~ 07909362 n 0000 ~ 07909504 n 0000 ~ 07909593 n 0000 ~ 07909714 n 0000 ~ 07909811 n 0000 ~ 07910245 n 0000 ~ 07910379 n 0000 ~ 07910538 n 0000 ~ 07910656 n 0000 ~ 07910799 n 0000 ~ 07911061 n 0000 ~ 07911249 n 0000 | strong highly flavored sweet liquor usually drunk after a meal -07908411 13 n 02 absinth 0 absinthe 0 003 @ 07907943 n 0000 %s 07826653 n 0000 %s 11929477 n 0000 | strong green liqueur flavored with wormwood and anise -07908567 13 n 01 amaretto 0 001 @ 07907943 n 0000 | an Italian almond liqueur -07908647 13 n 02 anisette 0 anisette_de_Bordeaux 0 002 @ 07907943 n 0000 %s 07826653 n 0000 | liquorice-flavored usually colorless sweet liqueur made from aniseed -07908812 13 n 01 benedictine 0 001 @ 07907943 n 0000 | a French liqueur originally made by Benedictine monks -07908923 13 n 01 Chartreuse 0 002 @ 07907943 n 0000 %s 12848770 n 0000 | aromatic green or yellow liqueur flavored with orange peel and hyssop and peppermint oils; made at monastery near Grenoble, France -07909129 13 n 01 coffee_liqueur 0 002 @ 07907943 n 0000 ~ 07910970 n 0000 | coffee-flavored liqueur -07909231 13 n 01 creme_de_cacao 0 002 @ 07907943 n 0000 %s 07754894 n 0000 | sweet liqueur flavored with vanilla and cacao beans -07909362 13 n 01 creme_de_menthe 0 003 @ 07907943 n 0000 #s 07915213 n 0000 #s 07918309 n 0000 | sweet green or white mint-flavored liqueur -07909504 13 n 01 creme_de_fraise 0 001 @ 07907943 n 0000 | strawberry-flavored liqueur -07909593 13 n 01 Drambuie 0 003 @ 07907548 n 0000 @ 07907943 n 0000 ;u 06851742 n 0000 | a sweet Scotch whisky liqueur -07909714 13 n 01 Galliano 0 001 @ 07907943 n 0000 | golden Italian liqueur flavored with herbs -07909811 13 n 01 orange_liqueur 0 004 @ 07907943 n 0000 ~ 07909954 n 0000 ~ 07910048 n 0000 ~ 07910152 n 0000 | liqueur flavored with orange -07909954 13 n 02 curacao 0 curacoa 0 001 @ 07909811 n 0000 | flavored with sour orange peel -07910048 13 n 01 triple_sec 0 001 @ 07909811 n 0000 | type of curacao having higher alcoholic content -07910152 13 n 01 Grand_Marnier 0 001 @ 07909811 n 0000 | an orange-flavored French liqueur -07910245 13 n 01 kummel 0 003 @ 07907943 n 0000 %s 07814634 n 0000 %s 07827554 n 0000 | liqueur flavored with caraway seed or cumin -07910379 13 n 02 maraschino 2 maraschino_liqueur 0 002 @ 07907943 n 0000 %s 12644283 n 0000 | distilled from fermented juice of bitter wild marasca cherries -07910538 13 n 01 pastis 0 002 @ 07907943 n 0000 %s 07826653 n 0000 | similar to absinthe but containing no wormwood -07910656 13 n 01 Pernod 0 003 @ 07907943 n 0000 ;u 06851742 n 0101 %s 07826653 n 0000 | (registered trademark) a liqueur flavored with anise -07910799 13 n 01 pousse-cafe 0 001 @ 07907943 n 0000 | small drink served after dinner (especially several liqueurs poured carefully so as to remain in separate layers) -07910970 13 n 01 Kahlua 0 001 @ 07909129 n 0000 | coffee-flavored liqueur made in Mexico -07911061 13 n 02 ratafia 1 ratafee 1 002 @ 07907943 n 0000 %s 07903208 n 0000 | sweet liqueur made from wine and brandy flavored with plum or peach or apricot kernels and bitter almonds -07911249 13 n 01 sambuca 0 001 @ 07907943 n 0000 | an Italian liqueur made with elderberries and flavored with licorice -07911371 13 n 01 mixed_drink 0 013 @ 07884567 n 0000 ~ 07911677 n 0000 ~ 07912093 n 0000 ~ 07912211 n 0000 %p 07913180 n 0000 ~ 07914777 n 0000 ~ 07914887 n 0000 ~ 07918706 n 0000 ~ 07918879 n 0000 ~ 07930315 n 0000 ~ 07930433 n 0000 ~ 07930554 n 0000 ~ 07932614 n 0000 | made of two or more ingredients -07911677 13 n 01 cocktail 0 020 @ 07911371 n 0000 ~ 07913393 n 0000 ~ 07913644 n 0000 ~ 07914413 n 0000 ~ 07914995 n 0000 ~ 07915213 n 0000 ~ 07915366 n 0000 ~ 07915618 n 0000 ~ 07915918 n 0000 ~ 07916041 n 0000 ~ 07916183 n 0000 ~ 07916437 n 0000 ~ 07916582 n 0000 ~ 07917133 n 0000 ~ 07917272 n 0000 ~ 07917392 n 0000 ~ 07918028 n 0000 ~ 07918309 n 0000 ~ 07931452 n 0000 ~ 07931612 n 0000 | a short mixed drink -07912093 13 n 01 Dom_Pedro 0 001 @ 07911371 n 0000 | South African mixed drink made by mixing ice cream with whisky -07912211 13 n 01 highball 0 008 @ 07911371 n 0000 ~ 07913774 n 0000 ~ 07913882 n 0000 ~ 07915094 n 0000 ~ 07915491 n 0000 ~ 07917507 n 0000 ~ 07917618 n 0000 ~ 07919165 n 0000 | a mixed drink made of alcoholic liquor mixed with water or a carbonated beverage and served in a tall glass -07912499 13 n 01 eye_opener 0 001 @ 07885223 n 0000 | an alcoholic drink intended to wake one up early in the morning -07912619 13 n 01 nightcap 0 001 @ 07885223 n 0000 | an alcoholic drink taken at bedtime; often alcoholic -07912726 13 n 01 hair_of_the_dog 0 001 @ 07885223 n 0000 | an alcoholic drink supposed to cure a hangover -07912834 13 n 02 shandygaff 0 shandy 0 001 @ 07885223 n 0000 | a drink made of beer and lemonade -07912933 13 n 01 stirrup_cup 0 001 @ 07885223 n 0000 | a farewell drink (especially one offered to a horseman ready to depart); usually alcoholic -07913081 13 n 01 sundowner 0 002 @ 07885223 n 0000 ;r 08860123 n 0000 | a drink taken at sundown -07913180 13 n 01 mixer 0 002 @ 07881800 n 0000 #p 07911371 n 0000 | club soda or fruit juice used to mix with alcohol -07913300 13 n 01 bishop 0 001 @ 07926920 n 0000 | port wine mulled with oranges and cloves -07913393 13 n 01 Bloody_Mary 0 003 @ 07911677 n 0000 %s 07906111 n 0000 ~ 07913537 n 0000 | a cocktail made with vodka and spicy tomato juice -07913537 13 n 02 Virgin_Mary 0 bloody_shame 0 001 @ 07913393 n 0000 | a Bloody Mary made without alcohol -07913644 13 n 01 bullshot 0 002 @ 07911677 n 0000 %s 07906111 n 0000 | a cocktail made with vodka and beef bouillon or consomme -07913774 13 n 01 cobbler 2 001 @ 07912211 n 0000 | tall sweetened iced drink of wine or liquor with fruit -07913882 13 n 02 collins 0 Tom_Collins 0 001 @ 07912211 n 0000 | tall iced drink of liquor (usually gin) with fruit juice -07914006 13 n 01 cooler 0 002 @ 07881800 n 0000 + 00370412 v 0101 | an iced drink especially white wine and fruit juice -07914128 13 n 01 refresher 0 002 @ 07881800 n 0000 + 00164444 v 0101 | a drink that refreshes; "he stopped at the bar for a quick refresher" -07914271 13 n 01 smoothie 0 001 @ 07881800 n 0000 | a thick smooth drink consisting of fresh fruit pureed with ice cream or yoghurt or milk -07914413 13 n 02 daiquiri 0 rum_cocktail 0 004 @ 07911677 n 0000 %s 07905038 n 0000 ~ 07914586 n 0000 ~ 07914686 n 0000 | a cocktail made with rum and lime or lemon juice -07914586 13 n 01 strawberry_daiquiri 0 001 @ 07914413 n 0000 | daiquiri with crushed strawberries -07914686 13 n 01 NADA_daiquiri 0 001 @ 07914413 n 0000 | a daiquiri made without alcohol -07914777 13 n 01 spritzer 0 001 @ 07911371 n 0000 | a mixed drink made of wine mixed with a sparkling water -07914887 13 n 01 flip 0 001 @ 07911371 n 0000 | hot or cold alcoholic mixed drink containing a beaten egg -07914995 13 n 01 gimlet 0 001 @ 07911677 n 0000 | a cocktail made of gin or vodka and lime juice -07915094 13 n 01 gin_and_tonic 0 003 @ 07912211 n 0000 %s 07904395 n 0000 %s 07929172 n 0000 | gin and quinine water -07915213 13 n 01 grasshopper 0 002 @ 07911677 n 0000 %s 07909362 n 0000 | a cocktail made of creme de menthe and cream (sometimes with creme de cacao) -07915366 13 n 01 Harvey_Wallbanger 0 001 @ 07911677 n 0000 | a cocktail made of vodka or gin and orange juice and Galliano -07915491 13 n 02 julep 0 mint_julep 0 002 @ 07912211 n 0000 %s 07906718 n 0000 | bourbon and sugar and mint over crushed ice -07915618 13 n 01 manhattan 0 004 @ 07911677 n 0000 %s 07899292 n 0000 %s 07906284 n 0000 ~ 07915800 n 0000 | a cocktail made with whiskey and sweet vermouth with a dash of bitters -07915800 13 n 01 Rob_Roy 0 002 @ 07915618 n 0000 %s 07907548 n 0000 | a manhattan cocktail made with Scotch whiskey -07915918 13 n 01 margarita 0 001 @ 07911677 n 0000 | a cocktail made of tequila and triple sec with lime and lemon juice -07916041 13 n 01 martini 0 003 @ 07911677 n 0000 %s 07904395 n 0000 ~ 07916319 n 0000 | a cocktail made of gin (or vodka) with dry vermouth -07916183 13 n 01 gin_and_it 0 003 @ 07911677 n 0000 %s 07899292 n 0000 %s 07904395 n 0000 | a cocktail made of gin and sweet vermouth -07916319 13 n 01 vodka_martini 0 002 @ 07916041 n 0000 %s 07906111 n 0000 | martini made with vodka rather than gin -07916437 13 n 01 old_fashioned 0 002 @ 07911677 n 0000 %s 07906284 n 0000 | a cocktail made of whiskey and bitters and sugar with fruit slices -07916582 13 n 01 pink_lady 0 003 @ 07911677 n 0000 %s 07903208 n 0000 %s 07904395 n 0000 | a cocktail made of gin and brandy with lemon juice and grenadine shaken with an egg white and ice -07916773 13 n 01 posset 0 001 @ 07885223 n 0000 | sweet spiced hot milk curdled with ale or beer -07916872 13 n 02 syllabub 2 sillabub 2 001 @ 07885223 n 0000 | spiced hot milk with rum or wine -07916970 13 n 02 sangaree 0 sangria 0 003 @ 07885223 n 0000 ;r 09023321 n 0000 %s 07892512 n 0000 | sweetened red wine and orange or lemon juice with soda water -07917133 13 n 01 Sazerac 0 001 @ 07911677 n 0000 | a cocktail made with bourbon with bitters and Pernod and sugar served with lemon peel -07917272 13 n 01 screwdriver 0 002 @ 07911677 n 0000 %s 07906111 n 0000 | a cocktail made with vodka and orange juice -07917392 13 n 01 sidecar 0 001 @ 07911677 n 0000 | a cocktail made of orange liqueur with lemon juice and brandy -07917507 13 n 01 Scotch_and_soda 0 001 @ 07912211 n 0000 | a highball with Scotch malt whiskey and club soda -07917618 13 n 01 sling 0 004 @ 07912211 n 0000 ~ 07917791 n 0000 ~ 07917874 n 0000 ~ 07917951 n 0000 | a highball with liquor and water with sugar and lemon or lime juice -07917791 13 n 01 brandy_sling 0 001 @ 07917618 n 0000 | a sling made with brandy -07917874 13 n 01 gin_sling 0 001 @ 07917618 n 0000 | a sling made with gin -07917951 13 n 01 rum_sling 0 001 @ 07917618 n 0000 | a sling made with rum -07918028 13 n 01 sour 0 002 @ 07911677 n 0000 ~ 07918193 n 0000 | a cocktail made of a liquor (especially whiskey or gin) mixed with lemon or lime juice and sugar -07918193 13 n 02 whiskey_sour 0 whisky_sour 0 002 @ 07918028 n 0000 %s 07906284 n 0000 | a sour made with whiskey -07918309 13 n 01 stinger 0 003 @ 07911677 n 0000 %s 07903208 n 0000 %s 07909362 n 0000 | a cocktail made of made of creme de menthe and brandy -07918454 13 n 02 whiskey_neat 0 whisky_neat 0 001 @ 07885223 n 0000 | a drink consisting of whiskey without a mixer; "he ordered a whiskey neat" -07918601 13 n 02 whiskey_on_the_rocks 0 whisky_on_the_rocks 0 001 @ 07885223 n 0000 | whiskey with ice -07918706 13 n 01 swizzle 0 002 @ 07911371 n 0000 %s 07905038 n 0000 | any of various tall frothy mixed drinks made usually of rum and lime juice and sugar shaken with ice -07918879 13 n 02 hot_toddy 0 toddy 0 003 @ 07911371 n 0000 %s 07905038 n 0000 ~ 07919055 n 0000 | a mixed drink made of liquor and water with sugar and spices and served hot -07919055 13 n 01 Tom_and_Jerry 0 002 @ 07918879 n 0000 %s 07905038 n 0000 | hot rum toddy with a beaten egg -07919165 13 n 02 zombie 0 zombi 0 002 @ 07912211 n 0000 %s 07905038 n 0000 | several kinds of rum with fruit juice and usually apricot liqueur -07919310 13 n 01 fizz 0 003 @ 07881800 n 0000 + 02276752 a 0102 + 00519363 v 0103 | an effervescent beverage (usually alcoholic) -07919441 13 n 01 Irish_coffee 0 002 @ 07929519 n 0000 %s 07907161 n 0000 | sweetened coffee with Irish whiskey and whipped cream -07919572 13 n 01 cafe_au_lait 0 001 @ 07929519 n 0000 | equal parts of coffee and hot milk -07919665 13 n 02 cafe_noir 0 demitasse 0 001 @ 07929519 n 0000 | small cup of strong black coffee without milk or cream -07919787 13 n 02 decaffeinated_coffee 0 decaf 0 001 @ 07929519 n 0000 | coffee with the caffeine removed -07919894 13 n 01 drip_coffee 0 001 @ 07929519 n 0000 | coffee made by passing boiling water through a perforated container packed with finely ground coffee -07920052 13 n 01 espresso 0 002 @ 07929519 n 0000 ~ 07920222 n 0000 | strong black coffee brewed by forcing hot water under pressure through finely ground coffee beans -07920222 13 n 02 caffe_latte 0 latte 0 001 @ 07920052 n 0000 | strong espresso coffee with a topping of frothed steamed milk -07920349 13 n 03 cappuccino 0 cappuccino_coffee 0 coffee_cappuccino 0 001 @ 07929519 n 0000 | equal parts of espresso and hot milk topped with cinnamon and nutmeg and usually whipped cream -07920540 13 n 02 iced_coffee 0 ice_coffee 0 001 @ 07929519 n 0000 | a strong sweetened coffee served over ice with cream -07920663 13 n 01 instant_coffee 0 001 @ 07929519 n 0000 | dehydrated coffee that can be made into a drink by adding hot water; "the advantages of instant coffee are speed of preparation and long shelf life" -07920872 13 n 02 mocha 1 mocha_coffee 0 001 @ 07929519 n 0000 | a superior dark coffee made from beans from Arabia -07920989 13 n 01 mocha 2 001 @ 07809368 n 0000 | a flavoring made from coffee mixed with chocolate -07921090 13 n 01 cassareep 0 001 @ 07809368 n 0000 | a flavoring made by boiling down the juice of the bitter cassava; used in West Indian cooking -07921239 13 n 01 Turkish_coffee 0 001 @ 07929519 n 0000 | a drink made from pulverized coffee beans; usually sweetened -07921360 13 n 01 chocolate_milk 0 001 @ 07844042 n 0000 | milk flavored with chocolate syrup -07921455 13 n 02 cider 0 cyder 0 004 @ 07881800 n 0000 ~ 07921615 n 0000 ~ 07921834 n 0000 ~ 07921948 n 0000 | a beverage made from juice pressed from apples -07921615 13 n 01 hard_cider 0 003 @ 07921455 n 0000 @ 07884567 n 0000 %s 07903543 n 0000 | alcoholic drink from fermented cider; `cider' and `cyder' are European (especially British) usages for the fermented beverage -07921834 13 n 01 scrumpy 0 002 @ 07921455 n 0000 ;r 08860123 n 0000 | strong cider (as made in western England) -07921948 13 n 01 sweet_cider 0 002 @ 07921455 n 0000 ~ 07922041 n 0000 | unfermented cider -07922041 13 n 01 mulled_cider 0 001 @ 07921948 n 0000 | sweet cider heated with spices and citrus fruit -07922147 13 n 01 perry 0 001 @ 07884567 n 0000 | a fermented and often effervescent beverage made from juice of pears; similar in taste to hard cider -07922299 13 n 01 pruno 0 001 @ 07886176 n 0000 | a liquor concocted from a mixture of ingredients (such as prunes and raisins and milk and sugar) that can be fermented to produce alcohol; made by prison inmates -07922512 13 n 01 rotgut 0 001 @ 07884567 n 0000 | any alcoholic beverage of inferior quality -07922607 13 n 01 slug 0 001 @ 07884567 n 0000 | an amount of an alcoholic drink (usually liquor) that is poured or gulped; "he took a slug of hard liquor" -07922764 13 n 04 cocoa 2 chocolate 2 hot_chocolate 0 drinking_chocolate 0 002 @ 07881800 n 0000 %s 07755089 n 0000 | a beverage made from cocoa powder and milk and sugar; usually drunk hot -07922955 13 n 01 criollo 0 001 @ 07755089 n 0000 | cocoa of superior quality -07923034 13 n 03 ice-cream_soda 0 ice-cream_float 0 float 0 002 @ 07885223 n 0000 ~ 07923176 n 0000 | a drink with ice cream floating in it -07923176 13 n 01 root_beer_float 0 001 @ 07923034 n 0000 | an ice-cream soda made with ice cream floating in root beer -07923297 13 n 03 milkshake 0 milk_shake 0 shake 0 004 @ 07885223 n 0000 ~ 07923495 n 0000 ~ 07923576 n 0000 ~ 07926642 n 0000 | frothy drink of milk and flavoring and sometimes fruit or ice cream -07923495 13 n 01 eggshake 0 001 @ 07923297 n 0000 | a milkshake with egg in it -07923576 13 n 01 frappe 2 001 @ 07923297 n 0000 | thick milkshake containing ice cream -07923665 13 n 01 frappe 3 001 @ 07885223 n 0000 | liqueur poured over shaved ice -07923748 13 n 01 juice 0 009 @ 07566340 n 0000 + 01368793 a 0101 ~ 07837912 n 0000 ~ 07925229 n 0000 ~ 07925327 n 0000 ~ 07925423 n 0000 ~ 07925500 n 0000 ~ 07925608 n 0000 ~ 07925708 n 0000 | the liquid part that can be extracted from plant or animal tissue by squeezing or cooking -07924033 13 n 02 fruit_juice 0 fruit_crush 0 008 @ 07881800 n 0000 ~ 07924276 n 0000 ~ 07924366 n 0000 ~ 07924443 n 0000 ~ 07924560 n 0000 ~ 07924747 n 0000 ~ 07924834 n 0000 ~ 07925116 n 0000 | drink produced by squeezing or crushing fruit -07924276 13 n 01 nectar 2 001 @ 07924033 n 0000 | fruit juice especially when undiluted -07924366 13 n 01 apple_juice 0 001 @ 07924033 n 0000 | the juice of apples -07924443 13 n 01 cranberry_juice 0 001 @ 07924033 n 0000 | the juice of cranberries (always diluted and sweetened) -07924560 13 n 01 grape_juice 0 002 @ 07924033 n 0000 ~ 07924655 n 0000 | the juice of grapes -07924655 13 n 01 must 0 001 @ 07924560 n 0000 | grape juice before or during fermentation -07924747 13 n 01 grapefruit_juice 0 001 @ 07924033 n 0000 | the juice of grapefruits -07924834 13 n 01 orange_juice 0 002 @ 07924033 n 0000 ~ 07924955 n 0000 | bottled or freshly squeezed juice of oranges -07924955 13 n 02 frozen_orange_juice 0 orange-juice_concentrate 0 002 @ 07924834 n 0000 @ 07567390 n 0000 | orange juice that has been concentrated and frozen -07925116 13 n 01 pineapple_juice 0 001 @ 07924033 n 0000 | the juice of pineapples (usually bottled or canned) -07925229 13 n 01 lemon_juice 0 001 @ 07923748 n 0000 | usually freshly squeezed juice of lemons -07925327 13 n 01 lime_juice 0 001 @ 07923748 n 0000 | usually freshly squeezed juice of limes -07925423 13 n 01 papaya_juice 0 001 @ 07923748 n 0000 | juice from papayas -07925500 13 n 01 tomato_juice 0 001 @ 07923748 n 0000 | the juice of tomatoes (usually bottled or canned) -07925608 13 n 01 carrot_juice 0 001 @ 07923748 n 0000 | usually freshly squeezed juice of carrots -07925708 13 n 01 V-8_juice 0 001 @ 07923748 n 0000 | brand name for canned mixed vegetable juices -07925808 13 n 02 koumiss 0 kumis 0 001 @ 07884567 n 0000 | an alcoholic beverage made from fermented mare's milk; made originally by nomads of central Asia -07925966 13 n 02 fruit_drink 0 ade 0 004 @ 07881800 n 0000 ~ 07926250 n 0000 ~ 07926346 n 0000 ~ 07926442 n 0000 | a sweetened beverage of diluted fruit juice -07926127 13 n 01 lacing 0 002 @ 07901587 n 0000 + 00222135 v 0102 | a small amount of liquor added to a food or beverage -07926250 13 n 01 lemonade 0 001 @ 07925966 n 0000 | sweetened beverage of diluted lemon juice -07926346 13 n 01 limeade 0 001 @ 07925966 n 0000 | sweetened beverage of lime juice and water -07926442 13 n 01 orangeade 0 001 @ 07925966 n 0000 | sweetened beverage of diluted orange juice -07926540 13 n 01 malted_milk 1 001 @ 07809096 n 0000 | powder made of dried milk and malted cereals -07926642 13 n 03 malted 0 malt 3 malted_milk 2 003 @ 07923297 n 0000 + 10286855 n 0201 + 00186001 v 0201 | a milkshake made with malt powder -07926785 13 n 01 mate 0 001 @ 07881800 n 0000 | South American tea-like drink made from leaves of a South American holly called mate -07926920 13 n 01 mulled_wine 0 003 @ 07891726 n 0000 ~ 07913300 n 0000 ~ 07927070 n 0000 | wine heated with sugar and spices and often citrus fruit -07927070 13 n 01 negus 0 002 @ 07926920 n 0000 %s 07891726 n 0000 | wine and hot water with sugar and lemon juice and nutmeg -07927197 13 n 01 soft_drink 0 013 @ 07881800 n 0000 ~ 07927512 n 0000 ~ 07927716 n 0000 ~ 07927836 n 0000 ~ 07927931 n 0000 ~ 07928163 n 0000 ~ 07928264 n 0000 ~ 07928367 n 0000 ~ 07928488 n 0000 ~ 07928578 n 0000 ~ 07928887 n 0000 ~ 07928998 n 0000 ~ 07929172 n 0000 | nonalcoholic beverage (usually carbonated) -07927512 13 n 05 pop 0 soda 0 soda_pop 0 soda_water 2 tonic 1 002 @ 07927197 n 0000 %s 07936548 n 0000 | a sweet drink containing carbonated water and flavoring; "in New England they call sodas tonics" -07927716 13 n 01 birch_beer 0 001 @ 07927197 n 0000 | carbonated drink containing an extract from bark of birch trees -07927836 13 n 01 bitter_lemon 0 001 @ 07927197 n 0000 | tart lemon-flavored carbonated drink -07927931 13 n 02 cola 0 dope 0 005 @ 07927197 n 0000 ;r 09044862 n 0000 ~ 07928696 n 0000 ~ 07928790 n 0000 %s 12197601 n 0000 | carbonated drink flavored with extract from kola nuts (`dope' is a southernism in the United States) -07928163 13 n 01 cream_soda 0 001 @ 07927197 n 0000 | sweet carbonated drink flavored with vanilla -07928264 13 n 01 egg_cream 0 001 @ 07927197 n 0000 | made of milk and flavored syrup with soda water -07928367 13 n 02 ginger_ale 0 ginger_pop 0 002 @ 07927197 n 0000 %s 07814925 n 0000 | ginger-flavored carbonated drink -07928488 13 n 01 orange_soda 0 001 @ 07927197 n 0000 | orange-flavored carbonated drink -07928578 13 n 01 phosphate 0 001 @ 07927197 n 0000 | carbonated drink with fruit syrup and a little phosphoric acid -07928696 13 n 02 Coca_Cola 0 Coke 0 001 @ 07927931 n 0000 | Coca Cola is a trademarked cola -07928790 13 n 02 Pepsi 0 Pepsi_Cola 0 001 @ 07927931 n 0000 | Pepsi Cola is a trademarked cola -07928887 13 n 01 root_beer 0 001 @ 07927197 n 0000 | carbonated drink containing extracts of roots and herbs -07928998 13 n 01 sarsaparilla 0 002 @ 07927197 n 0000 %s 12470329 n 0000 | carbonated drink flavored with an extract from sarsaparilla root or with birch oil and sassafras -07929172 13 n 03 tonic 2 tonic_water 0 quinine_water 0 003 @ 07927197 n 0000 #s 07915094 n 0000 %s 04035086 n 0000 | lime- or lemon-flavored carbonated water containing quinine -07929351 13 n 03 coffee_bean 0 coffee_berry 0 coffee 1 003 @ 13135832 n 0000 #p 12662772 n 0000 #s 07929519 n 0000 | a seed of the coffee tree; ground to make coffee -07929519 13 n 02 coffee 0 java 0 016 @ 07881800 n 0000 ~ 07731122 n 0000 ~ 07919441 n 0000 ~ 07919572 n 0000 ~ 07919665 n 0000 ~ 07919787 n 0000 ~ 07919894 n 0000 ~ 07920052 n 0000 ~ 07920349 n 0000 ~ 07920540 n 0000 ~ 07920663 n 0000 ~ 07920872 n 0000 ~ 07921239 n 0000 %s 07929351 n 0000 ~ 07929940 n 0000 %s 14761122 n 0000 | a beverage consisting of an infusion of ground coffee beans; "he ordered a cup of coffee" -07929940 13 n 02 cafe_royale 0 coffee_royal 0 001 @ 07929519 n 0000 | black coffee with Cognac and lemon peel and sugar -07930062 13 n 01 fruit_punch 0 001 @ 07930554 n 0000 | a punch made of fruit juices mixed with water or soda water (with or without alcohol) -07930205 13 n 01 milk_punch 0 001 @ 07930554 n 0000 | a punch made of spirits and milk and sugar and spices -07930315 13 n 02 mimosa 0 buck's_fizz 0 001 @ 07911371 n 0000 | a mixed drink containing champagne and orange juice -07930433 13 n 01 pina_colada 0 001 @ 07911371 n 0000 | a mixed drink made of pineapple juice and coconut cream and rum -07930554 13 n 01 punch 0 009 @ 07911371 n 0000 ~ 07930062 n 0000 ~ 07930205 n 0000 ~ 07930864 n 0000 ~ 07931280 n 0000 ~ 07931733 n 0000 ~ 07931870 n 0000 ~ 07932039 n 0000 ~ 07932176 n 0000 | an iced mixed drink usually containing alcohol and prepared for multiple servings; normally served in a punch bowl -07930864 13 n 01 cup 0 003 @ 07930554 n 0000 ~ 07931001 n 0000 ~ 07931096 n 0000 | a punch served in a pitcher instead of a punch bowl -07931001 13 n 01 champagne_cup 0 001 @ 07930864 n 0000 | a punch containing a sparkling wine -07931096 13 n 01 claret_cup 0 002 @ 07930864 n 0000 %s 07903208 n 0000 | a punch made of claret and brandy with lemon juice and sugar and sometimes sherry or curacao and fresh fruit -07931280 13 n 01 wassail 0 002 @ 07930554 n 0000 + 01175467 v 0105 | a punch made of sweetened ale or wine heated with spices and roasted apples; especially at Christmas -07931452 13 n 01 planter's_punch 0 002 @ 07911677 n 0000 %s 07905038 n 0000 | a cocktail made of rum and lime or lemon juice with sugar and sometimes bitters -07931612 13 n 01 White_Russian 0 001 @ 07911677 n 0000 | a cocktail made with vodka, coffee liqueur, and milk or cream -07931733 13 n 01 fish_house_punch 0 001 @ 07930554 n 0000 | a punch made of rum and brandy and water or tea sweetened with sugar syrup -07931870 13 n 01 May_wine 0 002 @ 07930554 n 0000 %s 12665271 n 0000 | a punch made of Moselle and sugar and sparkling water or champagne flavored with sweet woodruff -07932039 13 n 01 eggnog 0 001 @ 07930554 n 0000 | a punch made of sweetened milk or cream mixed with eggs and usually alcoholic liquor -07932176 13 n 01 glogg 0 001 @ 07930554 n 0000 | Scandinavian punch made of claret and aquavit with spices and raisins and orange peel and sugar -07932323 13 n 01 cassiri 0 002 @ 07886572 n 0000 #s 12926689 n 0000 | a drink resembling beer; made from fermented cassava juice -07932454 13 n 01 spruce_beer 0 001 @ 07886572 n 0000 | a brew made by fermenting molasses and other sugars with the sap of spruce trees (sometimes with malt) -07932614 13 n 01 rickey 0 002 @ 07911371 n 0000 ~ 07932762 n 0000 | a mixed drink made of sweetened lime juice and soda water usually with liquor -07932762 13 n 01 gin_rickey 0 001 @ 07932614 n 0000 | a rickey made with gin -07932841 13 n 02 tea 2 tea_leaf 0 007 @ 07811416 n 0000 #s 07933274 n 0000 #p 12929783 n 0000 ~ 07933154 n 0000 ~ 07934530 n 0000 ~ 07935152 n 0000 ~ 07935379 n 0000 | dried leaves of the tea shrub; used to make tea; "the store shelves held many different kinds of tea"; "they threw the tea into Boston harbor" -07933154 13 n 01 tea_bag 0 001 @ 07932841 n 0000 | a measured amount of tea in a bag for an individual serving of tea -07933274 13 n 01 tea 0 008 @ 07881800 n 0000 %s 07932841 n 0000 ~ 07933652 n 0000 ~ 07933799 n 0000 ~ 07933891 n 0000 ~ 07934282 n 0000 ~ 07934373 n 0000 %s 14761122 n 0000 | a beverage made by steeping tea leaves in water; "iced tea is a cooling drink" -07933530 13 n 01 tea-like_drink 0 001 @ 07881800 n 0000 | a beverage that resembles tea but is not made from tea leaves -07933652 13 n 01 cambric_tea 0 001 @ 07933274 n 0000 | a beverage for children containing hot water and milk and sugar and a small amount of tea -07933799 13 n 02 cuppa 0 cupper 0 002 @ 07933274 n 0000 ;r 08860123 n 0000 | a cup of tea -07933891 13 n 03 herb_tea 0 herbal_tea 0 herbal 0 002 @ 07933274 n 0000 ~ 07934032 n 0000 | tea-like drink made of leaves of various herbs -07934032 13 n 01 tisane 0 002 @ 07933891 n 0000 ~ 07934152 n 0000 | infusion of e.g. dried or fresh flowers or leaves -07934152 13 n 01 camomile_tea 0 002 @ 07934032 n 0000 %s 11949402 n 0000 | tea-like drink made from camomile leaves and flowers -07934282 13 n 02 ice_tea 0 iced_tea 0 001 @ 07933274 n 0000 | strong tea served over ice -07934373 13 n 01 sun_tea 0 001 @ 07933274 n 0000 | tea made by exposing tea leaves steeped in water to the direct rays of the sun; usually served with ice -07934530 13 n 01 black_tea 0 005 @ 07932841 n 0000 ~ 07934678 n 0000 ~ 07934800 n 0000 ~ 07934908 n 0000 ~ 07935043 n 0000 | fermented tea leaves -07934678 13 n 04 congou 0 congo 0 congou_tea 0 English_breakfast_tea 0 001 @ 07934530 n 0000 | black tea grown in China -07934800 13 n 01 Darjeeling 0 001 @ 07934530 n 0000 | a fine variety of black tea grown in northern India -07934908 13 n 02 orange_pekoe 0 pekoe 0 001 @ 07934530 n 0000 | a superior grade of black tea; grown in India and Sri Lanka and Java -07935043 13 n 02 souchong 0 soochong 0 001 @ 07934530 n 0000 | a fine quality of black tea native to China -07935152 13 n 01 green_tea 0 002 @ 07932841 n 0000 ~ 07935288 n 0000 | tea leaves that have been steamed and dried without fermenting -07935288 13 n 01 hyson 0 001 @ 07935152 n 0000 | a Chinese green tea with twisted leaves -07935379 13 n 01 oolong 0 001 @ 07932841 n 0000 | Chinese tea leaves that have been partially fermented before being dried -07935504 13 n 01 water 0 006 @ 14940386 n 0000 @ 00021265 n 0000 @ 00021734 n 0000 ~ 07935878 n 0000 ~ 07936015 n 0000 ~ 07936263 n 0000 | a liquid necessary for the life of most animals and plants; "he asked for a drink of water" -07935737 13 n 01 bottled_water 0 001 @ 07936263 n 0000 | drinking water (often spring water) that is put into bottles and offered for sale -07935878 13 n 01 branch_water 0 001 @ 07935504 n 0000 | pure natural water from a stream or brook; often distinguished from soda water -07936015 13 n 01 spring_water 0 001 @ 07935504 n 0000 | water from a spring -07936093 13 n 01 sugar_water 0 001 @ 07936263 n 0000 | water sweetened with sugar -07936177 13 n 01 tap_water 0 001 @ 14845743 n 0000 | water directly from the spigot -07936263 13 n 01 drinking_water 0 007 @ 07881800 n 0000 @ 07935504 n 0000 ~ 07935737 n 0000 ~ 07936093 n 0000 ~ 07936459 n 0000 ~ 07936548 n 0000 ~ 07936745 n 0000 | water suitable for drinking -07936459 13 n 01 ice_water 0 001 @ 07936263 n 0000 | water served ice-cold or with ice -07936548 13 n 05 soda_water 0 carbonated_water 0 club_soda 0 seltzer 2 sparkling_water 0 002 @ 07936263 n 0000 #s 07927512 n 0000 | effervescent beverage artificially charged with carbon dioxide -07936745 13 n 01 mineral_water 1 004 @ 07936263 n 0000 ~ 07936979 n 0000 ~ 07937069 n 0000 ~ 14941787 n 0000 | water naturally or artificially impregnated with mineral salts or gasses; often effervescent; often used therapeutically -07936979 13 n 01 seltzer 1 001 @ 07936745 n 0000 | naturally effervescent mineral water -07937069 13 n 01 Vichy_water 1 001 @ 07936745 n 0000 | sparkling mineral water from springs at Vichy, France or water similar to it -07937203 13 n 01 brine 0 003 @ 14589223 n 0000 + 01074062 a 0102 + 00216561 v 0101 | a strong solution of salt and water used for pickling -07937344 13 n 02 perishable 0 spoilable 0 001 @ 07566340 n 0000 | food that will decay rapidly if not refrigerated -07937461 13 n 01 couscous 1 001 @ 07557434 n 0000 | a spicy dish that originated in northern Africa; consists of pasta steamed with a meat and vegetable stew -07937621 13 n 02 ramekin 0 ramequin 0 001 @ 07557434 n 0000 | a cheese dish made with egg and bread crumbs that is baked and served in individual fireproof dishes -07937786 13 n 03 rugulah 0 rugelach 0 ruggelach 0 001 @ 07622708 n 0000 | pastry made with a cream cheese dough and different fillings (as raisins and walnuts and cinnamon or chocolate and walnut and apricot preserves) -07938007 13 n 02 multivitamin 0 multivitamin_pill 0 002 @ 07938149 n 0000 %s 15089258 n 0000 | a pill or tablet containing several vitamins -07938149 13 n 01 vitamin_pill 0 003 @ 07562495 n 0000 @ 03936764 n 0000 ~ 07938007 n 0000 | a pill containing one or more vitamins; taken as a dietary supplement -07938313 13 n 01 soul_food 0 001 @ 00021265 n 0000 | food traditionally eaten by African-Americans in the South -07938427 13 n 01 slop 1 001 @ 07555863 n 0000 | (usually plural) weak or watery unappetizing food or drink; "he lived on the thin slops that food kitchens provided" -07938594 13 n 02 mold 0 mould 0 002 @ 07557434 n 0000 @ 07609840 n 0000 | a dish or dessert that is formed in or on a mold; "a lobster mold"; "a gelatin dessert made in a mold" -07938773 14 n 01 arrangement 0 013 @ 00031264 n 0000 + 00038849 v 0102 ~ 03368141 n 0000 ~ 03644248 n 0000 ~ 04141423 n 0000 ~ 07939382 n 0000 ~ 07939638 n 0000 ~ 07947069 n 0000 ~ 08372715 n 0000 ~ 08373244 n 0000 ~ 08373380 n 0000 ~ 08426461 n 0000 ~ 08456993 n 0000 | an orderly grouping (of things or persons) considered as a unit; the result of arranging; "a flower arrangement" -07939159 14 n 01 straggle 0 004 @ 00031264 n 0000 + 02426679 a 0104 + 02032227 v 0102 + 02066304 v 0104 | a wandering or disorderly grouping (of things or persons); "a straggle of outbuildings"; "a straggle of followers" -07939382 14 n 01 array 0 009 @ 07938773 n 0000 + 01474209 v 0102 ~ 08266235 n 0000 ~ 08267640 n 0000 ~ 08433447 n 0000 ~ 08433575 n 0000 ~ 08461981 n 0000 ~ 08462066 n 0000 ~ 11420831 n 0000 | an orderly arrangement; "an array of troops in battle order" -07939638 14 n 03 classification 0 categorization 0 categorisation 0 006 @ 07938773 n 0000 + 00657260 v 0201 + 00739662 v 0102 + 00654625 v 0101 ~ 07939880 n 0000 ~ 07940121 n 0000 | a group of people or things arranged by class or category -07939880 14 n 02 dichotomy 0 duality 0 004 @ 07939638 n 0000 + 02217452 a 0202 + 02480861 a 0101 + 00656107 v 0101 | being twofold; a classification into two opposed parts or subclasses; "the dichotomy between eastern and western culture" -07940121 14 n 01 trichotomy 0 001 @ 07939638 n 0000 | being threefold; a classification into three parts or subclasses -07940242 14 n 02 clone 0 clon 0 002 @ 00004475 n 0000 + 01694984 v 0101 | a group of genetically identical cells or organisms derived from a single cell or individual by some kind of asexual reproduction -07940448 14 n 01 kingdom 0 002 @ 00031264 n 0000 ~ 07941045 n 0000 | a basic group of natural objects -07940552 14 n 01 kingdom 2 007 @ 07992450 n 0000 ~ 01313093 n 0000 ~ 01341876 n 0000 ~ 01386494 n 0000 %m 08102555 n 0000 ~ 11529603 n 0000 ~ 12992464 n 0000 | the highest taxonomic group into which organisms are grouped; one of five biological categories: Monera or Protoctista or Plantae or Fungi or Animalia -07940865 14 n 01 subkingdom 0 004 @ 07992450 n 0000 ;c 06037666 n 0000 ~ 01906328 n 0000 ~ 01908703 n 0000 | (biology) a taxonomic group comprising a major division of a kingdom -07941045 14 n 01 mineral_kingdom 0 001 @ 07940448 n 0000 | all inorganic objects; contrasts with animal and plant kingdoms -07941170 14 n 01 biological_group 0 009 @ 00031264 n 0000 ~ 07941405 n 0000 ~ 07992308 n 0000 ~ 07992450 n 0000 ~ 07993929 n 0000 ~ 07995856 n 0000 ~ 08221348 n 0000 ~ 08368907 n 0000 ~ 08369220 n 0000 | a group of plants or animals -07941405 14 n 01 genotype 0 004 @ 07941170 n 0000 + 02942542 a 0102 + 02942542 a 0101 ~ 07941574 n 0000 | a group of organisms sharing a specific genetic constitution -07941574 14 n 01 biotype 0 002 @ 07941405 n 0000 + 02666852 a 0101 | organisms sharing a specified genotype or the genotype (or peculiarities) so shared -07941729 14 n 02 community 2 biotic_community 0 003 @ 00031264 n 0000 ;c 06070929 n 0000 ~ 07941945 n 0000 | (ecology) a group of interdependent organisms inhabiting the same region and interacting with each other -07941945 14 n 01 biome 0 004 @ 07941729 n 0000 ~ 08505573 n 0000 ~ 08598301 n 0000 ~ 09284015 n 0000 | a major biotic community characterized by the dominant forms of plant life and the prevailing climate -07942152 14 n 01 people 0 054 @ 00031264 n 0000 #m 02472987 n 0000 ;u 06295235 n 0000 + 02650840 v 0101 + 00451461 v 0101 %m 00007846 n 0000 ~ 07943300 n 0000 ~ 07943480 n 0000 ~ 07943646 n 0000 ~ 07944242 n 0000 ~ 07944408 n 0000 ~ 07944618 n 0000 ~ 07944754 n 0000 ~ 07944900 n 0000 ~ 07945077 n 0000 ~ 07945490 n 0000 ~ 07945657 n 0000 ~ 07945818 n 0000 ~ 07945949 n 0000 ~ 07946135 n 0000 ~ 07946288 n 0000 ~ 07946694 n 0000 ~ 07946851 n 0000 ~ 07946969 n 0000 ~ 07947255 n 0000 ~ 07947958 n 0000 ~ 07948183 n 0000 ~ 07948518 n 0000 ~ 07948754 n 0000 ~ 07948971 n 0000 ~ 07949160 n 0000 ~ 07949463 n 0000 ~ 07949796 n 0000 ~ 07950090 n 0000 ~ 07950295 n 0000 ~ 07950418 n 0000 ~ 07950685 n 0000 ~ 07950786 n 0000 ~ 07966421 n 0000 ~ 07974025 n 0000 ~ 08166552 n 0000 ~ 08179205 n 0000 ~ 08179455 n 0000 ~ 08179689 n 0000 ~ 08179879 n 0000 ~ 08369406 n 0000 ~ 08375912 n 0000 ~ 08401554 n 0000 ~ 08401711 n 0000 ~ 08401970 n 0000 ~ 08477164 n 0000 ~ 08477307 n 0000 ~ 08477912 n 0000 ~ 08483136 n 0000 | (plural) any group of human beings (men or women or children) collectively; "old people"; "there were at least 200 people in the audience" -07943300 14 n 01 peoples 0 002 @ 07942152 n 0000 ;u 06295235 n 0000 | the human beings of a particular nation or community or ethnic group; "the indigenous peoples of Australia" -07943480 14 n 03 age_group 0 age_bracket 0 cohort 2 003 @ 07942152 n 0000 ~ 07943870 n 0000 ~ 07944050 n 0000 | a group of people having approximately the same age -07943646 14 n 01 ancients 0 003 @ 07942152 n 0000 ;r 08800258 n 0000 ;u 06295235 n 0000 | people who lived in times long past (especially during the historical period before the fall of the Roman Empire in western Europe) -07943870 14 n 02 aged 0 elderly 0 003 @ 07943480 n 0000 + 01644225 a 0101 ! 07944050 n 0101 | people who are old collectively; "special arrangements were available for the aged" -07944050 14 n 02 young 0 youth 0 003 @ 07943480 n 0000 + 01646941 a 0101 ! 07943870 n 0101 | young people collectively; "rock music appeals to the young"; "youth everywhere rises in revolt" -07944242 14 n 01 baffled 0 001 @ 07942152 n 0000 | people who are frustrated and perplexed; "the children's faces clearly expressed the frustration of the baffled" -07944408 14 n 01 blind 0 004 @ 07942152 n 0000 + 02168555 v 0101 + 02168194 v 0101 %m 09860130 n 0000 | people who have severe visual impairments, considered as a group; "he spent hours reading to the blind" -07944618 14 n 01 blood 1 001 @ 07942152 n 0000 | people viewed as members of a group; "we need more young blood in this organization" -07944754 14 n 01 brave 0 003 @ 07942152 n 0000 + 02707251 v 0103 ! 07944900 n 0101 | people who are brave; "the home of the free and the brave" -07944900 14 n 02 timid 0 cautious 0 003 @ 07942152 n 0000 + 00325281 a 0201 ! 07944754 n 0101 | people who are fearful and cautious; "whitewater rafting is not for the timid" -07945077 14 n 02 business_people 0 businesspeople 0 002 @ 07942152 n 0000 ;c 01094725 n 0000 | people who transact business (especially business executives) -07945236 14 n 02 country_people 0 countryfolk 0 001 @ 07947255 n 0000 | people raised in or living in a rural environment; rustics -07945369 14 n 02 country_people 1 countryfolk 1 001 @ 08160276 n 0000 | people living in the same country; compatriots -07945490 14 n 01 damned 0 002 @ 07942152 n 0000 + 00669942 a 0106 | people who are condemned to eternal punishment; "he felt he had visited the realm of the damned" -07945657 14 n 01 dead 0 004 @ 07942152 n 0000 ! 07945818 n 0101 ~ 07950592 n 0000 %m 09994943 n 0000 | people who are no longer living; "they buried the dead" -07945818 14 n 01 living 0 002 @ 07942152 n 0000 ! 07945657 n 0101 | people who are still living; "save your pity for the living" -07945949 14 n 01 deaf 0 004 @ 07942152 n 0000 + 00681930 a 0101 + 02189940 v 0102 %m 09996481 n 0000 | people who have severe hearing impairments; "many of the deaf use sign language" -07946135 14 n 02 defeated 0 discomfited 0 002 @ 07942152 n 0000 + 02333976 a 0203 | people who are defeated; "the Romans had no pity for the defeated" -07946288 14 n 02 disabled 0 handicapped 0 003 @ 07942152 n 0000 + 01019283 a 0101 ~ 07946516 n 0000 | people collectively who are crippled or otherwise physically handicapped; "technology to help the elderly and the disabled" -07946516 14 n 01 the_halt 0 002 @ 07946288 n 0000 ;u 07073447 n 0000 | (archaic) lame persons collectively; "the poor, and the maimed, and the halt, and the blind"--Luke 14:21 -07946694 14 n 02 doomed 0 lost 0 002 @ 07942152 n 0000 + 00097305 a 0101 | people who are destined to die soon; "the agony of the doomed was in his voice" -07946851 14 n 01 enemy 1 001 @ 07942152 n 0000 | any hostile group of people; "he viewed lawyers as the real enemy" -07946969 14 n 02 episcopacy 0 episcopate 0 001 @ 07942152 n 0000 | the collective body of bishops -07947069 14 n 02 estivation 0 aestivation 0 003 @ 07938773 n 0000 #p 13165409 n 0000 ;c 06066555 n 0000 | (botany) the arrangement of sepals and petals in a flower bud before it opens -07947255 14 n 03 folk 0 folks 1 common_people 0 008 @ 07942152 n 0000 + 01044922 a 0201 ~ 07945236 n 0000 ~ 07947675 n 0000 ~ 07947789 n 0000 ~ 07948098 n 0000 ~ 08401819 n 0000 %m 10441251 n 0000 | people in general (often used in the plural); "they're just country folk"; "folks around here drink moonshine"; "the common people determine the group character and preserve its customs from one generation to the next" -07947675 14 n 01 gentlefolk 0 001 @ 07947255 n 0000 | people of good family and breeding and high social status -07947789 14 n 01 grass_roots 0 002 @ 07947255 n 0000 ;u 06295235 n 0000 | the common people at a local level (as distinguished from the centers of political activity) -07947958 14 n 02 free 0 free_people 0 002 @ 07942152 n 0000 + 02421374 v 0101 | people who are free; "the home of the free and the brave" -07948098 14 n 01 home_folk 0 001 @ 07947255 n 0000 | folks from your own home town -07948183 14 n 01 homebound 0 003 @ 07942152 n 0000 + 00558827 a 0101 %m 10214230 n 0000 | people who are confined to their homes -07948314 14 n 01 homeless 0 003 @ 08179205 n 0000 + 01050603 a 0102 %m 10182190 n 0000 | poor people who unfortunately do not have a home to live in; "the homeless became a problem in the large cities" -07948518 14 n 02 initiate 0 enlightened 0 004 @ 07942152 n 0000 + 01307375 a 0202 + 02390470 v 0101 ! 07948754 n 0101 | people who have been introduced to the mysteries of some field or activity; "it is very familiar to the initiate" -07948754 14 n 01 uninitiate 0 003 @ 07942152 n 0000 + 00937341 a 0101 ! 07948518 n 0101 | people who have not been introduced to the mysteries of some field or activity; "it diverts the attention of the uninitiate" -07948971 14 n 03 mentally_retarded 0 retarded 0 developmentally_challenged 0 001 @ 07942152 n 0000 | people collectively who are mentally retarded; "he started a school for the retarded" -07949160 14 n 01 network_army 0 001 @ 07942152 n 0000 | a group of like-minded people united by the internet; a new kind of social or political of business group that may exert broad influence on a shared concern; "a network army of software programmers contribute free software to those who want it" -07949463 14 n 01 nationality 0 006 @ 07942152 n 0000 + 02988402 a 0101 + 02988281 a 0101 + 02988060 a 0101 + 01105840 a 0101 + 01567862 a 0101 | people having common origins or traditions and often comprising a nation; "immigrants of the same nationality often seek each other out"; "such images define their sense of nationality" -07949796 14 n 01 peanut_gallery 0 001 @ 07942152 n 0000 | (figurative) people whose criticisms are regarded as irrelevant or insignificant (resembling uneducated people who throw peanuts on the stage to express displeasure with a performance); "he ignored complaints from the peanut gallery" -07950090 14 n 01 pocket 0 001 @ 07942152 n 0000 | a small isolated group of people; "they were concentrated in pockets inside the city"; "the battle was won except for cleaning up pockets of resistance" -07950295 14 n 01 retreated 0 001 @ 07942152 n 0000 | people who have retreated; "he had only contempt for the retreated" -07950418 14 n 01 sick 0 004 @ 07942152 n 0000 + 02075321 a 0106 + 02541302 a 0102 + 00076400 v 0105 | people who are sick; "they devote their lives to caring for the sick" -07950592 14 n 01 slain 0 001 @ 07945657 n 0000 | people who have been slain (as in battle) -07950685 14 n 01 tradespeople 0 002 @ 07942152 n 0000 %m 10592152 n 0000 | people engaged in trade -07950786 14 n 02 wounded 0 maimed 0 001 @ 07942152 n 0000 | people who are wounded; "they had to leave the wounded where they fell" -07950920 14 n 01 social_group 0 026 @ 00031264 n 0000 ~ 07965085 n 0000 ~ 07966140 n 0000 ~ 07966570 n 0000 ~ 07966719 n 0000 ~ 07968702 n 0000 ~ 07969695 n 0000 ~ 07970301 n 0000 ~ 07974850 n 0000 ~ 07975026 n 0000 ~ 07991364 n 0000 ~ 08008335 n 0000 ~ 08103635 n 0000 ~ 08207863 n 0000 ~ 08215044 n 0000 ~ 08240022 n 0000 ~ 08240169 n 0000 ~ 08245172 n 0000 ~ 08288753 n 0000 ~ 08294395 n 0000 ~ 08367880 n 0000 ~ 08372299 n 0000 ~ 08372411 n 0000 ~ 08464601 n 0000 ~ 08479095 n 0000 ~ 08486306 n 0000 | people sharing some social relation -07951464 14 n 04 collection 0 aggregation 0 accumulation 0 assemblage 1 098 @ 00031264 n 0000 + 01656788 v 0401 + 02304982 v 0303 ~ 00296585 n 0000 ~ 03921209 n 0000 ~ 04338359 n 0000 ~ 04550426 n 0000 ~ 04550546 n 0000 ~ 06026276 n 0000 ~ 07953367 n 0000 ~ 07953499 n 0000 ~ 07953603 n 0000 ~ 07953827 n 0000 ~ 07954014 n 0000 ~ 07954211 n 0000 ~ 07954441 n 0000 ~ 07954576 n 0000 ~ 07954731 n 0000 ~ 07954863 n 0000 ~ 07954946 n 0000 ~ 07955057 n 0000 ~ 07955280 n 0000 ~ 07955455 n 0000 ~ 07955566 n 0000 ~ 07955726 n 0000 ~ 07955961 n 0000 ~ 07956112 n 0000 ~ 07956250 n 0000 ~ 07956426 n 0000 ~ 07956887 n 0000 ~ 07957193 n 0000 ~ 07958501 n 0000 ~ 07958642 n 0000 ~ 07958727 n 0000 ~ 07959016 n 0000 ~ 07959269 n 0000 ~ 07959863 n 0000 ~ 07960569 n 0000 ~ 07961480 n 0000 ~ 07962124 n 0000 ~ 07963711 n 0000 ~ 07976181 n 0000 ~ 07977108 n 0000 ~ 07977237 n 0000 ~ 07977344 n 0000 ~ 07977592 n 0000 ~ 07977870 n 0000 ~ 07978423 n 0000 ~i 07984805 n 0000 ~ 07993109 n 0000 ~ 07993279 n 0000 ~ 07993526 n 0000 ~ 07996689 n 0000 ~ 07997581 n 0000 ~ 07997703 n 0000 ~ 08007430 n 0000 ~ 08008017 n 0000 ~ 08064523 n 0000 ~ 08064742 n 0000 ~ 08064888 n 0000 ~ 08074421 n 0000 ~ 08145871 n 0000 ~ 08153337 n 0000 ~ 08168737 n 0000 ~ 08168831 n 0000 ~ 08172695 n 0000 ~ 08172877 n 0000 ~ 08173030 n 0000 ~ 08173165 n 0000 ~ 08173289 n 0000 ~ 08270662 n 0000 ~ 08270938 n 0000 ~ 08271042 n 0000 ~ 08292756 n 0000 ~ 08293490 n 0000 ~ 08293831 n 0000 ~ 08336627 n 0000 ~ 08336844 n 0000 ~ 08398773 n 0000 ~ 08400452 n 0000 ~ 08400772 n 0000 ~ 08406160 n 0000 ~ 08407619 n 0000 ~ 08417673 n 0000 ~ 08425303 n 0000 ~ 08433727 n 0000 ~ 08436759 n 0000 ~ 08441203 n 0000 ~ 08456888 n 0000 ~ 08462320 n 0000 ~ 08462964 n 0000 ~ 08463063 n 0000 ~ 08463969 n 0000 ~ 08464098 n 0000 ~ 08464324 n 0000 ~ 08464449 n 0000 ~ 08482866 n 0000 ~i 08486538 n 0000 | several things grouped together or considered as a whole -07953367 14 n 01 armamentarium 0 001 @ 07951464 n 0000 | the collection of equipment and methods used in the practice of medicine -07953499 14 n 01 art_collection 0 002 @ 07951464 n 0000 ~ 07955841 n 0000 | a collection of art works -07953603 14 n 01 backlog 0 002 @ 07951464 n 0000 + 00159236 v 0101 | an accumulation of jobs not done or materials not processed that are yet to be dealt with (especially unfilled customer orders for products or services) -07953827 14 n 01 battery 1 003 @ 07951464 n 0000 %m 01008271 n 0000 %p 02746365 n 0000 | a collection of related things intended for use together; "took a battery of achievement tests" -07954014 14 n 01 block 0 001 @ 07951464 n 0000 | a number or quantity of related things dealt with as a unit; "he reserved a large block of seats"; "he held a large block of the company's stock" -07954211 14 n 02 book 0 rule_book 0 003 @ 07951464 n 0000 %p 06652242 n 0000 %p 06788897 n 0000 | a collection of rules or prescribed standards on the basis of which decisions are made; "they run things by the book around here" -07954441 14 n 01 book 1 002 @ 07951464 n 0000 ;c 00488225 n 0000 | a collection of playing cards satisfying the rules of a card game -07954576 14 n 01 bottle_collection 0 001 @ 07951464 n 0000 | a collection of bottles; "her bottle collection is arranged on glass shelves in the window" -07954731 14 n 03 bunch 2 lot 1 caboodle 0 001 @ 07951464 n 0000 | any collection in its entirety; "she bought the whole caboodle" -07954863 14 n 01 coin_collection 0 001 @ 07951464 n 0000 | a collection of coins -07954946 14 n 01 collage 0 001 @ 07951464 n 0000 | any collection of diverse things; "a collage of memories" -07955057 14 n 01 content 0 001 @ 07951464 n 0000 | everything that is included in a collection and that is held or included in something; "he emptied the contents of his pockets"; "the two groups were similar in content" -07955280 14 n 02 ensemble 3 tout_ensemble 0 002 @ 07951464 n 0000 ;c 00933420 n 0000 | an assemblage of parts or details (as in a work of art) considered as forming a whole -07955455 14 n 01 corpus 0 001 @ 07951464 n 0000 | a collection of writings; "he edited the Hemingway corpus" -07955566 14 n 01 crop 0 001 @ 07951464 n 0000 | a collection of people or things appearing together; "the annual crop of students brings a new crop of ideas" -07955726 14 n 01 tenantry 0 002 @ 07951464 n 0000 + 02460483 v 0101 | tenants of an estate considered as a group -07955841 14 n 01 loan_collection 0 001 @ 07953499 n 0000 | a number of pictures loaned by their owners for exhibition -07955961 14 n 01 findings 0 001 @ 07951464 n 0000 | a collection of tools and other articles used by an artisan to make jewelry or clothing or shoes -07956112 14 n 01 flagging 0 001 @ 07951464 n 0000 | flagstones collectively; "there was a pile of flagging waiting to be laid in place" -07956250 14 n 01 flinders 0 002 @ 07951464 n 0000 ;u 06295235 n 0000 | bits and splinters and fragments; "it would have shattered in flinders long before it did that damage" -07956426 14 n 01 pack 3 003 @ 07951464 n 0000 ~ 07956552 n 0000 ~ 07956721 n 0000 | a complete collection of similar things -07956552 14 n 02 disk_pack 0 disc_pack 0 002 @ 07956426 n 0000 ;c 06128570 n 0000 | (computer science) a portable pack of magnetic disks used in a disk storage device -07956721 14 n 03 pack_of_cards 0 deck_of_cards 0 deck 0 004 @ 07956426 n 0000 %m 03963982 n 0000 %m 04033425 n 0000 %m 04351233 n 0000 | a pack of 52 playing cards -07956887 14 n 02 hand 0 deal 0 007 @ 07951464 n 0000 + 02445509 v 0203 + 02246686 v 0201 + 02246456 v 0201 %p 07957193 n 0000 ~ 07957327 n 0000 ~ 07957655 n 0000 | the cards held in a card game by a given player at any given time; "I didn't hold a good hand all evening"; "he kept trying to see my hand" -07957193 14 n 01 long_suit 0 003 @ 07951464 n 0000 #p 07956887 n 0000 ~ 07957546 n 0000 | in a hand, the suit having the most cards -07957327 14 n 01 bridge_hand 0 003 @ 07956887 n 0000 ~ 07957456 n 0000 %p 07957546 n 0000 | the cards held in a game of bridge -07957456 14 n 01 chicane 0 001 @ 07957327 n 0000 | a bridge hand that is void of trumps -07957546 14 n 01 strong_suit 0 002 @ 07957193 n 0000 #p 07957327 n 0000 | a long suit including high cards -07957655 14 n 01 poker_hand 0 007 @ 07956887 n 0000 ~ 07957855 n 0000 ~ 07957986 n 0000 ~ 07958099 n 0000 ~ 07958196 n 0000 ~ 07958294 n 0000 ~ 07958407 n 0000 | the 5 cards held in a game of poker -07957855 14 n 01 royal_flush 0 001 @ 07957655 n 0000 | a poker hand with the ace, king, queen, jack, and 10 all in the same suit -07957986 14 n 01 straight_flush 0 001 @ 07957655 n 0000 | a poker hand with consecutive cards in the same suit -07958099 14 n 01 full_house 0 001 @ 07957655 n 0000 | a poker hand with 3 of a kind and a pair -07958196 14 n 01 flush 0 001 @ 07957655 n 0000 | a poker hand with all 5 cards in the same suit -07958294 14 n 01 straight 0 001 @ 07957655 n 0000 | a poker hand with 5 consecutive cards (regardless of suit) -07958407 14 n 01 pair 2 001 @ 07957655 n 0000 | a poker hand with 2 cards of the same value -07958501 14 n 01 herbarium 0 001 @ 07951464 n 0000 | a collection of dried plants that are mounted and systematically classified for study -07958642 14 n 01 stamp_collection 0 001 @ 07951464 n 0000 | a collection of stamps -07958727 14 n 01 statuary 0 002 @ 07951464 n 0000 ~ 07958820 n 0000 | statues collectively -07958820 14 n 01 Elgin_Marbles 0 001 @ 07958727 n 0000 | a collection of classical Greek marble sculptures and fragments of architecture created by Phidias; chiefly from the Parthenon in Athens -07959016 14 n 03 sum 0 summation 0 sum_total 0 006 @ 07951464 n 0000 + 00049683 a 0201 + 00949288 v 0104 + 02378183 v 0101 + 00949288 v 0106 ~ 08418103 n 0000 | the final aggregate; "the sum of all our troubles did not equal the misery they suffered" -07959269 14 n 01 agglomeration 0 003 @ 07951464 n 0000 ~ 07959943 n 0000 ~ 07961016 n 0000 | a jumbled collection or mass -07959393 14 n 01 edition 0 001 @ 00031264 n 0000 | all of the identical copies of something offered to the public at the same time; "the first edition appeared in 1920"; "it was too late for the morning edition"; "they issued a limited edition of Bach recordings" -07959659 14 n 01 electron_shell 0 001 @ 00031264 n 0000 | a grouping of electrons surrounding the nucleus of an atom; "the chemical properties of an atom are determined by the outermost electron shell" -07959863 14 n 01 gimmickry 0 001 @ 07951464 n 0000 | a collection of gimmicks -07959943 14 n 04 bunch 0 clump 0 cluster 0 clustering 0 016 @ 07959269 n 0000 + 02025009 v 0401 + 01484392 v 0404 + 02025009 v 0301 + 01484392 v 0304 + 02025009 v 0204 + 01484392 v 0205 + 00538891 a 0101 + 02027411 v 0102 + 01484392 v 0101 ~ 07960384 n 0000 ~ 07960666 n 0000 ~ 07960769 n 0000 ~i 09373333 n 0000 ~i 09378801 n 0000 ~i 09395763 n 0000 | a grouping of a number of similar things; "a bunch of trees"; "a cluster of admirers" -07960384 14 n 01 knot 0 001 @ 07959943 n 0000 | a tight cluster of people or things; "a small knot of women listened to his sermon"; "the bird had a knot of feathers forming a crest" -07960569 14 n 01 nuclear_club 0 001 @ 07951464 n 0000 | the nations possessing nuclear weapons -07960666 14 n 01 swad 0 002 @ 07959943 n 0000 ;u 07075172 n 0000 | a bunch; "a thick swad of plants" -07960769 14 n 02 tuft 0 tussock 0 004 @ 07959943 n 0000 ~ 07960928 n 0000 ~ 12521624 n 0000 ~ 13090395 n 0000 | a bunch of hair or feathers or growing grass -07960928 14 n 01 wisp 1 001 @ 07960769 n 0000 | a small tuft or lock; "wisps of hair" -07961016 14 n 06 ball 1 clod 0 glob 0 lump 0 clump 1 chunk 0 007 @ 07959269 n 0000 + 02141021 a 0601 + 00657016 v 0603 + 00912490 a 0401 ~ 05402091 n 0000 ~ 07961270 n 0000 ~ 07961379 n 0000 | a compact mass; "a ball of mud caught him on the shoulder" -07961270 14 n 01 gob 0 002 @ 07961016 n 0000 ;r 08860123 n 0000 | a lump of slimy stuff; "a gob of phlegm" -07961379 14 n 01 clew 0 002 @ 07961016 n 0000 + 01523401 v 0102 | a ball of yarn or cord or thread -07961480 14 n 06 pile 0 heap 0 mound 0 agglomerate 0 cumulation 0 cumulus 0 019 @ 07951464 n 0000 + 00539207 a 0601 + 00158804 v 0602 + 00158804 v 0502 + 00467019 a 0401 + 01484714 v 0401 + 01503404 v 0203 + 01434822 v 0101 + 02064131 v 0104 + 01503404 v 0102 ~ 07961956 n 0000 ~ 07962295 n 0000 ~ 07962628 n 0000 ~ 07962707 n 0000 ~ 07962991 n 0000 ~ 07963087 n 0000 ~ 07963494 n 0000 ~ 07963613 n 0000 ~ 08462205 n 0000 | a collection of objects laid on top of each other -07961956 14 n 02 compost_heap 0 compost_pile 0 001 @ 07961480 n 0000 | a heap of manure and vegetation and other organic residues that are decaying to become compost -07962124 14 n 01 mass 2 004 @ 07951464 n 0000 + 02024168 v 0101 ~ 07962405 n 0000 ~ 07962500 n 0000 | an ill-structured collection of similar things (objects or people) -07962295 14 n 04 dunghill 0 midden 0 muckheap 0 muckhill 0 001 @ 07961480 n 0000 | a heap of dung or refuse -07962405 14 n 01 logjam 0 001 @ 07962124 n 0000 | an immovable mass of logs blocking a river -07962500 14 n 01 shock 1 001 @ 07962124 n 0000 | a bushy thick mass (especially hair); "he had an unruly shock of black hair" -07962628 14 n 01 scrapheap 0 001 @ 07961480 n 0000 | pile of discarded metal -07962707 14 n 01 shock 0 002 @ 07961480 n 0000 + 01386308 v 0101 | a pile of sheaves of grain set on end in a field to dry; stalks of Indian corn set up in a field; "corn is bound in small sheaves and several sheaves are set up together in shocks"; "whole fields of wheat in shock" -07962991 14 n 01 slagheap 0 001 @ 07961480 n 0000 | pile of waste matter from coal mining etc -07963087 14 n 01 stack 0 004 @ 07961480 n 0000 + 01503404 v 0101 + 01503952 v 0101 ~ 07963208 n 0000 | an orderly pile -07963208 14 n 03 haystack 0 hayrick 0 rick 0 003 @ 07963087 n 0000 + 01503736 v 0301 ~ 07963330 n 0000 | a stack of hay -07963330 14 n 01 haycock 0 001 @ 07963208 n 0000 | a small cone-shaped pile of hay that has been left in the field until it is dry enough to carry to the hayrick -07963494 14 n 02 pyre 0 funeral_pyre 0 001 @ 07961480 n 0000 | wood heaped for burning a dead body as a funeral rite -07963613 14 n 01 woodpile 0 001 @ 07961480 n 0000 | a pile or stack of wood to be used for fuel -07963711 14 n 01 combination 0 008 @ 07951464 n 0000 + 01385170 v 0102 + 00193486 v 0102 + 00394813 v 010a ~ 05439582 n 0000 ~ 07963987 n 0000 ~ 07964144 n 0000 ~ 07964324 n 0000 | a collection of things that have been combined; an assemblage of separate parts or qualities -07963987 14 n 01 amalgam 0 002 @ 07963711 n 0000 + 01462005 v 0105 | a combination or blend of diverse things; "his theory is an amalgam of earlier ideas" -07964144 14 n 02 color_scheme 0 colour_scheme 0 001 @ 07963711 n 0000 | a planned combination of colors; "the color scheme for this room was determined by an interior decorator" -07964324 14 n 01 complexion 0 002 @ 07963711 n 0000 + 02622969 v 0101 | a combination that results from coupling or interlinking; "diphthongs are complexions of vowels" -07964495 14 n 01 combination 3 006 @ 08293982 n 0000 ;c 06148148 n 0000 + 01331244 a 0103 + 02377938 v 0101 + 01385170 v 0102 ~ 07964809 n 0000 | an alliance of people or corporations or countries for a special purpose (formerly to achieve some antisocial end but now for general political or economic purposes) -07964809 14 n 01 combination_in_restraint_of_trade 0 003 @ 07964495 n 0000 ;c 08441203 n 0000 ;r 09044862 n 0000 | (law) any monopoly or contract or combination or conspiracy intended to restrain commerce (which are illegal according to antitrust laws of the United States) -07965085 14 n 01 body 0 029 @ 07950920 n 0000 ~ 07965817 n 0000 ~ 08082236 n 0000 ~ 08082899 n 0000 ~ 08085824 n 0000 ~ 08164585 n 0000 ~ 08213079 n 0000 ~ 08238156 n 0000 ~ 08238313 n 0000 ~ 08275185 n 0000 ~ 08278169 n 0000 ~ 08286163 n 0000 ~ 08287586 n 0000 ~ 08337108 n 0000 ~ 08374049 n 0000 ~ 08380017 n 0000 ~ 08381436 n 0000 ~ 08390731 n 0000 ~ 08400965 n 0000 ~ 08403631 n 0000 ~ 08403787 n 0000 ~ 08413834 n 0000 ~ 08414040 n 0000 ~ 08414119 n 0000 ~ 08414381 n 0000 ~ 08414608 n 0000 ~ 08479986 n 0000 ~ 08480662 n 0000 ~ 08481983 n 0000 | a group of persons associated by some common tie or occupation and regarded as an entity; "the whole body filed out of the auditorium"; "the student body"; "administrative body" -07965817 14 n 01 public 1 001 @ 07965085 n 0000 | a body of people sharing some common interest; "the reading public" -07965937 14 n 02 world 1 domain 0 003 @ 07974025 n 0000 ~ 08274923 n 0000 ~ 08275081 n 0000 | people in general; especially a distinctive group of people with some shared interest; "the Western world" -07966140 14 n 01 society 0 009 @ 07950920 n 0000 + 02798370 a 0102 %p 07966719 n 0000 %p 07974025 n 0000 ~ 08111783 n 0000 ~ 08287844 n 0000 ~ 08288189 n 0000 ~ 08288390 n 0000 %m 08378819 n 0000 | an extended social group having a distinctive cultural and economic organization -07966421 14 n 01 migration 0 002 @ 07942152 n 0000 + 01856626 v 0101 | a group of people migrating together (especially in some given time period) -07966570 14 n 01 minority 0 001 @ 07950920 n 0000 | a group of people who differ racially or politically from a larger group of which it is a part -07966719 14 n 01 sector 0 005 @ 07950920 n 0000 #p 07966140 n 0000 #p 08366753 n 0000 ~ 07966927 n 0000 ~ 08364548 n 0000 | a social group that forms part of the society or the economy; "the public sector" -07966927 14 n 02 business 2 business_sector 0 004 @ 07966719 n 0000 ;c 01094725 n 0000 ~ 07967129 n 0000 -c 02448079 v 0000 | business concerns collectively; "Government and business could not agree" -07967129 14 n 01 big_business 0 001 @ 07966927 n 0000 | commercial enterprises organized and financed on a scale large enough to influence social and political policies; "big business is growing so powerful it is difficult to regulate it effectively" -07967382 14 n 02 ethnic_group 0 ethnos 0 013 @ 00031264 n 0000 ~ 07967736 n 0000 ~ 08483265 n 0000 ~ 08483353 n 0000 ~ 08483788 n 0000 ~ 08483935 n 0000 ~ 08484522 n 0000 ~ 08484810 n 0000 ~ 08484986 n 0000 ~ 09676490 n 0000 ~ 09719430 n 0000 ~ 09738121 n 0000 ~ 10364333 n 0000 | people of the same race or nationality who share a distinctive culture -07967736 14 n 01 ethnic_minority 0 006 @ 07967382 n 0000 ~ 08483500 n 0000 ~ 08483650 n 0000 ~ 08484239 n 0000 ~ 08484386 n 0000 ~ 08484648 n 0000 | a group that has different national or cultural traditions from the majority of the population -07967982 14 n 01 race 0 010 @ 00031264 n 0000 + 03141609 a 0101 ~ 07968354 n 0000 ~ 07968550 n 0000 ~ 09636890 n 0000 ~ 09639237 n 0000 ~ 09643421 n 0000 ~ 09648176 n 0000 ~ 09673341 n 0000 ~ 09676746 n 0000 | people who are believed to belong to the same genetic stock; "some biologists doubt that there are important genetic differences between races of human beings" -07968354 14 n 04 color 0 colour 0 people_of_color 0 people_of_colour 0 002 @ 07967982 n 0000 %m 09636106 n 0000 | a race with skin pigmentation different from the white race (especially Blacks) -07968550 14 n 02 master_race 0 Herrenvolk 0 001 @ 07967982 n 0000 | a race that considers itself superior to all others and fitted to rule the others -07968702 14 n 02 interest 0 interest_group 0 004 @ 07950920 n 0000 ;u 06295235 n 0000 ~ 07968974 n 0000 ~ 07969192 n 0000 | (usually plural) a social group whose members control some field of activity and who have common aims; "the iron interests stepped up production" -07968974 14 n 01 special_interest 0 001 @ 07968702 n 0000 | an individual or group who are concerned with some particular part of the economy and who try to influence legislators or bureaucrats to act in their favor -07969192 14 n 01 vested_interest 0 002 @ 07968702 n 0000 ~ 07969366 n 0000 | groups that seek to control a social system or activity from which they derive private benefit -07969366 14 n 01 military-industrial_complex 0 001 @ 07969192 n 0000 | a country's military establishment and the industries that produce arms and other military equipment; "we must guard against the acquisition of unwarranted influence, whether sought or unsought, by the military-industrial complex"--Dwight David Eisenhower -07969695 14 n 06 kin 0 kin_group 0 kinship_group 0 kindred 0 clan 0 tribe 2 014 @ 07950920 n 0000 + 03074922 a 0601 + 01972479 a 0401 + 01971846 a 0107 + 13812607 n 0101 ~ 07970079 n 0000 ~ 07970406 n 0000 ~ 07971023 n 0000 ~ 08102402 n 0000 ~ 08372574 n 0000 ~ 08372847 n 0000 %m 10235549 n 0000 %m 10308275 n 0000 %m 10728624 n 0000 | group of people related by blood or marriage -07970079 14 n 02 mishpocha 0 mishpachah 0 002 @ 07969695 n 0000 ;c 06951067 n 0000 | (Yiddish) the entire family network of relatives by blood or marriage (and sometimes close friends); "she invited the whole mishpocha" -07970301 14 n 01 kith 0 001 @ 07950920 n 0000 | your friends and acquaintances; "all his kith and kin" -07970406 14 n 02 family 0 family_unit 0 009 @ 07969695 n 0000 + 02940759 a 0101 ~ 07988857 n 0000 ~ 07989373 n 0000 ~i 07989620 n 0000 ~i 07989741 n 0000 %m 09918248 n 0000 %m 10399491 n 0000 %m 10595164 n 0000 | primary social group; parents and children; "he wanted to have a good job before starting a family" -07970721 14 n 07 family 1 family_line 0 folk 2 kinfolk 0 kinsfolk 0 sept 0 phratry 0 006 @ 08101937 n 0000 ~ 07971141 n 0000 ~ 07971298 n 0000 ~ 07971449 n 0000 ~ 07971582 n 0000 ~ 07972279 n 0000 | people descended from a common ancestor; "his family has lived in Massachusetts since the Mayflower" -07971023 14 n 01 folks 0 002 @ 07969695 n 0000 ;u 06295235 n 0000 | your parents; "he wrote to his folks every day" -07971141 14 n 01 people 2 001 @ 07970721 n 0000 | members of a family line; "his people have been farmers for generations"; "are your people still alive?" -07971298 14 n 01 homefolk 0 001 @ 07970721 n 0000 | the people of your home locality (especially your own family); "he wrote his homefolk every day" -07971449 14 n 01 house 0 003 @ 07970721 n 0000 ~ 08153437 n 0000 ~ 08485281 n 0000 | aristocratic family line; "the House of York" -07971582 14 n 01 dynasty 0 034 @ 07970721 n 0000 + 02715244 a 0101 ~ 08154012 n 0000 ~ 08154213 n 0000 ~ 08154363 n 0000 ~ 08154548 n 0000 ~ 08154703 n 0000 ~ 08154960 n 0000 ~ 08155302 n 0000 ~ 08155518 n 0000 ~ 08155765 n 0000 ~ 08156054 n 0000 ~ 08156200 n 0000 ~ 08156392 n 0000 ~ 08156505 n 0000 ~ 08156685 n 0000 ~ 08156948 n 0000 ~ 08157182 n 0000 ~ 08157405 n 0000 ~ 08157672 n 0000 ~ 08157809 n 0000 ~ 08158089 n 0000 ~ 08158314 n 0000 ~ 08158460 n 0000 ~ 08158741 n 0000 ~ 08158920 n 0000 ~ 08159031 n 0000 ~ 08159331 n 0000 ~ 08159464 n 0000 ~ 08159591 n 0000 ~ 08159740 n 0000 ~ 08159924 n 0000 ~ 08160146 n 0000 ~ 08479407 n 0000 | a sequence of powerful leaders in the same family -07972279 14 n 02 name 0 gens 0 001 @ 07970721 n 0000 | family based on male descent; "he had no sons and there was no one to carry on his name" -07972425 14 n 02 feudalism 0 feudal_system 0 004 @ 08378819 n 0000 + 02726546 a 0101 + 02726546 a 0102 + 00321020 v 0101 | the social system that developed in Europe in the 8th century; vassals were protected by lords who they had to serve in war -07972674 14 n 02 patriarchy 0 patriarchate 0 003 @ 08378819 n 0000 + 01738100 a 0101 + 01737825 a 0101 | a form of social organization in which a male is the family head and title is traced through the male line -07972888 14 n 02 matriarchy 0 matriarchate 0 002 @ 08378819 n 0000 + 01738335 a 0101 | a form of social organization in which a female is the family head and title is traced through the female line -07973088 14 n 01 meritocracy 0 002 @ 08378819 n 0000 + 03086002 a 0101 | a form of social system in which power goes to those with superior intellects -07973241 14 n 01 building 0 001 @ 07975026 n 0000 | the occupants of a building; "the entire building complained about the noise" -07973373 14 n 01 broken_home 0 001 @ 08078020 n 0000 | a family in which the parents have separated or divorced -07973487 14 n 02 nuclear_family 0 conjugal_family 0 001 @ 08078020 n 0000 | a family consisting of parents and their children and grandparents of a marital partner -07973653 14 n 01 extended_family 0 001 @ 08078020 n 0000 | a family consisting of the nuclear family and their blood relatives -07973782 14 n 01 foster_family 0 001 @ 08078020 n 0000 | the family of a fosterling -07973868 14 n 01 foster_home 0 001 @ 08078020 n 0000 | a household in which an orphaned or delinquent child is placed (usually by a social-service agency) -07974025 14 n 04 class 1 stratum 0 social_class 0 socio-economic_class 0 030 @ 07942152 n 0000 #p 07966140 n 0000 #m 08378555 n 0000 + 00739662 v 0102 + 00654625 v 0101 ~ 07965937 n 0000 ~ 07974766 n 0000 ~ 08075287 n 0000 ~ 08075388 n 0000 ~ 08167365 n 0000 ~ 08180639 n 0000 ~ 08181540 n 0000 ~ 08181658 n 0000 ~ 08181820 n 0000 ~ 08181930 n 0000 ~ 08182283 n 0000 ~ 08244895 n 0000 ~ 08245059 n 0000 ~ 08246502 n 0000 ~ 08306047 n 0000 ~ 08306194 n 0000 ~ 08386365 n 0000 ~ 08389094 n 0000 ~ 08415983 n 0000 ~ 08416137 n 0000 ~ 08416523 n 0000 ~ 08417572 n 0000 ~ 08424951 n 0000 ~ 08436562 n 0000 ~ 08477634 n 0000 | people having the same social, economic, or educational status; "the working class"; "an emerging professional class" -07974766 14 n 01 age_class 0 001 @ 07974025 n 0000 | people in the same age range -07974850 14 n 01 fringe 0 001 @ 07950920 n 0000 | a social group holding marginal or extreme views; "members of the fringe believe we should be armed with guns at all times" -07975026 14 n 02 gathering 0 assemblage 0 044 @ 07950920 n 0000 + 02598143 v 0201 + 02428924 v 0203 + 02598143 v 0102 + 02428924 v 0102 ~ 07973241 n 0000 ~ 07976069 n 0000 ~ 07976420 n 0000 ~ 07976596 n 0000 ~ 07976936 n 0000 ~ 07985948 n 0000 ~ 07986066 n 0000 ~ 07987216 n 0000 ~ 07987380 n 0000 ~ 07987580 n 0000 ~ 07987689 n 0000 ~ 07987794 n 0000 ~ 07987903 n 0000 ~ 08163792 n 0000 ~ 08182379 n 0000 ~ 08182716 n 0000 ~ 08221897 n 0000 ~ 08223802 n 0000 ~ 08225581 n 0000 ~ 08237863 n 0000 ~ 08238463 n 0000 ~ 08238660 n 0000 ~ 08252211 n 0000 ~ 08273843 n 0000 ~ 08307589 n 0000 ~ 08310309 n 0000 ~ 08357992 n 0000 ~ 08358332 n 0000 ~ 08375369 n 0000 ~ 08402222 n 0000 ~ 08408557 n 0000 ~ 08415774 n 0000 ~ 08429167 n 0000 ~ 08478018 n 0000 ~ 08479615 n 0000 ~ 08479795 n 0000 ~ 08479894 n 0000 ~ 08480135 n 0000 ~ 08486189 n 0000 | a group of persons together in one place -07975909 14 n 01 bee 0 003 @ 08252211 n 0000 ~ 07976851 n 0000 ~ 08188967 n 0000 | a social gathering to carry out some communal task or to hold competitions -07976069 14 n 01 carload 0 001 @ 07975026 n 0000 | a gathering of passengers sufficient to fill an automobile -07976181 14 n 01 congregation 1 002 @ 07951464 n 0000 + 02023600 v 0101 | an assemblage of people or animals or things collected together; "a congregation of children pleaded for his autograph"; "a great congregation of birds flew over" -07976420 14 n 01 contingent 1 001 @ 07975026 n 0000 | a gathering of persons representative of some larger group; "each nation sent a contingent of athletes to the Olympics" -07976596 14 n 01 floor 0 001 @ 07975026 n 0000 | the occupants of a floor; "the whole floor complained about the lack of heat" -07976725 14 n 01 love_feast 0 001 @ 08252211 n 0000 | a social gathering intended to create goodwill among the participants -07976851 14 n 01 quilting_bee 0 001 @ 07975909 n 0000 | a gathering to make quilts -07976936 14 n 01 pair 0 006 @ 07975026 n 0000 + 01428853 v 0103 + 01292885 v 0104 + 02490430 v 0101 ~ 07985628 n 0000 ~ 08231065 n 0000 | two people considered as a unit -07977108 14 n 01 hit_parade 0 001 @ 07951464 n 0000 | a collection of the best or most popular people or items of a given kind -07977237 14 n 01 Judaica 0 001 @ 07951464 n 0000 | historical and literary materials relating to Judaism -07977344 14 n 01 kludge 0 002 @ 07951464 n 0000 ;c 00928947 n 0000 | a badly assembled collection of parts hastily assembled to serve some particular purpose (often used to refer to computing systems or software that has been badly put together) -07977592 14 n 03 library 1 program_library 0 subroutine_library 0 005 @ 07951464 n 0000 ;c 00928947 n 0000 %p 06576265 n 0000 %p 06583178 n 0000 %p 06583790 n 0000 | (computing) a collection of standard programs and subroutines that are stored and available for immediate use -07977870 14 n 01 library 0 004 @ 07951464 n 0000 ~ 07978055 n 0000 ~ 07978170 n 0000 ~ 07978276 n 0000 | a collection of literary documents or records kept for reference or borrowing -07978055 14 n 01 bibliotheca 0 003 @ 07977870 n 0000 + 02663145 a 0102 + 02663145 a 0101 | a collection of books -07978170 14 n 01 public_library 0 001 @ 07977870 n 0000 | a nonprofit library maintained for public use -07978276 14 n 01 rental_collection 0 001 @ 07977870 n 0000 | a collection of books that can be rented by readers in return for a small daily fee -07978423 14 n 01 mythology 0 020 @ 07951464 n 0000 + 01936184 a 0104 + 01936184 a 0105 + 10343869 n 0101 + 00135013 v 0101 -c 05626618 n 0000 -c 06147873 n 0000 %m 06372680 n 0000 -c 07331600 n 0000 ~ 07978924 n 0000 ~ 07983856 n 0000 -c 09486781 n 0000 -c 09499657 n 0000 -c 09499854 n 0000 -c 09501737 n 0000 -c 09585218 n 0000 -c 09585434 n 0000 -c 09586011 n 0000 -c 09590495 n 0000 -c 10709979 n 0000 | myths collectively; the body of stories associated with a culture or institution or person -07978924 14 n 01 classical_mythology 0 017 @ 07978423 n 0000 -c 02729345 n 0000 -c 07610295 n 0000 ~ 07979425 n 0000 ~ 07983170 n 0000 -c 09492733 n 0000 -c 09492877 n 0000 -c 09493043 n 0000 -c 09506337 n 0000 -c 09548632 n 0000 -c 09570794 n 0000 -c 09578005 n 0000 -c 10173086 n 0000 -c 15230790 n 0000 -c 15231031 n 0000 -c 15231263 n 0000 -c 15231634 n 0000 | the system of mythology of the Greeks and Romans together; much of Roman mythology (especially the gods) was borrowed from the Greeks -07979425 14 n 01 Greek_mythology 0 193 @ 07978924 n 0000 -c 02713581 a 0000 -c 01309395 n 0000 -c 02758270 n 0000 -c 03881625 n 0000 -c 04407844 n 0000 -c 05628403 n 0000 -c 07433336 n 0000 -c 09015653 n 0000 -c 09186709 n 0000 -c 09248724 n 0000 -c 09338453 n 0000 -c 09385586 n 0000 -c 09449773 n 0000 -c 09486424 n 0000 -c 09486639 n 0000 -c 09487546 n 0000 -c 09489889 n 0000 -c 09490054 n 0000 -c 09490210 n 0000 -c 09490352 n 0000 -c 09490572 n 0000 -c 09491504 n 0000 -c 09491784 n 0000 -c 09493204 n 0000 -c 09493374 n 0000 -c 09493562 n 0000 -c 09493807 n 0000 -c 09493983 n 0000 -c 09494280 n 0000 -c 09494764 n 0000 -c 09494951 n 0000 -c 09495103 n 0000 -c 09495382 n 0000 -c 09495619 n 0000 -c 09495732 n 0000 -c 09495849 n 0000 -c 09496099 n 0000 -c 09496261 n 0000 -c 09496460 n 0000 -c 09496673 n 0000 -c 09496918 n 0000 -c 09497163 n 0000 -c 09497364 n 0000 -c 09497641 n 0000 -c 09497775 n 0000 -c 09497913 n 0000 -c 09498072 n 0000 -c 09498186 n 0000 -c 09499056 n 0000 -c 09499338 n 0000 -c 09499494 n 0000 -c 09500003 n 0000 -c 09500217 n 0000 -c 09500398 n 0000 -c 09500625 n 0000 -c 09501198 n 0000 -c 09501527 n 0000 -c 09502298 n 0000 -c 09502700 n 0000 -c 09502906 n 0000 -c 09547629 n 0000 -c 09549047 n 0000 -c 09549216 n 0000 -c 09549416 n 0000 -c 09549643 n 0000 -c 09549758 n 0000 -c 09549983 n 0000 -c 09550125 n 0000 -c 09550278 n 0000 -c 09550443 n 0000 -c 09550585 n 0000 -c 09550758 n 0000 -c 09550899 n 0000 -c 09553767 n 0000 -c 09554297 n 0000 -c 09554505 n 0000 -c 09554701 n 0000 -c 09554910 n 0000 -c 09555236 n 0000 -c 09555391 n 0000 -c 09555514 n 0000 -c 09555962 n 0000 -c 09556697 n 0000 -c 09556915 n 0000 -c 09557387 n 0000 -c 09557770 n 0000 -c 09557965 n 0000 -c 09558569 n 0000 -c 09558898 n 0000 -c 09559071 n 0000 -c 09559573 n 0000 -c 09559896 n 0000 -c 09560196 n 0000 -c 09560426 n 0000 -c 09560762 n 0000 -c 09560940 n 0000 -c 09561137 n 0000 -c 09561320 n 0000 -c 09561755 n 0000 -c 09561970 n 0000 -c 09562319 n 0000 -c 09562526 n 0000 -c 09562883 n 0000 -c 09563425 n 0000 -c 09563998 n 0000 -c 09564371 n 0000 -c 09564480 n 0000 -c 09566320 n 0000 -c 09566436 n 0000 -c 09566544 n 0000 -c 09566667 n 0000 -c 09566791 n 0000 -c 09566904 n 0000 -c 09567044 n 0000 -c 09567180 n 0000 -c 09567309 n 0000 -c 09567421 n 0000 -c 09567560 n 0000 -c 09567767 n 0000 -c 09568051 n 0000 -c 09568241 n 0000 -c 09568643 n 0000 -c 09568776 n 0000 -c 09568927 n 0000 -c 09569142 n 0000 -c 09569467 n 0000 -c 09569709 n 0000 -c 09570114 n 0000 -c 09570298 n 0000 -c 09570630 n 0000 -c 09570957 n 0000 -c 09571090 n 0000 -c 09571390 n 0000 -c 09571581 n 0000 -c 09571693 n 0000 -c 09571914 n 0000 -c 09572425 n 0000 -c 09572825 n 0000 -c 09573145 n 0000 -c 09573262 n 0000 -c 09573561 n 0000 -c 09573682 n 0000 -c 09574767 n 0000 -c 09574926 n 0000 -c 09575033 n 0000 -c 09575140 n 0000 -c 09575548 n 0000 -c 09575701 n 0000 -c 09575902 n 0000 -c 09576164 n 0000 -c 09577004 n 0000 -c 09577155 n 0000 -c 09577308 n 0000 -c 09577467 n 0000 -c 09577601 n 0000 -c 09578248 n 0000 -c 09589585 n 0000 -c 09592384 n 0000 -c 09592563 n 0000 -c 09592734 n 0000 -c 09592848 n 0000 -c 09593144 n 0000 -c 09593416 n 0000 -c 09593651 n 0000 -c 09594756 n 0000 -c 09594906 n 0000 -c 09595059 n 0000 -c 09595240 n 0000 -c 09595545 n 0000 -c 09595717 n 0000 -c 09595957 n 0000 -c 09596186 n 0000 -c 09596374 n 0000 -c 09596547 n 0000 -c 09596733 n 0000 -c 09596884 n 0000 -c 09597141 n 0000 -c 09597478 n 0000 -c 09597628 n 0000 -c 09597798 n 0000 -c 09598066 n 0000 -c 09600031 n 0000 -c 09600188 n 0000 -c 09601219 n 0000 -c 09787076 n 0000 -c 09787390 n 0000 -c 09829506 n 0000 -c 09829650 n 0000 -c 11204276 n 0000 -c 11232229 n 0000 -c 11246255 n 0000 -c 14939755 n 0000 | the mythology of the ancient Greeks -07983170 14 n 01 Roman_mythology 0 032 @ 07978924 n 0000 -c 09509232 n 0000 -c 09555653 n 0000 -c 09555785 n 0000 -c 09556121 n 0000 -c 09556305 n 0000 -c 09556580 n 0000 -c 09557130 n 0000 -c 09557632 n 0000 -c 09558177 n 0000 -c 09558388 n 0000 -c 09558756 n 0000 -c 09560061 n 0000 -c 09561593 n 0000 -c 09562166 n 0000 -c 09562704 n 0000 -c 09563619 n 0000 -c 09563805 n 0000 -c 09564177 n 0000 -c 09567913 n 0000 -c 09568488 n 0000 -c 09569330 n 0000 -c 09571249 n 0000 -c 09572113 n 0000 -c 09572249 n 0000 -c 09573405 n 0000 -c 09573966 n 0000 -c 09575316 n 0000 -c 09576548 n 0000 -c 09576746 n 0000 -c 09829506 n 0000 -c 09829650 n 0000 | the mythology of the ancient Romans -07983856 14 n 01 Norse_mythology 0 042 @ 07978423 n 0000 ;r 08766988 n 0000 -c 05626767 n 0000 -c 05629204 n 0000 -c 05631175 n 0000 -c 09494609 n 0000 -c 09502080 n 0000 -c 09579070 n 0000 -c 09579198 n 0000 -c 09579345 n 0000 -c 09579491 n 0000 -c 09579714 n 0000 -c 09579848 n 0000 -c 09579994 n 0000 -c 09580125 n 0000 -c 09580354 n 0000 -c 09580521 n 0000 -c 09580673 n 0000 -c 09580829 n 0000 -c 09580971 n 0000 -c 09581129 n 0000 -c 09581338 n 0000 -c 09581526 n 0000 -c 09581680 n 0000 -c 09581859 n 0000 -c 09582019 n 0000 -c 09582122 n 0000 -c 09582343 n 0000 -c 09582949 n 0000 -c 09583196 n 0000 -c 09583321 n 0000 -c 09583506 n 0000 -c 09583723 n 0000 -c 09583888 n 0000 -c 09584079 n 0000 -c 09584218 n 0000 -c 09584405 n 0000 -c 09584559 n 0000 -c 09584725 n 0000 -c 09584933 n 0000 -c 09590495 n 0000 -c 09590772 n 0000 | the mythology of Scandinavia (shared in part by Britain and Germany) until the establishment of Christianity -07984805 14 n 02 Nag_Hammadi 0 Nag_Hammadi_Library 0 001 @i 07951464 n 0000 | a collection of 13 ancient papyrus codices translated from Greek into Coptic that were discovered by farmers near the town of Nag Hammadi in 1945; the codices contain 45 distinct works including the chief sources of firsthand knowledge of Gnosticism -07985135 14 n 01 singleton 0 001 @ 07996689 n 0000 | a set containing a single member -07985223 14 n 02 pair 1 brace 0 004 @ 07996689 n 0000 + 01465365 v 0101 + 01292885 v 0104 ~ 07988716 n 0000 | a set of two similar things considered as a unit -07985384 14 n 01 team 1 003 @ 07993929 n 0000 + 10695333 n 0101 ~ 07985533 n 0000 | two or more draft animals that work together to pull something -07985533 14 n 01 relay 1 001 @ 07985384 n 0000 | a fresh team to relieve weary draft animals -07985628 14 n 04 couple 0 twosome 0 duo 0 duet 0 003 @ 07976936 n 0000 + 02490430 v 0104 ~ 07989973 n 0000 | a pair who associate with one another; "the engaged couple"; "an inseparable twosome" -07985825 14 n 01 trilogy 0 001 @ 07986198 n 0000 | a set of three literary or dramatic works related in subject or theme -07985948 14 n 01 room 0 001 @ 07975026 n 0000 | the people who are present in a room; "the whole room was cheering" -07986066 14 n 04 trio 0 threesome 0 triad 0 trinity 0 002 @ 07975026 n 0000 ~ 07986982 n 0000 | three people considered as a unit -07986198 14 n 04 trio 1 triad 1 triplet 1 triple 0 004 @ 07996689 n 0000 ~ 07985825 n 0000 ~i 07986617 n 0000 ~ 07986771 n 0000 | a set of three similar things considered as a unit -07986381 14 n 01 trip_wire 0 002 @ 08198398 n 0000 ;c 08199025 n 0000 | a small military force that serves as a first line of defense; if they become engaged in hostilities it will trigger the intervention of stronger military forces -07986617 14 n 01 Trimurti 0 004 @i 07986198 n 0000 %m 09524921 n 0000 %m 09528727 n 0000 %m 09529999 n 0000 | the triad of divinities of later Hinduism -07986771 14 n 02 triplicity 0 trigon 0 002 @ 07986198 n 0000 ;c 05778131 n 0000 | (astrology) one of four groups of the zodiac where each group consists of three signs separated from each other by 120 degrees -07986982 14 n 01 triumvirate 0 002 @ 07986066 n 0000 ~ 07987135 n 0000 | a group of three men responsible for public administration or civil authority -07987135 14 n 01 troika 0 001 @ 07986982 n 0000 | a modern Russian triumvirate -07987216 14 n 01 turnout 0 002 @ 07975026 n 0000 + 02429475 v 0101 | the group that gathers together for a particular occasion; "a large turnout for the meeting" -07987380 14 n 03 quartet 0 quartette 0 foursome 0 002 @ 07975026 n 0000 ~ 07988010 n 0000 | four people considered as a unit; "he joined a barbershop quartet"; "the foursome teed off before 9 a.m." -07987580 14 n 03 quintet 0 quintette 0 fivesome 0 001 @ 07975026 n 0000 | five people considered as a unit -07987689 14 n 03 sextet 0 sextette 0 sixsome 0 001 @ 07975026 n 0000 | six people considered as a unit -07987794 14 n 03 septet 0 septette 0 sevensome 0 001 @ 07975026 n 0000 | seven people considered as a unit -07987903 14 n 03 octet 0 octette 0 eightsome 0 001 @ 07975026 n 0000 | eight people considered as a unit -07988010 14 n 01 quadrumvirate 0 001 @ 07987380 n 0000 | a group of four men -07988089 14 n 04 quartet 1 quartette 1 quadruplet 0 quadruple 0 001 @ 07996689 n 0000 | a set of four similar things considered as a unit -07988229 14 n 04 quintet 1 quintette 1 quintuplet 0 quintuple 0 001 @ 07996689 n 0000 | a set of five similar things considered as a unit -07988369 14 n 03 sextet 1 sextette 1 sestet 1 001 @ 07996689 n 0000 | a set of six similar things considered as a unit -07988490 14 n 02 septet 1 septette 1 001 @ 07996689 n 0000 | a set of seven similar things considered as a unit -07988604 14 n 02 octet 1 octette 1 001 @ 07996689 n 0000 | a set of eight similar things considered as a unit -07988716 14 n 02 Tweedledum_and_Tweedledee 0 Tweedledee_and_Tweedledum 0 001 @ 07985223 n 0000 | any two people who are hard to tell apart -07988857 14 n 03 couple 1 mates 0 match 0 006 @ 07970406 n 0000 + 01293389 v 0301 + 01292885 v 0301 + 01428853 v 0104 ~ 07989083 n 0000 ~ 07989220 n 0000 | a pair of people who live together; "a married couple from Chicago" -07989083 14 n 01 power_couple 0 001 @ 07988857 n 0000 | a couple both of whom have high-powered careers or are politically influential -07989220 14 n 01 DINK 0 002 @ 07988857 n 0000 ;u 07091902 n 0000 | a couple who both have careers and no children (an acronym for dual income no kids) -07989373 14 n 03 marriage 0 married_couple 0 man_and_wife 0 003 @ 07970406 n 0000 ~ 07990158 n 0000 %m 10640620 n 0000 | two people who are married to each other; "his second marriage was happier than the first"; "a married couple without love" -07989620 14 n 01 Bronte_sisters 0 001 @i 07970406 n 0000 | a 19th century family of three sisters who all wrote novels -07989741 14 n 01 Marx_Brothers 0 005 @i 07970406 n 0000 %m 11160676 n 0000 %m 11160861 n 0000 %m 11161045 n 0000 %m 11161228 n 0000 | a family of United States comedians consisting of four brothers with an anarchic sense of humor -07989973 14 n 01 same-sex_marriage 0 001 @ 07985628 n 0000 | two people of the same sex who live together as a family; "the legal status of same-sex marriages has been hotly debated" -07990158 14 n 01 mixed_marriage 0 001 @ 07989373 n 0000 | marriage of two people from different races or different religions or different cultures; "the families of both partners in a mixed marriage often disapprove" -07990377 14 n 01 association 1 004 @ 00031264 n 0000 ;c 06070929 n 0000 + 02470175 v 0102 ~ 07990648 n 0000 | (ecology) a group of organisms (plants and animals) that live together in a certain geographical region and constitute a community with a few dominant species -07990648 14 n 01 antibiosis 0 001 @ 07990377 n 0000 | an association between organisms that is harmful to one of them or between organisms and a metabolic product of another -07990824 14 n 01 brood 0 003 @ 07993929 n 0000 + 00060185 v 0101 ~ 08400870 n 0000 | the young of an animal cared for at one time -07990956 14 n 01 flock 0 009 @ 07993929 n 0000 %m 01503061 n 0000 ~ 07991579 n 0000 ~ 07991780 n 0000 ~ 07991868 n 0000 ~ 07991994 n 0000 ~ 07992116 n 0000 ~ 07992222 n 0000 ~ 08220620 n 0000 | a group of birds -07991169 14 n 02 flock 1 fold 1 002 @ 07993929 n 0000 %m 02411705 n 0000 | a group of sheep or goats -07991272 14 n 01 flock 2 001 @ 07991364 n 0000 | a church congregation guided by a pastor -07991364 14 n 03 congregation 0 fold 0 faithful 0 004 @ 07950920 n 0000 #m 08146782 n 0000 + 02023600 v 0101 ~ 07991272 n 0000 | a group of people who adhere to a common faith and habitually attend a given church -07991579 14 n 01 bevy 0 002 @ 07990956 n 0000 %m 01806567 n 0000 | a flock of birds (especially when gathered close together on the ground); "we were visited at breakfast by a bevy of excited ducks" -07991780 14 n 01 covert 0 002 @ 07990956 n 0000 %m 02018027 n 0000 | a flock of coots -07991868 14 n 01 covey 0 003 @ 07990956 n 0000 %m 01795088 n 0000 %m 01807496 n 0000 | a small flock of grouse or partridge -07991994 14 n 01 exaltation 0 001 @ 07990956 n 0000 | a flock of larks (especially a flock of larks in flight overhead) -07992116 14 n 01 gaggle 0 003 @ 07990956 n 0000 + 01056780 v 0101 %m 01855672 n 0000 | a flock of geese -07992222 14 n 01 wisp 0 002 @ 07990956 n 0000 %m 02031934 n 0000 | a flock of snipe -07992308 14 n 01 clade 0 001 @ 07941170 n 0000 | a group of biological taxa or species that share features inherited from a common ancestor -07992450 14 n 03 taxonomic_group 0 taxonomic_category 0 taxon 0 030 @ 07941170 n 0000 ~ 02496210 n 0000 ~ 02500749 n 0000 ~ 07940552 n 0000 ~ 07940865 n 0000 ~ 08101085 n 0000 ~ 08102555 n 0000 ~ 08103299 n 0000 ~ 08103457 n 0000 ~ 08103777 n 0000 ~ 08106661 n 0000 ~ 08106798 n 0000 ~ 08106934 n 0000 ~ 08107191 n 0000 ~ 08107343 n 0000 ~ 08107499 n 0000 ~ 08108304 n 0000 ~ 08108627 n 0000 ~ 08108784 n 0000 ~ 08108972 n 0000 ~ 08109624 n 0000 ~ 08109772 n 0000 ~ 08110373 n 0000 ~ 08110648 n 0000 ~ 08111157 n 0000 ~ 08111419 n 0000 ~ 11605147 n 0000 ~ 11804433 n 0000 ~ 12313574 n 0000 ~ 12976672 n 0000 | animal or plant group having natural relations -07993109 14 n 02 biota 0 biology 0 004 @ 07951464 n 0000 + 02665803 a 0201 %m 07993279 n 0000 %m 08436759 n 0000 | all the plant and animal life of a particular region -07993279 14 n 02 fauna 0 zoology 0 005 @ 07951464 n 0000 #m 07993109 n 0000 ! 08436759 n 0102 ~ 07993643 n 0000 %m 07993929 n 0000 | all the animal life in a particular region or period; "the fauna of China"; "the zoology of the Pliocene epoch" -07993526 14 n 01 petting_zoo 0 001 @ 07951464 n 0000 | a collection of docile animals for children to pet and feed -07993643 14 n 01 avifauna 0 003 @ 07993279 n 0000 + 02654035 a 0101 + 02654035 a 0102 | the birds of a particular region or period -07993776 14 n 01 wildlife 0 001 @ 00006269 n 0000 | all living things (except people) that are undomesticated; "chemicals could kill all the wildlife" -07993929 14 n 01 animal_group 0 019 @ 07941170 n 0000 #m 07993279 n 0000 ~ 07985384 n 0000 ~ 07990824 n 0000 ~ 07990956 n 0000 ~ 07991169 n 0000 ~ 07994331 n 0000 ~ 07994555 n 0000 ~ 07994941 n 0000 ~ 07995164 n 0000 ~ 07995278 n 0000 ~ 07995365 n 0000 ~ 07995453 n 0000 ~ 07995617 n 0000 ~ 07996010 n 0000 ~ 07996598 n 0000 ~ 08101410 n 0000 ~ 08184335 n 0000 ~ 08400331 n 0000 | a group of animals -07994331 14 n 01 herd 0 005 @ 07993929 n 0000 + 02652158 v 0101 %m 02402425 n 0000 %m 02411705 n 0000 ~ 07994818 n 0000 | a group of cattle or sheep or other domestic mammals all of the same kind that are herded by humans -07994555 14 n 01 herd 1 003 @ 07993929 n 0000 + 02652158 v 0101 ~ 07994752 n 0000 | a group of wild mammals of one species that remain together: antelope or elephants or seals or whales or zebra -07994752 14 n 01 gam 0 001 @ 07994555 n 0000 | a herd of whales -07994818 14 n 01 remuda 0 001 @ 07994331 n 0000 | the herd of horses from which those to be used the next day are chosen -07994941 14 n 01 pack 0 004 @ 07993929 n 0000 %m 02084071 n 0000 %m 02087551 n 0000 ~ 07995074 n 0000 | a group of hunting animals -07995074 14 n 01 wolf_pack 0 001 @ 07994941 n 0000 | a group of wolves hunting together -07995164 14 n 01 pod 0 003 @ 07993929 n 0000 %m 02062430 n 0000 %m 02075927 n 0000 | a group of aquatic mammals -07995278 14 n 01 pride 0 002 @ 07993929 n 0000 %m 02129165 n 0000 | a group of lions -07995365 14 n 01 clowder 0 002 @ 07993929 n 0000 %m 02121808 n 0000 | a group of cats -07995453 14 n 02 school 1 shoal 0 003 @ 07993929 n 0000 + 01961334 v 0101 %m 02512053 n 0000 | a large group of fish; "a school of small glittering fish swam by" -07995617 14 n 01 caste 0 003 @ 07993929 n 0000 #p 07995856 n 0000 ;c 06072275 n 0000 | in some social insects (such as ants) a physically distinct individual or group of individuals specialized to perform certain functions in the colony -07995856 14 n 01 colony 1 003 @ 07941170 n 0000 + 02700199 a 0101 %p 07995617 n 0000 | a group of organisms of the same type living or growing together -07996010 14 n 01 colony 2 002 @ 07993929 n 0000 ;c 06077648 n 0000 | (microbiology) a group of organisms grown from a single parent cell -07996149 14 n 02 swarm 0 cloud 0 004 @ 00031264 n 0000 + 02714974 v 0103 %m 02159955 n 0000 ~ 07996412 n 0000 | a group of many things in the air or on the ground; "a swarm of insects obscured the light"; "clouds of blossoms"; "it discharged a cloud of spores" -07996412 14 n 02 infestation 0 plague 0 004 @ 07996149 n 0000 + 02771320 v 0202 + 02654686 v 0103 + 02020413 v 0101 | a swarm of insects that attack plants; "a plague of grasshoppers" -07996598 14 n 01 warren 0 002 @ 07993929 n 0000 %m 02324045 n 0000 | a colony of rabbits -07996689 14 n 01 set 0 027 @ 07951464 n 0000 ~ 05282433 n 0000 %m 06413666 n 0000 ~ 07985135 n 0000 ~ 07985223 n 0000 ~ 07986198 n 0000 ~ 07988089 n 0000 ~ 07988229 n 0000 ~ 07988369 n 0000 ~ 07988490 n 0000 ~ 07988604 n 0000 ~ 07997338 n 0000 ~ 07997486 n 0000 ~ 07998712 n 0000 ~ 07999068 n 0000 ~ 07999471 n 0000 ~ 07999584 n 0000 ~ 08005580 n 0000 ~ 08006094 n 0000 ~ 08006868 n 0000 ~ 08007534 n 0000 ~ 08188814 n 0000 ~ 08242223 n 0000 ~ 08242428 n 0000 ~ 08272652 n 0000 ~ 08272774 n 0000 ~ 08272860 n 0000 | a group of things of the same kind that belong together and are so used; "a set of books"; "a set of golf clubs"; "a set of teeth" -07997338 14 n 01 chess_set 0 003 @ 07996689 n 0000 %p 03014317 n 0000 %p 03014440 n 0000 | checkerboard and a set of 32 pieces used to play chess -07997486 14 n 01 manicure_set 0 001 @ 07996689 n 0000 | a set of implements used to manicure -07997581 14 n 01 Victoriana 0 001 @ 07951464 n 0000 | collection of materials of or characteristic of the Victorian era -07997703 14 n 03 class 0 category 0 family 4 020 @ 07951464 n 0000 + 02683869 a 0201 + 02684005 a 0201 + 02684005 a 0202 + 00657260 v 0201 + 00739662 v 0102 + 00654625 v 0102 + 00654625 v 0101 ~ 06309383 n 0000 ~ 06309684 n 0000 ~ 07998206 n 0000 ~ 07998323 n 0000 ~ 07998450 n 0000 ~ 07998573 n 0000 ~ 07999291 n 0000 ~ 08006511 n 0000 ~ 08006741 n 0000 ~ 08006989 n 0000 ~ 08007204 n 0000 %m 08103457 n 0000 | a collection of things sharing a common attribute; "there are two classes of detergents" -07998206 14 n 01 brass_family 0 002 @ 07997703 n 0000 ;c 07020895 n 0000 | (music) the family of brass instruments -07998323 14 n 01 violin_family 0 002 @ 07997703 n 0000 ;c 07020895 n 0000 | (music) the family of bowed stringed instruments -07998450 14 n 01 woodwind_family 0 002 @ 07997703 n 0000 ;c 07020895 n 0000 | (music) the family of woodwind instruments -07998573 14 n 01 stamp 0 003 @ 07997703 n 0000 + 00656292 v 0103 + 02144644 v 0101 | a type or class; "more men of his stamp are needed" -07998712 14 n 03 union 3 sum 1 join 0 002 @ 07996689 n 0000 ~ 07998904 n 0000 | a set containing all and only the members of two or more given sets; "let C be the union of the sets A and B" -07998904 14 n 01 direct_sum 0 001 @ 07998712 n 0000 | a union of two disjoint sets in which every element is the sum of an element from each of the disjoint sets -07999068 14 n 03 intersection 0 product 0 Cartesian_product 0 001 @ 07996689 n 0000 | the set of elements common to two or more sets; "the set of red hats is the intersection of the set of hats and the set of red things" -07999291 14 n 01 sex 0 002 @ 07997703 n 0000 + 00651630 v 0101 | either of the two categories (male or female) into which most organisms are divided; "the war between the sexes" -07999471 14 n 01 field 2 001 @ 07996689 n 0000 | all the competitors in a particular contest or sporting event -07999584 14 n 01 field 1 002 @ 07996689 n 0000 ;c 00450070 n 0000 | all of the horses in a particular horse race -07999699 14 n 01 set 2 016 @ 00002137 n 0000 ;c 06000644 n 0000 ~ 06016276 n 0000 ~ 06016853 n 0000 ~ 08000118 n 0000 ~ 08000304 n 0000 ~ 08000644 n 0000 ~ 08000881 n 0000 ~ 08001209 n 0000 ~ 08001344 n 0000 ~ 08001441 n 0000 ~ 08001685 n 0000 ~ 08005260 n 0000 ~ 08005954 n 0000 ~ 08268321 n 0000 ~ 13873213 n 0000 | (mathematics) an abstract collection of numbers or symbols; "the set of prime numbers is infinite" -08000118 14 n 02 domain 1 domain_of_a_function 0 002 @ 07999699 n 0000 ;c 06000644 n 0000 | (mathematics) the set of values of the independent variable for which a function is defined -08000304 14 n 03 image 0 range 1 range_of_a_function 0 003 @ 07999699 n 0000 ;c 06000644 n 0000 + 02727039 v 0201 | (mathematics) the set of values of the dependent variable for which a function is defined; "the image of f(x) = x^2 is the set of all non-negative real numbers if the domain of the function is the set of all real numbers" -08000644 14 n 01 universal_set 0 002 @ 07999699 n 0000 ;c 06000644 n 0000 | (mathematics) the set that contains all the elements or objects involved in the problem under consideration; "all other sets are subsets of the universal set" -08000881 14 n 01 locus 0 001 @ 07999699 n 0000 | the set of all points or lines that satisfy or are determined by specific conditions; "the locus of points equidistant from a given point is a circle" -08001083 14 n 01 subgroup 0 002 @ 00031264 n 0000 ~ 08209519 n 0000 | a distinct and often subordinate group within a group -08001209 14 n 01 subset 0 001 @ 07999699 n 0000 | a set whose members are members of another set; a set contained within another set -08001344 14 n 01 null_set 0 001 @ 07999699 n 0000 | a set that is empty; a set with no members -08001441 14 n 01 Mandelbrot_set 0 001 @ 07999699 n 0000 | a set of complex numbers that has a highly convoluted fractal boundary when plotted; the set of all points in the complex plane that are bounded under a certain mathematical iteration -08001685 14 n 02 mathematical_space 0 topological_space 0 007 @ 00028651 n 0000 @ 07999699 n 0000 ;c 06000644 n 0000 ~ 08004342 n 0000 ~ 08004443 n 0000 ~ 08004548 n 0000 ~ 08004695 n 0000 | (mathematics) any set of points that satisfy a set of postulates of some kind; "assume that the topological space is finite dimensional" -08002015 14 n 01 broadcasting_company 0 001 @ 08058098 n 0000 | a company that manages tv or radio stations -08002125 14 n 01 bureau_de_change 0 002 @ 08058098 n 0000 ;r 08929922 n 0000 | (French) an establishment where you can exchange foreign money -08002269 14 n 02 car_company 0 auto_company 0 001 @ 08058098 n 0000 | a company that makes and sells automobiles -08002384 14 n 03 dot-com 0 dot_com 0 dot_com_company 0 002 @ 08058098 n 0000 + 02847473 a 0101 | a company that operates its business primarily on the internet using a URL that ends in `.com' -08002578 14 n 03 drug_company 0 pharmaceutical_company 0 pharma 0 001 @ 08058098 n 0000 | a company that makes and sells pharmaceuticals -08002717 14 n 01 East_India_Company 0 001 @ 08058098 n 0000 | an English company formed in 1600 to develop trade with the new British colonies in India and southeastern Asia; in the 18th century it assumed administrative control of Bengal and held it until the British army took over in 1858 after the Indian Mutiny -08003035 14 n 01 electronics_company 0 002 @ 08058098 n 0000 #m 08067801 n 0000 | a company that makes and sells electronic instruments -08003173 14 n 01 film_company 0 002 @ 08058098 n 0000 ~ 08003306 n 0000 | a company that makes, advertises, and distributes movies -08003306 14 n 01 indie 1 001 @ 08003173 n 0000 | an independent film company not associated with an established studio -08003427 14 n 01 food_company 0 001 @ 08058098 n 0000 | a company that processes and sells food -08003525 14 n 01 furniture_company 0 001 @ 08058098 n 0000 | a company that sells furniture -08003619 14 n 01 mining_company 0 001 @ 08058098 n 0000 | a company that owns and manages mines -08003717 14 n 01 shipping_company 0 002 @ 08058098 n 0000 ~ 08004210 n 0000 | a company that provides shipping services -08003839 14 n 01 steel_company 0 001 @ 08058098 n 0000 | a company that makes and sells steel -08003935 14 n 02 subsidiary_company 0 subsidiary 0 002 @ 08058098 n 0000 + 01854129 a 0202 | a company that is completely controlled by another company -08004089 14 n 01 transportation_company 0 002 @ 08058098 n 0000 ~ 08186761 n 0000 | a company providing transportation -08004210 14 n 01 trucking_company 0 002 @ 08003717 n 0000 #m 08075140 n 0000 | a company that ships goods or possessions by truck -08004342 14 n 01 subspace 0 001 @ 08001685 n 0000 | a space that is contained within another space -08004443 14 n 01 null_space 0 001 @ 08001685 n 0000 | a space that contains no points; and empty space -08004548 14 n 01 manifold 0 001 @ 08001685 n 0000 | a set of points such as those of a closed surface or an analogue in three or more dimensions -08004695 14 n 01 metric_space 0 003 @ 08001685 n 0000 ~ 08004953 n 0000 ~ 08005123 n 0000 | a set of points such that for every pair of points there is a nonnegative real number called their distance that is symmetric and satisfies the triangle inequality -08004953 14 n 01 Euclidean_space 0 001 @ 08004695 n 0000 | a space in which Euclid's axioms and definitions apply; a metric space that is linear and finite-dimensional -08005123 14 n 01 Hilbert_space 0 001 @ 08004695 n 0000 | a metric space that is linear and complete and (usually) infinite-dimensional -08005260 14 n 01 field 0 003 @ 07999699 n 0000 ;c 06000644 n 0000 ~ 08005877 n 0000 | (mathematics) a set of elements such that addition and multiplication are commutative and associative and multiplication is distributive over addition and there are two elements 0 and 1; "the set of all rational numbers is a field" -08005580 14 n 01 field 3 003 @ 07996689 n 0000 ;c 06128570 n 0000 ~ 08005761 n 0000 | (computer science) a set of one or more adjacent characters comprising a unit of information -08005761 14 n 01 bit_field 0 002 @ 08005580 n 0000 ;c 06128570 n 0000 | a field containing only binary characters -08005877 14 n 01 scalar_field 0 001 @ 08005260 n 0000 | a field of scalars -08005954 14 n 02 solution 0 root 0 001 @ 07999699 n 0000 | the set of values that give a true statement when substituted into an equation -08006094 14 n 01 bracket 0 004 @ 07996689 n 0000 + 00656916 v 0101 ~ 08006250 n 0000 ~ 08006405 n 0000 | a category falling within certain defined limits -08006250 14 n 03 income_bracket 0 tax_bracket 0 income_tax_bracket 0 001 @ 08006094 n 0000 | a category of taxpayers based on the amount of their income -08006405 14 n 01 price_bracket 0 001 @ 08006094 n 0000 | a category of merchandise based on their price -08006511 14 n 01 declension 0 002 @ 07997703 n 0000 + 00982913 v 0101 | a class of nouns or pronouns or adjectives in Indo-European languages having the same (or very similar) inflectional forms; "the first declension in Latin" -08006741 14 n 01 conjugation 1 002 @ 07997703 n 0000 + 00983123 v 0101 | a class of verbs having the same inflectional forms -08006868 14 n 01 conjugation 2 002 @ 07996689 n 0000 + 00983123 v 0101 | the complete set of inflected forms of a verb -08006989 14 n 01 denomination 1 002 @ 07997703 n 0000 + 01030132 v 0102 | a class of one kind of unit in a system of numbers or measures or weights or money; "he flashed a fistful of bills of large denominations" -08007204 14 n 01 histocompatibility_complex 0 001 @ 07997703 n 0000 | a family of fifty or more genes on the sixth human chromosome that code for proteins on the surfaces of cells and that play a role in the immune response -08007430 14 n 01 job_lot 0 001 @ 07951464 n 0000 | a miscellaneous collection of things sold together -08007534 14 n 01 suite 1 004 @ 07996689 n 0000 ~ 08007667 n 0000 ~ 08007777 n 0000 ~ 08007897 n 0000 | a matching set of furniture -08007667 14 n 02 bedroom_suite 0 bedroom_set 0 001 @ 08007534 n 0000 | a suite of furniture for the bedroom -08007777 14 n 02 diningroom_suite 0 diningroom_set 0 001 @ 08007534 n 0000 | a suite of furniture for the dining room -08007897 14 n 02 livingroom_suite 0 livingroom_set 0 001 @ 08007534 n 0000 | a suite of furniture for the living room -08008017 14 n 04 package 0 bundle 0 packet 0 parcel 0 007 @ 07951464 n 0000 + 01283746 v 0401 + 01484392 v 0203 + 01487008 v 0201 + 01485158 v 0102 + 01482449 v 0101 ~ 08008254 n 0000 | a collection of things wrapped or boxed together -08008254 14 n 01 wisp 2 001 @ 08008017 n 0000 | a small bundle of straw or hay -08008335 14 n 02 organization 0 organisation 0 045 @ 07950920 n 0000 + 02434238 v 0204 + 02448185 v 0203 + 01651444 v 0202 + 02434238 v 0103 + 02448185 v 0102 + 01651444 v 0101 ~ 08009239 n 0000 ~ 08009478 n 0000 ~ 08009659 n 0000 ~ 08009834 n 0000 ~i 08036669 n 0000 ~ 08048042 n 0000 ~ 08048625 n 0000 ~ 08048743 n 0000 ~ 08048948 n 0000 ~ 08049401 n 0000 ~ 08050385 n 0000 ~ 08050484 n 0000 ~ 08053576 n 0000 ~ 08056231 n 0000 ~ 08064130 n 0000 ~ 08075847 n 0000 ~ 08121394 n 0000 ~ 08187033 n 0000 ~ 08189659 n 0000 ~ 08195636 n 0000 ~ 08208016 n 0000 ~ 08233056 n 0000 ~ 08246613 n 0000 ~ 08256968 n 0000 ~ 08264583 n 0000 ~ 08264759 n 0000 ~ 08266070 n 0000 ~ 08293982 n 0000 ~ 08303504 n 0000 %m 08357992 n 0000 ~ 08376051 n 0000 %m 08400965 n 0000 ~ 08402442 n 0000 ~ 08471185 n 0000 ~ 08480847 n 0000 ~ 08481009 n 0000 ~ 08481184 n 0000 ~ 08481369 n 0000 | a group of people who work together -08009239 14 n 01 adhocracy 0 001 @ 08008335 n 0000 | an organization with little or no structure; "the choice between bureaucracy and adhocracy represents a common dilemma"; "the need for informational flexibility can lead to adhocracy" -08009478 14 n 01 affiliate 0 002 @ 08008335 n 0000 + 02435311 v 0101 | a subsidiary or subordinate organization that is affiliated with another organization; "network affiliates" -08009659 14 n 01 bureaucracy 2 002 @ 08008335 n 0000 + 03051619 a 0101 | any organization in which action is obstructed by insistence on unnecessary procedures and red tape -08009834 14 n 02 nongovernmental_organization 0 NGO 0 012 @ 08008335 n 0000 ~ 08010191 n 0000 ~i 08022087 n 0000 ~i 08047501 n 0000 ~ 08047747 n 0000 ~ 08047890 n 0000 ~ 08048300 n 0000 ~ 08049125 n 0000 ~ 08146782 n 0000 ~ 08308922 n 0000 ~ 08325686 n 0000 ~ 08403225 n 0000 | an organization that is not part of the local or state or federal government -08010191 14 n 02 Alcoholics_Anonymous 0 AA 0 001 @ 08009834 n 0000 | an international organization that provides a support group for persons trying to overcome alcoholism -08010364 14 n 01 Abu_Hafs_al-Masri_Brigades 0 002 @i 08392137 n 0000 ;c 00759694 n 0000 | a terrorist group that has worked with Al Qaeda; claimed responsibility for attacks in Iraq and Turkey -08010559 14 n 02 Abu_Sayyaf 0 Bearer_of_the_Sword 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08981244 n 0000 | a small gang of terrorist thugs claiming to seek a separate Islamic state for the Muslim minority in the Philippines; uses bombing and assassination and extortion and kidnapping; "In 2001 Abu Sayyaf kidnapped twenty people and beheaded one of the American captives" -08010942 14 n 03 Aksa_Martyrs_Brigades 0 al-Aksa_Martyrs_Brigades 0 Martyrs_of_al-Aqsa 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08793489 n 0000 | a militant offshoot of al-Fatah that is the newest and strongest and best equipped faction active in the West Bank; responsible for many deadly attacks in Israel in 2002 -08011266 14 n 04 Alex_Boncayao_Brigade 0 ABB 0 Revolutionary_Proletarian_Army 0 RPA-ABB 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08981244 n 0000 | an urban hit squad and guerrilla group of the Communist Party in the Philippines; formed in the 1980s -08011523 14 n 03 al-Fatah 0 Fatah 0 al-Asifa 0 007 @i 08472335 n 0000 @i 08392137 n 0000 ;c 00759694 n 0000 #m 08320385 n 0000 ;r 08792548 n 0000 ;r 08927186 n 0000 ;r 08798771 n 0000 | a Palestinian political and military organization founded by Yasser Arafat in 1958 to work toward the creation of a Palestinian state; during the 1960s and 1970s trained terrorist and insurgent groups; "al-Fatah carried out numerous acts of international terrorism in western Europe and the Middle East in the 1970s" -08012028 14 n 02 al-Gama'a_al-Islamiyya 0 Islamic_Group 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08897065 n 0000 | a terrorist organization of militant Islamists organized into tiny cells of extreme fundamentalists; emerged during the 1970s mainly in Egyptian jails; "al-Gama'a al-Islamiyya uses force to push Egyptian society toward Islamic rule" -08012384 14 n 04 al_Itihaad_al_Islamiya 0 al-Itihaad_al-Islamiya 0 Islamic_Unity 0 AIAI 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08998560 n 0000 | a fundamentalist Islamic group in Somalia who initially did fundraising for al-Qaeda; responsible for ambushing United States Army Rangers and for terrorist bombings in Ethiopia; believed to have branches in several countries -08012765 14 n 04 al-Jihad 0 Egyptian_Islamic_Jihad 0 Islamic_Jihad 0 Vanguards_of_Conquest 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08897065 n 0000 | an Islamic extremist group active since the late 1970s; seeks to overthrow the Egyptian government and replace it with an Islamic state; works in small underground cells; "the original Jihad was responsible for the assassination of Anwar Sadat in 1981" -08013176 14 n 01 al-Ma'unah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08963369 n 0000 | a radical insurgent Islamist group consisting of disaffected middle-class professionals in Malaysia who want to overthrow the government by violent means and set up an Islamic state -08013453 14 n 01 al-Muhajiroun 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08860123 n 0000 | a hard-line extremist Islamic group in Great Britain who support bin Laden and other terrorist groups -08013653 14 n 01 Al_Nathir 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a Palestinian terrorist organization formed in 2002 and linked to Fatah movement of Yasser Arafat -08013845 14 n 05 al-Qaeda 0 Qaeda 0 al-Qa'ida 0 al-Qaida 0 Base 0 004 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08703454 n 0000 ;r 08975902 n 0000 | a terrorist network intensely opposed to the United States that dispenses money and logistical support and training to a wide variety of radical Islamic terrorist groups; has cells in more than 50 countries -08014202 14 n 01 al-Rashid_Trust 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a terrorist group organized in 1996 after the Taliban took over Afghanistan and part of Osama bin Laden's international system; provides financial support for the Taliban and al-Qaeda and Jaish-i-Mohammed and assists Muslim militants around the world; established a network of madrasas and mosques in Afghanistan -08014615 14 n 02 al_Sunna_Wal_Jamma 0 Followers_of_the_Phrophet 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08973776 n 0000 | a resurgent Islamic fundamentalist organization based in Nigeria that is thought to be planning terrorist attacks -08014860 14 n 03 al-Tawhid 0 Al_Tawhid 0 Divine_Unity 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08766988 n 0000 | an Islamic terrorist cell that originated in Jordan but operates in Germany; goal is to attack Europe and Russia with chemical weapons -08015116 14 n 01 al-Ummah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08900535 n 0000 | a terrorist group formed in India in 1992; is believed to be responsible for bombings in southern India in 1998 -08015321 14 n 03 Ansar_al_Islam 0 Ansar_al-Islam 0 Supporters_of_Islam 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08913434 n 0000 | a radical Islamic group of terrorists in the Iraqi part of Kurdistan who oppose an independent secular nation as advocated by the United States; some members fought with the Taliban and al-Qaeda forces in Afghanistan; said to receive financial support from Saddam Hussein -08015731 14 n 02 Armata_Corsa 0 Corsican_Army 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08941895 n 0000 | a terrorist organization founded in 1999 to oppose the link between nationalists and the Corsican mafia; "the attacks of Armata Corsa are aimed at symbolic targets of colonialism in Corsica" -08016035 14 n 02 Armed_Islamic_Group 0 GIA 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08705397 n 0000 | a terrorist organization of Islamic extremists whose violent activities began in 1992; aims to overthrow the secular Algerian regime and replace it with an Islamic state; "the GIA has embarked on a terrorist campaign of civilian massacres" -08016385 14 n 04 Armenian_Secret_Army_for_the_Liberation_of_Armenia 0 ASALA 0 Orly_Group 0 3rd_October_Organization 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09017526 n 0000 | a militant Marxist-Leninist terrorist organization formed in 1975 to force Turkey to acknowledge killing more than a million Armenians and forcibly removing them from border areas in 1915; wants Turkey to pay reparations and cede territory to Armenia; "ASALA bombing at Orly Airport in Paris in 1983 killed 8 and wounded 55 people" -08016900 14 n 05 Army_for_the_Liberation_of_Rwanda 0 ALIR 0 Former_Armed_Forces 0 FAR 0 Interahamwe 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08815046 n 0000 | a terrorist organization that seeks to overthrow the government dominated by Tutsi and to institute Hutu control again; "in 1999 ALIR guerrillas kidnapped and killed eight foreign tourists" -08017257 14 n 02 Asbat_al-Ansar 0 Band_of_Partisans 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08957381 n 0000 | an extremist Palestinian Sunni group active in Lebanon in the early 1990s that advocates Salafism; responsible for murders and bombings; seeks to overthrow the Lebanese government and control Palestinian refugee camps; funded by al-Qaeda -08017614 14 n 03 Aum_Shinrikyo 0 Aum 0 Supreme_Truth 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08921850 n 0000 | a terrorist organization whose goal is to take over Japan and then the world; based on a religion founded in 1987 that combines elements of Buddhism with Christianity; "in 1995 Aum members released deadly sarin gas on a Tokyo subway train" -08017974 14 n 02 Baader_Meinhof_Gang 0 Baader-Meinhof_Gang 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08766988 n 0000 | a radical left-wing revolutionary terrorist group active in Germany from 1968 until 1977 -08018189 14 n 04 Basque_Homeland_and_Freedom 0 Basque_Fatherland_and_Liberty 0 Euskadi_ta_Askatasuna 0 ETA 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09023321 n 0000 | a terrorist organization organized in 1959 by student activists who were dissatisfied with the moderate nationalism of the traditional Basque party; want to create an independent homeland in Spain's western Pyrenees; "in 1968 ETA launched a campaign of political assassinations of government officials" -08018666 14 n 01 Black_September_Movement 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08927186 n 0000 | a former Palestinian terrorist organization (now merged with Fatah Revolutionary Council) that assassinated the Prime Minister of Jordan and during the 1972 Olympic Games in Munich killed 11 Israeli athletes -08018983 14 n 01 Chukaku-Ha 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08921850 n 0000 | an ultra-leftist militant group founded in 1957 from the breakup of the Japanese Communist Party; includes a covert action wing; "Chukaku-Ha attacks tend to cause property damage rather than casualties" -08019281 14 n 03 Continuity_Irish_Republican_Army 0 CIRA 0 Continuity_Army_Council 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08888676 n 0000 | a terrorist organization formed in Ireland in 1994 as a clandestine armed wing of Sinn Fein -08019523 14 n 04 Democratic_Front_for_the_Liberation_of_Palestine 0 DFLP 0 Popular_Democratic_Front_for_the_Liberation_of_Palestine 0 PDFLP 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a Marxist-Leninist group that believes Palestinian goals can only be achieved by revolutionary change; "in 1974 the DFLP took over a schoolhouse and massacred Israeli schoolchildren" -08019913 14 n 02 East_Turkistan_Islamic_Movement 0 East_Turkestan_Islamic_Movement 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08729626 n 0000 | a group of Uighur Muslims fighting Chinese control of Xinjiang; declared by China in 2001 to be terrorists although there is a long history of cycles of insurgency and repression -08020242 14 n 07 Fatah_Revolutionary_Council 0 Fatah-RC 0 Abu_Nidal_Organization 0 ANO 0 Arab_Revolutionary_Brigades 0 Black_September 0 Revolutionary_Organization_of_Socialist_Muslims 0 006 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08957381 n 0000 ;r 08913434 n 0000 ;r 08959683 n 0000 ;r 08798771 n 0000 | a Palestinian international terrorist organization that split from the PLO in 1974; has conducted terrorist attacks in 20 countries; "in the 1980s the Fatah-RC was considered the most dangerous and murderous Palestinian terror group" -08020785 14 n 02 Fatah_Tanzim 0 Tanzim 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08792548 n 0000 | a terrorist group organized by Yasser Arafat in 1995 as the armed wing of al-Fatah; serves a dual function of violent confrontation with Israel and serves as Arafat's unofficial militia to prevent rival Islamists from usurping leadership -08021129 14 n 02 First_of_October_Antifascist_Resistance_Group 0 GRAPO 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09023321 n 0000 | an armed wing of the (illegal) Communist Party of Spain; seeks to overthrow the Spanish government and replace it with a Marxist-Leninist regime; "GRAPO is vehemently opposed to the United States" -08021464 14 n 01 Force_17 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08957381 n 0000 | formed in 1972 as a personal security force for Arafat and other PLO leaders; became one of PLO's elite units; has built an extensive infrastructure of terrorist cells and weapon depots in Europe while attacking Israeli targets -08021785 14 n 02 Forces_of_Umar_Al-Mukhtar 0 Umar_al-Mukhtar_Forces 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a little known Palestinian group responsible for bombings and for killing Israelis; seeks to defeat Israel and liberate southern Lebanon, Palestine, and Golan Heights -08022087 14 n 01 Greenpeace 0 001 @i 08009834 n 0000 | an international organization that works for environmental conservation and the preservation of endangered species -08022259 14 n 02 Hamas 0 Islamic_Resistance_Movement 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 %p 08040257 n 0000 | a militant Islamic fundamentalist political movement that opposes peace with Israel and uses terrorism as a weapon; seeks to create an Islamic state in place of Israel; is opposed to the PLO and has become a leading perpetrator of terrorist activity in Israel; pioneered suicide bombing -08022666 14 n 03 Harkat-ul-Jihad-e-Islami 0 Harakat_ul-Jihad-I-Islami 0 HUJI 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975617 n 0000 | an extremist militant group in Pakistan occupied Kashmir that seeks an Islamic government and that has had close links and fought with the Taliban in Afghanistan -08022972 14 n 07 Harkat-ul-Mujahidin 0 HUM 0 Harkat_ul-Ansar 0 HUA 0 Harkat_ul-Mujahedeen 0 Al_Faran 0 Movement_of_Holy_Warriors 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | an Islamic fundamentalist group in Pakistan that fought the Soviet Union in Afghanistan in the 1980s; now operates as a terrorist organization primarily in Kashmir and seeks Kashmir's accession by Pakistan -08023374 14 n 0a Hizballah 0 Hezbollah 0 Hizbollah 0 Hizbullah 0 Lebanese_Hizballah 0 Party_of_God 0 Islamic_Jihad 1 Islamic_Jihad_for_the_Liberation_of_Palestine 0 Revolutionary_Justice_Organization 0 Organization_of_the_Oppressed_on_Earth 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08957381 n 0000 | a Shiite terrorist organization with strong ties to Iran; seeks to create an Iranian fundamentalist Islamic state in Lebanon; car bombs are the signature weapon -08023843 14 n 02 Hizb_ut-Tahrir 0 Freedom_Party 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09207288 n 0000 | the most popular and feared Islamic extremist group in central Asia; advocates `pure' Islam and the creation of a worldwide Islamic state -08024096 14 n 01 International_Islamic_Front_for_Jihad_against_Jews_and_Crusaders 0 002 @i 08392137 n 0000 ;c 00759694 n 0000 | a terrorist group organized by Osama bin Laden in 1998 that provided an umbrella organization for al-Qaeda and other militant groups in Egypt and Algeria and Pakistan and Bangladesh -08024408 14 n 05 Irish_National_Liberation_Army 0 INLA 0 People's_Liberation_Army 0 People's_Republican_Army 0 Catholic_Reaction_Force 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08888676 n 0000 | a radical terrorist group dedicated to the removal of British forces from Northern Ireland and the unification of Ireland -08024732 14 n 05 Irish_Republican_Army 0 IRA 0 Provisional_Irish_Republican_Army 0 Provisional_IRA 0 Provos 0 004 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08888676 n 0000 %p 08321218 n 0000 | a militant organization of Irish nationalists who used terrorism and guerilla warfare in an effort to drive British forces from Northern Ireland and achieve a united independent Ireland -08025112 14 n 04 Islamic_Army_of_Aden 0 IAA 0 Islamic_Army_of_Aden-Abyan 0 Aden-Abyan_Islamic_Army 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09164561 n 0000 | Yemen-based terrorist group that supports al-Qaeda's goals; seeks to overthrow the Yemeni government and eliminate United States interests; responsible for bombings and kidnappings and killing western tourists in Yemen -08025497 14 n 02 Islamic_Great_Eastern_Raiders-Front 0 IBDA-C 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09039411 n 0000 | a Turkish terrorist organization that claimed responsibility for bombing a British consulate and bank in Istanbul; a violent opponent of Turkey's secular government and its ties to the European Union and NATO -08025835 14 n 03 Islamic_Group_of_Uzbekistan 0 IMU 0 Islamic_Party_of_Turkestan 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09022265 n 0000 | a terrorist group of Islamic militants formed in 1996; opposes Uzbekistan's secular regime and wants to establish an Islamic state in central Asia; is a conduit for drugs from Afghanistan to central Asian countries -08026197 14 n 04 Jaish-i-Mohammed 0 Jaish-e-Muhammad 0 JEM 0 Army_of_Muhammad 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a terrorist organization founded in 2000; a militant Islamic group active in Kashmir and closely aligned with al-Rashid Trust; seeks to secure release of imprisoned fellow militants by kidnappings -08026539 14 n 03 Jamaat_ul-Fuqra 0 Fuqra 0 Tanzimul_Fuqra 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | an Islamic terrorist group organized in the 1980s; seeks to purify Islam through violence; the cells in North America and the Caribbean insulate themselves from Western culture and will even attack other Muslims who they regard as heretics -08026904 14 n 03 Japanese_Red_Army 0 JRA 0 Anti-Imperialist_International_Brigade 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08921850 n 0000 | a terrorist group organized in 1970 to overthrow the Japanese government and monarchy and to foment world revolution; is said to have close ties with Palestinian terrorists; "in 1972 the Japanese Red Army was responsible for a massacre at an airport in Israel" -08027314 14 n 01 Jayshullah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09018162 n 0000 | an indigenous Islamic terrorist group in Azerbaijan that attempted to bomb the United States embassy in 1999 -08027518 14 n 06 Jemaah_Islamiyah 0 JI 0 Islamic_Group 1 Islamic_Community 0 Malaysian_Mujahidin_Group 0 Malaysia_Militant_Group 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08963369 n 0000 | a clandestine group of southeast Asian terrorists organized in 1993 and trained by al-Qaeda; supports militant Muslims in Indonesia and the Philippines and has cells in Singapore and Malaysia and Indonesia -08027920 14 n 01 Jerusalem_Warriors 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09039411 n 0000 | ethnic Turkish Sunni terrorists who are linked with the Turkish Hizballah; killed a United States Air Force sergeant in 1991 -08028148 14 n 02 Jund-ul-Islam 0 Soldiers_of_God 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09038990 n 0000 | an Islamic extremist group of Kurds who oppose secular control with bombings and assassinations; believed to have ties with al-Qaeda -08028397 14 n 02 Kahane_Chai 0 Kach 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08792548 n 0000 | a terrorist organization founded for Jewish defense; fights antisemitism and hopes to restore the biblical state of Israel -08028623 14 n 03 Kaplan_Group 0 Association_of_Islamic_Groups_and_Communities 0 Caliphate_State 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08766988 n 0000 | a Turkish terrorist group of fundamentalist Muslims with ties to al-Qaeda that operates in Germany; seeks the violent overthrow of the Turkish government and the establishment of an Islamic nation modeled on Iran -08028999 14 n 04 Khmer_Rouge 0 KR 0 Party_of_Democratic_Kampuchea 0 Communist_Party_of_Kampuchea 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08716738 n 0000 | a communist organization formed in Cambodia in 1970; became a terrorist organization in 1975 when it captured Phnom Penh and created a government that killed an estimated three million people; was defeated by Vietnamese troops but remained active until 1999 -08029421 14 n 03 Ku_Klux_Klan 0 Klan 0 KKK 0 007 @i 08235343 n 0000 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09050730 n 0000 %m 08029784 n 0000 %m 10141811 n 0000 %m 10237676 n 0000 | a secret society of white Southerners in the United States; was formed in the 19th century to resist the emancipation of slaves; used terrorist tactics to suppress Black people -08029784 14 n 01 klavern 0 003 @ 08189659 n 0000 #m 08029421 n 0000 ;c 00759694 n 0000 | a local unit of the Ku Klux Klan -08029908 14 n 04 Kurdistan_Workers_Party 0 Kurdistan_Labor_Pary 0 Partiya_Karkeran_Kurdistan 0 PPK 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09039411 n 0000 | a Marxist-Leninist terrorist group of Kurds trying to establish an independent Kurdish state in eastern Turkey -08030185 14 n 01 Contras 0 001 @i 08197895 n 0000 | a Nicaraguan counterrevolutionary guerrilla force from 1979 to 1990; it opposed a left-wing government, with support from the United States -08030379 14 n 01 Pesh_Merga 0 001 @i 08197895 n 0000 | a Kurdish guerrilla force in Iraqi Kurdistan -08030481 14 n 01 Lashkar-e-Jhangvi 0 004 @i 08392137 n 0000 #p 08045140 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a Sunni Muslim extremist group in Pakistan that collaborates with al-Qaeda; the armed wing of Sipah-e-Sahaba -08030711 14 n 02 Lashkar-e-Omar 0 Al_Qanoon 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a terrorist organization formed in Pakistan in 2002 as a coalition of extremist Islamic militant groups including Lashkar-e-Taiba and Lashkar-e-Jhangvi and Jaish-e-Muhammad and elements of al-Qaeda -08031020 14 n 06 Lashkar-e-Taiba 0 Lashkar-e-Toiba 0 Lashkar-e-Tayyiba 0 LET 0 Army_of_the_Pure 0 Army_of_the_Righteous 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a brutal terrorist group active in Kashmir; fights against India with the goal of restoring Islamic rule of India; "Lashkar-e-Toiba has committed mass murders of civilian Hindus" -08031386 14 n 02 Laskar_Jihad 0 Holy_War_Warriors 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08907606 n 0000 | a paramilitary terrorist organization of militant Muslims in Indonesia; wages a jihad against Christians in Indonesia; subscribes to the Wahhabi creed of Islam -08031663 14 n 03 Lautaro_Youth_Movement 0 Lautaro_Faction_of_the_United_Popular_Action_Movement 0 Lautaro_Popular_Rebel_Forces 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08720481 n 0000 | a violent terrorist group organized in the 1980s and advocating the overthrow of the Chilean military government; leaders are mainly criminals or impoverished youths -08032023 14 n 06 Liberation_Tigers_of_Tamil_Eelam 0 LTTE 0 Tamil_Tigers 0 Tigers 0 World_Tamil_Association 0 World_Tamil_Movement 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08719100 n 0000 | a terrorist organization in Sri Lanka that began in 1970 as a student protest over the limited university access for Tamil students; currently seeks to establish an independent Tamil state called Eelam; relies on guerilla strategy including terrorist tactics that target key government and military personnel; "the Tamil Tigers perfected suicide bombing as a weapon of war" -08032594 14 n 05 Libyan_Islamic_Fighting_Group 0 FIG 0 Al-Jama'a_al-Islamiyyah_al-Muqatilah_bi-Libya 0 Libyan_Fighting_Group 0 Libyan_Islamic_Group 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08959683 n 0000 | a Libyan terrorist group organized in 1995 and aligned with al-Qaeda; seeks to radicalize the Libyan government; attempted to assassinate Qaddafi -08032955 14 n 01 Lord's_Resistance_Army 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09043052 n 0000 | a quasi-religious rebel group in Uganda that terrorized and raped women and kidnapped children who were forced to serve in the army -08033194 14 n 01 Loyalist_Volunteer_Force 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08887841 n 0000 | a terrorist group formed in 1996 in Northern Ireland; seeks to prevent the peace process; murders Catholics and any Protestant leaders who favor peace -08033454 14 n 02 Maktab_al-Khidmat 0 MAK 0 002 @i 08392137 n 0000 ;c 00759694 n 0000 | a terrorist organization founded by Osama bin Laden in the 1980s to provide money and recruit fighters around the world; enlisted and transported thousands of men to Afghanistan to fight the Russians; a split in the group led bin Laden and the extremist faction of MAK to form al-Qaeda -08033829 14 n 01 Manuel_Rodriquez_Patriotic_Front 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08720481 n 0000 | a terrorist group formed in 1983 as the armed wing of the Chilean Communist Party -08034028 14 n 01 Moranzanist_Patriotic_Front 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08737716 n 0000 | a terrorist group of radical leftists formed in the late 1980s; seeks to prevent the United States from intervening in Honduran economic and political affairs -08034299 14 n 01 Moro_Islamic_Liberation_Front 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08981244 n 0000 | a terrorist group in the southern Philippines formed in 1977 to establish an independent Islamic state for the Moros; have clashed with troops at United States bases -08034579 14 n 01 Mujahedeen_Kompak 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08907606 n 0000 | a militant Islamic militia that was formed in 2005 by hardliners who split from Jemaah Islamiyah -08034778 14 n 04 Mujahidin-e_Khalq_Organization 0 MKO 0 MEK 0 People's_Mujahidin_of_Iran 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08910668 n 0000 | a terrorist organization formed in the 1960s by children of Iranian merchants; sought to counter the Shah of Iran's pro-western policies of modernization and opposition to communism; following a philosophy that mixes Marxism and Islam it now attacks the Islamic fundamentalists who deposed the Shah -08035233 14 n 04 National_Liberation_Army 0 ELN 0 Nestor_Paz_Zamora_Commission 0 CNPZ 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08852843 n 0000 | a terrorist organization in Bolivia that acts as an umbrella for numerous small indigenous subversive groups; a revival of a group with Marxist-Leninist ideologies originally established by Che Guevara in the 1960s -08035601 14 n 02 National_Liberation_Army 1 ELN 1 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08732116 n 0000 | a Marxist terrorist group formed in 1963 by Colombian intellectuals who were inspired by the Cuban Revolution; responsible for a campaign of mass kidnappings and resistance to the government's efforts to stop the drug trade; "ELN kidnappers target foreign employees of large corporations" -08036005 14 n 02 National_Liberation_Front_of_Corsica 0 FLNC 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08929922 n 0000 | a terrorist group formed in 1976 to work for Corsican independence; attacks on Corsica are aimed at sabotaging public infrastructure and symbols of colonialism -08036293 14 n 02 New_People's_Army 0 NPA 0 004 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08981244 n 0000 %p 08209386 n 0000 | a terrorist organization that is the militant wing of the Communist Party of the Philippines; a Maoist organization formed to overthrow the government; uses hit squads called Sparrow Units; opposes United States military presence in the Philippines -08036669 14 n 02 Orange_Order 0 Association_of_Orangemen 0 003 @i 08008335 n 0000 ;r 08887841 n 0000 %m 10380499 n 0000 | a Protestant political organization in Northern Ireland -08036849 14 n 02 Orange_Group 0 OV 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08887841 n 0000 | a terrorist group of Protestants who oppose any political settlement with Irish nationalists; a paramilitary group that attacks Catholic interests in Northern Ireland -08037118 14 n 04 Palestine_Islamic_Jihad 0 Palestinian_Islamic_Jihad 0 PIJ 0 Harakat_al-Jihad_al-Islami_al-Filastini 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a militant Palestinian terrorist group created in 1979 and committed to the creation of an Islamic state in Palestine and to the destruction of Israel; smaller and more exclusively militant that Hamas -08037503 14 n 03 Palestine_Liberation_Front 0 PLF 0 Jabat_al-Tahrir_al-Filistiniyyah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08957381 n 0000 | a terrorist group formed in 1977 as the result of a split with the Popular Front for the Liberation of Palestine; became a satellite of al-Fatah; made terrorist attacks on Israel across the Lebanese border -08037861 14 n 01 Palestinian_Hizballah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a little known Palestinian group comprised of members of Hamas and Tanzim with suspected ties to the Lebanese Hizballah; responsible for suicide bombings in Israel -08038131 14 n 01 Pentagon_Gang 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08981244 n 0000 | a Filipino terrorist group that broke away from the Moro Islamic Liberation Front in 2001 in order to continue terrorism and kidnapping and extortion -08038379 14 n 02 Popular_Front_for_the_Liberation_of_Palestine 0 PFLP 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08798771 n 0000 | a terrorist group of limited popularity formed in 1967 after the Six-Day War; combined Marxist-Leninist ideology with Palestinian nationalism; used terrorism to gain attention for their cause; hoped to eliminate the state of Israel -08038748 14 n 02 Popular_Front_for_the_Liberation_of_Palestine-General_Command 0 PFLP-GC 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08792548 n 0000 | a Marxist-Leninist terrorist organization that conducted several attacks in western Europe -08038995 14 n 02 Popular_Struggle_Front 0 PSF 0 004 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09033333 n 0000 ;r 08957381 n 0000 | a terrorist group of radical Palestinians who split with al-Fatah in 1967 but now have close relations with al-Fatah; staged terrorist attacks against Israel across the Lebanese border -08039312 14 n 01 15_May_Organization 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08792548 n 0000 | a terrorist organization formed in 1979 by a faction of the Popular Front for the Liberation of Palestine but disbanded in the 1980s when key members left to join a faction of al-Fatah -08039601 14 n 02 People_against_Gangsterism_and_Drugs 0 PAGAD 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08999482 n 0000 | a terrorist organization in South Africa formed in 1996 to fight drug lords; evolved into a vigilante group with anti-western views closely allied with Qibla; is believed to have ties to Islamic extremists in the Middle East; is suspected of conducting bouts of urban terrorism -08040008 14 n 03 Puka_Inti 0 Sol_Rojo 0 Red_Sun 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08776687 n 0000 | a small but violent terrorist organization formed in Ecuador in the early 1990s; responsible for bombing several government buildings -08040257 14 n 03 Qassam_Brigades 0 Salah_al-Din_Battalions 0 Iz_Al-Din_Al-Qassam_Battalions 0 004 @i 08392137 n 0000 #p 08022259 n 0000 ;c 00759694 n 0000 ;r 08792548 n 0000 | the military arm of Hamas responsible for suicide bombings and other attacks on Israel -08040522 14 n 01 Qibla 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08999482 n 0000 | a small terrorist group of Muslims in South Africa formed in the 1980s; was inspired by Ayatollah Khomeini to create an Islamic state in South Africa -08040762 14 n 04 Real_IRA 0 Real_Irish_Republican_Army 0 RIRA 0 Dissident_Irish_Republican_Army 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08888676 n 0000 | a radical terrorist group that broke away in 1997 when the mainstream Provisional IRA proposed a cease-fire; has continued terrorist activities in opposition to any peace agreement -08041106 14 n 02 Red_Army_Faction 0 RAF 1 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08766988 n 0000 | a Marxist and Maoist terrorist organization in Germany; a network of underground guerillas who committed acts of violence in the service of the class struggle; a successor to the Baader-Meinhof Gang; became one of Europe's most feared terrorist groups; disbanded in 1998 -08041484 14 n 03 Red_Brigades 0 Brigate_Rosse 0 BR 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08801678 n 0000 | a Marxist-Leninist terrorist organization that arose out of a student protest movement in the late 1960s; wants to separate Italy from NATO and advocates violence in the service of class warfare and revolution; mostly inactive since 1989 -08041840 14 n 02 Red_Hand_Defenders 0 RHD 0 003 @i 08392137 n 0000 @i 00759694 n 0000 ;r 08887841 n 0000 | a paramilitary group of Protestants in Northern Ireland that tries to prevent any political settlement with the Irish Republic; attacks interests of Catholic civilians in Northern Ireland; responsible for arson and bombing and murder -08042183 14 n 03 Revolutionary_Armed_Forces_of_Colombia 0 Fuerzas_Armadas_Revolucionarios_de_Colombia 0 FARC 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08732116 n 0000 | a powerful and wealthy terrorist organization formed in 1957 as the guerilla arm of the Colombian communist party; opposed to the United States; has strong ties to drug dealers -08042536 14 n 02 Revolutionary_Organization_17_November 0 17_November 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08780881 n 0000 | a Marxist-Leninist terrorist organization in Greece that is violently opposed to imperialism and capitalism and NATO and the United States; an active terrorist group during the 1980s -08042856 14 n 02 Revolutionary_People's_Liberation_Party 0 Revolutionary_People's_Liberation_Front 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09039411 n 0000 | an extreme Marxist terrorist organization in Turkey that is opposed to NATO and the United States; attacks Turkish security and military officials -08043169 14 n 02 Revolutionary_People's_Struggle 0 ELA 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08780881 n 0000 | an extreme leftist terrorist group formed in Greece in 1971 to oppose the military junta that ruled Greece from 1967 to 1974; a revolutionary group opposed to capitalism and imperialism and the United States -08043499 14 n 03 Revolutionary_Proletarian_Nucleus 0 Revolutionary_Proletarian_Initiative_Nuclei 0 NIPR 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08801678 n 0000 | a clandestine group of leftist extremists who oppose Italy's labor policies and foreign policy; responsible for bombing building in the historic center of Rome from 2000 to 2002 -08043848 14 n 02 Revolutionary_United_Front 0 RUF 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08996871 n 0000 | a terrorist group formed in the 1980s in Sierra Leone; seeks to overthrow the government and gain control of the diamond producing regions; responsible for attacks on civilians and children, widespread torture and murder and using children to commit atrocities; sponsored by the president of Liberia -08044265 14 n 03 Salafist_Group 0 Salafast_Group_for_Call_and_Combat 0 GSPC 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08705397 n 0000 | an Algerian extremist Islamic offshoot of the Armed Islamic Group; now the largest and most active armed terrorist group in Algeria that seeks to overthrow the government; a major source of support and recruitment for al-Qaeda operations in Europe and northern Africa -08044676 14 n 03 Shining_Path 0 Sendero_Luminoso 0 SL 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08979054 n 0000 | a terrorist group formed in Peru in the late 1960s as a splinter group from the communist party of Peru; is among the most ruthless guerilla organizations in the world; seeks to destroy Peruvian institutions and replace them with a Maoist peasant regime; is involved in the cocaine trade; "Shining Path has been responsible for 30,000 deaths" -08045140 14 n 01 Sipah-e-Sahaba 0 004 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 %p 08030481 n 0000 | a vicious sectarian organization in Pakistan that persecutes Shiite Muslims and collaborates with al-Qaeda to attack foreigners and to disrupt the government of Pakistan -08045428 14 n 02 Tareekh_e_Kasas 0 Movement_for_Revenge 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08900535 n 0000 | an organization of Muslims in India who killed Hindus in September 2002; believed to have ties with Muslim terrorists in Pakistan -08045681 14 n 03 Tupac_Amaru_Revolutionary_Movement 0 Movimiento_Revolucionario_Tupac_Anaru 0 MRTA 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08979054 n 0000 | a Marxist-Leninist terrorist organization in Peru; was formed in 1983 to overthrow the Peruvian government and replace it with a Marxist regime; has connections with the ELN in Bolivia -08046032 14 n 02 Tupac_Katari_Guerrilla_Army 0 EGTK 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08852843 n 0000 | a terrorist group that is the remnants of the original Bolivian insurgents trained by Che Guevara; attacks small unprotected targets such as power pylons or oil pipelines or government buildings -08046346 14 n 01 Turkish_Hizballah 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 09039411 n 0000 | an ethnic Kurdish group of Sunni extremists formed in the late 1980s in southeastern Turkey; seeks to replace Turkey's secular regime with an Islamic state and strict shariah law; responsible for bombings and the torture and murder of Turkish and Kurdish journalists and businessmen; receives support from Iran -08046759 14 n 02 Ulster_Defence_Association 0 UDA 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08887841 n 0000 | the major Protestant paramilitary group in Northern Ireland; responsible for bombing the homes of Catholics and for criminal racketeering and selling drugs -08047032 14 n 04 United_Self-Defense_Force_of_Colombia 0 United_Self-Defense_Group_of_Colombia 0 Autodefensas_Unidas_de_Colombia 0 AUC 0 003 @i 08392137 n 0000 ;c 00759694 n 0000 ;r 08732116 n 0000 | a terrorist organization in Colombia formed in 1997 as an umbrella for local and regional paramilitary groups; is financed by earnings from narcotics and serves to protect the economic interests of its members; "the AUC conducted over 800 assassinations in one year" -08047501 14 n 02 Markaz-ud-Dawa-wal-Irshad 0 MDI 0 002 @i 08009834 n 0000 ;r 08975902 n 0000 | a Sunni organization formed in 1989 and based in Pakistan; opposes missionary groups from the United States; has Lashkar-e-Tayyiba as its armed wing -08047747 14 n 01 Red_Cross 0 001 @ 08009834 n 0000 | an international organization that cares for the sick or wounded or homeless in wartime -08047890 14 n 01 Salvation_Army 0 001 @ 08009834 n 0000 | a charitable and religious organization to evangelize and to care for the poor and homeless -08048042 14 n 03 Tammany_Hall 0 Tammany_Society 0 Tammany 0 002 @ 08008335 n 0000 #p 08259156 n 0000 | a political organization within the Democratic Party in New York City (late 1800's and early 1900's) seeking political control by corruption and bossism -08048300 14 n 02 Umma_Tameer-e-Nau 0 UTN 0 003 @ 08009834 n 0000 ;c 00759694 n 0000 ;r 08975902 n 0000 | a nongovernmental organization of Pakistani scientists that has been a supporter of terrorism; has provided information about chemical and biological and nuclear warfare to Osama bin Laden and al-Qaeda and the Taliban -08048625 14 n 01 fiefdom 0 001 @ 08008335 n 0000 | an organization that is controlled by a dominant person or group -08048743 14 n 02 line_of_defense 0 line_of_defence 0 001 @ 08008335 n 0000 | any organization whose responsibility it is to defend against something; "police are the major line of defense against crime" -08048948 14 n 02 line_organization 0 line_organisation 0 001 @ 08008335 n 0000 | the organizational structure of activities contributing directly to the organization's output -08049125 14 n 02 National_Trust 0 NT 0 002 @ 08009834 n 0000 ;r 08860123 n 0000 | an organization concerned to preserve historic monuments and buildings and places of historical interest or natural beauty; founded in 1895 and supported by endowment and private subscription -08049401 14 n 01 association 0 025 @ 08008335 n 0000 + 02589245 v 0102 + 02470175 v 0102 ~ 08089797 n 0000 ~ 08089955 n 0000 ~ 08227088 n 0000 ~ 08227214 n 0000 ~ 08227916 n 0000 %m 08228665 n 0000 ~ 08228980 n 0000 ~ 08229134 n 0000 ~ 08231184 n 0000 ~ 08235343 n 0000 ~ 08236438 n 0000 ~ 08242675 n 0000 ~ 08243851 n 0000 ~ 08244062 n 0000 ~ 08272248 n 0000 ~ 08319061 n 0000 ~ 08407330 n 0000 ~ 08407449 n 0000 ~ 08487149 n 0000 ~ 08487319 n 0000 ~ 08487504 n 0000 %m 09816771 n 0000 | a formal organization of people or groups of people; "he joined the Modern Language Association" -08049989 14 n 02 British_Commonwealth 0 Commonwealth_of_Nations 0 008 @ 08375154 n 0000 %m 08820121 n 0000 %m 08831004 n 0000 %m 08844557 n 0000 %m 08888676 n 0000 %m 08900535 n 0000 %m 08972521 n 0000 %m 08999482 n 0000 | an association of nations consisting of the United Kingdom and several former British colonies that are now sovereign states but still pay allegiance to the British Crown -08050385 14 n 01 polity 0 002 @ 08008335 n 0000 ~ 08050678 n 0000 | a politically organized unit -08050484 14 n 02 quango 0 quasi-NGO 0 001 @ 08008335 n 0000 | a quasi nongovernmental organization; an organization that is financed by the government yet acts independently of the government -08050678 14 n 03 government 0 authorities 0 regime 0 027 @ 08050385 n 0000 ;c 01124794 n 0000 + 02586619 v 0101 ~ 08051384 n 0000 ~ 08051565 n 0000 ~ 08051739 n 0000 ~ 08051946 n 0000 ~ 08052330 n 0000 ~ 08052413 n 0000 ~ 08052549 n 0000 ~ 08052690 n 0000 ~ 08052874 n 0000 ~ 08053003 n 0000 ~ 08053121 n 0000 ~ 08053260 n 0000 %m 08119821 n 0000 %m 08163273 n 0000 %p 08164585 n 0000 %m 08165455 n 0000 %m 08166187 n 0000 %p 08166318 n 0000 ~ 08178321 n 0000 ~ 08178547 n 0000 %m 08220714 n 0000 ~ 08226018 n 0000 ~ 08226127 n 0000 %m 08357784 n 0000 | the organization that is the governing authority of a political unit; "the government reduced taxes"; "the matter was referred to higher authorities" -08051384 14 n 02 authoritarian_state 0 authoritarian_regime 0 001 @ 08050678 n 0000 | a government that concentrates political power in an authority not responsible to the people -08051565 14 n 01 bureaucracy 1 002 @ 08050678 n 0000 + 03051619 a 0101 | a government that is administered primarily by bureaus that are staffed with nonelective officials -08051739 14 n 01 ancien_regime 0 002 @ 08050678 n 0000 ;r 08929922 n 0000 | a political and social system that no longer governs (especially the system that existed in France before the French Revolution) -08051946 14 n 02 court 1 royal_court 1 004 @ 08050678 n 0000 + 00751838 a 0101 ~ 08052135 n 0000 ~ 08052227 n 0000 | the sovereign and his advisers who are the governing power of a state -08052135 14 n 01 Court_of_Saint_James's 0 001 @ 08051946 n 0000 | the British royal court -08052227 14 n 02 Porte 0 Sublime_Porte 0 001 @ 08051946 n 0000 | the Ottoman court in Constantinople -08052330 14 n 01 Downing_Street 0 001 @ 08050678 n 0000 | the British government -08052413 14 n 01 empire 1 001 @ 08050678 n 0000 | a group of countries under a single authority; "the British created a great empire" -08052549 14 n 01 federal_government 0 003 @ 08050678 n 0000 ~ 08355791 n 0000 ~i 08357129 n 0000 | a government with strong central powers -08052690 14 n 01 government-in-exile 0 001 @ 08050678 n 0000 | a temporary government moved to or formed in a foreign land by exiles who hope to rule when their country is liberated -08052874 14 n 01 local_government 0 003 @ 08050678 n 0000 ~ 08225736 n 0000 ~ 08312241 n 0000 | the government of a local area -08053003 14 n 02 military_government 0 stratocracy 0 001 @ 08050678 n 0000 | government by the military and an army -08053121 14 n 01 palace 0 001 @ 08050678 n 0000 | the governing group of a kingdom; "the palace issued an order binding on all subjects" -08053260 14 n 02 papacy 0 pontificate 0 003 @ 08050678 n 0000 + 02432395 v 0201 %m 10453533 n 0000 | the government of the Roman Catholic Church -08053407 14 n 01 Soviets 0 002 @ 08178547 n 0000 ;c 06148148 n 0000 | the government of the Soviet Union; "the Soviets said they wanted to increase trade with Europe" -08053576 14 n 02 institution 0 establishment 0 012 @ 08008335 n 0000 + 02749778 a 0101 + 01231191 a 0101 ~ 08053905 n 0000 ~ 08054721 n 0000 ~ 08055150 n 0000 ~ 08055824 n 0000 ~ 08058098 n 0000 ~ 08081668 n 0000 ~ 08100907 n 0000 ~ 08276342 n 0000 ~ 08280124 n 0000 | an organization founded and united for a specific purpose -08053905 14 n 01 medical_institution 0 004 @ 08053576 n 0000 ~ 08054076 n 0000 ~ 08054226 n 0000 ~ 08054417 n 0000 | an institution created for the practice of medicine -08054076 14 n 01 clinic 0 003 @ 08053905 n 0000 + 02885529 a 0101 ~ 08054613 n 0000 | a medical establishment run by a group of medical specialists -08054226 14 n 01 extended_care_facility 0 001 @ 08053905 n 0000 | a medical institution that provides prolonged care (as in cases of prolonged illness or rehabilitation from acute illness) -08054417 14 n 01 hospital 0 004 @ 08053905 n 0000 + 02348927 v 0101 %p 08077842 n 0000 %p 08146593 n 0000 | a medical institution where sick or injured people are given medical or surgical care -08054613 14 n 01 eye_clinic 0 001 @ 08054076 n 0000 | a clinic where specialist care for a patient's eyes -08054721 14 n 03 financial_institution 0 financial_organization 0 financial_organisation 0 011 @ 08053576 n 0000 ~ 08055321 n 0000 ~ 08055516 n 0000 ~ 08055718 n 0000 ~ 08349916 n 0000 ~ 08406486 n 0000 ~ 08419354 n 0000 ~ 08419984 n 0000 ~ 08420278 n 0000 ~ 08423490 n 0000 ~ 08424222 n 0000 | an institution (public or private) that collects funds (from the public or other institutions) and invests them in financial assets -08055150 14 n 01 issuer 0 003 @ 08053576 n 0000 + 02479323 v 0101 + 00967625 v 0104 | an institution that issues something (securities or publications or currency etc.) -08055321 14 n 01 giro 0 001 @ 08054721 n 0000 | a British financial system in which a bank or a post office transfers money from one account to another when they receive authorization to do so -08055516 14 n 01 clearing_house 0 001 @ 08054721 n 0000 | a central collection place where banks exchange checks or drafts; participants maintain an account against which credits or debits are posted -08055718 14 n 01 lending_institution 0 001 @ 08054721 n 0000 | a financial institution that makes loans -08055824 14 n 01 charity 1 003 @ 08053576 n 0000 ~ 08055964 n 0000 ~ 08056128 n 0000 | an institution set up to provide help to the needy -08055964 14 n 01 community_chest 0 001 @ 08055824 n 0000 | a charity supported by individual subscriptions; defrays the demands on a community for social welfare -08056128 14 n 01 soup_kitchen 0 001 @ 08055824 n 0000 | a place where food is dispensed to the needy -08056231 14 n 01 enterprise 0 006 @ 08008335 n 0000 + 10060352 n 0102 ~ 08056471 n 0000 ~ 08056601 n 0000 ~ 08061042 n 0000 ~ 08065093 n 0000 | an organization created for business ventures; "a growing enterprise must have a bold leader" -08056471 14 n 01 giant 0 002 @ 08056231 n 0000 + 01386538 a 0101 | an unusually large enterprise; "Walton built a retail giant" -08056601 14 n 01 collective 0 004 @ 08056231 n 0000 + 02433767 v 0101 + 02433767 v 0102 ~ 08056747 n 0000 | members of a cooperative enterprise -08056747 14 n 01 collective_farm 0 003 @ 08056601 n 0000 ~ 08056873 n 0000 ~ 08057068 n 0000 | a farm operated collectively -08056873 14 n 01 kibbutz 0 003 @ 08056747 n 0000 ;r 08792548 n 0000 %m 10230335 n 0000 | a collective farm or settlement owned by its members in modern Israel; children are reared collectively -08057068 14 n 01 kolkhoz 0 003 @ 08056747 n 0000 ;r 09003284 n 0000 %m 10240417 n 0000 | a collective farm owned by the communist state -08057206 14 n 01 agency 1 010 @ 08061042 n 0000 ~ 08353912 n 0000 ~ 08354065 n 0000 ~ 08354243 n 0000 ~ 08354352 n 0000 ~ 08354842 n 0000 ~ 08355075 n 0000 ~ 08355506 n 0000 ~ 08355692 n 0000 ~ 08419774 n 0000 | a business that serves other businesses -08057460 14 n 01 brokerage 1 003 @ 08061042 n 0000 + 02261464 v 0101 ~ 08070236 n 0000 | the business of a broker; charges a fee to arrange a contract between two parties -08057633 14 n 02 carrier 0 common_carrier 0 003 @ 08061042 n 0000 + 01449974 v 0102 ~ 03671473 n 0000 | a person or firm in the business of transporting people or goods or messages -08057816 14 n 01 chain 2 007 @ 08061042 n 0000 ;c 01094725 n 0000 %m 03001115 n 0000 ~ 08061609 n 0000 ~ 08061695 n 0000 ~ 08061801 n 0000 ~ 08062206 n 0000 | (business) a number of similar establishments (stores or restaurants or banks or hotels or theaters) under one ownership -08058098 14 n 01 company 1 037 @ 08053576 n 0000 ~ 08002015 n 0000 ~ 08002125 n 0000 ~ 08002269 n 0000 ~ 08002384 n 0000 ~ 08002578 n 0000 ~ 08002717 n 0000 ~ 08003035 n 0000 ~ 08003173 n 0000 ~ 08003427 n 0000 ~ 08003525 n 0000 ~ 08003619 n 0000 ~ 08003717 n 0000 ~ 08003839 n 0000 ~ 08003935 n 0000 ~ 08004089 n 0000 ~ 08061905 n 0000 ~ 08069241 n 0000 ~ 08069342 n 0000 ~ 08069487 n 0000 ~ 08069627 n 0000 ~ 08075929 n 0000 ~ 08076075 n 0000 ~ 08076705 n 0000 ~ 08185211 n 0000 ~ 08185369 n 0000 ~ 08186047 n 0000 ~ 08186898 n 0000 ~ 08234935 n 0000 ~ 08235076 n 0000 ~ 08235173 n 0000 ~ 08383310 n 0000 ~ 08383417 n 0000 ~ 08478261 n 0000 ~ 08478482 n 0000 ~ 08478702 n 0000 ~ 08481715 n 0000 | an institution created to conduct business; "he only invests in large well-established companies"; "he started the company in his garage" -08058937 14 n 02 conglomerate 0 empire 2 003 @ 08059412 n 0000 + 01330114 a 0101 ~ 08062842 n 0000 | a group of diverse companies under common ownership and run as a single organization -08059125 14 n 01 large_cap 0 001 @ 08059412 n 0000 | a corporation with a large capitalization; "he works for a large cap" -08059250 14 n 01 small_cap 0 001 @ 08059412 n 0000 | a corporation with a small capitalization; "this annual conference is a showcase for ambitious small caps" -08059412 14 n 02 corporation 0 corp 0 018 @ 08059870 n 0000 -c 00176052 n 0000 -c 01189650 n 0000 -c 07219297 n 0000 ~ 08058937 n 0000 ~ 08059125 n 0000 ~ 08059250 n 0000 ~ 08383690 n 0000 ~ 08384041 n 0000 ~ 08384201 n 0000 ~ 08384342 n 0000 ~ 08384539 n 0000 ~ 08384738 n 0000 ~ 08470928 n 0000 -c 10067600 n 0000 -c 13250244 n 0000 -c 13299804 n 0000 -c 13341052 n 0000 | a business firm whose articles of incorporation have been approved in some state -08059870 14 n 03 firm 0 house 1 business_firm 0 008 @ 08061042 n 0000 ~ 08059412 n 0000 ~ 08062326 n 0000 ~ 08062464 n 0000 ~ 08062623 n 0000 ~ 08063446 n 0000 ~ 08064039 n 0000 ~ 08076946 n 0000 | the members of a business organization that owns or operates one or more establishments; "he worked for a brokerage house" -08060193 14 n 02 franchise 0 dealership 0 004 @ 08061042 n 0000 + 10720453 n 0203 + 08063446 n 0201 + 02447542 v 0101 | a business established or operated under an authorization to sell or distribute a company's goods or services in a particular area -08060446 14 n 03 manufacturer 0 maker 0 manufacturing_business 0 007 @ 08061042 n 0000 + 01621555 v 0202 + 01653442 v 0101 ~ 08066095 n 0000 ~ 08066644 n 0000 ~ 08066763 n 0000 ~ 08066965 n 0000 | a business engaged in manufacturing some product -08060694 14 n 01 partnership 0 005 @ 08061042 n 0000 + 10402417 n 0101 + 09935434 n 0103 ~ 08060878 n 0000 %m 10402417 n 0000 | the members of a business venture created by contract -08060878 14 n 01 copartnership 0 002 @ 08060694 n 0000 + 09964064 n 0101 | a partnership in which employees get a share of the profits in addition to their wages -08061042 14 n 05 business 0 concern 0 business_concern 0 business_organization 0 business_organisation 0 015 @ 08056231 n 0000 ;c 01094725 n 0000 -c 04196803 n 0000 ~ 08057206 n 0000 ~ 08057460 n 0000 ~ 08057633 n 0000 ~ 08057816 n 0000 ~ 08059870 n 0000 ~ 08060193 n 0000 ~ 08060446 n 0000 ~ 08060694 n 0000 ~ 08065937 n 0000 ~ 08073992 n 0000 ~ 08076578 n 0000 %m 08220714 n 0000 | a commercial or industrial enterprise and the people who constitute it; "he bought his brother's business"; "a small mom-and-pop business"; "a racially integrated business concern" -08061609 14 n 01 apparel_chain 0 001 @ 08057816 n 0000 | a chain of clothing stores -08061695 14 n 01 discount_chain 0 002 @ 08057816 n 0000 %m 03206405 n 0000 | a chain of discount stores -08061801 14 n 01 restaurant_chain 0 002 @ 08057816 n 0000 %m 04081281 n 0000 | a chain of restaurants -08061905 14 n 01 distributor 0 003 @ 08058098 n 0000 ~ 08062092 n 0000 ~ 08062206 n 0000 | a company that markets merchandise; "his company is a large distributor of software products" -08062092 14 n 01 direct_mailer 0 001 @ 08061905 n 0000 | a distributor who uses direct mail to sell merchandise -08062206 14 n 01 retail_chain 0 003 @ 08057816 n 0000 @ 08061905 n 0000 %m 03176763 n 0000 | a chain of retail stores -08062326 14 n 01 accounting_firm 0 001 @ 08059870 n 0000 | a firm of accountants who provide accounting and auditing services for a fee -08062464 14 n 02 consulting_firm 0 consulting_company 0 001 @ 08059870 n 0000 | a firm of experts providing professional advice to an organization for a fee -08062623 14 n 04 publisher 0 publishing_house 0 publishing_firm 0 publishing_company 0 005 @ 08059870 n 0000 + 01745722 v 0102 + 00967625 v 0101 ~ 08062970 n 0000 ~ 08063303 n 0000 | a firm in the publishing business -08062842 14 n 02 publishing_conglomerate 0 publishing_empire 0 001 @ 08058937 n 0000 | a conglomerate of publishing companies -08062970 14 n 03 newspaper 0 paper 0 newspaper_publisher 0 001 @ 08062623 n 0000 | a business firm that publishes newspapers; "Murdoch owns many newspapers" -08063129 14 n 01 newsroom 0 001 @ 08439955 n 0000 | the staff of a newspaper or the news department of a periodical; "every newspaper editor is criticized by the newsroom" -08063303 14 n 02 magazine 0 magazine_publisher 0 001 @ 08062623 n 0000 | a business firm that publishes magazines; "he works for a magazine" -08063446 14 n 01 dealer 0 008 @ 08059870 n 0000 + 08060193 n 0102 + 02245993 v 0101 + 02244956 v 0101 ~ 08063650 n 0000 ~ 08063738 n 0000 ~ 08063836 n 0000 ~ 08063947 n 0000 | a firm engaged in trading -08063650 14 n 01 car_dealer 0 001 @ 08063446 n 0000 | a firm that sells and buys cars -08063738 14 n 01 computer_dealer 0 001 @ 08063446 n 0000 | a firm that sells and buys computers -08063836 14 n 02 jewelry_dealer 0 jewelry_store 0 001 @ 08063446 n 0000 | a firm that sells and buys jewelry -08063947 14 n 01 truck_dealer 0 001 @ 08063446 n 0000 | a firm that sells and buys trucks -08064039 14 n 01 law_firm 0 002 @ 08059870 n 0000 ;c 08441203 n 0000 | a firm of lawyers -08064130 14 n 04 defense 3 defence 3 defense_force 0 defence_force 0 003 @ 08008335 n 0000 + 01129876 v 0201 ~ 08064372 n 0000 | an organization of defenders that provides resistance against attack; "he joined the defense against invasion" -08064372 14 n 01 bastion 0 001 @ 08064130 n 0000 | a group that defends a principle; "a bastion against corruption"; "the last bastion of communism" -08064523 14 n 04 defense 0 defence 0 defense_team 0 defense_lawyers 0 003 @ 07951464 n 0000 + 02581675 v 0201 ! 08064742 n 0101 | the defendant and his legal advisors collectively; "the defense called for a mistrial" -08064742 14 n 01 prosecution 0 002 @ 07951464 n 0000 ! 08064523 n 0101 | the lawyers acting for the state to put the case against the defendant -08064888 14 n 01 planting 0 001 @ 07951464 n 0000 | a collection of plants (trees or shrubs or flowers) in a particular area; "the landscape architect suggested a small planting in the northwest corner" -08065093 14 n 01 commercial_enterprise 0 003 @ 08056231 n 0000 ~ 01100877 n 0000 ~ 08065234 n 0000 | an enterprise connected with commerce -08065234 14 n 01 industry 0 030 @ 08065093 n 0000 ;c 00923444 n 0000 + 10204177 n 0101 ~ 08066186 n 0000 ~ 08066317 n 0000 ~ 08066491 n 0000 ~ 08067077 n 0000 ~ 08067218 n 0000 ~ 08067342 n 0000 ~ 08067460 n 0000 ~ 08067565 n 0000 ~ 08067683 n 0000 ~ 08067801 n 0000 ~ 08067951 n 0000 ~ 08068151 n 0000 ~ 08068691 n 0000 ~ 08068788 n 0000 ~ 08068924 n 0000 ~ 08069050 n 0000 ~ 08069768 n 0000 ~ 08072837 n 0000 ~ 08073700 n 0000 ~ 08074109 n 0000 ~ 08074225 n 0000 ~ 08074330 n 0000 ~ 08074582 n 0000 ~ 08074691 n 0000 ~ 08074879 n 0000 ~ 08075009 n 0000 ~ 08075140 n 0000 | the people or companies engaged in a particular kind of commercial enterprise; "each industry has its own trade publications" -08065937 14 n 01 processor 0 002 @ 08061042 n 0000 + 00515154 v 0101 | a business engaged in processing agricultural products and preparing them for market -08066095 14 n 02 armorer 0 armourer 0 001 @ 08060446 n 0000 | a manufacturer of firearms -08066186 14 n 02 aluminum_business 0 aluminum_industry 0 001 @ 08065234 n 0000 | manufacturers of aluminum considered as a group -08066317 14 n 05 apparel_industry 0 garment_industry 0 fashion_industry 0 fashion_business 0 rag_trade 0 001 @ 08065234 n 0000 | makers and sellers of fashionable clothing -08066491 14 n 02 banking_industry 0 banking_system 0 004 @ 08065234 n 0000 %m 08420278 n 0000 ~ 08421975 n 0000 ~ 08422247 n 0000 | banks collectively -08066644 14 n 01 bottler 0 002 @ 08060446 n 0000 + 01502279 v 0101 | a manufacturer that makes and bottles beverages -08066763 14 n 06 car_manufacturer 0 car_maker 0 carmaker 0 auto_manufacturer 0 auto_maker 0 automaker 0 002 @ 08060446 n 0000 #m 08067077 n 0000 | a business engaged in the manufacture of automobiles -08066965 14 n 01 computer_business 0 001 @ 08060446 n 0000 | a business that manufactures and sells computers -08067077 14 n 01 automobile_industry 0 002 @ 08065234 n 0000 %m 08066763 n 0000 | the manufacturers of automobiles considered collectively -08067218 14 n 01 aviation 1 002 @ 08065234 n 0000 + 01941093 v 0102 | the operation of aircraft to provide transportation -08067342 14 n 01 chemical_industry 0 001 @ 08065234 n 0000 | the manufacturers of chemicals considered collectively -08067460 14 n 01 coal_industry 0 001 @ 08065234 n 0000 | the producers of coal considered collectively -08067565 14 n 01 computer_industry 0 001 @ 08065234 n 0000 | the manufacturers of computers considered collectively -08067683 14 n 02 construction_industry 0 housing_industry 0 001 @ 08065234 n 0000 | an industry that builds housing -08067801 14 n 01 electronics_industry 0 002 @ 08065234 n 0000 %m 08003035 n 0000 | the manufacturers of electronic products considered collectively -08067951 14 n 03 entertainment_industry 0 show_business 0 show_biz 0 002 @ 08065234 n 0000 %p 08068151 n 0000 | those involved in providing entertainment: radio and television and films and theater -08068151 14 n 02 film_industry 0 movie_industry 0 005 @ 08065234 n 0000 #p 08067951 n 0000 ~ 08068375 n 0000 ~ 08068457 n 0000 ~ 08068597 n 0000 | the entertainment industries involved in producing and distributing movies -08068375 14 n 01 Bollywood 0 001 @ 08068151 n 0000 | the film industry of India -08068457 14 n 03 filmdom 0 screenland 0 screen 0 001 @ 08068151 n 0000 | the personnel of the film industry; "a star of stage and screen" -08068597 14 n 01 Hollywood 0 001 @ 08068151 n 0000 | the film industry of the United States -08068691 14 n 01 growth_industry 0 001 @ 08065234 n 0000 | an industry that is growing rapidly -08068788 14 n 01 lighting_industry 0 001 @ 08065234 n 0000 | an industry devoted to manufacturing and selling and installing lighting -08068924 14 n 02 munitions_industry 0 arms_industry 0 001 @ 08065234 n 0000 | an industry that manufacturers weapons of war -08069050 14 n 03 oil_industry 0 refining_industry 0 oil_business 0 003 @ 08065234 n 0000 %m 08069241 n 0000 %m 08069487 n 0000 | an industry that produces and delivers oil and oil products -08069241 14 n 01 oil_company 0 002 @ 08058098 n 0000 #m 08069050 n 0000 | a company that sells oil -08069342 14 n 02 packaging_company 0 packaging_concern 0 001 @ 08058098 n 0000 | a company that packages goods for sale or shipment or storage -08069487 14 n 01 pipeline_company 0 002 @ 08058098 n 0000 #m 08069050 n 0000 | a company that operates oil pipelines for the oil industry -08069627 14 n 03 printing_concern 0 printing_business 0 printing_company 0 001 @ 08058098 n 0000 | a company that does commercial printing -08069768 14 n 01 plastics_industry 0 001 @ 08065234 n 0000 | an industry that manufactures plastic articles -08069878 14 n 03 brokerage 0 brokerage_firm 0 securities_firm 0 005 @ 08419984 n 0000 + 02261464 v 0101 ~ 08070130 n 0000 ~ 08070341 n 0000 %m 09777012 n 0000 | a stock broker's business; charges a fee to act as intermediary between buyer and seller -08070130 14 n 01 bucket_shop 0 001 @ 08069878 n 0000 | an unethical or overly aggressive brokerage firm -08070236 14 n 01 commodity_brokerage 0 001 @ 08057460 n 0000 | a brokerage firm dealing in commodities -08070341 14 n 02 marriage_brokerage 0 marriage_mart 0 001 @ 08069878 n 0000 | a business that arranges marriage contracts -08070465 14 n 05 insurance_company 0 insurance_firm 0 insurer 0 insurance_underwriter 0 underwriter 0 003 @ 08419984 n 0000 + 00891216 v 0503 + 00891216 v 0302 | a financial institution that sells insurance -08070674 14 n 01 pension_fund 0 001 @ 08419984 n 0000 | a financial institution that collects regular contributions from employers to provide retirement income for employees -08070850 14 n 04 investment_company 0 investment_trust 0 investment_firm 0 fund 0 010 @ 08419984 n 0000 + 02215966 v 0401 + 02216083 v 0401 ~ 08071229 n 0000 ~ 08071516 n 0000 ~ 08071908 n 0000 ~ 08072104 n 0000 ~ 08072287 n 0000 ~ 08072536 n 0000 ~ 13362734 n 0000 | a financial institution that sells shares to individuals and invests in securities issued by other companies -08071229 14 n 02 hedge_fund 0 hedgefund 0 001 @ 08070850 n 0000 | a flexible investment company for a small number of large investors (usually the minimum investment is $1 million); can use high-risk techniques (not allowed for mutual funds) such as short-selling and heavy leveraging -08071516 14 n 04 mutual_fund 0 mutual_fund_company 0 open-end_fund 0 open-end_investment_company 0 002 @ 08070850 n 0000 ~ 08071756 n 0000 | a regulated investment company with a pool of assets that regularly sells and redeems its shares -08071756 14 n 01 index_fund 0 001 @ 08071516 n 0000 | a mutual fund that invests in the stocks that are the basis of a well-known stock or bond index -08071908 14 n 02 closed-end_fund 0 closed-end_investment_company 0 001 @ 08070850 n 0000 | a regulated investment company that issues a fixed number of shares which are listed on a stock market -08072104 14 n 01 face-amount_certificate_company 0 001 @ 08070850 n 0000 | a regulated investment company that pays a stated amount to certificate holders on a stated maturity date -08072287 14 n 02 Real_Estate_Investment_Trust 0 REIT 0 001 @ 08070850 n 0000 | an investment trust that owns and manages a pool of commercial properties and mortgages and other real estate assets; shares can be bought and sold in the stock market -08072536 14 n 02 unit_investment_trust 0 unit_trust 0 001 @ 08070850 n 0000 | a regulated investment company consisting of professional managers who issue redeemable securities representing a portfolio of many different securities; "you can invest in a unit investment trust for as little as $1000" -08072837 14 n 02 market 1 securities_industry 0 008 @ 08065234 n 0000 %m 04323026 n 0000 ~ 08073130 n 0000 ~ 08073243 n 0000 ~ 08073355 n 0000 ~ 08073468 n 0000 ~ 08073601 n 0000 %m 08419984 n 0000 | the securities markets in the aggregate; "the market always frustrates the small investor" -08073130 14 n 01 bear_market 0 001 @ 08072837 n 0000 | a market characterized by falling prices for securities -08073243 14 n 01 bull_market 0 001 @ 08072837 n 0000 | a market characterized by rising prices for securities -08073355 14 n 01 the_City 0 001 @ 08072837 n 0000 | used to allude to the securities industry of Great Britain -08073468 14 n 02 Wall_Street 0 the_Street 0 001 @ 08072837 n 0000 | used to allude to the securities industry of the United States -08073601 14 n 01 money_market 0 001 @ 08072837 n 0000 | a market for short-term debt instruments -08073700 14 n 01 service_industry 0 002 @ 08065234 n 0000 ~ 08073844 n 0000 | an industry that provides services rather than tangible objects -08073844 14 n 01 management_consulting 0 001 @ 08073700 n 0000 | a service industry that provides advice to those in charge of running a business -08073992 14 n 01 shipbuilder 0 002 @ 08061042 n 0000 #m 08074109 n 0000 | a business that builds and repairs ships -08074109 14 n 01 shipbuilding_industry 0 002 @ 08065234 n 0000 %m 08073992 n 0000 | an industry that builds ships -08074225 14 n 01 shoe_industry 0 001 @ 08065234 n 0000 | an industry that manufactures and sells shoes -08074330 14 n 01 sign_industry 0 001 @ 08065234 n 0000 | an industry that produces signs -08074421 14 n 01 signage 0 001 @ 07951464 n 0000 | signs collectively (especially commercial signs or posters); "there will be signage displayed at each post" -08074582 14 n 01 steel_industry 0 001 @ 08065234 n 0000 | the industry that makes steel and steel products -08074691 14 n 01 sunrise_industry 0 003 @ 08065234 n 0000 ;c 06271778 n 0000 ;c 06099269 n 0000 | a new industry that is expanding rapidly (especially telecommunications or electronics) -08074879 14 n 01 tobacco_industry 0 001 @ 08065234 n 0000 | an industry that manufactures and sells products containing tobacco -08075009 14 n 02 toy_industry 0 toy_business 0 001 @ 08065234 n 0000 | an industry that manufactures and sells toys for children -08075140 14 n 01 trucking_industry 0 002 @ 08065234 n 0000 %m 08004210 n 0000 | an industry that provides transportation for commercial products -08075287 14 n 01 agriculture 0 001 @ 07974025 n 0000 | the class of people engaged in growing food -08075388 14 n 03 brotherhood 0 fraternity 0 sodality 0 007 @ 07974025 n 0000 + 10621400 n 0301 + 09876701 n 0101 %m 09876892 n 0000 %m 10621400 n 0000 + 02389927 v 0202 + 02389927 v 0201 | people engaged in a particular occupation; "the medical fraternity" -08075647 14 n 01 sisterhood 0 004 @ 08149781 n 0000 + 10602470 n 0101 %m 10602470 n 0000 %m 10602695 n 0000 | a religious society of women who live together as sisters (especially an order of nuns) -08075847 14 n 01 establishment 1 001 @ 08008335 n 0000 | any large organization -08075929 14 n 01 corporate_investor 0 002 @ 08058098 n 0000 ~ 08076253 n 0000 | a company that invests in (acquires control of) other companies -08076075 14 n 02 target_company 0 takeover_target 0 002 @ 08058098 n 0000 ~ 08076455 n 0000 | a company that has been chosen as attractive for takeover by a potential acquirer -08076253 14 n 01 raider 0 002 @ 08075929 n 0000 + 02275152 v 0101 | a corporate investor who intends to take over a company by buying a controlling interest in its stock and installing new management -08076455 14 n 01 sleeping_beauty 0 001 @ 08076075 n 0000 | a potential takeover target that has not yet been put in play -08076578 14 n 01 underperformer 0 002 @ 08061042 n 0000 + 02562585 v 0102 | a business that is less successful than expected -08076705 14 n 01 white_knight 0 002 @ 08058098 n 0000 ~ 08076833 n 0000 | a company that is a friendly acquirer in a takeover -08076833 14 n 01 white_squire 0 001 @ 08076705 n 0000 | a white knight that buys less than a majority interest -08076946 14 n 01 auction_house 0 001 @ 08059870 n 0000 | a firm that conducts auctions -08077035 14 n 01 A-team 0 001 @ 08208560 n 0000 | a group of elite soldiers or a leadership group of advisors or workers in an organization -08077177 14 n 01 battery 3 002 @ 08208560 n 0000 #p 08079319 n 0000 | a unit composed of the pitcher and catcher -08077292 14 n 02 administrative_unit 0 administrative_body 0 017 @ 08189659 n 0000 ~ 08143486 n 0000 ~ 08153874 n 0000 ~ 08220714 n 0000 ~ 08299493 n 0000 ~ 08310949 n 0000 ~ 08324274 n 0000 ~ 08324514 n 0000 ~ 08337324 n 0000 ~ 08339454 n 0000 ~ 08344551 n 0000 ~ 08353244 n 0000 ~ 08353406 n 0000 ~ 08353734 n 0000 ~ 08354523 n 0000 ~ 08423840 n 0000 ~ 08485830 n 0000 | a unit with administrative responsibilities -08077711 14 n 01 company 5 001 @ 08189659 n 0000 | a unit of firefighters including their equipment; "a hook-and-ladder company" -08077842 14 n 01 coronary_care_unit 0 002 @ 08146593 n 0000 #p 08054417 n 0000 | a hospital unit specially staffed and equipped to treat patients with serious cardiac problems -08078020 14 n 05 family 2 household 0 house 5 home 0 menage 0 009 @ 08189659 n 0000 + 02459633 v 0401 + 10182499 n 0202 ~ 07973373 n 0000 ~ 07973487 n 0000 ~ 07973653 n 0000 ~ 07973782 n 0000 ~ 07973868 n 0000 ~ 08078453 n 0000 | a social unit living together; "he moved his family to Virginia"; "It was a good Christian household"; "I waited until the whole house was asleep"; "the teacher asked how many people made up his home" -08078453 14 n 01 menage_a_trois 0 001 @ 08078020 n 0000 | household for three; an arrangement where a married couple and a lover of one of them live together while sharing sexual relations -08078644 14 n 01 flying_squad 0 001 @ 08208560 n 0000 | a mobile group of trained people (police or executives or officials) able to move quickly in the case of emergencies -08078819 14 n 02 major-league_team 0 major-league_club 0 003 @ 08208560 n 0000 #m 08231499 n 0000 %m 10283931 n 0000 | a team that plays in a major league -08078976 14 n 02 minor-league_team 0 minor-league_club 0 004 @ 08208560 n 0000 #m 08231678 n 0000 ~ 08079151 n 0000 %m 10321340 n 0000 | a team that plays in a minor league -08079151 14 n 02 farm_team 0 farm_club 0 002 @ 08078976 n 0000 ;c 00471613 n 0000 | a minor-league team that is owned by a major-league team (especially in baseball) -08079319 14 n 01 baseball_team 0 012 @ 08208560 n 0000 %m 00722984 n 0000 %m 00723241 n 0000 %m 00723547 n 0000 %m 00723783 n 0000 %m 00723984 n 0000 %m 00724168 n 0000 %m 00724433 n 0000 %m 00724684 n 0000 %m 00724898 n 0000 %p 08077177 n 0000 ~ 08079613 n 0000 | a team that plays baseball -08079613 14 n 04 baseball_club 0 ball_club 0 club 1 nine 0 002 @ 08079319 n 0000 #m 08231874 n 0000 | a team of professional baseball players who play and travel together; "each club played six home games with teams in its own division" -08079852 14 n 02 basketball_team 0 five 0 005 @ 08208560 n 0000 #m 08232299 n 0000 %m 00725383 n 0000 %m 00725506 n 0000 %m 00725673 n 0000 | a team that plays basketball -08080025 14 n 02 football_team 0 eleven 0 015 @ 08208560 n 0000 #m 08232496 n 0000 %m 00726369 n 0000 %m 00726567 n 0000 %m 00726867 n 0000 %m 00727002 n 0000 %m 00727137 n 0000 %m 00727333 n 0000 %m 00727500 n 0000 %m 00727743 n 0000 %m 00727901 n 0000 %m 00728065 n 0000 %m 08429744 n 0000 %m 08429899 n 0000 %m 08430054 n 0000 | a team that plays football -08080386 14 n 01 hockey_team 0 003 @ 08208560 n 0000 #m 08232603 n 0000 %m 00728464 n 0000 | a team that plays ice hockey -08080510 14 n 02 junior_varsity 0 JV 0 001 @ 08208560 n 0000 | a college or university team that competes at a level below the varsity team -08080652 14 n 02 varsity 1 first_team 0 001 @ 08208560 n 0000 | a team representing a college or university -08080762 14 n 01 second_string 0 001 @ 08208560 n 0000 | a squad of players that are available either individually or as a team to relieve or replace the players who started the game -08080947 14 n 02 police_squad 0 squad 2 004 @ 08208560 n 0000 ~ 08211169 n 0000 ~ 08214698 n 0000 ~ 08274126 n 0000 | a small squad of policemen trained to deal with a particular kind of crime -08081142 14 n 01 powerhouse 0 001 @ 08208560 n 0000 | a team considered to be the best of its class -08081244 14 n 02 offense 0 offence 0 003 @ 08208560 n 0000 ! 08081403 n 0202 ! 08081403 n 0101 | the team that has the ball (or puck) and is trying to score -08081403 14 n 03 defense 1 defence 1 defending_team 0 005 @ 08208560 n 0000 ;c 00523513 n 0000 + 01127795 v 0201 ! 08081244 n 0202 ! 08081244 n 0101 | (sports) the team that is trying to prevent the other team from scoring; "his teams are always good on defense" -08081668 14 n 03 religion 0 faith 0 organized_religion 0 020 @ 08053576 n 0000 + 02056265 a 0101 + 09629065 n 0101 ~ 08082602 n 0000 ~ 08094013 n 0000 ~ 08096624 n 0000 ~ 08098346 n 0000 ~ 08098708 n 0000 ~ 08099825 n 0000 ~ 08100033 n 0000 ~ 08100320 n 0000 ~ 08100778 n 0000 ~ 08149781 n 0000 ~ 08151229 n 0000 ~ 08151490 n 0000 -c 00823129 v 0000 -c 01527877 v 0000 -c 02474603 v 0000 -c 02474780 v 0000 -c 02551602 v 0000 | an institution to express belief in a divine power; "he was raised in the Baptist religion"; "a member of his own faith contradicted him" -08082236 14 n 02 Christendom 0 Christianity 2 005 @ 07965085 n 0000 + 02952275 a 0201 + 09678009 n 0101 %p 08082602 n 0000 %p 08082899 n 0000 | the collective body of Christians throughout the world and history (found predominantly in Europe and the Americas and Australia); "for a thousand years the Roman Catholic Church was the principal church of Christendom" -08082602 14 n 02 church 0 Christian_church 0 009 @ 08081668 n 0000 #p 08082236 n 0000 ~ 08083083 n 0000 ~ 08083320 n 0000 ~ 08085359 n 0000 ~ 08087203 n 0000 ~ 08087570 n 0000 ~ 08093421 n 0000 %m 09678009 n 0000 | one of the groups of Christians who have their own beliefs and forms of worship -08082899 14 n 01 church 1 002 @ 07965085 n 0000 #p 08082236 n 0000 | the body of people who attend or belong to a particular local church; "our church is hosting a picnic next week" -08083083 14 n 02 Armenian_Church 0 Armenian_Apostolic_Orthodox_Church 0 002 @ 08082602 n 0000 #p 09017526 n 0000 | an independent Christian church established in Armenia since 300; was influenced by both Roman and Byzantine traditions -08083320 14 n 01 Catholic_Church 0 007 @ 08082602 n 0000 ~ 08083599 n 0000 ~ 08086050 n 0000 ~ 08086219 n 0000 ~ 08086356 n 0000 ~ 08086987 n 0000 %m 09679925 n 0000 | any of several churches claiming to have maintained historical continuity with the original Christian Church -08083599 14 n 05 Roman_Catholic 0 Western_Church 0 Roman_Catholic_Church 0 Church_of_Rome 0 Roman_Church 0 071 @ 08083320 n 0000 -c 00094500 n 0000 -c 01033714 n 0000 -c 01033903 n 0000 -c 01034077 n 0000 -c 01034685 n 0000 -c 01039307 n 0000 -c 01040128 n 0000 -c 01040390 n 0000 -c 01042242 n 0000 -c 01043189 n 0000 -c 01043333 n 0000 -c 03784270 n 0000 -c 03880129 n 0000 -c 05987650 n 0000 -c 06385434 n 0000 -c 06417096 n 0000 -c 06417279 n 0000 -c 06448594 n 0000 -c 06457796 n 0000 -c 06628450 n 0000 -c 06628663 n 0000 -c 06631140 n 0000 -c 06790557 n 0000 -c 07033433 n 0000 %p 08085535 n 0000 %p 08085648 n 0000 -c 08085648 n 0000 %p 08085824 n 0000 -c 08085824 n 0000 -c 08335414 n 0000 %m 09680504 n 0000 -c 09799607 n 0000 -c 09857200 n 0000 -c 09876701 n 0000 -c 09894143 n 0000 -c 09996920 n 0000 -c 10022111 n 0000 -c 10024621 n 0000 -c 10212338 n 0000 -c 10329789 n 0000 -c 10368113 n 0000 -c 10413834 n 0000 -c 10457597 n 0000 -c 10458834 n 0000 -c 10578162 n 0000 -c 10602470 n 0000 -c 10602695 n 0000 -c 10750640 n 0000 -c 10815648 n 0000 -c 10820790 n 0000 -c 10827155 n 0000 -c 10828573 n 0000 -c 10837918 n 0000 -c 10840021 n 0000 -c 10840769 n 0000 -c 10856486 n 0000 -c 10868980 n 0000 -c 10938363 n 0000 -c 10978098 n 0000 -c 11013876 n 0000 -c 11015080 n 0000 -c 11071177 n 0000 -c 11073061 n 0000 -c 11083064 n 0000 -c 11086774 n 0000 -c 15181556 n 0000 -c 15192890 n 0000 -c 15193271 n 0000 -c 15229408 n 0000 -c 15298283 n 0000 | the Christian Church based in the Vatican and presided over by a pope and an episcopal hierarchy -08085159 14 n 03 Albigenses 0 Cathars 0 Cathari 0 002 @ 08149781 n 0000 + 02609673 a 0101 | a Christian religious sect in southern France in the 12th and 13th centuries; believers in Albigensianism -08085359 14 n 01 Nestorian_Church 0 001 @ 08082602 n 0000 | a Christian Church in the Middle East that followed Nestorianism; there is still a small Nestorian Church in Iraq -08085535 14 n 01 Rome 0 002 @ 08381436 n 0000 #p 08083599 n 0000 | the leadership of the Roman Catholic Church -08085648 14 n 01 Curia 0 003 @ 08164585 n 0000 #p 08083599 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) the central administration governing the Roman Catholic Church -08085824 14 n 02 Sacred_College 0 College_of_Cardinals 0 004 @ 07965085 n 0000 #p 08083599 n 0000 ;c 08083599 n 0000 %m 09894143 n 0000 | (Roman Catholic Church) the body of cardinals who advise the Pope and elect new Popes -08086050 14 n 01 Old_Catholic_Church 0 002 @ 08083320 n 0000 %m 09680908 n 0000 | Catholic churches that broke away from the Roman Catholic Church in the 18th century -08086219 14 n 02 Eastern_Church 0 Byzantine_Church 0 001 @ 08083320 n 0000 | the Catholic Church as it existed in the Byzantine Empire -08086356 14 n 05 Orthodox_Church 0 Orthodox_Catholic_Church 0 Eastern_Orthodox_Church 0 Eastern_Church 2 Eastern_Orthodox 0 005 @ 08083320 n 0000 -c 01040390 n 0000 ~ 08086646 n 0000 ~ 08086821 n 0000 -c 09857200 n 0000 | derived from the Byzantine Church and adhering to Byzantine rites -08086646 14 n 02 Greek_Orthodox_Church 0 Greek_Church 0 002 @ 08086356 n 0000 %m 09680387 n 0000 | state church of Greece; an autonomous part of the Eastern Orthodox Church -08086821 14 n 01 Russian_Orthodox_Church 0 001 @ 08086356 n 0000 | an independent church with its own Patriarch; until 1917 it was the established church or Russia -08086987 14 n 02 Uniat_Church 0 Uniate_Church 0 002 @ 08083320 n 0000 %m 09681107 n 0000 | any of several churches in eastern Europe or the Middle East that acknowledge papal authority but retain their own liturgy -08087203 14 n 01 Coptic_Church 0 002 @ 08082602 n 0000 %m 09681234 n 0000 | the ancient Christian church of Egypt -08087319 14 n 01 Pentecostal_religion 0 002 @ 08087570 n 0000 %m 10414865 n 0000 | any fundamentalist Protestant Church that uses revivalistic methods to achieve experiences comparable to the Pentecostal experiences of the first Christian disciples -08087570 14 n 02 Protestant_Church 0 Protestant 0 005 @ 08082602 n 0000 -c 01042242 n 0000 ~ 08087319 n 0000 %m 08147188 n 0000 %m 09679316 n 0000 | the Protestant churches and denominations collectively -08087776 14 n 02 Christian_Church 2 Disciples_of_Christ 0 001 @ 08147188 n 0000 | a Protestant church that accepts the Bible as the only source of true Christian faith and practices baptism by immersion -08087981 14 n 03 Anglican_Church 0 Anglican_Communion 0 Church_of_England 0 013 @ 08147188 n 0000 ;c 01032368 n 0000 -c 06456759 n 0000 ~ 08088472 n 0000 ~ 08088675 n 0000 ~ 08088792 n 0000 %m 09680235 n 0000 -c 09804343 n 0000 -c 09857200 n 0000 %m 09958292 n 0000 -c 10596348 n 0000 -c 10750188 n 0000 -c 15193271 n 0000 | the national church of England (and all other churches in other countries that share its beliefs); has its see in Canterbury and the sovereign as its temporal head -08088472 14 n 02 Episcopal_Church 2 Protestant_Episcopal_Church 0 003 @ 08087981 n 0000 %m 10062275 n 0000 -c 10750365 n 0000 | United States church that is in communication with the see of Canterbury -08088675 14 n 01 Church_of_Ireland 0 001 @ 08087981 n 0000 | autonomous branch of the Church of England in Ireland -08088792 14 n 02 Episcopal_Church 1 Episcopal_Church_of_Scotland 0 002 @ 08087981 n 0000 ;r 08890097 n 0000 | an autonomous branch of the Anglican Communion in Scotland -08088963 14 n 02 High_Church 0 High_Anglican_Church 0 002 @ 08149781 n 0000 ;c 01032368 n 0000 | a group in the Anglican Church that emphasizes the Catholic tradition (especially in sacraments and rituals and obedience to church authority) -08089205 14 n 03 Church_of_Jesus_Christ_of_Latter-Day_Saints 0 Mormon_Church 0 Mormons 0 002 @ 08147188 n 0000 %m 10248542 n 0000 | church founded by Joseph Smith in 1830 with headquarters in Salt Lake City, Utah -08089420 14 n 02 Baptist_Church 0 Baptists 0 003 @ 08147188 n 0000 %p 08089627 n 0000 %m 09838701 n 0000 | any of various evangelical Protestant churches that believe in the baptism of voluntary believers -08089627 14 n 01 Baptist_denomination 0 005 @ 08147188 n 0000 #p 08089420 n 0000 ~ 08090083 n 0000 ~ 08090329 n 0000 ~ 08090547 n 0000 | group of Baptist congregations -08089797 14 n 02 American_Baptist_Convention 0 Northern_Baptist_Convention 0 002 @ 08049401 n 0000 %m 10362557 n 0000 | an association of Northern Baptists -08089955 14 n 01 Southern_Baptist_Convention 0 002 @ 08049401 n 0000 %m 10628097 n 0000 | an association of Southern Baptists -08090083 14 n 02 Arminian_Baptist 0 General_Baptist 0 001 @ 08089627 n 0000 | group of Baptist congregations believing the teachings of the Dutch theologian Jacobus Arminius (who opposed the doctrine of strict predestination of the Calvinists) -08090329 14 n 02 Calvinistic_Baptist 0 Particular_Baptist 0 001 @ 08089627 n 0000 | group of Baptist congregations believing the teachings of the French theologian John Calvin who believed in strict predetermination -08090547 14 n 03 Church_of_the_Brethren 0 Dunkers 0 Dippers 0 002 @ 08089627 n 0000 %m 09677830 n 0000 | a Baptist denomination founded in 1708 by Americans of German descent; opposed to military service and taking legal oaths; practiced trine immersion -08090803 14 n 02 Christian_Science 0 Church_of_Christ_Scientist 0 002 @ 08147188 n 0000 %m 09678581 n 0000 | Protestant denomination founded by Mary Baker Eddy in 1866 -08090973 14 n 01 Congregational_Church 0 002 @ 08147188 n 0000 %m 09955643 n 0000 | a Protestant denomination holding that each individual congregation should be self-governing -08091152 14 n 01 Congregational_Christian_Church 0 001 @ 08147188 n 0000 | merger of the Congregational Church and the Christian Church -08091290 14 n 01 Evangelical_and_Reformed_Church 0 001 @ 08147188 n 0000 | a Protestant denomination of Calvinist faith -08091412 14 n 01 United_Church_of_Christ 0 001 @ 08147188 n 0000 | merger of the Congregational Christian Church and the Evangelical and Reformed Church in 1957 -08091575 14 n 01 Jehovah's_Witnesses 0 002 @ 08147188 n 0000 %m 10248377 n 0000 | Protestant denomination founded in the United States by Charles Taze Russell in 1884 -08091744 14 n 01 Lutheran_Church 0 002 @ 08147188 n 0000 %m 10277815 n 0000 | the Protestant denomination adhering to the views of Martin Luther -08091891 14 n 01 Presbyterian_Church 0 002 @ 08147188 n 0000 %m 10465922 n 0000 | the Protestant denomination adhering to the views of John Calvin -08092040 14 n 01 Unitarian_Church 0 002 @ 08147188 n 0000 %m 10738670 n 0000 | the Protestant denomination that rejects the doctrine of the Trinity -08092190 14 n 01 Arminian_Church 0 002 @ 08147188 n 0000 %m 10738871 n 0000 | the Protestant denomination adhering to the views of Jacobus Arminius -08092340 14 n 02 Methodist_Church 0 Methodists 0 003 @ 08147188 n 0000 %p 08092539 n 0000 %m 10312600 n 0000 | a Protestant denomination founded on the principles of John Wesley and Charles Wesley -08092539 14 n 01 Methodist_denomination 0 005 @ 08147188 n 0000 #p 08092340 n 0000 ~ 08092713 n 0000 ~ 08092855 n 0000 ~ 08092960 n 0000 | group of Methodist congregations -08092713 14 n 02 Wesleyan_Methodist_Church 0 Wesleyan_Methodists 0 002 @ 08092539 n 0000 %m 10312773 n 0000 | the original Methodist Church -08092855 14 n 01 Evangelical_United_Brethren_Church 0 001 @ 08092539 n 0000 | a Methodist denomination -08092960 14 n 01 United_Methodist_Church 0 001 @ 08092539 n 0000 | union of the Wesleyan Methodist Church and the Evangelical United Brethren Church -08093111 14 n 01 Anabaptist_denomination 0 002 @ 08147188 n 0000 %m 09677427 n 0000 | a Protestant sect denying infant baptism and baptising only believers -08093269 14 n 01 Mennonite_Church 0 001 @ 08147188 n 0000 | formed from the Anabaptist movement in the 16th century; noted for its simplicity of life -08093421 14 n 01 Unification_Church 0 002 @ 08082602 n 0000 %m 10330439 n 0000 | a Christian church (with some Buddhist elements) founded in 1954 by Sun Myung Moon and known for staging mass weddings and other communal activities -08093653 14 n 01 Abecedarian 0 001 @ 08149781 n 0000 | a 16th century sect of Anabaptists centered in Germany who had an absolute disdain for human knowledge -08093813 14 n 01 Amish_sect 0 002 @ 08149781 n 0000 %m 09677713 n 0000 | an orthodox Anabaptist sect separated from the Mennonites in late 17th century; settled chiefly in southeastern Pennsylvania -08094013 14 n 03 Judaism 0 Hebraism 0 Jewish_religion 0 006 @ 08081668 n 0000 #p 08479095 n 0000 + 02922448 a 0102 ~ 08094659 n 0000 ~ 08095160 n 0000 ~ 08095426 n 0000 | Jews collectively who practice a religion based on the Torah and the Talmud -08094262 14 n 01 Sanhedrin 0 001 @ 08310949 n 0000 | the supreme judicial and ecclesiastical council of ancient Jerusalem -08094386 14 n 01 Karaites 0 001 @ 08149781 n 0000 | a Jewish sect that recognizes only the Hebrew Scriptures as the source of divinely inspired legislation and denies the authority of the postbiblical tradition of the Talmud; the sect arose in Iraq in the eighth century -08094659 14 n 02 Orthodox_Judaism 0 Jewish_Orthodoxy 0 004 @ 08094013 n 0000 ~ 08094866 n 0000 %m 08097531 n 0000 %m 10384772 n 0000 | Jews who strictly observe the Mosaic law as interpreted in the Talmud -08094866 14 n 05 Hasidim 0 Hassidim 0 Hasidism 0 Chasidim 0 Chassidim 0 002 @ 08094659 n 0000 %m 10161695 n 0000 | a sect of Orthodox Jews that arose out of a pietistic movement originating in eastern Europe in the second half of the 18th century; a sect that follows the Mosaic law strictly -08095160 14 n 01 Conservative_Judaism 0 003 @ 08094013 n 0000 ;c 08441203 n 0000 %m 09611548 n 0000 | Jews who keep some of the requirements of the Mosaic law but allow for adaptation of other requirements (as some of the dietary laws) to fit modern circumstances -08095426 14 n 01 Reform_Judaism 0 002 @ 08094013 n 0000 %m 10515863 n 0000 | the most liberal Jews; Jews who do not follow the Talmud strictly but try to adapt all of the historical forms of Judaism to the modern world -08095647 14 n 02 Islam 0 Muslimism 0 009 @ 08111783 n 0000 + 02923510 a 0103 + 09682803 n 0101 -c 06765656 n 0000 %m 08096301 n 0000 %m 08096474 n 0000 %m 09682291 n 0000 %m 09682803 n 0000 -c 13967215 n 0000 | the civilization of Muslims collectively which is governed by the Muslim religion; "Islam is predominant in northern Africa, the Middle East, Pakistan, and Indonesia" -08096027 14 n 01 Islamism 1 002 @ 08473787 n 0000 + 09682803 n 0101 | a fundamentalist Islamic revivalist movement generally characterized by moral conservatism and the literal interpretation of the Koran and the attempt to implement Islamic values in all aspects of life -08096301 14 n 03 Shiah 0 Shia 0 Shiah_Islam 0 003 @ 08149781 n 0000 #m 08095647 n 0000 %m 09683306 n 0000 | one of the two main branches of orthodox Islam; mainly in Iran -08096474 14 n 02 Sunni 0 Sunni_Islam 0 003 @ 08149781 n 0000 #m 08095647 n 0000 %m 09683559 n 0000 | one of the two main branches of orthodox Islam -08096624 14 n 02 Hinduism 0 Hindooism 0 011 @ 08081668 n 0000 ;r 08900535 n 0000 ;r 08848731 n 0000 ;r 08719100 n 0000 ;r 08906374 n 0000 ~ 08096950 n 0000 %m 08097072 n 0000 %m 08097222 n 0000 %m 08097391 n 0000 %m 08097766 n 0000 %m 09684609 n 0000 | the religion of most people in India, Bangladesh, Sri Lanka, and Nepal -08096950 14 n 02 Brahmanism 0 Brahminism 0 001 @ 08096624 n 0000 | the religious and social system of orthodox Hinduism -08097072 14 n 02 Shivaism 0 Sivaism 0 004 @ 08149781 n 0000 #m 08096624 n 0000 + 09685564 n 0101 %m 09685564 n 0000 | a Hindu sect worshiping Shiva -08097222 14 n 02 Shaktism 0 Saktism 0 005 @ 08149781 n 0000 #m 08096624 n 0000 + 09685398 n 0201 + 09685398 n 0101 %m 09685398 n 0000 | a Hindu sect worshiping Shakti -08097391 14 n 02 Vaishnavism 0 Vaisnavism 0 003 @ 08149781 n 0000 #m 08096624 n 0000 %m 09685711 n 0000 | Hindu sect worshiping of Vishnu -08097531 14 n 01 Haredi 0 002 @ 08149781 n 0000 #m 08094659 n 0000 | any of several sects of Orthodox Judaism that reject modern secular culture and many of whom do not recognize the spiritual authority of the modern state of Israel -08097766 14 n 03 Hare_Krishna 0 International_Society_for_Krishna_Consciousness 0 ISKCON 0 003 @ 08149781 n 0000 #m 08096624 n 0000 %m 09685233 n 0000 | a religious sect founded in the United States in 1966; based on Vedic scriptures; groups engage in joyful chanting of `Hare Krishna' and other mantras based on the name of the Hindu god Krishna; devotees usually wear saffron robes and practice vegetarianism and celibacy -08098192 14 n 01 Jainism 0 003 @ 08149781 n 0000 + 09685085 n 0101 %m 09685085 n 0000 | sect founded in the 6th century BC as a revolt against Hinduism -08098346 14 n 01 Taoism 0 004 @ 08081668 n 0000 ;c 05977340 n 0000 + 09848285 n 0101 %m 09848285 n 0000 | religion adhering to the teaching of Lao-tzu -08098499 14 n 01 Taoism 2 003 @ 08149781 n 0000 + 09848285 n 0101 %m 09848285 n 0000 | a Chinese sect claiming to follow the teaching of Lao-tzu but incorporating pantheism and sorcery in addition to Taoism -08098708 14 n 01 Buddhism 0 008 @ 08081668 n 0000 + 02924102 a 0102 + 09683757 n 0101 ~ 08099029 n 0000 ~ 08099264 n 0000 ~ 08099475 n 0000 ~ 08099647 n 0000 %m 09683757 n 0000 | a religion represented by the many groups (especially in Asia) that profess various forms of the Buddhist doctrine and that venerate Buddha -08099029 14 n 02 Zen 0 Zen_Buddhism 0 003 @ 08098708 n 0000 + 09683924 n 0101 %m 09683924 n 0000 | school of Mahayana Buddhism asserting that enlightenment can come through meditation and intuition rather than faith; China and Japan -08099264 14 n 01 Mahayana 0 003 @ 08098708 n 0000 + 09684082 n 0101 %m 09684082 n 0000 | a major school of Buddhism teaching social concern and universal salvation; China; Japan; Tibet; Nepal; Korea; Mongolia -08099475 14 n 01 Hinayana 0 003 @ 08098708 n 0000 + 09684226 n 0101 %m 09684226 n 0000 | a major school of Buddhism teaching personal salvation through one's own efforts -08099647 14 n 01 Tantrism 0 004 @ 08098708 n 0000 + 02926025 a 0101 + 09684476 n 0101 %m 09684476 n 0000 | movement within Buddhism combining elements of Hinduism and paganism -08099825 14 n 01 Khalsa 0 002 @ 08081668 n 0000 ;c 06239931 n 0000 | the group of initiated Sikhs to which devout orthodox Sikhs are ritually admitted at puberty; founded by the tenth and last Guru in 1699 -08100033 14 n 02 Scientology 0 Church_of_Scientology 0 001 @ 08081668 n 0000 | a new religion founded by L. Ron Hubbard in 1955 and characterized by a belief in the power of a person's spirit to clear itself of past painful experiences through self-knowledge and spiritual fulfillment -08100320 14 n 01 Shinto 0 004 @ 08081668 n 0000 %m 08100481 n 0000 %m 08100656 n 0000 %m 09685806 n 0000 | the native religion and former ethnic cult of Japan -08100481 14 n 02 Kokka_Shinto 0 Kokka 0 003 @ 08149781 n 0000 #m 08100320 n 0000 + 02924932 a 0201 | the branch of Shinto recognized as the official state religion of Japan -08100656 14 n 02 Shuha_Shinto 0 Shua 0 002 @ 08149781 n 0000 #m 08100320 n 0000 | any branch of Shinto other than Kokka -08100778 14 n 01 established_church 0 001 @ 08081668 n 0000 | the church that is recognized as the official church of a nation -08100907 14 n 02 vicariate 0 vicarship 0 004 @ 08053576 n 0000 + 10750365 n 0201 + 10750188 n 0201 + 10750031 n 0201 | the religious institution under the authority of a vicar -08101085 14 n 01 variety 0 005 @ 07992450 n 0000 #p 08110373 n 0000 ;c 06037666 n 0000 ~ 08101410 n 0000 ~ 13084834 n 0000 | (biology) a taxonomic category consisting of members of a species that differ from others of the same species in minor but heritable characteristics; "varieties are frequently recognized in botany" -08101410 14 n 03 breed 0 strain 0 stock 0 008 @ 08101085 n 0000 @ 07993929 n 0000 #m 08110373 n 0000 + 02329578 v 0301 + 01429455 v 0101 + 00056334 v 0101 ~ 08101755 n 0000 ~ 08101846 n 0000 | a special variety of domesticated animals within a species; "he experimented on a particular breed of white rats"; "he created a new strain of sheep" -08101755 14 n 01 bloodstock 0 001 @ 08101410 n 0000 | thoroughbred horses (collectively) -08101846 14 n 01 pedigree 1 001 @ 08101410 n 0000 | line of descent of a purebred animal -08101937 14 n 0d lineage 0 line 0 line_of_descent 0 descent 0 bloodline 0 blood_line 0 blood 0 pedigree 0 ancestry 0 origin 0 parentage 0 stemma 0 stock 1 006 @ 08102402 n 0000 + 02539788 v 0b05 + 02737187 v 0403 + 01416508 a 0201 ~ 07970721 n 0000 ~ 08102282 n 0000 | the descendants of one individual; "his entire lineage has been warriors" -08102282 14 n 01 side 1 001 @ 08101937 n 0000 | a family line of descent; "he gets his brains from his father's side" -08102402 14 n 02 genealogy 0 family_tree 0 004 @ 07969695 n 0000 + 03067329 a 0102 + 10123214 n 0101 ~ 08101937 n 0000 | successive generations of kin -08102555 14 n 01 phylum 0 035 @ 07992450 n 0000 #m 07940552 n 0000 ;c 06037666 n 0000 ~ 01388992 n 0000 ~ 01389188 n 0000 ~ 01421012 n 0000 ~ 01465994 n 0000 ~ 01467180 n 0000 ~ 01467986 n 0000 ~ 01471070 n 0000 ~ 01767199 n 0000 ~ 01788730 n 0000 ~ 01906552 n 0000 ~ 01909111 n 0000 ~ 01918310 n 0000 ~ 01923171 n 0000 ~ 01923637 n 0000 ~ 01924590 n 0000 ~ 01928360 n 0000 ~ 01928737 n 0000 ~ 01929047 n 0000 ~ 01929396 n 0000 ~ 01934207 n 0000 ~ 01940488 n 0000 ~ 02313195 n 0000 ~ 02313495 n 0000 ~ 02314001 n 0000 ~ 02314321 n 0000 ~ 02314717 n 0000 ~ 02315309 n 0000 ~ 02315696 n 0000 ~ 02316392 n 0000 %m 08103299 n 0000 %m 08103777 n 0000 ~ 08220891 n 0000 | (biology) the major taxonomic group of animals and plants; contains classes -08103299 14 n 01 subphylum 0 003 @ 07992450 n 0000 #m 08102555 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic group ranking between a phylum and a class -08103457 14 n 01 superphylum 0 003 @ 07992450 n 0000 #m 07997703 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic group ranking between a phylum and below a class or subclass -08103635 14 n 01 phylum 1 002 @ 07950920 n 0000 ;c 06172789 n 0000 | (linguistics) a large group of languages that are historically related -08103777 14 n 01 class 2 155 @ 07992450 n 0000 #m 08102555 n 0000 ;c 06037666 n 0000 + 00654625 v 0101 + 00739662 v 0102 ~ 01358135 n 0000 ~ 01358259 n 0000 ~ 01389875 n 0000 ~ 01390287 n 0000 ~ 01391174 n 0000 ~ 01394901 n 0000 ~ 01395531 n 0000 ~ 01400575 n 0000 ~ 01400772 n 0000 ~ 01400891 n 0000 ~ 01402169 n 0000 ~ 01403968 n 0000 ~ 01406262 n 0000 ~ 01407465 n 0000 ~ 01408088 n 0000 ~ 01412085 n 0000 ~ 01413744 n 0000 ~ 01416354 n 0000 ~ 01418237 n 0000 ~ 01420655 n 0000 ~ 01421164 n 0000 ~ 01421496 n 0000 ~ 01422594 n 0000 ~ 01425817 n 0000 ~ 01426784 n 0000 ~ 01468532 n 0000 ~ 01469222 n 0000 ~ 01470287 n 0000 ~ 01473990 n 0000 ~ 01479643 n 0000 ~ 01479937 n 0000 ~ 01480336 n 0000 ~ 01480715 n 0000 ~ 01481599 n 0000 ~ 01502262 n 0000 ~ 01515811 n 0000 ~ 01625747 n 0000 ~ 01660719 n 0000 ~ 01661404 n 0000 ~ 01672767 n 0000 ~ 01695259 n 0000 ~ 01719175 n 0000 ~ 01768402 n 0000 ~ 01768969 n 0000 ~ 01782675 n 0000 ~ 01783205 n 0000 ~ 01783384 n 0000 ~ 01783936 n 0000 ~ 01784427 n 0000 ~ 01786402 n 0000 ~ 01861465 n 0000 ~ 01871406 n 0000 ~ 01873622 n 0000 ~ 01873850 n 0000 ~ 01886220 n 0000 ~ 01907495 n 0000 ~ 01910529 n 0000 ~ 01911511 n 0000 ~ 01913838 n 0000 ~ 01919099 n 0000 ~ 01919504 n 0000 ~ 01925133 n 0000 ~ 01925469 n 0000 ~ 01927301 n 0000 ~ 01929788 n 0000 ~ 01929951 n 0000 ~ 01934705 n 0000 ~ 01935012 n 0000 ~ 01936219 n 0000 ~ 01937719 n 0000 ~ 01941030 n 0000 ~ 01941670 n 0000 ~ 01950195 n 0000 ~ 01954202 n 0000 ~ 01954729 n 0000 ~ 01955463 n 0000 ~ 01968115 n 0000 ~ 01969103 n 0000 ~ 01974399 n 0000 ~ 01975312 n 0000 ~ 01993949 n 0000 ~ 01994176 n 0000 ~ 01996392 n 0000 ~ 01997698 n 0000 ~ 01998019 n 0000 ~ 01999374 n 0000 ~ 02159271 n 0000 ~ 02232408 n 0000 ~ 02317212 n 0000 ~ 02317488 n 0000 ~ 02317653 n 0000 ~ 02317983 n 0000 ~ 02318915 n 0000 ~ 02319967 n 0000 ~ 02321342 n 0000 ~ 02471072 n 0000 ~ 02514198 n 0000 ~ 02514575 n 0000 ~ 02514988 n 0000 ~ 02515914 n 0000 ~ 02527813 n 0000 %m 08106934 n 0000 ~ 11538123 n 0000 ~ 11538935 n 0000 ~ 11542341 n 0000 ~ 11595312 n 0000 ~ 11596486 n 0000 ~ 11599694 n 0000 ~ 11604698 n 0000 ~ 11605708 n 0000 ~ 11607071 n 0000 ~ 11660537 n 0000 ~ 11663449 n 0000 ~ 11664929 n 0000 ~ 11665781 n 0000 ~ 11667112 n 0000 ~ 11667562 n 0000 ~ 11668340 n 0000 ~ 11668573 n 0000 ~ 11668952 n 0000 ~ 11803475 n 0000 ~ 11910835 n 0000 ~ 12212810 n 0000 ~ 12313005 n 0000 ~ 12358485 n 0000 ~ 12410381 n 0000 ~ 12972629 n 0000 ~ 12975608 n 0000 ~ 12975982 n 0000 ~ 12977296 n 0000 ~ 12977565 n 0000 ~ 12995435 n 0000 ~ 12996068 n 0000 ~ 12996841 n 0000 ~ 12997128 n 0000 ~ 12997432 n 0000 ~ 12998130 n 0000 ~ 13023783 n 0000 ~ 13024348 n 0000 ~ 13024763 n 0000 ~ 13026529 n 0000 ~ 13028070 n 0000 ~ 13028337 n 0000 ~ 13038944 n 0000 ~ 13065702 n 0000 ~ 13169219 n 0000 ~ 13215936 n 0000 ~ 13218722 n 0000 ~ 13220842 n 0000 ~ 13221383 n 0000 | (biology) a taxonomic group containing one or more orders -08106661 14 n 01 subclass 0 002 @ 07992450 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic category below a class and above an order -08106798 14 n 01 superclass 0 002 @ 07992450 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic class below a phylum and above a class -08106934 14 n 01 order 1 009 @ 07992450 n 0000 #m 08103777 n 0000 ;c 06037666 n 0000 ~ 01342529 n 0000 ~ 01347199 n 0000 %m 08107191 n 0000 %m 08107499 n 0000 ~ 11534677 n 0000 ~ 11594676 n 0000 | (biology) taxonomic group containing one or more families -08107191 14 n 01 suborder 0 003 @ 07992450 n 0000 #m 08106934 n 0000 ;c 06037666 n 0000 | (biology) taxonomic group that is a subdivision of an order -08107343 14 n 01 superorder 0 002 @ 07992450 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic group ranking above an order and below a class or subclass -08107499 14 n 01 family 3 037 @ 07992450 n 0000 #m 08106934 n 0000 ;c 06037666 n 0000 %m 01331345 n 0000 ~ 01331659 n 0000 %m 01332347 n 0000 %m 01332653 n 0000 %m 01333082 n 0000 %m 01333301 n 0000 %m 01333610 n 0000 ~ 01352059 n 0000 ~ 01387617 n 0000 ~ 01391933 n 0000 ~ 01429349 n 0000 ~ 01466828 n 0000 ~ 01504437 n 0000 ~ 01626134 n 0000 ~ 01656813 n 0000 ~ 01759182 n 0000 ~ 01862557 n 0000 ~ 01908287 n 0000 ~ 01918010 n 0000 ~ 01921559 n 0000 ~ 01938850 n 0000 ~ 02162404 n 0000 ~ 02162831 n 0000 ~ 02316038 n 0000 ~ 08108450 n 0000 %m 08108627 n 0000 %m 08108784 n 0000 %m 08108972 n 0000 ~ 11537665 n 0000 ~ 11555413 n 0000 ~ 11562747 n 0000 ~ 11590783 n 0000 ~ 11744583 n 0000 ~ 13166338 n 0000 | (biology) a taxonomic group containing one or more genera; "sharks belong to the fish family" -08108304 14 n 01 superfamily 0 002 @ 07992450 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic group ranking below an order but above a family -08108450 14 n 01 form_family 0 002 @ 08107499 n 0000 ;c 06037666 n 0000 | (biology) an artificial taxonomic category for organisms of which the true relationships are obscure -08108627 14 n 01 subfamily 0 004 @ 07992450 n 0000 #m 08107499 n 0000 ;c 06037666 n 0000 ~ 02560271 n 0000 | (biology) a taxonomic category below a family -08108784 14 n 01 tribe 3 005 @ 07992450 n 0000 #m 08107499 n 0000 ;c 06037666 n 0000 ~ 02401509 n 0000 ~ 12147031 n 0000 | (biology) a taxonomic category between a genus and a subfamily -08108972 14 n 01 genus 0 031 @ 07992450 n 0000 #m 08107499 n 0000 ;c 06037666 n 0000 + 02734016 a 0101 ~ 01325206 n 0000 ~ 01352574 n 0000 ~ 01388130 n 0000 ~ 01432517 n 0000 ~ 01466996 n 0000 ~ 01507175 n 0000 ~ 01626600 n 0000 ~ 01657723 n 0000 ~ 01762525 n 0000 ~ 01864707 n 0000 ~ 01907034 n 0000 ~ 01908415 n 0000 ~ 01918152 n 0000 ~ 01921887 n 0000 ~ 01939598 n 0000 ~ 02316180 n 0000 %m 08109624 n 0000 ~ 08109940 n 0000 ~ 08110197 n 0000 %m 08110373 n 0000 ~ 11537886 n 0000 ~ 11554175 n 0000 ~ 11556857 n 0000 ~ 11567411 n 0000 ~ 11592146 n 0000 ~ 11744859 n 0000 ~ 13167078 n 0000 | (biology) taxonomic group containing one or more species -08109624 14 n 01 subgenus 0 003 @ 07992450 n 0000 #m 08108972 n 0000 ;c 06037666 n 0000 | (biology) taxonomic group between a genus and a species -08109772 14 n 01 monotype 0 003 @ 07992450 n 0000 ;c 06037666 n 0000 + 02765965 a 0101 | (biology) a taxonomic group with a single member (a single species or genus) -08109940 14 n 01 type_genus 0 002 @ 08108972 n 0000 ;c 06037666 n 0000 | (biology) genus from which the name of a family or subfamily is formed; it is not necessarily the most representative genus but often the largest or best known or earliest described -08110197 14 n 01 form_genus 0 002 @ 08108972 n 0000 ;c 06037666 n 0000 | (biology) an artificial taxonomic category for organisms of which the true relationships are obscure -08110373 14 n 01 species 0 010 @ 07992450 n 0000 #m 08108972 n 0000 ;c 06037666 n 0000 ~ 01353411 n 0000 %p 08101085 n 0000 %m 08101410 n 0000 ~ 08110866 n 0000 ~ 08111027 n 0000 %m 08111157 n 0000 ~ 08111599 n 0000 | (biology) taxonomic group whose members can interbreed -08110648 14 n 02 subspecies 0 race 1 002 @ 07992450 n 0000 ;c 06037666 n 0000 | (biology) a taxonomic group that is a division of a species; usually arises as a consequence of geographical isolation within a species -08110866 14 n 01 endangered_species 0 002 @ 08110373 n 0000 ~ 02516994 n 0000 | a species whose numbers are so small that the species is at risk of extinction -08111027 14 n 01 fish_species 0 004 @ 08110373 n 0000 ~ 02545153 n 0000 ~ 02545387 n 0000 ~ 02560546 n 0000 | a species of fish -08111157 14 n 04 form 2 variant 0 strain 1 var. 0 004 @ 07992450 n 0000 #m 08110373 n 0000 ;c 06037666 n 0000 + 02505415 a 0201 | (biology) a group of organisms within a species that differ in trivial ways from similar groups; "a new strain of microorganisms" -08111419 14 n 01 type 1 003 @ 07992450 n 0000 ;c 06037666 n 0000 + 02699141 v 0101 | (biology) the taxonomic group whose characteristics are used to define the next higher taxon -08111599 14 n 01 type_species 0 002 @ 08110373 n 0000 ;c 06037666 n 0000 | (biology) the species that best exemplifies the essential characteristics of the genus to which it belongs -08111783 14 n 02 civilization 0 civilisation 0 004 @ 07966140 n 0000 ;c 06148148 n 0000 + 00411312 v 0101 ~ 08095647 n 0000 | a society in an advanced state of social development (e.g., with complex legal and political and religious organizations); "the people slowly progressed from barbarism to civilization" -08112096 14 n 01 profession 0 007 @ 08403631 n 0000 ~ 08112402 n 0000 ~ 08112630 n 0000 ~ 08113073 n 0000 ~ 08113197 n 0000 ~ 08113322 n 0000 ~ 08113443 n 0000 | the body of people in a learned occupation; "the news spread rapidly through the medical profession"; "they formed a community of scientists" -08112402 14 n 03 legal_profession 0 bar 0 legal_community 0 002 @ 08112096 n 0000 ;c 08441203 n 0000 | the body of individuals qualified to practice law in a particular jurisdiction; "he was admitted to the bar in New Jersey" -08112630 14 n 01 health_profession 0 004 @ 08112096 n 0000 ~ 08112829 n 0000 ~ 08112976 n 0000 %m 10165109 n 0000 | the body of individuals whose work helps to maintain the health of their clients -08112829 14 n 02 medical_profession 0 medical_community 0 001 @ 08112630 n 0000 | the body of individuals who are qualified to practice medicine -08112976 14 n 01 nursing 0 002 @ 08112630 n 0000 + 02550698 v 0101 | the profession of a nurse -08113073 14 n 02 businessmen 0 business_community 0 001 @ 08112096 n 0000 | the body of individuals who manage businesses -08113197 14 n 01 community_of_scholars 0 001 @ 08112096 n 0000 | the body of individuals holding advanced academic degrees -08113322 14 n 01 economics_profession 0 002 @ 08112096 n 0000 %m 10043643 n 0000 | the body of professional economists -08113443 14 n 01 priesthood 0 006 @ 08112096 n 0000 + 10471250 n 0101 + 10470779 n 0101 ~ 08113797 n 0000 ~ 08113910 n 0000 ~ 08152787 n 0000 | the body of ordained religious practitioners -08113634 14 n 01 pastorate 0 001 @ 08152787 n 0000 | pastors collectively -08113710 14 n 02 prelacy 0 prelature 0 001 @ 08152787 n 0000 | prelates collectively -08113797 14 n 01 ministry 1 001 @ 08113443 n 0000 | religious ministers collectively (especially Presbyterian) -08113910 14 n 01 rabbinate 0 002 @ 08113443 n 0000 %m 10502329 n 0000 | rabbis collectively -08114004 14 n 01 ministry 0 003 @ 08119821 n 0000 ~ 08114152 n 0000 ~ 08114287 n 0000 | a government department under the direction of a minister -08114152 14 n 01 Foreign_Office 0 002 @ 08114004 n 0000 ~ 08114400 n 0000 | the government department in charge of foreign relations -08114287 14 n 01 Home_Office 0 001 @ 08114004 n 0000 | the government department in charge of domestic affairs -08114400 14 n 02 French_Foreign_Office 0 Quai_d'Orsay 0 001 @ 08114152 n 0000 | the French department in charge of foreign affairs; referred to familiarly by its address in Paris -08114581 14 n 02 Free_French 0 Fighting_French 0 002 @ 08464601 n 0000 ;c 01312096 n 0000 | a French movement during World War II that was organized in London by Charles de Gaulle to fight for the liberation of France from German control and for the restoration of the republic -08114861 14 n 02 department 0 section 3 008 @ 08220714 n 0000 + 03059966 a 0101 ~ 08115204 n 0000 ~ 08118039 n 0000 ~ 08118991 n 0000 ~ 08119821 n 0000 ~ 08120079 n 0000 ~ 08120910 n 0000 | a specialized division of a large organization; "you'll find it in the hardware department"; "she got a job in the historical section of the Treasury" -08115204 14 n 01 academic_department 0 016 @ 08114861 n 0000 ~ 08115602 n 0000 ~ 08115778 n 0000 ~ 08115912 n 0000 ~ 08116073 n 0000 ~ 08116240 n 0000 ~ 08116398 n 0000 ~ 08116565 n 0000 ~ 08116734 n 0000 ~ 08116879 n 0000 ~ 08117052 n 0000 ~ 08117225 n 0000 ~ 08117379 n 0000 ~ 08117540 n 0000 ~ 08117702 n 0000 ~ 08117872 n 0000 | a division of a school that is responsible for a given subject -08115602 14 n 02 anthropology_department 0 department_of_anthropology 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in anthropology -08115778 14 n 01 art_department 0 001 @ 08115204 n 0000 | the academic department responsible for teaching art and art appreciation -08115912 14 n 02 biology_department 0 department_of_biology 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in biology -08116073 14 n 02 chemistry_department 0 department_of_chemistry 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in chemistry -08116240 14 n 01 department_of_computer_science 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in computer science -08116398 14 n 02 economics_department 0 department_of_economics 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in economics -08116565 14 n 02 English_department 0 department_of_English 0 001 @ 08115204 n 0000 | the academic department responsible for teaching English and American literature -08116734 14 n 02 history_department 0 department_of_history 0 001 @ 08115204 n 0000 | the academic department responsible for teaching history -08116879 14 n 02 linguistics_department 0 department_of_linguistics 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in linguistics -08117052 14 n 02 mathematics_department 0 department_of_mathematics 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in mathematics -08117225 14 n 02 philosophy_department 0 department_of_philosophy 0 001 @ 08115204 n 0000 | the academic department responsible for teaching philosophy -08117379 14 n 02 physics_department 0 department_of_physics 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in physics -08117540 14 n 02 music_department 0 department_of_music 0 001 @ 08115204 n 0000 | the academic department responsible for teaching music and music appreciation -08117702 14 n 02 psychology_department 0 department_of_psychology 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in psychology -08117872 14 n 02 sociology_department 0 department_of_sociology 0 001 @ 08115204 n 0000 | the academic department responsible for teaching and research in sociology -08118039 14 n 01 business_department 0 008 @ 08114861 n 0000 ~ 08118260 n 0000 ~ 08118414 n 0000 ~ 08118849 n 0000 ~ 08119226 n 0000 ~ 08119397 n 0000 ~ 08119525 n 0000 ~ 08119698 n 0000 | a division of a business firm -08118260 14 n 02 advertising_department 0 advertising_division 0 001 @ 08118039 n 0000 | the division of a business that is responsible for advertising -08118414 14 n 01 editorial_department 0 003 @ 08118039 n 0000 ~ 08118592 n 0000 ~ 08118725 n 0000 | the department of a publishing business that edits material for publication -08118592 14 n 02 city_desk 0 city_room 0 001 @ 08118414 n 0000 | the editorial department of a newspaper that edits the local news -08118725 14 n 01 sports_desk 0 001 @ 08118414 n 0000 | the editorial department of a newspaper that edits the sports news -08118849 14 n 01 parts_department 0 001 @ 08118039 n 0000 | the division of a business (e.g. a service garage) that sells replacement parts -08118991 14 n 04 personnel_department 0 personnel_office 0 personnel 1 staff_office 0 001 @ 08114861 n 0000 | the department responsible for hiring and training and placing employees and for setting policies for personnel management -08119226 14 n 02 plant_department 0 building_department 0 001 @ 08118039 n 0000 | the division of a business responsible for building and maintaining the physical plant -08119397 14 n 01 purchasing_department 0 001 @ 08118039 n 0000 | the division of a business that is responsible for purchases -08119525 14 n 03 sales_department 0 sales_division 0 sales_force 0 001 @ 08118039 n 0000 | the division of a business that is responsible for selling products or services -08119698 14 n 01 service_department 0 001 @ 08118039 n 0000 | the division of a business that provides customer services -08119821 14 n 01 government_department 0 010 @ 08114861 n 0000 #m 08050678 n 0000 ~ 08114004 n 0000 ~ 08120235 n 0000 ~ 08120384 n 0000 ~ 08121867 n 0000 ~ 08122009 n 0000 ~ 08122141 n 0000 %p 08146135 n 0000 ~ 08349548 n 0000 | a department of government -08120079 14 n 02 payroll 0 payroll_department 0 001 @ 08114861 n 0000 | the department that determines the amounts of wage or salary due to each employee -08120235 14 n 01 treasury 0 001 @ 08119821 n 0000 | the government department responsible for collecting and managing and spending public revenues -08120384 14 n 02 local_department 0 department_of_local_government 0 005 @ 08119821 n 0000 ~ 08120624 n 0000 ~ 08121117 n 0000 ~ 08121542 n 0000 ~ 08121694 n 0000 | a permanent department created to perform the work of a local government -08120624 14 n 02 corrections 0 department_of_corrections 0 001 @ 08120384 n 0000 | the department of local government that is responsible for managing the treatment of convicted offenders; "for a career in corrections turn to the web site of the New Jersey Department of Corrections" -08120910 14 n 02 security 0 security_department 0 001 @ 08114861 n 0000 | a department responsible for the security of the institution's property and workers; "the head of security was a former policeman" -08121117 14 n 01 fire_department 0 003 @ 08120384 n 0000 ~ 08121301 n 0000 %m 10091651 n 0000 | the department of local government responsible for preventing and extinguishing fires -08121301 14 n 01 fire_brigade 1 001 @ 08121117 n 0000 | British name for a fire department -08121394 14 n 02 fire_brigade 0 fire_company 0 001 @ 08008335 n 0000 | a private or temporary organization of individuals equipped to fight fires -08121542 14 n 01 police_department 0 001 @ 08120384 n 0000 | the department of local government concerned with enforcing the law and preventing crime -08121694 14 n 01 sanitation_department 0 002 @ 08120384 n 0000 ;u 06605046 n 0000 | the department of local government responsible for collecting and disposing of garbage -08121867 14 n 01 Special_Branch 0 002 @ 08119821 n 0000 ;r 08860123 n 0000 | a government police department dealing with political security -08122009 14 n 01 State_Department 1 002 @ 08119821 n 0000 ;r 09044862 n 0000 | a department of government in one of the 50 states -08122141 14 n 03 federal_department 0 federal_office 0 department_of_the_federal_government 0 003 @ 08119821 n 0000 ;r 09044862 n 0000 ~ 08123167 n 0000 | a department of the federal government of the United States -08122358 14 n 02 Atomic_Energy_Commission 0 AEC 0 002 @ 08123696 n 0000 #p 08356074 n 0000 | a former executive agency (from 1946 to 1974) that was responsible for research into atomic energy and its peacetime uses in the United States -08122596 14 n 02 Nuclear_Regulatory_Commission 0 NRC 0 001 @ 08338847 n 0000 | an independent federal agency created in 1974 to license and regulate nuclear power plants -08122768 14 n 01 Manhattan_Project 0 002 @i 08123696 n 0000 #p 08356074 n 0000 | a former United States executive agency that was responsible for developing atomic bombs during World War II -08122960 14 n 02 Environmental_Protection_Agency 0 EPA 0 001 @ 08338847 n 0000 | an independent federal agency established to coordinate programs aimed at reducing pollution and protecting the environment -08123167 14 n 01 executive_department 0 022 @ 08122141 n 0000 #m 08356074 n 0000 ~ 08128837 n 0000 ~ 08128964 n 0000 ~ 08129268 n 0000 ~ 08131530 n 0000 ~ 08132637 n 0000 ~ 08132955 n 0000 ~ 08133536 n 0000 ~ 08134807 n 0000 ~ 08135062 n 0000 ~ 08135342 n 0000 ~ 08137495 n 0000 ~ 08137738 n 0000 ~ 08139000 n 0000 ~ 08139795 n 0000 ~ 08143653 n 0000 ~ 08144122 n 0000 ~ 08144524 n 0000 ~ 08144720 n 0000 ~ 08144907 n 0000 ~ 08145092 n 0000 | a federal department in the executive branch of the government of the United States -08123696 14 n 01 executive_agency 0 010 @ 08337324 n 0000 #p 08356074 n 0000 ~ 08122358 n 0000 ~i 08122768 n 0000 ~ 08124496 n 0000 ~ 08127760 n 0000 ~ 08128004 n 0000 ~ 08128159 n 0000 ~ 08128492 n 0000 ~ 08128645 n 0000 | an agency of the executive branch of government -08123970 14 n 02 Federal_Emergency_Management_Agency 0 FEMA 0 002 @ 08338847 n 0000 #p 08134807 n 0000 | an independent agency of the United States government that provides a single point of accountability for all federal emergency preparedness and mitigation and response activities -08124256 14 n 02 Food_and_Drug_Administration 0 FDA 0 002 @ 08337324 n 0000 #p 08133536 n 0000 | a federal agency in the Department of Health and Human Services established to regulate the release of new foods and health-related products -08124496 14 n 01 Council_of_Economic_Advisors 0 001 @ 08123696 n 0000 | an executive agency responsible for providing economic advice to the President -08124649 14 n 02 Center_for_Disease_Control_and_Prevention 0 CDC 0 003 @ 08337324 n 0000 #p 08133536 n 0000 #p 09076675 n 0000 | a federal agency in the Department of Health and Human Services; located in Atlanta; investigates and diagnoses and tries to control or prevent diseases (especially new and unusual diseases) -08124971 14 n 02 Central_Intelligence_Agency 0 CIA 0 005 @ 08339939 n 0000 @ 08338847 n 0000 #m 08340153 n 0000 %p 08125420 n 0000 %p 08125722 n 0000 | an independent agency of the United States government responsible for collecting and coordinating intelligence and counterintelligence activities abroad in the national interest; headed by the Director of Central Intelligence under the supervision of the President and National Security Council -08125420 14 n 02 Counterterrorist_Center 0 CTC 0 003 @ 08337324 n 0000 #p 08124971 n 0000 ;c 00759694 n 0000 | an agency that helps the Director of Central Intelligence coordinate counterterrorist efforts in order to preempt and disrupt and defeat terrorist activities at the earliest possible stage -08125722 14 n 02 Nonproliferation_Center 0 NPC 0 002 @ 08337324 n 0000 #p 08124971 n 0000 | an agency that serves as the focal point for all Intelligence Community activities related to nonproliferation of weapons of mass destruction and their missile delivery systems -08125993 14 n 02 Interstate_Commerce_Commission 0 ICC 0 001 @ 08338847 n 0000 | a former independent federal agency that supervised and set rates for carriers that transported goods and people between states; was terminated in 1995; "the ICC was established in 1887 as the first federal agency" -08126290 14 n 02 National_Aeronautics_and_Space_Administration 0 NASA 0 001 @ 08338847 n 0000 | an independent agency of the United States government responsible for aviation and spaceflight -08126483 14 n 02 National_Archives_and_Records_Administration 0 NARA 0 001 @ 08338847 n 0000 | the independent agency that oversees management of federal government records including presidential libraries and historic collections -08126716 14 n 02 National_Labor_Relations_Board 0 NLRB 0 001 @ 08338847 n 0000 | an independent agency of the United States government charged with mediating disputes between management and labor unions -08126921 14 n 02 National_Science_Foundation 0 NSF 0 001 @ 08338847 n 0000 | an independent agency of the federal government responsible for the promotion of progress in science and engineering by supporting programs in research and education -08127166 14 n 01 Postal_Rate_Commission 0 001 @ 08338847 n 0000 | an independent federal agency that recommends changes in postal rates -08127304 14 n 03 United_States_Postal_Service 0 US_Postal_Service 0 USPS 0 002 @ 08338847 n 0000 %p 08127557 n 0000 | an independent federal agency that provides mail processing and delivery service for individuals and businesses in the United States -08127557 14 n 02 United_States_Postal_Inspection_Service 0 US_Postal_Inspection_Service 0 002 @ 08338847 n 0000 #p 08127304 n 0000 | the primary law enforcement arm of the United States Postal Service -08127760 14 n 02 National_Security_Council 0 NSC 0 001 @ 08123696 n 0000 | a committee in the executive branch of government that advises the president on foreign and military and national security; supervises the Central Intelligence Agency -08128004 14 n 01 Council_on_Environmental_Policy 0 001 @ 08123696 n 0000 | the executive agency that advises the President on protecting the environment -08128159 14 n 02 Joint_Chiefs_of_Staff 0 Joint_Chiefs 0 002 @ 08123696 n 0000 ;c 08199025 n 0000 | the executive agency that advises the President on military questions; composed of the chiefs of the United States Army and the United States Navy and the United States Air Force and the commandant of the United States Marine Corps -08128492 14 n 02 Office_of_Management_and_Budget 0 OMB 0 001 @ 08123696 n 0000 | the executive agency that advises the President on the federal budget -08128645 14 n 02 United_States_Trade_Representative 0 US_Trade_Representative 0 001 @ 08123696 n 0000 | the executive agency that administers the President's policies on international trade -08128837 14 n 02 White_House 0 EXEC 0 001 @ 08123167 n 0000 | the chief executive department of the United States government -08128964 14 n 04 Department_of_Agriculture 0 Agriculture_Department 0 Agriculture 1 USDA 0 001 @ 08123167 n 0000 | the federal department that administers programs that provide services to farmers (including research and soil conservation and efforts to stabilize the farming economy); created in 1862 -08129268 14 n 04 Department_of_Commerce 0 Commerce_Department 0 Commerce 0 DoC 0 005 @ 08123167 n 0000 %p 08129621 n 0000 %p 08129883 n 0000 %p 08130712 n 0000 %p 08349681 n 0000 | the United States federal department that promotes and administers domestic and foreign trade (including management of the census and the patent office); created in 1913 -08129621 14 n 02 Bureau_of_the_Census 0 Census_Bureau 0 002 @ 08337324 n 0000 #p 08129268 n 0000 | the bureau of the Commerce Department responsible for taking the census; provides demographic information and analyses about the population of the United States -08129883 14 n 02 National_Oceanic_and_Atmospheric_Administration 0 NOAA 0 004 @ 08337324 n 0000 #p 08129268 n 0000 %p 08130292 n 0000 %p 08130476 n 0000 | an agency in the Department of Commerce that maps the oceans and conserves their living resources; predicts changes to the earth's environment; provides weather reports and forecasts floods and hurricanes and other natural disasters related to weather -08130292 14 n 02 National_Climatic_Data_Center 0 NCDC 0 002 @ 08337324 n 0000 #p 08129883 n 0000 | the part of NOAA that maintains the world's largest active archive of weather data -08130476 14 n 01 National_Weather_Service 0 002 @ 08337324 n 0000 #p 08129883 n 0000 | the federal agency in the National Oceanic and Atmospheric Administration that is responsible for weather forecast and preparation of weather maps -08130712 14 n 01 Technology_Administration 0 004 @ 08337324 n 0000 #p 08129268 n 0000 %p 08131005 n 0000 %p 08131254 n 0000 | an agency in the Department of Commerce that works with United States industries to promote competitiveness and maximize the impact of technology on economic growth -08131005 14 n 02 National_Institute_of_Standards_and_Technology 0 NIST 0 002 @ 08337324 n 0000 #p 08130712 n 0000 | an agency in the Technology Administration that makes measurements and sets standards as needed by industry or government programs -08131254 14 n 02 National_Technical_Information_Service 0 NTIS 0 002 @ 08337324 n 0000 #p 08130712 n 0000 | an agency in the Technology Administration that is a primary resource for government-funded scientific and technical and engineering and business related information -08131530 14 n 05 Department_of_Defense 0 Defense_Department 0 United_States_Department_of_Defense 0 Defense 2 DoD 0 015 @ 08123167 n 0000 %p 08132046 n 0000 %p 08132323 n 0000 %p 08191987 n 0000 %p 08196230 n 0000 %p 08340989 n 0000 %p 08341330 n 0000 %p 08341798 n 0000 %p 08347704 n 0000 %p 08348091 n 0000 %p 08394922 n 0000 %p 08395991 n 0000 %p 08396207 n 0000 %p 08396537 n 0000 %p 08396760 n 0000 | the federal department responsible for safeguarding national security of the United States; created in 1947 -08132046 14 n 02 Defense_Advanced_Research_Projects_Agency 0 DARPA 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | the central research and development organization for the United States Department of Defense; responsible for developing new surveillance technologies since 9/11 -08132323 14 n 02 Department_of_Defense_Laboratory_System 0 LABLINK 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | a defense laboratory that provides essential services in fundamental science for national security and environmental protection and provides technologies that contribute to industrial competitiveness -08132637 14 n 03 Department_of_Education 0 Education_Department 0 Education 0 003 @ 08123167 n 0000 ;c 00883297 n 0000 + 02387486 v 0301 | the United States federal department that administers all federal programs dealing with education (including federal aid to educational institutions and students); created 1979 -08132955 14 n 04 Department_of_Energy 0 Energy_Department 0 Energy 0 DOE 0 002 @ 08123167 n 0000 %p 08133189 n 0000 | the federal department responsible for maintaining a national energy policy of the United States; created in 1977 -08133189 14 n 02 Department_of_Energy_Intelligence 0 DOEI 0 003 @ 08337324 n 0000 #p 08132955 n 0000 #m 08340153 n 0000 | an agency that collects political and economic and technical information about energy matters and makes the Department of Energy's technical and analytical expertise available to other members of the Intelligence Community -08133536 14 n 03 Department_of_Health_and_Human_Services 0 Health_and_Human_Services 0 HHS 0 005 @ 08123167 n 0000 %p 08124256 n 0000 %p 08124649 n 0000 %p 08133855 n 0000 %p 08134081 n 0000 | the United States federal department that administers all federal programs dealing with health and welfare; created in 1979 -08133855 14 n 02 United_States_Public_Health_Service 0 PHS 0 002 @ 08337324 n 0000 #p 08133536 n 0000 | an agency that serves as the office of Surgeon General; includes agencies whose mission is to improve the public health -08134081 14 n 02 National_Institutes_of_Health 0 NIH 0 003 @ 08337324 n 0000 #p 08133536 n 0000 %p 03810741 n 0000 | an agency in the Department of Health and Human Services whose mission is to employ science in the pursuit of knowledge to improve human health; is the principal biomedical research agency of the federal government -08134415 14 n 02 Federal_Communications_Commission 0 FCC 0 001 @ 08338847 n 0000 | an independent government agency that regulates interstate and international communications by radio and television and wire and cable and satellite -08134649 14 n 02 Social_Security_Administration 0 SSA 0 001 @ 08338847 n 0000 | an independent government agency responsible for the Social Security system -08134807 14 n 02 Department_of_Homeland_Security 0 Homeland_Security 0 005 @ 08123167 n 0000 %p 08123970 n 0000 %p 08136502 n 0000 %p 08137028 n 0000 %p 08348400 n 0000 | the federal department that administers all matters relating to homeland security -08135062 14 n 03 Department_of_Housing_and_Urban_Development 0 Housing_and_Urban_Development 0 HUD 0 002 @ 08123167 n 0000 %p 08423634 n 0000 | the United States federal department that administers federal programs dealing with better housing and urban renewal; created in 1965 -08135342 14 n 04 Department_of_Justice 0 Justice_Department 0 Justice 0 DoJ 0 010 @ 08123167 n 0000 ;c 06535222 n 0000 ;c 08441203 n 0000 %p 08135770 n 0000 %p 08136027 n 0000 %p 08136260 n 0000 %p 08141374 n 0000 %p 08141664 n 0000 %p 08142170 n 0000 %p 08142370 n 0000 | the United States federal department responsible for enforcing federal laws (including the enforcement of all civil rights legislation); created in 1870 -08135770 14 n 02 Bureau_of_Justice_Assistance 0 BJA 0 003 @ 08337324 n 0000 #p 08135342 n 0000 ;c 08441203 n 0000 | the bureau in the Department of Justice that assists local criminal justice systems to reduce or prevent crime and violence and drug abuse -08136027 14 n 02 Bureau_of_Justice_Statistics 0 BJS 0 002 @ 08337324 n 0000 #p 08135342 n 0000 | the agency in the Department of Justice that is the primary source of criminal justice statistics for federal and local policy makers -08136260 14 n 02 Federal_Bureau_of_Investigation 0 FBI 0 004 @ 08348815 n 0000 #p 08135342 n 0000 #m 08340153 n 0000 ;c 08441203 n 0000 | a federal law enforcement agency that is the principal investigative arm of the Department of Justice -08136502 14 n 02 Immigration_and_Naturalization_Service 0 INS 0 003 @ 08337324 n 0000 #p 08134807 n 0000 %p 08136767 n 0000 | an agency in the Department of Justice that enforces laws and regulations for the admission of foreign-born persons to the United States -08136767 14 n 02 United_States_Border_Patrol 0 US_Border_Patrol 0 002 @ 08337324 n 0000 #p 08136502 n 0000 | the mobile law enforcement arm of the Immigration and Naturalization Service that detects and prevents illegal entry of aliens into the United States -08137028 14 n 02 Federal_Law_Enforcement_Training_Center 0 FLETC 0 002 @ 08348815 n 0000 #p 08134807 n 0000 | a center in the Department of that trains law enforcement professionals for more than seventy federal agencies -08137251 14 n 02 Financial_Crimes_Enforcement_Network 0 FinCEN 0 002 @ 08348815 n 0000 #p 08139795 n 0000 | a law enforcement agency of the Treasury Department responsible for establishing and implementing policies to detect money laundering -08137495 14 n 04 Department_of_Labor 0 Labor_Department 0 Labor 1 DoL 0 002 @ 08123167 n 0000 %p 08349138 n 0000 | the federal department responsible for promoting the working conditions of wage earners in the United States; created in 1913 -08137738 14 n 05 Department_of_State 0 United_States_Department_of_State 0 State_Department 0 State 2 DoS 0 005 @ 08123167 n 0000 ~ 08138079 n 0000 %p 08138259 n 0000 %p 08138466 n 0000 %p 08138686 n 0000 | the federal department in the United States that sets and maintains foreign policies; "the Department of State was created in 1789" -08138079 14 n 01 Foggy_Bottom 0 001 @ 08137738 n 0000 | United States Department of State, which is housed in a building in a low-lying area of Washington near the Potomac River -08138259 14 n 02 Bureau_of_Diplomatic_Security 0 DS 0 002 @ 08337324 n 0000 #p 08137738 n 0000 | the bureau in the State Department that is responsible for the security of diplomats and embassies overseas -08138466 14 n 01 Foreign_Service 0 003 @ 08337324 n 0000 #p 08137738 n 0000 -c 02475772 v 0000 | the part of the State Department that supplies diplomats for the United States embassies and consulates around the world -08138686 14 n 02 Bureau_of_Intelligence_and_Research 0 INR 0 003 @ 08337324 n 0000 #p 08137738 n 0000 #m 08340153 n 0000 | an agency that is the primary source in the State Department for interpretive analyses of global developments and focal point for policy issues and activities of the Intelligence Community -08139000 14 n 04 Department_of_the_Interior 0 Interior_Department 0 Interior 0 DoI 0 003 @ 08123167 n 0000 %p 08139270 n 0000 %p 08139637 n 0000 | the United States federal department charged with conservation and the development of natural resources; created in 1849 -08139270 14 n 03 United_States_Fish_and_Wildlife_Service 0 US_Fish_and_Wildlife_Service 0 FWS 0 002 @ 08337324 n 0000 #p 08139000 n 0000 | an agency in the Department of the Interior that conserves and protects fish and wildlife and their habitats; assesses the environmental impact of pesticides and nuclear power site and hydroelectric dams and thermal pollution -08139637 14 n 01 National_Park_Service 0 002 @ 08337324 n 0000 #p 08139000 n 0000 | an agency of the Interior Department responsible for the national parks -08139795 14 n 04 Department_of_the_Treasury 0 Treasury_Department 0 Treasury 1 United_States_Treasury 0 010 @ 08123167 n 0000 %p 04510456 n 0000 %p 08137251 n 0000 %p 08140219 n 0000 %p 08140506 n 0000 %p 08140767 n 0000 %p 08142801 n 0000 %p 08142972 n 0000 %p 08143163 n 0000 %p 08143321 n 0000 | the federal department that collects revenue and administers federal finances; the Treasury Department was created in 1789 -08140219 14 n 02 Bureau_of_Alcohol_Tobacco_and_Firearms 0 ATF 0 002 @ 08348815 n 0000 #p 08139795 n 0000 | the law enforcement and tax collection agency of the Treasury Department that enforces federal laws concerning alcohol and tobacco products and firearms and explosives and arson -08140506 14 n 01 Financial_Management_Service 0 002 @ 08337324 n 0000 #p 08139795 n 0000 | the federal agency in the Treasury Department that manages the government's disbursement and collection systems and provides central accounting and financial reporting -08140767 14 n 02 Office_of_Intelligence_Support 0 OIS 0 003 @ 08337324 n 0000 #p 08139795 n 0000 #m 08340153 n 0000 | agency that oversees the intelligence relationships of the Treasury's offices and bureaus and provides a link between the Intelligence Community and officials responsible for international economic policy -08141092 14 n 02 Criminal_Investigation_Command 0 CID 0 003 @ 08348815 n 0000 #p 08394922 n 0000 %p 04510090 n 0000 | the United States Army's principal law enforcement agency responsible for the conduct of criminal investigations for all levels of the Army anywhere in the world -08141374 14 n 03 Drug_Enforcement_Administration 0 Drug_Enforcement_Agency 0 DEA 0 002 @ 08348815 n 0000 #p 08135342 n 0000 | federal agency responsible for enforcing laws and regulations governing narcotics and controlled substances; goal is to immobilize drug trafficking organizations -08141664 14 n 02 Federal_Bureau_of_Prisons 0 BoP 0 002 @ 08348815 n 0000 #p 08135342 n 0000 | the law enforcement agency of the Justice Department that operates a nationwide system of prisons and detention facilities to incarcerate inmates sentenced to imprisonment for federal crimes -08141951 14 n 01 Federal_Judiciary 0 004 @ 08166318 n 0000 @ 08348815 n 0000 %p 08332330 n 0000 %p 08332485 n 0000 | the judiciary of the United States which is responsible for interpreting and enforcing federal laws -08142170 14 n 02 National_Institute_of_Justice 0 NIJ 0 002 @ 08348815 n 0000 #p 08135342 n 0000 | the law enforcement agency that is the research and development branch of the Department of Justice -08142370 14 n 03 United_States_Marshals_Service 0 US_Marshals_Service 0 Marshals 0 002 @ 08348815 n 0000 #p 08135342 n 0000 | the United States' oldest federal law enforcement agency is responsible today for protecting the Federal Judiciary and transporting federal prisoners and protecting federal witnesses and managing assets seized from criminals and generally ensuring the effective operation of the federal judicial system -08142801 14 n 01 Comptroller_of_the_Currency 0 002 @ 08337324 n 0000 #p 08139795 n 0000 | the agency of the Treasury Department responsible for controlling the currency -08142972 14 n 04 Bureau_of_Customs 0 Customs_Bureau 0 Customs_Service 0 USCB 0 002 @ 08337324 n 0000 #p 08139795 n 0000 | the agency of the Treasury Department that enforces import tariffs -08143163 14 n 01 Bureau_of_Engraving_and_Printing 0 002 @ 08337324 n 0000 #p 08139795 n 0000 | the agency of the Treasury Department that produces currency -08143321 14 n 02 Internal_Revenue_Service 0 IRS 0 002 @ 08337324 n 0000 #p 08139795 n 0000 | the bureau of the Treasury Department responsible for tax collections -08143486 14 n 02 Inland_Revenue 0 IR 0 002 @ 08077292 n 0000 ;r 08860123 n 0000 | a board of the British government that administers and collects major direct taxes -08143653 14 n 03 Department_of_Transportation 0 Transportation 0 DoT 0 004 @ 08123167 n 0000 %p 08143926 n 0000 %p 08144308 n 0000 %p 08192557 n 0000 | the United States federal department that institutes and coordinates national transportation programs; created in 1966 -08143926 14 n 02 Federal_Aviation_Agency 0 FAA 0 002 @ 08337324 n 0000 #p 08143653 n 0000 | an agency in the Department of Transportation that is responsible for the safety of civilian aviation -08144122 14 n 02 Department_of_Veterans_Affairs 0 VA 0 001 @ 08123167 n 0000 | the United States federal department responsible for the interests of military veterans; created in 1989 -08144308 14 n 02 Transportation_Security_Administration 0 TSA 0 002 @ 08337324 n 0000 #p 08143653 n 0000 | an agency established in 2001 to safeguard United States transportation systems and insure safe air travel -08144524 14 n 01 Department_of_Commerce_and_Labor 0 001 @ 08123167 n 0000 | a former executive department of the United States government; created in 1903 and split into two departments in 1913 -08144720 14 n 01 Department_of_Health_Education_and_Welfare 0 001 @ 08123167 n 0000 | a former executive department of the United States government; created in 1953 and divided in 1979 -08144907 14 n 01 Navy_Department 0 001 @ 08123167 n 0000 | a former executive department of the United States government; created in 1798 and combined with the War Department in 1947 -08145092 14 n 01 War_Department 0 001 @ 08123167 n 0000 | a former executive department of the United States government; created in 1789 and combined with the Navy Department in 1947 -08145277 14 n 04 United_States_Post_Office 0 US_Post_Office 0 Post_Office 0 PO 0 001 @ 08338847 n 0000 | an independent agency of the federal government responsible for mail delivery (and sometimes telecommunications) between individuals and businesses in the United States -08145553 14 n 02 post_office 1 local_post_office 0 002 @ 08401248 n 0000 %p 08145701 n 0000 | a local branch where postal services are available" -08145701 14 n 02 general_delivery 0 poste_restante 0 002 @ 08189659 n 0000 #p 08145553 n 0000 | the part of a post office that handles mail for persons who call for it -08145871 14 n 02 generally_accepted_accounting_principles 0 GAAP 0 002 @ 07951464 n 0000 %m 05955593 n 0000 | a collection of rules and procedures and conventions that define accepted accounting practice; includes broad guidelines as well as detailed procedures -08146135 14 n 01 instrumentality 0 002 @ 08189659 n 0000 #p 08119821 n 0000 | a subsidiary organ of government created for a special purpose; "are the judicial instrumentalities of local governments adequate?"; "he studied the French instrumentalities for law enforcement" -08146410 14 n 02 neonatal_intensive_care_unit 0 NICU 0 001 @ 08146593 n 0000 | an intensive care unit designed with special equipment to care for premature or seriously ill newborn -08146593 14 n 02 intensive_care_unit 0 ICU 0 004 @ 08189659 n 0000 #p 08054417 n 0000 ~ 08077842 n 0000 ~ 08146410 n 0000 | a hospital unit staffed and equipped to provide intensive care -08146782 14 n 01 denomination 0 006 @ 08009834 n 0000 + 01030132 v 0102 %m 07991364 n 0000 ~ 08147019 n 0000 ~ 08147188 n 0000 %m 09847727 n 0000 | a group of religious congregations having its own organization and a distinctive faith -08147019 14 n 01 communion 0 002 @ 08146782 n 0000 ;c 06226057 n 0000 | (Christianity) a group of Christians with a common religious faith who practice the same rites -08147188 14 n 01 Protestant_denomination 0 022 @ 08146782 n 0000 #m 08087570 n 0000 ~ 08087776 n 0000 ~ 08087981 n 0000 ~ 08089205 n 0000 ~ 08089420 n 0000 ~ 08089627 n 0000 ~ 08090803 n 0000 ~ 08090973 n 0000 ~ 08091152 n 0000 ~ 08091290 n 0000 ~ 08091412 n 0000 ~ 08091575 n 0000 ~ 08091744 n 0000 ~ 08091891 n 0000 ~ 08092040 n 0000 ~ 08092190 n 0000 ~ 08092340 n 0000 ~ 08092539 n 0000 ~ 08093111 n 0000 ~ 08093269 n 0000 ~ 08150770 n 0000 | group of Protestant congregations -08147670 14 n 01 brethren 0 002 @ 08149781 n 0000 ;u 06295235 n 0000 | (plural) the lay members of a male religious order -08147794 14 n 02 order 3 monastic_order 0 008 @ 08149781 n 0000 ~ 08148067 n 0000 ~ 08148601 n 0000 ~ 08148827 n 0000 ~ 08149004 n 0000 ~ 08149160 n 0000 ~ 08149314 n 0000 ~ 08149473 n 0000 | a group of person living under a religious rule; "the order of Saint Benedict" -08148067 14 n 01 Augustinian_order 0 005 @ 08147794 n 0000 ~ 08148294 n 0000 ~ 08148388 n 0000 ~ 08148512 n 0000 %m 10778711 n 0000 | any of several monastic orders observing a rule derived from the writings of St. Augustine -08148294 14 n 01 Augustinian_Canons 0 001 @ 08148067 n 0000 | an Augustinian monastic order -08148388 14 n 01 Augustinian_Hermits 0 001 @ 08148067 n 0000 | a monastic order of friars established in 1256 by the Pope -08148512 14 n 01 Austin_Friars 0 001 @ 08148067 n 0000 | an Augustinian monastic order -08148601 14 n 02 Benedictine_order 0 order_of_Saint_Benedict 0 002 @ 08147794 n 0000 %m 10112434 n 0000 | a Roman Catholic monastic order founded in the 6th century; noted for liturgical worship and for scholarly activities -08148827 14 n 02 Carmelite_order 0 Order_of_Our_Lady_of_Mount_Carmel 0 002 @ 08147794 n 0000 %m 10778148 n 0000 | a Roman Catholic mendicant order founded in the 12th century -08149004 14 n 01 Carthusian_order 0 002 @ 08147794 n 0000 %m 09898107 n 0000 | an austere contemplative Roman Catholic order founded by St. Bruno in 1084 -08149160 14 n 01 Dominican_order 0 002 @ 08147794 n 0000 %m 10778345 n 0000 | a Roman Catholic order of mendicant preachers founded in the 13th century -08149314 14 n 01 Franciscan_order 0 002 @ 08147794 n 0000 %m 10778553 n 0000 | a Roman Catholic order founded by Saint Francis of Assisi in the 13th century -08149473 14 n 02 Society_of_Jesus 0 Jesuit_order 0 002 @ 08147794 n 0000 %m 10221520 n 0000 | a Roman Catholic order founded by Saint Ignatius of Loyola in 1534 to defend Catholicism against the Reformation and to do missionary work among the heathen; it is strongly committed to education and scholarship -08149781 14 n 03 sect 1 religious_sect 0 religious_order 0 027 @ 08081668 n 0000 + 02794372 a 0101 + 02091574 a 0101 ~ 08075647 n 0000 ~ 08085159 n 0000 ~ 08088963 n 0000 ~ 08093653 n 0000 ~ 08093813 n 0000 ~ 08094386 n 0000 ~ 08096301 n 0000 ~ 08096474 n 0000 ~ 08097072 n 0000 ~ 08097222 n 0000 ~ 08097391 n 0000 ~ 08097531 n 0000 ~ 08097766 n 0000 ~ 08098192 n 0000 ~ 08098499 n 0000 ~ 08100481 n 0000 ~ 08100656 n 0000 ~ 08147670 n 0000 ~ 08147794 n 0000 ~ 08150377 n 0000 ~ 08150576 n 0000 ~ 08150892 n 0000 ~ 08151096 n 0000 %p 08224413 n 0000 | a subdivision of a larger religious group -08150377 14 n 03 Religious_Society_of_Friends 0 Society_of_Friends 0 Quakers 0 002 @ 08149781 n 0000 %m 09679708 n 0000 | a Christian sect founded by George Fox about 1660; commonly called Quakers -08150576 14 n 02 Shakers 0 United_Society_of_Believers_in_Christ's_Second_Appearing 0 002 @ 08149781 n 0000 %m 10585773 n 0000 | a celibate and communistic Christian sect in the United States -08150770 14 n 01 Assemblies_of_God 0 001 @ 08147188 n 0000 | a charismatic Protestant denomination in the United States -08150892 14 n 02 Waldenses 0 Vaudois 0 001 @ 08149781 n 0000 | a Christian sect of dissenters that originated in southern France in the late 12th century adopted Calvinist doctrines in the 16th century -08151096 14 n 01 Zurvanism 0 001 @ 08149781 n 0000 | a Zoroastrian sect that claims Zurvan was the ultimate source of the universe -08151229 14 n 01 cult 1 004 @ 08081668 n 0000 + 09982525 n 0101 ~ 08151753 n 0000 %m 09982525 n 0000 | followers of an unorthodox, extremist, or false religion or sect who often live outside of conventional society under the direction of a charismatic leader -08151490 14 n 01 cult 0 009 @ 08081668 n 0000 + 09982370 n 0101 ~ 08152069 n 0000 ~ 08152198 n 0000 ~ 08152353 n 0000 ~ 08152507 n 0000 ~ 08292418 n 0000 ~ 08485977 n 0000 %m 09982370 n 0000 | followers of an exclusive system of religious beliefs and practices -08151753 14 n 01 cargo_cult 0 002 @ 08151229 n 0000 ;c 08836630 n 0000 | (Melanesia) the followers of one of several millenarian cults that believe salvation will come in the form of wealth (`cargo') brought by westerners; some ascribe divine attributes to westerners on first contact (especially to missionaries) -08152069 14 n 01 macumba 0 002 @ 08151490 n 0000 ;c 08853741 n 0000 | (Brazil) followers of a religious cult of African origin -08152198 14 n 02 obeah 0 obi 0 002 @ 08151490 n 0000 ;c 08747054 n 0000 | (West Indies) followers of a religious system involving witchcraft and sorcery -08152353 14 n 01 Rastafarian 0 002 @ 08151490 n 0000 ;c 08778061 n 0000 | (Ethiopia) adherents of an African religion that regards Ras Tafari as divine -08152507 14 n 01 voodoo 0 002 @ 08151490 n 0000 ;c 08751494 n 0000 | (Haiti) followers of a religion that involves witchcraft and animistic deities -08152657 14 n 01 sainthood 0 004 @ 00031264 n 0000 + 10547145 n 0101 + 10546850 n 0101 %m 10547145 n 0000 | saints collectively -08152787 14 n 01 clergy 0 007 @ 08113443 n 0000 + 02697911 a 0101 ! 08153102 n 0101 ~ 08113634 n 0000 ~ 08113710 n 0000 ~ 08153022 n 0000 %m 09927451 n 0000 | in Christianity, clergymen collectively (as distinguished from the laity) -08153022 14 n 01 cardinalate 0 001 @ 08152787 n 0000 | cardinals collectively -08153102 14 n 02 laity 0 temporalty 0 004 @ 08180190 n 0000 + 02057226 a 0102 ! 08152787 n 0101 %m 10250527 n 0000 | in Christianity, members of a religious community that do not have the priestly responsibilities of ordained clergy -08153337 14 n 01 pantheon 0 002 @ 07951464 n 0000 %m 09505418 n 0000 | all the gods of a religion -08153437 14 n 04 royalty 0 royal_family 0 royal_line 0 royal_house 0 016 @ 07971449 n 0000 ~ 08154960 n 0000 ~ 08155302 n 0000 ~ 08155518 n 0000 ~ 08155765 n 0000 ~ 08156685 n 0000 ~ 08157672 n 0000 ~ 08157809 n 0000 ~ 08158460 n 0000 ~ 08159924 n 0000 %m 10175090 n 0000 %m 10231515 n 0000 %m 10472799 n 0000 %m 10474064 n 0000 %m 10499355 n 0000 %m 10499857 n 0000 | royal persons collectively; "the wedding was attended by royalty" -08153874 14 n 01 Ordnance_Survey 0 002 @ 08077292 n 0000 ;r 08860123 n 0000 | the official cartography agency of the British government -08154012 14 n 02 Bourbon 0 Bourbon_dynasty 0 003 @ 07971582 n 0000 %m 09869578 n 0000 %m 11042165 n 0000 | a European royal line that ruled in France (from 1589-1793) and Spain and Naples and Sicily -08154213 14 n 01 Capetian_dynasty 0 002 @ 07971582 n 0000 %m 09892156 n 0000 | a Frankish dynasty founded by Hugh Capet that ruled from 987 to 1328 -08154363 14 n 02 Carolingian_dynasty 0 Carlovingian_dynasty 0 002 @ 07971582 n 0000 %m 09896520 n 0000 | a Frankish dynasty founded by Charlemagne's father that ruled from 751 to 987 -08154548 14 n 01 Flavian_dynasty 0 001 @ 07971582 n 0000 | a dynasty of Roman Emperors from 69 to 96 including Vespasian and his sons Titus and Domitian -08154703 14 n 02 Han 0 Han_dynasty 0 001 @ 07971582 n 0000 | imperial dynasty that ruled China (most of the time from 206 BC to AD 220) and expanded its boundaries and developed its bureaucracy; remembered as one of the great eras of Chinese civilization -08154960 14 n 03 Hanover 0 House_of_Hanover 0 Hanoverian_line 0 010 @ 07971582 n 0000 @ 08153437 n 0000 + 03071838 a 0101 %m 09704368 n 0000 %m 10159852 n 0000 %m 10994906 n 0000 %m 10995115 n 0000 %m 10995292 n 0000 %m 10995592 n 0000 %m 11365857 n 0000 | the English royal house that reigned from 1714 to 1901 (from George I to Victoria) -08155302 14 n 02 Habsburg 0 Hapsburg 0 002 @ 07971582 n 0000 @ 08153437 n 0000 | a royal German family that provided rulers for several European states and wore the crown of the Holy Roman Empire from 1440 to 1806 -08155518 14 n 01 Hohenzollern 0 008 @ 07971582 n 0000 @ 08153437 n 0000 %m 10980097 n 0000 %m 10980681 n 0000 %m 10980893 n 0000 %m 10981089 n 0000 %m 10981251 n 0000 %m 10981409 n 0000 | a German noble family that ruled Brandenburg and Prussia -08155765 14 n 03 Lancaster 0 House_of_Lancaster 0 Lancastrian_line 0 007 @ 07971582 n 0000 @ 08153437 n 0000 + 03079460 a 0101 %m 09704157 n 0000 %m 11041814 n 0000 %m 11042482 n 0000 %m 11042691 n 0000 | the English royal house that reigned from 1399 to 1461; its emblem was a red rose -08156054 14 n 02 Liao 0 Liao_dynasty 0 001 @ 07971582 n 0000 | the dynasty that ruled much of Manchuria and northeastern China from 947 to 1125 -08156200 14 n 02 Merovingian 0 Merovingian_dynasty 0 002 @ 07971582 n 0000 %m 10310404 n 0000 | a Frankish dynasty founded by Clovis I that reigned in Gaul and Germany from about 500 to 750 -08156392 14 n 02 Ming 0 Ming_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty of China from 1368 to 1644 -08156505 14 n 02 Ottoman 0 Ottoman_dynasty 0 001 @ 07971582 n 0000 | the Turkish dynasty that ruled the Ottoman Empire from the 13th century to its dissolution after World War I -08156685 14 n 02 Plantagenet 0 Plantagenet_line 0 007 @ 07971582 n 0000 @ 08153437 n 0000 %m 11040985 n 0000 %m 11041447 n 0000 %m 11086279 n 0000 %m 11259950 n 0000 %m 11260325 n 0000 | the family name of a line of English kings that reigned from 1154 to 1485 -08156948 14 n 02 Ptolemy 0 Ptolemaic_dynasty 0 003 @ 07971582 n 0000 %m 11247644 n 0000 %m 11247897 n 0000 | an ancient dynasty of Macedonian kings who ruled Egypt from 323 BC to 30 BC; founded by Ptolemy I and ended with Cleopatra -08157182 14 n 04 Qin 0 Qin_dynasty 0 Ch'in 0 Ch'in_dynasty 0 001 @ 07971582 n 0000 | the Chinese dynasty (from 246 BC to 206 BC) that established the first centralized imperial government and built much of the Great Wall -08157405 14 n 06 Qing 0 Qing_dynasty 0 Ch'ing 0 Ch'ing_dynasty 0 Manchu 0 Manchu_dynasty 0 001 @ 07971582 n 0000 | the last imperial dynasty of China (from 1644 to 1912) which was overthrown by revolutionaries; during the Qing dynasty China was ruled by the Manchu -08157672 14 n 02 Romanov 0 Romanoff 0 002 @ 08153437 n 0000 @ 07971582 n 0000 | the Russian imperial line that ruled from 1613 to 1917 -08157809 14 n 01 Saxe-Coburg-Gotha 0 004 @ 07971582 n 0000 @ 08153437 n 0000 %m 10951459 n 0000 %m 10995850 n 0000 | the name of the royal family that ruled Great Britain from 1901-1917; the name was changed to Windsor in 1917 in response to anti-German feelings in World War I -08158089 14 n 01 Seljuk 0 001 @ 07971582 n 0000 | any one of the Turkish dynasties that ruled Asia Minor from the 11th to the 13th centuries; they successfully invaded Byzantium and defended the Holy Land against Crusaders -08158314 14 n 02 Shang 0 Shang_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty ruling China from about the 18th to the 12th centuries BC -08158460 14 n 01 Stuart 0 007 @ 07971582 n 0000 @ 08153437 n 0000 %m 10665455 n 0000 %m 11079802 n 0000 %m 11080174 n 0000 %m 11080351 n 0000 %m 11162206 n 0000 | the royal family that ruled Scotland from 1371-1714 and ruled England from 1603 to 1649 and again from 1660 to 1714 -08158741 14 n 04 Sung 0 Sung_dynasty 0 Song 0 Song_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty of China from 960 to 1279; noted for art and literature and philosophy -08158920 14 n 02 Tang 0 Tang_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty of China from 618 to 907 -08159031 14 n 02 Tudor 0 House_of_Tudor 0 007 @ 07971582 n 0000 %m 10732854 n 0000 %m 10957330 n 0000 %m 11015872 n 0000 %m 11043040 n 0000 %m 11043519 n 0000 %m 11161664 n 0000 | an English dynasty descended from Henry Tudor; Tudor monarchs ruled from Henry VII to Elizabeth I (from 1485 to 1603) -08159331 14 n 03 Umayyad 0 Ommiad 0 Omayyad 0 001 @ 07971582 n 0000 | the first dynasty of Arab caliphs whose capital was Damascus -08159464 14 n 01 Valois 0 003 @ 07971582 n 0000 %m 11041236 n 0000 %m 11041660 n 0000 | French royal house from 1328 to 1589 -08159591 14 n 02 Wei 0 Wei_dynasty 0 001 @ 07971582 n 0000 | any of several imperial dynasties of China ruling from 220 to 265 and from 386 to 556 -08159740 14 n 02 Windsor 0 House_of_Windsor 0 005 @ 07971582 n 0000 %m 10951697 n 0000 %m 10957748 n 0000 %m 10995850 n 0000 %m 10996090 n 0000 | the British royal family since 1917 -08159924 14 n 02 York 0 House_of_York 0 003 @ 07971582 n 0000 @ 08153437 n 0000 %m 11260622 n 0000 | the English royal house (a branch of the Plantagenet line) that reigned from 1461 to 1485; its emblem was a white rose -08160146 14 n 03 Yuan 0 Yuan_dynasty 0 Mongol_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty of China from 1279 to 1368 -08160276 14 n 02 citizenry 0 people 1 011 @ 00031264 n 0000 + 02650840 v 0201 + 00451461 v 0201 ~ 07945369 n 0000 ~ 08160586 n 0000 ~ 08160697 n 0000 ~ 08160808 n 0000 ~ 08160947 n 0000 ~ 08161068 n 0000 ~ 08161258 n 0000 %m 09923673 n 0000 | the body of citizens of a state or country; "the Spanish people" -08160586 14 n 02 Achaean 0 Arcado-Cyprians 0 001 @ 08160276 n 0000 | the ancient Greek inhabitants of Achaea -08160697 14 n 01 Aeolian 0 002 @ 08160276 n 0000 + 02600999 a 0101 | the ancient Greek inhabitants of Aeolia -08160808 14 n 01 Dorian 0 001 @ 08160276 n 0000 | the ancient Greek inhabitants of Doris who entered Greece from the north about 1100 BC -08160947 14 n 01 Ionian 0 001 @ 08160276 n 0000 | the ancient Greek inhabitants of Attica and related regions in Ionia -08161068 14 n 01 electorate 0 005 @ 08160276 n 0000 + 02400760 v 0101 %m 08238156 n 0000 %m 08480662 n 0000 %m 10760340 n 0000 | the body of enfranchised citizens; those qualified to vote -08161258 14 n 01 governed 0 001 @ 08160276 n 0000 | the body of people who are citizens of a particular government; "governments derive their just powers from the consent of the governed"--Declaration of Independence -08161477 14 n 01 senate 0 002 @ 08163273 n 0000 ~ 08161591 n 0000 | assembly possessing high legislative powers -08161591 14 n 04 United_States_Senate 0 U.S._Senate 0 US_Senate 0 Senate 1 002 @ 08161477 n 0000 #m 08161757 n 0000 | the upper house of the United States Congress -08161757 14 n 04 Congress 1 United_States_Congress 0 U.S._Congress 0 US_Congress 0 004 @ 08163273 n 0000 #m 08356375 n 0000 %m 08161591 n 0000 %m 08161971 n 0000 | the legislature of the United States government -08161971 14 n 06 United_States_House_of_Representatives 0 U.S._House_of_Representatives 0 US_House_of_Representatives 0 House_of_Representatives 0 U.S._House 0 US_House 0 002 @ 08163025 n 0000 #m 08161757 n 0000 | the lower legislative house of the United States Congress -08162245 14 n 03 Government_Accounting_Office 0 GAO 0 United_States_Government_Accounting_Office 0 001 @ 08337324 n 0000 | an independent nonpartisan federal agency that acts as the investigative arm of Congress making the executive branch accountable to Congress and the government accountable to citizens of the United States -08162575 14 n 01 House_of_Burgesses 0 001 @ 08163025 n 0000 | the lower house of legislature in colonial Virginia -08162691 14 n 02 House_of_Commons 0 British_House_of_Commons 0 003 @ 08163025 n 0000 #m 08319408 n 0000 %m 10400437 n 0000 | the lower house of the British parliament -08162860 14 n 02 House_of_Lords 0 British_House_of_Lords 0 003 @ 08163025 n 0000 #m 08319408 n 0000 %m 10413276 n 0000 | the upper house of the British parliament -08163025 14 n 01 house 2 007 @ 08163273 n 0000 ~ 08161971 n 0000 ~ 08162575 n 0000 ~ 08162691 n 0000 ~ 08162860 n 0000 ~ 08319539 n 0000 ~ 08319908 n 0000 | an official assembly having legislative powers; "a bicameral legislature has two houses" -08163273 14 n 05 legislature 0 legislative_assembly 0 legislative_body 0 general_assembly 0 law-makers 0 015 @ 08163792 n 0000 #m 08050678 n 0000 + 02466670 v 0101 -c 02215769 a 0000 -c 05904313 n 0000 ~ 08161477 n 0000 ~ 08161757 n 0000 ~ 08163025 n 0000 ~ 08163702 n 0000 ~ 08318691 n 0000 ~ 08318777 n 0000 ~ 08319198 n 0000 ~ 08320052 n 0000 -c 10581094 n 0000 -c 13289845 n 0000 | persons who make or amend or repeal laws -08163702 14 n 01 legislative_council 0 001 @ 08163273 n 0000 | a unicameral legislature -08163792 14 n 01 assembly 0 012 @ 07975026 n 0000 ~ 08163273 n 0000 ~ 08164110 n 0000 ~ 08164261 n 0000 ~ 08228838 n 0000 ~ 08295894 n 0000 ~ 08312559 n 0000 ~ 08318904 n 0000 ~ 08328700 n 0000 ~ 08329453 n 0000 ~ 08398467 n 0000 ~ 08398580 n 0000 | a group of persons who are gathered together for a common purpose -08164110 14 n 01 Areopagus 0 002 @ 08163792 n 0000 %m 09807379 n 0000 | the highest governmental assembly in ancient Athens (later a judicial court) -08164261 14 n 01 States_General 0 002 @ 08163792 n 0000 ~ 08164464 n 0000 | assembly of the estates of an entire country especially the sovereign body of the Dutch republic from 16th to 18th centuries -08164464 14 n 01 Estates_General 0 001 @ 08164261 n 0000 | assembly of the estates of all France; last meeting in 1789 -08164585 14 n 07 administration 0 governance 0 governing_body 0 establishment 2 brass 0 organization 1 organisation 1 019 @ 07965085 n 0000 #p 08050678 n 0000 + 02448185 v 0703 + 02432530 v 0702 + 00710005 v 0705 + 02448185 v 0602 + 02432530 v 0601 + 00710005 v 0604 + 00404642 v 0601 + 02431971 v 0101 ~ 08085648 n 0000 ~ 08165353 n 0000 ~ 08165455 n 0000 ~ 08166187 n 0000 ~ 08357529 n 0000 ~ 08357784 n 0000 %p 08376051 n 0000 ~ 08381165 n 0000 %m 08381636 n 0000 | the persons (or committees or departments etc.) who make up a body for the purpose of administering something; "he claims that the present administration is corrupt"; "the governance of an association is responsible to its members"; "he quickly became recognized as a member of the establishment" -08165353 14 n 01 top_brass 0 001 @ 08164585 n 0000 | the most important persons in a governing body -08165455 14 n 01 executive 1 007 @ 08164585 n 0000 #m 08050678 n 0000 ~ 08165650 n 0000 ~ 08165760 n 0000 ~ 08165866 n 0000 ~ 08165979 n 0000 ~ 08166083 n 0000 | persons who administer the law -08165650 14 n 01 Bush_administration 1 001 @ 08165455 n 0000 | the executive under President George W. Bush -08165760 14 n 01 Clinton_administration 0 001 @ 08165455 n 0000 | the executive under President Clinton -08165866 14 n 01 Bush_administration 0 001 @ 08165455 n 0000 | the executive under President George H. W. Bush -08165979 14 n 01 Reagan_administration 0 001 @ 08165455 n 0000 | the executive under President Reagan -08166083 14 n 01 Carter_administration 0 001 @ 08165455 n 0000 | the executive under President Carter -08166187 14 n 02 judiciary 0 bench 0 003 @ 08164585 n 0000 #m 08050678 n 0000 + 02501278 v 0101 | persons who administer justice -08166318 14 n 04 judiciary 1 judicature 0 judicatory 0 judicial_system 0 003 @ 08435388 n 0000 #p 08050678 n 0000 ~ 08141951 n 0000 | the system of law courts that administer justice and constitute the judicial branch of government -08166552 14 n 03 nation 1 land 1 country 1 009 @ 07942152 n 0000 %m 09625401 n 0000 ~ 09699763 n 0000 ~ 09732544 n 0000 ~ 09732668 n 0000 ~ 09732778 n 0000 ~ 09732903 n 0000 ~ 09733243 n 0000 ~ 09733333 n 0000 | the people who live in a nation or country; "a statement that sums up the nation's mood"; "the news was announced to the nation"; "the whole country worshipped him" -08166931 14 n 01 commonwealth_country 0 001 @ 08168978 n 0000 | any of the countries in the British Commonwealth -08167046 14 n 01 developing_country 0 001 @ 08168978 n 0000 | a country that is poor and whose citizens are mostly agricultural workers but that wants to become more advanced socially and economically -08167249 14 n 01 Dominion 0 001 @ 08168978 n 0000 | one of the self-governing nations in the British Commonwealth -08167365 14 n 03 estate_of_the_realm 0 estate 0 the_three_estates 0 008 @ 07974025 n 0000 #p 08168978 n 0000 ;r 08860123 n 0000 ;r 08929922 n 0000 ~ 08167779 n 0000 ~ 08167953 n 0000 ~ 08168117 n 0000 ~ 08168241 n 0000 | a major social class or order of persons regarded collectively as part of the body politic of the country (especially in the United Kingdom) and formerly possessing distinct political rights -08167779 14 n 02 first_estate 0 Lords_Spiritual 0 003 @ 08167365 n 0000 ;r 08860123 n 0000 ;r 08929922 n 0000 | the clergy in France and the heads of the church in Britain -08167953 14 n 02 second_estate 0 Lords_Temporal 0 003 @ 08167365 n 0000 ;r 08860123 n 0000 ;r 08929922 n 0000 | the nobility in France and the peerage in Britain -08168117 14 n 02 third_estate 0 Commons 1 003 @ 08167365 n 0000 ;r 08860123 n 0000 ;r 08929922 n 0000 | the common people -08168241 14 n 01 fourth_estate 0 001 @ 08167365 n 0000 | the press, including journalists, newspaper writers, photographers -08168367 14 n 01 foreign_country 0 001 @ 08168978 n 0000 | any state of which one is not a citizen; "working in a foreign country takes a bit of getting used to" -08168531 14 n 02 tribe 1 federation_of_tribes 0 006 @ 08303692 n 0000 ;r 09044862 n 0000 + 03074922 a 0101 %m 09648309 n 0000 %m 09648743 n 0000 %m 09649067 n 0000 | a federation (as of American Indians) -08168737 14 n 01 Free_World 0 001 @ 07951464 n 0000 | anti-communist countries collectively -08168831 14 n 01 Third_World 0 001 @ 07951464 n 0000 | underdeveloped and developing countries of Asia and Africa and Latin America collectively -08168978 14 n 07 state 0 nation 0 country 0 land 0 commonwealth 0 res_publica 0 body_politic 0 014 @ 08359949 n 0000 ~ 08166931 n 0000 ~ 08167046 n 0000 ~ 08167249 n 0000 %p 08167365 n 0000 ~ 08168367 n 0000 ~ 08169573 n 0000 ~ 08170374 n 0000 ~ 08170535 n 0000 ~ 08177487 n 0000 ~ 08177592 n 0000 ~ 08177958 n 0000 ~ 08305942 n 0000 ~i 08719892 n 0000 | a politically organized body of people under a single government; "the state has elected a new president"; "African nations"; "students who had come to the nation's capitol"; "the country's largest manufacturer"; "an industrialized land" -08169573 14 n 01 Reich 0 003 @ 08168978 n 0000 ~ 08169919 n 0000 ~ 08170255 n 0000 | the German state -08169677 14 n 01 Holy_Roman_Empire 0 002 @ 08359949 n 0000 #p 09275473 n 0000 | a political entity in Europe that began with the papal coronation of Otto I as the first emperor in 962 and lasted until 1806 when it was dissolved by Napoleon -08169919 14 n 02 Hohenzollern_empire 0 Second_Reich 0 001 @ 08169573 n 0000 | the Reich when Hohenzollern monarchs ruled Germany (from 1871 to 1919) -08170070 14 n 01 Weimar_Republic 0 001 @ 08361329 n 0000 | the German republic founded at Weimar in 1919; "The Weimar Republic was overthrown in 1933 and replaced by the Third Reich" -08170255 14 n 02 Third_Reich 0 Nazi_Germany 0 001 @ 08169573 n 0000 | the Nazi dictatorship under Hitler (1933-1945) -08170374 14 n 03 rogue_state 0 renegade_state 0 rogue_nation 0 001 @ 08168978 n 0000 | a state that does not respect other states in its international actions -08170535 14 n 01 suzerain 0 001 @ 08168978 n 0000 | a state exercising a degree of dominion over a dependent state especially in its foreign affairs -08170686 14 n 01 member 0 002 @ 08189659 n 0000 + 13931627 n 0101 | an organization that is a member of another organization (especially a state that belongs to a group of nations); "the library was a member of the interlibrary loan association"; "Canada is a member of the United Nations" -08170978 14 n 01 allies 0 001 @ 08293982 n 0000 | an alliance of nations joining together to fight a common enemy -08171094 14 n 02 bloc 0 axis 0 002 @ 08293982 n 0000 ~ 08303097 n 0000 | a group of countries in special alliance -08171210 14 n 01 Allies 1 001 @ 08293982 n 0000 | in World War I the alliance of Great Britain and France and Russia and all the other nations that became allied with them in opposing the Central Powers -08171415 14 n 01 Central_Powers 0 001 @ 08293982 n 0000 | in World War I the alliance of Germany and Austria-Hungary and other nations allied with them in opposing the Allies -08171592 14 n 01 Allies 2 001 @ 08293982 n 0000 | the alliance of nations that fought the Axis in World War II and which (with subsequent additions) signed the charter of the United Nations in 1945 -08171792 14 n 01 Axis 1 001 @ 08293982 n 0000 | in World War II the alliance of Germany and Italy in 1936 which later included Japan and other nations; "the Axis opposed the Allies in World War II" -08171992 14 n 02 entente 0 entente_cordiale 0 001 @ 08293982 n 0000 | an informal alliance between countries -08172103 14 n 01 Arab_League 0 021 @ 08294696 n 0000 %m 08705397 n 0000 %m 08762495 n 0000 %m 08848094 n 0000 %m 08897065 n 0000 %m 08913434 n 0000 %m 08927186 n 0000 %m 08929243 n 0000 %m 08957381 n 0000 %m 08959683 n 0000 %m 08966820 n 0000 %m 08969291 n 0000 %m 08975106 n 0000 %m 08986905 n 0000 %m 08993288 n 0000 %m 08998560 n 0000 %m 09029457 n 0000 %m 09033333 n 0000 %m 09037394 n 0000 %m 09044190 n 0000 %m 09164561 n 0000 | an international organization of independent Arab states formed in 1945 to promote cultural and economic and military and political and social cooperation -08172695 14 n 01 Europe 1 002 @ 07951464 n 0000 + 02968325 a 0101 | the nations of the European continent collectively; "the Marshall Plan helped Europe recover from World War II" -08172877 14 n 01 Asia 0 004 @ 07951464 n 0000 + 02968525 a 0102 + 02968525 a 0101 ~i 08562620 n 0000 | the nations of the Asian continent collectively -08173030 14 n 01 North_America 0 002 @ 07951464 n 0000 %m 09738400 n 0000 | the nations of the North American continent collectively -08173165 14 n 01 Central_America 0 002 @ 07951464 n 0000 %m 09738400 n 0000 | the nations of Central America collectively -08173289 14 n 01 South_America 0 003 @ 07951464 n 0000 + 02928728 a 0101 %m 09738400 n 0000 | the nations of the South American continent collectively; "South America is an important market for goods from the United States" -08173515 14 n 08 European_Union 0 EU 0 European_Community 0 EC 0 European_Economic_Community 0 EEC 0 Common_Market 0 Europe 0 017 @ 08294696 n 0000 + 02968325 a 0801 %m 08761244 n 0000 %m 08765890 n 0000 %m 08766988 n 0000 %m 08779504 n 0000 %m 08780881 n 0000 %m 08801678 n 0000 %m 08845555 n 0000 %m 08849753 n 0000 %m 08860123 n 0000 %m 08888676 n 0000 %m 08929922 n 0000 %m 08949093 n 0000 %m 08960987 n 0000 %m 08984788 n 0000 %m 09023321 n 0000 | an international organization of European countries formed after World War II to reduce trade barriers and increase cooperation among its members; "he tried to take Britain into the Europen Union" -08174167 14 n 02 Supreme_Headquarters_Allied_Powers_Europe 0 SHAPE 0 002 @ 08405267 n 0000 #p 08174398 n 0000 | the supreme headquarters that advises NATO on military matters and oversees all aspects of the Allied Command Europe -08174398 14 n 02 North_Atlantic_Treaty_Organization 0 NATO 0 022 @ 08294696 n 0000 %p 08174167 n 0000 %p 08174995 n 0000 %p 08175498 n 0000 %p 08310722 n 0000 %m 08714132 n 0000 %m 08761244 n 0000 %m 08764107 n 0000 %m 08766988 n 0000 %m 08780881 n 0000 %m 08801678 n 0000 %m 08820121 n 0000 %m 08849753 n 0000 %m 08860123 n 0000 %m 08929922 n 0000 %m 08949093 n 0000 %m 08953324 n 0000 %m 08960987 n 0000 %m 08984788 n 0000 %m 09023321 n 0000 %m 09039411 n 0000 %m 09044862 n 0000 | an international organization created in 1949 by the North Atlantic Treaty for purposes of collective security -08174995 14 n 02 Allied_Command_Atlantic 0 ACLANT 0 003 @ 08404895 n 0000 #p 08174398 n 0000 %m 08175233 n 0000 | a major strategic headquarters of NATO located in the United States; is under the authority of the North Atlantic Council -08175233 14 n 02 Supreme_Allied_Commander_Atlantic 0 SACLANT 0 002 @ 09941964 n 0000 #m 08174995 n 0000 | commanding officer of ACLANT; a general of the United States Army nominated by the President of the United States and approved by the North Atlantic Council -08175498 14 n 02 Allied_Command_Europe 0 ACE 0 003 @ 08404895 n 0000 #p 08174398 n 0000 %m 08175700 n 0000 | a major strategic headquarters of NATO; safeguards an area extending from Norway to Turkey -08175700 14 n 02 Supreme_Allied_Commander_Europe 0 SACEUR 0 002 @ 09941964 n 0000 #m 08175498 n 0000 | commanding officer of ACE; NATO's senior military commander in Europe -08175875 14 n 02 Organization_for_the_Prohibition_of_Chemical_Weapons 0 OPCW 0 001 @ 08294696 n 0000 | international organization for chemical disarmament; administers the Chemical Weapons Convention -08176077 14 n 02 Organization_of_American_States 0 OAS 0 032 @ 08294696 n 0000 %m 08709704 n 0000 %m 08711974 n 0000 %m 08720481 n 0000 %m 08732116 n 0000 %m 08736107 n 0000 %m 08737041 n 0000 %m 08737716 n 0000 %m 08738272 n 0000 %m 08739206 n 0000 %m 08740875 n 0000 %m 08750334 n 0000 %m 08751494 n 0000 %m 08752021 n 0000 %m 08753933 n 0000 %m 08755214 n 0000 %m 08756202 n 0000 %m 08763193 n 0000 %m 08776687 n 0000 %m 08847268 n 0000 %m 08852843 n 0000 %m 08853741 n 0000 %m 08946909 n 0000 %m 08978343 n 0000 %m 08979054 n 0000 %m 08987423 n 0000 %m 08988609 n 0000 %m 08989031 n 0000 %m 09030752 n 0000 %m 09044862 n 0000 %m 09160295 n 0000 %m 09161803 n 0000 | an association including most countries in the western hemisphere; created in 1948 to promote military and economic and social and cultural cooperation -08176901 14 n 01 Pan_American_Union 0 001 @ 08324274 n 0000 | the administrative agency of the Organization of American States -08177030 14 n 02 Organization_of_Petroleum-Exporting_Countries 0 OPEC 0 014 @ 08294696 n 0000 @ 08237699 n 0000 %m 08705397 n 0000 %m 08897065 n 0000 %m 08900535 n 0000 %m 08907606 n 0000 %m 08910668 n 0000 %m 08913434 n 0000 %m 08929243 n 0000 %m 08959683 n 0000 %m 08986905 n 0000 %m 08993288 n 0000 %m 09044190 n 0000 %m 09161803 n 0000 | an organization of countries formed in 1961 to agree on a common policy for the production and sale of petroleum -08177487 14 n 01 sea_power 0 001 @ 08168978 n 0000 | a nation that possesses formidable naval strength -08177592 14 n 05 world_power 0 major_power 0 great_power 0 power 0 superpower 0 002 @ 08168978 n 0000 ~ 08177781 n 0000 | a state powerful enough to influence events throughout the world -08177781 14 n 01 hegemon 0 001 @ 08177592 n 0000 | a leading or paramount power -08177863 14 n 01 church-state 0 001 @ 08363428 n 0000 | a state ruled by religious authority -08177958 14 n 02 city_state 0 city-state 0 002 @ 08168978 n 0000 ~i 08919949 n 0000 | a state consisting of a sovereign city -08178085 14 n 01 welfare_state 0 001 @ 08178547 n 0000 | a government that undertakes responsibility for the welfare of its citizens through programs in public health and public housing and pensions and unemployment compensation etc. -08178321 14 n 03 puppet_government 0 puppet_state 0 pupet_regime 0 001 @ 08050678 n 0000 | a government that is appointed by and whose affairs are directed by an outside authority that may impose hardships on those governed -08178547 14 n 01 state 1 003 @ 08050678 n 0000 ~ 08053407 n 0000 ~ 08178085 n 0000 | the group of people comprising the government of a sovereign state; "the state has lowered its income tax" -08178741 14 n 01 population 1 002 @ 00031264 n 0000 ~ 08178935 n 0000 | a group of organisms of the same species inhabiting a given area; "they hired hunters to keep down the deer population" -08178935 14 n 01 overpopulation 0 002 @ 08178741 n 0000 + 02651014 v 0101 | too much population -08179033 14 n 01 overspill 0 001 @ 00168658 n 0000 | the relocation of people from overcrowded cities; they are accommodated in new houses or apartments in smaller towns -08179205 14 n 02 poor_people 0 poor 0 006 @ 07942152 n 0000 ;u 06295235 n 0000 ! 08179455 n 0202 ! 08179455 n 0101 ~ 07948314 n 0000 ~ 08469678 n 0000 | people without possessions or wealth (considered as a group); "the urban poor need assistance" -08179455 14 n 02 rich_people 0 rich 0 004 @ 07942152 n 0000 ;u 06295235 n 0000 ! 08179205 n 0202 ! 08179205 n 0101 | people who have possessions and wealth (considered as a group); "only the very rich benefit from this legislation" -08179689 14 n 03 populace 0 public 0 world 2 003 @ 07942152 n 0000 ~ 08180484 n 0000 %m 08222293 n 0000 | people in general considered as a whole; "he is a hero in the eyes of the public" -08179879 14 n 01 population 0 003 @ 07942152 n 0000 + 02649830 v 0101 ~ 08180067 n 0000 | the people who inhabit a territory or state; "the population seemed to be well fed and clothed" -08180067 14 n 01 home_front 0 001 @ 08179879 n 0000 | the civilian population (and their activities) of a country at war -08180190 14 n 06 multitude 1 masses 0 mass 1 hoi_polloi 0 people 3 the_great_unwashed 0 006 @ 00031264 n 0000 + 02650840 v 0501 + 00451461 v 0501 ~ 08153102 n 0000 ~ 08222293 n 0000 ~ 08223263 n 0000 | the common people generally; "separate the warriors from the mass"; "power to the people" -08180484 14 n 01 admass 0 002 @ 08179689 n 0000 ;r 08860123 n 0000 | the segment of the public that is easily influenced by mass media (chiefly British) -08180639 14 n 04 labor 0 labour 0 working_class 0 proletariat 0 006 @ 07974025 n 0000 + 00259957 a 0401 ~ 08180944 n 0000 ~ 08181075 n 0000 ~ 08181267 n 0000 %m 10481711 n 0000 | a social class comprising those who do manual labor or work for wages; "there is a shortage of skilled labor in this field" -08180944 14 n 02 labor_force 0 labor_pool 0 001 @ 08180639 n 0000 | the source of trained people from which workers can be hired -08181075 14 n 01 lumpenproletariat 0 002 @ 08180639 n 0000 ;c 06215618 n 0000 | (Marxism) the unorganized lower levels of the proletariat who are not interested in revolutionary advancement -08181267 14 n 01 organized_labor 0 001 @ 08180639 n 0000 | employees who are represented by a labor union -08181375 14 n 01 Laurel_and_Hardy 0 003 @i 08247021 n 0000 %m 11028780 n 0000 %m 11119190 n 0000 | United States slapstick comedy duo who made many films together -08181540 14 n 02 lower_class 0 underclass 0 001 @ 07974025 n 0000 | the social class lowest in the social hierarchy -08181658 14 n 02 middle_class 0 bourgeoisie 0 003 @ 07974025 n 0000 ~ 08182105 n 0000 %m 09869830 n 0000 | the social class between the lower and upper classes -08181820 14 n 01 booboisie 0 001 @ 07974025 n 0000 | class consisting of all those who are considered boobs -08181930 14 n 03 commonalty 0 commonality 0 commons 0 003 @ 07974025 n 0000 + 01950198 a 0202 + 01593079 a 0201 | a class composed of persons lacking clerical or noble rank -08182105 14 n 03 petit_bourgeois 0 petite_bourgeoisie 0 petty_bourgeoisie 0 002 @ 08181658 n 0000 %m 10419916 n 0000 | lower middle class (shopkeepers and clerical staff etc.) -08182283 14 n 01 peasantry 0 002 @ 07974025 n 0000 %m 10410996 n 0000 | the class of peasants -08182379 14 n 01 crowd 0 011 @ 07975026 n 0000 + 02027612 v 0101 + 02649305 v 0101 + 02028722 v 0102 ~ 08183290 n 0000 ~ 08183398 n 0000 ~ 08184217 n 0000 ~ 08184439 n 0000 ~ 08184600 n 0000 ~ 08272564 n 0000 ~ 08274565 n 0000 | a large number of things or people considered together; "a crowd of insects assembled around the flowers" -08182716 14 n 03 multitude 0 throng 0 concourse 0 005 @ 07975026 n 0000 + 02064131 v 0201 ~ 08182892 n 0000 ~ 08182962 n 0000 ~ 08183046 n 0000 | a large gathering of people -08182892 14 n 01 hive 0 001 @ 08182716 n 0000 | a teeming multitude -08182962 14 n 03 horde 0 host 0 legion 0 001 @ 08182716 n 0000 | a vast multitude -08183046 14 n 02 ruck 0 herd 2 003 @ 08182716 n 0000 + 02028722 v 0201 + 02028616 v 0201 | a crowd especially of ordinary or undistinguished persons or things; "his brilliance raised him above the ruck"; "the children resembled a fairy herd" -08183290 14 n 01 army 1 001 @ 08182379 n 0000 | a large number of people united for some specific purpose -08183398 14 n 03 crush 0 jam 0 press 1 004 @ 08182379 n 0000 + 02024367 v 0301 + 01524298 v 0201 ~ 08183541 n 0000 | a dense crowd of people -08183541 14 n 02 traffic_jam 0 snarl-up 0 002 @ 08183398 n 0000 ~ 08183698 n 0000 | a number of vehicles blocking one another until they can scarcely move -08183698 14 n 01 gridlock 0 001 @ 08183541 n 0000 | a traffic jam so bad that no movement is possible -08183802 14 n 02 host 2 legion 3 003 @ 08191230 n 0000 ~ 08183920 n 0000 ~ 08184052 n 0000 | archaic terms for army -08183920 14 n 01 Roman_Legion 0 001 @ 08183802 n 0000 | a division of from 3000 to 6000 men (including cavalry) in the Roman army -08184052 14 n 01 Sabaoth 0 002 @ 08183802 n 0000 ;u 06295235 n 0000 | (plural) hosts or armies; used in the book of Romans in the New Testament; "Lord of Sabaoth" -08184217 14 n 03 drove 1 horde 1 swarm 1 003 @ 08182379 n 0000 + 02028366 v 0302 + 02714974 v 0303 | a moving crowd -08184335 14 n 01 drove 0 001 @ 07993929 n 0000 | a group of animals (a herd or flock) moving together -08184439 14 n 01 huddle 0 003 @ 08182379 n 0000 + 02027226 v 0101 %m 10190871 n 0000 | a disorganized and densely packed crowd; "a huddle of frightened women" -08184600 14 n 03 mob 0 rabble 0 rout 0 003 @ 08182379 n 0000 + 02064131 v 0102 ~ 08184730 n 0000 | a disorderly crowd of people -08184730 14 n 01 lynch_mob 0 001 @ 08184600 n 0000 | a mob that kills a person for some presumed offense without legal authority -08184861 14 n 01 company 0 004 @ 08252211 n 0000 ~ 08185063 n 0000 ~ 08251213 n 0000 ~ 08480512 n 0000 | a social gathering of guests or companions; "the house was filled with company when I arrived" -08185063 14 n 01 attendance 0 002 @ 08184861 n 0000 + 01846815 a 0101 | the number of people that are present; "attendance was up by 50 per cent" -08185211 14 n 03 limited_company 0 Ltd. 0 Ld. 0 002 @ 08058098 n 0000 ;r 08860123 n 0000 | a company that is organized to give its owners limited liability -08185369 14 n 01 holding_company 0 002 @ 08058098 n 0000 ~ 08185501 n 0000 | a company with controlling shares in other companies -08185501 14 n 01 bank_holding_company 0 002 @ 08185369 n 0000 ~ 08185643 n 0000 | a holding company owning or controlling one or more banks -08185643 14 n 01 multibank_holding_company 0 001 @ 08185501 n 0000 | a bank holding company owning several banks -08185758 14 n 04 utility 0 public_utility 0 public_utility_company 0 public-service_corporation 0 006 @ 08186047 n 0000 ~ 08186221 n 0000 ~ 08186393 n 0000 ~ 08186546 n 0000 ~ 08186655 n 0000 ~ 08186761 n 0000 | a company that performs a public service; subject to government regulation -08186047 14 n 01 service 5 003 @ 08058098 n 0000 + 02541251 v 0101 ~ 08185758 n 0000 | a company or agency that performs a public service; subject to government regulation -08186221 14 n 05 telephone_company 0 telephone_service 0 phone_company 0 phone_service 0 telco 0 001 @ 08185758 n 0000 | a public utility that provides telephone service -08186393 14 n 04 power_company 0 power_service 0 electric_company 0 light_company 0 001 @ 08185758 n 0000 | a public utility that provides electricity -08186546 14 n 02 water_company 0 waterworks 0 001 @ 08185758 n 0000 | a public utility that provides water -08186655 14 n 02 gas_company 0 gas_service 0 001 @ 08185758 n 0000 | a public utility that provides gas -08186761 14 n 02 bus_company 0 bus_service 0 002 @ 08185758 n 0000 @ 08004089 n 0000 | a public utility providing local transportation -08186898 14 n 01 livery_company 0 001 @ 08058098 n 0000 | one of the chartered companies of London originating with the craft guilds -08187033 14 n 02 company 2 troupe 0 009 @ 08008335 n 0000 ~ 08187370 n 0000 ~ 08187460 n 0000 ~ 08187707 n 0000 ~ 08187988 n 0000 ~ 08189211 n 0000 ~ 08189371 n 0000 ~ 08189581 n 0000 %m 08237863 n 0000 | organization of performers and associated personnel (especially theatrical); "the traveling company all stayed at the same hotel" -08187370 14 n 01 opera_company 0 001 @ 08187033 n 0000 | a company that produces operas -08187460 14 n 01 theater_company 0 002 @ 08187033 n 0000 ~ 08187569 n 0000 | a company that produces plays -08187569 14 n 02 stock_company 1 repertory_company 0 001 @ 08187460 n 0000 | a theatrical company that performs plays from a repertoire -08187707 14 n 01 ballet_company 0 003 @ 08187033 n 0000 %m 08189089 n 0000 %m 09834699 n 0000 | a company that produces ballets -08187837 14 n 01 chorus 0 004 @ 08246613 n 0000 + 02874282 a 0101 + 01730799 v 0102 ~ 08188638 n 0000 | a group of people assembled to sing together -08187988 14 n 02 chorus 2 Greek_chorus 0 005 @ 08187033 n 0000 ;c 00545501 n 0000 + 02874543 a 0101 + 01730799 v 0102 + 00986750 v 0101 | a company of actors who comment (by speaking or singing in unison) on the action in a classical Greek play -08188235 14 n 01 ensemble 2 006 @ 08246613 n 0000 ~ 08248521 n 0000 ~ 08249608 n 0000 ~ 08249752 n 0000 ~ 08250409 n 0000 ~ 08250635 n 0000 | a group of musicians playing or singing together; "a string ensemble" -08188449 14 n 02 chorus 1 chorus_line 0 005 @ 08430568 n 0000 + 02874282 a 0101 + 01730799 v 0102 ~ 08189089 n 0000 %m 09920901 n 0000 | a body of dancers or singers who perform together -08188638 14 n 01 choir 0 005 @ 08187837 n 0000 + 02874282 a 0101 + 09920771 n 0101 + 01730799 v 0101 %m 09920771 n 0000 | a chorus that sings as part of a religious ceremony -08188814 14 n 02 choir 1 consort 0 003 @ 07996689 n 0000 + 02874282 a 0101 + 01730799 v 0101 | a family of similar musical instrument playing together -08188967 14 n 02 husking_bee 0 cornhusking 0 001 @ 07975909 n 0000 | a social gathering for the purpose of husking corn -08189089 14 n 02 corps_de_ballet 0 ensemble 1 002 @ 08188449 n 0000 #m 08187707 n 0000 | the chorus of a ballet company -08189211 14 n 01 circus 0 001 @ 08187033 n 0000 | a travelling company of entertainers; including trained animals; "he ran away from home to join the circus" -08189371 14 n 01 minstrel_show 0 004 @ 08187033 n 0000 %m 10056719 n 0000 %m 10211036 n 0000 %m 10321474 n 0000 | a troupe of performers in blackface typically giving a comic program of negro songs and jokes -08189581 14 n 01 minstrelsy 0 001 @ 08187033 n 0000 | a troupe of minstrels -08189659 14 n 02 unit 0 social_unit 0 023 @ 08008335 n 0000 + 00368109 v 0101 ~ 08029784 n 0000 ~ 08077292 n 0000 ~ 08077711 n 0000 ~ 08078020 n 0000 ~ 08145701 n 0000 ~ 08146135 n 0000 ~ 08146593 n 0000 ~ 08170686 n 0000 ~ 08198398 n 0000 ~ 08208444 n 0000 ~ 08208560 n 0000 ~ 08214966 n 0000 ~ 08242799 n 0000 ~ 08272961 n 0000 ~ 08273167 n 0000 ~ 08274718 n 0000 ~ 08274826 n 0000 ~ 08359753 n 0000 ~ 08359949 n 0000 ~ 08408709 n 0000 ~ 08408900 n 0000 | an organization regarded as part of a larger social group; "the coach said the offensive unit did a good job"; "after the battle the soldier had trouble rejoining his unit" -08190292 14 n 01 command 0 005 @ 08198398 n 0000 ;c 08199025 n 0000 + 00751887 v 0101 ~ 08196622 n 0000 ~ 08196892 n 0000 | a military unit or region under the control of a single officer -08190482 14 n 01 enemy 0 002 @ 08198398 n 0000 %m 10055847 n 0000 | an opposing military force; "the enemy attacked at dawn" -08190609 14 n 01 task_force 0 002 @ 08198398 n 0000 ;c 08199025 n 0000 | a temporary military unit formed to accomplish a particular objective -08190754 14 n 01 army_unit 0 022 @ 08198398 n 0000 #m 08191230 n 0000 ;c 08199025 n 0000 ~ 08212527 n 0000 ~ 08213205 n 0000 ~ 08213671 n 0000 ~ 08213817 n 0000 ~ 08213978 n 0000 ~ 08214083 n 0000 ~ 08214272 n 0000 ~ 08214470 n 0000 ~ 08215248 n 0000 ~ 08215495 n 0000 ~ 08216795 n 0000 ~ 08218122 n 0000 ~ 08274354 n 0000 ~ 08274443 n 0000 ~ 08389297 n 0000 ~ 08389438 n 0000 ~ 08389710 n 0000 ~ 08390157 n 0000 %m 08397255 n 0000 | a military unit that is part of an army -08191230 14 n 03 army 0 regular_army 0 ground_forces 0 009 @ 08198137 n 0000 ;c 08199025 n 0000 ~ 08183802 n 0000 %m 08190754 n 0000 %m 08212527 n 0000 ~ 08394423 n 0000 ~ 08394535 n 0000 ~ 08394657 n 0000 ~ 08394811 n 0000 | a permanent organization of the military land forces of a nation or state -08191532 14 n 01 naval_unit 0 005 @ 08198398 n 0000 #m 08191701 n 0000 ;c 08199025 n 0000 ~ 08219226 n 0000 ~ 08220228 n 0000 | a military unit that is part of a navy -08191701 14 n 02 navy 0 naval_forces 0 008 @ 08198137 n 0000 ;c 08199025 n 0000 + 02767701 a 0101 -c 00988177 n 0000 -c 02904505 n 0000 %m 08191532 n 0000 %m 08292756 n 0000 -c 08656590 n 0000 | an organization of military vessels belonging to a country and available for sea warfare -08191987 14 n 04 United_States_Navy 0 US_Navy 0 USN 0 Navy 1 010 @ 08337324 n 0000 #p 08131530 n 0000 %p 03812541 n 0000 %p 08192970 n 0000 %p 08193212 n 0000 %p 08193448 n 0000 %p 08193645 n 0000 %p 08193854 n 0000 %p 08194074 n 0000 %p 08194266 n 0000 | the navy of the United States of America; the agency that maintains and trains and equips combat-ready naval forces -08192361 14 n 01 coastguard 0 004 @ 08198137 n 0000 ;c 08199025 n 0000 ~ 08192557 n 0000 %m 09932788 n 0000 | a military service responsible for the safety of maritime traffic in coastal waters -08192557 14 n 03 United_States_Coast_Guard 0 U._S._Coast_Guard 0 US_Coast_Guard 0 003 @ 08192361 n 0000 @ 08337324 n 0000 #p 08143653 n 0000 | an agency of the Department of Transportation responsible for patrolling shores and facilitating nautical commerce -08192817 14 n 01 Marines 1 003 @ 08198137 n 0000 ;c 08199025 n 0000 ~ 08192970 n 0000 | members of a body of troops trained to serve on land or at sea -08192970 14 n 05 United_States_Marine_Corps 0 United_States_Marines 0 Marine_Corps 0 US_Marine_Corps 0 USMC 0 004 @ 08192817 n 0000 #p 08191987 n 0000 %p 08194546 n 0000 %m 10294139 n 0000 | an amphibious division of the United States Navy -08193212 14 n 02 Naval_Air_Warfare_Center_Weapons_Division 0 NAWCWPNS 0 002 @ 08337324 n 0000 #p 08191987 n 0000 | the principal agency of the United States Navy for research and development for air warfare and missile weapon systems -08193448 14 n 02 Naval_Special_Warfare 0 NSW 0 003 @ 08337324 n 0000 #p 08191987 n 0000 %m 10348526 n 0000 | the agency that provides units to conduct unconventional and counter-guerilla warfare -08193645 14 n 02 Naval_Surface_Warfare_Center 0 NSWC 0 002 @ 08337324 n 0000 #p 08191987 n 0000 | the agency that provides scientific and engineering and technical support for all aspects of surface warfare -08193854 14 n 02 Naval_Underwater_Warfare_Center 0 NUWC 0 002 @ 08337324 n 0000 #p 08191987 n 0000 | the agency that provides scientific and engineering and technical support for submarine and undersea warfare systems -08194074 14 n 02 United_States_Naval_Academy 0 US_Naval_Academy 0 002 @ 08279665 n 0000 #p 08191987 n 0000 | a school for training men and women to become officers in the United States Navy -08194266 14 n 02 Office_of_Naval_Intelligence 0 ONI 0 003 @ 08337324 n 0000 #p 08191987 n 0000 #m 08340153 n 0000 | the military intelligence agency that provides for the intelligence and counterintelligence and investigative and security requirements of the United States Navy -08194546 14 n 02 Marine_Corps_Intelligence_Activity 0 MCIA 0 003 @ 08337324 n 0000 #p 08192970 n 0000 #m 08340153 n 0000 | an agency of the United States Marine Corps that provides responsive and broad intelligence support for the worldwide Marine Corps organization -08194815 14 n 01 Air_Corps 0 001 @ 08196024 n 0000 | formerly the airborne division of the United States Army -08194927 14 n 02 United_States_Air_Force_Academy 0 US_Air_Force_Academy 0 002 @ 08279800 n 0000 #p 08196230 n 0000 | a school for training men and women to become officers in the United States Air Force -08195132 14 n 02 Royal_Air_Force 0 RAF 0 001 @ 08196024 n 0000 | the airforce of Great Britain -08195229 14 n 02 Luftwaffe 0 German_Luftwaffe 0 001 @ 08196024 n 0000 | the German airforce -08195323 14 n 01 League_of_Nations 0 001 @ 08294696 n 0000 | an international organization formed in 1920 to promote cooperation and peace among nations; although suggested by Woodrow Wilson, the United States never joined and it remained powerless; it was dissolved in 1946 after the United Nations was formed -08195636 14 n 01 Peace_Corps 0 001 @ 08008335 n 0000 | a civilian organization sponsored by the United States government; helps people in developing countries -08195797 14 n 01 air_unit 0 008 @ 08198398 n 0000 #m 08196024 n 0000 ;c 08199025 n 0000 ~ 08219330 n 0000 ~ 08219493 n 0000 ~ 08219628 n 0000 ~ 08219768 n 0000 ~ 08220440 n 0000 | a military unit that is part of the airforce -08196024 14 n 02 air_force 0 airforce 0 006 @ 08198137 n 0000 ;c 08199025 n 0000 ~ 08194815 n 0000 ~ 08195132 n 0000 ~ 08195229 n 0000 %m 08195797 n 0000 | the airborne branch of a country's armed forces -08196230 14 n 05 United_States_Air_Force 0 U._S._Air_Force 0 US_Air_Force 0 Air_Force 1 USAF 0 008 @ 08337324 n 0000 #p 08131530 n 0000 %p 02688895 n 0000 %p 08194927 n 0000 %p 08196622 n 0000 %p 08196892 n 0000 %p 08197149 n 0000 %p 08197386 n 0000 | the airforce of the United States of America; the agency that defends the United States through control and exploitation of air and space -08196622 14 n 02 Air_Combat_Command 0 ACC 0 002 @ 08190292 n 0000 #p 08196230 n 0000 | a command that is the primary provider of air combat weapon systems to the United States Air Force; operates fighter, bomber, reconnaissance, battle-management, and rescue aircraft -08196892 14 n 02 Air_Force_Space_Command 0 AFSPC 0 002 @ 08190292 n 0000 #p 08196230 n 0000 | a command of the United States Air Force that is responsible for defending the United States through its space and intercontinental ballistic missile operations -08197149 14 n 02 Air_National_Guard 0 ANG 0 002 @ 08391387 n 0000 #p 08196230 n 0000 | a civilian reserve component of the United States Air Force that provides prompt mobilization during war and assistance during national emergencies -08197386 14 n 03 Air_Force_Intelligence_Surveillance_and_Reconnaissance 0 Air_Force_ISR 0 AFISR 0 003 @ 08337324 n 0000 #p 08196230 n 0000 #m 08340153 n 0000 | an agency focused on ensuring that the United States military attains information superiority; operates worldwide ground sites and an array of airborne reconnaissance and surveillance platforms -08197742 14 n 02 armor 0 armour 0 003 @ 08198398 n 0000 ;c 08199025 n 0000 + 01087197 v 0101 | a military unit consisting of armored fighting vehicles -08197895 14 n 02 guerrilla_force 0 guerilla_force 0 004 @ 08208016 n 0000 ~i 08030185 n 0000 ~i 08030379 n 0000 %m 10150556 n 0000 | an irregular armed force that fights by sabotage and harassment; often rural and organized in large groups -08198137 14 n 03 military_service 0 armed_service 0 service 0 008 @ 08208016 n 0000 ;c 08199025 n 0000 ~ 08191230 n 0000 ~ 08191701 n 0000 ~ 08192361 n 0000 ~ 08192817 n 0000 ~ 08196024 n 0000 %m 08198398 n 0000 | a force that is a branch of the armed forces -08198398 14 n 04 military_unit 0 military_force 0 military_group 0 force 1 025 @ 08189659 n 0000 #m 08198137 n 0000 ;c 08199025 n 0000 ~ 07986381 n 0000 ~ 08190292 n 0000 ~ 08190482 n 0000 ~ 08190609 n 0000 ~ 08190754 n 0000 ~ 08191532 n 0000 ~ 08195797 n 0000 ~ 08197742 n 0000 ~ 08206663 n 0000 ~ 08215603 n 0000 ~ 08271801 n 0000 ~ 08272352 n 0000 ~ 08272460 n 0000 ~ 08345189 n 0000 ~ 08345366 n 0000 ~ 08345613 n 0000 ~ 08390511 n 0000 ~ 08404373 n 0000 ~ 08404549 n 0000 ~ 08404895 n 0000 ~ 08415661 n 0000 %m 10582746 n 0000 | a unit that is part of some military service; "he sent Caesar a force of six thousand men" -08199025 14 n 05 military 0 armed_forces 0 armed_services 0 military_machine 0 war_machine 0 378 @ 08208016 n 0000 + 01518577 a 0101 + 01098869 v 0101 + 01098869 v 0102 -c 00034924 a 0000 -c 00142407 a 0000 -c 00142917 a 0000 -c 00143589 a 0000 -c 00144728 a 0000 -c 01094398 a 0000 -c 01517317 a 0000 -c 01660267 a 0000 -c 01660444 a 0000 -c 01660712 a 0000 -c 01660857 a 0000 -c 01970777 a 0000 -c 00055793 n 0000 -c 00056688 n 0000 -c 00056912 n 0000 -c 00057162 n 0000 -c 00057306 n 0000 -c 00057748 n 0000 -c 00123430 n 0000 -c 00233795 n 0000 -c 00291004 n 0000 -c 00303297 n 0000 -c 00304851 n 0000 -c 00331531 n 0000 -c 00461402 n 0000 -c 00515791 n 0000 -c 00521970 n 0000 -c 00579201 n 0000 -c 00730708 n 0000 -c 00818170 n 0000 -c 00821295 n 0000 -c 00829918 n 0000 -c 00875671 n 0000 -c 00894359 n 0000 -c 00895135 n 0000 -c 00895501 n 0000 -c 00895680 n 0000 -c 00896348 n 0000 -c 00896526 n 0000 -c 00896688 n 0000 -c 00952963 n 0000 -c 00953559 n 0000 -c 00954086 n 0000 -c 00954311 n 0000 -c 00954751 n 0000 -c 00955060 n 0000 -c 00955565 n 0000 -c 00955806 n 0000 -c 00955987 n 0000 -c 00959992 n 0000 -c 00964343 n 0000 -c 00968155 n 0000 -c 00968479 n 0000 -c 00970645 n 0000 -c 00971309 n 0000 -c 00971463 n 0000 -c 00972621 n 0000 -c 00973077 n 0000 -c 00974444 n 0000 -c 00975781 n 0000 -c 00976698 n 0000 -c 00980904 n 0000 -c 00981180 n 0000 -c 00983982 n 0000 -c 01012125 n 0000 -c 01028381 n 0000 -c 01075117 n 0000 -c 01076863 n 0000 -c 01077190 n 0000 -c 01133106 n 0000 -c 01157850 n 0000 -c 01196316 n 0000 -c 01216515 n 0000 -c 01217306 n 0000 -c 02685585 n 0000 -c 02738031 n 0000 -c 02739889 n 0000 -c 02740300 n 0000 -c 02743207 n 0000 -c 02749479 n 0000 -c 02755529 n 0000 -c 02766044 n 0000 -c 02794779 n 0000 -c 02798290 n 0000 -c 02811719 n 0000 -c 02839200 n 0000 -c 02867715 n 0000 -c 02873623 n 0000 -c 02937336 n 0000 -c 02944826 n 0000 -c 03076104 n 0000 -c 03076411 n 0000 -c 03238407 n 0000 -c 03239259 n 0000 -c 03284120 n 0000 -c 03324928 n 0000 -c 03333349 n 0000 -c 03335030 n 0000 -c 03344784 n 0000 -c 03344935 n 0000 -c 03402188 n 0000 -c 03420559 n 0000 -c 03421768 n 0000 -c 03464757 n 0000 -c 03470222 n 0000 -c 03478589 n 0000 -c 03493664 n 0000 -c 03504420 n 0000 -c 03541393 n 0000 -c 03550153 n 0000 -c 03550420 n 0000 -c 03646809 n 0000 -c 03730153 n 0000 -c 03751065 n 0000 -c 03762982 n 0000 -c 03763133 n 0000 -c 03763403 n 0000 -c 03763727 n 0000 -c 03763968 n 0000 -c 03764276 n 0000 -c 03772417 n 0000 -c 03812119 n 0000 -c 03813704 n 0000 -c 03846234 n 0000 -c 03860741 n 0000 -c 03919096 n 0000 -c 03930087 n 0000 -c 03962525 n 0000 -c 04031884 n 0000 -c 04062644 n 0000 -c 04062807 n 0000 -c 04066476 n 0000 -c 04071393 n 0000 -c 04099649 n 0000 -c 04220344 n 0000 -c 04247011 n 0000 -c 04250224 n 0000 -c 04389033 n 0000 -c 04474187 n 0000 -c 04487724 n 0000 -c 04550676 n 0000 -c 04552348 n 0000 -c 04552696 n 0000 -c 04565963 n 0000 -c 04566561 n 0000 -c 05035264 n 0000 -c 05082790 n 0000 -c 05203649 n 0000 -c 05204004 n 0000 -c 05617467 n 0000 -c 06248043 n 0000 -c 06248968 n 0000 -c 06249177 n 0000 -c 06478988 n 0000 -c 06496624 n 0000 -c 06633041 n 0000 -c 06642899 n 0000 -c 06690226 n 0000 -c 06804483 n 0000 -c 06804728 n 0000 -c 06804847 n 0000 -c 06804988 n 0000 -c 06805128 n 0000 -c 06805497 n 0000 -c 06884670 n 0000 -c 07168623 n 0000 -c 07169353 n 0000 -c 07217782 n 0000 -c 07225696 n 0000 -c 07225857 n 0000 -c 07226151 n 0000 -c 07226330 n 0000 -c 07269552 n 0000 -c 07269758 n 0000 -c 07339653 n 0000 -c 07339808 n 0000 -c 07339941 n 0000 -c 07340094 n 0000 -c 07340249 n 0000 -c 07340725 n 0000 -c 07361863 n 0000 -c 07453063 n 0000 -c 07986381 n 0000 -c 08128159 n 0000 -c 08190292 n 0000 -c 08190609 n 0000 -c 08190754 n 0000 -c 08191230 n 0000 -c 08191532 n 0000 -c 08191701 n 0000 -c 08192361 n 0000 -c 08192817 n 0000 -c 08195797 n 0000 -c 08196024 n 0000 -c 08197742 n 0000 -c 08198137 n 0000 -c 08198398 n 0000 ~ 08206460 n 0000 -c 08206460 n 0000 -c 08207095 n 0000 -c 08211290 n 0000 -c 08211475 n 0000 -c 08214272 n 0000 -c 08214470 n 0000 -c 08216647 n 0000 -c 08219493 n 0000 %m 08242100 n 0000 -c 08272352 n 0000 -c 08272460 n 0000 -c 08279524 n 0000 -c 08279665 n 0000 -c 08279800 n 0000 -c 08331357 n 0000 -c 08331525 n 0000 -c 08334087 n 0000 -c 08334693 n 0000 -c 08340989 n 0000 -c 08389297 n 0000 -c 08389438 n 0000 -c 08389572 n 0000 -c 08389710 n 0000 -c 08389900 n 0000 -c 08390012 n 0000 -c 08390157 n 0000 -c 08390374 n 0000 -c 08390511 n 0000 -c 08390731 n 0000 -c 08391021 n 0000 -c 08391206 n 0000 -c 08391387 n 0000 -c 08394423 n 0000 -c 08394922 n 0000 -c 08395298 n 0000 -c 08395465 n 0000 -c 08395682 n 0000 -c 08396990 n 0000 -c 08397255 n 0000 -c 08397489 n 0000 -c 08397675 n 0000 -c 08397856 n 0000 -c 08398036 n 0000 -c 08398179 n 0000 -c 08404373 n 0000 -c 08404549 n 0000 -c 08404735 n 0000 -c 08404895 n 0000 -c 08405124 n 0000 -c 08405267 n 0000 -c 08415661 n 0000 -c 08424769 n 0000 -c 08426816 n 0000 -c 08426993 n 0000 -c 08427163 n 0000 -c 08427282 n 0000 -c 08427453 n 0000 -c 08429052 n 0000 -c 08432820 n 0000 -c 08433727 n 0000 -c 08454818 n 0000 -c 08455271 n 0000 -c 08479615 n 0000 -c 08481832 n 0000 -c 08482113 n 0000 -c 08482271 n 0000 -c 08482700 n 0000 -c 08507255 n 0000 -c 08551628 n 0000 -c 08594286 n 0000 -c 08594714 n 0000 -c 08594886 n 0000 -c 08595054 n 0000 -c 08622586 n 0000 -c 08632258 n 0000 -c 08648658 n 0000 -c 08688590 n 0000 -c 08688779 n 0000 -c 08690194 n 0000 -c 09123809 n 0000 -c 09616722 n 0000 -c 09770179 n 0000 -c 09780395 n 0000 -c 09809279 n 0000 -c 09809538 n 0000 -c 09809749 n 0000 -c 09837459 n 0000 -c 09873242 n 0000 -c 09886540 n 0000 -c 09892831 n 0000 -c 09893191 n 0000 -c 09899782 n 0000 -c 09917214 n 0000 -c 09917345 n 0000 -c 09937250 n 0000 -c 09938272 n 0000 -c 09939827 n 0000 -c 09941571 n 0000 -c 09941964 n 0000 -c 09942275 n 0000 -c 09942970 n 0000 -c 09943239 n 0000 -c 09943541 n 0000 -c 09945021 n 0000 -c 10000294 n 0000 -c 10006842 n 0000 -c 10008123 n 0000 -c 10028765 n 0000 -c 10034020 n 0000 -c 10055847 n 0000 -c 10069869 n 0000 -c 10086821 n 0000 -c 10087080 n 0000 -c 10087434 n 0000 -c 10094584 n 0000 -c 10095061 n 0000 -c 10123844 n 0000 -c 10125786 n 0000 -c 10208950 n 0000 -c 10225787 n 0000 -c 10225931 n 0000 -c 10226060 n 0000 -c 10259348 n 0000 -c 10259527 n 0000 -c 10259780 n 0000 -c 10259997 n 0000 -c 10260166 n 0000 -c 10260473 n 0000 -c 10283170 n 0000 -c 10283663 n 0000 -c 10294139 n 0000 -c 10294421 n 0000 -c 10296176 n 0000 %m 10305635 n 0000 -c 10314703 n 0000 -c 10316164 n 0000 -c 10316527 n 0000 -c 10316862 n 0000 -c 10317007 n 0000 -c 10317500 n 0000 -c 10347298 n 0000 -c 10347446 n 0000 -c 10347593 n 0000 -c 10348526 n 0000 -c 10360747 n 0000 -c 10369955 n 0000 -c 10410246 n 0000 -c 10486561 n 0000 -c 10523341 n 0000 -c 10551576 n 0000 -c 10551751 n 0000 -c 10574154 n 0000 -c 10582746 n 0000 -c 10608385 n 0000 -c 10641301 n 0000 -c 10641755 n 0000 -c 10644839 n 0000 -c 10663858 n 0000 -c 10667709 n 0000 -c 10702307 n 0000 -c 10759331 n 0000 -c 10768391 n 0000 -c 10772580 n 0000 -c 13266515 n 0000 -c 13367593 n 0000 -c 14031108 n 0000 -c 14431471 n 0000 -c 14431637 n 0000 -c 14496977 n 0000 -c 15139552 n 0000 -c 15139691 n 0000 -c 15173353 n 0000 -c 01176079 v 0000 -c 02030764 v 0000 -c 02031622 v 0000 -c 02653159 v 0000 | the military forces of a nation; "their military is the largest in the region"; "the military machine is the same one we faced in 1991 but now it is weaker" -08206460 14 n 02 military_reserve 0 reserve 0 004 @ 08199025 n 0000 ;c 08199025 n 0000 + 10523341 n 0201 %m 10523341 n 0000 | armed forces that are not on active duty but can be called in an emergency -08206663 14 n 07 mujahidin 0 mujahedin 0 mujahedeen 0 mujahadeen 0 mujahadin 0 mujahideen 0 mujahadein 0 004 @ 08198398 n 0000 ;c 00759694 n 0000 ~ 08207001 n 0000 %m 10337789 n 0000 | a military force of Muslim guerilla warriors engaged in a jihad; "some call the mujahidin international warriors but others just call them terrorists" -08207001 14 n 01 Mujahedeen_Khalq 0 001 @ 08206663 n 0000 | Iranian guerillas based in Iraq -08207095 14 n 01 Pentagon 0 002 @ 08456727 n 0000 ;c 08199025 n 0000 | the United States military establishment -08207209 14 n 05 paramilitary 0 paramilitary_force 0 paramilitary_unit 0 paramilitary_organization 0 paramilitary_organisation 0 004 @ 08208016 n 0000 + 02764378 a 0101 ~ 08207540 n 0000 ~ 08207672 n 0000 | a group of civilians organized in a military fashion (especially to operate in place of or to assist regular army troops) -08207540 14 n 01 fedayeen 0 002 @ 08207209 n 0000 ;u 06295235 n 0000 | (plural) Arab guerrillas who operate mainly against Israel -08207672 14 n 02 Fedayeen_Saddam 0 Saddam's_Martyrs 0 001 @ 08207209 n 0000 | a feared paramilitary unit formed in 1995 by young soldiers to serve Saddam Hussein against domestic opponents -08207863 14 n 01 force 2 001 @ 07950920 n 0000 | a group of people having the power of effective action; "he joined forces with a band of adventurers" -08208016 14 n 02 force 0 personnel 0 015 @ 08008335 n 0000 ~ 08197895 n 0000 ~ 08198137 n 0000 ~ 08199025 n 0000 ~ 08207209 n 0000 ~ 08209687 n 0000 ~ 08210982 n 0000 ~ 08211290 n 0000 ~ 08212347 n 0000 ~ 08329113 n 0000 ~ 08397255 n 0000 ~ 08398179 n 0000 ~ 08439955 n 0000 ~ 08440382 n 0000 ~ 08440499 n 0000 | group of people willing to obey orders; "a public force is necessary to give security to the rights of citizens" -08208444 14 n 01 task_force 1 001 @ 08189659 n 0000 | a semipermanent unit created to carry out a continuing task -08208560 14 n 02 team 0 squad 0 024 @ 08189659 n 0000 + 01089285 v 0101 ~ 08077035 n 0000 ~ 08077177 n 0000 ~ 08078644 n 0000 ~ 08078819 n 0000 ~ 08078976 n 0000 ~ 08079319 n 0000 ~ 08079852 n 0000 ~ 08080025 n 0000 ~ 08080386 n 0000 ~ 08080510 n 0000 ~ 08080652 n 0000 ~ 08080762 n 0000 ~ 08080947 n 0000 ~ 08081142 n 0000 ~ 08081244 n 0000 ~ 08081403 n 0000 ~ 08209076 n 0000 %p 08209519 n 0000 ~ 08214832 n 0000 ~ 08232160 n 0000 ~ 08273736 n 0000 %m 10662162 n 0000 | a cooperative unit (especially in sports) -08209076 14 n 01 hit_squad 0 003 @ 08208560 n 0000 ~ 08209187 n 0000 ~ 08209386 n 0000 | a team of assassins -08209187 14 n 01 death_squad 0 001 @ 08209076 n 0000 | a clandestine military or paramilitary team who murder political dissidents or petty criminals (usually with the government's tacit approval) -08209386 14 n 01 Sparrow_Unit 0 002 @ 08209076 n 0000 #p 08036293 n 0000 | a hit squad of the New People's Army in the Philippines -08209519 14 n 01 bench 2 004 @ 08001083 n 0000 #p 08208560 n 0000 + 02482889 v 0101 %m 10671042 n 0000 | the reserve players on a team; "our team has a strong bench" -08209687 14 n 04 police 0 police_force 0 constabulary 0 law 1 012 @ 08208016 n 0000 @ 08348815 n 0000 + 02454939 v 0102 ~ 08210042 n 0000 ~ 08210254 n 0000 ~ 08210411 n 0000 ~ 08210670 n 0000 ~ 08210835 n 0000 ~ 08211584 n 0000 ~ 08211924 n 0000 ~ 08405490 n 0000 %m 10448983 n 0000 | the force of policemen and officers; "the law came looking for him" -08210042 14 n 02 Europol 0 European_Law_Enforcement_Organisation 0 001 @ 08209687 n 0000 | police organization for the European Union; aims to improve effectiveness and cooperation among European police forces -08210254 14 n 02 gendarmerie 0 gendarmery 0 002 @ 08209687 n 0000 %m 10123122 n 0000 | French police force; a group of gendarmes or gendarmes collectively -08210411 14 n 02 Mutawa'een 0 Mutawa 0 002 @ 08209687 n 0000 ;r 08993288 n 0000 | religious police in Saudi Arabia whose duty is to ensure strict adherence to established codes of conduct; offenders may be detained indefinitely; foreigners are not excluded -08210670 14 n 03 Royal_Canadian_Mounted_Police 0 RCMP 0 Mounties 0 003 @ 08209687 n 0000 @ 08344551 n 0000 %m 10540114 n 0000 | the federal police force of Canada -08210835 14 n 02 Scotland_Yard 0 New_Scotland_Yard 0 001 @ 08209687 n 0000 | the detective department of the metropolitan police force of London -08210982 14 n 02 security_force 0 private_security_force 0 002 @ 08208016 n 0000 %m 10770059 n 0000 | a privately employed group hired to protect the security of a business or industry -08211169 14 n 01 vice_squad 0 001 @ 08080947 n 0000 | a police group to enforce laws against gambling and prostitution -08211290 14 n 02 military_police 0 MP 0 004 @ 08208016 n 0000 ;c 08199025 n 0000 ~ 08211475 n 0000 %m 10317500 n 0000 | a military corps that enforces discipline and guards prisoners -08211475 14 n 01 shore_patrol 0 002 @ 08211290 n 0000 ;c 08199025 n 0000 | the military police of the navy -08211584 14 n 01 secret_police 0 002 @ 08209687 n 0000 ~ 08211760 n 0000 | a police force that operates in secrecy (usually against persons suspected of treason or sedition) -08211760 14 n 01 Gestapo 0 003 @ 08211584 n 0000 #p 08211924 n 0000 ;c 00759694 n 0000 | the secret state police in Nazi Germany; known for its terrorist methods -08211924 14 n 02 Schutzstaffel 0 SS 0 002 @ 08209687 n 0000 %p 08211760 n 0000 | special police force in Nazi Germany founded as a personal bodyguard for Adolf Hitler in 1925; the SS administered the concentration camps -08212146 14 n 03 SA 0 Sturmabteilung 0 Storm_Troops 0 002 @ 08390511 n 0000 %m 09877443 n 0000 | Nazi militia created by Hitler in 1921 that helped him to power but was eclipsed by the SS after 1943 -08212347 14 n 05 work_force 0 workforce 0 manpower 0 hands 0 men 0 004 @ 08208016 n 0000 ~ 08218212 n 0000 %p 08218393 n 0000 %m 08242799 n 0000 | the force of workers available -08212527 14 n 02 corps 0 army_corps 0 005 @ 08190754 n 0000 #m 08191230 n 0000 ~ 08212740 n 0000 ~ 08212920 n 0000 %m 08213205 n 0000 | an army unit usually consisting of two or more divisions and their support -08212740 14 n 02 Women's_Army_Corps 0 WAC 0 001 @ 08212527 n 0000 | an army corps that was organized in World War II but is no longer a separate branch of the United States Army -08212920 14 n 02 Reserve_Officers_Training_Corps 0 ROTC 0 001 @ 08212527 n 0000 | a training program to prepare college students to be commissioned officers -08213079 14 n 01 corps 1 002 @ 07965085 n 0000 ~ 08357647 n 0000 | a body of people associated together; "diplomatic corps" -08213205 14 n 01 division 0 005 @ 08190754 n 0000 #m 08212527 n 0000 + 03061626 a 0101 ~ 08213424 n 0000 %m 08213671 n 0000 | an army unit large enough to sustain combat; "two infantry divisions were held in reserve" -08213424 14 n 03 Special_Forces 0 U._S._Army_Special_Forces 0 United_States_Army_Special_Forces 0 003 @ 08213205 n 0000 #p 08394922 n 0000 %m 10146416 n 0000 | a division of the United States Army that is specially trained for guerilla fighting -08213671 14 n 01 battle_group 0 003 @ 08190754 n 0000 #m 08213205 n 0000 %m 08214272 n 0000 | an army unit usually consisting of five companies -08213817 14 n 01 regiment 0 005 @ 08190754 n 0000 + 03109663 a 0101 + 02392961 v 0101 + 02448886 v 0101 %m 08214083 n 0000 | army unit smaller than a division -08213978 14 n 01 brigade 0 002 @ 08190754 n 0000 + 01090216 v 0101 | army unit smaller than a division -08214083 14 n 01 battalion 0 004 @ 08190754 n 0000 #m 08213817 n 0000 %m 08214272 n 0000 ~ 08395298 n 0000 | an army unit usually consisting of a headquarters and three or more companies -08214272 14 n 01 company 3 006 @ 08190754 n 0000 #m 08214083 n 0000 #m 08213671 n 0000 ;c 08199025 n 0000 %m 08214470 n 0000 ~ 08285719 n 0000 | small military unit; usually two or three platoons -08214470 14 n 01 platoon 0 003 @ 08190754 n 0000 #m 08214272 n 0000 ;c 08199025 n 0000 | a military unit that is a subdivision of a company; usually has a headquarters and two or more squads; usually commanded by a lieutenant -08214698 14 n 01 platoon 1 002 @ 08080947 n 0000 %p 08214832 n 0000 | a team of policemen working under the military platoon system -08214832 14 n 01 section 2 002 @ 08208560 n 0000 #p 08214698 n 0000 | a small team of policemen working as part of a police platoon -08214966 14 n 01 den 0 001 @ 08189659 n 0000 | a unit of 8 to 10 cub scouts -08215044 14 n 01 platoon 2 001 @ 07950920 n 0000 | a group of persons who are engaged in a common activity; "platoons of tourists poured out of the busses"; "the defensive platoon of the football team" -08215248 14 n 01 detachment 0 009 @ 08190754 n 0000 + 02031622 v 0101 ~ 08215801 n 0000 ~ 08216176 n 0000 ~ 08216295 n 0000 ~ 08216408 n 0000 ~ 08216535 n 0000 ~ 08216647 n 0000 %m 10095061 n 0000 | a small unit of troops of special composition -08215495 14 n 02 vanguard 0 van 0 001 @ 08190754 n 0000 | the leading units moving at the head of an army -08215603 14 n 01 guard 0 006 @ 08198398 n 0000 + 01129337 v 0101 ~ 08215801 n 0000 ~ 08391021 n 0000 ~ 08391206 n 0000 %m 09863031 n 0000 | a military unit serving to protect some place or person -08215801 14 n 01 bodyguard 0 005 @ 08215248 n 0000 @ 08215603 n 0000 #p 08429167 n 0000 + 02026868 v 0101 ~ 08429346 n 0000 | a group of men who escort and protect some important person -08215989 14 n 01 yeomanry 2 002 @ 08391021 n 0000 #p 08391953 n 0000 | a British volunteer cavalry force organized in 1761 for home defense later incorporated into the Territorial Army -08216176 14 n 01 patrol 0 002 @ 08215248 n 0000 + 02454939 v 0101 | a detachment used for security or reconnaissance -08216295 14 n 01 picket 0 001 @ 08215248 n 0000 | a detachment of troops guarding an army from surprise attack -08216408 14 n 01 press_gang 0 001 @ 08215248 n 0000 | a detachment empowered to force civilians to serve in the army or navy -08216535 14 n 01 provost_guard 0 001 @ 08215248 n 0000 | a detachment under the command of a provost marshall -08216647 14 n 01 rearguard 0 002 @ 08215248 n 0000 ;c 08199025 n 0000 | a detachment assigned to protect the rear of a (retreating) military body -08216795 14 n 01 section 0 001 @ 08190754 n 0000 | a small army unit usually having a special function -08216900 14 n 01 section 1 007 @ 08246613 n 0000 #p 08248157 n 0000 #p 08249038 n 0000 ~ 08217135 n 0000 ~ 08217302 n 0000 ~ 08217557 n 0000 ~ 08217865 n 0000 | a division of an orchestra containing all instruments of the same class -08217135 14 n 02 brass_section 0 brass 1 003 @ 08216900 n 0000 + 02670411 a 0201 ~ 08217738 n 0000 | the section of a band or orchestra that plays brass instruments -08217302 14 n 02 string_section 0 strings 0 002 @ 08216900 n 0000 ~ 08217450 n 0000 | the section of an orchestra that plays stringed instruments -08217450 14 n 01 violin_section 0 001 @ 08217302 n 0000 | the section of an orchestra that plays violins -08217557 14 n 03 percussion_section 0 percussion 0 rhythm_section 0 002 @ 08216900 n 0000 + 10415037 n 0201 | the section of a band or orchestra that plays percussion instruments -08217738 14 n 01 trumpet_section 0 001 @ 08217135 n 0000 | the section of a band or orchestra that plays trumpets or cornets -08217865 14 n 01 reed_section 0 002 @ 08216900 n 0000 ~ 08218004 n 0000 | the section of a band or orchestra that plays reed instruments -08218004 14 n 01 clarinet_section 0 001 @ 08217865 n 0000 | the section of a band or orchestra that plays clarinets -08218122 14 n 01 squad 1 002 @ 08190754 n 0000 ~ 08424769 n 0000 | a smallest army unit -08218212 14 n 02 complement 0 full_complement 0 003 @ 08212347 n 0000 + 00049016 a 0101 ~ 08219059 n 0000 | number needed to make up a whole force; "a full complement of workers" -08218393 14 n 01 shift 0 006 @ 08242799 n 0000 #p 08212347 n 0000 ~ 08218592 n 0000 ~ 08218713 n 0000 ~ 08218832 n 0000 ~ 08218965 n 0000 | a crew of workers who work for a specific period of time -08218592 14 n 02 day_shift 0 day_watch 0 001 @ 08218393 n 0000 | workers who work during the day (as 8 a.m. to 4 p.m.) -08218713 14 n 01 evening_shift 0 001 @ 08218393 n 0000 | workers who work during the evening (as 4 p.m. to midnight) -08218832 14 n 02 night_shift 0 graveyard_shift 0 001 @ 08218393 n 0000 | workers who work during the night (as midnight to 8 a.m.) -08218965 14 n 01 relay 0 001 @ 08218393 n 0000 | a crew of workers who relieve another crew -08219059 14 n 02 ship's_company 0 company 4 002 @ 08218212 n 0000 %m 08273167 n 0000 | crew of a ship including the officers; the whole force or personnel of a ship -08219226 14 n 02 division 1 naval_division 0 001 @ 08191532 n 0000 | a group of ships of similar type -08219330 14 n 02 division 2 air_division 0 002 @ 08195797 n 0000 %p 08219493 n 0000 | a unit of the United States Air Force usually comprising two or more wings -08219493 14 n 01 wing 0 004 @ 08195797 n 0000 #p 08219330 n 0000 ;c 08199025 n 0000 %m 08219768 n 0000 | a unit of military aircraft -08219628 14 n 01 air_group 0 001 @ 08195797 n 0000 | a unit of the United States Air Force larger than a squadron and smaller than a wing -08219768 14 n 01 squadron 0 003 @ 08195797 n 0000 #m 08219493 n 0000 ~ 08219923 n 0000 | an air force unit larger than a flight and smaller than a group -08219923 14 n 01 escadrille 0 002 @ 08219768 n 0000 ;r 08929922 n 0000 | an air force squadron typically containing six airplanes (as in France during World War I) -08220089 14 n 01 squadron 1 001 @ 08389710 n 0000 | a cavalry unit consisting of two or more troops and headquarters and supporting arms -08220228 14 n 01 squadron 2 002 @ 08191532 n 0000 ~ 08220367 n 0000 | a naval unit that is detached from the fleet for a particular task -08220367 14 n 01 escadrille 2 001 @ 08220228 n 0000 | a small squadron -08220440 14 n 01 flight 0 001 @ 08195797 n 0000 | an air force unit smaller than a squadron -08220534 14 n 01 flight 1 001 @ 08426461 n 0000 | a formation of aircraft in flight -08220620 14 n 01 flight 2 002 @ 07990956 n 0000 + 01940868 v 0101 | a flock of flying birds -08220714 14 n 01 division 3 005 @ 08077292 n 0000 #m 08050678 n 0000 #m 08061042 n 0000 ~ 08114861 n 0000 ~ 08401248 n 0000 | an administrative unit in government or business -08220891 14 n 01 division 4 020 @ 08102555 n 0000 ;c 06066555 n 0000 ~ 01387208 n 0000 ~ 11531457 n 0000 ~ 11534434 n 0000 ~ 11536778 n 0000 ~ 11544769 n 0000 ~ 11551211 n 0000 ~ 11551659 n 0000 ~ 11551898 n 0000 ~ 11664677 n 0000 ~ 12972414 n 0000 ~ 12975207 n 0000 ~ 12976985 n 0000 ~ 12986447 n 0000 ~ 12994979 n 0000 ~ 12995724 n 0000 ~ 12996225 n 0000 ~ 13023292 n 0000 ~ 13221243 n 0000 | (botany) taxonomic unit of plants corresponding to a phylum -08221348 14 n 01 division 5 016 @ 07941170 n 0000 ;c 06037666 n 0000 ~ 01347431 n 0000 ~ 01354869 n 0000 ~ 01357707 n 0000 ~ 01357967 n 0000 ~ 01399529 n 0000 ~ 01399772 n 0000 ~ 01402381 n 0000 ~ 01406092 n 0000 ~ 01407065 n 0000 ~ 01413551 n 0000 ~ 01720496 n 0000 ~ 01721010 n 0000 ~ 02511824 n 0000 ~ 08221747 n 0000 | (biology) a group of organisms forming a subdivision of a larger category -08221747 14 n 01 form_division 0 001 @ 08221348 n 0000 | an artificial taxonomic category for organisms of which the true relationships are obscure -08221897 14 n 01 audience 0 007 @ 07975026 n 0000 ~ 08222203 n 0000 ~ 08222871 n 0000 ~ 08222966 n 0000 %m 10165448 n 0000 %m 10336411 n 0000 %m 10440717 n 0000 | a gathering of spectators or listeners at a (usually public) performance; "the audience applauded"; "someone in the audience began to cough" -08222203 14 n 01 gallery 0 001 @ 08221897 n 0000 | spectators at a golf or tennis match -08222293 14 n 01 audience 1 004 @ 08180190 n 0000 #m 08179689 n 0000 ~ 08222571 n 0000 ~ 08222750 n 0000 | the part of the general public interested in a source of information or entertainment; "every artist needs an audience"; "the broadcast reached an audience of millions" -08222571 14 n 01 readership 0 003 @ 08222293 n 0000 + 10508862 n 0101 + 10508710 n 0101 | the audience reached by written communications (books or magazines or newspapers etc.) -08222750 14 n 03 viewing_audience 0 TV_audience 0 viewers 0 001 @ 08222293 n 0000 | the audience reached by television -08222871 14 n 01 grandstand 0 001 @ 08221897 n 0000 | the audience at a stadium or racetrack -08222966 14 n 01 house 3 002 @ 08221897 n 0000 %p 08223137 n 0000 | the audience gathered together in a theatre or cinema; "the house applauded"; "he counted the house" -08223137 14 n 01 claque 0 002 @ 08223263 n 0000 #p 08222966 n 0000 | a group of followers hired to applaud at a performance -08223263 14 n 02 following 0 followers 0 007 @ 08180190 n 0000 + 02600255 v 0101 + 02346895 v 0102 ~ 08223137 n 0000 ~ 08223475 n 0000 ~ 08223581 n 0000 %m 10077593 n 0000 | a group of followers or enthusiasts -08223475 14 n 01 faithful 1 002 @ 08223263 n 0000 + 00958880 a 0101 | any loyal and steadfast following -08223581 14 n 01 fandom 0 002 @ 08223263 n 0000 + 10639925 n 0102 | the fans of a sport or famous person -08223688 14 n 01 parish 0 003 @ 08223802 n 0000 + 02871695 a 0101 %m 10400108 n 0000 | a local church community -08223802 14 n 01 community 0 018 @ 07975026 n 0000 ~ 08223688 n 0000 ~ 08224413 n 0000 ~ 08224580 n 0000 ~ 08224684 n 0000 ~ 08224985 n 0000 ~ 08225090 n 0000 ~ 08226699 n 0000 ~ 08226978 n 0000 ~ 08250889 n 0000 ~i 08488081 n 0000 ~i 08488250 n 0000 ~ 08488411 n 0000 ~ 08488675 n 0000 ~i 08488833 n 0000 ~i 08489121 n 0000 ~i 08489285 n 0000 ~i 08489392 n 0000 | a group of people living in a particular local area; "the team is drawn from all parts of the community" -08224274 14 n 01 community 4 001 @ 08294696 n 0000 | a group of nations having common interests; "they hoped to join the NATO community" -08224413 14 n 01 convent 0 003 @ 08223802 n 0000 #p 08149781 n 0000 + 02578894 a 0103 | a community of people in a religious order (especially nuns) living together -08224580 14 n 01 house 4 001 @ 08223802 n 0000 | the members of a religious community living together -08224684 14 n 05 Ummah 0 Umma 0 Muslim_Ummah 0 Islamic_Ummah 0 Islam_Nation 0 003 @ 08223802 n 0000 ;c 06234825 n 0000 ;u 06295235 n 0000 | the Muslim community or people, considered to extend from Mauritania to Pakistan; "moderate Muslims urge the Ummah to reject the terrorism of radical Muslims" -08224985 14 n 01 speech_community 0 001 @ 08223802 n 0000 | people sharing a given language or dialect -08225090 14 n 02 neighborhood 0 neighbourhood 0 005 @ 08223802 n 0000 + 10352299 n 0202 + 10352299 n 0101 ~ 08225334 n 0000 ~ 08225426 n 0000 | people living near one another; "it is a friendly neighborhood"; "my neighborhood voted for Bush" -08225334 14 n 01 hood 0 002 @ 08225090 n 0000 ;u 07157273 n 0000 | (slang) a neighborhood -08225426 14 n 01 street 0 001 @ 08225090 n 0000 | people living or working on the same street; "the whole street protested the absence of street lights" -08225581 14 n 01 municipality 0 003 @ 07975026 n 0000 ~ 08226335 n 0000 ~ 08226514 n 0000 | people living in a town or city having local self-government -08225736 14 n 01 municipal_government 0 002 @ 08052874 n 0000 ~ 08225853 n 0000 | the government of a municipality -08225853 14 n 01 commission_plan 0 001 @ 08225736 n 0000 | a municipal government that combines legislative and executive authority in the members of a commission -08226018 14 n 01 state_government 0 001 @ 08050678 n 0000 | the government of a state in the United States -08226127 14 n 02 totalitarian_state 0 totalitation_regime 0 001 @ 08050678 n 0000 | a government that subordinates the individual to the state and strictly controls all aspects of life by coercive measures -08226335 14 n 02 city 0 metropolis 0 002 @ 08225581 n 0000 + 00499642 v 0101 | people living in a large densely populated municipality; "the city voted for Republicans in 1994" -08226514 14 n 03 town 0 townspeople 0 townsfolk 0 002 @ 08225581 n 0000 ~ 08540016 n 0000 | the people living in a municipality smaller than a city; "the whole town cheered the team" -08226699 14 n 03 village 0 small_town 0 settlement 1 002 @ 08223802 n 0000 ~ 08226838 n 0000 | a community of people smaller than a town -08226838 14 n 01 moshav 0 002 @ 08226699 n 0000 ;r 08792548 n 0000 | a cooperative Israeli village or settlement comprised of small farms -08226978 14 n 02 hamlet 0 crossroads 0 001 @ 08223802 n 0000 | a community of people smaller than a village -08227088 14 n 01 cooperative 0 001 @ 08049401 n 0000 | an association formed and operated for the benefit of those using it -08227214 14 n 07 club 0 social_club 0 society 1 guild 0 gild 0 lodge 0 order 2 024 @ 08049401 n 0000 + 02386012 v 0704 + 01858740 a 0103 + 02592250 v 0101 + 02592111 v 0101 ~ 08228405 n 0000 ~ 08228538 n 0000 ~ 08228665 n 0000 ~ 08229275 n 0000 ~ 08229362 n 0000 ~ 08229467 n 0000 ~ 08229605 n 0000 ~ 08229694 n 0000 ~ 08229779 n 0000 ~ 08229887 n 0000 ~ 08230009 n 0000 ~ 08230110 n 0000 ~ 08230219 n 0000 ~ 08230294 n 0000 ~ 08230477 n 0000 ~ 08230679 n 0000 ~ 08230785 n 0000 ~ 08235828 n 0000 %m 10308394 n 0000 | a formal association of people with similar interests; "he joined a golf club"; "they formed a small lunch society"; "men from the fraternal order will staff the soup kitchen today" -08227916 14 n 02 family 5 fellowship 0 003 @ 08049401 n 0000 + 09935990 n 0203 ~ 08228229 n 0000 | an association of people who share common beliefs or activities; "the message was addressed not just to employees but to every member of the company family"; "the church welcomed new members into its fellowship" -08228229 14 n 01 koinonia 0 001 @ 08227916 n 0000 | Christian fellowship or communion with God or with fellow Christians; said in particular of the early Christian community -08228405 14 n 02 athenaeum 0 atheneum 0 001 @ 08227214 n 0000 | a literary or scientific association for the promotion of learning -08228538 14 n 01 bookclub 0 001 @ 08227214 n 0000 | a club that people join in order to buy selected books at reduced prices -08228665 14 n 01 chapter 0 003 @ 08227214 n 0000 #m 08229467 n 0000 #m 08049401 n 0000 | a local branch of some fraternity or association; "he joined the Atlanta chapter" -08228838 14 n 01 chapter 1 001 @ 08163792 n 0000 | an ecclesiastical assembly of the monks in a monastery or even of the canons of a church -08228980 14 n 01 American_Legion 0 003 @ 08049401 n 0000 %m 10253887 n 0000 %m 10749353 n 0000 | the largest organization of United States war veterans -08229134 14 n 02 Veterans_of_Foreign_Wars 0 VFW 0 002 @ 08049401 n 0000 %m 10749353 n 0000 | an organization of United States war veterans -08229275 14 n 01 chess_club 0 001 @ 08227214 n 0000 | a club of people to play chess -08229362 14 n 01 country_club 0 001 @ 08227214 n 0000 | a suburban club for recreation and socializing -08229467 14 n 02 fraternity 1 frat 0 003 @ 08227214 n 0000 + 02731699 a 0101 %m 08228665 n 0000 | a social club for male undergraduates -08229605 14 n 01 glee_club 0 001 @ 08227214 n 0000 | a club organized to sing together -08229694 14 n 01 golf_club 0 001 @ 08227214 n 0000 | a club of people to play golf -08229779 14 n 02 hunt 0 hunt_club 0 001 @ 08227214 n 0000 | an association of huntsmen who hunt for sport -08229887 14 n 01 investors_club 0 001 @ 08227214 n 0000 | a club of small investors who buy and sell securities jointly -08230009 14 n 01 jockey_club 0 001 @ 08227214 n 0000 | a club to promote and regulate horse racing -08230110 14 n 01 racket_club 0 002 @ 08227214 n 0000 ~ 08230590 n 0000 | club for players of racket sports -08230219 14 n 01 rowing_club 0 001 @ 08227214 n 0000 | a club for rowers -08230294 14 n 01 slate_club 0 002 @ 08227214 n 0000 ;r 08860123 n 0000 | a group of people who save money in a common fund for a specific purpose (usually distributed at Christmas) -08230477 14 n 01 sorority 0 002 @ 08227214 n 0000 %m 10602258 n 0000 | a social club for female undergraduates -08230590 14 n 01 tennis_club 0 001 @ 08230110 n 0000 | a club of people to play tennis -08230679 14 n 01 turnverein 0 002 @ 08227214 n 0000 %m 10733574 n 0000 | a club of tumblers or gymnasts -08230785 14 n 02 yacht_club 0 boat_club 0 001 @ 08227214 n 0000 | club that promotes and supports yachting and boating -08230906 14 n 01 yakuza 0 002 @ 08245172 n 0000 ;r 08921850 n 0000 | organized crime in Japan; an alliance of criminal organizations and illegal enterprises -08231065 14 n 01 yoke 0 001 @ 07976936 n 0000 | a pair of draft animals joined by a yoke; "pulled by a yoke of oxen" -08231184 14 n 02 league 1 conference 1 011 @ 08049401 n 0000 + 00369064 v 0101 ~ 08231499 n 0000 ~ 08231678 n 0000 ~ 08231874 n 0000 ~ 08232299 n 0000 ~ 08232410 n 0000 ~ 08232496 n 0000 ~ 08232603 n 0000 ~ 08232706 n 0000 ~ 08239808 n 0000 | an association of sports teams that organizes matches for its members -08231499 14 n 03 major_league 0 big_league 0 majors 0 003 @ 08231184 n 0000 ;c 00471613 n 0000 %m 08078819 n 0000 | the most important league in any sport (especially baseball) -08231678 14 n 03 minor_league 0 minors 0 bush_league 0 003 @ 08231184 n 0000 ;c 00471613 n 0000 %m 08078976 n 0000 | a league of teams that do not belong to a major league (especially baseball) -08231874 14 n 01 baseball_league 0 003 @ 08231184 n 0000 %m 08079613 n 0000 ~ 08231999 n 0000 | a league of baseball teams -08231999 14 n 01 little_league 0 002 @ 08231874 n 0000 %m 08232160 n 0000 | a commercially sponsored baseball league for players between 8 and 12 years of age -08232160 14 n 01 little-league_team 0 003 @ 08208560 n 0000 #m 08231999 n 0000 %m 10267561 n 0000 | a team that plays in a little league -08232299 14 n 01 basketball_league 0 002 @ 08231184 n 0000 %m 08079852 n 0000 | a league of basketball teams -08232410 14 n 01 bowling_league 0 001 @ 08231184 n 0000 | a league of bowling teams -08232496 14 n 01 football_league 0 002 @ 08231184 n 0000 %m 08080025 n 0000 | a league of football teams -08232603 14 n 01 hockey_league 0 002 @ 08231184 n 0000 %m 08080386 n 0000 | a league of hockey teams -08232706 14 n 01 Ivy_League 0 009 @ 08231184 n 0000 %m 02907985 n 0000 %m 03073832 n 0000 %m 03109350 n 0000 %m 03163081 n 0000 %m 03496749 n 0000 %m 04003453 n 0000 %m 04512476 n 0000 %m 04610368 n 0000 | a league of universities and colleges in the northeastern United States that have a reputation for scholastic achievement and social prestige -08233056 14 n 05 union 1 labor_union 0 trade_union 0 trades_union 0 brotherhood 1 009 @ 08008335 n 0000 #p 08472890 n 0000 + 10720964 n 0301 + 02435867 v 0101 + 02434238 v 0101 ~ 08233426 n 0000 ~ 08234493 n 0000 ~ 08234792 n 0000 ~ 08473173 n 0000 | an organization of employees formed to bargain with the employer; "you have to join the union in order to get a job" -08233426 14 n 02 industrial_union 0 vertical_union 0 003 @ 08233056 n 0000 ~ 08233627 n 0000 ~ 08233762 n 0000 | a labor union that admits all workers in a given industry irrespective of their craft -08233627 14 n 01 Teamsters_Union 0 001 @ 08233426 n 0000 | an industrial union of truck drivers and chauffeurs and warehouse workers -08233762 14 n 02 United_Mine_Workers_of_America 0 United_Mine_Workers 0 001 @ 08233426 n 0000 | an industrial union of mine workers in North America -08233913 14 n 02 American_Federation_of_Labor 0 AFL 0 001 @ 08303504 n 0000 | a federation of North American labor unions that merged with the Congress of Industrial Organizations in 1955 -08234103 14 n 02 American_Federation_of_Labor_and_Congress_of_Industrial_Organizations 0 AFL-CIO 0 001 @ 08303504 n 0000 | the largest federation of North American labor unions; formed in 1955 -08234298 14 n 02 Congress_of_Industrial_Organizations 0 CIO 0 001 @ 08303504 n 0000 | a federation of North American industrial unions that merged with the American Federation of Labor in 1955 -08234493 14 n 01 craft_union 0 001 @ 08233056 n 0000 | a labor union whose membership is restricted to workers in a particular craft -08234628 14 n 01 credit_union 0 001 @ 08420278 n 0000 | a cooperative depository financial institution whose members can obtain loans from their combined savings -08234792 14 n 01 company_union 0 001 @ 08233056 n 0000 | a union of workers for a single company; a union not affiliated with a larger union -08234935 14 n 01 open_shop 0 001 @ 08058098 n 0000 | a company whose workers are hired without regard to their membership in a labor union -08235076 14 n 01 closed_shop 0 001 @ 08058098 n 0000 | a company that hires only union members -08235173 14 n 01 union_shop 0 001 @ 08058098 n 0000 | a company allowed to hire nonunion workers on the condition that they will join the union within a specified time -08235343 14 n 01 secret_society 0 004 @ 08049401 n 0000 ~i 08029421 n 0000 ~ 08235513 n 0000 ~ 08235623 n 0000 | a society that conceals its activities from nonmembers -08235513 14 n 02 Freemasonry 0 Masonry 0 002 @ 08235343 n 0000 %m 10111144 n 0000 | Freemasons collectively -08235623 14 n 02 Rashtriya_Swayamsevak_Sangh 0 National_Volunteers_Association 0 002 @ 08235343 n 0000 ;r 08900535 n 0000 | an all-male organization begun in 1925 to foster nationalism in India's Hindus -08235828 14 n 01 service_club 0 003 @ 08227214 n 0000 ~ 08236027 n 0000 ~ 08236251 n 0000 | a club of professional or business people organized for their coordination and active in public services -08236027 14 n 02 Lions_Club 0 International_Association_of_Lions_clubs 0 001 @ 08235828 n 0000 | club dedicated to promoting responsible citizenship and good government and community and national and international welfare -08236251 14 n 02 Rotary_Club 0 Rotary_International 0 002 @ 08235828 n 0000 %m 10539616 n 0000 | a group of businessmen in a town organized as a service club and to promote world peace -08236438 14 n 03 consortium 0 pool 0 syndicate 0 004 @ 08049401 n 0000 + 02449011 v 0301 + 02449183 v 0301 ~ 08236621 n 0000 | an association of companies for some definite purpose -08236621 14 n 04 trust 0 corporate_trust 0 combine 0 cartel 0 004 @ 08236438 n 0000 + 02377938 v 0301 ~ 08236963 n 0000 ~ 08237699 n 0000 | a consortium of independent organizations formed to limit competition by controlling the production and distribution of a product or service; "they set up the trust in the hope of gaining a monopoly" -08236963 14 n 01 drug_cartel 0 003 @ 08236621 n 0000 ~i 08237202 n 0000 ~i 08237400 n 0000 | an illicit cartel formed to control the production and distribution of narcotic drugs; "drug cartels sometimes finance terrorist organizations" -08237202 14 n 01 Medellin_cartel 0 002 @i 08236963 n 0000 ;r 08732116 n 0000 | a drug cartel in Colombia; controlled the production of cocaine from the 1970s until 1993 when the leader was killed -08237400 14 n 01 Cali_cartel 0 002 @i 08236963 n 0000 ;r 08732116 n 0000 | a drug cartel that seized control of cocaine production in Colombia in 1993; adopted techniques used by terrorist organizations (small cells and sophisticated communications equipment and close ties with politicians etc.) -08237699 14 n 01 oil_cartel 0 002 @ 08236621 n 0000 ~ 08177030 n 0000 | a cartel of companies or nations formed to control the production and distribution of oil -08237863 14 n 03 cast 0 cast_of_characters 0 dramatis_personae 0 005 @ 07975026 n 0000 #m 08187033 n 0000 + 02385813 v 0101 + 01710481 v 0101 ~ 08238048 n 0000 | the actors in a play -08238048 14 n 02 ensemble 4 supporting_players 0 001 @ 08237863 n 0000 | a cast other than the principals -08238156 14 n 01 constituency 0 003 @ 07965085 n 0000 #m 08161068 n 0000 %m 09611884 n 0000 | the body of voters who elect a representative for their area -08238313 14 n 01 electoral_college 0 001 @ 07965085 n 0000 | the body of electors who formally elect the United States president and vice president -08238463 14 n 04 class 3 form 0 grade 0 course 1 003 @ 07975026 n 0000 ~ 08239024 n 0000 ~ 08239152 n 0000 | a body of students who are taught together; "early morning classes are always sleepy" -08238660 14 n 02 class 4 year 0 006 @ 07975026 n 0000 ~ 08238909 n 0000 ~ 08239383 n 0000 ~ 08239488 n 0000 ~ 08239590 n 0000 ~ 08239706 n 0000 | a body of students who graduate together; "the class of '97"; "she was in my year at Hoehandle High" -08238909 14 n 01 graduating_class 0 001 @ 08238660 n 0000 | the body of students who graduate together this year -08239024 14 n 01 master_class 0 001 @ 08238463 n 0000 | a class (especially in music) given to talented students by an expert -08239152 14 n 02 section 4 discussion_section 0 001 @ 08238463 n 0000 | a small class of students who are part of a larger course but are taught separately; "a graduate student taught sections for the professor's lecture course" -08239383 14 n 01 senior_class 0 001 @ 08238660 n 0000 | final grade or class in high school or college -08239488 14 n 01 junior_class 0 001 @ 08238660 n 0000 | penultimate class in high school or college -08239590 14 n 01 sophomore_class 0 001 @ 08238660 n 0000 | the second class in a four-year college or high school -08239706 14 n 01 freshman_class 0 001 @ 08238660 n 0000 | the first class in college or high school -08239808 14 n 02 class 5 division 6 003 @ 08231184 n 0000 + 00739662 v 0102 + 00654625 v 0101 | a league ranked by quality; "he played baseball in class D for two years"; "Princeton is in the NCAA Division 1-AA" -08240022 14 n 01 revolving_door 0 001 @ 07950920 n 0000 | an organization or institution with a high rate of turnover of personnel or membership -08240169 14 n 04 set 1 circle 0 band 1 lot 0 009 @ 07950920 n 0000 ~ 08240484 n 0000 ~ 08240633 n 0000 ~ 08251104 n 0000 ~ 08251303 n 0000 ~ 08251493 n 0000 ~ 08251605 n 0000 ~ 08251756 n 0000 ~ 08264897 n 0000 | an unofficial association of people or groups; "the smart set goes there"; "they were an angry lot" -08240484 14 n 01 car_pool 0 001 @ 08240169 n 0000 | a small group of car drivers who arrange to take turns driving while the others are passengers -08240633 14 n 06 clique 0 coterie 0 ingroup 0 inner_circle 0 pack 1 camp 1 011 @ 08240169 n 0000 ~ 08240966 n 0000 ~ 08241309 n 0000 ~ 08241512 n 0000 ~ 08241654 n 0000 ~ 08241798 n 0000 ~ 08241964 n 0000 ~ 08245425 n 0000 ~ 08251877 n 0000 ~ 08406259 n 0000 ~ 08406361 n 0000 | an exclusive circle of people with a common purpose -08240966 14 n 01 Bloomsbury_Group 0 007 @ 08240633 n 0000 %m 10842376 n 0000 %m 10984257 n 0000 %m 11011559 n 0000 %m 11103397 n 0000 %m 11320631 n 0000 %m 11396667 n 0000 | an inner circle of writers and artists and philosophers who lived in or around Bloomsbury early in the 20th century and were noted for their unconventional lifestyles -08241309 14 n 01 bohemia 0 002 @ 08240633 n 0000 + 00606859 a 0101 | a group of artists and writers with real or pretended artistic or intellectual aspirations and usually an unconventional life style -08241512 14 n 02 kitchen_cabinet 0 brain_trust 0 001 @ 08240633 n 0000 | an inner circle of unofficial advisors to the head of a government -08241654 14 n 01 loop 0 001 @ 08240633 n 0000 | an inner circle of advisors (especially under President Reagan); "he's no longer in the loop" -08241798 14 n 04 cabal 0 faction 1 junto 0 camarilla 0 002 @ 08240633 n 0000 %m 09885676 n 0000 | a clique (often secret) that seeks power usually through intrigue -08241964 14 n 02 military_junta 0 junta 0 001 @ 08240633 n 0000 | a group of military officers who rule a country after seizing power -08242100 14 n 01 cadre 0 002 @ 08242223 n 0000 #m 08199025 n 0000 | a nucleus of military personnel capable of expansion -08242223 14 n 03 core 0 nucleus 0 core_group 0 002 @ 07996689 n 0000 ~ 08242100 n 0000 | a small group of indispensable persons or things; "five periodicals make up the core of their publishing program" -08242428 14 n 01 portfolio 0 001 @ 07996689 n 0000 | a set of pieces of creative work collected to be shown to potential customers or employers; "the artist had put together a portfolio of his work"; "every actor has a portfolio of photographs" -08242675 14 n 01 professional_association 0 001 @ 08049401 n 0000 | an association of practitioners of a given profession -08242799 14 n 03 gang 0 crew 0 work_party 0 011 @ 08189659 n 0000 #m 08212347 n 0000 + 01089737 v 0101 ~ 08218393 n 0000 ~ 08243081 n 0000 ~ 08243248 n 0000 ~ 08243340 n 0000 ~ 08243492 n 0000 ~ 08243570 n 0000 ~ 08243695 n 0000 %m 09977082 n 0000 | an organized group of workmen -08243081 14 n 01 detail 1 002 @ 08242799 n 0000 + 00678105 v 0101 | a crew of workers selected for a particular task; "a detail was sent to remove the fallen trees" -08243248 14 n 01 chain_gang 0 001 @ 08242799 n 0000 | a gang of convicts chained together -08243340 14 n 02 ground_crew 0 ground-service_crew 0 001 @ 08242799 n 0000 | the crew of technicians and mechanics who service aircraft on the ground -08243492 14 n 01 road_gang 0 001 @ 08242799 n 0000 | a gang of road workers -08243570 14 n 01 section_gang 0 002 @ 08242799 n 0000 %m 10574311 n 0000 | a work crew assigned to a section of a railroad -08243695 14 n 01 stage_crew 0 002 @ 08242799 n 0000 %m 10645392 n 0000 | crew of workers who move scenery or handle properties in a theatrical production -08243851 14 n 01 Fabian_Society 0 003 @ 08049401 n 0000 %m 10075416 n 0000 %m 11377851 n 0000 | an association of British socialists who advocate gradual reforms within the law leading to democratic socialism -08244062 14 n 04 gang 1 pack 2 ring 0 mob 1 008 @ 08049401 n 0000 #m 08245172 n 0000 + 10120085 n 0402 + 08245172 n 0103 + 10120085 n 0101 ~ 08244346 n 0000 ~ 08244747 n 0000 %m 10120085 n 0000 | an association of criminals; "police tried to break up the gang"; "a pack of thieves" -08244346 14 n 01 nest 0 003 @ 08244062 n 0000 ;c 00759694 n 0000 ~ 08244532 n 0000 | a gang of people (criminals or spies or terrorists) assembled in one locality; "a nest of thieves" -08244532 14 n 01 sleeper_nest 0 002 @ 08244346 n 0000 %m 10610850 n 0000 | a nest of sleepers awaiting a prearranged signal; "sleeper nests of Islamic terrorists were capable of launching major attacks in Europe" -08244747 14 n 01 youth_gang 0 004 @ 08244062 n 0000 %m 10119953 n 0000 %p 10181547 n 0000 %m 10181878 n 0000 | a gang whose members are teenagers -08244895 14 n 01 demimonde 0 002 @ 07974025 n 0000 %m 10001882 n 0000 | a class of woman not considered respectable because of indiscreet or promiscuous behavior -08245059 14 n 01 underworld 0 003 @ 07974025 n 0000 %m 08245172 n 0000 %m 10503247 n 0000 | the criminal class -08245172 14 n 03 organized_crime 0 gangland 0 gangdom 0 009 @ 07950920 n 0000 #m 08245059 n 0000 + 08244062 n 0301 ~ 08230906 n 0000 %m 08244062 n 0000 ~ 08245549 n 0000 ~ 08246036 n 0000 ~ 08246185 n 0000 ~ 08246302 n 0000 | underworld organizations -08245425 14 n 02 mafia 2 maffia 2 002 @ 08240633 n 0000 ;u 07075172 n 0000 | any tightly knit group of trusted associates -08245549 14 n 03 Mafia 1 Maffia 1 Sicilian_Mafia 0 003 @ 08245172 n 0000 ;c 00759694 n 0000 %m 10280495 n 0000 | a secret terrorist group in Sicily; originally opposed tyranny but evolved into a criminal organization in the middle of the 19th century -08245802 14 n 03 Mafia 0 Maffia 0 Cosa_Nostra 0 003 @ 08246302 n 0000 -c 06669013 n 0000 %m 10280364 n 0000 | a crime syndicate in the United States; organized in families; believed to have important relations to the Sicilian Mafia -08246036 14 n 01 Black_Hand 0 002 @ 08245172 n 0000 ;c 00759694 n 0000 | a secret terrorist society in the United States early in the 20th century -08246185 14 n 01 Camorra 0 001 @ 08245172 n 0000 | a secret society in Naples notorious for violence and blackmail -08246302 14 n 04 syndicate 1 crime_syndicate 0 mob 2 family 6 003 @ 08245172 n 0000 + 10120085 n 0302 ~ 08245802 n 0000 | a loose affiliation of gangsters in charge of organized criminal activities -08246502 14 n 01 yeomanry 0 001 @ 07974025 n 0000 | class of small freeholders who cultivated their own land -08246613 14 n 03 musical_organization 0 musical_organisation 0 musical_group 0 015 @ 08008335 n 0000 ~ 08187837 n 0000 ~ 08188235 n 0000 ~ 08216900 n 0000 ~ 08247021 n 0000 ~ 08247152 n 0000 ~ 08247251 n 0000 ~ 08247703 n 0000 ~ 08247816 n 0000 ~ 08247935 n 0000 ~ 08248047 n 0000 ~ 08248157 n 0000 ~ 08249038 n 0000 ~ 08249960 n 0000 %m 10340312 n 0000 | an organization of musicians who perform together -08247021 14 n 03 duet 1 duette 0 duo 1 002 @ 08246613 n 0000 ~i 08181375 n 0000 | two performers or singers who perform together -08247152 14 n 01 trio 2 001 @ 08246613 n 0000 | three performers or singers who perform together -08247251 14 n 02 quartet 2 quartette 2 003 @ 08246613 n 0000 ~ 08247400 n 0000 ~ 08247561 n 0000 | four performers or singers who perform together -08247400 14 n 01 barbershop_quartet 0 001 @ 08247251 n 0000 | an unaccompanied quartet of (usually male) voices singing sentimental songs in four-part harmony -08247561 14 n 02 string_quartet 0 string_quartette 0 001 @ 08247251 n 0000 | an instrumental quartet with 2 violins and a viola and a cello -08247703 14 n 02 quintet 2 quintette 2 001 @ 08246613 n 0000 | five performers or singers who perform together -08247816 14 n 03 sextet 2 sextette 2 sestet 2 001 @ 08246613 n 0000 | six performers or singers who perform together -08247935 14 n 02 septet 2 septette 2 001 @ 08246613 n 0000 | seven performers or singers who perform together -08248047 14 n 02 octet 2 octette 2 001 @ 08246613 n 0000 | eight performers or singers who perform together -08248157 14 n 01 orchestra 0 007 @ 08246613 n 0000 + 02956137 a 0101 + 01707737 v 0101 %p 08216900 n 0000 ~ 08248411 n 0000 ~ 08248747 n 0000 ~ 08248856 n 0000 | a musical organization consisting of a group of instrumentalists including string players -08248411 14 n 01 chamber_orchestra 0 001 @ 08248157 n 0000 | small orchestra; usually plays classical music -08248521 14 n 01 gamelan 0 002 @ 08188235 n 0000 ;r 08907606 n 0000 | a traditional Indonesian ensemble typically including many tuned percussion instruments including bamboo xylophones and wooden or bronze chimes and gongs -08248747 14 n 01 string_orchestra 0 001 @ 08248157 n 0000 | an orchestra playing only stringed instruments -08248856 14 n 03 symphony_orchestra 0 symphony 0 philharmonic 0 002 @ 08248157 n 0000 + 01727052 v 0201 | a large orchestra; can perform symphonies; "we heard the Vienna symphony" -08249038 14 n 01 band 0 005 @ 08246613 n 0000 %p 08216900 n 0000 ~ 08249207 n 0000 ~ 08249336 n 0000 ~ 08249459 n 0000 | instrumentalists not including string players -08249207 14 n 01 marching_band 0 001 @ 08249038 n 0000 | a band that marches (as in a parade) and plays music at the same time -08249336 14 n 01 brass_band 0 001 @ 08249038 n 0000 | a group of musicians playing only brass and percussion instruments -08249459 14 n 02 concert_band 0 military_band 0 001 @ 08249038 n 0000 | a group of musicians playing brass and woodwind and percussion instruments -08249608 14 n 01 jug_band 0 001 @ 08188235 n 0000 | a musical group that uses jugs and washboards and kazoos and other improvised instruments -08249752 14 n 01 pop_group 0 002 @ 08188235 n 0000 ~ 08249854 n 0000 | a group that plays pop music -08249854 14 n 01 indie 0 001 @ 08249752 n 0000 | a pop group not affiliated with a major record company -08249960 14 n 03 dance_band 0 band 2 dance_orchestra 0 005 @ 08246613 n 0000 ~ 08250168 n 0000 ~ 08250302 n 0000 ~ 08250501 n 0000 ~ 08250750 n 0000 | a group of musicians playing popular music for dancing -08250168 14 n 01 big_band 0 001 @ 08249960 n 0000 | a large dance or jazz band usually featuring improvised solos by lead musicians -08250302 14 n 03 jazz_band 0 jazz_group 0 combo 0 001 @ 08249960 n 0000 | a small band of jazz musicians -08250409 14 n 01 mariachi 0 001 @ 08188235 n 0000 | a group of street musicians in Mexico -08250501 14 n 02 rock_group 0 rock_band 0 002 @ 08249960 n 0000 ~i 08369920 n 0000 | a band of musicians who play rock'n'roll music -08250635 14 n 01 skiffle_group 0 002 @ 08188235 n 0000 ;r 08860123 n 0000 | a band of musicians who play skiffle -08250750 14 n 01 steel_band 0 001 @ 08249960 n 0000 | a band that plays instruments made from the heads of oil drums (Caribbean Islands) -08250889 14 n 01 horde 2 002 @ 08223802 n 0000 ~ 08250978 n 0000 | a nomadic community -08250978 14 n 01 Golden_Horde 0 001 @ 08250889 n 0000 | a Mongolian army that swept over eastern Europe in the 13th century -08251104 14 n 01 cohort 0 001 @ 08240169 n 0000 | a band of warriors (originally a unit of a Roman Legion) -08251213 14 n 01 cohort 1 001 @ 08184861 n 0000 | a company of companions or supporters -08251303 14 n 02 conspiracy 0 confederacy 1 003 @ 08240169 n 0000 + 02919275 a 0101 %m 09958892 n 0000 | a group of conspirators banded together to achieve some harmful or illegal purpose -08251493 14 n 01 Four_Hundred 0 002 @ 08240169 n 0000 #m 08387930 n 0000 | the exclusive social set of a city -08251605 14 n 02 horsy_set 0 horsey_set 0 001 @ 08240169 n 0000 | a set of people sharing a devotion to horses and horseback riding and horse racing -08251756 14 n 01 jet_set 0 001 @ 08240169 n 0000 | a set of rich and fashionable people who travel widely for pleasure -08251877 14 n 02 faction 0 sect 0 008 @ 08240633 n 0000 + 00554302 a 0103 ~ 08252083 n 0000 ~ 08416328 n 0000 ~ 08416652 n 0000 ~ 08417178 n 0000 ~ 08417281 n 0000 ~ 08417436 n 0000 | a dissenting clique -08252083 14 n 01 splinter_group 0 001 @ 08251877 n 0000 | a faction or sect that has broken away from its parent organization -08252211 14 n 02 social_gathering 0 social_affair 0 008 @ 07975026 n 0000 ~ 07975909 n 0000 ~ 07976725 n 0000 ~ 08184861 n 0000 ~ 08252467 n 0000 ~ 08252602 n 0000 ~ 08256567 n 0000 ~ 08310389 n 0000 | a gathering for the purpose of promoting fellowship -08252467 14 n 01 function 0 001 @ 08252211 n 0000 | a formal or official social gathering or ceremony; "it was a black-tie function" -08252602 14 n 01 party 0 018 @ 08252211 n 0000 + 02491851 v 0101 ~ 08253045 n 0000 ~ 08253141 n 0000 ~ 08253450 n 0000 ~ 08253815 n 0000 ~ 08254331 n 0000 ~ 08254993 n 0000 ~ 08255109 n 0000 ~ 08255231 n 0000 ~ 08255508 n 0000 ~ 08255795 n 0000 ~ 08256005 n 0000 ~ 08256151 n 0000 ~ 08256229 n 0000 ~ 08256369 n 0000 ~ 08256735 n 0000 ~ 08478371 n 0000 | a group of people gathered together for pleasure; "she joined the party after dinner" -08253045 14 n 02 shindig 0 shindy 0 001 @ 08252602 n 0000 | a large and noisy party of people -08253141 14 n 01 dance 0 003 @ 08252602 n 0000 + 01708676 v 0101 ~ 08253268 n 0000 | a party of people assembled for dancing -08253268 14 n 01 ball 0 002 @ 08253141 n 0000 %p 00291663 n 0000 | the people assembled at a lavish formal dance; "the ball was already emptying out before the fire alarm sounded" -08253450 14 n 04 masquerade 0 masquerade_party 0 masque 0 mask 0 004 @ 08252602 n 0000 + 01358328 v 0401 + 02147962 v 0101 ~ 07449157 n 0000 | a party of guests wearing costumes and masks -08253640 14 n 02 banquet 0 feast 0 005 @ 08253815 n 0000 + 01186208 v 0201 + 01185981 v 0201 + 01186208 v 0102 ~ 08254055 n 0000 | a ceremonial dinner party for many people -08253815 14 n 02 dinner 0 dinner_party 0 005 @ 08252602 n 0000 + 01167780 v 0101 + 01167981 v 0101 ~ 08253640 n 0000 ~ 08254195 n 0000 | a party of people assembled to have dinner together; "guests should never be late to a dinner party" -08254055 14 n 01 gaudy 0 002 @ 08253640 n 0000 ;r 08860123 n 0000 | (Britain) a celebratory reunion feast or entertainment held a college -08254195 14 n 01 beanfeast 0 002 @ 08253815 n 0000 ;r 08860123 n 0000 | an annual dinner party given by an employer for the employees -08254331 14 n 01 reception 0 007 @ 08252602 n 0000 + 02493511 v 0101 ~ 08254540 n 0000 ~ 08254627 n 0000 ~ 08254741 n 0000 ~ 08254876 n 0000 %p 08433077 n 0000 | a formal party of people; as after a wedding -08254540 14 n 01 at_home 0 001 @ 08254331 n 0000 | a reception held in your own home -08254627 14 n 01 levee 0 001 @ 08254331 n 0000 | a formal reception of visitors or guests (as at a royal court) -08254741 14 n 01 tea 0 001 @ 08254331 n 0000 | a reception or party at which tea is served; "we met at the Dean's tea for newcomers" -08254876 14 n 01 wedding_reception 0 001 @ 08254331 n 0000 | a reception for wedding guests held after the wedding -08254993 14 n 01 open_house 0 001 @ 08252602 n 0000 | an informal party of people with hospitality for all comers -08255109 14 n 01 housewarming 0 001 @ 08252602 n 0000 | a party of people assembled to celebrate moving into a new home -08255231 14 n 01 soiree 0 002 @ 08252602 n 0000 ~ 08255373 n 0000 | a party of people assembled in the evening (usually at a private house) -08255373 14 n 02 musical_soiree 0 soiree_musicale 0 001 @ 08255231 n 0000 | a soiree assembled for the purpose of listening to music -08255508 14 n 03 garden_party 0 lawn_party 0 fete_champetre 0 001 @ 08252602 n 0000 | a party of people assembled for social interaction out of doors -08255660 14 n 01 bachelor_party 0 001 @ 08256005 n 0000 | stag party held for a bachelor (usually on the night before he is married) -08255795 14 n 01 shower 0 001 @ 08252602 n 0000 | a party of friends assembled to present gifts (usually of a specified kind) to a person; "her friends organized a baby shower for her when she was expecting" -08256005 14 n 02 stag_party 0 smoker 0 002 @ 08252602 n 0000 ~ 08255660 n 0000 | a party for men only (or one considered suitable for men only) -08256151 14 n 01 hen_party 0 001 @ 08252602 n 0000 | a party for women only -08256229 14 n 01 slumber_party 0 001 @ 08252602 n 0000 | an overnight party of girls who dress in nightclothes and pass the night talking -08256369 14 n 03 sociable 0 social 0 mixer 0 004 @ 08252602 n 0000 + 02258360 a 0201 + 01076634 a 0201 + 02257141 a 0101 | a party of people assembled to promote sociability and communal activity -08256567 14 n 01 supper 0 002 @ 08252211 n 0000 + 01205459 v 0101 | a social gathering where a light evening meal is served; "her suppers often included celebrities" -08256735 14 n 02 wedding 0 wedding_party 0 008 @ 08252602 n 0000 %m 09851465 n 0000 %m 09874725 n 0000 %m 09874862 n 0000 %m 10097842 n 0000 %m 10148035 n 0000 %m 10148165 n 0000 %m 10722239 n 0000 | a party of people at a wedding -08256968 14 n 02 party 1 political_party 0 036 @ 08008335 n 0000 #m 08367880 n 0000 ~ 08257779 n 0000 ~ 08257971 n 0000 ~ 08258184 n 0000 ~ 08258358 n 0000 ~ 08258523 n 0000 ~ 08258744 n 0000 ~ 08258974 n 0000 ~ 08259156 n 0000 ~ 08259318 n 0000 ~ 08259611 n 0000 ~ 08259753 n 0000 ~ 08260002 n 0000 ~ 08260220 n 0000 ~ 08260386 n 0000 ~ 08260498 n 0000 ~ 08260691 n 0000 ~ 08260961 n 0000 ~ 08261589 n 0000 ~ 08261810 n 0000 ~ 08261958 n 0000 ~ 08262154 n 0000 ~ 08262309 n 0000 ~ 08262494 n 0000 ~ 08262695 n 0000 ~ 08262937 n 0000 ~ 08263113 n 0000 ~ 08263303 n 0000 ~ 08263560 n 0000 ~ 08263733 n 0000 ~ 08263870 n 0000 ~ 08264110 n 0000 ~ 08264203 n 0000 ~ 08264441 n 0000 ~ 08404188 n 0000 | an organization to gain political power; "in 1992 Perot tried to organize a third party at the national level" -08257779 14 n 01 American_Labor_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1936 in New York when labor and liberals bolted the Democratic Party -08257971 14 n 02 American_Party 0 Know-Nothing_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; active in the 1850s to keep power out of the hands of immigrants and Roman Catholics -08258184 14 n 01 Anti-Masonic_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; founded in 1825 in opposition to Freemasonry in public affairs -08258358 14 n 01 Black_Panthers 0 002 @ 08256968 n 0000 %m 09858913 n 0000 | a militant Black political party founded in 1965 to end political dominance by Whites -08258523 14 n 01 Communist_Party 0 002 @ 08256968 n 0000 %m 09945603 n 0000 | a political party that actively advocates a communist form of government; in Communist countries it is the sole political party of the state -08258744 14 n 01 Conservative_Party 0 001 @ 08256968 n 0000 | a political party (especially in Great Britain or Australia) that believes in the importance of a capitalist economy with private ownership rather than state control -08258974 14 n 01 Constitutional_Union_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1859 by former Whigs who hoped to preserve the Union -08259156 14 n 01 Democratic_Party 0 003 @ 08256968 n 0000 %p 08048042 n 0000 %m 10002151 n 0000 | the older of two major political parties in the United States -08259318 14 n 01 Democratic-Republican_Party 0 001 @ 08256968 n 0000 | a former major political party in the United States in the early 19th century; opposed the old Federalist party; favored a strict interpretation of the constitution in order to limit the powers of the federal government -08259611 14 n 01 Farmer-Labor_Party 0 001 @ 08256968 n 0000 | a former minor political party in the United States in the early 20th century -08259753 14 n 03 Federalist_Party 0 American_Federalist_Party 0 Federal_Party 0 001 @ 08256968 n 0000 | a major political party in the United States in the early 19th century; founded by Alexander Hamilton; favored a strong centralized government -08260002 14 n 01 Free_Soil_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1848 to oppose the extension of slavery into the territories; merged with the Liberty Party in 1848 -08260220 14 n 01 Gironde 0 002 @ 08256968 n 0000 + 10131268 n 0101 | the French moderate political party that was in power (1791-1793) during the French Revolution -08260386 14 n 01 Green_Party 0 002 @ 08256968 n 0000 %m 10060904 n 0000 | an environmentalist political party -08260498 14 n 01 Greenback_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; organized in 1874; opposed any reduction in the amount of paper money in circulation -08260691 14 n 02 Kuomintang 0 Guomindang 0 001 @ 08256968 n 0000 | the political party founded in 1911 by Sun Yat-sen; it governed China under Chiang Kai-shek from 1928 until 1949 when the Communists took power and subsequently was the official ruling party of Taiwan -08260961 14 n 02 labor_party 0 labour_party 0 003 @ 08256968 n 0000 ~ 08261162 n 0000 ~ 08261320 n 0000 | a left-of-center political party formed to represent the interest of ordinary working people -08261162 14 n 01 Australian_Labor_Party 0 001 @ 08260961 n 0000 | the oldest political party in Australia, founded in 1891; the party is moderately liberal -08261320 14 n 04 British_Labour_Party 0 Labour_Party 1 Labour 2 Labor 2 002 @ 08260961 n 0000 %m 10242328 n 0000 | a political party formed in Great Britain in 1900; characterized by the promotion of labor's interests and formerly the socialization of key industries -08261589 14 n 01 Liberal_Democrat_Party 0 002 @ 08256968 n 0000 ;r 08860123 n 0000 | a political party in Great Britain; formerly the Liberal Party; advocates reforms and improvement of the conditions of working people -08261810 14 n 01 Liberal_Party 0 001 @ 08256968 n 0000 | a political party in Australia, Canada, and other nations, and formerly in Great Britain -08261958 14 n 01 Liberty_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1839 to oppose the practice of slavery; merged with the Free Soil Party in 1848 -08262154 14 n 01 Militant_Tendency 0 001 @ 08256968 n 0000 | a Trotskyist political organization in Great Britain set up in 1964 inside the Labour Party -08262309 14 n 02 National_Socialist_German_Workers'_Party 0 Nazi_Party 0 001 @ 08256968 n 0000 | the political party founded in Germany in 1919 and brought to power by Hitler in 1933 -08262494 14 n 02 People's_Party 0 Populist_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1891 to advocate currency expansion and state control of railroads -08262695 14 n 02 Progressive_Party 0 Bull_Moose_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; founded by Theodore Roosevelt during the presidential campaign of 1912; its emblem was a picture of a bull moose -08262937 14 n 01 Prohibition_Party 0 001 @ 08256968 n 0000 | a political party in the United States; formed in 1869 to oppose the manufacture and sale of alcoholic beverages -08263113 14 n 02 Republican_Party 0 GOP 0 002 @ 08256968 n 0000 %m 10522633 n 0000 | the younger of two major political parties in the United States; GOP is an acronym for grand old party -08263303 14 n 01 Social_Democratic_Party 0 001 @ 08256968 n 0000 | a political party in Germany and Britain (and elsewhere) founded in late 19th century; originally Marxist; now advocates the gradual transformation of capitalism into democratic socialism -08263560 14 n 01 Socialist_Labor_Party 0 001 @ 08256968 n 0000 | a political party in the United States; formed in 1874 to advocate the peaceful introduction of socialism -08263733 14 n 01 Socialist_Party 0 001 @ 08256968 n 0000 | a political party in the United States formed in 1900 to advocate socialism -08263870 14 n 02 States'_Rights_Democratic_Party 0 Dixiecrats 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1948 by Democrats from southern states in order to oppose to the candidacy of Harry S Truman -08264110 14 n 01 war_party 1 001 @ 08256968 n 0000 | a political party that supports a war -08264203 14 n 01 Whig_Party 0 001 @ 08256968 n 0000 | a former political party in the United States; formed in 1834 in opposition to the Democratic Party; advocated a loose interpretation of the Constitution and high protective tariffs -08264441 14 n 01 third_party 0 001 @ 08256968 n 0000 | a political party organized in opposition to the major parties in a two-party system -08264583 14 n 02 machine 0 political_machine 0 001 @ 08008335 n 0000 | a group that controls the activities of a political party; "he was endorsed by the Democratic machine" -08264759 14 n 01 machine 1 001 @ 08008335 n 0000 | an intricate organization that accomplishes its goals efficiently; "the war machine" -08264897 14 n 02 party 2 company 6 009 @ 08240169 n 0000 + 02716767 v 0201 ~ 08265252 n 0000 ~ 08265347 n 0000 ~ 08265469 n 0000 ~ 08265614 n 0000 ~ 08265692 n 0000 ~ 08265790 n 0000 ~ 08265912 n 0000 | a band of people associated temporarily in some activity; "they organized a party to search for food"; "the company of cooks walked into the kitchen" -08265252 14 n 01 fatigue_party 0 001 @ 08264897 n 0000 | a group of soldiers on fatigue duty -08265347 14 n 01 landing_party 0 001 @ 08264897 n 0000 | a part of a ship's company organized for special duties ashore -08265469 14 n 02 party_to_the_action 0 party_to_the_transaction 0 001 @ 08264897 n 0000 | a party of people taking a role in legal proceedings -08265614 14 n 01 rescue_party 0 001 @ 08264897 n 0000 | a party of rescuers -08265692 14 n 01 search_party 0 001 @ 08264897 n 0000 | a party of people to search for someone -08265790 14 n 01 stretcher_party 0 001 @ 08264897 n 0000 | a party of people with stretchers to carry an injured person -08265912 14 n 01 war_party 0 002 @ 08264897 n 0000 ;c 09644820 n 0000 | a band of warriors who raid or fight an enemy (used especially of Native Americans) -08266070 14 n 02 professional_organization 0 professional_organisation 0 002 @ 08008335 n 0000 %m 10480253 n 0000 | an organization of and for professional people -08266235 14 n 02 table 0 tabular_array 0 011 @ 07939382 n 0000 + 01745536 v 0104 + 03122633 a 0101 ~ 06030906 n 0000 ~ 06489659 n 0000 ~ 08266542 n 0000 ~ 08266849 n 0000 ~ 08267197 n 0000 ~ 08267446 n 0000 %m 08433447 n 0000 %m 08433575 n 0000 | a set of data arranged in rows and columns; "see table 1" -08266542 14 n 02 actuarial_table 0 statistical_table 0 002 @ 08266235 n 0000 ~ 08266669 n 0000 | a table of statistical data -08266669 14 n 01 mortality_table 0 001 @ 08266542 n 0000 | an actuarial table indicating life expectancy and probability of death as a function or age and sex and occupation etc -08266849 14 n 01 calendar 0 004 @ 08266235 n 0000 + 02674772 a 0101 + 00678981 v 0101 ~ 08267008 n 0000 | a tabular array of the days (usually for one year) -08267008 14 n 01 perpetual_calendar 0 001 @ 08266849 n 0000 | a chart or mechanical device that indicates the days of the week corresponding to any given date over a long period of years -08267197 14 n 01 file_allocation_table 0 001 @ 08266235 n 0000 | the part of a floppy disk or hard disk where information is stored about the location of each piece of information on the disk (and about the location of unusable areas of the disk) -08267446 14 n 01 periodic_table 0 002 @ 08266235 n 0000 ;c 06084469 n 0000 | (chemistry) a tabular arrangement of the chemical elements according to atomic number as based on the periodic law -08267640 14 n 01 matrix 0 007 @ 07939382 n 0000 ;c 06000644 n 0000 ~ 06030049 n 0000 ~ 08267956 n 0000 ~ 08268085 n 0000 ~ 08270067 n 0000 ~ 08270290 n 0000 | (mathematics) a rectangular array of quantities or expressions set out by rows and columns; treated as a single element and manipulated according to rules -08267956 14 n 01 dot_matrix 0 001 @ 08267640 n 0000 | a rectangular matrix of dots from which written characters can be formed -08268085 14 n 01 square_matrix 0 008 @ 08267640 n 0000 %p 08268321 n 0000 ~ 08268962 n 0000 ~ 08269396 n 0000 ~ 08269506 n 0000 ~ 08269707 n 0000 ~ 08269939 n 0000 ~ 08270169 n 0000 | a matrix with the same number of rows and columns -08268321 14 n 01 diagonal 1 006 @ 07999699 n 0000 #p 08268085 n 0000 ;c 06000644 n 0000 + 01234747 a 0103 + 00521874 v 0101 + 00521874 v 0102 | (mathematics) a set of entries in a square matrix running diagonally either from the upper left to lower right entry or running from the upper right to lower left entry -08268636 14 n 02 main_diagonal 0 principal_diagonal 0 001 @ 08270417 n 0000 | the diagonal of a square matrix running from the upper left entry to the lower right entry -08268807 14 n 01 secondary_diagonal 0 001 @ 08270417 n 0000 | the diagonal of a square matrix running from the lower left entry to the upper right entry -08268962 14 n 01 diagonal_matrix 0 002 @ 08268085 n 0000 ~ 08269114 n 0000 | a square matrix with all elements not on the main diagonal equal to zero -08269114 14 n 01 scalar_matrix 0 002 @ 08268962 n 0000 ~ 08269257 n 0000 | a diagonal matrix in which all of the diagonal elements are equal -08269257 14 n 02 identity_matrix 0 unit_matrix 0 001 @ 08269114 n 0000 | a scalar matrix in which all of the diagonal elements are unity -08269396 14 n 01 determinant 0 001 @ 08268085 n 0000 | a square matrix used to solve simultaneous equations -08269506 14 n 01 Latin_square 0 001 @ 08268085 n 0000 | a square matrix of n rows and columns; cells contain n different symbols so arranged that no symbol occurs more than once in any row or column -08269707 14 n 01 magic_square 0 001 @ 08268085 n 0000 | a square matrix of n rows and columns; the first n^2 integers are arranged in the cells of the matrix in such a way that the sum of any row or column or diagonal is the same -08269939 14 n 01 nonsingular_matrix 0 002 @ 08268085 n 0000 ! 08270169 n 0101 | a square matrix whose determinant is not zero -08270067 14 n 01 real_matrix 0 001 @ 08267640 n 0000 | a matrix whose elements are all real numbers -08270169 14 n 01 singular_matrix 0 002 @ 08268085 n 0000 ! 08269939 n 0101 | a square matrix whose determinant is zero -08270290 14 n 01 transpose 0 001 @ 08267640 n 0000 | a matrix formed by interchanging the rows and columns of a given matrix -08270417 14 n 01 diagonal 0 006 @ 08430203 n 0000 @ 08430568 n 0000 #p 03011521 n 0000 + 01234747 a 0103 ~ 08268636 n 0000 ~ 08268807 n 0000 | an oblique line of squares of the same color on a checkerboard; "the bishop moves on the diagonals" -08270662 14 n 01 Oort_cloud 0 002 @ 07951464 n 0000 ;c 06095022 n 0000 | (astronomy) a hypothetical huge collection of comets orbiting the sun far beyond the orbit of Pluto; perturbations (as by other stars) can upset a comet's orbit and may send it tumbling toward the sun -08270938 14 n 01 galaxy 1 001 @ 07951464 n 0000 | a splendid assemblage (especially of famous people) -08271042 14 n 02 galaxy 0 extragalactic_nebula 0 010 @ 07951464 n 0000 #m 09466280 n 0000 ;c 06095022 n 0000 + 02849098 a 0101 ~ 08271457 n 0000 ~ 09291781 n 0000 ~i 09345503 n 0000 ~ 09354984 n 0000 %m 09444100 n 0000 %s 11441416 n 0000 | (astronomy) a collection of star systems; any of the billions of systems each having many stars and nebulae and dust; "`extragalactic nebula' is a former name for `galaxy'" -08271457 14 n 02 spiral_galaxy 0 spiral_nebula 0 002 @ 08271042 n 0000 ~ 08271656 n 0000 | a galaxy having a spiral structure; arms containing younger stars spiral out from old stars at the center -08271656 14 n 01 Andromeda_galaxy 0 001 @ 08271457 n 0000 | a spiral galaxy in the constellation of Andromeda that is visible to the naked eye -08271801 14 n 01 legion 1 003 @ 08198398 n 0000 ~ 08271941 n 0000 %m 10253703 n 0000 | a large military unit; "the French Foreign Legion" -08271941 14 n 01 foreign_legion 0 002 @ 08271801 n 0000 ~ 08272086 n 0000 | a military unit composed of foreign volunteers who serve the state -08272086 14 n 01 French_Foreign_Legion 0 001 @ 08271941 n 0000 | a former foreign legion in the French army that was used for military duties outside of France -08272248 14 n 01 legion 2 001 @ 08049401 n 0000 | association of ex-servicemen; "the American Legion" -08272352 14 n 01 echelon 0 002 @ 08198398 n 0000 ;c 08199025 n 0000 | a body of troops arranged in a line -08272460 14 n 01 phalanx 0 002 @ 08198398 n 0000 ;c 08199025 n 0000 | a body of troops in close array -08272564 14 n 01 phalanx 1 001 @ 08182379 n 0000 | any closely ranked crowd of people -08272652 14 n 01 score 0 001 @ 07996689 n 0000 | a set of twenty members; "a score were sent out but only one returned" -08272774 14 n 01 threescore 0 001 @ 07996689 n 0000 | a set with 3 times 20 members -08272860 14 n 01 synset 0 002 @ 07996689 n 0000 ;c 06639204 n 0000 | a set of one or more synonyms -08272961 14 n 01 combination 1 004 @ 08189659 n 0000 + 01331244 a 0103 + 02377938 v 0101 + 01385170 v 0102 | a group of people (often temporary) having a common purpose; "they were a winning combination" -08273167 14 n 01 crew 1 008 @ 08189659 n 0000 #m 08219059 n 0000 + 01089614 v 0101 ~ 08273406 n 0000 ~ 08273645 n 0000 %m 09964202 n 0000 %m 09977178 n 0000 %m 10669357 n 0000 | the men and women who man a vehicle (ship, aircraft, etc.) -08273406 14 n 02 aircrew 0 air_crew 0 003 @ 08273167 n 0000 ~ 08273531 n 0000 %m 09780676 n 0000 | the crew of an aircraft -08273531 14 n 02 bomber_crew 0 bomber_aircrew 0 002 @ 08273406 n 0000 %m 09864252 n 0000 | the crew of a bomber -08273645 14 n 01 merchant_marine 0 001 @ 08273167 n 0000 | the crew of a merchant vessel -08273736 14 n 01 crew 2 002 @ 08208560 n 0000 + 01089614 v 0101 | the team of men manning a racing shell -08273843 14 n 04 crowd 1 crew 3 gang 2 bunch 1 002 @ 07975026 n 0000 + 01089737 v 0301 | an informal body of friends; "he still hangs out with the same crowd" -08274004 14 n 01 shock_troops 0 001 @ 08274354 n 0000 | soldiers who are specially trained and armed to lead an assault -08274126 14 n 04 SWAT_team 0 SWAT_squad 0 Special_Weapons_and_Tactics_team 0 Special_Weapons_and_Tactics_squad 0 001 @ 08080947 n 0000 | a squad of policemen who have been trained to deal with violent and dangerous situations -08274354 14 n 01 troop 0 002 @ 08190754 n 0000 ~ 08274004 n 0000 | a group of soldiers -08274443 14 n 01 troop 3 002 @ 08190754 n 0000 #m 08389710 n 0000 | a cavalry unit corresponding to an infantry company -08274565 14 n 02 troop 1 flock 3 004 @ 08182379 n 0000 + 02025009 v 0203 + 02025353 v 0201 + 01919898 v 0101 | an orderly crowd; "a troop of children" -08274718 14 n 03 troop 2 scout_troop 0 scout_group 0 001 @ 08189659 n 0000 | a unit of Girl or Boy Scouts -08274826 14 n 01 outfit 0 001 @ 08189659 n 0000 | any cohesive unit such as a military company -08274923 14 n 02 academia 0 academe 0 005 @ 07965937 n 0000 + 02599939 a 0101 %p 08278169 n 0000 %p 08286163 n 0000 -c 02397460 v 0000 | the academic world -08275081 14 n 01 Grub_Street 0 002 @ 07965937 n 0000 %m 10154740 n 0000 | the world of literary hacks -08275185 14 n 01 school 2 008 @ 07965085 n 0000 ~ 08275497 n 0000 ~ 08275704 n 0000 ~ 08275843 n 0000 ~ 08276053 n 0000 ~ 08465312 n 0000 ~ 08468721 n 0000 ~ 08470034 n 0000 | a body of creative artists or writers or thinkers linked by a similar style or by similar teachers; "the Venetian school of painting" -08275497 14 n 02 Ashcan_School 0 Eight 0 002 @ 08275185 n 0000 @ 08466643 n 0000 | a group of United States painters founded in 1907 and noted for their realistic depictions of sordid aspects of city life -08275704 14 n 01 deconstructivism 0 001 @ 08275185 n 0000 | a school of architecture based on the philosophical theory of deconstruction -08275843 14 n 01 historical_school 0 001 @ 08275185 n 0000 | a school of 19th century German economists and legal philosophers who tried to explain modern economic systems in evolutionary or historical terms -08276053 14 n 01 pointillism 0 003 @ 08275185 n 0000 @ 08466643 n 0000 + 01789734 a 0102 | a school of painters who used a technique of painting with tiny dots of pure colors that would blend in the viewer's eye; developed by Georges Seurat and his followers late in 19th century France -08276342 14 n 01 educational_institution 0 006 @ 08053576 n 0000 ~ 08276539 n 0000 ~ 08276720 n 0000 ~ 08277393 n 0000 ~ 08278324 n 0000 ~ 08286569 n 0000 | an institution dedicated to education -08276539 14 n 01 preschool 0 004 @ 08276342 n 0000 ~ 08412136 n 0000 ~ 08412265 n 0000 ~ 08412362 n 0000 | an educational institution for children too young for elementary school -08276720 14 n 01 school 0 032 @ 08276342 n 0000 + 02792903 a 0101 + 02387910 v 0101 ~ 08277805 n 0000 ~ 08278589 n 0000 ~ 08278707 n 0000 ~ 08278822 n 0000 ~ 08278924 n 0000 ~ 08279184 n 0000 ~ 08282109 n 0000 ~ 08282257 n 0000 ~ 08282696 n 0000 ~ 08282950 n 0000 ~ 08283757 n 0000 ~ 08284054 n 0000 ~ 08284370 n 0000 ~ 08284481 n 0000 ~ 08284847 n 0000 ~ 08285246 n 0000 ~ 08286039 n 0000 ~ 08287335 n 0000 ~ 08287436 n 0000 %m 08287586 n 0000 ~ 08402339 n 0000 ~ 08410282 n 0000 ~ 08411170 n 0000 ~ 08411483 n 0000 ~ 08411849 n 0000 ~ 08411970 n 0000 ~ 08412492 n 0000 ~ 08412749 n 0000 %m 10560352 n 0000 | an educational institution; "the school was founded in 1900" -08277393 14 n 01 school 3 003 @ 08276342 n 0000 + 02792903 a 0101 + 02387910 v 0101 | an educational institution's faculty and students; "the school keeps parents informed"; "the whole school turned out for the game" -08277612 14 n 01 junior_school 0 001 @ 08412749 n 0000 | British school for children aged 7-11 -08277709 14 n 01 infant_school 0 001 @ 08412749 n 0000 | British school for children aged 5-7 -08277805 14 n 01 academy 1 009 @ 08276720 n 0000 + 09759311 n 0101 + 09759069 n 0101 ~ 08278032 n 0000 ~ 08279424 n 0000 ~ 08279524 n 0000 ~ 08279665 n 0000 ~ 08279800 n 0000 ~ 08279943 n 0000 | a school for special training -08278032 14 n 02 yeshiva 0 yeshivah 0 001 @ 08277805 n 0000 | an academy for the advanced study of Jewish texts (primarily the Talmud) -08278169 14 n 01 college 0 004 @ 07965085 n 0000 #m 08278324 n 0000 #p 08274923 n 0000 + 02699524 a 0102 | the body of faculty and students of a college -08278324 14 n 01 college 1 007 @ 08276342 n 0000 #m 08286569 n 0000 + 02699524 a 0102 %m 08278169 n 0000 ~ 08281682 n 0000 ~ 08282364 n 0000 ~ 08285896 n 0000 | an institution of higher education created to educate and grant degrees; often a part of a university -08278589 14 n 01 correspondence_school 0 001 @ 08276720 n 0000 | a school that teaches nonresident students by mail -08278707 14 n 01 crammer 0 002 @ 08276720 n 0000 + 00407146 v 0101 | a special school where students are crammed -08278822 14 n 01 dancing_school 0 001 @ 08276720 n 0000 | a school in which students learn to dance -08278924 14 n 01 direct-grant_school 0 002 @ 08276720 n 0000 ;r 08860123 n 0000 | formerly a school that charged tuition fees and also received government grants in return for admitting certain non-paying students who were nominated by the local authorities -08279184 14 n 01 driving_school 0 001 @ 08276720 n 0000 | a school where people are taught to drive automobiles -08279298 14 n 01 academy 0 003 @ 08284481 n 0000 + 09759311 n 0101 + 09759069 n 0101 | a secondary school (usually private) -08279424 14 n 01 police_academy 0 001 @ 08277805 n 0000 | an academy for training police officers -08279524 14 n 01 military_academy 0 003 @ 08277805 n 0000 ;c 08199025 n 0000 ~ 08395465 n 0000 | an academy for training military officers -08279665 14 n 01 naval_academy 0 003 @ 08277805 n 0000 ;c 08199025 n 0000 ~ 08194074 n 0000 | an academy for training naval officers -08279800 14 n 01 air_force_academy 0 003 @ 08277805 n 0000 ;c 08199025 n 0000 ~ 08194927 n 0000 | an academy for training air force officers -08279943 14 n 01 Plato's_Academy 0 001 @ 08277805 n 0000 | a school established by Plato in ancient Athens; "Plato's Academy continued for several hundred years after Plato died" -08280124 14 n 02 academy 2 honorary_society 0 012 @ 08053576 n 0000 + 02599939 a 0101 + 09759501 n 0101 + 09759311 n 0101 + 09759069 n 0101 ~ 08280462 n 0000 ~ 08280649 n 0000 ~ 08280813 n 0000 ~ 08281029 n 0000 ~ 08281205 n 0000 ~ 08281409 n 0000 %m 09759501 n 0000 | an institution for the advancement of art or science or literature -08280462 14 n 01 Academy_of_Motion_Picture_Arts_and_Sciences 0 001 @ 08280124 n 0000 | an academy that gives annual awards for achievements in motion picture production and performance -08280649 14 n 01 Academy_of_Television_Arts_and_Sciences 0 001 @ 08280124 n 0000 | an academy that gives annual awards for outstanding achievements in television -08280813 14 n 01 French_Academy 0 001 @ 08280124 n 0000 | an honorary group of French writers and thinkers supported by the French government; "the French Academy sets standards for the use of the French language" -08281029 14 n 01 National_Academy_of_Sciences 0 001 @ 08280124 n 0000 | an honorary American society of scientists created by President Lincoln during the American Civil War -08281205 14 n 02 Royal_Academy 0 Royal_Academy_of_Arts 0 001 @ 08280124 n 0000 | an honorary academy in London (founded in 1768) intended to cultivate painting and sculpture and architecture in Britain -08281409 14 n 02 Royal_Society 0 Royal_Society_of_London_for_Improving_Natural_Knowledge 0 001 @ 08280124 n 0000 | an honorary English society (formalized in 1660 and given a royal charter by Charles II in 1662) through which the British government has supported science -08281682 14 n 01 business_college 0 001 @ 08278324 n 0000 | a school for teaching the clerical aspects of business and commerce -08281812 14 n 01 business_school 0 001 @ 08282696 n 0000 | a graduate school offering study leading to a degree of Master in Business Administration -08281963 14 n 02 dental_school 0 school_of_dentistry 0 001 @ 08282696 n 0000 | a graduate school offering study leading to degrees in dentistry -08282109 14 n 01 finishing_school 0 001 @ 08276720 n 0000 | a private school for girls that emphasizes training in cultural and social activities -08282257 14 n 01 flying_school 0 001 @ 08276720 n 0000 | a school for teaching students to fly airplanes -08282364 14 n 01 junior_college 0 003 @ 08278324 n 0000 ~ 08282542 n 0000 ~ 08412620 n 0000 | a college that offers only the first two years terminating in an associate degree -08282542 14 n 01 community_college 0 001 @ 08282364 n 0000 | a nonresidential junior college offering a curriculum fitted to the needs of the community -08282696 14 n 02 graduate_school 0 grad_school 0 006 @ 08276720 n 0000 #m 08286163 n 0000 ~ 08281812 n 0000 ~ 08281963 n 0000 ~ 08283051 n 0000 ~ 08283507 n 0000 | a school in a university offering study leading to degrees beyond the bachelor's degree -08282950 14 n 01 language_school 0 001 @ 08276720 n 0000 | a school for teaching foreign languages -08283051 14 n 02 law_school 0 school_of_law 0 001 @ 08282696 n 0000 | a graduate school offering study leading to a law degree -08283180 14 n 02 madrasa 0 madrasah 0 003 @ 08284054 n 0000 ;r 08848731 n 0000 ;r 08975902 n 0000 | Muslim schools in Bangladesh and Pakistan; "the Pakistan government decided to close down madrasas that provided military training for their students"; "many madrasas in Bangladesh are supported with money from Saudi Arabia" -08283507 14 n 02 medical_school 0 school_of_medicine 0 001 @ 08282696 n 0000 | a graduate school offering study leading to a medical degree -08283649 14 n 02 music_school 0 school_of_music 0 001 @ 08287436 n 0000 | a school for the study of music -08283757 14 n 02 nursing_school 0 school_of_nursing 0 001 @ 08276720 n 0000 | a school for training nurses -08283866 14 n 02 pesantran 0 pesantren 0 002 @ 08284054 n 0000 ;r 08907606 n 0000 | a Muslim school in Indonesia operated by religious leaders; produces young militants skilled in jihad -08284054 14 n 01 religious_school 0 005 @ 08276720 n 0000 ~ 08283180 n 0000 ~ 08283866 n 0000 ~ 08284221 n 0000 ~ 08285109 n 0000 | a school run by a religious body -08284221 14 n 02 church_school 0 parochial_school 0 002 @ 08284054 n 0000 ~ 08411369 n 0000 | a private religious school run by a church or parish -08284370 14 n 01 riding_school 0 001 @ 08276720 n 0000 | a school where horsemanship is taught and practiced -08284481 14 n 05 secondary_school 0 lyceum 0 lycee 0 Gymnasium 0 middle_school 0 010 @ 08276720 n 0000 ~ 08279298 n 0000 ~ 08285594 n 0000 ~ 08409617 n 0000 ~ 08409835 n 0000 ~ 08409969 n 0000 ~ 08410688 n 0000 ~ 08412958 n 0000 ~ 08413092 n 0000 ~ 08413248 n 0000 | a school for students intermediate between elementary school and college; usually grades 9 to 12 -08284847 14 n 01 secretarial_school 0 001 @ 08276720 n 0000 | a school where secretarial skills (typing and shorthand and filing etc) are taught -08284994 14 n 01 seminary 1 002 @ 08411170 n 0000 + 10578162 n 0102 | a private place of education for the young -08285109 14 n 01 seminary 0 002 @ 08284054 n 0000 + 10578162 n 0102 | a theological school for training ministers or priests or rabbis -08285246 14 n 02 technical_school 0 tech 0 002 @ 08276720 n 0000 ~ 08285407 n 0000 | a school teaching mechanical and industrial arts and the applied sciences -08285407 14 n 03 polytechnic_institute 0 polytechnic 0 engineering_school 0 001 @ 08285246 n 0000 | a technical school offering instruction in many industrial arts and applied sciences -08285594 14 n 02 trade_school 0 vocational_school 0 001 @ 08284481 n 0000 | a secondary school teaching the skilled trades -08285719 14 n 01 trainband 0 003 @ 08214272 n 0000 @ 08390511 n 0000 %m 10722137 n 0000 | a company of militia in England or America from the 16th century to the 18th century -08285896 14 n 01 training_college 0 002 @ 08278324 n 0000 ;r 08860123 n 0000 | a school providing training for a special field or profession -08286039 14 n 01 training_school 1 001 @ 08276720 n 0000 | a school providing practical vocational and technical training -08286163 14 n 01 university 0 005 @ 07965085 n 0000 #p 08274923 n 0000 %m 08282696 n 0000 ~ 08286342 n 0000 ~ 08287182 n 0000 | the body of faculty and students at a university -08286342 14 n 01 gown 0 001 @ 08286163 n 0000 | the members of a university as distinguished from the other residents of the town in which the university is located; "the relations between town and gown are always sensitive" -08286569 14 n 01 university 1 004 @ 08276342 n 0000 %m 08278324 n 0000 ~ 08286801 n 0000 ~ 08286946 n 0000 | a large and diverse institution of higher learning created to educate for life and for a profession and to grant degrees -08286801 14 n 01 multiversity 0 001 @ 08286569 n 0000 | a university system having several separate campuses and colleges and research centers -08286946 14 n 01 Open_University 0 002 @ 08286569 n 0000 ;r 08860123 n 0000 | a British university that is open to people without formal academic qualifications and where teaching is by correspondence or broadcasting or summer school -08287182 14 n 01 varsity 0 001 @ 08286163 n 0000 | a British abbreviation of `university'; usually refers to Oxford University or Cambridge University -08287335 14 n 01 veterinary_school 0 001 @ 08276720 n 0000 | a school teaching veterinary medicine -08287436 14 n 01 conservatory 0 002 @ 08276720 n 0000 ~ 08283649 n 0000 | the faculty and students of a school specializing in one of the fine arts -08287586 14 n 02 staff 0 faculty 0 005 @ 07965085 n 0000 #m 08276720 n 0000 + 01095739 v 0101 + 01088749 v 0101 %m 10480730 n 0000 | the body of teachers and administrators at a school; "the dean addressed the letter to the entire staff of the university" -08287844 14 n 03 culture 0 civilization 1 civilisation 1 011 @ 07966140 n 0000 ;c 06144081 n 0000 + 00159880 v 0101 %p 08288753 n 0000 ~ 08290156 n 0000 ~ 08290435 n 0000 ~ 08290616 n 0000 ~ 08290763 n 0000 ~ 08291157 n 0000 ~ 08291338 n 0000 ~ 08292051 n 0000 | a particular society at a particular time and place; "early Mayan civilization" -08288189 14 n 01 open_society 0 001 @ 07966140 n 0000 | a society that allows its members considerable freedom (as in a democracy); "America's open society has made it an easy target for terrorists" -08288390 14 n 01 tribal_society 0 002 @ 07966140 n 0000 ~ 08288518 n 0000 | a society with the social organization of a tribe -08288518 14 n 02 hunting_and_gathering_tribe 0 hunting_and_gathering_society 0 002 @ 08288390 n 0000 %m 10193419 n 0000 | group that supports itself by hunting and fishing and by gathering wild fruits and vegetables; usually nomadic -08288753 14 n 01 subculture 0 005 @ 07950920 n 0000 #p 08287844 n 0000 ~ 08288977 n 0000 ~ 08289089 n 0000 ~ 08292298 n 0000 | a social group within a national culture that has distinctive patterns of behavior and beliefs -08288977 14 n 01 suburbia 0 001 @ 08288753 n 0000 | suburbanites considered as a cultural class or subculture -08289089 14 n 01 youth_culture 0 004 @ 08288753 n 0000 @ 08369406 n 0000 ~ 08289282 n 0000 ~ 08289449 n 0000 | young adults (a generational unit) considered as a cultural class or subculture -08289282 14 n 01 hip-hop 0 001 @ 08289089 n 0000 | an urban youth culture associated with rap music and the fashions of African-American residents of the inner city -08289449 14 n 01 youth_subculture 0 009 @ 08289089 n 0000 ~ 08289841 n 0000 ~ 08292418 n 0000 ~ 08369615 n 0000 ~ 08370204 n 0000 ~ 08370505 n 0000 ~ 08370878 n 0000 ~ 08371200 n 0000 ~ 08371574 n 0000 | a minority youth culture whose distinctiveness depended largely on the social class and ethnic background of its members; often characterized by its adoption of a particular music genre -08289841 14 n 03 flower_people 0 hippies 0 hipsters 0 002 @ 08289449 n 0000 %m 10176475 n 0000 | a youth subculture (mostly from the middle class) originating in San Francisco in the 1960s; advocated universal love and peace and communes and long hair and soft drugs; favored acid rock and progressive rock music -08290156 14 n 03 Aegean_civilization 0 Aegean_civilisation 0 Aegean_culture 0 002 @ 08287844 n 0000 ~ 08290928 n 0000 | the prehistoric civilization on the islands in the Aegean sea and the surrounding countries; "by 800 BC the entire Aegean had adopted this style of pottery" -08290435 14 n 03 Helladic_civilization 0 Helladic_civilisation 0 Helladic_culture 0 001 @ 08287844 n 0000 | the bronze-age culture of mainland Greece that flourished 2500-1100 BC -08290616 14 n 01 Indus_civilization 0 001 @ 08287844 n 0000 | the bronze-age culture of the Indus valley that flourished from about 2600-1750 BC -08290763 14 n 03 Minoan_civilization 0 Minoan_civilisation 0 Minoan_culture 0 001 @ 08287844 n 0000 | the bronze-age culture of Crete that flourished 3000-1100 BC -08290928 14 n 04 Cycladic_civilization 0 Cycladic_civilisation 0 Cycladic_culture 0 Cyclades 0 001 @ 08290156 n 0000 | the Bronze Age civilization on the Cyclades islands in the southern Aegean Sea that flourished 3000-1100 BC -08291157 14 n 03 Mycenaean_civilization 0 Mycenaean_civilisation 0 Mycenaean_culture 0 001 @ 08287844 n 0000 | the late bronze-age culture of Mycenae that flourished 1400-1100 BC -08291338 14 n 03 Paleo-American_culture 0 Paleo-Amerind_culture 0 Paleo-Indian_culture 0 003 @ 08287844 n 0000 ~ 08291582 n 0000 ~ 08291813 n 0000 | the prehistoric culture of the earliest human inhabitants of North America and South America -08291582 14 n 01 Clovis_culture 0 002 @ 08291338 n 0000 ;c 06144081 n 0000 | the Paleo-American culture of Central America and North America; distinguished chiefly by sharp fluted projectile points made of obsidian or chalcedony -08291813 14 n 01 Folsom_culture 0 002 @ 08291338 n 0000 ;c 06144081 n 0000 | the Paleo-American culture of Central America and North America; distinguished chiefly by a thin finely made flint projectile point having the shape of a leaf -08292051 14 n 02 Western_culture 0 Western_civilization 0 001 @ 08287844 n 0000 | the modern culture of western Europe and North America; "when Ghandi was asked what he thought of Western civilization he said he thought it would be a good idea" -08292298 14 n 01 psychedelia 0 002 @ 08288753 n 0000 + 01777822 a 0101 | the subculture of users of psychedelic drugs -08292418 14 n 02 Rastafari 0 Rastas 0 004 @ 08289449 n 0000 @ 08151490 n 0000 ;c 08753933 n 0000 %m 09685922 n 0000 | (Jamaica) a Black youth subculture and religious movement that arose in the ghettos of Kingston, Jamaica, in the 1950s; males grow hair in long dreadlocks and wear woolen caps; use marijuana and listen to reggae music -08292756 14 n 01 fleet 0 009 @ 07951464 n 0000 #m 08191701 n 0000 ~ 03367663 n 0000 ~ 03367740 n 0000 %m 03466600 n 0000 %m 04552696 n 0000 ~ 08293003 n 0000 ~ 08293238 n 0000 ~ 08477511 n 0000 | a group of warships organized as a tactical unit -08293003 14 n 01 armada 0 002 @ 08292756 n 0000 ~i 08293088 n 0000 | a large fleet -08293088 14 n 02 Spanish_Armada 0 Invincible_Armada 0 001 @i 08293003 n 0000 | the great fleet sent from Spain against England by Philip II in 1588 -08293238 14 n 01 battle_fleet 0 001 @ 08292756 n 0000 | a fleet of warships prepared for battle -08293336 14 n 01 fleet 1 003 @ 04310347 n 0000 %m 04194289 n 0000 ~ 08386280 n 0000 | a group of steamships operating together under the same ownership -08293490 14 n 01 fleet 2 005 @ 07951464 n 0000 #p 02925901 n 0000 %m 02930766 n 0000 %m 02924116 n 0000 ~ 08293684 n 0000 | group of motor vehicles operating together under the same ownership -08293684 14 n 01 motor_pool 0 001 @ 08293490 n 0000 | a fleet of military vehicles controlled by a single agency and available for use as needed -08293831 14 n 01 fleet 3 003 @ 07951464 n 0000 #p 02690081 n 0000 %m 02686568 n 0000 | group of aircraft operating together under the same ownership -08293982 14 n 04 alliance 0 coalition 0 alignment 0 alinement 0 015 @ 08008335 n 0000 + 00733632 v 0301 ! 08294395 n 0301 ~ 07964495 n 0000 ~ 08170978 n 0000 ~ 08171094 n 0000 ~ 08171210 n 0000 ~ 08171415 n 0000 ~ 08171592 n 0000 ~ 08171792 n 0000 ~ 08171992 n 0000 ~ 08294581 n 0000 ~ 08294696 n 0000 %m 08305942 n 0000 ~ 08476425 n 0000 | an organization of people (or countries) involved in a pact or treaty -08294395 14 n 02 nonalignment 0 nonalinement 0 002 @ 07950920 n 0000 ! 08293982 n 0103 | people (or countries) who are not aligned with other people (or countries) in a pact or treaty -08294581 14 n 01 popular_front 0 001 @ 08293982 n 0000 | a leftist coalition organized against a common opponent -08294696 14 n 05 world_organization 0 world_organisation 0 international_organization 0 international_organisation 0 global_organization 0 013 @ 08293982 n 0000 ~ 08172103 n 0000 ~ 08173515 n 0000 ~ 08174398 n 0000 ~ 08175875 n 0000 ~ 08176077 n 0000 ~ 08177030 n 0000 ~ 08195323 n 0000 ~ 08224274 n 0000 ~ 08295138 n 0000 ~ 08295580 n 0000 ~ 08375154 n 0000 ~ 08486971 n 0000 | an international alliance involving many different countries -08295138 14 n 02 Commonwealth_of_Independent_States 0 CIS 0 013 @ 08294696 n 0000 %m 09006413 n 0000 %m 09011151 n 0000 %m 09014586 n 0000 %m 09014979 n 0000 %m 09017526 n 0000 %m 09018162 n 0000 %m 09018848 n 0000 %m 09019726 n 0000 %m 09020440 n 0000 %m 09020961 n 0000 %m 09021503 n 0000 %m 09022265 n 0000 | an alliance made up of states that had been Soviet Socialist Republics in the Soviet Union prior to its dissolution in Dec 1991 -08295580 14 n 02 United_Nations 0 UN 0 009 @ 08294696 n 0000 %m 08296059 n 0000 %m 08296196 n 0000 %m 08296332 n 0000 %m 08296500 n 0000 %m 08296720 n 0000 %m 08296911 n 0000 %m 08299307 n 0000 %m 08299493 n 0000 | an organization of independent states formed in 1945 to promote international peace and security -08295894 14 n 01 deliberative_assembly 0 002 @ 08163792 n 0000 ~ 08296059 n 0000 | an assembly of people for the purpose of unhurried consideration and discussion -08296059 14 n 01 General_Assembly 1 002 @ 08295894 n 0000 #m 08295580 n 0000 | the supreme deliberative assembly of the United Nations -08296196 14 n 01 United_Nations_Secretariat 0 002 @ 08324274 n 0000 #m 08295580 n 0000 | the administrative arm of the United Nations -08296332 14 n 02 Security_Council 0 SC 0 002 @ 08310949 n 0000 #m 08295580 n 0000 | a permanent council of the United Nations; responsible for preserving world peace -08296500 14 n 02 Trusteeship_Council 0 TC 0 002 @ 08310949 n 0000 #m 08295580 n 0000 | a permanent council of the United Nations that commissions a country (or countries) to undertake the administration of a territory -08296720 14 n 02 Economic_and_Social_Council 0 ECOSOC 0 002 @ 08310949 n 0000 #m 08295580 n 0000 | a permanent council of the United Nations; responsible for economic and social conditions -08296911 14 n 02 Economic_and_Social_Council_commission 0 ECOSOC_commission 0 012 @ 08324514 n 0000 #m 08295580 n 0000 ~ 08297284 n 0000 ~ 08297464 n 0000 ~ 08297646 n 0000 ~ 08297863 n 0000 ~ 08298074 n 0000 ~ 08298319 n 0000 ~ 08298521 n 0000 ~ 08298737 n 0000 ~ 08298918 n 0000 ~ 08299107 n 0000 | a commission of the Economic and Social Council of the United Nations -08297284 14 n 01 Commission_on_Human_Rights 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with human rights -08297464 14 n 01 Commission_on_Narcotic_Drugs 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with drug traffic -08297646 14 n 01 Commission_on_the_Status_of_Women 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with the status of women in different societies -08297863 14 n 01 Economic_Commission_for_Africa 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with economic development of African nations -08298074 14 n 01 Economic_Commission_for_Asia_and_the_Far_East 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with economic development of countries in Asia and the Far East -08298319 14 n 01 Economic_Commission_for_Europe 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Europe -08298521 14 n 01 Economic_Commission_for_Latin_America 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with economic development in Latin America -08298737 14 n 01 Population_Commission 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with population control -08298918 14 n 01 Social_Development_Commission 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with social development -08299107 14 n 01 Statistical_Commission 0 001 @ 08296911 n 0000 | the commission of the Economic and Social Council of the United Nations that is concerned with statistical data from member nations -08299307 14 n 02 International_Court_of_Justice 0 World_Court 0 002 @ 08329453 n 0000 #m 08295580 n 0000 | a court established to settle disputes between members of the United Nations -08299493 14 n 02 United_Nations_agency 0 UN_agency 0 018 @ 08077292 n 0000 #m 08295580 n 0000 ~ 08299911 n 0000 ~ 08300190 n 0000 ~ 08300429 n 0000 ~ 08300641 n 0000 ~ 08300783 n 0000 ~ 08301005 n 0000 ~ 08301155 n 0000 ~ 08301307 n 0000 ~ 08301525 n 0000 ~ 08301709 n 0000 ~ 08301871 n 0000 ~ 08302052 n 0000 ~ 08302257 n 0000 ~ 08302468 n 0000 ~ 08302724 n 0000 ~ 08302919 n 0000 | an agency of the United Nations -08299911 14 n 03 United_Nations_Children's_Fund 0 United_Nations_International_Children's_Emergency_Fund 0 UNICEF 0 001 @ 08299493 n 0000 | an agency of the United Nations responsible for programs to aid education and the health of children and mothers in developing countries -08300190 14 n 03 Food_and_Agriculture_Organization 0 Food_and_Agriculture_Organization_of_the_United_Nations 0 FAO 0 001 @ 08299493 n 0000 | the United Nations agency concerned with the international organization of food and agriculture -08300429 14 n 02 General_Agreement_on_Tariffs_and_Trade 0 GATT 0 001 @ 08299493 n 0000 | a United Nations agency created by a multinational treaty to promote trade by the reduction of tariffs and import quotas -08300641 14 n 02 International_Atomic_Energy_Agency 0 IAEA 0 001 @ 08299493 n 0000 | the United Nations agency concerned with atomic energy -08300783 14 n 03 International_Bank_for_Reconstruction_and_Development 0 World_Bank 0 IBRD 0 001 @ 08299493 n 0000 | a United Nations agency created to assist developing nations by loans guaranteed by member governments -08301005 14 n 02 International_Civil_Aviation_Organization 0 ICAO 0 001 @ 08299493 n 0000 | the United Nations agency concerned with civil aviation -08301155 14 n 02 International_Development_Association 0 IDA 0 001 @ 08299493 n 0000 | an agency of the United Nations affiliated with the World Bank -08301307 14 n 02 International_Finance_Corporation 0 IFC 0 001 @ 08299493 n 0000 | a United Nations agency that invests directly in companies and guarantees loans to private investors; affiliated with the World Bank -08301525 14 n 03 International_Labor_Organization 0 International_Labour_Organization 0 ILO 0 001 @ 08299493 n 0000 | the United Nations agency concerned with the interests of labor -08301709 14 n 02 International_Maritime_Organization 0 IMO 0 001 @ 08299493 n 0000 | the United Nations agency concerned with international maritime activities -08301871 14 n 02 International_Monetary_Fund 0 IMF 0 001 @ 08299493 n 0000 | a United Nations agency to promote trade by increasing the exchange stability of the major currencies -08302052 14 n 02 United_Nations_Educational_Scientific_and_Cultural_Organization 0 UNESCO 0 001 @ 08299493 n 0000 | an agency of the United Nations that promotes education and communication and the arts -08302257 14 n 02 United_Nations_Office_for_Drug_Control_and_Crime_Prevention 0 DCCP 0 002 @ 08299493 n 0000 %m 08302468 n 0000 | an agency of the United Nations that promotes drug control and crime prevention -08302468 14 n 02 United_Nations_Crime_Prevention_and_Criminal_Justice 0 Centre_for_International_Crime_Prevention 0 002 @ 08299493 n 0000 #m 08302257 n 0000 | the United Nations office responsible for crime prevention and criminal justice and law reform -08302724 14 n 02 World_Health_Organization 0 WHO 0 001 @ 08299493 n 0000 | a United Nations agency to coordinate international health activities and to help governments improve health services -08302919 14 n 02 World_Meteorological_Organization 0 WMO 0 001 @ 08299493 n 0000 | the United Nations agency concerned with the international collection of meteorological data -08303097 14 n 03 sterling_area 0 sterling_bloc 0 scheduled_territories 0 001 @ 08171094 n 0000 | the group of countries whose currencies are tied to the British pound sterling -08303275 14 n 03 confederation 0 confederacy 0 federation 0 007 @ 08304895 n 0000 + 00369194 v 0301 + 02434541 v 0201 + 02470685 v 0102 ~ 08303692 n 0000 ~ 08303862 n 0000 ~ 08304135 n 0000 | a union of political organizations -08303504 14 n 01 federation 1 005 @ 08008335 n 0000 + 00369194 v 0101 ~ 08233913 n 0000 ~ 08234103 n 0000 ~ 08234298 n 0000 | an organization formed by merging several groups or parties -08303692 14 n 01 nation 2 003 @ 08303275 n 0000 ;r 09044862 n 0000 ~ 08168531 n 0000 | a federation of tribes (especially Native American tribes); "the Shawnee nation" -08303862 14 n 01 Creek_Confederacy 0 004 @ 08303275 n 0000 %m 09646220 n 0000 %m 09656378 n 0000 %m 09662325 n 0000 | a North American Indian confederacy organized by the Muskogee that dominated the southeastern part of the United States before being removed to Oklahoma -08304135 14 n 01 Hanseatic_League 0 015 @ 08303275 n 0000 %m 08765315 n 0000 %m 08770013 n 0000 %m 08770718 n 0000 %m 08772307 n 0000 %m 08773098 n 0000 %m 08773336 n 0000 %m 08773679 n 0000 %m 08773880 n 0000 %m 08774704 n 0000 %m 08851034 n 0000 %m 08983742 n 0000 %m 09012735 n 0000 %m 09013353 n 0000 %m 09014066 n 0000 | a commercial and defensive confederation of free cities in northern Germany and surrounding areas; formed in 1241 and most influential in the 14th century when it included over 100 towns and functioned as an independent political power; the last official assembly was held in 1669 -08304744 14 n 01 enosis 0 002 @ 08304895 n 0000 ;r 08756884 n 0000 | the union of Greece and Cyprus (which is the goal of a group of Greek Cypriots) -08304895 14 n 01 union 2 005 @ 08359949 n 0000 ~ 08303275 n 0000 ~ 08304744 n 0000 ~ 08305114 n 0000 ~ 08305568 n 0000 | a political unit formed from previously independent people or organizations; "the Soviet Union" -08305114 14 n 01 league 0 003 @ 08304895 n 0000 + 00369064 v 0101 ~ 08305277 n 0000 | an association of states or organizations or individuals for common action -08305277 14 n 04 Iroquois_League 0 League_of_Iroquois 0 Five_Nations 0 Six_Nations 0 001 @ 08305114 n 0000 | a league of Iroquois tribes including originally the Mohawk, Oneida, Onondaga, Cayuga and Seneca (the Five Nations); after 1722 they were joined by the Tuscarora (the Six Nations) -08305568 14 n 01 customs_union 0 002 @ 08304895 n 0000 ~ 08305766 n 0000 | an association of nations to promote free trade within the union and set common tariffs for nations that are not members -08305766 14 n 01 Benelux 0 004 @ 08305568 n 0000 %m 08849753 n 0000 %m 08949093 n 0000 %m 08960987 n 0000 | a customs union comprising Belgium and Netherlands and Luxembourg -08305942 14 n 01 ally 0 003 @ 08168978 n 0000 #m 08293982 n 0000 + 02430191 v 0101 | a friendly nation -08306047 14 n 01 caste 1 001 @ 07974025 n 0000 | a social class separated from others by distinctions of hereditary rank or profession or wealth -08306194 14 n 01 caste 2 003 @ 07974025 n 0000 ;c 06236802 n 0000 ~ 08306371 n 0000 | (Hinduism) a hereditary social class among Hindus; stratified according to ritual purity -08306371 14 n 01 jati 0 003 @ 08306194 n 0000 #m 08306665 n 0000 ;c 06236802 n 0000 | (Hinduism) a Hindu caste or distinctive social group of which there are thousands throughout India; a special characteristic is often the exclusive occupation of its male members (such as barber or potter) -08306665 14 n 01 varna 0 007 @ 00031264 n 0000 ;c 06236802 n 0000 %m 08306371 n 0000 ~ 08306959 n 0000 ~ 08307145 n 0000 ~ 08307267 n 0000 ~ 08307440 n 0000 | (Hinduism) the name for the original social division of Vedic people into four groups (which are subdivided into thousands of jatis) -08306959 14 n 02 brahman 0 brahmin 0 004 @ 08306665 n 0000 + 02669806 a 0201 + 02669806 a 0202 %m 09872557 n 0000 | the highest of the four varnas: the priestly or sacerdotal category -08307145 14 n 01 rajanya 0 001 @ 08306665 n 0000 | the second highest of the four varnas: the noble or warrior category -08307267 14 n 01 vaisya 0 002 @ 08306665 n 0000 %m 10744844 n 0000 | the third of the four varnas: the commoners or yeoman farmers or mercantile and professional category -08307440 14 n 02 sudra 0 shudra 0 002 @ 08306665 n 0000 %m 10594284 n 0000 | the lowest of the four varnas: the servants and workers of low status -08307589 14 n 02 meeting 0 group_meeting 0 016 @ 07975026 n 0000 + 02023107 v 0101 ~ 08308039 n 0000 ~ 08308156 n 0000 ~ 08308313 n 0000 ~ 08308410 n 0000 ~ 08308497 n 0000 ~ 08308800 n 0000 ~ 08309086 n 0000 ~ 08309409 n 0000 ~ 08309754 n 0000 ~ 08309854 n 0000 ~ 08310034 n 0000 ~ 08310168 n 0000 ~ 08312359 n 0000 ~ 08312462 n 0000 | a formally arranged gathering; "next year the meeting will be in Chicago"; "the meeting elected a chairperson" -08308039 14 n 02 board_meeting 0 committee_meeting 0 001 @ 08307589 n 0000 | a meeting for administrative purposes -08308156 14 n 01 camp_meeting 0 001 @ 08307589 n 0000 | religious (usually evangelistic) meeting held in a large tent or outdoors and lasting several days -08308313 14 n 01 caucus 0 002 @ 08307589 n 0000 + 02429682 v 0101 | a closed political meeting -08308410 14 n 01 conclave 0 001 @ 08307589 n 0000 | a confidential or secret meeting -08308497 14 n 01 conference 0 008 @ 08307589 n 0000 + 00876665 v 0101 ~ 08327616 n 0000 ~ 08327816 n 0000 ~ 08327906 n 0000 ~i 08328088 n 0000 ~i 08328327 n 0000 %m 09953965 n 0000 | a prearranged meeting for consultation or exchange of information or discussion (especially one with a formal agenda) -08308800 14 n 01 congress 0 002 @ 08307589 n 0000 ~ 08318423 n 0000 | a meeting of elected or appointed representatives -08308922 14 n 02 Congress_of_Racial_Equality 0 CORE 1 001 @ 08009834 n 0000 | an organization founded by James Leonard Farmer in 1942 to work for racial equality -08309086 14 n 01 convention 0 003 @ 08307589 n 0000 + 09961889 n 0101 ~ 08309226 n 0000 | a large formal assembly; "political convention" -08309226 14 n 01 Constitutional_Convention 0 002 @ 08309086 n 0000 %m 10107604 n 0000 | the convention of United States statesmen who drafted the United States Constitution in 1787 -08309409 14 n 01 council 0 006 @ 08307589 n 0000 ~ 08321807 n 0000 ~ 08321956 n 0000 ~ 08322430 n 0000 ~ 08322520 n 0000 %m 09944763 n 0000 | a meeting of people for consultation; "emergency council" -08309611 14 n 01 encounter_group 0 001 @ 08310034 n 0000 | a meeting of people to develop mutual understanding by freely expressing emotions -08309754 14 n 01 forum 0 001 @ 08307589 n 0000 | a public meeting or assembly for open discussion -08309854 14 n 01 plenum 0 002 @ 08307589 n 0000 + 00528167 a 0101 | a meeting of a legislative body at which all members are present; "the plenum will vote on all tax increases" -08310034 14 n 01 psychotherapy_group 0 002 @ 08307589 n 0000 ~ 08309611 n 0000 | a meeting of people for psychotherapeutic purposes -08310168 14 n 01 stockholders_meeting 0 001 @ 08307589 n 0000 | a meeting at which the management reports to the stockholders of a company -08310309 14 n 01 covey 1 001 @ 07975026 n 0000 | a small collection of people -08310389 14 n 02 meeting 1 get_together 0 011 @ 08252211 n 0000 + 02486932 v 0202 + 02598143 v 0203 + 02486932 v 0101 + 02428924 v 0101 ~ 08384900 n 0000 ~ 08385009 n 0000 ~ 08385280 n 0000 ~ 08385849 n 0000 ~ 08385989 n 0000 ~ 08417920 n 0000 | a small informal social gathering; "there was an informal meeting in my living room" -08310722 14 n 02 North_Atlantic_Council 0 NAC 0 002 @ 08310949 n 0000 #p 08174398 n 0000 | a council consisting of permanent representatives of all the member countries of NATO; has political authority and powers of decision -08310949 14 n 01 council 1 013 @ 08077292 n 0000 ~ 08094262 n 0000 ~ 08296332 n 0000 ~ 08296500 n 0000 ~ 08296720 n 0000 ~ 08310722 n 0000 ~ 08311282 n 0000 ~ 08311409 n 0000 ~ 08311522 n 0000 ~ 08311687 n 0000 ~ 08311933 n 0000 ~ 08320201 n 0000 ~ 08322625 n 0000 | a body serving in an administrative capacity; "student council" -08311282 14 n 01 city_council 0 001 @ 08310949 n 0000 | a municipal body that can pass ordinances and appropriate funds etc. -08311409 14 n 01 executive_council 0 001 @ 08310949 n 0000 | a council that shares the supreme executive power -08311522 14 n 03 panchayat 0 panchayet 0 punchayet 0 003 @ 08310949 n 0000 ;r 08900535 n 0000 ;c 08975902 n 0000 | a village council in India or southern Pakistan -08311687 14 n 01 privy_council 0 003 @ 08310949 n 0000 ;r 08860123 n 0000 ~ 08311848 n 0000 | an advisory council to a ruler (especially to the British Crown) -08311848 14 n 02 divan 0 diwan 0 001 @ 08311687 n 0000 | a Muslim council of state -08311933 14 n 01 works_council 0 002 @ 08310949 n 0000 ;r 08860123 n 0000 | (chiefly Brit) a council representing employer and employees of a plant or business to discuss working conditions etc; also: a committee representing the workers elected to negotiate with management about grievances and wages etc -08312241 14 n 01 town_meeting 0 001 @ 08052874 n 0000 | government of a town by an assembly of the qualified voters -08312359 14 n 02 summit 0 summit_meeting 0 001 @ 08307589 n 0000 | a meeting of heads of governments -08312462 14 n 01 town_meeting 1 001 @ 08307589 n 0000 | a meeting of the inhabitants of a town -08312559 14 n 01 council 2 012 @ 08163792 n 0000 ;c 06226057 n 0000 ~ 08312988 n 0000 ~ 08314901 n 0000 ~ 08315194 n 0000 ~ 08316346 n 0000 ~ 08316564 n 0000 ~ 08316748 n 0000 ~ 08316965 n 0000 ~ 08317139 n 0000 ~ 08317529 n 0000 ~ 08317885 n 0000 | (Christianity) an assembly of theologians and bishops and other representatives of different churches or dioceses that is convened to regulate matters of discipline or doctrine -08312988 14 n 01 ecumenical_council 0 008 @ 08312559 n 0000 ~ 08313592 n 0000 ~ 08313790 n 0000 ~ 08313983 n 0000 ~ 08314153 n 0000 ~ 08314327 n 0000 ~ 08314501 n 0000 ~ 08314715 n 0000 | (early Christian church) one of seven gatherings of bishops from around the known world under the presidency of the Pope to regulate matters of faith and morals and discipline; "the first seven councils through 787 are considered to be ecumenical councils by both the Roman Catholic church and the Eastern Orthodox church but the next fourteen councils are considered ecumenical only by the Roman Catholic church" -08313592 14 n 02 Nicaea 0 First_Council_of_Nicaea 0 001 @ 08312988 n 0000 | the first ecumenical council in 325 which produced the wording of the Nicene Creed and condemned the heresy of Arianism -08313790 14 n 02 Constantinople 0 First_Council_of_Constantinople 0 001 @ 08312988 n 0000 | the second ecumenical council in 381 which added wording about the Holy Spirit to the Nicene Creed -08313983 14 n 02 Ephesus 0 Council_of_Ephesus 0 001 @ 08312988 n 0000 | the third ecumenical council in 431 which declared Mary as mother of God and condemned Pelagius -08314153 14 n 02 Chalcedon 0 Council_of_Chalcedon 0 001 @ 08312988 n 0000 | the fourth ecumenical council in 451 which defined the two natures (human and divine) of Christ -08314327 14 n 02 Constantinople 1 Second_Council_of_Constantinople 0 001 @ 08312988 n 0000 | the fifth ecumenical council in 553 which held Origen's writings to be heretic -08314501 14 n 02 Constantinople 2 Third_Council_of_Constantinople 0 001 @ 08312988 n 0000 | the sixth ecumenical council in 680-681 which condemned Monothelitism by defining two wills in Christ, divine and human -08314715 14 n 02 Nicaea 1 Second_Council_of_Nicaea 0 001 @ 08312988 n 0000 | the seventh ecumenical council in 787 which refuted iconoclasm and regulated the veneration of holy images -08314901 14 n 02 Constantinople 3 Fourth_Council_of_Constantinople 0 001 @ 08312559 n 0000 | the council in 869 that condemned Photius who had become the patriarch of Constantinople without approval from the Vatican, thereby precipitating the schism between the eastern and western churches -08315194 14 n 01 Lateran_Council 0 006 @ 08312559 n 0000 ~ 08315442 n 0000 ~ 08315682 n 0000 ~ 08315860 n 0000 ~ 08316019 n 0000 ~ 08317340 n 0000 | any of five general councils of the Western Catholic Church that were held in the Lateran Palace -08315442 14 n 01 First_Lateran_Council 0 001 @ 08315194 n 0000 | the first council of the Western Church held in the Lateran Palace in 1123; focused on church discipline and made plans to recover the Holy Lands from the Muslim `infidels' -08315682 14 n 01 Second_Lateran_Council 0 001 @ 08315194 n 0000 | the second council of the Western Church in 1139 which put an end to the dogmatic errors of Arnold of Brescia -08315860 14 n 01 Third_Lateran_Council 0 001 @ 08315194 n 0000 | the Lateran Council in 1179 that condemned the heresies of the Albigenses and the Waldenses -08316019 14 n 01 Fourth_Lateran_Council 0 001 @ 08315194 n 0000 | the Lateran Council in 1215 was the most important council of the Middle Ages; issued a creed against Albigensianism, published reformatory decrees, promulgated the doctrine of transubstantiation, and clarified church doctrine on the Trinity and Incarnation -08316346 14 n 02 Lyons 0 First_Council_of_Lyons 0 001 @ 08312559 n 0000 | the council of the Western Church in 1245 that excommunicated Holy Roman Emperor Frederick II and planned a new crusade against the Holy Land -08316564 14 n 02 Lyons 1 Second_Council_of_Lyons 0 001 @ 08312559 n 0000 | the council in 1274 that effected a temporary reunion of the Greek Orthodox with the Roman Catholic Church -08316748 14 n 02 Vienne 0 Council_of_Vienne 0 001 @ 08312559 n 0000 | the council in 1311-1313 that dealt with alleged crimes of the Knights Templar, planned a new crusade, and took on the reformation of the clergy -08316965 14 n 02 Constance 0 Council_of_Constance 0 001 @ 08312559 n 0000 | the council in 1414-1418 that succeeded in ending the Great Schism in the Roman Catholic Church -08317139 14 n 01 Council_of_Basel-Ferrara-Florence 0 001 @ 08312559 n 0000 | the council in 1431-1439 that concentrated on the elimination of heresies and on reforms within the Roman Catholic Church -08317340 14 n 01 Fifth_Lateran_Council 0 001 @ 08315194 n 0000 | the council in 1512-1517 that published disciplinary decrees and planned (but did not carry out) a crusade against Turkey -08317529 14 n 01 Council_of_Trent 0 001 @ 08312559 n 0000 | a council of the Roman Catholic Church convened in Trento in three sessions between 1545 and 1563 to examine and condemn the teachings of Martin Luther and other Protestant reformers; redefined the Roman Catholic doctrine and abolished various ecclesiastical abuses and strengthened the papacy -08317885 14 n 01 Vatican_Council 0 003 @ 08312559 n 0000 ~ 08318032 n 0000 ~ 08318216 n 0000 | each of two councils of the Roman Catholic Church -08318032 14 n 02 First_Vatican_Council 0 Vatican_I 0 001 @ 08317885 n 0000 | the Vatican Council in 1869-1870 that proclaimed the infallibility of the pope when speaking ex cathedra -08318216 14 n 02 Second_Vatican_Council 0 Vatican_II 0 001 @ 08317885 n 0000 | the Vatican Council in 1962-1965 that abandoned the universal Latin liturgy and acknowledged ecumenism and made other reforms -08318423 14 n 01 Continental_Congress 0 001 @ 08308800 n 0000 | the legislative assembly composed of delegates from the rebel colonies who met during and after the American Revolution; they issued the Declaration of Independence and framed Articles of Confederation -08318691 14 n 01 congress 2 001 @ 08163273 n 0000 | a national legislative assembly -08318777 14 n 01 diet 0 002 @ 08163273 n 0000 ;r 08921850 n 0000 | a legislative assembly in certain countries (e.g., Japan) -08318904 14 n 01 chamber 0 001 @ 08163792 n 0000 | a deliberative or legislative or administrative or judicial assembly; "the upper chamber is the senate" -08319061 14 n 01 chamber_of_commerce 0 001 @ 08049401 n 0000 | an association of businessmen to protect and promote business interests -08319198 14 n 01 parliament 0 007 @ 08163273 n 0000 ;r 08860123 n 0000 + 02774411 a 0101 -c 06653160 n 0000 ~ 08319408 n 0000 ~ 08319679 n 0000 ~ 08319777 n 0000 | a legislative assembly in certain countries -08319408 14 n 01 British_Parliament 0 003 @ 08319198 n 0000 %m 08162691 n 0000 %m 08162860 n 0000 | the British legislative body -08319539 14 n 02 Dail_Eireann 0 Dail 0 002 @ 08163025 n 0000 #p 08319777 n 0000 | the lower house of the parliament of the Irish Republic -08319679 14 n 02 Knesset 0 Knesseth 0 001 @ 08319198 n 0000 | the Israeli unicameral parliament -08319777 14 n 01 Oireachtas 0 003 @ 08319198 n 0000 %p 08319539 n 0000 %p 08319908 n 0000 | the parliament of the Irish Republic -08319908 14 n 02 Seanad_Eireann 0 Seanad 0 002 @ 08163025 n 0000 #p 08319777 n 0000 | the upper house of the parliament of the Irish Republic -08320052 14 n 01 Duma 0 001 @ 08163273 n 0000 | a legislative body in the ruling assembly of Russia and of some other republics in the former USSR -08320201 14 n 01 soviet 0 001 @ 08310949 n 0000 | an elected governmental council in a communist country (especially one that is a member of the Union of Soviet Socialist Republics) -08320385 14 n 02 Palestine_Liberation_Organization 0 PLO 0 003 @ 08472335 n 0000 ;r 08798771 n 0000 %m 08011523 n 0000 | a political movement uniting Palestinian Arabs in an effort to create an independent state of Palestine; when formed in 1964 it was a terrorist organization dominated by Yasser Arafat's al-Fatah; in 1968 Arafat became chairman; received recognition by the United Nations and by Arab states in 1974 as a government in exile; has played a largely political role since the creation of the Palestine National Authority -08320923 14 n 03 Palestine_National_Authority 0 Palestinian_National_Authority 0 Palestine_Authority 0 001 @ 08359949 n 0000 | combines the Gaza Strip and the West Bank under a political unit with limited autonomy and a police force; created in 1993 by an agreement between Israel and the PLO -08321218 14 n 01 Sinn_Fein 0 002 @ 08472335 n 0000 #p 08024732 n 0000 | an Irish republican political movement founded in 1905 to promote independence from England and unification of Ireland; became the political branch of the Irish Republican Army -08321469 14 n 01 Red_Guard 0 002 @ 08472335 n 0000 ;r 08723006 n 0000 | a radical political movement by Chinese youths who espoused Maoist principles -08321621 14 n 01 syndicalism 0 002 @ 08472335 n 0000 + 09791816 n 0103 | a radical political movement that advocates bringing industry and government under the control of labor unions -08321807 14 n 01 indaba 0 001 @ 08309409 n 0000 | a council at which indigenous peoples of southern Africa meet to discuss some important question -08321956 14 n 01 Jirga 0 003 @ 08309409 n 0000 ;c 06975132 n 0000 ~ 08322187 n 0000 | a Pashto term for a decision making assembly of male elders; "most criminal cases are handled by a tribal Jirga rather than by laws or police" -08322187 14 n 01 Loya_Jirga 0 002 @ 08321956 n 0000 ;r 08703454 n 0000 | a grand council or grand assembly used to resolve political conflicts or other national problems; "he convened a Loya Jirga that persuaded tribal leaders to acquiesce" -08322430 14 n 01 powwow 0 001 @ 08309409 n 0000 | a council of or with Native Americans -08322520 14 n 01 synod 0 001 @ 08309409 n 0000 | a council convened to discuss ecclesiastical business -08322625 14 n 01 world_council 0 002 @ 08310949 n 0000 ~ 08480303 n 0000 | a council with representatives from different nations -08322756 14 n 02 blue_ribbon_commission 0 blue_ribbon_committee 0 001 @ 08324514 n 0000 | an independent and exclusive commission of nonpartisan statesmen and experts formed to investigate some important governmental issue -08322981 14 n 01 board 0 012 @ 08324514 n 0000 ~ 08323301 n 0000 ~ 08323471 n 0000 ~ 08323980 n 0000 ~ 08324107 n 0000 ~ 08380768 n 0000 ~ 08381636 n 0000 ~ 08383067 n 0000 ~ 08413408 n 0000 ~ 08413529 n 0000 %m 10015485 n 0000 %m 10308168 n 0000 | a committee having supervisory powers; "the board has seven members" -08323301 14 n 03 appeal_board 0 appeals_board 0 board_of_appeals 0 001 @ 08322981 n 0000 | a board of officials that are not judicial but are appointed to hear appeals -08323471 14 n 01 board_of_selectmen 0 003 @ 08322981 n 0000 %m 10576676 n 0000 %m 10576818 n 0000 | a board of officials elected to administer the public business of a New England town -08323658 14 n 01 board_of_regents 0 001 @ 08324107 n 0000 | a committee of university officers who have general supervision over the welfare and conduct of students -08323825 14 n 01 board_of_trustees 0 001 @ 08324107 n 0000 | a governing board elected or appointed to direct the policies of an educational institution -08323980 14 n 01 Federal_Reserve_Board 0 001 @ 08322981 n 0000 | the seven-member board governing the Federal Reserve System -08324107 14 n 01 governing_board 0 004 @ 08322981 n 0000 ~ 08323658 n 0000 ~ 08323825 n 0000 %m 10516294 n 0000 | a board that manages the affairs of an institution -08324274 14 n 02 secretariat 0 secretariate 0 003 @ 08077292 n 0000 ~ 08176901 n 0000 ~ 08296196 n 0000 | an administrative unit responsible for maintaining records and other secretarial duties; especially for international organizations -08324514 14 n 02 committee 0 commission 0 024 @ 08077292 n 0000 + 09944022 n 0201 + 02349212 v 0105 ~ 08296911 n 0000 ~ 08322756 n 0000 ~ 08322981 n 0000 ~ 08325124 n 0000 ~ 08325237 n 0000 ~ 08325386 n 0000 ~ 08325530 n 0000 ~ 08325851 n 0000 ~ 08325993 n 0000 ~ 08326383 n 0000 ~ 08326706 n 0000 ~ 08326850 n 0000 ~ 08326976 n 0000 ~ 08327090 n 0000 ~ 08327212 n 0000 ~ 08327390 n 0000 ~ 08413681 n 0000 ~ 08414807 n 0000 ~ 08478851 n 0000 %m 09944022 n 0000 %m 09944160 n 0000 | a special group delegated to consider some matter; "a committee is a group that keeps minutes and loses hours" - Milton Berle -08325124 14 n 01 election_commission 0 001 @ 08324514 n 0000 | a commission delegated to supervise an election -08325237 14 n 01 fairness_commission 0 001 @ 08324514 n 0000 | a commission delegated to ensure opportunities for the expression of opposing views -08325386 14 n 01 planning_commission 0 001 @ 08324514 n 0000 | a commission delegated to propose plans for future activities and developments -08325530 14 n 01 conservancy 0 002 @ 08324514 n 0000 ;r 08860123 n 0000 | a commission with jurisdiction over fisheries and navigation in a port or river -08325686 14 n 02 committee 1 citizens_committee 0 003 @ 08009834 n 0000 ~ 08326114 n 0000 ~ 08326266 n 0000 | a self-constituted organization to promote something -08325851 14 n 01 select_committee 0 002 @ 08324514 n 0000 ;r 08860123 n 0000 | a parliamentary committee appointed for some special purpose -08325993 14 n 01 subcommittee 0 001 @ 08324514 n 0000 | a subset of committee members organized for a specific purpose -08326114 14 n 01 vigilance_committee 0 001 @ 08325686 n 0000 | a volunteer committee to maintain order where an efficient legal system does not exist -08326266 14 n 01 welcoming_committee 0 001 @ 08325686 n 0000 | a committee to welcome new residents to a community -08326383 14 n 01 standing_committee 0 002 @ 08324514 n 0000 ~ 08326487 n 0000 | a permanent committee -08326487 14 n 01 Ways_and_Means_Committee 0 001 @ 08326383 n 0000 | a permanent committee of the United States House of Representatives that makes recommendations to the US House on all bills that would raise revenue -08326706 14 n 01 steering_committee 0 001 @ 08324514 n 0000 | a committee to arrange the order of business for some larger (legislative) body -08326850 14 n 02 ethics_committee 0 ethics_panel 0 001 @ 08324514 n 0000 | a committee appointed to consider ethical issues -08326976 14 n 01 finance_committee 0 001 @ 08324514 n 0000 | a committee appointed to consider financial issues -08327090 14 n 01 politburo 0 001 @ 08324514 n 0000 | the chief executive and political committee of the Communist Party -08327212 14 n 02 political_action_committee 0 PAC 0 001 @ 08324514 n 0000 | committee formed by a special-interest group to raise money for their favorite political candidates -08327390 14 n 02 presidium 0 praesidium 0 001 @ 08324514 n 0000 | a permanent executive committee in socialist countries that has all the powers of some larger legislative body and that acts for it when it is not in session -08327616 14 n 01 symposium 0 001 @ 08308497 n 0000 | a meeting or conference for the public discussion of some topic especially one in which the participants form an audience and make presentations -08327816 14 n 01 seminar 0 001 @ 08308497 n 0000 | any meeting for an exchange of ideas -08327906 14 n 01 colloquium 0 002 @ 08308497 n 0000 ~ 08328563 n 0000 | an academic meeting or seminar usually led by a different lecturer and on a different topic at each meeting -08328088 14 n 01 Potsdam_Conference 0 001 @i 08308497 n 0000 | a conference held in Potsdam in the summer of 1945 where Roosevelt, Stalin, and Churchill drew up plans for the administration of Germany and Poland after World War II ended -08328327 14 n 01 Yalta_Conference 0 001 @i 08308497 n 0000 | a conference held in Yalta in February 1945 where Roosevelt, Stalin, and Churchill planned the final stages of World War II and agreed to the territorial division of Europe -08328563 14 n 01 research_colloquium 0 001 @ 08327906 n 0000 | a colloquium at which the results of (scientific) research are reported -08328700 14 n 01 Bench 1 002 @ 08163792 n 0000 #p 08329453 n 0000 | the magistrate or judge or judges sitting in court in judicial capacity to compose the court collectively -08328876 14 n 01 border_patrol 0 002 @ 08329113 n 0000 %m 09867311 n 0000 | a group of officers who patrol the borders of a country -08329010 14 n 01 harbor_patrol 0 001 @ 08329113 n 0000 | patrol of officers who police a harbor area -08329113 14 n 01 patrol 1 005 @ 08208016 n 0000 + 02454939 v 0101 ~ 08328876 n 0000 ~ 08329010 n 0000 %m 10407552 n 0000 | a group that goes through a region at regular intervals for the purpose of security -08329322 14 n 02 court 2 royal_court 2 002 @ 08429167 n 0000 + 00751838 a 0101 | the family and retinue of a sovereign or prince -08329453 14 n 03 court 0 tribunal 0 judicature 1 029 @ 08163792 n 0000 ~ 03649459 n 0000 ~ 08299307 n 0000 %p 08328700 n 0000 ~ 08330106 n 0000 ~ 08330843 n 0000 ~ 08331011 n 0000 ~ 08331121 n 0000 ~ 08331213 n 0000 ~ 08331960 n 0000 ~ 08332090 n 0000 ~ 08332330 n 0000 ~ 08332485 n 0000 ~ 08332896 n 0000 ~ 08333030 n 0000 ~ 08333868 n 0000 ~ 08333995 n 0000 ~ 08334087 n 0000 ~ 08334319 n 0000 ~ 08334873 n 0000 ~ 08335087 n 0000 ~ 08335253 n 0000 ~ 08335414 n 0000 ~ 08335599 n 0000 ~ 08335751 n 0000 ~ 08336188 n 0000 ~ 08336355 n 0000 ~ 08336490 n 0000 %m 08414119 n 0000 | an assembly (including one or more judges) to conduct judicial business -08330106 14 n 03 appellate_court 0 appeals_court 0 court_of_appeals 0 002 @ 08329453 n 0000 ~ 08330298 n 0000 | a court whose jurisdiction is to review decisions of lower courts or agencies -08330298 14 n 01 circuit_court_of_appeals 0 003 @ 08330106 n 0000 #m 08356903 n 0000 ;c 08441203 n 0000 | one of the twelve federal United States courts of appeals that cover a group of states known as a `circuit' -08330514 14 n 01 circuit 0 002 @ 00031264 n 0000 ;c 08441203 n 0000 | (law) a judicial division of a state or the United States (so-called because originally judges traveled and held court in different locations); one of the twelve groups of states in the United States that is covered by a particular circuit court of appeals -08330843 14 n 03 assizes 0 court_of_assize 0 court_of_assize_and_nisi_prius 0 001 @ 08329453 n 0000 | the county courts of England (replaced in 1971 by Crown courts) -08331011 14 n 02 chancery 0 court_of_chancery 0 001 @ 08329453 n 0000 | a court with jurisdiction in equity -08331121 14 n 01 consistory 0 001 @ 08329453 n 0000 | a church tribunal or governing body -08331213 14 n 01 criminal_court 0 003 @ 08329453 n 0000 ~ 08334451 n 0000 ~ 08334581 n 0000 | a court having jurisdiction over criminal cases -08331357 14 n 01 drumhead_court-martial 0 002 @ 08331525 n 0000 ;c 08199025 n 0000 | a military court convened to hear urgent charges of offenses committed in action -08331525 14 n 01 court-martial 0 005 @ 08334087 n 0000 ;c 08199025 n 0000 ~ 08331357 n 0000 ~ 08331762 n 0000 + 02499172 v 0101 | a military court to try members of the armed services who are accused of serious breaches of martial law -08331762 14 n 01 special_court-martial 0 001 @ 08331525 n 0000 | a court-martial to try soldiers for offenses less serious that than those committed in action; consists of at least three officers -08331960 14 n 01 divorce_court 0 001 @ 08329453 n 0000 | a court having jurisdiction over the termination of marriage contracts -08332090 14 n 03 family_court 0 domestic_relations_court 0 court_of_domestic_relations 0 001 @ 08329453 n 0000 | a court in some states in the United States that has jurisdiction over family disputes (especially those involving children) -08332330 14 n 01 federal_court 0 003 @ 08329453 n 0000 #p 08141951 n 0000 ~ 08335886 n 0000 | a court establish by the authority of a federal government -08332485 14 n 02 Foreign_Intelligence_Surveillance_Court 0 F.I.S.C. 0 002 @ 08329453 n 0000 #p 08141951 n 0000 | a secret federal court created in 1978 by the Foreign Intelligence Surveillance Act; responsible for authorizing wiretaps and other forms of electronic surveillance and for authorizing searches of suspected spies and terrorists by the Department of Justice or United States intelligence agencies -08332896 14 n 02 inferior_court 0 lower_court 0 001 @ 08329453 n 0000 | any court whose decisions can be appealed to a higher court -08333030 14 n 01 Inquisition 0 003 @ 08329453 n 0000 ~i 08333224 n 0000 ~i 08333639 n 0000 | a former tribunal of the Roman Catholic Church (1232-1820) created to discover and suppress heresy -08333224 14 n 01 Spanish_Inquisition 0 001 @i 08333030 n 0000 | an inquisition initiated in 1478 by King Ferdinand and Queen Isabella that guarded the orthodoxy of Catholicism in Spain (especially from the 15th to the 17th centuries); "the Spanish Inquisition was administered by both civil and church authorities which gave it ultimate power"; "Torquemada was the inquisitor general for the Spanish Inquisition" -08333639 14 n 02 Roman_Inquisition 0 Congregation_of_the_Inquisition 0 001 @i 08333030 n 0000 | an inquisition set up in Italy in 1542 to curb the number of Protestants; "it was the Roman Inquisition that put Galileo on trial" -08333868 14 n 01 juvenile_court 0 001 @ 08329453 n 0000 | a court having jurisdiction over dependent and delinquent children -08333995 14 n 01 kangaroo_court 0 001 @ 08329453 n 0000 | an irregular unauthorized court -08334087 14 n 01 military_court 0 005 @ 08329453 n 0000 ;c 08199025 n 0000 ;c 08441203 n 0000 ~ 08331525 n 0000 ~ 08334693 n 0000 | a judicial court of commissioned officers for the discipline and punishment of military personnel -08334319 14 n 01 moot_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | a mock court where law students argue hypothetical cases -08334451 14 n 01 night_court 0 002 @ 08331213 n 0000 ;c 08441203 n 0000 | a criminal court (in large cities) that sits at night -08334581 14 n 01 Old_Bailey 0 002 @ 08331213 n 0000 #p 08873622 n 0000 | the central criminal court in London -08334693 14 n 01 provost_court 0 003 @ 08334087 n 0000 ;c 08199025 n 0000 ;c 08441203 n 0000 | a military court for trying people charged with minor offenses in an occupied area -08334873 14 n 01 police_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | a court that has power to prosecute for minor offenses and to bind over for trial in a superior court anyone accused of serious offenses -08335087 14 n 01 probate_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | a court having jurisdiction over the probate of wills and the administration of estates -08335253 14 n 01 quarter_sessions 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | a local court with criminal jurisdiction and sometimes administrative functions -08335414 14 n 01 Rota 0 002 @ 08329453 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) the supreme ecclesiastical tribunal for cases appealed to the Holy See from diocesan courts -08335599 14 n 01 Star_Chamber 0 001 @ 08329453 n 0000 | a former English court that became notorious for its arbitrary methods and severe punishments -08335751 14 n 01 superior_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | any court that has jurisdiction above an inferior court -08335886 14 n 03 Supreme_Court 0 Supreme_Court_of_the_United_States 0 United_States_Supreme_Court 0 003 @ 08332330 n 0000 #m 08356903 n 0000 ;c 08441203 n 0000 | the highest federal court in the United States; has final appellate jurisdiction and has jurisdiction over all other courts in the nation -08336188 14 n 03 supreme_court 1 state_supreme_court 0 high_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | the highest court in most states of the United States -08336355 14 n 01 traffic_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | a court that has power to prosecute for traffic offenses -08336490 14 n 01 trial_court 0 002 @ 08329453 n 0000 ;c 08441203 n 0000 | the first court before which the facts of a case are decided -08336627 14 n 02 repertoire 1 repertory 1 001 @ 07951464 n 0000 | a collection of works (plays, songs, operas, ballets) that an artist or company can perform and do perform for short intervals on a regular schedule -08336844 14 n 02 repertory 0 repertoire 2 001 @ 07951464 n 0000 | the entire range of skills or aptitudes or devices used in a particular field or occupation; "the repertory of the supposed feats of mesmerism"; "has a large repertory of dialects and characters" -08337108 14 n 01 representation 0 002 @ 07965085 n 0000 + 02541509 v 0101 | a body of legislators that serve in behalf of some constituency; "a Congressional vacancy occurred in the representation from California" -08337324 14 n 06 agency 0 federal_agency 0 government_agency 0 bureau 0 office 1 authority 0 070 @ 08077292 n 0000 + 02991463 a 0501 ~i 02688895 n 0000 ~i 02741681 n 0000 ~i 03812541 n 0000 ~i 04510090 n 0000 ~ 08123696 n 0000 ~ 08124256 n 0000 ~ 08124649 n 0000 ~ 08125420 n 0000 ~ 08125722 n 0000 ~ 08129621 n 0000 ~ 08129883 n 0000 ~ 08130292 n 0000 ~ 08130476 n 0000 ~ 08130712 n 0000 ~ 08131005 n 0000 ~ 08131254 n 0000 ~ 08132046 n 0000 ~ 08132323 n 0000 ~ 08133189 n 0000 ~ 08133855 n 0000 ~ 08134081 n 0000 ~ 08135770 n 0000 ~ 08136027 n 0000 ~ 08136502 n 0000 ~ 08136767 n 0000 ~ 08138259 n 0000 ~ 08138466 n 0000 ~ 08138686 n 0000 ~ 08139270 n 0000 ~ 08139637 n 0000 ~ 08140506 n 0000 ~ 08140767 n 0000 ~ 08142801 n 0000 ~ 08142972 n 0000 ~ 08143163 n 0000 ~ 08143321 n 0000 ~ 08143926 n 0000 ~ 08144308 n 0000 ~ 08162245 n 0000 ~ 08191987 n 0000 ~ 08192557 n 0000 ~ 08193212 n 0000 ~ 08193448 n 0000 ~ 08193645 n 0000 ~ 08193854 n 0000 ~ 08194266 n 0000 ~ 08194546 n 0000 ~ 08196230 n 0000 ~ 08197386 n 0000 ~ 08338847 n 0000 ~ 08340753 n 0000 ~ 08341330 n 0000 ~ 08341551 n 0000 ~ 08341798 n 0000 ~ 08348815 n 0000 ~ 08349138 n 0000 ~ 08349350 n 0000 ~ 08349681 n 0000 ~ 08356573 n 0000 ~ 08391696 n 0000 ~ 08394922 n 0000 ~ 08395682 n 0000 ~ 08395991 n 0000 ~ 08396207 n 0000 ~ 08396537 n 0000 ~ 08396760 n 0000 ~ 08423634 n 0000 ~ 08482577 n 0000 | an administrative unit of government; "the Central Intelligence Agency"; "the Census Bureau"; "Office of Management and Budget"; "Tennessee Valley Authority" -08338847 14 n 01 independent_agency 0 024 @ 08337324 n 0000 ;r 09044862 n 0000 ~ 08122596 n 0000 ~ 08122960 n 0000 ~ 08123970 n 0000 ~ 08124971 n 0000 ~ 08125993 n 0000 ~ 08126290 n 0000 ~ 08126483 n 0000 ~ 08126716 n 0000 ~ 08126921 n 0000 ~ 08127166 n 0000 ~ 08127304 n 0000 ~ 08127557 n 0000 ~ 08134415 n 0000 ~ 08134649 n 0000 ~ 08145277 n 0000 ~ 08351107 n 0000 ~ 08351380 n 0000 ~ 08351532 n 0000 ~ 08351777 n 0000 ~ 08352994 n 0000 ~ 08353563 n 0000 ~ 08424044 n 0000 | an agency of the United States government that is created by an act of Congress and is independent of the executive departments -08339454 14 n 03 intelligence 0 intelligence_service 0 intelligence_agency 0 005 @ 08077292 n 0000 ~ 08339706 n 0000 ~ 08339939 n 0000 ~ 08340153 n 0000 ~ 08342039 n 0000 | a unit responsible for gathering and interpreting information about an enemy -08339706 14 n 02 military_intelligence 0 military_intelligence_agency 0 002 @ 08339454 n 0000 ~ 08340989 n 0000 | an agency of the armed forces that obtains and analyzes and uses information of strategic or tactical military value -08339939 14 n 01 United_States_intelligence_agency 0 006 @ 08339454 n 0000 ~ 08124971 n 0000 ~ 08340989 n 0000 ~ 08347704 n 0000 ~ 08348091 n 0000 ~ 08348400 n 0000 | an intelligence service in the United States -08340153 14 n 04 Intelligence_Community 0 National_Intelligence_Community 0 United_States_Intelligence_Community 0 IC 0 016 @ 08339454 n 0000 ;r 09044862 n 0000 %m 08124971 n 0000 %m 08133189 n 0000 %m 08136260 n 0000 %m 08138686 n 0000 %m 08140767 n 0000 %m 08194266 n 0000 %m 08194546 n 0000 %m 08197386 n 0000 %p 08340753 n 0000 %m 08340989 n 0000 %m 08347704 n 0000 %m 08348091 n 0000 %m 08395682 n 0000 %m 08396537 n 0000 | a group of government agencies and organizations that carry out intelligence activities for the United States government; headed by the Director of Central Intelligence -08340753 14 n 02 Advanced_Research_and_Development_Activity 0 ARDA 0 002 @ 08337324 n 0000 #p 08340153 n 0000 | an agency of the Intelligence Community that conducts advanced research and development related to information technology -08340989 14 n 02 Defense_Intelligence_Agency 0 DIA 0 005 @ 08339706 n 0000 @ 08339939 n 0000 #p 08131530 n 0000 #m 08340153 n 0000 ;c 08199025 n 0000 | an intelligence agency of the United States in the Department of Defense; is responsible for providing intelligence in support of military planning and operations and weapons acquisition -08341330 14 n 01 Defense_Logistics_Agency 0 003 @ 08337324 n 0000 #p 08131530 n 0000 %p 08341551 n 0000 | a logistics combat support agency in the Department of Defense; provides worldwide support for military missions -08341551 14 n 02 Defense_Reutilization_and_Marketing_Service 0 DRMS 0 002 @ 08337324 n 0000 #p 08341330 n 0000 | the organization in the Defense Logistics Agency that inventories and evaluates and sells reusable United States government surplus -08341798 14 n 02 Defense_Technical_Information_Center 0 DTIC 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | the agency in the Department of Defense that provides scientific and technical information to federal agencies and their contractors -08342039 14 n 01 international_intelligence_agency 0 015 @ 08339454 n 0000 ~ 08342419 n 0000 ~ 08342670 n 0000 ~ 08342888 n 0000 ~ 08343102 n 0000 ~ 08343534 n 0000 ~ 08343905 n 0000 ~ 08344301 n 0000 ~ 08344917 n 0000 ~ 08346286 n 0000 ~ 08346490 n 0000 ~ 08346655 n 0000 ~ 08346905 n 0000 ~ 08347206 n 0000 ~ 08347457 n 0000 | an intelligence agency outside the United States -08342419 14 n 02 Canadian_Security_Intelligence_Service 0 CSIS 0 002 @ 08342039 n 0000 ;r 08820121 n 0000 | Canada's main foreign intelligence agency that gathers and analyzes information to provide security intelligence for the Canadian government -08342670 14 n 02 Central_Intelligence_Machinery 0 CIM 0 002 @ 08342039 n 0000 ;r 08860123 n 0000 | the United Kingdom's central unit for the tasking and coordination and funding of intelligence and security agencies -08342888 14 n 02 Communications_Security_Establishment 0 CSE 0 002 @ 08342039 n 0000 ;r 08820121 n 0000 | Canadian agency that gathers communications intelligence and assist law enforcement and security agencies -08343102 14 n 02 Criminal_Intelligence_Services_of_Canada 0 CISC 0 002 @ 08342039 n 0000 ;r 08820121 n 0000 | an agency of the Canadian government that unifies the intelligence units of Canadian law enforcement agencies -08343324 14 n 02 Department_of_Justice_Canada 0 DoJC 0 002 @ 08344551 n 0000 ;c 08820121 n 0000 | an agency of the Canadian government that provides litigation and legal advice and opinions to the government -08343534 14 n 03 Directorate_for_Inter-Services_Intelligence 0 Inter-Services_Intelligence 0 ISI 0 002 @ 08342039 n 0000 ;r 08975902 n 0000 | the Pakistan intelligence agency; a powerful and almost autonomous political and military force; has procured nuclear technology and delivery capabilities; has had strong ties with the Taliban and other militant Islamic groups -08343905 14 n 03 Foreign_Intelligence_Service 0 Sluzhba_Vneshney_Razvedki 0 SVR 0 002 @ 08342039 n 0000 ;r 09006413 n 0000 | Russia's intelligence service responsible for foreign operations, intelligence-gathering and analysis, and the exchange of intelligence information; collaborates with other countries to oppose proliferation of weapons of mass destruction, terrorism and organized crime -08344301 14 n 02 International_Relations_and_Security_Network 0 ISN 0 002 @ 08342039 n 0000 ;r 09031653 n 0000 | Switzerland's information network for security and defense studies and for peace and conflict research and for international relations -08344551 14 n 01 international_law_enforcement_agency 0 004 @ 08077292 n 0000 ~ 08210670 n 0000 ~ 08343324 n 0000 ~ 08344756 n 0000 | an international administrative unit responsible for law enforcement -08344756 14 n 01 Interpol 0 001 @ 08344551 n 0000 | an international intelligence agency permitting collaboration among intelligence agencies around the world -08344917 14 n 03 Iraqi_Intelligence_Service 0 IIS 0 Iraqi_Mukhabarat 0 002 @ 08342039 n 0000 ;r 08913434 n 0000 | the most notorious and possibly the most important arm of Iraq's security system; "the Iraqi Mukhabarat has been involved in numerous terrorist activities" -08345189 14 n 01 Republican_Guard 0 002 @ 08198398 n 0000 ;r 08913434 n 0000 | formerly Iraq's elite military unit whose primary role was to protect the government in Baghdad -08345366 14 n 01 Haganah 0 002 @ 08198398 n 0000 ;r 08792548 n 0000 | the clandestine military wing of the Jewish leadership during the British rule over the mandate of Palestine from 1920 to 1948; became the basis for the Israeli defense force -08345613 14 n 02 Israeli_Defense_Force 0 IDF 0 003 @ 08198398 n 0000 ;r 08792548 n 0000 %p 08345770 n 0000 | the ground and air and naval forces of Israel -08345770 14 n 03 Sayeret_Matkal 0 Sayeret_Mat'kal 0 sayeret 0 003 @ 08404373 n 0000 #p 08345613 n 0000 ;r 08792548 n 0000 | Israel's elite secret commando unit responsible for counterterrorist and top secret intelligence gathering and hostage rescue missions -08346031 14 n 02 Special_Air_Service 0 SAS 0 002 @ 08404373 n 0000 ;r 08860123 n 0000 | a specialist regiment of the British army that is trained in commando techniques of warfare and used in clandestine operations (especially against terrorist groups) -08346286 14 n 01 A'man 0 002 @ 08342039 n 0000 ;r 08792548 n 0000 | the Israeli military intelligence which produces comprehensive national intelligence briefings for the prime minister and the cabinet -08346490 14 n 01 Mossad 0 002 @ 08342039 n 0000 ;r 08792548 n 0000 | the Israeli foreign intelligence agency; "the primary focus of the Mossad is on Arab nations" -08346655 14 n 03 Secret_Intelligence_Service 0 MI 6 Military_Intelligence_Section_6 0 002 @ 08342039 n 0000 ;r 08860123 n 0000 | the government agency in the United Kingdom that is responsible for internal security and counterintelligence overseas -08346905 14 n 02 Security_Intelligence_Review_Committee 0 SIRC 0 002 @ 08342039 n 0000 ;r 08820121 n 0000 | an agency of the Canadian government that oversees the activities of the Criminal Intelligence Services of Canada and has the power to intrude on the privacy of suspected terrorists or spies -08347206 14 n 03 Security_Service 0 MI 5 Military_Intelligence_Section_5 0 002 @ 08342039 n 0000 ;r 08860123 n 0000 | the government agency in the United Kingdom that is responsible for internal security and counterintelligence on British territory -08347457 14 n 02 Shin_Bet 0 General_Security_Services 0 002 @ 08342039 n 0000 ;r 08792548 n 0000 | the Israeli domestic counterintelligence and internal security agency; "the Shin Bet also handles overall security for Israel's national airline" -08347704 14 n 02 National_Reconnaissance_Office 0 NRO 0 003 @ 08339939 n 0000 #p 08131530 n 0000 #m 08340153 n 0000 | an intelligence agency in the United States Department of Defense that designs and builds and operates space reconnaissance systems to detect trouble spots worldwide and to monitor arms control agreements and environmental issues and to help plan military operations -08348091 14 n 02 National_Security_Agency 0 NSA 0 003 @ 08339939 n 0000 #p 08131530 n 0000 #m 08340153 n 0000 | the United States cryptologic organization that coordinates and directs highly specialized activities to protect United States information systems and to produce foreign intelligence information -08348400 14 n 05 United_States_Secret_Service 0 US_Secret_Service 0 USSS 0 Secret_Service 0 SS 1 002 @ 08339939 n 0000 #p 08134807 n 0000 | the United States intelligence agency that protects current and former presidents and vice presidents and their immediate families and protects distinguished foreign visitors; detects and apprehends counterfeiters; suppresses forgery of government securities and documents -08348815 14 n 01 law_enforcement_agency 0 012 @ 08337324 n 0000 ~ 08136260 n 0000 ~ 08137028 n 0000 ~ 08137251 n 0000 ~ 08140219 n 0000 ~ 08141092 n 0000 ~ 08141374 n 0000 ~ 08141664 n 0000 ~ 08141951 n 0000 ~ 08142170 n 0000 ~ 08142370 n 0000 ~ 08209687 n 0000 | an agency responsible for insuring obedience to the laws -08349138 14 n 02 Occupational_Safety_and_Health_Administration 0 OSHA 0 002 @ 08337324 n 0000 #p 08137495 n 0000 | a government agency in the Department of Labor to maintain a safe and healthy work environment -08349350 14 n 01 organ 0 001 @ 08337324 n 0000 | a government agency or instrument devoted to the performance of some specific function; "The Census Bureau is an organ of the Commerce Department" -08349548 14 n 01 admiralty 0 002 @ 08119821 n 0000 ;r 08860123 n 0000 | the department in charge of the navy (as in Great Britain) -08349681 14 n 02 Patent_and_Trademark_Office_Database 0 Patent_Office 0 002 @ 08337324 n 0000 #p 08129268 n 0000 | the government bureau in the Department of Commerce that keeps a record of patents and trademarks and grants new ones -08349916 14 n 01 central_bank 0 006 @ 08054721 n 0000 ~ 08350244 n 0000 ~ 08350470 n 0000 ~ 08352035 n 0000 ~ 08352134 n 0000 ~ 08352218 n 0000 | a government monetary authority that issues currency and regulates the supply of credit and holds the reserves of other banks and sells new issues of securities for the government -08350244 14 n 01 European_Central_Bank 0 001 @ 08349916 n 0000 | the central bank of those members of the European Union who share a common currency; "The European Central Bank is Europe's equivalent of the Federal Reserve" -08350470 14 n 04 Federal_Reserve_System 0 Federal_Reserve 0 Fed 0 FRS 0 004 @ 08349916 n 0000 %m 08350919 n 0000 %m 08418631 n 0000 %m 08419033 n 0000 | the central bank of the United States; incorporates 12 Federal Reserve branch banks and all national banks and state-chartered commercial banks and some trust companies; "the Fed seeks to control the United States economy by raising and lowering short-term interest rates and the money supply" -08350919 14 n 02 Federal_Reserve_Bank 0 reserve_bank 0 002 @ 08420278 n 0000 #m 08350470 n 0000 | one of 12 regional banks that monitor and act as depositories for banks in their region -08351107 14 n 02 Federal_Trade_Commission 0 FTC 0 002 @ 08338847 n 0000 %p 08351380 n 0000 | an independent agency of the United States federal government that maintains fair and free competition; enforces federal antitrust laws; educates the public about identity theft -08351380 14 n 02 Office_of_Inspector_General 0 OIG 0 002 @ 08338847 n 0000 #p 08351107 n 0000 | the investigative arm of the Federal Trade Commission -08351532 14 n 02 General_Services_Administration 0 GSA 0 002 @ 08338847 n 0000 %p 08351777 n 0000 | a central management agency that sets Federal policy for Federal procurement and real property management and information resources management -08351777 14 n 02 Federal_Protective_Service 0 FPS 0 002 @ 08338847 n 0000 #p 08351532 n 0000 | an agency in the General Services Administration that is a security organization to provide a safe environment where Federal agencies can conduct their business -08352035 14 n 01 Bank_of_England 0 001 @ 08349916 n 0000 | the central bank of England and Wales -08352134 14 n 01 Bundesbank 0 001 @ 08349916 n 0000 | the central bank of Germany -08352218 14 n 01 Bank_of_Japan 0 001 @ 08349916 n 0000 | the central bank of Japan -08352303 14 n 02 office 0 office_staff 0 001 @ 08439955 n 0000 | professional or clerical workers in an office; "the whole office was late the morning of the blizzard" -08352473 14 n 01 research_staff 0 001 @ 08439955 n 0000 | a group of associated research workers in a university or library or laboratory -08352613 14 n 01 sales_staff 0 001 @ 08439955 n 0000 | those in a business who are responsible for sales -08352720 14 n 01 security_staff 0 001 @ 08439955 n 0000 | those in an organization responsible for preventing spying or theft -08352848 14 n 02 service_staff 0 maintenance_staff 0 001 @ 08439955 n 0000 | those in a business responsible for maintaining the physical plant -08352994 14 n 02 Small_Business_Administration 0 SBA 0 001 @ 08338847 n 0000 | an independent agency of the United States government that protects the interests of small businesses and ensures that they receive a fair share of government contracts -08353244 14 n 01 redevelopment_authority 0 001 @ 08077292 n 0000 | a public administrative unit given responsibility for the renovation of blighted urban areas -08353406 14 n 02 regulatory_agency 0 regulatory_authority 0 001 @ 08077292 n 0000 | a governmental agency that regulates businesses in the public interest -08353563 14 n 03 Selective_Service 0 Selective_Service_System 0 SSS 0 001 @ 08338847 n 0000 | an independent federal agency that administers compulsory military service -08353734 14 n 01 weather_bureau 0 001 @ 08077292 n 0000 | an administrative unit responsible for gathering and interpreting meteorological data for weather study and forecasts -08353912 14 n 02 advertising_agency 0 ad_agency 0 001 @ 08057206 n 0000 | an agency that designs advertisement to call public attention to its clients -08354065 14 n 01 credit_bureau 0 001 @ 08057206 n 0000 | a private firm that maintains consumer credit data files and provides credit information to authorized users for a fee -08354243 14 n 01 detective_agency 0 001 @ 08057206 n 0000 | an agency that makes inquiries for its clients -08354352 14 n 02 employment_agency 0 employment_office 0 001 @ 08057206 n 0000 | an agency that finds people to fill particular jobs or finds jobs for unemployed people -08354523 14 n 02 placement_office 0 placement_center 0 002 @ 08077292 n 0000 ~ 08354678 n 0000 | an office that finds suitable employment for applicants -08354678 14 n 01 hiring_hall 0 001 @ 08354523 n 0000 | a union-operated placement office where jobs are allotted to applicants according to seniority or rotation -08354842 14 n 02 mercantile_agency 0 commercial_agency 0 001 @ 08057206 n 0000 | an organization that provides businesses with credit ratings of other firms; "Dun & Bradstreet is the largest mercantile agency in the United States" -08355075 14 n 06 news_agency 0 press_agency 0 wire_service 0 press_association 0 news_organization 0 news_organisation 0 002 @ 08057206 n 0000 ~ 08355324 n 0000 | an agency to collects news reports for newspapers and distributes it electronically -08355324 14 n 01 syndicate 2 002 @ 08355075 n 0000 + 02243758 v 0101 | a news agency that sells features or articles or photographs etc. to newspapers for simultaneous publication -08355506 14 n 03 service_agency 0 service_bureau 0 service_firm 0 001 @ 08057206 n 0000 | a business that makes its facilities available to others for a fee; achieves economy of scale -08355692 14 n 01 travel_agency 0 001 @ 08057206 n 0000 | an agency that arranges personal travel -08355791 14 n 05 United_States_government 0 United_States 0 U.S._government 0 US_Government 0 U.S. 0 004 @ 08052549 n 0000 %m 08356074 n 0000 %m 08356375 n 0000 %m 08356903 n 0000 | the executive and legislative and judicial branches of the federal government of the United States -08356074 14 n 02 executive_branch 0 Executive_Office_of_the_President 0 007 @ 08401248 n 0000 #m 08355791 n 0000 %p 08122358 n 0000 %p 08122768 n 0000 %m 08123167 n 0000 %p 08123696 n 0000 %p 10467395 n 0000 | the branch of the United States government that is responsible for carrying out the laws -08356375 14 n 01 legislative_branch 0 004 @ 08401248 n 0000 #m 08355791 n 0000 %m 08161757 n 0000 %p 08356573 n 0000 | the branch of the United States government that has the power of legislating -08356573 14 n 04 United_States_Government_Printing_Office 0 US_Government_Printing_Office 0 Government_Printing_Office 0 GPO 0 002 @ 08337324 n 0000 #p 08356375 n 0000 | an agency of the legislative branch that provides printing and binding services for Congress and the departments and establishments of the federal government -08356903 14 n 01 judicial_branch 0 005 @ 08401248 n 0000 #m 08355791 n 0000 ;c 08441203 n 0000 %m 08330298 n 0000 %m 08335886 n 0000 | the branch of the United States government responsible for the administration of justice -08357129 14 n 02 Capital 0 Washington 0 002 @i 08052549 n 0000 + 03037407 a 0201 | the federal government of the United States -08357258 14 n 01 civil_service 0 004 @ 08357784 n 0000 #m 08456727 n 0000 ~ 08357448 n 0000 %m 09925459 n 0000 | government workers; usually hired on the basis of competitive examinations -08357448 14 n 01 Whitehall 0 001 @ 08357258 n 0000 | the British civil service -08357529 14 n 01 county_council 0 002 @ 08164585 n 0000 ;r 08860123 n 0000 | the elected governing body of a county -08357647 14 n 03 diplomatic_service 0 diplomatic_corps 0 corps_diplomatique 0 001 @ 08213079 n 0000 | the body of diplomatic personnel -08357784 14 n 02 government_officials 0 officialdom 0 005 @ 08164585 n 0000 #m 08050678 n 0000 + 10372373 n 0201 ~ 08357258 n 0000 ~ 08456727 n 0000 | people elected or appointed to administer a government -08357992 14 n 01 quorum 0 003 @ 07975026 n 0000 #m 08008335 n 0000 ~ 08358165 n 0000 | a gathering of the minimal number of members of an organization to conduct business -08358165 14 n 01 minyan 0 001 @ 08357992 n 0000 | the quorum required by Jewish law to be present for public worship (at least ten males over thirteen years of age) -08358332 14 n 02 rally 0 mass_meeting 0 003 @ 07975026 n 0000 ~ 08358492 n 0000 ~ 08386143 n 0000 | a large gathering of people intended to arouse enthusiasm -08358492 14 n 01 pep_rally 0 001 @ 08358332 n 0000 | a rally (especially of students) before a game -08358594 14 n 02 cell 0 cadre 1 006 @ 08359949 n 0000 #m 08472335 n 0000 + 02685299 a 0101 + 00327031 a 0101 ~ 08358824 n 0000 ~ 08358963 n 0000 | a small unit serving as part of or as the nucleus of a larger political movement -08358824 14 n 01 sleeper_cell 0 001 @ 08358594 n 0000 | a cell of sleepers; "an al-Qaeda sleeper cell may have used Arizona as its base" -08358963 14 n 02 terrorist_cell 0 radical_cell 0 006 @ 08358594 n 0000 ;c 00759694 n 0000 ~ 08359316 n 0000 ~ 08359432 n 0000 ~ 08359581 n 0000 %m 10702781 n 0000 | a cell of terrorists (usually 3 to 5 members); "to insure operational security the members of adjacent terrorist cells usually don't know each other or the identity of their leadership" -08359316 14 n 01 operational_cell 0 001 @ 08358963 n 0000 | a terrorist cell that performs clandestine activities -08359432 14 n 01 intelligence_cell 0 001 @ 08358963 n 0000 | a terrorist cell whose members are trained to perform reconnaissance and surveillance -08359581 14 n 01 auxiliary_cell 0 001 @ 08358963 n 0000 | a terrorist cell responsible for logistics; usually large and less compartmentalized than other terrorist cells -08359753 14 n 02 fifth_column 0 Trojan_horse 0 002 @ 08189659 n 0000 %m 10087255 n 0000 | a subversive group that supports the enemy and engages in espionage or sabotage; an enemy in your midst -08359949 14 n 02 political_unit 0 political_entity 0 011 @ 08189659 n 0000 #m 08367880 n 0000 ~ 08168978 n 0000 ~ 08169677 n 0000 ~ 08304895 n 0000 ~ 08320923 n 0000 ~ 08358594 n 0000 ~ 08360248 n 0000 ~ 08360430 n 0000 ~ 08360540 n 0000 ~ 08375526 n 0000 | a unit with political responsibilities -08360248 14 n 01 amphictyony 0 001 @ 08359949 n 0000 | an association of neighboring states or tribes in ancient Greece; established originally to defend a common religious center -08360430 14 n 01 lunatic_fringe 0 001 @ 08359949 n 0000 | a political unit with extreme and fanatical views -08360540 14 n 01 revolutionary_group 0 002 @ 08359949 n 0000 ~ 08360672 n 0000 | a political unit organized to promote revolution -08360672 14 n 02 underground 0 resistance 0 003 @ 08360540 n 0000 + 01706465 a 0109 ~ 08360849 n 0000 | a secret group organized to overthrow a government or occupation force -08360849 14 n 01 Maquis 0 002 @ 08360672 n 0000 %m 10292824 n 0000 | the French underground that fought against the German occupation in World War II -08361001 14 n 02 autocracy 0 autarchy 0 004 @ 08367880 n 0000 + 02650795 a 0202 ~ 08363812 n 0000 ~ 08440630 n 0000 | a political system governed by a single individual -08361172 14 n 01 constitutionalism 0 002 @ 08367880 n 0000 + 09959387 n 0101 | a constitutional system of government (usually with a written constitution) -08361329 14 n 03 democracy 0 republic 0 commonwealth 1 006 @ 08367880 n 0000 + 02710530 a 0101 + 02533748 v 0101 + 02533907 v 0101 ~ 08170070 n 0000 ~ 08363711 n 0000 | a political system in which the supreme power lies in a body of citizens who can elect people to represent them -08361612 14 n 02 diarchy 0 dyarchy 0 001 @ 08367880 n 0000 | a form of government having two joint rulers -08361720 14 n 01 gerontocracy 0 001 @ 08367880 n 0000 | a political system governed by old men -08361817 14 n 02 gynecocracy 0 gynarchy 0 001 @ 08367880 n 0000 | a political system governed by a woman -08361924 14 n 01 hegemony 0 001 @ 08367880 n 0000 | the dominance or leadership of one social group or nation over others; "the hegemony of a single member state is not incompatible with a genuine confederation"; "to say they have priority is not to say they have complete hegemony"; "the consolidation of the United States' hegemony over a new international economic system" -08362302 14 n 02 mobocracy 0 ochlocracy 0 001 @ 08367880 n 0000 | a political system in which a mob is the source of control; government by the masses -08362455 14 n 01 oligarchy 0 003 @ 08367880 n 0000 + 02770742 a 0101 + 02770742 a 0102 | a political system governed by a few people; "one of his cardinal convictions was that Britain was not run as a democracy but as an oligarchy"; "the big cities were notoriously in the hands of the oligarchy of local businessmen" -08362775 14 n 01 plutocracy 0 003 @ 08367880 n 0000 + 02781247 a 0101 + 02781247 a 0102 | a political system governed by the wealthy people -08362917 14 n 01 republic 1 002 @ 08367880 n 0000 ~i 08799958 n 0000 | a form of government whose head of state is not a monarch; "the head of state in a republic is usually a president" -08363106 14 n 01 technocracy 0 001 @ 08367880 n 0000 | a form of government in which scientists and technical experts are in control; "technocracy was described as that society in which those who govern justify themselves by appeal to technical experts who justify themselves by appeal to scientific forms of knowledge" -08363428 14 n 01 theocracy 0 004 @ 08367880 n 0000 + 02990819 a 0101 ~ 08177863 n 0000 ~ 08363622 n 0000 | a political unit governed by a deity (or by officials thought to be divinely guided) -08363622 14 n 01 hierocracy 0 001 @ 08363428 n 0000 | a ruling body composed of clergy -08363711 14 n 01 parliamentary_democracy 0 001 @ 08361329 n 0000 | a democracy having a parliament -08363812 14 n 01 monarchy 0 007 @ 08361001 n 0000 + 00718339 a 0101 + 00718339 a 0103 + 00718339 a 0102 ~ 08364044 n 0000 ~ 08405603 n 0000 ~ 08405723 n 0000 | an autocracy governed by a monarch who usually inherits the authority -08364044 14 n 01 parliamentary_monarchy 0 001 @ 08363812 n 0000 | a monarchy having a parliament -08364143 14 n 02 capitalism 0 capitalist_economy 0 006 @ 08364959 n 0000 + 03000110 a 0102 + 00297403 a 0101 + 09892262 n 0101 ! 08366202 n 0101 ~ 08364367 n 0000 | an economic system based on private ownership of capital -08364367 14 n 01 venture_capitalism 0 001 @ 08364143 n 0000 | capitalism that invests in innovative enterprises (especially high technology) where the potential profits are large -08364548 14 n 01 black_economy 0 002 @ 07966719 n 0000 #p 08366753 n 0000 | a hidden sector of the economy where private cash transactions go unreported; "no one knows how large the black economy really is" -08364757 14 n 01 industrialism 0 004 @ 08366753 n 0000 + 10204177 n 0101 + 00500356 v 0101 + 00500356 v 0102 | an economic system built on large industries rather than on agriculture or craftsmanship -08364959 14 n 04 market_economy 0 free_enterprise 0 private_enterprise 0 laissez-faire_economy 0 003 @ 08366753 n 0000 ! 08365344 n 0101 ~ 08364143 n 0000 | an economy that relies chiefly on market forces to allocate goods and resources and to determine prices -08365222 14 n 01 mixed_economy 0 001 @ 08366753 n 0000 | an economic system that combines private and state enterprises -08365344 14 n 01 non-market_economy 0 003 @ 08366753 n 0000 ! 08364959 n 0101 ~ 08367100 n 0000 | an economy that is not a market economy -08365484 14 n 01 state_capitalism 0 001 @ 08366753 n 0000 | an economic system that is primarily capitalistic but there is some degree of government ownership of the means of production -08365672 14 n 01 state_socialism 0 001 @ 08366753 n 0000 | an economic system in which the government owns most means of production but some degree of private capitalism is allowed -08365855 14 n 01 communism 0 007 @ 08366202 n 0000 + 02874876 a 0102 + 09945603 n 0101 + 09945319 n 0101 + 00409281 v 0101 + 00408852 v 0101 ~ 08368308 n 0000 | a form of socialism that abolishes private ownership -08366071 14 n 01 International 0 002 @ 08366202 n 0000 %m 10211830 n 0000 | any of several international socialist organizations -08366202 14 n 02 socialism 0 socialist_economy 0 007 @ 08367100 n 0000 + 00298041 a 0101 + 10618848 n 0101 ! 08364143 n 0101 ~ 08365855 n 0000 ~ 08366071 n 0000 ~ 08366440 n 0000 | an economic system based on state ownership of capital -08366440 14 n 03 Nazism 0 Naziism 0 national_socialism 0 004 @ 06217944 n 0000 @ 08366202 n 0000 + 00502085 v 0101 ~ 08366664 n 0000 | a form of socialism featuring racism and expansionism and obedience to a strong leader -08366664 14 n 01 Falange 0 001 @ 08366440 n 0000 | the Spanish Nazi party under Franco -08366753 14 n 02 economy 0 economic_system 0 013 @ 08435388 n 0000 + 02716739 a 0101 + 02716605 a 0101 + 02716739 a 0102 + 10043643 n 0101 %p 07966719 n 0000 %p 08364548 n 0000 ~ 08364757 n 0000 ~ 08364959 n 0000 ~ 08365222 n 0000 ~ 08365344 n 0000 ~ 08365484 n 0000 ~ 08365672 n 0000 | the system of production and distribution and consumption -08367100 14 n 01 managed_economy 0 004 @ 08365344 n 0000 ~ 08366202 n 0000 ~ 08367339 n 0000 ~ 08367579 n 0000 | a non-market economy in which government intervention is important in allocating goods and resources and determining prices -08367339 14 n 02 mercantilism 0 mercantile_system 0 002 @ 08367100 n 0000 ;r 09275473 n 0000 | an economic system (Europe in 18th century) to increase a nation's wealth by government regulation of all of the nation's commercial interests -08367579 14 n 01 communist_economy 0 001 @ 08367100 n 0000 | the managed economy of a communist state -08367683 14 n 01 pluralism 0 003 @ 08378819 n 0000 + 10443482 n 0101 + 02947477 a 0101 | a social organization in which diversity of racial or religious or ethnic or cultural groups is tolerated -08367880 14 n 02 political_system 0 form_of_government 0 017 @ 07950920 n 0000 #m 08378819 n 0000 %m 08256968 n 0000 %m 08359949 n 0000 ~ 08361001 n 0000 ~ 08361172 n 0000 ~ 08361329 n 0000 ~ 08361612 n 0000 ~ 08361720 n 0000 ~ 08361817 n 0000 ~ 08361924 n 0000 ~ 08362302 n 0000 ~ 08362455 n 0000 ~ 08362775 n 0000 ~ 08362917 n 0000 ~ 08363106 n 0000 ~ 08363428 n 0000 | the members of a social organization who are in power -08368308 14 n 03 Bolshevism 0 collectivism 0 sovietism 0 007 @ 08365855 n 0000 + 00298507 a 0202 + 10619176 n 0201 + 02875499 a 0103 + 09863936 n 0102 ~ 08368516 n 0000 ~ 08368631 n 0000 | Soviet communism -08368516 14 n 01 revisionism 0 002 @ 08368308 n 0000 + 10527147 n 0101 | a moderate evolutionary form of Marxism -08368631 14 n 01 revisionism 1 002 @ 08368308 n 0000 + 10527147 n 0101 | any dangerous departure from the teachings of Marx -08368757 14 n 01 ecosystem 0 001 @ 08435388 n 0000 | a system formed by the interaction of a community of organisms with their physical environment -08368907 14 n 01 generation 0 006 @ 07941170 n 0000 + 02733873 a 0101 + 00054628 v 0107 ~ 08369142 n 0000 ~ 08371838 n 0000 ~ 08372020 n 0000 | group of genetically related organisms constituting a single step in the line of descent -08369142 14 n 01 posterity 0 001 @ 08368907 n 0000 | all future generations -08369220 14 n 02 descendants 0 posterity 1 001 @ 07941170 n 0000 | all of the offspring of a given progenitor; "we must secure the benefits of freedom for ourselves and our posterity" -08369406 14 n 03 coevals 0 contemporaries 0 generation 1 004 @ 07942152 n 0000 + 02733873 a 0301 ~ 08289089 n 0000 ~ 08372190 n 0000 | all the people living at the same time or of approximately the same age -08369615 14 n 03 beat_generation 0 beats 0 beatniks 0 002 @ 08289449 n 0000 %m 09845849 n 0000 | a United States youth subculture of the 1950s; rejected possessions or regular work or traditional dress; for communal living and psychedelic drugs and anarchism; favored modern forms of jazz (e.g., bebop) -08369920 14 n 01 Beatles 0 005 @i 08250501 n 0000 %m 11031842 n 0000 %m 11126783 n 0000 %m 11167952 n 0000 %m 11313726 n 0000 | a rock group from Liverpool who between 1962 and 1970 produced a variety of hit songs and albums (most of them written by Paul McCartney and John Lennon) -08370204 14 n 01 teddy_boys 0 001 @ 08289449 n 0000 | a British youth subculture that first appeared in the 1950s; mainly from unskilled backgrounds, they adopted a pseudo-Edwardian dress code and rock'n'roll music; proletarian and xenophobic, they were involved in race riots in the United Kingdom -08370505 14 n 01 punks 0 002 @ 08289449 n 0000 %m 10492894 n 0000 | a youth subculture closely associated with punk rock music in the late 1970s; in part a reaction to the hippy subculture; dress was optional but intended to shock (plastic garbage bags or old school uniforms) and hair was dyed in bright colors (in Mohican haircuts or sometimes spiked in bright plumes) -08370878 14 n 02 rockers 0 bikers 0 002 @ 08289449 n 0000 %m 10535706 n 0000 | originally a British youth subculture that evolved out of the teddy boys in the 1960s; wore black leather jackets and jeans and boots; had greased hair and rode motorcycles and listened to rock'n'roll; were largely unskilled manual laborers -08371200 14 n 02 skinheads 0 bootboys 0 002 @ 08289449 n 0000 %m 10607478 n 0000 | a youth subculture that appeared first in England in the late 1960s as a working-class reaction to the hippies; hair was cropped close to the scalp; wore work-shirts and short jeans (supported by suspenders) and heavy red boots; involved in attacks against Asians and football hooliganism -08371574 14 n 01 mods 0 002 @ 08289449 n 0000 %m 10324357 n 0000 | a youth subculture that began in London in the early 1960s; a working-class movement with highly stylized dress and short hair; listened to rhythm and blues music and travelled on motor scooters -08371838 14 n 02 baby_boom 0 baby-boom_generation 0 002 @ 08368907 n 0000 %m 09828403 n 0000 | the larger than expected generation in United States born shortly after World War II -08372020 14 n 02 generation_X 0 gen_X 0 001 @ 08368907 n 0000 | the generation following the baby boom (especially Americans and Canadians born in the 1960s and 1970s) -08372190 14 n 01 peer_group 0 002 @ 08369406 n 0000 %m 09626238 n 0000 | contemporaries of the same status -08372299 14 n 01 moiety 0 002 @ 07950920 n 0000 #m 08372411 n 0000 | one of two basic subdivisions of a tribe -08372411 14 n 02 tribe 0 folk 1 004 @ 07950920 n 0000 + 03074922 a 0101 %m 08372299 n 0000 ~ 08373969 n 0000 | a social division of (usually preliterate) people -08372574 14 n 01 totem 0 002 @ 07969695 n 0000 %m 10717461 n 0000 | a clan or tribe identified by their kinship to a common totemic object -08372715 14 n 02 tableau 0 tableau_vivant 0 001 @ 07938773 n 0000 | a group of people attractively arranged (as if in a painting) -08372847 14 n 02 Tribes_of_Israel 0 Twelve_Tribes_of_Israel 0 002 @ 07969695 n 0000 ~ 08373055 n 0000 | twelve kin groups of ancient Israel each traditionally descended from one of the twelve sons of Jacob -08373055 14 n 01 Lost_Tribes 0 001 @ 08372847 n 0000 | the ten Tribes of Israel that were deported into captivity in Assyria around 720 BC (leaving only the tribes of Judah and Benjamin) -08373244 14 n 01 venation 0 003 @ 07938773 n 0000 #p 13152742 n 0000 ;c 06066555 n 0000 | (botany) the arrangement of veins in a leaf -08373380 14 n 01 vernation 0 003 @ 07938773 n 0000 #p 13165286 n 0000 ;c 06066555 n 0000 | (botany) the arrangement of young leaves in a leaf bud before it opens -08373544 14 n 01 combination 2 002 @ 08459252 n 0000 + 01331244 a 0103 | a sequence of numbers or letters that opens a combination lock; "he forgot the combination to the safe" -08373723 14 n 01 combination 4 001 @ 08459252 n 0000 | a coordinated sequence of chess moves -08373818 14 n 01 Fibonacci_sequence 0 001 @ 08459252 n 0000 | a sequence of numbers in which each number equals the sum of the two preceding numbers -08373969 14 n 01 phyle 0 001 @ 08372411 n 0000 | a tribe of ancient Athenians -08374049 14 n 02 colony 0 settlement 0 018 @ 07965085 n 0000 + 00539338 v 0201 + 00415044 v 0201 + 00413876 v 0201 + 02700029 a 0101 + 10583387 n 0102 + 02590340 v 0101 + 00414174 v 0101 + 02590340 v 0102 + 00414174 v 0102 ~ 08374653 n 0000 ~ 08374773 n 0000 ~ 08375031 n 0000 ~i 08948958 n 0000 ~i 09028841 n 0000 ~i 09098885 n 0000 ~i 09116876 n 0000 %m 09937688 n 0000 | a body of people who settle far from home but maintain ties with their homeland; inhabitants remain nationals of their home state but are not literally under the home state's system of government; "the American colony in Paris" -08374653 14 n 02 frontier_settlement 0 outpost 0 001 @ 08374049 n 0000 | a settlement on the frontier of civilization -08374773 14 n 01 Plantation 0 002 @ 08374049 n 0000 ;r 09372504 n 0000 | a newly established colony (especially in the colonization of North America); "the practice of sending convicted criminals to serve on the Plantations was common in the 17th century" -08375031 14 n 01 proprietary_colony 0 001 @ 08374049 n 0000 | a colony given to a proprietor to govern (in 17th century) -08375154 14 n 01 commonwealth 2 002 @ 08294696 n 0000 ~ 08049989 n 0000 | a world organization of autonomous states that are united in allegiance to a central power but are not subordinate to it or to one another -08375369 14 n 01 commune 0 003 @ 07975026 n 0000 + 00409281 v 0102 + 00408852 v 0102 | a body of people or families living together and sharing everything -08375526 14 n 03 lobby 0 pressure_group 0 third_house 0 004 @ 08359949 n 0000 + 10268629 n 0101 + 02458943 v 0101 ~ 08375722 n 0000 | a group of people who try actively to influence legislation -08375722 14 n 02 National_Rifle_Association 0 NRA 0 001 @ 08375526 n 0000 | a powerful lobby that advocates the right to own and bear arms and rejects any gun regulation by the government -08375912 14 n 01 lobby 1 001 @ 07942152 n 0000 | the people who support some common cause or business or principle or sectional interest -08376051 14 n 03 hierarchy 1 power_structure 0 pecking_order 0 003 @ 08008335 n 0000 #p 08164585 n 0000 %m 10169937 n 0000 | the organization of people at different ranks in an administrative body -08376250 14 n 02 chain 0 concatenation 0 005 @ 08457976 n 0000 + 01466303 v 0102 + 01466303 v 0101 ~ 08376526 n 0000 ~ 08376823 n 0000 | a series of things depending on each other as if linked together; "the chain of command"; "a complicated concatenation of circumstances" -08376526 14 n 01 catena 0 003 @ 08376250 n 0000 + 01466303 v 0102 + 01466303 v 0101 | a chain of connected ideas or passages or objects so arranged that each member is closely related to the preceding and following members (especially a series of patristic comments elucidating Christian dogma) -08376823 14 n 01 daisy_chain 0 001 @ 08376250 n 0000 | (figurative) a series of associated things or people or experiences -08376948 14 n 01 cordon 0 001 @ 08457976 n 0000 | a series of sentinels or of military posts enclosing or guarding some place or thing -08377085 14 n 02 course 0 line 2 002 @ 08457976 n 0000 ~ 08461595 n 0000 | a connected series of events or actions or developments; "the government took a firm course"; "historians can only point out those lines for which evidence is available" -08377332 14 n 01 cycle 0 001 @ 08457976 n 0000 | a series of poems or songs on the same theme; "Schubert's song cycles" -08377454 14 n 03 electromotive_series 0 electromotive_force_series 0 electrochemical_series 0 001 @ 08457976 n 0000 | a serial arrangement of metallic elements or ions according to their electrode potentials determined under specified conditions; the order shows the tendency of one metal to reduce the ions of any other metal below it in the series -08377806 14 n 01 hierarchy 0 006 @ 08457976 n 0000 #p 08435388 n 0000 + 01203288 a 0101 ~ 08378066 n 0000 ~ 08378180 n 0000 ~ 08378356 n 0000 | a series of ordered groupings of people or things within a system; "put honesty first in her hierarchy of values" -08378066 14 n 01 celestial_hierarchy 0 002 @ 08377806 n 0000 %m 09538915 n 0000 | the collective body of angels -08378180 14 n 01 data_hierarchy 0 001 @ 08377806 n 0000 | an arrangement of data consisting of sets and subsets such that every subset of a set is of lower rank than the set -08378356 14 n 01 taxonomy 0 004 @ 08377806 n 0000 + 10693824 n 0101 + 03018498 a 0101 + 03018498 a 0102 | a classification of organisms into groups based on similarities of structure or origin etc -08378555 14 n 01 class_structure 0 003 @ 08378819 n 0000 %m 07974025 n 0000 ~ 08378698 n 0000 | the organization of classes within a society -08378698 14 n 01 caste_system 0 001 @ 08378555 n 0000 | a social structure in which classes are determined by heredity -08378819 14 n 05 social_organization 0 social_organisation 0 social_structure 0 social_system 0 structure 0 010 @ 08435388 n 0000 #m 07966140 n 0000 ~ 07972425 n 0000 ~ 07972674 n 0000 ~ 07972888 n 0000 ~ 07973088 n 0000 ~ 08367683 n 0000 %m 08367880 n 0000 ~ 08378555 n 0000 ~ 08380340 n 0000 | the people in a society considered as a system organized by a characteristic pattern of relationships; "the social organization of England and America is very different"; "sociologists have studied the changing structure of the family" -08379353 14 n 01 racial_segregation 0 002 @ 08380340 n 0000 ~ 08379455 n 0000 | segregation by race -08379455 14 n 01 petty_apartheid 0 001 @ 08379353 n 0000 | racial segregation enforced primarily in public transportation and hotels and restaurants and other public places -08379630 14 n 01 de_facto_segregation 0 001 @ 08380340 n 0000 | segregation (especially in schools) that happens in fact although not required by law -08379782 14 n 01 de_jure_segregation 0 001 @ 08380340 n 0000 | segregation that is imposed by law -08379882 14 n 02 purdah 0 sex_segregation 0 001 @ 08380340 n 0000 | the traditional Hindu or Muslim system of keeping women secluded -08380017 14 n 02 ulema 0 ulama 0 002 @ 07965085 n 0000 %m 10338231 n 0000 | the body of Mullahs (Muslim scholars trained in Islam and Islamic law) who are the interpreters of Islam's sciences and doctrines and laws and the chief guarantors of continuity in the spiritual and intellectual history of the Islamic community -08380340 14 n 02 segregation 0 separatism 0 008 @ 08378819 n 0000 + 10576316 n 0102 + 02482139 v 0101 ~ 08379353 n 0000 ~ 08379630 n 0000 ~ 08379782 n 0000 ~ 08379882 n 0000 ~ 08380606 n 0000 | a social system that provides separate facilities for minority groups -08380606 14 n 01 white_separatism 0 002 @ 08380340 n 0000 + 10779238 n 0101 | a social system in which white people live separately from members of other races -08380768 14 n 02 directorate 0 board_of_directors 0 003 @ 08322981 n 0000 #m 08381165 n 0000 ~ 08380975 n 0000 | a group of persons chosen to govern the affairs of a corporation or other large institution -08380975 14 n 01 staggered_board_of_directors 0 001 @ 08380768 n 0000 | a board of directors a portion of whose members are elected each year instead of all members being elected annually -08381165 14 n 01 management 0 003 @ 08164585 n 0000 %m 08380768 n 0000 ~ 08381296 n 0000 | those in charge of running a business -08381296 14 n 01 house 6 001 @ 08381165 n 0000 | the management of a gambling house or casino; "the house gets a percentage of every bet" -08381436 14 n 02 leadership 0 leaders 0 004 @ 07965085 n 0000 + 09623038 n 0101 ~ 08085535 n 0000 ~ 08405267 n 0000 | the body of people who lead a group; "the national leadership adopted his plan" -08381636 14 n 02 advisory_board 0 planning_board 0 004 @ 08322981 n 0000 #m 08164585 n 0000 ~ 08381820 n 0000 ~ 08383185 n 0000 | a board appointed to advise the chief administrator -08381820 14 n 01 cabinet 0 005 @ 08381636 n 0000 %m 00585964 n 0000 ~ 08382056 n 0000 ~ 08382297 n 0000 ~ 08382570 n 0000 | persons appointed by a head of state to head executive departments of government and act as official advisers -08382056 14 n 01 British_Cabinet 0 008 @ 08381820 n 0000 ;r 08860123 n 0000 %m 09907196 n 0000 %m 09907408 n 0000 %m 09917481 n 0000 %m 10182628 n 0000 %m 10272499 n 0000 %m 10727458 n 0000 | the senior ministers of the British government -08382297 14 n 01 shadow_cabinet 0 002 @ 08381820 n 0000 ;r 08860123 n 0000 | a group of senior members of the political party that is out of power; these members would probably assume corresponding positions as ministers in the British Cabinet if their party was elected -08382570 14 n 02 United_States_Cabinet 0 US_Cabinet 0 015 @ 08381820 n 0000 %m 00599917 n 0000 %m 00600200 n 0000 %m 00600435 n 0000 %m 00600655 n 0000 %m 00600871 n 0000 %m 00601088 n 0000 %m 00601296 n 0000 %m 00601557 n 0000 %m 00601822 n 0000 %m 00602026 n 0000 %m 00602220 n 0000 %m 00602448 n 0000 %m 00602669 n 0000 %m 00602909 n 0000 | a board to advise the President; members are the secretaries of executive departments; the United States constitution does not provide for the cabinet -08383067 14 n 01 draft_board 0 001 @ 08322981 n 0000 | a board to select personnel for involuntary military service -08383185 14 n 01 Kashag 0 002 @ 08381636 n 0000 %m 10229034 n 0000 | the advisory board of the Tibetan government-in-exile -08383310 14 n 01 stock_company 0 001 @ 08058098 n 0000 | a company whose capital is represented by stock -08383417 14 n 01 joint-stock_company 0 001 @ 08058098 n 0000 | a company (usually unincorporated) which has the capital of its members pooled in a common fund; transferable shares represent ownership interest; shareholders are legally liable for all debts of the company -08383690 14 n 04 closed_corporation 0 close_corporation 0 private_corporation 0 privately_held_corporation 0 002 @ 08059412 n 0000 ~ 08383909 n 0000 | a corporation owned by a few people; shares have no public market -08383909 14 n 01 family_business 0 001 @ 08383690 n 0000 | a corporation that is entirely owned by the members of a single family -08384041 14 n 01 closely_held_corporation 0 001 @ 08059412 n 0000 | stock is publicly traded but most is held by a few shareholders who have no plans to sell -08384201 14 n 02 shell_corporation 0 shell_entity 0 001 @ 08059412 n 0000 | a company that is incorporated but has no assets or operations -08384342 14 n 02 Federal_Deposit_Insurance_Corporation 0 FDIC 0 001 @ 08059412 n 0000 | a federally sponsored corporation that insures accounts in national banks and other qualified institutions -08384539 14 n 03 Federal_Home_Loan_Mortgage_Corporation 0 Freddie_Mac 0 FHLMC 0 001 @ 08059412 n 0000 | a corporation authorized by Congress to provide a secondary market for residential mortgages -08384738 14 n 03 Federal_National_Mortgage_Association 0 Fannie_Mae 0 FNMA 0 001 @ 08059412 n 0000 | a federally chartered corporation that purchases mortgages -08384900 14 n 01 conventicle 0 001 @ 08310389 n 0000 | a secret unauthorized meeting for religious worship -08385009 14 n 03 date 0 appointment 0 engagement 0 007 @ 08310389 n 0000 + 02486232 v 0103 + 02485844 v 0101 ~ 08385490 n 0000 ~ 08385602 n 0000 ~ 08385717 n 0000 %m 09992538 n 0000 | a meeting arranged in advance; "she asked how to avoid kissing at the end of a date" -08385280 14 n 01 visit 0 002 @ 08310389 n 0000 + 01844048 v 0101 | a meeting arranged by the visitor to see someone (such as a doctor or lawyer) for treatment or advice; "he scheduled a visit to the dentist" -08385490 14 n 01 blind_date 0 001 @ 08385009 n 0000 | a date with a stranger; "she never goes on blind dates" -08385602 14 n 01 double_date 0 002 @ 08385009 n 0000 + 02486060 v 0101 | a date in which two couples participate -08385717 14 n 02 tryst 0 rendezvous 0 002 @ 08385009 n 0000 + 02487226 v 0201 | a date; usually with a member of the opposite sex -08385849 14 n 02 luncheon_meeting 0 lunch_meeting 0 001 @ 08310389 n 0000 | a meeting for lunch; usually to conduct business while eating -08385989 14 n 01 power_breakfast 0 002 @ 08310389 n 0000 @ 07574602 n 0000 | a meeting of influential people to conduct business while eating breakfast -08386143 14 n 02 revival 0 revival_meeting 0 001 @ 08358332 n 0000 | an evangelistic meeting intended to reawaken interest in religion -08386280 14 n 01 argosy 0 001 @ 08293336 n 0000 | one or more large merchant ships -08386365 14 n 02 upper_class 0 upper_crust 0 004 @ 07974025 n 0000 ~ 08386555 n 0000 ~ 08387213 n 0000 ~ 08387806 n 0000 | the class occupying the highest position in the social hierarchy -08386555 14 n 02 elite 0 elite_group 0 009 @ 08386365 n 0000 + 02123579 a 0102 ~ 08386853 n 0000 ~ 08387035 n 0000 ~ 08387354 n 0000 ~ 08387930 n 0000 ~ 08388074 n 0000 ~ 08388207 n 0000 %m 10696755 n 0000 | a group or class of persons enjoying superior intellectual or social or economic status -08386853 14 n 02 chosen 0 elect 0 003 @ 08386555 n 0000 + 02123579 a 0201 + 02400760 v 0201 | an exclusive group of people; "one of the elect who have power inside the government" -08387035 14 n 02 cream 0 pick 0 002 @ 08386555 n 0000 + 00676450 v 0201 | the best people or things in a group; "the cream of England's young men were killed in the Great War" -08387213 14 n 02 gentry 0 aristocracy 2 003 @ 08386365 n 0000 + 01590484 a 0201 ~ 08387685 n 0000 | the most powerful members of a society -08387354 14 n 02 intelligentsia 0 clerisy 0 003 @ 08386555 n 0000 ~ 08387495 n 0000 ~ 08387603 n 0000 | an educated and intellectual elite -08387495 14 n 01 culturati 0 001 @ 08387354 n 0000 | people interested in culture and cultural activities -08387603 14 n 01 literati 0 001 @ 08387354 n 0000 | the literary intelligentsia -08387685 14 n 02 landed_gentry 0 squirearchy 0 001 @ 08387213 n 0000 | the gentry who own land (considered as a class) -08387806 14 n 02 ruling_class 0 people_in_power 0 001 @ 08386365 n 0000 | the class of people exerting power or authority -08387930 14 n 05 society 2 high_society 0 beau_monde 0 smart_set 0 bon_ton 0 002 @ 08386555 n 0000 %m 08251493 n 0000 | the fashionable elite -08388074 14 n 01 few 0 002 @ 08386555 n 0000 + 01552885 a 0101 | a small elite group; "it was designed for the discriminating few" -08388207 14 n 02 nobility 0 aristocracy 1 011 @ 08386555 n 0000 + 01590484 a 0201 + 01590115 a 0101 ~ 08388503 n 0000 ~ 08388636 n 0000 ~ 08388783 n 0000 ~ 08388871 n 0000 ~ 08388966 n 0000 ~i 08485160 n 0000 ~i 08486075 n 0000 %m 09807754 n 0000 | a privileged class holding hereditary titles -08388503 14 n 01 noblesse 0 002 @ 08388207 n 0000 ;r 08929922 n 0000 | members of the nobility (especially of the French nobility) -08388636 14 n 02 peerage 0 baronage 0 003 @ 08388207 n 0000 %m 10242791 n 0000 %m 10412910 n 0000 | the peers of a kingdom considered as a group -08388783 14 n 01 baronetage 0 001 @ 08388207 n 0000 | the collective body of baronets -08388871 14 n 01 knighthood 0 001 @ 08388207 n 0000 | aristocrats holding the rank of knight -08388966 14 n 01 samurai 0 003 @ 08388207 n 0000 ;c 09718217 n 0000 %m 10549763 n 0000 | feudal Japanese military aristocracy -08389094 14 n 01 ninja 0 003 @ 07974025 n 0000 ;c 09718217 n 0000 %m 10358889 n 0000 | a class of 14th century Japanese who were trained in martial arts and were hired for espionage and assassinations -08389297 14 n 02 artillery 0 artillery_unit 0 003 @ 08190754 n 0000 ;c 08199025 n 0000 ~ 08389572 n 0000 | an army unit that uses big guns -08389438 14 n 01 musketry 0 003 @ 08190754 n 0000 ;c 08199025 n 0000 %m 10341446 n 0000 | musketeers and their muskets collectively -08389572 14 n 01 battery 2 002 @ 08389297 n 0000 ;c 08199025 n 0000 | group of guns or missile launchers operated together at one place -08389710 14 n 01 cavalry 0 007 @ 08190754 n 0000 ;c 08199025 n 0000 ~ 08220089 n 0000 %m 08274443 n 0000 ~ 08389900 n 0000 ~ 08390012 n 0000 %m 09902353 n 0000 | a highly mobile army unit -08389900 14 n 01 horse_cavalry 0 002 @ 08389710 n 0000 ;c 08199025 n 0000 | an army unit mounted on horseback -08390012 14 n 01 mechanized_cavalry 0 002 @ 08389710 n 0000 ;c 08199025 n 0000 | an armored unit of a modern army equipped with motor vehicles -08390157 14 n 02 infantry 0 foot 0 003 @ 08190754 n 0000 ;c 08199025 n 0000 ~ 08390374 n 0000 | an army unit consisting of soldiers who fight on foot; "there came ten thousand horsemen and as many fully-armed foot" -08390374 14 n 01 paratroops 0 003 @ 08390157 n 0000 ;c 08199025 n 0000 %m 10399019 n 0000 | infantry trained and equipped to parachute -08390511 14 n 02 militia 0 reserves 0 006 @ 08198398 n 0000 ;c 08199025 n 0000 ~ 08212146 n 0000 ~ 08285719 n 0000 %p 08391206 n 0000 %m 10317717 n 0000 | civilians trained as soldiers but not part of the regular army -08390731 14 n 01 militia 1 002 @ 07965085 n 0000 ;c 08199025 n 0000 | the entire body of physically fit civilians eligible by law for military service; "their troops were untrained militia"; "Congress shall have power to provide for calling forth the militia"--United States Constitution -08391021 14 n 01 home_guard 0 003 @ 08215603 n 0000 ;c 08199025 n 0000 ~ 08215989 n 0000 | a volunteer unit formed to defend the homeland while the regular army is fighting elsewhere -08391206 14 n 02 territorial 0 territorial_reserve 0 005 @ 08215603 n 0000 #p 08390511 n 0000 ;c 08199025 n 0000 ~ 08391387 n 0000 ~ 08391953 n 0000 | a territorial military unit -08391387 14 n 02 National_Guard 0 home_reserve 0 007 @ 08391206 n 0000 ;c 08199025 n 0000 ~ 08197149 n 0000 %p 08391696 n 0000 ~ 08396990 n 0000 %m 10150415 n 0000 %m 10702307 n 0000 | United States military reserves recruited by the states and equipped by the federal government; subject to call by either -08391696 14 n 02 National_Guard_Bureau 0 NGB 0 002 @ 08337324 n 0000 #p 08391387 n 0000 | the agency that administers the Army National Guard and the Air National Guard; provides liaison between the Army and the Air Force and various National Guard units -08391953 14 n 01 Territorial_Army 0 003 @ 08391206 n 0000 %p 08215989 n 0000 %m 10702307 n 0000 | British unit of nonprofessional soldiers organized for the defense of Great Britain -08392137 14 n 04 terrorist_organization 0 terrorist_group 0 foreign_terrorist_organization 0 FTO 0 111 @ 08472335 n 0000 ;c 00759694 n 0000 ~i 08010364 n 0000 ~i 08010559 n 0000 ~i 08010942 n 0000 ~i 08011266 n 0000 ~i 08011523 n 0000 ~i 08012028 n 0000 ~i 08012384 n 0000 ~i 08012765 n 0000 ~i 08013176 n 0000 ~i 08013453 n 0000 ~i 08013653 n 0000 ~i 08013845 n 0000 ~i 08014202 n 0000 ~i 08014615 n 0000 ~i 08014860 n 0000 ~i 08015116 n 0000 ~i 08015321 n 0000 ~i 08015731 n 0000 ~i 08016035 n 0000 ~i 08016385 n 0000 ~i 08016900 n 0000 ~i 08017257 n 0000 ~i 08017614 n 0000 ~i 08017974 n 0000 ~i 08018189 n 0000 ~i 08018666 n 0000 ~i 08018983 n 0000 ~i 08019281 n 0000 ~i 08019523 n 0000 ~i 08019913 n 0000 ~i 08020242 n 0000 ~i 08020785 n 0000 ~i 08021129 n 0000 ~i 08021464 n 0000 ~i 08021785 n 0000 ~i 08022259 n 0000 ~i 08022666 n 0000 ~i 08022972 n 0000 ~i 08023374 n 0000 ~i 08023843 n 0000 ~i 08024096 n 0000 ~i 08024408 n 0000 ~i 08024732 n 0000 ~i 08025112 n 0000 ~i 08025497 n 0000 ~i 08025835 n 0000 ~i 08026197 n 0000 ~i 08026539 n 0000 ~i 08026904 n 0000 ~i 08027314 n 0000 ~i 08027518 n 0000 ~i 08027920 n 0000 ~i 08028148 n 0000 ~i 08028397 n 0000 ~i 08028623 n 0000 ~i 08028999 n 0000 ~i 08029421 n 0000 ~i 08029908 n 0000 ~i 08030481 n 0000 ~i 08030711 n 0000 ~i 08031020 n 0000 ~i 08031386 n 0000 ~i 08031663 n 0000 ~i 08032023 n 0000 ~i 08032594 n 0000 ~i 08032955 n 0000 ~i 08033194 n 0000 ~i 08033454 n 0000 ~i 08033829 n 0000 ~i 08034028 n 0000 ~i 08034299 n 0000 ~i 08034579 n 0000 ~i 08034778 n 0000 ~i 08035233 n 0000 ~i 08035601 n 0000 ~i 08036005 n 0000 ~i 08036293 n 0000 ~i 08036849 n 0000 ~i 08037118 n 0000 ~i 08037503 n 0000 ~i 08037861 n 0000 ~i 08038131 n 0000 ~i 08038379 n 0000 ~i 08038748 n 0000 ~i 08038995 n 0000 ~i 08039312 n 0000 ~i 08039601 n 0000 ~i 08040008 n 0000 ~i 08040257 n 0000 ~i 08040522 n 0000 ~i 08040762 n 0000 ~i 08041106 n 0000 ~i 08041484 n 0000 ~i 08041840 n 0000 ~i 08042183 n 0000 ~i 08042536 n 0000 ~i 08042856 n 0000 ~i 08043169 n 0000 ~i 08043499 n 0000 ~i 08043848 n 0000 ~i 08044265 n 0000 ~i 08044676 n 0000 ~i 08045140 n 0000 ~i 08045428 n 0000 ~i 08045681 n 0000 ~i 08046032 n 0000 ~i 08046346 n 0000 ~i 08046759 n 0000 ~i 08047032 n 0000 | a political movement that uses terror as a weapon to achieve its goals -08394423 14 n 01 standing_army 0 002 @ 08191230 n 0000 ;c 08199025 n 0000 | a permanent army of paid soldiers -08394535 14 n 01 Union_Army 0 002 @ 08191230 n 0000 @ 08480847 n 0000 | the northern army during the American Civil War -08394657 14 n 02 Confederate_Army 0 Army_of_the_Confederacy 0 002 @ 08191230 n 0000 @ 08481009 n 0000 | the southern army during the American Civil War -08394811 14 n 01 Continental_Army 0 001 @ 08191230 n 0000 | the American army during the American Revolution -08394922 14 n 05 United_States_Army 0 US_Army 0 U._S._Army 0 Army 2 USA 0 010 @ 08337324 n 0000 #p 08131530 n 0000 ;c 08199025 n 0000 %p 02741681 n 0000 %p 08141092 n 0000 %p 08213424 n 0000 %p 08395298 n 0000 %p 08395465 n 0000 %p 08395682 n 0000 %p 08396990 n 0000 | the army of the United States of America; the agency that organizes and trains soldiers for land warfare -08395298 14 n 01 United_States_Army_Rangers 0 003 @ 08214083 n 0000 #p 08394922 n 0000 ;c 08199025 n 0000 | a specially trained elite unit of the United States Army -08395465 14 n 02 United_States_Military_Academy 0 US_Military_Academy 0 003 @ 08279524 n 0000 #p 08394922 n 0000 ;c 08199025 n 0000 | a school for training men and women to become officers in the United States Army -08395682 14 n 02 Army_Intelligence 0 AI 0 004 @ 08337324 n 0000 #p 08394922 n 0000 #m 08340153 n 0000 ;c 08199025 n 0000 | an agency of the United States Army responsible for providing timely and relevant and accurate and synchronized intelligence to tactical and operational and strategic level commanders -08395991 14 n 02 Ballistic_Missile_Defense_Organization 0 BMDO 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | an agency in the Department of Defense that is responsible for making ballistic missile defense a reality -08396207 14 n 02 Defense_Information_Systems_Agency 0 DISA 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | a combat support agency in the Department of Defense responsible for developing and operating and supporting information systems to serve the needs of the President and the Secretary of Defense and the Joint Chiefs of Staff -08396537 14 n 02 National_Geospatial-Intelligence_Agency 0 NGA 0 003 @ 08337324 n 0000 #p 08131530 n 0000 #m 08340153 n 0000 | a combat support agency that provides geographic intelligence in support of national security -08396760 14 n 02 Casualty_Care_Research_Center 0 CCRC 0 002 @ 08337324 n 0000 #p 08131530 n 0000 | an agency in the Department of Defense that is a national center for research on all aspects of injury control and casualty care -08396990 14 n 02 Army_National_Guard 0 ARNG 0 003 @ 08391387 n 0000 #p 08394922 n 0000 ;c 08199025 n 0000 | a civilian reserve component of the United States Army comprised of guardsmen who serve during overseas peacekeeping missions and during local emergencies -08397255 14 n 03 military_personnel 0 soldiery 0 troops 0 008 @ 08208016 n 0000 #m 08190754 n 0000 ;c 08199025 n 0000 + 01097031 v 0201 ~ 08397489 n 0000 ~ 08397675 n 0000 ~ 08397856 n 0000 ~ 08398036 n 0000 | soldiers collectively -08397489 14 n 01 friendly 0 003 @ 08397255 n 0000 ;c 08199025 n 0000 ! 08397675 n 0101 | troops belonging to or allied with your own military forces; "friendlies came to their rescue" -08397675 14 n 01 hostile 0 003 @ 08397255 n 0000 ;c 08199025 n 0000 ! 08397489 n 0101 | troops belonging to the enemy's military forces; "the platoon ran into a pack of hostiles" -08397856 14 n 03 cavalry 1 horse_cavalry 1 horse 0 003 @ 08397255 n 0000 ;c 08199025 n 0000 %m 09902611 n 0000 | troops trained to fight on horseback; "500 horse led the attack" -08398036 14 n 01 garrison 0 003 @ 08397255 n 0000 ;c 08199025 n 0000 + 01089137 v 0101 | the troops who maintain and guard a fortified place -08398179 14 n 02 rank_and_file 0 rank 1 003 @ 08208016 n 0000 ;c 08199025 n 0000 %m 10058585 n 0000 | the ordinary members of an organization (such as the enlisted soldiers of an army); "the strike was supported by the union rank and file"; "he rose from the ranks to become a colonel" -08398467 14 n 01 coven 0 002 @ 08163792 n 0000 %m 09503282 n 0000 | an assembly of witches; usually 13 witches -08398580 14 n 02 sabbat 0 witches'_Sabbath 0 001 @ 08163792 n 0000 | a midnight meeting of witches to practice witchcraft and sorcery; in the Middle Ages it was supposed to be a demonic orgy -08398773 14 n 0a assortment 0 mixture 0 mixed_bag 0 miscellany 0 miscellanea 0 variety 1 salmagundi 0 smorgasbord 0 potpourri 0 motley 0 011 @ 07951464 n 0000 + 01199083 a 0a04 + 00436879 v 0a03 + 00394813 v 0203 ~ 08399287 n 0000 ~ 08399378 n 0000 ~ 08399586 n 0000 ~ 08399818 n 0000 ~ 08399977 n 0000 ~ 08400191 n 0000 ~ 08463817 n 0000 | a collection containing a variety of sorts of things; "a great assortment of cars was on display"; "he had a variety of disorders"; "a veritable smorgasbord of religions" -08399287 14 n 01 grab_bag 0 001 @ 08398773 n 0000 | an assortment of miscellaneous items -08399378 14 n 03 witches'_brew 0 witches'_broth 0 witch's_brew 0 001 @ 08398773 n 0000 | a fearsome mixture; "a witches' brew of gangsters and terrorists"; "mixing dope and alcohol creates a witches' brew" -08399586 14 n 01 range 0 003 @ 08398773 n 0000 + 02727039 v 0101 ~ 06260518 n 0000 | a variety of different things or activities; "he answered a range of questions"; "he was impressed by the range and diversity of the collection" -08399818 14 n 01 selection 0 001 @ 08398773 n 0000 | an assortment of things from which a choice can be made; "the store carried a large selection of shoes" -08399977 14 n 0b odds_and_ends 0 oddments 0 melange 0 farrago 0 ragbag 0 mishmash 0 mingle-mangle 0 hodgepodge 0 hotchpotch 0 gallimaufry 0 omnium-gatherum 0 001 @ 08398773 n 0000 | a motley assortment of things -08400191 14 n 01 alphabet_soup 0 001 @ 08398773 n 0000 | a confusing assortment; "Roosevelt created an alphabet soup of federal agencies" -08400331 14 n 01 litter 0 002 @ 07993929 n 0000 + 00058401 v 0101 | the offspring at one birth of a multiparous mammal -08400452 14 n 02 batch 0 clutch 0 003 @ 07951464 n 0000 + 01386073 v 0101 ~ 08400605 n 0000 | a collection of things or persons to be handled together -08400605 14 n 03 schmeer 0 schmear 0 shmear 0 002 @ 08400452 n 0000 ;c 06951067 n 0000 | (Yiddish) a batch of things that go together; "he bought the whole schmeer" -08400772 14 n 01 batch 1 001 @ 07951464 n 0000 | all the loaves of bread baked at the same time -08400870 14 n 01 clutch 1 001 @ 07990824 n 0000 | a number of birds hatched at the same time -08400965 14 n 02 membership 0 rank 2 004 @ 07965085 n 0000 #m 08008335 n 0000 + 13810615 n 0101 + 10307234 n 0101 | the body of members of an organization or group; "they polled their membership"; "they found dissension in their own ranks"; "he joined the ranks of the unemployed" -08401248 14 n 03 branch 0 subdivision 1 arm 0 005 @ 08220714 n 0000 ~ 08145553 n 0000 ~ 08356074 n 0000 ~ 08356375 n 0000 ~ 08356903 n 0000 | a division of some larger or more complex organization; "a branch of Congress"; "botany is a branch of biology"; "the Germanic branch of Indo-European languages" -08401554 14 n 03 clientele 0 patronage 0 business 1 002 @ 07942152 n 0000 + 00908621 v 0203 | customers collectively; "they have an upper class clientele" -08401711 14 n 01 rank_and_file 1 001 @ 07942152 n 0000 | people who constitute the main body of any group -08401819 14 n 04 rabble 1 riffraff 0 ragtag 0 ragtag_and_bobtail 0 002 @ 07947255 n 0000 ~ 08402147 n 0000 | disparaging terms for the common people -08401970 14 n 01 smart_money 0 001 @ 07942152 n 0000 | people who are highly experienced or who have inside information; "the smart money said Truman would lose the election" -08402147 14 n 02 trash 1 scum 1 001 @ 08401819 n 0000 | worthless people -08402222 14 n 01 convocation 0 002 @ 07975026 n 0000 + 00793037 v 0101 | a group gathered in response to a summons -08402339 14 n 01 alma_mater 0 001 @ 08276720 n 0000 | your alma mater is a school you graduated from -08402442 14 n 05 deputation 0 commission 1 delegation 0 delegacy 0 mission 0 007 @ 08008335 n 0000 + 10323182 n 0502 + 02395395 v 0301 + 09944022 n 0201 + 02391803 v 0103 ~ 08402693 n 0000 ~ 08402828 n 0000 | a group of representatives or delegates -08402693 14 n 01 diplomatic_mission 0 003 @ 08402442 n 0000 ~ 08403082 n 0000 %m 09821086 n 0000 | a mission serving diplomatic ends -08402828 14 n 01 embassy 0 002 @ 08402442 n 0000 ~ 08402944 n 0000 | an ambassador and his entourage collectively -08402944 14 n 01 High_Commission 0 002 @ 08402828 n 0000 ;r 08860123 n 0000 | an embassy of one British Commonwealth country to another -08403082 14 n 02 legation 0 foreign_mission 1 002 @ 08402693 n 0000 %m 10253479 n 0000 | a permanent diplomatic mission headed by a minister -08403225 14 n 04 mission 1 missionary_post 0 missionary_station 0 foreign_mission 0 002 @ 08009834 n 0000 + 10323182 n 0102 | an organization of missionaries in a foreign land sent to carry on religious work -08403435 14 n 01 press_corps 0 002 @ 08403631 n 0000 #p 06263369 n 0000 | a group of journalists representing different publications who all cover the same topics; "the White House press corps" -08403631 14 n 02 occupational_group 0 vocation 0 003 @ 07965085 n 0000 ~ 08112096 n 0000 ~ 08403435 n 0000 | a body of people doing the same kind of work -08403787 14 n 01 opposition 0 002 @ 07965085 n 0000 ~ 08403907 n 0000 | a body of people united in opposing something -08403907 14 n 02 Iraqi_National_Congress 0 INC 0 001 @ 08403787 n 0000 | a heterogeneous collection of groups united in their opposition to Saddam Hussein's government of Iraq; formed in 1992 it is comprised of Sunni and Shiite Arabs and Kurds who hope to build a new government -08404188 14 n 01 Opposition 1 001 @ 08256968 n 0000 | the major political party opposed to the party in office and prepared to replace it if elected; "Her Majesty's loyal opposition" -08404373 14 n 01 commando 0 004 @ 08198398 n 0000 ;c 08199025 n 0000 ~ 08345770 n 0000 ~ 08346031 n 0000 | an amphibious military unit trained for raids into enemy territory -08404549 14 n 02 contingent 0 detail 0 003 @ 08198398 n 0000 ;c 08199025 n 0000 + 00678105 v 0201 | a temporary military unit; "the peacekeeping force includes one British contingent" -08404735 14 n 01 general_staff 0 002 @ 08439955 n 0000 ;c 08199025 n 0000 | military officers assigned to assist a senior officer in planning military policy -08404895 14 n 01 headquarters 0 006 @ 08198398 n 0000 ;u 06295235 n 0000 ;c 08199025 n 0000 ~ 08174995 n 0000 ~ 08175498 n 0000 %p 08405124 n 0000 | (plural) a military unit consisting of a commander and the headquarters staff -08405124 14 n 01 headquarters_staff 0 003 @ 08439955 n 0000 #p 08404895 n 0000 ;c 08199025 n 0000 | military staff stationed at headquarters -08405267 14 n 02 high_command 0 supreme_headquarters 0 003 @ 08381436 n 0000 ;c 08199025 n 0000 ~ 08174167 n 0000 | the highest leaders in an organization (e.g. the commander-in-chief and senior officers of the military) -08405490 14 n 02 posse 0 posse_comitatus 0 002 @ 08209687 n 0000 %m 10456391 n 0000 | a temporary police force -08405603 14 n 01 kingdom 1 002 @ 08363812 n 0000 + 10231515 n 0101 | a monarchy with a king or queen as head of state -08405723 14 n 01 empire 0 004 @ 08363812 n 0000 + 02747036 a 0101 ~ 08405873 n 0000 ~ 08406036 n 0000 | a monarchy with an emperor as head of state -08405873 14 n 01 Mogul_empire 0 002 @ 08405723 n 0000 ;r 08900535 n 0000 | an empire established by the Mogul conquerors of India that reigned from 1526 to 1857 -08406036 14 n 01 Second_Empire 0 001 @ 08405723 n 0000 | the imperial government of Napoleon III in France from 1852-1870 -08406160 14 n 01 rogue's_gallery 0 001 @ 07951464 n 0000 | a collection of pictures of criminals -08406259 14 n 02 galere 0 rogue's_gallery 1 001 @ 08240633 n 0000 | a coterie of undesirable people -08406361 14 n 01 hard_core 0 001 @ 08240633 n 0000 | the most dedicated and intensely loyal nucleus of a group or movement -08406486 14 n 01 foundation 0 003 @ 08054721 n 0000 + 02427103 v 0103 ~ 08406619 n 0000 | an institution supported by an endowment -08406619 14 n 01 charity 0 004 @ 08406486 n 0000 ~ 08406825 n 0000 ~ 08407000 n 0000 ~ 08407140 n 0000 | a foundation created to promote the public good (not for assistance to any particular individuals) -08406825 14 n 01 philanthropic_foundation 0 001 @ 08406619 n 0000 | a foundation that provides funds for science or art or education or religion or relief from disease etc. -08407000 14 n 01 private_foundation 0 001 @ 08406619 n 0000 | a charity that does not receive a major part of its support from the public -08407140 14 n 01 public_charity 0 001 @ 08406619 n 0000 | a charity that is deemed to receive the major part of its support from the public (rather than from a small group of individuals) -08407330 14 n 01 institute 0 001 @ 08049401 n 0000 | an association organized to promote art or science or education -08407449 14 n 02 sisterhood 1 sistership 0 001 @ 08049401 n 0000 | an association or society of women who are linked together by a common religion or trade or interest -08407619 14 n 03 exhibition 0 exposition 0 expo 0 005 @ 07951464 n 0000 ;c 00933420 n 0000 ~ 08407839 n 0000 ~ 08408115 n 0000 ~ 08408267 n 0000 | a collection of things (goods or works of art etc.) for public display -08407839 14 n 01 art_exhibition 0 002 @ 08407619 n 0000 ~ 08407969 n 0000 | an exhibition of art objects (paintings or statues) -08407969 14 n 01 retrospective 0 002 @ 08407839 n 0000 + 01884539 a 0101 | an exhibition of a representative selection of an artist's life work -08408115 14 n 02 peepshow 0 raree-show 0 001 @ 08407619 n 0000 | an exhibition of pictures or objects viewed through a small hole or magnifying glass -08408267 14 n 01 fair 0 001 @ 08407619 n 0000 | a competitive exhibition of farm products; "she won a blue ribbon for her baking at the county fair" -08408418 14 n 02 book_fair 0 bookfair 0 001 @ 08408557 n 0000 | fair organized by publishers or booksellers to promote the sale of books -08408557 14 n 01 fair 1 002 @ 07975026 n 0000 ~ 08408418 n 0000 | gathering of producers to promote business; "world fair"; "trade fair"; "book fair" -08408709 14 n 01 side 0 004 @ 08189659 n 0000 ;c 00455599 n 0000 ;c 00973077 n 0000 ;c 06148148 n 0000 | one of two or more contesting groups; "the Confederate side was prepared to attack" -08408900 14 n 02 working_group 0 working_party 0 002 @ 08189659 n 0000 ~ 08409130 n 0000 | a group of people working together temporarily until some goal is achieved; "the working group was supposed to report back in two weeks" -08409130 14 n 01 expedition 0 002 @ 08408900 n 0000 ~i 08409323 n 0000 | an organized group of people undertaking a journey for a particular purpose; "an expedition was sent to explore Mars" -08409323 14 n 01 Lewis_and_Clark_Expedition 0 001 @i 08409130 n 0000 | an expedition sent by Thomas Jefferson to explore the northwestern territories of the United States; led by Meriwether Lewis and William Clark; traveled from St. Louis to the mouth of the Columbia River from 1803 to 1806 -08409617 14 n 05 senior_high_school 0 senior_high 0 high 0 highschool 0 high_school 0 001 @ 08284481 n 0000 | a public secondary school usually including grades 9 through 12; "he goes to the neighborhood highschool" -08409835 14 n 02 junior_high_school 0 junior_high 0 001 @ 08284481 n 0000 | a secondary school usually including 7th and 8th grades -08409969 14 n 02 preparatory_school 0 prep_school 0 002 @ 08284481 n 0000 ~ 08410092 n 0000 | a private secondary school -08410092 14 n 02 choir_school 0 schola_cantorum 0 001 @ 08409969 n 0000 | a school that is part of a cathedral or monastery where boys with singing ability can receive a general education -08410282 14 n 01 public_school 0 002 @ 08276720 n 0000 ~ 08410454 n 0000 | a tuition free school in the United States supported by taxes and controlled by a school board -08410454 14 n 01 charter_school 0 001 @ 08410282 n 0000 | an experimental public school for kindergarten through grade 12; created and organized by teachers and parents and community leaders; operates independently of other schools -08410688 14 n 01 public_school 1 004 @ 08284481 n 0000 ;r 08860123 n 0000 ~ 08410891 n 0000 ~ 08411031 n 0000 | private independent secondary school in Great Britain supported by endowment and tuition -08410891 14 n 01 Eton_College 0 002 @ 08410688 n 0000 #p 08881256 n 0000 | a public school for boys founded in 1440; located in Berkshire -08411031 14 n 01 Winchester_College 0 002 @ 08410688 n 0000 #p 08880859 n 0000 | the oldest English public school; located in Winchester -08411170 14 n 01 private_school 0 004 @ 08276720 n 0000 ~ 08284994 n 0000 ~ 08411585 n 0000 ~ 08411701 n 0000 | a school established and controlled privately and supported by endowment and tuition -08411369 14 n 01 Catholic_school 0 001 @ 08284221 n 0000 | a parochial school maintained by the Catholic Church -08411483 14 n 01 dance_school 0 001 @ 08276720 n 0000 | a school where students are taught to dance -08411585 14 n 01 day_school 0 002 @ 08411170 n 0000 ! 08411701 n 0101 | a private school taking day students only -08411701 14 n 01 boarding_school 0 002 @ 08411170 n 0000 ! 08411585 n 0101 | a private school where students are lodged and fed as well as taught -08411849 14 n 01 day_school 1 002 @ 08276720 n 0000 ! 08411970 n 0101 | a school giving instruction during the daytime -08411970 14 n 01 night_school 0 002 @ 08276720 n 0000 ! 08411849 n 0101 | a school that holds classes in the evenings for students who cannot attend during the day -08412136 14 n 01 kindergarten 0 001 @ 08276539 n 0000 | a preschool for children age 4 to 6 to prepare them for primary school -08412265 14 n 01 nursery_school 0 001 @ 08276539 n 0000 | a small preschool for small children -08412362 14 n 02 playschool 0 play_group 0 001 @ 08276539 n 0000 | a small informal nursery group meeting for half-day sessions -08412492 14 n 02 Sunday_school 0 Sabbath_school 0 001 @ 08276720 n 0000 | school meeting on Sundays for religious instruction -08412620 14 n 02 normal_school 0 teachers_college 0 001 @ 08282364 n 0000 | a two-year school for training elementary teachers -08412749 14 n 04 grade_school 0 grammar_school 0 elementary_school 0 primary_school 0 003 @ 08276720 n 0000 ~ 08277612 n 0000 ~ 08277709 n 0000 | a school for young children; usually the first 6 or 8 grades -08412958 14 n 01 grammar_school 1 001 @ 08284481 n 0000 | a secondary school emphasizing Latin and Greek in preparation for college -08413092 14 n 01 secondary_modern_school 0 001 @ 08284481 n 0000 | a former British secondary school emphasizing practical rather than academic education -08413248 14 n 02 comprehensive_school 0 composite_school 0 001 @ 08284481 n 0000 | a large British or Canadian secondary school for children of all abilities -08413408 14 n 02 school_board 0 board_of_education 0 001 @ 08322981 n 0000 | a board in charge of local public schools -08413529 14 n 01 zoning_board 0 001 @ 08322981 n 0000 | a board of officials who divide an area into zones that are subject to different restrictions -08413681 14 n 01 zoning_commission 0 001 @ 08324514 n 0000 | a commission delegated to supervise the zoning of areas for residential or commercial use -08413834 14 n 01 immigration 0 003 @ 07965085 n 0000 + 00413704 v 0101 + 00413432 v 0101 | the body of immigrants arriving during a specified interval; "the increased immigration strengthened the colony" -08414040 14 n 01 inspectorate 0 001 @ 07965085 n 0000 | a body of inspectors -08414119 14 n 01 jury 0 007 @ 07965085 n 0000 #m 08329453 n 0000 ~ 08414964 n 0000 ~ 08415127 n 0000 ~ 08415272 n 0000 ~ 08415469 n 0000 %m 10228278 n 0000 | a body of citizens sworn to give a true verdict according to the evidence presented in a court of law -08414381 14 n 01 panel 0 005 @ 07965085 n 0000 + 10396106 n 0102 + 10396106 n 0101 + 00625963 v 0103 %m 10396106 n 0000 | a group of people gathered for a special purpose as to plan or discuss an issue or judge a contest etc -08414608 14 n 02 panel 2 venire 0 004 @ 07965085 n 0000 ;c 08441203 n 0000 + 10396106 n 0102 + 10396106 n 0101 | (law) a group of people summoned for jury service (from whom a jury will be chosen) -08414807 14 n 02 jury 1 panel 1 004 @ 08324514 n 0000 + 10396106 n 0202 + 10396106 n 0201 + 00625963 v 0203 | a committee appointed to judge a competition -08414964 14 n 01 grand_jury 0 002 @ 08414119 n 0000 ;c 08441203 n 0000 | a jury to inquire into accusations of crime and to evaluate the grounds for indictments -08415127 14 n 01 hung_jury 0 002 @ 08414119 n 0000 ;c 08441203 n 0000 | a jury that is unable to agree on a verdict (the result is a mistrial) -08415272 14 n 02 petit_jury 0 petty_jury 0 003 @ 08414119 n 0000 ;c 08441203 n 0000 %m 10420277 n 0000 | a jury of 12 to determine the facts and decide the issue in civil or criminal proceedings -08415469 14 n 02 special_jury 0 blue_ribbon_jury 0 002 @ 08414119 n 0000 ;c 08441203 n 0000 | a jury whose members are selected for special knowledge for a case involving complicated issues -08415661 14 n 01 spearhead 0 002 @ 08198398 n 0000 ;c 08199025 n 0000 | the leading military unit in an attack -08415774 14 n 01 bevy 1 001 @ 07975026 n 0000 | a large gathering of people of a particular type; "he was surrounded by a bevy of beauties in bathing attire"; "a bevy of young beach boys swarmed around him" -08415983 14 n 01 firing_line 0 001 @ 07974025 n 0000 | the most advanced and responsible group in an activity; "the firing line is where the action is" -08416137 14 n 01 immigrant_class 0 001 @ 07974025 n 0000 | recent immigrants who are lumped together as a class by their low socioeconomic status in spite of different cultural backgrounds -08416328 14 n 02 left 0 left_wing 0 002 @ 08251877 n 0000 + 10619176 n 0201 | those who support varying degrees of social or political or economic change designed to promote the public welfare -08416523 14 n 01 center 0 003 @ 07974025 n 0000 + 02031624 a 0101 %m 09904837 n 0000 | politically moderate persons; centrists -08416652 14 n 02 right 0 right_wing 0 004 @ 08251877 n 0000 + 10531227 n 0201 ~ 08416890 n 0000 ~ 08417099 n 0000 | those who support political or social or economic conservatism; those who believe that things are better left unchanged -08416890 14 n 01 religious_right 0 001 @ 08416652 n 0000 | United States political faction that advocates social and political conservativism, school prayer, and federal aid for religious groups and schools -08417099 14 n 01 hard_right 0 001 @ 08416652 n 0000 | the extreme right wing -08417178 14 n 01 old_guard 0 001 @ 08251877 n 0000 | a faction that is unwilling to accept new ideas -08417281 14 n 01 pro-choice_faction 0 001 @ 08251877 n 0000 | those who argue that the decision to have an induced abortion should be made by the mother -08417436 14 n 01 pro-life_faction 0 001 @ 08251877 n 0000 | those who argue that induced abortion is killing and should be prohibited -08417572 14 n 01 old_school 0 001 @ 07974025 n 0000 | a class of people favoring traditional ideas -08417673 14 n 01 convoy 1 002 @ 07951464 n 0000 + 02026433 v 0101 | a collection of merchant ships with an escort of warships -08417801 14 n 01 convoy 0 002 @ 00296585 n 0000 + 02026433 v 0101 | a procession of land vehicles traveling together -08417920 14 n 03 seance 0 sitting 0 session 0 003 @ 08310389 n 0000 %p 07257227 n 0000 %p 07257393 n 0000 | a meeting of spiritualists; "the seance was held in the medium's parlor" -08418103 14 n 03 aggregate 0 congeries 0 conglomeration 0 005 @ 07959016 n 0000 + 00158804 v 0303 + 00467240 a 0101 %m 01383638 n 0000 %m 01384313 n 0000 | a sum total of many heterogenous things taken together -08418316 14 n 01 agent_bank 1 001 @ 08420278 n 0000 | a bank that acts as an agent for a foreign bank -08418420 14 n 02 commercial_bank 0 full_service_bank 0 002 @ 08420278 n 0000 ~ 08418631 n 0000 | a financial institution that accepts demand deposits and makes loans and provides other services for the public -08418631 14 n 01 national_bank 0 002 @ 08418420 n 0000 #m 08350470 n 0000 | a commercial bank chartered by the federal government -08418763 14 n 01 state_bank 0 001 @ 08420278 n 0000 | a bank chartered by a state rather than by the federal government -08418885 14 n 02 lead_bank 0 agent_bank 0 001 @ 08420278 n 0000 | a bank named by a lending syndicate of several banks to protect their interests -08419033 14 n 01 member_bank 0 002 @ 08420278 n 0000 #m 08350470 n 0000 | a bank that is a member of the Federal Reserve System -08419163 14 n 02 merchant_bank 0 acquirer 2 002 @ 08420278 n 0000 + 02210855 v 0202 | a credit card processing bank; merchants receive credit for credit card receipts less a processing fee -08419354 14 n 01 acquirer 1 002 @ 08054721 n 0000 + 02210855 v 0102 | the financial institution that dispenses cash in automated teller machines and collects a fee from the bank that issued the credit card -08419562 14 n 01 acquirer 0 002 @ 08420278 n 0000 + 02210855 v 0102 | a corporation gaining financial control over another corporation or financial institution through a payment in cash or an exchange of stock -08419774 14 n 01 transfer_agent 0 001 @ 08057206 n 0000 | an agency (usually a bank) that is appointed by a corporation to keep records of its stock and bond owners and to resolve problems about certificates -08419984 14 n 01 nondepository_financial_institution 0 007 @ 08054721 n 0000 #m 08072837 n 0000 ~ 08069878 n 0000 ~ 08070465 n 0000 ~ 08070674 n 0000 ~ 08070850 n 0000 ~ 08420839 n 0000 | a financial institution that funds their investment activities from the sale of securities or insurance -08420278 14 n 04 depository_financial_institution 0 bank 0 banking_concern 0 banking_company 0 016 @ 08054721 n 0000 #m 08066491 n 0000 + 02343374 v 0201 + 02343056 v 0201 + 02310855 v 0202 ~ 08234628 n 0000 ~ 08350919 n 0000 ~ 08418316 n 0000 ~ 08418420 n 0000 ~ 08418763 n 0000 ~ 08418885 n 0000 ~ 08419033 n 0000 ~ 08419163 n 0000 ~ 08419562 n 0000 ~ 08422524 n 0000 ~ 08423298 n 0000 | a financial institution that accepts deposits and channels the money into lending activities; "he cashed a check at the bank"; "that bank holds the mortgage on my home" -08420839 14 n 01 finance_company 0 005 @ 08419984 n 0000 ~ 08421100 n 0000 ~ 08421441 n 0000 ~ 08421644 n 0000 ~ 08421807 n 0000 | a financial institution (often affiliated with a holding company or manufacturer) that makes loans to individuals or businesses -08421100 14 n 02 consumer_finance_company 0 small_loan_company 0 002 @ 08420839 n 0000 ~ 08421291 n 0000 | a finance company that makes loans to people who have trouble getting a bank loan -08421291 14 n 02 industrial_bank 0 industrial_loan_company 0 001 @ 08421100 n 0000 | a finance company that makes small loans to industrial workers -08421441 14 n 01 captive_finance_company 0 001 @ 08420839 n 0000 | a finance company owned by a manufacturer to finance dealers' inventories or to make loans to consumers buying the company's products -08421644 14 n 01 sales_finance_company 0 001 @ 08420839 n 0000 | a finance company that buys (at a discount) the installment sales contracts of retail merchants -08421807 14 n 02 commercial_finance_company 0 commercial_credit_company 0 001 @ 08420839 n 0000 | a finance company that makes loans to manufacturers and wholesalers -08421975 14 n 02 Farm_Credit_System 0 FCS 0 001 @ 08066491 n 0000 | a cooperative nationwide system of banks and associations providing credit to farmers and related businesses; originally capitalized by the federal government but now owned by its members and borrowers -08422247 14 n 01 hawala 0 002 @ 08066491 n 0000 ;c 00759694 n 0000 | an underground banking system based on trust whereby money can be made available internationally without actually moving it or leaving a record of the transaction; "terrorists make extensive use of hawala" -08422524 14 n 01 thrift_institution 0 003 @ 08420278 n 0000 ~ 08422714 n 0000 ~ 08423057 n 0000 | a depository financial institution intended to encourage personal savings and home buying -08422714 14 n 02 savings_and_loan 0 savings_and_loan_association 0 002 @ 08422524 n 0000 ~ 08422930 n 0000 | a thrift institution that is required by law to make a certain percentage of its loans as home mortgages -08422930 14 n 01 building_society 0 001 @ 08422714 n 0000 | British equivalent of United States savings and loan association -08423057 14 n 01 savings_bank 0 003 @ 08422524 n 0000 ~ 08424501 n 0000 ~ 08424662 n 0000 | a thrift institution in the northeastern United States; since deregulation in the 1980s they offer services competitive with many commercial banks -08423298 14 n 01 Home_Loan_Bank 0 002 @ 08420278 n 0000 #m 08423490 n 0000 | one of 11 regional banks that monitor and make short-term credit advances to thrift institutions in their region -08423490 14 n 01 Federal_Home_Loan_Bank_System 0 002 @ 08054721 n 0000 %m 08423298 n 0000 | the central credit system for thrift institutions -08423634 14 n 02 Federal_Housing_Administration 0 FHA 0 002 @ 08337324 n 0000 #p 08135062 n 0000 | the federal agency in the Department of Housing and Urban Development that insures residential mortgages -08423840 14 n 02 child_welfare_agency 0 child_welfare_service 0 001 @ 08077292 n 0000 | an administrative unit responsible for social work concerned with the welfare and vocational training of children -08424044 14 n 02 Securities_and_Exchange_Commission 0 SEC 0 001 @ 08338847 n 0000 | an independent federal agency that oversees the exchange of securities to protect investors -08424222 14 n 02 trust_company 0 trust_corporation 0 001 @ 08054721 n 0000 | an organization (usually with a commercial bank) that is engaged as a trustee or fiduciary or agent in handling trust funds or estates of custodial arrangements or stock transfers or related services -08424501 14 n 02 mutual_savings_bank 0 MSB 0 001 @ 08423057 n 0000 | a state-chartered savings bank owned by its depositors and managed by a board of trustees -08424662 14 n 02 federal_savings_bank 0 FSB 0 001 @ 08423057 n 0000 | a federally chartered savings bank -08424769 14 n 02 firing_squad 0 firing_party 0 002 @ 08218122 n 0000 ;c 08199025 n 0000 | a squad formed to fire volleys at a military funeral or to carry out a military execution -08424951 14 n 01 market 0 003 @ 07974025 n 0000 + 02298160 v 0101 ~ 08425173 n 0000 | the customers for a particular product or service; "before they publish any book they try to determine the size of the market for it" -08425173 14 n 01 black_market 0 003 @ 08424951 n 0000 + 02242256 v 0102 %m 09858560 n 0000 | people who engage in illicit trade -08425303 14 n 01 traffic 0 005 @ 07951464 n 0000 ~ 08425556 n 0000 ~ 08425657 n 0000 ~ 08425777 n 0000 ~ 08425888 n 0000 | the aggregation of things (pedestrians or vehicles) coming and going in a particular locality during a specified period of time -08425556 14 n 01 air_traffic 0 001 @ 08425303 n 0000 | traffic created by the movement of aircraft -08425657 14 n 01 commuter_traffic 0 001 @ 08425303 n 0000 | traffic created by people going to or returning from work -08425777 14 n 02 pedestrian_traffic 0 foot_traffic 0 001 @ 08425303 n 0000 | people coming and going on foot -08425888 14 n 02 vehicular_traffic 0 vehicle_traffic 0 005 @ 08425303 n 0000 ~ 08426111 n 0000 ~ 08426211 n 0000 ~ 08426298 n 0000 ~ 08426378 n 0000 | the aggregation of vehicles coming and going in a particular locality -08426111 14 n 02 automobile_traffic 0 car_traffic 0 001 @ 08425888 n 0000 | cars coming and going -08426211 14 n 01 bicycle_traffic 0 001 @ 08425888 n 0000 | bicycles coming and going -08426298 14 n 01 bus_traffic 0 001 @ 08425888 n 0000 | buses coming and going -08426378 14 n 01 truck_traffic 0 001 @ 08425888 n 0000 | trucks coming and going -08426461 14 n 01 formation 0 012 @ 07938773 n 0000 + 02448185 v 0101 ~ 08220534 n 0000 ~ 08426816 n 0000 ~ 08429744 n 0000 ~ 08429899 n 0000 ~ 08430203 n 0000 ~ 08430568 n 0000 ~ 08481832 n 0000 ~ 08482113 n 0000 ~ 08482271 n 0000 ~ 08482700 n 0000 | an arrangement of people or things acting as a unit; "a defensive formation"; "a formation of planes" -08426816 14 n 01 military_formation 0 006 @ 08426461 n 0000 ;c 08199025 n 0000 ~ 08426993 n 0000 ~ 08427163 n 0000 ~ 08427282 n 0000 ~ 08427453 n 0000 | a formation of troops -08426993 14 n 01 open_order 0 002 @ 08426816 n 0000 ;c 08199025 n 0000 | a military formation leaving enough space between ranks to allow an inspecting officer to pass -08427163 14 n 01 close_order 0 002 @ 08426816 n 0000 ;c 08199025 n 0000 | a military formation for drill or marching -08427282 14 n 01 extended_order 0 002 @ 08426816 n 0000 ;c 08199025 n 0000 | a military formation for skirmishing; as widely separated as the tactical situation permits -08427453 14 n 02 sick_call 0 sick_parade 0 002 @ 08426816 n 0000 ;c 08199025 n 0000 | the daily military formation at which individuals report to the medical officer as sick -08427629 14 n 03 caravan 0 train 0 wagon_train 0 003 @ 00296585 n 0000 + 01949333 v 0101 %m 03122295 n 0000 | a procession (of wagons or mules or camels) traveling together in single file; "we were part of a caravan of almost a thousand camels"; "they joined the wagon train for safety" -08427918 14 n 01 cavalcade 0 001 @ 00296585 n 0000 | a procession of people traveling on horseback -08428019 14 n 01 march 0 007 @ 00296585 n 0000 + 02084587 v 0101 + 02521816 v 0102 + 01919391 v 0101 + 02084380 v 0101 + 01996735 v 0101 ~ 08428252 n 0000 | a procession of people walking together; "the march went up Fifth Avenue" -08428252 14 n 01 hunger_march 0 002 @ 08428019 n 0000 %m 10192704 n 0000 | a march of protest or demonstration by the unemployed -08428383 14 n 01 motorcade 0 001 @ 00296585 n 0000 | a procession of people traveling in motor cars -08428485 14 n 01 parade 0 003 @ 00296585 n 0000 + 01924505 v 0101 ~ 08428623 n 0000 | a ceremonial procession including people marching -08428623 14 n 03 callithump 0 callathump 0 callithump_parade 0 002 @ 08428485 n 0000 + 02675320 a 0101 | a noisy boisterous parade -08428756 14 n 03 file 0 single_file 0 Indian_file 0 004 @ 08430203 n 0000 + 01920048 v 0101 ~ 08428944 n 0000 ~ 08429052 n 0000 | a line of persons or things ranged one behind the other -08428944 14 n 01 snake_dance 0 001 @ 08428756 n 0000 | a group advancing in a single-file serpentine path -08429052 14 n 01 column 0 002 @ 08428756 n 0000 ;c 08199025 n 0000 | a line of units following one after another -08429167 14 n 04 cortege 0 retinue 0 suite 0 entourage 0 003 @ 07975026 n 0000 %p 08215801 n 0000 ~ 08329322 n 0000 | the group following and attending to some important person -08429346 14 n 01 Praetorian_Guard 0 002 @ 08215801 n 0000 %m 10463259 n 0000 | the elite bodyguard of a Roman Emperor in ancient Rome -08429482 14 n 01 cortege 1 001 @ 00296585 n 0000 | a funeral procession -08429556 14 n 02 recession 0 recessional 0 002 @ 00296585 n 0000 + 03109261 a 0201 | the withdrawal of the clergy and choir from the chancel to the vestry at the end of a church service -08429744 14 n 01 backfield 0 003 @ 08426461 n 0000 #m 08080025 n 0000 %m 00725775 n 0000 | the offensive football players who line up behind the linemen -08429899 14 n 01 secondary 0 003 @ 08426461 n 0000 #m 08080025 n 0000 %m 00725775 n 0000 | the defensive football players who line up behind the linemen -08430054 14 n 01 linemen 0 003 @ 08430568 n 0000 #m 08080025 n 0000 %m 00726100 n 0000 | the football players who line up on the line of scrimmage -08430203 14 n 01 line 1 010 @ 08426461 n 0000 + 02703539 v 0101 ~ 08270417 n 0000 ~ 08428756 n 0000 ~ 08430940 n 0000 ~ 08431048 n 0000 ~ 08431345 n 0000 ~ 08432149 n 0000 ~ 08432264 n 0000 ~ 08432345 n 0000 | a formation of people or things one behind another; "the line stretched clear around the corner"; "you must wait in a long line at the checkout counter" -08430568 14 n 01 line 3 008 @ 08426461 n 0000 ~ 04095725 n 0000 ~ 08188449 n 0000 ~ 08270417 n 0000 ~ 08430054 n 0000 ~ 08431205 n 0000 ~ 08431437 n 0000 ~ 08431942 n 0000 | a formation of people or things one beside another; "the line of soldiers advanced with their bayonets fixed"; "they were arrayed in line of battle"; "the cast stood in line for the curtain call" -08430940 14 n 01 line_of_march 0 001 @ 08430203 n 0000 | the arrangement of people in a line for marching -08431048 14 n 01 line_of_succession 0 001 @ 08430203 n 0000 | the order in which individuals are expected to succeed one another in some official position -08431205 14 n 01 lineup 0 002 @ 08430568 n 0000 + 02036755 v 0101 | a line of persons arranged by police for inspection or identification -08431345 14 n 01 picket_line 0 001 @ 08430203 n 0000 | a line of people acting as pickets -08431437 14 n 01 row 0 003 @ 08430568 n 0000 ~ 08431600 n 0000 ~ 08431721 n 0000 | an arrangement of objects or people side by side in a line; "a row of chairs" -08431600 14 n 01 serration 0 001 @ 08431437 n 0000 | a row of notches; "the pliers had serrations to improve the grip" -08431721 14 n 01 terrace 0 003 @ 08431437 n 0000 ;r 08860123 n 0000 %m 04413969 n 0000 | a row of houses built in a similar style and having common dividing walls (or the street on which they face); "Grosvenor Terrace" -08431942 14 n 01 rank 0 002 @ 08430568 n 0000 %m 10056611 n 0000 | a row or line of people (especially soldiers or police) standing abreast of one another; "the entrance was guarded by ranks of policemen" -08432149 14 n 01 conga_line 0 001 @ 08430203 n 0000 | a line of people in single file performing the conga dance -08432264 14 n 01 trap_line 0 001 @ 08430203 n 0000 | a line or series of traps -08432345 14 n 02 queue 0 waiting_line 0 009 @ 08430203 n 0000 + 02036755 v 0103 ~ 08432606 n 0000 ~ 08432714 n 0000 ~ 08432820 n 0000 ~ 08432974 n 0000 ~ 08433077 n 0000 ~ 08433245 n 0000 ~ 08433343 n 0000 | a line of people or vehicles waiting for something -08432606 14 n 02 breadline 0 bread_line 0 001 @ 08432345 n 0000 | a queue of people waiting for free food -08432714 14 n 01 checkout_line 0 001 @ 08432345 n 0000 | a queue of people waiting to pay for purchases -08432820 14 n 01 chow_line 0 002 @ 08432345 n 0000 ;c 08199025 n 0000 | a queue of people waiting for food to be served (especially at a military camp) -08432974 14 n 01 gas_line 0 001 @ 08432345 n 0000 | a queue of vehicles waiting to purchase gasoline -08433077 14 n 01 reception_line 0 002 @ 08432345 n 0000 #p 08254331 n 0000 | a line of people (hosts and guests of honor) who welcome the guests at a reception party -08433245 14 n 01 ticket_line 0 001 @ 08432345 n 0000 | a queue of people waiting to buy tickets -08433343 14 n 01 unemployment_line 0 001 @ 08432345 n 0000 | a queue of people waiting for employment -08433447 14 n 01 row 1 002 @ 07939382 n 0000 #m 08266235 n 0000 | a linear array of numbers, letters, or symbols side by side -08433575 14 n 01 column 1 002 @ 07939382 n 0000 #m 08266235 n 0000 | a vertical array of numbers or other information; "he added a column of numbers" -08433727 14 n 02 aviation 0 air_power 0 002 @ 07951464 n 0000 ;c 08199025 n 0000 | the aggregation of a country's military aircraft -08433861 14 n 01 dragnet 0 001 @ 08435388 n 0000 | a system of coordinated measures for apprehending (criminals or other individuals); "caught in the police dragnet" -08434029 14 n 01 machinery 0 001 @ 08435388 n 0000 | a system of means and activities whereby a social institution functions; "the complex machinery of negotiation"; "the machinery of command labored and brought forth an order" -08434259 14 n 02 network 0 web 0 007 @ 08435388 n 0000 + 01672168 v 0201 + 01032840 v 0101 ~ 05501485 n 0000 ~ 08434622 n 0000 ~ 08434704 n 0000 ~ 08435024 n 0000 | an interconnected system of things or people; "he owned a network of shops"; "retirement meant dropping out of a whole network of people who had been part of my life"; "tangled in a web of cloth" -08434622 14 n 01 espionage_network 0 001 @ 08434259 n 0000 | a network of spies -08434704 14 n 01 old_boy_network 0 001 @ 08434259 n 0000 | an exclusive informal network linking members of a social class or profession or organization in order to provide connections and information and favors (especially in business or politics); "professional women have developed an old boy network of their own" -08435024 14 n 01 support_system 0 001 @ 08434259 n 0000 | a network of facilities and people who interact and remain in informal communication for mutual assistance; a network that enables you to live in a certain style -08435246 14 n 01 nonlinear_system 0 001 @ 08435388 n 0000 | a system whose performance cannot be described by equations of the first degree -08435388 14 n 02 system 0 scheme 0 019 @ 00031264 n 0000 ~ 07279045 n 0000 ~ 08166318 n 0000 ~ 08366753 n 0000 ~ 08368757 n 0000 %p 08377806 n 0000 ~ 08378819 n 0000 ~ 08433861 n 0000 ~ 08434029 n 0000 ~ 08434259 n 0000 ~ 08435246 n 0000 ~ 08435937 n 0000 ~ 08436036 n 0000 ~ 08436203 n 0000 ~ 08436288 n 0000 ~ 08436452 n 0000 ~ 09439433 n 0000 ~ 09476011 n 0000 ~ 13125003 n 0000 | a group of independent but interrelated elements comprising a unified whole; "a vast system of production and distribution and consumption keep the country going" -08435937 14 n 01 subsystem 0 001 @ 08435388 n 0000 | a system that is part of some larger system -08436036 14 n 01 organism 0 002 @ 08435388 n 0000 + 02986509 a 0101 | a system considered analogous in structure or function to a living body; "the social organism" -08436203 14 n 01 syntax 0 001 @ 08435388 n 0000 | a systematic orderly arrangement -08436288 14 n 01 body 2 001 @ 08435388 n 0000 | a collection of particulars considered as a system; "a body of law"; "a body of doctrine"; "a body of precedents" -08436452 14 n 01 shebang 0 001 @ 08435388 n 0000 | an entire system; used in the phrase `the whole shebang' -08436562 14 n 02 craft 0 trade 0 002 @ 07974025 n 0000 + 01658762 v 0101 | people who perform a particular kind of skilled work; "he represented the craft of brewers"; "as they say in the trade" -08436759 14 n 03 vegetation 0 flora 0 botany 0 020 @ 07951464 n 0000 #m 07993109 n 0000 ;c 00017222 n 0000 ! 07993279 n 0201 + 00232542 v 0101 -c 01566027 a 0000 -c 01566288 a 0000 -c 02491421 a 0000 -c 02553234 a 0000 + 02598211 a 0102 ~ 08437317 n 0000 ~ 08437515 n 0000 ~ 08438067 n 0000 ~ 08438223 n 0000 ~ 08438384 n 0000 ~ 08438533 n 0000 ~ 08439694 n 0000 ~ 08439808 n 0000 ~ 12621836 n 0000 ~ 13112427 n 0000 | all the plant life in a particular region or period; "Pleistocene vegetation"; "the flora of southern California"; "the botany of China" -08437317 14 n 01 browse 0 001 @ 08436759 n 0000 | vegetation (such as young shoots, twigs, and leaves) that is suitable for animals to eat; "a deer needs to eat twenty pounds of browse every day" -08437515 14 n 05 brush 0 brushwood 0 coppice 0 copse 0 thicket 0 006 @ 08436759 n 0000 + 02573443 a 0102 ~ 08437721 n 0000 ~ 08437847 n 0000 ~ 08437968 n 0000 ~ 08439476 n 0000 | a dense growth of bushes -08437721 14 n 01 brake 0 002 @ 08437515 n 0000 + 02573708 a 0101 | an area thickly overgrown usually with one kind of plant -08437847 14 n 01 canebrake 0 002 @ 08437515 n 0000 %p 12148253 n 0000 | a dense growth of cane (especially giant cane) -08437968 14 n 01 spinney 0 002 @ 08437515 n 0000 ;r 08860123 n 0000 | a copse that shelters game -08438067 14 n 01 growth 0 002 @ 08436759 n 0000 + 01739814 v 0101 | vegetation that has grown; "a growth of trees"; "the only growth was some salt grass" -08438223 14 n 03 scrub 0 chaparral 0 bush 0 003 @ 08436759 n 0000 + 00613975 a 0301 + 02574294 a 0102 | dense vegetation consisting of stunted trees or bushes -08438384 14 n 01 stand 0 001 @ 08436759 n 0000 | a growth of similar plants (usually trees) in a particular area; "they cut down a stand of trees" -08438533 14 n 03 forest 0 wood 0 woods 0 011 @ 08436759 n 0000 + 02573192 a 0303 + 01567888 v 0102 ~ 08438840 n 0000 ~ 08438928 n 0000 ~ 08439022 n 0000 ~ 08439126 n 0000 %m 08439476 n 0000 %m 13104059 n 0000 ~ 13240025 n 0000 ~ 13240203 n 0000 | the trees and other plants in a large densely wooded area -08438840 14 n 01 bosk 0 002 @ 08438533 n 0000 + 02573443 a 0101 | a small wooded area -08438928 14 n 01 grove 0 001 @ 08438533 n 0000 | a small growth of trees without underbrush -08439022 14 n 01 jungle 1 002 @ 08438533 n 0000 + 02573987 a 0101 | an impenetrable equatorial forest -08439126 14 n 02 rain_forest 0 rainforest 0 003 @ 08438533 n 0000 ~ 08439268 n 0000 ~ 08439369 n 0000 | a forest with heavy annual rainfall -08439268 14 n 01 temperate_rain_forest 0 001 @ 08439126 n 0000 | a rain forest in a temperate area -08439369 14 n 02 tropical_rain_forest 0 selva 0 001 @ 08439126 n 0000 | a rain forest in a tropical area -08439476 14 n 03 underbrush 0 undergrowth 0 underwood 0 003 @ 08437515 n 0000 #m 08438533 n 0000 ~ 13112296 n 0000 | the brush (small trees and bushes and ferns etc.) growing beneath taller trees in a wood or forest -08439694 14 n 01 shrubbery 0 002 @ 08436759 n 0000 %m 13112664 n 0000 | a collection of shrubs growing together -08439808 14 n 01 garden 0 002 @ 08436759 n 0000 + 01740969 v 0101 | the flowers or vegetables or fruits or herbs that are cultivated in a garden -08439955 14 n 01 staff 1 012 @ 08208016 n 0000 + 01095739 v 0101 + 01088749 v 0101 ~ 08063129 n 0000 ~ 08352303 n 0000 ~ 08352473 n 0000 ~ 08352613 n 0000 ~ 08352720 n 0000 ~ 08352848 n 0000 ~ 08404735 n 0000 ~ 08405124 n 0000 %m 10644598 n 0000 | personnel who assist their superior in carrying out an assigned task; "the hospital has an excellent nursing staff"; "the general relied on his staff to make routine decisions" -08440382 14 n 01 line_personnel 0 001 @ 08208016 n 0000 | personnel having direct job performance responsibilities -08440499 14 n 01 management_personnel 0 001 @ 08208016 n 0000 | personnel having overall planning and direction responsibilities -08440630 14 n 0b dictatorship 0 absolutism 0 authoritarianism 0 Caesarism 0 despotism 0 monocracy 0 one-man_rule 0 shogunate 0 Stalinism 0 totalitarianism 0 tyranny 0 006 @ 08361001 n 0000 + 10646325 n 0901 + 03139045 a 0202 + 09755398 n 0201 + 10011902 n 0101 ~ 08441039 n 0000 | a form of government in which the ruler is an absolute dictator (not restricted by a constitution or laws or opposition etc.) -08441039 14 n 01 police_state 0 001 @ 08440630 n 0000 | a country that maintains repressive control over the people by means of police (especially secret police) -08441203 14 n 02 law 0 jurisprudence 0 616 @ 07951464 n 0000 + 10225219 n 0203 + 10227985 n 0201 -c 00055340 a 0000 -c 00055539 a 0000 -c 00093275 a 0000 -c 00137943 a 0000 -c 00348380 a 0000 -c 00349148 a 0000 -c 00512261 a 0000 -c 00553594 a 0000 -c 00777106 a 0000 -c 00917956 a 0000 -c 01314197 a 0000 -c 01347935 a 0000 -c 01348083 a 0000 -c 01471848 a 0000 -c 01471954 a 0000 -c 01885614 a 0000 -c 01977025 a 0000 -c 02444758 a 0000 -c 02444894 a 0000 -c 02500590 a 0000 -c 02723723 a 0000 -c 03044083 a 0000 -c 03109963 a 0000 -c 03111065 a 0000 -c 00044076 r 0000 -c 00238064 r 0000 -c 00086297 n 0000 -c 00087663 n 0000 -c 00090393 n 0000 -c 00122106 n 0000 -c 00196848 n 0000 -c 00198118 n 0000 -c 00206779 n 0000 -c 00221343 n 0000 -c 00232147 n 0000 -c 00232863 n 0000 -c 00361459 n 0000 -c 00522736 n 0000 -c 00611143 n 0000 -c 00632104 n 0000 -c 00733883 n 0000 -c 00736219 n 0000 -c 00739632 n 0000 -c 00739850 n 0000 -c 00740048 n 0000 -c 00740342 n 0000 -c 00740609 n 0000 -c 00765343 n 0000 -c 00765488 n 0000 -c 00765791 n 0000 -c 00772026 n 0000 -c 00772550 n 0000 -c 00772813 n 0000 -c 00774107 n 0000 -c 00775702 n 0000 -c 00809886 n 0000 -c 00810026 n 0000 -c 00810234 n 0000 -c 01023242 n 0000 -c 01025678 n 0000 -c 01026020 n 0000 -c 01068012 n 0000 -c 01077881 n 0000 -c 01080062 n 0000 -c 01108150 n 0000 -c 01125693 n 0000 -c 01126335 n 0000 -c 01126856 n 0000 -c 01128137 n 0000 -c 01131515 n 0000 -c 01147222 n 0000 -c 01162376 n 0000 -c 01165919 n 0000 -c 01180200 n 0000 -c 01180398 n 0000 -c 01180557 n 0000 -c 01180718 n 0000 -c 01180858 n 0000 -c 01181066 n 0000 -c 01181212 n 0000 -c 01181475 n 0000 -c 01181902 n 0000 -c 01182654 n 0000 -c 01183031 n 0000 -c 01183166 n 0000 -c 01183373 n 0000 -c 01183497 n 0000 -c 01183638 n 0000 -c 01183798 n 0000 -c 01184045 n 0000 -c 01184407 n 0000 -c 01184565 n 0000 -c 01184720 n 0000 -c 01184814 n 0000 -c 01185292 n 0000 -c 01185611 n 0000 -c 01185981 n 0000 -c 01186192 n 0000 -c 01186397 n 0000 -c 01186578 n 0000 -c 01186810 n 0000 -c 01187085 n 0000 -c 01187230 n 0000 -c 01187463 n 0000 -c 01187620 n 0000 -c 01187810 n 0000 -c 01188273 n 0000 -c 01188537 n 0000 -c 01188783 n 0000 -c 01189001 n 0000 -c 01189650 n 0000 -c 01189929 n 0000 -c 01190172 n 0000 -c 01190364 n 0000 -c 01190561 n 0000 -c 01191158 n 0000 -c 01191364 n 0000 -c 01191975 n 0000 -c 01192150 n 0000 -c 01192463 n 0000 -c 01192633 n 0000 -c 01192814 n 0000 -c 01193044 n 0000 -c 01193176 n 0000 -c 01193535 n 0000 -c 01193672 n 0000 -c 01193886 n 0000 -c 01194021 n 0000 -c 01194125 n 0000 -c 01194225 n 0000 -c 01194331 n 0000 -c 01194615 n 0000 -c 01194711 n 0000 -c 01194904 n 0000 -c 01195187 n 0000 -c 01195380 n 0000 -c 01195584 n 0000 -c 01195867 n 0000 -c 01196759 n 0000 -c 01197258 n 0000 -c 01197658 n 0000 -c 01197928 n 0000 -c 01198068 n 0000 -c 01198307 n 0000 -c 01198588 n 0000 -c 01198750 n 0000 -c 01199035 n 0000 -c 01199252 n 0000 -c 01199365 n 0000 -c 01199697 n 0000 -c 01200000 n 0000 -c 01200266 n 0000 -c 01200502 n 0000 -c 01200857 n 0000 -c 01201271 n 0000 -c 01201429 n 0000 -c 01223257 n 0000 -c 01236491 n 0000 -c 01240979 n 0000 -c 01241216 n 0000 -c 01249315 n 0000 -c 01249616 n 0000 -c 01252124 n 0000 -c 01257701 n 0000 -c 01258251 n 0000 -c 01259034 n 0000 -c 02789770 n 0000 -c 02829116 n 0000 -c 03120778 n 0000 -c 03121298 n 0000 -c 03217191 n 0000 -c 03751590 n 0000 -c 04678401 n 0000 -c 04809642 n 0000 -c 04811296 n 0000 -c 05175613 n 0000 -c 05176846 n 0000 -c 05179180 n 0000 -c 05179567 n 0000 -c 05181754 n 0000 -c 05182563 n 0000 -c 05183242 n 0000 -c 05183453 n 0000 -c 05183624 n 0000 -c 05183779 n 0000 -c 05183932 n 0000 -c 05184082 n 0000 -c 05184313 n 0000 -c 05184461 n 0000 -c 05184620 n 0000 -c 05184810 n 0000 -c 05185106 n 0000 -c 05185270 n 0000 -c 05185444 n 0000 -c 05185598 n 0000 -c 05185752 n 0000 -c 05185921 n 0000 -c 05186090 n 0000 -c 05186306 n 0000 -c 05186766 n 0000 -c 05186998 n 0000 -c 05187187 n 0000 -c 05187446 n 0000 -c 05188646 n 0000 -c 05188801 n 0000 -c 05189057 n 0000 -c 05189208 n 0000 -c 05189396 n 0000 -c 05189591 n 0000 -c 05190106 n 0000 -c 05190356 n 0000 -c 05190586 n 0000 -c 05198427 n 0000 -c 05424796 n 0000 -c 05781347 n 0000 -c 05793210 n 0000 -c 05795957 n 0000 -c 05796222 n 0000 -c 05823317 n 0000 -c 05824514 n 0000 -c 05830527 n 0000 -c 05903229 n 0000 -c 05903445 n 0000 -c 05903738 n 0000 -c 05903878 n 0000 -c 05904010 n 0000 -c 05904135 n 0000 -c 05956651 n 0000 -c 05956906 n 0000 -c 05957078 n 0000 -c 05957238 n 0000 -c 05957428 n 0000 -c 06334512 n 0000 -c 06469874 n 0000 -c 06479665 n 0000 -c 06480506 n 0000 -c 06481156 n 0000 -c 06485593 n 0000 -c 06500937 n 0000 -c 06501748 n 0000 -c 06501918 n 0000 -c 06505517 n 0000 -c 06512324 n 0000 -c 06526004 n 0000 -c 06530789 n 0000 -c 06531481 n 0000 -c 06531657 n 0000 -c 06532095 n 0000 %p 06532330 n 0000 -c 06532330 n 0000 -c 06532910 n 0000 -c 06533039 n 0000 -c 06533297 n 0000 -c 06533484 n 0000 -c 06533648 n 0000 -c 06534132 n 0000 -c 06534548 n 0000 -c 06535222 n 0000 -c 06535476 n 0000 -c 06535652 n 0000 -c 06535980 n 0000 -c 06536227 n 0000 -c 06536853 n 0000 -c 06537124 n 0000 -c 06537323 n 0000 -c 06537562 n 0000 -c 06537701 n 0000 -c 06537832 n 0000 -c 06538105 n 0000 -c 06538215 n 0000 -c 06538412 n 0000 -c 06538525 n 0000 -c 06538655 n 0000 -c 06538785 n 0000 -c 06538895 n 0000 -c 06539178 n 0000 -c 06539502 n 0000 -c 06539770 n 0000 -c 06540284 n 0000 -c 06540527 n 0000 -c 06540702 n 0000 -c 06540863 n 0000 -c 06541381 n 0000 -c 06541820 n 0000 -c 06542267 n 0000 -c 06542569 n 0000 -c 06542830 n 0000 -c 06543246 n 0000 -c 06543389 n 0000 -c 06543536 n 0000 -c 06543781 n 0000 -c 06543949 n 0000 -c 06544142 n 0000 -c 06544432 n 0000 -c 06544657 n 0000 -c 06544841 n 0000 -c 06545137 n 0000 -c 06545528 n 0000 -c 06545728 n 0000 -c 06545843 n 0000 -c 06545960 n 0000 -c 06546157 n 0000 -c 06546261 n 0000 -c 06546408 n 0000 -c 06546633 n 0000 -c 06546783 n 0000 -c 06546931 n 0000 -c 06547059 n 0000 -c 06547321 n 0000 -c 06547615 n 0000 -c 06547992 n 0000 -c 06548110 n 0000 -c 06548317 n 0000 -c 06548498 n 0000 -c 06549661 n 0000 -c 06551627 n 0000 -c 06551784 n 0000 -c 06552116 n 0000 -c 06552320 n 0000 -c 06552470 n 0000 -c 06552639 n 0000 -c 06552814 n 0000 -c 06552984 n 0000 -c 06553472 n 0000 -c 06553631 n 0000 -c 06553846 n 0000 -c 06554078 n 0000 -c 06554373 n 0000 -c 06554531 n 0000 -c 06554675 n 0000 -c 06554981 n 0000 -c 06555191 n 0000 -c 06555341 n 0000 -c 06555570 n 0000 -c 06555695 n 0000 -c 06555847 n 0000 -c 06555971 n 0000 -c 06556150 n 0000 -c 06556343 n 0000 -c 06556481 n 0000 -c 06556692 n 0000 -c 06557047 n 0000 -c 06557317 n 0000 -c 06557585 n 0000 -c 06557827 n 0000 -c 06558088 n 0000 -c 06558277 n 0000 -c 06558434 n 0000 -c 06558678 n 0000 -c 06559114 n 0000 -c 06559365 n 0000 -c 06559832 n 0000 -c 06560021 n 0000 -c 06560254 n 0000 -c 06560758 n 0000 -c 06561138 n 0000 -c 06561343 n 0000 -c 06561461 n 0000 -c 06562436 n 0000 -c 06562615 n 0000 -c 06562802 n 0000 -c 06562993 n 0000 -c 06563168 n 0000 -c 06563324 n 0000 -c 06563478 n 0000 -c 06563640 n 0000 -c 06563801 n 0000 -c 06563950 n 0000 -c 06564387 n 0000 -c 06565201 n 0000 -c 06565788 n 0000 -c 06565919 n 0000 -c 06653363 n 0000 -c 06667792 n 0000 -c 06668019 n 0000 -c 06668147 n 0000 -c 06668432 n 0000 -c 06668813 n 0000 -c 06669193 n 0000 -c 06675338 n 0000 -c 06689125 n 0000 -c 06720371 n 0000 -c 06727758 n 0000 -c 06728034 n 0000 -c 06728331 n 0000 -c 06728726 n 0000 -c 06728998 n 0000 -c 06729251 n 0000 -c 06730068 n 0000 -c 06731510 n 0000 -c 06733939 n 0000 -c 06734467 n 0000 -c 06734823 n 0000 -c 06735077 n 0000 -c 06735261 n 0000 -c 06735533 n 0000 -c 06735731 n 0000 -c 06735922 n 0000 -c 06736083 n 0000 -c 06736217 n 0000 -c 06736405 n 0000 -c 06736529 n 0000 -c 06736769 n 0000 -c 06736946 n 0000 -c 06741099 n 0000 -c 06747907 n 0000 -c 06757479 n 0000 -c 06765887 n 0000 -c 06771653 n 0000 -c 06784470 n 0000 -c 07143450 n 0000 -c 07145026 n 0000 -c 07150850 n 0000 -c 07180570 n 0000 -c 07194499 n 0000 -c 07194950 n 0000 -c 07195241 n 0000 -c 07195404 n 0000 -c 07207680 n 0000 -c 07209089 n 0000 -c 07209305 n 0000 -c 07214642 n 0000 -c 07216761 n 0000 -c 07236077 n 0000 -c 07253142 n 0000 -c 07964809 n 0000 -c 08064039 n 0000 -c 08095160 n 0000 -c 08112402 n 0000 -c 08135342 n 0000 -c 08135770 n 0000 -c 08136260 n 0000 -c 08330298 n 0000 -c 08330514 n 0000 -c 08334087 n 0000 -c 08334319 n 0000 -c 08334451 n 0000 -c 08334693 n 0000 -c 08334873 n 0000 -c 08335087 n 0000 -c 08335253 n 0000 -c 08335751 n 0000 -c 08335886 n 0000 -c 08336188 n 0000 -c 08336355 n 0000 -c 08336490 n 0000 -c 08356903 n 0000 -c 08414608 n 0000 -c 08414964 n 0000 -c 08415127 n 0000 -c 08415272 n 0000 -c 08415469 n 0000 ~ 08453108 n 0000 -c 08453108 n 0000 ~ 08453299 n 0000 ~ 08453464 n 0000 -c 08453464 n 0000 ~ 08453722 n 0000 -c 08453722 n 0000 ~ 08454003 n 0000 -c 08454003 n 0000 -c 08454191 n 0000 ~ 08454445 n 0000 -c 08454445 n 0000 ~ 08454818 n 0000 -c 08454818 n 0000 ~ 08455037 n 0000 -c 08455037 n 0000 ~ 08455271 n 0000 -c 08455271 n 0000 ~ 08455520 n 0000 ~ 08455829 n 0000 ~ 08456347 n 0000 -c 08456347 n 0000 ~ 08456474 n 0000 -c 08456474 n 0000 ~ 08456619 n 0000 -c 08456619 n 0000 -c 08559155 n 0000 -c 09762101 n 0000 -c 09775663 n 0000 -c 09788237 n 0000 -c 09815455 n 0000 -c 09815677 n 0000 -c 09822830 n 0000 -c 09840963 n 0000 -c 09916788 n 0000 -c 09960891 n 0000 -c 09962612 n 0000 -c 09985075 n 0000 -c 10000158 n 0000 -c 10020670 n 0000 -c 10087736 n 0000 -c 10213034 n 0000 -c 10219240 n 0000 -c 10223606 n 0000 -c 10226060 n 0000 -c 10227985 n 0000 -c 10228468 n 0000 -c 10249270 n 0000 -c 10249950 n 0000 -c 10253296 n 0000 -c 10253995 n 0000 -c 10265532 n 0000 -c 10266848 n 0000 -c 10357207 n 0000 -c 10363149 n 0000 -c 10382380 n 0000 -c 10388924 n 0000 -c 10397886 n 0000 -c 10402824 n 0000 -c 10437852 n 0000 -c 10470314 n 0000 -c 10482587 n 0000 -c 10484858 n 0000 -c 10490557 n 0000 -c 10514643 n 0000 -c 10526795 n 0000 -c 10529103 n 0000 -c 10584021 n 0102 -c 10584021 n 0101 -c 10623175 n 0000 -c 10724570 n 0000 -c 10724999 n 0000 -c 10728361 n 0000 -c 10728523 n 0000 -c 10729175 n 0000 -c 10732314 n 0000 -c 10743941 n 0000 -c 10760622 n 0000 -c 10786270 n 0000 -c 10786517 n 0000 -c 13251715 n 0000 -c 13254237 n 0000 -c 13262913 n 0000 -c 13263540 n 0000 -c 13263779 n 0000 -c 13264076 n 0000 -c 13264342 n 0000 -c 13264794 n 0000 -c 13286801 n 0000 -c 13287787 n 0000 -c 13290991 n 0000 -c 13291356 n 0000 -c 13291614 n 0000 -c 13291831 n 0000 -c 13321992 n 0000 -c 13341350 n 0000 -c 13341593 n 0000 -c 13349997 n 0000 -c 13350443 n 0000 -c 13403643 n 0000 -c 13838205 n 0000 -c 13838386 n 0000 -c 13838766 n 0000 -c 13838930 n 0000 -c 13839120 n 0000 -c 13839287 n 0000 -c 13839468 n 0000 -c 13839662 n 0000 -c 13839888 n 0000 -c 13840039 n 0000 -c 13840231 n 0000 -c 13952601 n 0000 -c 13952792 n 0000 -c 13953467 n 0000 -c 13963757 n 0000 -c 13963970 n 0000 -c 13964466 n 0000 -c 13964591 n 0000 -c 13964879 n 0000 -c 13968973 n 0000 -c 14000820 n 0000 -c 14529212 n 0000 -c 15224293 n 0000 -c 00169176 v 0000 -c 00593200 v 0000 -c 00665771 v 0000 -c 00686249 v 0000 -c 00700162 v 0000 -c 00750345 v 0000 -c 00760576 v 0000 -c 00764526 v 0000 -c 00788971 v 0000 -c 00808162 v 0000 -c 00905059 v 0000 -c 00905399 v 0000 -c 00905677 v 0000 -c 00906037 v 0000 -c 00906367 v 0000 -c 00906637 v 0000 -c 00906735 v 0000 -c 00972457 v 0000 -c 00972867 v 0000 -c 01001857 v 0000 -c 01008546 v 0000 -c 01008719 v 0000 -c 01012395 v 0000 -c 01014821 v 0000 -c 01015244 v 0000 -c 01016316 v 0000 -c 01016626 v 0000 -c 01018645 v 0000 -c 01069638 v 0000 -c 01801080 v 0000 -c 02221454 v 0000 -c 02310328 v 0000 -c 02400251 v 0000 -c 02465297 v 0000 -c 02494259 v 0000 -c 02494356 v 0000 -c 02495592 v 0000 -c 02513879 v 0000 | the collection of rules imposed by authority; "civilization presupposes respect for the law"; "the great problem for jurisprudence to allow freedom while enforcing order" -08453108 14 n 01 administrative_law 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | the body of rules and regulations and orders and decisions created by administrative agencies of government -08453299 14 n 02 canon_law 0 ecclesiastical_law 0 002 @ 08441203 n 0000 -c 05689909 n 0000 | the body of codified laws governing the affairs of a Christian church -08453464 14 n 01 civil_law 0 008 @ 08441203 n 0000 ;c 08441203 n 0000 ! 08454003 n 0101 ~ 06535035 n 0000 -c 06535035 n 0000 ~ 06535222 n 0000 -c 06562217 n 0000 -c 13341962 n 0000 | the body of laws established by a state or nation for its own regulation -08453722 14 n 03 common_law 0 case_law 0 precedent 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | a system of jurisprudence based on judicial precedents rather than statutory laws; "common law originated in the unwritten laws of England and was later applied in the United States" -08454003 14 n 02 international_law 0 law_of_nations 0 004 @ 08441203 n 0000 ;c 08441203 n 0000 ! 08453464 n 0101 ~ 08454191 n 0000 | the body of laws governing relations between nations -08454191 14 n 03 maritime_law 0 marine_law 0 admiralty_law 0 003 @ 08454003 n 0000 ;c 08441203 n 0000 -c 00769401 n 0000 | the branch of international law that deals with territorial and international waters or with shipping or with ocean fishery etc. -08454445 14 n 01 law_of_the_land 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | a phrase used in the Magna Carta to refer to the then established law of the kingdom (as distinct from Roman or civil law); today it refers to fundamental principles of justice commensurate with due process; "the United States Constitution declares itself to be `the supreme law of the land'" -08454818 14 n 01 martial_law 0 003 @ 08441203 n 0000 ;c 08199025 n 0000 ;c 08441203 n 0000 | the body of law imposed by the military over civilian affairs (usually in time of war or civil crisis); overrides civil law -08455037 14 n 03 mercantile_law 0 commercial_law 0 law_merchant 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | the body of rules applied to commercial transactions; derived from the practices of traders rather than from jurisprudence -08455271 14 n 01 military_law 0 004 @ 08441203 n 0000 ;c 08199025 n 0000 ;c 08441203 n 0000 -c 01196316 n 0000 | the body of laws and rules of conduct administered by military courts for the discipline, trial, and punishment of military personnel -08455520 14 n 02 Mosaic_law 0 Law_of_Moses 0 001 @ 08441203 n 0000 | the laws (beginning with the Ten Commandments) that God gave to the Israelites through Moses; it includes many rules of religious observance given in the first five books of the Old Testament (in Judaism these books are called the Torah) -08455829 14 n 05 shariah 0 shariah_law 0 sharia 0 sharia_law 0 Islamic_law 0 004 @ 08441203 n 0000 -c 01879912 a 0000 -c 01191610 n 0000 ~ 08456178 n 0000 | the code of law derived from the Koran and from the teachings and example of Mohammed; "sharia is only applicable to Muslims"; "under Islamic law there is no separation of church and state" -08456178 14 n 02 hudud 0 hudood 0 001 @ 08455829 n 0000 | Islamic laws stating the limits ordained by Allah and including the deterrent punishments for serious crimes -08456347 14 n 01 statutory_law 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | the body of laws created by legislative statutes -08456474 14 n 01 securities_law 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | the body of laws governing the issuance and selling of securities -08456619 14 n 01 tax_law 0 002 @ 08441203 n 0000 ;c 08441203 n 0000 | the body of laws governing taxation -08456727 14 n 02 bureaucracy 0 bureaucratism 0 004 @ 08357784 n 0000 + 03051619 a 0101 ~ 08207095 n 0000 %m 08357258 n 0000 | nonelective government officials -08456888 14 n 01 menagerie 0 001 @ 07951464 n 0000 | a collection of live animals for study or display -08456993 14 n 03 ordering 0 order 0 ordination 0 010 @ 07938773 n 0000 + 00735571 v 0204 + 00276883 v 0201 + 00277659 v 0201 + 00735571 v 0104 ~ 01351959 n 0000 ~ 06389947 n 0000 ~ 08457369 n 0000 ~ 08457543 n 0000 ~ 08457976 n 0000 | logical or comprehensible arrangement of separate elements; "we shall consider these questions in the inverse order of their presentation" -08457369 14 n 01 genetic_code 0 002 @ 08456993 n 0000 ~ 08457789 n 0000 | the ordering of nucleotides in DNA molecules that carries the genetic information in living cells -08457543 14 n 01 genome 0 001 @ 08456993 n 0000 | the ordering of genes in a haploid set of chromosomes of a particular organism; the full DNA sequence of an organism; "the human genome contains approximately three billion chemical base pairs" -08457789 14 n 01 triplet_code 0 001 @ 08457369 n 0000 | the normal version of the genetic code in which a sequence of three nucleotides codes for the synthesis of a specific amino acid -08457976 14 n 01 series 0 021 @ 08456993 n 0000 + 01667729 a 0104 + 02797257 a 0101 + 02797021 a 0101 ~ 01043333 n 0000 ~ 08376250 n 0000 ~ 08376948 n 0000 ~ 08377085 n 0000 ~ 08377332 n 0000 ~ 08377454 n 0000 ~ 08377806 n 0000 ~ 08458833 n 0000 ~ 08458912 n 0000 ~ 08459087 n 0000 ~ 08459252 n 0000 ~ 08459648 n 0000 ~ 08459908 n 0000 ~ 08461875 n 0000 ~ 14624659 n 0000 ~ 14625110 n 0000 ~ 14625297 n 0000 | similar things placed in order or happening one after another; "they were investigating a series of bank robberies" -08458504 14 n 01 series 1 001 @ 00031264 n 0000 | a group of postage stamps having a common theme or a group of coins or currency selected as a group for study or collection; "the Post Office issued a series commemorating famous American entertainers"; "his coin collection included the complete series of Indian-head pennies" -08458833 14 n 01 nexus 0 001 @ 08457976 n 0000 | a connected series or group -08458912 14 n 02 progression 0 patterned_advance 0 004 @ 08457976 n 0000 ~ 08460924 n 0000 ~ 08461172 n 0000 ~ 08461424 n 0000 | a series with a definite pattern of advance -08459087 14 n 02 rash 0 blizzard 0 001 @ 08457976 n 0000 | a series of unexpected and unpleasant occurrences; "a rash of bank robberies"; "a blizzard of lawsuits" -08459252 14 n 01 sequence 0 009 @ 08457976 n 0000 + 00920125 v 0101 + 00660571 v 0101 ~ 05436752 n 0000 ~ 07013549 n 0000 ~ 08373544 n 0000 ~ 08373723 n 0000 ~ 08373818 n 0000 ~ 14816401 n 0000 | serial arrangement in which things follow in logical order or a recurrent pattern; "the sequence of names was alphabetical"; "he invented a technique to determine the sequence of base pairs in DNA" -08459648 14 n 02 string 0 train 2 002 @ 08457976 n 0000 + 00190389 v 0101 | a sequentially ordered set of things or events or ideas in which each successive member is related to the preceding; "a string of islands"; "train of mourners"; "a train of thought" -08459908 14 n 01 succession 0 004 @ 08457976 n 0000 ~ 08460152 n 0000 ~ 08460395 n 0000 ~ 08460585 n 0000 | a group of people or things arranged or following in order; "a succession of stalls offering soft drinks"; "a succession of failures" -08460152 14 n 01 cascade 0 001 @ 08459908 n 0000 | a succession of stages or operations or processes or units; "progressing in severity as though a cascade of genetic damage was occurring"; "separation of isotopes by a cascade of processes" -08460395 14 n 01 parade 2 002 @ 08459908 n 0000 + 01924505 v 0101 | an extended (often showy) succession of persons or things; "a parade of strollers on the mall"; "a parade of witnesses" -08460585 14 n 02 streak 0 run 0 003 @ 08459908 n 0000 ~ 08460769 n 0000 ~ 08460847 n 0000 | an unbroken series of events; "had a streak of bad luck"; "Nicklaus had a run of birdies" -08460769 14 n 01 losing_streak 0 001 @ 08460585 n 0000 | a streak of losses -08460847 14 n 01 winning_streak 0 001 @ 08460585 n 0000 | a streak of wins -08460924 14 n 01 arithmetic_progression 0 002 @ 08458912 n 0000 ;c 06000644 n 0000 | (mathematics) a progression in which a constant is added to each term in order to obtain the next term; "1-4-7-10-13- is the start of an arithmetic progression" -08461172 14 n 01 geometric_progression 0 002 @ 08458912 n 0000 ;c 06000644 n 0000 | (mathematics) a progression in which each term is multiplied by a constant in order to obtain the next term; "1-4-16-64-256- is the start of a geometric progression" -08461424 14 n 01 harmonic_progression 0 002 @ 08458912 n 0000 ;c 06000644 n 0000 | (mathematics) a progression of terms whose reciprocals form an arithmetic progression -08461595 14 n 03 stream 0 flow 0 current 0 001 @ 08377085 n 0000 | dominant course (suggestive of running water) of successive events or ideas; "two streams of development run through American history"; "stream of consciousness"; "the flow of thought"; "the current of history" -08461875 14 n 01 wave_train 0 001 @ 08457976 n 0000 | a succession of waves spaced at regular intervals -08461981 14 n 01 panoply 0 001 @ 07939382 n 0000 | a complete and impressive array -08462066 14 n 01 bank 1 001 @ 07939382 n 0000 | an arrangement of similar objects in a row or in tiers; "he operated a bank of switches" -08462205 14 n 01 stockpile 0 002 @ 07961480 n 0000 + 02285392 v 0103 | a storage pile accumulated for future use -08462320 14 n 02 data 0 information 0 005 @ 07951464 n 0000 + 00831651 v 0201 ~ 08462534 n 0000 ~ 08462721 n 0000 ~ 08462858 n 0000 | a collection of facts from which conclusions may be drawn; "statistical data" -08462534 14 n 01 accounting_data 0 001 @ 08462320 n 0000 | all the data (ledgers and journals and spreadsheets) that support a financial statement; can be hard copy or machine readable -08462721 14 n 01 metadata 0 001 @ 08462320 n 0000 | data about data; "a library catalog is metadata because it describes publications" -08462858 14 n 01 raw_data 0 001 @ 08462320 n 0000 | unanalyzed data; data not yet subjected to analysis -08462964 14 n 01 ana 0 001 @ 07951464 n 0000 | a collection of anecdotes about a person or place -08463063 14 n 02 mail 0 post 0 005 @ 07951464 n 0000 + 01437888 v 0101 ~ 08463345 n 0000 ~ 08463509 n 0000 ~ 08463647 n 0000 | any particular collection of letters or packages that is delivered; "your mail is on the table"; "is there any post for me?"; "she was opening her post" -08463345 14 n 01 fan_mail 0 002 @ 08463063 n 0000 %p 06625217 n 0000 | mail sent to public figures from their admirers; "he hired someone to answer his fan mail" -08463509 14 n 01 hate_mail 0 001 @ 08463063 n 0000 | mail that expresses the writer's dislike or hatred (usually in offensive language) -08463647 14 n 01 mailing 0 003 @ 08463063 n 0000 + 01437888 v 0101 + 01031256 v 0101 | mail sent by a sender at one time; "the candidate sent out three large mailings" -08463817 14 n 01 sampler 0 002 @ 08398773 n 0000 + 01195299 v 0101 | an assortment of various samples; "a candy sampler"; "a sampler of French poets" -08463969 14 n 01 treasure 0 001 @ 07951464 n 0000 | a collection of precious things; "the trunk held all her meager treasures" -08464098 14 n 01 treasure_trove 0 001 @ 07951464 n 0000 | any collection of valuables that is discovered; "her book was a treasure trove of new ideas"; "mother's attic was a treasure trove when we were looking for antiques" -08464324 14 n 01 trinketry 0 002 @ 07951464 n 0000 %m 02787435 n 0000 | trinkets and other ornaments of dress collectively -08464449 14 n 02 troponymy 0 troponomy 0 002 @ 07951464 n 0000 %p 06343838 n 0000 | the place names of a region or a language considered collectively -08464601 14 n 03 movement 0 social_movement 0 front 0 013 @ 07950920 n 0000 ~ 08114581 n 0000 ~ 08466643 n 0000 ~ 08470710 n 0000 ~ 08471369 n 0000 ~ 08471589 n 0000 ~ 08471799 n 0000 ~ 08471949 n 0000 ~ 08472120 n 0000 ~ 08472335 n 0000 ~ 08473623 n 0000 ~ 08473787 n 0000 ~ 08479202 n 0000 | a group of people with a common ideology who try together to achieve certain general goals; "he was a charter member of the movement"; "politicians have to respect a mass movement"; "he led the national liberation front" -08465118 14 n 02 deco 0 art_deco 0 001 @ 08466643 n 0000 | a style of design that was popular in the 1920s and 1930s; marked by stylized forms and geometric designs adapted to mass production -08465312 14 n 01 art_nouveau 0 002 @ 08275185 n 0000 @ 08466643 n 0000 | a French school of art and architecture popular in the 1890s; characterized by stylized natural forms and sinuous outlines of such objects as leaves and vines and flowers -08465558 14 n 04 avant-garde 0 vanguard 1 van 1 new_wave 1 001 @ 08466643 n 0000 | any creative group active in the innovation and application of new concepts and techniques in a given field (especially in the arts) -08465776 14 n 01 constructivism 0 003 @ 08466643 n 0000 + 09959658 n 0101 %m 09959658 n 0000 | an abstractionist artistic movement in Russia after World War I; industrial materials were used to construct nonrepresentational objects -08466010 14 n 01 suprematism 0 001 @ 08466643 n 0000 | a geometric abstractionist movement originated by Kazimir Malevich in Russia that influenced constructivism -08466175 14 n 01 cubism 0 006 @ 08466643 n 0000 + 03021194 a 0102 + 09982013 n 0101 ~ 08476988 n 0000 ~ 08477077 n 0000 %m 09982013 n 0000 | an artistic movement in France beginning in 1907 that featured surfaces of geometrical planes -08466412 14 n 02 dada 0 dadaism 0 001 @ 08466643 n 0000 | a nihilistic art movement (especially in painting) that flourished in Europe early in the 20th century; based on irrationality and negation of the accepted laws of beauty -08466643 14 n 02 artistic_movement 0 art_movement 0 028 @ 08464601 n 0000 ~ 02668747 n 0000 ~ 02747379 n 0000 ~ 03565051 n 0000 ~ 03983068 n 0000 ~ 08275497 n 0000 ~ 08276053 n 0000 ~ 08465118 n 0000 ~ 08465312 n 0000 ~ 08465558 n 0000 ~ 08465776 n 0000 ~ 08466010 n 0000 ~ 08466175 n 0000 ~ 08466412 n 0000 ~ 08467258 n 0000 ~ 08467871 n 0000 ~ 08468084 n 0000 ~ 08468261 n 0000 ~ 08468499 n 0000 ~ 08468721 n 0000 ~ 08468958 n 0000 ~ 08469233 n 0000 ~ 08469457 n 0000 ~ 08469785 n 0000 ~ 08469917 n 0000 ~ 08470034 n 0000 ~ 08470210 n 0000 ~ 08470507 n 0000 | a group of artists who agree on general principles -08467258 14 n 01 expressionism 0 005 @ 08466643 n 0000 + 02835145 a 0102 + 10073851 n 0101 ~ 08467576 n 0000 ~ 08467757 n 0000 | an art movement early in the 20th century; the artist's subjective expression of inner experiences was emphasized; an inner feeling was expressed through a distorted rendition of reality -08467576 14 n 01 neoexpressionism 0 001 @ 08467258 n 0000 | an art movement based on expressionism; developed in 1980s in Europe and United States; crudely drawn garish paintings -08467757 14 n 01 supra_expressionism 0 001 @ 08467258 n 0000 | a movement that tried to go beyond expressionism -08467871 14 n 01 fauvism 0 002 @ 08466643 n 0000 + 10082423 n 0102 | an art movement launched in 1905 whose work was characterized by bright and nonnatural colors and simple forms; influenced the expressionists -08468084 14 n 01 futurism 0 002 @ 08466643 n 0000 + 02993094 a 0101 | an artistic movement in Italy around 1910 that tried to express the energy and values of the machine age -08468261 14 n 02 Hudson_River_school 0 romantic_realism 0 001 @ 08466643 n 0000 | the first coherent school of American art; active from 1825 to 1870; painted wilderness landscapes of the Hudson River valley and surrounding New England -08468499 14 n 01 imagism 0 001 @ 08466643 n 0000 | a movement by American and English poets early in the 20th century in reaction to Victorian sentimentality; used common speech in free verse with clear concrete imagery -08468721 14 n 01 lake_poets 0 005 @ 08275185 n 0000 @ 08466643 n 0000 %m 10904821 n 0000 %m 11309164 n 0000 %m 11397657 n 0000 | English poets at the beginning of the 19th century who lived in the Lake District and were inspired by it -08468958 14 n 01 luminism 0 001 @ 08466643 n 0000 | an artistic movement in the United States that was derived from the Hudson River school; active from 1850 to 1870; painted realistic landscapes in a style that pictured atmospheric light and the use of aerial perspective -08469233 14 n 03 minimalism 0 minimal_art 0 reductivism 0 002 @ 08466643 n 0000 + 10320230 n 0101 | an art movement in sculpture and painting that began in the 1950s and emphasized extreme simplification of form and color -08469457 14 n 02 naturalism 0 realism 0 003 @ 08466643 n 0000 + 10509389 n 0201 + 01979985 a 0101 | an artistic movement in 19th century France; artists and writers strove for detailed realistic and factual description -08469678 14 n 01 needy 0 001 @ 08179205 n 0000 | needy people collectively; "they try to help the needy" -08469785 14 n 01 neoromanticism 0 001 @ 08466643 n 0000 | an art movement based on a revival of Romanticism in art and literature -08469917 14 n 02 New_Wave 0 Nouvelle_Vague 0 001 @ 08466643 n 0000 | an art movement in French cinema in the 1960s -08470034 14 n 02 secession 0 sezession 0 002 @ 08275185 n 0000 @ 08466643 n 0000 | an Austrian school of art and architecture parallel to the French art nouveau in the 1890s -08470210 14 n 01 surrealism 0 004 @ 08466643 n 0000 + 01943067 a 0104 + 10679845 n 0101 %m 10679845 n 0000 | a 20th century movement of artists and writers (developing out of dadaism) who used fantastic images and incongruous juxtapositions in order to represent unconscious thoughts and dreams -08470507 14 n 01 symbolism 0 002 @ 08466643 n 0000 + 10685685 n 0101 | an artistic movement in the late 19th century that tried to express abstract or mystical ideas through the symbolic use of images -08470710 14 n 01 Boy_Scouts 0 003 @ 08464601 n 0000 %m 08470928 n 0000 %m 09871681 n 0000 | an international (but decentralized) movement started in 1908 in England with the goal of teaching good citizenship to boys -08470928 14 n 01 Boy_Scouts_of_America 0 002 @ 08059412 n 0000 #m 08470710 n 0000 | a corporation that operates through a national council that charters local councils all over the United States; the purpose is character building and citizenship training -08471185 14 n 01 Girl_Scouts 0 002 @ 08008335 n 0000 %m 10131016 n 0000 | an organization of young women and girls founded in 1912 for character development and citizenship training -08471369 14 n 01 Civil_Rights_movement 0 001 @ 08464601 n 0000 | movement in the United States beginning in the 1960s and led primarily by Blacks in an effort to establish the civil rights of individual Black citizens -08471589 14 n 01 common_front 0 001 @ 08464601 n 0000 | a movement in which several individuals or groups with different interests join together; "the unions presented a common front at the bargaining table" -08471799 14 n 01 cultural_movement 0 002 @ 08464601 n 0000 ~ 08476829 n 0000 | a group of people working together to advance certain cultural goals -08471949 14 n 02 ecumenism 0 oecumenism 0 002 @ 08464601 n 0000 + 02092460 a 0204 | a movement promoting union between religions (especially between Christian churches) -08472120 14 n 01 falun_gong 0 002 @ 08464601 n 0000 ;r 08723006 n 0000 | a spiritual movement that began in China in the latter half of the 20th century and is based on Buddhist and Taoist teachings and practices -08472335 14 n 01 political_movement 0 008 @ 08464601 n 0000 ~i 08011523 n 0000 ~ 08320385 n 0000 ~ 08321218 n 0000 ~ 08321469 n 0000 ~ 08321621 n 0000 %m 08358594 n 0000 ~ 08392137 n 0000 | a group of people working together to achieve a political goal -08472590 14 n 02 Enlightenment 0 Age_of_Reason 0 002 @ 08473623 n 0000 @i 15254028 n 0000 | a movement in Europe from about 1650 until 1800 that advocated the use of reason and individualism instead of tradition and established doctrine; "the Enlightenment brought about many humanitarian reforms" -08472890 14 n 03 labor_movement 0 trade_union_movement 0 labor 4 004 @ 08473623 n 0000 %p 08233056 n 0000 ~ 08473173 n 0000 ~ 08473482 n 0000 | an organized attempt by workers to improve their status by united action (particularly via labor unions) or the leaders of this movement -08473173 14 n 03 Industrial_Workers_of_the_World 0 IWW 0 I.W.W. 0 002 @ 08233056 n 0000 @ 08472890 n 0000 | a former international labor union and radical labor movement in the United States; founded in Chicago in 1905 and dedicated to the overthrow of capitalism; its membership declined after World War I -08473482 14 n 02 unionism 0 trade_unionism 0 002 @ 08472890 n 0000 + 10720964 n 0102 | the system or principles and theory of labor unions -08473623 14 n 01 reform_movement 0 003 @ 08464601 n 0000 ~ 08472590 n 0000 ~ 08472890 n 0000 | a movement intended to bring about social and humanitarian reforms -08473787 14 n 01 religious_movement 0 013 @ 08464601 n 0000 ~ 08096027 n 0000 ~ 08474120 n 0000 ~ 08474341 n 0000 ~ 08474623 n 0000 ~ 08474875 n 0000 ~ 08475070 n 0000 ~ 08475332 n 0000 ~ 08475586 n 0000 ~ 08475722 n 0000 ~ 08475929 n 0000 ~ 08476165 n 0000 ~ 08476629 n 0000 | a movement intended to bring about religious reforms -08474120 14 n 01 Akhbari 0 002 @ 08473787 n 0000 ;r 08913434 n 0000 | a religious movement by Arab Shiite Muslims in 17th century Iraq that is opposed to the Usuli; "Akhbari Shiism has never promoted political control" -08474341 14 n 01 Usuli 0 002 @ 08473787 n 0000 ;r 08910668 n 0000 | a religious movement by Persian Shiite Muslims in 17th century Iran that is opposed to the Akhbari; "Usuli Shiism produced the politically active caste of priests that is a distinctive feature of Iranian Shiism" -08474623 14 n 01 Counter_Reformation 0 001 @ 08473787 n 0000 | the reaction of the Roman Catholic Church to the Reformation reaffirming the veneration of saints and the authority of the Pope (to which Protestants objected); many leaders were Jesuits -08474875 14 n 01 ecumenical_movement 0 001 @ 08473787 n 0000 | a movement aimed to promote understanding and cooperation among Christian churches; aimed ultimately at universal Christian unity -08475070 14 n 01 Gallicanism 0 001 @ 08473787 n 0000 | a religious movement originating among the French Roman Catholic clergy that favored the restriction of papal control and the achievement by each nation of individual administrative autonomy of the church -08475332 14 n 04 Lubavitch 0 Lubavitch_movement 0 Chabad-Lubavitch 0 Chabad 0 002 @ 08473787 n 0000 %m 10275534 n 0000 | a large missionary Hasidic movement known for their hospitality, technological expertise, optimism and emphasis on religious study -08475586 14 n 01 Oxford_movement 0 001 @ 08473787 n 0000 | 19th-century movement in the Church of England opposing liberal tendencies -08475722 14 n 01 Pietism 0 004 @ 08473787 n 0000 ;r 08766988 n 0000 + 02920594 a 0102 + 02920594 a 0101 | 17th and 18th-century German movement in the Lutheran Church stressing personal piety and devotion -08475929 14 n 02 Reformation 0 Protestant_Reformation 0 001 @ 08473787 n 0000 | a religious movement of the 16th century that began as an attempt to reform the Roman Catholic Church and resulted in the creation of Protestant churches -08476165 14 n 02 Taliban 0 Taleban 0 001 @ 08473787 n 0000 | a fundamentalist Islamic militia; in 1995 the Taliban militia took over Afghanistan and in 1996 took Kabul and set up an Islamic government; "the Taliban enforced a strict Muslim code of behavior" -08476425 14 n 02 Northern_Alliance 0 United_Front 0 001 @ 08293982 n 0000 | a multiethnic alliance in Afghanistan who practice a moderate form of Islam and are united in their opposition to the Taliban -08476629 14 n 01 Nation_of_Islam 0 002 @ 08473787 n 0000 %m 09858733 n 0000 | a group of militant Black Americans who profess Islamic religious beliefs and advocate independence for Black Americans -08476829 14 n 01 humanism 0 003 @ 08471799 n 0000 + 02743750 a 0101 + 10191192 n 0101 | the cultural movement of the Renaissance; based on classical studies -08476988 14 n 01 analytical_cubism 0 001 @ 08466175 n 0000 | the early phase of cubism -08477077 14 n 01 synthetic_cubism 0 001 @ 08466175 n 0000 | the late phase of cubism -08477164 14 n 01 unconfessed 0 002 @ 07942152 n 0000 + 00029108 a 0101 | people who have not confessed; "the unconfessed cannot be forgiven" -08477307 14 n 02 unemployed_people 0 unemployed 0 002 @ 07942152 n 0000 ;u 06295235 n 0000 | people who are involuntarily out of work (considered as a group); "the long-term unemployed need assistance" -08477511 14 n 01 wolf_pack 1 001 @ 08292756 n 0000 | a group of submarines operating together in attacking enemy convoys -08477634 14 n 03 womanhood 0 woman 0 fair_sex 0 005 @ 07974025 n 0000 #m 08477912 n 0000 + 14425715 n 0201 + 00606006 n 0201 + 10787470 n 0101 | women as a class; "it's an insult to American womanhood"; "woman is the glory of creation"; "the fair sex gathered on the veranda" -08477912 14 n 01 womankind 0 002 @ 07942152 n 0000 %m 08477634 n 0000 | women as distinguished from men -08478018 14 n 01 camp 0 002 @ 07975026 n 0000 ~ 08478171 n 0000 | a group of people living together in a camp; "the whole camp laughed at his mistake" -08478171 14 n 02 hobo_camp 0 jungle 0 001 @ 08478018 n 0000 | a place where hoboes camp -08478261 14 n 01 record_company 0 001 @ 08058098 n 0000 | a company that makes and sells musical recordings -08478371 14 n 01 reunion 0 001 @ 08252602 n 0000 | a party of former associates who have come together again -08478482 14 n 05 mover 0 public_mover 0 moving_company 0 removal_firm 0 removal_company 0 002 @ 08058098 n 0000 + 01850315 v 0101 | a company that moves the possessions of a family or business from one site to another -08478702 14 n 02 think_tank 0 think_factory 0 001 @ 08058098 n 0000 | a company that does research for hire and issues reports on the implications -08478851 14 n 01 vestry 0 003 @ 08324514 n 0000 %m 10748889 n 0000 %m 10749004 n 0000 | in the Protestant Episcopal Church: a committee elected by the congregation to work with the churchwardens in managing the temporal affairs of the church -08479095 14 n 01 Jewry 0 003 @ 07950920 n 0000 %p 08094013 n 0000 %m 09681351 n 0000 | Jews collectively -08479202 14 n 02 Zionism 0 Zionist_movement 0 002 @ 08464601 n 0000 + 10805501 n 0101 | a movement of world Jewry that arose late in the 19th century with the aim of creating a Jewish state in Palestine -08479407 14 n 06 Zhou 0 Zhou_dynasty 0 Chou 0 Chou_dynasty 0 Chow 0 Chow_dynasty 0 001 @ 07971582 n 0000 | the imperial dynasty of China from 1122 to 221 BC; notable for the rise of Confucianism and Taoism -08479615 14 n 01 muster 0 003 @ 07975026 n 0000 ;c 08199025 n 0000 + 00793271 v 0101 | a gathering of military personnel for duty; "he was thrown in the brig for missing muster" -08479795 14 n 01 rap_group 0 001 @ 07975026 n 0000 | a gathering of people holding a rap session -08479894 14 n 01 rave-up 0 002 @ 07975026 n 0000 ;r 08860123 n 0000 | a raucous gathering -08479986 14 n 02 registration 0 enrollment 0 001 @ 07965085 n 0000 | the body of people (such as students) who register or enroll at the same time -08480135 14 n 01 table 1 001 @ 07975026 n 0000 | a company of people assembled at a table for a meal or game; "he entertained the whole table with his witty remarks" -08480303 14 n 01 World_Council_of_Churches 0 001 @ 08322625 n 0000 | an ecumenical organization of Protestant and eastern churches; intended to promote unity and cooperation in religious and secular matters -08480512 14 n 01 number 0 002 @ 08184861 n 0000 + 02731632 v 0102 | a select company of people; "I hope to become one of their number before I die" -08480662 14 n 01 vote 0 004 @ 07965085 n 0000 #m 08161068 n 0000 + 02462580 v 0101 + 02461314 v 0101 | a body of voters who have the same interests; "he failed to get the Black vote" -08480847 14 n 01 blue 0 002 @ 08008335 n 0000 ~ 08394535 n 0000 | any organization or party whose uniforms or badges are blue; "the Union army was a vast blue" -08481009 14 n 02 grey 0 gray 0 002 @ 08008335 n 0000 ~ 08394657 n 0000 | any organization or party whose uniforms or badges are grey; "the Confederate army was a vast grey" -08481184 14 n 01 host 1 001 @ 08008335 n 0000 | any organization that provides resources and facilities for a function or event; "Atlanta was chosen to be host for the Olympic Games" -08481369 14 n 01 pool 1 003 @ 08008335 n 0000 + 01090107 v 0101 ~ 08481604 n 0000 | an organization of people or resources that can be shared; "a car pool"; "a secretarial pool"; "when he was first hired he was assigned to the pool" -08481604 14 n 01 typing_pool 0 001 @ 08481369 n 0000 | a group of typists who can work for different persons -08481715 14 n 01 shipper 0 002 @ 08058098 n 0000 + 01950798 v 0103 | a company in the business of shipping freight -08481832 14 n 01 center 1 002 @ 08426461 n 0000 ;c 08199025 n 0000 | the middle of a military or naval formation; "they had to reinforce the center" -08481983 14 n 01 diaspora 0 001 @ 07965085 n 0000 | the body of Jews (or Jewish communities) outside Palestine or modern Israel -08482113 14 n 02 flank 0 wing 1 002 @ 08426461 n 0000 ;c 08199025 n 0000 | the side of military or naval formation; "they attacked the enemy's right flank" -08482271 14 n 01 head 0 008 @ 08426461 n 0000 ;c 08199025 n 0000 + 00250739 a 0102 + 02729023 v 0101 + 01935233 v 0101 + 01999423 v 0102 + 01931768 v 0107 ! 08482700 n 0101 | the front of a military formation or procession; "the head of the column advanced boldly"; "they were at the head of the attack" -08482577 14 n 01 local_authority 0 002 @ 08337324 n 0000 ;r 08860123 n 0000 | an administrative unit of local government -08482700 14 n 01 rear 0 003 @ 08426461 n 0000 ;c 08199025 n 0000 ! 08482271 n 0101 | the back of a military formation or procession; "infantrymen were in the rear" -08482866 14 n 01 smithereens 0 001 @ 07951464 n 0000 | a collection of small fragments considered as a whole; "Berlin was bombed to smithereens"; "his hopes were dashed to smithereens"; "I wanted to smash him to smithereens"; "the toilet bowl ws blown to smithereens" -08483136 14 n 01 chosen_people 0 002 @ 07942152 n 0000 ~ 08483935 n 0000 | any people believing themselves to be chosen by God -08483265 14 n 01 Azeri 0 001 @ 07967382 n 0000 | an ethnic group living in Azerbaijan -08483353 14 n 01 Bengali 0 002 @ 07967382 n 0000 + 03047714 a 0101 | an ethnic group speaking Bengali and living in Bangladesh and eastern India -08483500 14 n 02 Berbers 0 Arab-Berbers 0 001 @ 07967736 n 0000 | an ethnic minority descended from Berbers and Arabs and living in northern Africa -08483650 14 n 01 Dagestani 0 001 @ 07967736 n 0000 | an ethnic minority living on the Caspian Sea in southwestern Russia and Azerbaijan -08483788 14 n 01 Flemish 0 002 @ 07967382 n 0000 + 03066448 a 0101 | an ethnic group speaking Flemish and living in northern and western Belgium -08483935 14 n 02 Hebrews 0 Israelites 0 003 @ 07967382 n 0000 @ 08483136 n 0000 ;c 06449735 n 0000 | the ethnic group claiming descent from Abraham and Isaac (especially from Isaac's son Jacob); the nation whom God chose to receive his revelation and with whom God chose to make a covenant (Exodus 19) -08484239 14 n 01 Maori 0 001 @ 07967736 n 0000 | an ethnic minority of Polynesian and Melanesian descent who speak Maori and live in New Zealand -08484386 14 n 01 Mayas 0 001 @ 07967736 n 0000 | an ethnic minority speaking Mayan languages and living in Yucatan and adjacent areas -08484522 14 n 02 Mbundu 0 Ovimbundu 0 001 @ 07967382 n 0000 | an ethnic group speaking Umbundu and living in western Angola -08484648 14 n 02 Pathan 0 Pashtun 0 001 @ 07967736 n 0000 | an ethnic minority speaking Pashto and living in northwestern Pakistan and southeastern Afghanistan -08484810 14 n 02 Tajik 0 Tadzhik 0 001 @ 07967382 n 0000 | an ethnic group (mostly Moslem) living in Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China -08484986 14 n 01 Walloons 0 001 @ 07967382 n 0000 | an ethnic group speaking a dialect of French and living in southern and eastern Belgium and neighboring parts of France -08485160 14 n 01 Ferdinand_and_Isabella 0 001 @i 08388207 n 0000 | joint monarchs of Spain; Ferdinand V and Isabella I -08485281 14 n 01 Medici 0 001 @ 07971449 n 0000 | aristocratic Italian family of powerful merchants and bankers who ruled Florence in the 15th century -08485434 14 n 03 Committee_for_State_Security 0 KGB 0 Soviet_KGB 0 001 @ 08485830 n 0000 | formerly the predominant security police organization of Soviet Russia -08485598 14 n 03 Federal_Security_Bureau 0 FSB 1 Federal_Security_Service 0 001 @ 08485830 n 0000 | the internal counterintelligence agency of the Russian Federation and successor to the Soviet KGB; formerly led by Vladimir Putin -08485830 14 n 01 Russian_agency 0 003 @ 08077292 n 0000 ~ 08485434 n 0000 ~ 08485598 n 0000 | an administrative agency of the Russian government -08485977 14 n 01 Wicca 0 001 @ 08151490 n 0000 | a community of followers of the Wicca religion -08486075 14 n 01 William_and_Mary 0 001 @i 08388207 n 0000 | joint monarchs of England; William III and Mary II -08486189 14 n 01 wine_tasting 0 001 @ 07975026 n 0000 | a gathering of people to taste and compare different wines -08486306 14 n 01 wing 2 001 @ 07950920 n 0000 | a group within a political party or legislature or other organization that holds distinct views or has a particular function; "they are the progressive wing of the Republican Party" -08486538 14 n 02 Wise_Men 0 Magi 0 005 @i 07951464 n 0000 ;c 06453849 n 0000 %m 10832908 n 0000 %m 10886361 n 0000 %m 11172181 n 0000 | (New Testament) the sages who visited Jesus and Mary and Joseph shortly after Jesus was born; the Gospel According to Matthew says they were guided by a star and brought gifts of gold and frankincense and myrrh; because there were three gifts it is usually assumed that there were three of them -08486971 14 n 02 World_Trade_Organization 0 WTO 0 001 @ 08294696 n 0000 | an international organization based in Geneva that monitors and enforces rules governing global trade -08487149 14 n 02 Association_for_the_Advancement_of_Retired_Persons 0 AARP 0 001 @ 08049401 n 0000 | an association of people to promote the welfare of senior citizens -08487319 14 n 01 National_Association_of_Realtors 0 002 @ 08049401 n 0000 %m 10510078 n 0000 | a United States association of real estate agents which follows a strict code of ethics -08487504 14 n 02 Association_of_Southeast_Asian_Nations 0 ASEAN 0 011 @ 08049401 n 0000 %m 08715390 n 0000 %m 08716738 n 0000 %m 08896092 n 0000 %m 08907606 n 0000 %m 08956760 n 0000 %m 08963369 n 0000 %m 08981244 n 0000 %m 08997487 n 0000 %m 09036452 n 0000 %m 09163192 n 0000 | an association of nations dedicated to economic and political cooperation in southeastern Asia and who joined with the United States to fight against global terrorism -08487953 14 n 02 Abkhaz 0 Abkhas 0 002 @i 08488675 n 0000 ;r 09019355 n 0000 | Circassian people living east of the Black Sea -08488081 14 n 01 Achomawi 0 002 @i 08223802 n 0000 ;r 09060768 n 0000 | a community of Native Americans who speak a Hokan language and live in northeastern California -08488250 14 n 01 Akwa'ala 0 002 @i 08223802 n 0000 ;r 09343761 n 0000 | a community of Native Americans who speak a Hokan language and live in Baja California -08488411 14 n 01 Aleut 0 002 @ 08223802 n 0000 ;r 08835675 n 0000 | a community of Native Americans who speak an Eskimo-Aleut language and inhabit the Aleutian Islands and southwestern Alaska; "the Aleut and the Eskimo are related culturally and linguistically" -08488675 14 n 01 Circassian 0 003 @ 08223802 n 0000 ;r 08519624 n 0000 ~i 08487953 n 0000 | a mostly Sunni Muslim community living in northwestern Caucasia -08488833 14 n 02 Inca 0 Inka 0 002 @i 08223802 n 0000 ;r 08979054 n 0000 | the small group of Quechua living in the Cuzco Valley in Peru who established hegemony over their neighbors in order to create an empire that lasted from about 1100 until the Spanish conquest in the early 1530s -08489121 14 n 02 Quechua 0 Kechua 0 001 @i 08223802 n 0000 | a community of South American Indians in Peru who were formerly the ruling class of the Incan Empire -08489285 14 n 01 Xhosa 0 001 @i 08223802 n 0000 | a community of Negroid people in southern South Africa -08489392 14 n 01 Zulu 0 001 @i 08223802 n 0000 | a community of Negroid people in eastern South Africa -08489497 15 n 01 here 0 002 @ 00027167 n 0000 ! 08489627 n 0101 | the present location; this place; "where do we go from here?" -08489627 15 n 01 there 0 002 @ 00027167 n 0000 ! 08489497 n 0101 | a location other than here; that place; "you can take it from there" -08489765 15 n 01 somewhere 0 001 @ 00027167 n 0000 | an indefinite or unknown location; "they moved to somewhere in Spain" -08489890 15 n 01 bilocation 0 001 @ 00027167 n 0000 | the ability (said of certain Roman Catholic saints) to exist simultaneously in two locations -08490039 15 n 01 seat 2 001 @ 00027167 n 0000 | the location (metaphorically speaking) where something is based; "the brain is said to be the seat of reason" -08490199 15 n 01 home 2 001 @ 00027167 n 0000 | the country or state or city where you live; "Canadian tariffs enabled United States lumber companies to raise prices at home"; "his home is New Jersey" -08490402 15 n 02 base 1 home 5 001 @ 00027167 n 0000 | the place where you are stationed and from which missions start and end -08490531 15 n 02 aclinic_line 0 magnetic_equator 0 001 @ 08593262 n 0000 | an imaginary line paralleling the equator where a magnetic needle has no dip -08490685 15 n 01 agonic_line 0 001 @ 08593262 n 0000 | an imaginary line connecting points on the Earth's surface where the magnetic declination is zero -08490840 15 n 03 isogonic_line 0 isogonal_line 0 isogone 0 001 @ 08593262 n 0000 | an imaginary line connecting points on the Earth's surface where the magnetic declination is the same -08491027 15 n 01 address 0 006 @ 08578706 n 0000 + 00990812 v 0101 ~ 08491245 n 0000 ~ 08491710 n 0000 ~ 08558963 n 0000 ~ 08559922 n 0000 | the place where a person or organization can be found or communicated with -08491245 15 n 01 mailing_address 0 003 @ 08491027 n 0000 ~ 08491410 n 0000 ~ 08491531 n 0000 | the address where a person or organization can be communicated with -08491410 15 n 01 box_number 1 001 @ 08491245 n 0000 | a mailing address to which answers to a newspaper ad can be sent -08491531 15 n 04 post-office_box_number 0 PO_box_number 0 PO_Box_No 0 box_number 0 001 @ 08491245 n 0000 | the number of a letter box at the post office where mail is collected -08491710 15 n 01 street_address 0 001 @ 08491027 n 0000 | the address where a person or organization can be found -08491826 15 n 03 administrative_district 0 administrative_division 0 territorial_division 0 021 @ 08552138 n 0000 ~ 08540532 n 0000 ~ 08540770 n 0000 ~ 08540903 n 0000 ~ 08541609 n 0000 ~ 08544813 n 0000 ~ 08546870 n 0000 ~ 08547048 n 0000 ~ 08548733 n 0000 ~ 08553280 n 0000 ~ 08587174 n 0000 ~ 08587709 n 0000 ~ 08587828 n 0000 ~ 08626283 n 0000 ~ 08626947 n 0000 ~ 08654360 n 0000 ~ 08672199 n 0000 ~ 08672397 n 0000 ~i 08897843 n 0000 ~i 08898002 n 0000 ~i 09005273 n 0000 | a district defined for administrative purposes -08492354 15 n 04 aerie 0 aery 0 eyrie 0 eyry 0 001 @ 08580803 n 0000 | any habitation at a high altitude -08492461 15 n 01 agora 0 001 @ 03722288 n 0000 | the marketplace in ancient Greece -08492546 15 n 04 air_lane 0 flight_path 0 airway 0 skyway 0 003 @ 08616311 n 0000 ~ 08493961 n 0000 ~ 08501729 n 0000 | a designated route followed by airplanes in flying from one airport to another -08492747 15 n 03 traffic_pattern 0 approach_pattern 0 pattern 0 003 @ 08616311 n 0000 + 02712243 v 0301 %p 08493961 n 0000 | the path that is prescribed for an airplane that is preparing to land at an airport; "the traffic patterns around O'Hare are very crowded"; "they stayed in the pattern until the fog lifted" -08493064 15 n 02 territory 1 soil 0 002 @ 08574314 n 0000 + 02812482 a 0101 | the geographical area under the jurisdiction of a sovereign state; "American troops were stationed on Japanese soil" -08493261 15 n 02 Andalusia 0 Andalucia 0 004 @i 08574314 n 0000 #p 09023321 n 0000 + 02621799 a 0101 %p 09025863 n 0000 | a region in southern Spain on the Atlantic and the Mediterranean; formerly a center of Moorish civilization -08493493 15 n 01 Appalachia 0 004 @i 08574314 n 0000 #p 09201301 n 0000 + 02635395 a 0101 + 09799808 n 0101 | an impoverished coal mining area in the Appalachian Mountains (from Pennsylvania to North Carolina) -08493705 15 n 01 flight_path 1 001 @ 08616311 n 0000 | the path of a rocket or projectile or aircraft through the air -08493825 15 n 01 wing 0 001 @ 08621598 n 0000 | (in flight formation) a position to the side and just to the rear of another aircraft -08493961 15 n 04 approach_path 0 approach 0 glide_path 0 glide_slope 0 002 @ 08492546 n 0000 #p 08492747 n 0000 | the final path followed by an aircraft as it is landing -08494133 15 n 02 ambiance 0 ambience 0 001 @ 08567235 n 0000 | the atmosphere of an environment -08494231 15 n 03 amusement_park 0 funfair 0 pleasure_ground 0 005 @ 08615374 n 0000 %p 04088797 n 0000 ~ 08662914 n 0000 ~i 09062184 n 0000 ~i 09075688 n 0000 | a commercially operated park with stalls and shows for amusement -08494459 15 n 03 Antarctic 0 Antarctic_Zone 0 South_Frigid_Zone 0 004 @i 08573258 n 0000 + 02444627 a 0102 %p 09198106 n 0000 %p 09198574 n 0000 | the region around the south pole: Antarctica and surrounding waters -08494676 15 n 01 Antarctic_Circle 0 001 @i 08496655 n 0000 | a line of latitude north of the south pole -08494782 15 n 03 Adelie_Land 0 Terre_Adelie 0 Adelie_Coast 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a costal region of Antarctica to the south of Australia; noted for its large colonies of penguins -08494987 15 n 03 apex 1 solar_apex 0 apex_of_the_sun's_way 0 004 @ 08520401 n 0000 #p 08521267 n 0000 + 02440184 a 0101 ! 08495249 n 0101 | the point on the celestial sphere toward which the sun and solar system appear to be moving relative to the fixed stars -08495249 15 n 01 antapex 0 002 @ 08520401 n 0000 ! 08494987 n 0101 | the point opposite in direction from the solar apex; the point the solar system is moving away from -08495420 15 n 01 apogee 0 003 @ 08495617 n 0000 + 02633696 a 0101 ! 08618669 n 0101 | apoapsis in Earth orbit; the point in its orbit where a satellite is at the greatest distance from the Earth -08495617 15 n 02 apoapsis 0 point_of_apoapsis 0 009 @ 08520401 n 0000 #p 08612049 n 0000 ;c 06095022 n 0000 ! 08618379 n 0202 ! 08618379 n 0101 ~ 08495420 n 0000 ~ 08495908 n 0000 ~ 08496095 n 0000 ~ 08496199 n 0000 | (astronomy) the point in an orbit farthest from the body being orbited -08495908 15 n 01 aphelion 0 002 @ 08495617 n 0000 ! 08618831 n 0101 | apoapsis in solar orbit; the point in the orbit of a planet or comet that is at the greatest distance from the sun -08496095 15 n 01 apojove 0 002 @ 08495617 n 0000 ! 08619006 n 0101 | apoapsis in orbit around Jupiter -08496199 15 n 02 aposelene 0 apolune 0 003 @ 08495617 n 0000 ! 08619112 n 0202 ! 08619112 n 0101 | apoapsis in orbit around the moon -08496334 15 n 01 apron 0 003 @ 08651247 n 0000 #p 08569319 n 0000 ;c 00464894 n 0000 | (golf) the part of the fairway leading onto the green -08496477 15 n 03 Arctic 0 Arctic_Zone 0 North_Frigid_Zone 0 002 @i 08573258 n 0000 + 02444475 a 0102 | the regions to the north of the Arctic Circle centered on the North Pole -08496655 15 n 01 polar_circle 0 003 @ 08595720 n 0000 ~i 08494676 n 0000 ~i 08496798 n 0000 | a line of latitude at the north or south poles -08496798 15 n 01 Arctic_Circle 0 001 @i 08496655 n 0000 | a line of latitude near but to the south of the north pole; it marks the northernmost point at which the sun is visible on the northern winter solstice and the southernmost point at which the midnight sun can be seen on the northern summer solstice -08497107 15 n 01 arena 0 001 @ 08497294 n 0000 | the central area of an ancient Roman amphitheater where contests and spectacles were held; especially an area that was strewn with sand -08497294 15 n 02 area 1 country 2 035 @ 08630985 n 0000 + 02640503 a 0101 ~ 08497107 n 0000 ~ 08498163 n 0000 ~ 08499357 n 0000 ~ 08517204 n 0000 ~ 08523483 n 0000 ~ 08544419 n 0000 ~ 08544593 n 0000 ~ 08551177 n 0000 ~ 08581503 n 0000 ~ 08581699 n 0000 ~ 08582065 n 0000 ~ 08611063 n 0000 ~ 08611218 n 0000 ~ 08627554 n 0000 ~ 08627665 n 0000 ~ 08628746 n 0000 ~ 08632258 n 0000 ~ 08632423 n 0000 ~ 08639586 n 0000 ~ 08639776 n 0000 ~ 08640739 n 0000 ~ 08642145 n 0000 ~ 08642331 n 0000 ~ 08643015 n 0000 ~ 08643933 n 0000 ~ 08644213 n 0000 ~ 08645963 n 0000 ~ 08648322 n 0000 ~ 08649067 n 0000 ~ 08652970 n 0000 ~ 08660817 n 0000 ~ 08683841 n 0000 ~i 08710951 n 0000 | a particular geographical region of indefinite boundary (usually serving some special purpose or distinguished by its people or culture or geography); "it was a mountainous area"; "Bible country" -08498163 15 n 01 high_country 0 001 @ 08497294 n 0000 | an area lying above the piedmont but below the timberline -08498279 15 n 01 ascending_node 0 002 @ 08498424 n 0000 ! 08548924 n 0101 | the point at which an orbit crosses the ecliptic plane going north -08498424 15 n 01 node 0 004 @ 08520401 n 0000 ;c 06095022 n 0000 ~ 08498279 n 0000 ~ 08548924 n 0000 | (astronomy) a point where an orbit crosses a plane -08498580 15 n 01 node 1 003 @ 08620061 n 0000 ;c 06090869 n 0000 ! 08498732 n 0101 | (physics) the point of minimum displacement in a periodic system -08498732 15 n 01 antinode 0 003 @ 08620061 n 0000 ;c 06090869 n 0000 ! 08498580 n 0101 | (physics) the point of maximum displacement in a periodic system -08498888 15 n 01 asteroid_belt 0 002 @ 08509786 n 0000 #p 08500819 n 0000 | the region of interplanetary space between Mars and Jupiter where most asteroids are found -08499057 15 n 02 atmosphere 0 air 1 007 @ 08630039 n 0000 #p 09270894 n 0000 + 02831736 a 0101 + 02831736 a 0102 ~ 08502317 n 0000 %p 08555569 n 0000 %p 08588916 n 0000 | the mass of air surrounding the Earth; "there was great heat as the comet entered the atmosphere"; "it was exposed to the air" -08499357 15 n 03 bed_ground 0 bed-ground 0 bedground 0 001 @ 08497294 n 0000 | an area on which a drove of cattle or sheep can sleep for a night -08499504 15 n 01 biosphere 0 002 @ 08630039 n 0000 #p 09394007 n 0000 | the regions of the surface and atmosphere of the Earth (or other planet) where living organisms exist -08499680 15 n 01 back_of_beyond 0 001 @ 08500213 n 0000 | a very remote and inaccessible place; "you'd have to go to the back of beyond to find one of those" -08499840 15 n 02 colony 1 dependency 0 007 @ 08574314 n 0000 + 02329864 a 0202 + 02700029 a 0101 + 10583387 n 0102 ~ 08500079 n 0000 ~i 08709399 n 0000 ~i 09117118 n 0000 | a geographical area politically controlled by a distant country -08500079 15 n 01 Crown_Colony 0 001 @ 08499840 n 0000 | a British colony controlled by the British Crown, represented by a governor -08500213 15 n 01 depth 0 003 @ 08630039 n 0000 ;u 06295235 n 0000 ~ 08499680 n 0000 | (usually plural) the deepest and most remote part; "from the depths of darkest Africa"; "signals received from the depths of space" -08500433 15 n 02 outer_space 0 space 1 007 @ 00028651 n 0000 @ 00027167 n 0000 #p 08502171 n 0000 %p 08500819 n 0000 %p 08500989 n 0000 %p 08501887 n 0000 %p 08502051 n 0000 | any location outside the Earth's atmosphere; "the astronauts walked in outer space without a tether"; "the first major milestone in space exploration was in 1957, when the USSR's Sputnik 1 orbited the Earth" -08500819 15 n 01 interplanetary_space 0 004 @ 08630039 n 0000 #p 08500433 n 0000 %p 08498888 n 0000 ~ 09314603 n 0000 | the part of outer space within the solar system -08500989 15 n 01 interstellar_space 0 003 @ 08630039 n 0000 #p 08500433 n 0000 ~ 09314829 n 0000 | the space between stars -08501114 15 n 01 frontier 1 002 @ 08512259 n 0000 ~i 08711655 n 0000 | an international boundary or the area (often fortified) immediately inside the boundary -08501275 15 n 01 heliopause 0 001 @ 08512259 n 0000 | the boundary marking the edge of the sun's influence; the boundary (roughly 100 AU from the sun) between the interplanetary medium and the interstellar medium; where the solar wind from the sun and the radiation from other stars meet -08501565 15 n 01 heliosphere 0 003 @ 08630039 n 0000 #p 09354984 n 0000 %p 09439433 n 0000 | the region inside the heliopause containing the sun and solar system -08501729 15 n 01 holding_pattern 0 001 @ 08492546 n 0000 | the flight path (usually circular) maintained by an aircraft that is awaiting permission to land -08501887 15 n 01 intergalactic_space 0 002 @ 08630039 n 0000 #p 08500433 n 0000 | the space between galaxies; "the Milky Way travels through intergalactic space" -08502051 15 n 01 deep_space 0 002 @ 08630039 n 0000 #p 08500433 n 0000 | any region in space outside the solar system -08502171 15 n 01 aerospace 0 003 @ 08630039 n 0000 #p 00028651 n 0000 %p 08500433 n 0000 | the atmosphere and outer space considered as a whole -08502317 15 n 01 airspace 0 001 @ 08499057 n 0000 | the atmosphere above a nation that is deemed to be under its jurisdiction; "the plane was refused permission to enter Chinese airspace" -08502507 15 n 01 backwater 0 001 @ 08630985 n 0000 | a place or condition in which no development or progress is occurring; "the country is an economic backwater" -08502672 15 n 04 backwoods 0 back_country 0 boondocks 0 hinterland 0 001 @ 08644722 n 0000 | a remote and undeveloped area -08502797 15 n 02 Bad_Lands 0 Badlands 0 004 @i 09212572 n 0000 @i 08574314 n 0000 #p 09138935 n 0000 #p 09109444 n 0000 | an eroded and barren region in southwestern South Dakota and northwestern Nebraska -08503004 15 n 01 banana_republic 0 001 @ 08544813 n 0000 | a small country (especially in Central America) that is politically unstable and whose economy is dominated by foreign companies and depends on one export (such as bananas) -08503238 15 n 01 Barbary 0 003 @i 08574314 n 0000 #p 09189411 n 0000 %p 08503477 n 0000 | a region of northern Africa on the Mediterranean coast between Egypt and Gibraltar; was used as a base for pirates from the 16th to 19th centuries -08503477 15 n 01 Barbary_Coast 0 002 @i 09428293 n 0000 #p 08503238 n 0000 | the Mediterranean coast of northern Africa that was famous for its Moorish pirates -08503639 15 n 01 Barbary_Coast 1 001 @ 08537837 n 0000 | a part of a city that is notorious for gambling dens and brothels and saloons and riotous night life (especially the waterfront of San Francisco after the gold rush of 1849); "we'll tolerate no Barbary Coast in this city!" -08503921 15 n 01 Bithynia 0 003 @i 08574314 n 0000 #p 08701942 n 0000 %p 08504151 n 0000 | an ancient country in northwestern Asia Minor in what is now Turkey; was absorbed into the Roman Empire by the end of the 1st century BC -08504151 15 n 01 Nicaea 0 003 @i 08524735 n 0000 #p 08503921 n 0000 + 03090782 a 0101 | an ancient city in Bithynia; founded in the 4th century BC and flourished under the Romans; the Nicene Creed was adopted there in 325 -08504375 15 n 01 Nubia 0 003 @i 08574314 n 0000 #p 09189411 n 0000 %m 10364333 n 0000 | an ancient region of northeastern Africa (southern Egypt and northern Sudan) on the Nile; much of Nubia is now under Lake Nasser -08504594 15 n 03 barren 0 waste 0 wasteland 0 004 @ 08683548 n 0000 + 01243102 a 0202 + 01242750 a 0102 ~ 08504851 n 0000 | an uninhabited wilderness that is worthless for cultivation; "the barrens of central Africa"; "the trackless wastes of the desert" -08504851 15 n 02 heath 0 heathland 0 002 @ 08504594 n 0000 ;r 08860123 n 0000 | a tract of level wasteland; uncultivated land with sandy soil and scrubby vegetation -08505018 15 n 01 bush 0 002 @ 08683548 n 0000 ~ 08505110 n 0000 | a large wilderness area -08505110 15 n 01 outback 0 004 @ 08505018 n 0000 #p 09168336 n 0000 + 00020103 a 0101 ~i 08505265 n 0000 | the bush country of the interior of Australia -08505265 15 n 01 Never-Never 0 002 @i 08505110 n 0000 #p 09168336 n 0000 | the remote outback of Australia; unpopulated desert country -08505402 15 n 01 frontier 0 001 @ 08683548 n 0000 | a wilderness at the edge of a settled area of a country; "the individualism of the frontier in Andrew Jackson's day" -08505573 15 n 01 desert 0 037 @ 08673395 n 0000 @ 07941945 n 0000 %p 08506496 n 0000 ~i 09167767 n 0000 ~i 09168020 n 0000 ~i 09168193 n 0000 ~i 09168336 n 0000 ~i 09168592 n 0000 ~i 09168707 n 0000 ~i 09168915 n 0000 ~i 09169038 n 0000 ~i 09169188 n 0000 ~i 09169303 n 0000 ~i 09169557 n 0000 ~i 09169690 n 0000 ~i 09169801 n 0000 ~i 09169930 n 0000 ~i 09170109 n 0000 ~i 09170294 n 0000 ~i 09170475 n 0000 ~i 09170633 n 0000 ~i 09170788 n 0000 ~i 09170996 n 0000 ~i 09171204 n 0000 ~i 09171376 n 0000 ~i 09171560 n 0000 ~i 09171674 n 0000 ~i 09171853 n 0000 ~i 09171984 n 0000 ~i 09172111 n 0000 ~i 09172283 n 0000 ~i 09172634 n 0000 ~i 09172751 n 0000 ~i 09172910 n 0000 ~i 09173023 n 0000 ~i 09173288 n 0000 ~i 09173417 n 0000 | arid land with little or no vegetation -08506347 15 n 01 semidesert 0 001 @ 08574314 n 0000 | a region much like a desert but usually located between a desert and the surrounding regions -08506496 15 n 01 oasis 0 002 @ 08673395 n 0000 #p 08505573 n 0000 | a fertile tract in a desert (where the water table approaches the surface) -08506641 15 n 05 battlefield 0 battleground 0 field_of_battle 0 field_of_honor 1 field 4 005 @ 08673395 n 0000 ~i 08506932 n 0000 ~i 08507109 n 0000 %p 08573674 n 0000 %p 08648658 n 0000 | a region where a battle is being (or has been) fought; "they made a tour of Civil War battlefields" -08506932 15 n 01 Armageddon 0 002 @i 08506641 n 0000 ;c 06453849 n 0000 | (New Testament) the scene of the final battle between the kings of the Earth at the end of the world -08507109 15 n 01 Camlan 0 002 @i 08506641 n 0000 ;c 06371734 n 0000 | (Arthurian legend) the battlefield where King Arthur was mortally wounded -08507255 15 n 01 minefield 0 002 @ 08673395 n 0000 ;c 08199025 n 0000 | a region in which explosives mines have been placed -08507381 15 n 02 beat 0 round 0 001 @ 08616311 n 0000 | a regular route for a sentry or policeman; "in the old days a policeman walked a beat and knew all his people by name" -08507558 15 n 05 beginning 0 origin 0 root 0 rootage 0 source 0 014 @ 08620061 n 0000 + 02623731 v 0401 + 02623731 v 0301 + 02743343 v 0201 ~ 08508105 n 0000 ~ 08508361 n 0000 ~ 08508449 n 0000 ~ 08508629 n 0000 ~ 08508736 n 0000 ~ 08508834 n 0000 ~ 08510456 n 0000 ~ 08585158 n 0000 ~ 08585298 n 0000 ~ 08585447 n 0000 | the place where something begins, where it springs into being; "the Italian beginning of the Renaissance"; "Jupiter was the origin of the radiation"; "Pittsburgh is the source of the Ohio River"; "communism's Russian root" -08508105 15 n 01 derivation 0 004 @ 08507558 n 0000 + 02737187 v 0101 + 00251791 v 0101 + 00251615 v 0101 | the source or origin from which something derives (i.e. comes or issues); "he prefers shoes of Italian derivation"; "music of Turkish derivation" -08508361 15 n 01 spring 0 001 @ 08507558 n 0000 | a point at which water issues forth -08508449 15 n 03 fountainhead 0 headspring 0 head 1 001 @ 08507558 n 0000 | the source of water from which a stream arises; "they tracked him back toward the head of the stream" -08508629 15 n 01 headwater 0 001 @ 08507558 n 0000 | the source of a river; "the headwaters of the Nile" -08508736 15 n 02 wellhead 0 wellspring 0 001 @ 08507558 n 0000 | the source of water for a well -08508834 15 n 02 jumping-off_place 0 point_of_departure 0 001 @ 08507558 n 0000 | a place from which an enterprise or expedition is launched; "one day when I was at a suitable jumping-off place I decided to see if I could find him"; "my point of departure was San Francisco" -08509111 15 n 01 jungle 0 002 @ 00027167 n 0000 ~ 08509251 n 0000 | a location marked by an intense competition and struggle for survival -08509251 15 n 01 concrete_jungle 0 003 @ 08509111 n 0000 #p 08524735 n 0000 %p 14516256 n 0000 | an area in a city with large modern buildings that is perceived as dangerous and unpleasant -08509442 15 n 01 zone 1 012 @ 08630039 n 0000 + 03132185 a 0102 + 00332835 v 0102 ~ 08688424 n 0000 ~ 08688590 n 0000 ~ 08689873 n 0000 ~ 08689947 n 0000 ~ 08690194 n 0000 ~ 08690352 n 0000 ~ 08690974 n 0000 ~ 08691188 n 0000 ~i 08739829 n 0000 | an area or region distinguished from adjacent parts by a distinctive feature or characteristic -08509786 15 n 01 belt 0 006 @ 08630039 n 0000 ~ 08498888 n 0000 ~i 08510030 n 0000 ~i 08543916 n 0000 ~ 08580011 n 0000 ~i 08676760 n 0000 | an elongated region where a specific condition or characteristic is found; "a belt of high pressure" -08510030 15 n 01 Bible_Belt 0 001 @i 08509786 n 0000 | southern and midwestern United States where Protestant fundamentalism is dominant -08510169 15 n 06 fatherland 0 homeland 0 motherland 0 mother_country 0 country_of_origin 0 native_land 0 002 @ 08544813 n 0000 ~ 08611954 n 0000 | the country where you were born -08510350 15 n 02 birthplace 0 place_of_birth 0 001 @ 08664443 n 0000 | the place where someone was born -08510456 15 n 05 birthplace 1 cradle 0 place_of_origin 0 provenance 0 provenience 0 001 @ 08507558 n 0000 | where something originated or was nurtured in its early existence; "the birthplace of civilization" -08510666 15 n 02 side 0 face 0 010 @ 08660339 n 0000 + 02725058 a 0201 + 02137907 v 0201 ~ 08511017 n 0000 ~ 08511241 n 0000 ~ 08573472 n 0000 ~ 08592352 n 0000 ~ 08610023 n 0000 ~ 08629508 n 0000 ~ 08663354 n 0000 | a surface forming part of the outside of an object; "he examined all sides of the crystal"; "dew dripped from the face of the leaf" -08511017 15 n 01 beam-ends 0 002 @ 08510666 n 0000 ;c 00314469 n 0000 | (nautical) at the ends of the transverse deck beams of a vessel; "on her beam-ends" means heeled over on the side so that the deck is almost vertical -08511241 15 n 03 bottom 0 underside 0 undersurface 0 008 @ 08510666 n 0000 + 02337699 v 0101 + 01238358 v 0101 ~ 02798574 n 0000 ~ 02838014 n 0000 ~ 03511426 n 0000 ~ 04258982 n 0000 ~ 08511473 n 0000 | the lower side of anything -08511473 15 n 01 underbelly 0 001 @ 08511241 n 0000 | lower side; "the underbellies of clouds" -08511570 15 n 01 foot 0 002 @ 08511970 n 0000 ! 08664184 n 0101 | the lower part of anything; "curled up on the foot of the bed"; "the foot of the page"; "the foot of the list"; "the foot of the mountain" -08511777 15 n 01 base 0 004 @ 08511970 n 0000 ;c 06057539 n 0000 + 00318667 a 0102 + 02659733 a 0102 | (anatomy) the part of an organ nearest its point of attachment; "the base of the skull" -08511970 15 n 01 bottom 1 006 @ 08630039 n 0000 + 02337699 v 0101 + 01238358 v 0101 ~ 08511570 n 0000 ~ 08511777 n 0000 ~ 08512182 n 0000 | the lowest part of anything; "they started at the bottom of the hill" -08512182 15 n 01 rock_bottom 0 001 @ 08511970 n 0000 | the absolute bottom -08512259 15 n 03 boundary 0 bound 0 bounds 0 020 @ 08568978 n 0000 + 02710673 v 0201 + 00233335 v 0205 + 02710673 v 0101 ~ 05256220 n 0000 ~ 08501114 n 0000 ~ 08501275 n 0000 ~ 08512736 n 0000 ~ 08513072 n 0000 ~ 08515817 n 0000 ~ 08515911 n 0000 ~ 08516002 n 0000 ~ 08565701 n 0000 ~ 08565894 n 0000 ~ 08592656 n 0000 ~ 08612786 n 0000 ~i 08644552 n 0000 ~ 08660339 n 0000 ~i 09357080 n 0000 ~ 09433839 n 0000 | the line or plane indicating the limit or extent of something -08512736 15 n 05 boundary_line 0 border 0 borderline 0 delimitation 0 mete 0 012 @ 08512259 n 0000 + 00730301 v 0403 + 00730301 v 0402 + 02710673 v 0202 + 01467370 v 0205 + 01466978 v 0201 ~ 08514592 n 0000 ~ 08514865 n 0000 ~i 08514975 n 0000 ~i 08515126 n 0000 ~ 08515349 n 0000 ~ 08515457 n 0000 | a line that indicates a boundary -08513072 15 n 02 bourn 0 bourne 0 001 @ 08512259 n 0000 | an archaic term for a boundary -08513163 15 n 04 borderland 0 border_district 0 march 0 marchland 0 002 @ 08552138 n 0000 + 01466978 v 0305 | district consisting of the area on either side of a border or boundary of a country or an area; "the Welsh marches between England and Wales" -08513417 15 n 01 narco-state 0 001 @ 08574314 n 0000 | an area that has been taken over and is controlled and corrupted by drug cartels and where law enforcement is effectively nonexistent; "this Mexican town has become a narco-state that ships 100 pounds of cocaine to the United States every day" -08513718 15 n 02 place 4 property 0 007 @ 08574314 n 0000 + 02333689 v 0102 ~ 02859955 n 0000 ~ 04133648 n 0000 ~ 08514034 n 0000 ~ 08514233 n 0000 ~ 08581299 n 0000 | any area set aside for a particular purpose; "who owns this place?"; "the president was concerned about the property across from the White House" -08514034 15 n 02 center 2 centre 3 003 @ 08513718 n 0000 ~ 08514412 n 0000 ~ 08518747 n 0000 | a place where some particular activity is concentrated; "they received messages from several centers" -08514233 15 n 01 colony 2 001 @ 08513718 n 0000 | a place where a group of people with the same interest or occupation are concentrated; "a nudist colony"; "an artists' colony" -08514412 15 n 02 nerve_center 0 nerve_centre 0 001 @ 08514034 n 0000 | a center that provides information and control; "the nerve center of the diamond industry is in Amsterdam" -08514592 15 n 02 circumference 0 circuit 1 003 @ 08512736 n 0000 + 00331716 a 0101 + 00449332 a 0103 | the boundary line encompassing an area or object; "he had walked the full circumference of his land"; "a danger to all races over the whole circumference of the globe" -08514865 15 n 01 fence_line 0 002 @ 08512736 n 0000 %p 03327234 n 0000 | a boundary line created by a fence -08514975 15 n 01 Green_Line 0 001 @i 08512736 n 0000 | the border marking the boundaries of the land that Israel won in its 1948 war of independence -08515126 15 n 01 Line_of_Control 0 002 @i 08512736 n 0000 #p 08975617 n 0000 | a 450-mile line that is supposed to indicate the boundary between the part of Kashmir controlled by India and the part controlled by Pakistan -08515349 15 n 01 property_line 0 001 @ 08512736 n 0000 | the boundary line between two pieces of property -08515457 15 n 02 state_line 0 state_boundary 0 002 @ 08512736 n 0000 ~i 08515581 n 0000 | the boundary between two states -08515581 15 n 03 Mason-Dixon_line 0 Mason_and_Dixon_line 0 Mason_and_Dixon's_line 0 001 @i 08515457 n 0000 | the boundary between Maryland and Pennsylvania; symbolic dividing line between North and South before the American Civil War -08515817 15 n 01 district_line 0 001 @ 08512259 n 0000 | the boundary between two districts -08515911 15 n 01 county_line 0 001 @ 08512259 n 0000 | the boundary between two counties -08516002 15 n 01 city_line 0 001 @ 08512259 n 0000 | the boundary of a city -08516080 15 n 02 balk 0 baulk 0 002 @ 05128519 n 0000 #p 03982430 n 0000 | the area on a billiard table behind the balkline; "a player with ball in hand must play from the balk" -08516260 15 n 03 balkline 0 baulk-line 0 string_line 0 001 @ 08593924 n 0000 | line across a billiard table behind which the cue balls are placed at the start of a game -08516431 15 n 01 bomb_site 0 001 @ 08651247 n 0000 | an area in a town that has been devastated by bombs; "they opened a parking lot on the bomb site" -08516584 15 n 01 bowels 0 001 @ 08521816 n 0000 | the center of the Earth -08516660 15 n 01 bowling_green 0 001 @ 08570758 n 0000 | a field of closely mowed turf for playing bowls -08516767 15 n 01 breadbasket 0 001 @ 08630985 n 0000 | a geographic region serving as the principal source of grain -08516885 15 n 01 breeding_ground 0 003 @ 08673395 n 0000 ~ 08619250 n 0000 ~ 08644426 n 0000 | a place where animals breed -08517010 15 n 01 bridgehead 1 001 @ 08624385 n 0000 | a defensive post at the end of a bridge nearest to the enemy -08517127 15 n 01 brink 0 001 @ 08565701 n 0000 | the edge of a steep place -08517204 15 n 01 broadcast_area 0 001 @ 08497294 n 0000 | the area over which a radio or tv transmission can be received -08517327 15 n 02 buffer_state 0 buffer_country 0 001 @ 08544813 n 0000 | a small neutral state between two rival powers -08517449 15 n 02 bull's_eye 0 bull 0 002 @ 08521816 n 0000 #p 07262108 n 0000 | the center of a target -08517554 15 n 01 bus_route 0 002 @ 08616311 n 0000 %p 08517676 n 0000 | the route regularly followed by a passenger bus -08517676 15 n 01 bus_stop 0 002 @ 08656893 n 0000 #p 08517554 n 0000 | a place on a bus route where buses stop to discharge and take on passengers -08517825 15 n 01 checkpoint 0 001 @ 08656893 n 0000 | a place (as at a frontier) where travellers are stopped for inspection and clearance -08517966 15 n 03 cabstand 0 taxistand 0 taxi_rank 0 001 @ 08653706 n 0000 | a place where taxis park while awaiting customers; "in England the place where taxis wait to be hired is called a `taxi rank'" -08518171 15 n 07 campsite 0 campground 0 camping_site 0 camping_ground 0 bivouac 0 encampment 0 camping_area 0 002 @ 08651247 n 0000 + 02653996 v 0504 | a site where people on holiday can pitch a tent -08518374 15 n 01 campus 0 002 @ 08569998 n 0000 %p 04343740 n 0000 | a field on which the buildings of a university are situated -08518505 15 n 01 capital 0 010 @ 08647945 n 0000 ~i 08558289 n 0000 ~ 08691669 n 0000 ~ 08695198 n 0000 ~ 08695539 n 0000 ~i 08709593 n 0000 ~i 08755664 n 0000 ~i 08888479 n 0000 ~i 08892596 n 0000 ~i 08895386 n 0000 | a seat of government -08518747 15 n 01 capital 1 001 @ 08514034 n 0000 | a center that is associated more than any other with some activity or product; "the crime capital of Italy"; "the drug capital of Columbia" -08518940 15 n 07 river_basin 0 basin 0 watershed 1 drainage_basin 1 catchment_area 0 catchment_basin 0 drainage_area 0 003 @ 08574314 n 0000 ~ 08519299 n 0000 ~ 08519444 n 0000 | the entire geographical area drained by a river and its tributaries; an area characterized by all runoff being conveyed to the same outlet; "flood control in the Missouri basin" -08519299 15 n 01 detention_basin 0 001 @ 08518940 n 0000 | a storage site (such as a small reservoir) that delays the flow of water downstream -08519444 15 n 01 retention_basin 0 001 @ 08518940 n 0000 | a storage site similar to a detention basin but the water in storage is permanently obstructed from flowing downstream -08519624 15 n 02 Caucasia 0 Caucasus 0 007 @i 08574314 n 0000 + 02843959 a 0202 + 02843959 a 0101 -r 08488675 n 0000 %p 08519916 n 0000 %p 09238674 n 0000 %m 09639382 n 0000 | a large region between the Black and Caspian seas that contains the Caucasus Mountains; oil is its major resource -08519916 15 n 01 Transcaucasia 0 005 @i 08574314 n 0000 #p 08519624 n 0000 %p 09017526 n 0000 %p 09018162 n 0000 %p 09018848 n 0000 | a geographical region to the south of the Caucasus Mountains and to the north of Turkey that comprises Georgia and Armenia and Azerbaijan -08520190 15 n 04 celestial_equator 0 equinoctial_circle 0 equinoctial_line 0 equinoctial 0 002 @ 08579487 n 0000 + 02721762 a 0401 | the great circle on the celestial sphere midway between the celestial poles -08520401 15 n 01 celestial_point 0 013 @ 08620061 n 0000 #p 08521267 n 0000 ~ 08494987 n 0000 ~ 08495249 n 0000 ~ 08495617 n 0000 ~ 08498424 n 0000 ~ 08520728 n 0000 ~ 08548239 n 0000 ~ 08600760 n 0000 ~ 08618379 n 0000 ~ 08621099 n 0000 ~ 08684769 n 0000 ~ 08685019 n 0000 | a point in the heavens (on the celestial sphere) -08520728 15 n 02 equinoctial_point 0 equinox 0 004 @ 08520401 n 0000 ;c 06095022 n 0000 ~ 08520958 n 0000 ~ 08521112 n 0000 | (astronomy) either of the two celestial points at which the celestial equator intersects the ecliptic -08520958 15 n 01 vernal_equinox 0 002 @ 08520728 n 0000 ;c 06095022 n 0000 | (astronomy) the equinoctial point that lies in the constellation of Pisces -08521112 15 n 01 autumnal_equinox 0 002 @ 08520728 n 0000 ;c 06095022 n 0000 | (astronomy) the equinoctial point that lies in the constellation of Virgo -08521267 15 n 07 celestial_sphere 0 sphere 1 empyrean 0 firmament 0 heavens 0 vault_of_heaven 0 welkin 0 008 @ 08660339 n 0000 + 02871229 a 0401 + 02720042 a 0302 %p 08494987 n 0000 %p 08520401 n 0000 %p 08600760 n 0000 %p 08684769 n 0000 %p 08685188 n 0000 | the apparent surface of the imaginary sphere on which celestial bodies appear to be projected -08521623 15 n 07 cemetery 0 graveyard 0 burial_site 0 burial_ground 0 burying_ground 0 memorial_park 0 necropolis 0 002 @ 08651247 n 0000 ~ 08626845 n 0000 | a tract of land used for burials -08521816 15 n 03 center 0 centre 0 midpoint 0 019 @ 08620061 n 0000 + 01852701 v 0202 + 00330506 a 0101 + 00329831 a 0101 + 00330728 a 0101 + 00330728 a 0102 + 01852701 v 0101 ~ 02837567 n 0000 ~ 05102764 n 0000 ~ 08516584 n 0000 ~ 08517449 n 0000 ~ 08522518 n 0000 ~ 08522872 n 0000 ~ 08524262 n 0000 ~ 08524404 n 0000 ~ 08611339 n 0000 ~ 09256815 n 0000 ~ 09375085 n 0000 ~ 09375223 n 0000 | a point equidistant from the ends of a line or the extremities of a figure -08522287 15 n 04 center_of_buoyancy 0 centre_of_buoyancy 0 center_of_immersion 0 centre_of_immersion 0 002 @ 08522872 n 0000 ;c 06090869 n 0000 | (physics) the center of mass of the immersed part of ship or other floating object -08522518 15 n 02 center_of_gravity 0 centre_of_gravity 0 002 @ 08521816 n 0000 ~ 08522742 n 0000 | the point within something at which gravity can be considered to act; in uniform gravity it is equal to the center of mass -08522742 15 n 02 center_of_flotation 0 centre_of_flotation 0 001 @ 08522518 n 0000 | the center of gravity of a floating object -08522872 15 n 02 center_of_mass 0 centre_of_mass 0 004 @ 08521816 n 0000 ~ 08522287 n 0000 ~ 08523064 n 0000 ~ 08523217 n 0000 | point representing the mean position of the matter in a body -08523064 15 n 01 barycenter 0 002 @ 08522872 n 0000 ;c 06095022 n 0000 | (astronomy) the common center of mass around which two or more bodies revolve -08523217 15 n 01 centroid 0 002 @ 08522872 n 0000 + 02688131 a 0101 | the center of mass of an object of uniform density -08523340 15 n 02 trichion 0 crinion 0 002 @ 08620061 n 0000 #p 05602548 n 0000 | point where the hairline meets the midpoint of the forehead -08523483 15 n 05 center 1 centre 1 middle 0 heart 0 eye 0 016 @ 08497294 n 0000 + 01498498 v 0301 + 00329831 a 0101 + 00330728 a 0101 + 00330728 a 0102 ~ 08524021 n 0000 ~ 08524130 n 0000 ~ 08524572 n 0000 ~ 08543081 n 0000 ~ 08543223 n 0000 ~ 08543625 n 0000 ~ 08571139 n 0000 ~ 08571275 n 0000 ~ 08647945 n 0000 ~i 08874273 n 0000 ~ 09354511 n 0000 | an area that is approximately central within some larger region; "it is in the center of town"; "they ran forward into the heart of the struggle"; "they were in the eye of the storm" -08524021 15 n 02 center_stage 0 centre_stage 0 001 @ 08523483 n 0000 | the central area on a theater stage -08524130 15 n 03 city_center 0 city_centre 0 central_city 0 002 @ 08523483 n 0000 #p 08524735 n 0000 | the central part of a city -08524262 15 n 01 core 0 003 @ 08521816 n 0000 + 01590523 v 0101 ~ 08544125 n 0000 | the center of an object; "the ball has a titanium core" -08524404 15 n 02 navel 0 navel_point 0 001 @ 08521816 n 0000 | the center point or middle of something; "the Incas believed that Cuzco was the navel of the universe" -08524572 15 n 02 storm_center 0 storm_centre 0 002 @ 08523483 n 0000 #p 11462526 n 0000 | the central area or place of lowest barometric pressure within a storm -08524735 15 n 03 city 0 metropolis 0 urban_center 0 673 @ 08626283 n 0000 + 02865172 a 0201 + 00499642 v 0101 ~i 08504151 n 0000 %p 08509251 n 0000 %p 08524130 n 0000 %p 08543081 n 0000 %p 08543496 n 0000 %p 08543625 n 0000 %p 08571139 n 0000 ~ 08691669 n 0000 ~ 08695198 n 0000 ~ 08695539 n 0000 ~i 08701555 n 0000 ~i 08703972 n 0000 ~i 08704409 n 0000 ~i 08704554 n 0000 ~i 08705251 n 0000 ~i 08706247 n 0000 ~i 08706502 n 0000 ~i 08706663 n 0000 ~i 08706823 n 0000 ~i 08708481 n 0000 ~i 08708609 n 0000 ~i 08710873 n 0000 ~i 08712698 n 0000 ~i 08713136 n 0000 ~i 08713285 n 0000 ~i 08713405 n 0000 ~i 08713539 n 0000 ~i 08714624 n 0000 ~i 08714795 n 0000 ~i 08714966 n 0000 ~i 08715952 n 0000 ~i 08716076 n 0000 ~i 08717629 n 0000 ~i 08719705 n 0000 ~i 08721145 n 0000 ~i 08721449 n 0000 ~i 08721796 n 0000 ~i 08721961 n 0000 ~i 08722084 n 0000 ~i 08722270 n 0000 ~i 08725161 n 0000 ~i 08725454 n 0000 ~i 08726582 n 0000 ~i 08727003 n 0000 ~i 08727230 n 0000 ~i 08727396 n 0000 ~i 08727606 n 0000 ~i 08727806 n 0000 ~i 08727945 n 0000 ~i 08728066 n 0000 ~i 08728268 n 0000 ~i 08728462 n 0000 ~i 08728595 n 0000 ~i 08728749 n 0000 ~i 08728882 n 0000 ~i 08729283 n 0000 ~i 08729452 n 0000 ~i 08730218 n 0000 ~i 08731057 n 0000 ~i 08731148 n 0000 ~i 08732807 n 0000 ~i 08733163 n 0000 ~i 08733291 n 0000 ~i 08733415 n 0000 ~i 08733563 n 0000 ~i 08734853 n 0000 ~i 08735008 n 0000 ~i 08735345 n 0000 ~i 08736779 n 0000 ~i 08738151 n 0000 ~i 08738715 n 0000 ~i 08739669 n 0000 ~i 08740367 n 0000 ~i 08740617 n 0000 ~i 08740729 n 0000 ~i 08742205 n 0000 ~i 08742578 n 0000 ~i 08742743 n 0000 ~i 08742892 n 0000 ~i 08743125 n 0000 ~i 08743229 n 0000 ~i 08743370 n 0000 ~i 08743557 n 0000 ~i 08743691 n 0000 ~i 08743786 n 0000 ~i 08743945 n 0000 ~i 08744105 n 0000 ~i 08744509 n 0000 ~i 08744750 n 0000 ~i 08744871 n 0000 ~i 08745011 n 0000 ~i 08745407 n 0000 ~i 08745800 n 0000 ~i 08745901 n 0000 ~i 08746023 n 0000 ~i 08746147 n 0000 ~i 08746363 n 0000 ~i 08746475 n 0000 ~i 08746636 n 0000 ~i 08750822 n 0000 ~i 08750986 n 0000 ~i 08752671 n 0000 ~i 08753294 n 0000 ~i 08754388 n 0000 ~i 08758334 n 0000 ~i 08758487 n 0000 ~i 08759852 n 0000 ~i 08762104 n 0000 ~i 08762243 n 0000 ~i 08765315 n 0000 ~i 08765460 n 0000 ~i 08765623 n 0000 ~i 08766455 n 0000 ~i 08766571 n 0000 ~i 08766667 n 0000 ~i 08766846 n 0000 ~i 08769439 n 0000 ~i 08770013 n 0000 ~i 08770274 n 0000 ~i 08770518 n 0000 ~i 08770718 n 0000 ~i 08770932 n 0000 ~i 08771116 n 0000 ~i 08771277 n 0000 ~i 08771400 n 0000 ~i 08772137 n 0000 ~i 08772307 n 0000 ~i 08772551 n 0000 ~i 08772667 n 0000 ~i 08772794 n 0000 ~i 08772922 n 0000 ~i 08773098 n 0000 ~i 08773336 n 0000 ~i 08773679 n 0000 ~i 08773880 n 0000 ~i 08774073 n 0000 ~i 08774227 n 0000 ~i 08774374 n 0000 ~i 08774546 n 0000 ~i 08774704 n 0000 ~i 08774912 n 0000 ~i 08775053 n 0000 ~i 08775179 n 0000 ~i 08777130 n 0000 ~i 08780282 n 0000 ~i 08780380 n 0000 ~i 08786432 n 0000 ~i 08786660 n 0000 ~i 08786855 n 0000 ~i 08787049 n 0000 ~i 08787240 n 0000 ~i 08788326 n 0000 ~i 08788588 n 0000 ~i 08788887 n 0000 ~i 08789076 n 0000 ~i 08789605 n 0000 ~i 08793746 n 0000 ~i 08795654 n 0000 ~i 08795974 n 0000 ~i 08797840 n 0000 ~i 08798062 n 0000 ~i 08798195 n 0000 ~i 08799462 n 0000 ~i 08801099 n 0000 ~i 08803883 n 0000 ~i 08804049 n 0000 ~i 08804319 n 0000 ~i 08804662 n 0000 ~i 08804845 n 0000 ~i 08805386 n 0000 ~i 08805565 n 0000 ~i 08805801 n 0000 ~i 08806458 n 0000 ~i 08807894 n 0000 ~i 08808452 n 0000 ~i 08808792 n 0000 ~i 08808979 n 0000 ~i 08809165 n 0000 ~i 08809910 n 0000 ~i 08810051 n 0000 ~i 08810220 n 0000 ~i 08810505 n 0000 ~i 08811473 n 0000 ~i 08812166 n 0000 ~i 08812552 n 0000 ~i 08813156 n 0000 ~i 08813264 n 0000 ~i 08813699 n 0000 ~i 08814333 n 0000 ~i 08814664 n 0000 ~i 08818247 n 0000 ~i 08818835 n 0000 ~i 08819016 n 0000 ~i 08822427 n 0000 ~i 08822546 n 0000 ~i 08823480 n 0000 ~i 08824771 n 0000 ~i 08827689 n 0000 ~i 08828151 n 0000 ~i 08828296 n 0000 ~i 08828627 n 0000 ~i 08829533 n 0000 ~i 08830116 n 0000 ~i 08846626 n 0000 ~i 08846739 n 0000 ~i 08846885 n 0000 ~i 08847024 n 0000 ~i 08849372 n 0000 ~i 08850741 n 0000 ~i 08851034 n 0000 ~i 08851364 n 0000 ~i 08851500 n 0000 ~i 08851687 n 0000 ~i 08851830 n 0000 ~i 08853510 n 0000 ~i 08853612 n 0000 ~i 08854855 n 0000 ~i 08855126 n 0000 ~i 08855505 n 0000 ~i 08855609 n 0000 ~i 08855763 n 0000 ~i 08855909 n 0000 ~i 08856037 n 0000 ~i 08856162 n 0000 ~i 08856266 n 0000 ~i 08856475 n 0000 ~i 08856630 n 0000 ~i 08856793 n 0000 ~i 08856945 n 0000 ~i 08857099 n 0000 ~i 08857260 n 0000 ~i 08857405 n 0000 ~i 08857529 n 0000 ~i 08873269 n 0000 ~i 08876975 n 0000 ~i 08877208 n 0000 ~i 08877382 n 0000 ~i 08877613 n 0000 ~i 08877807 n 0000 ~i 08878016 n 0000 ~i 08878533 n 0000 ~i 08878708 n 0000 ~i 08879028 n 0000 ~i 08879197 n 0000 ~i 08879388 n 0000 ~i 08879680 n 0000 ~i 08879867 n 0000 ~i 08880083 n 0000 ~i 08880223 n 0000 ~i 08880375 n 0000 ~i 08880859 n 0000 ~i 08881017 n 0000 ~i 08885921 n 0000 ~i 08889400 n 0000 ~i 08889521 n 0000 ~i 08889657 n 0000 ~i 08889944 n 0000 ~i 08892186 n 0000 ~i 08892971 n 0000 ~i 08895497 n 0000 ~i 08895771 n 0000 ~i 08898187 n 0000 ~i 08898457 n 0000 ~i 08899149 n 0000 ~i 08899351 n 0000 ~i 08899577 n 0000 ~i 08899776 n 0000 ~i 08900204 n 0000 ~i 08903220 n 0000 ~i 08903352 n 0000 ~i 08903487 n 0000 ~i 08903636 n 0000 ~i 08903872 n 0000 ~i 08904115 n 0000 ~i 08904269 n 0000 ~i 08904392 n 0000 ~i 08904533 n 0000 ~i 08904731 n 0000 ~i 08904858 n 0000 ~i 08909933 n 0000 ~i 08910106 n 0000 ~i 08910230 n 0000 ~i 08911602 n 0000 ~i 08911726 n 0000 ~i 08911868 n 0000 ~i 08912012 n 0000 ~i 08912153 n 0000 ~i 08912279 n 0000 ~i 08912427 n 0000 ~i 08912559 n 0000 ~i 08912703 n 0000 ~i 08913085 n 0000 ~i 08914413 n 0000 ~i 08914573 n 0000 ~i 08914850 n 0000 ~i 08915017 n 0000 ~i 08915660 n 0000 ~i 08916111 n 0000 ~i 08916832 n 0000 ~i 08918800 n 0000 ~i 08919241 n 0000 ~i 08919475 n 0000 ~i 08920207 n 0000 ~i 08923177 n 0000 ~i 08923586 n 0000 ~i 08923755 n 0000 ~i 08923884 n 0000 ~i 08924023 n 0000 ~i 08924238 n 0000 ~i 08924560 n 0000 ~i 08924913 n 0000 ~i 08925093 n 0000 ~i 08925287 n 0000 ~i 08925552 n 0000 ~i 08925700 n 0000 ~i 08925830 n 0000 ~i 08925957 n 0000 ~i 08926231 n 0000 ~i 08926381 n 0000 ~i 08926543 n 0000 ~i 08927678 n 0000 ~i 08928083 n 0000 ~i 08928742 n 0000 ~i 08928933 n 0000 ~i 08929102 n 0000 ~i 08934532 n 0000 ~i 08934694 n 0000 ~i 08935212 n 0000 ~i 08935848 n 0000 ~i 08936180 n 0000 ~i 08936303 n 0000 ~i 08936476 n 0000 ~i 08936647 n 0000 ~i 08936833 n 0000 ~i 08936996 n 0000 ~i 08937109 n 0000 ~i 08937251 n 0000 ~i 08937414 n 0000 ~i 08937594 n 0000 ~i 08937850 n 0000 ~i 08937995 n 0000 ~i 08938163 n 0000 ~i 08938351 n 0000 ~i 08938619 n 0000 ~i 08946715 n 0000 ~i 08946812 n 0000 ~i 08950035 n 0000 ~i 08950230 n 0000 ~i 08950407 n 0000 ~i 08950649 n 0000 ~i 08950787 n 0000 ~i 08950907 n 0000 ~i 08951077 n 0000 ~i 08951278 n 0000 ~i 08953029 n 0000 ~i 08956140 n 0000 ~i 08956305 n 0000 ~i 08956461 n 0000 ~i 08956574 n 0000 ~i 08957993 n 0000 ~i 08958212 n 0000 ~i 08958334 n 0000 ~i 08960363 n 0000 ~i 08962951 n 0000 ~i 08963244 n 0000 ~i 08963813 n 0000 ~i 08966085 n 0000 ~i 08969798 n 0000 ~i 08970064 n 0000 ~i 08970189 n 0000 ~i 08970318 n 0000 ~i 08970611 n 0000 ~i 08971404 n 0000 ~i 08972920 n 0000 ~i 08973064 n 0000 ~i 08974330 n 0000 ~i 08974468 n 0000 ~i 08974604 n 0000 ~i 08974818 n 0000 ~i 08974974 n 0000 ~i 08976799 n 0000 ~i 08976913 n 0000 ~i 08977211 n 0000 ~i 08977428 n 0000 ~i 08977527 n 0000 ~i 08977665 n 0000 ~i 08979590 n 0000 ~i 08981922 n 0000 ~i 08982037 n 0000 ~i 08982181 n 0000 ~i 08983274 n 0000 ~i 08983413 n 0000 ~i 08983556 n 0000 ~i 08983742 n 0000 ~i 08984010 n 0000 ~i 08984122 n 0000 ~i 08984223 n 0000 ~i 08984332 n 0000 ~i 08984457 n 0000 ~i 08985958 n 0000 ~i 08986374 n 0000 ~i 08986526 n 0000 ~i 08990203 n 0000 ~i 08994339 n 0000 ~i 08994834 n 0000 ~i 08995013 n 0000 ~i 08995120 n 0000 ~i 08999049 n 0000 ~i 09000462 n 0000 ~i 09000665 n 0000 ~i 09000854 n 0000 ~i 09001007 n 0000 ~i 09002325 n 0000 ~i 09002433 n 0000 ~i 09004358 n 0000 ~i 09004495 n 0000 ~i 09004992 n 0000 ~i 09005153 n 0000 ~i 09005457 n 0000 ~i 09005611 n 0000 ~i 09008130 n 0000 ~i 09008333 n 0000 ~i 09008454 n 0000 ~i 09008723 n 0000 ~i 09008993 n 0000 ~i 09009174 n 0000 ~i 09009372 n 0000 ~i 09009490 n 0000 ~i 09009693 n 0000 ~i 09009816 n 0000 ~i 09009978 n 0000 ~i 09010085 n 0000 ~i 09010300 n 0000 ~i 09010453 n 0000 ~i 09010565 n 0000 ~i 09010670 n 0000 ~i 09011679 n 0000 ~i 09011820 n 0000 ~i 09012735 n 0000 ~i 09013603 n 0000 ~i 09013724 n 0000 ~i 09014066 n 0000 ~i 09014470 n 0000 ~i 09016099 n 0000 ~i 09016365 n 0000 ~i 09016539 n 0000 ~i 09016698 n 0000 ~i 09016860 n 0000 ~i 09017005 n 0000 ~i 09017168 n 0000 ~i 09017301 n 0000 ~i 09020299 n 0000 ~i 09022667 n 0000 ~i 09025189 n 0000 ~i 09025451 n 0000 ~i 09025584 n 0000 ~i 09025728 n 0000 ~i 09025863 n 0000 ~i 09026204 n 0000 ~i 09026360 n 0000 ~i 09026499 n 0000 ~i 09026614 n 0000 ~i 09026780 n 0000 ~i 09026911 n 0000 ~i 09027089 n 0000 ~i 09027292 n 0000 ~i 09027679 n 0000 ~i 09028477 n 0000 ~i 09030382 n 0000 ~i 09030467 n 0000 ~i 09030596 n 0000 ~i 09032483 n 0000 ~i 09032604 n 0000 ~i 09032981 n 0000 ~i 09033117 n 0000 ~i 09034286 n 0000 ~i 09034402 n 0000 ~i 09035153 n 0000 ~i 09035632 n 0000 ~i 09035735 n 0000 ~i 09035852 n 0000 ~i 09035951 n 0000 ~i 09037991 n 0000 ~i 09038079 n 0000 ~i 09038170 n 0000 ~i 09038272 n 0000 ~i 09038439 n 0000 ~i 09040475 n 0000 ~i 09040839 n 0000 ~i 09041582 n 0000 ~i 09041785 n 0000 ~i 09042213 n 0000 ~i 09042322 n 0000 ~i 09042451 n 0000 ~i 09042675 n 0000 ~i 09043802 n 0000 ~i 09044094 n 0000 ~i 09044714 n 0000 ~i 09053947 n 0000 ~i 09054350 n 0000 ~i 09054480 n 0000 ~i 09055906 n 0000 ~i 09058071 n 0000 ~i 09058841 n 0000 ~i 09062015 n 0000 ~i 09062320 n 0000 ~i 09062585 n 0000 ~i 09062791 n 0000 ~i 09062961 n 0000 ~i 09063259 n 0000 ~i 09063477 n 0000 ~i 09063673 n 0000 ~i 09064264 n 0000 ~i 09064594 n 0000 ~i 09064861 n 0000 ~i 09065191 n 0000 ~i 09065328 n 0000 ~i 09065557 n 0000 ~i 09066017 n 0000 ~i 09066534 n 0000 ~i 09066799 n 0000 ~i 09067878 n 0000 ~i 09068320 n 0000 ~i 09068921 n 0000 ~i 09069415 n 0000 ~i 09069752 n 0000 ~i 09070363 n 0000 ~i 09072810 n 0000 ~i 09073258 n 0000 ~i 09073697 n 0000 ~i 09073938 n 0000 ~i 09074140 n 0000 ~i 09074834 n 0000 ~i 09075007 n 0000 ~i 09075329 n 0000 ~i 09077111 n 0000 ~i 09077410 n 0000 ~i 09077556 n 0000 ~i 09077821 n 0000 ~i 09083390 n 0000 ~i 09083659 n 0000 ~i 09084075 n 0000 ~i 09084196 n 0000 ~i 09085209 n 0000 ~i 09085334 n 0000 ~i 09085441 n 0000 ~i 09086070 n 0000 ~i 09086635 n 0000 ~i 09086793 n 0000 ~i 09087450 n 0000 ~i 09088396 n 0000 ~i 09088989 n 0000 ~i 09089782 n 0000 ~i 09089923 n 0000 ~i 09091909 n 0000 ~i 09092352 n 0000 ~i 09093472 n 0000 ~i 09094381 n 0000 ~i 09096664 n 0000 ~i 09097707 n 0000 ~i 09097871 n 0000 ~i 09099264 n 0000 ~i 09100223 n 0000 ~i 09100394 n 0000 ~i 09100690 n 0000 ~i 09100837 n 0000 ~i 09102517 n 0000 ~i 09102883 n 0000 ~i 09106770 n 0000 ~i 09107098 n 0000 ~i 09107626 n 0000 ~i 09108055 n 0000 ~i 09108728 n 0000 ~i 09110229 n 0000 ~i 09110939 n 0000 ~i 09111168 n 0000 ~i 09111955 n 0000 ~i 09112857 n 0000 ~i 09113207 n 0000 ~i 09113333 n 0000 ~i 09113479 n 0000 ~i 09113762 n 0000 ~i 09114020 n 0000 ~i 09115315 n 0000 ~i 09118505 n 0000 ~i 09119277 n 0000 ~i 09124589 n 0000 ~i 09125016 n 0000 ~i 09125203 n 0000 ~i 09125354 n 0000 ~i 09125528 n 0000 ~i 09125629 n 0000 ~i 09128372 n 0000 ~i 09128536 n 0000 ~i 09128947 n 0000 ~i 09129062 n 0000 ~i 09129324 n 0000 ~i 09129926 n 0000 ~i 09130452 n 0000 ~i 09130714 n 0000 ~i 09130883 n 0000 ~i 09131205 n 0000 ~i 09131428 n 0000 ~i 09131553 n 0000 ~i 09132778 n 0000 ~i 09133500 n 0000 ~i 09133895 n 0000 ~i 09134999 n 0000 ~i 09135447 n 0000 ~i 09135993 n 0000 ~i 09136182 n 0000 ~i 09136582 n 0000 ~i 09136929 n 0000 ~i 09137682 n 0000 ~i 09138538 n 0000 ~i 09139849 n 0000 ~i 09140569 n 0000 ~i 09140993 n 0000 ~i 09141119 n 0000 ~i 09142674 n 0000 ~i 09142771 n 0000 ~i 09142887 n 0000 ~i 09143205 n 0000 ~i 09143321 n 0000 ~i 09143649 n 0000 ~i 09143786 n 0000 ~i 09144117 n 0000 ~i 09144323 n 0000 ~i 09144730 n 0000 ~i 09144851 n 0000 ~i 09145083 n 0000 ~i 09145217 n 0000 ~i 09145655 n 0000 ~i 09145851 n 0000 ~i 09146111 n 0000 ~i 09146813 n 0000 ~i 09146912 n 0000 ~i 09147618 n 0000 ~i 09148662 n 0000 ~i 09150662 n 0000 ~i 09150863 n 0000 ~i 09151114 n 0000 ~i 09151216 n 0000 ~i 09151411 n 0000 ~i 09151516 n 0000 ~i 09154178 n 0000 ~i 09154607 n 0000 ~i 09154731 n 0000 ~i 09155692 n 0000 ~i 09155986 n 0000 ~i 09156241 n 0000 ~i 09156666 n 0000 ~i 09156889 n 0000 ~i 09157021 n 0000 ~i 09157766 n 0000 ~i 09158268 n 0000 ~i 09158501 n 0000 ~i 09159546 n 0000 ~i 09161452 n 0000 ~i 09162414 n 0000 ~i 09162581 n 0000 ~i 09162803 n 0000 ~i 09162955 n 0000 ~i 09163077 n 0000 ~i 09164241 n 0000 ~i 09164417 n 0000 ~i 09164903 n 0000 ~i 09165146 n 0000 ~i 09165294 n 0000 ~i 09167652 n 0000 | a large and densely populated urban area; may include several independent administrative districts; "Ancient Troy was a great city" -08537708 15 n 01 megalopolis 0 001 @ 08675967 n 0000 | a very large urban complex (usually involving several cities and towns) -08537837 15 n 01 city_district 0 028 @ 08552138 n 0000 #p 08540903 n 0000 ~ 08503639 n 0000 ~ 08538426 n 0000 ~ 08539072 n 0000 ~ 08549292 n 0000 ~ 08554346 n 0000 ~ 08627919 n 0000 ~ 08633683 n 0000 ~ 08651832 n 0000 ~ 08689646 n 0000 ~ 08689771 n 0000 ~ 08690665 n 0000 ~ 08690792 n 0000 ~i 08769836 n 0000 ~i 08874920 n 0000 ~i 08875057 n 0000 ~i 08875202 n 0000 ~i 08875369 n 0000 ~i 09063950 n 0000 ~i 09065899 n 0000 ~i 09096190 n 0000 ~i 09120207 n 0000 ~i 09121334 n 0000 ~i 09121458 n 0000 ~i 09121619 n 0000 ~i 09122397 n 0000 ~i 09122542 n 0000 | a district of a town or city -08538426 15 n 01 precinct 0 003 @ 08537837 n 0000 ~ 08538584 n 0000 ~ 08538730 n 0000 | a district of a city or town marked out for administrative purposes -08538584 15 n 01 police_precinct 0 001 @ 08538426 n 0000 | a precinct in which law enforcement is the responsibility of particular police force -08538730 15 n 02 voting_precinct 0 election_district 0 001 @ 08538426 n 0000 | one of several districts into which a city or town is divided for voting; each contains one polling place -08538917 15 n 02 polling_place 0 polling_station 0 002 @ 08664443 n 0000 %p 03978421 n 0000 | a place where voters go to cast their votes in an election -08539072 15 n 02 business_district 0 downtown 0 003 @ 08537837 n 0000 + 02494716 a 0201 ~ 08539557 n 0000 | the central area or commercial center of a town or city; "the heart of Birmingham's downtown" -08539276 15 n 01 outskirts 0 001 @ 08648322 n 0000 | outlying areas (as of a city or town); "they lived on the outskirts of Houston"; "they mingled in the outskirts of the crowd" -08539457 15 n 02 environs 1 purlieu 0 001 @ 08574314 n 0000 | an outer adjacent area of any place -08539557 15 n 01 Tin_Pan_Alley 0 001 @ 08539072 n 0000 | a city district (originally in New York) where composers and publishers of popular music do business -08539717 15 n 03 conurbation 0 urban_sprawl 0 sprawl 0 003 @ 08675967 n 0000 ~ 08539893 n 0000 ~i 08726745 n 0000 | an aggregation or continuous network of urban communities -08539893 15 n 01 subtopia 0 002 @ 08539717 n 0000 ;r 08860123 n 0000 | monotonous urban sprawl of standardized buildings -08540016 15 n 01 borough 1 004 @ 08226514 n 0000 ~ 08540193 n 0000 ~ 08540266 n 0000 ~ 08540416 n 0000 | an English town that forms the constituency of a member of parliament -08540193 15 n 01 burgh 0 001 @ 08540016 n 0000 | a borough in Scotland -08540266 15 n 01 pocket_borough 0 001 @ 08540016 n 0000 | a sparsely populated borough in which all or most of the land is owned by a single family -08540416 15 n 01 rotten_borough 0 001 @ 08540016 n 0000 | an English parliamentary constituency with few electors -08540532 15 n 01 borough 0 008 @ 08491826 n 0000 ~i 08874703 n 0000 ~i 08875547 n 0000 ~i 09119989 n 0000 ~i 09120087 n 0000 ~i 09120594 n 0000 ~i 09123182 n 0000 ~i 09123281 n 0000 | one of the administrative divisions of a large city -08540770 15 n 01 canton 1 003 @ 08491826 n 0000 + 02469596 v 0101 ~ 09032191 n 0000 | a small administrative division of a country -08540903 15 n 01 city 1 005 @ 08491826 n 0000 %p 08537837 n 0000 %p 08541130 n 0000 %p 08554206 n 0000 %p 08619620 n 0000 | an incorporated administrative district established by state charter; "the city raised the tax rate" -08541130 15 n 02 city_limit 0 city_limits 0 003 @ 08592656 n 0000 #p 08540903 n 0000 #p 08665504 n 0000 | the limits of the area occupied by a city or town -08541288 15 n 02 clearing 0 glade 0 003 @ 08673395 n 0000 + 00195617 v 0101 + 00195342 v 0101 | a tract of land with few or no trees in the middle of a wooded area -08541454 15 n 01 Coats_Land 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a region of western Antarctica along the southeastern shore of the Weddell Sea -08541609 15 n 01 commune 0 007 @ 08491826 n 0000 ;r 08849753 n 0000 ;r 08929922 n 0000 ;r 08801678 n 0000 ;r 09031653 n 0000 + 00409281 v 0102 + 00408852 v 0102 | the smallest administrative district of several European countries -08541841 15 n 02 zone 2 geographical_zone 0 005 @ 08574314 n 0000 + 03132185 a 0102 ~ 08542081 n 0000 ~ 08691276 n 0000 ~ 08691445 n 0000 | any of the regions of the surface of the Earth loosely divided according to latitude or longitude -08542081 15 n 01 climatic_zone 0 005 @ 08541841 n 0000 ~ 08573258 n 0000 ~ 08661878 n 0000 ~i 08665281 n 0000 ~ 08674344 n 0000 | any of the geographical zones loosely divided according to prevailing climate and latitude -08542304 15 n 02 commons 1 common_land 0 001 @ 08616050 n 0000 | a pasture subject to common use -08542403 15 n 01 commonwealth 0 002 @ 08654360 n 0000 ~i 08752974 n 0000 | the official name of some states in the United States (Massachusetts and Pennsylvania and Virginia and Kentucky) and associated territories (Puerto Rico) -08542634 15 n 02 confluence 0 meeting 0 003 @ 08578706 n 0000 ;c 09411430 n 0000 + 00612383 a 0101 | a place where things merge or flow together (especially rivers); "Pittsburgh is located at the confluence of the Allegheny and Monongahela rivers" -08542884 15 n 01 congressional_district 0 002 @ 08552138 n 0000 #p 08655464 n 0000 | a territorial division of a state; entitled to elect one member to the United States House of Representatives -08543081 15 n 01 financial_center 0 002 @ 08523483 n 0000 #p 08524735 n 0000 | the part of a city where financial institutions are centered -08543223 15 n 01 hub 0 002 @ 08523483 n 0000 ~ 08543496 n 0000 | a center of activity or interest or commerce or transportation; a focal point around which events revolve; "the playground is the hub of parental supervision"; "the airport is the economic hub of the area" -08543496 15 n 03 civic_center 0 municipal_center 0 down_town 0 002 @ 08543223 n 0000 #p 08524735 n 0000 | the center of a city -08543625 15 n 01 inner_city 0 002 @ 08523483 n 0000 #p 08524735 n 0000 | the older and more populated and (usually) poorer central section of a city -08543776 15 n 01 chokepoint 0 001 @ 08620061 n 0000 | a point of congestion or blockage; "the bridge is always a chokepoint at rush hour" -08543916 15 n 01 Corn_Belt 0 003 @i 08509786 n 0000 %p 09084750 n 0000 %p 09086173 n 0000 | the midwestern states where corn is grown; Iowa and Illinois are excellent for raising corn and corn-fed livestock -08544125 15 n 02 corncob 0 corn_cob 0 002 @ 08524262 n 0000 #p 12143676 n 0000 | the hard cylindrical core that bears the kernels of an ear of corn -08544275 15 n 01 corner 0 002 @ 08620061 n 0000 ~ 05314075 n 0000 | the point where two lines meet or intersect; "the corners of a rectangle" -08544419 15 n 01 corner 2 001 @ 08497294 n 0000 | a place off to the side of an area; "he tripled to the rightfield corner"; "the southeastern corner of the Mediterranean" -08544593 15 n 01 corner 3 001 @ 08497294 n 0000 | a remote area; "in many corners of the world they still practice slavery" -08544719 15 n 02 cornfield 0 corn_field 0 001 @ 08579352 n 0000 | a field planted with corn -08544813 15 n 03 country 0 state 0 land 2 064 @ 08491826 n 0000 ~ 08503004 n 0000 ~ 08510169 n 0000 ~ 08517327 n 0000 %m 08548733 n 0000 %p 08556491 n 0000 %p 08588596 n 0000 ~ 08591269 n 0000 %m 08654360 n 0000 ~ 08661170 n 0000 ~ 08696931 n 0000 ~ 08698379 n 0000 ~ 08700255 n 0000 ~ 08702402 n 0000 ~ 08702805 n 0000 ~i 08709704 n 0000 ~i 08717915 n 0000 ~i 08719100 n 0000 ~i 08733897 n 0000 ~i 08750334 n 0000 ~i 08751494 n 0000 ~i 08752021 n 0000 ~i 08753933 n 0000 ~i 08755436 n 0000 ~i 08756202 n 0000 ~i 08756884 n 0000 ~i 08763193 n 0000 ~i 08776435 n 0000 ~i 08779149 n 0000 ~i 08792548 n 0000 ~i 08813807 n 0000 ~i 08831004 n 0000 ~i 08837048 n 0000 ~i 08839092 n 0000 ~i 08840374 n 0000 ~i 08840749 n 0000 ~i 08841483 n 0000 ~i 08844557 n 0000 ~i 08847268 n 0000 ~ 08896327 n 0000 ~i 08896440 n 0000 ~i 08907606 n 0000 ~i 08946909 n 0000 ~i 08965251 n 0000 ~i 08966408 n 0000 ~i 08967484 n 0000 ~i 08972521 n 0000 ~i 08978161 n 0000 ~i 08981244 n 0000 ~i 08987423 n 0000 ~i 08988609 n 0000 ~i 08989031 n 0000 ~i 08991491 n 0000 ~i 08992648 n 0000 ~i 08996483 n 0000 ~i 08998233 n 0000 ~i 09002630 n 0000 ~i 09003284 n 0000 ~i 09006413 n 0000 ~i 09014979 n 0000 ~i 09021503 n 0000 ~i 09037133 n 0000 ~i 09039411 n 0000 ~i 09160775 n 0000 | the territory occupied by a nation; "he returned to the land of his birth"; "he visited several European countries" -08546183 15 n 01 county 0 027 @ 08630039 n 0000 ;r 08860123 n 0000 %p 08547143 n 0000 ~i 08874469 n 0000 ~i 08881153 n 0000 ~i 08881256 n 0000 ~i 08881398 n 0000 ~i 08881549 n 0000 ~i 08881944 n 0000 ~i 08882061 n 0000 ~i 08882224 n 0000 ~i 08882365 n 0000 ~i 08882807 n 0000 ~i 08882934 n 0000 ~i 08883179 n 0000 ~i 08883309 n 0000 ~i 08883643 n 0000 ~i 08884012 n 0000 ~i 08884191 n 0000 ~i 08884328 n 0000 ~i 08884961 n 0000 ~i 08885380 n 0000 ~i 08885490 n 0000 ~i 08885631 n 0000 ~i 08885773 n 0000 ~i 08886432 n 0000 ~ 09479238 n 0000 | (United Kingdom) a region created by territorial division for the purpose of local government; "the county has a population of 12,345 people" -08546870 15 n 01 county 1 002 @ 08491826 n 0000 ;r 09044862 n 0000 | (United States) the largest administrative district within a state; "the county plans to build a new road" -08547048 15 n 01 county_palatine 0 001 @ 08491826 n 0000 | the territory of a count palatine -08547143 15 n 02 county_seat 0 county_courthouse 0 002 @ 08647945 n 0000 #p 08546183 n 0000 | the town or city that is the seat of government for a county -08547300 15 n 02 county_town 0 shire_town 0 003 @ 08647945 n 0000 #p 08587828 n 0000 ;r 08860123 n 0000 | the town or city that is the seat of government for a shire -08547468 15 n 01 cow_pasture 0 001 @ 08616050 n 0000 | a pasture for cows -08547544 15 n 01 crest 0 002 @ 08593262 n 0000 + 02693168 v 0102 | the top line of a hill, mountain, or wave -08547655 15 n 03 timber_line 0 timberline 0 tree_line 0 001 @ 08593262 n 0000 | line marking the upper limit of tree growth in mountains or northern latitudes -08547816 15 n 01 snow_line 0 001 @ 08593262 n 0000 | the line on a mountain above which there is perpetual snow and ice -08547938 15 n 01 crossing 0 002 @ 08620061 n 0000 + 02023396 v 0102 | a point where two lines (paths or arcs etc.) intersect -08548065 15 n 01 cross_section 0 003 @ 08648153 n 0000 + 01446240 a 0102 ~ 08548415 n 0000 | a section created by a plane cutting a solid perpendicular to its longest axis -08548239 15 n 01 culmination 0 003 @ 08520401 n 0000 ;c 06095022 n 0000 + 02021773 v 0101 | (astronomy) a heavenly body's highest celestial point above an observer's horizon -08548415 15 n 01 profile 0 004 @ 08548065 n 0000 ~ 08548605 n 0000 %p 08658118 n 0000 %p 08658309 n 0000 | a vertical section of the Earth's crust showing the different horizons or layers -08548605 15 n 01 soil_profile 0 001 @ 08548415 n 0000 | a vertical section of soil from the ground surface to the parent rock -08548733 15 n 01 department 0 004 @ 08491826 n 0000 #m 08544813 n 0000 ;r 08929922 n 0000 + 03059966 a 0101 | the territorial and administrative division of some countries (such as France) -08548924 15 n 01 descending_node 0 002 @ 08498424 n 0000 ! 08498279 n 0101 | the point at which an orbit crosses the ecliptic plane going south -08549070 15 n 01 development 0 004 @ 08552138 n 0000 + 00171852 v 0102 ~ 08549480 n 0000 ~ 08549733 n 0000 | a district that has been developed to serve some purpose; "such land is practical for small park developments" -08549292 15 n 01 ghetto 1 001 @ 08537837 n 0000 | a poor densely populated city district occupied by a minority ethnic group linked together by economic hardship and social restrictions -08549480 15 n 01 housing_development 0 003 @ 08549070 n 0000 #p 08553535 n 0000 ~ 08549911 n 0000 | a residential area of similar dwellings built by property developers and usually under a single management; "they live in the new housing development" -08549733 15 n 01 housing_estate 0 003 @ 08549070 n 0000 #p 08553535 n 0000 ;r 08860123 n 0000 | a residential area where the houses were all planned and built at the same time -08549911 15 n 02 housing_project 0 public_housing 0 001 @ 08549480 n 0000 | a housing development that is publicly funded and administered for low-income families -08550076 15 n 03 dig 0 excavation 0 archeological_site 0 008 @ 08651247 n 0000 ;c 06144081 n 0000 + 02143539 v 0201 + 01313923 v 0201 + 01310660 v 0102 + 01311103 v 0101 + 01309701 v 0101 ~i 08958535 n 0000 | the site of an archeological exploration; "they set up camp next to the dig" -08550364 15 n 01 abbacy 0 001 @ 08590369 n 0000 | the jurisdiction or office of an abbot -08550455 15 n 01 archbishopric 0 001 @ 08590369 n 0000 | the territorial jurisdiction of an archbishop -08550560 15 n 01 archdeaconry 0 001 @ 08590369 n 0000 | the territorial jurisdiction of an archdeacon -08550664 15 n 01 bailiwick 0 001 @ 08590369 n 0000 | the area over which a bailiff has jurisdiction -08550766 15 n 01 caliphate 0 001 @ 08590369 n 0000 | the territorial jurisdiction of a caliph -08550862 15 n 01 archdiocese 0 002 @ 08550966 n 0000 + 02639193 a 0101 | the diocese of an archbishop -08550966 15 n 03 diocese 0 bishopric 0 episcopate 0 006 @ 08590369 n 0000 + 02871449 a 0101 ~ 08550862 n 0000 ~ 08551296 n 0000 %p 08586825 n 0000 %p 08615001 n 0000 | the territorial jurisdiction of a bishop -08551177 15 n 01 disaster_area 0 001 @ 08497294 n 0000 | a region whose population is affected by a general disaster -08551296 15 n 02 eparchy 0 exarchate 0 002 @ 08550966 n 0000 + 02871575 a 0101 | a diocese of the Eastern Orthodox Church -08551420 15 n 02 theater_of_war 0 theatre_of_war 0 003 @ 08630985 n 0000 %p 08551628 n 0000 %p 08551984 n 0000 | the entire land, sea, and air area that may become or is directly involved in war operations -08551628 15 n 06 field 3 field_of_operations 0 theater 0 theater_of_operations 0 theatre 0 theatre_of_operations 0 004 @ 08630985 n 0000 #p 08551420 n 0000 ;c 08199025 n 0000 %p 08688590 n 0000 | a region in which active military operations are in progress; "the army was in the field awaiting action"; "he served in the Vietnam theater for three years" -08551984 15 n 01 zone_of_interior 0 002 @ 08630985 n 0000 #p 08551420 n 0000 | the part of the theater of war not included in the theater of operations -08552138 15 n 04 district 0 territory 0 territorial_dominion 0 dominion 0 046 @ 08630985 n 0000 + 02812482 a 0201 + 02512150 v 0102 ~ 08491826 n 0000 ~ 08513163 n 0000 ~ 08537837 n 0000 ~ 08542884 n 0000 ~ 08549070 n 0000 ~ 08553132 n 0000 ~ 08553424 n 0000 ~ 08553535 n 0000 ~ 08579266 n 0000 ~ 08590369 n 0000 ~ 08597727 n 0000 ~ 08627316 n 0000 ~ 08631531 n 0000 ~ 08675795 n 0000 ~i 08775439 n 0000 ~i 08785132 n 0000 ~i 08786283 n 0000 ~i 08789243 n 0000 ~i 08809596 n 0000 ~i 08821187 n 0000 ~i 08825477 n 0000 ~i 08825664 n 0000 ~i 08830456 n 0000 ~i 08834916 n 0000 ~i 08837864 n 0000 ~i 08854725 n 0000 ~ 08858529 n 0000 ~ 08858713 n 0000 ~i 08873412 n 0000 ~i 08892058 n 0000 ~i 08892766 n 0000 ~i 08964099 n 0000 ~i 08964288 n 0000 ~i 08964474 n 0000 ~i 08964647 n 0000 ~i 08971693 n 0000 ~i 08991878 n 0000 ~i 09027460 n 0000 ~i 09027853 n 0000 ~i 09028062 n 0000 ~i 09029884 n 0000 ~i 09030096 n 0000 ~i 09090559 n 0000 | a region marked off for administrative or other purposes -08553132 15 n 01 enclave 0 001 @ 08552138 n 0000 | an enclosed territory that is culturally distinct from the foreign territory that surrounds it -08553280 15 n 01 federal_district 0 002 @ 08491826 n 0000 ~i 09070487 n 0000 | a district set apart as the seat of government of a federation -08553424 15 n 01 palatinate 1 001 @ 08552138 n 0000 | a territory under the jurisdiction of a count palatine -08553535 15 n 03 residential_district 0 residential_area 0 community 0 011 @ 08552138 n 0000 %p 08549480 n 0000 %p 08549733 n 0000 ~ 08553887 n 0000 ~ 08554206 n 0000 ~ 08554440 n 0000 ~ 08554762 n 0000 ~ 08555443 n 0000 ~ 08678515 n 0000 ~i 09071571 n 0000 ~i 09122968 n 0000 | a district where people live; occupied primarily by private residences -08553887 15 n 01 planned_community 0 002 @ 08553535 n 0000 ~ 08554040 n 0000 | a residential district that is planned for a certain class of residents -08554040 15 n 02 retirement_community 0 retirement_complex 0 001 @ 08553887 n 0000 | a planned community for residents who have retired from an active working life -08554206 15 n 01 uptown 0 002 @ 08553535 n 0000 #p 08540903 n 0000 | a residential part of town away from the central commercial district -08554346 15 n 01 red-light_district 0 001 @ 08537837 n 0000 | a district with many brothels -08554440 15 n 03 suburb 0 suburbia 0 suburban_area 0 011 @ 08553535 n 0000 #p 08690792 n 0000 + 02804590 a 0201 ~ 08554872 n 0000 ~ 08555001 n 0000 ~ 08555102 n 0000 ~ 08555333 n 0000 ~i 08876773 n 0000 ~i 08933437 n 0000 ~i 08933621 n 0000 ~i 09058735 n 0000 | a residential district located on the outskirts of a city -08554762 15 n 01 exurbia 0 001 @ 08553535 n 0000 | a residential area outside of a city and beyond suburbia -08554872 15 n 01 addition 0 001 @ 08554440 n 0000 | a suburban area laid out in streets and lots for a future residential area -08555001 15 n 01 bedroom_community 0 001 @ 08554440 n 0000 | a community where many commuters live -08555102 15 n 01 faubourg 0 002 @ 08554440 n 0000 #p 09091909 n 0000 | a New Orleans district lying outside the original city limits; used in combination with the names of various quarters of the city; "in Faubourg Sainte-Marie" -08555333 15 n 01 stockbroker_belt 0 002 @ 08554440 n 0000 ;r 08860123 n 0000 | a wealthy residential suburb -08555443 15 n 01 tenement_district 0 001 @ 08553535 n 0000 | a residential district occupied primarily with tenement houses -08555569 15 n 02 airspace 1 air_space 1 002 @ 08652970 n 0000 #p 08499057 n 0000 | the space in the atmosphere immediately above the earth -08555710 15 n 02 crawlspace 0 crawl_space 0 002 @ 08652970 n 0000 #p 02913152 n 0000 | low space beneath a floor of a building; gives workers access to wiring or plumbing -08555883 15 n 02 disk_space 0 disc_space 0 004 @ 08652970 n 0000 ;c 06128570 n 0000 ~ 08556065 n 0000 ~ 08556266 n 0000 | (computer science) the space available on a magnetic disk -08556065 15 n 02 disk_overhead 0 overhead 0 002 @ 08555883 n 0000 ;c 06128570 n 0000 | (computer science) the disk space required for information that is not data but is used for location and timing -08556266 15 n 02 swap_space 0 swap_file 0 001 @ 08555883 n 0000 | the disk space that is set aside for virtual memory -08556386 15 n 01 distance 0 001 @ 08630039 n 0000 | a distant region; "I could see it in the distance" -08556491 15 n 03 domain 0 demesne 0 land 1 016 @ 08630985 n 0000 #p 08544813 n 0000 ~ 08556950 n 0000 ~ 08557057 n 0000 ~ 08557131 n 0000 ~ 08557271 n 0000 ~ 08557396 n 0000 ~ 08557482 n 0000 ~ 08557754 n 0000 ~ 08557864 n 0000 ~ 08557976 n 0000 ~ 08558082 n 0000 ~ 08558155 n 0000 ~ 08558488 n 0000 ~ 08558770 n 0000 ~ 08558882 n 0000 | territory over which rule or control is exercised; "his domain extended into Europe"; "he made it the law of the land" -08556950 15 n 01 archduchy 0 001 @ 08556491 n 0000 | the domain controlled by an archduke or archduchess -08557057 15 n 01 barony 0 001 @ 08556491 n 0000 | the domain of a baron -08557131 15 n 02 duchy 0 dukedom 0 003 @ 08556491 n 0000 + 10038778 n 0201 + 10038620 n 0201 | the domain controlled by a duke or duchess -08557271 15 n 01 earldom 0 002 @ 08556491 n 0000 + 10041373 n 0101 | the domain controlled by an earl or count or countess -08557396 15 n 01 emirate 0 001 @ 08556491 n 0000 | the domain controlled by an emir -08557482 15 n 02 empire 0 imperium 0 007 @ 08556491 n 0000 + 02746897 a 0101 ~i 08800258 n 0000 ~i 08896831 n 0000 ~i 08912842 n 0000 ~i 09002814 n 0000 ~i 09038597 n 0000 | the domain ruled by an emperor or empress; the region over which imperial dominion is exercised -08557754 15 n 01 fiefdom 0 002 @ 08556491 n 0000 + 13249927 n 0101 | the domain controlled by a feudal lord -08557864 15 n 01 grand_duchy 0 001 @ 08556491 n 0000 | the domain controlled by a grand duke or grand duchess -08557976 15 n 01 viscounty 0 001 @ 08556491 n 0000 | the domain controlled by a viscount or viscountess -08558082 15 n 01 khanate 0 001 @ 08556491 n 0000 | the realm of a khan -08558155 15 n 02 kingdom 0 realm 0 003 @ 08556491 n 0000 + 10231515 n 0101 ~i 08707710 n 0000 | the domain ruled by a king or queen -08558289 15 n 01 Camelot 0 002 @i 08518505 n 0000 ;c 06371734 n 0000 | (Arthurian legend) the capital of King Arthur's kingdom; according to the legend, truth and goodness and beauty reigned there -08558488 15 n 02 principality 0 princedom 0 005 @ 08556491 n 0000 + 10472799 n 0201 ~i 08894456 n 0000 ~i 08967868 n 0000 ~i 09003918 n 0000 | territory ruled by a prince -08558661 15 n 01 Kingdom_of_God 0 001 @ 05952199 n 0000 | the spiritual domain over which God is sovereign -08558770 15 n 02 sheikdom 0 sheikhdom 0 002 @ 08556491 n 0000 + 10588357 n 0101 | the domain ruled by a sheik -08558882 15 n 01 suzerainty 0 001 @ 08556491 n 0000 | the domain of a suzerain -08558963 15 n 02 residence 0 abode 0 003 @ 08491027 n 0000 ~ 08559155 n 0000 ~ 08559508 n 0000 | any address at which you dwell more than temporarily; "a person can have several residences" -08559155 15 n 02 domicile 0 legal_residence 0 003 @ 08558963 n 0000 ;c 08441203 n 0000 + 03062280 a 0101 | (law) the residence where you have your permanent home or principal establishment and to where, whenever you are absent, you intend to return; every person is compelled to have one and only one domicile at a time; "what's his legal residence?" -08559508 15 n 02 home 4 place 6 005 @ 08558963 n 0000 + 02537960 v 0201 + 00477661 a 0102 + 02005347 v 0101 ~ 08559766 n 0000 | where you live at a particular time; "deliver the package to my home"; "he doesn't have a home to go to"; "your place or mine?" -08559766 15 n 02 home_away_from_home 0 home_from_home 0 001 @ 08559508 n 0000 | a place where you are just as comfortable and content as if you were home -08559922 15 n 01 business_address 0 001 @ 08491027 n 0000 | the address at which a business is located -08560027 15 n 07 dump 0 garbage_dump 0 trash_dump 0 rubbish_dump 0 wasteyard 0 waste-yard 0 dumpsite 0 006 @ 08651247 n 0000 + 02715047 a 0101 + 02225204 v 0101 ~ 08560560 n 0000 ~ 08573842 n 0000 ~ 08574038 n 0000 | a piece of land where waste materials are dumped -08560295 15 n 01 dude_ranch 0 001 @ 08640531 n 0000 | a holiday resort offering ranch activities (riding and camping) -08560415 15 n 01 honeymoon_resort 0 001 @ 08640531 n 0000 | a resort that caters to newlyweds; "Niagra Falls is a well-known honeymoon resort" -08560560 15 n 03 eitchen_midden 0 midden 0 kitchen_midden 0 002 @ 08560027 n 0000 ;c 06144081 n 0000 | (archeology) a mound of domestic refuse containing shells and animal bones marking the site of a prehistoric settlement -08560785 15 n 03 earshot 0 earreach 0 hearing 0 001 @ 08628921 n 0000 | the range within which a voice can be heard; "the children were told to stay within earshot" -08560952 15 n 02 view 0 eyeshot 0 002 @ 08628921 n 0000 + 02150948 v 0102 | the range of the eye; "they were soon out of view" -08561081 15 n 01 north 0 003 @ 00027167 n 0000 = 01600333 a 0000 = 01604226 a 0000 | a location in the northern part of a country, region, or city -08561230 15 n 01 northeast 1 001 @ 00027167 n 0000 | a location in the northeastern part of a country, region, or city -08561351 15 n 01 east 2 001 @ 00027167 n 0000 | a location in the eastern part of a country, region, or city -08561462 15 n 01 southeast 1 001 @ 00027167 n 0000 | a location in the southeastern part of a country, region, or city -08561583 15 n 01 south 2 002 @ 00027167 n 0000 = 01605081 a 0000 | a location in the southern part of a country, region, or city -08561714 15 n 01 southwest 1 001 @ 00027167 n 0000 | a location in the southwestern part of a country, region, or city -08561835 15 n 01 west 2 001 @ 00027167 n 0000 | a location in the western part of a country, region, or city -08561946 15 n 01 northwest 1 001 @ 00027167 n 0000 | a location in the northwestern part of a country, region, or city -08562067 15 n 02 Earth 0 earth 1 003 @ 00027167 n 0000 + 01180695 a 0201 + 01180695 a 0101 | the abode of mortals (as contrasted with Heaven or Hell); "it was hell on earth" -08562243 15 n 02 eastern_hemisphere 0 orient 1 005 @ 08583095 n 0000 %p 08562454 n 0000 %p 09189411 n 0000 %p 09211266 n 0000 %p 09275016 n 0000 | the hemisphere that includes Eurasia and Africa and Australia -08562454 15 n 01 Old_World 0 002 @i 08630985 n 0000 #p 08562243 n 0000 | the regions of the world that were known to Europeans before the discovery of the Americas -08562620 15 n 02 East 0 Orient 0 004 @i 08172877 n 0000 = 00825604 a 0000 + 00825807 a 0201 %p 08562757 n 0000 | the countries of Asia -08562757 15 n 01 Far_East 0 002 @i 08630985 n 0000 #p 08562620 n 0000 | a popular expression for the countries of eastern Asia (usually including China and Mongolia and Taiwan and Japan and Korea and Indochina and eastern Siberia) -08562990 15 n 01 northland 0 001 @ 08630985 n 0000 | any region lying in or toward the north -08563085 15 n 01 southland 0 001 @ 08630985 n 0000 | any region lying in or toward the south -08563180 15 n 02 East 1 eastern_United_States 0 007 @i 08574314 n 0000 #p 09044862 n 0000 = 00826959 a 0000 %p 08563478 n 0000 %p 08563990 n 0000 %p 09048127 n 0000 %p 09201301 n 0000 | the region of the United States lying to the north of the Ohio River and to the east of the Mississippi River -08563478 15 n 02 Southeast 0 southeastern_United_States 0 002 @i 08574314 n 0000 #p 08563180 n 0000 | the southeastern region of the United States -08563627 15 n 02 Southwest 0 southwestern_United_States 0 008 @i 08574314 n 0000 #p 08682819 n 0000 %p 09057311 n 0000 %p 09060768 n 0000 %p 09110422 n 0000 %p 09114696 n 0000 %p 09141526 n 0000 -r 09206896 n 0000 | the southwestern region of the United States generally including New Mexico, Arizona, Texas, Nevada, California, and sometimes Utah and Colorado -08563990 15 n 02 Northeast 0 northeastern_United_States 0 002 @i 08574314 n 0000 #p 08563180 n 0000 | the northeastern region of the United States -08564139 15 n 02 Northwest 0 northwestern_United_States 0 003 @i 08574314 n 0000 #p 08682819 n 0000 %p 09237076 n 0000 | the northwestern region of the United States -08564307 15 n 03 Midwest 0 middle_west 0 midwestern_United_States 0 013 @i 08574314 n 0000 #p 09044862 n 0000 %p 08565006 n 0000 %p 09082540 n 0000 %p 09084750 n 0000 %p 09086173 n 0000 %p 09087599 n 0000 %p 09099526 n 0000 %p 09102016 n 0000 %p 09105821 n 0000 %p 09109444 n 0000 %p 09130076 n 0000 %p 09157163 n 0000 | the north central region of the United States (sometimes called the heartland or the breadbasket of America) -08564739 15 n 01 Pacific_Northwest 0 005 @i 08574314 n 0000 #p 09044862 n 0000 #p 09152944 n 0000 #p 09133010 n 0000 #p 08822855 n 0000 | a region of the northwestern United States usually including Washington and Oregon and sometimes southwestern British Columbia -08565006 15 n 01 Rustbelt 0 003 @i 08675967 n 0000 #p 09048880 n 0000 #p 08564307 n 0000 | urban areas in New England and Midwest characterized by concentrations of declining industries (steel or textiles) -08565214 15 n 01 ecliptic 0 001 @ 08579487 n 0000 | the great circle representing the apparent annual path of the sun; the plane of the Earth's orbit around the sun; makes an angle of about 23 degrees with the equator; "all of the planets rotate the sun in approximately the same ecliptic" -08565506 15 n 06 Eden 0 paradise 1 nirvana 0 heaven 1 promised_land 1 Shangri-la 0 003 @ 08630039 n 0000 + 01180084 a 0201 + 01180084 a 0205 | any place of complete bliss and delight and peace -08565701 15 n 02 edge 0 border 1 007 @ 08512259 n 0000 + 02710673 v 0202 + 01467370 v 0205 + 01466978 v 0201 + 02361600 v 0102 ~ 08517127 n 0000 ~ 08592494 n 0000 | the boundary of a surface -08565894 15 n 01 end 1 002 @ 08512259 n 0000 + 02609764 v 0101 | a boundary marking the extremities of something; "the end of town" -08566028 15 n 02 end 0 terminal 0 016 @ 08568978 n 0000 + 02609764 v 0101 ~ 02845576 n 0000 ~ 02845763 n 0000 ~ 03511949 n 0000 ~ 03974215 n 0000 ~ 03976960 n 0000 ~ 04047291 n 0000 ~ 04413631 n 0000 ~ 04611351 n 0000 ~ 05469032 n 0000 ~ 05610520 n 0000 ~ 07683973 n 0000 ~ 08566554 n 0000 ~ 08567877 n 0000 ~ 08663156 n 0000 | either extremity of something that has length; "the end of the pier"; "she knotted the end of the thread"; "they rode to the end of the line"; "the terminals of the anterior arches of the fornix" -08566554 15 n 04 end_point 0 endpoint 0 termination 0 terminus 0 002 @ 08566028 n 0000 + 02609764 v 0404 | a place where something ends or is complete -08566707 15 n 01 end 2 002 @ 08660339 n 0000 + 02609764 v 0101 | the surface at either extremity of a three-dimensional object; "one end of the box was marked `This side up'" -08566884 15 n 01 end 3 001 @ 08664443 n 0000 | one of two places from which people are communicating to each other; "the phone rang at the other end"; "both ends wrote at the same time" -08567072 15 n 01 Enderby_Land 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a region of Antarctica between Queen Maud Land and Wilkes Land; claimed by Australia -08567235 15 n 04 environment 0 environs 0 surroundings 0 surround 0 011 @ 08574314 n 0000 + 01130607 v 0405 + 01467370 v 0401 + 01467370 v 0301 ~ 08494133 n 0000 ~ 08568142 n 0000 ~ 08568256 n 0000 ~ 08568579 n 0000 ~ 08580583 n 0000 ~ 08598696 n 0000 ~ 08615926 n 0000 | the area in which something exists or lives; "the country--the flat agricultural surround" -08567600 15 n 01 Finger_Lakes 0 005 @i 08574314 n 0000 %m 09232526 n 0000 %m 09239581 n 0000 %m 09325246 n 0000 %m 09430100 n 0000 | a geographical area in central New York State that is named for a series of narrow glacial lakes that lie parallel in a north-south direction -08567877 15 n 03 finish 0 destination 0 goal 0 003 @ 08566028 n 0000 + 00746479 v 0201 ~ 08571459 n 0000 | the place designated as the end (as of a race or journey); "a crowd assembled at the finish"; "he was nearly exhausted as their destination came into view" -08568142 15 n 01 medium 1 001 @ 08567235 n 0000 | the surrounding environment; "fish require an aqueous medium" -08568256 15 n 02 setting 0 scene 1 002 @ 08567235 n 0000 ~ 08568430 n 0000 | the context and environment in which something is set; "the perfect setting for a ghost story" -08568430 15 n 01 scenario 0 001 @ 08568256 n 0000 | a setting for a work of art or literature; "the scenario is France during the Reign of Terror" -08568579 15 n 01 element 0 001 @ 08567235 n 0000 | the most favorable environment for a plant or animal; "water is the element of fishes" -08568719 15 n 01 equator 0 002 @ 08579487 n 0000 + 02443623 a 0101 | an imaginary line around the Earth forming the great circle that is equidistant from the north and south poles; "the equator is the boundary between the northern and southern hemispheres" -08568978 15 n 01 extremity 0 006 @ 08630039 n 0000 + 00446107 a 0101 ~ 08512259 n 0000 ~ 08566028 n 0000 ~ 08569165 n 0000 ~ 08593130 n 0000 | the outermost or farthest region or point -08569165 15 n 03 extreme_point 0 extreme 0 extremum 0 002 @ 08568978 n 0000 ~ 08677801 n 0000 | the point located farthest from the middle of something -08569319 15 n 01 fairway 0 003 @ 08651247 n 0000 #p 03446528 n 0000 %p 08496334 n 0000 | the area between the tee and putting green where the grass is cut short -08569482 15 n 02 farmland 0 farming_area 0 001 @ 08644722 n 0000 | a rural area where farming is practiced -08569591 15 n 01 fault_line 0 003 @ 08593262 n 0000 #p 09278537 n 0000 ;c 06115701 n 0000 | (geology) line determined by the intersection of a geological fault and the earth's surface -08569777 15 n 01 field 1 001 @ 08630985 n 0000 | somewhere (away from a studio or office or library or laboratory) where practical work is done or data is collected; "anthropologists do much of their work in the field" -08569998 15 n 01 field 0 007 @ 08673395 n 0000 ~ 04610879 n 0000 ~ 08518374 n 0000 ~ 08571642 n 0000 ~ 08579352 n 0000 ~ 08591592 n 0000 ~ 08614229 n 0000 | a piece of land cleared of trees and usually enclosed; "he planted a field of wheat" -08570242 15 n 01 field_of_fire 0 001 @ 08673395 n 0000 | the area that a weapon or group of weapons can cover effectively with gun fire from a given position -08570402 15 n 01 grounds 0 001 @ 08673395 n 0000 | a tract of land cleared for some special purposes (recreation or burial etc.) -08570533 15 n 01 bent 0 001 @ 08598301 n 0000 | an area of grassland unbounded by fences or hedges -08570634 15 n 02 hayfield 0 meadow 0 001 @ 08598301 n 0000 | a field where grass or alfalfa are grown to be made into hay -08570758 15 n 04 playing_field 0 athletic_field 0 playing_area 0 field 2 011 @ 08673395 n 0000 #p 04295881 n 0000 + 01082290 v 0401 + 01081852 v 0401 ~ 02736511 n 0000 ~ 02780916 n 0000 ~ 03120491 n 0000 ~ 03378915 n 0000 ~ 03878511 n 0000 ~ 08516660 n 0000 %p 08571275 n 0000 | a piece of land prepared for playing a game; "the home crowd cheered when Princeton took the field" -08571139 15 n 01 medical_center 0 002 @ 08523483 n 0000 #p 08524735 n 0000 | the part of a city where medical facilities are centered -08571275 15 n 01 midfield 0 004 @ 08523483 n 0000 #p 08570758 n 0000 ;c 00468480 n 0000 ;c 00477392 n 0000 | (sports) the middle part of a playing field (as in football or lacrosse) -08571459 15 n 02 finishing_line 0 finish_line 0 004 @ 08593924 n 0000 @ 08567877 n 0000 ~ 08683986 n 0000 ~ 08684107 n 0000 | a line indicating the location of the finish of a race -08571642 15 n 02 firebreak 0 fireguard 0 001 @ 08569998 n 0000 | a narrow field that has been cleared to check the spread of a prairie fire or forest fire -08571799 15 n 01 firing_line 0 001 @ 08594286 n 0000 | the line from which soldiers deliver fire -08571898 15 n 01 flea_market 0 001 @ 03847823 n 0000 | an open-air street market for inexpensive or secondhand articles -08572020 15 n 01 Fleet_Street 0 002 @i 04334599 n 0000 #p 08873622 n 0000 | a street in central London where newspaper offices are situated -08572162 15 n 01 flies 0 002 @ 08652970 n 0000 ;c 07006119 n 0000 | (theater) the space over the stage (out of view of the audience) used to store scenery (drop curtains) -08572335 15 n 01 focus 0 002 @ 08620061 n 0000 + 02881438 a 0101 | a fixed reference point on the concave side of a conic section -08572467 15 n 02 forefront 0 head 2 006 @ 08573472 n 0000 + 02694287 v 0201 + 01931768 v 0207 + 02729023 v 0201 + 01935233 v 0201 + 01999423 v 0202 | the part in the front or nearest the viewer; "he was in the forefront"; "he was at the head of the column" -08572726 15 n 01 foul_line 0 002 @ 08593924 n 0000 #p 02780916 n 0000 | lines through 1st and 3rd base indicating the boundaries of a baseball field -08572877 15 n 01 foul_line 1 002 @ 08593924 n 0000 #p 02882014 n 0000 | a line across a bowling alley that a bowler must not cross -08573010 15 n 01 foul_line 2 002 @ 08593924 n 0000 #p 08590909 n 0000 | a line from which basketball players take penalty shots -08573140 15 n 01 baseline 0 001 @ 08593924 n 0000 | the lines a baseball player must follow while running the bases -08573258 15 n 03 Frigid_Zone 0 polar_zone 0 polar_region 0 003 @ 08542081 n 0000 ~i 08494459 n 0000 ~i 08496477 n 0000 | the part of the Earth's surface forming a cap over a pole; characterized by frigid climate -08573472 15 n 03 front 0 front_end 0 forepart 0 006 @ 08510666 n 0000 + 00131018 a 0101 + 01079172 v 0101 + 02693319 v 0101 ! 08629508 n 0101 ~ 08572467 n 0000 | the side that is forward or prominent -08573674 15 n 03 battlefront 0 front 1 front_line 0 003 @ 08594286 n 0000 #p 08506641 n 0000 + 00198757 a 0201 | the line along which opposing armies face each other -08573842 15 n 08 garbage_heap 0 junk_heap 0 rubbish_heap 0 scrapheap 0 trash_heap 0 junk_pile 0 trash_pile 0 refuse_heap 0 001 @ 08560027 n 0000 | an accumulation of refuse and discarded matter -08574038 15 n 03 toxic_waste_dump 0 toxic_waste_site 0 toxic_dumpsite 0 001 @ 08560027 n 0000 | a location where toxic wastes can be or have been disposed of (often illegally) -08574216 15 n 01 gathering_place 0 001 @ 08581503 n 0000 | a favorite haunt where people gather -08574314 15 n 04 geographical_area 0 geographic_area 0 geographical_region 0 geographic_region 0 190 @ 08630985 n 0000 ~ 08493064 n 0000 ~i 08493261 n 0000 ~i 08493493 n 0000 ~i 08494782 n 0000 ~ 08499840 n 0000 ~i 08502797 n 0000 ~i 08503238 n 0000 ~i 08503921 n 0000 ~i 08504375 n 0000 ~ 08506347 n 0000 ~ 08513417 n 0000 ~ 08513718 n 0000 ~ 08518940 n 0000 ~i 08519624 n 0000 ~i 08519916 n 0000 ~ 08539457 n 0000 ~i 08541454 n 0000 ~ 08541841 n 0000 ~i 08563180 n 0000 ~i 08563478 n 0000 ~i 08563627 n 0000 ~i 08563990 n 0000 ~i 08564139 n 0000 ~i 08564307 n 0000 ~i 08564739 n 0000 ~i 08567072 n 0000 ~ 08567235 n 0000 ~i 08567600 n 0000 ~ 08578174 n 0000 ~ 08583095 n 0000 ~ 08586330 n 0000 ~i 08597323 n 0000 ~i 08602650 n 0000 ~ 08614357 n 0000 ~i 08628414 n 0000 ~ 08644722 n 0000 ~ 08653570 n 0000 ~ 08659446 n 0000 ~ 08672562 n 0000 ~ 08673395 n 0000 ~ 08675967 n 0000 ~i 08678253 n 0000 ~i 08682188 n 0000 ~i 08682819 n 0000 ~ 08683548 n 0000 ~ 08690479 n 0000 ~i 08699426 n 0000 ~i 08701161 n 0000 ~i 08701296 n 0000 ~i 08701410 n 0000 ~i 08701719 n 0000 ~i 08704665 n 0000 ~i 08709038 n 0000 ~i 08710535 n 0000 ~i 08711468 n 0000 ~i 08713655 n 0000 ~i 08715110 n 0000 ~i 08722844 n 0000 ~i 08724545 n 0000 ~i 08731953 n 0000 ~i 08735564 n 0000 ~i 08757569 n 0000 ~i 08758679 n 0000 ~i 08758882 n 0000 ~ 08760393 n 0000 ~i 08760510 n 0000 ~i 08769179 n 0000 ~i 08775297 n 0000 ~i 08775597 n 0000 ~i 08775784 n 0000 ~i 08776138 n 0000 ~i 08776320 n 0000 ~i 08779830 n 0000 ~i 08787466 n 0000 ~i 08787695 n 0000 ~i 08787878 n 0000 ~i 08788004 n 0000 ~i 08789970 n 0000 ~i 08790353 n 0000 ~i 08791167 n 0000 ~i 08792083 n 0000 ~i 08793489 n 0000 ~i 08793914 n 0000 ~i 08794366 n 0000 ~i 08794574 n 0000 ~i 08798382 n 0000 ~i 08799123 n 0000 ~i 08799271 n 0000 ~i 08799706 n 0000 ~i 08800676 n 0000 ~i 08800911 n 0000 ~i 08816969 n 0000 ~i 08817235 n 0000 ~i 08819223 n 0000 ~i 08819883 n 0000 ~i 08821578 n 0000 ~i 08830720 n 0000 ~i 08845366 n 0000 ~i 08857682 n 0000 ~i 08881674 n 0000 ~i 08882530 n 0000 ~i 08884673 n 0000 ~i 08884806 n 0000 ~i 08885211 n 0000 ~i 08886147 n 0000 ~i 08886277 n 0000 ~i 08886636 n 0000 ~i 08888181 n 0000 ~i 08891415 n 0000 ~i 08902422 n 0000 ~i 08902569 n 0000 ~i 08902753 n 0000 ~i 08902894 n 0000 ~i 08905751 n 0000 ~i 08905936 n 0000 ~i 08910394 n 0000 ~i 08913242 n 0000 ~i 08915159 n 0000 ~i 08915372 n 0000 ~i 08915784 n 0000 ~i 08916316 n 0000 ~i 08917503 n 0000 ~i 08917881 n 0000 ~i 08918248 n 0000 ~i 08918944 n 0000 ~i 08919693 n 0000 ~i 08929722 n 0000 ~i 08939201 n 0000 ~ 08939562 n 0000 ~i 08943601 n 0000 ~i 08944561 n 0000 ~i 08944818 n 0000 ~i 08945110 n 0000 ~i 08945277 n 0000 ~i 08948155 n 0000 ~i 08951513 n 0000 ~i 08951777 n 0000 ~i 08954269 n 0000 ~i 08957212 n 0000 ~i 08968390 n 0000 ~i 08968677 n 0000 ~i 08970833 n 0000 ~i 08975617 n 0000 ~i 08978821 n 0000 ~i 08995242 n 0000 ~i 08995515 n 0000 ~i 09004625 n 0000 ~i 09005712 n 0000 ~i 09007471 n 0000 ~ 09012101 n 0000 ~i 09012898 n 0000 ~i 09015653 n 0000 ~i 09016232 n 0000 ~i 09018647 n 0000 ~i 09022831 n 0000 ~i 09028204 n 0000 ~i 09028367 n 0000 ~i 09029242 n 0000 ~i 09035305 n 0000 ~i 09038990 n 0000 ~i 09039260 n 0000 ~i 09042924 n 0000 ~i 09048127 n 0000 ~i 09048303 n 0000 ~ 09048460 n 0000 ~i 09048880 n 0000 ~i 09049303 n 0000 ~i 09049599 n 0000 ~i 09050244 n 0000 ~i 09050730 n 0000 ~i 09051235 n 0000 ~i 09051726 n 0000 ~i 09051898 n 0000 ~i 09052100 n 0000 ~i 09052652 n 0000 ~i 09052835 n 0000 ~i 09053019 n 0000 ~i 09090389 n 0000 ~i 09166127 n 0000 ~i 09166304 n 0000 ~i 09166534 n 0000 ~i 09166756 n 0000 ~i 09166902 n 0000 ~i 09172480 n 0000 ~i 09177647 n 0000 ~i 09178141 n 0000 ~i 09178310 n 0000 ~ 09178481 n 0000 ~ 09178596 n 0000 | a demarcated area of the Earth -08578032 15 n 02 epicenter 0 epicentre 0 001 @ 08578706 n 0000 | the point on the Earth's surface directly above the focus of an earthquake -08578174 15 n 01 dust_bowl 0 002 @ 08574314 n 0000 #p 09293011 n 0000 | a region subject to dust storms; especially the central region of United States subject to dust storms in the 1930s -08578364 15 n 01 biogeographical_region 0 002 @ 08630985 n 0000 ~ 08578517 n 0000 | an area of the Earth determined by distribution of flora and fauna -08578517 15 n 03 benthos 0 benthic_division 0 benthonic_zone 0 003 @ 08578364 n 0000 + 02661574 a 0103 + 02661574 a 0102 | a region including the bottom of the sea and the littoral zones -08578706 15 n 02 geographic_point 0 geographical_point 0 008 @ 08620061 n 0000 ~ 04602044 n 0000 ~ 08491027 n 0000 ~ 08542634 n 0000 ~ 08578032 n 0000 ~ 08597579 n 0000 ~ 08620881 n 0000 ~ 08633957 n 0000 | a point on the surface of the Earth -08578951 15 n 01 ghetto 0 002 @ 08627919 n 0000 + 00494880 v 0101 | formerly the restricted quarter of many European cities in which Jews were required to live; "the Warsaw ghetto" -08579134 15 n 01 goal_line 0 001 @ 08593924 n 0000 | a line marking each end of the playing field or pitch; where the goals stand -08579266 15 n 01 goldfield 0 001 @ 08552138 n 0000 | a district where gold is mined -08579352 15 n 02 grainfield 0 grain_field 0 003 @ 08569998 n 0000 ~ 08544719 n 0000 ~ 08683286 n 0000 | a field where grain is grown -08579487 15 n 01 great_circle 0 008 @ 08593262 n 0000 ~ 08520190 n 0000 ~ 08565214 n 0000 ~ 08568719 n 0000 ~ 08585846 n 0000 ~ 08586688 n 0000 ~ 08598823 n 0000 ~ 08677991 n 0000 | a circular line on the surface of a sphere formed by intersecting it with a plane passing through the center -08579780 15 n 03 green 0 putting_green 0 putting_surface 0 002 @ 08651247 n 0000 #p 03446528 n 0000 | an area of closely cropped grass surrounding the hole on a golf course; "the ball rolled across the green and into the bunker" -08580011 15 n 02 greenbelt 0 greenway 0 001 @ 08509786 n 0000 | a belt of parks or rural land surrounding a town or city -08580134 15 n 01 ground 0 001 @ 08622586 n 0000 | a position to be won or defended in battle (or as if in battle); "they gained ground step by step"; "they fought to regain the lost ground" -08580326 15 n 01 ground_zero 1 001 @ 08620061 n 0000 | the point of detonation (or above or below) of a nuclear weapon -08580447 15 n 01 ground_zero 2 002 @i 08651247 n 0000 #p 09119277 n 0000 | the site of the World Trade Center before it was destroyed -08580583 15 n 02 habitat 0 home_ground 0 002 @ 08567235 n 0000 ~ 08580803 n 0000 | the type of environment in which an organism or group normally lives or occurs; "a marine habitat"; "he felt safe on his home grounds" -08580803 15 n 01 habitation 0 003 @ 08580583 n 0000 ~ 08492354 n 0000 ~ 08591399 n 0000 | the native habitat or home of an animal or plant -08580944 15 n 02 half-mast 0 half-staff 0 001 @ 08621598 n 0000 | a position some distance below the top of a mast to which a flag is lowered in mourning or to signal distress -08581122 15 n 01 Harley_Street 0 002 @i 04334599 n 0000 #p 08873622 n 0000 | a street in central London where the consulting rooms of many physicians and surgeons are located -08581299 15 n 01 hatchery 0 002 @ 08513718 n 0000 + 00063095 v 0101 | a place where eggs are hatched under artificial conditions (especially fish eggs); "the park authorities operated a trout hatchery" -08581503 15 n 05 haunt 0 hangout 0 resort 1 repair 0 stamping_ground 0 005 @ 08497294 n 0000 + 01843497 v 0401 + 02390287 v 0201 + 01844431 v 0102 ~ 08574216 n 0000 | a frequently visited place -08581699 15 n 02 hearth 0 fireside 0 001 @ 08497294 n 0000 | an area near a fireplace (usually paved and extending out into a room); "they sat on the hearth and warmed themselves before the fire" -08581897 15 n 01 heartland 0 001 @ 08630985 n 0000 | the central region of a country or continent; especially a region that is important to a country or to a culture -08582065 15 n 01 hunting_ground 0 001 @ 08497294 n 0000 | an area in which game is hunted -08582157 15 n 02 D-layer 0 D_region 0 002 @i 08630039 n 0000 #p 08588916 n 0000 | the lowest region of the ionosphere (35 to 50 miles up) that reflects low-frequency radio waves -08582337 15 n 03 Appleton_layer 0 F_layer 0 F_region 0 002 @i 08630039 n 0000 #p 08588916 n 0000 | the highest region of the ionosphere (from 90 to 600 miles up) which contains the highest concentration of free electrons and is most useful for long-range radio transmission -08582613 15 n 04 Heaviside_layer 0 Kennelly-Heaviside_layer 0 E_layer 0 E_region 0 002 @i 08630039 n 0000 #p 08588916 n 0000 | a region of the ionosphere (from 50 to 90 miles up) that reflects radio waves of medium length -08582837 15 n 06 hell 1 hell_on_earth 0 hellhole 0 snake_pit 0 the_pits 0 inferno 0 002 @ 08630039 n 0000 + 02859053 a 0601 | any place of pain and turmoil; "the hell of battle"; "the inferno of the engine room"; "when you're alone Christmas is the pits"; -08583095 15 n 01 hemisphere 0 007 @ 08574314 n 0000 #p 09270894 n 0000 + 02740070 a 0101 ~ 08562243 n 0000 ~i 08611662 n 0000 ~i 08652551 n 0000 ~ 08682389 n 0000 | half of the terrestrial globe -08583292 15 n 01 hemline 0 004 @ 08593262 n 0000 #p 03236735 n 0000 #p 04230808 n 0000 #p 03057021 n 0000 | the line formed by the lower edge of a skirt or coat -08583455 15 n 01 heronry 0 001 @ 08644426 n 0000 | a breeding ground for herons; a heron rookery -08583554 15 n 01 hipline 0 002 @ 08593262 n 0000 #p 03419014 n 0000 | the line formed by the lower edge of hip-length garment -08583682 15 n 01 hipline 1 001 @ 08593262 n 0000 | the line formed by measuring the hip at its greatest part -08583793 15 n 01 drop 0 003 @ 08584449 n 0000 ;c 03247620 n 0000 ~ 08583994 n 0000 | a predetermined hiding place for the deposit and distribution of illicit goods (such as drugs or stolen property) -08583994 15 n 01 dead_drop 0 001 @ 08583793 n 0000 | a drop used for the clandestine exchange of intelligence information; "a dead drop avoids the need for an intelligence officer and a spy to be present at the same time" -08584218 15 n 03 hideout 0 hideaway 0 den 1 002 @ 08584449 n 0000 + 02145814 v 0102 | a hiding place; usually a remote place used by outlaws -08584361 15 n 01 lurking_place 0 001 @ 08584449 n 0000 | a place suitable for lurking -08584449 15 n 01 hiding_place 0 004 @ 08664443 n 0000 ~ 08583793 n 0000 ~ 08584218 n 0000 ~ 08584361 n 0000 | a place suitable for hiding something (such as yourself) -08584618 15 n 02 high 0 heights 0 002 @ 08664443 n 0000 + 01204557 a 0101 | a high place; "they stood on high and observed the countryside"; "he doesn't like heights" -08584787 15 n 02 hilltop 0 brow 0 001 @ 08617963 n 0000 | the peak of a hill; "the sun set behind the brow of distant hills" -08584914 15 n 01 hole-in-the-wall 0 001 @ 08664443 n 0000 | a small unpretentious out-of-the-way place; "his office was a hole-in-the-wall" -08585056 15 n 03 holy_place 0 sanctum 1 holy 0 001 @ 08664443 n 0000 | a sacred place of pilgrimage -08585158 15 n 01 home 3 001 @ 08507558 n 0000 | place where something began and flourished; "the United States is the home of basketball" -08585298 15 n 01 point_source 0 001 @ 08507558 n 0000 | a concentrated source (especially of radiation or pollution) that is spatially constricted -08585447 15 n 02 trail_head 0 trailhead 0 001 @ 08507558 n 0000 | the beginning of a trail -08585540 15 n 02 home_range 0 home_territory 0 001 @ 08629199 n 0000 | the area in which an animal normally ranges -08585657 15 n 05 horizon 0 apparent_horizon 0 visible_horizon 0 sensible_horizon 0 skyline 0 002 @ 08593262 n 0000 #p 04676308 n 0000 | the line at which the sky and Earth appear to meet -08585846 15 n 02 horizon 2 celestial_horizon 0 001 @ 08579487 n 0000 | the great circle on the celestial sphere whose plane passes through the sensible horizon and the center of the Earth -08586036 15 n 01 horse_latitude 0 001 @ 08595720 n 0000 | either of two belts or regions near 30 degrees north or 30 degrees south; characterized by calms and light-baffling winds -08586218 15 n 02 hot_spot 0 hotspot 0 001 @ 08620061 n 0000 | a point of relatively intense heat or radiation -08586330 15 n 02 hot_spot 1 hotspot 1 001 @ 08574314 n 0000 | a place of political unrest and potential violence; "the United States cannot police all of the world's hot spots" -08586509 15 n 01 hour_angle 0 001 @ 05084201 n 0000 | the angular distance along the celestial equator from the observer's meridian to the hour circle of a given celestial body -08586688 15 n 01 hour_circle 0 001 @ 08579487 n 0000 | a great circle on the celestial sphere that passes through both celestial poles -08586825 15 n 01 see 0 003 @ 08647945 n 0000 #p 08550966 n 0000 ~i 09161090 n 0000 | the seat within a bishop's diocese where his cathedral is located -08586978 15 n 01 junkyard 0 001 @ 08684294 n 0000 | a field where junk is collected and stored for resale -08587086 15 n 01 justiciary 0 001 @ 08590369 n 0000 | the jurisdiction of a justiciar -08587174 15 n 02 reservation 0 reserve 0 003 @ 08491826 n 0000 ~ 08587328 n 0000 ~ 08587439 n 0000 | a district that is reserved for particular purpose -08587328 15 n 01 Indian_reservation 0 001 @ 08587174 n 0000 | a reservation set aside for the use of Indians -08587439 15 n 01 preserve 0 003 @ 08587174 n 0000 + 02733122 v 0102 ~ 08587571 n 0000 | a reservation where animals are protected -08587571 15 n 01 shooting_preserve 0 001 @ 08587439 n 0000 | a preserve on which hunting is permitted during certain months of the year -08587709 15 n 01 school_district 0 001 @ 08491826 n 0000 | a district whose public schools are administered together -08587828 15 n 01 shire 0 003 @ 08491826 n 0000 ;r 08860123 n 0000 %p 08547300 n 0000 | a former administrative district of England; equivalent to a county -08587985 15 n 01 industrial_park 0 001 @ 08673395 n 0000 | a tract of land at a distance from city center that is designed for a cluster of businesses and factories -08588152 15 n 02 inside 0 interior 0 003 @ 08660339 n 0000 ! 08613472 n 0101 ~ 08588486 n 0000 | the inner or enclosed surface of something -08588294 15 n 02 inside 1 interior 1 006 @ 08630039 n 0000 + 00729781 v 0203 ! 08613593 n 0101 ~ 08588596 n 0000 ~ 08588699 n 0000 ~ 08588840 n 0000 | the region that is inside of something -08588486 15 n 01 belly 0 001 @ 08588152 n 0000 | the hollow inside of something; "in the belly of the ship" -08588596 15 n 01 midland 0 002 @ 08588294 n 0000 #p 08544813 n 0000 | the interior part of a country -08588699 15 n 02 midst 0 thick 0 001 @ 08588294 n 0000 | the location of something surrounded by other things; "in the midst of the crowd" -08588840 15 n 01 penetralia 0 001 @ 08588294 n 0000 | the innermost parts -08588916 15 n 01 ionosphere 0 005 @ 08630039 n 0000 #p 08499057 n 0000 %p 08582157 n 0000 %p 08582337 n 0000 %p 08582613 n 0000 | the outer region of the Earth's atmosphere; contains a high concentration of free electrons -08589140 15 n 02 irredenta 0 irridenta 0 003 @ 08630985 n 0000 + 10217038 n 0102 + 10217038 n 0101 | a region that is related ethnically or historically to one country but is controlled politically by another -08589351 15 n 01 isobar 0 003 @ 08589801 n 0000 #p 04567222 n 0000 ;c 06118563 n 0000 | (meteorology)an isogram connecting points having equal barometric pressure at a given time -08589532 15 n 01 isochrone 0 001 @ 08589801 n 0000 | an isogram connecting points at which something occurs or arrives at the same time -08589670 15 n 02 isoclinic_line 0 isoclinal 0 001 @ 08589801 n 0000 | an isogram connecting points of equal magnetic inclination -08589801 15 n 03 isogram 0 isopleth 0 isarithm 0 006 @ 08593262 n 0000 ~ 08589351 n 0000 ~ 08589532 n 0000 ~ 08589670 n 0000 ~ 08590055 n 0000 ~ 08590172 n 0000 | a line drawn on a map connecting points having the same numerical value of some variable -08590055 15 n 01 isohel 0 001 @ 08589801 n 0000 | an isogram connecting points receiving equal amounts of sunshine -08590172 15 n 01 isotherm 0 004 @ 08589801 n 0000 #p 04567222 n 0000 ;c 06118563 n 0000 + 00891970 a 0101 | (meteorology) an isogram connecting points having the same temperature at a given time -08590369 15 n 01 jurisdiction 0 014 @ 08552138 n 0000 + 02408793 a 0101 ~ 08550364 n 0000 ~ 08550455 n 0000 ~ 08550560 n 0000 ~ 08550664 n 0000 ~ 08550766 n 0000 ~ 08550966 n 0000 ~ 08587086 n 0000 ~ 08590719 n 0000 ~ 08615001 n 0000 ~ 08617873 n 0000 ~ 08677525 n 0000 ~ 08678151 n 0000 | in law; the territory within which power can be exercised -08590719 15 n 01 turf 1 002 @ 08590369 n 0000 ;u 07075172 n 0000 | range of jurisdiction or influence; "a bureaucracy...chiefly concerned with turf...and protecting the retirement system" -08590909 15 n 02 key 0 paint 0 004 @ 08652970 n 0000 #p 02802544 n 0000 ;c 00480993 n 0000 %p 08573010 n 0000 | (basketball) a space (including the foul line) in front of the basket at each end of a basketball court; usually painted a different color from the rest of the court; "he hit a jump shot from the top of the key"; "he dominates play in the paint" -08591269 15 n 01 kingdom 1 003 @ 08544813 n 0000 ~i 08792295 n 0000 ~i 08860123 n 0000 | a country with a king as head of state -08591399 15 n 02 lair 0 den 0 001 @ 08580803 n 0000 | the habitation of wild animals -08591486 15 n 01 launching_site 0 002 @ 08651247 n 0000 %p 03647691 n 0000 | a place for launching pads -08591592 15 n 01 lawn 0 001 @ 08569998 n 0000 | a field of cultivated and mowed grass -08591680 15 n 01 layer 0 021 @ 08630039 n 0000 + 01262113 v 0101 ~ 08657249 n 0000 ~ 09209025 n 0000 ~ 09244469 n 0000 ~ 09260010 n 0000 ~ 09277432 n 0000 ~ 09307902 n 0000 ~ 09339810 n 0000 ~ 09343943 n 0000 ~ 09346450 n 0000 ~ 09352578 n 0000 ~ 09382726 n 0000 ~ 09448090 n 0000 ~ 09451517 n 0000 ~ 09457367 n 0000 ~ 09462452 n 0000 ~ 09462600 n 0000 ~ 09466757 n 0000 ~ 11530283 n 0000 ~ 15043763 n 0000 | a relatively thin sheetlike expanse or region lying over or under another -08592165 15 n 01 lead 0 002 @ 08621598 n 0000 ;c 00471613 n 0000 | (baseball) the position taken by a base runner preparing to advance to the next base; "he took a long lead off first" -08592352 15 n 03 lee 0 lee_side 0 leeward 0 002 @ 08510666 n 0000 ! 08610023 n 0301 | the side of something that is sheltered from the wind -08592494 15 n 01 limb 0 002 @ 08565701 n 0000 ;c 06095022 n 0000 | (astronomy) the circumferential edge of the apparent disc of the sun or the moon or a planet -08592656 15 n 03 limit 0 demarcation 0 demarcation_line 0 008 @ 08512259 n 0000 + 00730499 v 0201 + 00730301 v 0201 ~ 03264542 n 0000 ~ 08541130 n 0000 ~ 08592898 n 0000 ~ 08593014 n 0000 ~ 08663051 n 0000 | the boundary of a specific area -08592898 15 n 01 upper_limit 0 001 @ 08592656 n 0000 | the limit on the upper (or northernmost) side of something -08593014 15 n 01 lower_limit 0 001 @ 08592656 n 0000 | the limit on the lower (or southernmost) side of something -08593130 15 n 01 limit 2 004 @ 08568978 n 0000 ~ 08598132 n 0000 ~ 08600274 n 0000 ~ 08628921 n 0000 | as far as something can go -08593262 15 n 01 line 0 031 @ 00027167 n 0000 + 00658591 a 0101 ~ 05256358 n 0000 ~ 06008609 n 0000 ~ 08490531 n 0000 ~ 08490685 n 0000 ~ 08490840 n 0000 ~ 08547544 n 0000 ~ 08547655 n 0000 ~ 08547816 n 0000 ~ 08569591 n 0000 ~ 08579487 n 0000 ~ 08583292 n 0000 ~ 08583554 n 0000 ~ 08583682 n 0000 ~ 08585657 n 0000 ~ 08589801 n 0000 ~ 08594543 n 0000 ~ 08595398 n 0000 ~ 08595720 n 0000 ~ 08595958 n 0000 ~ 08616311 n 0000 ~ 08627805 n 0000 ~ 08632678 n 0000 ~ 08644327 n 0000 ~ 08649167 n 0000 ~ 08678783 n 0000 ~ 08679011 n 0000 ~ 08679369 n 0000 ~ 09387222 n 0000 ~ 11457057 n 0000 | a spatial location defined by a real or imaginary unidimensional extent -08593924 15 n 01 line 1 014 @ 06798750 n 0000 ~ 08516260 n 0000 ~ 08571459 n 0000 ~ 08572726 n 0000 ~ 08572877 n 0000 ~ 08573010 n 0000 ~ 08573140 n 0000 ~ 08579134 n 0000 ~ 08629922 n 0000 ~ 08650677 n 0000 ~ 08650919 n 0000 ~ 08651104 n 0000 ~ 08653873 n 0000 ~ 08654127 n 0000 | in games or sports; a mark indicating positions or bounds of the playing area -08594286 15 n 01 line 2 006 @ 08622586 n 0000 ;c 08199025 n 0000 ~ 08571799 n 0000 ~ 08573674 n 0000 ~ 08594714 n 0000 ~ 08595054 n 0000 | a fortified position (especially one marking the most forward position of troops); "they attacked the enemy's line" -08594543 15 n 01 flight_line 0 002 @ 08593262 n 0000 #p 02687992 n 0000 | place where airplanes are parked and the maintenance hangars (but not the runways or taxiways) -08594714 15 n 01 line_of_battle 0 003 @ 08594286 n 0000 ;c 08199025 n 0000 %p 08594886 n 0000 | a line formed by troops or ships prepared to deliver or receive an attack -08594886 15 n 01 salient 0 003 @ 13919685 n 0000 #p 08594714 n 0000 ;c 08199025 n 0000 | (military) the part of the line of battle that projects closest to the enemy -08595054 15 n 01 battle_line 0 002 @ 08594286 n 0000 ;c 08199025 n 0000 | the line along which warring troops meet -08595171 15 n 01 line_of_flight 0 001 @ 08616311 n 0000 | the path along which a freely moving object travels through the air -08595299 15 n 01 line_of_march 0 001 @ 08616311 n 0000 | the route along which a column advances -08595398 15 n 02 line_of_sight 0 line_of_vision 0 001 @ 08593262 n 0000 | an imaginary straight line along which an observer looks -08595531 15 n 01 latitude 0 002 @ 13888491 n 0000 + 02904780 a 0101 | the angular distance between an imaginary line around a heavenly body parallel to its equator and the equator itself -08595720 15 n 04 latitude 1 line_of_latitude 0 parallel_of_latitude 0 parallel 0 005 @ 08593262 n 0000 + 02904780 a 0101 ~ 08496655 n 0000 ~ 08586036 n 0000 ~ 08675145 n 0000 | an imaginary line around the Earth parallel to the equator -08595958 15 n 01 lunar_latitude 0 001 @ 08593262 n 0000 | an imaginary line around the moon parallel to its equator -08596076 15 n 04 littoral 0 litoral 0 littoral_zone 0 sands 0 001 @ 09428293 n 0000 | the region of the shore of a lake or sea or ocean -08596214 15 n 02 loading_zone 0 loading_area 0 001 @ 08656893 n 0000 | a stop where carriers can be loaded and unloaded -08596336 15 n 04 load_line 0 Plimsoll_line 0 Plimsoll_mark 0 Plimsoll 0 001 @ 08678783 n 0000 | waterlines to show the level the water should reach when the ship is properly loaded -08596519 15 n 01 Lombard_Street 0 002 @i 04334599 n 0000 #p 08873622 n 0000 | a street in central London containing many of the major London banks -08596668 15 n 01 longitude 0 002 @ 13888491 n 0000 + 02830345 a 0101 | the angular distance between a point on any meridian and the prime meridian at Greenwich -08596830 15 n 01 Whitehall 0 002 @i 04334599 n 0000 #p 08873622 n 0000 | a wide street in London stretching from Trafalgar Square to the Houses of Parliament; site of many government offices -08597023 15 n 01 Trafalgar_Square 0 002 @i 08619620 n 0000 #p 08873622 n 0000 | a square in central London where there is a memorial to Admiral Nelson -08597176 15 n 02 lookout 0 observation_post 0 003 @ 08624385 n 0000 + 02151966 v 0102 ~ 08599976 n 0000 | an elevated post affording a wide view -08597323 15 n 02 Maghreb 0 Mahgrib 0 005 @i 08574314 n 0000 #p 09189411 n 0000 %p 08705397 n 0000 %p 08969291 n 0000 %p 09037394 n 0000 | the region of northwest Africa comprising the Atlas Mountains and the coastlands of Morocco and Algeria and Tunisia -08597579 15 n 01 magnetic_pole 0 001 @ 08578706 n 0000 | either of two points where the lines of force of the Earth's magnetic field are vertical -08597727 15 n 02 mandate 0 mandatory 0 002 @ 08552138 n 0000 ~i 08798771 n 0000 | a territory surrendered by Turkey or Germany after World War I and put under the tutelage of some other European power until they are able to stand by themselves -08597973 15 n 01 market_cross 0 001 @ 08600443 n 0000 | a cross-shaped monument set up in the marketplace of a town where public business is often conducted -08598132 15 n 01 maximum 0 002 @ 08593130 n 0000 ! 08600274 n 0101 | the point on a curve where the tangent changes from positive on the left to negative on the right -08598301 15 n 01 grassland 0 008 @ 08673395 n 0000 @ 07941945 n 0000 ~ 08570533 n 0000 ~ 08570634 n 0000 ~ 08616050 n 0000 ~ 08619524 n 0000 ~ 08645847 n 0000 ~ 08677424 n 0000 | land where grass or grasslike vegetation grows and is the dominant form of plant life -08598568 15 n 01 mecca 1 001 @ 08664443 n 0000 | a place that attracts many visitors; "New York is a mecca for young artists" -08598696 15 n 01 melting_pot 0 001 @ 08567235 n 0000 | an environment in which many ideas and races are socially assimilated -08598823 15 n 02 meridian 0 line_of_longitude 0 006 @ 08579487 n 0000 + 02763824 a 0101 ~ 08599174 n 0000 ~ 08599292 n 0000 ~ 08599662 n 0000 ~i 08599792 n 0000 | an imaginary great circle on the surface of the earth passing through the north and south poles at right angles to the equator; "all points on the same meridian have the same longitude" -08599174 15 n 01 observer's_meridian 0 001 @ 08598823 n 0000 | a meridian that passes through the observer's zenith -08599292 15 n 01 prime_meridian 0 002 @ 08598823 n 0000 ~i 08599488 n 0000 | meridian at zero degree longitude from which east and west are reckoned (usually the Greenwich longitude in England) -08599488 15 n 01 Greenwich_Meridian 0 001 @i 08599292 n 0000 | the meridian passing through Greenwich; was internationally adopted as the earth's zero of longitude in 1884 -08599662 15 n 01 magnetic_meridian 0 001 @ 08598823 n 0000 | an imaginary line passing through both magnetic poles of the Earth -08599792 15 n 03 dateline 0 date_line 0 International_Date_Line 0 001 @i 08598823 n 0000 | an imaginary line on the surface of the earth following (approximately) the 180th meridian -08599976 15 n 02 meteorological_observation_post 0 weather_station 0 001 @ 08597176 n 0000 | one of a network of observation posts where meteorological data is recorded -08600147 15 n 01 midair 0 001 @ 08620061 n 0000 | some point in the air; above ground level; "the planes collided in midair" -08600274 15 n 01 minimum 0 002 @ 08593130 n 0000 ! 08598132 n 0101 | the point on a curve where the tangent changes from negative on the left to positive on the right -08600443 15 n 01 monument 0 004 @ 08651247 n 0000 + 02864165 a 0101 ~ 08597973 n 0000 ~i 08656750 n 0000 | an important site that is marked and preserved as public property -08600618 15 n 01 mud_flat 0 001 @ 08673395 n 0000 | a tract of low muddy land near an estuary; covered at high tide and exposed at low tide -08600760 15 n 01 nadir 1 003 @ 08520401 n 0000 #p 08521267 n 0000 ! 08684769 n 0101 | the point below the observer that is directly opposite the zenith on the imaginary sphere against which celestial bodies appear to be projected -08600992 15 n 01 national_park 0 049 @ 08615149 n 0000 ~i 08602037 n 0000 ~i 08602254 n 0000 ~i 08602456 n 0000 ~i 08602822 n 0000 ~i 08602997 n 0000 ~i 08603158 n 0000 ~i 08603308 n 0000 ~i 08603525 n 0000 ~i 08603704 n 0000 ~i 08603924 n 0000 ~i 08604085 n 0000 ~i 08604283 n 0000 ~i 08604487 n 0000 ~i 08604721 n 0000 ~i 08604891 n 0000 ~i 08605123 n 0000 ~i 08605261 n 0000 ~i 08605493 n 0000 ~i 08605720 n 0000 ~i 08605863 n 0000 ~i 08606012 n 0000 ~i 08606206 n 0000 ~i 08606370 n 0000 ~i 08606502 n 0000 ~i 08606688 n 0000 ~i 08606869 n 0000 ~i 08607066 n 0000 ~i 08607231 n 0000 ~i 08607408 n 0000 ~i 08607575 n 0000 ~i 08607752 n 0000 ~i 08607957 n 0000 ~i 08608157 n 0000 ~i 08608314 n 0000 ~i 08608505 n 0000 ~i 08608641 n 0000 ~i 08608813 n 0000 ~i 08608986 n 0000 ~i 08609131 n 0000 ~i 08609278 n 0000 ~i 08609487 n 0000 ~i 08609685 n 0000 ~i 08609858 n 0000 ~i 08610141 n 0000 ~i 08610305 n 0000 ~i 08610646 n 0000 ~i 08610810 n 0000 ~i 09036295 n 0000 | a tract of land declared by the national government to be public property -08602037 15 n 01 Acadia_National_Park 0 002 @i 08600992 n 0000 #p 09092497 n 0000 | a national park in Maine showing marine erosion and glaciation; includes seashore and also the highest point on the Atlantic coast -08602254 15 n 01 Arches_National_Park 0 002 @i 08600992 n 0000 #p 09147046 n 0000 | a national park in Utah including mountains and the Colorado River gorge and huge rock formations caused by erosion -08602456 15 n 01 Badlands_National_Park 0 002 @i 08600992 n 0000 #p 09138935 n 0000 | a national park in South Dakota having multicolored peaks and spires resulting from erosion; fossil sites -08602650 15 n 01 Big_Bend 0 002 @i 08574314 n 0000 #p 09141526 n 0000 | a triangular area in southwestern Texas on the Mexican border; formed by a bend in the Rio Grande -08602822 15 n 01 Big_Bend_National_Park 0 002 @i 08600992 n 0000 #p 09141526 n 0000 | a large national park in Texas featuring mountains and desert and canyons and wildlife -08602997 15 n 01 Biscayne_National_Park 0 002 @i 08600992 n 0000 #p 09071690 n 0000 | a national park in Florida having underwater coral reefs and marine life -08603158 15 n 01 Bryce_Canyon_National_Park 0 002 @i 08600992 n 0000 #p 09147046 n 0000 | a national park in Utah having multicolored rock erosions -08603308 15 n 01 Canyonlands_National_Park 0 002 @i 08600992 n 0000 #p 09147046 n 0000 | a national park in Utah having rock formations and ancient cliff dwellings; canyons of the Green River and the Colorado River -08603525 15 n 01 Capitol_Reef_National_Park 0 002 @i 08600992 n 0000 #p 09147046 n 0000 | a national park in Utah having colorful rock formations and desert plants and wildlife -08603704 15 n 01 Carlsbad_Caverns_National_Park 0 002 @i 08600992 n 0000 #p 09114696 n 0000 | a national park in New Mexico featuring what is probably the world's largest cavern with spectacular underground formations -08603924 15 n 01 Channel_Islands_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California featuring sea birds and marine life -08604085 15 n 01 Crater_Lake_National_Park 0 002 @i 08600992 n 0000 #p 09133010 n 0000 | a national park in Oregon having the deepest lake in the United States in the crater of an extinct volcano -08604283 15 n 01 Denali_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a large national park in Alaska having peaks of the Alaska Range (including Mount McKinley) and the huge Denali fault -08604487 15 n 01 Everglades_National_Park 0 003 @i 08600992 n 0000 #p 09071690 n 0000 %p 09234885 n 0000 | a national park in Florida containing an immense subtropical wilderness with mangrove swamps and rare birds and wild animals -08604721 15 n 01 Gates_of_the_Arctic_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a large national park in Alaska featuring the Great Mendenhall Glacier -08604891 15 n 01 Grand_Canyon_National_Park 0 002 @i 08600992 n 0000 #p 09057311 n 0000 | a national park in Arizona including the mile deep canyon of the Colorado River which shows geologic features and fossil plants and animals -08605123 15 n 01 Grand_Teton_National_Park 0 002 @i 08600992 n 0000 #p 09159003 n 0000 | a national park in Wyoming featuring mountains -08605261 15 n 01 Great_Smoky_Mountains_National_Park 0 003 @i 08600992 n 0000 #p 09140148 n 0000 #p 09126305 n 0000 | a national park in Tennessee and North Carolina that includes the highest mountain in the eastern United States -08605493 15 n 01 Guadalupe_Mountains_National_Park 0 002 @i 08600992 n 0000 #p 09141526 n 0000 | a national park in Texas that has the highest point in Texas; includes desert wilderness and the ancient Apache hunting grounds -08605720 15 n 01 Haleakala_National_Park 0 002 @i 08600992 n 0000 #p 09078231 n 0000 | a national park in Hawaii including a dormant volcano -08605863 15 n 01 Hawaii_Volcanoes_National_Park 0 002 @i 08600992 n 0000 #p 09078231 n 0000 | a national park in Hawaii featuring active volcanoes -08606012 15 n 01 Hot_Springs_National_Park 0 002 @i 08600992 n 0000 #p 09059274 n 0000 | a national park in Arkansas featuring ancient hot springs; bathing is said to have therapeutic effects -08606206 15 n 01 Isle_Royal_National_Park 0 002 @i 08600992 n 0000 #p 09099526 n 0000 | a national park on an island in Michigan; includes prehistoric iron mines -08606370 15 n 01 Katmai_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a national park in Alaska featuring mountains -08606502 15 n 01 Kenai_Fjords_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a national park in Alaska having mountains and whale watching and ancient Indian copper mines -08606688 15 n 01 Kings_Canyon_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California that has giant sequoia trees and alpine lakes and glaciers -08606869 15 n 01 Kobuk_Valley_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a national park in Alaska having mountains and forests and tundra and sand dunes and archeological sites -08607066 15 n 01 Lake_Clark_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | a national park in Alaska having Eskimo and Athapaskan archeological sites -08607231 15 n 01 Lassen_Volcanic_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California having mountains and volcanic lakes and hot springs -08607408 15 n 01 Mammoth_Cave_National_Park 0 002 @i 08600992 n 0000 #p 09089139 n 0000 | a national park in Kentucky having a large cavern and an underground river -08607575 15 n 01 Mesa_Verde_National_Park 0 002 @i 08600992 n 0000 #p 09067277 n 0000 | a national park in Colorado containing prehistoric cliff dwellings; semiarid landscape -08607752 15 n 01 Mount_Ranier_National_Park 0 002 @i 08600992 n 0000 #p 09152944 n 0000 | a national park in Washington having mountain terrain featuring glaciers and alpine lakes and streams and swamps -08607957 15 n 01 North_Cascades_National_Park 0 002 @i 08600992 n 0000 #p 09152944 n 0000 | a national park in Washington that is an alpine wilderness area featuring gold rush and logging campsites -08608157 15 n 01 Olympic_National_Park 0 002 @i 08600992 n 0000 #p 09152944 n 0000 | a national park in Washington having rain forests of giant evergreens -08608314 15 n 01 Petrified_Forest_National_Park 0 002 @i 08600992 n 0000 #p 09057311 n 0000 | a national park in Arizona having the world's largest collection of petrified coniferous trees -08608505 15 n 01 Platt_National_Park 0 002 @i 08600992 n 0000 #p 09131654 n 0000 | a national park in Oklahoma having mineral springs -08608641 15 n 01 Redwood_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California featuring a redwood forest and Pacific Ocean coastline -08608813 15 n 01 Rocky_Mountain_National_Park 0 002 @i 08600992 n 0000 #p 09067277 n 0000 | a national park in Colorado having mountains and lakes and streams and forests -08608986 15 n 01 Sequoia_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California that includes Mount Whitney -08609131 15 n 01 Shenandoah_National_Park 0 002 @i 08600992 n 0000 #p 09148970 n 0000 | a national park in Virginia for the Blue Ridge Mountains -08609278 15 n 01 Theodore_Roosevelt_Memorial_National_Park 0 002 @i 08600992 n 0000 #p 09129442 n 0000 | a national park in North Dakota that includes the site of former President Theodore Roosevelt's ranch -08609487 15 n 01 Virgin_Islands_National_Park 0 002 @i 08600992 n 0000 #p 08754529 n 0000 | a national park in the Virgin Islands having tropical plants and animals; sandy beaches and coral reefs -08609685 15 n 01 Voyageurs_National_Park 0 002 @i 08600992 n 0000 #p 09102016 n 0000 | a national park in Minnesota having ancient rock outcroppings and evergreen forests -08609858 15 n 01 Wind_Cave_National_Park 0 002 @i 08600992 n 0000 #p 09138935 n 0000 | a national park in South Dakota featuring bison herds and limestone caverns -08610023 15 n 01 windward 0 002 @ 08510666 n 0000 ! 08592352 n 0103 | the side of something that is toward the wind -08610141 15 n 01 Wrangell-St._Elias_National_Park 0 002 @i 08600992 n 0000 #p 09055015 n 0000 | the largest national park of the United States; located in Alaska -08610305 15 n 01 Yellowstone_National_Park 0 005 @i 08600992 n 0000 #p 09159003 n 0000 #p 09108164 n 0000 #p 09081213 n 0000 %p 09378178 n 0000 | the first national park in the United States; located in the border area between Wyoming and Montana and Idaho; spectacular wilderness; famous for Old Faithful geyser and for buffalo and bears -08610646 15 n 01 Yosemite_National_Park 0 002 @i 08600992 n 0000 #p 09060768 n 0000 | a national park in California famous for its waterfalls and rock formations -08610810 15 n 01 Zion_National_Park 0 002 @i 08600992 n 0000 #p 09147046 n 0000 | a national park in Utah having huge canyons and gorges carved by mountain rivers -08610975 15 n 01 nesting_place 0 001 @ 08664443 n 0000 | a place suitable for nesting -08611063 15 n 01 no-go_area 0 002 @ 08497294 n 0000 ;r 08860123 n 0000 | an area that is dangerous or impossible to enter or to which entry is forbidden -08611218 15 n 01 no_man's_land 0 001 @ 08497294 n 0000 | an unoccupied area between the front lines of opposing armies -08611339 15 n 01 nombril 0 001 @ 08521816 n 0000 | the center point on a shield -08611421 15 n 01 no-parking_zone 0 001 @ 08652970 n 0000 | a space where automobiles are not allowed to park -08611532 15 n 01 north_celestial_pole 0 001 @i 08621099 n 0000 | the celestial pole above the northern hemisphere; near Polaris -08611662 15 n 01 northern_hemisphere 0 004 @i 08583095 n 0000 %p 09275016 n 0000 %p 09336853 n 0000 %p 09372504 n 0000 | the hemisphere that is to the north of the equator -08611836 15 n 01 North_Pole 0 002 @i 08620881 n 0000 + 02444475 a 0101 | the northernmost point of the Earth's axis -08611954 15 n 01 old_country 0 001 @ 08510169 n 0000 | the country of origin of an immigrant -08612049 15 n 02 orbit 0 celestial_orbit 0 006 @ 08616311 n 0000 + 02979285 a 0101 + 02043982 v 0102 %p 08495617 n 0000 ~ 08612498 n 0000 %p 08618379 n 0000 | the (usually elliptical) path described by one celestial body in its revolution about another; "he plotted the orbit of the moon" -08612340 15 n 02 orbit 1 electron_orbit 0 003 @ 08616311 n 0000 + 02979285 a 0101 + 02043982 v 0102 | the path of an electron around the nucleus of an atom -08612498 15 n 01 geosynchronous_orbit 0 002 @ 08612049 n 0000 ~ 08612644 n 0000 | a circular orbit around the Earth having a period of 24 hours -08612644 15 n 01 geostationary_orbit 0 001 @ 08612498 n 0000 | a geosynchronous orbit that is fixed with respect to a position on the Earth -08612786 15 n 02 outline 0 lineation 0 007 @ 08512259 n 0000 + 01276361 v 0201 + 01582645 v 0203 + 01689379 v 0103 ~ 08613000 n 0000 ~ 08613345 n 0000 ~ 08651735 n 0000 | the line that appears to bound an object -08613000 15 n 01 coastline 0 001 @ 08612786 n 0000 | the outline of a coast -08613078 15 n 02 paper_route 0 paper_round 0 001 @ 08616311 n 0000 | the route taken when delivering newspapers every day -08613202 15 n 01 profile 1 002 @ 05934673 n 0000 + 01680913 v 0101 | an outline of something (especially a human face as seen from one side) -08613345 15 n 01 silhouette 0 002 @ 08612786 n 0000 + 02138283 v 0101 | an outline of a solid object (as cast by its shadow) -08613472 15 n 02 outside 0 exterior 0 002 @ 08660339 n 0000 ! 08588152 n 0101 | the outer side or surface of something -08613593 15 n 02 outside 1 exterior 1 003 @ 08630039 n 0000 ! 08588294 n 0101 ~ 08613733 n 0000 | the region that is outside of something -08613733 15 n 04 outdoors 0 out-of-doors 0 open_air 0 open 2 003 @ 08613593 n 0000 + 01659117 a 0401 + 01692640 a 0101 | where the air is unconfined; "he wanted to get outdoors a little"; "the concert was held in the open air"; "camping in the open" -08613985 15 n 02 outstation 0 outpost 0 001 @ 08624385 n 0000 | a station in a remote or sparsely populated location -08614104 15 n 01 overlook 0 003 @ 08664443 n 0000 + 02721966 v 0103 + 02696129 v 0103 | a high place affording a good view -08614229 15 n 03 paddy 0 paddy_field 0 rice_paddy 0 001 @ 08569998 n 0000 | an irrigated or flooded field where rice is grown -08614357 15 n 01 panhandle 0 001 @ 08574314 n 0000 | a relatively narrow strip of land projecting from some larger area; "Wheeling is located in the northern panhandle of West Virginia" -08614545 15 n 01 parade_ground 0 001 @ 08673395 n 0000 | an area for holding parades -08614632 15 n 01 fairground 0 001 @ 08673395 n 0000 | an open area for holding fairs or exhibitions or circuses -08614746 15 n 01 midway 0 002 @ 08673395 n 0000 #p 00519333 n 0000 | the place at a fair or carnival where sideshows and similar amusements are located -08614900 15 n 01 fairway 1 001 @ 08673395 n 0000 | a tract of ground free of obstacles to movement -08615001 15 n 01 parish 0 003 @ 08590369 n 0000 #p 08550966 n 0000 + 02871695 a 0101 | the local subdivision of a diocese committed to one pastor -08615149 15 n 02 park 0 parkland 0 003 @ 08673395 n 0000 ~ 08600992 n 0000 ~ 08645420 n 0000 | a large area of land preserved in its natural state as public property; "there are laws that protect the wildlife in this park" -08615374 15 n 04 park 1 commons 0 common 0 green 1 006 @ 08673395 n 0000 #p 08675967 n 0000 + 00492677 a 0301 ~ 08494231 n 0000 ~ 08678405 n 0000 ~i 09121230 n 0000 | a piece of open land for recreational use in an urban area; "they went for a walk in the park" -08615638 15 n 04 parking_lot 0 car_park 0 park 2 parking_area 0 004 @ 08674970 n 0000 + 01934427 v 0301 + 01493380 v 0301 ~ 08676499 n 0000 | a lot where cars are parked -08615810 15 n 02 parking_space 0 parking_zone 0 001 @ 08652970 n 0000 | a space where an automobile can be parked -08615926 15 n 01 parts 0 001 @ 08567235 n 0000 | the local environment; "he hasn't been seen around these parts in years" -08616050 15 n 05 pasture 0 pastureland 0 grazing_land 0 lea 0 ley 0 006 @ 08598301 n 0000 #p 08644722 n 0000 + 01576478 v 0103 + 01576165 v 0105 ~ 08542304 n 0000 ~ 08547468 n 0000 | a field covered with grass or herbage and suitable for grazing by livestock -08616311 15 n 03 path 0 route 0 itinerary 0 026 @ 08593262 n 0000 + 01952564 v 0201 + 01952750 v 0201 ~ 03326239 n 0000 ~ 03711897 n 0000 ~ 04464211 n 0000 ~ 08492546 n 0000 ~ 08492747 n 0000 ~ 08493705 n 0000 ~ 08507381 n 0000 ~ 08517554 n 0000 ~ 08595171 n 0000 ~ 08595299 n 0000 ~ 08612049 n 0000 ~ 08612340 n 0000 ~ 08613078 n 0000 ~ 08616872 n 0000 ~ 08616985 n 0000 ~ 08617311 n 0000 ~ 08617399 n 0000 ~ 08617516 n 0000 ~ 08617622 n 0000 ~ 08617751 n 0000 ~ 08679972 n 0000 ~ 08680237 n 0000 ~i 08680571 n 0000 | an established line of travel or access -08616872 15 n 01 beeline 0 001 @ 08616311 n 0000 | the most direct route; "he made a beeline for the bathroom" -08616985 15 n 01 circuit 0 002 @ 08616311 n 0000 + 02082527 v 0101 | an established itinerary of venues or events that a particular group of people travel to; "she's a familiar name on the club circuit"; "on the lecture circuit"; "the judge makes a circuit of the courts in his district"; "the international tennis circuit" -08617311 15 n 01 crosscut 0 002 @ 08616311 n 0000 + 01601025 v 0101 | a diagonal path -08617399 15 n 02 supply_line 0 supply_route 0 001 @ 08616311 n 0000 | a route over which supplies can be delivered -08617516 15 n 01 line_of_fire 0 001 @ 08616311 n 0000 | the path of a missile discharged from a firearm -08617622 15 n 02 migration_route 0 flyway 0 001 @ 08616311 n 0000 | the geographic route along which birds customarily migrate -08617751 15 n 01 fairway 2 001 @ 08616311 n 0000 | the usual course taken by vessels through a harbor or coastal waters -08617873 15 n 01 patriarchate 0 001 @ 08590369 n 0000 | the jurisdiction of a patriarch -08617963 15 n 06 peak 0 crown 0 crest 1 top 2 tip 1 summit 0 008 @ 08664443 n 0000 + 02021149 v 0601 + 02021376 v 0401 + 02081178 v 0402 + 02693168 v 0302 ~ 08584787 n 0000 ~ 08619457 n 0000 ~ 09360122 n 0000 | the top or extreme point of something (usually a mountain or hill); "the view from the peak was magnificent"; "they clambered to the tip of Monadnock"; "the region is a few molecules wide at the summit" -08618379 15 n 02 periapsis 0 point_of_periapsis 0 009 @ 08520401 n 0000 #p 08612049 n 0000 ;c 06095022 n 0000 ! 08495617 n 0202 ! 08495617 n 0101 ~ 08618669 n 0000 ~ 08618831 n 0000 ~ 08619006 n 0000 ~ 08619112 n 0000 | (astronomy) the point in an orbit closest to the body being orbited -08618669 15 n 01 perigee 0 002 @ 08618379 n 0000 ! 08495420 n 0101 | periapsis in Earth orbit; the point in its orbit where a satellite is nearest to the Earth -08618831 15 n 01 perihelion 0 002 @ 08618379 n 0000 ! 08495908 n 0101 | periapsis in solar orbit; the point in the orbit of a planet or comet where it is nearest to the sun -08619006 15 n 01 perijove 0 002 @ 08618379 n 0000 ! 08496095 n 0101 | periapsis in orbit around Jupiter -08619112 15 n 02 periselene 0 perilune 0 003 @ 08618379 n 0000 ! 08496199 n 0202 ! 08496199 n 0101 | periapsis in orbit around the moon -08619250 15 n 01 pesthole 0 001 @ 08516885 n 0000 | a breeding ground for epidemic disease -08619343 15 n 02 picnic_area 0 picnic_ground 0 001 @ 08673395 n 0000 | a tract of land set aside for picnicking -08619457 15 n 01 pinnacle 0 001 @ 08617963 n 0000 | a lofty peak -08619524 15 n 01 prairie 0 002 @ 08598301 n 0000 ~i 09293011 n 0000 | a treeless grassy plain -08619620 15 n 02 public_square 0 square 0 004 @ 08673395 n 0000 #p 08540903 n 0000 ~i 08597023 n 0000 ~ 08619795 n 0000 | an open area at the meeting of two or more streets -08619795 15 n 03 plaza 0 place 2 piazza 0 001 @ 08619620 n 0000 | a public square with room for pedestrians; "they met at Elm Plaza"; "Grosvenor Place" -08619949 15 n 01 toll_plaza 0 002 @ 08673395 n 0000 %p 04449290 n 0000 | an area where tollbooths are located -08620061 15 n 01 point 0 030 @ 00027167 n 0000 ~ 05278922 n 0000 ~ 05456082 n 0000 ~ 05556595 n 0000 ~ 05608419 n 0000 ~ 08498580 n 0000 ~ 08498732 n 0000 ~ 08507558 n 0000 ~ 08520401 n 0000 ~ 08521816 n 0000 ~ 08523340 n 0000 ~ 08543776 n 0000 ~ 08544275 n 0000 ~ 08547938 n 0000 ~ 08572335 n 0000 ~ 08578706 n 0000 ~ 08580326 n 0000 ~ 08586218 n 0000 ~ 08600147 n 0000 ~ 08620763 n 0000 ~ 08621598 n 0000 ~ 08622201 n 0000 ~ 08622340 n 0000 ~ 08622586 n 0000 ~ 08659993 n 0000 ~ 08664443 n 0000 ~ 08676951 n 0000 ~ 11455695 n 0000 ~ 11678493 n 0000 ~ 14182697 n 0000 | the precise location of something; a spatially limited location; "she walked to a point where she could survey the whole street" -08620763 15 n 01 abutment 0 002 @ 08620061 n 0000 + 01466978 v 0104 | point of contact between two objects or parts -08620881 15 n 01 pole 0 005 @ 08578706 n 0000 + 02838005 a 0101 + 02444147 a 0101 ~i 08611836 n 0000 ~i 08652717 n 0000 | one of two antipodal points where the Earth's axis of rotation intersects the Earth's surface -08621099 15 n 02 pole 1 celestial_pole 0 003 @ 08520401 n 0000 ~i 08611532 n 0000 ~i 08652854 n 0000 | one of two points of intersection of the Earth's axis and the celestial sphere -08621283 15 n 01 pole_position 0 001 @ 08621598 n 0000 | the most favorable position at the start of a race -08621393 15 n 01 polls 0 001 @ 08621598 n 0000 | the place where people vote -08621472 15 n 01 pride_of_place 0 001 @ 08621598 n 0000 | the first or highest or most important or most ostentatious place -08621598 15 n 02 position 0 place 5 026 @ 08620061 n 0000 + 01494310 v 0203 + 01987160 v 0101 = 02031986 a 0000 = 02032953 a 0000 ~ 08493825 n 0000 ~ 08580944 n 0000 ~ 08592165 n 0000 ~ 08621283 n 0000 ~ 08621393 n 0000 ~ 08621472 n 0000 ~ 08622763 n 0000 ~ 08622950 n 0000 ~ 08623927 n 0000 ~ 08624095 n 0000 ~ 08624196 n 0000 ~ 08624385 n 0000 ~ 08624656 n 0000 ~ 08624891 n 0000 ~ 08625073 n 0000 ~ 08625462 n 0000 ~ 08625846 n 0000 ~ 08626080 n 0000 ~ 08653706 n 0000 ~ 08656590 n 0000 ~ 08677075 n 0000 | the particular portion of space occupied by something; "he put the lamp back in its place" -08622201 15 n 01 position 3 002 @ 08620061 n 0000 + 01987160 v 0101 | the appropriate or customary location; "the cars were in position" -08622340 15 n 01 pressure_point 0 002 @ 08620061 n 0000 #p 05216365 n 0000 | any of several points on the body where the pulse can be felt and where pressure on an underlying artery will control bleeding from that artery at a more distal point -08622586 15 n 02 military_position 0 position 2 004 @ 08620061 n 0000 ;c 08199025 n 0000 ~ 08580134 n 0000 ~ 08594286 n 0000 | a point occupied by troops for tactical reasons -08622763 15 n 01 anomaly 0 002 @ 08621598 n 0000 ;c 06095022 n 0000 | (astronomy) position of a planet as defined by its angular distance from its perihelion (as observed from the sun) -08622950 15 n 02 site 2 situation 0 008 @ 08621598 n 0000 + 02694933 v 0201 ~ 08623260 n 0000 ~ 08623424 n 0000 ~ 08623568 n 0000 ~ 08623676 n 0000 ~ 08623800 n 0000 ~ 15037664 n 0000 | physical position in relation to the surroundings; "the sites are determined by highly specific sequences of nucleotides" -08623260 15 n 01 active_site 0 003 @ 08622950 n 0000 #p 14732946 n 0000 #p 15027189 n 0000 | the part of an enzyme or antibody where the chemical reaction occurs -08623424 15 n 01 close_quarters 0 002 @ 08622950 n 0000 ;u 06295235 n 0000 | a situation of being uncomfortably close to someone or something -08623568 15 n 01 locus 1 001 @ 08622950 n 0000 | the specific site of a particular gene on its chromosome -08623676 15 n 01 locus_of_infection 0 001 @ 08622950 n 0000 | the specific site in the body where an infection originates -08623800 15 n 01 restriction_site 0 001 @ 08622950 n 0000 | the specific sites at which a restriction enzyme will cleave DNA -08623927 15 n 01 setting 2 003 @ 08621598 n 0000 + 01494310 v 0102 + 00298556 v 0101 | the physical position of something; "he changed the setting on the thermostat" -08624095 15 n 01 juxtaposition 0 002 @ 08621598 n 0000 + 01501960 v 0101 | a side-by-side position -08624196 15 n 01 lie 0 006 @ 08621598 n 0000 + 02731390 v 0101 + 02734338 v 0101 + 02653381 v 0103 + 01547001 v 0101 + 02690708 v 0101 | position or manner in which something is situated -08624385 15 n 02 post 0 station 0 005 @ 08621598 n 0000 + 01088923 v 0201 ~ 08517010 n 0000 ~ 08597176 n 0000 ~ 08613985 n 0000 | the position where someone (as a guard or sentry) stands or is assigned to stand; "a soldier manned the entrance post"; "a sentry station" -08624656 15 n 01 pitch 0 003 @ 08621598 n 0000 ;r 08860123 n 0000 + 02302817 v 0106 | a vendor's position (especially on the sidewalk); "he was employed to see that his paper's news pitches were not trespassed upon by rival vendors" -08624891 15 n 01 landmark 0 001 @ 08621598 n 0000 | the position of a prominent or well-known object in a particular landscape; "the church steeple provided a convenient landmark" -08625073 15 n 01 right 0 003 @ 08621598 n 0000 ! 08625462 n 0101 ~ 08625297 n 0000 | location near or direction toward the right side; i.e. the side to the south when a person or object faces east; "he stood on the right" -08625297 15 n 02 stage_right 0 right_stage 0 002 @ 08625073 n 0000 #p 04296562 n 0000 | the part of the stage on the actor's right as the actor faces the audience -08625462 15 n 01 left 0 003 @ 08621598 n 0000 ! 08625073 n 0101 ~ 08625684 n 0000 | location near or direction toward the left side; i.e. the side to the north when a person or object faces east; "she stood on the left" -08625684 15 n 02 stage_left 0 left_stage 0 002 @ 08625462 n 0000 #p 04296562 n 0000 | the part of the stage on the actor's left as the actor faces the audience -08625846 15 n 02 back 2 rear 1 003 @ 08621598 n 0000 + 00197891 a 0201 ! 08626080 n 0101 | the part of something that is furthest from the normal viewer; "he stood at the back of the stage"; "it was hidden in the rear of the store" -08626080 15 n 01 front 2 004 @ 08621598 n 0000 + 00131018 a 0101 + 02693319 v 0101 ! 08625846 n 0101 | the part of something that is nearest to the normal viewer; "he walked to the front of the stage" -08626283 15 n 01 municipality 0 007 @ 08675967 n 0000 @ 08491826 n 0000 + 01038580 a 0101 + 02697452 a 0101 ~ 08524735 n 0000 ~ 08665504 n 0000 %p 08672397 n 0000 | an urban district having corporate status and powers of self-government -08626522 15 n 01 new_town 0 002 @ 08675967 n 0000 ;r 08860123 n 0000 | a planned urban community created in a rural or undeveloped area and designed to be self-sufficient with its own housing and education and commerce and recreation -08626758 15 n 01 perch 0 001 @ 08647616 n 0000 | an elevated place serving as a seat -08626845 15 n 01 potter's_field 0 001 @ 08521623 n 0000 | a cemetery for unknown or indigent people -08626947 15 n 01 prefecture 0 005 @ 08491826 n 0000 ;r 08929922 n 0000 ;r 08921850 n 0000 ;r 08800258 n 0000 + 03102723 a 0101 | the district administered by a prefect (as in France or Japan or the Roman Empire) -08627161 15 n 01 premises 0 001 @ 08651247 n 0000 | land and the buildings on it; "bread is baked on the premises"; "the were evicted from the premises" -08627316 15 n 02 protectorate 0 associated_state 0 001 @ 08552138 n 0000 | a state or territory partly controlled by (but not a possession of) a stronger state but autonomous in internal affairs; protectorates are established by treaty -08627554 15 n 01 quadrant 0 001 @ 08497294 n 0000 | the area enclosed by two perpendicular radii of a circle -08627665 15 n 01 quadrant 1 001 @ 08497294 n 0000 | any of the four areas into which a plane is divided by two orthogonal coordinate axes -08627805 15 n 02 quadrant 2 quarter-circle 0 001 @ 08593262 n 0000 | a quarter of the circumference of a circle -08627919 15 n 01 quarter 0 006 @ 08537837 n 0000 ~ 08578951 n 0000 ~ 08628141 n 0000 ~ 08628308 n 0000 ~ 08652156 n 0000 ~ 08676349 n 0000 | a district of a city having some distinguishing character; "the Latin Quarter" -08628141 15 n 02 kasbah 0 casbah 0 001 @ 08627919 n 0000 | an older or native quarter of many cities in northern Africa; the quarter in which the citadel is located -08628308 15 n 01 medina 1 001 @ 08627919 n 0000 | the ancient quarter of many cities in northern Africa -08628414 15 n 01 Queen_Maud_Land 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a region of Antarctica between Enderby Land and the Weddell Sea; claimed by Norway -08628578 15 n 01 radius 0 001 @ 08630039 n 0000 | a circular region whose area is indicated by the length of its radius; "they located it within a radius of 2 miles" -08628746 15 n 01 rain_shadow 0 001 @ 08497294 n 0000 | an area that has little precipitation because some barrier causes the winds to lose their moisture before reaching it -08628921 15 n 02 range 1 reach 0 007 @ 08593130 n 0000 + 02685665 v 0201 + 02741149 v 0101 + 02727039 v 0101 ~ 08560785 n 0000 ~ 08560952 n 0000 ~ 08631945 n 0000 | the limits within which something can be effective; "range of motion"; "he was beyond the reach of their fire" -08629199 15 n 01 range 2 006 @ 08673395 n 0000 + 01524344 a 0101 + 01390487 a 0101 + 01204439 v 0101 + 01576165 v 0104 ~ 08585540 n 0000 | a large tract of grassy open land on which livestock can graze; "they used to drive the cattle across the open range every spring"; "he dreamed of a home on the range" -08629508 15 n 03 rear 0 backside 0 back_end 0 005 @ 08510666 n 0000 + 00197891 a 0101 ! 08573472 n 0101 ~ 05547396 n 0000 ~ 08629746 n 0000 | the side of an object that is opposite its front; "his room was toward the rear of the hotel" -08629746 15 n 01 rearward 0 003 @ 08629508 n 0000 + 00197891 a 0102 + 00202250 a 0101 | direction toward the rear; "his outfit marched to the rearward of the tank divisions" -08629922 15 n 01 red_line 0 001 @ 08593924 n 0000 | a line that is colored red and that bisects an ice hockey rink -08630039 15 n 02 region 0 part 0 042 @ 00027167 n 0000 ~ 08499057 n 0000 ~ 08499504 n 0000 ~ 08500213 n 0000 ~ 08500819 n 0000 ~ 08500989 n 0000 ~ 08501565 n 0000 ~ 08501887 n 0000 ~ 08502051 n 0000 ~ 08502171 n 0000 ~ 08509442 n 0000 ~ 08509786 n 0000 ~ 08511970 n 0000 ~ 08546183 n 0000 ~ 08556386 n 0000 ~ 08565506 n 0000 ~ 08568978 n 0000 ~i 08582157 n 0000 ~i 08582337 n 0000 ~i 08582613 n 0000 ~ 08582837 n 0000 ~ 08588294 n 0000 ~ 08588916 n 0000 ~ 08591680 n 0000 ~ 08613593 n 0000 ~ 08628578 n 0000 ~ 08649345 n 0000 ~ 08653314 n 0000 ~ 08653474 n 0000 ~ 08663860 n 0000 ~ 08685188 n 0000 ~ 08685677 n 0000 ~i 08782490 n 0000 ~i 08783444 n 0000 ~i 08790199 n 0000 ~i 08814781 n 0000 ~ 08844923 n 0000 ~ 08977845 n 0000 ~i 09001881 n 0000 ~ 09223177 n 0000 ~ 09327538 n 0000 ~ 09346613 n 0000 | the extended spatial location of something; "the farming regions of France"; "religions in all parts of the world"; "regions of outer space" -08630985 15 n 01 region 1 023 @ 00027167 n 0000 ~ 08497294 n 0000 ~ 08502507 n 0000 ~ 08516767 n 0000 ~ 08551420 n 0000 ~ 08551628 n 0000 ~ 08551984 n 0000 ~ 08552138 n 0000 ~ 08556491 n 0000 ~i 08562454 n 0000 ~i 08562757 n 0000 ~ 08562990 n 0000 ~ 08563085 n 0000 ~ 08569777 n 0000 ~ 08574314 n 0000 ~ 08578364 n 0000 ~ 08581897 n 0000 ~ 08589140 n 0000 ~ 08631750 n 0000 ~ 08632096 n 0000 ~ 08662570 n 0000 ~i 08682575 n 0000 ~i 08747887 n 0000 | a large indefinite location on the surface of the Earth; "penguins inhabit the polar regions" -08631531 15 n 01 possession 0 007 @ 08552138 n 0000 ~i 08731423 n 0000 ~i 08754814 n 0000 ~i 08755003 n 0000 ~i 08841075 n 0000 ~i 08952856 n 0000 ~i 08989697 n 0000 | a territory that is controlled by a ruling state -08631750 15 n 01 antipodes 0 002 @ 08630985 n 0000 + 02630695 a 0101 | any two places or regions on diametrically opposite sides of the Earth; "the North Pole and the South Pole are antipodes" -08631945 15 n 02 rifle_range 0 rifle_shot 0 001 @ 08628921 n 0000 | the distance that a rifle bullet will carry; "the target was out of rifle range" -08632096 15 n 03 unknown 0 unknown_region 0 terra_incognita 0 001 @ 08630985 n 0000 | an unknown and unexplored region; "they came like angels out the unknown" -08632258 15 n 01 staging_area 0 002 @ 08497294 n 0000 ;c 08199025 n 0000 | an area where troops and equipment in transit are assembled before a military operation -08632423 15 n 02 open 1 clear 0 006 @ 08497294 n 0000 + 01622505 a 0201 + 00195617 v 0201 + 00181664 v 0202 + 00195342 v 0201 + 01622505 a 0102 | a clear or unobstructed space or expanse of land or water; "finally broke out of the forest into the open" -08632678 15 n 03 rhumb_line 0 rhumb 0 loxodrome 0 001 @ 08593262 n 0000 | a line on a sphere that cuts all meridians at the same angle; the path taken by a ship or plane that maintains a constant compass direction -08632894 15 n 03 declination 1 celestial_latitude 0 dec 0 002 @ 13888491 n 0000 ;c 06095022 n 0000 | (astronomy) the angular distance of a celestial body north or to the south of the celestial equator; expressed in degrees; used with right ascension to specify positions on the celestial sphere -08633191 15 n 03 right_ascension 0 RA 0 celestial_longitude 0 002 @ 13888491 n 0000 ;c 06095022 n 0000 | (astronomy) the equatorial coordinate specifying the angle, measured eastward along the celestial equator, from the vernal equinox to the intersection of the hour circle that passes through an object in the sky; usually expressed in hours and minutes and seconds; used with declination to specify positions on the celestial sphere; "one hour of right ascension equals fifteen degrees" -08633683 15 n 01 waterfront 0 003 @ 08537837 n 0000 ~ 08633851 n 0000 ~ 08640392 n 0000 | the area of a city (such as a harbor or dockyard) alongside a body of water -08633851 15 n 01 seafront 0 002 @ 08633683 n 0000 %p 08639058 n 0000 | the waterfront of a seaside town -08633957 15 n 01 port 0 195 @ 08578706 n 0000 + 01979085 v 0101 + 02087472 v 0101 ~ 08637771 n 0000 ~ 08638033 n 0000 ~ 08638141 n 0000 ~ 08638260 n 0000 ~ 08638442 n 0000 ~ 08639058 n 0000 ~ 08639951 n 0000 ~i 08705251 n 0000 ~i 08706058 n 0000 ~i 08706247 n 0000 ~i 08706663 n 0000 ~i 08708304 n 0000 ~i 08708609 n 0000 ~i 08712698 n 0000 ~i 08712876 n 0000 ~i 08714966 n 0000 ~i 08716076 n 0000 ~i 08721145 n 0000 ~i 08722084 n 0000 ~i 08725454 n 0000 ~i 08727003 n 0000 ~i 08727396 n 0000 ~i 08728268 n 0000 ~i 08731148 n 0000 ~i 08732807 n 0000 ~i 08733415 n 0000 ~i 08739669 n 0000 ~i 08742205 n 0000 ~i 08743945 n 0000 ~i 08745901 n 0000 ~i 08746475 n 0000 ~i 08750822 n 0000 ~i 08754388 n 0000 ~i 08755664 n 0000 ~i 08759852 n 0000 ~i 08762104 n 0000 ~i 08762243 n 0000 ~i 08762823 n 0000 ~i 08765069 n 0000 ~i 08765315 n 0000 ~i 08765460 n 0000 ~i 08765623 n 0000 ~i 08766455 n 0000 ~i 08766667 n 0000 ~i 08770274 n 0000 ~i 08773336 n 0000 ~i 08773679 n 0000 ~i 08777919 n 0000 ~i 08780018 n 0000 ~i 08780720 n 0000 ~i 08786432 n 0000 ~i 08788588 n 0000 ~i 08789605 n 0000 ~i 08793310 n 0000 ~i 08798062 n 0000 ~i 08798195 n 0000 ~i 08805565 n 0000 ~i 08805801 n 0000 ~i 08807894 n 0000 ~i 08808979 n 0000 ~i 08811473 n 0000 ~i 08818835 n 0000 ~i 08823314 n 0000 ~i 08823480 n 0000 ~i 08824771 n 0000 ~i 08825321 n 0000 ~i 08827689 n 0000 ~i 08828296 n 0000 ~i 08834280 n 0000 ~i 08849372 n 0000 ~i 08850741 n 0000 ~i 08851500 n 0000 ~i 08854855 n 0000 ~i 08856037 n 0000 ~i 08856475 n 0000 ~i 08856630 n 0000 ~i 08877208 n 0000 ~i 08877382 n 0000 ~i 08878708 n 0000 ~i 08879388 n 0000 ~i 08879680 n 0000 ~i 08880713 n 0000 ~i 08889191 n 0000 ~i 08889400 n 0000 ~i 08889521 n 0000 ~i 08889657 n 0000 ~i 08889944 n 0000 ~i 08892327 n 0000 ~i 08892971 n 0000 ~i 08895497 n 0000 ~i 08895771 n 0000 ~i 08898187 n 0000 ~i 08898633 n 0000 ~i 08910230 n 0000 ~i 08911602 n 0000 ~i 08914413 n 0000 ~i 08924023 n 0000 ~i 08924238 n 0000 ~i 08924913 n 0000 ~i 08925287 n 0000 ~i 08925957 n 0000 ~i 08928742 n 0000 ~i 08928933 n 0000 ~i 08934532 n 0000 ~i 08934694 n 0000 ~i 08934868 n 0000 ~i 08935212 n 0000 ~i 08935674 n 0000 ~i 08935978 n 0000 ~i 08936303 n 0000 ~i 08936833 n 0000 ~i 08937109 n 0000 ~i 08937995 n 0000 ~i 08946042 n 0000 ~i 08947617 n 0000 ~i 08948704 n 0000 ~i 08953596 n 0000 ~i 08956140 n 0000 ~i 08956574 n 0000 ~i 08957993 n 0000 ~i 08958334 n 0000 ~i 08959495 n 0000 ~i 08960363 n 0000 ~i 08967688 n 0000 ~i 08969798 n 0000 ~i 08971404 n 0000 ~i 08972920 n 0000 ~i 08974604 n 0000 ~i 08975435 n 0000 ~i 08978667 n 0000 ~i 08983742 n 0000 ~i 08986066 n 0000 ~i 08986374 n 0000 ~i 08986526 n 0000 ~i 08987262 n 0000 ~i 08988861 n 0000 ~i 08992067 n 0000 ~i 08994834 n 0000 ~i 08996118 n 0000 ~i 08996714 n 0000 ~i 08997132 n 0000 ~i 08998853 n 0000 ~i 09000462 n 0000 ~i 09001007 n 0000 ~i 09008723 n 0000 ~i 09009490 n 0000 ~i 09012530 n 0000 ~i 09013353 n 0000 ~i 09016539 n 0000 ~i 09017005 n 0000 ~i 09018426 n 0000 ~i 09025189 n 0000 ~i 09025451 n 0000 ~i 09025584 n 0000 ~i 09026614 n 0000 ~i 09027089 n 0000 ~i 09030467 n 0000 ~i 09031061 n 0000 ~i 09034402 n 0000 ~i 09034967 n 0000 ~i 09035951 n 0000 ~i 09036880 n 0000 ~i 09037838 n 0000 ~i 09038439 n 0000 ~i 09040839 n 0000 ~i 09042322 n 0000 ~i 09044714 n 0000 ~i 09054480 n 0000 ~i 09056677 n 0000 ~i 09064264 n 0000 ~i 09068921 n 0000 ~i 09077821 n 0000 ~i 09078784 n 0000 ~i 09083390 n 0000 ~i 09094381 n 0000 ~i 09100080 n 0000 ~i 09100394 n 0000 ~i 09102517 n 0000 ~i 09107626 n 0000 ~i 09112123 n 0000 ~i 09138538 n 0000 ~i 09144851 n 0000 ~i 09150662 n 0000 ~i 09150863 n 0000 ~i 09151216 n 0000 ~i 09162414 n 0000 ~i 09162581 n 0000 ~i 09162803 n 0000 ~i 09164417 n 0000 ~i 09164903 n 0000 ~i 09165146 n 0000 ~i 09165294 n 0000 | a place (seaport or airport) where people and merchandise can enter or leave a country -08637771 15 n 02 entrepot 0 transshipment_center 0 001 @ 08633957 n 0000 | a port where merchandise can be imported and then exported without paying import duties; "Bahrain has been an entrepot of trade between Arabia and India since the second millennium BC" -08638033 15 n 01 free_port 1 001 @ 08633957 n 0000 | a port open on equal terms to all commercial vessels -08638141 15 n 01 home_port 0 001 @ 08633957 n 0000 | the port from which a ship originates of where it is registered -08638260 15 n 01 outport 0 002 @ 08633957 n 0000 ;r 08860123 n 0000 | a subsidiary port built in deeper water than the original port (but usually farther from the center of trade) -08638442 15 n 02 port_of_entry 0 point_of_entry 0 023 @ 08633957 n 0000 ~i 09058219 n 0000 ~i 09063673 n 0000 ~i 09065328 n 0000 ~i 09065557 n 0000 ~i 09073258 n 0000 ~i 09073697 n 0000 ~i 09074431 n 0000 ~i 09075329 n 0000 ~i 09077266 n 0000 ~i 09077410 n 0000 ~i 09085441 n 0000 ~i 09091909 n 0000 ~i 09100982 n 0000 ~i 09101753 n 0000 ~i 09119277 n 0000 ~i 09133895 n 0000 ~i 09135447 n 0000 ~i 09143321 n 0000 ~i 09145083 n 0000 ~i 09153570 n 0000 ~i 09153710 n 0000 ~i 09154178 n 0000 | a port in the United States where customs officials are stationed to oversee the entry and exit of people and merchandise -08639058 15 n 04 seaport 0 haven 0 harbor 0 harbour 0 010 @ 08633957 n 0000 #p 08633851 n 0000 %p 03216828 n 0000 %p 03638321 n 0000 ~ 08639367 n 0000 ~ 08639479 n 0000 %p 08639776 n 0000 ~i 08795492 n 0000 ~i 09080782 n 0000 ~i 09096089 n 0000 | a sheltered port where ships can take on or discharge cargo -08639367 15 n 01 coaling_station 0 001 @ 08639058 n 0000 | a seaport where ships can take on supplies of coal -08639479 15 n 01 port_of_call 0 001 @ 08639058 n 0000 | any port where a ship stops except its home port -08639586 15 n 02 free_port 0 free_zone 0 001 @ 08497294 n 0000 | an area adjoining a port where goods that are intended for reshipment can be received and stored without payment of duties -08639776 15 n 02 anchorage 0 anchorage_ground 0 005 @ 08497294 n 0000 #p 08639058 n 0000 + 01304716 v 0101 ~ 08640111 n 0000 ~ 08640300 n 0000 | place for vessels to anchor -08639951 15 n 01 treaty_port 0 001 @ 08633957 n 0000 | a port in China or Korea or Japan that once was open to foreign trade on the basis of a trading treaty -08640111 15 n 04 mooring 0 moorage 0 berth 0 slip 0 005 @ 08639776 n 0000 + 02336947 v 0301 + 01305361 v 0302 + 01305542 v 0302 + 01305542 v 0101 | a place where a craft can be made fast -08640300 15 n 02 roads 0 roadstead 0 001 @ 08639776 n 0000 | a partly sheltered anchorage -08640392 15 n 01 dockyard 0 001 @ 08633683 n 0000 | an establishment on the waterfront where vessels are built or fitted out or repaired -08640531 15 n 03 resort 0 resort_hotel 0 holiday_resort 0 006 @ 03542333 n 0000 #p 08640739 n 0000 + 01843497 v 0102 ~ 08560295 n 0000 ~ 08560415 n 0000 ~ 08652376 n 0000 | a hotel located in a resort area -08640739 15 n 03 resort_area 0 playground 0 vacation_spot 0 006 @ 08497294 n 0000 %p 04080705 n 0000 %p 08640531 n 0000 ~ 08678615 n 0000 ~i 09079001 n 0000 ~ 09125984 n 0000 | an area where many people go for recreation -08640962 15 n 01 rough 0 002 @ 08651247 n 0000 #p 03446528 n 0000 | the part of a golf course bordering the fairway where the grass is not cut short -08641113 15 n 05 vicinity 0 locality 0 neighborhood 0 neighbourhood 0 neck_of_the_woods 0 016 @ 08648322 n 0000 + 10352299 n 0402 + 09368224 n 0402 + 10352299 n 0301 + 09368224 n 0301 + 02756346 a 0201 + 02871957 a 0101 ~ 08641744 n 0000 ~ 08641944 n 0000 ~ 08642037 n 0000 ~ 08642517 n 0000 ~ 08646787 n 0000 ~i 08933084 n 0000 ~i 08933287 n 0000 ~i 08933940 n 0000 ~i 09096498 n 0000 | a surrounding or nearby region; "the plane crashed in the vicinity of Asheville"; "it is a rugged locality"; "he always blames someone else in the immediate neighborhood"; "I will drop in on you the next time I am in this neck of the woods" -08641744 15 n 01 gold_coast 1 001 @ 08641113 n 0000 | a rich neighborhood noted for expensive homes and luxurious living; usually along a coastal area; "Chicago's gold coast is along Lake Michigan" -08641944 15 n 01 'hood 0 002 @ 08641113 n 0000 ;u 07157273 n 0000 | (slang) a neighborhood -08642037 15 n 01 place 1 001 @ 08641113 n 0000 | a general vicinity; "He comes from a place near Chicago" -08642145 15 n 02 block 0 city_block 0 001 @ 08497294 n 0000 | a rectangular area in a city surrounded by streets and usually containing several buildings; "he lives in the next block" -08642331 15 n 01 neighborhood 1 001 @ 08497294 n 0000 | an area within a city or town that has some distinctive features (especially one forming a community); "an ethnic neighborhood" -08642517 15 n 01 proximity 0 002 @ 08641113 n 0000 ~ 08642632 n 0000 | the region close around a person or thing -08642632 15 n 02 presence 0 front 3 002 @ 08642517 n 0000 + 01846413 a 0101 | the immediate proximity of someone or something; "she blushed in his presence"; "he sensed the presence of danger"; "he was well behaved in front of company" -08642870 15 n 01 rendezvous 0 002 @ 08664443 n 0000 + 02487226 v 0101 | a place where people meet; "he was waiting for them at the rendezvous" -08643015 15 n 01 retreat 0 009 @ 08497294 n 0000 + 02092476 v 0101 ~ 08643267 n 0000 ~ 08643386 n 0000 ~i 08643499 n 0000 ~ 08643648 n 0000 ~ 08643729 n 0000 ~ 08643806 n 0000 ~ 08645571 n 0000 | a place of privacy; a place affording peace and quiet -08643267 15 n 01 ashram 0 002 @ 08643015 n 0000 ;r 08900535 n 0000 | (India) a place of religious retreat for Hindus -08643386 15 n 01 ashram 1 001 @ 08643015 n 0000 | a place of religious retreat modeled after the Indian ashram -08643499 15 n 01 Camp_David 0 001 @i 08643015 n 0000 | a retreat to the northwest of Washington that is used by the president of the United States -08643648 15 n 01 nook 0 001 @ 08643015 n 0000 | a sheltered and secluded place -08643729 15 n 01 nest 0 001 @ 08643015 n 0000 | a cosy or secluded retreat -08643806 15 n 01 pleasance 0 001 @ 08643015 n 0000 | a pleasant and secluded part of a garden; usually attached to a mansion -08643933 15 n 02 safety 0 refuge 0 002 @ 08497294 n 0000 ~ 08644045 n 0000 | a safe place; "He ran to safety" -08644045 15 n 02 harborage 0 harbourage 0 004 @ 08643933 n 0000 ;c 04194289 n 0000 + 02656189 v 0202 + 02656189 v 0101 | (nautical) a place of refuge (as for a ship) -08644213 15 n 01 danger 0 002 @ 08497294 n 0000 + 02058794 a 0101 | a dangerous place; "He moved out of danger" -08644327 15 n 01 danger_line 0 001 @ 08593262 n 0000 | a line beyond which it is dangerous to go -08644426 15 n 01 rookery 0 002 @ 08516885 n 0000 ~ 08583455 n 0000 | a breeding ground for gregarious birds (such as rooks) -08644552 15 n 01 Rubicon 0 001 @i 08512259 n 0000 | the boundary in ancient times between Italy and Gaul; Caesar's crossing it with his army in 49 BC was an act of war -08644722 15 n 02 country 1 rural_area 0 009 @ 08574314 n 0000 ! 08675967 n 0201 ~ 08502672 n 0000 ~ 08569482 n 0000 %p 08616050 n 0000 ~ 08645033 n 0000 ~ 08645104 n 0000 ~ 08645212 n 0000 ~ 08645318 n 0000 | an area outside of cities and towns; "his poetry celebrated the slower pace of life in the country" -08645033 15 n 01 countryside 0 001 @ 08644722 n 0000 | rural regions -08645104 15 n 01 scrubland 0 001 @ 08644722 n 0000 | an uncultivated region covered with scrub vegetation -08645212 15 n 01 weald 0 002 @ 08644722 n 0000 ;r 08860123 n 0000 | an area of open or forested country -08645318 15 n 01 wold 0 001 @ 08644722 n 0000 | a tract of open rolling country (especially upland) -08645420 15 n 01 safari_park 0 001 @ 08615149 n 0000 | an area of parkland where wild animals are kept and can be viewed by visitors driving through -08645571 15 n 02 sanctum 0 sanctum_sanctorum 0 001 @ 08643015 n 0000 | a place of inviolable privacy; "he withdrew to his sanctum sanctorum, where the children could never go" -08645749 15 n 01 sandlot 0 001 @ 08676622 n 0000 | a vacant lot used by city boys to play games -08645847 15 n 02 savanna 0 savannah 1 001 @ 08598301 n 0000 | a flat grassland in tropical or subtropical regions -08645963 15 n 01 scene 0 006 @ 08497294 n 0000 ~ 08646188 n 0000 ~ 08646306 n 0000 ~ 08646486 n 0000 ~ 08646566 n 0000 ~ 08677628 n 0000 | the place where some action occurs; "the police returned to the scene of the crime" -08646188 15 n 01 light 0 002 @ 08645963 n 0000 + 00291873 v 0101 | an illuminated area; "he stepped into the light" -08646306 15 n 03 darkness 0 dark 0 shadow 0 004 @ 08645963 n 0000 + 02768702 v 0301 + 00273082 a 0201 + 00273082 a 0101 | an unilluminated area; "he moved off into the darkness" -08646486 15 n 01 field_of_honor 0 001 @ 08645963 n 0000 | the scene of a duel -08646566 15 n 01 stage 0 002 @ 08645963 n 0000 + 01648126 v 0101 | any scene regarded as a setting for exhibiting or doing something; "All the world's a stage"--Shakespeare; "it set the stage for peaceful negotiations" -08646787 15 n 01 scenery 0 003 @ 08641113 n 0000 ~ 08646902 n 0000 ~ 08647049 n 0000 | the appearance of a place -08646902 15 n 01 landscape 0 003 @ 08646787 n 0000 + 10245863 n 0104 + 10246176 n 0101 | an expanse of scenery that can be seen in a single view -08647049 15 n 01 seascape 0 001 @ 08646787 n 0000 | a view of the sea -08647121 15 n 01 separation 0 001 @ 08652970 n 0000 | the space where a division or parting occurs; "he hid in the separation between walls" -08647264 15 n 01 schoolyard 0 001 @ 08684294 n 0000 | the yard associated with a school -08647354 15 n 02 churchyard 0 God's_acre 0 001 @ 08684294 n 0000 | the yard associated with a church -08647457 15 n 01 scour 0 004 @ 08664443 n 0000 + 01251651 v 0101 + 00455529 v 0102 + 01251228 v 0102 | a place that is scoured (especially by running water) -08647616 15 n 02 seat 1 place 3 008 @ 08652970 n 0000 ;c 07006119 n 0000 ;c 02691156 n 0000 + 02333979 v 0101 + 02334302 v 0101 + 02701962 v 0101 + 01543998 v 0101 ~ 08626758 n 0000 | a space reserved for sitting (as in a theater or on a train or airplane); "he booked their seats in advance"; "he sat in someone else's place" -08647945 15 n 01 seat 0 006 @ 08523483 n 0000 + 02384275 v 0103 ~ 08518505 n 0000 ~ 08547143 n 0000 ~ 08547300 n 0000 ~ 08586825 n 0000 | a center of authority (as a city from which authority is exercised) -08648153 15 n 02 section 0 plane_section 0 003 @ 05128519 n 0000 ;c 06004685 n 0000 ~ 08548065 n 0000 | (geometry) the area created by a plane cutting through a solid -08648322 15 n 01 section 1 005 @ 08497294 n 0000 + 01563005 v 0102 ~ 08539276 n 0000 ~ 08641113 n 0000 ~i 08724972 n 0000 | a distinct region or subdivision of a territorial or political area or community or group of people; "no section of the nation is more ardent than the South"; "there are three synagogues in the Jewish section" -08648658 15 n 01 sector 0 003 @ 08673395 n 0000 #p 08506641 n 0000 ;c 08199025 n 0000 | a portion of a military position -08648781 15 n 01 service_area 0 001 @ 08664443 n 0000 | place on a highway providing garage services and eating and toilet facilities -08648917 15 n 01 showplace 0 001 @ 08664443 n 0000 | a place that is frequently exhibited and visited for its historical interest or natural beauty -08649067 15 n 01 shrubbery 0 001 @ 08497294 n 0000 | an area where a number of shrubs are planted -08649167 15 n 01 side 1 001 @ 08593262 n 0000 | a line segment forming part of the perimeter of a plane figure; "the hypotenuse of a right triangle is always the longest side" -08649345 15 n 01 side 2 010 @ 08630039 n 0000 ~ 08649711 n 0000 ~ 08649873 n 0000 ~ 08649984 n 0000 ~ 08650073 n 0000 ~ 08650157 n 0000 ~ 08650305 n 0000 ~ 08650391 n 0000 ~ 08650507 n 0000 ~ 08650593 n 0000 | a place within a region identified relative to a center or reference location; "they always sat on the right side of the church"; "he never left my side" -08649711 15 n 01 bedside 0 001 @ 08649345 n 0000 | space by the side of a bed (especially the bed of a sick or dying person); "the doctor stood at her bedside" -08649873 15 n 01 blind_side 0 001 @ 08649345 n 0000 | the side on which your vision is limited or obstructed -08649984 15 n 01 dockside 0 001 @ 08649345 n 0000 | the region adjacent to a boat dock -08650073 15 n 01 east_side 0 001 @ 08649345 n 0000 | the side that is on the east -08650157 15 n 01 hand 0 001 @ 08649345 n 0000 | a position given by its location to the side of an object; "objections were voiced on every hand" -08650305 15 n 01 north_side 0 001 @ 08649345 n 0000 | the side that is on the north -08650391 15 n 01 shipside 0 002 @ 08649345 n 0000 #p 03933529 n 0000 | the part of a wharf that is next to a ship -08650507 15 n 01 south_side 0 001 @ 08649345 n 0000 | the side that is on the south -08650593 15 n 01 west_side 0 001 @ 08649345 n 0000 | the side that is on the west -08650677 15 n 02 scrimmage_line 0 line_of_scrimmage 0 001 @ 08593924 n 0000 | line parallel to the goal lines where football linesmen line up at the start of each play in American football; "the runner was tackled at the line of scrimmage" -08650919 15 n 02 service_line 0 baseline 1 001 @ 08593924 n 0000 | the back line bounding each end of a tennis or handball court; when serving the server must not step over this line -08651104 15 n 02 sideline 0 out_of_bounds 0 002 @ 08593924 n 0000 ~ 08654029 n 0000 | a line that marks the side boundary of a playing field -08651247 15 n 02 site 0 land_site 0 019 @ 08673395 n 0000 + 02333689 v 0103 ~ 02945594 n 0000 ~ 08496334 n 0000 ~ 08516431 n 0000 ~ 08518171 n 0000 ~ 08521623 n 0000 ~ 08550076 n 0000 ~ 08560027 n 0000 ~ 08569319 n 0000 ~ 08579780 n 0000 ~i 08580447 n 0000 ~ 08591486 n 0000 ~ 08600443 n 0000 ~ 08627161 n 0000 ~ 08640962 n 0000 ~ 08661277 n 0000 ~ 08661467 n 0000 ~i 08807554 n 0000 | the piece of land on which something is located (or is to be located); "a good site for the school" -08651735 15 n 01 skyline 1 001 @ 08612786 n 0000 | the outline of objects seen against the sky -08651832 15 n 02 slum 0 slum_area 0 005 @ 08537837 n 0000 + 02025885 a 0101 + 02492694 v 0101 ~ 08652036 n 0000 ~ 08652256 n 0000 | a district of a city marked by poverty and inferior living conditions -08652036 15 n 01 shantytown 0 001 @ 08651832 n 0000 | a city district inhabited by people living in huts and shanties -08652156 15 n 01 skid_road 0 001 @ 08627919 n 0000 | the district of a town frequented by loggers -08652256 15 n 01 skid_row 0 001 @ 08651832 n 0000 | a city district frequented by vagrants and alcoholics and addicts -08652376 15 n 01 ski_resort 0 001 @ 08640531 n 0000 | a resort with lodging and facilities for skiing -08652480 15 n 01 solitude 0 001 @ 08664443 n 0000 | a solitary place -08652551 15 n 01 southern_hemisphere 0 004 @i 08583095 n 0000 %p 09211266 n 0000 %p 09290121 n 0000 %p 09440400 n 0000 | the hemisphere to the south of the equator -08652717 15 n 01 South_Pole 0 003 @i 08620881 n 0000 #p 09198106 n 0000 + 02444627 a 0101 | the southernmost point of the Earth's axis -08652854 15 n 01 south_celestial_pole 0 001 @i 08621099 n 0000 | the celestial pole above the southern hemisphere -08652970 15 n 01 space 0 013 @ 08497294 n 0000 + 00476249 a 0102 ~ 08555569 n 0000 ~ 08555710 n 0000 ~ 08555883 n 0000 ~ 08572162 n 0000 ~ 08590909 n 0000 ~ 08611421 n 0000 ~ 08615810 n 0000 ~ 08647121 n 0000 ~ 08647616 n 0000 ~ 08662427 n 0000 ~ 08684191 n 0000 | an area reserved for some particular purpose; "the laboratory's floor space" -08653314 15 n 01 air 0 002 @ 08630039 n 0000 + 01380267 a 0101 | the region above the ground; "her hand stopped in mid air"; "he threw the ball into the air" -08653474 15 n 02 vacuum 0 vacuity 0 001 @ 08630039 n 0000 | a region that is devoid of matter -08653570 15 n 02 sphere 0 sphere_of_influence 0 001 @ 08574314 n 0000 | the geographical area in which one nation is very influential -08653706 15 n 01 stand 0 005 @ 08621598 n 0000 + 01546768 v 0101 + 02702368 v 0101 + 01546111 v 0101 ~ 08517966 n 0000 | the position where a thing or person stands -08653873 15 n 04 start 0 starting_line 0 scratch 0 scratch_line 0 001 @ 08593924 n 0000 | a line indicating the location of the start of a race or a game -08654029 15 n 01 touchline 0 001 @ 08651104 n 0000 | either of the sidelines in soccer or rugby -08654127 15 n 01 yard_line 0 001 @ 08593924 n 0000 | in football; line parallel to the goal lines indicating position on the field -08654260 15 n 01 eparchy 1 002 @ 08654360 n 0000 + 02871575 a 0101 | a province in ancient Greece -08654360 15 n 02 state 1 province 0 050 @ 08491826 n 0000 #m 08544813 n 0000 + 02785874 a 0201 + 00636547 a 0201 ~ 08542403 n 0000 ~ 08654260 n 0000 ~ 08655464 n 0000 ~i 08725336 n 0000 ~i 08725692 n 0000 ~i 08725926 n 0000 ~i 08726072 n 0000 ~i 08726305 n 0000 ~i 08726463 n 0000 ~i 08729626 n 0000 ~i 08729971 n 0000 ~i 08740230 n 0000 ~i 08740483 n 0000 ~i 08742455 n 0000 ~i 08743003 n 0000 ~i 08745249 n 0000 ~i 08745687 n 0000 ~i 08769329 n 0000 ~i 08771596 n 0000 ~ 08803382 n 0000 ~i 08816807 n 0000 ~i 08818135 n 0000 ~ 08821885 n 0000 ~ 08832447 n 0000 ~i 08846135 n 0000 ~i 08902097 n 0000 ~i 08902196 n 0000 ~i 08902321 n 0000 ~i 08904954 n 0000 ~i 08905085 n 0000 ~i 08905186 n 0000 ~i 08905313 n 0000 ~i 08905467 n 0000 ~i 08905646 n 0000 ~i 08906053 n 0000 ~i 08906272 n 0000 ~i 08909537 n 0000 ~i 08951385 n 0000 ~i 09001184 n 0000 ~i 09001373 n 0000 ~i 09001580 n 0000 ~i 09002096 n 0000 ~ 09006205 n 0000 ~i 09019355 n 0000 ~i 09019592 n 0000 ~i 09043411 n 0000 | the territory occupied by one of the constituent administrative districts of a nation; "his state is in the deep south" -08655464 15 n 01 American_state 0 055 @ 08654360 n 0000 #p 09044862 n 0000 %p 08542884 n 0000 ~ 09049909 n 0000 ~ 09050089 n 0000 ~i 09053185 n 0000 ~i 09055015 n 0000 ~i 09057311 n 0000 ~i 09059274 n 0000 ~i 09060768 n 0000 ~i 09067277 n 0000 ~i 09068444 n 0000 ~i 09069862 n 0000 ~i 09071690 n 0000 ~i 09075842 n 0000 ~i 09078231 n 0000 ~i 09081213 n 0000 ~i 09082540 n 0000 ~i 09084750 n 0000 ~i 09086173 n 0000 ~i 09087599 n 0000 ~i 09089139 n 0000 ~i 09090825 n 0000 ~i 09092497 n 0000 ~i 09093608 n 0000 ~i 09095023 n 0000 ~i 09099526 n 0000 ~i 09102016 n 0000 ~i 09103943 n 0000 ~i 09105821 n 0000 ~i 09108164 n 0000 ~i 09109444 n 0000 ~i 09110422 n 0000 ~i 09111366 n 0000 ~i 09112282 n 0000 ~i 09114696 n 0000 ~i 09117351 n 0000 ~i 09126305 n 0000 ~i 09129442 n 0000 ~i 09130076 n 0000 ~i 09131654 n 0000 ~i 09133010 n 0000 ~i 09134386 n 0000 ~i 09137032 n 0000 ~i 09137869 n 0000 ~i 09138935 n 0000 ~i 09140148 n 0000 ~i 09141526 n 0000 ~i 09147046 n 0000 ~i 09147964 n 0000 ~i 09148970 n 0000 ~i 09152944 n 0000 ~i 09155306 n 0000 ~i 09157163 n 0000 ~i 09159003 n 0000 | one of the 50 states of the United States -08656590 15 n 01 station 1 003 @ 08621598 n 0000 ;c 08191701 n 0000 + 01088923 v 0101 | (nautical) the location to which a ship or fleet is assigned for duty -08656750 15 n 01 Stonehenge 0 001 @i 08600443 n 0000 | an ancient megalithic monument in southern England; probably used for ritual purposes -08656893 15 n 01 stop 0 006 @ 08664443 n 0000 + 01862918 v 0101 ~ 08517676 n 0000 ~ 08517825 n 0000 ~ 08596214 n 0000 ~ 08657100 n 0000 | a spot where something halts or pauses; "his next stop is Atlanta" -08657100 15 n 02 stopover 0 way_station 0 001 @ 08656893 n 0000 | a stopping place on a journey; "there is a stopover to change planes in Chicago" -08657249 15 n 01 stratum 0 017 @ 08591680 n 0000 ;c 00004475 n 0000 + 02512808 v 0101 + 00506952 v 0101 ~ 05240211 n 0000 ~ 05243077 n 0000 ~ 05243259 n 0000 ~ 05243435 n 0000 ~ 05243704 n 0000 ~ 05243879 n 0000 ~ 05286412 n 0000 ~ 05604254 n 0000 ~ 08657887 n 0000 ~ 08658001 n 0000 ~ 08658118 n 0000 ~ 08659076 n 0000 ~ 09217867 n 0000 | one of several parallel layers of material arranged one on top of another (such as a layer of tissue or cells in an organism or a layer of sedimentary rock) -08657748 15 n 01 Strand 0 002 @i 04334599 n 0000 #p 08875369 n 0000 | a street in west central London famous for its theaters and hotels -08657887 15 n 02 substrate 0 substratum 0 001 @ 08657249 n 0000 | any stratum or layer lying underneath another -08658001 15 n 02 superstrate 0 superstratum 0 001 @ 08657249 n 0000 | any stratum or layer superimposed on another -08658118 15 n 01 horizon 1 004 @ 08657249 n 0000 #p 08548415 n 0000 ~ 08658309 n 0000 ~ 08658918 n 0000 | a specific layer or stratum of soil or subsoil in a vertical cross section of land -08658309 15 n 01 soil_horizon 0 005 @ 08658118 n 0000 #p 08548415 n 0000 ~i 08658469 n 0000 ~i 08658612 n 0000 ~i 08658776 n 0000 | a layer in a soil profile -08658469 15 n 02 A-horizon 0 A_horizon 0 002 @i 08658309 n 0000 %s 14908822 n 0000 | the top layer of a soil profile; usually contains humus -08658612 15 n 02 B-horizon 0 B_horizon 0 001 @i 08658309 n 0000 | immediately below the A-horizon; contains deposits of organic matter leached from surface soils -08658776 15 n 02 C-horizon 0 C_horizon 0 001 @i 08658309 n 0000 | beneath the B-horizon and above the bedrock; consisting of weathered rock -08658918 15 n 01 geological_horizon 0 001 @ 08658118 n 0000 | a layer of rock with a particular composition (especially of fossils); for dating the stratum -08659076 15 n 02 seam 0 bed 0 002 @ 08657249 n 0000 ~ 08659242 n 0000 | a stratum of ore or coal thick enough to be mined with profit; "he worked in the coal beds" -08659242 15 n 01 coal_seam 0 002 @ 08659076 n 0000 %p 08659331 n 0000 | a seam of coal -08659331 15 n 01 coalface 0 002 @ 03313456 n 0000 #p 08659242 n 0000 | the part of a coal seam that is being cut -08659446 15 n 01 field 5 004 @ 08574314 n 0000 ~ 08659663 n 0000 ~ 08659759 n 0000 ~ 08659861 n 0000 | a geographic region (land or sea) under which something valuable is found; "the diamond fields of South Africa" -08659663 15 n 01 coalfield 0 001 @ 08659446 n 0000 | a region where there is coal underground -08659759 15 n 01 gasfield 0 001 @ 08659446 n 0000 | a region where there is natural gas underground -08659861 15 n 01 oilfield 0 001 @ 08659446 n 0000 | a region rich in petroleum deposits (especially one with producing oil wells) -08659993 15 n 01 corner 1 002 @ 08620061 n 0000 + 01934205 v 0101 | the point where three areas or surfaces meet or intersect; "the corners of a cube" -08660146 15 n 02 substrate 1 substratum 1 001 @ 08660339 n 0000 | a surface on which an organism grows or is attached; "the gardener talked about the proper substrate for acid-loving plants" -08660339 15 n 01 surface 0 013 @ 08512259 n 0000 + 01990281 v 0101 ~ 03578435 n 0000 ~ 05309591 n 0000 ~ 05309725 n 0000 ~ 08510666 n 0000 ~ 08521267 n 0000 ~ 08566707 n 0000 ~ 08588152 n 0000 ~ 08613472 n 0000 ~ 08660146 n 0000 ~ 08681966 n 0000 ~ 09391386 n 0000 | the extended two-dimensional outer boundary of a three-dimensional object; "they skimmed over the surface of the water"; "a brush small enough to clean every dental surface"; "the sun has no distinct surface" -08660817 15 n 01 tank_farm 0 001 @ 08497294 n 0000 | an area used exclusively for storing petroleum in large tanks -08660934 15 n 02 target 0 target_area 0 002 @ 08664443 n 0000 ~ 08661063 n 0000 | the location of the target that is to be hit -08661063 15 n 01 ground_zero 0 001 @ 08660934 n 0000 | the target of a projectile (as a bomb or missile) -08661170 15 n 01 tax_haven 0 001 @ 08544813 n 0000 | a country or independent region where taxes are low -08661277 15 n 02 tee 0 teeing_ground 0 003 @ 08651247 n 0000 #p 03446528 n 0000 + 01499692 v 0101 | the starting place for each hole on a golf course; "they were waiting on the first tee" -08661467 15 n 03 toxic_site 0 toxic_waste_area 0 Superfund_site 0 002 @ 08651247 n 0000 ~ 08661697 n 0000 | a site where toxic wastes have been dumped and the Environmental Protection Agency has designated them to be cleaned up -08661697 15 n 01 orphan_site 0 001 @ 08661467 n 0000 | a toxic waste area where the polluter could not be identified or the polluter refused to take action or pay for the cleanup -08661878 15 n 01 Temperate_Zone 0 003 @ 08542081 n 0000 ~i 08662155 n 0000 ~i 08662288 n 0000 | the part of the Earth's surface between the Arctic Circle and the Tropic of Cancer or between the Antarctic Circle and the Tropic of Capricorn; characterized by temperate climate -08662155 15 n 01 North_Temperate_Zone 0 001 @i 08661878 n 0000 | Temperate Zone between the Arctic Circle and the Tropic of Cancer -08662288 15 n 01 South_Temperate_Zone 0 001 @i 08661878 n 0000 | Temperate Zone between the Antarctic Circle and the Tropic of Capricorn -08662427 15 n 01 terreplein 0 001 @ 08652970 n 0000 | level space where heavy guns can be mounted behind the parapet at the top of a rampart -08662570 15 n 02 testing_ground 0 laboratory 0 001 @ 08630985 n 0000 | a region resembling a laboratory inasmuch as it offers opportunities for observation and practice and experimentation; "the new nation is a testing ground for socioeconomic theories"; "Pakistan is a laboratory for studying the use of American troops to combat terrorism" -08662914 15 n 01 theme_park 0 001 @ 08494231 n 0000 | an amusement park that is organized around some theme (as the world of tomorrow) -08663051 15 n 01 three-mile_limit 0 001 @ 08592656 n 0000 | the limit of a nation's territorial waters -08663156 15 n 01 tip 0 006 @ 08566028 n 0000 + 00176021 v 0101 + 00511178 v 0101 ~ 05567117 n 0000 ~ 05577304 n 0000 ~ 12875594 n 0000 | the extreme end of something; especially something pointed -08663354 15 n 04 top 0 top_side 0 upper_side 0 upside 0 009 @ 08510666 n 0000 + 01406897 v 0101 + 02081178 v 0102 ~ 03138981 n 0000 ~ 05539012 n 0000 ~ 05539595 n 0000 ~ 08663703 n 0000 ~ 08663774 n 0000 ~ 08664365 n 0000 | the highest or uppermost side of anything; "put your books on top of the desk"; "only the top side of the box was painted" -08663703 15 n 01 desktop 0 001 @ 08663354 n 0000 | the top of a desk -08663774 15 n 01 rooftop 0 001 @ 08663354 n 0000 | the top of a (usually flat) roof -08663860 15 n 01 top 1 009 @ 08630039 n 0000 + 01321509 v 0101 + 02360497 v 0101 + 02691722 v 0101 ~ 02956247 n 0000 ~ 03727738 n 0000 ~ 05308141 n 0000 ~ 08664184 n 0000 ~ 13128003 n 0000 | the upper part of anything; "the mower cuts off the tops of the grass"; "the title should be written at the top of the first page" -08664184 15 n 01 head 0 003 @ 08663860 n 0000 + 02694287 v 0101 ! 08511570 n 0101 | the top of something; "the head of the stairs"; "the head of the page"; "the head of the list" -08664365 15 n 01 tiptop 0 001 @ 08663354 n 0000 | the extreme top or summit -08664443 15 n 03 topographic_point 0 place 0 spot 1 026 @ 08620061 n 0000 + 01711749 v 0204 + 01150559 v 0203 + 01494310 v 0203 ~ 03455033 n 0000 ~ 03605722 n 0000 ~ 08510350 n 0000 ~ 08538917 n 0000 ~ 08566884 n 0000 ~ 08584449 n 0000 ~ 08584618 n 0000 ~ 08584914 n 0000 ~ 08585056 n 0000 ~ 08598568 n 0000 ~ 08610975 n 0000 ~ 08614104 n 0000 ~ 08617963 n 0000 ~ 08642870 n 0000 ~ 08647457 n 0000 ~ 08648781 n 0000 ~ 08648917 n 0000 ~ 08652480 n 0000 ~ 08656893 n 0000 ~ 08660934 n 0000 ~ 08665101 n 0000 ~ 08688247 n 0000 | a point located with respect to surface features of some region; "this is a nice place for a picnic"; "a bright spot on a planet" -08665101 15 n 02 pool 0 puddle 0 001 @ 08664443 n 0000 | something resembling a pool of liquid; "he stood in a pool of light"; "his chair sat in a puddle of books and magazines" -08665281 15 n 03 Torrid_Zone 0 tropical_zone 0 tropics 0 002 @i 08542081 n 0000 + 02443907 a 0302 | the part of the Earth's surface between the Tropic of Cancer and the Tropic of Capricorn; characterized by a hot climate -08665504 15 n 01 town 0 291 @ 08626283 n 0000 + 08672199 n 0101 %p 08541130 n 0000 ~ 08671168 n 0000 ~ 08671293 n 0000 ~ 08671382 n 0000 ~ 08671509 n 0000 ~ 08671644 n 0000 ~ 08671822 n 0000 ~ 08672073 n 0000 ~i 08704116 n 0000 ~i 08706399 n 0000 ~i 08707035 n 0000 ~i 08707145 n 0000 ~i 08707332 n 0000 ~i 08707431 n 0000 ~i 08707587 n 0000 ~i 08744626 n 0000 ~i 08745513 n 0000 ~i 08757791 n 0000 ~i 08758172 n 0000 ~i 08762380 n 0000 ~i 08771841 n 0000 ~i 08772028 n 0000 ~i 08777919 n 0000 ~i 08780720 n 0000 ~i 08784581 n 0000 ~i 08786161 n 0000 ~i 08789447 n 0000 ~i 08789835 n 0000 ~i 08793310 n 0000 ~i 08794193 n 0000 ~i 08795232 n 0000 ~i 08807716 n 0000 ~i 08808077 n 0000 ~i 08811812 n 0000 ~i 08823156 n 0000 ~i 08824323 n 0000 ~i 08826150 n 0000 ~i 08827853 n 0000 ~i 08828013 n 0000 ~i 08830256 n 0000 ~i 08833524 n 0000 ~i 08847165 n 0000 ~i 08850663 n 0000 ~i 08852065 n 0000 ~i 08878202 n 0000 ~i 08878367 n 0000 ~i 08880529 n 0000 ~i 08880713 n 0000 ~i 08883476 n 0000 ~i 08883772 n 0000 ~i 08886037 n 0000 ~i 08888367 n 0000 ~i 08889784 n 0000 ~i 08892327 n 0000 ~i 08895148 n 0000 ~i 08895254 n 0000 ~i 08899478 n 0000 ~i 08900047 n 0000 ~i 08934313 n 0000 ~i 08934868 n 0000 ~i 08935381 n 0000 ~i 08935516 n 0000 ~i 08935674 n 0000 ~i 08935978 n 0000 ~i 08938478 n 0000 ~i 08938819 n 0000 ~i 08939028 n 0000 ~i 08954443 n 0000 ~i 08968225 n 0000 ~i 08969948 n 0000 ~i 08979740 n 0000 ~i 08994540 n 0000 ~i 09011922 n 0000 ~i 09032843 n 0000 ~i 09040299 n 0000 ~i 09040998 n 0000 ~i 09041199 n 0000 ~i 09043556 n 0000 ~i 09054110 n 0000 ~i 09054233 n 0000 ~i 09054616 n 0000 ~i 09054797 n 0000 ~i 09054915 n 0000 ~i 09056055 n 0000 ~i 09056278 n 0000 ~i 09056476 n 0000 ~i 09057930 n 0000 ~i 09058219 n 0000 ~i 09058635 n 0000 ~i 09059125 n 0000 ~i 09059741 n 0000 ~i 09059876 n 0000 ~i 09060024 n 0000 ~i 09060176 n 0000 ~i 09060480 n 0000 ~i 09060615 n 0000 ~i 09062478 n 0000 ~i 09063125 n 0000 ~i 09064080 n 0000 ~i 09064468 n 0000 ~i 09064729 n 0000 ~i 09066249 n 0000 ~i 09066375 n 0000 ~i 09066665 n 0000 ~i 09067138 n 0000 ~i 09067721 n 0000 ~i 09069072 n 0000 ~i 09069569 n 0000 ~i 09072611 n 0000 ~i 09073034 n 0000 ~i 09073138 n 0000 ~i 09073442 n 0000 ~i 09073584 n 0000 ~i 09074285 n 0000 ~i 09074431 n 0000 ~i 09074596 n 0000 ~i 09074707 n 0000 ~i 09075496 n 0000 ~i 09076533 n 0000 ~i 09076982 n 0000 ~i 09077266 n 0000 ~i 09077681 n 0000 ~i 09077977 n 0000 ~i 09078102 n 0000 ~i 09078654 n 0000 ~i 09081688 n 0000 ~i 09081830 n 0000 ~i 09081955 n 0000 ~i 09082058 n 0000 ~i 09082158 n 0000 ~i 09082273 n 0000 ~i 09082395 n 0000 ~i 09082988 n 0000 ~i 09083151 n 0000 ~i 09083255 n 0000 ~i 09083795 n 0000 ~i 09083949 n 0000 ~i 09084298 n 0000 ~i 09084615 n 0000 ~i 09085089 n 0000 ~i 09085830 n 0000 ~i 09085967 n 0000 ~i 09086509 n 0000 ~i 09086894 n 0000 ~i 09087126 n 0000 ~i 09087247 n 0000 ~i 09087352 n 0000 ~i 09087996 n 0000 ~i 09088151 n 0000 ~i 09088301 n 0000 ~i 09088556 n 0000 ~i 09088718 n 0000 ~i 09089524 n 0000 ~i 09090128 n 0000 ~i 09090271 n 0000 ~i 09091285 n 0000 ~i 09091538 n 0000 ~i 09091668 n 0000 ~i 09091774 n 0000 ~i 09092948 n 0000 ~i 09093072 n 0000 ~i 09093187 n 0000 ~i 09093315 n 0000 ~i 09094093 n 0000 ~i 09094791 n 0000 ~i 09094919 n 0000 ~i 09096903 n 0000 ~i 09097079 n 0000 ~i 09097283 n 0000 ~i 09097461 n 0000 ~i 09097599 n 0000 ~i 09098721 n 0000 ~i 09099411 n 0000 ~i 09100080 n 0000 ~i 09100982 n 0000 ~i 09101127 n 0000 ~i 09101233 n 0000 ~i 09101495 n 0000 ~i 09101639 n 0000 ~i 09101753 n 0000 ~i 09101882 n 0000 ~i 09102415 n 0000 ~i 09102655 n 0000 ~i 09102781 n 0000 ~i 09103112 n 0000 ~i 09103217 n 0000 ~i 09103803 n 0000 ~i 09104474 n 0000 ~i 09104604 n 0000 ~i 09104737 n 0000 ~i 09104894 n 0000 ~i 09105156 n 0000 ~i 09105260 n 0000 ~i 09105390 n 0000 ~i 09105494 n 0000 ~i 09106393 n 0000 ~i 09106502 n 0000 ~i 09106614 n 0000 ~i 09107305 n 0000 ~i 09107412 n 0000 ~i 09107950 n 0000 ~i 09108586 n 0000 ~i 09108884 n 0000 ~i 09109012 n 0000 ~i 09109333 n 0000 ~i 09109771 n 0000 ~i 09110099 n 0000 ~i 09112123 n 0000 ~i 09113611 n 0000 ~i 09113901 n 0000 ~i 09114128 n 0000 ~i 09115478 n 0000 ~i 09115646 n 0000 ~i 09115756 n 0000 ~i 09115886 n 0000 ~i 09116010 n 0000 ~i 09116214 n 0000 ~i 09116488 n 0000 ~i 09116599 n 0000 ~i 09118639 n 0000 ~i 09121814 n 0000 ~i 09124252 n 0000 ~i 09124732 n 0000 ~i 09124845 n 0000 ~i 09125727 n 0000 ~i 09125881 n 0000 ~i 09128040 n 0000 ~i 09128201 n 0000 ~i 09128691 n 0000 ~i 09128808 n 0000 ~i 09129187 n 0000 ~i 09130599 n 0000 ~i 09131324 n 0000 ~i 09132053 n 0000 ~i 09132163 n 0000 ~i 09132266 n 0000 ~i 09132367 n 0000 ~i 09132474 n 0000 ~i 09133364 n 0000 ~i 09133643 n 0000 ~i 09133775 n 0000 ~i 09135142 n 0000 ~i 09135246 n 0000 ~i 09135590 n 0000 ~i 09135894 n 0000 ~i 09138676 n 0000 ~i 09138808 n 0000 ~i 09139380 n 0000 ~i 09139698 n 0000 ~i 09140674 n 0000 ~i 09140781 n 0000 ~i 09140882 n 0000 ~i 09143549 n 0000 ~i 09143973 n 0000 ~i 09144484 n 0000 ~i 09145341 n 0000 ~i 09145437 n 0000 ~i 09145553 n 0000 ~i 09145751 n 0000 ~i 09145970 n 0000 ~i 09146324 n 0000 ~i 09146451 n 0000 ~i 09146584 n 0000 ~i 09146681 n 0000 ~i 09147504 n 0000 ~i 09148422 n 0000 ~i 09148529 n 0000 ~i 09148871 n 0000 ~i 09150284 n 0000 ~i 09152080 n 0000 ~i 09152218 n 0000 ~i 09153570 n 0000 ~i 09153710 n 0000 ~i 09153873 n 0000 ~i 09154905 n 0000 ~i 09155065 n 0000 ~i 09155199 n 0000 ~i 09156095 n 0000 ~i 09156395 n 0000 ~i 09157555 n 0000 ~i 09157657 n 0000 ~i 09157896 n 0000 ~i 09158649 n 0000 ~i 09158789 n 0000 ~i 09158897 n 0000 ~i 09159859 n 0000 ~i 09159958 n 0000 ~i 09160056 n 0000 ~i 09160168 n 0000 | an urban area with a fixed boundary that is smaller than a city; "they drive through town on their way to work" -08671168 15 n 01 burg 0 001 @ 08665504 n 0000 | colloquial American term for a town; "I've lived in this burg all my life" -08671293 15 n 01 boom_town 0 001 @ 08665504 n 0000 | a town enjoying sudden prosperity -08671382 15 n 02 cow_town 0 cowtown 0 001 @ 08665504 n 0000 | a small town in a cattle-raising area of western North America -08671509 15 n 01 ghost_town 0 002 @ 08665504 n 0000 ;r 08682819 n 0000 | a deserted settlement (especially in western United States) -08671644 15 n 01 hometown 0 001 @ 08665504 n 0000 | the town (or city) where you grew up or where you have your principal residence; "he never went back to his hometown again" -08671822 15 n 01 Main_Street 0 001 @ 08665504 n 0000 | any small town (or the people who inhabit it); generally used to represent parochialism and materialism (after a novel by Sinclair Lewis); "Main Street will never vote for a liberal politician" -08672073 15 n 01 market_town 0 001 @ 08665504 n 0000 | a (usually small) town where a public market is held at stated times -08672199 15 n 02 township 0 town 1 004 @ 08491826 n 0000 + 08672199 n 0201 + 08672199 n 0102 + 08665504 n 0101 | an administrative division of a county; "the town is responsible for snow removal" -08672397 15 n 01 ward 0 002 @ 08491826 n 0000 #p 08626283 n 0000 | a district into which a city or town is divided for the purpose of administration and elections -08672562 15 n 01 settlement 0 005 @ 08574314 n 0000 + 00539338 v 0101 + 00415044 v 0101 + 00413876 v 0101 ~ 08672738 n 0000 | an area where a group of families live together -08672738 15 n 02 village 0 hamlet 0 012 @ 08672562 n 0000 ~ 08673039 n 0000 ~ 08673131 n 0000 ~ 08673273 n 0000 ~i 08878885 n 0000 ~i 08895623 n 0000 ~i 08898941 n 0000 ~i 08927836 n 0000 ~i 09150448 n 0000 ~i 09151963 n 0000 ~i 09152401 n 0000 ~i 09152570 n 0000 | a settlement smaller than a town -08673039 15 n 02 kampong 0 campong 0 001 @ 08672738 n 0000 | a native village in Malaysia -08673131 15 n 01 kraal 0 001 @ 08672738 n 0000 | a village of huts for native Africans in southern Africa; usually surrounded by a stockade -08673273 15 n 01 pueblo 0 001 @ 08672738 n 0000 | a communal village built by Indians in the southwestern United States -08673395 15 n 05 tract 0 piece_of_land 0 piece_of_ground 0 parcel_of_land 0 parcel 0 041 @ 08574314 n 0000 + 02469085 v 0501 ~ 02799593 n 0000 ~ 02994219 n 0000 ~ 03654374 n 0000 ~ 03859717 n 0000 ~ 04091839 n 0000 ~ 04204619 n 0000 ~ 04611154 n 0000 ~ 08505573 n 0000 ~ 08506496 n 0000 ~ 08506641 n 0000 ~ 08507255 n 0000 ~ 08516885 n 0000 ~ 08541288 n 0000 ~ 08569998 n 0000 ~ 08570242 n 0000 ~ 08570402 n 0000 ~ 08570758 n 0000 ~ 08587985 n 0000 ~ 08598301 n 0000 ~ 08600618 n 0000 ~ 08614545 n 0000 ~ 08614632 n 0000 ~ 08614746 n 0000 ~ 08614900 n 0000 ~ 08615149 n 0000 ~ 08615374 n 0000 ~ 08619343 n 0000 ~ 08619620 n 0000 ~ 08619949 n 0000 ~ 08629199 n 0000 ~ 08648658 n 0000 ~ 08651247 n 0000 ~ 08674251 n 0000 ~ 08674464 n 0000 ~ 08674563 n 0000 ~ 08674739 n 0000 ~ 08674970 n 0000 ~ 08684294 n 0000 ~ 08684676 n 0000 | an extended area of land -08674251 15 n 01 subdivision 0 001 @ 08673395 n 0000 | an area composed of subdivided lots -08674344 15 n 02 subtropics 0 semitropics 0 002 @ 08542081 n 0000 + 02929216 a 0102 | regions adjacent to the tropics -08674464 15 n 01 mine_field 0 001 @ 08673395 n 0000 | a tract of land containing explosive mines -08674563 15 n 01 terrain 0 001 @ 08673395 n 0000 | a piece of ground having specific characteristics or military potential; "they decided to attack across the rocky terrain" -08674739 15 n 04 plot 0 plot_of_land 0 plot_of_ground 0 patch 0 003 @ 08673395 n 0000 ~ 02819474 n 0000 ~ 03417345 n 0000 | a small area of ground covered by specific vegetation; "a bean plot"; "a cabbage patch"; "a briar patch" -08674970 15 n 01 lot 0 004 @ 08673395 n 0000 + 02468965 v 0101 ~ 08615638 n 0000 ~ 08676622 n 0000 | a parcel of land having fixed boundaries; "he bought a lot on the lake" -08675145 15 n 01 tropic 0 006 @ 08595720 n 0000 + 01250835 a 0101 + 02443907 a 0101 + 02929500 a 0101 ~i 08675538 n 0000 ~i 08675665 n 0000 | either of two parallels of latitude about 23.5 degrees to the north and south of the equator representing the points farthest north and south at which the sun can shine directly overhead and constituting the boundaries of the Torrid Zone or tropics -08675538 15 n 01 Tropic_of_Cancer 0 001 @i 08675145 n 0000 | a line of latitude about 23 degrees to the north of the equator -08675665 15 n 01 Tropic_of_Capricorn 0 001 @i 08675145 n 0000 | a line of latitude about 23 degrees to the south of the equator -08675795 15 n 02 trust_territory 0 trusteeship 0 001 @ 08552138 n 0000 | a dependent country; administered by another country under the supervision of the United Nations -08675967 15 n 02 urban_area 0 populated_area 0 010 @ 08574314 n 0000 ! 08644722 n 0102 ~ 08537708 n 0000 ~ 08539717 n 0000 ~i 08565006 n 0000 %p 08615374 n 0000 ~ 08626283 n 0000 ~ 08626522 n 0000 ~ 08676253 n 0000 ~i 09103648 n 0000 | a geographical area constituting a city or town -08676253 15 n 01 barrio 0 001 @ 08675967 n 0000 | an urban area in a Spanish-speaking country -08676349 15 n 01 barrio 1 002 @ 08627919 n 0000 ;r 09044862 n 0000 | a Spanish-speaking quarter in a town or city (especially in the United States) -08676499 15 n 01 used-car_lot 0 001 @ 08615638 n 0000 | a parking lot where a dealer in used-cars displays cars for sale -08676622 15 n 02 vacant_lot 0 building_site 0 002 @ 08674970 n 0000 ~ 08645749 n 0000 | a lot on which there are no permanent buildings -08676760 15 n 01 Van_Allen_belt 0 002 @i 08509786 n 0000 #p 09270894 n 0000 | a belt of charged particles (resulting from cosmic rays) above the Earth trapped by the Earth's magnetic field -08676951 15 n 01 vanishing_point 0 001 @ 08620061 n 0000 | the point beyond which something disappears or ceases to exist -08677075 15 n 01 vantage 0 002 @ 08621598 n 0000 ~ 08677250 n 0000 | place or situation affording some advantage (especially a comprehensive view or commanding perspective) -08677250 15 n 02 vantage_point 0 viewpoint 0 001 @ 08677075 n 0000 | a place from which something can be viewed; "from that vantage point he could survey the whole valley" -08677424 15 n 02 veld 0 veldt 0 001 @ 08598301 n 0000 | elevated open grassland in southern Africa -08677525 15 n 01 venue 0 001 @ 08590369 n 0000 | in law: the jurisdiction where a trial will be held -08677628 15 n 03 venue 1 locale 0 locus 0 003 @ 08645963 n 0000 + 02695895 v 0202 + 01711749 v 0202 | the scene of any event or action (especially the place of a meeting) -08677801 15 n 04 vertex 0 peak 1 apex 0 acme 0 004 @ 08569165 n 0000 + 02440184 a 0301 ~ 03138534 n 0000 ~ 04105791 n 0000 | the highest point (of something); "at the peak of the pyramid" -08677991 15 n 01 vertical_circle 0 001 @ 08579487 n 0000 | a great circle on the celestial sphere passing through the zenith and perpendicular to the horizon -08678151 15 n 01 viceroyalty 0 001 @ 08590369 n 0000 | a district or province governed by a viceroy -08678253 15 n 01 Victoria_Land 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a mountainous area of Antarctica bounded by the Ross Sea and Wilkes Land -08678405 15 n 01 village_green 0 001 @ 08615374 n 0000 | a village park consisting of a plot of grassy land -08678515 15 n 02 warren 0 rabbit_warren 0 001 @ 08553535 n 0000 | an overcrowded residential area -08678615 15 n 03 watering_place 0 watering_hole 0 spa 0 003 @ 08640739 n 0000 %p 04022866 n 0000 ~i 08775053 n 0000 | a health resort near a spring or at the seaside -08678783 15 n 03 waterline 0 water_line 0 water_level 0 002 @ 08593262 n 0000 ~ 08596336 n 0000 | a line corresponding to the surface of the water when the vessel is afloat on an even keel; often painted on the hull of a ship -08679011 15 n 02 water_line 1 watermark 0 003 @ 08593262 n 0000 ~ 08679167 n 0000 ~ 08679269 n 0000 | a line marking the level reached by a body of water -08679167 15 n 01 high-water_mark 0 001 @ 08679011 n 0000 | a line marking the highest level reached -08679269 15 n 01 low-water_mark 0 001 @ 08679011 n 0000 | a line marking the lowest level reached -08679369 15 n 03 watershed 0 water_parting 0 divide 0 004 @ 08593262 n 0000 + 02621853 v 0302 ~ 08679562 n 0000 ~i 08679807 n 0000 | a ridge of land that separates two adjacent river systems -08679562 15 n 01 continental_divide 0 003 @ 08679369 n 0000 ;r 09372504 n 0000 %p 08679807 n 0000 | the watershed of a continent (especially the watershed of North America formed by a series of mountain ridges extending from Alaska to Mexico) -08679807 15 n 01 Great_Divide 0 002 @i 08679369 n 0000 #p 08679562 n 0000 | that part of the continental divide formed by the Rocky Mountains in the United States -08679972 15 n 02 direction 0 way 0 007 @ 08616311 n 0000 ~ 08680888 n 0000 ~ 08681222 n 0000 ~ 08681422 n 0000 ~ 08681534 n 0000 ~ 08681649 n 0000 ~ 08681777 n 0000 | a line leading to a place or point; "he looked the other direction"; "didn't know the way home" -08680237 15 n 01 trade_route 0 002 @ 08616311 n 0000 ~i 08680363 n 0000 | a route followed by traders (usually in caravans) -08680363 15 n 01 Silk_Road 0 002 @i 08680237 n 0000 %p 08725692 n 0000 | an ancient trade route between China and the Mediterranean (4,000 miles); followed by Marco Polo in the 13th century to reach Cathay -08680571 15 n 01 Northwest_Passage 0 001 @i 08616311 n 0000 | a water route between the Atlantic Ocean and the Pacific Ocean along the northern coast of North America; Europeans since the 16th century had searched for a short route to the Far East before it was successfully traversed by Roald Amundsen (1903-1906) -08680888 15 n 03 bearing 0 heading 0 aim 0 004 @ 08679972 n 0000 + 01931768 v 0207 + 01935233 v 0201 ~ 08681084 n 0000 | the direction or path along which something moves or along which it lies -08681084 15 n 01 tack 0 002 @ 08680888 n 0000 + 01946408 v 0101 | the heading or position of a vessel relative to the trim of its sails -08681222 15 n 02 course 0 trend 1 003 @ 08679972 n 0000 + 02033295 v 0204 + 02066939 v 0104 | general line of orientation; "the river takes a southern course"; "the northeastern trend of the coast" -08681422 15 n 01 east-west_direction 0 001 @ 08679972 n 0000 | in a direction parallel with lines of latitude -08681534 15 n 01 north-south_direction 0 001 @ 08679972 n 0000 | in a direction parallel with lines of longitude -08681649 15 n 01 qibla 0 001 @ 08679972 n 0000 | the direction of the Kaaba toward which Muslims turn for their daily prayers -08681777 15 n 02 tendency 0 trend 2 001 @ 08679972 n 0000 | a general direction in which something tends to move; "the shoreward tendency of the current"; "the trend of the stock market" -08681966 15 n 02 wave_front 0 wavefront 0 002 @ 08660339 n 0000 ;c 06090869 n 0000 | (physics) an imaginary surface joining all points in space that are reached at the same instant by a wave propagating through a medium -08682188 15 n 01 Wilkes_Land 0 002 @i 08574314 n 0000 #p 09198106 n 0000 | a coastal region of Antarctica on the Indian Ocean to the south of Australia; most of the territory is claimed by Australia -08682389 15 n 03 western_hemisphere 0 occident 1 New_World 0 003 @ 08583095 n 0000 %p 09372504 n 0000 %p 09440400 n 0000 | the hemisphere that includes North America and South America -08682575 15 n 02 West 0 Occident 0 006 @i 08630985 n 0000 + 00825375 a 0201 = 00825089 a 0000 %p 09275473 n 0000 %p 09372504 n 0000 %p 09440400 n 0000 | the countries of (originally) Europe and (now including) North America and South America -08682819 15 n 02 West 1 western_United_States 0 012 @i 08574314 n 0000 #p 09044862 n 0000 = 00825970 a 0000 %p 04135516 n 0000 %p 08563627 n 0000 %p 08564139 n 0000 -r 08671509 n 0000 ~i 08683177 n 0000 %p 09048303 n 0000 -r 09230202 n 0000 -r 09474895 n 0000 -r 10627714 n 0000 | the region of the United States lying to the west of the Mississippi River -08683177 15 n 01 Wild_West 0 001 @i 08682819 n 0000 | the western United States during its frontier period -08683286 15 n 02 wheatfield 0 wheat_field 0 001 @ 08579352 n 0000 | a field planted with wheat -08683383 15 n 01 whereabouts 0 001 @ 00027167 n 0000 | the general location where something is; "I questioned him about his whereabouts on the night of the crime" -08683548 15 n 02 wilderness 0 wild 0 007 @ 08574314 n 0000 + 01243102 a 0203 + 01243102 a 0103 + 02389220 a 0101 ~ 08504594 n 0000 ~ 08505018 n 0000 ~ 08505402 n 0000 | a wild and uninhabited area left in its natural condition; "it was a wilderness preserved for the hawks and mountaineers" -08683841 15 n 01 winner's_circle 0 001 @ 08497294 n 0000 | a small area at a racecourse where awards are given to the owners of winning horses -08683986 15 n 01 tape 0 001 @ 08571459 n 0000 | the finishing line for a foot race; "he broke the tape in record time" -08684107 15 n 01 wire 0 001 @ 08571459 n 0000 | the finishing line on a racetrack -08684191 15 n 01 workspace 0 001 @ 08652970 n 0000 | space allocated for your work (as in an office) -08684294 15 n 01 yard 0 005 @ 08673395 n 0000 ~ 08586978 n 0000 ~ 08647264 n 0000 ~ 08647354 n 0000 ~ 08684572 n 0000 | a tract of land enclosed for particular activities (sometimes paved and usually associated with buildings); "they opened a repair yard on the edge of town" -08684572 15 n 01 tiltyard 0 001 @ 08684294 n 0000 | (formerly) an enclosed field for tilting contests -08684676 15 n 01 yard 1 001 @ 08673395 n 0000 | a tract of land where logs are accumulated -08684769 15 n 01 zenith 1 004 @ 08520401 n 0000 #p 08521267 n 0000 + 03131633 a 0101 ! 08600760 n 0101 | the point above the observer that is directly opposite the nadir on the imaginary sphere against which celestial bodies appear to be projected -08685019 15 n 01 exaltation 0 002 @ 08520401 n 0000 #p 08685188 n 0000 | the location of a planet in the zodiac at which it is believed to exert its maximum influence -08685188 15 n 01 zodiac 0 017 @ 08630039 n 0000 #p 08521267 n 0000 + 03132560 a 0101 %p 08685019 n 0000 %p 08685677 n 0000 %p 09201840 n 0000 %p 09206133 n 0000 %p 09232687 n 0000 %p 09235713 n 0000 %p 09287613 n 0000 %p 09337833 n 0000 %p 09339109 n 0000 %p 09392824 n 0000 %p 09419112 n 0000 %p 09426143 n 0000 %p 09455306 n 0000 %p 09471976 n 0000 | a belt-shaped region in the heavens on either side to the ecliptic; divided into 12 constellations or signs for astrological purposes -08685677 15 n 06 sign_of_the_zodiac 0 star_sign 0 sign 0 mansion 0 house 0 planetary_house 0 015 @ 08630039 n 0000 #p 08685188 n 0000 ;c 05778131 n 0000 ~i 08686129 n 0000 ~i 08686332 n 0000 ~i 08686495 n 0000 ~i 08686658 n 0000 ~i 08686821 n 0000 ~i 08686979 n 0000 ~i 08687150 n 0000 ~i 08687345 n 0000 ~i 08687525 n 0000 ~i 08687709 n 0000 ~i 08687884 n 0000 ~i 08688076 n 0000 | (astrology) one of 12 equal areas into which the zodiac is divided -08686129 15 n 03 Aries 0 Aries_the_Ram 0 Ram 0 001 @i 08685677 n 0000 | the first sign of the zodiac which the sun enters at the vernal equinox; the sun is in this sign from about March 21 to April 19 -08686332 15 n 03 Taurus 0 Taurus_the_Bull 0 Bull 1 001 @i 08685677 n 0000 | the second sign of the zodiac; the sun is in this sign from about April 20 to May 20 -08686495 15 n 03 Gemini 0 Gemini_the_Twins 0 Twins 0 001 @i 08685677 n 0000 | the third sign of the zodiac; the sun is in this sign from about May 21 to June 20 -08686658 15 n 03 Cancer 0 Cancer_the_Crab 0 Crab 0 001 @i 08685677 n 0000 | the fourth sign of the zodiac; the sun is in this sign from about June 21 to July 22 -08686821 15 n 03 Leo 0 Leo_the_Lion 0 Lion 0 001 @i 08685677 n 0000 | the fifth sign of the zodiac; the sun is in this sign from about July 23 to August 22 -08686979 15 n 03 Virgo 0 Virgo_the_Virgin 0 Virgin 0 001 @i 08685677 n 0000 | the sixth sign of the zodiac; the sun is in this sign from about August 23 to September 22 -08687150 15 n 04 Libra 0 Libra_the_Balance 0 Balance 0 Libra_the_Scales 0 001 @i 08685677 n 0000 | the seventh sign of the zodiac; the sun is in this sign from about September 23 to October 22 -08687345 15 n 03 Scorpio 0 Scorpio_the_Scorpion 0 Scorpion 0 001 @i 08685677 n 0000 | the eighth sign of the zodiac; the sun is in this sign from about October 23 to November 21 -08687525 15 n 03 Sagittarius 0 Sagittarius_the_Archer 0 Archer 0 001 @i 08685677 n 0000 | the ninth sign of the zodiac; the sun is in this sign from about November 22 to December 21 -08687709 15 n 03 Capricorn 0 Capricorn_the_Goat 0 Goat 0 001 @i 08685677 n 0000 | the tenth sign of the zodiac; the sun is in this sign from about December 22 to January 19 -08687884 15 n 03 Aquarius 0 Aquarius_the_Water_Bearer 0 Water_Bearer 0 001 @i 08685677 n 0000 | the eleventh sign of the zodiac; the sun is in this sign from about January 20 to February 18 -08688076 15 n 03 Pisces 0 Pisces_the_Fishes 0 Fish 0 001 @i 08685677 n 0000 | the twelfth sign of the zodiac; the sun is in this sign from about February 19 to March 20 -08688247 15 n 01 zone 0 004 @ 08664443 n 0000 + 03132185 a 0102 + 02512150 v 0101 ~ 03587318 n 0000 | a locally circumscribed place characterized by some distinctive features -08688424 15 n 02 buffer_zone 0 buffer 0 001 @ 08509442 n 0000 | a neutral zone between two rival powers that is created in order to diminish the danger of conflict -08688590 15 n 02 combat_zone 0 combat_area 0 005 @ 08509442 n 0000 #p 08551628 n 0000 ;c 08199025 n 0000 ~ 08688779 n 0000 ~ 08689028 n 0000 | a military area where combat forces operate -08688779 15 n 01 war_zone 0 002 @ 08688590 n 0000 ;c 08199025 n 0000 | a combat zone where military operations are coordinated (especially a designated area in international waters where the rights of neutrals are not respected by nations at war) -08689028 15 n 02 bridgehead 0 foothold 0 003 @ 08688590 n 0000 ~ 08689357 n 0000 ~ 08689449 n 0000 | an area in hostile territory that has been captured and is held awaiting further troops and supplies; "an attempt to secure a bridgehead behind enemy lines"; "the only foothold left for British troops in Europe was Gibraltar" -08689357 15 n 01 airhead 0 001 @ 08689028 n 0000 | a bridgehead seized by airborne troops -08689449 15 n 01 beachhead 0 001 @ 08689028 n 0000 | a bridgehead on the enemy's shoreline seized by an amphibious operation; "the Germans were desperately trying to contain the Anzio beachhead" -08689646 15 n 02 combat_zone 1 tenderloin 0 001 @ 08537837 n 0000 | a city district known for its vice and high crime rate -08689771 15 n 01 turf 2 001 @ 08537837 n 0000 | the territory claimed by a juvenile gang as its own -08689873 15 n 01 danger_zone 0 001 @ 08509442 n 0000 | a dangerous area -08689947 15 n 02 demilitarized_zone 0 DMZ 0 001 @ 08509442 n 0000 | a zone from which military forces or operations or installations are prohibited; "tensions exist on both sides of the demilitarized zone separating North Korea and South Korea" -08690194 15 n 02 drop_zone 0 dropping_zone 0 002 @ 08509442 n 0000 ;c 08199025 n 0000 | an agreed area where military supplies are dropped to ground troops -08690352 15 n 02 kill_zone 0 killing_zone 0 001 @ 08509442 n 0000 | an area where a battle has occurred with many fatalities -08690479 15 n 01 killing_field 0 001 @ 08574314 n 0000 | (usually plural) an area where many people have died (usually by massacre or genocide during war or violent civil disturbance) -08690665 15 n 01 enterprise_zone 0 001 @ 08537837 n 0000 | a city district where development receives special tax advantages -08690792 15 n 02 outskirt 0 fringe 0 002 @ 08537837 n 0000 %p 08554440 n 0000 | a part of the city far removed from the center; "they built a factory on the outskirts of the city" -08690974 15 n 01 strike_zone 0 002 @ 08509442 n 0000 ;c 00471613 n 0000 | (baseball) the area over home plate between a batter's knees and shoulders through which a pitch must pass in order to be called a strike -08691188 15 n 01 tidal_zone 0 001 @ 08509442 n 0000 | an area subject to tidal action -08691276 15 n 01 time_zone 0 001 @ 08541841 n 0000 | any of the 24 regions of the globe (loosely divided by longitude) throughout which the same standard time is used -08691445 15 n 01 transit_zone 0 001 @ 08541841 n 0000 | a six million square mile area that includes the Caribbean and the Gulf of Mexico and the eastern Pacific Ocean; includes the principal routes used by drug smugglers -08691669 15 n 01 national_capital 0 182 @ 08518505 n 0000 @ 08524735 n 0000 ~i 08700133 n 0000 ~i 08704237 n 0000 ~i 08705091 n 0000 ~i 08706058 n 0000 ~i 08708304 n 0000 ~i 08710325 n 0000 ~i 08712876 n 0000 ~i 08714458 n 0000 ~i 08715777 n 0000 ~i 08716517 n 0000 ~i 08717059 n 0000 ~i 08717510 n 0000 ~i 08718094 n 0000 ~i 08718801 n 0000 ~i 08719465 n 0000 ~i 08720280 n 0000 ~i 08721559 n 0000 ~i 08724726 n 0000 ~i 08730895 n 0000 ~i 08732979 n 0000 ~i 08734250 n 0000 ~i 08735164 n 0000 ~i 08736376 n 0000 ~i 08736956 n 0000 ~i 08737376 n 0000 ~i 08738014 n 0000 ~i 08738531 n 0000 ~i 08739047 n 0000 ~i 08739512 n 0000 ~i 08744236 n 0000 ~i 08750612 n 0000 ~i 08751885 n 0000 ~i 08752293 n 0000 ~i 08754238 n 0000 ~i 08756511 n 0000 ~i 08757132 n 0000 ~i 08757926 n 0000 ~i 08759263 n 0000 ~i 08759684 n 0000 ~i 08760228 n 0000 ~i 08761868 n 0000 ~i 08762823 n 0000 ~i 08763387 n 0000 ~i 08763765 n 0000 ~i 08765069 n 0000 ~i 08766236 n 0000 ~i 08769645 n 0000 ~i 08777233 n 0000 ~i 08777815 n 0000 ~i 08778401 n 0000 ~i 08779375 n 0000 ~i 08780018 n 0000 ~i 08785343 n 0000 ~i 08794798 n 0000 ~i 08806897 n 0000 ~i 08814474 n 0000 ~i 08815346 n 0000 ~i 08817418 n 0000 ~i 08818736 n 0000 ~i 08819128 n 0000 ~i 08827486 n 0000 ~i 08832269 n 0000 ~i 08837457 n 0000 ~i 08840657 n 0000 ~i 08840964 n 0000 ~i 08845053 n 0000 ~i 08846324 n 0000 ~i 08847570 n 0000 ~i 08848568 n 0000 ~i 08849226 n 0000 ~i 08850450 n 0000 ~i 08852685 n 0000 ~i 08853308 n 0000 ~i 08855308 n 0000 ~i 08873622 n 0000 ~i 08889191 n 0000 ~i 08898633 n 0000 ~i 08903049 n 0000 ~i 08906809 n 0000 ~i 08907377 n 0000 ~i 08909719 n 0000 ~i 08911421 n 0000 ~i 08914193 n 0000 ~i 08923348 n 0000 ~i 08927548 n 0000 ~i 08928582 n 0000 ~i 08929555 n 0000 ~i 08932568 n 0000 ~i 08945705 n 0000 ~i 08946042 n 0000 ~i 08946564 n 0000 ~i 08947180 n 0000 ~i 08947617 n 0000 ~i 08948027 n 0000 ~i 08948704 n 0000 ~i 08949737 n 0000 ~i 08952423 n 0000 ~i 08953596 n 0000 ~i 08955397 n 0000 ~i 08955951 n 0000 ~i 08957064 n 0000 ~i 08957806 n 0000 ~i 08959105 n 0000 ~i 08959495 n 0000 ~i 08960099 n 0000 ~i 08960843 n 0000 ~i 08961402 n 0000 ~i 08961852 n 0000 ~i 08962465 n 0000 ~i 08963095 n 0000 ~i 08963969 n 0000 ~i 08965475 n 0000 ~i 08965958 n 0000 ~i 08966647 n 0000 ~i 08967176 n 0000 ~i 08967688 n 0000 ~i 08968125 n 0000 ~i 08969123 n 0000 ~i 08970445 n 0000 ~i 08971554 n 0000 ~i 08973202 n 0000 ~i 08973647 n 0000 ~i 08974171 n 0000 ~i 08975435 n 0000 ~i 08977035 n 0000 ~i 08978667 n 0000 ~i 08979878 n 0000 ~i 08981746 n 0000 ~i 08983105 n 0000 ~i 08986066 n 0000 ~i 08987262 n 0000 ~i 08988068 n 0000 ~i 08988861 n 0000 ~i 08989556 n 0000 ~i 08991752 n 0000 ~i 08992508 n 0000 ~i 08993037 n 0000 ~i 08993871 n 0000 ~i 08996118 n 0000 ~i 08996714 n 0000 ~i 08997132 n 0000 ~i 08997801 n 0000 ~i 08998451 n 0000 ~i 08998853 n 0000 ~i 09000272 n 0000 ~i 09004068 n 0000 ~i 09011518 n 0000 ~i 09012530 n 0000 ~i 09013353 n 0000 ~i 09014273 n 0000 ~i 09014850 n 0000 ~i 09015907 n 0000 ~i 09018030 n 0000 ~i 09018426 n 0000 ~i 09019194 n 0000 ~i 09020119 n 0000 ~i 09020792 n 0000 ~i 09021313 n 0000 ~i 09021812 n 0000 ~i 09022538 n 0000 ~i 09024467 n 0000 ~i 09030210 n 0000 ~i 09031061 n 0000 ~i 09031501 n 0000 ~i 09032321 n 0000 ~i 09033936 n 0000 ~i 09034967 n 0000 ~i 09036880 n 0000 ~i 09037838 n 0000 ~i 09040601 n 0000 ~i 09043926 n 0000 ~i 09044536 n 0000 ~i 09070793 n 0000 ~i 09160571 n 0000 ~i 09160968 n 0000 ~i 09162276 n 0000 ~i 09164095 n 0000 ~i 09165464 n 0000 ~i 09165996 n 0000 ~i 09167505 n 0000 | the capital city of a nation -08695198 15 n 01 provincial_capital 0 014 @ 08518505 n 0000 @ 08524735 n 0000 ~i 08822742 n 0000 ~i 08823314 n 0000 ~i 08824152 n 0000 ~i 08824654 n 0000 ~i 08825321 n 0000 ~i 08827002 n 0000 ~i 08828432 n 0000 ~i 08828928 n 0000 ~i 08829317 n 0000 ~i 08830005 n 0000 ~i 08830882 n 0000 ~i 08835058 n 0000 | the capital city of a province -08695539 15 n 01 state_capital 0 058 @ 08518505 n 0000 @ 08524735 n 0000 ~i 08832877 n 0000 ~i 08833295 n 0000 ~i 08833809 n 0000 ~i 08834280 n 0000 ~i 08834543 n 0000 ~i 08834806 n 0000 ~i 09053801 n 0000 ~i 09055786 n 0000 ~i 09058376 n 0000 ~i 09060280 n 0000 ~i 09064966 n 0000 ~i 09068107 n 0000 ~i 09069190 n 0000 ~i 09070233 n 0000 ~i 09075170 n 0000 ~i 09076675 n 0000 ~i 09078784 n 0000 ~i 09081560 n 0000 ~i 09084483 n 0000 ~i 09085593 n 0000 ~i 09086995 n 0000 ~i 09088815 n 0000 ~i 09089631 n 0000 ~i 09091398 n 0000 ~i 09092822 n 0000 ~i 09094217 n 0000 ~i 09095751 n 0000 ~i 09101318 n 0000 ~i 09103377 n 0000 ~i 09105003 n 0000 ~i 09106912 n 0000 ~i 09109180 n 0000 ~i 09109882 n 0000 ~i 09110784 n 0000 ~i 09111754 n 0000 ~i 09113022 n 0000 ~i 09116318 n 0000 ~i 09118313 n 0000 ~i 09127844 n 0000 ~i 09129719 n 0000 ~i 09131001 n 0000 ~i 09132597 n 0000 ~i 09134202 n 0000 ~i 09135733 n 0000 ~i 09137451 n 0000 ~i 09138358 n 0000 ~i 09139508 n 0000 ~i 09141297 n 0000 ~i 09143017 n 0000 ~i 09147737 n 0000 ~i 09148259 n 0000 ~i 09150047 n 0000 ~i 09154000 n 0000 ~i 09155798 n 0000 ~i 09158024 n 0000 ~i 09159675 n 0000 | the capital city of a political subdivision of a country -08696737 15 n 01 Continent 0 003 @i 09346120 n 0000 #p 09275473 n 0000 + 02886263 a 0101 | the European mainland; "Englishmen like to visit the Continent but they wouldn't like to live there" -08696931 15 n 02 European_country 0 European_nation 0 041 @ 08544813 n 0000 #p 09275473 n 0000 ~ 08697827 n 0000 ~i 08698038 n 0000 ~ 08698126 n 0000 ~i 08757264 n 0000 ~i 08759013 n 0000 ~i 08766988 n 0000 ~i 08768647 n 0000 ~i 08768881 n 0000 ~i 08779504 n 0000 ~i 08801678 n 0000 ~i 08813978 n 0000 ~i 08815513 n 0000 ~i 08815858 n 0000 ~i 08816236 n 0000 ~i 08817630 n 0000 ~i 08818444 n 0000 ~i 08845555 n 0000 ~i 08849549 n 0000 ~i 08849753 n 0000 ~i 08871007 n 0000 ~i 08887841 n 0000 ~i 08888676 n 0000 ~i 08890097 n 0000 ~i 08929922 n 0000 ~i 08949093 n 0000 ~i 08952190 n 0000 ~i 08953324 n 0000 ~i 08960548 n 0000 ~i 08960987 n 0000 ~i 08967868 n 0000 ~i 08982587 n 0000 ~i 08984788 n 0000 ~i 08992181 n 0000 ~i 09011151 n 0000 ~i 09014586 n 0000 ~i 09023118 n 0000 ~i 09023321 n 0000 ~i 09031653 n 0000 ~i 09161090 n 0000 | any one of the countries occupying the European continent -08697827 15 n 02 Scandinavian_country 0 Scandinavian_nation 0 005 @ 08696931 n 0000 #p 09275473 n 0000 ~i 08761244 n 0000 ~i 08764107 n 0000 ~i 08765890 n 0000 | any one of the countries occupying Scandinavia -08698038 15 n 01 Balkans 0 001 @i 08696931 n 0000 | the Balkan countries collectively -08698126 15 n 03 Balkan_country 0 Balkan_nation 0 Balkan_state 0 007 @ 08696931 n 0000 #p 08713772 n 0000 ~i 08704822 n 0000 ~i 08714132 n 0000 ~i 08780881 n 0000 ~ 08782319 n 0000 ~i 08961630 n 0000 | any one of the countries on the Balkan Peninsula -08698379 15 n 02 African_country 0 African_nation 0 049 @ 08544813 n 0000 #p 09189411 n 0000 ~i 08699654 n 0000 ~i 08705397 n 0000 ~i 08707917 n 0000 ~i 08716219 n 0000 ~i 08717209 n 0000 ~i 08718577 n 0000 ~i 08720037 n 0000 ~i 08734044 n 0000 ~i 08734385 n 0000 ~i 08736517 n 0000 ~i 08759420 n 0000 ~i 08759986 n 0000 ~i 08762495 n 0000 ~i 08763500 n 0000 ~i 08777544 n 0000 ~i 08778061 n 0000 ~i 08815046 n 0000 ~i 08852389 n 0000 ~i 08897065 n 0000 ~i 08928193 n 0000 ~i 08945529 n 0000 ~i 08945821 n 0000 ~i 08946187 n 0000 ~i 08947319 n 0000 ~i 08947772 n 0000 ~i 08958830 n 0000 ~i 08959254 n 0000 ~i 08959683 n 0000 ~i 08962187 n 0000 ~i 08962610 n 0000 ~i 08965598 n 0000 ~i 08966820 n 0000 ~i 08969291 n 0000 ~i 08971025 n 0000 ~i 08973330 n 0000 ~i 08973776 n 0000 ~i 08995862 n 0000 ~i 08996871 n 0000 ~i 08998560 n 0000 ~i 08999482 n 0000 ~i 09029457 n 0000 ~i 09031233 n 0000 ~i 09034550 n 0000 ~i 09037394 n 0000 ~i 09043052 n 0000 ~i 09165613 n 0000 ~i 09167101 n 0000 | any one of the countries occupying the African continent -08699426 15 n 01 East_Africa 0 008 @i 08574314 n 0000 #p 09189411 n 0000 + 02941957 a 0101 %p 08716219 n 0000 %p 08815046 n 0000 %p 08928193 n 0000 %p 09034550 n 0000 %p 09043052 n 0000 | a geographical area in eastern Africa -08699654 15 n 03 Namibia 0 Republic_of_Namibia 0 South_West_Africa 0 009 @i 08698379 n 0000 #p 09189411 n 0000 ;r 09189411 n 0000 + 03088838 a 0101 %p 08700133 n 0000 %p 09170294 n 0000 %p 09171204 n 0000 %m 09692915 n 0000 %m 09723819 n 0000 | a republic in southwestern Africa on the south Atlantic coast (formerly called South West Africa); achieved independence from South Africa in 1990; the greater part of Namibia forms part of the high Namibian plateau of South Africa -08700133 15 n 01 Windhoek 0 002 @i 08691669 n 0000 #p 08699654 n 0000 | capital of Namibia in the center of the country -08700255 15 n 02 Asian_country 0 Asian_nation 0 042 @ 08544813 n 0000 #p 09207288 n 0000 ~i 08703454 n 0000 ~i 08715390 n 0000 ~i 08716738 n 0000 ~i 08723006 n 0000 ~i 08848094 n 0000 ~i 08848731 n 0000 ~i 08852209 n 0000 ~i 08900535 n 0000 ~i 08906374 n 0000 ~i 08906952 n 0000 ~i 08910668 n 0000 ~i 08913434 n 0000 ~i 08921850 n 0000 ~i 08927186 n 0000 ~i 08929243 n 0000 ~i 08955082 n 0000 ~i 08955626 n 0000 ~i 08956760 n 0000 ~i 08957381 n 0000 ~i 08963369 n 0000 ~i 08968879 n 0000 ~i 08975106 n 0000 ~i 08975902 n 0000 ~i 08986905 n 0000 ~i 08993288 n 0000 ~i 08997487 n 0000 ~i 09017526 n 0000 ~i 09018162 n 0000 ~i 09018848 n 0000 ~i 09019726 n 0000 ~i 09020440 n 0000 ~i 09020961 n 0000 ~i 09022265 n 0000 ~i 09033333 n 0000 ~i 09036452 n 0000 ~i 09044190 n 0000 ~i 09163192 n 0000 ~i 09163584 n 0000 ~i 09163844 n 0000 ~i 09164561 n 0000 | any one of the nations occupying the Asian continent -08701161 15 n 01 Cappadocia 0 003 @i 08574314 n 0000 #p 08701942 n 0000 + 02678371 a 0101 | an ancient country is eastern Asia Minor -08701296 15 n 01 Galatia 0 002 @i 08574314 n 0000 #p 08701942 n 0000 | an ancient country in central Asia Minor -08701410 15 n 01 Phrygia 0 003 @i 08574314 n 0000 #p 08701942 n 0000 %p 08701555 n 0000 | an ancient country in western and central Asia Minor -08701555 15 n 01 Colossae 0 002 @i 08524735 n 0000 #p 08701410 n 0000 | an ancient city in south western Phrygia in Asia Minor; site of an early Christian Church -08701719 15 n 01 Pontus 0 002 @i 08574314 n 0000 #p 08701942 n 0000 | an ancient region of northern Asia Minor on the Black Sea; it reached its height under Mithridates VI but was later incorporated into the Roman Empire -08701942 15 n 02 Asia_Minor 0 Anatolia 0 018 @i 09388848 n 0000 #p 09207288 n 0000 -r 01279866 n 0000 -r 01281427 n 0000 -r 01281638 n 0000 %p 08503921 n 0000 %p 08701161 n 0000 %p 08701296 n 0000 %p 08701410 n 0000 %p 08701719 n 0000 %p 08784104 n 0000 %p 08787878 n 0000 %p 08788004 n 0000 %p 08788326 n 0000 %p 08788887 n 0000 %p 09039411 n 0000 %p 09042924 n 0000 -r 10286282 n 0000 | a peninsula in southwestern Asia that forms the Asian part of Turkey -08702402 15 n 02 South_American_country 0 South_American_nation 0 014 @ 08544813 n 0000 #p 09440400 n 0000 ~i 08711974 n 0000 ~i 08720481 n 0000 ~i 08732116 n 0000 ~i 08776687 n 0000 ~i 08852843 n 0000 ~i 08853741 n 0000 ~i 08948346 n 0000 ~i 08978343 n 0000 ~i 08979054 n 0000 ~i 09030752 n 0000 ~i 09160295 n 0000 ~i 09161803 n 0000 | any one of the countries occupying the South American continent -08702805 15 n 02 North_American_country 0 North_American_nation 0 006 @ 08544813 n 0000 #p 09372504 n 0000 ~ 08703035 n 0000 ~i 08740875 n 0000 ~i 08820121 n 0000 ~i 09044862 n 0000 | any country on the North American continent -08703035 15 n 02 Central_American_country 0 Central_American_nation 0 009 @ 08702805 n 0000 #p 08735705 n 0000 ~i 08736107 n 0000 ~i 08737041 n 0000 ~i 08737521 n 0000 ~i 08737716 n 0000 ~i 08738272 n 0000 ~i 08738820 n 0000 ~i 08739206 n 0000 | any one of the countries occupying Central America; these countries (except for Belize and Costa Rica) are characterized by low per capita income and unstable governments -08703454 15 n 02 Afghanistan 0 Islamic_State_of_Afghanistan 0 014 @i 08700255 n 0000 #p 09207288 n 0000 + 03003928 a 0102 -r 08013845 n 0000 -r 08322187 n 0000 %p 08703972 n 0000 %p 08704116 n 0000 %p 08704237 n 0000 %p 08704409 n 0000 %p 08704554 n 0000 %p 09304164 n 0000 %p 09325530 n 0000 %p 09384223 n 0000 %m 09689435 n 0000 | a mountainous landlocked country in central Asia; bordered by Iran to the west and Russia to the north and Pakistan to the east and south; "Soviet troops invaded Afghanistan in 1979" -08703972 15 n 01 Herat 0 002 @i 08524735 n 0000 #p 08703454 n 0000 | a city in northwestern Afghanistan on the site of several ancient cities -08704116 15 n 01 Jalalabad 0 002 @i 08665504 n 0000 #p 08703454 n 0000 | a town in eastern Afghanistan (east of Kabul) -08704237 15 n 02 Kabul 0 capital_of_Afghanistan 0 002 @i 08691669 n 0000 #p 08703454 n 0000 | the capital and largest city of Afghanistan; located in eastern Afghanistan -08704409 15 n 02 Kandahar 0 Qandahar 0 002 @i 08524735 n 0000 #p 08703454 n 0000 | a city in southern Afghanistan; an important trading center -08704554 15 n 01 Mazar-i-Sharif 0 002 @i 08524735 n 0000 #p 08703454 n 0000 | a city in northern Afghanistan -08704665 15 n 01 Illyria 0 001 @i 08574314 n 0000 | an uncertain region on the east shore of the Adriatic where an ancient Indo-European people once lived -08704822 15 n 02 Albania 0 Republic_of_Albania 0 007 @i 08698126 n 0000 #p 08713772 n 0000 + 02609813 a 0101 %p 08705091 n 0000 %p 08705251 n 0000 %p 08787466 n 0000 %m 09689958 n 0000 | a republic in southeastern Europe on the Adriatic coast of the Balkan Peninsula -08705091 15 n 02 Tirana 0 Albanian_capital 0 002 @i 08691669 n 0000 #p 08704822 n 0000 | the capital and largest city of Albania in the center of the country -08705251 15 n 02 Durres 0 Durazzo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08704822 n 0000 | port city in western Albania on the Adriatic -08705397 15 n 03 Algeria 0 Algerie 0 Democratic_and_Popular_Republic_of_Algeria 0 020 @i 08698379 n 0000 #p 08597323 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 + 02977826 a 0101 -r 08016035 n 0000 -r 08044265 n 0000 %p 08706058 n 0000 %p 08706247 n 0000 %p 08706399 n 0000 %p 08706502 n 0000 %p 08706663 n 0000 %p 08706823 n 0000 %p 08707035 n 0000 %p 08707145 n 0000 %p 08707332 n 0000 %p 08707431 n 0000 %p 08707587 n 0000 %p 09210346 n 0000 %m 09690083 n 0000 | a republic in northwestern Africa on the Mediterranean Sea with a population that is predominantly Sunni Muslim; colonized by France in the 19th century but gained autonomy in the early 1960s -08706058 15 n 02 Algiers 0 Algerian_capital 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08705397 n 0000 | an ancient port on the Mediterranean; the capital and largest city of Algeria -08706247 15 n 01 Annaba 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08705397 n 0000 | a port city of northeastern Algeria near the Tunisian border -08706399 15 n 01 Batna 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | a town in north central Algeria -08706502 15 n 01 Blida 0 002 @i 08524735 n 0000 #p 08705397 n 0000 | a city in northern Algeria at the foot of the Atlas Mountains to the southwest of Algiers -08706663 15 n 01 Oran 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08705397 n 0000 | a port city in northwestern Algeria and the country's 2nd largest city -08706823 15 n 01 Constantine 0 002 @i 08524735 n 0000 #p 08705397 n 0000 | a walled city in northeastern Algeria to the east of Algiers; was destroyed in warfare in the 4th century and rebuilt by Constantine I -08707035 15 n 01 Djanet 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | a desert town in southeastern Algeria -08707145 15 n 02 Hippo 0 Hippo_Regius 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | an ancient Numidian town in northwestern Africa adjoining present-day Annaba in northeastern Algeria -08707332 15 n 01 Reggane 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | a town in central Algeria -08707431 15 n 01 Timgad 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | an ancient town founded by the Romans; noted for extensive and well-preserved ruins -08707587 15 n 01 Timimoun 0 002 @i 08665504 n 0000 #p 08705397 n 0000 | a town in central Algeria in the Atlas Mountains -08707710 15 n 01 Numidia 0 003 @i 08558155 n 0000 #p 09178141 n 0000 + 02770229 a 0101 | an ancient kingdom (later a Roman province) in North Africa in an area corresponding roughly to present-day Algeria -08707917 15 n 02 Angola 0 Republic_of_Angola 0 010 @i 08698379 n 0000 #p 09189411 n 0000 + 03042812 a 0101 %p 08708304 n 0000 %p 08708481 n 0000 %p 08708609 n 0000 %p 09324474 n 0000 %p 09483129 n 0000 %m 09690621 n 0000 %m 09692915 n 0000 | a republic in southwestern Africa on the Atlantic Ocean; achieved independence from Portugal in 1975 and was the scene of civil war until 1990 -08708304 15 n 02 Luanda 0 Angolan_capital 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08707917 n 0000 | port city on Atlantic coast; the capital and largest city of Angola -08708481 15 n 02 Huambo 0 Nova_Lisboa 0 002 @i 08524735 n 0000 #p 08707917 n 0000 | a city in the mountains in western Angola -08708609 15 n 01 Lobito 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08707917 n 0000 | a seaport on the Atlantic coast of Angola -08708742 15 n 01 Anguilla 0 003 @i 09316454 n 0000 #p 08747054 n 0000 + 03042986 a 0101 | a British colony in the West Indies -08708870 15 n 01 Aran_Islands 0 003 @i 09316454 n 0000 #p 09286478 n 0000 #p 08859173 n 0000 | three small islands belonging to Ireland at the entrance to Galway Bay -08709038 15 n 01 Caribbean 0 015 @i 08574314 n 0000 %p 08709704 n 0000 %p 08747054 n 0000 %p 08750334 n 0000 %p 08751494 n 0000 %p 08752021 n 0000 %p 08752974 n 0000 %p 08753933 n 0000 %p 08755436 n 0000 %p 08756202 n 0000 %p 08763193 n 0000 %p 08847268 n 0000 %p 08987423 n 0000 %p 08988609 n 0000 %p 08989031 n 0000 | region including the Caribbean Islands -08709399 15 n 01 Cayman_Islands 0 003 @i 08499840 n 0000 #p 08747054 n 0000 %p 08709593 n 0000 | a British colony in the Caribbean to the northwest of Jamaica; an international banking center -08709593 15 n 01 George_Town 0 002 @i 08518505 n 0000 #p 08709399 n 0000 | the capital of the Cayman Islands -08709704 15 n 01 Antigua_and_Barbuda 0 008 @i 08544813 n 0000 #p 08749447 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08709945 n 0000 %p 08710113 n 0000 %p 08710219 n 0000 %p 08710325 n 0000 | a country in the northern Leeward Islands -08709945 15 n 01 Antigua 0 004 @i 09316454 n 0000 #p 08709704 n 0000 + 03043667 a 0101 %m 09691024 n 0000 | the largest of the islands comprising Antigua and Barbuda -08710113 15 n 01 Barbuda 0 002 @i 09316454 n 0000 #p 08709704 n 0000 | an island in Antigua and Barbuda -08710219 15 n 01 Redonda 0 002 @i 09316454 n 0000 #p 08709704 n 0000 | an island in Antigua and Barbuda -08710325 15 n 03 St._John's 1 Saint_John's 1 capital_of_Antigua_and_Barbuda 0 002 @i 08691669 n 0000 #p 08709704 n 0000 | the capital and largest city of Antigua and Barbuda; located on the island of Antigua -08710535 15 n 01 Bengal 0 001 @i 08574314 n 0000 | a region whose eastern part is now Bangladesh and whose western part is included in India -08710678 15 n 02 Bermuda 0 Bermudas 0 003 @i 09316454 n 0000 #p 09209263 n 0000 %m 09694392 n 0000 | a group of islands in the Atlantic off the Carolina coast; British colony; a popular resort -08710873 15 n 01 Hamilton 1 001 @i 08524735 n 0000 | the capital of Bermuda -08710951 15 n 01 Bermuda_Triangle 0 002 @i 08497294 n 0000 #p 09209263 n 0000 | an area in the western Atlantic Ocean where many ships and planes are supposed to have been mysteriously lost -08711143 15 n 01 Bouvet_Island 0 002 @i 09316454 n 0000 #p 09440948 n 0000 | an island belonging to Norway in the South Atlantic near the Antarctic Circle -08711300 15 n 01 Montserrat 0 004 @i 09316454 n 0000 #p 08747054 n 0000 + 03088038 a 0101 %m 09723228 n 0000 | a volcanic island in the Caribbean; in the West Indies -08711468 15 n 01 Patagonia 0 004 @i 08574314 n 0000 #p 08711974 n 0000 #p 08720481 n 0000 %p 09171984 n 0000 | region in southern South America between the Andes and the South Atlantic -08711655 15 n 01 Triple_Frontier 0 004 @i 08501114 n 0000 #p 08711974 n 0000 #p 08853741 n 0000 #p 08978343 n 0000 | the border area where Argentina and Brazil and Paraguay meet; an active South American center for contraband and drug trafficking and money laundering; a suspected locale for Islamic extremist groups -08711974 15 n 02 Argentina 0 Argentine_Republic 0 031 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02966972 a 0102 %p 08711468 n 0000 %p 08711655 n 0000 %p 08712876 n 0000 %p 08713136 n 0000 %p 08713285 n 0000 %p 08713405 n 0000 %p 08713539 n 0000 %p 08713655 n 0000 %p 08722394 n 0000 %p 09187204 n 0000 %p 09196611 n 0000 %p 09226591 n 0000 %p 09230500 n 0000 %p 09272773 n 0000 %p 09272927 n 0000 %p 09285828 n 0000 %p 09309456 n 0000 %p 09336702 n 0000 %p 09341673 n 0000 %p 09351257 n 0000 %p 09364426 n 0000 %p 09377657 n 0000 %p 09384921 n 0000 %p 09392961 n 0000 %p 09410558 n 0000 %p 09463721 n 0000 %m 09691149 n 0000 | a republic in southern South America; second largest country in South America -08712698 15 n 01 Bahia_Blanca 0 002 @i 08524735 n 0000 @i 08633957 n 0000 | a port city in eastern Argentina to the southwest of Buenos Aires on an inlet of the Atlantic Ocean -08712876 15 n 02 Buenos_Aires 0 capital_of_Argentina 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08711974 n 0000 | capital and largest city of Argentina; located in eastern Argentina near Uruguay; Argentina's chief port and industrial and cultural center -08713136 15 n 02 Cordoba 1 Cordova 1 002 @i 08524735 n 0000 #p 08711974 n 0000 | a city in central Argentina; site of a university founded in 1613 -08713285 15 n 01 Moron 0 002 @i 08524735 n 0000 #p 08711974 n 0000 | a city in Argentina, to the west of Buenos Aires -08713405 15 n 01 Rosario 0 002 @i 08524735 n 0000 #p 08711974 n 0000 | a port city on the Parana River in eastern central Argentina -08713539 15 n 01 Vicente_Lopez 0 002 @i 08524735 n 0000 #p 08711974 n 0000 | an industrial suburb of Buenos Aires -08713655 15 n 01 pampas 0 002 @i 08574314 n 0000 #p 08711974 n 0000 | the vast grassy plains of northern Argentina -08713772 15 n 02 Balkan_Peninsula 0 Balkans 1 012 @i 09388848 n 0000 #p 09275473 n 0000 %p 01302935 n 0000 %p 08698126 n 0000 %p 08704822 n 0000 %p 08815858 n 0000 %p 08915372 n 0000 %p 08915784 n 0000 %p 08961630 n 0000 %p 09039411 n 0000 %p 09213076 n 0000 %m 09709332 n 0000 | a large peninsula in southeastern Europe containing the Balkan Mountain Range -08714132 15 n 02 Bulgaria 0 Republic_of_Bulgaria 0 010 @i 08698126 n 0000 #p 09275473 n 0000 #m 08174398 n 0000 + 03051307 a 0101 -r 01291674 n 0000 %p 08714458 n 0000 %p 08714795 n 0000 %p 08714966 n 0000 %p 09263087 n 0000 %m 09695620 n 0000 | a republic in the eastern part of the Balkan Peninsula in southeastern Europe -08714458 15 n 03 Sofia 0 Serdica 0 Bulgarian_capital 0 002 @i 08691669 n 0000 #p 08714132 n 0000 | capital and largest city of Bulgaria located in western Bulgaria -08714624 15 n 02 Dobrich 0 Tolbukhin 0 001 @i 08524735 n 0000 | a city in northeastern Bulgaria (north of Varna) that is the commercial center of an agricultural region -08714795 15 n 02 Plovdiv 0 Philippopolis 0 002 @i 08524735 n 0000 #p 08714132 n 0000 | an ancient city in southern Bulgaria; commercial center of an agricultural region -08714966 15 n 01 Varna 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08714132 n 0000 | a port city in northeastern Bulgaria on the Black Sea -08715110 15 n 01 Southeast_Asia 0 007 @i 08574314 n 0000 #p 09207288 n 0000 %p 08731606 n 0000 %p 08776435 n 0000 %p 08907606 n 0000 %p 08981244 n 0000 %p 08997487 n 0000 | a geographical division of Asia that includes Indochina plus Indonesia and the Philippines and Singapore -08715390 15 n 03 Myanmar 0 Union_of_Burma 0 Burma 0 012 @i 08700255 n 0000 #p 08731606 n 0000 #p 08964810 n 0000 #m 08487504 n 0000 -r 00782927 n 0000 -r 06930934 n 0000 %p 08715777 n 0000 %p 08715952 n 0000 %p 09350524 n 0000 %m 09695747 n 0000 -r 09987927 n 0000 -r 13684140 n 0000 | a mountainous republic in southeastern Asia on the Bay of Bengal; "much opium is grown in Myanmar" -08715777 15 n 02 Yangon 0 Rangoon 0 002 @i 08691669 n 0000 #p 08715390 n 0000 | the capital and largest city of Myanmar; located in the south near the Irrawaddy river delta -08715952 15 n 01 Mandalay 0 002 @i 08524735 n 0000 #p 08715390 n 0000 | a city in central Myanmar to the north of Rangoon -08716076 15 n 02 Moulmein 0 Mawlamyine 0 002 @i 08524735 n 0000 @i 08633957 n 0000 | a port city of southern Myanmar on the Gulf of Martaban -08716219 15 n 02 Burundi 0 Republic_of_Burundi 0 008 @i 08698379 n 0000 #p 09189411 n 0000 #p 08699426 n 0000 + 03052218 a 0102 %p 08716517 n 0000 %m 09693100 n 0000 %m 09693809 n 0000 %m 09695871 n 0000 | a landlocked republic in east central Africa on the northeastern shore of Lake Tanganyika -08716517 15 n 03 Bujumbura 0 Usumbura 0 capital_of_Burundi 0 002 @i 08691669 n 0000 #p 08716219 n 0000 | the capital and largest city of Burundi; "Usumbura was renamed Bujumbura when Burundi became independent in 1962" -08716738 15 n 03 Cambodia 0 Kingdom_of_Cambodia 0 Kampuchea 0 009 @i 08700255 n 0000 #p 08731606 n 0000 #m 08487504 n 0000 + 02968828 a 0302 + 02968828 a 0101 -r 08028999 n 0000 %p 08717059 n 0000 %p 09350524 n 0000 %m 09696280 n 0000 | a nation in southeastern Asia; was part of Indochina under French rule until 1946 -08717059 15 n 03 Phnom_Penh 0 Pnom_Penh 0 Cambodian_capital 0 002 @i 08691669 n 0000 #p 08716738 n 0000 | the capital and largest city of Kampuchea -08717209 15 n 03 Cameroon 0 Republic_of_Cameroon 0 Cameroun 0 007 @i 08698379 n 0000 #p 09189411 n 0000 + 03052588 a 0101 %p 08717510 n 0000 %p 08717629 n 0000 %p 09173623 n 0000 %m 09696456 n 0000 | a republic on the western coast of central Africa; was under French and British control until 1960 -08717510 15 n 02 Yaounde 0 capital_of_Cameroon 0 002 @i 08691669 n 0000 #p 08717209 n 0000 | the capital of Cameroon -08717629 15 n 01 Douala 0 002 @i 08524735 n 0000 #p 08717209 n 0000 | the largest city of Cameroon -08717730 15 n 01 Cape_Verde_Islands 0 004 @i 09203827 n 0000 #p 09209263 n 0000 %p 08717915 n 0000 %p 08718253 n 0000 | a group of islands in the Atlantic off of the coast of Senegal -08717915 15 n 02 Cape_Verde 0 Republic_of_Cape_Verde 0 003 @i 08544813 n 0000 #p 08717730 n 0000 %p 08718094 n 0000 | an island country in the Atlantic off the coast of Senegal -08718094 15 n 03 Praia 0 Cidade_de_Praia 0 capital_of_Cape_Verde 0 002 @i 08691669 n 0000 #p 08717915 n 0000 | the capital of Cape Verde on Sao Tiago Island -08718253 15 n 01 Sao_Tiago_Island 0 002 @i 09316454 n 0000 #p 08717730 n 0000 | largest of the Cape Verde Islands in the Atlantic Ocean -08718391 15 n 01 Falkland_Islands 0 002 @i 09316454 n 0000 #p 09209263 n 0000 | a group of over 100 islands in the southern Atlantic off the coast of Argentina; a British Crown Colony -08718577 15 n 02 Central_African_Republic 0 Central_Africa 0 003 @i 08698379 n 0000 #p 09189411 n 0000 %p 08718801 n 0000 | a landlocked country in central Africa; formerly under French control; became independent in 1960 -08718801 15 n 02 Bangui 0 capital_of_Central_Africa 0 002 @i 08691669 n 0000 #p 08718577 n 0000 | the capital and largest city of the Central African Republic -08718962 15 n 01 Ceylon 0 002 @i 09316454 n 0000 #p 09311259 n 0000 | an island in the Indian Ocean off the southeastern coast of India -08719100 15 n 03 Sri_Lanka 0 Democratic_Socialist_Republic_of_Sri_Lanka 0 Ceylon 1 010 @i 08544813 n 0000 + 03118413 a 0101 -r 08032023 n 0000 -r 08096624 n 0000 %p 08719465 n 0000 %p 08719705 n 0000 %p 08719892 n 0000 %p 09187594 n 0000 %m 09732047 n 0000 %m 09750046 n 0000 | a republic on the island of Ceylon; became independent of the United Kingdom in 1948 -08719465 15 n 02 Colombo 0 capital_of_Sri_Lanka 0 002 @i 08691669 n 0000 #p 08719100 n 0000 | the capital and largest city of Sri Lanka; has one of the largest harbors in the world; is located on the western coast of the island of Ceylon -08719705 15 n 01 Kandy 0 002 @i 08524735 n 0000 #p 08719100 n 0000 | a city of central Sri Lanka that was the last capital of the ancient kings of Ceylon; a resort and religious center -08719892 15 n 02 Eelam 0 Tamil_Eelam 0 002 @i 08168978 n 0000 #p 08719100 n 0000 | the independent state that the Tamil Tigers have fought for -08720037 15 n 03 Chad 0 Republic_of_Chad 0 Tchad 0 005 @i 08698379 n 0000 #p 09189411 n 0000 + 03054743 a 0101 %p 08720280 n 0000 %m 09697650 n 0000 | a landlocked desert republic in north-central Africa; was under French control until 1960 -08720280 15 n 04 N'Djamena 0 Ndjamena 0 Fort-Lamy 0 capital_of_Chad 0 002 @i 08691669 n 0000 #p 08720037 n 0000 | the capital and largest city of Chad; located in the southwestern on the Shari river -08720481 15 n 02 Chile 0 Republic_of_Chile 0 027 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02965985 a 0101 -r 08031663 n 0000 -r 08033829 n 0000 %p 08711468 n 0000 %p 08721145 n 0000 %p 08721286 n 0000 %p 08721559 n 0000 %p 08721796 n 0000 %p 08721961 n 0000 %p 08722084 n 0000 %p 08722270 n 0000 %p 08722394 n 0000 %p 08722645 n 0000 %p 09127274 n 0000 %p 09168193 n 0000 %p 09175459 n 0000 %p 09176342 n 0000 %p 09177249 n 0000 %p 09196611 n 0000 %p 09272927 n 0000 %p 09341673 n 0000 %p 09377657 n 0000 %p 09463721 n 0000 %m 09697986 n 0000 | a republic in southern South America on the western slopes of the Andes on the south Pacific coast -08721145 15 n 01 Antofagasta 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08720481 n 0000 | a port city on the Pacific in northern Chile -08721286 15 n 01 Chiloe 0 002 @i 09316454 n 0000 #p 08720481 n 0000 | the largest Chilean island and the only one to be settled; located off south-central Chile -08721449 15 n 01 Concepcion 0 001 @i 08524735 n 0000 | an industrial city in Chile to the south of Santiago -08721559 15 n 04 Gran_Santiago 0 Santiago 0 Santiago_de_Chile 0 capital_of_Chile 0 002 @i 08691669 n 0000 #p 08720481 n 0000 | the capital and largest city of Chile; located in central Chile; one of the largest cities in South America -08721796 15 n 01 Punta_Arenas 0 002 @i 08524735 n 0000 #p 08720481 n 0000 | a city in southern Chile on the Strait of Magellan; the southernmost city in the world -08721961 15 n 01 Temuco 0 002 @i 08524735 n 0000 #p 08720481 n 0000 | a city in central Chile to the south of Concepcion -08722084 15 n 01 Valparaiso 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08720481 n 0000 | the chief port and second largest city of Chile; located on a wide harbor in central Chile -08722270 15 n 01 Vina_del_Mar 0 002 @i 08524735 n 0000 #p 08720481 n 0000 | a resort city on the Pacific in central Chile -08722394 15 n 01 Tierra_del_Fuego 0 003 @i 09203827 n 0000 #p 08720481 n 0000 #p 08711974 n 0000 | an archipelago off southern South America; separated from the continent by the Strait of Magellan; islands are administered by Chile and by Argentina -08722645 15 n 01 Cape_Horn 0 003 @i 09233715 n 0000 @i 09399592 n 0000 #p 08720481 n 0000 | a rocky headland belonging to Chile at the southernmost tip of South America (south of Tierra del Fuego) -08722844 15 n 01 Manchuria 0 005 @i 08574314 n 0000 #p 08723006 n 0000 + 02969060 a 0101 -r 01275934 n 0000 -r 01292017 n 0000 | a region in northeastern China -08723006 15 n 07 China 0 People's_Republic_of_China 0 mainland_China 0 Communist_China 0 Red_China 0 PRC 0 Cathay 0 069 @i 08700255 n 0000 #p 09207288 n 0000 -r 00710155 n 0000 -r 00710338 n 0000 -r 01303582 n 0000 %p 03018971 n 0000 -r 05915356 n 0000 -r 05915584 n 0000 -r 05915811 n 0000 -r 06929742 n 0000 -r 06930934 n 0000 -r 07424436 n 0000 -r 07571547 n 0000 -r 07638439 n 0000 -r 07836456 n 0000 -r 07866571 n 0000 -r 07866723 n 0000 -r 08321469 n 0000 -r 08472120 n 0000 %p 08722844 n 0000 %p 08724726 n 0000 %p 08725161 n 0000 %p 08725454 n 0000 %p 08725692 n 0000 %p 08725926 n 0000 %p 08726072 n 0000 %p 08726305 n 0000 %p 08726463 n 0000 %p 08726745 n 0000 %p 08727003 n 0000 %p 08727230 n 0000 %p 08727396 n 0000 %p 08727606 n 0000 -r 08727606 n 0000 %p 08727806 n 0000 %p 08727945 n 0000 %p 08728066 n 0000 %p 08728268 n 0000 %p 08728462 n 0000 %p 08728595 n 0000 %p 08728749 n 0000 %p 08728882 n 0000 %p 08729094 n 0000 %p 08729283 n 0000 %p 08729452 n 0000 %p 08729626 n 0000 %p 08729971 n 0000 %p 08731148 n 0000 %p 09169801 n 0000 %p 09173288 n 0000 %p 09196103 n 0000 %p 09226209 n 0000 %p 09228144 n 0000 %p 09286843 n 0000 %p 09306257 n 0000 %p 09327881 n 0000 %p 09338910 n 0000 %p 09350524 n 0000 %p 09365443 n 0000 %p 09384223 n 0000 %p 09398533 n 0000 %p 09458587 n 0000 -r 09481285 n 0000 %p 09481523 n 0000 %p 09483340 n 0000 %m 09698108 n 0000 -r 11228153 n 0000 -r 13717728 n 0000 -r 14050559 n 0000 | a communist nation that covers a vast territory in eastern Asia; the most populous country in the world -08724545 15 n 02 Turkistan 0 Turkestan 0 002 @i 08574314 n 0000 #p 09207288 n 0000 | a historical region of central Asia that was a center for trade between the East and the West -08724726 15 n 04 Beijing 0 Peking 0 Peiping 0 capital_of_Red_China 0 003 @i 08691669 n 0000 #p 08723006 n 0000 %p 08724972 n 0000 | capital of the People's Republic of China in the Hebei province in northeastern China; 2nd largest Chinese city -08724972 15 n 01 Forbidden_City 0 002 @i 08648322 n 0000 #p 08724726 n 0000 | a walled section of Beijing that encloses the palace that was formerly the residence of the emperor of China -08725161 15 n 02 Chongqing 0 Chungking 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city in south-central China on the Chang Jiang; a commercial center for western China -08725336 15 n 03 Guangdong 0 Kwangtung 0 Guangdong_province 0 001 @i 08654360 n 0000 | a province in southern China -08725454 15 n 04 Guangzhou 0 Kuangchou 0 Kwangchow 0 Canton 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08723006 n 0000 | a city on the Zhu Jiang delta in southern China; the capital of Guangdong province and a major deep-water port -08725692 15 n 03 Gansu 0 Kansu 0 Gansu_province 0 004 @i 08654360 n 0000 #p 08723006 n 0000 #p 08680363 n 0000 %p 08726582 n 0000 | a province in north-central China; formerly part of the Silk Road to Turkistan and India and Persia -08725926 15 n 04 Hebei 0 Hopei 0 Hopeh 0 Hebei_province 0 002 @i 08654360 n 0000 #p 08723006 n 0000 | a populous province in northeastern China -08726072 15 n 02 Hunan 0 Hunan_province 0 002 @i 08654360 n 0000 #p 08723006 n 0000 | a province in southeastern central China between the Nan Ling mountains and the Chang Jiang; noted for its timber and valuable mineral resources -08726305 15 n 04 Szechwan 0 Sichuan 0 Szechuan 0 Szechwan_province 0 002 @i 08654360 n 0000 #p 08723006 n 0000 | a populous province of south central China -08726463 15 n 02 Yunnan 0 Yunnan_province 0 002 @i 08654360 n 0000 #p 08723006 n 0000 | a province of southern China -08726582 15 n 03 Lanzhou 0 Lanchou 0 Lanchow 0 002 @i 08524735 n 0000 #p 08725692 n 0000 | the capital city of the Chinese province of Gansu on the Yellow River -08726745 15 n 02 Luda 0 Luta 0 004 @i 08539717 n 0000 #p 08723006 n 0000 %p 08727003 n 0000 %p 08727396 n 0000 | an industrial conurbation in northeastern China on the southern end of the Liaodong Peninsula; it now includes the cities of Dalian and Lushun -08727003 15 n 03 Dalian 0 Talien 0 Dairen 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08723006 n 0000 #p 08726745 n 0000 | a port and shipbuilding center in northeastern China on the Liaodong Peninsula; now a part of Luda -08727230 15 n 02 Luoyang 0 Loyang 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city in east central China; the capital of ancient China during several dynasties -08727396 15 n 02 Lushun 0 Port_Arthur 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08723006 n 0000 #p 08726745 n 0000 | a major port city in northeastern China on the Liaodong Peninsula; now a part of Luda -08727606 15 n 02 Hangzhou 0 Hangchow 0 003 @i 08524735 n 0000 #p 08723006 n 0000 ;r 08723006 n 0000 | a city of eastern China on Hangzhou Bay; regarded by Marco Polo as the finest city in the world -08727806 15 n 02 Nanchang 0 Nan-chang 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a walled city in southeastern China on the Gan Jiang -08727945 15 n 02 Nanning 0 Nan-ning 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | an industrial city in southern China -08728066 15 n 02 Nanjing 0 Nanking 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city in eastern China on the Yangtze River; a former capital of China; the scene of a Japanese massacre in the 1930s -08728268 15 n 01 Shanghai 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08723006 n 0000 | the largest city of China; located in the east on the Pacific; one of the largest ports in the world -08728462 15 n 04 Shenyang 0 Mukden 0 Moukden 0 Fengtien 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city in northeastern China -08728595 15 n 01 Taiyuan 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | an ancient city in northeastern China noted for coal mining and steel production -08728749 15 n 01 Tangshan 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | an industrial city of northeastern China in Hebei province -08728882 15 n 03 Tianjin 0 Tientsin 0 T'ien-ching 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a major industrial center in northeastern China on the Grand Canal near the Yellow Sea; 3rd largest city in China -08729094 15 n 01 Grand_Canal 0 002 @i 02947212 n 0000 #p 08723006 n 0000 | an inland waterway 1000 miles long in eastern China; extends from Tianjin in the north to Hangzhou in the south -08729283 15 n 01 Wuhan 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city of central China on the Chang Jiang; the commercial and industrial center of central China -08729452 15 n 05 Xian 0 Sian 0 Singan 0 Changan 0 Hsian 0 002 @i 08524735 n 0000 #p 08723006 n 0000 | a city of central China; capital of ancient Chinese empire 221-206 BC -08729626 15 n 03 Xinjiang 0 Sinkiang 0 Xinjiang_Uighur_Autonomous_Region 0 004 @i 08654360 n 0000 #p 08723006 n 0000 -r 08019913 n 0000 %m 09736633 n 0000 | an autonomous province in far northwestern China on the border with Mongolia and Kazakhstan; the largest province in the People's Republic of China and the homeland of the Uighur people -08729971 15 n 02 Inner_Mongolia 0 Nei_Monggol 0 003 @i 08654360 n 0000 #p 08723006 n 0000 %p 08730218 n 0000 | an autonomous region of northeastern China that was annexed by the Manchu rulers in 1635 and became an integral part of China in 1911 -08730218 15 n 01 Hohhot 0 002 @i 08524735 n 0000 #p 08729971 n 0000 | a northern industrial city of China to the northwest of Beijing -08730354 15 n 02 Taiwan 1 Formosa 0 003 @i 09316454 n 0000 #p 09441107 n 0000 + 03122400 a 0203 | an island in southeastern Asia 100 miles off the coast of mainland China in the South China Sea -08730550 15 n 04 Taiwan 0 China 1 Nationalist_China 0 Republic_of_China 0 006 @i 09316454 n 0000 #p 09441107 n 0000 %p 08730895 n 0000 %p 08731057 n 0000 %m 09698108 n 0000 %m 09733899 n 0000 | a government on the island of Taiwan established in 1949 by Chiang Kai-shek after the conquest of mainland China by the Communists led by Mao Zedong -08730895 15 n 03 Taipei 0 Taipeh 0 capital_of_Taiwan 0 002 @i 08691669 n 0000 #p 08730550 n 0000 | the capital of Nationalist China; located in northern Taiwan -08731057 15 n 01 Taichung 0 002 @i 08524735 n 0000 #p 08730550 n 0000 | a city in Taiwan -08731148 15 n 01 Hong_Kong 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08723006 n 0000 | formerly a Crown Colony on the coast of southern China in Guangdong province; leased by China to Britain in 1842 and returned in 1997; one of the world's leading commercial centers -08731423 15 n 02 Macao 0 Macau 0 001 @i 08631531 n 0000 | a former Portuguese province on the south coast of China and two islands in the South China Sea; reverted to China in 1999 -08731606 15 n 02 Indochina 0 Indochinese_peninsula 0 009 @i 09388848 n 0000 #p 08715110 n 0000 %p 08715390 n 0000 %p 08716738 n 0000 %p 08731953 n 0000 %p 08956760 n 0000 %p 08963369 n 0000 %p 09036452 n 0000 %p 09163192 n 0000 | a peninsula of southeastern Asia that includes Myanmar and Cambodia and Laos and Malaysia and Thailand and Vietnam -08731953 15 n 01 French_Indochina 0 002 @i 08574314 n 0000 #p 08731606 n 0000 | the French colonies of the territory now occupied by Cambodia, Laos, and Vietnam -08732116 15 n 02 Colombia 0 Republic_of_Colombia 0 022 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02967618 a 0101 -r 08035601 n 0000 -r 08042183 n 0000 -r 08047032 n 0000 -r 08237202 n 0000 -r 08237400 n 0000 %p 08732807 n 0000 %p 08732979 n 0000 %p 08733163 n 0000 %p 08733291 n 0000 %p 08733415 n 0000 %p 08733563 n 0000 %p 09175322 n 0000 %p 09176955 n 0000 %p 09196611 n 0000 %p 09203481 n 0000 %p 09345265 n 0000 %p 09379938 n 0000 %m 09698517 n 0000 | a republic in northwestern South America with a coastline on the Pacific Ocean and the Caribbean Sea; achieved independence from Spain in 1821 under the leadership of Simon Bolivar; Spanish is the official language -08732807 15 n 01 Barranquilla 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08732116 n 0000 | a port city of northern Colombia near the Caribbean on the Magdalena River -08732979 15 n 02 Bogota 0 capital_of_Colombia 0 002 @i 08691669 n 0000 #p 08732116 n 0000 | capital and largest city of Colombia; located in central Colombia on a high fertile plain -08733163 15 n 01 Cali 0 002 @i 08524735 n 0000 #p 08732116 n 0000 | city in southwestern Colombia in a rich agricultural area -08733291 15 n 01 Medellin 0 002 @i 08524735 n 0000 #p 08732116 n 0000 | city in western Colombia; important coffee center -08733415 15 n 01 Cartagena 1 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08732116 n 0000 | a port city in northwestern Colombia on the Caribbean -08733563 15 n 01 Soledad 0 002 @i 08524735 n 0000 #p 08732116 n 0000 | a city in northern Colombia; a suburb of Barranquilla -08733690 15 n 02 Comoro_Islands 0 Iles_Comores 0 003 @i 09203827 n 0000 #p 09311259 n 0000 %p 08733897 n 0000 | three main islands and numerous islets in the Indian Ocean between Mozambique and Madagascar -08733897 15 n 02 Comoros 0 Federal_Islamic_Republic_of_the_Comoros 0 002 @i 08544813 n 0000 #p 08733690 n 0000 | a country on the Comoro Islands -08734044 15 n 03 Congo 1 Republic_of_the_Congo 0 French_Congo 0 003 @i 08698379 n 0000 #p 09189411 n 0000 %p 08734250 n 0000 | a republic in west-central Africa; achieved independence from France in 1960 -08734250 15 n 01 Brazzaville 0 002 @i 08691669 n 0000 #p 08734044 n 0000 | the capital and largest city of the Republic of the Congo -08734385 15 n 04 Congo 0 Democratic_Republic_of_the_Congo 0 Zaire 0 Belgian_Congo 0 016 @i 08698379 n 0000 #p 09189411 n 0000 + 03131116 a 0301 %p 08734853 n 0000 %p 08735008 n 0000 %p 08735164 n 0000 %p 08735345 n 0000 %p 09176732 n 0000 %p 09176844 n 0000 %p 09252078 n 0000 %p 09324474 n 0000 %p 09326299 n 0000 %p 09330913 n 0000 %m 09693244 n 0000 %m 09698644 n 0000 %m 09751622 n 0000 | a republic in central Africa; achieved independence from Belgium in 1960 -08734853 15 n 01 Goma 0 002 @i 08524735 n 0000 #p 08734385 n 0000 | a city in eastern Congo at the northern end of Lake Kivu near the border with Rwanda -08735008 15 n 02 Kananga 0 Luluabourg 0 002 @i 08524735 n 0000 #p 08734385 n 0000 | a city in southwestern Congo; former name (until 1966) was Luluabourg -08735164 15 n 02 Kinshasa 0 Leopoldville 0 002 @i 08691669 n 0000 #p 08734385 n 0000 | the capital of the Democratic Republic of the Congo on the Congo river opposite Brazzaville -08735345 15 n 02 Lubumbashi 0 Elisabethville 0 002 @i 08524735 n 0000 #p 08734385 n 0000 | a city in southeastern Congo near the border with Zambia; a copper mining center; former name (until 1966) was Elisabethville -08735564 15 n 01 Mesoamerica 0 004 @i 08574314 n 0000 #p 09372504 n 0000 + 02866825 a 0101 %p 08740875 n 0000 | Mexico and Central America -08735705 15 n 01 Central_America 0 012 @i 09319604 n 0000 #p 09372504 n 0000 #p 09022831 n 0000 #p 09195615 n 0000 %p 08703035 n 0000 %p 08736107 n 0000 %p 08737041 n 0000 %p 08737521 n 0000 %p 08737716 n 0000 %p 08738272 n 0000 %p 08738820 n 0000 %m 09697401 n 0000 | the isthmus joining North America and South America; extends from the southern border of Mexico to the northern border of Colombia -08736107 15 n 02 Costa_Rica 0 Republic_of_Costa_Rica 0 006 @i 08703035 n 0000 #p 08735705 n 0000 #m 08176077 n 0000 + 03056693 a 0101 %p 08736376 n 0000 %m 09698788 n 0000 | a republic in Central America; one of the most politically stable countries in Latin America -08736376 15 n 02 San_Jose 0 capital_of_Costa_Rica 0 002 @i 08691669 n 0000 #p 08736107 n 0000 | the capital and largest city of Costa Rica -08736517 15 n 03 Ivory_Coast 0 Cote_d'Ivoire 0 Republic_of_Cote_d'Ivoire 0 003 @i 08698379 n 0000 #p 09189411 n 0000 %p 08736779 n 0000 | a republic in western Africa on the Gulf of Guinea; one of the most prosperous and politically stable countries in Africa -08736779 15 n 01 Abidjan 0 002 @i 08524735 n 0000 #p 08736517 n 0000 | city recognized by the United States as the capital of the Ivory Coast; largest city of the Ivory Coast -08736956 15 n 01 Yamoussukro 0 001 @i 08691669 n 0000 | capital of the Ivory Coast -08737041 15 n 02 Guatemala 0 Republic_of_Guatemala 0 007 @i 08703035 n 0000 #p 08735705 n 0000 #m 08176077 n 0000 + 03071022 a 0101 %p 08737376 n 0000 %p 09174908 n 0000 %m 09712195 n 0000 | a republic in Central America; achieved independence from Spain in 1821; noted for low per capita income and illiteracy; politically unstable -08737376 15 n 02 Guatemala_City 0 capital_of_Guatemala 0 002 @i 08691669 n 0000 #p 08737041 n 0000 | the capital and largest city of Guatemala -08737521 15 n 02 Belize 0 British_Honduras 0 002 @i 08703035 n 0000 #p 08735705 n 0000 | a country on the northeastern coast of Central America on the Caribbean; formerly under British control -08737716 15 n 02 Honduras 0 Republic_of_Honduras 0 007 @i 08703035 n 0000 #p 08735705 n 0000 #m 08176077 n 0000 -r 08034028 n 0000 %p 08738014 n 0000 %p 08738151 n 0000 %m 09712570 n 0000 | a republic in Central America; achieved independence from Spain in 1821; an early center of Mayan culture -08738014 15 n 02 Tegucigalpa 0 Honduran_capital 0 002 @i 08691669 n 0000 #p 08737716 n 0000 | the capital and largest city of Honduras -08738151 15 n 01 San_Pedro_Sula 0 002 @i 08524735 n 0000 #p 08737716 n 0000 | industrial city in northwestern Honduras -08738272 15 n 03 El_Salvador 0 Republic_of_El_Salvador 0 Salvador 0 007 @i 08703035 n 0000 #p 08735705 n 0000 #m 08176077 n 0000 + 02969375 a 0102 %p 08738531 n 0000 %p 08738715 n 0000 %m 09700823 n 0000 | a republic on the Pacific coast of Central America -08738531 15 n 02 San_Salvador 0 Salvadoran_capital 0 002 @i 08691669 n 0000 #p 08738272 n 0000 | the capital and largest city of El Salvador; has suffered from recurrent earthquakes -08738715 15 n 01 Santa_Ana 1 002 @i 08524735 n 0000 #p 08738272 n 0000 | a city in western El Salvador -08738820 15 n 02 Nicaragua 0 Republic_of_Nicaragua 0 005 @i 08703035 n 0000 #p 08735705 n 0000 + 03090939 a 0101 %p 08739047 n 0000 %m 09724656 n 0000 | a republic in Central America; achieved independence from Spain in 1821 -08739047 15 n 03 Managua 0 capital_of_Nicaragua 0 Nicaraguan_capital 0 002 @i 08691669 n 0000 #p 08738820 n 0000 | the capital and largest city of Nicaragua -08739206 15 n 02 Panama 0 Republic_of_Panama 0 009 @i 08703035 n 0000 #p 09320239 n 0000 #m 08176077 n 0000 + 02966482 a 0101 %p 03881034 n 0000 %p 08739512 n 0000 %p 08739669 n 0000 %p 08739829 n 0000 %m 09726120 n 0000 | a republic on the Isthmus of Panama; achieved independence from Colombia in 1903 -08739512 15 n 03 Panama_City 0 capital_of_Panama 0 Panamanian_capital 0 002 @i 08691669 n 0000 #p 08739206 n 0000 | the capital and largest city of Panama -08739669 15 n 02 Colon 0 Aspinwall 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08739206 n 0000 | a port city at the Caribbean entrance to the Panama Canal -08739829 15 n 02 Panama_Canal_Zone 0 Canal_Zone 0 002 @i 08509442 n 0000 #p 08739206 n 0000 | a zone consisting of a strip of land across the Isthmus of Panama that contains the Panama Canal -08740022 15 n 02 Yucatan 0 Yucatan_Peninsula 0 002 @i 09388848 n 0000 #p 08740875 n 0000 | a peninsula in Central America extending into the Gulf of Mexico between the Bay of Campeche and the Caribbean Sea -08740230 15 n 01 Yucatan 1 002 @i 08654360 n 0000 %p 08740367 n 0000 | a state of Mexico on the northern part of the Yucatan Peninsula -08740367 15 n 01 Merida 0 002 @i 08524735 n 0000 #p 08740230 n 0000 | the capital of the Mexican state of Yucatan -08740483 15 n 01 Campeche 1 002 @i 08654360 n 0000 %p 08740617 n 0000 | a Mexican state on the eastern part of the Gulf of Campeche -08740617 15 n 01 Campeche 0 002 @i 08524735 n 0000 #p 08740483 n 0000 | a Mexican city on the Bay of Campeche -08740729 15 n 01 Cancun 0 002 @i 08524735 n 0000 #p 08745249 n 0000 | a popular island resort off the northeastern tip of the Yucatan peninsula -08740875 15 n 02 Mexico 0 United_Mexican_States 0 063 @i 08702805 n 0000 #p 08735564 n 0000 #m 08176077 n 0000 + 03026902 a 0101 -r 01273230 n 0000 -r 01275142 n 0000 -r 01292200 n 0000 -r 01305796 n 0000 -r 07838551 n 0000 -r 07864934 n 0000 -r 07867021 n 0000 -r 07879659 n 0000 -r 07880583 n 0000 -r 07880751 n 0000 -r 07880968 n 0000 -r 07881310 n 0000 -r 07881625 n 0000 %p 08740022 n 0000 %p 08742205 n 0000 %p 08742743 n 0000 %p 08742892 n 0000 %p 08743003 n 0000 %p 08743125 n 0000 %p 08743229 n 0000 %p 08743370 n 0000 %p 08743557 n 0000 %p 08743691 n 0000 %p 08743786 n 0000 %p 08743945 n 0000 %p 08744105 n 0000 %p 08744236 n 0000 %p 08744509 n 0000 %p 08744626 n 0000 %p 08744750 n 0000 %p 08744871 n 0000 %p 08745011 n 0000 -r 08745011 n 0000 %p 08745249 n 0000 %p 08745407 n 0000 %p 08745513 n 0000 %p 08745687 n 0000 %p 08745800 n 0000 %p 08745901 n 0000 %p 08746023 n 0000 %p 08746363 n 0000 %p 08746475 n 0000 %p 08746636 n 0000 %p 09168707 n 0000 %p 09173777 n 0000 %p 09174015 n 0000 %p 09249418 n 0000 %p 09297584 n 0000 %p 09297729 n 0000 %p 09299885 n 0000 %p 09343761 n 0000 %p 09410724 n 0000 %p 09434469 n 0000 %p 09434661 n 0000 -r 09649926 n 0000 %m 09722658 n 0000 -r 09723067 n 0000 -r 09956780 n 0000 %p 11642622 n 0000 | a republic in southern North America; became independent from Spain in 1810 -08742205 15 n 02 Acapulco 0 Acapulco_de_Juarez 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08740875 n 0000 | a port and fashionable resort city on the Pacific coast of southern Mexico; known for beaches and water sports (including cliff diving) -08742455 15 n 01 Chihuahua 0 002 @i 08654360 n 0000 %p 08742578 n 0000 | a state in northern Mexico; mostly high plateau -08742578 15 n 01 Chihuahua 1 002 @i 08524735 n 0000 #p 08742455 n 0000 | a city in northern Mexico in the state of Chihuahua; commercial center of northern Mexico -08742743 15 n 02 Ciudad_Juarez 0 Juarez 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northern Mexico on the Rio Grande opposite El Paso -08742892 15 n 01 Ciudad_Victoria 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in east central Mexico -08743003 15 n 01 Coahuila 0 002 @i 08654360 n 0000 #p 08740875 n 0000 | a state in northern Mexico; mostly high plateau -08743125 15 n 01 Culiacan 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northwestern Mexico -08743229 15 n 02 Durango 0 Victoria_de_Durango 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in north central Mexico; mining center -08743370 15 n 01 Guadalajara 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in southwestern Mexico; a popular health resort and site of architecture from the Spanish colonial era -08743557 15 n 01 Hermosillo 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northwestern Mexico near the Gulf of California -08743691 15 n 01 Leon 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in central Mexico -08743786 15 n 01 Matamoros 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northeastern Mexico opposite Brownsville near the mouth of the Rio Grande -08743945 15 n 01 Mazatlan 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08740875 n 0000 | a port city in western Mexico on the Pacific Ocean; tourist center -08744105 15 n 01 Mexicali 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northwestern Mexico near the California border -08744236 15 n 04 Mexico_City 0 Ciudad_de_Mexico 0 Mexican_capital 0 capital_of_Mexico 0 002 @i 08691669 n 0000 #p 08740875 n 0000 | the capital and largest city of Mexico is a political and cultural and commercial and industrial center; one of the world's largest cities -08744509 15 n 01 Monterrey 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | an industrial city in northeastern Mexico -08744626 15 n 01 Nogales 1 002 @i 08665504 n 0000 #p 08740875 n 0000 | a town in northern Mexico on the border of Arizona -08744750 15 n 02 Oaxaca 0 Oaxaca_de_Juarez 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city of southeastern Mexico -08744871 15 n 01 Orizaba 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city of east central Mexico (west of Veracruz); a popular resort -08745011 15 n 03 Puebla 0 Puebla_de_Zaragoza 0 Heroica_Puebla_de_Zaragoza 0 003 @i 08524735 n 0000 #p 08740875 n 0000 ;r 08740875 n 0000 | a city in south central Mexico (southeast of Mexico City) on the edge of central Mexican plateau -08745249 15 n 01 Quintana_Roo 0 003 @i 08654360 n 0000 #p 08740875 n 0000 %p 08740729 n 0000 | a Mexican state on the eastern side of the Yucatan Peninsula -08745407 15 n 01 San_Luis_Potosi 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in central Mexico -08745513 15 n 01 Santa_Maria_del_Tule 0 002 @i 08665504 n 0000 #p 08740875 n 0000 | a town in southeastern Mexico near Oaxaca; site of Ahuehuete, a giant Montezuma cypress -08745687 15 n 01 Tabasco 0 002 @i 08654360 n 0000 #p 08740875 n 0000 | a Mexican state on the Gulf of Campeche -08745800 15 n 01 Tepic 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in west central Mexico -08745901 15 n 01 Tampico 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08740875 n 0000 | a port city in eastern Mexico -08746023 15 n 01 Torreon 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in northern Mexico to the west of Monterrey -08746147 15 n 01 Tijuana 0 002 @i 08524735 n 0000 #p 09343761 n 0000 | a Mexican city just to the south of San Diego on the Lower California peninsula; popular among American tourists for racetracks and bullfights -08746363 15 n 01 Tuxtla_Gutierrez 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in southeastern Mexico -08746475 15 n 01 Veracruz 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08740875 n 0000 | a major Mexican port on the Gulf of Mexico in the state of Veracruz -08746636 15 n 02 Villahermosa 0 Villa_Hermosa 0 002 @i 08524735 n 0000 #p 08740875 n 0000 | a city in southeastern Mexico; the capital of the state of Tabasco -08746797 15 n 01 Guadalupe_Island 0 002 @i 09316454 n 0000 #p 09382990 n 0000 | a Mexican island in the Pacific to the west of Baja California -08746942 15 n 01 Caribbean_Island 0 002 @ 09316454 n 0000 #p 09235894 n 0000 | an island in the Caribbean Sea -08747054 15 n 02 West_Indies 0 the_Indies 0 016 @i 09203827 n 0000 #p 08709038 n 0000 #p 09209263 n 0000 -c 08152198 n 0000 %p 08708742 n 0000 %p 08709399 n 0000 %p 08711300 n 0000 ~ 08747494 n 0000 %p 08747737 n 0000 %p 08747887 n 0000 %p 08754529 n 0000 %p 08755852 n 0000 %p 08756052 n 0000 %p 08847268 n 0000 %m 09690864 n 0000 %m 10774440 n 0000 | the string of islands between North America and South America; a popular resort area -08747494 15 n 01 British_West_Indies 0 002 @ 08747054 n 0000 #m 08857682 n 0000 | the islands in the West Indies that were formerly under British control, including the Bahamas, Saint Lucia, Antigua, Grenada, Jamaica, Barbados, and Trinidad -08747737 15 n 01 Antilles 0 004 @i 09203827 n 0000 #p 08747054 n 0000 %p 08748076 n 0000 %p 08748280 n 0000 | a group of islands in the West Indies -08747887 15 n 01 French_West_Indies 0 004 @i 08630985 n 0000 #p 08747054 n 0000 %m 08751126 n 0000 %m 08943242 n 0000 | the islands in the Lesser Antilles that are administered by France -08748076 15 n 01 Greater_Antilles 0 006 @i 09203827 n 0000 #p 08747737 n 0000 %p 08750151 n 0000 %p 08751317 n 0000 %p 08752974 n 0000 %p 08753729 n 0000 | a group of islands in the western West Indies -08748280 15 n 02 Lesser_Antilles 0 Caribees 0 006 @i 09203827 n 0000 #p 08747737 n 0000 %p 08748499 n 0000 %p 08749447 n 0000 %p 08749864 n 0000 %p 08755214 n 0000 | a group of islands in the southeastern West Indies -08748499 15 n 01 Netherlands_Antilles 0 007 @i 09316454 n 0000 #p 08748280 n 0000 %p 08748794 n 0000 %p 08748917 n 0000 %p 08749042 n 0000 %p 08749167 n 0000 %p 08749312 n 0000 | a group of islands in the Lesser Antilles just to the north of Venezuela that are administered by The Netherlands -08748794 15 n 01 Aruba 0 002 @i 09316454 n 0000 #p 08748499 n 0000 | a popular island resort in the Netherlands Antilles -08748917 15 n 01 Bonaire 0 002 @i 09316454 n 0000 #p 08748499 n 0000 | a popular island resort in the Netherlands Antilles -08749042 15 n 01 Curacao 0 002 @i 09316454 n 0000 #p 08748499 n 0000 | a popular island resort in the Netherlands Antilles -08749167 15 n 01 Saba 0 002 @i 09316454 n 0000 #p 08748499 n 0000 | a island in the Netherlands Antilles that is the top of an extinct volcano -08749312 15 n 02 Saint_Eustatius 0 St._Eustatius 0 002 @i 09316454 n 0000 #p 08748499 n 0000 | an island in the Netherlands Antilles -08749447 15 n 01 Leeward_Islands 0 006 @i 09203827 n 0000 #p 08748280 n 0000 %p 08709704 n 0000 %p 08749650 n 0000 %p 08751126 n 0000 %p 08987423 n 0000 | a group of islands in the eastern West Indies -08749650 15 n 04 Saint_Martin 0 St._Martin 0 Saint_Maarten 0 St._Maarten 0 002 @i 09316454 n 0000 #p 08749447 n 0000 | an island in the western Leeward Islands; administered jointly by France and the Netherlands -08749864 15 n 02 Windward_Islands 0 Windward_Isles 0 007 @i 09203827 n 0000 #p 08748280 n 0000 %p 08763010 n 0000 %p 08943242 n 0000 %p 08946909 n 0000 %p 08988609 n 0000 %p 08989031 n 0000 | a group of islands in the southeastern West Indies; the southern part of the Lesser Antilles -08750151 15 n 01 Cuba 1 006 @i 09316454 n 0000 #p 08748076 n 0000 + 02969591 a 0101 -r 01293832 n 0000 %p 08750334 n 0000 %p 09423112 n 0000 | the largest island in the West Indies -08750334 15 n 02 Cuba 0 Republic_of_Cuba 0 009 @i 08544813 n 0000 #p 08750151 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 + 02969591 a 0101 %p 08750612 n 0000 %p 08750822 n 0000 %p 08750986 n 0000 %m 09698901 n 0000 | a communist state in the Caribbean on the island of Cuba -08750612 15 n 03 Havana 0 capital_of_Cuba 0 Cuban_capital 0 002 @i 08691669 n 0000 #p 08750334 n 0000 | the capital and largest city of Cuba; located in western Cuba; one of the oldest cities in the Americas -08750822 15 n 02 Santiago_de_Cuba 0 Santiago 1 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08750334 n 0000 | a port city in southeastern Cuba; industrial center -08750986 15 n 01 Guantanamo 0 002 @i 08524735 n 0000 #p 08750334 n 0000 | a city in southeastern Cuba; site of a United States naval base -08751126 15 n 01 Guadeloupe 0 003 @i 09316454 n 0000 #p 08749447 n 0000 #m 08747887 n 0000 | an island territory of France located in the eastern West Indies; tourism is the major industry -08751317 15 n 03 Hispaniola 0 Haiti 1 Hayti 0 005 @i 09316454 n 0000 #p 08748076 n 0000 + 03072028 a 0101 %p 08751494 n 0000 %p 08752021 n 0000 | an island in the West Indies -08751494 15 n 02 Haiti 0 Republic_of_Haiti 0 008 @i 08544813 n 0000 #p 08751317 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 + 03071651 a 0101 -c 08152507 n 0000 %p 08751885 n 0000 %m 09712448 n 0000 | a republic in the West Indies on the western part of the island of Hispaniola; achieved independence from France in 1804; the poorest and most illiterate nation in the western hemisphere -08751885 15 n 02 Port-au-Prince 0 Haitian_capital 0 002 @i 08691669 n 0000 #p 08751494 n 0000 | the capital and largest city of Haiti -08752021 15 n 01 Dominican_Republic 0 007 @i 08544813 n 0000 #p 08751317 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08752293 n 0000 %p 08752671 n 0000 %m 10024937 n 0000 | a republic in the West Indies; located on the eastern two-thirds of the island of Hispaniola -08752293 15 n 03 Santo_Domingo 0 Ciudad_Trujillo 0 capital_of_the_Dominican_Republic 0 002 @i 08691669 n 0000 #p 08752021 n 0000 | the capital and largest city of the Dominican Republic; "Santo Domingo is the oldest continually inhabited European settlement in the Americas with the oldest cathedral and the oldest hospital and the oldest monastery in the Western Hemisphere" -08752671 15 n 02 Santiago_de_los_Caballeros 0 Santiago 2 002 @i 08524735 n 0000 #p 08752021 n 0000 | city in the northern Dominican Republic -08752814 15 n 02 Puerto_Rico 1 Porto_Rico 1 002 @i 09316454 n 0000 #p 08752974 n 0000 | the smallest and easternmost of the Greater Antilles in the Caribbean -08752974 15 n 04 Puerto_Rico 0 Porto_Rico 0 Commonwealth_of_Puerto_Rico 0 PR 0 007 @i 08542403 n 0000 #p 08748076 n 0000 #p 08709038 n 0000 %p 08752814 n 0000 %p 08753294 n 0000 %p 08753412 n 0000 %p 08753561 n 0000 | a self-governing commonwealth associated with the United States occupying the island of Puerto Rico -08753294 15 n 01 San_Juan 0 002 @i 08524735 n 0000 #p 08752974 n 0000 | the capital and largest city of Puerto Rico -08753412 15 n 01 Culebra 0 002 @i 09316454 n 0000 #p 08752974 n 0000 | a small island off the coast of Puerto Rico with miles of beautiful beaches -08753561 15 n 01 Vieques 0 002 @i 09316454 n 0000 #p 08752974 n 0000 | a small island off the coast of Puerto Rico used for target practice by the United States Navy -08753729 15 n 01 Jamaica 1 005 @i 09316454 n 0000 #p 08748076 n 0000 + 03076432 a 0101 %p 08753933 n 0000 %m 09718092 n 0000 | an island in the West Indies to the south of Cuba and to the west of Haiti -08753933 15 n 01 Jamaica 0 008 @i 08544813 n 0000 #p 08753729 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 + 03076432 a 0101 -c 08292418 n 0000 %p 08754238 n 0000 %p 08754388 n 0000 | a country on the island of Jamaica; became independent of England in 1962; much poverty; the major industry is tourism -08754238 15 n 03 Kingston 0 capital_of_Jamaica 0 Jamaican_capital 0 002 @i 08691669 n 0000 #p 08753933 n 0000 | capital and largest city of Jamaica -08754388 15 n 01 Montego_Bay 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08753933 n 0000 | port and resort city in northwestern Jamaica -08754529 15 n 01 Virgin_Islands 0 005 @i 09316454 n 0000 #p 08747054 n 0000 %p 08609487 n 0000 %p 08754814 n 0000 %p 08755003 n 0000 | a group of islands in northeastern West Indies (east of Puerto Rico) discovered by Christopher Columbus in 1493; owned by United States and Britain -08754814 15 n 01 British_Virgin_Islands 0 002 @i 08631531 n 0000 #p 08754529 n 0000 | more than 40 northeastern Virgin Islands (15 inhabited); a dependent territory of the United Kingdom -08755003 15 n 03 United_States_Virgin_Islands 0 American_Virgin_Islands 0 VI 0 002 @i 08631531 n 0000 #p 08754529 n 0000 | more than 130 southeastern Virgin Islands; a dependent territory of the United States -08755214 15 n 01 Barbados 0 006 @i 09316454 n 0000 #p 08748280 n 0000 #m 08176077 n 0000 + 03047188 a 0101 %p 08755436 n 0000 %m 09693982 n 0000 | easternmost of the West Indies about 300 miles to the north of Venezuela -08755436 15 n 01 Barbados 1 005 @i 08544813 n 0000 #p 08755214 n 0000 #p 08709038 n 0000 + 03047188 a 0101 %p 08755664 n 0000 | a parliamentary democracy on the island of Barbados; former British colony; a popular resort area -08755664 15 n 02 Bridgetown 0 capital_of_Barbados 0 003 @i 08518505 n 0000 @i 08633957 n 0000 #p 08755436 n 0000 | capital of Barbados; a port city on the southwestern coast of Barbados -08755852 15 n 01 Trinidad 0 005 @i 09316454 n 0000 #p 08747054 n 0000 #p 08756202 n 0000 + 03126175 a 0101 %p 08756511 n 0000 | an island in West Indies just off the northeastern coast of Venezuela -08756052 15 n 01 Tobago 0 005 @i 09316454 n 0000 #p 08747054 n 0000 #p 08756202 n 0000 + 03125370 a 0101 %m 10714054 n 0000 | island in West Indies -08756202 15 n 02 Trinidad_and_Tobago 0 Republic_of_Trinidad_and_Tobago 0 005 @i 08544813 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08755852 n 0000 %p 08756052 n 0000 | an island republic in the West Indies off the northeastern coast of Venezuela; achieved independence from the United Kingdom in 1962 -08756511 15 n 03 Port_of_Spain 0 Port-of-Spain 0 capital_of_Trinidad_and_Tobago 0 002 @i 08691669 n 0000 #p 08755852 n 0000 | the capital and largest city of Trinidad and Tobago on the west coast of the island of Trinidad -08756735 15 n 01 Cyprus 1 004 @i 09316454 n 0000 #p 09350045 n 0000 %p 08756884 n 0000 %m 09699020 n 0000 | an island in the eastern Mediterranean -08756884 15 n 02 Cyprus 0 Republic_of_Cyprus 0 005 @i 08544813 n 0000 #p 08756735 n 0000 + 03058754 a 0101 -r 08304744 n 0000 %p 08757132 n 0000 | a country on the island of Cyprus; 80% of the people are of Greek origin and 20% or Turkish origin -08757132 15 n 02 Nicosia 0 capital_of_Cyprus 0 002 @i 08691669 n 0000 #p 08756884 n 0000 | the capital and largest city of Cyprus -08757264 15 n 01 Czech_Republic 0 010 @i 08696931 n 0000 #p 09275473 n 0000 %p 08757791 n 0000 %p 08757926 n 0000 %p 08758172 n 0000 %p 08758334 n 0000 %p 08758487 n 0000 %p 08758679 n 0000 %m 09699403 n 0000 %p 09863620 n 0000 | a landlocked republic in central Europe; separated from Slovakia in 1993 -08757569 15 n 01 Czechoslovakia 0 005 @i 08574314 n 0000 #p 09275473 n 0000 + 02961688 a 0102 %p 09263087 n 0000 %m 09699200 n 0000 | a former republic in central Europe; divided into Czech Republic and Slovakia in 1993 -08757791 15 n 02 Pilsen 0 Plzen 0 002 @i 08665504 n 0000 #p 08757264 n 0000 | a town in Czech Republic where Pilsner beer originated -08757926 15 n 04 Prague 0 Praha 0 Prag 0 Czech_capital 0 002 @i 08691669 n 0000 #p 08757264 n 0000 | the capital and largest city of the Czech Republic in the western part of the country; a cultural and commercial center since the 14th century -08758172 15 n 01 Austerlitz 0 003 @i 08665504 n 0000 #p 08757264 n 0000 -r 01269857 n 0000 | a town in Czech Republic; site of the battle of Austerlitz in 1805 -08758334 15 n 02 Brno 0 Brunn 0 002 @i 08524735 n 0000 #p 08757264 n 0000 | an industrial city in Moravia in Czech Republic to the southeast of Prague -08758487 15 n 01 Ostrava 0 002 @i 08524735 n 0000 #p 08757264 n 0000 | an industrial city in northwestern Czech Republic in the Moravian lowlands; located in the coal mining area of Silesia -08758679 15 n 01 Moravia 0 002 @i 08574314 n 0000 #p 08757264 n 0000 | a region in the central and eastern part of the Czech Republic; it lies to the east of Bohemia and to the west of the Carpathians -08758882 15 n 01 Bohemia 0 002 @i 08574314 n 0000 + 02667426 a 0101 | a historical area and former kingdom in the Czech Republic -08759013 15 n 02 Slovakia 0 Slovak_Republic 0 006 @i 08696931 n 0000 #p 09275473 n 0000 + 02964482 a 0101 %p 08759263 n 0000 %p 09236423 n 0000 %m 09699536 n 0000 | a landlocked republic in central Europe; separated from the Czech Republic in 1993 -08759263 15 n 04 Bratislava 0 capital_of_Slovakia 0 Pressburg 0 Pozsony 0 002 @i 08691669 n 0000 #p 08759013 n 0000 | capital and largest city of Slovakia -08759420 15 n 03 Benin 0 Republic_of_Benin 0 Dahomey 0 007 @i 08698379 n 0000 #p 09189411 n 0000 %p 08759684 n 0000 %p 08759852 n 0000 %p 09371151 n 0000 %m 09694269 n 0000 %m 09705287 n 0000 | a country on western coast of Africa; formerly under French control -08759684 15 n 02 Porto_Novo 0 capital_of_Benin 0 002 @i 08691669 n 0000 #p 08759420 n 0000 | the capital of Benin in southwestern part of country on a coastal lagoon -08759852 15 n 01 Cotonou 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08759420 n 0000 | chief port of Benin on the Bight of Benin -08759986 15 n 02 Togo 0 Togolese_Republic 0 005 @i 08698379 n 0000 #p 09189411 n 0000 %p 08760228 n 0000 %m 09705287 n 0000 %m 09734535 n 0000 | a republic on the western coast of Africa on the Gulf of Guinea; formerly under French control -08760228 15 n 02 Lome 0 capital_of_Togo 0 002 @i 08691669 n 0000 #p 08759986 n 0000 | capital and largest city of Togo; located in the south on the Gulf of Guinea -08760393 15 n 01 northern_Europe 0 002 @ 08574314 n 0000 #p 09275473 n 0000 | the northernmost countries of Europe -08760510 15 n 01 Scandinavia 0 010 @i 08574314 n 0000 #p 09275473 n 0000 + 02960130 a 0101 -r 07593199 n 0000 -r 07871065 n 0000 %m 08761244 n 0000 %m 08764107 n 0000 %m 08765890 n 0000 -r 09502481 n 0000 %m 09730204 n 0000 | a group of culturally related countries in northern Europe; Finland and Iceland are sometimes considered Scandinavian -08760856 15 n 02 Scandinavia 1 Scandinavian_Peninsula 0 003 @i 09388848 n 0000 #p 09275473 n 0000 + 02960130 a 0101 | the peninsula in northern Europe occupied by Norway and Sweden -08761039 15 n 02 Jutland 0 Jylland 0 003 @i 09388848 n 0000 %p 08761244 n 0000 %p 09436132 n 0000 | peninsula in northern Europe that forms the continental part of Denmark and a northern part of Germany -08761244 15 n 03 Denmark 0 Kingdom_of_Denmark 0 Danmark 0 013 @i 08697827 n 0000 #p 08761039 n 0000 #m 08760510 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 01282466 n 0000 %p 08761697 n 0000 %p 08761868 n 0000 %p 08762104 n 0000 %p 08762243 n 0000 %p 08762380 n 0000 %p 08951957 n 0000 %m 09699642 n 0000 | a constitutional monarchy in northern Europe; consists of the mainland of Jutland and many islands between the North Sea and the Baltic Sea -08761697 15 n 03 Zealand 0 Seeland 0 Sjaelland 0 003 @i 09316454 n 0000 #p 08761244 n 0000 %m 09700017 n 0000 | the largest island of Denmark and the site of Copenhagen -08761868 15 n 03 Copenhagen 0 Kobenhavn 0 Danish_capital 0 002 @i 08691669 n 0000 #p 08761244 n 0000 | the capital and largest city of Denmark; located on the island of Zealand; "Copenhagen is sometimes called the Paris of the North" -08762104 15 n 02 Arhus 0 Aarhus 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08761244 n 0000 | port city of Denmark in eastern Jutland -08762243 15 n 02 Aalborg 0 Alborg 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08761244 n 0000 | a city and port in northern Jutland -08762380 15 n 01 Viborg 0 002 @i 08665504 n 0000 #p 08761244 n 0000 | a town of Denmark in north central Jutland -08762495 15 n 03 Djibouti 0 Republic_of_Djibouti 0 Afars_and_Issas 0 007 @i 08698379 n 0000 #p 09189411 n 0000 #p 08999154 n 0000 #m 08172103 n 0000 + 03061762 a 0101 %p 08762823 n 0000 %m 09700125 n 0000 | a country in northeastern Africa on the Somali peninsula; formerly under French control but became independent in 1997 -08762823 15 n 02 Djibouti 1 capital_of_Djibouti 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08762495 n 0000 | port city on the Gulf of Aden; the capital and largest city of Djibouti -08763010 15 n 01 Dominica 1 003 @i 09316454 n 0000 #p 08749864 n 0000 %p 08763193 n 0000 | a volcanic island in the Windward Islands that was once a stronghold of the Carib Indians -08763193 15 n 02 Dominica 0 Commonwealth_of_Dominica 0 005 @i 08544813 n 0000 #p 08763010 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08763387 n 0000 | a country on the island of Dominica -08763387 15 n 01 Roseau 0 002 @i 08691669 n 0000 #p 08763193 n 0000 | the capital and largest city of Dominica -08763500 15 n 03 Equatorial_Guinea 0 Republic_of_Equatorial_Guinea 0 Spanish_Guinea 0 003 @i 08698379 n 0000 #p 09189411 n 0000 %p 08763932 n 0000 | a country of west central Africa (including islands in the Gulf of Guinea); became independent from Spain in 1968 -08763765 15 n 01 Malabo 0 002 @i 08691669 n 0000 #p 08763932 n 0000 | the capital and largest city of Equatorial Guinea on the island of Bioko in the Gulf of Guinea -08763932 15 n 01 Bioko 0 004 @i 09316454 n 0000 #p 08763500 n 0000 #p 09298410 n 0000 %p 08763765 n 0000 | an island in the Gulf of Guinea that is part of Equatorial Guinea -08764107 15 n 04 Norway 0 Kingdom_of_Norway 0 Norge 0 Noreg 0 013 @i 08697827 n 0000 #m 08760510 n 0000 #m 08174398 n 0000 + 02959912 a 0101 %p 08764561 n 0000 %p 08764899 n 0000 %p 08765069 n 0000 %p 08765315 n 0000 %p 08765460 n 0000 %p 08765623 n 0000 %p 08765771 n 0000 %p 09462312 n 0000 %m 09725402 n 0000 | a constitutional monarchy in northern Europe on the western side of the Scandinavian Peninsula; achieved independence from Sweden in 1905 -08764561 15 n 01 Svalbard 0 004 @i 09203827 n 0000 #p 08764107 n 0000 #p 09204977 n 0000 %p 08764717 n 0000 | a Norwegian archipelago in the Arctic Ocean -08764717 15 n 02 Spitsbergen 0 Spitzbergen 0 002 @i 09316454 n 0000 #p 08764561 n 0000 | islands in the Svalbard archipelago to the east of northern Greenland; belonging to Norway -08764899 15 n 01 Lofoten 0 003 @i 09203827 n 0000 #p 08764107 n 0000 #p 09374306 n 0000 | a string of islands off the northwestern coast of Norway in the Norwegian Sea -08765069 15 n 03 Oslo 0 Christiania 0 capital_of_Norway 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08764107 n 0000 | the capital and largest city of Norway; the country's main port; located at the head of a fjord on Norway's southern coast -08765315 15 n 01 Bergen 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08764107 n 0000 #m 08304135 n 0000 | a port city in southwestern Norway -08765460 15 n 01 Stavanger 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08764107 n 0000 | a port city in southwestern Norway; center for shipbuilding industry -08765623 15 n 02 Trondheim 0 Nidaros 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08764107 n 0000 | a port in central Norway on Trondheim Fjord -08765771 15 n 02 Lindesnes 0 Naze 0 002 @i 09233715 n 0000 #p 08764107 n 0000 | a cape at the southern tip of Norway -08765890 15 n 03 Sweden 0 Kingdom_of_Sweden 0 Sverige 0 011 @i 08697827 n 0000 #m 08760510 n 0000 #m 08173515 n 0000 %p 03448814 n 0000 %p 08766236 n 0000 %p 08766455 n 0000 %p 08766571 n 0000 %p 08766667 n 0000 %p 08766846 n 0000 %p 09333905 n 0000 %m 09732441 n 0000 | a Scandinavian kingdom in the eastern part of the Scandinavian Peninsula -08766236 15 n 02 Stockholm 0 capital_of_Sweden 0 002 @i 08691669 n 0000 #p 08765890 n 0000 | the capital and largest city of Sweden; located in southern Sweden on the Baltic; "the Nobel Prize is awarded in Stockholm" -08766455 15 n 01 Malmo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08765890 n 0000 | a port in southern Sweden -08766571 15 n 01 Lund 0 002 @i 08524735 n 0000 #p 08765890 n 0000 | a city in southern Sweden -08766667 15 n 03 Goteborg 0 Goeteborg 0 Gothenburg 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08765890 n 0000 | a port in southwestern Sweden; second largest city in Sweden -08766846 15 n 02 Uppsala 0 Upsala 0 002 @i 08524735 n 0000 #p 08765890 n 0000 | a city in east central Sweden to the northwest of Stockholm -08766988 15 n 04 Germany 0 Federal_Republic_of_Germany 0 Deutschland 0 FRG 0 077 @i 08696931 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 00518303 n 0000 -r 01271915 n 0000 -r 01282289 n 0000 -r 01285305 n 0000 -r 01288057 n 0000 -r 01292928 n 0000 -r 01297095 n 0000 %p 02909543 n 0000 %p 03158259 n 0000 -r 03886053 n 0000 %p 04216508 n 0000 -r 06883725 n 0000 -r 06950528 n 0000 -r 07491591 n 0000 -r 07888465 n 0000 -r 07897600 n 0000 -r 07983856 n 0000 -r 08014860 n 0000 -r 08017974 n 0000 -r 08028623 n 0000 -r 08041106 n 0000 -r 08475722 n 0000 %p 08769329 n 0000 %p 08769439 n 0000 %p 08769645 n 0000 %p 08770013 n 0000 %p 08770274 n 0000 %p 08770518 n 0000 %p 08770718 n 0000 %p 08770932 n 0000 %p 08771116 n 0000 %p 08771277 n 0000 %p 08771400 n 0000 %p 08771596 n 0000 %p 08771841 n 0000 %p 08772137 n 0000 %p 08772307 n 0000 %p 08772551 n 0000 %p 08772667 n 0000 %p 08772794 n 0000 %p 08772922 n 0000 %p 08773098 n 0000 %p 08773336 n 0000 %p 08773679 n 0000 %p 08773880 n 0000 %p 08774073 n 0000 %p 08774374 n 0000 %p 08774546 n 0000 %p 08774704 n 0000 %p 08774912 n 0000 %p 08775179 n 0000 %p 08775297 n 0000 %p 08775439 n 0000 %p 08775784 n 0000 %p 08776138 n 0000 %p 08776320 n 0000 %p 08951957 n 0000 -r 09222742 n 0000 %p 09252766 n 0000 %p 09263087 n 0000 %p 09367827 n 0000 %p 09376979 n 0000 %p 09408540 n 0000 %p 09417560 n 0000 %p 09418169 n 0000 %p 09477718 n 0000 %m 09747722 n 0000 -r 09747969 n 0000 %m 09751403 n 0000 -r 09877443 n 0000 -r 10293861 n 0000 -r 13752679 n 0000 -r 13753067 n 0000 | a republic in central Europe; split into East Germany and West Germany after World War II and reunited in 1990 -08768647 15 n 02 East_Germany 0 German_Democratic_Republic 0 002 @i 08696931 n 0000 %m 09748101 n 0000 | a republic in north central Europe on the Baltic; established by the Soviet Union in 1954; reunified with West Germany in 1990 -08768881 15 n 02 West_Germany 0 Federal_Republic_of_Germany 1 001 @i 08696931 n 0000 | a republic in north central Europe on the North Sea; established in 1949 from the zones of Germany occupied by the British and French and Americans after the German defeat; reunified with East Germany in 1990 -08769179 15 n 03 Saxony 0 Sachsen 0 Saxe 0 001 @i 08574314 n 0000 | an area in Germany around the upper Elbe river; the original home of the Saxons -08769329 15 n 01 Lower_Saxony 0 002 @i 08654360 n 0000 #p 08766988 n 0000 | a state in northwestern Germany -08769439 15 n 03 Aachen 0 Aken 0 Aix-la-Chapelle 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in western Germany near the Dutch and Belgian borders; formerly it was Charlemagne's northern capital -08769645 15 n 02 Berlin 0 German_capital 0 005 @i 08691669 n 0000 #p 08766988 n 0000 + 09748408 n 0101 %p 08769836 n 0000 %m 09748408 n 0000 | capital of Germany located in eastern Germany -08769836 15 n 01 West_Berlin 0 003 @i 08537837 n 0000 #p 08769645 n 0000 %m 09748541 n 0000 | the part of Berlin under United States and British and French control until 1989 -08770013 15 n 01 Bremen 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a city of northwestern Germany linked by the Weser River to the port of Bremerhaven and the North Sea; in the Middle Ages it was a leading member of the Hanseatic League -08770274 15 n 01 Bremerhaven 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08766988 n 0000 | a port city in northwestern Germany at the mouth of the Weser River on the North Sea; has a deep natural harbor and is an important shipping center -08770518 15 n 02 Chemnitz 0 Karl-Marx-Stadt 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in east central Germany; formerly called Karl-Marx-Stadt until 1990; noted for textile manufacturing -08770718 15 n 01 Dortmund 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | an industrial city in northwestern Germany; flourished from the 13th to 17th century as a member of the Hanseatic League -08770932 15 n 01 Dresden 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in southeastern Germany on the Elbe River; it was almost totally destroyed by British air raids in 1945 -08771116 15 n 01 Leipzig 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in southeastern Germany famous for fairs; formerly a music and publishing center -08771277 15 n 01 Solingen 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in west central Germany noted for cutlery -08771400 15 n 01 Weimar 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a German city near Leipzig; scene of the adoption in 1919 of the constitution of the Weimar Republic that lasted until 1933 -08771596 15 n 01 Bavaria 0 007 @i 08654360 n 0000 #p 08766988 n 0000 + 02969775 a 0101 + 09844457 n 0101 -r 01280792 n 0000 %p 08772028 n 0000 %p 08774227 n 0000 | a state in southern Germany famous for its beer; site of an automobile factory -08771841 15 n 02 Hameln 0 Hamelin 0 002 @i 08665504 n 0000 #p 08766988 n 0000 | a town in northern Germany (near Hanover) that is famous as the setting for the legend of the Pied Piper -08772028 15 n 01 Hohenlinden 0 002 @i 08665504 n 0000 #p 08771596 n 0000 | a town in Bavaria (near Munich) -08772137 15 n 01 Bonn 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in western Germany on the Rhine River; was the capital of West Germany between 1949 and 1989 -08772307 15 n 02 Cologne 0 Koln 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a commercial center and river port in western Germany on the Rhine River; flourished during the 15th century as a member of the Hanseatic League -08772551 15 n 02 Braunschweig 0 Brunswick 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in central Germany -08772667 15 n 01 Dusseldorf 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | an industrial city in western Germany on the Rhine -08772794 15 n 01 Essen 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in western Germany; industrial center of the Ruhr -08772922 15 n 03 Frankfurt_on_the_Main 0 Frankfurt 0 Frankfort 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a German city; an industrial and commercial and financial center -08773098 15 n 02 Halle 0 Halle-an-der-Saale 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a city in the Saxony region of Germany on the Saale River; a member of the Hanseatic League during the 13th and 14th centuries -08773336 15 n 01 Hamburg 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a port city in northern Germany on the Elbe River that was founded by Charlemagne in the 9th century and is today the largest port in Germany; in 1241 it formed an alliance with Lubeck that became the basis for the Hanseatic League -08773679 15 n 02 Hannover 0 Hanover 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a port city in northwestern Germany; formerly a member of the Hanseatic League -08773880 15 n 01 Lubeck 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a city in northwestern Germany and an important Baltic port; a leading member of the Hanseatic League -08774073 15 n 01 Mannheim 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in southwestern Germany at the confluence of the Rhine and Neckar rivers -08774227 15 n 02 Munich 0 Muenchen 0 002 @i 08524735 n 0000 #p 08771596 n 0000 | the capital and largest city of Bavaria in southwestern Germany -08774374 15 n 02 Nuremberg 0 Nurnberg 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in southeastern Germany; site of Allied trials of Nazi war criminals (1945-46) -08774546 15 n 01 Potsdam 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in northeastern Germany; site of the Potsdam Conference in the summer of 1945 -08774704 15 n 01 Rostock 0 003 @i 08524735 n 0000 #p 08766988 n 0000 #m 08304135 n 0000 | a city in northeastern Germany near the Baltic sea; an important member of the Hanseatic League in the 14th century -08774912 15 n 01 Stuttgart 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city in southwestern Germany famous for innovative architecture -08775053 15 n 01 Wiesbaden 0 002 @i 08524735 n 0000 @i 08678615 n 0000 | a city in western Germany; a spa since Roman times -08775179 15 n 02 Wurzburg 0 Wuerzburg 0 002 @i 08524735 n 0000 #p 08766988 n 0000 | a city of south central Germany -08775297 15 n 02 Rhineland 0 Rheinland 0 002 @i 08574314 n 0000 #p 08766988 n 0000 | a picturesque region of Germany around the Rhine river -08775439 15 n 02 Palatinate 0 Pfalz 0 002 @i 08552138 n 0000 #p 08766988 n 0000 | a territory in southwestern Germany formerly ruled by the counts palatine -08775597 15 n 01 Brandenburg 0 002 @i 08574314 n 0000 #p 08775784 n 0000 | the territory of an Elector (of the Holy Roman Empire) that expanded to become the kingdom of Prussia in 1701 -08775784 15 n 02 Prussia 0 Preussen 0 006 @i 08574314 n 0000 #p 08766988 n 0000 #p 08982587 n 0000 + 03104149 a 0101 %p 08775597 n 0000 %m 09748648 n 0000 | a former kingdom in north-central Europe including present-day northern Germany and northern Poland; "in the 19th century Prussia led the economic and political unification of the German states" -08776138 15 n 02 Ruhr 0 Ruhr_Valley 0 002 @i 08574314 n 0000 #p 08766988 n 0000 | a major industrial and coal mining region in the valley of the Ruhr river in northwestern Germany -08776320 15 n 01 Thuringia 0 002 @i 08574314 n 0000 #p 08766988 n 0000 | a historical region of southern Germany -08776435 15 n 01 East_Timor 0 003 @i 08544813 n 0000 #p 08715110 n 0000 #p 08908739 n 0000 | a former Portuguese colony that was annexed by Indonesia in 1976; voted for independence from Indonesia in 1999 and in May 2002 became an independent nation -08776687 15 n 02 Ecuador 0 Republic_of_Ecuador 0 014 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02966324 a 0101 -r 08040008 n 0000 %p 08777130 n 0000 %p 08777233 n 0000 %p 08777348 n 0000 %p 09174166 n 0000 %p 09174301 n 0000 %p 09177103 n 0000 %p 09196611 n 0000 %p 09243615 n 0000 %m 09700371 n 0000 | a republic in northwestern South America; became independent from Spain in 1822; the landscape is dominated by the Andes -08777130 15 n 01 Guayaquil 0 002 @i 08524735 n 0000 #p 08776687 n 0000 | the largest city of Ecuador -08777233 15 n 02 Quito 0 capital_of_Ecuador 0 002 @i 08691669 n 0000 #p 08776687 n 0000 | the capital of Ecuador -08777348 15 n 02 Galapagos_Islands 0 Galapagos 0 002 @i 09316454 n 0000 #p 08776687 n 0000 | a group of islands in the Pacific off South America; owned by Ecuador; known for unusual animal life -08777544 15 n 02 Eritrea 0 State_of_Eritrea 0 006 @i 08698379 n 0000 #p 08999154 n 0000 + 03064520 a 0101 %p 08777815 n 0000 %p 08777919 n 0000 %m 09705784 n 0000 | an African country to the north of Ethiopia on the Red Sea; achieved independence from Ethiopia in 1993 -08777815 15 n 02 Asmara 0 Asmera 0 002 @i 08691669 n 0000 #p 08777544 n 0000 | the capital of Eritrea -08777919 15 n 01 Massawa 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08777544 n 0000 | a port town in Eritrea on an inlet of the Red Sea -08778061 15 n 04 Ethiopia 0 Federal_Democratic_Republic_of_Ethiopia 0 Yaltopya 0 Abyssinia 0 008 @i 08698379 n 0000 #p 08999154 n 0000 #p 09189411 n 0000 + 03064693 a 0101 -c 08152353 n 0000 %p 08778401 n 0000 %p 09333334 n 0000 %m 09705124 n 0000 | Ethiopia is a republic in northeastern Africa on the Red Sea; formerly called Abyssinia -08778401 15 n 03 Addis_Ababa 0 New_Flower 0 capital_of_Ethiopia 0 002 @i 08691669 n 0000 #p 08778061 n 0000 | the capital of Ethiopia and the country's largest city; located in central Ethiopia -08778597 15 n 02 Fiji_Islands 0 Fijis 0 005 @i 09316454 n 0000 #p 08836630 n 0000 %p 08778936 n 0000 %p 08779042 n 0000 %p 08779149 n 0000 | a group of more than 800 islands (100 inhabited) in the southwestern Pacific; larger islands (Viti Levu and Vanua Levu) are of volcanic origin surrounded by coral reefs; smaller islands are coral -08778936 15 n 01 Viti_Levu 0 002 @i 09316454 n 0000 #p 08778597 n 0000 | a volcanic island in the Fijis -08779042 15 n 01 Vanua_Levu 0 002 @i 09316454 n 0000 #p 08778597 n 0000 | a volcanic island in the Fijis -08779149 15 n 02 Fiji 0 Republic_of_Fiji 0 005 @i 08544813 n 0000 #p 08778597 n 0000 + 03065969 a 0101 %p 08779375 n 0000 %m 09705909 n 0000 | an independent state within the British Commonwealth located on the Fiji Islands -08779375 15 n 01 Suva 0 002 @i 08691669 n 0000 #p 08779149 n 0000 | the capital and largest city of Fiji (on Viti Levu island) -08779504 15 n 03 Finland 0 Republic_of_Finland 0 Suomi 0 010 @i 08696931 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 %p 08779830 n 0000 %p 08780018 n 0000 %p 08780282 n 0000 %p 08780380 n 0000 %p 08780510 n 0000 %p 08780720 n 0000 %m 09706029 n 0000 | republic in northern Europe; achieved independence from Russia in 1917 -08779830 15 n 01 Karelia 0 004 @i 08574314 n 0000 #p 08779504 n 0000 #p 09006413 n 0000 %m 09706746 n 0000 | a region in Finland and Russia between the Gulf of Finland and the White Sea -08780018 15 n 04 Helsinki 0 Helsingfors 0 capital_of_Finland 0 Finnish_capital 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08779504 n 0000 | the capital and largest city of Finland; located in southern Finland; a major port and commercial and cultural center -08780282 15 n 01 Espoo 0 002 @i 08524735 n 0000 #p 08779504 n 0000 | a city in southern Finland -08780380 15 n 02 Tampere 0 Tammerfors 0 002 @i 08524735 n 0000 #p 08779504 n 0000 | an industrial city in south central Finland -08780510 15 n 03 Aland_islands 0 Aaland_islands 0 Ahvenanmaa 0 003 @i 09203827 n 0000 #p 09297423 n 0000 #p 08779504 n 0000 | an archipelago of some 6,000 islands in the Gulf of Bothnia under Finnish control -08780720 15 n 02 Mariehamn 0 Maarianhamina 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08779504 n 0000 | a town that is the chief port of the Aland islands -08780881 15 n 03 Greece 0 Hellenic_Republic 0 Ellas 0 066 @i 08698126 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 01268457 n 0000 -r 01274531 n 0000 -r 01283565 n 0000 -r 01283753 n 0000 -r 01286393 n 0000 -r 01286569 n 0000 -r 01288795 n 0000 -r 01290711 n 0000 -r 01297484 n 0000 -r 01302935 n 0000 -r 03648804 n 0000 -r 03884778 n 0000 -r 04486718 n 0000 -r 06293229 n 0000 -r 06379094 n 0000 -r 06976392 n 0000 -r 07036862 n 0000 -r 07464402 n 0000 -r 07870069 n 0000 -r 08042536 n 0000 -r 08043169 n 0000 %p 08782490 n 0000 %p 08782847 n 0000 %p 08782976 n 0000 %p 08783149 n 0000 %p 08783286 n 0000 %p 08783444 n 0000 %p 08783583 n 0000 %p 08783812 n 0000 %p 08784333 n 0000 %p 08784746 n 0000 %p 08785132 n 0000 %p 08785343 n 0000 %p 08786161 n 0000 %p 08786283 n 0000 %p 08786432 n 0000 %p 08786660 n 0000 %p 08786855 n 0000 %p 08787049 n 0000 %p 08787466 n 0000 %p 08787695 n 0000 %p 08788190 n 0000 %p 08789243 n 0000 %p 08789605 n 0000 %p 08789835 n 0000 %p 08789970 n 0000 %p 08790353 n 0000 %p 08790495 n 0000 %p 08790748 n 0000 %p 09378529 n 0000 %p 09385586 n 0000 %p 09424118 n 0000 -r 09498497 n 0000 -r 09498697 n 0000 -r 09542541 n 0000 -r 09542697 n 0000 -r 09559404 n 0000 %m 09710164 n 0000 -r 09920106 n 0000 %m 10146313 n 0000 -r 10595361 n 0000 -r 13802098 n 0000 | a republic in southeastern Europe on the southern part of the Balkan peninsula; known for grapes and olives and olive oil -08782319 15 n 01 Greece 1 001 @ 08698126 n 0000 | ancient Greece; a country of city-states (especially Athens and Sparta) that reached its peak in the fifth century BCE -08782490 15 n 01 Achaea 0 002 @i 08630039 n 0000 #p 08780881 n 0000 | a region of ancient Greece on the north coast of the Peloponnese -08782627 15 n 01 Aegean_island 0 008 @ 09316454 n 0000 #p 09188609 n 0000 ~i 08782847 n 0000 ~i 08782976 n 0000 ~i 08783149 n 0000 ~i 08783286 n 0000 ~i 08783583 n 0000 ~i 08783812 n 0000 | an island in the Aegean Sea -08782847 15 n 02 Aegina 0 Aigina 0 002 @i 08782627 n 0000 #p 08780881 n 0000 | an island in the Aegean Sea in the Saronic Gulf -08782976 15 n 02 Chios 0 Khios 0 003 @i 08782627 n 0000 #p 08780881 n 0000 + 02693802 a 0101 | an island in the Aegean Sea off the west coast of Turkey; belongs to Greece -08783149 15 n 02 Cyclades 0 Kikladhes 0 002 @i 08782627 n 0000 #p 08780881 n 0000 | a group of over 200 islands in the southern Aegean -08783286 15 n 02 Dodecanese 0 Dhodhekanisos 0 003 @i 08782627 n 0000 #p 08780881 n 0000 %p 08783812 n 0000 | a group of islands in the southeast Aegean Sea -08783444 15 n 01 Doris 0 002 @i 08630039 n 0000 #p 08780881 n 0000 | a small region of ancient Greece where the Doric dialect was spoken -08783583 15 n 03 Lesbos 0 Lesvos 0 Mytilene 0 004 @i 08782627 n 0000 #p 08780881 n 0000 #p 08784104 n 0000 %m 09711530 n 0000 | an island of eastern Greece in the eastern Aegean Sea; in antiquity it was famous for lyric poetry -08783812 15 n 02 Rhodes 0 Rodhos 0 003 @i 08782627 n 0000 #p 08783286 n 0000 #p 08780881 n 0000 | a Greek island in the southeast Aegean Sea 10 miles off the Turkish coast; the largest of the Dodecanese; it was colonized before 1000 BC by Dorians from Argos; site of the Colossus of Rhodes -08784104 15 n 02 Aeolis 0 Aeolia 0 003 @i 09428293 n 0000 #p 08701942 n 0000 %p 08783583 n 0000 | an ancient coastal region of northwestern Asia Minor (including Lesbos) where the Aeolians founded several cities around 1100 BC -08784333 15 n 02 Crete 0 Kriti 0 005 @i 09316454 n 0000 #p 08780881 n 0000 #p 09350045 n 0000 %p 03630992 n 0000 %m 09709795 n 0000 | the largest Greek island in the Mediterranean; site of the Minoan civilization that reached its peak in 1600 BC -08784581 15 n 03 Knossos 0 Cnossos 0 Cnossus 0 001 @i 08665504 n 0000 | an ancient town on Crete where Bronze Age culture flourished from about 2000 BC to 1400 BC -08784746 15 n 02 Ithaca 0 Ithaki 0 002 @i 09316454 n 0000 #p 08780881 n 0000 | a Greek island to the west of Greece; in Homeric legend Odysseus was its king -08784905 15 n 05 Egadi_Islands 0 Aegadean_Isles 0 Aegadean_Islands 0 Isole_Egadi 0 Aegates 0 003 @i 09316454 n 0000 #p 08811215 n 0000 #p 09350045 n 0000 | a group of islands off the west coast of Sicily in the Mediterranean -08785132 15 n 02 Athos 0 Mount_Athos 0 002 @i 08552138 n 0000 #p 08780881 n 0000 | an autonomous area in northeastern Greece that is the site of several Greek Orthodox monasteries founded in the tenth century -08785343 15 n 04 Athens 0 Athinai 0 capital_of_Greece 0 Greek_capital 0 008 @i 08691669 n 0000 #p 08780881 n 0000 + 02972499 a 0101 %p 03893732 n 0000 %p 08785743 n 0000 %p 08785958 n 0000 %m 09711132 n 0000 %m 11239271 n 0000 | the capital and largest city of Greece; named after Athena (its patron goddess); "in the 5th century BC ancient Athens was the world's most powerful and civilized city" -08785743 15 n 01 Areopagus 0 002 @i 09303008 n 0000 #p 08785343 n 0000 | a hill to the to the west of the Athenian acropolis where met the highest governmental council of ancient Athens and later a judicial court -08785958 15 n 02 Dipylon_gate 0 Dipylon 0 003 @i 03427296 n 0000 #p 08785343 n 0000 + 03017659 a 0201 | a gateway to the west of ancient Athens near which a distinctive style of pottery has been found -08786161 15 n 01 Actium 0 002 @i 08665504 n 0000 #p 08780881 n 0000 | an ancient town on a promontory in western Greece -08786283 15 n 01 Attica 0 002 @i 08552138 n 0000 #p 08780881 n 0000 | the territory of Athens in ancient Greece where the Ionic dialect was spoken -08786432 15 n 02 Corinth 0 Korinthos 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 08780881 n 0000 + 02704686 a 0101 %m 09711320 n 0000 | the modern Greek port near the site of the ancient city that was second only to Athens -08786660 15 n 01 Argos 0 004 @i 08524735 n 0000 #p 08780881 n 0000 + 03017788 a 0101 + 09807495 n 0101 | an ancient city in southeastern Greece; dominated the Peloponnese in the 7th century BC -08786855 15 n 01 Delphi 0 004 @i 08524735 n 0000 #p 08780881 n 0000 + 03060601 a 0102 %p 04407844 n 0000 | an ancient Greek city on the slopes of Mount Parnassus; site of the oracle of Delphi -08787049 15 n 01 Mycenae 0 003 @i 08524735 n 0000 #p 08780881 n 0000 + 03016857 a 0101 | an ancient city is southern Greece; center of the Mycenaean civilization during the late Bronze Age -08787240 15 n 01 Sparta 0 004 @i 08524735 n 0000 #p 08790495 n 0000 + 02972690 a 0101 %m 09711661 n 0000 | an ancient Greek city famous for military prowess; the dominant city of the Peloponnesus prior to the 4th century BC -08787466 15 n 01 Epirus 0 003 @i 08574314 n 0000 #p 08780881 n 0000 #p 08704822 n 0000 | an ancient area on the Ionian Sea that flourished as a kingdom in the 3rd century BC; located in northwestern Greece and southern Albania -08787695 15 n 01 Laconia 0 003 @i 08574314 n 0000 #p 08780881 n 0000 %m 09711435 n 0000 | an ancient region of southern Greece in the southeastern Peloponnesus; dominated by Sparta -08787878 15 n 01 Lycia 0 002 @i 08574314 n 0000 #p 08701942 n 0000 | an ancient region on the coast of southwest Asia Minor -08788004 15 n 01 Lydia 0 002 @i 08574314 n 0000 #p 08701942 n 0000 | an ancient region on the coast of western Asia Minor; a powerful kingdom until conquered by the Persians in 546 BC -08788190 15 n 01 Nemea 0 002 @i 09468604 n 0000 #p 08780881 n 0000 | a valley in southeastern Greece where the Nemean Games were held -08788326 15 n 01 Ephesus 0 002 @i 08524735 n 0000 #p 08701942 n 0000 | an ancient Greek city on the western shore of Asia Minor in what is now Turkey; site of the Temple of Artemis; was a major trading center and played an important role in early Christianity -08788588 15 n 02 Patras 0 Patrai 0 002 @i 08524735 n 0000 @i 08633957 n 0000 | a port city in western Greece in the northwestern Peloponnese on an inlet of the Ionian Sea; was a major trade center from the 5th century BC to the 3rd century BC; commercial importance revived during the Middle Ages -08788887 15 n 03 Troy 0 Ilion 0 Ilium 0 004 @i 08524735 n 0000 #p 08701942 n 0000 + 03126638 a 0101 %m 09750524 n 0000 | an ancient city in Asia Minor that was the site of the Trojan War -08789076 15 n 01 Thebes 0 003 @i 08524735 n 0000 #p 08789243 n 0000 %m 09711870 n 0000 | an ancient Greek city in Boeotia destroyed by Alexander the Great in 336 BC -08789243 15 n 01 Boeotia 0 006 @i 08552138 n 0000 #p 08780881 n 0000 + 03017468 a 0101 -r 01291517 n 0000 %p 08789076 n 0000 %p 08789447 n 0000 | a district of ancient Greece to the northwest of Athens -08789447 15 n 01 Plataea 0 002 @i 08665504 n 0000 #p 08789243 n 0000 | a former town in Boeotia; site of a battle between the Greeks and Persians in 479 BC -08789605 15 n 04 Thessaloniki 0 Salonika 0 Salonica 0 Thessalonica 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08780881 n 0000 | a port city in northeastern Greece on an inlet of the Aegean Sea; second largest city of Greece -08789835 15 n 02 Stagira 0 Stagirus 0 002 @i 08665504 n 0000 #p 08780881 n 0000 | an ancient town of Greece where Aristotle was born -08789970 15 n 02 Thessalia 0 Thessaly 0 004 @i 08574314 n 0000 #p 08780881 n 0000 -r 01277065 n 0000 %p 08790199 n 0000 | a fertile plain on the Aegean Sea in east central Greece; Thessaly was a former region of ancient Greece -08790199 15 n 01 Cynoscephalae 0 002 @i 08630039 n 0000 #p 08789970 n 0000 | the fields in Thessaly where in 197 BC the Romans defeated the Macedonians -08790353 15 n 01 Arcadia 0 003 @i 08574314 n 0000 #p 08780881 n 0000 %m 09711754 n 0000 | a department of Greece in the central Peloponnese -08790495 15 n 03 Peloponnese 0 Peloponnesus 0 Peloponnesian_Peninsula 0 005 @i 09388848 n 0000 #p 08780881 n 0000 + 02879947 a 0201 %p 08787240 n 0000 %p 08790953 n 0000 | the southern peninsula of Greece; dominated by Sparta until the 4th century BC -08790748 15 n 02 Lemnos 0 Limnos 0 003 @i 09316454 n 0000 #p 08780881 n 0000 #p 09188609 n 0000 | a Greek island in the northern Aegean Sea; famous for a reddish-brown clay that has medicinal properties -08790953 15 n 01 Olympia 1 003 @i 09393605 n 0000 #p 08790495 n 0000 + 03093379 a 0102 | a plain in Greece in the northwestern Peloponnese; the chief sanctuary of Zeus and the site of the original Olympian Games -08791167 15 n 03 Middle_East 0 Mideast 0 Near_East 0 021 @i 08574314 n 0000 -r 01289631 n 0000 -r 01302449 n 0000 -r 01302683 n 0000 -r 04614244 n 0000 -r 07683617 n 0000 -r 07867164 n 0000 ~i 08791978 n 0000 %p 08792083 n 0000 %p 08792295 n 0000 %p 08792548 n 0000 %p 08897065 n 0000 %p 08910668 n 0000 %p 08913434 n 0000 %p 08915159 n 0000 %p 08927186 n 0000 %p 08929243 n 0000 %p 08957381 n 0000 %p 08993288 n 0000 %p 09033333 n 0000 %p 09039411 n 0000 | the area around the eastern Mediterranean; from Turkey to northern Africa and eastward to Iran; the site of such ancient civilizations as Phoenicia and Babylon and Egypt and the birthplace of Judaism and Christianity and Islam; had continuous economic and political turmoil in the 20th century; "the Middle East is the cradle of Western civilization" -08791978 15 n 01 Mashriq 0 002 @i 08791167 n 0000 ;c 06988057 n 0000 | Arabic name for the Middle East -08792083 15 n 01 Fertile_Crescent 0 002 @i 08574314 n 0000 #p 08791167 n 0000 | a geographical area of fertile land in the Middle East stretching in a broad semicircle from the Nile to the Tigris and Euphrates -08792295 15 n 01 Israel 1 003 @i 08591269 n 0000 #p 08791167 n 0000 %m 09715685 n 0000 | an ancient kingdom of the Hebrew tribes at the southeastern end of the Mediterranean Sea; founded by Saul around 1025 BC and destroyed by the Assyrians in 721 BC -08792548 15 n 05 Israel 0 State_of_Israel 0 Yisrael 0 Zion 0 Sion 0 031 @i 08544813 n 0000 #p 08791167 n 0000 -r 08011523 n 0000 -r 08020785 n 0000 -r 08028397 n 0000 -r 08038748 n 0000 -r 08039312 n 0000 -r 08040257 n 0000 -r 08056873 n 0000 -r 08226838 n 0000 -r 08345366 n 0000 -r 08345613 n 0000 -r 08345770 n 0000 -r 08346286 n 0000 -r 08346490 n 0000 -r 08347457 n 0000 %p 08793310 n 0000 %p 08793489 n 0000 %p 08793914 n 0000 %p 08794366 n 0000 %p 08794574 n 0000 %p 08794798 n 0000 %p 08795492 n 0000 %p 08795654 n 0000 %p 08795974 n 0000 %p 08797840 n 0000 %p 08798062 n 0000 %p 09171560 n 0000 %p 09263619 n 0000 %p 09361816 n 0000 %m 09715833 n 0000 | Jewish republic in southwestern Asia at eastern end of Mediterranean; formerly part of Palestine -08793310 15 n 04 Acre 0 Akko 0 Akka 0 Accho 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08792548 n 0000 | a town and port in northwestern Israel in the eastern Mediterranean -08793489 15 n 01 West_Bank 0 006 @i 08574314 n 0000 #p 08792548 n 0000 -r 08010942 n 0000 %p 08793746 n 0000 %p 08795232 n 0000 %p 08927836 n 0000 | an area between Israel and Jordan on the west bank of the Jordan river; populated largely by Palestinians -08793746 15 n 01 Nablus 0 002 @i 08524735 n 0000 #p 08793489 n 0000 | an ancient city in the West Bank to the north of Jerusalem; the home of Jacob in biblical times -08793914 15 n 01 Galilee 0 006 @i 08574314 n 0000 #p 08792548 n 0000 + 02732569 a 0101 + 02732806 a 0101 + 02732569 a 0102 %p 08794193 n 0000 | an area of northern Israel; formerly the northern part of Palestine and the ancient kingdom of Israel; the scene of Jesus's ministry -08794193 15 n 01 Nazareth 0 002 @i 08665504 n 0000 #p 08793914 n 0000 | a historic town in northern Israel that is mentioned in the Gospels as the home of Joseph and Mary -08794366 15 n 02 Gaza_Strip 0 Gaza 0 002 @i 08574314 n 0000 #p 08792548 n 0000 | a coastal region at the southeastern corner of the Mediterranean bordering Israel and Egypt; "he is a Palestinian from Gaza" -08794574 15 n 02 Golan_Heights 0 Golan 0 002 @i 08574314 n 0000 #p 08792548 n 0000 | a fortified hilly area between southern Lebanon and southern Syria; "artillery on the Golan Heights can dominate a large area of Israel" -08794798 15 n 02 Jerusalem 0 capital_of_Israel 0 007 @i 08691669 n 0000 #p 08792548 n 0000 %p 03527930 n 0000 %p 04408330 n 0000 %p 08796219 n 0000 %p 08796351 n 0000 %p 08797619 n 0000 | capital and largest city of the modern state of Israel (although its status as capital is disputed); it was captured from Jordan in 1967 in the Six Day War; a holy city for Jews and Christians and Muslims; was the capital of an ancient kingdom -08795232 15 n 04 Bethlehem 0 Bayt_Lahm 0 Bethlehem_Ephrathah 0 Bethlehem-Judah 0 002 @i 08665504 n 0000 #p 08793489 n 0000 | a small town near Jerusalem on the West Bank of the Jordan River; early home of David and regarded as the place where Jesus was born -08795492 15 n 01 Caesarea 0 002 @i 08639058 n 0000 #p 08792548 n 0000 | an ancient seaport in northwestern Israel; an important Roman city in ancient Palestine -08795654 15 n 01 Sodom 0 003 @i 08524735 n 0000 #p 08792548 n 0000 ;c 06449735 n 0000 | (Old Testament) an ancient city near the Dead Sea that (along with Gomorrah) was destroyed by God for the wickedness of its inhabitants -08795880 15 n 01 sodom 1 001 @ 00027167 n 0000 | any location known for vice and corruption -08795974 15 n 02 Gomorrah 0 Gomorrha 0 003 @i 08524735 n 0000 #p 08792548 n 0000 ;c 06449735 n 0000 | (Old Testament) an ancient city near the Dead Sea that (along with Sodom) was destroyed by God for the vice and depravity of its inhabitants -08796219 15 n 02 Calvary 0 Golgotha 0 002 @i 09303008 n 0000 #p 08794798 n 0000 | a hill near Jerusalem where Jesus was crucified -08796351 15 n 02 Zion 2 Sion 2 002 @i 09303008 n 0000 #p 08794798 n 0000 | originally a stronghold captured by David (the 2nd king of the Israelites); above it was built a temple and later the name extended to the whole hill; finally it became a synonym for the city of Jerusalem; "the inhabitants of Jerusalem are personified as `the daughter of Zion'" -08796707 15 n 02 Cotswolds 0 Cotswold_Hills 0 002 @i 09303008 n 0000 #p 08871007 n 0000 | a range of low hills in southwestern England -08796844 15 n 02 Cheviots 0 Cheviot_Hills 0 003 @i 09303008 n 0000 #p 08871007 n 0000 #p 08890097 n 0000 | a range of hills on the border between England and Scotland -08797013 15 n 02 Pennines 0 Pennine_Chain 0 002 @i 09303008 n 0000 #p 08871007 n 0000 | a system of hills in Britain that extend from the Scottish border in the north to the Trent River in the south; forms the watershed for English rivers -08797254 15 n 01 Seven_Hills_of_Rome 0 003 @i 09303008 n 0000 #p 08806897 n 0000 %p 08797412 n 0000 | the hills on which the ancient city of Rome was built -08797412 15 n 01 Palatine 0 002 @i 09303008 n 0000 #p 08797254 n 0000 | the most important of the Seven Hills of Rome; supposedly the location of the first settlement and the site of many imperial palaces -08797619 15 n 01 Wailing_Wall 0 002 @i 04546855 n 0000 #p 08794798 n 0000 | a wall in Jerusalem; sacred to Jews as a place of prayer and lamentation; its stones are believed to have formed part of the Temple of Solomon -08797840 15 n 03 Tel_Aviv 0 Tel_Aviv-Yalo 0 Tel_Aviv-Jaffa 0 003 @i 08524735 n 0000 #p 08792548 n 0000 %p 08798195 n 0000 | the largest city and financial center of Israel; located in western Israel on the Mediterranean -08798062 15 n 02 Hefa 0 Haifa 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08792548 n 0000 | a major port in northwestern Israel -08798195 15 n 03 Jaffa 0 Joppa 0 Yafo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08797840 n 0000 | a port in western Israel on the Mediterranean; incorporated into Tel Aviv in 1950 -08798382 15 n 04 Palestine 0 Canaan 0 Holy_Land 0 Promised_Land 2 009 @i 08574314 n 0000 #p 09207288 n 0000 + 02974615 a 0101 %p 08799123 n 0000 %p 08799271 n 0000 %p 08799462 n 0000 %p 08799706 n 0000 %p 09321901 n 0000 -r 09912765 n 0000 | an ancient country in southwestern Asia on the east coast of the Mediterranean Sea; a place of pilgrimage for Christianity and Islam and Judaism -08798771 15 n 01 Palestine 1 011 @i 08597727 n 0000 + 02974615 a 0101 -r 08011523 n 0000 -r 08013653 n 0000 -r 08019523 n 0000 -r 08020242 n 0000 -r 08021785 n 0000 -r 08037118 n 0000 -r 08037861 n 0000 -r 08038379 n 0000 -r 08320385 n 0000 | a former British mandate on the east coast of the Mediterranean; divided between Jordan and Israel in 1948 -08799123 15 n 02 Judah 0 Juda 0 002 @i 08574314 n 0000 #p 08798382 n 0000 | an ancient kingdom of southern Palestine with Jerusalem as its center -08799271 15 n 02 Judea 0 Judaea 0 002 @i 08574314 n 0000 #p 08798382 n 0000 | the southern part of ancient Palestine succeeding the kingdom of Judah; a Roman province at the time of Christ -08799462 15 n 01 Samaria 0 002 @i 08524735 n 0000 #p 08798382 n 0000 | an ancient city in central Palestine founded in the 9th century BC as the capital of the northern Hebrew kingdom of Israel; the site is in present-day northwestern Jordan -08799706 15 n 01 Philistia 0 003 @i 08574314 n 0000 #p 08798382 n 0000 -r 09517057 n 0000 | an ancient region on the coast of southwestern Palestine that was strategically located on a trade route between Syria and Egypt; important in biblical times -08799958 15 n 01 Roman_Republic 0 002 @i 08362917 n 0000 #p 09275473 n 0000 | the ancient Roman state from 509 BC until Augustus assumed power in 27 BC; was governed by an elected Senate but dissatisfaction with the Senate led to civil wars that culminated in a brief dictatorship by Julius Caesar -08800258 15 n 01 Roman_Empire 0 009 @i 08557482 n 0000 #p 09275473 n 0000 #p 09189411 n 0000 #p 09207288 n 0000 -r 07943646 n 0000 -r 08626947 n 0000 %p 08800676 n 0000 %p 08800911 n 0000 %m 09717047 n 0000 | an empire established by Augustus in 27 BC and divided in AD 395 into the Western Roman Empire and the eastern or Byzantine Empire; at its peak lands in Europe and Africa and Asia were ruled by ancient Rome -08800676 15 n 03 Byzantine_Empire 0 Byzantium 1 Eastern_Roman_Empire 0 004 @i 08574314 n 0000 #p 08800258 n 0000 %p 08801099 n 0000 %m 09696124 n 0000 | a continuation of the Roman Empire in the Middle East after its division in 395 -08800911 15 n 02 Western_Roman_Empire 0 Western_Empire 0 002 @i 08574314 n 0000 #p 08800258 n 0000 | the western part after the Roman Empire was divided in 395; it lasted only until 476 -08801099 15 n 01 Byzantium 0 003 @i 08524735 n 0000 #p 08800676 n 0000 %m 09696124 n 0000 | an ancient city on the Bosporus founded by the Greeks; site of modern Istanbul; in 330 Constantine I rebuilt the city and called it Constantinople and made it his capital -08801364 15 n 01 Italian_Peninsula 0 003 @i 09388848 n 0000 #p 08801678 n 0000 %p 08992181 n 0000 | a boot-shaped peninsula in southern Europe extending into the Mediterranean Sea -08801546 15 n 02 Ticino 0 Tessin 0 002 @i 09032191 n 0000 #p 09031653 n 0000 | an Italian-speaking region of southern Switzerland -08801678 15 n 03 Italy 0 Italian_Republic 0 Italia 0 078 @i 08696931 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 + 02957066 a 0101 -r 01151335 a 0000 -r 01274000 n 0000 -r 01274171 n 0000 -r 01283185 n 0000 -r 01285784 n 0000 -r 01286745 n 0000 -r 01287179 n 0000 -r 01292553 n 0000 -r 01293650 n 0000 -r 01295153 n 0000 -r 01297978 n 0000 %p 02729060 n 0000 %p 03356670 n 0000 -r 06618653 n 0000 -r 06631921 n 0000 -r 06964247 n 0000 -r 07680655 n 0000 -r 07703743 n 0000 -r 07781801 n 0000 -r 08041484 n 0000 -r 08043499 n 0000 -r 08541609 n 0000 %p 08801364 n 0000 %p 08803883 n 0000 %p 08804049 n 0000 %p 08804154 n 0000 %p 08804487 n 0000 -r 08804487 n 0000 %p 08804662 n 0000 %p 08804845 n 0000 %p 08804962 n 0000 -r 08804962 n 0000 %p 08805122 n 0000 %p 08805386 n 0000 %p 08806311 n 0000 %p 08806617 n 0000 %p 08806735 n 0000 %p 08806897 n 0000 %p 08807716 n 0000 %p 08807894 n 0000 %p 08808077 n 0000 %p 08808292 n 0000 %p 08808614 n 0000 %p 08809384 n 0000 %p 08809492 n 0000 %p 08809596 n 0000 %p 08809749 n 0000 %p 08810358 n 0000 %p 08810786 n 0000 %p 08811215 n 0000 %p 08811982 n 0000 %p 08812399 n 0000 %p 08812732 n 0000 %p 08812842 n 0000 %p 08812952 n 0000 %p 08813807 n 0000 %p 08846135 n 0000 %p 08939201 n 0000 %p 08945277 n 0000 %p 09177883 n 0000 %p 09187743 n 0000 %p 09194357 n 0000 %p 09200874 n 0000 %p 09206693 n 0000 %p 09216968 n 0000 %p 09228928 n 0000 %p 09268592 n 0000 %p 09349192 n 0000 %p 09357847 n 0000 %p 09396150 n 0000 %p 09464652 n 0000 %m 09716047 n 0000 %m 09717233 n 0000 | a republic in southern Europe on the Italian Peninsula; was the core of the Roman Republic and the Roman Empire between the 4th century BC and the 5th century AD -08803382 15 n 01 Italian_region 0 021 @ 08654360 n 0000 ~i 08804154 n 0000 ~i 08804487 n 0000 ~i 08804962 n 0000 ~i 08805122 n 0000 ~i 08806311 n 0000 ~i 08806617 n 0000 ~i 08806735 n 0000 ~i 08808292 n 0000 ~i 08808614 n 0000 ~i 08809384 n 0000 ~i 08809492 n 0000 ~i 08809749 n 0000 ~i 08810358 n 0000 ~i 08810786 n 0000 ~i 08811215 n 0000 ~i 08811982 n 0000 ~i 08812399 n 0000 ~i 08812732 n 0000 ~i 08812842 n 0000 ~i 08812952 n 0000 | Italy is divided into 20 regions for administrative purposes -08803883 15 n 01 Pompeii 0 002 @i 08524735 n 0000 #p 08801678 n 0000 | ancient city to the southeast of Naples that was buried by a volcanic eruption from Vesuvius -08804049 15 n 01 Herculaneum 0 002 @i 08524735 n 0000 #p 08801678 n 0000 | ancient city; now destroyed -08804154 15 n 02 Abruzzi 0 Abruzzi_e_Molise 0 003 @i 08803382 n 0000 #p 08801678 n 0000 %p 08804319 n 0000 | a mountainous region of central Italy on the Adriatic -08804319 15 n 03 Aquila 0 L'Aquila 0 Aquila_degli_Abruzzi 0 002 @i 08524735 n 0000 #p 08804154 n 0000 | the provincial capital of the Abruzzi region in central Italy -08804487 15 n 02 Basilicata 0 Lucania 0 003 @i 08803382 n 0000 #p 08801678 n 0000 ;r 08801678 n 0000 | a region of southern Italy (forming the instep of the Italian `boot') -08804662 15 n 01 Bolzano 0 002 @i 08524735 n 0000 #p 08801678 n 0000 | an Italian city in Trentino-Alto Adige near the Austrian border; noted as a resort and for its Alpine scenery -08804845 15 n 01 Brescia 0 002 @i 08524735 n 0000 #p 08801678 n 0000 | an ancient Italian city in central Lombardy -08804962 15 n 01 Calabria 0 003 @i 08803382 n 0000 #p 08801678 n 0000 ;r 08801678 n 0000 | a region of southern Italy (forming the toe of the Italian `boot') -08805122 15 n 01 Campania 0 007 @i 08803382 n 0000 #p 08801678 n 0000 %p 08805565 n 0000 %p 08805953 n 0000 %p 08806142 n 0000 %m 09717789 n 0000 %m 09717917 n 0000 | a region of southwestern Italy on the Tyrrhenian Sea including the islands of Capri and Ischia -08805386 15 n 01 Ferrara 0 002 @i 08524735 n 0000 #p 08801678 n 0000 | a city in northern Italy; "in the 13th century Ferrara was a center of Renaissance learning and the arts" -08805565 15 n 02 Naples 0 Napoli 0 006 @i 08524735 n 0000 @i 08633957 n 0000 #p 08805122 n 0000 + 02970442 a 0101 %m 09716837 n 0000 %m 10350666 n 0000 | a port and tourist center in southwestern Italy; capital of the Campania region -08805801 15 n 01 Messina 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08811215 n 0000 | a port city in northeastern Sicily on the Strait of Messina -08805953 15 n 01 Capri 0 002 @i 09316454 n 0000 #p 08805122 n 0000 | an island (part of Campania) in the Bay of Naples in southern Italy; a tourist attraction noted for beautiful scenery -08806142 15 n 01 Ischia 0 002 @i 09316454 n 0000 #p 08805122 n 0000 | a volcanic island (part of Campania) in the Tyrrhenian Sea at the north end of the Bay of Naples -08806311 15 n 01 Emilia-Romagna 0 003 @i 08803382 n 0000 #p 08801678 n 0000 %p 08806458 n 0000 | a region of north central Italy on the Adriatic -08806458 15 n 01 Bologna 0 002 @i 08524735 n 0000 #p 08806311 n 0000 | the capital of Emilia-Romagna; located in northern Italy to the east of the Apennines -08806617 15 n 01 Friuli-Venezia_Giulia 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | a region in northeastern Italy -08806735 15 n 02 Latium 0 Lazio 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | an ancient region of west central Italy (southeast of Rome) on the Tyrrhenian Sea -08806897 15 n 05 Rome 0 Roma 0 Eternal_City 0 Italian_capital 0 capital_of_Italy 0 022 @i 08691669 n 0000 #p 08801678 n 0000 -r 02921325 a 0000 -r 01027662 n 0000 -r 02981024 n 0000 -r 03035089 n 0000 %p 03072828 n 0000 -r 03884778 n 0000 %p 04224671 n 0000 -r 04445154 n 0000 %p 08797254 n 0000 %p 08807554 n 0000 %p 09161090 n 0000 -r 09559404 n 0000 %m 09716933 n 0000 -r 09823287 n 0000 -r 09905050 n 0000 -r 10131815 n 0000 -r 10452892 n 0000 -r 10479135 n 0000 -r 10595361 n 0000 -r 10728828 n 0000 | capital and largest city of Italy; on the Tiber; seat of the Roman Catholic Church; formerly the capital of the Roman Republic and the Roman Empire -08807554 15 n 01 Lateran 0 003 @i 08651247 n 0000 #p 08806897 n 0000 %p 03645866 n 0000 | the site in Rome containing the church of Rome and the Lateran Palace -08807716 15 n 01 Anzio 0 002 @i 08665504 n 0000 #p 08801678 n 0000 | a town of central Italy on the Tyrrhenian Sea; the Allies established a beachhead at Anzio in World War II -08807894 15 n 01 Brindisi 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08801678 n 0000 | a port city in southeastern Apulia in Italy; a center for the Crusades in the Middle Ages -08808077 15 n 02 Tivoli 0 Tibur 0 002 @i 08665504 n 0000 #p 08801678 n 0000 | a town twenty miles to the east of Rome (Tibur is the ancient name); a summer resort during the Roman empire; noted for its waterfalls -08808292 15 n 01 Liguria 0 004 @i 08803382 n 0000 #p 08801678 n 0000 %p 08808452 n 0000 %p 08808979 n 0000 | region of northwestern Italy on the Ligurian Sea -08808452 15 n 02 Genoa 0 Genova 0 003 @i 08524735 n 0000 #p 08808292 n 0000 %m 10123415 n 0000 | a seaport in northwestern Italy; provincial capital of Liguria -08808614 15 n 02 Lombardy 0 Lombardia 0 004 @i 08803382 n 0000 #p 08801678 n 0000 %p 08808792 n 0000 %p 08809165 n 0000 | a region of north central Italy bordering Switzerland -08808792 15 n 01 Cremona 0 002 @i 08524735 n 0000 #p 08808614 n 0000 | a city in Lombardy on the Po River; noted for the manufacture of fine violins from the 16th to the 18th centuries -08808979 15 n 01 La_Spezia 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08808292 n 0000 | a port city in Liguria on an arm of the Ligurian Sea; a major seaport and year-round resort -08809165 15 n 02 Milan 0 Milano 0 003 @i 08524735 n 0000 #p 08808614 n 0000 %m 10315456 n 0000 | the capital of Lombardy in northern Italy; has been an international center of trade and industry since the Middle Ages -08809384 15 n 02 Marche 0 Marches 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | a region in central Italy -08809492 15 n 01 Molise 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | a region of south central Italy -08809596 15 n 01 Papal_States 0 002 @i 08552138 n 0000 #p 08801678 n 0000 | the temporal dominions belonging to the pope (especially in central Italy) -08809749 15 n 02 Piedmont 0 Piemonte 0 003 @i 08803382 n 0000 #p 08801678 n 0000 %p 08810220 n 0000 | the region of northwestern Italy; includes the Po valley -08809910 15 n 01 Pisa 0 003 @i 08524735 n 0000 #p 08811982 n 0000 %p 03652530 n 0000 | a city in Tuscany; site of the famous Leaning Tower -08810051 15 n 02 Syracuse 0 Siracusa 0 002 @i 08524735 n 0000 #p 08811215 n 0000 | a city in southeastern Sicily that was founded by Corinthians in the 8th century BC -08810220 15 n 02 Turin 0 Torino 0 002 @i 08524735 n 0000 #p 08809749 n 0000 | capital city of the Piemonte region of northwestern Italy -08810358 15 n 02 Puglia 0 Apulia 0 003 @i 08803382 n 0000 #p 08801678 n 0000 %p 08810505 n 0000 | a region in southeastern Italy on the Adriatic -08810505 15 n 01 Bari 0 002 @i 08524735 n 0000 #p 08810358 n 0000 | capital city of the Apulia region on the Adriatic coast -08810631 15 n 02 Sardinia 1 Sardegna 1 003 @i 09316454 n 0000 #p 09350045 n 0000 + 03025403 a 0101 | an island in the Mediterranean to the west of Italy -08810786 15 n 02 Sardinia 0 Sardegna 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | the Italian region on the island of Sardinia; the kingdom of Sardinia was the nucleus for uniting Italy during the 19th century -08810999 15 n 02 Sicily 1 Sicilia 1 007 @i 09316454 n 0000 #p 09350045 n 0000 + 02959224 a 0101 -r 01290162 n 0000 -r 01296127 n 0000 -r 01296296 n 0000 %p 08811653 n 0000 | the largest island in the Mediterranean -08811215 15 n 02 Sicily 0 Sicilia 0 009 @i 08803382 n 0000 #p 08801678 n 0000 %p 08784905 n 0000 %p 08805801 n 0000 %p 08810051 n 0000 %p 08811473 n 0000 %p 08811812 n 0000 %p 09174718 n 0000 %m 09717566 n 0000 | the Italian region on the island of Sicily -08811473 15 n 01 Palermo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08811215 n 0000 | the capital of Sicily; located in northwestern Sicily; an important port for 3000 years -08811653 15 n 02 Cape_Passero 0 Passero_Cape 0 002 @i 09233715 n 0000 #p 08810999 n 0000 | a cape that forms the southeastern corner of the island of Sicily -08811812 15 n 02 Agrigento 0 Acragas 0 002 @i 08665504 n 0000 #p 08811215 n 0000 | a town in Italy in southwestern Sicily near the coast; the site of six Greek temples -08811982 15 n 02 Tuscany 0 Toscana 0 006 @i 08803382 n 0000 #p 08801678 n 0000 + 02970689 a 0101 %p 08809910 n 0000 %p 08812166 n 0000 %m 09717696 n 0000 | a region in central Italy -08812166 15 n 02 Firenze 0 Florence 0 003 @i 08524735 n 0000 #p 08811982 n 0000 %m 10097590 n 0000 | a city in central Italy on the Arno; provincial capital of Tuscany; center of the Italian Renaissance from 14th to 16th centuries -08812399 15 n 01 Trentino-Alto_Adige 0 003 @i 08803382 n 0000 #p 08801678 n 0000 %p 08812552 n 0000 | a region of northeastern Italy bordering Austria -08812552 15 n 02 Trento 0 Trent 0 002 @i 08524735 n 0000 #p 08812399 n 0000 | a city in northern Italy (northwest of Venice) on the River Adige; the site of the Council of Trent -08812732 15 n 01 Umbria 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | a mountainous region in central Italy -08812842 15 n 01 Valle_D'Aosta 0 002 @i 08803382 n 0000 #p 08801678 n 0000 | a region in northwestern Italy -08812952 15 n 03 Veneto 0 Venezia-Euganea 0 Venetia 0 005 @i 08803382 n 0000 #p 08801678 n 0000 %p 08813156 n 0000 %p 08813264 n 0000 %p 08813699 n 0000 | a region of northeastern Italy on the Adriatic -08813156 15 n 03 Padua 0 Padova 0 Patavium 0 002 @i 08524735 n 0000 #p 08812952 n 0000 | a city in Veneto -08813264 15 n 02 Venice 0 Venezia 0 005 @i 08524735 n 0000 #p 08812952 n 0000 + 02970820 a 0101 %p 08813586 n 0000 %m 09717454 n 0000 | the provincial capital of Veneto; built on 118 islands within a lagoon in the Gulf of Venice; has canals instead of streets; one of Italy's major ports and a famous tourist attraction -08813586 15 n 01 Grand_Canal 1 002 @i 02947212 n 0000 #p 08813264 n 0000 | the major waterway in Venice, Italy -08813699 15 n 01 Verona 0 002 @i 08524735 n 0000 #p 08812952 n 0000 | a city in Veneto on the River Adige -08813807 15 n 01 Etruria 0 003 @i 08544813 n 0000 #p 08801678 n 0000 %m 09716643 n 0000 | an ancient country in central Italy; assimilated by the Romans by about 200 BC -08813978 15 n 03 Romania 0 Roumania 0 Rumania 0 012 @i 08696931 n 0000 #p 09275473 n 0000 + 02962272 a 0302 + 02962272 a 0203 + 02962272 a 0101 %p 08814333 n 0000 %p 08814474 n 0000 %p 08814664 n 0000 %p 09236423 n 0000 %p 09263087 n 0000 %p 09460888 n 0000 %m 09728285 n 0000 | a republic in southeastern Europe with a short coastline on the Black Sea -08814333 15 n 01 Brasov 0 002 @i 08524735 n 0000 #p 08813978 n 0000 | a city in central Romania in the foothills of the Transylvanian Alps -08814474 15 n 04 Bucharest 0 Bucharesti 0 Bucuresti 0 capital_of_Romania 0 002 @i 08691669 n 0000 #p 08813978 n 0000 | national capital and largest city of Romania in southeastern Romania -08814664 15 n 01 Constantina 0 002 @i 08524735 n 0000 #p 08813978 n 0000 | a Romanian resort city on the Black Sea -08814781 15 n 01 Transylvania 0 001 @i 08630039 n 0000 | a historical plateau region in northwestern Romania that is separated from the rest of the country by the Transylvanian Alps; originally part of Hungary; incorporated into Romania at the end of World War I -08815046 15 n 03 Rwanda 0 Rwandese_Republic 0 Ruanda 0 009 @i 08698379 n 0000 #p 09189411 n 0000 #p 08699426 n 0000 -r 08016900 n 0000 %p 08815346 n 0000 %p 09326299 n 0000 %m 09693100 n 0000 %m 09693809 n 0000 %m 09749509 n 0000 | a landlocked republic in central Africa; formerly a German colony -08815346 15 n 02 Kigali 0 capital_of_Rwanda 0 002 @i 08691669 n 0000 #p 08815046 n 0000 | the national capital and largest city of Rwanda; located in central Rwanda -08815513 15 n 01 Yugoslavia 1 001 @i 08696931 n 0000 | a former country of southeastern Europe bordering the Adriatic Sea; formed in 1918 and named Yugoslavia in 1929; controlled by Marshal Tito as a communist state until his death in 1980; "Tito's Yugoslavia included Slovenia, Croatia, Macedonia, Bosnia-Herzegovina, Serbia, and Montenegro" -08815858 15 n 03 Croatia 0 Republic_of_Croatia 0 Hrvatska 0 007 @i 08696931 n 0000 #p 08713772 n 0000 + 02964107 a 0101 %p 08818835 n 0000 %p 08819016 n 0000 %p 08819128 n 0000 %m 09751256 n 0000 | a republic in the western Balkans in south-central Europe in the eastern Adriatic coastal area; formerly part of the Habsburg monarchy and Yugoslavia; became independent in 1991 -08816236 15 n 05 Serbia_and_Montenegro 0 Union_of_Serbia_and_Montenegro 0 Yugoslavia 0 Federal_Republic_of_Yugoslavia 0 Jugoslavija 0 007 @i 08696931 n 0000 + 02962013 a 0301 %p 08816969 n 0000 %p 08817235 n 0000 %p 08817418 n 0000 %p 09263087 n 0000 %m 09750891 n 0000 | a mountainous republic in southeastern Europe bordering on the Adriatic Sea; formed from two of the six republics that made up Yugoslavia until 1992; Serbia and Montenegro were known as the Federal Republic of Yugoslavia until 2003 when they adopted the name of the Union of Serbia and Montenegro -08816807 15 n 01 Kosovo 0 002 @i 08654360 n 0000 #p 08816969 n 0000 | a Serbian province in southern Serbia and Montenegro populated predominantly by Albanians -08816969 15 n 02 Serbia 0 Srbija 0 006 @i 08574314 n 0000 #p 08816236 n 0000 + 02963942 a 0101 %p 08816807 n 0000 %p 08817418 n 0000 %m 09751076 n 0000 | a historical region in central and northern Yugoslavia; Serbs settled the region in the 6th and 7th centuries -08817235 15 n 02 Montenegro 0 Crna_Gora 0 002 @i 08574314 n 0000 #p 08816236 n 0000 | a former country bordering on the Adriatic Sea; now part of the Union of Serbia and Montenegro -08817418 15 n 03 Belgrade 0 Beograd 0 capital_of_Serbia_and_Montenegro 0 003 @i 08691669 n 0000 #p 08816236 n 0000 #p 08816969 n 0000 | capital and largest city of Serbia and Montenegro; situated on the Danube -08817630 15 n 05 Bosnia_and_Herzegovina 0 Republic_of_Bosnia_and_Herzegovina 0 Bosna_i_Hercegovina 0 Bosnia-Herzegovina 0 Bosnia 0 004 @i 08696931 n 0000 + 02964629 a 0501 %p 08818135 n 0000 %p 08818247 n 0000 | a mountainous republic of south-central Europe; formerly part of the Ottoman Empire and then a part of Yugoslavia; voted for independence in 1992 but the mostly Serbian army of Yugoslavia refused to accept the vote and began ethnic cleansing in order to rid Bosnia of its Croats and Muslims -08818135 15 n 01 Bosnia 1 002 @i 08654360 n 0000 #p 08817630 n 0000 | the northern part of Bosnia-Herzegovina -08818247 15 n 01 Sarajevo 0 002 @i 08524735 n 0000 #p 08817630 n 0000 | capital and largest city of Bosnia; scene of the assassination of Francis Ferdinand in 1914 which precipitated World War I -08818444 15 n 03 Slovenia 0 Republic_of_Slovenia 0 Slovenija 0 005 @i 08696931 n 0000 + 02964291 a 0101 %p 08818736 n 0000 %m 09731343 n 0000 %m 09749753 n 0000 | a mountainous republic in central Europe; formerly part of the Habsburg monarchy and Yugoslavia; achieved independence in 1991 -08818736 15 n 01 Ljubljana 0 002 @i 08691669 n 0000 #p 08818444 n 0000 | the capital of Slovenia -08818835 15 n 02 Dubrovnik 0 Ragusa 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08815858 n 0000 | a port city in southwestern Croatia on the Adriatic; a popular tourist center -08819016 15 n 01 Split 0 002 @i 08524735 n 0000 #p 08815858 n 0000 | an old Croatian city on the Adriatic Sea -08819128 15 n 01 Zagreb 0 002 @i 08691669 n 0000 #p 08815858 n 0000 | the capital of Croatia -08819223 15 n 01 Dalmatia 0 003 @i 08574314 n 0000 + 03059551 a 0101 %m 09988918 n 0000 | a historical region of Croatia on the Adriatic Sea; mountainous with many islands -08819397 15 n 03 Greenland 0 Gronland 0 Kalaallit_Nunaat 0 005 @i 09316454 n 0000 #p 09209263 n 0000 #p 09204977 n 0000 %p 08954443 n 0000 -r 09449949 n 0000 | the largest island in the world; lies between the North Atlantic and the Arctic Ocean; a self-governing province of Denmark -08819683 15 n 01 Baffin_Island 0 003 @i 09316454 n 0000 #p 09204977 n 0000 #p 08820121 n 0000 | the 5th largest island and the largest island of Arctic Canada; lies between Greenland and Hudson Bay -08819883 15 n 01 Labrador 0 003 @i 08574314 n 0000 #p 08824937 n 0000 #p 09328311 n 0000 | the mainland part of the province of Newfoundland and Labrador in the eastern part of the large Labrador-Ungava Peninsula in northeastern Canada -08820121 15 n 01 Canada 0 044 @i 08702805 n 0000 #p 09372504 n 0000 #m 08049989 n 0000 #m 08857682 n 0000 #m 08174398 n 0000 + 02982473 a 0101 -r 01088304 n 0103 -r 01088304 n 0102 -r 03218198 n 0000 -r 08342419 n 0000 -r 08342888 n 0000 -r 08343102 n 0000 -c 08343324 n 0000 -r 08346905 n 0000 %p 08819683 n 0000 %p 08821319 n 0000 %p 08821578 n 0000 %p 08822202 n 0000 %p 08822855 n 0000 %p 08823968 n 0000 %p 08824937 n 0000 %p 08825477 n 0000 %p 08825664 n 0000 %p 08825987 n 0000 %p 08827126 n 0000 -r 08828432 n 0000 %p 08829071 n 0000 %p 08829775 n 0000 %p 08830456 n 0000 %p 09250678 n 0000 %p 09292751 n 0000 %p 09307031 n 0000 %p 09328311 n 0000 %p 09344863 n 0000 %p 09370552 n 0000 %p 09380588 n 0000 %p 09420030 n 0000 %p 09482916 n 0000 %m 09696585 n 0000 -r 10313000 n 0000 -r 10525878 n 0000 -r 13363970 n 0102 -r 15200314 n 0000 -r 15200661 n 0000 | a nation in northern North America; the French were the first Europeans to settle in mainland Canada; "the border between the United States and Canada is the longest unguarded border in the world" -08821187 15 n 01 Acadia 0 002 @i 08552138 n 0000 #p 08821578 n 0000 | the French-speaking part of the Canadian Maritime Provinces -08821319 15 n 03 Laurentian_Plateau 0 Laurentian_Highlands 0 Canadian_Shield 0 002 @i 09453008 n 0000 #p 08820121 n 0000 | a large plateau that occupies more than 40% of the land area of Canada; it extends from the Great Lakes northward to the Arctic Ocean -08821578 15 n 03 Maritime_Provinces 0 Maritimes 0 Canadian_Maritime_Provinces 0 006 @i 08574314 n 0000 #p 08820121 n 0000 %p 08821187 n 0000 %p 08824484 n 0000 %p 08826306 n 0000 %p 08828750 n 0000 | the collective name for the Canadian provinces of New Brunswick and Nova Scotia and Prince Edward Island -08821885 15 n 01 Canadian_province 0 011 @ 08654360 n 0000 ~i 08822202 n 0000 ~i 08822855 n 0000 ~i 08823968 n 0000 ~i 08824484 n 0000 ~i 08824937 n 0000 ~i 08826306 n 0000 ~i 08827126 n 0000 ~i 08828750 n 0000 ~i 08829071 n 0000 ~i 08829775 n 0000 | Canada is divided into 12 provinces for administrative purposes -08822202 15 n 01 Alberta 0 005 @i 08821885 n 0000 #p 08820121 n 0000 %p 08822427 n 0000 %p 08822546 n 0000 %p 08822742 n 0000 | one of the three prairie provinces in western Canada; rich in oil and natural gas and minerals -08822427 15 n 01 Banff 0 002 @i 08524735 n 0000 #p 08822202 n 0000 | a popular vacation spot in the Canadian Rockies -08822546 15 n 01 Calgary 0 002 @i 08524735 n 0000 #p 08822202 n 0000 | the largest city in southern Alberta; an oil and gas center and a technology center for Alberta and most of western Canada -08822742 15 n 01 Edmonton 0 002 @i 08695198 n 0000 #p 08822202 n 0000 | the capital of the province of Alberta -08822855 15 n 01 British_Columbia 0 012 @i 08821885 n 0000 #p 08820121 n 0000 %p 08564739 n 0000 %p 08823156 n 0000 %p 08823314 n 0000 %p 08823480 n 0000 %p 08823728 n 0000 -r 08823728 n 0000 %p 09313241 n 0000 %p 09402553 n 0000 %p 09429934 n 0000 %p 09453718 n 0000 | a province in western Canada -08823156 15 n 01 Nanaimo 0 002 @i 08665504 n 0000 #p 08822855 n 0000 | a town in southwestern British Columbia on Vancouver Island to the west of Vancouver -08823314 15 n 01 Victoria 0 003 @i 08695198 n 0000 @i 08633957 n 0000 #p 08822855 n 0000 | capital of the Canadian province of British Columbia on Vancouver Island -08823480 15 n 01 Vancouver 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08822855 n 0000 | a port city in southwestern British Columbia on an arm of the Pacific Ocean opposite Vancouver Island; Canada's chief Pacific port and third largest city -08823728 15 n 01 Vancouver_Island 0 003 @i 09316454 n 0000 #p 08822855 n 0000 ;r 08822855 n 0000 | an island off southwestern Canada (off the southwestern coast of British Columbia); the largest island off the west coast of North America -08823968 15 n 01 Manitoba 0 005 @i 08821885 n 0000 #p 08820121 n 0000 %p 08824152 n 0000 %p 08824323 n 0000 %p 09480428 n 0000 | one of the three prairie provinces in central Canada -08824152 15 n 01 Winnipeg 0 002 @i 08695198 n 0000 #p 08823968 n 0000 | the capital and largest city of Manitoba; located in southern Manitoba; known for severe winters -08824323 15 n 01 Churchill 0 002 @i 08665504 n 0000 #p 08823968 n 0000 | a Canadian town in northern Manitoba on Hudson Bay; important port for shipping grain -08824484 15 n 01 New_Brunswick 0 005 @i 08821885 n 0000 #p 08821578 n 0000 %p 08824654 n 0000 %p 08824771 n 0000 %p 09419536 n 0000 | a province in southeastern Canada -08824654 15 n 01 Fredericton 0 002 @i 08695198 n 0000 #p 08824484 n 0000 | the provincial capital of New Brunswick -08824771 15 n 02 Saint_John 0 St._John 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08824484 n 0000 | a port in eastern Canada; the largest city in New Brunswick -08824937 15 n 01 Newfoundland_and_Labrador 0 004 @i 08821885 n 0000 #p 08820121 n 0000 %p 08819883 n 0000 %p 08825321 n 0000 | a Canadian province on the island of Newfoundland and on the mainland along the coast of the Labrador Sea; became Canada's 10th province in 1949 -08825211 15 n 01 Newfoundland 1 002 @i 09316454 n 0000 #p 09209263 n 0000 | an island in the north Atlantic -08825321 15 n 02 Saint_John's 0 St._John's 0 003 @i 08695198 n 0000 @i 08633957 n 0000 #p 08824937 n 0000 | a port and provincial capital of Newfoundland -08825477 15 n 01 Northwest_Territories 0 004 @i 08552138 n 0000 #p 08820121 n 0000 %p 08826150 n 0000 %p 09293744 n 0000 | a large territory in northwestern Canada; part is now Nunavut -08825664 15 n 01 Nunavut 0 002 @i 08552138 n 0000 #p 08820121 n 0000 | an Arctic territory in northern Canada created in 1999 and governed solely by the Inuit; includes the eastern part of what was the Northwest Territories and most of the islands of the Arctic Archipelago; "Nunavut is the homeland of the Inuit people" -08825987 15 n 01 Arctic_Archipelago 0 002 @i 09203827 n 0000 #p 08820121 n 0000 | all the islands that lie to the north of mainland Canada and the Arctic Circle -08826150 15 n 01 Yellowknife 0 002 @i 08665504 n 0000 #p 08825477 n 0000 | a town in the Northwest Territories in northern Canada on the Great Slave Lake -08826306 15 n 01 Nova_Scotia 0 006 @i 08821885 n 0000 #p 08821578 n 0000 %p 08826699 n 0000 %p 08826841 n 0000 %p 08827002 n 0000 %p 09234756 n 0000 | the Canadian province in the Maritimes consisting of the Nova Scotia peninsula and Cape Breton Island; French settlers who called the area Acadia were exiled to Louisiana by the British in the 1750s and their descendants are know as Cajuns -08826699 15 n 01 Cape_Breton_Island 0 002 @i 09316454 n 0000 #p 08826306 n 0000 | an island that forms the northeastern part of Nova Scotia -08826841 15 n 01 Nova_Scotia 1 002 @i 09388848 n 0000 #p 08826306 n 0000 | a peninsula in eastern Canada between the Bay of Fundy and the Saint Lawrence River -08827002 15 n 01 Halifax 0 002 @i 08695198 n 0000 #p 08826306 n 0000 | provincial capital and largest city of Nova Scotia -08827126 15 n 01 Ontario 0 014 @i 08821885 n 0000 #p 08820121 n 0000 %p 08827486 n 0000 %p 08827689 n 0000 %p 08827853 n 0000 %p 08828013 n 0000 %p 08828151 n 0000 %p 08828296 n 0000 %p 08828432 n 0000 %p 09232165 n 0000 %p 09321338 n 0000 %p 09332976 n 0000 %p 09370773 n 0000 %p 09430990 n 0000 | a prosperous and industrialized province in central Canada -08827486 15 n 03 Ottawa 0 Canadian_capital 0 capital_of_Canada 0 002 @i 08691669 n 0000 #p 08827126 n 0000 | the capital of Canada (located in southeastern Ontario across the Ottawa river from Quebec) -08827689 15 n 01 Hamilton 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08827126 n 0000 | a port city in southeastern Ontario at the western end of Lake Ontario -08827853 15 n 01 Kingston 2 002 @i 08665504 n 0000 #p 08827126 n 0000 | a town in southeast Ontario on Lake Ontario near the head of the Saint Lawrence River -08828013 15 n 01 Sault_Sainte_Marie 0 002 @i 08665504 n 0000 #p 08827126 n 0000 | a town of southern Ontario opposite northern Michigan -08828151 15 n 01 Sudbury 0 002 @i 08524735 n 0000 #p 08827126 n 0000 | a city in south central Canada in Ontario; a major nickel mining center -08828296 15 n 01 Thunder_Bay 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08827126 n 0000 | a port city in Ontario on Lake Superior -08828432 15 n 01 Toronto 0 004 @i 08695198 n 0000 #p 08827126 n 0000 ;r 08820121 n 0000 %p 03055537 n 0000 | the provincial capital and largest city in Ontario (and the largest city in Canada) -08828627 15 n 01 Windsor 0 001 @i 08524735 n 0000 | a city in southeastern Ontario on the Detroit River opposite Detroit -08828750 15 n 01 Prince_Edward_Island 0 003 @i 08821885 n 0000 #p 08821578 n 0000 %p 08828928 n 0000 | an island in the Gulf of Saint Lawrence; the smallest province of Canada -08828928 15 n 01 Charlottetown 0 002 @i 08695198 n 0000 #p 08828750 n 0000 | the provincial capital and largest city of Prince Edward Island -08829071 15 n 01 Quebec 0 006 @i 08821885 n 0000 #p 08820121 n 0000 %p 08829317 n 0000 %p 08829533 n 0000 %p 09321338 n 0000 %p 09330604 n 0000 | the largest province of Canada; a French colony from 1663 to 1759 when it was lost to the British -08829317 15 n 02 Quebec 1 Quebec_City 0 004 @i 08695198 n 0000 #p 08829071 n 0000 %p 03934416 n 0000 %p 04033178 n 0000 | the French-speaking capital of the province of Quebec; situated on the Saint Lawrence River -08829533 15 n 01 Montreal 0 002 @i 08524735 n 0000 #p 08829071 n 0000 | a city in southern Quebec province on the Saint Lawrence River; the largest city in Quebec and 2nd largest in Canada; the 2nd largest French-speaking city in the world -08829775 15 n 01 Saskatchewan 0 004 @i 08821885 n 0000 #p 08820121 n 0000 %p 08830005 n 0000 %p 08830116 n 0000 | one of the three prairie provinces in west central Canada; "vast fields of wheat grow on Saskatchewan's prairies" -08830005 15 n 01 Regina 0 002 @i 08695198 n 0000 #p 08829775 n 0000 | the provincial capital of Saskatchewan -08830116 15 n 01 Saskatoon 0 002 @i 08524735 n 0000 #p 08829775 n 0000 | a city in central Saskatchewan; the largest city in the province -08830256 15 n 01 Dawson 0 002 @i 08665504 n 0000 #p 08830456 n 0000 | a town in northwestern Canada in the Yukon on the Yukon River; a boom town around 1900 when gold was discovered in the Klondike -08830456 15 n 02 Yukon 0 Yukon_Territory 0 007 @i 08552138 n 0000 #p 08820121 n 0000 %p 08830256 n 0000 %p 08830720 n 0000 %p 08830882 n 0000 %p 09342729 n 0000 %p 09445088 n 0000 | a territory in northwestern Canada; site of the Klondike gold rush in the 1890s -08830720 15 n 01 Klondike 0 002 @i 08574314 n 0000 #p 08830456 n 0000 | a region in northwestern Canada where gold was discovered in 1896 but exhausted by 1910 -08830882 15 n 01 Whitehorse 0 002 @i 08695198 n 0000 #p 08830456 n 0000 | the provincial capital of the Yukon Territory -08831004 15 n 02 Australia 0 Commonwealth_of_Australia 0 052 @i 08544813 n 0000 #p 09211266 n 0000 #m 08049989 n 0000 #m 08857682 n 0000 + 03045750 a 0101 -r 01675931 a 0000 -r 01739898 a 0000 -r 00293417 n 0000 -r 02871963 n 0000 -r 03633632 n 0000 -r 04368109 n 0000 -r 04495310 n 0000 -r 06940290 n 0000 -r 07896994 n 0000 %p 08832269 n 0000 %p 08832447 n 0000 %p 08832691 n 0000 %p 08833130 n 0000 %p 08833682 n 0000 %p 08834123 n 0000 %p 08834408 n 0000 %p 08834654 n 0000 %p 08834916 n 0000 %p 08835188 n 0000 %p 08835390 n 0000 %p 09169557 n 0000 %p 09169930 n 0000 %p 09170109 n 0000 %p 09172634 n 0000 %p 09211735 n 0000 -r 09220922 n 0000 %p 09235244 n 0000 %p 09235469 n 0000 %p 09277913 n 0000 %p 09278162 n 0000 %p 09292007 n 0000 %p 09292348 n 0000 %p 09292545 n 0000 %p 09297920 n 0000 %p 09363420 n 0000 %p 09363620 n 0000 %p 09364778 n 0000 %m 09691279 n 0000 -r 09703573 n 0000 -r 10300154 n 0000 -r 10416828 n 0000 -r 10525878 n 0000 -r 10675142 n 0000 -r 10682169 n 0000 -r 11196934 n 0000 -r 13080866 n 0000 -r 14879492 n 0000 | a nation occupying the whole of the Australian continent; Aboriginal tribes are thought to have migrated from southeastern Asia 20,000 years ago; first Europeans were British convicts sent there as a penal colony -08832269 15 n 03 Canberra 0 Australian_capital 0 capital_of_Australia 0 002 @i 08691669 n 0000 #p 08831004 n 0000 | the capital of Australia; located in southeastern Australia -08832447 15 n 01 Australian_state 0 008 @ 08654360 n 0000 #p 08831004 n 0000 ~i 08832691 n 0000 ~i 08833130 n 0000 ~i 08833682 n 0000 ~i 08834123 n 0000 ~i 08834408 n 0000 ~i 08834654 n 0000 | one of the several states constituting Australia -08832691 15 n 01 Queensland 0 006 @i 08832447 n 0000 #p 08831004 n 0000 %p 08832877 n 0000 %p 09235469 n 0000 %p 09359312 n 0000 %p 09361681 n 0000 | a state in northeastern Australia -08832877 15 n 01 Brisbane 0 002 @i 08695539 n 0000 #p 08832691 n 0000 | capital and largest city of Queensland state; located in the southeastern corner of Queensland on the Pacific; settled by British as a penal colony; 3rd largest city in Australia -08833130 15 n 01 New_South_Wales 0 004 @i 08832447 n 0000 #p 08831004 n 0000 %p 08833295 n 0000 %p 08833524 n 0000 | an Australian state in southeastern Australia -08833295 15 n 01 Sydney 0 003 @i 08695539 n 0000 #p 08833130 n 0000 %p 04374608 n 0000 | the largest Australian city located in southeastern Australia on the Tasman Sea; state capital of New South Wales; Australia's chief port -08833524 15 n 01 Wagga_Wagga 0 002 @i 08665504 n 0000 #p 08833130 n 0000 | a town on the Murrumbidgee River in New South Wales; agricultural trading center -08833682 15 n 01 Victoria 1 003 @i 08832447 n 0000 #p 08831004 n 0000 %p 08833809 n 0000 | a state in southeastern Australia -08833809 15 n 01 Melbourne 0 002 @i 08695539 n 0000 #p 08833682 n 0000 | the capital of Victoria state and 2nd largest Australian city; a financial and commercial center -08833981 15 n 01 Tasmania 0 003 @i 09316454 n 0000 #p 09211266 n 0000 + 02809010 a 0101 | an island off the southeastern coast of Australia -08834123 15 n 01 Tasmania 1 004 @i 08832447 n 0000 #p 08831004 n 0000 + 02809010 a 0101 %p 08834280 n 0000 | an Australian state on the island of Tasmania -08834280 15 n 01 Hobart 0 003 @i 08695539 n 0000 @i 08633957 n 0000 #p 08834123 n 0000 | a port and state capital of Tasmania -08834408 15 n 01 South_Australia 0 003 @i 08832447 n 0000 #p 08831004 n 0000 %p 08834543 n 0000 | a state in south central Australia -08834543 15 n 01 Adelaide 0 002 @i 08695539 n 0000 #p 08834408 n 0000 | the state capital of South Australia -08834654 15 n 01 Western_Australia 0 003 @i 08832447 n 0000 #p 08831004 n 0000 %p 08834806 n 0000 | a state containing the western third of Australia -08834806 15 n 01 Perth 0 002 @i 08695539 n 0000 #p 08834654 n 0000 | the state capital of Western Australia -08834916 15 n 01 Northern_Territory 0 003 @i 08552138 n 0000 #p 08831004 n 0000 %p 08835058 n 0000 | a territory in north central Australia -08835058 15 n 01 Darwin 0 002 @i 08695198 n 0000 #p 08834916 n 0000 | provincial capital of the Northern Territory of Australia -08835188 15 n 01 Norfolk_Island 0 002 @i 09316454 n 0000 #p 08831004 n 0000 | an island territory of Australia in the Pacific Ocean off the eastern coast of Australia; formerly a British penal colony -08835390 15 n 01 Nullarbor_Plain 0 002 @i 09393605 n 0000 #p 08831004 n 0000 | a vast arid plain of southern Australia stretching inland from the Great Australian Bight; has sparse vegetation and no surface water and is almost uninhabited; the site of a major rocket research center -08835675 15 n 02 Aleutian_Islands 0 Aleutians 0 004 @i 09203827 n 0000 #p 09382990 n 0000 #p 09055015 n 0000 -r 08488411 n 0000 | an archipelago in the North Pacific extending southwest from Alaska -08835875 15 n 02 Oceania 0 Oceanica 0 005 @i 09203827 n 0000 #p 09382990 n 0000 %p 08836630 n 0000 %p 08836886 n 0000 %p 08841667 n 0000 | a large group of islands in the south Pacific including Melanesia and Micronesia and Polynesia (and sometimes Australasia and the Malay Archipelago) -08836165 15 n 01 Australasia 0 003 @i 09203827 n 0000 #p 09382990 n 0000 + 02650425 a 0101 | Australia, New Zealand, and neighboring islands in the South Pacific -08836329 15 n 01 Austronesia 0 009 @i 09203827 n 0000 #p 09382990 n 0000 ;r 08841667 n 0000 + 02977638 a 0101 %p 08836630 n 0000 %p 08836886 n 0000 %p 08841667 n 0000 %p 08907606 n 0000 %m 09691435 n 0000 | islands of central and South Pacific (Indonesia and Melanesia and Micronesia and Polynesia) -08836630 15 n 01 Melanesia 0 009 @i 09203827 n 0000 #p 08836329 n 0000 #p 08835875 n 0000 -c 08151753 n 0000 %p 08778597 n 0000 %p 08842819 n 0000 %p 08844108 n 0000 %p 08997976 n 0000 %p 09160775 n 0000 | the islands in the southwestern part of Oceania -08836886 15 n 01 Micronesia 1 004 @i 09203827 n 0000 #p 08836329 n 0000 #p 08835875 n 0000 %p 08837048 n 0000 | the islands in the northwestern part of Oceania -08837048 15 n 03 Micronesia 0 Federated_States_of_Micronesia 0 TT 0 010 @i 08544813 n 0000 #p 08836886 n 0000 %p 08837457 n 0000 %p 08837552 n 0000 %p 08838716 n 0000 %p 08838887 n 0000 %p 08840200 n 0000 %p 08840749 n 0000 %p 08841075 n 0000 %p 08841209 n 0000 | a country scattered over Micronesia with a constitutional government in free association with the United States; achieved independence in 1986 -08837457 15 n 01 Kolonia 0 002 @i 08691669 n 0000 #p 08837048 n 0000 | capital of Micronesia -08837552 15 n 03 Mariana_Islands 0 Marianas 0 Ladrone_Islands 0 004 @i 09203827 n 0000 #p 08837048 n 0000 %p 08837864 n 0000 %p 08838319 n 0000 | a chain of coral and volcanic islands in Micronesia (including Guam and the Northern Marianas) halfway between New Guinea and Japan; discovered by Magellan in 1521 -08837864 15 n 02 Northern_Marianas 0 Northern_Mariana_Islands 0 003 @i 08552138 n 0000 #p 08837552 n 0000 %p 08838070 n 0000 | a self-governing territory comprising all of the Mariana Islands except Guam -08838070 15 n 01 Saipan 0 003 @i 09316454 n 0000 #p 08837864 n 0000 -r 01293438 n 0000 | the largest island in the Northern Marianas and the administrative center of the commonwealth of the Northern Mariana Islands in union with the United States -08838319 15 n 02 Guam 0 GU 0 002 @i 09316454 n 0000 #p 08837552 n 0000 | the largest and southernmost island in the Marianas which is administered as a territory of the United States; it was ceded by Spain to the United States in 1898 -08838556 15 n 02 Wake_Island 0 Wake 0 003 @i 09316454 n 0000 #p 09382990 n 0000 -r 01299224 n 0000 | an island in the western Pacific between Guam and Hawaii -08838716 15 n 01 Caroline_Islands 0 002 @i 09203827 n 0000 #p 08837048 n 0000 | a long archipelago of more than 500 islands in Micronesia to the east of the Philippines -08838887 15 n 01 Marshall_Islands 1 006 @i 09203827 n 0000 #p 08837048 n 0000 %p 08839092 n 0000 %p 08839296 n 0000 %p 08839475 n 0000 %p 08839714 n 0000 | a group of coral islands in eastern Micronesia -08839092 15 n 02 Marshall_Islands 0 Republic_of_the_Marshall_Islands 0 003 @i 08544813 n 0000 #p 08838887 n 0000 ;r 09044862 n 0000 | a republic (under United States protection) on the Marshall Islands -08839296 15 n 01 Bikini 0 002 @i 09210862 n 0000 #p 08838887 n 0000 | an atoll in the Marshall Islands; formerly used by the United States as a site for testing nuclear weapons -08839475 15 n 01 Eniwetok 0 003 @i 09210862 n 0000 #p 08838887 n 0000 -r 01278509 n 0000 | an atoll in the Marshall Islands; site of an amphibious assault in World War II; later used temporarily by the United States to test atomic bombs -08839714 15 n 01 Kwajalein 0 003 @i 09210862 n 0000 #p 08838887 n 0000 -r 01282966 n 0000 | an atoll in the western Marshall Islands that was used as a Japanese air and naval base during World War II -08839916 15 n 01 Gilbert_Islands 0 003 @i 09203827 n 0000 #p 08840749 n 0000 -r 01296697 n 0000 | a group of islands in Micronesia to the southwest of Hawaii; formerly part of the British colony of Gilbert and Ellice Islands until it became part of the Republic of Kiribati in 1979 -08840200 15 n 02 Tuvalu 1 Ellice_Islands 0 003 @i 09203827 n 0000 #p 08837048 n 0000 %p 08840374 n 0000 | a group of coral islands in Micronesia to the southwest of Hawaii -08840374 15 n 01 Tuvalu 0 003 @i 08544813 n 0000 #p 08840200 n 0000 %p 08840657 n 0000 | a small island republic on the Tuvalu islands; formerly part of the British colony of Gilbert and Ellice Islands until it withdrew in 1975 and became independent of the United Kingdom in 1978 -08840657 15 n 01 Funafuti 0 002 @i 08691669 n 0000 #p 08840374 n 0000 | capital of Tuvalu -08840749 15 n 02 Kiribati 0 Republic_of_Kiribati 0 004 @i 08544813 n 0000 #p 08837048 n 0000 %p 08839916 n 0000 %p 08840964 n 0000 | an island republic in the west central Pacific just to the south of the equator -08840964 15 n 02 Tarawa 0 Bairiki 0 002 @i 08691669 n 0000 #p 08840749 n 0000 | national capital of Kiribati -08841075 15 n 01 Gilbert_and_Ellice_Islands 0 002 @i 08631531 n 0000 #p 08837048 n 0000 | a former British possession in Micronesia -08841209 15 n 03 Nauru 1 Nauru_Island 0 Pleasant_Island 0 004 @i 09316454 n 0000 #p 08837048 n 0000 + 03088968 a 0101 %p 08841483 n 0000 | a small island in the central Pacific Ocean 2,800 miles to the southwest of Hawaii; in Micronesia to the west of the Gilbert Islands -08841483 15 n 02 Nauru 0 Republic_of_Nauru 0 003 @i 08544813 n 0000 #p 08841209 n 0000 %m 09723944 n 0000 | an island republic on Nauru Island; phosphate exports support the economy -08841667 15 n 01 Polynesia 0 011 @i 09203827 n 0000 #p 08836329 n 0000 #p 08835875 n 0000 -r 05950234 n 0000 -r 07886317 n 0000 -r 08836329 n 0000 %p 08989697 n 0000 %p 08991182 n 0000 %p 09037133 n 0000 %p 09079153 n 0000 %m 09727826 n 0000 | the islands in the eastern part of Oceania -08841956 15 n 03 Malay_Archipelago 0 East_Indies 0 East_India 0 008 @i 09203827 n 0000 #p 09382990 n 0000 + 02942077 a 0301 -r 07823951 n 0000 %p 08842258 n 0000 %p 08843215 n 0000 %m 09700253 n 0000 %m 09712696 n 0000 | a group of islands in the Indian and Pacific Oceans between Asia and Australia -08842258 15 n 01 Sunda_Islands 0 004 @i 09203827 n 0000 #p 08841956 n 0000 %p 08842427 n 0000 %p 08842583 n 0000 | a chain of islands in the western Malay Archipelago -08842427 15 n 01 Greater_Sunda_Islands 0 002 @i 09203827 n 0000 #p 08842258 n 0000 | a chain of islands including Borneo and Celebes and Java and Sumatra -08842583 15 n 02 Lesser_Sunda_Islands 0 Nusa_Tenggara 0 004 @i 09203827 n 0000 #p 08842258 n 0000 %m 08908509 n 0000 %m 08908739 n 0000 | a chain of islands forming a province of Indonesia to the east of Java; includes Bali and Timor -08842819 15 n 01 Bismarck_Archipelago 0 006 @i 09203827 n 0000 #p 08836630 n 0000 #p 08844557 n 0000 %p 08843085 n 0000 %p 08843958 n 0000 %p 08845225 n 0000 | a group of islands in the southwestern Pacific to the northeast of New Guinea; part of Papua New Guinea -08843085 15 n 01 Admiralty_Islands 0 002 @i 09203827 n 0000 #p 08842819 n 0000 | a group of islands in the Bismarck Archipelago -08843215 15 n 02 Borneo 0 Kalimantan 0 008 @i 09316454 n 0000 #p 08841956 n 0000 %p 08896092 n 0000 %p 08909537 n 0000 %p 08964099 n 0000 %p 08964288 n 0000 %p 08964474 n 0000 %m 09694771 n 0000 | 3rd largest island in the world; in the western Pacific to the north of Java; largely covered by dense jungle and rain forest; part of the Malay Archipelago -08843571 15 n 01 Bougainville 0 003 @i 09316454 n 0000 #p 08998233 n 0000 #p 08844557 n 0000 | the largest of the Solomon Islands; a province of Papua New Guinea -08843735 15 n 01 Guadalcanal 0 003 @i 09316454 n 0000 #p 08997976 n 0000 -r 01280055 n 0000 | a mountainous island; the largest of the Solomon Islands in the independent state that is a member of the British Commonwealth -08843958 15 n 01 New_Britain 0 002 @i 09316454 n 0000 #p 08842819 n 0000 | the largest island in the Bismarck Archipelago; part of Papua New Guinea -08844108 15 n 01 New_Caledonia 0 003 @i 09316454 n 0000 #p 08836630 n 0000 + 02768740 a 0101 | an island to the to the east of Australia and to the north of New Zealand -08844279 15 n 01 New_Guinea 0 004 @i 09316454 n 0000 #p 09382990 n 0000 %p 08844557 n 0000 %m 09750282 n 0000 | a Pacific island to the north of Australia; the 2nd largest island in the world; the western part is governed by Indonesia and the eastern part is Papua New Guinea -08844557 15 n 02 Papua_New_Guinea 0 Independent_State_of_Papua_New_Guinea 0 007 @i 08544813 n 0000 #p 08844279 n 0000 #m 08049989 n 0000 %p 08842819 n 0000 %p 08843571 n 0000 %p 08844923 n 0000 %p 08845053 n 0000 | a parliamentary democracy on the eastern half of the island of New Guinea; in 1975 it became an independent state within the Commonwealth of Nations -08844923 15 n 01 Papua 0 003 @ 08630039 n 0000 #p 08844557 n 0000 + 03096269 a 0101 | the southeastern part of Papua New Guinea -08845053 15 n 02 Port_Moresby 0 capital_of_Papua_New_Guinea 0 002 @i 08691669 n 0000 #p 08844557 n 0000 | the administrative capital and largest city of Papua New Guinea -08845225 15 n 01 New_Ireland 0 002 @i 09316454 n 0000 #p 08842819 n 0000 | an island in the Bismarck Archipelago; part of Papua New Guinea -08845366 15 n 01 Austria-Hungary 0 002 @i 08574314 n 0000 #p 09275473 n 0000 | a geographical area in central and eastern Europe; broken into separate countries at the end of World War I -08845555 15 n 03 Austria 0 Republic_of_Austria 0 Oesterreich 0 017 @i 08696931 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 + 02961099 a 0101 -r 01299037 n 0000 %p 08846135 n 0000 %p 08846324 n 0000 %p 08846626 n 0000 %p 08846739 n 0000 %p 08846885 n 0000 %p 08847024 n 0000 %p 08847165 n 0000 %p 09194357 n 0000 %p 09228928 n 0000 %p 09263087 n 0000 %p 09464652 n 0000 %m 09691604 n 0000 | a mountainous republic in central Europe; under the Habsburgs (1278-1918) Austria maintained control of the Holy Roman Empire and was a leader in European politics until the 19th century -08846135 15 n 02 Tyrol 0 Tirol 0 004 @i 08654360 n 0000 #p 08845555 n 0000 #p 08801678 n 0000 + 02971007 a 0101 | a picturesque mountainous province of western Austria and northern Italy -08846324 15 n 03 Vienna 0 Austrian_capital 0 capital_of_Austria 0 003 @i 08691669 n 0000 #p 08845555 n 0000 -r 07880458 n 0000 | the capital and largest city of Austria; located on the Danube in northeastern Austria; was the home of Beethoven and Brahms and Haydn and Mozart and Schubert and Strauss -08846626 15 n 01 Graz 0 002 @i 08524735 n 0000 #p 08845555 n 0000 | an industrial city is southeastern Austria -08846739 15 n 02 Linz 0 Lentia 0 002 @i 08524735 n 0000 #p 08845555 n 0000 | city in northern Austria on the Danube; noted as a cultural center -08846885 15 n 01 Salzburg 0 002 @i 08524735 n 0000 #p 08845555 n 0000 | city in western Austria; a music center and birthplace of Mozart -08847024 15 n 01 Innsbruck 0 002 @i 08524735 n 0000 #p 08845555 n 0000 | city in southwestern Austria; known as a summer and winter resort -08847165 15 n 01 Wagram 0 002 @i 08665504 n 0000 #p 08845555 n 0000 | a town in northeastern Austria -08847268 15 n 03 Bahamas 0 Commonwealth_of_the_Bahamas 0 Bahama_Islands 0 007 @i 08544813 n 0000 #p 08747054 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 + 03045992 a 0101 %p 08847570 n 0000 %m 09691729 n 0000 | island country in the Atlantic to the east of Florida and Cuba; a popular winter resort -08847570 15 n 02 Nassau 0 capital_of_the_Bahamas 0 002 @i 08691669 n 0000 #p 08847268 n 0000 | the capital of the Bahamas -08847694 15 n 02 Arabian_Peninsula 0 Arabia 0 013 @i 09388848 n 0000 #p 09207288 n 0000 + 03044566 a 0201 %p 08975106 n 0000 %p 08986691 n 0000 %p 08993288 n 0000 %p 08995242 n 0000 %p 08995515 n 0000 %p 09044190 n 0000 %p 09164561 n 0000 %p 09167767 n 0000 %m 09729530 n 0000 -r 10052497 n 0000 | a peninsula between the Red Sea and the Persian Gulf; strategically important for its oil resources -08848094 15 n 03 Bahrain 0 State_of_Bahrain 0 Bahrein 0 006 @i 08700255 n 0000 #p 09207288 n 0000 #p 08910394 n 0000 #m 08172103 n 0000 %p 08848568 n 0000 %m 09691858 n 0000 | an island country in the Persian Gulf off the coast of Saudi Arabia; oil revenues funded progressive programs until reserves were exhausted in 1970s -08848421 15 n 04 Bahrain 1 Bahrain_Island 0 Bahrein 1 Bahrein_Island 0 002 @i 09316454 n 0000 #p 09390424 n 0000 | an island in the Persian Gulf -08848568 15 n 02 Manama 0 capital_of_Bahrain 0 002 @i 08691669 n 0000 #p 08848094 n 0000 | the capital of Bahrain; located at the northern end of Bahrain Island -08848731 15 n 04 Bangladesh 0 People's_Republic_of_Bangladesh 0 Bangla_Desh 0 East_Pakistan 0 010 @i 08700255 n 0000 #p 09207288 n 0000 -r 08096624 n 0000 -r 08283180 n 0000 %p 08849226 n 0000 %p 08849372 n 0000 %p 09228144 n 0000 %p 09286630 n 0000 %m 09691994 n 0000 %m 09692430 n 0000 | a Muslim republic in southern Asia bordered by India to the north and west and east and the Bay of Bengal to the south; formerly part of India and then part of Pakistan; it achieved independence in 1971 -08849226 15 n 03 Dhaka 0 Dacca 0 capital_of_Bangladesh 0 002 @i 08691669 n 0000 #p 08848731 n 0000 | the capital and largest city of Bangladesh -08849372 15 n 01 Chittagong 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08848731 n 0000 | a port city and industrial center in southeastern Bangladesh on the Bay of Bengal -08849549 15 n 01 Flanders 0 002 @i 08696931 n 0000 #p 09275473 n 0000 | a medieval country in northern Europe that included regions now parts of northern France and Belgium and southwestern Netherlands -08849753 15 n 03 Belgium 0 Kingdom_of_Belgium 0 Belgique 0 027 @i 08696931 n 0000 #p 09275473 n 0000 #m 08305766 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 + 02960507 a 0101 -r 01272582 n 0000 -r 01278873 n 0000 -r 01299476 n 0000 -r 01300508 n 0000 -r 01300782 n 0000 -r 01301080 n 0000 -r 08541609 n 0000 %p 08850450 n 0000 %p 08850741 n 0000 %p 08851034 n 0000 %p 08851364 n 0000 %p 08851500 n 0000 %p 08851687 n 0000 %p 08851830 n 0000 %p 08852065 n 0000 %p 09353437 n 0000 %p 09421191 n 0000 %p 09425835 n 0000 %m 09694109 n 0000 %m 09706132 n 0000 %m 09750641 n 0000 | a monarchy in northwestern Europe; headquarters for the European Union and for the North Atlantic Treaty Organization -08850450 15 n 04 Bruxelles 0 Brussels 0 Belgian_capital 0 capital_of_Belgium 0 002 @i 08691669 n 0000 #p 08849753 n 0000 | the capital and largest city of Belgium; seat of the North Atlantic Treaty Organization -08850663 15 n 01 Aalst 0 001 @i 08665504 n 0000 | a town in central Belgium -08850741 15 n 03 Antwerpen 0 Antwerp 0 Anvers 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08849753 n 0000 | a busy port and financial center in northern Belgium on the Scheldt river; it has long been a center for the diamond industry and the first stock exchange was opened there in 1460 -08851034 15 n 02 Bruges 0 City_of_Bridges 0 003 @i 08524735 n 0000 #p 08849753 n 0000 #m 08304135 n 0000 | a city in northwestern Belgium that is connected by canal to the North Sea; in the 13th century it was a leading member of the Hanseatic League; the old city (known as the City of Bridges) is a popular tourist attraction -08851364 15 n 01 Charleroi 0 002 @i 08524735 n 0000 #p 08849753 n 0000 | city in southwestern Belgium; center of an industrial region -08851500 15 n 03 Gent 0 Gand 0 Ghent 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08849753 n 0000 | port city in northwestern Belgium and industrial center; famous for cloth industry -08851687 15 n 02 Liege 0 Luik 0 002 @i 08524735 n 0000 #p 08849753 n 0000 | city in eastern Belgium; largest French-speaking city in Belgium -08851830 15 n 01 Namur 0 002 @i 08524735 n 0000 #p 08849753 n 0000 | a city in south central Belgium situated on a promontory between the Meuse River and the Sambre River; the site of intense fighting in World War I and World War II -08852065 15 n 01 Waterloo 0 002 @i 08665504 n 0000 #p 08849753 n 0000 | a town in central Belgium where in 1815 Napoleon met his final defeat -08852209 15 n 02 Bhutan 0 Kingdom_of_Bhutan 0 003 @i 08700255 n 0000 #p 09207288 n 0000 %m 09694529 n 0000 | a landlocked principality in the Himalayas to the northeast of India -08852389 15 n 02 Botswana 0 Republic_of_Botswana 0 007 @i 08698379 n 0000 #p 09189411 n 0000 %p 08852685 n 0000 %p 09170294 n 0000 %m 09692915 n 0000 %m 09693372 n 0000 %m 09693618 n 0000 | a landlocked republic in south-central Africa that became independent from British control in the 1960s -08852685 15 n 02 Gaborone 0 capital_of_Botswana 0 002 @i 08691669 n 0000 #p 08852389 n 0000 | capital and largest city of Botswana in the extreme southeast -08852843 15 n 02 Bolivia 0 Republic_of_Bolivia 0 015 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02967485 a 0101 -r 08035233 n 0000 -r 08046032 n 0000 %p 08853308 n 0000 %p 08853510 n 0000 %p 08853612 n 0000 %p 09196302 n 0000 %p 09196611 n 0000 %p 09310011 n 0000 %p 09310162 n 0000 %p 09420273 n 0000 %m 09694664 n 0000 | a landlocked republic in central South America; Simon Bolivar founded Bolivia in 1825 after winning independence from Spain -08853308 15 n 02 La_Paz 0 capital_of_Bolivia 0 002 @i 08691669 n 0000 #p 08852843 n 0000 | capital city in western Bolivia and the administrative seat of Bolivia's government; largest city in Bolivia -08853510 15 n 01 Santa_Cruz 1 002 @i 08524735 n 0000 #p 08852843 n 0000 | a city in central Bolivia -08853612 15 n 01 Sucre 0 002 @i 08524735 n 0000 #p 08852843 n 0000 | the judicial capital and seat of the judiciary in Bolivia -08853741 15 n 03 Brazil 0 Federative_Republic_of_Brazil 0 Brasil 0 038 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02966829 a 0101 -c 08152069 n 0000 %p 08711655 n 0000 %p 08854725 n 0000 %p 08854855 n 0000 %p 08855126 n 0000 %p 08855308 n 0000 %p 08855505 n 0000 %p 08855609 n 0000 %p 08855763 n 0000 %p 08855909 n 0000 %p 08856037 n 0000 %p 08856266 n 0000 %p 08856475 n 0000 %p 08856630 n 0000 %p 08856793 n 0000 %p 08856945 n 0000 %p 08857099 n 0000 %p 08857260 n 0000 %p 08857405 n 0000 %p 08857529 n 0000 %p 09195372 n 0000 %p 09202810 n 0000 %p 09309456 n 0000 %p 09345127 n 0000 %p 09384771 n 0000 %p 09384921 n 0000 %p 09385416 n 0000 %p 09387624 n 0000 %p 09401340 n 0000 %p 09423617 n 0000 %p 09430416 n 0000 %p 09459393 n 0000 %p 09467765 n 0000 %m 09694894 n 0000 | the largest Latin American country and the largest Portuguese speaking country in the world; located in the central and northeastern part of South America; world's leading coffee exporter -08854725 15 n 01 Acre 1 002 @i 08552138 n 0000 #p 08853741 n 0000 | a territory of western Brazil bordering on Bolivia and Peru -08854855 15 n 05 Belem 0 Para 0 Feliz_Lusitania 0 Santa_Maria_de_Belem 0 St._Mary_of_Bethlehem 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08853741 n 0000 | port city in northern Brazil in the Amazon delta; main port and commercial center for the Amazon River basin -08855126 15 n 01 Belo_Horizonte 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | city in southeastern Brazil to the north of Rio de Janeiro; the first of Brazil's planned communities -08855308 15 n 03 Brasilia 0 Brazilian_capital 0 capital_of_Brazil 0 002 @i 08691669 n 0000 #p 08853741 n 0000 | the capital of Brazil; a city built on the central plateau and inaugurated in 1960 -08855505 15 n 01 Curitiba 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in southeastern Brazil -08855609 15 n 01 Joao_Pessoa 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in northeastern Brazil near the Atlantic Ocean to the north of Recife -08855763 15 n 01 Governador_Valadares 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in eastern Brazil to the northeast of Belo Horizonte -08855909 15 n 01 Limeira 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city of southeastern Brazil (northwest of Sao Paulo) -08856037 15 n 01 Natal 1 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08853741 n 0000 | a port city in northeastern Brazil -08856162 15 n 01 Osasco 0 001 @i 08524735 n 0000 | a city in southeastern Brazil; suburb of Sao Paulo -08856266 15 n 02 Rio_de_Janeiro 0 Rio 0 003 @i 08524735 n 0000 #p 08853741 n 0000 %m 09695019 n 0000 | the former capital and 2nd largest city of Brazil; chief Brazilian port; famous as a tourist attraction -08856475 15 n 02 Recife 0 Pernambuco 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08853741 n 0000 | a port city of northeastern Brazil on the Atlantic -08856630 15 n 01 Santos 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08853741 n 0000 | a port city in southwestern Brazil on an offshore island near Sao Paulo -08856793 15 n 01 Sao_Bernardo_do_Campo 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in southeastern Brazil; an industrial suburb of Sao Paulo -08856945 15 n 01 Sao_Goncalo 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | an industrial city in southeastern Brazil across the bay from Rio de Janeiro -08857099 15 n 01 Sao_Joao_de_Meriti 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in southeastern Brazil that is a residential suburb of Rio de Janeiro -08857260 15 n 01 Sao_Jose_dos_Campos 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city in southeastern Brazil to the northeast of Sao Paulo -08857405 15 n 01 Sao_Louis 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | a city on an offshore island in northeast Brazil -08857529 15 n 01 Sao_Paulo 0 002 @i 08524735 n 0000 #p 08853741 n 0000 | an ultramodern city in southeastern Brazil; the largest city in South America -08857682 15 n 01 British_Empire 0 010 @i 08574314 n 0000 %m 08747494 n 0000 %m 08820121 n 0000 %m 08831004 n 0000 %m 08858248 n 0000 %m 08858529 n 0000 %m 08858713 n 0000 %m 08900535 n 0000 %m 08948346 n 0000 %m 08972521 n 0000 | a former empire consisting of Great Britain and all the territories under its control; reached its greatest extent at the end of World War I; it included the British Isles, British West Indies, Canada, British Guiana; British West Africa, British East Africa, India, Australia, New Zealand; "the sun never sets on the British Empire" -08858248 15 n 01 British_Isles 0 009 @i 09316454 n 0000 #p 09209263 n 0000 #m 08857682 n 0000 %p 08858942 n 0000 %p 08859173 n 0000 %p 08860123 n 0000 %p 08887013 n 0000 %p 08887716 n 0000 %p 09479238 n 0000 | Great Britain and Ireland and adjacent islands in the north Atlantic -08858529 15 n 01 British_East_Africa 0 002 @ 08552138 n 0000 #m 08857682 n 0000 | the former British territories of eastern Africa, including Kenya, Tanganyika, Uganda, and Zanzibar -08858713 15 n 01 British_West_Africa 0 003 @ 08552138 n 0000 #p 09178310 n 0000 #m 08857682 n 0000 | the former British territories of western Africa, including Nigeria, Cameroon, Gambia, Togo, Sierra Leone, and the Gold Coast -08858942 15 n 02 Great_Britain 0 GB 0 007 @i 09316454 n 0000 #p 08858248 n 0000 ;r 08860123 n 0000 ~i 08872936 n 0000 %p 08890097 n 0000 %p 09440036 n 0000 %m 09700964 n 0000 | an island comprising England and Scotland and Wales -08859173 15 n 03 Ireland 0 Hibernia 0 Emerald_Isle 0 037 @i 09316454 n 0000 #p 08858248 n 0000 + 03003744 a 0101 + 09714952 n 0102 -r 01272787 n 0000 -r 01277755 n 0000 -r 02102605 n 0000 -r 04193742 n 0000 -r 06335832 n 0000 -r 06960778 n 0000 -r 07042735 n 0000 -r 07448394 n 0000 -r 07680416 n 0000 %p 08708870 n 0000 ~i 08860001 n 0000 %p 08887841 n 0000 %p 08888676 n 0000 -r 09218641 n 0000 -r 09507756 n 0000 -r 09507909 n 0000 -r 09508368 n 0000 -r 09508474 n 0000 -r 09508666 n 0000 -r 09508809 n 0000 -r 09509375 n 0000 -r 09509546 n 0000 -r 09509770 n 0000 -r 09510305 n 0000 -r 09510419 n 0000 -r 09510643 n 0000 -r 09510746 n 0000 -r 09544262 n 0000 %m 09714952 n 0000 %m 09715165 n 0000 %m 09715303 n 0000 -r 10279540 n 0000 -r 11218473 n 0000 | an island comprising the republic of Ireland and Northern Ireland -08860001 15 n 01 Erin 0 002 @i 08859173 n 0000 ;c 07092592 n 0000 | an early name of Ireland that is now used in poetry -08860123 15 n 06 United_Kingdom 0 UK 0 U.K. 0 Britain 0 United_Kingdom_of_Great_Britain_and_Northern_Ireland 0 Great_Britain 1 555 @i 08591269 n 0000 #p 08858248 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 + 02958017 a 0401 -r 00004817 a 0000 -r 00092136 a 0000 -r 00149686 a 0000 -r 00167520 a 0000 -r 00218673 a 0000 -r 00259820 a 0000 -r 00261735 a 0000 -r 00459953 a 0000 -r 00653617 a 0000 -r 00874547 a 0000 -r 00970803 a 0000 -r 00972354 a 0000 -r 01019450 a 0000 -r 01027832 a 0000 -r 01054367 a 0000 -r 01129371 a 0000 -r 01138450 a 0000 -u 01252566 a 0402 -r 01268837 a 0000 -r 01269819 a 0000 -r 01274741 a 0000 -r 01281874 a 0000 -r 01391074 a 0000 -r 01440422 a 0000 -r 01443581 a 0000 -r 01526262 a 0000 -r 01536445 a 0000 -r 01587643 a 0000 -r 01709354 a 0000 -r 01710054 a 0000 -r 01739808 a 0000 -r 01805618 a 0000 -r 01850742 a 0000 -r 01861095 a 0000 -r 02100236 a 0000 -r 02101240 a 0000 -r 02199523 a 0000 -r 02199813 a 0000 -r 02251773 a 0000 -r 02327078 a 0000 -r 02327315 a 0000 -r 02342778 a 0000 -r 02344381 a 0000 -r 02344672 a 0000 -r 02347742 a 0000 -r 02358650 a 0000 -r 02358898 a 0000 -r 02383564 a 0000 -r 02394366 a 0000 -r 02400724 a 0000 -r 02401445 a 0000 -r 02434115 a 0000 -r 02434473 a 0000 -r 02502901 a 0000 -r 02503900 a 0000 -r 02509710 a 0000 -r 02581365 a 0000 -r 00075618 n 0000 -r 00076393 n 0000 -r 00089657 n 0000 -r 00162236 n 0000 -r 00168911 n 0000 -r 00209301 n 0000 -r 00292386 n 0000 -r 00307314 n 0000 -r 00450866 n 0000 -r 00470966 n 0000 -r 00479734 n 0000 -r 00501479 n 0000 -r 00504844 n 0000 -r 00504975 n 0000 -r 00505871 n 0000 -r 00508340 n 0000 -r 00510922 n 0000 -r 00514658 n 0000 -r 00538876 n 0000 -r 00550242 n 0000 -r 00575657 n 0000 -r 00585810 n 0000 -r 00593219 n 0000 -r 00619142 n 0000 -r 00637145 n 0000 -r 00780615 n 0000 -r 00795161 n 0000 -r 00817507 n 0000 -r 00854393 n 0000 -r 00858742 n 0000 -r 00882045 n 0000 -r 00896688 n 0000 -r 00897989 n 0000 -r 00985921 n 0000 -r 01020117 n 0403 -r 01064758 n 0000 -r 01070566 n 0000 -r 01087740 n 0000 -r 01118614 n 0000 -r 01135795 n 0000 -r 01172598 n 0000 -r 01177583 n 0000 -r 01242354 n 0000 -r 01270628 n 0000 -r 02744323 n 0000 -r 02767956 n 0000 -r 02790012 n 0000 -r 02828648 n 0404 -r 02828648 n 0403 -r 02833140 n 0000 -r 02841063 n 0000 -r 02873244 n 0000 -r 02877513 n 0000 -r 02936281 n 0000 -r 02969323 n 0000 -r 03040836 n 0000 -r 03042697 n 0000 -r 03077616 n 0000 -u 03101796 n 0402 -r 03118846 n 0000 -r 03134015 n 0000 -r 03136051 n 0000 -r 03163222 n 0402 -r 03173142 n 0000 -r 03191776 n 0000 -r 03216562 n 0000 -r 03222959 n 0000 -r 03268142 n 0000 -r 03318294 n 0000 -r 03352961 n 0000 -r 03362293 n 0000 -r 03380461 n 0000 -r 03393017 n 0000 -r 03399047 n 0000 -r 03399971 n 0000 -r 03415252 n 0000 -r 03439348 n 0000 -r 03457686 n 0000 -r 03457793 n 0000 -r 03470222 n 0000 -r 03471974 n 0000 -r 03472796 n 0000 -r 03476684 n 0000 -r 03479397 n 0000 -r 03493079 n 0000 -r 03519578 n 0000 -r 03528761 n 0000 -r 03540267 n 0000 -r 03555426 n 0000 -r 03586631 n 0000 -r 03599964 n 0000 -r 03661861 n 0000 -r 03663433 n 0000 -r 03685640 n 0000 -r 03694761 n 0000 -r 03697109 n 0000 -r 03702719 n 0000 -r 03736372 n 0000 -r 03757723 n 0000 -r 03764822 n 0000 -r 03769967 n 0000 -r 03770085 n 0000 -r 03772077 n 0000 -r 03777126 n 0000 -r 03813834 n 0000 -r 03823540 n 0000 -r 03863262 n 0000 -r 03868044 n 0000 -r 03881534 n 0000 -r 03883664 n 0000 -r 03884639 n 0000 -r 03891051 n 0000 -r 03899100 n 0000 -u 03904183 n 0402 -r 03906590 n 0000 -r 03937437 n 0000 -r 03963483 n 0000 -r 03967270 n 0000 -r 03968581 n 0000 -r 03974671 n 0000 -r 04018399 n 0000 -r 04020617 n 0000 -r 04024862 n 0000 -r 04026813 n 0000 -r 04032242 n 0000 -r 04038109 n 0000 -r 04066023 n 0000 -r 04115456 n 0000 -u 04134339 n 0403 -u 04135315 n 0402 -r 04157099 n 0000 -r 04163530 n 0000 -r 04188064 n 0000 -r 04201733 n 0000 -u 04217546 n 0402 -r 04229107 n 0000 -r 04229195 n 0000 -r 04240576 n 0000 -r 04242704 n 0000 -r 04299699 n 0000 -r 04305323 n 0000 -r 04314522 n 0000 -r 04335435 n 0403 -r 04335435 n 0402 -r 04341133 n 0000 -r 04363991 n 0000 -u 04370048 n 0402 -r 04390873 n 0000 -r 04398497 n 0000 -r 04413969 n 0000 -r 04441528 n 0000 -r 04446844 n 0000 -r 04495051 n 0000 -r 04495450 n 0000 -r 04508062 n 0000 -r 04520480 n 0000 -r 04528256 n 0000 -r 04535524 n 0000 -r 04539053 n 0000 -r 04553703 n 0000 -r 04577293 n 0000 -r 04585456 n 0000 -r 04585626 n 0000 -r 04598010 n 0000 -r 04601159 n 0000 -r 04753799 n 0000 -r 04781967 n 0000 -r 05525100 n 0000 -r 05598868 n 0000 -r 05601357 n 0000 -r 05611684 n 0000 -r 05615147 n 0000 -r 05688486 n 0000 -r 05689109 n 0000 -r 05715150 n 0000 -u 05815890 n 0401 -r 05909384 n 0000 -r 05987522 n 0000 -r 06220819 n 0000 -r 06263020 n 0000 -r 06276902 n 0000 -r 06477003 n 0000 -r 06477209 n 0000 -r 06478734 n 0000 -r 06489190 n 0000 -r 06496862 n 0000 -r 06513953 n 0000 -r 06518253 n 0000 -r 06529879 n 0000 -r 06596179 n 0000 -r 06598244 n 0000 -r 06608405 n 0000 -r 06610436 n 0000 -r 06637677 n 0000 -r 06669384 n 0000 -r 06699225 n 0000 -r 06700030 n 0000 -r 06700169 n 0000 -r 06700325 n 0000 -r 06792526 n 0000 -r 06792950 n 0000 -r 06884790 n 0000 -r 07065932 n 0000 -r 07066459 n 0000 -r 07182485 n 0000 -r 07219751 n 0000 -r 07236759 n 0000 -r 07302164 n 0000 -r 07448232 n 0000 -r 07450343 n 0000 -r 07450549 n 0000 -r 07455151 n 0000 -r 07459642 n 0000 -r 07468244 n 0000 -r 07479799 n 0000 -r 07556872 n 0000 -r 07569423 n 0000 -r 07569644 n 0000 -r 07573241 n 0000 -r 07575392 n 0000 -r 07575510 n 0000 -r 07577657 n 0000 -r 07577772 n 0000 -r 07590611 n 0000 -r 07595751 n 0000 -r 07612996 n 0000 -r 07613671 n 0000 -r 07618871 n 0000 -r 07620145 n 0000 -r 07620327 n 0000 -r 07620485 n 0000 -r 07623664 n 0000 -r 07631212 n 0000 -r 07631511 n 0000 -r 07631672 n 0000 -r 07634901 n 0000 -r 07635155 n 0000 -r 07642182 n 0000 -r 07643026 n 0000 -u 07674749 n 0402 -r 07676425 n 0000 -r 07676967 n 0000 -r 07677860 n 0000 -r 07678193 n 0000 -r 07696527 n 0000 -r 07703889 n 0000 -u 07707451 n 0403 -u 07711080 n 0404 -r 07722485 n 0402 -r 07752264 n 0000 -r 07795317 n 0000 -r 07795598 n 0000 -r 07800487 n 0000 -r 07835051 n 0000 -r 07847453 n 0000 -r 07860208 n 0000 -r 07863229 n 0000 -r 07866151 n 0000 -r 07869937 n 0000 -r 07889814 n 0000 -r 07890068 n 0000 -r 07896994 n 0000 -r 07897200 n 0000 -r 07913081 n 0000 -r 07921834 n 0000 -r 07933799 n 0000 -r 07961270 n 0000 -r 08013453 n 0000 -r 08049125 n 0000 -r 08121867 n 0000 -r 08143486 n 0000 -r 08153874 n 0000 -r 08167365 n 0000 -r 08167779 n 0000 -r 08167953 n 0000 -r 08168117 n 0000 -r 08180484 n 0000 -r 08185211 n 0000 -r 08230294 n 0000 -r 08250635 n 0000 -r 08254055 n 0000 -r 08254195 n 0000 -r 08261589 n 0000 -r 08278924 n 0000 -r 08285896 n 0000 -r 08286946 n 0000 -r 08311687 n 0000 -r 08311933 n 0000 -r 08319198 n 0000 -r 08325530 n 0000 -r 08325851 n 0000 -r 08342670 n 0000 -r 08346031 n 0000 -r 08346655 n 0000 -r 08347206 n 0000 -r 08349548 n 0000 -r 08357529 n 0000 -r 08382056 n 0000 -r 08382297 n 0000 -r 08402944 n 0000 -r 08410688 n 0000 -r 08431721 n 0000 -r 08437968 n 0000 -r 08479894 n 0000 -r 08482577 n 0000 -r 08504851 n 0000 -r 08539893 n 0000 -r 08546183 n 0000 -r 08547300 n 0000 -r 08549733 n 0000 -r 08555333 n 0000 -r 08587828 n 0000 -r 08611063 n 0000 -r 08624656 n 0000 -r 08626522 n 0000 -r 08638260 n 0000 -r 08645212 n 0000 -r 08858942 n 0000 %p 08871007 n 0000 ~ 08873147 n 0000 -r 08874469 n 0000 %p 08887841 n 0000 %p 08890097 n 0000 %p 08894456 n 0000 -r 09262690 n 0000 -r 09351547 n 0000 -r 09702134 n 0000 -r 09830400 n 0000 -r 09844770 n 0000 -r 09850642 n 0000 -r 09863339 n 0000 -r 09906848 n 0000 -r 09916209 n 0000 -r 09928845 n 0000 -r 09935233 n 0000 -r 09937489 n 0000 -r 09942871 n 0000 -r 09959258 n 0000 -r 09961739 n 0000 -r 09980275 n 0000 -r 10064046 n 0000 -u 10071332 n 0403 -r 10092299 n 0000 -r 10113362 n 0000 -r 10113997 n 0000 -u 10142747 n 0407 -u 10142747 n 0406 -r 10146559 n 0000 -r 10153155 n 0000 -r 10181990 n 0000 -r 10184822 n 0000 -r 10208189 n 0000 -r 10211203 n 0000 -r 10216403 n 0000 -r 10228592 n 0000 -r 10229721 n 0000 -r 10242791 n 0000 -r 10244913 n 0000 -r 10263684 n 0000 -r 10270468 n 0000 -r 10272171 n 0000 -r 10300154 n 0000 -r 10309785 n 0000 -r 10324357 n 0000 -r 10336904 n 0000 -r 10345015 n 0000 -r 10345659 n 0000 -r 10356877 n 0000 -r 10371221 n 0000 -r 10387712 n 0000 -r 10400618 n 0000 -r 10406072 n 0000 -r 10412910 n 0000 -r 10413276 n 0000 -r 10437014 n 0000 -r 10448322 n 0000 -r 10452752 n 0401 -r 10454972 n 0000 -r 10460033 n 0000 -r 10464542 n 0000 -r 10490421 n 0000 -r 10500942 n 0000 -r 10506762 n 0000 -r 10506915 n 0000 -r 10508141 n 0000 -r 10511960 n 0000 -r 10513509 n 0000 -r 10519984 n 0000 -r 10525878 n 0000 -r 10535706 n 0000 -u 10548227 n 0404 -r 10550090 n 0000 -r 10564800 n 0000 -r 10565502 n 0000 -r 10583790 n 0000 -r 10601526 n 0000 -r 10604275 n 0000 -r 10607933 n 0000 -r 10612518 n 0000 -r 10613387 n 0000 -r 10621140 n 0000 -r 10637038 n 0000 -r 10641223 n 0000 -r 10641301 n 0000 -r 10643837 n 0000 -r 10656969 n 0000 -r 10657556 n 0000 -r 10659188 n 0000 -r 10669236 n 0000 -r 10672662 n 0000 -r 10675481 n 0000 -r 10678937 n 0000 -r 10690421 n 0000 -r 10695450 n 0000 -r 10697135 n 0000 -r 10705345 n 0000 -r 10718509 n 0000 -r 10719395 n 0000 -r 10745894 n 0000 -r 10753182 n 0000 -r 10765305 n 0000 -r 10786992 n 0000 -r 10801561 n 0000 -r 11415608 n 0000 -r 11507321 n 0000 -r 11536230 n 0000 -r 13245076 n 0000 -r 13249245 n 0000 -r 13252062 n 0000 -r 13282419 n 0000 -r 13296089 n 0000 -r 13296752 n 0000 -r 13297850 n 0000 -r 13298935 n 0000 -r 13312754 n 0000 -r 13314936 n 0000 -r 13315077 n 0000 -r 13319726 n 0000 -r 13322343 n 0000 -r 13325382 n 0000 -r 13345286 n 0000 -r 13359941 n 0000 -r 13363970 n 0403 -r 13382766 n 0000 -r 13390857 n 0000 -r 13391118 n 0000 -r 13391452 n 0000 -r 13393427 n 0000 -r 13408641 n 0000 -r 13409647 n 0000 -r 13418047 n 0000 -r 13422061 n 0000 -r 13618180 n 0000 -r 13623054 n 0000 -r 13649791 n 0000 -r 13650921 n 0000 -r 13719410 n 0000 -r 13720600 n 0000 -r 13740765 n 0000 -r 13752033 n 0000 -r 13752172 n 0000 -r 13752679 n 0000 -r 13753067 n 0000 -r 13764213 n 0000 -r 13926932 n 0000 -r 14361182 n 0000 -r 14409718 n 0000 -r 14412564 n 0000 -r 14476205 n 0000 -r 14521954 n 0000 -r 14530659 n 0000 -r 14685641 n 0000 -r 14686020 n 0000 -r 14814531 n 0000 -r 15065280 n 0000 -r 15138241 n 0000 -r 15138401 n 0000 -r 15158816 n 0000 -r 15158997 n 0000 -r 15160418 n 0000 -r 15160866 n 0000 -r 15166742 n 0000 -r 15170786 n 0000 -r 15171008 n 0000 -r 15196746 n 0000 -r 15200661 n 0000 -r 15222686 n 0000 -r 15244351 n 0000 -u 15246853 n 0402 -r 15273955 n 0000 -r 15298507 n 0000 -r 01891638 v 0000 -r 02463990 v 0000 | a monarchy in northwestern Europe occupying most of the British Isles; divided into England and Scotland and Wales and Northern Ireland; `Great Britain' is often used loosely to refer to the United Kingdom -08871007 15 n 01 England 0 098 @i 08696931 n 0000 #p 08860123 n 0000 #p 09275473 n 0000 + 03003344 a 0101 -r 03114508 a 0000 -r 00964105 n 0000 -r 01278692 n 0000 -r 01280514 n 0000 -r 01286000 n 0000 -r 01286938 n 0000 -r 01288549 n 0000 -r 01297291 n 0000 -r 01304121 n 0000 -r 01307606 n 0000 -r 01311045 n 0000 -r 02780704 n 0000 -r 06232635 n 0000 %p 08796707 n 0000 %p 08796844 n 0000 %p 08797013 n 0000 ~i 08872936 n 0000 ~i 08873067 n 0000 %p 08873269 n 0000 %p 08873412 n 0000 %p 08873622 n 0000 %p 08876975 n 0000 %p 08877208 n 0000 %p 08877382 n 0000 %p 08877613 n 0000 %p 08877807 n 0000 %p 08878016 n 0000 %p 08878202 n 0000 %p 08878367 n 0000 %p 08878533 n 0000 %p 08878708 n 0000 %p 08878885 n 0000 %p 08879197 n 0000 %p 08879388 n 0000 %p 08879680 n 0000 %p 08879867 n 0000 %p 08880083 n 0000 %p 08880223 n 0000 %p 08880713 n 0000 %p 08881017 n 0000 %p 08881153 n 0000 %p 08881256 n 0000 %p 08881398 n 0000 %p 08881549 n 0000 %p 08881674 n 0000 %p 08881944 n 0000 %p 08882061 n 0000 %p 08882224 n 0000 %p 08882365 n 0000 %p 08882807 n 0000 %p 08882934 n 0000 %p 08883179 n 0000 %p 08883309 n 0000 %p 08883643 n 0000 %p 08884012 n 0000 %p 08884191 n 0000 %p 08884328 n 0000 %p 08884673 n 0000 %p 08884806 n 0000 %p 08884961 n 0000 %p 08885099 n 0000 %p 08885211 n 0000 %p 08885380 n 0000 %p 08885490 n 0000 %p 08885631 n 0000 %p 08885773 n 0000 %p 08886147 n 0000 %p 08886277 n 0000 %p 08886432 n 0000 %p 08886636 n 0000 %p 08886814 n 0000 %p 08887463 n 0000 %p 09191707 n 0000 %p 09211944 n 0000 %p 09212151 n 0000 %p 09231587 n 0000 %p 09307140 n 0000 %p 09381048 n 0000 %p 09430771 n 0000 -r 09432785 n 0000 %p 09457020 n 0000 %p 09461515 n 0000 %p 09464805 n 0000 %m 09701148 n 0000 %m 09701603 n 0000 %m 09701833 n 0000 -r 09867154 n 0000 -r 10064229 n 0000 -r 10109050 n 0000 -r 10433737 n 0000 -r 10908756 n 0000 -r 14431015 n 0000 -r 14431169 n 0000 -r 15295603 n 0000 | a division of the United Kingdom -08872936 15 n 01 Albion 0 002 @i 08871007 n 0000 @i 08858942 n 0000 | archaic name for England or Great Britain; used poetically -08873067 15 n 01 Anglia 0 001 @i 08871007 n 0000 | the Latin name for England -08873147 15 n 01 Blighty 0 001 @ 08860123 n 0000 | a slang term for Great Britain used by British troops serving abroad -08873269 15 n 01 Lancaster 0 004 @i 08524735 n 0000 #p 08871007 n 0000 + 03079293 a 0101 %m 09704057 n 0000 | a city in northwestern England -08873412 15 n 02 Lake_District 0 Lakeland 0 003 @i 08552138 n 0000 #p 08881549 n 0000 #p 08871007 n 0000 | a popular tourist area in northwestern England including England's largest lake and highest mountain -08873622 15 n 04 London 0 Greater_London 0 British_capital 0 capital_of_the_United_Kingdom 0 022 @i 08691669 n 0000 #p 08871007 n 0000 + 09704630 n 0101 %p 02836766 n 0000 %p 03821660 n 0000 %p 04460947 n 0000 %p 08334581 n 0000 %p 08572020 n 0000 %p 08581122 n 0000 %p 08596519 n 0000 %p 08596830 n 0000 %p 08597023 n 0000 %p 08874273 n 0000 %p 08874703 n 0000 %p 08874920 n 0000 %p 08875057 n 0000 %p 08875202 n 0000 %p 08875369 n 0000 %p 08875547 n 0000 %p 08876139 n 0000 %p 08876773 n 0000 %m 09704630 n 0000 | the capital and largest city of England; located on the Thames in southeastern England; financial and industrial and cultural center -08874273 15 n 02 City_of_London 0 the_City 0 002 @i 08523483 n 0000 #p 08873622 n 0000 | the part of London situated within the ancient boundaries; the commercial and financial center of London -08874469 15 n 01 Home_Counties 0 006 @i 08546183 n 0000 ;r 08860123 n 0000 %m 08882061 n 0000 %m 08882807 n 0000 %m 08882934 n 0000 %m 08884961 n 0000 | the English counties surrounding London into which Greater London has expanded -08874703 15 n 01 Greenwich 0 002 @i 08540532 n 0000 #p 08873622 n 0000 | a borough of Greater London on the Thames; zero degrees of longitude runs through Greenwich; time is measured relative to Greenwich Mean Time -08874920 15 n 01 Bloomsbury 0 002 @i 08537837 n 0000 #p 08873622 n 0000 | a city district of central London laid out in garden squares -08875057 15 n 01 Soho 0 002 @i 08537837 n 0000 #p 08873622 n 0000 | a city district of central London now noted for restaurants and nightclubs -08875202 15 n 01 Wembley 0 002 @i 08537837 n 0000 #p 08873622 n 0000 | a southeastern part of Greater London that is the site of the English national soccer stadium -08875369 15 n 01 West_End 0 003 @i 08537837 n 0000 #p 08873622 n 0000 %p 08657748 n 0000 | the part of west central London containing the main entertainment and shopping areas -08875547 15 n 02 Westminster 0 City_of_Westminster 0 006 @i 08540532 n 0000 #p 08873622 n 0000 %p 08875843 n 0000 %p 08875972 n 0000 %p 08876278 n 0000 %p 08876435 n 0000 | a borough of Greater London on the Thames; contains Buckingham Palace and the Houses of Parliament and Westminster Abbey -08875843 15 n 01 Buckingham_Palace 0 002 @i 03878066 n 0000 #p 08875547 n 0000 | the London residence of the British sovereign -08875972 15 n 01 Downing_Street 0 002 @i 04334599 n 0000 #p 08875547 n 0000 | a street of Westminster in London; "the Prime Minister lives at No. 10 Downing Street" -08876139 15 n 01 Pall_Mall 0 002 @i 04334599 n 0000 #p 08873622 n 0000 | a fashionable street in London noted for its many private clubs -08876278 15 n 01 Houses_of_Parliament 0 002 @i 02913152 n 0000 #p 08875547 n 0000 | the building in which the House of Commons and the House of Lords meet -08876435 15 n 01 Westminster_Abbey 0 002 @i 03772077 n 0000 #p 08875547 n 0000 | a famous Gothic church of St. Peter in Westminster, London on the site of a former Benedictine monastery; "Westminster Abbey is the scene of the coronations of almost all English monarchs"; "Distinguished English subjects are buried in Westminster Abbey" -08876773 15 n 01 Wimbledon 0 002 @i 08554440 n 0000 #p 08873622 n 0000 | a suburb of London and the headquarters of the club where annual international tennis championships are played on grass courts -08876975 15 n 01 Manchester 0 004 @i 08524735 n 0000 #p 08871007 n 0000 + 03084196 a 0101 %m 09704876 n 0000 | a city in northwestern England (30 miles to the east of Liverpool); heart of the most densely populated area of England -08877208 15 n 02 Hull 0 Kingston-upon_Hull 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08871007 n 0000 %p 03548797 n 0000 | a large fishing port in northeastern England -08877382 15 n 01 Liverpool 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 08871007 n 0000 + 03081813 a 0101 %m 09704509 n 0000 | a large city in northwestern England; its port is the country's major outlet for industrial exports -08877613 15 n 02 Birmingham 0 Brummagem 0 002 @i 08524735 n 0000 #p 08871007 n 0000 | a city in central England; 2nd largest English city and an important industrial and transportation center -08877807 15 n 01 Oxford 0 005 @i 08524735 n 0000 #p 08871007 n 0000 + 03095588 a 0101 %p 03868509 n 0000 %m 09705003 n 0000 | a city in southern England to the northwest of London; site of Oxford University -08878016 15 n 01 Cambridge 0 004 @i 08524735 n 0000 #p 08871007 n 0000 %p 02942227 n 0000 %m 09703708 n 0000 | a city in eastern England on the River Cam; site of Cambridge University -08878202 15 n 01 Bath 0 002 @i 08665504 n 0000 #p 08871007 n 0000 | a town in southwestern England on the River Avon; famous for its hot springs and Roman remains -08878367 15 n 01 Blackpool 0 002 @i 08665504 n 0000 #p 08871007 n 0000 | a resort town in Lancashire in northwestern England on the Irish Sea; famous for its tower -08878533 15 n 01 Brighton 0 002 @i 08524735 n 0000 #p 08871007 n 0000 | a city in East Sussex in southern England that is a popular resort; site of the University of Sussex -08878708 15 n 01 Bristol 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08871007 n 0000 | an industrial city and port in southwestern England near the mouth of the River Avon -08878885 15 n 01 Cheddar 0 002 @i 08672738 n 0000 #p 08871007 n 0000 | a village in southwestern England where cheddar cheese was first made -08879028 15 n 01 Leeds 0 002 @i 08524735 n 0000 #p 08885490 n 0000 | a city on the River Aire in West Yorkshire in northern England; a center of the clothing industry -08879197 15 n 01 Leicester 0 003 @i 08524735 n 0000 #p 08871007 n 0000 #p 08884012 n 0000 | an industrial city in Leicestershire in central England; built on the site of a Roman settlement -08879388 15 n 02 Newcastle 0 Newcastle-upon-Tyne 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08871007 n 0000 | a port city in northeastern England on the River Tyne; a center for coal exports (giving rise to the expression `carry coals to Newcastle' meaning to do something unnecessary) -08879680 15 n 02 Portsmouth 1 Pompey 0 003 @i 08633957 n 0000 @i 08524735 n 0000 #p 08871007 n 0000 | a port city in southern England on the English Channel; Britain's major naval base -08879867 15 n 01 Coventry 0 002 @i 08524735 n 0000 #p 08871007 n 0000 | an industrial city in central England; devastated by air raids during World War II; remembered as the home of Lady Godiva in the 11th century -08880083 15 n 01 Gloucester 0 002 @i 08524735 n 0000 #p 08871007 n 0000 | a city in southwestern England in Gloucestershire on the Severn -08880223 15 n 01 Reading 0 003 @i 08524735 n 0000 #p 08871007 n 0000 #p 08881256 n 0000 | a city on the River Thames in Berkshire in southern England -08880375 15 n 01 Sheffield 0 002 @i 08524735 n 0000 #p 08885631 n 0000 | a steel manufacturing city in northern England famous for its cutlery industry -08880529 15 n 02 Stratford-on-Avon 0 Stratford-upon-Avon 0 001 @i 08665504 n 0000 | a town in central England on the River Avon; birthplace (and burial place) of William Shakespeare -08880713 15 n 01 Sunderland 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08871007 n 0000 | a port and industrial city in northeastern England -08880859 15 n 01 Winchester 0 003 @i 08524735 n 0000 #p 08882365 n 0000 %p 08411031 n 0000 | a city in southern England; administrative center of Hampshire -08881017 15 n 01 Worcester 0 002 @i 08524735 n 0000 #p 08871007 n 0000 | a cathedral city in west central England on the River Severn -08881153 15 n 01 Avon 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southwestern England -08881256 15 n 01 Berkshire 0 004 @i 08546183 n 0000 #p 08871007 n 0000 %p 08410891 n 0000 %p 08880223 n 0000 | a county in southern England -08881398 15 n 01 Cornwall 0 004 @i 08546183 n 0000 #p 08871007 n 0000 %m 09703809 n 0000 %m 09703932 n 0000 | a hilly county in southwestern England -08881549 15 n 01 Cumbria 0 003 @i 08546183 n 0000 #p 08871007 n 0000 %p 08873412 n 0000 | a county of northwestern England -08881674 15 n 01 Cumbria 1 003 @i 08574314 n 0000 #p 08871007 n 0000 #p 08890097 n 0000 | a former Celtic kingdom in northwestern England; the name continued to be used for the hilly northwestern region of England including the Lake District and the northern Pennines -08881944 15 n 02 Devon 0 Devonshire 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southwestern England -08882061 15 n 01 Essex 0 003 @i 08546183 n 0000 #p 08871007 n 0000 #m 08874469 n 0000 | a county in southeastern England on the North Sea and the Thames estuary -08882224 15 n 01 Gloucestershire 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southwestern England in the lower Severn valley -08882365 15 n 01 Hampshire 0 004 @i 08546183 n 0000 #p 08871007 n 0000 %p 08880859 n 0000 %p 08882530 n 0000 | a county of southern England on the English Channel -08882530 15 n 01 New_Forest 0 002 @i 08574314 n 0000 #p 08882365 n 0000 | an area of woods and heathland in southern Hampshire that was set aside by William I as Crown property in 1079; originally a royal hunting ground but now administered as parkland; noted for its ponies -08882807 15 n 01 Hertfordshire 0 003 @i 08546183 n 0000 #p 08871007 n 0000 #m 08874469 n 0000 | a county in southern England -08882934 15 n 01 Kent 0 004 @i 08546183 n 0000 #p 08871007 n 0000 #m 08874469 n 0000 %p 08883772 n 0000 | a county in southeastern England on the English Channel; formerly an Anglo-Saxon kingdom, it was the first to be colonized by the Romans -08883179 15 n 01 Somerset 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southwestern England on the Bristol Channel -08883309 15 n 01 East_Sussex 0 004 @i 08546183 n 0000 #p 08871007 n 0000 %p 04512783 n 0000 %p 08883476 n 0000 | a county in southern England on the English Channel -08883476 15 n 01 Hastings 0 002 @i 08665504 n 0000 #p 08883309 n 0000 | a town in East Sussex just to the south of the place where the battle of Hastings took place -08883643 15 n 01 West_Sussex 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southern England on the English Channel -08883772 15 n 01 Canterbury 0 002 @i 08665504 n 0000 #p 08882934 n 0000 | a town in Kent in southeastern England; site of the cathedral where Thomas a Becket was martyred in 1170; seat of the archbishop and primate of the Anglican Church -08884012 15 n 02 Leicestershire 0 Leicester 1 004 @i 08546183 n 0000 #p 08871007 n 0000 -r 01272367 n 0000 %p 08879197 n 0000 | a largely agricultural county in central England -08884191 15 n 01 Lincolnshire 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | an agricultural county of eastern England on the North Sea -08884328 15 n 01 Northumberland 0 003 @i 08546183 n 0000 #p 08871007 n 0000 %p 08884513 n 0000 | the northernmost county of England; has many Roman remains (including Hadrian's Wall) -08884513 15 n 01 Flodden 0 002 @i 09303008 n 0000 #p 08884328 n 0000 | a hill in Northumberland where the invading Scots were defeated by the English in 1513 -08884673 15 n 01 East_Anglia 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | a region of eastern England that was formerly a kingdom -08884806 15 n 01 Lancashire 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | a historical area of northwestern England on the Irish Sea; noted for textiles -08884961 15 n 01 Surrey 0 003 @i 08546183 n 0000 #p 08871007 n 0000 #m 08874469 n 0000 | a county in southeastern England on the Thames -08885099 15 n 01 Marston_Moor 0 002 @i 09358751 n 0000 #p 08871007 n 0000 | a former moor in northern England -08885211 15 n 01 Yorkshire 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | a former large county in northern England; in 1974 it was divided into three smaller counties -08885380 15 n 01 North_Yorkshire 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in northern England -08885490 15 n 01 West_Yorkshire 0 003 @i 08546183 n 0000 #p 08871007 n 0000 %p 08879028 n 0000 | a metropolitan county in northern England -08885631 15 n 01 South_Yorkshire 0 003 @i 08546183 n 0000 #p 08871007 n 0000 %p 08880375 n 0000 | a metropolitan county in northern England -08885773 15 n 01 Northamptonshire 0 004 @i 08546183 n 0000 #p 08871007 n 0000 %p 08885921 n 0000 %p 08886037 n 0000 | a county is central England -08885921 15 n 01 Northampton 0 002 @i 08524735 n 0000 #p 08885773 n 0000 | the principal city of Northamptonshire -08886037 15 n 01 Naseby 0 002 @i 08665504 n 0000 #p 08885773 n 0000 | a village in western Northamptonshire -08886147 15 n 01 Northumbria 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | an Anglo-Saxon kingdom in northern England until 876 -08886277 15 n 01 West_Country 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | the southwestern part of England (including Cornwall and Devon and Somerset) -08886432 15 n 01 Sussex 0 002 @i 08546183 n 0000 #p 08871007 n 0000 | a county in southern England on the English Channel; formerly an Anglo-Saxon kingdom that was captured by Wessex in the 9th century -08886636 15 n 01 Wessex 0 002 @i 08574314 n 0000 #p 08871007 n 0000 | a Saxon kingdom in southwestern England that became the most powerful English kingdom by the 10th century -08886814 15 n 01 Hadrian's_Wall 0 002 @i 04546855 n 0000 #p 08871007 n 0000 | an ancient Roman wall built by Hadrian in the 2nd century; marked the northern boundary of the Roman Empire in Britain -08887013 15 n 01 Channel_Island 0 005 @i 09316454 n 0000 #p 09273447 n 0000 #p 08858248 n 0000 ~ 08887238 n 0000 ~ 08887344 n 0000 | any of a group of British islands in the English Channel off the northern coast of France -08887238 15 n 02 Jersey 1 island_of_Jersey 0 001 @ 08887013 n 0000 | the largest of the Channel Islands -08887344 15 n 02 Guernsey 0 island_of_Guernsey 0 001 @ 08887013 n 0000 | a Channel Island to the northwest of Jersey -08887463 15 n 02 Scilly_Islands 0 Isles_of_Scilly 0 002 @i 09203827 n 0000 #p 08871007 n 0000 | an archipelago of small islands off the southwestern coast of England near the entrance to the English Channel; formerly a haven for smugglers and pirates -08887716 15 n 02 Man 0 Isle_of_Man 0 002 @i 09316454 n 0000 #p 08858248 n 0000 | one of the British Isles in the Irish Sea -08887841 15 n 01 Northern_Ireland 0 011 @i 08696931 n 0000 #p 08860123 n 0000 #p 08859173 n 0000 #p 09275473 n 0000 -r 08033194 n 0000 -r 08036669 n 0000 -r 08036849 n 0000 -r 08041840 n 0000 -r 08046759 n 0000 %p 08888367 n 0000 %p 08888479 n 0000 | a division of the United Kingdom located on the northern part of the island of Ireland -08888181 15 n 01 Ulster 0 001 @i 08574314 n 0000 | a historic division of Ireland located in the northeastern part of the island; six of Ulster's nine counties are in Northern Ireland -08888367 15 n 01 Bangor 0 002 @i 08665504 n 0000 #p 08887841 n 0000 | a town in southeastern Northern Ireland -08888479 15 n 02 Belfast 0 capital_of_Northern_Ireland 0 002 @i 08518505 n 0000 #p 08887841 n 0000 | capital and largest city of Northern Ireland; the center of Protestantism in Northern Ireland -08888676 15 n 04 Ireland 1 Republic_of_Ireland 0 Irish_Republic 0 Eire 0 016 @i 08696931 n 0000 #p 08859173 n 0000 #p 09275473 n 0000 #m 08049989 n 0000 #m 08173515 n 0000 + 09714952 n 0102 -r 08019281 n 0000 -r 08024408 n 0000 -r 08024732 n 0000 -r 08040762 n 0000 %p 08889191 n 0000 %p 08889400 n 0000 %p 08889521 n 0000 %p 08889657 n 0000 %p 08889784 n 0000 %p 08889944 n 0000 | a republic consisting of 26 of 32 counties comprising the island of Ireland; achieved independence from the United Kingdom in 1921 -08889191 15 n 03 Dublin 0 Irish_capital 0 capital_of_Ireland 0 004 @i 08691669 n 0000 @i 08633957 n 0000 #p 08888676 n 0000 %m 09715427 n 0000 | capital and largest city and major port of the Irish Republic -08889400 15 n 01 Cork 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08888676 n 0000 | a port city in southern Ireland -08889521 15 n 01 Galway 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08888676 n 0000 | a port city in western Ireland on Galway Bay -08889657 15 n 01 Limerick 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08888676 n 0000 | port city in southwestern Ireland -08889784 15 n 01 Tara 0 002 @i 08665504 n 0000 #p 08888676 n 0000 | a village in eastern Ireland (northwest of Dublin); seat of Irish kings until 6th century -08889944 15 n 01 Waterford 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08888676 n 0000 | a port city in southern Ireland; famous for glass industry -08890097 15 n 01 Scotland 0 057 @i 08696931 n 0000 #p 08860123 n 0000 #p 08858942 n 0000 #p 09275473 n 0000 -r 00204249 a 0000 -r 00370771 a 0000 -r 00407151 a 0102 -r 00962135 a 0000 -r 01068012 a 0000 -r 01076024 a 0000 -r 02038126 a 0000 -r 00385946 r 0000 -r 00461611 n 0000 -r 01270153 n 0000 -r 01273081 n 0000 -r 01283389 n 0000 %p 02725596 n 0000 %p 02939291 n 0000 -r 03205458 n 0000 -r 04396226 n 0000 -r 06950209 n 0000 -r 07448394 n 0000 -r 07503849 n 0000 -r 07680313 n 0000 -r 07869111 n 0000 -r 08088792 n 0000 %p 08796844 n 0000 %p 08881674 n 0000 %p 08891415 n 0000 %p 08891595 n 0000 %p 08891889 n 0000 %p 08892058 n 0000 %p 08892186 n 0000 %p 08892428 n 0000 %p 08892766 n 0000 %p 08892971 n 0000 %p 08893223 n 0000 %p 08953829 n 0000 %p 08954057 n 0000 -r 09218641 n 0000 -r 09228055 n 0000 %p 09247942 n 0000 -r 09280380 n 0000 %p 09280573 n 0000 %p 09280731 n 0000 %p 09284433 n 0000 -r 09289596 n 0000 %p 09342141 n 0000 %p 09342245 n 0000 %p 09342386 n 0000 -r 09543924 n 0000 %m 09730533 n 0000 -r 09833441 n 0000 -r 10243582 n 0000 -r 10705100 n 0000 -r 15190424 n 0000 -r 15246258 n 0000 | one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; located on the northern part of the island of Great Britain; famous for bagpipes and plaids and kilts -08891415 15 n 01 Caledonia 0 002 @i 08574314 n 0000 #p 08890097 n 0000 | the geographical area (in Roman times) to the north of the Antonine Wall; now a poetic name for Scotland -08891595 15 n 02 Highlands 0 Highlands_of_Scotland 0 004 @i 09302616 n 0000 #p 08890097 n 0000 + 10174845 n 0101 + 10174695 n 0101 | a mountainous region of northern Scotland famous for its rugged beauty; known for the style of dress (the kilt and tartan) and the clan system (now in disuse) -08891889 15 n 02 Lowlands 0 Lowlands_of_Scotland 0 003 @i 09344198 n 0000 #p 08890097 n 0000 + 10275249 n 0101 | the southern part of Scotland that is not mountainous -08892058 15 n 01 Galloway 0 003 @i 08552138 n 0000 #p 08890097 n 0000 + 02978335 a 0101 | a district in southwestern Scotland -08892186 15 n 01 Aberdeen 0 003 @i 08524735 n 0000 #p 08890097 n 0000 + 02599114 a 0101 | a city in northeastern Scotland on the North Sea -08892327 15 n 01 Ayr 0 002 @i 08665504 n 0000 @i 08633957 n 0000 | a port in southwestern Scotland -08892428 15 n 01 Balmoral_Castle 0 002 @i 02980441 n 0000 #p 08890097 n 0000 | a castle in northeastern Scotland that is a private residence of the British sovereign -08892596 15 n 01 Edinburgh 0 002 @i 08518505 n 0000 #p 08892766 n 0000 | the capital of Scotland; located in the Lothian Region on the south side of the Firth of Forth -08892766 15 n 01 Lothian_Region 0 003 @i 08552138 n 0000 #p 08890097 n 0000 %p 08892596 n 0000 | a district in southeast central Scotland (south side of the Firth of Forth) and the location of Edinburgh -08892971 15 n 01 Glasgow 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 08890097 n 0000 + 02971311 a 0101 %m 09749142 n 0000 | largest city in Scotland; a port on the Clyde in west central Scotland; one of the great shipbuilding centers of the world -08893223 15 n 05 Hebrides 0 Hebridean_Islands 0 Hebridean_Isles 0 Western_Islands 0 Western_Isles 0 005 @i 09203827 n 0000 #p 08890097 n 0000 + 02739085 a 0101 %p 08893492 n 0000 %p 08894319 n 0000 | a group of more than 500 islands off the western coast of Scotland -08893492 15 n 01 Inner_Hebrides 0 006 @i 09203827 n 0000 #p 08893223 n 0000 %p 08893717 n 0000 %p 08893868 n 0000 %p 08894011 n 0000 %p 08894133 n 0000 | islands between the Outer Hebrides and the western coast of Scotland -08893717 15 n 01 Isle_of_Skye 0 002 @i 09316454 n 0000 #p 08893492 n 0000 | an island of northwestern Scotland noted for its rugged mountain scenery -08893868 15 n 01 Islay 0 002 @i 09316454 n 0000 #p 08893492 n 0000 | an island of western Scotland at the southern end of the Inner Hebrides -08894011 15 n 01 Mull 0 002 @i 09316454 n 0000 #p 08893492 n 0000 | an island in western Scotland in the Inner Hebrides -08894133 15 n 01 Staffa 0 003 @i 09316454 n 0000 #p 08893492 n 0000 %p 09279727 n 0000 | an island in western Scotland in the Inner Hebrides to the west of Mull; site of Fingal's Cave -08894319 15 n 01 Outer_Hebrides 0 002 @i 09203827 n 0000 #p 08893223 n 0000 | a 130-mile long archipelago to the northwest of Scotland -08894456 15 n 03 Wales 0 Cymru 0 Cambria 0 026 @i 08558488 n 0000 #p 08860123 n 0000 + 03130073 a 0302 -r 02095889 n 0000 -r 05626618 n 0000 -r 06961557 n 0000 %p 08895148 n 0000 %p 08895254 n 0000 %p 08895386 n 0000 %p 08895497 n 0000 %p 08895623 n 0000 %p 08895771 n 0000 %p 08895928 n 0000 %p 09350776 n 0000 %p 09430771 n 0000 -r 09507639 n 0000 -r 09508076 n 0000 -r 09508228 n 0000 -r 09508975 n 0000 -r 09509119 n 0000 -r 09509678 n 0000 -r 09509911 n 0000 -r 09510073 n 0000 -r 09510164 n 0000 -r 09510527 n 0000 %m 09747329 n 0000 | one of the four countries that make up the United Kingdom of Great Britain and Northern Ireland; during Roman times the region was known as Cambria -08895148 15 n 01 Aberdare 0 002 @i 08665504 n 0000 #p 08894456 n 0000 | a mining town in southern Wales -08895254 15 n 01 Bangor 1 002 @i 08665504 n 0000 #p 08894456 n 0000 | a university town in northwestern Wales on the Menai Strait -08895386 15 n 01 Cardiff 0 002 @i 08518505 n 0000 #p 08894456 n 0000 | the capital and largest city of Wales -08895497 15 n 01 Newport 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08894456 n 0000 | a port city in southeastern Wales -08895623 15 n 01 Sealyham 0 002 @i 08672738 n 0000 #p 08894456 n 0000 | a village in southwestern Wales where the Sealyham terrier was first bred -08895771 15 n 01 Swansea 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08894456 n 0000 | a port city in southern Wales on an inlet of the Bristol Channel -08895928 15 n 05 Anglesey 0 Anglesey_Island 0 Anglesea 0 Anglesea_Island 0 Mona 0 002 @i 09316454 n 0000 #p 08894456 n 0000 | an island to the northwest of Wales -08896092 15 n 02 Brunei 0 Negara_Brunei_Darussalam 0 005 @i 08896327 n 0000 #p 08843215 n 0000 #m 08487504 n 0000 + 03051035 a 0101 %m 09695514 n 0000 | a sultanate in northwestern Borneo; became independent of Great Britain in 1984 -08896327 15 n 01 sultanate 0 002 @ 08544813 n 0000 ~i 08896092 n 0000 | country or territory ruled by a sultan -08896440 15 n 02 Burkina_Faso 0 Upper_Volta 0 001 @i 08544813 n 0000 | a desperately poor landlocked country in western Africa; was formerly Upper Volta under French rule but gained independence in 1960 -08896645 15 n 02 Sinai 0 Sinai_Peninsula 0 004 @i 09388848 n 0000 #p 08897065 n 0000 %p 09172751 n 0000 %p 09435512 n 0000 | a peninsula in northeastern Egypt; at north end of Red Sea -08896831 15 n 02 Egyptian_Empire 0 Egypt 1 002 @i 08557482 n 0000 + 02971469 a 0201 | an ancient empire to the west of Israel; centered on the Nile River and ruled by a Pharaoh; figured in many events described in the Old Testament -08897065 15 n 03 Egypt 0 Arab_Republic_of_Egypt 0 United_Arab_Republic 0 029 @i 08698379 n 0000 #p 08791167 n 0000 #p 09189411 n 0000 #m 08177030 n 0000 #m 08172103 n 0000 + 02971469 a 0101 -r 01278232 n 0000 %p 02751623 n 0000 -r 08012028 n 0000 -r 08012765 n 0000 %p 08896645 n 0000 %p 08897843 n 0000 %p 08898002 n 0000 %p 08898187 n 0000 %p 08898457 n 0000 %p 08898633 n 0000 %p 08898941 n 0000 %p 08899149 n 0000 %p 08899351 n 0000 %p 08899577 n 0000 %p 08899776 n 0000 %p 08900047 n 0000 %p 08900204 n 0000 %p 08900377 n 0000 %p 09168020 n 0000 %p 09170788 n 0000 %p 09332246 n 0000 %p 09371360 n 0000 %m 09700492 n 0000 | a republic in northeastern Africa known as the United Arab Republic until 1971; site of an ancient civilization that flourished from 2600 to 30 BC -08897843 15 n 01 Lower_Egypt 0 002 @i 08491826 n 0000 #p 08897065 n 0000 | one of the two main administrative districts of Egypt; consists of the Nile delta -08898002 15 n 01 Upper_Egypt 0 003 @i 08491826 n 0000 #p 08897065 n 0000 %p 08899478 n 0000 | one of the two main administrative districts of Egypt; extends south from Cairo to Sudan -08898187 15 n 02 Alexandria 0 El_Iskandriyah 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08897065 n 0000 | the chief port of Egypt; located on the western edge of the Nile delta on the Mediterranean Sea; founded by Alexander the Great; the capital of ancient Egypt -08898457 15 n 03 Aswan 0 Assuan 0 Assouan 0 002 @i 08524735 n 0000 #p 08897065 n 0000 | an ancient city on the Nile in Egypt; two dams across the Nile have been built nearby -08898633 15 n 05 Cairo 0 Al_Qahira 0 El_Qahira 0 Egyptian_capital 0 capital_of_Egypt 0 004 @i 08691669 n 0000 @i 08633957 n 0000 #p 08897065 n 0000 %m 09886807 n 0000 | the capital of Egypt and the largest city in Africa; a major port just to the south of the Nile delta; formerly the home of the Pharaohs -08898941 15 n 01 El_Alamein 0 002 @i 08672738 n 0000 #p 08897065 n 0000 | a village to the west of Alexandria on the northern coast of Egypt; the scene of a decisive Allied victory over the Germans in 1942 -08899149 15 n 03 Giza 0 El_Giza 0 Gizeh 0 002 @i 08524735 n 0000 #p 08897065 n 0000 | an ancient Egyptian city on the west bank of the Nile opposite Cairo; site of three Great Pyramids and the Sphinx -08899351 15 n 01 Memphis 1 002 @i 08524735 n 0000 #p 08897065 n 0000 | an ancient city of Egypt on the Nile (south of Cairo) -08899478 15 n 01 Nag_Hammadi 0 002 @i 08665504 n 0000 #p 08898002 n 0000 | a town in Upper Egypt -08899577 15 n 02 Luxor 0 El-Aksur 0 002 @i 08524735 n 0000 #p 08897065 n 0000 | a city in central Egypt on the east bank of the Nile that is a center for visitors to the ruins of and around Thebes -08899776 15 n 01 Thebes 1 003 @i 08524735 n 0000 #p 08897065 n 0000 %m 09711978 n 0000 | an ancient Egyptian city on the Nile River that flourished from the 22nd century BC to the 18th century BC; today the archeological remains include many splendid temples and tombs -08900047 15 n 03 Saqqara 0 Saqqarah 0 Sakkara 0 002 @i 08665504 n 0000 #p 08897065 n 0000 | a town in northern Egypt; site of the oldest Egyptian pyramids -08900204 15 n 01 Suez 0 002 @i 08524735 n 0000 #p 08897065 n 0000 | a city in northeastern Egypt at the head of the Gulf of Suez and at the southern end of the Suez Canal -08900377 15 n 01 Suez_Canal 0 002 @i 04196337 n 0000 #p 08897065 n 0000 | a ship canal in northeastern Egypt linking the Red Sea with the Mediterranean Sea -08900535 15 n 03 India 0 Republic_of_India 0 Bharat 0 071 @i 08700255 n 0000 #p 09207288 n 0000 #m 08857682 n 0000 #m 08049989 n 0000 #m 08177030 n 0000 + 02928347 a 0101 -r 02344070 a 0000 -r 02528566 a 0000 -r 00782927 n 0000 -r 01281154 n 0000 -r 01284928 n 0000 -r 01289997 n 0000 -r 01291310 n 0000 -r 03443543 n 0000 -r 07586318 n 0000 -r 07683490 n 0000 -r 08015116 n 0000 -r 08045428 n 0000 -r 08096624 n 0000 -r 08235623 n 0000 -r 08311522 n 0000 -r 08405873 n 0000 -r 08643267 n 0000 %p 08902097 n 0000 %p 08902196 n 0000 %p 08902321 n 0000 %p 08902422 n 0000 %p 08902569 n 0000 %p 08902753 n 0000 %p 08902894 n 0000 %p 08903220 n 0000 %p 08903352 n 0000 %p 08903487 n 0000 %p 08903636 n 0000 %p 08903872 n 0000 %p 08904115 n 0000 %p 08904269 n 0000 %p 08904392 n 0000 %p 08904533 n 0000 %p 08904731 n 0000 %p 08904858 n 0000 %p 08904954 n 0000 %p 08905085 n 0000 %p 08905186 n 0000 %p 08905313 n 0000 %p 08905467 n 0000 %p 08905646 n 0000 %p 08905751 n 0000 %p 08905936 n 0000 %p 08906053 n 0000 %p 08906169 n 0000 %p 08906272 n 0000 %p 08975617 n 0000 %p 09173417 n 0000 %p 09228144 n 0000 %p 09286630 n 0000 %p 09303647 n 0000 %p 09322930 n 0000 %p 09365128 n 0000 %p 09396275 n 0000 -r 09449949 n 0000 %p 09458587 n 0000 %m 09673495 n 0000 -r 09826821 n 0000 -r 09987927 n 0000 -r 10220228 n 0000 -r 10282374 n 0000 -r 10286282 n 0000 -r 10348752 n 0000 -r 10764719 n 0000 -r 13751686 n 0000 | a republic in the Asian subcontinent in southern Asia; second most populous country in the world; achieved independence from the United Kingdom in 1947 -08902097 15 n 01 Assam 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | state in northeastern India -08902196 15 n 02 Karnataka 0 Mysore 1 002 @i 08654360 n 0000 #p 08900535 n 0000 | state in southern India; formerly Mysore -08902321 15 n 01 Manipur 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | state in northeastern India -08902422 15 n 01 Hindustan 0 003 @i 08574314 n 0000 #p 08900535 n 0000 %m 09713501 n 0000 | northern region of India where Hinduism predominates -08902569 15 n 01 Sikkim 0 002 @i 08574314 n 0000 #p 08900535 n 0000 | a geographical area and former kingdom in northeastern India in the Himalaya Mountains between Nepal and Bhutan -08902753 15 n 02 Kanara 0 Canara 0 002 @i 08574314 n 0000 #p 08900535 n 0000 | a historical region of southwestern India on the west coast -08902894 15 n 01 Punjab 0 003 @i 08574314 n 0000 #p 08900535 n 0000 #p 08975902 n 0000 | a historical region on northwestern India and northern Pakistan -08903049 15 n 03 New_Delhi 0 Indian_capital 0 capital_of_India 0 002 @i 08691669 n 0000 #p 08903220 n 0000 | the capital of India is a division of the old city of Delhi -08903220 15 n 02 Delhi 0 Old_Delhi 0 003 @i 08524735 n 0000 #p 08900535 n 0000 %p 08903049 n 0000 | a city in north central India -08903352 15 n 01 Bangalore 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | an industrial city in south central India (west of Chennai) -08903487 15 n 02 Jabalpur 0 Jubbulpore 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | an industrial city of central India to the southeast of Delhi -08903636 15 n 02 Kolkata 0 Calcutta 0 003 @i 08524735 n 0000 #p 08900535 n 0000 + 02978495 a 0201 | the largest city in India and one of the largest cities in the world; located in eastern India; suffers from poverty and overcrowding -08903872 15 n 02 Mumbai 0 Bombay 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in western India just off the coast of the Arabian Sea; India's 2nd largest city (after Calcutta); has the only natural deep-water harbor in western India -08904115 15 n 01 Agra 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in northern India; former capital of the Mogul empire; site of the Taj Mahal -08904269 15 n 01 Hyderabad 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in south central India in Andhra Pradesh -08904392 15 n 02 Chennai 0 Madras 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in Tamil Nadu on the Bay of Bengal; formerly Madras -08904533 15 n 01 Lucknow 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in northern India in Uttar Pradesh; during the Indian Mutiny its British residents were besieged by Indian insurgents -08904731 15 n 01 Mysore 0 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in southern India to the southwest of Bangalore -08904858 15 n 01 Salem 2 002 @i 08524735 n 0000 #p 08900535 n 0000 | a city in southern India -08904954 15 n 01 Andhra_Pradesh 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state of southeastern India on the Bay of Bengal -08905085 15 n 01 Bihar 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state of northeastern India -08905186 15 n 01 Goa 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state of southwestern India; a former Portuguese colony -08905313 15 n 02 Gujarat 0 Gujerat 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | an industrialized state in western India that includes parts of Bombay -08905467 15 n 02 Tamil_Nadu 0 Madras 1 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state in southeastern India on the Bay of Bengal (south of Andhra Pradesh); formerly Madras -08905646 15 n 01 Uttar_Pradesh 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state in northern India -08905751 15 n 02 Gujarat 1 Gujerat 1 002 @i 08574314 n 0000 #p 08900535 n 0000 | a region of western India to the north of Bombay (bordering the Arabian Sea) where Gujarati is spoken -08905936 15 n 01 Maharashtra 0 002 @i 08574314 n 0000 #p 08900535 n 0000 | a historical area in west-central India -08906053 15 n 01 Orissa 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | state in eastern India on the Bay of Bengal -08906169 15 n 01 Nilgiri_Hills 0 002 @i 09303008 n 0000 #p 08900535 n 0000 | hills in southern India -08906272 15 n 01 West_Bengal 0 002 @i 08654360 n 0000 #p 08900535 n 0000 | a state in eastern India -08906374 15 n 02 Nepal 0 Kingdom_of_Nepal 0 016 @i 08700255 n 0000 #p 09207288 n 0000 -r 03615790 n 0000 -r 08096624 n 0000 %p 08906809 n 0000 %p 09197945 n 0000 %p 09241047 n 0000 %p 09266453 n 0000 %p 09277010 n 0000 %p 09303647 n 0000 %p 09323221 n 0000 %p 09338712 n 0000 %p 09346284 n 0000 %p 09375693 n 0000 %m 09724066 n 0000 %m 09733028 n 0000 | a small landlocked Asian country high in the Himalayas between India and China -08906809 15 n 03 Kathmandu 0 Katmandu 0 capital_of_Nepal 0 002 @i 08691669 n 0000 #p 08906374 n 0000 | the capital and largest city of Nepal -08906952 15 n 04 Tibet 0 Thibet 0 Xizang 0 Sitsang 0 015 @i 08700255 n 0000 #p 09207288 n 0000 + 02965696 a 0101 -r 06241825 n 0000 -r 06930934 n 0000 %p 08907377 n 0000 %p 09241047 n 0000 %p 09277010 n 0000 %p 09290626 n 0000 %p 09303647 n 0000 %p 09323221 n 0000 %p 09338712 n 0000 %p 09346284 n 0000 %p 09375693 n 0000 %m 09733028 n 0000 | an autonomous region of the Peoples Republic of China; located in the Himalayas -08907377 15 n 04 Lhasa 0 Lassa 0 capital_of_Tibet 0 Forbidden_City 1 002 @i 08691669 n 0000 #p 08906952 n 0000 | the sacred city of Lamaism; known as the Forbidden City for its former inaccessibility and hostility to strangers -08907606 15 n 03 Indonesia 0 Republic_of_Indonesia 0 Dutch_East_Indies 0 019 @i 08544813 n 0000 #p 08715110 n 0000 #p 08836329 n 0000 #m 08177030 n 0000 #m 08487504 n 0000 + 02972194 a 0101 -r 08031386 n 0000 -r 08034579 n 0000 -r 08248521 n 0000 -r 08283866 n 0000 %p 08908248 n 0000 %p 08908509 n 0000 %p 08908739 n 0000 %p 08908954 n 0000 %p 08909107 n 0000 %p 08909233 n 0000 %p 08909537 n 0000 %p 09175915 n 0000 %m 09714264 n 0000 | a republic in southeastern Asia on an archipelago including more than 13,000 islands; achieved independence from the Netherlands in 1945; the principal oil producer in the Far East and Pacific regions -08908248 15 n 01 Java 0 007 @i 09316454 n 0000 #p 08907606 n 0000 + 03076663 a 0102 %p 08909719 n 0000 %p 08909933 n 0000 %p 08910230 n 0000 %m 10220080 n 0000 | an island in Indonesia to the south of Borneo; one of the world's most densely populated regions -08908509 15 n 01 Bali 0 003 @i 09316454 n 0000 #p 08907606 n 0000 #m 08842583 n 0000 | an island in Indonesia to the east of Java; striking volcanic scenery; culture is known for elaborate dances and rituals and for handicrafts -08908739 15 n 01 Timor 0 004 @i 09316454 n 0000 #p 08907606 n 0000 #m 08842583 n 0000 %p 08776435 n 0000 | an island in Indonesia in the Malay Archipelago; the largest and most eastern of the Lesser Sunda Islands -08908954 15 n 01 Sumatra 0 004 @i 09316454 n 0000 #p 08907606 n 0000 %p 08910106 n 0000 %m 09750157 n 0000 | a mountainous island in western Indonesia -08909107 15 n 02 Celebes 0 Sulawesi 0 002 @i 09316454 n 0000 #p 08907606 n 0000 | a mountainous island in eastern Indonesia -08909233 15 n 02 Moluccas 0 Spice_Islands 0 002 @i 09316454 n 0000 #p 08907606 n 0000 | a group of island in eastern Indonesia between Celebes and New Guinea; settled by the Portuguese but taken by the Dutch who made them the center for a spice monopoly, at which time they were known as Spice Islands -08909537 15 n 02 Indonesian_Borneo 0 Kalimantan 1 003 @i 08654360 n 0000 #p 08843215 n 0000 #p 08907606 n 0000 | the part of Indonesia on the southern side of the island of Borneo -08909719 15 n 03 Jakarta 0 Djakarta 0 capital_of_Indonesia 0 002 @i 08691669 n 0000 #p 08908248 n 0000 | capital and largest city of Indonesia; located on the island of Java; founded by the Dutch in 17th century -08909933 15 n 01 Bandung 0 002 @i 08524735 n 0000 #p 08908248 n 0000 | a city in Indonesia; located on western Java (southeast of Jakarta); a resort known for its climate -08910106 15 n 01 Medan 0 002 @i 08524735 n 0000 #p 08908954 n 0000 | a city in Indonesia; located in northeastern Sumatra -08910230 15 n 02 Semarang 0 Samarang 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08908248 n 0000 | a port city is southern Indonesia; located in northern Java -08910394 15 n 01 Gulf_States 1 009 @i 08574314 n 0000 %p 08848094 n 0000 %p 08910668 n 0000 %p 08913434 n 0000 %p 08929243 n 0000 %p 08975106 n 0000 %p 08986905 n 0000 %p 08993288 n 0000 %p 09044190 n 0000 | the countries in southwestern Asia that border the Persian Gulf -08910668 15 n 03 Iran 0 Islamic_Republic_of_Iran 0 Persia 0 028 @i 08700255 n 0000 #p 08791167 n 0000 #p 09207288 n 0000 #p 08910394 n 0000 #m 08177030 n 0000 + 03075191 a 0302 + 03075191 a 0101 -r 08034778 n 0000 -r 08474341 n 0000 %p 08911421 n 0000 %p 08911602 n 0000 %p 08911726 n 0000 %p 08911868 n 0000 %p 08912012 n 0000 %p 08912153 n 0000 %p 08912279 n 0000 %p 08912427 n 0000 %p 08912559 n 0000 %p 08912703 n 0000 %p 08913085 n 0000 %p 09038990 n 0000 %p 09169038 n 0000 %p 09169188 n 0000 %p 09174457 n 0000 %p 09237404 n 0000 %p 09333706 n 0000 %m 09714429 n 0000 -r 09826945 n 0000 | a theocratic Islamic republic in the Middle East in western Asia; Iran was the core of the ancient empire that was known as Persia until 1935; rich in oil -08911421 15 n 04 Teheran 0 Tehran 0 capital_of_Iran 0 Iranian_capital 0 002 @i 08691669 n 0000 #p 08910668 n 0000 | the capital and largest city of Iran; located in northern Iran -08911602 15 n 01 Abadan 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08910668 n 0000 | a port city in southwestern Iran -08911726 15 n 01 Bam 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | an ancient city in southeastern Iran; destroyed by an earthquake in 2003 -08911868 15 n 02 Mashhad 0 Meshed 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | the holy city of Shiite Muslims; located in northeastern Iran -08912012 15 n 03 Isfahan 0 Esfahan 0 Aspadana 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | city in central Iran; former capital of Persia -08912153 15 n 02 Rasht 0 Resht 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | city in northwestern Iran near the Caspian Sea -08912279 15 n 01 Shiraz 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | a city in central southwestern Iran; ruins of ancient Persepolis are nearby -08912427 15 n 01 Tabriz 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | an ancient city in northwestern Iran; known for hot springs -08912559 15 n 02 Urmia 0 Orumiyeh 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | a city on the western side of Lake Urmia in northwestern Iran -08912703 15 n 01 Qum 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | a city in northwestern Iran; a place of pilgrimage for Shiite Muslims -08912842 15 n 02 Persia 1 Persian_Empire 0 003 @i 08557482 n 0000 #p 09207288 n 0000 -r 09546905 n 0000 | an empire in southern Asia created by Cyrus the Great in the 6th century BC and destroyed by Alexander the Great in the 4th century BC -08913085 15 n 01 Persepolis 0 002 @i 08524735 n 0000 #p 08910668 n 0000 | an ancient city that was the capital of the ancient Persian Empire; now in ruins -08913242 15 n 02 Elam 0 Susiana 0 001 @i 08574314 n 0000 | an ancient country in southwestern Asia to the east of the Tigris River (in what is modern Iran); was known for its warlike people -08913434 15 n 04 Iraq 0 Republic_of_Iraq 0 Al-Iraq 0 Irak 0 030 @i 08700255 n 0000 #p 08791167 n 0000 #p 08910394 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 -r 06988684 n 0000 -r 08015321 n 0000 -r 08020242 n 0000 -r 08344917 n 0000 -r 08345189 n 0000 -r 08474120 n 0000 %p 08914193 n 0000 %p 08914413 n 0000 %p 08914573 n 0000 %p 08914850 n 0000 %p 08915017 n 0000 %p 08916316 n 0000 %p 08917503 n 0000 %p 08917881 n 0000 %p 08918248 n 0000 %p 08918944 n 0000 %p 08919241 n 0000 %p 08919475 n 0000 %p 09038990 n 0000 %p 09039260 n 0000 %p 09173023 n 0000 %p 09274739 n 0000 %p 09458791 n 0000 %m 09714694 n 0000 | a republic in the Middle East in western Asia; the ancient civilization of Mesopotamia was in the area now known as Iraq -08914193 15 n 03 Baghdad 0 Bagdad 0 capital_of_Iraq 0 002 @i 08691669 n 0000 #p 08913434 n 0000 | capital and largest city of Iraq; located on the Tigris River; "Baghdad is one of the great cities of the Muslim world" -08914413 15 n 02 Basra 0 Basia 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08913434 n 0000 | the second largest city in Iraq; an oil port in southern Iraq -08914573 15 n 03 Kerbala 0 Karbala 0 Kerbela 0 003 @i 08524735 n 0000 #p 08913434 n 0000 -r 01270860 n 0000 | a city of central Iraq to the south of Baghdad; a holy city for Shiite Muslims because it is the site of the tomb of Mohammed's grandson who was killed there in 680 -08914850 15 n 01 Kirkuk 0 002 @i 08524735 n 0000 #p 08913434 n 0000 | a city in northeastern Iraq; the center of a rich oilfield with pipelines to the Mediterranean -08915017 15 n 01 Mosul 0 002 @i 08524735 n 0000 #p 08913434 n 0000 | a city in northern Iraq on the Tigris across from the ruins of Nineveh -08915159 15 n 01 Levant 0 003 @i 08574314 n 0000 #p 08791167 n 0000 %m 09720702 n 0000 | the former name for the geographical area of the eastern Mediterranean that is now occupied by Lebanon, Syria, and Israel -08915372 15 n 03 Macedon 0 Macedonia 1 Makedonija 0 004 @i 08574314 n 0000 #p 08713772 n 0000 -r 01292343 n 0000 %m 09721444 n 0000 | the ancient kingdom of Philip II and Alexander the Great in the southeastern Balkans that is now divided among modern Macedonia and Greece and Bulgaria -08915660 15 n 01 Philippi 0 001 @i 08524735 n 0000 | a city in ancient Macedonia that was important in early Christianity -08915784 15 n 01 Thrace 0 004 @i 08574314 n 0000 #p 08713772 n 0000 -r 01285101 n 0000 %m 09712090 n 0000 | an ancient country and wine producing region in the east of the Balkan Peninsula to the north of the Aegean Sea; colonized by ancient Greeks; later a Roman province; now divided between Bulgaria and Greece and Turkey -08916111 15 n 03 Edirne 0 Adrianople 0 Adrianopolis 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | a city in northwestern Turkey; a Thracian town that was rebuilt and renamed by the Roman Emperor Hadrian -08916316 15 n 01 Mesopotamia 0 019 @i 08574314 n 0000 #p 08913434 n 0000 -r 06987525 n 0000 -r 06987659 n 0000 %p 08916832 n 0000 -r 08916832 n 0000 %p 08917503 n 0000 %p 08917881 n 0000 %p 08918944 n 0000 -r 09515877 n 0000 -r 09515988 n 0000 -r 09517209 n 0000 -r 09517628 n 0000 -r 09518145 n 0000 -r 09519901 n 0000 -r 09520223 n 0000 -r 09520498 n 0000 -r 09521994 n 0000 -r 09522222 n 0000 | the land between the Tigris and Euphrates; site of several ancient civilizations; part of what is now known as Iraq -08916832 15 n 01 Babylon 0 029 @i 08524735 n 0000 #p 08916316 n 0000 ;r 08916316 n 0000 + 02656539 a 0101 %p 03491491 n 0000 %p 04460634 n 0000 -r 06352446 n 0000 -r 08917503 n 0000 -r 09515027 n 0000 -r 09515131 n 0000 -r 09515269 n 0000 -r 09515473 n 0000 -r 09515570 n 0000 -r 09515712 n 0000 -r 09516498 n 0000 -r 09516881 n 0000 -r 09517342 n 0000 -r 09518306 n 0000 -r 09518451 n 0000 -r 09518908 n 0000 -r 09519288 n 0000 -r 09519596 n 0000 -r 09520367 n 0000 -r 09520617 n 0000 -r 09520752 n 0000 -r 09521157 n 0000 -r 09521648 n 0000 -r 09521763 n 0000 -r 09522121 n 0000 | the chief city of ancient Mesopotamia and capital of the ancient kingdom of Babylonia -08917503 15 n 03 Babylonia 0 Chaldaea 1 Chaldea 1 008 @i 08574314 n 0000 #p 08916316 n 0000 #p 08913434 n 0000 ;r 08916832 n 0000 + 02690613 a 0301 + 02690613 a 0302 -r 01276875 n 0000 %p 08918248 n 0000 | an ancient kingdom in southern Mesopotamia; Babylonia conquered Israel in the 6th century BC and exiled the Jews to Babylon (where Daniel became a counselor to the king) -08917881 15 n 02 Chaldea 0 Chaldaea 0 005 @i 08574314 n 0000 #p 08916316 n 0000 #p 08913434 n 0000 + 02690613 a 0101 + 02690613 a 0102 | an ancient region of Mesopotamia lying between the Euphrates delta and the Persian Gulf and the Arabian Desert; settled in 1000 BC and destroyed by the Persians in 539 BC; reached the height of its power under Nebuchadnezzar II -08918248 15 n 01 Sumer 0 019 @i 08574314 n 0000 #p 08917503 n 0000 #p 08913434 n 0000 + 02805331 a 0101 %p 08918800 n 0000 -r 09517890 n 0000 -r 09518020 n 0000 -r 09518145 n 0000 -r 09518683 n 0000 -r 09518782 n 0000 -r 09519748 n 0000 -r 09519901 n 0000 -r 09520103 n 0000 -r 09520880 n 0000 -r 09521157 n 0000 -r 09522498 n 0000 -r 09522615 n 0000 -r 09522735 n 0000 -r 09522837 n 0000 | an area in the southern region of Babylonia in present-day Iraq; site of the Sumerian civilization of city-states that flowered during the third millennium BC -08918800 15 n 01 Ur 0 002 @i 08524735 n 0000 #p 08918248 n 0000 | an ancient city of Sumer located on a former channel of the Euphrates River -08918944 15 n 01 Assyria 0 010 @i 08574314 n 0000 #p 08916316 n 0000 #p 08913434 n 0000 %p 08919241 n 0000 %p 08919475 n 0000 -r 09516146 n 0000 -r 09516498 n 0000 -r 09521395 n 0000 -r 09521521 n 0000 -r 09521763 n 0000 | an ancient kingdom in northern Mesopotamia which is in present-day Iraq -08919241 15 n 03 Assur 0 Asur 0 Ashur 0 003 @i 08524735 n 0000 #p 08918944 n 0000 #p 08913434 n 0000 | an ancient Assyrian city on the Tigris and traditional capital of Assyria; just to the south of the modern city of Mosul in Iraq -08919475 15 n 01 Nineveh 0 003 @i 08524735 n 0000 #p 08918944 n 0000 #p 08913434 n 0000 | an ancient Assyrian city on the Tigris across from the modern city of Mosul in the northern part of what is now known as Iraq -08919693 15 n 02 Phoenicia 0 Phenicia 0 006 @i 08574314 n 0000 -r 06989473 n 0000 %p 08919949 n 0000 %p 08920207 n 0000 -r 09516323 n 0000 -r 09517057 n 0000 | an ancient maritime country (a collection of city states) at eastern end of the Mediterranean -08919949 15 n 01 Carthage 0 004 @i 08177958 n 0000 #p 08919693 n 0000 + 03104740 a 0101 %m 09697070 n 0000 | an ancient city state on the north African coast near modern Tunis; founded by Phoenicians; destroyed and rebuilt by Romans; razed by Arabs in 697 -08920207 15 n 01 Utica 0 002 @i 08524735 n 0000 #p 08919693 n 0000 | an ancient city on the north coast of Africa (northwest of Carthage); destroyed by Arabs around 700 AD -08920381 15 n 03 Japan 1 Japanese_Islands 0 Japanese_Archipelago 0 007 @i 09203827 n 0000 #p 09382990 n 0000 %p 08920722 n 0000 %p 08920924 n 0000 %p 08921392 n 0000 %p 08921613 n 0000 %p 09380446 n 0000 | a string of more than 3,000 islands to the east of Asia extending 1,300 miles between the Sea of Japan and the western Pacific Ocean -08920722 15 n 03 Hokkaido 0 Ezo 0 Yezo 0 004 @i 09316454 n 0000 #p 08920381 n 0000 %p 08923177 n 0000 %p 08925552 n 0000 | the second largest of the four main islands of Japan; to the north of Honshu -08920924 15 n 02 Honshu 0 Hondo 0 015 @i 09316454 n 0000 #p 08920381 n 0000 %p 08923348 n 0000 %p 08923586 n 0000 %p 08923755 n 0000 %p 08923884 n 0000 %p 08924023 n 0000 %p 08924238 n 0000 %p 08924913 n 0000 %p 08925093 n 0000 %p 08925287 n 0000 %p 08926231 n 0000 %p 08926381 n 0000 %p 08926543 n 0000 %p 08926681 n 0000 | the central and largest of the four main islands of Japan; between the Sea of Japan and the Pacific Ocean; regarded as the Japanese mainland -08921392 15 n 01 Kyushu 0 006 @i 09316454 n 0000 #p 08920381 n 0000 %p 08925700 n 0000 %p 08925830 n 0000 %p 08925957 n 0000 %p 09355397 n 0000 | the southernmost of the four main islands of Japan; contains coal fields -08921613 15 n 01 Shikoku 0 002 @i 09316454 n 0000 #p 08920381 n 0000 | the smallest of the four main islands of Japan; to the south of Honshu and to the east of Kyushu; separated from Honshu by the Inland Sea; forested and mountainous -08921850 15 n 03 Japan 0 Nippon 0 Nihon 0 060 @i 08700255 n 0000 #p 09207288 n 0000 -r 00223362 n 0000 -r 00448232 n 0000 -r 00504325 n 0000 -r 00505726 n 0000 -r 00710338 n 0000 -r 00825951 n 0000 -r 00826213 n 0000 -r 00826397 n 0000 -r 00936456 n 0000 -r 01027231 n 0000 -r 03408444 n 0000 -r 03608074 n 0000 %p 03608224 n 0000 -r 04201297 n 0000 -r 06242237 n 0000 -r 06929279 n 0000 -r 06929459 n 0000 -r 07857170 n 0000 -r 07857356 n 0000 -r 07879174 n 0000 -r 07879350 n 0000 -r 07879450 n 0000 -r 07879953 n 0000 -r 07891433 n 0000 -r 08017614 n 0000 -r 08018983 n 0000 -r 08026904 n 0000 -r 08230906 n 0000 -r 08318777 n 0000 -r 08626947 n 0000 %p 08923177 n 0000 %p 08923348 n 0000 %p 08923586 n 0000 %p 08923755 n 0000 %p 08923884 n 0000 %p 08924023 n 0000 %p 08924238 n 0000 %p 08924560 n 0000 %p 08924691 n 0000 %p 08925093 n 0000 %p 08925552 n 0000 %p 08925700 n 0000 %p 08925830 n 0000 %p 08925957 n 0000 %p 08926231 n 0000 %p 08926381 n 0000 %p 08926543 n 0000 %p 08926681 n 0000 %p 08926877 n 0000 %p 08927068 n 0000 %p 09175016 n 0000 %m 09718217 n 0000 -r 10229193 n 0000 -r 10240715 n 0000 -r 10674713 n 0000 -r 10801802 n 0000 -r 10960922 n 0000 -r 11219502 n 0000 | a constitutional monarchy occupying the Japanese Archipelago; a world leader in electronics and automobile manufacture and ship building -08923177 15 n 01 Asahikawa 0 003 @i 08524735 n 0000 #p 08920722 n 0000 #p 08921850 n 0000 | a city on western Hokkaido that is the center of a fertile agricultural area -08923348 15 n 07 Tokyo 0 Tokio 0 Yeddo 0 Yedo 0 Edo 0 Japanese_capital 0 capital_of_Japan 0 003 @i 08691669 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | the capital and largest city of Japan; the economic and cultural center of Japan -08923586 15 n 01 Nagano 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a city in central Honshu to the northwest of Tokyo; site of a Buddhist shrine -08923755 15 n 01 Nagoya 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | an industrial city in southern Honshu -08923884 15 n 01 Omiya 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a city of east central Honshu; a suburb of Tokyo -08924023 15 n 01 Osaka 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 %p 03767846 n 0000 | port city on southern Honshu on Osaka Bay; a commercial and industrial center of Japan -08924238 15 n 01 Yokohama 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | port city on southeastern Honshu in central Japan -08924400 15 n 01 Okinawa 0 004 @i 09316454 n 0000 #p 08924691 n 0000 -r 01289061 n 0000 %p 08924560 n 0000 | the largest island of the central Ryukyu Islands -08924560 15 n 01 Naha_City 0 003 @i 08524735 n 0000 #p 08924400 n 0000 #p 08921850 n 0000 | the chief city in the Ryukyu Islands -08924691 15 n 01 Ryukyu_Islands 0 003 @i 09203827 n 0000 #p 08921850 n 0000 %p 08924400 n 0000 | a chain of 55 islands in the western Pacific to the to the southwest of Japan (returned by United States to Japan in 1972) -08924913 15 n 01 Kobe 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08920924 n 0000 | a port city in Japan on Osaka Bay in southern Honshu; was damaged by an earthquake in 1995 -08925093 15 n 01 Kyoto 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a city in central Japan on southern Honshu; a famous cultural center that was once the capital of Japan -08925287 15 n 01 Hiroshima 0 003 @i 08633957 n 0000 @i 08524735 n 0000 #p 08920924 n 0000 | a port city on the southwestern coast of Honshu in Japan; on August 6, 1945 Hiroshima was almost completely destroyed by the first atomic bomb dropped on a populated area -08925552 15 n 01 Sapporo 0 003 @i 08524735 n 0000 #p 08920722 n 0000 #p 08921850 n 0000 | a commercial city in northern Japan on western Hokkaido -08925700 15 n 01 Kitakyushu 0 003 @i 08524735 n 0000 #p 08921392 n 0000 #p 08921850 n 0000 | a Japanese city on northern Kyushu -08925830 15 n 01 Fukuoka 0 003 @i 08524735 n 0000 #p 08921392 n 0000 #p 08921850 n 0000 | a city in southern Japan on Kyushu -08925957 15 n 01 Nagasaki 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08921392 n 0000 #p 08921850 n 0000 | a city in southern Japan on Kyushu; a leading port and shipbuilding center; on August 9, 1945 Nagasaki became the second populated area to receive an atomic bomb -08926231 15 n 01 Toyohashi 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a Japanese city in southern Honshu on the Pacific shore -08926381 15 n 01 Toyonaki 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a Japanese city in southern Honshu; main residential suburb of Osaka -08926543 15 n 01 Toyota 0 003 @i 08524735 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | an industrial city of Japan in southern Honshu -08926681 15 n 02 Asama 0 Mount_Asama 0 003 @i 09472597 n 0000 #p 08920924 n 0000 #p 08921850 n 0000 | a volcano in central Honshu near Nagano; one of the largest volcanoes in Japan (8,340 feet) -08926877 15 n 01 Volcano_Islands 0 003 @i 09203827 n 0000 #p 08921850 n 0000 #p 09382990 n 0000 | a group of Japanese Islands in the northwestern Pacific Ocean to the north of the Marianas -08927068 15 n 01 Iwo_Jima 0 002 @i 09316454 n 0000 #p 08921850 n 0000 | the largest of the Volcano Islands of Japan -08927186 15 n 02 Jordan 0 Hashemite_Kingdom_of_Jordan 0 013 @i 08700255 n 0000 #p 08791167 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 + 03077235 a 0101 -r 08011523 n 0000 -r 08018666 n 0000 %p 08927548 n 0000 %p 08927678 n 0000 %p 08928083 n 0000 %p 09173023 n 0000 %p 09263619 n 0000 %m 09718811 n 0000 | an Arab kingdom in southwestern Asia on the Red Sea -08927548 15 n 02 Amman 0 capital_of_Jordan 0 002 @i 08691669 n 0000 #p 08927186 n 0000 | the capital and largest city of Jordan -08927678 15 n 03 Al_Aqabah 0 Aqaba 0 Akaba 0 002 @i 08524735 n 0000 #p 08927186 n 0000 | Jordan's port; located in southwestern Jordan on the Gulf of Aqaba -08927836 15 n 01 Jericho 0 002 @i 08672738 n 0000 #p 08793489 n 0000 | a village in Palestine near the north end of the Dead Sea; in the Old Testament it was the first place taken by the Israelites under Joshua as they entered the Promised Land -08928083 15 n 02 Az_Zarqa 0 Zarqa 0 002 @i 08524735 n 0000 #p 08927186 n 0000 | city in northwestern Jordan -08928193 15 n 02 Kenya 0 Republic_of_Kenya 0 009 @i 08698379 n 0000 #p 09189411 n 0000 #p 08699426 n 0000 + 03078586 a 0101 %p 08928582 n 0000 %p 08928742 n 0000 %p 08928933 n 0000 %p 08929102 n 0000 %m 09719309 n 0000 | a republic in eastern Africa; achieved independence from the United Kingdom in 1963; major archeological discoveries have been made in the Great Rift Valley in Kenya -08928582 15 n 02 Nairobi 0 capital_of_Kenya 0 002 @i 08691669 n 0000 #p 08928193 n 0000 | the capital and largest city of Kenya; a center for tourist safaris -08928742 15 n 01 Kisumu 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08928193 n 0000 | a port city in western Kenya on the northeastern shore of Lake Victoria; fishing and trading center -08928933 15 n 01 Mombasa 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08928193 n 0000 | a port city in southern Kenya on a coral island in a bay of the Indian Ocean -08929102 15 n 01 Nakuru 0 002 @i 08524735 n 0000 #p 08928193 n 0000 | a city in western Kenya; commercial center of an agricultural region -08929243 15 n 03 Kuwait 0 State_of_Kuwait 0 Koweit 0 008 @i 08700255 n 0000 #p 08791167 n 0000 #p 08910394 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 %p 08929555 n 0000 %m 09719653 n 0000 | an Arab kingdom in Asia on the northwestern coast of the Persian Gulf; a major source of petroleum -08929555 15 n 04 Kuwait 1 Kuwait_City 0 Koweit 1 capital_of_Kuwait 0 002 @i 08691669 n 0000 #p 08929243 n 0000 | a seaport on the Persian Gulf and capital of Kuwait -08929722 15 n 02 Gaul 0 Gallia 0 001 @i 08574314 n 0000 | an ancient region of western Europe that included what is now northern Italy and France and Belgium and part of Germany and the Netherlands -08929922 15 n 02 France 0 French_Republic 0 133 @i 08696931 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 00530386 n 0000 -r 01269161 n 0000 -r 01271428 n 0000 -r 01274733 n 0000 -r 01276634 n 0000 -r 01277938 n 0000 -r 01281813 n 0000 -r 01287431 n 0000 -r 01289830 n 0000 -r 01291839 n 0000 -r 01292735 n 0000 -r 01293167 n 0000 -r 01294791 n 0000 -r 01295373 n 0000 -r 01295528 n 0000 -r 01296946 n 0000 -r 01298371 n 0000 -r 01298573 n 0000 -r 01305007 n 0000 -r 02805584 n 0000 %p 03705134 n 0000 -r 03713151 n 0000 -r 03855464 n 0000 -r 04117917 n 0000 -r 04481796 n 0000 %p 04529486 n 0000 -r 06776679 n 0000 -r 06776783 n 0000 -r 06964901 n 0000 -r 07527061 n 0000 -r 07571765 n 0000 -r 07571903 n 0000 -r 08002125 n 0000 -r 08036005 n 0000 -r 08051739 n 0000 -r 08167365 n 0000 -r 08167779 n 0000 -r 08167953 n 0000 -r 08168117 n 0000 -r 08219923 n 0000 -r 08388503 n 0000 -r 08541609 n 0000 -r 08548733 n 0000 -r 08626947 n 0000 %p 08932568 n 0000 %p 08934313 n 0000 %p 08934532 n 0000 %p 08934694 n 0000 %p 08934868 n 0000 %p 08935212 n 0000 %p 08935381 n 0000 %p 08935516 n 0000 %p 08935674 n 0000 %p 08935848 n 0000 %p 08936180 n 0000 %p 08936303 n 0000 %p 08936476 n 0000 %p 08936647 n 0000 %p 08936833 n 0000 %p 08936996 n 0000 %p 08937109 n 0000 %p 08937251 n 0000 %p 08937414 n 0000 %p 08937594 n 0000 %p 08937995 n 0000 %p 08938163 n 0000 %p 08938351 n 0000 %p 08938478 n 0000 %p 08938619 n 0000 %p 08938819 n 0000 %p 08939028 n 0000 %p 08939201 n 0000 %p 08939562 n 0000 %p 08940209 n 0000 %p 08940371 n 0000 %p 08940517 n 0000 %p 08940670 n 0000 %p 08940835 n 0000 %p 08941057 n 0000 %p 08941208 n 0000 %p 08941426 n 0000 %p 08941535 n 0000 %p 08941895 n 0000 %p 08942277 n 0000 %p 08942392 n 0000 %p 08942629 n 0000 %p 08942780 n 0000 %p 08942965 n 0000 %p 08943104 n 0000 %p 08943601 n 0000 %p 08943699 n 0000 %p 08943810 n 0000 %p 08943926 n 0000 %p 08944089 n 0000 %p 08944224 n 0000 %p 08944378 n 0000 %p 08944561 n 0000 %p 08944818 n 0000 %p 08944960 n 0000 %p 08945277 n 0000 %p 09194357 n 0000 %p 09287124 n 0000 %p 09316312 n 0000 %p 09331328 n 0000 %p 09336416 n 0000 %p 09342937 n 0000 %p 09343123 n 0000 %p 09348643 n 0000 %p 09353437 n 0000 %p 09357847 n 0000 %p 09401474 n 0000 %p 09408540 n 0000 %p 09408977 n 0000 %p 09421191 n 0000 %p 09423754 n 0000 %p 09425835 n 0000 %p 09429752 n 0000 %m 09692250 n 0000 %m 09708405 n 0000 -r 10005934 n 0000 -r 10108937 n 0000 -r 10253703 n 0000 -r 10408324 n 0000 -r 13752443 n 0000 -r 13752911 n 0000 -r 13753274 n 0000 -r 13753430 n 0000 -r 13753585 n 0000 -r 13753740 n 0000 | a republic in western Europe; the largest country wholly in Europe -08932568 15 n 04 Paris 0 City_of_Light 0 French_capital 0 capital_of_France 0 018 @i 08691669 n 0000 #p 08929922 n 0000 + 03023449 a 0101 %p 02805584 n 0000 %p 03266906 n 0000 %p 03692942 n 0000 %p 03890713 n 0000 %p 04496035 n 0000 %p 04496173 n 0000 %p 08933084 n 0000 %p 08933287 n 0000 %p 08933437 n 0000 %p 08933621 n 0000 %p 08933940 n 0000 %p 08934067 n 0000 %p 08934174 n 0000 %m 09708750 n 0000 %m 09708889 n 0000 | the capital and largest city of France; and international center of culture and commerce -08933084 15 n 02 Left_Bank 0 Latin_Quarter 0 003 @i 08641113 n 0000 #p 08932568 n 0000 %p 08933770 n 0000 | the region of Paris on the southern bank of the Seine; a center of artistic and student life -08933287 15 n 01 Montmartre 0 002 @i 08641113 n 0000 #p 08932568 n 0000 | the highest point in Paris; famous for its associations with many artists -08933437 15 n 02 Clichy 0 Clichy-la-Garenne 0 002 @i 08554440 n 0000 #p 08932568 n 0000 | a northwestern suburb of Paris; the residence of the Merovingian royalty in the 7th century -08933621 15 n 01 Orly 0 002 @i 08554440 n 0000 #p 08932568 n 0000 | a southeastern suburb of Paris; site of an international airport serving Paris -08933770 15 n 01 Quai_d'Orsay 0 002 @i 04334599 n 0000 #p 08933084 n 0000 | the street in Paris along the south bank of the Seine known for its governmental ministries -08933940 15 n 01 Right_Bank 0 002 @i 08641113 n 0000 #p 08932568 n 0000 | the region of Paris on the north bank of the Seine -08934067 15 n 01 Ile-St-Louis 0 002 @i 09316454 n 0000 #p 08932568 n 0000 | island in Paris on the Seine -08934174 15 n 01 Champs_Elysees 0 002 @i 04334599 n 0000 #p 08932568 n 0000 | a major avenue in Paris famous for elegant shops and cafes -08934313 15 n 01 Avignon 0 002 @i 08665504 n 0000 #p 08929922 n 0000 | a town in southeastern France on the Rhone River; the seat of the papacy from 1309 to 1378 and the residence of antipopes during the Great Schism -08934532 15 n 01 Bordeaux 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city in southwestern France; a major center of the wine trade -08934694 15 n 01 Brest 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city in northwestern France (in Brittany); the chief naval station of France -08934868 15 n 01 Calais 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a town in northern France on the Strait of Dover that serves as a ferry port to England; in 1347 it was captured by the English king Edward III after a long siege and remained in English hands until it was recaptured by the French king Henry II in 1558 -08935212 15 n 01 Cannes 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port and resort city on the French Riviera; site of an annual film festival -08935381 15 n 01 Chablis 0 002 @i 08665504 n 0000 #p 08929922 n 0000 | a town in north central France noted for white Burgundy wines -08935516 15 n 01 Chartres 0 003 @i 08665504 n 0000 #p 08929922 n 0000 %p 03010138 n 0000 | a town in northern France that is noted for its Gothic Cathedral -08935674 15 n 01 Cherbourg 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port town in northwestern France on the English Channel; site of a naval base -08935848 15 n 01 Dijon 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | an industrial city in eastern France to the north of Lyons -08935978 15 n 02 Dunkirk 0 Dunkerque 0 002 @i 08665504 n 0000 @i 08633957 n 0000 | a seaport in northern France on the North Sea; scene of the evacuation of British forces in 1940 during World War II -08936180 15 n 01 Grenoble 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city in southeastern France on the Isere River -08936303 15 n 01 Le_Havre 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city in northern France on the English Channel at the mouth of the Seine -08936476 15 n 01 Lille 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | an industrial city in northern France near the Belgian border; was the medieval capital of Flanders -08936647 15 n 02 Lyon 0 Lyons 0 003 @i 08524735 n 0000 #p 08929922 n 0000 #p 08945110 n 0000 | a city in east-central France on the Rhone River; a principal producer of silk and rayon -08936833 15 n 02 Marseille 0 Marseilles 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city in southeastern France on the Mediterranean -08936996 15 n 01 Nancy 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city in northeastern France in Lorraine -08937109 15 n 01 Nantes 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city in western France on the Loire estuary -08937251 15 n 01 Nice 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city in southeastern France on the Mediterranean; the leading resort on the French Riviera -08937414 15 n 01 Orleans 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city on the Loire river in north central France; site of the siege of Orleans by the English (1428-1429) -08937594 15 n 02 Rheims 0 Reims 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city in northeastern France to the east of Paris; scene of the coronation of most French kings; site of the unconditional German surrender in 1945 at the end of World War II -08937850 15 n 02 Strasbourg 0 Strassburg 0 001 @i 08524735 n 0000 | city on the Rhine in eastern France near the German border; an inland port -08937995 15 n 01 Toulon 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08929922 n 0000 | a port city and naval base in southeastern France on the Mediterranean coast -08938163 15 n 01 Toulouse 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city on the Garonne River in southern France to the southeast of Bordeaux; a cultural center of medieval Europe -08938351 15 n 01 Tours 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | an industrial city in western France on the Loire River -08938478 15 n 01 Valenciennes 0 002 @i 08665504 n 0000 #p 08929922 n 0000 | a town in northeastern France long noted for its lace industry -08938619 15 n 01 Versailles 0 002 @i 08524735 n 0000 #p 08929922 n 0000 | a city in north central France near Paris; site of the Palace of Versailles that was built by Louis XIV in the 17th century -08938819 15 n 01 Vichy 0 002 @i 08665504 n 0000 #p 08929922 n 0000 | a town in central France (south of Paris) noted for hot mineral springs; was capital of the unoccupied part of France during World War II -08939028 15 n 01 Vienne 0 002 @i 08665504 n 0000 #p 08929922 n 0000 | a town in south central France where is 1311-1313 the Roman Catholic Church held one of its councils -08939201 15 n 01 Riviera 0 004 @i 08574314 n 0000 #p 08929922 n 0000 #p 08801678 n 0000 %p 08939437 n 0000 | a coastal area between La Spezia in Italy and Cannes in France; "the Riviera contains some of Europe's most popular resorts" -08939437 15 n 02 French_Riviera 0 Cote_d'Azur 0 002 @i 08939562 n 0000 #p 08939201 n 0000 | the French part of the Riviera -08939562 15 n 01 French_region 0 030 @ 08574314 n 0000 #p 08929922 n 0000 ~i 08939437 n 0000 ~i 08940209 n 0000 ~i 08940371 n 0000 ~i 08940517 n 0000 ~i 08940670 n 0000 ~i 08940835 n 0000 ~i 08940936 n 0000 ~i 08941057 n 0000 ~i 08941208 n 0000 ~i 08941426 n 0000 ~i 08941535 n 0000 ~i 08941895 n 0000 ~i 08942277 n 0000 ~i 08942392 n 0000 ~i 08942508 n 0000 ~i 08942629 n 0000 ~i 08942780 n 0000 ~i 08942965 n 0000 ~i 08943104 n 0000 ~i 08943242 n 0000 ~i 08943461 n 0000 ~i 08943699 n 0000 ~i 08943810 n 0000 ~i 08943926 n 0000 ~i 08944089 n 0000 ~i 08944224 n 0000 ~i 08944378 n 0000 ~i 08944960 n 0000 | a geographical subdivision of France -08940209 15 n 03 Alsace 0 Alsatia 0 Elsass 0 003 @i 08939562 n 0000 #p 08929922 n 0000 + 02972344 a 0101 | a region of northeastern France famous for its wines -08940371 15 n 01 Anjou 0 003 @i 08939562 n 0000 #p 08929922 n 0000 %m 09709229 n 0000 | a former province of western France in the Loire valley -08940517 15 n 02 Aquitaine 0 Aquitania 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region of southwestern France between Bordeaux and the Pyrenees -08940670 15 n 01 Artois 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a former province of northern France near the English Channel (between Picardy and Flanders) -08940835 15 n 01 Auvergne 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region in central France -08940936 15 n 02 Basse-Normandie 0 Lower-Normandy 0 002 @i 08939562 n 0000 #p 08944561 n 0000 | a division of Normandy -08941057 15 n 02 Bourgogne 0 Burgundy 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a former province of eastern France that is famous for its wines -08941208 15 n 03 Bretagne 0 Brittany 0 Breiz 0 003 @i 08939562 n 0000 #p 08929922 n 0000 %m 09709001 n 0000 | a former province of northwestern France on a peninsula between the English Channel and the Bay of Biscay -08941426 15 n 01 Centre 2 002 @i 08939562 n 0000 #p 08929922 n 0000 | a low-lying region in central France -08941535 15 n 02 Champagne 0 Champagne-Ardenne 0 003 @i 08939562 n 0000 #p 08929922 n 0000 %p 08941681 n 0000 | a region of northeastern France -08941681 15 n 01 Ardennes 0 003 @i 09453008 n 0000 #p 08941535 n 0000 -r 01271107 n 0000 | a wooded plateau in the Champagne-Ardenne region of France; the site of intense fighting in World War I and World War II -08941895 15 n 02 Corse 0 Corsica 0 004 @i 08939562 n 0000 #p 08929922 n 0000 + 03025252 a 0201 -r 08015731 n 0000 | a region of France on the island of Corsica; birthplace of Napoleon Bonaparte -08942091 15 n 02 Corse 1 Corsica 1 003 @i 09316454 n 0000 #p 09350045 n 0000 + 03025252 a 0201 | an island in the Mediterranean; with adjacent islets it constitutes a region of France -08942277 15 n 01 Franche-Comte 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a former province of eastern France -08942392 15 n 02 Gascogne 0 Gascony 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region of southwestern France -08942508 15 n 02 Haute-Normandie 0 Upper-Normandy 0 002 @i 08939562 n 0000 #p 08944561 n 0000 | a division of Normandy -08942629 15 n 01 Ile-de-France 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region of north central France including Paris and the area around it -08942780 15 n 01 Languedoc-Roussillon 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region in south central France; named after the medieval dialect of French that was spoken there -08942965 15 n 01 Limousin 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region of central France to the west of the Auvergne mountains -08943104 15 n 02 Lorraine 0 Lothringen 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | an eastern French region rich in iron-ore deposits -08943242 15 n 01 Martinique 0 004 @i 09316454 n 0000 @i 08939562 n 0000 #p 08749864 n 0000 #m 08747887 n 0000 | an island in the eastern Caribbean in the Windward Islands; administered as an overseas region of France -08943461 15 n 01 Mayenne 0 002 @i 08939562 n 0000 #p 08943926 n 0000 | a department of northwestern France in the Pays de la Loire region -08943601 15 n 01 Midi 0 002 @i 08574314 n 0000 #p 08929922 n 0000 | the southern part of France -08943699 15 n 01 Midi-Pyrenees 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region in southwestern France -08943810 15 n 01 Nord-Pas-de-Calais 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region in northeastern France -08943926 15 n 01 Pays_de_la_Loire 0 003 @i 08939562 n 0000 #p 08929922 n 0000 %p 08943461 n 0000 | an agricultural region of western France on the Bay of Biscay -08944089 15 n 02 Picardie 0 Picardy 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a region of northern France on the English Channel -08944224 15 n 02 Poitou-Charentes 0 Poitou 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a low-lying region of west central France on the Bay of Biscay -08944378 15 n 01 Rhone-Alpes 0 003 @i 08939562 n 0000 #p 08929922 n 0000 %p 08945110 n 0000 | a mountainous region of eastern France drained by the Rhone and Saone and Isere rivers -08944561 15 n 02 Normandie 0 Normandy 0 005 @i 08574314 n 0000 #p 08929922 n 0000 %p 08940936 n 0000 %p 08942508 n 0000 %m 09713260 n 0000 | a former province of northwestern France on the English channel; divided into Haute-Normandie and Basse-Normandie -08944818 15 n 01 Orleanais 0 002 @i 08574314 n 0000 #p 08929922 n 0000 | a former province of north central France; centered around Orleans -08944960 15 n 01 Provence 0 002 @i 08939562 n 0000 #p 08929922 n 0000 | a former province of southeastern France; now administered with Cote d'Azur -08945110 15 n 01 Lyonnais 0 003 @i 08574314 n 0000 #p 08944378 n 0000 %p 08936647 n 0000 | a former province of east central France; now administered by Rhone-Alpes -08945277 15 n 01 Savoy 0 004 @i 08574314 n 0000 #p 08929922 n 0000 #p 09031653 n 0000 #p 08801678 n 0000 | a geographical region of historical importance; a former duchy in what is now southwestern France, western Switzerland, and northwestern Italy -08945529 15 n 03 Gabon 0 Gabonese_Republic 0 Gabun 0 004 @i 08698379 n 0000 #p 09189411 n 0000 %p 08945705 n 0000 %m 09710041 n 0000 | a republic on the west coast of Africa -08945705 15 n 02 Libreville 0 capital_of_Gabon 0 002 @i 08691669 n 0000 #p 08945529 n 0000 | the capital of Gabon -08945821 15 n 03 Gambia 0 The_Gambia 0 Republic_of_The_Gambia 0 005 @i 08698379 n 0000 #p 09189411 n 0000 + 03067153 a 0101 %p 08946042 n 0000 %m 09747495 n 0000 | a narrow republic surrounded by Senegal in West Africa -08946042 15 n 02 Banjul 0 capital_of_Gambia 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08945821 n 0000 | a port city and capital of Gambia -08946187 15 n 03 Ghana 0 Republic_of_Ghana 0 Gold_Coast 0 011 @i 08698379 n 0000 #p 09189411 n 0000 + 03068473 a 0103 + 03068473 a 0101 %p 03634723 n 0000 %p 08946564 n 0000 %p 08946715 n 0000 %p 08946812 n 0000 %p 09473558 n 0000 %m 09705287 n 0000 %m 09748889 n 0000 | a republic in West Africa on the Gulf of Guinea; "Ghana was colonized as the Gold Coast by the British" -08946564 15 n 02 Accra 0 capital_of_Ghana 0 002 @i 08691669 n 0000 #p 08946187 n 0000 | the capital and largest city of Ghana with a deep-water port -08946715 15 n 01 Kumasi 0 002 @i 08524735 n 0000 #p 08946187 n 0000 | a city in southern Ghana -08946812 15 n 01 Tamale 0 002 @i 08524735 n 0000 #p 08946187 n 0000 | a city in northern Ghana -08946909 15 n 01 Grenada 0 006 @i 08544813 n 0000 #p 08749864 n 0000 #m 08176077 n 0000 + 03070697 a 0101 %p 08947180 n 0000 %m 09749260 n 0000 | an island state in the West Indies in the southeastern Caribbean Sea; an independent state within the British Commonwealth -08947180 15 n 02 St._George's 0 capital_of_Grenada 0 002 @i 08691669 n 0000 #p 08946909 n 0000 | the capital and largest city of Grenada -08947319 15 n 03 Guinea 0 Republic_of_Guinea 0 French_Guinea 0 006 @i 08698379 n 0000 #p 09189411 n 0000 + 03071201 a 0101 %p 08947617 n 0000 %p 09371151 n 0000 %m 09749386 n 0000 | a republic in western Africa on the Atlantic; formerly a French colony; achieved independence from France in 1958 -08947617 15 n 03 Conakry 0 Konakri 0 capital_of_Guinea 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08947319 n 0000 | a port and the capital of Guinea -08947772 15 n 04 Guinea-Bissau 0 Republic_of_Guinea-Bissau 0 Guine-Bissau 0 Portuguese_Guinea 0 003 @i 08698379 n 0000 #p 09189411 n 0000 %p 08948027 n 0000 | a republic on the northwestern coast of Africa; recognized as independent by Portugal in 1974 -08948027 15 n 02 Bissau 0 capital_of_Guinea-Bissau 0 002 @i 08691669 n 0000 #p 08947772 n 0000 | the capital of Guinea-Bissau -08948155 15 n 01 Guiana 0 004 @i 08574314 n 0000 #p 09440400 n 0000 %p 08948346 n 0000 %p 09030752 n 0000 | a geographical region of northeastern South America including Guyana and Surinam -08948346 15 n 03 Guyana 0 Co-operative_Republic_of_Guyana 0 British_Guiana 0 007 @i 08702402 n 0000 #p 08948155 n 0000 #m 08857682 n 0000 %p 08948704 n 0000 %p 08948958 n 0000 %p 09265134 n 0000 %m 09712324 n 0000 | a republic in northeastern South America; formerly part of the British Empire, but it achieved independence from the United Kingdom in 1966 -08948704 15 n 02 Georgetown 0 Stabroek 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08948346 n 0000 | port city and the capital and largest city of Guyana; "the city was called Stabroek by the Dutch but was renamed Georgetown by the British in 1812" -08948958 15 n 01 Demerara 0 002 @i 08374049 n 0000 #p 08948346 n 0000 | a former Dutch colony in South America; now a part of Guyana -08949093 15 n 05 Netherlands 0 The_Netherlands 0 Kingdom_of_The_Netherlands 0 Nederland 0 Holland 0 023 @i 08696931 n 0000 #p 09275473 n 0000 #m 08305766 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 + 09713108 n 0503 %p 08949737 n 0000 %p 08950035 n 0000 %p 08950230 n 0000 %p 08950407 n 0000 %p 08950649 n 0000 %p 08950787 n 0000 %p 08950907 n 0000 %p 08951077 n 0000 %p 08951278 n 0000 %p 08951385 n 0000 %p 08951957 n 0000 %p 09305479 n 0000 %p 09309666 n 0000 %p 09309820 n 0000 %p 09353437 n 0000 %p 09408540 n 0000 %m 09713108 n 0000 | a constitutional monarchy in western Europe on the North Sea; half the country lies below sea level -08949737 15 n 03 Amsterdam 0 Dutch_capital 0 capital_of_The_Netherlands 0 002 @i 08691669 n 0000 #p 08949093 n 0000 | an industrial center and the nominal capital of the Netherlands; center of the diamond-cutting industry; seat of an important stock exchange; known for its canals and art museum -08950035 15 n 01 Apeldoorn 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | a city of east central Netherlands; a popular tourist center and site of the summer residence of the Dutch royal family -08950230 15 n 01 Arnhem 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | a city in the central Netherlands on the lower Rhine River; site of a battle in 1944 during World War II -08950407 15 n 03 The_Hague 0 's_Gravenhage 0 Den_Haag 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | the site of the royal residence and the de facto capital in the western part of the Netherlands; seat of the International Court of Justice -08950649 15 n 01 Eindhoven 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | city in southeastern Netherlands noted for electrical industry -08950787 15 n 01 Nijmegen 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | an industrial city in the eastern Netherlands -08950907 15 n 01 Rotterdam 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | the 2nd largest city in the Netherlands; located in the western Netherlands near the North Sea -08951077 15 n 02 Leiden 0 Leyden 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | a city in the western Netherlands; residence of the Pilgrim Fathers for 11 years before they sailed for America in 1620 -08951278 15 n 01 Utrecht 0 002 @i 08524735 n 0000 #p 08949093 n 0000 | a city in the central Netherlands -08951385 15 n 01 Friesland 0 002 @i 08654360 n 0000 #p 08949093 n 0000 | one of the northernmost provinces of the Netherlands -08951513 15 n 01 Friesland 1 002 @i 08574314 n 0000 #p 08951777 n 0000 | the western part of the ancient region of Frisia in northern Europe on the North Sea between the Scheldt river and the Weser river; part of this region is now a province in the Netherlands -08951777 15 n 01 Frisia 0 004 @i 08574314 n 0000 #p 09275473 n 0000 + 02732405 a 0101 %p 08951513 n 0000 | an ancient region of northwestern Europe including the Frisian Islands -08951957 15 n 01 Frisian_Islands 0 004 @i 09203827 n 0000 #p 08949093 n 0000 #p 08766988 n 0000 #p 08761244 n 0000 | a chain of islands in the North Sea off the coast of northwestern Europe extending from the IJsselmeer to Jutland -08952190 15 n 03 Hungary 0 Republic_of_Hungary 0 Magyarorszag 0 007 @i 08696931 n 0000 #p 09275473 n 0000 + 02961505 a 0101 %p 08952423 n 0000 %p 09212935 n 0000 %p 09263087 n 0000 %m 09713985 n 0000 | a republic in central Europe -08952423 15 n 03 Budapest 0 Hungarian_capital 0 capital_of_Hungary 0 002 @i 08691669 n 0000 #p 08952190 n 0000 | capital and largest city of Hungary; located on the Danube River in north-central Hungary -08952628 15 n 04 Faroe_Islands 0 Faeroe_Islands 0 Faroes 0 Faeroes 0 003 @i 09316454 n 0000 #p 09209263 n 0000 %p 08953029 n 0000 | a group of 21 volcanic islands in the North Atlantic between Iceland and the Shetland Islands -08952856 15 n 04 Faroe_Islands 1 Faeroe_Islands 1 Faroes 1 Faeroes 1 001 @i 08631531 n 0000 | a self-governing colony that is a possession of Denmark in the Faroe Islands -08953029 15 n 01 Thorshavn 0 002 @i 08524735 n 0000 #p 08952628 n 0000 | the administrative center of the Faroe Islands -08953151 15 n 01 Iceland 1 004 @i 09316454 n 0000 #p 09209263 n 0000 + 09714120 n 0101 %p 08953324 n 0000 | a volcanic island in the North Atlantic near the Arctic Circle -08953324 15 n 02 Iceland 0 Republic_of_Iceland 0 007 @i 08696931 n 0000 #p 08953151 n 0000 #p 09275473 n 0000 #m 08174398 n 0000 + 09714120 n 0101 %p 08953596 n 0000 %m 09714120 n 0000 | an island republic on the island of Iceland; became independent of Denmark in 1944 -08953596 15 n 02 Reykjavik 0 capital_of_Iceland 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08953324 n 0000 | the capital and chief port of Iceland on the southwestern coast of Iceland; buildings are heated by natural hot water -08953829 15 n 01 Orkney_Islands 0 004 @i 09203827 n 0000 #p 08890097 n 0000 #p 09209263 n 0000 #p 09374036 n 0000 | an archipelago of about 70 islands in the North Atlantic and North Sea off the northeastern coast of Scotland -08954057 15 n 03 Shetland 0 Shetland_Islands 0 Zetland 0 003 @i 09203827 n 0000 #p 08890097 n 0000 #p 09209263 n 0000 | an archipelago of about 100 islands in the North Atlantic off the north coast of Scotland -08954269 15 n 02 Thule 0 ultima_Thule 0 001 @i 08574314 n 0000 | the geographical region believed by ancient geographers to be the northernmost land in the inhabited world -08954443 15 n 01 Thule 1 002 @i 08665504 n 0000 #p 08819397 n 0000 | a town in northwestern Greenland; during World War II a United States naval base was built there -08954611 15 n 04 Korea 0 Korean_Peninsula 0 Dae-Han-Min-Gook 0 Han-Gook 0 008 @i 09388848 n 0000 #p 09207288 n 0000 + 02967791 a 0101 -r 01275934 n 0000 -r 01305551 n 0000 ~i 08954975 n 0000 %p 08955082 n 0000 %p 08955626 n 0000 | an Asian peninsula (off Manchuria) separating the Yellow Sea and the Sea of Japan; the Korean name is Dae-Han-Min-Gook or Han-Gook -08954975 15 n 01 Chosen 0 001 @i 08954611 n 0000 | the name for Korea as a Japanese province (1910-1945) -08955082 15 n 04 North_Korea 0 Democratic_People's_Republic_of_Korea 0 D.P.R.K. 0 DPRK 0 007 @i 08700255 n 0000 #p 08954611 n 0000 #p 09207288 n 0000 + 02967990 a 0101 -r 01299994 n 0000 %p 08955397 n 0000 %p 09481285 n 0000 | a communist country in the northern half of the Korean Peninsula; established in 1948 -08955397 15 n 02 Pyongyang 0 capital_of_North_Korea 0 002 @i 08691669 n 0000 #p 08955082 n 0000 | capital of North Korea and an industrial center; "Pyongyang is Korea's oldest city but little of its history has been preserved" -08955626 15 n 02 South_Korea 0 Republic_of_Korea 0 010 @i 08700255 n 0000 #p 08954611 n 0000 #p 09207288 n 0000 + 02968166 a 0101 -r 01280990 n 0000 %p 08955951 n 0000 %p 08956140 n 0000 %p 08956305 n 0000 %p 08956461 n 0000 %p 08956574 n 0000 | a republic in the southern half of the Korean Peninsula; established in 1948 -08955951 15 n 02 Seoul 0 capital_of_South_Korea 0 002 @i 08691669 n 0000 #p 08955626 n 0000 | the capital of South Korea and the largest city of Asia; located in northwestern South Korea -08956140 15 n 03 Inchon 0 Incheon 0 Chemulpo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08955626 n 0000 | a port city in western South Korea on the Yellow Sea -08956305 15 n 01 Kwangju 0 002 @i 08524735 n 0000 #p 08955626 n 0000 | city in southwestern South Korea; an important military base during the Korean War -08956461 15 n 02 Taegu 0 Tegu 0 002 @i 08524735 n 0000 #p 08955626 n 0000 | a city in southeastern South Korea -08956574 15 n 01 Pusan 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08955626 n 0000 | a city in southeastern South Korea on the Korean Strait; the chief port and second largest city -08956760 15 n 02 Laos 0 Lao_People's_Democratic_Republic 0 007 @i 08700255 n 0000 #p 08731606 n 0000 #m 08487504 n 0000 + 03079627 a 0101 %p 08957064 n 0000 %p 09350524 n 0000 %m 09719794 n 0000 | a mountainous landlocked communist state in southeastern Asia; achieved independence from France in 1949 -08957064 15 n 03 Vientiane 0 Laotian_capital 0 capital_of_Laos 0 002 @i 08691669 n 0000 #p 08956760 n 0000 | the capital and largest city of Laos -08957212 15 n 02 Lappland 0 Lapland 0 004 @i 08574314 n 0000 #p 09275473 n 0000 + 09720033 n 0102 %m 09720033 n 0000 | a region in northmost Europe inhabited by Lapps -08957381 15 n 02 Lebanon 0 Lebanese_Republic 0 017 @i 08700255 n 0000 #p 08791167 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 -r 07808904 n 0000 -r 08017257 n 0000 -r 08020242 n 0000 -r 08021464 n 0000 -r 08023374 n 0000 -r 08037503 n 0000 -r 08038995 n 0000 %p 08957806 n 0000 %p 08957993 n 0000 %p 08958212 n 0000 %p 08958334 n 0000 %p 08958535 n 0000 %m 09720595 n 0000 | an Asian republic at east end of Mediterranean -08957806 15 n 03 Bayrut 0 Beirut 0 capital_of_Lebanon 0 002 @i 08691669 n 0000 #p 08957381 n 0000 | capital and largest city of Lebanon; located in western Lebanon on the Mediterranean -08957993 15 n 04 Tarabulus 0 Tripoli 0 Tarabulus_Ash-Sham 0 Trablous 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08957381 n 0000 | a port city and commercial center in northwestern Lebanon on the Mediterranean Sea -08958212 15 n 03 Sayda 0 Saida 0 Sidon 0 002 @i 08524735 n 0000 #p 08957381 n 0000 | the main city of ancient Phoenicia -08958334 15 n 02 Sur 0 Tyre 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08957381 n 0000 | a port in southern Lebanon on the Mediterranean Sea; formerly a major Phoenician seaport famous for silks -08958535 15 n 01 Byblos 0 002 @i 08550076 n 0000 #p 08957381 n 0000 | an ancient Mediterranean seaport that was a thriving city state in Phoenicia during the second millennium BC; was the chief port for the export of papyrus; located in Lebanon to the north of Beirut; now partially excavated -08958830 15 n 03 Lesotho 0 Kingdom_of_Lesotho 0 Basutoland 0 005 @i 08698379 n 0000 #p 09189411 n 0000 %p 08959105 n 0000 %m 09692125 n 0000 %m 09693372 n 0000 | a landlocked constitutional monarchy in southern Africa; achieved independence from the United Kingdom in 1966 -08959105 15 n 02 Maseru 0 capital_of_Lesotho 0 002 @i 08691669 n 0000 #p 08958830 n 0000 | the capital of Lesotho; located in northwestern Lesotho -08959254 15 n 02 Liberia 0 Republic_of_Liberia 0 005 @i 08698379 n 0000 #p 09189411 n 0000 + 03081006 a 0101 %p 08959495 n 0000 %m 09720842 n 0000 | a republic in West Africa; established in 1822 by Americans as a way to free negro slaves -08959495 15 n 03 Monrovia 0 Liberian_capital 0 capital_of_Liberia 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08959254 n 0000 | the capital and chief port and largest city of Liberia -08959683 15 n 02 Libya 0 Socialist_People's_Libyan_Arab_Jamahiriya 0 011 @i 08698379 n 0000 #p 09189411 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 + 03081160 a 0101 -r 08020242 n 0000 -r 08032594 n 0000 %p 08960099 n 0000 %p 08960363 n 0000 %p 09170788 n 0000 %m 09720967 n 0000 | a military dictatorship in northern Africa on the Mediterranean; consists almost entirely of desert; a major exporter of petroleum -08960099 15 n 03 Tripoli 1 Tarabulus_Al-Gharb 0 capital_of_Libya 0 002 @i 08691669 n 0000 #p 08959683 n 0000 | the capital and chief port and largest city of Libya; in northwestern Libya on the Mediterranean Sea; founded by the Phoenicians in the 7th century BC -08960363 15 n 01 Benghazi 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08959683 n 0000 | port in northern Libya on the Gulf of Sidra; formerly a joint capital of Libya with Tripoli -08960548 15 n 02 Liechtenstein 0 Principality_of_Liechtenstein 0 005 @i 08696931 n 0000 #p 09275473 n 0000 + 09721088 n 0101 %p 08960843 n 0000 %m 09721088 n 0000 | a small landlocked principality (constitutional monarchy) in central Europe located in the Alps between Austria and Switzerland -08960843 15 n 02 Vaduz 0 capital_of_Liechtenstein 0 002 @i 08691669 n 0000 #p 08960548 n 0000 | the capital and largest city of Liechtenstein -08960987 15 n 03 Luxembourg 0 Grand_Duchy_of_Luxembourg 0 Luxemburg 0 010 @i 08696931 n 0000 #p 09275473 n 0000 #m 08305766 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 + 09721244 n 0301 + 02960832 a 0101 + 09721244 n 0102 %p 08961402 n 0000 %m 09721244 n 0000 | a grand duchy (a constitutional monarchy) landlocked in northwestern Europe between France and Belgium and Germany; an international financial center -08961402 15 n 05 Luxembourg-Ville 0 Luxembourg 1 Luxemburg 1 Luxembourg_City 0 capital_of_Luxembourg 0 004 @i 08691669 n 0000 #p 08960987 n 0000 + 09721244 n 0301 + 09721244 n 0202 | the capital and largest city of Luxembourg -08961630 15 n 01 Macedonia 0 005 @i 08698126 n 0000 #p 08713772 n 0000 + 03082253 a 0101 -r 01290840 n 0000 %p 08961852 n 0000 | landlocked republic on the Balkan Peninsula; achieved independence from Yugoslavia in 1991 -08961852 15 n 03 Skopje 0 Skoplje 0 Uskub 0 002 @i 08691669 n 0000 #p 08961630 n 0000 | capital of modern Macedonia -08961970 15 n 01 Madagascar 1 004 @i 09316454 n 0000 #p 09311259 n 0000 + 03082589 a 0101 %p 08962187 n 0000 | an island in the Indian Ocean off the southeastern coast of Africa; the 4th largest island in the world -08962187 15 n 03 Madagascar 0 Republic_of_Madagascar 0 Malagasy_Republic 0 006 @i 08698379 n 0000 #p 08961970 n 0000 #p 09189411 n 0000 + 03082589 a 0101 %p 08962465 n 0000 %m 09721647 n 0000 | a republic on the island of Madagascar; achieved independence from France in 1960 -08962465 15 n 02 Antananarivo 0 capital_of_Madagascar 0 002 @i 08691669 n 0000 #p 08962187 n 0000 | the capital and largest city of Madagascar -08962610 15 n 03 Malawi 0 Republic_of_Malawi 0 Nyasaland 0 009 @i 08698379 n 0000 #p 09189411 n 0000 + 03082875 a 0101 %p 08962951 n 0000 %p 08963095 n 0000 %p 08963244 n 0000 %p 09332394 n 0000 %m 09697771 n 0000 %m 09721759 n 0000 | a landlocked republic in southern central Africa; achieved independence from the United Kingdom in 1964 -08962951 15 n 01 Blantyre 0 002 @i 08524735 n 0000 #p 08962610 n 0000 | city in southern Malawi; largest city and commercial center of Malawi -08963095 15 n 02 Lilongwe 0 capital_of_Malawi 0 002 @i 08691669 n 0000 #p 08962610 n 0000 | the capital of Malawi; located in south central Malawi -08963244 15 n 01 Zomba 0 002 @i 08524735 n 0000 #p 08962610 n 0000 | a city in southern Malawi; was the capital until 1971 -08963369 15 n 02 Malaysia 0 Malaya 0 014 @i 08700255 n 0000 #p 08731606 n 0000 #m 08487504 n 0000 + 03083417 a 0101 + 03083417 a 0102 + 03083069 a 0102 -r 03443543 n 0000 -r 08013176 n 0000 -r 08027518 n 0000 %p 08963969 n 0000 %p 08964099 n 0000 %p 08964647 n 0000 %m 09712696 n 0000 %m 09721883 n 0000 | a constitutional monarchy in southeastern Asia on Borneo and the Malay Peninsula; achieved independence from the United Kingdom in 1957 -08963813 15 n 01 Kuala_Lumpur 0 003 @i 08524735 n 0000 #p 08964647 n 0000 %p 03920497 n 0000 | the largest city and former capital of Malaysia until 2005 -08963969 15 n 02 Putrajaya 0 capital_of_Malaysia 0 002 @i 08691669 n 0000 #p 08963369 n 0000 | Malaysia's sparkling new capital -08964099 15 n 01 East_Malaysia 0 005 @i 08552138 n 0000 #p 08963369 n 0000 #p 08843215 n 0000 %p 08964288 n 0000 %p 08964474 n 0000 | the part of Malaysia that is on the island of Borneo -08964288 15 n 02 Sabah 0 North_Borneo 0 005 @i 08552138 n 0000 #p 08964099 n 0000 #p 08843215 n 0000 + 03112615 a 0101 %m 09722064 n 0000 | a region of Malaysia in northeastern Borneo -08964474 15 n 01 Sarawak 0 005 @i 08552138 n 0000 #p 08964099 n 0000 #p 08843215 n 0000 + 03113705 a 0101 %m 09730077 n 0000 | a region of Malaysia on northwestern Borneo -08964647 15 n 01 West_Malaysia 0 004 @i 08552138 n 0000 #p 08963369 n 0000 #p 08964810 n 0000 %p 08963813 n 0000 | the region of Malaysia on the Malay Peninsula -08964810 15 n 01 Malay_Peninsula 0 006 @i 09388848 n 0000 #p 09207288 n 0000 %p 08715390 n 0000 %p 08964647 n 0000 %p 09036452 n 0000 %m 09712696 n 0000 | a peninsula in southeastern Asia occupied by parts of Malaysia and Thailand and Myanmar -08965055 15 n 02 Maldives 1 Maldive_Islands 0 003 @i 09316454 n 0000 #p 09311259 n 0000 %p 08965251 n 0000 | a group of about 1,200 small coral islands (about 220 inhabited) in the Indian ocean -08965251 15 n 02 Maldives 0 Republic_of_Maldives 0 004 @i 08544813 n 0000 #p 08965055 n 0000 %p 08965475 n 0000 %m 09722159 n 0000 | a republic on the Maldive Islands; achieved independence from the United Kingdom in 1965 -08965475 15 n 01 Male 0 002 @i 08691669 n 0000 #p 08965251 n 0000 | the capital of Maldives in the center of the islands -08965598 15 n 03 Mali 0 Republic_of_Mali 0 French_Sudan 0 007 @i 08698379 n 0000 #p 09189411 n 0000 + 03083678 a 0101 %p 08965958 n 0000 %p 08966085 n 0000 %p 09371151 n 0000 %m 09722279 n 0000 | a landlocked republic in northwestern Africa; achieved independence from France in 1960; Mali was a center of West African civilization for more than 4,000 years -08965958 15 n 01 Bamako 0 002 @i 08691669 n 0000 #p 08965598 n 0000 | the capital of Mali; located in the south on the Niger -08966085 15 n 01 Timbuktu 0 002 @i 08524735 n 0000 #p 08965598 n 0000 | a city in central Mali near the Niger river; formerly famous for its gold trade -08966239 15 n 01 Malta 1 003 @i 09316454 n 0000 #p 09350045 n 0000 %p 08966408 n 0000 | a strategically located island to the south of Sicily in the Mediterranean Sea -08966408 15 n 02 Malta 0 Republic_of_Malta 0 004 @i 08544813 n 0000 #p 08966239 n 0000 %p 08966647 n 0000 %m 09747618 n 0000 | a republic on the island of Malta in the Mediterranean; achieved independence from the United Kingdom in 1964 -08966647 15 n 03 Valletta 0 Valetta 0 capital_of_Malta 0 002 @i 08691669 n 0000 #p 08966408 n 0000 | the capital of Malta; located on the northeastern coast of the island -08966820 15 n 04 Mauritania 0 Islamic_Republic_of_Mauritania 0 Mauritanie 0 Muritaniya 0 006 @i 08698379 n 0000 #p 09189411 n 0000 #m 08172103 n 0000 + 03084759 a 0101 %p 08967176 n 0000 %m 09722399 n 0000 | a country in northwestern Africa with a provisional military government; achieved independence from France in 1960; largely western Sahara Desert -08967176 15 n 01 Nouakchott 0 002 @i 08691669 n 0000 #p 08966820 n 0000 | capital of Mauritania; located in western Mauritania near the Atlantic coast -08967329 15 n 01 Mauritius 1 004 @i 09316454 n 0000 #p 09311259 n 0000 + 03084759 a 0102 %p 08967484 n 0000 | an island in the southwestern Indian Ocean -08967484 15 n 02 Mauritius 0 Republic_of_Mauritius 0 005 @i 08544813 n 0000 #p 08967329 n 0000 + 03084759 a 0102 %p 08967688 n 0000 %m 09722530 n 0000 | a parliamentary state on the island of Mauritius -08967688 15 n 01 Port_Louis 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08967484 n 0000 | capital and chief port of Mauritius; located on the northwestern coast of the island -08967868 15 n 02 Monaco 0 Principality_of_Monaco 0 007 @i 08558488 n 0000 @i 08696931 n 0000 #p 09275473 n 0000 + 02978155 a 0101 %p 08968125 n 0000 %p 08968225 n 0000 %m 10327987 n 0000 | a constitutional monarchy in a tiny enclave on the French Riviera -08968125 15 n 01 Monaco-Ville 0 002 @i 08691669 n 0000 #p 08967868 n 0000 | the capital of Monaco -08968225 15 n 01 Monte_Carlo 0 002 @i 08665504 n 0000 #p 08967868 n 0000 | a town and popular resort in the principality of Monaco; famous for its gambling casino -08968390 15 n 02 Tartary 0 Tatary 0 003 @i 08574314 n 0000 #p 09275473 n 0000 #p 09207288 n 0000 | the vast geographical region of Europe and Asia that was controlled by the Mongols in the 13th and 14th centuries; "under Genghis Khan Tartary extended as far east as the Pacific Ocean" -08968677 15 n 01 Mongolia 1 004 @i 08574314 n 0000 #p 09207288 n 0000 + 03087088 a 0102 %p 08968879 n 0000 | a vast region in Asia including the Mongolian People's Republic and China's Inner Mongolia -08968879 15 n 03 Mongolia 0 Mongolian_People's_Republic 0 Outer_Mongolia 0 006 @i 08700255 n 0000 #p 08968677 n 0000 #p 09207288 n 0000 + 03087424 a 0101 %p 08969123 n 0000 %p 09169801 n 0000 | a landlocked socialist republic in central Asia -08969123 15 n 05 Ulan_Bator 0 Ulaanbaatar 0 Urga 0 Kulun 0 capital_of_Mongolia 0 002 @i 08691669 n 0000 #p 08968879 n 0000 | the capital and largest city of Mongolia -08969291 15 n 05 Morocco 0 Kingdom_of_Morocco 0 Maroc 0 Marruecos 0 Al-Magrib 0 015 @i 08698379 n 0000 #p 08597323 n 0000 #m 08172103 n 0000 + 03024420 a 0101 %p 08969798 n 0000 %p 08969948 n 0000 %p 08970064 n 0000 %p 08970189 n 0000 %p 08970318 n 0000 %p 08970445 n 0000 %p 08970611 n 0000 %p 08970833 n 0000 %p 09210346 n 0000 %p 09321694 n 0000 %m 09723564 n 0000 | a kingdom (constitutional monarchy) in northwestern Africa with a largely Muslim population; achieved independence from France in 1956 -08969798 15 n 01 Casablanca 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08969291 n 0000 | a port on the Atlantic and the largest city of Morocco -08969948 15 n 01 El_Aaium 0 002 @i 08665504 n 0000 #p 08969291 n 0000 | a town in Morocco near the Atlantic coast -08970064 15 n 02 Fez 0 Fes 0 002 @i 08524735 n 0000 #p 08969291 n 0000 | a city in north central Morocco; religious center -08970189 15 n 02 Marrakesh 0 Marrakech 0 002 @i 08524735 n 0000 #p 08969291 n 0000 | a city in western Morocco; tourist center -08970318 15 n 01 Oujda 0 002 @i 08524735 n 0000 #p 08969291 n 0000 | a city in northeastern Morocco near the Algerian border -08970445 15 n 02 Rabat 0 capital_of_Morocco 0 002 @i 08691669 n 0000 #p 08969291 n 0000 | the capital of Morocco; located in the northwestern on the Atlantic coast -08970611 15 n 02 Tangier 0 Tangiers 0 002 @i 08524735 n 0000 #p 08969291 n 0000 | a city of northern Morocco at the west end of the Strait of Gibraltar; "the first tangerines were shipped from Tangier to Europe in 1841" -08970833 15 n 02 Western_Sahara 0 Spanish_Sahara 0 002 @i 08574314 n 0000 #p 08969291 n 0000 | an area in northwestern Africa with rich phosphate deposits; under Moroccan control since 1992 -08971025 15 n 03 Mozambique 0 Republic_of_Mozambique 0 Mocambique 0 010 @i 08698379 n 0000 #p 09189411 n 0000 + 03088558 a 0101 + 03088384 a 0101 %p 08971404 n 0000 %p 08971554 n 0000 %p 09332394 n 0000 %p 09339512 n 0000 %p 09483129 n 0000 %m 09723689 n 0000 | a republic on the southeastern coast of Africa on the Mozambique Channel; became independent from Portugal in 1975 -08971404 15 n 01 Beira 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08971025 n 0000 | a port city in eastern Mozambique on the Mozambique Channel -08971554 15 n 02 Maputo 0 capital_of_Mozambique 0 002 @i 08691669 n 0000 #p 08971025 n 0000 | the capital and largest city of Mozambique -08971693 15 n 02 Natal 0 KwaZulu-Natal 0 004 @i 08552138 n 0000 #p 08999482 n 0000 %p 09463078 n 0000 %m 09752023 n 0000 | a region of eastern South Africa on the Indian Ocean; "Natal was renamed KwaZulu-Natal in 1994" -08971914 15 n 02 New_Zealand 1 New_Zealand_Islands 0 005 @i 09316454 n 0000 #p 09382990 n 0000 %p 08972148 n 0000 %p 08972335 n 0000 %p 08972521 n 0000 | North Island and South Island and adjacent small islands in the South Pacific -08972148 15 n 01 North_Island 0 002 @i 09316454 n 0000 #p 08971914 n 0000 | the smaller but more populous of two main islands of New Zealand; separated from South Island by Cook Strait -08972335 15 n 01 South_Island 0 002 @i 09316454 n 0000 #p 08971914 n 0000 | the larger but less populous of two main islands of New Zealand; separated from North Island by Cook Strait -08972521 15 n 01 New_Zealand 0 011 @i 08544813 n 0000 #p 08971914 n 0000 #m 08049989 n 0000 #m 08857682 n 0000 %p 08972920 n 0000 %p 08973064 n 0000 %p 08973202 n 0000 %p 09255768 n 0000 -r 09703573 n 0000 %m 09724533 n 0000 -r 10525878 n 0000 | an independent country within the British Commonwealth; achieved independence from the United Kingdom in 1907; known for sheep and spectacular scenery -08972920 15 n 01 Auckland 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08972521 n 0000 | the largest city and principal port of New Zealand -08973064 15 n 01 Christchurch 0 002 @i 08524735 n 0000 #p 08972521 n 0000 | industrial city at the center of a rich agricultural region -08973202 15 n 02 Wellington 0 capital_of_New_Zealand 0 002 @i 08691669 n 0000 #p 08972521 n 0000 | the capital of New Zealand -08973330 15 n 02 Niger 0 Republic_of_Niger 0 007 @i 08698379 n 0000 #p 09189411 n 0000 + 03091307 a 0101 + 03091080 a 0101 %p 08973647 n 0000 %p 09371151 n 0000 %m 09725124 n 0000 | a landlocked republic in West Africa; gained independence from France in 1960; most of the country is dominated by the Sahara Desert -08973647 15 n 02 Niamey 0 capital_of_Niger 0 002 @i 08691669 n 0000 #p 08973330 n 0000 | the capital and largest city of Niger -08973776 15 n 02 Nigeria 0 Federal_Republic_of_Nigeria 0 011 @i 08698379 n 0000 #p 09189411 n 0000 -r 08014615 n 0000 %p 08974171 n 0000 %p 08974330 n 0000 %p 08974468 n 0000 %p 08974604 n 0000 %p 08974818 n 0000 %p 08974974 n 0000 %p 09371151 n 0000 %m 09724785 n 0000 | a republic in West Africa on the Gulf of Guinea; gained independence from Britain in 1960; most populous African country -08974171 15 n 03 Abuja 0 capital_of_Nigeria 0 Nigerian_capital 0 002 @i 08691669 n 0000 #p 08973776 n 0000 | capital of Nigeria in the center of the country -08974330 15 n 01 Ibadan 0 002 @i 08524735 n 0000 #p 08973776 n 0000 | a large Yoruba city in southwestern Nigeria; site of a university -08974468 15 n 01 Katsina 0 002 @i 08524735 n 0000 #p 08973776 n 0000 | a city in northern Nigeria; a major center of the Hausa people -08974604 15 n 01 Lagos 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08973776 n 0000 | chief port and economic center of Nigeria; located in southwestern Nigeria on the Gulf of Guinea; former capital of Nigeria -08974818 15 n 02 Maiduguri 0 Yerwa-Maiduguri 0 002 @i 08524735 n 0000 #p 08973776 n 0000 | a city in northeastern Nigeria; an agricultural trading center -08974974 15 n 01 Zaria 0 002 @i 08524735 n 0000 #p 08973776 n 0000 | a city in north central Nigeria; agricultural trading center -08975106 15 n 03 Oman 0 Sultanate_of_Oman 0 Muscat_and_Oman 0 007 @i 08700255 n 0000 #p 08847694 n 0000 #p 08910394 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 %p 08975435 n 0000 %m 09725653 n 0000 | a strategically located monarchy on the southern and eastern coasts of the Arabian Peninsula; the economy is dominated by oil -08975435 15 n 03 Muscat 0 Masqat 0 capital_of_Oman 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08975106 n 0000 | a port on the Gulf of Oman and capital of the sultanate of Oman -08975617 15 n 03 Kashmir 0 Cashmere 0 Jammu_and_Kashmir 0 007 @i 08574314 n 0000 #p 08900535 n 0000 #p 08975902 n 0000 -r 08022666 n 0000 %p 08515126 n 0000 %p 09323824 n 0000 %p 09365288 n 0000 | an area in southwestern Asia whose sovereignty is disputed between Pakistan and India -08975902 15 n 03 Pakistan 0 Islamic_Republic_of_Pakistan 0 West_Pakistan 0 033 @i 08700255 n 0000 #p 09207288 n 0000 -r 08013845 n 0000 -r 08014202 n 0000 -r 08022972 n 0000 -r 08026197 n 0000 -r 08026539 n 0000 -r 08030481 n 0000 -r 08030711 n 0000 -r 08031020 n 0000 -r 08045140 n 0000 -r 08047501 n 0000 -r 08048300 n 0000 -r 08283180 n 0000 -c 08311522 n 0000 -r 08343534 n 0000 %p 08902894 n 0000 %p 08975617 n 0000 %p 08976799 n 0000 %p 08976913 n 0000 %p 08977035 n 0000 %p 08977211 n 0000 %p 08977428 n 0000 %p 08977527 n 0000 %p 08977665 n 0000 %p 08977845 n 0000 %p 09173417 n 0000 %p 09304164 n 0000 %p 09312231 n 0000 %p 09325530 n 0000 %p 09384223 n 0000 %p 09459114 n 0000 %m 09725772 n 0000 | a Muslim republic that occupies the heartland of ancient south Asian civilization in the Indus River valley; formerly part of India; achieved independence from the United Kingdom in 1947 -08976799 15 n 02 Faisalabad 0 Lyallpur 0 002 @i 08524735 n 0000 #p 08975902 n 0000 | city in northeast Pakistan -08976913 15 n 01 Hyderabad 1 002 @i 08524735 n 0000 #p 08975902 n 0000 | a city in southern Pakistan on the Indus River -08977035 15 n 02 Islamabad 0 capital_of_Pakistan 0 002 @i 08691669 n 0000 #p 08975902 n 0000 | the capital of Pakistan in the north on a plateau; the site was chosen in 1959 -08977211 15 n 01 Karachi 0 002 @i 08524735 n 0000 #p 08975902 n 0000 | the largest city in Pakistan; located in southeastern Pakistan; an industrial center and seaport on the Arabian Sea; former capital of Pakistan -08977428 15 n 01 Lahore 0 002 @i 08524735 n 0000 #p 08975902 n 0000 | city in northeast Pakistan -08977527 15 n 01 Peshawar 0 002 @i 08524735 n 0000 #p 08975902 n 0000 | city in northern Pakistan at the eastern end of the Khyber Pass -08977665 15 n 01 Rawalpindi 0 002 @i 08524735 n 0000 #p 08975902 n 0000 | an ancient city in northeastern Pakistan; served as capital of Pakistan while Islamabad was being built -08977845 15 n 01 Sind 0 002 @ 08630039 n 0000 #p 08975902 n 0000 | a region of southeastern Pakistan -08977948 15 n 04 Palau 1 Palau_Islands 0 Belau 0 Pelew 0 003 @i 09203827 n 0000 #p 09382990 n 0000 %p 08978161 n 0000 | a chain of more than 200 islands about 400 miles long in the western central Pacific Ocean -08978161 15 n 03 Palau 0 Republic_of_Palau 0 TT 1 002 @i 08544813 n 0000 #p 08977948 n 0000 | a republic in the western central Pacific Ocean in association with the United States -08978343 15 n 02 Paraguay 0 Republic_of_Paraguay 0 009 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02967179 a 0101 %p 08711655 n 0000 %p 08978667 n 0000 %p 09384921 n 0000 %p 09430416 n 0000 %m 09726246 n 0000 | a landlocked republic in south central South America; achieved independence from Spain in 1811 -08978667 15 n 02 Asuncion 0 capital_of_Paraguay 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08978343 n 0000 | the capital and chief port of Paraguay -08978821 15 n 01 Parthia 0 004 @i 08574314 n 0000 #p 09207288 n 0000 + 03096931 a 0101 %m 09726374 n 0000 | an ancient kingdom in Asia to the southeast of the Caspian Sea; it dominated southwestern Asia from about 250 BC to AD 226 -08979054 15 n 02 Peru 0 Republic_of_Peru 0 018 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02966154 a 0101 -r 08044676 n 0000 -r 08045681 n 0000 -r 08488833 n 0000 %p 08979590 n 0000 %p 08979878 n 0000 %p 08980119 n 0000 %p 09174566 n 0000 %p 09175617 n 0000 %p 09195372 n 0000 %p 09196611 n 0000 %p 09257280 n 0000 %p 09306497 n 0000 %p 09482566 n 0000 %m 09726499 n 0000 | a republic in western South America; achieved independence from Spain in 1821; was the heart of the Inca empire from the 12th to 16th centuries -08979590 15 n 01 Arequipa 0 002 @i 08524735 n 0000 #p 08979054 n 0000 | a city in southern Peru founded in 1540 on the site of an ancient Inca city -08979740 15 n 02 Cuzco 0 Cusco 0 001 @i 08665504 n 0000 | a town in the Andes in southern Peru; formerly the capital of the Inca empire -08979878 15 n 02 Lima 0 capital_of_Peru 0 002 @i 08691669 n 0000 #p 08979054 n 0000 | capital and largest city and economic center of Peru; located in western Peru; was capital of the Spanish empire in the New World until the 19th century -08980119 15 n 01 Machu_Picchu 0 002 @i 03386011 n 0000 #p 08979054 n 0000 | Inca fortress city in the Andes in Peru discovered in 1911; it may have been built in the 15th century -08980300 15 n 02 Philippines 1 Philippine_Islands 0 011 @i 09203827 n 0000 #p 09382990 n 0000 -r 01270343 n 0000 -r 01284124 n 0000 %p 08980640 n 0000 %p 08980814 n 0000 %p 08980920 n 0000 %p 08981123 n 0000 %p 08981244 n 0000 %p 08982452 n 0000 %m 10688491 n 0000 | an archipelago in the southwestern Pacific including some 7000 islands -08980640 15 n 01 Cebu 1 003 @i 09316454 n 0000 #p 08980300 n 0000 %m 09697246 n 0000 | one of the Visayan islands of the central Philippines; important for its fine harbor -08980814 15 n 01 Luzon 0 002 @i 09316454 n 0000 #p 08980300 n 0000 | the main island of the Philippines -08980920 15 n 01 Mindanao 0 003 @i 09316454 n 0000 #p 08980300 n 0000 %m 09712967 n 0000 | the second largest island of the Philippines at the southern end of the archipelago; mountainous and volcanic -08981123 15 n 01 Mindoro 0 002 @i 09316454 n 0000 #p 08980300 n 0000 | a mountainous island in the central Philippines -08981244 15 n 02 Philippines 0 Republic_of_the_Philippines 0 018 @i 08544813 n 0000 #p 08715110 n 0000 #p 08980300 n 0000 #m 08487504 n 0000 -r 01286181 n 0000 -r 07579917 n 0000 -r 08010559 n 0000 -r 08011266 n 0000 -r 08034299 n 0000 -r 08036293 n 0000 -r 08038131 n 0000 %p 08981746 n 0000 %p 08981922 n 0000 %p 08982037 n 0000 %p 08982181 n 0000 %m 09727440 n 0000 %m 10755648 n 0000 -r 11782878 n 0000 | a republic on the Philippine Islands; achieved independence from the United States in 1946 -08981746 15 n 02 Manila 0 capital_of_the_Philippines 0 002 @i 08691669 n 0000 #p 08981244 n 0000 | the capital and largest city of the Philippines; located on southern Luzon -08981922 15 n 01 Caloocan 0 002 @i 08524735 n 0000 #p 08981244 n 0000 | a suburb of Manila in southwestern Luzon -08982037 15 n 02 Cebu 0 Cebu_City 0 002 @i 08524735 n 0000 #p 08981244 n 0000 | an important seaport on the island of Cebu in the Philippines -08982181 15 n 01 Quezon_City 0 002 @i 08524735 n 0000 #p 08981244 n 0000 | city on Luzon adjoining Manila -08982289 15 n 02 Pinatubo 0 Mount_Pinatubo 0 001 @i 09472597 n 0000 | a volcano on Luzon to the northwest of Manila; erupted in 1991 after 600 years of dormancy -08982452 15 n 02 Visayan_Islands 0 Bisayas 0 002 @i 09316454 n 0000 #p 08980300 n 0000 | group of islands in the central Philippines -08982587 15 n 03 Poland 0 Republic_of_Poland 0 Polska 0 019 @i 08696931 n 0000 #p 09275473 n 0000 -r 01296505 n 0000 %p 02758600 n 0000 %p 08775784 n 0000 %p 08983105 n 0000 %p 08983274 n 0000 %p 08983413 n 0000 %p 08983556 n 0000 %p 08983742 n 0000 %p 08984010 n 0000 %p 08984122 n 0000 %p 08984223 n 0000 %p 08984332 n 0000 %p 08984457 n 0000 %p 09236423 n 0000 %p 09376979 n 0000 %p 09472135 n 0000 %m 09727627 n 0000 | a republic in central Europe; the invasion of Poland by Germany in 1939 started World War II -08983105 15 n 03 Warszawa 0 Warsaw 0 capital_of_Poland 0 002 @i 08691669 n 0000 #p 08982587 n 0000 | the capital and largest city of Poland; located in central Poland -08983274 15 n 02 Bydgoszcz 0 Bromberg 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | an industrial city and river port in northern Poland -08983413 15 n 03 Cracow 0 Krakow 0 Krakau 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | an industrial city in southern Poland on the Vistula -08983556 15 n 01 Czestochowa 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | a city of southern Poland whose church contains the statue of the black Madonna which attracts many pilgrims -08983742 15 n 02 Gdansk 0 Danzig 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 08982587 n 0000 #m 08304135 n 0000 | a port city of northern Poland near the mouth of the Vistula River on a gulf of the Baltic Sea; a member of the Hanseatic League in the 14th century -08984010 15 n 01 Katowice 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | an industrial city of southern Poland -08984122 15 n 01 Lodz 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | a large city of central Poland -08984223 15 n 01 Lublin 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | an industrial city of eastern Poland -08984332 15 n 02 Wroclaw 0 Breslau 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | a city in southwestern Poland on the Oder -08984457 15 n 01 Zabrze 0 002 @i 08524735 n 0000 #p 08982587 n 0000 | an industrial city in southern Poland -08984567 15 n 02 Iberian_Peninsula 0 Iberia 0 007 @i 09388848 n 0000 #p 09275473 n 0000 + 02958714 a 0201 %p 08984788 n 0000 %p 09023118 n 0000 %p 09023321 n 0000 %m 10196133 n 0000 | a peninsula in southwestern Europe -08984788 15 n 02 Portugal 0 Portuguese_Republic 0 017 @i 08696931 n 0000 #p 08984567 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 06966310 n 0000 %p 08985345 n 0000 %p 08985724 n 0000 %p 08985958 n 0000 %p 08986066 n 0000 %p 08986374 n 0000 %p 08986526 n 0000 %p 09166304 n 0000 %p 09453566 n 0000 %m 09728009 n 0000 -r 10039164 n 0000 -r 10142537 n 0000 | a republic in southwestern Europe on the Iberian Peninsula; Portuguese explorers and colonists in the 15th and 16th centuries created a vast overseas empire (including Brazil) -08985345 15 n 02 Azores 0 Acores 0 002 @i 09316454 n 0000 #p 08984788 n 0000 | islands in the Atlantic Ocean belonging to Portugal; "the Azores are strategically located on transatlantic air and shipping routes" -08985559 15 n 01 Madeira 0 002 @i 09316454 n 0000 #p 08985724 n 0000 | an island in the Atlantic Ocean off the coast of Africa; the largest of the Madeira Islands -08985724 15 n 02 Madeira_Islands 0 Madeiras 0 003 @i 09203827 n 0000 #p 08984788 n 0000 %p 08985559 n 0000 | a group of volcanic islands in the Atlantic Ocean to the west of Morocco; the group forms an autonomous region of Portugal -08985958 15 n 01 Braga 0 002 @i 08524735 n 0000 #p 08984788 n 0000 | an ancient city in northern Portugal -08986066 15 n 03 Lisbon 0 Lisboa 0 capital_of_Portugal 0 004 @i 08691669 n 0000 @i 08633957 n 0000 #p 08984788 n 0000 %p 03981204 n 0000 | capital and largest city and economic and cultural center of Portugal; a major port in western Portugal on Tagus River where it broadens and empties into the Atlantic -08986374 15 n 02 Porto 0 Oporto 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08984788 n 0000 | port city in northwest Portugal; noted for port wine -08986526 15 n 01 Setubal 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08984788 n 0000 | a port city on the Atlantic coast of Portugal to the southeast of Lisbon -08986691 15 n 04 Qatar 1 Qatar_Peninsula 0 Katar 1 Katar_Peninsula 0 003 @i 09388848 n 0000 #p 08847694 n 0000 %p 08986905 n 0000 | a peninsula extending northward from the Arabian mainland into the Persian Gulf -08986905 15 n 04 Qatar 0 State_of_Qatar 0 Katar 0 State_of_Katar 0 008 @i 08700255 n 0000 #p 08986691 n 0000 #p 08910394 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 %p 08987262 n 0000 %m 09728137 n 0000 | an Arab country on the peninsula of Qatar; achieved independence from the United Kingdom in 1971; the economy is dominated by oil -08987262 15 n 04 Doha 0 Bida 0 El_Beda 0 capital_of_Qatar 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08986905 n 0000 | the capital and chief port of Qatar -08987423 15 n 05 Saint_Kitts_and_Nevis 0 Federation_of_Saint_Kitts_and_Nevis 0 Saint_Christopher-Nevis 0 St._Christopher-Nevis 0 St._Kitts_and_Nevis 0 008 @i 08544813 n 0000 #p 08749447 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08987879 n 0000 %p 08988068 n 0000 %p 08988216 n 0000 %p 08988333 n 0000 | a country on several of the Leeward Islands; located to the east southeast of Puerto Rico; achieved independence from the United Kingdom in 1983 -08987879 15 n 04 Saint_Christopher 0 St._Christopher 0 Saint_Kitts 0 St._Kitts 0 002 @i 09316454 n 0000 #p 08987423 n 0000 | the largest of the islands comprising Saint Christopher-Nevis -08988068 15 n 01 Basseterre 0 002 @i 08691669 n 0000 #p 08987423 n 0000 | the capital of Saint Kitts and Nevis on the island of Saint Christopher -08988216 15 n 01 Nevis 0 002 @i 09316454 n 0000 #p 08987423 n 0000 | one of the islands of Saint Christopher-Nevis -08988333 15 n 01 Sombrero 0 002 @i 09316454 n 0000 #p 08987423 n 0000 | one of the islands of Saint Christopher-Nevis -08988453 15 n 02 Saint_Lucia 1 St._Lucia 1 002 @i 09316454 n 0000 #p 08988609 n 0000 | a volcanic island in the Windward Isles to the south of Martinique -08988609 15 n 02 Saint_Lucia 0 St._Lucia 0 006 @i 08544813 n 0000 #p 08749864 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08988453 n 0000 %p 08988861 n 0000 | a country on the island of Saint Lucia; gained independence from Great Britain in 1979 -08988861 15 n 01 Castries 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08988609 n 0000 | a port on the island of Saint Lucia; capital and largest city of Saint Lucia -08989031 15 n 02 Saint_Vincent_and_the_Grenadines 0 St._Vincent_and_the_Grenadines 0 005 @i 08544813 n 0000 #p 08749864 n 0000 #p 08709038 n 0000 #m 08176077 n 0000 %p 08989324 n 0000 | an island country in the central Windward Islands; achieved independence from the United Kingdom in 1979 -08989324 15 n 02 Saint_Vincent 0 St._Vincent 0 003 @i 09316454 n 0000 #p 08989031 n 0000 %p 08989556 n 0000 | an island in the center of the Windward Islands; the largest of the islands comprising Saint Vincent and the Grenadines -08989556 15 n 01 Kingstown 0 002 @i 08691669 n 0000 #p 08989324 n 0000 | the capital of Saint Vincent and the Grenadines; on Saint Vincent -08989697 15 n 02 French_Polynesia 0 French_Oceania 0 007 @i 08631531 n 0000 #p 08841667 n 0000 %p 08990344 n 0000 %p 08990522 n 0000 %p 08990701 n 0000 %p 08990844 n 0000 %p 08990999 n 0000 | a French overseas possession in the South Pacific -08989941 15 n 01 Tahiti 0 005 @i 09316454 n 0000 #p 08990344 n 0000 + 03122221 a 0101 %p 08990203 n 0000 %m 09733793 n 0000 | an island in the south Pacific; the most important island in French Polynesia; made famous by Robert Louis Stevenson and Paul Gauguin -08990203 15 n 01 Papeete 0 002 @i 08524735 n 0000 #p 08989941 n 0000 | the capital of French Polynesia on the northwestern coast of Tahiti -08990344 15 n 01 Society_Islands 0 003 @i 09203827 n 0000 #p 08989697 n 0000 %p 08989941 n 0000 | an island group of French Polynesia in the South Pacific to the east of Samoa -08990522 15 n 03 Tuamotu_Archipelago 0 Paumotu_Archipelago 0 Low_Archipelago 0 002 @i 09203827 n 0000 #p 08989697 n 0000 | a group of about 80 coral islands in French Polynesia -08990701 15 n 02 Tubuai_Islands 0 Austral_Islands 0 002 @i 09203827 n 0000 #p 08989697 n 0000 | a chain of small islands in French Polynesia -08990844 15 n 01 Gambier_Islands 0 002 @i 09203827 n 0000 #p 08989697 n 0000 | a group of islands in the south central Pacific; part of French Polynesia -08990999 15 n 02 Marquesas_Islands 0 Iles_Marquises 0 002 @i 09203827 n 0000 #p 08989697 n 0000 | a group of volcanic islands in the south central Pacific; part of French Polynesia -08991182 15 n 02 Samoa 1 Samoan_Islands 0 005 @i 09316454 n 0000 #p 08841667 n 0000 %p 08991491 n 0000 %p 08991878 n 0000 %m 09729271 n 0000 | a group of volcanic islands in the South Pacific midway between Hawaii and Australia; its climate and scenery and Polynesian culture make it a popular tourist stop -08991491 15 n 04 Samoa 0 Independent_State_of_Samoa 0 Western_Samoa 0 Samoa_i_Sisifo 0 004 @i 08544813 n 0000 #p 08991182 n 0000 + 03113404 a 0101 %p 08991752 n 0000 | a constitutional monarchy on the western part of the islands of Samoa in the South Pacific -08991752 15 n 02 Apia 0 capital_of_Western_Samoa 0 002 @i 08691669 n 0000 #p 08991491 n 0000 | the capital of Western Samoa -08991878 15 n 03 American_Samoa 0 Eastern_Samoa 0 AS 0 003 @i 08552138 n 0000 #p 08991182 n 0000 %p 08992067 n 0000 | a United States territory on the eastern part of the island of Samoa -08992067 15 n 02 Pago_Pago 0 Pango_Pango 0 002 @i 08633957 n 0000 #p 08991878 n 0000 | a port in American Samoa -08992181 15 n 02 San_Marino 0 Republic_of_San_Marino 0 005 @i 08696931 n 0000 #p 08801364 n 0000 #p 09275473 n 0000 %p 08992508 n 0000 %m 09729945 n 0000 | the smallest republic in the world; the oldest independent country in Europe (achieved independence in 301); located in the Apennines and completely surrounded by Italy -08992508 15 n 02 San_Marino 1 capital_of_San_Marino 0 002 @i 08691669 n 0000 #p 08992181 n 0000 | the capital and only city of San Marino -08992648 15 n 05 Sao_Tome_and_Principe 0 Democratic_Republic_of_Sao_Tome_and_Principe 0 Sao_Tome_e_Principe 0 Sao_Thome_e_Principe 0 St._Thomas_and_Principe 0 004 @i 08544813 n 0000 #p 09209263 n 0000 %p 08993037 n 0000 %p 08993144 n 0000 | island nation in the South Atlantic off the west coast of Africa; achieved independence from Portugal in 1975; has enormous offshore oil reserves -08993037 15 n 01 Sao_Tome 0 002 @i 08691669 n 0000 #p 08992648 n 0000 | capital of Sao Tome and Principe -08993144 15 n 01 Principe 0 002 @i 09316454 n 0000 #p 08992648 n 0000 | an island in the Gulf of Guinea that is part of Sao Tome and Principe -08993288 15 n 02 Saudi_Arabia 0 Kingdom_of_Saudi_Arabia 0 021 @i 08700255 n 0000 #p 08791167 n 0000 #p 08847694 n 0000 #p 08910394 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 + 03114139 a 0101 -r 08210411 n 0000 %p 08993871 n 0000 %p 08994090 n 0000 %p 08994339 n 0000 %p 08994540 n 0000 %p 08994834 n 0000 %p 08995013 n 0000 %p 08995120 n 0000 %p 08995242 n 0000 %p 08995515 n 0000 %p 09171376 n 0000 %p 09172111 n 0000 %p 09173023 n 0000 %m 09729387 n 0000 | an absolute monarchy occupying most of the Arabian Peninsula in southwest Asia; vast oil reserves dominate the economy -08993871 15 n 02 Riyadh 0 capital_of_Saudi_Arabia 0 003 @i 08691669 n 0000 #p 08993288 n 0000 ~i 08994090 n 0000 | joint capital (with Mecca) of Saudi Arabia located in the central oasis; largest city in Saudi Arabia -08994090 15 n 01 Mecca 0 004 @i 08993871 n 0000 #p 08993288 n 0000 #p 08995515 n 0000 %p 03606719 n 0000 | joint capital (with Riyadh) of Saudi Arabia; located in western Saudi Arabia; as the birthplace of Muhammad it is the holiest city of Islam -08994339 15 n 02 Medina 0 Al_Madinah 0 003 @i 08524735 n 0000 #p 08993288 n 0000 #p 08995515 n 0000 | a city in western Saudi Arabia; site of the tomb of Muhammad; the second most holy city of Islam -08994540 15 n 01 Dhahran 0 003 @i 08665504 n 0000 #p 08993288 n 0000 ;c 00759694 n 0000 | an oil town in eastern Saudi Arabia on an inlet from the Persian Gulf; in June 1996 terrorists bombed an apartment complex in Dhahran killing 19 United States soldiers and wounding more than 300 people -08994834 15 n 04 Jeddah 0 Jed'dah 0 Jiddah 0 Jidda 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08993288 n 0000 | port city in western Saudi Arabia on the Red Sea; near Mecca -08995013 15 n 01 Tabuk 0 002 @i 08524735 n 0000 #p 08993288 n 0000 | a city in northwestern Saudi Arabia -08995120 15 n 01 Taif 0 002 @i 08524735 n 0000 #p 08993288 n 0000 | a city in western Saudi Arabia to the east of Mecca -08995242 15 n 02 Nejd 0 Najd 0 004 @i 08574314 n 0000 @i 09453008 n 0000 #p 08993288 n 0000 #p 08847694 n 0000 | a central plateau region of the Arabian Peninsula; formerly an independent sultanate until 1932 when it united with Hejaz to form the Kingdom of Saudi Arabia -08995515 15 n 03 Hejaz 0 Hedjaz 0 Hijaz 0 005 @i 08574314 n 0000 #p 08993288 n 0000 #p 08847694 n 0000 %p 08994090 n 0000 %p 08994339 n 0000 | a coastal region of the western Arabian Peninsula bordering on the Red Sea; includes both Mecca and Medina; formerly an independent kingdom until it united with Nejd to form the Kingdom of Saudi Arabia -08995862 15 n 02 Senegal 0 Republic_of_Senegal 0 004 @i 08698379 n 0000 #p 09189411 n 0000 %p 08996118 n 0000 %m 09730824 n 0000 | a republic in northwestern Africa on the coast of the Atlantic; formerly a French colony but achieved independence in 1960 -08996118 15 n 02 Dakar 0 capital_of_Senegal 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08995862 n 0000 | the capital and chief port and largest city of Senegal -08996284 15 n 02 Seychelles 1 Seychelles_islands 0 003 @i 09316454 n 0000 #p 09311259 n 0000 %p 08996483 n 0000 | a group of about 90 islands in the western Indian Ocean to the north of Madagascar -08996483 15 n 02 Seychelles 0 Republic_of_Seychelles 0 004 @i 08544813 n 0000 #p 08996284 n 0000 %p 08996714 n 0000 %m 09730951 n 0000 | a republic on the Seychelles islands; achieved independence from the United Kingdom in 1976 -08996714 15 n 02 Victoria 2 capital_of_Seychelles 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08996483 n 0000 | port city and the capital of Seychelles -08996871 15 n 02 Sierra_Leone 0 Republic_of_Sierra_Leone 0 006 @i 08698379 n 0000 #p 09189411 n 0000 + 03117503 a 0101 -r 08043848 n 0000 %p 08997132 n 0000 %m 09731225 n 0000 | a republic in West Africa; achieved independence from the United Kingdom in 1961 -08997132 15 n 02 Freetown 0 capital_of_Sierra_Leone 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08996871 n 0000 | port city and the capital and largest city of Sierra Leone -08997310 15 n 02 Singapore 1 Singapore_Island 0 004 @i 09316454 n 0000 #p 09441107 n 0000 + 03117835 a 0101 %p 08997487 n 0000 | an island to the south of the Malay Peninsula -08997487 15 n 02 Singapore 0 Republic_of_Singapore 0 008 @i 08700255 n 0000 #p 08997310 n 0000 #p 08715110 n 0000 #m 08487504 n 0000 + 03117835 a 0101 + 03117653 a 0101 %p 08997801 n 0000 %m 09749614 n 0000 | a country in southeastern Asia on the island of Singapore; achieved independence from Malaysia in 1965 -08997801 15 n 02 Singapore 2 capital_of_Singapore 0 003 @i 08691669 n 0000 #p 08997487 n 0000 + 03117653 a 0101 | the capital of Singapore; one of the world's biggest ports -08997976 15 n 02 Solomons 0 Solomon_Islands 1 004 @i 09203827 n 0000 #p 08836630 n 0000 %p 08843735 n 0000 %p 08998233 n 0000 | the northernmost islands are part of Papua New Guinea; the remainder form an independent state within the British Commonwealth -08998233 15 n 01 Solomon_Islands 0 004 @i 08544813 n 0000 #p 08997976 n 0000 %p 08843571 n 0000 %p 08998451 n 0000 | the southern Solomon Islands that since 1978 form an independent state in the British Commonwealth -08998451 15 n 01 Honiara 0 002 @i 08691669 n 0000 #p 08998233 n 0000 | national capital of Solomon Islands -08998560 15 n 01 Somalia 0 009 @i 08698379 n 0000 #p 08999154 n 0000 #p 09189411 n 0000 #m 08172103 n 0000 + 03119182 a 0101 -r 08012384 n 0000 %p 08998853 n 0000 %p 08999049 n 0000 %m 09749880 n 0000 | a republic in extreme eastern Africa on the Somali peninsula; subject to tribal warfare -08998853 15 n 03 Mogadishu 0 Mogadiscio 0 capital_of_Somalia 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 08998560 n 0000 | the capital and largest city of Somalia; a port on the Indian Ocean -08999049 15 n 01 Hargeisa 0 002 @i 08524735 n 0000 #p 08998560 n 0000 | a city in northwestern Somalia -08999154 15 n 02 Somali_peninsula 0 Horn_of_Africa 0 007 @i 09388848 n 0000 #p 09189411 n 0000 ;r 09189411 n 0000 %p 08762495 n 0000 %p 08777544 n 0000 %p 08778061 n 0000 %p 08998560 n 0000 | a peninsula of northeastern Africa (the easternmost part of Africa) comprising Somalia and Djibouti and Eritrea and parts of Ethiopia -08999482 15 n 02 South_Africa 0 Republic_of_South_Africa 0 030 @i 08698379 n 0000 #p 09189411 n 0000 #m 08049989 n 0000 + 02928926 a 0101 -r 00310516 n 0000 -r 03629857 n 0000 -r 07665013 n 0000 -r 08039601 n 0000 -r 08040522 n 0000 %p 08971693 n 0000 %p 09000272 n 0000 %p 09000462 n 0000 %p 09000665 n 0000 %p 09000854 n 0000 %p 09001007 n 0000 %p 09001184 n 0000 %p 09001373 n 0000 %p 09001580 n 0000 %p 09002325 n 0000 %p 09002433 n 0000 %p 09170294 n 0000 -r 09327077 n 0000 %p 09339512 n 0000 %p 09379705 n 0000 %m 09693372 n 0000 %m 09693618 n 0000 %m 09731436 n 0000 %m 09751496 n 0000 -r 10228864 n 0000 -r 12144313 n 0000 | a republic at the southernmost part of Africa; achieved independence from the United Kingdom in 1910; first European settlers were Dutch (known as Boers) -09000272 15 n 02 Pretoria 0 capital_of_South_Africa 0 002 @i 08691669 n 0000 #p 08999482 n 0000 | city in the Transvaal; the seat of the executive branch of the government of South Africa -09000462 15 n 01 Cape_Town 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08999482 n 0000 | port city in southwestern South Africa; the seat of the legislative branch of the government of South Africa -09000665 15 n 01 Johannesburg 0 002 @i 08524735 n 0000 #p 08999482 n 0000 | city in the northeastern part of South Africa near Pretoria; commercial center for diamond and gold industries -09000854 15 n 01 Kimberley 0 002 @i 08524735 n 0000 #p 08999482 n 0000 | city in central South Africa; center for diamond mining and diamond marketing -09001007 15 n 01 Durban 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 08999482 n 0000 | a port city in eastern South Africa on the Indian Ocean; resort and industrial center -09001184 15 n 02 Free_State 2 Orange_Free_State 0 002 @i 08654360 n 0000 #p 08999482 n 0000 | a province in central South Africa that was colonized by the Boers; named Free State in 1997 -09001373 15 n 01 Transvaal 0 003 @i 08654360 n 0000 #p 08999482 n 0000 %p 09001881 n 0000 | a province of northeastern South Africa originally inhabited by Africans who spoke Bantu; colonized by the Boers -09001580 15 n 03 Cape_Province 0 Cape_of_Good_Hope_Province 0 Cape_Colony 0 002 @i 08654360 n 0000 #p 08999482 n 0000 | a former province of southern South Africa that was settled by the Dutch in 1652 and ceded to Great Britain in 1814; in 1994 it was split into three new provinces of South Africa -09001881 15 n 03 Witwatersrand 0 Rand 0 Reef 0 002 @i 08630039 n 0000 #p 09001373 n 0000 | a rocky region in the southern Transvaal in northeastern South Africa; contains rich gold deposits and coal and manganese -09002096 15 n 01 Cape_of_Good_Hope 1 001 @i 08654360 n 0000 | a province of western South Africa -09002195 15 n 01 Cape_of_Good_Hope 0 001 @i 09233715 n 0000 | a point of land in southwestern South Africa (south of Cape Town) -09002325 15 n 01 Bloemfontein 0 002 @i 08524735 n 0000 #p 08999482 n 0000 | the seat of the supreme court -09002433 15 n 01 Soweto 0 002 @i 08524735 n 0000 #p 08999482 n 0000 | a large collection of African townships to the southwest of Johannesburg in South Africa; inhabited solely by Black Africans -09002630 15 n 01 Rus 0 001 @i 08544813 n 0000 | the medieval Russian state established by Scandinavian traders in the 9th century; the capital was first in Novgorod and then in Kiev -09002814 15 n 01 Russia 2 009 @i 08557482 n 0000 #p 09275016 n 0000 + 02957276 a 0101 %p 09003918 n 0000 -r 09987239 n 0000 -r 10812550 n 0000 -r 10812800 n 0000 -r 10813049 n 0000 -r 11205975 n 0000 | a former empire in eastern Europe and northern Asia created in the 14th century with Moscow as the capital; powerful in the 17th and 18th centuries under Peter the Great and Catherine the Great when Saint Petersburg was the capital; overthrown by revolution in 1917 -09003284 15 n 04 Soviet_Union 0 Russia 0 Union_of_Soviet_Socialist_Republics 0 USSR 0 017 @i 08544813 n 0000 #p 09275016 n 0000 -r 01307754 n 0000 -r 01308008 n 0000 -r 06944348 n 0000 -r 07482368 n 0000 -r 07624924 n 0000 -r 07890617 n 0000 -r 08057068 n 0000 %p 09006205 n 0000 %p 09007723 n 0000 %p 09237404 n 0000 -r 09445289 n 0000 -r 10718665 n 0000 -r 11316828 n 0000 -r 13976527 n 0000 -r 13996211 n 0000 | a former communist country in eastern Europe and northern Asia; established in 1922; included Russia and 14 other soviet socialist republics (Ukraine and Byelorussia and others); officially dissolved 31 December 1991 -09003918 15 n 01 Muscovy 0 002 @i 08558488 n 0000 #p 09002814 n 0000 | a Russian principality in the 13th to 16th centuries; Moscow was the capital -09004068 15 n 03 Moscow 0 capital_of_the_Russian_Federation 0 Russian_capital 0 003 @i 08691669 n 0000 #p 09006413 n 0000 %p 03628590 n 0000 | a city of central European Russia; formerly capital of both the Soviet Union and Soviet Russia; since 1991 the capital of the Russian Federation -09004358 15 n 01 Astrakhan 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in southwestern Russia on the delta of the Volga River -09004495 15 n 01 Cherepovets 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city of east central Russia to the north of Moscow -09004625 15 n 03 Chechnya 0 Chechenia 0 Chechen_Republic 0 002 @i 08574314 n 0000 #p 09006413 n 0000 | an autonomous republic in southwestern Russia in the northern Caucasus Mountains bordering on Georgia; declared independence from the USSR in 1991 but Russian troops invaded and continue to prosecute a relentless military campaign in the largely Muslim republic -09004992 15 n 02 Grozny 0 Groznyy 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | the capital of Chechnya in southwestern Russia; center of extensive oil fields -09005153 15 n 01 Kaluga 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city of central Russia to the south of Moscow -09005273 15 n 01 Khabarovsk 0 004 @i 08491826 n 0000 #p 09005712 n 0000 #p 09006413 n 0000 %p 09005457 n 0000 | an administrative territory in Russia on the eastern coast of Siberia -09005457 15 n 01 Khabarovsk 1 002 @i 08524735 n 0000 #p 09005273 n 0000 | a city on the Amur River on the border of China and the capital of Khabarovsk -09005611 15 n 01 Kursk 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city of southwestern Russia -09005712 15 n 01 Siberia 0 021 @i 08574314 n 0000 #p 09006413 n 0000 + 03117272 a 0101 %p 09005273 n 0000 %p 09021958 n 0000 %p 09022132 n 0000 %p 09197432 n 0000 %p 09242767 n 0000 %p 09298974 n 0000 %p 09311710 n 0000 %p 09316066 n 0000 %p 09337686 n 0000 %p 09375891 n 0000 %p 09425159 n 0000 %p 09463362 n 0000 %p 09463547 n 0000 %p 09482330 n 0000 %m 09707587 n 0000 %m 09707735 n 0000 %m 09708247 n 0000 %m 09731082 n 0000 | a vast Asian region of Russia; famous for long cold winters -09006205 15 n 01 Soviet_Socialist_Republic 0 003 @ 08654360 n 0000 #p 09003284 n 0000 ~i 09007723 n 0000 | one of the states that formerly made up the former Union of Soviet Socialist Republics (1922-1991) -09006413 15 n 02 Russia 4 Russian_Federation 0 047 @i 08544813 n 0000 #p 09275016 n 0000 #m 08295138 n 0000 + 02957276 a 0101 -r 08343905 n 0000 %p 08779830 n 0000 %p 09004068 n 0000 %p 09004358 n 0000 %p 09004495 n 0000 %p 09004625 n 0000 %p 09004992 n 0000 %p 09005153 n 0000 %p 09005273 n 0000 %p 09005611 n 0000 %p 09005712 n 0000 %p 09007471 n 0000 ~i 09007613 n 0000 %p 09008130 n 0000 %p 09008333 n 0000 %p 09008454 n 0000 %p 09008723 n 0000 %p 09008993 n 0000 %p 09009174 n 0000 %p 09009372 n 0000 %p 09009490 n 0000 %p 09009693 n 0000 %p 09009816 n 0000 %p 09009978 n 0000 %p 09010085 n 0000 %p 09010300 n 0000 %p 09010453 n 0000 %p 09010565 n 0000 %p 09010670 n 0000 %p 09010785 n 0000 %p 09010974 n 0000 %p 09196103 n 0000 %p 09268236 n 0000 %p 09268778 n 0000 %p 09331654 n 0000 %p 09331819 n 0000 %p 09332598 n 0000 %p 09369844 n 0000 %p 09458587 n 0000 %p 09467185 n 0000 %p 09471481 n 0000 %p 09473239 n 0000 %p 09473397 n 0000 | a federation in northeastern Europe and northern Asia; formerly Soviet Russia; since 1991 an independent state -09007471 15 n 01 European_Russia 0 003 @i 08574314 n 0000 #p 09006413 n 0000 #p 09275473 n 0000 | the part of Russia that is part of Europe -09007613 15 n 01 Asian_Russia 0 002 @i 09006413 n 0000 #p 09207288 n 0000 | the Russia that is part of Asia -09007723 15 n 03 Soviet_Russia 0 Russia 1 Russian_Soviet_Federated_Socialist_Republic 0 011 @i 09006205 n 0000 #p 09003284 n 0000 #p 09275016 n 0000 -r 01272134 n 0000 %m 09706255 n 0000 %m 09706396 n 0000 %m 09706548 n 0000 %m 09707400 n 0000 %m 09707992 n 0000 %m 09708118 n 0000 %m 09728403 n 0000 | formerly the largest Soviet Socialist Republic in the USSR occupying eastern Europe and northern Asia -09008130 15 n 05 Nizhnyi_Novgorod 0 Nizhni_Novgorod 0 Gorki 0 Gorky 0 Gorkiy 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | an industrial city in the European part of Russia; birthplace of Maksim Gorky -09008333 15 n 01 Kazan 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | an industrial city in the European part of Russia -09008454 15 n 05 St._Petersburg 0 Leningrad 0 Peterburg 0 Petrograd 0 Saint_Petersburg 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the European part of Russia; 2nd largest Russian city; located at the head of the Gulf of Finland; former capital of Russia -09008723 15 n 01 Murmansk 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09006413 n 0000 | a port city in northwestern Russia on the Kola Peninsula; the largest city to the north of the Arctic Circle; an important supply line to Russia in World War I and World War II -09008993 15 n 01 Nalchik 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in southwestern Russia in a valley of the Caucasus Mountains; an industrial center and health resort -09009174 15 n 01 Novgorod 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in northwestern Russia on the Volkhov River; Russia's oldest city and an important trading center in the Middle Ages -09009372 15 n 02 Perm 0 Molotov 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the European part of Russia -09009490 15 n 03 Rostov 0 Rostov_on_Don 0 Rostov_na_Donu 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09006413 n 0000 | a seaport on the Don River near the Sea of Azov in the European part of Russia -09009693 15 n 01 Saratov 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | an industrial city in the European part of Russia -09009816 15 n 01 Smolensk 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in western Russia on the Dnieper River; scene of severe fighting in World War II -09009978 15 n 01 Ufa 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the European part of Russia -09010085 15 n 03 Volgograd 0 Stalingrad 0 Tsaritsyn 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the European part of Russia on the Volga; site of German defeat in World War II in the winter of 1942-43 -09010300 15 n 01 Novosibirsk 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the Asian part of Russia on the Ob river; largest city in Siberia -09010453 15 n 01 Chelyabinsk 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the Asian part of Russia -09010565 15 n 01 Omsk 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a city in the Asian part of Russia -09010670 15 n 01 Vladivostok 0 002 @i 08524735 n 0000 #p 09006413 n 0000 | a seaport in the Asian part of Russia -09010785 15 n 02 Novaya_Zemlya 0 Nova_Zembla 0 002 @i 09316454 n 0000 #p 09006413 n 0000 | two islands in the Arctic Ocean belonging to Russia; site of a test center for nuclear warheads -09010974 15 n 01 Kola_Peninsula 0 002 @i 09388848 n 0000 #p 09006413 n 0000 | a peninsula in northwestern Russia projecting eastward between the Barents Sea and the White Sea -09011151 15 n 06 Belarus 0 Republic_of_Belarus 0 Byelarus 0 Byelorussia 0 Belorussia 0 White_Russia 0 010 @i 08696931 n 0000 #p 09275473 n 0000 #m 08295138 n 0000 + 02660940 a 0101 %p 09011518 n 0000 %p 09011679 n 0000 %p 09011820 n 0000 %p 09011922 n 0000 %p 09268236 n 0000 %m 09695979 n 0000 | a landlocked republic in eastern Europe; formerly a European soviet -09011518 15 n 02 Minsk 0 capital_of_Belarus 0 002 @i 08691669 n 0000 #p 09011151 n 0000 | the capital of Belarus and of the Commonwealth of Independent States -09011679 15 n 03 Homyel 0 Homel 0 Gomel 0 002 @i 08524735 n 0000 #p 09011151 n 0000 | industrial city of Belarus to the southeast of Minsk -09011820 15 n 01 Pinsk 0 002 @i 08524735 n 0000 #p 09011151 n 0000 | a city of southwestern Belarus -09011922 15 n 01 Lubavitch 0 002 @i 08665504 n 0000 #p 09011151 n 0000 | a town in Belarus that was the center of the Chabad movement for a brief period during the 19th century -09012101 15 n 02 Baltic_State 0 Baltic_Republic 0 005 @ 08574314 n 0000 #p 09275473 n 0000 ~i 09012297 n 0000 ~i 09013074 n 0000 ~i 09013830 n 0000 | European countries bordering the Baltic Sea -09012297 15 n 03 Estonia 0 Esthonia 0 Republic_of_Estonia 0 006 @i 09012101 n 0000 #p 09275473 n 0000 + 02723158 a 0101 %p 09012530 n 0000 %p 09012735 n 0000 %p 09012898 n 0000 | a republic in northeastern Europe on the Baltic Sea -09012530 15 n 03 Tallinn 0 Tallin 0 capital_of_Estonia 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09012297 n 0000 | a port city on the Gulf of Finland that is the capital and largest city of Estonia -09012735 15 n 01 Tartu 0 003 @i 08524735 n 0000 #p 09012297 n 0000 #m 08304135 n 0000 | a city of southeastern Estonia that was a member of the Hanseatic League -09012898 15 n 01 Livonia 0 003 @i 08574314 n 0000 #p 09012297 n 0000 #p 09013074 n 0000 | a region on the Baltic that is divided between northern Estonia and southern Latvia -09013074 15 n 02 Latvia 0 Republic_of_Latvia 0 008 @i 09012101 n 0000 #p 09275473 n 0000 + 02962818 a 0101 %p 09012898 n 0000 %p 09013353 n 0000 %p 09013603 n 0000 %p 09013724 n 0000 %m 09707166 n 0000 | a republic in northeastern Europe on the eastern coast of the Baltic Sea -09013353 15 n 02 Riga 0 capital_of_Latvia 0 004 @i 08691669 n 0000 @i 08633957 n 0000 #p 09013074 n 0000 #m 08304135 n 0000 | a port city on the Gulf of Riga that is the capital and largest city of Latvia; formerly a member of the Hanseatic League -09013603 15 n 01 Liepaja 0 002 @i 08524735 n 0000 #p 09013074 n 0000 | a city of southwestern Latvia on the Baltic Sea -09013724 15 n 01 Daugavpils 0 002 @i 08524735 n 0000 #p 09013074 n 0000 | a city of southeastern Latvia -09013830 15 n 03 Lithuania 0 Republic_of_Lithuania 0 Lietuva 0 006 @i 09012101 n 0000 + 02962961 a 0101 %p 09014066 n 0000 %p 09014273 n 0000 %p 09014470 n 0000 %m 09707289 n 0000 | a republic in northeastern Europe on the Baltic Sea -09014066 15 n 02 Klaipeda 0 Memel 0 003 @i 08524735 n 0000 #p 09013830 n 0000 #m 08304135 n 0000 | a city in western Lithuania on the Baltic Sea; formerly an important trading town of the Hanseatic League -09014273 15 n 05 Vilnius 0 Vilna 0 Vilno 0 Wilno 0 capital_of_Lithuania 0 002 @i 08691669 n 0000 #p 09013830 n 0000 | the capital and largest city of Lithuania; located in southeastern Lithuania -09014470 15 n 03 Kaunas 0 Kovna 0 Kovno 0 002 @i 08524735 n 0000 #p 09013830 n 0000 | a city in central Lithuania -09014586 15 n 03 Moldova 0 Republic_of_Moldova 0 Moldavia 0 005 @i 08696931 n 0000 #p 09275473 n 0000 #m 08295138 n 0000 + 02963128 a 0101 %p 09014850 n 0000 | a landlocked republic in eastern Europe; formerly a European soviet but achieved independence in 1991 -09014850 15 n 03 Kishinev 0 Chisinau 0 capital_of_Moldova 0 002 @i 08691669 n 0000 #p 09014586 n 0000 | the capital of Moldova -09014979 15 n 02 Ukraine 0 Ukrayina 0 015 @i 08544813 n 0000 #p 09275473 n 0000 #m 08295138 n 0000 + 02963665 a 0101 %p 09015460 n 0000 %p 09015907 n 0000 %p 09016099 n 0000 %p 09016232 n 0000 %p 09016365 n 0000 %p 09016860 n 0000 %p 09017005 n 0000 %p 09236423 n 0000 %p 09263087 n 0000 %p 09268236 n 0000 %m 09737050 n 0000 | a republic in southeastern Europe; formerly a European soviet; the center of the original Russian state which came into existence in the ninth century -09015460 15 n 01 Crimea 0 005 @i 09388848 n 0000 #p 09014979 n 0000 -r 01303739 n 0000 %p 09017168 n 0000 %p 09017301 n 0000 | a Ukrainian peninsula between the Black Sea and the Sea of Azov -09015653 15 n 01 Colchis 0 002 @i 08574314 n 0000 ;c 07979425 n 0000 | (Greek mythology) a region on the Black Sea to the south of the Caucasus that was the site of an ancient country where (according to Greek mythology) Jason sought the Golden Fleece -09015907 15 n 03 Kyyiv 0 Kiev 0 capital_of_the_Ukraine 0 002 @i 08691669 n 0000 #p 09014979 n 0000 | capital and largest city of the Ukraine; a major manufacturing and transportation center -09016099 15 n 03 Donetsk 0 Donetske 0 Stalino 0 002 @i 08524735 n 0000 #p 09014979 n 0000 | an industrial city in the Donets Basin -09016232 15 n 03 Donets_Basin 0 Donbass 0 Donbas 0 002 @i 08574314 n 0000 #p 09014979 n 0000 | an industrial region in the Ukraine -09016365 15 n 01 Chernobyl 0 002 @i 08524735 n 0000 #p 09014979 n 0000 | a city in north central Ukraine; site of a major disaster at a nuclear power plant (26 April 1986) -09016539 15 n 01 Dneprodzerzhinsk 0 002 @i 08524735 n 0000 @i 08633957 n 0000 | port city and industrial center in east central Ukraine on the Dnieper River -09016698 15 n 02 Dnipropetrovsk 0 Yekaterinoslav 0 001 @i 08524735 n 0000 | city in east central Ukraine on the Dnieper River; center of metallurgical industry -09016860 15 n 02 Kharkov 0 Kharkiv 0 002 @i 08524735 n 0000 #p 09014979 n 0000 | a city in northeastern Ukraine; former capital of the Ukraine -09017005 15 n 02 Odessa 0 Odesa 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09014979 n 0000 | a port city of south central Ukraine on an arm of the Black Sea -09017168 15 n 02 Sebastopol 0 Sevastopol 0 002 @i 08524735 n 0000 #p 09015460 n 0000 | a city in southern Ukraine on the Black Sea -09017301 15 n 01 Yalta 0 002 @i 08524735 n 0000 #p 09015460 n 0000 | a resort city in Crimea in the southern Ukraine on the Black Sea; site of the Allied conference between Roosevelt, Stalin, and Churchill in February 1945 -09017526 15 n 03 Armenia 0 Republic_of_Armenia 0 Hayastan 0 009 @i 08700255 n 0000 #p 08519916 n 0000 #m 08295138 n 0000 + 02625648 a 0101 -r 08016385 n 0000 %p 08083083 n 0000 %p 09018030 n 0000 %p 09203217 n 0000 %m 09690371 n 0000 | a landlocked republic in southwestern Asia; formerly an Asian soviet; modern Armenia is but a fragment of ancient Armenia which was one of the world's oldest civilizations; throughout 2500 years the Armenian people have been invaded and oppressed by their neighbors -09018030 15 n 04 Yerevan 0 Jerevan 0 Erivan 0 capital_of_Armenia 0 002 @i 08691669 n 0000 #p 09017526 n 0000 | capital of Armenia -09018162 15 n 04 Azerbaijan 0 Azerbaijani_Republic 0 Azerbajdzhan 0 Azerbajdzhan_Republic 0 005 @i 08700255 n 0000 #p 08519916 n 0000 #m 08295138 n 0000 -r 08027314 n 0000 %p 09018426 n 0000 | a landlocked republic in southwestern Asia; formerly an Asian soviet -09018426 15 n 02 Baku 0 capital_of_Azerbaijan 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09018162 n 0000 | a port city on the Caspian Sea that is the capital of Azerbaijan and an important center for oil production -09018647 15 n 01 Iberia 1 002 @i 08574314 n 0000 %m 10196283 n 0000 | an ancient geographical region to the south of the Caucasus Mountains that corresponded approximately to the present-day Georgia -09018848 15 n 02 Georgia 1 Sakartvelo 0 008 @i 08700255 n 0000 #p 08519916 n 0000 #m 08295138 n 0000 + 03067957 a 0101 %p 09019194 n 0000 %p 09019355 n 0000 %p 09019592 n 0000 %m 09729156 n 0000 | a republic in Asia Minor on the Black Sea separated from Russia by the Caucasus mountains; formerly an Asian soviet but became independent in 1991 -09019194 15 n 03 Tbilisi 0 Tiflis 0 capital_of_Georgia 0 002 @i 08691669 n 0000 #p 09018848 n 0000 | the capital and largest city of Georgia on the Kura river -09019355 15 n 02 Abkhaz 0 Abkhazia 0 004 @i 08654360 n 0000 #p 09018848 n 0000 -r 08487953 n 0000 %m 09639543 n 0000 | an autonomous province of Georgia on the Black Sea; a strong independence movement has resulted in much instability -09019592 15 n 02 Adzhar 0 Adzharia 0 002 @i 08654360 n 0000 #p 09018848 n 0000 | an autonomous province of Georgia on the Black Sea -09019726 15 n 05 Kazakhstan 0 Republic_of_Kazakhstan 0 Kazakstan 0 Kazakh 0 Kazak 0 005 @i 08700255 n 0000 #p 09207288 n 0000 #m 08295138 n 0000 %p 09020299 n 0000 %m 09736181 n 0000 | a landlocked republic to the south of Russia and to the northeast of the Caspian Sea; the original Turkic-speaking inhabitants were overrun by Mongols in the 13th century; an Asian soviet from 1936 to 1991 -09020119 15 n 03 Astana 0 Akmola 0 capital_of_Kazakhstan 0 001 @i 08691669 n 0000 | remote city of Kazakhstan that (ostensibly for security reasons) was made the capital in 1998 -09020299 15 n 02 Almaty 0 Alma-Ata 0 002 @i 08524735 n 0000 #p 09019726 n 0000 | the largest city in Kazakhstan and the capital until 1998 -09020440 15 n 08 Kyrgyzstan 0 Kyrgyz_Republic 0 Kirghizia 0 Kirgizia 0 Kirghiz 0 Kirgiz 0 Kirghizstan 0 Kirgizstan 0 005 @i 08700255 n 0000 #p 09207288 n 0000 #m 08295138 n 0000 %p 09020792 n 0000 %p 09384223 n 0000 | a landlocked republic in west central Asia bordering on northwestern China; formerly an Asian soviet but became independent in 1991 -09020792 15 n 04 Bishkek 0 Biskek 0 Frunze 0 capital_of_Kyrgyzstan 0 002 @i 08691669 n 0000 #p 09020440 n 0000 | the capital of Kyrgyzstan (known as Frunze 1926-1991) -09020961 15 n 06 Tajikistan 0 Republic_of_Tajikistan 0 Tadzhikistan 0 Tadzhik 0 Tadjik 0 Tajik 0 007 @i 08700255 n 0000 #p 09207288 n 0000 #m 08295138 n 0000 %p 09021313 n 0000 %p 09251832 n 0000 %p 09384223 n 0000 %m 09734006 n 0000 | a landlocked mountainous republic in southeast central Asia to the north of Afghanistan; formerly an Asian soviet -09021313 15 n 05 Dushanbe 0 Dusanbe 0 Dyushambe 0 Stalinabad 0 capital_of_Tajikistan 0 002 @i 08691669 n 0000 #p 09020961 n 0000 | the capital of Tajikistan; formerly Stalinabad 1926-1991 -09021503 15 n 04 Turkmenistan 0 Turkomen 0 Turkmen 0 Turkmenia 0 005 @i 08544813 n 0000 #p 09207288 n 0000 #m 08295138 n 0000 %p 09021812 n 0000 %p 09170475 n 0000 | a republic in Asia to the east of the Caspian Sea and to the south of Kazakhstan and to the north of Iran; an Asian soviet from 1925 to 1991 -09021812 15 n 02 Ashkhabad 0 capital_of_Turkmenistan 0 002 @i 08691669 n 0000 #p 09021503 n 0000 | the capital and largest city of Turkmenistan -09021958 15 n 01 Kamchatka_Peninsula 0 003 @i 09388848 n 0000 #p 09005712 n 0000 %p 09175767 n 0000 | a peninsula in eastern Siberia; between Bering Sea and Sea of Okhotsk -09022132 15 n 02 Taimyr_Peninsula 0 Taymyr_Peninsula 0 002 @i 09388848 n 0000 #p 09005712 n 0000 | a peninsula in northern Siberia -09022265 15 n 03 Uzbekistan 0 Republic_of_Uzbekistan 0 Uzbek 0 007 @i 08700255 n 0000 #p 09207288 n 0000 #m 08295138 n 0000 -r 08025835 n 0000 %p 09022538 n 0000 %p 09022667 n 0000 %p 09170633 n 0000 | a landlocked republic in west central Asia; formerly an Asian soviet -09022538 15 n 03 Tashkent 0 Taskent 0 capital_of_Uzbek 0 002 @i 08691669 n 0000 #p 09022265 n 0000 | the capital of Uzbekistan -09022667 15 n 02 Samarkand 0 Samarcand 0 002 @i 08524735 n 0000 #p 09022265 n 0000 | city in southern Uzbekistan; Tamerlane's opulent capital in the 14th century -09022831 15 n 01 Latin_America 0 007 @i 08574314 n 0000 ;r 09372504 n 0000 ;r 09440400 n 0000 + 02754995 a 0101 %p 08735705 n 0000 -r 09341319 n 0000 %m 09720256 n 0000 | the parts of North America and South America to the south of the United States where Romance languages are spoken -09023118 15 n 02 Andorra 0 Principality_of_Andorra 0 004 @i 08696931 n 0000 #p 08984567 n 0000 #p 09275473 n 0000 %m 09690496 n 0000 | a small republic in the eastern Pyrenees between Spain and France -09023321 15 n 03 Spain 0 Kingdom_of_Spain 0 Espana 0 052 @i 08696931 n 0000 #p 08984567 n 0000 #p 09275473 n 0000 #m 08173515 n 0000 #m 08174398 n 0000 -r 01164730 n 0000 -r 01308837 n 0000 -r 06966454 n 0000 -r 06966825 n 0000 -r 06967529 n 0000 -r 07591961 n 0000 -r 07916970 n 0000 -r 08018189 n 0000 -r 08021129 n 0000 %p 08493261 n 0000 %p 09024467 n 0000 %p 09024668 n 0000 %p 09024844 n 0000 %p 09024972 n 0000 %p 09025189 n 0000 %p 09025451 n 0000 %p 09025584 n 0000 %p 09025728 n 0000 %p 09026204 n 0000 %p 09026360 n 0000 ~ 09026499 n 0000 %p 09026614 n 0000 %p 09026780 n 0000 %p 09026911 n 0000 %p 09027089 n 0000 %p 09027292 n 0000 %p 09027460 n 0000 %p 09027679 n 0000 %p 09027853 n 0000 %p 09028062 n 0000 %p 09028204 n 0000 %p 09028477 n 0000 %p 09166304 n 0000 %p 09233284 n 0000 %p 09235053 n 0000 %p 09271415 n 0000 %p 09401474 n 0000 %p 09435065 n 0000 %p 09453566 n 0000 %m 09692250 n 0000 %m 09731906 n 0000 -r 09788521 n 0000 -r 09956780 n 0000 -r 09978697 n 0000 -r 10025487 n 0000 -r 10039164 n 0000 -r 10142537 n 0000 | a parliamentary monarchy in southwestern Europe on the Iberian Peninsula; a former colonial power -09024467 15 n 03 Madrid 0 capital_of_Spain 0 Spanish_capital 0 002 @i 08691669 n 0000 #p 09023321 n 0000 | the capital and largest city situated centrally in Spain; home of an outstanding art museum -09024668 15 n 01 Balearic_Islands 0 003 @i 09203827 n 0000 #p 09023321 n 0000 %p 09024844 n 0000 | an archipelago in the western Mediterranean off the eastern coast of Spain -09024844 15 n 01 Majorca 0 003 @i 09316454 n 0000 #p 09023321 n 0000 #p 09024668 n 0000 | the largest of the Balearic Islands -09024972 15 n 02 Canary_Islands 0 Canaries 0 003 @i 09316454 n 0000 #p 09023321 n 0000 %p 09028643 n 0000 | a group of mountainous islands in the Atlantic off the northwest coast of Africa forming Spanish provinces -09025189 15 n 01 Barcelona 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09023321 n 0000 | a city in northeastern Spain on the Mediterranean; 2nd largest Spanish city and the largest port and commercial center; has been a center for radical political beliefs -09025451 15 n 01 Cadiz 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09023321 n 0000 | an ancient port city in southwestern Spain -09025584 15 n 01 Cartagena 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09023321 n 0000 | a port in southeastern Spain on the Mediterranean -09025728 15 n 02 Cordoba 0 Cordova 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in southern Spain; center of Moorish culture -09025863 15 n 01 Granada 0 003 @i 08524735 n 0000 #p 08493261 n 0000 %p 02696669 n 0000 | a city in southeastern Spain that was the capital of the Moorish kingdom until it was captured by Ferdinand and Isabella in 1492; site of the Alhambra (a palace and fortress built by Moors in the Middle Ages) which is now a major tourist attraction -09026204 15 n 02 Jerez 0 Jerez_de_la_Frontera 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in southwestern Spain that is famous for making sherry -09026360 15 n 01 Leon 1 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in northwestern Spain at the foot of the Cantabrian Mountains -09026499 15 n 01 Logrono 0 002 @i 08524735 n 0000 @ 09023321 n 0000 | a city in northern Spain on the Ebro River -09026614 15 n 01 Malaga 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09023321 n 0000 | a port city and resort in Andalusia in southern Spain on the Mediterranean -09026780 15 n 01 Oviedo 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in northwestern Spain near the Cantabrian Mountains -09026911 15 n 01 San_Sebastian 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in northern Spain on the Bay of Biscay near the French border; a fashionable seaside resort -09027089 15 n 02 Sevilla 0 Seville 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09023321 n 0000 | a city in southwestern Spain; a major port and cultural center; the capital of bullfighting in Spain -09027292 15 n 01 Toledo 1 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in central Spain on the Tagus river; famous for steel and swords since the first century -09027460 15 n 01 Aragon 0 002 @i 08552138 n 0000 #p 09023321 n 0000 | a region of northeastern Spain; a former kingdom that united with Castile in 1479 to form Spain (after the marriage of Ferdinand V and Isabella I) -09027679 15 n 02 Zaragoza 0 Saragossa 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | an ancient city on the Ebro River in northeastern Spain; formerly the capital of Aragon -09027853 15 n 02 Castile 0 Castilla 0 002 @i 08552138 n 0000 #p 09023321 n 0000 | a region of central Spain; a former kingdom that comprised most of modern Spain and united with Aragon to form Spain in 1479 -09028062 15 n 01 Catalonia 0 004 @i 08552138 n 0000 #p 09023321 n 0000 + 03054020 a 0101 + 03053859 a 0101 | a region of northeastern Spain -09028204 15 n 01 Galicia 0 002 @i 08574314 n 0000 #p 09023321 n 0000 | a region (and former kingdom) in northwestern Spain on the Atlantic and the Bay of Biscay -09028367 15 n 01 Leon 2 001 @i 08574314 n 0000 | a historical area and former kingdom in northwestern Spain -09028477 15 n 01 Valencia 0 002 @i 08524735 n 0000 #p 09023321 n 0000 | a city in eastern Spain on the Mediterranean; "Valencia is the third largest city in Spain" -09028643 15 n 01 Tenerife 0 003 @i 09316454 n 0000 #p 09024972 n 0000 #p 09209263 n 0000 | a Spanish island in the Atlantic off the northwestern coast of Africa; the largest of the Canary Islands -09028841 15 n 03 Gibraltar 0 Rock_of_Gibraltar 0 Calpe 0 006 @i 08374049 n 0000 @i 09399592 n 0000 #p 09392162 n 0000 #p 09275473 n 0000 + 03068737 a 0101 %m 09749011 n 0000 | location of a colony of the United Kingdom on a limestone promontory at the southern tip of Spain; strategically important because it can control the entrance of ships into the Mediterranean; one of the Pillars of Hercules -09029242 15 n 02 Sudan 1 Soudan 1 003 @i 08574314 n 0000 #p 09189411 n 0000 -r 01289444 n 0000 | a region of northern Africa to the south of the Sahara and Libyan deserts; extends from the Atlantic to the Red Sea -09029457 15 n 03 Sudan 0 Republic_of_the_Sudan 0 Soudan 0 013 @i 08698379 n 0000 #p 09189411 n 0000 #m 08172103 n 0000 %p 09029884 n 0000 %p 09030096 n 0000 %p 09030210 n 0000 %p 09030382 n 0000 %p 09030467 n 0000 %p 09030596 n 0000 %p 09170788 n 0000 %p 09171674 n 0000 %p 09371360 n 0000 %m 09732170 n 0000 | a republic in northeastern Africa on the Red Sea; achieved independence from Egypt and the United Kingdom in 1956 -09029884 15 n 01 Darfur 0 002 @i 08552138 n 0000 #p 09029457 n 0000 | an impoverished region of western Sudan; "Darfur was a semi-independent sultanate until 1917 and is ethnically distinct from central Sudan" -09030096 15 n 01 Kordofan 0 002 @i 08552138 n 0000 #p 09029457 n 0000 | a mountainous province of central Sudan -09030210 15 n 02 Khartoum 0 capital_of_Sudan 0 002 @i 08691669 n 0000 #p 09029457 n 0000 | the capital of Sudan located at the confluence of the Blue Nile and White Nile -09030382 15 n 01 Nyala 0 002 @i 08524735 n 0000 #p 09029457 n 0000 | city in Sudan -09030467 15 n 01 Port_Sudan 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09029457 n 0000 | port city in Sudan on the Red Sea -09030596 15 n 01 Omdurman 0 002 @i 08524735 n 0000 #p 09029457 n 0000 | a city of Sudan; located in the central Sudan on the White Nile opposite Khartoum -09030752 15 n 05 Suriname 0 Republic_of_Suriname 0 Surinam 0 Dutch_Guiana 0 Netherlands_Guiana 0 005 @i 08702402 n 0000 #p 08948155 n 0000 #m 08176077 n 0000 %p 09031061 n 0000 %p 09451864 n 0000 | a republic in northeastern South America on the Atlantic; achieved independence from the Netherlands in 1975 -09031061 15 n 02 Paramaribo 0 capital_of_Suriname 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09030752 n 0000 | the capital and largest city and major port of Surinam -09031233 15 n 02 Swaziland 0 Kingdom_of_Swaziland 0 004 @i 08698379 n 0000 #p 09189411 n 0000 %p 09031501 n 0000 %m 09732293 n 0000 | a landlocked monarchy in southeastern Africa; member of the commonwealth that achieved independence from the United Kingdom in 1968 -09031501 15 n 02 Mbabane 0 capital_of_Swaziland 0 002 @i 08691669 n 0000 #p 09031233 n 0000 | capital of Swaziland; located in northwestern Swaziland -09031653 15 n 05 Switzerland 0 Swiss_Confederation 0 Suisse 0 Schweiz 0 Svizzera 0 021 @i 08696931 n 0000 #p 09275473 n 0000 -r 01294330 n 0000 -r 08344301 n 0000 -r 08541609 n 0000 %p 08801546 n 0000 %p 08945277 n 0000 %p 09032191 n 0000 %p 09032321 n 0000 %p 09032483 n 0000 %p 09032604 n 0000 %p 09032843 n 0000 %p 09032981 n 0000 %p 09033117 n 0000 %p 09186064 n 0000 %p 09194357 n 0000 %p 09331328 n 0000 %p 09349192 n 0000 %p 09408540 n 0000 %p 09408977 n 0000 %p 09477567 n 0000 | a landlocked federal republic in central Europe -09032191 15 n 01 Swiss_canton 0 003 @ 08540770 n 0000 #p 09031653 n 0000 ~i 08801546 n 0000 | one of the cantons of Switzerland -09032321 15 n 03 Bern 0 Berne 0 capital_of_Switzerland 0 002 @i 08691669 n 0000 #p 09031653 n 0000 | the capital of Switzerland; located in western Switzerland -09032483 15 n 03 Basel 0 Basle 0 Bale 0 002 @i 08524735 n 0000 #p 09031653 n 0000 | a city in northwestern Switzerland -09032604 15 n 03 Geneva 0 Geneve 0 Genf 0 003 @i 08524735 n 0000 #p 09031653 n 0000 %m 10123312 n 0000 | a city in southwestern Switzerland at the western end of Lake Geneva; it is the headquarters of various international organizations -09032843 15 n 01 Interlaken 0 002 @i 08665504 n 0000 #p 09031653 n 0000 | a popular resort town in the Alps in west central Switzerland -09032981 15 n 01 Lausanne 0 002 @i 08524735 n 0000 #p 09031653 n 0000 | a city in western Switzerland; cultural and commercial center -09033117 15 n 01 Zurich 0 002 @i 08524735 n 0000 #p 09031653 n 0000 | the largest city in Switzerland; located in the northern part of the country; "Zurich is the center of the German-speaking part of Switzerland" -09033333 15 n 02 Syria 0 Syrian_Arab_Republic 0 015 @i 08700255 n 0000 #p 08791167 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 + 03016519 a 0101 -r 08038995 n 0000 ~i 09033813 n 0000 %p 09033936 n 0000 %p 09034286 n 0000 %p 09034402 n 0000 %p 09038990 n 0000 %p 09173023 n 0000 %p 09274739 n 0000 %p 09458791 n 0000 %m 09733459 n 0000 | an Asian republic in the Middle East at the east end of the Mediterranean; site of some of the world's most ancient centers of civilization -09033813 15 n 01 Aram 0 003 @i 09033333 n 0000 + 02637182 a 0101 + 02637182 a 0102 | the biblical name for ancient Syria -09033936 15 n 03 Dimash 0 Damascus 0 capital_of_Syria 0 003 @i 08691669 n 0000 #p 09033333 n 0000 %m 09733580 n 0000 | an ancient city (widely regarded as the world's oldest) and present capital and largest city of Syria; according to the New Testament, the Apostle Paul (then known as Saul) underwent a dramatic conversion on the road to Damascus -09034286 15 n 03 Halab 0 Aleppo 0 Alep 0 002 @i 08524735 n 0000 #p 09033333 n 0000 | a city in northwestern Syria -09034402 15 n 02 Al_Ladhiqiyah 0 Latakia 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09033333 n 0000 | a seaport on the western coast of Syria -09034550 15 n 02 Tanzania 0 United_Republic_of_Tanzania 0 017 @i 08698379 n 0000 #p 09189411 n 0000 #p 08699426 n 0000 + 03123013 a 0101 %p 09034967 n 0000 %p 09035153 n 0000 %p 09035305 n 0000 %p 09035458 n 0000 %p 09035632 n 0000 %p 09035735 n 0000 %p 09035852 n 0000 %p 09035951 n 0000 %p 09036098 n 0000 %p 09325963 n 0000 %p 09332394 n 0000 %p 09378349 n 0000 %m 09734185 n 0000 | a republic in eastern Africa -09034967 15 n 02 Dar_es_Salaam 0 capital_of_Tanzania 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09034550 n 0000 | the capital and largest port city of Tanzania on the Indian Ocean -09035153 15 n 01 Dodoma 0 002 @i 08524735 n 0000 #p 09034550 n 0000 | a city in the center of Tanzania that has been designated as the future capital -09035305 15 n 01 Tanganyika 0 002 @i 08574314 n 0000 #p 09034550 n 0000 | a former state in East Africa; united with Zanzibar in 1964 to form Tanzania -09035458 15 n 01 Zanzibar 0 002 @i 09316454 n 0000 #p 09034550 n 0000 | an island in the Indian Ocean off the east coast of Africa; part of the United Republic of Tanzania -09035632 15 n 01 Mbeya 0 002 @i 08524735 n 0000 #p 09034550 n 0000 | a city in southwestern Tanzania -09035735 15 n 01 Mwanza 0 002 @i 08524735 n 0000 #p 09034550 n 0000 | a city in northern Tanzania on Lake Victoria -09035852 15 n 01 Tabora 0 002 @i 08524735 n 0000 #p 09034550 n 0000 | a city in western Tanzania -09035951 15 n 01 Tanga 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09034550 n 0000 | a port city in northeastern Tanzania on the Indian Ocean -09036098 15 n 02 Serengeti 0 Serengeti_Plain 0 003 @i 09393605 n 0000 #p 09034550 n 0000 %p 09036295 n 0000 | a vast plain in Tanzania to the west of the Great Rift Valley known for its wildlife -09036295 15 n 01 Serengeti_National_Park 0 002 @i 08600992 n 0000 #p 09036098 n 0000 | a national park in Tanzania created in 1951 to protect the wildlife -09036452 15 n 03 Thailand 0 Kingdom_of_Thailand 0 Siam 0 011 @i 08700255 n 0000 #p 08964810 n 0000 #p 08731606 n 0000 #m 08487504 n 0000 -r 06930934 n 0000 %p 09036880 n 0000 %p 09241712 n 0000 %p 09350524 n 0000 %p 09364954 n 0000 %p 09392507 n 0000 %m 09734294 n 0000 | a country of southeastern Asia that extends southward along the Isthmus of Kra to the Malay Peninsula; "Thailand is the official name of the former Siam" -09036880 15 n 03 Bangkok 0 capital_of_Thailand 0 Krung_Thep 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09036452 n 0000 | the capital and largest city and chief port of Thailand; a leading city in southeastern Asia; noted for Buddhist architecture -09037133 15 n 03 Tonga 0 Kingdom_of_Tonga 0 Friendly_Islands 0 004 @i 08544813 n 0000 #p 08841667 n 0000 + 03125643 a 0101 %m 09750410 n 0000 | a monarchy on a Polynesian archipelago in the South Pacific; achieved independence from the United Kingdom in 1970 -09037394 15 n 02 Tunisia 0 Republic_of_Tunisia 0 013 @i 08698379 n 0000 #p 08597323 n 0000 #m 08172103 n 0000 + 03127030 a 0101 -r 01301423 n 0000 %p 09037838 n 0000 %p 09037991 n 0000 %p 09038079 n 0000 %p 09038170 n 0000 %p 09038272 n 0000 %p 09038439 n 0000 %p 09210346 n 0000 %m 09734760 n 0000 | a republic in northwestern Africa on the Mediterranean coast; achieved independence from France in 1956; "southern Tunisia is mostly desert" -09037838 15 n 02 Tunis 0 capital_of_Tunisia 0 003 @i 08691669 n 0000 @i 08633957 n 0000 #p 09037394 n 0000 | the capital and principal port of Tunisia -09037991 15 n 01 Ariana 0 002 @i 08524735 n 0000 #p 09037394 n 0000 | city in Tunisia -09038079 15 n 01 Ehadhamen 0 002 @i 08524735 n 0000 #p 09037394 n 0000 | city in Tunisia -09038170 15 n 01 Gafsa 0 002 @i 08524735 n 0000 #p 09037394 n 0000 | a city in west central Tunisia -09038272 15 n 02 Sfax 0 Safaqis 0 002 @i 08524735 n 0000 #p 09037394 n 0000 | the second largest city in Tunisia; located in eastern Tunisia near a phosphate region -09038439 15 n 03 Sousse 0 Susa 0 Susah 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09037394 n 0000 | a port city in eastern Tunisia on the Mediterranean -09038597 15 n 02 Ottoman_Empire 0 Turkish_Empire 0 004 @i 08557482 n 0000 #p 09275473 n 0000 #p 09207288 n 0000 #p 09189411 n 0000 | a Turkish sultanate of southwestern Asia and northeastern Africa and southeastern Europe; created by the Ottoman Turks in the 13th century and lasted until the end of World War I; although initially small it expanded until it superseded the Byzantine Empire -09038990 15 n 01 Kurdistan 0 008 @i 08574314 n 0000 #p 09039411 n 0000 #p 08913434 n 0000 #p 08910668 n 0000 #p 09033333 n 0000 -r 08028148 n 0000 %p 09039260 n 0000 %p 09719430 n 0000 | an extensive geographical region in the Middle East to the south of the Caucasus -09039260 15 n 01 Iraqi_Kurdistan 0 003 @i 08574314 n 0000 #p 09038990 n 0000 #p 08913434 n 0000 | the part of Kurdistan that is in northwestern Iraq -09039411 15 n 02 Turkey 0 Republic_of_Turkey 0 035 @i 08544813 n 0000 #p 08791167 n 0000 #p 08701942 n 0000 #p 08713772 n 0000 #m 08174398 n 0000 -r 01277288 n 0000 -r 06340047 n 0000 -r 07803408 n 0000 -r 08025497 n 0000 -r 08027920 n 0000 -r 08029908 n 0000 -r 08042856 n 0000 -r 08046346 n 0000 %p 08916111 n 0000 %p 09038990 n 0000 %p 09040299 n 0000 %p 09040475 n 0000 %p 09040601 n 0000 %p 09040839 n 0000 %p 09040998 n 0000 %p 09041371 n 0000 %p 09041582 n 0000 %p 09041785 n 0000 %p 09042213 n 0000 %p 09042322 n 0000 %p 09042451 n 0000 %p 09042675 n 0000 %p 09188894 n 0000 %p 09203032 n 0000 %p 09203217 n 0000 %p 09227219 n 0000 %p 09274739 n 0000 %p 09431133 n 0000 %p 09458791 n 0000 %m 09734885 n 0000 | a Eurasian republic in Asia Minor and the Balkans; on the collapse of the Ottoman Empire in 1918, the Young Turks, led by Kemal Ataturk, established a republic in 1923 -09040299 15 n 01 Abydos 0 002 @i 08665504 n 0000 #p 09039411 n 0000 | an ancient Greek colony on the Asiatic side of the Dardanelles; scene of the legend of Hero and Leander -09040475 15 n 02 Adana 0 Seyhan 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | a city in southern Turkey on the Seyhan River -09040601 15 n 04 Ankara 0 Turkish_capital 0 capital_of_Turkey 0 Angora 0 002 @i 08691669 n 0000 #p 09039411 n 0000 | the capital of Turkey; located in west-central Turkey; it was formerly known as Angora and is the home of Angora goats -09040839 15 n 02 Antalya 0 Adalia 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09039411 n 0000 | a port city in southwestern Turkey on the Gulf of Antalya -09040998 15 n 03 Antioch 0 Antakya 0 Antakiya 0 002 @i 08665504 n 0000 #p 09039411 n 0000 | a town in southern Turkey; ancient commercial center and capital of Syria; an early center of Christianity -09041199 15 n 02 Chalcedon 0 Kadikoy 0 002 @i 08665504 n 0000 #p 09041785 n 0000 | a former town on the Bosporus (now part of Istanbul); site of the Council of Chalcedon -09041371 15 n 03 Dardanelles 0 Canakkale_Bogazi 0 Hellespont 0 002 @i 09446115 n 0000 #p 09039411 n 0000 | the strait between the Aegean and the Sea of Marmara that separates European Turkey from Asian Turkey -09041582 15 n 01 Halicarnassus 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | an ancient Greek city on the southwestern coast of Asia Minor in what is now Turkey; site of the mausoleum at Halicarnassus -09041785 15 n 04 Istanbul 0 Stambul 0 Stamboul 0 Constantinople 0 005 @i 08524735 n 0000 #p 09039411 n 0000 %p 02876193 n 0000 %p 03475118 n 0000 %p 09041199 n 0000 | the largest city and former capital of Turkey; rebuilt on the site of ancient Byzantium by Constantine I in the fourth century; renamed Constantinople by Constantine who made it the capital of the Byzantine Empire; now the seat of the Eastern Orthodox Church -09042213 15 n 02 Bursa 0 Brusa 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | a city in northwestern Turkey -09042322 15 n 02 Izmir 0 Smyrna 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09039411 n 0000 | a port city in western Turkey -09042451 15 n 01 Pergamum 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | an ancient Greek city located in the western part of what is now modern Turkey; the technique of preparing sheepskins as parchment was developed here -09042675 15 n 01 Sardis 0 002 @i 08524735 n 0000 #p 09039411 n 0000 | an ancient Greek city located in the western part of what is now modern Turkey; as the capital of Lydia it was the cultural center of Asia Minor; destroyed by Tamerlane in 1402 -09042924 15 n 01 Ionia 0 002 @i 08574314 n 0000 #p 08701942 n 0000 | region of western Asia Minor colonized by ancient Greeks -09043052 15 n 02 Uganda 0 Republic_of_Uganda 0 011 @i 08698379 n 0000 #p 09189411 n 0000 #p 08699426 n 0000 -r 08032955 n 0000 %p 09043411 n 0000 %p 09043556 n 0000 %p 09043802 n 0000 %p 09044094 n 0000 %p 09330913 n 0000 %p 09371360 n 0000 %m 09736945 n 0000 | a landlocked republic in eastern Africa; achieved independence from the United Kingdom in 1962 -09043411 15 n 01 Buganda 0 003 @i 08654360 n 0000 #p 09043052 n 0000 %p 09043926 n 0000 | a state of Uganda and site of a former Bantu kingdom -09043556 15 n 01 Entebbe 0 002 @i 08665504 n 0000 #p 09043052 n 0000 | a town in southern Uganda on Lake Victoria; site of an international airport (where in 1976 Israeli commandos rescued hostages held aboard a plane by Palestinian hijackers) -09043802 15 n 01 Jinja 0 002 @i 08524735 n 0000 #p 09043052 n 0000 | a city in Uganda on the north shore of Lake Victoria -09043926 15 n 02 Kampala 0 capital_of_Uganda 0 002 @i 08691669 n 0000 #p 09043411 n 0000 | the capital and largest city of Uganda on the north shore of Lake Victoria -09044094 15 n 01 Gulu 0 002 @i 08524735 n 0000 #p 09043052 n 0000 | a city in northern Uganda -09044190 15 n 01 United_Arab_Emirates 0 008 @i 08700255 n 0000 #p 08847694 n 0000 #p 08910394 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 #m 08177030 n 0000 %p 09044536 n 0000 %p 09044714 n 0000 | a federation of seven Arab emirates on the eastern Arabian peninsula; achieved independence from the United Kingdom in 1971; rich in oil reserves -09044536 15 n 02 Abu_Dhabi 0 United_Arab_Emirates's_capital 0 002 @i 08691669 n 0000 #p 09044190 n 0000 | a sheikhdom of eastern Arabia and capital of the United Arab Emirates -09044714 15 n 01 Dubai 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09044190 n 0000 | port city in the United Arab Emirates on the Persian Gulf -09044862 15 n 08 United_States 0 United_States_of_America 0 America 0 the_States 0 US 0 U.S. 0 USA 0 U.S.A. 0 155 @i 08702805 n 0000 #p 09372504 n 0000 #m 08174398 n 0000 #m 08176077 n 0000 + 02927512 a 0301 -r 01012247 a 0000 -r 02199342 a 0000 -r 02199699 a 0000 -r 02888000 a 0000 -r 00184802 n 0000 -r 00542841 n 0000 -r 01084180 n 0000 -r 01126335 n 0000 -r 01178415 n 0000 -r 01258719 n 0000 -r 01301630 n 0000 -r 02102605 n 0000 -r 03720665 n 0000 -r 04234969 n 0000 -r 04458409 n 0000 -r 05598707 n 0000 -r 06195698 n 0000 -r 06245084 n 0000 -r 06425960 n 0000 -r 06512324 n 0000 -r 06727758 n 0000 -r 06907728 n 0000 -r 07240077 n 0000 -r 07623933 n 0000 -r 07634751 n 0000 -r 07647496 n 0000 -r 07722485 n 0103 -r 07927931 n 0000 -r 07964809 n 0000 -r 08122009 n 0000 -r 08122141 n 0000 -r 08168531 n 0000 -r 08303692 n 0000 -r 08338847 n 0000 -r 08340153 n 0000 -r 08546870 n 0000 %p 08563180 n 0000 %p 08564307 n 0000 %p 08564739 n 0000 %p 08655464 n 0000 -r 08676349 n 0000 %p 08682819 n 0000 -r 08839092 n 0000 %p 09048460 n 0000 %p 09048880 n 0000 %p 09049303 n 0000 %p 09050730 n 0000 %p 09051726 n 0000 ~i 09052314 n 0000 -r 09052314 n 0000 %p 09052652 n 0000 %p 09053019 n 0000 %p 09053185 n 0000 %p 09055015 n 0000 %p 09057311 n 0000 %p 09059274 n 0000 %p 09060768 n 0000 %p 09067277 n 0000 %p 09068444 n 0000 %p 09069862 n 0000 %p 09070487 n 0000 %p 09071690 n 0000 %p 09075842 n 0000 %p 09078231 n 0000 %p 09081213 n 0000 %p 09082540 n 0000 %p 09084750 n 0000 %p 09086173 n 0000 %p 09087599 n 0000 %p 09089139 n 0000 %p 09090559 n 0000 %p 09090825 n 0000 %p 09092497 n 0000 %p 09093608 n 0000 %p 09095023 n 0000 %p 09099526 n 0000 %p 09102016 n 0000 %p 09103943 n 0000 %p 09105821 n 0000 %p 09108164 n 0000 %p 09109444 n 0000 %p 09110422 n 0000 %p 09111366 n 0000 %p 09112282 n 0000 %p 09114696 n 0000 %p 09117351 n 0000 %p 09126305 n 0000 %p 09129442 n 0000 %p 09130076 n 0000 %p 09131654 n 0000 %p 09133010 n 0000 %p 09134386 n 0000 %p 09137032 n 0000 %p 09137869 n 0000 %p 09138935 n 0000 %p 09140148 n 0000 %p 09141526 n 0000 %p 09147046 n 0000 %p 09147964 n 0000 %p 09148970 n 0000 %p 09152944 n 0000 %p 09155306 n 0000 %p 09157163 n 0000 %p 09159003 n 0000 %p 09252273 n 0000 %p 09292751 n 0000 %p 09356080 n 0000 %p 09356320 n 0000 %p 09370168 n 0000 %p 09370552 n 0000 %p 09371816 n 0000 %p 09377315 n 0000 %p 09410724 n 0000 %p 09420030 n 0000 %p 09464335 n 0000 %p 09482715 n 0000 %p 09482916 n 0000 -r 09601571 n 0000 -r 09639719 n 0000 %m 09738708 n 0000 -r 10008388 n 0000 -r 10311661 n 0000 -r 10311823 n 0000 -r 10375690 n 0000 -r 10644598 n 0000 -r 10802283 n 0000 -r 10998305 n 0000 -r 11846582 n 0000 -r 11995396 n 0000 -r 12499439 n 0000 -r 12847749 n 0000 -r 13206178 n 0000 -r 13319512 n 0000 -r 13363970 n 0101 -r 13395897 n 0000 -r 13649791 n 0000 -r 13751829 n 0000 -r 13752443 n 0000 -r 13752911 n 0000 -r 13753274 n 0000 -r 13753430 n 0000 -r 13753585 n 0000 -r 13753740 n 0000 -r 13850019 n 0000 -r 13881381 n 0000 -r 13881512 n 0000 -r 15186871 n 0000 -r 15187077 n 0000 -r 15187451 n 0000 -r 15187619 n 0000 | North American republic containing 50 states - 48 conterminous states in North America plus Alaska in northwest North America and the Hawaiian Islands in the Pacific Ocean; achieved independence in 1776 -09048127 15 n 01 East_Coast 0 002 @i 08574314 n 0000 #p 08563180 n 0000 | the eastern seaboard of the United States (especially the strip between Boston and Washington D.C.) -09048303 15 n 01 West_Coast 0 002 @i 08574314 n 0000 #p 08682819 n 0000 | the western seaboard of the United States from Washington to southern California -09048460 15 n 01 Colony 0 016 @ 08574314 n 0000 #p 09044862 n 0000 + 10583387 n 0102 ~i 09068805 n 0000 ~i 09070120 n 0000 ~i 09076421 n 0000 ~i 09093980 n 0000 ~i 09095606 n 0000 ~i 09111636 n 0000 ~i 09112742 n 0000 ~i 09118181 n 0000 ~i 09126895 n 0000 ~i 09134882 n 0000 ~i 09137334 n 0000 ~i 09138239 n 0000 ~i 09149934 n 0000 | one of the 13 British colonies that formed the original states of the United States -09048880 15 n 01 New_England 0 013 @i 08574314 n 0000 #p 09044862 n 0000 -r 07680168 n 0000 -r 07689003 n 0000 -r 07703599 n 0000 %p 08565006 n 0000 %p 09068444 n 0000 %p 09092497 n 0000 %p 09095023 n 0000 %p 09111366 n 0000 %p 09137032 n 0000 %p 09147964 n 0000 %m 10355942 n 0000 | a region of northeastern United States comprising Maine and New Hampshire and Vermont and Massachusetts and Rhode Island and Connecticut -09049303 15 n 01 Mid-Atlantic_states 0 007 @i 08574314 n 0000 #p 09044862 n 0000 %p 09069862 n 0000 %p 09093608 n 0000 %p 09112282 n 0000 %p 09117351 n 0000 %p 09134386 n 0000 | a region of the eastern United States comprising New York and New Jersey and Pennsylvania and Delaware and Maryland -09049599 15 n 01 Gulf_States 0 007 @i 08574314 n 0000 #p 09050730 n 0000 %p 09053185 n 0000 %p 09071690 n 0000 %p 09090825 n 0000 %p 09103943 n 0000 %p 09141526 n 0000 | a region of the United States comprising states bordering the Gulf of Mexico; Alabama and Florida and Louisiana and Mississippi and Texas -09049909 15 n 01 slave_state 0 003 @ 08655464 n 0000 #p 09050244 n 0000 ! 09050089 n 0101 | any of the southern states in which slavery was legal prior to the American Civil War -09050089 15 n 01 free_state 0 003 @ 08655464 n 0000 #p 09052314 n 0000 ! 09049909 n 0101 | any state prohibiting slavery prior to the American Civil War -09050244 15 n 06 Confederacy 0 Confederate_States 0 Confederate_States_of_America 0 South 0 Dixie 0 Dixieland 0 016 @i 08574314 n 0000 = 01602330 a 0000 = 01606648 a 0000 %p 09049909 n 0000 %m 09053185 n 0000 %m 09059274 n 0000 %m 09071690 n 0000 %m 09075842 n 0000 %m 09090825 n 0000 %m 09103943 n 0000 %m 09105821 n 0000 %m 09126305 n 0000 %m 09137869 n 0000 %m 09140148 n 0000 %m 09141526 n 0000 %m 09148970 n 0000 | the southern states that seceded from the United States in 1861 -09050730 15 n 01 South 1 021 @i 08574314 n 0000 #p 09044862 n 0000 = 01606648 a 0000 -r 07688412 n 0000 -r 08029421 n 0000 %p 09049599 n 0000 %p 09051235 n 0000 ~i 09051609 n 0000 %p 09051898 n 0000 %p 09052100 n 0000 %p 09052835 n 0000 ~ 09053185 n 0000 %p 09075842 n 0000 %p 09090825 n 0000 %p 09093608 n 0000 %p 09103943 n 0000 %p 09126305 n 0000 %p 09137869 n 0000 %p 09140148 n 0000 %p 09148970 n 0000 %m 10628222 n 0000 | the region of the United States lying to the south of the Mason-Dixon line -09051235 15 n 01 Deep_South 0 007 @i 08574314 n 0000 #p 09050730 n 0000 %p 09053185 n 0000 %p 09075842 n 0000 %p 09090825 n 0000 %p 09103943 n 0000 %p 09137869 n 0000 | the southeastern region of the United States: South Carolina and Georgia and Alabama and Mississippi and Louisiana; prior to the American Civil War all these states produced cotton and permitted slavery -09051609 15 n 01 Old_South 0 001 @i 09050730 n 0000 | the South of the United States before the American Civil War -09051726 15 n 01 Sunbelt 0 002 @i 08574314 n 0000 #p 09044862 n 0000 | states in the south and southwest that have a warm climate and tend to be politically conservative -09051898 15 n 02 Tidewater 0 Tidewater_region 0 002 @i 08574314 n 0000 #p 09050730 n 0000 | the coastal plain of the South: eastern parts of Virginia and North Carolina and South Carolina and Georgia -09052100 15 n 01 Piedmont 1 002 @i 08574314 n 0000 #p 09050730 n 0000 | the plateau between the coastal plain and the Appalachian Mountains: parts of Virginia and North and South Carolina and Georgia and Alabama -09052314 15 n 02 Union 0 North 1 004 @i 09044862 n 0000 ;r 09044862 n 0000 = 01605753 a 0000 %p 09050089 n 0000 | the United States (especially the northern states during the American Civil War); "he has visited every state in the Union"; "Lee hoped to detach Maryland from the Union"; "the North's superior resources turned the scale" -09052652 15 n 01 North 2 004 @i 08574314 n 0000 #p 09044862 n 0000 = 01605753 a 0000 %m 10802283 n 0000 | the region of the United States lying to the north of the Mason-Dixon line -09052835 15 n 02 Carolina 0 Carolinas 0 004 @i 08574314 n 0000 #p 09050730 n 0000 %p 09126305 n 0000 %p 09137869 n 0000 | the area of the states of North Carolina and South Carolina -09053019 15 n 01 Dakota 0 004 @i 08574314 n 0000 #p 09044862 n 0000 %p 09129442 n 0000 %p 09138935 n 0000 | the area of the states of North Dakota and South Dakota -09053185 15 n 04 Alabama 0 Heart_of_Dixie 0 Camellia_State 0 AL 0 022 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049599 n 0000 @ 09050730 n 0000 #m 09050244 n 0000 #p 09051235 n 0000 -r 01275697 n 0000 %p 09053801 n 0000 %p 09053947 n 0000 %p 09054110 n 0000 %p 09054233 n 0000 %p 09054350 n 0000 %p 09054480 n 0000 %p 09054616 n 0000 %p 09054797 n 0000 %p 09054915 n 0000 %p 09191875 n 0000 %p 09255921 n 0000 %p 09356639 n 0000 %p 09356781 n 0000 %p 09453887 n 0000 %p 09459557 n 0000 | a state in the southeastern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War -09053801 15 n 02 Montgomery 0 capital_of_Alabama 0 002 @i 08695539 n 0000 #p 09053185 n 0000 | the state capital of Alabama on the Mobile River -09053947 15 n 02 Birmingham 1 Pittsburgh_of_the_South 0 002 @i 08524735 n 0000 #p 09053185 n 0000 | the largest city in Alabama; located in northeastern Alabama -09054110 15 n 01 Decatur 0 002 @i 08665504 n 0000 #p 09053185 n 0000 | a town in northern Alabama on the Tennessee River -09054233 15 n 01 Gadsden 0 002 @i 08665504 n 0000 #p 09053185 n 0000 | an industrial town in north central Alabama -09054350 15 n 01 Huntsville 0 002 @i 08524735 n 0000 #p 09053185 n 0000 | a city in northern Alabama; center for space research -09054480 15 n 01 Mobile 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09053185 n 0000 | a port in southwestern Alabama on Mobile Bay -09054616 15 n 01 Selma 0 002 @i 08665504 n 0000 #p 09053185 n 0000 | a town in central Alabama on the Alabama river; in 1965 it was the center of a drive to register Black voters -09054797 15 n 01 Tuscaloosa 0 002 @i 08665504 n 0000 #p 09053185 n 0000 | a university town in west central Alabama -09054915 15 n 01 Tuskegee 0 002 @i 08665504 n 0000 #p 09053185 n 0000 | a town in eastern Alabama -09055015 15 n 03 Alaska 0 Last_Frontier 0 AK 0 031 @i 08655464 n 0000 #p 09044862 n 0000 + 02609503 a 0101 %p 02694776 n 0000 %p 03559841 n 0000 %p 08604283 n 0000 %p 08604721 n 0000 %p 08606370 n 0000 %p 08606502 n 0000 %p 08606869 n 0000 %p 08607066 n 0000 %p 08610141 n 0000 %p 08835675 n 0000 %p 09055786 n 0000 %p 09055906 n 0000 %p 09056055 n 0000 %p 09056278 n 0000 %p 09056476 n 0000 %p 09056677 n 0000 %p 09056837 n 0000 %p 09057021 n 0000 %p 09192122 n 0000 %p 09192280 n 0000 %p 09265274 n 0000 %p 09306642 n 0000 %p 09313241 n 0000 %p 09326844 n 0000 %p 09349425 n 0000 %p 09350922 n 0000 %p 09400337 n 0000 %p 09445088 n 0000 | a state in northwestern North America; the 49th state admitted to the union; "Alaska is the largest state in the United States" -09055786 15 n 02 Juneau 0 capital_of_Alaska 0 002 @i 08695539 n 0000 #p 09055015 n 0000 | the state capital of Alaska -09055906 15 n 01 Anchorage 1 002 @i 08524735 n 0000 #p 09055015 n 0000 | a city in south central Alaska; "Anchorage is the largest city in Alaska" -09056055 15 n 01 Nome 0 002 @i 08665504 n 0000 #p 09055015 n 0000 | a town in western Alaska on the southern coast of the Seward Peninsula; an important center of an Alaskan gold rush at the beginning of the 20th century -09056278 15 n 01 Sitka 0 002 @i 08665504 n 0000 #p 09055015 n 0000 | a town in southeastern Alaska that was the capital of Russian America and served as the capital of Alaska from 1867 until 1906 -09056476 15 n 01 Skagway 0 002 @i 08665504 n 0000 #p 09055015 n 0000 | a town in southeastern Alaska at the northern end of the Inside Passage; a gateway to the Klondike during the Alaskan gold rush -09056677 15 n 01 Valdez 0 002 @i 08633957 n 0000 #p 09055015 n 0000 | a port on Alaska's southern coast from which oil is shipped to markets around the world -09056837 15 n 01 Seward_Peninsula 0 002 @i 09388848 n 0000 #p 09055015 n 0000 | a peninsula in western Alaska that projects westward into the Bering Sea just below the Arctic Circle -09057021 15 n 01 Alexander_Archipelago 0 003 @i 09203827 n 0000 #p 09055015 n 0000 %p 09057170 n 0000 | a group of islands off southeastern Alaska -09057170 15 n 01 Admiralty_Island 0 002 @i 09316454 n 0000 #p 09057021 n 0000 | an Alaskan island in the Alexander Archipelago near Juneau -09057311 15 n 03 Arizona 0 Grand_Canyon_State 0 AZ 0 026 @i 08655464 n 0000 #p 09044862 n 0000 #p 08563627 n 0000 %p 03439491 n 0000 %p 03634189 n 0000 %p 03634469 n 0000 %p 08604891 n 0000 %p 08608314 n 0000 %p 09057930 n 0000 %p 09058071 n 0000 %p 09058219 n 0000 %p 09058376 n 0000 %p 09058635 n 0000 %p 09058735 n 0000 %p 09058841 n 0000 %p 09059125 n 0000 %p 09168707 n 0000 %p 09169690 n 0000 %p 09170996 n 0000 %p 09171853 n 0000 %p 09172910 n 0000 %p 09238030 n 0000 %p 09249418 n 0000 %p 09250165 n 0000 %p 09288946 n 0000 %p 09291027 n 0000 | a state in southwestern United States; site of the Grand Canyon -09057930 15 n 01 Flagstaff 0 002 @i 08665504 n 0000 #p 09057311 n 0000 | a town in north central Arizona; site of an important observatory -09058071 15 n 01 Mesa 0 002 @i 08524735 n 0000 #p 09057311 n 0000 | a city in Arizona just to the east of Phoenix; originally a suburb of Phoenix -09058219 15 n 01 Nogales 0 003 @i 08665504 n 0000 @i 08638442 n 0000 #p 09057311 n 0000 | a town in Arizona on the Mexican border opposite Nogales, Mexico -09058376 15 n 02 Phoenix 0 capital_of_Arizona 0 002 @i 08695539 n 0000 #p 09057311 n 0000 | the state capital and largest city located in south central Arizona; situated in a former desert that has become a prosperous agricultural area thanks to irrigation -09058635 15 n 01 Prescott 0 002 @i 08665504 n 0000 #p 09057311 n 0000 | a town in central Arizona -09058735 15 n 01 Sun_City 0 002 @i 08554440 n 0000 #p 09057311 n 0000 | a residential suburb of Phoenix -09058841 15 n 01 Tucson 0 002 @i 08524735 n 0000 #p 09057311 n 0000 | a city in southeastern Arizona ringed by mountain ranges; long known as a winter and health resort but the population shift from industrial states to the Sunbelt resulted in rapid growth late in the 20th century -09059125 15 n 01 Yuma 0 002 @i 08665504 n 0000 #p 09057311 n 0000 | a town in southwestern Arizona on the Colorado River and the California border -09059274 15 n 03 Arkansas 0 Land_of_Opportunity 0 AR 0 016 @i 08655464 n 0000 #p 09044862 n 0000 #m 09050244 n 0000 %p 08606012 n 0000 %p 09059741 n 0000 %p 09059876 n 0000 %p 09060024 n 0000 %p 09060176 n 0000 %p 09060280 n 0000 %p 09060480 n 0000 %p 09060615 n 0000 %p 09206375 n 0000 %p 09380817 n 0000 %p 09382362 n 0000 %p 09419281 n 0000 %p 09478355 n 0000 | a state in south central United States; one of the Confederate states during the American Civil War -09059741 15 n 01 Fayetteville 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a university town in northwestern Arkansas in the Ozarks -09059876 15 n 01 Fort_Smith 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a town in western Arkansas on the Arkansas River at the Oklahoma border -09060024 15 n 01 Hot_Springs 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a town in west central Arkansas; a health resort noted for thermal springs -09060176 15 n 01 Jonesboro 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a town in northeast Arkansas -09060280 15 n 02 Little_Rock 0 capital_of_Arkansas 0 002 @i 08695539 n 0000 #p 09059274 n 0000 | the state capital and largest city of Arkansas in the central part of Arkansas on the Arkansas River -09060480 15 n 01 Pine_Bluff 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a town in southeast central Arkansas on the Arkansas River -09060615 15 n 01 Texarkana 0 002 @i 08665504 n 0000 #p 09059274 n 0000 | a town in southwest Arkansas on the Texas border adjacent to Texarkana, Texas -09060768 15 n 04 California 0 Golden_State 0 CA 0 Calif. 0 057 @i 08655464 n 0000 #p 09044862 n 0000 #p 08563627 n 0000 + 03052403 a 0101 -r 08488081 n 0000 %p 08603924 n 0000 %p 08606688 n 0000 %p 08607231 n 0000 %p 08608641 n 0000 %p 08608986 n 0000 %p 08610646 n 0000 %p 09062015 n 0000 %p 09062320 n 0000 %p 09062478 n 0000 %p 09062585 n 0000 %p 09062791 n 0000 %p 09062961 n 0000 %p 09063125 n 0000 %p 09063259 n 0000 %p 09063477 n 0000 %p 09063673 n 0000 %p 09064080 n 0000 %p 09064264 n 0000 %p 09064468 n 0000 %p 09064594 n 0000 %p 09064729 n 0000 %p 09064861 n 0000 %p 09064966 n 0000 %p 09065191 n 0000 %p 09065328 n 0000 %p 09065557 n 0000 %p 09066017 n 0000 %p 09066249 n 0000 %p 09066375 n 0000 %p 09066534 n 0000 %p 09066665 n 0000 %p 09066799 n 0000 %p 09067138 n 0000 %p 09166756 n 0000 %p 09166902 n 0000 %p 09168915 n 0000 %p 09169303 n 0000 %p 09170996 n 0000 %p 09243209 n 0000 %p 09268927 n 0000 %p 09289913 n 0000 %p 09326467 n 0000 %p 09358096 n 0000 %p 09418059 n 0000 %p 09418629 n 0000 %p 09420911 n 0000 %p 09421604 n 0000 %p 09422294 n 0000 %p 09422751 n 0000 %p 09422964 n 0000 %p 09431569 n 0000 %p 09434845 n 0000 | a state in the western United States on the Pacific; the 3rd largest state; known for earthquakes -09062015 15 n 01 Anaheim 0 003 @i 08524735 n 0000 #p 09060768 n 0000 %p 09062184 n 0000 | a city in southern California (southeast of Los Angeles); site of Disneyland -09062184 15 n 01 Disneyland 0 002 @i 08494231 n 0000 #p 09062015 n 0000 | an amusement park in Anaheim created in 1955 by Walt Disney -09062320 15 n 01 Bakersfield 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in south central California at the southern end of the San Joaquin Valley -09062478 15 n 01 Barstow 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in southeastern California -09062585 15 n 01 Berkeley 0 003 @i 08524735 n 0000 #p 09060768 n 0000 %p 04511832 n 0000 | a city in California on the eastern shore of San Francisco Bay; site of the University of California at Berkeley -09062791 15 n 01 Beverly_Hills 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southwestern California surrounded by Los Angeles; home of many Hollywood actors -09062961 15 n 01 Chula_Vista 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | an industrial city in southern California (south of San Diego) near the Mexican border -09063125 15 n 01 Eureka 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in northwest California on an arm of the Pacific Ocean -09063259 15 n 01 Fresno 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in south central California in the San Joaquin Valley; center of an important agricultural area and gateway to the Sierra Nevada Mountains -09063477 15 n 01 Long_Beach 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southern California located on 8.5 miles of Pacific beachfront; was a resort until oil was discovered in 1921 -09063673 15 n 02 Los_Angeles 0 City_of_the_Angels 0 004 @i 08524735 n 0000 @i 08638442 n 0000 #p 09060768 n 0000 %p 09066948 n 0000 | a city in southern California; motion picture capital of the world; most populous city of California and second largest in the United States -09063950 15 n 01 Hollywood 0 001 @i 08537837 n 0000 | a district of Los Angeles long associated with the American film industry -09064080 15 n 01 Monterey 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in western California to the south of San Francisco on a peninsula at the southern end of Monterey Bay -09064264 15 n 01 Oakland 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09060768 n 0000 | a city in western California on San Francisco Bay opposite San Francisco; primarily and industrial urban center -09064468 15 n 01 Palo_Alto 0 003 @i 08665504 n 0000 #p 09060768 n 0000 %p 04302740 n 0000 | a university town in California -09064594 15 n 01 Pasadena 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southwestern California to the east of Los Angeles -09064729 15 n 01 Redding 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in north central California on the Sacramento River -09064861 15 n 01 Riverside 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southern California -09064966 15 n 02 Sacramento 0 capital_of_California 0 002 @i 08695539 n 0000 #p 09060768 n 0000 | a city in north central California 75 miles to the northeast of San Francisco on the Sacramento River; capital of California -09065191 15 n 01 San_Bernardino 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southern California to the east of Los Angeles -09065328 15 n 01 San_Diego 0 004 @i 08524735 n 0000 @i 08638442 n 0000 #p 09060768 n 0000 %p 09422048 n 0000 | a picturesque city of southern California on San Diego Bay near the Mexican border; site of an important naval base -09065557 15 n 01 San_Francisco 0 006 @i 08524735 n 0000 @i 08638442 n 0000 #p 09060768 n 0000 %p 03444601 n 0000 %p 09065899 n 0000 %p 09422486 n 0000 | a port in western California near the Golden Gate that is one of the major industrial and transportation centers; it has one of the world's finest harbors; site of the Golden Gate Bridge -09065899 15 n 01 Nob_Hill 0 002 @i 08537837 n 0000 #p 09065557 n 0000 | a fashionable neighborhood in San Francisco -09066017 15 n 01 San_Jose 1 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in western California located at the southern end of San Francisco Bay to the south of San Francisco; a center for computer and electronics industries -09066249 15 n 01 San_Mateo 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in California to the south of San Francisco -09066375 15 n 01 San_Pablo 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in western California to the north of Oakland on an arm of San Francisco Bay -09066534 15 n 01 Santa_Ana 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city in southern California to the east of Long Beach -09066665 15 n 01 Santa_Barbara 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in southwestern California on the Pacific Ocean -09066799 15 n 01 Santa_Clara 0 002 @i 08524735 n 0000 #p 09060768 n 0000 | a city of west central California; residential area with light industry -09066948 15 n 02 Santa_Catalina 0 Catalina_Island 0 003 @i 09316454 n 0000 #p 09063673 n 0000 #p 09382990 n 0000 | an island resort in the Pacific off the southwestern coast of California -09067138 15 n 01 Santa_Cruz 0 002 @i 08665504 n 0000 #p 09060768 n 0000 | a town in western California on Monterey Bay; a tourist center -09067277 15 n 03 Colorado 0 Centennial_State 0 CO 0 017 @i 08655464 n 0000 #p 09044862 n 0000 %p 08607575 n 0000 %p 08608813 n 0000 %p 09067721 n 0000 %p 09067878 n 0000 %p 09068107 n 0000 %p 09068320 n 0000 %p 09206375 n 0000 %p 09249418 n 0000 %p 09250165 n 0000 %p 09373716 n 0000 %p 09391996 n 0000 %p 09407632 n 0000 %p 09423379 n 0000 %p 09431902 n 0000 %p 09441725 n 0000 | a state in west central United States in the Rocky Mountains -09067721 15 n 01 Boulder 0 002 @i 08665504 n 0000 #p 09067277 n 0000 | a town in north central Colorado; Rocky Mountains resort center and university town -09067878 15 n 01 Colorado_Springs 0 002 @i 08524735 n 0000 #p 09067277 n 0000 | a city in east central Colorado on the eastern edge of the Rocky Mountains; popular tourist center and site of the United States Air Force Academy -09068107 15 n 03 Denver 0 Mile-High_City 0 capital_of_Colorado 0 002 @i 08695539 n 0000 #p 09067277 n 0000 | the state capital and largest city of Colorado; located in central Colorado on the South Platte river -09068320 15 n 01 Pueblo 1 002 @i 08524735 n 0000 #p 09067277 n 0000 | a city in Colorado to the south of Colorado Springs -09068444 15 n 04 Connecticut 0 Nutmeg_State 0 Constitution_State 0 CT 0 012 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 %p 09068921 n 0000 %p 09069072 n 0000 %p 09069190 n 0000 %p 09069415 n 0000 %p 09069569 n 0000 %p 09069752 n 0000 %p 09306031 n 0000 %p 09343422 n 0000 %p 09453288 n 0000 | a New England state; one of the original 13 colonies -09068805 15 n 01 Connecticut 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09068921 15 n 01 Bridgeport 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09068444 n 0000 | a port in southwestern Connecticut on Long Island Sound -09069072 15 n 01 Farmington 1 002 @i 08665504 n 0000 #p 09068444 n 0000 | a residential town in central Connecticut -09069190 15 n 02 Hartford 0 capital_of_Connecticut 0 002 @i 08695539 n 0000 #p 09068444 n 0000 | the state capital of Connecticut; located in central Connecticut on the Connecticut river; a center of the insurance business -09069415 15 n 01 New_Haven 0 003 @i 08524735 n 0000 #p 09068444 n 0000 %p 04610368 n 0000 | a city in southwestern Connecticut; site of Yale University -09069569 15 n 01 New_London 0 002 @i 08665504 n 0000 #p 09068444 n 0000 | a town in southeastern Connecticut near Long Island Sound; an important whaling center in the 19th century -09069752 15 n 01 Waterbury 0 002 @i 08524735 n 0000 #p 09068444 n 0000 | a city in west central Connecticut -09069862 15 n 04 Delaware 0 Diamond_State 0 First_State 0 DE 0 007 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049303 n 0000 %p 09070233 n 0000 %p 09070363 n 0000 %p 09264116 n 0000 %p 09264425 n 0000 | a Mid-Atlantic state; one of the original 13 colonies -09070120 15 n 01 Delaware 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09070233 15 n 02 Dover 0 capital_of_Delaware 0 002 @i 08695539 n 0000 #p 09069862 n 0000 | the capital of the state of Delaware -09070363 15 n 01 Wilmington 0 003 @i 08524735 n 0000 #p 09069862 n 0000 %p 03172602 n 0000 | the largest city in Delaware -09070487 15 n 03 District_of_Columbia 0 D.C. 0 DC 0 003 @i 08553280 n 0000 #p 09044862 n 0000 %p 09070793 n 0000 | the district occupied entirely by the city of Washington; chosen by George Washington as the site of the capital of the United States and created out of land ceded by Maryland and Virginia -09070793 15 n 04 Washington 1 Washington_D.C. 0 American_capital 0 capital_of_the_United_States 0 010 @i 08691669 n 0000 #p 09070487 n 0000 + 03037236 a 0101 %p 02956500 n 0000 %p 03670456 n 0000 %p 04555101 n 0000 %p 04580777 n 0000 ~i 09071246 n 0000 %p 09071349 n 0000 %p 09071571 n 0000 | the capital of the United States in the District of Columbia and a tourist mecca; George Washington commissioned Charles L'Enfant to lay out the city in 1791 -09071246 15 n 01 Potomac 0 001 @i 09070793 n 0000 | term sometimes used to refer to Washington, D.C. -09071349 15 n 02 Capitol_Hill 0 the_Hill 0 002 @i 09303008 n 0000 #p 09070793 n 0000 | a hill in Washington, D.C., where the Capitol Building sits and Congress meets; "they are debating the budget today on Capitol Hill" -09071571 15 n 01 Georgetown 1 002 @i 08553535 n 0000 #p 09070793 n 0000 | a section of northwestern Washington, D.C. -09071690 15 n 04 Florida 0 Sunshine_State 0 Everglade_State 0 FL 0 037 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049599 n 0000 #m 09050244 n 0000 %p 02940878 n 0000 %p 08602997 n 0000 %p 08604487 n 0000 %p 09072611 n 0000 %p 09072810 n 0000 %p 09073034 n 0000 %p 09073138 n 0000 %p 09073258 n 0000 %p 09073442 n 0000 %p 09073584 n 0000 %p 09073697 n 0000 %p 09073938 n 0000 %p 09074140 n 0000 %p 09074285 n 0000 %p 09074431 n 0000 %p 09074596 n 0000 %p 09074707 n 0000 %p 09074834 n 0000 %p 09075007 n 0000 %p 09075170 n 0000 %p 09075329 n 0000 %p 09075496 n 0000 %p 09200649 n 0000 %p 09221723 n 0000 %p 09231361 n 0000 %p 09234104 n 0000 %p 09277279 n 0000 %p 09325395 n 0000 %p 09326139 n 0000 %p 09377861 n 0000 %p 09378014 n 0000 %p 09419783 n 0000 %p 09454265 n 0000 | a state in southeastern United States between the Atlantic and the Gulf of Mexico; one of the Confederate states during the American Civil War -09072611 15 n 01 Daytona_Beach 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a resort town in northeast Florida on the Atlantic coast; hard white beaches have been used for automobile speed trials -09072810 15 n 01 Fort_Lauderdale 0 002 @i 08524735 n 0000 #p 09071690 n 0000 | a city in southeast Florida on the Atlantic coast to the north of Miami; a favorite place for college students to go on their spring vacations -09073034 15 n 01 Fort_Myers 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a town in southwest Florida -09073138 15 n 01 Gainesville 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a university town in north central Florida -09073258 15 n 01 Jacksonville 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09071690 n 0000 | Florida's largest city; a port and important commercial center in northeastern Florida -09073442 15 n 01 Key_West 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a town on the westernmost of the Florida keys in the Gulf of Mexico -09073584 15 n 01 Melbourne 1 002 @i 08665504 n 0000 #p 09071690 n 0000 | a resort town in east central Florida -09073697 15 n 01 Miami 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09071690 n 0000 | a city and resort in southeastern Florida on Biscayne Bay; the best known city in Florida; a haven for retirees and a refuge for Cubans fleeing Castro -09073938 15 n 01 Miami_Beach 0 002 @i 08524735 n 0000 #p 09071690 n 0000 | a city in southeastern Florida on an island between Biscayne Bay and the Atlantic Ocean; known for fashionable resort hotels -09074140 15 n 01 Orlando 0 003 @i 08524735 n 0000 #p 09071690 n 0000 %p 09075688 n 0000 | a city in central Florida; site of Walt Disney World -09074285 15 n 01 Palm_Beach 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a resort town in southeast Florida on an island on the Atlantic coast -09074431 15 n 01 Panama_City 1 003 @i 08665504 n 0000 @i 08638442 n 0000 #p 09071690 n 0000 | a resort and fishing town on the Gulf of Mexico in northwest Florida -09074596 15 n 01 Pensacola 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a town in extreme northwest Florida -09074707 15 n 01 Sarasota 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a town in west central Florida on the Gulf of Mexico -09074834 15 n 02 St._Augustine 0 Saint_Augustine 0 002 @i 08524735 n 0000 #p 09071690 n 0000 | a resort city in northeastern Florida; the oldest city in the United States -09075007 15 n 02 St._Petersburg 1 Saint_Petersburg 1 002 @i 08524735 n 0000 #p 09071690 n 0000 | a city in western Florida on Tampa Bay; a popular winter resort -09075170 15 n 02 Tallahassee 0 capital_of_Florida 0 002 @i 08695539 n 0000 #p 09071690 n 0000 | capital of the state of Florida; located in northern Florida -09075329 15 n 01 Tampa 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09071690 n 0000 | a resort city in western Florida; located on Tampa Bay on the Gulf of Mexico -09075496 15 n 01 West_Palm_Beach 0 002 @i 08665504 n 0000 #p 09071690 n 0000 | a town in southeast Florida on the mainland opposite Palm Beach; founded as a commercial center for Palm Beach -09075688 15 n 01 Walt_Disney_World 0 002 @i 08494231 n 0000 #p 09074140 n 0000 | a large amusement park established in 1971 to the southwest of Orlando -09075842 15 n 04 Georgia 0 Empire_State_of_the_South 0 Peach_State 0 GA 0 021 @i 08655464 n 0000 #p 09044862 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 #p 09051235 n 0000 + 03067712 a 0101 -r 01282711 n 0000 %p 09076533 n 0000 %p 09076675 n 0000 %p 09076982 n 0000 %p 09077111 n 0000 %p 09077556 n 0000 %p 09077681 n 0000 %p 09077821 n 0000 %p 09077977 n 0000 %p 09078102 n 0000 %p 09242514 n 0000 %p 09255921 n 0000 %p 09281545 n 0000 %p 09378014 n 0000 %p 09453887 n 0000 | a state in southeastern United States; one of the Confederate states during the American Civil War -09076421 15 n 01 Georgia 2 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09076533 15 n 01 Albany 1 002 @i 08665504 n 0000 #p 09075842 n 0000 | a town in southwest Georgia; processing center for peanuts and pecans -09076675 15 n 02 Atlanta 0 capital_of_Georgia 1 004 @i 08695539 n 0000 #p 09075842 n 0000 -r 01269633 n 0000 %p 08124649 n 0000 | state capital and largest city of Georgia; chief commercial center of the southeastern United States; was plundered and burned by Sherman's army during the American Civil War -09076982 15 n 01 Athens 1 003 @i 08665504 n 0000 #p 09075842 n 0000 + 02972499 a 0101 | a university town in northeast Georgia -09077111 15 n 01 Augusta 1 002 @i 08524735 n 0000 #p 09075842 n 0000 | a city in eastern Georgia north-northwest of Savannah; noted for golf tournaments -09077266 15 n 01 Brunswick 2 002 @i 08665504 n 0000 @i 08638442 n 0000 | a town in southeast Georgia near the Atlantic coast; a port of entry -09077410 15 n 01 Columbus 1 002 @i 08524735 n 0000 @i 08638442 n 0000 | a city in western Georgia on the Chattahoochee River; industrial center -09077556 15 n 01 Macon 0 002 @i 08524735 n 0000 #p 09075842 n 0000 | a city in central Georgia to the southeast of Atlanta -09077681 15 n 01 Oxford 1 002 @i 08665504 n 0000 #p 09075842 n 0000 | a university town in northern Mississippi; home of William Faulkner -09077821 15 n 01 Savannah 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09075842 n 0000 | a port in eastern Georgia near the mouth of the Savannah river -09077977 15 n 01 Valdosta 0 002 @i 08665504 n 0000 #p 09075842 n 0000 | a town in southern Georgia near the Florida border -09078102 15 n 01 Vidalia 0 002 @i 08665504 n 0000 #p 09075842 n 0000 | a town in central Georgia; the origin of Vidalia onions -09078231 15 n 04 Hawaii 0 Hawai'i 0 Aloha_State 0 HI 0 015 @i 08655464 n 0000 #p 09044862 n 0000 #p 09079153 n 0000 + 02738760 a 0101 -r 02581957 n 0000 -r 03637480 n 0000 -r 04506289 n 0000 -r 06938493 n 0000 -r 07450055 n 0000 -r 07778938 n 0000 %p 08605720 n 0000 %p 08605863 n 0000 %p 09078654 n 0000 -r 10284871 n 0000 -r 12221522 n 0000 | a state in the United States in the central Pacific on the Hawaiian Islands -09078654 15 n 01 Hilo 0 003 @i 08665504 n 0000 #p 09078231 n 0000 #p 09079505 n 0000 | a town in Hawaii on the island of Hawaii -09078784 15 n 03 Honolulu 0 capital_of_Hawaii 0 Hawaiian_capital 0 003 @i 08695539 n 0000 @i 08633957 n 0000 #p 09080554 n 0000 | the capital and largest city of Hawaii; located on a large bay on the island of Oahu -09079001 15 n 01 Waikiki 0 002 @i 08640739 n 0000 #p 09080554 n 0000 | a well-known beach and resort area on Oahu Island to the southeast of Honolulu -09079153 15 n 02 Hawaiian_Islands 0 Sandwich_Islands 0 012 @i 09203827 n 0000 #p 08841667 n 0000 %p 09078231 n 0000 %p 09079505 n 0000 %p 09079747 n 0000 %p 09079875 n 0000 %p 09080006 n 0000 %p 09080146 n 0000 %p 09080273 n 0000 %p 09080415 n 0000 %p 09080554 n 0000 %p 09080989 n 0000 | a group of volcanic and coral islands in the central Pacific -09079505 15 n 02 Hawaii 1 Hawaii_Island 0 006 @i 09316454 n 0000 #p 09079153 n 0000 + 02738760 a 0101 %p 09078654 n 0000 %p 09176446 n 0000 %p 09176608 n 0000 | the largest and southernmost of the Hawaii islands; has several volcanic peaks -09079747 15 n 02 Kahoolawe 0 Kahoolawe_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | an island of south-central Hawaii -09079875 15 n 02 Kauai 0 Kauai_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | an island of Hawaii to the northwest of Oahu -09080006 15 n 02 Lanai 0 Lanai_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | an island of central Hawaii; a pineapple-growing area -09080146 15 n 02 Maui 0 Maui_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | the second largest of the Hawaiian Islands -09080273 15 n 02 Molokai 0 Molokai_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | an island of central Hawaii (between Maui and Oahu) -09080415 15 n 02 Nihau 0 Nihau_Island 0 002 @i 09316454 n 0000 #p 09079153 n 0000 | the most northwestern Hawaiian island (beyond Kauai) -09080554 15 n 02 Oahu 0 Oahu_Island 0 005 @i 09316454 n 0000 #p 09079153 n 0000 %p 09078784 n 0000 %p 09079001 n 0000 %p 09080782 n 0000 | an island of central Hawaii (between Molokai and Kauai); the chief island of the state -09080782 15 n 01 Pearl_Harbor 0 002 @i 08639058 n 0000 #p 09080554 n 0000 | a harbor on Oahu to the west of Honolulu; location of a United States naval base that was attacked by the Japanese on 7 Dec 1941 -09080989 15 n 01 Midway_Islands 0 003 @i 09210862 n 0000 #p 09079153 n 0000 -r 01287782 n 0000 | an atoll in the Hawaiian Islands some 1300 miles to the northwest of Honolulu; site of an important United States naval base -09081213 15 n 03 Idaho 0 Gem_State 0 ID 0 014 @i 08655464 n 0000 #p 09044862 n 0000 %p 08610305 n 0000 %p 09081560 n 0000 %p 09081688 n 0000 %p 09081830 n 0000 %p 09081955 n 0000 %p 09082058 n 0000 %p 09082158 n 0000 %p 09082273 n 0000 %p 09082395 n 0000 %p 09243100 n 0000 %p 09420423 n 0000 %p 09438554 n 0000 | a state in the Rocky Mountains -09081560 15 n 02 Boise 0 capital_of_Idaho 0 002 @i 08695539 n 0000 #p 09081213 n 0000 | the capital and largest city of Idaho -09081688 15 n 01 Coeur_d'Alene 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a town in the northern panhandle of Idaho; popular resort area -09081830 15 n 01 Idaho_Falls 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a town in southeastern Idaho on the Snake River -09081955 15 n 01 Lewiston 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a town in northwestern Idaho -09082058 15 n 01 Nampa 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a town in southwestern Idaho -09082158 15 n 01 Pocatello 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a university town in southeastern Idaho -09082273 15 n 01 Sun_Valley 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a winter sports resort in south central Idaho -09082395 15 n 01 Twin_Falls 0 002 @i 08665504 n 0000 #p 09081213 n 0000 | a town on the Snake River in south central Idaho near the Twin Falls -09082540 15 n 04 Illinois 0 Prairie_State 0 Land_of_Lincoln 0 IL 0 017 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 09082988 n 0000 %p 09083151 n 0000 %p 09083255 n 0000 %p 09083390 n 0000 %p 09083659 n 0000 %p 09083795 n 0000 %p 09083949 n 0000 %p 09084075 n 0000 %p 09084196 n 0000 %p 09084298 n 0000 %p 09084483 n 0000 %p 09084615 n 0000 %p 09310314 n 0000 %p 09341145 n 0000 | a midwestern state in north-central United States -09082988 15 n 01 Cairo 1 002 @i 08665504 n 0000 #p 09082540 n 0000 | a town at the southern tip of Illinois at the confluence of the Ohio and Mississippi Rivers -09083151 15 n 01 Carbondale 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a town in southern Illinois -09083255 15 n 01 Champaign 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a university town in east central Illinois adjoining Urbana -09083390 15 n 02 Chicago 0 Windy_City 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 09082540 n 0000 %p 04161102 n 0000 %p 04511971 n 0000 | largest city in Illinois; a bustling Great Lakes port that extends 26 miles along the southwestern shoreline of Lake Michigan -09083659 15 n 01 Decatur 1 002 @i 08524735 n 0000 #p 09082540 n 0000 | a city in central Illinois; Abraham Lincoln practiced law here -09083795 15 n 01 East_Saint_Louis 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a town in southwest Illinois on the Mississippi across from Saint Louis -09083949 15 n 01 Moline 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a town in northwest Illinois on the Mississippi River -09084075 15 n 01 Peoria 0 002 @i 08524735 n 0000 #p 09082540 n 0000 | a city in central Illinois on the Illinois River -09084196 15 n 01 Rockford 0 002 @i 08524735 n 0000 #p 09082540 n 0000 | a city in northern Illinois -09084298 15 n 01 Rock_Island 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a town in northwest Illinois on the Mississippi River; site of a Union prison during the American Civil War -09084483 15 n 02 Springfield 0 capital_of_Illinois 0 002 @i 08695539 n 0000 #p 09082540 n 0000 | capital of the state of Illinois -09084615 15 n 01 Urbana 0 002 @i 08665504 n 0000 #p 09082540 n 0000 | a university town in east central Illinois adjoining Champaign -09084750 15 n 03 Indiana 0 Hoosier_State 0 IN 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 #p 08543916 n 0000 %p 09085089 n 0000 %p 09085209 n 0000 %p 09085334 n 0000 %p 09085441 n 0000 %p 09085593 n 0000 %p 09085830 n 0000 %p 09085967 n 0000 %p 09086070 n 0000 %p 09473808 n 0000 | a state in midwestern United States -09085089 15 n 01 Bloomington 0 002 @i 08665504 n 0000 #p 09084750 n 0000 | a university town in south central Indiana -09085209 15 n 01 Evansville 0 002 @i 08524735 n 0000 #p 09084750 n 0000 | a city in southwestern Indiana on the Ohio River -09085334 15 n 01 Fort_Wayne 0 002 @i 08524735 n 0000 #p 09084750 n 0000 | a city in northeastern Indiana -09085441 15 n 01 Gary 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09084750 n 0000 | a city in northwest Indiana on Lake Michigan; steel production -09085593 15 n 02 Indianapolis 0 capital_of_Indiana 0 002 @i 08695539 n 0000 #p 09084750 n 0000 | the capital and largest city of Indiana; a major commercial center in the country's heartland; site of an annual 500-mile automobile race -09085830 15 n 01 Lafayette 1 002 @i 08665504 n 0000 #p 09084750 n 0000 | a university town in west central Indiana on the Wabash River -09085967 15 n 01 Muncie 0 002 @i 08665504 n 0000 #p 09084750 n 0000 | a town in east central Indiana -09086070 15 n 01 South_Bend 0 002 @i 08524735 n 0000 #p 09084750 n 0000 | a city in northern Indiana -09086173 15 n 03 Iowa 0 Hawkeye_State 0 IA 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 #p 08543916 n 0000 %p 09086635 n 0000 %p 09086793 n 0000 %p 09086894 n 0000 %p 09086995 n 0000 %p 09087126 n 0000 %p 09087247 n 0000 %p 09087352 n 0000 %p 09087450 n 0000 %p 09340935 n 0000 | a state in midwestern United States -09086509 15 n 01 Council_Bluffs 0 001 @i 08665504 n 0000 | a town in southwest Iowa on the Missouri River across from Omaha -09086635 15 n 01 Davenport 0 002 @i 08524735 n 0000 #p 09086173 n 0000 | a city in eastern Iowa on the Mississippi River across from Moline and Rock Island -09086793 15 n 01 Cedar_Rapids 0 002 @i 08524735 n 0000 #p 09086173 n 0000 | a city in eastern Iowa -09086894 15 n 01 Clinton 0 002 @i 08665504 n 0000 #p 09086173 n 0000 | a town in east central Iowa -09086995 15 n 02 Des_Moines 0 capital_of_Iowa 0 002 @i 08695539 n 0000 #p 09086173 n 0000 | the capital and largest city in Iowa -09087126 15 n 01 Dubuque 0 002 @i 08665504 n 0000 #p 09086173 n 0000 | a town in eastern Iowa on the Mississippi River -09087247 15 n 01 Mason_City 0 002 @i 08665504 n 0000 #p 09086173 n 0000 | a town in north central Iowa -09087352 15 n 01 Ottumwa 0 002 @i 08665504 n 0000 #p 09086173 n 0000 | a town in southeast Iowa -09087450 15 n 01 Sioux_City 0 002 @i 08524735 n 0000 #p 09086173 n 0000 | a city in northeastern Iowa where the Big Sioux River joins the Missouri -09087599 15 n 03 Kansas 0 Sunflower_State 0 KS 0 016 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 03020927 n 0000 %p 09087996 n 0000 %p 09088151 n 0000 %p 09088301 n 0000 %p 09088396 n 0000 %p 09088556 n 0000 %p 09088718 n 0000 %p 09088815 n 0000 %p 09088989 n 0000 %p 09206375 n 0000 %p 09323470 n 0000 %p 09368479 n 0000 %p 09407632 n 0000 | a state in midwestern United States -09087996 15 n 01 Dodge_City 0 002 @i 08665504 n 0000 #p 09087599 n 0000 | a town of southwestern Kansas on the Arkansas River; formerly a rowdy cow town -09088151 15 n 01 Abilene 1 002 @i 08665504 n 0000 #p 09087599 n 0000 | a town in central Kansas to the west of Topeka; home of Dwight D. Eisenhower -09088301 15 n 01 Hays 0 002 @i 08665504 n 0000 #p 09087599 n 0000 | a town in central Kansas -09088396 15 n 01 Kansas_City 1 002 @i 08524735 n 0000 #p 09087599 n 0000 | a city of northeast Kansas on the Missouri River adjacent to Kansas City, Missouri -09088556 15 n 01 Lawrence 0 002 @i 08665504 n 0000 #p 09087599 n 0000 | a town in northeastern Kansas on the Kansas River; scene of raids by John Brown in 1856 -09088718 15 n 01 Salina 0 002 @i 08665504 n 0000 #p 09087599 n 0000 | a town in central Kansas -09088815 15 n 02 Topeka 0 capital_of_Kansas 0 002 @i 08695539 n 0000 #p 09087599 n 0000 | the capital of the state of Kansas; located in eastern Kansas on the Kansas river -09088989 15 n 01 Wichita 0 002 @i 08524735 n 0000 #p 09087599 n 0000 | the largest city in Kansas; located in southern Kansas on the Arkansas River -09089139 15 n 03 Kentucky 0 Bluegrass_State 0 KY 0 011 @i 08655464 n 0000 #p 09044862 n 0000 %p 08607408 n 0000 %p 09089524 n 0000 %p 09089631 n 0000 %p 09089782 n 0000 %p 09089923 n 0000 %p 09090128 n 0000 %p 09090271 n 0000 %p 09261138 n 0000 %p 09455640 n 0000 | a state in east central United States; a border state during the American Civil War; famous for breeding race horses -09089524 15 n 01 Bowling_Green 1 002 @i 08665504 n 0000 #p 09089139 n 0000 | a town in southern Kentucky -09089631 15 n 02 Frankfort 1 capital_of_Kentucky 0 002 @i 08695539 n 0000 #p 09089139 n 0000 | the capital of Kentucky; located in northern Kentucky -09089782 15 n 01 Lexington 1 002 @i 08524735 n 0000 #p 09089139 n 0000 | a city in eastern Kentucky; noted for raising thoroughbred horses -09089923 15 n 01 Louisville 0 003 @i 08524735 n 0000 #p 09089139 n 0000 %p 03028907 n 0000 | the largest city in Kentucky; located in north central Kentucky on the Ohio river; site of the Kentucky Derby -09090128 15 n 01 Owensboro 0 002 @i 08665504 n 0000 #p 09089139 n 0000 | a town in northwestern Kentucky on the Ohio River; a tobacco market -09090271 15 n 01 Paducah 0 002 @i 08665504 n 0000 #p 09089139 n 0000 | a town in western Kentucky on the Ohio River -09090389 15 n 03 Bluegrass 0 Bluegrass_Country 0 Bluegrass_Region 0 001 @i 08574314 n 0000 | an area in central Kentucky noted for it bluegrass and thoroughbred horses -09090559 15 n 01 Louisiana_Purchase 0 002 @i 08552138 n 0000 #p 09044862 n 0000 | territory in the western United States purchased from France in 1803 for $15 million; extends from the Mississippi River to the Rocky Mountains and from the Gulf of Mexico to Canada -09090825 15 n 03 Louisiana 0 Pelican_State 0 LA 0 015 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049599 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 #p 09051235 n 0000 %p 09091285 n 0000 %p 09091398 n 0000 %p 09091538 n 0000 %p 09091668 n 0000 %p 09091774 n 0000 %p 09091909 n 0000 %p 09092352 n 0000 %p 09380817 n 0000 %p 09405949 n 0000 | a state in southern United States on the Gulf of Mexico; one of the Confederate states during the American Civil War -09091285 15 n 01 Alexandria 1 002 @i 08665504 n 0000 #p 09090825 n 0000 | a town in Louisiana on the Red River -09091398 15 n 02 Baton_Rouge 0 capital_of_Louisiana 0 003 @i 08695539 n 0000 #p 09090825 n 0000 %p 02809866 n 0000 | capital of Louisiana -09091538 15 n 01 Lafayette 0 002 @i 08665504 n 0000 #p 09090825 n 0000 | a town in south central Louisiana; settled by Acadians -09091668 15 n 01 Monroe 0 002 @i 08665504 n 0000 #p 09090825 n 0000 | a town in north central Louisiana -09091774 15 n 01 Morgan_City 0 002 @i 08665504 n 0000 #p 09090825 n 0000 | a town in southeast Louisiana to the south of Baton Rouge -09091909 15 n 01 New_Orleans 0 006 @i 08524735 n 0000 @i 08638442 n 0000 #p 09090825 n 0000 %p 00520059 n 0000 %p 03456854 n 0000 %p 08555102 n 0000 | a port and largest city in Louisiana; located in southeastern Louisiana near the mouth of the Mississippi river; a major center for offshore drilling for oil in the Gulf of Mexico; jazz originated here among black musicians in the late 19th century; Mardi Gras is celebrated here each year -09092352 15 n 01 Shreveport 0 002 @i 08524735 n 0000 #p 09090825 n 0000 | a city in northwest Louisiana on the Red River near the Texas border -09092497 15 n 03 Maine 0 Pine_Tree_State 0 ME 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 + 09743487 n 0101 %p 08602037 n 0000 %p 09092822 n 0000 %p 09092948 n 0000 %p 09093072 n 0000 %p 09093187 n 0000 %p 09093315 n 0000 %p 09093472 n 0000 %p 09389601 n 0000 %p 09419536 n 0000 | a state in New England -09092822 15 n 02 Augusta 0 capital_of_Maine 0 002 @i 08695539 n 0000 #p 09092497 n 0000 | the capital of the state of Maine -09092948 15 n 01 Bangor 2 002 @i 08665504 n 0000 #p 09092497 n 0000 | a town in east central Maine on the Penobscot River -09093072 15 n 01 Brunswick 1 002 @i 08665504 n 0000 #p 09092497 n 0000 | a university town in southwestern Maine -09093187 15 n 01 Lewiston 1 002 @i 08665504 n 0000 #p 09092497 n 0000 | a town in southwestern Maine to the north of Portland -09093315 15 n 01 Orono 0 002 @i 08665504 n 0000 #p 09092497 n 0000 | a university town in east central Maine on the Penobscot River to the north of Bangor -09093472 15 n 01 Portland 0 002 @i 08524735 n 0000 #p 09092497 n 0000 | largest city in Maine in the southwestern corner of the state -09093608 15 n 04 Maryland 0 Old_Line_State 0 Free_State 1 MD 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049303 n 0000 #p 09050730 n 0000 %p 09094093 n 0000 %p 09094217 n 0000 %p 09094381 n 0000 %p 09094581 n 0000 %p 09094791 n 0000 %p 09094919 n 0000 %p 09243405 n 0000 %p 09398217 n 0000 %p 09452017 n 0000 | a Mid-Atlantic state; one of the original 13 colonies -09093980 15 n 01 Maryland 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09094093 15 n 01 Aberdeen 1 003 @i 08665504 n 0000 #p 09093608 n 0000 + 02599114 a 0101 | a town in northeastern Maryland -09094217 15 n 02 Annapolis 0 capital_of_Maryland 0 002 @i 08695539 n 0000 #p 09093608 n 0000 | state capital of Maryland; site of the United States Naval Academy -09094381 15 n 01 Baltimore 0 005 @i 08524735 n 0000 @i 08633957 n 0000 #p 09093608 n 0000 %p 03600617 n 0000 %p 03940022 n 0000 | the largest city in Maryland; a major seaport and industrial center -09094581 15 n 03 Fort_Meade 0 Fort_George_Gordon_Meade 0 Fort_George_G._Meade 0 002 @i 03420559 n 0000 #p 09093608 n 0000 | a United States Army base in Maryland; headquarters of the National Security Agency -09094791 15 n 01 Frederick 0 002 @i 08665504 n 0000 #p 09093608 n 0000 | a town in northern Maryland to the west of Baltimore -09094919 15 n 01 Hagerstown 0 002 @i 08665504 n 0000 #p 09093608 n 0000 | a town in northern Maryland -09095023 15 n 04 Massachusetts 0 Bay_State 0 Old_Colony 0 MA 0 024 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 -r 01283935 n 0000 %p 09095751 n 0000 %p 09096664 n 0000 %p 09096903 n 0000 %p 09097079 n 0000 %p 09097283 n 0000 %p 09097461 n 0000 %p 09097599 n 0000 %p 09097707 n 0000 %p 09097871 n 0000 %p 09098027 n 0000 %p 09098184 n 0000 %p 09098358 n 0000 %p 09098721 n 0000 %p 09099264 n 0000 %p 09099411 n 0000 %p 09219078 n 0000 %p 09242037 n 0000 %p 09306031 n 0000 %p 09351647 n 0000 %p 09453288 n 0000 | a state in New England; one of the original 13 colonies -09095606 15 n 02 Massachusetts 1 Massachusetts_Bay_Colony 0 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09095751 15 n 05 Boston 0 Hub_of_the_Universe 0 Bean_Town 0 Beantown 0 capital_of_Massachusetts 0 007 @i 08695539 n 0000 #p 09095023 n 0000 -r 01273735 n 0000 %p 03009477 n 0000 %p 09096089 n 0000 %p 09096190 n 0000 %p 09096498 n 0000 | state capital and largest city of Massachusetts; a major center for banking and financial services -09096089 15 n 01 Boston_Harbor 0 002 @i 08639058 n 0000 #p 09095751 n 0000 | the seaport at Boston -09096190 15 n 01 Beacon_Hill 0 002 @i 08537837 n 0000 #p 09095751 n 0000 | a fashionable section of Boston; site of the Massachusetts capital building -09096343 15 n 01 Breed's_Hill 0 002 @i 09303008 n 0000 #p 09096498 n 0000 | a hill in Charlestown that was the site of the battle of Bunker Hill in 1775 -09096498 15 n 01 Charlestown 0 003 @i 08641113 n 0000 #p 09095751 n 0000 %p 09096343 n 0000 | a former town and present-day neighborhood of Boston; settled in 1629 -09096664 15 n 01 Cambridge 1 004 @i 08524735 n 0000 #p 09095023 n 0000 %p 03496749 n 0000 %p 03725968 n 0000 | a city in Massachusetts just to the north of Boston; site of Harvard University and the Massachusetts Institute of Technology -09096903 15 n 01 Concord 1 002 @i 08665504 n 0000 #p 09095023 n 0000 | town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought -09097079 15 n 01 Gloucester 1 002 @i 08665504 n 0000 #p 09095023 n 0000 | a town in northeastern Massachusetts on Cape Ann to the northeast of Boston; the harbor has been a fishing center for centuries -09097283 15 n 01 Lexington 0 002 @i 08665504 n 0000 #p 09095023 n 0000 | town in eastern Massachusetts near Boston where the first battle of the American Revolution was fought -09097461 15 n 01 Medford 1 002 @i 08665504 n 0000 #p 09095023 n 0000 | town in northeastern Massachusetts; residential suburb of Boston -09097599 15 n 01 Pittsfield 0 002 @i 08665504 n 0000 #p 09095023 n 0000 | a town in western Massachusetts -09097707 15 n 01 Springfield 1 002 @i 08524735 n 0000 #p 09095023 n 0000 | a city and manufacturing center in southwestern Massachusetts on the Connecticut River -09097871 15 n 01 Worcester 1 002 @i 08524735 n 0000 #p 09095023 n 0000 | an industrial and university city in central Massachusetts to the west of Boston -09098027 15 n 01 Cape_Ann 0 002 @i 09388848 n 0000 #p 09095023 n 0000 | a Massachusetts peninsula to the north of Boston extending into the Atlantic Ocean -09098184 15 n 01 Cape_Cod 0 002 @i 09388848 n 0000 #p 09095023 n 0000 | a Massachusetts peninsula to the south of Boston extending into the Atlantic; a popular resort area -09098358 15 n 01 Cape_Cod_Canal 0 002 @i 02947212 n 0000 #p 09095023 n 0000 | a canal connecting Cape Cod Bay with Buzzards Bay -09098488 15 n 01 Martha's_Vineyard 0 001 @i 09316454 n 0000 | an island summer resort off of Cape Cod -09098592 15 n 01 Nantucket 0 001 @i 09316454 n 0000 | an island resort off Cape Cod; formerly a center of the whaling industry -09098721 15 n 01 Plymouth 0 004 @i 08665504 n 0000 #p 09095023 n 0000 %p 09098885 n 0000 %p 09099098 n 0000 | a town in Massachusetts founded by Pilgrims in 1620 -09098885 15 n 01 Plymouth_Colony 0 002 #p 09098721 n 0000 @i 08374049 n 0000 | colony formed by the Pilgrims when they arrived at Plymouth Rock in 1620; it was absorbed into the Massachusetts Bay Colony in 1691 -09099098 15 n 01 Plymouth_Rock 0 002 @i 09227839 n 0000 #p 09098721 n 0000 | a boulder in Plymouth supposed to be where the Pilgrims disembarked from the Mayflower -09099264 15 n 01 Salem 1 002 @i 08524735 n 0000 #p 09095023 n 0000 | a city in northeastern Massachusetts; site of the witchcraft trials in 1692 -09099411 15 n 01 Williamstown 0 002 @i 08665504 n 0000 #p 09095023 n 0000 | a town in northwestern Massachusetts -09099526 15 n 04 Michigan 0 Wolverine_State 0 Great_Lakes_State 0 MI 0 021 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 03702904 n 0000 %p 08606206 n 0000 %p 09100080 n 0000 %p 09100223 n 0000 %p 09100394 n 0000 %p 09100690 n 0000 %p 09100837 n 0000 %p 09100982 n 0000 %p 09101127 n 0000 %p 09101318 n 0000 %p 09101495 n 0000 %p 09101639 n 0000 %p 09101882 n 0000 %p 09266052 n 0000 %p 09291185 n 0000 %p 09332976 n 0000 %p 09344050 n 0000 %p 09466863 n 0000 | a midwestern state in north central United States in the Great Lakes region -09100080 15 n 01 Alpena 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 09099526 n 0000 | a town in northern Michigan on an arm of Lake Huron -09100223 15 n 01 Ann_Arbor 0 003 @i 08524735 n 0000 #p 09099526 n 0000 %p 04512092 n 0000 | a city in southern Michigan near Detroit; site of the University of Michigan -09100394 15 n 03 Detroit 0 Motor_City 0 Motown 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09099526 n 0000 | the largest city in Michigan and a major Great Lakes port; center of the United States automobile industry; located in southeastern Michigan on the Detroit river across from Windsor -09100690 15 n 01 Flint 0 002 @i 08524735 n 0000 #p 09099526 n 0000 | a city in southeast central Michigan near Detroit; automobile manufacturing -09100837 15 n 01 Grand_Rapids 0 002 @i 08524735 n 0000 #p 09099526 n 0000 | a city in west central Michigan; noted for manufacturing furniture -09100982 15 n 01 Houghton 0 003 @i 08665504 n 0000 @i 08638442 n 0000 #p 09099526 n 0000 | a town in northwest Michigan on the Upper Peninsula -09101127 15 n 01 Jackson 2 002 @i 08665504 n 0000 #p 09099526 n 0000 | a town in south central Michigan -09101233 15 n 01 Kalamazoo 0 001 @i 08665504 n 0000 | a town in southwest Michigan -09101318 15 n 02 Lansing 0 capital_of_Michigan 0 002 @i 08695539 n 0000 #p 09099526 n 0000 | capital of the state of Michigan; located in southern Michigan on the Grand River -09101495 15 n 01 Marquette 0 002 @i 08665504 n 0000 #p 09099526 n 0000 | a town on Lake Superior on the Upper Peninsula in northwest Michigan -09101639 15 n 01 Monroe 1 002 @i 08665504 n 0000 #p 09099526 n 0000 | a town of southeast Michigan on Lake Erie -09101753 15 n 01 Saginaw 0 002 @i 08665504 n 0000 @i 08638442 n 0000 | a town in east central Michigan on an arm of Lake Huron -09101882 15 n 01 Traverse_City 0 002 @i 08665504 n 0000 #p 09099526 n 0000 | a town in northern Michigan on an arm of Lake Michigan -09102016 15 n 04 Minnesota 0 Gopher_State 0 North_Star_State 0 MN 0 016 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 08609685 n 0000 %p 09102415 n 0000 %p 09102517 n 0000 %p 09102655 n 0000 %p 09102781 n 0000 %p 09102883 n 0000 %p 09103112 n 0000 %p 09103217 n 0000 %p 09103377 n 0000 %p 09103648 n 0000 %p 09103803 n 0000 %p 09340935 n 0000 %p 09352108 n 0000 | a midwestern state -09102415 15 n 01 Bemidji 0 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in northern Minnesota -09102517 15 n 01 Duluth 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09102016 n 0000 | a city in northeast Minnesota on Lake Superior -09102655 15 n 01 Hibbing 0 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in northeastern Minnesota in the Mesabi Range -09102781 15 n 01 Mankato 0 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in southern Minnesota -09102883 15 n 01 Minneapolis 0 003 @i 08524735 n 0000 #p 09102016 n 0000 #m 09103648 n 0000 | largest city in Minnesota; located in southeastern Minnesota on the Mississippi river; noted for flour mills; one of the Twin Cities -09103112 15 n 01 Rochester 1 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in southeast Minnesota -09103217 15 n 02 Saint_Cloud 0 St._Cloud 0 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in central Minnesota on the Mississippi River; granite quarries -09103377 15 n 03 Saint_Paul 0 St._Paul 0 capital_of_Minnesota 0 003 @i 08695539 n 0000 #p 09102016 n 0000 #m 09103648 n 0000 | capital of the state of Minnesota; located in southeastern Minnesota on the Mississippi river adjacent to Minneapolis; one of the Twin Cities -09103648 15 n 01 Twin_Cities 0 004 @i 08675967 n 0000 #p 09102016 n 0000 %m 09102883 n 0000 %m 09103377 n 0000 | nickname for Saint Paul and Minneapolis -09103803 15 n 01 Virginia 2 002 @i 08665504 n 0000 #p 09102016 n 0000 | a town in northeastern Minnesota in the heart of the Mesabi Range -09103943 15 n 03 Mississippi 0 Magnolia_State 0 MS 0 019 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049599 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 #p 09051235 n 0000 -r 01298797 n 0000 %p 09104474 n 0000 %p 09104604 n 0000 %p 09104737 n 0000 %p 09104894 n 0000 %p 09105003 n 0000 %p 09105156 n 0000 %p 09105260 n 0000 %p 09105390 n 0000 %p 09105494 n 0000 %p 09387880 n 0000 %p 09459557 n 0000 %p 09481754 n 0000 | a state in the Deep South on the gulf of Mexico; one of the Confederate States during the American Civil War -09104474 15 n 01 Biloxi 0 002 @i 08665504 n 0000 #p 09103943 n 0000 | an old town in southern Mississippi on the Gulf of Mexico -09104604 15 n 01 Columbus 2 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in eastern Mississippi near the border with Alabama -09104737 15 n 01 Greenville 1 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in western Mississippi on the Mississippi River to the north of Vicksburg -09104894 15 n 01 Hattiesburg 0 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in southeast Mississippi -09105003 15 n 02 Jackson 0 capital_of_Mississippi 0 002 @i 08695539 n 0000 #p 09103943 n 0000 | capital of the state of Mississippi on the Pearl River -09105156 15 n 01 Meridian 1 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in eastern Mississippi -09105260 15 n 01 Natchez 0 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in southwest Mississippi on the Mississippi River -09105390 15 n 01 Tupelo 0 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in northeast Mississippi -09105494 15 n 01 Vicksburg 0 002 @i 08665504 n 0000 #p 09103943 n 0000 | a town in western Mississippi on bluffs above the Mississippi River to the west of Jackson; focus of an important campaign during the American Civil War as the Union fought to control the Mississippi River and so to cut the Confederacy into two halves -09105821 15 n 03 Missouri 0 Show_Me_State 0 MO 0 018 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 #m 09050244 n 0000 %p 09106393 n 0000 %p 09106502 n 0000 %p 09106614 n 0000 %p 09106770 n 0000 %p 09106912 n 0000 %p 09107098 n 0000 %p 09107305 n 0000 %p 09107412 n 0000 %p 09107626 n 0000 %p 09107950 n 0000 %p 09108055 n 0000 %p 09380299 n 0000 %p 09419281 n 0000 %p 09478355 n 0000 | a midwestern state in central United States; a border state during the American Civil War, Missouri was admitted to the Confederacy without actually seceding from the Union -09106393 15 n 01 Cape_Girardeau 0 002 @i 08665504 n 0000 #p 09105821 n 0000 | a town in southeast Missouri -09106502 15 n 01 Columbia 1 002 @i 08665504 n 0000 #p 09105821 n 0000 | a university town in central Missouri -09106614 15 n 01 Hannibal 0 002 @i 08665504 n 0000 #p 09105821 n 0000 | a town in northeast Missouri on the Mississippi River; boyhood home of Mark Twain -09106770 15 n 01 Independence 0 002 @i 08524735 n 0000 #p 09105821 n 0000 | a city in western Missouri; the beginning of the Santa Fe Trail -09106912 15 n 02 Jefferson_City 0 capital_of_Missouri 0 002 @i 08695539 n 0000 #p 09105821 n 0000 | capital of the state of Missouri; located in central Missouri on the Missouri river -09107098 15 n 01 Kansas_City 0 002 @i 08524735 n 0000 #p 09105821 n 0000 | a city in western Missouri situated at the confluence of the Kansas River and the Missouri River; adjacent to Kansas City, Kansas -09107305 15 n 01 Poplar_Bluff 0 002 @i 08665504 n 0000 #p 09105821 n 0000 | a town in southeast Missouri -09107412 15 n 02 Saint_Joseph 0 St._Joseph 0 002 @i 08665504 n 0000 #p 09105821 n 0000 | a town in northwest Missouri on the Missouri River; in the 19th century it became the eastern terminus of the pony express -09107626 15 n 03 Saint_Louis 0 St._Louis 0 Gateway_to_the_West 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09105821 n 0000 | the largest city in Missouri; a busy river port on the Mississippi River near its confluence with the Missouri River; was an important staging area for wagon trains westward in the 19th century -09107950 15 n 01 Sedalia 0 002 @i 08665504 n 0000 #p 09105821 n 0000 | a town in east central Missouri -09108055 15 n 01 Springfield 2 002 @i 08524735 n 0000 #p 09105821 n 0000 | a city of southwestern Missouri -09108164 15 n 03 Montana 0 Treasure_State 0 MT 0 016 @i 08655464 n 0000 #p 09044862 n 0000 -r 01284444 n 0000 %p 08610305 n 0000 %p 09108586 n 0000 %p 09108728 n 0000 %p 09108884 n 0000 %p 09109012 n 0000 %p 09109180 n 0000 %p 09109333 n 0000 %p 09220046 n 0000 %p 09340203 n 0000 %p 09340644 n 0000 %p 09354780 n 0000 %p 09450553 n 0000 %p 09482131 n 0000 | a state in northwestern United States on the Canadian border -09108586 15 n 01 Bozeman 0 002 @i 08665504 n 0000 #p 09108164 n 0000 | a town in southwestern Montana; gateway to Yellowstone National Park -09108728 15 n 01 Billings 0 002 @i 08524735 n 0000 #p 09108164 n 0000 | the largest city in Montana; located in southern Montana on the Yellowstone river -09108884 15 n 01 Butte 0 002 @i 08665504 n 0000 #p 09108164 n 0000 | a town in southwestern Montana; center for mining copper -09109012 15 n 01 Great_Falls 0 002 @i 08665504 n 0000 #p 09108164 n 0000 | a town in central Montana on the Missouri river; a center of extensive hydroelectric power -09109180 15 n 02 Helena 0 capital_of_Montana 0 002 @i 08695539 n 0000 #p 09108164 n 0000 | capital of the state of Montana; located in western Montana -09109333 15 n 01 Missoula 0 002 @i 08665504 n 0000 #p 09108164 n 0000 | a university town in western Montana -09109444 15 n 03 Nebraska 0 Cornhusker_State 0 NE 0 012 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 08502797 n 0000 %p 09109771 n 0000 %p 09109882 n 0000 %p 09110099 n 0000 %p 09110229 n 0000 %p 09373716 n 0000 %p 09395592 n 0000 %p 09407632 n 0000 %p 09441725 n 0000 | a midwestern state on the Great Plains -09109771 15 n 01 Grand_Island 0 002 @i 08665504 n 0000 #p 09109444 n 0000 | a town in south central Nebraska -09109882 15 n 02 Lincoln 0 capital_of_Nebraska 0 003 @i 08695539 n 0000 #p 09109444 n 0000 %p 04512216 n 0000 | capital of the state of Nebraska; located in southeastern Nebraska; site of the University of Nebraska -09110099 15 n 01 North_Platte 0 002 @i 08665504 n 0000 #p 09109444 n 0000 | a town in west central Nebraska on the Platte River -09110229 15 n 01 Omaha 0 002 @i 08524735 n 0000 #p 09109444 n 0000 | largest city in Nebraska; located in eastern Nebraska on the Missouri river; a major transportation center of the Midwest -09110422 15 n 05 Nevada 0 Silver_State 0 Battle_Born_State 0 Sagebrush_State 0 NV 0 012 @i 08655464 n 0000 #p 09044862 n 0000 #p 08563627 n 0000 %p 03534890 n 0000 %p 03634189 n 0000 %p 09110784 n 0000 %p 09110939 n 0000 %p 09111168 n 0000 %p 09168592 n 0000 %p 09169303 n 0000 %p 09243209 n 0000 %p 09249418 n 0000 | a state in the southwestern United States -09110784 15 n 02 Carson_City 0 capital_of_Nevada 0 002 @i 08695539 n 0000 #p 09110422 n 0000 | capital of the state of Nevada; located in western Nevada -09110939 15 n 01 Las_Vegas 0 002 @i 08524735 n 0000 #p 09110422 n 0000 | largest city in Nevada; located in southeastern Nevada; originally settled by Mormons but is now famous for entertainment and gambling and general excess -09111168 15 n 01 Reno 0 002 @i 08524735 n 0000 #p 09110422 n 0000 | a city in western Nevada at the foot of the Sierra Nevada Mountains; known for gambling casinos and easy divorce and remarriage -09111366 15 n 03 New_Hampshire 0 Granite_State 0 NH 0 008 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 %p 03163081 n 0000 %p 09111754 n 0000 %p 09111955 n 0000 %p 09112123 n 0000 %p 09351647 n 0000 | a state in New England; one of the original 13 colonies -09111636 15 n 01 New_Hampshire 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09111754 15 n 02 Concord 0 capital_of_New_Hampshire 0 002 @i 08695539 n 0000 #p 09111366 n 0000 | capital of the state of New Hampshire; located in south central New Hampshire on the Merrimack river -09111955 15 n 01 Manchester 1 002 @i 08524735 n 0000 #p 09111366 n 0000 | largest city in New Hampshire; located in southeastern New Hampshire on the Merrimack river -09112123 15 n 01 Portsmouth 0 003 @i 08665504 n 0000 @i 08633957 n 0000 #p 09111366 n 0000 | a port town in southeastern New Hampshire on the Atlantic Ocean -09112282 15 n 04 New_Jersey 0 Jersey 0 Garden_State 0 NJ 0 017 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049303 n 0000 -r 01288272 n 0000 %p 09112857 n 0000 %p 09113022 n 0000 %p 09113207 n 0000 %p 09113333 n 0000 %p 09113479 n 0000 %p 09113611 n 0000 %p 09113762 n 0000 %p 09113901 n 0000 %p 09114020 n 0000 %p 09114128 n 0000 %p 09114262 n 0000 %p 09120353 n 0000 %p 09264425 n 0000 | a Mid-Atlantic state on the Atlantic; one of the original 13 colonies -09112742 15 n 01 New_Jersey 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09112857 15 n 01 Atlantic_City 0 002 @i 08524735 n 0000 #p 09112282 n 0000 | a city on the Atlantic shore in southeastern New Jersey; a resort and gambling center -09113022 15 n 02 Trenton 0 capital_of_New_Jersey 0 002 @i 08695539 n 0000 #p 09112282 n 0000 | capital of the state of New Jersey; located in western New Jersey on the Delaware river -09113207 15 n 01 Bayonne 0 003 @i 08524735 n 0000 #p 09112282 n 0000 %p 02813089 n 0000 | a city in northeastern New Jersey -09113333 15 n 01 Camden 0 002 @i 08524735 n 0000 #p 09112282 n 0000 | a city in southwestern New Jersey on the Delaware River near Philadelphia -09113479 15 n 01 Jersey_City 0 002 @i 08524735 n 0000 #p 09112282 n 0000 | a city in northeastern New Jersey (opposite Manhattan) -09113611 15 n 01 Morristown 0 002 @i 08665504 n 0000 #p 09112282 n 0000 | a town in northern New Jersey where the Continental Army spent two winters -09113762 15 n 01 Newark 0 002 @i 08524735 n 0000 #p 09112282 n 0000 | the largest city in New Jersey; located in northeastern New Jersey -09113901 15 n 01 New_Brunswick 1 002 @i 08665504 n 0000 #p 09112282 n 0000 | a university town in central New Jersey -09114020 15 n 01 Paterson 0 002 @i 08524735 n 0000 #p 09112282 n 0000 | a city of northeastern New Jersey -09114128 15 n 01 Princeton 0 003 @i 08665504 n 0000 #p 09112282 n 0000 %p 04003453 n 0000 | a university town in central New Jersey -09114262 15 n 01 Cape_May 0 002 @i 09233715 n 0000 #p 09112282 n 0000 | a cape of southeast New Jersey extending into the Atlantic Ocean -09114401 15 n 02 Liberty_Island 0 Bedloe's_Island 0 003 @i 09316454 n 0000 #p 09117351 n 0000 #p 09370383 n 0000 | an island in New York Bay to the southwest of Manhattan where the Statue of Liberty stands; "Congress officially changed the name from Bedloe's Island to Liberty Island in 1956" -09114696 15 n 03 New_Mexico 0 Land_of_Enchantment 0 NM 0 026 @i 08655464 n 0000 #p 09044862 n 0000 #p 08563627 n 0000 %p 08603704 n 0000 %p 09115315 n 0000 %p 09115478 n 0000 %p 09115646 n 0000 %p 09115756 n 0000 %p 09115886 n 0000 %p 09116010 n 0000 %p 09116214 n 0000 %p 09116318 n 0000 %p 09116488 n 0000 %p 09116599 n 0000 %p 09168707 n 0000 %p 09228619 n 0000 %p 09231890 n 0000 %p 09236251 n 0000 %p 09244972 n 0000 %p 09250165 n 0000 %p 09288946 n 0000 %p 09295576 n 0000 %p 09341465 n 0000 %p 09388121 n 0000 %p 09418484 n 0000 %p 09478047 n 0000 | a state in southwestern United States on the Mexican border -09115315 15 n 01 Albuquerque 0 002 @i 08524735 n 0000 #p 09114696 n 0000 | the largest city in New Mexico; located in central New Mexico on the Rio Grande river -09115478 15 n 01 Carlsbad 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in southeastern New Mexico on the Pecos River near the Mexican border; potash deposits -09115646 15 n 01 Farmington 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in northwestern New Mexico -09115756 15 n 01 Gallup 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in northwestern New Mexico near the Arizona border -09115886 15 n 01 Las_Cruces 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in southern New Mexico on the Rio Grande -09116010 15 n 01 Los_Alamos 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in north central New Mexico; in 1942 it was chosen as a nuclear research site where the first atomic bombs were produced -09116214 15 n 01 Roswell 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in southeast New Mexico -09116318 15 n 02 Santa_Fe 0 capital_of_New_Mexico 0 002 @i 08695539 n 0000 #p 09114696 n 0000 | capital of the state of New Mexico; located in north central New Mexico -09116488 15 n 01 Silver_City 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | a town in southwestern New Mexico -09116599 15 n 01 Taos 0 002 @i 08665504 n 0000 #p 09114696 n 0000 | an artist colony in northern New Mexico -09116709 15 n 01 Manhattan_Island 0 002 @i 09316454 n 0000 #p 09119277 n 0000 | an island at the north end of New York Bay where the borough of Manhattan is located -09116876 15 n 01 New_Amsterdam 0 002 @i 08374049 n 0000 #p 09119277 n 0000 | a settlement established by the Dutch near the mouth of Hudson River and the southern end of Manhattan Island; annexed by the English in 1664 and renamed New York -09117118 15 n 01 New_Netherland 0 002 @i 08499840 n 0000 #p 09117351 n 0000 | a Dutch colony in North America along the Hudson and lower Delaware rivers although the colony centered in New Amsterdam; annexed by the English in 1664 -09117351 15 n 04 New_York 0 New_York_State 0 Empire_State 0 NY 0 037 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049303 n 0000 -r 01294127 n 0000 %p 03109350 n 0000 %p 04393681 n 0000 %p 09114401 n 0000 %p 09117118 n 0000 %p 09118313 n 0000 %p 09118505 n 0000 %p 09118639 n 0000 %p 09118817 n 0000 %p 09119277 n 0000 %p 09121814 n 0000 %p 09123809 n 0000 %p 09124039 n 0000 %p 09124589 n 0000 %p 09124732 n 0000 %p 09124845 n 0000 %p 09125016 n 0000 %p 09125203 n 0000 %p 09125354 n 0000 %p 09125528 n 0000 %p 09125629 n 0000 %p 09125727 n 0000 %p 09125881 n 0000 %p 09187923 n 0000 %p 09192973 n 0000 %p 09195796 n 0000 %p 09238425 n 0000 %p 09264116 n 0000 %p 09306840 n 0000 %p 09330604 n 0000 %p 09356929 n 0000 %p 09370773 n 0000 %p 09452017 n 0000 %p 09453288 n 0000 | a Mid-Atlantic state; one of the original 13 colonies -09118181 15 n 01 New_York 2 002 @i 09048460 n 0000 -r 01279120 n 0000 | one of the British colonies that formed the United States -09118313 15 n 02 Albany 0 capital_of_New_York 0 002 @i 08695539 n 0000 #p 09117351 n 0000 | state capital of New York; located in eastern New York State on the west bank of the Hudson river -09118505 15 n 01 Buffalo 0 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city on Lake Erie in western New York (near Niagara Falls) -09118639 15 n 01 Cooperstown 0 003 @i 08665504 n 0000 #p 09117351 n 0000 %p 03810561 n 0000 | a small town in east central New York; site of the National Baseball Hall of Fame -09118817 15 n 01 Erie_Canal 0 003 @i 02947212 n 0000 #p 09119070 n 0000 #p 09117351 n 0000 | an artificial waterway connecting the Hudson river at Albany with Lake Erie at Buffalo; built in the 19th century; now part of the New York State Barge Canal -09119070 15 n 01 New_York_State_Barge_Canal 0 002 @i 02947212 n 0000 %p 09118817 n 0000 | a system of canals crossing New York State and connecting the Great Lakes with the Hudson River and Lake Champlain -09119277 15 n 03 New_York 1 New_York_City 0 Greater_New_York 0 025 @i 08524735 n 0000 @i 08638442 n 0000 #p 09117351 n 0000 %p 02906027 n 0000 %p 02906578 n 0000 %p 03073832 n 0000 %p 03103682 n 0000 %p 03283973 n 0000 %p 03435825 n 0000 %p 04033647 n 0000 %p 04529312 n 0000 %p 04604009 n 0000 %p 08580447 n 0000 %p 09116709 n 0000 %p 09116876 n 0000 %p 09119989 n 0000 %p 09120087 n 0000 %p 09120594 n 0000 %p 09122968 n 0000 %p 09123182 n 0000 %p 09123281 n 0000 %p 09123387 n 0000 %p 09123538 n 0000 %p 09123662 n 0000 %p 09370383 n 0000 | the largest city in New York State and in the United States; located in southeastern New York at the mouth of the Hudson river; a major financial and cultural center -09119989 15 n 01 Bronx 0 002 @i 08540532 n 0000 #p 09119277 n 0000 | a borough of New York City -09120087 15 n 01 Brooklyn 0 003 @i 08540532 n 0000 #p 09119277 n 0000 %p 09120207 n 0000 | a borough of New York City -09120207 15 n 01 Coney_Island 0 002 @i 08537837 n 0000 #p 09120087 n 0000 | a section of Brooklyn on the Atlantic; known as an amusement center -09120353 15 n 01 Ellis_Island 0 002 @i 09316454 n 0000 #p 09112282 n 0000 | an island in New York Bay that was formerly the principal immigration station for the United States; "some twelve millions immigrants passed through Ellis Island" -09120594 15 n 01 Manhattan 0 014 @i 08540532 n 0000 #p 09119277 n 0000 %p 09120939 n 0000 %p 09121101 n 0000 %p 09121230 n 0000 %p 09121334 n 0000 %p 09121458 n 0000 %p 09121619 n 0000 %p 09121936 n 0000 %p 09122086 n 0000 %p 09122258 n 0000 %p 09122397 n 0000 %p 09122542 n 0000 %p 09122779 n 0000 | one of the five boroughs of New York City -09120939 15 n 01 Fifth_Avenue 0 002 @i 02763472 n 0000 #p 09120594 n 0000 | an avenue in Manhattan that separates the east side of Manhattan from the west side -09121101 15 n 01 Seventh_Avenue 0 002 @i 02763472 n 0000 #p 09120594 n 0000 | an avenue in Manhattan that runs north and south -09121230 15 n 01 Central_Park 0 002 @i 08615374 n 0000 #p 09120594 n 0000 | a large park in Manhattan -09121334 15 n 01 Harlem 0 002 @i 08537837 n 0000 #p 09120594 n 0000 | a district of Manhattan; now largely a Black ghetto -09121458 15 n 02 Hell's_Kitchen 0 Hell's_Half_Acre 0 002 @i 08537837 n 0000 #p 09120594 n 0000 | a district in Manhattan formerly noted for its slums and vice -09121619 15 n 02 SoHo 1 South_of_Houston 0 002 @i 08537837 n 0000 #p 09120594 n 0000 | a district in southwestern Manhattan noted for its shops and restaurants and galleries and artist's lofts -09121814 15 n 01 Ithaca 1 002 @i 08665504 n 0000 #p 09117351 n 0000 | a college town in central New York on Lake Cayuga -09121936 15 n 01 Bowery 0 002 @i 04334599 n 0000 #p 09120594 n 0000 | a street in Manhattan noted for cheap hotels frequented by homeless derelicts -09122086 15 n 02 Broadway 0 Great_White_Way 0 002 @i 04334599 n 0000 #p 09120594 n 0000 | a street in Manhattan that passes through Times Square; famous for its theaters -09122258 15 n 02 Park_Avenue 0 Park_Ave. 0 002 @i 04334599 n 0000 #p 09120594 n 0000 | a fashionable residential street in New York City -09122397 15 n 01 off-Broadway 0 002 @i 08537837 n 0000 #p 09120594 n 0000 | low-budget theaters located outside the Broadway area in Manhattan -09122542 15 n 01 Times_Square 0 002 @i 08537837 n 0000 #p 09120594 n 0000 | the area of Manhattan around the intersection of Broadway and Seventh Avenue; heart of the New York theater district; site of annual celebration of New Year's -09122779 15 n 02 Wall_Street 0 Wall_St. 0 002 @i 04334599 n 0000 #p 09120594 n 0000 | a street in lower Manhattan where the New York Stock Exchange is located; symbol of American finance -09122968 15 n 02 Greenwich_Village 0 Village 1 002 @i 08553535 n 0000 #p 09119277 n 0000 | a mainly residential district of Manhattan; `the Village' became a home for many writers and artists in the 20th century -09123182 15 n 01 Queens 0 002 @i 08540532 n 0000 #p 09119277 n 0000 | a borough of New York City -09123281 15 n 01 Staten_Island 0 002 @i 08540532 n 0000 #p 09119277 n 0000 | a borough of New York City -09123387 15 n 01 East_River 0 002 @i 09446115 n 0000 #p 09119277 n 0000 | a tidal strait separating Manhattan and the Bronx from Queens and Brooklyn -09123538 15 n 01 Harlem_River 0 002 @i 09241247 n 0000 #p 09119277 n 0000 | a channel separating Manhattan from the Bronx -09123662 15 n 01 Verrazano_Narrows 0 002 @i 09365863 n 0000 #p 09119277 n 0000 | a narrow channel of water separating Staten Island and Brooklyn -09123809 15 n 01 West_Point 0 003 @i 03763133 n 0000 #p 09117351 n 0000 ;c 08199025 n 0000 | United States Army installation on the west bank of Hudson river to the north of New York City; site of United States Military Academy -09124039 15 n 01 Long_Island 0 005 @i 09316454 n 0000 #p 09117351 n 0000 %p 09124252 n 0000 %p 09124399 n 0000 %p 09343422 n 0000 | an island in southeastern New York; Brooklyn and Queens are on its western end -09124252 15 n 01 Elmont 0 003 @i 08665504 n 0000 #p 09124039 n 0000 %p 02827289 n 0000 | a town on Long Island in New York; site of Belmont Park -09124399 15 n 03 Kennedy 0 Kennedy_Interrnational 0 Kennedy_International_Airport 0 002 @i 02692232 n 0000 #p 09124039 n 0000 | a large airport on Long Island to the east of New York City -09124589 15 n 01 Binghamton 0 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city in south central New York near the border with Pennsylvania -09124732 15 n 01 Kingston 1 002 @i 08665504 n 0000 #p 09117351 n 0000 | a town on the Hudson River in New York -09124845 15 n 01 Newburgh 0 002 @i 08665504 n 0000 #p 09117351 n 0000 | a town on the Hudson River in New York; in 1782 and 1783 it was George Washington's headquarters -09125016 15 n 01 Niagara_Falls 0 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city in western New York State at the falls of the Niagara river; tourist attraction and honeymoon resort -09125203 15 n 01 Rochester 0 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city in western New York; a center of the photographic equipment industry -09125354 15 n 01 Schenectady 0 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city of eastern New York on the Mohawk river; it prospered after the opening of the Erie Canal -09125528 15 n 01 Syracuse 1 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city in central New York -09125629 15 n 01 Utica 1 002 @i 08524735 n 0000 #p 09117351 n 0000 | a city in central New York -09125727 15 n 01 Saratoga_Springs 0 002 @i 08665504 n 0000 #p 09117351 n 0000 | a town in eastern New York State famed for its spa and its horse racing -09125881 15 n 01 Watertown 0 002 @i 08665504 n 0000 #p 09117351 n 0000 | a town in northern New York -09125984 15 n 04 borscht_circuit 0 borsht_circuit 0 borscht_belt 0 borsht_belt 0 003 @ 08640739 n 0000 #p 09238425 n 0000 ;u 07075172 n 0000 | (informal) a resort area in the Catskill Mountains of New York that was patronized primarily by Jewish guests; "many comedians learned their trade playing the borscht circuit" -09126305 15 n 04 North_Carolina 0 Old_North_State 0 Tar_Heel_State 0 NC 0 023 @i 08655464 n 0000 #p 09044862 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 #p 09052835 n 0000 %p 08605261 n 0000 %p 09127014 n 0000 %p 09127461 n 0000 %p 09127701 n 0000 %p 09127844 n 0000 %p 09128040 n 0000 %p 09128201 n 0000 %p 09128372 n 0000 %p 09128536 n 0000 %p 09128691 n 0000 %p 09128808 n 0000 %p 09128947 n 0000 %p 09129062 n 0000 %p 09129187 n 0000 %p 09129324 n 0000 %p 09224325 n 0000 %p 09234491 n 0000 %p 09388318 n 0000 | a state in southeastern United States; one of the original 13 colonies -09126895 15 n 01 North_Carolina 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09127014 15 n 01 Cape_Fear 0 002 @i 09233715 n 0000 #p 09126305 n 0000 | a cape in southeastern North Carolina extending into the Atlantic Ocean -09127161 15 n 01 Cape_Flattery 0 002 @i 09233715 n 0000 #p 09152944 n 0000 | a cape of northwestern Washington -09127274 15 n 01 Cape_Froward 0 002 @i 09233715 n 0000 #p 08720481 n 0000 | a cape on the Strait of Magellan in southern Chile; the most southern point on the mainland of South America -09127461 15 n 01 Cape_Hatteras 0 003 @i 09233715 n 0000 @i 09399592 n 0000 #p 09126305 n 0000 | a promontory on Hatteras Island off the Atlantic coast of North Carolina; "frequent storms drive ships to their destruction on Cape Hatteras" -09127701 15 n 01 Hatteras_Island 0 002 @i 09214760 n 0000 #p 09126305 n 0000 | a barrier island running parallel to the North Carolina shore -09127844 15 n 02 Raleigh 0 capital_of_North_Carolina 0 002 @i 08695539 n 0000 #p 09126305 n 0000 | capital of the state of North Carolina; located in the east central part of the North Carolina -09128040 15 n 01 Asheville 0 002 @i 08665504 n 0000 #p 09126305 n 0000 | a town in western North Carolina in the Blue Ridge Mountains to the west of Charlotte -09128201 15 n 01 Chapel_Hill 0 003 @i 08665504 n 0000 #p 09126305 n 0000 %p 04512338 n 0000 | a town in central North Carolina; site of the University of North Carolina -09128372 15 n 02 Charlotte 0 Queen_City 0 002 @i 08524735 n 0000 #p 09126305 n 0000 | the largest city in North Carolina; located in south central North Carolina -09128536 15 n 01 Durham 0 003 @i 08524735 n 0000 #p 09126305 n 0000 %p 03254505 n 0000 | a city of north central North Carolina; site of Duke University -09128691 15 n 01 Fayetteville 2 002 @i 08665504 n 0000 #p 09126305 n 0000 | a town in south central North Carolina -09128808 15 n 01 Goldsboro 0 002 @i 08665504 n 0000 #p 09126305 n 0000 | a town that is a major tobacco center in eastern North Carolina -09128947 15 n 01 Greensboro 0 002 @i 08524735 n 0000 #p 09126305 n 0000 | a city of north central North Carolina -09129062 15 n 01 Greenville 2 002 @i 08524735 n 0000 #p 09126305 n 0000 | a city in eastern North Carolina; tobacco market -09129187 15 n 01 Wilmington 1 002 @i 08665504 n 0000 #p 09126305 n 0000 | a town in southeastern North Carolina on the Cape Fear River -09129324 15 n 01 Winston-Salem 0 002 @i 08524735 n 0000 #p 09126305 n 0000 | a city of north central North Carolina -09129442 15 n 03 North_Dakota 0 Peace_Garden_State 0 ND 0 008 @i 08655464 n 0000 #p 09044862 n 0000 #p 09053019 n 0000 %p 08609278 n 0000 %p 09129719 n 0000 %p 09129926 n 0000 %p 09320985 n 0000 %p 09340644 n 0000 | a state of north central United States bordering on Canada -09129719 15 n 02 Bismarck 0 capital_of_North_Dakota 0 002 @i 08695539 n 0000 #p 09129442 n 0000 | capital of the state of North Dakota; located in south central North Dakota overlooking the Missouri river -09129926 15 n 01 Fargo 0 002 @i 08524735 n 0000 #p 09129442 n 0000 | largest city in North Dakota; located in eastern North Dakota on the Red river -09130076 15 n 03 Ohio 0 Buckeye_State 0 OH 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 09130452 n 0000 %p 09130599 n 0000 %p 09130714 n 0000 %p 09130883 n 0000 %p 09131001 n 0000 %p 09131205 n 0000 %p 09131324 n 0000 %p 09131428 n 0000 %p 09131553 n 0000 %p 09473808 n 0000 | a midwestern state in north central United States in the Great Lakes region -09130452 15 n 01 Akron 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | a city in northeastern Ohio; the heart of the United States rubber industry -09130599 15 n 01 Athens 2 003 @i 08665504 n 0000 #p 09130076 n 0000 + 02972499 a 0101 | a town in southeast Ohio -09130714 15 n 01 Cleveland 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | the largest city in Ohio; located in northeastern Ohio on Lake Erie; a major Great Lakes port -09130883 15 n 01 Cincinnati 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | a city in southern Ohio on the Ohio river -09131001 15 n 02 Columbus 0 capital_of_Ohio 0 003 @i 08695539 n 0000 #p 09130076 n 0000 %p 03842868 n 0000 | the state capital of Ohio; located in the center of the state; site of Ohio State University -09131205 15 n 01 Dayton 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | a city in southwest Ohio; manufacturing center -09131324 15 n 01 Mansfield 0 002 @i 08665504 n 0000 #p 09130076 n 0000 | a town in north central Ohio -09131428 15 n 01 Toledo 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | an industrial city in northwestern Ohio on Lake Erie -09131553 15 n 01 Youngstown 0 002 @i 08524735 n 0000 #p 09130076 n 0000 | a city in northeast Ohio -09131654 15 n 03 Oklahoma 0 Sooner_State 0 OK 0 016 @i 08655464 n 0000 #p 09044862 n 0000 %p 08608505 n 0000 %p 09132053 n 0000 %p 09132163 n 0000 %p 09132266 n 0000 %p 09132367 n 0000 %p 09132474 n 0000 %p 09132597 n 0000 %p 09132778 n 0000 %p 09206375 n 0000 %p 09231890 n 0000 %p 09244972 n 0000 %p 09341465 n 0000 %p 09368479 n 0000 %p 09405949 n 0000 | a state in south central United States -09132053 15 n 01 Bartlesville 0 002 @i 08665504 n 0000 #p 09131654 n 0000 | a town in northeastern Oklahoma -09132163 15 n 01 Enid 0 002 @i 08665504 n 0000 #p 09131654 n 0000 | a town in north central Oklahoma -09132266 15 n 01 Lawton 0 002 @i 08665504 n 0000 #p 09131654 n 0000 | a town in southwest Oklahoma -09132367 15 n 01 McAlester 0 002 @i 08665504 n 0000 #p 09131654 n 0000 | a town in southeastern Oklahoma -09132474 15 n 01 Muskogee 0 002 @i 08665504 n 0000 #p 09131654 n 0000 | a town in eastern Oklahoma on the Arkansas River -09132597 15 n 02 Oklahoma_City 0 capital_of_Oklahoma 0 002 @i 08695539 n 0000 #p 09131654 n 0000 | capital and largest city of Oklahoma; the economy is based on oil and livestock -09132778 15 n 01 Tulsa 0 002 @i 08524735 n 0000 #p 09131654 n 0000 | a major city of northeastern Oklahoma on the Arkansas river; once known as the oil capital of the world and still heavily involved in the oil and gas industries -09133010 15 n 03 Oregon 0 Beaver_State 0 OR 0 013 @i 08655464 n 0000 #p 09044862 n 0000 %p 08564739 n 0000 %p 08604085 n 0000 %p 09133364 n 0000 %p 09133500 n 0000 %p 09133643 n 0000 %p 09133775 n 0000 %p 09133895 n 0000 %p 09134202 n 0000 %p 09326467 n 0000 %p 09438554 n 0000 %p 09479635 n 0000 | a state in northwestern United States on the Pacific -09133364 15 n 01 Bend 0 002 @i 08665504 n 0000 #p 09133010 n 0000 | a town in central Oregon at the eastern foot of the Cascade Range -09133500 15 n 01 Eugene 0 002 @i 08524735 n 0000 #p 09133010 n 0000 | a city in western Oregon on the Willamette River; site of a university -09133643 15 n 01 Klamath_Falls 0 002 @i 08665504 n 0000 #p 09133010 n 0000 | a town in southern Oregon near the California border -09133775 15 n 01 Medford 0 002 @i 08665504 n 0000 #p 09133010 n 0000 | a town in southwestern Oregon; a summer resort -09133895 15 n 01 Portland 1 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09133010 n 0000 | freshwater port and largest city in Oregon; located in northwestern Oregon on the Willamette River which divides the city into east and west sections; renowned for its beautiful natural setting among the mountains -09134202 15 n 02 Salem 0 capital_of_Oregon 0 002 @i 08695539 n 0000 #p 09133010 n 0000 | capital of the state of Oregon in the northwestern part of the state on the Willamette River -09134386 15 n 03 Pennsylvania 0 Keystone_State 0 PA 0 020 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049303 n 0000 -r 01279615 n 0000 %p 04512476 n 0000 %p 09134999 n 0000 %p 09135142 n 0000 %p 09135246 n 0000 %p 09135447 n 0000 %p 09135590 n 0000 %p 09135733 n 0000 %p 09135993 n 0000 %p 09136182 n 0000 %p 09136582 n 0000 %p 09192708 n 0000 %p 09192973 n 0000 %p 09224325 n 0000 %p 09337531 n 0000 %p 09357580 n 0000 %p 09452017 n 0000 | a Mid-Atlantic state; one of the original 13 colonies -09134882 15 n 01 Pennsylvania 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09134999 15 n 01 Allentown 0 002 @i 08524735 n 0000 #p 09134386 n 0000 | a city in eastern Pennsylvania; an industrial and commercial center -09135142 15 n 01 Altoona 0 002 @i 08665504 n 0000 #p 09134386 n 0000 | a town in central Pennsylvania -09135246 15 n 01 Bethlehem 1 002 @i 08665504 n 0000 #p 09134386 n 0000 | a town in eastern Pennsylvania on the Lehigh River to the northwest of Philadelphia; an important center for steel production -09135447 15 n 01 Erie 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09134386 n 0000 | a port city on Lake Erie in northwestern Pennsylvania -09135590 15 n 01 Gettysburg 0 002 @i 08665504 n 0000 #p 09134386 n 0000 | a small town in southern Pennsylvania; site of a national cemetery -09135733 15 n 02 Harrisburg 0 capital_of_Pennsylvania 0 002 @i 08695539 n 0000 #p 09134386 n 0000 | capital of Pennsylvania; located in southern part of state -09135894 15 n 01 Hershey 0 001 @i 08665504 n 0000 | an industrial town to the east of Harrisburg -09135993 15 n 01 Chester 0 003 @i 08524735 n 0000 #p 09134386 n 0000 %p 03077304 n 0000 | a city of southeastern Pennsylvania on the Delaware river (an industrial suburb of Philadelphia) -09136182 15 n 02 Philadelphia 0 City_of_Brotherly_Love 0 005 @i 08524735 n 0000 #p 09134386 n 0000 %p 02830294 n 0000 %p 03567474 n 0000 %p 04549276 n 0000 | the largest city in Pennsylvania; located in the southeastern part of the state on the Delaware river; site of Independence Hall where the Declaration of Independence and the Constitution were signed; site of the University of Pennsylvania -09136582 15 n 01 Pittsburgh 0 004 @i 08524735 n 0000 #p 09134386 n 0000 %p 02965936 n 0000 %p 04512652 n 0000 | a city in southwestern Pennsylvania where the confluence of the Allegheny River and Monongahela River forms the Ohio River; long an important urban industrial area; site of Carnegie Mellon University and the University of Pittsburgh -09136929 15 n 01 Scranton 0 001 @i 08524735 n 0000 | an industrial city of northeastern Pennsylvania -09137032 15 n 04 Rhode_Island 0 Little_Rhody 0 Ocean_State 0 RI 0 008 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 %p 02907985 n 0000 -r 07689217 n 0000 %p 09137451 n 0000 %p 09137682 n 0000 %p 09365730 n 0000 | a state in New England; one of the original 13 colonies; the smallest state -09137334 15 n 01 Rhode_Island 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09137451 15 n 02 Providence 0 capital_of_Rhode_Island 0 002 @i 08695539 n 0000 #p 09137032 n 0000 | the capital and largest city of Rhode Island; located in northeastern Rhode Island on Narragansett Bay; site of Brown University -09137682 15 n 01 Newport 1 002 @i 08524735 n 0000 #p 09137032 n 0000 | a resort city in southeastern Rhode Island; known for the summer homes of millionaires; important yachting center -09137869 15 n 03 South_Carolina 0 Palmetto_State 0 SC 0 013 @i 08655464 n 0000 #p 09044862 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 #p 09051235 n 0000 #p 09052835 n 0000 -r 01276436 n 0000 %p 09138358 n 0000 %p 09138538 n 0000 %p 09138676 n 0000 %p 09138808 n 0000 %p 09388318 n 0000 %p 09424865 n 0000 | a state in the Deep South; one of the original 13 colonies -09138239 15 n 01 South_Carolina 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09138358 15 n 02 Columbia 0 capital_of_South_Carolina 0 002 @i 08695539 n 0000 #p 09137869 n 0000 | capital and largest city in South Carolina; located in central South Carolina -09138538 15 n 01 Charleston 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09137869 n 0000 | a port city in southeastern South Carolina -09138676 15 n 01 Florence 1 002 @i 08665504 n 0000 #p 09137869 n 0000 | a town in northeast South Carolina; transportation center -09138808 15 n 01 Greenville 0 002 @i 08665504 n 0000 #p 09137869 n 0000 | a town in northwest South Carolina in the Piedmont -09138935 15 n 04 South_Dakota 0 Coyote_State 0 Mount_Rushmore_State 0 SD 0 017 @i 08655464 n 0000 #p 09044862 n 0000 #p 09053019 n 0000 %p 08502797 n 0000 %p 08602456 n 0000 %p 08609858 n 0000 %p 09139380 n 0000 %p 09139508 n 0000 %p 09139698 n 0000 %p 09139849 n 0000 %p 09139993 n 0000 %p 09220574 n 0000 %p 09222880 n 0000 %p 09320985 n 0000 %p 09340644 n 0000 %p 09359150 n 0000 %p 09417668 n 0000 | a state in north central United States -09139380 15 n 01 Aberdeen 2 003 @i 08665504 n 0000 #p 09138935 n 0000 + 02599114 a 0101 | a town in northeastern South Dakota -09139508 15 n 02 Pierre 0 capital_of_South_Dakota 0 002 @i 08695539 n 0000 #p 09138935 n 0000 | capital of the state of South Dakota; located in central South Dakota on the Missouri river -09139698 15 n 01 Rapid_City 0 002 @i 08665504 n 0000 #p 09138935 n 0000 | a town in southwestern South Dakota in the eastern part of the Black Hills -09139849 15 n 01 Sioux_Falls 0 002 @i 08524735 n 0000 #p 09138935 n 0000 | largest city in South Dakota; located in southeastern South Dakota -09139993 15 n 01 Black_Hills 0 003 @i 09359803 n 0000 #p 09138935 n 0000 #p 09159003 n 0000 | mountains in western South Dakota and northeastern Wyoming -09140148 15 n 03 Tennessee 0 Volunteer_State 0 TN 0 017 @i 08655464 n 0000 #p 09044862 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 -r 01275389 n 0000 -r 01294502 n 0000 %p 08605261 n 0000 %p 09140569 n 0000 %p 09140674 n 0000 %p 09140781 n 0000 %p 09140882 n 0000 %p 09140993 n 0000 %p 09141119 n 0000 %p 09141297 n 0000 %p 09246660 n 0000 %p 09261138 n 0000 %p 09455640 n 0000 | a state in east central United States -09140569 15 n 01 Chattanooga 0 002 @i 08524735 n 0000 #p 09140148 n 0000 | a city in eastern Tennessee -09140674 15 n 01 Columbia 2 002 @i 08665504 n 0000 #p 09140148 n 0000 | a town in west central Tennessee -09140781 15 n 01 Jackson 1 002 @i 08665504 n 0000 #p 09140148 n 0000 | a town in western Tennessee -09140882 15 n 01 Johnson_City 0 002 @i 08665504 n 0000 #p 09140148 n 0000 | a town in northeastern Tennessee -09140993 15 n 01 Knoxville 0 002 @i 08524735 n 0000 #p 09140148 n 0000 | a city in eastern Tennessee on the Tennessee River -09141119 15 n 01 Memphis 0 002 @i 08524735 n 0000 #p 09140148 n 0000 | largest city of Tennessee; located in southwestern Tennessee on bluffs overlooking the Mississippi River -09141297 15 n 02 Nashville 0 capital_of_Tennessee 0 002 @i 08695539 n 0000 #p 09140148 n 0000 | capital of the state of Tennessee; located in the north central part of the state on the Cumberland River; known for country music -09141526 15 n 03 Texas 0 Lone-Star_State 0 TX 0 053 @i 08655464 n 0000 #p 09044862 n 0000 #p 09049599 n 0000 #m 09050244 n 0000 #p 08563627 n 0000 + 03124392 a 0101 %p 03020927 n 0000 %p 08602650 n 0000 %p 08602822 n 0000 %p 08605493 n 0000 %p 09142674 n 0000 %p 09142771 n 0000 %p 09142887 n 0000 %p 09143017 n 0000 %p 09143205 n 0000 %p 09143321 n 0000 %p 09143549 n 0000 %p 09143649 n 0000 %p 09143786 n 0000 %p 09143973 n 0000 %p 09144117 n 0000 %p 09144323 n 0000 %p 09144484 n 0000 %p 09144605 n 0000 %p 09144730 n 0000 %p 09144851 n 0000 %p 09145083 n 0000 %p 09145217 n 0000 %p 09145341 n 0000 %p 09145437 n 0000 %p 09145553 n 0000 %p 09145655 n 0000 %p 09145751 n 0000 %p 09145851 n 0000 %p 09145970 n 0000 %p 09146111 n 0000 %p 09146324 n 0000 %p 09146451 n 0000 %p 09146584 n 0000 %p 09146681 n 0000 %p 09146813 n 0000 %p 09146912 n 0000 %p 09168707 n 0000 %p 09228619 n 0000 %p 09231890 n 0000 %p 09250016 n 0000 %p 09286318 n 0000 %p 09295576 n 0000 %p 09341465 n 0000 %p 09388121 n 0000 %p 09405949 n 0000 %p 09418331 n 0000 %p 09462049 n 0000 | the second largest state; located in southwestern United States on the Gulf of Mexico -09142674 15 n 01 Abilene 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in central Texas -09142771 15 n 01 Amarillo 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in the northern panhandle of Texas -09142887 15 n 01 Arlington 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in northern Texas between Dallas and Fort Worth -09143017 15 n 02 Austin 0 capital_of_Texas 0 003 @i 08695539 n 0000 #p 09141526 n 0000 %p 04512933 n 0000 | state capital of Texas on the Colorado River; site of the University of Texas -09143205 15 n 01 Beaumont 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city of southeastern Texas near Houston -09143321 15 n 01 Brownsville 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09141526 n 0000 | a city in southern Texas on the Rio Grande near its mouth into the Gulf of Mexico; has a channel that accommodates oceangoing ships -09143549 15 n 01 Bryan 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town of east central Texas -09143649 15 n 01 Corpus_Christi 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in southern Texas on an arm of the Gulf of Mexico -09143786 15 n 01 Dallas 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a large commercial and industrial city in northeastern Texas located in the heart of the northern Texas oil fields -09143973 15 n 01 Del_Rio 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in southwest Texas on the Rio Grande to the west of San Antonio -09144117 15 n 01 El_Paso 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in western Texas on the Mexican border; located on the northern bank of the Rio Grande across from the Mexican city of Juarez -09144323 15 n 01 Fort_Worth 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in northeastern Texas (just to the west of Dallas); a major industrial center -09144484 15 n 01 Galveston 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in southeast Texas on Galveston Island -09144605 15 n 01 Galveston_Island 0 002 @i 09316454 n 0000 #p 09141526 n 0000 | an island at the entrance of Galveston Bay -09144730 15 n 01 Garland 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in northeastern Texas (suburb of Dallas) -09144851 15 n 01 Houston 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09141526 n 0000 | the largest city in Texas; located in southeastern Texas near the Gulf of Mexico; site of the National Aeronautics and Space Administration -09145083 15 n 01 Laredo 0 003 @i 08524735 n 0000 @i 08638442 n 0000 #p 09141526 n 0000 | a city in southern Texas on the Rio Grande -09145217 15 n 01 Lubbock 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in northwest Texas to the south of Amarillo -09145341 15 n 01 Lufkin 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in eastern Texas -09145437 15 n 01 McAllen 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in southern Texas on the Rio Grande -09145553 15 n 01 Midland 1 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in west central Texas -09145655 15 n 01 Odessa 1 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in western Texas -09145751 15 n 01 Paris 1 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in northeastern Texas -09145851 15 n 01 Plano 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in northeastern Texas (suburb of Dallas) -09145970 15 n 01 San_Angelo 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in west central Texas; formerly a notorious frontier town -09146111 15 n 01 San_Antonio 0 003 @i 08524735 n 0000 #p 09141526 n 0000 -r 01269360 n 0000 | a city of south central Texas; site of the Alamo; site of several military bases and a popular haven for vacationers -09146324 15 n 01 Sherman 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in northeastern Texas near the Oklahoma border -09146451 15 n 01 Texarkana 1 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in northeast Texas adjacent to Texarkana, Arkansas -09146584 15 n 01 Tyler 0 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in northeast Texas -09146681 15 n 01 Victoria 3 002 @i 08665504 n 0000 #p 09141526 n 0000 | a town in southeast Texas to the southeast of San Antonio -09146813 15 n 01 Waco 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in east central Texas -09146912 15 n 01 Wichita_Falls 0 002 @i 08524735 n 0000 #p 09141526 n 0000 | a city in north central Texas near the Oklahoma border -09147046 15 n 04 Utah 0 Beehive_State 0 Mormon_State 0 UT 0 016 @i 08655464 n 0000 #p 09044862 n 0000 %p 03634469 n 0000 %p 04378842 n 0000 %p 08602254 n 0000 %p 08603158 n 0000 %p 08603308 n 0000 %p 08603525 n 0000 %p 08610810 n 0000 %p 09147504 n 0000 %p 09147618 n 0000 %p 09147737 n 0000 %p 09249418 n 0000 %p 09250165 n 0000 %p 09293613 n 0000 %p 09294066 n 0000 | a state in the western United States; settled in 1847 by Mormons led by Brigham Young -09147504 15 n 01 Ogden 0 002 @i 08665504 n 0000 #p 09147046 n 0000 | a town in northern Utah settled by Mormons -09147618 15 n 01 Provo 0 002 @i 08524735 n 0000 #p 09147046 n 0000 | a city in north central Utah settled by Mormons -09147737 15 n 02 Salt_Lake_City 0 capital_of_Utah 0 002 @i 08695539 n 0000 #p 09147046 n 0000 | the capital and largest city of Utah; located near the Great Salt Lake in north central Utah; world capital of the Mormon Church -09147964 15 n 03 Vermont 0 Green_Mountain_State 0 VT 0 011 @i 08655464 n 0000 #p 09044862 n 0000 #p 09048880 n 0000 %p 09148259 n 0000 %p 09148422 n 0000 %p 09148529 n 0000 %p 09148662 n 0000 %p 09148871 n 0000 %p 09294413 n 0000 %p 09330604 n 0000 %p 09453288 n 0000 | a state in New England -09148259 15 n 02 Montpelier 0 capital_of_Vermont 0 002 @i 08695539 n 0000 #p 09147964 n 0000 | capital of the state of Vermont; located in north central Vermont -09148422 15 n 01 Bennington 0 002 @i 08665504 n 0000 #p 09147964 n 0000 | a town in southwestern Vermont -09148529 15 n 01 Brattleboro 0 002 @i 08665504 n 0000 #p 09147964 n 0000 | a town in southeastern Vermont on the Connecticut River -09148662 15 n 01 Burlington 0 003 @i 08524735 n 0000 #p 09147964 n 0000 %p 04513048 n 0000 | the largest city in Vermont; located in northwestern Vermont on Lake Champlain; site of the University of Vermont -09148871 15 n 01 Rutland 0 002 @i 08665504 n 0000 #p 09147964 n 0000 | a town in central Vermont -09148970 15 n 04 Virginia 0 Old_Dominion 0 Old_Dominion_State 0 VA 0 040 @i 08655464 n 0000 #p 09044862 n 0000 #p 09050730 n 0000 #m 09050244 n 0000 -r 01273491 n 0000 -r 01274909 n 0000 -r 01279342 n 0000 -r 01290435 n 0000 -r 01295918 n 0000 -r 01299735 n 0000 -r 01300242 n 0000 %p 08609131 n 0000 %p 09150047 n 0000 %p 09150284 n 0000 %p 09150448 n 0000 %p 09150662 n 0000 %p 09150863 n 0000 %p 09151114 n 0000 %p 09151216 n 0000 %p 09151411 n 0000 %p 09151516 n 0000 %p 09151800 n 0000 %p 09151963 n 0000 %p 09152080 n 0000 %p 09152218 n 0000 %p 09152401 n 0000 %p 09152570 n 0000 %p 09152769 n 0000 %p 09192708 n 0000 %p 09224325 n 0000 %p 09243405 n 0000 %p 09246660 n 0000 %p 09272595 n 0000 %p 09301249 n 0000 %p 09321180 n 0000 %p 09398217 n 0000 %p 09405515 n 0000 %p 09431744 n 0000 %p 09432549 n 0000 -r 09479424 n 0000 | a state in the eastern United States; one of the original 13 colonies; one of the Confederate States in the American Civil War -09149934 15 n 01 Virginia 1 001 @i 09048460 n 0000 | one of the British colonies that formed the United States -09150047 15 n 02 Richmond 0 capital_of_Virginia 0 002 @i 08695539 n 0000 #p 09148970 n 0000 | capital of the state of Virginia located in the east central part of the state; was capital of the Confederacy during the American Civil War -09150284 15 n 01 Blacksburg 0 002 @i 08665504 n 0000 #p 09148970 n 0000 | a university town in southwestern Virginia (west of Roanoke) in the Allegheny Mountains -09150448 15 n 01 Jamestown 0 002 @i 08672738 n 0000 #p 09148970 n 0000 | a former village on the James River in Virginia to the north of Norfolk; site of the first permanent English settlement in America in 1607 -09150662 15 n 01 Newport_News 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09148970 n 0000 | a port city in southeastern Virginia at the mouth of the James River off Hampton Roads; large shipyards -09150863 15 n 01 Norfolk 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09148970 n 0000 | port city located in southeastern Virginia on the Elizabeth River at the mouth of Chesapeake Bay; headquarters of the Atlantic fleet of the United States Navy -09151114 15 n 01 Lynchburg 0 002 @i 08524735 n 0000 #p 09148970 n 0000 | a city in central Virginia -09151216 15 n 01 Portsmouth 2 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09148970 n 0000 | a port city in southeastern Virginia on the Elizabeth River opposite Norfolk; naval base; shipyards -09151411 15 n 01 Roanoke 0 002 @i 08524735 n 0000 #p 09148970 n 0000 | a city in southwestern Virginia -09151516 15 n 01 Virginia_Beach 0 002 @i 08524735 n 0000 #p 09148970 n 0000 | the largest city in Virginia; long overshadowed by Norfolk but growing rapidly since 1970; with 28 miles of public beaches tourism is a major factor in the economy; site of three United States Navy bases -09151800 15 n 01 Bull_Run 0 002 @i 09229409 n 0000 #p 09148970 n 0000 | a creek in northeastern Virginia where two battles were fought in the American Civil War -09151963 15 n 01 Chancellorsville 0 002 @i 08672738 n 0000 #p 09148970 n 0000 | a village in northeastern Virginia -09152080 15 n 01 Fredericksburg 0 002 @i 08665504 n 0000 #p 09148970 n 0000 | a town in northeastern Virginia on the Rappahannock River -09152218 15 n 01 Petersburg 0 002 @i 08665504 n 0000 #p 09148970 n 0000 | a town in southeastern Virginia (south of Richmond); scene of heavy fighting during the American Civil War -09152401 15 n 01 Spotsylvania 0 002 @i 08672738 n 0000 #p 09148970 n 0000 | a village in northeastern Virginia where battles were fought during the American Civil War -09152570 15 n 01 Yorktown 0 002 @i 08672738 n 0000 #p 09148970 n 0000 | a historic village in southeastern Virginia to the north of Newport News; site of the last battle of the American Revolution -09152769 15 n 01 Mount_Vernon 0 002 @i 04079244 n 0000 #p 09148970 n 0000 | the former residence of George Washington in northeastern Virginia overlooking the Potomac river -09152944 15 n 03 Washington 0 Evergreen_State 0 WA 0 027 @i 08655464 n 0000 #p 09044862 n 0000 + 03037093 a 0101 %p 08564739 n 0000 %p 08607752 n 0000 %p 08607957 n 0000 %p 08608157 n 0000 %p 09127161 n 0000 %p 09153570 n 0000 %p 09153710 n 0000 %p 09153873 n 0000 %p 09154000 n 0000 %p 09154178 n 0000 %p 09154607 n 0000 %p 09154731 n 0000 %p 09154905 n 0000 %p 09155065 n 0000 %p 09155199 n 0000 %p 09177385 n 0000 %p 09187407 n 0000 %p 09242956 n 0000 %p 09250678 n 0000 %p 09313241 n 0000 %p 09400667 n 0000 %p 09405169 n 0000 %p 09425344 n 0000 %p 09438554 n 0000 | a state in northwestern United States on the Pacific -09153570 15 n 01 Aberdeen 3 004 @i 08665504 n 0000 @i 08638442 n 0000 #p 09152944 n 0000 + 02599114 a 0101 | a town in western Washington -09153710 15 n 01 Bellingham 0 003 @i 08665504 n 0000 @i 08638442 n 0000 #p 09152944 n 0000 | a town in northwestern Washington on a bay near the Canadian border -09153873 15 n 01 Kennewick 0 002 @i 08665504 n 0000 #p 09152944 n 0000 | a town in southern Washington on the Columbia River -09154000 15 n 02 Olympia 0 capital_of_Washington 0 002 @i 08695539 n 0000 #p 09152944 n 0000 | capital of the state of Washington; located in western Washington on Puget Sound -09154178 15 n 01 Seattle 0 005 @i 08524735 n 0000 @i 08638442 n 0000 #p 09152944 n 0000 %p 04265535 n 0000 %p 04513171 n 0000 | a major port of entry and the largest city in Washington; located in west central Washington on the protected waters of Puget Sound with the snow-capped peaks of the Cascade Range and Mount Ranier visible to the south and east; an aerospace and computer center; site of the University of Washington -09154607 15 n 01 Spokane 0 002 @i 08524735 n 0000 #p 09152944 n 0000 | a city in eastern Washington near the Idaho border -09154731 15 n 01 Tacoma 0 003 @i 08524735 n 0000 #p 09152944 n 0000 %p 04383401 n 0000 | a city in west central Washington on an arm of Puget Sound to the south of Seattle -09154905 15 n 01 Vancouver 1 002 @i 08665504 n 0000 #p 09152944 n 0000 | a town in southwestern Washington on the Columbia River across from Portland, Oregon -09155065 15 n 01 Walla_Walla 0 002 @i 08665504 n 0000 #p 09152944 n 0000 | a town in southeastern Washington near the Oregon border -09155199 15 n 01 Yakima 0 002 @i 08665504 n 0000 #p 09152944 n 0000 | a town in south central Washington -09155306 15 n 03 West_Virginia 0 Mountain_State 0 WV 0 015 @i 08655464 n 0000 #p 09044862 n 0000 %p 09155692 n 0000 %p 09155798 n 0000 %p 09155986 n 0000 %p 09156095 n 0000 %p 09156241 n 0000 %p 09156395 n 0000 %p 09156666 n 0000 %p 09156889 n 0000 %p 09157021 n 0000 %p 09192708 n 0000 %p 09323085 n 0000 %p 09357580 n 0000 %p 09398217 n 0000 | a state in east central United States -09155692 15 n 01 Beckley 0 002 @i 08524735 n 0000 #p 09155306 n 0000 | a city in southern West Virginia -09155798 15 n 02 Charleston 1 capital_of_West_Virginia 0 002 @i 08695539 n 0000 #p 09155306 n 0000 | state capital of West Virginia in the central part of the state on the Kanawha river -09155986 15 n 01 Clarksburg 0 002 @i 08524735 n 0000 #p 09155306 n 0000 | a city in northern West Virginia -09156095 15 n 01 Fayetteville 1 003 @i 08665504 n 0000 #p 09155306 n 0000 %p 03822015 n 0000 | a town in central West Virginia on the New River -09156241 15 n 01 Huntington 0 002 @i 08524735 n 0000 #p 09155306 n 0000 | a city of western West Virginia on the Ohio river at the mouth of the Kanawha -09156395 15 n 02 Harpers_Ferry 0 Harper's_Ferry 0 002 @i 08665504 n 0000 #p 09155306 n 0000 | a small town in northeastern West Virginia that was the site of a raid in 1859 by the abolitionist John Brown and his followers who captured an arsenal that was located there -09156666 15 n 01 Morgantown 0 003 @i 08524735 n 0000 #p 09155306 n 0000 %p 04513297 n 0000 | a city in northern West Virginia on the Monongahela river near the Pennsylvania border; site of the University of West Virginia -09156889 15 n 01 Parkersburg 0 002 @i 08524735 n 0000 #p 09155306 n 0000 | a city in northwestern West Virginia on the Ohio river -09157021 15 n 01 Wheeling 0 002 @i 08524735 n 0000 #p 09155306 n 0000 | a city in the northern panhandle of West Virginia on the Ohio river -09157163 15 n 03 Wisconsin 0 Badger_State 0 WI 0 015 @i 08655464 n 0000 #p 09044862 n 0000 #p 08564307 n 0000 %p 09157555 n 0000 %p 09157657 n 0000 %p 09157766 n 0000 %p 09157896 n 0000 %p 09158024 n 0000 %p 09158268 n 0000 %p 09158501 n 0000 %p 09158649 n 0000 %p 09158789 n 0000 %p 09158897 n 0000 %p 09285128 n 0000 %p 09480556 n 0000 | a midwestern state in north central United States -09157555 15 n 01 Appleton 0 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in eastern Wisconsin -09157657 15 n 01 Eau_Claire 0 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in west central Wisconsin -09157766 15 n 01 Green_Bay 0 002 @i 08524735 n 0000 #p 09157163 n 0000 | a city of eastern Wisconsin on an arm of Lake Michigan -09157896 15 n 01 La_Crosse 0 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in western Wisconsin on the Mississippi River -09158024 15 n 02 Madison 0 capital_of_Wisconsin 0 003 @i 08695539 n 0000 #p 09157163 n 0000 %p 04513432 n 0000 | capital of the state of Wisconsin; located in the southern part of state; site of the main branch of the University of Wisconsin -09158268 15 n 01 Milwaukee 0 002 @i 08524735 n 0000 #p 09157163 n 0000 | largest city of Wisconsin; located in southeastern Wisconsin on the western shore of Lake Michigan; a flourishing agricultural center known for its breweries -09158501 15 n 01 Racine 0 002 @i 08524735 n 0000 #p 09157163 n 0000 | a city in southeastern Wisconsin on Lake Michigan to the south of Milwaukee -09158649 15 n 01 Superior 0 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in northwest Wisconsin on Lake Superior across from Duluth -09158789 15 n 01 Watertown 1 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in southeastern Wisconsin -09158897 15 n 01 Wausau 0 002 @i 08665504 n 0000 #p 09157163 n 0000 | a town in north central Wisconsin -09159003 15 n 03 Wyoming 0 Equality_State 0 WY 0 020 @i 08655464 n 0000 #p 09044862 n 0000 %p 08605123 n 0000 %p 08610305 n 0000 %p 09139993 n 0000 %p 09159546 n 0000 %p 09159675 n 0000 %p 09159859 n 0000 %p 09159958 n 0000 %p 09160056 n 0000 %p 09160168 n 0000 %p 09220046 n 0000 %p 09222880 n 0000 %p 09294066 n 0000 %p 09340203 n 0000 %p 09340644 n 0000 %p 09373716 n 0000 %p 09438554 n 0000 %p 09456860 n 0000 %p 09482131 n 0000 | a state in the western United States; mountainous in the west and north with the Great Plains in the east -09159546 15 n 01 Casper 0 002 @i 08524735 n 0000 #p 09159003 n 0000 | a city of east central Wyoming on the North Platte river -09159675 15 n 02 Cheyenne 0 capital_of_Wyoming 0 002 @i 08695539 n 0000 #p 09159003 n 0000 | the capital and largest city of Wyoming; located in the southeastern corner of the state -09159859 15 n 01 Jackson 3 002 @i 08665504 n 0000 #p 09159003 n 0000 | a town in western Wyoming -09159958 15 n 01 Lander 0 002 @i 08665504 n 0000 #p 09159003 n 0000 | a town in central Wyoming -09160056 15 n 01 Laramie 0 002 @i 08665504 n 0000 #p 09159003 n 0000 | a university town in southeast Wyoming -09160168 15 n 01 Rock_Springs 0 002 @i 08665504 n 0000 #p 09159003 n 0000 | a town of southwest Wyoming near the Utah border -09160295 15 n 01 Uruguay 0 007 @i 08702402 n 0000 #p 09440400 n 0000 #m 08176077 n 0000 + 02967333 a 0101 %p 09160571 n 0000 %p 09410558 n 0000 %m 09746936 n 0000 | a South American republic on the southeast coast of South America; achieved independence from Brazil in 1825 -09160571 15 n 02 Montevideo 0 capital_of_Uruguay 0 002 @i 08691669 n 0000 #p 09160295 n 0000 | the capital and largest city of Uruguay; a cosmopolitan city and one of the busiest ports in South America -09160775 15 n 03 Vanuatu 0 Republic_of_Vanuatu 0 New_Hebrides 0 003 @i 08544813 n 0000 #p 08836630 n 0000 %p 09160968 n 0000 | a volcanic island republic in Melanesia; independent since 1980 -09160968 15 n 03 Port_Vila 0 Vila 0 capital_of_Vanuatu 0 002 @i 08691669 n 0000 #p 09160775 n 0000 | capital of Vanuatu -09161090 15 n 03 Holy_See 0 The_Holy_See 0 State_of_the_Vatican_City 0 004 @i 08696931 n 0000 @i 08586825 n 0000 #p 08806897 n 0000 %p 09161452 n 0000 | the smallest sovereign state in the world; the see of the Pope (as the Bishop of Rome); home of the Pope and the central administration of the Roman Catholic Church; achieved independence from Italy in 1929 -09161452 15 n 02 Vatican_City 0 Citta_del_Vaticano 0 003 @i 08524735 n 0000 #p 09161090 n 0000 %p 04523380 n 0000 | the capital of the State of the Vatican City -09161615 15 n 01 Guiana_Highlands 0 002 @i 09453008 n 0000 #p 09440400 n 0000 | a mountainous tableland in northern South America; extends from Venezuela into Guyana and northern Brazil -09161803 15 n 02 Venezuela 0 Republic_of_Venezuela 0 016 @i 08702402 n 0000 #p 09440400 n 0000 #m 08177030 n 0000 #m 08176077 n 0000 + 02966656 a 0101 %p 09162276 n 0000 %p 09162414 n 0000 %p 09162581 n 0000 %p 09162803 n 0000 %p 09162955 n 0000 %p 09163077 n 0000 %p 09197660 n 0000 %p 09203481 n 0000 %p 09262082 n 0000 %p 09379938 n 0000 %m 09747062 n 0000 | a republic in northern South America on the Caribbean; achieved independence from Spain in 1811; rich in oil -09162276 15 n 02 Caracas 0 capital_of_Venezuela 0 002 @i 08691669 n 0000 #p 09161803 n 0000 | the capital and largest city of Venezuela -09162414 15 n 01 Ciudad_Bolivar 0 004 @i 08524735 n 0000 @i 08633957 n 0000 #p 09161803 n 0000 %p 02712762 n 0000 | a port in eastern Venezuela on the Orinoco river -09162581 15 n 01 Cumana 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09161803 n 0000 | a port city in northeastern Venezuela on the Caribbean Sea; founded in 1523, it is the oldest European settlement in South America -09162803 15 n 01 Maracaibo 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09161803 n 0000 | a port city in northwestern Venezuela; a major oil center -09162955 15 n 01 Maracay 0 002 @i 08524735 n 0000 #p 09161803 n 0000 | a city in north central Venezuela; cattle center -09163077 15 n 01 Valencia 1 002 @i 08524735 n 0000 #p 09161803 n 0000 | an industrial city in northern Venezuela -09163192 15 n 04 Vietnam 0 Socialist_Republic_of_Vietnam 0 Viet_Nam 0 Annam 0 011 @i 08700255 n 0000 #p 08731606 n 0000 #m 08487504 n 0000 -r 01277540 n 0000 -r 01309807 n 0000 %p 09163584 n 0000 %p 09163844 n 0000 %p 09164095 n 0000 %p 09164241 n 0000 %p 09164417 n 0000 %m 09747191 n 0000 | a communist state in Indochina on the South China Sea; achieved independence from France in 1945 -09163584 15 n 01 North_Vietnam 0 002 @i 08700255 n 0000 #p 09163192 n 0000 | a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when South Vietnam collapsed at the end of the Vietnam War -09163844 15 n 01 South_Vietnam 0 002 @i 08700255 n 0000 #p 09163192 n 0000 | a former country in southeastern Asia that existed from 1954 (after the defeat of the French at Dien Bien Phu) until 1975 when it was defeated and annexed by North Vietnam -09164095 15 n 02 Hanoi 0 capital_of_Vietnam 0 002 @i 08691669 n 0000 #p 09163192 n 0000 | the capital city of Vietnam; located in North Vietnam -09164241 15 n 02 Ho_Chi_Minh_City 0 Saigon 0 002 @i 08524735 n 0000 #p 09163192 n 0000 | a city in South Vietnam; formerly (as Saigon) it was the capital of French Indochina -09164417 15 n 01 Haiphong 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09163192 n 0000 | a port city in northern Vietnam; industrial center -09164561 15 n 02 Yemen 0 Republic_of_Yemen 0 010 @i 08700255 n 0000 #p 08847694 n 0000 #p 09207288 n 0000 #m 08172103 n 0000 -r 08025112 n 0000 %p 09164903 n 0000 %p 09165146 n 0000 %p 09165294 n 0000 %p 09165464 n 0000 %m 09750770 n 0000 | a republic on the southwestern shores of the Arabian Peninsula on the Indian Ocean; formed in 1990 -09164903 15 n 01 Aden 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09164561 n 0000 | an important port of Yemen; located on the Gulf of Aden; its strategic location has made it a major trading center of southern Arabia since ancient times -09165146 15 n 02 Hodeida 0 Al-Hudaydah 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09164561 n 0000 | an important port in Yemen on the Red Sea -09165294 15 n 02 Mukalla 0 Al-Mukalla 0 003 @i 08524735 n 0000 @i 08633957 n 0000 #p 09164561 n 0000 | a port in southern Yemen on the Gulf of Aden to the east of Aden -09165464 15 n 03 Sana 0 Sanaa 0 Sana'a 0 002 @i 08691669 n 0000 #p 09164561 n 0000 | the capital and largest city of Yemen; on the central plateau -09165613 15 n 03 Zambia 0 Republic_of_Zambia 0 Northern_Rhodesia 0 008 @i 08698379 n 0000 #p 09189411 n 0000 + 03131331 a 0101 %p 09165996 n 0000 %p 09471638 n 0000 %p 09483129 n 0000 %m 09697771 n 0000 %m 09751772 n 0000 | a republic in central Africa; formerly controlled by Great Britain and called Northern Rhodesia until it gained independence within the commonwealth in 1964 -09165996 15 n 02 Lusaka 0 capital_of_Zambia 0 002 @i 08691669 n 0000 #p 09165613 n 0000 | the capital and largest city of Zambia -09166127 15 n 01 Low_Countries 0 002 @i 08574314 n 0000 #p 09275473 n 0000 | the lowland region of western Europe on the North Sea: Belgium and Luxembourg and the Netherlands -09166304 15 n 01 Lusitania 0 004 @i 08574314 n 0000 #p 08984788 n 0000 #p 09023321 n 0000 + 02958844 a 0101 | ancient region and Roman province on the Iberian Peninsula; corresponds roughly to modern Portugal and parts of Spain -09166534 15 n 04 Silesia 0 Slask 0 Slezsko 0 Schlesien 0 002 @i 08574314 n 0000 #p 09275473 n 0000 | a region of central Europe rich in deposits of coal and iron ore; annexed by Prussia in 1742 but now largely in Poland -09166756 15 n 01 Big_Sur 0 002 @i 08574314 n 0000 #p 09060768 n 0000 | a picturesque coastal region of California to the south of San Francisco -09166902 15 n 01 Silicon_Valley 0 002 @i 08574314 n 0000 #p 09060768 n 0000 | a region in California to the south of San Francisco that is noted for its concentration of high-technology industries -09167101 15 n 04 Zimbabwe 0 Republic_of_Zimbabwe 0 Rhodesia 0 Southern_Rhodesia 0 010 @i 08698379 n 0000 #p 09189411 n 0000 + 02788779 a 0301 + 03131750 a 0101 %p 09167505 n 0000 %p 09167652 n 0000 %p 09471638 n 0000 %p 09483129 n 0000 %m 09697771 n 0000 %m 09751895 n 0000 | a landlocked republic in south central Africa formerly called Rhodesia; achieved independence from the United Kingdom in 1980 -09167505 15 n 03 Harare 0 Salisbury 0 capital_of_Zimbabwe 0 002 @i 08691669 n 0000 #p 09167101 n 0000 | the capital and largest city of Zimbabwe -09167652 15 n 01 Bulawayo 0 002 @i 08524735 n 0000 #p 09167101 n 0000 | industrial city in southwestern Zimbabwe -09167767 15 n 02 Arabian_Desert 0 Great_Arabian_Desert 0 007 @i 08505573 n 0000 #p 08847694 n 0000 %p 09168020 n 0000 %p 09171674 n 0000 %p 09172111 n 0000 %p 09172751 n 0000 %p 09173023 n 0000 | a desert on the Arabian Peninsula in southwestern Asia -09168020 15 n 02 Arabian_Desert 1 Eastern_Desert 0 003 @i 08505573 n 0000 #p 08897065 n 0000 #p 09167767 n 0000 | a desert in Egypt between the Nile River and the Red Sea -09168193 15 n 01 Atacama_Desert 0 002 @i 08505573 n 0000 #p 08720481 n 0000 | a desert in northern Chile rich in nitrate and copper deposits -09168336 15 n 02 Australian_Desert 0 Great_Australian_Desert 0 007 @i 08505573 n 0000 #p 09211266 n 0000 %p 08505110 n 0000 %p 08505265 n 0000 %p 09169557 n 0000 %p 09169930 n 0000 %p 09170109 n 0000 | general name given to all desert areas in Australia -09168592 15 n 01 Black_Rock_Desert 0 002 @i 08505573 n 0000 #p 09110422 n 0000 | a desert in northwestern Nevada -09168707 15 n 01 Chihuahuan_Desert 0 005 @i 08505573 n 0000 #p 09141526 n 0000 #p 09114696 n 0000 #p 09057311 n 0000 #p 08740875 n 0000 | a desert in western Texas, New Mexico, Arizona, and northern Mexico -09168915 15 n 01 Colorado_Desert 0 002 @i 08505573 n 0000 #p 09060768 n 0000 | an arid region of southeastern California -09169038 15 n 03 Dasht-e-Kavir 0 Kavir_Desert 0 Great_Salt_Desert 0 002 @i 08505573 n 0000 #p 08910668 n 0000 | a salt desert in north central Iran -09169188 15 n 02 Dasht-e-Lut 0 Lut_Desert 0 002 @i 08505573 n 0000 #p 08910668 n 0000 | a desert in eastern Iran -09169303 15 n 01 Death_Valley 0 004 @i 08505573 n 0000 #p 09060768 n 0000 #p 09110422 n 0000 #p 09170996 n 0000 | a desert area that is part of the Mojave Desert in eastern California and southwestern Nevada; contains the lowest point in North America -09169557 15 n 01 Gibson_Desert 0 003 @i 08505573 n 0000 #p 08831004 n 0000 #p 09168336 n 0000 | a desert area in western Australia -09169690 15 n 01 Gila_Desert 0 002 @i 08505573 n 0000 #p 09057311 n 0000 | a desert area in southern Arizona -09169801 15 n 02 Gobi 0 Gobi_Desert 0 003 @i 08505573 n 0000 #p 08968879 n 0000 #p 08723006 n 0000 | a desert in central China -09169930 15 n 01 Great_Sandy_Desert 0 003 @i 08505573 n 0000 #p 08831004 n 0000 #p 09168336 n 0000 | a desert region in northwestern Australia to the north of the Gibson Desert -09170109 15 n 01 Great_Victoria_Desert 0 003 @i 08505573 n 0000 #p 08831004 n 0000 #p 09168336 n 0000 | a desert region in south central Australia to the north of the Nullarbor Plain -09170294 15 n 02 Kalahari 0 Kalahari_Desert 0 004 @i 08505573 n 0000 #p 08852389 n 0000 #p 08699654 n 0000 #p 08999482 n 0000 | a desert in southwestern Africa - largely Botswana -09170475 15 n 03 Kara_Kum 0 Qara_Qum 0 Turkestan_Desert 0 002 @i 08505573 n 0000 #p 09021503 n 0000 | a desert in Turkmenistan to the south of the Aral Sea -09170633 15 n 03 Kyzyl_Kum 0 Kizil_Kum 0 Qizil_Qum 0 002 @i 08505573 n 0000 #p 09022265 n 0000 | a desert in Uzbekistan to the southeast of the Aral Sea -09170788 15 n 01 Libyan_Desert 0 005 @i 08505573 n 0000 #p 09172283 n 0000 #p 08959683 n 0000 #p 08897065 n 0000 #p 09029457 n 0000 | the northeastern part of the Sahara Desert in Libya and Egypt and Sudan -09170996 15 n 04 Mojave 0 Mojave_Desert 0 Mohave 0 Mohave_Desert 0 004 @i 08505573 n 0000 #p 09060768 n 0000 #p 09057311 n 0000 %p 09169303 n 0000 | a desert area in southern California and western Arizona -09171204 15 n 01 Namib_Desert 0 002 @i 08505573 n 0000 #p 08699654 n 0000 | a desert in Namibia extending along the coast between the high plateau and the Atlantic Ocean -09171376 15 n 04 Nefud 0 An_Nefud 0 Nafud 0 An_Nafud 0 002 @i 08505573 n 0000 #p 08993288 n 0000 | a desert in northern Saudi Arabia that is noted for its red sand and violent winds -09171560 15 n 02 Negev 0 Negev_Desert 0 002 @i 08505573 n 0000 #p 08792548 n 0000 | a desert in southern Israel -09171674 15 n 01 Nubian_Desert 0 003 @i 08505573 n 0000 #p 09029457 n 0000 #p 09167767 n 0000 | an arid sandstone plateau in northeastern Sudan between the Nile and the Red Sea -09171853 15 n 01 Painted_Desert 0 002 @i 08505573 n 0000 #p 09057311 n 0000 | a desert on a high plateau in northeastern Arizona -09171984 15 n 01 Patagonian_Desert 0 002 @i 08505573 n 0000 #p 08711468 n 0000 | a semiarid region in southern South America -09172111 15 n 04 Rub_al-Khali 0 Ar_Rimsal 0 Dahna 0 Great_Sandy_Desert 1 003 @i 08505573 n 0000 #p 08993288 n 0000 #p 09167767 n 0000 | a desert in southern Saudi Arabia -09172283 15 n 02 Sahara 0 Sahara_Desert 0 004 @i 08505573 n 0000 #p 09189411 n 0000 %p 09170788 n 0000 %m 09734639 n 0000 | the world's largest desert (3,500,000 square miles) in northern Africa -09172480 15 n 02 Sub-Saharan_Africa 0 Black_Africa 0 002 @i 08574314 n 0000 #p 09189411 n 0000 | the region of Africa to the south of the Sahara Desert -09172634 15 n 01 Simpson_Desert 0 002 @i 08505573 n 0000 #p 08831004 n 0000 | a desert region of central Australia -09172751 15 n 02 Sinai 1 Sinai_Desert 0 003 @i 08505573 n 0000 #p 08896645 n 0000 #p 09167767 n 0000 | a desert on the Sinai Peninsula in northeastern Egypt -09172910 15 n 01 Sonoran_Desert 0 002 @i 08505573 n 0000 #p 09057311 n 0000 | a desert in southwestern Arizona -09173023 15 n 01 Syrian_Desert 0 006 @i 08505573 n 0000 #p 08913434 n 0000 #p 09033333 n 0000 #p 08927186 n 0000 #p 08993288 n 0000 #p 09167767 n 0000 | a desert of northern Arabia occupying western Iraq, southern Syria, eastern Jordan, and northern Saudi Arabia -09173288 15 n 02 Taklimakan_Desert 0 Taklamakan_Desert 0 002 @i 08505573 n 0000 #p 08723006 n 0000 | a desert in western China -09173417 15 n 02 Thar_Desert 0 Great_Indian_Desert 0 003 @i 08505573 n 0000 #p 08900535 n 0000 #p 08975902 n 0000 | a desert to the east of the Indus River in northwestern India and southeastern Pakistan -09173623 15 n 01 Cameroon 1 002 @i 09472597 n 0000 #p 08717209 n 0000 | an inactive volcano in western Cameroon; highest peak on the West African coast -09173777 15 n 04 Citlaltepetl 0 Mount_Orizaba 0 Mt_Orizaba 0 Pico_de_Orizaba 0 002 @i 09472597 n 0000 #p 08740875 n 0000 | an extinct volcano in southern Mexico between Mexico City and Veracruz; the highest peak in Mexico (18,695 feet) -09174015 15 n 03 Colima 0 Nevado_de_Colima 0 Volcan_de_Colima 0 002 @i 09472597 n 0000 #p 08740875 n 0000 | an active volcano in southwestern Mexico -09174166 15 n 01 Cotacachi 0 002 @i 09472597 n 0000 #p 08776687 n 0000 | an Andean volcano in northern Ecuador; last erupted in 1955 -09174301 15 n 01 Cotopaxi 0 002 @i 09472597 n 0000 #p 08776687 n 0000 | the world's largest active volcano; located in the Andes in north central Ecuador -09174457 15 n 01 Demavend 0 002 @i 09472597 n 0000 #p 08910668 n 0000 | an active volcano in northern Iran -09174566 15 n 01 El_Misti 0 002 @i 09472597 n 0000 #p 08979054 n 0000 | the world's 2nd largest active volcano; located in the Andes in southern Peru -09174718 15 n 03 Etna 0 Mount_Etna 0 Mt_Etna 0 002 @i 09472597 n 0000 #p 08811215 n 0000 | an inactive volcano in Sicily; last erupted in 1961; the highest volcano in Europe (10,500 feet) -09174908 15 n 01 Fuego 0 002 @i 09472597 n 0000 #p 08737041 n 0000 | a volcano in south central Guatemala -09175016 15 n 05 Fuji 0 Mount_Fuji 0 Fujiyama 0 Fujinoyama 0 Fuji-san 0 002 @i 09472597 n 0000 #p 08921850 n 0000 | an extinct volcano in south central Honshu that is the highest peak in Japan; last erupted in 1707; famous for its symmetrical snow-capped peak; a sacred mountain and site for pilgrimages -09175322 15 n 02 Galeras 0 Pasto 0 002 @i 09472597 n 0000 #p 08732116 n 0000 | an active volcano in southeastern Colombia in the Andes -09175459 15 n 01 Guallatiri 0 002 @i 09472597 n 0000 #p 08720481 n 0000 | the world's highest volcano; in the Andes in northern Chile; last erupted in 1959 -09175617 15 n 01 Huainaputina 0 002 @i 09472597 n 0000 #p 08979054 n 0000 | an inactive volcano in the Andes in southern Peru; last erupted in 1783 -09175767 15 n 01 Klyuchevskaya 0 002 @i 09472597 n 0000 #p 09021958 n 0000 | an inactive volcano on the Kamchatka Peninsula; last erupted in 1946 -09175915 15 n 03 Krakatau 0 Krakatao 0 Krakatoa 0 003 @i 09472597 n 0000 @i 09316454 n 0000 #p 08907606 n 0000 | a small volcanic island in Indonesia between Java and Sumatra; its violent eruption in 1883 was the greatest in recorded history -09176159 15 n 01 New_Siberian_Islands 0 002 @i 09316454 n 0000 #p 09204977 n 0000 | a group of islands in the Arctic Ocean to the north of Siberia and to the east of the Laptev Sea -09176342 15 n 01 Lascar 0 002 @i 09472597 n 0000 #p 08720481 n 0000 | a volcano in the Andes in Chile -09176446 15 n 01 Mauna_Kea 0 002 @i 09472597 n 0000 #p 09079505 n 0000 | an active volcano on north central Hawaii Island; highest peak in the Hawaiian Islands -09176608 15 n 01 Mauna_Loa 0 002 @i 09472597 n 0000 #p 09079505 n 0000 | an active volcano on south central Hawaii Island -09176732 15 n 01 Nyamuragira 0 002 @i 09472597 n 0000 #p 08734385 n 0000 | an active volcano in eastern Congo -09176844 15 n 01 Nyiragongo 0 002 @i 09472597 n 0000 #p 08734385 n 0000 | an active volcano in eastern Congo -09176955 15 n 01 Purace 0 002 @i 09472597 n 0000 #p 08732116 n 0000 | an inactive volcano in the Andes in southern Colombia; last erupted in 1950 -09177103 15 n 01 Sangay 0 002 @i 09472597 n 0000 #p 08776687 n 0000 | an inactive volcano in the Andes in central Ecuador; last erupted in 1946 -09177249 15 n 01 Tupungatito 0 002 @i 09472597 n 0000 #p 08720481 n 0000 | an inactive volcano in central Chile; last erupted in 1959 -09177385 15 n 03 Mount_Saint_Helens 0 Mount_St._Helens 0 Mt._St._Helens 0 003 @i 09472597 n 0000 #p 09237076 n 0000 #p 09152944 n 0000 | an active volcano in the Cascade Range in southwestern Washington; erupted violently in 1980 after 123 years of inactivity -09177647 15 n 01 Scythia 0 003 @i 08574314 n 0000 #p 09275016 n 0000 + 02793793 a 0101 | an ancient area of Eurasia extending from the Black Sea to the Aral Sea that was populated by Scythians from the eighth to the fourth century BC -09177883 15 n 03 Vesuvius 0 Mount_Vesuvius 0 Mt._Vesuvius 0 002 @i 09472597 n 0000 #p 08801678 n 0000 | a volcano in southwestern Italy on the Mediterranean coast; a Plinian eruption in 79 AD buried Pompeii and killed Pliny the Elder; last erupted in 1944 -09178141 15 n 01 North_Africa 0 003 @i 08574314 n 0000 #p 09189411 n 0000 %p 08707710 n 0000 | an area of northern Africa between the Sahara and the Mediterranean Sea -09178310 15 n 01 West_Africa 0 003 @i 08574314 n 0000 #p 09189411 n 0000 %p 08858713 n 0000 | an area of western Africa between the Sahara Desert and the Gulf of Guinea -09178481 15 n 02 Dar_al-Islam 0 House_of_Islam 0 001 @ 08574314 n 0000 | areas where Muslims are in the majority -09178596 15 n 02 Dar_al-harb 0 House_of_War 0 001 @ 08574314 n 0000 | areas where Muslims are in the minority and are persecuted -09178727 16 n 01 life 0 001 @ 00023773 n 0000 | a motive for living; "pottery was his life" -09178821 16 n 01 rational_motive 0 004 @ 00023773 n 0000 ~ 09178999 n 0000 ~ 09179776 n 0000 ~ 09180118 n 0000 | a motive that can be defended by reasoning or logical argument -09178999 16 n 02 reason 0 ground 0 006 @ 09178821 n 0000 + 00636888 v 0203 + 00634472 v 0101 ~ 09179264 n 0000 ~ 09179382 n 0000 ~ 09179606 n 0000 | a rational motive for a belief or action; "the reason that war was declared"; "the grounds for their declaration" -09179264 16 n 01 occasion 0 002 @ 09178999 n 0000 + 01646528 v 0101 | reason; "there was no occasion for complaint" -09179382 16 n 02 score 0 account 0 001 @ 09178999 n 0000 | grounds; "don't do it on my account"; "the paper was rejected on account of its length"; "he tried to blame the victim but his success on that score was doubtful" -09179606 16 n 02 why 0 wherefore 0 001 @ 09178999 n 0000 | the cause or intention underlying an action or situation, especially in the phrase `the whys and wherefores' -09179776 16 n 03 incentive 0 inducement 0 motivator 0 005 @ 09178821 n 0000 + 01649999 v 0301 + 00770437 v 0201 ! 09180118 n 0101 ~ 09179962 n 0000 | a positive motivational influence -09179962 16 n 02 moral_force 0 dynamic 0 001 @ 09179776 n 0000 | an efficient incentive; "they hoped it would act as a spiritual dynamic on all churches" -09180118 16 n 02 disincentive 0 deterrence 0 003 @ 09178821 n 0000 + 01764543 a 0201 ! 09179776 n 0101 | a negative motivational influence -09180259 16 n 01 irrational_motive 0 004 @ 00023773 n 0000 ~ 09181114 n 0000 ~ 09181557 n 0000 ~ 09183255 n 0000 | a motivation that is inconsistent with reason or logic -09180431 16 n 02 urge 0 impulse 0 005 @ 00023773 n 0000 ~ 09180616 n 0000 ~ 09180791 n 0000 ~ 09180967 n 0000 ~ 09183140 n 0000 | an instinctive motive; "profound religious impulses" -09180616 16 n 01 abience 0 004 @ 09180431 n 0000 ;c 06136258 n 0000 + 02599689 a 0101 ! 09180791 n 0101 | (psychology) an urge to withdraw or avoid a situation or an object -09180791 16 n 01 adience 0 004 @ 09180431 n 0000 ;c 06136258 n 0000 + 02603779 a 0101 ! 09180616 n 0101 | (psychology) an urge to accept or approach a situation or an object -09180967 16 n 03 death_instinct 0 death_wish 0 Thanatos 0 002 @ 09180431 n 0000 ;c 00704305 n 0000 | (psychoanalysis) an unconscious urge to die -09181114 16 n 01 irrational_impulse 0 002 @ 09180259 n 0000 ~ 09181330 n 0000 | a strong spontaneous and irrational motivation; "his first impulse was to denounce them"; "the urge to find out got him into trouble" -09181330 16 n 02 compulsion 1 irresistible_impulse 0 002 @ 09181114 n 0000 + 01583659 a 0101 | an urge to do or say something that might be better left undone or unsaid; "he felt a compulsion to babble on about the accident" -09181557 16 n 03 mania 0 passion 0 cacoethes 0 012 @ 09180259 n 0000 + 02391003 a 0102 ~ 09181889 n 0000 ~ 09181993 n 0000 ~ 09182142 n 0000 ~ 09182273 n 0000 ~ 09182401 n 0000 ~ 09182524 n 0000 ~ 09182650 n 0000 ~ 09182784 n 0000 ~ 09182929 n 0000 ~ 09183031 n 0000 | an irrational but irresistible motive for a belief or action -09181889 16 n 01 agromania 0 001 @ 09181557 n 0000 | an intense desire to be alone or out in the open -09181993 16 n 03 dipsomania 0 alcoholism 1 potomania 0 001 @ 09181557 n 0000 | an intense persistent desire to drink alcoholic beverages to excess -09182142 16 n 01 egomania 0 001 @ 09181557 n 0000 | an intense and irresistible love for yourself and concern for your own needs -09182273 16 n 01 kleptomania 0 001 @ 09181557 n 0000 | an irresistible impulse to steal in the absence of any economic motive -09182401 16 n 02 logorrhea 0 logomania 0 001 @ 09181557 n 0000 | pathologically excessive (and often incoherent) talking -09182524 16 n 02 monomania 0 possession 0 002 @ 09181557 n 0000 + 01584724 a 0101 | a mania restricted to one thing or idea -09182650 16 n 03 necrophilia 0 necrophilism 0 necromania 0 001 @ 09181557 n 0000 | an irresistible sexual attraction to dead bodies -09182784 16 n 01 phaneromania 0 001 @ 09181557 n 0000 | an irresistible desire to pick at superficial body parts (as in obsessive nail-biting) -09182929 16 n 01 pyromania 0 001 @ 09181557 n 0000 | an uncontrollable desire to set fire to things -09183031 16 n 01 trichotillomania 0 001 @ 09181557 n 0000 | an irresistible urge to pull out your own hair -09183140 16 n 02 wanderlust 0 itchy_feet 0 001 @ 09180431 n 0000 | very strong or irresistible impulse to travel -09183255 16 n 02 compulsion 0 obsession 0 005 @ 09180259 n 0000 + 01585022 a 0201 + 01583659 a 0101 + 09950457 n 0101 ~ 09183532 n 0000 | an irrational motive for performing trivial or repetitive actions, even against your will; "her compulsion to wash her hands repeatedly" -09183532 16 n 01 onomatomania 0 001 @ 09183255 n 0000 | obsession with a particular word which the person uses repeatedly or which intrudes into consciousness -09183693 16 n 04 ethical_motive 0 ethics 0 morals 0 morality 0 009 @ 00023773 n 0000 + 01548925 a 0401 + 02035086 a 0201 + 00905386 a 0201 + 10065066 n 0201 + 10065066 n 0202 ~ 09183971 n 0000 ~ 09184136 n 0000 ~ 09184668 n 0000 | motivation based on ideas of right and wrong -09183971 16 n 01 hedonism 0 004 @ 09183693 n 0000 + 01298884 a 0102 + 01298884 a 0101 + 10168183 n 0101 | the pursuit of pleasure as a matter of ethical principle -09184136 16 n 04 conscience 0 scruples 0 moral_sense 0 sense_of_right_and_wrong 0 004 @ 09183693 n 0000 ~ 05613625 n 0000 ~ 09184405 n 0000 ~ 09184543 n 0000 | motivation deriving logically from ethical or moral principles that govern a person's thoughts and actions -09184405 16 n 03 wee_small_voice 0 small_voice 0 voice_of_conscience 0 001 @ 09184136 n 0000 | an inner voice that judges your behavior -09184543 16 n 02 sense_of_shame 0 sense_of_duty 0 001 @ 09184136 n 0000 | a motivating awareness of ethical responsibility -09184668 16 n 04 Inner_Light 0 Light 0 Light_Within 0 Christ_Within 0 001 @ 09183693 n 0000 | a divine presence believed by Quakers to enlighten and guide the soul -09184834 16 n 02 psychic_energy 0 mental_energy 0 003 @ 00023773 n 0000 ~ 09184975 n 0000 ~ 09185440 n 0000 | an actuating force or factor -09184975 16 n 03 incitement 0 incitation 0 provocation 0 009 @ 09184834 n 0000 + 01759326 v 0308 + 01646866 v 0301 + 00794079 v 0301 + 01649999 v 0206 + 01230710 v 0202 + 00851239 v 0201 + 01230710 v 0102 ~ 09185280 n 0000 | something that incites or provokes; a means of arousing or stirring to action -09185280 16 n 01 signal 0 001 @ 09184975 n 0000 | any incitement to action; "he awaited the signal to start"; "the victory was a signal for wild celebration" -09185440 16 n 01 libidinal_energy 0 004 @ 09184834 n 0000 ;c 00704305 n 0000 ~ 09185612 n 0000 ~ 09185865 n 0000 | (psychoanalysis) psychic energy produced by the libido -09185612 16 n 02 cathexis 0 charge 0 003 @ 09185440 n 0000 ;c 00704305 n 0000 + 02684198 a 0101 | (psychoanalysis) the libidinal energy invested in some idea or person or object; "Freud thought of cathexis as a psychic analog of an electrical charge" -09185865 16 n 01 acathexis 0 002 @ 09185440 n 0000 ;c 00704305 n 0000 | (psychoanalysis) a lack of cathexis; a condition in which significant objects or memories arouse no emotion in an individual -09186064 17 n 03 Aare 0 Aar 0 Aare_River 0 002 @i 09411430 n 0000 #p 09031653 n 0000 | a river in north central Switzerland that runs northeast into the Rhine -09186225 17 n 02 Abukir 0 Abukir_Bay 0 002 #p 09350045 n 0000 @i 09215664 n 0000 | a bay on the Mediterranean Sea in northern Egypt -09186359 17 n 02 abyss 0 abysm 0 003 @ 09242389 n 0000 + 00690683 a 0201 + 00690683 a 0102 | a bottomless gulf or pit; any unfathomable (or apparently unfathomable) cavity or chasm or void extending below (often used figuratively) -09186592 17 n 01 abyssal_zone 0 001 @ 09376526 n 0000 | the deep sea (2000 meters or more) where there is no light -09186709 17 n 02 Acheron 0 River_Acheron 0 004 @i 09411430 n 0000 #p 05629381 n 0000 ;c 07979425 n 0000 + 00273652 a 0101 | (Greek mythology) a river in Hades across which the souls of the dead were carried by Charon -09186928 17 n 01 achondrite 0 002 @ 09416076 n 0000 + 02601326 a 0101 | a stony meteor lacking chondrules -09187036 17 n 01 acicula 0 002 @ 09385911 n 0000 + 02167133 a 0103 | a needlelike part or structure of a plant or animal or crystal; as a spine or bristle or crystal -09187204 17 n 01 Aconcagua 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | the highest mountain in the western hemisphere; located in the Andes in western Argentina (22,834 feet high) -09187407 17 n 02 Adams 0 Mount_Adams 0 003 @i 09360122 n 0000 #p 09237076 n 0000 #p 09152944 n 0000 | a mountain peak in southwestern Washington in the Cascade Range (12,307 feet high) -09187594 17 n 02 Adam's_Peak 0 Samanala 0 002 @i 09360122 n 0000 #p 08719100 n 0000 | a mountain peak in south central Sri Lanka (7,360 feet high) -09187743 17 n 02 Adige 0 River_Adige 0 002 @i 09411430 n 0000 #p 08801678 n 0000 | a river in northern Italy that flows southeast into the Adriatic Sea; "Verona is on the Adige" -09187923 17 n 02 Adirondacks 0 Adirondack_Mountains 0 002 @i 09403734 n 0000 #p 09117351 n 0000 | a mountain range in northeastern New York State; a popular resort area -09188094 17 n 01 Admiralty_Range 0 002 @i 09403734 n 0000 #p 09198106 n 0000 | mountains in Antarctica to the north of Victoria Land -09188229 17 n 01 adjunct 0 003 @ 09312645 n 0000 + 02354897 a 0102 ~ 05109511 n 0000 | something added to another thing but not an essential part of it -09188383 17 n 02 Adriatic 0 Adriatic_Sea 0 003 @i 09426788 n 0000 #p 09350045 n 0000 %p 09300199 n 0000 | an arm of the Mediterranean between Slovenia and Croatia and Montenegro and Albania on the east and Italy on the west -09188609 17 n 02 Aegean 0 Aegean_Sea 0 005 @i 09426788 n 0000 #p 09350045 n 0000 + 03017025 a 0101 %p 08782627 n 0000 %p 08790748 n 0000 | an arm of the Mediterranean between Greece and Turkey; a main trade route for the ancient civilizations of Crete and Greece and Rome and Persia -09188894 17 n 02 Aegospotami 0 Aegospotamos 0 002 @i 09229409 n 0000 #p 09039411 n 0000 | a creek emptying into the Hellespont in present-day Turkey; at its mouth in 405 BC the Spartan fleet under Lysander defeated the Athenians and ended the Peloponnesian War -09189157 17 n 04 aerie 0 aery 0 eyrie 0 eyry 0 001 @ 09221571 n 0000 | the lofty nest of a bird of prey (such as a hawk or eagle) -09189289 17 n 01 aerolite 0 002 @ 09352849 n 0000 + 02606960 a 0101 | a stony meteorite consisting of silicate minerals -09189411 17 n 01 Africa 0 070 @i 09254614 n 0000 #p 08562243 n 0000 + 02941790 a 0101 -r 00309906 n 0000 -r 01303252 n 0000 %p 08503238 n 0000 %p 08504375 n 0000 %p 08597323 n 0000 %p 08698379 n 0000 %p 08699426 n 0000 %p 08699654 n 0000 -r 08699654 n 0000 %p 08707917 n 0000 %p 08716219 n 0000 %p 08717209 n 0000 %p 08718577 n 0000 %p 08720037 n 0000 %p 08734044 n 0000 %p 08734385 n 0000 %p 08736517 n 0000 %p 08759420 n 0000 %p 08759986 n 0000 %p 08762495 n 0000 %p 08763500 n 0000 %p 08778061 n 0000 %p 08800258 n 0000 %p 08815046 n 0000 %p 08852389 n 0000 %p 08897065 n 0000 %p 08928193 n 0000 %p 08945529 n 0000 %p 08945821 n 0000 %p 08946187 n 0000 %p 08947319 n 0000 %p 08947772 n 0000 %p 08958830 n 0000 %p 08959254 n 0000 %p 08959683 n 0000 %p 08962187 n 0000 %p 08962610 n 0000 %p 08965598 n 0000 %p 08966820 n 0000 %p 08971025 n 0000 %p 08973330 n 0000 %p 08973776 n 0000 %p 08995862 n 0000 %p 08996871 n 0000 %p 08998560 n 0000 %p 08999154 n 0000 -r 08999154 n 0000 %p 08999482 n 0000 %p 09029242 n 0000 %p 09029457 n 0000 %p 09031233 n 0000 %p 09034550 n 0000 %p 09038597 n 0000 %p 09043052 n 0000 %p 09165613 n 0000 %p 09167101 n 0000 %p 09172283 n 0000 %p 09172480 n 0000 %p 09178141 n 0000 %p 09178310 n 0000 %p 09293340 n 0000 %p 09330467 n 0000 %p 09333512 n 0000 %p 09334049 n 0000 %p 09431409 n 0000 -r 09636339 n 0000 -r 10052497 n 0000 | the second largest continent; located to the south of Europe and bordered to the west by the South Atlantic and to the east by the Indian Ocean -09190918 17 n 01 agent 0 020 @ 00007347 n 0000 + 14007546 n 0101 ~ 04522421 n 0000 ~ 09221424 n 0000 ~ 09272468 n 0000 ~ 09310460 n 0000 ~ 09312843 n 0000 ~ 09338361 n 0000 ~ 09359631 n 0000 ~ 09364086 n 0000 ~ 09402704 n 0000 ~ 09407043 n 0000 ~ 09407541 n 0000 ~ 09408250 n 0000 ~ 09424489 n 0000 ~ 09433952 n 0000 ~ 09448829 n 0000 ~ 09455998 n 0000 ~ 09469285 n 0000 ~ 09476521 n 0000 | an active and efficient cause; capable of producing a certain effect; "their research uncovered new disease agents" -09191427 17 n 01 airborne_transmission 0 001 @ 09460680 n 0000 | a transmission mechanism in the which the infectious agent is spread as an aerosol and usually enters a person through the respiratory tract -09191635 17 n 01 air_bubble 0 001 @ 09229709 n 0000 | a bubble of air -09191707 17 n 03 Aire 0 River_Aire 0 Aire_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in northern England that flows southeast through West Yorkshire -09191875 17 n 02 Alabama 0 Alabama_River 0 002 @i 09411430 n 0000 #p 09053185 n 0000 | a river in Alabama formed by the confluence of the Coosa and Tallapoosa Rivers near Montgomery; flows southwestward to become a tributary of the Mobile River -09192122 17 n 01 Alaska_Peninsula 0 002 @i 09388848 n 0000 #p 09055015 n 0000 | a peninsula of southwestern Alaska (a continuation of the Aleutian Islands) -09192280 17 n 01 Alaska_Range 0 004 @i 09403734 n 0000 #p 09055015 n 0000 %p 09349425 n 0000 %p 09373623 n 0000 | a mountain range in south central Alaska; contains Mount McKinley -09192462 17 n 01 Aldebaran 0 002 @i 09221070 n 0000 #m 09455306 n 0000 | the brightest star in Taurus -09192566 17 n 01 Algol 0 002 @i 09221070 n 0000 #m 09390236 n 0000 | the second brightest star in Perseus; the first known eclipsing binary -09192708 17 n 02 Alleghenies 0 Allegheny_Mountains 0 005 @i 09403734 n 0000 #p 09201301 n 0000 #p 09134386 n 0000 #p 09155306 n 0000 #p 09148970 n 0000 | the western part of the Appalachian Mountains; extending from northern Pennsylvania to southwestern Virginia -09192973 17 n 02 Allegheny 0 Allegheny_River 0 003 @i 09411430 n 0000 #p 09134386 n 0000 #p 09117351 n 0000 | a river that rises in Pennsylvania and flows north into New York and then back south through Pennsylvania again to join the Monongahela River at Pittsburgh which is the beginning of the Ohio River -09193282 17 n 04 alluvial_sediment 0 alluvial_deposit 0 alluvium 0 alluvion 0 005 @ 09428967 n 0000 + 03006126 a 0301 ~ 09264803 n 0000 ~ 09393403 n 0000 %s 14719725 n 0000 | clay or silt or gravel carried by rushing streams and deposited where the stream slows down -09193551 17 n 02 alluvial_flat 0 alluvial_plain 0 001 @ 09281411 n 0000 | a flat resulting from repeated deposits of alluvial material by running water -09193705 17 n 01 alp 0 001 @ 09359803 n 0000 | any high mountain -09193772 17 n 03 Alpha_Centauri 0 Rigil_Kent 0 Rigil 0 002 @i 09221070 n 0000 #m 09240051 n 0000 | brightest star in Centaurus; second nearest star to the sun -09193933 17 n 01 Alpha_Crucis 0 002 @i 09444100 n 0000 #m 09441352 n 0000 | the brightest star in the Southern Cross -09194052 17 n 01 alpha_particle 0 001 @ 09386422 n 0000 | a positively charged particle that is the nucleus of the helium atom; emitted from natural or radioactive isotopes -09194227 17 n 02 Alpine_glacier 0 Alpine_type_of_glacier 0 001 @ 09289331 n 0000 | a glacier that moves down from a high valley -09194357 17 n 02 Alps 0 the_Alps 0 010 @i 09403734 n 0000 #p 09031653 n 0000 #p 08929922 n 0000 #p 08801678 n 0000 #p 08845555 n 0000 %p 09268592 n 0000 %p 09349192 n 0000 %p 09357847 n 0000 %p 09464652 n 0000 %p 09477567 n 0000 | a large mountain system in south-central Europe; scenic beauty and winter sports make them a popular tourist attraction -09194710 17 n 02 Altai_Mountains 0 Altay_Mountains 0 002 @i 09403734 n 0000 #p 09207288 n 0000 | a mountain range in central Asia that extends a thousand miles from Kazakhstan eastward into western Mongolia and northern China -09194938 17 n 01 Altair 0 002 @i 09221070 n 0000 #m 09202142 n 0000 | double star 15.7 light years from Earth; the brightest star in the Aquila constellation -09195098 17 n 02 altocumulus 0 altocumulus_cloud 0 001 @ 09261960 n 0000 | a cumulus cloud at an intermediate altitude of 2 or 3 miles -09195235 17 n 02 altostratus 0 altostratus_cloud 0 001 @ 09448251 n 0000 | a stratus cloud at an intermediate altitude of 2 or 3 miles -09195372 17 n 02 Amazon 0 Amazon_River 0 003 @i 09411430 n 0000 #p 08979054 n 0000 #p 08853741 n 0000 | a major South American river; arises in the Andes and flows eastward into the South Atlantic; the world's 2nd longest river (4000 miles) -09195615 17 n 01 America 0 005 @i 09334396 n 0000 + 02927303 a 0101 %p 08735705 n 0000 %p 09372504 n 0000 %p 09440400 n 0000 | North America and South America and Central America -09195796 17 n 01 American_Falls 0 003 @i 09475292 n 0000 #p 09370773 n 0000 #p 09117351 n 0000 | a part of Niagara Falls in western New York (north of Buffalo) -09195958 17 n 02 ammonite 0 ammonoid 0 002 @ 09284589 n 0000 + 02617812 a 0101 | one of the coiled chambered fossil shells of extinct mollusks -09196103 17 n 04 Amur 0 Amur_River 0 Heilong_Jiang 0 Heilong 0 003 @i 09411430 n 0000 #p 08723006 n 0000 #p 09006413 n 0000 | an Asian river between China and Russia; flows into the Sea of Okhotsk -09196302 17 n 01 Ancohuma 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08852843 n 0000 | a mountain peak in the Andes in Bolivia (20,960 feet high) -09196454 17 n 01 Andaman_Sea 0 003 @i 09215664 n 0000 #p 09216442 n 0000 %p 09298569 n 0000 | part of the Bay of Bengal to the west of the Malay Peninsula -09196611 17 n 01 Andes 0 029 @i 09403734 n 0000 #p 08732116 n 0000 #p 08776687 n 0000 #p 08979054 n 0000 #p 08720481 n 0000 #p 08852843 n 0000 #p 08711974 n 0000 + 03025853 a 0101 %p 09187204 n 0000 %p 09196302 n 0000 %p 09226591 n 0000 %p 09230500 n 0000 %p 09243615 n 0000 %p 09257280 n 0000 %p 09272773 n 0000 %p 09272927 n 0000 %p 09285828 n 0000 %p 09306497 n 0000 %p 09310011 n 0000 %p 09310162 n 0000 %p 09336702 n 0000 %p 09341673 n 0000 %p 09351257 n 0000 %p 09364426 n 0000 %p 09377657 n 0000 %p 09392961 n 0000 %p 09420273 n 0000 %p 09463721 n 0000 %p 09482566 n 0000 | a mountain range in South America running 5000 miles along the Pacific coast -09197271 17 n 01 Andromeda 0 001 @i 09252970 n 0000 | a constellation in the northern hemisphere between Cassiopeia and Pegasus; contains the Andromeda galaxy -09197432 17 n 04 Angara 0 Angara_River 0 Tunguska 0 Upper_Tunguska 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a river in southeastern Siberia that flows northwest from Lake Baikal to become a tributary of the Yenisei River -09197660 17 n 02 Angel 0 Angel_Falls 0 002 @i 09475292 n 0000 #p 09161803 n 0000 | the highest waterfall; has more than one leap; flow varies seasonally -09197815 17 n 01 anion 0 004 @ 09315159 n 0000 + 02930255 a 0101 ~ 14914945 n 0000 ~ 15064729 n 0000 | a negatively charged ion -09197945 17 n 02 Annapurna 0 Anapurna 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 | a mountain in the Himalayas in Nepal (26,500 feet high) -09198106 17 n 02 Antarctica 0 Antarctic_continent 0 012 @i 09254614 n 0000 #p 08494459 n 0000 %p 08494782 n 0000 %p 08541454 n 0000 %p 08567072 n 0000 %p 08628414 n 0000 %p 08652717 n 0000 %p 08678253 n 0000 %p 08682188 n 0000 %p 09188094 n 0000 %p 09198755 n 0000 %p 09417240 n 0000 | an extremely cold continent at the south pole almost entirely below the Antarctic Circle; covered by an ice cap up to 13,000 feet deep; "Antarctica is twice the size of Australia" -09198574 17 n 01 Antarctic_Ocean 0 005 @i 09376198 n 0000 #p 09382990 n 0000 #p 09209263 n 0000 #p 09311259 n 0000 #p 08494459 n 0000 | the southern waters surrounding Antarctica -09198755 17 n 02 Antarctic_Peninsula 0 Palmer_Peninsula 0 002 @i 09388848 n 0000 #p 09198106 n 0000 | a large peninsula of Antarctica that extends some 1200 miles north toward South America; separates the Weddell Sea from the South Pacific -09198997 17 n 01 Antares 0 002 @i 09221070 n 0000 #m 09426143 n 0000 | the brightest star in Scorpius -09199101 17 n 02 anthill 0 formicary 0 001 @ 09326662 n 0000 | a mound of earth made by ants as they dig their nest -09199219 17 n 01 antibaryon 0 001 @ 09300674 n 0000 | the antiparticle of a baryon; a hadron with a baryon number of -1 -09199341 17 n 01 antilepton 0 005 @ 09272085 n 0000 ~ 09199581 n 0000 ~ 09199728 n 0000 ~ 09200419 n 0000 ~ 09397896 n 0000 | the antiparticle of a lepton -09199498 17 n 01 antimeson 0 001 @ 09300674 n 0000 | the antiparticle of a meson -09199581 17 n 02 antimuon 0 positive_muon 0 001 @ 09199341 n 0000 | the antiparticle of a muon; decays to positron and neutrino and antineutrino -09199728 17 n 01 antineutrino 0 001 @ 09199341 n 0000 | the antiparticle of a neutrino -09199817 17 n 01 antineutron 0 001 @ 09374886 n 0000 | the antiparticle of a neutron -09199904 17 n 01 antiparticle 0 002 @ 09272085 n 0000 #s 14582535 n 0000 | a particle that has the same mass as another particle but has opposite values for its other properties; interaction of a particle and its antiparticle results in annihilation and the production of radiant energy -09200193 17 n 01 antiproton 0 001 @ 09374886 n 0000 | an unstable negatively charged proton; the antiparticle of a proton -09200317 17 n 01 antiquark 0 002 @ 09272085 n 0000 #p 09300674 n 0000 | the antiparticle of a quark -09200419 17 n 02 antitauon 0 tau-plus_particle 0 001 @ 09199341 n 0000 | an antilepton of very great mass -09200527 17 n 01 Antlia 0 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Hydra and Vela -09200649 17 n 02 Apalachicola 0 Apalachicola_River 0 002 @i 09411430 n 0000 #p 09071690 n 0000 | a river in northwestern Florida formed by the confluence of the Chattahoochee River and the Flint River at the Florida border -09200874 17 n 01 Apennines 0 003 @i 09403734 n 0000 #p 08801678 n 0000 -r 01274374 n 0000 | a mountain range extending the length of the Italian peninsula -09201031 17 n 01 aperture 0 005 @ 09304465 n 0000 #p 05311054 n 0000 ~ 05320183 n 0000 ~ 11679378 n 0000 ~ 11680032 n 0000 | a natural opening in something -09201189 17 n 01 Apollo_asteroid 0 001 @i 09208702 n 0000 | an asteroid whose orbit crosses the Earth's orbit -09201301 17 n 02 Appalachians 0 Appalachian_Mountains 0 010 @i 09403734 n 0000 #p 08563180 n 0000 %p 08493493 n 0000 %p 09192708 n 0000 %p 09224325 n 0000 %p 09238425 n 0000 %p 09261604 n 0000 %p 09293917 n 0000 %p 09294413 n 0000 %p 09453288 n 0000 | a mountain range in the eastern United States extending from Quebec to the Gulf of Mexico; a historic barrier to early westward expansion of the United States -09201714 17 n 01 Apus 0 001 @i 09252970 n 0000 | a constellation in the polar region of the southern hemisphere near Octans -09201840 17 n 01 Aquarius 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a zodiacal constellation in the southern hemisphere; between Capricornus and Pisces -09201998 17 n 01 aquifer 0 002 @ 09287968 n 0000 + 02636708 a 0101 | underground bed or layer yielding ground water for wells and springs etc -09202142 17 n 01 Aquila 0 002 @i 09252970 n 0000 %m 09194938 n 0000 | a constellation in the Milky Way near Cygnus; contains the star Altair -09202285 17 n 01 Ara 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Telescopium and Norma -09202405 17 n 01 Arabian_Sea 0 005 @i 09426788 n 0000 #p 09311259 n 0000 %p 09299125 n 0000 %p 09390424 n 0000 %p 09446868 n 0000 | a northwestern arm of the Indian Ocean between India and Arabia -09202603 17 n 01 Arafura_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | a part of the western Pacific Ocean to the north of Australia and to the south of New Guinea and the eastern islands of Indonesia -09202810 17 n 04 Araguaia 0 Araguaia_River 0 Araguaya 0 Araguaya_River 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a river in central Brazil that flows generally northward (with many falls) to join the Tocantins River -09203032 17 n 03 Ararat 0 Mount_Ararat 0 Mt._Ararat 0 002 @i 09360122 n 0000 #p 09039411 n 0000 | the mountain peak that Noah's ark landed on as the waters of the great flood receded -09203217 17 n 02 Aras 0 Araxes 0 003 @i 09411430 n 0000 #p 09039411 n 0000 #p 09017526 n 0000 | a river that rises in northeastern Turkey (near the source of the Euphrates) and flows generally eastward through Armenia to the Caspian Sea; ancient name was Araxes -09203481 17 n 01 Arauca 0 003 @i 09411430 n 0000 #p 08732116 n 0000 #p 09161803 n 0000 | a river that rises in northern Colombia and flows generally eastward to the Orinoco in central Venezuela -09203677 17 n 01 archeological_remains 0 003 @ 09407346 n 0000 @ 04073547 n 0000 ;u 06295235 n 0000 | a relic that has been excavated from the soil -09203827 17 n 01 archipelago 0 056 @ 09334396 n 0000 + 02640086 a 0101 ~i 08717730 n 0000 ~i 08722394 n 0000 ~i 08733690 n 0000 ~i 08747054 n 0000 ~i 08747737 n 0000 ~i 08748076 n 0000 ~i 08748280 n 0000 ~i 08749447 n 0000 ~i 08749864 n 0000 ~i 08764561 n 0000 ~i 08764899 n 0000 ~i 08780510 n 0000 ~i 08825987 n 0000 ~i 08835675 n 0000 ~i 08835875 n 0000 ~i 08836165 n 0000 ~i 08836329 n 0000 ~i 08836630 n 0000 ~i 08836886 n 0000 ~i 08837552 n 0000 ~i 08838716 n 0000 ~i 08838887 n 0000 ~i 08839916 n 0000 ~i 08840200 n 0000 ~i 08841667 n 0000 ~i 08841956 n 0000 ~i 08842258 n 0000 ~i 08842427 n 0000 ~i 08842583 n 0000 ~i 08842819 n 0000 ~i 08843085 n 0000 ~i 08887463 n 0000 ~i 08893223 n 0000 ~i 08893492 n 0000 ~i 08894319 n 0000 ~i 08920381 n 0000 ~i 08924691 n 0000 ~i 08926877 n 0000 ~i 08951957 n 0000 ~i 08953829 n 0000 ~i 08954057 n 0000 ~i 08977948 n 0000 ~i 08980300 n 0000 ~i 08985724 n 0000 ~i 08990344 n 0000 ~i 08990522 n 0000 ~i 08990701 n 0000 ~i 08990844 n 0000 ~i 08990999 n 0000 ~i 08997976 n 0000 ~i 09024668 n 0000 ~i 09057021 n 0000 ~i 09079153 n 0000 %m 09316454 n 0000 | a group of many islands in a large body of water -09204977 17 n 01 Arctic_Ocean 0 011 @i 09376198 n 0000 %p 08764561 n 0000 %p 08819397 n 0000 %p 08819683 n 0000 %p 09176159 n 0000 %p 09214422 n 0000 %p 09217508 n 0000 %p 09244831 n 0000 %p 09294285 n 0000 %p 09324118 n 0000 %p 09336052 n 0000 | ice covered waters surrounding the North Pole; mostly covered with solid ice or with ice floes and icebergs -09205334 17 n 01 Arcturus 0 002 @i 09288769 n 0000 #m 09226738 n 0000 | the 4th brightest star and the brightest star in the constellation Bootes; 36 light-years from Earth -09205509 17 n 01 arete 0 001 @ 09409752 n 0000 | a sharp narrow ridge found in rugged mountains -09205607 17 n 01 Argo 0 005 @i 09252970 n 0000 %p 09236077 n 0000 %p 09401159 n 0000 %p 09401613 n 0000 %p 09470343 n 0000 | formerly a large constellation in the southern hemisphere between Canis Major and the Southern Cross; now divided into Carina and Pyxis and Puppis and Vela -09205890 17 n 03 Argun 0 Argun_River 0 Ergun_He 0 002 @i 09411430 n 0000 #p 09207288 n 0000 | a river in eastern Asia that arises in China and flows northeast along the border between China and Russia to become a tributary of the Amur River -09206133 17 n 01 Aries 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a small zodiacal constellation in the northern hemisphere; between Pisces and Taurus -09206289 17 n 01 Aristarchus 0 001 @i 09344324 n 0000 | a bright crater on the Moon -09206375 17 n 02 Arkansas 0 Arkansas_River 0 005 @i 09411430 n 0000 #p 09067277 n 0000 #p 09087599 n 0000 #p 09131654 n 0000 #p 09059274 n 0000 | a river that rises in the Rocky Mountains in Colorado and flows southeast through Kansas and Oklahoma and through Arkansas to become a tributary of the Mississippi River -09206693 17 n 03 Arno 0 Arno_River 0 River_Arno 0 002 @i 09411430 n 0000 #p 08801678 n 0000 | a river in central Italy rising in the Apennines and flowing through Florence and Pisa to the Ligurian Sea -09206896 17 n 01 arroyo 0 002 @ 09300306 n 0000 ;r 08563627 n 0000 | a stream or brook -09206985 17 n 06 ascent 0 acclivity 0 rise 0 raise 0 climb 0 upgrade 0 008 @ 09437454 n 0000 + 02037989 v 0501 + 01921964 v 0501 + 01974062 v 0401 + 02484530 a 0201 + 02037472 v 0101 ! 09265620 n 0101 ~ 09466678 n 0000 | an upward slope or grade (as in a road); "the car couldn't make it up the rise" -09207288 17 n 01 Asia 0 053 @i 09254614 n 0000 #p 09275016 n 0000 + 02968525 a 0102 + 02968525 a 0101 -r 03374102 n 0000 -r 08023843 n 0000 %p 08700255 n 0000 %p 08701942 n 0000 %p 08703454 n 0000 %p 08715110 n 0000 %p 08723006 n 0000 %p 08724545 n 0000 %p 08798382 n 0000 %p 08800258 n 0000 %p 08847694 n 0000 %p 08848094 n 0000 %p 08848731 n 0000 %p 08852209 n 0000 %p 08900535 n 0000 %p 08906374 n 0000 %p 08906952 n 0000 %p 08910668 n 0000 %p 08912842 n 0000 %p 08913434 n 0000 %p 08921850 n 0000 %p 08927186 n 0000 %p 08929243 n 0000 %p 08954611 n 0000 %p 08955082 n 0000 %p 08955626 n 0000 %p 08957381 n 0000 %p 08964810 n 0000 %p 08968390 n 0000 %p 08968677 n 0000 %p 08968879 n 0000 %p 08975106 n 0000 %p 08975902 n 0000 %p 08978821 n 0000 %p 08986905 n 0000 %p 09007613 n 0000 %p 09019726 n 0000 %p 09020440 n 0000 %p 09020961 n 0000 %p 09021503 n 0000 %p 09022265 n 0000 %p 09033333 n 0000 %p 09038597 n 0000 %p 09044190 n 0000 %p 09164561 n 0000 %p 09194710 n 0000 %p 09205890 n 0000 %p 09293340 n 0000 %p 09328148 n 0000 | the largest continent with 60% of the earth's population; it is joined to Europe on the west to form Eurasia; it is the site of some of the world's earliest civilizations -09208496 17 n 01 asterism 0 006 @ 00019128 n 0000 #m 09252970 n 0000 ;c 06095022 n 0000 + 02645303 a 0101 ~i 09219858 n 0000 ~i 09340452 n 0000 | (astronomy) a cluster of stars (or a small constellation) -09208702 17 n 01 asteroid 0 008 @ 09355623 n 0000 + 02048344 a 0101 + 02980854 a 0101 ~i 09201189 n 0000 ~i 09240409 n 0000 ~ 09244022 n 0000 ~i 09383998 n 0000 ~i 09471224 n 0000 | any of numerous small celestial bodies composed of rock and metal that move around the sun (mainly between the orbits of Mars and Jupiter) -09209025 17 n 01 asthenosphere 0 002 @ 08591680 n 0000 #p 09260010 n 0000 | the lower layer of the crust -09209132 17 n 01 Atacama_Trench 0 001 @i 09461315 n 0000 | a depression in the floor of the Pacific Ocean off the coast of Chile -09209263 17 n 02 Atlantic 0 Atlantic_Ocean 0 043 @i 09376198 n 0000 + 02946507 a 0101 -r 01297706 n 0000 %p 08710678 n 0000 %p 08710951 n 0000 %p 08717730 n 0000 %p 08718391 n 0000 %p 08747054 n 0000 %p 08819397 n 0000 %p 08825211 n 0000 %p 08858248 n 0000 %p 08952628 n 0000 %p 08953151 n 0000 %p 08953829 n 0000 %p 08954057 n 0000 %p 08992648 n 0000 %p 09028643 n 0000 %p 09198574 n 0000 %p 09210236 n 0000 %p 09216588 n 0000 %p 09216781 n 0000 %p 09221723 n 0000 %p 09229249 n 0000 %p 09230361 n 0000 %p 09243405 n 0000 %p 09264425 n 0000 %p 09273447 n 0000 %p 09286478 n 0000 %p 09298410 n 0000 %p 09298698 n 0000 %p 09299397 n 0000 %p 09328596 n 0000 %p 09343422 n 0000 %p 09348236 n 0000 %p 09354283 n 0000 %p 09370383 n 0000 %p 09373016 n 0000 %p 09374036 n 0000 %p 09374306 n 0000 %p 09389746 n 0000 %p 09423943 n 0000 %p 09440948 n 0000 %p 09480241 n 0000 | the 2nd largest ocean; separates North and South America on the west from Europe and Africa on the east -09210236 17 n 01 Atlantic_Coast 0 002 @i 09428293 n 0000 #p 09209263 n 0000 | a coast of the Atlantic Ocean -09210346 17 n 01 Atlas_Mountains 0 004 @i 09403734 n 0000 #p 08969291 n 0000 #p 08705397 n 0000 #p 09037394 n 0000 | a mountain range in northern Africa between the Mediterranean and the Sahara Desert; extends from southwestern Morocco to northern Tunisia -09210604 17 n 01 atmosphere 0 009 @ 14877585 n 0000 + 02831736 a 0101 + 02831736 a 0102 %p 09277432 n 0000 %p 09352578 n 0000 ~ 09436708 n 0000 %p 09448090 n 0000 %p 09457367 n 0000 %p 09462600 n 0000 | the envelope of gases surrounding any celestial body -09210862 17 n 01 atoll 0 005 @ 09256479 n 0000 ~i 08839296 n 0000 ~i 08839475 n 0000 ~i 08839714 n 0000 ~i 09080989 n 0000 | an island consisting of a circular coral reef surrounding a lagoon -09211056 17 n 02 Auriga 0 Charioteer 0 003 @i 09252970 n 0000 %m 09234654 n 0000 %m 09273928 n 0000 | a conspicuous constellation in the northern hemisphere; between Great Bear and Orion at edge of Milky Way -09211266 17 n 01 Australia 0 019 @i 09254614 n 0000 #p 08562243 n 0000 #p 08652551 n 0000 %p 08831004 n 0000 %p 08833981 n 0000 %p 09168336 n 0000 %p 09211735 n 0000 %p 09235244 n 0000 %p 09235469 n 0000 %p 09263479 n 0000 %p 09277913 n 0000 %p 09278162 n 0000 %p 09292007 n 0000 %p 09292348 n 0000 %p 09292545 n 0000 ~i 09297920 n 0000 %p 09359312 n 0000 %p 09363420 n 0000 %p 09363620 n 0000 | the smallest continent; between the South Pacific and the Indian Ocean -09211735 17 n 01 Australian_Alps 0 004 @i 09403734 n 0000 #p 09292545 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a range of mountains in Australia that forms the southern end of the Great Dividing Range -09211944 17 n 04 Avon 0 River_Avon 0 Upper_Avon 0 Upper_Avon_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in central England that flows through Stratford-on-Avon and empties into the Severn -09212151 17 n 02 Avon 1 River_Avon 1 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in southwestern England rising in Gloucestershire and flowing through Bristol to empty into the estuary of the Severn -09212360 17 n 01 backwater 0 001 @ 09225146 n 0000 | a body of water that was created by a flood or tide or by being held or forced back by a dam; "the bayous and backwaters are breeding grounds for mosquitos" -09212572 17 n 01 badlands 0 003 @ 09335240 n 0000 ;u 06295235 n 0000 ~i 08502797 n 0000 | deeply eroded barren land -09212690 17 n 01 Baffin_Bay 0 001 @i 09426788 n 0000 | a body of water between Greenland and northeastern Canada; connected with the Arctic Ocean to the north and with the Atlantic Ocean (via the Labrador Sea) to the south; icebound in winter -09212935 17 n 03 Balaton 0 Lake_Balaton 0 Plattensee 0 002 @i 09328904 n 0000 #p 08952190 n 0000 | a large shallow lake in western Hungary -09213076 17 n 03 Balkans 0 Balkan_Mountains 0 Balkan_Mountain_Range 0 002 @i 09403734 n 0000 #p 08713772 n 0000 | the major mountain range of Bulgaria and the Balkan Peninsula -09213254 17 n 02 Baltic 0 Baltic_Sea 0 004 @i 09426788 n 0000 %p 09297423 n 0000 %p 09298267 n 0000 %p 09299265 n 0000 | a sea in northern Europe; stronghold of the Russian navy -09213434 17 n 01 bank 0 003 @ 09409512 n 0000 ~ 09224725 n 0000 ~ 09421799 n 0000 | a long ridge or pile; "a huge bank of earth" -09213565 17 n 01 bank 1 004 @ 09437454 n 0000 + 01587705 v 0101 ~ 09415584 n 0000 ~ 09475925 n 0000 | sloping land (especially the slope beside a body of water); "they pulled the canoe up on the bank"; "he sat on the bank of the river and watched the currents" -09213828 17 n 03 bank 2 cant 0 camber 0 003 @ 09437454 n 0000 + 02035425 v 0301 + 01884577 v 0201 | a slope in the turn of a road or track; the outside is higher than the inside in order to reduce the effects of centrifugal force -09214060 17 n 01 bar 0 003 @ 09409512 n 0000 @ 09214581 n 0000 ~ 09421951 n 0000 | a submerged (or partly submerged) ridge in a river or along a shore; "the boat ran aground on a submerged bar in the river" -09214269 17 n 01 barbecue_pit 0 001 @ 09393108 n 0000 | a pit where wood or charcoal is burned to make a bed of hot coals suitable for barbecuing meat -09214422 17 n 01 Barents_Sea 0 003 @i 09426788 n 0000 #p 09204977 n 0000 %p 09478810 n 0000 | the part of the Arctic Ocean to the north of Norway and Russia -09214581 17 n 01 barrier 0 004 @ 09349797 n 0000 ~ 09214060 n 0000 ~ 09223911 n 0000 ~ 09262233 n 0000 | anything serving to maintain separation by obstructing vision or access -09214760 17 n 01 barrier_island 0 002 @ 09316454 n 0000 ~i 09127701 n 0000 | a long narrow sandy island (wider than a reef) running parallel to the shore -09214916 17 n 01 barrier_reef 0 001 @ 09256479 n 0000 | a long coral reef near and parallel to the shore -09215023 17 n 02 baryon 0 heavy_particle 0 004 @ 09300674 n 0000 @ 09279161 n 0000 ~ 09308242 n 0000 ~ 09374886 n 0000 | any of the elementary particles having a mass equal to or greater than that of a proton and that participate in strong interactions; a hadron with a baryon number of +1 -09215315 17 n 01 base 0 002 @ 09385911 n 0000 + 02659733 a 0101 | the bottom or lowest part; "the base of the mountain" -09215437 17 n 01 basin 0 004 @ 09366017 n 0000 ~ 09245515 n 0000 ~ 09421031 n 0000 ~ 09457979 n 0000 | a natural depression in the surface of the land often with a lake at the bottom of it; "the basin of the Great Salt Lake" -09215664 17 n 02 bay 0 embayment 0 035 @ 09225146 n 0000 #p 09426788 n 0000 ~i 09186225 n 0000 ~i 09196454 n 0000 ~i 09216442 n 0000 ~i 09216588 n 0000 ~i 09216781 n 0000 ~i 09216968 n 0000 ~ 09220239 n 0000 ~i 09221723 n 0000 ~i 09226209 n 0000 ~i 09230361 n 0000 ~i 09234374 n 0000 ~i 09243405 n 0000 ~i 09264425 n 0000 ~i 09286318 n 0000 ~i 09286478 n 0000 ~ 09295790 n 0000 ~i 09301738 n 0000 ~i 09321338 n 0000 ~i 09327201 n 0000 ~i 09348236 n 0000 ~i 09355397 n 0000 ~i 09356781 n 0000 ~i 09358096 n 0000 ~i 09359312 n 0000 ~i 09365730 n 0000 ~i 09370383 n 0000 ~i 09380446 n 0000 ~i 09389746 n 0000 ~i 09400337 n 0000 ~i 09422048 n 0000 ~i 09422486 n 0000 ~i 09427876 n 0000 ~i 09454265 n 0000 | an indentation of a shoreline larger than a cove but smaller than a gulf -09216442 17 n 01 Bay_of_Bengal 0 003 @i 09215664 n 0000 #p 09311259 n 0000 %p 09196454 n 0000 | an arm of the Indian Ocean to the east of India -09216588 17 n 01 Bay_of_Biscay 0 002 @i 09215664 n 0000 #p 09209263 n 0000 | an arm of the Atlantic Ocean in western Europe; bordered by the west coast of France and the north coast of Spain -09216781 17 n 01 Bay_of_Fundy 0 002 @i 09215664 n 0000 #p 09209263 n 0000 | a bay of the North Atlantic between New Brunswick and Nova Scotia; noted for rapid tides as great as 70 feet -09216968 17 n 01 Bay_of_Naples 0 002 @i 09215664 n 0000 #p 08801678 n 0000 | an arm of the Tyrrhenian Sea at Naples -09217086 17 n 01 bayou 0 001 @ 09328904 n 0000 | a swampy arm or slow-moving outlet of a lake (term used mainly in Mississippi and Louisiana) -09217230 17 n 01 beach 0 005 @ 09287968 n 0000 #p 09433442 n 0000 + 01978947 v 0101 ~ 09393524 n 0000 %s 15019030 n 0000 | an area of sand sloping down to the water of a sea or lake -09217414 17 n 01 beachfront 0 001 @ 09334396 n 0000 | a strip of land running along a beach -09217508 17 n 01 Beaufort_Sea 0 002 @i 09426788 n 0000 #p 09204977 n 0000 | part of the Arctic Ocean to the northeast of Alaska -09217638 17 n 02 bed 0 bottom 0 005 @ 09366017 n 0000 ~ 09330378 n 0000 ~ 09376526 n 0000 ~ 09415671 n 0000 ~ 09448690 n 0000 | a depression forming the ground under a body of water; "he searched for treasure on the ocean bed" -09217867 17 n 01 bed 1 003 @ 08657249 n 0000 ;c 06115701 n 0000 ~ 09379868 n 0000 | (geology) a stratum of rock (especially sedimentary rock); "they found a bed of sandstone" -09218044 17 n 01 bedrock 0 001 @ 09416076 n 0000 | solid unweathered rock lying beneath surface deposits of soil -09218159 17 n 02 beehive 0 hive 0 002 @ 09369169 n 0000 %p 09218315 n 0000 | a structure that provides a natural habitation for bees; as in a hollow tree -09218315 17 n 01 honeycomb 0 002 @ 04341686 n 0000 #p 09218159 n 0000 | a structure of small hexagonal cells constructed from beeswax by bees and used to store honey and larvae -09218494 17 n 01 belay 0 003 @ 09381242 n 0000 + 01342755 v 0101 + 01342636 v 0101 | something to which a mountain climber's rope can be secured -09218641 17 n 01 ben 0 003 @ 09359803 n 0000 ;r 08890097 n 0000 ;r 08859173 n 0000 | a mountain or tall hill; "they were climbing the ben" -09218782 17 n 01 Bering_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | part of the North Pacific between Alaska and Siberia; connected to the Arctic Ocean by the Bering Strait -09218963 17 n 01 Bering_Strait 0 001 @i 09446115 n 0000 | a strait connecting the Bering Sea to the Arctic Ocean -09219078 17 n 02 Berkshires 0 Berkshire_Hills 0 002 @i 09403734 n 0000 #p 09095023 n 0000 | a low mountain range in western Massachusetts; a resort area -09219233 17 n 01 berm 0 001 @ 09337253 n 0000 | a narrow ledge or shelf typically at the top or bottom of a slope -09219349 17 n 01 Beta_Centauri 0 002 @i 09444100 n 0000 #m 09240051 n 0000 | the second brightest star in Centaurus -09219467 17 n 01 Beta_Crucis 0 002 @i 09444100 n 0000 #m 09441352 n 0000 | the second brightest star in the Southern Cross -09219592 17 n 01 beta_particle 0 001 @ 09386422 n 0000 | a high-speed electron or positron emitted in the decay of a radioactive isotope -09219731 17 n 02 Betelgeuse 0 Alpha_Orionis 0 002 @i 09450708 n 0000 #m 09380117 n 0000 | the second brightest star in Orion -09219858 17 n 06 Big_Dipper 0 Dipper 1 Plough 0 Charles's_Wain 0 Wain 0 Wagon 0 002 @i 09208496 n 0000 #p 09292189 n 0000 | a group of seven bright stars in the constellation Ursa Major -09220046 17 n 02 Bighorn 0 Bighorn_River 0 003 @i 09411430 n 0000 #p 09159003 n 0000 #p 09108164 n 0000 | a river that flows from central Wyoming to the Yellowstone River in southern Montana -09220239 17 n 01 bight 0 003 @ 09215664 n 0000 ~i 09220434 n 0000 ~i 09292007 n 0000 | a broad bay formed by an indentation in the shoreline; "the Bight of Benin"; "the Great Australian Bight" -09220434 17 n 01 Bight_of_Benin 0 002 @i 09220239 n 0000 #p 09298410 n 0000 | a broad indentation of the Gulf of Guinea in western Africa -09220574 17 n 01 Big_Sioux_River 0 002 @i 09411430 n 0000 #p 09138935 n 0000 | a river that rises in northeastern South Dakota and flows southward to join the Missouri River at Sioux City, Iowa -09220770 17 n 01 billabong 0 001 @ 09228324 n 0000 | a branch of a river made by water flowing from the main stream only when the water level is high -09220922 17 n 01 billabong 1 002 @ 09397607 n 0000 ;r 08831004 n 0000 | a stagnant pool of water in the bed of a stream that flows intermittently -09221070 17 n 03 binary_star 0 binary 0 double_star 0 011 @ 09444100 n 0000 ~i 09192462 n 0000 ~i 09192566 n 0000 ~i 09193772 n 0000 ~i 09194938 n 0000 ~i 09198997 n 0000 ~i 09273928 n 0000 ~i 09399485 n 0000 ~i 09410365 n 0000 ~i 09435965 n 0000 ~i 09469912 n 0000 | a system of two stars that revolve around each other under their mutual gravitation -09221424 17 n 02 biological_agent 0 biohazard 0 001 @ 09190918 n 0000 | any bacterium or virus or toxin that could be used in biological warfare -09221571 17 n 03 bird's_nest 0 bird_nest 0 birdnest 0 002 @ 09369169 n 0000 ~ 09189157 n 0000 | nest where birds lay their eggs and hatch their young -09221723 17 n 01 Biscayne_Bay 0 003 @i 09215664 n 0000 #p 09209263 n 0000 #p 09071690 n 0000 | a narrow bay formed by an inlet from the Atlantic Ocean in southeastern Florida -09221900 17 n 01 Bismarck_Sea 0 002 @i 09426788 n 0000 -r 01271669 n 0000 | an arm of the South Pacific to the southwest of the Bismarck Archipelago -09222051 17 n 05 bit 0 chip 0 flake 0 fleck 0 scrap 0 011 @ 09285254 n 0000 + 02729182 a 0301 + 02729182 a 0302 + 01259951 v 0304 + 01260291 v 0201 + 01259691 v 0201 + 01259458 v 0201 ~ 09348949 n 0000 ~ 09425607 n 0000 ~ 09426621 n 0000 ~ 09442838 n 0000 | a small fragment of something broken off from the whole; "a bit of rock caught him in the eye" -09222406 17 n 03 black_body 0 blackbody 0 full_radiator 0 001 @ 00019128 n 0000 | a hypothetical object capable of absorbing all the electromagnetic radiation falling on it; "a black body maintained at a constant temperature is a full radiator at that temperature because the radiation reaching and leaving it must be in equilibrium" -09222742 17 n 02 Black_Forest 0 Schwarzwald 0 002 @i 09284015 n 0000 ;r 08766988 n 0000 | a hilly forest region in southwestern Germany -09222880 17 n 01 Black_Hills 0 004 @i 09403734 n 0000 #p 09138935 n 0000 #p 09159003 n 0000 %p 09417668 n 0000 | mountains in southwestern South Dakota and northeastern Wyoming; sacred to the Sioux (whites settling in the Black Hills led to the Battle of Little Bighorn); site of Mount Rushmore -09223177 17 n 01 black_hole 0 001 @ 08630039 n 0000 | a region of space resulting from the collapse of a star; extremely high gravitational field -09223325 17 n 02 Black_Sea 0 Euxine_Sea 0 002 @i 09426788 n 0000 %p 09427876 n 0000 | a sea between Europe and Asia; a popular resort area of eastern Europeans -09223487 17 n 02 bladder_stone 0 cystolith 0 001 @ 09230768 n 0000 | a calculus formed in the bladder -09223591 17 n 01 blade 0 001 @ 09409203 n 0000 | something long and thin resembling a blade of grass; "a blade of lint on his suit" -09223725 17 n 02 blanket 0 mantle 1 005 @ 09257949 n 0000 + 01605404 v 0201 + 02085320 v 0201 + 02749405 v 0101 + 01359007 v 0101 | anything that covers; "there was a blanket of snow" -09223911 17 n 01 blood-brain_barrier 0 001 @ 09214581 n 0000 | a mechanism that creates a barrier between brain tissues and circulating blood; serves to protect the central nervous system; "the brain was protected from the large molecules of the virus by the blood-brain barrier" -09224193 17 n 01 Blue_Nile 0 001 @i 09302127 n 0000 | a headstream of the Nile; joins the White Nile at Khartoum to form the Nile -09224325 17 n 02 Blue_Ridge_Mountains 0 Blue_Ridge 0 005 @i 09403734 n 0000 #p 09201301 n 0000 #p 09134386 n 0000 #p 09148970 n 0000 #p 09126305 n 0000 | a range of the Appalachians extending from southern Pennsylvania to northern Georgia -09224566 17 n 04 blue_sky 0 blue 0 blue_air 0 wild_blue_yonder 0 001 @ 09436708 n 0000 | the sky as viewed during daylight; "he shot an arrow into the blue" -09224725 17 n 01 bluff 0 001 @ 09213434 n 0000 | a high steep bank (usually formed by river erosion) -09224828 17 n 01 b-meson 0 001 @ 09352282 n 0000 | exceedingly short-lived meson -09224911 17 n 01 body 0 005 @ 00019128 n 0000 ~ 05442131 n 0000 ~ 09310806 n 0000 ~ 09348055 n 0000 ~ 09386422 n 0000 | an individual 3-dimensional object that has mass and that is distinguishable from other objects; "heavenly body" -09225146 17 n 02 body_of_water 0 water 0 032 @ 00002452 n 0000 %s 14845743 n 0000 #p 09307902 n 0000 #p 09451517 n 0000 ;c 09411430 n 0000 ;c 09328904 n 0000 ;c 09376198 n 0000 ~ 09212360 n 0000 ~ 09215664 n 0000 ~ 09241247 n 0000 ~ 09270508 n 0000 ~ 09274500 n 0000 ~ 09282534 n 0000 ~ 09283623 n 0000 ~ 09296121 n 0000 ~ 09302804 n 0000 ~ 09313716 n 0000 ~ 09328904 n 0000 ~ 09345932 n 0000 ~ 09354608 n 0000 ~ 09376198 n 0000 ~ 09377125 n 0000 ~ 09397268 n 0000 ~ 09397607 n 0000 ~ 09426788 n 0000 ~ 09430615 n 0000 ~ 09433134 n 0000 ~ 09440186 n 0000 ~ 09448361 n 0000 ~ 09456614 n 0000 ~ 09475292 n 0000 ~ 09476331 n 0000 | the part of the earth's surface covered with water (such as a river or lake or ocean); "they invaded our territorial waters"; "they were sitting by the water's edge" -09225943 17 n 02 bog 0 peat_bog 0 004 @ 09477890 n 0000 + 02548066 a 0101 ~ 09355850 n 0000 ~ 09438313 n 0000 | wet spongy ground of decomposing vegetation; has poorer drainage than a swamp; soil is unfit for cultivation but can be cut and dried and used for fuel -09226209 17 n 02 Bo_Hai 0 Po_Hai 0 003 @i 09215664 n 0000 #p 09481958 n 0000 #p 08723006 n 0000 | an inlet of the Yellow Sea, on the coast of Eastern China -09226367 17 n 01 bolt-hole 0 001 @ 09304465 n 0000 | a hole through which an animal may bolt when pursued into its burrow or den -09226498 17 n 01 bonanza 0 001 @ 09470222 n 0000 | an especially rich vein of precious ore -09226591 17 n 01 Bonete 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain in the Andes in Argentina (22,546 feet high) -09226738 17 n 01 Bootes 0 002 @i 09252970 n 0000 %m 09205334 n 0000 | a constellation in the northern hemisphere near Ursa Major -09226869 17 n 01 borrow_pit 0 001 @ 09393108 n 0000 | a pit created to provide earth that can be used as fill at another site -09226997 17 n 01 boson 0 003 @ 09386422 n 0000 ~ 09287415 n 0000 ~ 09352282 n 0000 | any particle that obeys Bose-Einstein statistics but not the Pauli exclusion principle; all nuclei with an even mass number are bosons -09227219 17 n 01 Bosporus 0 002 @i 09446115 n 0000 #p 09039411 n 0000 | a strait connecting the Mediterranean and the Black Sea; separates the European and Asian parts of Turkey; an important shipping route -09227428 17 n 02 bottomland 0 bottom 1 001 @ 09335240 n 0000 | low-lying alluvial land near a river -09227530 17 n 02 bottom_quark 0 beauty_quark 0 001 @ 09401834 n 0000 | a quark with a charge of -1/3 and a mass about 10,000 times that of an electron -09227683 17 n 01 Bougainville_Trench 0 001 @i 09461315 n 0000 | a depression in the floor of the Pacific Ocean between New Guinea and the Solomon Islands -09227839 17 n 02 boulder 0 bowlder 0 006 @ 09416076 n 0000 + 02241988 a 0102 ~i 09099098 n 0000 ~ 09289177 n 0000 ~ 09415793 n 0000 ~ 09433721 n 0000 | a large smooth mass of rock detached from its place of origin -09228055 17 n 01 brae 0 002 @ 09303528 n 0000 ;r 08890097 n 0000 | a slope or hillside -09228144 17 n 02 Brahmaputra 0 Brahmaputra_River 0 004 @i 09411430 n 0000 #p 08723006 n 0000 #p 08900535 n 0000 #p 08848731 n 0000 | an Asian river; flows into the Bay of Bengal -09228324 17 n 01 branch 1 005 @ 09448361 n 0000 + 00328802 v 0101 ~ 09220770 n 0000 ~ 09267602 n 0000 ~ 09278997 n 0000 | a stream or river connected to a larger one -09228492 17 n 01 branched_chain 0 001 @ 09378929 n 0000 | an open chain of atoms with one or more side chains attached to it -09228619 17 n 02 Brazos 0 Brazos_River 0 003 @i 09411430 n 0000 #p 09114696 n 0000 #p 09141526 n 0000 | a river that rises in Mexico and flows across Texas into the Gulf of Mexico -09228801 17 n 01 breach 0 002 @ 09379111 n 0000 + 01593614 v 0102 | an opening (especially a gap in a dike or fortification) -09228928 17 n 01 Brenner_Pass 0 003 @i 09386842 n 0000 #p 08845555 n 0000 #p 08801678 n 0000 | an Alpine mountain pass connecting Innsbruck in Austria with Bolzano in Italy that has long been a route for trade and for invasions -09229158 17 n 01 brickbat 0 001 @ 09285254 n 0000 | a fragment of brick used as a weapon -09229249 17 n 01 Bristol_Channel 0 002 @i 09313716 n 0000 #p 09209263 n 0000 | an inlet of the Atlantic Ocean between southern Wales and southwestern England -09229409 17 n 02 brook 0 creek 0 004 @ 09448361 n 0000 ~i 09151800 n 0000 ~i 09188894 n 0000 ~ 09229641 n 0000 | a natural stream of water smaller than a river (and often a tributary of a river); "the creek dried up every summer" -09229641 17 n 01 brooklet 0 001 @ 09229409 n 0000 | a small brook -09229709 17 n 01 bubble 0 008 @ 09289709 n 0000 + 02276305 a 0102 + 02187922 v 0105 + 00519056 v 0101 + 00003431 v 0102 ~ 09191635 n 0000 ~ 09282724 n 0000 ~ 09439120 n 0000 | a hollow globule of gas (e.g., air or carbon dioxide) -09229941 17 n 01 bullet_hole 0 001 @ 09304465 n 0000 | a hole made by a bullet passing through it -09230041 17 n 02 burrow 0 tunnel 0 004 @ 09304750 n 0000 + 02042067 v 0202 + 02042067 v 0101 ~ 09474765 n 0000 | a hole made by an animal, usually for shelter -09230202 17 n 01 butte 0 002 @ 09303008 n 0000 ;r 08682819 n 0000 | a hill that rises abruptly from the surrounding region; has a flat top and sloping sides -09230361 17 n 01 Buzzards_Bay 0 002 @i 09215664 n 0000 #p 09209263 n 0000 | an inlet of the Atlantic Ocean in southeastern Massachusetts -09230500 17 n 01 Cachi 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain in the Andes in Argentina (22,047 feet high) -09230646 17 n 01 Caelum 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Columba and Eridanus -09230768 17 n 02 calculus 0 concretion 0 009 @ 09416076 n 0000 + 02674642 a 0101 ~ 09223487 n 0000 ~ 09273681 n 0000 ~ 09286200 n 0000 ~ 09325824 n 0000 ~ 09400584 n 0000 ~ 09434125 n 0000 ~ 09467696 n 0000 | a hard lump produced by the concretion of mineral salts; found in hollow organs or ducts of the body; "renal calculi can be very painful" -09231117 17 n 01 caldera 0 001 @ 09472413 n 0000 | a large crater caused by the violent explosion of a volcano that collapses into a depression -09231263 17 n 01 Callisto 0 001 @i 09285979 n 0000 | the second largest of Jupiter's satellites -09231361 17 n 02 Caloosahatchee 0 Caloosahatchee_River 0 002 @i 09411430 n 0000 #p 09071690 n 0000 | a river in southern Florida that flows westerly to the Gulf of Mexico; forms the western end of the Cross-Florida Waterway -09231587 17 n 03 Cam 0 River_Cam 0 Cam_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in east central England that flows past Cambridge to join the Ouse River -09231761 17 n 01 Cambrian_Mountains 0 001 @i 09453008 n 0000 | a rugged plateau that runs north to south through central Wales -09231890 17 n 02 Canadian 0 Canadian_River 0 004 @i 09411430 n 0000 #p 09114696 n 0000 #p 09141526 n 0000 #p 09131654 n 0000 | a river rising in northeastern New Mexico and flowing eastward across the Texas panhandle to become a tributary of the Arkansas River in Oklahoma -09232165 17 n 02 Canadian_Falls 0 Horseshoe_Falls 0 003 @i 09475292 n 0000 #p 09370773 n 0000 #p 08827126 n 0000 | a part of Niagara Falls in Ontario -09232317 17 n 01 canal 0 002 @ 09241247 n 0000 ;c 06095022 n 0000 | (astronomy) an indistinct surface feature of Mars once thought to be a system of channels; they are now believed to be an optical illusion -09232526 17 n 02 Canandaigua_Lake 0 Lake_Canandaigua 0 002 @i 09328904 n 0000 #m 08567600 n 0000 | a glacial lake in central New York; one of the Finger Lakes -09232687 17 n 01 Cancer 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a small zodiacal constellation in the northern hemisphere; between Leo and Gemini -09232841 17 n 02 Canis_Major 0 Great_Dog 0 002 @i 09252970 n 0000 %m 09435965 n 0000 | a constellation to the southeast of Orion; contains Sirius -09232989 17 n 02 Canis_Minor 0 Little_Dog 0 002 @i 09252970 n 0000 %m 09399485 n 0000 | a constellation to the east of Orion; contains Procyon -09233134 17 n 01 Canopus 0 002 @i 09450708 n 0000 #m 09236077 n 0000 | supergiant star 650 light years from Earth; second brightest star in the sky -09233284 17 n 01 Cantabrian_Mountains 0 002 @i 09403734 n 0000 #p 09023321 n 0000 | a range of mountains in northern Spain along the coast of the Bay of Biscay -09233446 17 n 02 canyon 0 canon 0 003 @ 09405787 n 0000 ;r 09372504 n 0000 %p 09233603 n 0000 | a ravine formed by a river in an area with little rainfall -09233603 17 n 01 canyonside 0 002 @ 09437454 n 0000 #p 09233446 n 0000 | the steeply sloping side of a canyon -09233715 17 n 02 cape 0 ness 0 016 @ 09334396 n 0000 ~i 08722645 n 0000 ~i 08765771 n 0000 ~i 08811653 n 0000 ~i 09002195 n 0000 ~i 09114262 n 0000 ~i 09127014 n 0000 ~i 09127161 n 0000 ~i 09127274 n 0000 ~i 09127461 n 0000 ~i 09234885 n 0000 ~i 09235053 n 0000 ~i 09235244 n 0000 ~i 09305479 n 0000 ~i 09436132 n 0000 ~ 09442595 n 0000 | a strip of land projecting into a body of water -09234104 17 n 02 Cape_Canaveral 0 Cape_Kennedy 0 002 @i 09399592 n 0000 #p 09071690 n 0000 | a sandy promontory (formerly Cape Kennedy) extending into the Atlantic Ocean from a barrier island off the eastern coast of Florida; the site of a NASA center for spaceflight -09234374 17 n 01 Cape_Cod_Bay 0 002 @i 09215664 n 0000 #p 09348236 n 0000 | the southern part of Massachusetts Bay -09234491 17 n 01 Cape_Fear_River 0 002 @i 09411430 n 0000 #p 09126305 n 0000 | a river in North Carolina that flows southeast to the Atlantic Ocean at Cape Fear -09234654 17 n 01 Capella 0 002 @i 09288769 n 0000 #m 09211056 n 0000 | the brightest star in Auriga -09234756 17 n 01 Cape_Sable 0 002 @i 09399592 n 0000 #p 08826306 n 0000 | a promontory on the far southern part of Nova Scotia -09234885 17 n 01 Cape_Sable 1 002 @i 09233715 n 0000 #p 08604487 n 0000 | a cape at the southwest tip of Florida; the southernmost part of the United States mainland -09235053 17 n 01 Cape_Trafalgar 0 002 @i 09233715 n 0000 #p 09023321 n 0000 | a small cape in southwestern Spain; "Nelson defeated the French and Spanish fleets off Cape Trafalgar in 1805" -09235244 17 n 01 Cape_York 0 004 @i 09233715 n 0000 #p 09235469 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | the northern tip of Cape York Peninsula at the Torres Strait; the northernmost point of the Australian mainland -09235469 17 n 01 Cape_York_Peninsula 0 005 @i 09388848 n 0000 #p 08832691 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 %p 09235244 n 0000 | a peninsula in Queensland in northeastern Australia between the Gulf of Carpentaria and the Coral Sea -09235713 17 n 02 Capricornus 0 Capricorn 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a faint zodiacal constellation in the southern hemisphere; between Sagittarius and Aquarius -09235894 17 n 02 Caribbean 0 Caribbean_Sea 0 002 @i 09426788 n 0000 %p 08746942 n 0000 | an arm of the Atlantic Ocean between North and South America; the origin of the Gulf stream -09236077 17 n 01 Carina 0 003 @i 09252970 n 0000 #p 09205607 n 0000 %m 09233134 n 0000 | a keel-shaped constellation in the southern hemisphere; contains the start Canopus -09236251 17 n 01 Carlsbad_Caverns 0 002 @i 09239302 n 0000 #p 09114696 n 0000 | a group of caverns in southeastern New Mexico noted for their stalactites and stalagmites -09236423 17 n 02 Carpathians 0 Carpathian_Mountains 0 006 @i 09403734 n 0000 #p 08982587 n 0000 #p 08759013 n 0000 #p 09014979 n 0000 #p 08813978 n 0000 %p 09460888 n 0000 | a mountain range in central Europe that extends from Slovakia and southern Poland southeastward through western Ukraine to northeastern Romania; a popular resort area -09236766 17 n 01 carpet 0 001 @ 00019128 n 0000 | a natural object that resembles or suggests a carpet; "a carpet of flowers"; "the larvae of some moths spin a web that resembles a carpet" -09236957 17 n 01 cascade 0 002 @ 09475292 n 0000 + 02071316 v 0101 | a small waterfall or series of small waterfalls -09237076 17 n 03 Cascades 0 Cascade_Range 0 Cascade_Mountains 0 006 @i 09403734 n 0000 #p 08564139 n 0000 #p 09248477 n 0000 %p 09177385 n 0000 %p 09187407 n 0000 %p 09405169 n 0000 | a mountain range in the northwestern United States extending through Washington and Oregon and northern California; a part of the Coast Range -09237404 17 n 02 Caspian 0 Caspian_Sea 0 003 @i 09328904 n 0000 #p 08910668 n 0000 #p 09003284 n 0000 | a large saltwater lake between Iran and Russia fed by the Volga River; the largest inland body of water in the world -09237627 17 n 01 Cassiopeia 0 001 @i 09252970 n 0000 | a W-shaped constellation in the northern hemisphere near Polaris -09237749 17 n 02 Castor 0 Alpha_Geminorum 0 002 @i 09363064 n 0000 #m 09287613 n 0000 | a multiple star with 6 components; second brightest in Gemini; close to Pollux -09237918 17 n 01 cataract 0 001 @ 09475292 n 0000 | a large waterfall; violent rush of water over a precipice -09238030 17 n 01 Cataract_Canyon 0 002 @i 09290444 n 0000 #p 09057311 n 0000 | a tributary of the Grand Canyon -09238143 17 n 01 catch 0 001 @ 00002684 n 0000 | anything that is caught (especially if it is worth catching); "he shared his catch with the others" -09238294 17 n 01 cation 0 004 @ 09315159 n 0000 + 02930387 a 0101 ~ 09307719 n 0000 ~ 14771831 n 0000 | a positively charged ion -09238425 17 n 02 Catskills 0 Catskill_Mountains 0 004 @i 09403734 n 0000 #p 09117351 n 0000 #p 09201301 n 0000 %p 09125984 n 0000 | a range of the Appalachians to the west of the Hudson in southeastern New York; includes many popular resort areas -09238674 17 n 02 Caucasus 0 Caucasus_Mountains 0 003 @i 09403734 n 0000 #p 08519624 n 0000 + 02843959 a 0102 | the mountain range in Caucasia between the Black Sea and the Caspian Sea that forms part of the traditional border between Europe and Asia -09238926 17 n 01 cave 0 012 @ 09287968 n 0000 + 00649887 v 0101 ~ 09239302 n 0000 ~ 09257843 n 0000 ~i 09279727 n 0000 %p 09282363 n 0000 ~ 09294877 n 0000 ~i 09336416 n 0000 %p 09416890 n 0000 %p 09443753 n 0000 %p 09443921 n 0000 %p 09474412 n 0000 | a geological formation consisting of an underground enclosure with access from the surface of the ground or from the sea -09239302 17 n 01 cavern 0 004 @ 09238926 n 0000 + 02264366 a 0101 + 01282888 v 0101 ~i 09236251 n 0000 | a large cave or a large chamber in a cave -09239451 17 n 01 cavern 1 002 @ 09273291 n 0000 + 01282888 v 0101 | any large dark enclosed space; "his eyes were dark caverns" -09239581 17 n 02 Cayuga_Lake 0 Lake_Cayuga 0 002 @i 09328904 n 0000 #m 08567600 n 0000 | a glacial lake in central New York; the longest of the Finger Lakes -09239740 17 n 02 celestial_body 0 heavenly_body 0 012 @ 00019128 n 0000 #p 09466280 n 0000 ~ 09355623 n 0000 ~ 09394007 n 0000 ~ 09394646 n 0000 ~ 09395086 n 0000 ~ 09398769 n 0000 ~ 09402370 n 0000 ~ 09424270 n 0000 ~ 09444100 n 0000 ~ 09444783 n 0000 -c 02764765 v 0000 | natural objects visible in the sky -09240051 17 n 02 Centaurus 0 Centaur 0 005 @i 09252970 n 0000 %m 09193772 n 0000 %m 09219349 n 0000 %m 09378801 n 0000 %m 09400190 n 0000 | a conspicuous constellation in the southern hemisphere near the Southern Cross -09240272 17 n 01 Cepheus 0 001 @i 09252970 n 0000 | a faint constellation in the northern hemisphere near Cassiopeia and the pole star -09240409 17 n 01 Ceres 0 001 @i 09208702 n 0000 | the largest asteroid and the first discovered -09240507 17 n 01 Cetus 0 001 @i 09252970 n 0000 | a large constellation on the equator near Pisces and Aquarius -09240621 17 n 02 chain 0 chemical_chain 0 008 @ 09465459 n 0000 #p 14682133 n 0000 ;c 06084469 n 0000 + 01466303 v 0102 + 01466303 v 0101 ~ 09246883 n 0000 ~ 09343266 n 0000 ~ 09378929 n 0000 | (chemistry) a series of linked atoms (generally in an organic molecule) -09240889 17 n 02 Chamaeleon 0 Chameleon 0 001 @i 09252970 n 0000 | a faint constellation in the polar region of the southern hemisphere near Apus and Mensa -09241047 17 n 01 Changtzu 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain in the central Himalayas on the border of Tibet and Nepal (24,780 feet high) -09241247 17 n 01 channel 0 013 @ 09225146 n 0000 ;c 09411430 n 0000 ~i 09123538 n 0000 ~ 09232317 n 0000 ~i 09273447 n 0000 ~ 09300483 n 0000 ~i 09301249 n 0000 ~i 09362666 n 0000 ~ 09410460 n 0000 ~ 09446115 n 0000 ~ 09458494 n 0000 ~ 09475179 n 0000 ~i 09480241 n 0000 | a deep and relatively narrow body of water (as in a river or a harbor or a strait linking two larger bodies) that allows the best passage for vessels; "the ship went aground in the channel" -09241712 17 n 01 Chao_Phraya 0 002 @i 09411430 n 0000 #p 09036452 n 0000 | a river in Thailand formed by the confluence of the Nan and Ping Rivers; flows southward past Bangkok and empties into the Gulf of Thailand -09241929 17 n 01 chap 0 002 @ 09258715 n 0000 + 00337428 v 0101 | a crack in a lip caused usually by cold -09242037 17 n 02 Charles 0 Charles_River 0 002 @i 09411430 n 0000 #p 09095023 n 0000 | a river in eastern Massachusetts that empties into Boston Harbor and that separates Cambridge from Boston -09242232 17 n 01 charm_quark 0 001 @ 09401834 n 0000 | a quark with an electric charge of +2/3 and a mass 2900 times that of an electron and a charm of +1 -09242389 17 n 01 chasm 0 003 @ 09379111 n 0000 ~ 09186359 n 0000 ~ 09296053 n 0000 | a deep opening in the earth's surface -09242514 17 n 02 Chattahoochee 0 Chattahoochee_River 0 002 @i 09411430 n 0000 #p 09075842 n 0000 | a river rising in northern Georgia and flowing southwest and south to join the Flint River at the Florida border where they form the Apalachicola River -09242767 17 n 04 Baikal 0 Lake_Baikal 0 Baykal 0 Lake_Baykal 0 002 @i 09328904 n 0000 #p 09005712 n 0000 | the largest freshwater lake in Asia or Europe and the deepest lake in the world -09242956 17 n 01 Lake_Chelan 0 002 @i 09328904 n 0000 #p 09152944 n 0000 | a narrow very deep lake in central Washington in the Cascade Range -09243100 17 n 01 Coeur_d'Alene_Lake 0 002 @i 09328904 n 0000 #p 09081213 n 0000 | a lake in northern Idaho -09243209 17 n 01 Lake_Tahoe 0 003 @i 09328904 n 0000 #p 09060768 n 0000 #p 09110422 n 0000 | a lake on the border between Nevada and California to the west of Carson City; a popular resort area -09243405 17 n 01 Chesapeake_Bay 0 004 @i 09215664 n 0000 #p 09093608 n 0000 #p 09148970 n 0000 #p 09209263 n 0000 | a large inlet of the North Atlantic between Virginia and Maryland; fed by Susquehanna River -09243615 17 n 01 Chimborazo 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08776687 n 0000 | a mountain peak in the Andes in Ecuador (20,560 feet high) -09243769 17 n 01 chink 0 003 @ 09258715 n 0000 + 01423506 v 0101 + 00336539 v 0102 | a narrow opening as e.g. between planks in a wall -09243906 17 n 04 chip 1 cow_chip 0 cow_dung 0 buffalo_chip 0 001 @ 14854847 n 0000 | a piece of dried bovine dung -09244022 17 n 01 Chiron 0 001 @ 09208702 n 0000 | an asteroid discovered in 1977; it is unique in having an orbit lying mainly between the orbits of Saturn and Uranus -09244191 17 n 01 chondrite 0 003 @ 09416076 n 0000 + 00365799 a 0101 %p 09244331 n 0000 | a rock of meteoric origin containing chondrules -09244331 17 n 01 chondrule 0 002 @ 09291513 n 0000 #p 09244191 n 0000 | small granule (of e.g. chrysolite) found in some meteoric rocks -09244469 17 n 01 chromosphere 0 002 @ 08591680 n 0000 #p 09450163 n 0000 | a gaseous layer of the sun's atmosphere (extending from the photosphere to the corona) that is visible during a total eclipse of the sun -09244683 17 n 01 Chukchi_Peninsula 0 001 @i 09388848 n 0000 | peninsula of northeastern Siberia across the Bering Strait from northwestern Alaska -09244831 17 n 01 Chukchi_Sea 0 002 @i 09426788 n 0000 #p 09204977 n 0000 | part of the Arctic Ocean just to the north of the Bering Strait -09244972 17 n 02 Cimarron 0 Cimarron_River 0 003 @i 09411430 n 0000 #p 09114696 n 0000 #p 09131654 n 0000 | a river that rises in northeastern New Mexico and flows eastward into Oklahoma where it becomes a tributary of the Arkansas River -09245212 17 n 02 cinder 0 clinker 0 002 @ 09285254 n 0000 + 00526749 v 0201 | a fragment of incombustible matter left after a wood or coal or charcoal fire -09245370 17 n 01 Circinus 0 001 @i 09252970 n 0000 | a small faint constellation in the southern hemisphere near Musca and Triangulum Australe -09245515 17 n 03 cirque 0 corrie 0 cwm 0 001 @ 09215437 n 0000 | a steep-walled semicircular basin in a mountain; may contain a lake -09245650 17 n 02 cirrocumulus 0 cirrocumulus_cloud 0 001 @ 09247410 n 0000 | a cloud at a high altitude consisting of a series of regularly arranged small clouds resembling ripples -09245833 17 n 02 cirrostratus 0 cirrostratus_cloud 0 001 @ 09247410 n 0000 | a thin uniform layer of hazy cloud at high altitude -09245964 17 n 02 cirrus 0 cirrus_cloud 0 002 @ 09247410 n 0000 ~ 09347116 n 0000 | a wispy white cloud (usually of fine ice crystals) at a high altitude (4 to 8 miles) -09246134 17 n 01 clast 0 004 @ 09285254 n 0000 #p 09246292 n 0000 ;c 06115701 n 0000 + 01332070 a 0101 | (geology) a constituent fragment of a clastic rock -09246292 17 n 01 clastic_rock 0 004 @ 09416076 n 0000 ;c 06115701 n 0000 + 01332070 a 0101 %p 09246134 n 0000 | (geology) a rock composed of broken pieces of older rocks -09246464 17 n 03 cliff 0 drop 0 drop-off 0 003 @ 09287968 n 0000 ~ 09259025 n 0000 ~ 09398677 n 0000 | a steep high face of rock; "he stood on a high cliff overlooking the town"; "a steep drop" -09246660 17 n 01 Clinch_River 0 003 @i 09411430 n 0000 #p 09148970 n 0000 #p 09140148 n 0000 | a river that rises in southwestern Virginia and flows generally southwestward across eastern Tennessee to the Tennessee River -09246883 17 n 02 closed_chain 0 ring 0 004 @ 09240621 n 0000 ;c 06084469 n 0000 ! 09378929 n 0101 ~ 09302400 n 0000 | (chemistry) a chain of atoms in a molecule that forms a closed loop -09247071 17 n 01 closed_universe 0 002 @ 09466280 n 0000 ;c 06098195 n 0000 | (cosmology) a universe that is spatially closed and in which there is sufficient matter to halt the expansion that began with the big bang; the visible matter is only 10 percent of the matter required for closure but there may be large amounts of dark matter -09247410 17 n 01 cloud 0 018 @ 11425580 n 0000 #p 09436708 n 0000 + 00461311 a 0101 + 02770717 v 0102 + 02041577 v 0101 ~ 09245650 n 0000 ~ 09245833 n 0000 ~ 09245964 n 0000 ~ 09247847 n 0000 ~ 09255519 n 0000 ~ 09261772 n 0000 ~ 09261960 n 0000 ~ 09364582 n 0000 ~ 09367137 n 0000 ~ 09371686 n 0000 ~ 09445910 n 0000 ~ 09448251 n 0000 %s 15055442 n 0000 | a visible mass of water or ice particles suspended at a considerable altitude -09247847 17 n 01 cloud_bank 0 001 @ 09247410 n 0000 | a layer of clouds seen from a distance -09247942 17 n 01 Clyde 0 002 @i 09411430 n 0000 #p 08890097 n 0000 | a river in western Scotland that flows from the southern uplands into the Firth of Clyde; navigable by oceangoing vessels as far as Glasgow -09248153 17 n 01 coast 1 001 @ 09437454 n 0000 | a slope down which sleds may coast; "when it snowed they made a coast on the golf course" -09248294 17 n 01 coastal_plain 0 002 @ 09334396 n 0000 ~ 09458372 n 0000 | a plain adjacent to a coast -09248399 17 n 01 coastland 0 001 @ 09335240 n 0000 | land in a coastal area -09248477 17 n 02 Coast_Range 0 Coast_Mountains 0 004 @i 09403734 n 0000 #p 09372504 n 0000 %p 09237076 n 0000 %p 09306642 n 0000 | a string of mountain ranges along the Pacific coast of North America from southeastern Alaska to Lower California -09248724 17 n 02 Cocytus 0 River_Cocytus 0 003 @i 09411430 n 0000 #p 05629381 n 0000 ;c 07979425 n 0000 | (Greek mythology) a river in Hades that was said to be a tributary of the Acheron -09248914 17 n 01 coffee_grounds 0 002 @ 09294984 n 0000 ;u 06295235 n 0000 | the dregs remaining after brewing coffee -09249034 17 n 02 col 0 gap 1 003 @ 09386842 n 0000 ~ 09475716 n 0000 ~ 09479962 n 0000 | a pass between mountain peaks -09249155 17 n 01 collector 0 001 @ 09259219 n 0000 | a crater that has collected cosmic material hitting the earth -09249272 17 n 01 collision_course 0 001 @ 09387222 n 0000 | a course of a moving object that will lead to a collision if it continues unchanged -09249418 17 n 02 Colorado 0 Colorado_River 0 006 @i 09411430 n 0000 #p 09067277 n 0000 #p 09147046 n 0000 #p 09057311 n 0000 #p 09110422 n 0000 #p 08740875 n 0000 | an important river in the southwestern United States; rises in the Rocky Mountains of northern Colorado and flows southwest through Utah into Arizona (where it flows through the Grand Canyon) and then southward through the southern tip of Nevada, then forming the border between California and Arizona and finally into Mexico where it empties into the Gulf of California; the main source of water in the southwestern United States -09250016 17 n 02 Colorado 1 Colorado_River 1 002 @i 09411430 n 0000 #p 09141526 n 0000 | a river in Texas; flows southeast into the Gulf of Mexico -09250165 17 n 01 Colorado_Plateau 0 006 @i 09453008 n 0000 #p 09147046 n 0000 #p 09067277 n 0000 #p 09114696 n 0000 #p 09057311 n 0000 %p 09291027 n 0000 | a large plateau to the south and west of the Rocky Mountains; abuts mountains on the north and east and ends in an escarpment overlooking lowlands to the south and west; the Grand Canyon is carved out of the southwestern corner -09250551 17 n 02 Columba 0 Dove 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Puppis and Caelum -09250678 17 n 02 Columbia 0 Columbia_River 0 003 @i 09411430 n 0000 #p 08820121 n 0000 #p 09152944 n 0000 | a North American river; rises in southwestern Canada and flows southward across Washington to form the border between Washington and Oregon before emptying into the Pacific; known for its salmon runs in the spring -09251002 17 n 01 coma 0 003 @ 11439690 n 0000 #p 09251407 n 0000 ;c 06095022 n 0000 | (astronomy) the luminous cloud of particles surrounding the frozen nucleus of a comet; forms as the comet approaches the sun and is warmed -09251229 17 n 01 Coma_Berenices 0 001 @i 09252970 n 0000 | a constellation in the northern hemisphere between Ursa Major and Bootes; contains a cluster of some 10,000 galaxies -09251407 17 n 01 comet 0 006 @ 09277686 n 0000 ;c 06095022 n 0000 + 02980696 a 0101 + 02980696 a 0102 %p 09251002 n 0000 %p 09375223 n 0000 | (astronomy) a relatively small extraterrestrial body consisting of a frozen mass that travels around the sun in a highly elliptical orbit -09251689 17 n 01 commemorative 0 001 @ 00002684 n 0000 | an object (such as a coin or postage stamp) made to mark an event or honor a person -09251832 17 n 04 Communism_Peak 0 Mount_Communism 0 Stalin_Peak 0 Mount_Garmo 0 002 @i 09360122 n 0000 #p 09020961 n 0000 | the highest mountain peak in the Pamir Mountains; near the Chinese border in northeastern Tajikistan (24,590 feet high) -09252078 17 n 03 Congo 0 Congo_River 0 Zaire_River 0 002 @i 09411430 n 0000 #p 08734385 n 0000 | a major African river (one of the world's longest); flows through Congo into the South Atlantic -09252273 17 n 02 Connecticut 0 Connecticut_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | a river in the northeastern United States; flows south from northern New Hampshire along the border between New Hampshire and Vermont and through Massachusetts and Connecticut where it empties into Long Island Sound -09252586 17 n 01 consolidation 0 002 @ 00019128 n 0000 + 00165789 v 0101 | something that has consolidated into a compact mass; "he dropped the consolidation into the acid bath" -09252766 17 n 03 Constance 0 Lake_Constance 0 Bodensee 0 002 @i 09328904 n 0000 #p 08766988 n 0000 | a lake in southeastern Germany on the northern side of the Swiss Alps; forms part of the Rhine River -09252970 17 n 01 constellation 0 082 @ 00019128 n 0000 + 02025009 v 0102 + 00142055 v 0101 ~i 09197271 n 0000 ~i 09200527 n 0000 ~i 09201714 n 0000 ~i 09201840 n 0000 ~i 09202142 n 0000 ~i 09202285 n 0000 ~i 09205607 n 0000 ~i 09206133 n 0000 %m 09208496 n 0000 ~i 09211056 n 0000 ~i 09226738 n 0000 ~i 09230646 n 0000 ~i 09232687 n 0000 ~i 09232841 n 0000 ~i 09232989 n 0000 ~i 09235713 n 0000 ~i 09236077 n 0000 ~i 09237627 n 0000 ~i 09240051 n 0000 ~i 09240272 n 0000 ~i 09240507 n 0000 ~i 09240889 n 0000 ~i 09245370 n 0000 ~i 09250551 n 0000 ~i 09251229 n 0000 ~i 09257141 n 0000 ~i 09257429 n 0000 ~i 09259376 n 0000 ~i 09262490 n 0000 ~i 09264680 n 0000 ~i 09269174 n 0000 ~i 09269717 n 0000 ~i 09274032 n 0000 ~i 09284308 n 0000 ~i 09287613 n 0000 ~i 09292189 n 0000 ~i 09295455 n 0000 ~i 09302263 n 0000 ~i 09307552 n 0000 ~i 09308116 n 0000 ~i 09312516 n 0000 ~i 09337833 n 0000 ~i 09338243 n 0000 ~i 09339109 n 0000 ~i 09340024 n 0000 ~i 09344449 n 0000 ~i 09344559 n 0000 ~i 09351086 n 0000 ~i 09354142 n 0000 ~i 09363810 n 0000 ~i 09372176 n 0000 ~i 09376866 n 0000 ~i 09379572 n 0000 ~i 09380117 n 0000 ~i 09387764 n 0000 ~i 09388530 n 0000 ~i 09390236 n 0000 ~i 09390967 n 0000 ~i 09391524 n 0000 ~i 09392824 n 0000 ~i 09401159 n 0000 ~i 09401613 n 0000 ~i 09408412 n 0000 ~i 09418954 n 0000 ~i 09419112 n 0000 ~i 09426143 n 0000 ~i 09426494 n 0000 ~i 09430259 n 0000 ~i 09441352 n 0000 %m 09444100 n 0000 ~i 09455306 n 0000 ~i 09455524 n 0000 ~i 09461724 n 0000 ~i 09461864 n 0000 ~i 09462924 n 0000 ~i 09470343 n 0000 ~i 09471976 n 0000 ~i 09472268 n 0000 ~i 09473685 n 0000 | a configuration of stars as seen from the earth -09254614 17 n 01 continent 0 016 @ 09335916 n 0000 + 02886090 a 0101 + 01566916 a 0101 ~i 09189411 n 0000 ~i 09198106 n 0000 ~i 09207288 n 0000 ~i 09211266 n 0000 %p 09259500 n 0000 ~i 09275016 n 0000 ~i 09275473 n 0000 ~i 09290121 n 0000 ~i 09336853 n 0000 ~i 09372504 n 0000 ~i 09384532 n 0000 ~i 09440400 n 0000 %p 09449949 n 0000 | one of the large landmasses of the earth; "there are seven continents"; "pioneers had to cross the continent on foot" -09255070 17 n 01 continental_glacier 0 002 @ 09289331 n 0000 ~ 09396608 n 0000 | a glacier that spreads out from a central mass of ice -09255207 17 n 01 continental_shelf 0 001 @ 09376526 n 0000 | the relatively shallow (up to 200 meters) seabed surrounding a continent -09255343 17 n 03 continental_slope 0 bathyal_zone 0 bathyal_district 0 001 @ 09376526 n 0000 | the steep descent of the seabed from the continental shelf to the abyssal zone -09255519 17 n 02 contrail 0 condensation_trail 0 001 @ 09247410 n 0000 | an artificial cloud created by an aircraft; caused either by condensation due to the reduction in air pressure above the wing surface or by water vapor in the engine exhaust -09255768 17 n 01 Cook_Strait 0 002 @i 09446115 n 0000 #p 08972521 n 0000 | a narrow strait separating the North Island and South Island in New Zealand -09255921 17 n 02 Coosa 0 Coosa_River 0 003 @i 09411430 n 0000 #p 09075842 n 0000 #p 09053185 n 0000 | river that rises in northwestern Georgia and flows southwest through eastern Alabama to join the Tallapoosa River near Montgomery and form the Alabama River -09256182 17 n 01 Copernicus 0 001 @i 09344324 n 0000 | a conspicuous crater on the Moon -09256272 17 n 01 coprolite 0 001 @ 14854847 n 0000 | fossil excrement; petrified dung -09256360 17 n 04 coprolith 0 fecalith 0 faecalith 0 stercolith 0 001 @ 09348055 n 0000 | a hard mass of fecal matter -09256479 17 n 01 coral_reef 0 005 @ 09406793 n 0000 ~ 09210862 n 0000 ~ 09214916 n 0000 ~i 09292348 n 0000 ~ 09325395 n 0000 | a reef consisting of coral consolidated into limestone -09256663 17 n 01 Coral_Sea 0 003 @i 09426788 n 0000 #p 09382990 n 0000 -r 01276194 n 0000 | an arm of the South Pacific to the northeast of Australia -09256815 17 n 01 core 0 001 @ 08521816 n 0000 | the central part of the Earth -09256895 17 n 01 core 1 001 @ 09421425 n 0000 | a cylindrical sample of soil or rock obtained with a hollow drill -09257011 17 n 01 corner 0 001 @ 09385911 n 0000 | a projecting part where two sides or edges meet; "he knocked off the corners" -09257141 17 n 01 Corona_Borealis 0 001 @i 09252970 n 0000 | a small constellation in the northern hemisphere between Bootes and Hercules -09257280 17 n 01 Coropuna 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08979054 n 0000 | a mountain peak in the Andes in Peru (21,083 feet high) -09257429 17 n 02 Corvus 0 Crow 0 001 @i 09252970 n 0000 | a small quadrilateral constellation in the southern hemisphere near Virgo -09257563 17 n 01 couple 0 004 @ 09465459 n 0000 ;c 06090869 n 0000 ~ 09266946 n 0000 %p 11483179 n 0000 | (physics) something joined by two equal and opposite forces that act along parallel lines -09257761 17 n 01 cove 0 002 @ 09313716 n 0000 ~ 09343660 n 0000 | a small inlet -09257843 17 n 01 cove 2 001 @ 09238926 n 0000 | small or narrow cave in the side of a cliff or mountain -09257949 17 n 03 covering 0 natural_covering 0 cover 0 026 @ 00019128 n 0000 + 01207951 v 0101 ~ 01902877 n 0000 ~ 01904182 n 0000 ~ 01904699 n 0000 ~ 05237755 n 0000 ~ 05238036 n 0000 ~ 05239243 n 0000 ~ 09223725 n 0000 ~ 09260218 n 0000 ~ 09273776 n 0000 ~ 09305358 n 0000 ~ 09312094 n 0000 ~ 09416890 n 0000 ~ 09432283 n 0000 ~ 09432430 n 0000 ~ 09436531 n 0000 ~ 09438055 n 0000 ~ 09438844 n 0000 ~ 09471349 n 0000 ~ 11533365 n 0000 ~ 11684264 n 0000 ~ 11692265 n 0000 ~ 13092722 n 0000 ~ 13094381 n 0000 ~ 13162297 n 0000 | a natural object that covers or envelops; "under a covering of dust"; "the fox was flushed from its cover" -09258587 17 n 01 Crab_Nebula 0 002 @i 09451237 n 0000 #m 09455306 n 0000 | a remnant of a supernova detected first in 1054 AD -09258715 17 n 05 crack 0 cleft 0 crevice 0 fissure 0 scissure 0 012 @ 09379111 n 0000 + 00336922 v 0401 + 00337234 v 0101 ~ 09241929 n 0000 ~ 09243769 n 0000 ~ 09259677 n 0000 ~ 09278432 n 0000 ~ 09278537 n 0000 ~ 09410026 n 0000 ~ 09437369 n 0000 ~ 09443136 n 0000 ~ 09470550 n 0000 | a long narrow opening -09259025 17 n 01 crag 0 001 @ 09246464 n 0000 | a steep rugged rock or cliff -09259104 17 n 01 cranny 0 001 @ 09304465 n 0000 | a small opening or crevice (especially in a rock face or wall) -09259219 17 n 01 crater 0 003 @ 09366017 n 0000 ~ 09249155 n 0000 ~ 09344324 n 0000 | a bowl-shaped depression formed by the impact of a meteorite or bomb -09259376 17 n 01 Crater 2 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Hydra and Corvus -09259500 17 n 01 craton 0 002 @ 09385911 n 0000 #p 09254614 n 0000 | the part of a continent that is stable and forms the central mass of the continent; typically Precambrian -09259677 17 n 01 crevasse 0 001 @ 09258715 n 0000 | a deep fissure -09259746 17 n 02 Cross-Florida_Waterway 0 Okeechobee_Waterway 0 001 @i 09476331 n 0000 | a waterway used by small boats to travel between the Atlantic Ocean and the Gulf of Mexico through Lake Okeechobee and the Caloosahatchee_Canal and the Caloosahatchee River -09260010 17 n 02 crust 0 Earth's_crust 0 007 @ 08591680 n 0000 #p 09339810 n 0000 %p 09209025 n 0000 ~ 09305728 n 0000 ~ 09395457 n 0000 %s 14698233 n 0000 %s 14698405 n 0000 | the outer layer of the Earth -09260218 17 n 03 crust 1 incrustation 0 encrustation 0 008 @ 09257949 n 0000 + 01261628 v 0301 + 00255079 v 0301 + 01261628 v 0202 + 00255079 v 0202 + 01695749 a 0103 + 00356789 v 0101 ~ 09454925 n 0000 | a hard outer layer that covers something -09260466 17 n 02 crystal 0 crystallization 0 006 @ 09416076 n 0000 + 00445940 v 0201 + 00443670 v 0201 + 00445940 v 0103 + 00443670 v 0102 ~ 09260744 n 0000 | a rock formed by the solidification of a substance; has regularly repeating internal structure; external plane faces -09260744 17 n 01 crystallite 0 001 @ 09260466 n 0000 | any of numerous minute rudimentary crystalline bodies of unknown composition found in glassy igneous rock -09260907 17 n 07 cultivated_land 0 farmland 0 plowland 0 ploughland 0 tilled_land 0 tillage 0 tilth 0 003 @ 09335240 n 0000 + 01740608 v 0601 ~ 09278295 n 0000 | arable land that is worked by plowing and sowing and raising crops -09261138 17 n 02 Cumberland 0 Cumberland_River 0 003 @i 09411430 n 0000 #p 09089139 n 0000 #p 09140148 n 0000 | a river that rises in southeastern Kentucky and flows westward through northern Tennessee to become a tributary of the Ohio River in southwestern Kentucky -09261407 17 n 01 Cumberland_Gap 0 002 @i 09386842 n 0000 #p 09261604 n 0000 | a pass through the Cumberland Mountains between Virginia and Kentucky that early settlers used in order to move west -09261604 17 n 02 Cumberland_Mountains 0 Cumberland_Plateau 0 003 @i 09403734 n 0000 #p 09201301 n 0000 %p 09261407 n 0000 | the southwestern part of the Appalachians -09261772 17 n 03 cumulonimbus 0 cumulonimbus_cloud 0 thundercloud 0 001 @ 09247410 n 0000 | a dark cloud of great vertical extent charged with electricity; associated with thunderstorms -09261960 17 n 02 cumulus 0 cumulus_cloud 0 003 @ 09247410 n 0000 ~ 09195098 n 0000 ~ 09457693 n 0000 | a globular cloud -09262082 17 n 04 Cuquenan 0 Cuquenan_Falls 0 Kukenaam 0 Kukenaam_Falls 0 002 @i 09475292 n 0000 #p 09161803 n 0000 | a famous waterfall in Venezuela -09262233 17 n 01 curtain 0 001 @ 09214581 n 0000 | any barrier to communication or vision; "a curtain of secrecy"; "a curtain of trees" -09262371 17 n 01 cutting 0 002 @ 09385911 n 0000 ~ 09400485 n 0000 | a piece cut off from the main part of something -09262490 17 n 01 Cygnus 0 003 @i 09252970 n 0000 %m 09265392 n 0000 %m 09373333 n 0000 | a constellation in the northern hemisphere between Pegasus and Draco in the Milky Way; contains a black hole -09262690 17 n 01 dale 0 002 @ 09468604 n 0000 ;r 08860123 n 0000 | an open river valley (in a hilly area) -09262798 17 n 01 dander 0 001 @ 09425607 n 0000 | small scales from animal skins or hair or bird feathers that can cause allergic reactions in some people -09262955 17 n 01 dandruff 0 001 @ 09425607 n 0000 | loose scales shed from the scalp; "I could see the dandruff on her shoulders" -09263087 17 n 03 Danube 0 Danube_River 0 Danau 0 009 @i 09411430 n 0000 #p 08766988 n 0000 #p 08845555 n 0000 #p 08757569 n 0000 #p 08952190 n 0000 #p 08816236 n 0000 #p 08813978 n 0000 #p 08714132 n 0000 #p 09014979 n 0000 | the 2nd longest European river (after the Volga); flows from southwestern Germany to the Black Sea; "Vienna, Budapest, and Belgrade are on the banks of the Danube" -09263479 17 n 02 Darling 0 Darling_River 0 002 @i 09411430 n 0000 #p 09211266 n 0000 | an Australian river; tributary of the Murray River -09263619 17 n 01 Dead_Sea 0 003 @i 09328904 n 0000 #p 08792548 n 0000 #p 08927186 n 0000 | a saltwater lake on the border between Israel and Jordan; its surface in 1292 feet below sea level -09263811 17 n 01 deep 1 001 @ 09376198 n 0000 | literary term for an ocean; "denizens of the deep" -09263912 17 n 02 defile 0 gorge 1 001 @ 09386842 n 0000 | a narrow pass (especially one between mountains) -09264021 17 n 01 Deimos 0 001 @i 09424270 n 0000 | the outer of two small satellites of Mars -09264116 17 n 02 Delaware 0 Delaware_River 0 003 @i 09411430 n 0000 #p 09117351 n 0000 #p 09069862 n 0000 | a river that rises in the Catskills in southeastern New York and flows southward along the border of Pennsylvania with New York and New Jersey to northern Delaware where it empties into Delaware Bay -09264425 17 n 01 Delaware_Bay 0 004 @i 09215664 n 0000 #p 09069862 n 0000 #p 09112282 n 0000 #p 09209263 n 0000 | an inlet of the North Atlantic; fed by the Delaware River -09264599 17 n 02 dell 0 dingle 0 001 @ 09305031 n 0000 | a small wooded hollow -09264680 17 n 01 Delphinus 0 001 @i 09252970 n 0000 | a constellation in the northern hemisphere near Pegasus and Aquila -09264803 17 n 01 delta 0 002 @ 09287968 n 0000 @ 09193282 n 0000 | a low triangular area of alluvial deposits where a river divides before entering a larger body of water; "the Mississippi River delta"; "the Nile delta" -09265025 17 n 01 delta_ray 0 001 @ 09271904 n 0000 | an electron ejected from matter by ionizing radiation -09265134 17 n 01 Demerara 0 002 @i 09411430 n 0000 #p 08948346 n 0000 | a river in northern Guyana that flows northward into the Atlantic -09265274 17 n 01 Denali_Fault 0 002 @i 09278537 n 0000 #p 09055015 n 0000 | a major open geological fault in Alaska -09265392 17 n 01 Deneb 0 002 @i 09444100 n 0000 #m 09262490 n 0000 | the brightest star in Cygnus -09265492 17 n 01 Denebola 0 002 @i 09444100 n 0000 #m 09337833 n 0000 | a star in Leo approximately 43 light years from Earth -09265620 17 n 07 descent 0 declivity 0 fall 0 decline 0 declination 0 declension 0 downslope 0 009 @ 09437454 n 0000 + 02039876 v 0601 + 02039876 v 0501 + 02039876 v 0401 + 02037839 v 0301 + 02485895 a 0201 ! 09206985 n 0101 ~ 09269472 n 0000 ~ 09445008 n 0000 | a downward slope or bend -09265910 17 n 01 desideratum 0 001 @ 09367203 n 0000 | something desired as a necessity; "the desiderata for a vacation are time and money" -09266052 17 n 01 Detroit_River 0 002 @i 09411430 n 0000 #p 09099526 n 0000 | a short river flowing from Lake St. Clair to Lake Erie along the border between the United States and Canada; one the busiest inland waterways in the world -09266287 17 n 01 deuteron 0 001 @ 09386422 n 0000 | the nucleus of deuterium; consists of one proton and one neutron; used as a bombarding particle in accelerators -09266453 17 n 01 Dhaulagiri 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 | a mountain in the Himalayas in Nepal (26,820 feet high) -09266604 17 n 01 diapir 0 002 @ 09287968 n 0000 ;c 06115701 n 0000 | a domed rock formation where a core of rock has moved upward and pierced through the more brittle overlying strata -09266790 17 n 02 diffuse_nebula 0 gaseous_nebula 0 002 @ 09366940 n 0000 ~ 09380117 n 0000 | a cluster of stars within an intricate cloud of gas and dust -09266946 17 n 01 dipole 0 003 @ 09257563 n 0000 ~ 09271774 n 0000 ~ 09345693 n 0000 | a pair of equal and opposite electric charges or magnetic poles separated by a small distance -09267128 17 n 01 dipole_molecule 0 001 @ 14682133 n 0000 | a molecule that is a permanent dipole -09267227 17 n 01 direct_transmission 0 001 @ 09460680 n 0000 | a transmission mechanism in which the infectious agent is transferred directly into the body via touching or biting or kissing or sexual intercourse or by droplets entering the eye or nose or mouth -09267490 17 n 01 discard 0 002 @ 00002684 n 0000 + 02222318 v 0101 | anything that is cast aside or discarded -09267602 17 n 01 distributary 0 002 @ 09228324 n 0000 ! 09278997 n 0102 | a branch of a river that flows away from the main stream and does not rejoin it -09267758 17 n 01 ditch 2 002 @ 09476331 n 0000 + 01311896 v 0102 | any small natural waterway -09267854 17 n 01 divot 0 002 @ 09463919 n 0000 ;c 00464894 n 0000 | a piece of turf dug out of a lawn or fairway (by an animals hooves or a golf club) -09268007 17 n 01 divot 1 002 @ 09393108 n 0000 ;c 00464894 n 0000 | (golf) the cavity left when a piece of turf is cut from the ground by the club head in making a stroke; "it was a good drive but the ball ended up in a divot" -09268236 17 n 02 Dnieper 0 Dnieper_River 0 004 @i 09411430 n 0000 #p 09006413 n 0000 #p 09011151 n 0000 #p 09014979 n 0000 | a river that rises in Russia near Smolensk and flowing south through Belarus and Ukraine to empty into the Black Sea -09268480 17 n 04 dog_shit 0 dog_do 0 doggy_do 0 dog_turd 0 001 @ 14854262 n 0000 | fecal droppings from a dog -09268592 17 n 01 Dolomite_Alps 0 003 @i 09403734 n 0000 #p 09194357 n 0000 #p 08801678 n 0000 | an eastern range of the Alps in northeastern Italy famous for their dolomitic limestone -09268778 17 n 02 Don 0 Don_River 0 002 @i 09411430 n 0000 #p 09006413 n 0000 | a European river in southwestern Russia; flows into the Sea of Azov -09268927 17 n 01 Donner_Pass 0 003 @i 09386842 n 0000 #p 09060768 n 0000 #p 09434845 n 0000 | a mountain pass in northeastern California near Lake Tahoe; site where in 1844 some members of an emigrant party survived by eating those who had died -09269174 17 n 01 Dorado 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Reticulum and Pictor; contains most of the Large Magellanic Cloud -09269341 17 n 01 down 0 002 @ 09302616 n 0000 ;u 06295235 n 0000 | (usually plural) a rolling treeless highland with little soil -09269472 17 n 01 downhill 0 002 @ 09265620 n 0000 + 02485895 a 0102 | the downward slope of a hill -09269573 17 n 01 down_quark 0 001 @ 09401834 n 0000 | a stable quark with an electric charge of -1/3 and a mass 607 times that of an electron -09269717 17 n 02 Draco 0 Dragon 0 001 @i 09252970 n 0000 | a faint constellation twisting around the north celestial pole and lying between Ursa Major and Cepheus -09269882 17 n 01 draw 0 001 @ 09300306 n 0000 | a gully that is shallower than a ravine -09269972 17 n 02 dregs 0 settlings 0 005 @ 09428967 n 0000 ;u 06295235 n 0000 + 01986185 v 0202 + 01986551 v 0201 ~ 09294984 n 0000 | sediment that has settled at the bottom of a liquid -09270160 17 n 01 drey 0 001 @ 09369169 n 0000 | the nest of a squirrel -09270233 17 n 01 drift 0 004 @ 09348055 n 0000 + 00571390 v 0101 ~ 09270657 n 0000 ~ 09438940 n 0000 | a large mass of material that is heaped up by the wind or by water currents -09270414 17 n 01 drift_ice 0 001 @ 09308398 n 0000 | masses of ice floating in the open sea -09270508 17 n 01 drink 0 002 @ 09225146 n 0000 ;u 07075172 n 0000 | any large deep body of water; "he jumped into the drink and had to be rescued" -09270657 17 n 01 drumlin 0 001 @ 09270233 n 0000 | a mound of glacial drift -09270735 17 n 02 dune 0 sand_dune 0 002 @ 09409512 n 0000 ~ 09429630 n 0000 | a ridge of sand created by the wind; found in deserts or near lakes and oceans -09270894 17 n 04 Earth 0 earth 2 world 0 globe 0 012 @i 09456369 n 0000 #m 09439433 n 0000 + 01568684 a 0401 + 10699262 n 0202 + 10699262 n 0102 %p 08499057 n 0000 %p 08583095 n 0000 %p 08676760 n 0000 %p 09307902 n 0000 %p 09334396 n 0000 %p 09339810 n 0000 %p 09436708 n 0000 | the 3rd planet from the sun; the planet we live on; "the Earth moves around the sun"; "he sailed around the world" -09271291 17 n 01 East_China_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | part of the Pacific Ocean near eastern Asia -09271415 17 n 02 Ebro 0 Ebro_River 0 002 @i 09411430 n 0000 #p 09023321 n 0000 | a river in northeastern Spain; flows into the Mediterranean -09271558 17 n 02 Elbe 0 Elbe_River 0 002 @i 09411430 n 0000 #p 09275473 n 0000 | a river in central Europe that arises in northwestern Czechoslovakia and flows northward through Germany to empty into the North Sea -09271774 17 n 02 electric_dipole 0 electric_doublet 0 001 @ 09266946 n 0000 | a dipole with equal and opposite electric charges -09271904 17 n 02 electron 0 negatron 0 005 @ 09338013 n 0000 ~ 09265025 n 0000 ~ 09285648 n 0000 ~ 09391089 n 0000 ~ 09468447 n 0000 | an elementary particle with negative charge -09272085 17 n 02 elementary_particle 0 fundamental_particle 0 012 @ 09386422 n 0000 #p 14619225 n 0000 ;c 06090869 n 0000 ~ 09199341 n 0000 ~ 09199904 n 0000 ~ 09200317 n 0000 ~ 09300674 n 0000 ~ 09338013 n 0000 ~ 09401834 n 0000 ~ 09447806 n 0000 ~ 09449282 n 0000 ~ 09476717 n 0000 | (physics) a particle that is less complex than an atom; regarded as constituents of all matter -09272468 17 n 01 eliminator 0 003 @ 09190918 n 0000 + 00471711 v 0102 ~ 09376078 n 0000 | an agent that eliminates something -09272595 17 n 01 Elizabeth_River 0 002 @i 09411430 n 0000 #p 09148970 n 0000 | a short river in southeastern Virginia flowing between Norfolk and Portsmouth into Hampton Roads -09272773 17 n 01 El_Libertador 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain in the Andes in Argentina (22,047 feet high) -09272927 17 n 01 El_Muerto 0 004 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 #p 08720481 n 0000 | a mountain peak in the Andes on the border between Argentina and Chile (21,457 feet high) -09273130 17 n 02 ember 0 coal 0 002 @ 09285254 n 0000 + 02771997 v 0202 | a hot fragment of wood or coal that is left from a fire and is glowing or smoldering -09273291 17 n 02 enclosure 0 natural_enclosure 0 004 @ 13910384 n 0000 + 02711114 v 0101 ~ 09239451 n 0000 ~ 09349055 n 0000 | a naturally enclosed space -09273447 17 n 01 English_Channel 0 006 @i 09241247 n 0000 #p 09209263 n 0000 -r 01295684 n 0000 %p 08887013 n 0000 %p 09439879 n 0000 %p 09479238 n 0000 | an arm of the Atlantic Ocean that forms a channel between France and Britain -09273681 17 n 01 enterolith 0 001 @ 09230768 n 0000 | a calculus occurring in the intestines -09273776 17 n 01 envelope 0 001 @ 09257949 n 0000 | a natural covering (as by a fluid); "the spacecraft detected an envelope of gas around the comet" -09273928 17 n 01 Epsilon_Aurigae 0 002 @i 09221070 n 0000 #m 09211056 n 0000 | the largest known star -09274032 17 n 01 Eridanus 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Fornax and Cetus -09274152 17 n 02 escarpment 0 scarp 0 001 @ 09437454 n 0000 | a long steep slope or cliff at the edge of a plateau or ridge; usually formed by erosion -09274305 17 n 01 esker 0 002 @ 09409512 n 0000 ;c 06115701 n 0000 | (geology) a long winding ridge of post glacial gravel and other sediment; deposited by meltwater from glaciers or ice sheets -09274500 17 n 01 estuary 0 007 @ 09225146 n 0000 #p 09411430 n 0000 + 02723420 a 0102 ~ 09280380 n 0000 ~i 09307140 n 0000 ~i 09384771 n 0000 ~i 09410558 n 0000 | the wide part of a river where it nears the sea; fresh and salt water mix -09274739 17 n 02 Euphrates 0 Euphrates_River 0 004 @i 09411430 n 0000 #p 09039411 n 0000 #p 09033333 n 0000 #p 08913434 n 0000 | a river in southwestern Asia; flows into the Persian Gulf; was important in the development of several great civilizations in ancient Mesopotamia -09275016 17 n 01 Eurasia 0 012 @i 09254614 n 0000 #p 08562243 n 0000 #p 08611662 n 0000 + 03024132 a 0101 + 03024132 a 0102 %p 09002814 n 0000 %p 09003284 n 0000 %p 09006413 n 0000 %p 09007723 n 0000 %p 09177647 n 0000 %p 09207288 n 0000 %p 09275473 n 0000 | the land mass formed by the continents of Europe and Asia -09275335 17 n 01 Europa 0 001 @i 09285979 n 0000 | the 4th largest of Jupiter's satellites; covered with a smooth shell of frozen water -09275473 17 n 01 Europe 0 064 @i 09254614 n 0000 #p 09275016 n 0000 #p 08682575 n 0000 + 02968325 a 0101 -r 03743016 n 0000 %p 08169677 n 0000 -r 08367339 n 0000 %p 08696737 n 0000 %p 08696931 n 0000 %p 08697827 n 0000 %p 08713772 n 0000 %p 08714132 n 0000 %p 08757264 n 0000 %p 08757569 n 0000 %p 08759013 n 0000 %p 08760393 n 0000 %p 08760510 n 0000 %p 08760856 n 0000 %p 08766988 n 0000 %p 08779504 n 0000 %p 08780881 n 0000 %p 08799958 n 0000 %p 08800258 n 0000 %p 08801678 n 0000 %p 08813978 n 0000 %p 08845366 n 0000 %p 08845555 n 0000 %p 08849549 n 0000 %p 08849753 n 0000 %p 08871007 n 0000 %p 08887841 n 0000 %p 08888676 n 0000 %p 08890097 n 0000 %p 08929922 n 0000 %p 08949093 n 0000 %p 08951777 n 0000 %p 08952190 n 0000 %p 08953324 n 0000 %p 08957212 n 0000 %p 08960548 n 0000 %p 08960987 n 0000 %p 08967868 n 0000 %p 08968390 n 0000 %p 08982587 n 0000 %p 08984567 n 0000 %p 08984788 n 0000 %p 08992181 n 0000 %p 09007471 n 0000 %p 09011151 n 0000 %p 09012101 n 0000 %p 09012297 n 0000 %p 09013074 n 0000 %p 09014586 n 0000 %p 09014979 n 0000 %p 09023118 n 0000 %p 09023321 n 0000 %p 09028841 n 0000 %p 09031653 n 0000 %p 09038597 n 0000 %p 09166127 n 0000 %p 09166534 n 0000 %p 09271558 n 0000 -r 09585218 n 0000 -r 10580535 n 0000 | the 2nd smallest continent (actually a vast peninsula of Eurasia); the British use `Europe' to refer to all of the continent except the British Isles -09276872 17 n 03 evening_star 0 Hesperus 0 Vesper 0 001 @i 09394007 n 0000 | a planet (usually Venus) seen at sunset in the western sky -09277010 17 n 03 Everest 0 Mount_Everest 0 Mt._Everest 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain in the central Himalayas on the border of Tibet and Nepal; the highest mountain peak in the world (29,028 feet high) -09277279 17 n 01 Everglades 0 002 @i 09452395 n 0000 #p 09071690 n 0000 | a large subtropical swamp in southern Florida that is noted for its wildlife -09277432 17 n 01 exosphere 0 002 @ 08591680 n 0000 #p 09210604 n 0000 | the outermost atmospheric layer -09277538 17 n 01 expanse 0 003 @ 13910384 n 0000 ~ 09432060 n 0000 ~ 09448945 n 0000 | a wide and open space or area as of surface or land or sky -09277686 17 n 02 extraterrestrial_object 0 estraterrestrial_body 0 004 @ 00019128 n 0000 #p 09466280 n 0000 ~ 09251407 n 0000 ~ 09353109 n 0000 | a natural object existing outside the earth and outside the earth's atmosphere -09277913 17 n 02 Eyre 0 Lake_Eyre 0 003 @i 09328904 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a shallow salt lake in south central Australia about 35 feet below sea level; the largest lake in the country and the lowest point on the continent -09278162 17 n 01 Eyre_Peninsula 0 003 @i 09388848 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a peninsula of southern Australia -09278295 17 n 01 fallow 0 002 @ 09260907 n 0000 + 01833401 a 0101 | cultivated land that is not seeded for one or more growing seasons -09278432 17 n 01 fatigue_crack 0 001 @ 09258715 n 0000 | a crack in metal resulting from metal fatigue -09278537 17 n 06 fault 0 faulting 0 geological_fault 0 shift 0 fracture 0 break 0 009 @ 09258715 n 0000 ;c 06115701 n 0000 + 00334186 v 0601 + 00335366 v 0501 %p 08569591 n 0000 ~i 09265274 n 0000 ~ 09310616 n 0000 ~i 09421604 n 0000 ~ 09449127 n 0000 | (geology) a crack in the earth's crust resulting from the displacement of one side with respect to the other; "they built it right over a geological fault"; "he studied the faulting of the earth's crust" -09278997 17 n 04 feeder 0 tributary 0 confluent 0 affluent 0 003 @ 09228324 n 0000 ! 09267602 n 0201 + 01181166 v 0101 | a branch that flows into the main stream -09279161 17 n 01 fermion 0 003 @ 09386422 n 0000 ~ 09215023 n 0000 ~ 09338013 n 0000 | any particle that obeys Fermi-Dirac statistics and is subject to the Pauli exclusion principle -09279345 17 n 01 filing 0 002 @ 09285254 n 0000 ~ 09352721 n 0000 | a fragment rubbed off by the use of a file -09279458 17 n 01 finding 0 004 @ 00002684 n 0000 + 02154508 v 0103 + 01637982 v 0102 + 00918872 v 0102 | something that is found; "the findings in the gastrointestinal tract indicate that he died several hours after dinner"; "an area rich in archaeological findings" -09279727 17 n 01 Fingal's_Cave 0 002 @i 09238926 n 0000 #p 08894133 n 0000 | a large cave with basaltic pillars on Staffa island in Scotland -09279870 17 n 01 fireball 2 002 @ 13899404 n 0000 #p 07408386 n 0000 | the luminous center of a nuclear explosion -09279986 17 n 01 fireball 3 001 @ 13899404 n 0000 | a ball of fire (such as the sun or a ball-shaped discharge of lightning) -09280113 17 n 01 fire_pit 0 001 @ 09393108 n 0000 | a pit whose floor is incandescent lava; "the fire pit of the crater" -09280236 17 n 01 firestone 0 001 @ 14995541 n 0000 | a sandstone that withstands intense heat; used to line fireplaces and furnaces and kilns -09280380 17 n 01 firth 0 006 @ 09274500 n 0000 ;r 08890097 n 0000 ~i 09280573 n 0000 ~i 09280731 n 0000 ~i 09359031 n 0000 ~i 09440036 n 0000 | a long narrow estuary (especially in Scotland) -09280573 17 n 01 Firth_of_Clyde 0 002 @i 09280380 n 0000 #p 08890097 n 0000 | a firth on the southwestern coast of Scotland emptying into the North Channel -09280731 17 n 01 Firth_of_Forth 0 002 @i 09280380 n 0000 #p 08890097 n 0000 | a large firth on the east coast of Scotland and the estuary of the Forth River; location of Edinburgh -09280913 17 n 01 fishpond 0 001 @ 09397391 n 0000 | a freshwater pond with fish -09280995 17 n 01 fixed_star 0 001 @ 09444100 n 0000 | any star in the Ptolemaic theory of planetary motion -09281104 17 n 02 fjord 0 fiord 0 002 @ 09313716 n 0000 ~i 09462312 n 0000 | a long narrow inlet of the sea between steep cliffs; common in Norway -09281252 17 n 01 flare_star 0 002 @ 09406198 n 0000 ~i 09400190 n 0000 | a red dwarf star in which luminosity can change several magnitudes in a few minutes -09281411 17 n 01 flat 0 003 @ 09393605 n 0000 ~ 09193551 n 0000 ~ 09420550 n 0000 | a level tract of land; "the salt flats of Utah" -09281545 17 n 02 Flint 0 Flint_River 0 002 @i 09411430 n 0000 #p 09075842 n 0000 | a river in western Georgia that flows generally south to join the Chattahoochee River at the Florida border where they form the Apalachicola River -09281777 17 n 01 floater 0 003 @ 00002684 n 0000 + 01904293 v 0101 ~ 09308572 n 0000 | an object that floats or is capable of floating -09281914 17 n 02 floodplain 0 flood_plain 0 001 @ 09393605 n 0000 | a low plain adjacent to a river that is formed chiefly of river sediment and is subject to flooding -09282084 17 n 01 floor 0 002 @ 09451517 n 0000 #p 09328904 n 0000 | the bottom surface of any lake or other body of water -09282208 17 n 01 floor 1 002 @ 09334396 n 0000 + 01412346 v 0105 | the ground on which people and animals move about; "the fire spared the forest floor" -09282363 17 n 01 floor 2 002 @ 09451517 n 0000 #p 09238926 n 0000 | the lower inside surface of any hollow structure; "the floor of the pelvis"; "the floor of the cave" -09282534 17 n 01 flowage 0 002 @ 09225146 n 0000 + 00217427 v 0101 | a body of water that has been created by deliberately flooding an area; "many campsites were located near the flowage" -09282724 17 n 02 foam 0 froth 0 012 @ 09229709 n 0000 + 00511855 v 0201 + 00519363 v 0202 + 00519363 v 0101 + 02276305 a 0205 + 02276305 a 0104 ~ 04186268 n 0000 ~ 09301844 n 0000 ~ 09336555 n 0000 ~ 09439213 n 0000 ~ 09443641 n 0000 ~ 09478962 n 0000 | a mass of small bubbles formed in or on a liquid; "the beer had a thick head of foam" -09283066 17 n 01 folium 0 002 @ 09287968 n 0000 + 00208447 a 0103 | a thin layer or stratum of (especially metamorphic) rock -09283193 17 n 02 fomite 0 vehicle 0 001 @ 00002684 n 0000 | any inanimate object (as a towel or money or clothing or dishes or books or toys etc.) that can transmit infectious agents from one person to another -09283405 17 n 01 foothill 0 001 @ 09303008 n 0000 | a relatively low hill on the lower slope of a mountain -09283514 17 n 01 footwall 0 002 @ 09474162 n 0000 #p 09310616 n 0000 | the lower wall of an inclined fault -09283623 17 n 02 ford 0 crossing 0 003 @ 09225146 n 0000 #p 09448361 n 0000 + 01913849 v 0101 | a shallow area in a stream that can be forded -09283767 17 n 01 foreland 1 001 @ 09334396 n 0000 | land forming the forward margin of something -09283866 17 n 01 foreshore 0 002 @ 09287968 n 0000 #p 09428293 n 0000 | the part of the seashore between the highwater mark and the low-water mark -09284015 17 n 04 forest 0 woodland 0 timberland 0 timber 0 010 @ 09334396 n 0000 @ 07941945 n 0000 + 01567888 v 0102 ~i 09222742 n 0000 ~ 09294599 n 0000 ~ 09411189 n 0000 ~i 09432785 n 0000 ~ 09435405 n 0000 ~ 09461170 n 0000 ~i 09479424 n 0000 | land that is covered with trees and shrubs -09284308 17 n 01 Fornax 0 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Cetus and Phoenix -09284433 17 n 02 Forth 0 Forth_River 0 002 @i 09411430 n 0000 #p 08890097 n 0000 | a river in southern Scotland that flows eastward to the Firth of Forth -09284589 17 n 01 fossil 0 009 @ 09407346 n 0000 + 10394786 n 0103 + 00507664 v 0101 ~ 01404495 n 0000 ~ 01973723 n 0000 ~ 09195958 n 0000 ~ 09311067 n 0000 ~ 09353815 n 0000 ~ 09480959 n 0000 | the remains (or an impression) of a plant or animal that existed in a past geological age and that has been excavated from the soil -09284917 17 n 01 Fountain_of_Youth 0 001 @ 09443453 n 0000 | a fountain described in folk tales as able to make people young again; "Ponce de Leon discovered Florida while searching for the Fountain of Youth" -09285128 17 n 01 Fox_River 0 002 @i 09411430 n 0000 #p 09157163 n 0000 | a river in Wisconsin that flows into Lake Michigan -09285254 17 n 01 fragment 1 016 @ 09385911 n 0000 + 00517314 a 0102 + 00517314 a 0101 + 00338071 v 0102 + 00338071 v 0103 ~ 09222051 n 0000 ~ 09229158 n 0000 ~ 09245212 n 0000 ~ 09246134 n 0000 ~ 09273130 n 0000 ~ 09279345 n 0000 ~ 09385137 n 0000 ~ 09408105 n 0000 ~ 09426307 n 0000 ~ 09442146 n 0000 ~ 09442341 n 0000 | a piece broken off or cut off of something else; "a fragment of rock" -09285648 17 n 01 free_electron 0 001 @ 09271904 n 0000 | electron that is not attached to an atom or ion or molecule but is free to move under the influence of an electric field -09285828 17 n 01 Galan 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain peak in the Andes in Argentina (21,654 feet high) -09285979 17 n 02 Galilean_satellite 0 Galilean 0 005 @ 09424270 n 0000 ~i 09231263 n 0000 ~i 09275335 n 0000 ~i 09287033 n 0000 ~i 09315057 n 0000 | one of the four satellites of Jupiter that were discovered by Galileo -09286200 17 n 02 gallstone 0 bilestone 0 001 @ 09230768 n 0000 | a calculus formed in the gall bladder or its ducts -09286318 17 n 01 Galveston_Bay 0 003 @i 09215664 n 0000 #p 09298698 n 0000 #p 09141526 n 0000 | an arm of the Gulf of Mexico in Texas to the south of Houston -09286478 17 n 01 Galway_Bay 0 003 @i 09215664 n 0000 #p 09209263 n 0000 %p 08708870 n 0000 | a bay of the North Atlantic on the west coast of Ireland -09286630 17 n 02 Ganges 0 Ganges_River 0 003 @i 09411430 n 0000 #p 08900535 n 0000 #p 08848731 n 0000 | an Asian river; rises in the Himalayas and flows east into the Bay of Bengal; a sacred river of the Hindus -09286843 17 n 02 Gan_Jiang 0 Kan_River 0 002 @i 09411430 n 0000 #p 08723006 n 0000 | a river in southeastern China that flows generally north into the Chang Jiang to the north of Nanchang -09287033 17 n 01 Ganymede 0 001 @i 09285979 n 0000 | the largest of Jupiter's satellites -09287124 17 n 02 Garonne 0 Garonne_River 0 002 @i 09411430 n 0000 #p 08929922 n 0000 | a river that rises in the Pyrenees and flows northwest to the Bay of Biscay -09287289 17 n 01 Gasherbrum 0 002 @i 09360122 n 0000 #p 09323824 n 0000 | a mountain in northern Kashmir (26,470 feet high) -09287415 17 n 01 gauge_boson 0 005 @ 09226997 n 0000 ~ 09289802 n 0000 ~ 09291633 n 0000 ~ 09314128 n 0000 ~ 09391223 n 0000 | a particle that mediates the interaction of two elementary particles -09287613 17 n 01 Gemini 0 004 @i 09252970 n 0000 #p 08685188 n 0000 %m 09237749 n 0000 %m 09397150 n 0000 | a zodiacal constellation in the northern hemisphere between Taurus and Cancer on the ecliptic -09287817 17 n 01 geode 0 002 @ 09371941 n 0000 ;c 06121113 n 0000 | (mineralogy) a hollow rock or nodule with the cavity usually lined with crystals -09287968 17 n 02 geological_formation 0 formation 0 031 @ 00002684 n 0000 ;c 06115701 n 0000 ~ 09201998 n 0000 ~ 09217230 n 0000 ~ 09238926 n 0000 ~ 09246464 n 0000 ~ 09264803 n 0000 ~ 09266604 n 0000 ~ 09283066 n 0000 ~ 09283866 n 0000 ~ 09309292 n 0000 ~ 09331251 n 0000 ~ 09348460 n 0000 ~ 09357447 n 0000 ~ 09362316 n 0000 ~ 09366017 n 0000 ~ 09366317 n 0000 ~ 09376786 n 0000 ~i 09392162 n 0000 ~ 09403734 n 0000 ~ 09407194 n 0000 ~ 09409752 n 0000 ~ 09409898 n 0000 ~ 09433442 n 0000 ~ 09437454 n 0000 ~ 09443453 n 0000 ~ 09454153 n 0000 ~ 09470222 n 0000 ~ 09472413 n 0000 ~ 09474412 n 0000 ~ 09476123 n 0000 | (geology) the geological features of the earth -09288635 17 n 01 geyser 0 003 @ 09443453 n 0000 + 02072394 v 0101 ~i 09378178 n 0000 | a spring that discharges hot water and steam -09288769 17 n 02 giant_star 0 giant 0 003 @ 09444100 n 0000 ~i 09205334 n 0000 ~i 09234654 n 0000 | a very bright star of large diameter and low density (relative to the Sun) -09288946 17 n 02 Gila 0 Gila_River 0 003 @i 09411430 n 0000 #p 09114696 n 0000 #p 09057311 n 0000 | a river that rises in western New Mexico and flows westward through southern Arizona to become a tributary of the Colorado River -09289177 17 n 01 glacial_boulder 0 001 @ 09227839 n 0000 | a boulder that has been carried by a glacier to a place far distant from its place of origin -09289331 17 n 01 glacier 0 011 @ 09309292 n 0000 + 02736015 a 0101 + 01208708 v 0101 + 00374375 v 0101 ~ 09194227 n 0000 ~ 09255070 n 0000 %p 09308918 n 0000 %p 09358907 n 0000 %p 09370006 n 0000 ~ 09391774 n 0000 %s 14915184 n 0000 | a slowly moving mass of ice -09289596 17 n 01 glen 0 002 @ 09468604 n 0000 ;r 08890097 n 0000 | a narrow secluded valley (in the mountains) -09289709 17 n 01 globule 0 002 @ 13899404 n 0000 ~ 09229709 n 0000 | a small globe or ball -09289802 17 n 01 gluon 0 001 @ 09287415 n 0000 | a gauge boson that mediates strong interaction among quarks -09289913 17 n 01 Golden_Gate 0 002 @i 09446115 n 0000 #p 09060768 n 0000 | a strait in western California that connects the San Francisco Bay with the Pacific Ocean; discovered in 1579 by Sir Francis Drake -09290121 17 n 01 Gondwanaland 0 002 @i 09254614 n 0000 #p 08652551 n 0000 | a hypothetical continent that (according to plate tectonic theory) broke up later into India and Australia and Africa and South America and Antarctica -09290350 17 n 01 gopher_hole 0 001 @ 09304750 n 0000 | a hole in the ground made by gophers -09290444 17 n 01 gorge 0 005 @ 09405787 n 0000 ~i 09238030 n 0000 ~i 09291027 n 0000 ~ 09295946 n 0000 ~i 09378349 n 0000 | a deep ravine (usually with a river running through it) -09290626 17 n 01 Gosainthan 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906952 n 0000 | a mountain in the Himalayas in Tibet (26,290 feet high) -09290777 17 n 01 grain 0 007 @ 14585519 n 0000 + 02231502 a 0103 + 02231502 a 0104 + 01363005 v 0101 + 00141524 v 0102 + 00144169 v 0102 ~ 09291513 n 0000 | a relatively small granular particle of a substance; "a grain of sand"; "a grain of sugar" -09291027 17 n 01 Grand_Canyon 0 003 @i 09290444 n 0000 #p 09250165 n 0000 #p 09057311 n 0000 | the enormous gorge of the Colorado River in northern Arizona -09291185 17 n 01 Grand_River 0 002 @i 09411430 n 0000 #p 09099526 n 0000 | a river in southern Michigan that flows northwest to empty into Lake Michigan -09291340 17 n 01 Grand_Teton 0 002 @i 09360122 n 0000 #p 09456860 n 0000 | a mountain peak in northwestern Wyoming; the highest peak in the Teton Range (13,766 feet high) -09291513 17 n 01 granule 0 004 @ 09290777 n 0000 ~ 05434361 n 0000 ~ 09244331 n 0000 ~ 12962622 n 0000 | a tiny grain -09291633 17 n 01 graviton 0 001 @ 09287415 n 0000 | a gauge boson that mediates the (extremely weak) gravitational interactions between particles -09291781 17 n 01 Great_Attractor 0 001 @ 08271042 n 0000 | a massive grouping of galaxies in the direction of Centaurus and Hydra whose gravitational attraction is believed to cause deviations in the paths of other galaxies -09292007 17 n 01 Great_Australian_Bight 0 003 @i 09220239 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a wide bay of the Indian Ocean in southern Australia; notorious for storms -09292189 17 n 02 Great_Bear 0 Ursa_Major 0 002 @i 09252970 n 0000 %p 09219858 n 0000 | a constellation outside the zodiac that rotates around the North Star -09292348 17 n 01 Great_Barrier_Reef 0 003 @i 09256479 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | the largest coral reef in the world; in the Coral Sea off the northeastern coast of Australia -09292545 17 n 02 Great_Dividing_Range 0 Eastern_Highlands 0 004 @i 09403734 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 %p 09211735 n 0000 | a mountain range running along the eastern coast of Australia -09292751 17 n 01 Great_Lakes 0 008 @i 00031264 n 0000 #p 09044862 n 0000 #p 08820121 n 0000 %p 09331066 n 0000 %p 09331535 n 0000 %p 09332050 n 0000 %p 09332770 n 0000 %p 09333171 n 0000 | a group of five large, interconnected lakes in central North America -09293011 17 n 02 Great_Plains 0 Great_Plains_of_North_America 0 004 @i 08619524 n 0000 #p 09372504 n 0000 %p 08578174 n 0000 %p 09341465 n 0000 | a vast prairie region extending from Alberta and Saskatchewan and Manitoba in Canada south through the west central United States into Texas; formerly inhabited by Native Americans -09293340 17 n 01 Great_Rift_Valley 0 004 @i 09410224 n 0000 #p 09207288 n 0000 #p 09189411 n 0000 ;c 06115701 n 0000 | ( geology) a depression in southwestern Asia and eastern Africa; extends from the valley of the Jordan River to Mozambique; marked by geological faults -09293613 17 n 01 Great_Salt_Lake 0 002 @i 09328904 n 0000 #p 09147046 n 0000 | a shallow body of salt water in northwestern Utah -09293744 17 n 01 Great_Slave_Lake 0 002 @i 09328904 n 0000 #p 08825477 n 0000 | a lake in the Northwest Territories in northwestern Canada; drained by the Mackenzie River -09293917 17 n 01 Great_Smoky_Mountains 0 002 @i 09403734 n 0000 #p 09201301 n 0000 | part of the Appalachians between North Carolina and Tennessee -09294066 17 n 02 Green 0 Green_River 0 003 @i 09411430 n 0000 #p 09159003 n 0000 #p 09147046 n 0000 | a river that rises in western Wyoming and flows southward through Utah to become a tributary of the Colorado River -09294285 17 n 01 Greenland_Sea 0 002 @i 09426788 n 0000 #p 09204977 n 0000 | part of the Arctic Ocean to the north of Iceland -09294413 17 n 01 Green_Mountains 0 003 @i 09403734 n 0000 #p 09201301 n 0000 #p 09147964 n 0000 | a range of the Appalachian Mountains that extends from south to north through Vermont -09294599 17 n 01 greenwood 0 001 @ 09284015 n 0000 | woodlands in full leaf; "the greenwood was Robin Hood's home" -09294716 17 n 01 grinding 0 002 @ 14585519 n 0000 + 00331082 v 0101 | material resulting from the process of grinding; "vegetable grindings clogged the drain" -09294877 17 n 02 grotto 0 grot 0 001 @ 09238926 n 0000 | a small cave (usually with attractive features) -09294984 17 n 01 grounds 0 002 @ 09269972 n 0000 ~ 09248914 n 0000 | dregs consisting of solid particles (especially of coffee) that form a residue; "it is a Middle Eastern custom to read your future in your coffee grounds" -09295210 17 n 01 growler 0 001 @ 09308572 n 0000 | a small iceberg or ice floe just large enough to be hazardous for shipping -09295338 17 n 01 growth 0 002 @ 00002684 n 0000 ~ 09313159 n 0000 | something grown or growing; "a growth of hair" -09295455 17 n 02 Grus 0 Crane 0 001 @i 09252970 n 0000 | a small constellation in the southern hemisphere near Phoenix -09295576 17 n 01 Guadalupe_Mountains 0 003 @i 09403734 n 0000 #p 09114696 n 0000 #p 09141526 n 0000 | a mountain range in southern New Mexico and western Texas; the southern extension of the Sacramento Mountains -09295790 17 n 01 Guantanamo_Bay 0 001 @ 09215664 n 0000 | an inlet of the Caribbean Sea; a United States naval station was established on the bay in 1903 -09295946 17 n 02 gulch 0 flume 0 001 @ 09290444 n 0000 | a narrow gorge with a stream running through it -09296053 17 n 01 gulf 0 001 @ 09242389 n 0000 | a deep wide chasm -09296121 17 n 01 gulf 1 025 @ 09225146 n 0000 #p 09426788 n 0000 ~i 09296804 n 0000 ~i 09296937 n 0000 ~i 09297104 n 0000 ~i 09297240 n 0000 ~i 09297423 n 0000 ~i 09297584 n 0000 ~i 09297729 n 0000 ~i 09297920 n 0000 ~i 09298100 n 0000 ~i 09298267 n 0000 ~i 09298410 n 0000 ~i 09298569 n 0000 ~i 09298698 n 0000 ~i 09298974 n 0000 ~i 09299125 n 0000 ~i 09299265 n 0000 ~i 09299397 n 0000 ~i 09299584 n 0000 ~i 09299727 n 0000 ~i 09299885 n 0000 ~i 09300030 n 0000 ~i 09300199 n 0000 ~i 09390424 n 0000 | an arm of a sea or ocean partly enclosed by land; larger than a bay -09296695 17 n 01 Gulf_Coast 0 002 @i 09428293 n 0000 #p 09298698 n 0000 | a seashore of the Gulf of Mexico -09296804 17 n 01 Gulf_of_Aden 0 002 @i 09296121 n 0000 #p 09311259 n 0000 | arm of the Indian Ocean at the entrance to the Red Sea -09296937 17 n 01 Gulf_of_Alaska 0 002 @i 09296121 n 0000 #p 09382990 n 0000 | a gulf of the Pacific Ocean between the Alaska Peninsula and the Alexander Archipelago -09297104 17 n 01 Gulf_of_Antalya 0 002 @i 09296121 n 0000 #p 09350045 n 0000 | a gulf of the Mediterranean Sea in southwestern Turkey -09297240 17 n 02 Gulf_of_Aqaba 0 Gulf_of_Akaba 0 002 @i 09296121 n 0000 #p 09406551 n 0000 | a northeastern arm of the Red Sea; between the Sinai Peninsula (Egypt) and Saudi Arabia -09297423 17 n 01 Gulf_of_Bothnia 0 003 @i 09296121 n 0000 #p 09213254 n 0000 %p 08780510 n 0000 | a northern arm of the Baltic Sea; between Sweden and Finland -09297584 17 n 02 Gulf_of_California 0 Sea_of_Cortes 0 002 @i 09296121 n 0000 #p 08740875 n 0000 | a gulf to the west of the mainland of Mexico -09297729 17 n 03 Gulf_of_Campeche 0 Golfo_de_Campeche 0 Bay_of_Campeche 0 003 @i 09296121 n 0000 #p 08740875 n 0000 #p 09298698 n 0000 | a part of the Gulf of Mexico to the west of Yucatan -09297920 17 n 02 Gulf_of_Carpentaria 0 Carpentaria 0 003 @i 09296121 n 0000 @i 09211266 n 0000 #p 08831004 n 0000 | a wide shallow inlet of the Arafura Sea in northern Australia -09298100 17 n 02 Gulf_of_Corinth 0 Gulf_of_Lepanto 0 002 @i 09296121 n 0000 #p 09315455 n 0000 | inlet of the Ionian Sea between central Greece and the Peloponnesus -09298267 17 n 01 Gulf_of_Finland 0 002 @i 09296121 n 0000 #p 09213254 n 0000 | an eastern arm of the Baltic Sea; between Finland and Estonia -09298410 17 n 01 Gulf_of_Guinea 0 004 @i 09296121 n 0000 #p 09209263 n 0000 %p 08763932 n 0000 %p 09220434 n 0000 | a gulf off the southwest coast of Africa -09298569 17 n 01 Gulf_of_Martaban 0 002 @i 09296121 n 0000 #p 09196454 n 0000 | an arm of the Andaman Sea off southern Myanmar -09298698 17 n 02 Gulf_of_Mexico 0 Golfo_de_Mexico 0 007 @i 09296121 n 0000 #p 09209263 n 0000 %p 09286318 n 0000 %p 09296695 n 0000 %p 09297729 n 0000 %p 09356781 n 0000 %p 09454265 n 0000 | an arm of the Atlantic to the south of the United States and to the east of Mexico -09298974 17 n 02 Gulf_of_Ob 0 Bay_of_Ob 0 003 @i 09296121 n 0000 #p 09005712 n 0000 #p 09324118 n 0000 | an inlet of the Kara Sea in western Siberia -09299125 17 n 01 Gulf_of_Oman 0 002 @i 09296121 n 0000 #p 09202405 n 0000 | an arm of the Arabian Sea connecting it with the Persian Gulf -09299265 17 n 01 Gulf_of_Riga 0 002 @i 09296121 n 0000 #p 09213254 n 0000 | an inlet of the Baltic Sea between Latvia and Estonia -09299397 17 n 02 Gulf_of_Saint_Lawrence 0 Gulf_of_St._Lawrence 0 002 @i 09296121 n 0000 #p 09209263 n 0000 | an arm of the northwest Atlantic Ocean off the southeastern coast of Canada -09299584 17 n 01 Gulf_of_Sidra 0 002 @i 09296121 n 0000 #p 09350045 n 0000 | wide inlet of the Mediterranean Sea on the north coast of Libya -09299727 17 n 01 Gulf_of_Suez 0 002 @i 09296121 n 0000 #p 09406551 n 0000 | a northwestern arm of the Red Sea linked to the Mediterranean by the Suez Canal -09299885 17 n 01 Gulf_of_Tehuantepec 0 003 @i 09296121 n 0000 #p 09382990 n 0000 #p 08740875 n 0000 | an arm of the Pacific in southern Mexico -09300030 17 n 02 Gulf_of_Thailand 0 Gulf_of_Siam 0 002 @i 09296121 n 0000 #p 09441107 n 0000 | an arm of the South China Sea between Indochina and the Malay Peninsula -09300199 17 n 01 Gulf_of_Venice 0 002 @i 09296121 n 0000 #p 09188383 n 0000 | an arm of the Adriatic Sea -09300306 17 n 01 gully 0 004 @ 09468604 n 0000 ~ 09206896 n 0000 ~ 09269882 n 0000 ~ 09474010 n 0000 | deep ditch cut by running water (especially after a prolonged downpour) -09300483 17 n 01 gut 0 001 @ 09241247 n 0000 | a narrow channel or strait -09300559 17 n 01 guyot 0 001 @ 09427752 n 0000 | a seamount of volcanic origin (especially in the Pacific Ocean) -09300674 17 n 01 hadron 0 007 @ 09272085 n 0000 ~ 09199219 n 0000 ~ 09199498 n 0000 %p 09200317 n 0000 ~ 09215023 n 0000 ~ 09352282 n 0000 %p 09401834 n 0000 | any elementary particle that interacts strongly with other particles -09300905 17 n 01 hail 0 001 @ 00002684 n 0000 | many objects thrown forcefully through the air; "a hail of pebbles"; "a hail of bullets" -09301044 17 n 03 hairball 0 hair_ball 0 trichobezoar 0 001 @ 09454412 n 0000 | a compact mass of hair that forms in the alimentary canal (especially in the stomach of animals as a result of licking fur) -09301249 17 n 01 Hampton_Roads 0 003 @i 09241247 n 0000 #p 09148970 n 0000 -r 01280308 n 0000 | a channel in southeastern Virginia through which the Elizabeth River and the James River flow into Chesapeake Bay -09301461 17 n 01 Handies_Peak 0 002 @i 09360122 n 0000 #p 09423379 n 0000 | a mountain peak in the San Juan Mountains in southwestern Colorado (14,048 feet high) -09301625 17 n 01 hanging_wall 0 002 @ 09474162 n 0000 #p 09310616 n 0000 | the upper wall of an inclined fault -09301738 17 n 01 Hangzhou_Bay 0 001 @i 09215664 n 0000 | a bay formed by an inlet of the East China Sea -09301844 17 n 01 head 0 001 @ 09282724 n 0000 | the foam or froth that accumulates at the top when you pour an effervescent liquid into a container; "the beer had a large head of foam" -09302031 17 n 01 head 1 001 @ 00002684 n 0000 | a rounded compact mass; "the head of a comet" -09302127 17 n 01 headstream 0 003 @ 09448361 n 0000 ~i 09224193 n 0000 ~i 09478678 n 0000 | a stream that forms the source of a river -09302263 17 n 01 Hercules 0 001 @i 09252970 n 0000 | a large constellation in the northern hemisphere between Lyra and Corona Borealis -09302400 17 n 02 heterocyclic_ring 0 heterocycle 0 002 @ 09246883 n 0000 + 00676999 a 0201 | a ring of atoms of more than one kind; especially a ring of carbon atoms containing at least one atom that is not carbon -09302616 17 n 02 highland 0 upland 0 006 @ 09366317 n 0000 + 01219111 a 0102 ! 09344198 n 0101 ~i 08891595 n 0000 ~ 09269341 n 0000 ~ 09453008 n 0000 | elevated (e.g., mountainous) land -09302804 17 n 02 high_sea 0 international_waters 0 004 @ 09225146 n 0000 #p 09345932 n 0000 ! 09456614 n 0201 ! 09456614 n 0101 | the open seas of the world outside the territorial waters of any nation -09303008 17 n 01 hill 0 021 @ 09366317 n 0000 + 02240490 a 0103 + 01660640 v 0101 ~i 08785743 n 0000 ~i 08796219 n 0000 ~i 08796351 n 0000 ~i 08796707 n 0000 ~i 08796844 n 0000 ~i 08797013 n 0000 ~i 08797254 n 0000 ~i 08797412 n 0000 ~i 08884513 n 0000 ~i 08906169 n 0000 ~i 09071349 n 0000 ~i 09096343 n 0000 ~ 09230202 n 0000 ~ 09283405 n 0000 %p 09303528 n 0000 ~ 09326662 n 0000 ~i 09423112 n 0000 ~ 09459979 n 0000 | a local and well-defined elevation of the land; "they loved to roam the hills of West Virginia" -09303528 17 n 01 hillside 0 003 @ 09437454 n 0000 #p 09303008 n 0000 ~ 09228055 n 0000 | the side or slope of a hill -09303647 17 n 03 Himalayas 0 Himalaya_Mountains 0 Himalaya 0 017 @i 09403734 n 0000 #p 08906952 n 0000 #p 08900535 n 0000 #p 08906374 n 0000 + 02965861 a 0101 %p 09197945 n 0000 %p 09241047 n 0000 %p 09266453 n 0000 %p 09277010 n 0000 %p 09290626 n 0000 %p 09322930 n 0000 %p 09323221 n 0000 %p 09338712 n 0000 %p 09346284 n 0000 %p 09365128 n 0000 %p 09365288 n 0000 %p 09375693 n 0000 | a mountain range extending 1500 miles on the border between India and Tibet; this range contains the world's highest mountain -09304164 17 n 02 Hindu_Kush 0 Hindu_Kush_Mountains 0 005 @i 09403734 n 0000 #p 08975902 n 0000 #p 08703454 n 0000 %p 09325530 n 0000 %p 09459114 n 0000 | a mountain range extending to the west of the Himalayas -09304376 17 n 02 hogback 0 horseback 0 001 @ 09409752 n 0000 | a narrow ridge of hills -09304465 17 n 01 hole 1 012 @ 09379111 n 0000 + 01397998 a 0101 + 01282023 v 0101 ~ 09201031 n 0000 ~ 09226367 n 0000 ~ 09229941 n 0000 ~ 09259104 n 0000 ~ 09337048 n 0000 ~ 09382570 n 0000 ~ 09389867 n 0000 ~ 09405683 n 0000 ~ 15102894 n 0000 | an opening into or through something -09304750 17 n 02 hole 2 hollow 0 011 @ 09366017 n 0000 + 02263982 a 0201 + 01310660 v 0203 + 01282545 v 0201 ~ 09230041 n 0000 ~ 09290350 n 0000 ~ 09325038 n 0000 ~ 09393108 n 0000 ~ 09398076 n 0000 ~ 09403086 n 0000 ~ 09481036 n 0000 | a depression hollowed out of solid matter -09305031 17 n 02 hollow 1 holler 0 003 @ 09468604 n 0000 + 02263982 a 0101 ~ 09264599 n 0000 | a small valley between mountains; "he built himself a cabin in a hollow high up in the Appalachians" -09305229 17 n 01 holystone 0 002 @ 14995541 n 0000 + 01251515 v 0101 | a soft sandstone used for scrubbing the decks of a ship -09305358 17 n 02 hood 0 cap 0 002 @ 09257949 n 0000 #p 00017222 n 0000 | a protective covering that is part of a plant -09305479 17 n 02 Hook_of_Holland 0 Hoek_van_Holland 0 002 @i 09233715 n 0000 #p 08949093 n 0000 | a cape on the southwestern coast of the Netherlands near Rotterdam -09305646 17 n 01 horsepond 0 001 @ 09397391 n 0000 | a pond for watering horses -09305728 17 n 01 horst 0 001 @ 09260010 n 0000 | a ridge of the earth's crust that has been forced upward between two faults and so is higher than the surrounding land -09305898 17 n 02 hot_spring 0 thermal_spring 0 001 @ 09443453 n 0000 | a natural spring of water at a temperature of 70 F or above -09306031 17 n 02 Housatonic 0 Housatonic_River 0 003 @i 09411430 n 0000 #p 09095023 n 0000 #p 09068444 n 0000 | a river that rises in western Massachusetts and flows south through Connecticut to empty into Long Island Sound -09306257 17 n 03 Huang_He 0 Hwang_Ho 0 Yellow_River 0 002 @i 09411430 n 0000 #p 08723006 n 0000 | a major river of Asia in northern China; flows generally eastward into the Yellow Sea; carries large quantities of yellow silt to its delta -09306497 17 n 01 Huascaran 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08979054 n 0000 | a mountain in the Andes in Peru (22,205 feet high) -09306642 17 n 02 Hubbard 0 Mount_Hubbard 0 003 @i 09360122 n 0000 #p 09055015 n 0000 #p 09248477 n 0000 | a mountain peak in southeastern Alaska that is part of the Coast Range (14,950 feet high) -09306840 17 n 02 Hudson 0 Hudson_River 0 002 @i 09411430 n 0000 #p 09117351 n 0000 | a New York river; flows southward into New York Bay; explored by Henry Hudson early in the 17th century -09307031 17 n 01 Hudson_Bay 0 002 @i 09426788 n 0000 #p 08820121 n 0000 | an inland sea in northern Canada -09307140 17 n 01 Humber 0 002 @i 09274500 n 0000 #p 08871007 n 0000 | an estuary in central northeastern England formed by the Ouse River and the Trent River -09307300 17 n 02 hunk 0 lump 0 007 @ 09385911 n 0000 + 02141021 a 0202 + 00912490 a 0201 + 01385920 v 0201 + 00657016 v 0202 ~ 09371941 n 0000 ~ 09375481 n 0000 | a large piece of something without definite shape; "a hunk of bread"; "a lump of coal" -09307552 17 n 02 Hydra 0 Snake 1 001 @i 09252970 n 0000 | a long faint constellation in the southern hemisphere near the equator stretching between Virgo and Cancer -09307719 17 n 01 hydrogen_ion 0 003 @ 09400037 n 0000 @ 09238294 n 0000 #p 14640756 n 0000 | a positively charged atom of hydrogen; that is to say, a normal hydrogen atomic nucleus -09307902 17 n 01 hydrosphere 0 006 @ 08591680 n 0000 #p 09270894 n 0000 %p 09225146 n 0000 %p 09345932 n 0000 %p 09376198 n 0000 %p 09426788 n 0000 | the watery layer of the earth's surface; includes water vapor -09308116 17 n 01 Hydrus 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near the south celestial pole -09308242 17 n 01 hyperon 0 002 @ 09215023 n 0000 ~ 09334266 n 0000 | any baryon that is not a nucleon; unstable particle with mass greater than a neutron -09308398 17 n 01 ice 0 006 @ 00002684 n 0000 ~ 09270414 n 0000 ~ 09308918 n 0000 ~ 09370006 n 0000 ~ 09383901 n 0000 ~ 09432163 n 0000 | the frozen part of a body of water -09308572 17 n 02 iceberg 0 berg 0 003 @ 09309292 n 0000 @ 09281777 n 0000 ~ 09295210 n 0000 | a large mass of ice floating at sea; usually broken off of a polar glacier -09308743 17 n 02 icecap 0 ice_cap 0 001 @ 09309292 n 0000 | a mass of ice and snow that permanently covers a large area of land (e.g., the polar regions or a mountain peak) -09308918 17 n 01 icefall 0 002 @ 09308398 n 0000 #p 09289331 n 0000 | a steep part of a glacier resembling a frozen waterfall -09309046 17 n 01 ice_field 0 001 @ 09309292 n 0000 | a large flat mass of ice (larger than an ice floe) floating at sea -09309168 17 n 02 ice_floe 0 floe 0 001 @ 09309292 n 0000 | a flat mass of ice (smaller than an ice field) floating at sea -09309292 17 n 01 ice_mass 0 006 @ 09287968 n 0000 ~ 09289331 n 0000 ~ 09308572 n 0000 ~ 09308743 n 0000 ~ 09309046 n 0000 ~ 09309168 n 0000 | a large mass of ice -09309456 17 n 05 Iguazu 0 Iguazu_Falls 0 Iguassu 0 Iguassu_Falls 0 Victoria_Falls 1 003 @i 09475292 n 0000 #p 08711974 n 0000 #p 08853741 n 0000 | a large waterfall on the border between Argentina and Brazil -09309666 17 n 02 IJssel 0 IJssel_river 0 002 @i 09411430 n 0000 #p 08949093 n 0000 | a river in the central Netherlands flowing north to the IJsselmeer -09309820 17 n 01 IJsselmeer 0 002 @i 09328904 n 0000 #p 08949093 n 0000 | a shallow lake in northwestern Netherlands created in 1932 by building a dam across the entrance to the Zuider Zee -09310011 17 n 01 Illampu 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08852843 n 0000 | a mountain peak in the Andes in Bolivia (20,870 feet high) -09310162 17 n 01 Illimani 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08852843 n 0000 | a mountain peak in the Andes in Bolivia (21,201 feet high) -09310314 17 n 01 Illinois_River 0 002 @i 09411430 n 0000 #p 09082540 n 0000 | a river in Illinois that flows southwest to the Mississippi River -09310460 17 n 01 impairer 0 003 @ 09190918 n 0000 + 00477941 v 0102 + 00262881 v 0101 | an agent that impairs; "crops can be great impairers of the soil" -09310616 17 n 01 inclined_fault 0 005 @ 09278537 n 0000 %p 09283514 n 0000 %p 09301625 n 0000 ~ 09372313 n 0000 ~ 09457507 n 0000 | a geological fault in which one side is above the other -09310806 17 n 03 inclusion_body 0 cellular_inclusion 0 inclusion 0 003 @ 09224911 n 0000 ~ 09395266 n 0000 ~ 09417926 n 0000 | any small intracellular body found within another (characteristic of certain diseases); "an inclusion in the cytoplasm of the cell" -09311067 17 n 02 index_fossil 0 guide_fossil 0 001 @ 09284589 n 0000 | a fossil known to have lived in a particular geologic age that can be used to date the rock layer in which it is found -09311259 17 n 01 Indian_Ocean 0 014 @i 09376198 n 0000 %p 08718962 n 0000 %p 08733690 n 0000 %p 08961970 n 0000 %p 08965055 n 0000 %p 08967329 n 0000 %p 08996284 n 0000 %p 09198574 n 0000 %p 09202405 n 0000 %p 09216442 n 0000 %p 09296804 n 0000 %p 09362666 n 0000 %p 09406551 n 0000 %p 09458967 n 0000 | the 3rd largest ocean; bounded by Africa on the west, Asia on the north, Australia on the east and merging with the Antarctic Ocean to the south -09311710 17 n 02 Indigirka 0 Indigirka_River 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a river in far eastern Siberia that flows generally northward to the Arctic Ocean -09311885 17 n 01 indirect_transmission 0 003 @ 09460680 n 0000 ~ 09469744 n 0000 ~ 09470027 n 0000 | a transmission mechanism in which the infectious agent is transferred to the person by a fomite of vector -09312094 17 n 02 indumentum 0 indument 0 001 @ 09257949 n 0000 | a covering of fine hairs (or sometimes scales) as on a leaf or insect -09312231 17 n 02 Indus 0 Indus_River 0 002 @i 09411430 n 0000 #p 08975902 n 0000 | an Asian river that rises in Tibet and flows through northern India and then southwest through Kashmir and Pakistan to the Arabian Sea; "the valley of the Indus was the site of an early civilization" -09312516 17 n 01 Indus 1 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Telescopium and Tucana -09312645 17 n 02 inessential 0 nonessential 0 004 @ 00002452 n 0000 + 00903264 a 0202 ! 09367203 n 0102 ~ 09188229 n 0000 | anything that is not essential; "they discarded all their inessentials" -09312843 17 n 02 infectious_agent 0 infective_agent 0 003 @ 09190918 n 0000 ~ 01328702 n 0000 ~ 01386007 n 0000 | an agent capable of producing infection -09312999 17 n 01 inferior_planet 0 003 @ 09394007 n 0000 ~i 09351408 n 0000 ~i 09470762 n 0000 | any of the planets whose orbit lies inside the earth's orbit -09313159 17 n 01 ingrowth 0 001 @ 09295338 n 0000 | something that grows inward -09313241 17 n 02 Inland_Passage 0 Inside_Passage 0 004 @i 09476331 n 0000 #p 09152944 n 0000 #p 08822855 n 0000 #p 09055015 n 0000 | a naturally protected waterway from Seattle to Skagway in southeastern Alaska -09313454 17 n 01 Inland_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | an arm of the Pacific Ocean in southern Japan; surrounded by the islands of Honshu and Shikoku and Kyushu and linked to the Sea of Japan by a narrow channel; the chief port is Hiroshima -09313716 17 n 02 inlet 0 recess 0 010 @ 09225146 n 0000 #p 09426788 n 0000 #p 09328904 n 0000 ~i 09229249 n 0000 ~ 09257761 n 0000 ~ 09281104 n 0000 ~ 09341987 n 0000 ~i 09424118 n 0000 ~i 09478810 n 0000 ~i 09483519 n 0000 | an arm off of a larger body of water (often between rocky headlands) -09314013 17 n 01 inside_track 0 002 @ 09387222 n 0000 #p 04037625 n 0000 | the inner side of a curved racecourse -09314128 17 n 01 intermediate_vector_boson 0 001 @ 09287415 n 0000 | a gauge boson that mediates weak interactions between particles -09314263 17 n 01 interplanetary_dust 0 002 @ 14840092 n 0000 #p 09314603 n 0000 | microscopic particles in the interplanetary medium -09314398 17 n 01 interplanetary_gas 0 003 @ 14481511 n 0000 #p 09314603 n 0000 #s 11510571 n 0000 | a rarefied flow of gas and charged particles (plasma) that stream from the sun and form the solar wind -09314603 17 n 01 interplanetary_medium 0 006 @ 08500819 n 0000 #p 09439433 n 0000 %p 09314263 n 0000 %p 09314398 n 0000 %p 11477269 n 0000 %p 11510571 n 0000 | interplanetary space including forms of energy and gas and dust -09314829 17 n 01 interstellar_medium 0 001 @ 08500989 n 0000 | interstellar space including streams of protons moving from the stars -09314964 17 n 01 intrusion 0 001 @ 09416076 n 0000 | rock produced by an intrusive process -09315057 17 n 01 Io 0 001 @i 09285979 n 0000 | the closest of Jupiter's moons; has active volcanoes -09315159 17 n 01 ion 0 007 @ 09386422 n 0000 + 02750752 a 0101 + 00521185 v 0101 + 00266798 v 0101 + 00266798 v 0102 ~ 09197815 n 0000 ~ 09238294 n 0000 | a particle that is electrically charged (positive or negative); an atom or molecule or group that has lost or gained one or more electrons -09315455 17 n 01 Ionian_Sea 0 003 @i 09426788 n 0000 #p 09350045 n 0000 %p 09298100 n 0000 | an arm of the Mediterranean Sea between western Greece and southern Italy -09315624 17 n 01 Irish_Sea 0 002 @i 09426788 n 0000 #p 09373016 n 0000 | an arm of the North Atlantic between Great Britain and Ireland -09315762 17 n 01 iron_filing 0 001 @ 09352721 n 0000 | a fragment of iron rubbed off by the use of a file -09315870 17 n 02 Irrawaddy 0 Irrawaddy_River 0 001 @i 09411430 n 0000 | the main river of Myanmar rising in the north and flowing south through the length of Burma to empty into the Andaman Sea -09316066 17 n 04 Irtish 0 Irtish_River 0 Irtysh 0 Irtysh_River 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | an Asian river that rises in the Altai Mountains in northern China and flows generally northwest to become a tributary of the Ob River -09316312 17 n 02 Isere 0 Isere_River 0 002 @i 09411430 n 0000 #p 08929922 n 0000 | a river in southeastern France; a tributary of the Rhone -09316454 17 n 01 island 0 153 @ 09334396 n 0000 #m 09203827 n 0000 + 10217436 n 0101 ~i 08708742 n 0000 ~i 08708870 n 0000 ~i 08709945 n 0000 ~i 08710113 n 0000 ~i 08710219 n 0000 ~i 08710678 n 0000 ~i 08711143 n 0000 ~i 08711300 n 0000 ~i 08718253 n 0000 ~i 08718391 n 0000 ~i 08718962 n 0000 ~i 08721286 n 0000 ~i 08730354 n 0000 ~i 08730550 n 0000 ~i 08746797 n 0000 ~ 08746942 n 0000 ~i 08748499 n 0000 ~i 08748794 n 0000 ~i 08748917 n 0000 ~i 08749042 n 0000 ~i 08749167 n 0000 ~i 08749312 n 0000 ~i 08749650 n 0000 ~i 08750151 n 0000 ~i 08751126 n 0000 ~i 08751317 n 0000 ~i 08752814 n 0000 ~i 08753412 n 0000 ~i 08753561 n 0000 ~i 08753729 n 0000 ~i 08754529 n 0000 ~i 08755214 n 0000 ~i 08755852 n 0000 ~i 08756052 n 0000 ~i 08756735 n 0000 ~i 08761697 n 0000 ~i 08763010 n 0000 ~i 08763932 n 0000 ~i 08764717 n 0000 ~i 08777348 n 0000 ~i 08778597 n 0000 ~i 08778936 n 0000 ~i 08779042 n 0000 ~ 08782627 n 0000 ~i 08784333 n 0000 ~i 08784746 n 0000 ~i 08784905 n 0000 ~i 08790748 n 0000 ~i 08805953 n 0000 ~i 08806142 n 0000 ~i 08810631 n 0000 ~i 08810999 n 0000 ~i 08819397 n 0000 ~i 08819683 n 0000 ~i 08823728 n 0000 ~i 08825211 n 0000 ~i 08826699 n 0000 ~i 08833981 n 0000 ~i 08835188 n 0000 ~i 08838070 n 0000 ~i 08838319 n 0000 ~i 08838556 n 0000 ~i 08841209 n 0000 ~i 08843215 n 0000 ~i 08843571 n 0000 ~i 08843735 n 0000 ~i 08843958 n 0000 ~i 08844108 n 0000 ~i 08844279 n 0000 ~i 08845225 n 0000 ~i 08848421 n 0000 ~i 08858248 n 0000 ~i 08858942 n 0000 ~i 08859173 n 0000 ~i 08887013 n 0000 ~i 08887716 n 0000 ~i 08893717 n 0000 ~i 08893868 n 0000 ~i 08894011 n 0000 ~i 08894133 n 0000 ~i 08895928 n 0000 ~i 08908248 n 0000 ~i 08908509 n 0000 ~i 08908739 n 0000 ~i 08908954 n 0000 ~i 08909107 n 0000 ~i 08909233 n 0000 ~i 08920722 n 0000 ~i 08920924 n 0000 ~i 08921392 n 0000 ~i 08921613 n 0000 ~i 08924400 n 0000 ~i 08927068 n 0000 ~i 08934067 n 0000 ~i 08942091 n 0000 ~i 08943242 n 0000 ~i 08952628 n 0000 ~i 08953151 n 0000 ~i 08961970 n 0000 ~i 08965055 n 0000 ~i 08966239 n 0000 ~i 08967329 n 0000 ~i 08971914 n 0000 ~i 08972148 n 0000 ~i 08972335 n 0000 ~i 08980640 n 0000 ~i 08980814 n 0000 ~i 08980920 n 0000 ~i 08981123 n 0000 ~i 08982452 n 0000 ~i 08985345 n 0000 ~i 08985559 n 0000 ~i 08987879 n 0000 ~i 08988216 n 0000 ~i 08988333 n 0000 ~i 08988453 n 0000 ~i 08989324 n 0000 ~i 08989941 n 0000 ~i 08991182 n 0000 ~i 08993144 n 0000 ~i 08996284 n 0000 ~i 08997310 n 0000 ~i 09010785 n 0000 ~i 09024844 n 0000 ~i 09024972 n 0000 ~i 09028643 n 0000 ~i 09035458 n 0000 ~i 09057170 n 0000 ~i 09066948 n 0000 ~i 09079505 n 0000 ~i 09079747 n 0000 ~i 09079875 n 0000 ~i 09080006 n 0000 ~i 09080146 n 0000 ~i 09080273 n 0000 ~i 09080415 n 0000 ~i 09080554 n 0000 ~i 09098488 n 0000 ~i 09098592 n 0000 ~i 09114401 n 0000 ~i 09116709 n 0000 ~i 09120353 n 0000 ~i 09124039 n 0000 ~i 09144605 n 0000 ~i 09175915 n 0000 ~i 09176159 n 0000 ~ 09214760 n 0000 ~i 09319456 n 0000 ~i 09326844 n 0000 ~ 09442001 n 0000 | a land mass (smaller than a continent) that is surrounded by water -09319456 17 n 02 isle 0 islet 0 005 @i 09316454 n 0000 + 09319456 n 0201 + 09319456 n 0102 ~i 09389999 n 0000 ~i 09479238 n 0000 | a small island -09319604 17 n 01 isthmus 0 009 @ 09334396 n 0000 + 02752122 a 0101 ~i 08735705 n 0000 ~i 09319902 n 0000 ~i 09320111 n 0000 ~i 09320239 n 0000 ~i 09320485 n 0000 ~i 09320611 n 0000 ~i 09324322 n 0000 | a relatively narrow strip of land (with water on both sides) connecting two larger land areas -09319902 17 n 01 Isthmus_of_Corinth 0 001 @i 09319604 n 0000 | a narrow isthmus between the Gulf of Corinth and the Saronic Gulf; a canal crosses the isthmus so that navigation is possible between the gulfs -09320111 17 n 01 Isthmus_of_Kra 0 001 @i 09319604 n 0000 | a narrow isthmus linking the Malay Peninsula to the Asian mainland -09320239 17 n 02 Isthmus_of_Panama 0 Isthmus_of_Darien 0 002 @i 09319604 n 0000 %p 08739206 n 0000 | the isthmus that connects Central America and South America; was formerly called the Isthmus of Darien; "Balboa crossed the Isthmus of Darien" -09320485 17 n 01 Isthmus_of_Suez 0 001 @i 09319604 n 0000 | the isthmus in northeastern Egypt that connects Africa and Asia -09320611 17 n 01 Isthmus_of_Tehuantepec 0 001 @i 09319604 n 0000 | the narrowest part of southern Mexico is an isthmus between the Bay of Campeche on the north coast and the Gulf of Tehuantepec on the south coast -09320826 17 n 01 jag 0 003 @ 13919685 n 0000 + 00912288 a 0102 + 01255624 v 0101 | a sharp projection on an edge or surface; "he clutched a jag of the rock" -09320985 17 n 02 James 0 James_River 0 003 @i 09411430 n 0000 #p 09129442 n 0000 #p 09138935 n 0000 | a river that rises in North Dakota and flows southward across South Dakota to the Missouri -09321180 17 n 02 James 1 James_River 1 002 @i 09411430 n 0000 #p 09148970 n 0000 | a river in Virginia that flows east into Chesapeake Bay at Hampton Roads -09321338 17 n 01 James_Bay 0 003 @i 09215664 n 0000 #p 08827126 n 0000 #p 08829071 n 0000 | the southern extension of Hudson Bay in Canada between western Quebec and northeastern Ontario -09321527 17 n 01 Japan_Trench 0 001 @i 09461315 n 0000 | a depression in the floor of the Pacific Ocean to the northeast of Japan that reaches depths of 30,000 feet -09321694 17 n 03 Jebel_Musa 0 Abila 0 Abyla 0 003 @i 09399592 n 0000 #p 08969291 n 0000 #p 09392162 n 0000 | a promontory in northern Morocco opposite the Rock of Gibraltar; one of the Pillars of Hercules -09321901 17 n 02 Jordan 0 Jordan_River 0 002 @i 09411430 n 0000 #p 08798382 n 0000 | a river in Palestine that empties into the Dead Sea; John the Baptist baptized Jesus in the Jordan -09322087 17 n 02 Jovian_planet 0 gas_giant 0 005 @ 09394007 n 0000 ~i 09322454 n 0000 ~i 09368699 n 0000 ~i 09424642 n 0000 ~i 09467417 n 0000 | any of the four outermost planets in the solar system; much larger than Earth and gaseous in nature (like Jupiter) -09322349 17 n 02 J_particle 0 psi_particle 0 001 @ 09352282 n 0000 | a neutral meson with a large mass -09322454 17 n 01 Jupiter 0 005 @i 09322087 n 0000 @i 09450866 n 0000 @i 09381480 n 0000 #m 09439433 n 0000 + 03077765 a 0101 | the largest planet and the 5th from the sun; has many satellites and is one of the brightest objects in the night sky -09322701 17 n 04 K2 0 Godwin_Austen 0 Mount_Godwin_Austen 0 Dapsang 0 002 @i 09360122 n 0000 #p 09323824 n 0000 | a mountain peak in the Karakoram Range in northern Kashmir; the 2nd highest peak in the world (28,250 feet high) -09322930 17 n 01 Kamet 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08900535 n 0000 | a mountain in the Himalayas in northern India (25,450 feet high) -09323085 17 n 02 Kanawha 0 Kanawha_River 0 002 @i 09411430 n 0000 #p 09155306 n 0000 | a tributary of the Ohio River in West Virginia -09323221 17 n 04 Kanchenjunga 0 Mount_Kanchenjunga 0 Kanchanjanga 0 Kinchinjunga 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain the Himalayas on the border between Nepal and Tibet (28,208 feet high) -09323470 17 n 03 Kansas 0 Kansas_River 0 Kaw_River 0 002 @i 09411430 n 0000 #p 09087599 n 0000 | a river in northeastern Kansas; flows eastward to become a tributary of the Missouri River -09323660 17 n 04 kaon 0 kappa-meson 0 k-meson 0 K_particle 0 001 @ 09352282 n 0000 | an unstable meson produced as the result of a high-energy particle collision -09323824 17 n 05 Karakoram 0 Karakoram_Range 0 Karakorum_Range 0 Mustagh 0 Mustagh_Range 0 005 @i 09403734 n 0000 #p 08975617 n 0000 %p 09287289 n 0000 %p 09322701 n 0000 %p 09403581 n 0000 | a mountain range in northern Kashmir; an extension of the Hindu Kush; contains the 2nd highest peak -09324118 17 n 01 Kara_Sea 0 003 @i 09426788 n 0000 #p 09204977 n 0000 %p 09298974 n 0000 | part of the Arctic Ocean to the north of Siberia and to the east of the Barents Sea; icebound most of the year -09324322 17 n 01 Karelian_Isthmus 0 001 @i 09319604 n 0000 | the isthmus between the Gulf of Finland and Lake Ladoga that connects Finland and Russia -09324474 17 n 03 Kasai 0 Kasai_River 0 River_Kasai 0 003 @i 09411430 n 0000 #p 08707917 n 0000 #p 08734385 n 0000 | a river of southwestern Africa that rises in central Angola and flows east and then north (forming part of the border between Angola and Congo) and continuing northwest through Congo to empty into the Congo River on the border between Congo and Republic of the Congo -09324859 17 n 01 Kattegatt 0 002 @i 09446115 n 0000 #p 09374036 n 0000 | a strait of the North Sea between Jutland and Sweden; connects with the North Sea through the Skagerrak -09325038 17 n 02 kettle_hole 0 kettle 0 002 @ 09304750 n 0000 ;c 06115701 n 0000 | (geology) a hollow (typically filled by a lake) that results from the melting of a mass of ice trapped in glacial deposits -09325246 17 n 02 Keuka_Lake 0 Lake_Keuka 0 002 @i 09328904 n 0000 #m 08567600 n 0000 | a glacial lake in central New York; one of the Finger Lakes -09325395 17 n 03 key 0 cay 0 Florida_key 0 002 @ 09256479 n 0000 #p 09071690 n 0000 | a coral reef off the southern coast of Florida -09325530 17 n 01 Khyber_Pass 0 004 @i 09386842 n 0000 #p 09304164 n 0000 #p 08703454 n 0000 #p 08975902 n 0000 | a mountain pass of great strategic and commercial value in the Hindu Kush on the border between northern Pakistan and western Afghanistan; a route by which invaders entered India -09325824 17 n 04 kidney_stone 0 urinary_calculus 0 nephrolith 0 renal_calculus 0 001 @ 09230768 n 0000 | a calculus formed in the kidney -09325963 17 n 02 Kilimanjaro 0 Mount_Kilimanjaro 0 002 @i 09360122 n 0000 #p 09034550 n 0000 | the highest peak in Africa; located in northeastern Tanzania; 19,340 feet high -09326139 17 n 02 Kissimmee 0 Kissimmee_River 0 002 @i 09411430 n 0000 #p 09071690 n 0000 | a river of central Florida that flows southward to Lake Okeechobee -09326299 17 n 02 Kivu 0 Lake_Kivu 0 003 @i 09328904 n 0000 #p 08734385 n 0000 #p 08815046 n 0000 | a lake in the mountains of central Africa between Congo and Rwanda -09326467 17 n 02 Klamath 0 Klamath_River 0 003 @i 09411430 n 0000 #p 09133010 n 0000 #p 09060768 n 0000 | a river flowing southwest from Oregon through northern California to the Pacific Ocean -09326662 17 n 05 knoll 0 mound 0 hillock 0 hummock 0 hammock 0 005 @ 09303008 n 0000 + 01660386 v 0201 ~ 09199101 n 0000 ~ 09327077 n 0000 ~ 09357346 n 0000 | a small natural hill -09326844 17 n 02 Kodiak 0 Kodiak_Island 0 002 @i 09316454 n 0000 #p 09055015 n 0000 | an island off southern Alaska in the Gulf of Alaska; site of the first European settlement in the area which was founded by the Russians in 1784 -09327077 17 n 02 kopje 0 koppie 0 002 @ 09326662 n 0000 ;r 08999482 n 0000 | a small hill rising up from the African veld -09327201 17 n 01 Korea_Bay 0 002 @i 09215664 n 0000 #p 09481958 n 0000 | an inlet of the Yellow Sea between the Liaodong Peninsula in China and western Korea -09327361 17 n 02 Korean_Strait 0 Korea_Strait 0 002 @i 09446115 n 0000 -r 01298162 n 0000 | a strait between Korea and Japan; connects the East China Sea and the Sea of Japan -09327538 17 n 02 Kuiper_belt 0 Edgeworth-Kuiper_belt 0 002 @ 08630039 n 0000 #m 09439433 n 0000 | a disk-shaped region of minor planets outside the orbit of Neptune -09327705 17 n 02 Kuiper_belt_object 0 KBO 0 001 @ 09355623 n 0000 | any of many minor planets in the Kuiper belt outside the orbit of Neptune at the edge of the solar system -09327881 17 n 05 Kunlun 0 Kunlan_Shan 0 Kunlun_Mountains 0 Kuenlun 0 Kuenlun_Mountains 0 004 @i 09403734 n 0000 #p 08723006 n 0000 %p 09364249 n 0000 %p 09465135 n 0000 | a mountain range in western China that extends eastward from the Indian border for 1000 miles -09328148 17 n 02 Kura 0 Kura_River 0 002 @i 09411430 n 0000 #p 09207288 n 0000 | a river in western Asia; rises in northeast Turkey and flows to the Caspian Sea -09328311 17 n 02 Labrador-Ungava_Peninsula 0 Labrador_Peninsula 0 003 @i 09388848 n 0000 #p 08820121 n 0000 %p 08819883 n 0000 | a peninsular region of eastern Canada between Hudson Bay and the Labrador Sea; contains most of Quebec and the mainland part of Newfoundland and Labrador -09328596 17 n 01 Labrador_Sea 0 002 @i 09426788 n 0000 #p 09209263 n 0000 | an arm of the northern Atlantic between Labrador and southern Greenland -09328746 17 n 03 lagoon 0 laguna 0 lagune 0 002 @ 09328904 n 0000 ~ 09339414 n 0000 | a body of water cut off from a larger body by a reef of sand or coral -09328904 17 n 01 lake 0 057 @ 09225146 n 0000 -c 00259433 a 0000 ~ 04078747 n 0000 ~i 09212935 n 0000 ~ 09217086 n 0000 -c 09225146 n 0000 ~i 09232526 n 0000 ~i 09237404 n 0000 ~i 09239581 n 0000 ~i 09242767 n 0000 ~i 09242956 n 0000 ~i 09243100 n 0000 ~i 09243209 n 0000 ~i 09252766 n 0000 ~i 09263619 n 0000 ~i 09277913 n 0000 %p 09282084 n 0000 ~i 09293613 n 0000 ~i 09293744 n 0000 ~i 09309820 n 0000 %p 09313716 n 0000 ~i 09325246 n 0000 ~i 09326299 n 0000 ~ 09328746 n 0000 ~i 09330061 n 0000 ~i 09330233 n 0000 ~i 09330467 n 0000 ~i 09330604 n 0000 ~i 09330913 n 0000 ~i 09331066 n 0000 ~i 09331328 n 0000 ~i 09331535 n 0000 ~i 09331654 n 0000 ~i 09331819 n 0000 ~i 09332050 n 0000 ~i 09332246 n 0000 ~i 09332394 n 0000 ~i 09332598 n 0000 ~i 09332770 n 0000 ~i 09332976 n 0000 ~i 09333171 n 0000 ~i 09333334 n 0000 ~i 09333512 n 0000 ~i 09333706 n 0000 ~i 09333905 n 0000 ~i 09334049 n 0000 ~ 09341874 n 0000 ~ 09343587 n 0000 ~i 09377861 n 0000 ~ 09382191 n 0000 ~ 09397391 n 0000 ~i 09398533 n 0000 ~i 09420911 n 0000 ~i 09430100 n 0000 -c 09433442 n 0000 ~ 09454642 n 0000 ~i 09480428 n 0000 | a body of (usually fresh) water surrounded by land -09330061 17 n 03 Lake_Albert 0 Lake_Albert_Nyanza 0 Mobuto_Lake 0 001 @i 09328904 n 0000 | a shallow lake on the border between Uganda and Congo in the Great Rift Valley -09330233 17 n 02 Lake_Aral 0 Aral_Sea 0 001 @i 09328904 n 0000 | a lake to the east of the Caspian Sea lying between Kazakhstan and Uzbekistan -09330378 17 n 02 lake_bed 0 lake_bottom 0 001 @ 09217638 n 0000 | the bottom of a lake -09330467 17 n 02 Lake_Chad 0 Chad 0 002 @i 09328904 n 0000 #p 09189411 n 0000 | a lake in north central Africa; fed by the Shari river -09330604 17 n 02 Lake_Champlain 0 Champlain 0 004 @i 09328904 n 0000 #p 09117351 n 0000 #p 09147964 n 0000 #p 08829071 n 0000 | a lake in northeastern New York, northwestern Vermont and southern Quebec; site of many battles in the French and Indian War and in the American Revolution and in the War of 1812 -09330913 17 n 01 Lake_Edward 0 003 @i 09328904 n 0000 #p 08734385 n 0000 #p 09043052 n 0000 | a lake in the Great Rift Valley between Congo and Uganda -09331066 17 n 02 Lake_Erie 0 Erie 0 002 @i 09328904 n 0000 #p 09292751 n 0000 | the 4th largest of the Great Lakes; it is linked to the Hudson River by the New York State Barge Canal -09331251 17 n 01 lakefront 0 001 @ 09287968 n 0000 | land bordering a lake -09331328 17 n 02 Lake_Geneva 0 Lake_Leman 0 003 @i 09328904 n 0000 #p 09031653 n 0000 #p 08929922 n 0000 | a lake between southwestern Switzerland and France that is crossed from east to west by the Rhone -09331535 17 n 02 Lake_Huron 0 Huron 0 002 @i 09328904 n 0000 #p 09292751 n 0000 | the 2nd largest of the Great Lakes -09331654 17 n 02 Lake_Ilmen 0 Ilmen 0 002 @i 09328904 n 0000 #p 09006413 n 0000 | a lake in northwestern Russia; drains through the Volkhov River into Lake Ladoga -09331819 17 n 02 Lake_Ladoga 0 Ladoga 0 002 @i 09328904 n 0000 #p 09006413 n 0000 | a lake in northwestern Russia to the north of St. Petersburg; the largest lake in Europe; drains through the Neva River into the Gulf of Finland -09332050 17 n 02 Lake_Michigan 0 Michigan 0 002 @i 09328904 n 0000 #p 09292751 n 0000 | the 3rd largest of the Great Lakes; the largest freshwater lake entirely within the United States borders -09332246 17 n 02 Lake_Nasser 0 Nasser 0 002 @i 09328904 n 0000 #p 08897065 n 0000 | lake in Egypt formed by dams built on the Nile River at Aswan -09332394 17 n 02 Lake_Nyasa 0 Lake_Malawi 0 004 @i 09328904 n 0000 #p 09034550 n 0000 #p 08971025 n 0000 #p 08962610 n 0000 | a long lake in southeastern Africa between Tanzania, Mozambique, and Malawi -09332598 17 n 02 Lake_Onega 0 Onega 0 002 @i 09328904 n 0000 #p 09006413 n 0000 | lake in northwestern Russia near the border with Finland; second largest lake in Europe -09332770 17 n 02 Lake_Ontario 0 Ontario 0 002 @i 09328904 n 0000 #p 09292751 n 0000 | the smallest of the Great Lakes -09332890 17 n 02 lakeside 0 lakeshore 0 001 @ 09433442 n 0000 | the shore of a lake -09332976 17 n 02 Lake_St._Clair 0 Lake_Saint_Clair 0 003 @i 09328904 n 0000 #p 08827126 n 0000 #p 09099526 n 0000 | a lake between Ontario and Michigan; connected with Lake Huron and Lake Erie -09333171 17 n 02 Lake_Superior 0 Superior 0 002 @i 09328904 n 0000 #p 09292751 n 0000 | the largest freshwater lake in the world; the deepest of the Great Lakes -09333334 17 n 02 Lake_Tana 0 Lake_Tsana 0 002 @i 09328904 n 0000 #p 08778061 n 0000 | a lake in northern Ethiopia; the largest lake in Ethiopia and the source of the Blue Nile -09333512 17 n 02 Lake_Tanganyika 0 Tanganyika 0 002 @i 09328904 n 0000 #p 09189411 n 0000 | the longest lake in the world in central Africa between Tanzania and Congo in the Great Rift Valley -09333706 17 n 03 Lake_Urmia 0 Urmia 0 Daryacheh-ye_Orumiyeh 0 002 @i 09328904 n 0000 #p 08910668 n 0000 | a shallow saline lake in northwestern Iran between Tabriz and the western border of Turkey -09333905 17 n 02 Lake_Vanern 0 Vanern 0 002 @i 09328904 n 0000 #p 08765890 n 0000 | a lake in southwestern Sweden; the largest lake in Sweden -09334049 17 n 02 Lake_Victoria 0 Victoria_Nyanza 0 002 @i 09328904 n 0000 #p 09189411 n 0000 | the largest lake in Africa and the 2nd largest fresh water lake in the world; a headwaters reservoir for the Nile River -09334266 17 n 02 lambda_particle 0 lambda_hyperon 0 001 @ 09308242 n 0000 | an electrically neutral baryon with isotopic spin 1 -09334396 17 n 06 land 0 dry_land 0 earth 1 ground 0 solid_ground 0 terra_firma 0 032 @ 00002684 n 0000 #p 09270894 n 0000 + 01406356 v 0401 + 01406684 v 0401 + 02022359 v 0401 + 02022486 v 0401 + 01502654 v 0401 + 01502762 v 0401 + 01292727 v 0301 + 01981279 v 0103 + 01981436 v 0101 + 02087156 v 0101 + 01981036 v 0101 + 01979901 v 0101 ~i 09195615 n 0000 ~ 09203827 n 0000 ~ 09217414 n 0000 ~ 09233715 n 0000 ~ 09248294 n 0000 ~ 09282208 n 0000 ~ 09283767 n 0000 ~ 09284015 n 0000 ~ 09316454 n 0000 ~ 09319604 n 0000 ~ 09335916 n 0000 ~ 09346120 n 0000 ~ 09367733 n 0000 ~ 09382099 n 0000 ~ 09388848 n 0000 ~ 09393605 n 0000 ~ 09437098 n 0000 ~ 09480699 n 0000 | the solid part of the earth's surface; "the plane turned away from the sea and moved back over land"; "the earth shook for several minutes"; "he dropped the logs on the ground" -09335240 17 n 03 land 1 ground 1 soil 0 012 @ 00002684 n 0000 ~ 09212572 n 0000 ~ 09227428 n 0000 ~ 09248399 n 0000 ~ 09260907 n 0000 ~ 09381880 n 0000 ~ 09390146 n 0000 ~ 09397001 n 0000 ~ 09405078 n 0000 ~ 09425344 n 0000 ~ 09463919 n 0000 ~ 09477890 n 0000 | material in the top layer of the surface of the earth in which plants can grow (especially with reference to its quality or use); "the land had never been plowed"; "good agricultural soil" -09335693 17 n 01 landfall 0 001 @ 09428293 n 0000 | the seacoast first sighted on a voyage (or flight over water) -09335809 17 n 01 landfill 0 002 @ 09344198 n 0000 ~ 09422631 n 0000 | a low area that has been filled in -09335916 17 n 02 landmass 0 land_mass 0 003 @ 09334396 n 0000 ~ 09254614 n 0000 ~ 09449949 n 0000 | a large continuous extent of land -09336052 17 n 01 Laptev_Sea 0 002 @i 09426788 n 0000 #p 09204977 n 0000 | part of the Arctic Ocean to the north of Siberia (between the Taimyr Peninsula and the New Siberian Islands) that is icebound most of the year -09336271 17 n 01 Large_Magellanic_Cloud 0 001 @ 09345503 n 0000 | the larger of the two Magellanic Clouds visible from the southern hemisphere -09336416 17 n 01 Lascaux 0 002 @i 09238926 n 0000 #p 08929922 n 0000 | a cave in southwestern France that contains Paleolithic paintings -09336555 17 n 01 lather 1 003 @ 09282724 n 0000 + 00036932 v 0102 + 00512043 v 0101 | the foam resulting from excessive sweating (as on a horse) -09336702 17 n 01 Laudo 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain peak in the Andes in Argentina (20,997 feet high) -09336853 17 n 01 Laurasia 0 002 @i 09254614 n 0000 #p 08611662 n 0000 | a hypothetical continent that (according to plate tectonic theory) broke up later into North America and Europe and Asia -09337048 17 n 01 leak 0 003 @ 09304465 n 0000 + 00258109 v 0101 + 00529759 v 0101 | an accidental hole that allows something (fluid or light etc.) to enter or escape; "one of the tires developed a leak" -09337253 17 n 02 ledge 0 shelf 0 003 @ 09409512 n 0000 + 00692548 a 0202 ~ 09219233 n 0000 | a projecting ridge on a mountain or submerged under water -09337406 17 n 01 lees 0 002 @ 09428967 n 0000 ;u 06295235 n 0000 | the sediment from fermentation of an alcoholic beverage -09337531 17 n 01 Lehigh_River 0 002 @i 09411430 n 0000 #p 09134386 n 0000 | a river in eastern Pennsylvania that flows southeast into the Delaware River -09337686 17 n 02 Lena 0 Lena_River 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a Russian river in Siberia; flows northward into the Laptev Sea -09337833 17 n 01 Leo 0 004 @i 09252970 n 0000 #p 08685188 n 0000 %m 09265492 n 0000 %m 09406944 n 0000 | a zodiacal constellation in northern hemisphere between Cancer and Virgo -09338013 17 n 01 lepton 0 006 @ 09272085 n 0000 @ 09279161 n 0000 ~ 09271904 n 0000 ~ 09363214 n 0000 ~ 09369412 n 0000 ~ 09455206 n 0000 | an elementary particle that participates in weak interactions; has a baryon number of 0 -09338243 17 n 01 Lepus 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Orion and Columba -09338361 17 n 01 lethal_agent 0 001 @ 09190918 n 0000 | an agent capable of causing death -09338453 17 n 02 Lethe 0 River_Lethe 0 003 @i 09411430 n 0000 #p 05629381 n 0000 ;c 07979425 n 0000 | (Greek mythology) a river in Hades; the souls of the dead had to drink from it, which made them forget all they had done and suffered when they were alive -09338712 17 n 01 Lhotse 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain in the central Himalayas on the border of Tibet and Nepal (27,890 feet high) -09338910 17 n 02 Liaodong_Peninsula 0 Liaodong_Bandao 0 002 @i 09388848 n 0000 #p 08723006 n 0000 | a peninsula in northeastern China that extends into the Yellow Sea, between Bo Hai and Korea Bay -09339109 17 n 01 Libra 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a small faint zodiacal constellation in the southern hemisphere; between Virgo and Scorpius -09339272 17 n 01 Ligurian_Sea 0 002 @i 09426788 n 0000 #p 09350045 n 0000 | an arm of the Mediterranean between northwest Italy and Corsica -09339414 17 n 01 liman 0 001 @ 09328746 n 0000 | a long narrow lagoon near the mouth of a river -09339512 17 n 02 Limpopo 0 Crocodile_River 0 003 @i 09411430 n 0000 #p 08999482 n 0000 #p 08971025 n 0000 | an African river; flows into the Indian Ocean -09339668 17 n 01 liposomal_delivery_vector 0 001 @ 09460516 n 0000 | a transducing vector that uses liposomes to carry the gene of interest -09339810 17 n 02 lithosphere 0 geosphere 0 005 @ 08591680 n 0000 #p 09270894 n 0000 %p 09260010 n 0000 %p 09346450 n 0000 %p 09451517 n 0000 | the solid part of the earth consisting of the crust and outer mantle -09340024 17 n 02 Little_Bear 0 Ursa_Minor 0 003 @i 09252970 n 0000 %p 09340452 n 0000 %m 09396712 n 0000 | a constellation outside the zodiac that rotates around the North Star -09340203 17 n 03 Little_Bighorn 0 Little_Bighorn_River 0 Little_Horn 0 003 @i 09411430 n 0000 #p 09159003 n 0000 #p 09108164 n 0000 | a river that flows from northern Wyoming into the Bighorn River in southern Montana; site of Custer's Last Stand -09340452 17 n 02 Little_Dipper 0 Dipper 2 003 @i 09208496 n 0000 #p 09340024 n 0000 %m 09396712 n 0000 | a cluster of seven stars in Ursa Minor; at the end of the dipper's handle is Polaris -09340644 17 n 02 Little_Missouri 0 Little_Missouri_River 0 005 @i 09411430 n 0000 #p 09159003 n 0000 #p 09108164 n 0000 #p 09138935 n 0000 #p 09129442 n 0000 | a river that rises in northeastern Wyoming and flows through Montana and South Dakota to join the Missouri River in North Dakota -09340935 17 n 01 Little_Sioux_River 0 003 @i 09411430 n 0000 #p 09102016 n 0000 #p 09086173 n 0000 | a river that rises in southwestern Minnesota and flows southwestward to the Missouri River in western Iowa -09341145 17 n 02 Little_Wabash 0 Little_Wabash_River 0 002 @i 09411430 n 0000 #p 09082540 n 0000 | a river in eastern Illinois that flows southeastward to the Wabash River -09341319 17 n 01 llano 0 002 @ 09393605 n 0000 ;r 09022831 n 0000 | an extensive grassy and nearly treeless plain (especially in Latin America) -09341465 17 n 01 Llano_Estacado 0 005 @i 09453008 n 0000 #p 09293011 n 0000 #p 09114696 n 0000 #p 09141526 n 0000 #p 09131654 n 0000 | a large semiarid plateau forming the southern part of the Great Plains -09341673 17 n 01 Llullaillaco 0 004 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 #p 08720481 n 0000 | a mountain in the Andes on the border between Argentina and Chile (22,057 feet high) -09341874 17 n 01 loch 0 003 @ 09328904 n 0000 ~i 09342141 n 0000 ~i 09342386 n 0000 | Scottish word for a lake -09341987 17 n 01 loch 1 002 @ 09313716 n 0000 ~i 09342245 n 0000 | a long narrow inlet of the sea in Scotland (especially when it is nearly landlocked) -09342141 17 n 01 Loch_Achray 0 002 @i 09341874 n 0000 #p 08890097 n 0000 | a lake in central Scotland -09342245 17 n 01 Loch_Linnhe 0 002 @i 09341987 n 0000 #p 08890097 n 0000 | an inlet of the Atlantic Ocean on the western coast of Scotland -09342386 17 n 01 Loch_Ness 0 003 @i 09341874 n 0000 #p 08890097 n 0000 %p 09487821 n 0000 | a lake in the Scottish highlands; the largest body of fresh water in Great Britain -09342563 17 n 02 lodestar 0 loadstar 0 002 @ 09444100 n 0000 ~i 09396712 n 0000 | guiding star; a star that is used as a reference point in navigation or astronomy -09342729 17 n 02 Logan 0 Mount_Logan 0 003 @i 09360122 n 0000 #p 09445088 n 0000 #p 08830456 n 0000 | a mountain peak in the St. Elias Range in the southwestern Yukon Territory in Canada (19,850 feet high) -09342937 17 n 02 Loire 0 Loire_River 0 002 @i 09411430 n 0000 #p 08929922 n 0000 | the longest French river; rises in the Massif Central and flows north and west to the Atlantic Ocean -09343123 17 n 01 Loire_Valley 0 002 @i 09468604 n 0000 #p 08929922 n 0000 | the valley of the Loire River where many French wines originated -09343266 17 n 02 long_chain 0 long-chain_molecule 0 002 @ 09240621 n 0000 ;c 06084469 n 0000 | (chemistry) a relatively long chain of atoms in a molecule -09343422 17 n 01 Long_Island_Sound 0 004 @i 09440186 n 0000 #p 09124039 n 0000 #p 09068444 n 0000 #p 09209263 n 0000 | a sound between Long Island and Connecticut -09343587 17 n 01 lough 0 001 @ 09328904 n 0000 | Irish word for a lake -09343660 17 n 01 lough 1 001 @ 09257761 n 0000 | a long narrow (nearly landlocked) cove in Ireland -09343761 17 n 02 Lower_California 0 Baja_California 0 004 @i 09388848 n 0000 #p 08740875 n 0000 -r 08488250 n 0000 %p 08746147 n 0000 | a mountainous peninsula on northwest Mexico -09343943 17 n 01 lower_mantle 0 002 @ 08591680 n 0000 #p 09346450 n 0000 | the deeper part of the mantle -09344050 17 n 01 Lower_Peninsula 0 002 @i 09388848 n 0000 #p 09099526 n 0000 | the part of northern Michigan between Lake Michigan and Lake Huron -09344198 17 n 01 lowland 0 004 @ 09366017 n 0000 ! 09302616 n 0101 ~i 08891889 n 0000 ~ 09335809 n 0000 | low level country -09344324 17 n 01 lunar_crater 0 003 @ 09259219 n 0000 ~i 09206289 n 0000 ~i 09256182 n 0000 | a crater on the Earth's Moon -09344449 17 n 01 Lupus 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Centaurus -09344559 17 n 01 Lyra 0 002 @i 09252970 n 0000 %m 09469912 n 0000 | a small constellation in the northern hemisphere near Cygnus and Draco; contains the star Vega -09344724 17 n 01 maar 0 001 @ 09472413 n 0000 | a flat-bottomed volcanic crater that was formed by an explosion; often filled with water -09344863 17 n 02 Mackenzie 0 Mackenzie_River 0 002 @i 09411430 n 0000 #p 08820121 n 0000 | a Canadian river; flows into the Beaufort Sea -09345002 17 n 01 mackerel_sky 0 001 @ 09436708 n 0000 | a sky filled with rows of cirrocumulus or small altocumulus clouds -09345127 17 n 02 Madeira 0 Madeira_River 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a Brazilian river; tributary of the Amazon River -09345265 17 n 02 Magdalena 0 Magdalena_River 0 002 @i 09411430 n 0000 #p 08732116 n 0000 | a river that rises in the Andes mountains in southwestern Colombia and flows generally northward to empty into the Caribbean Sea at Barranquilla -09345503 17 n 01 Magellanic_Cloud 0 003 @i 08271042 n 0000 ~ 09336271 n 0000 ~ 09438408 n 0000 | either of two small galaxies orbiting the Milky Way; visible near the south celestial pole -09345693 17 n 01 magnetic_dipole 0 001 @ 09266946 n 0000 | a dipole with opposing magnetic poles -09345792 17 n 01 magnetic_monopole 0 001 @ 09386422 n 0000 | a hypothetical particle with a single magnetic pole instead of the usual two -09345932 17 n 02 main 0 briny 0 006 @ 09225146 n 0000 #p 09307902 n 0000 + 01074062 a 0202 %p 09302804 n 0000 %p 09377125 n 0000 %p 09456614 n 0000 | any very large body of (salt) water -09346120 17 n 01 mainland 0 002 @ 09334396 n 0000 ~i 08696737 n 0000 | the main land mass of a country or continent; as distinguished from an island or peninsula -09346284 17 n 01 Makalu 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain in the Himalayas in Nepal (27,790 feet high) -09346450 17 n 01 mantle 0 004 @ 08591680 n 0000 #p 09339810 n 0000 %p 09343943 n 0000 %p 09466757 n 0000 | the layer of the earth between the crust and the core -09346613 17 n 02 mare 0 maria 0 001 @ 08630039 n 0000 | a dark region of considerable extent on the surface of the moon -09346735 17 n 01 mare_clausum 0 001 @ 09476331 n 0000 | (closed sea) a navigable body of water under the jurisdiction of a single nation -09346874 17 n 01 mare_liberum 0 001 @ 09476331 n 0000 | (free sea) a navigable body of water to which all nations have equal access -09347008 17 n 01 mare_nostrum 0 001 @ 09350045 n 0000 | (our sea) the Mediterranean to the ancient Romans -09347116 17 n 01 mare's_tail 0 001 @ 09245964 n 0000 | a long narrow flowing cirrus cloud -09347208 17 n 05 Marmara 0 Sea_of_Marmara 0 Marmara_Denizi 0 Marmora 0 Sea_of_Marmora 0 001 @i 09426788 n 0000 | an inland sea in northwestern Turkey; linked to the Black Sea by the Bosporus and linked to the Aegean by the Dardanelles -09347445 17 n 02 Mars 0 Red_Planet 0 004 @i 09456369 n 0000 @i 09450866 n 0000 #m 09439433 n 0000 + 02939406 a 0101 | a small reddish planet that is the 4th from the sun and is periodically visible to the naked eye; minerals rich in iron cover its surface and are responsible for its characteristic color; "Mars has two satellites" -09347779 17 n 04 marsh 0 marshland 0 fen 0 fenland 0 003 @ 09477890 n 0000 + 02548066 a 0102 ~ 09420794 n 0000 | low-lying wet land with grassy vegetation; usually is a transition zone between land and water; "thousands of acres of marshland"; "the fens of eastern England" -09348055 17 n 01 mass 0 005 @ 09224911 n 0000 ~ 09256360 n 0000 ~ 09270233 n 0000 ~ 09348827 n 0000 ~ 09400826 n 0000 | a body of matter without definite shape; "a huge ice mass" -09348236 17 n 01 Massachusetts_Bay 0 003 @i 09215664 n 0000 #p 09209263 n 0000 %p 09234374 n 0000 | an inlet of the Atlantic Ocean off of eastern Massachusetts extending from Cape Ann on the north to Cape Cod on the south -09348460 17 n 01 massif 0 003 @ 09287968 n 0000 #p 09403734 n 0000 ~i 09348643 n 0000 | a block of the earth's crust bounded by faults and shifted to form peaks of a mountain range -09348643 17 n 01 Massif_Central 0 003 @i 09453008 n 0000 @i 09348460 n 0000 #p 08929922 n 0000 | a mountainous plateau in southern France that covers almost one sixth of the country -09348827 17 n 01 mat 0 001 @ 09348055 n 0000 | a mass that is densely tangled or interwoven; "a mat of weeds and grass" -09348949 17 n 01 matchwood 0 001 @ 09222051 n 0000 | fragments of wood; "it was smashed into matchwood" -09349055 17 n 01 matrix 0 001 @ 09273291 n 0000 | an enclosure within which something originates or develops (from the Latin for womb) -09349192 17 n 01 Matterhorn 0 004 @i 09360122 n 0000 #p 09194357 n 0000 #p 09031653 n 0000 #p 08801678 n 0000 | a mountain in the Alps on the border between Switzerland and Italy (14,780 feet high); noted for its distinctive shape -09349425 17 n 04 McKinley 0 Mount_McKinley 0 Mt._McKinley 0 Denali 0 003 @i 09360122 n 0000 #p 09192280 n 0000 #p 09055015 n 0000 | a mountain in south central Alaska; the highest peak in North America (20,300 feet high) -09349648 17 n 01 meander 0 004 @ 13867641 n 0000 #p 09448361 n 0000 + 01882814 v 0104 ~ 09382019 n 0000 | a bend or curve, as in a stream or river -09349797 17 n 01 mechanism 0 005 @ 00019128 n 0000 + 01500416 a 0101 ~ 09214581 n 0000 ~ 09460680 n 0000 ~ 15135536 n 0000 | a natural object resembling a machine in structure or function; "the mechanism of the ear"; "the mechanism of infection" -09350045 17 n 02 Mediterranean 0 Mediterranean_Sea 0 019 @i 09426788 n 0000 + 03085213 a 0101 %p 08756735 n 0000 %p 08784333 n 0000 %p 08784905 n 0000 %p 08810631 n 0000 %p 08810999 n 0000 %p 08942091 n 0000 %p 08966239 n 0000 %p 09186225 n 0000 %p 09188383 n 0000 %p 09188609 n 0000 %p 09297104 n 0000 %p 09299584 n 0000 %p 09315455 n 0000 %p 09339272 n 0000 ~ 09347008 n 0000 %p 09389999 n 0000 %p 09464962 n 0000 | the largest inland sea; between Europe and Africa and Asia -09350524 17 n 02 Mekong 0 Mekong_River 0 006 @i 09411430 n 0000 #p 08723006 n 0000 #p 08715390 n 0000 #p 09036452 n 0000 #p 08956760 n 0000 #p 08716738 n 0000 | an Asian river; flows through a large delta in southern Vietnam into the South China Sea -09350776 17 n 01 Menai_Strait 0 002 @i 09446115 n 0000 #p 08894456 n 0000 | a strait in northern Wales between Anglesey Island and the mainland -09350922 17 n 02 Mendenhall_Glacier 0 Great_Mendenhall_Glacier 0 002 @i 09391774 n 0000 #p 09055015 n 0000 | a glacier of the Piedmont type near Juneau in Alaska -09351086 17 n 01 Mensa 0 001 @i 09252970 n 0000 | a faint constellation in the polar region of the southern hemisphere and containing part of the Large Magellanic Cloud -09351257 17 n 01 Mercedario 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain in the Andes in Argentina (22,210 feet high) -09351408 17 n 01 Mercury 0 003 @i 09456369 n 0000 @i 09312999 n 0000 #m 09439433 n 0000 | the smallest planet and the nearest to the sun -09351547 17 n 01 mere 0 002 @ 09397391 n 0000 ;r 08860123 n 0000 | a small pond of standing water -09351647 17 n 02 Merrimack 0 Merrimack_River 0 003 @i 09411430 n 0000 #p 09111366 n 0000 #p 09095023 n 0000 | a river that rises in south central New Hampshire and flows through Concord and Manchester into Massachusetts and empties into the Atlantic Ocean -09351905 17 n 02 mesa 0 table 0 002 @ 09453008 n 0000 + 00659617 a 0201 | flat tableland with steep edges; "the tribe was relatively safe on the mesa but they had to descend into the valley for water" -09352108 17 n 01 Mesabi_Range 0 002 @i 09403734 n 0000 #p 09102016 n 0000 | a range of hills in northeastern Minnesota where rich iron ore deposits were discovered in 1887 -09352282 17 n 02 meson 0 mesotron 0 008 @ 09300674 n 0000 @ 09226997 n 0000 + 02995161 a 0101 + 02995161 a 0102 ~ 09224828 n 0000 ~ 09322349 n 0000 ~ 09323660 n 0000 ~ 09392656 n 0000 | an elementary particle responsible for the forces in the atomic nucleus; a hadron with a baryon number of 0 -09352578 17 n 01 mesosphere 0 002 @ 08591680 n 0000 #p 09210604 n 0000 | the atmospheric layer between the stratosphere and the thermosphere -09352721 17 n 01 metal_filing 0 002 @ 09279345 n 0000 ~ 09315762 n 0000 | a fragment of metal rubbed off by the use of a file -09352849 17 n 01 meteorite 0 007 @ 09353109 n 0000 + 02980416 a 0101 + 02980416 a 0102 ~ 09189289 n 0000 ~ 09353918 n 0000 ~ 09384106 n 0000 ~ 09434237 n 0000 | stony or metallic object that is the remains of a meteoroid that has reached the earth's surface -09353109 17 n 02 meteoroid 0 meteor 0 005 @ 09277686 n 0000 ;c 06095022 n 0000 + 02865315 a 0201 ~ 09352849 n 0000 ~ 09353338 n 0000 | (astronomy) any of the small solid extraterrestrial bodies that hits the earth's atmosphere -09353338 17 n 01 meteor_swarm 0 001 @ 09353109 n 0000 | a group of meteoroids with similar paths -09353437 17 n 02 Meuse 0 Meuse_River 0 004 @i 09411430 n 0000 #p 08929922 n 0000 #p 08849753 n 0000 #p 08949093 n 0000 | a European river; flows into the North Sea -09353603 17 n 01 micelle 0 001 @ 09386422 n 0000 | an electrically charged particle built up from polymeric molecules or ions and occurring in certain colloidal electrolytic solutions like soaps and detergents -09353815 17 n 01 microfossil 0 001 @ 09284589 n 0000 | a fossil that must be studied microscopically -09353918 17 n 03 micrometeorite 0 micrometeoroid 0 micrometeor 0 002 @ 09352849 n 0000 + 02980583 a 0101 | a meteorite or meteoroid so small that it drifts down to earth without becoming intensely heated in the atmosphere -09354142 17 n 01 Microscopium 0 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Sagittarius and Capricornus -09354283 17 n 01 Mid-Atlantic_Ridge 0 002 @i 09409898 n 0000 #p 09209263 n 0000 | a very long narrow elevation on the ocean floor that runs all the way from Iceland in the North Atlantic to Bouvet Island in the South Atlantic -09354511 17 n 01 midstream 0 002 @ 08523483 n 0000 #p 09448361 n 0000 | the middle of a stream -09354608 17 n 01 mid-water 0 001 @ 09225146 n 0000 | the water that is well below the surface but also well above the bottom; "many marine fishes inhabit the mid-waters" -09354780 17 n 02 Milk 0 Milk_River 0 002 @i 09411430 n 0000 #p 09108164 n 0000 | a river that rises in the Rockies in northwestern Montana and flows eastward to become a tributary of the Missouri River -09354984 17 n 03 Milky_Way 0 Milky_Way_Galaxy 0 Milky_Way_System 0 003 @ 08271042 n 0000 %p 08501565 n 0000 %m 09441352 n 0000 | the galaxy containing the solar system; consists of millions of stars that can be seen as a diffuse band of light stretching across the night sky -09355261 17 n 01 millpond 0 001 @ 09397391 n 0000 | a pond formed by damming a stream to provide a head of water to turn a mill wheel -09355397 17 n 01 Minamata_Bay 0 002 @i 09215664 n 0000 #p 08921392 n 0000 | a bay on the west coast of Kyushu; in the 1950s industrial wastes caused mercury poisoning among the Japanese people who ate fish from Minamata Bay -09355623 17 n 02 minor_planet 0 planetoid 0 006 @ 09239740 n 0000 #m 09439433 n 0000 ~ 09208702 n 0000 ~ 09327705 n 0000 ~i 09401750 n 0000 ~i 09429194 n 0000 | any of numerous small celestial bodies that move around the sun -09355850 17 n 05 mire 0 quagmire 0 quag 0 morass 0 slack 1 006 @ 09225943 n 0000 + 02548066 a 0306 + 02548066 a 0103 + 01534745 v 0101 + 01834896 v 0104 + 01835103 v 0101 | a soft wet area of low-lying land that sinks underfoot -09356080 17 n 02 Mississippi 0 Mississippi_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | a major North American river and the chief river of the United States; rises in northern Minnesota and flows southward into the Gulf of Mexico -09356320 17 n 02 Missouri 0 Missouri_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | the longest river in the United States; arises in Montana and flows southeastward to become a tributary of the Mississippi at Saint Louis; "The Missouri and Mississippi Rivers together form the third longest river in the world" -09356639 17 n 02 Mobile 0 Mobile_River 0 002 @i 09411430 n 0000 #p 09053185 n 0000 | a river in southwestern Alabama; flows into Mobile Bay -09356781 17 n 01 Mobile_Bay 0 003 @i 09215664 n 0000 #p 09053185 n 0000 #p 09298698 n 0000 | a bay of the Gulf of Mexico; fed by the Mobile River -09356929 17 n 01 Mohawk_River 0 002 @i 09411430 n 0000 #p 09117351 n 0000 | a river of central New York that flows southeastward to the Hudson River -09357080 17 n 02 Mohorovicic_discontinuity 0 Moho 0 002 @i 08512259 n 0000 ;c 06115701 n 0000 | the boundary between the Earth's crust and the underlying mantle; "the Mohorovicic discontinuity averages 5 miles down under oceans and 20 miles down under continents" -09357346 17 n 01 molehill 0 001 @ 09326662 n 0000 | a mound of earth made by moles while burrowing -09357447 17 n 01 monocline 0 001 @ 09287968 n 0000 | a geological formation in which all strata are inclined in the same direction -09357580 17 n 02 Monongahela 0 Monongahela_River 0 003 @i 09411430 n 0000 #p 09155306 n 0000 #p 09134386 n 0000 | a river that rises in northern West Virginia and flows north into Pennsylvania where it joins the Allegheny River at Pittsburgh to form the Ohio River -09357847 17 n 02 Mont_Blanc 0 Monte_Bianco 0 004 @i 09360122 n 0000 #p 09194357 n 0000 #p 08929922 n 0000 #p 08801678 n 0000 | the highest mountain peak in the Alps; on the border between France and Italy to the south of Geneva (15,781 feet high) -09358096 17 n 01 Monterey_Bay 0 002 @i 09215664 n 0000 #p 09060768 n 0000 | an inlet of the Pacific Ocean in western California -09358226 17 n 01 moon 0 002 @ 09424270 n 0000 ~i 09462231 n 0000 | any natural satellite of a planet; "Jupiter has sixteen moons" -09358358 17 n 02 Moon 1 moon 3 001 @i 09424270 n 0000 | the natural satellite of the Earth; "the average distance to the Moon is 384,400 kilometers"; "men first stepped on the moon in 1969" -09358550 17 n 01 moon 2 002 @ 00002684 n 0000 + 02141840 v 0101 | any object resembling a moon; "he made a moon lamp that he used as a night light"; "the clock had a moon that showed various phases" -09358751 17 n 02 moor 0 moorland 0 002 @ 09393605 n 0000 ~i 08885099 n 0000 | open land usually with peaty soil covered with heather and bracken and moss -09358907 17 n 01 moraine 0 002 @ 14842992 n 0000 #p 09289331 n 0000 | accumulated earth and stones deposited by a glacier -09359031 17 n 01 Moray_Firth 0 001 @i 09280380 n 0000 | an inlet of the North Sea on the northeast coast of Scotland -09359150 17 n 01 Moreau_River 0 002 @i 09411430 n 0000 #p 09138935 n 0000 | a river that rises in western South Dakota and flows eastward to the Missouri River -09359312 17 n 01 Moreton_Bay 0 003 @i 09215664 n 0000 #p 09211266 n 0000 #p 08832691 n 0000 | an arm of the Tasman Sea forming a bay to the east of Brisbane -09359471 17 n 04 morning_star 0 daystar 0 Phosphorus 0 Lucifer 0 001 @ 09394007 n 0000 | a planet (usually Venus) seen just before sunrise in the eastern sky -09359631 17 n 01 motor 0 002 @ 09190918 n 0000 + 00324481 a 0102 | a nonspecific agent that imparts motion; "happiness is the aim of all men and the motor of all action" -09359803 17 n 02 mountain 0 mount 0 011 @ 09366317 n 0000 + 01219502 a 0101 + 02240490 a 0104 + 10334567 n 0101 ~i 09139993 n 0000 ~ 09193705 n 0000 ~ 09218641 n 0000 %p 09360122 n 0000 %p 09361517 n 0000 ~ 09427752 n 0000 ~ 09472597 n 0000 | a land mass that projects well above its surroundings; higher than a hill -09360122 17 n 01 mountain_peak 0 070 @ 08617963 n 0000 #p 09359803 n 0000 ~i 09187204 n 0000 ~i 09187407 n 0000 ~i 09187594 n 0000 ~i 09196302 n 0000 ~i 09197945 n 0000 ~i 09203032 n 0000 ~i 09226591 n 0000 ~i 09230500 n 0000 ~i 09241047 n 0000 ~i 09243615 n 0000 ~i 09251832 n 0000 ~i 09257280 n 0000 ~i 09266453 n 0000 ~i 09272773 n 0000 ~i 09272927 n 0000 ~i 09277010 n 0000 ~i 09285828 n 0000 ~i 09287289 n 0000 ~i 09290626 n 0000 ~i 09291340 n 0000 ~i 09301461 n 0000 ~i 09306497 n 0000 ~i 09306642 n 0000 ~i 09310011 n 0000 ~i 09310162 n 0000 ~i 09322701 n 0000 ~i 09322930 n 0000 ~i 09323221 n 0000 ~i 09325963 n 0000 ~i 09336702 n 0000 ~i 09338712 n 0000 ~i 09341673 n 0000 ~i 09342729 n 0000 ~i 09346284 n 0000 ~i 09349192 n 0000 ~i 09349425 n 0000 ~i 09351257 n 0000 ~i 09357847 n 0000 ~i 09361681 n 0000 ~i 09362050 n 0000 ~i 09364249 n 0000 ~i 09364426 n 0000 ~i 09365128 n 0000 ~i 09365288 n 0000 ~i 09373623 n 0000 ~i 09375693 n 0000 ~i 09377657 n 0000 ~i 09378529 n 0000 ~i 09385586 n 0000 ~i 09391996 n 0000 ~i 09392961 n 0000 ~i 09396275 n 0000 ~i 09403581 n 0000 ~i 09405169 n 0000 ~i 09417668 n 0000 ~i 09420273 n 0000 ~i 09431569 n 0000 ~i 09431902 n 0000 ~i 09435512 n 0000 ~i 09459114 n 0000 ~i 09463721 n 0000 ~i 09465135 n 0000 ~i 09465290 n 0000 ~i 09477567 n 0000 ~i 09478047 n 0000 ~i 09479072 n 0000 ~i 09479811 n 0000 ~i 09482566 n 0000 | the summit of a mountain -09361517 17 n 02 mountainside 0 versant 0 002 @ 09437454 n 0000 #p 09359803 n 0000 | the side or slope of a mountain; "conifer forests cover the eastern versant" -09361681 17 n 01 Mount_Bartle_Frere 0 002 @i 09360122 n 0000 #p 08832691 n 0000 | the highest mountain peak in Queensland, Australia -09361816 17 n 01 Mount_Carmel 0 002 @i 09403734 n 0000 #p 08792548 n 0000 | a mountain range in northwestern Israel near the Mediterranean coast; "according to the Old Testament, Elijah defeated the priests of Baal at Mount Carmel" -09362050 17 n 01 Mount_Elbert 0 002 @i 09360122 n 0000 #p 09416570 n 0000 | the highest peak in the Rocky Mountains in central Colorado (14,431 feet high) -09362207 17 n 02 mouse_nest 0 mouse's_nest 0 001 @ 09369169 n 0000 | where mice bear and raise their young -09362316 17 n 01 mouth 0 001 @ 09287968 n 0000 | the point where a stream issues into a larger body of water; "New York is at the mouth of the Hudson" -09362469 17 n 01 mouth 1 001 @ 09379111 n 0000 | an opening that resembles a mouth (as of a cave or a gorge); "he rode into the mouth of the canyon"; "they built a fire at the mouth of the cave" -09362666 17 n 01 Mozambique_Channel 0 002 @i 09241247 n 0000 #p 09311259 n 0000 | an arm of the Indian Ocean between Madagascar and southeastern Africa -09362820 17 n 01 mud_puddle 0 002 @ 09397607 n 0000 ~ 09474557 n 0000 | a puddle of mud; "the children loved a mud puddle" -09362945 17 n 01 mull 0 001 @ 09399592 n 0000 | a term used in Scottish names of promontories; "the Mull of Kintyre" -09363064 17 n 01 multiple_star 0 003 @ 09444100 n 0000 ~i 09237749 n 0000 ~ 09461069 n 0000 | a system of three or more stars associated by gravity -09363214 17 n 03 muon 0 negative_muon 0 mu-meson 0 001 @ 09338013 n 0000 | an elementary particle with a negative charge and a half-life of 2 microsecond; decays to electron and neutrino and antineutrino -09363420 17 n 02 Murray 0 Murray_River 0 003 @i 09411430 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a southeast Australian river; flows westward and then south into the Indian Ocean at Adelaide -09363620 17 n 02 Murrumbidgee 0 Murrumbidgee_River 0 003 @i 09411430 n 0000 #p 09211266 n 0000 #p 08831004 n 0000 | a river of southeastern Australia; flows westward into the Murray River -09363810 17 n 01 Musca 0 001 @i 09252970 n 0000 | a small constellation in the polar region of the southern hemisphere near the Southern Cross and Chamaeleon -09363970 17 n 01 must 0 001 @ 09367203 n 0000 | a necessary or essential thing; "seat belts are an absolute must" -09364086 17 n 01 mutagen 0 001 @ 09190918 n 0000 | any agent (physical or environmental) that can induce a genetic mutation or can increase the rate of mutation -09364249 17 n 02 Muztag 0 Muztagh 0 002 @i 09360122 n 0000 #p 09327881 n 0000 | a highest mountain peak in the Kunlun Shan in China; near the Indian border (23,891 feet high) -09364426 17 n 01 Nacimiento 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain peak in the Andes in Argentina (21,302 feet high) -09364582 17 n 02 nacreous_cloud 0 mother-of-pearl_cloud 0 001 @ 09247410 n 0000 | a luminous iridescent cloud at a high altitude that may be seen when the sun is a few degrees below the horizon -09364778 17 n 02 Namoi 0 Namoi_River 0 002 @i 09411430 n 0000 #p 08831004 n 0000 | a river in southeastern Australia that flows generally northwest to join the Darling River -09364954 17 n 02 Nan 0 Nan_River 0 002 @i 09411430 n 0000 #p 09036452 n 0000 | a river of western Thailand flowing southward to join the Ping River to form the Chao Phraya -09365128 17 n 01 Nanda_Devi 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08900535 n 0000 | a mountain in the Himalayas in northern India (25,660 feet high) -09365288 17 n 01 Nanga_Parbat 0 003 @i 09360122 n 0000 #p 09303647 n 0000 #p 08975617 n 0000 | a mountain in the Himalayas in Kashmir (26,660 feet high) -09365443 17 n 01 Nan_Ling 0 002 @i 09403734 n 0000 #p 08723006 n 0000 | a mountain range in southeastern China running generally east to west -09365587 17 n 01 Nares_Deep 0 001 @i 09461315 n 0000 | a depression in the floor of the Atlantic Ocean to the north of Haiti and Puerto Rico -09365730 17 n 01 Narragansett_Bay 0 002 @i 09215664 n 0000 #p 09137032 n 0000 | a deep inlet of the Atlantic Ocean in Rhode Island -09365863 17 n 01 narrow 0 004 @ 09446115 n 0000 + 02561888 a 0101 + 00305109 v 0101 ~i 09123662 n 0000 | a narrow strait connecting two bodies of water -09366017 17 n 02 natural_depression 0 depression 0 011 @ 09287968 n 0000 ! 09366317 n 0101 ~ 09215437 n 0000 ~ 09217638 n 0000 ~ 09259219 n 0000 ~ 09304750 n 0000 ~ 09344198 n 0000 ~ 09435739 n 0000 ~ 09461315 n 0000 ~ 09462773 n 0000 ~ 09468604 n 0000 | a sunken or depressed geological formation -09366317 17 n 02 natural_elevation 0 elevation 0 010 @ 09287968 n 0000 + 01974062 v 0203 ! 09366017 n 0101 ~ 09302616 n 0000 ~ 09303008 n 0000 ~ 09359803 n 0000 ~ 09399592 n 0000 ~ 09409512 n 0000 %p 09437454 n 0000 ~ 09452760 n 0000 | a raised or elevated geological formation -09366597 17 n 01 natural_order 0 001 @ 09466280 n 0000 | the physical universe considered as an orderly system subject to natural (not human or supernatural) laws -09366762 17 n 01 nature 0 001 @ 09466280 n 0000 | the natural physical world including plants and animals and landscapes etc.; "they tried to preserve nature as they found it" -09366940 17 n 01 nebula 0 005 @ 11439690 n 0000 + 03089377 a 0101 + 03089377 a 0102 ~ 09266790 n 0000 ~ 09394797 n 0000 | an immense cloud of gas (mainly hydrogen) and dust in interstellar space -09367137 17 n 01 nebule 0 001 @ 09247410 n 0000 | a small cloud -09367203 17 n 05 necessity 0 essential 0 requirement 0 requisite 0 necessary 0 011 @ 00002452 n 0000 + 01580775 a 0404 + 01188725 v 0303 + 01580306 a 0201 ! 09312645 n 0201 + 02023430 a 0104 + 01580050 a 0101 + 02627934 v 0101 ~ 09265910 n 0000 ~ 09363970 n 0000 ~ 09367991 n 0000 | anything indispensable; "food and shelter are necessities of life"; "the essentials of the good life"; "allow farmers to buy their requirements under favorable conditions"; "a place where the requisites of water fuel and fodder can be obtained" -09367733 17 n 01 neck 0 001 @ 09334396 n 0000 | a narrow elongated projecting strip of land -09367827 17 n 02 Neckar 0 Neckar_River 0 002 @i 09411430 n 0000 #p 08766988 n 0000 | a river in Germany; rises in the Black Forest and flows north into the Rhine -09367991 17 n 02 need 0 want 0 004 @ 09367203 n 0000 + 02632567 v 0201 + 01188725 v 0201 + 02627934 v 0104 | anything that is necessary but lacking; "he had sufficient means to meet his simple needs"; "I tried to supply his wants" -09368224 17 n 02 neighbor 0 neighbour 0 005 @ 00002684 n 0000 + 08641113 n 0204 + 02608004 v 0202 + 08641113 n 0103 + 02608004 v 0101 | a nearby object of the same kind; "Fort Worth is a neighbor of Dallas"; "what is the closest neighbor to the Earth?" -09368479 17 n 02 Neosho 0 Neosho_River 0 003 @i 09411430 n 0000 #p 09087599 n 0000 #p 09131654 n 0000 | a river that rises in eastern Kansas and flows eastward into Oklahoma to become a tributary of the Arkansas River -09368699 17 n 01 Neptune 0 004 @i 09322087 n 0000 @i 09450866 n 0000 @i 09381480 n 0000 #m 09439433 n 0000 | a giant planet with a ring of ice particles; the 8th planet from the sun is the most remote of the gas giants; "the existence of Neptune was predicted from perturbations in the orbit of Uranus and it was then identified in 1846" -09369039 17 n 01 neritic_zone 0 001 @ 09376526 n 0000 | the ocean waters from the low tide mark to a depth of about 100 fathoms -09369169 17 n 01 nest 0 008 @ 00019128 n 0000 + 01383393 v 0101 + 02654947 v 0101 ~ 09218159 n 0000 ~ 09221571 n 0000 ~ 09270160 n 0000 ~ 09362207 n 0000 ~ 09371028 n 0000 | a structure in which animals lay eggs or give birth to their young -09369412 17 n 01 neutrino 0 001 @ 09338013 n 0000 | an elementary particle with zero charge and zero mass -09369520 17 n 01 neutron 0 001 @ 09374886 n 0000 | an elementary particle with 0 charge and mass about equal to a proton; enters into the structure of the atomic nucleus -09369692 17 n 01 neutron_star 0 002 @ 09444100 n 0000 ~ 09400987 n 0000 | a star that has collapsed under its own gravity; it is composed of neutrons -09369844 17 n 02 Neva 0 Neva_River 0 002 @i 09411430 n 0000 #p 09006413 n 0000 | a river in northwestern Russia flowing generally west into the Gulf of Finland -09370006 17 n 01 neve 0 002 @ 09308398 n 0000 #p 09289331 n 0000 | the upper part of a glacier (beyond the limit of perpetual snow) where the snow turns to ice -09370168 17 n 01 New_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | a river in the southeastern United States that flows northward from North Carolina to West Virginia where it empties into the Kanawha River -09370383 17 n 01 New_York_Bay 0 004 @i 09215664 n 0000 #p 09119277 n 0000 #p 09209263 n 0000 %p 09114401 n 0000 | a bay of the North Atlantic; fed by the Hudson River -09370552 17 n 02 Niagara 0 Niagara_River 0 004 @i 09411430 n 0000 #p 09044862 n 0000 #p 08820121 n 0000 %p 09370773 n 0000 | a river flowing from Lake Erie into Lake Ontario; forms boundary between Ontario and New York -09370773 17 n 02 Niagara 1 Niagara_Falls 0 006 @i 09475292 n 0000 #p 09370552 n 0000 #p 08827126 n 0000 #p 09117351 n 0000 %p 09195796 n 0000 %p 09232165 n 0000 | waterfall in Canada is the Horseshoe Falls; in the United States it is the American Falls -09371028 17 n 01 nidus 0 002 @ 09369169 n 0000 ~ 09475044 n 0000 | a nest in which spiders or insects deposit their eggs -09371151 17 n 02 Niger 0 Niger_River 0 006 @i 09411430 n 0000 #p 08947319 n 0000 #p 08965598 n 0000 #p 08973330 n 0000 #p 08759420 n 0000 #p 08973776 n 0000 | an African river; flows into the South Atlantic -09371360 17 n 02 Nile 0 Nile_River 0 005 @i 09411430 n 0000 #p 09043052 n 0000 #p 09029457 n 0000 #p 08897065 n 0000 + 03091618 a 0101 | the world's longest river (4150 miles); flows northward through eastern Africa into the Mediterranean; the Nile River valley in Egypt was the site of the world's first great civilization -09371686 17 n 03 nimbus 0 nimbus_cloud 0 rain_cloud 0 002 @ 09247410 n 0000 %p 11427067 n 0000 | a dark grey cloud bearing rain -09371816 17 n 02 Niobrara 0 Niobrara_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | a tributary of the Missouri River -09371941 17 n 01 nodule 0 005 @ 09307300 n 0000 ;c 06121113 n 0000 + 02141867 a 0101 + 03092198 a 0101 ~ 09287817 n 0000 | (mineralogy) a small rounded lump of mineral substance (usually harder than the surrounding rock or sediment) -09372176 17 n 01 Norma 0 001 @i 09252970 n 0000 | a small constellation in the southern hemisphere near Lupus and Ara in the Milky Way -09372313 17 n 03 normal_fault 0 gravity_fault 0 common_fault 0 001 @ 09310616 n 0000 | an inclined fault in which the hanging wall appears to have slipped downward relative to the footwall -09372504 17 n 01 North_America 0 019 @i 09254614 n 0000 #p 08682389 n 0000 #p 08682575 n 0000 #p 08611662 n 0000 #p 09195615 n 0000 -r 08374773 n 0000 -r 08679562 n 0000 %p 08702805 n 0000 %p 08735564 n 0000 %p 08735705 n 0000 %p 08820121 n 0000 -r 09022831 n 0000 %p 09044862 n 0000 -r 09233446 n 0000 %p 09248477 n 0000 %p 09293011 n 0000 %p 09416570 n 0000 %m 09725229 n 0000 -r 10437698 n 0000 | a continent (the third largest) in the western hemisphere connected to South America by the Isthmus of Panama -09373016 17 n 01 North_Atlantic 0 003 @i 09385911 n 0000 #p 09209263 n 0000 %p 09315624 n 0000 | that part of the Atlantic Ocean to the north of the equator -09373175 17 n 01 North_Channel 0 001 @i 09446115 n 0000 | a strait between Northern Ireland and Scotland that connects the Atlantic Ocean and the Irish Sea -09373333 17 n 01 Northern_Cross 0 002 @i 07959943 n 0000 #m 09262490 n 0000 | a cluster of 5 bright stars forming a cross in the constellation Cygnus -09373485 17 n 01 North_Pacific 0 002 @i 09385911 n 0000 #p 09382990 n 0000 | that part of the Pacific Ocean to the north of the equator -09373623 17 n 01 North_Peak 0 002 @i 09360122 n 0000 #p 09192280 n 0000 | 19,370 feet high -09373716 17 n 02 North_Platte 0 North_Platte_River 0 004 @i 09411430 n 0000 #p 09067277 n 0000 #p 09159003 n 0000 #p 09109444 n 0000 | a river that rises in northern Colorado and flows northward into Wyoming and then eastward and southeastward through Nebraska where it joins the South Platte to form the Platte River -09374036 17 n 01 North_Sea 0 006 @i 09426788 n 0000 #p 09209263 n 0000 %p 08953829 n 0000 %p 09324859 n 0000 %p 09436299 n 0000 %p 09483519 n 0000 | an arm of the North Atlantic between the British Isles and Scandinavia; oil was discovered under the North Sea in 1970 -09374306 17 n 01 Norwegian_Sea 0 003 @i 09426788 n 0000 #p 09209263 n 0000 %p 08764899 n 0000 | the part of the Atlantic that lies off the Norwegian coast to the north of the North Sea -09374493 17 n 01 nova 0 001 @ 09444100 n 0000 | a star that ejects some of its material in the form of a cloud and become more luminous in the process -09374646 17 n 02 nub 0 stub 1 002 @ 09385911 n 0000 ~ 09374773 n 0000 | a small piece; "a nub of coal"; "a stub of a pencil" -09374773 17 n 01 nubbin 0 001 @ 09374646 n 0000 | a small nub (especially an undeveloped fruit or ear of corn) -09374886 17 n 01 nucleon 0 006 @ 09215023 n 0000 #p 09375085 n 0000 ~ 09199817 n 0000 ~ 09200193 n 0000 ~ 09369520 n 0000 ~ 09400037 n 0000 | a constituent (proton or neutron) of an atomic nucleus -09375085 17 n 01 nucleus 0 003 @ 08521816 n 0000 #p 14619225 n 0000 %p 09374886 n 0000 | the positively charged dense center of an atom -09375223 17 n 01 nucleus 1 003 @ 08521816 n 0000 #p 09251407 n 0000 ;c 06095022 n 0000 | (astronomy) the center of the head of a comet; consists of small solid particles of ice and frozen gas that vaporizes on approaching the sun to form the coma and tail -09375481 17 n 01 nugget 0 001 @ 09307300 n 0000 | a solid lump of a precious metal (especially gold) as found in the earth -09375606 17 n 01 nullah 0 001 @ 09468604 n 0000 | a ravine or gully in southern Asia -09375693 17 n 01 Nuptse 0 004 @i 09360122 n 0000 #p 09303647 n 0000 #p 08906374 n 0000 #p 08906952 n 0000 | a mountain in the central Himalayas on the border of Tibet and Nepal (25,726 feet high) -09375891 17 n 02 Ob 0 Ob_River 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a major river of western Siberia; flows generally northward and westward to the Gulf of Ob and the Kara Sea -09376078 17 n 01 obliterator 0 002 @ 09272468 n 0000 + 00472230 v 0101 | an eliminator that does away with all traces -09376198 17 n 01 ocean 0 012 @ 09225146 n 0000 #p 09307902 n 0000 + 02890216 a 0101 + 01381196 a 0101 ~i 09198574 n 0000 ~i 09204977 n 0000 ~i 09209263 n 0000 -c 09225146 n 0000 ~ 09263811 n 0000 ~i 09311259 n 0000 ~i 09382990 n 0000 -c 09433442 n 0000 | a large body of water constituting a principal part of the hydrosphere -09376526 17 n 07 ocean_floor 0 sea_floor 0 ocean_bottom 0 seabed 0 sea_bottom 0 Davy_Jones's_locker 0 Davy_Jones 0 006 @ 09217638 n 0000 ~ 09186592 n 0000 ~ 09255207 n 0000 ~ 09255343 n 0000 ~ 09369039 n 0000 ~ 09464221 n 0000 | the bottom of a sea or ocean -09376786 17 n 01 oceanfront 0 001 @ 09287968 n 0000 | land bordering an ocean -09376866 17 n 01 Octans 0 001 @i 09252970 n 0000 | the constellation that includes the southern celestial pole -09376979 17 n 02 Oder 0 Oder_River 0 003 @i 09411430 n 0000 #p 08982587 n 0000 #p 08766988 n 0000 | a European river; flows into the Baltic Sea -09377125 17 n 01 offing 0 002 @ 09225146 n 0000 #p 09345932 n 0000 | the part of the sea that can be seen from the shore and is beyond the anchoring area; "there was a ship in the offing" -09377315 17 n 02 Ohio 0 Ohio_River 0 002 @i 09411430 n 0000 #p 09044862 n 0000 | a river that is formed in western Pennsylvania and flows westward to become a tributary of the Mississippi River -09377511 17 n 01 oil-water_interface 0 001 @ 03578435 n 0000 | an interface forming the boundary between the non-miscible liquids oil and water -09377657 17 n 01 Ojos_del_Salado 0 004 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 #p 08720481 n 0000 | a mountain in the Andes on the border between Argentina and Chile (22,572 feet high) -09377861 17 n 02 Okeechobee 0 Lake_Okeechobee 0 002 @i 09328904 n 0000 #p 09071690 n 0000 | a lake in southeast Florida to the north of the Everglades -09378014 17 n 01 Okefenokee_Swamp 0 003 @i 09452395 n 0000 #p 09071690 n 0000 #p 09075842 n 0000 | a large swampy area of northeast Florida and southeast Georgia -09378178 17 n 01 Old_Faithful 0 002 @i 09288635 n 0000 #p 08610305 n 0000 | a geyser in Yellowstone National Park that erupts for about 4 minutes about every 65 minutes -09378349 17 n 01 Olduvai_Gorge 0 002 @i 09290444 n 0000 #p 09034550 n 0000 | a gorge in northeastern Tanzania where anthropologists have found some of the earliest human remains -09378529 17 n 04 Olympus 0 Mount_Olympus 0 Mt._Olympus 0 Olimbos 0 003 @i 09360122 n 0000 #p 08780881 n 0000 + 03093184 a 0101 | a mountain peak in northeast Greece near the Aegean coast; believed by ancient Greeks to be the dwelling place of the gods (9,570 feet high) -09378801 17 n 01 Omega_Centauri 0 002 @i 07959943 n 0000 #m 09240051 n 0000 | a global cluster in the constellation Centaurus -09378929 17 n 01 open_chain 0 004 @ 09240621 n 0000 ! 09246883 n 0101 ~ 09228492 n 0000 ~ 09446012 n 0000 | a chain of atoms in a molecule whose ends are not joined to form a ring -09379111 17 n 02 opening 0 gap 0 016 @ 13910384 n 0000 #p 09451517 n 0000 + 01593614 v 0201 + 02744651 v 0101 ~ 03972799 n 0000 ~ 05282652 n 0000 ~ 05464534 n 0000 ~ 05545439 n 0000 ~ 09228801 n 0000 ~ 09242389 n 0000 ~ 09258715 n 0000 ~ 09304465 n 0000 ~ 09362469 n 0000 ~ 09410101 n 0000 ~ 09410928 n 0000 ~ 09480077 n 0000 | an open or empty space in or between things; "there was a small opening between the trees"; "the explosion made a gap in the wall" -09379572 17 n 01 Ophiuchus 0 001 @i 09252970 n 0000 | a large constellation in the equatorial region between Hercules and Scorpius -09379705 17 n 02 Orange 0 Orange_River 0 002 @i 09411430 n 0000 #p 08999482 n 0000 | a river in South Africa that flows generally westward to the Atlantic Ocean -09379868 17 n 01 ore_bed 0 001 @ 09217867 n 0000 | a stratum of ore -09379938 17 n 02 Orinoco 0 Orinoco_River 0 003 @i 09411430 n 0000 #p 09161803 n 0000 #p 08732116 n 0000 | a South American river 1,500 miles long; flows into the South Atlantic -09380117 17 n 02 Orion 0 Hunter 0 003 @i 09252970 n 0000 @ 09266790 n 0000 %m 09219731 n 0000 | a constellation on the equator to the east of Taurus; contains Betelgeuse and Rigel -09380299 17 n 02 Osage 0 Osage_River 0 002 @i 09411430 n 0000 #p 09105821 n 0000 | a river in Missouri that is a tributary of the Missouri River -09380446 17 n 01 Osaka_Bay 0 003 @i 09215664 n 0000 #p 08920381 n 0000 #p 09382990 n 0000 | a bay of the western Pacific in southern Honshu -09380588 17 n 03 Outaouais 0 Ottawa 0 Ottawa_river 0 002 @i 09411430 n 0000 #p 08820121 n 0000 | a river in southeastern Canada that flows along the boundary between Quebec and Ontario to the Saint Lawrence River near Montreal -09380817 17 n 02 Ouachita 0 Ouachita_River 0 003 @i 09411430 n 0000 #p 09059274 n 0000 #p 09090825 n 0000 | a river that rises in western Arkansas and flows southeast into eastern Louisiana to become a tributary of the Red River -09381048 17 n 02 Ouse 0 Ouse_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in northeastern England that flows generally southeastward to join the Trent River and form the Humber -09381242 17 n 03 outcrop 0 outcropping 0 rock_outcrop 0 005 @ 09416076 n 0000 + 00424499 v 0201 + 00424499 v 0101 ~ 09218494 n 0000 ~ 09381781 n 0000 | the part of a rock formation that appears above the surface of the surrounding land -09381480 17 n 01 outer_planet 0 008 @ 09394007 n 0000 #m 09439433 n 0000 ;c 06095022 n 0000 ~i 09322454 n 0000 ~i 09368699 n 0000 ~i 09395899 n 0000 ~i 09424642 n 0000 ~i 09467417 n 0000 | (astronomy) a major planet whose orbit is outside the asteroid belt (Jupiter, Saturn, Uranus, Neptune, Pluto) -09381781 17 n 01 outthrust 0 001 @ 09381242 n 0000 | an outcropping of rock that extends outward -09381880 17 n 01 overburden 0 001 @ 09335240 n 0000 | the surface soil that must be moved away to get at coal seams and mineral deposits -09382019 17 n 01 oxbow 0 001 @ 09349648 n 0000 | a U-shaped curve in a stream -09382099 17 n 01 oxbow 1 001 @ 09334396 n 0000 | the land inside an oxbow bend in a river -09382191 17 n 01 oxbow_lake 0 001 @ 09328904 n 0000 | a crescent-shaped lake (often temporary) that is formed when a meander of a river is cut off from the main channel -09382362 17 n 03 Ozarks 0 Ozark_Mountains 0 Ozark_Plateau 0 002 @i 09403734 n 0000 #p 09059274 n 0000 | an area of low mountains in northwestern Arkansas and southeastern Missouri and northeastern Oklahoma -09382570 17 n 01 ozone_hole 0 002 @ 09304465 n 0000 #p 09382726 n 0000 | an area of the ozone layer (near the poles) that is seasonally depleted of ozone -09382726 17 n 02 ozone_layer 0 ozonosphere 0 003 @ 08591680 n 0000 #p 09448090 n 0000 %p 09382570 n 0000 | a layer in the stratosphere (at approximately 20 miles) that contains a concentration of ozone sufficient to block most ultraviolet radiation from the sun -09382990 17 n 02 Pacific 0 Pacific_Ocean 0 038 @i 09376198 n 0000 + 02946644 a 0101 -r 01282022 n 0000 -r 01290997 n 0000 %p 08746797 n 0000 %p 08835675 n 0000 %p 08835875 n 0000 %p 08836165 n 0000 %p 08836329 n 0000 %p 08838556 n 0000 %p 08841956 n 0000 %p 08844279 n 0000 %p 08920381 n 0000 %p 08926877 n 0000 %p 08971914 n 0000 %p 08977948 n 0000 %p 08980300 n 0000 %p 09066948 n 0000 %p 09198574 n 0000 %p 09202603 n 0000 %p 09218782 n 0000 %p 09256663 n 0000 %p 09271291 n 0000 %p 09296937 n 0000 %p 09299885 n 0000 %p 09313454 n 0000 %p 09373485 n 0000 %p 09380446 n 0000 %p 09383793 n 0000 %p 09400667 n 0000 %p 09422048 n 0000 %p 09422486 n 0000 %p 09428036 n 0000 %p 09428171 n 0000 %p 09441107 n 0000 %p 09441587 n 0000 %p 09455046 n 0000 %p 09481958 n 0000 | the largest ocean in the world -09383793 17 n 01 Pacific_Coast 0 002 @i 09428293 n 0000 #p 09382990 n 0000 | a coast of the Pacific Ocean -09383901 17 n 02 pack_ice 0 ice_pack 0 001 @ 09308398 n 0000 | a large expanse of floating ice -09383998 17 n 01 Pallas 0 001 @i 09208702 n 0000 | a large asteroid; the second asteroid to be discovered -09384106 17 n 01 pallasite 0 001 @ 09352849 n 0000 | a meteorite composed principally of olivine and metallic iron -09384223 17 n 02 Pamir_Mountains 0 the_Pamirs 0 006 @i 09403734 n 0000 #p 09020961 n 0000 #p 09020440 n 0000 #p 08703454 n 0000 #p 08975902 n 0000 #p 08723006 n 0000 | a mountain range in central Asia that is centered in Tajikistan but extends into Kyrgyzstan and Afghanistan and Pakistan and western China -09384532 17 n 02 Pangaea 0 Pangea 0 002 @i 09254614 n 0000 ;c 06118370 n 0000 | (plate tectonics) a hypothetical continent including all the landmass of the earth prior to the Triassic period when it split into Laurasia and Gondwanaland -09384771 17 n 02 Para 0 Para_River 0 002 @i 09274500 n 0000 #p 08853741 n 0000 | an estuary in northern Brazil into which the Tocantins River flows -09384921 17 n 02 Parana 0 Parana_River 0 006 @i 09411430 n 0000 #p 08853741 n 0000 #p 08978343 n 0000 #p 08711974 n 0000 %p 09430416 n 0000 %p 09467765 n 0000 | a South American river; tributary of Rio de la Plata -09385137 17 n 03 paring 0 sliver 0 shaving 0 008 @ 09285254 n 0000 + 01249147 v 0301 + 02801349 a 0202 + 00144314 v 0201 + 02469274 v 0201 + 01552219 v 0102 ~ 09442723 n 0000 ~ 09464098 n 0000 | a thin fragment or slice (especially of wood) that has been shaved from something -09385416 17 n 02 Parnaiba 0 Parnahiba 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a river in northeastern Brazil that flows generally northward to the Atlantic Ocean -09385586 17 n 03 Parnassus 0 Mount_Parnassus 0 Liakoura 0 003 @i 09360122 n 0000 #p 08780881 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mountain in central Greece where (according to Greek mythology) the Muses lived; known as the mythological home of music and poetry; "Liakoura is the modern name of Mount Parnassus" -09385911 17 n 02 part 0 piece 0 020 @ 00002452 n 0000 #p 09465459 n 0000 ~ 05220461 n 0000 ~ 05221526 n 0000 ~ 09187036 n 0000 ~ 09215315 n 0000 ~ 09257011 n 0000 ~ 09259500 n 0000 ~ 09262371 n 0000 ~ 09285254 n 0000 ~ 09307300 n 0000 ~i 09373016 n 0000 ~i 09373485 n 0000 ~ 09374646 n 0000 ~ 09429387 n 0000 ~ 09437241 n 0000 ~i 09440948 n 0000 ~i 09441587 n 0000 ~ 09449510 n 0000 ~ 09480809 n 0000 | a portion of a natural object; "they analyzed the river into three parts"; "he needed a piece of granite" -09386422 17 n 02 particle 0 subatomic_particle 0 016 @ 09224911 n 0000 ~ 01329935 n 0000 ~ 09194052 n 0000 ~ 09219592 n 0000 ~ 09226997 n 0000 ~ 09266287 n 0000 ~ 09272085 n 0000 ~ 09279161 n 0000 ~ 09315159 n 0000 ~ 09345792 n 0000 ~ 09353603 n 0000 ~ 09398935 n 0000 ~ 09399198 n 0000 ~ 09426038 n 0000 ~ 09451378 n 0000 ~ 09457199 n 0000 | a body having finite mass and internal structure but negligible dimensions -09386842 17 n 03 pass 0 mountain_pass 0 notch 0 009 @ 00027167 n 0000 #p 09403734 n 0000 ~i 09228928 n 0000 ~ 09249034 n 0000 ~i 09261407 n 0000 ~ 09263912 n 0000 ~i 09268927 n 0000 ~i 09325530 n 0000 ~ 09418810 n 0000 | the location in a range of mountains of a geological formation that is lower than the surrounding peaks; "we got through the pass before it started to snow" -09387222 17 n 03 path 0 track 0 course 0 011 @ 08593262 n 0000 + 02067540 v 0301 + 01912159 v 0202 + 02197629 v 0201 + 02078453 v 0201 ~ 09249272 n 0000 ~ 09314013 n 0000 ~ 09417097 n 0000 ~ 09445566 n 0000 ~ 09452653 n 0000 ~ 09460312 n 0000 | a line or route along which something travels or moves; "the hurricane demolished houses in its path"; "the track of an animal"; "the course of the river" -09387624 17 n 02 Paulo_Afonso 0 Paulo_Afonso_Falls 0 002 @i 09475292 n 0000 #p 08853741 n 0000 | a major waterfall in northeastern Brazil -09387764 17 n 01 Pavo 0 001 @i 09252970 n 0000 | a small constellation near the South Pole between Tucana and Ara -09387880 17 n 01 Pearl_River 0 002 @i 09411430 n 0000 #p 09103943 n 0000 | a river in Mississippi that flows southward to the Gulf of Mexico -09388023 17 n 01 pebble 0 002 @ 09416076 n 0000 + 02242223 a 0102 | a small smooth rounded rock -09388121 17 n 02 Pecos 0 Pecos_River 0 003 @i 09411430 n 0000 #p 09114696 n 0000 #p 09141526 n 0000 | a tributary of the Rio Grande that flows southeastward from New Mexico through western Texas -09388318 17 n 02 Pee_Dee 0 Pee_Dee_River 0 003 @i 09411430 n 0000 #p 09126305 n 0000 #p 09137869 n 0000 | a river that flows through central North Carolina and northeastern South Carolina to the Atlantic Ocean -09388530 17 n 01 Pegasus 0 001 @i 09252970 n 0000 | a constellation in the northern hemisphere near Andromeda and Pisces -09388653 17 n 02 peneplain 0 peneplane 0 002 @ 09393605 n 0000 ;c 06115701 n 0000 | a more or less level land surface representing an advanced stage of erosion undisturbed by crustal movements -09388848 17 n 01 peninsula 0 035 @ 09334396 n 0000 + 03098252 a 0101 ~i 08701942 n 0000 ~i 08713772 n 0000 ~i 08731606 n 0000 ~i 08740022 n 0000 ~i 08760856 n 0000 ~i 08761039 n 0000 ~i 08790495 n 0000 ~i 08801364 n 0000 ~i 08826841 n 0000 ~i 08847694 n 0000 ~i 08896645 n 0000 ~i 08954611 n 0000 ~i 08964810 n 0000 ~i 08984567 n 0000 ~i 08986691 n 0000 ~i 08999154 n 0000 ~i 09010974 n 0000 ~i 09015460 n 0000 ~i 09021958 n 0000 ~i 09022132 n 0000 ~i 09056837 n 0000 ~i 09098027 n 0000 ~i 09098184 n 0000 ~i 09192122 n 0000 ~i 09198755 n 0000 ~i 09235469 n 0000 ~i 09244683 n 0000 ~i 09278162 n 0000 ~i 09328311 n 0000 ~i 09338910 n 0000 ~i 09343761 n 0000 ~i 09344050 n 0000 ~i 09466863 n 0000 | a large mass of land projecting into a body of water -09389601 17 n 02 Penobscot 0 Penobscot_River 0 002 @i 09411430 n 0000 #p 09092497 n 0000 | a river in central Maine flowing into Penobscot Bay -09389746 17 n 01 Penobscot_Bay 0 002 @i 09215664 n 0000 #p 09209263 n 0000 | an inlet of the Atlantic in eastern Maine -09389867 17 n 01 perforation 0 002 @ 09304465 n 0000 + 01227675 v 0102 | a hole made in something; "a perforation of the eardrum" -09389999 17 n 01 Perejil 0 002 @i 09319456 n 0000 #p 09350045 n 0000 | a small uninhabited Mediterranean islet claimed by both Morocco and Spain -09390146 17 n 01 permafrost 0 001 @ 09335240 n 0000 | ground that is permanently frozen -09390236 17 n 01 Perseus 0 002 @i 09252970 n 0000 %m 09192566 n 0000 | a conspicuous constellation in the northern hemisphere; between Auriga and Cassiopeia and crossed by the Milky Way -09390424 17 n 02 Persian_Gulf 0 Arabian_Gulf 0 003 @i 09296121 n 0000 #p 09202405 n 0000 %p 08848421 n 0000 | a shallow arm of the Arabian Sea between Iran and the Arabian peninsula; the Persian Gulf oil fields are among the most productive in the world -09390680 17 n 01 petrifaction 0 002 @ 09416076 n 0000 + 00507485 v 0102 | a rock created by petrifaction; an organic object infiltrated with mineral matter and preserved in its original form -09390873 17 n 01 Phobos 0 001 @i 09424270 n 0000 | the larger of the two satellites of Mars -09390967 17 n 01 Phoenix 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Tucana and Sculptor -09391089 17 n 01 photoelectron 0 001 @ 09271904 n 0000 | an electron that is emitted from an atom or molecule by an incident photon -09391223 17 n 01 photon 0 002 @ 09287415 n 0000 #p 11450869 n 0000 | a quantum of electromagnetic radiation; an elementary particle that is its own antiparticle -09391386 17 n 01 photosphere 0 002 @ 08660339 n 0000 #p 09450163 n 0000 | the intensely luminous surface of a star (especially the sun) -09391524 17 n 01 Pictor 0 001 @i 09252970 n 0000 | a constellation in the southern hemisphere near Dorado and Columba -09391644 17 n 01 piedmont 0 001 @ 09437454 n 0000 | a gentle slope leading from the base of a mountain to a region of flat land -09391774 17 n 02 Piedmont_glacier 0 Piedmont_type_of_glacier 0 002 @ 09289331 n 0000 ~i 09350922 n 0000 | a type of glaciation characteristic of Alaska; large valley glaciers meet to form an almost stagnant sheet of ice -09391996 17 n 01 Pike's_Peak 0 003 @i 09360122 n 0000 #p 09416570 n 0000 #p 09067277 n 0000 | a mountain peak in the Rockies in central Colorado (14,109 feet high) -09392162 17 n 01 Pillars_of_Hercules 0 004 @i 09287968 n 0000 #p 09446747 n 0000 %p 09028841 n 0000 %p 09321694 n 0000 | the two promontories at the eastern end of the Strait of Gibraltar; according to legend they were formed by Hercules -09392402 17 n 01 pinetum 0 001 @ 09461170 n 0000 | an area planted with pine trees or related conifers -09392507 17 n 02 Ping 0 Ping_River 0 002 @i 09411430 n 0000 #p 09036452 n 0000 | a river in western Thailand; a major tributary of the Chao Phraya -09392656 17 n 02 pion 0 pi-meson 0 001 @ 09352282 n 0000 | a meson involved in holding the nucleus together; produced as the result of high-energy particle collision -09392824 17 n 01 Pisces 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a large faint zodiacal constellation; between Aquarius and Aries -09392961 17 n 01 Pissis 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 | a mountain in the Andes in Argentina (22,241 feet high) -09393108 17 n 02 pit 0 cavity 0 010 @ 09304750 n 0000 ~ 04488295 n 0000 ~ 09214269 n 0000 ~ 09226869 n 0000 ~ 09268007 n 0000 ~ 09280113 n 0000 ~ 09402944 n 0000 ~ 09422190 n 0000 ~ 09425019 n 0000 ~ 09454744 n 0000 | a sizeable hole (usually in the ground); "they dug a pit to bury the body" -09393403 17 n 01 placer 0 001 @ 09193282 n 0000 | an alluvial deposit that contains particles of some valuable mineral -09393524 17 n 01 plage 0 001 @ 09217230 n 0000 | the beach at a seaside resort -09393605 17 n 03 plain 0 field 0 champaign 0 012 @ 09334396 n 0000 ~i 08790953 n 0000 ~i 08835390 n 0000 ~i 09036098 n 0000 ~ 09281411 n 0000 ~ 09281914 n 0000 ~ 09341319 n 0000 ~ 09358751 n 0000 ~ 09388653 n 0000 ~ 09439032 n 0000 ~ 09445289 n 0000 ~ 09463226 n 0000 | extensive tract of level open land; "they emerged from the woods onto a vast open plain"; "he longed for the fields of his youth" -09394007 17 n 02 planet 0 major_planet 0 013 @ 09239740 n 0000 #m 09439433 n 0000 ;c 06095022 n 0000 + 02778668 a 0102 + 02778668 a 0101 %p 08499504 n 0000 ~i 09276872 n 0000 ~ 09312999 n 0000 ~ 09322087 n 0000 ~ 09359471 n 0000 ~ 09381480 n 0000 ~ 09450866 n 0000 ~ 09456369 n 0000 | (astronomy) any of the nine large celestial bodies in the solar system that revolve around the sun and shine by reflected light; Mercury, Venus, Earth, Mars, Jupiter, Saturn, Uranus, Neptune, and Pluto in order of their proximity to the sun; viewed from the constellation Hercules, all the planets rotate around the sun in a counterclockwise direction -09394646 17 n 01 planet 1 002 @ 09239740 n 0000 + 02778668 a 0101 | any celestial body (other than comets or satellites) that revolves around a star -09394797 17 n 01 planetary_nebula 0 001 @ 09366940 n 0000 | a nebula that was once thought to be a star with its planets but is now thought to be a very hot star surrounded by an expanding envelope of ionized gases that emit a fluorescent glow because of intense radiation from the star -09395086 17 n 01 planetesimal 0 001 @ 09239740 n 0000 | one of many small solid celestial bodies thought to have existed at an early stage in the development of the solar system -09395266 17 n 02 plasmid 0 plasmid_DNA 0 001 @ 09310806 n 0000 | a small cellular inclusion consisting of a ring of DNA that is not in a chromosome but is capable of autonomous replication -09395457 17 n 02 plate 0 crustal_plate 0 001 @ 09260010 n 0000 | a rigid layer of the Earth's crust that is believed to drift slowly -09395592 17 n 02 Platte 0 Platte_River 0 002 @i 09411430 n 0000 #p 09109444 n 0000 | a river in Nebraska that flows eastward to become a tributary of the Missouri River -09395763 17 n 01 Pleiades 0 003 @i 07959943 n 0000 #m 09455306 n 0000 %m 09445780 n 0000 | a star cluster in the constellation Taurus -09395899 17 n 01 Pluto 0 003 @i 09450866 n 0000 @i 09381480 n 0000 #m 09439433 n 0000 | a small planet and the farthest known planet from the sun; it has the most elliptical orbit of all the planets; "Pluto was discovered by Clyde Tombaugh in 1930" -09396150 17 n 02 Po 0 Po_River 0 002 @i 09411430 n 0000 #p 08801678 n 0000 | a European river; flows into the Adriatic Sea -09396275 17 n 02 Pobeda_Peak 0 Pobedy_Peak 0 003 @i 09360122 n 0000 #p 09458587 n 0000 #p 08900535 n 0000 | a mountain peak in the Tien Shan mountains in northern India (24,406 feet high) -09396465 17 n 01 point 2 001 @ 09399592 n 0000 | a promontory extending out into a large body of water; "they sailed south around the point" -09396608 17 n 01 polar_glacier 0 001 @ 09255070 n 0000 | a glacier near the Arctic or Antarctic poles -09396712 17 n 05 Polaris 0 North_Star 0 pole_star 0 polar_star 0 polestar 0 004 @i 09469152 n 0000 @i 09342563 n 0000 #m 09340024 n 0000 #m 09340452 n 0000 | the brightest star in Ursa Minor; at the end of the handle of the Little Dipper; the northern axis of the earth points toward it -09397001 17 n 01 polder 0 001 @ 09335240 n 0000 | low-lying land that has been reclaimed and is protected by dikes (especially in the Netherlands) -09397150 17 n 01 Pollux 0 002 @i 09444100 n 0000 #m 09287613 n 0000 | the brightest star in Gemini; close to Castor -09397268 17 n 01 polynya 0 001 @ 09225146 n 0000 | a stretch of open water surrounded by ice (especially in Arctic seas) -09397391 17 n 02 pond 0 pool 0 007 @ 09328904 n 0000 ~ 09280913 n 0000 ~ 09305646 n 0000 ~ 09351547 n 0000 ~ 09355261 n 0000 ~ 09452866 n 0000 ~ 09475827 n 0000 | a small lake; "the pond was too small for sailing" -09397607 17 n 02 pool 1 puddle 0 005 @ 09225146 n 0000 + 01374465 v 0201 + 01916471 v 0201 ~ 09220922 n 0000 ~ 09362820 n 0000 | a small body of standing water (rainwater) or other liquid; "there were puddles of muddy water in the road after the rain"; "the body lay in a pool of blood" -09397896 17 n 02 positron 0 antielectron 0 001 @ 09199341 n 0000 | an elementary particle with positive charge; interaction of a positron and an electron results in annihilation -09398076 17 n 02 pothole 0 chuckhole 0 001 @ 09304750 n 0000 | a pit or hole produced by wear or weathering (especially in a road surface) -09398217 17 n 02 Potomac 0 Potomac_River 0 004 @i 09411430 n 0000 #p 09155306 n 0000 #p 09093608 n 0000 #p 09148970 n 0000 | a river in the east central United States; rises in West Virginia in the Appalachian Mountains and flows eastward, forming the boundary between Maryland and Virginia, to the Chesapeake Bay -09398533 17 n 01 Poyang 0 002 @i 09328904 n 0000 #p 08723006 n 0000 | a lake in central China that is connected to the Chang Jiang by a canal -09398677 17 n 01 precipice 0 002 @ 09246464 n 0000 + 01145151 a 0102 | a very steep cliff -09398769 17 n 01 primary 0 002 @ 09239740 n 0000 ;c 06095022 n 0000 | (astronomy) a celestial body (especially a star) relative to other objects in orbit around it -09398935 17 n 01 prion 0 002 @ 09386422 n 0000 ;c 06077648 n 0000 | (microbiology) an infectious protein particle similar to a virus but lacking nucleic acid; thought to be the agent responsible for scrapie and other degenerative diseases of the nervous system -09399198 17 n 01 virino 0 002 @ 09386422 n 0000 ;c 06077648 n 0000 | (microbiology) a hypothetical infectious particle thought to be the cause of scrapie and other degenerative diseases of the central nervous system; consists of nucleic acid in a protective coat of host cell proteins -09399485 17 n 01 Procyon 0 002 @i 09221070 n 0000 #m 09232989 n 0000 | the brightest star in Canis Minor -09399592 17 n 04 promontory 0 headland 0 head 2 foreland 0 009 @ 09366317 n 0000 ~i 08722645 n 0000 ~i 09028841 n 0000 ~i 09127461 n 0000 ~i 09234104 n 0000 ~i 09234756 n 0000 ~i 09321694 n 0000 ~ 09362945 n 0000 ~ 09396465 n 0000 | a natural elevation (especially a rocky one that juts out into the sea) -09399899 17 n 01 protein_molecule 0 001 @ 14682133 n 0000 | any large molecule containing chains of amino acids linked by peptide bonds -09400037 17 n 01 proton 0 002 @ 09374886 n 0000 ~ 09307719 n 0000 | a stable particle with positive charge equal to the negative charge of an electron -09400190 17 n 02 Proxima 0 Proxima_Centauri 0 002 @i 09281252 n 0000 #m 09240051 n 0000 | the nearest star to the sun; distance: 4.3 light years -09400337 17 n 01 Prudhoe_Bay 0 002 @i 09215664 n 0000 #p 09055015 n 0000 | a bay on the northern coast of Alaska where oil was discovered in 1968 -09400485 17 n 01 pruning 0 001 @ 09262371 n 0000 | something that has been pruned off of a plant -09400584 17 n 01 ptyalith 0 001 @ 09230768 n 0000 | calculus in a salivary gland -09400667 17 n 01 Puget_Sound 0 003 @i 09440186 n 0000 #p 09152944 n 0000 #p 09382990 n 0000 | an inlet of the North Pacific in northwestern Washington State -09400826 17 n 02 pulp 0 mush 0 004 @ 09348055 n 0000 + 01154639 a 0201 + 02576918 a 0101 + 00331713 v 0101 | any soft or soggy mass; "he pounded it to a pulp" -09400987 17 n 01 pulsar 0 001 @ 09369692 n 0000 | a degenerate neutron star; small and extremely dense; rotates very fast and emits regular pulses of polarized radiation -09401159 17 n 01 Puppis 0 002 @i 09252970 n 0000 #p 09205607 n 0000 | a constellation in the southern hemisphere between Vela and Canis Major that shaped like the stern of a boat -09401340 17 n 02 Purus 0 Purus_River 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a Brazilian river; tributary of the Amazon River -09401474 17 n 01 Pyrenees 0 003 @i 09403734 n 0000 #p 08929922 n 0000 #p 09023321 n 0000 | a chain of mountains between France and Spain -09401613 17 n 01 Pyxis 0 002 @i 09252970 n 0000 #p 09205607 n 0000 | a constellation in the southern hemisphere near Puppis and Antlia -09401750 17 n 01 Quaoar 0 001 @i 09355623 n 0000 | a planetoid discovered in 2002 -09401834 17 n 01 quark 0 009 @ 09272085 n 0000 #p 09300674 n 0000 ;c 06090869 n 0000 ~ 09227530 n 0000 ~ 09242232 n 0000 ~ 09269573 n 0000 ~ 09447917 n 0000 ~ 09459812 n 0000 ~ 09467043 n 0000 | (physics) hypothetical truly fundamental particle in mesons and baryons; there are supposed to be six flavors of quarks (and their antiquarks), which come in pairs; each has an electric charge of +2/3 or -1/3; "quarks have not been observed directly but theoretical predictions based on their existence have been confirmed experimentally" -09402370 17 n 02 quasar 0 quasi-stellar_radio_source 0 001 @ 09239740 n 0000 | a starlike object that may send out radio waves and other forms of energy; many have large red shifts -09402553 17 n 01 Queen_Charlotte_Sound 0 002 @i 09440186 n 0000 #p 08822855 n 0000 | an inlet of the Pacific Ocean off the coast of British Columbia -09402704 17 n 03 quickener 0 invigorator 0 enlivener 0 005 @ 09190918 n 0000 + 00192836 v 0301 + 00028362 v 0201 + 00024279 v 0107 + 00442063 v 0101 | an agent that gives or restores life or vigor; "the soul is the quickener of the body" -09402944 17 n 01 quicksand 0 002 @ 09393108 n 0000 %s 15019030 n 0000 | a pit filled with loose wet sand into which objects are sucked down -09403086 17 n 02 rabbit_burrow 0 rabbit_hole 0 001 @ 09304750 n 0000 | a hole in the ground as a nest made by wild rabbits -09403211 17 n 01 radiator 0 003 @ 00019128 n 0000 + 00529582 v 0101 ~ 09403333 n 0000 | any object that radiates energy -09403333 17 n 01 radio_source 0 001 @ 09403211 n 0000 | an object that radiates radio waves -09403427 17 n 01 rainbow 0 002 @ 13896100 n 0000 #p 09436708 n 0000 | an arc of colored light in the sky caused by refraction of the sun's rays by rain -09403581 17 n 01 Rakaposhi 0 002 @i 09360122 n 0000 #p 09323824 n 0000 | a mountain peak in the Karakoram Range in northern Kashmir (25,560 feet high) -09403734 17 n 06 range 0 mountain_range 0 range_of_mountains 0 chain 1 mountain_chain 0 chain_of_mountains 0 058 @ 09287968 n 0000 ~i 09187923 n 0000 ~i 09188094 n 0000 ~i 09192280 n 0000 ~i 09192708 n 0000 ~i 09194357 n 0000 ~i 09194710 n 0000 ~i 09196611 n 0000 ~i 09200874 n 0000 ~i 09201301 n 0000 ~i 09210346 n 0000 ~i 09211735 n 0000 ~i 09213076 n 0000 ~i 09219078 n 0000 ~i 09222880 n 0000 ~i 09224325 n 0000 ~i 09233284 n 0000 ~i 09236423 n 0000 ~i 09237076 n 0000 ~i 09238425 n 0000 ~i 09238674 n 0000 ~i 09248477 n 0000 ~i 09261604 n 0000 ~i 09268592 n 0000 ~i 09292545 n 0000 ~i 09293917 n 0000 ~i 09294413 n 0000 ~i 09295576 n 0000 ~i 09303647 n 0000 ~i 09304164 n 0000 ~i 09323824 n 0000 ~i 09327881 n 0000 %p 09348460 n 0000 ~i 09352108 n 0000 ~i 09361816 n 0000 ~i 09365443 n 0000 ~i 09382362 n 0000 ~i 09384223 n 0000 %p 09386842 n 0000 ~i 09401474 n 0000 ~i 09408795 n 0000 ~i 09416570 n 0000 ~i 09418484 n 0000 ~i 09423379 n 0000 ~i 09425159 n 0000 ~i 09429934 n 0000 ~i 09434345 n 0000 ~i 09434469 n 0000 ~i 09434661 n 0000 ~i 09434845 n 0000 ~i 09435065 n 0000 ~i 09445088 n 0000 ~i 09453288 n 0000 ~i 09456860 n 0000 ~i 09458587 n 0000 ~i 09460888 n 0000 ~i 09464652 n 0000 ~i 09467185 n 0000 | a series of hills or mountains; "the valley was between two ranges of hills"; "the plains lay just beyond the mountain range" -09405078 17 n 01 rangeland 0 001 @ 09335240 n 0000 | land suitable for grazing livestock -09405169 17 n 04 Ranier 0 Mount_Ranier 0 Mt._Ranier 0 Mount_Tacoma 0 003 @i 09360122 n 0000 #p 09237076 n 0000 #p 09152944 n 0000 | a mountain peak in central Washington; highest peak in the Cascade Range; (14,410 feet high) -09405396 17 n 01 rapid 0 002 @ 09476331 n 0000 #p 09411430 n 0000 | a part of a river where the current is very fast -09405515 17 n 02 Rappahannock 0 Rappahannock_River 0 002 @i 09411430 n 0000 #p 09148970 n 0000 | a river that flows across eastern Virginia into the Tidewater region -09405683 17 n 01 rathole 0 001 @ 09304465 n 0000 | a hole (as in the wall of a building) made by rats -09405787 17 n 01 ravine 0 003 @ 09468604 n 0000 ~ 09233446 n 0000 ~ 09290444 n 0000 | a deep narrow steep-sided valley (especially one formed by running water) -09405949 17 n 02 Red 0 Red_River 0 004 @i 09411430 n 0000 #p 09141526 n 0000 #p 09131654 n 0000 #p 09090825 n 0000 | a tributary of the Mississippi River that flows eastward from Texas along the southern boundary of Oklahoma and through Louisiana -09406198 17 n 02 red_dwarf 0 red_dwarf_star 0 002 @ 09444100 n 0000 ~ 09281252 n 0000 | a small, old, relatively cool star; approximately 100 times the mass of Jupiter -09406368 17 n 02 red_giant 0 red_giant_star 0 001 @ 09444100 n 0000 | a large, old, luminous star; has a relatively low surface temperature and a diameter large relative to the sun -09406551 17 n 01 Red_Sea 0 004 @i 09426788 n 0000 #p 09311259 n 0000 %p 09297240 n 0000 %p 09299727 n 0000 | a long arm of the Indian Ocean between northeast Africa and Arabia; linked to the Mediterranean at the north end by the Suez Canal -09406793 17 n 01 reef 0 003 @ 09409512 n 0000 + 00692548 a 0101 ~ 09256479 n 0000 | a submerged ridge of rock or coral near the surface of the water -09406944 17 n 01 Regulus 0 002 @i 09444100 n 0000 #m 09337833 n 0000 | the brightest star in Leo -09407043 17 n 01 relaxer 0 003 @ 09190918 n 0000 + 00419685 v 0101 + 00025654 v 0101 | any agent that produces relaxation; "music is a good relaxer" -09407194 17 n 01 relict 0 001 @ 09287968 n 0000 | geological feature that is a remnant of a pre-existing formation after other parts have disappeared -09407346 17 n 01 remains 0 004 @ 00002684 n 0000 ;u 06295235 n 0000 ~ 09203677 n 0000 ~ 09284589 n 0000 | any object that is left unused or still extant; "I threw out the remains of my dinner" -09407541 17 n 02 repressor 0 represser 0 001 @ 09190918 n 0000 | an agent that represses -09407632 17 n 02 Republican 0 Republican_River 0 004 @i 09411430 n 0000 #p 09067277 n 0000 #p 09109444 n 0000 #p 09087599 n 0000 | a tributary of the Kansas River that flows from eastern Colorado eastward through Nebraska and Kansas -09407867 17 n 02 reservoir 0 source 0 001 @ 00002452 n 0000 | anything (a person or animal or plant or substance) in which an infectious agent normally lives and multiplies; "an infectious agent depends on a reservoir for its survival" -09408105 17 n 01 restriction_fragment 0 001 @ 09285254 n 0000 | the fragment of DNA that is produced by cleaving DNA with a restriction enzyme -09408250 17 n 03 retardant 0 retardent 0 retardation 0 002 @ 09190918 n 0000 + 00438752 v 0301 | any agent that retards or delays or hinders; "flame-retardant" -09408412 17 n 01 Reticulum 0 001 @i 09252970 n 0000 | a small constellation in the southern hemisphere near Dorado and Hydrus -09408540 17 n 03 Rhine 0 Rhine_River 0 Rhein 0 005 @i 09411430 n 0000 #p 09031653 n 0000 #p 08766988 n 0000 #p 08929922 n 0000 #p 08949093 n 0000 | a major European river carrying more traffic than any other river in the world; flows into the North Sea -09408795 17 n 01 Rhodope_Mountains 0 001 @i 09403734 n 0000 | a mountain range in the Balkan peninsula in southeastern Europe; extends along the border between Greece and Bulgaria -09408977 17 n 02 Rhone 0 Rhone_River 0 003 @i 09411430 n 0000 #p 09031653 n 0000 #p 08929922 n 0000 | a major French river; flows into the Mediterranean near Marseilles; "the valley of the Rhone is famous for its vineyards" -09409203 17 n 02 ribbon 0 thread 0 005 @ 00002684 n 0000 + 02413851 a 0205 + 01882814 v 0203 + 02414749 a 0102 ~ 09223591 n 0000 | any long object resembling a thin line; "a mere ribbon of land"; "the lighted ribbon of traffic"; "from the air the road was a grey thread"; "a thread of smoke climbed upward" -09409512 17 n 01 ridge 0 009 @ 09366317 n 0000 + 02689730 v 0101 ~ 09213434 n 0000 ~ 09214060 n 0000 ~ 09270735 n 0000 ~ 09274305 n 0000 ~ 09337253 n 0000 ~ 09406793 n 0000 ~ 09411295 n 0000 | a long narrow natural elevation or striation -09409752 17 n 02 ridge 1 ridgeline 0 004 @ 09287968 n 0000 + 02689730 v 0101 ~ 09205509 n 0000 ~ 09304376 n 0000 | a long narrow range of hills -09409898 17 n 01 ridge 2 002 @ 09287968 n 0000 ~i 09354283 n 0000 | a long narrow natural elevation on the floor of the ocean -09410026 17 n 01 rift 0 001 @ 09258715 n 0000 | a narrow fissure in rock -09410101 17 n 01 rift 1 001 @ 09379111 n 0000 | a gap between cloud masses; "the sun shone through a rift in the clouds" -09410224 17 n 01 rift_valley 0 002 @ 09468604 n 0000 ~i 09293340 n 0000 | a valley with steep sides; formed by a rift in the earth's crust -09410365 17 n 02 Rigel 0 Beta_Orionis 0 001 @i 09221070 n 0000 | the brightest star in Orion -09410460 17 n 01 rill 1 001 @ 09241247 n 0000 | a small channel (as one formed by soil erosion) -09410558 17 n 03 Rio_de_la_Plata 0 La_Plata 0 Plata_River 0 003 @i 09274500 n 0000 #p 08711974 n 0000 #p 09160295 n 0000 | an estuary between Argentina and Uruguay -09410724 17 n 02 Rio_Grande 0 Rio_Bravo 0 003 @i 09411430 n 0000 #p 09044862 n 0000 #p 08740875 n 0000 | a North American river; boundary between the United States and Mexico; flows into Gulf of Mexico -09410928 17 n 05 rip 0 rent 0 snag 0 split 0 tear 0 005 @ 09379111 n 0000 + 01556346 v 0501 + 01573515 v 0501 + 01556572 v 0402 + 01573276 v 0102 | an opening made forcibly as by pulling apart; "there was a rip in his pants"; "she had snags in her stockings" -09411189 17 n 01 riparian_forest 0 001 @ 09284015 n 0000 | woodlands along the banks of stream or river -09411295 17 n 01 ripple_mark 0 001 @ 09409512 n 0000 | one of a series of small ridges produced in sand by water currents or by wind -09411430 17 n 01 river 0 212 @ 09448361 n 0000 #p 09476011 n 0000 -c 02829696 n 0000 -c 05123935 n 0000 -c 08542634 n 0000 ~i 09186064 n 0000 ~i 09186709 n 0000 ~i 09187743 n 0000 ~i 09191707 n 0000 ~i 09191875 n 0000 ~i 09192973 n 0000 ~i 09195372 n 0000 ~i 09196103 n 0000 ~i 09197432 n 0000 ~i 09200649 n 0000 ~i 09202810 n 0000 ~i 09203217 n 0000 ~i 09203481 n 0000 ~i 09205890 n 0000 ~i 09206375 n 0000 ~i 09206693 n 0000 ~i 09211944 n 0000 ~i 09212151 n 0000 ~i 09220046 n 0000 ~i 09220574 n 0000 -c 09225146 n 0000 ~i 09228144 n 0000 ~i 09228619 n 0000 ~i 09231361 n 0000 ~i 09231587 n 0000 ~i 09231890 n 0000 ~i 09234491 n 0000 -c 09241247 n 0000 ~i 09241712 n 0000 ~i 09242037 n 0000 ~i 09242514 n 0000 ~i 09244972 n 0000 ~i 09246660 n 0000 ~i 09247942 n 0000 ~i 09248724 n 0000 ~i 09249418 n 0000 ~i 09250016 n 0000 ~i 09250678 n 0000 ~i 09252078 n 0000 ~i 09252273 n 0000 ~i 09255921 n 0000 ~i 09261138 n 0000 ~i 09263087 n 0000 ~i 09263479 n 0000 ~i 09264116 n 0000 ~i 09265134 n 0000 ~i 09266052 n 0000 ~i 09268236 n 0000 ~i 09268778 n 0000 ~i 09271415 n 0000 ~i 09271558 n 0000 ~i 09272595 n 0000 %p 09274500 n 0000 ~i 09274739 n 0000 ~i 09281545 n 0000 ~i 09284433 n 0000 ~i 09285128 n 0000 ~i 09286630 n 0000 ~i 09286843 n 0000 ~i 09287124 n 0000 ~i 09288946 n 0000 ~i 09291185 n 0000 ~i 09294066 n 0000 ~i 09306031 n 0000 ~i 09306257 n 0000 ~i 09306840 n 0000 ~i 09309666 n 0000 ~i 09310314 n 0000 ~i 09311710 n 0000 ~i 09312231 n 0000 ~i 09315870 n 0000 ~i 09316066 n 0000 ~i 09316312 n 0000 ~i 09320985 n 0000 ~i 09321180 n 0000 ~i 09321901 n 0000 ~i 09323085 n 0000 ~i 09323470 n 0000 ~i 09324474 n 0000 ~i 09326139 n 0000 ~i 09326467 n 0000 ~i 09328148 n 0000 ~i 09337531 n 0000 ~i 09337686 n 0000 ~i 09338453 n 0000 ~i 09339512 n 0000 ~i 09340203 n 0000 ~i 09340644 n 0000 ~i 09340935 n 0000 ~i 09341145 n 0000 ~i 09342937 n 0000 ~i 09344863 n 0000 ~i 09345127 n 0000 ~i 09345265 n 0000 ~i 09350524 n 0000 ~i 09351647 n 0000 ~i 09353437 n 0000 ~i 09354780 n 0000 ~i 09356080 n 0000 ~i 09356320 n 0000 ~i 09356639 n 0000 ~i 09356929 n 0000 ~i 09357580 n 0000 ~i 09359150 n 0000 ~i 09363420 n 0000 ~i 09363620 n 0000 ~i 09364778 n 0000 ~i 09364954 n 0000 ~i 09367827 n 0000 ~i 09368479 n 0000 ~i 09369844 n 0000 ~i 09370168 n 0000 ~i 09370552 n 0000 ~i 09371151 n 0000 ~i 09371360 n 0000 ~i 09371816 n 0000 ~i 09373716 n 0000 ~i 09375891 n 0000 ~i 09376979 n 0000 ~i 09377315 n 0000 ~i 09379705 n 0000 ~i 09379938 n 0000 ~i 09380299 n 0000 ~i 09380588 n 0000 ~i 09380817 n 0000 ~i 09381048 n 0000 ~i 09384921 n 0000 ~i 09385416 n 0000 ~i 09387880 n 0000 ~i 09388121 n 0000 ~i 09388318 n 0000 ~i 09389601 n 0000 ~i 09392507 n 0000 ~i 09395592 n 0000 ~i 09396150 n 0000 ~i 09398217 n 0000 ~i 09401340 n 0000 %p 09405396 n 0000 ~i 09405515 n 0000 ~i 09405949 n 0000 ~i 09407632 n 0000 ~i 09408540 n 0000 ~i 09408977 n 0000 ~i 09410724 n 0000 ~i 09417560 n 0000 ~i 09418059 n 0000 ~i 09418169 n 0000 ~i 09418331 n 0000 ~i 09418629 n 0000 ~i 09419281 n 0000 ~i 09419536 n 0000 ~i 09419783 n 0000 ~i 09420030 n 0000 ~i 09420423 n 0000 ~i 09421191 n 0000 ~i 09422751 n 0000 ~i 09423617 n 0000 ~i 09423754 n 0000 ~i 09424865 n 0000 ~i 09425835 n 0000 ~i 09429752 n 0000 ~i 09430771 n 0000 ~i 09430990 n 0000 ~i 09431133 n 0000 ~i 09431409 n 0000 ~i 09431744 n 0000 -c 09433442 n 0000 ~i 09438554 n 0000 ~i 09441725 n 0000 ~i 09449773 n 0000 ~i 09450553 n 0000 ~i 09451864 n 0000 ~i 09452017 n 0000 ~i 09453566 n 0000 ~i 09453887 n 0000 ~i 09455640 n 0000 ~i 09457020 n 0000 ~i 09457851 n 0000 ~i 09458791 n 0000 ~i 09459393 n 0000 ~i 09459557 n 0000 ~i 09461515 n 0000 ~i 09462049 n 0000 ~i 09463362 n 0000 ~i 09463547 n 0000 ~i 09464805 n 0000 ~i 09467921 n 0000 ~i 09471481 n 0000 ~i 09472135 n 0000 ~i 09473239 n 0000 ~i 09473397 n 0000 ~i 09473558 n 0000 ~i 09473808 n 0000 %p 09475292 n 0000 ~i 09477718 n 0000 ~i 09478355 n 0000 ~i 09479635 n 0000 ~i 09480556 n 0000 ~i 09481285 n 0000 ~i 09481523 n 0000 ~i 09481754 n 0000 ~i 09482131 n 0000 ~i 09482330 n 0000 ~i 09482916 n 0000 ~i 09483129 n 0000 ~i 09483340 n 0000 -c 00794383 v 0000 | a large natural stream of water (larger than a creek); "the river was navigable for 50 miles" -09415584 17 n 02 riverbank 0 riverside 0 001 @ 09213565 n 0000 | the bank of a river -09415671 17 n 02 riverbed 0 river_bottom 0 001 @ 09217638 n 0000 | a channel occupied (or formerly occupied) by a river -09415793 17 n 01 river_boulder 0 001 @ 09227839 n 0000 | a boulder that has been carried by a river to a place remote from its place of origin -09415938 17 n 05 rivulet 0 rill 0 run 0 runnel 0 streamlet 0 003 @ 09448361 n 0000 + 09448361 n 0501 + 02066939 v 0301 | a small stream -09416076 17 n 02 rock 1 stone 0 021 @ 00019128 n 0000 + 02241988 a 0204 + 01323518 v 0201 + 02241988 a 0101 ~ 09186928 n 0000 ~ 09218044 n 0000 ~ 09227839 n 0000 ~ 09230768 n 0000 ~ 09244191 n 0000 ~ 09246292 n 0000 ~ 09260466 n 0000 ~ 09314964 n 0000 ~ 09381242 n 0000 ~ 09388023 n 0000 ~ 09390680 n 0000 ~ 09435232 n 0000 ~ 09445435 n 0000 ~ 09460046 n 0000 ~ 09474663 n 0000 ~ 09478210 n 0000 ~ 09481120 n 0000 | a lump or mass of hard consolidated mineral matter; "he threw a rock at me" -09416570 17 n 02 Rockies 0 Rocky_Mountains 0 007 @i 09403734 n 0000 #p 09372504 n 0000 %p 09362050 n 0000 %p 09391996 n 0000 %p 09423379 n 0000 %p 09429934 n 0000 %p 09478047 n 0000 | the chief mountain range of western North America; extends from British Columbia to northern New Mexico; forms the continental divide -09416890 17 n 01 roof 0 002 @ 09257949 n 0000 #p 09238926 n 0000 | the inner top surface of a covered area or hollow space; "the roof of the cave was very high"; "I could see the roof of the bear's mouth" -09417097 17 n 01 round 0 001 @ 09387222 n 0000 | the course along which communications spread; "the story is going the rounds in Washington" -09417240 17 n 01 Ross_Sea 0 002 @i 09426788 n 0000 #p 09198106 n 0000 | an arm of the southern Pacific Ocean in Antarctica -09417365 17 n 01 row 0 001 @ 09449510 n 0000 | a long continuous strip (usually running horizontally); "a mackerel sky filled with rows of clouds"; "rows of barbed wire protected the trenches" -09417560 17 n 02 Ruhr 0 Ruhr_River 0 002 @i 09411430 n 0000 #p 08766988 n 0000 | a tributary of the Rhine -09417668 17 n 03 Rushmore 0 Mount_Rushmore 0 Mt._Rushmore 0 003 @i 09360122 n 0000 #p 09222880 n 0000 #p 09138935 n 0000 | a mountain in the Black Hills of South Dakota; the likenesses of Washington and Jefferson and Lincoln and Roosevelt are carved on it -09417926 17 n 02 Russell's_body 0 cancer_body 0 001 @ 09310806 n 0000 | an inclusion body found in plasma cells in cases of cancer -09418059 17 n 01 Russian_River 0 002 @i 09411430 n 0000 #p 09060768 n 0000 | a river in northern California -09418169 17 n 02 Saale 0 Saale_River 0 002 @i 09411430 n 0000 #p 08766988 n 0000 | a river that rises in central Germany and flows north to join the Elbe River -09418331 17 n 02 Sabine 0 Sabine_River 0 002 @i 09411430 n 0000 #p 09141526 n 0000 | a river in eastern Texas that flows south into the Gulf of Mexico -09418484 17 n 01 Sacramento_Mountains 0 002 @i 09403734 n 0000 #p 09114696 n 0000 | mountain range in New Mexico to the east of the Rio Grande -09418629 17 n 01 Sacramento_River 0 002 @i 09411430 n 0000 #p 09060768 n 0000 | a river in northern California rising near Mount Shasta and flowing south to the San Francisco Bay -09418810 17 n 02 saddleback 0 saddle 0 001 @ 09386842 n 0000 | a pass or ridge that slopes gently between two peaks (is shaped like a saddle) -09418954 17 n 01 Sagitta 0 001 @i 09252970 n 0000 | a small constellation in the northern hemisphere between Cygnus and Aquila and crossed by the Milky Way -09419112 17 n 01 Sagittarius 0 002 @i 09252970 n 0000 #p 08685188 n 0000 | a large zodiacal constellation in the southern hemisphere; between Scorpius and Capricornus -09419281 17 n 04 Saint_Francis 0 Saint_Francis_River 0 St._Francis 0 St._Francis_River 0 003 @i 09411430 n 0000 #p 09105821 n 0000 #p 09059274 n 0000 | a tributary of the Mississippi River that rises in Missouri and flows southeastward through Arkansas -09419536 17 n 04 Saint_John 0 Saint_John_River 0 St._John 0 St._John_River 0 003 @i 09411430 n 0000 #p 09092497 n 0000 #p 08824484 n 0000 | a river that rises in Maine and flows northeastward through New Brunswick to empty into the Bay of Fundy -09419783 17 n 04 Saint_Johns 0 Saint_Johns_River 0 St._Johns 0 St._Johns_River 0 002 @i 09411430 n 0000 #p 09071690 n 0000 | a river in northeastern Florida that flows northward to Jacksonville and then eastward to empty into the Atlantic Ocean -09420030 17 n 04 Saint_Lawrence 0 Saint_Lawrence_River 0 St._Lawrence 0 St._Lawrence_River 0 003 @i 09411430 n 0000 #p 09044862 n 0000 #p 08820121 n 0000 | a North American river; flows into the Gulf of Saint Lawrence and the North Atlantic -09420273 17 n 01 Sajama 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08852843 n 0000 | a mountain peak in the Andes in Bolivia (21,391 feet high) -09420423 17 n 02 Salmon 0 Salmon_River 0 002 @i 09411430 n 0000 #p 09081213 n 0000 | a tributary of the Snake River in Idaho -09420550 17 n 02 salt_flat 0 salt_plain 0 001 @ 09281411 n 0000 | a flat expanse of salt left by the evaporation of a body of salt water -09420689 17 n 02 salt_lick 0 lick 0 001 @ 09428967 n 0000 | a salt deposit that animals regularly lick -09420794 17 n 01 salt_marsh 0 001 @ 09347779 n 0000 | low-lying wet land that is frequently flooded with saltwater -09420911 17 n 01 Salton_Sea 0 002 @i 09328904 n 0000 #p 09060768 n 0000 | a saltwater lake in southeastern California -09421031 17 n 01 saltpan 0 001 @ 09215437 n 0000 | a shallow basin in a desert region; contains salt and gypsum that was deposited by an evaporated salt lake -09421191 17 n 02 Sambre 0 Sambre_River 0 003 @i 09411430 n 0000 #p 08929922 n 0000 #p 08849753 n 0000 | a river in western Europe that rises in northern France and flows generally east into Belgium where it joins the Meuse at Namur -09421425 17 n 01 sample 0 003 @ 00019128 n 0000 ~ 05266879 n 0000 ~ 09256895 n 0000 | all or part of a natural object that is collected and preserved as an example of its class -09421604 17 n 01 San_Andreas_Fault 0 002 @i 09278537 n 0000 #p 09060768 n 0000 | a major geological fault in California; runs from San Diego to San Francisco; the source of serious earthquakes -09421799 17 n 01 sandbank 0 002 @ 09213434 n 0000 ~ 09433312 n 0000 | a submerged bank of sand near a shore or in a river; can be exposed at low tide -09421951 17 n 02 sandbar 0 sand_bar 0 002 @ 09214060 n 0000 %s 15019030 n 0000 | a bar of sand -09422048 17 n 01 San_Diego_Bay 0 003 @i 09215664 n 0000 #p 09065328 n 0000 #p 09382990 n 0000 | a bay of the Pacific in southern California -09422190 17 n 01 sandpit 0 001 @ 09393108 n 0000 | a large pit in sandy ground from which sand is dug -09422294 17 n 01 San_Fernando_Valley 0 002 @i 09468604 n 0000 #p 09060768 n 0000 | a fertile valley in southern California to the north of Los Angeles; includes many residential communities -09422486 17 n 01 San_Francisco_Bay 0 003 @i 09215664 n 0000 #p 09065557 n 0000 #p 09382990 n 0000 | a bay of the Pacific in western California -09422631 17 n 01 sanitary_landfill 0 001 @ 09335809 n 0000 | a low area where waste is buried between layers of earth -09422751 17 n 01 San_Joaquin_River 0 002 @i 09411430 n 0000 #p 09060768 n 0000 | a river in central California that rises in the Sierra Nevada and flows northwest to form a large delta with the Sacramento River -09422964 17 n 01 San_Joaquin_Valley 0 002 @i 09468604 n 0000 #p 09060768 n 0000 | a vast valley in central California known for its rich farmland -09423112 17 n 01 San_Juan_Hill 0 002 @i 09303008 n 0000 #p 08750151 n 0000 | a hill in eastern Cuba (near Santiago de Cuba) that was captured during the Spanish-American War; "Theodore Roosevelt and his Rough Riders became famous for their charge up San Juan Hill" -09423379 17 n 01 San_Juan_Mountains 0 006 @i 09403734 n 0000 #p 09416570 n 0000 #p 09067277 n 0000 %p 09301461 n 0000 %p 09465290 n 0000 %p 09479811 n 0000 | a mountain range in southwestern Colorado that is part of the Rocky Mountains -09423617 17 n 01 Sao_Francisco 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a river in eastern Brazil flowing into the Atlantic Ocean -09423754 17 n 02 Saone 0 Saone_River 0 002 @i 09411430 n 0000 #p 08929922 n 0000 | a river in eastern France; rises in Lorraine and flows south to become the chief tributary of the Rhone -09423943 17 n 01 Sargasso_Sea 0 002 @i 09426788 n 0000 #p 09209263 n 0000 | a vast area of the North Atlantic from the West Indies to the Azores that is dense with gulfweed -09424118 17 n 02 Saronic_Gulf 0 Gulf_of_Aegina 0 002 @i 09313716 n 0000 #p 08780881 n 0000 | a gulf of the Aegean on the southeastern coast of Greece -09424270 17 n 01 satellite 0 007 @ 09239740 n 0000 ~i 09264021 n 0000 ~ 09285979 n 0000 ~ 09358226 n 0000 ~i 09358358 n 0000 ~i 09390873 n 0000 ~i 09459269 n 0000 | any celestial body orbiting around a planet or star -09424489 17 n 01 satisfier 0 004 @ 09190918 n 0000 + 02671880 v 0101 + 01816431 v 0101 + 01183573 v 0102 | any agent capable of producing satisfaction -09424642 17 n 01 Saturn 0 004 @i 09322087 n 0000 @i 09450866 n 0000 @i 09381480 n 0000 #m 09439433 n 0000 | a giant planet that is surrounded by three planar concentric rings of ice particles; the 6th planet from the sun -09424865 17 n 02 Savannah 0 Savannah_River 0 002 @i 09411430 n 0000 #p 09137869 n 0000 | a river in South Carolina that flows southeast to the Atlantic -09425019 17 n 01 sawpit 0 001 @ 09393108 n 0000 | a pit over which lumber is positioned to be sawed by two men with a long two-handed saw -09425159 17 n 01 Sayan_Mountains 0 002 @i 09403734 n 0000 #p 09005712 n 0000 | a range of mountains in southern Siberia to the west of Lake Baikal; contain important mineral deposits -09425344 17 n 01 scablands 0 004 @ 09335240 n 0000 #p 09152944 n 0000 ;u 06295235 n 0000 ;c 06115701 n 0000 | (geology) flat elevated land with poor soil and little vegetation that is scarred by dry channels of glacial origin (especially in eastern Washington) -09425607 17 n 03 scale 0 scurf 1 exfoliation 0 006 @ 09222051 n 0000 + 01260159 v 0301 + 01263336 v 0301 + 01513838 v 0301 ~ 09262798 n 0000 ~ 09262955 n 0000 | a thin flake of dead epidermis shed from the surface of the skin -09425835 17 n 02 Scheldt 0 Scheldt_River 0 003 @i 09411430 n 0000 #p 08929922 n 0000 #p 08849753 n 0000 | a river that rises in France and flows northeast across Belgium and empties into the North Sea -09426038 17 n 01 scintilla 0 002 @ 09386422 n 0000 + 02764765 v 0103 | a sparkling glittering particle -09426143 17 n 02 Scorpius 0 Scorpio 0 003 @i 09252970 n 0000 #p 08685188 n 0000 %m 09198997 n 0000 | a large zodiacal constellation between Libra and Sagittarius -09426307 17 n 01 scraping 0 002 @ 09285254 n 0000 ;u 06295235 n 0000 | (usually plural) a fragment scraped off of something and collected; "they collected blood scrapings for analysis" -09426494 17 n 01 Sculptor 0 001 @i 09252970 n 0000 | a faint constellation in the southern hemisphere near Phoenix and Cetus -09426621 17 n 01 scurf 0 003 @ 09222051 n 0000 ;c 06066555 n 0000 + 02793681 a 0101 | (botany) a covering that resembles scales or bran that covers some plant parts -09426788 17 n 01 sea 0 045 @ 09225146 n 0000 #p 09307902 n 0000 ~i 09188383 n 0000 ~i 09188609 n 0000 ~i 09202405 n 0000 ~i 09202603 n 0000 ~i 09212690 n 0000 ~i 09213254 n 0000 ~i 09214422 n 0000 %p 09215664 n 0000 ~i 09217508 n 0000 ~i 09218782 n 0000 ~i 09221900 n 0000 ~i 09223325 n 0000 ~i 09235894 n 0000 ~i 09244831 n 0000 ~i 09256663 n 0000 ~i 09271291 n 0000 ~i 09294285 n 0000 %p 09296121 n 0000 ~i 09307031 n 0000 ~i 09313454 n 0000 %p 09313716 n 0000 ~i 09315455 n 0000 ~i 09315624 n 0000 ~i 09324118 n 0000 ~i 09328596 n 0000 ~i 09336052 n 0000 ~i 09339272 n 0000 ~i 09347208 n 0000 ~i 09350045 n 0000 ~i 09374036 n 0000 ~i 09374306 n 0000 ~i 09406551 n 0000 ~i 09417240 n 0000 ~i 09423943 n 0000 ~i 09428036 n 0000 ~i 09428171 n 0000 ~i 09441107 n 0000 ~ 09441875 n 0000 ~i 09455046 n 0000 ~i 09458967 n 0000 ~i 09464962 n 0000 ~i 09477427 n 0000 ~i 09481958 n 0000 | a division of an ocean or a large body of salt water partially enclosed by land -09427752 17 n 01 seamount 0 002 @ 09359803 n 0000 ~ 09300559 n 0000 | an underwater mountain rising above the ocean floor -09427876 17 n 03 Sea_of_Azov 0 Sea_of_Azof 0 Sea_of_Azoff 0 002 @i 09215664 n 0000 #p 09223325 n 0000 | a bay of the Black Sea between Russia and the Ukraine -09428036 17 n 02 Sea_of_Japan 0 East_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | an arm of the Pacific between China and Japan -09428171 17 n 01 Sea_of_Okhotsk 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | an arm of the Pacific to the east of Asia -09428293 17 n 04 seashore 0 coast 0 seacoast 0 sea-coast 0 013 @ 09433442 n 0000 + 02698782 a 0201 + 00462909 a 0201 ~i 08503477 n 0000 ~ 08596076 n 0000 ~i 08784104 n 0000 ~i 09210236 n 0000 %p 09283866 n 0000 ~i 09296695 n 0000 ~ 09335693 n 0000 ~i 09383793 n 0000 ~ 09428628 n 0000 ~ 09458269 n 0000 | the shore of a sea or ocean -09428628 17 n 02 seaside 0 seaboard 0 001 @ 09428293 n 0000 | the shore of a sea or ocean regarded as a resort -09428741 17 n 01 section 0 002 @ 09437241 n 0000 #p 04237924 n 0000 | a very thin slice (of tissue or mineral or other substance) for examination under a microscope; "sections from the left ventricle showed diseased tissue" -09428967 17 n 02 sediment 0 deposit 0 007 @ 00020827 n 0000 + 02952109 a 0101 ~ 09193282 n 0000 ~ 09269972 n 0000 ~ 09337406 n 0000 ~ 09420689 n 0000 ~ 15009192 n 0000 | matter that has been deposited by some natural process -09429194 17 n 01 Sedna 0 001 @i 09355623 n 0000 | a planetoid of rock and ice about three-quarters the size of Pluto discovered in 2003; the most distant object known to orbit around the sun -09429387 17 n 01 segment 0 007 @ 09385911 n 0000 + 01558440 v 0101 + 01563005 v 0101 ~ 02665812 n 0000 ~ 05460163 n 0000 ~ 07747455 n 0000 ~ 13129826 n 0000 | one of the parts into which something naturally divides; "a segment of an orange" -09429630 17 n 01 seif_dune 0 001 @ 09270735 n 0000 | a long and tall sand dune with a sharp crest; common in the Sahara -09429752 17 n 02 Seine 0 Seine_River 0 002 @i 09411430 n 0000 #p 08929922 n 0000 | a French river that flows through the heart of Paris and then northward into the English Channel -09429934 17 n 01 Selkirk_Mountains 0 003 @i 09403734 n 0000 #p 09416570 n 0000 #p 08822855 n 0000 | a range of the Rocky Mountains in southeastern British Columbia -09430100 17 n 02 Seneca_Lake 0 Lake_Seneca 0 002 @i 09328904 n 0000 #m 08567600 n 0000 | a glacial lake in central New York; the largest of the Finger Lakes -09430259 17 n 01 Serpens 0 001 @i 09252970 n 0000 | a constellation in the equatorial region of the northern hemisphere near Ophiuchus and Corona Borealis -09430416 17 n 03 Sete_Quedas 0 Guaira 0 Guaira_Falls 0 004 @i 09475292 n 0000 #p 09384921 n 0000 #p 08853741 n 0000 #p 08978343 n 0000 | a great waterfall on the border between Brazil and Paraguay -09430615 17 n 01 seven_seas 0 001 @ 09225146 n 0000 | an informal expression for all of the oceans of the world; "the old salt had sailed the seven seas" -09430771 17 n 03 Severn 0 River_Severn 0 Severn_River 0 003 @i 09411430 n 0000 #p 08894456 n 0000 #p 08871007 n 0000 | a river in England and Wales flowing into the Bristol Channel; the longest river in Great Britain -09430990 17 n 02 Severn 1 Severn_River 1 002 @i 09411430 n 0000 #p 08827126 n 0000 | a river in Ontario that flows northeast into Hudson Bay -09431133 17 n 02 Seyhan 0 Seyhan_River 0 002 @i 09411430 n 0000 #p 09039411 n 0000 | a Turkish river flowing south southwest into the Mediterranean -09431283 17 n 01 shag 0 002 @ 09454412 n 0000 + 02428610 a 0102 | a matted tangle of hair or fiber; "the dog's woolly shag" -09431409 17 n 04 Shari 0 Shari_River 0 Chari 0 Chari_River 0 002 @i 09411430 n 0000 #p 09189411 n 0000 | an African river that flows northwest into Lake Chad -09431569 17 n 02 Shasta 0 Mount_Shasta 0 002 @i 09360122 n 0000 #p 09060768 n 0000 | a volcanic mountain peak in the Cascade Range in northern California (14,162 feet high) -09431744 17 n 01 Shenandoah_River 0 002 @i 09411430 n 0000 #p 09148970 n 0000 | a river of northern Virginia that empties into the Potomac at Harpers Ferry -09431902 17 n 02 Sherman 0 Mount_Sherman 0 002 @i 09360122 n 0000 #p 09067277 n 0000 | a peak in the Rocky Mountains in central Colorado (14,036 feet high) -09432060 17 n 01 sheet 0 001 @ 09277538 n 0000 | any broad thin expanse or surface; "a sheet of ice" -09432163 17 n 02 shelf_ice 0 ice_shelf 0 001 @ 09308398 n 0000 | ice that is attached to land but projects out to sea -09432283 17 n 01 shell 1 001 @ 09257949 n 0000 | a rigid covering that envelops an object; "the satellite is covered with a smooth shell of ice" -09432430 17 n 02 shell 2 eggshell 0 002 @ 09257949 n 0000 #p 07840804 n 0000 | the exterior covering of a bird's egg -09432549 17 n 01 Shenandoah_Valley 0 002 @i 09468604 n 0000 #p 09148970 n 0000 | a large valley between the Allegheny Mountains and the Blue Ridge Mountains in northern Virginia; site of numerous battles during the American Civil War -09432785 17 n 01 Sherwood_Forest 0 002 @i 09284015 n 0000 ;r 08871007 n 0000 | an ancient forest in central England; formerly a royal hunting ground; said to be the home of Robin Hood and his merry band -09432990 17 n 01 shiner 0 003 @ 00002684 n 0000 + 02765924 v 0102 ~ 09464486 n 0000 | something that shines (with emitted or reflected light) -09433134 17 n 02 shoal 1 shallow 0 006 @ 09225146 n 0000 + 00691696 a 0201 + 00535988 v 0201 + 00536143 v 0201 + 00535988 v 0102 + 00536143 v 0102 | a stretch of shallow water -09433312 17 n 01 shoal 2 002 @ 09421799 n 0000 + 00692548 a 0104 | a sandbank in a stretch of water that is visible at low tide -09433442 17 n 01 shore 0 011 @ 09287968 n 0000 ;c 09328904 n 0000 ;c 09376198 n 0000 ;c 09411430 n 0000 + 01981436 v 0103 + 02710981 v 0101 %p 09217230 n 0000 ~ 09332890 n 0000 ~ 09428293 n 0000 %p 09433839 n 0000 ~ 09447666 n 0000 | the land along the edge of a body of water -09433721 17 n 01 shore_boulder 0 001 @ 09227839 n 0000 | a boulder found on a shore remote from its place of origin -09433839 17 n 01 shoreline 0 002 @ 08512259 n 0000 #p 09433442 n 0000 | a boundary line between land and water -09433952 17 n 01 shortener 0 004 @ 09190918 n 0000 + 00560893 v 0101 + 00243900 v 0104 + 00316768 v 0101 | any agent that shortens; "alcohol is a great shortener of life" -09434125 17 n 02 sialolith 0 salivary_calculus 0 001 @ 09230768 n 0000 | a stone formed in the salivary gland -09434237 17 n 01 siderite 0 001 @ 09352849 n 0000 | a meteorite consisting principally of nickel and iron -09434345 17 n 01 sierra 0 001 @i 09403734 n 0000 | a range of mountains (usually with jagged peaks and irregular outline) -09434469 17 n 01 Sierra_Madre_Occidental 0 002 @i 09403734 n 0000 #p 08740875 n 0000 | a mountain range in northwestern Mexico that runs south from Arizona parallel to the Pacific coastline -09434661 17 n 01 Sierra_Madre_Oriental 0 002 @i 09403734 n 0000 #p 08740875 n 0000 | a mountain range in northeastern Mexico the runs parallel to the coastline of the Gulf of Mexico -09434845 17 n 03 Sierra_Nevada 0 Sierra_Nevada_Mountains 0 High_Sierra 0 004 @i 09403734 n 0000 #p 09060768 n 0000 %p 09268927 n 0000 %p 09479072 n 0000 | a mountain range in eastern California; contains Mount Whitney -09435065 17 n 01 Sierra_Nevada 1 002 @i 09403734 n 0000 #p 09023321 n 0000 | a mountain range in southern Spain along the Mediterranean coast to the east of Granada -09435232 17 n 01 sill 0 002 @ 09416076 n 0000 ;c 06115701 n 0000 | (geology) a flat (usually horizontal) mass of igneous rock between two layers of older sedimentary rock -09435405 17 n 02 silva 0 sylva 0 001 @ 09284015 n 0000 | the forest trees growing in a country or region -09435512 17 n 02 Sinai 0 Mount_Sinai 0 002 @i 09360122 n 0000 #p 08896645 n 0000 | a mountain peak in the southern Sinai Peninsula (7,500 feet high); it is believed to be the peak on which Moses received the Ten Commandments -09435739 17 n 03 sinkhole 0 sink 0 swallow_hole 0 001 @ 09366017 n 0000 | a depression in the ground communicating with a subterranean passage (especially in limestone) and formed by solution or by collapse of a cavern roof -09435965 17 n 04 Sirius 0 Dog_Star 0 Canicula 0 Sothis 0 003 @i 09221070 n 0000 #m 09232841 n 0000 + 02677332 a 0301 | the brightest star in the sky; in Canis Major -09436132 17 n 02 Skagens_Odde 0 Skaw 0 002 @i 09233715 n 0000 #p 08761039 n 0000 | a cape on the northernmost tip of Jutland between the Skagerrak and the Kattegatt -09436299 17 n 02 Skagerrak 0 Skagerak 0 002 @i 09446115 n 0000 #p 09374036 n 0000 | a broad strait of the North Sea between Jutland and Norway -09436444 17 n 01 ski_slope 0 001 @ 09437454 n 0000 | a snow-covered slope for skiing -09436531 17 n 01 skim 0 003 @ 09257949 n 0000 + 01261263 v 0101 + 01261018 v 0101 | a thin layer covering the surface of a liquid; "there was a thin skim of oil on the water" -09436708 17 n 01 sky 0 006 @ 09210604 n 0000 #p 09270894 n 0000 ~ 09224566 n 0000 %p 09247410 n 0000 ~ 09345002 n 0000 %p 09403427 n 0000 | the atmosphere and outer space as viewed from the earth -09436906 17 n 02 slack 0 slack_water 0 002 @ 09448945 n 0000 + 01241455 a 0101 | a stretch of water without current or movement; "suddenly they were in a slack and the water was motionless" -09437098 17 n 01 slash 0 001 @ 09334396 n 0000 | an open tract of land in a forest that is strewn with debris from logging (or fire or wind) -09437241 17 n 01 slice 0 003 @ 09385911 n 0000 + 01254477 v 0101 ~ 09428741 n 0000 | a thin flat piece cut off of some object -09437369 17 n 01 slit 0 002 @ 09258715 n 0000 + 01558883 v 0101 | a narrow fissure -09437454 17 n 03 slope 0 incline 0 side 1 015 @ 09287968 n 0000 #p 09366317 n 0000 + 02037090 v 0202 + 02037090 v 0101 ~ 09206985 n 0000 ~ 09213565 n 0000 ~ 09213828 n 0000 ~ 09233603 n 0000 ~ 09248153 n 0000 ~ 09265620 n 0000 ~ 09274152 n 0000 ~ 09303528 n 0000 ~ 09361517 n 0000 ~ 09391644 n 0000 ~ 09436444 n 0000 | an elevated geological formation; "he climbed the steep slope"; "the house was built on the side of a mountain" -09437887 17 n 01 slot 0 001 @ 09460312 n 0000 | the trail of an animal (especially a deer); "he followed the deer's slot over the soft turf to the edge of the trees" -09438055 17 n 01 slough 0 002 @ 09257949 n 0000 + 00009147 v 0105 | any outer covering that can be shed or cast off (such as the cast-off skin of a snake) -09438212 17 n 01 slough 1 001 @ 09452395 n 0000 | a stagnant swamp (especially as part of a bayou) -09438313 17 n 01 slough 2 002 @ 09225943 n 0000 + 02548066 a 0108 | a hollow filled with mud -09438408 17 n 01 Small_Magellanic_Cloud 0 001 @ 09345503 n 0000 | the smaller of the two Magellanic Clouds visible from the southern hemisphere -09438554 17 n 02 Snake 0 Snake_River 0 006 @i 09411430 n 0000 #p 09159003 n 0000 #p 09081213 n 0000 #p 09133010 n 0000 #p 09152944 n 0000 %p 09464335 n 0000 | a tributary of the Columbia River that rises in Wyoming and flows westward; discovered in 1805 by the Lewis and Clark Expedition -09438844 17 n 01 snowcap 0 001 @ 09257949 n 0000 | a covering of snow (as on a mountain peak) -09438940 17 n 01 snowdrift 0 001 @ 09270233 n 0000 | a mass of snow heaped up by the wind -09439032 17 n 01 snowfield 0 001 @ 09393605 n 0000 | a permanent wide expanse of snow -09439120 17 n 01 soap_bubble 0 001 @ 09229709 n 0000 | a bubble formed by a thin soap film -09439213 17 n 03 soapsuds 0 suds 0 lather 0 007 @ 09282724 n 0000 + 02754839 a 0301 + 00036932 v 0302 + 00512043 v 0301 + 00511855 v 0203 + 01536076 v 0201 ~ 04186051 n 0000 | the froth produced by soaps or detergents -09439433 17 n 01 solar_system 0 017 @ 08435388 n 0000 #p 08501565 n 0000 %m 09270894 n 0000 %p 09314603 n 0000 %m 09322454 n 0000 %m 09327538 n 0000 %m 09347445 n 0000 %m 09351408 n 0000 %m 09355623 n 0000 %m 09368699 n 0000 %m 09381480 n 0000 %m 09394007 n 0000 %m 09395899 n 0000 %m 09424642 n 0000 %m 09450163 n 0000 %m 09467417 n 0000 %m 09470762 n 0000 | the sun with the celestial bodies that revolve around it in its gravitational field -09439879 17 n 01 Solent 0 002 @i 09446115 n 0000 #p 09273447 n 0000 | a strait of the English Channel between the coast of Hampshire and the Isle of Wight -09440036 17 n 01 Solway_Firth 0 002 @i 09280380 n 0000 #p 08858942 n 0000 | a large firth on the west coast of Britain between England and Scotland -09440186 17 n 01 sound 0 005 @ 09225146 n 0000 + 00491689 v 0102 ~i 09343422 n 0000 ~i 09400667 n 0000 ~i 09402553 n 0000 | a large ocean inlet or deep bay; "the main body of the sound ran parallel to the coast" -09440400 17 n 01 South_America 0 022 @i 09254614 n 0000 #p 08682389 n 0000 #p 08682575 n 0000 #p 08652551 n 0000 #p 09195615 n 0000 + 02928728 a 0101 %p 08702402 n 0000 %p 08711974 n 0000 %p 08720481 n 0000 %p 08732116 n 0000 %p 08776687 n 0000 %p 08852843 n 0000 %p 08853741 n 0000 %p 08948155 n 0000 %p 08978343 n 0000 %p 08979054 n 0000 -r 09022831 n 0000 %p 09160295 n 0000 %p 09161615 n 0000 %p 09161803 n 0000 %p 09467921 n 0000 %m 09731571 n 0000 | a continent in the western hemisphere connected to North America by the Isthmus of Panama -09440948 17 n 01 South_Atlantic 0 003 @i 09385911 n 0000 #p 09209263 n 0000 %p 08711143 n 0000 | that part of the Atlantic Ocean to the south of the equator -09441107 17 n 01 South_China_Sea 0 006 @i 09426788 n 0000 #p 09382990 n 0000 %p 08730354 n 0000 %p 08730550 n 0000 %p 08997310 n 0000 %p 09300030 n 0000 | a tropical arm of the Pacific Ocean near southeastern Asia subject to frequent typhoons -09441352 17 n 03 Southern_Cross 0 Crux 0 Crux_Australis 0 004 @i 09252970 n 0000 #m 09354984 n 0000 %m 09193933 n 0000 %m 09219467 n 0000 | a small conspicuous constellation in the southern hemisphere in the Milky Way near Centaurus -09441587 17 n 01 South_Pacific 0 002 @i 09385911 n 0000 #p 09382990 n 0000 | that part of the Pacific Ocean to the south of the equator -09441725 17 n 02 South_Platte 0 South_Platte_River 0 003 @i 09411430 n 0000 #p 09067277 n 0000 #p 09109444 n 0000 | a tributary of the Platte River -09441875 17 n 01 South_Sea 0 001 @ 09426788 n 0000 | any sea to the south of the equator (but especially the South Pacific) -09442001 17 n 01 South_Sea_Islands 0 001 @ 09316454 n 0000 | any islands in the southern or southwestern of central parts of the Pacific Ocean -09442146 17 n 02 spall 0 spawl 0 001 @ 09285254 n 0000 | a fragment broken off from the edge or face of stone or ore and having at least one thin edge; "a truck bearing a mound of blue spalls" -09442341 17 n 01 spark 0 002 @ 09285254 n 0000 + 02766687 v 0101 | a small fragment of a burning substance thrown out by burning material or by friction -09442496 17 n 01 Spica 0 002 @i 09444100 n 0000 #m 09471976 n 0000 | the brightest star in Virgo -09442595 17 n 02 spit 0 tongue 0 002 @ 09233715 n 0000 %s 15019030 n 0000 | a narrow strip of land that juts out into the sea -09442723 17 n 01 splint 0 001 @ 09385137 n 0000 | a thin sliver of wood; "he lit the fire with a burning splint" -09442838 17 n 02 splinter 0 sliver 1 008 @ 09222051 n 0000 + 02801349 a 0202 + 00144314 v 0201 + 00337903 v 0202 + 00709625 a 0101 + 02801349 a 0101 + 00337903 v 0101 + 02469274 v 0102 | a small thin sharp bit or wood or glass or metal; "he got a splinter in his finger"; "it broke into slivers" -09443136 17 n 01 split 1 002 @ 09258715 n 0000 + 00309310 v 0102 | a lengthwise crack in wood; "he inserted the wedge into a split in the log" -09443281 17 n 01 spoor 0 001 @ 09460312 n 0000 | the trail left by a person or an animal; what the hunter follows in pursuing game; "the hounds followed the fox's spoor" -09443453 17 n 05 spring 0 fountain 0 outflow 0 outpouring 0 natural_spring 0 004 @ 09287968 n 0000 ~ 09284917 n 0000 ~ 09288635 n 0000 ~ 09305898 n 0000 | a natural flow of ground water -09443641 17 n 01 spume 0 003 @ 09282724 n 0000 + 00511855 v 0102 + 02276305 a 0107 | foam or froth on the sea -09443753 17 n 01 stalactite 0 003 @ 13899804 n 0000 #p 09238926 n 0000 %s 14936630 n 0000 | a cylinder of calcium carbonate hanging from the roof of a limestone cave -09443921 17 n 01 stalagmite 0 003 @ 13899804 n 0000 #p 09238926 n 0000 %s 14936630 n 0000 | a cylinder of calcium carbonate projecting upward from the floor of a limestone cave -09444100 17 n 01 star 0 029 @ 09239740 n 0000 #m 08271042 n 0000 #m 09252970 n 0000 ;c 06095022 n 0000 + 02299437 a 0101 ~i 09193933 n 0000 ~i 09219349 n 0000 ~i 09219467 n 0000 ~ 09221070 n 0000 ~i 09265392 n 0000 ~i 09265492 n 0000 ~ 09280995 n 0000 ~ 09288769 n 0000 ~ 09342563 n 0000 ~ 09363064 n 0000 ~ 09369692 n 0000 ~ 09374493 n 0000 ~i 09397150 n 0000 ~ 09406198 n 0000 ~ 09406368 n 0000 ~i 09406944 n 0000 ~i 09442496 n 0000 ~i 09445780 n 0000 ~i 09450163 n 0000 ~ 09450454 n 0000 ~ 09450708 n 0000 ~ 09451237 n 0000 ~ 09469152 n 0000 ~ 09478569 n 0000 | (astronomy) a celestial body of hot gases that radiates energy derived from thermonuclear reactions in the interior -09444783 17 n 01 star 1 003 @ 09239740 n 0000 + 02299437 a 0101 ~ 09444942 n 0000 | any celestial body visible (as a point of light) from the Earth at night -09444942 17 n 01 starlet 0 001 @ 09444783 n 0000 | a small star -09445008 17 n 01 steep 0 001 @ 09265620 n 0000 | a steep place (as on a hill) -09445088 17 n 02 St._Elias_Range 0 St._Elias_Mountains 0 004 @i 09403734 n 0000 #p 09055015 n 0000 #p 08830456 n 0000 %p 09342729 n 0000 | a range of mountains between Alaska and the Yukon territory -09445289 17 n 01 steppe 0 002 @ 09393605 n 0000 ;r 09003284 n 0000 | extensive plain without trees (associated with eastern Russia and Siberia) -09445435 17 n 01 stepping_stone 0 001 @ 09416076 n 0000 | a stone in a marsh or shallow water that can be stepped on in crossing -09445566 17 n 01 steps 0 002 @ 09387222 n 0000 ;u 06295235 n 0000 | the course along which a person has walked or is walking in; "I followed in his steps"; "he retraced his steps"; "his steps turned toward home" -09445780 17 n 02 Sterope 0 Asterope 0 002 @i 09444100 n 0000 #m 09395763 n 0000 | one of the stars in the star cluster Pleiades -09445910 17 n 01 storm_cloud 0 001 @ 09247410 n 0000 | a heavy dark cloud presaging rain or a storm -09446012 17 n 01 straight_chain 0 001 @ 09378929 n 0000 | an open chain of atoms with no side chains -09446115 17 n 02 strait 0 sound 1 021 @ 09241247 n 0000 ~i 09041371 n 0000 ~i 09123387 n 0000 ~i 09218963 n 0000 ~i 09227219 n 0000 ~i 09255768 n 0000 ~i 09289913 n 0000 ~i 09324859 n 0000 ~i 09327361 n 0000 ~i 09350776 n 0000 ~ 09365863 n 0000 ~i 09373175 n 0000 ~i 09436299 n 0000 ~i 09439879 n 0000 ~i 09446617 n 0000 ~i 09446747 n 0000 ~i 09446868 n 0000 ~i 09447047 n 0000 ~i 09447335 n 0000 ~i 09447450 n 0000 ~i 09460139 n 0000 | a narrow channel of the sea joining two larger bodies of water -09446617 17 n 01 Strait_of_Georgia 0 001 @i 09446115 n 0000 | the strait separating Vancouver Island from the Canadian mainland -09446747 17 n 01 Strait_of_Gibraltar 0 002 @i 09446115 n 0000 %p 09392162 n 0000 | the strait between Spain and Africa -09446868 17 n 02 Strait_of_Hormuz 0 Strait_of_Ormuz 0 002 @i 09446115 n 0000 #p 09202405 n 0000 | a strategically important strait linking the Persian Gulf and the Gulf of Oman -09447047 17 n 01 Strait_of_Magellan 0 001 @i 09446115 n 0000 | the strait separating South America from Tierra del Fuego and other islands to the south of the continent; discovered by Ferdinand Magellan in 1520; an important route around South America before the Panama Canal was built -09447335 17 n 01 Strait_of_Messina 0 001 @i 09446115 n 0000 | the strait separating Sicily from the tip of Italy -09447450 17 n 03 Strait_of_Dover 0 Strait_of_Calais 0 Pas_de_Calais 0 001 @i 09446115 n 0000 | the strait between the English Channel and the North Sea; shortest distance between England and the European continent -09447666 17 n 01 strand 0 001 @ 09433442 n 0000 | a poetic term for a shore (as the area periodically covered and uncovered by the tides) -09447806 17 n 01 strange_particle 0 001 @ 09272085 n 0000 | an elementary particle with non-zero strangeness -09447917 17 n 02 strange_quark 0 squark 0 001 @ 09401834 n 0000 | a quark with an electric charge of -1/3 and a mass 988 times that of an electron and a strangeness of -1 -09448090 17 n 01 stratosphere 0 003 @ 08591680 n 0000 #p 09210604 n 0000 %p 09382726 n 0000 | the atmospheric layer between the troposphere and the mesosphere -09448251 17 n 02 stratus 0 stratus_cloud 0 002 @ 09247410 n 0000 ~ 09195235 n 0000 | a large dark low cloud -09448361 17 n 02 stream 0 watercourse 1 012 @ 09225146 n 0000 + 09415938 n 0105 + 02070466 v 0101 ~ 09228324 n 0000 ~ 09229409 n 0000 %p 09283623 n 0000 ~ 09302127 n 0000 %p 09349648 n 0000 %p 09354511 n 0000 ~ 09411430 n 0000 ~ 09415938 n 0000 ~ 09458079 n 0000 | a natural body of running water flowing on or under the earth -09448690 17 n 02 streambed 0 creek_bed 0 002 @ 09217638 n 0000 ~ 09474895 n 0000 | a channel occupied (or formerly occupied) by a stream -09448829 17 n 01 stressor 0 002 @ 09190918 n 0000 + 01798452 v 0103 | any agent that causes stress to an organism -09448945 17 n 01 stretch 0 003 @ 09277538 n 0000 + 02607830 v 0101 ~ 09436906 n 0000 | a large and unbroken expanse or distance; "a stretch of highway"; "a stretch of clear water" -09449127 17 n 01 strike-slip_fault 0 001 @ 09278537 n 0000 | a geological fault in which one of the adjacent surfaces appears to have moved horizontally -09449282 17 n 02 string 0 cosmic_string 0 002 @ 09272085 n 0000 ;c 06098195 n 0000 | (cosmology) a hypothetical one-dimensional subatomic particle having a concentration of energy and the dynamic properties of a flexible loop -09449510 17 n 01 strip 0 002 @ 09385911 n 0000 ~ 09417365 n 0000 | a relatively long narrow piece of something; "he felt a flat strip of muscle" -09449657 17 n 01 stub 0 001 @ 13086908 n 0000 | a short piece remaining on a trunk or stem where a branch is lost -09449773 17 n 02 Styx 0 River_Styx 0 003 @i 09411430 n 0000 #p 05629381 n 0000 ;c 07979425 n 0000 | (Greek mythology) a river in Hades across which Charon carried dead souls -09449949 17 n 01 subcontinent 0 004 @ 09335916 n 0000 #p 09254614 n 0000 ;r 08900535 n 0000 ;r 08819397 n 0000 | a large and distinctive landmass (as India or Greenland) that is a distinct part of some continent -09450163 17 n 02 sun 0 Sun 2 004 @i 09444100 n 0000 #m 09439433 n 0000 %p 09244469 n 0000 %p 09391386 n 0000 | the star that is the source of light and heat for the planets in the solar system; "the sun contains 99.85% of the mass in the solar system"; "the Earth revolves around the Sun" -09450454 17 n 01 sun 1 001 @ 09444100 n 0000 | any star around which a planetary system revolves -09450553 17 n 01 Sun_River 0 002 @i 09411430 n 0000 #p 09108164 n 0000 | a river in western Montana that flows south and east to join the Missouri River -09450708 17 n 01 supergiant 0 003 @ 09444100 n 0000 ~i 09219731 n 0000 ~i 09233134 n 0000 | an extremely bright star of very large diameter and low density -09450866 17 n 01 superior_planet 0 007 @ 09394007 n 0000 ~i 09322454 n 0000 ~i 09347445 n 0000 ~i 09368699 n 0000 ~i 09395899 n 0000 ~i 09424642 n 0000 ~i 09467417 n 0000 | any of the planets whose orbit lies outside the earth's orbit -09451103 17 n 01 supernatant 0 002 @ 14940386 n 0000 + 02351490 a 0101 | the clear liquid that lies above a sediment or precipitate -09451237 17 n 01 supernova 0 002 @ 09444100 n 0000 ~i 09258587 n 0000 | a star that explodes and becomes extremely luminous in the process -09451378 17 n 01 superstring 0 001 @ 09386422 n 0000 | a hypothetical particle that is the elementary particle in a theory of space-time -09451517 17 n 02 surface 0 Earth's_surface 0 008 @ 08591680 n 0000 #p 09339810 n 0000 + 02806098 a 0101 + 01990281 v 0101 %p 09225146 n 0000 ~ 09282084 n 0000 ~ 09282363 n 0000 %p 09379111 n 0000 | the outermost level of the land or sea; "earthquakes originate far below the surface"; "three quarters of the Earth's surface is covered by water" -09451864 17 n 02 Suriname_River 0 Surinam_River 0 002 @i 09411430 n 0000 #p 09030752 n 0000 | a river in Suriname that flows northward to the Atlantic -09452017 17 n 02 Susquehanna 0 Susquehanna_River 0 004 @i 09411430 n 0000 #p 09117351 n 0000 #p 09134386 n 0000 #p 09093608 n 0000 | a river in the northeastern United States that rises in New York and flows southward through Pennsylvania and Maryland into Chesapeake Bay -09452291 17 n 01 swale 0 001 @ 09462773 n 0000 | a low area (especially a marshy area between ridges) -09452395 17 n 02 swamp 0 swampland 0 006 @ 09477890 n 0000 + 02548066 a 010b + 02771564 v 0101 ~i 09277279 n 0000 ~i 09378014 n 0000 ~ 09438212 n 0000 | low land that is seasonally flooded; has more woody plants than a marsh and better drainage than a bog -09452653 17 n 02 swath 0 belt 0 001 @ 09387222 n 0000 | a path or strip (as cut by one course of mowing) -09452760 17 n 01 swell 0 001 @ 09366317 n 0000 | a rounded elevation (especially one on an ocean floor) -09452866 17 n 01 swimming_hole 0 001 @ 09397391 n 0000 | a small body of water (usually in a creek) that is deep enough to use for swimming -09453008 17 n 02 tableland 0 plateau 0 011 @ 09302616 n 0000 ~i 08821319 n 0000 ~i 08941681 n 0000 ~i 08995242 n 0000 ~i 09161615 n 0000 ~i 09231761 n 0000 ~i 09250165 n 0000 ~i 09341465 n 0000 ~i 09348643 n 0000 ~ 09351905 n 0000 ~ 09456207 n 0000 | a relatively flat highland -09453288 17 n 01 Taconic_Mountains 0 006 @i 09403734 n 0000 #p 09201301 n 0000 #p 09117351 n 0000 #p 09068444 n 0000 #p 09095023 n 0000 #p 09147964 n 0000 | a range of the Appalachian Mountains along the eastern border of New York with Connecticut, Massachusetts, and Vermont -09453566 17 n 02 Tagus 0 Tagus_River 0 003 @i 09411430 n 0000 #p 09023321 n 0000 #p 08984788 n 0000 | a European river; flows into the North Atlantic -09453718 17 n 01 Takakkaw 0 002 @i 09475292 n 0000 #p 08822855 n 0000 | a waterfall in southeastern British Columbia; the highest waterfall in Canada (1250 feet high) -09453887 17 n 02 Tallapoosa 0 Tallapoosa_River 0 003 @i 09411430 n 0000 #p 09075842 n 0000 #p 09053185 n 0000 | river that rises in northwestern Georgia and flows southwest through central Alabama to join the Coosa River near Montgomery and form the Alabama River -09454153 17 n 02 talus 0 scree 0 001 @ 09287968 n 0000 | a sloping mass of loose rocks at the base of a cliff -09454265 17 n 01 Tampa_Bay 0 003 @i 09215664 n 0000 #p 09298698 n 0000 #p 09071690 n 0000 | an arm of the Gulf of Mexico in west central Florida -09454412 17 n 01 tangle 0 005 @ 00019128 n 0000 + 01462928 v 0102 + 01474034 v 0103 ~ 09301044 n 0000 ~ 09431283 n 0000 | a twisted and tangled mass that is highly interwoven; "they carved their way through the tangle of vines" -09454642 17 n 01 tarn 0 001 @ 09328904 n 0000 | a mountain lake (especially one formed by glaciers) -09454744 17 n 01 tar_pit 0 001 @ 09393108 n 0000 | a natural accumulation of bitumens at the surface of the earth; often acts as a trap for animals whose bones are thus preserved -09454925 17 n 03 tartar 0 calculus 1 tophus 0 001 @ 09260218 n 0000 | an incrustation that forms on the teeth and gums -09455046 17 n 01 Tasman_Sea 0 002 @i 09426788 n 0000 #p 09382990 n 0000 | an arm of the southern Pacific Ocean between southeastern Australia and New Zealand -09455206 17 n 02 tauon 0 tau-minus_particle 0 001 @ 09338013 n 0000 | a lepton of very great mass -09455306 17 n 01 Taurus 0 005 @i 09252970 n 0000 #p 08685188 n 0000 %m 09192462 n 0000 %m 09258587 n 0000 %m 09395763 n 0000 | a zodiacal constellation in the northern hemisphere near Orion; between Aries and Gemini -09455524 17 n 01 Telescopium 0 001 @i 09252970 n 0000 | a small constellation in the southern hemisphere near Ara -09455640 17 n 02 Tennessee 0 Tennessee_River 0 003 @i 09411430 n 0000 #p 09140148 n 0000 #p 09089139 n 0000 | a river formed by the confluence of two other rivers near Knoxville; it follows a U-shaped course to become a tributary of the Ohio River in western Kentucky -09455910 17 n 01 tent 0 001 @ 09477037 n 0000 | a web that resembles a tent or carpet -09455998 17 n 01 teratogen 0 003 @ 09190918 n 0000 + 02811980 a 0101 ~ 04417467 n 0000 | any agent that interferes with normal embryonic development: alcohol or thalidomide or X-rays or rubella are examples -09456207 17 n 02 terrace 0 bench 0 002 @ 09453008 n 0000 + 00141749 v 0101 | a level shelf of land interrupting a declivity (with steep slopes above and below) -09456369 17 n 01 terrestrial_planet 0 005 @ 09394007 n 0000 ~i 09270894 n 0000 ~i 09347445 n 0000 ~i 09351408 n 0000 ~i 09470762 n 0000 | a planet having a compact rocky surface like the Earth's; the four innermost planets in the solar system -09456614 17 n 01 territorial_waters 0 005 @ 09225146 n 0000 #p 09345932 n 0000 ! 09302804 n 0101 ! 09302804 n 0102 ~i 09465984 n 0000 | the waters surrounding a nation and its territories over which that nation exercises sovereign jurisdiction -09456860 17 n 01 Teton_Range 0 003 @i 09403734 n 0000 #p 09159003 n 0000 %p 09291340 n 0000 | a mountain range in northwest Wyoming; contains the Grand Teton -09457020 17 n 03 Thames 0 River_Thames 0 Thames_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | the longest river in England; flows eastward through London to the North Sea -09457199 17 n 01 thermion 0 002 @ 09386422 n 0000 + 03124786 a 0101 | an electrically charged particle (electron or ion) emitted by a substance at a high temperature -09457367 17 n 01 thermosphere 0 002 @ 08591680 n 0000 #p 09210604 n 0000 | the atmospheric layer between the mesosphere and the exosphere -09457507 17 n 03 thrust_fault 0 overthrust_fault 0 reverse_fault 0 001 @ 09310616 n 0000 | a geological fault in which the upper side appears to have been pushed upward by compression -09457693 17 n 01 thunderhead 0 001 @ 09261960 n 0000 | a rounded projecting mass of a cumulus cloud with shining edges; often appears before a thunderstorm -09457851 17 n 02 Tiber 0 Tevere 0 001 @i 09411430 n 0000 | a river of central Italy; flows through Rome to the Tyrrhenian Sea -09457979 17 n 01 tidal_basin 0 001 @ 09215437 n 0000 | a basin that is full of water at high tide -09458079 17 n 04 tidal_river 0 tidewater_river 0 tidal_stream 0 tidewater_stream 0 002 @ 09448361 n 0000 #p 09458372 n 0000 | a stream in which the effects of the tide extend far upstream -09458269 17 n 01 tideland 0 001 @ 09428293 n 0000 | land near the sea that is overflowed by the tide -09458372 17 n 01 tidewater 0 002 @ 09248294 n 0000 %p 09458079 n 0000 | low-lying coastal land drained by tidal streams -09458494 17 n 01 tideway 0 001 @ 09241247 n 0000 | a channel in which a tidal current runs -09458587 17 n 02 Tien_Shan 0 Tyan_Shan 0 005 @i 09403734 n 0000 #p 09006413 n 0000 #p 08723006 n 0000 #p 08900535 n 0000 %p 09396275 n 0000 | a major mountain range of central Asia; extends 1,500 miles -09458791 17 n 02 Tigris 0 Tigris_River 0 004 @i 09411430 n 0000 #p 09039411 n 0000 #p 09033333 n 0000 #p 08913434 n 0000 | an Asian river; a tributary of the Euphrates River -09458967 17 n 01 Timor_Sea 0 002 @i 09426788 n 0000 #p 09311259 n 0000 | an arm of the eastern Indian Ocean between Timor and northern Australia -09459114 17 n 01 Tirich_Mir 0 003 @i 09360122 n 0000 #p 09304164 n 0000 #p 08975902 n 0000 | a mountain in the Hindu Kush in Pakistan (25,230 feet high) -09459269 17 n 01 Titan 0 001 @i 09424270 n 0000 | the largest of the satellites of Saturn; has a hazy nitrogen atmosphere -09459393 17 n 02 Tocantins 0 Tocantins_River 0 002 @i 09411430 n 0000 #p 08853741 n 0000 | a river in eastern Brazil that flows generally north to the Para River -09459557 17 n 02 Tombigbee 0 Tombigbee_River 0 003 @i 09411430 n 0000 #p 09103943 n 0000 #p 09053185 n 0000 | a river that rises in northeastern Mississippi and flows southward through western Alabama to join the Alabama River and form the Mobile River -09459812 17 n 02 top_quark 0 truth_quark 0 001 @ 09401834 n 0000 | a hypothetical quark with a charge of +2/3 and a mass more than 100,000 times that of an electron -09459979 17 n 01 tor 1 001 @ 09303008 n 0000 | a high rocky hill -09460046 17 n 01 tor 2 001 @ 09416076 n 0000 | a prominent rock or pile of rocks on a hill -09460139 17 n 01 Torres_Strait 0 001 @i 09446115 n 0000 | a strait between northeastern Australia and southern New Guinea that connects the Coral Sea with the Arafura Sea -09460312 17 n 01 trail 1 003 @ 09387222 n 0000 ~ 09437887 n 0000 ~ 09443281 n 0000 | a track or mark left by something that has passed; "there as a trail of blood"; "a tear left its trail on her cheek" -09460516 17 n 02 transducing_vector 0 gene_delivery_vector 0 003 @ 09469285 n 0000 ~ 09339668 n 0000 ~ 09471865 n 0000 | a vector for delivering genes into cells -09460680 17 n 01 transmission_mechanism 0 004 @ 09349797 n 0000 ~ 09191427 n 0000 ~ 09267227 n 0000 ~ 09311885 n 0000 | any mechanism whereby an infectious agent is spread from a reservoir to a human being -09460888 17 n 01 Transylvanian_Alps 0 003 @i 09403734 n 0000 #p 09236423 n 0000 #p 08813978 n 0000 | a range of the southern Carpathian Mountains extending across central Romania -09461069 17 n 01 Trapezium 0 001 @ 09363064 n 0000 | a multiple star in the constellation of Orion -09461170 17 n 01 tree_farm 0 002 @ 09284015 n 0000 ~ 09392402 n 0000 | a forest (or part of a forest) where trees are grown for commercial use -09461315 17 n 03 trench 0 deep 0 oceanic_abyss 0 005 @ 09366017 n 0000 ~i 09209132 n 0000 ~i 09227683 n 0000 ~i 09321527 n 0000 ~i 09365587 n 0000 | a long steep-sided depression in the ocean floor -09461515 17 n 03 Trent 0 River_Trent 0 Trent_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in central England that flows generally northeastward to join with the Ouse River and form the Humber -09461724 17 n 02 Triangulum 0 Triangle 0 001 @i 09252970 n 0000 | a small northern constellation near Perseus between Andromeda and Aries -09461864 17 n 02 Triangulum_Australe 0 Southern_Triangle 0 001 @i 09252970 n 0000 | a small bright constellation in the polar region of the southern hemisphere near Circinus and Apus -09462049 17 n 01 Trinity_River 0 002 @i 09411430 n 0000 #p 09141526 n 0000 | a river in eastern Texas that is formed near Dallas and flows generally southeastward to Galveston Bay -09462231 17 n 01 Triton 0 001 @i 09358226 n 0000 | the largest moon of Neptune -09462312 17 n 02 Trondheim_Fjord 0 Trondheim_Fiord 0 002 @i 09281104 n 0000 #p 08764107 n 0000 | a long narrow inlet of the Norwegian Sea -09462452 17 n 01 tropopause 0 002 @ 08591680 n 0000 #p 09462600 n 0000 | the region of discontinuity between the troposphere and the stratosphere -09462600 17 n 01 troposphere 0 003 @ 08591680 n 0000 #p 09210604 n 0000 %p 09462452 n 0000 | the lowest atmospheric layer; from 4 to 11 miles high (depending on latitude) -09462773 17 n 01 trough 0 002 @ 09366017 n 0000 ~ 09452291 n 0000 | a narrow depression (as in the earth or between ocean waves or in the ocean bed) -09462924 17 n 01 Tucana 0 001 @i 09252970 n 0000 | a large faint constellation in the southern hemisphere containing most of the Small Magellanic Cloud -09463078 17 n 02 Tugela 0 Tugela_Falls 0 002 @i 09475292 n 0000 #p 08971693 n 0000 | a major waterfall in southern Africa; has more than one leap -09463226 17 n 01 tundra 0 001 @ 09393605 n 0000 | a vast treeless plain in the Arctic regions where the subsoil is permanently frozen -09463362 17 n 02 Tunguska 1 Lower_Tunguska 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a river that arises to the north of Lake Baikal and flows north and west to the Yenisei River -09463547 17 n 02 Tunguska 2 Stony_Tunguska 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a river in Siberia that flows northwest to become a tributary of the Yenisei River -09463721 17 n 01 Tupungato 0 004 @i 09360122 n 0000 #p 09196611 n 0000 #p 08711974 n 0000 #p 08720481 n 0000 | a mountain in the Andes on the border between Argentina and Chile (22,310 feet high) -09463919 17 n 04 turf 0 sod 0 sward 0 greensward 0 003 @ 09335240 n 0000 + 01335711 v 0201 ~ 09267854 n 0000 | surface layer of ground containing a mat of grass and grass roots -09464098 17 n 01 turning 0 001 @ 09385137 n 0000 | a shaving created when something is produced by turning it on a lathe -09464221 17 n 01 twilight_zone 0 001 @ 09376526 n 0000 | the lowest level of the ocean to which light can reach -09464335 17 n 02 Twin 0 Twin_Falls 0 003 @i 09475292 n 0000 #p 09438554 n 0000 #p 09044862 n 0000 | a waterfall in the Snake River in southern Idaho -09464486 17 n 01 twinkler 0 003 @ 09432990 n 0000 + 02764765 v 0101 + 02159890 v 0104 | an object that emits or reflects light in an intermittent flickering manner -09464652 17 n 01 Tyrolean_Alps 0 004 @i 09403734 n 0000 #p 09194357 n 0000 #p 08801678 n 0000 #p 08845555 n 0000 | a popular tourist area in the Tyrol -09464805 17 n 03 Tyne 0 River_Tyne 0 Tyne_River 0 002 @i 09411430 n 0000 #p 08871007 n 0000 | a river in northern England that flows east to the North Sea -09464962 17 n 01 Tyrrhenian_Sea 0 002 @i 09426788 n 0000 #p 09350045 n 0000 | an arm of the Mediterranean between Italy and the islands of Corsica and Sardinia and Sicily -09465135 17 n 02 Ulugh_Muztagh 0 Ulugh_Muz_Tagh 0 002 @i 09360122 n 0000 #p 09327881 n 0000 | a mountain in the Kunlun range in China (25,340 feet high) -09465290 17 n 01 Uncompahgre_Peak 0 002 @i 09360122 n 0000 #p 09423379 n 0000 | the highest peak in the San Juan Mountains of southwestern Colorado (14,309 feet high) -09465459 17 n 02 unit 0 building_block 0 010 @ 00002452 n 0000 + 02468793 v 0101 + 01385458 v 0101 + 00368109 v 0101 ~ 09240621 n 0000 ~ 09257563 n 0000 %p 09385911 n 0000 ~ 09465795 n 0000 ~ 14621446 n 0000 ~ 14682133 n 0000 | a single undivided natural thing occurring in the composition of something else; "units of nucleic acids" -09465795 17 n 01 unit_cell 0 001 @ 09465459 n 0000 | the smallest group of atoms or molecules whose repetition at regular intervals in three dimensions produces the lattices of a crystal -09465984 17 n 02 United_States_waters 0 U.S._waters 0 001 @i 09456614 n 0000 | territorial waters included within a distance of 12 nautical miles of the coasts of the United States and its territories; "ships operating in United States waters must adhere to United States laws and regulations" -09466280 17 n 06 universe 0 existence 0 creation 0 world 1 cosmos 0 macrocosm 0 011 @ 00019128 n 0000 + 02903062 a 0601 + 01385663 a 0501 + 02702807 a 0501 + 00527188 a 0105 %m 08271042 n 0000 %p 09239740 n 0000 ~ 09247071 n 0000 %p 09277686 n 0000 ~ 09366597 n 0000 ~ 09366762 n 0000 | everything that exists anywhere; "they study the evolution of the universe"; "the biggest tree in existence" -09466678 17 n 01 uphill 0 001 @ 09206985 n 0000 | the upward slope of a hill -09466757 17 n 01 upper_mantle 0 002 @ 08591680 n 0000 #p 09346450 n 0000 | the upper part of the mantle -09466863 17 n 01 Upper_Peninsula 0 002 @i 09388848 n 0000 #p 09099526 n 0000 | the peninsula between Lake Superior and Lake Michigan that forms the northwestern part of Michigan -09467043 17 n 01 up_quark 0 001 @ 09401834 n 0000 | a stable quark with an electric charge of +2/3 and a mass 607 times that of an electron -09467185 17 n 02 Urals 0 Ural_Mountains 0 002 @i 09403734 n 0000 #p 09006413 n 0000 | a mountain range in western Russia extending from the Arctic to the Caspian Sea; forms part of the traditional boundary between Europe and Asia -09467417 17 n 01 Uranus 0 004 @i 09322087 n 0000 @i 09450866 n 0000 @i 09381480 n 0000 #m 09439433 n 0000 | a giant planet with a ring of ice particles; the 7th planet from the sun has a blue-green color and many satellites; "Uranus was discovered by William Herschel in 1781" -09467696 17 n 01 urolith 0 001 @ 09230768 n 0000 | a urinary stone -09467765 17 n 02 Urubupunga 0 Urubupunga_Falls 0 003 @i 09475292 n 0000 #p 09384921 n 0000 #p 08853741 n 0000 | a waterfall in the Parana river in Brazil -09467921 17 n 01 Uruguay_River 0 002 @i 09411430 n 0000 #p 09440400 n 0000 | a South American river that arises in southern Brazil and flows south to the Rio de la Plata; the northern section forms the boundary between Argentina and Brazil and the southern section forms the boundary between Argentina and Uruguay -09468237 17 n 01 vagabond 0 004 @ 00002684 n 0000 + 02128736 a 0102 + 02127159 a 0104 + 01881180 v 010c | anything that resembles a vagabond in having no fixed place; "pirate ships were vagabonds of the sea" -09468447 17 n 01 valence_electron 0 001 @ 09271904 n 0000 | an electron in the outer shell of an atom which can combine with other atoms to form molecules -09468604 17 n 02 valley 0 vale 0 013 @ 09366017 n 0000 ~i 08788190 n 0000 ~ 09262690 n 0000 ~ 09289596 n 0000 ~ 09300306 n 0000 ~ 09305031 n 0000 ~i 09343123 n 0000 ~ 09375606 n 0000 ~ 09405787 n 0000 ~ 09410224 n 0000 ~i 09422294 n 0000 ~i 09422964 n 0000 ~i 09432549 n 0000 | a long depression in the surface of the land that usually contains a river -09468959 17 n 01 variable 0 002 @ 00002452 n 0000 + 02504131 a 0101 | something that is likely to vary; something that is subject to variation; "the weather is one variable to be considered" -09469152 17 n 02 variable_star 0 variable 1 002 @ 09444100 n 0000 ~i 09396712 n 0000 | a star that varies noticeably in brightness -09469285 17 n 02 vector 0 transmitter 0 006 @ 09190918 n 0000 ;c 00015388 n 0000 ;c 01326291 n 0000 + 02231661 v 0202 ~ 09460516 n 0000 ~ 09897350 n 0000 | any agent (person or animal or microorganism) that carries and transmits a disease; "mosquitos are vectors of malaria and yellow fever"; "fleas are vectors of the plague"; "aphids are transmitters of plant diseases"; "when medical scientists talk about vectors they are usually talking about insects" -09469744 17 n 01 vector-borne_transmission 0 001 @ 09311885 n 0000 | indirect transmission of an infectious agent that occurs when a vector bites or touches a person -09469912 17 n 01 Vega 0 002 @i 09221070 n 0000 #m 09344559 n 0000 | the brightest star in the constellation Lyra -09470027 17 n 01 vehicle-borne_transmission 0 001 @ 09311885 n 0000 | indirect transmission of an infectious agent that occurs when a vehicle (or fomite) touches a person's body or is ingested -09470222 17 n 02 vein 0 mineral_vein 0 002 @ 09287968 n 0000 ~ 09226498 n 0000 | a layer of ore between layers of rock -09470343 17 n 01 Vela 0 002 @i 09252970 n 0000 #p 09205607 n 0000 | a constellation in the southern hemisphere between Carina and Pyxis; "because of its configuration Vela is sometimes called `the Sails'" -09470550 17 n 02 vent 0 volcano 1 003 @ 09258715 n 0000 -c 00040325 a 0000 -c 14008567 n 0000 | a fissure in the earth's crust (or in the surface of some other planet) through which molten lava and gases erupt -09470762 17 n 01 Venus 0 003 @i 09456369 n 0000 @i 09312999 n 0000 #m 09439433 n 0000 | the second nearest planet to the sun; it is peculiar in that its rotation is slow and retrograde (in the opposite sense of the Earth and all other planets except Uranus); it is visible from Earth as an early `morning star' or an `evening star'; "before it was known that they were the same object the evening star was called Venus and the morning star was called Lucifer" -09471224 17 n 01 Vesta 0 002 @i 09208702 n 0000 + 03128472 a 0101 | the brightest asteroid but the fourth to be discovered -09471349 17 n 01 vesture 0 001 @ 09257949 n 0000 | something that covers or cloaks like a garment; "fields in a vesture of green" -09471481 17 n 02 Vetluga 0 Vetluga_River 0 002 @i 09411430 n 0000 #p 09006413 n 0000 | a river in central Russia; flows generally southward into the Volga -09471638 17 n 02 Victoria 0 Victoria_Falls 0 004 @i 09475292 n 0000 #p 09483129 n 0000 #p 09167101 n 0000 #p 09165613 n 0000 | a waterfall in the Zambezi River on the border between Zimbabwe and Zambia; diminishes seasonally -09471865 17 n 01 viral_delivery_vector 0 001 @ 09460516 n 0000 | a transducing vector that uses a retrovirus -09471976 17 n 01 Virgo 0 003 @i 09252970 n 0000 #p 08685188 n 0000 %m 09442496 n 0000 | a large zodiacal constellation on the equator; between Leo and Libra -09472135 17 n 02 Vistula 0 Vistula_River 0 002 @i 09411430 n 0000 #p 08982587 n 0000 | a European river; flows into the Baltic Sea -09472268 17 n 01 Volans 0 001 @i 09252970 n 0000 | a small constellation in the polar region of the southern hemisphere near Dorado and Carina -09472413 17 n 02 volcanic_crater 0 crater 1 004 @ 09287968 n 0000 #p 09472597 n 0000 ~ 09231117 n 0000 ~ 09344724 n 0000 | a bowl-shaped geological formation at the top of a volcano -09472597 17 n 01 volcano 0 030 @ 09359803 n 0000 + 02826169 a 0101 ~i 08926681 n 0000 ~i 08982289 n 0000 ~i 09173623 n 0000 ~i 09173777 n 0000 ~i 09174015 n 0000 ~i 09174166 n 0000 ~i 09174301 n 0000 ~i 09174457 n 0000 ~i 09174566 n 0000 ~i 09174718 n 0000 ~i 09174908 n 0000 ~i 09175016 n 0000 ~i 09175322 n 0000 ~i 09175459 n 0000 ~i 09175617 n 0000 ~i 09175767 n 0000 ~i 09175915 n 0000 ~i 09176342 n 0000 ~i 09176446 n 0000 ~i 09176608 n 0000 ~i 09176732 n 0000 ~i 09176844 n 0000 ~i 09176955 n 0000 ~i 09177103 n 0000 ~i 09177249 n 0000 ~i 09177385 n 0000 ~i 09177883 n 0000 %p 09472413 n 0000 | a mountain formed by volcanic material -09473239 17 n 02 Volga 0 Volga_River 0 002 @i 09411430 n 0000 #p 09006413 n 0000 | a Russian river; the longest river in Europe; flows into the Caspian Sea -09473397 17 n 02 Volkhov 0 Volkhov_River 0 002 @i 09411430 n 0000 #p 09006413 n 0000 | a river in northwestern Russia flowing generally north into Lake Ladoga -09473558 17 n 01 Volta 0 002 @i 09411430 n 0000 #p 08946187 n 0000 | a river in Ghana that flows south to the Bight of Benin -09473685 17 n 01 Vulpecula 0 001 @i 09252970 n 0000 | a constellation in the northern hemisphere near Cygnus and Sagitta -09473808 17 n 02 Wabash 0 Wabash_River 0 003 @i 09411430 n 0000 #p 09130076 n 0000 #p 09084750 n 0000 | a tributary of the Ohio River that rises in western Ohio and flows southwestward across Indiana -09474010 17 n 01 wadi 0 001 @ 09300306 n 0000 | gully or streambed in northern Africa and the Middle East that remains dry except during rainy season -09474162 17 n 01 wall 0 003 @ 00002684 n 0000 ~ 09283514 n 0000 ~ 09301625 n 0000 | anything that suggests a wall in structure or function or effect; "a wall of water"; "a wall of smoke"; "a wall of prejudice"; "negotiations ran into a brick wall" -09474412 17 n 01 wall 1 002 @ 09287968 n 0000 #p 09238926 n 0000 | a vertical (or almost vertical) smooth rock face (as of a cave or mountain) -09474557 17 n 01 wallow 0 002 @ 09362820 n 0000 + 01866030 v 0101 | a puddle where animals go to wallow -09474663 17 n 01 wall_rock 0 001 @ 09416076 n 0000 | a rock immediately adjacent to a vein or fault -09474765 17 n 02 warren 0 rabbit_warren 0 001 @ 09230041 n 0000 | a series of connected underground tunnels occupied by rabbits -09474895 17 n 02 wash 0 dry_wash 0 002 @ 09448690 n 0000 ;r 08682819 n 0000 | the dry bed of an intermittent stream (as at the bottom of a canyon) -09475044 17 n 04 wasp's_nest 0 wasps'_nest 0 hornet's_nest 0 hornets'_nest 0 001 @ 09371028 n 0000 | habitation for wasps or hornets -09475179 17 n 01 watercourse 2 001 @ 09241247 n 0000 | natural or artificial channel through which water flows -09475292 17 n 02 waterfall 0 falls 0 018 @ 09225146 n 0000 #p 09411430 n 0000 ~i 09195796 n 0000 ~i 09197660 n 0000 ~i 09232165 n 0000 ~ 09236957 n 0000 ~ 09237918 n 0000 ~i 09262082 n 0000 ~i 09309456 n 0000 ~i 09370773 n 0000 ~i 09387624 n 0000 ~i 09430416 n 0000 ~i 09453718 n 0000 ~i 09463078 n 0000 ~i 09464335 n 0000 ~i 09467765 n 0000 ~i 09471638 n 0000 ~i 09482715 n 0000 | a steep descent of the water of a river -09475716 17 n 01 water_gap 0 001 @ 09249034 n 0000 | a pass in a mountain ridge through which a stream flows -09475827 17 n 01 water_hole 0 001 @ 09397391 n 0000 | a natural hole or hollow containing water -09475925 17 n 01 waterside 0 001 @ 09213565 n 0000 | land bordering a body of water -09476011 17 n 01 water_system 0 002 @ 08435388 n 0000 %p 09411430 n 0000 | a river and all of its tributaries -09476123 17 n 03 water_table 0 water_level 0 groundwater_level 0 001 @ 09287968 n 0000 | underground surface below which the ground is wholly saturated with water; "spring rains had raised the water table" -09476331 17 n 01 waterway 0 007 @ 09225146 n 0000 ~i 09259746 n 0000 ~ 09267758 n 0000 ~i 09313241 n 0000 ~ 09346735 n 0000 ~ 09346874 n 0000 ~ 09405396 n 0000 | a navigable body of water -09476521 17 n 01 weakener 0 004 @ 09190918 n 0000 + 00390215 v 0104 + 00290740 v 0102 + 00224901 v 0101 | that which weakens or causes a loss of strength; "doubt is a great weakener of resolve" -09476717 17 n 02 weakly_interacting_massive_particle 0 WIMP 0 004 @ 09272085 n 0000 #p 14582220 n 0000 ;c 06090869 n 0000 ;u 07091902 n 0000 | a hypothetical subatomic particle of large mass that interacts weakly with ordinary matter through gravitation; postulated as a constituent of the dark matter of the universe -09477037 17 n 01 web 0 006 @ 00002684 n 0000 + 02007067 a 0106 + 01672168 v 0101 ~ 04275363 n 0000 ~ 09455910 n 0000 ~ 09477319 n 0000 | an intricate network suggesting something that was formed by weaving or interweaving; "the trees cast a delicate web of shadows over the lawn" -09477319 17 n 01 webbing 0 001 @ 09477037 n 0000 | something forming a web (as between the toes of birds) -09477427 17 n 01 Weddell_Sea 0 001 @i 09426788 n 0000 | an arm of the south Atlantic in Antarctica to the east of the Antarctic Peninsula -09477567 17 n 01 Weisshorn 0 003 @i 09360122 n 0000 #p 09194357 n 0000 #p 09031653 n 0000 | a mountain in the Alps in Switzerland (14,804 feet high) -09477718 17 n 02 Weser 0 Weser_River 0 002 @i 09411430 n 0000 #p 08766988 n 0000 | a river in northwestern Germany that flows northward to the North Sea near Bremerhaven -09477890 17 n 01 wetland 0 004 @ 09335240 n 0000 ~ 09225943 n 0000 ~ 09347779 n 0000 ~ 09452395 n 0000 | a low area where the land is saturated with water -09478047 17 n 01 Wheeler_Peak 0 003 @i 09360122 n 0000 #p 09416570 n 0000 #p 09114696 n 0000 | a mountain peak in northeastern New Mexico in the Rocky Mountains -09478210 17 n 02 whinstone 0 whin 0 001 @ 09416076 n 0000 | any of various hard colored rocks (especially rocks consisting of chert or basalt) -09478355 17 n 02 White 0 White_River 0 003 @i 09411430 n 0000 #p 09059274 n 0000 #p 09105821 n 0000 | a tributary of the Mississippi River that flows southeastward through northern Arkansas and southern Missouri -09478569 17 n 02 white_dwarf 0 white_dwarf_star 0 001 @ 09444100 n 0000 | a faint star of enormous density -09478678 17 n 01 White_Nile 0 001 @i 09302127 n 0000 | a headstream of the Nile; joins the Blue Nile at Khartoum to form the Nile -09478810 17 n 01 White_Sea 0 002 @i 09313716 n 0000 #p 09214422 n 0000 | a large inlet of the Barents Sea in the northwestern part of European Russia -09478962 17 n 02 white_water 0 whitewater 0 001 @ 09282724 n 0000 | frothy water as in rapids or waterfalls -09479072 17 n 02 Whitney 0 Mount_Whitney 0 002 @i 09360122 n 0000 #p 09434845 n 0000 | the highest peak in the Sierra Nevada range in California (14,494 feet high) -09479238 17 n 02 Wight 0 Isle_of_Wight 0 004 @i 09319456 n 0000 @ 08546183 n 0000 #p 08858248 n 0000 #p 09273447 n 0000 | an isle and county of southern England in the English Channel -09479424 17 n 01 Wilderness 0 002 @i 09284015 n 0000 ;r 09148970 n 0000 | a wooded region in northeastern Virginia near Spotsylvania where bloody but inconclusive battles were fought in the American Civil War -09479635 17 n 02 Willamette 0 Willamette_River 0 002 @i 09411430 n 0000 #p 09133010 n 0000 | a river in western Oregon that flows north into the Columbia River near Portland -09479811 17 n 02 Wilson 0 Mount_Wilson 0 002 @i 09360122 n 0000 #p 09423379 n 0000 | a peak in the San Juan mountains of Colorado (14,246 feet high) -09479962 17 n 01 wind_gap 0 001 @ 09249034 n 0000 | a pass in a mountain ridge with no stream flowing through it -09480077 17 n 01 window 0 001 @ 09379111 n 0000 | an opening that resembles a window in appearance or function; "he could see them through a window in the trees" -09480241 17 n 01 Windward_Passage 0 002 @i 09241247 n 0000 #p 09209263 n 0000 | a channel between eastern Cuba and western Haiti that connects the Atlantic Ocean with the Caribbean Sea -09480428 17 n 02 Winnipeg 0 Lake_Winnipeg 0 002 @i 09328904 n 0000 #p 08823968 n 0000 | a lake in southern Canada in Manitoba -09480556 17 n 02 Wisconsin 0 Wisconsin_River 0 002 @i 09411430 n 0000 #p 09157163 n 0000 | a tributary of the Mississippi River in Wisconsin -09480699 17 n 01 wonderland 0 001 @ 09334396 n 0000 | a place or scene of great or strange beauty or wonder -09480809 17 n 01 world 2 001 @ 09385911 n 0000 | a part of the earth that can be considered separately; "the outdoor world"; "the world of insects" -09480959 17 n 01 wormcast 0 001 @ 09284589 n 0000 | fossil trail of a worm -09481036 17 n 01 wormhole 0 001 @ 09304750 n 0000 | hole made by a burrowing worm -09481120 17 n 01 xenolith 0 002 @ 09416076 n 0000 ;c 06115701 n 0000 | (geology) a piece of rock of different origin from the igneous rock in which it is embedded -09481285 17 n 02 Yalu 0 Yalu_River 0 003 @i 09411430 n 0000 #p 08955082 n 0000 ;r 08723006 n 0000 | river in eastern Asia; rises in North Korea and flows southwest to Korea Bay (forming part of the border between North Korea and China) -09481523 17 n 06 Chang_Jiang 0 Changjiang 0 Chang 0 Yangtze 0 Yangtze_River 0 Yangtze_Kiang 0 002 @i 09411430 n 0000 #p 08723006 n 0000 | the longest river of Asia; flows eastward from Tibet into the East China Sea near Shanghai -09481754 17 n 02 Yazoo 0 Yazoo_River 0 002 @i 09411430 n 0000 #p 09103943 n 0000 | a river that rises in west central Mississippi and flows southwest to empty into the Mississippi River above Vicksburg -09481958 17 n 02 Yellow_Sea 0 Huang_Hai 0 004 @i 09426788 n 0000 #p 09382990 n 0000 %p 09226209 n 0000 %p 09327201 n 0000 | part of the Pacific off the east coast of Asia -09482131 17 n 02 Yellowstone 0 Yellowstone_River 0 003 @i 09411430 n 0000 #p 09159003 n 0000 #p 09108164 n 0000 | a tributary of the Missouri River that flows through the Yellowstone National Park -09482330 17 n 04 Yenisei 0 Yenisei_River 0 Yenisey 0 Yenisey_River 0 002 @i 09411430 n 0000 #p 09005712 n 0000 | a Russian river in Siberia; rises in mountains near the Mongolian border and flows generally northward into the Kara Sea -09482566 17 n 01 Yerupaja 0 003 @i 09360122 n 0000 #p 09196611 n 0000 #p 08979054 n 0000 | a mountain peak in the Andes in Peru (21,709 feet high) -09482715 17 n 02 Yosemite 0 Yosemite_Falls 0 002 @i 09475292 n 0000 #p 09044862 n 0000 | a series of waterfalls in Yosemite National Park in California; is reduced to a trickle for part of each year -09482916 17 n 02 Yukon 0 Yukon_River 0 003 @i 09411430 n 0000 #p 08820121 n 0000 #p 09044862 n 0000 | a North American river that flows westward from the Yukon Territory through central Alaska to the Bering Sea -09483129 17 n 02 Zambezi 0 Zambezi_River 0 006 @i 09411430 n 0000 #p 08707917 n 0000 #p 09165613 n 0000 #p 09167101 n 0000 #p 08971025 n 0000 %p 09471638 n 0000 | an African river; flows into the Indian Ocean -09483340 17 n 04 Zhu_Jiang 0 Canton_River 0 Chu_Kiang 0 Pearl_River 1 002 @i 09411430 n 0000 #p 08723006 n 0000 | a river in southeast China that flows into the South China Sea -09483519 17 n 01 Zuider_Zee 0 002 @i 09313716 n 0000 #p 09374036 n 0000 | a former inlet of the North Sea in the northern coast of the Netherlands; sealed off from the sea in 1932 by a dam that created the IJsselmeer -09483738 18 n 02 imaginary_being 0 imaginary_creature 0 023 @ 05625465 n 0000 ~ 09484313 n 0000 ~ 09484664 n 0000 ~i 09488259 n 0000 ~i 09488448 n 0000 ~ 09488711 n 0000 ~ 09488995 n 0000 ~i 09489146 n 0000 ~ 09489601 n 0000 ~ 09489697 n 0000 ~i 09489790 n 0000 ~ 09490054 n 0000 ~i 09491038 n 0000 ~i 09491222 n 0000 ~i 09491324 n 0000 ~ 09491966 n 0000 ~ 09503282 n 0000 ~ 09587565 n 0000 ~ 10489818 n 0000 ~i 10550673 n 0000 ~ 10685300 n 0000 ~i 10715211 n 0000 ~ 10737964 n 0000 | a creature of the imagination; a person that exists only in legends or myths or fiction -09484313 18 n 01 hypothetical_creature 0 002 @ 09483738 n 0000 ~ 09484465 n 0000 | a creature that has not been observed but is hypothesized to exist -09484465 18 n 03 extraterrestrial_being 0 extraterrestrial 0 alien 2 003 @ 09484313 n 0000 + 01035007 a 0301 + 02780355 a 0201 | a form of life assumed to exist outside the Earth or its atmosphere -09484664 18 n 01 mythical_being 0 089 @ 09483738 n 0000 ~ 01827202 n 0000 ~i 09486424 n 0000 ~i 09486639 n 0000 ~i 09486781 n 0000 ~i 09491504 n 0000 ~i 09491784 n 0000 ~ 09492123 n 0000 ~i 09494280 n 0000 ~i 09494764 n 0000 ~i 09496460 n 0000 ~i 09496918 n 0000 ~i 09497163 n 0000 ~i 09497364 n 0000 ~i 09497641 n 0000 ~i 09497775 n 0000 ~i 09498497 n 0000 ~i 09498697 n 0000 ~i 09499338 n 0000 ~i 09499854 n 0000 ~i 09500003 n 0000 ~i 09500217 n 0000 ~i 09500398 n 0000 ~i 09500625 n 0000 ~ 09500936 n 0000 ~i 09501527 n 0000 ~i 09501737 n 0000 ~i 09502080 n 0000 ~i 09522735 n 0000 ~i 09522837 n 0000 ~i 09531296 n 0000 ~ 09545000 n 0000 ~i 09554297 n 0000 ~i 09554505 n 0000 ~i 09554701 n 0000 ~i 09554910 n 0000 ~i 09556305 n 0000 ~i 09556580 n 0000 ~i 09560196 n 0000 ~i 09561320 n 0000 ~i 09569709 n 0000 ~i 09571581 n 0000 ~i 09571693 n 0000 ~i 09571914 n 0000 ~i 09577601 n 0000 ~i 09578005 n 0000 ~i 09578248 n 0000 ~i 09584405 n 0000 ~i 09584559 n 0000 ~i 09584725 n 0000 ~i 09584933 n 0000 ~i 09585218 n 0000 ~i 09589323 n 0000 ~i 09590772 n 0000 ~i 09592384 n 0000 ~i 09592563 n 0000 ~i 09592734 n 0000 ~i 09592848 n 0000 ~i 09593044 n 0000 ~i 09593144 n 0000 ~i 09593416 n 0000 ~i 09593651 n 0000 ~i 09594298 n 0000 ~i 09594604 n 0000 ~i 09594756 n 0000 ~i 09594906 n 0000 ~i 09595059 n 0000 ~i 09595240 n 0000 ~i 09595545 n 0000 ~i 09595717 n 0000 ~i 09595957 n 0000 ~i 09596374 n 0000 ~i 09596547 n 0000 ~i 09596733 n 0000 ~i 09596884 n 0000 ~i 09597141 n 0000 ~i 09597478 n 0000 ~i 09597628 n 0000 ~i 09597798 n 0000 ~i 09598066 n 0000 ~i 09598270 n 0000 ~i 09600031 n 0000 ~i 09600188 n 0000 ~i 09601219 n 0000 ~ 09787076 n 0000 ~ 10135411 n 0000 ~ 10136775 n 0000 ~ 10173086 n 0000 ~i 11246255 n 0000 | an imaginary being of myth or fable -09486424 18 n 01 Augeas 0 003 @i 09484664 n 0000 ;c 07979425 n 0000 + 00420182 a 0101 | (Greek mythology) the mythical Greek king who for 30 years did not clean his stables which contained his vast herd of cattle -09486639 18 n 02 Alcyone 0 Halcyon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a woman who was turned into a kingfisher -09486781 18 n 01 Arjuna 0 003 @i 09484664 n 0000 ;c 06236802 n 0000 ;c 07978423 n 0000 | (Hindu mythology) the warrior prince in the Bhagavad-Gita to whom Krishna explains the nature of being and of God and how humans can come to know God -09487022 18 n 01 legendary_creature 0 006 @ 09492123 n 0000 ~ 09487252 n 0000 ~i 09487385 n 0000 ~ 09487692 n 0000 ~i 09487821 n 0000 ~ 09488006 n 0000 | a monster that is unverifiable but popularly accepted as possibly factual -09487252 18 n 02 abominable_snowman 0 yeti 0 001 @ 09487022 n 0000 | a large hairy humanoid creature said to live in the Himalayas -09487385 18 n 02 Bigfoot 0 Sasquatch 0 001 @i 09487022 n 0000 | large hairy humanoid creature said to live in wilderness areas of the United States and Canada -09487546 18 n 01 Demogorgon 0 002 @i 09505418 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mysterious and terrifying deity of the underworld -09487692 18 n 01 doppelganger 0 001 @ 09487022 n 0000 | a ghostly double of a living person that haunts its living counterpart -09487821 18 n 02 Loch_Ness_monster 0 Nessie 0 002 @i 09487022 n 0000 #p 09342386 n 0000 | a large aquatic animal supposed to resemble a serpent or plesiosaur of Loch Ness in Scotland -09488006 18 n 01 sea_serpent 0 001 @ 09487022 n 0000 | huge creature of the sea resembling a snake or dragon -09488117 18 n 05 bogeyman 0 bugbear 0 bugaboo 0 boogeyman 0 booger 0 001 @ 09491966 n 0000 | an imaginary monster used to frighten children -09488259 18 n 01 Death 0 004 @i 09483738 n 0000 + 00358431 v 0101 + 02109818 v 0101 ~i 09488584 n 0000 | the personification of death; "Death walked the streets of the plague-bound city" -09488448 18 n 01 Gargantua 0 002 @i 09483738 n 0000 + 01385773 a 0102 | a voracious giant in Francois Rabelais' book of the same name -09488584 18 n 02 Grim_Reaper 0 Reaper 1 001 @i 09488259 n 0000 | Death personified as an old man or a skeleton with a scythe -09488711 18 n 01 giant 2 009 @ 09483738 n 0000 + 01385773 a 0103 + 01386538 a 0101 ~ 09489889 n 0000 ~ 09490572 n 0000 ~ 09490756 n 0000 ~ 09490825 n 0000 ~ 09581526 n 0000 ~ 09581859 n 0000 | an imaginary figure of superhuman size and strength; appears in folklore and fairy tales -09488995 18 n 01 hobbit 0 001 @ 09483738 n 0000 | an imaginary being similar to a person but smaller and with hairy feet; invented by J.R.R. Tolkien -09489146 18 n 01 Maxwell's_demon 0 001 @i 09483738 n 0000 | an imaginary creature that controls a small hole in a partition that divides a chamber filled with gas into two parts and allows fast molecules to move in one direction and slow molecules to move in the other direction through the hole; this would result in one part of the container becoming warmer and the other cooler, thus decreasing entropy and violating the second law of thermodynamics -09489601 18 n 01 mermaid 0 001 @ 09483738 n 0000 | half woman and half fish; lives in the sea -09489697 18 n 01 merman 0 001 @ 09483738 n 0000 | half man and half fish; lives in the sea -09489790 18 n 01 Martian 0 001 @i 09483738 n 0000 | imaginary people who live on the planet Mars -09489889 18 n 01 Argus 0 002 @ 09488711 n 0000 ;c 07979425 n 0000 | (Greek mythology) a giant with 100 eyes; was guardian of the heifer Io and was slain by Hermes -09490054 18 n 01 Cadmus 0 002 @ 09483738 n 0000 ;c 07979425 n 0000 | (Greek mythology) the brother of Europa and traditional founder of Thebes in Boeotia -09490210 18 n 01 Calypso 0 002 @ 09490352 n 0000 ;c 07979425 n 0000 | (Greek mythology) the sea nymph who detained Odysseus for seven years -09490352 18 n 01 sea_nymph 0 006 @ 09550125 n 0000 ;c 07979425 n 0000 ~ 09490210 n 0000 ~ 09550585 n 0000 ~ 09550899 n 0000 ~ 10601840 n 0000 | (Greek mythology) a water nymph who was the daughter of Oceanus or Nereus -09490572 18 n 01 Cyclops 0 003 @ 09488711 n 0000 ;c 07979425 n 0000 + 03058501 a 0101 | (Greek mythology) one of a race of giants having a single eye in the middle of their forehead -09490756 18 n 01 giantess 0 001 @ 09488711 n 0000 | a female giant -09490825 18 n 01 ogre 0 003 @ 09488711 n 0000 ;c 05985602 n 0000 ~ 09490961 n 0000 | (folklore) a giant who likes to eat human beings -09490961 18 n 01 ogress 0 001 @ 09490825 n 0000 | (folklore) a female ogre -09491038 18 n 01 Humpty_Dumpty 0 001 @i 09483738 n 0000 | an egg-shaped character in a nursery rhyme who fell off a wall and could not be put back together again (late 17th century) -09491222 18 n 01 Jack_Frost 0 001 @i 09483738 n 0000 | a personification of frost or winter weather -09491324 18 n 01 Mammon 0 002 @i 09483738 n 0000 ;c 06453849 n 0000 | (New Testament) a personification of wealth and avarice as an evil spirit; "ye cannot serve God and Mammon" -09491504 18 n 01 Scylla 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a sea nymph transformed into a sea monster who lived on one side of a narrow strait; drowned and devoured sailors who tried to escape Charybdis (a whirlpool) on the other side of the strait -09491784 18 n 01 Stentor 1 002 @i 09484664 n 0000 ;c 07979425 n 0000 | the mythical Greek warrior with an unusually loud voice who died after losing a shouting contest with Hermes -09491966 18 n 01 monster 2 003 @ 09483738 n 0000 ~ 09488117 n 0000 ~ 09492123 n 0000 | an imaginary creature usually having various human and animal parts -09492123 18 n 02 mythical_monster 0 mythical_creature 0 028 @ 09491966 n 0000 @ 09484664 n 0000 ~ 09487022 n 0000 ~ 09492733 n 0000 ~ 09492877 n 0000 ~ 09493043 n 0000 ~ 09493204 n 0000 ~ 09493562 n 0000 ~ 09494149 n 0000 ~ 09494388 n 0000 ~ 09494951 n 0000 ~ 09495103 n 0000 ~ 09495962 n 0000 ~ 09496099 n 0000 ~ 09496261 n 0000 ~ 09496802 n 0000 ~ 09498301 n 0000 ~ 09499056 n 0000 ~ 09499494 n 0000 ~i 09501198 n 0000 ~ 09501322 n 0000 ~ 09501427 n 0000 ~ 09502298 n 0000 ~ 09502481 n 0000 ~ 09502700 n 0000 ~ 09502906 n 0000 ~ 09503121 n 0000 ~i 09506337 n 0000 | a monster renowned in folklore and myth -09492733 18 n 01 amphisbaena 0 002 @ 09492123 n 0000 ;c 07978924 n 0000 | (classical mythology) a serpent with a head at each end of its body -09492877 18 n 01 basilisk 0 002 @ 09492123 n 0000 ;c 07978924 n 0000 | (classical mythology) a serpent (or lizard or dragon) able to kill with its breath or glance -09493043 18 n 01 centaur 0 003 @ 09492123 n 0000 ;c 07978924 n 0000 ~ 09493807 n 0000 | (classical mythology) a mythical being that is half man and half horse -09493204 18 n 02 Cerberus 0 hellhound 1 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) the three-headed dog guarding the entrance to Hades; son of Typhon -09493374 18 n 01 Charon 0 002 @ 10085449 n 0000 ;c 07979425 n 0000 | (Greek mythology) the ferryman who brought the souls of the dead across the river Styx or the river Acheron to Hades -09493562 18 n 02 Chimera 0 Chimaera 0 004 @ 09492123 n 0000 ;c 07979425 n 0000 + 02694247 a 0103 + 02694247 a 0102 | (Greek mythology) fire-breathing female monster with a lion's head and a goat's body and a serpent's tail; daughter of Typhon -09493807 18 n 01 Chiron 0 002 @ 09493043 n 0000 ;c 07979425 n 0000 | (Greek mythology) the learned centaur who tutored Achilles, Asclepius, Hercules, Jason, and other heroes -09493983 18 n 01 Circe 0 002 @ 10626540 n 0000 ;c 07979425 n 0000 | (Greek mythology) a sorceress who detained Odysseus on her island and turned his men into swine -09494149 18 n 01 cockatrice 0 001 @ 09492123 n 0000 | monster hatched by a reptile from a cock's egg; able to kill with a glance -09494280 18 n 01 Dardanus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) founder of Troy -09494388 18 n 02 dragon 2 firedrake 0 003 @ 09492123 n 0000 ~i 09494609 n 0000 ~ 09503486 n 0000 | a creature of Teutonic mythology; usually represented as breathing fire and having a reptilian body and sometimes wings -09494609 18 n 01 Fafnir 0 002 @i 09494388 n 0000 ;c 07983856 n 0000 | (Norse mythology) the Norse dragon that guarded a treasure and was slain by Sigurd -09494764 18 n 01 Ganymede 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a Trojan boy who was so beautiful that Zeus carried him away to serve as cupbearer to the gods -09494951 18 n 01 Geryon 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mythical monster with three heads that was slain by Hercules -09495103 18 n 01 Gorgon 0 005 @ 09492123 n 0000 ;c 07979425 n 0000 ~ 09497913 n 0000 ~ 09498072 n 0000 ~ 09498186 n 0000 | (Greek mythology) any of three winged sister monsters and the mortal Medusa who had live snakes for hair; a glance at Medusa turned the beholder to stone -09495382 18 n 01 Grace 0 005 @ 09551356 n 0000 ;c 07979425 n 0000 ~ 09495619 n 0000 ~ 09495732 n 0000 ~ 09495849 n 0000 | (Greek mythology) one of three sisters who were the givers of beauty and charm; a favorite subject for sculptors -09495619 18 n 01 Aglaia 0 002 @ 09495382 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the three Graces -09495732 18 n 01 Euphrosyne 0 002 @ 09495382 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the three Graces -09495849 18 n 01 Thalia 1 002 @ 09495382 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the three Graces -09495962 18 n 03 gryphon 0 griffin 0 griffon 0 001 @ 09492123 n 0000 | winged monster with the head of an eagle and the body of a lion -09496099 18 n 01 Harpy 1 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) vicious winged monster; often depicted as a bird with the head of a woman -09496261 18 n 01 Hydra 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) monster with nine heads; when struck off each head was replaced by two new ones; "Hydra was slain by Hercules" -09496460 18 n 01 Hyperborean 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of a people that the ancient Greeks believed lived in a warm and sunny land north of the source of the north wind -09496673 18 n 01 Hypnos 0 002 @i 09505418 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Greek god of sleep; the son of Nyx -09496802 18 n 01 leviathan 2 001 @ 09492123 n 0000 | monstrous sea creature symbolizing evil in the Old Testament -09496918 18 n 01 Niobe 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the daughter of Tantalus whose boasting about her children provoked Apollo and Artemis to slay them all; Niobe was turned to stone while bewailing her loss -09497163 18 n 01 Perseus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the son of Zeus who slew Medusa (with the help of Athena and Hermes) and rescued Andromeda from a sea monster -09497364 18 n 01 Andromeda 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) an Ethiopian princess and daughter of Cassiopeia; she was fastened to a rock and exposed to a sea monster that was sent by Poseidon, but she was rescued by Perseus and became his wife -09497641 18 n 01 Cepheus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) king of Ethiopia and husband of Cassiopeia -09497775 18 n 01 Cassiopeia 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the wife of Cepheus and mother of Andromeda -09497913 18 n 01 Medusa 0 002 @ 09495103 n 0000 ;c 07979425 n 0000 | (Greek mythology) a woman transformed into a Gorgon by Athena; she was slain by Perseus -09498072 18 n 01 Stheno 0 002 @ 09495103 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the three Gorgons -09498186 18 n 01 Euryale 0 002 @ 09495103 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the three Gorgons -09498301 18 n 04 manticore 0 mantichora 0 manticora 0 mantiger 0 001 @ 09492123 n 0000 | a mythical monster having the head of man (with horns) and the body of a lion and the tail of a scorpion -09498497 18 n 01 Midas 0 003 @i 09484664 n 0000 ;r 08780881 n 0000 ;c 06371413 n 0000 | (Greek legend) the greedy king of Phrygia who Dionysus gave the power to turn everything he touched into gold -09498697 18 n 01 Sisyphus 0 005 @i 09484664 n 0000 ;r 08780881 n 0000 ;c 06371413 n 0000 + 00837868 a 0101 + 02798167 a 0101 | (Greek legend) a king in ancient Greece who offended Zeus and whose punishment was to roll a huge boulder to the top of a steep hill; each time the boulder neared the top it rolled back down and Sisyphus was forced to start again -09499056 18 n 01 Minotaur 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mythical monster with the head of a bull and the body of a man; slain by Theseus -09499230 18 n 01 Morpheus 0 002 @i 09505418 n 0000 ;c 11218776 n 0000 | the Roman god of sleep and dreams -09499338 18 n 01 Narcissus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a beautiful young man who fell in love with his own reflection -09499494 18 n 01 Nemean_lion 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) an enormous lion strangled by Hercules as the first of his 12 labors -09499657 18 n 01 Nibelung 0 003 @ 09541125 n 0000 ;c 09689152 n 0000 ;c 07978423 n 0000 | (German mythology) any of the race of dwarfs who possessed a treasure hoard that was stolen by Siegfried -09499854 18 n 01 Nibelung 1 003 @i 09484664 n 0000 ;c 09689152 n 0000 ;c 07978423 n 0000 | (German mythology) a companion or follower of Siegfried -09500003 18 n 01 Bellerophon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mythical hero of Corinth who performed miracles on the winged horse Pegasus (especially killing the monster Chimera) -09500217 18 n 01 Paris 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the prince of Troy who abducted Helen from her husband Menelaus and provoked the Trojan War -09500398 18 n 01 Patroclus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a friend of Achilles who was killed in the Trojan War; his death led Achilles to return to the fight after his quarrel with Agamemnon -09500625 18 n 01 Pegasus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the immortal winged horse that sprang from the blood of the slain Medusa; was tamed by Bellerophon with the help of a bridle given him by Athena; as the flying horse of the Muses it is a symbol of highflying imagination -09500936 18 n 01 phoenix 0 001 @ 09484664 n 0000 | a legendary Arabian bird said to periodically burn itself to death and emerge from the ashes as a new phoenix; according to most versions only one phoenix lived at a time and it renewed itself every 500 years -09501198 18 n 01 Python 0 002 @i 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) dragon killed by Apollo at Delphi -09501322 18 n 01 roc 0 001 @ 09492123 n 0000 | mythical bird of prey having enormous size and strength -09501427 18 n 01 salamander 0 001 @ 09492123 n 0000 | reptilian creature supposed to live in fire -09501527 18 n 01 Sarpedon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a son of Zeus who became king of Lycia; fought on behalf of the Trojans in the Trojan War and was killed by Patroclus -09501737 18 n 01 Siegfried 0 003 @i 09484664 n 0000 ;c 09689152 n 0000 ;c 07978423 n 0000 | (German mythology) mythical German warrior hero of the Nibelungenlied who takes possession of the accursed treasure of the Nibelungs by slaying the dragon that guards it and awakens Brynhild and is eventually killed; Sigurd is the Norse counterpart -09502080 18 n 01 Sigurd 0 002 @i 09484664 n 0000 ;c 07983856 n 0000 | (Norse mythology) mythical Norse warrior hero who gains an accursed hoard of gold and was killed by Brynhild; Siegfried is the German counterpart -09502298 18 n 01 Sphinx 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) a riddling winged monster with a woman's head and breast on a lion's body; daughter of Typhon -09502481 18 n 01 troll 0 003 @ 09492123 n 0000 ;c 05985602 n 0000 ;r 08760510 n 0000 | (Scandanavian folklore) a supernatural creature (either a dwarf or a giant) that is supposed to live in caves or in the mountains -09502700 18 n 01 Typhoeus 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) son of Gaea and Tartarus who created the whirlwinds; had a terrifying voice and 100 dragon heads that spurted fire -09502906 18 n 01 Typhon 0 002 @ 09492123 n 0000 ;c 07979425 n 0000 | (Greek mythology) a monster with a hundred heads who breathed out flames; son of Typhoeus and father of Cerberus and the Chimera and the Sphinx -09503121 18 n 04 werewolf 0 wolfman 1 lycanthrope 0 loup-garou 0 001 @ 09492123 n 0000 | a monster able to change appearance from human to wolf and back again -09503282 18 n 01 witch 1 005 @ 09483738 n 0000 #m 08398467 n 0000 + 00776988 v 0104 ~ 10497046 n 0000 ~ 10767762 n 0000 | a being (usually female) imagined to have special powers derived from the devil -09503486 18 n 02 wyvern 0 wivern 0 001 @ 09494388 n 0000 | a fire-breathing dragon used in medieval heraldry; had the head of a dragon and the tail of a snake and a body with wings and two legs -09503682 18 n 01 nature 0 001 @ 00007347 n 0000 | a causal agent creating and controlling things in the universe; "the laws of nature"; "nature has seen to it that men are stronger than women" -09503877 18 n 02 supernatural 0 occult 0 006 @ 00007347 n 0000 + 00900071 a 0204 + 01574446 a 0101 %m 09504135 n 0000 %p 09504464 n 0000 %p 09504915 n 0000 | supernatural forces and events and beings collectively; "She doesn't believe in the supernatural" -09504135 18 n 02 spiritual_being 0 supernatural_being 0 010 @ 05941423 n 0000 #m 09503877 n 0000 ~ 09505418 n 0000 ~i 09536058 n 0000 ~ 09536584 n 0000 ~ 09538915 n 0000 ~ 09540430 n 0000 ~i 09543353 n 0000 ~ 09545324 n 0000 ~ 09545755 n 0000 | an incorporeal being believed to have powers to affect the course of human events -09504464 18 n 01 theurgy 0 002 @ 00007347 n 0000 #p 09503877 n 0000 | the effect of supernatural or divine intervention in human affairs -09504603 18 n 03 first_cause 0 prime_mover 0 primum_mobile 0 001 @ 00007347 n 0000 | an agent that is the cause of all things but does not itself have a cause; "God is the first cause" -09504790 18 n 01 control 0 001 @ 09545324 n 0000 | a spiritual agency that is assumed to assist the medium during a seance -09504915 18 n 02 destiny 0 fate 0 003 @ 00007347 n 0000 #p 09503877 n 0000 + 00746479 v 0202 | the ultimate agency regarded as predetermining the course of events (often personified as a woman); "we are helpless in the face of destiny" -09505153 18 n 01 spiritual_leader 0 010 @ 09623038 n 0000 ~ 09891864 n 0000 ~ 09901786 n 0000 ~ 09927451 n 0000 ~ 10067305 n 0000 ~ 10406905 n 0000 ~ 10453533 n 0000 ~ 10471250 n 0000 ~ 10502329 n 0000 ~i 10989339 n 0000 | a leader in religious or sacred affairs -09505418 18 n 04 deity 0 divinity 0 god 1 immortal 0 033 @ 09504135 n 0000 #m 08153337 n 0000 + 01179767 a 0201 + 00693401 v 0101 ~i 09487546 n 0000 ~i 09496673 n 0000 ~i 09499230 n 0000 ~ 09506216 n 0000 ~ 09506830 n 0000 ~ 09506973 n 0000 ~ 09507097 n 0000 ~ 09510904 n 0000 ~ 09513902 n 0000 ~ 09522978 n 0000 ~ 09531630 n 0000 ~i 09532384 n 0000 ~i 09532837 n 0000 ~ 09533048 n 0000 ~ 09534428 n 0000 ~ 09535622 n 0000 ~ 09535708 n 0000 ~ 09538633 n 0000 ~ 09547903 n 0000 ~ 09551356 n 0000 ~ 09552681 n 0000 ~ 09578465 n 0000 ~ 09585434 n 0000 ~ 09586011 n 0000 ~ 09593937 n 0000 ~i 10501097 n 0000 ~ 10547145 n 0000 ~ 10767654 n 0000 ~ 10805783 n 0000 | any supernatural being worshipped as controlling some part of the world or some aspect of life or who is the personification of a force -09506216 18 n 02 daemon 1 demigod 0 002 @ 09505418 n 0000 ~ 09547629 n 0000 | a person who is part mortal and part god -09506337 18 n 03 Fury 0 Eumenides 0 Erinyes 0 005 @i 09492123 n 0000 ;c 07978924 n 0000 ~ 09506598 n 0000 ~ 09506674 n 0000 ~ 09506751 n 0000 | (classical mythology) the hideous snake-haired monsters (usually three in number) who pursued unpunished criminals -09506598 18 n 01 Alecto 0 001 @ 09506337 n 0000 | one of the three Furies -09506674 18 n 01 Megaera 0 001 @ 09506337 n 0000 | one of the three Furies -09506751 18 n 01 Tisiphone 0 001 @ 09506337 n 0000 | one of the three Furies -09506830 18 n 01 sea_god 0 001 @ 09505418 n 0000 | a deity that personifies the sea and is usually believed to live in or to control the sea -09506973 18 n 01 sun_god 0 001 @ 09505418 n 0000 | a god that personifies the sun or is otherwise associated with the sun -09507097 18 n 01 Celtic_deity 0 025 @ 09505418 n 0000 ~i 09507639 n 0000 ~i 09507756 n 0000 ~i 09507909 n 0000 ~i 09508076 n 0000 ~i 09508228 n 0000 ~i 09508368 n 0000 ~i 09508474 n 0000 ~i 09508666 n 0000 ~i 09508809 n 0000 ~i 09508975 n 0000 ~i 09509119 n 0000 ~i 09509232 n 0000 ~ 09509375 n 0000 ~i 09509546 n 0000 ~i 09509678 n 0000 ~ 09509770 n 0000 ~ 09509911 n 0000 ~i 09510073 n 0000 ~i 09510164 n 0000 ~i 09510305 n 0000 ~i 09510419 n 0000 ~i 09510527 n 0000 ~i 09510643 n 0000 ~ 09510746 n 0000 | a deity worshipped by the Celts -09507639 18 n 01 Amaethon 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | the farmer god; ancient god of agriculture -09507756 18 n 01 Ana 0 003 @i 09507097 n 0000 ;r 08859173 n 0000 ;c 15253139 n 0000 | mother of the ancient Irish gods; sometimes identified with Danu -09507909 18 n 04 Angus_Og 0 Aengus 0 Oengus 0 Angus 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic god of love and beauty; patron deity of young men and women -09508076 18 n 01 Arawn 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic deity who was the lord of Annwfn (the other world or the land of fairies) -09508228 18 n 02 Arianrhod 0 Arianrod 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic goddess famous for her beauty; mother of Dylan -09508368 18 n 01 Boann 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic goddess; mother of Angus Og -09508474 18 n 01 Brigit 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic goddess of fire and fertility and agriculture and household arts and wisdom; later associated with Saint Bridget -09508666 18 n 01 Dagda 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | chief Celtic god of the Tuatha De Danann; father of Angus Og and Brigit -09508809 18 n 02 Danu 0 Dana 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic goddess who was the mother of the Tuatha De Danann; identified with the Welsh Don -09508975 18 n 01 Don 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic goddess; mother of Gwydion and Arianrhod; corresponds to Irish Danu -09509119 18 n 01 Dylan 1 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic god of the waves; son of Arianrhod -09509232 18 n 01 Epona 0 002 @i 09507097 n 0000 ;c 07983170 n 0000 | (possibly Roman mythology) Celtic goddess of horses and mules and asses -09509375 18 n 02 Fomor 0 Fomorian 0 002 @ 09507097 n 0000 ;r 08859173 n 0000 | one of a group of Celtic sea demons sometimes associated with the hostile power of nature -09509546 18 n 01 Gwydion 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic sky god; a magician; giver of arts and civilization -09509678 18 n 01 Gwyn 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic underworld god -09509770 18 n 02 Lir 0 Ler 0 002 @ 09507097 n 0000 ;r 08859173 n 0000 | the sea personified; father of Manannan; corresponds to Welsh Llyr -09509911 18 n 01 Llew_Llaw_Gyffes 0 002 @ 09507097 n 0000 ;r 08894456 n 0000 | son of Gwydion and Arianrhod; supported by magic of Gwydion; cursed by Arianrhod -09510073 18 n 01 LLud 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | a Celtic warrior god -09510164 18 n 01 Llyr 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic deity who was the father of Manawydan; corresponds to Irish Lir -09510305 18 n 02 Lug 0 Lugh 0 003 @i 09507097 n 0000 ;r 08859173 n 0000 ;c 15253139 n 0000 | ancient Celtic god -09510419 18 n 01 Manannan 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic god of the sea; son of Ler -09510527 18 n 02 Manawydan 0 Manawyddan 0 002 @i 09507097 n 0000 ;r 08894456 n 0000 | Celtic sea god; son of Llyr -09510643 18 n 02 Morrigan 0 Morrigu 0 002 @i 09507097 n 0000 ;r 08859173 n 0000 | Celtic war goddess -09510746 18 n 02 Tuatha_De_Danann 0 Tuatha_De 0 002 @ 09507097 n 0000 ;r 08859173 n 0000 | race of Celtic gods or demigods; ruled Ireland in the Golden Age -09510904 18 n 01 Egyptian_deity 0 020 @ 09505418 n 0000 ;c 15253139 n 0000 ~ 09511368 n 0000 ~i 09511519 n 0000 ~i 09511712 n 0000 ~i 09511875 n 0000 ~i 09512028 n 0000 ~i 09512157 n 0000 ~i 09512266 n 0000 ~i 09512391 n 0000 ~i 09512516 n 0000 ~i 09512611 n 0000 ~i 09512692 n 0000 ~i 09512835 n 0000 ~i 09512913 n 0000 ~i 09513065 n 0000 ~i 09513216 n 0000 ~i 09513430 n 0000 ~i 09513569 n 0000 ~i 09513744 n 0000 | a deity worshipped by the ancient Egyptians -09511368 18 n 03 Amen 0 Amon 0 Amun 0 001 @ 09510904 n 0000 | a primeval Egyptian personification of air and breath; worshipped especially at Thebes -09511519 18 n 03 Amen-Ra 0 Amon-Ra 0 Amun_Ra 0 001 @i 09510904 n 0000 | Egyptian sun god; supreme god of the universe in whom Amen and Ra were merged; principal deity during Theban supremacy -09511712 18 n 02 Anubis 0 Anpu 0 001 @i 09510904 n 0000 | Egyptian god of tombs and ruler of the underworld; usually depicted as a man with the head of a jackal -09511875 18 n 02 Aten 0 Aton 0 001 @i 09510904 n 0000 | the sun (or solar disc) which was the deity of a monotheistic cult under the Pharaoh Akhenaten -09512028 18 n 01 Bast 0 001 @i 09510904 n 0000 | cat- or lion-headed Egyptian goddess; represents life-giving power of the sun -09512157 18 n 02 Geb 0 Keb 0 001 @i 09510904 n 0000 | Egyptian god of the earth; father of Osiris and Isis -09512266 18 n 01 Horus 0 001 @i 09510904 n 0000 | Egyptian solar god with the head of a falcon; the son of Osiris and Isis -09512391 18 n 01 Isis 0 001 @i 09510904 n 0000 | Egyptian goddess of fertility; daughter of Geb; sister and wife of Osiris -09512516 18 n 01 Khepera 0 001 @i 09510904 n 0000 | Egyptian god of the morning sun; creator -09512611 18 n 01 Min 0 001 @i 09510904 n 0000 | an Egyptian god of procreation -09512692 18 n 01 Nephthys 0 001 @i 09510904 n 0000 | Egyptian goddess associated with ritual of the dead; sister of Geb and Nut; wife of Set -09512835 18 n 01 Nut 0 001 @i 09510904 n 0000 | Egyptian goddess of the sky -09512913 18 n 01 Osiris 0 001 @i 09510904 n 0000 | Egyptian god of the underworld and judge of the dead; husband and brother of Isis; father of Horus -09513065 18 n 01 Ptah 0 001 @i 09510904 n 0000 | a major Egyptian god; shaper of the world; father of gods and men; worshipped especially at Memphis -09513216 18 n 02 Ra 0 Re 0 002 @i 09510904 n 0000 ;c 15253139 n 0000 | ancient Egyptian sun god with the head of a hawk; a universal creator; he merged with the god Amen as Amen-Ra to become the king of the gods -09513430 18 n 02 Sekhet 0 Eye_of_Ra 0 001 @i 09510904 n 0000 | a lion-headed Egyptian goddess; typifies life-destroying power of the sun -09513569 18 n 02 Set 0 Seth 1 001 @i 09510904 n 0000 | evil Egyptian god with the head of a beast that has high square ears and a long snout; brother and murderer of Osiris -09513744 18 n 01 Thoth 0 001 @i 09510904 n 0000 | Egyptian Moon deity with the head of an ibis; god of wisdom and learning and the arts; scribe of the gods -09513902 18 n 01 Semitic_deity 0 055 @ 09505418 n 0000 ;c 15253139 n 0000 ~i 09515027 n 0000 ~i 09515131 n 0000 ~i 09515269 n 0000 ~i 09515473 n 0000 ~i 09515570 n 0000 ~ 09515712 n 0000 ~i 09515877 n 0000 ~i 09515988 n 0000 ~i 09516146 n 0000 ~i 09516323 n 0000 ~i 09516498 n 0000 ~i 09516700 n 0000 ~i 09516881 n 0000 ~i 09517057 n 0000 ~i 09517209 n 0000 ~i 09517342 n 0000 ~i 09517492 n 0000 ~i 09517628 n 0000 ~i 09517890 n 0000 ~i 09518020 n 0000 ~i 09518145 n 0000 ~i 09518306 n 0000 ~i 09518451 n 0000 ~i 09518578 n 0000 ~i 09518683 n 0000 ~i 09518782 n 0000 ~i 09518908 n 0000 ~ 09519075 n 0000 ~i 09519192 n 0000 ~i 09519288 n 0000 ~i 09519454 n 0000 ~i 09519596 n 0000 ~i 09519748 n 0000 ~i 09519901 n 0000 ~i 09520103 n 0000 ~i 09520223 n 0000 ~i 09520367 n 0000 ~i 09520498 n 0000 ~i 09520617 n 0000 ~i 09520752 n 0000 ~i 09520880 n 0000 ~i 09521051 n 0000 ~i 09521157 n 0000 ~i 09521395 n 0000 ~i 09521521 n 0000 ~i 09521648 n 0000 ~i 09521763 n 0000 ~i 09521994 n 0000 ~i 09522121 n 0000 ~i 09522222 n 0000 ~i 09522344 n 0000 ~i 09522498 n 0000 ~i 09522615 n 0000 | a deity worshipped by the ancient Semites -09515027 18 n 01 Adad 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian god of storms and wind -09515131 18 n 01 Adapa 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | a Babylonian demigod or first man (sometimes identified with Adam) -09515269 18 n 01 Anshar 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | the Babylonian father of the gods; identified with Assyrian Ashur; in Sumerian the name signifies `the totality of the upper world' -09515473 18 n 01 Antum 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian consort of Anu -09515570 18 n 01 Anu 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian god of the sky; one of the supreme triad including Bel and Ea -09515712 18 n 02 Anunnaki 0 Enuki 0 002 @ 09513902 n 0000 ;r 08916832 n 0000 | any of a group of powerful Babylonian earth spirits or genii; servitors of the gods -09515877 18 n 01 Apsu 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | father of the gods and consort of Tiamat -09515988 18 n 01 Aruru 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | mother and earth goddess in Gilgamish epic; identified with Sumerian Ki and Ninkhursag -09516146 18 n 02 Ashur 0 Ashir 0 002 @i 09513902 n 0000 ;r 08918944 n 0000 | chief god of the Assyrians; god of military prowess and empire; identified with Babylonian Anshar -09516323 18 n 02 Astarte 0 Ashtoreth 0 002 @i 09513902 n 0000 ;r 08919693 n 0000 | an ancient Phoenician goddess of love and fertility; the Phoenician counterpart to Ishtar -09516498 18 n 02 Ishtar 0 Mylitta 0 003 @i 09513902 n 0000 ;r 08916832 n 0000 ;r 08918944 n 0000 | Babylonian and Assyrian goddess of love and fertility and war; counterpart to the Phoenician Astarte -09516700 18 n 01 Baal 0 001 @i 09513902 n 0000 | any of numerous local fertility and nature deities worshipped by ancient Semitic peoples; the Hebrews considered Baal a false god -09516881 18 n 01 Bel 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian god of the earth; one of the supreme triad including Anu and Ea; earlier identified with En-lil -09517057 18 n 01 Dagon 0 003 @i 09513902 n 0000 ;r 08919693 n 0000 ;r 08799706 n 0000 | god of agriculture and the earth; national god of Philistines -09517209 18 n 01 Dagan 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | god of agriculture and earth; counterpart of Phoenician Dagon -09517342 18 n 02 Damkina 0 Damgalnunna 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | (Babylonian) earth goddess; consort of Ea and mother of Marduk -09517492 18 n 02 Dumuzi 0 Tammuz 0 001 @i 09513902 n 0000 | Sumerian and Babylonian god of pastures and vegetation; consort of Inanna -09517628 18 n 01 Ea 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | the Babylonian god of wisdom; son of Apsu and father of Marduk; counterpart of the Sumerian Enki; as one of the supreme triad including Anu and Bel he was assigned control of the watery element -09517890 18 n 01 Enki 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | water god and god of wisdom; counterpart of the Akkadian Ea -09518020 18 n 02 Enlil 0 En-lil 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | god of the air and king of the Sumerian gods -09518145 18 n 03 Ereshkigal 0 Eresh-kigal 0 Ereshkigel 0 003 @i 09513902 n 0000 ;r 08918248 n 0000 ;r 08916316 n 0000 | goddess of death and consort of Nergal -09518306 18 n 01 Girru 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | the Babylonian god of fire; often invoked in incantations against sorcery -09518451 18 n 01 Gula 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | the Babylonian goddess of healing and consort of Ninurta -09518578 18 n 01 Igigi 0 001 @i 09513902 n 0000 | any of a group of heavenly spirits under the god Anu -09518683 18 n 01 Inanna 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | consort of Dumuzi (Tammuz) -09518782 18 n 01 Ki 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | goddess personifying earth; counterpart of Akkadian Aruru -09518908 18 n 01 Kishar 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian consort of Anshar; in Sumerian the name signifies `the totality of the lower world' -09519075 18 n 01 Lilith 0 001 @ 09513902 n 0000 | in ancient Semitic folklore: a female demon who attacks children -09519192 18 n 01 Mama 2 001 @i 09513902 n 0000 | a name under which Ninkhursag was worshipped -09519288 18 n 04 Marduk 0 Merodach 0 Baal_Merodach 0 Bel-Merodach 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | the chief Babylonian god; his consort was Sarpanitu -09519454 18 n 02 Moloch 1 Molech 0 001 @i 09513902 n 0000 | god of the Canaanites and Phoenicians to whom parents sacrificed their children -09519596 18 n 02 Nabu 0 Nebo 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian god of wisdom and agriculture and patron of scribes and schools -09519748 18 n 01 Nammu 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | goddess personifying the primeval sea; mother of the gods and of heaven and earth -09519901 18 n 02 Namtar 0 Namtaru 0 003 @i 09513902 n 0000 ;r 08918248 n 0000 ;r 08916316 n 0000 | a demon personifying death; messenger of the underworld goddess Ereshkigal bringing death to mankind -09520103 18 n 01 Nanna 2 002 @i 09513902 n 0000 ;r 08918248 n 0000 | god of the Moon; counterpart of the Akkadian Sin -09520223 18 n 01 Nergal 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | (Akkadian) god ruling with his consort Ereshkigal the world of the dead -09520367 18 n 01 Nina 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | the Babylonian goddess of the watery deep and daughter of Ea -09520498 18 n 01 Ningal 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | (Akkadian) a goddess; wife of the Moon god Sin -09520617 18 n 01 Ningirsu 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | Babylonian god in older pantheon: god of war and agriculture -09520752 18 n 01 Ningishzida 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | an underworld Babylonian deity; patron of medicine -09520880 18 n 03 Ninkhursag 0 Ninhursag 0 Ninkharsag 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | the great mother goddess; worshipped also as Aruru and Mama and Nintu -09521051 18 n 02 Nintu 0 Nintoo 0 001 @i 09513902 n 0000 | a name under which Ninkhursag was worshipped -09521157 18 n 02 Ninurta 0 Ninib 0 003 @i 09513902 n 0000 ;r 08918248 n 0000 ;r 08916832 n 0000 | a solar deity; firstborn of Bel and consort was Gula; god of war and the chase and agriculture; sometimes identified with biblical Nimrod -09521395 18 n 01 Nusku 0 002 @i 09513902 n 0000 ;r 08918944 n 0000 | god of fire and light; corresponds to Babylonian Girru -09521521 18 n 01 Ramman 0 002 @i 09513902 n 0000 ;r 08918944 n 0000 | god of storms and wind; corresponds to Babylonian Adad -09521648 18 n 03 Sarpanitu 0 Zirbanit 0 Zarpanit 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | consort of Marduk -09521763 18 n 01 Shamash 0 003 @i 09513902 n 0000 ;r 08918944 n 0000 ;r 08916832 n 0000 | the chief sun god; drives away winter and storms and brightens the earth with greenery; drives away evil and brings justice and compassion -09521994 18 n 01 Sin 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | (Akkadian) god of the Moon; counterpart of Sumerian Nanna -09522121 18 n 02 Tashmit 0 Tashmitum 0 002 @i 09513902 n 0000 ;r 08916832 n 0000 | consort of Nabu -09522222 18 n 01 Tiamat 0 002 @i 09513902 n 0000 ;r 08916316 n 0000 | (Akkadian) mother of the gods and consort of Apsu -09522344 18 n 01 Utnapishtim 0 001 @i 09513902 n 0000 | favorite of the gods and grandfather of Gilgamish; survived the great flood and became immortal -09522498 18 n 02 Utu 0 Utug 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | sun god; counterpart of Akkadian Shamash -09522615 18 n 02 Zu 0 Zubird 0 002 @i 09513902 n 0000 ;r 08918248 n 0000 | evil storm god represented as a black bird -09522735 18 n 01 Enkidu 0 002 @i 09484664 n 0000 ;r 08918248 n 0000 | legendary friend of Gilgamish -09522837 18 n 01 Gilgamish 0 002 @i 09484664 n 0000 ;r 08918248 n 0000 | legendary Sumerian king and hero of Sumerian and Babylonian epics -09522978 18 n 01 Hindu_deity 0 052 @ 09505418 n 0000 ;c 06236802 n 0000 ~i 09524027 n 0000 ~ 09524151 n 0000 ~i 09524263 n 0000 ~i 09524440 n 0000 ~ 09524555 n 0000 ~ 09524671 n 0000 ~i 09524840 n 0000 ~i 09524921 n 0000 ~i 09525065 n 0000 ~i 09525170 n 0000 ~i 09525279 n 0000 ~i 09525486 n 0000 ~ 09525579 n 0000 ~i 09525746 n 0000 ~i 09525874 n 0000 ~i 09525961 n 0000 ~ 09526107 n 0000 ~i 09526221 n 0000 ~i 09526367 n 0000 ~i 09526497 n 0000 ~i 09526606 n 0000 ~i 09526703 n 0000 ~i 09526808 n 0000 ~i 09526913 n 0000 ~i 09527001 n 0000 ~i 09527091 n 0000 ~ 09527185 n 0000 ~i 09527291 n 0000 ~i 09527454 n 0000 ~i 09527560 n 0000 ~i 09527707 n 0000 ~i 09527924 n 0000 ~i 09528032 n 0000 ~ 09528135 n 0000 ~i 09528237 n 0000 ~i 09528380 n 0000 ~i 09528475 n 0000 ~i 09528587 n 0000 ~i 09528727 n 0000 ~i 09529013 n 0000 ~ 09529083 n 0000 ~i 09529201 n 0000 ~i 09529364 n 0000 ~i 09529454 n 0000 ~ 09529573 n 0000 ~i 09529644 n 0000 ~i 09529933 n 0000 ~i 09529999 n 0000 ~i 09530141 n 0000 ~ 09530238 n 0000 | a deity worshipped by the Hindus -09524027 18 n 01 Aditi 0 001 @i 09522978 n 0000 | a Hindu goddess who releases from sin or disease; mother of the Adityas -09524151 18 n 01 Aditya 0 001 @ 09522978 n 0000 | one of 7 to 12 sons of Aditi; Hindu gods of celestial light -09524263 18 n 01 Agni 0 002 @i 09522978 n 0000 ;c 06969129 n 0000 | (Sanskrit) Hindu god of fire in ancient and traditional India; one of the three chief deities of the Vedas -09524440 18 n 01 Asura 0 001 @i 09522978 n 0000 | earlier a god; later a demon; counterpart of Zoroastrian Ahura -09524555 18 n 01 Ahura 0 002 @ 09522978 n 0000 ;c 06244149 n 0000 | (Zoroastrianism) title for benevolent deities -09524671 18 n 01 Asvins 0 002 @ 09522978 n 0000 ;c 06969129 n 0000 | (literally `possessing horses' in Sanskrit) in Hinduism the twin chariot warriors conveying Surya -09524840 18 n 01 Bhaga 0 001 @i 09522978 n 0000 | Hindu god of wealth and love -09524921 18 n 01 Brahma 0 002 @i 09522978 n 0000 #m 07986617 n 0000 | the Creator; one of the three major deities in the later Hindu pantheon -09525065 18 n 01 Brihaspati 0 001 @i 09522978 n 0000 | personification of the power of ritual devotion -09525170 18 n 01 Bhumi_Devi 0 001 @i 09522978 n 0000 | Hindu earth goddess; one of the two wives of Vishnu -09525279 18 n 01 Devi 0 001 @i 09522978 n 0000 | Hindu mother goddess; supreme power in the universe; wife or embodiment of the female energy of Siva having both beneficent and malevolent forms or aspects -09525486 18 n 01 Chandi 0 001 @i 09522978 n 0000 | malevolent aspect of Devi; "the fierce" -09525579 18 n 01 Dharma 0 001 @ 09522978 n 0000 | basic principles of the cosmos; also: an ancient sage in Hindu mythology worshipped as a god by some lower castes; -09525746 18 n 01 Durga 0 001 @i 09522978 n 0000 | Hindu goddess of war; a malevolent aspect of Devi; "the inaccessible Durga" -09525874 18 n 02 Dyaus 0 Dyaus-pitar 0 001 @i 09522978 n 0000 | Hindu god of the sky -09525961 18 n 04 Ganesh 0 Ganesa 0 Ganesha 0 Ganapati 0 001 @i 09522978 n 0000 | Hindu god of wisdom or prophecy; the god who removes obstacles -09526107 18 n 01 Garuda 0 001 @ 09522978 n 0000 | a supernatural eagle-like being that serves as Vishnu's mount -09526221 18 n 01 Gauri 0 001 @i 09522978 n 0000 | in Hinduism, goddess of purity and posterity and a benevolent aspect of Devi; the `brilliant' -09526367 18 n 01 Hanuman 0 001 @i 09522978 n 0000 | in Hinduism, the monkey god and helper of Rama; god of devotion and courage -09526497 18 n 01 Indra 0 001 @i 09522978 n 0000 | chief Hindu god of the Rig-Veda; god of rain and thunder -09526606 18 n 01 Ka 0 001 @i 09522978 n 0000 | unknown god; an epithet of Prajapati and Brahma -09526703 18 n 01 Kali 0 001 @i 09522978 n 0000 | wife of Siva and malevolent form of Devi; "the black" -09526808 18 n 01 Kama 0 001 @i 09522978 n 0000 | Hindu god of love and erotic desire; opposite of Mara -09526913 18 n 01 Mara 0 001 @i 09522978 n 0000 | Hindu god of death; opposite of Kama -09527001 18 n 02 Kartikeya 0 Karttikeya 0 001 @i 09522978 n 0000 | Hindu god of bravery -09527091 18 n 01 Lakshmi 0 001 @i 09522978 n 0000 | Hindu goddess of fortune and prosperity -09527185 18 n 01 Marut 0 001 @ 09522978 n 0000 | any of a group of Hindu storm gods; offspring of Rudra -09527291 18 n 01 Mitra 0 001 @i 09522978 n 0000 | Hindu god of friendship and alliances; usually invoked together with Varuna as a supporter of heaven and earth -09527454 18 n 01 Parjanya 0 001 @i 09522978 n 0000 | Hindu god of rain; sometimes identified with Indra -09527560 18 n 03 Parvati 0 Anapurna 0 Annapurna 0 001 @i 09522978 n 0000 | wife of Siva and a benevolent aspect of Devi: Hindu goddess of plenty -09527707 18 n 01 Prajapati 0 001 @i 09522978 n 0000 | Hindu god personifying a creative force; equivalent to Brahma -09527825 18 n 01 Praxiteles 0 001 @i 10566072 n 0000 | ancient Greek sculptor (circa 370-330 BC) -09527924 18 n 01 Pushan 0 001 @i 09522978 n 0000 | celestial shepherd god; conductor of souls of the dead -09528032 18 n 01 Rahu 0 001 @i 09522978 n 0000 | a Hindu demon who swallows the sun causing eclipses -09528135 18 n 02 Ribhus 0 Rhibhus 0 001 @ 09522978 n 0000 | one of three artisans of the Hindu gods -09528237 18 n 01 Rudra 0 001 @i 09522978 n 0000 | father of the Hindu storm gods Marut; controller of nature; sometimes identified with Siva -09528380 18 n 01 Sarasvati 0 001 @i 09522978 n 0000 | Hindu goddess of learning and the arts -09528475 18 n 01 Savitar 0 001 @i 09522978 n 0000 | an important Hindu god; the sun in its life-giving aspect -09528587 18 n 02 Shakti 0 Sakti 0 001 @i 09522978 n 0000 | the female or generative principle; wife of Siva and a benevolent form of Devi -09528727 18 n 02 Siva 0 Shiva 0 004 @i 09522978 n 0000 #m 07986617 n 0000 + 09685564 n 0201 ~i 09528919 n 0000 | the destroyer; one of the three major divinities in the later Hindu pantheon -09528919 18 n 01 Bairava 0 001 @i 09528727 n 0000 | epithet of Siva; "the terrible Bairava" -09529013 18 n 01 Skanda 0 001 @i 09522978 n 0000 | Hindu god of war -09529083 18 n 01 Soma 0 001 @ 09522978 n 0000 | personification of a sacred intoxicating drink used in Vedic ritual -09529201 18 n 01 Surya 0 001 @i 09522978 n 0000 | an important god of later Hinduism; the sun god or the sun itself worshipped as the source of warmth and light -09529364 18 n 01 Uma 0 001 @i 09522978 n 0000 | a benevolent aspect of Devi; `splendor' -09529454 18 n 01 Ushas 0 001 @i 09522978 n 0000 | Hindu goddess of dawn; daughter of the sky and sister of the night -09529573 18 n 01 Vajra 0 001 @ 09522978 n 0000 | Indra's thunderbolt -09529644 18 n 01 Varuna 0 001 @i 09522978 n 0000 | in Vedism, god of the night sky who with his thousand eyes watches over human conduct and judges good and evil and punishes evildoers; often considered king of the Hindu gods and frequently paired with Mitra as an upholder of the world -09529933 18 n 01 Vayu 0 001 @i 09522978 n 0000 | Hindu wind god -09529999 18 n 01 Vishnu 0 002 @i 09522978 n 0000 #m 07986617 n 0000 | the sustainer; a Hindu divinity worshipped as the preserver of worlds -09530141 18 n 01 Yama 0 001 @i 09522978 n 0000 | Hindu god of death and lord of the underworld -09530238 18 n 01 avatar 0 005 @ 09522978 n 0000 ~i 09530515 n 0000 ~i 09530629 n 0000 ~i 09530721 n 0000 ~i 09530867 n 0000 | the manifestation of a Hindu deity (especially Vishnu) in human or superhuman or animal form; "the Buddha is considered an avatar of the god Vishnu" -09530515 18 n 04 Jagannath 0 Jagannatha 0 Jagganath 0 Juggernaut 0 001 @i 09530238 n 0000 | an avatar of Vishnu -09530629 18 n 01 Kalki 0 001 @i 09530238 n 0000 | the 10th and last incarnation of Vishnu -09530721 18 n 01 Krishna 0 001 @i 09530238 n 0000 | 8th and most important avatar of Vishnu; incarnated as a handsome young man playing a flute -09530867 18 n 01 Rama 0 004 @i 09530238 n 0000 ~i 09531186 n 0000 ~i 09531409 n 0000 ~i 09531515 n 0000 | avatar of Vishnu whose name is synonymous with God; any of three incarnations: Ramachandra or Parashurama or Balarama; "in Hindu folklore Rama is the epitome of chivalry and courage and obedience to sacred law" -09531186 18 n 01 Ramachandra 0 001 @i 09530867 n 0000 | a hero in Hindu mythology; an incarnation of Vishnu -09531296 18 n 01 Sita 0 001 @i 09484664 n 0000 | wife of the Hindu god Rama; regarded as an ideal of womanhood -09531409 18 n 01 Balarama 0 001 @i 09530867 n 0000 | elder brother of Krishna; an incarnation of Vishnu -09531515 18 n 01 Parashurama 0 001 @i 09530867 n 0000 | an incarnation of Vishnu who rid the earth of Kshatriyas -09531630 18 n 01 Persian_deity 0 006 @ 09505418 n 0000 ;c 15253139 n 0000 ~i 09531826 n 0000 ~i 09531955 n 0000 ~i 09532101 n 0000 ~i 10806612 n 0000 | a deity worshiped by the ancient Persians -09531826 18 n 02 Mithras 0 Mithra 0 002 @i 09531630 n 0000 + 03019322 a 0102 | ancient Persian god of light and truth; sun god -09531955 18 n 03 Ormazd 0 Ormuzd 0 Ahura_Mazda 0 001 @i 09531630 n 0000 | chief deity of Zoroastrianism; source of light and embodiment of good -09532101 18 n 01 Ahriman 0 001 @i 09531630 n 0000 | the spirit of evil in Zoroastrianism; arch rival of Ormazd -09532214 18 n 05 Buddha 0 Siddhartha 0 Gautama 0 Gautama_Siddhartha 0 Gautama_Buddha 0 001 @i 10343554 n 0000 | founder of Buddhism; worshipped as a god (c 563-483 BC) -09532384 18 n 02 Bodhisattva 0 Boddhisatva 0 003 @i 09505418 n 0000 ~i 09532553 n 0000 ~i 09532691 n 0000 | Buddhist worthy of nirvana who postpones it to help others -09532553 18 n 01 Maitreya 0 001 @i 09532384 n 0000 | the Bodhisattva who is to appear as a Buddha 5000 years after the death of Gautama -09532691 18 n 02 Avalokitesvara 0 Avalokiteshvara 0 001 @i 09532384 n 0000 | a male Bodhisattva; widely associated with various gods and people -09532837 18 n 03 Arhat 0 Arhant 0 lohan 0 001 @i 09505418 n 0000 | a Buddhist who has attained nirvana -09532942 18 n 01 Buddha 2 001 @ 10546850 n 0000 | one who has achieved a state of perfect enlightenment -09533048 18 n 01 Chinese_deity 0 009 @ 09505418 n 0000 ;c 15253139 n 0000 ~i 09533301 n 0000 ~i 09533406 n 0000 ~i 09533498 n 0000 ~i 09533668 n 0000 ~i 09533790 n 0000 ~i 09533910 n 0000 ~i 09534187 n 0000 | a deity worshipped by the ancient Chinese -09533301 18 n 02 Chang_Kuo 0 Chang_Kuo-lao 0 001 @i 09533048 n 0000 | one of the 8 immortals of Taoism -09533406 18 n 02 Wen_Ch'ang 0 Wen-Ti 0 001 @i 09533048 n 0000 | Chinese god of literature -09533498 18 n 01 Taoist_Trinity 0 004 @i 09533048 n 0000 %m 09533668 n 0000 %m 09533790 n 0000 %m 09533910 n 0000 | the three pure ones; the three chief gods of Taoism -09533668 18 n 02 Tien-pao 0 Heavenly_Jewel 0 002 @i 09533048 n 0000 #m 09533498 n 0000 | a member of the Taoist Trinity -09533790 18 n 02 Ling-pao 0 Mystic_Jewel 0 002 @i 09533048 n 0000 #m 09533498 n 0000 | a member of the Taoist Trinity -09533910 18 n 02 Shen-pao 0 Spiritual_Jewel 0 002 @i 09533048 n 0000 #m 09533498 n 0000 | a member of the Taoist Trinity; identified with Lao-tse -09534058 18 n 01 Chuang-tzu 0 001 @i 10343554 n 0000 | 4th-century Chinese philosopher on whose teachings Lao-tse based Taoism -09534187 18 n 02 Kwan-yin 0 Kuan_Yin 0 002 @i 09533048 n 0000 ;c 06240244 n 0000 | (Buddhism) a female Bodhisattva; often called goddess of mercy and considered an aspect of the Bodhisattva Avalokitesvara; identified with Japanese Kwannon -09534428 18 n 01 Japanese_deity 0 009 @ 09505418 n 0000 ~i 09534675 n 0000 ~i 09534843 n 0000 ~i 09534918 n 0000 ~i 09535001 n 0000 ~i 09535130 n 0000 ~i 09535255 n 0000 ~i 09535409 n 0000 ~i 09535504 n 0000 | a deity worshipped by the Japanese -09534675 18 n 02 Amaterasu 0 Amaterasu_Omikami 0 001 @i 09534428 n 0000 | central deity of Shinto; goddess personifying the sun and ancestress of the rulers of Japan -09534843 18 n 01 Hachiman 0 001 @i 09534428 n 0000 | a Shinto god of war -09534918 18 n 01 Hotei 0 001 @i 09534428 n 0000 | one of the 7 gods of happiness -09535001 18 n 01 Izanagi 0 001 @i 09534428 n 0000 | the god who fathered the islands and gods of Japan with his sister Izanami -09535130 18 n 01 Izanami 0 001 @i 09534428 n 0000 | sister and consort of Izanami; mother of the islands and gods of Japan -09535255 18 n 01 Kami 0 001 @i 09534428 n 0000 | one the Shinto deities (including mythological beings, spirits of distinguished men, forces of nature) -09535409 18 n 01 Kwannon 0 001 @i 09534428 n 0000 | Japanese counterpart of Chinese Kuan Yin -09535504 18 n 02 Ninigi 0 Ninigino-Mikoto 0 001 @i 09534428 n 0000 | grandson of Amaterasu and first ruler of Japan -09535622 18 n 01 goddess 0 002 @ 09505418 n 0000 ~ 09535809 n 0000 | a female deity -09535708 18 n 02 earth-god 0 earth_god 0 001 @ 09505418 n 0000 | a god of fertility and vegetation -09535809 18 n 02 earth-goddess 0 earth_goddess 0 002 @ 09535622 n 0000 ~ 09535940 n 0000 | a goddess of fertility and vegetation -09535940 18 n 01 earth_mother 0 001 @ 09535809 n 0000 | the earth conceived of as the female principle of fertility -09536058 18 n 02 God 0 Supreme_Being 0 005 @i 09504135 n 0000 + 01179547 a 0102 ~i 09536363 n 0000 ~i 09538318 n 0000 ~i 09538544 n 0000 | the supernatural being conceived as the perfect and omnipotent and omniscient originator and ruler of the universe; the object of worship in monotheistic religions -09536363 18 n 08 Godhead 0 Lord 2 Creator 1 Maker 1 Divine 1 God_Almighty 0 Almighty 0 Jehovah 2 004 @i 09536058 n 0000 + 01826186 a 0701 ~ 09536789 n 0000 ~ 09538021 n 0000 | terms referring to the Judeo-Christian God -09536584 18 n 02 eon 0 aeon 0 002 @ 09504135 n 0000 ;c 06222959 n 0000 | (Gnosticism) a divine power or nature emanating from the Supreme Being and playing various roles in the operation of the universe -09536789 18 n 04 Trinity 0 Holy_Trinity 0 Blessed_Trinity 0 Sacred_Trinity 0 002 @ 09536363 n 0000 %m 09538021 n 0000 | the union of the Father and Son and Holy Ghost in one Godhead -09536973 18 n 03 Father 2 Father-God 0 Fatherhood 0 001 @i 09538021 n 0000 | God when considered as the first person in the Trinity; "hear our prayers, Heavenly Father" -09537144 18 n 03 Son 1 Word 0 Logos 0 003 @i 09538021 n 0000 ~i 09537502 n 0000 ~i 11083656 n 0000 | the divine word of God; the second person in the Trinity (incarnate in Jesus) -09537325 18 n 01 Messiah 0 003 @i 10231515 n 0000 + 02867242 a 0101 + 00595410 n 0101 | the awaited king of the Jews; the promised and expected deliverer of the Jewish people -09537502 18 n 01 Messiah 1 003 @i 09537144 n 0000 + 02867242 a 0101 + 00595410 n 0101 | Jesus Christ; considered by Christians to be the promised deliverer -09537660 18 n 02 messiah 2 christ 1 003 @ 10553805 n 0000 + 02867242 a 0101 + 00595410 n 0101 | any expected deliverer -09537781 18 n 03 Holy_Ghost 0 Holy_Spirit 0 Paraclete 0 001 @i 09538021 n 0000 | the third person in the Trinity; Jesus promised the Apostles that he would send the Holy Spirit after his Crucifixion and Resurrection; it came on Pentecost -09538021 18 n 02 hypostasis 0 hypostasis_of_Christ 0 005 @ 09536363 n 0000 #m 09536789 n 0000 ~i 09536973 n 0000 ~i 09537144 n 0000 ~i 09537781 n 0000 | any of the three persons of the Godhead constituting the Trinity especially the person of Christ in which divine and human natures are united -09538318 18 n 0b Yahweh 0 YHWH 0 Yahwe 0 Yahveh 0 YHVH 0 Yahve 0 Wahvey 0 Jahvey 0 Jahweh 0 Jehovah 1 JHVH 0 001 @i 09536058 n 0000 | a name for the God of the Old Testament as transliterated from the Hebrew consonants YHVH -09538544 18 n 01 Allah 0 001 @i 09536058 n 0000 | Muslim name for the one and only God -09538633 18 n 01 demiurge 0 001 @ 09505418 n 0000 | a subordinate deity, in some philosophies the creator of the universe -09538757 18 n 01 faun 0 001 @ 09552681 n 0000 | ancient Italian deity in human shape, with horns, pointed ears and a goat's tail; equivalent to Greek satyr -09538915 18 n 01 angel 0 011 @ 09504135 n 0000 #m 08378066 n 0000 + 02870663 a 0101 + 01459949 a 0102 + 02870663 a 0102 %p 02151625 n 0000 ~ 09539183 n 0000 ~ 09539730 n 0000 ~ 09539872 n 0000 ~ 09540055 n 0000 ~ 09540329 n 0000 | spiritual being attendant upon God -09539183 18 n 01 archangel 0 006 @ 09538915 n 0000 + 02638894 a 0101 + 02638894 a 0102 ~ 09539394 n 0000 ~ 09539517 n 0000 ~ 09539640 n 0000 | an angel ranked above the highest rank in the celestial hierarchy -09539394 18 n 01 Gabriel 0 002 @ 09539183 n 0000 ;c 06431740 n 0000 | (Bible) the archangel who was the messenger of God -09539517 18 n 01 Michael 0 002 @ 09539183 n 0000 ;c 06449735 n 0000 | (Old Testament) the guardian archangel of the Jews -09539640 18 n 01 Raphael 1 001 @ 09539183 n 0000 | an archangel of the Hebrew tradition -09539730 18 n 01 cherub 0 001 @ 09538915 n 0000 | an angel of the second order whose gift is knowledge; usually portrayed as a winged child -09539872 18 n 01 seraph 0 004 @ 09538915 n 0000 + 01459949 a 0104 + 02870846 a 0101 + 02870846 a 0102 | an angel of the first order; usually portrayed as the winged head of a child -09540055 18 n 02 guardian_spirit 0 guardian_angel 0 003 @ 09538915 n 0000 ~ 09540241 n 0000 ~ 09542697 n 0000 | an angel believed to have special affection for a particular individual -09540241 18 n 01 genius_loci 0 001 @ 09540055 n 0000 | the guardian spirit of a place -09540329 18 n 01 divine_messenger 0 001 @ 09538915 n 0000 | a messenger from God; "angel of death" -09540430 18 n 05 fairy 0 faery 0 faerie 0 fay 0 sprite 0 010 @ 09504135 n 0000 ~ 09540739 n 0000 ~ 09540939 n 0000 ~ 09541125 n 0000 ~ 09541661 n 0000 ~ 09541809 n 0000 ~ 09546280 n 0000 ~ 09546453 n 0000 ~ 09546604 n 0000 ~ 09546772 n 0000 | a small being, human in form, playful and having magical powers -09540739 18 n 07 elf 0 hob 1 gremlin 0 pixie 0 pixy 0 brownie 0 imp 1 004 @ 09540430 n 0000 ;c 05985602 n 0000 ~ 09541434 n 0000 ~ 09541526 n 0000 | (folklore) fairies that are somewhat mischievous -09540939 18 n 01 fairy_godmother 0 001 @ 09540430 n 0000 | a female character in some fairy stories who has magical powers and can bring unexpected good fortune to the hero or heroine -09541125 18 n 02 gnome 0 dwarf 1 004 @ 09540430 n 0000 + 02849475 a 0101 ~ 09499657 n 0000 ~ 09579198 n 0000 | a legendary creature resembling a tiny old man; lives in the depths of the earth and guards buried treasure -09541346 18 n 01 undine 0 001 @ 09546772 n 0000 | any of various female water spirits -09541434 18 n 01 leprechaun 0 001 @ 09540739 n 0000 | a mischievous elf in Irish folklore -09541526 18 n 01 sandman 0 001 @ 09540739 n 0000 | an elf in fairy stories who sprinkles sand in children's eyes to make them sleepy -09541661 18 n 01 Morgan_le_Fay 0 001 @ 09540430 n 0000 | (Arthurian legend) a wicked enchantress who was the half sister and enemy of King Arthur -09541809 18 n 02 Puck 0 Robin_Goodfellow 0 001 @ 09540430 n 0000 | a mischievous sprite of English folklore -09541919 18 n 01 evil_spirit 0 010 @ 09545324 n 0000 ~ 09542170 n 0000 ~ 09542258 n 0000 ~ 09542339 n 0000 ~ 09542541 n 0000 ~ 09543673 n 0000 ~ 09543748 n 0000 ~ 09543924 n 0000 ~ 09544109 n 0000 ~i 09601769 n 0000 | a spirit tending to cause harm -09542170 18 n 01 bad_fairy 0 001 @ 09541919 n 0000 | a fairy that tends to cause harm -09542258 18 n 03 bogey 0 bogy 0 bogie 0 001 @ 09541919 n 0000 | an evil spirit -09542339 18 n 05 devil 0 fiend 2 demon 0 daemon 0 daimon 0 006 @ 09541919 n 0000 + 00547300 v 0301 + 00547493 v 0101 ~ 09542868 n 0000 ~ 09543021 n 0000 ~ 09543154 n 0000 | an evil supernatural being -09542541 18 n 02 cacodemon 0 cacodaemon 0 005 @ 09541919 n 0000 ;r 08780881 n 0000 + 02672729 a 0202 + 02672729 a 0101 ! 09542697 n 0101 | an evil spirit -09542697 18 n 03 eudemon 0 eudaemon 0 good_spirit 0 005 @ 09540055 n 0000 ;r 08780881 n 0000 + 02859817 a 0202 + 02859817 a 0101 ! 09542541 n 0101 | a benevolent spirit -09542868 18 n 01 incubus 0 001 @ 09542339 n 0000 | a male demon believed to lie on sleeping persons and to have sexual intercourse with sleeping women -09543021 18 n 02 succubus 0 succuba 0 001 @ 09542339 n 0000 | a female demon believed to have sexual intercourse with sleeping men -09543154 18 n 02 dybbuk 0 dibbuk 0 003 @ 09542339 n 0000 ;c 05985602 n 0000 ;c 06232880 n 0000 | (Jewish folklore) a demon that enters the body of a living person and controls that body's behavior -09543353 18 n 07 Satan 0 Old_Nick 0 Devil 2 Lucifer 0 Beelzebub 0 the_Tempter 0 Prince_of_Darkness 0 005 @i 09504135 n 0000 ;c 06234825 n 0000 ;c 05946687 n 0000 + 00547493 v 0301 + 02930503 a 0101 | (Judeo-Christian and Islamic religions) chief spirit of evil and adversary of God; tempter of mankind; master of Hell -09543673 18 n 01 ghoul 0 001 @ 09541919 n 0000 | an evil spirit or ghost -09543748 18 n 03 goblin 0 hob 0 hobgoblin 0 002 @ 09541919 n 0000 ;c 05985602 n 0000 | (folklore) a small grotesque supernatural creature that makes trouble for human beings -09543924 18 n 02 kelpy 0 kelpie 0 003 @ 09541919 n 0000 ;c 05985602 n 0000 ;r 08890097 n 0000 | (Scottish folklore) water spirit in the form of a horse that likes to drown its riders -09544109 18 n 02 vampire 0 lamia 0 002 @ 09541919 n 0000 ;c 05985602 n 0000 | (folklore) a corpse that rises at night to drink the blood of the living -09544262 18 n 02 banshee 0 banshie 0 003 @ 09545324 n 0000 ;c 05985602 n 0000 ;r 08859173 n 0000 | (Irish folklore) a female spirit who wails to warn of impending death -09544433 18 n 06 genie 0 jinni 0 jinnee 0 djinni 0 djinny 0 djinn 0 004 @ 09545324 n 0000 ;c 06234825 n 0000 ~ 09544746 n 0000 ~ 09544876 n 0000 | (Islam) an invisible spirit mentioned in the Koran and believed by Muslims to inhabit the earth and influence mankind by appearing in the form of humans or animals -09544746 18 n 02 shaitan 0 shaytan 0 002 @ 09544433 n 0000 ;c 06234825 n 0000 | (Islam) a rebellious jinni who leads men astray -09544876 18 n 01 eblis 0 002 @ 09544433 n 0000 ;c 06234825 n 0000 | (Islam) the principal evil jinni in Islamic mythology -09545000 18 n 01 houri 2 002 @ 09484664 n 0000 ;c 06234825 n 0000 | (Islam) one of the dark-eyed virgins of perfect beauty believed to live with the blessed in Paradise -09545171 18 n 02 familiar 0 familiar_spirit 0 001 @ 09545324 n 0000 | a spirit (usually in animal form) that acts as an assistant to a witch or wizard -09545324 18 n 02 spirit 0 disembodied_spirit 0 016 @ 09504135 n 0000 + 01574925 a 0106 ~ 09504790 n 0000 ~ 09541919 n 0000 ~ 09544262 n 0000 ~ 09544433 n 0000 ~ 09545171 n 0000 ~ 09546905 n 0000 ~ 09547111 n 0000 ~ 09547528 n 0000 ~ 09666883 n 0000 ~ 10366484 n 0000 ~ 10496927 n 0000 ~ 10685480 n 0000 ~ 10709979 n 0000 ~ 10805932 n 0000 | any incorporeal supernatural being that can become visible (or audible) to human beings -09545755 18 n 01 trickster 2 001 @ 09504135 n 0000 | a mischievous supernatural being found in the folklore of many primitive people; sometimes distinguished by prodigious biological drives and exaggerated bodily parts -09545976 18 n 01 ghost 0 005 @ 10627082 n 0000 + 01574925 a 0103 + 01839807 v 0101 ~ 09546145 n 0000 ~ 10526441 n 0000 | the visible disembodied soul of a dead person -09546145 18 n 01 poltergeist 0 001 @ 09545976 n 0000 | a ghost that announces its presence with rapping and the creation of disorder -09546280 18 n 01 Oberson 0 003 @ 09540430 n 0000 ;c 05985602 n 0000 ;c 15259284 n 0000 | (Middle Ages) the king of the fairies and husband of Titania in medieval folklore -09546453 18 n 01 Titania 0 003 @ 09540430 n 0000 ;c 05985602 n 0000 ;c 15259284 n 0000 | (Middle Ages) the queen of the fairies in medieval folklore -09546604 18 n 01 tooth_fairy 0 001 @ 09540430 n 0000 | a fairy that is said to leave money at night under a child's pillow to compensate for a baby tooth falling out -09546772 18 n 03 water_sprite 0 water_nymph 2 water_spirit 0 002 @ 09540430 n 0000 ~ 09541346 n 0000 | a fairy that inhabits water -09546905 18 n 01 peri 2 003 @ 09545324 n 0000 ;c 05985602 n 0000 ;r 08912842 n 0000 | (Persian folklore) a supernatural being descended from fallen angels and excluded from paradise until penance is done -09547111 18 n 07 apparition 0 phantom 0 phantasm 0 phantasma 0 fantasm 0 specter 0 spectre 0 003 @ 09545324 n 0000 + 01574925 a 0404 ~ 09547353 n 0000 | a ghostly appearing figure; "we were unprepared for the apparition that confronted us" -09547353 18 n 01 Flying_Dutchman 0 001 @ 09547111 n 0000 | the captain of a phantom ship (the Flying Dutchman) who was condemned to sail against the wind until Judgment Day -09547528 18 n 01 presence 0 001 @ 09545324 n 0000 | an invisible spiritual being felt to be nearby -09547629 18 n 01 Adonis 0 002 @ 09506216 n 0000 ;c 07979425 n 0000 | (Greek mythology) a handsome youth loved by both Aphrodite and Persephone; "when Adonis died Zeus decreed that he should spend winters in the underworld with Persephone and spend summers with Aphrodite" -09547903 18 n 02 Greco-Roman_deity 0 Graeco-Roman_deity 0 006 @ 09505418 n 0000 ~ 09548632 n 0000 ~i 09559201 n 0000 ~i 09559404 n 0000 ~i 09570794 n 0000 ~ 09577833 n 0000 | a deity of classical mythology -09548111 18 n 02 satyr 0 forest_god 0 004 @ 09551356 n 0000 + 03113881 a 0101 + 03113881 a 0102 ~i 09548316 n 0000 | one of a class of woodland deities; attendant on Bacchus; identified with Roman fauns -09548316 18 n 01 Silenus 0 001 @i 09548111 n 0000 | the chief satyr in the service of Bacchus; father of Dionysus; usually depicted as drunk and jolly and riding a donkey -09548489 18 n 01 silenus 1 001 @ 09551356 n 0000 | any of the minor woodland deities who were companions of Dionysus (similar to the satyrs) -09548632 18 n 01 nymph 0 012 @ 09547903 n 0000 ;c 07978924 n 0000 ~ 09549047 n 0000 ~ 09549216 n 0000 ~ 09549416 n 0000 ~ 09549643 n 0000 ~ 09549758 n 0000 ~ 09549983 n 0000 ~ 09550125 n 0000 ~ 09550278 n 0000 ~ 09551040 n 0000 ~ 09551152 n 0000 | (classical mythology) a minor nature goddess usually depicted as a beautiful maiden; "the ancient Greeks believed that nymphs inhabited forests and bodies of water" -09549047 18 n 01 Echo 0 002 @ 09548632 n 0000 ;c 07979425 n 0000 | (Greek mythology) a nymph who was spurned by Narcissus and pined away until only her voice remained -09549216 18 n 02 Hesperides 0 Atlantides 0 002 @ 09548632 n 0000 ;c 07979425 n 0000 | (Greek mythology) group of 3 to 7 nymphs who guarded the golden apples that Gaea gave as a wedding gift to Hera -09549416 18 n 01 Hyades 0 002 @ 09548632 n 0000 ;c 07979425 n 0000 | (Greek mythology) 7 daughters of Atlas and half-sisters of the Pleiades; they nurtured the infant Dionysus and Zeus placed them among the stars as a reward -09549643 18 n 01 Oread 0 002 @ 09548632 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the mountain nymphs -09549758 18 n 01 Pleiades 0 003 @ 09548632 n 0000 ;c 07979425 n 0000 %m 09549983 n 0000 | (Greek mythology) 7 daughters of Atlas and half-sisters of the Hyades; placed among the stars to save them from the pursuit of Orion -09549983 18 n 02 Sterope 0 Asterope 0 003 @ 09548632 n 0000 #m 09549758 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the 7 Pleiades -09550125 18 n 01 water_nymph 0 004 @ 09548632 n 0000 ;c 07979425 n 0000 ~ 09490352 n 0000 ~ 09550443 n 0000 | (Greek mythology) any nymph of the water -09550278 18 n 01 Daphne 0 002 @ 09548632 n 0000 ;c 07979425 n 0000 | (Greek mythology) a nymph who was transformed into a laurel tree to escape the amorous Apollo -09550443 18 n 01 naiad 0 002 @ 09550125 n 0000 ;c 07979425 n 0000 | (Greek mythology) a nymph of lakes and springs and rivers and fountains -09550585 18 n 01 Nereid 0 003 @ 09490352 n 0000 ;c 07979425 n 0000 ~ 09550758 n 0000 | (Greek mythology) any of the 50 sea nymphs who were daughters of the sea god Nereus -09550758 18 n 01 Thetis 0 002 @ 09550585 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the 50 Nereids; mother of Achilles by Peleus -09550899 18 n 01 Oceanid 0 002 @ 09490352 n 0000 ;c 07979425 n 0000 | (Greek mythology) sea nymph who was a daughter of Oceanus and Tethys -09551040 18 n 02 dryad 0 wood_nymph 0 002 @ 09548632 n 0000 ~ 09551260 n 0000 | a deity or nymph of the woods -09551152 18 n 01 Salmacis 0 001 @ 09548632 n 0000 | nymph who merged with Hermaphroditus to form one body -09551260 18 n 01 hamadryad 0 001 @ 09551040 n 0000 | the nymph or spirit of a particular tree -09551356 18 n 01 Greek_deity 0 066 @ 09505418 n 0000 ;c 15253139 n 0000 ~ 09495382 n 0000 ~ 09548111 n 0000 ~ 09548489 n 0000 ~i 09553347 n 0000 ~i 09553490 n 0000 ~ 09553599 n 0000 ~i 09553767 n 0000 ~i 09554132 n 0000 ~i 09555236 n 0000 ~i 09555391 n 0000 ~i 09555514 n 0000 ~i 09555962 n 0000 ~i 09556697 n 0000 ~i 09556915 n 0000 ~i 09557289 n 0000 ~i 09557387 n 0000 ~i 09557770 n 0000 ~i 09558569 n 0000 ~i 09558898 n 0000 ~i 09559071 n 0000 ~i 09559573 n 0000 ~i 09559896 n 0000 ~i 09560762 n 0000 ~i 09560940 n 0000 ~i 09561137 n 0000 ~i 09561755 n 0000 ~i 09561970 n 0000 ~i 09562319 n 0000 ~i 09562526 n 0000 ~i 09562883 n 0000 ~i 09563042 n 0000 ~i 09563183 n 0000 ~i 09563998 n 0000 ~i 09564371 n 0000 ~i 09564680 n 0000 ~i 09564889 n 0000 ~ 09565099 n 0000 ~i 09565503 n 0000 ~i 09565639 n 0000 ~i 09565787 n 0000 ~i 09565914 n 0000 ~ 09565999 n 0000 ~i 09567421 n 0000 ~i 09567560 n 0000 ~i 09567767 n 0000 ~i 09568051 n 0000 ~i 09568241 n 0000 ~i 09568643 n 0000 ~ 09568776 n 0000 ~i 09568927 n 0000 ~i 09569142 n 0000 ~i 09569467 n 0000 ~i 09570114 n 0000 ~i 09570298 n 0000 ~i 09570630 n 0000 ~ 09570957 n 0000 ~i 09571090 n 0000 ~i 09571390 n 0000 ~i 09572425 n 0000 ~i 09572825 n 0000 ~i 09573145 n 0000 ~i 09573262 n 0000 ~i 09573561 n 0000 ~i 09573682 n 0000 | a deity worshipped by the ancient Greeks -09552681 18 n 01 Roman_deity 0 031 @ 09505418 n 0000 ;c 15253139 n 0000 ~ 09538757 n 0000 ~i 09555127 n 0000 ~i 09555653 n 0000 ~i 09555785 n 0000 ~i 09557130 n 0000 ~i 09557632 n 0000 ~i 09558388 n 0000 ~i 09558756 n 0000 ~i 09559769 n 0000 ~i 09560061 n 0000 ~i 09561593 n 0000 ~i 09562166 n 0000 ~i 09562704 n 0000 ~i 09563619 n 0000 ~i 09563805 n 0000 ~i 09564177 n 0000 ~ 09565334 n 0000 ~i 09567913 n 0000 ~i 09568488 n 0000 ~i 09569330 n 0000 ~i 09569985 n 0000 ~i 09570522 n 0000 ~i 09571249 n 0000 ~i 09572113 n 0000 ~i 09572249 n 0000 ~i 09573405 n 0000 ~i 09573966 n 0000 ~i 09576548 n 0000 ~i 09576746 n 0000 | a deity worshipped by the ancient Romans -09553347 18 n 02 Olympian 1 Olympic_god 0 002 @i 09551356 n 0000 + 03093184 a 0101 | a classical Greek god after the overthrow of the Titans -09553490 18 n 01 Aeolus 0 002 @i 09551356 n 0000 + 02606601 a 0101 | god of the winds in ancient mythology -09553599 18 n 01 Aether 0 001 @ 09551356 n 0000 | personification of the sky or upper air breathed by the Olympians; son of Erebus and night or of Chaos and darkness -09553767 18 n 03 Apollo 0 Phoebus 0 Phoebus_Apollo 0 003 @i 09551356 n 0000 ;c 07979425 n 0000 ~i 09554019 n 0000 | (Greek mythology) Greek god of light; god of prophecy and poetry and music and healing; son of Zeus and Leto; twin brother of Artemis -09554019 18 n 01 Pythius 0 001 @i 09553767 n 0000 | epithet for Apollo; from the dragon Python which he killed -09554132 18 n 02 Aphrodite 0 Cytherea 0 001 @i 09551356 n 0000 | goddess of love and beauty and daughter of Zeus in ancient mythology; identified with Roman Venus -09554297 18 n 01 Hero 2 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) priestess of Aphrodite who killed herself when her lover Leander drowned while trying to swim the Hellespont to see her -09554505 18 n 01 Leander 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a youth beloved of Hero who drowned in a storm in the Hellespont on one of his nightly visits to see her -09554701 18 n 01 Pygmalion 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a king who created a statue of a woman and fell in love with it; Aphrodite brought the sculpture to life as Galatea -09554910 18 n 01 Galatea 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a maiden who was first a sculpture created by Pygmalion and was brought to life by Aphrodite in answer to Pygmalion's prayers -09555127 18 n 02 Venus 0 Urania 1 001 @i 09552681 n 0000 | goddess of love; counterpart of Greek Aphrodite -09555236 18 n 01 Ares 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) Greek god of war; son of Zeus and Hera; identified with Roman Mars -09555391 18 n 01 Eris 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) goddess of discord; sister of Ares -09555514 18 n 01 Thanatos 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Greek personification of death; son of Nyx -09555653 18 n 01 Mors 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) Roman god of death; counterpart of Thanatos -09555785 18 n 01 Mars 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) Roman god of war and agriculture; father of Romulus and Remus; counterpart of Greek Ares -09555962 18 n 01 Nyx 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) Greek goddess of the night; daughter of Chaos; counterpart of Roman Nox -09556121 18 n 02 Rhea_Silvia 0 Rea_Silvia 0 002 @ 09575316 n 0000 ;c 07983170 n 0000 | (Roman mythology) a vestal virgin who became the mother by Mars of the twins Romulus and Remus -09556305 18 n 01 Romulus 0 002 @i 09484664 n 0000 ;c 07983170 n 0000 | (Roman mythology) founder of Rome; suckled with his twin brother Remus by a wolf after their parents (Mars and Rhea Silvia) abandoned them; Romulus killed Remus in an argument over the building of Rome -09556580 18 n 01 Remus 0 002 @i 09484664 n 0000 ;c 07983170 n 0000 | (Roman mythology) the twin brother of Romulus -09556697 18 n 02 Artemis 0 Cynthia 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the virgin goddess of the hunt and the Moon; daughter of Leto and twin sister of Apollo; identified with Roman Diana -09556915 18 n 01 Boreas 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the god who personified the north wind; "Boreas was pictured as bearded and powerful and winged and draped against the cold" -09557130 18 n 01 Diana 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) virgin goddess of the hunt and the Moon; counterpart of Greek Artemis -09557289 18 n 01 Ate 0 001 @i 09551356 n 0000 | goddess of criminal rashness and its punishment -09557387 18 n 05 Athena 0 Athene 0 Pallas 0 Pallas_Athena 0 Pallas_Athene 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) goddess of wisdom and useful arts and prudent warfare; guardian of Athens; identified with Roman Minerva -09557632 18 n 01 Minerva 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of wisdom; counterpart of Greek Athena -09557770 18 n 01 Chaos 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the most ancient of gods; the personification of the infinity of space preceding creation of the universe -09557965 18 n 01 Cronus 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) the supreme god until Zeus dethroned him; son of Uranus and Gaea in ancient Greek mythology; identified with Roman Saturn -09558177 18 n 01 Dido 0 002 @i 10474064 n 0000 ;c 07983170 n 0000 | (Roman mythology) a princess of Tyre who was the founder and queen of Carthage; Virgil tells of her suicide when she was abandoned by Aeneas -09558388 18 n 01 Saturn 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) god of agriculture and vegetation; counterpart of Greek Cronus; "Saturday is Saturn's Day" -09558569 18 n 01 Demeter 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) goddess of fertility and protector of marriage in ancient mythology; counterpart of Roman Ceres -09558756 18 n 01 Ceres 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of agriculture; counterpart of Greek Demeter -09558898 18 n 01 Dionysus 0 003 @i 09551356 n 0000 ;c 07979425 n 0000 + 02713581 a 0101 | (Greek mythology) god of wine and fertility and drama; the Greek name of Bacchus -09559071 18 n 01 Doris 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) wife of Nereus and mother of the Nereids -09559201 18 n 03 Aesculapius 0 Asclepius 0 Asklepios 0 002 @i 09547903 n 0000 + 02607455 a 0101 | son of Apollo; a hero and the Roman god of medicine and healing; his daughters were Hygeia and Panacea -09559404 18 n 01 Bacchus 0 004 @i 09547903 n 0000 ;r 08780881 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (classical mythology) god of wine; equivalent of Dionysus -09559573 18 n 01 Erebus 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) Greek god of darkness who dwelt in the underworld; son of Chaos; brother of Nox; father of Aether and Day -09559769 18 n 02 Nox 0 Night 0 001 @i 09552681 n 0000 | Roman goddess of night; daughter of Erebus; counterpart of Greek Nyx -09559896 18 n 01 Eros 0 003 @i 09551356 n 0000 ;c 07979425 n 0000 + 02132080 a 0101 | (Greek mythology) god of love; son of Aphrodite; identified with Roman Cupid -09560061 18 n 02 Cupid 0 Amor 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) god of love; counterpart of Greek Eros -09560196 18 n 02 Daedalus 0 Daedal 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) an Athenian inventor who built the labyrinth of Minos; to escape the labyrinth he fashioned wings for himself and his son Icarus -09560426 18 n 01 Damon_and_Pythias 0 002 @i 10112591 n 0000 ;c 07979425 n 0000 | (Greek mythology) according to a Greek legend: when Pythias was sentenced to be executed Damon took his place to allow Pythias to get his affairs in order; when Pythias returned in time to save Damon the king was so impressed that he let them both live -09560762 18 n 03 Gaea 0 Gaia 0 Ge 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) goddess of the earth and mother of Cronus and the Titans in ancient mythology -09560940 18 n 01 Hebe 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the goddess of youth and spring; wife of Hercules; daughter of Zeus and Hera; cupbearer to the Olympian gods -09561137 18 n 01 Helios 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) ancient god of the sun; drove his chariot across the sky each day; identified with Roman Sol -09561320 18 n 01 Icarus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) son of Daedalus; while escaping from Crete with his father (using the wings Daedalus had made) he flew too close to the sun and the wax melted and he fell into the Aegean and drowned -09561593 18 n 01 Sol 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) ancient Roman god; personification of the sun; counterpart of Greek Helios -09561755 18 n 01 Hecate 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) Greek goddess of fertility who later became associated with Persephone as goddess of the underworld and protector of witches -09561970 18 n 02 Hephaestus 0 Hephaistos 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the lame god of fire and metalworking in ancient mythology; identified with Roman Vulcan -09562166 18 n 01 Vulcan 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) god of fire and metal working; counterpart of Greek Hephaestus -09562319 18 n 01 Hermes 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) messenger and herald of the gods; god of commerce and cunning and invention and theft; identified with Roman Mercury -09562526 18 n 01 Hermaphroditus 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) son of Hermes and Aphrodite who merged with the nymph Salmacis to form one body -09562704 18 n 01 Mercury 0 003 @i 09552681 n 0000 ;c 07983170 n 0000 + 02866448 a 0101 | (Roman mythology) messenger of Jupiter and god of commerce; counterpart of Greek Hermes -09562883 18 n 01 Hygeia 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the goddess of health; daughter of Aesculapius and sister of Panacea -09563042 18 n 01 Panacea 0 001 @i 09551356 n 0000 | (Greek mythology) the goddess of healing; daughter of Aesculapius and sister of Hygeia -09563183 18 n 02 Hera 0 Here 0 001 @i 09551356 n 0000 | queen of the Olympian gods in ancient Greek mythology; sister and wife of Zeus remembered for her jealously of the many mortal women Zeus fell in love with; identified with Roman Juno -09563425 18 n 01 Io 0 002 @i 10282482 n 0000 ;c 07979425 n 0000 | (Greek mythology) a maiden seduced by Zeus; when Hera was about to discover them together Zeus turned her into a white heifer -09563619 18 n 01 Janus 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) the Roman god of doorways and passages; is depicted with two faces on opposite sides of his head -09563805 18 n 01 Juno 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) queen of the Olympian gods who protected marriage; wife and sister of Jupiter; counterpart of Greek Hera -09563998 18 n 01 Hestia 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the goddess of the hearth and its fire in ancient mythology; identified with Roman Vesta -09564177 18 n 01 Vesta 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of the hearth and its fire whose flame was tended by vestal virgins; counterpart of Greek Hestia -09564371 18 n 01 Hymen 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the god of marriage -09564480 18 n 01 Hyperion 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) a Titan who was the son of Gaea and Uranus and the father of Helios and Selene and Eos in ancient mythology -09564680 18 n 01 Minos 0 002 @i 09551356 n 0000 + 03016684 a 0101 | son of Zeus and Europa; king of ancient Crete; ordered Daedalus to build the labyrinth; after death Minos became a judge in the underworld -09564889 18 n 01 Ariadne 0 001 @i 09551356 n 0000 | beautiful daughter of Minos and Pasiphae; she fell in love with Theseus and gave him the thread with which he found his way out of the Minotaur's labyrinth -09565099 18 n 02 Moirai 0 Moirae 0 004 @ 09551356 n 0000 %m 09565503 n 0000 %m 09565639 n 0000 %m 09565787 n 0000 | any of the three Greek goddesses of fate or destiny; identified with the Roman Parcae and similar to the Norse Norns -09565334 18 n 01 Parcae 0 001 @ 09552681 n 0000 | any of the three Roman goddesses of fate or destiny; identified with the Greek Moirai and similar to the Norse Norns -09565503 18 n 02 Clotho 0 Klotho 0 002 @i 09551356 n 0000 #m 09565099 n 0000 | the Greek goddess of fate who spins the thread of life -09565639 18 n 01 Lachesis 0 002 @i 09551356 n 0000 #m 09565099 n 0000 | the Greek goddess of fate who determines the length of the thread of life -09565787 18 n 01 Atropos 0 002 @i 09551356 n 0000 #m 09565099 n 0000 | the Greek goddess of fate who cuts the thread of life -09565914 18 n 02 Momus 0 Momos 0 001 @i 09551356 n 0000 | god of blame and mockery -09565999 18 n 01 Muse 0 010 @ 09551356 n 0000 ~i 09566320 n 0000 ~i 09566436 n 0000 ~i 09566544 n 0000 ~i 09566667 n 0000 ~i 09566791 n 0000 ~i 09566904 n 0000 ~i 09567044 n 0000 ~i 09567180 n 0000 ~i 09567309 n 0000 | in ancient Greek mythology any of 9 daughters of Zeus and Mnemosyne; protector of an art or science -09566320 18 n 01 Calliope 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of epic poetry -09566436 18 n 01 Clio 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of history -09566544 18 n 01 Erato 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of lyric and love poetry -09566667 18 n 01 Euterpe 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of music (or the flute) -09566791 18 n 01 Melpomene 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of tragedy -09566904 18 n 01 Polyhymnia 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of singing and mime and sacred dance -09567044 18 n 01 Terpsichore 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of the dance and of choral song -09567180 18 n 01 Thalia 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of comedy and pastoral poetry -09567309 18 n 01 Urania 0 002 @i 09565999 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Muse of astronomy -09567421 18 n 01 Nemesis 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the goddess of divine retribution and vengeance -09567560 18 n 01 Nereus 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) a sea god son of Pontus and Gaea; lived in the depths of the sea with his wife Doris and their daughters the Nereids -09567767 18 n 01 Nike 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) winged goddess of victory; identified with Roman Victoria -09567913 18 n 01 Victoria 2 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of victory; counterpart of Greek Nike -09568051 18 n 02 Ouranos 0 Uranus 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) god of the heavens; son and husband of Gaea and father of the Titans in ancient mythology -09568241 18 n 02 Pan 0 goat_god 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) god of fields and woods and shepherds and flocks; represented as a man with goat's legs and horns and ears; identified with Roman Sylvanus or Faunus -09568488 18 n 01 Faunus 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) ancient rural deity; later considered a counterpart of Greek Pan -09568643 18 n 01 Pasiphae 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) daughter of Helios and mother of Ariadne -09568776 18 n 02 Pontus 0 Pontos 0 002 @ 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) ancient personification of the sea; father of Nereus -09568927 18 n 01 Poseidon 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the god of the sea and earthquakes in ancient mythology; brother of Zeus and Hades and Hera; identified with Roman Neptune -09569142 18 n 01 Proteus 0 003 @i 09551356 n 0000 ;c 07979425 n 0000 + 02505141 a 0101 | (Greek mythology) a prophetic god who served Poseidon; was capable of changing his shape at will -09569330 18 n 01 Neptune 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) god of the sea; counterpart of Greek Poseidon -09569467 18 n 04 Persephone 0 Despoina 0 Kore 0 Cora 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) daughter of Zeus and Demeter; made queen of the underworld by Pluto in ancient mythology; identified with Roman Proserpina -09569709 18 n 01 Procrustes 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mythical giant who was a thief and murderer; he would capture people and tie them to an iron bed, stretching them or hacking off their legs to make them fit; was killed by Theseus -09569985 18 n 02 Proserpina 0 Proserpine 0 001 @i 09552681 n 0000 | goddess of the underworld; counterpart of Greek Persephone -09570114 18 n 01 Phaethon 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) son of Helios; killed when trying to drive his father's chariot and came too close to earth -09570298 18 n 04 Pluto 0 Hades 0 Aides 0 Aidoneus 0 003 @i 09551356 n 0000 ;c 07979425 n 0000 + 01304081 a 0201 | (Greek mythology) the god of the underworld in ancient mythology; brother of Zeus and husband of Persephone -09570522 18 n 02 Dis 0 Orcus 0 001 @i 09552681 n 0000 | god of the underworld; counterpart of Greek Pluto -09570630 18 n 02 Pythia 0 Pythoness 1 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the priestess of Apollo at Delphi who transmitted the oracles -09570794 18 n 01 Priapus 0 002 @i 09547903 n 0000 ;c 07978924 n 0000 | (classical mythology) god of male procreative power and guardian of gardens and vineyards -09570957 18 n 01 Rhadamanthus 0 002 @ 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) a judge of the dead in the underworld -09571090 18 n 01 Selene 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) goddess of the Moon in ancient mythology; identified with Roman Luna -09571249 18 n 01 Luna 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) the goddess of the Moon; counterpart of Greek Selene -09571390 18 n 01 Eos 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the winged goddess of the dawn in ancient mythology; daughter of Hyperion; identified with Roman Aurora -09571581 18 n 01 Eurydice 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the wife of Orpheus -09571693 18 n 01 Orion 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a giant Boeotian hunter who pursued the Pleiades and was eventually slain by Artemis; was then placed in the sky as a constellation -09571914 18 n 01 Orpheus 0 003 @i 09484664 n 0000 ;c 07979425 n 0000 + 02771866 a 0101 | (Greek mythology) a great musician; when his wife Eurydice died he went to Hades to get her back but failed -09572113 18 n 01 Aurora 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of the dawn; counterpart of Greek Eos -09572249 18 n 01 Tellus 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of the earth; protector of marriage and fertility; identified with Greek Gaea -09572425 18 n 01 Titan 0 011 @i 09551356 n 0000 ;c 07979425 n 0000 ~i 09557965 n 0000 ~i 09564480 n 0000 ~i 09574767 n 0000 ~i 09574926 n 0000 ~i 09575033 n 0000 ~i 09575140 n 0000 ~i 09575548 n 0000 ~ 09575701 n 0000 ~i 09575902 n 0000 | (Greek mythology) any of the primordial giant gods who ruled the Earth until overthrown by Zeus; the Titans were offspring of Uranus (Heaven) and Gaea (Earth) -09572825 18 n 01 Titaness 0 008 @i 09551356 n 0000 ;c 07979425 n 0000 ~i 09576164 n 0000 ~i 09576338 n 0000 ~i 09577004 n 0000 ~i 09577155 n 0000 ~i 09577308 n 0000 ~i 09577467 n 0000 | (Greek mythology) any of the primordial giant goddesses who were offspring of Uranus (heaven) and Gaea (earth) in ancient mythology -09573145 18 n 01 Triton 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) a sea god; son of Poseidon -09573262 18 n 01 Tyche 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the goddess of fortune; identified with Roman Fortuna -09573405 18 n 01 Fortuna 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) the goddess of fortune and good luck; counterpart of Greek Tyche -09573561 18 n 01 Zephyr 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Greek god of the west wind -09573682 18 n 01 Zeus 0 002 @i 09551356 n 0000 ;c 07979425 n 0000 | (Greek mythology) the supreme god of ancient Greek mythology; son of Rhea and Cronus whom he dethroned; husband and brother of Hera; brother of Poseidon and Hades; father of many gods; counterpart of Roman Jupiter -09573966 18 n 02 Jupiter 0 Jove 0 008 @i 09552681 n 0000 ;c 07983170 n 0000 + 03077599 a 0101 ~i 09574226 n 0000 ~i 09574350 n 0000 ~i 09574446 n 0000 ~i 09574544 n 0000 ~i 09574657 n 0000 | (Roman mythology) supreme god of Romans; counterpart of Greek Zeus -09574226 18 n 03 Jupiter_Fulgur 0 Jupiter_Fulminator 0 Lightning_Hurler 0 001 @i 09573966 n 0000 | an epithet for Jupiter -09574350 18 n 02 Jupiter_Tonans 0 Thunderer 0 001 @i 09573966 n 0000 | an epithet for Jupiter -09574446 18 n 02 Jupiter_Pluvius 0 Rain-giver 0 001 @i 09573966 n 0000 | an epithet for Jupiter -09574544 18 n 02 Jupiter_Optimus_Maximus 0 Best_and_Greatest 0 001 @i 09573966 n 0000 | an epithet for Jupiter -09574657 18 n 02 Jupiter_Fidius 0 Protector_of_Boundaries 0 001 @i 09573966 n 0000 | an epithet for Jupiter -09574767 18 n 01 Oceanus 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) god of the stream that flowed around the earth in ancient mythology -09574926 18 n 01 Cocus 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the Titans -09575033 18 n 01 Crius 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the Titans -09575140 18 n 01 Iapetus 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Titan who was father of Atlas and Epimetheus and Prometheus in ancient mythology -09575316 18 n 01 vestal_virgin 0 003 @ 10759982 n 0000 ;c 07983170 n 0000 ~ 09556121 n 0000 | (Roman mythology) one of the virgin priestesses consecrated to the Roman goddess Vesta and to maintaining the sacred fire in her temple -09575548 18 n 01 Atlas 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) a Titan who was forced by Zeus to bear the sky on his shoulders -09575701 18 n 01 Epimetheus 0 002 @ 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) brother of Prometheus; despite Prometheus's warning against gifts from Zeus he accepted Pandora as his wife -09575902 18 n 01 Prometheus 0 002 @i 09572425 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Titan who stole fire from Olympus and gave it to mankind; Zeus punished him by chaining him to a rock where an eagle gnawed at his liver until Hercules rescued him -09576164 18 n 02 Thea 0 Theia 0 002 @i 09572825 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Titaness who was mother of Helios and Selene and Eos in ancient mythology -09576338 18 n 01 Rhea 0 002 @i 09572825 n 0000 ~i 09576914 n 0000 | fertility goddess in ancient Greek mythology; wife of Cronus and mother of Zeus; identified with Roman Ops and Cybele of ancient Asia Minor -09576548 18 n 01 Ops 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) goddess of abundance and fertility; wife of Saturn; counterpart of Greek Rhea and Cybele of ancient Asia Minor -09576746 18 n 02 Sylvanus 0 Silvanus 0 002 @i 09552681 n 0000 ;c 07983170 n 0000 | (Roman mythology) god of woods and fields and flocks; Pan is the Greek counterpart -09576914 18 n 01 Agdistis 0 001 @i 09576338 n 0000 | Asiatic epithet for Rhea or Cybele -09577004 18 n 01 Themis 0 002 @i 09572825 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Titaness who was goddess of justice in ancient mythology -09577155 18 n 01 Mnemosyne 0 002 @i 09572825 n 0000 ;c 07979425 n 0000 | (Greek mythology) the Titaness who was goddess of memory; mother of the Muses -09577308 18 n 01 Phoebe 0 002 @i 09572825 n 0000 ;c 07979425 n 0000 | (Greek mythology) a Titaness who became identified with Artemis as goddess of the Moon -09577467 18 n 01 Tethys 0 002 @i 09572825 n 0000 ;c 07979425 n 0000 | (Greek mythology) a Titaness and sea goddess; wife of Oceanus -09577601 18 n 01 Psyche 1 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a beautiful princess loved by Cupid who visited her at night and told her she must not try to see him; became the personification of the soul -09577833 18 n 02 Leto 0 Latona 0 001 @ 09547903 n 0000 | wife or mistress of Zeus and mother of Apollo and Artemis in ancient mythology; called Latona in Roman mythology -09578005 18 n 04 Hercules 0 Heracles 0 Herakles 0 Alcides 0 004 @i 09484664 n 0000 ;c 07978924 n 0000 + 01261363 a 0101 + 00747576 a 0101 | (classical mythology) a hero noted for his strength; performed 12 immense labors to gain immortality -09578248 18 n 01 Pandora 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the first woman; created by Hephaestus on orders from Zeus who presented her to Epimetheus along with a box filled with evils -09578465 18 n 01 Norse_deity 0 028 @ 09505418 n 0000 ;c 15253139 n 0000 ~ 09579070 n 0000 ~ 09579345 n 0000 ~i 09579491 n 0000 ~i 09579714 n 0000 ~i 09579848 n 0000 ~i 09579994 n 0000 ~i 09580125 n 0000 ~i 09580354 n 0000 ~i 09580521 n 0000 ~i 09580673 n 0000 ~i 09580829 n 0000 ~i 09580971 n 0000 ~i 09581129 n 0000 ~i 09581338 n 0000 ~i 09581680 n 0000 ~ 09582019 n 0000 ~i 09582122 n 0000 ~ 09582343 n 0000 ~i 09582949 n 0000 ~i 09583196 n 0000 ~ 09583321 n 0000 ~i 09583506 n 0000 ~i 09583723 n 0000 ~ 09583888 n 0000 ~ 09584079 n 0000 ~ 09584218 n 0000 | a deity worshipped by the ancient Norsemen -09579070 18 n 01 Aesir 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) the chief race of gods living at Asgard -09579198 18 n 01 Andvari 0 002 @ 09541125 n 0000 ;c 07983856 n 0000 | (Norse mythology) a dwarf who possessed a treasure that was stolen by Loki -09579345 18 n 01 Vanir 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) race of ancient gods sometimes in conflict with the Aesir -09579491 18 n 02 Balder 0 Baldr 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of light and peace and noted for his beauty and sweet nature; son of Odin and Frigg and husband of Nanna; killed by Hoth -09579714 18 n 02 Bragi 0 Brage 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of poetry and music; son of Odin -09579848 18 n 01 Elli 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) goddess of old age who defeated Thor in a wrestling match -09579994 18 n 01 Forseti 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of justice; son of Balder and Nanna -09580125 18 n 02 Frey 0 Freyr 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of earth's fertility and peace and prosperity; son of Njorth and brother of Freya; originally of the Vanir; later with the Aesir -09580354 18 n 02 Freya 0 Freyja 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) goddess of love and fecundity; daughter of Njorth and sister of Frey -09580521 18 n 02 Frigg 0 Frigga 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) goddess of the heavens and married love; wife of Odin -09580673 18 n 03 Heimdall 0 Heimdal 0 Heimdallr 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of dawn and light; guardian of Asgard -09580829 18 n 02 Hel 0 Hela 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) goddess of the dead and queen of the underworld -09580971 18 n 01 Hoenir 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) one of the Aesir having a strong and beautiful body but a dull mind -09581129 18 n 05 Hoth 0 Hothr 0 Hoder 0 Hodr 0 Hodur 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) a blind god; misled by Loki, he kills his brother Balder by throwing a shaft of mistletoe -09581338 18 n 02 Idun 0 Ithunn 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) goddess of spring and wife of Bragi; guarded the apples that kept the gods eternally young -09581526 18 n 02 Jotun 0 Jotunn 0 002 @ 09488711 n 0000 ;c 07983856 n 0000 | (Norse mythology) one of a race of giants often in conflict with the Aesir -09581680 18 n 01 Loki 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) trickster; god of discord and mischief; contrived death of Balder and was overcome by Thor -09581859 18 n 01 Mimir 0 002 @ 09488711 n 0000 ;c 07983856 n 0000 | (Norse mythology) giant who lives in the roots of Yggdrasil and guards the well of wisdom -09582019 18 n 01 Nanna 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) wife of Balder -09582122 18 n 02 Njord 0 Njorth 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) chief of the Vanir; god of the sea and winds and prosperity; father of Frey and Freya; sometimes subsumes Teutonic Nerthus -09582343 18 n 02 Norn 0 weird_sister 0 005 @ 09578465 n 0000 ;c 07983856 n 0000 ~i 09582616 n 0000 ~i 09582726 n 0000 ~i 09582845 n 0000 | (Norse mythology) any of the three goddesses of destiny; identified with Anglo-Saxon Wyrd; similar to Greek Moirae and Roman Parcae -09582616 18 n 02 Urd 0 Urth 0 001 @i 09582343 n 0000 | goddess of fate: a giantess who personified the past -09582726 18 n 02 Verdandi 0 Verthandi 0 001 @i 09582343 n 0000 | goddess of fate: an elf who personified the present -09582845 18 n 01 Skuld 0 001 @i 09582343 n 0000 | goddess of fate: a dwarf who personified the future -09582949 18 n 01 Odin 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) ruler of the Aesir; supreme god of war and poetry and knowledge and wisdom (for which he gave an eye) and husband of Frigg; identified with the Teutonic Wotan -09583196 18 n 01 Sif 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) wife of Thor and guardian of the home -09583321 18 n 01 Sigyn 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) wife of Loki; held a cup over him during his punishment to spare him the pain of drops of poison -09583506 18 n 01 Thor 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of thunder and rain and farming; pictured as wielding a hammer emblematic of the thunderbolt; identified with Teutonic Donar -09583723 18 n 02 Tyr 0 Tyrr 0 002 @i 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) god of war and strife and son of Odin; identified with Anglo-Saxon Tiu -09583888 18 n 02 Ull 0 Ullr 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) one of the Aesir known for his beauty and skill with bow and skis; son of Sif and stepson of Thor -09584079 18 n 01 Vali 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) one of the Aesir and avenger of Balder; son of Odin -09584218 18 n 03 Vitharr 0 Vithar 0 Vidar 0 002 @ 09578465 n 0000 ;c 07983856 n 0000 | (Norse mythology) one of the Aesir; son of Odin; avenges his parent by slaying Fenrir at Ragnarok -09584405 18 n 01 Fenrir 0 002 @i 09484664 n 0000 ;c 07983856 n 0000 | (Norse mythology) an enormous wolf that was fathered by Loki and that killed Odin -09584559 18 n 01 Volund 0 002 @i 09484664 n 0000 ;c 07983856 n 0000 | (Norse mythology) a wonderful smith; identified with Anglo-Saxon Wayland and Teutonic Wieland -09584725 18 n 02 Yggdrasil 0 Ygdrasil 0 003 @i 09484664 n 0000 @i 12303462 n 0000 ;c 07983856 n 0000 | (Norse mythology) a huge ash tree whose roots and branches hold the earth and Heaven and Hell together -09584933 18 n 01 Ymir 0 002 @i 09484664 n 0000 ;c 07983856 n 0000 | (Norse mythology) the primeval giant slain by Odin and his brothers and from whose body they created the world: the sea from his blood; the earth from his flesh; the mountains from his bones; the sky from his skull -09585218 18 n 03 Wayland 0 Wayland_the_Smith 0 Wieland 0 003 @i 09484664 n 0000 ;r 09275473 n 0000 ;c 07978423 n 0000 | (European mythology) a supernatural smith and king of the elves; identified with Norse Volund -09585434 18 n 01 Teutonic_deity 0 006 @ 09505418 n 0000 ;c 09689152 n 0000 ;c 07978423 n 0000 ~i 09585650 n 0000 ~i 09585757 n 0000 ~i 09585889 n 0000 | (German mythology) a deity worshipped by the ancient Teutons -09585650 18 n 01 Donar 0 001 @i 09585434 n 0000 | the Teutonic god of thunder; counterpart of Norse Thor -09585757 18 n 02 Nerthus 0 Hertha 0 001 @i 09585434 n 0000 | the Teutonic goddess of fertility; later identified with Norse Njord -09585889 18 n 01 Wotan 0 001 @i 09585434 n 0000 | supreme Teutonic god; counterpart of Norse Odin and Anglo-Saxon Woden -09586011 18 n 01 Anglo-Saxon_deity 0 006 @ 09505418 n 0000 ;c 09701977 n 0000 ;c 07978423 n 0000 ~i 09586231 n 0000 ~i 09586326 n 0000 ~ 09586442 n 0000 | (Anglo-Saxon mythology) a deity worshipped by the Anglo-Saxons -09586231 18 n 01 Tiu 0 001 @i 09586011 n 0000 | god of war and sky; counterpart of Norse Tyr -09586326 18 n 02 Woden 0 Wodan 0 001 @i 09586011 n 0000 | chief god; counterpart of Norse Odin and Teutonic Wotan -09586442 18 n 02 Wyrd 0 Weird 0 001 @ 09586011 n 0000 | fate personified; any one of the three Weird Sisters -09586553 18 n 01 Adam 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) in Judeo-Christian mythology; the first man and the husband of Eve and the progenitor of the human race -09586743 18 n 01 Eve 0 002 @i 10787470 n 0000 ;c 06449735 n 0000 | (Old Testament) Adam's wife in Judeo-Christian mythology: the first woman and mother of the human race; God created Eve from Adam's rib and placed Adam and Eve in the Garden of Eden -09586994 18 n 01 Cain 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Cain killed Abel out of jealousy and was exiled by God -09587217 18 n 01 Abel 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) Cain and Abel were the first children of Adam and Eve born after the Fall of Man; Abel was killed by Cain -09587409 18 n 01 Seth 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) third son of Adam and Eve; given by God in place of the murdered Abel -09587565 18 n 03 fictional_character 0 fictitious_character 0 character 2 082 @ 09483738 n 0000 ~i 09589444 n 0000 ~i 09589585 n 0000 ~i 09589748 n 0000 ~i 09589876 n 0000 ~i 09589996 n 0000 ~i 09590205 n 0000 ~i 09590377 n 0000 ~i 09590980 n 0000 ~i 09591155 n 0000 ~i 09591450 n 0000 ~i 09591676 n 0000 ~i 09591814 n 0000 ~i 09591973 n 0000 ~i 09592147 n 0000 ~i 09592272 n 0000 ~i 09598370 n 0000 ~i 09598491 n 0000 ~i 09598598 n 0000 ~i 09598750 n 0000 ~i 09598888 n 0000 ~i 09599023 n 0000 ~i 09599195 n 0000 ~i 09599401 n 0000 ~i 09599633 n 0000 ~i 09599728 n 0000 ~i 09599891 n 0000 ~i 09600439 n 0000 ~i 09600624 n 0000 ~i 09600764 n 0000 ~i 09600901 n 0000 ~i 09601049 n 0000 ~i 09601429 n 0000 ~i 09601571 n 0000 ~i 09601906 n 0000 ~i 09602048 n 0000 ~i 09602162 n 0000 ~i 09602258 n 0000 ~i 09602383 n 0000 ~i 09602484 n 0000 ~i 09602716 n 0000 ~i 09602828 n 0000 ~i 09602964 n 0000 ~i 09603120 n 0000 ~i 09603258 n 0000 ~i 09603353 n 0000 ~i 09603471 n 0000 ~i 09603667 n 0000 ~i 09603761 n 0000 ~i 09603919 n 0000 ~i 09604014 n 0000 ~i 09604227 n 0000 ~i 09604345 n 0000 ~i 09604451 n 0000 ~i 09604574 n 0000 ~i 09604706 n 0000 ~i 09604868 n 0000 ~i 09782946 n 0000 ~i 10052128 n 0000 ~i 10172793 n 0000 ~i 10190231 n 0000 ~i 10267437 n 0000 ~i 10267719 n 0000 ~i 10507783 n 0000 ~i 10535047 n 0000 ~i 10535196 n 0000 ~i 10542138 n 0000 ~i 10542401 n 0000 ~i 10550951 n 0000 ~i 10551265 n 0000 ~i 10555538 n 0000 ~i 10681748 n 0000 ~i 10714317 n 0000 ~i 10729567 n 0000 ~i 10765435 n 0000 ~i 10801893 n 0000 ~i 10824888 n 0000 ~i 10987176 n 0000 ~i 10992933 n 0000 ~i 11018439 n 0000 ~i 11115293 n 0000 ~i 11176388 n 0000 | an imaginary person represented in a work of fiction (play or film or story); "she is the main character in the novel" -09589323 18 n 01 Ajax 0 001 @i 09484664 n 0000 | a mythical Greek hero; a warrior who fought against Troy in the Iliad -09589444 18 n 01 Aladdin 0 001 @i 09587565 n 0000 | in the Arabian Nights a boy who acquires a magic lamp from which he can summon a genie -09589585 18 n 01 Argonaut 1 002 @i 09587565 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of the heroes who sailed with Jason in search of the Golden Fleece -09589748 18 n 01 Babar 0 001 @i 09587565 n 0000 | an imaginary elephant that appears in a series of French books for children -09589876 18 n 01 Beatrice 0 001 @i 09587565 n 0000 | the woman who guided Dante through Paradise in the Divine Comedy -09589996 18 n 01 Beowulf 0 001 @i 09587565 n 0000 | the legendary hero of an anonymous Old English epic poem composed in the early 8th century; he slays a monster and becomes king but dies fighting a dragon -09590205 18 n 01 Bluebeard 0 002 @i 09587565 n 0000 ;c 07222581 n 0000 | (fairytale) a monstrous villain who marries seven women; he kills the first six for disobedience -09590377 18 n 02 Bond 1 James_Bond 0 001 @i 09587565 n 0000 | British secret operative 007 in novels by Ian Fleming -09590495 18 n 03 Brunhild 0 Brunnhilde 0 Brynhild 0 004 @i 09590772 n 0000 ;c 07983856 n 0000 ;c 09689152 n 0000 ;c 07978423 n 0000 | a Valkyrie or a queen in the Nibelungenlied who loved the hero Siegfried; when he deceived her she had him killed and then committed suicide -09590772 18 n 01 Valkyrie 0 003 @i 09484664 n 0000 ;c 07983856 n 0000 ~i 09590495 n 0000 | (Norse mythology) one of the maidens of Odin who chose heroes to be slain in battle and conducted them to Valhalla -09590980 18 n 01 Brer_Rabbit 0 001 @i 09587565 n 0000 | the fictional character of a rabbit who appeared in tales supposedly told by Uncle Remus and first published in 1880 -09591155 18 n 02 Bunyan 0 Paul_Bunyan 0 002 @i 09587565 n 0000 @i 10276045 n 0000 | a legendary giant lumberjack of the north woods of the United States and Canada; "Paul Bunyan had a blue ox named Babe"; "the lakes of Minnesota began when Paul Bunyan and Babe's footprints filled with water" -09591450 18 n 01 John_Henry 0 001 @i 09587565 n 0000 | hero of American folk tales; portrayed as an enormously strong black man who worked on the railroads and died from exhaustion after winning a contest with a steam drill -09591676 18 n 01 Cheshire_cat 0 001 @i 09587565 n 0000 | a fictional cat with a broad fixed smile on its face; created by Lewis Carroll -09591814 18 n 01 Chicken_Little 0 001 @i 09587565 n 0000 | a fictional character who was hit on the head with an acorn and believed that the sky was falling -09591973 18 n 01 Cinderella 1 001 @i 09587565 n 0000 | a fictional young girl who is saved from her stepmother and stepsisters by her fairy godmother and a handsome prince -09592147 18 n 01 Colonel_Blimp 1 001 @i 09587565 n 0000 | a pompous reactionary cartoon character created by Sir David Low -09592272 18 n 01 Dracula 0 001 @i 09587565 n 0000 | fictional vampire in a gothic horror novel by Bram Stoker -09592384 18 n 01 Jason 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the husband of Medea and leader of the Argonauts who sailed in quest of the Golden Fleece -09592563 18 n 01 Medea 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a princess of Colchis who aided Jason in taking the Golden Fleece from her father -09592734 18 n 01 Laertes 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the father of Odysseus -09592848 18 n 01 Odysseus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a famous mythical Greek hero; his return to Ithaca after the siege of Troy was described in the Odyssey -09593044 18 n 01 Ulysses 0 001 @i 09484664 n 0000 | (Roman mythology) Roman spelling for Odysseus -09593144 18 n 01 Penelope 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the wife of Odysseus and a symbol of devotion and fidelity; for 10 years while Odysseus fought the Trojan War she resisted numerous suitors until Odysseus returned and killed them -09593416 18 n 01 Theseus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a hero and king of Athens who was noted for his many great deeds: killed Procrustes and the Minotaur and defeated the Amazons and united Attica -09593651 18 n 01 Tantalus 0 004 @i 09484664 n 0000 ;c 07979425 n 0000 + 00850501 v 0105 + 00850501 v 0106 | (Greek mythology) a wicked king and son of Zeus; condemned in Hades to stand in water that receded when he tried to drink and beneath fruit that receded when he reached for it -09593937 18 n 01 Phrygian_deity 0 003 @ 09505418 n 0000 ;c 15253139 n 0000 ~i 09594093 n 0000 | deity of the ancient Phrygians of west central Asia Minor -09594093 18 n 05 Cybele 0 Dindymene 0 Great_Mother 0 Magna_Mater 0 Mater_Turrita 0 001 @i 09593937 n 0000 | great nature goddess of ancient Phrygia in Asia Minor; counterpart of Greek Rhea and Roman Ops -09594298 18 n 01 Achilles 0 001 @i 09484664 n 0000 | a mythical Greek hero of the Iliad; a foremost Greek warrior at the siege of Troy; when he was a baby his mother tried to make him immortal by bathing him in a magical river but the heel by which she held him remained vulnerable--his `Achilles' heel' -09594604 18 n 01 Aeneas 0 001 @i 09484664 n 0000 | a mythical Greek warrior who was a leader on the Trojan side of the Trojan War; hero of the Aeneid -09594756 18 n 01 Atreus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the king of Mycenae and father of Agamemnon and of Menelaus -09594906 18 n 01 Agamemnon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the king who lead the Greeks against Troy in the Trojan War -09595059 18 n 01 Menelaus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the king of Sparta at the time of the Trojan War; brother of Agamemnon; husband of Helen -09595240 18 n 01 Iphigenia 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the daughter of Clytemnestra and Agamemnon; Agamemnon was obliged to offer her as a sacrifice to Artemis when the Greek fleet was becalmed on its way to Troy; Artemis rescued her and she later became a priestess -09595545 18 n 01 Clytemnestra 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) wife of Agamemnon who had him murdered when he returned from the Trojan War -09595717 18 n 01 Aegisthus 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the seducer of Clytemnestra and murderer of Agamemnon who usurped the throne of Mycenae until Agamemnon's son Orestes returned home and killed him -09595957 18 n 01 Orestes 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the son of Agamemnon and Clytemnestra; his sister Electra persuaded him to avenge Agamemnon's death by killing Clytemnestra and Aegisthus -09596186 18 n 01 Cassandra 0 002 @i 10483799 n 0000 ;c 07979425 n 0000 | (Greek mythology) a prophetess in Troy during the Trojan War whose predictions were true but were never believed -09596374 18 n 01 Antigone 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the daughter of King Oedipus who disobeyed her father and was condemned to death -09596547 18 n 01 Creon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the brother of Jocasta and uncle of Antigone who became king of Thebes after the fall of Oedipus -09596733 18 n 01 Jocasta 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) queen of Thebes who unknowingly married her own son Oedipus -09596884 18 n 01 Electra 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the daughter of Agamemnon and Clytemnestra; persuaded her brother (Orestes) to avenge Agamemnon's death by helping her to kill Clytemnestra and her lover (Aegisthus) -09597141 18 n 01 Laocoon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the priest of Apollo who warned the Trojans to beware of Greeks bearing gifts when they wanted to accept the Trojan Horse; a god who favored the Greeks (Poseidon or Athena) sent snakes who coiled around Laocoon and his two twin sons killing them -09597478 18 n 01 Laius 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) king of Thebes who was unwittingly killed by his son Oedipus -09597628 18 n 01 Myrmidon 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a member of the warriors who followed Achilles on the expedition against Troy -09597798 18 n 03 Oedipus 0 King_Oedipus 0 Oedipus_Rex 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a tragic king of Thebes who unknowingly killed his father Laius and married his mother Jocasta; the subject of the drama `Oedipus Rex' by Sophocles -09598066 18 n 01 Tiresias 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the blind prophet of Thebes who revealed to Oedipus that Oedipus had murdered his father and married his mother -09598270 18 n 01 Peleus 0 001 @i 09484664 n 0000 | a king of the Myrmidons and father of Achilles -09598370 18 n 01 Don_Quixote 1 001 @i 09587565 n 0000 | the hero of a romance by Cervantes; chivalrous but impractical -09598491 18 n 01 El_Cid 0 001 @i 09587565 n 0000 | the hero of a Spanish epic poem from the 12th century -09598598 18 n 01 Fagin 0 001 @i 09587565 n 0000 | a villainous Jew in a novel by Charles Dickens; "Fagin was a fence who trained boys as pickpockets" -09598750 18 n 02 Falstaff 0 Sir_John_Falstaff 0 002 @i 09587565 n 0000 + 03027692 a 0101 | a dissolute character in Shakespeare's plays -09598888 18 n 01 Father_Brown 0 001 @i 09587565 n 0000 | a Catholic priest who was the hero of detective stories by G. K. Chesterton -09599023 18 n 02 Faust 0 Faustus 0 002 @i 09587565 n 0000 + 03134282 a 0101 | an alchemist of German legend who sold his soul to Mephistopheles in exchange for knowledge -09599195 18 n 01 Frankenstein 0 001 @i 09587565 n 0000 | the fictional Swiss scientist who was the protagonist in a gothic novel by Mary Wollstonecraft Shelley; he created a monster from parts of corpses -09599401 18 n 02 Frankenstein 1 Frankenstein's_monster 0 001 @i 09587565 n 0000 | the monster created by Frankenstein in a gothic novel by Mary Wollstonecraft Shelley (the creator's name is commonly used to refer to his creation) -09599633 18 n 01 Goofy 0 001 @i 09587565 n 0000 | a cartoon character created by Walt Disney -09599728 18 n 01 Gulliver 0 001 @i 09587565 n 0000 | a fictional Englishman who travels to the imaginary land of Lilliput in a satirical novel by Jonathan Swift -09599891 18 n 01 Hamlet 0 001 @i 09587565 n 0000 | the hero of William Shakespeare's tragedy who hoped to avenge the murder of his father -09600031 18 n 01 Hector 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a mythical Trojan who was killed by Achilles during the Trojan War -09600188 18 n 02 Helen 0 Helen_of_Troy 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the beautiful daughter of Zeus and Leda who was abducted by Paris; the Greek army sailed to Troy to get her back which resulted in the Trojan War -09600439 18 n 02 Horatio_Hornblower 0 Captain_Horatio_Hornblower 0 001 @i 09587565 n 0000 | a fictional English admiral during the Napoleonic Wars in novels written by C. S. Forester -09600624 18 n 01 Iago 0 001 @i 09587565 n 0000 | the villain in William Shakespeare's tragedy who tricked Othello into murdering his wife -09600764 18 n 02 Inspector_Maigret 0 Commissaire_Maigret 0 001 @i 09587565 n 0000 | a fictional detective in novels by Georges Simenon -09600901 18 n 01 Kilroy 0 001 @i 09587565 n 0000 | a nonexistent person popularized by American servicemen during World War II; "Kilroy was here" -09601049 18 n 02 Lear 1 King_Lear 0 001 @i 09587565 n 0000 | the hero of William Shakespeare's tragedy who was betrayed and mistreated by two of his scheming daughters -09601219 18 n 01 Leda 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) a queen of Sparta who was raped by Zeus who had taken the form of a swan; Helen of Troy was conceived in the rape of Leda -09601429 18 n 01 Lilliputian 0 002 @i 09587565 n 0000 + 03081485 a 0101 | a 6-inch tall inhabitant of Lilliput in a novel by Jonathan Swift -09601571 18 n 02 Marlowe 1 Philip_Marlowe 0 002 @i 09587565 n 0000 ;r 09044862 n 0000 | tough cynical detective (one of the early detective heroes in American fiction) created by Raymond Chandler -09601769 18 n 01 Mephistopheles 0 003 @i 09541919 n 0000 + 01133374 a 0105 + 01133374 a 0104 | evil spirit to whom Faust sold his soul -09601906 18 n 02 Micawber 0 Wilkins_Micawber 0 001 @i 09587565 n 0000 | fictional character created by Charles Dickens; an eternal optimist -09602048 18 n 01 Mother_Goose 0 001 @i 09587565 n 0000 | the imaginary author of a collection of nursery rhymes -09602162 18 n 01 Mr._Moto 0 001 @i 09587565 n 0000 | Japanese sleuth created by John Marquand -09602258 18 n 01 Othello 0 001 @i 09587565 n 0000 | the hero of William Shakespeare's tragedy who would not trust his wife -09602383 18 n 01 Pangloss 0 001 @i 09587565 n 0000 | an incurable optimist in a satire by Voltaire -09602484 18 n 01 Pantaloon 0 001 @i 09587565 n 0000 | a character in the commedia dell'arte; portrayed as a foolish old man -09602610 18 n 01 Pantaloon 1 001 @i 09931165 n 0000 | a buffoon in modern pantomimes; the butt of jokes -09602716 18 n 01 Perry_Mason 0 001 @i 09587565 n 0000 | fictional detective in novels by Erle Stanley Gardner -09602828 18 n 01 Peter_Pan 0 001 @i 09587565 n 0000 | the main character in a play and novel by J. M. Barrie; a boy who won't grow up -09602964 18 n 02 Pied_Piper 0 Pied_Piper_of_Hamelin 0 001 @i 09587565 n 0000 | the title character in a German folk tale and in a poem by Robert Browning -09603120 18 n 01 Pierrot 0 001 @i 09587565 n 0000 | a male character in French pantomime; usually dressed in white with a whitened face -09603258 18 n 01 Pluto 1 001 @i 09587565 n 0000 | a cartoon character created by Walt Disney -09603353 18 n 02 Huckleberry_Finn 0 Huck_Finn 0 001 @i 09587565 n 0000 | a mischievous boy in a novel by Mark Twain -09603471 18 n 01 Rip_van_Winkle 2 001 @i 09587565 n 0000 | the title character in a story by Washington Irving about a man who sleeps for 20 years and doesn't recognize the world when he wakens -09603667 18 n 01 Ruritanian 0 001 @i 09587565 n 0000 | an imaginary inhabitant of Ruritania -09603761 18 n 02 Tarzan 0 Tarzan_of_the_Apes 0 001 @i 09587565 n 0000 | a man raised by apes who was the hero of a series of novels by Edgar Rice Burroughs -09603919 18 n 01 Tom_Sawyer 0 001 @i 09587565 n 0000 | the boy hero of a novel by Mark Twain -09604014 18 n 01 Uncle_Remus 0 001 @i 09587565 n 0000 | the fictional storyteller of tales written in the Black Vernacular and set in the South; the tales were first collected and published in book form in 1880 -09604227 18 n 01 Uncle_Tom 1 001 @i 09587565 n 0000 | a servile black character in a novel by Harriet Beecher Stowe -09604345 18 n 01 Uncle_Sam 0 001 @i 09587565 n 0000 | a personification of the United States government -09604451 18 n 02 Sherlock_Holmes 0 Holmes 0 001 @i 09587565 n 0000 | a fictitious detective in stories by A. Conan Doyle -09604574 18 n 01 Simon_Legree 0 001 @i 09587565 n 0000 | the cruel slave dealer in an anti-slavery novel by Harriet Beecher Stowe -09604706 18 n 02 Sinbad_the_Sailor 0 Sinbad 0 001 @i 09587565 n 0000 | in the Arabian Nights a hero who tells of the fantastic adventures he had in his voyages -09604868 18 n 01 Snoopy 0 001 @i 09587565 n 0000 | a fictional beagle in a comic strip drawn by Charles Schulz -09604981 18 n 01 self 0 002 @ 00007846 n 0000 ~ 09605110 n 0000 | a person considered as a unique individual; "one's own self" -09605110 18 n 01 number_one 0 002 @ 09604981 n 0000 ;u 07075172 n 0000 | a reference to yourself or myself etc.; `take care of number one' means to put your own interests first -09605289 18 n 02 adult 0 grownup 1 035 @ 00007846 n 0000 + 01488616 a 0206 + 01488616 a 0101 + 15152817 n 0101 + 14425103 n 0101 ! 09622049 n 0101 %p 05219561 n 0000 ~ 09872464 n 0000 ~ 09895561 n 0000 ~ 09900981 n 0000 ~ 09904837 n 0000 ~ 09909060 n 0000 ~ 09957156 n 0000 ~ 10024025 n 0000 ~ 10048218 n 0000 ~ 10074249 n 0000 ~ 10187130 n 0000 ~ 10200781 n 0000 ~ 10218164 n 0000 ~ 10256756 n 0000 ~ 10257084 n 0000 ~ 10287213 n 0000 ~ 10316013 n 0000 ~ 10376523 n 0000 ~ 10390199 n 0000 ~ 10407105 n 0000 ~ 10441534 n 0000 ~ 10441694 n 0000 ~ 10480253 n 0000 ~ 10618146 n 0000 ~ 10625285 n 0000 ~ 10653388 n 0000 ~ 10658867 n 0000 ~ 10709358 n 0000 ~ 10787470 n 0000 | a fully developed person from maturity onward -09606009 18 n 02 adventurer 0 venturer 0 016 @ 00007846 n 0000 + 02373336 v 0201 + 02545272 v 0201 + 00796315 n 0101 + 02544348 v 0106 + 02545272 v 0103 ~ 09607782 n 0000 ~ 09773169 n 0000 ~ 09972946 n 0000 ~ 09991530 n 0000 ~ 10119200 n 0000 ~ 10188146 n 0000 ~ 10309614 n 0000 ~ 10334567 n 0000 ~ 10634075 n 0000 ~i 10885994 n 0000 | a person who enjoys taking risks -09606380 18 n 01 anomalist 0 003 @ 09621545 n 0000 + 14505821 n 0101 + 09606527 n 0101 | someone who has a special interest in exceptional cases -09606527 18 n 02 anomaly 0 unusual_person 0 015 @ 00007846 n 0000 + 01596455 a 0101 + 09606380 n 0101 ~ 09606873 n 0000 ~ 09755893 n 0000 ~ 09781650 n 0000 ~ 09825519 n 0000 ~ 10042845 n 0000 ~ 10128909 n 0000 ~ 10220924 n 0000 ~ 10240514 n 0000 ~ 10322238 n 0000 ~ 10507692 n 0000 ~ 10725893 n 0000 ~ 10735852 n 0000 | a person who is unusual -09606873 18 n 01 anachronism 0 004 @ 09606527 n 0000 + 02379925 a 0103 + 02379925 a 0101 + 02379925 a 0102 | a person who seems to be displaced in time; who belongs to another age -09607055 18 n 01 Ananias 0 002 @i 10256537 n 0000 ;c 06453849 n 0000 | a habitual liar (after a New Testament character who was struck dead for lying) -09607208 18 n 01 apache 1 001 @ 10120085 n 0000 | a Parisian gangster -09607280 18 n 02 applicant 0 applier 0 012 @ 00007846 n 0000 + 00765396 v 0201 + 00765396 v 0101 ~ 09801533 n 0000 ~ 09853087 n 0000 ~ 09925592 n 0000 ~ 10222716 n 0000 ~ 10300654 n 0000 ~ 10420031 n 0000 ~ 10456514 n 0000 ~ 10458024 n 0000 ~ 10669486 n 0000 | a person who requests or seeks something such as assistance or employment or admission -09607630 18 n 02 appointee 1 appointment 0 003 @ 00007846 n 0000 + 02396205 v 0101 + 02475922 v 0101 | a person who is appointed to a job or position -09607782 18 n 01 argonaut 0 001 @ 09606009 n 0000 | someone engaged in a dangerous but potentially rewarding adventure -09607903 18 n 01 Ashkenazi 0 001 @ 09681351 n 0000 | a Jew of eastern European or German descent -09608002 18 n 04 attendant 1 attender 1 attendee 1 meeter 0 008 @ 10401829 n 0000 + 02486932 v 0401 + 02612762 v 0201 + 01846815 a 0101 + 02612762 v 0101 ~ 09961889 n 0000 ~ 10403490 n 0000 ~ 10686598 n 0000 | a person who is present and participates in a meeting; "he was a regular attender at department meetings"; "the gathering satisfied both organizers and attendees" -09608377 18 n 01 auctioneer 0 004 @ 09777012 n 0000 + 00092366 n 0101 + 02244773 v 0101 + 02244773 v 0103 | an agent who conducts an auction -09608520 18 n 02 behaviorist 0 behaviourist 0 005 @ 10488865 n 0000 + 02660651 a 0204 + 06139764 n 0202 + 02660651 a 0102 + 06139764 n 0101 | a psychologist who subscribes to behaviorism -09608709 18 n 02 benefactor 0 helper 0 018 @ 10138767 n 0000 + 02555434 v 0201 + 02547586 v 0201 ~ 09609155 n 0000 ~ 09865279 n 0000 ~ 10025730 n 0000 ~ 10026058 n 0000 ~ 10076224 n 0000 ~ 10139077 n 0000 ~ 10191613 n 0000 ~ 10257221 n 0000 ~ 10369166 n 0000 ~ 10371052 n 0000 ~ 10407954 n 0000 ~ 10486349 n 0000 ~ 10553805 n 0000 ~ 10629820 n 0000 ~ 10736259 n 0000 | a person who helps people or institutions (especially with financial help) -09609155 18 n 01 benefactress 0 001 @ 09608709 n 0000 | a woman benefactor -09609232 18 n 01 capitalist 0 012 @ 00007846 n 0000 ;c 01094725 n 0000 + 13354420 n 0101 + 13353607 n 0101 ~ 09882716 n 0000 ~ 10090020 n 0000 ~ 10179911 n 0000 ~ 10216106 n 0000 ~ 10300963 n 0000 ~ 10328437 n 0000 ~ 10481003 n 0000 ~i 10826557 n 0000 | a person who invests capital in a business (especially a large business) -09609561 18 n 02 captor 0 capturer 0 005 @ 00007846 n 0000 + 01480149 v 0201 ! 10257221 n 0101 ~ 10230801 n 0000 ~ 10679723 n 0000 | a person who captures and holds people or animals -09609746 18 n 01 caster 0 002 @ 09632518 n 0000 + 01662771 v 0101 | a worker who casts molten metal into finished products -09609871 18 n 02 changer 0 modifier 0 006 @ 00007846 n 0000 + 00169806 v 0201 + 00126264 v 0101 ~ 09772606 n 0000 ~ 10362428 n 0000 ~ 10647582 n 0000 | a person who changes something; "an inveterate changer of the menu" -09610093 18 n 01 coadjutor 0 001 @ 09815790 n 0000 | an assistant to a bishop -09610173 18 n 01 cofounder 0 001 @ 10107303 n 0000 | one of a group of founders -09610255 18 n 01 color-blind_person 0 003 @ 00007846 n 0000 ~ 09625213 n 0000 ~ 10011659 n 0000 | a person unable to distinguish differences in hue -09610405 18 n 03 commoner 0 common_man 0 common_person 0 009 @ 00007846 n 0000 ~ 09869830 n 0000 ~ 09923418 n 0000 ~ 10067793 n 0000 ~ 10223744 n 0000 ~ 10250527 n 0000 ~ 10441251 n 0000 ~ 10481711 n 0000 ~ 10544232 n 0000 | a person who holds no title -09610660 18 n 01 communicator 0 045 @ 00007846 n 0000 + 01070102 v 0101 + 00742320 v 0101 + 00740577 v 0101 ~ 09781504 n 0000 ~ 09784160 n 0000 ~ 09795334 n 0000 ~ 09811712 n 0000 ~ 09814660 n 0000 ~ 09826698 n 0000 ~ 09875786 n 0000 ~ 09953965 n 0000 ~ 09954246 n 0000 ~ 09954479 n 0000 ~ 09966554 n 0000 ~ 10139347 n 0000 ~ 10177014 n 0000 ~ 10205985 n 0000 ~ 10248711 n 0000 ~ 10351874 n 0000 ~ 10418841 n 0000 ~ 10454752 n 0000 ~ 10466387 n 0000 ~ 10481929 n 0000 ~ 10482054 n 0000 ~ 10482921 n 0000 ~ 10483138 n 0000 ~ 10490699 n 0000 ~ 10502204 n 0000 ~ 10506094 n 0000 ~ 10521662 n 0000 ~ 10524413 n 0000 ~ 10533983 n 0000 ~ 10578762 n 0000 ~ 10596899 n 0000 ~ 10597505 n 0000 ~ 10682380 n 0000 ~ 10686313 n 0000 ~ 10697879 n 0000 ~ 10733999 n 0000 ~ 10762212 n 0000 ~ 10768022 n 0000 ~ 10771270 n 0000 ~ 10784015 n 0000 ~ 10794014 n 0000 | a person who communicates with others -09611548 18 n 01 Conservative_Jew 0 002 @ 09681351 n 0000 #m 08095160 n 0000 | Jew who keeps some requirements of Mosaic law but adapts others to suit modern circumstances -09611722 18 n 01 conservator 1 001 @ 10086074 n 0000 | someone appointed by a court to assume responsibility for the interests of a minor or incompetent person -09611884 18 n 01 constituent 0 002 @ 10760340 n 0000 #m 08238156 n 0000 | a member of a constituency; a citizen who is represented in a government by officials for whom he or she votes; "needs continued support by constituents to be re-elected" -09612131 18 n 01 contestee 0 003 @ 10782940 n 0000 ;c 00181781 n 0000 + 00869596 v 0101 | a winner (of a race or an election etc.) whose victory is contested -09612291 18 n 01 contester 0 003 @ 09615465 n 0000 ;c 00181781 n 0000 + 00869596 v 0101 | someone who contests an outcome (of a race or an election etc.) -09612447 18 n 01 Contra 0 001 @ 09724656 n 0000 | a member of the guerrilla force that opposed a left-wing government in Nicaragua -09612580 18 n 01 contrapuntist 0 002 @ 09947232 n 0000 + 07025419 n 0101 | a composer who specializes in counterpoint -09612700 18 n 01 contrarian 0 001 @ 10216106 n 0000 | an investor who deliberately decides to go against the prevailing wisdom of other investors -09612848 18 n 01 consumer 0 011 @ 10741590 n 0000 + 01156834 v 0101 ~ 09915964 n 0000 ~ 09951616 n 0000 ~ 09984659 n 0000 ~ 10034201 n 0000 ~ 10034614 n 0000 ~ 10042300 n 0000 ~ 10479561 n 0000 ~ 10614976 n 0000 ~ 10617814 n 0000 | a person who uses goods or services -09613118 18 n 01 contadino 0 001 @ 10078806 n 0000 | an Italian farmer -09613191 18 n 01 contestant 0 016 @ 00007846 n 0000 ~ 09779280 n 0000 ~ 09820263 n 0000 ~ 09999443 n 0000 ~ 10060075 n 0000 ~ 10271124 n 0000 ~ 10272913 n 0000 ~ 10379620 n 0000 ~ 10388192 n 0000 ~ 10439851 n 0000 ~ 10460599 n 0000 ~ 10498196 n 0000 ~ 10533013 n 0000 ~ 10649438 n 0000 ~ 10782940 n 0000 ~ 10785085 n 0000 | a person who participates in competitions -09613559 18 n 01 coon 1 001 @ 10544232 n 0000 | an eccentric or undignified rustic; "I'll be a gone coon when the battle starts" -09613690 18 n 02 cosigner 0 cosignatory 0 002 @ 10597234 n 0000 + 02465145 v 0102 | one of two or more signers of the same document (as a treaty or declaration) -09613853 18 n 01 cosigner 1 002 @ 10597234 n 0000 + 00998030 v 0101 | a signer in addition to the principal signer (to verify the authenticity of the principal signature or to provide surety) -09614047 18 n 01 coward 0 011 @ 00007846 n 0000 + 00264776 a 0101 + 01779803 v 0102 + 02063771 v 0105 ~ 09983214 n 0000 ~ 09992429 n 0000 ~ 10452024 n 0000 ~ 10498046 n 0000 ~ 10594715 n 0000 ~ 10603378 n 0000 ~ 10603528 n 0000 | a person who shows fear or timidity -09614315 18 n 01 creator 0 016 @ 00007846 n 0000 + 01685313 v 0101 ~ 09805475 n 0000 ~ 09812338 n 0000 ~ 09878559 n 0000 ~ 09920283 n 0000 ~ 09972157 n 0000 ~ 09975425 n 0000 ~ 10010062 n 0000 ~ 10078415 n 0000 ~ 10078806 n 0000 ~ 10214637 n 0000 ~ 10284064 n 0000 ~ 10325774 n 0000 ~ 10383816 n 0000 ~ 10480018 n 0000 | a person who grows or makes or invents things -09614684 18 n 04 defender 0 guardian 0 protector 0 shielder 0 023 @ 10466918 n 0000 + 01130169 v 0401 + 00598215 n 0301 + 01128193 v 0301 + 00829378 n 0204 + 00818466 n 0201 + 01149138 v 0102 + 01129876 v 0101 + 00895304 v 0101 ~ 09771855 n 0000 ~ 09863031 n 0000 ~ 09906538 n 0000 ~ 09908273 n 0000 ~ 09984298 n 0000 ~ 10091651 n 0000 ~ 10106752 n 0000 ~ 10150071 n 0000 ~ 10229498 n 0000 ~ 10249459 n 0000 ~ 10408552 n 0000 ~ 10410125 n 0000 ~ 10728828 n 0000 ~ 10769607 n 0000 | a person who cares for persons or property -09615211 18 n 02 defender 1 withstander 1 002 @ 09939313 n 0000 + 01116585 v 0203 | a fighter who holds out against attack -09615336 18 n 01 discussant 0 003 @ 10401829 n 0000 + 00813978 v 0102 ~ 09769525 n 0000 | a participant in a formal discussion -09615465 18 n 03 disputant 0 controversialist 0 eristic 0 012 @ 00007846 n 0000 + 00604221 a 0301 + 00775156 v 0102 ~ 09612291 n 0000 ~ 09762385 n 0000 ~ 09997404 n 0000 ~ 10003283 n 0000 ~ 10156173 n 0000 ~ 10270109 n 0000 ~ 10349243 n 0000 ~ 10498422 n 0000 ~ 10515194 n 0000 | a person who disputes; who is good at or enjoys controversy -09615807 18 n 03 engineer 0 applied_scientist 0 technologist 0 034 @ 00007846 n 0000 + 06125041 n 0304 + 00949619 n 0301 + 00711550 v 0101 + 00710005 v 0102 ~ 09775907 n 0000 ~ 09776079 n 0000 ~ 09809538 n 0000 ~ 09825939 n 0000 ~ 09924540 n 0000 ~ 10049017 n 0000 ~ 10294421 n 0000 ~ 10304650 n 0000 ~ 10312077 n 0000 ~ 10320484 n 0000 ~ 10481268 n 0000 ~ 10536134 n 0000 ~ 10680609 n 0000 ~i 10921009 n 0000 ~i 10935128 n 0000 ~i 10939630 n 0000 ~i 10954039 n 0000 ~i 10985440 n 0000 ~i 11003918 n 0000 ~i 11094780 n 0000 ~i 11102878 n 0000 ~i 11128394 n 0000 ~i 11268118 n 0000 ~i 11295619 n 0000 ~i 11299890 n 0000 ~i 11311011 n 0000 ~i 11348946 n 0000 ~i 11376565 n 0000 ~i 11376742 n 0000 | a person who uses scientific knowledge to solve practical problems -09616573 18 n 03 enologist 0 oenologist 0 fermentologist 0 003 @ 10631941 n 0000 + 05636171 n 0202 + 05636171 n 0101 | a specialist in wine making -09616722 18 n 01 ensign 0 002 @ 09943541 n 0000 ;c 08199025 n 0000 | a person who holds a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant junior grade -09616922 18 n 01 entertainer 0 009 @ 00007846 n 0000 + 02492198 v 0101 ~ 09864632 n 0000 ~ 09883174 n 0000 ~ 10032676 n 0000 ~ 10191943 n 0000 ~ 10299250 n 0000 ~ 10415638 n 0000 ~ 10441124 n 0000 | a person who tries to please or amuse -09617161 18 n 02 eulogist 0 panegyrist 0 002 @ 10380672 n 0000 + 06694149 n 0203 | an orator who delivers eulogies or panegyrics -09617292 18 n 01 excavator 0 002 @ 10791221 n 0000 + 01311378 v 0101 | a workman who excavates for foundations of buildings or for quarrying -09617435 18 n 01 ex-gambler 0 001 @ 10118844 n 0000 | a former gambler -09617508 18 n 01 ex-mayor 0 001 @ 10303814 n 0000 | a former mayor -09617577 18 n 01 experimenter 0 002 @ 10523076 n 0000 + 02532595 v 0101 | a research worker who conducts experiments -09617696 18 n 01 experimenter 1 002 @ 00007846 n 0000 ~ 10712055 n 0000 | a person who enjoys testing innovative ideas; "she was an experimenter in new forms of poetry" -09617867 18 n 01 expert 0 044 @ 00007846 n 0000 ~ 09762509 n 0000 ~ 09780120 n 0000 ~ 09784870 n 0000 ~ 09790482 n 0000 ~ 09791530 n 0000 ~ 09792237 n 0000 ~ 09797606 n 0000 ~ 09804053 n 0000 ~ 09805324 n 0000 ~ 09824361 n 0000 ~ 09858165 n 0000 ~ 09885534 n 0000 ~ 09887034 n 0000 ~ 09929202 n 0000 ~ 09950917 n 0000 ~ 09967159 n 0000 ~ 10046717 n 0000 ~ 10070449 n 0000 ~ 10123214 n 0000 ~ 10127555 n 0000 ~ 10186350 n 0000 ~ 10215623 n 0000 ~ 10227985 n 0000 ~ 10246703 n 0000 ~ 10269785 n 0000 ~ 10324201 n 0000 ~ 10343869 n 0000 ~ 10353598 n 0000 ~ 10369528 n 0000 ~ 10386196 n 0000 ~ 10400309 n 0000 ~ 10405107 n 0000 ~ 10458596 n 0000 ~ 10490330 n 0000 ~ 10562749 n 0000 ~ 10586557 n 0000 ~ 10593115 n 0000 ~ 10631941 n 0000 ~ 10689878 n 0000 ~ 10696508 n 0000 ~ 10696755 n 0000 ~ 10707233 n 0000 ~ 10749123 n 0000 | a person with special knowledge or ability who performs skillfully -09618760 18 n 01 exponent 1 002 @ 09621545 n 0000 + 00955601 v 0108 | someone who expounds and interprets or explains -09618880 18 n 01 ex-president 0 001 @ 10467179 n 0000 | a former president -09618957 18 n 01 face 0 002 @ 00007846 n 0000 ;u 07108453 n 0000 | a part of a person that is used to refer to a person; "he looked out at a roomful of faces"; "when he returned to work he met many new faces" -09619168 18 n 02 female 0 female_person 0 010 @ 00007846 n 0000 + 01484451 a 0101 ! 09624168 n 0101 %p 05219923 n 0000 ~ 10084043 n 0000 ~ 10084295 n 0000 ~ 10106995 n 0000 ~ 10131151 n 0000 ~ 10787470 n 0000 ~ 10788852 n 0000 | a person who belongs to the sex that can have babies -09619452 18 n 01 finisher 0 003 @ 09632518 n 0000 + 01265989 v 0101 ~ 10657306 n 0000 | a worker who performs the last step in a manufacturing process -09619605 18 n 01 finisher 1 003 @ 10393909 n 0000 + 01265989 v 0101 ~ 10746460 n 0000 | a painter who applies a finishing coat -09619734 18 n 01 finisher 3 001 @ 10502576 n 0000 | a racing driver who finishes a race -09619824 18 n 01 individualist 0 009 @ 00007846 n 0000 + 05963101 n 0101 + 04763293 n 0102 ~ 09996039 n 0000 ~ 10270628 n 0000 ~ 10337488 n 0000 ~ 10357907 n 0000 ~ 10365701 n 0000 ~ 10785333 n 0000 | a person who pursues independent thought or action -09620078 18 n 05 inhabitant 0 habitant 0 dweller 0 denizen 0 indweller 0 033 @ 00007846 n 0000 + 02649830 v 0302 + 02649830 v 0104 ~ 09641757 n 0000 ~ 09686536 n 0000 ~ 09691279 n 0000 ~ 09691435 n 0000 ~ 09724533 n 0000 ~ 09738400 n 0000 ~ 09738708 n 0000 ~ 09785786 n 0000 ~ 09867154 n 0000 ~ 09968549 n 0000 ~ 10042074 n 0000 ~ 10117957 n 0000 ~ 10178464 n 0000 ~ 10217436 n 0000 ~ 10245507 n 0000 ~ 10248008 n 0000 ~ 10268180 n 0000 ~ 10293502 n 0000 ~ 10349670 n 0000 ~ 10362682 n 0000 ~ 10366692 n 0000 ~ 10369845 n 0000 ~ 10422871 n 0000 ~ 10427658 n 0000 ~ 10437698 n 0000 ~ 10523519 n 0000 ~ 10699262 n 0000 ~ 10729711 n 0000 ~ 10753442 n 0000 ~ 10774329 n 0000 | a person who inhabits a particular place -09620794 18 n 05 native 0 indigen 0 indigene 0 aborigine 0 aboriginal 1 009 @ 00007846 n 0000 + 01037148 a 0502 + 01037148 a 0402 + 01036083 a 0101 ~ 09720702 n 0000 ~ 09722530 n 0000 ~ 09727440 n 0000 ~ 09728403 n 0000 ~ 09730951 n 0000 | an indigenous person who was born in a particular place; "the art of the natives of the northwest coast"; "the Canadian government scrapped plans to tax the grants to aboriginal college students" -09621232 18 n 01 native 1 001 @ 00007846 n 0000 | a person born in a particular place or country; "he is a native of Brazil" -09621359 18 n 02 innocent 0 inexperienced_person 0 005 @ 00007846 n 0000 ~ 09871867 n 0000 ~ 10243872 n 0000 ~ 10344121 n 0000 ~ 10755257 n 0000 | a person who lacks knowledge of evil -09621545 18 n 02 intellectual 0 intellect 0 023 @ 00007846 n 0000 ~ 09606380 n 0000 ~ 09618760 n 0000 ~ 09781921 n 0000 ~ 09798404 n 0000 ~ 09847629 n 0000 ~ 09928845 n 0000 ~ 09995398 n 0000 ~ 10047030 n 0000 ~ 10073762 n 0000 ~ 10126926 n 0000 ~ 10174330 n 0000 ~ 10309496 n 0000 ~ 10557854 n 0000 ~ 10604634 n 0000 ~ 10633298 n 0000 ~ 10669009 n 0000 ~ 10687231 n 0000 ~ 10706812 n 0000 ~ 10708292 n 0000 ~ 10708454 n 0000 ~ 10756433 n 0000 ~ 10789709 n 0000 | a person who uses the mind creatively -09622049 18 n 02 juvenile 0 juvenile_person 0 009 @ 00007846 n 0000 + 02892980 a 0101 ! 09605289 n 0101 %p 05219297 n 0000 ~ 09627263 n 0000 ~ 09772029 n 0000 ~ 09917593 n 0000 ~ 10206506 n 0000 ~ 10804406 n 0000 | a young person, not fully developed -09622302 18 n 01 lover 0 020 @ 00007846 n 0000 + 01828736 v 0101 + 01775535 v 0101 + 01775164 v 0101 ~ 09771435 n 0000 ~ 09849598 n 0000 ~ 09851575 n 0000 ~ 09871364 n 0000 ~ 09991867 n 0000 ~ 10130686 n 0000 ~ 10198832 n 0000 ~ 10202085 n 0000 ~ 10202225 n 0000 ~ 10237196 n 0000 ~ 10351064 n 0000 ~ 10420649 n 0000 ~ 10538082 n 0000 ~ 10627252 n 0000 ~ 10643584 n 0000 ~ 10682953 n 0000 | a person who loves someone or is loved by someone -09622745 18 n 01 lover 2 005 @ 10024362 n 0000 + 01426397 v 0103 ~ 10078333 n 0000 ~ 10288516 n 0000 ~ 10323752 n 0000 | a significant other to whom you are not related by marriage -09622928 18 n 01 loved_one 0 001 @ 00007846 n 0000 | a person who you love, usually a member of your family -09623038 18 n 01 leader 0 058 @ 00007846 n 0000 + 14433361 n 0101 + 08381436 n 0101 + 05617310 n 0101 + 01256417 n 0101 + 02440244 v 0102 + 01999798 v 0101 + 01999423 v 0101 + 00771632 v 0101 ! 10099375 n 0101 ~ 09505153 n 0000 ~ 09807754 n 0000 ~ 09849349 n 0000 ~ 09888269 n 0000 ~ 09893344 n 0000 ~ 09913455 n 0000 ~ 09920106 n 0000 ~ 09924437 n 0000 ~ 09941383 n 0000 ~ 10001764 n 0000 ~ 10038320 n 0000 ~ 10054657 n 0000 ~ 10081456 n 0000 ~ 10104064 n 0000 ~ 10115271 n 0000 ~ 10118382 n 0000 ~ 10151570 n 0000 ~ 10152763 n 0000 ~ 10162991 n 0000 ~ 10164025 n 0000 ~ 10199251 n 0000 ~ 10209082 n 0000 ~ 10242032 n 0000 ~ 10249270 n 0000 ~ 10286282 n 0000 ~ 10316862 n 0000 ~ 10322391 n 0000 ~ 10324851 n 0000 ~ 10325013 n 0000 ~ 10346198 n 0000 ~ 10432320 n 0000 ~ 10448157 n 0000 ~ 10448455 n 0000 ~ 10450303 n 0000 ~ 10451263 n 0000 ~ 10469346 n 0000 ~ 10493528 n 0000 ~ 10519494 n 0000 ~ 10563314 n 0000 ~ 10631512 n 0000 ~ 10663659 n 0000 ~ 10676018 n 0000 ~ 10715789 n 0000 ~ 10722575 n 0000 ~i 11068401 n 0000 ~i 11093848 n 0000 ~i 11163342 n 0000 ~i 11250287 n 0000 | a person who rules or guides or inspires others -09624168 18 n 02 male 0 male_person 0 016 @ 00007846 n 0000 + 01483677 a 0101 + 01477077 a 0101 ! 09619168 n 0101 %p 05219724 n 0000 ~ 09871952 n 0000 ~ 09908025 n 0000 ~ 10105906 n 0000 ~ 10279219 n 0000 ~ 10285313 n 0000 ~ 10285938 n 0000 ~ 10287213 n 0000 ~ 10288516 n 0000 ~ 10288763 n 0000 ~ 10333719 n 0000 ~ 10602119 n 0000 | a person who belongs to the sex that cannot have babies -09624559 18 n 05 mediator 0 go-between 0 intermediator 0 intermediary 0 intercessor 0 011 @ 10351874 n 0000 + 00760956 v 0303 + 00760956 v 0102 ~ 09624899 n 0000 ~ 09952163 n 0000 ~ 10014658 n 0000 ~ 10160412 n 0000 ~ 10212501 n 0000 ~ 10299875 n 0000 ~ 10326087 n 0000 ~ 10568754 n 0000 | a negotiator who acts as a link between parties -09624899 18 n 01 mediatrix 0 001 @ 09624559 n 0000 | a woman who is a mediator -09624980 18 n 02 money_handler 0 money_dealer 0 007 @ 00007846 n 0000 ~ 09837720 n 0000 ~ 10032524 n 0000 ~ 10069120 n 0000 ~ 10409752 n 0000 ~ 10513623 n 0000 ~ 10727256 n 0000 | a person who receives or invests or pays out money -09625213 18 n 01 monochromat 0 001 @ 09610255 n 0000 | a person who is completely color-blind -09625309 18 n 01 naprapath 0 001 @ 10707233 n 0000 | a therapist who practices naprapathy -09625401 18 n 02 national 0 subject 0 008 @ 00007846 n 0000 #m 08166552 n 0000 + 02329864 a 0201 + 02496816 v 0202 + 02988060 a 0101 ~ 09923673 n 0000 ~ 09970699 n 0000 ~ 10407310 n 0000 | a person who owes allegiance to that nation; "a monarch has a duty to his subjects" -09625676 18 n 01 nativist 0 002 @ 10423589 n 0000 + 05973198 n 0101 | a philosopher who subscribes to nativism -09625789 18 n 01 nonreligious_person 0 008 @ 00007846 n 0000 ! 09628382 n 0101 ~ 09859412 n 0000 ~ 10000459 n 0000 ~ 10015897 n 0000 ~ 10166394 n 0000 ~ 10358420 n 0000 ~ 10456138 n 0000 | a person who does not manifest devotion to a deity -09626031 18 n 01 nonworker 0 008 @ 00007846 n 0000 ! 09632518 n 0101 ~ 09996304 n 0000 ~ 10197967 n 0000 ~ 10525617 n 0000 ~ 10663745 n 0000 ~ 10737860 n 0000 ~ 10744164 n 0000 | a person who does nothing -09626238 18 n 04 peer 0 equal 0 match 0 compeer 0 013 @ 00007846 n 0000 #m 08372190 n 0000 + 02672187 v 0304 + 00889831 a 0201 + 00653620 v 0203 + 00417001 v 0205 + 02672187 v 0201 ~ 09816771 n 0000 ~ 09960417 n 0000 ~ 10119953 n 0000 ~ 10648237 n 0000 ~ 10671736 n 0000 ~ 10719692 n 0000 | a person who is of equal standing with another in a group -09626589 18 n 04 perceiver 0 percipient 0 observer 0 beholder 0 016 @ 00007846 n 0000 + 02130160 v 0401 + 02455407 v 0302 + 02154508 v 0302 + 02118933 v 0303 + 02106506 v 0101 ~ 10075185 n 0000 ~ 10090498 n 0000 ~ 10165448 n 0000 ~ 10165673 n 0000 ~ 10165808 n 0000 ~ 10363445 n 0000 ~ 10576071 n 0000 ~ 10633450 n 0000 ~ 10757492 n 0000 ~ 10786033 n 0000 | a person who becomes aware (of things or events) through the senses -09627017 18 n 01 percher 0 002 @ 00007846 n 0000 + 01543731 v 0101 | a person situated on a perch -09627117 18 n 02 precursor 0 forerunner 0 002 @ 00007846 n 0000 ~ 10464711 n 0000 | a person who goes before or announces the coming of another -09627263 18 n 02 preteen 0 preteenager 0 002 @ 09622049 n 0000 + 01649271 a 0101 | a preadolescent boy or girl (usually between 9 and 12 years of age); "little league is intended for the preteens" -09627462 18 n 02 primitive 0 primitive_person 0 013 @ 00007846 n 0000 + 00817731 a 0102 + 00413432 a 0101 ~ 09635823 n 0000 ~ 09757076 n 0000 ~ 09842395 n 0000 ~ 09902731 n 0000 ~ 10168457 n 0000 ~ 10322801 n 0000 ~ 10334461 n 0000 ~ 10433610 n 0000 ~ 10553402 n 0000 ~ 10781684 n 0000 | a person who belongs to an early stage of civilization -09627807 18 n 02 prize_winner 0 lottery_winner 0 001 @ 10782791 n 0000 | the winner of a lottery -09627906 18 n 02 recipient 0 receiver 0 022 @ 09764201 n 0000 + 02210119 v 0201 + 02210119 v 0101 ~ 09769345 n 0000 ~ 09783537 n 0000 ~ 09795556 n 0000 ~ 09815455 n 0000 ~ 09850121 n 0000 ~ 09867633 n 0000 ~ 09954081 n 0000 ~ 09958447 n 0000 ~ 10004804 n 0000 ~ 10143595 n 0000 ~ 10168584 n 0000 ~ 10183757 n 0000 ~ 10187356 n 0000 ~ 10289969 n 0000 ~ 10409634 n 0000 ~ 10485989 n 0000 ~ 10578656 n 0000 ~ 10724570 n 0000 ~ 10768272 n 0000 | a person who receives something -09628382 18 n 01 religious_person 0 033 @ 00007846 n 0000 ! 09625789 n 0101 ~ 09629065 n 0000 ~ 09678009 n 0000 ~ 09680136 n 0000 ~ 09682291 n 0000 ~ 09683757 n 0000 ~ 09684609 n 0000 ~ 09758173 n 0000 ~ 09778927 n 0000 ~ 09795639 n 0000 ~ 09847727 n 0000 ~ 09903367 n 0000 ~ 09922485 n 0000 ~ 09965515 n 0000 ~ 10290223 n 0000 ~ 10323182 n 0000 ~ 10330439 n 0000 ~ 10348874 n 0000 ~ 10349836 n 0000 ~ 10364198 n 0000 ~ 10390902 n 0000 ~ 10401468 n 0000 ~ 10413834 n 0000 ~ 10464052 n 0000 ~ 10483890 n 0000 ~ 10518602 n 0000 ~ 10519494 n 0000 ~ 10544615 n 0000 ~ 10545296 n 0000 ~ 10730077 n 0000 ~i 10948656 n 0000 ~i 10976862 n 0000 | a person who manifests devotion to a deity -09629065 18 n 01 religionist 0 005 @ 09628382 n 0000 + 06206470 n 0101 + 04827175 n 0102 + 08081668 n 0101 + 05946687 n 0101 | a person addicted to religion or a religious zealot -09629246 18 n 01 sensualist 0 009 @ 00007846 n 0000 + 07488875 n 0103 ~ 09857007 n 0000 ~ 09933324 n 0000 ~ 10061656 n 0000 ~ 10062716 n 0000 ~ 10168183 n 0000 ~ 10759543 n 0000 ~ 10766260 n 0000 | a person who enjoys sensuality -09629477 18 n 02 ticket_agent 0 booking_clerk 0 002 @ 10577284 n 0000 ;c 07006119 n 0000 | someone who sells tickets (e.g., theater seats or travel accommodations) -09629643 18 n 01 ticket_holder 0 001 @ 10180178 n 0000 | holder of a ticket (for admission or for passage) -09629752 18 n 02 traveler 0 traveller 0 045 @ 00007846 n 0000 + 02102002 v 0201 + 01846916 v 0201 + 01845720 v 0201 + 01841079 v 0201 + 01843055 v 0201 + 01835496 v 0201 + 02102002 v 0101 + 01845720 v 0101 + 01841079 v 0101 + 01843055 v 0101 + 01835496 v 0101 ~ 09757653 n 0000 ~ 09781398 n 0000 ~ 09810166 n 0000 ~ 09818022 n 0000 ~ 09883047 n 0000 ~ 09897696 n 0000 ~ 09946278 n 0000 ~ 10060175 n 0000 ~ 10096217 n 0000 ~ 10100124 n 0000 ~ 10103485 n 0000 ~ 10186950 n 0000 ~ 10311021 n 0000 ~ 10314952 n 0000 ~ 10334009 n 0000 ~ 10335931 n 0000 ~ 10339717 n 0000 ~ 10403876 n 0000 ~ 10412055 n 0000 ~ 10504545 n 0000 ~ 10529965 n 0000 ~ 10530150 n 0000 ~ 10542761 n 0000 ~ 10562509 n 0000 ~ 10683126 n 0000 ~ 10718131 n 0000 ~ 10725149 n 0000 ~ 10727944 n 0000 ~ 10757193 n 0000 ~ 10761190 n 0000 ~ 10765679 n 0000 ~ 10771392 n 0000 ~i 11241300 n 0000 | a person who changes location -09630641 18 n 02 unfortunate 0 unfortunate_person 0 022 @ 00007846 n 0000 + 01049462 a 0101 ~ 09753930 n 0000 ~ 09789566 n 0000 ~ 09919899 n 0000 ~ 10008535 n 0000 ~ 10182190 n 0000 ~ 10222949 n 0000 ~ 10224446 n 0000 ~ 10246395 n 0000 ~ 10273064 n 0000 ~ 10295190 n 0000 ~ 10335246 n 0000 ~ 10368711 n 0000 ~ 10386312 n 0000 ~ 10453357 n 0000 ~ 10476086 n 0000 ~ 10557094 n 0000 ~ 10595647 n 0000 ~ 10681194 n 0000 ~ 10752093 n 0000 ~ 10773126 n 0000 | a person who suffers misfortune -09631129 18 n 02 unwelcome_person 0 persona_non_grata 0 012 @ 00007846 n 0000 ~ 09631463 n 0000 ~ 10206763 n 0000 ~ 10213652 n 0000 ~ 10305192 n 0000 ~ 10530288 n 0000 ~ 10627899 n 0000 ~ 10638136 n 0000 ~ 10695555 n 0000 ~ 10731244 n 0000 ~ 10737264 n 0000 ~ 10753546 n 0000 | a person who for some reason is not wanted or welcome -09631463 18 n 02 unpleasant_person 0 disagreeable_person 0 039 @ 09631129 n 0000 ~ 09778537 n 0000 ~ 09783369 n 0000 ~ 09792125 n 0000 ~ 09815188 n 0000 ~ 09867437 n 0000 ~ 09935351 n 0000 ~ 09976917 n 0000 ~ 09979072 n 0000 ~ 09982873 n 0000 ~ 09986532 n 0000 ~ 10047459 n 0000 ~ 10140683 n 0000 ~ 10148305 n 0000 ~ 10202531 n 0000 ~ 10224295 n 0000 ~ 10329945 n 0000 ~ 10379758 n 0000 ~ 10391513 n 0000 ~ 10409322 n 0000 ~ 10410815 n 0000 ~ 10421339 n 0000 ~ 10432875 n 0000 ~ 10471859 n 0000 ~ 10487026 n 0000 ~ 10539715 n 0000 ~ 10561320 n 0000 ~ 10561861 n 0000 ~ 10576962 n 0000 ~ 10616048 n 0000 ~ 10616379 n 0000 ~ 10617024 n 0000 ~ 10617501 n 0000 ~ 10739636 n 0000 ~ 10740868 n 0000 ~ 10741152 n 0000 ~ 10761693 n 0000 ~ 10776339 n 0000 ~ 10792028 n 0000 | a person who is not pleasant or agreeable -09632274 18 n 01 unskilled_person 0 009 @ 00007846 n 0000 ~ 09866817 n 0000 ~ 10149241 n 0000 ~ 10154601 n 0000 ~ 10198958 n 0000 ~ 10202363 n 0000 ~ 10363913 n 0000 ~ 10504805 n 0000 ~ 10712229 n 0000 | a person who lacks technical training -09632518 18 n 01 worker 0 075 @ 00007846 n 0000 + 02410855 v 0101 + 02413480 v 0101 ! 09626031 n 0101 ~ 09609746 n 0000 ~ 09619452 n 0000 ~ 09815790 n 0000 ~ 09845737 n 0000 ~ 09854510 n 0000 ~ 09859684 n 0000 ~ 09861946 n 0000 ~ 09897914 n 0000 ~ 09909660 n 0000 ~ 09936362 n 0000 ~ 09940026 n 0000 ~ 09965905 n 0000 ~ 10035430 n 0000 ~ 10053708 n 0000 ~ 10053808 n 0000 ~ 10110421 n 0000 ~ 10153009 n 0000 ~ 10159434 n 0000 ~ 10244359 n 0000 ~ 10307114 n 0000 ~ 10330593 n 0000 ~ 10330722 n 0000 ~ 10342893 n 0000 ~ 10344203 n 0000 ~ 10374415 n 0000 ~ 10402709 n 0000 ~ 10412784 n 0000 ~ 10438728 n 0000 ~ 10442093 n 0000 ~ 10477955 n 0000 ~ 10487182 n 0000 ~ 10492202 n 0000 ~ 10498551 n 0000 ~ 10504956 n 0000 ~ 10554455 n 0000 ~ 10565048 n 0000 ~ 10567722 n 0000 ~ 10582154 n 0000 ~ 10588601 n 0000 ~ 10588724 n 0000 ~ 10589566 n 0000 ~ 10593618 n 0000 ~ 10604979 n 0000 ~ 10605985 n 0000 ~ 10609556 n 0000 ~ 10621941 n 0000 ~ 10637229 n 0000 ~ 10637839 n 0000 ~ 10646032 n 0000 ~ 10653903 n 0000 ~ 10662046 n 0000 ~ 10664656 n 0000 ~ 10687922 n 0000 ~ 10691485 n 0000 ~ 10695822 n 0000 ~ 10699415 n 0000 ~ 10700105 n 0000 ~ 10709745 n 0000 ~ 10710403 n 0000 ~ 10710913 n 0000 ~ 10715544 n 0000 ~ 10715671 n 0000 ~ 10720964 n 0000 ~ 10734568 n 0000 ~ 10759151 n 0000 ~ 10764719 n 0000 ~ 10768903 n 0000 ~ 10781984 n 0000 ~ 10783646 n 0000 ~ 10791115 n 0000 ~ 10791820 n 0000 | a person who works at a specific occupation; "he is a good worker" -09633969 18 n 02 wrongdoer 0 offender 0 024 @ 09831962 n 0000 + 02566528 v 0202 ~ 09758643 n 0000 ~ 09821253 n 0000 ~ 09840871 n 0000 ~ 09963159 n 0000 ~ 09998101 n 0000 ~ 10000945 n 0000 ~ 10006842 n 0000 ~ 10133458 n 0000 ~ 10285762 n 0000 ~ 10286200 n 0000 ~ 10327333 n 0000 ~ 10362917 n 0000 ~ 10417168 n 0000 ~ 10433737 n 0000 ~ 10474950 n 0000 ~ 10511239 n 0000 ~ 10522324 n 0000 ~ 10586674 n 0000 ~ 10594857 n 0000 ~ 10601078 n 0000 ~ 10742546 n 0000 ~ 10766899 n 0000 | a person who transgresses moral or civil law -09634494 18 n 01 African 0 054 @ 00007846 n 0000 + 02941790 a 0101 ~ 09635534 n 0000 ~ 09686262 n 0000 ~ 09690083 n 0000 ~ 09690621 n 0000 ~ 09692125 n 0000 ~ 09692624 n 0000 ~ 09694269 n 0000 ~ 09695871 n 0000 ~ 09696456 n 0000 ~ 09697070 n 0000 ~ 09697650 n 0000 ~ 09697771 n 0000 ~ 09698644 n 0000 ~ 09700125 n 0000 ~ 09700492 n 0000 ~ 09705124 n 0000 ~ 09705287 n 0000 ~ 09705471 n 0000 ~ 09710041 n 0000 ~ 09719309 n 0000 ~ 09720842 n 0000 ~ 09720967 n 0000 ~ 09721647 n 0000 ~ 09721759 n 0000 ~ 09722279 n 0000 ~ 09722399 n 0000 ~ 09723564 n 0000 ~ 09723689 n 0000 ~ 09723819 n 0000 ~ 09724785 n 0000 ~ 09725124 n 0000 ~ 09730824 n 0000 ~ 09731225 n 0000 ~ 09731436 n 0000 ~ 09732170 n 0000 ~ 09732293 n 0000 ~ 09734185 n 0000 ~ 09734535 n 0000 ~ 09734639 n 0000 ~ 09734760 n 0000 ~ 09736945 n 0000 ~ 09747495 n 0000 ~ 09748889 n 0000 ~ 09749386 n 0000 ~ 09749509 n 0000 ~ 09749880 n 0000 ~ 09751496 n 0000 ~ 09751622 n 0000 ~ 09751772 n 0000 ~ 09751895 n 0000 ~ 09752023 n 0000 ~ 09850317 n 0000 | a native or inhabitant of Africa -09635534 18 n 01 Black_African 0 002 @ 09634494 n 0000 ~ 10228864 n 0000 | an African who is Black -09635635 18 n 03 Afrikaner 0 Afrikander 0 Boer 0 002 @ 09731436 n 0000 + 03042394 a 0102 | a white native of Cape Province who is a descendant of Dutch settlers and who speaks Afrikaans -09635823 18 n 02 Aryan 0 Indo-European 0 002 @ 09627462 n 0000 + 03074565 a 0103 | a member of the prehistoric people who spoke Proto-Indo European -09635973 18 n 01 Aryan 1 001 @ 09638875 n 0000 | (according to Nazi doctrine) a Caucasian person of Nordic descent (and not a Jew) -09636106 18 n 02 person_of_color 0 person_of_colour 0 007 @ 00007846 n 0000 #m 07968354 n 0000 ;u 01204055 n 0000 ~ 09636339 n 0000 ~ 09641757 n 0000 ~ 09644820 n 0000 ~ 10786992 n 0000 | (formal) any non-European non-white person -09636339 18 n 05 Black 0 Black_person 0 blackamoor 0 Negro 0 Negroid 0 016 @ 00007846 n 0000 @ 09636106 n 0000 #m 09636890 n 0000 ;r 09189411 n 0000 ;u 07073447 n 0501 ;u 07073447 n 0401 ;u 07073447 n 0301 ;u 06718862 n 0301 ~ 09636796 n 0000 ~ 09637211 n 0000 ~ 09637339 n 0000 ~ 09637512 n 0000 ~ 09637684 n 0000 ~ 09638009 n 0000 ~ 09638245 n 0000 ~ 10431330 n 0000 | a person with dark skin who comes from Africa (or whose ancestors came from Africa) -09636796 18 n 01 Negress 0 002 @ 09636339 n 0000 ;u 07073447 n 0000 | a Black woman or girl -09636890 18 n 03 Black_race 0 Negroid_race 0 Negro_race 0 002 @ 07967982 n 0000 %m 09636339 n 0000 | a dark-skinned race -09637013 18 n 04 African-American 0 African_American 0 Afro-American 0 Black_American 0 003 @ 09738708 n 0000 + 00242293 a 0302 + 00242293 a 0101 | an American whose ancestors were born in Africa -09637211 18 n 01 Black_man 0 004 @ 10287213 n 0000 @ 09636339 n 0000 ~ 09637435 n 0000 ~ 09637837 n 0000 | a man who is Black -09637339 18 n 01 Black_woman 0 002 @ 10787470 n 0000 @ 09636339 n 0000 | a woman who is Black -09637435 18 n 01 soul_brother 0 001 @ 09637211 n 0000 | a fellow Black man -09637512 18 n 02 colored_person 0 colored 0 003 @ 09636339 n 0000 ;u 07073447 n 0000 + 00242575 a 0201 | a United States term for Blacks that is now considered offensive -09637684 18 n 03 darky 0 darkie 0 darkey 0 003 @ 09636339 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive term for Black people -09637837 18 n 01 boy 1 003 @ 09637211 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive and disparaging term for Black man; "get out of my way, boy" -09638009 18 n 06 nigger 0 nigga 0 spade 0 coon 0 jigaboo 0 nigra 0 003 @ 09636339 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) extremely offensive name for a Black person; "only a Black can call another Black a nigga" -09638245 18 n 02 Tom 0 Uncle_Tom 0 003 @ 09636339 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive and derogatory name for a Black man who is abjectly servile and deferential to Whites -09638454 18 n 01 mulatto 0 002 @ 10323999 n 0000 ;u 07073447 n 0000 | an offspring of a black and a white parent -09638569 18 n 01 quadroon 0 002 @ 10323999 n 0000 ;u 07073447 n 0000 | an offspring of a mulatto and a white parent; a person who is one-quarter black -09638722 18 n 01 octoroon 0 002 @ 10323999 n 0000 ;u 07073447 n 0000 | an offspring of a quadroon and a white parent; a person who is one-eighth black -09638875 18 n 03 White 0 White_person 0 Caucasian 0 015 @ 00007846 n 0000 #m 09639237 n 0000 + 00243395 a 0301 + 00243180 a 0101 ~ 09635973 n 0000 ~ 09639382 n 0000 ~ 09639719 n 0000 ~ 09639919 n 0000 ~ 09640577 n 0000 ~ 09640715 n 0000 ~ 09641002 n 0000 ~ 09641130 n 0000 ~ 09641226 n 0000 ~ 09641422 n 0000 ~ 09641578 n 0000 | a member of the Caucasoid race -09639237 18 n 04 White_race 0 White_people 0 Caucasoid_race 0 Caucasian_race 0 002 @ 07967982 n 0000 %m 09638875 n 0000 | a light-skinned race -09639382 18 n 01 Circassian 0 003 @ 09638875 n 0000 #m 08519624 n 0000 ~ 09639543 n 0000 | a member of the Sunni Muslim people living in northwestern Caucasia -09639543 18 n 04 Abkhaz 0 Abkhazian 0 Abkhas 0 Abkhasian 0 002 @ 09639382 n 0000 #m 09019355 n 0000 | a member of the Circassian people who live to the east of the Black Sea -09639719 18 n 01 paleface 0 004 @ 09638875 n 0000 ;r 09044862 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) a derogatory term for a white person (supposedly used by North American Indians) -09639919 18 n 01 Semite 0 010 @ 09638875 n 0000 + 03115693 a 0101 + 03115693 a 0102 ~ 09640220 n 0000 ~ 09640327 n 0000 ~ 09640490 n 0000 ~ 09640859 n 0000 ~ 09729530 n 0000 ~ 09803060 n 0000 ~ 09890507 n 0000 | a member of a group of Semitic-speaking peoples of the Middle East and northern Africa -09640220 18 n 01 Babylonian 0 002 @ 09639919 n 0000 ~ 10674471 n 0000 | an inhabitant of ancient Babylon -09640327 18 n 03 Chaldean 0 Chaldaean 0 Chaldee 0 004 @ 09639919 n 0000 + 02690613 a 0303 + 02690613 a 0202 + 02690613 a 0101 | an inhabitant of ancient Chaldea -09640490 18 n 01 Assyrian 0 001 @ 09639919 n 0000 | an inhabitant of ancient Assyria -09640577 18 n 02 Kassite 0 Cassite 0 001 @ 09638875 n 0000 | a member of an ancient people who ruled Babylonia between 1600 and 1200 BC -09640715 18 n 01 Elamite 0 001 @ 09638875 n 0000 | a member of an ancient warlike people living in Elam east of Babylonia as early as 3000 BC -09640859 18 n 01 Phoenician 0 001 @ 09639919 n 0000 | a member of an ancient Semitic people who dominated trade in the first millennium B.C. -09641002 18 n 01 white_man 0 004 @ 10287213 n 0000 @ 09638875 n 0000 ~ 10138472 n 0000 ~ 10643476 n 0000 | a man who is White -09641130 18 n 01 white_woman 0 002 @ 10787470 n 0000 @ 09638875 n 0000 | a woman who is White -09641226 18 n 02 white_trash 0 poor_white_trash 0 004 @ 09638875 n 0000 @ 10453357 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) an offensive term for White people who are impoverished -09641422 18 n 04 whitey 0 honky 0 honkey 0 honkie 0 003 @ 09638875 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) offensive names for a White man -09641578 18 n 02 WASP 0 white_Anglo-Saxon_Protestant 0 002 @ 09638875 n 0000 @ 09679316 n 0000 | a white person of Anglo-Saxon ancestry who belongs to a Protestant denomination -09641757 18 n 02 Asian 0 Asiatic 0 055 @ 09620078 n 0000 @ 09636106 n 0000 + 02968525 a 0202 + 02968525 a 0101 ~ 09642917 n 0000 ~ 09643078 n 0000 ~ 09673495 n 0000 ~ 09686401 n 0000 ~ 09689435 n 0000 ~ 09690208 n 0000 ~ 09690371 n 0000 ~ 09691994 n 0000 ~ 09692430 n 0000 ~ 09694529 n 0000 ~ 09695747 n 0000 ~ 09696124 n 0000 ~ 09696280 n 0000 ~ 09698108 n 0000 ~ 09700253 n 0000 ~ 09712696 n 0000 ~ 09713501 n 0000 ~ 09713764 n 0000 ~ 09714264 n 0000 ~ 09714429 n 0000 ~ 09714694 n 0000 ~ 09715685 n 0000 ~ 09715833 n 0000 ~ 09718217 n 0000 ~ 09718811 n 0000 ~ 09718936 n 0000 ~ 09719430 n 0000 ~ 09719653 n 0000 ~ 09719794 n 0000 ~ 09720595 n 0000 ~ 09721883 n 0000 ~ 09722159 n 0000 ~ 09724066 n 0000 ~ 09725772 n 0000 ~ 09726374 n 0000 ~ 09732047 n 0000 ~ 09733028 n 0000 ~ 09733459 n 0000 ~ 09733899 n 0000 ~ 09734006 n 0000 ~ 09734294 n 0000 ~ 09734450 n 0000 ~ 09735258 n 0000 ~ 09736181 n 0000 ~ 09747191 n 0000 ~ 09749614 n 0000 ~ 09750046 n 0000 ~ 09750524 n 0000 ~ 10196283 n 0000 ~ 10328696 n 0000 ~ 10711766 n 0000 | a native or inhabitant of Asia -09642821 18 n 01 Asian_American 0 001 @ 09738708 n 0000 | an American who is of Asian descent -09642917 18 n 02 coolie 0 cooly 0 003 @ 09641757 n 0000 ;u 06717170 n 0000 ;u 06718862 n 0000 | (ethnic slur) an offensive name for an unskilled Asian laborer -09643078 18 n 02 Oriental 0 oriental_person 0 010 @ 09641757 n 0000 #m 09643421 n 0000 ;u 06717170 n 0000 ;u 07073447 n 0000 + 00825807 a 0101 ~ 09643545 n 0000 ~ 09643670 n 0000 ~ 09643799 n 0000 ~ 09644008 n 0000 ~ 09644152 n 0000 | a member of an Oriental race; the term is regarded as offensive by Asians (especially by Asian Americans) -09643421 18 n 03 Yellow_race 0 Mongoloid_race 0 Mongolian_race 0 002 @ 07967982 n 0000 %m 09643078 n 0000 | an Asian race -09643545 18 n 01 yellow_man 0 003 @ 10287213 n 0000 @ 09643078 n 0000 ;u 06717170 n 0000 | offensive term for an Asian man -09643670 18 n 01 yellow_woman 0 003 @ 10787470 n 0000 @ 09643078 n 0000 ;u 06717170 n 0000 | offensive term for an Asian woman -09643799 18 n 02 gook 0 slant-eye 0 003 @ 09643078 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) a disparaging term for an Asian person (especially for North Vietnamese soldiers in the Vietnam War) -09644008 18 n 02 Evenki 0 Ewenki 0 001 @ 09643078 n 0000 | a member of the people inhabiting an area of northern Mongolia and eastern Siberia -09644152 18 n 02 Mongol 0 Mongolian 0 005 @ 09643078 n 0000 + 03087088 a 0202 + 03087088 a 0101 ~ 09644657 n 0000 ~ 09737835 n 0000 | a member of the nomadic peoples of Mongolia -09644332 18 n 01 Tatar 0 001 @ 09728403 n 0000 | a member of the Turkic-speaking people living from the Volga to the Ural Mountains (the name has been attributed to many other groups) -09644518 18 n 02 Udmurt 0 Votyak 0 001 @ 09728403 n 0000 | a member of the Finno-Ugric-speaking people living in eastern European Russia -09644657 18 n 03 Tatar 1 Tartar 1 Mongol_Tatar 0 001 @ 09644152 n 0000 | a member of the Mongolian people of central Asia who invaded Russia in the 13th century -09644820 18 n 02 Amerindian 0 Native_American 0 007 @ 00007846 n 0000 @ 09636106 n 0000 -c 08265912 n 0000 ~ 09645091 n 0000 ~ 09726621 n 0000 ~ 09726811 n 0000 ~ 09803247 n 0000 | any member of the peoples living in North or South America before the Europeans arrived -09645091 18 n 03 Indian 0 American_Indian 0 Red_Indian 0 031 @ 09644820 n 0000 #m 09648176 n 0000 ;u 06717170 n 0303 ~ 09646608 n 0000 ~ 09647473 n 0000 ~ 09647834 n 0000 ~ 09648309 n 0000 ~ 09648743 n 0000 ~ 09649067 n 0000 ~ 09649372 n 0000 ~ 09649554 n 0000 ~ 09652149 n 0000 ~ 09653295 n 0000 ~ 09654079 n 0000 ~ 09655709 n 0000 ~ 09656673 n 0000 ~ 09657887 n 0000 ~ 09662038 n 0000 ~ 09665545 n 0000 ~ 09666622 n 0000 ~ 09667205 n 0000 ~ 09667358 n 0000 ~ 09668729 n 0000 ~ 09670280 n 0000 ~ 09670637 n 0000 ~ 09671453 n 0000 ~ 09782589 n 0000 ~ 10063635 n 0000 ~ 10394434 n 0000 ~ 10550468 n 0000 ~ 10643400 n 0000 | a member of the race of people living in America when Europeans arrived -09645788 18 n 01 brave 0 001 @ 10768585 n 0000 | a North American Indian warrior -09645871 18 n 02 Abnaki 0 Abenaki 0 001 @ 09646608 n 0000 | a member of the Algonquian people of Maine and southern Quebec -09645996 18 n 01 Achomawi 0 001 @ 09656673 n 0000 | a member of the Achomawi community of northeastern California -09646112 18 n 01 Akwa'ala 0 001 @ 09656673 n 0000 | a member of the Akwa'ala community in Baja California -09646220 18 n 01 Alabama 0 002 @ 09662038 n 0000 #m 08303862 n 0000 | a member of the Muskhogean people formerly living in what is now the state of Alabama; "the Alabamas were members of the Creek Confederacy" -09646432 18 n 02 Algonkian 0 Algonkin 0 002 @ 09646608 n 0000 + 02611442 a 0102 | a member of a North American Indian people in the Ottawa river valley of Ontario and Quebec -09646608 18 n 02 Algonquian 0 Algonquin 0 031 @ 09645091 n 0000 + 02611442 a 0101 ~ 09645871 n 0000 ~ 09646432 n 0000 ~ 09650250 n 0000 ~ 09650839 n 0000 ~ 09651968 n 0000 ~ 09653616 n 0000 ~ 09653971 n 0000 ~ 09654518 n 0000 ~ 09655569 n 0000 ~ 09657615 n 0000 ~ 09659039 n 0000 ~ 09660010 n 0000 ~ 09660373 n 0000 ~ 09660645 n 0000 ~ 09661107 n 0000 ~ 09661258 n 0000 ~ 09661873 n 0000 ~ 09662530 n 0000 ~ 09663472 n 0000 ~ 09664450 n 0000 ~ 09664766 n 0000 ~ 09664908 n 0000 ~ 09665367 n 0000 ~ 09666349 n 0000 ~ 09666476 n 0000 ~ 09667715 n 0000 ~ 09668562 n 0000 ~ 09671641 n 0000 ~i 11245382 n 0000 | a member of any of the North American Indian groups speaking an Algonquian language and originally living in the subarctic regions of eastern Canada; many Algonquian tribes migrated south into the woodlands from the Mississippi River to the Atlantic coast -09647473 18 n 01 Anasazi 0 002 @ 09645091 n 0000 ~ 09929005 n 0000 | a Native American who lived in what is now southern Colorado and Utah and northern Arizona and New Mexico and who built cliff dwellings -09647680 18 n 02 Atakapa 0 Attacapan 0 001 @ 09649554 n 0000 | a member of an Indian people formerly living along the Gulf Coast of Louisiana and Texas -09647834 18 n 04 Athapaskan 0 Athapascan 0 Athabaskan 0 Athabascan 0 006 @ 09645091 n 0000 ~ 09649926 n 0000 ~ 09652746 n 0000 ~ 09657489 n 0000 ~ 09660524 n 0000 ~ 09662661 n 0000 | a member of any of the North American Indian groups speaking an Athapaskan language and living in the subarctic regions of western Canada and central Alaska -09648176 18 n 02 Indian_race 0 Amerindian_race 0 002 @ 07967982 n 0000 %m 09645091 n 0000 | usually included in the Mongoloid race -09648309 18 n 02 Mayan 0 Maya 0 007 @ 09645091 n 0000 #m 08168531 n 0000 ~ 09651418 n 0000 ~ 09658815 n 0000 ~ 09660138 n 0000 ~ 09667097 n 0000 ~ 09672963 n 0000 | a member of an American Indian people of Yucatan and Belize and Guatemala who had a culture (which reached its peak between AD 300 and 900) characterized by outstanding architecture and pottery and astronomy; "Mayans had a system of writing and an accurate calendar" -09648743 18 n 01 Nahuatl 0 004 @ 09645091 n 0000 #m 08168531 n 0000 ~ 09648911 n 0000 ~ 09649249 n 0000 | a member of any of various Indian peoples of central Mexico -09648911 18 n 01 Aztec 0 001 @ 09648743 n 0000 | a member of the Nahuatl people who established an empire in Mexico that was overthrown by Cortes in 1519 -09649067 18 n 01 Olmec 0 002 @ 09645091 n 0000 #m 08168531 n 0000 | a member of an early Mesoamerican civilization centered around Veracruz that flourished between 1300 and 400 BC -09649249 18 n 01 Toltec 0 001 @ 09648743 n 0000 | a member of the Nahuatl speaking people of central and southern Mexico -09649372 18 n 02 Zapotec 0 Zapotecan 0 001 @ 09645091 n 0000 | a member of a large tribe of Mesoamericans living in southern Mexico whose civilization flourished around 300 to 900 -09649554 18 n 02 Plains_Indian 0 Buffalo_Indian 0 010 @ 09645091 n 0000 ~ 09647680 n 0000 ~ 09650250 n 0000 ~ 09650839 n 0000 ~ 09651123 n 0000 ~ 09651968 n 0000 ~ 09659327 n 0000 ~ 09663472 n 0000 ~ 09665897 n 0000 ~ 09669125 n 0000 | a member of one of the tribes of American Indians who lived a nomadic life following the buffalo in the Great Plains of North America -09649926 18 n 01 Apache 0 004 @ 09647834 n 0000 ;r 08740875 n 0000 ~i 10903570 n 0000 ~i 10996677 n 0000 | any member of Athapaskan tribes that migrated to the southwestern desert (from Arizona to Texas and south into Mexico); fought a losing battle from 1861 to 1886 with the United States and were resettled in Oklahoma -09650250 18 n 02 Arapaho 0 Arapahoe 0 002 @ 09646608 n 0000 @ 09649554 n 0000 | a member of a tribe of Plains Indians formerly inhabiting eastern Colorado and Wyoming (now living in Oklahoma and Wyoming) -09650456 18 n 02 Arikara 0 Aricara 0 001 @ 09651123 n 0000 | a member of the Caddo people who formerly lived in the Dakotas west of the Missouri river -09650609 18 n 01 Atsugewi 0 001 @ 09656673 n 0000 | a member of a North American Indian people of northern California -09650729 18 n 01 Biloxi 0 001 @ 09669125 n 0000 | a member of the Siouan people of southeastern Mississippi -09650839 18 n 01 Blackfoot 0 002 @ 09646608 n 0000 @ 09649554 n 0000 | a member of a warlike group of Algonquians living in the northwestern plains -09650989 18 n 01 Brule 0 001 @ 09669631 n 0000 | a member of a group of Siouan people who constituted a division of the Teton Sioux -09651123 18 n 01 Caddo 0 006 @ 09649554 n 0000 ~ 09650456 n 0000 ~ 09655466 n 0000 ~ 09658921 n 0000 ~ 09665218 n 0000 ~ 09671974 n 0000 | a group of Plains Indians formerly living in what is now North and South Dakota and Nebraska and Kansas and Arkansas and Louisiana and Oklahoma and Texas -09651418 18 n 01 Cakchiquel 0 001 @ 09648309 n 0000 | a member of the Mayan people living in south central Guatemala -09651537 18 n 01 Catawba 0 001 @ 09669125 n 0000 | a member of the Siouan people formerly living in the Carolinas -09651653 18 n 01 Cayuga 0 001 @ 09657887 n 0000 | a member of an Iroquoian people formerly living around Cayuga Lake in New York State -09651790 18 n 01 Cherokee 0 002 @ 09657887 n 0000 ~i 11293157 n 0000 | a member of an Iroquoian people formerly living in the Appalachian Mountains but now chiefly in Oklahoma -09651968 18 n 01 Cheyenne 0 002 @ 09646608 n 0000 @ 09649554 n 0000 | a member of a North American Indian people living on the western plains (now living in Oklahoma and Montana) -09652149 18 n 01 Chickasaw 0 001 @ 09645091 n 0000 | a member of the Muskhogean people formerly living in northern Mississippi -09652278 18 n 01 Chimakum 0 001 @ 09667358 n 0000 | a member of the Salishan people living in northwestern Washington -09652398 18 n 01 Chimariko 0 001 @ 09656673 n 0000 | a member of an extinct North American Indian people formerly living in California -09652535 18 n 01 Chinook 0 001 @ 09665545 n 0000 | a member of an important North American Indian people who controlled the mouth of the Columbia river; they were organized into settlements rather than tribes -09652746 18 n 01 Chipewyan 0 001 @ 09647834 n 0000 | a member of the Athapaskan people living in western Canada between Great Slave Lake and Hudson Bay -09652900 18 n 01 Choctaw 0 001 @ 09662038 n 0000 | a member of the Muskhogean people formerly living in Alabama -09653014 18 n 01 Cochimi 0 001 @ 09656673 n 0000 | a member of a North American Indian people living in central Baja California -09653144 18 n 02 Cocopa 0 Cocopah 0 001 @ 09656673 n 0000 | a member of a North American Indian people living around the mouth of the Colorado River -09653295 18 n 01 Coeur_d'Alene 0 001 @ 09645091 n 0000 | a member of an Amerindian people living in northern Idaho around Coeur d'Alene Lake -09653438 18 n 01 Comanche 0 001 @ 09668729 n 0000 | a member of the Shoshonean people who formerly lived between Wyoming and the Mexican border but are now chiefly in Oklahoma -09653616 18 n 01 Conoy 0 001 @ 09646608 n 0000 | a member of an Algonquian people formerly living in Maryland between Chesapeake Bay and the Potomac river; allies of the Nanticoke people -09653805 18 n 01 Costanoan 0 001 @ 09665545 n 0000 | a member of a North American Indian people living in coastal California between Monterey and San Francisco Bay -09653971 18 n 01 Cree 0 001 @ 09646608 n 0000 | a member of an Algonquian people living in central Canada -09654079 18 n 01 Creek 0 001 @ 09645091 n 0000 | any member of the Creek Confederacy (especially the Muskogee) formerly living in Georgia and Alabama but now chiefly in Oklahoma -09654259 18 n 01 Crow 0 001 @ 09669125 n 0000 | a member of the Siouan people formerly living in eastern Montana -09654374 18 n 01 Dakota 0 001 @ 09669125 n 0000 | a member of the Siouan people of the northern Mississippi valley; commonly called the Sioux -09654518 18 n 01 Delaware 0 001 @ 09646608 n 0000 | a member of an Algonquian people formerly living in New Jersey and New York and parts of Delaware and Pennsylvania -09654687 18 n 01 Dhegiha 0 006 @ 09669125 n 0000 ~ 09658543 n 0000 ~ 09663628 n 0000 ~ 09663786 n 0000 ~ 09666206 n 0000 ~ 09666974 n 0000 | any member of a Siouan people speaking one of the Dhegiha languages -09654898 18 n 01 Diegueno 0 001 @ 09656673 n 0000 | a member of a North American Indian people of southern California -09655018 18 n 01 Erie 0 001 @ 09657887 n 0000 | a member of an Iroquoian people formerly living on the south shore of Lake Erie in northern Ohio and northwest Pennsylvania and western New York -09655213 18 n 01 Esselen 0 001 @ 09656673 n 0000 | a member of a North American Indian people living on the California coast near Monterey -09655354 18 n 01 Essene 0 001 @ 09681351 n 0000 | a member of an ascetic Jewish sect around the time of Jesus -09655466 18 n 01 Eyeish 0 001 @ 09651123 n 0000 | a member of the Caddo people of northeastern Texas -09655569 18 n 01 Fox 1 001 @ 09646608 n 0000 | a member of an Algonquian people formerly living west of Lake Michigan along the Fox River -09655709 18 n 01 Haida 0 001 @ 09645091 n 0000 | a member of a seafaring group of North American Indians who lived on the Pacific coast of British Columbia and southwestern Alaska -09655891 18 n 01 Halchidhoma 0 001 @ 09656673 n 0000 | a member of a North American Indian people of the Colorado river valley near the mouth of the Gila river; allied to the Maricopa -09656077 18 n 01 Havasupai 0 001 @ 09656673 n 0000 | a member of a North American Indian people of Cataract Canyon in Arizona -09656205 18 n 02 Hidatsa 0 Gros_Ventre 0 001 @ 09669125 n 0000 | a member of the Sioux people formerly inhabiting an area along the Missouri river in western North Dakota -09656378 18 n 01 Hitchiti 0 002 @ 09662038 n 0000 #m 08303862 n 0000 | a member of the Muskhogean people formerly living in Georgia; a member of the Creek Confederacy -09656547 18 n 01 Hopi 0 002 @ 09668729 n 0000 @ 09666622 n 0000 | a member of the Shoshonean people of northeastern Arizona -09656673 18 n 02 Hokan 0 Hoka 0 023 @ 09645091 n 0000 ~ 09645996 n 0000 ~ 09646112 n 0000 ~ 09650609 n 0000 ~ 09652398 n 0000 ~ 09653014 n 0000 ~ 09653144 n 0000 ~ 09654898 n 0000 ~ 09655213 n 0000 ~ 09655891 n 0000 ~ 09656077 n 0000 ~ 09658398 n 0000 ~ 09658670 n 0000 ~ 09659188 n 0000 ~ 09660240 n 0000 ~ 09661543 n 0000 ~ 09666039 n 0000 ~ 09668437 n 0000 ~ 09671808 n 0000 ~ 09672455 n 0000 ~ 09672590 n 0000 ~ 09672725 n 0000 ~ 09673091 n 0000 | a member of a North American Indian people speaking one of the Hokan languages -09657206 18 n 01 Hunkpapa 0 002 @ 09669631 n 0000 ~i 11303698 n 0000 | a member of the Siouan people who constituted a division of the Teton Sioux and who formerly lived in the western Dakotas; they were prominent in resisting the white encroachment into the northern Great Plains -09657489 18 n 01 Hupa 0 001 @ 09647834 n 0000 | a member of the Athapaskan people of the Trinity River valley in California -09657615 18 n 01 Illinois 0 001 @ 09646608 n 0000 | a member of the Algonquian people formerly of Illinois and regions to the west -09657748 18 n 02 Iowa 0 Ioway 0 001 @ 09669125 n 0000 | a member of the Siouan people formerly living in Iowa and Minnesota and Missouri -09657887 18 n 01 Iroquois 0 009 @ 09645091 n 0000 ~ 09651653 n 0000 ~ 09651790 n 0000 ~ 09655018 n 0000 ~ 09661731 n 0000 ~ 09663999 n 0000 ~ 09664121 n 0000 ~ 09668058 n 0000 ~ 09670909 n 0000 | any member of the warlike North American Indian peoples formerly living in New York State; the Iroquois League were allies of the British during the American Revolution -09658254 18 n 04 Kalapooia 0 Kalapuya 0 Calapooya 0 Calapuya 0 001 @ 09665545 n 0000 | a member of the North American Indian people of Oregon -09658398 18 n 01 Kamia 0 001 @ 09656673 n 0000 | a member of a North American Indian people of southeastern California and northwestern Mexico -09658543 18 n 02 Kansa 0 Kansas 0 001 @ 09654687 n 0000 | a member of the Siouan people of the Kansas river valley in Kansas -09658670 18 n 01 Karok 0 001 @ 09656673 n 0000 | a member of a North American Indian people of the Klamath river valley in northern California -09658815 18 n 01 Kekchi 0 001 @ 09648309 n 0000 | a member of a Mayan people of north central Guatemala -09658921 18 n 01 Kichai 0 001 @ 09651123 n 0000 | a member of a Caddo people formerly living in north central Texas -09659039 18 n 01 Kickapoo 0 001 @ 09646608 n 0000 | a member of the Algonquian people formerly inhabiting southern Wisconsin and northern Illinois -09659188 18 n 02 Kiliwa 0 Kiliwi 0 001 @ 09656673 n 0000 | a member of a North American Indian people living in northern Baja California -09659327 18 n 01 Kiowa 0 001 @ 09649554 n 0000 | a member of a Tanoan people living in the southwestern United States -09659447 18 n 01 Koasati 0 001 @ 09662038 n 0000 | a member of the Muskhogean people formerly living in northern Alabama; a member of the Creek Confederacy -09659605 18 n 01 Kusan 0 001 @ 09665545 n 0000 | a member of the North American Indian people of Oregon -09659711 18 n 01 Kwakiutl 0 001 @ 09671453 n 0000 | a member of the Wakashan people living around Queen Charlotte Sound and on northern Vancouver Island -09659866 18 n 01 Maidu 0 001 @ 09665545 n 0000 | a member of a North American Indian people living east of the Sacramento river in California -09660010 18 n 01 Malecite 0 001 @ 09646608 n 0000 | a member of the Algonquian people of northeastern Maine and New Brunswick -09660138 18 n 01 Mam 0 001 @ 09648309 n 0000 | a member of a Mayan people of southwestern Guatemala -09660240 18 n 01 Maricopa 0 001 @ 09656673 n 0000 | a member of a North American Indian people of the Gila river valley in Arizona -09660373 18 n 02 Massachuset 0 Massachusetts 0 001 @ 09646608 n 0000 | a member of the Algonquian people who formerly lived around Massachusetts Bay -09660524 18 n 01 Mattole 0 001 @ 09647834 n 0000 | a member of the Athapaskan people living in northwestern California -09660645 18 n 02 Menomini 0 Menominee 0 001 @ 09646608 n 0000 | a member of the federally recognized tribe of Algonquian people living on a reservation in central Wisconsin -09660820 18 n 01 Miniconju 0 001 @ 09669631 n 0000 | a member of a group of Siouan people who constituted a division of the Teton Sioux -09660958 18 n 01 Missouri 0 001 @ 09669125 n 0000 | a member of the Siouan people formerly inhabiting the valley of the Missouri river in Missouri -09661107 18 n 01 Miami 0 001 @ 09646608 n 0000 | a member of the extinct Algonquian people formerly living in northern Indiana and southern Michigan -09661258 18 n 02 Micmac 0 Mikmaq 0 001 @ 09646608 n 0000 | a member of the Algonquian people inhabiting the Maritime Provinces of Canada -09661397 18 n 01 Miwok 0 001 @ 09665545 n 0000 | a member of the North American Indian people living in the central Sierra Nevada in California -09661543 18 n 02 Mohave 0 Mojave 0 001 @ 09656673 n 0000 | a member of the North American Indian people formerly living in the Colorado river valley in Arizona and Nevada and California -09661731 18 n 01 Mohawk 0 001 @ 09657887 n 0000 | a member of the Iroquoian people formerly living along the Mohawk River in New York State -09661873 18 n 02 Mohican 0 Mahican 0 001 @ 09646608 n 0000 | a member of the Algonquian people formerly living in the Hudson valley and eastward to the Housatonic -09662038 18 n 02 Muskhogean 0 Muskogean 0 007 @ 09645091 n 0000 ~ 09646220 n 0000 ~ 09652900 n 0000 ~ 09656378 n 0000 ~ 09659447 n 0000 ~ 09662325 n 0000 ~ 09667927 n 0000 | a member of any of the peoples formerly living in southeastern United States and speaking Muskhogean languages -09662325 18 n 01 Muskogee 0 002 @ 09662038 n 0000 #m 08303862 n 0000 | a member of the Muskhogean people formerly living in Georgia and eastern Alabama and constituting the core of the Creek Confederacy -09662530 18 n 01 Nanticoke 0 001 @ 09646608 n 0000 | a member of the Algonquian people formerly of Maryland and eastern Delaware -09662661 18 n 02 Navaho 0 Navajo 0 001 @ 09647834 n 0000 | a member of an Athapaskan people that migrated to Arizona and New Mexico and Utah -09662804 18 n 01 Nez_Perce 0 002 @ 09668199 n 0000 ~i 11092126 n 0000 | a member of a tribe of the Shahaptian people living on the pacific coast -09662951 18 n 01 Nootka 0 001 @ 09671453 n 0000 | a member of the Wakashan people living on Vancouver Island and in the Cape Flattery region of northwestern Washington -09663121 18 n 01 Ofo 0 001 @ 09669125 n 0000 | a member of the Siouan people living in the Yazoo river valley in Mississippi -09663248 18 n 02 Oglala 0 Ogalala 0 002 @ 09669631 n 0000 ~i 11255917 n 0000 | a member of the Siouan people who constituted a division of the Teton Sioux and who formerly inhabited the Black Hills of western South Dakota -09663472 18 n 03 Ojibwa 0 Ojibway 0 Chippewa 0 002 @ 09646608 n 0000 @ 09649554 n 0000 | a member of an Algonquian people who lived west of Lake Superior -09663628 18 n 02 Omaha 0 Maha 0 001 @ 09654687 n 0000 | a member of the Siouan people formerly living in the Missouri river valley in northeastern Nebraska -09663786 18 n 01 Osage 0 001 @ 09654687 n 0000 | a member of the Siouan people formerly living in Missouri in the valleys of the Missouri and Osage rivers; oil was found on Osage lands early in the 20th century -09663999 18 n 01 Oneida 0 001 @ 09657887 n 0000 | a member of the Iroquoian people formerly living east of Lake Ontario -09664121 18 n 01 Onondaga 0 002 @ 09657887 n 0000 ~i 11049278 n 0000 | a member of the Iroquoian people formerly living between Lake Champlain and the Saint Lawrence River -09664295 18 n 02 Oto 0 Otoe 0 001 @ 09669125 n 0000 | a member of the Siouan people inhabiting the valleys of the Platte and Missouri rivers in Nebraska -09664450 18 n 01 Ottawa 0 001 @ 09646608 n 0000 | a member of the Algonquian people of southern Ontario -09664556 18 n 02 Paiute 0 Piute 0 001 @ 09668729 n 0000 | a member of either of two Shoshonean peoples (northern Paiute and southern Paiute) related to the Aztecs and living in the southwestern United States -09664766 18 n 01 Pamlico 0 001 @ 09646608 n 0000 | a member of the Algonquian people formerly of the Pamlico river valley in North Carolina -09664908 18 n 01 Passamaquody 0 001 @ 09646608 n 0000 | a member of the Algonquian people related to the Malecite and living in northeastern Maine and New Brunswick -09665075 18 n 01 Patwin 0 001 @ 09665545 n 0000 | a member of the North American Indian people living in the Sacramento valley in California -09665218 18 n 01 Pawnee 0 001 @ 09651123 n 0000 | a member of the Pawnee nation formerly living in Nebraska and Kansas but now largely in Oklahoma -09665367 18 n 01 Penobscot 0 001 @ 09646608 n 0000 | a member of the Algonquian people belonging to the Abnaki confederacy and living in the Penobscot valley in northern Maine -09665545 18 n 01 Penutian 0 013 @ 09645091 n 0000 ~ 09652535 n 0000 ~ 09653805 n 0000 ~ 09658254 n 0000 ~ 09659605 n 0000 ~ 09659866 n 0000 ~ 09661397 n 0000 ~ 09665075 n 0000 ~ 09668199 n 0000 ~ 09670051 n 0000 ~ 09670772 n 0000 ~ 09672314 n 0000 ~ 09672840 n 0000 | a member of a North American Indian people speaking one of the Penutian languages -09665897 18 n 01 Pima 0 001 @ 09649554 n 0000 | a member of the North American Indian people living in southern Arizona and northern Mexico -09666039 18 n 01 Pomo 0 001 @ 09656673 n 0000 | a member of an Indian people of northern California living along the Russian River valley and adjacent Pacific coast -09666206 18 n 02 Ponca 0 Ponka 0 001 @ 09654687 n 0000 | a member of the Siouan people of the Missouri river valley in northeastern Nebraska -09666349 18 n 01 Potawatomi 0 001 @ 09646608 n 0000 | a member of the Algonquian people originally of Michigan and Wisconsin -09666476 18 n 01 Powhatan 0 002 @ 09646608 n 0000 ~i 11240249 n 0000 | a member of the Algonquian people who formerly lived in eastern Virginia -09666622 18 n 01 Pueblo 0 004 @ 09645091 n 0000 ~ 09656547 n 0000 ~ 09670170 n 0000 ~ 09673232 n 0000 | a member of any of about two dozen Native American peoples called `Pueblos' by the Spanish because they live in pueblos (villages built of adobe and rock) -09666883 18 n 01 kachina 0 001 @ 09545324 n 0000 | a deified spirit of the Pueblo people -09666974 18 n 01 Quapaw 0 001 @ 09654687 n 0000 | a member of the Siouan people of the Arkansas river valley in Arkansas -09667097 18 n 01 Quiche 0 001 @ 09648309 n 0000 | a member of the Mayan people of south central Guatemala -09667205 18 n 03 Redskin 0 Injun 0 red_man 0 003 @ 09645091 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) offensive term for Native Americans -09667358 18 n 01 Salish 0 003 @ 09645091 n 0000 ~ 09652278 n 0000 ~ 09669942 n 0000 | a member of a group of North American Indians speaking a Salishan language and living on the northwest coast of North America -09667572 18 n 04 Santee 0 Santee_Sioux 0 Santee_Dakota 0 Eastern_Sioux 0 001 @ 09669125 n 0000 | a member of the eastern branch of the Sioux -09667715 18 n 02 Sauk 0 Sac 0 003 @ 09646608 n 0000 ~i 10852320 n 0000 ~i 11101843 n 0000 | a member of the Algonquian people formerly living in Wisconsin in the Fox River valley and on the shores of Green Bay -09667927 18 n 01 Seminole 0 001 @ 09662038 n 0000 | a member of the Muskhogean people who moved into Florida in the 18th century -09668058 18 n 01 Seneca 1 001 @ 09657887 n 0000 | a member of the Iroquoian people formerly living in New York State south of Lake Ontario -09668199 18 n 03 Shahaptian 0 Sahaptin 0 Sahaptino 0 002 @ 09665545 n 0000 ~ 09662804 n 0000 | a member of a North American Indian people who lived in Oregon along the Columbia river and its tributaries in Washington and northern Idaho -09668437 18 n 01 Shasta 0 001 @ 09656673 n 0000 | a member of the Indian people of northern California and southern Oregon -09668562 18 n 01 Shawnee 0 003 @ 09646608 n 0000 ~i 11242596 n 0000 ~i 11334428 n 0000 | a member of the Algonquian people formerly living along the Tennessee river -09668729 18 n 02 Shoshone 0 Shoshoni 0 006 @ 09645091 n 0000 ~ 09653438 n 0000 ~ 09656547 n 0000 ~ 09664556 n 0000 ~ 09671334 n 0000 ~i 11277500 n 0000 | a member of the North American Indian people (related to the Aztecs) of the southwestern United States -09668988 18 n 01 Sihasapa 0 001 @ 09669631 n 0000 | a member of a group of Siouan people who constituted a division of the Teton Sioux -09669125 18 n 02 Sioux 0 Siouan 0 018 @ 09649554 n 0000 + 02798014 a 0101 ~ 09650729 n 0000 ~ 09651537 n 0000 ~ 09654259 n 0000 ~ 09654374 n 0000 ~ 09654687 n 0000 ~ 09656205 n 0000 ~ 09657748 n 0000 ~ 09660958 n 0000 ~ 09663121 n 0000 ~ 09664295 n 0000 ~ 09667572 n 0000 ~ 09669631 n 0000 ~ 09671089 n 0000 ~ 09672105 n 0000 ~i 10914779 n 0000 ~i 11252392 n 0000 | a member of a group of North American Indian peoples who spoke a Siouan language and who ranged from Lake Michigan to the Rocky Mountains -09669631 18 n 04 Teton 0 Lakota 0 Teton_Sioux 0 Teton_Dakota 0 007 @ 09669125 n 0000 ~ 09650989 n 0000 ~ 09657206 n 0000 ~ 09660820 n 0000 ~ 09663248 n 0000 ~ 09668988 n 0000 ~ 09671202 n 0000 | a member of the large western branch of Sioux people which was made up of several groups that lived on the plains -09669942 18 n 01 Skagit 0 001 @ 09667358 n 0000 | a member of the Salish people in northwestern Washington -09670051 18 n 01 Takelma 0 001 @ 09665545 n 0000 | a member of a North American Indian people of southwestern Oregon -09670170 18 n 01 Taos 0 001 @ 09666622 n 0000 | a member of the Pueblo people living in northern New Mexico -09670280 18 n 01 Taracahitian 0 003 @ 09645091 n 0000 ~ 09670415 n 0000 ~ 09670521 n 0000 | a member of a group of peoples of Mexico -09670415 18 n 01 Cahita 0 001 @ 09670280 n 0000 | a member of the Taracahitian people of central Mexico -09670521 18 n 01 Tarahumara 0 001 @ 09670280 n 0000 | a member of the Taracahitian people of north central Mexico -09670637 18 n 01 Tlingit 0 001 @ 09645091 n 0000 | a member of a seafaring group of North American Indians living in southern Alaska -09670772 18 n 01 Tsimshian 0 001 @ 09665545 n 0000 | a member of a Penutian people who lived on rivers and a sound in British Columbia -09670909 18 n 01 Tuscarora 0 001 @ 09657887 n 0000 | a member of an Iroquois people who formerly lived in North Carolina and then moved to New York State and joined the Iroquois -09671089 18 n 01 Tutelo 0 001 @ 09669125 n 0000 | a member of the Siouan people of Virginia and North Carolina -09671202 18 n 01 Two_Kettle 0 001 @ 09669631 n 0000 | a member of the Siouan people who constituted a division of the Teton Sioux -09671334 18 n 01 Ute 0 001 @ 09668729 n 0000 | a member of the Shoshonean people of Utah and Colorado and New Mexico -09671453 18 n 01 Wakashan 0 003 @ 09645091 n 0000 ~ 09659711 n 0000 ~ 09662951 n 0000 | a member of one of the peoples in British Columbia and Washington who speak the Wakashan language -09671641 18 n 01 Wampanoag 0 002 @ 09646608 n 0000 ~i 11163582 n 0000 | a member of the Algonquian people of Rhode Island and Massachusetts who greeted the Pilgrims -09671808 18 n 03 Walapai 0 Hualapai 0 Hualpai 0 001 @ 09656673 n 0000 | a member of a North American people formerly living in the Colorado river valley in Arizona -09671974 18 n 01 Wichita 0 001 @ 09651123 n 0000 | a member of the Caddo people formerly living between Kansas and central Texas -09672105 18 n 01 Winnebago 0 001 @ 09669125 n 0000 | a member of the Siouan-speaking people formerly living in eastern Wisconsin south of Green Bay; ally of the Menomini and enemy of the Fox and Sauk people -09672314 18 n 01 Wintun 0 001 @ 09665545 n 0000 | a member of a North American Indian people living in the Sacramento valley in California -09672455 18 n 01 Yahi 0 001 @ 09656673 n 0000 | a member of an extinct North American Indian people who lived in northern California -09672590 18 n 01 Yana 0 001 @ 09656673 n 0000 | a member of an extinct North American Indian people who lived in northern California -09672725 18 n 01 Yavapai 0 001 @ 09656673 n 0000 | a member of a North American Indian people of central Arizona -09672840 18 n 01 Yokuts 0 001 @ 09665545 n 0000 | a member of the North American Indian people of the San Joaquin Valley -09672963 18 n 02 Yucatec 0 Yucateco 0 001 @ 09648309 n 0000 | a member of the Mayan people of the Yucatan peninsula in Mexico -09673091 18 n 01 Yuma 0 001 @ 09656673 n 0000 | a member of the North American Indian people of Arizona and adjacent Mexico and California -09673232 18 n 01 Zuni 0 001 @ 09666622 n 0000 | a member of the Pueblo people living in western New Mexico -09673341 18 n 01 Indian_race 1 002 @ 07967982 n 0000 %m 09673495 n 0000 | sometimes included in the Caucasian race; native to the subcontinent of India -09673495 18 n 01 Indian 1 012 @ 09641757 n 0000 #m 08900535 n 0000 #m 09673341 n 0000 ~ 09673779 n 0000 ~ 09673916 n 0000 ~ 09675922 n 0000 ~ 09676021 n 0000 ~ 09676127 n 0000 ~ 09676247 n 0000 ~ 09676374 n 0000 ~ 10154186 n 0000 ~ 10220228 n 0000 | a native or inhabitant of India -09673779 18 n 01 Assamese 0 002 @ 09673495 n 0000 + 02977465 a 0101 | native or inhabitant of the state of Assam in northeastern India -09673916 18 n 01 Dravidian 0 014 @ 09673495 n 0000 ~ 09674307 n 0000 ~ 09674412 n 0000 ~ 09674521 n 0000 ~ 09674631 n 0000 ~ 09674786 n 0000 ~ 09674908 n 0000 ~ 09675045 n 0000 ~ 09675156 n 0000 ~ 09675283 n 0000 ~ 09675393 n 0000 ~ 09675529 n 0000 ~ 09675673 n 0000 ~ 09675799 n 0000 | a member of one of the aboriginal races of India (pushed south by Caucasians and now mixed with them) -09674307 18 n 01 Badaga 0 001 @ 09673916 n 0000 | a member of an agricultural people of southern India -09674412 18 n 01 Gadaba 0 001 @ 09673916 n 0000 | a member of an agricultural people in southeastern India -09674521 18 n 01 Gond 0 001 @ 09673916 n 0000 | a member of a formerly tribal people in south central India -09674631 18 n 02 Kanarese 0 Canarese 0 001 @ 09673916 n 0000 | a member of a Kannada-speaking group of people living chiefly in Kanara in southern India -09674786 18 n 01 Kolam 0 001 @ 09673916 n 0000 | a member of a formerly tribal people now living in south central India -09674908 18 n 02 Kota 0 Kotar 0 001 @ 09673916 n 0000 | a member of the Dravidian people living in the Nilgiri Hills in southern India -09675045 18 n 01 Kui 0 001 @ 09673916 n 0000 | a member of the Dravidian people living in southeastern India -09675156 18 n 01 Malto 0 001 @ 09673916 n 0000 | a member of the Dravidian people living in northern Bengal in eastern India -09675283 18 n 01 Savara 0 001 @ 09673916 n 0000 | a member of the Dravidian people living in southern India -09675393 18 n 01 Tamil 0 001 @ 09673916 n 0000 | a member of the mixed Dravidian and Caucasian people of southern India and Sri Lanka -09675529 18 n 01 Telugu 0 001 @ 09673916 n 0000 | a member of the people in southeastern India (Andhra Pradesh) who speak the Telugu language -09675673 18 n 01 Toda 0 001 @ 09673916 n 0000 | a member of a pastoral people living in the Nilgiri Hills of southern India -09675799 18 n 01 Tulu 0 001 @ 09673916 n 0000 | a member of a Dravidian people living on the southwestern coast of India -09675922 18 n 02 Gujarati 0 Gujerati 0 001 @ 09673495 n 0000 | a member of the people of Gujarat -09676021 18 n 01 Kashmiri 0 002 @ 09673495 n 0000 + 03078234 a 0101 | a member of the people of Kashmir -09676127 18 n 01 Oriya 0 001 @ 09673495 n 0000 | a member of a people in India living in Orissa and neighboring areas -09676247 18 n 02 Punjabi 0 Panjabi 0 001 @ 09673495 n 0000 | a member of the majority people of Punjab in northwestern India -09676374 18 n 02 Maratha 0 Mahratta 0 001 @ 09673495 n 0000 | a member of a people of India living in Maharashtra -09676490 18 n 05 Aborigine 1 Abo 0 Aboriginal 0 native_Australian 0 Australian_Aborigine 0 004 @ 09691279 n 0000 @ 07967382 n 0000 + 02599509 a 0301 + 02599509 a 0101 | a dark-skinned member of a race of people living in Australia when Europeans arrived -09676746 18 n 02 Slavic_people 0 Slavic_race 0 002 @ 07967982 n 0000 %m 09676884 n 0000 | a race of people speaking a Slavonic language -09676884 18 n 01 Slav 0 009 @ 00007846 n 0000 #m 09676746 n 0000 + 03118661 a 0101 + 03118790 a 0101 + 03118790 a 0102 ~ 09751076 n 0000 ~ 09751256 n 0000 ~ 09751403 n 0000 ~ 09967555 n 0000 | any member of the people of eastern Europe or Asian Russia who speak a Slavonic language -09677168 18 n 01 Acadian 0 002 @ 09696763 n 0000 ~ 09677280 n 0000 | an early French settler in the Maritimes -09677280 18 n 01 Cajun 0 001 @ 09677168 n 0000 | a Louisianian descended from Acadian immigrants from Nova Scotia (`Cajun' comes from `Acadian') -09677427 18 n 01 Anabaptist 0 004 @ 09679316 n 0000 #m 08093111 n 0000 + 06231794 n 0101 ~ 09677561 n 0000 | adherent of Anabaptism -09677561 18 n 01 Mennonite 0 002 @ 09677427 n 0000 ~ 09677713 n 0000 | a member of an Anabaptist movement in Holland noted for its simplicity of life -09677713 18 n 01 Amish 0 002 @ 09677561 n 0000 #m 08093813 n 0000 | an American follower of the Mennonite religion -09677830 18 n 03 Dunker 0 Dunkard 0 Tunker 0 003 @ 09838701 n 0000 #m 08090547 n 0000 + 01577093 v 0201 | an adherent of Baptistic doctrines (who practice baptism by immersion) -09678009 18 n 01 Christian 0 024 @ 09628382 n 0000 #m 08082602 n 0000 + 00411215 a 0101 + 08082236 n 0101 ~ 09678747 n 0000 ~ 09678917 n 0000 ~ 09679028 n 0000 ~ 09679316 n 0000 ~ 09679708 n 0000 ~ 09679925 n 0000 ~ 09680908 n 0000 ~ 09681234 n 0000 ~ 09798811 n 0000 ~ 09799213 n 0000 ~ 09807609 n 0000 ~ 09867818 n 0000 ~ 09945223 n 0000 ~ 10306716 n 0000 ~ 10306890 n 0000 ~ 10349750 n 0000 ~ 10585773 n 0000 ~ 10720267 n 0000 ~i 11342766 n 0000 ~i 11343998 n 0000 | a religious person who believes Jesus is the Christ and who is a member of a Christian denomination -09678581 18 n 01 Christian_Scientist 0 002 @ 09679316 n 0000 #m 08090803 n 0000 | a member of the Protestant church founded in the United States by Mary Baker Eddy -09678747 18 n 02 Adventist 0 Second_Adventist 0 002 @ 09678009 n 0000 + 06226934 n 0101 | a member of Christian denomination that expects the imminent advent of Christ -09678917 18 n 01 gentile 3 001 @ 09678009 n 0000 | a Christian; "Christians refer to themselves as gentiles" -09679028 18 n 03 gentile 0 non-Jew 0 goy 0 003 @ 09678009 n 0000 + 02735066 a 0101 ~ 10588182 n 0000 | a Christian as contrasted with a Jew -09679170 18 n 01 gentile 2 001 @ 00007846 n 0000 | a person who is not a member of one's own religion; used in this sense by Mormons and Hindus -09679316 18 n 01 Protestant 0 018 @ 09678009 n 0000 #m 08087570 n 0000 ~ 09641578 n 0000 ~ 09677427 n 0000 ~ 09678581 n 0000 ~ 09838701 n 0000 ~ 09955643 n 0000 ~ 09958133 n 0000 ~ 09958292 n 0000 ~ 10062275 n 0000 ~ 10116370 n 0000 ~ 10248377 n 0000 ~ 10248542 n 0000 ~ 10312600 n 0000 ~ 10380499 n 0000 ~ 10414865 n 0000 ~ 10465922 n 0000 ~ 10494373 n 0000 | an adherent of Protestantism -09679708 18 n 02 Friend 1 Quaker 0 003 @ 09678009 n 0000 #m 08150377 n 0000 ~i 11228956 n 0000 | a member of the Religious Society of Friends founded by George Fox (the Friends have never called themselves Quakers) -09679925 18 n 01 Catholic 0 008 @ 09678009 n 0000 #m 08083320 n 0000 + 02920951 a 0101 ~ 09680235 n 0000 ~ 09680387 n 0000 ~ 09680504 n 0000 ~ 09681107 n 0000 ~ 10453533 n 0000 | a member of a Catholic church -09680136 18 n 01 non-Catholic 0 001 @ 09628382 n 0000 | a religious person who is not a Catholic -09680235 18 n 01 Anglican_Catholic 0 002 @ 09679925 n 0000 #m 08087981 n 0000 | a member of the Anglican Church who emphasizes its Catholic character -09680387 18 n 01 Greek_Catholic 0 002 @ 09679925 n 0000 #m 08086646 n 0000 | a member of the Greek Orthodox Church -09680504 18 n 01 Roman_Catholic 0 004 @ 09679925 n 0000 #m 08083599 n 0000 ~ 09680657 n 0000 ~ 11356018 n 0000 | a member of the Roman Catholic Church -09680657 18 n 01 papist 0 006 @ 09680504 n 0000 ;u 06717170 n 0000 + 02921753 a 0107 + 01030488 n 0102 + 02921753 a 0108 + 02921753 a 0109 | an offensive term for Roman Catholics; originally, a Roman Catholic who was a strong advocate of the papacy -09680908 18 n 01 Old_Catholic 0 002 #m 08086050 n 0000 @ 09678009 n 0000 | a member of the church formed in the 19th century by German Catholics who refused to accept the infallibility of the Pope -09681107 18 n 03 Uniat 0 Uniate 0 Uniate_Christian 0 002 @ 09679925 n 0000 #m 08086987 n 0000 | a member of the Uniat Church -09681234 18 n 01 Copt 0 003 @ 09678009 n 0000 #m 08087203 n 0000 + 03056463 a 0101 | a member of the Coptic Church -09681351 18 n 03 Jew 0 Hebrew 0 Israelite 1 024 @ 00007846 n 0000 #m 08479095 n 0000 + 03039314 a 0203 + 03039314 a 0201 + 03039314 a 0202 + 03039087 a 0202 + 02922263 a 0102 + 02922448 a 0101 ~ 09607903 n 0000 ~ 09611548 n 0000 ~ 09655354 n 0000 ~ 09681973 n 0000 ~ 09682122 n 0000 ~ 10255915 n 0000 ~i 10273669 n 0000 ~ 10384772 n 0000 ~ 10421183 n 0000 ~ 10515863 n 0000 ~ 10545524 n 0000 ~ 10580304 n 0000 ~ 10765885 n 0000 ~ 10805274 n 0000 ~ 10805501 n 0000 ~i 11083656 n 0000 | a person belonging to the worldwide group claiming descent from Jacob (or converted to it) and connected by cultural or religious ties -09681973 18 n 01 Jewess 0 005 @ 09681351 n 0000 ~i 10273906 n 0000 ~i 10961372 n 0000 ~i 11084514 n 0000 ~i 11161412 n 0000 | a woman who is a Jew -09682122 18 n 04 kike 0 hymie 0 sheeny 0 yid 0 004 @ 09681351 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (ethnic slur) offensive term for a Jew -09682291 18 n 02 Muslim 0 Moslem 0 024 @ 09628382 n 0000 #m 08095647 n 0000 + 02923510 a 0202 + 02923510 a 0101 ~ 09682803 n 0000 ~ 09683180 n 0000 ~ 09683306 n 0000 ~ 09683559 n 0000 ~ 09723361 n 0000 ~ 09814084 n 0000 ~ 09847425 n 0000 ~ 09887496 n 0000 ~ 10076307 n 0000 ~ 10156629 n 0000 ~ 10156726 n 0000 ~ 10199251 n 0000 ~ 10337789 n 0000 ~ 10337913 n 0000 ~ 10338231 n 0000 ~ 10341573 n 0000 ~ 10551898 n 0000 ~ 10672371 n 0000 ~ 10762792 n 0000 ~i 10967447 n 0000 | a believer in or follower of Islam -09682803 18 n 01 Islamist 0 006 @ 09682291 n 0000 #m 08095647 n 0000 + 08095647 n 0101 + 06234825 n 0101 + 08096027 n 0101 + 06234825 n 0102 | an orthodox Muslim -09682967 18 n 01 Almoravid 0 001 @ 09850317 n 0000 | a member of a Muslim dynasty of Berber warriors that flourished from 1049 to 1145 and that established political dominance over northwestern Africa and Spain -09683180 18 n 01 Jihadist 0 003 @ 09682291 n 0000 + 00996673 n 0101 + 00996513 n 0101 | a Muslim who is involved in a jihad -09683306 18 n 05 Shiite 0 Shi'ite 0 Shiite_Muslim 0 Shi'ite_Muslim 0 Shia_Muslim 0 002 @ 09682291 n 0000 #m 08096301 n 0000 | a member of the branch of Islam that regards Ali as the legitimate successor to Mohammed and rejects the first three caliphs -09683559 18 n 03 Sunnite 0 Sunni 2 Sunni_Muslim 0 002 @ 09682291 n 0000 #m 08096474 n 0000 | a member of the branch of Islam that accepts the first four caliphs as rightful successors to Muhammad -09683757 18 n 01 Buddhist 0 005 @ 09628382 n 0000 #m 08098708 n 0000 + 08098708 n 0101 + 06240244 n 0101 ~ 10327696 n 0000 | one who follows the teachings of Buddha -09683924 18 n 01 Zen_Buddhist 0 004 @ 10016103 n 0000 #m 08099029 n 0000 + 08099029 n 0101 + 06242048 n 0101 | an adherent of the doctrines of Zen Buddhism -09684082 18 n 01 Mahayanist 0 004 @ 10016103 n 0000 #m 08099264 n 0000 + 08099264 n 0101 + 06240865 n 0101 | an adherent of Mahayana Buddhism -09684226 18 n 01 Hinayanist 0 003 @ 10016103 n 0000 #m 08099475 n 0000 + 08099475 n 0101 | an adherent of Hinayana Buddhism -09684352 18 n 01 Lamaist 0 003 @ 10016103 n 0000 ;c 06240244 n 0000 + 06241825 n 0101 | (Buddhism) an adherent of Lamaism -09684476 18 n 01 Tantrist 0 004 @ 10016103 n 0000 #m 08099647 n 0000 + 08099647 n 0101 + 06242427 n 0102 | an adherent of Tantrism -09684609 18 n 02 Hindu 1 Hindoo 1 012 @ 09628382 n 0000 #m 08096624 n 0000 + 02923745 a 0203 + 02923745 a 0101 ~ 09684901 n 0000 ~ 09685006 n 0000 ~ 09685233 n 0000 ~ 09685398 n 0000 ~ 09685564 n 0000 ~ 09685711 n 0000 ~ 10545682 n 0000 ~ 10550551 n 0000 | a person who adheres to Hinduism -09684901 18 n 01 swami 0 001 @ 09684609 n 0000 | a Hindu religious teacher; used as a title of respect -09685006 18 n 01 chela 0 001 @ 09684609 n 0000 | a Hindu disciple of a swami -09685085 18 n 01 Jainist 0 005 @ 10016103 n 0000 #m 08098192 n 0000 + 02925342 a 0102 + 08098192 n 0101 + 06239655 n 0101 | a believer in Jainism -09685233 18 n 01 Hare_Krishna 0 002 @ 09684609 n 0000 #m 08097766 n 0000 | worshipper of Krishna and member of the International Society for Krishna Consciousness -09685398 18 n 01 Shaktist 0 006 @ 09684609 n 0000 #m 08097222 n 0000 + 08097222 n 0102 + 06239076 n 0102 + 08097222 n 0101 + 06239076 n 0101 | worshipper of Shakti -09685564 18 n 01 Shivaist 0 005 @ 09684609 n 0000 #m 08097072 n 0000 + 09528727 n 0102 + 08097072 n 0101 + 06238931 n 0101 | worshipper of Shiva -09685711 18 n 01 Vaishnava 0 002 @ 09684609 n 0000 #m 08097391 n 0000 | worshipper of Vishnu -09685806 18 n 01 Shintoist 0 003 @ 10016103 n 0000 #m 08100320 n 0000 + 06243347 n 0102 | a believer in Shintoism -09685922 18 n 02 Rastafarian 0 Rasta 0 003 @ 10016103 n 0000 #m 08292418 n 0000 + 02925195 a 0201 | follower of Rastafarianism -09686051 18 n 01 Mithraist 0 002 @ 10016103 n 0000 + 06243963 n 0101 | adherent of Mithraism -09686146 18 n 01 Zoroastrian 0 002 @ 10016103 n 0000 + 02926708 a 0101 | follower of Zoroaster and Zoroastrianism -09686262 18 n 01 Eurafrican 0 003 @ 09686536 n 0000 @ 09634494 n 0000 + 03023995 a 0101 | a person of mixed European and African descent -09686401 18 n 01 Eurasian 0 003 @ 09686536 n 0000 @ 09641757 n 0000 + 03024132 a 0101 | a person of mixed European and Asian descent -09686536 18 n 01 European 0 065 @ 09620078 n 0000 ~ 09686262 n 0000 ~ 09686401 n 0000 ~ 09687775 n 0000 ~ 09688008 n 0000 ~ 09688804 n 0000 ~ 09689152 n 0000 ~ 09689958 n 0000 ~ 09690496 n 0000 ~ 09691604 n 0000 ~ 09692250 n 0000 ~ 09694109 n 0000 ~ 09695620 n 0000 ~ 09695979 n 0000 ~ 09699020 n 0000 ~ 09699200 n 0000 ~ 09699403 n 0000 ~ 09699536 n 0000 ~ 09699642 n 0000 ~ 09700964 n 0000 ~ 09702673 n 0000 ~ 09702836 n 0000 ~ 09703181 n 0000 ~ 09703344 n 0000 ~ 09706029 n 0000 ~ 09707166 n 0000 ~ 09707289 n 0000 ~ 09708405 n 0000 ~ 09709332 n 0000 ~ 09709795 n 0000 ~ 09710164 n 0000 ~ 09712090 n 0000 ~ 09713108 n 0000 ~ 09713985 n 0000 ~ 09714120 n 0000 ~ 09714952 n 0000 ~ 09716047 n 0000 ~ 09717047 n 0000 ~ 09720033 n 0000 ~ 09721088 n 0000 ~ 09721244 n 0000 ~ 09721444 n 0000 ~ 09725402 n 0000 ~ 09727627 n 0000 ~ 09728009 n 0000 ~ 09728285 n 0000 ~ 09729945 n 0000 ~ 09730204 n 0000 ~ 09730533 n 0000 ~ 09731343 n 0000 ~ 09731906 n 0000 ~ 09732441 n 0000 ~ 09735023 n 0000 ~ 09737050 n 0000 ~ 09747329 n 0000 ~ 09747618 n 0000 ~ 09747722 n 0000 ~ 09749011 n 0000 ~ 09749753 n 0000 ~ 09750891 n 0000 ~ 09863620 n 0000 ~ 09988918 n 0000 ~ 10146313 n 0000 ~ 10196133 n 0000 ~ 10327987 n 0000 | a native or inhabitant of Europe -09687775 18 n 01 sahib 0 002 @ 09686536 n 0000 ~ 09687940 n 0000 | formerly a term of respect for important white Europeans in colonial India; used after the name -09687940 18 n 01 memsahib 0 001 @ 09687775 n 0000 | a woman sahib -09688008 18 n 02 Celt 0 Kelt 0 005 @ 09686536 n 0000 + 02957823 a 0101 ~ 09688233 n 0000 ~ 09688366 n 0000 ~ 09688487 n 0000 | a member of a European people who once occupied Britain and Spain and Gaul prior to Roman times -09688233 18 n 01 Gael 0 002 @ 09688008 n 0000 + 02957823 a 0102 | a Gaelic-speaking Celt in Ireland or Scotland or the Isle of Man -09688366 18 n 01 Briton 0 001 @ 09688008 n 0000 | an inhabitant of southern Britain prior to the Anglo-Saxon invasions -09688487 18 n 01 Gaul 0 003 @ 09688008 n 0000 + 03066978 a 0101 ~ 09688596 n 0000 | a Celt of ancient Gaul -09688596 18 n 01 Galatian 0 001 @ 09688487 n 0000 | a native or inhabitant of Galatia in Asia Minor (especially a member of a people believed to have been Gauls who conquered Galatia in the 3rd century BC) -09688804 18 n 01 Frank 0 003 @ 09686536 n 0000 ~ 09689000 n 0000 ~i 10903172 n 0000 | a member of the ancient Germanic peoples who spread from the Rhine into the Roman Empire in the 4th century -09689000 18 n 02 Salian_Frank 0 Salian 0 001 @ 09688804 n 0000 | a member of the tribe of Franks who settled in the Netherlands in the 4th century AD -09689152 18 n 01 Teuton 0 007 @ 09686536 n 0000 -c 09499657 n 0000 -c 09499854 n 0000 -c 09501737 n 0000 -c 09585434 n 0000 -c 09590495 n 0000 ~ 10139774 n 0000 | a member of the ancient Germanic people who migrated from Jutland to southern Gaul and were annihilated by the Romans -09689435 18 n 02 Afghan 0 Afghanistani 0 006 @ 09641757 n 0000 #m 08703454 n 0000 + 03003928 a 0203 + 03003928 a 0102 ~ 09689631 n 0000 ~ 09689739 n 0000 | a native or inhabitant of Afghanistan -09689631 18 n 01 Kafir 1 001 @ 09689435 n 0000 | a member of the Kafir people in northeastern Afghanistan -09689739 18 n 04 Pathan 0 Pashtun 0 Pushtun 0 Pashtoon 0 001 @ 09689435 n 0000 | a member of the mountain people living in the eastern regions of Afghanistan; "Pathans are the predominant ethnic group in Afghanistan" -09689958 18 n 01 Albanian 0 003 @ 09686536 n 0000 #m 08704822 n 0000 + 02609813 a 0101 | a native or inhabitant of Albania -09690083 18 n 01 Algerian 0 003 @ 09634494 n 0000 #m 08705397 n 0000 + 02977826 a 0101 | a native or inhabitant of Algeria -09690208 18 n 01 Altaic 0 003 @ 09641757 n 0000 + 02614816 a 0101 ~ 09737297 n 0000 | any member of the peoples speaking a language in the Altaic language group -09690371 18 n 01 Armenian 0 003 @ 09641757 n 0000 #m 09017526 n 0000 + 02625648 a 0101 | a native or inhabitant of Armenia -09690496 18 n 01 Andorran 0 003 @ 09686536 n 0000 #m 09023118 n 0000 + 02978000 a 0101 | a native or inhabitant of Andorra -09690621 18 n 01 Angolan 0 004 @ 09634494 n 0000 #m 08707917 n 0000 + 03042812 a 0101 ~ 09690762 n 0000 | a native or inhabitant of Angola -09690762 18 n 01 Angolese 0 001 @ 09690621 n 0000 | a member of the Bantu tribes resident in Angola -09690864 18 n 01 Anguillan 0 003 @ 10774440 n 0000 #m 08747054 n 0000 + 03042986 a 0101 | a native or inhabitant of the island of Anguilla in the West Indies -09691024 18 n 01 Antiguan 0 003 @ 10774440 n 0000 #m 08709945 n 0000 + 03043667 a 0101 | a native or inhabitant of Antigua -09691149 18 n 01 Argentinian 0 003 @ 09731571 n 0000 #m 08711974 n 0000 + 02966972 a 0102 | a native or inhabitant of Argentina -09691279 18 n 02 Australian 0 Aussie 0 004 @ 09620078 n 0000 #m 08831004 n 0000 + 03045750 a 0101 ~ 09676490 n 0000 | a native or inhabitant of Australia -09691435 18 n 01 Austronesian 0 005 @ 09620078 n 0000 #m 08836329 n 0000 + 02977638 a 0101 ~ 09723944 n 0000 ~ 09727826 n 0000 | a native or inhabitant of Austronesia -09691604 18 n 01 Austrian 0 003 @ 09686536 n 0000 #m 08845555 n 0000 + 02961099 a 0101 | a native or inhabitant of Austria -09691729 18 n 01 Bahamian 0 003 @ 10774440 n 0000 #m 08847268 n 0000 + 03045992 a 0101 | a native or inhabitant of the Bahamas -09691858 18 n 02 Bahraini 0 Bahreini 0 003 @ 09729530 n 0000 #m 08848094 n 0000 + 03046184 a 0101 | a native or inhabitant of Bahrain -09691994 18 n 01 Bangladeshi 0 003 @ 09641757 n 0000 #m 08848731 n 0000 + 03046349 a 0101 | a native or inhabitant of Bangladesh -09692125 18 n 01 Basotho 0 002 @ 09634494 n 0000 #m 08958830 n 0000 | a member of a subgroup of people who inhabit Lesotho -09692250 18 n 01 Basque 0 003 @ 09686536 n 0000 #m 08929922 n 0000 #m 09023321 n 0000 | a member of a people of unknown origin living in the western Pyrenees in France and Spain -09692430 18 n 01 Bengali 0 004 @ 09641757 n 0000 #m 08848731 n 0000 ;c 06236802 n 0000 + 03047714 a 0101 | (Hinduism) a member of a people living in Bangladesh and West Bengal (mainly Hindus) -09692624 18 n 01 Bantu 0 009 @ 09634494 n 0000 + 03046708 a 0101 ~ 09692915 n 0000 ~ 09693100 n 0000 ~ 09693244 n 0000 ~ 09693372 n 0000 ~ 09693618 n 0000 ~ 09693809 n 0000 ~ 10591239 n 0000 | a member of any of a large number of linguistically related peoples of Central and South Africa -09692915 18 n 01 Herero 0 004 @ 09692624 n 0000 #m 08699654 n 0000 #m 08852389 n 0000 #m 08707917 n 0000 | a member of a pastoral Bantu people living in Namibia, Botswana, and Angola -09693100 18 n 01 Hutu 0 003 @ 09692624 n 0000 #m 08815046 n 0000 #m 08716219 n 0000 | a member of a Bantu people living in Rwanda and Burundi -09693244 18 n 02 Luba 0 Chiluba 0 002 @ 09692624 n 0000 #m 08734385 n 0000 | a member of a Bantu people in southeastern Congo -09693372 18 n 01 Sotho 0 005 @ 09692624 n 0000 #m 08852389 n 0000 #m 08958830 n 0000 #m 08999482 n 0000 + 03119441 a 0101 | a member of the Bantu people who inhabit Botswana, Lesotho, and northern South Africa and who speak the Sotho languages -09693618 18 n 03 Tswana 0 Bechuana 0 Batswana 0 003 @ 09692624 n 0000 #m 08852389 n 0000 #m 08999482 n 0000 | a member of a Bantu people living chiefly in Botswana and western South Africa -09693809 18 n 03 Tutsi 0 Watutsi 0 Watusi 0 003 @ 09692624 n 0000 #m 08815046 n 0000 #m 08716219 n 0000 | a member of a Bantu speaking people living in Rwanda and Burundi -09693982 18 n 01 Barbadian 0 003 @ 10774440 n 0000 #m 08755214 n 0000 + 03047188 a 0101 | a native or inhabitant of Barbados -09694109 18 n 01 Belgian 0 005 @ 09686536 n 0000 #m 08849753 n 0000 + 02960507 a 0101 ~ 09706132 n 0000 ~ 09750641 n 0000 | a native or inhabitant of Belgium -09694269 18 n 01 Beninese 0 003 @ 09634494 n 0000 #m 08759420 n 0000 + 03047898 a 0101 | a native or inhabitant of Benin -09694392 18 n 02 Bermudan 0 Bermudian 0 003 @ 09725229 n 0000 #m 08710678 n 0000 + 03048046 a 0101 | a native or inhabitant of Bermuda -09694529 18 n 02 Bhutanese 0 Bhutani 0 003 @ 09641757 n 0000 #m 08852209 n 0000 + 03048204 a 0101 | a native or inhabitant of Bhutan -09694664 18 n 01 Bolivian 0 002 @ 09731571 n 0000 #m 08852843 n 0000 | a native or inhabitant of Bolivia -09694771 18 n 01 Bornean 0 003 @ 09721883 n 0000 #m 08843215 n 0000 ~ 09695514 n 0000 | a native or inhabitant of Borneo -09694894 18 n 01 Brazilian 0 003 @ 09731571 n 0000 #m 08853741 n 0000 ~ 09695019 n 0000 | a native or inhabitant of Brazil -09695019 18 n 01 Carioca 0 002 @ 09694894 n 0000 #m 08856266 n 0000 | a native or inhabitant of Rio de Janeiro -09695132 18 n 01 Tupi 0 001 @ 09726621 n 0000 | a member of the South American Indian people living in Brazil and Paraguay -09695257 18 n 01 Guarani 0 001 @ 09726621 n 0000 | a member of the South American people living in Paraguay and Bolivia -09695379 18 n 01 Maraco 0 001 @ 09726621 n 0000 | a member of the South American people living in Argentina and Bolivia and Paraguay -09695514 18 n 01 Bruneian 0 002 @ 09694771 n 0000 #m 08896092 n 0000 | a native or inhabitant of Brunei -09695620 18 n 01 Bulgarian 0 003 @ 09686536 n 0000 #m 08714132 n 0000 + 03051307 a 0101 | a native or inhabitant of Bulgaria -09695747 18 n 01 Burmese 0 003 @ 09641757 n 0000 #m 08715390 n 0000 + 03052018 a 0101 | a native or inhabitant of Myanmar -09695871 18 n 01 Burundian 0 002 @ 09634494 n 0000 #m 08716219 n 0000 | a native or inhabitant of Burundi -09695979 18 n 03 Byelorussian 0 Belorussian 0 White_Russian 0 002 @ 09686536 n 0000 #m 09011151 n 0000 | a native or inhabitant of Byelorussia -09696124 18 n 01 Byzantine 0 003 @ 09641757 n 0000 #m 08800676 n 0000 #m 08801099 n 0000 | a native or inhabitant of Byzantium or of the Byzantine Empire -09696280 18 n 02 Cambodian 0 Kampuchean 0 005 @ 09641757 n 0000 #m 08716738 n 0000 + 02968828 a 0202 + 02968828 a 0101 ~ 09733707 n 0000 | a native or inhabitant of Cambodia -09696456 18 n 01 Cameroonian 0 003 @ 09634494 n 0000 #m 08717209 n 0000 + 03052588 a 0101 | a native or inhabitant of Cameroon -09696585 18 n 01 Canadian 0 006 @ 09725229 n 0000 #m 08820121 n 0000 + 02982473 a 0101 ~ 09696763 n 0000 ~ 09725546 n 0000 ~ 10499232 n 0000 | a native or inhabitant of Canada -09696763 18 n 01 French_Canadian 0 003 @ 09696585 n 0000 ~ 09677168 n 0000 ~ 09696944 n 0000 | a Canadian descended from early French settlers and whose native language is French -09696944 18 n 01 Canuck 0 001 @ 09696763 n 0000 | informal term for Canadians in general and French Canadians in particular -09697070 18 n 01 Carthaginian 0 005 @ 09634494 n 0000 #m 08919949 n 0000 + 03104740 a 0101 ~i 11028196 n 0000 ~i 11033631 n 0000 | a native or inhabitant of ancient Carthage -09697246 18 n 01 Cebuan 0 002 @ 10755648 n 0000 #m 08980640 n 0000 | inhabitant of the island of Cebu; a member of the Visayan people of the Philippines -09697401 18 n 01 Central_American 0 009 @ 09725229 n 0000 #m 08735705 n 0000 + 03004196 a 0101 ~ 09698788 n 0000 ~ 09712195 n 0000 ~ 09712570 n 0000 ~ 09722658 n 0000 ~ 09724656 n 0000 ~ 09726120 n 0000 | a native or inhabitant of Central America -09697650 18 n 01 Chadian 0 003 @ 09634494 n 0000 #m 08720037 n 0000 + 03054743 a 0101 | a native or inhabitant of Chad -09697771 18 n 03 Chewa 0 Cewa 0 Chichewa 0 004 @ 09634494 n 0000 #m 08962610 n 0000 #m 09165613 n 0000 #m 09167101 n 0000 | a member of the Bantu-speaking people of Malawi and eastern Zambia and northern Zimbabwe -09697986 18 n 01 Chilean 0 003 @ 09731571 n 0000 #m 08720481 n 0000 + 02965985 a 0101 | a native or inhabitant of Chile -09698108 18 n 01 Chinese 0 007 @ 09641757 n 0000 #m 08723006 n 0000 #m 08730550 n 0000 ~ 09698337 n 0000 ~ 09870746 n 0000 ~ 10156831 n 0000 ~ 10289671 n 0000 | a native or inhabitant of Communist China or of Nationalist China -09698337 18 n 02 chink 0 Chinaman 0 004 @ 09698108 n 0000 ;u 06717170 n 0000 ;u 06718862 n 0000 ;u 07157273 n 0000 | (ethnic slur) offensive term for a person of Chinese descent -09698517 18 n 01 Colombian 0 003 @ 09731571 n 0000 #m 08732116 n 0000 + 02967618 a 0101 | a native or inhabitant of Colombia -09698644 18 n 01 Congolese 0 003 @ 09634494 n 0000 #m 08734385 n 0000 + 03056115 a 0101 | a native or inhabitant of the Republic of the Congo -09698788 18 n 01 Costa_Rican 0 002 @ 09697401 n 0000 #m 08736107 n 0000 | a native or inhabitant of Costa Rica -09698901 18 n 01 Cuban 0 003 @ 10774440 n 0000 #m 08750334 n 0000 + 02969591 a 0101 | a native or inhabitant of Cuba -09699020 18 n 03 Cypriot 0 Cypriote 0 Cyprian 0 005 @ 09686536 n 0000 #m 08756735 n 0000 + 03058754 a 0301 + 03058754 a 0202 + 03058754 a 0103 | a native or inhabitant of Cyprus -09699200 18 n 03 Czechoslovakian 0 Czechoslovak 0 Czech 0 004 @ 09686536 n 0000 #m 08757569 n 0000 + 02961688 a 0301 + 02961688 a 0102 | a native or inhabitant of the former republic of Czechoslovakia -09699403 18 n 01 Czech 1 003 @ 09686536 n 0000 #m 08757264 n 0000 + 02961688 a 0101 | a native of inhabitant of the Czech Republic -09699536 18 n 01 Slovak 0 002 @ 09686536 n 0000 #m 08759013 n 0000 | a native or inhabitant of Slovakia -09699642 18 n 01 Dane 0 003 @ 09686536 n 0000 #m 08761244 n 0000 ~ 09700017 n 0000 | a native or inhabitant of Denmark -09699763 18 n 02 Dutch 0 Dutch_people 0 002 @ 08166552 n 0000 ~ 09699918 n 0000 | the people of the Netherlands; "the Dutch are famous for their tulips" -09699918 18 n 01 Frisian 0 001 @ 09699763 n 0000 | a native or inhabitant of Friesland or Frisia -09700017 18 n 01 Zealander 0 002 @ 09699642 n 0000 #m 08761697 n 0000 | a native or inhabitant of Zealand -09700125 18 n 01 Djiboutian 0 003 @ 09634494 n 0000 #m 08762495 n 0000 + 03061762 a 0101 | a native or inhabitant of Djibouti -09700253 18 n 01 East_Indian 0 002 @ 09641757 n 0000 #m 08841956 n 0000 | a native or inhabitant of the East Indies -09700371 18 n 02 Ecuadorian 0 Ecuadoran 0 002 @ 09731571 n 0000 #m 08776687 n 0000 | a native or inhabitant of Ecuador -09700492 18 n 01 Egyptian 0 008 @ 09634494 n 0000 #m 08897065 n 0000 + 02971469 a 0101 ~ 09700706 n 0000 ~ 09711978 n 0000 ~ 09886807 n 0000 ~ 10364333 n 0000 ~i 10901827 n 0000 | a native or inhabitant of Egypt -09700706 18 n 01 Copt 1 002 @ 09700492 n 0000 + 03056463 a 0101 | an Egyptian descended from the ancient Egyptians -09700823 18 n 03 Salvadoran 0 Salvadorian 0 Salvadorean 0 002 @ 09731571 n 0000 #m 08738272 n 0000 | a native or inhabitant of El Salvador -09700964 18 n 03 Britisher 0 Briton 1 Brit 0 005 @ 09686536 n 0000 #m 08858942 n 0000 + 03132826 a 0201 ~ 09701148 n 0000 ~ 10406072 n 0000 | a native or inhabitant of Great Britain -09701148 18 n 01 English_person 0 021 @ 09700964 n 0000 #m 08871007 n 0000 ~ 09701603 n 0000 ~ 09701833 n 0000 ~ 09701977 n 0000 ~ 09702134 n 0000 ~ 09702541 n 0000 ~ 09703573 n 0000 ~ 09703708 n 0000 ~ 09704057 n 0000 ~ 09704157 n 0000 ~ 09704283 n 0000 ~ 09704368 n 0000 ~ 09704509 n 0000 ~ 09704630 n 0000 ~ 09704876 n 0000 ~ 09705003 n 0000 ~ 09877750 n 0000 ~ 10279317 n 0000 ~ 10552393 n 0000 ~ 10734891 n 0000 | a native or inhabitant of England -09701603 18 n 01 Englishman 0 008 @ 09701148 n 0000 #m 08871007 n 0000 ~ 09703485 n 0000 ~ 09703809 n 0000 ~ 09880646 n 0000 ~ 10218692 n 0000 ~ 10716864 n 0000 ~ 10776141 n 0000 | a man who is a native or inhabitant of England -09701833 18 n 01 Englishwoman 0 003 @ 09701148 n 0000 #m 08871007 n 0000 ~ 09703932 n 0000 | a woman who is a native or inhabitant of England -09701977 18 n 01 Anglo-Saxon 0 003 @ 09701148 n 0000 + 03114843 a 0101 -c 09586011 n 0000 | a native or inhabitant of England prior to the Norman Conquest -09702134 18 n 01 Anglo-Saxon 1 002 @ 09701148 n 0000 ;r 08860123 n 0000 | a person of Anglo-Saxon (especially British) descent whose native tongue is English and whose culture is strongly influenced by English culture as in WASP for `White Anglo-Saxon Protestant'; "in the ninth century the Vikings began raiding the Anglo-Saxons in Britain"; "his ancestors were not just British, they were Anglo-Saxons" -09702541 18 n 01 Anglo-Indian 0 002 @ 09701148 n 0000 + 02921199 a 0101 | a person of English citizenship born or living in India -09702673 18 n 01 Angle 0 001 @ 09686536 n 0000 | a member of a Germanic people who conquered England and merged with the Saxons and Jutes to become Anglo-Saxons -09702836 18 n 01 Saxon 0 004 @ 09686536 n 0000 + 03114508 a 0101 ~ 09703101 n 0000 ~i 10827513 n 0000 | a member of a Germanic people who conquered England and merged with the Angles and Jutes to become Anglo-Saxons; dominant in England until the Norman Conquest -09703101 18 n 01 West_Saxon 0 001 @ 09702836 n 0000 | an inhabitant of Wessex -09703181 18 n 01 Jute 0 001 @ 09686536 n 0000 | a member of a Germanic people who conquered England and merged with the Angles and Saxons to become Anglo-Saxons -09703344 18 n 02 Lombard 0 Langobard 0 001 @ 09686536 n 0000 | a member of a Germanic people who invaded northern Italy in the 6th century -09703485 18 n 02 limey 0 John_Bull 0 001 @ 09701603 n 0000 | a man of English descent -09703573 18 n 02 pommy 0 pom 0 003 @ 09701148 n 0000 ;r 08831004 n 0000 ;r 08972521 n 0000 | a disparaging term for a British person -09703708 18 n 01 Cantabrigian 0 002 @ 09701148 n 0000 #m 08878016 n 0000 | a resident of Cambridge -09703809 18 n 01 Cornishman 0 002 @ 09701603 n 0000 #m 08881398 n 0000 | a man who is a native or inhabitant of Cornwall -09703932 18 n 01 Cornishwoman 0 002 @ 09701833 n 0000 #m 08881398 n 0000 | a woman who is a native or resident of Cornwall -09704057 18 n 01 Lancastrian 2 002 @ 09701148 n 0000 #m 08873269 n 0000 | a resident of Lancaster -09704157 18 n 01 Lancastrian 1 002 @ 09701148 n 0000 #m 08155765 n 0000 | a member (or supporter) of the house of Lancaster -09704283 18 n 01 Geordie 0 001 @ 09701148 n 0000 | a native of Newcastle-upon-Tyne -09704368 18 n 01 Hanoverian 1 003 @ 09701148 n 0000 #m 08154960 n 0000 + 03071838 a 0101 | a member (or supporter) of the house of Hanover -09704509 18 n 02 Liverpudlian 0 Scouser 0 002 @ 09701148 n 0000 #m 08877382 n 0000 | a native or resident of Liverpool -09704630 18 n 01 Londoner 0 004 @ 09701148 n 0000 #m 08873622 n 0000 + 08873622 n 0101 ~ 09704770 n 0000 | a native or resident of London -09704770 18 n 01 Cockney 0 002 @ 09704630 n 0000 + 03055658 a 0101 | a native of the east end of London -09704876 18 n 01 Mancunian 0 003 @ 09701148 n 0000 #m 08876975 n 0000 + 03084196 a 0101 | a native or resident of Manchester -09705003 18 n 01 Oxonian 0 003 @ 09701148 n 0000 #m 08877807 n 0000 + 03095588 a 0101 | a native or resident of Oxford -09705124 18 n 01 Ethiopian 0 005 @ 09634494 n 0000 #m 08778061 n 0000 + 03064693 a 0101 ~ 09705671 n 0000 ~ 09705784 n 0000 | a native or inhabitant of Ethiopia -09705287 18 n 01 Ewe 0 004 @ 09634494 n 0000 #m 08946187 n 0000 #m 08759986 n 0000 #m 08759420 n 0000 | a member of a people living in southern Benin and Togo and southeastern Ghana -09705471 18 n 05 Fulani 0 Fula 0 Fulah 0 Fellata 0 Fulbe 0 001 @ 09634494 n 0000 | a member of a pastoral and nomadic people of western Africa; they are traditionally cattle herders of Muslim faith -09705671 18 n 01 Amhara 0 001 @ 09705124 n 0000 | a member of the Semitic speaking people of northern Ethiopia -09705784 18 n 01 Eritrean 0 003 @ 09705124 n 0000 #m 08777544 n 0000 + 03064520 a 0101 | a native or inhabitant of Eritrea -09705909 18 n 01 Fijian 0 003 @ 09727826 n 0000 #m 08779149 n 0000 + 03065969 a 0101 | a native or inhabitant of Fiji -09706029 18 n 01 Finn 0 002 @ 09686536 n 0000 #m 08779504 n 0000 | a native or inhabitant of Finland -09706132 18 n 01 Fleming 0 002 @ 09694109 n 0000 #m 08849753 n 0000 | a native of Flanders or a Flemish-speaking Belgian -09706255 18 n 01 Komi 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of a Finnish people living in the northwestern Urals in Russia -09706396 18 n 03 Cheremis 0 Cheremiss 0 Mari 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of a rural Finnish people living in eastern Russia -09706548 18 n 03 Ingrian 0 Inger 0 Ingerman 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of western Finnish people formerly living in the Baltic province where Saint Petersburg was built -09706746 18 n 02 Karelian 0 Carelian 0 002 @ 09728403 n 0000 #m 08779830 n 0000 | a member of the Finnish people living in Karelia in northwestern European Russia -09706911 18 n 02 Ostyak 0 Khanty 0 001 @ 09728403 n 0000 | a member of the nomadic Ugrian people living in northwestern Siberia (east of the Urals) -09707061 18 n 01 Livonian 0 001 @ 09707166 n 0000 | a member of the Livonian-speaking people of Latvia -09707166 18 n 01 Latvian 0 003 @ 09686536 n 0000 #m 09013074 n 0000 ~ 09707061 n 0000 | a native or inhabitant of Latvia -09707289 18 n 01 Lithuanian 0 002 @ 09686536 n 0000 #m 09013830 n 0000 | a native or inhabitant of Lithuania -09707400 18 n 03 Mordva 0 Mordvin 0 Mordvinian 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of the agricultural people living in the central Volga provinces of European Russia -09707587 18 n 01 Nganasan 0 002 @ 09728403 n 0000 #m 09005712 n 0000 | a member of the Samoyedic people living on the Taimyr Peninsula in Siberia -09707735 18 n 02 Selkup 0 Ostyak-Samoyed 0 002 @ 09728403 n 0000 #m 09005712 n 0000 | one of the people of mixed Ostyak and Samoyed origin in Siberia -09707887 18 n 01 Samoyed 0 001 @ 09728403 n 0000 | a Samoyedic-speaking person in northwestern Siberia -09707992 18 n 03 Veps 0 Vepse 0 Vepsian 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of a Finnish people of Russia -09708118 18 n 02 Vogul 0 Mansi 0 002 @ 09728403 n 0000 #m 09007723 n 0000 | a member of a nomadic people of the northern Urals -09708247 18 n 01 Yeniseian 0 002 @ 09728403 n 0000 #m 09005712 n 0000 | a member of one of the groups living in the Yenisei river valley in western Siberia -09708405 18 n 03 Frenchman 0 Frenchwoman 0 French_person 0 008 @ 09686536 n 0000 #m 08929922 n 0000 ~ 09708648 n 0000 ~ 09708750 n 0000 ~ 09709001 n 0000 ~ 09709155 n 0000 ~ 09709229 n 0000 ~ 09713260 n 0000 | a person of French nationality -09708648 18 n 02 frog 0 Gaul 1 002 @ 09708405 n 0000 + 02958392 a 0202 | a person of French descent -09708750 18 n 01 Parisian 0 004 @ 09708405 n 0000 #m 08932568 n 0000 + 03023449 a 0101 ~ 09708889 n 0000 | a native or resident of Paris -09708889 18 n 01 Parisienne 0 002 @ 09708750 n 0000 #m 08932568 n 0000 | a female native or resident of Paris -09709001 18 n 01 Breton 0 002 @ 09708405 n 0000 #m 08941208 n 0000 | a native or inhabitant of Brittany (especially one who speaks the Breton language) -09709155 18 n 01 Savoyard 0 001 @ 09708405 n 0000 | a resident of Savoy -09709229 18 n 02 Angevin 0 Angevine 0 002 @ 09708405 n 0000 #m 08940371 n 0000 | a resident of Anjou -09709332 18 n 01 Balkan 0 002 @ 09686536 n 0000 #m 08713772 n 0000 | an inhabitant of the Balkan Peninsula -09709441 18 n 01 Castillian 0 001 @ 09731906 n 0000 | a native or inhabitant of Castile -09709531 18 n 01 Creole 1 001 @ 09738708 n 0000 | a person descended from French ancestors in southern United States (especially Louisiana) -09709673 18 n 01 Creole 2 001 @ 09738400 n 0000 | a person of European descent born in the West Indies or Latin America -09709795 18 n 01 Cretan 0 003 @ 09686536 n 0000 #m 08784333 n 0000 ~ 09709916 n 0000 | a native or inhabitant of Crete -09709916 18 n 01 Minoan 0 001 @ 09709795 n 0000 | a Cretan who lived in the bronze-age culture of Crete about 3000-1100 BC -09710041 18 n 01 Gabonese 0 003 @ 09634494 n 0000 #m 08945529 n 0000 + 03066825 a 0101 | a native or inhabitant of Gabon -09710164 18 n 02 Greek 0 Hellene 0 021 @ 09686536 n 0000 #m 08780881 n 0000 + 03016202 a 0203 + 03016202 a 0101 + 03016202 a 0102 ~ 09710619 n 0000 ~ 09710753 n 0000 ~ 09710886 n 0000 ~ 09711009 n 0000 ~ 09711132 n 0000 ~ 09711320 n 0000 ~ 09711435 n 0000 ~ 09711530 n 0000 ~ 09711661 n 0000 ~ 09711754 n 0000 ~ 09711870 n 0000 ~ 09807495 n 0000 ~ 10061554 n 0000 ~ 10342992 n 0000 ~ 10707616 n 0000 ~ 10707707 n 0000 | a native or inhabitant of Greece -09710619 18 n 02 Achaean 0 Achaian 0 001 @ 09710164 n 0000 | a member of one of four linguistic divisions of the prehistoric Greeks -09710753 18 n 02 Aeolian 0 Eolian 0 001 @ 09710164 n 0000 | a member of one of four linguistic divisions of the prehistoric Greeks -09710886 18 n 01 Dorian 0 001 @ 09710164 n 0000 | a member of one of four linguistic divisions of the prehistoric Greeks -09711009 18 n 01 Ionian 0 001 @ 09710164 n 0000 | a member of one of four linguistic divisions of the prehistoric Greeks -09711132 18 n 01 Athenian 0 007 @ 09710164 n 0000 #m 08785343 n 0000 + 02972499 a 0101 ~i 10812047 n 0000 ~i 10930428 n 0000 ~i 10942675 n 0000 ~i 11307422 n 0000 | a resident of Athens -09711320 18 n 01 Corinthian 0 003 @ 09710164 n 0000 #m 08786432 n 0000 + 02704686 a 0101 | a resident of Corinth -09711435 18 n 01 Laconian 0 002 @ 09710164 n 0000 #m 08787695 n 0000 | a resident of Laconia -09711530 18 n 01 Lesbian 1 004 @ 09710164 n 0000 #m 08783583 n 0000 ~i 10811900 n 0000 ~i 11281345 n 0000 | a resident of Lesbos -09711661 18 n 01 Spartan 0 002 @ 09710164 n 0000 #m 08787240 n 0000 | a resident of Sparta -09711754 18 n 01 Arcadian 0 003 @ 09710164 n 0000 #m 08790353 n 0000 + 02051179 a 0101 | an inhabitant of Arcadia -09711870 18 n 01 Theban 0 002 @ 09710164 n 0000 #m 08789076 n 0000 | a Greek inhabitant of ancient Thebes -09711978 18 n 01 Theban 1 002 @ 09700492 n 0000 #m 08899776 n 0000 | an Egyptian inhabitant of ancient Thebes -09712090 18 n 01 Thracian 0 002 @ 09686536 n 0000 #m 08915784 n 0000 | an inhabitant of ancient Thrace -09712195 18 n 01 Guatemalan 0 003 @ 09697401 n 0000 #m 08737041 n 0000 + 03071022 a 0101 | a native or inhabitant of Guatemala -09712324 18 n 01 Guyanese 0 003 @ 09731571 n 0000 #m 08948346 n 0000 + 03071374 a 0101 | a native or inhabitant of Guyana -09712448 18 n 01 Haitian 0 003 @ 10774440 n 0000 #m 08751494 n 0000 + 03071651 a 0101 | a native or inhabitant of Haiti -09712570 18 n 01 Honduran 0 003 @ 09697401 n 0000 #m 08737716 n 0000 + 02969241 a 0101 | a native or inhabitant of Honduras -09712696 18 n 02 Malay 0 Malayan 0 006 @ 09641757 n 0000 #m 08963369 n 0000 #m 08964810 n 0000 #m 08841956 n 0000 + 03083069 a 0202 + 03083069 a 0101 | a member of a people inhabiting the northern Malay Peninsula and Malaysia and parts of the western Malay Archipelago -09712967 18 n 01 Moro 0 002 @ 09727440 n 0000 #m 08980920 n 0000 | a member of the predominantly Muslim people in the southern Philippines -09713108 18 n 03 Netherlander 0 Dutchman 0 Hollander 0 003 @ 09686536 n 0000 #m 08949093 n 0000 + 08949093 n 0305 | a native or inhabitant of Holland -09713260 18 n 01 Norman 0 002 @ 09708405 n 0000 #m 08944561 n 0000 | an inhabitant of Normandy -09713357 18 n 02 Palestinian 0 Palestinian_Arab 0 002 @ 09729530 n 0000 + 02974615 a 0101 | a descendant of the Arabs who inhabited Palestine -09713501 18 n 03 Hindu 0 Hindoo 0 Hindustani 0 009 @ 09641757 n 0000 #m 08902422 n 0000 + 02971672 a 0301 + 02923745 a 0203 ~ 09872557 n 0000 ~ 10240821 n 0000 ~ 10505816 n 0000 ~ 10594284 n 0000 ~ 10744844 n 0000 | a native or inhabitant of Hindustan or India -09713764 18 n 02 Hmong 0 Miao 0 001 @ 09641757 n 0000 | a people living traditionally in mountain villages in southern China and adjacent areas of Vietnam and Laos and Thailand; many have emigrated to the United States -09713985 18 n 02 Hungarian 0 Magyar 0 003 @ 09686536 n 0000 #m 08952190 n 0000 + 02961505 a 0202 | a native or inhabitant of Hungary -09714120 18 n 01 Icelander 0 004 @ 09686536 n 0000 #m 08953324 n 0000 + 08953151 n 0101 + 08953324 n 0101 | a native or inhabitant of Iceland -09714264 18 n 01 Indonesian 0 005 @ 09641757 n 0000 #m 08907606 n 0000 ~ 09750157 n 0000 ~ 09750282 n 0000 ~ 10220080 n 0000 | a native or inhabitant of Indonesia -09714429 18 n 03 Irani 0 Iranian 0 Persian 0 007 @ 09641757 n 0000 #m 08910668 n 0000 + 03075191 a 0302 + 03075191 a 0201 ~ 10079769 n 0000 ~i 10824541 n 0000 ~i 10824710 n 0000 | a native or inhabitant of Iran; "the majority of Irani are Persian Shiite Muslims" -09714694 18 n 02 Iraqi 0 Iraki 0 005 @ 09641757 n 0000 #m 08913434 n 0000 + 03075470 a 0202 + 03075470 a 0101 ~ 10156425 n 0000 | a native or inhabitant of Iraq; "the majority of Iraqi are Arab Shiite Muslims although Sunni Muslims control the government" -09714952 18 n 02 Irish_person 0 Irelander 0 007 @ 09686536 n 0000 #m 08859173 n 0000 + 08888676 n 0201 + 08859173 n 0201 ~ 09715165 n 0000 ~ 09715303 n 0000 ~ 09715427 n 0000 | a native or inhabitant of Ireland -09715165 18 n 01 Irishman 0 003 @ 09714952 n 0000 #m 08859173 n 0000 ~ 09715521 n 0000 | a man who is a native or inhabitant of Ireland -09715303 18 n 01 Irishwoman 0 002 @ 09714952 n 0000 #m 08859173 n 0000 | a woman who is a native or inhabitant of Ireland -09715427 18 n 01 Dubliner 0 002 @ 09714952 n 0000 #m 08889191 n 0000 | a resident of Dublin -09715521 18 n 03 Paddy 0 Mick 0 Mickey 0 003 @ 09715165 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive term for a person of Irish descent -09715685 18 n 01 Israelite 0 003 @ 09641757 n 0000 #m 08792295 n 0000 ~ 10549648 n 0000 | a native or inhabitant of the ancient kingdom of Israel -09715833 18 n 01 Israeli 0 004 @ 09641757 n 0000 #m 08792548 n 0000 + 02972925 a 0101 ~ 09715974 n 0000 | a native or inhabitant of Israel -09715974 18 n 01 sabra 0 001 @ 09715833 n 0000 | a native-born Israeli -09716047 18 n 01 Italian 0 018 @ 09686536 n 0000 #m 08801678 n 0000 + 02957066 a 0101 ~ 09716439 n 0000 ~ 09716643 n 0000 ~ 09716837 n 0000 ~ 09716933 n 0000 ~ 09717233 n 0000 ~ 09717454 n 0000 ~ 09717566 n 0000 ~ 09717696 n 0000 ~ 09717789 n 0000 ~ 09717917 n 0000 ~ 10097590 n 0000 ~ 10123415 n 0000 ~ 10315456 n 0000 ~ 10350666 n 0000 ~ 10552285 n 0000 | a native or inhabitant of Italy -09716439 18 n 05 wop 0 dago 0 ginzo 0 Guinea 0 greaseball 0 004 @ 09716047 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (ethnic slur) offensive term for a person of Italian descent -09716643 18 n 01 Etruscan 0 002 @ 09716047 n 0000 #m 08813807 n 0000 | a native or inhabitant of ancient Etruria; the Etruscans influenced the Romans (who had suppressed them by about 200 BC) -09716837 18 n 01 Neopolitan 0 002 @ 09716047 n 0000 #m 08805565 n 0000 | a resident of Naples -09716933 18 n 01 Roman 0 003 @ 09716047 n 0000 #m 08806897 n 0000 + 02921569 a 0101 | a resident of modern Rome -09717047 18 n 01 Roman 1 006 @ 09686536 n 0000 #m 08800258 n 0000 + 02921325 a 0102 ~ 10394329 n 0000 ~i 10810046 n 0000 ~i 10810215 n 0000 | an inhabitant of the ancient Roman Empire -09717233 18 n 01 Sabine 0 002 @ 09716047 n 0000 #m 08801678 n 0000 | a member of an ancient Oscan-speaking people of the central Apennines north of Rome who were conquered and assimilated into the Roman state in 290 BC -09717454 18 n 01 Venetian 0 003 @ 09716047 n 0000 #m 08813264 n 0000 + 02970820 a 0101 | a resident of Venice -09717566 18 n 01 Sicilian 0 004 @ 09716047 n 0000 #m 08811215 n 0000 + 02959224 a 0101 ~ 10280495 n 0000 | a resident of Sicily -09717696 18 n 01 Tuscan 0 002 @ 09716047 n 0000 #m 08811982 n 0000 | a resident of Tuscany -09717789 18 n 01 Oscan 0 002 @ 09716047 n 0000 #m 08805122 n 0000 | an Oscan-speaking member of an ancient people of Campania -09717917 18 n 01 Samnite 0 002 @ 09716047 n 0000 #m 08805122 n 0000 | an Oscan-speaking member of an ancient people of Campania who clashed repeatedly with the early Romans -09718092 18 n 01 Jamaican 0 003 @ 10774440 n 0000 #m 08753729 n 0000 + 03076432 a 0101 | a native or inhabitant of Jamaica -09718217 18 n 02 Japanese 0 Nipponese 0 012 @ 09641757 n 0000 #m 08921850 n 0000 + 02965043 a 0202 + 02965043 a 0101 -c 08388966 n 0000 -c 08389094 n 0000 ~ 09718518 n 0000 ~ 09718652 n 0000 ~ 10122858 n 0000 -c 10358889 n 0000 -c 10549763 n 0000 ~ 10591072 n 0000 | a native or inhabitant of Japan -09718518 18 n 01 Ryukyuan 0 001 @ 09718217 n 0000 | a member of the Japanese people living on the Ryukyu Islands southwest of Japan -09718652 18 n 02 Jap 0 Nip 0 003 @ 09718217 n 0000 ;u 07157273 n 0000 ;u 06717170 n 0000 | (offensive slang) offensive term for a person of Japanese descent -09718811 18 n 01 Jordanian 0 003 @ 09641757 n 0000 #m 08927186 n 0000 + 03077235 a 0101 | a native or inhabitant of Jordan -09718936 18 n 01 Korean 0 004 @ 09641757 n 0000 + 02967791 a 0101 ~ 09719105 n 0000 ~ 09719207 n 0000 | a native or inhabitant of Korea who speaks the Korean language -09719105 18 n 01 North_Korean 0 002 @ 09718936 n 0000 + 02967990 a 0101 | a Korean from North Korea -09719207 18 n 01 South_Korean 0 002 @ 09718936 n 0000 + 02968166 a 0101 | a Korean from South Korea -09719309 18 n 01 Kenyan 0 003 @ 09634494 n 0000 #m 08928193 n 0000 + 03078586 a 0101 | a native or inhabitant of Kenya -09719430 18 n 01 Kurd 0 004 @ 09641757 n 0000 #p 09038990 n 0000 @ 07967382 n 0000 ~ 10417288 n 0000 | a member of a largely pastoral Islamic people who live in Kurdistan; the largest ethnic group without their own state -09719653 18 n 01 Kuwaiti 0 004 @ 09641757 n 0000 #m 08929243 n 0000 + 03079151 a 0101 + 03078975 a 0101 | a native or inhabitant of Kuwait -09719794 18 n 02 Lao 0 Laotian 0 003 @ 09641757 n 0000 #m 08956760 n 0000 + 03079627 a 0201 | a member of a Buddhist people inhabiting the area of the Mekong River in Laos and Thailand and speaking the Lao language; related to the Thais -09720033 18 n 06 Lapp 0 Lapplander 0 Sami 0 Saami 0 Same 0 Saame 0 003 @ 09686536 n 0000 #m 08957212 n 0000 + 08957212 n 0201 | a member of an indigenous nomadic people living in northern Scandinavia and herding reindeer -09720256 18 n 02 Latin_American 0 Latino 0 004 @ 09738400 n 0000 #m 09022831 n 0000 ~ 09720406 n 0000 ~ 10725438 n 0000 | a native of Latin America -09720406 18 n 03 spic 0 spik 0 spick 0 004 @ 09720256 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (ethnic slur) offensive term for persons of Latin American descent -09720595 18 n 01 Lebanese 0 002 @ 09641757 n 0000 #m 08957381 n 0000 | a native or inhabitant of Lebanon -09720702 18 n 01 Levantine 0 003 @ 09620794 n 0000 #m 08915159 n 0000 + 03080862 a 0101 | (formerly) a native or inhabitant of the Levant -09720842 18 n 01 Liberian 0 003 @ 09634494 n 0000 #m 08959254 n 0000 + 03081006 a 0101 | a native or inhabitant of Liberia -09720967 18 n 01 Libyan 0 003 @ 09634494 n 0000 #m 08959683 n 0000 + 03081160 a 0101 | a native or inhabitant of Libya -09721088 18 n 01 Liechtensteiner 0 004 @ 09686536 n 0000 #m 08960548 n 0000 + 03081328 a 0101 + 08960548 n 0101 | a native or inhabitant of Liechtenstein -09721244 18 n 02 Luxemburger 0 Luxembourger 0 006 @ 09686536 n 0000 #m 08960987 n 0000 + 08961402 n 0202 + 08960987 n 0201 + 08961402 n 0103 + 08960987 n 0103 | a native or inhabitant of Luxembourg -09721444 18 n 01 Macedonian 0 007 @ 09686536 n 0000 #m 08915372 n 0000 ~ 10422759 n 0000 ~i 10819533 n 0000 ~i 10929657 n 0000 ~i 11146193 n 0000 ~i 11291575 n 0000 | a native or inhabitant of Macedon -09721647 18 n 01 Madagascan 0 002 @ 09634494 n 0000 #m 08962187 n 0000 | a native or inhabitant of Madagascar -09721759 18 n 01 Malawian 0 003 @ 09634494 n 0000 #m 08962610 n 0000 + 03082875 a 0101 | a native or inhabitant of Malawi -09721883 18 n 01 Malaysian 0 006 @ 09641757 n 0000 #m 08963369 n 0000 + 03083417 a 0101 ~ 09694771 n 0000 ~ 09722064 n 0000 ~ 09730077 n 0000 | a native or inhabitant of Malaysia -09722064 18 n 01 Sabahan 0 002 @ 09721883 n 0000 #m 08964288 n 0000 | a Malaysian from Sabah -09722159 18 n 02 Maldivian 0 Maldivan 0 002 @ 09641757 n 0000 #m 08965251 n 0000 | a native or inhabitant of Maldives -09722279 18 n 01 Malian 0 003 @ 09634494 n 0000 #m 08965598 n 0000 + 03083678 a 0101 | a native or inhabitant of Mali -09722399 18 n 01 Mauritanian 0 003 @ 09634494 n 0000 #m 08966820 n 0000 + 03084759 a 0101 | a native or inhabitant of Mauritania -09722530 18 n 01 Mauritian 0 003 @ 09620794 n 0000 #m 08967484 n 0000 + 03084759 a 0102 | a native or inhabitant of Mauritius -09722658 18 n 01 Mexican 0 005 @ 09697401 n 0000 #m 08740875 n 0000 ~ 09722817 n 0000 ~ 09722898 n 0000 ~ 09723067 n 0000 | a native or inhabitant of Mexico -09722817 18 n 01 Chicano 0 001 @ 09722658 n 0000 | a person of Mexican descent -09722898 18 n 03 greaser 0 wetback 0 taco 0 003 @ 09722658 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive term for a person of Mexican descent -09723067 18 n 02 Mexican-American 0 Mexicano 0 002 @ 09722658 n 0000 ;r 08740875 n 0000 | a Mexican (or person of Mexican descent) living in the United States -09723228 18 n 01 Montserratian 0 003 @ 10774440 n 0000 #m 08711300 n 0000 + 03088038 a 0101 | a native or inhabitant of Montserrat -09723361 18 n 01 Moor 0 001 @ 09682291 n 0000 | one of the Muslim people of north Africa; of mixed Arab and Berber descent; converted to Islam in the 8th century; conqueror of Spain in the 8th century -09723564 18 n 01 Moroccan 0 003 @ 09634494 n 0000 #m 08969291 n 0000 + 03024420 a 0101 | a native or inhabitant of Morocco -09723689 18 n 01 Mozambican 0 003 @ 09634494 n 0000 #m 08971025 n 0000 + 03088384 a 0101 | a native or inhabitant of Mozambique -09723819 18 n 01 Namibian 0 003 @ 09634494 n 0000 #m 08699654 n 0000 + 03088838 a 0101 | a native or inhabitant of Namibia -09723944 18 n 01 Nauruan 0 003 @ 09691435 n 0000 #m 08841483 n 0000 + 03088968 a 0101 | a native or inhabitant of Nauru -09724066 18 n 02 Nepalese 0 Nepali 0 005 @ 09641757 n 0000 #m 08906374 n 0000 + 02971839 a 0202 + 02971839 a 0101 ~ 09724234 n 0000 | a native or inhabitant of Nepal -09724234 18 n 01 Gurkha 0 001 @ 09724066 n 0000 | a member of Hindu people descended from brahmins and Rajputs who live in Nepal -09724365 18 n 01 Gurkha 1 001 @ 10622053 n 0000 | a member of the Nepalese force that has been part of the British army for 200 years; known for fierceness in combat -09724533 18 n 02 New_Zealander 0 Kiwi 0 002 @ 09620078 n 0000 #m 08972521 n 0000 | a native or inhabitant of New Zealand -09724656 18 n 01 Nicaraguan 0 003 @ 09697401 n 0000 #m 08738820 n 0000 ~ 09612447 n 0000 | a native or inhabitant of Nicaragua -09724785 18 n 01 Nigerian 0 008 @ 09634494 n 0000 #m 08973776 n 0000 + 03091307 a 0101 + 03091080 a 0101 ~ 09725000 n 0000 ~ 09737981 n 0000 ~ 09738121 n 0000 ~ 09738275 n 0000 | a native or inhabitant of Nigeria -09725000 18 n 02 Hausa 0 Haussa 0 001 @ 09724785 n 0000 | a member of a Negroid people living chiefly in northern Nigeria -09725124 18 n 01 Nigerien 0 002 @ 09634494 n 0000 #m 08973330 n 0000 | a native or inhabitant of Niger -09725229 18 n 01 North_American 0 005 @ 09738400 n 0000 #m 09372504 n 0000 ~ 09694392 n 0000 ~ 09696585 n 0000 ~ 09697401 n 0000 | a native or inhabitant of North America -09725402 18 n 03 Norwegian 0 Norseman 0 Norse 0 003 @ 09686536 n 0000 #m 08764107 n 0000 + 02959912 a 0101 | a native or inhabitant of Norway -09725546 18 n 02 Nova_Scotian 0 bluenose 0 001 @ 09696585 n 0000 | a native or inhabitant of Nova Scotia -09725653 18 n 01 Omani 0 003 @ 09729530 n 0000 #m 08975106 n 0000 + 03093551 a 0101 | a native or inhabitant of Oman -09725772 18 n 01 Pakistani 0 005 @ 09641757 n 0000 #m 08975902 n 0000 + 03095964 a 0101 ~ 09725935 n 0000 ~ 09726037 n 0000 | a native or inhabitant of Pakistan -09725935 18 n 01 Brahui 0 001 @ 09725772 n 0000 | a member of a Dravidian people living in Pakistan -09726037 18 n 01 Sindhi 0 001 @ 09725772 n 0000 | a native or inhabitant of Sind -09726120 18 n 01 Panamanian 0 003 @ 09697401 n 0000 #m 08739206 n 0000 + 02966482 a 0101 | a native or inhabitant of Panama -09726246 18 n 01 Paraguayan 0 003 @ 09731571 n 0000 #m 08978343 n 0000 + 02967179 a 0101 | a native or inhabitant of Paraguay -09726374 18 n 01 Parthian 0 003 @ 09641757 n 0000 #m 08978821 n 0000 + 03096931 a 0101 | a native or inhabitant of Parthia -09726499 18 n 01 Peruvian 0 003 @ 09731571 n 0000 #m 08979054 n 0000 + 02966154 a 0101 | a native or inhabitant of Peru -09726621 18 n 01 South_American_Indian 0 005 @ 09644820 n 0000 ~ 09695132 n 0000 ~ 09695257 n 0000 ~ 09695379 n 0000 ~ 09726970 n 0000 | a member of a native Indian group in South America -09726811 18 n 02 Carib 0 Carib_Indian 0 001 @ 09644820 n 0000 | a member of an American Indian peoples of northeastern South America and the Lesser Antilles -09726970 18 n 02 Quechua 0 Kechua 0 004 @ 09726621 n 0000 + 03108623 a 0202 + 03108623 a 0101 ~ 09727191 n 0000 | a member of a South American Indian people in Peru who were formerly the ruling class of the Inca empire -09727191 18 n 03 Inca 0 Inka 0 Incan 0 001 @ 09726970 n 0000 | a member of the Quechuan people living in the Cuzco valley in Peru -09727323 18 n 01 Inca 1 002 @ 10541229 n 0000 ~ 10190373 n 0000 | a ruler of the Incas (or a member of his family) -09727440 18 n 01 Filipino 0 006 @ 09620794 n 0000 #m 08981244 n 0000 + 03066180 a 0101 ~ 09712967 n 0000 ~ 10688491 n 0000 ~ 10755648 n 0000 | a native or inhabitant of the Philippines -09727627 18 n 01 Pole 0 003 @ 09686536 n 0000 #m 08982587 n 0000 ~ 09727747 n 0000 | a native or inhabitant of Poland -09727747 18 n 01 polack 0 001 @ 09727627 n 0000 | a person of Polish descent -09727826 18 n 01 Polynesian 0 006 @ 09691435 n 0000 #m 08841667 n 0000 ~ 09705909 n 0000 ~ 09729271 n 0000 ~ 09733793 n 0000 ~ 09750410 n 0000 | a native or inhabitant of Polynesia -09728009 18 n 01 Portuguese 0 003 @ 09686536 n 0000 #m 08984788 n 0000 + 02959007 a 0101 | a native or inhabitant of Portugal -09728137 18 n 02 Qatari 0 Katari 0 004 @ 09729530 n 0000 #m 08986905 n 0000 + 03107596 a 0202 + 03107596 a 0101 | a native or inhabitant of Qatar -09728285 18 n 02 Romanian 0 Rumanian 0 002 @ 09686536 n 0000 #m 08813978 n 0000 | a native or inhabitant of Romania -09728403 18 n 01 Russian 0 021 @ 09620794 n 0000 #m 09007723 n 0000 ~ 09644332 n 0000 ~ 09644518 n 0000 ~ 09706255 n 0000 ~ 09706396 n 0000 ~ 09706548 n 0000 ~ 09706746 n 0000 ~ 09706911 n 0000 ~ 09707400 n 0000 ~ 09707587 n 0000 ~ 09707735 n 0000 ~ 09707887 n 0000 ~ 09707992 n 0000 ~ 09708118 n 0000 ~ 09708247 n 0000 ~ 09728850 n 0000 ~ 09729062 n 0000 ~ 09729156 n 0000 ~ 09731082 n 0000 ~ 09912907 n 0000 | a native or inhabitant of Russia -09728850 18 n 01 Great_Russian 0 001 @ 09728403 n 0000 | a member of the chief stock of Russian people living in European Russia; used to distinguish ethnic Russians from other peoples incorporated into Russia -09729062 18 n 01 Muscovite 0 002 @ 09728403 n 0000 + 03088695 a 0101 | a resident of Moscow -09729156 18 n 01 Georgian 1 002 @ 09728403 n 0000 #m 09018848 n 0000 | a native or inhabitant of Georgia in Asia -09729271 18 n 01 Samoan 0 002 @ 09727826 n 0000 #m 08991182 n 0000 | a native or inhabitant of the Samoan Islands -09729387 18 n 02 Saudi 0 Saudi_Arabian 0 003 @ 09729530 n 0000 #m 08993288 n 0000 + 03114139 a 0102 | a native or inhabitant of Saudi Arabia -09729530 18 n 02 Arab 0 Arabian 0 011 @ 09639919 n 0000 #m 08847694 n 0000 + 03044566 a 0201 ~ 09691858 n 0000 ~ 09713357 n 0000 ~ 09725653 n 0000 ~ 09728137 n 0000 ~ 09729387 n 0000 ~ 09750770 n 0000 ~ 09846469 n 0000 ~ 10552203 n 0000 | a member of a Semitic people originally from the Arabian peninsula and surrounding territories who speaks Arabic and who inhabits much of the Middle East and northern Africa -09729945 18 n 01 San_Marinese 0 003 @ 09686536 n 0000 #m 08992181 n 0000 + 03113562 a 0101 | a native or inhabitant of San Marino -09730077 18 n 01 Sarawakian 0 003 @ 09721883 n 0000 #m 08964474 n 0000 + 03113705 a 0101 | a native or inhabitant of Sarawak -09730204 18 n 03 Scandinavian 0 Norse 2 Northman 0 005 @ 09686536 n 0000 #m 08760510 n 0000 + 02960130 a 0101 ~ 09730383 n 0000 ~ 09850760 n 0000 | an inhabitant of Scandinavia -09730383 18 n 01 Viking 0 001 @ 09730204 n 0000 | any of the Scandinavian people who raided the coasts of Europe from the 8th to the 11th centuries -09730533 18 n 03 Scot 0 Scotsman 0 Scotchman 0 006 @ 09686536 n 0000 #m 08890097 n 0000 ~ 09730732 n 0000 ~ 09749142 n 0000 ~ 10174695 n 0000 ~ 10275249 n 0000 | a native or inhabitant of Scotland -09730732 18 n 02 Scotswoman 0 Scotchwoman 0 001 @ 09730533 n 0000 | a woman who is a Scot -09730824 18 n 01 Senegalese 0 003 @ 09634494 n 0000 #m 08995862 n 0000 + 03116043 a 0101 | a native or inhabitant of Senegal -09730951 18 n 01 Seychellois 0 003 @ 09620794 n 0000 #m 08996483 n 0000 + 03116517 a 0101 | a native or inhabitant of Seychelles -09731082 18 n 01 Siberian 0 004 @ 09728403 n 0000 #m 09005712 n 0000 + 03117272 a 0101 ~ 09921291 n 0000 | a native or inhabitant of Siberia -09731225 18 n 01 Sierra_Leonean 0 002 @ 09634494 n 0000 #m 08996871 n 0000 | a native or inhabitant of Sierra Leone -09731343 18 n 01 Slovene 0 002 @ 09686536 n 0000 #m 08818444 n 0000 | a native of Slovenia -09731436 18 n 01 South_African 0 003 @ 09634494 n 0000 #m 08999482 n 0000 ~ 09635635 n 0000 | a native or inhabitant of South Africa -09731571 18 n 01 South_American 0 014 @ 09738400 n 0000 #m 09440400 n 0000 ~ 09691149 n 0000 ~ 09694664 n 0000 ~ 09694894 n 0000 ~ 09697986 n 0000 ~ 09698517 n 0000 ~ 09700371 n 0000 ~ 09700823 n 0000 ~ 09712324 n 0000 ~ 09726246 n 0000 ~ 09726499 n 0000 ~ 09746936 n 0000 ~ 09747062 n 0000 | a native or inhabitant of South America -09731906 18 n 01 Spaniard 0 004 @ 09686536 n 0000 #m 09023321 n 0000 ~ 09709441 n 0000 ~ 09900284 n 0000 | a native or inhabitant of Spain -09732047 18 n 02 Sinhalese 0 Singhalese 0 002 @ 09641757 n 0000 #m 08719100 n 0000 | a native or inhabitant of Sri Lanka -09732170 18 n 01 Sudanese 0 003 @ 09634494 n 0000 #m 09029457 n 0000 + 03121212 a 0101 | a native or inhabitant of Sudan -09732293 18 n 01 Swazi 0 002 @ 09634494 n 0000 #m 09031233 n 0000 | a member of a southeast African people living in Swaziland and adjacent areas -09732441 18 n 01 Swede 0 002 @ 09686536 n 0000 #m 08765890 n 0000 | a native or inhabitant of Sweden -09732544 18 n 03 British 0 British_people 0 Brits 0 002 @ 08166552 n 0000 + 03022177 a 0101 | the people of Great Britain -09732668 18 n 02 English 0 English_people 0 002 @ 08166552 n 0000 + 03003344 a 0101 | the people of England -09732778 18 n 02 Irish 0 Irish_people 0 002 @ 08166552 n 0000 + 03003744 a 0101 | people of Ireland or of Irish extraction -09732903 18 n 02 French 0 French_people 0 003 @ 08166552 n 0000 + 00410817 v 0101 + 00410649 v 0101 | the people of France -09733028 18 n 01 Sherpa 0 004 @ 09641757 n 0000 #m 08906374 n 0000 #m 08906952 n 0000 ~i 11335491 n 0000 | a member of the Himalayan people living in Nepal and Tibet who are famous for their skill as mountaineers -09733243 18 n 02 Spanish 0 Spanish_people 0 001 @ 08166552 n 0000 | the people of Spain -09733333 18 n 02 Swiss 0 Swiss_people 0 002 @ 08166552 n 0000 ~ 10123312 n 0000 | the natives or inhabitants of Switzerland -09733459 18 n 01 Syrian 0 003 @ 09641757 n 0000 #m 09033333 n 0000 ~ 09733580 n 0000 | a native or inhabitant of Syria -09733580 18 n 01 Damascene 0 003 @ 09733459 n 0000 #m 09033936 n 0000 + 03059688 a 0101 | a native or inhabitant of Damascus -09733707 18 n 01 Khmer 0 001 @ 09696280 n 0000 | a native or inhabitant of Cambodia -09733793 18 n 01 Tahitian 0 002 @ 09727826 n 0000 #m 08989941 n 0000 | a native or inhabitant of Tahiti -09733899 18 n 01 Taiwanese 0 002 @ 09641757 n 0000 #m 08730550 n 0000 | a native or inhabitant of Taiwan -09734006 18 n 02 Tajik 0 Tadzhik 0 002 @ 09641757 n 0000 #m 09020961 n 0000 | a native or inhabitant of Tajikistan and neighboring areas of Uzbekistan and Afghanistan and China -09734185 18 n 01 Tanzanian 0 002 @ 09634494 n 0000 #m 09034550 n 0000 | a native or inhabitant of Tanzania -09734294 18 n 03 Thai 0 Tai 0 Siamese 0 004 @ 09641757 n 0000 #m 09036452 n 0000 + 03117012 a 0303 + 03117012 a 0101 | a native or inhabitant of Thailand -09734450 18 n 01 Tibetan 0 001 @ 09641757 n 0000 | a native or inhabitant of Tibet -09734535 18 n 01 Togolese 0 002 @ 09634494 n 0000 #m 08759986 n 0000 | a native or inhabitant of Togo -09734639 18 n 01 Tuareg 0 002 @ 09634494 n 0000 #m 09172283 n 0000 | a member of a nomadic Berber people of the Sahara -09734760 18 n 01 Tunisian 0 003 @ 09634494 n 0000 #m 09037394 n 0000 + 03127030 a 0101 | a native or inhabitant of Tunisia -09734885 18 n 01 Turk 0 004 @ 09735258 n 0000 #m 09039411 n 0000 ~ 09735113 n 0000 ~ 09735790 n 0000 | a native or inhabitant of Turkey -09735023 18 n 01 Tyrolean 0 001 @ 09686536 n 0000 | a native or inhabitant of the Tyrol -09735113 18 n 03 Ottoman 0 Ottoman_Turk 0 Osmanli 0 001 @ 09734885 n 0000 | a Turk (especially a Turk who is a member of the tribe of Osman I) -09735258 18 n 01 Turki 0 011 @ 09641757 n 0000 ~ 09734885 n 0000 ~ 09735542 n 0000 ~ 09735654 n 0000 ~ 09735913 n 0000 ~ 09736035 n 0000 ~ 09736312 n 0000 ~ 09736485 n 0000 ~ 09736633 n 0000 ~ 09736798 n 0000 ~ 09737161 n 0000 | any member of the peoples speaking a Turkic language -09735542 18 n 01 Azerbaijani 0 002 @ 09735258 n 0000 + 02655560 a 0101 | a native or inhabitant of Azerbaijan -09735654 18 n 01 Chuvash 0 001 @ 09735258 n 0000 | a member of a people of Turkic speech living in the Volga region in eastern Russia -09735790 18 n 01 effendi 0 001 @ 09734885 n 0000 | a former Turkish term of respect; especially for government officials -09735913 18 n 01 Karakalpak 0 001 @ 09735258 n 0000 | a member of a Turkic people living near Lake Aral in central Asia -09736035 18 n 02 Kazak 0 Kazakh 0 001 @ 09735258 n 0000 | a Muslim who is a member of a Turkic people of western Asia (especially in Kazakstan) -09736181 18 n 01 Kazakhstani 0 003 @ 09641757 n 0000 #m 09019726 n 0000 + 03078445 a 0101 | a native or inhabitant of Kazakhstan -09736312 18 n 03 Kirghiz 0 Kirgiz 0 Khirghiz 0 001 @ 09735258 n 0000 | a member of a people of Turkic speech and Mongolian race inhabiting vast regions of central Siberia -09736485 18 n 03 Turkoman 0 Turkmen 0 Turcoman 0 001 @ 09735258 n 0000 | a member of a Turkic people living in Turkmenistan and neighboring areas -09736633 18 n 03 Uighur 0 Uigur 0 Uygur 0 002 @ 09735258 n 0000 #m 08729626 n 0000 | a member of a people who speak Uighur and live in Xinjiang and adjacent areas -09736798 18 n 05 Uzbek 0 Uzbeg 0 Uzbak 0 Usbek 0 Usbeg 0 001 @ 09735258 n 0000 | a member of a Turkic people of Uzbekistan and neighboring areas -09736945 18 n 01 Ugandan 0 002 @ 09634494 n 0000 #m 09043052 n 0000 | a native or inhabitant of Uganda -09737050 18 n 01 Ukranian 0 002 @ 09686536 n 0000 #m 09014979 n 0000 | a native or inhabitant of the Ukraine -09737161 18 n 01 Yakut 0 001 @ 09735258 n 0000 | a member of a Turkic people of northeastern Siberia (mainly in the Lena river basin) -09737297 18 n 01 Tungusic 0 003 @ 09690208 n 0000 ~ 09737453 n 0000 ~ 09737653 n 0000 | any member of a people speaking a language in the Tungusic family -09737453 18 n 02 Tungus 0 Evenk 0 001 @ 09737297 n 0000 | a member of the Tungus speaking people of Mongolian race who are a nomadic people widely spread over eastern Siberia; related to the Manchu -09737653 18 n 01 Manchu 0 001 @ 09737297 n 0000 | a member of the Manchu speaking people of Mongolian race of Manchuria; related to the Tungus; conquered China in the 17th century -09737835 18 n 03 Khalkha 0 Khalka 0 Kalka 0 001 @ 09644152 n 0000 | the Mongol people living in the central and eastern parts of Outer Mongolia -09737981 18 n 01 Edo 0 001 @ 09724785 n 0000 | a member of a west African people living in the tropical forest region of southern Nigeria -09738121 18 n 01 Igbo 0 002 @ 09724785 n 0000 @ 07967382 n 0000 | a member of the largest ethnic group in southeastern Nigeria; "most Igbo are farmers" -09738275 18 n 01 Yoruba 0 001 @ 09724785 n 0000 | a member of a West African people living chiefly in southwestern Nigeria -09738400 18 n 01 American 1 010 @ 09620078 n 0000 #m 08173030 n 0000 #m 08173165 n 0000 #m 08173289 n 0000 ~ 09709673 n 0000 ~ 09720256 n 0000 ~ 09725229 n 0000 ~ 09731571 n 0000 ~ 10310783 n 0000 ~ 10774440 n 0000 | a native or inhabitant of a North American or Central American or South American country -09738708 18 n 01 American 0 072 @ 09620078 n 0000 #m 09044862 n 0000 + 02927512 a 0101 + 00410406 v 0101 ~ 09637013 n 0000 ~ 09642821 n 0000 ~ 09709531 n 0000 ~ 09740724 n 0000 ~ 09740856 n 0000 ~ 09740954 n 0000 ~ 09741233 n 0000 ~ 09741331 n 0000 ~ 09741432 n 0000 ~ 09741526 n 0000 ~ 09741612 n 0000 ~ 09741722 n 0000 ~ 09741816 n 0000 ~ 09741904 n 0000 ~ 09741999 n 0000 ~ 09742101 n 0000 ~ 09742188 n 0000 ~ 09742315 n 0000 ~ 09742443 n 0000 ~ 09742569 n 0000 ~ 09742844 n 0000 ~ 09742927 n 0000 ~ 09743016 n 0000 ~ 09743112 n 0000 ~ 09743192 n 0000 ~ 09743275 n 0000 ~ 09743383 n 0000 ~ 09743487 n 0000 ~ 09743601 n 0000 ~ 09743690 n 0000 ~ 09743792 n 0000 ~ 09743891 n 0000 ~ 09743986 n 0000 ~ 09744075 n 0000 ~ 09744161 n 0000 ~ 09744262 n 0000 ~ 09744346 n 0000 ~ 09744462 n 0000 ~ 09744587 n 0000 ~ 09744679 n 0000 ~ 09744834 n 0000 ~ 09744945 n 0000 ~ 09745041 n 0000 ~ 09745132 n 0000 ~ 09745229 n 0000 ~ 09745324 n 0000 ~ 09745438 n 0000 ~ 09745535 n 0000 ~ 09745636 n 0000 ~ 09745732 n 0000 ~ 09745834 n 0000 ~ 09745933 n 0000 ~ 09746014 n 0000 ~ 09746101 n 0000 ~ 09746189 n 0000 ~ 09746314 n 0000 ~ 09746438 n 0000 ~ 09746536 n 0000 ~ 09746637 n 0000 ~ 09746725 n 0000 ~ 09746819 n 0000 ~ 09799808 n 0000 ~ 10355942 n 0000 ~ 10359300 n 0000 ~ 10628222 n 0000 ~ 10629647 n 0000 ~ 10716576 n 0000 ~ 10802283 n 0000 | a native or inhabitant of the United States -09740085 18 n 01 American_Revolutionary_leader 0 026 @ 10346198 n 0000 ~i 10808539 n 0000 ~i 10925584 n 0000 ~i 10979079 n 0000 ~i 11023623 n 0000 ~i 11027416 n 0000 ~i 11040381 n 0000 ~i 11060241 n 0000 ~i 11067396 n 0000 ~i 11119476 n 0000 ~i 11123894 n 0000 ~i 11135610 n 0000 ~i 11163160 n 0000 ~i 11191848 n 0000 ~i 11220836 n 0000 ~i 11221107 n 0000 ~i 11225165 n 0000 ~i 11250833 n 0000 ~i 11258501 n 0000 ~i 11274269 n 0000 ~i 11279433 n 0000 ~i 11297756 n 0000 ~i 11317086 n 0000 ~i 11350514 n 0000 ~i 11391587 n 0000 ~i 11393546 n 0000 | a nationalist leader in the American Revolution and in the creation of the United States -09740724 18 n 01 Anglo-American 0 001 @ 09738708 n 0000 | an American who was born in Britain or one whose ancestors were British -09740856 18 n 02 Alabaman 0 Alabamian 0 001 @ 09738708 n 0000 | a native or resident of Alabama -09740954 18 n 01 Alaskan 0 003 @ 09738708 n 0000 + 02609503 a 0101 ~ 09741074 n 0000 | a native or resident of Alaska -09741074 18 n 03 Alaska_Native 0 Alaskan_Native 0 Native_Alaskan 0 001 @ 09740954 n 0000 | a member or descendant of any of the aboriginal peoples of Alaska -09741233 18 n 02 Arizonan 0 Arizonian 0 001 @ 09738708 n 0000 | a native or resident of Arizona -09741331 18 n 02 Arkansan 0 Arkansawyer 0 001 @ 09738708 n 0000 | a native or resident of Arkansas -09741432 18 n 01 Bay_Stater 0 001 @ 09738708 n 0000 | a native or resident of Massachusetts -09741526 18 n 01 Bostonian 0 001 @ 09738708 n 0000 | a native or resident of Boston -09741612 18 n 01 Californian 0 002 @ 09738708 n 0000 + 03052403 a 0101 | a native or resident of California -09741722 18 n 01 Carolinian 0 001 @ 09738708 n 0000 | a native or resident of the Carolinas -09741816 18 n 01 Coloradan 0 001 @ 09738708 n 0000 | a native or resident of Colorado -09741904 18 n 01 Connecticuter 0 001 @ 09738708 n 0000 | a native or resident of Connecticut -09741999 18 n 02 Delawarean 0 Delawarian 0 001 @ 09738708 n 0000 | a native or resident of Delaware -09742101 18 n 01 Floridian 0 001 @ 09738708 n 0000 | a native or resident of Florida -09742188 18 n 01 Franco-American 0 001 @ 09738708 n 0000 | an American who was born in France or whose ancestors were French -09742315 18 n 01 German_American 0 001 @ 09738708 n 0000 | an American who was born in Germany or whose ancestors were German -09742443 18 n 01 Georgian 0 002 @ 09738708 n 0000 + 03067712 a 0101 | a native or resident of the American state of Georgia -09742569 18 n 01 Hawaiian 0 003 @ 09738708 n 0000 + 02738760 a 0101 ~ 09742690 n 0000 | a native or resident of Hawaii -09742690 18 n 01 Native_Hawaiian 0 001 @ 09742569 n 0000 | a member or descendant of the indigenous Polynesian people who lived in the Hawaiian Islands -09742844 18 n 01 Idahoan 0 001 @ 09738708 n 0000 | a native or resident of Idaho -09742927 18 n 01 Illinoisan 0 001 @ 09738708 n 0000 | a native or resident of Illinois -09743016 18 n 02 Indianan 0 Hoosier 0 001 @ 09738708 n 0000 | a native or resident of Indiana -09743112 18 n 01 Iowan 0 001 @ 09738708 n 0000 | a native or resident of Iowa -09743192 18 n 01 Kansan 0 001 @ 09738708 n 0000 | a native or resident of Kansas -09743275 18 n 02 Kentuckian 0 Bluegrass_Stater 0 001 @ 09738708 n 0000 | a native or resident of Kentucky -09743383 18 n 02 Louisianan 0 Louisianian 0 001 @ 09738708 n 0000 | a native or resident of Louisiana -09743487 18 n 02 Mainer 0 Down_Easter 0 002 @ 09738708 n 0000 + 09092497 n 0101 | a native or resident of Maine -09743601 18 n 01 Marylander 0 001 @ 09738708 n 0000 | a native or resident of Maryland -09743690 18 n 02 Michigander 0 Wolverine 0 001 @ 09738708 n 0000 | a native or resident of Michigan -09743792 18 n 02 Minnesotan 0 Gopher 1 001 @ 09738708 n 0000 | a native or resident of Minnesota -09743891 18 n 01 Mississippian 0 001 @ 09738708 n 0000 | a native or resident of Mississippi -09743986 18 n 01 Missourian 0 001 @ 09738708 n 0000 | a native or resident of Missouri -09744075 18 n 01 Montanan 0 001 @ 09738708 n 0000 | a native or resident of Montana -09744161 18 n 02 Nebraskan 0 Cornhusker 1 001 @ 09738708 n 0000 | a native or resident of Nebraska -09744262 18 n 01 Nevadan 0 001 @ 09738708 n 0000 | a native or resident of Nevada -09744346 18 n 02 New_Hampshirite 0 Granite_Stater 0 001 @ 09738708 n 0000 | a native or resident of New Hampshire -09744462 18 n 03 New_Jerseyan 0 New_Jerseyite 0 Garden_Stater 0 001 @ 09738708 n 0000 | a native of resident of New Jersey -09744587 18 n 01 New_Mexican 0 001 @ 09738708 n 0000 | a native or resident of New Mexico -09744679 18 n 01 New_Yorker 0 003 @ 09738708 n 0000 ~ 10042186 n 0000 ~ 10774756 n 0000 | a native or resident of New York (especially of New York City) -09744834 18 n 02 North_Carolinian 0 Tarheel 0 001 @ 09738708 n 0000 | a native or resident of North Carolina -09744945 18 n 01 North_Dakotan 0 001 @ 09738708 n 0000 | a native or resident of North Dakota -09745041 18 n 02 Ohioan 0 Buckeye 0 001 @ 09738708 n 0000 | a native or resident of Ohio -09745132 18 n 02 Oklahoman 0 Sooner 0 001 @ 09738708 n 0000 | a native or resident of Oklahoma -09745229 18 n 02 Oregonian 0 Beaver 0 001 @ 09738708 n 0000 | a native or resident of Oregon -09745324 18 n 02 Pennsylvanian 0 Keystone_Stater 0 001 @ 09738708 n 0000 | a native or resident of Pennsylvania -09745438 18 n 01 Rhode_Islander 0 001 @ 09738708 n 0000 | a native or resident of Rhode Island -09745535 18 n 01 South_Carolinian 0 001 @ 09738708 n 0000 | a native or resident of South Carolina -09745636 18 n 01 South_Dakotan 0 001 @ 09738708 n 0000 | a native or resident of South Dakota -09745732 18 n 02 Tennessean 0 Volunteer 2 001 @ 09738708 n 0000 | a native or resident of Tennessee -09745834 18 n 01 Texan 0 002 @ 09738708 n 0000 + 03124392 a 0101 | a native or resident of Texas -09745933 18 n 01 Utahan 0 001 @ 09738708 n 0000 | a native or resident of Utah -09746014 18 n 01 Vermonter 0 001 @ 09738708 n 0000 | a native or resident of Vermont -09746101 18 n 01 Virginian 0 001 @ 09738708 n 0000 | a native or resident of Virginia -09746189 18 n 01 Washingtonian 0 002 @ 09738708 n 0000 + 03037093 a 0101 | a native or resident of the state of Washington -09746314 18 n 01 Washingtonian 1 002 @ 09738708 n 0000 + 03037236 a 0101 | a native or resident of the city of Washington -09746438 18 n 01 West_Virginian 0 001 @ 09738708 n 0000 | a native or resident of West Virginia -09746536 18 n 02 Wisconsinite 0 Badger 0 001 @ 09738708 n 0000 | a native or resident of Wisconsin -09746637 18 n 01 Wyomingite 0 001 @ 09738708 n 0000 | a native or resident of Wyoming -09746725 18 n 01 Puerto_Rican 0 001 @ 09738708 n 0000 | a native or resident of Puerto Rico -09746819 18 n 03 Yankee 0 Yank 0 Yankee-Doodle 0 001 @ 09738708 n 0000 | an American (especially to non-Americans) -09746936 18 n 01 Uruguayan 0 003 @ 09731571 n 0000 #m 09160295 n 0000 + 02967333 a 0101 | a native or inhabitant of Uruguay -09747062 18 n 01 Venezuelan 0 003 @ 09731571 n 0000 #m 09161803 n 0000 + 02966656 a 0101 | a native or inhabitant of Venezuela -09747191 18 n 02 Vietnamese 0 Annamese 0 003 @ 09641757 n 0000 #m 09163192 n 0000 + 03129222 a 0101 | a native or inhabitant of Vietnam -09747329 18 n 04 Welshman 0 Welsh 0 Cambrian 0 Cymry 0 004 @ 09686536 n 0000 #m 08894456 n 0000 + 03130073 a 0302 + 03130073 a 0201 | a native or resident of Wales -09747495 18 n 01 Gambian 0 003 @ 09634494 n 0000 #m 08945821 n 0000 + 03067153 a 0101 | a native or inhabitant of Gambia -09747618 18 n 01 Maltese 0 002 @ 09686536 n 0000 #m 08966408 n 0000 | a native or inhabitant of Malta -09747722 18 n 01 German 0 010 @ 09686536 n 0000 #m 08766988 n 0000 + 02957469 a 0101 ~ 09747969 n 0000 ~ 09748101 n 0000 ~ 09748239 n 0000 ~ 09748408 n 0000 ~ 09748648 n 0000 ~ 09844457 n 0000 ~i 10822786 n 0000 | a person of German nationality -09747969 18 n 01 Teuton 1 002 @ 09747722 n 0000 ;r 08766988 n 0000 | someone (especially a German) who speaks a Germanic language -09748101 18 n 01 East_German 0 002 #m 08768647 n 0000 @ 09747722 n 0000 | a native or inhabitant of the former republic of East Germany -09748239 18 n 05 Kraut 0 Krauthead 0 Boche 0 Jerry 0 Hun 1 003 @ 09747722 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | offensive term for a person of German descent -09748408 18 n 01 Berliner 0 004 @ 09747722 n 0000 #m 08769645 n 0000 + 08769645 n 0101 ~ 09748541 n 0000 | an inhabitant of Berlin -09748541 18 n 01 West_Berliner 0 002 @ 09748408 n 0000 #m 08769836 n 0000 | an inhabitant of West Berlin -09748648 18 n 01 Prussian 0 003 @ 09747722 n 0000 #m 08775784 n 0000 ~ 09748770 n 0000 | a German inhabitant of Prussia -09748770 18 n 01 Junker 0 001 @ 09748648 n 0000 | member of the Prussian aristocracy noted especially for militarism -09748889 18 n 01 Ghanian 0 003 @ 09634494 n 0000 #m 08946187 n 0000 + 03068473 a 0103 | a native or inhabitant of Ghana -09749011 18 n 01 Gibraltarian 0 003 @ 09686536 n 0000 #m 09028841 n 0000 + 03068737 a 0101 | a native or inhabitant of Gibraltar -09749142 18 n 01 Glaswegian 0 003 @ 09730533 n 0000 #m 08892971 n 0000 + 02971311 a 0101 | an inhabitant of Glasgow -09749260 18 n 01 Grenadian 0 003 @ 10774440 n 0000 #m 08946909 n 0000 + 03070697 a 0101 | a native or inhabitant of Grenada -09749386 18 n 01 Guinean 0 003 @ 09634494 n 0000 #m 08947319 n 0000 + 03071201 a 0101 | a native or inhabitant of Guinea -09749509 18 n 01 Rwandan 0 002 @ 09634494 n 0000 #m 08815046 n 0000 | a native or inhabitant of Rwanda -09749614 18 n 01 Singaporean 0 004 @ 09641757 n 0000 #m 08997487 n 0000 + 03117835 a 0101 + 03117653 a 0101 | an inhabitant of Singapore -09749753 18 n 01 Slovenian 0 003 @ 09686536 n 0000 #m 08818444 n 0000 + 02964291 a 0101 | a native or inhabitant of Slovenia -09749880 18 n 02 Somalian 0 Somali 0 003 @ 09634494 n 0000 #m 08998560 n 0000 + 03119182 a 0202 | a member of a tall dark (mostly Muslim) people inhabiting Somalia -09750046 18 n 01 Sri_Lankan 0 002 @ 09641757 n 0000 #m 08719100 n 0000 | a native or inhabitant of Sri Lanka -09750157 18 n 01 Sumatran 0 003 @ 09714264 n 0000 #m 08908954 n 0000 + 03121573 a 0101 | a native or inhabitant of Sumatra -09750282 18 n 01 Papuan 0 002 @ 09714264 n 0000 #m 08844279 n 0000 | a native or inhabitant of Papua New Guinea or New Guinea -09750410 18 n 01 Tongan 0 002 @ 09727826 n 0000 #m 09037133 n 0000 | a Polynesian native or inhabitant of Tonga -09750524 18 n 03 Trojan 0 Dardan 0 Dardanian 0 002 @ 09641757 n 0000 #m 08788887 n 0000 | a native of ancient Troy -09750641 18 n 01 Walloon 0 002 @ 09694109 n 0000 #m 08849753 n 0000 | a member of the French-speaking people living in Belgium -09750770 18 n 01 Yemeni 0 003 @ 09729530 n 0000 #m 09164561 n 0000 + 03130962 a 0101 | a native or inhabitant of Yemen -09750891 18 n 04 Yugoslav 0 Jugoslav 0 Yugoslavian 0 Jugoslavian 0 004 @ 09686536 n 0000 #m 08816236 n 0000 + 02962013 a 0301 + 02962013 a 0102 | a native or inhabitant of Yugoslavia -09751076 18 n 02 Serbian 0 Serb 0 002 @ 09676884 n 0000 #m 08816969 n 0000 | a member of a Slavic people who settled in Serbia and neighboring areas in the 6th and 7th centuries -09751256 18 n 02 Croatian 0 Croat 0 003 @ 09676884 n 0000 #m 08815858 n 0000 + 02964107 a 0101 | a member of the Slavic people living in Croatia -09751403 18 n 01 Sorbian 0 002 @ 09676884 n 0000 #m 08766988 n 0000 | a speaker of Sorbian -09751496 18 n 01 Xhosa 0 002 @ 09634494 n 0000 #m 08999482 n 0000 | a member of the Negroid people of southern South Africa -09751622 18 n 02 Zairese 0 Zairean 0 004 @ 09634494 n 0000 #m 08734385 n 0000 + 03131116 a 0201 + 03131116 a 0102 | a native or inhabitant of Zaire -09751772 18 n 01 Zambian 0 003 @ 09634494 n 0000 #m 09165613 n 0000 + 03131331 a 0101 | a native or inhabitant of Zambia -09751895 18 n 01 Zimbabwean 0 003 @ 09634494 n 0000 #m 09167101 n 0000 + 03131750 a 0101 | a native or inhabitant of Zimbabwe -09752023 18 n 01 Zulu 0 002 @ 09634494 n 0000 #m 08971693 n 0000 | a member of the tall Negroid people of eastern South Africa; some live in KwaZulu-Natal under the traditional clan system but many now work in the cities -09752246 18 n 02 Aries 0 Ram 0 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Aries -09752381 18 n 02 Taurus 0 Bull 3 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Taurus -09752519 18 n 02 Gemini 0 Twin 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Gemini -09752657 18 n 02 Cancer 0 Crab 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Cancer -09752795 18 n 02 Leo 0 Lion 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Leo -09752927 18 n 02 Virgo 0 Virgin 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Virgo -09753065 18 n 02 Libra 0 Balance 0 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Libra -09753204 18 n 02 Scorpio 0 Scorpion 0 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Scorpio -09753348 18 n 02 Sagittarius 0 Archer 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Sagittarius -09753498 18 n 02 Capricorn 0 Goat 1 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Capricorn -09753642 18 n 02 Aquarius 0 Water_Bearer 0 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Aquarius -09753792 18 n 02 Pisces 0 Fish 0 002 @ 00007846 n 0000 ;c 05778131 n 0000 | (astrology) a person who is born while the sun is in Pisces -09753930 18 n 01 abandoned_person 0 002 @ 09630641 n 0000 ~ 09899438 n 0000 | someone for whom hope has been abandoned -09754051 18 n 01 abator 0 002 @ 00007846 n 0000 + 00245289 v 0102 | a person who abates a nuisance -09754152 18 n 01 abbe 0 001 @ 09754404 n 0000 | a French abbot -09754217 18 n 03 abbess 0 mother_superior 0 prioress 0 005 @ 10675876 n 0000 + 02598768 a 0101 ~ 10332861 n 0000 ~i 10864204 n 0000 ~i 11039577 n 0000 | the superior of a group of nuns -09754404 18 n 02 abbot 0 archimandrite 0 003 @ 10675876 n 0000 + 02598768 a 0101 ~ 09754152 n 0000 | the superior of an abbey of monks -09754541 18 n 01 abjurer 0 002 @ 00007846 n 0000 + 00798717 v 0101 | a person who abjures -09754633 18 n 01 abnegator 0 003 @ 10025730 n 0000 + 01116275 v 0101 + 00758042 v 0101 | one who gives up or relinquishes or renounces something -09754780 18 n 02 abominator 0 loather 0 003 @ 10162194 n 0000 + 01774426 v 0202 + 01774426 v 0103 | one who hates or loathes -09754907 18 n 02 abridger 0 abbreviator 0 004 @ 10513120 n 0000 + 00243900 v 0203 + 00243749 v 0201 + 00243900 v 0101 | one who shortens or abridges or condenses a written work -09755086 18 n 02 abstractor 0 abstracter 0 003 @ 10794014 n 0000 + 01008288 v 0201 + 01008288 v 0101 | one who makes abstracts or summarizes information -09755241 18 n 01 absconder 0 003 @ 10114897 n 0000 + 02073714 v 0101 ~ 09783130 n 0000 | a fugitive who runs away and hides to avoid arrest or prosecution -09755398 18 n 01 absolutist 0 005 @ 10016103 n 0000 + 03139045 a 0101 + 14443912 n 0101 + 08440630 n 0102 + 06213688 n 0101 | one who advocates absolutism -09755555 18 n 01 absolver 0 002 @ 10399130 n 0000 + 00903711 v 0102 | someone who grants absolution -09755657 18 n 01 abdicator 0 002 @ 10502046 n 0000 + 02379198 v 0101 | one who formally relinquishes an office or responsibility -09755788 18 n 01 abecedarian 0 001 @ 10363913 n 0000 | a novice learning the rudiments of some subject -09755893 18 n 01 aberrant 0 003 @ 09606527 n 0000 + 01596122 a 0101 + 02662076 v 0101 | one whose behavior departs substantially from the norm of a group -09756049 18 n 02 abettor 0 abetter 0 003 @ 09759875 n 0000 + 02549211 v 0201 + 02549211 v 0101 | one who helps or encourages or incites another -09756195 18 n 01 abhorrer 0 002 @ 10597234 n 0000 + 01774426 v 0101 | a signer of a 1679 address to Charles II in which those who petitioned for the reconvening of parliament were condemned and abhorred -09756400 18 n 01 abiogenist 0 002 @ 09848489 n 0000 + 11420376 n 0101 | a believer in abiogenesis -09756500 18 n 02 able_seaman 0 able-bodied_seaman 0 001 @ 10294602 n 0000 | a seaman in the merchant marine; trained in special skills -09756637 18 n 02 abolitionist 0 emancipationist 0 012 @ 10515194 n 0000 + 01247413 n 0201 + 05958208 n 0101 ~i 10841065 n 0000 ~i 10866217 n 0000 ~i 10941515 n 0000 ~i 10991583 n 0000 ~i 11320405 n 0000 ~i 11331192 n 0000 ~i 11350705 n 0000 ~i 11350959 n 0000 ~i 11380655 n 0000 | a reformer who favors abolishing slavery -09756961 18 n 01 abomination 0 002 @ 00007846 n 0000 + 01774426 v 0103 | a person who is loathsome or disgusting -09757076 18 n 01 autochthon 0 001 @ 09627462 n 0000 | the earliest known inhabitants of a region -09757175 18 n 01 abortionist 0 002 @ 10020890 n 0000 + 00230324 n 0101 | a person (who should be a doctor) who terminates pregnancies -09757311 18 n 01 abrogator 0 002 @ 09824609 n 0000 + 02478584 v 0101 | an authority or official empowered to abolish or annul or repeal -09757449 18 n 02 abseiler 0 rappeller 0 001 @ 10006748 n 0000 | a person who descends down a nearly vertical face by using a doubled rope that is wrapped around the body and attached to some high point -09757653 18 n 01 absentee 0 006 @ 09629752 n 0000 + 00421535 v 0101 ~ 09757836 n 0000 ~ 09999683 n 0000 ~ 10071332 n 0000 ~ 10731732 n 0000 | one that is absent or not in residence -09757836 18 n 01 AWOL 0 002 @ 09757653 n 0000 + 01848171 a 0102 | one who is away or absent without leave -09757944 18 n 03 abstainer 0 abstinent 0 nondrinker 0 006 @ 00007846 n 0000 ! 10034201 n 0301 + 00009346 a 0201 + 01196037 v 0201 + 01196037 v 0101 ~ 10697282 n 0000 | a person who refrains from drinking intoxicating beverages -09758173 18 n 02 abstainer 1 ascetic 0 008 @ 09628382 n 0000 + 00009618 a 0201 + 02644177 a 0201 + 00009618 a 0202 + 02644177 a 0202 + 01196037 v 0101 ~ 10494195 n 0000 ~ 10667596 n 0000 | someone who practices self denial as a spiritual discipline -09758424 18 n 02 abstractionist 0 abstract_artist 0 007 @ 10391653 n 0000 + 01980557 a 0102 + 05940869 n 0101 + 02669079 n 0101 ~ 10678841 n 0000 ~i 10811352 n 0000 ~i 11185175 n 0000 | a painter of abstract pictures -09758643 18 n 02 abuser 0 maltreater 0 004 @ 09633969 n 0000 + 02516594 v 0202 + 02516594 v 0103 + 00845299 v 0101 | someone who abuses -09758781 18 n 01 abutter 0 002 @ 10245639 n 0000 + 01466978 v 0104 | the owner of contiguous property -09758885 18 n 01 academic_administrator 0 005 @ 09770949 n 0000 ~ 09996784 n 0000 ~ 10468750 n 0000 ~ 10486468 n 0000 ~ 10517032 n 0000 | an administrator in a college or university -09759069 18 n 03 academician 0 academic 0 faculty_member 0 007 @ 10045713 n 0000 + 02599939 a 0201 + 08280124 n 0101 + 08277805 n 0101 + 08279298 n 0101 + 02669885 n 0101 ~ 10480730 n 0000 | an educator who works at a college or university -09759311 18 n 02 academician 1 schoolman 0 005 @ 10557854 n 0000 + 08280124 n 0101 + 08277805 n 0101 + 08279298 n 0101 + 02669885 n 0101 | a scholar who is skilled in academic disputation -09759501 18 n 01 academician 2 005 @ 10183757 n 0000 #m 08280124 n 0000 + 00588473 n 0101 + 08280124 n 0101 + 02669885 n 0101 | someone elected to honorary membership in an academy -09759684 18 n 01 acceptor 0 001 @ 10032342 n 0000 | the person (or institution) who accepts a check or draft and becomes responsible for paying the party named in the draft when it matures -09759875 18 n 02 accessory 0 accessary 0 006 @ 09977660 n 0000 ~ 09756049 n 0000 ~ 09760080 n 0000 ~ 09760290 n 0000 ~ 09760476 n 0000 ~ 09953483 n 0000 | someone who helps another person commit a crime -09760080 18 n 01 accessory_after_the_fact 0 001 @ 09759875 n 0000 | a person who gives assistance or comfort to someone known to be a felon or known to be sought in connection with the commission of a felony -09760290 18 n 01 accessory_before_the_fact 0 001 @ 09759875 n 0000 | a person who procures or advises or commands the commission of a felony but who is not present at its perpetration -09760476 18 n 01 accessory_during_the_fact 0 001 @ 09759875 n 0000 | a person who witnesses a crime but does not try to prevent it -09760609 18 n 01 companion 1 002 @ 09821831 n 0000 + 02716767 v 0102 | one paid to accompany or assist or live with another -09760735 18 n 01 accommodation_endorser 0 001 @ 10057271 n 0000 | a person who endorses a promissory note without compensation or benefit but simply as a favor to the borrower -09760913 18 n 02 accompanist 0 accompanyist 0 002 @ 10340312 n 0000 + 01728355 v 0102 | a person who provides musical accompaniment (usually on a piano) -09761068 18 n 02 accomplice 0 confederate 0 005 @ 09815790 n 0000 + 02476485 a 0202 + 02434541 v 0201 + 02470685 v 0202 ~ 09995573 n 0000 | a person who joins with another in carrying out some plan (especially an unethical or illegal plan) -09761310 18 n 01 accordionist 0 001 @ 10340312 n 0000 | a musician who plays the accordion -09761403 18 n 03 accountant 0 comptroller 0 controller 0 013 @ 09882716 n 0000 + 00591006 n 0301 + 00663160 v 0301 + 00590806 n 0201 + 00588598 n 0101 + 00618734 n 0101 + 02265231 v 0101 ~ 09822955 n 0000 ~ 09845016 n 0000 ~ 09866115 n 0000 ~ 09905185 n 0000 ~ 09910556 n 0000 ~ 09967816 n 0000 | someone who maintains and audits business accounts -09761753 18 n 05 account_executive 0 account_representative 0 registered_representative 0 customer's_broker 0 customer's_man 0 001 @ 09882716 n 0000 | someone in charge of a client's account for an advertising agency or brokerage or other service business -09762011 18 n 01 accused 0 001 @ 09762101 n 0000 | a defendant in a criminal proceeding -09762101 18 n 02 defendant 0 suspect 1 007 @ 10266848 n 0000 ;c 08441203 n 0000 + 00924873 v 0201 + 02581675 v 0101 ! 10437852 n 0101 ~ 09762011 n 0000 ~ 09933411 n 0000 | a person or institution against whom an action is brought in a court of law; the person being sued or accused -09762385 18 n 01 accuser 0 003 @ 09615465 n 0000 + 00843468 v 0102 + 00842989 v 0101 | someone who imputes guilt or blame -09762509 18 n 0f ace 0 adept 0 champion 3 sensation 0 maven 0 mavin 0 virtuoso 0 genius 1 hotshot 0 star 1 superstar 0 whiz 0 whizz 0 wizard 1 wiz 0 006 @ 09617867 n 0000 + 01720980 v 0a01 + 02226979 a 0704 + 02226162 a 0201 + 02522581 v 0102 ~ 10720197 n 0000 | someone who is dazzlingly skilled in any field -09762821 18 n 04 achiever 0 winner 2 success 0 succeeder 0 011 @ 00007846 n 0000 + 02524171 v 0401 + 02524171 v 0202 + 02288295 v 0202 + 02526085 v 0101 ! 10273064 n 0102 ~ 10092880 n 0000 ~ 10145081 n 0000 ~ 10174589 n 0000 ~ 10346392 n 0000 ~ 10610699 n 0000 | a person with a record of successes; "his son would never be the achiever that his father was"; "only winners need apply"; "if you want to be a success you have to dress like a success" -09763272 18 n 01 acid_head 0 001 @ 10162780 n 0000 | someone who takes LSD -09763349 18 n 01 acolyte 0 004 @ 09927451 n 0000 @ 13950812 n 0000 ~ 09785891 n 0000 ~ 10710171 n 0000 | someone who assists a priest or minister in a liturgical service; a cleric ordained in the highest of the minor orders in the Roman Catholic Church but not in the Anglican Church or the Eastern Orthodox Churches -09763668 18 n 01 acoustician 0 002 @ 10428004 n 0000 + 06094774 n 0101 | a physicist who specializes in acoustics -09763784 18 n 02 acquaintance 0 friend 2 013 @ 00007846 n 0000 + 13931145 n 0201 ! 10661002 n 0101 + 13930245 n 0102 ~ 09880075 n 0000 ~ 09890411 n 0000 ~ 09956147 n 0000 ~ 10056611 n 0000 ~ 10181445 n 0000 ~ 10311506 n 0000 ~ 10432053 n 0000 ~ 10560106 n 0000 ! 10661216 n 0101 | a person with whom you are acquainted; "I have trouble remembering the names of all my acquaintances"; "we are friends of the family" -09764201 18 n 01 acquirer 0 005 @ 00007846 n 0000 + 02210855 v 0102 ~ 09627906 n 0000 ~ 09802641 n 0000 ~ 10479328 n 0000 | a person who acquires something (usually permanently) -09764381 18 n 01 acrobat 0 006 @ 09820263 n 0000 ~ 09764598 n 0000 ~ 09833751 n 0000 ~ 09923561 n 0000 ~ 09960545 n 0000 ~ 10115946 n 0000 | an athlete who performs acts requiring skill and agility and coordination -09764598 18 n 01 aerialist 0 002 @ 09764381 n 0000 ~ 10539015 n 0000 | an acrobat who performs in the air (as on a rope or trapeze) -09764732 18 n 01 action_officer 0 001 @ 09899134 n 0000 | the case officer designated to perform an act during a clandestine operation (especially in a hostile area) -09764900 18 n 01 active 0 003 @ 00007846 n 0000 + 01515280 a 0101 + 00038750 a 0101 | a person who is a participating member of an organization; "the club issues a list of members, both the actives and the retirees" -09765118 18 n 01 active_citizen 0 001 @ 09923673 n 0000 | a citizen who takes an active role in the community (as in crime prevention and neighborhood watch) -09765278 18 n 05 actor 0 histrion 0 player 0 thespian 0 role_player 0 097 @ 10415638 n 0000 + 03125227 a 0401 + 01719921 v 0302 + 01719302 v 0302 + 01719921 v 0101 + 01719302 v 0101 ~ 09767700 n 0000 ~ 09840050 n 0000 ~ 09909363 n 0000 ~ 09940725 n 0000 ~ 10158010 n 0000 ~ 10167361 n 0000 ~ 10206629 n 0000 ~ 10251517 n 0000 ~ 10318892 n 0000 ~ 10438470 n 0000 ~ 10514121 n 0000 ~ 10556235 n 0000 ~ 10564098 n 0000 ~ 10648696 n 0000 ~ 10676569 n 0000 ~ 10721612 n 0000 ~ 10737103 n 0000 ~ 10740732 n 0000 ~ 10764622 n 0000 ~i 10814953 n 0000 ~i 10826352 n 0000 ~i 10835218 n 0000 ~i 10835709 n 0000 ~i 10836029 n 0000 ~i 10855047 n 0000 ~i 10857540 n 0000 ~i 10871926 n 0000 ~i 10875107 n 0000 ~i 10878844 n 0000 ~i 10895549 n 0000 ~i 10909303 n 0000 ~i 10913641 n 0000 ~i 10916325 n 0000 ~i 10916731 n 0000 ~i 10926066 n 0000 ~i 10930913 n 0000 ~i 10931059 n 0000 ~i 10943256 n 0000 ~i 10965361 n 0000 ~i 10965550 n 0000 ~i 10974033 n 0000 ~i 10986437 n 0000 ~i 10991415 n 0000 ~i 10998305 n 0000 ~i 10998860 n 0000 ~i 11011398 n 0000 ~i 11011764 n 0000 ~i 11019269 n 0000 ~i 11028074 n 0000 ~i 11031995 n 0000 ~i 11039690 n 0000 ~i 11054442 n 0000 ~i 11059438 n 0000 ~i 11062285 n 0000 ~i 11089669 n 0000 ~i 11096801 n 0000 ~i 11098223 n 0000 ~i 11098380 n 0000 ~i 11099729 n 0000 ~i 11119061 n 0000 ~i 11124300 n 0000 ~i 11125840 n 0000 ~i 11136214 n 0000 ~i 11138924 n 0000 ~i 11144431 n 0000 ~i 11145199 n 0000 ~i 11159214 n 0000 ~i 11159920 n 0000 ~i 11163041 n 0000 ~i 11182966 n 0000 ~i 11189829 n 0000 ~i 11205246 n 0000 ~i 11214320 n 0000 ~i 11218473 n 0000 ~i 11240609 n 0000 ~i 11256125 n 0000 ~i 11261184 n 0000 ~i 11265416 n 0000 ~i 11289709 n 0000 ~i 11292105 n 0000 ~i 11302062 n 0000 ~i 11304811 n 0000 ~i 11312709 n 0000 ~i 11318171 n 0000 ~i 11321051 n 0000 ~i 11322627 n 0000 ~i 11347519 n 0000 ~i 11348160 n 0000 ~i 11358065 n 0000 ~i 11377712 n 0000 ~i 11380768 n 0000 | a theatrical performer -09767197 18 n 03 actor 1 doer 0 worker 2 011 @ 00007846 n 0000 + 02413480 v 0301 + 02561995 v 0201 + 01712704 v 0203 + 01095899 v 0101 ~ 10002477 n 0000 ~ 10040945 n 0000 ~ 10056103 n 0000 ~ 10135709 n 0000 ~ 10291822 n 0000 ~ 10462429 n 0000 | a person who acts and gets things done; "he's a principal actor in this affair"; "when you want something done get a doer"; "he's a miracle worker" -09767592 18 n 02 actor's_agent 0 theatrical_agent 0 001 @ 09777975 n 0000 | a business agent for an actor -09767700 18 n 01 actress 0 053 @ 09765278 n 0000 ~ 10251417 n 0000 ~ 10649197 n 0000 ~ 10721819 n 0000 ~i 10832731 n 0000 ~i 10833304 n 0000 ~i 10835450 n 0000 ~i 10835866 n 0000 ~i 10846400 n 0000 ~i 10847994 n 0000 ~i 10851987 n 0000 ~i 10911534 n 0000 ~i 10914548 n 0000 ~i 10924347 n 0000 ~i 10935304 n 0000 ~i 10946481 n 0000 ~i 10974136 n 0000 ~i 10974271 n 0000 ~i 10989801 n 0000 ~i 10991165 n 0000 ~i 11001422 n 0000 ~i 11029132 n 0000 ~i 11036405 n 0000 ~i 11043980 n 0000 ~i 11060535 n 0000 ~i 11077195 n 0000 ~i 11099923 n 0000 ~i 11117108 n 0000 ~i 11120530 n 0000 ~i 11124831 n 0000 ~i 11125546 n 0000 ~i 11132117 n 0000 ~i 11138180 n 0000 ~i 11159819 n 0000 ~i 11175748 n 0000 ~i 11186207 n 0000 ~i 11201941 n 0000 ~i 11234643 n 0000 ~i 11268667 n 0000 ~i 11296775 n 0000 ~i 11299501 n 0000 ~i 11304669 n 0000 ~i 11322068 n 0000 ~i 11322178 n 0000 ~i 11326433 n 0000 ~i 11330504 n 0000 ~i 11333390 n 0000 ~i 11336544 n 0000 ~i 11341267 n 0000 ~i 11376069 n 0000 ~i 11382278 n 0000 ~i 11395895 n 0000 ~i 11404280 n 0000 | a female actor -09768753 18 n 01 adder 0 001 @ 09887034 n 0000 | a person who adds numbers -09768830 18 n 01 addict 0 005 @ 10036266 n 0000 + 01165290 v 0101 ~ 09886700 n 0000 ~ 10035952 n 0000 ~ 10634723 n 0000 | someone who is physiologically dependent on a substance; abrupt deprivation of the substance produces withdrawal symptoms -09769076 18 n 05 addict 1 nut 1 freak 1 junkie 1 junky 1 003 @ 10059582 n 0000 + 01165290 v 0101 ~ 10153865 n 0000 | someone who is so ardently devoted to something that it resembles an addiction; "a golf addict"; "a car nut"; "a bodybuilding freak"; "a news junkie" -09769345 18 n 01 addressee 0 006 @ 09627906 n 0000 + 01150981 v 0101 + 00990812 v 0101 + 00989201 v 0101 + 00990655 v 0101 + 00897564 v 0101 | one to whom something is addressed -09769525 18 n 01 adducer 0 001 @ 09615336 n 0000 | a discussant who offers an example or a reason or a proof -09769636 18 n 01 adjudicator 0 004 @ 00007846 n 0000 + 02501278 v 0102 ~ 10225219 n 0000 ~ 10372076 n 0000 | a person who studies and settles conflicts and disputes -09769803 18 n 01 adjunct 0 002 @ 09816771 n 0000 + 00793250 a 0101 | a person who is an assistant or subordinate to another -09769929 18 n 05 adjuster 0 adjustor 0 claims_adjuster 0 claims_adjustor 0 claim_agent 0 003 @ 10215623 n 0000 + 00699334 v 0201 + 00296178 v 0101 | one who investigates insurance claims or claims for damages and recommends an effective settlement -09770179 18 n 03 adjutant 0 aide 1 aide-de-camp 0 003 @ 10317007 n 0000 ;c 08199025 n 0000 ~ 09770359 n 0000 | an officer who acts as military assistant to a more senior officer -09770359 18 n 01 adjutant_general 0 001 @ 09770179 n 0000 | a general's adjutant; chief administrative officer -09770472 18 n 02 administrator 2 executive 1 009 @ 10162991 n 0000 + 02431971 v 0102 ~ 09943811 n 0000 ~ 10015607 n 0000 ~ 10465128 n 0000 ~ 10573829 n 0000 ~ 10730262 n 0000 ~i 11252222 n 0000 ~i 11323094 n 0000 | someone who manages a government agency or department -09770743 18 n 01 administrator 1 002 @ 10086074 n 0000 + 02431971 v 0102 | the party appointed by a probate court to distribute the estate of someone who dies without a will or without naming an executor -09770949 18 n 02 administrator 0 decision_maker 0 009 @ 10162991 n 0000 + 02431971 v 0102 ~ 09758885 n 0000 ~ 10014939 n 0000 ~ 10069645 n 0000 ~ 10187990 n 0000 ~ 10244913 n 0000 ~ 10574958 n 0000 ~ 10751026 n 0000 | someone who administers a business -09771204 18 n 02 admiral 0 full_admiral 0 005 @ 10094584 n 0000 ~i 10852961 n 0000 ~i 10942866 n 0000 ~i 11203059 n 0000 ~i 11401797 n 0000 | the supreme commander of a fleet; ranks above a vice admiral and below a fleet admiral -09771435 18 n 02 admirer 0 adorer 0 007 @ 09622302 n 0000 + 01777817 v 0201 + 02164694 v 0101 + 01827858 v 0101 ~ 10078131 n 0000 ~ 10674130 n 0000 ~ 10792335 n 0000 | someone who admires a young woman; "she had many admirers" -09771664 18 n 01 admirer 2 005 @ 00007846 n 0000 + 02164694 v 0101 + 01827858 v 0101 ~ 10747548 n 0000 ~ 10789534 n 0000 | a person who admires; someone who esteems or respects or approves -09771855 18 n 03 admonisher 0 monitor 0 reminder 0 003 @ 09614684 n 0000 + 00870577 v 0103 + 00871195 v 0102 | someone who gives a warning so that a mistake can be avoided -09772029 18 n 04 adolescent 0 stripling 0 teenager 0 teen 0 010 @ 09622049 n 0000 + 01647983 a 0101 + 01490061 a 0101 + 00252710 v 0101 ~ 09912765 n 0000 ~ 10324357 n 0000 ~ 10390050 n 0000 ~ 10492894 n 0000 ~ 10535706 n 0000 ~ 10804287 n 0000 | a juvenile between the onset of puberty and maturity -09772330 18 n 01 adoptee 0 002 @ 00007846 n 0000 + 00413195 v 0101 | someone (such as a child) who has been adopted -09772448 18 n 02 adoptive_parent 0 adopter 0 002 @ 10399491 n 0000 + 00413195 v 0201 | a person who adopts a child of other parents as his or her own child -09772606 18 n 01 adulterator 0 002 @ 09609871 n 0000 + 00487748 v 0102 | a changer who lessens the purity or effectiveness of a substance -09772746 18 n 02 adulterer 0 fornicator 0 005 @ 10257647 n 0000 + 01427278 v 0201 + 00848466 n 0101 ~ 09772930 n 0000 ~ 10774223 n 0000 | someone who commits adultery or fornication -09772930 18 n 08 adulteress 0 fornicatress 0 hussy 0 jade 0 loose_woman 0 slut 0 strumpet 0 trollop 0 001 @ 09772746 n 0000 | a woman adulterer -09773076 18 n 01 advancer 0 002 @ 10335931 n 0000 + 01992503 v 0101 | someone who advances -09773169 18 n 01 adventuress 0 001 @ 09606009 n 0000 | a woman adventurer -09773245 18 n 05 adversary 0 antagonist 0 opponent 0 opposer 0 resister 1 018 @ 00007846 n 0000 + 02583545 v 0501 + 02378623 v 0402 + 01091427 v 0402 + 00775831 v 0401 + 00776059 v 0401 + 01246148 a 0301 + 00775831 v 0301 + 01818680 a 0201 + 13980288 n 0203 + 13860548 n 0201 + 07548366 n 0201 ! 09779280 n 0201 ~ 10038929 n 0000 ~ 10055847 n 0000 ~ 10275848 n 0000 ~ 10785869 n 0000 ~i 10819285 n 0000 | someone who offers opposition -09773682 18 n 02 adverse_witness 0 hostile_witness 0 001 @ 10786517 n 0000 | a witness whose relationship to the opposing party is such that his or her testimony may be prejudiced against the opposing party; "a hostile witness can be asked leading questions and cross-examined" -09773962 18 n 03 advertiser 0 advertizer 0 adman 0 006 @ 10490699 n 0000 + 00976653 v 0202 + 00976653 v 0101 ~ 10190644 n 0000 ~ 10482220 n 0000 ~ 10718349 n 0000 | someone whose business is advertising -09774167 18 n 01 advisee 0 002 @ 00007846 n 0000 + 00872886 v 0102 | someone who receives advice -09774266 18 n 03 adviser 0 advisor 0 consultant 0 018 @ 09824361 n 0000 + 00631712 n 0301 + 00876442 v 0301 + 00872886 v 0202 + 00872886 v 0102 ~ 09788237 n 0000 ~ 09830759 n 0000 ~ 09846142 n 0000 ~ 09968845 n 0000 ~ 09971385 n 0000 ~ 10080206 n 0000 ~ 10215815 n 0000 ~ 10289338 n 0000 ~ 10305391 n 0000 ~ 10316164 n 0000 ~ 10574840 n 0000 ~ 10649047 n 0000 ~ 10712835 n 0000 | an expert who gives advice; "an adviser helped students select their courses"; "the United States sent military advisors to Guatemala" -09774783 18 n 04 advocate 0 advocator 0 proponent 0 exponent 0 042 @ 00007846 n 0000 + 00876332 v 0301 + 00827730 v 0202 + 00827730 v 0102 ~ 09798534 n 0000 ~ 09959387 n 0000 ~ 09992331 n 0000 ~ 10002031 n 0000 ~ 10082997 n 0000 ~ 10133210 n 0000 ~ 10191388 n 0000 ~ 10197392 n 0000 ~ 10211962 n 0000 ~ 10217038 n 0000 ~ 10217684 n 0000 ~ 10219680 n 0000 ~ 10257524 n 0000 ~ 10292622 n 0000 ~ 10297140 n 0000 ~ 10346015 n 0000 ~ 10352557 n 0000 ~ 10355306 n 0000 ~ 10365984 n 0000 ~ 10402086 n 0000 ~ 10402285 n 0000 ~ 10439629 n 0000 ~ 10458356 n 0000 ~ 10466198 n 0000 ~ 10485883 n 0000 ~ 10522495 n 0000 ~ 10532886 n 0000 ~ 10543713 n 0000 ~ 10567979 n 0000 ~ 10574538 n 0000 ~ 10580030 n 0000 ~ 10638385 n 0000 ~ 10672908 n 0000 ~ 10677713 n 0000 ~ 10678662 n 0000 ~ 10697782 n 0000 ~ 10705345 n 0000 ~ 10738215 n 0000 | a person who pleads for a cause or propounds an idea -09775663 18 n 06 advocate 1 counsel 0 counselor 0 counsellor 0 counselor-at-law 0 pleader 0 006 @ 10249950 n 0000 ;c 08441203 n 0000 + 01016316 v 0601 + 00591236 n 0402 + 00591236 n 0301 + 00872886 v 0203 | a lawyer who pleads cases in court -09775907 18 n 01 aeronautical_engineer 0 003 @ 09615807 n 0000 ~i 11182825 n 0000 ~i 11385442 n 0000 | an engineer concerned with the design and construction of aircraft -09776079 18 n 01 aerospace_engineer 0 001 @ 09615807 n 0000 | an engineer of aircraft and space vehicles -09776186 18 n 01 aerophile 0 001 @ 10077593 n 0000 | a lover of aviation -09776261 18 n 01 affiant 0 001 @ 00007846 n 0000 | a person who makes an affidavit -09776346 18 n 01 affiliate 0 002 @ 09816771 n 0000 + 02435311 v 0101 | a subordinate or subsidiary associate; a person who is affiliated with another or with an organization -09776522 18 n 01 affine 0 003 @ 10236304 n 0000 ;c 06143546 n 0000 + 01971519 a 0101 | (anthropology) kin by marriage -09776642 18 n 01 affluent 0 002 @ 10529231 n 0000 + 02022167 a 0101 | an affluent person; a person who is financially well off; "the so-called emerging affluents" -09776807 18 n 01 aficionado 0 001 @ 10077593 n 0000 | a serious devotee of some particular music genre or musical performer -09776933 18 n 01 aficionado 1 001 @ 10639925 n 0000 | a fan of bull fighting -09777012 18 n 03 agent 1 factor 0 broker 0 012 @ 09882716 n 0000 #m 08069878 n 0000 + 02261464 v 0301 + 02607909 a 0101 ~ 09608377 n 0000 ~ 10209731 n 0000 ~ 10215953 n 0000 ~ 10509810 n 0000 ~ 10589785 n 0000 ~ 10657444 n 0000 ~ 10686885 n 0000 ~ 10726669 n 0000 | a businessman who buys or sells for another in exchange for a commission -09777353 18 n 01 agent 2 023 @ 10522035 n 0000 + 02607909 a 0101 + 14000403 n 0103 ~ 09777975 n 0000 ~ 09778144 n 0000 ~ 09832978 n 0000 ~ 09865954 n 0000 ~ 10005721 n 0000 ~ 10054875 n 0000 ~ 10111463 n 0000 ~ 10133644 n 0000 ~ 10158608 n 0000 ~ 10317963 n 0000 ~ 10357207 n 0000 ~ 10400618 n 0000 ~ 10486909 n 0000 ~ 10493922 n 0000 ~ 10569411 n 0000 ~ 10590452 n 0000 ~ 10592595 n 0000 ~ 10631765 n 0000 ~ 10690002 n 0000 ~ 10738968 n 0000 | a representative who acts on behalf of other persons or organizations -09777870 18 n 01 buck_sergeant 0 001 @ 10449521 n 0000 | a sergeant of the lowest rank in the military -09777975 18 n 01 business_agent 0 002 @ 09777353 n 0000 ~ 09767592 n 0000 | an agent who handles business affairs for another; especially one who deals with employers -09778144 18 n 01 literary_agent 0 001 @ 09777353 n 0000 | an agent who represents an author in dealings with publishers -09778266 18 n 01 agent-in-place 0 001 @ 10569411 n 0000 | an operative serving as a penetration into an intelligence target -09778392 18 n 02 agent_provocateur 0 provocateur 0 001 @ 10569411 n 0000 | a secret agent who incites suspected persons to commit illegal acts -09778537 18 n 02 aggravator 0 annoyance 0 002 @ 09631463 n 0000 + 01820901 v 0103 | an unpleasant person who is annoying or exasperating -09778676 18 n 01 aggressor 1 001 @ 10209082 n 0000 | a confident assertive person who acts as instigator -09778783 18 n 02 agitator 0 fomenter 0 003 @ 10731244 n 0000 + 02585050 v 0202 + 02585050 v 0101 | one who agitates; a political troublemaker -09778927 18 n 01 agnostic 0 002 @ 09628382 n 0000 + 01305929 a 0102 | a person who claims that they cannot have true knowledge about the existence of God (but does not deny that God might exist) -09779124 18 n 02 agnostic 1 doubter 1 003 @ 00007846 n 0000 + 00687295 v 0201 + 01305929 a 0102 | someone who is doubtful or noncommittal about something -09779280 18 n 01 agonist 0 005 @ 09613191 n 0000 + 02608244 a 0101 + 14324274 n 0101 + 07495551 n 0101 ! 09773245 n 0102 | someone involved in a contest or battle (as in an agon) -09779461 18 n 01 agony_aunt 0 001 @ 10356592 n 0000 | a newspaper columnist who answers questions and offers advice on personal problems to people who write in -09779623 18 n 02 agricultural_laborer 0 agricultural_labourer 0 003 @ 10241300 n 0000 ~ 10410996 n 0000 ~ 10586444 n 0000 | a person who tills the soil for a living -09779790 18 n 05 agriculturist 0 agriculturalist 0 cultivator 0 grower 0 raiser 0 009 @ 10078806 n 0000 + 01739814 v 0502 + 01739814 v 0401 + 00245457 v 0401 + 01742726 v 0301 + 01104406 n 0102 + 00916464 n 0102 ~ 10114114 n 0000 ~ 10758121 n 0000 | someone concerned with the science or art or business of cultivating the soil -09780120 18 n 01 agronomist 0 002 @ 09617867 n 0000 + 06065819 n 0101 | an expert in soil management and field-crop production -09780249 18 n 02 aide 0 auxiliary 0 004 @ 09815790 n 0000 + 02354897 a 0206 + 01854129 a 0201 ~ 10367548 n 0000 | someone who acts as assistant -09780395 18 n 01 air_attache 0 002 @ 10316360 n 0000 ;c 08199025 n 0000 | a military attache who is a commissioned or warrant officer in an air force -09780547 18 n 02 aircraftsman 0 aircraftman 0 001 @ 10360747 n 0000 | a noncommissioned officer in the British Royal Air Force -09780676 18 n 01 aircrewman 0 005 @ 09977178 n 0000 #m 08273406 n 0000 ~ 09864252 n 0000 ~ 10096375 n 0000 ~ 10348365 n 0000 | a member of an aircrew -09780828 18 n 02 air_force_officer 0 commander 2 004 @ 10582746 n 0000 + 00590626 n 0201 + 02441022 v 0202 + 00751887 v 0201 | an officer in the airforce -09780984 18 n 01 airhead 0 002 @ 10599354 n 0000 ;u 07157273 n 0000 | a flighty scatterbrained simpleton; "she's a total airhead"; "every airhead on a big salary rushed out to buy one" -09781171 18 n 02 air_marshal 0 sky_marshal 0 002 @ 10295951 n 0000 ;c 00759694 n 0000 | a person trained by the government in hijacking and terrorist tactics who (for security reasons) is a passenger aboard an airline flight -09781398 18 n 02 air_traveler 0 air_traveller 0 001 @ 09629752 n 0000 | someone who travels by airplane -09781504 18 n 01 alarmist 0 004 @ 09610660 n 0000 + 07224684 n 0101 + 01782650 v 0102 ~ 10555679 n 0000 | a person who alarms others needlessly -09781650 18 n 01 albino 0 002 @ 09606527 n 0000 + 02609984 a 0104 | a person with congenital albinism: white hair and milky skin; eyes are usually pink -09781804 18 n 01 alcalde 0 002 @ 10303814 n 0000 @ 10225219 n 0000 | a mayor or chief magistrate of a Spanish town -09781921 18 n 01 alchemist 0 004 @ 09621545 n 0000 + 02610761 a 0101 + 05778749 n 0101 + 02610761 a 0102 | one who was versed in the practice of alchemy and who sought an elixir of life and a panacea and an alkahest and the philosopher's stone -09782167 18 n 07 alcoholic 0 alky 0 dipsomaniac 0 boozer 0 lush 0 soaker 0 souse 0 005 @ 10037385 n 0000 + 01190277 v 0701 + 01190277 v 0602 + 01171183 v 0402 + 00047243 a 0101 | a person who drinks alcohol to excess habitually -09782397 18 n 01 alderman 0 003 @ 10522035 n 0000 + 03040103 a 0102 + 03040103 a 0101 | a member of a municipal legislative body (as a city council); "aldermen usually represent city wards" -09782589 18 n 02 Aleut 0 Aleutian 0 001 @ 09645091 n 0000 | a member of the people inhabiting the Aleutian Islands and southwestern Alaska -09782730 18 n 01 Alexandrian 0 001 @ 10523519 n 0000 | a resident or native of Alexandria (especially Alexandria in Egypt) -09782855 18 n 01 alexic 0 002 @ 10405694 n 0000 + 03040264 a 0101 | a person with alexia -09782946 18 n 01 Ali_Baba 0 002 @i 09587565 n 0000 @i 10790077 n 0000 | the fictional woodcutter who discovered that `open sesame' opened a cave in the Arabian Nights' Entertainment -09783130 18 n 01 alien_absconder 0 001 @ 09755241 n 0000 | a fugitive remaining in the United States after an immigration judge has ordered them deported; "the government has categorized more than 320,000 foreigners as alien absconders" -09783369 18 n 01 alienator 0 002 @ 09631463 n 0000 + 01823528 v 0102 | an unpleasant person who causes friendly people to become indifferent or unfriendly or hostile -09783537 18 n 02 alienee 0 grantee 1 001 @ 09627906 n 0000 | someone to whom the title of property is transferred -09783653 18 n 01 alienist 0 001 @ 10488016 n 0000 | a psychiatrist and specialist in the legal aspects of mental illness -09783776 18 n 01 alienor 0 001 @ 10143889 n 0000 | someone from whom the title of property is transferred -09783884 18 n 02 aliterate 0 aliterate_person 0 001 @ 10198958 n 0000 | a person who can read but is disinclined to derive information from literary sources -09784043 18 n 01 algebraist 0 002 @ 10301261 n 0000 + 06012726 n 0101 | a mathematician whose specialty is algebra -09784160 18 n 02 allegorizer 0 allegoriser 0 003 @ 09610660 n 0000 + 00135285 v 0202 + 00135285 v 0101 | someone who communicates in allegories -09784306 18 n 01 allergist 0 002 @ 10020890 n 0000 + 14532816 n 0101 | a physician skilled in the diagnosis and treatment of allergies -09784443 18 n 01 alleviator 0 002 @ 10707233 n 0000 + 00064095 v 0102 | a therapist who makes suffering more endurable -09784564 18 n 01 alliterator 0 003 @ 10630188 n 0000 @ 10794014 n 0000 + 01702154 v 0101 | a speaker or writer who makes use of alliteration -09784707 18 n 02 allocator 0 distributor 1 003 @ 09824609 n 0000 + 02294436 v 0201 + 02234087 v 0101 | a person with authority to allot or deal out or apportion -09784870 18 n 02 all-rounder 0 all_arounder 0 001 @ 09617867 n 0000 | a versatile person who is expert at many things; "she's the best all-rounder they've seen in years" -09785042 18 n 02 ally 0 friend 3 004 @ 09816771 n 0000 ! 10098710 n 0201 + 02430191 v 0101 ~ 09860653 n 0000 | an associate who provides cooperation or assistance; "he's a good ally in fight" -09785236 18 n 02 almoner 0 medical_social_worker 0 001 @ 10620027 n 0000 | an official in a British hospital who looks after the social and material needs of the patients -09785409 18 n 02 alphabetizer 0 alphabetiser 0 003 @ 10266328 n 0000 + 00279239 v 0202 + 00279239 v 0101 | a literate person who can arrange items in alphabetical order -09785580 18 n 01 almsgiver 0 001 @ 10025730 n 0000 | a person who gives alms -09785659 18 n 01 alpinist 0 002 @ 10334567 n 0000 + 00325975 n 0101 | a mountain climber who specializes in difficult climbs -09785786 18 n 01 Alsatian 0 002 @ 09620078 n 0000 + 02972344 a 0101 | a native or inhabitant of Alsace -09785891 18 n 01 altar_boy 0 002 @ 10285313 n 0000 @ 09763349 n 0000 | a boy serving as an acolyte -09785992 18 n 01 alter_ego 0 001 @ 10112591 n 0000 | a very close and trusted friend who seems almost a part of yourself -09786115 18 n 01 alto 0 002 @ 10599806 n 0000 ~ 09970295 n 0000 | a singer whose voice lies in the alto clef -09786226 18 n 02 alto_saxophonist 0 altoist 0 001 @ 10554243 n 0000 | a musician who plays the alto saxophone -09786338 18 n 05 alumnus 0 alumna 0 alum 0 graduate 0 grad 0 005 @ 10557854 n 0000 + 02264179 v 0401 + 02264397 v 0401 ~ 10218043 n 0000 ~ 10375129 n 0000 | a person who has received a degree from a school (high school or college or university) -09786585 18 n 01 amateur 0 005 @ 00007846 n 0000 + 01869634 a 0101 ~ 09856500 n 0000 ~ 09987696 n 0000 ~ 10179069 n 0000 | someone who pursues a study or sport as a pastime -09786760 18 n 01 amateur 1 005 @ 09820263 n 0000 + 01869634 a 0101 + 01870636 a 0102 ! 10480583 n 0101 ~ 10639359 n 0000 | an athlete who does not play for pay -09786922 18 n 01 amalgamator 0 002 @ 09882007 n 0000 + 01462005 v 0105 | a businessman who arranges an amalgamation of two or more commercial companies -09787076 18 n 01 Amazon 1 002 @ 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) one of a nation of women warriors of Scythia (who burned off the right breast in order to use a bow and arrow more effectively) -09787293 18 n 02 amazon 2 virago 2 001 @ 10787470 n 0000 | a large strong and aggressive woman -09787390 18 n 01 maenad 0 002 @ 10787470 n 0000 ;c 07979425 n 0000 | (Greek mythology) a woman participant in the orgiastic rites of Dionysus -09787534 18 n 02 ambassador 0 embassador 0 005 @ 10013927 n 0000 + 03040846 a 0101 + 00588780 n 0101 ~ 09787878 n 0000 ~i 11017118 n 0000 | a diplomat of the highest rank; accredited as representative from one country to another -09787765 18 n 01 ambassador 1 001 @ 10638385 n 0000 | an informal representative; "an ambassador of good will" -09787878 18 n 01 ambassadress 0 001 @ 09787534 n 0000 | a woman ambassador -09787955 18 n 01 ambulance_chaser 0 001 @ 10249950 n 0000 | an unethical lawyer who incites accident victims to sue -09788073 18 n 01 ambusher 0 003 @ 09821253 n 0000 + 01142203 v 0102 + 01138204 v 0101 | an attacker who waits in a concealed position to launch a surprise attack -09788237 18 n 02 amicus_curiae 0 friend_of_the_court 0 002 @ 09774266 n 0000 ;c 08441203 n 0000 | an adviser to the court on some matter of law who is not a party to the case; usually someone who wants to influence the outcome of a lawsuit involving matters of wide public interest -09788521 18 n 01 amigo 0 002 @ 10112591 n 0000 ;r 09023321 n 0000 | a friend or comrade -09788611 18 n 02 amnesic 0 amnesiac 0 004 @ 10158756 n 0000 + 01978237 a 0202 + 01978237 a 0101 + 02617933 a 0102 | a person suffering from amnesia -09788761 18 n 01 amora 0 001 @ 10502329 n 0000 | one of a group of rabbis (active AD 250-500) who discussed the Mishnaic law in the law schools of Palestine and Mesopotamia where they explained and applied earlier teachings and whose discussions are recorded in the Talmud; they emphasized the study of Torah and the importance of personal action and the fulfillment of the commandments -09789150 18 n 01 amoralist 0 002 @ 10016103 n 0000 + 05958427 n 0101 | someone who adheres to the doctrine that ordinary moral distinctions are invalid -09789304 18 n 01 amorist 0 002 @ 10077593 n 0000 + 02618361 a 0101 | one dedicated to love and lovemaking especially one who writes about love -09789449 18 n 01 amputator 0 002 @ 10679174 n 0000 + 01254692 v 0101 | a surgeon who removes part or all of a limb -09789566 18 n 01 amputee 0 001 @ 09630641 n 0000 | someone who has had a limb removed by amputation -09789668 18 n 01 anagnost 0 002 @ 09927451 n 0000 @ 13950812 n 0000 | a cleric in the minor orders of the Eastern Orthodox Church who reads the lessons aloud in the liturgy (analogous to the lector in the Roman Catholic Church) -09789898 18 n 01 analogist 0 003 @ 10510339 n 0000 + 05780339 n 0101 + 00651176 n 0101 | someone who looks for analogies or who reasons by analogy -09790047 18 n 02 analphabet 0 analphabetic 0 002 @ 10199103 n 0000 + 01421887 a 0201 | an illiterate person who does not know the alphabet -09790188 18 n 01 analysand 0 001 @ 10405694 n 0000 | a person undergoing psychoanalysis -09790278 18 n 02 analyst 1 psychoanalyst 0 006 @ 10488016 n 0000 + 00643197 v 0203 + 00643197 v 0101 ~i 10982127 n 0000 ~i 11107110 n 0000 ~i 11257159 n 0000 | a licensed practitioner of psychoanalysis -09790482 18 n 01 analyst 0 006 @ 09617867 n 0000 + 00643473 v 0101 + 00644583 v 0101 ~ 09814252 n 0000 ~ 10210512 n 0000 ~ 10687728 n 0000 | someone who is skilled at analyzing data -09790666 18 n 01 credit_analyst 0 001 @ 09791530 n 0000 | an analyst who studies the financial statements and financial history of applicants for credit in order to evaluate their creditworthiness -09790865 18 n 02 financial_analyst 0 securities_analyst 0 001 @ 09791530 n 0000 | an analyst who studies the financial performance of corporations -09791014 18 n 01 industry_analyst 0 002 @ 09791530 n 0000 ~ 09791151 n 0000 | an analyst of conditions affecting a particular industry -09791151 18 n 01 oil-industry_analyst 0 001 @ 09791014 n 0000 | an analyst of the oil industry -09791248 18 n 01 market_analyst 0 003 @ 09791530 n 0000 ;c 04323026 n 0000 ~ 09910840 n 0000 | an analyst of conditions affecting a market (especially the stock market) -09791419 18 n 01 market_strategist 0 001 @ 10661563 n 0000 | someone skilled in planning marketing campaigns -09791530 18 n 01 analyst 2 006 @ 09617867 n 0000 + 00736216 v 0101 ~ 09790666 n 0000 ~ 09790865 n 0000 ~ 09791014 n 0000 ~ 09791248 n 0000 | an expert who studies financial data (on credit or securities or sales or financial patterns etc.) and recommends appropriate business actions -09791816 18 n 03 anarchist 0 nihilist 0 syndicalist 0 012 @ 10503452 n 0000 + 08321621 n 0301 + 13973320 n 0201 + 05965388 n 0201 + 02621348 a 0101 + 13973059 n 0101 ~i 10831483 n 0000 ~i 11004861 n 0000 ~i 11111194 n 0000 ~i 11277680 n 0000 ~i 11351529 n 0000 ~i 11360311 n 0000 | an advocate of anarchism -09792125 18 n 02 anathema 0 bete_noire 0 001 @ 09631463 n 0000 | a detested person; "he is an anathema to me" -09792237 18 n 01 anatomist 0 014 @ 09617867 n 0000 + 06057539 n 0101 + 05217168 n 0108 ~ 09946672 n 0000 ~ 10170359 n 0000 ~ 10385455 n 0000 ~i 10963050 n 0000 ~i 10963467 n 0000 ~i 10965966 n 0000 ~i 10987565 n 0000 ~i 11171513 n 0000 ~i 11195771 n 0000 ~i 11364419 n 0000 ~i 11394848 n 0000 | an expert in anatomy -09792555 18 n 05 ancestor 0 ascendant 0 ascendent 0 antecedent 0 root 0 010 @ 10235549 n 0000 + 00121865 a 0401 + 01314197 a 0101 + 02604913 a 0101 ! 10006511 n 0101 ~ 09792896 n 0000 ~ 10102369 n 0000 ~ 10102800 n 0000 ~ 10103155 n 0000 ~ 10126806 n 0000 | someone from whom you are descended (but usually more remote than a grandparent) -09792896 18 n 01 ancestress 0 001 @ 09792555 n 0000 | a woman ancestor -09792969 18 n 03 anchor 0 anchorman 0 anchorperson 0 001 @ 10698368 n 0000 | a television reporter who coordinates a broadcast to which several correspondents contribute -09793141 18 n 01 ancient 0 002 @ 00007846 n 0000 + 01728614 a 0101 | a person who lived in ancient times -09793248 18 n 02 ancient 1 antediluvian 0 002 @ 10376523 n 0000 + 01644847 a 0101 | a very old person -09793352 18 n 02 anecdotist 0 raconteur 0 003 @ 10345804 n 0000 + 07220586 n 0101 ~i 11196305 n 0000 | a person skilled in telling anecdotes -09793495 18 n 03 anesthesiologist 0 anesthetist 0 anaesthetist 0 004 @ 10632576 n 0000 + 14023491 n 0302 + 14023491 n 0201 + 06046383 n 0101 | a specialist who administers an anesthetic to a patient before he is treated -09793717 18 n 02 angel 2 backer 0 002 @ 10407954 n 0000 + 02217695 v 0201 | invests in a theatrical production -09793830 18 n 01 angiologist 0 002 @ 10020890 n 0000 + 06046528 n 0101 | a physician who specializes in angiology -09793946 18 n 02 angler 0 troller 0 003 @ 10093658 n 0000 + 01141763 v 0201 + 01141612 v 0101 | a fisherman who uses a hook and line -09794081 18 n 01 angler 1 002 @ 10556518 n 0000 + 02044866 v 0101 | a scheming person; someone who schemes to gain an advantage -09794211 18 n 02 anglophile 0 anglophil 0 001 @ 10677713 n 0000 | an admirer of England and things English -09794320 18 n 01 anglophobe 0 001 @ 10162194 n 0000 | a person who hates England and everything English -09794426 18 n 01 animal_fancier 0 003 @ 10078131 n 0000 ~ 09901921 n 0000 ~ 10185682 n 0000 | a person who breeds animals -09794550 18 n 01 animator 0 002 @ 10696251 n 0000 + 00547995 v 0103 | the technician who produces animated cartoons -09794668 18 n 01 animist 0 003 @ 10016103 n 0000 + 02624314 a 0101 + 05958712 n 0101 | one who accepts the doctrine of animism -09794797 18 n 01 annalist 0 003 @ 10177150 n 0000 + 06597617 n 0101 + 06515662 n 0101 | a historian who writes annals -09794917 18 n 01 annihilator 0 002 @ 10008716 n 0000 + 00470701 v 0102 | a total destroyer -09795010 18 n 01 annotator 0 002 @ 10369528 n 0000 + 01704953 v 0101 | a commentator who writes notes to a text -09795124 18 n 01 announcer 0 007 @ 09875786 n 0000 + 00965871 v 0101 + 00974367 v 0101 ~ 10356344 n 0000 ~ 10503710 n 0000 ~ 10639637 n 0000 ~ 10733891 n 0000 | reads news, commercials on radio or television -09795334 18 n 01 announcer 1 008 @ 09610660 n 0000 + 00975427 v 0101 + 00965871 v 0101 + 00974367 v 0101 ~ 09888429 n 0000 ~ 09888635 n 0000 ~ 10336730 n 0000 ~ 10719132 n 0000 | someone who proclaims a message publicly -09795556 18 n 01 annuitant 0 001 @ 09627906 n 0000 | the recipient of an annuity -09795639 18 n 01 anointer 0 002 @ 09628382 n 0000 + 00085626 v 0101 | one who anoints as a religious ceremony -09795751 18 n 02 anorexic 0 anorectic 0 003 @ 10595647 n 0000 + 00988797 a 0202 + 00988797 a 0101 | a person suffering from anorexia nervosa -09795894 18 n 02 antediluvian 1 antediluvian_patriarch 0 002 @ 10406391 n 0000 + 02846743 a 0102 | any of the early patriarchs who lived prior to the Noachian deluge -09796062 18 n 01 anthologist 0 002 @ 10044879 n 0000 + 06591609 n 0101 | an editor who makes selections for an anthology -09796185 18 n 02 anthropoid 0 ape 0 003 @ 10322238 n 0000 + 01260282 a 0101 + 01260282 a 0102 | person who resembles a nonhuman primate -09796323 18 n 01 anthropologist 0 021 @ 10619642 n 0000 + 06143546 n 0101 ~ 09804806 n 0000 ~ 10065643 n 0000 ~ 10065758 n 0000 ~ 10618465 n 0000 ~i 10844401 n 0000 ~i 10864428 n 0000 ~i 10864858 n 0000 ~i 10979694 n 0000 ~i 11048586 n 0000 ~i 11110917 n 0000 ~i 11121640 n 0000 ~i 11121876 n 0000 ~i 11122114 n 0000 ~i 11130113 n 0000 ~i 11151579 n 0000 ~i 11170248 n 0000 ~i 11186356 n 0000 ~i 11191113 n 0000 ~i 11281174 n 0000 | a social scientist who specializes in anthropology -09796809 18 n 01 anti 0 001 @ 00007846 n 0000 | a person who is opposed (to an action or policy or practice etc.); "the antis smelled victory after a long battle" -09796974 18 n 01 anti-American 0 002 @ 00007846 n 0000 + 02927803 a 0101 | a person who is opposed to the United States and its policies -09797113 18 n 02 anticipator 0 anticipant 0 004 @ 10756433 n 0000 + 01228797 a 0201 + 02565491 v 0101 + 00720808 v 0101 | one who anticipates -09797257 18 n 01 antinomian 0 002 @ 10016103 n 0000 + 02630402 a 0101 | a follower of the doctrine of antinomianism -09797375 18 n 01 antipope 0 002 @ 10453533 n 0000 ~i 10900953 n 0000 | someone who is elected pope in opposition to another person who is held to be canonically elected; "the antipopes resided in Avignon during the Great Schism" -09797606 18 n 03 antiquary 0 antiquarian 0 archaist 0 002 @ 09617867 n 0000 + 03043937 a 0201 | an expert or collector of antiquities -09797742 18 n 02 anti-Semite 0 Jew-baiter 0 002 @ 10162194 n 0000 + 00285905 a 0103 | someone who hates and would persecute Jews -09797873 18 n 01 Anzac 0 001 @ 10622053 n 0000 | a soldier in the Australian and New Zealand army corps during World War I -09797998 18 n 01 ape-man 1 001 @ 10781684 n 0000 | a person assumed to have been raised by apes -09798096 18 n 01 aphakic 0 002 @ 10757625 n 0000 + 02632148 a 0101 | someone afflicted by aphakia; someone lacking the natural lenses of the eyes -09798244 18 n 01 aphasic 0 003 @ 10158756 n 0000 + 00151530 a 0101 + 02632363 a 0101 | someone affected by aphasia or inability to use or understand language -09798404 18 n 01 aphorist 0 002 @ 09621545 n 0000 + 07153130 n 0101 | someone who formulates aphorisms or who repeats aphorisms -09798534 18 n 03 apologist 0 vindicator 0 justifier 0 006 @ 09774783 n 0000 + 00894738 v 0304 + 00896141 v 0301 + 00904690 v 0201 + 00896141 v 0202 + 06740919 n 0101 | a person who argues to defend or justify some policy or institution; "an apologist for capital punishment" -09798811 18 n 01 Apostle 0 015 @ 09678009 n 0000 @ 10016103 n 0000 ;c 06453849 n 0000 + 02859500 a 0101 + 02859500 a 0102 + 00588881 n 0101 ~i 10818088 n 0000 ~i 11078982 n 0000 ~i 11085924 n 0000 ~i 11093674 n 0000 ~i 11094055 n 0000 ~i 11164671 n 0000 ~i 11231157 n 0000 ~i 11301414 n 0000 ~i 11338796 n 0000 | (New Testament) one of the original 12 disciples chosen by Christ to preach his gospel -09799213 18 n 02 Apostle 1 Apostelic_Father 0 006 @ 09678009 n 0000 + 02859500 a 0101 ~i 11144604 n 0000 ~i 11156943 n 0000 ~i 11225469 n 0000 ~i 11225661 n 0000 | any important early teacher of Christianity or a Christian missionary to a people -09799461 18 n 01 apostle 2 002 @ 09848489 n 0000 + 00588881 n 0101 | an ardent early supporter of a cause or reform; "an apostle of revolution" -09799607 18 n 01 apostolic_delegate 0 002 @ 10000787 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a representative of the Holy See in a country that has no formal diplomatic relations with it -09799808 18 n 01 Appalachian 0 002 @ 09738708 n 0000 + 08493493 n 0101 | a native or inhabitant of Appalachia -09799920 18 n 01 apparatchik 0 001 @ 09945319 n 0000 | a communist who was a member of the administrative system of a communist party -09800056 18 n 01 apparatchik 1 001 @ 10372373 n 0000 | a humorous but derogatory term for an official of a large organization (especially a political organization); "Democratic apparatchiks" -09800249 18 n 01 appeaser 0 002 @ 09952163 n 0000 + 00765213 v 0102 | someone who tries to bring peace by acceding to demands; "An appeaser is one who feeds a crocodile--hoping it will eat him last"--Winston Churchill -09800469 18 n 02 appellant 0 plaintiff_in_error 0 003 @ 10266848 n 0000 + 03044083 a 0102 + 02497586 v 0101 | the party who appeals a decision of a lower court -09800631 18 n 06 apple_polisher 0 bootlicker 0 fawner 0 groveller 0 groveler 0 truckler 0 008 @ 10684827 n 0000 + 02703432 v 0601 + 00880978 v 0603 + 02063771 v 0506 + 02063771 v 0406 + 02063771 v 0301 + 00880978 v 0301 + 00880978 v 0204 | someone who humbles himself as a sign of respect; who behaves as if he had no self-respect -09800964 18 n 01 appointee 0 004 @ 10372373 n 0000 + 02396205 v 0101 + 02475922 v 0101 ~ 10437014 n 0000 | an official who is appointed -09801102 18 n 01 apprehender 0 002 @ 00007846 n 0000 + 01215137 v 0103 | a person who seizes or arrests (especially a person who seizes or arrests in the name of justice) -09801275 18 n 01 April_fool 0 001 @ 09884666 n 0000 | the butt of a prank played on April 1st -09801371 18 n 02 aquanaut 1 oceanaut 0 001 @ 10605985 n 0000 | a skilled worker who can live in underwater installations and participate in scientific research -09801533 18 n 05 aspirant 0 aspirer 0 hopeful 0 wannabe 0 wannabee 0 006 @ 09607280 n 0000 + 00176387 a 0302 + 01228530 a 0301 + 00705517 v 0202 + 00104533 a 0101 + 00705517 v 0102 | an ambitious and aspiring young person; "a lofty aspirant"; "two executive hopefuls joined the firm"; "the audience was full of Madonna wannabes" -09801864 18 n 03 apprentice 0 learner 1 prentice 0 005 @ 10363913 n 0000 + 00597915 v 0201 + 00588998 n 0101 + 00602635 v 0101 ~ 10475584 n 0000 | works for an expert to learn a trade -09802050 18 n 02 appraiser 1 valuator 0 004 @ 10066732 n 0000 + 00681429 v 0203 + 00681429 v 0105 ~ 10745894 n 0000 | one who estimates officially the worth or value or quality of things -09802239 18 n 02 appraiser 2 authenticator 0 004 @ 09979321 n 0000 ;c 00933420 n 0000 + 00664276 v 0201 + 00681429 v 0105 | one who determines authenticity (as of works of art) or who guarantees validity -09802445 18 n 01 appreciator 0 003 @ 00007846 n 0000 + 00592341 v 0101 ~ 10059067 n 0000 | a person who is fully aware of something and understands it; "he is not an appreciator of our dilemma" -09802641 18 n 01 appropriator 0 005 @ 09764201 n 0000 + 02272549 v 0101 ~ 10237799 n 0000 ~ 10444058 n 0000 ~ 10465002 n 0000 | someone who takes for his or her own use (especially without permission) -09802844 18 n 01 approver 0 002 @ 09824609 n 0000 + 00806502 v 0101 | an authority with power to approve -09802951 18 n 01 Arabist 0 001 @ 10557854 n 0000 | a scholar who specializes in Arab languages and culture -09803060 18 n 02 Aramean 0 Aramaean 0 001 @ 09639919 n 0000 | a member of one of a group of Semitic peoples inhabiting Aram and parts of Mesopotamia from the 11th to the 8th century BC -09803247 18 n 02 Arawak 0 Arawakan 0 003 @ 09644820 n 0000 + 02637537 a 0201 + 02637537 a 0101 | a member of a widespread group of Amerindians living in northeastern South America -09803429 18 n 03 arbiter 0 arbitrator 0 umpire 1 004 @ 10066732 n 0000 + 00760956 v 0205 + 00760956 v 0105 ~ 10709131 n 0000 | someone chosen to judge and decide a disputed issue; "the critic was considered to be an arbiter of modern literature"; "the arbitrator's authority derived from the consent of the disputants"; "an umpire was appointed to settle the tax case" -09803800 18 n 03 arbitrageur 0 arbitrager 0 arb 0 002 @ 09882007 n 0000 + 02260959 v 0201 | someone who engages in arbitrage (who purchases securities in one market for immediate resale in another in the hope of profiting from the price differential) -09804053 18 n 02 arbiter 2 supreme_authority 0 001 @ 09617867 n 0000 | someone with the power to settle matters at will; "she was the final arbiter on all matters of fashion" -09804230 18 n 01 archaist 1 003 @ 00007846 n 0000 + 00522068 v 0101 + 00522068 v 0102 | a person who archaizes -09804343 18 n 01 archdeacon 0 003 @ 09927451 n 0000 ;c 08087981 n 0000 + 02639772 a 0101 | (Anglican Church) an ecclesiastical dignitary usually ranking just below a bishop -09804518 18 n 01 archduchess 0 001 @ 10474064 n 0000 | a wife or widow of an archduke or a princess of the former ruling house of Austria -09804658 18 n 01 archduke 0 003 @ 10472799 n 0000 + 02639302 a 0101 ~i 10977660 n 0000 | a sovereign prince of the former ruling house of Austria -09804806 18 n 02 archeologist 0 archaeologist 0 012 @ 09796323 n 0000 + 06144081 n 0202 + 06144081 n 0101 ~ 10047822 n 0000 ~ 10394673 n 0000 ~ 10460720 n 0000 ~i 10963254 n 0000 ~i 11285091 n 0000 ~i 11339905 n 0000 ~i 11383278 n 0000 ~i 11392539 n 0000 ~i 11397094 n 0000 | an anthropologist who studies prehistoric people and their culture -09805151 18 n 01 archbishop 0 006 @ 09857200 n 0000 + 02639895 a 0102 + 02639895 a 0101 ~ 10313239 n 0000 ~i 10818860 n 0000 ~i 10840021 n 0000 | a bishop of highest rank -09805324 18 n 02 archer 0 bowman 0 003 @ 09617867 n 0000 ~ 10270777 n 0000 ~i 10698649 n 0000 | a person who is expert in the use of a bow and arrow -09805475 18 n 02 architect 0 designer 0 071 @ 09614315 n 0000 + 01640550 v 0201 + 01639714 v 0201 ~ 10245863 n 0000 ~i 10806693 n 0000 ~i 10808045 n 0000 ~i 10811708 n 0000 ~i 10841880 n 0000 ~i 10847330 n 0000 ~i 10848122 n 0000 ~i 10862507 n 0000 ~i 10863717 n 0000 ~i 10868562 n 0000 ~i 10870897 n 0000 ~i 10873505 n 0000 ~i 10876661 n 0000 ~i 10883871 n 0000 ~i 10889905 n 0000 ~i 10929437 n 0000 ~i 10985440 n 0000 ~i 10991303 n 0000 ~i 10992336 n 0000 ~i 10999048 n 0000 ~i 11000786 n 0000 ~i 11017295 n 0000 ~i 11034307 n 0000 ~i 11055154 n 0000 ~i 11061089 n 0000 ~i 11066938 n 0000 ~i 11082353 n 0000 ~i 11090235 n 0000 ~i 11095907 n 0000 ~i 11113732 n 0000 ~i 11118602 n 0000 ~i 11123124 n 0000 ~i 11126295 n 0000 ~i 11128394 n 0000 ~i 11132245 n 0000 ~i 11138085 n 0000 ~i 11145563 n 0000 ~i 11154355 n 0000 ~i 11169294 n 0000 ~i 11173778 n 0000 ~i 11178161 n 0000 ~i 11178922 n 0000 ~i 11180643 n 0000 ~i 11203920 n 0000 ~i 11221495 n 0000 ~i 11227499 n 0000 ~i 11228153 n 0000 ~i 11248232 n 0000 ~i 11261364 n 0000 ~i 11276971 n 0000 ~i 11277096 n 0000 ~i 11308877 n 0000 ~i 11309958 n 0000 ~i 11319134 n 0000 ~i 11322344 n 0000 ~i 11324902 n 0000 ~i 11330963 n 0000 ~i 11341374 n 0000 ~ 11346710 n 0000 ~i 11356512 n 0000 ~i 11358598 n 0000 ~i 11359558 n 0000 ~i 11362885 n 0000 ~i 11370068 n 0000 ~i 11383917 n 0000 ~i 11398195 n 0000 ~i 11398489 n 0000 ~i 11399620 n 0000 | someone who creates plans to be used in making something (such as buildings) -09806944 18 n 01 archivist 0 002 @ 09936620 n 0000 + 02735086 n 0101 | a person in charge of collecting and cataloguing archives -09807075 18 n 05 archpriest 0 hierarch 0 high_priest 0 prelate 0 primate 0 010 @ 10470779 n 0000 + 00597532 n 0501 ~i 11071677 n 0000 ~i 11084895 n 0000 ~i 11204962 n 0000 ~i 11261483 n 0000 ~i 11354001 n 0000 ~i 11357879 n 0000 ~i 11400230 n 0000 ~i 11400837 n 0000 | a senior clergyman and dignitary -09807379 18 n 01 Areopagite 0 002 @ 10307234 n 0000 #m 08164110 n 0000 | a member of the council of the Areopagus -09807495 18 n 01 Argive 0 002 @ 09710164 n 0000 + 08786660 n 0101 | a native or inhabitant of the city of Argos -09807609 18 n 01 arianist 0 002 @ 09678009 n 0000 + 06187756 n 0101 | an adherent of Arianism (the belief that Jesus Christ was not truly God) -09807754 18 n 03 aristocrat 0 blue_blood 0 patrician 0 013 @ 09623038 n 0000 #m 08388207 n 0000 + 01590484 a 0306 + 01590484 a 0102 ~ 09840639 n 0000 ~ 09872782 n 0000 ~ 10083823 n 0000 ~ 10175090 n 0000 ~ 10285135 n 0000 ~ 10472799 n 0000 ~ 10474064 n 0000 ~ 10505732 n 0000 ~ 10506642 n 0000 | a member of the aristocracy -09808080 18 n 03 Aristotelian 0 Aristotelean 0 Peripatetic 1 008 @ 10016103 n 0000 + 05969194 n 0302 + 02128388 a 0301 + 03028465 a 0304 + 05969194 n 0201 + 03028465 a 0202 + 05969194 n 0101 + 03028465 a 0101 | a follower of Aristotle or an adherent of Aristotelianism -09808351 18 n 01 arithmetician 0 002 @ 10301261 n 0000 + 06004067 n 0101 | someone who specializes in arithmetic -09808466 18 n 01 armchair_liberal 0 001 @ 10256756 n 0000 | a person of liberal ideals who takes no action to realize them -09808591 18 n 01 armiger 2 001 @ 10271677 n 0000 | a nobleman entitled to bear heraldic arms -09808686 18 n 02 armiger 1 armor-bearer 0 001 @ 10643937 n 0000 | a squire carrying the armor of a knight -09808794 18 n 03 armorer 0 armourer 0 artificer 2 001 @ 10058585 n 0000 | an enlisted man responsible for the upkeep of small arms and machine guns etc. -09808949 18 n 02 armorer 1 armourer 1 003 @ 10605985 n 0000 + 02739668 n 0202 + 02739668 n 0101 | a worker skilled in making armor or arms; "a sword made by a famous English armorer" -09809134 18 n 01 arms_manufacturer 0 003 @ 10292316 n 0000 ~i 11111845 n 0000 ~i 11165854 n 0000 | someone who manufactures arms and munitions -09809279 18 n 01 army_attache 0 002 @ 10316360 n 0000 ;c 08199025 n 0000 | a military attache who is a commissioned or warrant officer in an army -09809427 18 n 01 army_brat 0 001 @ 09918248 n 0000 | the child of a career officer of the United States Army -09809538 18 n 02 army_engineer 0 military_engineer 0 004 @ 09615807 n 0000 ;c 08199025 n 0000 ~ 10551576 n 0000 ~ 10551751 n 0000 | a member of the military who is trained in engineering and construction work -09809749 18 n 01 army_officer 0 004 @ 10317007 n 0000 ;c 08199025 n 0000 ~ 10498986 n 0000 ~i 10943405 n 0000 | an officer in the armed forces; "he's a retired army officer" -09809925 18 n 03 arranger 1 adapter 0 transcriber 2 004 @ 10339966 n 0000 + 01708113 v 0301 + 01706129 v 0101 ~ 10381100 n 0000 | a musician who adapts a composition for particular voices or instruments or for another style of performance -09810166 18 n 03 arrival 0 arriver 0 comer 0 006 @ 09629752 n 0000 + 02005948 v 0303 + 02005948 v 0201 ~ 10041787 n 0000 ~ 10247720 n 0000 ~ 10355688 n 0000 | someone who arrives (or has arrived) -09810364 18 n 01 arrogator 0 004 @ 00007846 n 0000 + 02275365 v 0103 + 02276746 v 0101 + 02274482 v 0105 | a person who through conceit makes pretentious claims to rights or advantages that he or she is not entitled to or to qualities that he or she does not possess -09810633 18 n 01 arrowsmith 0 001 @ 10614812 n 0000 | a maker of arrows -09810707 18 n 03 arsonist 0 incendiary 0 firebug 0 003 @ 09977660 n 0000 + 00378296 n 0101 ~ 09839774 n 0000 | a criminal who illegally sets fire to property -09810867 18 n 01 art_critic 0 003 @ 09979589 n 0000 ~i 10984257 n 0000 ~i 11274714 n 0000 | a critic of paintings -09810983 18 n 01 art_dealer 0 002 @ 10720453 n 0000 ~ 10475835 n 0000 | a dealer in works of art requiring esthetic evaluation -09811112 18 n 01 art_director 1 001 @ 10645223 n 0000 | the director in charge of the artistic features of a theatrical production (costumes and scenery and lighting) -09811281 18 n 01 art_editor 0 001 @ 10044879 n 0000 | an editor who is responsible for illustrations and layouts in printed matter -09811414 18 n 01 art_historian 0 005 @ 10177150 n 0000 ~i 11221956 n 0000 ~i 11361288 n 0000 ~i 11373550 n 0000 ~i 11392539 n 0000 | a historian of art -09811568 18 n 01 arthritic 0 002 @ 10405694 n 0000 + 14186541 n 0101 | a person afflicted with arthritis; "the hands of an elderly arthritic" -09811712 18 n 01 articulator 0 004 @ 09610660 n 0000 + 00978549 v 0102 ~ 10630188 n 0000 ~ 10671467 n 0000 | someone who pronounces words -09811852 18 n 04 artilleryman 0 cannoneer 0 gunner 0 machine_gunner 0 006 @ 10582746 n 0000 + 01136614 v 0301 + 02950826 n 0201 + 02950482 n 0201 + 02950256 n 0201 + 01134522 v 0201 | a serviceman in the artillery -09812068 18 n 01 illustrator 0 008 @ 09812338 n 0000 + 01668421 v 0101 ~ 09942587 n 0000 ~i 10866738 n 0000 ~i 10945048 n 0000 ~i 10998474 n 0000 ~i 11249559 n 0000 ~i 11267568 n 0000 | an artist who makes illustrations (for books or magazines or advertisements etc.) -09812338 18 n 02 artist 0 creative_person 0 037 @ 09614315 n 0000 + 00069948 a 0101 + 02991122 a 0101 + 06998748 n 0102 + 05638987 n 0101 + 02743547 n 0101 + 00933420 n 0101 ~ 09812068 n 0000 ~ 09926426 n 0000 ~ 09926519 n 0000 ~ 09959658 n 0000 ~ 09998907 n 0000 ~ 10029068 n 0000 ~ 10064977 n 0000 ~ 10073851 n 0000 ~ 10280130 n 0000 ~ 10320230 n 0000 ~ 10326643 n 0000 ~ 10339966 n 0000 ~ 10391653 n 0000 ~ 10426749 n 0000 ~ 10465248 n 0000 ~ 10475687 n 0000 ~ 10496715 n 0000 ~ 10537906 n 0000 ~ 10566072 n 0000 ~ 10667477 n 0000 ~ 10679845 n 0000 ~ 10685685 n 0000 ~i 10824146 n 0000 ~i 10828368 n 0000 ~i 10944238 n 0000 ~i 11052043 n 0000 ~ 11071467 n 0000 ~i 11087931 n 0000 ~i 11122439 n 0000 ~i 11342301 n 0000 | a person whose creative work shows sensitivity and imagination -09813126 18 n 01 artiste 0 001 @ 10415638 n 0000 | a public performer (a dancer or singer) -09813219 18 n 02 artist's_model 0 sitter 2 002 @ 10324560 n 0000 + 02142775 v 0203 | a person who poses for a painter or sculptor -09813351 18 n 01 art_student 0 001 @ 10665698 n 0000 | someone studying to be an artist -09813441 18 n 01 art_teacher 0 001 @ 10694258 n 0000 | someone who teaches art -09813522 18 n 01 ascender 0 003 @ 10335931 n 0000 + 01969216 v 0101 ~ 10334957 n 0000 | someone who ascends -09813632 18 n 01 ass 0 001 @ 10100761 n 0000 | a pompous fool -09813696 18 n 03 assassin 0 assassinator 0 bravo 0 006 @ 10338707 n 0000 ;c 06148148 n 0000 + 02483000 v 0201 + 02483000 v 0101 ~i 10857540 n 0000 ~i 11218153 n 0000 | a murderer (especially one who kills a prominent political figure) who kills by a surprise attack and often is hired to do the deed; "his assassins were hunted down like animals"; "assassinators of kings and emperors" -09814084 18 n 01 assassin 1 001 @ 09682291 n 0000 | a member of a secret order of Muslims (founded in the 12th century) who terrorized and killed Christian Crusaders -09814252 18 n 01 assayer 0 002 @ 09790482 n 0000 + 00694974 v 0101 | an analyst who assays (performs chemical tests on) metals -09814381 18 n 01 assemblyman 0 001 @ 10522035 n 0000 | someone who is a member of a legislative assembly -09814488 18 n 01 assemblywoman 0 001 @ 10522035 n 0000 | a woman assemblyman -09814567 18 n 01 assenter 0 002 @ 10524413 n 0000 + 00804139 v 0101 | a person who assents -09814660 18 n 05 asserter 0 declarer 1 affirmer 0 asseverator 0 avower 1 007 @ 09610660 n 0000 + 01011031 v 0504 + 01016778 v 0402 + 01011031 v 0301 + 00820801 v 0201 + 01011031 v 0103 ~ 10457444 n 0000 | someone who claims to speak the truth; "a bold asserter"; "a declarer of his intentions"; "affirmers of traditional doctrine"; "an asseverator of strong convictions"; "an avower of his own great intelligence" -09815076 18 n 01 assessee 0 002 @ 00007846 n 0000 + 02308552 v 0101 | a person (or property) that is assessed -09815188 18 n 0b asshole 0 bastard 0 cocksucker 0 dickhead 0 shit 0 mother_fucker 0 motherfucker 0 prick 0 whoreson 1 son_of_a_bitch 0 SOB 0 002 @ 09631463 n 0000 ;u 07124340 n 0000 | insulting terms of address for people who are stupid or irritating or ridiculous -09815455 18 n 01 assignee 0 004 @ 10402824 n 0000 @ 09627906 n 0000 ;c 08441203 n 0000 + 02228531 v 0101 | (law) the party to whom something is assigned (e.g., someone to whom a right or property is legally transferred) -09815677 18 n 01 assignor 0 002 @ 10402824 n 0000 ;c 08441203 n 0000 | (law) the party who makes an assignment -09815790 18 n 04 assistant 0 helper 1 help 0 supporter 1 035 @ 09632518 n 0000 + 02556126 v 0401 + 02547586 v 0301 + 02555434 v 0201 + 02547586 v 0201 + 00793250 a 0102 + 02547586 v 0102 + 02414710 v 0101 ~ 09610093 n 0000 ~ 09761068 n 0000 ~ 09780249 n 0000 ~ 09821831 n 0000 ~ 09843443 n 0000 ~ 10003782 n 0000 ~ 10005280 n 0000 ~ 10033082 n 0000 ~ 10067600 n 0000 ~ 10075693 n 0000 ~ 10097842 n 0000 ~ 10130584 n 0000 ~ 10161867 n 0000 ~ 10209616 n 0000 ~ 10241024 n 0000 ~ 10273438 n 0000 ~ 10291240 n 0000 ~ 10324560 n 0000 ~ 10398624 n 0000 ~ 10461280 n 0000 ~ 10482414 n 0000 ~ 10531109 n 0000 ~ 10569744 n 0000 ~ 10596348 n 0000 ~ 10669991 n 0000 ~ 10770309 n 0000 ~ 10776887 n 0000 | a person who contributes to the fulfillment of a need or furtherance of an effort or purpose; "my invaluable assistant"; "they hired additional help to finish the work" -09816654 18 n 01 assistant_professor 0 001 @ 10480730 n 0000 | a teacher or lower rank than an associate professor -09816771 18 n 01 associate 0 014 @ 09626238 n 0000 #m 08049401 n 0000 + 02470175 v 0102 ~ 09769803 n 0000 ~ 09776346 n 0000 ~ 09785042 n 0000 ~ 09846355 n 0000 ~ 09935434 n 0000 ~ 09935990 n 0000 ~ 09936215 n 0000 ~ 10307234 n 0000 ~ 10401829 n 0000 ~ 10590146 n 0000 ~ 10695050 n 0000 | a person who joins with others in some activity or endeavor; "he had to consult his associate before continuing" -09817174 18 n 01 associate 2 001 @ 10669991 n 0000 | a person with subordinate membership in a society, institution, or commercial enterprise; "associates in the law firm bill at a lower rate than do partners" -09817386 18 n 01 associate_professor 0 001 @ 10480730 n 0000 | a teacher lower in rank than a full professor but higher than an assistant professor -09817536 18 n 01 asthmatic 0 001 @ 00007846 n 0000 | a person suffering from asthma; "she is a chronic asthmatic"; "the painful gasps of a dying asthmatic" -09817694 18 n 01 astrogator 0 003 @ 10348365 n 0000 + 01933766 v 0101 + 01841947 v 0101 | the navigator of a spacecraft -09817816 18 n 02 astrologer 0 astrologist 0 004 @ 10102506 n 0000 + 05778131 n 0201 + 05778131 n 0101 ~i 11210105 n 0000 | someone who predicts the future by the positions of the planets and sun and Moon -09818022 18 n 03 astronaut 0 spaceman 0 cosmonaut 0 009 @ 09629752 n 0000 + 02646381 a 0101 + 02646381 a 0102 ~ 10629329 n 0000 ~i 10823369 n 0000 ~i 10986866 n 0000 ~i 11002191 n 0000 ~i 11297263 n 0000 ~i 11336364 n 0000 | a person trained to travel in a spacecraft; "the Russians called their astronauts cosmonauts" -09818343 18 n 03 astronomer 0 uranologist 0 stargazer 0 045 @ 10428004 n 0000 ;c 06095022 n 0000 + 02133297 v 0301 + 06095022 n 0202 ~ 09819291 n 0000 ~ 09819667 n 0000 ~i 10813986 n 0000 ~i 10816644 n 0000 ~i 10822027 n 0000 ~i 10849625 n 0000 ~i 10859485 n 0000 ~i 10861926 n 0000 ~i 10888891 n 0000 ~i 10909724 n 0000 ~i 10948478 n 0000 ~i 10960230 n 0000 ~i 10987724 n 0000 ~i 11023442 n 0000 ~i 11024419 n 0000 ~i 11025326 n 0000 ~i 11045898 n 0000 ~i 11046169 n 0000 ~i 11051376 n 0000 ~i 11064472 n 0000 ~i 11070387 n 0000 ~i 11101986 n 0000 ~i 11112628 n 0000 ~i 11116642 n 0000 ~i 11117451 n 0000 ~i 11141981 n 0000 ~i 11142614 n 0000 ~i 11182479 n 0000 ~i 11195619 n 0000 ~i 11204855 n 0000 ~i 11214707 n 0000 ~i 11215541 n 0000 ~i 11228486 n 0000 ~i 11247413 n 0000 ~i 11263337 n 0000 ~i 11275170 n 0000 ~i 11284216 n 0000 ~i 11295828 n 0000 ~i 11303522 n 0000 ~i 11337331 n 0000 ~i 11345539 n 0000 | a physicist who studies astronomy -09819291 18 n 01 astrophysicist 0 004 @ 09818343 n 0000 + 06097775 n 0101 ~i 11063309 n 0000 ~i 11063687 n 0000 | an astronomer who studies the physical properties of celestial bodies -09819477 18 n 02 cosmographer 0 cosmographist 0 005 @ 10560637 n 0000 + 06123126 n 0201 + 03113337 n 0201 + 06123126 n 0101 + 03113337 n 0101 | a scientist knowledgeable about cosmography -09819667 18 n 01 cosmologist 0 004 @ 09818343 n 0000 + 06163223 n 0101 + 06098195 n 0101 ~i 11125646 n 0000 | an astronomer who studies the evolution and space-time relations of the universe -09819860 18 n 02 atavist 0 throwback 0 003 @ 00004475 n 0000 + 01877182 a 0101 + 07343574 n 0101 | an organism that has the characteristics of a more primitive type of that organism -09820044 18 n 01 atheist 0 008 @ 10015897 n 0000 + 02826443 a 0101 + 01784217 a 0102 + 02826443 a 0103 + 01784217 a 0101 + 02826443 a 0102 + 05980256 n 0101 + 06223468 n 0101 | someone who denies the existence of god -09820263 18 n 02 athlete 0 jock 0 041 @ 09613191 n 0000 + 02907656 a 0101 ~ 09764381 n 0000 ~ 09786760 n 0000 ~ 09835230 n 0000 ~ 09835506 n 0000 ~ 09842047 n 0000 ~ 09929298 n 0000 ~ 09977326 n 0000 ~ 10101634 n 0000 ~ 10153594 n 0000 ~ 10179291 n 0000 ~ 10184505 n 0000 ~ 10193864 n 0000 ~ 10226803 n 0000 ~ 10242682 n 0000 ~ 10255459 n 0000 ~ 10377291 n 0000 ~ 10414768 n 0000 ~ 10480583 n 0000 ~ 10542888 n 0000 ~ 10586793 n 0000 ~ 10593521 n 0000 ~ 10604491 n 0000 ~ 10605253 n 0000 ~ 10610333 n 0000 ~ 10618342 n 0000 ~ 10638922 n 0000 ~ 10663996 n 0000 ~ 10671042 n 0000 ~ 10683349 n 0000 ~ 10683801 n 0000 ~ 10701180 n 0000 ~ 10746931 n 0000 ~ 10773394 n 0000 ~ 10782471 n 0000 ~i 10975583 n 0000 ~i 11164332 n 0000 ~i 11219293 n 0000 ~i 11341479 n 0000 ~i 11404666 n 0000 | a person trained to compete in sports -09821086 18 n 01 attache 0 004 @ 10631941 n 0000 #m 08402693 n 0000 ~ 09982760 n 0000 ~ 10316360 n 0000 | a specialist assigned to the staff of a diplomatic mission -09821253 18 n 04 attacker 0 aggressor 0 assailant 0 assaulter 0 027 @ 09633969 n 0000 + 01120069 v 0402 + 00862683 v 0406 + 01119169 v 0302 + 01120069 v 0301 + 00862683 v 0303 + 01118449 v 0202 + 01120069 v 0104 + 01118449 v 0101 + 01119169 v 0101 + 00862683 v 0101 + 00347610 v 0101 + 00019792 v 0101 ~ 09788073 n 0000 ~ 09826074 n 0000 ~ 09845589 n 0000 ~ 09861059 n 0000 ~ 09879297 n 0000 ~ 10160012 n 0000 ~ 10196725 n 0000 ~ 10293172 n 0000 ~ 10358124 n 0000 ~ 10507230 n 0000 ~ 10587378 n 0000 ~ 10609092 n 0000 ~ 10644179 n 0000 ~ 10659393 n 0000 | someone who attacks -09821831 18 n 03 attendant 0 attender 0 tender 0 038 @ 09815790 n 0000 + 02549847 v 0301 + 02540670 v 0204 + 02612762 v 0201 + 02540670 v 0104 ~ 09760609 n 0000 ~ 09832538 n 0000 ~ 09843716 n 0000 ~ 09848775 n 0000 ~ 09874862 n 0000 ~ 09886403 n 0000 ~ 09913110 n 0000 ~ 09971839 n 0000 ~ 09983053 n 0000 ~ 10062492 n 0000 ~ 10063461 n 0000 ~ 10064229 n 0000 ~ 10077504 n 0000 ~ 10129719 n 0000 ~ 10148165 n 0000 ~ 10260800 n 0000 ~ 10264928 n 0000 ~ 10268505 n 0000 ~ 10303385 n 0000 ~ 10381804 n 0000 ~ 10381981 n 0000 ~ 10391086 n 0000 ~ 10391248 n 0000 ~ 10503138 n 0000 ~ 10536021 n 0000 ~ 10568083 n 0000 ~ 10583250 n 0000 ~ 10643937 n 0000 ~ 10644062 n 0000 ~ 10655594 n 0000 ~ 10663549 n 0000 ~ 10722239 n 0000 ~ 10763985 n 0000 | someone who waits on or tends to or attends to the needs of another -09822640 18 n 02 attester 0 attestant 1 003 @ 10786033 n 0000 + 00820352 v 0201 + 00820352 v 0101 | someone who affirms or vouches for the correctness or truth or genuineness of something -09822830 18 n 01 attorney_general 0 002 @ 10249459 n 0000 ;c 08441203 n 0000 | the chief law officer of a country or state -09822955 18 n 01 auditor 0 003 @ 09761403 n 0000 + 00697062 v 0101 ~ 10211463 n 0000 | a qualified accountant who inspects the accounting records and practices of a business or other organization -09823153 18 n 01 auditor 2 002 @ 10665698 n 0000 + 00600235 v 0101 | a student who attends a course but does not take it for credit -09823287 18 n 02 augur 0 auspex 0 005 @ 10483530 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 + 00918471 v 0101 + 00871942 v 0109 | (ancient Rome) a religious official who interpreted omens to guide public policy -09823502 18 n 03 aunt 0 auntie 0 aunty 0 004 @ 10237069 n 0000 ! 10736091 n 0101 ~ 10145239 n 0000 ~ 10282845 n 0000 | the sister of your father or mother; the wife of your uncle -09823683 18 n 01 au_pair 0 002 @ 10103485 n 0000 ~ 09823832 n 0000 | a young foreigner who lives with a family in return for doing light housework -09823832 18 n 01 au_pair_girl 0 001 @ 09823683 n 0000 | a foreign girl serving as an au pair -09823927 18 n 01 auteur 0 001 @ 10088390 n 0000 | a filmmaker who has a personal style and keeps creative control over his or her works -09824065 18 n 01 authoress 0 001 @ 10794014 n 0000 | a woman author -09824135 18 n 02 authoritarian 0 dictator 1 004 @ 10379758 n 0000 + 00747135 v 0203 ~ 09853541 n 0000 ~ 10296444 n 0000 | a person who behaves in a tyrannical manner; "my boss is a dictator who makes everyone work overtime" -09824361 18 n 01 authority 0 007 @ 09617867 n 0000 ~ 09774266 n 0000 ~ 09956387 n 0000 ~ 10066732 n 0000 ~ 10175248 n 0000 ~ 10267941 n 0000 ~ 10298482 n 0000 | an expert whose views are taken as definitive; "he is an authority on corporate law" -09824609 18 n 01 authority 1 012 @ 00007846 n 0000 ;u 06295235 n 0000 ~ 09757311 n 0000 ~ 09784707 n 0000 ~ 09802844 n 0000 ~ 09824978 n 0000 ~ 09825096 n 0000 ~ 10290099 n 0000 ~ 10403768 n 0000 ~ 10541833 n 0000 ~ 10740017 n 0000 ~ 10785480 n 0000 | (usually plural) persons who exercise (administrative) control over others; "the authorities have issued a curfew" -09824978 18 n 01 authority_figure 0 001 @ 09824609 n 0000 | someone who is regarded as an authority by someone else -09825096 18 n 02 authorizer 0 authoriser 0 003 @ 09824609 n 0000 + 00803325 v 0202 + 00803325 v 0101 | an authority who authorizes (people or actions); "the agents report back to their authorizers" -09825296 18 n 01 autobiographer 0 002 @ 09855433 n 0000 + 06516087 n 0101 | someone who writes their own biography -09825413 18 n 01 autodidact 0 002 @ 00007846 n 0000 + 03005593 a 0101 | a person who has taught himself -09825519 18 n 03 automaton 1 zombi 1 zombie 1 004 @ 09606527 n 0000 + 01499999 a 0101 + 00480221 v 0101 + 00480221 v 0102 | someone who acts or responds in a mechanical or apathetic way; "only an automaton wouldn't have noticed" -09825750 18 n 05 automobile_mechanic 0 auto-mechanic 0 car-mechanic 0 mechanic 1 grease_monkey 0 001 @ 10521100 n 0000 | someone whose occupation is repairing and maintaining automobiles -09825939 18 n 01 automotive_engineer 0 001 @ 09615807 n 0000 | an engineer concerned with the design and construction of automobiles -09826074 18 n 02 avenger 0 retaliator 0 003 @ 09821253 n 0000 + 01153486 v 0203 + 01153486 v 0102 | someone who takes vengeance -09826204 18 n 05 aviator 0 aeronaut 0 airman 0 flier 1 flyer 1 016 @ 10605985 n 0000 + 01941093 v 0501 + 01941093 v 0401 + 05635188 n 0302 + 01941093 v 0102 ~ 09826605 n 0000 ~ 10433164 n 0000 ~i 10845248 n 0000 ~i 10852803 n 0000 ~i 10903722 n 0000 ~i 10940053 n 0000 ~i 10947403 n 0000 ~i 11064834 n 0000 ~i 11132948 n 0000 ~i 11182621 n 0000 ~i 11243907 n 0000 | someone who operates an aircraft -09826605 18 n 03 aviatrix 0 airwoman 0 aviatress 0 001 @ 09826204 n 0000 | a woman aviator -09826698 18 n 01 avower 0 002 @ 09610660 n 0000 + 00819923 v 0101 | someone who admits or acknowledges openly and boldly -09826821 18 n 01 ayah 0 002 @ 10024119 n 0000 ;r 08900535 n 0000 | (in India) a native nursemaid who looks after children -09826945 18 n 01 ayatollah 0 002 @ 10519494 n 0000 ;r 08910668 n 0000 | a high-ranking Shiite religious leader who is regarded as an authority on religious law and its interpretation and who has political power as well -09827166 18 n 01 baas 0 001 @ 10104209 n 0000 | South African term for `boss' -09827246 18 n 02 babu 0 baboo 0 001 @ 10287213 n 0000 | used as a Hindi courtesy title; equivalent to English `Mr' -09827363 18 n 03 baby 2 babe 1 sister 3 002 @ 10129825 n 0000 ;u 07157273 n 0000 | (slang) sometimes used as a term of address for attractive young women -09827519 18 n 01 baby 1 001 @ 10373998 n 0000 | the youngest member of a group (not necessarily young); "the baby of the family"; "the baby of the Supreme Court" -09827683 18 n 03 baby 0 babe 0 infant 0 015 @ 09918248 n 0000 + 15145586 n 0301 + 14427239 n 0301 + 15145586 n 0102 + 14427239 n 0102 + 02570267 v 0105 ~ 09861166 n 0000 ~ 09915577 n 0000 ~ 10107883 n 0000 ~ 10134396 n 0000 ~ 10353016 n 0000 ~ 10368291 n 0000 ~ 10397392 n 0000 ~ 10704238 n 0000 ~ 10766409 n 0000 | a very young child (birth to 1 year) who has not yet begun to walk or talk; "the baby began to cry again"; "she held the baby in her arms"; "it sounds simple, but when you have your own baby it is all so different" -09828216 18 n 01 baby 4 001 @ 01459791 n 0000 | an unborn child; a human fetus; "I felt healthy and very feminine carrying the baby"; "it was great to feel my baby moving about inside" -09828403 18 n 02 baby_boomer 0 boomer 0 002 @ 00007846 n 0000 #m 08371838 n 0000 | a member of the baby boom generation in the 1950s; "they expanded the schools for a generation of baby boomers" -09828600 18 n 02 baby_buster 0 buster 4 001 @ 00007846 n 0000 | a person born in the generation following the baby boom when the birth rate fell dramatically -09828760 18 n 04 baby_doctor 0 pediatrician 0 pediatrist 0 paediatrician 0 006 @ 10632576 n 0000 + 06061631 n 0402 + 06061631 n 0301 + 06061631 n 0201 ~i 11052186 n 0000 ~i 11311623 n 0000 | a specialist in the care of babies -09828988 18 n 01 baby_farmer 0 001 @ 10229498 n 0000 | someone who runs an establishment that houses and cares for babies for a fee -09829122 18 n 03 babyminder 0 baby_minder 0 minder 0 001 @ 10229498 n 0000 | a person who looks after babies (usually in the person's own home) while the babys' parents are working -09829305 18 n 03 babysitter 0 baby-sitter 0 sitter 0 004 @ 10229498 n 0000 + 02456270 v 0302 + 02456270 v 0201 + 02456270 v 0101 | a person engaged to care for children when the parents are not home -09829506 18 n 01 bacchant 0 003 @ 10759982 n 0000 ;c 07983170 n 0000 ;c 07979425 n 0000 | (classical mythology) a priest or votary of Bacchus -09829650 18 n 01 bacchante 0 003 @ 10759982 n 0000 ;c 07983170 n 0000 ;c 07979425 n 0000 | (classical mythology) a priestess or votary of Bacchus -09829798 18 n 02 bacchant 1 bacchanal 1 002 @ 10077593 n 0000 + 02656801 a 0101 | a drunken reveller; a devotee of Bacchus -09829923 18 n 02 bachelor 0 unmarried_man 0 004 @ 10287213 n 0000 + 15153353 n 0101 + 13967715 n 0101 + 02616118 v 0101 | a man who has never been married -09830080 18 n 02 bachelor_girl 0 bachelorette 0 001 @ 10787470 n 0000 | a young unmarried woman who lives alone -09830194 18 n 01 back 0 007 @ 10101634 n 0000 ;c 00468480 n 0000 ~ 10095265 n 0000 ~ 10498816 n 0000 ~ 10543161 n 0000 ~ 10689306 n 0000 ~ 10782248 n 0000 | (football) a person who plays in the backfield -09830400 18 n 01 backbencher 0 003 @ 10253995 n 0000 ;r 08860123 n 0000 + 02767956 n 0101 | a member of the House of Commons who is not a party leader -09830553 18 n 01 back_judge 0 001 @ 10101427 n 0000 | a football official -09830629 18 n 02 backpacker 0 packer 2 003 @ 10176111 n 0000 + 01926031 v 0202 + 02769748 n 0101 | a hiker who wears a backpack -09830759 18 n 02 backroom_boy 0 brain_truster 0 001 @ 09774266 n 0000 | an expert adviser involved in making important decisions but usually lacking official status -09830926 18 n 01 backscratcher 0 001 @ 10379376 n 0000 | someone who is willing to trade favors or services for mutual advantage -09831057 18 n 01 backseat_driver 0 001 @ 10305192 n 0000 | a meddler who insists on giving unwanted advice -09831166 18 n 01 backslapper 0 002 @ 10059582 n 0000 + 02374572 v 0101 | someone who demonstrates enthusiastic or excessive cordiality -09831303 18 n 01 backstroker 0 002 @ 10683349 n 0000 + 01962375 v 0101 | someone who swims the backstroke -09831411 18 n 01 bacteriologist 0 013 @ 09855630 n 0000 + 06046692 n 0101 ~i 10867708 n 0000 ~i 10953605 n 0000 ~i 10972825 n 0000 ~i 11010936 n 0000 ~i 11108400 n 0000 ~i 11177151 n 0000 ~i 11209019 n 0000 ~i 11257697 n 0000 ~i 11375909 n 0000 ~i 11402801 n 0000 ~i 11407302 n 0000 | a biologist who studies bacteria -09831731 18 n 01 bad_egg 0 003 @ 09831962 n 0000 ;u 07157273 n 0000 ! 10138242 n 0101 | (old-fashioned slang) a bad person -09831856 18 n 01 bad_guy 0 002 @ 00007846 n 0000 ! 10138369 n 0101 | any person who is not on your side -09831962 18 n 01 bad_person 0 016 @ 00007846 n 0000 ! 10138767 n 0101 ~ 09633969 n 0000 ~ 09831731 n 0000 ~ 09997939 n 0000 ~ 10008716 n 0000 ~ 10257647 n 0000 ~ 10395926 n 0000 ~ 10451858 n 0000 ~ 10554666 n 0000 ~ 10575241 n 0000 ~ 10590977 n 0000 ~ 10615702 n 0000 ~ 10723474 n 0000 ~ 10748506 n 0000 ~ 10752719 n 0000 | a person who does harm to others -09832321 18 n 02 bag 0 old_bag 0 001 @ 10739636 n 0000 | an ugly or ill-tempered woman; "he was romancing the old bag for her money" -09832456 18 n 01 baggage 0 001 @ 10787470 n 0000 | a worthless or immoral woman -09832538 18 n 01 baggageman 0 001 @ 09821831 n 0000 | an attendant who takes care of baggage -09832633 18 n 01 bag_lady 0 001 @ 10182190 n 0000 | a homeless woman who carries all her possessions with her in shopping bags -09832762 18 n 01 bagman 0 001 @ 10503247 n 0000 | a racketeer assigned to collect or distribute payoff money -09832873 18 n 01 Bahai 0 002 @ 10016103 n 0000 @ 10694258 n 0000 | a teacher of or believer in Bahaism -09832978 18 n 01 bailee 0 002 @ 09777353 n 0000 + 02293732 v 0101 | the agent to whom property involved in a bailment is delivered -09833111 18 n 01 bailiff 0 002 @ 10372373 n 0000 + 00589318 n 0101 | an officer of the court who is employed to execute writs and processes and make arrests etc. -09833275 18 n 01 bailor 0 002 @ 10001058 n 0000 + 00890403 v 0101 | the person who delivers personal property (goods or money) in trust to the bailee in a bailment -09833441 18 n 01 bairn 0 002 @ 09917593 n 0000 ;r 08890097 n 0000 | a child: son or daughter -09833536 18 n 02 baker 0 bread_maker 0 002 @ 10605985 n 0000 + 01663749 v 0101 | someone who bakes bread or cake -09833651 18 n 01 baker 1 002 @ 10309896 n 0000 + 01663749 v 0101 | someone who bakes commercially -09833751 18 n 01 balancer 0 003 @ 09764381 n 0000 + 01602318 v 0102 + 02743020 v 0101 | an acrobat who balances himself in difficult positions -09833896 18 n 03 baldhead 0 baldpate 0 baldy 0 001 @ 00007846 n 0000 | a person whose head is bald -09833997 18 n 03 balker 0 baulker 0 noncompliant 0 004 @ 00007846 n 0000 + 02583545 v 0203 + 02583545 v 0102 ~ 10351491 n 0000 | a person who refuses to comply -09834159 18 n 01 ball_boy 0 001 @ 10285313 n 0000 | a boy who retrieves balls for tennis players -09834258 18 n 02 ball-buster 0 ball-breaker 0 001 @ 10787470 n 0000 | a demanding woman who destroys men's confidence -09834378 18 n 02 ball_carrier 0 runner 5 004 @ 10101634 n 0000 ;c 00468480 n 0000 ~ 10404242 n 0000 ~ 10544067 n 0000 | (football) the player who is carrying (and trying to advance) the ball on an offensive play -09834592 18 n 02 ballerina 0 danseuse 0 002 @ 09834699 n 0000 ~ 10471640 n 0000 | a female ballet dancer -09834699 18 n 01 ballet_dancer 0 005 @ 09989502 n 0000 #m 08187707 n 0000 ~ 09834592 n 0000 ~ 09991406 n 0000 ~i 10953344 n 0000 | a trained dancer who is a member of a ballet company -09834885 18 n 01 ballet_master 0 001 @ 09989502 n 0000 | a man who directs and teaches and rehearses dancers for a ballet company -09835017 18 n 01 ballet_mistress 0 001 @ 09989502 n 0000 | a woman who directs and teaches and rehearses dancers for a ballet company -09835153 18 n 01 balletomane 0 001 @ 10059582 n 0000 | a ballet enthusiast -09835230 18 n 01 ball_hawk 0 001 @ 09820263 n 0000 | a team athlete who is skilled at stealing or catching the ball -09835348 18 n 01 balloonist 0 005 @ 10605985 n 0000 + 02782093 n 0101 + 01948659 v 0101 ~i 11187930 n 0000 ~i 11188123 n 0000 | someone who flies a balloon -09835506 18 n 02 ballplayer 0 baseball_player 0 025 @ 09820263 n 0000 @ 10439851 n 0000 ;c 00471613 n 0000 ~ 09841696 n 0000 ~ 09843956 n 0000 ~ 10086568 n 0000 ~ 10267561 n 0000 ~ 10283931 n 0000 ~ 10321340 n 0000 ~ 10435988 n 0000 ~ 10742997 n 0000 ~i 10807016 n 0000 ~i 10848946 n 0000 ~i 10935567 n 0000 ~i 10993350 n 0000 ~i 11155196 n 0000 ~i 11167269 n 0000 ~i 11168974 n 0000 ~i 11197944 n 0000 ~i 11220664 n 0000 ~i 11265731 n 0000 ~i 11276100 n 0000 ~i 11389901 n 0000 ~i 11402341 n 0000 ~i 11403456 n 0000 | an athlete who plays baseball -09836057 18 n 01 bulimic 0 002 @ 10595647 n 0000 + 02671885 a 0101 | a person suffering from bulimia -09836160 18 n 02 bullfighter 0 toreador 0 006 @ 00007846 n 0000 ~ 09836343 n 0000 ~ 09836519 n 0000 ~ 09836658 n 0000 ~ 09836786 n 0000 ~ 09836976 n 0000 | someone who fights bulls -09836343 18 n 01 banderillero 0 001 @ 09836160 n 0000 | the bullfighter who implants decorated darts (banderillas) into the neck or shoulders of the bull during a bull fight -09836519 18 n 01 matador 0 001 @ 09836160 n 0000 | the principal bullfighter who is appointed to make the final passes and kill the bull -09836658 18 n 01 novillero 0 001 @ 09836160 n 0000 | a bullfighter who is required to fight bulls less than four years of age -09836786 18 n 01 picador 0 002 @ 09836160 n 0000 @ 10185793 n 0000 | the horseman who pricks the bull with a lance early in the bullfight to goad the bull and to make it keep its head low -09836976 18 n 01 torero 0 001 @ 09836160 n 0000 | a matador or one of the supporting team during a bull fight -09837088 18 n 02 bandit 0 brigand 0 001 @ 10707804 n 0000 | an armed thief who is (usually) a member of a band -09837201 18 n 01 bandleader 0 005 @ 09952539 n 0000 ~i 11007332 n 0000 ~i 11044939 n 0000 ~i 11180209 n 0000 ~i 11296429 n 0000 | the leader of a dance band -09837360 18 n 01 bandmaster 0 002 @ 09952539 n 0000 ~i 11308988 n 0000 | the conductor of a band -09837459 18 n 01 bandsman 0 002 @ 10340312 n 0000 ;c 08199025 n 0000 | a player in a band (especially a military band) -09837580 18 n 01 bank_commissioner 0 001 @ 09943811 n 0000 | a commissioner appointed to supervise banks; a state superintendent of banks -09837720 18 n 01 banker 1 001 @ 09624980 n 0000 | the person in charge of the bank in a gambling game -09837824 18 n 01 banker 0 004 @ 10090020 n 0000 + 02343056 v 0101 ~ 10698970 n 0000 ~i 11272415 n 0000 | a financier who owns or is an executive in a bank -09837981 18 n 01 bank_examiner 0 001 @ 10067968 n 0000 | an examiner appointed to audit the accounts of banks in a given jurisdiction -09838117 18 n 01 bank_guard 0 001 @ 10770059 n 0000 | a security guard at a bank -09838200 18 n 01 bank_manager 0 001 @ 10014939 n 0000 | manager of a branch office of a bank -09838295 18 n 01 bank_robber 0 001 @ 10534586 n 0000 | a robber of banks -09838370 18 n 02 bankrupt 0 insolvent 0 002 @ 10273064 n 0000 + 02026629 a 0101 | someone who has insufficient assets to cover their debts -09838511 18 n 01 bantamweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 119 pounds -09838621 18 n 01 bantamweight 1 001 @ 10793168 n 0000 | weighs 115-126 pounds -09838701 18 n 01 Baptist 0 007 @ 09679316 n 0000 #m 08089420 n 0000 + 02954633 a 0101 + 01037819 n 0101 ~ 09677830 n 0000 ~ 10362557 n 0000 ~ 10628097 n 0000 | follower of Baptistic doctrines -09838895 18 n 01 barber 0 002 @ 10155849 n 0000 + 00042792 v 0101 | a hairdresser who cuts hair and shaves beards as a trade -09839022 18 n 01 bard 0 001 @ 10444194 n 0000 | a lyric poet -09839085 18 n 01 bar_fly 0 001 @ 10034201 n 0000 | a drinker who frequents bars -09839167 18 n 01 bargainer 1 004 @ 10351874 n 0000 + 00764782 v 0101 + 02259829 v 0102 ~ 10155600 n 0000 | negotiator of the terms of a transaction; "he is a hard bargainer" -09839343 18 n 01 bargain_hunter 0 001 @ 10592397 n 0000 | a shopper who hunts for bargains -09839436 18 n 02 baritone 0 barytone 0 001 @ 10599806 n 0000 | a male singer -09839515 18 n 01 barker 0 002 @ 10482220 n 0000 + 01047745 v 0101 | someone who stands in front of a show (as at a carnival) and gives a loud colorful sales talk to potential customers -09839702 18 n 01 barmaid 0 001 @ 09841188 n 0000 | a female bartender -09839774 18 n 01 barnburner 0 001 @ 09810707 n 0000 | someone who burns down a barn -09839860 18 n 03 barnstormer 0 stunt_flier 0 stunt_pilot 0 002 @ 10433164 n 0000 + 01094898 v 0101 | a pilot who travels around the country giving exhibits of stunt flying and parachuting -09840050 18 n 04 barnstormer 1 playactor 0 play-actor 0 trouper 0 002 @ 09765278 n 0000 + 01719921 v 0204 | an actor who travels around the country presenting plays -09840217 18 n 09 baron 1 big_businessman 0 business_leader 0 king 1 magnate 0 mogul 1 power 1 top_executive 0 tycoon 0 002 @ 09882007 n 0000 ~ 10374849 n 0000 | a very wealthy or powerful businessman; "an oil baron" -09840435 18 n 01 baron 0 001 @ 10412910 n 0000 | a British peer of the lowest rank -09840520 18 n 01 baron 2 002 @ 10271677 n 0000 + 01283508 a 0101 | a nobleman (in various countries) of varying rank -09840639 18 n 02 baronet 0 Bart 0 002 @ 09807754 n 0000 + 02398681 v 0101 | a member of the British order of honor; ranks below a baron but above a knight; "since he was a baronet he had to be addressed as Sir Henry Jones, Bart." -09840871 18 n 02 barrator 0 barrater 0 001 @ 09633969 n 0000 | someone guilty of barratry -09840963 18 n 01 barrister 0 004 @ 10249950 n 0000 ;c 08441203 n 0000 ~ 10235385 n 0000 ~ 10581890 n 0000 | a British or Canadian lawyer who speaks in the higher courts of law on behalf of either the defense or prosecution -09841188 18 n 05 bartender 0 barman 0 barkeep 0 barkeeper 0 mixologist 0 004 @ 10053808 n 0000 + 05638778 n 0501 ~ 09839702 n 0000 ~ 10490421 n 0000 | an employee who mixes and serves alcoholic drinks at a bar -09841400 18 n 01 barterer 0 002 @ 10720453 n 0000 + 02259241 v 0101 | a trader who exchanges goods and not money -09841515 18 n 02 baseball_coach 0 baseball_manager 0 005 @ 09931640 n 0000 ;c 00471613 n 0000 ~ 09844221 n 0000 ~ 09932098 n 0000 ~i 11316429 n 0000 | a coach of baseball players -09841696 18 n 02 base_runner 0 runner 2 002 @ 09835506 n 0000 ;c 00471613 n 0000 | a baseball player on the team at bat who is on base (or attempting to reach a base) -09841865 18 n 01 basileus 0 001 @ 10541229 n 0000 | a ruler of the eastern Roman Empire -09841955 18 n 01 basketball_coach 0 001 @ 09931640 n 0000 | a coach of basketball players -09842047 18 n 03 basketball_player 0 basketeer 0 cager 0 008 @ 09820263 n 0000 + 02802215 n 0201 + 00190431 n 0201 ~ 09904556 n 0000 ~ 10033888 n 0000 ~ 10039946 n 0000 ~ 10105733 n 0000 ~ 10150281 n 0000 | an athlete who plays basketball -09842288 18 n 02 basketweaver 0 basketmaker 0 001 @ 10284064 n 0000 | someone skilled in weaving baskets -09842395 18 n 01 Basket_Maker 0 001 @ 09627462 n 0000 | early Amerindians related to the Pueblo; known for skill in making baskets -09842528 18 n 02 bass 0 basso 0 001 @ 10599806 n 0000 | an adult male singer with the lowest voice -09842629 18 n 01 bassist 0 001 @ 10340312 n 0000 | a musician who play the bass viol -09842716 18 n 01 bassoonist 0 002 @ 10340312 n 0000 + 02804610 n 0101 | a musician who plays the bassoon -09842823 18 n 06 bastard 1 by-blow 0 love_child 0 illegitimate_child 0 illegitimate 0 whoreson 0 004 @ 10373998 n 0000 + 01407909 a 0101 + 00818253 v 0101 + 00818253 v 0102 | the illegitimate offspring of unmarried parents -09843048 18 n 02 baster 0 tacker 0 003 @ 10584318 n 0000 + 01331348 v 0202 + 01357429 v 0201 | a sewer who fastens a garment with long loose stitches -09843200 18 n 01 baster 1 001 @ 10534277 n 0000 | a cook who bastes roasting meat with melted fat or gravy -09843309 18 n 01 baroness 0 001 @ 10242791 n 0000 | a noblewoman who holds the rank of baron or who is the wife or widow of a baron -09843443 18 n 01 bat_boy 0 003 @ 10285313 n 0000 @ 09815790 n 0000 ;c 00471613 n 0000 | (baseball) a boy who takes care of bats and other baseball equipment -09843602 18 n 01 bather 1 003 @ 00007846 n 0000 + 00037919 v 0101 + 00035603 v 0101 | a person who takes a bath -09843716 18 n 01 batman 0 001 @ 09821831 n 0000 | an orderly assigned to serve a British military officer -09843824 18 n 02 baton_twirler 0 twirler 1 003 @ 10415638 n 0000 + 02048051 v 0204 ~ 10036802 n 0000 | someone who twirls a baton -09843956 18 n 04 batter 0 hitter 0 slugger 0 batsman 0 009 @ 09835506 n 0000 ;c 00471613 n 0000 + 01415585 v 0301 + 01413173 v 0101 ~ 09880338 n 0000 ~ 10007684 n 0000 ~ 10434160 n 0000 ~ 10684311 n 0000 ~ 10775771 n 0000 | (baseball) a ballplayer who is batting -09844221 18 n 01 batting_coach 0 002 @ 09841515 n 0000 ;c 00471613 n 0000 | (baseball) someone who teaches batters how to bat better -09844356 18 n 02 battle-ax 0 battle-axe 0 001 @ 10780632 n 0000 | a sharp-tongued domineering wife -09844457 18 n 01 Bavarian 0 002 @ 09747722 n 0000 + 08771596 n 0101 | a native or an inhabitant of Bavaria -09844566 18 n 01 bawler 1 002 @ 10773126 n 0000 + 00066862 v 0101 | a loud weeper; "their new baby is a real bawler" -09844685 18 n 01 beachcomber 0 001 @ 10744544 n 0000 | a vagrant living on a beach -09844770 18 n 01 beadle 0 002 @ 10372373 n 0000 ;r 08860123 n 0000 | a minor parish official who serves a ceremonial function -09844898 18 n 02 beadsman 0 bedesman 0 001 @ 10464052 n 0000 | a person who is paid to pray for the soul of another -09845016 18 n 01 bean_counter 0 002 @ 09761403 n 0000 @ 09880427 n 0000 | an accountant or bureaucrat who is believed to place undue emphasis on the control of expenditures -09845191 18 n 01 bear 0 002 @ 10216106 n 0000 ! 09878921 n 0101 | an investor with a pessimistic market outlook; an investor who expects prices to fall and so sells now in order to buy later at a lower price -09845401 18 n 01 beard 0 001 @ 00007846 n 0000 | a person who diverts suspicion from someone (especially a woman who accompanies a male homosexual in order to conceal his homosexuality) -09845589 18 n 05 beast 0 wolf 1 savage 1 brute 0 wildcat 0 003 @ 09821253 n 0000 + 01263013 a 0306 + 01120900 v 0301 | a cruelly rapacious person -09845737 18 n 01 beater 0 001 @ 09632518 n 0000 | a worker who rouses wild game from under cover for a hunter -09845849 18 n 02 beatnik 0 beat 0 002 @ 09957834 n 0000 #m 08369615 n 0000 | a member of the beat generation; a nonconformist in dress and behavior -09845999 18 n 02 beautician 0 cosmetician 1 003 @ 09974648 n 0000 + 04683814 n 0101 ~ 10290919 n 0000 | someone who works in a beauty parlor -09846142 18 n 01 beauty_consultant 0 001 @ 09774266 n 0000 | someone who gives you advice about your personal appearance -09846265 18 n 01 bedfellow 0 001 @ 00007846 n 0000 | a person with whom you share a bed -09846355 18 n 01 bedfellow 1 001 @ 09816771 n 0000 | a temporary associate; "politics makes strange bedfellows" -09846469 18 n 02 Bedouin 0 Beduin 0 002 @ 10359759 n 0000 @ 09729530 n 0000 | a member of a nomadic tribe of Arabs -09846586 18 n 03 bedwetter 0 bed_wetter 0 wetter 1 002 @ 10435716 n 0000 + 00072730 v 0301 | someone suffering from enuresis; someone who urinates while asleep in bed -09846755 18 n 03 beekeeper 0 apiarist 0 apiculturist 0 002 @ 10078806 n 0000 + 00916285 n 0302 | a farmer who keeps bees for their honey -09846894 18 n 02 beer_drinker 0 ale_drinker 0 001 @ 10034201 n 0000 | someone whose favorite drink is beer or ale -09847010 18 n 02 beggar 0 mendicant 0 010 @ 10409011 n 0000 + 00714437 a 0201 + 02025718 a 0101 + 02317970 v 0101 ~ 09847267 n 0000 ~ 09847344 n 0000 ~i 10251002 n 0000 ~ 10330189 n 0000 ~ 10396337 n 0000 ~ 10550551 n 0000 | a pauper who lives by begging -09847267 18 n 01 beggarman 0 001 @ 09847010 n 0000 | a man who is a beggar -09847344 18 n 01 beggarwoman 0 001 @ 09847010 n 0000 | a woman who is a beggar -09847425 18 n 01 begum 0 002 @ 10243137 n 0000 @ 09682291 n 0000 | a Muslim woman of high rank in India or Pakistan -09847543 18 n 02 beldam 0 beldame 0 001 @ 10377021 n 0000 | a woman of advanced age -09847629 18 n 01 bel_esprit 0 001 @ 09621545 n 0000 | a witty or clever person with a fine mind -09847727 18 n 03 believer 0 worshiper 0 worshipper 0 016 @ 09628382 n 0000 #m 08146782 n 0000 + 02613275 v 0301 + 01778990 v 0301 + 02613275 v 0201 + 01778990 v 0201 + 00684273 v 0101 ~ 09848110 n 0000 ~ 10010525 n 0000 ~ 10329579 n 0000 ~ 10343554 n 0000 ~ 10366383 n 0000 ~ 10396594 n 0000 ~ 10432532 n 0000 ~ 10675258 n 0000 ~ 10707134 n 0000 | a person who has religious faith -09848110 18 n 01 theist 0 005 @ 09847727 n 0000 + 02931345 a 0101 + 02931345 a 0102 + 06223669 n 0101 ~ 10452535 n 0000 | one who believes in the existence of a god or gods -09848285 18 n 02 Taoist 0 Tao 0 007 @ 10016103 n 0000 #m 08098346 n 0000 #m 08098499 n 0000 + 08098499 n 0101 + 08098346 n 0101 + 06243096 n 0101 + 05977340 n 0101 | an adherent of any branch of Taoism -09848489 18 n 02 believer 1 truster 0 011 @ 10677713 n 0000 + 00721098 v 0202 + 00683280 v 0101 ~ 09756400 n 0000 ~ 09799461 n 0000 ~ 09937802 n 0000 ~ 09955406 n 0000 ~ 10067867 n 0000 ~ 10200246 n 0000 ~ 10286749 n 0000 ~ 10757817 n 0000 | a supporter who accepts something as true -09848775 18 n 03 bellboy 0 bellman 0 bellhop 0 001 @ 09821831 n 0000 | someone employed as an errand boy and luggage carrier around hotels -09848916 18 n 01 bell_captain 0 001 @ 10676877 n 0000 | the supervisor of bellboys in a hotel -09849012 18 n 01 belle 0 001 @ 10129825 n 0000 | a young woman who is the most charming and beautiful of several rivals; "she was the belle of the ball" -09849167 18 n 01 bell_founder 0 001 @ 10107778 n 0000 | a person who casts metal bells -09849256 18 n 01 bell_ringer 0 001 @ 10340312 n 0000 | someone who plays musical handbells -09849349 18 n 01 bellwether 0 001 @ 09623038 n 0000 | someone who assumes leadership of a movement or activity -09849462 18 n 03 belly_dancer 0 exotic_belly_dancer 0 exotic_dancer 3 001 @ 09989502 n 0000 | a woman who performs a solo belly dance -09849598 18 n 05 beloved 0 dear 0 dearest 0 honey 0 love 0 005 @ 09622302 n 0000 + 01775535 v 0501 + 01775164 v 0501 + 01462324 a 0203 + 01462324 a 0101 | a beloved person; used as terms of endearment -09849801 18 n 01 belt_maker 0 001 @ 10284064 n 0000 | a maker of belts -09849874 18 n 01 bench_warmer 0 002 @ 10671042 n 0000 ;c 00523513 n 0000 | (sports) a substitute who seldom plays -09849990 18 n 02 benedick 0 benedict 1 001 @ 10193967 n 0000 | a newly married man (especially one who has long been a bachelor) -09850121 18 n 02 beneficiary 0 donee 0 006 @ 09627906 n 0000 + 02201521 v 0101 ~ 09933972 n 0000 ~ 10010632 n 0000 ~ 10253611 n 0000 ~ 10414612 n 0000 | the recipient of funds or other benefits -09850317 18 n 01 Berber 0 003 @ 09634494 n 0000 ~ 09682967 n 0000 ~ 10530475 n 0000 | a member of an indigenous people of northern Africa -09850457 18 n 02 bereaved 0 bereaved_person 0 001 @ 00007846 n 0000 | a person who has suffered the death of someone they loved; "the bereaved do not always need to be taken care of" -09850642 18 n 01 berk 0 002 @ 10667187 n 0000 ;r 08860123 n 0000 | a stupid person who is easy to take advantage of -09850760 18 n 02 berserker 0 berserk 0 001 @ 09730204 n 0000 | one of the ancient Norse warriors legendary for working themselves into a frenzy before a battle and fighting with reckless savagery and insane fury -09850974 18 n 01 besieger 0 002 @ 10055847 n 0000 + 01127411 v 0101 | an enemy who lays siege to your position -09851087 18 n 01 besieger 1 001 @ 10420031 n 0000 | an energetic petitioner -09851165 18 n 02 best 0 topper 2 003 @ 00007846 n 0000 + 02687385 v 0202 + 02669081 v 0206 | the person who is most outstanding or excellent; someone who tops all others; "he could beat the best of them" -09851371 18 n 01 best_friend 0 001 @ 10112591 n 0000 | the one friend who is closest to you -09851465 18 n 01 best_man 0 002 @ 10148165 n 0000 #m 08256735 n 0000 | the principal groomsman at a wedding -09851575 18 n 01 betrothed 0 004 @ 09622302 n 0000 + 00158110 a 0102 ~ 10085869 n 0000 ~ 10085970 n 0000 | the person to whom you are engaged -09851719 18 n 01 better 1 001 @ 10676018 n 0000 | a superior person having claim to precedence; "the common man has been kept in his place by his betters" -09851876 18 n 04 bettor 0 better 0 wagerer 0 punter 1 007 @ 10118844 n 0000 + 01139104 v 0406 + 01155687 v 0302 + 01155687 v 0201 + 01155687 v 0101 ~ 09852081 n 0000 ~ 09888832 n 0000 | someone who bets -09852081 18 n 01 taker 1 002 @ 09851876 n 0000 + 00669762 v 0101 | one who takes a bet or wager -09852179 18 n 01 bey 0 001 @ 10140314 n 0000 | the governor of a district or province in the Ottoman Empire -09852289 18 n 01 bey 1 001 @ 10287213 n 0000 | (formerly) a title of respect for a man in Turkey or Egypt; "he introduced me to Ahmet Bey" -09852430 18 n 02 B-girl 0 bar_girl 0 001 @ 10787470 n 0000 | a woman employed by a bar to act as a companion to men customers -09852558 18 n 01 bibliographer 0 002 @ 10557854 n 0000 + 06486630 n 0101 | someone trained in compiling bibliographies -09852679 18 n 03 bibliophile 0 booklover 0 book_lover 0 002 @ 10557854 n 0000 + 02662933 a 0101 | someone who loves (and usually collects) books -09852826 18 n 02 bibliopole 0 bibliopolist 0 002 @ 10720453 n 0000 + 02663040 a 0101 | a dealer in secondhand books (especially rare or curious books) -09852979 18 n 01 bibliotist 0 002 @ 10560637 n 0000 + 05998526 n 0101 | someone who engages in bibliotics -09853087 18 n 01 bidder 0 002 @ 09607280 n 0000 + 02298632 v 0102 | someone who makes an offer -09853184 18 n 01 bidder 1 003 @ 09875353 n 0000 + 02300060 v 0101 ~ 10464870 n 0000 | someone who makes a bid at cards -09853305 18 n 01 bigamist 0 003 @ 10640620 n 0000 + 13964466 n 0101 + 00775095 n 0101 | someone who marries one person while already legally married to another -09853467 18 n 01 big_brother 0 001 @ 09876454 n 0000 | an older brother -09853541 18 n 01 Big_Brother 1 001 @ 09824135 n 0000 | an authoritarian leader and invader of privacy -09853645 18 n 01 bigot 0 007 @ 10402086 n 0000 ~ 09912075 n 0000 ~ 09912243 n 0000 ~ 10182812 n 0000 ~ 10502950 n 0000 ~ 10573957 n 0000 ~ 10576316 n 0000 | a prejudiced person who is intolerant of any opinions differing from his own -09853881 18 n 08 big_shot 0 big_gun 0 big_wheel 0 big_cheese 0 big_deal 0 big_enchilada 0 big_fish 0 head_honcho 0 004 @ 10200781 n 0000 ;u 07075172 n 0000 ~ 10239928 n 0000 ~ 10678937 n 0000 | an important influential person; "he thinks he's a big shot"; "she's a big deal in local politics"; "the Qaeda commander is a very big fish" -09854218 18 n 01 big_sister 0 001 @ 10602985 n 0000 | an older sister -09854290 18 n 02 bilingual 0 bilingualist 0 002 @ 10264219 n 0000 + 01545777 a 0101 | a person who speaks two languages fluently -09854421 18 n 01 billiard_player 0 001 @ 10439851 n 0000 | someone who plays billiards -09854510 18 n 03 bill_poster 0 poster 0 bill_sticker 0 004 @ 09632518 n 0000 + 01591621 v 0201 + 00991683 v 0201 + 02385634 v 0201 | someone who pastes up bills or placards on walls or billboards -09854708 18 n 01 bimbo 0 001 @ 10129825 n 0000 | a young woman indulged by rich and powerful older men -09854813 18 n 01 bimetallist 0 002 @ 10328123 n 0000 + 13373746 n 0101 | an advocate of bimetallism -09854915 18 n 01 biochemist 0 023 @ 09913824 n 0000 + 06079620 n 0101 ~ 10061195 n 0000 ~i 10891029 n 0000 ~i 10915173 n 0000 ~i 10986022 n 0000 ~i 11035363 n 0000 ~i 11052498 n 0000 ~i 11059593 n 0000 ~i 11077484 n 0000 ~i 11100462 n 0000 ~i 11110617 n 0000 ~i 11133938 n 0000 ~i 11177873 n 0000 ~i 11185816 n 0000 ~i 11209990 n 0000 ~i 11211696 n 0000 ~i 11230977 n 0000 ~i 11280653 n 0000 ~i 11328085 n 0000 ~i 11332892 n 0000 ~i 11373672 n 0000 ~i 11387362 n 0000 | someone with special training in biochemistry -09855433 18 n 01 biographer 0 006 @ 10794014 n 0000 + 06515827 n 0101 ~ 09825296 n 0000 ~ 10155692 n 0000 ~i 11240139 n 0000 ~i 11320631 n 0000 | someone who writes an account of a person's life -09855630 18 n 02 biologist 0 life_scientist 0 029 @ 10560637 n 0000 ;c 06037666 n 0000 + 06037298 n 0201 + 11473488 n 0101 + 06037666 n 0101 ~ 09831411 n 0000 ~ 09868270 n 0000 ~ 09987045 n 0000 ~ 10043163 n 0000 ~ 10126424 n 0000 ~ 10313580 n 0000 ~ 10327143 n 0000 ~ 10346514 n 0000 ~ 10353928 n 0000 ~ 10429965 n 0000 ~ 10503818 n 0000 ~ 10620437 n 0000 ~ 10693824 n 0000 ~ 10758207 n 0000 ~ 10806222 n 0000 ~i 10839131 n 0000 ~i 10883688 n 0000 ~i 10884597 n 0000 ~i 10928810 n 0000 ~i 11021667 n 0000 ~i 11069534 n 0000 ~i 11100619 n 0000 ~i 11190954 n 0000 ~i 11224877 n 0000 | (biology) a scientist who studies living organisms -09856267 18 n 01 biophysicist 0 002 @ 10428004 n 0000 + 06097478 n 0101 | a physicist who applies the methods of physics to biology -09856401 18 n 01 bird_fancier 0 001 @ 10078131 n 0000 | a person with a strong interest in birds -09856500 18 n 02 bird_watcher 0 birder 0 003 @ 09786585 n 0000 + 01139865 v 0201 + 01139865 v 0102 | a person who identifies and studies birds in their natural habitats -09856671 18 n 01 birth 0 001 @ 00007846 n 0000 | a baby born; an offspring; "the overall rate of incidence of Down's syndrome is one in every 800 births" -09856827 18 n 02 birth-control_campaigner 0 birth-control_reformer 0 002 @ 10515194 n 0000 ~i 11320044 n 0000 | a social reformer who advocates birth control and family planning -09857007 18 n 02 bisexual 0 bisexual_person 0 005 @ 09629246 n 0000 + 01203147 a 0101 ~ 10172080 n 0000 ~ 10487710 n 0000 ~ 10684446 n 0000 | a person who is sexually attracted to both sexes -09857200 18 n 01 bishop 0 021 @ 10470779 n 0000 ;c 08087981 n 0000 ;c 08086356 n 0000 ;c 08083599 n 0000 + 02721057 a 0101 ~ 09805151 n 0000 ~ 09894143 n 0000 ~ 10013811 n 0000 ~ 10061431 n 0000 ~ 10068537 n 0000 ~ 10068682 n 0000 ~ 10472690 n 0000 ~ 10672540 n 0000 ~ 10750524 n 0000 ~i 10815648 n 0000 ~i 10847125 n 0000 ~i 10962837 n 0000 ~i 11070994 n 0000 ~i 11160055 n 0000 ~i 11205797 n 0000 ~i 11355669 n 0000 | a senior member of the Christian clergy having spiritual and administrative authority; appointed in Christian churches to oversee priests or ministers; considered in some churches to be successors of the twelve Apostles of Christ -09857852 18 n 01 biter 0 003 @ 00007846 n 0000 + 01445932 v 0101 ~ 10357484 n 0000 | someone who bites -09857957 18 n 01 Black_and_Tan 0 001 @ 10512372 n 0000 | an English recruit (who wore a uniform that was black and tan) serving in the Irish constabulary to suppress the Sinn Fein rebellion of 1919 to 1921 -09858165 18 n 01 black_belt 0 001 @ 09617867 n 0000 | a person who attained the rank of expert in the martial arts (judo or karate) -09858299 18 n 03 blackmailer 0 extortioner 0 extortionist 0 005 @ 09977660 n 0000 + 01061726 n 0301 + 00784388 n 0301 + 02581073 v 0101 + 02241767 v 0101 | a criminal who extorts money from someone by threatening to expose embarrassing information about them -09858560 18 n 01 black_marketeer 0 003 @ 10677271 n 0000 #m 08425173 n 0000 + 02246166 v 0101 | someone who engages illegally in trade in scarce or controlled commodities -09858733 18 n 01 Black_Muslim 0 003 @ 10315837 n 0000 #m 08476629 n 0000 ~i 11194749 n 0000 | an activist member of a largely American group of Blacks called the Nation of Islam -09858913 18 n 01 Black_Panther 0 002 @ 10315837 n 0000 #m 08258358 n 0000 | a member of the Black Panthers political party -09859038 18 n 01 Blackshirt 0 001 @ 10079893 n 0000 | a member of the Italian fascist party before World War II -09859152 18 n 01 blacksmith 0 002 @ 10614629 n 0000 ~ 10079677 n 0000 | a smith who forges and shapes iron with a hammer and anvil -09859285 18 n 01 blade 0 001 @ 10804406 n 0000 | a dashing young man; "gay young blades bragged of their amorous adventures" -09859412 18 n 01 blasphemer 0 003 @ 09625789 n 0000 + 00814458 v 0101 ~ 10682501 n 0000 | a person who speaks disrespectfully of sacred things -09859557 18 n 02 blaster 0 chargeman 0 002 @ 10791221 n 0000 + 01135922 v 0101 | a workman employed to blast with explosives -09859684 18 n 01 bleacher 0 003 @ 09632518 n 0000 + 00279822 v 0101 + 00279465 v 0101 | a worker who bleaches (cloth or flour etc.) -09859818 18 n 01 bleeding_heart 0 001 @ 10686073 n 0000 | someone who is excessively sympathetic toward those who claim to be exploited or underprivileged -09859975 18 n 01 blind_date 0 001 @ 09992538 n 0000 | a participant in a blind date (someone you meet for the first time when you have a date with them) -09860130 18 n 01 blind_person 0 002 @ 10757625 n 0000 #m 07944408 n 0000 | a person with a severe visual impairment -09860248 18 n 01 blocker 0 002 @ 10101634 n 0000 + 01147060 v 0102 | a football player whose responsibility is to block players attempting to stop an offensive play -09860415 18 n 01 blogger 0 001 @ 00007846 n 0000 | a person who keeps and updates a blog -09860506 18 n 02 blond 0 blonde 0 004 @ 00007846 n 0000 ~ 10417045 n 0000 ~ 10439373 n 0000 ~ 10718952 n 0000 | a person with fair skin and hair -09860653 18 n 01 blood_brother 1 001 @ 09785042 n 0000 | a male sworn (usually by a ceremony involving the mingling of blood) to treat another as his brother -09860813 18 n 01 blood_donor 0 002 @ 10026058 n 0000 ~ 10739135 n 0000 | someone who gives blood to be used for transfusions -09860940 18 n 01 blubberer 0 002 @ 10773126 n 0000 + 00067274 v 0103 | someone who sniffles and weeps with loud sobs -09861059 18 n 01 bludgeoner 0 002 @ 09821253 n 0000 + 01423929 v 0102 | an assailant who uses a bludgeon -09861166 18 n 01 blue_baby 0 001 @ 09827683 n 0000 | an infant born with a bluish color; usually has a defective heart -09861287 18 n 01 bluecoat 0 001 @ 00007846 n 0000 | a person dressed all in blue (as a soldier or sailor) -09861395 18 n 04 bluejacket 0 navy_man 0 sailor 1 sailor_boy 0 006 @ 10582746 n 0000 + 01846658 v 0301 ~ 09932788 n 0000 ~ 10348526 n 0000 ~ 10663858 n 0000 ~ 10669357 n 0000 | a serviceman in the navy -09861599 18 n 02 bluestocking 0 bas_bleu 0 001 @ 10787470 n 0000 | a woman having literary or intellectual interests -09861718 18 n 02 bluffer 0 four-flusher 0 003 @ 09998101 n 0000 + 01076953 v 0101 + 00837872 v 0101 | a person who tries to bluff other people -09861863 18 n 01 boatbuilder 0 001 @ 09878275 n 0000 | a person who builds boats -09861946 18 n 03 boatman 0 boater 0 waterman 0 008 @ 09632518 n 0000 + 01944692 v 0201 + 05639941 n 0101 ~ 09891470 n 0000 ~ 10085449 n 0000 ~ 10137825 n 0000 ~ 10368920 n 0000 ~ 10493419 n 0000 | someone who drives or rides in a boat -09862183 18 n 05 boatswain 0 bos'n 0 bo's'n 0 bosun 0 bo'sun 0 001 @ 10294602 n 0000 | a petty officer on a merchant ship who controls the work of other seamen -09862345 18 n 01 boarder 1 003 @ 10559288 n 0000 + 02656763 v 0101 + 01177118 v 0101 | a pupil who lives at school during term time -09862479 18 n 01 boarder 2 002 @ 10213652 n 0000 + 02018049 v 0101 | someone who forces their way aboard ship; "stand by to repel boarders" -09862621 18 n 01 bobby 0 001 @ 10448983 n 0000 | an informal term for a British policeman -09862713 18 n 02 bobbysoxer 0 bobby-socker 0 001 @ 10247358 n 0000 | an adolescent girl wearing bobby socks (common in the 1940s) -09862845 18 n 05 bodybuilder 0 muscle_builder 0 muscle-builder 0 musclebuilder 0 muscleman 1 001 @ 00007846 n 0000 | someone who does special exercises to develop a brawny musculature -09863031 18 n 02 bodyguard 0 escort 1 006 @ 09614684 n 0000 #m 08215603 n 0000 + 02026868 v 0101 ~ 10388082 n 0000 ~ 10463259 n 0000 ~ 10803691 n 0000 | someone who escorts and protects a prominent person -09863238 18 n 01 body_servant 0 002 @ 10582154 n 0000 ~ 10745332 n 0000 | a valet or personal maid -09863339 18 n 01 boffin 0 003 @ 10523076 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | (British slang) a scientist or technician engaged in military research -09863500 18 n 01 bohemian 0 001 @ 09957834 n 0000 | a nonconformist writer or artist who lives an unconventional life -09863620 18 n 01 Bohemian 1 002 @ 09686536 n 0000 #p 08757264 n 0000 | a native or inhabitant of Bohemia in the Czech Republic -09863749 18 n 05 Bolshevik 0 Marxist 1 red 0 bolshie 0 bolshy 0 002 @ 10503452 n 0000 + 00409281 v 0104 | emotionally charged terms used to refer to extreme radicals or revolutionaries -09863936 18 n 02 Bolshevik 1 Bolshevist 0 008 @ 09945319 n 0000 + 02875499 a 0203 + 08368308 n 0201 + 00409281 v 0103 + 00409281 v 0104 ~i 10870691 n 0000 ~i 11126490 n 0000 ~i 11349318 n 0000 | a Russian member of the left-wing majority group that followed Lenin and eventually became the Russian communist party -09864252 18 n 01 bombardier 0 002 @ 09780676 n 0000 #m 08273531 n 0000 | the member of a bomber crew responsible for using the bombsight and releasing the bombs on the target -09864429 18 n 01 bombardier 1 001 @ 10360747 n 0000 | a noncommissioned officer in the British artillery -09864536 18 n 01 bomber 0 002 @ 00007846 n 0000 + 01131902 v 0102 | a person who plants bombs -09864632 18 n 01 bombshell 0 001 @ 09616922 n 0000 | an entertainer who has a sensational effect; "she was a blonde bombshell" -09864761 18 n 01 bondholder 0 002 @ 10216106 n 0000 @ 10180178 n 0000 | a holder of bonds issued by a government or corporation -09864891 18 n 02 bondman 0 bondsman 1 001 @ 10609325 n 0000 | a male slave -09864968 18 n 02 bondman 1 bondsman 2 001 @ 09865398 n 0000 | a male bound to serve without wages -09865068 18 n 03 bondwoman 0 bondswoman 1 bondmaid 0 001 @ 10609325 n 0000 | a female slave -09865162 18 n 03 bondwoman 1 bondswoman 2 bondmaid 1 001 @ 09865398 n 0000 | a female bound to serve without wages -09865279 18 n 02 bondsman 0 bondswoman 0 001 @ 09608709 n 0000 | someone who signs a bond as surety for someone else -09865398 18 n 01 bond_servant 0 004 @ 10609325 n 0000 ~ 09864968 n 0000 ~ 09865162 n 0000 ~ 10709435 n 0000 | someone bound to labor without wages -09865547 18 n 01 bonesetter 0 001 @ 10165109 n 0000 | someone (not necessarily a licensed physician) who sets broken bones -09865672 18 n 01 book_agent 0 001 @ 10548537 n 0000 | a book salesman -09865744 18 n 01 bookbinder 0 001 @ 09974648 n 0000 | a worker whose trade is binding books -09865838 18 n 02 bookdealer 0 book_seller 0 001 @ 10309896 n 0000 | a dealer in books; a merchant who sells books -09865954 18 n 02 booker 0 booking_agent 0 003 @ 09777353 n 0000 + 00678777 v 0101 ~ 10593745 n 0000 | someone who engages a person or company for performances -09866115 18 n 01 bookkeeper 0 001 @ 09761403 n 0000 | someone who records the transactions of a business -09866222 18 n 02 bookmaker 0 bookie 0 001 @ 10118844 n 0000 | a gambler who accepts and pays off bets (especially on horse races) -09866354 18 n 01 bookmaker 1 001 @ 10284064 n 0000 | a maker of books; someone who edits or publishes or binds books -09866473 18 n 01 bookseller 0 001 @ 10388924 n 0000 | the proprietor of a bookstore -09866559 18 n 01 bookworm 0 001 @ 10508710 n 0000 | someone who spends a great deal of time reading -09866661 18 n 03 booster 0 shoplifter 0 lifter 1 003 @ 10707804 n 0000 + 02276866 v 030c + 02277303 v 0201 | a thief who steals goods that are in a store -09866817 18 n 02 bootblack 0 shoeblack 0 001 @ 09632274 n 0000 | a person who polishes shoes and boots -09866922 18 n 02 bootlegger 0 moonshiner 0 003 @ 09977660 n 0000 + 00228858 v 0201 + 02242049 v 0101 | someone who makes or sells illegal liquor -09867069 18 n 02 bootmaker 0 boot_maker 0 001 @ 09933098 n 0000 | a maker of boots -09867154 18 n 01 borderer 0 002 @ 09620078 n 0000 ;r 08871007 n 0000 | an inhabitant of a border area (especially the border between Scotland and England) -09867311 18 n 01 border_patrolman 0 002 @ 10249459 n 0000 #m 08328876 n 0000 | someone who patrols the borders of a country -09867437 18 n 02 bore 0 dullard 0 007 @ 09631463 n 0000 + 00538199 v 0202 + 01821884 v 0101 ~ 10121467 n 0000 ~ 10365846 n 0000 ~ 10439523 n 0000 ~ 10666615 n 0000 | a person who evokes boredom -09867633 18 n 01 borrower 0 004 @ 09627906 n 0000 + 02324026 v 0101 ! 10254392 n 0101 ~ 10110893 n 0000 | someone who receives something on the promise to return it or its equivalent -09867818 18 n 01 born-again_Christian 0 001 @ 09678009 n 0000 | a Christian who has experienced a dramatic conversion to faith in Jesus -09867956 18 n 02 boss 0 hirer 0 004 @ 10054657 n 0000 + 02409412 v 0201 ~ 10153155 n 0000 ~ 10375690 n 0000 | a person responsible for hiring workers; "the boss hired three more men for the new job" -09868157 18 n 01 Boswell 1 001 @ 10677713 n 0000 | a devoted admirer and recorder of another's words and deeds -09868270 18 n 03 botanist 0 phytologist 0 plant_scientist 0 017 @ 09855630 n 0000 + 06066555 n 0202 + 06066555 n 0101 ~ 10343088 n 0000 ~ 10452631 n 0000 ~ 10483274 n 0000 ~i 10833425 n 0000 ~i 10866385 n 0000 ~i 10885603 n 0000 ~i 10904639 n 0000 ~i 10918558 n 0000 ~i 10932495 n 0000 ~i 11012474 n 0000 ~i 11094928 n 0000 ~i 11133551 n 0000 ~i 11173199 n 0000 ~i 11347674 n 0000 | a biologist specializing in the study of plants -09868703 18 n 01 bottom_dog 0 001 @ 10669991 n 0000 | a person of low status -09868782 18 n 01 bottom_feeder 0 001 @ 10379376 n 0000 | an opportunist who profits from the misfortunes of others -09868899 18 n 01 boulevardier 0 001 @ 10757193 n 0000 | a visitor of a city boulevard (especially in Paris) -09869009 18 n 02 bouncer 0 chucker-out 0 002 @ 10150071 n 0000 + 01469080 v 0101 | a person whose duty is to throw troublemakers out of a bar or public meeting -09869171 18 n 02 bounder 1 leaper 0 003 @ 10226803 n 0000 + 01963942 v 0202 + 01963942 v 0103 | someone who bounds or leaps (as in competition) -09869317 18 n 01 bounty_hunter 0 001 @ 10193026 n 0000 | a hunter who kills predatory wild animals in order to collect a bounty -09869447 18 n 01 bounty_hunter 1 001 @ 10494935 n 0000 | someone who pursues fugitives or criminals for whom a reward is offered -09869578 18 n 01 Bourbon 0 002 @ 10541229 n 0000 #m 08154012 n 0000 | a member of the European royal family that ruled France -09869706 18 n 01 Bourbon 1 001 @ 10508475 n 0000 | a reactionary politician in the United States (usually from the South) -09869830 18 n 02 bourgeois 0 burgher 0 003 @ 09610405 n 0000 #m 08181658 n 0000 ~ 10419916 n 0000 | a member of the middle class -09869961 18 n 01 bowler 0 003 @ 10439851 n 0000 + 01887324 v 0101 + 01146507 v 0101 | a player who rolls balls down an alley at pins -09870096 18 n 01 bowler 1 001 @ 09977326 n 0000 | a cricketer who delivers the ball to the batsman in cricket -09870208 18 n 02 boxer 0 pugilist 0 025 @ 09939313 n 0000 + 00445802 n 0202 + 01419982 v 0101 + 01420765 v 0101 ~ 09838511 n 0000 ~ 09871095 n 0000 ~ 10082886 n 0000 ~ 10098517 n 0000 ~ 10167252 n 0000 ~ 10227601 n 0000 ~ 10227698 n 0000 ~ 10227793 n 0000 ~ 10227889 n 0000 ~ 10261511 n 0000 ~ 10261862 n 0000 ~ 10261977 n 0000 ~ 10262655 n 0000 ~ 10262764 n 0000 ~ 10314517 n 0000 ~ 10477077 n 0000 ~ 10492627 n 0000 ~ 10629939 n 0000 ~ 10666752 n 0000 ~ 10675609 n 0000 ~ 10774113 n 0000 | someone who fights with his fists for sport -09870746 18 n 01 Boxer 2 001 @ 09698108 n 0000 | a member of a nationalistic Chinese secret society that led an unsuccessful rebellion in 1900 against foreign interests in China -09870926 18 n 01 boy 2 003 @ 10287213 n 0000 ~ 09876308 n 0000 ~ 10377865 n 0000 | a friendly informal reference to a grown man; "he likes to play golf with the boys" -09871095 18 n 02 slugger 1 slogger 0 002 @ 09870208 n 0000 + 01415585 v 0101 | a boxer noted for an ability to deliver hard punches -09871229 18 n 05 cub 0 lad 0 laddie 0 sonny 0 sonny_boy 0 001 @ 10285313 n 0000 | a male child (a familiar term of address to a boy) -09871364 18 n 05 boyfriend 0 fellow 1 beau 0 swain 0 young_man 1 002 @ 10287213 n 0000 @ 09622302 n 0000 | a man who is the lover of a girl or young woman; "if I'd known he was her boyfriend I wouldn't have asked" -09871580 18 n 01 ex-boyfriend 0 001 @ 10287213 n 0000 | a man who is no longer a woman's boyfriend -09871681 18 n 01 Boy_Scout 0 006 @ 10563183 n 0000 #m 08470710 n 0000 ~ 09981939 n 0000 ~ 10041093 n 0000 ~ 10540984 n 0000 ~ 10567613 n 0000 | a boy who is a member of the Boy Scouts -09871867 18 n 01 boy_scout 1 001 @ 09621359 n 0000 | a man who is considered naive -09871952 18 n 01 boy_wonder 0 002 @ 10479783 n 0000 @ 09624168 n 0000 | an extremely talented young male person -09872066 18 n 06 bragger 0 braggart 0 boaster 0 blowhard 0 line-shooter 0 vaunter 0 005 @ 10047459 n 0000 + 00883226 v 0609 + 00883226 v 0301 + 00883226 v 0205 + 00883226 v 0105 | a very boastful and talkative person -09872285 18 n 01 bracero 0 001 @ 10241300 n 0000 | a Mexican laborer who worked in the United States on farms and railroads in order to ease labor shortages during World War II -09872464 18 n 01 brachycephalic 0 001 @ 09605289 n 0000 | an adult with a short broad head -09872557 18 n 02 brahman 0 brahmin 0 005 @ 09713501 n 0000 #m 08306959 n 0000 + 02669806 a 0201 + 02669806 a 0202 ~ 10613839 n 0000 | a member of the highest of the four Hindu varnas; "originally all brahmans were priests" -09872782 18 n 02 brahman 3 brahmin 3 003 @ 09807754 n 0000 + 02669806 a 0201 + 02669806 a 0202 | a member of a social and cultural elite (especially a descendant of an old New England family); "a Boston brahman" -09872996 18 n 02 brainworker 0 brain-worker 0 001 @ 10708454 n 0000 | someone whose profession involves using his head to solve problems -09873135 18 n 01 brakeman 0 001 @ 10722758 n 0000 | a railroad employee responsible for a train's brakes -09873242 18 n 01 brass_hat 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | a high-ranking military officer -09873348 18 n 01 brawler 0 002 @ 09939313 n 0000 + 00774344 v 0101 | a fighter (especially one who participates in brawls) -09873473 18 n 01 breadwinner 0 001 @ 10041887 n 0000 | one whose earnings are the primary source of support for their dependents -09873604 18 n 02 breaker 0 ledgeman 0 004 @ 10498551 n 0000 + 01298931 v 0101 + 00334996 v 0101 ~ 10659188 n 0000 | a quarry worker who splits off blocks of stone -09873769 18 n 01 breaststroker 0 003 @ 10683349 n 0000 + 00571060 n 0101 + 01962178 v 0101 | someone who swims the breaststroke -09873899 18 n 02 breeder 0 stock_breeder 0 002 @ 10658501 n 0000 + 01429455 v 0101 | a person who breeds animals -09874014 18 n 01 brewer 0 002 @ 10292316 n 0000 + 01663920 v 0101 | the owner or manager of a brewery -09874118 18 n 02 brewer 1 beer_maker 0 002 @ 10284064 n 0000 + 01663920 v 0101 | someone who brews beer or ale from malt and hops and water -09874260 18 n 02 briber 0 suborner 0 003 @ 09977660 n 0000 + 02581276 v 0201 + 02284096 v 0101 | someone who pays (or otherwise incites) you to commit a wrongful act -09874428 18 n 01 brick 0 001 @ 10138767 n 0000 | a good fellow; helpful and trustworthy -09874518 18 n 01 bricklayer 0 001 @ 09974648 n 0000 | a craftsman skilled in building with bricks -09874618 18 n 01 bride 0 002 @ 10356066 n 0000 ~ 10766626 n 0000 | a woman who has recently been married -09874725 18 n 01 bride 1 003 @ 10401829 n 0000 #m 08256735 n 0000 + 02843382 a 0101 | a woman participant in her own marriage ceremony -09874862 18 n 02 bridesmaid 0 maid_of_honor 0 003 @ 09821831 n 0000 @ 10787470 n 0000 #m 08256735 n 0000 | an unmarried woman who attends the bride at a wedding -09875025 18 n 01 bridge_agent 0 001 @ 10569411 n 0000 | an operative who acts as a courier or go-between from a case officer to a secret agent in a hostile area -09875188 18 n 01 bridge_partner 0 003 @ 09875353 n 0000 @ 09935434 n 0000 ~ 10505613 n 0000 | one of a pair of bridge players who are on the same side of the game -09875353 18 n 02 bridge_player 0 hand 1 004 @ 09894654 n 0000 ~ 09853184 n 0000 ~ 09875188 n 0000 ~ 09961012 n 0000 | a card player in a game of bridge; "we need a 4th hand for bridge" -09875540 18 n 02 brigadier 0 brigadier_general 0 001 @ 10125786 n 0000 | a general officer ranking below a major general -09875663 18 n 01 broad 0 001 @ 10787470 n 0000 | slang term for a woman; "a broad is a woman who can throw a mean punch" -09875786 18 n 01 broadcaster 0 006 @ 09610660 n 0000 + 00973056 v 0103 ~ 09795124 n 0000 ~ 09875979 n 0000 ~ 10017272 n 0000 ~ 10697420 n 0000 | someone who broadcasts on radio or television -09875979 18 n 01 broadcast_journalist 0 004 @ 09875786 n 0000 @ 10224578 n 0000 ~i 11197743 n 0000 ~i 11339155 n 0000 | a journalist who broadcasts on radio or television -09876152 18 n 01 broker-dealer 0 001 @ 10474446 n 0000 | a financial specialist who trades for his own account and so acts both as a broker and principal -09876308 18 n 02 broth_of_a_boy 0 broth_of_a_man 0 001 @ 09870926 n 0000 | an outstanding person; as if produced by boiling down a savory broth -09876454 18 n 02 brother 0 blood_brother 0 006 @ 10286084 n 0000 + 00291471 a 0101 ! 10602985 n 0101 ~ 09853467 n 0000 ~ 10267311 n 0000 ~ 10654321 n 0000 | a male with the same parents as someone else; "my brother still lives with our parents" -09876701 18 n 01 Brother 1 003 @ 10112129 n 0000 ;c 08083599 n 0000 + 08075388 n 0101 | (Roman Catholic Church) a title given to a monk and used as form of address; "a Benedictine Brother" -09876892 18 n 01 brother 2 004 @ 10307234 n 0000 #m 08075388 n 0000 ;c 05946687 n 0000 ~ 10111144 n 0000 | a male person who is a fellow member (of a fraternity or religion or other group); "none of his brothers would betray him" -09877124 18 n 02 brother 4 comrade 2 001 @ 10112591 n 0000 | used as a term of address for those male persons engaged in the same movement; "Greetings, comrade!" -09877288 18 n 01 brother-in-law 0 001 @ 10207169 n 0000 | a brother by marriage -09877370 18 n 01 Brownie 1 001 @ 10131016 n 0000 | a junior Girl Scout -09877443 18 n 01 Brownshirt 0 003 @ 10350220 n 0000 #m 08212146 n 0000 ;r 08766988 n 0000 | a member of the Nazi SA which wore brown uniforms -09877587 18 n 01 browser 0 003 @ 10633450 n 0000 + 02326355 v 0102 + 01315333 v 0101 | a viewer who looks around casually without seeking anything in particular -09877750 18 n 02 Brummie 0 Brummy 0 001 @ 09701148 n 0000 | a native or resident of Birmingham, England -09877856 18 n 02 brunet 0 brunette 0 001 @ 00007846 n 0000 | a person with dark (brown) hair -09877951 18 n 06 buddy 0 brother 3 chum 0 crony 0 pal 0 sidekick 0 005 @ 10112591 n 0000 + 02588871 v 0501 + 01075524 a 0301 + 00452114 a 0301 ~ 09933020 n 0000 | a close friend who accompanies his buddies in their activities -09878179 18 n 01 bugler 0 002 @ 10732010 n 0000 + 01726039 v 0101 | someone who plays a bugle -09878275 18 n 02 builder 0 constructor 0 009 @ 09960891 n 0000 + 01654628 v 0201 + 01654628 v 0102 ~ 09861863 n 0000 ~ 09960688 n 0000 ~ 10181656 n 0000 ~ 10221162 n 0000 ~ 10533681 n 0000 ~ 10589930 n 0000 | someone who contracts for and supervises construction (as of a building) -09878559 18 n 01 builder 1 001 @ 09614315 n 0000 | a person who creates a business or who organizes and develops a country; "empire builder" -09878702 18 n 04 bull 2 bruiser 1 strapper 0 Samson 1 002 @ 10287213 n 0000 + 01492725 v 0201 | a large and strong and heavyset man; "he was a bull of a man"; "a thick-skinned bruiser ready to give as good as he got" -09878921 18 n 01 bull 1 004 @ 10216106 n 0000 + 02272373 v 0101 + 00156139 v 0101 ! 09845191 n 0101 | an investor with an optimistic market outlook; an investor who expects prices to rise and so buys now for resale later -09879144 18 n 05 bull 0 cop 0 copper 0 fuzz 0 pig 1 003 @ 10448983 n 0000 ;u 07075172 n 0000 + 01215137 v 0207 | uncomplimentary terms for a policeman -09879297 18 n 09 bully 0 tough 1 hooligan 0 ruffian 0 roughneck 0 rowdy 0 yob 0 yobo 0 yobbo 0 007 @ 09821253 n 0000 + 02512641 a 0401 + 01035199 v 0102 ~ 09879616 n 0000 ~ 10339350 n 0000 ~ 10607478 n 0000 ~ 10717921 n 0000 | a cruel and brutal fellow -09879552 18 n 01 bully 1 001 @ 10184081 n 0000 | a hired thug -09879616 18 n 01 bullyboy 0 001 @ 09879297 n 0000 | a swaggering tough; usually one acting as an agent of a political faction -09879744 18 n 09 bungler 0 blunderer 0 fumbler 0 bumbler 0 stumbler 1 sad_sack 0 botcher 0 butcher 3 fuckup 0 009 @ 10202363 n 0000 + 02229000 a 0802 + 02527651 v 0701 + 00618057 v 0501 + 02527651 v 0403 + 02527651 v 0304 + 02566227 v 0203 + 02527651 v 010d + 00013172 v 0101 | someone who makes mistakes because of incompetence -09880075 18 n 01 bunkmate 0 001 @ 09763784 n 0000 | someone who occupies the same sleeping quarters as yourself -09880189 18 n 02 bunny 0 bunny_girl 0 001 @ 10763620 n 0000 | a young waitress in a nightclub whose costume includes the tail and ears of a rabbit -09880338 18 n 01 bunter 0 002 @ 09843956 n 0000 + 01408297 v 0101 | a batter who bunts -09880427 18 n 02 bureaucrat 0 administrative_official 0 007 @ 10372373 n 0000 ~ 09845016 n 0000 ~ 10397275 n 0000 ~ 10479135 n 0000 ~ 10692883 n 0000 ~ 10693052 n 0000 ~ 10693235 n 0000 | an official of a bureaucracy -09880646 18 n 02 burgess 0 burgher 1 001 @ 09701603 n 0000 | a citizen of an English borough -09880741 18 n 01 burglar 0 003 @ 10707804 n 0000 + 02571511 v 0102 ~ 10188226 n 0000 | a thief who enters a building with intent to steal -09880881 18 n 01 burgomaster 0 001 @ 10303814 n 0000 | a mayor of a municipality in Germany or Holland or Flanders or Austria -09881009 18 n 01 burgrave 0 001 @ 10316683 n 0000 | the military governor of a German town in the 12th and 13th centuries -09881133 18 n 01 burgrave 1 001 @ 10271677 n 0000 | a nobleman ruling a German castle and surrounding grounds by hereditary right -09881265 18 n 01 bursar 0 001 @ 10727256 n 0000 | the treasurer at a college or university -09881358 18 n 02 busboy 0 waiter's_assistant 0 001 @ 10013614 n 0000 | a restaurant attendant who sets tables and assists waiters and clears away dirty dishes -09881519 18 n 01 bushman 0 001 @ 10434424 n 0000 | a dweller in the Australian bush country -09881613 18 n 01 Bushman 1 001 @ 10359759 n 0000 | a member of the race of nomadic hunters and gatherers who live in southern Africa -09881748 18 n 01 bushwhacker 1 003 @ 09953775 n 0000 + 02615880 v 0101 + 01138204 v 0103 | a Confederate guerrilla during the American Civil War -09881895 18 n 01 business_editor 0 001 @ 10356450 n 0000 | the newspaper editor responsible for business news -09882007 18 n 02 businessman 0 man_of_affairs 0 025 @ 09882716 n 0000 ~ 09786922 n 0000 ~ 09803800 n 0000 ~ 09840217 n 0000 ~ 10204177 n 0000 ~ 10374652 n 0000 ~ 10378780 n 0000 ~ 10388924 n 0000 ~ 10613052 n 0000 ~ 10673946 n 0000 ~ 10687025 n 0000 ~ 10723597 n 0000 ~i 10911288 n 0000 ~i 11029888 n 0000 ~i 11050057 n 0000 ~i 11067184 n 0000 ~i 11157422 n 0000 ~i 11281995 n 0000 ~i 11312556 n 0000 ~i 11316669 n 0000 ~i 11366658 n 0000 ~i 11373379 n 0000 ~i 11373897 n 0000 ~i 11397271 n 0000 ~i 11399274 n 0000 | a person engaged in commercial or industrial business (especially an owner or executive) -09882615 18 n 01 businesswoman 0 002 @ 09882716 n 0000 ~ 10279669 n 0000 | a female businessperson -09882716 18 n 02 businessperson 0 bourgeois 1 012 @ 09609232 n 0000 ~ 09761403 n 0000 ~ 09761753 n 0000 ~ 09777012 n 0000 ~ 09882007 n 0000 ~ 09882615 n 0000 ~ 10060352 n 0000 ~ 10073634 n 0000 ~ 10201366 n 0000 ~ 10309896 n 0000 ~ 10590339 n 0000 ~ 10677271 n 0000 | a capitalist who engages in industrial commercial enterprise -09883047 18 n 01 business_traveler 0 001 @ 09629752 n 0000 | a traveler whose expenses are paid by the business he works for -09883174 18 n 01 busker 0 002 @ 09616922 n 0000 ;c 00428270 n 0000 | a person who entertains people for money in public places (as by singing or dancing), usually while asking for money -09883362 18 n 02 busman 0 bus_driver 0 001 @ 10034906 n 0000 | someone who drives a bus -09883452 18 n 01 buster 0 002 @ 00007846 n 0000 + 01369758 v 0102 | a person (or thing) that breaks up or overpowers something; "dam buster"; "sanction buster"; "crime buster" -09883630 18 n 03 buster 1 bronco_buster 0 broncobuster 0 001 @ 10185793 n 0000 | a person who breaks horses -09883740 18 n 01 buster 2 001 @ 09917593 n 0000 | a robust child -09883807 18 n 04 busybody 0 nosy-parker 0 nosey-parker 0 quidnunc 0 001 @ 10305192 n 0000 | a person who meddles in the affairs of others -09883947 18 n 03 butch 0 dike 0 dyke 0 004 @ 10254965 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 + 01201758 a 0101 | (slang) offensive term for a lesbian who is noticeably masculine -09884133 18 n 02 butcher 0 slaughterer 0 004 @ 10605985 n 0000 + 01322854 v 0202 + 01322854 v 0101 ~ 10238029 n 0000 | a person who slaughters or dresses meat for market -09884305 18 n 01 butcher 1 001 @ 10338707 n 0000 | a brutal indiscriminate murderer -09884391 18 n 02 butcher 2 meatman 0 003 @ 10309896 n 0000 + 01322854 v 0101 ~ 10454972 n 0000 | a retailer of meat -09884509 18 n 02 butler 0 pantryman 0 001 @ 10292192 n 0000 | a manservant (usually the head servant of a household) who has charge of wines and the table -09884666 18 n 04 butt 0 goat 0 laughingstock 0 stooge 1 003 @ 10752480 n 0000 + 01720491 v 0401 ~ 09801275 n 0000 | a victim of ridicule or pranks -09884815 18 n 01 butter 0 002 @ 09939313 n 0000 + 01235769 v 0101 | a fighter who strikes the opponent with his head -09884934 18 n 01 butterfingers 0 001 @ 09931267 n 0000 | someone who drops things (especially one who cannot catch a ball) -09885059 18 n 01 buttinsky 0 001 @ 10305192 n 0000 | a meddler who tends to butt in -09885145 18 n 04 buyer 0 purchaser 0 emptor 0 vendee 0 006 @ 09984659 n 0000 + 02207206 v 0202 + 02207206 v 0101 ~ 09984960 n 0000 ~ 10181799 n 0000 ~ 10381698 n 0000 | a person who buys -09885334 18 n 01 bystander 0 001 @ 10633450 n 0000 | a nonparticipant spectator -09885416 18 n 02 Cabalist 0 Kabbalist 0 002 @ 10557854 n 0000 ;c 06232880 n 0000 | a student of the Jewish Kabbalah -09885534 18 n 02 cabalist 1 kabbalist 1 001 @ 09617867 n 0000 | an expert who is highly skilled in obscure or difficult or esoteric matters -09885676 18 n 01 cabalist 2 002 @ 10307234 n 0000 #m 08241798 n 0000 | a member of a cabal -09885769 18 n 01 cabin_boy 0 001 @ 10582154 n 0000 | a young man acting as a servant on a ship -09885866 18 n 02 cabinetmaker 0 furniture_maker 0 002 @ 10790192 n 0000 ~i 10896046 n 0000 | a woodworker who specializes in making furniture -09886010 18 n 01 cabinet_minister 0 007 @ 10320863 n 0000 ~ 09907408 n 0000 ~ 09917481 n 0000 ~ 10182628 n 0000 ~ 10272171 n 0000 ~ 10272499 n 0000 ~ 10727458 n 0000 | a person who is a member of the cabinet -09886220 18 n 06 cad 0 bounder 0 blackguard 0 dog 2 hound 0 heel 0 003 @ 10753546 n 0000 + 01224964 a 0304 ~ 10416828 n 0000 | someone who is morally reprehensible; "you dirty dog" -09886403 18 n 02 caddie 0 golf_caddie 0 002 @ 09821831 n 0000 + 01096860 v 0101 | an attendant who carries the golf clubs for a player -09886540 18 n 02 cadet 0 plebe 0 004 @ 10722385 n 0000 ;c 08199025 n 0000 + 00589596 n 0101 ~ 10314703 n 0000 | a military trainee (as at a military academy) -09886700 18 n 02 caffeine_addict 0 caffein_addict 0 001 @ 09768830 n 0000 | someone addicted to caffeine -09886807 18 n 01 Cairene 0 002 @ 09700492 n 0000 #m 08898633 n 0000 | a native or inhabitant of Cairo -09886911 18 n 01 caitiff 0 003 @ 09983214 n 0000 ;u 07073447 n 0000 + 00265214 a 0101 | a cowardly and despicable person -09887034 18 n 05 calculator 0 reckoner 0 figurer 0 estimator 0 computer 0 011 @ 09617867 n 0000 + 00637259 v 0504 + 01718952 v 0503 + 00712135 v 0402 + 00637259 v 0307 + 00637259 v 0206 + 00637259 v 0101 ~ 09768753 n 0000 ~ 09887378 n 0000 ~ 10652954 n 0000 ~ 10671300 n 0000 | an expert at calculation (or at operating calculating machines) -09887378 18 n 01 number_cruncher 0 001 @ 09887034 n 0000 | someone able to perform complex and lengthy calculations -09887496 18 n 06 caliph 0 calif 0 kaliph 0 kalif 0 khalif 0 khalifah 0 003 @ 10541229 n 0000 @ 09682291 n 0000 ~i 10814328 n 0000 | the civil and religious leader of a Muslim state considered to be a representative of Allah on earth; "many radical Muslims believe a Khalifah will unite all Islamic lands and people and subjugate the rest of the world" -09887850 18 n 02 caller 0 company 0 002 @ 10757193 n 0000 + 02487573 v 0103 | a social or business visitor; "the room was a mess because he hadn't expected company" -09888017 18 n 04 caller 1 caller-up 0 phoner 0 telephoner 0 004 @ 10630188 n 0000 + 00789448 v 0402 + 00789448 v 0304 + 00789448 v 0101 | the person initiating a telephone call; "there were so many callers that he finally disconnected the telephone" -09888269 18 n 01 caller 2 003 @ 09623038 n 0000 + 02429810 v 0101 ~ 09961739 n 0000 | the person who convenes a meeting; "who is the caller of this meeting?" -09888429 18 n 01 caller 3 003 @ 09795334 n 0000 + 00738747 v 0101 + 00792471 v 0101 | someone who proclaims or summons in a loud voice; "the callers were mothers summoning their children home for dinner" -09888635 18 n 02 caller 4 caller-out 0 002 @ 09795334 n 0000 + 01899017 v 0101 | a person who announces the changes of steps during a dance; "you need a fiddler and a caller for country dancing" -09888832 18 n 01 caller 5 002 @ 09851876 n 0000 + 02300060 v 0102 | the bettor in a card game who matches the bet and calls for a show of hands -09888978 18 n 01 caller 6 001 @ 10216106 n 0000 | an investor who buys a call option -09889065 18 n 01 call_girl 0 001 @ 10485440 n 0000 | a female prostitute who can be hired by telephone -09889170 18 n 02 calligrapher 0 calligraphist 0 005 @ 10605985 n 0000 + 06403969 n 0201 + 01691660 v 0201 + 06403969 n 0101 + 01691660 v 0101 | someone skilled in penmanship -09889346 18 n 02 Calvinist 0 Genevan 1 005 @ 10350896 n 0000 + 02952975 a 0101 + 02952975 a 0103 + 06229853 n 0101 ~ 10191089 n 0000 | an adherent of the theological doctrines of John Calvin -09889539 18 n 03 cameraman 0 camera_operator 0 cinematographer 0 002 @ 10426749 n 0000 + 00907919 n 0302 | a photographer who operates a movie camera -09889691 18 n 03 campaigner 0 candidate 1 nominee 0 008 @ 10450303 n 0000 + 01094086 v 0101 ~ 09991740 n 0000 ~ 10082562 n 0000 ~ 10543420 n 0000 ~ 10637961 n 0000 ~ 10646641 n 0000 ~ 10793799 n 0000 | a politician who is running for public office -09889941 18 n 01 camper 0 002 @ 10744164 n 0000 + 02653996 v 0101 | someone living temporarily in a tent or lodge for recreation -09890072 18 n 01 Campfire_Girl 0 001 @ 10084295 n 0000 | a girl who is a member of Campfire Girls; for girls age 7-18 -09890192 18 n 01 camp_follower 0 001 @ 10099375 n 0000 | a follower who is not a member of an ingroup -09890296 18 n 01 camp_follower 1 001 @ 10485440 n 0000 | a prostitute who provides service to military personnel -09890411 18 n 01 campmate 0 001 @ 09763784 n 0000 | someone who lives in the same camp you do -09890507 18 n 01 Canaanite 0 001 @ 09639919 n 0000 | a member of an ancient Semitic people who occupied Canaan before it was conquered by the Israelites -09890662 18 n 01 canary 0 002 @ 10599806 n 0000 ;u 07075172 n 0000 | a female singer -09890749 18 n 02 candidate 0 prospect 0 001 @ 00007846 n 0000 | someone who is considered for something (for an office or prize or honor etc.) -09890894 18 n 01 candlemaker 0 001 @ 09907566 n 0000 | a person who makes or sells candles -09890987 18 n 01 candy_striper 0 001 @ 10759151 n 0000 | a volunteer worker in a hospital -09891079 18 n 04 cannibal 0 man-eater 0 anthropophagus 0 anthropophagite 0 006 @ 10553402 n 0000 + 02629182 a 0301 + 03052770 a 0101 + 01263832 a 0101 + 01162291 v 0101 + 01162291 v 0102 | a person who eats human flesh -09891300 18 n 03 cannon_fodder 0 fodder 0 fresh_fish 0 002 @ 10622053 n 0000 ;u 07075172 n 0000 | soldiers who are regarded as expendable in the face of artillery fire -09891470 18 n 02 canoeist 0 paddler 0 004 @ 09861946 n 0000 + 01947887 v 0201 + 02951358 n 0101 + 01947543 v 0101 | someone paddling a canoe -09891613 18 n 01 canon 0 002 @ 10470779 n 0000 ~ 10464432 n 0000 | a priest who is a member of a cathedral chapter -09891730 18 n 01 canonist 0 004 @ 10631941 n 0000 + 03001853 a 0101 + 06430537 n 0101 + 06664594 n 0101 | a specialist in canon law -09891864 18 n 02 cantor 0 hazan 0 001 @ 09505153 n 0000 | the official of a synagogue who conducts the liturgical part of the service and sings or chants the prayers intended to be performed as solos -09892066 18 n 01 canvasser 3 001 @ 10699099 n 0000 | a person who takes or counts votes -09892156 18 n 01 Capetian 0 002 @ 10628644 n 0000 #m 08154213 n 0000 | a member of the Capetian dynasty -09892262 18 n 01 capitalist 1 004 @ 09957156 n 0000 + 03000110 a 0101 + 00297403 a 0102 + 08364143 n 0101 | a conservative advocate of capitalism -09892410 18 n 01 capo 0 001 @ 10162991 n 0000 | the head of a branch of an organized crime syndicate -09892513 18 n 04 captain 0 headwaiter 0 maitre_d'hotel 0 maitre_d' 0 001 @ 10013614 n 0000 | a dining-room attendant who is in charge of the waiters and the seating of customers -09892693 18 n 02 captain 1 senior_pilot 0 003 @ 10433164 n 0000 + 00589769 n 0101 ~ 10148825 n 0000 | the pilot in charge of an airship -09892831 18 n 02 captain 2 skipper 0 005 @ 09943541 n 0000 ;c 08199025 n 0000 + 02447001 v 0201 + 00589769 n 0101 ~ 10094236 n 0000 | the naval officer in command of a military ship -09893015 18 n 03 captain 4 police_captain 0 police_chief 0 004 @ 10448983 n 0000 + 00589769 n 0101 ~ 09916209 n 0000 ~i 10846693 n 0000 | a policeman in charge of a precinct -09893191 18 n 01 captain 5 003 @ 09943239 n 0000 ;c 08199025 n 0000 + 00589769 n 0101 | an officer holding a rank below a major but above a lieutenant -09893344 18 n 02 captain 6 chieftain 1 003 @ 09623038 n 0000 + 00590383 n 0202 + 02440486 v 0101 | the leader of a group of people; "a captain of industry" -09893502 18 n 01 captive 1 002 @ 00015388 n 0000 + 01065126 a 0101 | an animal that is confined -09893600 18 n 01 captive 2 003 @ 10052843 n 0000 + 01065126 a 0101 + 01806505 v 0107 | a person held in the grip of a strong emotion or passion -09893746 18 n 03 carbineer 0 carabineer 0 carabinier 0 002 @ 10530571 n 0000 + 02961451 n 0201 | a soldier (historically a mounted soldier) who is armed with a carbine -09893916 18 n 01 cardholder 0 002 @ 09894654 n 0000 @ 10180178 n 0000 | a player who holds a card or cards in a card game -09894040 18 n 01 cardholder 1 001 @ 10180178 n 0000 | a person who holds a credit card or debit card -09894143 18 n 01 cardinal 0 007 @ 09857200 n 0000 #m 08085824 n 0000 ;c 08083599 n 0000 + 00589948 n 0101 ~ 09996920 n 0000 ~i 10842730 n 0000 ~i 10857849 n 0000 | (Roman Catholic Church) one of a group of more than 100 prominent bishops in the Sacred College who advise the Pope and elect new Popes -09894445 18 n 03 cardiologist 0 heart_specialist 0 heart_surgeon 0 002 @ 10632576 n 0000 + 06047275 n 0101 | a specialist in cardiology; a specialist in the structure and function and disorders of the heart -09894654 18 n 01 card_player 0 009 @ 10439851 n 0000 ~ 09875353 n 0000 ~ 09893916 n 0000 ~ 09894909 n 0000 ~ 09996636 n 0000 ~ 10048729 n 0000 ~ 10594523 n 0000 ~i 10916993 n 0000 ~i 11063182 n 0000 | someone who plays (or knows how to play) card games -09894909 18 n 08 cardsharp 0 card_sharp 0 cardsharper 0 card_sharper 0 sharper 0 sharpie 0 sharpy 0 card_shark 0 002 @ 09894654 n 0000 @ 09955015 n 0000 | a professional card player who makes a living by cheating at card games -09895138 18 n 01 career_girl 0 001 @ 09895222 n 0000 | a woman who is a careerist -09895222 18 n 01 careerist 0 005 @ 10480253 n 0000 + 00282613 n 0101 + 00413086 n 0101 ~ 09895138 n 0000 ~ 09895480 n 0000 | a professional who is intent on furthering his or her career by any possible means and often at the expense of their own integrity -09895480 18 n 01 career_man 0 001 @ 09895222 n 0000 | a man who is a careerist -09895561 18 n 01 caregiver 0 001 @ 09605289 n 0000 | a person who is responsible for attending to the needs of a child or dependent adult -09895701 18 n 01 caretaker 0 005 @ 09984298 n 0000 ~ 09951953 n 0000 ~ 10585217 n 0000 ~ 10675721 n 0000 ~ 10748309 n 0000 | a custodian who is hired to take care of something (property or a person) -09895902 18 n 01 caretaker 1 001 @ 10372373 n 0000 | an official who performs the duties of an office temporarily; "he acted as a caretaker until a new president could be elected" -09896084 18 n 01 carhop 0 001 @ 10763383 n 0000 | a waiter at a drive-in restaurant -09896170 18 n 01 caricaturist 0 003 @ 10400998 n 0000 + 06780069 n 0101 ~i 10841241 n 0000 | someone who parodies in an exaggerated manner -09896311 18 n 01 carillonneur 0 001 @ 10340312 n 0000 | a musician who plays a carillon -09896401 18 n 02 caroler 0 caroller 0 003 @ 10599806 n 0000 + 01731828 v 0201 + 01731828 v 0101 | a singer of carols -09896520 18 n 02 Carolingian 0 Carlovingian 0 004 @ 10628644 n 0000 #m 08154363 n 0000 ~i 10891981 n 0000 ~i 11229095 n 0000 | a member of the Carolingian dynasty -09896685 18 n 01 carpenter 0 003 @ 10790192 n 0000 + 02408843 v 0101 ~i 11091706 n 0000 | a woodworker who makes or repairs wooden objects -09896826 18 n 02 carper 0 niggler 0 003 @ 09979072 n 0000 + 00774056 v 0202 + 00808671 v 0102 | someone who constantly criticizes in a petty way -09896973 18 n 01 carpetbagger 0 001 @ 10379376 n 0000 | an outsider who seeks power or success presumptuously; "after the Civil War the carpetbaggers from the north tried to take over the south" -09897170 18 n 01 carpet_knight 0 001 @ 10238375 n 0000 | a knight who spends his time in luxury and idleness (knighted on the carpet at court rather than on the field of battle) -09897350 18 n 02 carrier 0 immune_carrier 0 005 @ 10199783 n 0000 @ 09469285 n 0000 ;c 06043075 n 0000 + 02746735 v 0101 ~i 11151932 n 0000 | (medicine) a person (or animal) who has some pathogen to which he is immune but who can pass it on to others -09897603 18 n 02 carrier 1 newsboy 0 001 @ 10001217 n 0000 | a boy who delivers newspapers -09897696 18 n 03 carrier 3 bearer 3 toter 0 004 @ 09629752 n 0000 + 01454246 v 0302 + 01432601 v 0201 + 01449974 v 0102 | someone whose employment involves carrying something; "the bonds were transmitted by carrier" -09897914 18 n 01 carter 0 002 @ 09632518 n 0000 + 01451502 v 0101 | someone whose work is driving carts -09898020 18 n 01 Cartesian 0 001 @ 10099375 n 0000 | a follower of Cartesian thought -09898107 18 n 01 Carthusian 0 002 @ 10112129 n 0000 #m 08149004 n 0000 | a member of the Carthusian order -09898215 18 n 02 cartographer 0 map_maker 0 003 @ 10127555 n 0000 + 00924579 n 0102 ~i 10877841 n 0000 | a person who makes maps -09898346 18 n 01 cartoonist 0 015 @ 10029068 n 0000 + 06616464 n 0101 + 06780678 n 0101 + 01693727 v 0101 ~ 10244503 n 0000 ~i 10968257 n 0000 ~i 11004485 n 0000 ~i 11142155 n 0000 ~i 11165164 n 0000 ~i 11200949 n 0000 ~i 11286820 n 0000 ~i 11300465 n 0000 ~i 11314969 n 0000 ~i 11335226 n 0000 ~i 11341760 n 0000 | a person who draws cartoons -09898692 18 n 01 cartwright 0 001 @ 10793570 n 0000 | a workman who makes and repairs carts and wagons -09898797 18 n 01 Casanova 1 001 @ 10789118 n 0000 | any man noted for his amorous adventures -09898892 18 n 01 case 3 005 @ 00007846 n 0000 ~ 09985075 n 0000 ~ 10405694 n 0000 ~ 10514255 n 0000 ~ 10773800 n 0000 | a person requiring professional services; "a typical case was the suburban housewife described by a marriage counselor" -09899134 18 n 01 case_officer 0 002 @ 10569411 n 0000 ~ 09764732 n 0000 | an operative who also serves as an official staffer of an intelligence service -09899289 18 n 01 cashier 1 001 @ 00007846 n 0000 | a person responsible for receiving payments for goods and services (as in a shop or restaurant) -09899438 18 n 02 castaway 1 shipwreck_survivor 0 001 @ 09753930 n 0000 | a shipwrecked person -09899534 18 n 01 castrato 0 001 @ 10599806 n 0000 | a male singer who was castrated before puberty and retains a soprano or alto voice -09899671 18 n 02 casualty 0 injured_party 0 001 @ 10752093 n 0000 | someone injured or killed in an accident -09899782 18 n 01 casualty 1 002 @ 10752093 n 0000 ;c 08199025 n 0000 | someone injured or killed or captured or missing in a military engagement -09899929 18 n 02 casuist 0 sophist 0 007 @ 10510339 n 0000 + 02500736 a 0202 + 02500736 a 0201 + 05895138 n 0201 + 03053657 a 0102 + 03053460 a 0102 + 06160244 n 0101 | someone whose reasoning is subtle and often specious -09900153 18 n 01 cat 0 003 @ 10139347 n 0000 @ 10787470 n 0000 + 00225912 a 0102 | a spiteful woman gossip; "what a cat she is!" -09900284 18 n 01 Catalan 0 002 @ 09731906 n 0000 + 03054020 a 0101 | a native or inhabitant of Catalonia -09900391 18 n 01 cataleptic 0 002 @ 10490141 n 0000 + 03054216 a 0101 | a person suffering from catalepsy -09900499 18 n 02 cataloger 0 cataloguer 0 005 @ 10257948 n 0000 + 01626844 v 0201 + 00652622 v 0201 + 01626844 v 0101 + 00652622 v 0101 | a librarian who classifies publication according to a categorial system -09900711 18 n 01 catalyst 0 001 @ 00007347 n 0000 | something that causes an important event to happen; "the invasion acted as a catalyst to unite the country" -09900873 18 n 01 catamite 0 001 @ 10285313 n 0000 | a boy who submits to a sexual relationship with a man -09900981 18 n 02 catch 0 match 1 004 @ 09605289 n 0000 + 01293389 v 0201 + 01292885 v 0201 + 01806505 v 0104 | a person regarded as a good matrimonial prospect -09901143 18 n 02 catcher 0 backstop 0 005 @ 10205457 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 + 01439190 v 0101 + 01082454 v 0101 | (baseball) the person who plays the position of catcher -09901337 18 n 01 catechist 0 002 @ 10694258 n 0000 + 06412771 n 0101 | one who instructs catechumens in preparation for baptism (especially one using a catechism) -09901502 18 n 02 catechumen 0 neophyte 2 001 @ 10665698 n 0000 | a new convert being taught the principles of Christianity by a catechist -09901642 18 n 01 caterer 0 003 @ 10677271 n 0000 + 01180844 v 0101 + 01182709 v 0104 | someone who provides food and service (as for a party) -09901786 18 n 01 Catholicos 0 001 @ 09505153 n 0000 | the ecclesiastical title of the leaders of the Nestorian and Armenian churches -09901921 18 n 01 cat_fancier 0 001 @ 09794426 n 0000 | a person who breeds and cares for cats -09902017 18 n 03 cattleman 1 cow_man 0 beef_man 0 001 @ 10658501 n 0000 | a man who raises (or tends) cattle -09902128 18 n 02 Cavalier 1 Royalist 1 001 @ 10327824 n 0000 | a royalist supporter of Charles I during the English Civil War -09902256 18 n 02 cavalier 0 chevalier 0 001 @ 10285135 n 0000 | a gallant or courtly gentleman -09902353 18 n 02 cavalryman 0 trooper 3 007 @ 10622053 n 0000 #m 08389710 n 0000 ~ 09982277 n 0000 ~ 10029831 n 0000 ~ 10194341 n 0000 ~ 10244818 n 0000 ~ 10540252 n 0000 | a soldier mounted on horseback; "a cavalryman always takes good care of his mount" -09902611 18 n 02 cavalryman 1 trooper 1 002 @ 10622053 n 0000 #m 08397856 n 0000 | a soldier in a motorized army unit -09902731 18 n 04 caveman 0 cave_man 0 cave_dweller 0 troglodyte 0 001 @ 09627462 n 0000 | someone who lives in a cave -09902851 18 n 01 celebrant 0 001 @ 10470779 n 0000 | an officiating priest celebrating the Eucharist -09902954 18 n 03 celebrant 1 celebrator 0 celebrater 0 006 @ 00007846 n 0000 + 02578510 v 0202 + 02490877 v 0201 + 02578510 v 0102 + 02490877 v 0101 ~ 10526096 n 0000 | a person who is celebrating -09903153 18 n 02 celebrity 0 famous_person 0 006 @ 10200781 n 0000 ~ 10199644 n 0000 ~ 10265070 n 0000 ~ 10276238 n 0000 ~ 10417424 n 0000 ~ 10713367 n 0000 | a widely known person; "he was a baseball celebrity" -09903367 18 n 01 celibate 0 002 @ 09628382 n 0000 + 00360950 a 0101 | an unmarried person who has taken a religious vow of chastity -09903501 18 n 02 cellist 0 violoncellist 0 003 @ 10340312 n 0000 + 02992211 n 0101 ~i 10885831 n 0000 | someone who plays a violoncello -09903639 18 n 01 censor 0 004 @ 10372373 n 0000 + 02687578 a 0101 + 00397347 n 0102 + 00682928 v 0101 | a person who is authorized to read publications or correspondence or to watch theatrical performances and suppress in whole or in part anything considered obscene or politically unacceptable -09903936 18 n 01 censor 1 003 @ 00007846 n 0000 + 02687578 a 0101 + 00648089 a 0101 | someone who censures or condemns -09904057 18 n 02 census_taker 0 enumerator 0 002 @ 10372373 n 0000 + 00948071 v 0203 | someone who collects census data by visiting individual homes -09904208 18 n 01 centenarian 0 002 @ 10376523 n 0000 + 01645048 a 0101 | someone who is at least 100 years old -09904321 18 n 02 center 0 snapper 0 003 @ 10263411 n 0000 ;c 00468480 n 0000 + 01402872 v 0201 | (football) the person who plays center on the line of scrimmage and snaps the ball to the quarterback; "the center fumbled the handoff" -09904556 18 n 01 center 1 003 @ 09842047 n 0000 ;c 00480993 n 0000 ~i 11275495 n 0000 | (basketball) the person who plays center on a basketball team -09904708 18 n 01 center 2 002 @ 10179291 n 0000 ;c 00463543 n 0000 | (ice hockey) the person who plays center on a hockey team -09904837 18 n 04 centrist 0 middle_of_the_roader 0 moderate 0 moderationist 0 004 @ 09605289 n 0000 #m 08416523 n 0000 + 02031810 a 0101 + 06214379 n 0101 | a person who takes a position in the political center -09905050 18 n 01 centurion 0 003 @ 10768585 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (ancient Rome) the leader of 100 soldiers -09905185 18 n 02 certified_public_accountant 0 CPA 0 001 @ 09761403 n 0000 | an accountant who has passed certain examinations and met all other statutory and licensing requirements of a United States state to be certified by that state; "in addition to accounting and auditing, CPAs also prepare tax returns for individuals and corporations" -09905530 18 n 05 chachka 0 tsatske 0 tshatshke 0 tchotchke 0 tchotchkeleh 0 002 @ 10129825 n 0000 ;c 06951067 n 0000 | (Yiddish) an attractive, unconventional woman -09905697 18 n 01 chain-smoker 0 002 @ 10614976 n 0000 + 01198452 v 0101 | a heavy smoker (usually of cigarettes) who lights one off of another -09905842 18 n 01 chairman_of_the_board 0 001 @ 09966255 n 0000 | the chairman of the board of directors of a corporation -09905965 18 n 03 Chaldean 1 Chaldaean 1 Chaldee 1 001 @ 10370381 n 0000 | a wise man skilled in occult learning -09906079 18 n 01 chamberlain 1 001 @ 10655442 n 0000 | an officer who manages the household of a king or nobleman -09906195 18 n 01 chamberlain 0 001 @ 10727256 n 0000 | the treasurer of a municipal corporation -09906293 18 n 02 chambermaid 0 fille_de_chambre 0 001 @ 10282672 n 0000 | a maid who is employed to clean and care for bedrooms (now primarily in hotels) -09906449 18 n 01 chameleon 0 001 @ 00007846 n 0000 | a changeable or inconstant person -09906538 18 n 04 champion 0 fighter 2 hero 1 paladin 0 004 @ 09614684 n 0000 + 00251134 a 0302 + 02589576 v 0202 + 01149138 v 0101 | someone who fights for a cause -09906704 18 n 03 champion 1 champ 0 title-holder 0 002 @ 10533013 n 0000 ~ 10511856 n 0000 | someone who has won first place in a competition -09906848 18 n 01 chancellor 1 003 @ 10474645 n 0000 ;r 08860123 n 0000 + 00590148 n 0101 | the honorary or titular head of a university -09906986 18 n 03 chancellor 0 premier 1 prime_minister 0 005 @ 10164747 n 0000 + 01012990 a 0201 + 00596692 n 0201 + 00590148 n 0101 ~ 10691052 n 0000 | the person who is head of state (in several countries) -09907196 18 n 03 Prime_Minister 1 PM 0 premier 0 004 @ 10164747 n 0000 #m 08382056 n 0000 + 01012990 a 0301 + 00596692 n 0301 | the person who holds the position of head of the government in the United Kingdom -09907408 18 n 02 Chancellor_of_the_Exchequer 0 Chancellor 2 002 @ 09886010 n 0000 #m 08382056 n 0000 | the British cabinet minister responsible for finance -09907566 18 n 01 chandler 0 003 @ 10284064 n 0000 ~ 09890894 n 0000 ~ 09907717 n 0000 | a maker (and seller) of candles and soap and oils and paints -09907717 18 n 01 wax-chandler 0 001 @ 09907566 n 0000 | one who deals in wax candles -09907804 18 n 01 chandler 1 002 @ 10525436 n 0000 ~ 10590638 n 0000 | a retail dealer in provisions and supplies -09907919 18 n 01 changeling 0 001 @ 09917593 n 0000 | a child secretly exchanged for another in infancy -09908025 18 n 09 chap 0 fellow 0 feller 0 fella 0 lad 1 gent 1 blighter 1 cuss 1 bloke 0 002 @ 09624168 n 0000 ~ 10023039 n 0000 | a boy or man; "that chap is your host"; "there's a fellow at the door"; "he's a likable cuss"; "he's a good bloke" -09908273 18 n 02 chaperon 0 chaperone 0 006 @ 09614684 n 0000 + 02026712 v 0201 + 02026712 v 0102 ~ 10003476 n 0000 ~ 10039164 n 0000 ~ 10189059 n 0000 | one who accompanies and supervises a young woman or gatherings of young people -09908508 18 n 01 chaplain 0 005 @ 09927451 n 0000 + 00590269 n 0102 ~ 09908769 n 0000 ~ 10186686 n 0000 ~ 10316527 n 0000 | a clergyman ministering to some institution -09908678 18 n 01 chapman 0 001 @ 10411551 n 0000 | archaic term for an itinerant peddler -09908769 18 n 01 prison_chaplain 0 001 @ 09908508 n 0000 | a chaplain in a prison -09908853 18 n 01 chauffeur 0 003 @ 10034906 n 0000 + 02058049 v 0102 ~ 09908986 n 0000 | a man paid to drive a privately owned car -09908986 18 n 01 chauffeuse 0 001 @ 09908853 n 0000 | a woman chauffeur -09909060 18 n 04 character 0 eccentric 1 type 0 case 4 004 @ 09605289 n 0000 + 02469119 a 0303 + 00618682 v 0301 + 02699141 v 0301 | a person of a specified kind (usually with many eccentricities); "a real character"; "a strange character"; "a friendly eccentric"; "the capable type"; "a mental case" -09909363 18 n 01 character_actor 0 001 @ 09765278 n 0000 | an actor who specializes in playing supporting roles -09909477 18 n 01 character_witness 0 001 @ 10786517 n 0000 | a witness who testifies under oath as to the good reputation of another person in the community where that person lives -09909660 18 n 01 charcoal_burner 0 001 @ 09632518 n 0000 | a worker whose job is to make charcoal -09909760 18 n 01 charge 0 003 @ 10004804 n 0000 + 02475922 v 0102 + 02347637 v 0102 | a person committed to your care; "the teacher led her charges across the street" -09909929 18 n 01 charge_d'affaires 0 001 @ 10013927 n 0000 | the official temporarily in charge of a diplomatic mission in the absence of the ambassador -09910084 18 n 01 charge_of_quarters 0 001 @ 10058585 n 0000 | an enlisted man who handles his unit's administrative matters after hours -09910222 18 n 01 charioteer 0 005 @ 10035430 n 0000 + 03009269 n 0101 + 03009111 n 0101 + 01949817 v 0101 + 01906687 v 0101 | the driver of a chariot -09910374 18 n 02 charmer 0 beguiler 0 004 @ 00007846 n 0000 + 01806505 v 0208 + 01806505 v 0109 ~ 10166189 n 0000 | a person who charms others (usually by personal attractiveness) -09910556 18 n 01 chartered_accountant 0 001 @ 09761403 n 0000 | a British or Canadian accountant who is a member of a professional body that has a royal charter -09910719 18 n 01 charter_member 0 001 @ 10307234 n 0000 | one of the original members when an organization was founded -09910840 18 n 02 chartist 0 technical_analyst 0 003 @ 09791248 n 0000 + 06999802 n 0101 + 01755137 v 0102 | a stock market analyst who tries to predict market trends from graphs of recent prices of securities -09911051 18 n 01 Chartist 1 002 @ 10515194 n 0000 + 05956287 n 0101 | a 19th century English reformer who advocated better social and economic conditions for working people -09911226 18 n 05 charwoman 0 char 0 cleaning_woman 0 cleaning_lady 0 woman 2 001 @ 09927089 n 0000 | a human female employed to do housework; "the char will clean the carpet"; "I have a woman who comes in four hours a day while I write" -09911465 18 n 01 chatelaine 0 001 @ 10323634 n 0000 | the mistress of a chateau or large country house -09911570 18 n 06 chatterer 0 babbler 0 prater 0 chatterbox 0 magpie 1 spouter 0 008 @ 10630188 n 0000 + 01051956 v 0604 + 01036804 v 0304 + 01037650 v 0201 + 01065630 v 0201 + 01037303 v 0101 + 01038666 v 0108 + 01036804 v 0101 | an obnoxious and foolish and loquacious talker -09911849 18 n 06 chauvinist 0 jingoist 0 jingo 0 flag-waver 0 hundred-percenter 0 patrioteer 0 005 @ 10407310 n 0000 + 07187486 n 0202 + 04878646 n 0202 + 01740358 a 0101 + 04878646 n 0101 | an extreme bellicose nationalist -09912075 18 n 01 chauvinist 1 003 @ 09853645 n 0000 + 02691680 a 0101 + 01156070 n 0102 | a person with a prejudiced belief in the superiority of his or her own kind -09912243 18 n 01 antifeminist 0 003 @ 09853645 n 0000 + 01156070 n 0103 ~ 09912431 n 0000 | someone who does not believe in the social or economic or political equality of men and women -09912431 18 n 02 male_chauvinist 0 sexist 0 003 @ 09912243 n 0000 + 00286063 a 0201 + 01155893 n 0201 | a man with a chauvinistic belief in the inferiority of women -09912598 18 n 01 cheapjack 0 001 @ 10411551 n 0000 | a peddler of inferior goods -09912681 18 n 02 cheapskate 0 tightwad 0 001 @ 10322084 n 0000 | a miserly person -09912765 18 n 01 chebab 0 002 @ 09772029 n 0000 ;r 08798382 n 0000 | a Palestinian juvenile 10-15 years old who fights against the Israelis -09912907 18 n 01 Chechen 0 001 @ 09728403 n 0000 | a native or inhabitant of Chechnya -09912995 18 n 01 checker 0 002 @ 10067968 n 0000 + 00661824 v 0101 | one who checks the correctness of something -09913110 18 n 01 checker 1 003 @ 09821831 n 0000 + 02347447 v 0101 ~ 09913240 n 0000 | an attendant who checks coats or baggage -09913240 18 n 02 check_girl 0 hatcheck_girl 0 001 @ 09913110 n 0000 | a female checker -09913329 18 n 01 cheerer 0 003 @ 10633450 n 0000 + 00858568 v 0101 + 00858781 v 0101 | a spectator who shouts encouragement -09913455 18 n 01 cheerleader 0 002 @ 09623038 n 0000 + 00858437 v 0101 | someone who leads the cheers by spectators at a sporting event -09913593 18 n 01 cheerleader 1 001 @ 10677713 n 0000 | an enthusiastic and vocal supporter; "he has become a cheerleader for therapeutic cloning" -09913741 18 n 01 cheesemonger 0 001 @ 10720453 n 0000 | someone who sells cheese -09913824 18 n 01 chemist 0 081 @ 10560637 n 0000 ;c 06084469 n 0000 + 06084469 n 0101 ~ 09854915 n 0000 ~ 10364502 n 0000 ~ 10430554 n 0000 ~i 10824352 n 0000 ~i 10849435 n 0000 ~i 10852130 n 0000 ~i 10860108 n 0000 ~i 10870072 n 0000 ~i 10871424 n 0000 ~i 10880669 n 0000 ~i 10883533 n 0000 ~i 10885603 n 0000 ~i 10888401 n 0000 ~i 10916505 n 0000 ~i 10917703 n 0000 ~i 10918119 n 0000 ~i 10921324 n 0000 ~i 10925132 n 0000 ~i 10932696 n 0000 ~i 10954180 n 0000 ~i 10960439 n 0000 ~i 10966318 n 0000 ~i 10971697 n 0000 ~i 10971852 n 0000 ~i 10973873 n 0000 ~i 10993098 n 0000 ~i 10997888 n 0000 ~i 11021178 n 0000 ~i 11022160 n 0000 ~i 11024731 n 0000 ~i 11034167 n 0000 ~i 11040596 n 0000 ~i 11048389 n 0000 ~i 11048739 n 0000 ~i 11053817 n 0000 ~i 11054856 n 0000 ~i 11055042 n 0000 ~i 11098876 n 0000 ~i 11106652 n 0000 ~i 11111335 n 0000 ~i 11112488 n 0000 ~i 11116875 n 0000 ~i 11119917 n 0000 ~i 11122977 n 0000 ~i 11131505 n 0000 ~i 11134730 n 0000 ~i 11173475 n 0000 ~i 11191251 n 0000 ~i 11193250 n 0000 ~i 11196046 n 0000 ~i 11201264 n 0000 ~i 11203287 n 0000 ~i 11208688 n 0000 ~i 11209675 n 0000 ~i 11215384 n 0000 ~i 11218054 n 0000 ~i 11224877 n 0000 ~i 11226933 n 0000 ~i 11246542 n 0000 ~i 11257395 n 0000 ~i 11264614 n 0000 ~i 11266524 n 0000 ~i 11276549 n 0000 ~i 11283843 n 0000 ~i 11285692 n 0000 ~i 11290477 n 0000 ~i 11304912 n 0000 ~i 11307587 n 0000 ~i 11307937 n 0000 ~i 11308739 n 0000 ~i 11344549 n 0000 ~i 11357514 n 0000 ~i 11387806 n 0000 ~i 11392754 n 0000 ~i 11394954 n 0000 ~i 11396338 n 0000 ~i 11406906 n 0000 ~i 11407865 n 0000 | a scientist who specializes in chemistry -09915434 18 n 02 Cheops 0 Khufu 0 001 @ 10421016 n 0000 | Egyptian Pharaoh of the 27th century BC who commissioned the Great Pyramid at Giza -09915577 18 n 01 cherub 1 001 @ 09827683 n 0000 | a sweet innocent baby -09915651 18 n 01 chess_master 0 006 @ 09915834 n 0000 ~i 10971528 n 0000 ~i 11096991 n 0000 ~i 11097335 n 0000 ~i 11109289 n 0000 ~i 11309772 n 0000 | a chess player of great skill -09915834 18 n 01 chess_player 0 003 @ 10439851 n 0000 ~ 09915651 n 0000 ~ 10408939 n 0000 | someone who plays the game of chess -09915964 18 n 01 chewer 0 003 @ 09612848 n 0000 + 01201089 v 0101 ~ 10338391 n 0000 | someone who chews (especially someone who chews tobacco) -09916109 18 n 01 chichi 0 001 @ 10033225 n 0000 | someone who dresses in a trendy fashionable way -09916209 18 n 01 Chief_Constable 0 002 @ 09893015 n 0000 ;r 08860123 n 0000 | the head of the police force in a county (or similar area) -09916348 18 n 03 chief_executive_officer 0 CEO 0 chief_operating_officer 0 001 @ 09966255 n 0000 | the corporate executive responsible for the operations of the firm; reports to a board of directors; may appoint other managers (including a president) -09916601 18 n 02 chief_financial_officer 0 CFO 0 001 @ 09966255 n 0000 | the corporate executive having financial authority to make appropriations and authorize expenditures for a firm -09916788 18 n 01 chief_justice 0 018 @ 10225219 n 0000 ;c 08441203 n 0000 ~i 10872287 n 0000 ~i 10893606 n 0000 ~i 10958381 n 0000 ~i 10985653 n 0000 ~i 11064662 n 0000 ~i 11081111 n 0000 ~i 11158754 n 0000 ~i 11256765 n 0000 ~i 11276676 n 0000 ~i 11319810 n 0000 ~i 11328714 n 0000 ~i 11330692 n 0000 ~i 11367035 n 0000 ~i 11370314 n 0000 ~i 11374789 n 0000 ~i 11384291 n 0000 | the judge who presides over a supreme court -09917214 18 n 01 chief_of_staff 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | the senior officer of a service of the armed forces -09917345 18 n 01 chief_petty_officer 0 002 @ 10360747 n 0000 ;c 08199025 n 0000 | a person with the senior noncommissioned naval rank -09917481 18 n 01 Chief_Secretary 0 002 @ 09886010 n 0000 #m 08382056 n 0000 | a member of the British Cabinet -09917593 18 n 0c child 0 kid 0 youngster 0 minor 0 shaver 0 nipper 0 small_fry 1 tiddler 0 tike 1 tyke 1 fry 0 nestling 0 022 @ 09622049 n 0000 + 01648491 a 0102 + 15147097 n 0101 + 14427065 n 0101 %p 05219420 n 0000 ~ 09833441 n 0000 ~ 09883740 n 0000 ~ 09907919 n 0000 ~ 09918867 n 0000 ~ 10106080 n 0000 ~ 10200047 n 0000 ~ 10230736 n 0000 ~ 10384392 n 0000 ~ 10410440 n 0000 ~ 10431330 n 0000 ~ 10456950 n 0000 ~ 10466060 n 0000 ~ 10598641 n 0000 ~ 10641223 n 0000 ~ 10714465 n 0000 ~ 10741367 n 0000 ~ 10763075 n 0000 | a young person of either sex; "she writes books for children"; "they're just kids"; "`tiddler' is a British term for youngster" -09918248 18 n 02 child 1 kid 1 008 @ 10373998 n 0000 #m 07970406 n 0000 ! 10399491 n 0101 ~ 09809427 n 0000 ~ 09827683 n 0000 ~ 10084043 n 0000 ~ 10285938 n 0000 ~ 10654461 n 0000 | a human offspring (son or daughter) of any age; "they had three children"; "they were able to send their kids to college" -09918554 18 n 02 child 6 baby 3 003 @ 00007846 n 0000 + 14427239 n 0202 + 14427065 n 0101 | an immature childish person; "he remained a child in practical matters as long as he lived"; "stop being a baby!" -09918762 18 n 01 child 7 001 @ 10006511 n 0000 | a member of a clan or tribe; "the children of Israel" -09918867 18 n 03 child_prodigy 0 infant_prodigy 0 wonder_child 0 002 @ 10479783 n 0000 @ 09917593 n 0000 | a prodigy whose talents are recognized at an early age; "Mozart was a child prodigy" -09919061 18 n 03 chimneysweeper 0 chimneysweep 0 sweep 0 002 @ 09927089 n 0000 + 01393996 v 0301 | someone who cleans soot from chimneys -09919200 18 n 01 chiropractor 0 001 @ 10707233 n 0000 | a therapist who practices chiropractic -09919297 18 n 03 chiropodist 0 foot_doctor 0 podiatrist 0 003 @ 10632576 n 0000 + 06062076 n 0301 + 06062076 n 0102 | a specialist in care for the feet -09919451 18 n 01 chit 0 001 @ 10129825 n 0000 | a dismissive term for a girl who is immature or who lacks respect; "she was incensed that this chit of a girl should dare to make a fool of her in front of the class"; "she's a saucy chit" -09919690 18 n 01 choirboy 0 001 @ 09920771 n 0000 | a boy who sings in a choir -09919771 18 n 03 choirmaster 0 precentor 0 cantor 1 002 @ 10339966 n 0000 + 00596290 n 0201 | the musical director of a choir -09919899 18 n 01 choker 1 002 @ 09630641 n 0000 + 02529669 v 0101 | an unfortunate person who is unable to perform effectively because of nervous tension or agitation; "he could win if he wasn't a choker" -09920106 18 n 01 choragus 0 004 @ 09623038 n 0000 ;r 08780881 n 0000 ;c 15253139 n 0000 + 02695647 a 0101 | (ancient Greece) leader of a group or festival; leader of a chorus -09920283 18 n 01 choreographer 0 022 @ 09614315 n 0000 + 01708317 v 0101 ~i 10810671 n 0000 ~i 10815343 n 0000 ~i 10825923 n 0000 ~i 10826352 n 0000 ~i 10831656 n 0000 ~i 10837737 n 0000 ~i 10917554 n 0000 ~i 10929886 n 0000 ~i 11010187 n 0000 ~i 11075352 n 0000 ~i 11080601 n 0000 ~i 11085813 n 0000 ~i 11099729 n 0000 ~i 11113601 n 0000 ~i 11163859 n 0000 ~i 11263803 n 0000 ~i 11296602 n 0000 ~i 11313911 n 0000 ~i 11337629 n 0000 ~i 11351677 n 0000 | someone who creates new dances -09920771 18 n 01 chorister 0 004 @ 10599806 n 0000 #m 08188638 n 0000 + 08188638 n 0101 ~ 09919690 n 0000 | a singer in a choir -09920901 18 n 03 chorus_girl 0 showgirl 0 chorine 0 002 @ 09989502 n 0000 #m 08188449 n 0000 | a woman who dances in a chorus line -09921034 18 n 01 chosen 0 001 @ 09991867 n 0000 | one who is the object of choice; who is given preference; "she was Mama's chosen" -09921168 18 n 01 chronicler 0 003 @ 10177150 n 0000 + 01001136 v 0101 ~i 10994660 n 0000 | someone who writes chronicles -09921291 18 n 01 Chukchi 0 001 @ 09731082 n 0000 | a member of an indigenous people living on the Chukchi Peninsula -09921409 18 n 09 chump 0 fool 1 gull 0 mark 0 patsy 0 fall_guy 0 sucker 1 soft_touch 0 mug 0 006 @ 10752480 n 0000 + 01539063 v 0702 + 02576349 v 0302 + 00854904 v 0301 + 00854904 v 0206 + 02576349 v 0201 | a person who is gullible and easy to take advantage of -09921673 18 n 01 chutzpanik 0 002 @ 00007846 n 0000 ;c 06951067 n 0000 | (Yiddish) a person characterized by chutzpa -09921792 18 n 03 Church_Father 0 Father_of_the_Church 0 Father 4 010 @ 10705615 n 0000 ;c 06226057 n 0000 ~i 10815648 n 0000 ~i 10827155 n 0000 ~i 10828573 n 0000 ~i 10837918 n 0000 ~i 11015080 n 0000 ~i 11073061 n 0000 ~i 11083064 n 0000 ~i 11086774 n 0000 | (Christianity) any of about 70 theologians in the period from the 2nd to the 7th century whose writing established and confirmed official church doctrine; in the Roman Catholic Church some were later declared saints and became Doctor of the Church; the best known Latin Church Fathers are Ambrose, Augustine, Gregory the Great, and Jerome; those who wrote in Greek include Athanasius, Basil, Gregory Nazianzen, and John Chrysostom -09922485 18 n 02 churchgoer 0 church_member 0 004 @ 09628382 n 0000 ~ 09955517 n 0000 ~ 10181026 n 0000 ~ 10400108 n 0000 | a religious person who goes to church regularly -09922659 18 n 01 churchwarden 0 001 @ 09922799 n 0000 | an officer in the Episcopal church who helps a parish priest with secular matters -09922799 18 n 01 church_officer 0 008 @ 10372373 n 0000 ~ 09922659 n 0000 ~ 09994673 n 0000 ~ 10048367 n 0000 ~ 10585217 n 0000 ~ 10748309 n 0000 ~ 10748889 n 0000 ~ 10749004 n 0000 | a church official -09923003 18 n 01 cicerone 0 001 @ 10151570 n 0000 | a guide who conducts and informs sightseers -09923101 18 n 01 cigarette_smoker 0 001 @ 10614976 n 0000 | a smoker of cigarettes -09923186 18 n 01 cigar_smoker 0 001 @ 10614976 n 0000 | a smoker of cigars -09923263 18 n 01 Cinderella 0 001 @ 10787470 n 0000 | a woman whose merits were not been recognized but who then achieves sudden success and recognition -09923418 18 n 04 cipher 0 cypher 0 nobody 0 nonentity 0 003 @ 09610405 n 0000 ~ 10435251 n 0000 ~ 10776987 n 0000 | a person of no influence -09923561 18 n 01 circus_acrobat 0 001 @ 09764381 n 0000 | an acrobat who performs acrobatic feats in a circus -09923673 18 n 01 citizen 0 012 @ 09625401 n 0000 #m 08160276 n 0000 + 13953467 n 0101 + 04898208 n 0101 ! 10103485 n 0103 ~ 09765118 n 0000 ~ 09924742 n 0000 ~ 10111023 n 0000 ~ 10457903 n 0000 ~ 10521288 n 0000 ~ 10704886 n 0000 ~ 10760340 n 0000 | a native or naturalized member of a state or other political community -09923996 18 n 01 city_editor 0 001 @ 10356450 n 0000 | the newspaper editor in charge of editing local news -09924106 18 n 01 city_father 0 001 @ 10372373 n 0000 | an important municipal official -09924195 18 n 01 city_man 0 001 @ 10090020 n 0000 | a financier who works in one of the banks in the City of London -09924313 18 n 02 city_slicker 0 city_boy 0 001 @ 10611869 n 0000 | a city dweller with sophisticated manners and clothing -09924437 18 n 02 civic_leader 0 civil_leader 0 001 @ 09623038 n 0000 | a leader in municipal affairs -09924540 18 n 01 civil_engineer 0 003 @ 09615807 n 0000 ~ 10175963 n 0000 ~i 11315379 n 0000 | an engineer trained to design and construct and maintain public works (roads or bridges or harbors etc.) -09924742 18 n 01 civilian 0 003 @ 09923673 n 0000 + 01517921 a 0101 ! 10582746 n 0101 | a nonmilitary citizen -09924854 18 n 01 civil_libertarian 0 001 @ 10257524 n 0000 | a libertarian who is actively concerned with the protection of civil liberties -09924996 18 n 03 civil_rights_leader 0 civil_rights_worker 0 civil_rights_activist 0 014 @ 10515194 n 0000 ~ 10110093 n 0000 ~i 10855987 n 0000 ~i 10944013 n 0000 ~i 10963642 n 0000 ~i 10966665 n 0000 ~i 11076566 n 0000 ~i 11105054 n 0000 ~i 11151189 n 0000 ~i 11176005 n 0000 ~i 11223396 n 0000 ~i 11264973 n 0000 ~i 11387692 n 0000 ~i 11404140 n 0000 | a leader of the political movement dedicated to securing equal opportunity for members of minority groups -09925459 18 n 01 civil_servant 0 002 @ 10372373 n 0000 #m 08357258 n 0000 | a public official who is a member of the civil service -09925592 18 n 01 claimant 0 004 @ 09607280 n 0000 + 02275365 v 0101 + 01018352 v 0101 ~ 10469979 n 0000 | someone who claims a benefit or right or title; "claimants of unemployment compensation"; "he was a claimant to the throne" -09925824 18 n 01 claim_jumper 0 001 @ 10742546 n 0000 | one who illegally occupies property to which another has a legal claim -09925953 18 n 01 clairvoyant 0 003 @ 10488309 n 0000 + 01882474 a 0101 + 02109012 a 0101 | someone who has the power of clairvoyance -09926088 18 n 02 clapper 0 applauder 0 005 @ 10248711 n 0000 + 00861929 v 0201 + 00860292 v 0201 + 00861929 v 0102 + 00034115 v 0101 | someone who applauds -09926246 18 n 02 clarinetist 0 clarinettist 0 005 @ 10340312 n 0000 + 03037709 n 0201 + 03037709 n 0101 ~i 11007332 n 0000 ~i 11296429 n 0000 | a musician who plays the clarinet -09926426 18 n 01 classic 0 001 @ 09812338 n 0000 | an artist who has created classic works -09926519 18 n 01 classicist 0 003 @ 09812338 n 0000 + 06154724 n 0101 ! 10537906 n 0101 | an artistic person who adheres to classicism -09926656 18 n 02 classicist 1 classical_scholar 0 006 @ 10191192 n 0000 + 06170371 n 0101 ~ 10248091 n 0000 ~i 11092938 n 0000 ~i 11197417 n 0000 ~i 11394214 n 0000 | a student of ancient Greek and Latin -09926862 18 n 01 classifier 0 003 @ 10708454 n 0000 + 00739662 v 0102 + 00654625 v 0101 | a person who creates classifications -09926991 18 n 01 claustrophobe 0 001 @ 10354898 n 0000 | a person suffering from claustrophobia -09927089 18 n 01 cleaner 0 008 @ 10241300 n 0000 + 01533442 v 0103 + 01532589 v 0101 ~ 09911226 n 0000 ~ 09919061 n 0000 ~ 10562645 n 0000 ~ 10662474 n 0000 ~ 10783145 n 0000 | someone whose occupation is cleaning -09927305 18 n 02 cleaner 1 dry_cleaner 0 003 @ 10592152 n 0000 + 01535117 v 0201 + 01532589 v 0101 | the operator of dry-cleaning establishment -09927451 18 n 03 clergyman 0 reverend 0 man_of_the_cloth 0 030 @ 09505153 n 0000 #m 08152787 n 0000 ! 10250527 n 0101 ~ 09763349 n 0000 ~ 09789668 n 0000 ~ 09804343 n 0000 ~ 09908508 n 0000 ~ 09928136 n 0000 ~ 09983572 n 0000 ~ 09994520 n 0000 ~ 10025060 n 0000 ~ 10026763 n 0000 ~ 10252354 n 0000 ~ 10373390 n 0000 ~ 10382302 n 0000 ~ 10382480 n 0000 ~ 10457597 n 0000 ~ 10464178 n 0000 ~ 10470779 n 0000 ~ 10588965 n 0000 ~ 10668024 n 0000 ~ 10750188 n 0000 ~ 10750365 n 0000 ~i 10841065 n 0000 ~i 10939856 n 0000 ~i 11098707 n 0000 ~i 11105054 n 0000 ~i 11381824 n 0000 ~i 11381964 n 0000 ~i 11389619 n 0000 | a member of the clergy and a spiritual leader of the Christian Church -09928136 18 n 04 cleric 0 churchman 0 divine 0 ecclesiastic 0 006 @ 09927451 n 0000 ~ 10381214 n 0000 ~ 10399130 n 0000 ~ 10443830 n 0000 ~i 10810818 n 0000 ~i 10868980 n 0000 | a clergyman or other person in religious orders -09928364 18 n 01 clericalist 0 001 @ 10016103 n 0000 | one who advocates clericalism -09928451 18 n 01 clerk 0 016 @ 10053808 n 0000 + 02556229 a 0101 + 02698031 a 0101 + 00590518 n 0101 + 02411802 v 0101 ~ 10007995 n 0000 ~ 10087574 n 0000 ~ 10397275 n 0000 ~ 10414507 n 0000 ~ 10442573 n 0000 ~ 10459116 n 0000 ~ 10583790 n 0000 ~ 10590537 n 0000 ~ 10626867 n 0000 ~ 10690268 n 0000 ~ 10711370 n 0000 | an employee who performs clerical work (e.g., keeps records or accounts) -09928845 18 n 02 clever_Dick 0 clever_clogs 0 002 @ 09621545 n 0000 ;r 08860123 n 0000 | an intellectual who is ostentatiously and irritatingly knowledgeable -09929005 18 n 01 cliff_dweller 0 001 @ 09647473 n 0000 | a member of the Anasazi people living in the southwestern United States who built rock or adobe dwellings on ledges in the sides of caves -09929202 18 n 01 climatologist 0 001 @ 09617867 n 0000 | someone who is expert in climatology -09929298 18 n 01 climber 0 005 @ 09820263 n 0000 + 01921964 v 0101 ~ 10062785 n 0000 ~ 10334567 n 0000 ~ 10535604 n 0000 | someone who climbs as a sport; especially someone who climbs mountains; "the lead climber looked strong still but his partner often slumped in his ropes" -09929577 18 n 01 clinician 0 003 @ 10462860 n 0000 ;c 06043075 n 0000 ;c 06136258 n 0000 | a practitioner (of medicine or psychology) who does clinical work instead of laboratory experiments -09929770 18 n 01 clip_artist 0 001 @ 09955015 n 0000 | a swindler who fleeces the victim -09929861 18 n 02 cloakmaker 0 furrier 0 001 @ 10120816 n 0000 | someone whose occupation is making or repairing fur garments -09929988 18 n 01 clock_watcher 0 001 @ 10197967 n 0000 | a worker preoccupied with the arrival of quitting time -09930102 18 n 02 clocksmith 0 clockmaker 0 002 @ 09974648 n 0000 ~i 11339534 n 0000 | someone whose occupation is making or repairing clocks and watches -09930257 18 n 02 closer 0 finisher 2 004 @ 10518194 n 0000 ;c 00471613 n 0000 + 00484166 v 0202 ~ 10608658 n 0000 | (baseball) a relief pitcher who can protect a lead in the last inning or two of the game -09930464 18 n 01 closer 1 002 @ 00007846 n 0000 + 02426395 v 0102 | a person who closes something; "whoever is the closer has to turn out the lights and lock up" -09930628 18 n 01 closet_queen 0 001 @ 10122645 n 0000 | a negative term for a homosexual man who chooses not to reveal his sexual orientation -09930772 18 n 02 clothier 0 haberdasher 0 001 @ 10309896 n 0000 | a merchant who sells men's clothing -09930876 18 n 05 clown 0 buffoon 0 goof 1 goofball 1 merry_andrew 0 009 @ 09940146 n 0000 + 02571536 a 0303 + 02566227 v 0305 + 00105778 v 0101 ~ 10160280 n 0000 ~ 10221312 n 0000 ~ 10778044 n 0000 ~ 10805113 n 0000 ~i 11100139 n 0000 | a person who amuses others by ridiculous behavior -09931165 18 n 02 clown 1 buffoon 1 002 @ 10100761 n 0000 ~i 09602610 n 0000 | a rude or vulgar fool -09931267 18 n 01 clumsy_person 1 004 @ 00007846 n 0000 ~ 09884934 n 0000 ~ 10039271 n 0000 ~ 10274639 n 0000 | a person with poor motor coordination -09931418 18 n 03 coach 0 private_instructor 0 tutor 0 005 @ 10694258 n 0000 ;c 00545501 n 0000 + 03127435 a 0301 + 00889294 n 0303 ~ 09975806 n 0000 | a person who gives private instruction (as in singing, acting, etc.) -09931640 18 n 03 coach 1 manager 1 handler 0 013 @ 10722575 n 0000 ;c 00523513 n 0000 + 01804414 v 0301 + 00594836 n 0201 + 02443049 v 0204 + 00833702 v 0101 ~ 09841515 n 0000 ~ 09841955 n 0000 ~ 09953178 n 0000 ~ 10101202 n 0000 ~ 10179207 n 0000 ~ 10701096 n 0000 ~i 11168974 n 0000 | (sports) someone in charge of training an athlete or a team -09931989 18 n 01 line_coach 0 001 @ 10101202 n 0000 | an assistant football coach in charge of the linemen -09932098 18 n 01 pitching_coach 0 002 @ 09841515 n 0000 ;c 00471613 n 0000 | an assistant baseball coach in charge of pitchers -09932227 18 n 01 coachbuilder 0 001 @ 09974648 n 0000 | a craftsman who makes the bodies of motor vehicles -09932336 18 n 01 coachman 0 001 @ 10035430 n 0000 | a man who drives a coach (or carriage) -09932429 18 n 01 coalman 0 001 @ 10001217 n 0000 | someone who delivers coal -09932508 18 n 03 coal_miner 0 collier 0 pitman 0 001 @ 10319796 n 0000 | someone who works in a coal mine -09932616 18 n 01 coaster 0 002 @ 10335931 n 0000 + 01886728 v 0101 | someone who coasts -09932706 18 n 01 coaster 1 001 @ 10523519 n 0000 | a resident of a coastal area -09932788 18 n 01 coastguardsman 0 002 @ 09861395 n 0000 #m 08192361 n 0000 | a member of a coastguard -09932892 18 n 02 coauthor 0 joint_author 0 001 @ 10794014 n 0000 | a writer who collaborates with others in writing something -09933020 18 n 01 cobber 0 001 @ 09877951 n 0000 | Australian term for a pal -09933098 18 n 02 cobbler 0 shoemaker 0 003 @ 10284064 n 0000 + 01267475 v 0101 ~ 09867069 n 0000 | a person who makes or repairs shoes -09933235 18 n 01 cocaine_addict 0 001 @ 10035952 n 0000 | a person addicted to cocaine -09933324 18 n 01 cocksucker 1 001 @ 09629246 n 0000 | a person who performs fellatio -09933411 18 n 02 codefendant 0 co-defendant 0 003 @ 09762101 n 0000 ~ 09965625 n 0000 ~ 10524711 n 0000 | a defendant who has been joined together with one or more other defendants in a single action -09933613 18 n 02 codetalker 0 windtalker 0 001 @ 10569411 n 0000 | a secret agent who was one of the Navajos who devised and used a code based on their native language; the code was unbroken by the Japanese during World War II -09933842 18 n 02 codger 0 old_codger 0 001 @ 10375506 n 0000 | used affectionately to refer to an eccentric but amusing old man -09933972 18 n 01 co-beneficiary 0 001 @ 09850121 n 0000 | one of two or more beneficiaries of the same benefit -09934085 18 n 01 co-discoverer 0 001 @ 10090498 n 0000 | someone who is the first of two or more people to discover something -09934213 18 n 02 co-ed 0 college_girl 0 001 @ 10736602 n 0000 | a female student at a coeducational college or university -09934337 18 n 01 cog 0 001 @ 10669991 n 0000 | a subordinate who performs an important but routine function; "he was a small cog in a large machine" -09934488 18 n 01 cognitive_neuroscientist 0 001 @ 09934647 n 0000 | a cognitive scientist who studies the neurophysiological foundations of mental phenomena -09934647 18 n 01 cognitive_scientist 0 002 @ 10560637 n 0000 ~ 09934488 n 0000 | a scientist who studies cognitive processes -09934774 18 n 01 coiffeur 0 001 @ 10155849 n 0000 | a man hairdresser -09934846 18 n 01 coiffeuse 0 001 @ 10155849 n 0000 | a woman hairdresser -09934921 18 n 03 coiner 0 minter 0 moneyer 0 005 @ 10605985 n 0000 + 13384877 n 0301 + 13384557 n 0301 + 01639105 v 0201 + 01639105 v 0102 | a skilled worker who coins or stamps money -09935107 18 n 01 coiner 1 002 @ 10126177 n 0000 + 01697986 v 0101 | someone who is a source of new words or new expressions -09935233 18 n 01 coiner 2 003 @ 10105085 n 0000 ;r 08860123 n 0000 + 01639105 v 0102 | a maker of counterfeit coins -09935351 18 n 01 cold_fish 0 001 @ 09631463 n 0000 | an aloof unemotional person -09935434 18 n 04 collaborator 0 cooperator 0 partner 0 pardner 0 008 @ 09816771 n 0000 + 08060694 n 0301 + 06526291 n 0301 + 02371684 v 0301 + 02416278 v 0203 + 02416278 v 0101 ~ 09875188 n 0000 ~ 09990904 n 0000 | an associate in an activity or endeavor or sphere of common interest; "the musician and the librettist were collaborators"; "sexual partners" -09935793 18 n 03 collaborator 1 collaborationist 0 quisling 0 004 @ 10722965 n 0000 + 01205341 n 0201 + 01205341 n 0202 + 02416751 v 0101 | someone who collaborates with an enemy occupying force -09935990 18 n 03 colleague 1 confrere 0 fellow 3 002 @ 09816771 n 0000 + 08227916 n 0302 | a person who is member of one's class or profession; "the surgeon consulted his colleagues"; "he sent e-mail to his fellow hackers" -09936215 18 n 04 colleague 0 co-worker 0 fellow_worker 0 workfellow 0 002 @ 09816771 n 0000 + 02699792 a 0101 | an associate that one works with -09936362 18 n 03 collector 0 gatherer 0 accumulator 0 007 @ 09632518 n 0000 ;c 13308999 n 0000 + 02218173 v 0101 ~ 09953052 n 0000 ~ 10132502 n 0000 ~ 10520675 n 0000 ~i 10990509 n 0000 | a person who is employed to collect payments (as for rent or taxes) -09936620 18 n 02 collector 1 aggregator 0 007 @ 00007846 n 0000 + 01385170 v 0201 ~ 09806944 n 0000 ~ 09951835 n 0000 ~ 10366779 n 0000 ~ 10390600 n 0000 ~ 10422405 n 0000 | a person who collects things -09936825 18 n 01 colleen 0 001 @ 10129825 n 0000 | an Irish girl -09936892 18 n 02 college_student 0 university_student 0 003 @ 09937056 n 0000 ~ 10302905 n 0000 ~ 10666259 n 0000 | a student enrolled in a college or university -09937056 18 n 03 collegian 0 college_man 0 college_boy 0 004 @ 10665698 n 0000 ~ 09936892 n 0000 ~ 10141109 n 0000 ~ 10736602 n 0000 | a student (or former student) at a college or university -09937250 18 n 01 colonel 0 003 @ 09943239 n 0000 ;c 08199025 n 0000 ~ 10259780 n 0000 | a commissioned military officer in the United States Army or Air Force or Marines who ranks above a lieutenant colonel and below a brigadier general -09937489 18 n 02 Colonel_Blimp 0 Blimp 0 002 @ 10508475 n 0000 ;r 08860123 n 0000 | any elderly pompous reactionary ultranationalistic person (after the cartoon character created by Sir David Low) -09937688 18 n 01 colonial 0 003 @ 10523519 n 0000 #m 08374049 n 0000 + 02700029 a 0101 | a resident of a colony -09937802 18 n 01 colonialist 0 002 @ 09848489 n 0000 + 00426526 n 0101 | a believer in colonialism -09937903 18 n 02 colonizer 0 coloniser 0 005 @ 10107303 n 0000 + 02590340 v 0202 + 02590340 v 0101 ~i 11252627 n 0000 ~i 11259054 n 0000 | someone who helps to found a colony -09938080 18 n 02 coloratura 0 coloratura_soprano 0 004 @ 10625546 n 0000 ~i 10880189 n 0000 ~i 11172045 n 0000 ~i 11242321 n 0000 | a lyric soprano who specializes in coloratura vocal music -09938272 18 n 02 color_bearer 0 standard-bearer 1 002 @ 10622053 n 0000 ;c 08199025 n 0000 | the soldier who carries the standard of the unit in military parades or in battle -09938449 18 n 01 color_guard 0 001 @ 10063461 n 0000 | a ceremonial escort for the (regimental) colors -09938554 18 n 01 color_sergeant 0 001 @ 10580772 n 0000 | a sergeant in a color guard who carries one of the colors -09938672 18 n 01 colorist 0 005 @ 10391653 n 0000 + 14984973 n 0103 + 04674968 n 0101 + 04956594 n 0101 + 01696648 v 0101 | a painter able to achieve special effects with color -09938851 18 n 01 Colossian 0 002 @ 10427658 n 0000 ~i 11232050 n 0000 | a native or inhabitant of the city of Colossae in ancient Phrygia -09938991 18 n 05 colossus 1 behemoth 1 giant 1 heavyweight 0 titan 1 002 @ 10200781 n 0000 + 01390683 a 0501 | a person of exceptional importance and reputation -09939154 18 n 02 columnist 0 editorialist 0 004 @ 10224578 n 0000 + 06268567 n 0202 + 06268567 n 0101 ~ 10356592 n 0000 | a journalist who writes editorials -09939313 18 n 05 combatant 0 battler 0 belligerent 0 fighter 0 scrapper 0 022 @ 00007846 n 0000 + 00775156 v 0503 + 01091427 v 0401 + 01090335 v 0402 + 01742537 a 0301 + 01244846 a 0302 + 01092366 v 0201 + 01517632 a 0101 + 01092366 v 0102 ~ 09615211 n 0000 ~ 09870208 n 0000 ~ 09873348 n 0000 ~ 09884815 n 0000 ~ 10085217 n 0000 ~ 10131815 n 0000 ~ 10140051 n 0000 ~ 10169678 n 0000 ~ 10303513 n 0000 ~ 10605848 n 0000 ~ 10662649 n 0000 ~ 10752930 n 0000 ~ 10793168 n 0000 | someone who fights (or is fighting) -09939827 18 n 01 combat_pilot 0 005 @ 10433164 n 0000 ;c 08199025 n 0000 ~ 10087434 n 0000 ~ 10660621 n 0000 ~i 11261804 n 0000 | airplane pilot who fights in an action between two military forces -09940026 18 n 01 comber 0 001 @ 09632518 n 0000 | a person who separates and straightens the fibers of cotton or wool -09940146 18 n 02 comedian 0 comic 0 025 @ 10415638 n 0000 + 01265308 a 0202 ~ 09930876 n 0000 ~ 09940818 n 0000 ~ 10117415 n 0000 ~ 10224098 n 0000 ~ 10715447 n 0000 ~i 10845424 n 0000 ~i 10873783 n 0000 ~i 10878375 n 0000 ~i 10890637 n 0000 ~i 10945825 n 0000 ~i 10970718 n 0000 ~i 11028780 n 0000 ~i 11049938 n 0000 ~i 11059263 n 0000 ~i 11098380 n 0000 ~i 11118886 n 0000 ~i 11119190 n 0000 ~i 11159920 n 0000 ~i 11160676 n 0000 ~i 11160861 n 0000 ~i 11161045 n 0000 ~i 11161228 n 0000 ~i 11189829 n 0000 | a professional performer who tells jokes and performs comical acts -09940725 18 n 01 comedian 1 002 @ 09765278 n 0000 ~ 09940987 n 0000 | an actor in a comedy -09940818 18 n 01 comedienne 0 006 @ 09940146 n 0000 ~i 10815113 n 0000 ~i 10832731 n 0000 ~i 10903413 n 0000 ~i 11351347 n 0000 ~i 11382278 n 0000 | a female comedian -09940987 18 n 01 comedienne 1 002 @ 09940725 n 0000 ~i 11020888 n 0000 | a female actor in a comedy -09941089 18 n 01 comer 1 001 @ 10533013 n 0000 | someone with a promising future -09941172 18 n 02 comfort_woman 0 ianfu 0 001 @ 10485440 n 0000 | a woman forced into prostitution for Japanese servicemen during World War II; "she wrote a book about her harsh experiences as a comfort woman" -09941383 18 n 01 commander 3 004 @ 09623038 n 0000 + 00590626 n 0101 + 02441022 v 0102 + 00751887 v 0101 | someone in an official position of authority who can command or control others -09941571 18 n 01 commander 1 005 @ 09943541 n 0000 ;c 08199025 n 0000 + 00590626 n 0101 + 02441022 v 0102 + 00751887 v 0101 | a commissioned naval officer who ranks above a lieutenant commander and below a captain -09941787 18 n 02 commander_in_chief 0 generalissimo 0 001 @ 09941964 n 0000 | the officer who holds the supreme command; "in the U.S. the president is the commander in chief" -09941964 18 n 03 commanding_officer 0 commandant 0 commander 0 011 @ 10317007 n 0000 ;c 08199025 n 0000 + 00590626 n 0301 + 02441022 v 0302 + 00751887 v 0301 + 02441022 v 0202 + 00751887 v 0201 ~ 08175233 n 0000 ~ 08175700 n 0000 ~ 09941787 n 0000 ~ 10782362 n 0000 | an officer in command of a military unit -09942275 18 n 02 commando 0 ranger 2 002 @ 10582746 n 0000 ;c 08199025 n 0000 | a member of a military unit trained as shock troops for hit-and-run raids -09942431 18 n 02 commentator 0 reviewer 0 003 @ 10794014 n 0000 + 00696189 v 0201 + 00961586 v 0101 | a writer who reports and analyzes events of the day -09942587 18 n 01 commercial_artist 0 001 @ 09812068 n 0000 | an illustrator who is supported by advertising -09942697 18 n 02 commissar 0 political_commissar 0 001 @ 10372373 n 0000 | an official of the Communist Party who was assigned to teach party principles to a military unit -09942871 18 n 01 commissionaire 0 002 @ 10026553 n 0000 ;r 08860123 n 0000 | a uniformed doorman -09942970 18 n 01 commissioned_officer 0 010 @ 10317007 n 0000 ;c 08199025 n 0000 ~ 09943239 n 0000 ~ 09943541 n 0000 ~ 10225931 n 0000 ~ 10226060 n 0000 ~ 10263790 n 0000 ~ 10506915 n 0000 ~ 10644839 n 0000 ~ 10677604 n 0000 | a military officer holding a commission -09943239 18 n 01 commissioned_military_officer 0 010 @ 09942970 n 0000 ;c 08199025 n 0000 ~ 09893191 n 0000 ~ 09937250 n 0000 ~ 10087080 n 0000 ~ 10125786 n 0000 ~ 10259348 n 0000 ~ 10283170 n 0000 ~ 10296176 n 0000 ~ 10667709 n 0000 | a commissioned officer in the Army or Air Force or Marine Corps -09943541 18 n 01 commissioned_naval_officer 0 010 @ 09942970 n 0000 ;c 08199025 n 0000 ~ 09616722 n 0000 ~ 09892831 n 0000 ~ 09941571 n 0000 ~ 09945021 n 0000 ~ 10094584 n 0000 ~ 10259527 n 0000 ~ 10259997 n 0000 ~ 10260473 n 0000 | a commissioned officer in the navy -09943811 18 n 01 commissioner 0 008 @ 09770472 n 0000 + 07169480 n 0101 + 01140471 n 0101 + 02475261 v 0101 ~ 09837580 n 0000 ~ 10190122 n 0000 ~ 10400205 n 0000 ~ 10448834 n 0000 | a government administrator -09944022 18 n 01 commissioner 1 004 @ 10307234 n 0000 #m 08324514 n 0000 + 08402442 n 0102 + 08324514 n 0102 | a member of a commission -09944160 18 n 01 committee_member 0 006 @ 10307234 n 0000 #m 08324514 n 0000 ~ 09944337 n 0000 ~ 09944430 n 0000 ~ 10015485 n 0000 ~ 10516294 n 0000 | a member of a committee -09944337 18 n 01 committeeman 0 001 @ 09944160 n 0000 | a man who is a member of committee -09944430 18 n 01 committeewoman 0 001 @ 09944160 n 0000 | a woman who is a member of a committee -09944529 18 n 01 couch_potato 0 002 @ 10197967 n 0000 ;c 06277280 n 0000 | an idler who spends much time on a couch (usually watching television) -09944677 18 n 01 councilman 0 001 @ 09944763 n 0000 | a man who is a council member -09944763 18 n 02 council_member 0 councillor 0 005 @ 10307234 n 0000 #m 08309409 n 0000 + 00591111 n 0201 ~ 09944677 n 0000 ~ 09944931 n 0000 | a member of a council -09944931 18 n 01 councilwoman 0 001 @ 09944763 n 0000 | a woman who is a council member -09945021 18 n 01 commodore 0 003 @ 09943541 n 0000 ;c 08199025 n 0000 ~i 11230158 n 0000 | a commissioned naval officer who ranks above a captain and below a rear admiral; the lowest grade of admiral -09945223 18 n 01 communicant 0 001 @ 09678009 n 0000 | a person entitled to receive Communion -09945319 18 n 02 communist 0 commie 0 011 @ 10618848 n 0000 + 08365855 n 0101 + 06214744 n 0101 ~ 09799920 n 0000 ~ 09863936 n 0000 ~ 09951524 n 0000 ~ 10527147 n 0000 ~i 11155444 n 0000 ~i 11256494 n 0000 ~i 11312120 n 0000 ~i 11406314 n 0000 | a socialist who advocates communism -09945603 18 n 01 Communist 1 004 @ 10450303 n 0000 #m 08258523 n 0000 + 08365855 n 0101 + 06214744 n 0101 | a member of the communist party -09945745 18 n 01 commuter 0 003 @ 10403876 n 0000 + 02061846 v 0101 ~ 10661464 n 0000 | someone who travels regularly from home in a suburb to work in a city -09945905 18 n 05 companion 0 comrade 0 fellow 2 familiar 2 associate 1 011 @ 10112591 n 0000 + 02589245 v 0502 + 00965606 a 0401 + 13929588 n 0303 + 01075864 a 0201 + 04653627 n 0205 + 13929588 n 0102 + 02716767 v 0102 ~ 09992538 n 0000 ~ 10441037 n 0000 ~ 10718665 n 0000 | a friend who is frequently in the company of another; "drinking companions"; "comrades in arms" -09946278 18 n 03 companion 2 fellow_traveler 0 fellow_traveller 0 003 @ 09629752 n 0000 + 13929588 n 0102 + 02716767 v 0102 | a traveler who accompanies you -09946437 18 n 01 company_man 0 001 @ 10053808 n 0000 | an employee whose first loyalty is to the company rather than to fellow workers -09946574 18 n 01 company_operator 0 001 @ 10378412 n 0000 | an operator who works for a company -09946672 18 n 01 comparative_anatomist 0 002 @ 09792237 n 0000 ~i 11218938 n 0000 | anatomist who compares the anatomy of different animals -09946814 18 n 01 compere 0 002 @ 10299250 n 0000 + 02592397 v 0102 | British term for someone who introduces television acts or cabarets etc -09946957 18 n 01 compiler 0 004 @ 10794014 n 0000 + 01626138 v 0102 ~ 10055566 n 0000 ~ 10256080 n 0000 | a person who compiles information (as for reference purposes) -09947127 18 n 01 complexifier 0 002 @ 00007846 n 0000 + 00401202 v 0101 | someone makes things complex -09947232 18 n 01 composer 0 139 @ 10339966 n 0000 + 01705494 v 0101 ~ 09612580 n 0000 ~ 10487363 n 0000 ~ 10624540 n 0000 ~ 10686517 n 0000 ~i 10815648 n 0000 ~i 10830229 n 0000 ~i 10834439 n 0000 ~i 10837258 n 0000 ~i 10841405 n 0000 ~i 10842923 n 0000 ~i 10846089 n 0000 ~i 10847653 n 0000 ~i 10848802 n 0000 ~i 10851865 n 0000 ~i 10853244 n 0000 ~i 10853413 n 0000 ~i 10858333 n 0000 ~i 10859369 n 0000 ~i 10862113 n 0000 ~i 10864635 n 0000 ~i 10867933 n 0000 ~i 10868025 n 0000 ~i 10877015 n 0000 ~i 10878530 n 0000 ~i 10894365 n 0000 ~i 10894905 n 0000 ~i 10896644 n 0000 ~i 10909929 n 0000 ~i 10910948 n 0000 ~i 10913010 n 0000 ~i 10913641 n 0000 ~i 10920366 n 0000 ~i 10926597 n 0000 ~i 10928978 n 0000 ~i 10929316 n 0000 ~i 10939360 n 0000 ~i 10941992 n 0000 ~i 10944593 n 0000 ~i 10946961 n 0000 ~i 10956134 n 0000 ~i 10959074 n 0000 ~i 10965836 n 0000 ~i 10978693 n 0000 ~i 10996876 n 0000 ~i 11002422 n 0000 ~i 11002548 n 0000 ~i 11009635 n 0000 ~i 11010697 n 0000 ~i 11016199 n 0000 ~i 11023883 n 0000 ~i 11027631 n 0000 ~i 11027885 n 0000 ~i 11035780 n 0000 ~i 11050870 n 0000 ~i 11057679 n 0000 ~i 11066621 n 0000 ~i 11070531 n 0000 ~i 11075670 n 0000 ~i 11085267 n 0000 ~i 11091374 n 0000 ~i 11095587 n 0000 ~i 11102353 n 0000 ~i 11103648 n 0000 ~i 11115131 n 0000 ~i 11118362 n 0000 ~i 11123262 n 0000 ~i 11125080 n 0000 ~i 11135236 n 0000 ~i 11136405 n 0000 ~i 11137334 n 0000 ~i 11144860 n 0000 ~i 11147185 n 0000 ~i 11149630 n 0000 ~i 11163709 n 0000 ~i 11173917 n 0000 ~i 11174901 n 0000 ~i 11177695 n 0000 ~i 11179124 n 0000 ~i 11187364 n 0000 ~i 11190024 n 0000 ~i 11194355 n 0000 ~i 11198375 n 0000 ~i 11207006 n 0000 ~i 11212534 n 0000 ~i 11216100 n 0000 ~i 11221268 n 0000 ~i 11235926 n 0000 ~i 11243268 n 0000 ~i 11244419 n 0000 ~i 11247002 n 0000 ~i 11248077 n 0000 ~i 11248599 n 0000 ~i 11251531 n 0000 ~i 11252915 n 0000 ~i 11255085 n 0000 ~i 11257031 n 0000 ~i 11258214 n 0000 ~i 11262929 n 0000 ~i 11267745 n 0000 ~i 11269367 n 0000 ~i 11271720 n 0000 ~i 11273286 n 0000 ~i 11278351 n 0000 ~i 11282434 n 0000 ~i 11285456 n 0000 ~i 11285902 n 0000 ~i 11286618 n 0000 ~i 11287016 n 0000 ~i 11287186 n 0000 ~i 11289830 n 0000 ~i 11291284 n 0000 ~i 11293805 n 0000 ~i 11299030 n 0000 ~i 11299367 n 0000 ~i 11305159 n 0000 ~i 11308396 n 0000 ~i 11308988 n 0000 ~i 11321296 n 0000 ~i 11321428 n 0000 ~i 11321647 n 0000 ~i 11321841 n 0000 ~i 11324212 n 0000 ~i 11329808 n 0000 ~i 11333601 n 0000 ~i 11333762 n 0000 ~i 11334925 n 0000 ~i 11340824 n 0000 ~i 11360534 n 0000 ~i 11361585 n 0000 ~i 11363020 n 0000 ~i 11366548 n 0000 ~i 11367910 n 0000 ~i 11369834 n 0000 ~i 11373231 n 0000 ~i 11378462 n 0000 ~i 11379908 n 0000 ~i 11394398 n 0000 | someone who composes music as a profession -09949946 18 n 04 compositor 0 typesetter 0 setter 0 typographer 0 005 @ 10475297 n 0000 + 06677974 n 0401 + 01103000 n 0401 + 01744888 v 0201 + 01626138 v 0101 | one who sets written material into type -09950150 18 n 01 Comptroller_General 0 001 @ 10372373 n 0000 | a United States federal official who supervises expenditures and settles claims against the government -09950318 18 n 01 Comptroller_of_the_Currency 0 001 @ 10372373 n 0000 | a United States federal official who regulates the national banks -09950457 18 n 01 compulsive 0 008 @ 00007846 n 0000 + 01583659 a 0101 + 00104699 a 0101 + 09183255 n 0101 ~ 09961469 n 0000 ~ 10070942 n 0000 ~ 10415230 n 0000 ~ 10791002 n 0000 | a person with a compulsive disposition; someone who feels compelled to do certain things -09950728 18 n 01 computational_linguist 0 002 @ 09951070 n 0000 @ 10264437 n 0000 | someone trained in computer science and linguistics who uses computers for natural language processing -09950917 18 n 02 computer_expert 0 computer_guru 0 003 @ 09617867 n 0000 @ 09951274 n 0000 ~ 10739297 n 0000 | an authority on computers and computing -09951070 18 n 01 computer_scientist 0 004 @ 10560637 n 0000 @ 09951274 n 0000 ~ 09950728 n 0000 ~i 10991936 n 0000 | a scientist who specializes in the theory of computation and the design of computers -09951274 18 n 01 computer_user 0 007 @ 00007846 n 0000 ~ 09950917 n 0000 ~ 09951070 n 0000 ~ 09985683 n 0000 ~ 10462588 n 0000 ~ 10481268 n 0000 ~ 10687516 n 0000 | a person who uses computers for work or entertainment or communication or business -09951524 18 n 01 Comrade 1 001 @ 09945319 n 0000 | a fellow member of the Communist Party -09951616 18 n 02 concert-goer 0 music_lover 0 001 @ 09612848 n 0000 | someone who attends concerts -09951717 18 n 02 concessionaire 0 concessioner 0 001 @ 10613052 n 0000 | someone who holds or operates a concession -09951835 18 n 01 conchologist 0 002 @ 09936620 n 0000 + 01015689 n 0101 | a collector and student of mollusc shells -09951953 18 n 01 concierge 0 001 @ 09895701 n 0000 | a French caretaker of apartments or a hotel; lives on the premises and oversees people entering and leaving and handles mail and acts as janitor or porter -09952163 18 n 05 conciliator 0 make-peace 0 pacifier 0 peacemaker 0 reconciler 0 006 @ 09624559 n 0000 + 00482473 v 0503 + 01647867 v 0301 + 01093587 v 0201 + 01765392 v 0103 ~ 09800249 n 0000 | someone who tries to bring peace -09952393 18 n 04 concubine 0 courtesan 1 doxy 0 paramour 0 002 @ 10323752 n 0000 ~ 10370603 n 0000 | a woman who cohabits with an important man -09952539 18 n 03 conductor 0 music_director 0 director 1 022 @ 10339966 n 0000 + 01732921 v 0303 + 01733213 v 0101 ~ 09837201 n 0000 ~ 09837360 n 0000 ~ 10036574 n 0000 ~ 10036692 n 0000 ~i 10848802 n 0000 ~i 10864635 n 0000 ~i 10970488 n 0000 ~i 11050870 n 0000 ~i 11109970 n 0000 ~i 11115131 n 0000 ~i 11149630 n 0000 ~i 11216797 n 0000 ~i 11219502 n 0000 ~i 11318967 n 0000 ~i 11327964 n 0000 ~i 11346257 n 0000 ~i 11372799 n 0000 ~i 11378462 n 0000 ~i 11395773 n 0000 | the person who leads a musical group -09953052 18 n 01 conductor 1 002 @ 09936362 n 0000 ~ 09953275 n 0000 | the person who collects fares on a public conveyance -09953178 18 n 01 conditioner 0 002 @ 09931640 n 0000 + 02553697 v 0104 | a trainer of athletes -09953275 18 n 01 conductress 0 001 @ 09953052 n 0000 | a woman conductor -09953350 18 n 02 confectioner 0 candymaker 0 002 @ 10284064 n 0000 ~i 11046457 n 0000 | someone who makes candies and other sweets -09953483 18 n 04 confederate 1 collaborator 2 henchman 0 partner_in_crime 0 001 @ 09759875 n 0000 | someone who assists in a plot -09953615 18 n 01 Confederate 2 004 @ 10677713 n 0000 @ 10628222 n 0000 + 01606942 a 0101 ~ 09953775 n 0000 | a supporter of the Confederate States of America -09953775 18 n 01 Confederate_soldier 0 004 @ 10622053 n 0000 @ 09953615 n 0000 ~ 09881748 n 0000 ~ 10628368 n 0000 | a soldier in the Army of the Confederacy during the American Civil War -09953965 18 n 01 conferee 0 003 @ 09610660 n 0000 #m 08308497 n 0000 + 00876665 v 0101 | a member of a conference -09954081 18 n 01 conferee 1 002 @ 09627906 n 0000 + 02263346 v 0101 | a person on whom something is bestowed; "six honorary were conferred; the conferees were..." -09954246 18 n 01 conferrer 1 001 @ 09610660 n 0000 | someone who converses or confers (as in a conference) -09954355 18 n 01 confessor 0 002 @ 10470779 n 0000 + 00818805 v 0101 | a priest who hears confession and gives absolution -09954479 18 n 01 confessor 1 003 @ 09610660 n 0000 + 00818553 v 0103 + 00819508 v 0101 | someone who confesses (discloses information damaging to themselves) -09954639 18 n 02 confidant 0 intimate 0 004 @ 10112591 n 0000 + 00936465 v 0101 ~ 09954804 n 0000 ~ 10521928 n 0000 | someone to whom private matters are confided -09954804 18 n 01 confidante 0 001 @ 09954639 n 0000 | a female confidant -09954879 18 n 03 confidence_man 0 con_man 0 con_artist 0 001 @ 09955015 n 0000 | a swindler who exploits the confidence of his victim -09955015 18 n 07 swindler 0 defrauder 0 chiseller 0 chiseler 0 gouger 0 scammer 0 grifter 0 013 @ 09998101 n 0000 + 02572119 v 0609 + 02241107 v 0504 + 02573275 v 0403 + 02574516 v 0402 + 02573275 v 0303 + 02574516 v 0302 + 02572119 v 0208 + 02572119 v 0102 ~ 09894909 n 0000 ~ 09929770 n 0000 ~ 09954879 n 0000 ~ 10773527 n 0000 | a person who swindles you by means of deception or fraud -09955406 18 n 02 Confucian 0 Confucianist 0 001 @ 09848489 n 0000 | a believer in the teachings of Confucius -09955517 18 n 01 congregant 0 001 @ 09922485 n 0000 | a member of a congregation (especially that of a church or synagogue) -09955643 18 n 01 Congregationalist 0 003 @ 09679316 n 0000 #m 08090973 n 0000 + 06230613 n 0101 | a member of the Congregational Church -09955781 18 n 03 congressman 0 congresswoman 0 representative 1 002 @ 10253995 n 0000 ~ 09955944 n 0000 | a member of the United States House of Representatives -09955944 18 n 01 rep 0 001 @ 09955781 n 0000 | informal abbreviation of `representative' -09956035 18 n 01 connection 0 002 @ 10677271 n 0000 ;c 03808564 n 0000 | a supplier (especially of narcotics) -09956147 18 n 01 connection 1 003 @ 09763784 n 0000 ;u 06295235 n 0000 + 02389592 v 0101 | (usually plural) a person who is influential and to whom you are connected in some way (as by family or friendship); "he has powerful connections" -09956387 18 n 02 connoisseur 0 cognoscente 0 004 @ 09824361 n 0000 + 05750027 n 0103 ~ 10064537 n 0000 ~ 10370955 n 0000 | an expert able to appreciate a field; especially in the fine arts -09956578 18 n 02 conqueror 0 vanquisher 0 006 @ 10752930 n 0000 + 01101913 v 0206 + 01114303 v 0101 + 00462092 v 0105 ~ 10669125 n 0000 ~i 10812360 n 0000 | someone who is victorious by force of arms -09956780 18 n 01 conquistador 0 005 @ 10072708 n 0000 ;r 09023321 n 0000 ;r 08740875 n 0000 ~i 10912243 n 0000 ~i 11238726 n 0000 | an adventurer (especially one who led the Spanish conquest of Mexico and Peru in the 16th century) -09957013 18 n 02 conscientious_objector 0 CO 0 001 @ 10018021 n 0000 | one who refuses to serve in the armed forces on grounds of conscience -09957156 18 n 02 conservative 0 conservativist 0 014 @ 09605289 n 0000 + 06216160 n 0102 ! 10256756 n 0101 ~ 09892262 n 0000 ~ 09957614 n 0000 ~ 10114662 n 0000 ~ 10160188 n 0000 ~ 10320354 n 0000 ~ 10332016 n 0000 ~ 10352663 n 0000 ~ 10508475 n 0000 ~ 10531227 n 0000 ~ 10642845 n 0000 ~ 10721124 n 0000 | a person who is reluctant to accept changes and new ideas -09957523 18 n 01 Conservative 1 001 @ 10307234 n 0000 | a member of a Conservative Party -09957614 18 n 01 conformist 0 005 @ 09957156 n 0000 ;c 05946687 n 0000 + 06211963 n 0102 + 00150287 v 0102 ! 09957834 n 0101 | someone who conforms to established standards of conduct (especially in religious matters) -09957834 18 n 02 nonconformist 0 recusant 0 010 @ 10018021 n 0000 + 01691302 a 0202 + 01614558 a 0201 + 06212650 n 0102 ! 09957614 n 0101 ~ 09845849 n 0000 ~ 09863500 n 0000 ~ 10057595 n 0000 ~ 10171953 n 0000 ~ 10303654 n 0000 | someone who refuses to conform to established standards of conduct -09958133 18 n 02 Nonconformist 1 chapelgoer 0 002 @ 09679316 n 0000 ! 09958292 n 0101 | a Protestant in England who is not a member of the Church of England -09958292 18 n 01 Anglican 0 004 @ 09679316 n 0000 #m 08087981 n 0000 + 02954459 a 0101 ! 09958133 n 0101 | a Protestant who is a follower of Anglicanism -09958447 18 n 01 consignee 0 002 @ 09627906 n 0000 + 02347637 v 0101 | the person to whom merchandise is delivered over -09958569 18 n 02 consigner 0 consignor 0 003 @ 10590339 n 0000 + 02348324 v 0201 + 02347637 v 0101 | the person who delivers over or commits merchandise -09958724 18 n 01 consort 0 005 @ 10640620 n 0000 + 02589245 v 0101 + 01927747 v 0102 ~ 10473562 n 0000 ~i 11150224 n 0000 | the husband or wife of a reigning monarch -09958892 18 n 04 conspirator 0 coconspirator 0 plotter 0 machinator 0 008 @ 09977660 n 0000 #m 08251303 n 0000 + 00706975 v 0405 + 00707322 v 0201 + 02919275 a 0101 + 00706975 v 0101 ~i 10967872 n 0000 ~i 11211071 n 0000 | a member of a conspiracy -09959142 18 n 01 constable 0 001 @ 10249459 n 0000 | a lawman with less authority and jurisdiction than a sheriff -09959258 18 n 02 constable 1 police_constable 0 002 @ 10448983 n 0000 ;r 08860123 n 0000 | a police officer of the lowest rank -09959387 18 n 01 constitutionalist 0 003 @ 09774783 n 0000 + 08361172 n 0101 + 06216948 n 0101 | an advocate of constitutional government -09959527 18 n 02 construction_worker 0 hard_hat 0 001 @ 09974648 n 0000 | a worker skilled in building offices or dwellings etc. -09959658 18 n 01 constructivist 0 003 @ 09812338 n 0000 #m 08465776 n 0000 + 08465776 n 0101 | an artist of the school of constructivism -09959797 18 n 01 consul 0 003 @ 10013927 n 0000 + 03056304 a 0101 + 00590913 n 0101 | a diplomat appointed by a government to protect its commercial interests and help its citizens in a foreign country -09960001 18 n 03 consumptive 0 lunger 0 tubercular 0 001 @ 10595647 n 0000 | a person with pulmonary tuberculosis -09960117 18 n 02 contact 0 middleman 0 001 @ 10522035 n 0000 | a person who is in a position to give you special assistance; "he used his business contacts to get an introduction to the governor" -09960315 18 n 01 contemplative 0 001 @ 00007846 n 0000 | a person devoted to the contemplative life -09960417 18 n 02 contemporary 0 coeval 0 002 @ 09626238 n 0000 + 02378191 a 0202 | a person of nearly the same age as another -09960545 18 n 01 contortionist 0 003 @ 09764381 n 0000 + 13885370 n 0104 + 00404726 n 0101 | an acrobat able to twist into unusual positions -09960688 18 n 01 contractor 0 006 @ 09878275 n 0000 + 00888786 v 0101 ~ 10000294 n 0000 ~ 10162507 n 0000 ~ 10589666 n 0000 ~ 10667863 n 0000 | someone (a person or firm) who contracts to build things -09960891 18 n 01 contractor 1 003 @ 10402824 n 0000 ;c 08441203 n 0000 ~ 09878275 n 0000 | (law) a party to a contract -09961012 18 n 02 contractor 2 declarer 0 002 @ 09875353 n 0000 + 02300549 v 0201 | the bridge player in contract bridge who wins the bidding and can declare which suit is to be trumps -09961198 18 n 01 contralto 0 003 @ 10599806 n 0000 ~i 10817458 n 0000 ~i 11287437 n 0000 | a woman singer having a contralto voice -09961331 18 n 01 contributor 1 001 @ 10794014 n 0000 | a writer whose work is published in a newspaper or magazine or as part of a book -09961469 18 n 01 control_freak 0 001 @ 09950457 n 0000 | someone with a compulsive desire to exert control over situations and people -09961605 18 n 01 convalescent 0 003 @ 10595647 n 0000 + 02543598 a 0101 + 00092690 v 0103 | a person who is recovering from illness -09961739 18 n 01 convener 0 003 @ 09888269 n 0000 ;r 08860123 n 0000 + 00793037 v 0102 | the member of a group whose duty it is to convene meetings -09961889 18 n 01 conventioneer 0 002 @ 09608002 n 0000 + 08309086 n 0101 | someone who attends a convention -09961999 18 n 03 conversationalist 0 conversationist 0 schmoozer 0 006 @ 10630188 n 0000 + 01039162 v 0303 + 07133701 n 0201 + 07133701 n 0101 ~ 09995829 n 0000 ~ 10210911 n 0000 | someone skilled at conversation -09962214 18 n 01 Converso 0 002 @ 09962414 n 0000 ~ 10295597 n 0000 | (medieval Spain and Portugal) a Jew or Moor who professed to convert to Christianity in order to avoid persecution or expulsion -09962414 18 n 01 convert 0 005 @ 00007846 n 0000 + 00385385 v 0101 + 00384411 v 0101 ~ 09962214 n 0000 ~ 10485168 n 0000 | a person who has been converted to another religious or political belief -09962612 18 n 01 conveyancer 0 004 @ 10249950 n 0000 ;c 08441203 n 0000 + 06546633 n 0101 + 01108402 n 0101 | a lawyer who specializes in the business of conveying properties -09962789 18 n 02 conveyer 0 conveyor 0 003 @ 10311021 n 0000 + 00928630 v 0201 + 02077656 v 0102 | a person who conveys (carries or transmits); "the conveyer of good tidings" -09962966 18 n 05 convict 0 con 0 inmate 2 yard_bird 1 yardbird 1 004 @ 10476086 n 0000 + 00906367 v 0101 ~ 10261041 n 0000 ~ 10732521 n 0000 | a person serving a sentence in a jail or prison -09963159 18 n 01 convict 1 004 @ 09633969 n 0000 + 00906367 v 0101 ~ 10093167 n 0000 ~ 10584973 n 0000 | a person who has been convicted of a criminal offense -09963320 18 n 01 cook 0 011 @ 10605985 n 0000 + 01665638 v 0101 + 01664172 v 0101 + 00322847 v 0101 ~ 09963574 n 0000 ~ 09963680 n 0000 ~ 10114384 n 0000 ~ 10467052 n 0000 ~ 10534277 n 0000 ~ 10567848 n 0000 ~i 10966496 n 0000 | someone who cooks food -09963574 18 n 01 chef 1 003 @ 09963320 n 0000 ~ 09965424 n 0000 ~ 10405320 n 0000 | a professional cook -09963680 18 n 02 cookie 0 cooky 0 001 @ 09963320 n 0000 | the cook on a ranch or at a camp -09963773 18 n 02 cooper 3 barrel_maker 0 002 @ 09974648 n 0000 + 01659144 v 0101 | a craftsman who makes or repairs wooden barrels or tubs -09963914 18 n 01 coordinator 0 003 @ 10383237 n 0000 + 02437905 v 0101 + 00404642 v 0103 | someone whose task is to see that work goes harmoniously -09964064 18 n 01 copartner 0 003 @ 10402417 n 0000 ;c 01094725 n 0000 + 08060878 n 0101 | a joint partner (as in a business enterprise) -09964202 18 n 02 copilot 0 co-pilot 0 002 @ 10433164 n 0000 #m 08273167 n 0000 | a relief pilot on an airplane -09964315 18 n 01 coppersmith 0 001 @ 09974648 n 0000 | someone who makes articles from copper -09964411 18 n 05 copycat 0 imitator 0 emulator 0 ape 1 aper 0 007 @ 00007846 n 0000 + 02675067 v 0501 + 02675067 v 0401 + 02675701 v 0301 + 01742886 v 0201 ~ 10062042 n 0000 ~ 10401331 n 0000 | someone who copies the words or behavior of another -09964659 18 n 03 copy_editor 0 copyreader 0 text_editor 0 002 @ 10044879 n 0000 + 00628125 v 0201 | an editor who prepares text for publication -09964805 18 n 03 copyist 0 scribe 1 scrivener 0 005 @ 10053808 n 0000 + 06505517 n 0102 + 01747374 v 0101 + 01693881 v 0101 ~i 10964660 n 0000 | someone employed to make written copies of documents and manuscripts -09965021 18 n 01 copywriter 0 001 @ 10053808 n 0000 | a person employed to write advertising or publicity copy -09965134 18 n 07 coquette 0 flirt 0 vamp 0 vamper 0 minx 0 tease 1 prickteaser 0 008 @ 10787470 n 0000 + 00852506 v 0601 + 01803641 v 0601 + 01038538 v 0401 + 01038538 v 0301 + 02131958 a 0202 + 01037910 v 0202 + 01037910 v 0106 | a seductive woman who uses her sex appeal to exploit men -09965424 18 n 01 cordon_bleu 0 001 @ 09963574 n 0000 | a chef famous for his great skill -09965515 18 n 01 coreligionist 0 001 @ 09628382 n 0000 | someone having the same religion as another person -09965625 18 n 02 corespondent 0 co-respondent 0 001 @ 09933411 n 0000 | the codefendant charged with adultery with the estranged spouse in a divorce proceeding -09965787 18 n 01 cornerback 0 001 @ 10101634 n 0000 | a defensive football player stationed outside the linebackers -09965905 18 n 01 cornhusker 0 001 @ 09632518 n 0000 | a worker who husks corn -09965985 18 n 02 coroner 0 medical_examiner 0 001 @ 10215623 n 0000 | a public official who investigates by inquest any death not due to natural causes -09966139 18 n 01 corporal 0 001 @ 10360747 n 0000 | a noncommissioned officer in the Army or Air Force or Marines -09966255 18 n 02 corporate_executive 0 business_executive 0 006 @ 10069645 n 0000 ~ 09905842 n 0000 ~ 09916348 n 0000 ~ 09916601 n 0000 ~ 10208583 n 0000 ~ 10468559 n 0000 | an executive in a business corporation -09966470 18 n 01 corporatist 0 001 @ 10677713 n 0000 | a supporter of corporatism -09966554 18 n 02 correspondent 0 letter_writer 0 003 @ 09610660 n 0000 + 01006810 v 0101 ~ 10414379 n 0000 | someone who communicates by means of letters -09966710 18 n 05 correspondent 1 newspaperman 0 newspaperwoman 0 newswriter 0 pressman 1 003 @ 10224578 n 0000 ~ 10103315 n 0000 ~ 10766718 n 0000 | a journalist employed to provide news stories for newspapers or broadcast media -09966941 18 n 02 corsair 0 Barbary_pirate 0 002 @ 10435367 n 0000 ~i 10834337 n 0000 | a pirate along the Barbary Coast -09967063 18 n 01 cosmetician 0 001 @ 10577284 n 0000 | someone who sells or applies cosmetics -09967159 18 n 01 cosmetologist 0 002 @ 09617867 n 0000 + 00631887 n 0101 | an expert in the use of cosmetics -09967270 18 n 02 cosmetic_surgeon 0 plastic_surgeon 0 001 @ 10679174 n 0000 | a surgeon who beautifies the body (especially the face) -09967406 18 n 02 cosmopolitan 0 cosmopolite 0 002 @ 10625285 n 0000 ~ 10132775 n 0000 | a sophisticated person who has travelled in many countries -09967555 18 n 01 Cossack 0 001 @ 09676884 n 0000 | a member of a Slavic people living in southern European Russia and Ukraine and adjacent parts of Asia and noted for their horsemanship and military skill; they formed an elite cavalry corps in czarist Russia -09967816 18 n 01 cost_accountant 0 001 @ 09761403 n 0000 | a specialist in the systematic recording and analysis of the costs incident to production -09967967 18 n 01 co-star 0 003 @ 10648696 n 0000 + 02631537 v 0101 + 01721415 v 0101 | one of two actors who are given equal status as stars in a play or film -09968128 18 n 03 costermonger 0 barrow-man 0 barrow-boy 0 001 @ 10720453 n 0000 | a hawker of fruit and vegetables from a barrow -09968259 18 n 03 costumier 0 costumer 0 costume_designer 1 002 @ 09972157 n 0000 + 02337545 v 0201 | someone who designs or supplies costumes (as for a play or masquerade) -09968433 18 n 01 cotenant 0 001 @ 10700640 n 0000 | one of two or more tenants holding title to the same property -09968549 18 n 02 cottager 0 cottage_dweller 0 001 @ 09620078 n 0000 | someone who lives in a cottage -09968652 18 n 02 cotter 0 cottier 0 001 @ 10580535 n 0000 | a medieval English villein -09968741 18 n 02 cotter 1 cottar 0 001 @ 10410668 n 0000 | a peasant farmer in the Scottish Highlands -09968845 18 n 02 counselor 1 counsellor 1 007 @ 09774266 n 0000 + 00591236 n 0202 + 00872886 v 0203 + 00591236 n 0101 + 00872886 v 0103 ~ 10040240 n 0000 ~i 11204276 n 0000 | someone who gives advice about problems -09969062 18 n 02 counselor 2 counsellor 2 003 @ 10676877 n 0000 + 00591236 n 0202 + 00591236 n 0101 | someone who has supervisory duties at a summer camp -09969218 18 n 01 count 0 003 @ 10271677 n 0000 ~ 09969375 n 0000 ~ 10245029 n 0000 | a nobleman (in various countries) having rank equal to a British earl -09969375 18 n 01 count_palatine 0 001 @ 09969218 n 0000 | a count who exercised royal authority in his own domain -09969491 18 n 01 counter 0 002 @ 00007846 n 0000 + 00948071 v 0101 | a person who counts things -09969589 18 n 01 counterdemonstrator 0 001 @ 10002760 n 0000 | someone who demonstrates in opposition to another demonstration -09969718 18 n 03 counterperson 0 counterwoman 0 counterman 0 002 @ 10763383 n 0000 ~ 10621294 n 0000 | someone who attends a counter (as in a diner) -09969869 18 n 03 counterrevolutionist 0 counter-revolutionist 0 counterrevolutionary 0 002 @ 10527334 n 0000 + 00963057 n 0101 | a revolutionary whose aim is to reverse the changes introduced by an earlier revolution -09970088 18 n 01 counterterrorist 0 001 @ 00007846 n 0000 | someone who attempts to prevent terrorism -09970192 18 n 02 counterspy 0 mole 0 001 @ 10641755 n 0000 | a spy who works against enemy espionage -09970295 18 n 01 countertenor 0 001 @ 09786115 n 0000 | a male singer with a voice above that of a tenor -09970402 18 n 01 countess 0 001 @ 10242791 n 0000 | female equivalent of a count or earl -09970493 18 n 01 country_doctor 0 001 @ 10126009 n 0000 | a doctor who practices in the country (rather than in a city) usually remote from a modern hospital; "do country doctors still make house calls?" -09970699 18 n 01 compatriot 0 003 @ 09625401 n 0000 ~ 09970963 n 0000 ~ 09971047 n 0000 | a person from your own country -09970822 18 n 01 compromiser 0 001 @ 10351874 n 0000 | a negotiator willing to compromise; "Henry Clay was known as the Great Compromiser" -09970963 18 n 01 countryman 0 001 @ 09970699 n 0000 | a man from your own country -09971047 18 n 01 countrywoman 0 001 @ 09970699 n 0000 | a woman from your own country -09971135 18 n 02 countryman 1 ruralist 1 002 @ 10544232 n 0000 ~i 11232229 n 0000 | a man who lives in the country and has country ways -09971273 18 n 01 countrywoman 1 001 @ 10544232 n 0000 | a woman who lives in the country and has country ways -09971385 18 n 03 county_agent 0 agricultural_agent 0 extension_agent 0 001 @ 09774266 n 0000 | an advisor employed by the government to assist people in rural areas with methods of farming and home economics -09971595 18 n 01 coureur_de_bois 0 001 @ 10726233 n 0000 | a French Canadian trapper -09971682 18 n 01 courser 0 001 @ 10193026 n 0000 | a huntsman who hunts small animals with fast dogs that use sight rather than scent to follow their prey -09971839 18 n 01 courtier 0 005 @ 09821831 n 0000 ~i 10921571 n 0000 ~i 10943811 n 0000 ~i 11252627 n 0000 ~i 11323448 n 0000 | an attendant at the court of a sovereign -09972010 18 n 04 cousin 0 first_cousin 0 cousin-german 0 full_cousin 0 002 @ 10235549 n 0000 + 00453529 a 0101 | the child of your aunt or uncle -09972157 18 n 04 couturier 0 fashion_designer 0 clothes_designer 0 designer 1 010 @ 09614315 n 0000 + 01753596 v 0401 + 01640550 v 0401 ~ 09968259 n 0000 ~i 10832415 n 0000 ~i 10936716 n 0000 ~i 11106943 n 0000 ~i 11284024 n 0000 ~i 11364135 n 0000 ~i 11397885 n 0000 | someone who designs clothing -09972458 18 n 03 cover_girl 0 pin-up 0 lovely 0 001 @ 10427103 n 0000 | a very pretty girl who works as a photographer's model -09972587 18 n 01 cow 0 001 @ 10739636 n 0000 | a large unpleasant woman -09972661 18 n 08 cowboy 0 cowpuncher 0 puncher 0 cowman 0 cattleman 0 cowpoke 0 cowhand 0 cowherd 0 006 @ 10506544 n 0000 ~ 09973209 n 0000 ~ 09973422 n 0000 ~ 10122441 n 0000 ~ 10186216 n 0000 ~ 10538733 n 0000 | a hired hand who tends cattle and performs other duties on horseback -09972946 18 n 01 cowboy 2 001 @ 09606009 n 0000 | someone who is reckless or irresponsible (especially in driving vehicles) -09973072 18 n 02 cowboy 3 rodeo_rider 0 001 @ 10415638 n 0000 | a performer who gives exhibitions of riding and roping and bulldogging -09973209 18 n 03 vaquero 0 buckaroo 0 buckeroo 0 001 @ 09972661 n 0000 | local names for a cowboy (`vaquero' is used especially in southwestern and central Texas and `buckaroo' is used especially in California) -09973422 18 n 01 cowgirl 0 001 @ 09972661 n 0000 | a woman cowboy -09973490 18 n 02 coxcomb 0 cockscomb 0 001 @ 09991026 n 0000 | a conceited dandy who is overly impressed by his own accomplishments -09973624 18 n 02 coxswain 0 cox 0 002 @ 10169796 n 0000 + 02447133 v 0201 | the helmsman of a ship's boat or a racing crew -09973749 18 n 01 coyote 0 001 @ 10092098 n 0000 | a forest fire fighter who is sent to battle remote and severe forest fires (often for days at a time) -09973903 18 n 01 coyote 1 001 @ 10615334 n 0000 | someone who smuggles illegal immigrants into the United States (usually across the Mexican border) -09974054 18 n 02 crab 0 crabby_person 0 003 @ 10148305 n 0000 + 01136248 a 0102 + 00910973 v 0104 | a quarrelsome grouch -09974177 18 n 02 crack_addict 0 binger 0 001 @ 10035952 n 0000 | someone addicted to crack cocaine -09974278 18 n 01 cracker 1 002 @ 10481268 n 0000 + 02571067 v 0101 | a programmer who cracks (gains unauthorized access to) computers, typically to do malicious things; "crackers are often mistakenly called hackers" -09974496 18 n 06 crackpot 0 crank 1 nut 2 nut_case 0 fruitcake 0 screwball 0 002 @ 10042845 n 0000 + 01836766 a 0603 | a whimsically eccentric person -09974648 18 n 04 craftsman 0 artisan 0 journeyman 0 artificer 0 036 @ 10605985 n 0000 + 05638063 n 0102 ~ 09845999 n 0000 ~ 09865744 n 0000 ~ 09874518 n 0000 ~ 09930102 n 0000 ~ 09932227 n 0000 ~ 09959527 n 0000 ~ 09963773 n 0000 ~ 09964315 n 0000 ~ 09984187 n 0000 ~ 10012713 n 0000 ~ 10132035 n 0000 ~ 10132145 n 0000 ~ 10135842 n 0000 ~ 10155849 n 0000 ~ 10277509 n 0000 ~ 10279018 n 0000 ~ 10297531 n 0000 ~ 10318087 n 0000 ~ 10397001 n 0000 ~ 10443032 n 0000 ~ 10460806 n 0000 ~ 10530769 n 0000 ~ 10538272 n 0000 ~ 10538629 n 0000 ~ 10653529 n 0000 ~ 10690742 n 0000 ~ 10693459 n 0000 ~ 10740482 n 0000 ~ 10772190 n 0000 ~ 10773665 n 0000 ~ 10783240 n 0000 ~ 10790192 n 0000 ~ 10793570 n 0000 ~i 11192067 n 0000 | a skilled worker who practices some trade or handicraft -09975425 18 n 02 craftsman 1 crafter 0 003 @ 09614315 n 0000 + 01658762 v 0201 + 05638063 n 0102 | a creator of great skill in the manual arts; "the jewelry was made by internationally famous craftsmen" -09975630 18 n 01 craftsman 2 002 @ 10480253 n 0000 + 05638063 n 0102 | a professional whose work is consistently of high quality; "as an actor he was a consummate craftsman" -09975806 18 n 01 crammer 1 002 @ 09931418 n 0000 + 00407146 v 0101 | a teacher who is paid to cram students for examinations -09975933 18 n 01 crammer 0 002 @ 10665698 n 0000 + 00605783 v 0101 | a student who crams -09976024 18 n 01 crapshooter 0 001 @ 10118844 n 0000 | a gambler who plays the game of craps -09976119 18 n 02 crawler 1 creeper 0 004 @ 00007846 n 0000 + 01911888 v 0203 + 01885845 v 0202 + 01885845 v 0101 | a person who crawls or creeps along the ground -09976283 18 n 05 crazy 0 loony 0 looney 0 nutcase 0 weirdo 2 002 @ 10276764 n 0000 ;u 07075172 n 0000 | someone deranged and possibly dangerous -09976429 18 n 02 creature 1 wight 0 002 @ 00007846 n 0000 + 01617192 v 0102 | a human being; `wight' is an archaic term -09976551 18 n 03 creature 2 tool 0 puppet 0 001 @ 10609325 n 0000 | a person who is controlled by others and is used to perform unpleasant or dishonest tasks for someone else -09976728 18 n 01 creditor 0 004 @ 00007846 n 0000 + 02264752 v 0101 ! 09997622 n 0101 ~ 10331347 n 0000 | a person to whom money is owed by a debtor; someone to whom an obligation exists -09976917 18 n 05 creep 0 weirdo 1 weirdie 0 weirdy 0 spook 1 003 @ 09631463 n 0000 + 01625760 a 0101 + 01911888 v 0103 | someone unpleasantly strange or eccentric -09977082 18 n 01 crewman 0 002 @ 10053808 n 0000 #m 08242799 n 0000 | a member of a work crew -09977178 18 n 02 crewman 1 crew_member 0 004 @ 10605985 n 0000 #m 08273167 n 0000 ~ 09780676 n 0000 ~ 10476928 n 0000 | a member of a flight crew -09977326 18 n 01 cricketer 0 007 @ 09820263 n 0000 + 01076017 v 0101 ~ 09870096 n 0000 ~ 10086383 n 0000 ~ 10780185 n 0000 ~i 11053218 n 0000 ~i 11069430 n 0000 | an athlete who plays cricket -09977520 18 n 01 crier 2 003 @ 10411551 n 0000 @ 10533983 n 0000 + 00974786 v 0101 | a peddler who shouts to advertise the goods he sells -09977660 18 n 05 criminal 0 felon 0 crook 0 outlaw 0 malefactor 0 035 @ 10474950 n 0000 + 01396333 a 0402 + 01403760 a 0403 + 02480923 v 0401 + 02515080 v 0101 ~ 09759875 n 0000 ~ 09810707 n 0000 ~ 09858299 n 0000 ~ 09866922 n 0000 ~ 09874260 n 0000 ~ 09958892 n 0000 ~ 10008388 n 0000 ~ 10114897 n 0000 ~ 10120085 n 0000 ~ 10174253 n 0000 ~ 10175725 n 0000 ~ 10184081 n 0000 ~ 10219121 n 0000 ~ 10230801 n 0000 ~ 10280364 n 0000 ~ 10327475 n 0000 ~ 10338707 n 0000 ~ 10477585 n 0000 ~ 10495555 n 0000 ~ 10503247 n 0000 ~ 10507230 n 0000 ~ 10511425 n 0000 ~ 10561736 n 0000 ~ 10615334 n 0000 ~ 10707804 n 0000 ~ 10722965 n 0000 ~ 10754449 n 0000 ~i 10857001 n 0000 ~i 11079544 n 0000 ~i 11147348 n 0000 | someone who has committed a crime or has been legally convicted of a crime -09978442 18 n 01 criminologist 0 003 @ 10631941 n 0000 + 06151942 n 0101 ~i 10849213 n 0000 | a specialist in criminology -09978566 18 n 02 crimp 0 crimper 0 001 @ 10230801 n 0000 | someone who tricks or coerces men into service as sailors or soldiers -09978697 18 n 01 criollo 0 002 @ 10629647 n 0000 ;r 09023321 n 0000 | a Spanish American of pure European stock (usually Spanish); "Mexico is a country of mestizos, criollos, and indigenes" -09978889 18 n 01 cripple 0 003 @ 00007846 n 0000 + 00091647 v 0101 ~ 10192412 n 0000 | someone who is unable to walk normally because of an injury or disability to the legs or back -09979072 18 n 01 critic 2 008 @ 09631463 n 0000 + 00647542 a 0101 + 02830645 a 0101 + 01096097 v 0101 + 00826509 v 0102 ~ 09896826 n 0000 ~ 10359422 n 0000 ~ 10534389 n 0000 | someone who frequently finds fault or makes harsh and unfair judgments -09979321 18 n 01 critic 1 010 @ 10066732 n 0000 + 00649586 a 0101 + 02830645 a 0101 + 01096097 v 0101 + 00826509 v 0102 ~ 09802239 n 0000 ~ 10140783 n 0000 ~ 10396106 n 0000 ~ 10526927 n 0000 ~ 10692482 n 0000 | anyone who expresses a reasoned judgment of something -09979589 18 n 01 critic 0 011 @ 10480253 n 0000 + 02830645 a 0101 + 01096097 v 0101 + 00826509 v 0102 ~ 09810867 n 0000 ~ 10030147 n 0000 ~ 10266016 n 0000 ~ 10339856 n 0000 ~ 10356749 n 0000 ~i 11011764 n 0000 ~i 11332423 n 0000 | a person who is professionally engaged in the analysis and interpretation of works of art -09979913 18 n 01 Croesus 1 001 @ 10529231 n 0000 | a very wealthy man -09979985 18 n 01 crofter 0 001 @ 10613738 n 0000 | an owner or tenant of a small farm in Great Britain -09980090 18 n 02 crooner 0 balladeer 0 006 @ 10599806 n 0000 + 06378298 n 0201 + 07049713 n 0201 + 01049470 v 0101 ~i 10916731 n 0000 ~i 11302062 n 0000 | a singer of popular ballads -09980275 18 n 01 crossbencher 0 002 @ 10253995 n 0000 ;r 08860123 n 0000 | a member of the House of Commons who does not vote regularly with either the government or the Opposition -09980458 18 n 02 cross-examiner 0 cross-questioner 0 003 @ 10207831 n 0000 + 00787049 v 0202 + 00787049 v 0101 | someone who questions a witness carefully (especially about testimony given earlier) -09980658 18 n 01 crossing_guard 0 002 @ 10721321 n 0000 ~ 10270468 n 0000 | someone who helps people (especially children) at a traffic crossing -09980805 18 n 02 crossover_voter 0 crossover 0 001 @ 10760340 n 0000 | a voter who is registered as a member of one political party but who votes in the primary of another party -09980985 18 n 01 croupier 0 001 @ 10118844 n 0000 | someone who collects and pays bets at a gaming table -09981092 18 n 01 crown_prince 0 001 @ 10472799 n 0000 | a male heir apparent to a throne -09981183 18 n 01 crown_princess 0 001 @ 10474064 n 0000 | a female heir apparent to a throne -09981278 18 n 01 crown_princess 1 001 @ 10780632 n 0000 | the wife of a crown prince -09981365 18 n 01 Crusader 1 002 @ 10768585 n 0000 + 01093944 v 0101 | a warrior who engages in a holy war; "the Crusaders tried to recapture the Holy Land from the Muslims" -09981540 18 n 03 cryptanalyst 0 cryptographer 0 cryptologist 0 004 @ 09995398 n 0000 + 06172502 n 0304 + 06172502 n 0203 + 00614489 n 0201 | decoder skilled in the analysis of codes and cryptograms -09981740 18 n 01 crystallographer 0 001 @ 10631941 n 0000 | a specialist in crystallography -09981834 18 n 03 cub 1 greenhorn 0 rookie 0 001 @ 10363913 n 0000 | an awkward and inexperienced youth -09981939 18 n 01 Cub_Scout 0 001 @ 09871681 n 0000 | a junior Boy Scout -09982013 18 n 01 cubist 0 003 @ 10391653 n 0000 #m 08466175 n 0000 + 08466175 n 0101 | an artist who adheres to the principles of cubism -09982152 18 n 01 cuckold 0 003 @ 10193967 n 0000 + 02576503 v 0103 ~ 10786755 n 0000 | a man whose wife committed adultery -09982277 18 n 01 cuirassier 0 001 @ 09902353 n 0000 | a cavalryman equipped with a cuirass -09982370 18 n 01 cultist 0 005 @ 10099375 n 0000 #m 08151490 n 0000 + 08151490 n 0101 + 05948264 n 0101 + 01206774 n 0101 | a member of a religious cult -09982525 18 n 01 cultist 1 004 @ 10099375 n 0000 #m 08151229 n 0000 + 08151229 n 0101 + 05948537 n 0101 | a member of an unorthodox cult who generally lives outside of conventional society under the direction of a charismatic leader -09982760 18 n 01 cultural_attache 0 001 @ 09821086 n 0000 | an attache who is a specialist in cultural matters -09982873 18 n 02 cunt 0 bitch 0 001 @ 09631463 n 0000 | a person (usually but not necessarily a woman) who is thoroughly disliked; "she said her son thought Hillary was a bitch" -09983053 18 n 01 cupbearer 0 001 @ 09821831 n 0000 | the attendant (usually an officer of a nobleman's household) whose duty is to fill and serve cups of wine -09983214 18 n 01 cur 0 002 @ 09614047 n 0000 ~ 09886911 n 0000 | a cowardly and despicable person -09983314 18 n 01 curandera 0 001 @ 10707233 n 0000 | a Mexican woman who practices healing techniques inherited from the Mayans -09983444 18 n 01 curandero 0 001 @ 10707233 n 0000 | a Mexican man who practices healing techniques inherited from the Mayans -09983572 18 n 06 curate 0 minister_of_religion 0 minister 0 parson 0 pastor 0 rector 0 006 @ 09927451 n 0000 + 02860564 a 0501 + 00595785 n 0501 + 02764828 a 0301 + 02446660 v 0301 ~ 10321126 n 0000 | a person authorized to conduct religious worship; "clergymen are usually called ministers in Protestant churches" -09983889 18 n 02 curator 0 conservator 0 003 @ 09984298 n 0000 + 02990154 a 0101 + 00591523 n 0101 | the custodian of a collection (as a museum or library) -09984047 18 n 01 curmudgeon 0 002 @ 10376523 n 0000 + 01137000 a 0102 | a crusty irascible cantankerous old person full of stubborn ideas -09984187 18 n 01 currier 0 002 @ 09974648 n 0000 + 00516294 v 0101 | a craftsman who curries leather for use -09984298 18 n 03 custodian 0 keeper 0 steward 2 014 @ 09614684 n 0000 + 00604523 n 0301 + 02202928 v 0201 + 01888017 a 0101 + 00591622 n 0101 ~ 09895701 n 0000 ~ 09983889 n 0000 ~ 10119351 n 0000 ~ 10146682 n 0000 ~ 10189597 n 0000 ~ 10219577 n 0000 ~ 10262093 n 0000 ~ 10420507 n 0000 ~ 10806113 n 0000 | one having charge of buildings or grounds or animals -09984659 18 n 02 customer 0 client 1 012 @ 09612848 n 0000 #m 13836841 n 0000 ~ 09885145 n 0000 ~ 10151133 n 0000 ~ 10407726 n 0000 ~ 10449664 n 0000 ~ 10592397 n 0000 ~ 10635275 n 0000 ~ 10670483 n 0000 ~ 10689784 n 0000 ~ 10768148 n 0000 ~ 10779995 n 0000 | someone who pays for goods or services -09984960 18 n 01 customer_agent 0 001 @ 09885145 n 0000 | a foreign purchaser who buys goods outright for resale -09985075 18 n 01 client 0 003 @ 09898892 n 0000 #m 13839662 n 0000 ;c 08441203 n 0000 | a person who seeks the advice of a lawyer -09985207 18 n 01 cutler 0 001 @ 10720453 n 0000 | a dealer in cutlery -09985279 18 n 01 cutter 0 005 @ 10605985 n 0000 + 01552519 v 0101 ~ 10121026 n 0000 ~ 10123026 n 0000 ~ 10132305 n 0000 | someone whose work is cutting (as e.g. cutting cloth for garments) -09985470 18 n 02 cutter 1 carver 1 002 @ 10013242 n 0000 + 01255967 v 0201 | someone who carves the meat -09985577 18 n 01 cutthroat 0 001 @ 10338707 n 0000 | someone who murders by cutting the victim's throat -09985683 18 n 01 cybernaut 0 001 @ 09951274 n 0000 | a computer user who uses the internet; someone who explores cyberspace -09985809 18 n 01 cyberpunk 0 001 @ 10794014 n 0000 | a writer of science fiction set in a lawless subculture of an oppressive society dominated by computer technology -09985978 18 n 03 cyborg 0 bionic_man 0 bionic_woman 0 001 @ 10278666 n 0000 | a human being whose body has been taken over in whole or in part by electromechanical devices; "a cyborg is a cybernetic organism" -09986189 18 n 04 cyclist 0 bicyclist 0 bicycler 0 wheeler 1 009 @ 10411163 n 0000 + 01935476 v 0405 + 01935476 v 0301 + 02834778 n 0201 + 01935476 v 0201 + 02834778 n 0104 + 01935476 v 0102 ~i 11050723 n 0000 ~i 11175605 n 0000 | a person who rides a bicycle -09986450 18 n 01 cymbalist 0 001 @ 10415037 n 0000 | a performer on the cymbals -09986532 18 n 02 cynic 0 faultfinder 0 004 @ 09631463 n 0000 + 00842772 v 0202 + 02463582 a 0101 ~ 10009671 n 0000 | someone who is critical of the motives of others -09986700 18 n 01 Cynic 1 001 @ 10423589 n 0000 | a member of a group of ancient Greek philosophers who advocated the doctrine that virtue is the only good and that the essence of virtue is self-control -09986904 18 n 01 cytogeneticist 0 001 @ 10126424 n 0000 | a geneticist who specializes in the cellular components associated with heredity -09987045 18 n 01 cytologist 0 001 @ 09855630 n 0000 | a biologist who studies the structure and function of cells -09987161 18 n 01 czar 0 001 @ 10735298 n 0000 | a person having great power -09987239 18 n 03 czar 1 tsar 0 tzar 0 012 @ 10628644 n 0000 ;r 09002814 n 0000 + 02710043 a 0204 + 02710043 a 0102 ~i 10812550 n 0000 ~i 10812800 n 0000 ~i 10813049 n 0000 ~i 11003599 n 0000 ~i 11075219 n 0000 ~i 11205975 n 0000 ~i 11206150 n 0000 ~i 11231433 n 0000 | a male monarch or emperor (especially of Russia prior to 1917) -09987573 18 n 05 czarina 0 tsarina 0 tzarina 0 czaritza 0 tsaritsa 0 001 @ 10083823 n 0000 | the wife or widow of a czar -09987696 18 n 03 dabbler 0 dilettante 0 sciolist 0 004 @ 09786585 n 0000 + 05095561 n 0301 + 01874331 a 0201 + 02416030 v 0101 | an amateur who engages in an activity without serious intentions and who pretends to have knowledge -09987927 18 n 02 dacoit 0 dakoit 0 003 @ 10707804 n 0000 ;r 08900535 n 0000 ;r 08715390 n 0000 | a member of an armed gang of robbers -09988063 18 n 07 dad 0 dada 0 daddy 0 pa 0 papa 0 pappa 0 pop 0 001 @ 10080869 n 0000 | an informal term for a father; probably derived from baby talk -09988216 18 n 02 dairymaid 0 milkmaid 0 001 @ 10079399 n 0000 | a woman who works in a dairy -09988311 18 n 01 dairyman 1 001 @ 10079399 n 0000 | a man who works in a dairy -09988392 18 n 02 dairyman 0 dairy_farmer 0 001 @ 10078806 n 0000 | the owner or manager of a dairy -09988493 18 n 02 Dalai_Lama 0 Grand_Lama 0 001 @ 10243664 n 0000 | chief lama and once ruler of Tibet -09988597 18 n 01 dalesman 0 001 @ 10523519 n 0000 | a person who lives in the dales of northern England -09988703 18 n 05 dallier 0 dillydallier 0 dilly-dallier 0 mope 0 lounger 0 006 @ 10197967 n 0000 + 02639075 v 0502 + 01805247 v 0401 + 01918669 v 0401 + 02642238 v 0207 + 02011685 v 0101 | someone who wastes time -09988918 18 n 01 Dalmatian 0 003 @ 09686536 n 0000 #m 08819223 n 0000 + 03059551 a 0101 | a native or inhabitant of Dalmatia -09989045 18 n 06 dame 0 doll 0 wench 0 skirt 0 chick 0 bird 0 001 @ 10129825 n 0000 | informal terms for a (young) woman -09989168 18 n 05 damsel 0 demoiselle 0 damoiselle 0 damosel 0 damozel 0 001 @ 10282482 n 0000 | a young unmarried woman -09989290 18 n 05 dame 1 madam 0 ma'am 0 lady 1 gentlewoman 0 003 @ 10787470 n 0000 ~ 10142166 n 0000 ~ 10279778 n 0000 | a woman of refinement; "a chauffeur opened the door of the limousine for the grand lady" -09989502 18 n 03 dancer 0 professional_dancer 0 terpsichorean 0 043 @ 10415638 n 0000 + 01894649 v 0101 + 01708676 v 0101 ~ 09834699 n 0000 ~ 09834885 n 0000 ~ 09835017 n 0000 ~ 09849462 n 0000 ~ 09920901 n 0000 ~ 09990777 n 0000 ~ 10184403 n 0000 ~ 10228712 n 0000 ~ 10347204 n 0000 ~ 10691148 n 0000 ~ 10693334 n 0000 ~i 10815343 n 0000 ~i 10826352 n 0000 ~i 10831656 n 0000 ~i 10837737 n 0000 ~i 10917554 n 0000 ~i 10929886 n 0000 ~i 10945415 n 0000 ~i 10974455 n 0000 ~i 11010187 n 0000 ~i 11080601 n 0000 ~i 11097208 n 0000 ~i 11099729 n 0000 ~i 11157140 n 0000 ~i 11163859 n 0000 ~i 11181937 n 0000 ~i 11187471 n 0000 ~i 11207585 n 0000 ~i 11210610 n 0000 ~i 11227400 n 0000 ~i 11268667 n 0000 ~i 11279300 n 0000 ~i 11296602 n 0000 ~i 11296775 n 0000 ~i 11313911 n 0000 ~i 11329507 n 0000 ~i 11337629 n 0000 ~i 11351677 n 0000 ~i 11355537 n 0000 ~i 11365300 n 0000 | a performer who dances professionally -09990415 18 n 02 dancer 1 social_dancer 0 008 @ 00007846 n 0000 + 01894649 v 0101 + 01708676 v 0101 ~ 09990690 n 0000 ~ 09990904 n 0000 ~ 10098862 n 0000 ~ 10508272 n 0000 ~ 10765587 n 0000 | a person who participates in a social gathering arranged for dancing (as a ball) -09990690 18 n 01 clog_dancer 0 001 @ 09990415 n 0000 | someone who does clog dancing -09990777 18 n 02 dancing-master 0 dance_master 0 002 @ 10694258 n 0000 @ 09989502 n 0000 | a professional teacher of dancing -09990904 18 n 01 dancing_partner 0 002 @ 09990415 n 0000 @ 09935434 n 0000 | one of a pair of people who dance together -09991026 18 n 09 dandy 0 dude 0 fop 0 gallant 1 sheik 1 beau 1 swell 0 fashion_plate 0 clotheshorse 0 005 @ 10287213 n 0000 + 00051942 v 0101 ~ 09973490 n 0000 ~ 10278263 n 0000 ~i 10868397 n 0000 | a man who is much concerned with his dress and appearance -09991285 18 n 01 Daniel 0 001 @ 10225219 n 0000 | a wise and upright judge; "a Daniel come to judgment" -- Shakespeare -09991406 18 n 02 danseur 0 danseur_noble 0 001 @ 09834699 n 0000 | a male ballet dancer who is the partner of a ballerina -09991530 18 n 06 daredevil 0 madcap 0 hothead 0 swashbuckler 0 lunatic 1 harum-scarum 0 004 @ 09606009 n 0000 + 01998260 a 0605 + 00250483 a 0101 ~ 10695450 n 0000 | a reckless impetuous irresponsible person -09991740 18 n 01 dark_horse 0 001 @ 09889691 n 0000 | a political candidate who is not well known but could win unexpectedly -09991867 18 n 07 darling 0 favorite 0 favourite 0 pet 0 dearie 0 deary 0 ducky 0 009 @ 09622302 n 0000 + 01226600 v 0401 + 01425892 v 0401 + 01462882 a 0303 + 01462324 a 0102 ~ 09921034 n 0000 ~ 10279540 n 0000 ~ 10327583 n 0000 ~ 10694849 n 0000 | a special loved one -09992138 18 n 01 darner 0 002 @ 10308732 n 0000 + 01330676 v 0101 | a person who mends by darning -09992238 18 n 01 dart_player 0 001 @ 10439851 n 0000 | someone who plays the game of darts -09992331 18 n 01 Darwinian 0 002 @ 09774783 n 0000 + 03013550 a 0101 | an advocate of Darwinism -09992429 18 n 01 dastard 0 003 @ 09614047 n 0000 + 00265765 a 0101 + 00265765 a 0102 | a despicable coward -09992538 18 n 02 date 0 escort 0 006 @ 09945905 n 0000 #m 08385009 n 0000 + 02025829 v 0201 + 02486232 v 0103 + 02485844 v 0101 ~ 09859975 n 0000 | a participant in a date; "his date never stopped talking" -09992746 18 n 01 dauber 0 002 @ 10391653 n 0000 + 01233387 v 0101 | an unskilled painter -09992837 18 n 02 daughter 0 girl 4 005 @ 10084043 n 0000 ! 10624074 n 0202 + 01722846 a 0101 ! 10624074 n 0101 ~ 10333601 n 0000 | a female human offspring; "her daughter cared for her in her old age" -09993040 18 n 01 daughter-in-law 0 001 @ 10207169 n 0000 | the wife of your son -09993122 18 n 01 dauphin 0 001 @ 10472799 n 0000 | formerly, the eldest son of the King of France and direct heir to the throne -09993252 18 n 06 dawdler 0 drone 0 laggard 0 lagger 0 trailer 0 poke 0 014 @ 10197967 n 0000 + 00981067 a 0603 + 00981067 a 0604 + 02059916 v 0501 + 02058756 v 0502 + 01997862 v 0401 + 01997862 v 0301 + 02011685 v 0102 + 01997862 v 0102 + 02058590 v 0102 ~ 10270232 n 0000 ~ 10442232 n 0000 ~ 10496193 n 0000 ~ 10660729 n 0000 | someone who takes more time than necessary; someone who lags behind -09993651 18 n 01 day_boarder 0 003 @ 10559288 n 0000 ~ 09993822 n 0000 ~ 09994319 n 0000 | a schoolchild at a boarding school who has meals at school but sleeps at home -09993822 18 n 01 dayboy 0 001 @ 09993651 n 0000 | a day boarder who is a boy -09993901 18 n 02 daydreamer 0 woolgatherer 0 006 @ 10197967 n 0000 + 01637633 v 0203 + 02418205 v 0101 + 01637633 v 0102 ~ 09994119 n 0000 ~ 10062996 n 0000 | someone who indulges in idle or absentminded daydreaming -09994119 18 n 02 lotus-eater 0 stargazer 1 002 @ 09993901 n 0000 + 01637633 v 0204 | someone indifferent to the busy world; "in the Odyssey Homer tells of lotus-eaters who live in dreamy indolence" -09994319 18 n 01 daygirl 0 001 @ 09993651 n 0000 | a day boarder who is a girl -09994400 18 n 02 day_laborer 0 day_labourer 0 001 @ 10241300 n 0000 | a laborer who works by the day; for daily wages -09994520 18 n 01 deacon 0 002 @ 09927451 n 0000 @ 13950812 n 0000 | a cleric ranking just below a priest in Christian churches; one of the Holy Orders -09994673 18 n 02 deacon 1 Protestant_deacon 0 002 @ 09922799 n 0000 ~ 09994808 n 0000 | a Protestant layman who assists the minister -09994808 18 n 01 deaconess 0 001 @ 09994673 n 0000 | a woman deacon -09994878 18 n 01 deadeye 0 001 @ 10294953 n 0000 | a dead shot -09994943 18 n 06 dead_person 0 dead_soul 0 deceased_person 0 deceased 0 decedent 0 departed 0 007 @ 00007846 n 0000 #m 07945657 n 0000 + 00095873 a 0605 + 00358431 v 0502 ~ 10205344 n 0000 ~i 10251125 n 0000 ~ 10805638 n 0000 | someone who is no longer alive; "I wonder what the dead person would have done" -09995253 18 n 01 decipherer 0 002 @ 10508862 n 0000 + 00994454 v 0103 | a reader capable of reading and interpreting illegible or obscure text -09995398 18 n 02 decoder 0 decipherer 1 003 @ 09621545 n 0000 + 00994454 v 0203 ~ 09981540 n 0000 | the kind of intellectual who converts messages from a code to plain text -09995573 18 n 02 decoy 0 steerer 0 004 @ 09998101 n 0000 @ 09761068 n 0000 ~ 10538853 n 0000 ~ 10589402 n 0000 | a beguiler who leads someone into danger (usually as part of a plot) -09995757 18 n 01 deer_hunter 0 001 @ 10193026 n 0000 | hunter of deer -09995829 18 n 01 deipnosophist 0 001 @ 09961999 n 0000 | someone skilled at informal chitchat -09995925 18 n 01 dropout 0 002 @ 10502046 n 0000 + 02382938 v 0101 | someone who quits school before graduation -09996039 18 n 01 dropout 1 001 @ 09619824 n 0000 | someone who withdraws from a social group or environment -09996149 18 n 01 deadbeat_dad 0 001 @ 09999532 n 0000 | a father who willfully defaults on his obligation to provide financial support for his offspring -09996304 18 n 01 deadhead 0 001 @ 09626031 n 0000 | a nonenterprising person who is not paying his way; "the deadheads on the payroll should be eased out as fast as possible" -09996481 18 n 01 deaf_person 0 004 @ 00007846 n 0000 #m 07945949 n 0000 ~ 10265390 n 0000 ~ 10342367 n 0000 | a person with a severe auditory impairment -09996636 18 n 01 dealer 1 003 @ 09894654 n 0000 + 02246686 v 0101 + 02246456 v 0101 | the person who distributes the playing cards in a card game -09996784 18 n 01 dean 0 002 @ 09758885 n 0000 + 00591725 n 0101 | an administrator in charge of a division of a university or college -09996920 18 n 01 dean 1 003 @ 09894143 n 0000 ;c 08083599 n 0000 + 00591725 n 0101 | (Roman Catholic Church) the head of the College of Cardinals -09997068 18 n 02 dean 3 doyen 1 001 @ 10048218 n 0000 | a man who is the senior member of a group; "he is the dean of foreign correspondents" -09997212 18 n 02 debaser 0 degrader 0 003 @ 00007846 n 0000 + 00493517 v 0101 ~ 10761858 n 0000 | a person who lowers the quality or character or value (as by adding cheaper metal to coins) -09997404 18 n 02 debater 0 arguer 0 008 @ 09615465 n 0000 + 00772189 v 0201 + 00773432 v 0201 + 00812580 v 0101 + 00714884 v 0101 ~ 10010400 n 0000 ~ 10510546 n 0000 ~ 10792746 n 0000 | someone who engages in debate -09997622 18 n 02 debtor 0 debitor 0 005 @ 00007846 n 0000 ! 09976728 n 0101 ~ 09999532 n 0000 ~ 10098388 n 0000 ~ 10331569 n 0000 | a person who owes a creditor; someone who has the obligation of paying a debt -09997834 18 n 02 debutante 0 deb 0 001 @ 10787470 n 0000 | a young woman making her debut into society -09997939 18 n 01 decadent 0 003 @ 09831962 n 0000 + 01297658 a 0101 + 00208836 v 0101 | a person who has fallen into a decadent state (morally or artistically) -09998101 18 n 06 deceiver 0 cheat 0 cheater 0 trickster 1 beguiler 1 slicker 0 030 @ 09633969 n 0000 + 02578235 v 0502 + 00171618 n 0401 + 00750730 n 0401 + 02574516 v 0301 + 02573275 v 0301 + 01104624 v 0301 + 02574516 v 0201 + 00854420 v 0101 ~ 09861718 n 0000 ~ 09955015 n 0000 ~ 09995573 n 0000 ~ 10022759 n 0000 ~ 10027590 n 0000 ~ 10051337 n 0000 ~ 10076957 n 0000 ~ 10089615 n 0000 ~ 10105085 n 0000 ~ 10105359 n 0000 ~ 10113583 n 0000 ~ 10195593 n 0000 ~ 10200365 n 0000 ~ 10201535 n 0000 ~ 10256537 n 0000 ~ 10322391 n 0000 ~ 10334782 n 0000 ~ 10369417 n 0000 ~ 10549925 n 0000 ~ 10734741 n 0000 ~ 10743543 n 0000 | someone who leads you to believe something that is not true -09998788 18 n 02 deckhand 0 roustabout 0 001 @ 10294602 n 0000 | a member of a ship's crew who performs manual labor -09998907 18 n 02 decorator 0 ornamentalist 0 003 @ 09812338 n 0000 + 00412727 n 0201 + 01675963 v 0101 | someone who decorates -09999036 18 n 01 deep-sea_diver 0 001 @ 10019552 n 0000 | a diver in the deeper parts of the sea -09999135 18 n 07 defamer 0 maligner 0 slanderer 0 vilifier 0 libeler 0 backbiter 0 traducer 0 008 @ 10009671 n 0000 + 00848169 v 0703 + 00907657 v 0601 + 00847683 v 0501 + 00847870 v 0401 + 00846509 v 0302 + 00848169 v 0202 + 00846509 v 0101 | one who attacks the reputation of another by slander or libel -09999443 18 n 01 defaulter 0 001 @ 09613191 n 0000 | a contestant who forfeits a match -09999532 18 n 02 defaulter 1 deadbeat 0 003 @ 09997622 n 0000 + 02253766 v 0101 ~ 09996149 n 0000 | someone who fails to meet a financial obligation -09999683 18 n 01 defaulter 2 001 @ 09757653 n 0000 | someone who fails to make a required appearance in court -09999795 18 n 02 defeatist 0 negativist 0 005 @ 10419472 n 0000 + 05167618 n 0203 + 07540866 n 0102 + 07475364 n 0101 + 07542560 n 0101 | someone who is resigned to defeat without offering positive suggestions -10000007 18 n 03 defecator 0 voider 1 shitter 0 004 @ 00007846 n 0000 + 00074038 v 0303 + 00073343 v 0202 + 00074038 v 0102 | a person who defecates -10000158 18 n 02 defense_attorney 0 defense_lawyer 0 002 @ 10249950 n 0000 ;c 08441203 n 0000 | the lawyer representing the defendant -10000294 18 n 01 defense_contractor 0 002 @ 09960688 n 0000 ;c 08199025 n 0000 | a contractor concerned with the development and manufacture of systems of defense -10000459 18 n 02 deist 0 freethinker 0 002 @ 09625789 n 0000 + 06223922 n 0101 | a person who believes that God created the universe and then abandoned it -10000616 18 n 01 delayer 0 004 @ 00007846 n 0000 ~ 10087868 n 0000 ~ 10478626 n 0000 ~ 10699558 n 0000 | a person who delays; to put off until later or cause to be late -10000787 18 n 01 delegate 0 004 @ 10522035 n 0000 + 02391803 v 0101 + 02395395 v 0101 ~ 09799607 n 0000 | a person appointed or elected to represent others -10000945 18 n 02 delinquent 0 juvenile_delinquent 0 002 @ 09633969 n 0000 + 01322488 a 0101 | a young offender -10001058 18 n 01 deliverer 1 004 @ 00007846 n 0000 + 01438304 v 0101 + 02293321 v 0106 ~ 09833275 n 0000 | a person who gives up or transfers money or goods -10001217 18 n 03 deliveryman 0 delivery_boy 0 deliverer 2 009 @ 10053808 n 0000 + 01438304 v 0301 ~ 09897603 n 0000 ~ 09932429 n 0000 ~ 10147849 n 0000 ~ 10196404 n 0000 ~ 10283037 n 0000 ~ 10317884 n 0000 ~ 10396908 n 0000 | someone employed to make deliveries -10001481 18 n 03 demagogue 0 demagog 0 rabble-rouser 0 001 @ 10450303 n 0000 | a political leader who seeks support by appealing to popular passions and prejudices -10001647 18 n 01 demander 0 003 @ 00007846 n 0000 + 01017826 v 0101 + 00754942 v 0101 | a person who makes demands -10001764 18 n 03 demigod 1 superman 0 Ubermensch 0 001 @ 09623038 n 0000 | a person with great powers and abilities -10001882 18 n 01 demimondaine 0 002 @ 10485440 n 0000 #m 08244895 n 0000 | a woman whose sexual promiscuity places her outside respectable society -10002031 18 n 02 democrat 0 populist 0 002 @ 09774783 n 0000 + 05965933 n 0201 | an advocate of democratic principles -10002151 18 n 01 Democrat 1 002 @ 10450303 n 0000 #m 08259156 n 0000 | a member of the Democratic Party -10002257 18 n 03 demographer 0 demographist 0 population_scientist 0 003 @ 10620758 n 0000 + 06152125 n 0201 + 06152125 n 0101 | a scientist who studies the growth and density of populations and their vital statistics -10002477 18 n 01 demon 2 001 @ 09767197 n 0000 | someone extremely diligent or skillful; "he worked like a demon to finish the job on time"; "she's a demon at math" -10002644 18 n 01 demoniac 0 002 @ 10329945 n 0000 + 02074673 a 0104 | someone who acts as if possessed by a demon -10002760 18 n 02 demonstrator 0 protester 0 006 @ 10515194 n 0000 + 02521410 v 0201 + 00910135 v 0201 + 02521816 v 0101 ~ 09969589 n 0000 ~ 10431770 n 0000 | someone who participates in a public display of group feeling -10002982 18 n 02 demonstrator 1 sales_demonstrator 0 001 @ 10548681 n 0000 | someone who demonstrates an article to a prospective buyer -10003120 18 n 01 demonstrator 2 002 @ 10694258 n 0000 + 02148788 v 0105 | a teacher or teacher's assistant who demonstrates the principles that are being taught -10003283 18 n 01 denier 0 008 @ 09615465 n 0000 + 02213074 v 0101 + 02214190 v 0101 + 02212825 v 0101 + 01068380 v 0102 + 00817167 v 0101 + 00817003 v 0101 + 00816556 v 0101 | one who denies -10003476 18 n 01 den_mother 0 001 @ 09908273 n 0000 | a woman who supervises a den of Cub Scouts -10003575 18 n 01 den_mother 1 001 @ 10676877 n 0000 | someone who plays the role of a den mother; "he serves as den mother to all the freshmen in this dormitory"; "she's the den mother to new secretaries" -10003782 18 n 01 dental_assistant 0 001 @ 09815790 n 0000 | an assistant to a dentist -10003870 18 n 01 dental_hygienist 0 001 @ 10605985 n 0000 | someone trained to provide preventive dental service (cleaning teeth or taking x-rays) -10004019 18 n 02 dental_technician 0 denturist 0 002 @ 10696251 n 0000 + 03176386 n 0201 | someone who makes dental appliances (bridges and dentures) -10004171 18 n 01 dental_surgeon 0 001 @ 10004282 n 0000 | a dentist qualified to perform surgical procedures -10004282 18 n 03 dentist 0 tooth_doctor 0 dental_practitioner 0 008 @ 10305802 n 0000 ~ 10004171 n 0000 ~ 10057114 n 0000 ~ 10071912 n 0000 ~ 10384610 n 0000 ~ 10412554 n 0000 ~ 10416567 n 0000 ~ 10458696 n 0000 | a person qualified to practice dentistry -10004539 18 n 03 departer 0 leaver 0 goer 0 006 @ 10314952 n 0000 + 01848718 v 0301 + 02009433 v 0201 + 01848718 v 0103 + 02014165 v 0101 + 02008396 v 0101 | someone who leaves -10004718 18 n 01 department_head 0 001 @ 10162991 n 0000 | the head of a department -10004804 18 n 02 dependant 0 dependent 0 004 @ 09627906 n 0000 + 00725772 a 0201 ~ 09909760 n 0000 ~ 10320612 n 0000 | a person who relies on another person for support (especially financial support) -10005006 18 n 01 depositor 0 003 @ 10216106 n 0000 + 02310855 v 0101 ~ 10784795 n 0000 | a person who has deposited money in a bank or similar institution -10005163 18 n 01 depressive 0 002 @ 10595647 n 0000 ~ 10306595 n 0000 | someone suffering psychological depression -10005280 18 n 02 deputy 0 lieutenant 2 009 @ 09815790 n 0000 + 00594580 n 0201 + 02394662 v 0102 + 02394445 v 0102 + 02394662 v 0103 + 02394445 v 0103 ~ 10568915 n 0000 ~ 10750640 n 0000 ~ 10751710 n 0000 | an assistant with power to act when his superior is absent -10005548 18 n 02 deputy 1 deputy_sheriff 0 003 @ 10249459 n 0000 + 02394662 v 0103 + 02394445 v 0103 | someone authorized to exercise the powers of sheriff in emergencies -10005721 18 n 02 deputy 2 surrogate 0 006 @ 09777353 n 0000 + 02394662 v 0102 + 02394445 v 0102 + 02394662 v 0103 + 02394445 v 0103 ~ 10751152 n 0000 | a person appointed to represent or act on behalf of others -10005934 18 n 01 deputy 3 002 @ 10253995 n 0000 ;r 08929922 n 0000 | a member of the lower chamber of a legislative assembly (such as in France) -10006081 18 n 01 derelict 0 001 @ 10409011 n 0000 | a person without a home, job, or property -10006177 18 n 02 dermatologist 0 skin_doctor 0 002 @ 10632576 n 0000 + 06049500 n 0101 | a doctor who specializes in the physiology and pathology of the skin -10006337 18 n 01 dervish 0 002 @ 10076307 n 0000 ~ 10777147 n 0000 | an ascetic Muslim monk; a member of an order noted for devotional exercises involving bodily movements -10006511 18 n 02 descendant 0 descendent 0 007 @ 10235549 n 0000 + 02737187 v 0203 + 01972204 a 0101 + 02737187 v 0103 ! 09792555 n 0101 ~ 09918762 n 0000 ~ 10561222 n 0000 | a person considered as descended from some ancestor or race -10006748 18 n 01 descender 0 002 @ 10335931 n 0000 ~ 09757449 n 0000 | someone who descends -10006842 18 n 02 deserter 0 defector 0 009 @ 09633969 n 0000 ;c 08199025 n 0000 + 02584097 v 0201 + 02584097 v 0102 + 00614057 v 0104 ~ 10010243 n 0000 ~ 10028638 n 0000 ~ 10520544 n 0000 ~ 10764128 n 0000 | a person who abandons their duty (as on a military post) -10007109 18 n 06 deserter 1 apostate 0 renegade 1 turncoat 0 recreant 2 ratter 0 012 @ 10502046 n 0000 + 00841986 v 0605 + 02413140 v 0601 + 02412939 v 0603 + 02584475 v 0601 + 00963858 a 0501 + 00963858 a 0302 + 00959979 a 0201 + 00757856 v 0201 + 00757856 v 0202 + 02584097 v 0102 + 00614057 v 0104 | a disloyal person who betrays or deserts his cause or religion or political party or friend etc. -10007511 18 n 01 designated_driver 0 001 @ 10034906 n 0000 | the member of a party who is designated to refrain from alcohol and so is sober when it is time to drive home -10007684 18 n 01 designated_hitter 0 001 @ 09843956 n 0000 | a ballplayer who is designated to bat in place of the pitcher -10007809 18 n 02 designer 3 intriguer 0 001 @ 10438172 n 0000 | a person who devises plots or intrigues; "he is believed to be the principal designer of the terrorist bombing attack" -10007995 18 n 03 desk_clerk 0 hotel_desk_clerk 0 hotel_clerk 0 002 @ 09928451 n 0000 ~ 10538398 n 0000 | a hotel receptionist -10008123 18 n 01 desk_officer 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | a military officer who is not assigned to active duty -10008254 18 n 03 desk_sergeant 0 deskman 0 station_keeper 0 001 @ 10449521 n 0000 | the police sergeant on duty in a police station -10008388 18 n 02 desperado 0 desperate_criminal 0 002 @ 09977660 n 0000 ;r 09044862 n 0000 | a bold outlaw (especially on the American frontier) -10008535 18 n 01 desperate 0 003 @ 09630641 n 0000 + 01810933 v 0101 ~ 10137936 n 0000 | a person who is frightened and in need of help; "they prey on the hopes of the desperate" -10008716 18 n 05 destroyer 0 ruiner 0 undoer 0 waster 1 uprooter 0 013 @ 09831962 n 0000 + 01662118 v 0501 + 00388635 v 0402 + 02559199 v 0301 + 02558951 v 0201 + 01566490 v 0201 + 01564144 v 0202 + 01619929 v 0101 + 01564144 v 0101 ~ 09794917 n 0000 ~ 10196845 n 0000 ~ 10544748 n 0000 ~ 10746056 n 0000 | a person who destroys or ruins or lays waste to; "a destroyer of the environment"; "jealousy was his undoer"; "uprooters of gravestones" -10009162 18 n 02 detainee 0 political_detainee 0 002 @ 10476086 n 0000 + 02495038 v 0102 | some held in custody -10009276 18 n 04 detective 0 investigator 2 tec 0 police_detective 0 005 @ 10448983 n 0000 + 00785962 v 0201 ~ 10011785 n 0000 ~ 10437590 n 0000 ~ 10719972 n 0000 | a police officer who investigates crimes -10009484 18 n 01 detective 1 003 @ 10215623 n 0000 ~ 10476671 n 0000 ~ 10611613 n 0000 | an investigator engaged or employed in obtaining information not easily available to the public -10009671 18 n 04 detractor 0 disparager 0 depreciator 0 knocker 0 007 @ 09986532 n 0000 + 00855933 v 0302 + 00845909 v 0201 + 00532115 v 0102 ~ 09999135 n 0000 ~ 10162104 n 0000 ~ 10336537 n 0000 | one who disparages or belittles the worth of something -10009926 18 n 01 deus_ex_machina 0 001 @ 00007347 n 0000 | any active agent who appears unexpectedly to solve an insoluble difficulty -10010062 18 n 01 developer 0 002 @ 09614315 n 0000 + 00171852 v 0102 | someone who develops real estate (especially someone who prepares a site for residential or commercial use) -10010243 18 n 01 deviationist 0 002 @ 10006842 n 0000 + 00055932 n 0101 | an ideological defector from the party line (especially from orthodox communism) -10010400 18 n 01 devil's_advocate 0 001 @ 09997404 n 0000 | someone who takes the worse side just for the sake of argument -10010525 18 n 01 devil_worshiper 0 002 @ 09847727 n 0000 ~ 10552486 n 0000 | someone who worships devils -10010632 18 n 01 devisee 0 002 @ 09850121 n 0000 + 02229412 v 0101 | someone to whom property (especially realty) is devised by will -10010767 18 n 01 devisor 0 001 @ 10703336 n 0000 | someone who devises real property in a will -10010864 18 n 01 devourer 0 002 @ 10042300 n 0000 + 01197014 v 0101 | someone who eats greedily or voraciously -10010977 18 n 01 diabetic 0 002 @ 10595647 n 0000 + 02543934 a 0101 | someone who has diabetes -10011074 18 n 02 diagnostician 0 pathologist 0 010 @ 10632576 n 0000 + 14204950 n 0201 + 06060845 n 0201 + 06053280 n 0102 ~ 10066059 n 0000 ~i 10973497 n 0000 ~i 11116117 n 0000 ~i 11220319 n 0000 ~i 11272523 n 0000 ~i 11367195 n 0000 | a doctor who specializes in medical diagnosis -10011360 18 n 01 dialectician 0 003 @ 10269785 n 0000 + 13857804 n 0101 + 06163548 n 0101 | a logician skilled in dialectic -10011486 18 n 03 diarist 0 diary_keeper 0 journalist 1 004 @ 10801291 n 0000 + 06402031 n 0101 + 03189707 n 0101 ~i 11229323 n 0000 | someone who keeps a diary or journal -10011659 18 n 01 dichromat 0 002 @ 09610255 n 0000 ~ 10738321 n 0000 | a person with any of the various forms of dichromacy -10011785 18 n 03 dick 0 gumshoe 0 hawkshaw 0 002 @ 10009276 n 0000 ;u 07075172 n 0000 | someone who is a detective -10011902 18 n 02 dictator 0 potentate 0 014 @ 10541229 n 0000 + 00717684 a 0103 + 02712678 a 0101 + 08440630 n 0101 + 02587084 v 0101 ~ 10591072 n 0000 ~ 10665006 n 0000 ~ 10735298 n 0000 ~i 10946624 n 0000 ~i 10946750 n 0000 ~i 10978842 n 0000 ~i 11052672 n 0000 ~i 11198253 n 0000 ~i 11344733 n 0000 | a ruler who is unconstrained by law -10012244 18 n 01 dictator 2 002 @ 10630188 n 0000 + 00626890 v 0101 | a speaker who dictates to a secretary or a recording machine -10012377 18 n 01 dieter 0 003 @ 00007846 n 0000 + 01189224 v 0101 + 01190012 v 0101 | a person who diets -10012484 18 n 03 dietician 0 dietitian 0 nutritionist 0 007 @ 10631941 n 0000 + 13523661 n 0301 + 07570720 n 0303 + 06135915 n 0301 + 07560903 n 0101 + 07561112 n 0101 + 01070187 n 0101 | a specialist in the study of nutrition -10012713 18 n 03 diemaker 0 diesinker 0 die-sinker 0 001 @ 09974648 n 0000 | someone who makes dies -10012815 18 n 02 differentiator 0 discriminator 0 004 @ 00007846 n 0000 + 02512305 v 0201 + 00650016 v 0201 + 00650353 v 0103 | a person who (or that which) differentiates -10012989 18 n 01 digger 0 004 @ 10241300 n 0000 + 01311103 v 0101 ~ 10019308 n 0000 ~ 10728117 n 0000 | a laborer who digs -10013114 18 n 04 dimwit 0 nitwit 0 half-wit 0 doofus 0 002 @ 10599354 n 0000 ;u 07075172 n 0000 | a stupid incompetent person -10013242 18 n 01 diner 0 004 @ 10042300 n 0000 + 01167981 v 0101 ~ 09985470 n 0000 ~ 10687826 n 0000 | a person eating a meal (especially in a restaurant) -10013399 18 n 01 dingbat 0 001 @ 10599354 n 0000 | a silly empty-headed person; "you would be a dingbat even to try it"; "yet here he was with an upper class dingbat who just happened to be married to his sister" -10013614 18 n 02 dining-room_attendant 0 restaurant_attendant 0 004 @ 10053808 n 0000 ~ 09881358 n 0000 ~ 09892513 n 0000 ~ 10763383 n 0000 | someone employed to provide service in a dining room -10013811 18 n 01 diocesan 0 002 @ 09857200 n 0000 + 02871449 a 0101 | a bishop having jurisdiction over a diocese -10013927 18 n 02 diplomat 0 diplomatist 0 034 @ 10372373 n 0000 + 07148573 n 0201 + 00758459 a 0102 ~ 09787534 n 0000 ~ 09909929 n 0000 ~ 09959797 n 0000 ~ 10061043 n 0000 ~ 10174445 n 0000 ~ 10212338 n 0000 ~ 10320695 n 0000 ~ 10368113 n 0000 ~ 10417843 n 0000 ~ 10417969 n 0000 ~ 10441962 n 0000 ~i 10871270 n 0000 ~i 10944686 n 0000 ~i 10987358 n 0000 ~i 10994097 n 0000 ~i 11017454 n 0000 ~i 11026372 n 0000 ~i 11030025 n 0000 ~i 11030855 n 0000 ~i 11065562 n 0000 ~i 11081111 n 0000 ~ 11100798 n 0000 ~i 11106290 n 0000 ~i 11123439 n 0000 ~i 11129286 n 0000 ~i 11131808 n 0000 ~i 11206544 n 0000 ~i 11219992 n 0000 ~i 11270380 n 0000 ~i 11317749 n 0000 ~i 11370654 n 0000 | an official engaged in international negotiations -10014658 18 n 01 diplomat 1 002 @ 09624559 n 0000 + 00758459 a 0102 | a person who deals tactfully with others -10014771 18 n 01 diplomate 0 001 @ 10632576 n 0000 | medical specialist whose competence has been certified by a diploma granted by an appropriate professional group -10014939 18 n 03 director 0 manager 0 managing_director 0 009 @ 09770949 n 0000 + 02904223 a 0201 + 00594836 n 0201 + 02443049 v 0204 + 00591858 n 0101 + 02439501 v 0101 ~ 09838200 n 0000 ~ 10019187 n 0000 ~ 10289462 n 0000 | someone who controls resources and expenditures -10015215 18 n 03 director 2 theater_director 0 theatre_director 0 006 @ 10676877 n 0000 + 01710317 v 0101 ~ 10645223 n 0000 ~i 11011764 n 0000 ~i 11098039 n 0000 ~i 11312709 n 0000 | someone who supervises the actors and directs the action in the production of a show -10015485 18 n 01 director 3 003 @ 09944160 n 0000 #m 08322981 n 0000 + 00591858 n 0101 | member of a board of directors -10015607 18 n 02 Director_of_Central_Intelligence 0 DCI 0 001 @ 09770472 n 0000 | the head of the United States Intelligence Community and director of the Central Intelligence Agency -10015792 18 n 01 dirty_old_man 0 001 @ 10314054 n 0000 | a middle-aged man with lecherous inclinations -10015897 18 n 03 disbeliever 0 nonbeliever 0 unbeliever 0 005 @ 09625789 n 0000 + 00684645 v 0101 ~ 09820044 n 0000 ~ 10217208 n 0000 ~ 10300829 n 0000 | someone who refuses to believe (as in a divinity) -10016103 18 n 02 disciple 0 adherent 0 041 @ 10099375 n 0000 + 02638845 v 0201 + 00592001 n 0101 ~ 09683924 n 0000 ~ 09684082 n 0000 ~ 09684226 n 0000 ~ 09684352 n 0000 ~ 09684476 n 0000 ~ 09685085 n 0000 ~ 09685806 n 0000 ~ 09685922 n 0000 ~ 09686051 n 0000 ~ 09686146 n 0000 ~ 09755398 n 0000 ~ 09789150 n 0000 ~ 09794668 n 0000 ~ 09797257 n 0000 ~ 09798811 n 0000 ~ 09808080 n 0000 ~ 09832873 n 0000 ~ 09848285 n 0000 ~ 09928364 n 0000 ~ 10025391 n 0000 ~ 10037588 n 0000 ~ 10038226 n 0000 ~ 10194463 n 0000 ~ 10217552 n 0000 ~ 10277815 n 0000 ~ 10282262 n 0000 ~ 10290813 n 0000 ~ 10329251 n 0000 ~ 10353269 n 0000 ~ 10552486 n 0000 ~ 10598349 n 0000 ~ 10620212 n 0000 ~ 10717337 n 0000 ~ 10738670 n 0000 ~ 10738787 n 0000 ~ 10738871 n 0000 ~ 10759820 n 0000 ~i 10837461 n 0000 | someone who believes and helps to spread the doctrine of another -10016954 18 n 03 disentangler 0 unraveler 0 unraveller 0 005 @ 00007846 n 0000 + 01521367 v 0302 + 00332672 v 0302 + 01521367 v 0202 + 01520844 v 0201 | a person who removes tangles; someone who takes something out of a tangled state -10017190 18 n 01 dishwasher 0 001 @ 10241300 n 0000 | someone who washes dishes -10017272 18 n 03 disk_jockey 0 disc_jockey 0 dj 0 002 @ 09875786 n 0000 + 01033346 v 0303 | a person who announces and plays popular recorded music -10017422 18 n 01 dispatcher 1 003 @ 10053808 n 0000 + 01955127 v 0101 ~ 10803031 n 0000 | employee of a transportation company who controls the departures of vehicles according to weather conditions and in the interest of efficient service -10017664 18 n 01 dispatch_rider 0 001 @ 10311021 n 0000 | a messenger who carries military dispatches (usually on a motorcycle) -10017794 18 n 01 dispenser 0 002 @ 10677271 n 0000 + 02294436 v 0107 | a person who dispenses -10017890 18 n 03 displaced_person 0 DP 0 stateless_person 0 001 @ 10516016 n 0000 | a person forced to flee from home or country -10018021 18 n 05 dissenter 0 dissident 0 protester 1 objector 0 contestant 1 012 @ 00007846 n 0000 + 00807461 v 0401 + 02521410 v 0301 + 00910135 v 0301 + 01691474 a 0201 + 00075737 a 0203 + 02521410 v 0103 + 00804802 v 0103 ~ 09957013 n 0000 ~ 09957834 n 0000 ~ 10018532 n 0000 ~ 10358575 n 0000 | a person who dissents from some established policy -10018373 18 n 01 disturber 0 001 @ 10731244 n 0000 | a troubler who interrupts or interferes with peace and quiet; someone who causes disorder and commotion -10018532 18 n 01 political_dissident 0 002 @ 10018021 n 0000 ~i 11308120 n 0000 | a dissenter from political orthodoxy -10018653 18 n 01 distiller 0 001 @ 10292316 n 0000 | someone who distills alcoholic liquors -10018747 18 n 01 distortionist 0 002 @ 10391653 n 0000 + 13867276 n 0102 | a painter who introduces distortions -10018861 18 n 02 distributor 0 distributer 0 007 @ 10677271 n 0000 + 02479990 v 0201 + 02479990 v 0101 ~ 10222497 n 0000 ~ 10525436 n 0000 ~ 10590042 n 0000 ~ 10790596 n 0000 | someone who markets merchandise -10019072 18 n 02 district_attorney 0 DA 0 001 @ 10484858 n 0000 | an official prosecutor for a judicial district -10019187 18 n 01 district_manager 0 001 @ 10014939 n 0000 | a manager who supervises the sales activity for a district -10019308 18 n 02 ditch_digger 0 mud_digger 0 001 @ 10012989 n 0000 | a laborer who digs ditches -10019406 18 n 02 diver 0 plunger 1 004 @ 10683349 n 0000 + 01977080 v 0201 + 01577635 v 0202 + 01962865 v 0101 | someone who dives (into water) -10019552 18 n 03 diver 1 frogman 0 underwater_diver 0 005 @ 10072708 n 0000 + 01962671 v 0101 ~ 09999036 n 0000 ~ 10410531 n 0000 ~ 10565667 n 0000 | someone who works underwater -10019733 18 n 01 divergent_thinker 0 001 @ 10708454 n 0000 | a thinker who moves away from the problem as stated and often has novel ideas and solutions -10019888 18 n 01 divider 0 003 @ 00007846 n 0000 + 02467662 v 0101 ~ 10668280 n 0000 | a person who separates something into parts or groups -10020031 18 n 01 diviner 0 012 @ 10756433 n 0000 + 02107588 v 0101 + 01314948 v 0101 ~ 10127916 n 0000 ~ 10194865 n 0000 ~ 10266744 n 0000 ~ 10351152 n 0000 ~ 10377732 n 0000 ~ 10378113 n 0000 ~ 10483530 n 0000 ~ 10496825 n 0000 ~ 10770891 n 0000 | someone who claims to discover hidden knowledge with the aid of supernatural powers -10020366 18 n 02 divorcee 0 grass_widow 0 003 @ 10787470 n 0000 + 02490634 v 0101 ~i 11301809 n 0000 | a divorced woman or a woman who is separated from her husband -10020533 18 n 02 ex-wife 0 ex 0 001 @ 10787470 n 0000 | a woman who was formerly a particular man's wife; "all his exes live in Texas" -10020670 18 n 01 divorce_lawyer 0 002 @ 10249950 n 0000 ;c 08441203 n 0000 | a lawyer specializing in actions for divorce or annulment -10020807 18 n 01 docent 0 001 @ 10694258 n 0000 | a teacher at some universities -10020890 18 n 06 doctor 0 doc 0 physician 0 MD 0 Dr. 0 medico 0 046 @ 10305802 n 0000 #m 13837840 n 0000 + 02893338 a 0102 + 00080304 v 0101 ~ 09757175 n 0000 ~ 09784306 n 0000 ~ 09793830 n 0000 ~ 10074578 n 0000 ~ 10121800 n 0000 ~ 10126009 n 0000 ~ 10156629 n 0000 ~ 10189278 n 0000 ~ 10211203 n 0000 ~ 10471948 n 0000 ~ 10497202 n 0000 ~ 10632576 n 0000 ~ 10679174 n 0000 ~ 10749715 n 0000 ~i 10829450 n 0000 ~i 10829733 n 0000 ~i 10834176 n 0000 ~i 10836725 n 0000 ~i 10867708 n 0000 ~i 10915862 n 0000 ~i 10942144 n 0000 ~i 10954328 n 0000 ~i 10966145 n 0000 ~i 10999410 n 0000 ~i 11033358 n 0000 ~i 11054034 n 0000 ~i 11067604 n 0000 ~i 11077762 n 0000 ~i 11082135 n 0000 ~i 11107901 n 0000 ~i 11143163 n 0000 ~i 11154646 n 0000 ~i 11176932 n 0000 ~i 11222054 n 0000 ~i 11269085 n 0000 ~i 11270948 n 0000 ~i 11274269 n 0000 ~i 11287964 n 0000 ~i 11296139 n 0000 ~i 11301597 n 0000 ~i 11327273 n 0000 ~i 11388321 n 0000 | a licensed medical practitioner; "I felt so bad I went to see my doctor" -10021892 18 n 02 doctor 1 Dr. 1 003 @ 10557854 n 0000 + 02893338 a 0102 + 02893338 a 0101 | a person who holds Ph.D. degree (or the equivalent) from an academic institution; "she is a doctor of philosophy in physics" -10022111 18 n 02 Doctor_of_the_Church 0 Doctor 2 013 @ 10705615 n 0000 ;c 08083599 n 0000 ~i 10815648 n 0000 ~i 10820790 n 0000 ~i 10827155 n 0000 ~i 10828573 n 0000 ~i 10837918 n 0000 ~i 10840769 n 0000 ~i 11013876 n 0000 ~i 11015080 n 0000 ~i 11073061 n 0000 ~i 11083064 n 0000 ~i 11086774 n 0000 | (Roman Catholic Church) a title conferred on 33 saints who distinguished themselves through the orthodoxy of their theological teaching; "the Doctors of the Church greatly influenced Christian thought down to the late Middle Ages" -10022645 18 n 01 dodderer 0 002 @ 10376523 n 0000 + 01918803 v 0104 | one who dodders from old age and weakness -10022759 18 n 03 dodger 0 fox 0 slyboots 0 004 @ 09998101 n 0000 + 00148078 a 0204 + 02575723 v 0206 + 00809654 v 0109 | a shifty deceptive person -10022908 18 n 04 dodo 0 fogy 0 fogey 0 fossil 0 002 @ 10376523 n 0000 ;u 07075172 n 0000 | someone whose style is out of fashion -10023039 18 n 01 dog 0 001 @ 09908025 n 0000 | informal term for a man; "you lucky dog" -10023129 18 n 01 dog_catcher 0 001 @ 10053808 n 0000 | an employee of a municipal pound who is hired to round up stray dogs and cats -10023264 18 n 01 doge 0 001 @ 10225219 n 0000 | formerly the chief magistrate in the republics of Venice and Genoa -10023381 18 n 01 dogfighter 0 002 @ 10087434 n 0000 + 00974224 n 0101 | a fighter pilot who engages in an aerial dogfights -10023506 18 n 01 dog_in_the_manger 0 001 @ 10576962 n 0000 | someone who prevents you from enjoying something that they themselves have no need for -10023656 18 n 02 dogmatist 0 doctrinaire 0 007 @ 10402086 n 0000 + 01324271 a 0201 + 06206210 n 0102 + 00963283 v 0101 + 00980908 v 0101 + 00963283 v 0102 + 00980908 v 0102 | a stubborn person of arbitrary or arrogant opinions -10023885 18 n 01 dogsbody 0 001 @ 10481711 n 0000 | a worker who has to do all the unpleasant or boring jobs that no one else wants to do -10024025 18 n 01 dolichocephalic 0 001 @ 09605289 n 0000 | an adult with a long narrow head -10024119 18 n 03 domestic 0 domestic_help 0 house_servant 0 006 @ 10582154 n 0000 ~ 09826821 n 0000 ~ 10181990 n 0000 ~ 10188715 n 0000 ~ 10282672 n 0000 ~ 10607933 n 0000 | a servant who is paid to perform menial tasks around the household -10024362 18 n 04 domestic_partner 0 significant_other 0 spousal_equivalent 0 spouse_equivalent 0 003 @ 00007846 n 0000 ~ 09622745 n 0000 ~ 10640620 n 0000 | a person (not necessarily a spouse) with whom you cohabit and share a long-term sexual relationship -10024621 18 n 01 domestic_prelate 0 002 @ 10470779 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a priest who is an honorary member of the papal household -10024784 18 n 01 dominatrix 0 001 @ 10787470 n 0000 | a dominating woman (especially one who plays that role in a sadomasochistic sexual relationship) -10024937 18 n 01 Dominican 1 002 @ 10774440 n 0000 #m 08752021 n 0000 | a native or inhabitant of the Dominican Republic -10025060 18 n 04 dominus 0 dominie 0 domine 0 dominee 0 001 @ 09927451 n 0000 | a clergyman; especially a settled minister or parson -10025195 18 n 01 Don 1 002 @ 10127273 n 0000 ;c 06966825 n 0000 | a Spanish gentleman or nobleman -10025295 18 n 02 don 3 father 7 001 @ 10162991 n 0000 | the head of an organized crime family -10025391 18 n 01 Donatist 0 002 @ 10016103 n 0000 + 06228086 n 0101 | an adherent of Donatism -10025487 18 n 01 Don_Juan 1 002 @ 10789118 n 0000 ;r 09023321 n 0000 | any successful womanizer (after the legendary profligate Spanish nobleman) -10025635 18 n 01 donna 0 002 @ 10787470 n 0000 ;c 06964247 n 0000 | an Italian woman of rank -10025730 18 n 05 donor 0 giver 0 presenter 0 bestower 0 conferrer 0 012 @ 09608709 n 0000 + 02200686 v 0303 + 02200686 v 0201 + 02199590 v 0201 ~ 09754633 n 0000 ~ 09785580 n 0000 ~ 10203682 n 0000 ~ 10421956 n 0000 ~ 10584021 n 0000 ~ 10670310 n 0000 ~ 10670885 n 0000 ~ 10712573 n 0000 | person who makes a gift of property -10026058 18 n 01 donor 1 004 @ 09608709 n 0000 ;c 06043075 n 0000 ~ 09860813 n 0000 ~ 10382597 n 0000 | (medicine) someone who gives blood or tissue or an organ to be used in another person (the host) -10026261 18 n 01 Don_Quixote 0 001 @ 10196965 n 0000 | any impractical idealist (after Cervantes' hero) -10026367 18 n 01 don't-know 0 002 @ 10213180 n 0000 ;u 07075172 n 0000 | a person who responds `I don't know' in a public opinion poll; "70% in favor, 13% opposed and 17% don't-knows" -10026553 18 n 07 doorkeeper 0 doorman 0 door_guard 0 hall_porter 0 porter 2 gatekeeper 0 ostiary 0 004 @ 10150071 n 0000 ~ 09942871 n 0000 ~ 10358032 n 0000 ~ 10710259 n 0000 | someone who guards an entrance -10026763 18 n 03 doorkeeper 2 ostiary 1 ostiarius 0 002 @ 09927451 n 0000 @ 13950812 n 0000 | the lowest of the minor Holy Orders in the unreformed Western Church but now suppressed by the Roman Catholic Church -10026976 18 n 02 dosser 0 street_person 0 002 @ 10723300 n 0000 + 00017674 v 0101 | someone who sleeps in any convenient place -10027105 18 n 01 dotard 0 002 @ 10376523 n 0000 + 02697610 v 0101 | an oldster in his dotage; someone whose age has impaired his intellect -10027246 18 n 03 double 0 image 0 look-alike 0 002 @ 00007846 n 0000 ~ 10531557 n 0000 | someone who closely resembles a famous person (especially an actor); "he could be Gingrich's double"; "she's the very image of her mother" -10027476 18 n 01 double_agent 1 001 @ 10641755 n 0000 | a spy who works for two mutually antagonistic countries -10027590 18 n 05 double-crosser 0 double-dealer 0 two-timer 0 betrayer 0 traitor 1 004 @ 09998101 n 0000 + 00854420 v 0402 + 02537812 v 0101 ~ 10225118 n 0000 | a person who says one thing and does another -10027798 18 n 01 double_dipper 0 001 @ 10041887 n 0000 | someone who draws two incomes from the government (usually by combining a salary and a pension) -10027953 18 n 01 doubting_Thomas 1 001 @ 10604634 n 0000 | someone who demands physical evidence in order to be convinced (especially when this demand is out of place) -10028123 18 n 02 dove 0 peacenik 0 002 @ 10390199 n 0000 ! 10162644 n 0101 | someone who prefers negotiations to armed conflict in the conduct of foreign relations -10028289 18 n 01 dowager 0 001 @ 10780284 n 0000 | a widow holding property received from her deceased husband -10028402 18 n 01 down-and-out 0 002 @ 10453357 n 0000 + 02334436 a 0101 | a person who is destitute; "he tried to help the down-and-out" -10028541 18 n 01 doyenne 0 001 @ 10048218 n 0000 | a woman who is the senior member of a group -10028638 18 n 02 draft_dodger 0 draft_evader 0 001 @ 10006842 n 0000 | someone who is drafted and illegally refuses to serve -10028765 18 n 03 draftee 0 conscript 0 inductee 0 006 @ 10582746 n 0000 ;c 08199025 n 0000 + 02384275 v 0301 + 01098706 v 0201 + 01097500 v 0102 ! 10759331 n 0101 | someone who is drafted into military service -10028977 18 n 01 drafter 0 002 @ 10794014 n 0000 + 01701634 v 0101 | a writer of a draft -10029068 18 n 02 draftsman 1 drawer 0 007 @ 09812338 n 0000 + 01643464 v 0201 + 01690294 v 0201 + 00935940 n 0102 ~ 09898346 n 0000 ~ 10409161 n 0000 ~ 10604880 n 0000 | an artist skilled at drawing -10029269 18 n 03 draftsman 0 draughtsman 0 draftsperson 0 002 @ 10605985 n 0000 + 00935940 n 0102 | a skilled worker who draws plans of buildings or machines -10029429 18 n 01 dragoman 0 001 @ 10212501 n 0000 | an interpreter and guide in the Near East; in the Ottoman Empire in the 18th and 19th centuries a translator of European languages for the Turkish and Arab authorities and most dragomans were Greek (many reached high positions in the government) -10029729 18 n 02 dragon 1 tartar 0 001 @ 10739636 n 0000 | a fiercely vigilant and unpleasant woman -10029831 18 n 01 dragoon 0 002 @ 09902353 n 0000 + 02424533 v 0101 | a member of a European military unit formerly composed of heavily armed cavalrymen -10029985 18 n 02 redcoat 0 lobsterback 0 001 @ 10622053 n 0000 | British soldier; so-called because of his red coat (especially during the American Revolution) -10030147 18 n 02 drama_critic 0 theater_critic 0 002 @ 09979589 n 0000 ~i 11396943 n 0000 | a critic of theatrical performances -10030277 18 n 02 dramatist 0 playwright 0 097 @ 10794014 n 0000 + 07007945 n 0102 + 06376154 n 0101 + 01701311 v 0102 + 01701311 v 0101 ~i 10809086 n 0000 ~i 10811228 n 0000 ~i 10817607 n 0000 ~i 10818715 n 0000 ~i 10822211 n 0000 ~i 10835022 n 0000 ~i 10839329 n 0000 ~i 10840354 n 0000 ~i 10863552 n 0000 ~i 10879155 n 0000 ~i 10881616 n 0000 ~i 10889032 n 0000 ~i 10894652 n 0000 ~i 10907103 n 0000 ~i 10911104 n 0000 ~i 10913641 n 0000 ~i 10916887 n 0000 ~i 10919598 n 0000 ~i 10928140 n 0000 ~i 10943659 n 0000 ~i 10957072 n 0000 ~i 10962712 n 0000 ~i 10973164 n 0000 ~i 10984126 n 0000 ~i 10984979 n 0000 ~i 10989977 n 0000 ~i 10993936 n 0000 ~i 10998651 n 0000 ~i 11001211 n 0000 ~i 11004106 n 0000 ~i 11005320 n 0000 ~i 11011764 n 0000 ~i 11032700 n 0000 ~i 11034596 n 0000 ~i 11037836 n 0000 ~i 11039188 n 0000 ~i 11065345 n 0000 ~i 11070644 n 0000 ~i 11071574 n 0000 ~i 11072887 n 0000 ~i 11091184 n 0000 ~i 11097625 n 0000 ~i 11107436 n 0000 ~i 11113489 n 0000 ~i 11129665 n 0000 ~i 11133387 n 0000 ~i 11143806 n 0000 ~i 11148899 n 0000 ~i 11153094 n 0000 ~i 11157719 n 0000 ~i 11159318 n 0000 ~i 11172929 n 0000 ~i 11178781 n 0000 ~i 11179923 n 0000 ~i 11184694 n 0000 ~i 11184825 n 0000 ~i 11211419 n 0000 ~i 11212120 n 0000 ~i 11215070 n 0000 ~i 11217668 n 0000 ~i 11235619 n 0000 ~i 11235787 n 0000 ~i 11236663 n 0000 ~i 11239443 n 0000 ~i 11251788 n 0000 ~i 11254950 n 0000 ~i 11259635 n 0000 ~i 11266117 n 0000 ~i 11271859 n 0000 ~i 11282286 n 0000 ~i 11289999 n 0000 ~i 11292391 n 0000 ~i 11295196 n 0000 ~i 11295936 n 0000 ~i 11297457 n 0000 ~i 11297595 n 0000 ~i 11298403 n 0000 ~i 11301129 n 0000 ~i 11308624 n 0000 ~i 11320245 n 0000 ~i 11322481 n 0000 ~i 11327744 n 0000 ~i 11335695 n 0000 ~i 11343333 n 0000 ~i 11358065 n 0000 ~i 11362195 n 0000 ~i 11379336 n 0000 ~i 11386346 n 0000 ~i 11386692 n 0000 ~i 11389481 n 0000 ~i 11399716 n 0000 ~i 11402463 n 0000 | someone who writes plays -10032190 18 n 01 draper 0 002 @ 10720453 n 0000 ~ 10263684 n 0000 | a dealer in fabrics and sewing materials (and sometimes in clothing and drygoods) -10032342 18 n 01 drawee 0 003 @ 10409752 n 0000 + 02311387 v 0102 ~ 09759684 n 0000 | the person (or bank) who is expected to pay a check or draft when it is presented for payment -10032524 18 n 01 drawer 1 002 @ 09624980 n 0000 + 02311387 v 0102 | the person who writes a check or draft instructing the drawee to pay someone else -10032676 18 n 05 drawing_card 0 draw 0 attraction 0 attractor 0 attracter 0 002 @ 09616922 n 0000 + 01505254 v 0301 | an entertainer who attracts large audiences; "he was the biggest drawing card they had" -10032884 18 n 01 drawler 0 002 @ 10630188 n 0000 + 00980176 v 0101 | someone who speaks with a drawl -10032987 18 n 01 dreamer 2 002 @ 10610465 n 0000 + 02118242 v 0101 | someone who is dreaming -10033082 18 n 02 dresser 0 actor's_assistant 0 003 @ 09815790 n 0000 + 00047945 v 0101 + 00046534 v 0101 | a wardrobe assistant for an actor -10033225 18 n 01 dresser 1 003 @ 00007846 n 0000 + 00044797 v 0101 ~ 09916109 n 0000 | a person who dresses in a particular way; "she's an elegant dresser"; "he's a meticulous dresser" -10033412 18 n 05 dressmaker 0 modiste 0 needlewoman 0 seamstress 0 sempstress 0 002 @ 10120816 n 0000 ~i 11270577 n 0000 | someone who makes or mends dresses -10033572 18 n 01 dressmaker's_model 0 001 @ 10324560 n 0000 | someone who models dresses -10033663 18 n 04 dribbler 0 driveller 1 slobberer 0 drooler 0 005 @ 00007846 n 0000 + 00102974 v 0402 + 00102974 v 0305 + 00102974 v 0201 + 00102974 v 0106 | a person who dribbles; "that baby is a dribbler; he needs a bib" -10033888 18 n 01 dribbler 1 002 @ 09842047 n 0000 + 01408760 v 0101 | a basketball player who is dribbling the ball to advance it -10034020 18 n 02 drill_master 0 drill_instructor 0 002 @ 10360747 n 0000 ;c 08199025 n 0000 | a noncommissioned officer who instructs recruits in military marching and discipline -10034201 18 n 04 drinker 0 imbiber 0 toper 0 juicer 0 016 @ 09612848 n 0000 + 01172275 v 0302 + 01539063 v 0203 + 01170052 v 0202 + 01172275 v 0101 + 01171183 v 0101 ! 09757944 n 0103 ~ 09839085 n 0000 ~ 09846894 n 0000 ~ 10037080 n 0000 ~ 10037385 n 0000 ~ 10153266 n 0000 ~ 10325957 n 0000 ~ 10526300 n 0000 ~ 10712690 n 0000 ~ 10769321 n 0000 | a person who drinks alcoholic beverages (especially to excess) -10034614 18 n 01 drinker 1 006 @ 09612848 n 0000 + 01170052 v 0101 ~ 10151957 n 0000 ~ 10497946 n 0000 ~ 10601362 n 0000 ~ 10672066 n 0000 | a person who drinks liquids -10034785 18 n 02 driveller 0 jabberer 0 002 @ 10630188 n 0000 + 01051956 v 0203 | someone whose talk is trivial drivel -10034906 18 n 01 driver 0 019 @ 10378412 n 0000 + 02408281 v 0101 + 02056971 v 0101 + 01930874 v 0101 ! 10361194 n 0101 ~ 09883362 n 0000 ~ 09908853 n 0000 ~ 10007511 n 0000 ~ 10183556 n 0000 ~ 10229721 n 0000 ~ 10334101 n 0000 ~ 10389760 n 0000 ~ 10502576 n 0000 ~ 10533780 n 0000 ~ 10634596 n 0000 ~ 10689429 n 0000 ~ 10693646 n 0000 ~ 10695192 n 0000 ~ 10703553 n 0000 | the operator of a motor vehicle -10035314 18 n 01 driver 1 002 @ 10136959 n 0000 + 01407904 v 0101 | a golfer who hits the golf ball with a driver -10035430 18 n 01 driver 2 008 @ 09632518 n 0000 + 01512259 v 0101 ~ 09910222 n 0000 ~ 09932336 n 0000 ~ 10247250 n 0000 ~ 10282374 n 0000 ~ 10695333 n 0000 ~ 10762607 n 0000 | someone who drives animals that pull a vehicle -10035655 18 n 01 dropkicker 0 002 @ 10230580 n 0000 + 01370843 v 0101 | a football kicker who drops the ball and kicks it just as it reaches the ground -10035809 18 n 04 drudge 0 peon 0 navvy 0 galley_slave 1 002 @ 10241300 n 0000 + 02419773 v 0107 | a laborer who is obliged to do menial work -10035952 18 n 03 drug_addict 0 junkie 0 junky 0 006 @ 09768830 n 0000 ~ 09933235 n 0000 ~ 09974177 n 0000 ~ 10173579 n 0000 ~ 10379278 n 0000 ~ 10785203 n 0000 | a narcotics addict -10036135 18 n 02 drug_baron 0 drug_lord 0 001 @ 10104064 n 0000 | a person who controls an organization dealing in illegal drugs -10036266 18 n 03 drug_user 0 substance_abuser 0 user 2 005 @ 00007846 n 0000 + 01165043 v 0301 ~ 09768830 n 0000 ~ 10162780 n 0000 ~ 10729923 n 0000 | a person who takes drugs -10036444 18 n 01 Druid 0 001 @ 10471250 n 0000 | a pre-Christian priest among the Celts of ancient Gaul and Britain and Ireland -10036574 18 n 01 drum_major 0 002 @ 09952539 n 0000 + 10036692 n 0101 | the leader of a marching band or drum corps -10036692 18 n 02 drum_majorette 0 majorette 0 002 @ 09952539 n 0000 + 10036574 n 0101 | a female drum major -10036802 18 n 02 drum_majorette 1 majorette 1 001 @ 09843824 n 0000 | a female baton twirler who accompanies a marching band -10036929 18 n 01 drummer 0 005 @ 10415037 n 0000 + 02174830 v 0101 + 01732532 v 0101 ~ 10734963 n 0000 ~i 11313726 n 0000 | someone who plays a drum -10037080 18 n 01 drunk 1 003 @ 10034201 n 0000 + 00797299 a 0102 ~ 10037194 n 0000 | someone who is intoxicated -10037194 18 n 01 drunk-and-disorderly 0 001 @ 10037080 n 0000 | someone arrested on the charge of being drunk and disorderly; "they delivered the drunk-and-disorderlies to the county jail" -10037385 18 n 06 drunkard 0 drunk 0 rummy 0 sot 0 inebriate 0 wino 0 006 @ 10034201 n 0000 + 01190494 v 0503 + 01190277 v 0503 + 00797299 a 0202 + 01172275 v 0101 ~ 09782167 n 0000 | a chronic drinker -10037588 18 n 02 Druze 0 Druse 0 001 @ 10016103 n 0000 | an adherent of an esoteric monotheistic religious sect living in the relative security of the mountains of Syria and Lebanon who believes that Al-hakim was an incarnation of God; "a Druze is permitted to conform outwardly to the faith of the unbelievers among whom he lives" -10037922 18 n 02 dry 0 prohibitionist 0 005 @ 10515194 n 0000 + 15294382 n 0201 + 06541820 n 0201 ~i 11201061 n 0000 ~i 11388141 n 0000 | a reformer who opposes the use of intoxicating beverages -10038119 18 n 01 dry_nurse 0 001 @ 10345100 n 0000 | a nurse who cares for but does not suckle an infant -10038226 18 n 01 dualist 0 002 @ 10016103 n 0000 + 05960698 n 0101 | an adherent of dualism -10038320 18 n 01 duce 0 001 @ 09623038 n 0000 | leader; "Mussolini was called Il Duce" -10038409 18 n 01 duchess 0 002 @ 10242791 n 0000 ~ 10141930 n 0000 | the wife of a duke or a woman holding ducal title in her own right -10038547 18 n 01 duck_hunter 0 001 @ 10193026 n 0000 | hunter of ducks -10038620 18 n 01 duke 0 005 @ 10412910 n 0000 + 14432744 n 0101 + 08557131 n 0102 + 03062754 a 0101 ~i 11087091 n 0000 | a British peer of the highest rank -10038778 18 n 01 duke 1 004 @ 10271677 n 0000 + 14432744 n 0101 + 08557131 n 0102 + 03062754 a 0101 | a nobleman (in various countries) of high rank -10038929 18 n 04 dueler 0 dueller 0 duelist 0 duellist 0 008 @ 09773245 n 0000 + 00789237 n 0401 + 01172784 n 0401 + 00789237 n 0301 + 01172784 n 0301 + 01121948 v 0301 + 01121948 v 0201 + 01121948 v 0101 | a person who fights duels -10039164 18 n 01 duenna 0 003 @ 09908273 n 0000 ;r 09023321 n 0000 ;r 08984788 n 0000 | a woman chaperon -10039271 18 n 01 duffer 0 001 @ 09931267 n 0000 | an incompetent or clumsy person; "as a golfer he was only a duffer" -10039391 18 n 06 dumbbell 0 dummy 0 dope 0 boob 0 booby 0 pinhead 0 004 @ 10599354 n 0000 + 02566227 v 0404 + 00439905 a 0302 + 00439905 a 0303 | an ignorant or foolish person -10039569 18 n 02 dummy 1 silent_person 0 001 @ 10342367 n 0000 | a person who does not talk -10039663 18 n 0d dunce 0 dunderhead 0 numskull 0 blockhead 0 bonehead 0 lunkhead 0 hammerhead 0 knucklehead 0 loggerhead 0 muttonhead 0 shithead 0 dumbass 0 fuckhead 0 001 @ 10667187 n 0000 | a stupid person; these words are used to express a low opinion of someone's intelligence -10039946 18 n 01 dunker 1 001 @ 09842047 n 0000 | a basketball player who is able to make dunk shots -10040049 18 n 01 dunker 2 001 @ 10042300 n 0000 | an eater who dips food into a liquid before eating it; "he was a dunker--he couldn't eat a doughnut without a cup of coffee to dunk it in" -10040240 18 n 01 Dutch_uncle 0 001 @ 09968845 n 0000 | a counselor who admonishes frankly and sternly -10040344 18 n 03 dwarf 0 midget 0 nanus 0 005 @ 10613505 n 0000 + 02452614 v 0101 + 02696306 v 0103 ~ 10436458 n 0000 ~ 10472447 n 0000 | a person who is markedly small -10040515 18 n 01 dyer 0 002 @ 10605985 n 0000 + 00283090 v 0101 | someone whose job is to dye cloth -10040617 18 n 01 dyslectic 0 001 @ 00007846 n 0000 | a person who has dyslexia -10040698 18 n 01 dyspeptic 0 001 @ 10595647 n 0000 | a person suffering from indigestion -10040789 18 n 02 dynamiter 0 dynamitist 0 003 @ 10527334 n 0000 + 03260293 n 0201 + 00307419 v 0101 | a person who uses dynamite in a revolutionary cause -10040945 18 n 05 eager_beaver 0 busy_bee 0 live_wire 0 sharpie 1 sharpy 1 002 @ 09767197 n 0000 ~ 10135297 n 0000 | an alert and energetic person -10041093 18 n 01 Eagle_Scout 0 001 @ 09871681 n 0000 | a Boy Scout who has earned many merit badges -10041195 18 n 03 ear_doctor 0 ear_specialist 0 otologist 0 003 @ 10632576 n 0000 + 06054700 n 0301 ~i 11174119 n 0000 | a physician who specializes in the ear and its diseases -10041373 18 n 01 earl 0 004 @ 10412910 n 0000 + 14432875 n 0101 + 08557271 n 0101 ~i 11187754 n 0000 | a British peer ranking below a marquess and above a viscount -10041539 18 n 01 Earl_Marshal 0 001 @ 10412910 n 0000 | an officer of the English peerage who organizes royal processions and other ceremonies -10041684 18 n 01 early_bird 0 001 @ 10532576 n 0000 | a person who gets up very early in the morning -10041787 18 n 01 early_bird 1 001 @ 09810166 n 0000 | a person who arrives early before others do -10041887 18 n 02 earner 0 wage_earner 0 005 @ 10222822 n 0000 + 02289295 v 0105 ~ 09873473 n 0000 ~ 10027798 n 0000 ~ 10121144 n 0000 | someone who earn wages in return for their labor -10042074 18 n 01 easterner 0 001 @ 09620078 n 0000 | an inhabitant of an eastern area; especially of the U.S. -10042186 18 n 01 East-sider 0 001 @ 09744679 n 0000 | a resident of the east side of Manhattan in New York City -10042300 18 n 02 eater 0 feeder 0 017 @ 09612848 n 0000 + 01179865 v 0201 + 01166351 v 0101 + 01168468 v 0101 ~ 10010864 n 0000 ~ 10013242 n 0000 ~ 10040049 n 0000 ~ 10132988 n 0000 ~ 10134282 n 0000 ~ 10277132 n 0000 ~ 10335679 n 0000 ~ 10343211 n 0000 ~ 10362765 n 0000 ~ 10377542 n 0000 ~ 10432189 n 0000 ~ 10561613 n 0000 ~ 10747119 n 0000 | someone who consumes food for nourishment -10042690 18 n 01 eavesdropper 0 004 @ 10617193 n 0000 @ 10165448 n 0000 + 02189714 v 0102 ~ 10691318 n 0000 | a secret listener to private conversations -10042845 18 n 05 eccentric 0 eccentric_person 0 flake 0 oddball 0 geek 0 003 @ 09606527 n 0000 ~ 09974496 n 0000 ~ 10368414 n 0000 | a person with an unusual or odd personality -10043024 18 n 02 eclectic 0 eclecticist 0 002 @ 10423589 n 0000 + 05788713 n 0201 | someone who selects according to the eclectic method -10043163 18 n 01 ecologist 0 003 @ 09855630 n 0000 + 14513062 n 0101 + 06070929 n 0101 | a biologist who studies the relation between organisms and their environment -10043331 18 n 01 economic_libertarian 0 001 @ 10257524 n 0000 | a libertarian who advocates maximizing individual rights and minimizing the role of the state -10043491 18 n 02 econometrician 0 econometrist 0 002 @ 10043643 n 0000 + 06150449 n 0101 | an economist who uses statistical and mathematical methods -10043643 18 n 02 economist 0 economic_expert 0 039 @ 10619642 n 0000 #m 08113322 n 0000 + 08366753 n 0101 + 05644727 n 0101 ~ 10043491 n 0000 ~ 10279392 n 0000 ~ 10313724 n 0000 ~ 10328123 n 0000 ~i 10850667 n 0000 ~i 10982658 n 0000 ~i 10983007 n 0000 ~i 10987358 n 0000 ~i 11035957 n 0000 ~i 11084200 n 0000 ~i 11103397 n 0000 ~i 11109027 n 0000 ~i 11113266 n 0000 ~i 11114285 n 0000 ~i 11121451 n 0000 ~i 11128834 n 0000 ~i 11152856 n 0000 ~i 11160457 n 0000 ~i 11170604 n 0000 ~i 11179287 n 0000 ~i 11185680 n 0000 ~i 11198861 n 0000 ~i 11222457 n 0000 ~i 11259457 n 0000 ~i 11287570 n 0000 ~i 11300893 n 0000 ~i 11305258 n 0000 ~i 11333071 n 0000 ~i 11342905 n 0000 ~i 11344235 n 0000 ~i 11352192 n 0000 ~i 11362022 n 0000 ~i 11374281 n 0000 ~i 11377851 n 0000 ~i 11396000 n 0000 | an expert in the science of economics -10044470 18 n 02 economizer 0 economiser 0 006 @ 10553627 n 0000 + 02357228 v 0203 + 02269143 v 0204 + 02357228 v 0102 + 02269143 v 0103 ~ 10656832 n 0000 | a frugal person who limits spending and avoids waste -10044682 18 n 01 ectomorph 0 001 @ 00007846 n 0000 | a person with a thin body -10044763 18 n 01 edger 0 002 @ 10351281 n 0000 + 02361600 v 0102 | a person who puts finishing edges on a garment -10044879 18 n 02 editor 0 editor_in_chief 0 015 @ 10605985 n 0000 + 02717402 a 0101 + 00592102 n 0101 + 00200397 v 0101 ~ 09796062 n 0000 ~ 09811281 n 0000 ~ 09964659 n 0000 ~ 10045361 n 0000 ~ 10073992 n 0000 ~ 10289534 n 0000 ~ 10356450 n 0000 ~ 10513120 n 0000 ~i 10859669 n 0000 ~i 10891428 n 0000 ~i 11062963 n 0000 | a person responsible for the editorial aspects of publication; the person who determines the final content of a text (especially of a newspaper or magazine) -10045361 18 n 01 subeditor 0 002 @ 10044879 n 0000 + 00628125 v 0102 | an assistant editor -10045454 18 n 02 educationist 0 educationalist 0 009 @ 10631941 n 0000 + 05753564 n 0201 + 05984287 n 0201 + 00611433 n 0201 + 00883297 n 0201 + 05753564 n 0101 + 05984287 n 0101 + 00611433 n 0101 + 00883297 n 0101 | a specialist in the theory of education -10045713 18 n 03 educator 0 pedagogue 0 pedagog 0 031 @ 10480253 n 0000 + 02387486 v 0101 ~ 09759069 n 0000 ~ 10252222 n 0000 ~ 10474645 n 0000 ~ 10559996 n 0000 ~ 10694258 n 0000 ~i 10850469 n 0000 ~i 10862281 n 0000 ~i 10883202 n 0000 ~i 10905568 n 0000 ~i 10932898 n 0000 ~i 10983758 n 0000 ~i 10988059 n 0000 ~i 11060103 n 0000 ~i 11068922 n 0000 ~i 11116284 n 0000 ~i 11142368 n 0000 ~i 11154174 n 0000 ~i 11169135 n 0000 ~i 11187154 n 0000 ~i 11194205 n 0000 ~i 11199234 n 0000 ~i 11216386 n 0000 ~i 11227618 n 0000 ~i 11236043 n 0000 ~i 11324428 n 0000 ~i 11375677 n 0000 ~i 11383546 n 0000 ~i 11387973 n 0000 ~i 11393546 n 0000 | someone who educates young people -10046387 18 n 01 Edwardian 0 002 @ 10639469 n 0000 + 03062990 a 0101 | someone belonging to (or as if belonging to) the era of Edward VII -10046527 18 n 02 effecter 0 effector 0 004 @ 00007846 n 0000 + 02560767 v 0201 + 02560767 v 0101 + 01642924 v 0101 | one who brings about a result or event; one who accomplishes a purpose -10046717 18 n 02 efficiency_expert 0 efficiency_engineer 0 001 @ 09617867 n 0000 | an expert in increasing the efficient use of machines and personnel -10046870 18 n 02 egalitarian 0 equalitarian 0 003 @ 10330931 n 0000 + 00715677 a 0102 ! 10050558 n 0101 | a person who believes in the equality of all people -10047030 18 n 01 egghead 0 001 @ 09621545 n 0000 | an intellectual; a very studious and academic person; "in spite of her love of reading she denied being an egghead" -10047199 18 n 02 egocentric 0 egoist 0 004 @ 10576962 n 0000 + 00101800 a 0201 + 04835028 n 0201 + 00101800 a 0103 | a self-centered person with little regard for others -10047371 18 n 01 egomaniac 0 001 @ 10047459 n 0000 | an abnormally egotistical person -10047459 18 n 03 egotist 0 egoist 1 swellhead 0 015 @ 09631463 n 0000 + 00101800 a 0201 + 04835028 n 0201 + 01891773 a 0102 + 02098694 a 0102 + 01891773 a 0103 + 07508806 n 0102 + 04887497 n 0101 ~ 09872066 n 0000 ~ 10047371 n 0000 ~ 10070711 n 0000 ~ 10240235 n 0000 ~ 10306496 n 0000 ~ 10315730 n 0000 ~ 10454645 n 0000 | a conceited and self-centered person -10047822 18 n 01 Egyptologist 0 005 @ 09804806 n 0000 + 06144855 n 0101 ~i 10885006 n 0000 ~i 10890211 n 0000 ~i 11403828 n 0000 | an archeologist who specializes in Egyptology -10048001 18 n 01 ejaculator 0 002 @ 10630188 n 0000 + 00981944 v 0105 | a speaker who utters a sudden exclamation -10048117 18 n 01 ejaculator 1 002 @ 10287213 n 0000 + 00055010 v 0101 | a man who ejaculates semen -10048218 18 n 02 elder 0 senior 1 004 @ 09605289 n 0000 + 02100031 a 0101 ~ 09997068 n 0000 ~ 10028541 n 0000 | a person who is older than you are -10048367 18 n 01 elder 1 003 @ 09922799 n 0000 + 00592199 n 0101 ~ 10465831 n 0000 | any of various church officers -10048485 18 n 01 elder_statesman 0 001 @ 10650162 n 0000 | an elderly statesman whose advice is sought be government leaders -10048612 18 n 01 elder_statesman 1 001 @ 10200781 n 0000 | any influential person whose advice is highly respected -10048729 18 n 02 eldest_hand 0 elder_hand 0 001 @ 09894654 n 0000 | the card player on the dealer's left -10048836 18 n 01 elected_official 0 005 @ 10372373 n 0000 ~ 10244108 n 0000 ~ 10260322 n 0000 ~ 10576676 n 0000 ~ 10576818 n 0000 | official who won the office in a free election -10049017 18 n 01 electrical_engineer 0 012 @ 09615807 n 0000 ~i 10875681 n 0000 ~i 10927424 n 0000 ~i 10938019 n 0000 ~i 11037495 n 0000 ~i 11101250 n 0000 ~i 11156122 n 0000 ~i 11299770 n 0000 ~i 11302224 n 0000 ~i 11315580 n 0000 ~i 11336850 n 0000 ~i 11340642 n 0000 | a person trained in practical applications of the theory of electricity -10049363 18 n 03 electrician 0 lineman 1 linesman 0 002 @ 10605985 n 0000 ~ 10117154 n 0000 | a person who installs or repairs electrical or telephone lines -10049522 18 n 01 electrocutioner 0 001 @ 10069427 n 0000 | an executioner who uses electricity to kill the condemned person -10049648 18 n 01 electrologist 0 001 @ 10165109 n 0000 | someone skilled in the use of electricity to remove moles or warts or hair roots -10049788 18 n 01 electroplater 0 002 @ 10439203 n 0000 + 01395782 v 0101 | a plater who uses electrolysis -10049896 18 n 01 electrotherapist 0 002 @ 10707233 n 0000 + 00662681 n 0101 | someone who specializes in the treatment of disease by electricity -10050043 18 n 01 elegist 0 002 @ 10444194 n 0000 + 06379568 n 0101 | the author of a mournful poem lamenting the dead -10050163 18 n 01 elevator_girl 0 001 @ 10050432 n 0000 | a girl employed to operate an elevator -10050261 18 n 03 elevator_man 0 elevator_boy 0 liftman 0 001 @ 10050432 n 0000 | a man employed to operate an elevator; "in England they call an elevator man a liftman" -10050432 18 n 01 elevator_operator 0 003 @ 10378412 n 0000 ~ 10050163 n 0000 ~ 10050261 n 0000 | an operator of an elevator -10050558 18 n 01 elitist 0 004 @ 10330931 n 0000 + 06217657 n 0101 ! 10046870 n 0101 ~ 10289863 n 0000 | someone who believes in rule by an elite group -10050712 18 n 01 Elizabethan 0 002 @ 00007846 n 0000 + 03031400 a 0101 | a person who lived during the reign of Elizabeth I; "William Shakespeare was an Elizabethan" -10050880 18 n 01 elocutionist 0 002 @ 10380672 n 0000 + 07083246 n 0101 | a public speaker trained in voice production and gesture and delivery -10051026 18 n 02 emancipator 0 manumitter 0 003 @ 10257221 n 0000 + 02496498 v 0201 + 02496498 v 0102 | someone who frees others from bondage; "Lincoln is known as the Great Emancipator" -10051215 18 n 01 embalmer 0 002 @ 10331841 n 0000 + 02226981 v 0101 | a mortician who treats corpses with preservatives -10051337 18 n 03 embezzler 0 defalcator 0 peculator 0 005 @ 10707804 n 0000 @ 09998101 n 0000 + 02292535 v 0303 + 02292535 v 0202 + 02292535 v 0101 | someone who violates a trust by taking (money) for his own use -10051552 18 n 01 embroiderer 0 003 @ 10351281 n 0000 + 01667607 v 0101 ~ 10051683 n 0000 | someone who ornaments with needlework -10051683 18 n 01 embroideress 0 001 @ 10051552 n 0000 | a woman embroiderer -10051761 18 n 01 embryologist 0 001 @ 10632576 n 0000 | a physician who specializes in embryology -10051861 18 n 01 emeritus 0 001 @ 10525617 n 0000 | a professor or minister who is retired from assigned duties -10051975 18 n 04 emigrant 0 emigre 0 emigree 0 outgoer 0 002 @ 10314952 n 0000 + 00416135 v 0101 | someone who leaves one country to settle in another -10052128 18 n 01 Emile 0 001 @i 09587565 n 0000 | the boy whose upbringing was described by Jean-Jacques Rousseau -10052244 18 n 01 eminence_grise 0 002 @ 10200781 n 0000 ;u 06964901 n 0000 | (French) a person who exercises power or influence in certain areas without holding an official position; "the President's wife is an eminence grise in matters of education" -10052497 18 n 04 emir 0 amir 0 emeer 0 ameer 0 004 @ 10541229 n 0000 ;r 09189411 n 0000 ;r 08847694 n 0000 ~i 11217789 n 0000 | an independent ruler or chieftain (especially in Africa or Arabia) -10052694 18 n 02 emissary 0 envoy 1 002 @ 10522035 n 0000 ~ 10253479 n 0000 | someone sent on a mission to represent the interests of someone else -10052843 18 n 01 emotional_person 0 004 @ 00007846 n 0000 ! 10658867 n 0102 ~ 09893600 n 0000 ~ 10636746 n 0000 | a person subject to strong states of emotion -10053004 18 n 01 emperor 0 020 @ 10628644 n 0000 + 01591394 a 0101 ~ 10053439 n 0000 ~ 10181137 n 0000 ~ 10229338 n 0000 ~ 10315217 n 0000 ~ 10537240 n 0000 ~ 10537708 n 0000 ~i 10977881 n 0000 ~i 10994308 n 0000 ~i 11022309 n 0000 ~i 11051822 n 0000 ~i 11095123 n 0000 ~i 11112058 n 0000 ~i 11171157 n 0000 ~i 11187601 n 0000 ~i 11200276 n 0000 ~i 11200492 n 0000 ~i 11250581 n 0000 ~i 11294834 n 0000 | the male ruler of an empire -10053439 18 n 01 empress 0 004 @ 10053004 n 0000 ~i 10887290 n 0000 ~i 10887420 n 0000 ~i 11365857 n 0000 | a woman emperor or the wife of an emperor -10053591 18 n 01 empiricist 0 002 @ 10423589 n 0000 + 05970311 n 0101 | a philosopher who subscribes to empiricism -10053708 18 n 01 employable 0 001 @ 09632518 n 0000 | a person who is qualified and ready to work -10053808 18 n 01 employee 0 043 @ 09632518 n 0000 + 02409412 v 0103 ! 10054657 n 0101 ~ 09841188 n 0000 ~ 09928451 n 0000 ~ 09946437 n 0000 ~ 09964805 n 0000 ~ 09965021 n 0000 ~ 09977082 n 0000 ~ 10001217 n 0000 ~ 10013614 n 0000 ~ 10017422 n 0000 ~ 10023129 n 0000 ~ 10096855 n 0000 ~ 10097262 n 0000 ~ 10120671 n 0000 ~ 10121714 n 0000 ~ 10135197 n 0000 ~ 10170060 n 0000 ~ 10170172 n 0000 ~ 10176913 n 0000 ~ 10222822 n 0000 ~ 10264120 n 0000 ~ 10268422 n 0000 ~ 10371330 n 0000 ~ 10383094 n 0000 ~ 10455305 n 0000 ~ 10460033 n 0000 ~ 10491136 n 0000 ~ 10517137 n 0000 ~ 10548681 n 0000 ~ 10550252 n 0000 ~ 10640195 n 0000 ~ 10640327 n 0000 ~ 10644598 n 0000 ~ 10645392 n 0000 ~ 10657681 n 0000 ~ 10682713 n 0000 ~ 10714684 n 0000 ~ 10722758 n 0000 ~ 10733225 n 0000 ~ 10735173 n 0000 ~ 10791221 n 0000 | a worker who is hired to perform a job -10054657 18 n 01 employer 0 008 @ 09623038 n 0000 + 02409412 v 0103 ! 10053808 n 0101 ~ 09867956 n 0000 ~ 10298647 n 0000 ~ 10323634 n 0000 ~ 10390698 n 0000 ~ 10609960 n 0000 | a person or firm that employs workers -10054875 18 n 01 employment_agent 0 001 @ 09777353 n 0000 | someone who runs an employment agency -10054975 18 n 01 empty_nester 0 001 @ 10399491 n 0000 | a parent whose children have grown up and left home -10055085 18 n 01 enchanter 0 002 @ 10625860 n 0000 + 00776988 v 0105 | a sorcerer or magician -10055181 18 n 03 conjurer 0 conjuror 0 conjure_man 0 001 @ 10784544 n 0000 | a witch doctor who practices conjury -10055297 18 n 02 enchantress 0 witch 0 002 @ 10370381 n 0000 + 00776988 v 0204 | a female sorcerer or magician -10055410 18 n 05 enchantress 1 temptress 0 siren 0 Delilah 1 femme_fatale 0 001 @ 10787470 n 0000 | a woman who is considered to be dangerously seductive -10055566 18 n 02 encyclopedist 0 encyclopaedist 0 003 @ 09946957 n 0000 + 05985999 n 0207 + 05985999 n 0106 | a person who compiles information for encyclopedias -10055730 18 n 01 endomorph 0 002 @ 00007846 n 0000 ~ 10491998 n 0000 | a heavy person with a soft and rounded body -10055847 18 n 04 enemy 0 foe 1 foeman 0 opposition 0 004 @ 09773245 n 0000 #m 08190482 n 0000 ;c 08199025 n 0000 ~ 09850974 n 0000 | an armed adversary (especially a member of an opposing military force); "a soldier must be prepared to kill his enemies" -10056103 18 n 05 energizer 0 energiser 0 vitalizer 0 vitaliser 0 animator 1 008 @ 09767197 n 0000 + 00192836 v 0505 + 00164816 v 0402 + 00164816 v 0301 + 00559102 v 0203 + 00022686 v 0205 + 00559102 v 0102 + 00022686 v 0104 | someone who imparts energy and vitality and spirit to other people -10056398 18 n 01 end 0 004 @ 10263411 n 0000 ;c 00468480 n 0000 ~ 10637483 n 0000 ~ 10710778 n 0000 | (football) the person who plays at one end of the line of scrimmage; "the end managed to hold onto the pass" -10056611 18 n 01 end_man 0 002 @ 09763784 n 0000 #m 08431942 n 0000 | a man at one end of a row of people -10056719 18 n 02 end_man 1 corner_man 0 002 @ 10321474 n 0000 #m 08189371 n 0000 | a man at one end of line of performers in a minstrel show; carries on humorous dialogue with the interlocutor -10056914 18 n 01 endocrinologist 0 003 @ 10632576 n 0000 + 06049850 n 0101 ~i 11353078 n 0000 | physician who specializes in the diagnosis and treatment of conditions affecting the endocrine system -10057114 18 n 01 endodontist 0 003 @ 10004282 n 0000 + 06048184 n 0102 + 06048184 n 0101 | a dentist specializing in diseases of the dental pulp and nerve -10057271 18 n 02 endorser 1 indorser 1 004 @ 10597234 n 0000 + 00997794 v 0202 + 00997794 v 0101 ~ 09760735 n 0000 | a person who transfers his ownership interest in something by signing a check or negotiable security -10057491 18 n 01 end_user 0 001 @ 10741590 n 0000 | the ultimate user for which something is intended -10057595 18 n 01 enfant_terrible 0 001 @ 09957834 n 0000 | a person whose unconventional behavior embarrasses others -10057714 18 n 04 engineer 1 locomotive_engineer 0 railroad_engineer 0 engine_driver 0 004 @ 10378412 n 0000 + 03684823 n 0102 + 03287733 n 0101 ~i 11090631 n 0000 | the operator of a railway locomotive -10057918 18 n 02 English_teacher 0 English_professor 0 001 @ 10694258 n 0000 | someone who teaches English -10058027 18 n 01 engraver 0 002 @ 10475687 n 0000 + 01749790 v 0101 | a printmaker who prints from an engraved printing plate -10058155 18 n 01 engraver 1 007 @ 10605985 n 0000 + 01321895 v 0102 ~ 10246511 n 0000 ~i 10945977 n 0000 ~i 11055612 n 0000 ~i 11056195 n 0000 ~i 11154857 n 0000 | a skilled worker who can inscribe designs or writing onto a surface by carving or etching -10058411 18 n 01 enjoyer 0 004 @ 00007846 n 0000 + 01828736 v 0102 + 01820302 v 0101 + 01190948 v 0102 | a person who delights in having or using or experiencing something -10058585 18 n 01 enlisted_man 0 006 @ 10058777 n 0000 #m 08398179 n 0000 ~ 09808794 n 0000 ~ 09910084 n 0000 ~ 10476467 n 0000 ~ 10512372 n 0000 | a male enlisted person in the armed forces -10058777 18 n 01 enlisted_person 0 005 @ 10582746 n 0000 ~ 10058585 n 0000 ~ 10058962 n 0000 ~ 10237556 n 0000 ~ 10622053 n 0000 | a serviceman who ranks below a commissioned officer -10058962 18 n 01 enlisted_woman 0 001 @ 10058777 n 0000 | a female enlisted person in the armed forces -10059067 18 n 02 enophile 0 oenophile 0 001 @ 09802445 n 0000 | someone who appreciates wine -10059162 18 n 01 enrollee 0 003 @ 00007846 n 0000 + 02471327 v 0101 ~ 10665698 n 0000 | a person who enrolls in (or is enrolled in) a class or course of study -10059323 18 n 05 ENT_man 0 ear-nose-and-throat_doctor 0 otolaryngologist 0 otorhinolaryngologist 0 rhinolaryngologist 0 004 @ 10632576 n 0000 + 06062842 n 0501 + 06062842 n 0402 + 06062842 n 0303 | a specialist in the disorders of the ear or nose or throat -10059582 18 n 03 enthusiast 0 partisan 1 partizan 0 011 @ 10677713 n 0000 + 00730731 a 0302 + 00730731 a 0201 + 06201136 n 0202 ~ 09769076 n 0000 ~ 09831166 n 0000 ~ 09835153 n 0000 ~ 10077879 n 0000 ~ 10117017 n 0000 ~ 10594634 n 0000 ~ 10639925 n 0000 | an ardent and enthusiastic supporter of some person or activity -10059904 18 n 03 entomologist 0 bugologist 0 bug-hunter 0 004 @ 10806222 n 0000 + 06072275 n 0101 ~ 10254761 n 0000 ~i 11391379 n 0000 | a zoologist who studies insects -10060075 18 n 01 entrant 0 002 @ 09613191 n 0000 + 01082606 v 0101 | one who enters a competition -10060175 18 n 01 entrant 2 003 @ 09629752 n 0000 + 02016523 v 0101 ~ 10213652 n 0000 | someone who enters; "new entrants to the country must go though immigration procedures" -10060352 18 n 02 entrepreneur 0 enterpriser 0 008 @ 09882716 n 0000 + 08056231 n 0201 + 04836074 n 0201 + 00796886 n 0201 + 00885288 a 0101 + 03064382 a 0101 ~i 10991936 n 0000 ~i 11302224 n 0000 | someone who organizes a business venture and assumes the risk for it -10060621 18 n 02 environmentalist 0 conservationist 0 008 @ 10515194 n 0000 + 07419599 n 0201 + 00819274 n 0201 + 00276189 n 0101 ~ 10060904 n 0000 ~ 10727623 n 0000 ~i 10884597 n 0000 ~i 11374281 n 0000 | someone who works to protect the environment from destruction or pollution -10060904 18 n 01 Green 0 003 @ 10060621 n 0000 #m 08260386 n 0000 + 03069937 a 0101 | an environmentalist who belongs to the Green Party -10061043 18 n 03 envoy 0 envoy_extraordinary 0 minister_plenipotentiary 0 001 @ 10013927 n 0000 | a diplomat having less authority than an ambassador -10061195 18 n 01 enzymologist 0 002 @ 09854915 n 0000 + 06080192 n 0101 | a person who is trained in or engaged in enzymology -10061323 18 n 01 eparch 0 001 @ 10140314 n 0000 | the governor or prefect of an eparchy in ancient Greece -10061431 18 n 01 eparch 1 001 @ 09857200 n 0000 | a bishop or metropolitan in charge of an eparchy in the Eastern Church -10061554 18 n 01 Ephesian 0 001 @ 09710164 n 0000 | a resident of the ancient Greek city of Ephesus -10061656 18 n 06 epicure 0 gourmet 0 gastronome 0 bon_vivant 0 epicurean 0 foodie 0 003 @ 09629246 n 0000 + 01298884 a 0503 + 01298884 a 0103 | a person devoted to refined sensuous enjoyment (especially good food and drink) -10061882 18 n 01 epidemiologist 0 002 @ 10306004 n 0000 + 06050024 n 0101 | a medical scientist who studies the transmission and control of epidemic diseases -10062042 18 n 02 epigone 0 epigon 0 001 @ 09964411 n 0000 | an inferior imitator of some distinguished writer or artist of musician -10062176 18 n 01 epileptic 0 002 @ 10595647 n 0000 + 02945660 a 0101 | a person who has epilepsy -10062275 18 n 01 Episcopalian 0 002 @ 09679316 n 0000 #m 08088472 n 0000 | a member of the Episcopal church -10062385 18 n 01 epistemologist 0 002 @ 10423589 n 0000 + 06166748 n 0101 | a specialist in epistemology -10062492 18 n 01 equerry 1 001 @ 09821831 n 0000 | a personal attendant of the British royal family -10062594 18 n 01 equerry 0 001 @ 10372373 n 0000 | an official charged with the care of the horses of princes or nobles -10062716 18 n 01 erotic 0 001 @ 09629246 n 0000 | an erotic person -10062785 18 n 01 escalader 0 002 @ 09929298 n 0000 + 01922576 v 0101 | someone who gains access by the use of ladders -10062905 18 n 01 escapee 0 002 @ 10114897 n 0000 + 02074677 v 0101 | someone who escapes -10062996 18 n 03 escapist 0 dreamer 0 wishful_thinker 0 004 @ 09993901 n 0000 + 01637633 v 0201 + 00429440 n 0102 + 02599004 v 0101 | a person who escapes into a world of fantasy -10063177 18 n 02 escapologist 0 escape_expert 0 003 @ 10280674 n 0000 + 06248214 n 0101 ~i 11061317 n 0000 | an entertainer who is expert in the art of escaping -10063340 18 n 01 eschatologist 0 002 @ 10705615 n 0000 + 06183162 n 0101 | a theologian who specializes in eschatology -10063461 18 n 01 escort 2 005 @ 09821831 n 0000 ~ 09938449 n 0000 ~ 10183931 n 0000 ~ 10319313 n 0000 ~ 10741821 n 0000 | an attendant who is employed to accompany someone -10063635 18 n 03 Eskimo 0 Esquimau 0 Inuit 0 001 @ 09645091 n 0000 | a member of a people inhabiting the Arctic (northern Canada or Greenland or Alaska or eastern Siberia); the Algonquians called them Eskimo (`eaters of raw flesh') but they call themselves the Inuit (`the people') -10063919 18 n 01 espionage_agent 0 001 @ 10641755 n 0000 | someone employed to spy on another country or business competitor -10064046 18 n 02 Esquire 1 Esq 0 002 @ 10287213 n 0000 ;r 08860123 n 0000 | a title of respect for a member of the English gentry ranking just below a knight; placed after the name -10064229 18 n 01 esquire 0 003 @ 09821831 n 0000 ;r 08871007 n 0000 ;c 15259284 n 0000 | (Middle Ages) an attendant and shield bearer to a knight; a candidate for knighthood -10064405 18 n 02 essayist 0 litterateur 0 003 @ 10794014 n 0000 + 06409562 n 0101 ~i 11115029 n 0000 | a writer of literary works -10064537 18 n 02 esthete 0 aesthete 0 001 @ 09956387 n 0000 | one who professes great sensitivity to the beauty of art and nature -10064669 18 n 02 esthetician 0 aesthetician 0 003 @ 10423589 n 0000 + 06161223 n 0201 + 06161223 n 0102 | a philosopher who specializes in the nature of beauty -10064831 18 n 02 esthetician 1 aesthetician 1 001 @ 10605985 n 0000 | a worker skilled in giving beauty treatments (manicures and facials etc.) -10064977 18 n 01 etcher 0 002 @ 09812338 n 0000 + 01750421 v 0101 | someone who etches -10065066 18 n 02 ethicist 0 ethician 0 006 @ 10423589 n 0000 + 09183693 n 0202 + 06159473 n 0201 + 09183693 n 0102 + 06159473 n 0101 + 05961429 n 0101 | a philosopher who specializes in ethics -10065261 18 n 01 ethnarch 0 002 @ 10541229 n 0000 ~i 11150809 n 0000 | the ruler of a province (as in the Roman Empire and Byzantine Empire) or certain religious rulers with secular authority; "the election of Makarios III to archbishop gave him the status of the ethnarch of Cyprus" -10065547 18 n 01 ethnic 0 001 @ 00007846 n 0000 | a person who is a member of an ethnic group -10065643 18 n 01 ethnographer 0 002 @ 09796323 n 0000 + 06146546 n 0101 | an anthropologist who does ethnography -10065758 18 n 01 ethnologist 0 004 @ 09796323 n 0000 + 06146880 n 0101 ~i 11254393 n 0000 ~i 11286117 n 0000 | an anthropologist who studies ethnology -10065911 18 n 01 ethologist 0 002 @ 10806222 n 0000 + 06072619 n 0101 | a zoologist who studies the behavior of animals in their natural habitats -10066059 18 n 02 etiologist 0 aetiologist 0 003 @ 10011074 n 0000 + 07327608 n 0202 + 07327608 n 0101 | a specialist in the etiology of diseases -10066206 18 n 01 Etonian 0 001 @ 10665698 n 0000 | a student enrolled in (or graduated from) Eton College -10066314 18 n 01 etymologist 0 003 @ 10256080 n 0000 + 06514621 n 0101 + 06168855 n 0101 | a lexicographer who specializes in etymology -10066452 18 n 02 eunuch 0 castrate 0 002 @ 10287213 n 0000 + 00060833 v 0202 | a man who has been castrated and is incapable of reproduction; "eunuchs guarded the harem" -10066624 18 n 01 evacuee 0 001 @ 10314952 n 0000 | a person who has been evacuated from a dangerous place -10066732 18 n 02 evaluator 0 judge 1 010 @ 09824361 n 0000 + 00650135 a 0202 + 00593944 n 0201 + 00672433 v 0205 + 00670261 v 0203 + 00672277 v 0201 + 00681429 v 0102 ~ 09802050 n 0000 ~ 09803429 n 0000 ~ 09979321 n 0000 | an authority who is able to estimate worth or quality -10067011 18 n 04 evangelist 0 revivalist 0 gospeler 0 gospeller 0 010 @ 10464178 n 0000 + 06231191 n 0201 + 02923281 a 0101 + 07244613 n 0101 ~ 10698241 n 0000 ~i 11010385 n 0000 ~i 11169943 n 0000 ~i 11188742 n 0000 ~i 11264508 n 0000 ~i 11325534 n 0000 | a preacher of the Christian gospel -10067305 18 n 01 Evangelist 1 006 @ 09505153 n 0000 + 07244613 n 0101 ~i 11085924 n 0000 ~i 11144604 n 0000 ~i 11156943 n 0000 ~i 11164671 n 0000 | (when capitalized) any of the spiritual leaders who are assumed to be authors of the Gospels in the New Testament: Matthew, Mark, Luke, and John -10067600 18 n 01 event_planner 0 003 @ 09815790 n 0000 ;c 01124794 n 0000 ;c 08059412 n 0000 | someone who plans social events as a profession (usually for government or corporate officials) -10067793 18 n 01 everyman 0 001 @ 09610405 n 0000 | the ordinary person -10067867 18 n 01 evolutionist 0 001 @ 09848489 n 0000 | a person who believes in organic evolution -10067968 18 n 02 examiner 0 inspector 0 008 @ 10215623 n 0000 + 00593613 n 0201 + 00697062 v 0204 + 02131279 v 0101 ~ 09837981 n 0000 ~ 09912995 n 0000 ~ 10565302 n 0000 ~ 10565502 n 0000 | an investigator who observes carefully; "the examiner searched for clues" -10068234 18 n 03 examiner 1 tester 0 quizzer 0 004 @ 10207831 n 0000 + 00786458 v 0301 + 00786458 v 0202 + 02531625 v 0105 | someone who administers a test to determine your qualifications -10068425 18 n 01 exarch 0 001 @ 10751785 n 0000 | a viceroy who governed a large province in the Roman Empire -10068537 18 n 01 exarch 1 001 @ 09857200 n 0000 | a bishop in eastern Christendom who holds a place below a patriarch but above a metropolitan -10068682 18 n 01 exarch 2 001 @ 09857200 n 0000 | a bishop in one of several Eastern Orthodox Churches in North America -10068804 18 n 01 excogitator 0 002 @ 10708454 n 0000 + 01632411 v 0104 | a thinker who considers carefully and thoroughly -10068928 18 n 01 Excellency 0 001 @ 10200781 n 0000 | a title used to address dignitaries (such as ambassadors or governors); usually preceded by `Your' or `His' or `Her'; "Your Excellency" -10069120 18 n 02 exchanger 0 money_changer 0 002 @ 09624980 n 0000 + 00161225 v 0102 | one whose business is to exchange the money of one country for that of another country -10069296 18 n 01 executant 0 003 @ 10415638 n 0000 ;c 07020895 n 0000 + 01712704 v 0102 | a performer (usually of musical works) -10069427 18 n 02 executioner 0 public_executioner 0 005 @ 10231087 n 0000 + 01163779 n 0101 ~ 10049522 n 0000 ~ 10159615 n 0000 ~ 10164997 n 0000 | an official who inflicts capital punishment in pursuit of a warrant -10069645 18 n 02 executive 0 executive_director 0 006 @ 09770949 n 0000 ~ 09966255 n 0000 ~ 10320863 n 0000 ~ 10505459 n 0000 ~ 10679610 n 0000 ~ 10751265 n 0000 | a person responsible for the administration of a business -10069869 18 n 01 executive_officer 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | the officer second in command -10069981 18 n 01 executive_secretary 0 001 @ 10569744 n 0000 | a secretary having administrative duties and responsibilities -10070108 18 n 01 executive_vice_president 0 001 @ 10751265 n 0000 | a vice president holding executive power -10070219 18 n 01 executor 0 003 @ 10086074 n 0000 + 02563860 v 0101 ~ 10070377 n 0000 | a person appointed by a testator to carry out the terms of the will -10070377 18 n 01 executrix 0 001 @ 10070219 n 0000 | a woman executor -10070449 18 n 01 exegete 0 001 @ 09617867 n 0000 | a person skilled in exegesis (especially of religious texts) -10070563 18 n 03 exhibitor 0 exhibitioner 0 shower 0 002 @ 10593745 n 0000 + 02148788 v 0103 | someone who organizes an exhibit for others to see -10070711 18 n 02 exhibitionist 0 show-off 0 006 @ 10047459 n 0000 + 02141973 v 0203 + 06889701 n 0101 ~ 10143371 n 0000 ~ 10187710 n 0000 ~ 10455915 n 0000 | someone who deliberately behaves in such a way as to attract attention -10070942 18 n 02 exhibitionist 1 flasher 0 005 @ 09950457 n 0000 + 02138611 v 0201 + 02090823 a 0101 + 00737894 n 0101 ~ 10662306 n 0000 | someone with a compulsive desire to expose the genitals -10071139 18 n 02 exile 0 deportee 0 005 @ 10103485 n 0000 + 02503365 v 0203 + 02499312 v 0202 + 02724308 a 0101 + 02499312 v 0103 | a person who is expelled from home or country by authority -10071332 18 n 03 exile 1 expatriate 0 expat 0 005 @ 09757653 n 0000 ;u 08860123 n 0304 + 00416399 v 0201 ~ 10516016 n 0000 ~ 10519884 n 0000 | a person who is voluntarily absent from home or country; "American expatriates" -10071557 18 n 03 existentialist 0 existentialist_philosopher 0 existential_philosopher 0 006 @ 10423589 n 0000 + 05970755 n 0101 ~i 10839617 n 0000 ~i 10881092 n 0000 ~i 11038293 n 0000 ~i 11282286 n 0000 | a philosopher who emphasizes freedom of choice and personal responsibility but who regards human existence in a hostile universe as unexplainable -10071912 18 n 01 exodontist 0 003 @ 10004282 n 0000 + 06048373 n 0101 + 06048373 n 0102 | a dentist specializing in the extraction of teeth -10072054 18 n 02 exorcist 0 exorciser 0 003 @ 10625860 n 0000 + 01527877 v 0201 + 05978472 n 0101 | someone who practices exorcism -10072187 18 n 01 exorcist 1 001 @ 13950812 n 0000 | one of the minor orders in the unreformed Western Church but now suppressed in the Roman Catholic Church -10072346 18 n 01 expert_witness 0 002 @ 10786517 n 0000 ! 10250873 n 0101 | a witness who has knowledge not normally possessed by the average person concerning the topic that he is to testify about -10072546 18 n 02 exploiter 0 user 1 003 @ 10576962 n 0000 + 02600490 v 0201 + 01162754 v 0101 | a person who uses something or someone selfishly or unethically -10072708 18 n 02 explorer 0 adventurer 1 042 @ 00007846 n 0000 + 00796315 n 0201 + 02544348 v 0206 + 00649481 v 0101 ~ 09956780 n 0000 ~ 10019552 n 0000 ~ 10347883 n 0000 ~ 10460286 n 0000 ~i 10816223 n 0000 ~i 10837023 n 0000 ~i 10859194 n 0000 ~i 10875249 n 0000 ~i 10876798 n 0000 ~i 10877841 n 0000 ~i 10890032 n 0000 ~i 10899164 n 0000 ~i 10910769 n 0000 ~i 10913503 n 0000 ~i 10973339 n 0000 ~i 10981569 n 0000 ~i 10983503 n 0000 ~i 11024582 n 0000 ~i 11089484 n 0000 ~i 11118205 n 0000 ~i 11130940 n 0000 ~i 11135797 n 0000 ~i 11147924 n 0000 ~i 11199727 n 0000 ~i 11222655 n 0000 ~i 11227796 n 0000 ~i 11254393 n 0000 ~i 11271094 n 0000 ~i 11271349 n 0000 ~i 11286117 n 0000 ~i 11289491 n 0000 ~i 11305402 n 0000 ~i 11310081 n 0000 ~i 11313011 n 0000 ~i 11326008 n 0000 ~i 11368076 n 0000 ~i 11387060 n 0000 ~i 11387539 n 0000 | someone who travels into little known regions (especially for some scientific purpose) -10073634 18 n 01 exporter 0 002 @ 09882716 n 0000 + 02346409 v 0101 | a businessperson who transports goods abroad (for sale) -10073762 18 n 02 expositor 0 expounder 0 001 @ 09621545 n 0000 | a person who explains -10073851 18 n 01 expressionist 0 003 @ 09812338 n 0000 + 02835145 a 0101 + 08467258 n 0101 | an artist who is an adherent of expressionism -10073992 18 n 03 expurgator 0 bowdlerizer 0 bowdleriser 0 004 @ 10044879 n 0000 + 00201034 v 0302 + 00201034 v 0201 + 00201034 v 0103 | a person who edits a text by removing obscene or offensive words or passages; "Thomas Bowdler was a famous expurgator" -10074249 18 n 01 ex-spouse 0 001 @ 09605289 n 0000 | a person who was formerly a spouse -10074339 18 n 03 exterminator 0 terminator 0 eradicator 0 003 @ 10231087 n 0000 + 01662118 v 0302 + 01327582 v 0101 | someone who exterminates (especially someone whose occupation is the extermination of troublesome rodents and insects) -10074578 18 n 02 extern 0 medical_extern 0 001 @ 10020890 n 0000 | a nonresident doctor or medical student; connected with a hospital but not living there -10074735 18 n 01 extremist 0 002 @ 10503452 n 0000 + 06217806 n 0101 | a person who holds extreme views -10074841 18 n 02 extrovert 0 extravert 0 004 @ 00007846 n 0000 ;c 06136258 n 0000 + 01351637 a 0202 ! 10213429 n 0101 | (psychology) a person concerned more with practical realities than with inner thoughts and feelings -10075063 18 n 01 eyeful 0 001 @ 10787470 n 0000 | a strikingly beautiful woman; "she was a statuesque redheaded eyeful" -10075185 18 n 01 eyeglass_wearer 0 001 @ 09626589 n 0000 | a person who wears spectacles in order to see better -10075299 18 n 01 eyewitness 0 002 @ 10633450 n 0000 + 02128514 v 0101 | a spectator who can describe what happened -10075416 18 n 01 Fabian 0 002 @ 10618848 n 0000 #m 08243851 n 0000 | a member of the Fabian Society in Britain -10075529 18 n 01 fabulist 0 005 @ 10345804 n 0000 + 06757891 n 0103 + 06371413 n 0102 + 06372095 n 0101 ~i 10809223 n 0000 | a person who tells or invents fables -10075693 18 n 01 facilitator 0 002 @ 09815790 n 0000 + 00518395 v 0101 | someone who makes progress easier -10075802 18 n 01 factotum 0 001 @ 10582154 n 0000 | a servant employed to do a variety of jobs -10075899 18 n 01 faddist 0 003 @ 00007846 n 0000 + 05751173 n 0101 ~ 10100514 n 0000 | a person who subscribes to a variety of fads -10076033 18 n 0b fagot 0 faggot 0 fag 0 fairy 1 nance 0 pansy 0 queen 2 queer 0 poof 0 poove 0 pouf 0 002 @ 10122645 n 0000 ;u 06717170 n 0000 | offensive term for an openly homosexual man -10076224 18 n 01 fairy_godmother 1 001 @ 09608709 n 0000 | a generous benefactor -10076307 18 n 04 fakir 0 fakeer 0 faqir 0 faquir 0 003 @ 10546850 n 0000 @ 09682291 n 0000 ~ 10006337 n 0000 | a Muslim or Hindu mendicant monk who is regarded as a holy man -10076483 18 n 02 falangist 0 phalangist 0 001 @ 10079893 n 0000 | a Spanish member of General Franco's political party -10076604 18 n 02 falconer 0 hawker 1 003 @ 10193026 n 0000 + 01145612 v 0201 + 01145766 v 0101 | a person who breeds and trains hawks and who follows the sport of falconry -10076778 18 n 01 faller 0 002 @ 00007846 n 0000 + 01972298 v 0101 | a person who falls; "one of them was safe but they were unable to save the faller"; "a faller among thieves" -10076957 18 n 01 falsifier 0 005 @ 09998101 n 0000 + 02576921 v 0104 + 00835903 v 0101 + 00201407 v 0103 + 00202236 v 0101 | someone who falsifies -10077106 18 n 01 familiar 1 001 @ 10582154 n 0000 | a person attached to the household of a high official (as a pope or bishop) who renders service in return for support -10077278 18 n 01 family_doctor 0 001 @ 10126009 n 0000 | a general practitioner who treats all the family members -10077394 18 n 01 family_man 0 001 @ 10193967 n 0000 | a man whose family is of major importance in his life -10077504 18 n 01 famulus 0 001 @ 09821831 n 0000 | a close attendant (as to a scholar) -10077593 18 n 04 fan 0 buff 0 devotee 0 lover 1 011 @ 10099375 n 0000 #m 08223263 n 0000 + 01828736 v 0401 + 01775164 v 0401 + 00887463 v 0305 ~ 09776186 n 0000 ~ 09776807 n 0000 ~ 09789304 n 0000 ~ 09829798 n 0000 ~ 10148991 n 0000 ~ 10311995 n 0000 | an ardent follower and admirer -10077879 18 n 02 fanatic 0 fiend 1 003 @ 10059582 n 0000 + 01726859 a 0101 + 01726859 a 0102 | a person motivated by irrational enthusiasm (as for a cause); "A fanatic is one who can't change his mind and won't change the subject"--Winston Churchill -10078131 18 n 02 fancier 0 enthusiast 1 006 @ 09771435 n 0000 + 01776468 v 0101 ~ 09794426 n 0000 ~ 09856401 n 0000 ~ 10290541 n 0000 ~ 10696888 n 0000 | a person having a strong liking for something -10078333 18 n 02 fancy_man 1 paramour 1 001 @ 09622745 n 0000 | a woman's lover -10078415 18 n 01 fantasist 0 003 @ 09614315 n 0000 + 06368425 n 0101 + 05632446 n 0101 | a creator of fantasies -10078529 18 n 02 fantast 0 futurist 0 002 @ 10756433 n 0000 + 06209242 n 0201 | someone who predicts the future -10078643 18 n 01 fare 0 001 @ 10403876 n 0000 | a paying (taxi) passenger -10078719 18 n 01 farm_boy 0 001 @ 10285313 n 0000 | a boy who has grown up on a farm -10078806 18 n 04 farmer 0 husbandman 0 granger 0 sodbuster 0 017 @ 09614315 n 0000 + 10079210 n 0101 + 02420232 v 0101 + 01739814 v 0103 ~ 09613118 n 0000 ~ 09779790 n 0000 ~ 09846755 n 0000 ~ 09988392 n 0000 ~ 10104756 n 0000 ~ 10438619 n 0000 ~ 10506417 n 0000 ~ 10613387 n 0000 ~ 10613738 n 0000 ~ 10629020 n 0000 ~ 10658501 n 0000 ~ 10700840 n 0000 ~ 10711005 n 0000 | a person who operates a farm -10079210 18 n 01 farmerette 0 002 @ 10079399 n 0000 + 10078806 n 0101 | a woman working on a farm -10079310 18 n 01 farm_girl 0 001 @ 10084295 n 0000 | a girl who has grown up on a farm -10079399 18 n 04 farmhand 0 fieldhand 0 field_hand 0 farm_worker 0 010 @ 10176679 n 0000 ~ 09988216 n 0000 ~ 09988311 n 0000 ~ 10079210 n 0000 ~ 10132641 n 0000 ~ 10161363 n 0000 ~ 10431514 n 0000 ~ 10442815 n 0000 ~ 10770767 n 0000 ~ 10772937 n 0000 | a hired hand on a farm -10079677 18 n 02 farrier 0 horseshoer 0 001 @ 09859152 n 0000 | a person who shoes horses -10079769 18 n 01 Farsi 0 001 @ 09714429 n 0000 | a person of Iranian descent; "many Farsi emigrated to India near Bombay" -10079893 18 n 01 fascist 0 007 @ 10531227 n 0000 + 02920769 a 0101 + 06217944 n 0101 ~ 09859038 n 0000 ~ 10076483 n 0000 ~ 10080117 n 0000 ~ 10350220 n 0000 | an adherent of fascism or other right-wing authoritarian views -10080117 18 n 01 fascista 0 001 @ 10079893 n 0000 | an Italian fascist under Mussolini -10080206 18 n 02 fashion_consultant 0 fashionmonger 0 001 @ 09774266 n 0000 | someone who advises you about fashionable clothing -10080337 18 n 01 fastener 0 002 @ 00007846 n 0000 + 01340439 v 0101 | a person who fastens or makes fast; "he found the door fastened and wondered who the fastener was" -10080508 18 n 04 fatalist 0 determinist 0 predestinarian 0 predestinationist 0 006 @ 10350896 n 0000 + 07330666 n 0401 + 05966129 n 0401 + 05971086 n 0201 + 03065516 a 0101 + 05971394 n 0101 | anyone who submits to the belief that they are powerless to change their destiny -10080784 18 n 01 fat_cat 0 001 @ 10529231 n 0000 | a wealthy and privileged person -10080869 18 n 03 father 0 male_parent 0 begetter 0 010 @ 10399491 n 0000 + 00054628 v 0301 ! 10332385 n 0202 + 01734607 a 0101 + 00054628 v 0104 ! 10332385 n 0101 ~ 09988063 n 0000 ~ 10082043 n 0000 ~ 10375402 n 0000 ~ 10405540 n 0000 | a male parent (also used as a term of address to your father); "his father was born in Atlanta" -10081204 18 n 02 Father 1 Padre 0 002 @ 10470779 n 0000 @ 06339416 n 0000 | `Father' is a term of address for priests in some churches (especially the Roman Catholic Church or the Orthodox Catholic Church); `Padre' is frequently used in the military -10081456 18 n 01 father 5 001 @ 09623038 n 0000 | a person who holds an important or distinguished position in some organization; "the tennis fathers ruled in her favor"; "the city fathers endorsed the proposal" -10081670 18 n 02 father_figure 0 father_surrogate 0 003 @ 10287213 n 0000 ~ 10106387 n 0000 ~ 10654701 n 0000 | a man who takes over all the functions of the real father -10081842 18 n 01 father-figure 1 001 @ 10287213 n 0000 | a man (often a powerful or influential man) who arouses emotions usually felt for your real father and with whom you identify psychologically -10082043 18 n 01 father-in-law 0 002 @ 10080869 n 0000 @ 10207169 n 0000 | the father of your spouse -10082146 18 n 05 fatso 0 fatty 0 fat_person 0 roly-poly 0 butterball 0 003 @ 10247044 n 0000 ! 10708797 n 0301 + 00991838 a 0201 | a rotund individual -10082299 18 n 02 Fauntleroy 0 Little_Lord_Fauntleroy 0 001 @ 10285313 n 0000 | an excessively polite and well-dressed boy -10082423 18 n 02 Fauve 0 fauvist 0 002 @ 10391653 n 0000 + 08467871 n 0201 | a member of a group of French painters who followed fauvism -10082562 18 n 01 favorite_son 0 001 @ 09889691 n 0000 | a United States politician favored mainly in his or her home state -10082687 18 n 01 featherweight 0 001 @ 10477077 n 0000 | a professional boxer who weighs between 123 and 126 pounds -10082805 18 n 01 featherweight 1 001 @ 10793168 n 0000 | weighs 126-139 pounds -10082886 18 n 01 featherweight 2 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 126 pounds -10082997 18 n 01 federalist 0 002 @ 09774783 n 0000 + 06218162 n 0101 | an advocate of federalism -10083097 18 n 01 Federalist 1 001 @ 10450303 n 0000 | a member of a former political party in the United States that favored a strong centralized federal government -10083264 18 n 01 fellah 0 001 @ 10410996 n 0000 | an agricultural laborer in Arab countries -10083358 18 n 03 fellow 4 dude 1 buster 3 001 @ 10287213 n 0000 | an informal form of address for a man; "Say, fellow, what are you doing?"; "Hey buster, what's up?" -10083526 18 n 01 fellow 5 001 @ 10307234 n 0000 | a member of a learned society; "he was elected a fellow of the American Physiological Association" -10083677 18 n 02 fellow_traveler 1 fellow_traveller 1 001 @ 10686073 n 0000 | a communist sympathizer (but not a member of the Communist Party) -10083823 18 n 01 female_aristocrat 0 008 @ 09807754 n 0000 ! 10285135 n 0101 ~ 09987573 n 0000 ~ 10242791 n 0000 ~ 10499355 n 0000 ~ 10499857 n 0000 ~i 10933658 n 0000 ~i 10933929 n 0000 | a woman who is an aristocrat -10084043 18 n 01 female_offspring 0 004 @ 09918248 n 0000 @ 09619168 n 0000 ! 10285938 n 0101 ~ 09992837 n 0000 | a child who is female -10084181 18 n 01 female_sibling 0 003 @ 10237069 n 0000 ! 10286084 n 0101 ~ 10602985 n 0000 | a person's sister -10084295 18 n 03 female_child 0 girl 2 little_girl 0 010 @ 09619168 n 0000 + 15147330 n 0201 ! 10285313 n 0202 ! 10285313 n 0101 ~ 09890072 n 0000 ~ 10079310 n 0000 ~ 10097842 n 0000 ~ 10330835 n 0000 ~ 10559603 n 0000 ~ 10563183 n 0000 | a youthful female person; "the baby was a girl"; "the girls were just learning to ride a tricycle" -10084635 18 n 04 feminist 0 women's_rightist 0 women's_liberationist 0 libber 0 019 @ 10515194 n 0000 #m 00800421 n 0000 + 00800421 n 0303 + 00800421 n 0304 + 02839357 a 0101 + 05967773 n 0101 + 00800421 n 0102 ~ 10672662 n 0000 ~i 10839617 n 0000 ~i 10982450 n 0000 ~i 11000349 n 0000 ~i 11194062 n 0000 ~i 11226614 n 0000 ~i 11313507 n 0000 ~i 11315140 n 0000 ~i 11319570 n 0000 ~i 11350705 n 0000 ~i 11395199 n 0000 ~i 11398344 n 0000 | a supporter of feminism -10085101 18 n 01 fence 0 003 @ 10720453 n 0000 ;u 07075172 n 0000 + 02210754 v 0101 | a dealer in stolen property -10085217 18 n 02 fencer 0 swordsman 0 003 @ 09939313 n 0000 + 05640339 n 0201 + 01146918 v 0101 | someone skilled at fencing -10085344 18 n 01 fence-sitter 0 001 @ 10355142 n 0000 | a person who won't take sides in a controversy -10085449 18 n 01 ferryman 0 002 @ 09861946 n 0000 ~ 09493374 n 0000 | a man who operates a ferry -10085548 18 n 01 fetishist 0 005 @ 10419047 n 0000 + 03603958 n 0104 + 01207342 n 0101 + 05945227 n 0101 + 00738058 n 0101 | one who engages in fetishism (especially of a sexual nature) -10085736 18 n 03 feudal_lord 0 seigneur 0 seignior 0 002 @ 10388440 n 0000 ~ 10259094 n 0000 | a man of rank in the ancient regime -10085869 18 n 02 fiance 0 groom-to-be 0 001 @ 09851575 n 0000 | a man who is engaged to be married -10085970 18 n 02 fiancee 0 bride-to-be 0 001 @ 09851575 n 0000 | a woman who is engaged to be married -10086074 18 n 01 fiduciary 0 008 @ 00007846 n 0000 + 02848388 a 0101 ~ 09611722 n 0000 ~ 09770743 n 0000 ~ 10070219 n 0000 ~ 10265532 n 0000 ~ 10655442 n 0000 ~ 10732314 n 0000 | a person who holds assets in trust for a beneficiary; "it is illegal for a fiduciary to misappropriate money for personal gain" -10086383 18 n 02 fielder 1 fieldsman 0 004 @ 09977326 n 0000 + 01082290 v 0101 + 01081852 v 0101 ~ 10386874 n 0000 | a member of the cricket team that is fielding rather than batting -10086568 18 n 01 fielder 0 004 @ 09835506 n 0000 + 01081852 v 0101 ~ 10205457 n 0000 ~ 10386984 n 0000 | a member of the baseball team that is in the field instead of at bat -10086744 18 n 01 field_judge 0 001 @ 10101427 n 0000 | a football official -10086821 18 n 01 field_marshal 0 009 @ 10296176 n 0000 ;c 08199025 n 0000 ~i 11051070 n 0000 ~i 11085633 n 0000 ~i 11106479 n 0000 ~i 11113077 n 0000 ~i 11269515 n 0000 ~i 11273679 n 0000 ~i 11377315 n 0000 | an officer holding the highest rank in the army -10087080 18 n 03 field-grade_officer 0 field_officer 0 FO 0 002 @ 09943239 n 0000 ;c 08199025 n 0000 | an officer holding the rank of major or lieutenant colonel or colonel -10087255 18 n 02 fifth_columnist 0 saboteur 1 002 @ 10722965 n 0000 #m 08359753 n 0000 | a member of a clandestine subversive organization who tries to help a potential invader -10087434 18 n 01 fighter_pilot 0 003 @ 09939827 n 0000 ;c 08199025 n 0000 ~ 10023381 n 0000 | a military or naval pilot of fighter planes -10087574 18 n 03 file_clerk 0 filing_clerk 0 filer 1 002 @ 09928451 n 0000 + 01001643 v 0301 | a clerk who is employed to maintain the files of an organization -10087736 18 n 01 filer 0 003 @ 10266848 n 0000 ;c 08441203 n 0000 + 00869931 v 0103 | a party who files a notice with a law court -10087868 18 n 02 filibuster 0 filibusterer 0 004 @ 10253995 n 0000 @ 10000616 n 0000 + 02466496 v 0201 + 02466496 v 0101 | a legislator who gives long speeches in an effort to delay or obstruct legislation that he (or she) opposes -10088101 18 n 01 filicide 0 001 @ 10399491 n 0000 | a parent who murders his own son or daughter -10088200 18 n 02 film_director 0 director 4 005 @ 10088390 n 0000 ~i 10846224 n 0000 ~i 10871655 n 0000 ~i 11052299 n 0000 ~i 11321051 n 0000 | the person who directs the making of a film -10088390 18 n 04 film_maker 0 filmmaker 0 film_producer 0 movie_maker 0 052 @ 10480018 n 0000 ~ 09823927 n 0000 ~ 10088200 n 0000 ~ 10357112 n 0000 ~i 10814953 n 0000 ~i 10849323 n 0000 ~i 10881986 n 0000 ~i 10890637 n 0000 ~i 10904107 n 0000 ~i 10910305 n 0000 ~i 10930099 n 0000 ~i 10932140 n 0000 ~i 10937126 n 0000 ~i 10955483 n 0000 ~i 10968401 n 0000 ~i 10975304 n 0000 ~i 11002684 n 0000 ~i 11005571 n 0000 ~i 11016374 n 0000 ~i 11064834 n 0000 ~i 11068760 n 0000 ~i 11084409 n 0000 ~i 11104896 n 0000 ~i 11109424 n 0000 ~i 11112377 n 0000 ~i 11112907 n 0000 ~i 11124647 n 0000 ~i 11143331 n 0000 ~i 11143458 n 0000 ~i 11166877 n 0000 ~i 11240996 n 0000 ~i 11256125 n 0000 ~i 11275636 n 0000 ~i 11288818 n 0000 ~i 11292207 n 0000 ~i 11293008 n 0000 ~i 11311173 n 0000 ~i 11317309 n 0000 ~i 11319704 n 0000 ~i 11331300 n 0000 ~i 11331669 n 0000 ~i 11332572 n 0000 ~i 11349635 n 0000 ~i 11367581 n 0000 ~i 11369251 n 0000 ~i 11370554 n 0000 ~i 11374589 n 0000 ~i 11380768 n 0000 ~i 11386503 n 0000 ~i 11400490 n 0000 ~i 11404971 n 0000 ~i 11407175 n 0000 | a producer of motion pictures -10089484 18 n 02 film_star 0 movie_star 0 002 @ 10648696 n 0000 @ 10564098 n 0000 | a star who plays leading roles in the cinema -10089615 18 n 02 finagler 0 wangler 0 004 @ 09998101 n 0000 + 02576921 v 0206 + 02527431 v 0201 + 02527431 v 0102 | a deceiver who uses crafty misleading methods -10089779 18 n 01 finalist 0 001 @ 10533013 n 0000 | a contestant who reaches the final stages of a competition -10089892 18 n 02 finance_minister 0 minister_of_finance 0 001 @ 10320863 n 0000 | the minister responsible for state finances -10090020 18 n 02 financier 0 moneyman 0 020 @ 09609232 n 0000 + 02416955 v 0101 ~ 09837824 n 0000 ~ 09924195 n 0000 ~ 10474446 n 0000 ~i 10837567 n 0000 ~i 10861329 n 0000 ~i 10908534 n 0000 ~i 10912451 n 0000 ~i 11001053 n 0000 ~i 11009273 n 0000 ~i 11015420 n 0000 ~i 11030025 n 0000 ~i 11059875 n 0000 ~i 11172609 n 0000 ~i 11190446 n 0000 ~i 11191848 n 0000 ~i 11259054 n 0000 ~i 11279433 n 0000 ~i 11359187 n 0000 | a person skilled in large scale financial transactions -10090498 18 n 03 finder 0 discoverer 0 spotter 0 008 @ 09626589 n 0000 + 02154312 v 0302 + 02154508 v 0204 + 02248465 v 0101 + 02285629 v 0101 + 02154508 v 0103 + 02128873 v 0102 ~ 09934085 n 0000 | someone who is the first to observe something -10090745 18 n 01 finder 1 002 @ 10575787 n 0000 + 02285629 v 0101 | someone who comes upon something after searching -10090864 18 n 03 fingerprint_expert 0 fingerprint_specialist 0 fingerprint_man 0 001 @ 10631941 n 0000 | a specialist in identifying fingerprints -10091012 18 n 09 fink 0 snitch 0 snitcher 0 stoolpigeon 0 stool_pigeon 0 stoolie 0 sneak 0 sneaker 0 canary 1 004 @ 10206173 n 0000 + 00841986 v 0309 + 00841986 v 0209 + 00819508 v 0103 | someone acting as an informer or decoy for the police -10091256 18 n 01 fieldworker 0 001 @ 10523076 n 0000 | a researcher who works in the field -10091349 18 n 02 fire_chief 0 fire_marshal 0 001 @ 10091651 n 0000 | the head of a fire department -10091450 18 n 02 fire-eater 0 fire-swallower 0 001 @ 10415638 n 0000 | a performer who pretends to swallow fire -10091564 18 n 02 fire-eater 1 hothead 1 001 @ 10148305 n 0000 | a belligerent grouch -10091651 18 n 04 fireman 0 firefighter 0 fire_fighter 0 fire-eater 2 004 @ 09614684 n 0000 #m 08121117 n 0000 ~ 10091349 n 0000 ~ 10092098 n 0000 | a member of a fire department who tries to extinguish fires -10091861 18 n 01 fire_marshall 0 001 @ 10372373 n 0000 | an official who is responsible for the prevention and investigation of fires -10091997 18 n 01 fire_walker 0 001 @ 10415638 n 0000 | someone who walks barefoot on burning coals -10092098 18 n 03 fire_warden 0 forest_fire_fighter 0 ranger 0 003 @ 10372373 n 0000 @ 10091651 n 0000 ~ 09973749 n 0000 | an official who is responsible for managing and protecting an area of forest -10092299 18 n 01 fire_watcher 0 002 @ 10770059 n 0000 ;r 08860123 n 0000 | (during World War II in Britain) someone whose duty was to watch for fires caused by bombs dropped from the air -10092488 18 n 02 first_baseman 0 first_sacker 0 003 @ 10205457 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 | (baseball) the person who plays first base -10092643 18 n 02 firstborn 0 eldest 0 003 @ 10373998 n 0000 + 01012100 a 0202 + 01012100 a 0101 | the offspring who came first in the order of birth -10092794 18 n 01 first_lady 0 001 @ 10780632 n 0000 | the wife of a chief executive -10092880 18 n 01 first_lady 1 001 @ 09762821 n 0000 | the leading woman in an art or profession -10092978 18 n 02 first_lieutenant 0 1st_lieutenant 0 001 @ 10259348 n 0000 | a commissioned officer in the Army or Air Force or Marines ranking above a 2nd lieutenant and below a captain -10093167 18 n 01 first_offender 0 001 @ 09963159 n 0000 | someone convicted for the first time -10093264 18 n 01 first-nighter 0 001 @ 10440717 n 0000 | someone habitually a spectator at the openings of theatrical productions -10093396 18 n 01 first-rater 0 001 @ 00007846 n 0000 | one who is first-rate -10093475 18 n 02 first_sergeant 0 sergeant_first_class 0 002 @ 10580772 n 0000 ~ 10382157 n 0000 | a sergeant in the Army above the rank of staff sergeant and below master sergeant -10093658 18 n 02 fisherman 0 fisher 0 004 @ 10605985 n 0000 + 01140794 v 0201 ~ 09793946 n 0000 ~ 10727171 n 0000 | someone whose occupation is catching fish -10093818 18 n 02 fishmonger 0 fishwife 0 001 @ 10720453 n 0000 | someone who sells fish -10093908 18 n 01 fitter 0 003 @ 10689564 n 0000 + 02702830 v 0103 + 00300537 v 0101 | someone who fits a garment to a particular person -10094046 18 n 02 fixer 0 influence_peddler 0 001 @ 10200781 n 0000 | someone who intervenes with authorities for a person in trouble (usually using underhand or illegal methods for a fee) -10094236 18 n 01 flag_captain 0 001 @ 09892831 n 0000 | the captain of a flagship -10094320 18 n 01 flagellant 0 002 @ 10413834 n 0000 + 01398443 v 0101 | a person who whips himself as a religious penance -10094444 18 n 01 flagellant 1 002 @ 10297367 n 0000 + 01398443 v 0101 | a person who is whipped or whips himself for sexual gratification -10094584 18 n 01 flag_officer 0 006 @ 09943541 n 0000 ;c 08199025 n 0000 ~ 09771204 n 0000 ~ 10096016 n 0000 ~ 10510245 n 0000 ~ 10750788 n 0000 | a senior naval officer above the rank of captain -10094782 18 n 04 flak_catcher 0 flak 0 flack_catcher 0 flack 0 001 @ 10638385 n 0000 | a slick spokesperson who can turn any criticism to the advantage of their employer -10094954 18 n 01 flamen 0 001 @ 10471250 n 0000 | a priest who served a particular deity in ancient Rome -10095061 18 n 01 flanker 0 004 @ 10622053 n 0000 #m 08215248 n 0000 ;c 08199025 n 0000 + 02694106 v 0101 | a soldier who is a member of a detachment assigned to guard the flanks of a military formation -10095265 18 n 02 flanker_back 0 flanker 1 002 @ 09830194 n 0000 + 02694106 v 0201 | a back stationed wide of the scrimmage line; used as a pass receiver -10095420 18 n 01 flapper 0 001 @ 10129825 n 0000 | a young woman in the 1920s who flaunted her unconventional conduct and dress -10095550 18 n 01 flash_in_the_pan 0 001 @ 10273064 n 0000 | someone who enjoys transient success but then fails -10095664 18 n 02 flatfoot 0 patrolman 0 001 @ 10249459 n 0000 | a policeman who patrols a given region -10095769 18 n 01 flatmate 0 001 @ 10112591 n 0000 | an associate who shares an apartment with you -10095869 18 n 02 flatterer 0 adulator 0 004 @ 10099375 n 0000 + 00880518 v 0201 + 00880227 v 0101 ~ 10684827 n 0000 | a person who uses flattery -10096016 18 n 02 fleet_admiral 0 five-star_admiral 0 001 @ 10094584 n 0000 | an admiral of the highest rank -10096126 18 n 02 flibbertigibbet 0 foolish_woman 0 001 @ 10100761 n 0000 | a female fool -10096217 18 n 02 flier 0 flyer 0 005 @ 09629752 n 0000 + 01840238 v 0201 + 01940403 v 0201 + 01840238 v 0101 + 01940403 v 0101 | someone who travels by air -10096375 18 n 01 flight_engineer 0 001 @ 09780676 n 0000 | the flight crewman responsible for mechanical operation while in flight -10096508 18 n 01 flight_surgeon 0 001 @ 10305635 n 0000 | a medical officer specializing in aviation medicine -10096620 18 n 01 floater 0 002 @ 10683126 n 0000 + 01904293 v 0101 | a swimmer who floats in the water -10096725 18 n 01 floater 2 001 @ 10760340 n 0000 | a voter who votes illegally at different polling places in the same election -10096855 18 n 01 floater 3 001 @ 10053808 n 0000 | an employee who is reassigned from job to job as needed -10096964 18 n 02 flogger 0 scourger 0 003 @ 10716389 n 0000 + 02500775 v 0201 + 01398443 v 0202 | a torturer who flogs or scourges (especially an official whose duty is to whip offenders) -10097154 18 n 01 floor_leader 0 001 @ 10253995 n 0000 | the legislator who organizes his party's strategy -10097262 18 n 02 floorwalker 0 shopwalker 0 001 @ 10053808 n 0000 | an employee of a retail store who supervises sales personnel and helps with customer problems; "a floorwalker is called a shopwalker in Britain" -10097477 18 n 03 flop 0 dud 0 washout 0 002 @ 10273064 n 0000 ;u 07075172 n 0000 | someone who is unsuccessful -10097590 18 n 01 Florentine 0 002 @ 09716047 n 0000 #m 08812166 n 0000 | a native or resident of Florence, Italy -10097705 18 n 01 florist 0 001 @ 10592152 n 0000 | someone who grows and deals in flowers; "the florist made up an attractive bouquet" -10097842 18 n 01 flower_girl 0 003 @ 10084295 n 0000 @ 09815790 n 0000 #m 08256735 n 0000 | a young girl who carries flowers in a (wedding) procession -10097995 18 n 01 flower_girl 1 001 @ 10577284 n 0000 | a woman who sells flowers in the street -10098092 18 n 04 flunky 0 flunkey 0 stooge 0 yes-man 0 003 @ 10099375 n 0000 + 00013858 v 0301 ~ 10495880 n 0000 | a person of unquestioning obedience -10098245 18 n 03 flutist 0 flautist 0 flute_player 0 003 @ 10340312 n 0000 + 03372029 n 0201 + 03372029 n 0101 | someone who plays the flute -10098388 18 n 01 fly-by-night 0 003 @ 09997622 n 0000 + 01757082 a 0101 + 02466566 a 0101 | a debtor who flees to avoid paying -10098517 18 n 01 flyweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 112 pounds -10098624 18 n 01 flyweight 1 001 @ 10793168 n 0000 | weighs no more than 115 pounds -10098710 18 n 02 foe 0 enemy 1 003 @ 10533013 n 0000 ! 09785042 n 0102 ~ 10331258 n 0000 | a personal enemy; "they had been political foes for years" -10098862 18 n 01 folk_dancer 0 004 @ 09990415 n 0000 ~ 10331167 n 0000 ~ 10514051 n 0000 ~ 10642596 n 0000 | someone who does folk dances -10099002 18 n 01 folk_poet 0 001 @ 10099278 n 0000 | a folk writer who composes in verse -10099093 18 n 05 folk_singer 0 jongleur 0 minstrel 0 poet-singer 0 troubadour 0 004 @ 10599806 n 0000 + 01730216 v 0301 ~i 11020721 n 0000 ~i 11290984 n 0000 | a singer of folk songs -10099278 18 n 01 folk_writer 0 002 @ 10794014 n 0000 ~ 10099002 n 0000 | a writer of folktales -10099375 18 n 01 follower 0 037 @ 00007846 n 0000 + 02600255 v 0101 ! 09623038 n 0101 ~ 09890192 n 0000 ~ 09898020 n 0000 ~ 09982370 n 0000 ~ 09982525 n 0000 ~ 10016103 n 0000 ~ 10077593 n 0000 ~ 10095869 n 0000 ~ 10098092 n 0000 ~ 10111779 n 0000 ~ 10168368 n 0000 ~ 10205231 n 0000 ~ 10218292 n 0000 ~ 10219453 n 0000 ~ 10220807 n 0000 ~ 10227166 n 0000 ~ 10229983 n 0000 ~ 10243791 n 0000 ~ 10252674 n 0000 ~ 10278568 n 0000 ~ 10308653 n 0000 ~ 10327002 n 0000 ~ 10343449 n 0000 ~ 10353734 n 0000 ~ 10357012 n 0000 ~ 10517583 n 0000 ~ 10524223 n 0000 ~ 10552639 n 0000 ~ 10587894 n 0000 ~ 10605608 n 0000 ~ 10646325 n 0000 ~ 10669727 n 0000 ~ 10688671 n 0000 ~ 10746581 n 0000 ~ 10762480 n 0000 | a person who accepts the leadership of another -10100124 18 n 01 follower 1 006 @ 09629752 n 0000 + 02000868 v 0102 + 01998432 v 0101 ~ 10494935 n 0000 ~ 10585359 n 0000 ~ 10689104 n 0000 | someone who travels behind or pursues another -10100314 18 n 01 fondler 1 001 @ 10327333 n 0000 | a molester who touches the intimate parts of the victim; "the woman charged that her jailer was a fondler"; "not all fondlers are sexual perverts" -10100514 18 n 01 food_faddist 0 001 @ 10075899 n 0000 | a person who adheres briefly to different diets -10100620 18 n 01 food_manufacturer 0 003 @ 10292316 n 0000 ~i 11099438 n 0000 ~i 11243562 n 0000 | a person who manufactures food products -10100761 18 n 05 fool 0 sap 0 saphead 0 muggins 0 tomfool 0 012 @ 10599354 n 0000 + 00854904 v 0106 + 02576349 v 0101 ~ 09813632 n 0000 ~ 09931165 n 0000 ~ 10096126 n 0000 ~ 10114476 n 0000 ~ 10157744 n 0000 ~ 10310516 n 0000 ~ 10331098 n 0000 ~ 10496393 n 0000 ~ 10765305 n 0000 | a person who lacks good judgment -10101078 18 n 01 foot 0 001 @ 10569411 n 0000 | a member of a surveillance team who works on foot or rides as a passenger -10101202 18 n 01 football_coach 0 002 @ 09931640 n 0000 ~ 09931989 n 0000 | a coach of football players -10101308 18 n 01 football_hero 0 001 @ 10101634 n 0000 | a football player who has achieved a reputation for success -10101427 18 n 01 football_official 0 006 @ 10372076 n 0000 ~ 09830553 n 0000 ~ 10086744 n 0000 ~ 10163900 n 0000 ~ 10263259 n 0000 ~ 10596272 n 0000 | an official who enforces the rules at a football game -10101634 18 n 02 football_player 0 footballer 0 014 @ 09820263 n 0000 @ 10439851 n 0000 + 03378765 n 0201 + 00468480 n 0201 ~ 09830194 n 0000 ~ 09834378 n 0000 ~ 09860248 n 0000 ~ 09965787 n 0000 ~ 10101308 n 0000 ~ 10230580 n 0000 ~ 10263002 n 0000 ~ 10263411 n 0000 ~ 10510818 n 0000 ~ 10688238 n 0000 | an athlete who plays American football -10101981 18 n 01 footman 0 001 @ 10292192 n 0000 | a man employed as a servant in a large establishment (as a palace) to run errands and do chores -10102130 18 n 02 footpad 0 padder 0 001 @ 10175507 n 0000 | a highwayman who robs on foot -10102222 18 n 01 forager 0 001 @ 10193719 n 0000 | someone who hunts for food and provisions; "in Japan a fungus forager can earn a good living" -10102369 18 n 02 forebear 0 forbear 0 003 @ 09792555 n 0000 ~ 10143172 n 0000 ~ 10145774 n 0000 | a person from whom you are descended -10102506 18 n 04 forecaster 0 predictor 0 prognosticator 0 soothsayer 0 007 @ 10756433 n 0000 + 00917772 v 0303 + 00917772 v 0201 + 00926472 v 0101 + 00712135 v 0106 ~ 09817816 n 0000 ~ 10105462 n 0000 | someone who makes predictions of the future (usually on the basis of special knowledge) -10102800 18 n 03 forefather 0 father 3 sire 0 003 @ 09792555 n 0000 + 00054628 v 0306 ~ 10406391 n 0000 | the founder of a family; "keep the faith of our forefathers" -10102969 18 n 01 forefather 1 001 @ 10464711 n 0000 | person from an earlier time who contributed to the tradition shared by some group; "our forefathers brought forth a great nation" -10103155 18 n 01 foremother 0 001 @ 09792555 n 0000 | a woman ancestor -10103228 18 n 01 foreign_agent 0 001 @ 10641755 n 0000 | a spy for a foreign country -10103315 18 n 01 foreign_correspondent 0 001 @ 09966710 n 0000 | a journalist who sends news reports and commentary from a foreign country for publication or broadcast -10103485 18 n 04 foreigner 0 alien 0 noncitizen 0 outlander 0 008 @ 09629752 n 0000 ! 09923673 n 0301 + 01035007 a 0201 ~ 09823683 n 0000 ~ 10071139 n 0000 ~ 10147121 n 0000 ~ 10200531 n 0000 ~ 10312890 n 0000 | a person who comes from a foreign country; someone who does not owe allegiance to your country -10103794 18 n 02 foreign_minister 0 secretary_of_state 0 001 @ 10320863 n 0000 | a government minister for foreign relations -10103921 18 n 02 foreigner 1 outsider 0 002 @ 10661002 n 0000 ~ 10723731 n 0000 | someone who is excluded from or is not a member of a group -10104064 18 n 01 boss 3 002 @ 09623038 n 0000 ~ 10036135 n 0000 | a person who exercises control and makes decisions; "he is his own boss now" -10104209 18 n 05 foreman 0 chief 1 gaffer 0 honcho 0 boss 1 006 @ 10676877 n 0000 + 00787595 a 0502 + 00592535 n 0101 ~ 09827166 n 0000 ~ 10119874 n 0000 ~ 10661732 n 0000 | a person who exercises control over workers; "if you want to leave early you have to ask the foreman" -10104487 18 n 01 foreman 1 002 @ 10104592 n 0000 + 00592535 n 0101 | a man who is foreperson of a jury -10104592 18 n 01 foreperson 0 003 @ 10228278 n 0000 ~ 10104487 n 0000 ~ 10104983 n 0000 | the presiding member of the jury and the one who speaks on their behalf -10104756 18 n 03 forester 0 tree_farmer 0 arboriculturist 0 002 @ 10078806 n 0000 + 00917614 n 0301 | someone trained in forestry -10104888 18 n 01 forewoman 0 001 @ 10676877 n 0000 | a woman in charge of a group of workers -10104983 18 n 02 forewoman 1 forelady 0 001 @ 10104592 n 0000 | a woman who is foreperson of a jury -10105085 18 n 02 forger 1 counterfeiter 0 005 @ 09998101 n 0000 + 01654271 v 0203 + 01654271 v 0101 ~ 09935233 n 0000 ~ 10397142 n 0000 | someone who makes copies illegally -10105260 18 n 01 forger 0 002 @ 10614629 n 0000 + 01675245 v 0101 | someone who operates a forge -10105359 18 n 01 fortune_hunter 0 001 @ 09998101 n 0000 | a person who seeks wealth through marriage -10105462 18 n 02 fortuneteller 0 fortune_teller 0 003 @ 10102506 n 0000 ~ 10395209 n 0000 ~ 10595551 n 0000 | a person who foretells your personal future -10105618 18 n 01 forty-niner 0 001 @ 10136463 n 0000 | a miner who took part in the California gold rush in 1849 -10105733 18 n 01 forward 0 002 @ 09842047 n 0000 ~i 10960772 n 0000 | the person who plays the position of forward in certain games, such as basketball, soccer, or hockey -10105906 18 n 02 foster-brother 0 foster_brother 0 001 @ 09624168 n 0000 | your foster brother is a male who is not a son of your parents but who is raised by your parents -10106080 18 n 03 foster-child 0 foster_child 0 fosterling 0 003 @ 09917593 n 0000 ~ 10106242 n 0000 ~ 10107173 n 0000 | a child who is raised by foster parents -10106242 18 n 02 foster-daughter 0 foster_daughter 0 001 @ 10106080 n 0000 | someone who is raised as a daughter although not related by birth -10106387 18 n 02 foster-father 0 foster_father 0 002 @ 10106752 n 0000 @ 10081670 n 0000 | a man who is a foster parent -10106509 18 n 02 foster-mother 0 foster_mother 0 001 @ 10106752 n 0000 | a woman who is a foster parent and raises another's child -10106642 18 n 01 foster-nurse 0 001 @ 10366966 n 0000 | a nurse who raises another woman's child as her own -10106752 18 n 02 foster-parent 0 foster_parent 0 003 @ 09614684 n 0000 ~ 10106387 n 0000 ~ 10106509 n 0000 | a person who acts as parent and guardian for a child in place of the child's natural parents but without legally adopting the child -10106995 18 n 02 foster-sister 0 foster_sister 0 001 @ 09619168 n 0000 | your foster sister is a female who is not a daughter of your parents but who is raised by your parents -10107173 18 n 02 foster-son 0 foster_son 0 001 @ 10106080 n 0000 | someone who is raised as a son although not related by birth -10107303 18 n 04 founder 0 beginner 1 founding_father 0 father 6 007 @ 10383816 n 0000 + 00348746 v 0201 + 02427103 v 0103 + 01647229 v 0102 ~ 09610173 n 0000 ~ 09937903 n 0000 ~ 10108018 n 0000 | a person who founds or establishes some institution; "George Washington is the father of his country" -10107604 18 n 01 Founding_Father 1 002 @ 10650162 n 0000 #m 08309226 n 0000 | a member of the Constitutional Convention that drafted the United States Constitution in 1787 -10107778 18 n 01 founder 1 002 @ 10605985 n 0000 ~ 09849167 n 0000 | a worker who makes metal castings -10107883 18 n 02 foundling 0 abandoned_infant 0 001 @ 09827683 n 0000 | a child who has been abandoned and whose parents are unknown -10108018 18 n 01 foundress 0 001 @ 10107303 n 0000 | a woman founder -10108089 18 n 01 four-minute_man 0 003 @ 10315561 n 0000 ~i 10833595 n 0000 ~i 11371254 n 0000 | someone who has run the mile in less that 4 minutes -10108240 18 n 01 fowler 0 002 @ 10193026 n 0000 + 01145944 v 0101 | someone who hunts wild birds for food -10108348 18 n 01 fox_hunter 0 001 @ 10185793 n 0000 | a mounted hunter who follows the hounds in pursuit of a fox -10108464 18 n 01 framer 0 002 @ 10794014 n 0000 + 00706804 v 0101 | someone who writes a new law or plan; "the framers of the Constitution" -10108606 18 n 01 framer 1 002 @ 10605985 n 0000 + 02711835 v 0101 | someone who makes frames (as for pictures) -10108719 18 n 02 Francophile 0 Francophil 0 001 @ 10677713 n 0000 | an admirer of France and everything French -10108832 18 n 01 Francophobe 0 001 @ 10162194 n 0000 | a person who hates France and everything French -10108937 18 n 01 franc-tireur 0 002 @ 10294953 n 0000 ;r 08929922 n 0000 | a sharpshooter (in the French army) -10109050 18 n 01 franklin 0 002 @ 10245639 n 0000 ;r 08871007 n 0000 | a landowner (14th and 15th centuries) who was free but not of noble birth -10109197 18 n 02 fraternal_twin 0 dizygotic_twin 0 001 @ 10734394 n 0000 | either of two twins who developed from two separate fertilized eggs -10109342 18 n 01 fratricide 0 001 @ 10338707 n 0000 | a person who murders their brother or sister -10109443 18 n 04 freak 0 monster 1 monstrosity 0 lusus_naturae 0 005 @ 10341660 n 0000 + 00221627 a 0302 + 01389738 a 0301 + 00221627 a 0202 ~ 10255728 n 0000 | a person or animal that is markedly unusual or deformed -10109662 18 n 03 free_agent 0 free_spirit 0 freewheeler 0 003 @ 00007846 n 0000 + 02617338 v 0301 ~ 10110731 n 0000 | someone acting freely or even irresponsibly -10109826 18 n 01 free_agent 1 002 @ 10480583 n 0000 ;c 00523513 n 0000 | (sports) a professional athlete who is free to sign a contract to play for any team -10109985 18 n 02 freedman 0 freedwoman 0 001 @ 10111023 n 0000 | a person who has been freed from slavery -10110093 18 n 01 freedom_rider 0 001 @ 09924996 n 0000 | one of an interracial group of civil rights activists who rode buses through parts of the South in order to protest racial segregation -10110287 18 n 01 freeholder 0 004 @ 10245639 n 0000 + 13243261 n 0101 + 13243134 n 0101 ~ 10803586 n 0000 | the owner of a freehold -10110421 18 n 06 freelancer 0 freelance 0 free-lance 0 free_lance 0 independent 0 self-employed_person 0 005 @ 09632518 n 0000 + 02576110 v 0401 + 02576110 v 0301 + 02576110 v 0201 + 02576110 v 0101 | a writer or artist who sells services to different employers without a long-term contract with any of them -10110731 18 n 01 free-liver 0 001 @ 10109662 n 0000 | someone who gratifies physical appetites (especially for food and drink) with more than the usual freedom -10110893 18 n 01 freeloader 0 002 @ 09867633 n 0000 + 02270648 v 0101 | someone who takes advantage of the generosity of others -10111023 18 n 02 freeman 0 freewoman 0 002 @ 09923673 n 0000 ~ 10109985 n 0000 | a person who is not a serf or a slave -10111144 18 n 02 Freemason 0 Mason 1 004 @ 09876892 n 0000 #m 08235513 n 0000 + 02895268 a 0201 ~ 10239501 n 0000 | a member of a widespread secret fraternal order pledged to mutual assistance and brotherly love -10111358 18 n 01 free_trader 0 001 @ 10677713 n 0000 | an advocate of unrestricted international trade -10111463 18 n 01 freight_agent 0 001 @ 09777353 n 0000 | an employee of a freight carrier who directs the receipt and delivery of goods -10111601 18 n 01 French_teacher 0 001 @ 10694258 n 0000 | someone who teaches French -10111688 18 n 02 freshman 0 fresher 0 001 @ 10274815 n 0000 | a first-year undergraduate -10111779 18 n 01 Freudian 0 001 @ 10099375 n 0000 | a person who follows the basic theories or practices of Sigmund Freud -10111903 18 n 02 friar 0 mendicant 1 006 @ 10518602 n 0000 + 00714437 a 0201 ~ 10778148 n 0000 ~ 10778345 n 0000 ~ 10778553 n 0000 ~ 10778711 n 0000 | a male member of a religious order that originally relied solely on alms -10112129 18 n 02 monk 0 monastic 0 009 @ 10518602 n 0000 + 02578894 a 0204 ~ 09876701 n 0000 ~ 09898107 n 0000 ~ 10726388 n 0000 ~i 10830731 n 0000 ~i 10843858 n 0000 ~i 11173199 n 0000 ~i 11228691 n 0000 | a male religious living in a cloister and devoting himself to contemplation and prayer and work -10112434 18 n 01 Benedictine 0 003 @ 10518602 n 0000 #m 08148601 n 0000 + 03047501 a 0101 | a monk or nun belonging to the order founded by Saint Benedict -10112591 18 n 01 friend 0 019 @ 00007846 n 0000 + 01074650 a 0101 + 13931145 n 0101 ~i 09560426 n 0000 ~ 09785992 n 0000 ~ 09788521 n 0000 ~ 09851371 n 0000 ~ 09877124 n 0000 ~ 09877951 n 0000 ~ 09945905 n 0000 ~ 09954639 n 0000 ~ 10095769 n 0000 ~ 10130877 n 0000 ~ 10276659 n 0000 ~ 10300154 n 0000 ~ 10538518 n 0000 ~ 10559508 n 0000 ~i 10921879 n 0000 ~i 11233595 n 0000 | a person you know well and regard with affection and trust; "he was my best friend at the university" -10113072 18 n 03 frontiersman 0 backwoodsman 0 mountain_man 0 004 @ 10434424 n 0000 ~i 10857418 n 0000 ~i 10884369 n 0000 ~i 10915566 n 0000 | a man who lives on the frontier -10113249 18 n 01 frontierswoman 0 002 @ 10434424 n 0000 ~i 10872839 n 0000 | a woman who lives on the frontier -10113362 18 n 01 frontbencher 0 003 @ 10253995 n 0000 ;r 08860123 n 0000 + 03399047 n 0101 | a member of the House of Commons who is a minister in the government or who holds an official position in an opposition party -10113583 18 n 06 front_man 0 front 0 figurehead 0 nominal_head 0 straw_man 0 strawman 0 001 @ 09998101 n 0000 | a person used as a cover for some questionable activity -10113753 18 n 03 front-runner 0 favorite 1 favourite 1 001 @ 10533013 n 0000 | a competitor thought likely to win -10113869 18 n 01 frotteur 0 001 @ 10299700 n 0000 | someone who masturbates by rubbing against another person (as in a crowd) -10113997 18 n 01 fruiterer 0 003 @ 10577284 n 0000 ;r 08860123 n 0000 + 13134947 n 0101 | a person who sells fruit -10114114 18 n 01 fruit_grower 0 001 @ 09779790 n 0000 | someone who grows fruit commercially -10114209 18 n 02 frump 0 dog 1 002 @ 10739636 n 0000 + 00974519 a 0102 | a dull unattractive unpleasant girl or woman; "she got a reputation as a frump"; "she's a real dog" -10114384 18 n 01 fry_cook 0 001 @ 09963320 n 0000 | a cook who specializes in fried foods -10114476 18 n 01 fucker 0 001 @ 10100761 n 0000 | a stupid despised man -10114550 18 n 01 fucker 1 002 @ 10173895 n 0000 + 01426397 v 0110 | someone who engages in sexual intercourse -10114662 18 n 01 fuddy-duddy 0 002 @ 09957156 n 0000 ;u 07075172 n 0000 | a conservative who is old-fashioned or dull in attitude or appearance; "you may accuse me of being and old fuddy-duddy trying to stop young people having fun" -10114897 18 n 02 fugitive 0 fugitive_from_justice 0 003 @ 09977660 n 0000 ~ 09755241 n 0000 ~ 10062905 n 0000 | someone who is sought by law officers; someone trying to elude justice -10115082 18 n 03 fugitive 1 runaway 0 fleer 0 003 @ 00007846 n 0000 + 02075462 v 0301 + 02075049 v 0206 | someone who flees from an uncongenial situation; "fugitives from the sweatshops" -10115271 18 n 01 fugleman 0 001 @ 09623038 n 0000 | a leader and organizer and spokesman (especially a political leader); "a fugleman for the radical right" -10115430 18 n 01 fullback 0 003 @ 10543161 n 0000 ;c 00468480 n 0000 + 01076250 v 0101 | (football) the running back who plays the fullback position on the offensive team -10115603 18 n 01 fuller 0 002 @ 10791221 n 0000 + 01399305 v 0101 | a workman who fulls (cleans and thickens) freshly woven cloth for a living -10115748 18 n 01 full_professor 0 001 @ 10480730 n 0000 | a professor of the highest rank -10115840 18 n 01 fumigator 0 002 @ 10605985 n 0000 + 02127100 v 0101 | someone whose job is to fumigate -10115946 18 n 02 funambulist 0 tightrope_walker 0 002 @ 09764381 n 0000 + 00324978 n 0101 | an acrobat who performs on a tightrope or slack rope -10116093 18 n 01 functional_illiterate 0 001 @ 10199103 n 0000 | a person with some ability to read and write but not enough for daily practical needs -10116246 18 n 01 functionalist 0 003 @ 10677713 n 0000 + 05962043 n 0101 + 06140054 n 0101 | an adherent of functionalism -10116370 18 n 01 fundamentalist 0 002 @ 09679316 n 0000 + 06231328 n 0101 | a supporter of fundamentalism -10116478 18 n 01 fundraiser 0 001 @ 10623354 n 0000 | someone who solicits financial contributions -10116579 18 n 01 fusilier 0 001 @ 10204921 n 0000 | (formerly) a British infantryman armed with a light flintlock musket -10116702 18 n 01 futurist 1 002 @ 10705615 n 0000 + 06209242 n 0101 | a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) will be fulfilled in the future -10116905 18 n 01 gadabout 0 001 @ 10575787 n 0000 | a restless seeker after amusement or social companionship -10117017 18 n 01 gadgeteer 0 002 @ 10059582 n 0000 + 02729965 n 0105 | a person who delights in designing or building or using gadgets -10117154 18 n 01 gaffer 2 001 @ 10049363 n 0000 | an electrician responsible for lighting on a movie or tv set -10117267 18 n 03 gagman 0 gagster 0 gagwriter 0 002 @ 10794014 n 0000 + 06778102 n 0202 | someone who writes comic material for public performers -10117415 18 n 02 gagman 1 standup_comedian 0 001 @ 09940146 n 0000 | a comedian who uses gags -10117511 18 n 01 gainer 0 005 @ 00007846 n 0000 + 02290461 v 0102 + 02288295 v 0103 + 02289295 v 0101 + 01111028 v 0101 | a person who gains (gains an advantage or gains profits); "she was clearly the gainer in that exchange" -10117739 18 n 02 gainer 1 weight_gainer 0 002 @ 00007846 n 0000 + 00046151 v 0101 | a person who gains weight -10117851 18 n 01 gal 0 002 @ 10129825 n 0000 ;u 07075172 n 0000 | alliterative term for girl (or woman) -10117957 18 n 02 Galilean 0 Galilaean 0 003 @ 09620078 n 0000 + 02732569 a 0202 + 02732569 a 0101 | an inhabitant of Galilee (an epithet of Jesus Christ) -10118113 18 n 01 galley_slave 0 001 @ 10609325 n 0000 | a slave condemned to row in a galley -10118208 18 n 01 gallows_bird 0 001 @ 10753546 n 0000 | a person who deserves to be hanged -10118301 18 n 01 galoot 0 001 @ 10287213 n 0000 | a disreputable or clumsy man -10118382 18 n 03 galvanizer 0 galvaniser 0 inspirer 0 005 @ 09623038 n 0000 + 00605310 v 0303 + 01821634 v 0203 + 01821634 v 0102 + 01266895 v 0202 | a leader who stimulates and excites people to action -10118587 18 n 02 galvanizer 1 galvaniser 1 003 @ 10605985 n 0000 + 01266895 v 0202 + 01266895 v 0101 | a skilled worker who coats iron or steel with zinc -10118743 18 n 01 gambist 0 001 @ 10340312 n 0000 | a musician who performs upon the viola da gamba -10118844 18 n 01 gambler 0 014 @ 00007846 n 0000 + 01138523 v 0101 ~ 09617435 n 0000 ~ 09851876 n 0000 ~ 09866222 n 0000 ~ 09976024 n 0000 ~ 09980985 n 0000 ~ 10175418 n 0000 ~ 10272782 n 0000 ~ 10370683 n 0000 ~ 10591678 n 0000 ~ 10634075 n 0000 ~ 10639469 n 0000 ~ 10782791 n 0000 | a person who wagers money on the outcome of games or sporting events -10119200 18 n 02 gambler 1 risk_taker 0 002 @ 09606009 n 0000 + 02544348 v 0101 | someone who risks loss or injury in the hope of gain or excitement -10119351 18 n 02 gamekeeper 0 game_warden 0 002 @ 09984298 n 0000 ~ 10768505 n 0000 | a person employed to take care of game and wildlife -10119491 18 n 02 games-master 0 games-mistress 0 001 @ 10560352 n 0000 | the teacher in charge of games at a school -10119609 18 n 01 gamine 0 001 @ 10129825 n 0000 | a girl of impish appeal -10119685 18 n 01 gamine 1 001 @ 10662952 n 0000 | a homeless girl who roams the streets -10119775 18 n 01 gandy_dancer 0 001 @ 10241300 n 0000 | a laborer in a railroad maintenance gang -10119874 18 n 01 ganger 0 001 @ 10104209 n 0000 | the foreman of a work gang -10119953 18 n 01 gangsta 0 003 @ 09626238 n 0000 #m 08244747 n 0000 ;u 06947658 n 0000 | (Black English) a member of a youth gang -10120085 18 n 02 gangster 0 mobster 0 009 @ 09977660 n 0000 #m 08244062 n 0000 + 08246302 n 0203 + 08244062 n 0204 + 08244062 n 0101 ~ 09607208 n 0000 ~ 10801802 n 0000 ~ 10802621 n 0000 ~i 10881784 n 0000 | a criminal who is a member of gang -10120330 18 n 07 garbage_man 0 garbageman 0 garbage_collector 0 garbage_carter 0 garbage_hauler 0 refuse_collector 0 dustman 0 001 @ 10162507 n 0000 | someone employed to collect and dispose of refuse -10120533 18 n 02 gardener 0 nurseryman 0 003 @ 10186350 n 0000 + 01740969 v 0101 ~ 10725613 n 0000 | someone who takes care of a garden -10120671 18 n 01 gardener 1 004 @ 10053808 n 0000 + 01740969 v 0101 ~ 10148663 n 0000 ~ 10167740 n 0000 | someone employed to work in a garden -10120816 18 n 03 garmentmaker 0 garment-worker 0 garment_worker 0 006 @ 10351281 n 0000 ~ 09929861 n 0000 ~ 10033412 n 0000 ~ 10387712 n 0000 ~ 10657306 n 0000 ~ 10689564 n 0000 | a person who makes garments -10121026 18 n 01 garment_cutter 0 001 @ 09985279 n 0000 | someone who cuts cloth etc. to measure in making garments -10121144 18 n 01 garnishee 0 001 @ 10041887 n 0000 | a wage earner who is served with a garnishment -10121246 18 n 05 garroter 0 garrotter 0 strangler 0 throttler 0 choker 0 006 @ 10231087 n 0000 + 01570744 v 0501 + 01570935 v 0403 + 01570935 v 0301 + 01571744 v 0202 + 01571744 v 0101 | someone who kills by strangling -10121467 18 n 02 gasbag 0 windbag 0 001 @ 09867437 n 0000 | a boring person who talks a great deal about uninteresting topics -10121595 18 n 01 gas_fitter 0 001 @ 10791221 n 0000 | a workman who installs and repairs gas fixtures and appliances -10121714 18 n 01 gasman 0 001 @ 10053808 n 0000 | someone employed by a gas company -10121800 18 n 01 gastroenterologist 0 002 @ 10020890 n 0000 + 06050490 n 0101 | a physician who specializes in diseases of the gastrointestinal tract -10121952 18 n 03 gatecrasher 0 crasher 0 unwelcome_guest 0 002 @ 10213652 n 0000 + 02019011 v 0202 | someone who gets in (to a party) without an invitation or without paying -10122128 18 n 01 gatekeeper 1 001 @ 00007846 n 0000 | someone who controls access to something; "there are too many gatekeepers between the field officers and the chief" -10122300 18 n 01 gatherer 1 002 @ 00007846 n 0000 + 01316619 v 0101 | a person who gathers; "they were a society of hunters and gatherers" -10122441 18 n 01 gaucho 0 001 @ 09972661 n 0000 | a cowboy of the South American pampas -10122531 18 n 01 gawker 0 001 @ 10633450 n 0000 | a spectator who stares stupidly without intelligent awareness -10122645 18 n 02 gay_man 0 shirtlifter 0 003 @ 10182913 n 0000 ~ 09930628 n 0000 ~ 10076033 n 0000 | a homosexual man -10122765 18 n 01 gazetteer 0 001 @ 10224578 n 0000 | a journalist who writes for a gazette -10122858 18 n 02 geisha 0 geisha_girl 0 002 @ 10787470 n 0000 @ 09718217 n 0000 | a Japanese woman trained to entertain men with conversation and singing and dancing -10123026 18 n 01 gem_cutter 0 001 @ 09985279 n 0000 | one who cuts and shapes precious stones -10123122 18 n 01 gendarme 0 002 @ 10448983 n 0000 #m 08210254 n 0000 | a French policeman -10123214 18 n 01 genealogist 0 002 @ 09617867 n 0000 + 08102402 n 0101 | an expert in genealogy -10123312 18 n 01 Genevan 0 002 @ 09733333 n 0000 #m 09032604 n 0000 | a native or resident of Geneva -10123415 18 n 01 Genoese 0 002 @ 09716047 n 0000 #m 08808452 n 0000 | a native or resident of Genoa -10123517 18 n 01 genre_painter 0 001 @ 10391653 n 0000 | a painter of scenes from everyday life -10123615 18 n 01 geek 1 001 @ 10415638 n 0000 | a carnival performer who does disgusting acts -10123711 18 n 01 geezer 0 003 @ 10287213 n 0000 ;u 07075172 n 0000 + 15153787 n 0105 | a man who is (usually) old and/or eccentric -10123844 18 n 02 general 0 full_general 0 086 @ 10125786 n 0000 ;c 08199025 n 0000 + 05617467 n 0101 + 00592652 n 0101 + 00752193 v 0101 ~i 10809675 n 0000 ~i 10812047 n 0000 ~i 10819533 n 0000 ~i 10820163 n 0000 ~i 10823529 n 0000 ~i 10842030 n 0000 ~i 10843425 n 0000 ~ 10853932 n 0000 ~i 10855604 n 0000 ~i 10860807 n 0000 ~i 10861741 n 0000 ~i 10872624 n 0000 ~i 10873937 n 0000 ~i 10878161 n 0000 ~i 10895688 n 0000 ~i 10897594 n 0000 ~i 10898929 n 0000 ~i 10899747 n 0000 ~i 10900146 n 0000 ~i 10902934 n 0000 ~i 10911687 n 0000 ~i 10916105 n 0000 ~i 10917164 n 0000 ~i 10919061 n 0000 ~i 10925939 n 0000 ~i 10927824 n 0000 ~i 10929657 n 0000 ~i 10940053 n 0000 ~i 10941714 n 0000 ~i 10954966 n 0000 ~i 10962423 n 0000 ~i 10972495 n 0000 ~i 10978842 n 0000 ~i 10990963 n 0000 ~i 11011123 n 0000 ~i 11017661 n 0000 ~i 11028196 n 0000 ~i 11030395 n 0000 ~i 11033631 n 0000 ~i 11051070 n 0000 ~i 11057221 n 0000 ~i 11058436 n 0000 ~i 11061853 n 0000 ~i 11075823 n 0000 ~i 11076079 n 0000 ~i 11088771 n 0000 ~i 11092292 n 0000 ~i 11123590 n 0000 ~i 11143600 n 0000 ~i 11144291 n 0000 ~i 11145850 n 0000 ~i 11146193 n 0000 ~i 11146670 n 0000 ~i 11158982 n 0000 ~i 11170438 n 0000 ~i 11180952 n 0000 ~i 11182621 n 0000 ~i 11188316 n 0000 ~i 11200276 n 0000 ~i 11205647 n 0000 ~i 11230780 n 0000 ~i 11234472 n 0000 ~i 11241854 n 0000 ~i 11245110 n 0000 ~i 11266703 n 0000 ~i 11280905 n 0000 ~i 11283300 n 0000 ~i 11288216 n 0000 ~i 11289307 n 0000 ~i 11291575 n 0000 ~i 11297983 n 0000 ~i 11303132 n 0000 ~i 11318462 n 0000 ~i 11324090 n 0000 ~i 11372054 n 0000 ~i 11375418 n 0000 ~i 11377315 n 0000 ~i 11377564 n 0000 ~i 11380923 n 0000 ~i 11401282 n 0000 ~i 11406460 n 0000 | a general officer of the highest rank -10125561 18 n 02 general 1 superior_general 0 002 @ 10162991 n 0000 + 00592652 n 0101 | the head of a religious order or congregation -10125697 18 n 01 general_manager 0 001 @ 10162991 n 0000 | the highest ranking manager -10125786 18 n 01 general_officer 0 006 @ 09943239 n 0000 ;c 08199025 n 0000 ~ 09875540 n 0000 ~ 10123844 n 0000 ~ 10260166 n 0000 ~ 10283663 n 0000 | officers in the Army or Air Force or Marines above the rank of colonel -10126009 18 n 02 general_practitioner 0 GP 0 003 @ 10020890 n 0000 ~ 09970493 n 0000 ~ 10077278 n 0000 | a physician who is not a specialist but treats all illnesses -10126177 18 n 03 generator 0 source 0 author 1 005 @ 10284064 n 0000 + 02651014 a 0302 + 00240754 n 0301 + 01627355 v 0101 ~ 09935107 n 0000 | someone who originates or causes or initiates something; "he was the generator of several complaints" -10126424 18 n 01 geneticist 0 011 @ 09855630 n 0000 + 06075527 n 0101 ~ 09986904 n 0000 ~i 10902232 n 0000 ~i 11023070 n 0000 ~i 11146010 n 0000 ~i 11195295 n 0000 ~i 11362573 n 0000 ~i 11376201 n 0000 ~i 11380159 n 0000 ~i 11390692 n 0000 | a biologist who specializes in genetics -10126708 18 n 01 genitor 0 002 @ 10126806 n 0000 ~ 10399491 n 0000 | a natural father or mother -10126806 18 n 02 progenitor 0 primogenitor 0 002 @ 09792555 n 0000 ~ 10126708 n 0000 | an ancestor in the direct line -10126926 18 n 05 genius 0 mastermind 1 brain 0 brainiac 0 Einstein 1 003 @ 09621545 n 0000 + 01335156 a 0301 ~ 10479783 n 0000 | someone who has exceptional intellectual ability and originality; "Mozart was a child genius"; "he's smart but he's no Einstein" -10127186 18 n 01 gent 0 001 @ 10127273 n 0000 | informal abbreviation of `gentleman' -10127273 18 n 01 gentleman 0 005 @ 10287213 n 0000 + 01948573 a 0102 ~ 10025195 n 0000 ~ 10127186 n 0000 ~ 10127420 n 0000 | a man of refinement -10127420 18 n 01 gentleman-at-arms 0 001 @ 10127273 n 0000 | one of 40 gentlemen who attend the British sovereign on state occasions -10127555 18 n 01 geographer 0 004 @ 09617867 n 0000 + 06122178 n 0101 ~ 09898215 n 0000 ~i 11175243 n 0000 | an expert on geography -10127689 18 n 01 geologist 0 009 @ 10560637 n 0000 + 06115701 n 0101 ~ 10128519 n 0000 ~ 10194775 n 0000 ~ 10420392 n 0000 ~i 11056799 n 0000 ~i 11069261 n 0000 ~i 11155013 n 0000 ~i 11286117 n 0000 | a specialist in geology -10127916 18 n 01 geomancer 0 002 @ 10020031 n 0000 + 05776875 n 0101 | one who practices geomancy -10128016 18 n 02 geometer 0 geometrician 0 003 @ 10301261 n 0000 + 06004685 n 0201 ~i 10962302 n 0000 | a mathematician specializing in geometry -10128163 18 n 01 geometry_teacher 0 001 @ 10302446 n 0000 | someone who teaches geometry -10128254 18 n 01 Germanist 0 001 @ 10631941 n 0000 | a specialist in the study of Germanic language or culture or literature -10128381 18 n 02 gerontologist 0 geriatrician 0 003 @ 10632576 n 0000 + 06050650 n 0201 + 06050650 n 0102 | a specialist in gerontology -10128519 18 n 01 geophysicist 0 006 @ 10127689 n 0000 + 06117562 n 0101 ~ 10576513 n 0000 ~i 11184531 n 0000 ~i 11379536 n 0000 ~i 11391759 n 0000 | a geologist who uses physical principles to study the properties of the earth -10128748 18 n 02 ghostwriter 0 ghost 1 003 @ 10794014 n 0000 + 01704752 v 0201 + 01704752 v 0102 | a writer who gives the credit of authorship to someone else -10128909 18 n 05 giant 0 goliath 1 behemoth 0 monster 3 colossus 0 005 @ 09606527 n 0000 + 01384730 a 0501 + 01389738 a 0401 + 01385773 a 0103 + 01386538 a 0101 | someone or something that is abnormally large and powerful -10129133 18 n 04 giant 3 hulk 0 heavyweight 3 whale 0 005 @ 10247044 n 0000 + 01387902 a 0202 + 02696503 v 0204 + 01385773 a 0103 + 01386538 a 0101 | a very large person; impressive in size or qualities -10129338 18 n 01 Gibson_girl 0 001 @ 10129825 n 0000 | the idealized American girl of the 1890s as pictured by C. D. Gibson -10129464 18 n 01 gigolo 0 002 @ 10257647 n 0000 ~ 10274474 n 0000 | a man who has sex with and is supported by a woman -10129585 18 n 01 gilder 0 002 @ 10605985 n 0000 + 01683101 v 0101 | someone whose occupation is to apply an overlay of gold or gilt -10129719 18 n 01 gillie 0 001 @ 09821831 n 0000 | a young male attendant on a Scottish Highlander chief -10129825 18 n 06 girl 0 miss 0 missy 0 young_lady 0 young_woman 0 fille 0 028 @ 10787470 n 0000 + 15147330 n 0101 ~ 09827363 n 0000 ~ 09849012 n 0000 ~ 09854708 n 0000 ~ 09905530 n 0000 ~ 09919451 n 0000 ~ 09936825 n 0000 ~ 09989045 n 0000 ~ 10095420 n 0000 ~ 10117851 n 0000 ~ 10119609 n 0000 ~ 10129338 n 0000 ~ 10247358 n 0000 ~ 10282482 n 0000 ~ 10304160 n 0000 ~ 10318193 n 0000 ~ 10403366 n 0000 ~ 10416364 n 0000 ~ 10531694 n 0000 ~ 10539160 n 0000 ~ 10584729 n 0000 ~ 10592049 n 0000 ~ 10626994 n 0000 ~ 10682599 n 0000 ~ 10715030 n 0000 ~ 10745770 n 0000 ~ 10791115 n 0000 | a young woman; "a young lady of 18" -10130447 18 n 01 girl 3 001 @ 10787470 n 0000 | a friendly informal reference to a grown woman; "Mrs. Smith was just one of the girls" -10130584 18 n 01 girl_Friday 0 001 @ 09815790 n 0000 | a female assistant who has a range of duties -10130686 18 n 03 girlfriend 0 girl 1 lady_friend 0 002 @ 10787470 n 0000 @ 09622302 n 0000 | a girl or young woman with whom a man is romantically involved; "his girlfriend kicked him out" -10130877 18 n 01 girlfriend 1 002 @ 10787470 n 0000 @ 10112591 n 0000 | any female friend; "Mary and her girlfriend organized the party" -10131016 18 n 01 Girl_Scout 0 003 @ 10563183 n 0000 #m 08471185 n 0000 ~ 09877370 n 0000 | a girl who is a member of the Girl Scouts -10131151 18 n 01 girl_wonder 0 002 @ 10479783 n 0000 @ 09619168 n 0000 | an extremely talented young female person -10131268 18 n 02 Girondist 0 Girondin 0 002 @ 10527334 n 0000 + 08260220 n 0101 | a member of the moderate republican party that was in power during the French Revolution; the Girondists were overthrown by their more radical rivals the Jacobins -10131515 18 n 01 gitana 0 001 @ 10154186 n 0000 | a Spanish female Gypsy -10131590 18 n 01 gitano 0 001 @ 10154186 n 0000 | a Spanish male Gypsy -10131663 18 n 01 giver 1 001 @ 10138767 n 0000 | someone who devotes himself completely; "there are no greater givers than those who give themselves" -10131815 18 n 01 gladiator 0 004 @ 09939313 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 + 03069079 a 0101 | (ancient Rome) a professional combatant or a captive who entertained the public by engaging in mortal combat -10132035 18 n 01 glassblower 0 001 @ 09974648 n 0000 | someone skilled in blowing bottles from molten glass -10132145 18 n 05 glass_cutter 0 glass-cutter 0 glassworker 0 glazier 0 glazer 0 002 @ 09974648 n 0000 + 02335363 v 0402 | someone who cuts flat glass to size -10132305 18 n 02 glass_cutter 2 glass-cutter 2 001 @ 09985279 n 0000 | someone who cuts or grinds designs on glass -10132422 18 n 01 glassmaker 0 001 @ 10284064 n 0000 | someone who makes glass -10132502 18 n 01 gleaner 1 001 @ 09936362 n 0000 | someone who gathers something in small pieces (e.g. information) slowly and carefully -10132641 18 n 01 gleaner 0 002 @ 10079399 n 0000 + 01320009 v 0103 | someone who picks up grain left in the field by the harvesters -10132775 18 n 02 globetrotter 0 world_traveler 0 001 @ 09967406 n 0000 | someone who travels widely and often -10132887 18 n 01 glossarist 0 001 @ 10559009 n 0000 | a scholiast who writes glosses or glossaries -10132988 18 n 04 glutton 0 gourmand 0 gourmandizer 0 trencherman 0 005 @ 10042300 n 0000 + 01193099 v 030c + 01193099 v 020c + 00009978 a 0101 + 01169067 v 0101 | a person who is devoted to eating and drinking to excess -10133210 18 n 01 Gnostic 0 002 @ 09774783 n 0000 + 02849594 a 0101 | an advocate of Gnosticism -10133307 18 n 01 god 2 001 @ 10676018 n 0000 | a man of such superior qualities that he seems like a deity to other people; "he was a god among men" -10133458 18 n 04 gonif 0 goniff 0 ganef 0 ganof 0 002 @ 09633969 n 0000 ;c 06951067 n 0000 | (Yiddish) a thief or dishonest person or scoundrel (often used as a general term of abuse) -10133644 18 n 01 government_agent 0 004 @ 09777353 n 0000 ~ 10133850 n 0000 ~ 10526633 n 0000 ~ 10713254 n 0000 | a representative or official of a government or administrative department of a government -10133850 18 n 03 G-man 0 FBI_agent 0 government_man 0 001 @ 10133644 n 0000 | a special law-enforcement agent of the Federal Bureau of Investigation -10134001 18 n 05 goalkeeper 0 goalie 0 goaltender 0 netkeeper 0 netminder 0 002 @ 10618342 n 0000 @ 10179291 n 0000 | the soccer or hockey player assigned to protect the goal -10134178 18 n 02 goat_herder 0 goatherd 0 001 @ 10171567 n 0000 | a person who tends a flock of goats -10134282 18 n 01 gobbler 0 002 @ 10042300 n 0000 + 01173933 v 0101 | a hasty eater who swallows large mouthfuls -10134396 18 n 01 godchild 0 003 @ 09827683 n 0000 ~ 10134552 n 0000 ~ 10135129 n 0000 | an infant who is sponsored by an adult (the godparent) at baptism -10134552 18 n 01 goddaughter 0 001 @ 10134396 n 0000 | a female godchild -10134627 18 n 01 godfather 1 001 @ 10407954 n 0000 | someone having a relation analogous to that of a male sponsor to his godchild -10134760 18 n 01 godfather 0 001 @ 10134982 n 0000 | any man who serves as a sponsor for a child at baptism -10134870 18 n 01 godmother 0 001 @ 10134982 n 0000 | any woman who serves as a sponsor for a child at baptism -10134982 18 n 01 godparent 0 003 @ 10407954 n 0000 ~ 10134760 n 0000 ~ 10134870 n 0000 | a person who sponsors someone (the godchild) at baptism -10135129 18 n 01 godson 0 001 @ 10134396 n 0000 | a male godchild -10135197 18 n 01 gofer 0 001 @ 10053808 n 0000 | an employee whose duties include running errands -10135297 18 n 02 goffer 0 gopher 0 001 @ 10040945 n 0000 | a zealously energetic person (especially a salesman) -10135411 18 n 01 Gog_and_Magog 0 001 @ 09484664 n 0000 | biblical names of the enemies of God's people who wage war against God at the end of the world; "in the Book of Ezekiel Gog is a ruler from the land of Magog but in the Book of Revelation Gog and Magog are nations under the rule of Satan" -10135709 18 n 04 go-getter 0 whizz-kid 0 whiz-kid 0 ball_of_fire 0 001 @ 09767197 n 0000 | someone whose career progresses rapidly -10135842 18 n 02 goldbeater 0 gold-beater 0 001 @ 09974648 n 0000 | an artisan who beats gold into gold leaf -10135953 18 n 06 goldbrick 0 goof-off 0 ne'er-do-well 0 good-for-nothing 0 no-account 0 good-for-naught 0 003 @ 10197967 n 0000 + 02502578 a 0602 + 02502578 a 0401 | an idle worthless person -10136146 18 n 01 goldbrick 1 002 @ 10622053 n 0000 @ 10608385 n 0000 | a soldier who performs his duties without proper care or effort -10136283 18 n 01 gold_digger 1 001 @ 10787470 n 0000 | a woman who associates with or marries a rich man in order to get valuables from him through gifts or a divorce settlement -10136463 18 n 03 gold_miner 0 gold_digger 0 gold_panner 0 002 @ 10319796 n 0000 ~ 10105618 n 0000 | a miner who digs or pans for gold in a gold field -10136615 18 n 03 goldsmith 0 goldworker 0 gold-worker 0 002 @ 10221956 n 0000 ~i 10964829 n 0000 | an artisan who makes jewelry and other objects out of gold -10136775 18 n 01 golem 0 003 @ 09484664 n 0000 ;c 05985602 n 0000 ;c 06232880 n 0000 | (Jewish folklore) an artificially created human being that is given life by supernatural means -10136959 18 n 03 golfer 0 golf_player 0 linksman 0 017 @ 10439851 n 0000 + 01146793 v 0101 ~ 10035314 n 0000 ~ 10137367 n 0000 ~ 10155140 n 0000 ~ 10184683 n 0000 ~ 10304914 n 0000 ~ 10496081 n 0000 ~ 10611729 n 0000 ~i 11055454 n 0000 ~i 11090512 n 0000 ~i 11206356 n 0000 ~i 11209306 n 0000 ~i 11221650 n 0000 ~i 11281682 n 0000 ~i 11306760 n 0000 ~i 11348812 n 0000 | someone who plays the game of golf -10137367 18 n 02 golf_pro 0 professional_golfer 0 001 @ 10136959 n 0000 | someone who earns a living by playing or teaching golf -10137498 18 n 01 golf_widow 0 001 @ 10780632 n 0000 | a wife who is left alone much of the time because her husband is playing golf -10137632 18 n 01 goliard 0 001 @ 10557854 n 0000 | a wandering scholar in medieval Europe; famed for intemperance and riotous behavior and the composition of satirical and ribald Latin songs -10137825 18 n 02 gondolier 0 gondoliere 0 001 @ 09861946 n 0000 | a (Venetian) boatman who propels a gondola -10137936 18 n 02 goner 0 toast 1 001 @ 10008535 n 0000 | a person in desperate straits; someone doomed; "I'm a goner if this plan doesn't work"; "one mistake and you're toast" -10138114 18 n 01 Gongorist 0 001 @ 10462860 n 0000 | a practitioner of the affected elegant style of the Spanish poet Gongora -10138242 18 n 01 good_egg 0 003 @ 10138767 n 0000 ;u 07157273 n 0000 ! 09831731 n 0101 | (old-fashioned slang) a good person -10138369 18 n 01 good_guy 0 002 @ 00007846 n 0000 ! 09831856 n 0101 | any person who is on your side -10138472 18 n 03 good_old_boy 0 good_ole_boy 0 good_ol'_boy 0 002 @ 09641002 n 0000 @ 10628222 n 0000 | a white male Southerner with an unpretentious convivial manner and conservative or intolerant attitudes and a strong sense of fellowship with and loyalty to other members of his peer group -10138767 18 n 01 good_person 0 013 @ 00007846 n 0000 ! 09831962 n 0101 ~ 09608709 n 0000 ~ 09874428 n 0000 ~ 10131663 n 0000 ~ 10138242 n 0000 ~ 10309009 n 0000 ~ 10438952 n 0000 ~ 10535366 n 0000 ~ 10546850 n 0000 ~ 10642705 n 0000 ~ 10682850 n 0000 ~ 10730615 n 0000 | a person who is good to other people -10139077 18 n 01 good_Samaritan 0 001 @ 09608709 n 0000 | a person who voluntarily offers help or sympathy in times of trouble -10139206 18 n 01 goody-goody 0 002 @ 10684827 n 0000 + 01130614 a 0101 | a person who behaves extremely well in order to please a superior -10139347 18 n 06 gossip 0 gossiper 0 gossipmonger 0 rumormonger 0 rumourmonger 0 newsmonger 0 007 @ 09610660 n 0000 + 01041954 v 0202 + 01041954 v 0102 ~ 09900153 n 0000 ~ 10555059 n 0000 ~ 10692696 n 0000 ~ 10803282 n 0000 | a person given to gossiping and divulging personal information about others -10139651 18 n 01 gossip_columnist 0 001 @ 10356592 n 0000 | a journalist who writes a column of gossip about celebrities -10139774 18 n 01 Goth 2 003 @ 09689152 n 0000 ~ 10385923 n 0000 ~ 10756261 n 0000 | one of the Teutonic people who invaded the Roman Empire in the 3rd to 5th centuries -10139944 18 n 01 Gothic_romancer 0 002 @ 10794014 n 0000 + 06369405 n 0101 | a writer of Gothic romances -10140051 18 n 01 gouger 1 002 @ 09939313 n 0000 + 01281611 v 0101 | an attacker who gouges out the antagonist's eye -10140169 18 n 01 governess 0 001 @ 10694258 n 0000 | a woman entrusted with the care and supervision of a child (especially in a private home) -10140314 18 n 01 governor 0 012 @ 10451263 n 0000 + 02983978 a 0101 + 00592795 n 0101 + 02586619 v 0101 ~ 09852179 n 0000 ~ 10061323 n 0000 ~ 10140597 n 0000 ~ 10316683 n 0000 ~ 10348752 n 0000 ~ 10478293 n 0000 ~ 10553140 n 0000 ~ 10751785 n 0000 | the head of a state government -10140597 18 n 01 governor_general 0 001 @ 10140314 n 0000 | a governor of high rank -10140683 18 n 01 grabber 0 001 @ 09631463 n 0000 | an unpleasant person who grabs inconsiderately -10140783 18 n 01 grader 0 004 @ 09979321 n 0000 + 00657728 v 0101 + 00658052 v 0105 ~ 10790479 n 0000 | a judge who assigns grades to something -10140929 18 n 02 graduate_nurse 0 trained_nurse 0 001 @ 10366966 n 0000 | someone who has completed the course of study (including hospital practice) at a nurses training school -10141109 18 n 03 graduate_student 0 grad_student 0 postgraduate 0 002 @ 09937056 n 0000 + 01211665 a 0302 | a student who continues studies after graduation -10141268 18 n 01 grain_merchant 0 001 @ 10309896 n 0000 | a merchant who deals in food grains -10141364 18 n 02 grammarian 0 syntactician 0 006 @ 10264437 n 0000 + 06176107 n 0201 + 06176322 n 0201 ~i 10821867 n 0000 ~i 10939187 n 0000 ~i 11221778 n 0000 | a linguist who specializes in the study of grammar and syntax -10141590 18 n 01 grandchild 0 004 @ 10373998 n 0000 ~ 10141732 n 0000 ~ 10143299 n 0000 ~ 10145340 n 0000 | a child of your son or daughter -10141732 18 n 01 granddaughter 0 001 @ 10141590 n 0000 | a female grandchild -10141811 18 n 01 grand_dragon 0 002 @ 10162991 n 0000 #m 08029421 n 0000 | a high ranking person in the Ku Klux Klan -10141930 18 n 01 grand_duchess 0 001 @ 10038409 n 0000 | the wife of a grand duke or a woman holding that rank in her own right -10142060 18 n 01 grand_duke 0 002 @ 10472799 n 0000 ~i 11075021 n 0000 | a prince who rules a territory -10142166 18 n 01 grande_dame 0 001 @ 09989290 n 0000 | a middle-aged or elderly woman who is stylish and highly respected -10142290 18 n 01 grandee 0 001 @ 10271677 n 0000 | a nobleman of highest rank in Spain or Portugal -10142391 18 n 06 grandfather 0 gramps 0 granddad 0 grandad 0 granddaddy 0 grandpa 0 001 @ 10143172 n 0000 | the father of your father or mother -10142537 18 n 01 Grand_Inquisitor 0 005 @ 10208432 n 0000 ;r 09023321 n 0000 ;r 08984788 n 0000 ~i 11084895 n 0000 ~i 11345878 n 0000 | director of the court of Inquisition (especially in Spain and Portugal) -10142747 18 n 07 grandma 0 grandmother 0 granny 0 grannie 0 gran 0 nan 1 nanna 1 004 @ 10143172 n 0000 ;u 08860123 n 0704 ;u 08860123 n 0604 ~ 10345015 n 0000 | the mother of your father or mother -10142946 18 n 01 grandmaster 0 002 @ 10439851 n 0000 ~ 10211666 n 0000 | a player of exceptional or world class skill in chess or bridge -10143085 18 n 01 grand_mufti 0 001 @ 10337020 n 0000 | the chief mufti of a district -10143172 18 n 01 grandparent 0 003 @ 10102369 n 0000 ~ 10142391 n 0000 ~ 10142747 n 0000 | a parent of your father or mother -10143299 18 n 01 grandson 0 001 @ 10141590 n 0000 | a male grandchild -10143371 18 n 01 grandstander 0 002 @ 10070711 n 0000 + 01714805 v 0101 | someone who performs with an eye to the applause from spectators in the grandstand -10143530 18 n 01 granny 1 001 @ 10377021 n 0000 | an old woman -10143595 18 n 01 grantee 0 004 @ 09627906 n 0000 + 02317094 v 0101 + 02262278 v 0102 + 02255942 v 0101 | a recipient of a grant -10143725 18 n 01 granter 0 005 @ 00007846 n 0000 + 02317094 v 0101 + 02255462 v 0102 ! 10785695 n 0101 ~ 10143889 n 0000 | a person who grants or gives something -10143889 18 n 01 grantor 0 003 @ 10143725 n 0000 + 02255942 v 0101 ~ 09783776 n 0000 | a person who makes a grant in legal form; "conveyed from grantor to grantee" -10144055 18 n 02 graphic_designer 0 designer 4 002 @ 10631941 n 0000 + 06999045 n 0101 | someone who specializes in graphic design -10144188 18 n 02 graphologist 0 handwriting_expert 0 002 @ 10631941 n 0000 + 06248361 n 0101 | a specialist in inferring character from handwriting -10144338 18 n 02 grass_widower 0 divorced_man 0 001 @ 10287213 n 0000 | a man who is divorced from (or separated from) his wife -10144468 18 n 01 gravedigger 0 001 @ 10241300 n 0000 | a person who earns a living by digging graves -10144571 18 n 03 graverobber 0 ghoul 1 body_snatcher 0 001 @ 10707804 n 0000 | someone who takes bodies from graves and sells them for anatomical dissection -10144730 18 n 01 graverobber 1 001 @ 10707804 n 0000 | someone who steals valuables from graves or crypts -10144838 18 n 01 gravida 0 004 @ 10787470 n 0000 ~ 10472129 n 0000 ~ 10574723 n 0000 ~ 10703221 n 0000 | a pregnant woman -10144962 18 n 01 grazier 0 002 @ 10506417 n 0000 + 01576478 v 0102 | a rancher who grazes cattle or sheep for market -10145081 18 n 01 great 0 001 @ 09762821 n 0000 | a person who has achieved distinction and honor in some field; "he is one of the greats of American music" -10145239 18 n 02 great-aunt 0 grandaunt 0 001 @ 09823502 n 0000 | an aunt of your father or mother -10145340 18 n 01 great_grandchild 0 003 @ 10141590 n 0000 ~ 10145480 n 0000 ~ 10145902 n 0000 | a child of your grandson or granddaughter -10145480 18 n 01 great_granddaughter 0 001 @ 10145340 n 0000 | a daughter of your grandson or granddaughter -10145590 18 n 01 great_grandmother 0 001 @ 10145774 n 0000 | a mother of your grandparent -10145682 18 n 01 great_grandfather 0 001 @ 10145774 n 0000 | a father of your grandparent -10145774 18 n 01 great_grandparent 0 003 @ 10102369 n 0000 ~ 10145590 n 0000 ~ 10145682 n 0000 | a parent of your grandparent -10145902 18 n 01 great_grandson 0 001 @ 10145340 n 0000 | a son of your grandson or granddaughter -10146002 18 n 02 great-nephew 0 grandnephew 0 001 @ 10353355 n 0000 | a son of your niece or nephew -10146104 18 n 02 great-niece 0 grandniece 0 001 @ 10357613 n 0000 | a daughter of your niece or nephew -10146209 18 n 02 great-uncle 0 granduncle 0 001 @ 10736091 n 0000 | an uncle of your father or mother -10146313 18 n 01 Grecian 0 002 @ 09686536 n 0000 #m 08780881 n 0000 | a native or resident of Greece -10146416 18 n 01 Green_Beret 0 002 @ 10622053 n 0000 #m 08213424 n 0000 | a soldier who is a member of the United States Army Special Forces -10146559 18 n 01 greengrocer 0 002 @ 10147710 n 0000 ;r 08860123 n 0000 | a grocer who sells fresh fruits and vegetables -10146682 18 n 01 greenskeeper 0 002 @ 09984298 n 0000 ;c 00464894 n 0000 | someone responsible for the maintenance of a golf course -10146816 18 n 02 grenadier 0 grenade_thrower 0 001 @ 10204921 n 0000 | an infantryman equipped with grenades -10146927 18 n 03 greeter 0 saluter 0 welcomer 0 004 @ 00007846 n 0000 + 00900583 v 0301 + 00899597 v 0201 + 00897241 v 0101 | a person who greets; "the newcomers were met by smiling greeters" -10147121 18 n 01 gringo 0 001 @ 10103485 n 0000 | a Latin American (disparaging) term for foreigners (especially Americans and Englishmen) -10147262 18 n 01 grinner 0 002 @ 00007846 n 0000 + 00029025 v 0101 | a person who grins -10147352 18 n 01 griot 0 001 @ 10345804 n 0000 | a storyteller in West Africa; perpetuates the oral traditions of a family or village -10147488 18 n 01 grip 0 001 @ 10605985 n 0000 | worker who moves the camera around while a film or television show is being made -10147619 18 n 01 groaner 0 002 @ 00007846 n 0000 + 01045419 v 0101 | a person who groans -10147710 18 n 01 grocer 0 002 @ 10309896 n 0000 ~ 10146559 n 0000 | a retail merchant who sells foodstuffs (and some household supplies) -10147849 18 n 01 grocery_boy 0 001 @ 10001217 n 0000 | a delivery boy for groceries -10147935 18 n 02 groom 0 bridegroom 0 001 @ 10356066 n 0000 | a man who has recently been married -10148035 18 n 02 groom 2 bridegroom 1 002 @ 10401829 n 0000 #m 08256735 n 0000 | a man participant in his own marriage ceremony -10148165 18 n 01 groomsman 0 003 @ 09821831 n 0000 #m 08256735 n 0000 ~ 09851465 n 0000 | a male attendant of the bridegroom at a wedding -10148305 18 n 05 grouch 0 grump 0 crank 0 churl 1 crosspatch 0 008 @ 09631463 n 0000 + 01136541 a 0301 + 01136248 a 0206 + 01136248 a 0105 + 00909573 v 0101 ~ 09974054 n 0000 ~ 10091564 n 0000 ~ 10321882 n 0000 | a bad-tempered person -10148542 18 n 01 groundling 0 001 @ 10440717 n 0000 | in Elizabethan theater: a playgoer in the cheap standing section -10148663 18 n 03 groundsman 0 groundskeeper 0 groundkeeper 0 001 @ 10120671 n 0000 | someone who maintains the grounds (of an estate or park or athletic field) -10148825 18 n 01 group_captain 0 001 @ 09892693 n 0000 | a commissioned officer (especially one in the Royal Air Force) equivalent in rank to a colonel in the army -10148991 18 n 01 groupie 0 001 @ 10077593 n 0000 | an enthusiastic young fan (especially a young woman who follows rock groups around) -10149128 18 n 01 growler 0 002 @ 10630188 n 0000 + 01045719 v 0102 | a speaker whose voice sounds like a growl -10149241 18 n 01 grunt 0 001 @ 09632274 n 0000 | an unskilled or low-ranking soldier or other worker; "infantrymen in Vietnam were called grunts"; "he went from grunt to chairman in six years" -10149436 18 n 01 grunter 0 002 @ 00007846 n 0000 + 01043231 v 0101 | a person who grunts -10149527 18 n 04 guarantor 0 surety 0 warrantor 0 warranter 0 004 @ 10407954 n 0000 + 00891936 v 0402 + 00891936 v 0302 + 00891936 v 0101 | one who provides a warrant or guarantee to another -10149720 18 n 01 guard 1 001 @ 10263411 n 0000 | the person who plays that position on a football team; "the left guard was injured on the play" -10149867 18 n 06 prison_guard 0 jailer 0 jailor 0 gaoler 0 screw 0 turnkey 0 005 @ 10249459 n 0000 @ 10229498 n 0000 + 02494356 v 0408 + 02494356 v 0306 + 02494356 v 0206 | someone who guards prisoners -10150071 18 n 01 guard 3 007 @ 09614684 n 0000 + 02456031 v 0101 ~ 09869009 n 0000 ~ 10026553 n 0000 ~ 10157016 n 0000 ~ 10564224 n 0000 ~ 10770059 n 0000 | a person who keeps watch over something or someone -10150281 18 n 01 guard 4 002 @ 09842047 n 0000 ~i 11264828 n 0000 | the person who plays the position of guard on a basketball team -10150415 18 n 01 guardsman 0 002 @ 10622053 n 0000 #m 08391387 n 0000 | a soldier who is a member of a unit called `the guard' or `guards' -10150556 18 n 04 guerrilla 0 guerilla 0 irregular 0 insurgent 1 004 @ 10768585 n 0000 #m 08197895 n 0000 ~ 10292824 n 0000 ~ 10741258 n 0000 | a member of an irregular armed force that fights a stronger force by sabotage and harassment -10150794 18 n 01 guesser 0 005 @ 00007846 n 0000 + 00916909 v 0101 + 00636061 v 0101 + 00672433 v 0104 + 00631737 v 0106 | a person who guesses -10150940 18 n 02 guest 0 invitee 0 006 @ 10757193 n 0000 + 02384940 v 0201 + 02384686 v 0201 ~ 10151261 n 0000 ~ 10188472 n 0000 ~ 10772392 n 0000 | a visitor to whom hospitality is extended -10151133 18 n 01 guest 1 003 @ 09984659 n 0000 ~ 10363017 n 0000 ~ 10388647 n 0000 | a customer of a hotel or restaurant etc. -10151261 18 n 01 guest_of_honor 0 001 @ 10150940 n 0000 | the person in whose honor a gathering is held -10151367 18 n 02 guest_worker 0 guestworker 0 001 @ 10791221 n 0000 | a person with temporary permission to work in another country; "a Moroccan guestworker in Canada was accused of aiding terrorists" -10151570 18 n 01 guide 2 006 @ 09623038 n 0000 + 02159427 v 0101 + 02439732 v 0101 + 01931768 v 0108 ~ 09923003 n 0000 ~ 10718040 n 0000 | someone who shows the way by leading or advising -10151760 18 n 02 guitarist 0 guitar_player 0 006 @ 10340312 n 0000 + 03467517 n 0101 ~i 11040024 n 0000 ~i 11105298 n 0000 ~i 11123262 n 0000 ~i 11291284 n 0000 | a musician who plays the guitar -10151957 18 n 02 gulper 0 guzzler 1 002 @ 10034614 n 0000 + 01202068 v 0101 | a drinker who swallows large amounts greedily -10152083 18 n 0a gunman 0 gunslinger 0 hired_gun 0 gun 0 gun_for_hire 0 triggerman 0 hit_man 0 hitman 0 torpedo 0 shooter 1 003 @ 10338707 n 0000 + 02484570 v 0a01 + 01136614 v 0401 | a professional killer who uses a gun -10152306 18 n 01 gunnery_sergeant 0 001 @ 10580772 n 0000 | a noncommissioned officer ranking above a staff sergeant in the marines -10152440 18 n 02 gunrunner 0 arms-runner 0 001 @ 10615334 n 0000 | a smuggler of guns -10152528 18 n 01 gunsmith 0 001 @ 10614812 n 0000 | someone who makes or repairs guns -10152616 18 n 01 guru 0 003 @ 10519494 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | a Hindu or Buddhist religious leader and spiritual teacher -10152763 18 n 01 guru 1 001 @ 09623038 n 0000 | a recognized leader in some field or of some movement; "a guru of genomics" -10152889 18 n 01 Guru 2 002 @ 10519494 n 0000 ;c 06239931 n 0000 | each of the first ten leaders of the Sikh religion -10153009 18 n 01 gutter 0 003 @ 09632518 n 0000 + 01590747 v 0101 + 01591012 v 0101 | a worker who guts things (fish or buildings or cars etc.) -10153155 18 n 01 guvnor 0 003 @ 09867956 n 0000 ;r 08860123 n 0000 ;u 07157273 n 0000 | (British slang) boss -10153266 18 n 01 guzzler 0 001 @ 10034201 n 0000 | someone who drinks heavily (especially alcoholic beverages); "he's a beer guzzler every night" -10153414 18 n 04 guy 0 cat 1 hombre 0 bozo 0 002 @ 10287213 n 0000 ~ 10621140 n 0000 | an informal term for a youth or man; "a nice guy"; "the guy's only doing it for some doll" -10153594 18 n 01 gymnast 0 003 @ 09820263 n 0000 ~ 10732967 n 0000 ~i 11109192 n 0000 | an athlete who is skilled in gymnastics -10153724 18 n 01 gymnosophist 0 002 @ 10423589 n 0000 + 05962414 n 0101 | member of a Hindu sect practicing gymnosophy (especially nudism) -10153865 18 n 01 gym_rat 0 001 @ 09769076 n 0000 | someone who spends all leisure time playing sports or working out in a gymnasium or health spa -10154013 18 n 03 gynecologist 0 gynaecologist 0 woman's_doctor 0 004 @ 10632576 n 0000 + 06050901 n 0202 + 06050901 n 0101 ~i 11266920 n 0000 | a specialist in gynecology -10154186 18 n 07 Gypsy 0 Gipsy 0 Romany 0 Rommany 0 Romani 0 Roma 0 Bohemian 2 003 @ 09673495 n 0000 ~ 10131515 n 0000 ~ 10131590 n 0000 | a member of a people with dark skin and hair who speak Romany and who traditionally live by seasonal work and fortunetelling; they are believed to have originated in northern India but now are living on all continents (but mostly in Europe, North Africa, and North America) -10154601 18 n 03 hack 0 drudge 1 hacker 0 003 @ 09632274 n 0000 + 02419773 v 0207 ~ 10442417 n 0000 | one who works hard at boring tasks -10154740 18 n 03 hack 1 hack_writer 0 literary_hack 0 002 @ 10794014 n 0000 #m 08275081 n 0000 | a mediocre and disdained writer -10154871 18 n 01 hacker 1 002 @ 10481268 n 0000 + 00526441 v 0101 | a programmer for whom computing is its own reward; may enjoy the challenge of breaking into other computers but does no harm; "true hackers subscribe to a code of ethics and look down upon crackers" -10155140 18 n 01 hacker 2 001 @ 10136959 n 0000 | someone who plays golf poorly -10155222 18 n 03 hacker 3 cyber-terrorist 0 cyberpunk 1 004 @ 10481268 n 0000 @ 10702781 n 0000 ;c 00759694 n 0000 + 00763630 n 0201 | a programmer who breaks into computer systems in order to steal or change or destroy information as a form of cyber-terrorism -10155485 18 n 05 hag 0 beldam 1 beldame 1 witch 2 crone 0 001 @ 10377021 n 0000 | an ugly evil-looking old woman -10155600 18 n 01 haggler 0 002 @ 09839167 n 0000 + 02259547 v 0101 | an intense bargainer -10155692 18 n 03 hagiographer 0 hagiographist 0 hagiologist 0 002 @ 09855433 n 0000 + 06516242 n 0101 | the author of a worshipful or idealizing biography -10155849 18 n 04 hairdresser 0 hairstylist 0 stylist 1 styler 0 012 @ 09974648 n 0000 + 01666894 v 0401 + 07066659 n 0302 + 05844105 n 0301 + 05750163 n 0303 + 04928903 n 0303 + 01666894 v 0301 + 05256862 n 0203 ~ 09838895 n 0000 ~ 09934774 n 0000 ~ 09934846 n 0000 ~ 10712474 n 0000 | someone who cuts or beautifies hair -10156173 18 n 01 hairsplitter 0 001 @ 09615465 n 0000 | a disputant who makes unreasonably fine distinctions -10156284 18 n 03 hajji 0 hadji 0 haji 0 001 @ 10432532 n 0000 | an Arabic term of respect for someone who has made the pilgrimage to Mecca -10156425 18 n 01 hajji 1 001 @ 09714694 n 0000 | a general term used by foreign soldiers to refer to the Iraqi people; "to American soldiers, the hajji are the alien people from whom the enemy emerges" -10156629 18 n 02 hakim 0 hakeem 0 002 @ 09682291 n 0000 @ 10020890 n 0000 | a Muslim physician -10156726 18 n 01 hakim 1 002 @ 09682291 n 0000 @ 10541229 n 0000 | a Muslim ruler or governor or judge -10156831 18 n 01 Hakka 0 001 @ 09698108 n 0000 | a member of a people of southeastern China (especially Hong Kong, Canton, and Taiwan) who migrated from the north in the 12th century -10157016 18 n 01 halberdier 0 001 @ 10150071 n 0000 | a guard who carries a halberd (as a symbol of his duty) -10157128 18 n 01 halfback 0 002 @ 10543161 n 0000 ;c 00468480 n 0000 | (football) the running back who plays the offensive halfback position -10157271 18 n 01 half_blood 0 001 @ 10595164 n 0000 | one of siblings who have only one parent in common -10157378 18 n 01 half-caste 0 003 @ 10323999 n 0000 ;u 06717170 n 0000 ~ 10157549 n 0000 | an offensive term for the offspring of parents of different races or cultures -10157549 18 n 01 half-breed 0 002 @ 10157378 n 0000 ;u 06717170 n 0000 | an offensive term for an offspring of parents of different races (especially of Caucasian and American Indian ancestry) -10157744 18 n 09 fathead 0 goof 0 goofball 0 bozo 1 jackass 0 goose 0 cuckoo 0 twat 0 zany 1 007 @ 10100761 n 0000 + 01265108 a 0904 + 02571536 a 0908 + 00439905 a 0606 + 00439905 a 0605 + 02571536 a 0203 + 02566227 v 0205 | a man who is a stupid incompetent fool -10158010 18 n 02 ham 0 ham_actor 0 003 @ 09765278 n 0000 + 00795395 a 0101 + 01751173 v 0103 | an unskilled actor who overacts -10158139 18 n 01 ham 1 001 @ 10504426 n 0000 | a licensed amateur radio operator -10158222 18 n 01 Ham 2 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) son of Noah -10158319 18 n 01 Haman 0 002 @i 10320863 n 0000 ;c 06449735 n 0000 | (Old Testament) the minister of the Persian emperor who hated the Jews and was hanged for plotting to massacre them -10158506 18 n 01 hand 2 001 @ 10546633 n 0000 | a member of the crew of a ship; "all hands on deck" -10158608 18 n 01 handler 2 002 @ 09777353 n 0000 + 02436349 v 0104 | an agent who handles something or someone; "the senator's campaign handlers" -10158756 18 n 01 handicapped_person 0 007 @ 00007846 n 0000 ~ 09788611 n 0000 ~ 09798244 n 0000 ~ 10170866 n 0000 ~ 10398033 n 0000 ~ 10398487 n 0000 ~ 10497534 n 0000 | a person who has some condition that markedly restricts their ability to function physically or mentally or socially -10159045 18 n 02 animal_trainer 0 handler 1 003 @ 10722575 n 0000 + 01804414 v 0201 ~ 10690538 n 0000 | one who trains or exhibits animals -10159186 18 n 02 handmaid 0 handmaiden 0 001 @ 10282672 n 0000 | a personal maid or female attendant -10159289 18 n 03 handyman 0 jack_of_all_trades 0 odd-job_man 0 001 @ 10521100 n 0000 | a man skilled in various odd jobs and other small tasks -10159434 18 n 01 hanger 0 002 @ 09632518 n 0000 + 01481360 v 0101 | a worker who hangs something -10159533 18 n 01 hang_glider 0 001 @ 10529965 n 0000 | a rider of a hang glider -10159615 18 n 01 hangman 0 001 @ 10069427 n 0000 | an executioner who hangs the condemned person -10159714 18 n 01 haranguer 0 002 @ 10380672 n 0000 + 00990249 v 0101 | a public speaker who delivers a loud or forceful or angry speech -10159852 18 n 01 Hanoverian 0 003 @ 10541229 n 0000 #m 08154960 n 0000 + 03071838 a 0101 | any of the British rulers who were members of the House of Hanover -10160012 18 n 02 harasser 0 harrier 0 003 @ 09821253 n 0000 + 01789514 v 0203 + 01120759 v 0101 | a persistent attacker; "the harassers were not members of the regular army" -10160188 18 n 01 hardliner 0 001 @ 09957156 n 0000 | a conservative who is uncompromising -10160280 18 n 01 harlequin 0 001 @ 09930876 n 0000 | a clown or buffoon (after the Harlequin character in the commedia dell'arte) -10160412 18 n 02 harmonizer 0 harmoniser 0 005 @ 09624559 n 0000 + 00483181 v 0202 + 00482473 v 0202 + 00483181 v 0101 + 00482473 v 0101 | a mediator who brings one thing into harmonious agreement with another -10160624 18 n 02 harmonizer 1 harmoniser 1 003 @ 10340312 n 0000 + 01706889 v 0202 + 01706889 v 0101 | a musician who sings or plays in harmony -10160770 18 n 02 harpist 0 harper 0 004 @ 10340312 n 0000 + 01732713 v 0201 + 03494278 n 0103 + 03495258 n 0101 | someone who plays the harp -10160913 18 n 02 harpooner 0 harpooneer 0 003 @ 10605985 n 0000 + 03495671 n 0201 + 01140515 v 0101 | someone who launches harpoons -10161047 18 n 01 harpsichordist 0 003 @ 10340312 n 0000 + 03496296 n 0101 ~i 11115929 n 0000 | someone who plays the harpsichord -10161178 18 n 01 harasser 1 002 @ 10716005 n 0000 + 01789514 v 0101 | a persistent tormentor -10161273 18 n 01 harridan 0 001 @ 10561861 n 0000 | a scolding (even vicious) old woman -10161363 18 n 02 harvester 0 reaper 0 004 @ 10079399 n 0000 + 01320009 v 0201 + 01320009 v 0102 ~ 10753989 n 0000 | someone who helps to gather the harvest -10161521 18 n 02 has-been 0 back-number 0 001 @ 10376523 n 0000 | someone who is no longer popular -10161622 18 n 01 hash_head 0 001 @ 10162780 n 0000 | a user of hashish -10161695 18 n 04 Hasid 0 Hassid 0 Chasid 0 Chassid 0 002 @ 10384772 n 0000 #m 08094866 n 0000 | a member of a Jewish sect that observes a form of strict Orthodox Judaism -10161867 18 n 02 hatchet_man 0 enforcer 0 002 @ 09815790 n 0000 + 02560164 v 0201 | one whose job it is to execute unpleasant tasks for a superior -10162016 18 n 02 hatchet_man 2 iceman 2 001 @ 10338707 n 0000 | a professional killer -10162104 18 n 01 hatemonger 0 001 @ 10009671 n 0000 | one who arouses hatred for others -10162194 18 n 01 hater 0 006 @ 00007846 n 0000 + 01774136 v 0101 ~ 09754780 n 0000 ~ 09794320 n 0000 ~ 09797742 n 0000 ~ 10108832 n 0000 | a person who hates -10162354 18 n 04 hatmaker 0 hatter 0 milliner 0 modiste 1 003 @ 10284064 n 0000 @ 10309896 n 0000 + 03497657 n 0201 | someone who makes and sells hats -10162507 18 n 02 hauler 0 haulier 0 004 @ 09960688 n 0000 + 01454810 v 0101 + 01452255 v 0101 ~ 10120330 n 0000 | a haulage contractor -10162644 18 n 02 hawk 0 war_hawk 1 002 @ 10316013 n 0000 ! 10028123 n 0101 | an advocate of an aggressive policy on foreign relations -10162780 18 n 01 head 2 006 @ 10036266 n 0000 ;u 07075172 n 0000 ~ 09763272 n 0000 ~ 10161622 n 0000 ~ 10433077 n 0000 ~ 10460193 n 0000 | a user of (usually soft) drugs; "the office was full of secret heads" -10162991 18 n 03 head 0 chief 0 top_dog 0 014 @ 09623038 n 0000 + 00593108 n 0101 + 02729023 v 0101 + 02440244 v 0101 ~ 09770472 n 0000 ~ 09770949 n 0000 ~ 09892410 n 0000 ~ 10004718 n 0000 ~ 10025295 n 0000 ~ 10125561 n 0000 ~ 10125697 n 0000 ~ 10141811 n 0000 ~ 10164605 n 0000 ~ 10570019 n 0000 | a person who is in charge; "the head of the whole operation" -10163354 18 n 01 head 3 001 @ 10203839 n 0000 | an individual person; "tickets are $5 per head" -10163452 18 n 02 headhunter 0 head-shrinker 0 001 @ 10553402 n 0000 | a savage who cuts off and preserves the heads of enemies as trophies -10163593 18 n 01 headhunter 1 002 @ 10512708 n 0000 ;u 07075172 n 0000 | a recruiter of personnel (especially for corporations) -10163723 18 n 02 headliner 0 star 2 005 @ 10415638 n 0000 + 13948766 n 0201 + 01720980 v 0201 + 02631349 v 0201 + 02332445 v 0101 | a performer who receives prominent billing -10163900 18 n 01 head_linesman 0 001 @ 10101427 n 0000 | a football official in charge of recording yardage gained or lost -10164025 18 n 04 headman 0 tribal_chief 0 chieftain 0 chief 2 006 @ 09623038 n 0000 + 00590383 n 0302 ~ 10203298 n 0000 ~ 10413588 n 0000 ~i 11002040 n 0000 ~i 11269236 n 0000 | the head of a tribe or clan -10164233 18 n 03 headmaster 0 schoolmaster 0 master 6 004 @ 10474645 n 0000 + 00595146 n 0301 + 00592894 n 0101 ~ 10188856 n 0000 | presiding officer of a school -10164397 18 n 01 headmistress 0 002 @ 10474645 n 0000 + 00592999 n 0101 | a woman headmaster -10164492 18 n 01 head_nurse 0 001 @ 10366966 n 0000 | the person in charge of nursing in a medical institution -10164605 18 n 01 head_of_household 0 003 @ 10162991 n 0000 ~ 10302576 n 0000 ~ 10406765 n 0000 | the head of a household or family or tribe -10164747 18 n 02 head_of_state 0 chief_of_state 0 006 @ 10522035 n 0000 ~ 09906986 n 0000 ~ 09907196 n 0000 ~ 10467179 n 0000 ~ 10467395 n 0000 ~ 10628644 n 0000 | the chief public representative of a country who may also be the head of government -10164997 18 n 02 headsman 0 headman 1 001 @ 10069427 n 0000 | an executioner who beheads the condemned person -10165109 18 n 05 health_professional 0 primary_care_provider 0 PCP 0 health_care_provider 0 caregiver 1 008 @ 10480253 n 0000 #m 08112630 n 0000 ~ 09865547 n 0000 ~ 10049648 n 0000 ~ 10305523 n 0000 ~ 10305802 n 0000 ~ 10366966 n 0000 ~ 10421470 n 0000 | a person who helps in identifying or preventing or treating illness or disability -10165448 18 n 04 hearer 0 listener 0 auditor 1 attender 2 007 @ 09626589 n 0000 #m 08221897 n 0000 + 02170427 v 0401 + 02171039 v 0201 + 02169891 v 0201 + 02171039 v 0102 ~ 10042690 n 0000 | someone who listens attentively -10165673 18 n 01 audile 0 002 @ 09626589 n 0000 + 02868704 a 0102 | one whose mental imagery is auditory rather than visual or motor -10165808 18 n 01 motile 0 002 @ 09626589 n 0000 + 01523567 a 0101 | one whose prevailing mental imagery takes the form of inner feelings of action -10165957 18 n 02 hearing_examiner 0 hearing_officer 0 001 @ 10372373 n 0000 | an official appointed by a government agency to conduct an investigation or administrative hearing so that the agency can exercise its statutory powers -10166189 18 n 01 heartbreaker 0 001 @ 09910374 n 0000 | a charming person who is irresponsible in emotional relationships -10166313 18 n 01 heartthrob 0 001 @ 10198437 n 0000 | an object of infatuation -10166394 18 n 04 heathen 0 pagan 0 gentile 1 infidel 0 007 @ 09625789 n 0000 + 02735066 a 0301 + 01784401 a 0203 + 00571738 v 0201 + 01784401 a 0101 ~ 10166626 n 0000 ~ 10198602 n 0000 | a person who does not acknowledge your god -10166626 18 n 01 paynim 0 002 @ 10166394 n 0000 ;c 06234825 n 0000 | a heathen; a person who is not a Christian (especially a Muslim) -10166762 18 n 01 heaver 0 002 @ 10791221 n 0000 + 01455866 v 0101 | a workman who heaves freight or bulk goods (especially at a dockyard) -10166902 18 n 01 heavy_hitter 0 001 @ 10200781 n 0000 | an influential person who works hard to promote the causes they are interested in -10167042 18 n 01 heavyweight 1 001 @ 10477077 n 0000 | a professional boxer who weighs more than 190 pounds -10167152 18 n 01 heavyweight 2 001 @ 10793168 n 0000 | a wrestler who weighs more than 214 pounds -10167252 18 n 01 heavyweight 4 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 201 pounds -10167361 18 n 01 heavy 0 001 @ 09765278 n 0000 | an actor who plays villainous roles -10167448 18 n 01 Hebraist 0 002 @ 10264437 n 0000 + 06987124 n 0101 | linguist specializing in the Hebrew language -10167565 18 n 02 heckler 0 badgerer 0 003 @ 10731244 n 0000 + 01803380 v 0202 + 00907800 v 0101 | someone who tries to embarrass you with gibes and questions and objections -10167740 18 n 01 hedger 0 001 @ 10120671 n 0000 | a gardener who takes care of and trims hedges -10167838 18 n 01 hedger 1 002 @ 10634075 n 0000 + 00428067 v 0101 | someone who counterbalances one transaction (as a bet) against another in order to protect against loss -10168012 18 n 03 hedger 2 equivocator 0 tergiversator 0 003 @ 10524413 n 0000 + 00835506 v 0202 + 00809654 v 0101 | a respondent who avoids giving a clear direct answer -10168183 18 n 03 hedonist 0 pagan 2 pleasure_seeker 0 004 @ 09629246 n 0000 + 09183971 n 0101 + 06160596 n 0101 ~ 10439727 n 0000 | someone motivated by desires for sensual pleasures -10168368 18 n 01 Hegelian 0 001 @ 10099375 n 0000 | a follower of the thought of Hegel -10168457 18 n 02 Heidelberg_man 0 Homo_heidelbergensis 0 001 @ 09627462 n 0000 | a type of primitive man who lived in Europe -10168584 18 n 03 heir 0 inheritor 0 heritor 0 006 @ 09627906 n 0000 + 02315525 v 0201 ~ 10168837 n 0000 ~ 10169008 n 0000 ~ 10169147 n 0000 ~ 10169241 n 0000 | a person who is entitled by law or by the terms of a will to inherit the estate of another -10168837 18 n 01 heir_apparent 0 002 @ 10168584 n 0000 ! 10169241 n 0101 | an heir whose right to an inheritance cannot be defeated if that person outlives the ancestor -10169008 18 n 01 heir-at-law 0 001 @ 10168584 n 0000 | the person legally entitled to inherit the property of someone who dies intestate -10169147 18 n 03 heiress 0 inheritress 0 inheritrix 0 001 @ 10168584 n 0000 | a female heir -10169241 18 n 01 heir_presumptive 0 002 @ 10168584 n 0000 ! 10168837 n 0101 | a person who expects to inherit but whose right can be defeated by the birth of a nearer relative -10169419 18 n 03 hellion 0 heller 0 devil 3 002 @ 10731244 n 0000 + 01133374 a 0302 | a rowdy or mischievous person (usually a young man); "he chased the young hellions out of his yard" -10169607 18 n 01 hellhound 0 001 @ 10731244 n 0000 | a very evil man -10169678 18 n 03 hell-kite 0 hell-rooster 0 gamecock 0 001 @ 09939313 n 0000 | someone who is a very fierce fighter -10169796 18 n 03 helmsman 0 steersman 0 steerer 1 003 @ 10294602 n 0000 + 01931768 v 0301 ~ 09973624 n 0000 | the person who steers a ship -10169937 18 n 01 hierarch 1 002 @ 10200781 n 0000 #m 08376051 n 0000 | a person who holds a high position in a hierarchy -10170060 18 n 01 hire 0 001 @ 10053808 n 0000 | a newly hired employee; "the new hires need special training" -10170172 18 n 01 hired_help 0 002 @ 10053808 n 0000 ~ 10237464 n 0000 | employee hired for domestic or farm work (often used in the singular to refer to several employees collectively) -10170359 18 n 01 histologist 0 007 @ 09792237 n 0000 + 06077413 n 0101 ~i 11005780 n 0000 ~i 11152544 n 0000 ~i 11253455 n 0000 ~i 11284541 n 0000 ~i 11287734 n 0000 | anatomist who specializes in the microscopic study of animal tissues -10170598 18 n 02 helpmate 0 helpmeet 0 001 @ 10640620 n 0000 | a helpful partner -10170681 18 n 02 hematologist 0 haematologist 0 003 @ 10632576 n 0000 + 06051134 n 0202 + 06051134 n 0101 | a doctor who specializes in diseases of the blood and blood-forming organs -10170866 18 n 01 hemiplegic 0 001 @ 10158756 n 0000 | a person who has hemiplegia (is paralyzed on one side of the body) -10170989 18 n 05 hemophiliac 0 haemophiliac 0 bleeder 0 hemophile 0 haemophile 0 004 @ 10595647 n 0000 + 02850826 a 0501 + 02850826 a 0402 + 00074834 v 0302 | someone who has hemophilia and is subject to uncontrollable bleeding -10171219 18 n 02 herald 0 trumpeter 1 004 @ 10311021 n 0000 ;u 01204055 n 0000 + 00857784 v 0201 + 00977871 v 0201 | (formal) a person who announces important news; "the chieftain had a herald who announced his arrival with a trumpet" -10171456 18 n 02 herbalist 0 herb_doctor 0 001 @ 10707233 n 0000 | a therapist who heals by the use of herbs -10171567 18 n 03 herder 0 herdsman 0 drover 0 006 @ 10176679 n 0000 + 02652158 v 0101 + 02028722 v 0101 ~ 10134178 n 0000 ~ 10587605 n 0000 ~ 10683593 n 0000 | someone who drives a herd -10171755 18 n 03 heretic 0 misbeliever 0 religious_outcast 0 002 @ 10386312 n 0000 + 00684507 v 0201 | a person who holds religious beliefs in conflict with the dogma of the Roman Catholic Church -10171953 18 n 01 heretic 1 001 @ 09957834 n 0000 | a person who holds unorthodox opinions in any field (not merely religion) -10172080 18 n 06 hermaphrodite 0 intersex 0 gynandromorph 0 androgyne 0 epicene 0 epicene_person 0 007 @ 09857007 n 0000 + 02621901 a 0402 + 01478626 a 0401 + 01479025 a 0302 + 01479181 a 0102 + 01542629 a 0101 + 01479181 a 0101 | one having both male and female sexual characteristics and organs; at birth an unambiguous assignment of male or female cannot be made -10172448 18 n 05 hermit 0 recluse 0 solitary 0 solitudinarian 0 troglodyte 1 006 @ 10270628 n 0000 + 02250430 a 0303 + 02250691 a 0201 + 02578546 a 0104 + 02578546 a 0105 ~i 11087359 n 0000 | one who lives in solitude -10172668 18 n 01 herpetologist 0 002 @ 10806222 n 0000 + 06072776 n 0101 | a zoologist who studies reptiles and amphibians -10172793 18 n 02 protagonist 1 agonist 1 003 @i 09587565 n 0000 + 07495551 n 0201 ~ 10172942 n 0000 | the principal character in a work of fiction -10172942 18 n 01 antihero 0 001 @ 10172793 n 0000 | a protagonist who lacks the characteristics that would make him a hero (or her a heroine) -10173086 18 n 01 hero 4 003 @ 09484664 n 0000 ;c 07978924 n 0000 + 00251134 a 0102 | (classical mythology) a being of great strength and courage celebrated for bold exploits; often the offspring of a mortal and a god -10173305 18 n 01 heroine 1 001 @ 05929008 n 0000 | the main good female character in a work of fiction -10173410 18 n 01 heroine 0 003 @ 10787470 n 0000 ~i 10226219 n 0000 ~i 11168218 n 0000 | a woman possessing heroic qualities or a woman who has performed heroic deeds -10173579 18 n 01 heroin_addict 0 001 @ 10035952 n 0000 | someone addicted to heroin -10173665 18 n 02 hero_worshiper 0 hero_worshipper 0 001 @ 10792335 n 0000 | someone who worships heroes -10173771 18 n 01 Herr 0 001 @ 10287213 n 0000 | a German man; used before the name as a title equivalent to Mr in English -10173895 18 n 04 heterosexual 0 heterosexual_person 0 straight_person 0 straight 0 004 @ 00007846 n 0000 + 01201298 a 0401 + 01201100 a 0101 ~ 10114550 n 0000 | a heterosexual person; someone having a sexual orientation to persons of the opposite sex -10174148 18 n 01 hewer 0 003 @ 10241300 n 0000 + 01260685 v 0101 + 01260428 v 0101 | a person who hews -10174253 18 n 01 highbinder 0 001 @ 09977660 n 0000 | a corrupt politician -10174330 18 n 01 highbrow 0 002 @ 09621545 n 0000 + 01332907 a 0101 | a person of intellectual or erudite tastes -10174445 18 n 01 high_commissioner 0 001 @ 10013927 n 0000 | a senior diplomat from one country to another who is assigned ambassadorial rank -10174589 18 n 02 highflier 0 highflyer 0 001 @ 09762821 n 0000 | a person of great ability and ambition -10174695 18 n 03 Highlander 0 Scottish_Highlander 0 Highland_Scot 0 002 @ 09730533 n 0000 + 08891595 n 0101 | a native of the Highlands of Scotland -10174845 18 n 01 Highlander 1 002 @ 10622053 n 0000 + 08891595 n 0101 | a soldier in a Scottish regiment from the Highlands -10174971 18 n 02 high-muck-a-muck 0 pooh-bah 0 001 @ 10200781 n 0000 | an arrogant or conceited person of importance -10175090 18 n 01 Highness 0 002 @ 09807754 n 0000 #m 08153437 n 0000 | (Your Highness or His Highness or Her Highness) title used to address a royal person -10175248 18 n 01 high_priest 1 001 @ 09824361 n 0000 | a preeminent authority or major proponent of a movement or doctrine; "he's the high priest of contemporary jazz" -10175418 18 n 01 high_roller 0 001 @ 10118844 n 0000 | a gambler who wagers large sums -10175507 18 n 04 highjacker 0 highwayman 0 hijacker 0 road_agent 0 005 @ 10180923 n 0000 + 01471825 v 0302 + 01471825 v 0103 ~ 10102130 n 0000 ~i 11353412 n 0000 | a holdup man who stops a vehicle and steals from it -10175725 18 n 02 highjacker 1 hijacker 1 004 @ 09977660 n 0000 ;c 02691156 n 0000 + 01471825 v 0202 + 01471825 v 0103 | someone who uses force to take over a vehicle (especially an airplane) in order to reach an alternative destination -10175963 18 n 01 highway_engineer 0 001 @ 09924540 n 0000 | a civil engineer who specializes in the design and construction of roads and highways -10176111 18 n 03 hiker 0 tramp 2 tramper 1 007 @ 10412055 n 0000 + 01920698 v 0301 + 01881957 v 0201 + 01881180 v 0205 + 01920698 v 0201 + 01920932 v 0101 ~ 09830629 n 0000 | a foot traveler; someone who goes on an extended walk (for pleasure) -10176357 18 n 02 hillbilly 0 bushwhacker 0 001 @ 10544232 n 0000 | a disparaging term for an unsophisticated person -10176475 18 n 04 hippie 0 hippy 0 hipster 0 flower_child 0 002 @ 10515194 n 0000 #m 08289841 n 0000 | someone who rejects the established culture; advocates extreme liberalism in politics and lifestyle -10176679 18 n 03 hired_hand 0 hand 0 hired_man 0 005 @ 10241300 n 0000 ~ 10079399 n 0000 ~ 10171567 n 0000 ~ 10506544 n 0000 ~ 10644301 n 0000 | a hired laborer on a farm or ranch; "the hired hand fixed the railing"; "a ranch hand" -10176913 18 n 02 hireling 0 pensionary 0 001 @ 10053808 n 0000 | a person who works only for money -10177014 18 n 01 hisser 0 003 @ 09610660 n 0000 + 00862225 v 0102 + 01053771 v 0101 | someone who communicates disapproval by hissing -10177150 18 n 02 historian 0 historiographer 0 042 @ 10557854 n 0000 ;c 06155567 n 0000 + 06365357 n 0201 ~ 09794797 n 0000 ~ 09811414 n 0000 ~ 09921168 n 0000 ~i 10821699 n 0000 ~i 10840769 n 0000 ~i 10882706 n 0000 ~i 10945699 n 0000 ~i 10962837 n 0000 ~i 10979535 n 0000 ~i 10990212 n 0000 ~i 10997742 n 0000 ~i 11045569 n 0000 ~i 11092292 n 0000 ~i 11108195 n 0000 ~i 11135991 n 0000 ~i 11146914 n 0000 ~i 11149483 n 0000 ~i 11150471 n 0000 ~i 11169764 n 0000 ~i 11185044 n 0000 ~i 11206705 n 0000 ~i 11223119 n 0000 ~i 11265914 n 0000 ~i 11283517 n 0000 ~i 11284742 n 0000 ~i 11284884 n 0000 ~i 11322937 n 0000 ~i 11328524 n 0000 ~i 11341614 n 0000 ~i 11347317 n 0000 ~i 11348356 n 0000 ~i 11348584 n 0000 ~i 11351212 n 0000 ~i 11352701 n 0000 ~i 11366895 n 0000 ~i 11372599 n 0000 ~i 11385748 n 0000 ~i 11396535 n 0000 ~i 11401282 n 0000 | a person who is an authority on history and who studies it and writes about it -10178077 18 n 01 hitchhiker 0 002 @ 10403876 n 0000 + 01956955 v 0101 | a person who travels by getting free rides from passing vehicles -10178216 18 n 02 hitter 1 striker 3 006 @ 10335931 n 0000 + 01236164 v 0202 + 01410223 v 0201 + 01405044 v 0101 ~ 10608803 n 0000 ~ 10765098 n 0000 | someone who hits; "a hard hitter"; "a fine striker of the ball"; "blacksmiths are good hitters" -10178464 18 n 01 Hittite 0 001 @ 09620078 n 0000 | a member of an ancient people who inhabited Anatolia and northern Syria about 2000 to 1200 BC -10178611 18 n 01 hoarder 0 006 @ 10553627 n 0000 + 02305856 v 0101 ~ 10281276 n 0000 ~ 10322084 n 0000 ~ 10357737 n 0000 ~ 10414084 n 0000 | a person who accumulates things and hides them away for future use -10178821 18 n 01 hobbledehoy 0 001 @ 10804406 n 0000 | an awkward bad-mannered adolescent boy -10178917 18 n 02 hobbler 0 limper 0 003 @ 10412055 n 0000 + 01917244 v 0201 + 01917244 v 0103 | someone who has a limp and walks with a hobbling gait -10179069 18 n 01 hobbyist 0 002 @ 09786585 n 0000 + 00432689 n 0103 | a person who pursues an activity in their spare time for pleasure -10179207 18 n 01 hockey_coach 0 001 @ 09931640 n 0000 | a coach of hockey players -10179291 18 n 02 hockey_player 0 ice-hockey_player 0 008 @ 09820263 n 0000 @ 10439851 n 0000 ~ 09904708 n 0000 ~ 10134001 n 0000 ~ 10782135 n 0000 ~i 11015525 n 0000 ~i 11062801 n 0000 ~i 11217072 n 0000 | an athlete who plays hockey -10179527 18 n 02 hod_carrier 0 hodman 0 001 @ 10241300 n 0000 | a laborer who carries supplies to masons or bricklayers -10179649 18 n 02 hog 0 pig 0 005 @ 10576962 n 0000 + 00011327 a 0203 + 01196653 v 0204 + 02615739 v 0201 + 02304862 v 0101 | a person regarded as greedy and pig-like -10179817 18 n 01 hoister 0 002 @ 10378412 n 0000 + 01455184 v 0101 | an operator of a hoist -10179911 18 n 02 holder 0 bearer 2 003 @ 09609232 n 0000 + 02302220 v 0201 + 02302220 v 0102 | the person who is in possession of a check or note or bond or document of title that is endorsed to him or to whoever holds it; "the bond was marked `payable to bearer'" -10180178 18 n 01 holder 1 014 @ 10389398 n 0000 ~ 09629643 n 0000 ~ 09864761 n 0000 ~ 09893916 n 0000 ~ 09894040 n 0000 ~ 10202624 n 0000 ~ 10222822 n 0000 ~ 10245639 n 0000 ~ 10252075 n 0000 ~ 10331347 n 0000 ~ 10371450 n 0000 ~ 10449664 n 0000 ~ 10610096 n 0000 ~ 10700640 n 0000 | a person who holds something; "they held two hostages"; "he holds the trophy"; "she holds a United States passport" -10180580 18 n 01 holdout 0 003 @ 10351874 n 0000 + 01116585 v 0102 + 02641741 v 0101 | a negotiator who hopes to gain concessions by refusing to come to terms; "their star pitcher was a holdout for six weeks" -10180791 18 n 02 holdover 0 hangover 0 002 @ 10372373 n 0000 + 02643280 v 0101 | an official who remains in office after his term -10180923 18 n 02 holdup_man 0 stickup_man 0 002 @ 10707804 n 0000 ~ 10175507 n 0000 | an armed thief -10181026 18 n 01 Holy_Roller 0 001 @ 09922485 n 0000 | a member of a religion that expresses ecstatic fervor -10181137 18 n 01 Holy_Roman_Emperor 0 012 @ 10053004 n 0000 ~i 10891981 n 0000 ~i 10892947 n 0000 ~i 10968835 n 0000 ~i 10968956 n 0000 ~i 10969118 n 0000 ~i 10977542 n 0000 ~i 10979887 n 0000 ~i 10980256 n 0000 ~i 11042036 n 0000 ~i 11043389 n 0000 ~i 11218625 n 0000 | sovereign of the Holy Roman Empire -10181445 18 n 01 homeboy 0 001 @ 09763784 n 0000 | a male friend from your neighborhood or hometown -10181547 18 n 01 homeboy 1 002 @ 10307234 n 0000 #p 08244747 n 0000 | a fellow male member of a youth gang -10181656 18 n 04 homebuilder 0 home-builder 0 housebuilder 0 house-builder 0 001 @ 09878275 n 0000 | someone who builds houses as a business -10181799 18 n 01 home_buyer 0 001 @ 09885145 n 0000 | someone buying a house -10181878 18 n 01 homegirl 0 002 @ 10307234 n 0000 #m 08244747 n 0000 | a fellow female member of a youth gang -10181990 18 n 01 home_help 0 002 @ 10024119 n 0000 ;r 08860123 n 0000 | a person hired to help in another's home (especially one employed by a local authority to help the infirm with domestic work) -10182190 18 n 02 homeless 0 homeless_person 0 004 @ 09630641 n 0000 #m 07948314 n 0000 + 01050603 a 0102 ~ 09832633 n 0000 | someone unfortunate without housing; "a homeless was found murdered in Central Park" -10182402 18 n 02 homeopath 0 homoeopath 0 001 @ 10462860 n 0000 | a practitioner of homeopathy -10182499 18 n 02 homeowner 0 householder 0 003 @ 10389398 n 0000 + 08078020 n 0202 ~ 10772721 n 0000 | someone who owns a home -10182628 18 n 02 Home_Secretary 0 Secretary_of_State_for_the_Home_Department 0 002 @ 09886010 n 0000 #m 08382056 n 0000 | the British cabinet minister who is head of the Home Office -10182812 18 n 01 homophobe 0 001 @ 09853645 n 0000 | a person who hates or fears homosexual people -10182913 18 n 04 homosexual 0 homophile 0 homo 0 gay 0 005 @ 00007846 n 0000 + 01201937 a 0401 + 01201422 a 0101 ~ 10122645 n 0000 ~ 10254965 n 0000 | someone who practices homosexuality; having a sexual attraction to persons of the same sex -10183157 18 n 01 homunculus 1 001 @ 00007846 n 0000 | a tiny fully formed individual that (according to the discredited theory of preformation) is supposed to be present in the sperm cell -10183347 18 n 01 honest_woman 0 001 @ 10780632 n 0000 | a wife who has married a man with whom she has been living for some time (especially if she is pregnant at the time); "he made an honest woman of her" -10183556 18 n 01 honker 0 003 @ 10034906 n 0000 + 02183175 v 0101 + 01053495 v 0101 | a driver who causes his car's horn to make a loud honking sound; "the honker was fined for disturbing the peace" -10183757 18 n 01 honoree 0 004 @ 09627906 n 0000 + 02546075 v 0101 ~ 09759501 n 0000 ~ 10249011 n 0000 | a recipient of honors in recognition of noteworthy accomplishments -10183931 18 n 02 honor_guard 0 guard_of_honor 0 001 @ 10063461 n 0000 | an escort for a distinguished guest or for the casket at a military funeral -10184081 18 n 08 hood 0 hoodlum 0 goon 2 punk 0 thug 0 tough 0 toughie 0 strong-armer 0 004 @ 09977660 n 0000 + 02515443 v 0801 + 01397707 v 0801 ~ 09879552 n 0000 | an aggressive and violent young criminal -10184290 18 n 01 hoodoo 0 003 @ 10471250 n 0000 @ 06245816 n 0000 + 02726717 v 0101 | a practitioner of voodoo -10184403 18 n 02 hoofer 0 stepper 0 002 @ 09989502 n 0000 + 01709781 v 0101 | a professional dancer -10184505 18 n 01 hooker 1 002 @ 09820263 n 0000 ;c 00470966 n 0000 | (rugby) the player in the middle of the front row of the scrum who tries to capture the ball with the foot -10184683 18 n 01 hooker 2 002 @ 10136959 n 0000 + 01409177 v 0101 | a golfer whose shots typically curve left (for right-handed golfers) -10184822 18 n 01 Hooray_Henry 0 002 @ 10287213 n 0000 ;r 08860123 n 0000 | a lively and ineffectual upper-class young man -10184946 18 n 01 hope 0 004 @ 00007846 n 0000 + 01811441 v 0101 + 01826723 v 0101 ~ 10778999 n 0000 | someone (or something) on which expectations are centered; "he was their best hope for a victory" -10185148 18 n 01 hoper 0 004 @ 00007846 n 0000 + 01826723 v 0101 + 01811441 v 0101 + 00706047 v 0101 | a person who hopes; "only an avid hoper could expect the team to win now" -10185327 18 n 01 hopper 0 003 @ 10226803 n 0000 + 02095211 v 0101 + 01966861 v 0101 | someone who hops; "at hopscotch, the best hoppers are the children" -10185483 18 n 01 hornist 0 001 @ 10340312 n 0000 | a musician who plays a horn (especially a French horn) -10185591 18 n 01 horse_doctor 0 001 @ 10749715 n 0000 | a veterinarian who treats horses -10185682 18 n 02 horseman 1 horse_fancier 0 001 @ 09794426 n 0000 | a person who breeds and cares for horses -10185793 18 n 03 horseman 0 equestrian 0 horseback_rider 0 010 @ 10529965 n 0000 + 02721220 a 0201 + 05638374 n 0101 ~ 09836786 n 0000 ~ 09883630 n 0000 ~ 10108348 n 0000 ~ 10186143 n 0000 ~ 10223177 n 0000 ~ 10459212 n 0000 ~ 10540413 n 0000 | a man skilled in equitation -10186068 18 n 01 horse_trader 0 001 @ 10720453 n 0000 | a hard bargainer -10186143 18 n 01 horsewoman 0 001 @ 10185793 n 0000 | a woman horseman -10186216 18 n 02 horse_wrangler 0 wrangler 0 002 @ 09972661 n 0000 + 02652376 v 0201 | a cowboy who takes care of the saddle horses -10186350 18 n 02 horticulturist 0 plantsman 0 004 @ 09617867 n 0000 + 00918383 n 0102 ~ 10120533 n 0000 ~i 10872105 n 0000 | an expert in the science of cultivating plants (fruit or flowers or vegetables or ornamental plants) -10186578 18 n 01 hosier 0 001 @ 10592152 n 0000 | a tradesman who sells hosiery and (in England) knitwear -10186686 18 n 01 hospital_chaplain 0 001 @ 09908508 n 0000 | a chaplain in a hospital -10186774 18 n 03 host 0 innkeeper 0 boniface 1 005 @ 10408324 n 0000 + 01194418 v 0101 ~ 10187059 n 0000 ~ 10390807 n 0000 ~ 10753182 n 0000 | the owner or manager of an inn -10186950 18 n 01 hosteller 1 001 @ 09629752 n 0000 | a traveler who lodges in hostels; "a youth hosteller" -10187059 18 n 01 hostess 0 001 @ 10186774 n 0000 | a woman innkeeper -10187130 18 n 01 host 2 003 @ 09605289 n 0000 + 01194418 v 0101 ~ 10187491 n 0000 | a person who invites guests to a social event (such as a party in his or her own home) and who is responsible for them while they are there -10187356 18 n 01 host 3 002 @ 09627906 n 0000 ;c 06043075 n 0000 | (medicine) recipient of transplanted tissue or organ from a donor -10187491 18 n 01 hostess 2 001 @ 10187130 n 0000 | a woman host -10187557 18 n 02 hostage 0 surety 1 001 @ 10476086 n 0000 | a prisoner who is held by one party to insure that another party will meet specified terms -10187710 18 n 02 hotdog 0 hot_dog 0 001 @ 10070711 n 0000 | someone who performs dangerous stunts to attract attention to himself -10187842 18 n 03 hotel_detective 0 house_detective 0 house_dick 0 001 @ 10476671 n 0000 | a private detective employed by a hotel or retail store -10187990 18 n 05 hotelier 0 hotelkeeper 0 hotel_manager 0 hotelman 0 hosteller 2 002 @ 09770949 n 0000 ~i 11263558 n 0000 | an owner or manager of hotels -10188146 18 n 01 hotspur 0 001 @ 09606009 n 0000 | a rash or impetuous person -10188226 18 n 02 housebreaker 0 cat_burglar 0 001 @ 09880741 n 0000 | a burglar who unlawfully breaks into and enters another person's house -10188369 18 n 01 housefather 0 001 @ 10287213 n 0000 | a man in charge of children in an institution -10188472 18 n 02 house_guest 0 houseguest 0 001 @ 10150940 n 0000 | a guest entertained in your house -10188576 18 n 02 house_husband 0 househusband 0 001 @ 10193967 n 0000 | a husband who keeps house while his wife earns the family income -10188715 18 n 01 housekeeper 0 002 @ 10024119 n 0000 + 02683316 v 0101 | a servant who is employed to perform domestic task in a household -10188856 18 n 01 housemaster 0 001 @ 10164233 n 0000 | teacher in charge of a school boardinghouse -10188957 18 n 01 housemate 0 001 @ 10523519 n 0000 | someone who resides in the same house with you -10189059 18 n 01 housemother 0 001 @ 09908273 n 0000 | a woman employed as a chaperon in a residence for young people -10189179 18 n 01 house_painter 0 001 @ 10393909 n 0000 | a painter of houses a similar buildings -10189278 18 n 03 house_physician 0 resident 1 resident_physician 0 001 @ 10020890 n 0000 | a physician (especially an intern) who lives in a hospital and cares for hospitalized patients under the supervision of the medical staff of the hospital; "the resident was receiving special clinical training at the hospital" -10189597 18 n 01 house_sitter 0 001 @ 09984298 n 0000 | a custodian who lives in and cares for a house while the regular occupant is away (usually without an exchange of money) -10189776 18 n 04 housewife 0 homemaker 0 lady_of_the_house 0 woman_of_the_house 0 002 @ 10780632 n 0000 + 01039556 a 0101 | a wife who manages a household while her husband earns the family income -10189975 18 n 02 housewrecker 0 housebreaker 2 001 @ 10792856 n 0000 | a wrecker of houses; "in England a housewrecker is called a housebreaker" -10190122 18 n 01 housing_commissioner 0 001 @ 09943811 n 0000 | a commissioner in charge of public housing -10190231 18 n 01 Houyhnhnm 0 001 @i 09587565 n 0000 | one of a race of intelligent horses who ruled the Yahoos in a novel by Jonathan Swift -10190373 18 n 01 Huayna_Capac 0 001 @ 09727323 n 0000 | the Incan ruler under whom the Incan empire reached its widest extent (died in 1525) -10190516 18 n 02 huckster 0 cheap-jack 0 003 @ 10577284 n 0000 + 02259547 v 0104 + 02302817 v 0103 | a seller of shoddy goods -10190644 18 n 01 huckster 1 001 @ 09773962 n 0000 | a person who writes radio or tv advertisements -10190745 18 n 01 huddler 1 002 @ 00007846 n 0000 + 02063988 v 0101 | a person who crouches; "low huddlers against the wind" -10190871 18 n 01 huddler 0 004 @ 10307234 n 0000 #m 08184439 n 0000 #m 07144416 n 0000 + 02027226 v 0101 | a member of a huddle -10191001 18 n 01 hugger 0 002 @ 00007846 n 0000 + 01424456 v 0102 | a person who hugs -10191089 18 n 01 Huguenot 0 001 @ 09889346 n 0000 | a French Calvinist of the 16th or 17th centuries -10191192 18 n 01 humanist 0 006 @ 10557854 n 0000 + 08476829 n 0101 ~ 09926656 n 0000 ~ 10291942 n 0000 ~ 10423225 n 0000 ~i 10959857 n 0000 | a classical scholar or student of the liberal arts -10191388 18 n 02 humanist 1 humanitarian 1 004 @ 09774783 n 0000 + 05967402 n 0201 + 05967191 n 0101 + 05967402 n 0102 | an advocate of the principles of humanism; someone concerned with the interests and welfare of humans -10191613 18 n 03 humanitarian 0 do-gooder 0 improver 0 003 @ 09608709 n 0000 + 00205885 v 0302 + 02290956 v 0202 | someone devoted to the promotion of human welfare and to social reforms -10191802 18 n 01 hummer 0 002 @ 10599806 n 0000 + 01055829 v 0101 | a singer who produces a tune without opening the lips or forming words -10191943 18 n 02 humorist 0 humourist 0 020 @ 09616922 n 0000 + 06776138 n 0203 + 04650201 n 0202 + 05211044 n 0202 + 06776138 n 0102 + 04650201 n 0101 + 05211044 n 0101 ~ 10400998 n 0000 ~ 10493093 n 0000 ~ 10552742 n 0000 ~ 10762342 n 0000 ~i 10843705 n 0000 ~i 10900730 n 0000 ~i 11117744 n 0000 ~i 11121451 n 0000 ~i 11122439 n 0000 ~i 11158364 n 0000 ~i 11268883 n 0000 ~i 11296279 n 0000 ~i 11341760 n 0000 | someone who acts speaks or writes in an amusing way -10192412 18 n 03 humpback 0 hunchback 0 crookback 0 002 @ 09978889 n 0000 + 01019000 a 0301 | a person whose back is hunched because of abnormal curvature of the upper spine -10192588 18 n 01 Hun 2 001 @ 10359759 n 0000 | a member of a nomadic people who invaded Europe in the 4th century -10192704 18 n 01 hunger_marcher 0 002 @ 10737860 n 0000 #m 08428252 n 0000 | an unemployed person who participates in a hunger march -10192839 18 n 01 hunk 0 001 @ 10287213 n 0000 | a well-built sexually attractive man -10192926 18 n 01 hunted_person 0 002 @ 10752093 n 0000 ~ 10494778 n 0000 | a person who is hunted -10193026 18 n 02 hunter 0 huntsman 0 018 @ 10605985 n 0000 + 02003601 v 0102 + 01144657 v 0101 + 01143838 v 0101 ~ 09869317 n 0000 ~ 09971682 n 0000 ~ 09995757 n 0000 ~ 10038547 n 0000 ~ 10076604 n 0000 ~ 10108240 n 0000 ~ 10193650 n 0000 ~ 10265200 n 0000 ~ 10460501 n 0000 ~ 10615808 n 0000 ~ 10646433 n 0000 ~ 10720097 n 0000 ~ 10726233 n 0000 ~i 11202477 n 0000 | someone who hunts game -10193419 18 n 01 hunter-gatherer 0 002 @ 10553402 n 0000 #m 08288518 n 0000 | a member of a hunting and gathering society -10193543 18 n 01 hunting_guide 0 001 @ 10562749 n 0000 | guide to people hunting in unfamiliar territory -10193650 18 n 01 huntress 0 001 @ 10193026 n 0000 | a woman hunter -10193719 18 n 01 hunter 1 003 @ 10575787 n 0000 + 01316401 v 0101 ~ 10102222 n 0000 | a person who searches for something; "a treasure hunter" -10193864 18 n 01 hurdler 0 002 @ 09820263 n 0000 + 01967205 v 0101 | an athlete who runs the hurdles -10193967 18 n 03 husband 0 hubby 0 married_man 0 009 @ 10640620 n 0000 + 01039687 a 0101 + 01735622 a 0101 ! 10780632 n 0101 ~ 09849990 n 0000 ~ 09982152 n 0000 ~ 10077394 n 0000 ~ 10188576 n 0000 ~ 10744078 n 0000 | a married man; a woman's partner in marriage -10194231 18 n 02 ex-husband 0 ex 1 001 @ 10287213 n 0000 | a man who was formerly a certain woman's husband -10194341 18 n 01 hussar 0 001 @ 09902353 n 0000 | a member of a European light cavalry unit; renowned for elegant dress -10194463 18 n 01 Hussite 0 001 @ 10016103 n 0000 | an adherent of the religious reforms of John Huss -10194566 18 n 03 hustler 0 wheeler_dealer 0 operator 2 004 @ 10379376 n 0000 ;u 07075172 n 0000 + 02322596 v 0101 ~ 10783881 n 0000 | a shrewd or unscrupulous person who knows how to circumvent difficulties -10194775 18 n 01 hydrologist 0 001 @ 10127689 n 0000 | a geologist skilled in hydrology -10194865 18 n 01 hydromancer 0 002 @ 10020031 n 0000 + 05777149 n 0101 | one who practices hydromancy -10194969 18 n 01 hygienist 0 001 @ 10632576 n 0000 | a medical specialist in hygiene -10195056 18 n 01 hyperope 0 001 @ 10757625 n 0000 | a person with hyperopia; a farsighted person -10195155 18 n 01 hypertensive 0 001 @ 10405694 n 0000 | a person who has abnormally high blood pressure -10195261 18 n 05 hypnotist 0 hypnotizer 0 hypnotiser 0 mesmerist 0 mesmerizer 0 006 @ 10488865 n 0000 + 00158996 n 0502 + 00158996 n 0402 + 00020671 v 0302 + 00020671 v 0201 + 00158996 n 0101 | a person who induces hypnosis -10195487 18 n 01 hypochondriac 0 001 @ 10405694 n 0000 | a patient with imaginary symptoms and ailments -10195593 18 n 06 hypocrite 0 dissembler 0 dissimulator 0 phony 0 phoney 0 pretender 1 007 @ 09998101 n 0000 + 01117477 a 0504 + 01117477 a 0403 + 00838043 v 0205 ~ 10615179 n 0000 ~ 10691937 n 0000 ~ 10777894 n 0000 | a person who professes beliefs and opinions that he or she does not hold in order to conceal his or her real feelings or motives -10195942 18 n 01 hypotensive 0 001 @ 10405694 n 0000 | a person who has abnormally low blood pressure -10196046 18 n 01 hysteric 0 001 @ 10354898 n 0000 | a person suffering from hysteria -10196133 18 n 01 Iberian 0 002 @ 09686536 n 0000 #m 08984567 n 0000 | a native or inhabitant of the Iberian Peninsula (especially in ancient times) -10196283 18 n 01 Iberian 1 002 @ 09641757 n 0000 #m 09018647 n 0000 | a native or inhabitant of Iberia in the Caucasus -10196404 18 n 01 iceman 0 001 @ 10001217 n 0000 | someone who cuts and delivers ice -10196490 18 n 01 ice-skater 0 003 @ 10604491 n 0000 + 01937222 v 0101 ~ 10634849 n 0000 | someone who engages in ice skating -10196617 18 n 01 ichthyologist 0 002 @ 10806222 n 0000 + 06072912 n 0101 | a zoologist who studies fishes -10196725 18 n 01 iconoclast 0 001 @ 09821253 n 0000 | someone who attacks cherished ideas or traditional institutions -10196845 18 n 02 iconoclast 1 image_breaker 0 001 @ 10008716 n 0000 | a destroyer of images used in religious worship -10196965 18 n 02 idealist 0 dreamer 1 006 @ 10756641 n 0000 + 01637633 v 0201 + 04870643 n 0102 + 05152696 n 0101 ~ 10026261 n 0000 ~ 10537822 n 0000 | someone guided more by ideals than by practical considerations -10197182 18 n 03 identical_twin 0 monozygotic_twin 0 monozygous_twin 0 002 @ 10734394 n 0000 ~ 10595012 n 0000 | either of two twins developed from the same fertilized ovum (having the same genetic material) -10197392 18 n 02 ideologist 0 ideologue 0 003 @ 09774783 n 0000 + 05779568 n 0101 + 06212839 n 0102 | an advocate of some ideology -10197525 18 n 07 idiot 0 imbecile 0 cretin 0 moron 0 changeling 1 half-wit 1 retard 0 007 @ 10599354 n 0000 + 00440286 v 0702 + 01841179 a 0301 + 01840880 a 0103 + 01840880 a 0202 + 01841054 a 0401 ~ 10328560 n 0000 | a person of subnormal intelligence -10197780 18 n 01 idiot_savant 0 001 @ 10599354 n 0000 | person who is mentally retarded in general but who displays remarkable aptitude in some limited field (usually involving memory) -10197967 18 n 05 idler 0 loafer 0 do-nothing 0 layabout 0 bum 3 020 @ 09626031 n 0000 + 02270404 v 0502 + 01998535 a 0301 + 02639606 v 0207 + 02417504 v 0101 ~ 09929988 n 0000 ~ 09944529 n 0000 ~ 09988703 n 0000 ~ 09993252 n 0000 ~ 09993901 n 0000 ~ 10135953 n 0000 ~ 10251329 n 0000 ~ 10258896 n 0000 ~ 10271451 n 0000 ~ 10608385 n 0000 ~ 10612931 n 0000 ~ 10637038 n 0000 ~ 10675010 n 0000 ~ 10729330 n 0000 ~ 10779775 n 0000 | person who does no work; "a lazy bum" -10198437 18 n 02 idol 0 matinee_idol 0 004 @ 10648696 n 0000 + 01778017 v 0101 + 01778017 v 0102 ~ 10166313 n 0000 | someone who is adored blindly and excessively -10198602 18 n 04 idolater 0 idolizer 0 idoliser 0 idol_worshiper 0 003 @ 10166394 n 0000 + 01044084 n 0101 ~ 10198759 n 0000 | a person who worships idols -10198759 18 n 01 idolatress 0 001 @ 10198602 n 0000 | a woman idolater -10198832 18 n 02 idolizer 1 idoliser 1 002 @ 09622302 n 0000 + 01778017 v 0101 | a lover blind with admiration and devotion -10198958 18 n 03 ignoramus 0 know_nothing 0 uneducated_person 0 003 @ 09632274 n 0000 ~ 09783884 n 0000 ~ 10199103 n 0000 | an ignorant person -10199103 18 n 03 illiterate 0 illiterate_person 0 nonreader 1 003 @ 10198958 n 0000 ~ 09790047 n 0000 ~ 10116093 n 0000 | a person unable to read -10199251 18 n 02 imam 0 imaum 0 003 @ 09623038 n 0000 @ 09682291 n 0000 ;c 06234825 n 0000 | (Islam) the man who leads prayers in a mosque; for Shiites an imam is a recognized authority on Islamic theology and law and a spiritual guide -10199489 18 n 01 immigrant 0 002 @ 10314952 n 0000 + 00413432 v 0101 | a person who comes to a country where they were not born in order to settle there -10199644 18 n 01 immortal 2 001 @ 09903153 n 0000 | a person (such as an author) of enduring fame; "Shakespeare is one of the immortals" -10199783 18 n 01 immune 0 002 @ 00007846 n 0000 ~ 09897350 n 0000 | a person who is immune to a particular infection -10199902 18 n 01 immunologist 0 003 @ 10306004 n 0000 + 06051542 n 0101 ~i 11170913 n 0000 | a medical scientist who specializes in immunology -10200047 18 n 07 imp 0 scamp 0 monkey 0 rascal 1 rapscallion 1 scalawag 1 scallywag 1 004 @ 09917593 n 0000 + 02122379 a 0402 + 01586018 v 0303 ~ 10702483 n 0000 | one who is playfully mischievous -10200246 18 n 01 imperialist 0 003 @ 09848489 n 0000 + 06661396 n 0101 + 06218308 n 0101 | a believer in imperialism -10200365 18 n 02 impersonator 0 imitator 1 003 @ 09998101 n 0000 + 00837288 v 0102 ~ 10319163 n 0000 | someone who (fraudulently) assumes the appearance of another -10200531 18 n 02 import 0 importee 0 003 @ 10103485 n 0000 + 02346136 v 0201 + 02346136 v 0101 | an imported person brought from a foreign country; "the lead role was played by an import from Sweden"; "they are descendants of indentured importees" -10200781 18 n 03 important_person 0 influential_person 0 personage 1 024 @ 09605289 n 0000 ~ 09853881 n 0000 ~ 09903153 n 0000 ~ 09938991 n 0000 ~ 10048612 n 0000 ~ 10052244 n 0000 ~ 10068928 n 0000 ~ 10094046 n 0000 ~ 10166902 n 0000 ~ 10169937 n 0000 ~ 10174971 n 0000 ~ 10233248 n 0000 ~ 10235142 n 0000 ~ 10281176 n 0000 ~ 10344443 n 0000 ~ 10353475 n 0000 ~ 10449845 n 0000 ~ 10462217 n 0000 ~ 10545187 n 0000 ~ 10601644 n 0000 ~ 10619409 n 0000 ~ 10674896 n 0000 ~ 10748620 n 0000 ~ 10792506 n 0000 | a person whose actions and opinions strongly influence the course of events -10201366 18 n 01 importer 0 002 @ 09882716 n 0000 + 02346136 v 0101 | someone whose business involves importing goods from outside (especially from a foreign country) -10201535 18 n 0b imposter 0 impostor 0 pretender 0 fake 0 faker 0 fraud 0 sham 0 shammer 0 pseudo 0 pseud 0 role_player 1 014 @ 09998101 n 0000 + 01721754 v 0803 + 00838043 v 0802 + 01116857 a 0707 + 01721754 v 0703 + 02576921 v 0503 + 00839526 v 0504 + 01117477 a 0402 + 02576921 v 0403 + 01654271 v 0402 + 01721556 v 0302 + 00838043 v 0303 ~ 10344656 n 0000 ~ 10531445 n 0000 | a person who makes deceitful pretenses -10201956 18 n 01 impressionist 0 002 @ 10391653 n 0000 + 03565051 n 0101 | a painter who follows the theories of Impressionism -10202085 18 n 01 inamorata 0 002 @ 10787470 n 0000 @ 09622302 n 0000 | a woman with whom you are in love or have an intimate relationship -10202225 18 n 01 inamorato 0 002 @ 10287213 n 0000 @ 09622302 n 0000 | a man with whom you are in love or have an intimate relationship -10202363 18 n 02 incompetent 0 incompetent_person 0 003 @ 09632274 n 0000 ~ 09879744 n 0000 ~ 10612645 n 0000 | someone who is not competent to take effective action -10202531 18 n 01 incubus 1 001 @ 09631463 n 0000 | someone who depresses or worries others -10202624 18 n 02 incumbent 0 officeholder 0 003 @ 10372373 n 0000 @ 10180178 n 0000 ~ 10371221 n 0000 | the official who holds an office -10202763 18 n 01 incurable 0 001 @ 10595647 n 0000 | a person whose disease is incurable -10202854 18 n 01 index_case 0 002 @ 10405694 n 0000 ;c 06050024 n 0000 | the earliest documented case of a disease that is included in an epidemiological study -10203016 18 n 01 indexer 0 003 @ 10605985 n 0000 + 02472817 v 0101 + 02354112 v 0101 | someone who provides an index -10203135 18 n 01 Indian_agent 0 001 @ 10373801 n 0000 | a representative of the federal government to American Indian tribes (especially on Indian reservations) -10203298 18 n 02 Indian_chief 0 Indian_chieftain 0 015 @ 10164025 n 0000 ~ 10544940 n 0000 ~i 10852320 n 0000 ~i 10903570 n 0000 ~i 10914779 n 0000 ~i 10996677 n 0000 ~i 11049278 n 0000 ~i 11092126 n 0000 ~i 11101843 n 0000 ~i 11163582 n 0000 ~i 11245382 n 0000 ~i 11252392 n 0000 ~i 11255917 n 0000 ~i 11293157 n 0000 ~i 11303698 n 0000 | the leader of a group of Native Americans -10203682 18 n 01 Indian_giver 0 002 @ 10025730 n 0000 ;u 06717170 n 0000 | an offensive term for someone who asks you to return a present he has given you -10203839 18 n 01 individual 0 003 @ 00004475 n 0000 + 00651759 v 0101 ~ 10163354 n 0000 | a single organism -10203949 18 n 01 inductee 1 003 @ 10307234 n 0000 + 02390470 v 0102 + 02384275 v 0101 | a person inducted into an organization or social group; "Ty Cobb and Babe Ruth were 1936 inductees in the National Baseball Hall of Fame" -10204177 18 n 01 industrialist 0 028 @ 09882007 n 0000 + 08065234 n 0101 + 08364757 n 0101 ~i 10882988 n 0000 ~i 10909471 n 0000 ~i 10918679 n 0000 ~i 10921009 n 0000 ~i 10927104 n 0000 ~i 10947628 n 0000 ~i 10974592 n 0000 ~i 10975101 n 0000 ~i 10975202 n 0000 ~i 10982295 n 0000 ~i 11000172 n 0000 ~i 11018862 n 0000 ~i 11038657 n 0000 ~i 11059079 n 0000 ~i 11064834 n 0000 ~i 11111710 n 0000 ~i 11115558 n 0000 ~i 11210383 n 0000 ~i 11215724 n 0000 ~i 11218290 n 0000 ~i 11219121 n 0000 ~i 11220149 n 0000 ~i 11267113 n 0000 ~i 11300089 n 0000 ~i 11307937 n 0000 | someone who manages or has significant financial interest in an industrial enterprise -10204833 18 n 01 infanticide 0 001 @ 10338707 n 0000 | a person who murders an infant -10204921 18 n 04 infantryman 0 marcher 0 foot_soldier 0 footslogger 0 006 @ 10622053 n 0000 + 01921204 v 0402 ~ 10116579 n 0000 ~ 10146816 n 0000 ~ 10205138 n 0000 ~ 10341446 n 0000 | fights on foot with small arms -10205138 18 n 01 doughboy 0 001 @ 10204921 n 0000 | an American infantryman in World War I -10205231 18 n 01 inferior 0 002 @ 10099375 n 0000 ! 10676018 n 0101 | one of lesser rank or station or quality -10205344 18 n 01 infernal 0 001 @ 09994943 n 0000 | an inhabitant of Hell; "his roar made the infernals quake" -10205457 18 n 01 infielder 0 009 @ 10086568 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 + 02799593 n 0103 ~ 09901143 n 0000 ~ 10092488 n 0000 ~ 10568200 n 0000 ~ 10592986 n 0000 ~ 10708976 n 0000 | (baseball) a person who plays a position in the infield -10205714 18 n 01 infiltrator 0 002 @ 10213652 n 0000 + 01913363 v 0101 | an intruder (as troops) with hostile intent -10205833 18 n 01 infiltrator 1 002 @ 10641755 n 0000 + 02435634 v 0101 | someone who takes up a position surreptitiously for the purpose of espionage -10205985 18 n 02 informant 0 source 1 006 @ 09610660 n 0000 + 00831651 v 0101 ~ 10206173 n 0000 ~ 10251612 n 0000 ~ 10404810 n 0000 ~ 10777400 n 0000 | a person who supplies information -10206173 18 n 05 informer 0 betrayer 1 rat 2 squealer 0 blabber 0 011 @ 10205985 n 0000 + 00937208 v 0505 + 01036804 v 050d + 00819508 v 0402 + 00841986 v 0305 + 02537407 v 0201 + 00841986 v 0203 + 00833199 v 0101 ~ 10091012 n 0000 ~ 10345659 n 0000 ~ 10675481 n 0000 | one who reveals confidential information in return for money -10206506 18 n 01 ingenue 0 001 @ 09622049 n 0000 | an artless innocent young girl (especially as portrayed on the stage) -10206629 18 n 01 ingenue 1 001 @ 09765278 n 0000 | an actress who specializes in playing the role of an artless innocent young girl -10206763 18 n 03 ingrate 0 thankless_wretch 0 ungrateful_person 0 001 @ 09631129 n 0000 | a person who shows no gratitude -10206887 18 n 04 initiate 0 learned_person 0 pundit 0 savant 0 003 @ 10557854 n 0000 + 02390470 v 0101 ~ 10207077 n 0000 | someone who has been admitted to membership in a scholarly field -10207077 18 n 01 polymath 0 001 @ 10206887 n 0000 | a person of great and varied learning -10207169 18 n 02 in-law 0 relative-in-law 0 007 @ 10235549 n 0000 ~ 09877288 n 0000 ~ 09993040 n 0000 ~ 10082043 n 0000 ~ 10333317 n 0000 ~ 10603766 n 0000 ~ 10624915 n 0000 | a relative by marriage -10207370 18 n 01 inmate 0 001 @ 10523519 n 0000 | one of several resident of a dwelling (especially someone confined to a prison or hospital) -10207514 18 n 02 inoculator 0 vaccinator 0 003 @ 10305802 n 0000 + 00086835 v 0204 + 00086835 v 0103 | a medical practitioner who inoculates people against diseases -10207681 18 n 02 inpatient 0 inmate 1 002 @ 10405694 n 0000 ! 10387936 n 0101 | a patient who is residing in the hospital where he is being treated -10207831 18 n 05 inquirer 0 enquirer 0 questioner 0 querier 0 asker 0 014 @ 10630188 n 0000 + 00897746 v 0501 + 00784727 v 0501 + 00784342 v 0501 + 00785008 v 0402 + 00785008 v 0301 + 00785962 v 0203 + 00784342 v 0203 + 00784342 v 0102 ~ 09980458 n 0000 ~ 10068234 n 0000 ~ 10208287 n 0000 ~ 10213319 n 0000 ~ 10451590 n 0000 | someone who asks a question -10208189 18 n 01 inquiry_agent 0 002 @ 10476671 n 0000 ;r 08860123 n 0000 | a private detective -10208287 18 n 02 inquisitor 0 interrogator 0 003 @ 10207831 n 0000 + 00788184 v 0201 + 03042005 a 0101 | a questioner who is excessively harsh -10208432 18 n 01 Inquisitor 1 003 @ 10372373 n 0000 + 00879624 a 0101 ~ 10142537 n 0000 | an official of the ecclesiastical court of the Inquisition -10208583 18 n 01 insider 0 001 @ 09966255 n 0000 | an officer of a corporation or others who have access to private information about the corporation's operations -10208748 18 n 02 insomniac 0 sleepless_person 0 001 @ 10595647 n 0000 | someone who cannot sleep -10208847 18 n 01 inspector 1 002 @ 10448983 n 0000 + 00593613 n 0101 | a high ranking police officer -10208950 18 n 01 inspector_general 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | a military officer responsible for investigations -10209082 18 n 02 instigator 0 initiator 0 004 @ 09623038 n 0000 + 01641914 v 0201 + 00771961 v 0103 ~ 09778676 n 0000 | a person who initiates a course of action -10209246 18 n 05 instigator 1 provoker 0 inciter 0 instigant 0 firebrand 0 007 @ 10731244 n 0000 + 00851239 v 0402 + 01230710 v 0302 + 00851239 v 0301 + 01789514 v 020b + 00851239 v 0102 ~ 10531838 n 0000 | someone who deliberately foments trouble; "she was the instigator of their quarrel" -10209539 18 n 01 instructress 0 001 @ 10694258 n 0000 | a woman instructor -10209616 18 n 03 instrument 0 pawn 0 cat's-paw 0 001 @ 09815790 n 0000 | a person used by another to gain an end -10209731 18 n 04 insurance_broker 0 insurance_agent 0 general_agent 1 underwriter 1 002 @ 09777012 n 0000 + 00891216 v 0403 | an agent who sells insurance -10209888 18 n 02 insured 0 insured_person 0 001 @ 00007846 n 0000 | a person whose interests are protected by an insurance policy; a person who contracts for an insurance policy that indemnifies him against loss of property or life or health etc. -10210137 18 n 04 insurgent 0 insurrectionist 0 freedom_fighter 0 rebel 0 009 @ 10527334 n 0000 @ 10515194 n 0000 + 02583139 v 0401 + 00962129 n 0202 ~ 10342180 n 0000 ~ 10804732 n 0000 ~i 11353195 n 0000 ~i 11364570 n 0000 ~i 11371778 n 0000 | a person who takes part in an armed rebellion against the constituted authority (especially in the hope of improving conditions) -10210512 18 n 01 intelligence_analyst 0 001 @ 09790482 n 0000 | a government analyst of information about an enemy or potential enemy -10210648 18 n 06 interior_designer 0 designer 2 interior_decorator 0 house_decorator 0 room_decorator 0 decorator 1 003 @ 10631941 n 0000 + 01753596 v 0201 ~i 10947259 n 0000 | a person who specializes in designing architectural interiors and their furnishings -10210911 18 n 02 interlocutor 0 conversational_partner 0 001 @ 09961999 n 0000 | a person who takes part in a conversation -10211036 18 n 02 interlocutor 1 middleman 2 002 @ 10321474 n 0000 #m 08189371 n 0000 | the performer in the middle of a minstrel line who engages the others in talk -10211203 18 n 04 intern 0 interne 0 houseman 0 medical_intern 0 004 @ 10020890 n 0000 ;r 08860123 n 0000 + 00593837 n 0101 + 02446819 v 0101 | an advanced student or graduate in medicine gaining supervised practical experience (`houseman' is a British term) -10211463 18 n 01 internal_auditor 0 001 @ 09822955 n 0000 | an auditor who is an employee of the company whose records are audited and who provides information to the management and board of directors -10211666 18 n 01 International_Grandmaster 0 001 @ 10142946 n 0000 | a chess player who has been awarded the highest title by an international chess organization -10211830 18 n 01 internationalist 1 002 @ 10618848 n 0000 #m 08366071 n 0000 | a member of a socialist or communist international -10211962 18 n 01 internationalist 0 002 @ 09774783 n 0000 + 05963494 n 0101 | an advocate of internationalism -10212074 18 n 01 internee 0 002 @ 10476086 n 0000 + 02495387 v 0101 | a person who is interned; "the internees were enemy aliens and suspected terrorists" -10212231 18 n 01 internist 0 002 @ 10632576 n 0000 + 02446819 v 0101 | a specialist in internal medicine -10212338 18 n 01 internuncio 0 002 @ 10013927 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a diplomatic representative of the Pope ranking below a nuncio -10212501 18 n 02 interpreter 1 translator 0 009 @ 09624559 n 0000 + 00959827 v 0201 + 00959827 v 0102 ~ 10029429 n 0000 ~ 10685853 n 0000 ~i 10972298 n 0000 ~i 11092938 n 0000 ~i 11354333 n 0000 ~i 11355669 n 0000 | someone who mediates between speakers of different languages -10212780 18 n 01 interpreter 2 003 @ 00007846 n 0000 + 01686132 v 0102 + 01732172 v 0101 | someone who uses art to represent something; "his paintings reveal a sensitive interpreter of nature"; "she was famous as an interpreter of Shakespearean roles" -10213034 18 n 01 intervenor 0 003 @ 10402824 n 0000 ;c 08441203 n 0000 + 02538765 v 0101 | (law) a party who interposes in a pending proceeding -10213180 18 n 01 interviewee 0 004 @ 10524413 n 0000 + 00809248 v 0101 + 00808855 v 0101 ~ 10026367 n 0000 | a person who is interviewed -10213319 18 n 01 interviewer 0 002 @ 10207831 n 0000 + 00808855 v 0101 | a person who conducts an interview -10213429 18 n 01 introvert 0 004 @ 00007846 n 0000 ;c 06136258 n 0000 + 00533897 v 0101 ! 10074841 n 0101 | (psychology) a person who tends to shrink from social contacts and to become preoccupied with their own thoughts -10213652 18 n 03 intruder 0 interloper 0 trespasser 0 015 @ 10060175 n 0000 @ 09631129 n 0000 + 02571251 v 0301 + 02591736 v 0201 + 02571251 v 0102 + 02018524 v 0101 ~ 09862479 n 0000 ~ 10121952 n 0000 ~ 10205714 n 0000 ~ 10214062 n 0000 ~ 10413688 n 0000 ~ 10486679 n 0000 ~ 10495756 n 0000 ~ 10643095 n 0000 ~ 10661002 n 0000 | someone who intrudes on the privacy or property of another without permission -10214062 18 n 02 invader 0 encroacher 0 004 @ 10213652 n 0000 + 01993352 v 0201 + 02019716 v 0102 + 01126360 v 0101 | someone who enters by force in order to conquer -10214230 18 n 02 invalid 0 shut-in 0 003 @ 10595647 n 0000 #m 07948183 n 0000 + 00091968 v 0102 | someone who is incapacitated by a chronic illness or injury -10214390 18 n 03 invalidator 0 voider 0 nullifier 1 004 @ 10372373 n 0000 + 02478059 v 0306 + 02478059 v 0204 + 02478059 v 0101 | an official who can invalidate or nullify; "my bank check was voided and I wanted to know who the invalidator was" -10214637 18 n 03 inventor 0 discoverer 1 artificer 1 046 @ 09614315 n 0000 + 01637982 v 0201 + 01632411 v 0101 ~ 10405410 n 0000 ~i 10842213 n 0000 ~i 10849873 n 0000 ~i 10867238 n 0000 ~i 10874540 n 0000 ~i 10876160 n 0000 ~i 10885352 n 0000 ~i 10920832 n 0000 ~i 10927424 n 0000 ~i 10947628 n 0000 ~i 10949192 n 0000 ~i 10985838 n 0000 ~i 10992192 n 0000 ~i 11000172 n 0000 ~i 11005050 n 0000 ~i 11007620 n 0000 ~i 11029005 n 0000 ~i 11045106 n 0000 ~i 11056466 n 0000 ~i 11062424 n 0000 ~i 11078203 n 0000 ~i 11115558 n 0000 ~i 11116642 n 0000 ~i 11165854 n 0000 ~i 11166060 n 0000 ~i 11168645 n 0000 ~i 11176230 n 0000 ~i 11192666 n 0000 ~i 11198608 n 0000 ~i 11218290 n 0000 ~i 11302772 n 0000 ~i 11311011 n 0000 ~i 11313357 n 0000 ~i 11315580 n 0000 ~i 11329281 n 0000 ~i 11336850 n 0000 ~i 11376742 n 0000 ~i 11382555 n 0000 ~i 11383100 n 0000 ~i 11385126 n 0000 ~i 11398611 n 0000 ~i 11398783 n 0000 ~i 11406141 n 0000 | someone who is the first to think of or make something -10215623 18 n 01 investigator 0 007 @ 09617867 n 0000 ~ 09769929 n 0000 ~ 09965985 n 0000 ~ 10009484 n 0000 ~ 10067968 n 0000 ~ 10377394 n 0000 ~i 11386005 n 0000 | someone who investigates -10215815 18 n 02 investment_adviser 0 investment_advisor 0 001 @ 09774266 n 0000 | someone who advises others how to invest their money -10215953 18 n 02 investment_banker 0 underwriter 0 002 @ 09777012 n 0000 ~ 10231361 n 0000 | a banker who deals chiefly in underwriting new securities -10216106 18 n 01 investor 0 011 @ 09609232 n 0000 + 02271137 v 0101 ~ 09612700 n 0000 ~ 09845191 n 0000 ~ 09864761 n 0000 ~ 09878921 n 0000 ~ 09888978 n 0000 ~ 10005006 n 0000 ~ 10254392 n 0000 ~ 10520964 n 0000 ~ 10657969 n 0000 | someone who commits capital in order to gain financial returns -10216403 18 n 01 invigilator 0 003 @ 10478960 n 0000 ;r 08860123 n 0000 + 02593354 v 0101 | someone who watches examination candidates to prevent cheating -10216560 18 n 02 iron_man 0 ironman 0 002 @ 10287213 n 0000 ;c 00523513 n 0000 | a strong man of exceptional physical endurance -10216690 18 n 02 ironmonger 0 hardwareman 0 001 @ 10720453 n 0000 | someone who sells hardware; "in England they call a hardwareman an ironmonger" -10216839 18 n 01 ironside 0 001 @ 10287213 n 0000 | a man of great strength or bravery -10216928 18 n 01 ironworker 0 002 @ 10284064 n 0000 ~ 10491869 n 0000 | a person who makes articles of iron -10217038 18 n 02 irredentist 0 irridentist 0 005 @ 09774783 n 0000 + 08589140 n 0201 + 05964098 n 0202 + 08589140 n 0101 + 05964098 n 0101 | an advocate of irredentism -10217208 18 n 01 irreligionist 0 002 @ 10015897 n 0000 + 04828612 n 0102 | someone who is indifferent or hostile to religion -10217335 18 n 01 Islamist 1 001 @ 10557854 n 0000 | a scholar who knowledgeable in Islamic studies -10217436 18 n 02 islander 0 island-dweller 0 002 @ 09620078 n 0000 + 09316454 n 0101 | an inhabitant of an island -10217552 18 n 02 Ismaili 0 Ismailian 0 001 @ 10016103 n 0000 | an adherent of Ismailism; a member of the Ismaili branch of Shiism -10217684 18 n 01 isolationist 0 003 @ 09774783 n 0000 + 03022917 a 0101 + 06662193 n 0101 | an advocate of isolationism in international affairs -10217831 18 n 03 itinerant 0 gypsy 1 gipsy 1 004 @ 10241300 n 0000 + 02128566 a 0101 ~ 10682169 n 0000 ~ 10711852 n 0000 | a laborer who moves from place to place as demanded by employment; "itinerant traders" -10218043 18 n 01 Ivy_Leaguer 0 002 @ 10665698 n 0000 @ 09786338 n 0000 | a student or graduate at an Ivy League school -10218164 18 n 01 Jack_of_all_trades 1 001 @ 09605289 n 0000 | a person able to do a variety of different jobs acceptably well -10218292 18 n 01 Jacksonian 0 001 @ 10099375 n 0000 | a follower of Andrew Jackson or his ideas -10218390 18 n 01 Jacob 0 002 @ 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) son of Isaac; brother of Esau; father of the twelve patriarchs of Israel; Jacob wrestled with God and forced God to bless him, so God gave Jacob the new name of Israel (meaning `one who has been strong against God') -10218692 18 n 01 Jacobean 0 001 @ 09701603 n 0000 | any distinguished personage during the reign of James I -10218802 18 n 01 Jacobin 0 003 @ 10702781 n 0000 + 03076230 a 0101 + 03076230 a 0102 | a member of the radical movement that instituted the Reign of Terror during the French Revolution -10218989 18 n 01 Jacobite 0 001 @ 10677713 n 0000 | a supporter of James II after he was overthrown or a supporter of the Stuarts -10219121 18 n 03 jail_bird 0 jailbird 0 gaolbird 0 001 @ 09977660 n 0000 | a criminal who has been jailed repeatedly -10219240 18 n 01 Jane_Doe 0 002 @ 10402824 n 0000 ;c 08441203 n 0000 | an unknown or fictitious woman who is a party to legal proceedings -10219380 18 n 01 Janissary 0 001 @ 10622053 n 0000 | a Turkish soldier -10219453 18 n 01 janissary 1 001 @ 10099375 n 0000 | a loyal supporter; "every politician has a following of janissaries" -10219577 18 n 01 janitor 0 001 @ 09984298 n 0000 | someone employed to clean and maintain a building -10219680 18 n 01 Jansenist 0 002 @ 09774783 n 0000 + 06188989 n 0101 | an advocate of Jansenism -10219778 18 n 01 Japheth 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) son of Noah -10219879 18 n 01 Jat 0 001 @ 00007846 n 0000 | a member of an Indo-European people widely scattered throughout the northwest of the Indian subcontinent and consisting of Muslims and Hindus and Sikhs -10220080 18 n 02 Javanese 0 Javan 0 004 @ 09714264 n 0000 #m 08908248 n 0000 + 03076663 a 0202 + 03076663 a 0101 | a native or inhabitant of Java -10220228 18 n 01 jawan 0 003 @ 09673495 n 0000 @ 10622053 n 0000 ;r 08900535 n 0000 | (India) a private soldier or male constable -10220360 18 n 01 jaywalker 0 002 @ 10412055 n 0000 + 01915253 v 0101 | a reckless pedestrian who crosses a street illegally -10220486 18 n 02 jazz_musician 0 jazzman 0 012 @ 10340312 n 0000 ~ 10686694 n 0000 ~i 10823199 n 0000 ~i 10924828 n 0000 ~i 10958010 n 0000 ~i 11027127 n 0000 ~i 11044939 n 0000 ~i 11185500 n 0000 ~i 11193058 n 0000 ~i 11214153 n 0000 ~i 11332688 n 0000 ~i 11372242 n 0000 | a musician who plays or composes jazz music -10220807 18 n 01 Jeffersonian 0 001 @ 10099375 n 0000 | a follower of Thomas Jefferson or his ideas and principles -10220924 18 n 01 Jekyll_and_Hyde 0 001 @ 09606527 n 0000 | someone with two personalities - one good and one evil -10221040 18 n 02 jerk 0 dork 0 003 @ 10322238 n 0000 + 00439905 a 0108 ~ 10557404 n 0000 | a dull stupid fatuous person -10221162 18 n 01 jerry-builder 0 001 @ 09878275 n 0000 | someone who builds cheap buildings out of poor materials on speculation for a quick profit -10221312 18 n 03 jester 0 fool 2 motley_fool 0 004 @ 09930876 n 0000 + 00854150 v 0204 + 00105554 v 0102 + 00853633 v 0102 | a professional clown employed to entertain a king or nobleman in the Middle Ages -10221520 18 n 01 Jesuit 0 004 @ 10518602 n 0000 #m 08149473 n 0000 + 03076935 a 0102 + 03076935 a 0101 | a member of the Jesuit order -10221656 18 n 02 jewel 0 gem 0 001 @ 00007846 n 0000 | a person who is as brilliant and precious as a piece of jewelry -10221777 18 n 02 jeweler 0 jeweller 0 005 @ 10309896 n 0000 + 03596787 n 0201 + 01678685 v 0202 + 03596787 n 0101 + 01678685 v 0102 | someone in the business of selling jewelry -10221956 18 n 03 jewelry_maker 0 jeweler 1 jeweller 1 007 @ 10284064 n 0000 + 03596787 n 0301 + 01678685 v 0302 + 03596787 n 0201 + 01678685 v 0202 ~ 10136615 n 0000 ~ 10598749 n 0000 | someone who makes jewelry -10222170 18 n 01 jezebel 0 001 @ 10787470 n 0000 | a shameless impudent scheming woman -10222259 18 n 01 jilt 0 002 @ 10787470 n 0000 + 00613248 v 0101 | a woman who jilts a lover -10222353 18 n 03 jimdandy 0 jimhickey 0 crackerjack 0 001 @ 10325243 n 0000 | someone excellent of their kind; "he's a jimdandy of a soldier" -10222497 18 n 03 jobber 0 middleman 1 wholesaler 0 003 @ 10018861 n 0000 + 02247226 v 0301 ~ 10304505 n 0000 | someone who buys large quantities of goods and resells to merchants rather than to the ultimate customers -10222716 18 n 01 job_candidate 0 001 @ 09607280 n 0000 | an applicant who is being considered for a job -10222822 18 n 01 jobholder 0 003 @ 10053808 n 0000 @ 10180178 n 0000 ~ 10041887 n 0000 | an employee who holds a regular job -10222949 18 n 01 Job 1 001 @ 09630641 n 0000 | any long-suffering person who withstands affliction without despairing -10223069 18 n 01 Job's_comforter 0 001 @ 10686313 n 0000 | someone whose comfort is actually discouraging -10223177 18 n 01 jockey 0 002 @ 10185793 n 0000 + 01087074 v 0101 | someone employed to ride horses in horse races -10223294 18 n 01 jockey 1 001 @ 10378412 n 0000 | an operator of some vehicle or machine or apparatus; "he's a truck jockey"; "a computer jockey"; "a disc jockey" -10223459 18 n 01 jogger 0 003 @ 10542761 n 0000 + 01901447 v 0102 + 01928390 v 0101 | someone who runs a steady slow pace (usually for exercise) -10223606 18 n 01 John_Doe 0 002 @ 10402824 n 0000 ;c 08441203 n 0000 | an unknown or fictitious man who is a party to legal proceedings -10223744 18 n 04 John_Doe 1 Joe_Blow 0 Joe_Bloggs 0 man_in_the_street 0 001 @ 09610405 n 0000 | a hypothetical average man -10223869 18 n 01 joiner 0 001 @ 10790192 n 0000 | a woodworker whose work involves making things by joining pieces of wood -10223994 18 n 01 joiner 1 002 @ 10307234 n 0000 + 02434976 v 0101 | a person who likes to join groups -10224098 18 n 02 joker 0 jokester 0 006 @ 09940146 n 0000 + 06778102 n 0201 + 00431005 n 0202 + 00427580 n 0202 + 00853633 v 0101 + 00105554 v 0101 | a person who enjoys telling or playing jokes -10224295 18 n 02 joker 1 turkey 0 001 @ 09631463 n 0000 | a person who does something thoughtless or annoying; "some joker is blocking the driveway" -10224446 18 n 02 jonah 1 jinx 0 002 @ 09630641 n 0000 + 00703184 v 0201 | a person believed to bring bad luck to those around him -10224578 18 n 01 journalist 0 025 @ 10794014 n 0000 + 06266417 n 0101 + 00611674 n 0101 ~ 09875979 n 0000 ~ 09939154 n 0000 ~ 09966710 n 0000 ~ 10122765 n 0000 ~ 10427223 n 0000 ~ 10564660 n 0000 ~ 10618234 n 0000 ~ 10640084 n 0000 ~i 10908756 n 0000 ~i 11000469 n 0000 ~i 11013191 n 0000 ~i 11018683 n 0000 ~i 11134620 n 0000 ~i 11173031 n 0000 ~i 11256494 n 0000 ~i 11290653 n 0000 ~i 11298634 n 0000 ~i 11313011 n 0000 ~i 11314315 n 0000 ~i 11319413 n 0000 ~i 11384022 n 0000 ~i 11396943 n 0000 | a writer for newspapers and magazines -10225118 18 n 01 Judas 1 001 @ 10027590 n 0000 | someone who betrays under the guise of friendship -10225219 18 n 03 judge 0 justice 0 jurist 1 024 @ 10372373 n 0000 @ 09769636 n 0000 + 08441203 n 0302 + 06161718 n 0301 + 01400961 a 0101 + 02753205 a 0101 + 02752987 a 0101 + 00593944 n 0101 + 02501278 v 0101 + 02501278 v 0102 + 00698855 v 0104 ~ 09781804 n 0000 ~ 09916788 n 0000 ~ 09991285 n 0000 ~ 10023264 n 0000 ~ 10228592 n 0000 ~ 10280945 n 0000 ~ 10382380 n 0000 ~ 10463028 n 0000 ~ 10497135 n 0000 ~ 10511960 n 0000 ~ 10728523 n 0000 ~ 10729175 n 0000 ~i 11279648 n 0000 | a public official authorized to decide questions brought before a court of justice -10225787 18 n 01 judge_advocate 0 002 @ 10644839 n 0000 ;c 08199025 n 0000 | a staff officer serving as legal adviser to a military commander -10225931 18 n 01 judge_advocate 1 002 @ 09942970 n 0000 ;c 08199025 n 0000 | an officer assigned to the judge advocate general -10226060 18 n 01 judge_advocate_general 0 003 @ 09942970 n 0000 ;c 08199025 n 0000 ;c 08441203 n 0000 | the senior legal advisor to a branch of the military -10226219 18 n 01 Judith 0 002 @i 10173410 n 0000 ;c 06457952 n 0000 | Jewish heroine in one of the books of the Apocrypha; she saved her people by decapitating the Assyrian general Holofernes -10226413 18 n 01 juggler 0 002 @ 10415638 n 0000 + 01604814 v 0101 | a performer who juggles objects and performs tricks of manual dexterity -10226556 18 n 02 juggernaut 1 steamroller 0 007 @ 10461424 n 0000 + 01110661 v 0201 + 02373578 v 0201 + 02505807 v 0201 + 02505807 v 0202 + 02373578 v 0202 + 01110661 v 0202 | a massive inexorable force that seems to crush everything in its way -10226803 18 n 01 jumper 0 005 @ 09820263 n 0000 ~ 09869171 n 0000 ~ 10185327 n 0000 ~ 10605375 n 0000 ~i 11131135 n 0000 | an athlete who competes at jumping; "he is one hell of a jumper" -10226993 18 n 01 jumper 2 002 @ 00007846 n 0000 ~ 10397482 n 0000 | a person who jumps; "as the jumper neared the ground he lost control"; "the jumper's parachute opened" -10227166 18 n 01 Jungian 0 001 @ 10099375 n 0000 | a follower or advocate of Carl Jung's theories -10227266 18 n 01 junior 0 002 @ 00007846 n 0000 + 02100709 a 0101 | the younger of two persons; "she is two years my junior" -10227393 18 n 01 junior 1 002 @ 10274815 n 0000 + 02100709 a 0101 | a third-year undergraduate -10227490 18 n 03 Junior 3 Jr 0 Jnr 0 001 @ 10624074 n 0000 | a son who has the same first name as his father -10227601 18 n 01 junior_featherweight 0 001 @ 09870208 n 0000 | weighs no more than 122 pounds -10227698 18 n 01 junior_lightweight 0 001 @ 09870208 n 0000 | weighs no more than 130 pounds -10227793 18 n 01 junior_middleweight 0 001 @ 09870208 n 0000 | weighs no more than 154 pounds -10227889 18 n 01 junior_welterweight 0 001 @ 09870208 n 0000 | weighs no more than 140 pounds -10227985 18 n 02 jurist 0 legal_expert 0 010 @ 09617867 n 0000 ;c 08441203 n 0000 + 08441203 n 0102 + 06161718 n 0101 ~ 10337020 n 0000 ~i 10845603 n 0000 ~i 11017454 n 0000 ~i 11057076 n 0000 ~i 11158754 n 0000 ~i 11319244 n 0000 | a legal scholar versed in civil law or the law of nations -10228278 18 n 03 juror 0 juryman 0 jurywoman 0 004 @ 10396106 n 0000 #m 08414119 n 0000 ~ 10104592 n 0000 ~ 10420277 n 0000 | someone who serves (or waits to be called to serve) on a jury -10228468 18 n 01 justice_of_the_peace 0 002 @ 10280945 n 0000 ;c 08441203 n 0000 | a local magistrate with limited powers -10228592 18 n 02 justiciar 0 justiciary 0 002 @ 10225219 n 0000 ;r 08860123 n 0000 | formerly a high judicial officer -10228712 18 n 01 kachina 1 001 @ 09989502 n 0000 | a masked dancer during a Pueblo religious ceremony who is thought to embody some particular spirit -10228864 18 n 04 kaffir 0 kafir 0 caffer 0 caffre 0 003 @ 09635534 n 0000 ;r 08999482 n 0000 ;u 06717170 n 0000 | an offensive and insulting term for any Black African -10229034 18 n 01 Kalon_Tripa 0 002 @ 10468962 n 0000 #m 08383185 n 0000 | the chairman of the Kashag and essentially head of the Tibetan government-in-exile -10229193 18 n 01 kamikaze 0 003 @ 10433164 n 0000 @ 10673776 n 0000 ;r 08921850 n 0000 | a pilot trained and willing to cause a suicidal crash -10229338 18 n 01 Kaiser 0 002 @ 10053004 n 0000 ~i 11386853 n 0000 | the title of the Holy Roman Emperors or the emperors of Austria or of Germany until 1918 -10229498 18 n 01 keeper 2 007 @ 09614684 n 0000 + 02202928 v 0101 ~ 09828988 n 0000 ~ 09829122 n 0000 ~ 09829305 n 0000 ~ 10149867 n 0000 ~ 10345100 n 0000 | someone in charge of other people; "am I my brother's keeper?" -10229721 18 n 01 kerb_crawler 0 002 @ 10034906 n 0000 ;r 08860123 n 0000 | someone who drives slowly along the curb seeking sex from prostitutes or other women -10229883 18 n 01 keyboardist 0 001 @ 10340312 n 0000 | a musician who plays a keyboard instrument -10229983 18 n 01 Keynesian 0 001 @ 10099375 n 0000 | a follower of the economic theories of John Maynard Keynes -10230097 18 n 01 khan 0 001 @ 10541229 n 0000 | a title given to rulers or other important people in Asian countries -10230216 18 n 01 Khedive 0 001 @ 10751785 n 0000 | one of the Turkish viceroys who ruled Egypt between 1867 and 1914 -10230335 18 n 01 kibbutznik 0 002 @ 10307234 n 0000 #m 08056873 n 0000 | a member of a kibbutz -10230432 18 n 01 kibitzer 0 003 @ 10305192 n 0000 ;c 06951067 n 0000 + 01058995 v 0101 | (Yiddish) a meddler who offers unwanted advice to others -10230580 18 n 01 kicker 0 005 @ 10101634 n 0000 + 01371756 v 0101 ~ 10035655 n 0000 ~ 10436851 n 0000 ~ 10493199 n 0000 | a player who kicks the football -10230736 18 n 01 kiddy 0 001 @ 09917593 n 0000 | a young child -10230801 18 n 04 kidnapper 0 kidnaper 0 abductor 0 snatcher 0 008 @ 09977660 n 0000 @ 09609561 n 0000 + 01471043 v 0404 + 01471043 v 0303 + 01471043 v 0201 + 01471043 v 0101 ~ 09978566 n 0000 ~ 10586265 n 0000 | someone who unlawfully seizes and detains a victim (usually for ransom) -10231087 18 n 02 killer 0 slayer 0 010 @ 00007846 n 0000 + 02482425 v 0202 + 01323958 v 0101 ~ 10069427 n 0000 ~ 10074339 n 0000 ~ 10121246 n 0000 ~ 10338707 n 0000 ~ 10448568 n 0000 ~ 10516422 n 0000 ~ 10673669 n 0000 | someone who causes the death of a person or animal -10231361 18 n 01 killer_bee 0 001 @ 10215953 n 0000 | an investment banker who devises strategies to make a target company less attractive for takeover -10231515 18 n 03 king 0 male_monarch 0 Rex 0 087 @ 10628644 n 0000 #m 08153437 n 0000 ! 10499355 n 0203 + 08558155 n 0101 + 08405603 n 0101 + 01591699 a 0101 + 14433001 n 0101 ! 10499355 n 0101 ~i 09537325 n 0000 ~ 10233445 n 0000 ~ 10234340 n 0000 ~ 10234867 n 0000 ~i 10810397 n 0000 ~i 10810923 n 0000 ~i 10811118 n 0000 ~i 10813374 n 0000 ~i 10824541 n 0000 ~i 10824710 n 0000 ~i 10826033 n 0000 ~i 10827513 n 0000 ~i 10827678 n 0000 ~i 10867473 n 0000 ~i 10882588 n 0000 ~i 10903172 n 0000 ~i 10915772 n 0000 ~i 10920207 n 0000 ~i 10922772 n 0000 ~i 10922968 n 0000 ~i 10923700 n 0000 ~i 10949424 n 0000 ~i 10949586 n 0000 ~i 10952421 n 0000 ~i 10952919 n 0000 ~i 10953188 n 0000 ~i 10961650 n 0000 ~i 10961816 n 0000 ~i 10962041 n 0000 ~i 10965019 n 0000 ~i 10965700 n 0000 ~i 10966842 n 0000 ~i 10968640 n 0000 ~i 10969305 n 0000 ~i 10980097 n 0000 ~i 10980448 n 0000 ~i 10980893 n 0000 ~i 10981089 n 0000 ~i 10981251 n 0000 ~i 10981409 n 0000 ~i 10994500 n 0000 ~i 10999873 n 0000 ~i 11008173 n 0000 ~i 11019425 n 0000 ~i 11019570 n 0000 ~i 11019900 n 0000 ~i 11020069 n 0000 ~i 11020225 n 0000 ~i 11020375 n 0000 ~i 11026981 n 0000 ~i 11045353 n 0000 ~i 11049128 n 0000 ~i 11068196 n 0000 ~i 11080351 n 0000 ~i 11082652 n 0000 ~i 11093325 n 0000 ~i 11096192 n 0000 ~i 11128673 n 0000 ~i 11147099 n 0000 ~i 11183387 n 0000 ~i 11202063 n 0000 ~i 11213552 n 0000 ~i 11229095 n 0000 ~i 11232615 n 0000 ~i 11232837 n 0000 ~i 11232989 n 0000 ~i 11233211 n 0000 ~i 11233383 n 0000 ~i 11247644 n 0000 ~i 11247897 n 0000 ~i 11249890 n 0000 ~i 11253097 n 0000 ~i 11282613 n 0000 ~i 11292809 n 0000 ~i 11307759 n 0000 ~i 11331804 n 0000 ~i 11365516 n 0000 ~i 11365674 n 0000 ~i 11401418 n 0000 | a male sovereign; ruler of a kingdom -10233248 18 n 01 kingmaker 0 001 @ 10200781 n 0000 | an important person who can bring leaders to power through the exercise of political influence; "the Earl of Warwick was the first kingmaker" -10233445 18 n 02 King_of_England 0 King_of_Great_Britain 0 042 @ 10231515 n 0000 ~i 10881382 n 0000 ~i 10892564 n 0000 ~i 10892786 n 0000 ~i 10948993 n 0000 ~i 10950092 n 0000 ~i 10950219 n 0000 ~i 10950448 n 0000 ~i 10950786 n 0000 ~i 10951017 n 0000 ~i 10951278 n 0000 ~i 10951459 n 0000 ~i 10951697 n 0000 ~i 10952143 n 0000 ~i 10952629 n 0000 ~i 10953035 n 0000 ~i 10994906 n 0000 ~i 10995115 n 0000 ~i 10995292 n 0000 ~i 10995592 n 0000 ~i 10995850 n 0000 ~i 10996090 n 0000 ~i 11029454 n 0000 ~i 11029637 n 0000 ~i 11040800 n 0000 ~i 11040985 n 0000 ~i 11041447 n 0000 ~i 11041814 n 0000 ~i 11042482 n 0000 ~i 11042691 n 0000 ~i 11043040 n 0000 ~i 11043519 n 0000 ~i 11079802 n 0000 ~i 11080174 n 0000 ~i 11086279 n 0000 ~i 11259950 n 0000 ~i 11260325 n 0000 ~i 11260622 n 0000 ~i 11388538 n 0000 ~i 11388841 n 0000 ~i 11389003 n 0000 ~i 11389301 n 0000 | the sovereign ruler of England -10234340 18 n 01 King_of_France 0 024 @ 10231515 n 0000 ~i 10891271 n 0000 ~i 10892947 n 0000 ~i 10893153 n 0000 ~i 10893433 n 0000 ~i 11041236 n 0000 ~i 11041660 n 0000 ~i 11042165 n 0000 ~i 11139092 n 0000 ~i 11139253 n 0000 ~i 11139403 n 0000 ~i 11139520 n 0000 ~i 11139619 n 0000 ~i 11139739 n 0000 ~i 11139927 n 0000 ~i 11140100 n 0000 ~i 11140243 n 0000 ~i 11140461 n 0000 ~i 11140582 n 0000 ~i 11140745 n 0000 ~i 11140862 n 0000 ~i 11141019 n 0000 ~i 11141289 n 0000 ~i 11141495 n 0000 | the sovereign ruler of France -10234867 18 n 01 King_of_the_Germans 0 004 @ 10231515 n 0000 ~i 11042036 n 0000 ~i 11043389 n 0000 ~i 11218625 n 0000 | the sovereign ruler of the Germans -10235024 18 n 03 king 2 queen 3 world-beater 0 001 @ 10533013 n 0000 | a competitor who holds a preeminent position -10235142 18 n 03 kingpin 0 top_banana 1 bigwig 0 001 @ 10200781 n 0000 | the most important person in a group or undertaking -10235269 18 n 01 King's_Counsel 0 001 @ 10235385 n 0000 | Counsel to the Crown when the British monarch is a king -10235385 18 n 01 Counsel_to_the_Crown 0 003 @ 09840963 n 0000 ~ 10235269 n 0000 ~ 10500824 n 0000 | a barrister selected to serve as counsel to the British ruler -10235549 18 n 02 relative 0 relation 0 021 @ 00007846 n 0000 #m 07969695 n 0000 + 13928388 n 0201 + 13812607 n 0203 + 13780719 n 0201 ~ 09792555 n 0000 ~ 09972010 n 0000 ~ 10006511 n 0000 ~ 10207169 n 0000 ~ 10236114 n 0000 ~ 10236304 n 0000 ~ 10236521 n 0000 ~ 10236663 n 0000 ~ 10236946 n 0000 ~ 10237069 n 0000 ~ 10237315 n 0000 ~ 10357349 n 0000 ~ 10373998 n 0000 ~ 10568358 n 0000 ~ 10595164 n 0000 ~ 10640620 n 0000 | a person related by blood or marriage; "police are searching for relatives of the deceased"; "he has distant relations back in New Jersey" -10236114 18 n 04 blood_relation 0 blood_relative 0 cognate 0 sib 1 002 @ 10235549 n 0000 + 01971846 a 0303 | one related by blood or origin; especially on sharing an ancestor with another -10236304 18 n 03 kin 0 kinsperson 0 family 0 005 @ 10235549 n 0000 + 01314537 a 0301 + 01971846 a 0107 + 13812607 n 0101 ~ 09776522 n 0000 | a person having kinship with another or others; "he's kin"; "he's family" -10236521 18 n 05 enate 0 matrikin 0 matrilineal_kin 0 matrisib 0 matrilineal_sib 0 001 @ 10235549 n 0000 | one related on the mother's side -10236663 18 n 05 agnate 0 patrikin 0 patrilineal_kin 0 patrisib 0 patrilineal_sib 0 003 @ 10235549 n 0000 + 01971671 a 0101 + 01971671 a 0102 | one related on the father's side -10236842 18 n 01 kink 0 002 @ 00007846 n 0000 + 01597509 a 0101 | a person with unusual sexual tastes -10236946 18 n 01 kinsman 0 004 @ 10235549 n 0000 ~ 10286084 n 0000 ~ 10353355 n 0000 ~ 10736091 n 0000 | a male relative -10237069 18 n 01 kinswoman 0 004 @ 10235549 n 0000 ~ 09823502 n 0000 ~ 10084181 n 0000 ~ 10357613 n 0000 | a female relative -10237196 18 n 02 kisser 0 osculator 0 003 @ 09622302 n 0000 + 01431230 v 0204 + 01431230 v 0102 | someone who kisses -10237315 18 n 02 kissing_cousin 0 kissing_kin 0 001 @ 10235549 n 0000 | a more or less distant relative; familiar enough to be greeted with a kiss -10237464 18 n 01 kitchen_help 0 001 @ 10170172 n 0000 | help hired to work in the kitchen -10237556 18 n 02 kitchen_police 0 KP 0 001 @ 10058777 n 0000 | an enlisted person who is assigned to assist the cooks -10237676 18 n 03 Klansman 0 Ku_Kluxer 0 Kluxer 0 002 @ 10779610 n 0000 #m 08029421 n 0000 | a member of the Ku Klux Klan -10237799 18 n 01 kleptomaniac 0 001 @ 09802641 n 0000 | someone with an irrational urge to steal in the absence of an economic motive -10237935 18 n 01 klutz 0 002 @ 10667187 n 0000 ;c 06951067 n 0000 | (Yiddish) a clumsy dolt -10238029 18 n 01 knacker 0 001 @ 09884133 n 0000 | someone who buys up old horses for slaughter -10238127 18 n 01 knacker 1 001 @ 10792856 n 0000 | someone who buys old buildings or ships and breaks them up to recover the materials in them -10238272 18 n 01 kneeler 0 002 @ 00007846 n 0000 + 01545649 v 0101 | a person in a kneeling position -10238375 18 n 01 knight 0 011 @ 10285135 n 0000 + 01729157 a 0102 + 00640106 a 0103 + 02399185 v 0101 ~ 09897170 n 0000 ~ 10238749 n 0000 ~ 10238898 n 0000 ~ 10239089 n 0000 ~ 10239217 n 0000 ~ 10239329 n 0000 ~i 10996533 n 0000 | originally a person of noble birth trained to arms and chivalry; today in Great Britain a person honored by the sovereign for personal merit -10238749 18 n 03 knight_bachelor 0 bachelor-at-arms 0 bachelor 1 001 @ 10238375 n 0000 | a knight of the lowest order; could display only a pennon -10238898 18 n 03 knight_banneret 0 knight_of_the_square_flag 0 banneret 0 001 @ 10238375 n 0000 | a knight honored for valor; entitled to display a square banner and to hold higher command -10239089 18 n 01 Knight_of_the_Round_Table 0 001 @ 10238375 n 0000 | in the Arthurian legend, a knight of King Arthur's court -10239217 18 n 01 knight-errant 0 001 @ 10238375 n 0000 | a wandering knight travelling in search of adventure -10239329 18 n 02 Knight_Templar 0 Templar 0 001 @ 10238375 n 0000 | a knight of a religious military order established in 1118 to protect pilgrims and the Holy Sepulcher -10239501 18 n 01 Knight_Templar 1 001 @ 10111144 n 0000 | a man who belongs to a Masonic order in the United States -10239619 18 n 01 knitter 0 002 @ 10351281 n 0000 + 01671039 v 0101 | someone who makes garments (or fabrics) by intertwining yarn or thread -10239761 18 n 01 knocker 1 002 @ 00007846 n 0000 + 01414467 v 0101 | a person who knocks (as seeking to gain admittance); "open the door and see who the knocker is" -10239928 18 n 01 knocker 2 002 @ 09853881 n 0000 ;c 06951067 n 0000 | (Yiddish) a big shot who knows it and acts that way; a boastful immoderate person -10240082 18 n 02 knower 0 apprehender 1 004 @ 00007846 n 0000 + 01782432 v 0201 + 00588221 v 0208 + 00594621 v 0101 | a person who knows or apprehends -10240235 18 n 02 know-it-all 0 know-all 0 002 @ 10047459 n 0000 ;u 07075172 n 0000 | someone who thinks he knows everything and refuses to accept advice or information from others -10240417 18 n 01 kolkhoznik 0 002 @ 10307234 n 0000 #m 08057068 n 0000 | a member of a kolkhoz -10240514 18 n 06 kook 0 odd_fellow 0 odd_fish 0 queer_bird 0 queer_duck 0 odd_man_out 0 002 @ 09606527 n 0000 + 02074929 a 010d | someone regarded as eccentric or crazy and standing out from a group -10240715 18 n 01 koto_player 0 002 @ 10340312 n 0000 ;r 08921850 n 0000 | a musician who plays the koto -10240821 18 n 01 Kshatriya 0 001 @ 09713501 n 0000 | a member of the royal or warrior Hindu caste -10240921 18 n 01 kvetch 0 002 @ 10776339 n 0000 ;c 06951067 n 0000 | (Yiddish) a constant complainer -10241024 18 n 04 labor_coach 0 birthing_coach 0 doula 0 monitrice 0 001 @ 09815790 n 0000 | an assistant (often the father of the soon-to-be-born child) who provides support for a woman in labor by encouraging her to use techniques learned in childbirth-preparation classes -10241300 18 n 04 laborer 0 manual_laborer 0 labourer 0 jack 1 033 @ 10791221 n 0000 + 02419773 v 0302 + 02406916 v 0102 + 02419773 v 0101 ~ 09779623 n 0000 ~ 09872285 n 0000 ~ 09927089 n 0000 ~ 09994400 n 0000 ~ 10012989 n 0000 ~ 10017190 n 0000 ~ 10035809 n 0000 ~ 10119775 n 0000 ~ 10144468 n 0000 ~ 10174148 n 0000 ~ 10176679 n 0000 ~ 10179527 n 0000 ~ 10217831 n 0000 ~ 10276045 n 0000 ~ 10319796 n 0000 ~ 10338094 n 0000 ~ 10439087 n 0000 ~ 10455447 n 0000 ~ 10505206 n 0000 ~ 10554141 n 0000 ~ 10574311 n 0000 ~ 10641112 n 0000 ~ 10644469 n 0000 ~ 10653793 n 0000 ~ 10655169 n 0000 ~ 10659042 n 0000 ~ 10790077 n 0000 ~ 10792856 n 0000 ~ 10802842 n 0000 | someone who works with their hands; someone engaged in manual labor -10242032 18 n 01 labor_leader 0 012 @ 09623038 n 0000 ~i 10864064 n 0000 ~i 10894208 n 0000 ~i 11006231 n 0000 ~i 11013324 n 0000 ~i 11036911 n 0000 ~i 11054173 n 0000 ~i 11090884 n 0000 ~i 11130661 n 0000 ~i 11170764 n 0000 ~i 11182098 n 0000 ~i 11370990 n 0000 | a leader of a labor movement -10242328 18 n 01 Labourite 0 002 @ 10450303 n 0000 #m 08261320 n 0000 | a member of the British Labour Party -10242439 18 n 01 lacer 0 002 @ 10791221 n 0000 + 01521603 v 0101 | a workman who laces shoes or footballs or books (during binding) -10242573 18 n 03 lackey 0 flunky 1 flunkey 1 001 @ 10582154 n 0000 | a male servant (especially a footman) -10242682 18 n 01 lacrosse_player 0 002 @ 09820263 n 0000 @ 10439851 n 0000 | an athlete who plays lacrosse -10242791 18 n 03 Lady 0 noblewoman 0 peeress 0 014 @ 10083823 n 0000 #m 08388636 n 0000 ;r 08860123 n 0000 ! 10271677 n 0203 ! 10271677 n 0101 ~ 09843309 n 0000 ~ 09970402 n 0000 ~ 10038409 n 0000 ~ 10243273 n 0000 ~ 10293590 n 0000 ~ 10315382 n 0000 ~i 10858018 n 0000 ~i 11003276 n 0000 ~i 11026078 n 0000 | a woman of the peerage in Britain -10243137 18 n 01 lady 2 002 @ 10787470 n 0000 ~ 09847425 n 0000 | a polite name for any woman; "a nice lady at the library helped me" -10243273 18 n 01 lady-in-waiting 0 001 @ 10242791 n 0000 | a lady appointed to attend to a queen or princess -10243384 18 n 02 ladylove 0 dulcinea 0 001 @ 10682953 n 0000 | a woman who is a man's sweetheart -10243483 18 n 01 lady's_maid 0 001 @ 10282672 n 0000 | a maid who is a lady's personal attendant -10243582 18 n 01 laird 0 002 @ 10245639 n 0000 ;r 08890097 n 0000 | a landowner -10243664 18 n 01 lama 0 003 @ 10471250 n 0000 ~ 09988493 n 0000 ~ 10395828 n 0000 | a Tibetan or Mongolian priest of Lamaism -10243791 18 n 01 Lamarckian 0 001 @ 10099375 n 0000 | a believer in Lamarckism -10243872 18 n 02 lamb 0 dear 1 001 @ 09621359 n 0000 | a sweet innocent mild-mannered person (especially a child) -10243988 18 n 01 lamb 1 001 @ 10752480 n 0000 | a person easily deceived or cheated (especially in financial matters) -10244108 18 n 01 lame_duck 0 001 @ 10048836 n 0000 | an elected official still in office but not slated to continue -10244226 18 n 01 laminator 0 002 @ 10605985 n 0000 + 01625666 v 0101 | a person who makes laminates (especially plastic laminates) -10244359 18 n 01 lamplighter 0 001 @ 09632518 n 0000 | (when gas was used for streetlights) a person who lights and extinguishes streetlights -10244503 18 n 01 lampoon_artist 0 001 @ 09898346 n 0000 | a cartoonist who draws parodies or satirical renditions of cultural or social or political situations -10244665 18 n 01 lance_corporal 0 001 @ 10360747 n 0000 | an enlisted man in the marine corps ranking above a private first class and below a corporal -10244818 18 n 01 lancer 0 001 @ 09902353 n 0000 | (formerly) a cavalryman armed with a lance -10244913 18 n 01 land_agent 0 002 @ 09770949 n 0000 ;r 08860123 n 0000 | a person who administers a landed estate -10245029 18 n 01 landgrave 0 001 @ 09969218 n 0000 | a count who had jurisdiction over a large territory in medieval Germany -10245156 18 n 01 landlady 0 001 @ 10245236 n 0000 | a landlord who is a woman -10245236 18 n 01 landlord 0 002 @ 10245639 n 0000 ~ 10245156 n 0000 | a landowner who leases to others -10245341 18 n 03 landlubber 0 lubber 1 landsman 0 003 @ 10363913 n 0000 + 01566725 a 0201 + 01566725 a 0102 | an inexperienced sailor; a sailor on the first voyage -10245507 18 n 03 landlubber 1 landsman 1 landman 0 002 @ 09620078 n 0000 + 01566725 a 0102 | a person who lives and works on land -10245639 18 n 03 landowner 0 landholder 0 property_owner 0 007 @ 10180178 n 0000 ~ 09758781 n 0000 ~ 10109050 n 0000 ~ 10110287 n 0000 ~ 10243582 n 0000 ~ 10245236 n 0000 ~ 10643837 n 0000 | a holder or proprietor of land -10245863 18 n 04 landscape_architect 0 landscape_gardener 0 landscaper 0 landscapist 1 008 @ 09805475 n 0000 + 08646902 n 0401 + 01751836 v 0401 + 01741221 v 0401 ~i 10942279 n 0000 ~i 11127011 n 0000 ~i 11214513 n 0000 ~i 11361757 n 0000 | someone who arranges features of the landscape or garden attractively -10246176 18 n 01 landscapist 0 004 @ 10391653 n 0000 + 08646902 n 0101 + 03640166 n 0101 + 03640011 n 0101 | someone who paints landscapes -10246317 18 n 01 langlaufer 0 001 @ 10605253 n 0000 | a cross-country skier -10246395 18 n 01 languisher 0 003 @ 09630641 n 0000 + 00389992 v 0103 + 00093593 v 0101 | a person who languishes -10246511 18 n 02 lapidary 0 lapidist 0 005 @ 10058155 n 0000 + 10246703 n 0201 + 10246511 n 0201 + 10246703 n 0102 + 10246511 n 0102 | a skilled worker who cuts and engraves precious stones -10246703 18 n 02 lapidary 1 lapidarist 0 005 @ 09617867 n 0000 + 10246703 n 0201 + 10246511 n 0201 + 10246703 n 0102 + 10246511 n 0102 | an expert on precious stones and the art of cutting and engraving them -10246913 18 n 02 larcenist 0 larcener 0 003 @ 10707804 n 0000 + 00780889 n 0201 + 00780889 n 0101 | a person who commits larceny -10247044 18 n 01 large_person 0 003 @ 00007846 n 0000 ~ 10082146 n 0000 ~ 10129133 n 0000 | a person of greater than average size -10247176 18 n 01 lascar 0 001 @ 10546633 n 0000 | an East Indian sailor -10247250 18 n 01 lasher 0 001 @ 10035430 n 0000 | a driver who urges the animals on with lashes of a whip -10247358 18 n 04 lass 0 lassie 0 young_girl 0 jeune_fille 0 003 @ 10129825 n 0000 ~ 09862713 n 0000 ~ 10270383 n 0000 | a girl or young woman who is unmarried -10247519 18 n 01 latchkey_child 0 001 @ 10559288 n 0000 | a school-age child who is home without adult supervision for part of the day (especially after school until a parent returns home from work) -10247720 18 n 01 latecomer 0 001 @ 09810166 n 0000 | someone who arrives late -10247800 18 n 01 lather 0 001 @ 10791221 n 0000 | a workman who puts up laths -10247880 18 n 01 Latin 0 001 @ 00007846 n 0000 | a person who is a member of those peoples whose languages derived from Latin -10248008 18 n 01 Latin 1 001 @ 09620078 n 0000 | an inhabitant of ancient Latium -10248091 18 n 01 Latinist 0 002 @ 09926656 n 0000 + 06962600 n 0101 | a specialist in the Latin language -10248198 18 n 01 latitudinarian 0 002 @ 10256756 n 0000 ;c 05946687 n 0000 | a person who is broad-minded and tolerant (especially in standards of religious belief and conduct) -10248377 18 n 01 Jehovah's_Witness 0 002 @ 09679316 n 0000 #m 08091575 n 0000 | believer in imminent approach of the millennium; practitioner of active evangelism -10248542 18 n 02 Latter-Day_Saint 0 Mormon 2 003 @ 09679316 n 0000 #m 08089205 n 0000 ~i 11305611 n 0000 | a member of the Church of Jesus Christ of Latter-Day Saints -10248711 18 n 03 laudator 0 lauder 0 extoller 0 004 @ 09610660 n 0000 + 00860620 v 0302 + 00860620 v 0201 ~ 09926088 n 0000 | someone who communicates high praise -10248876 18 n 01 laugher 0 003 @ 00007846 n 0000 + 00031820 v 0101 ~ 10713124 n 0000 | a person who is laughing or who laughs easily -10249011 18 n 01 laureate 0 003 @ 10183757 n 0000 ~ 10359546 n 0000 ~ 10447359 n 0000 | someone honored for great achievements; figuratively someone crowned with a laurel wreath -10249191 18 n 01 law_agent 0 001 @ 10623175 n 0000 | a solicitor in Scotland -10249270 18 n 02 lawgiver 0 lawmaker 0 005 @ 09623038 n 0000 ;c 08441203 n 0000 ~ 10253995 n 0000 ~ 10482587 n 0000 ~i 10942675 n 0000 | a maker of laws; someone who gives a code of laws -10249459 18 n 03 lawman 0 law_officer 0 peace_officer 0 018 @ 09614684 n 0000 ~ 09822830 n 0000 ~ 09867311 n 0000 ~ 09959142 n 0000 ~ 10005548 n 0000 ~ 10095664 n 0000 ~ 10149867 n 0000 ~ 10259225 n 0000 ~ 10295951 n 0000 ~ 10317500 n 0000 ~ 10345302 n 0000 ~ 10448983 n 0000 ~ 10449521 n 0000 ~ 10589140 n 0000 ~ 10623533 n 0000 ~ 10704712 n 0000 ~ 10767154 n 0000 ~ 10767265 n 0000 | an officer of the law -10249869 18 n 01 law_student 0 001 @ 10665698 n 0000 | a student in law school -10249950 18 n 02 lawyer 0 attorney 0 024 @ 10480253 n 0000 #m 13839662 n 0000 ;c 08441203 n 0000 + 00589217 n 0201 + 00611143 n 0101 ~ 09775663 n 0000 ~ 09787955 n 0000 ~ 09840963 n 0000 ~ 09962612 n 0000 ~ 10000158 n 0000 ~ 10020670 n 0000 ~ 10484858 n 0000 ~ 10490557 n 0000 ~ 10514643 n 0000 ~ 10623175 n 0000 ~ 10728361 n 0000 ~i 10829450 n 0000 ~i 10869385 n 0000 ~i 10923146 n 0000 ~i 11036521 n 0000 ~i 11036668 n 0000 ~i 11058914 n 0000 ~i 11103104 n 0000 ~i 11132462 n 0000 | a professional person authorized to practice law; conducts lawsuits or gives legal advice -10250527 18 n 03 layman 0 layperson 0 secular 0 004 @ 09610405 n 0000 #m 08153102 n 0000 ! 09927451 n 0101 ~ 10250712 n 0000 | someone who is not a clergyman or a professional person -10250712 18 n 01 lay_reader 0 001 @ 10250527 n 0000 | a layman who is authorized by the bishop to read parts of the service in an Anglican or Episcopal church -10250873 18 n 01 lay_witness 0 002 @ 10786517 n 0000 ! 10072346 n 0101 | any witness who does not testify as an expert witness -10251002 18 n 01 Lazarus 0 001 @i 09847010 n 0000 | the diseased beggar in Jesus' parable of the rich man and the beggar -10251125 18 n 01 Lazarus 1 001 @i 09994943 n 0000 | the person who Jesus raised from the dead after four days in the tomb; this miracle caused the enemies of Jesus to begin the plan to put him to death -10251329 18 n 01 lazybones 0 002 @ 10197967 n 0000 ;u 07075172 n 0000 | a lazy person -10251417 18 n 01 leading_lady 0 001 @ 09767700 n 0000 | actress who plays the leading female role -10251517 18 n 01 leading_man 0 001 @ 09765278 n 0000 | actor who plays the leading male role -10251612 18 n 01 leaker 0 003 @ 10205985 n 0000 + 00936169 v 0101 + 00937023 v 0101 | a surreptitious informant; "the president wanted to know who the leakers were" -10251779 18 n 03 learner 0 scholar 1 assimilator 0 008 @ 00007846 n 0000 + 00602255 v 0302 + 13266170 n 0201 + 00597915 v 0101 ~ 10308504 n 0000 ~ 10501453 n 0000 ~ 10684630 n 0000 ~ 10733820 n 0000 | someone (especially a child) who learns (as from a teacher) or takes up knowledge or beliefs -10252075 18 n 02 leaseholder 0 lessee 0 004 @ 10700201 n 0000 @ 10180178 n 0000 + 02460199 v 0202 + 02460619 v 0204 | a tenant who holds a lease -10252222 18 n 03 lector 0 lecturer 1 reader 1 002 @ 10045713 n 0000 + 00830761 v 0201 | a public lecturer at certain universities -10252354 18 n 02 lector 1 reader 6 002 @ 09927451 n 0000 @ 13950812 n 0000 | someone who reads the lessons in a church service; someone ordained in a minor order of the Roman Catholic Church -10252547 18 n 01 lecturer 0 003 @ 10630188 n 0000 + 00830761 v 0101 ~i 11099085 n 0000 | someone who lectures professionally -10252674 18 n 04 leech 0 parasite 0 sponge 0 sponger 0 005 @ 10099375 n 0000 + 02270404 v 0405 + 02270404 v 0305 + 00726723 a 0201 + 00726723 a 0202 | a follower who hangs around a host (without benefit to the host) in hope of gain or advantage -10252921 18 n 06 left-handed_pitcher 0 left-hander 1 left_hander 0 lefthander 0 lefty 1 southpaw 1 002 @ 10435988 n 0000 + 05565548 n 0402 | a baseball pitcher who throws the ball with the left hand -10253122 18 n 03 left-hander 0 lefty 0 southpaw 0 001 @ 00007846 n 0000 | a person who uses the left hand with greater skill than the right; "their pitcher was a southpaw" -10253296 18 n 01 legal_representative 0 002 @ 10417551 n 0000 ;c 08441203 n 0000 | a personal representative with legal standing (as by power of attorney or the executor of a will) -10253479 18 n 02 legate 0 official_emissary 0 003 @ 10052694 n 0000 #m 08403082 n 0000 + 00594260 n 0102 | a member of a legation -10253611 18 n 01 legatee 0 001 @ 09850121 n 0000 | someone to whom a legacy is bequeathed -10253703 18 n 02 legionnaire 0 legionary 0 003 @ 10622053 n 0000 #m 08271801 n 0000 ;r 08929922 n 0000 | a soldier who is a member of a legion (especially the French Foreign Legion) -10253887 18 n 01 Legionnaire 1 002 @ 10749353 n 0000 #m 08228980 n 0000 | a member of the American Legion -10253995 18 n 01 legislator 0 018 @ 10249270 n 0000 @ 10451263 n 0000 ;c 08441203 n 0000 + 00594374 n 0101 + 02466670 v 0101 ~ 09830400 n 0000 ~ 09955781 n 0000 ~ 09980275 n 0000 ~ 10005934 n 0000 ~ 10087868 n 0000 ~ 10097154 n 0000 ~ 10113362 n 0000 ~ 10283824 n 0000 ~ 10321233 n 0000 ~ 10400437 n 0000 ~ 10578471 n 0000 ~ 10776766 n 0000 ~i 10845763 n 0000 | someone who makes or enacts laws -10254392 18 n 02 lender 0 loaner 0 005 @ 10216106 n 0000 + 02324182 v 0101 ! 09867633 n 0101 ~ 10409459 n 0000 ~ 10742384 n 0000 | someone who lends money or gives credit in business matters -10254585 18 n 01 leper 0 001 @ 10386312 n 0000 | a pariah who is avoided by others -10254670 18 n 02 leper 1 lazar 1 001 @ 10595647 n 0000 | a person afflicted with leprosy -10254761 18 n 03 lepidopterist 0 lepidopterologist 0 butterfly_collector 0 002 @ 10059904 n 0000 + 06072476 n 0102 | an entomologist who specializes in the collection and study of butterflies and moths -10254965 18 n 03 lesbian 0 tribade 0 gay_woman 0 003 @ 10182913 n 0000 + 01202212 a 0101 ~ 09883947 n 0000 | a female homosexual -10255096 18 n 02 lessor 0 lease_giver 0 002 @ 10388924 n 0000 + 02208903 v 0102 | someone who grants a lease -10255207 18 n 01 letter 0 002 @ 10388924 n 0000 + 02208903 v 0102 | owner who lets another person use something (housing usually) for hire -10255348 18 n 01 letterer 0 003 @ 10393909 n 0000 + 01692579 v 0101 + 01692443 v 0101 | a painter of letters -10255459 18 n 01 letterman 0 001 @ 09820263 n 0000 | an athlete who has earned a letter in a school sport -10255567 18 n 02 leveler 0 leveller 0 003 @ 10503452 n 0000 + 01307142 v 0202 + 01307142 v 0102 | a radical who advocates the abolition of social distinctions -10255728 18 n 01 leviathan 0 001 @ 10109443 n 0000 | the largest or most massive thing of its kind; "it was a leviathan among redwoods"; "they were assigned the leviathan of textbooks" -10255915 18 n 01 Levite 0 001 @ 09681351 n 0000 | a member of the Hebrew tribe of Levi (especially the branch that provided male assistants to the temple priests) -10256080 18 n 02 lexicographer 0 lexicologist 0 017 @ 09946957 n 0000 @ 10264437 n 0000 + 06178812 n 0201 + 00931721 n 0101 ~ 10066314 n 0000 ~ 10352898 n 0000 ~ 10687135 n 0000 ~i 10831136 n 0000 ~i 10914134 n 0000 ~i 10973722 n 0000 ~i 10976708 n 0000 ~i 11088622 n 0000 ~i 11118072 n 0000 ~i 11135371 n 0000 ~i 11197099 n 0000 ~i 11379108 n 0000 ~i 11397488 n 0000 | a compiler or writer of a dictionary; a student of the lexical component of language -10256537 18 n 02 liar 0 prevaricator 0 007 @ 09998101 n 0000 + 00835506 v 0204 + 00834259 v 0101 ! 10642705 n 0101 ~i 09607055 n 0000 ~ 10416909 n 0000 ~ 10660333 n 0000 | a person who has lied or who lies repeatedly -10256756 18 n 03 liberal 0 liberalist 0 progressive 0 009 @ 09605289 n 0000 + 00576189 a 0301 + 01876006 a 0301 ! 09957156 n 0101 ~ 09808466 n 0000 ~ 10248198 n 0000 ~ 10352782 n 0000 ~ 10443482 n 0000 ~ 10776141 n 0000 | a person who favors a political philosophy of progress and reform and the protection of civil liberties -10257084 18 n 01 liberal 1 001 @ 09605289 n 0000 | a person who favors an economic theory of laissez-faire and self-regulating markets -10257221 18 n 01 liberator 0 005 @ 09608709 n 0000 + 02421374 v 0102 + 02497062 v 0101 ! 09609561 n 0101 ~ 10051026 n 0000 | someone who releases people from captivity or bondage -10257402 18 n 01 libertarian 0 002 @ 10423589 n 0000 ! 10350896 n 0101 | someone who believes the doctrine of free will -10257524 18 n 01 libertarian 1 003 @ 09774783 n 0000 ~ 09924854 n 0000 ~ 10043331 n 0000 | an advocate of libertarianism -10257647 18 n 03 libertine 0 debauchee 0 rounder 0 010 @ 09831962 n 0000 + 02579447 v 0206 + 01549568 a 0106 ~ 09772746 n 0000 ~ 10129464 n 0000 ~ 10505942 n 0000 ~ 10575089 n 0000 ~ 10683675 n 0000 ~ 10754281 n 0000 ~ 10789118 n 0000 | a dissolute person; usually a man who is morally unrestrained -10257948 18 n 02 librarian 0 bibliothec 0 004 @ 10480253 n 0000 + 00594477 n 0101 ~ 09900499 n 0000 ~i 10933266 n 0000 | a professional person trained in library science and engaged in library services -10258152 18 n 01 librettist 0 003 @ 10794014 n 0000 + 07012025 n 0101 ~i 10999584 n 0000 | author of words to be set to music in an opera or operetta -10258304 18 n 03 licensed_practical_nurse 0 LPN 0 practical_nurse 0 001 @ 10366966 n 0000 | a nurse who has enough training to be licensed by a state to provide routine care for the sick -10258493 18 n 01 licensee 0 002 @ 10525436 n 0000 + 02444662 v 0101 | someone to whom a license is granted -10258602 18 n 01 licenser 0 002 @ 10372373 n 0000 + 02444662 v 0101 | an official who can issue a license or give authoritative permission (especially one who licenses publications) -10258786 18 n 01 licentiate 0 001 @ 10557854 n 0000 | holds a license (degree) from a (European) university -10258896 18 n 02 lie-abed 0 slugabed 0 001 @ 10197967 n 0000 | a person who stays in bed until a relatively late hour -10259016 18 n 01 lieder_singer 0 001 @ 10599806 n 0000 | a singer of lieder -10259094 18 n 02 liege 1 liege_lord 0 002 @ 10085736 n 0000 + 00962306 a 0101 | a feudal lord entitled to allegiance and service -10259225 18 n 02 lieutenant 0 police_lieutenant 0 002 @ 10249459 n 0000 + 00594580 n 0101 | an officer in a police force -10259348 18 n 01 lieutenant 1 006 @ 09943239 n 0000 ;c 08199025 n 0000 + 00594580 n 0101 ~ 10092978 n 0000 ~ 10569011 n 0000 ~ 10669236 n 0000 | a commissioned military officer -10259527 18 n 01 lieutenant 3 003 @ 09943541 n 0000 ;c 08199025 n 0000 + 00594580 n 0101 | an officer holding a commissioned rank in the United States Navy or the United States Coast Guard; below lieutenant commander and above lieutenant junior grade -10259780 18 n 02 lieutenant_colonel 0 light_colonel 0 002 @ 09937250 n 0000 ;c 08199025 n 0000 | a commissioned officer in the United States Army or Air Force or Marines holding a rank above major and below colonel -10259997 18 n 01 lieutenant_commander 0 002 @ 09943541 n 0000 ;c 08199025 n 0000 | a commissioned officer in the Navy ranking above a lieutenant and below a commander -10260166 18 n 01 lieutenant_general 0 002 @ 10125786 n 0000 ;c 08199025 n 0000 | a general officer ranking above a major general and below a full general -10260322 18 n 01 lieutenant_governor 0 001 @ 10048836 n 0000 | an elected official serving as deputy to the governor of a state of the United States -10260473 18 n 02 lieutenant_junior_grade 0 lieutenant_JG 0 002 @ 09943541 n 0000 ;c 08199025 n 0000 | an officer holding a commissioned rank in the United States Navy or United States Coast Guard; below lieutenant and above ensign -10260706 18 n 01 life 0 001 @ 00007846 n 0000 | a living person; "his heroism saved a life" -10260800 18 n 02 lifeguard 0 lifesaver 0 001 @ 09821831 n 0000 | an attendant employed at a beach or pool to protect swimmers from accidents -10260943 18 n 01 life_peer 0 001 @ 10412910 n 0000 | a British peer whose title lapses at death -10261041 18 n 01 lifer 0 005 @ 09962966 n 0000 + 15225076 n 0102 + 15140892 n 0101 + 15140405 n 0101 + 13961642 n 0102 | a prisoner serving a term of life imprisonment -10261211 18 n 01 life_tenant 0 001 @ 10700640 n 0000 | a tenant whose legal right to retain possession of buildings or lands lasts as long as they (or some other person) live -10261388 18 n 03 lighterman 0 bargeman 0 bargee 0 002 @ 10294602 n 0000 + 01950502 v 0301 | someone who operates a barge -10261511 18 n 01 light_flyweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 106 pounds -10261624 18 n 02 light_heavyweight 0 cruiserweight 0 001 @ 10477077 n 0000 | a professional boxer who weighs between 169 and 175 pounds -10261762 18 n 01 light_heavyweight 1 001 @ 10793168 n 0000 | a wrestler who weighs 192-214 pounds -10261862 18 n 01 light_heavyweight 2 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 179 pounds -10261977 18 n 01 light_middleweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 156 pounds -10262093 18 n 01 lighthouse_keeper 0 001 @ 09984298 n 0000 | the keeper of a lighthouse -10262183 18 n 01 lightning_rod 0 001 @ 00007846 n 0000 | someone who is a frequent target of negative reactions and serves to distract attention from another -10262343 18 n 02 light-o'-love 0 light-of-love 0 001 @ 10766260 n 0000 | a woman inconstant in love -10262445 18 n 01 lightweight 0 001 @ 10477077 n 0000 | a professional boxer who weighs between 131 and 135 pounds -10262561 18 n 01 lightweight 1 001 @ 10793168 n 0000 | a wrestler who weighs 139-154 pounds -10262655 18 n 01 lightweight 3 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 132 pounds -10262764 18 n 01 light_welterweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 140 pounds -10262880 18 n 01 lilliputian 1 002 @ 10613505 n 0000 + 01392249 a 0103 | a very small person (resembling a Lilliputian) -10263002 18 n 02 linebacker 0 line_backer 0 001 @ 10101634 n 0000 | a defensive football player who takes a position close behind the linemen -10263146 18 n 01 limnologist 0 001 @ 10631941 n 0000 | a specialist in the study of freshwater ponds and lakes -10263259 18 n 01 line_judge 0 001 @ 10101427 n 0000 | football official who assists the referee by keeping track of the official time during the game -10263411 18 n 01 lineman 0 005 @ 10101634 n 0000 ~ 09904321 n 0000 ~ 10056398 n 0000 ~ 10149720 n 0000 ~ 10688070 n 0000 | one of the players on the line of scrimmage -10263580 18 n 01 lineman 2 001 @ 10680609 n 0000 | the surveyor who marks positions with a range pole -10263684 18 n 01 linendraper 0 002 @ 10032190 n 0000 ;r 08860123 n 0000 | a retail dealer in yard goods -10263790 18 n 01 line_officer 0 001 @ 09942970 n 0000 | a commissioned officer with combat units (not a staff officer or a supply officer) -10263931 18 n 01 linesman 1 001 @ 10372076 n 0000 | official (in tennis, soccer, football, etc.) who assists the referee in some way (especially by watching for out of bounds or offside) -10264120 18 n 01 line_worker 0 001 @ 10053808 n 0000 | an employee who works on an assembly line -10264219 18 n 02 linguist 0 polyglot 0 007 @ 00007846 n 0000 + 01545904 a 0201 + 02842445 a 0101 ~ 09854290 n 0000 ~ 10725280 n 0000 ~i 11013574 n 0000 ~i 11031016 n 0000 | a person who speaks more than one language -10264437 18 n 02 linguist 1 linguistic_scientist 0 022 @ 10560637 n 0000 + 06171040 n 0101 + 06172789 n 0101 + 02843218 a 0101 ~ 09950728 n 0000 ~ 10141364 n 0000 ~ 10167448 n 0000 ~ 10256080 n 0000 ~ 10354053 n 0000 ~ 10426454 n 0000 ~ 10426630 n 0000 ~ 10488656 n 0000 ~ 10577820 n 0000 ~ 10620586 n 0000 ~i 10853767 n 0000 ~i 10896452 n 0000 ~i 10931634 n 0000 ~i 10971264 n 0000 ~i 11016563 n 0000 ~i 11078774 n 0000 ~i 11083527 n 0000 ~i 11281174 n 0000 | a specialist in linguistics -10264928 18 n 02 linkboy 0 linkman 0 001 @ 09821831 n 0000 | (formerly) an attendant hired to carry a torch for pedestrians in dark streets -10265070 18 n 02 lion 0 social_lion 0 002 @ 09903153 n 0000 + 02398956 v 0101 | a celebrity who is lionized (much sought after) -10265200 18 n 01 lion-hunter 0 001 @ 10193026 n 0000 | someone who hunts lions -10265281 18 n 01 lion-hunter 1 001 @ 10618685 n 0000 | someone who tries to attract social lions as guests -10265390 18 n 01 lip_reader 0 001 @ 09996481 n 0000 | someone who can understand spoken words by watching the movements of a speaker's lips -10265532 18 n 02 liquidator 0 receiver 1 005 @ 10086074 n 0000 ;c 08441203 n 0000 + 14479320 n 0201 + 01186578 n 0201 + 00598767 n 0201 | (law) a person (usually appointed by a court of law) who liquidates assets or preserves them for the benefit of affected parties -10265801 18 n 01 lisper 0 002 @ 10630188 n 0000 + 00982178 v 0101 | a speaker who lisps -10265891 18 n 01 lister 0 003 @ 10692883 n 0000 + 02472223 v 0101 + 00945853 v 0101 | assessor who makes out the tax lists -10266016 18 n 01 literary_critic 0 013 @ 09979589 n 0000 ~i 10823760 n 0000 ~i 10866090 n 0000 ~i 10897796 n 0000 ~i 10931452 n 0000 ~i 10984418 n 0000 ~i 11037157 n 0000 ~i 11173031 n 0000 ~i 11260945 n 0000 ~i 11310523 n 0000 ~i 11349092 n 0000 ~i 11359697 n 0000 ~i 11391123 n 0000 | a critic of literature -10266328 18 n 02 literate 0 literate_person 0 004 @ 00007846 n 0000 ~ 09785409 n 0000 ~ 10508862 n 0000 ~ 10801291 n 0000 | a person who can read and write -10266486 18 n 01 lithographer 0 010 @ 10475687 n 0000 + 06680002 n 0101 + 00939338 n 0101 + 03678220 n 0101 + 03677976 n 0101 + 01749394 v 0101 ~i 10918358 n 0000 ~i 10923521 n 0000 ~i 11075452 n 0000 ~i 11292662 n 0000 | a printmaker who uses lithography -10266744 18 n 01 lithomancer 0 002 @ 10020031 n 0000 + 05777298 n 0101 | one who practices lithomancy -10266848 18 n 02 litigant 0 litigator 0 009 @ 10402824 n 0000 ;c 08441203 n 0000 + 02582450 v 0201 + 02582450 v 0101 ~ 09762101 n 0000 ~ 09800469 n 0000 ~ 10087736 n 0000 ~ 10437852 n 0000 ~ 10470314 n 0000 | (law) a party to a lawsuit; someone involved in litigation; "plaintiffs and defendants are both litigants" -10267166 18 n 03 litterer 0 litterbug 0 litter_lout 0 002 @ 10612210 n 0000 + 02735142 v 0101 | a person who litters public places with refuse -10267311 18 n 01 little_brother 0 001 @ 09876454 n 0000 | a younger brother; "my little brother just had his 50th birthday" -10267437 18 n 01 Little_John 0 001 @i 09587565 n 0000 | legendary follower of Robin Hood; noted for his size and strength -10267561 18 n 01 little_leaguer 0 002 @ 09835506 n 0000 #m 08232160 n 0000 | a player between 8 and 12 years of age who is a member of a little-league team -10267719 18 n 01 Little_Red_Riding_Hood 0 001 @i 09587565 n 0000 | a girl in a fairy tale who meets a wolf while going to visit her grandmother -10267865 18 n 01 little_sister 0 001 @ 10602985 n 0000 | a younger sister -10267941 18 n 01 liturgist 0 003 @ 09824361 n 0000 + 01035853 n 0105 + 01033184 n 0101 | an authority on liturgies -10268058 18 n 01 liveborn_infant 0 002 @ 10353016 n 0000 ! 10656706 n 0101 | infant who shows signs of life after birth -10268180 18 n 01 liver 0 002 @ 09620078 n 0000 + 02649830 v 0103 | someone who lives in a place; "a liver in cities" -10268299 18 n 01 liver 1 002 @ 00007846 n 0000 + 02614387 v 0101 | a person who has a special life style; "a high liver" -10268422 18 n 01 liveryman 0 001 @ 10053808 n 0000 | a worker in a livery stable -10268505 18 n 01 loader 1 002 @ 09821831 n 0000 + 01490336 v 0101 | an attendant who loads guns for someone shooting game -10268629 18 n 01 lobbyist 0 003 @ 10418841 n 0000 + 08375526 n 0101 + 02458943 v 0101 | someone who is employed to persuade legislators to vote for legislation that favors the lobbyist's employer -10268827 18 n 01 lobsterman 0 001 @ 10605985 n 0000 | a person whose occupation is catching lobsters -10268930 18 n 02 locator 0 locater 0 003 @ 10680609 n 0000 + 02694933 v 0202 + 02694933 v 0102 | a person who fixes the boundaries of land claims -10269078 18 n 03 lockmaster 0 lockman 0 lockkeeper 0 001 @ 10605985 n 0000 | a worker in charge of a lock (on a canal) -10269199 18 n 01 locksmith 0 001 @ 10614812 n 0000 | someone who makes or repairs locks -10269289 18 n 02 locum_tenens 0 locum 0 001 @ 10648237 n 0000 | someone (physician or clergyman) who substitutes temporarily for another member of the same profession -10269458 18 n 03 lodger 0 boarder 0 roomer 0 004 @ 10700201 n 0000 + 02656763 v 0302 + 01177118 v 0201 + 02652494 v 0101 | a tenant in someone's house -10269611 18 n 01 logical_positivist 0 002 @ 10456138 n 0000 + 05993367 n 0102 | someone who maintains that any statement that cannot be verified empirically is meaningless -10269785 18 n 02 logician 0 logistician 0 013 @ 09617867 n 0000 + 05664069 n 0201 + 06163751 n 0201 + 05664069 n 0101 + 06163751 n 0101 ~ 10011360 n 0000 ~ 10685123 n 0000 ~ 10685587 n 0000 ~i 11084200 n 0000 ~i 11228298 n 0000 ~i 11250991 n 0000 ~i 11274812 n 0000 ~i 11362452 n 0000 | a person skilled at symbolic logic -10270109 18 n 02 logomach 0 logomachist 0 002 @ 09615465 n 0000 + 07141319 n 0201 | someone given to disputes over words -10270232 18 n 02 loiterer 0 lingerer 0 003 @ 09993252 n 0000 + 02639075 v 020a + 02639075 v 0101 | someone who lingers aimlessly in or about a place -10270383 18 n 01 Lolita 0 001 @ 10247358 n 0000 | a sexually precocious young girl -10270468 18 n 02 lollipop_lady 0 lollipop_woman 0 002 @ 09980658 n 0000 ;r 08860123 n 0000 | a woman hired to help children cross a road safely near a school -10270628 18 n 03 loner 0 lone_wolf 0 lone_hand 0 002 @ 09619824 n 0000 ~ 10172448 n 0000 | a person who avoids the company or assistance of others -10270777 18 n 01 longbowman 0 001 @ 09805324 n 0000 | a medieval English archer who used a longbow -10270878 18 n 03 longer 0 thirster 0 yearner 0 004 @ 00007846 n 0000 + 01805684 v 0302 + 01828405 v 0303 + 01828405 v 0102 | a person with a strong desire for something; "a longer for money"; "a thirster after blood"; "a yearner for knowledge" -10271124 18 n 01 long_shot 0 001 @ 09613191 n 0000 | a contestant that is unlikely to win -10271216 18 n 08 lookout 0 lookout_man 0 sentinel 0 sentry 0 watch 0 spotter 3 scout 1 picket 1 004 @ 10770059 n 0000 + 02154312 v 0602 + 02151966 v 0501 + 02151966 v 0102 | a person employed to keep watch for some anticipated event -10271451 18 n 01 loon 0 001 @ 10197967 n 0000 | a worthless lazy fellow -10271525 18 n 01 loose_cannon 0 001 @ 00007846 n 0000 | a person who is expected to perform a particular task but who is out of control and dangerous -10271677 18 n 03 Lord 0 noble 0 nobleman 0 023 @ 10285135 n 0000 ! 10242791 n 0302 + 01591050 a 0103 + 06342781 n 0101 + 02398854 v 0101 ! 10242791 n 0101 ~ 09808591 n 0000 ~ 09840520 n 0000 ~ 09881133 n 0000 ~ 09969218 n 0000 ~ 10038778 n 0000 ~ 10142290 n 0000 ~ 10293861 n 0000 ~ 10295479 n 0000 ~ 10310647 n 0000 ~ 10318802 n 0000 ~ 10394141 n 0000 ~ 10412910 n 0000 ~ 10601725 n 0000 ~ 10705100 n 0000 ~ 10756148 n 0000 ~i 10939475 n 0000 ~i 11192901 n 0000 | a titled peer of the realm -10272171 18 n 02 Lord_Chancellor 0 Lord_High_Chancellor 0 002 @ 09886010 n 0000 ;r 08860123 n 0000 | the highest officer of the Crown who is head of the judiciary and who presides in the House of Lords -10272375 18 n 01 Lord_of_Misrule 0 001 @ 10299250 n 0000 | a person appointed master of revels at a Christmas celebration -10272499 18 n 01 Lord_Privy_Seal 0 002 @ 09886010 n 0000 #m 08382056 n 0000 | the senior cabinet minister in the British Cabinet who has no official duties -10272657 18 n 01 Lorelei 0 001 @i 10601840 n 0000 | a Siren of German legend who lured boatmen in the Rhine to destruction -10272782 18 n 01 loser 0 004 @ 10118844 n 0000 + 02288828 v 0101 + 01099592 v 0101 ! 10782791 n 0101 | a gambler who loses a bet -10272913 18 n 02 loser 1 also-ran 0 004 @ 09613191 n 0000 + 01099592 v 0101 ! 10782940 n 0101 ~ 10273352 n 0000 | a contestant who loses the contest -10273064 18 n 04 failure 0 loser 2 nonstarter 0 unsuccessful_person 0 008 @ 09630641 n 0000 + 01099592 v 0201 ! 09762821 n 0201 + 02528380 v 0101 ~ 09838370 n 0000 ~ 10095550 n 0000 ~ 10097477 n 0000 ~ 10273572 n 0000 | a person with a record of failing; someone who loses consistently -10273352 18 n 01 old_maid 2 001 @ 10272913 n 0000 | the loser in a game of old maid -10273438 18 n 01 underboss 0 001 @ 09815790 n 0000 | an assistant or second-in-command to a chief (especially in a crime syndicate) -10273572 18 n 01 underdog 0 001 @ 10273064 n 0000 | one at a disadvantage and expected to lose -10273669 18 n 01 Lot 0 002 @i 09681351 n 0000 ;c 06449735 n 0000 | (Old Testament) nephew of Abraham; God destroyed Sodom and Gomorrah but chose to spare Lot and his family who were told to flee without looking back at the destruction -10273906 18 n 01 Lot's_wife 0 002 @i 09681973 n 0000 ;c 06449735 n 0000 | (Old Testament) when God destroyed Sodom and Gomorrah, Lot and his family were told to flee without looking back; Lot's wife was disobedient and was immediately changed into a pillar of salt -10274173 18 n 01 Lothario 0 001 @ 10789118 n 0000 | a successful womanizer; a man who behaves selfishly in his sexual relationships with women -10274318 18 n 02 loudmouth 0 blusterer 0 003 @ 10731244 n 0000 + 00883226 v 0208 + 00012434 v 0202 | a person who causes trouble by speaking indiscreetly -10274474 18 n 02 lounge_lizard 0 lizard 0 001 @ 10129464 n 0000 | a man who idles about in the lounges of hotels and bars in search of women who would support him -10274639 18 n 09 lout 0 clod 0 stumblebum 0 goon 1 oaf 0 lubber 0 lummox 0 lump 0 gawk 0 003 @ 09931267 n 0000 + 01140896 a 0901 + 02230080 a 0601 | an awkward stupid person -10274815 18 n 02 lowerclassman 0 underclassman 0 004 @ 10736602 n 0000 ~ 10111688 n 0000 ~ 10227393 n 0000 ~ 10625438 n 0000 | an undergraduate who is not yet a senior -10274985 18 n 02 low-birth-weight_baby 0 low-birth-weight_infant 0 001 @ 10353016 n 0000 | an infant born weighing less than 5.5 pounds (2500 grams) regardless of gestational age; "a low-birth-weight infant is at risk for developing lack of oxygen during labor" -10275249 18 n 03 Lowlander 0 Scottish_Lowlander 0 Lowland_Scot 0 002 @ 09730533 n 0000 + 08891889 n 0101 | a native of the Lowlands of Scotland -10275395 18 n 02 loyalist 0 stalwart 0 001 @ 10677713 n 0000 | a person who is loyal to their allegiance (especially in times of revolt) -10275534 18 n 01 Lubavitcher 0 002 @ 10384772 n 0000 #m 08475332 n 0000 | a member of the Lubavitch movement; a follower of Chabad Hasidism -10275676 18 n 01 Luddite 0 001 @ 10791221 n 0000 | one of the 19th century English workmen who destroyed laborsaving machinery that they thought would cause unemployment -10275848 18 n 01 Luddite 1 001 @ 09773245 n 0000 | any opponent of technological progress -10275940 18 n 02 luger 0 slider 0 002 @ 10610333 n 0000 + 01886488 v 0202 | someone who races the luge -10276045 18 n 05 lumberman 0 lumberjack 0 logger 0 feller 1 faller 1 005 @ 10241300 n 0000 + 01258302 v 0401 + 01258828 v 0301 ~i 09591155 n 0000 ~ 10562283 n 0000 | a person who fells trees -10276238 18 n 05 luminary 0 leading_light 0 guiding_light 0 notable 0 notability 0 003 @ 09903153 n 0000 + 01375831 a 0506 + 01375831 a 0406 | a celebrity who is an inspiration to others; "he was host to a large gathering of luminaries" -10276477 18 n 01 lumper 0 003 @ 10693824 n 0000 + 00657016 v 0102 ! 10637635 n 0101 | a taxonomist who classifies organisms into large groups on the basis of major characteristics -10276659 18 n 01 light 0 001 @ 10112591 n 0000 | a person regarded very fondly; "the light of my life" -10276764 18 n 03 lunatic 0 madman 0 maniac 0 006 @ 10595647 n 0000 + 02076416 a 0301 ~ 09976283 n 0000 ~ 10276942 n 0000 ~ 10277027 n 0000 ~ 10279964 n 0000 | an insane person -10276942 18 n 01 bedlamite 0 001 @ 10276764 n 0000 | an archaic term for a lunatic -10277027 18 n 01 pyromaniac 0 001 @ 10276764 n 0000 | a person with a mania for setting things on fire -10277132 18 n 01 luncher 0 002 @ 10042300 n 0000 + 01185304 v 0101 | someone who is eating lunch -10277231 18 n 01 lunger 1 002 @ 10335931 n 0000 + 02062212 v 0101 | someone who moves forward suddenly (as in fencing) -10277352 18 n 03 lurker 0 skulker 0 lurcher 0 004 @ 10763725 n 0000 + 02640053 v 0202 + 01138204 v 0105 + 02640053 v 0101 | someone waiting in concealment -10277509 18 n 01 luthier 0 001 @ 09974648 n 0000 | a craftsman who makes stringed instruments (as lutes or guitars or violins) -10277638 18 n 03 lutist 0 lutanist 0 lutenist 0 005 @ 10340312 n 0000 + 03698360 n 0301 + 03698360 n 0201 + 03698360 n 0101 ~i 10941992 n 0000 | a musician who plays the lute -10277815 18 n 01 Lutheran 0 002 @ 10016103 n 0000 #m 08091744 n 0000 | follower of Lutheranism -10277912 18 n 02 lyricist 0 lyrist 0 007 @ 10794014 n 0000 + 07051975 n 0101 ~i 10997068 n 0000 ~i 11026597 n 0000 ~i 11032541 n 0000 ~i 11129130 n 0000 ~i 11259777 n 0000 | a person who writes the words for songs -10278128 18 n 09 ma 0 mama 0 mamma 0 mom 0 momma 0 mommy 0 mammy 0 mum 0 mummy 0 001 @ 10332385 n 0000 | informal terms for a mother -10278263 18 n 01 macaroni 0 001 @ 09991026 n 0000 | a British dandy in the 18th century who affected Continental mannerisms; "Yankee Doodle stuck a feather in his cap and called it macaroni" -10278456 18 n 03 macebearer 0 mace 0 macer 0 001 @ 10372373 n 0000 | an official who carries a mace of office -10278568 18 n 01 Machiavellian 0 001 @ 10099375 n 0000 | a follower of Machiavelli's principles -10278666 18 n 01 machine 0 002 @ 00007846 n 0000 ~ 09985978 n 0000 | an efficient person; "the boxer was a magnificent fighting machine" -10278805 18 n 04 machine_politician 0 ward-heeler 0 political_hack 0 hack 2 001 @ 10450303 n 0000 | a politician who belongs to a small clique that controls a political party for private rather than public ends -10279018 18 n 03 machinist 0 mechanic 0 shop_mechanic 0 005 @ 09974648 n 0000 + 02958343 n 0104 + 03699975 n 0101 + 01624169 v 0101 + 01623967 v 0101 | a craftsman skilled in operating machine tools -10279219 18 n 01 macho 0 001 @ 09624168 n 0000 | a male exhibiting or characterized by machismo -10279317 18 n 01 Mackem 0 001 @ 09701148 n 0000 | a native of Sunderland -10279392 18 n 02 macroeconomist 0 macroeconomic_expert 0 002 @ 10043643 n 0000 + 06150933 n 0101 | an economist who specializes in macroeconomics -10279540 18 n 01 macushla 0 002 @ 09991867 n 0000 ;r 08859173 n 0000 | (an Irish term of address expressing affection) darling -10279669 18 n 02 madam 1 brothel_keeper 0 001 @ 09882615 n 0000 | a woman who runs a house of prostitution -10279778 18 n 01 madame 0 001 @ 09989290 n 0000 | title used for a married Frenchwoman -10279867 18 n 01 madrigalist 0 002 @ 10599806 n 0000 + 07052925 n 0101 | a singer of madrigals -10279964 18 n 01 madwoman 0 001 @ 10276764 n 0000 | a woman lunatic -10280034 18 n 01 maenad 2 001 @ 10787470 n 0000 | an unnaturally frenzied or distraught woman -10280130 18 n 02 maestro 0 master 0 006 @ 09812338 n 0000 + 02226979 a 0203 + 00595146 n 0201 + 00597385 v 0201 + 00597634 v 0201 ~ 10375794 n 0000 | an artist of consummate skill; "a master of the violin"; "one of the old masters" -10280364 18 n 01 mafioso 0 002 @ 09977660 n 0000 #m 08245802 n 0000 | a member of the Mafia crime syndicate in the United States -10280495 18 n 01 mafioso 1 002 @ 09717566 n 0000 #m 08245549 n 0000 | a member of the Sicilian Mafia -10280598 18 n 01 magdalen 0 001 @ 10601078 n 0000 | a reformed prostitute -10280674 18 n 05 magician 1 prestidigitator 0 conjurer 1 conjuror 1 illusionist 1 007 @ 10415638 n 0000 + 00099951 n 0508 + 01629958 v 0402 + 01629958 v 0302 + 00099951 n 0104 ~ 10063177 n 0000 ~ 10319580 n 0000 | someone who performs magic tricks to amuse an audience -10280945 18 n 01 magistrate 0 004 @ 10225219 n 0000 + 02831596 a 0101 ~ 10228468 n 0000 ~ 10656969 n 0000 | a lay judge or civil authority who administers the law (especially one who conducts a court dealing with minor offenses) -10281176 18 n 01 magnifico 0 001 @ 10200781 n 0000 | a person of distinguished rank or appearance -10281276 18 n 03 magpie 0 scavenger 0 pack_rat 0 002 @ 10178611 n 0000 + 01381357 v 0202 | someone who collects things that have been discarded by others -10281432 18 n 01 magus 1 001 @ 10471250 n 0000 | a member of the Zoroastrian priesthood of the ancient Persians -10281546 18 n 01 magus 0 001 @ 10625860 n 0000 | a magician or sorcerer of ancient times -10281637 18 n 02 maharaja 0 maharajah 0 001 @ 10472799 n 0000 | a great raja; a Hindu prince or king in India ranking above a raja -10281770 18 n 02 maharani 0 maharanee 0 001 @ 10474064 n 0000 | a great rani; a princess in India or the wife of a maharaja -10281896 18 n 01 mahatma 0 002 @ 10546202 n 0000 ;c 06236802 n 0000 | (Hinduism) term of respect for a brahmin sage -10282014 18 n 01 Mahdi 0 004 @i 10519494 n 0000 ;c 06234825 n 0000 + 10282262 n 0101 + 06235829 n 0101 | (Islam) a messianic leader who (according to popular Muslim belief) will appear before the end of the world and restore justice and religion -10282262 18 n 01 Mahdist 0 003 @ 10016103 n 0000 + 10282014 n 0101 + 06235829 n 0101 | an adherent of Mahdism -10282374 18 n 01 mahout 0 002 @ 10035430 n 0000 ;r 08900535 n 0000 | the driver and keeper of an elephant -10282482 18 n 02 maid 0 maiden 0 006 @ 10129825 n 0000 + 01484651 a 0202 + 15147330 n 0202 + 15147330 n 0103 ~i 09563425 n 0000 ~ 09989168 n 0000 | an unmarried girl (especially a virgin) -10282672 18 n 04 maid 1 maidservant 0 housemaid 0 amah 0 005 @ 10024119 n 0000 ~ 09906293 n 0000 ~ 10159186 n 0000 ~ 10243483 n 0000 ~ 10400826 n 0000 | a female domestic -10282845 18 n 01 maiden_aunt 0 001 @ 09823502 n 0000 | an unmarried aunt -10282920 18 n 01 mailer 0 003 @ 00007846 n 0000 + 01437888 v 0101 + 01031256 v 0101 | a person who mails something -10283037 18 n 05 mailman 0 postman 0 mail_carrier 0 letter_carrier 0 carrier 2 001 @ 10001217 n 0000 | a man who delivers the mail -10283170 18 n 01 major 0 002 @ 09943239 n 0000 ;c 08199025 n 0000 | a commissioned military officer in the United States Army or Air Force or Marines; below lieutenant colonel and above captain -10283366 18 n 01 major 1 002 @ 10665698 n 0000 + 00607609 v 0101 | a university student who is studying a particular field as the principal subject; "she is a linguistics major" -10283546 18 n 02 major-domo 0 seneschal 0 001 @ 10582154 n 0000 | the chief steward or butler of a great household -10283663 18 n 01 major-general 0 002 @ 10125786 n 0000 ;c 08199025 n 0000 | a general officer ranking above a brigadier general and below a lieutenant general -10283824 18 n 01 majority_leader 0 001 @ 10253995 n 0000 | leader of the majority party in a legislature -10283931 18 n 02 major_leaguer 0 big_leaguer 0 002 @ 09835506 n 0000 #m 08078819 n 0000 | a member of a major-league baseball team -10284064 18 n 02 maker 0 shaper 0 035 @ 09614315 n 0000 + 01659248 v 0201 + 00142191 v 0201 + 01654628 v 0103 + 01621555 v 0102 ~ 09842288 n 0000 ~ 09849801 n 0000 ~ 09866354 n 0000 ~ 09874118 n 0000 ~ 09907566 n 0000 ~ 09933098 n 0000 ~ 09953350 n 0000 ~ 10126177 n 0000 ~ 10132422 n 0000 ~ 10162354 n 0000 ~ 10216928 n 0000 ~ 10221956 n 0000 ~ 10286855 n 0000 ~ 10292316 n 0000 ~ 10351281 n 0000 ~ 10408809 n 0000 ~ 10416270 n 0000 ~ 10431122 n 0000 ~ 10545415 n 0000 ~ 10546561 n 0000 ~ 10590903 n 0000 ~ 10636340 n 0000 ~ 10653679 n 0000 ~ 10702077 n 0000 ~ 10715347 n 0000 ~ 10754088 n 0000 ~ 10754920 n 0000 ~ 10769905 n 0000 ~ 10781460 n 0000 ~i 11283158 n 0000 | a person who makes things -10284763 18 n 01 malacologist 0 001 @ 10806222 n 0000 | a zoologist specializing in the study of mollusks -10284871 18 n 01 malahini 0 002 @ 10355688 n 0000 ;r 09078231 n 0000 | a newcomer to Hawaii -10284965 18 n 01 malcontent 0 005 @ 00007846 n 0000 + 00589960 a 0103 ~ 10501203 n 0000 ~ 10626630 n 0000 ~ 10642499 n 0000 | a person who is discontented or disgusted -10285135 18 n 01 male_aristocrat 0 006 @ 09807754 n 0000 ! 10083823 n 0101 ~ 09902256 n 0000 ~ 10238375 n 0000 ~ 10271677 n 0000 ~ 10601526 n 0000 | a man who is an aristocrat -10285313 18 n 02 male_child 0 boy 0 015 @ 09624168 n 0000 + 15147504 n 0201 ! 10084295 n 0202 ! 10084295 n 0101 ~ 09785891 n 0000 ~ 09834159 n 0000 ~ 09843443 n 0000 ~ 09871229 n 0000 ~ 09900873 n 0000 ~ 10078719 n 0000 ~ 10082299 n 0000 ~ 10442705 n 0000 ~ 10559192 n 0000 ~ 10563183 n 0000 ~ 10591949 n 0000 | a youthful male person; "the baby was a boy"; "she made the boy brush his teeth every night"; "most soldiers are only boys in uniform" -10285762 18 n 01 transgressor 0 002 @ 09633969 n 0000 + 02566528 v 0101 | someone who transgresses; someone who violates a law or command; "the way of transgressors is hard" -10285938 18 n 02 male_offspring 0 man-child 0 004 @ 09918248 n 0000 @ 09624168 n 0000 ! 10084043 n 0101 ~ 10624074 n 0000 | a child who is male -10286084 18 n 01 male_sibling 0 003 @ 10236946 n 0000 ! 10084181 n 0101 ~ 09876454 n 0000 | a sibling who is male -10286200 18 n 01 malfeasant 0 001 @ 09633969 n 0000 | one guilty of malfeasance -10286282 18 n 01 malik 0 003 @ 09623038 n 0000 ;r 08701942 n 0000 ;r 08900535 n 0000 | the leader of a town or community in some parts of Asia Minor and the Indian subcontinent; "maliks rule the hinterland of Afghanistan under the protection of warlords" -10286539 18 n 03 malingerer 0 skulker 1 shammer 1 005 @ 10608385 n 0000 + 01721754 v 0303 + 00838043 v 0302 + 02464132 v 0202 + 02464132 v 0101 | someone shirking their duty by feigning illness or incapacity -10286749 18 n 01 Malthusian 0 002 @ 09848489 n 0000 + 03084010 a 0101 | a believer in Malthusian theory -10286855 18 n 02 maltster 0 maltman 0 004 @ 10284064 n 0000 + 07888909 n 0101 + 07926642 n 0102 + 07889274 n 0101 | a maker of malt -10286989 18 n 01 mammalogist 0 001 @ 10806222 n 0000 | one skilled in the study of mammals -10287082 18 n 01 mammy 1 002 @ 10345100 n 0000 ;u 06717170 n 0000 | an offensive term for a Black nursemaid in the southern U.S. -10287213 18 n 02 man 0 adult_male 0 064 @ 09624168 n 0000 @ 09605289 n 0000 + 01483677 a 0104 + 01475831 a 0101 ! 10787470 n 0101 %p 05220306 n 0000 ~i 09586553 n 0000 ~i 09586994 n 0000 ~i 09587217 n 0000 ~i 09587409 n 0000 ~ 09637211 n 0000 ~ 09641002 n 0000 ~ 09643545 n 0000 ~ 09827246 n 0000 ~ 09829923 n 0000 ~ 09852289 n 0000 ~ 09870926 n 0000 ~ 09871364 n 0000 ~ 09871580 n 0000 ~ 09878702 n 0000 ~ 09991026 n 0000 ~ 10048117 n 0000 ~ 10064046 n 0000 ~ 10066452 n 0000 ~ 10081670 n 0000 ~ 10081842 n 0000 ~ 10083358 n 0000 ~ 10118301 n 0000 ~ 10123711 n 0000 ~ 10127273 n 0000 ~ 10144338 n 0000 ~ 10153414 n 0000 ~i 10158222 n 0000 ~ 10173771 n 0000 ~ 10184822 n 0000 ~ 10188369 n 0000 ~ 10192839 n 0000 ~ 10194231 n 0000 ~ 10202225 n 0000 ~ 10216560 n 0000 ~ 10216839 n 0000 ~i 10219778 n 0000 ~ 10288964 n 0000 ~ 10314054 n 0000 ~ 10329675 n 0000 ~ 10375214 n 0000 ~ 10375506 n 0000 ~ 10406765 n 0000 ~ 10419785 n 0000 ~ 10452752 n 0000 ~ 10456391 n 0000 ~ 10578952 n 0000 ~ 10586903 n 0000 ~i 10588860 n 0000 ~ 10597745 n 0000 ~ 10598013 n 0000 ~ 10601451 n 0000 ~ 10656120 n 0000 ~ 10665587 n 0000 ~ 10692090 n 0000 ~ 10780506 n 0000 ~ 10789118 n 0000 ~ 10789415 n 0000 ~ 10804287 n 0000 | an adult person who is male (as opposed to a woman); "there were two women and six men on the bus" -10288516 18 n 01 man 7 004 @ 09624168 n 0000 @ 09622745 n 0000 ;u 07075172 n 0000 ! 10788852 n 0101 | a male person who plays a significant role (husband or lover or boyfriend) in the life of a particular woman; "she takes good care of her man" -10288763 18 n 01 man 6 003 @ 09624168 n 0000 + 01483677 a 0104 + 01475831 a 0101 | an adult male person who has a manly character (virile and courageous competent); "the army will make a man of you" -10288964 18 n 01 adonis 1 001 @ 10287213 n 0000 | any handsome young man -10289039 18 n 01 man 4 001 @ 00007846 n 0000 | the generic use of the word to refer to any human being; "it was every man for himself" -10289176 18 n 01 man 8 001 @ 10669991 n 0000 | a male subordinate; "the chief stationed two men outside the building"; "he awaited word from his man in Havana" -10289338 18 n 01 management_consultant 0 001 @ 09774266 n 0000 | adviser to business about efficient management practices -10289462 18 n 01 manageress 0 001 @ 10014939 n 0000 | a woman manager -10289534 18 n 01 managing_editor 0 001 @ 10044879 n 0000 | the editor in charge of all editorial activities of a newspaper or magazine -10289671 18 n 01 mandarin 0 001 @ 09698108 n 0000 | a high public official of imperial China -10289766 18 n 01 mandarin 1 001 @ 10372373 n 0000 | any high government official or bureaucrat -10289863 18 n 01 mandarin 2 001 @ 10050558 n 0000 | a member of an elite intellectual or cultural group -10289969 18 n 02 mandatary 0 mandatory 0 003 @ 09627906 n 0000 + 02395603 v 0201 + 02395603 v 0101 | the recipient of a mandate -10290099 18 n 01 mandator 0 003 @ 09824609 n 0000 + 02395603 v 0101 + 00751279 v 0101 | an authority who issues a mandate -10290223 18 n 02 Mandaean 0 Mandean 0 001 @ 09628382 n 0000 | a member of a small Gnostic sect that originated in Jordan and survives in Iraq and who believes that John the Baptist was the Messiah -10290422 18 n 02 maneuverer 0 manoeuvrer 0 002 @ 10438172 n 0000 + 01931768 v 0102 | a person skilled in maneuvering -10290541 18 n 01 maniac 1 002 @ 10078131 n 0000 + 02076416 a 0102 | a person who has an obsession with or excessive enthusiasm for something -10290684 18 n 01 manic-depressive 0 002 @ 10595647 n 0000 + 02076557 a 0101 | a person afflicted with manic-depressive illness -10290813 18 n 03 Manichaean 0 Manichean 0 Manichee 0 001 @ 10016103 n 0000 | an adherent of Manichaeism -10290919 18 n 01 manicurist 0 005 @ 09845999 n 0000 + 00660783 n 0101 + 00042641 v 0101 + 00042479 v 0101 ~ 10399895 n 0000 | a beautician who cleans and trims and polishes the fingernails -10291110 18 n 01 manipulator 1 003 @ 00007846 n 0000 + 01211699 v 0101 ~ 10734235 n 0000 | a person who handles things manually -10291240 18 n 06 mannequin 0 manikin 1 mannikin 1 manakin 1 fashion_model 0 model 2 003 @ 09815790 n 0000 + 02142626 v 0601 ~ 10676319 n 0000 | a woman who wears clothes to display fashions; "she was too fat to be a mannequin" -10291469 18 n 01 man-at-arms 0 001 @ 10622053 n 0000 | a heavily armed and mounted soldier in medieval times -10291580 18 n 03 manikin 0 mannikin 0 homunculus 0 001 @ 10613505 n 0000 | a person who is very small but who is not otherwise deformed or abnormal -10291730 18 n 01 man_jack 0 001 @ 00007846 n 0000 | a single individual; "every man jack" -10291822 18 n 02 man_of_action 0 man_of_deeds 0 001 @ 09767197 n 0000 | someone inclined to act first and think later -10291942 18 n 01 man_of_letters 0 001 @ 10191192 n 0000 | a man devoted to literary or scholarly activities -10292052 18 n 03 man_of_means 0 rich_man 0 wealthy_man 0 003 @ 10529231 n 0000 ~ 10344004 n 0000 ~ 10714577 n 0000 | a man who is wealthy -10292192 18 n 01 manservant 0 004 @ 10582154 n 0000 ~ 09884509 n 0000 ~ 10101981 n 0000 ~ 10745332 n 0000 | a man servant -10292316 18 n 02 manufacturer 0 producer 1 012 @ 10284064 n 0000 + 01621555 v 0201 + 01653442 v 0101 ~ 09809134 n 0000 ~ 09874014 n 0000 ~ 10018653 n 0000 ~ 10100620 n 0000 ~ 10581772 n 0000 ~i 11168645 n 0000 ~i 11175445 n 0000 ~i 11302772 n 0000 ~i 11385126 n 0000 | someone who manufactures something -10292622 18 n 01 Maoist 0 002 @ 09774783 n 0000 + 06215495 n 0101 | an advocate of Maoism -10292714 18 n 01 map-reader 0 001 @ 10508862 n 0000 | a person who can read maps; "he is a good map-reader" -10292824 18 n 02 Maquis 0 Maquisard 0 002 @ 10150556 n 0000 #m 08360849 n 0000 | a guerrilla fighter in the French underground in World War II -10292969 18 n 04 marathoner 0 marathon_runner 0 road_runner 0 long-distance_runner 0 002 @ 10542888 n 0000 + 07460546 n 0101 | someone who participates in long-distance races (especially in marathons) -10293172 18 n 04 marauder 0 predator 0 vulture 0 piranha 0 003 @ 09821253 n 0000 + 02020237 v 0101 ~ 10332110 n 0000 | someone who attacks in search of booty -10293332 18 n 02 marcher 1 parader 0 005 @ 10412055 n 0000 + 01924505 v 0201 + 01919391 v 0101 ~ 10436707 n 0000 ~ 10775536 n 0000 | walks with regular or stately step -10293502 18 n 01 marcher 2 001 @ 09620078 n 0000 | an inhabitant of a border district -10293590 18 n 02 marchioness 0 marquise 0 004 @ 10242791 n 0000 ~i 11150224 n 0000 ~i 11186685 n 0000 ~i 11241655 n 0000 | a noblewoman ranking below a duchess and above a countess -10293773 18 n 01 marchioness 1 001 @ 10780632 n 0000 | the wife or widow of a marquis -10293861 18 n 01 margrave 0 002 @ 10271677 n 0000 ;r 08766988 n 0000 | a German nobleman ranking above a count (corresponding in rank to a British marquess) -10294020 18 n 01 margrave 1 001 @ 10316683 n 0000 | the military governor of a frontier province in medieval Germany -10294139 18 n 04 Marine 0 devil_dog 0 leatherneck 0 shipboard_soldier 0 003 @ 10582746 n 0000 #m 08192970 n 0000 ;c 08199025 n 0000 | a member of the United States Marine Corps -10294318 18 n 01 marine 1 001 @ 10622053 n 0000 | a soldier who serves both on shipboard and on land -10294421 18 n 02 marine_engineer 0 naval_engineer 0 002 @ 09615807 n 0000 ;c 08199025 n 0000 | a naval officer responsible for the operation and maintenance of the ship's engines -10294602 18 n 09 mariner 0 seaman 0 tar 0 Jack-tar 0 Jack 0 old_salt 0 seafarer 0 gob 0 sea_dog 0 012 @ 10546633 n 0000 + 01566476 a 0202 + 05639832 n 0201 ~ 09756500 n 0000 ~ 09862183 n 0000 ~ 09998788 n 0000 ~ 10169796 n 0000 ~ 10261388 n 0000 ~ 10371741 n 0000 ~ 10433452 n 0000 ~ 10567172 n 0000 ~ 10775128 n 0000 | a man who serves as a sailor -10294953 18 n 03 marksman 0 sharpshooter 0 crack_shot 0 008 @ 10593115 n 0000 + 01135501 v 0201 + 05638606 n 0101 ~ 09994878 n 0000 ~ 10108937 n 0000 ~ 10530677 n 0000 ~ 10616899 n 0000 ~i 11210806 n 0000 | someone skilled in shooting -10295190 18 n 01 maroon 0 003 @ 09630641 n 0000 + 02228355 v 0101 + 00496489 v 0101 | a person who is stranded (as on an island); "when the tide came in I was a maroon out there" -10295371 18 n 01 marquess 0 001 @ 10412910 n 0000 | a British peer ranking below a duke and above an earl -10295479 18 n 02 marquis 0 marquess 1 001 @ 10271677 n 0000 | nobleman (in various countries) ranking above a count -10295597 18 n 01 Marrano 0 001 @ 09962214 n 0000 | (medieval Spain and Portugal) a disparaging term for a Jew who converted to Christianity in order to avoid persecution but continued to practice their religion secretly -10295819 18 n 01 married 0 002 @ 00007846 n 0000 + 02488834 v 0101 | a person who is married; "we invited several young marrieds" -10295951 18 n 02 marshal 0 marshall 0 004 @ 10249459 n 0000 + 00595032 n 0101 ~ 09781171 n 0000 ~i 11049443 n 0000 | a law officer having duties similar to those of a sheriff in carrying out the judgments of a court of law -10296176 18 n 02 marshal 1 marshall 1 009 @ 09943239 n 0000 ;c 08199025 n 0000 + 00595032 n 0101 + 01988325 v 0101 ~ 10086821 n 0000 ~i 10941714 n 0000 ~i 11030395 n 0000 ~i 11205647 n 0000 ~i 11283300 n 0000 | (in some countries) a military officer of highest rank -10296444 18 n 03 martinet 0 disciplinarian 0 moralist 1 003 @ 09824135 n 0000 + 00876062 n 0301 ~ 10655986 n 0000 | someone who demands exact conformity to rules and forms -10296618 18 n 02 martyr 0 sufferer 1 007 @ 10752093 n 0000 + 01794668 v 0201 + 07306032 n 0102 + 01605021 v 0101 + 00071646 v 0102 ~ 10585628 n 0000 ~i 11354333 n 0000 | one who suffers for the sake of principle -10296832 18 n 01 martyr 1 010 @ 10752093 n 0000 + 07333347 n 0101 + 01605021 v 0101 + 00071646 v 0102 ~i 10840021 n 0000 ~i 10996285 n 0000 ~i 11081353 n 0000 ~i 11121108 n 0000 ~ 11241455 n 0000 ~i 11367725 n 0000 | one who voluntarily suffers death as the penalty for refusing to renounce their religion -10297140 18 n 01 Marxist 0 002 @ 09774783 n 0000 + 06215618 n 0101 | an advocate of Marxism -10297234 18 n 01 mascot 0 001 @ 00004475 n 0000 | a person or animal that is adopted by a team or other group as a symbolic figure -10297367 18 n 01 masochist 0 004 @ 10419047 n 0000 + 07494175 n 0101 ! 10545792 n 0101 ~ 10094444 n 0000 | someone who obtains pleasure from receiving punishment -10297531 18 n 02 mason 0 stonemason 0 002 @ 09974648 n 0000 + 02895418 a 0101 | a craftsman who works with stone or brick -10297655 18 n 03 Masorete 0 Massorete 0 Masorite 0 001 @ 10557854 n 0000 | a scholar who is expert on the Masorah (especially one of the Jewish scribes who contributed to the Masorah) -10297841 18 n 03 masquerader 0 masker 0 masquer 0 003 @ 10401829 n 0000 + 01358328 v 0201 + 02147962 v 0101 | a participant in a masquerade -10297983 18 n 01 massager 0 005 @ 10427764 n 0000 + 01232738 v 0101 + 00064487 v 0101 ~ 10298202 n 0000 ~ 10298271 n 0000 | someone who rubs or kneads parts of the body to stimulate circulation and promote relaxation -10298202 18 n 01 masseur 0 001 @ 10297983 n 0000 | a male massager -10298271 18 n 01 masseuse 0 001 @ 10297983 n 0000 | a female massager -10298343 18 n 01 mass_murderer 0 001 @ 10338707 n 0000 | a person who is responsible for the deaths of many victims in a single incident -10298482 18 n 02 master 2 professional 1 004 @ 09824361 n 0000 + 02226979 a 0103 + 00595146 n 0101 ~ 10405229 n 0000 | an authority qualified to teach apprentices -10298647 18 n 01 master 3 005 @ 10054657 n 0000 + 00595146 n 0101 ~ 10459575 n 0000 ~ 10642388 n 0000 ~ 10652837 n 0000 | directs the work of others -10298798 18 n 01 master 5 001 @ 10557854 n 0000 | someone who holds a master's degree from academic institution -10298912 18 n 04 master 7 captain 3 sea_captain 0 skipper 1 005 @ 10371741 n 0000 + 02447001 v 0401 + 00589769 n 0201 + 00595146 n 0101 ~i 11104458 n 0000 | an officer who is licensed to command a merchant ship -10299125 18 n 01 master-at-arms 0 001 @ 10420809 n 0000 | the senior petty officer; responsible for discipline aboard ship -10299250 18 n 03 master_of_ceremonies 0 emcee 0 host 1 009 @ 09616922 n 0000 + 01194418 v 0301 + 02592397 v 0201 ~ 09946814 n 0000 ~ 10272375 n 0000 ~ 10500942 n 0000 ~ 10531948 n 0000 ~ 10713686 n 0000 ~i 11324619 n 0000 | a person who acts as host at formal occasions (makes an introductory speech and introduces other speakers) -10299583 18 n 01 master_sergeant 0 001 @ 10580772 n 0000 | a senior noncommissioned officer in the Army or Marines -10299700 18 n 02 masturbator 0 onanist 0 005 @ 00007846 n 0000 + 00855674 n 0202 + 01430633 v 0101 ~ 10113869 n 0000 ~ 10717196 n 0000 | a person who practices masturbation -10299875 18 n 03 matchmaker 0 matcher 1 marriage_broker 0 002 @ 09624559 n 0000 + 01293389 v 0201 | someone who arranges (or tries to arrange) marriages for others -10300041 18 n 02 mate 2 first_mate 0 001 @ 10371741 n 0000 | the officer below the master on a commercial ship -10300154 18 n 01 mate 3 004 @ 10112591 n 0000 ;r 08831004 n 0000 ;r 08860123 n 0000 + 01075524 a 0102 | informal term for a friend of the same sex -10300303 18 n 01 mate 1 002 @ 00015388 n 0000 + 01428853 v 0102 | the partner of an animal (especially a sexual partner); "he loved the mare and all her mates"; "camels hate leaving their mates" -10300500 18 n 01 mater 0 001 @ 10332385 n 0000 | an informal use of the Latin word for mother; sometimes used by British schoolboys or used facetiously -10300654 18 n 01 material 0 001 @ 09607280 n 0000 | a person judged suitable for admission or employment; "he was university material"; "she was vice-presidential material" -10300829 18 n 01 materialist 0 002 @ 10015897 n 0000 + 05972585 n 0101 | someone who thinks that nothing exists but physical matter -10300963 18 n 01 materialist 1 002 @ 09609232 n 0000 + 14039310 n 0101 | someone with great regard for material possessions -10301089 18 n 01 material_witness 0 001 @ 10786517 n 0000 | a witness whose testimony is both relevant to the matter at issue and required in order to resolve the matter -10301261 18 n 01 mathematician 0 059 @ 10560637 n 0000 ;c 06000644 n 0000 + 06000644 n 0101 ~ 09784043 n 0000 ~ 09808351 n 0000 ~ 10128016 n 0000 ~ 10366276 n 0000 ~ 10477465 n 0000 ~ 10653238 n 0000 ~ 10729442 n 0000 ~i 10807197 n 0000 ~i 10813986 n 0000 ~i 10821514 n 0000 ~i 10838997 n 0000 ~i 10848356 n 0000 ~i 10848500 n 0000 ~i 10849625 n 0000 ~i 10857271 n 0000 ~i 10859485 n 0000 ~i 10906638 n 0000 ~i 10931854 n 0000 ~i 10936567 n 0000 ~i 10960230 n 0000 ~i 10962611 n 0000 ~i 10969799 n 0000 ~i 10976468 n 0000 ~i 10988261 n 0000 ~i 10992675 n 0000 ~i 11003068 n 0000 ~i 11026231 n 0000 ~i 11045106 n 0000 ~i 11049835 n 0000 ~i 11051376 n 0000 ~i 11077649 n 0000 ~i 11107308 n 0000 ~i 11111085 n 0000 ~i 11117451 n 0000 ~i 11125193 n 0000 ~i 11136622 n 0000 ~i 11153456 n 0000 ~i 11157275 n 0000 ~i 11181255 n 0000 ~i 11183791 n 0000 ~i 11195619 n 0000 ~i 11200090 n 0000 ~i 11205375 n 0000 ~i 11208917 n 0000 ~i 11214707 n 0000 ~i 11224419 n 0000 ~i 11228486 n 0000 ~i 11250056 n 0000 ~i 11262168 n 0000 ~i 11352498 n 0000 ~i 11361913 n 0000 ~i 11363657 n 0000 ~i 11369035 n 0000 ~i 11379691 n 0000 ~i 11384566 n 0000 ~i 11385611 n 0000 | a person skilled in mathematics -10302446 18 n 02 math_teacher 0 mathematics_teacher 0 002 @ 10694258 n 0000 ~ 10128163 n 0000 | someone who teaches mathematics -10302576 18 n 02 matriarch 0 materfamilias 0 002 @ 10787470 n 0000 @ 10164605 n 0000 | a female head of a family or tribe -10302700 18 n 01 matriarch 1 001 @ 10787470 n 0000 | a feisty older woman with a big bosom (as drawn in cartoons) -10302816 18 n 01 matricide 0 001 @ 10401204 n 0000 | a person who murders their mother -10302905 18 n 01 matriculate 0 002 @ 09936892 n 0000 + 02471203 v 0101 | someone who has been admitted to a college or university -10303037 18 n 01 matron 0 002 @ 10780632 n 0000 + 01485254 a 0101 | a married woman (usually middle-aged with children) who is staid and dignified -10303186 18 n 01 matron 1 002 @ 10366966 n 0000 @ 10787470 n 0000 | a woman in charge of nursing in a medical institution -10303310 18 n 01 matron 2 001 @ 10767432 n 0000 | a wardress in a prison -10303385 18 n 01 matron_of_honor 0 001 @ 09821831 n 0000 | a married woman serving as the attendant to the bride at a wedding -10303513 18 n 01 mauler 0 002 @ 09939313 n 0000 + 01232098 v 0101 | a fighter who batters the opponent; "Jack Dempsey was called a mauler" -10303654 18 n 02 maverick 0 rebel 1 003 @ 09957834 n 0000 + 02583379 v 0201 + 00607202 a 0102 | someone who exhibits great independence in thought and action -10303814 18 n 02 mayor 0 city_manager 0 007 @ 10541833 n 0000 @ 10451263 n 0000 + 03085072 a 0101 ~ 09617508 n 0000 ~ 09781804 n 0000 ~ 09880881 n 0000 ~ 10304018 n 0000 | the head of a city government -10304018 18 n 01 mayoress 0 001 @ 10303814 n 0000 | a woman mayor -10304086 18 n 01 mayoress 1 001 @ 10780632 n 0000 | the wife of a mayor -10304160 18 n 02 May_queen 0 queen_of_the_May 0 001 @ 10129825 n 0000 | the girl chosen queen of a May Day festival -10304278 18 n 03 meanie 0 meany 0 unkind_person 0 001 @ 10379758 n 0000 | a person of mean disposition -10304383 18 n 01 measurer 0 003 @ 00007846 n 0000 + 00647094 v 0101 ~ 10427359 n 0000 | a person who makes measurements -10304505 18 n 02 meat_packer 0 packer 1 003 @ 10222497 n 0000 + 01926031 v 0202 ~i 11326999 n 0000 | a wholesaler in the meat-packing business -10304650 18 n 01 mechanical_engineer 0 002 @ 09615807 n 0000 ~ 10728727 n 0000 | a person trained to design and construct machines -10304783 18 n 01 mechanist 0 002 @ 10423589 n 0000 + 05972781 n 0101 | a philosopher who subscribes to the doctrine of mechanism -10304914 18 n 03 medalist 0 medallist 0 medal_winner 0 002 @ 10136959 n 0000 ;c 00464894 n 0000 | (golf) the winner at medal play of a tournament -10305062 18 n 02 medalist 1 medallist 1 003 @ 10782940 n 0000 + 06706676 n 0203 + 06706676 n 0103 | someone who has won a medal -10305192 18 n 01 meddler 0 006 @ 09631129 n 0000 + 02539101 v 0101 ~ 09831057 n 0000 ~ 09883807 n 0000 ~ 09885059 n 0000 ~ 10230432 n 0000 | an officious annoying person who interferes with others -10305391 18 n 02 media_consultant 0 media_guru 0 001 @ 09774266 n 0000 | someone who advises about the use of communication media -10305523 18 n 01 medical_assistant 0 001 @ 10165109 n 0000 | a person trained to assist medical professionals -10305635 18 n 02 medical_officer 0 medic 0 004 @ 10305802 n 0000 #m 08199025 n 0000 ~ 10096508 n 0000 ~ 10679503 n 0000 | a medical practitioner in the armed forces -10305802 18 n 02 medical_practitioner 0 medical_man 0 006 @ 10165109 n 0000 ~ 10004282 n 0000 ~ 10020890 n 0000 ~ 10207514 n 0000 ~ 10305635 n 0000 ~i 11051632 n 0000 | someone who practices medicine -10306004 18 n 01 medical_scientist 0 005 @ 10560637 n 0000 ~ 10061882 n 0000 ~ 10199902 n 0000 ~ 10582032 n 0000 ~ 10719807 n 0000 | a scientist who studies disease processes -10306181 18 n 02 medical_student 0 medico 2 001 @ 10665698 n 0000 | a student in medical school -10306279 18 n 03 medium 0 spiritualist 0 sensitive 0 003 @ 10488309 n 0000 + 05951969 n 0201 + 04621314 n 0202 | someone who serves as an intermediary between the living and the dead; "he consulted several mediums" -10306496 18 n 01 megalomaniac 0 002 @ 10047459 n 0000 + 01584569 a 0101 | a pathological egotist -10306595 18 n 02 melancholic 0 melancholiac 0 002 @ 10005163 n 0000 + 01362684 a 0102 | someone subject to melancholia -10306716 18 n 02 Melkite 0 Melchite 0 001 @ 09678009 n 0000 | an Orthodox Christian or Uniate Christian belonging to the patriarchate of Alexandria or Antioch or Jerusalem -10306890 18 n 02 Melkite 1 Melchite 1 001 @ 09678009 n 0000 | an eastern Christian in Egypt or Syria who adheres to the Orthodox faith as defined by the council of Chalcedon in 451 and as accepted by the Byzantine emperor -10307114 18 n 01 melter 0 002 @ 09632518 n 0000 + 00376106 v 0106 | a worker who melts substances (metal or wax etc.) -10307234 18 n 02 member 0 fellow_member 0 030 @ 09816771 n 0000 + 13931627 n 0101 + 08400965 n 0101 ! 10308066 n 0101 ~ 09807379 n 0000 ~ 09876892 n 0000 ~ 09885676 n 0000 ~ 09910719 n 0000 ~ 09944022 n 0000 ~ 09944160 n 0000 ~ 09944763 n 0000 ~ 09957523 n 0000 ~ 10083526 n 0000 ~ 10181547 n 0000 ~ 10181878 n 0000 ~ 10190871 n 0000 ~ 10203949 n 0000 ~ 10223994 n 0000 ~ 10230335 n 0000 ~ 10240417 n 0000 ~ 10308168 n 0000 ~ 10308275 n 0000 ~ 10308394 n 0000 ~ 10441410 n 0000 ~ 10539278 n 0000 ~ 10539462 n 0000 ~ 10539616 n 0000 ~ 10602258 n 0000 ~ 10621400 n 0000 ~ 10728624 n 0000 | one of the persons who compose a social group (especially individuals who have joined and participate in a group organization); "only members will be admitted"; "a member of the faculty"; "she was introduced to all the members of his family" -10308066 18 n 01 nonmember 0 002 @ 00007846 n 0000 ! 10307234 n 0101 | a person who is not a member -10308168 18 n 01 board_member 0 002 @ 10307234 n 0000 #m 08322981 n 0000 | a member of a governing board -10308275 18 n 03 clansman 0 clanswoman 0 clan_member 0 002 @ 10307234 n 0000 #m 07969695 n 0000 | a member of a clan -10308394 18 n 01 club_member 0 002 @ 10307234 n 0000 #m 08227214 n 0000 | someone who is a member of a club -10308504 18 n 02 memorizer 0 memoriser 0 004 @ 10251779 n 0000 + 00604576 v 0202 + 00604576 v 0101 ~ 10666464 n 0000 | a person who learns by rote -10308653 18 n 01 Mendelian 0 001 @ 10099375 n 0000 | a follower of Mendelism -10308732 18 n 03 mender 0 repairer 0 fixer 1 006 @ 10605985 n 0000 + 00260648 v 0303 + 00260648 v 0201 + 00260648 v 0102 ~ 09992138 n 0000 ~ 10521100 n 0000 | a skilled worker who mends or repairs things -10308938 18 n 01 menial 0 001 @ 10582154 n 0000 | a domestic servant -10309009 18 n 02 mensch 0 mensh 0 002 @ 10138767 n 0000 ;c 06951067 n 0000 | a decent responsible person with admirable characteristics -10309147 18 n 01 Menshevik 0 001 @ 10618848 n 0000 | a Russian member of the liberal minority group that advocated gradual reform and opposed the Bolsheviks before and during the Russian Revolution -10309347 18 n 01 mentioner 0 003 @ 10630188 n 0000 + 01024190 v 0101 + 01020005 v 0103 | a speaker who refers to something briefly or incidentally -10309496 18 n 02 mentor 0 wise_man 0 002 @ 09621545 n 0000 ~ 10546202 n 0000 | a wise and trusted guide and advisor -10309614 18 n 02 mercenary 0 soldier_of_fortune 0 003 @ 09606009 n 0000 + 01709081 a 0101 ~ 10358889 n 0000 | a person hired to fight for another country than their own -10309785 18 n 01 mercer 0 002 @ 10720453 n 0000 ;r 08860123 n 0000 | a dealer in textiles (especially silks) -10309896 18 n 02 merchant 0 merchandiser 0 023 @ 09882716 n 0000 + 02260362 v 0202 ~ 09833651 n 0000 ~ 09865838 n 0000 ~ 09884391 n 0000 ~ 09930772 n 0000 ~ 10141268 n 0000 ~ 10147710 n 0000 ~ 10162354 n 0000 ~ 10221777 n 0000 ~ 10461060 n 0000 ~ 10525436 n 0000 ~ 10542054 n 0000 ~ 10549062 n 0000 ~ 10557246 n 0000 ~ 10577284 n 0000 ~ 10592152 n 0000 ~ 10652703 n 0000 ~ 10720453 n 0000 ~ 10748142 n 0000 ~ 10754189 n 0000 ~i 11032158 n 0000 ~i 11032359 n 0000 | a businessperson engaged in retail trade -10310404 18 n 01 Merovingian 0 002 @ 10628644 n 0000 #m 08156200 n 0000 | a member of the Merovingian dynasty -10310516 18 n 02 meshuggeneh 0 meshuggener 0 003 @ 10100761 n 0000 ;c 06951067 n 0000 + 01837025 a 0104 | (Yiddish) a crazy fool -10310647 18 n 01 mesne_lord 0 001 @ 10271677 n 0000 | a feudal lord who was lord to his own tenants on land held from a superior lord -10310783 18 n 01 Mesoamerican 0 001 @ 09738400 n 0000 | a member of one of the various peoples inhabiting Mesoamerica -10310903 18 n 01 mesomorph 0 002 @ 00007846 n 0000 + 00828336 a 0101 | a person with a well-developed muscular body -10311021 18 n 02 messenger 0 courier 0 008 @ 09629752 n 0000 ~ 09962789 n 0000 ~ 10017664 n 0000 ~ 10171219 n 0000 ~ 10311243 n 0000 ~ 10311375 n 0000 ~ 10478118 n 0000 ~ 10542608 n 0000 | a person who carries a message -10311243 18 n 01 bearer 0 002 @ 10311021 n 0000 + 01432601 v 0101 | a messenger who bears or presents; "a bearer of good tidings" -10311375 18 n 02 messenger_boy 0 errand_boy 0 002 @ 10311021 n 0000 ~ 10391416 n 0000 | a boy who earns money by running errands -10311506 18 n 01 messmate 0 002 @ 09763784 n 0000 ;c 04194289 n 0000 | (nautical) an associate with whom you share meals in the same mess (as on a ship) -10311661 18 n 01 mestiza 0 002 @ 10787470 n 0000 ;r 09044862 n 0000 | a woman of mixed racial ancestry (especially mixed European and Native American ancestry) -10311823 18 n 02 mestizo 0 ladino 0 002 @ 00007846 n 0000 ;r 09044862 n 0000 | a person of mixed racial ancestry (especially mixed European and Native American ancestry) -10311995 18 n 01 metalhead 0 001 @ 10077593 n 0000 | a fan of heavy metal music -10312077 18 n 02 metallurgist 0 metallurgical_engineer 0 003 @ 09615807 n 0000 + 06125698 n 0101 ~i 10849873 n 0000 | an engineer trained in the extraction and refining and alloying and fabrication of metals -10312287 18 n 01 meteorologist 0 004 @ 10631941 n 0000 + 06749729 n 0101 + 06118563 n 0101 ~ 10772092 n 0000 | a specialist who studies processes in the earth's atmosphere that cause weather conditions -10312491 18 n 01 meter_maid 0 001 @ 10449412 n 0000 | policewoman who is assigned to write parking tickets -10312600 18 n 01 Methodist 0 004 @ 09679316 n 0000 #m 08092340 n 0000 + 06231494 n 0101 ~ 10312773 n 0000 | a follower of Wesleyanism as practiced by the Methodist Church -10312773 18 n 01 Wesleyan 0 003 @ 10312600 n 0000 #m 08092713 n 0000 + 02955562 a 0102 | a follower of Wesleyanism -10312890 18 n 01 metic 0 001 @ 10103485 n 0000 | an alien who paid a fee to reside in an ancient Greek city -10313000 18 n 01 Metis 0 002 @ 10323999 n 0000 ;r 08820121 n 0000 | a person in western Canada who is of Caucasian and American Indian ancestry -10313146 18 n 01 metropolitan 0 001 @ 10523519 n 0000 | a person who lives in a metropolis -10313239 18 n 01 metropolitan 1 001 @ 09805151 n 0000 | in the Eastern Orthodox Church this title is given to a position between bishop and patriarch; equivalent to archbishop in western Christianity -10313441 18 n 02 mezzo-soprano 0 mezzo 0 002 @ 10625546 n 0000 ~i 11060688 n 0000 | a soprano with a voice between soprano and contralto -10313580 18 n 01 microbiologist 0 004 @ 09855630 n 0000 + 06077648 n 0101 ~ 10755394 n 0000 ~i 11277279 n 0000 | a specialist in microbiology -10313724 18 n 02 microeconomist 0 microeconomic_expert 0 002 @ 10043643 n 0000 + 06151108 n 0101 | an economist who specializes in microeconomics -10313872 18 n 01 microscopist 0 004 @ 10560637 n 0000 + 00640889 n 0101 ~i 11129808 n 0000 ~i 11326154 n 0000 | a scientist who specializes in research with the use of microscopes -10314054 18 n 01 middle-aged_man 0 002 @ 10287213 n 0000 ~ 10015792 n 0000 | a man who is roughly between 45 and 65 years old -10314182 18 n 01 middlebrow 0 002 @ 00007846 n 0000 ;u 07075172 n 0000 | someone who is neither a highbrow nor a lowbrow -10314305 18 n 01 middleweight 0 001 @ 10477077 n 0000 | a professional boxer who weighs between 155 and 160 pounds -10314422 18 n 01 middleweight 1 001 @ 10793168 n 0000 | a wrestler who weighs 172-192 pounds -10314517 18 n 01 middleweight 2 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 165 pounds -10314627 18 n 01 midinette 0 001 @ 10548419 n 0000 | a Parisian salesgirl -10314703 18 n 01 midshipman 0 002 @ 09886540 n 0000 ;c 08199025 n 0000 | a temporary rank held by young naval officers in training -10314836 18 n 02 midwife 0 accoucheuse 0 001 @ 10366966 n 0000 | a woman skilled in aiding the delivery of babies -10314952 18 n 02 migrant 0 migrator 0 009 @ 09629752 n 0000 + 01856626 v 0201 + 01856626 v 0101 ~ 10004539 n 0000 ~ 10051975 n 0000 ~ 10066624 n 0000 ~ 10199489 n 0000 ~ 10543937 n 0000 ~ 10583387 n 0000 | traveler who moves from one region or country to another -10315217 18 n 02 mikado 0 tenno 0 002 @ 10053004 n 0000 ;c 06929279 n 0000 | the emperor of Japan; when regarded as a religious leader the emperor is called tenno -10315382 18 n 01 Milady 0 001 @ 10242791 n 0000 | an English noblewoman -10315456 18 n 01 Milanese 0 002 @ 09716047 n 0000 #m 08809165 n 0000 | a native or inhabitant of Milan -10315561 18 n 01 miler 0 006 @ 10542888 n 0000 + 13655414 n 0101 + 13655262 n 0101 + 13651218 n 0101 + 07469325 n 0101 ~ 10108089 n 0000 | a runner in a one-mile race -10315730 18 n 01 miles_gloriosus 0 001 @ 10047459 n 0000 | a braggart soldier (a stock figure in comedy) -10315837 18 n 02 militant 0 activist 0 006 @ 10515194 n 0000 + 00039122 a 0201 + 05901840 n 0201 ~ 09858733 n 0000 ~ 09858913 n 0000 ~i 11151189 n 0000 | a militant reformer -10316013 18 n 02 militarist 0 warmonger 0 003 @ 09605289 n 0000 + 06221974 n 0101 ~ 10162644 n 0000 | a person who advocates war or warlike policies -10316164 18 n 02 military_adviser 0 military_advisor 0 003 @ 09774266 n 0000 @ 10317007 n 0000 ;c 08199025 n 0000 | a military officer who serves as an adviser to the troops of an allied nation -10316360 18 n 01 military_attache 0 004 @ 09821086 n 0000 ~ 09780395 n 0000 ~ 09809279 n 0000 ~ 10347298 n 0000 | an attache who is a specialist in military matters -10316527 18 n 04 military_chaplain 0 padre 1 Holy_Joe 0 sky_pilot 0 002 @ 09908508 n 0000 ;c 08199025 n 0000 | a chaplain in one of the military services -10316683 18 n 01 military_governor 0 003 @ 10140314 n 0000 ~ 09881009 n 0000 ~ 10294020 n 0000 | the head of a government established by the military (as in a defeated country) -10316862 18 n 01 military_leader 0 004 @ 09623038 n 0000 ;c 08199025 n 0000 ~ 10767837 n 0000 ~i 11081353 n 0000 | a leader of military forces -10317007 18 n 02 military_officer 0 officer 3 017 @ 10582746 n 0000 ;c 08199025 n 0000 + 00752335 v 0201 ~ 09770179 n 0000 ~ 09809749 n 0000 ~ 09873242 n 0000 ~ 09917214 n 0000 ~ 09941964 n 0000 ~ 09942970 n 0000 ~ 10008123 n 0000 ~ 10069869 n 0000 ~ 10208950 n 0000 ~ 10316164 n 0000 ~ 10347593 n 0000 ~ 10360747 n 0000 ~ 10768391 n 0000 ~ 11244061 n 0000 | any person in the armed services who holds a position of authority or command; "an officer is responsible for the lives of his men" -10317500 18 n 02 military_policeman 0 MP 0 005 @ 10249459 n 0000 #m 08211290 n 0000 ;c 08199025 n 0000 ~ 10486561 n 0000 ~ 10513509 n 0000 | a member of the military police who polices soldiers and guards prisoners -10317717 18 n 01 militiaman 0 004 @ 10622053 n 0000 #m 08390511 n 0000 ~ 10321632 n 0000 ~ 10722137 n 0000 | a member of the militia; serves only during emergencies -10317884 18 n 01 milkman 0 001 @ 10001217 n 0000 | someone who delivers milk -10317963 18 n 01 mill_agent 0 001 @ 09777353 n 0000 | the responsible official at a mill that is under absentee ownership -10318087 18 n 01 miller 0 001 @ 09974648 n 0000 | someone who works in a mill (especially a grain mill) -10318193 18 n 01 mill-girl 0 002 @ 10129825 n 0000 @ 10318293 n 0000 | a girl who works in a mill -10318293 18 n 02 mill-hand 0 factory_worker 0 002 @ 10791221 n 0000 ~ 10318193 n 0000 | a workman in a mill or factory -10318414 18 n 03 millenarian 0 millenarist 0 chiliast 0 002 @ 10380126 n 0000 + 06189551 n 0202 | a person who believes in the coming of the millennium (a time of great peace and prosperity) -10318607 18 n 01 millionairess 0 001 @ 10529231 n 0000 | a woman millionaire -10318686 18 n 01 millwright 0 001 @ 10793570 n 0000 | a workman who designs or erects mills and milling machinery -10318802 18 n 01 milord 0 001 @ 10271677 n 0000 | a term of address for an English lord -10318892 18 n 05 mime 0 mimer 0 mummer 0 pantomimer 0 pantomimist 0 007 @ 09765278 n 0000 + 00550016 n 0502 + 01724185 v 0502 + 01724185 v 0402 + 01724185 v 0201 + 01743531 v 0102 ~i 11155814 n 0000 | an actor who communicates entirely by gesture and facial expression -10319163 18 n 02 mimic 0 mimicker 0 003 @ 10200365 n 0000 + 01743531 v 0201 + 01743531 v 0101 | someone who mimics (especially an actor or actress) -10319313 18 n 01 minder 1 001 @ 10063461 n 0000 | someone (usually in totalitarian countries) who is assigned to watch over foreign visitors; "I turned around and there, a few hundred feet away, was our government minder, Li Wong Su, huffing and puffing toward us" -10319580 18 n 03 mind_reader 1 telepathist 1 thought-reader 1 002 @ 10280674 n 0000 + 07255998 n 0201 | a magician who seems to discern the thoughts of another person (usually by clever signals from an accomplice) -10319796 18 n 02 miner 0 mineworker 0 007 @ 10241300 n 0000 + 01163620 v 0101 ~ 09932508 n 0000 ~ 10136463 n 0000 ~ 10437137 n 0000 ~ 10485298 n 0000 ~ 10664235 n 0000 | laborer who works in a mine -10319996 18 n 01 mineralogist 0 002 @ 10560637 n 0000 + 06121113 n 0101 | a scientist trained in mineralogy -10320106 18 n 01 miniaturist 0 002 @ 10391653 n 0000 + 03769397 n 0101 | someone who paints tiny pictures in great detail -10320230 18 n 01 minimalist 0 002 @ 09812338 n 0000 + 08469233 n 0101 | a practitioner or advocate of artistic minimalism -10320354 18 n 01 minimalist 1 001 @ 09957156 n 0000 | a conservative who advocates only minor reforms in government or politics -10320484 18 n 01 mining_engineer 0 001 @ 09615807 n 0000 | an engineer concerned with the construction and operation of mines -10320612 18 n 01 minion 0 001 @ 10004804 n 0000 | a servile or fawning dependant -10320695 18 n 02 minister 1 diplomatic_minister 0 002 @ 10013927 n 0000 + 02764643 a 0101 | a diplomat representing one government to another; ranks below ambassador -10320863 18 n 02 minister 2 government_minister 0 007 @ 10069645 n 0000 + 02764643 a 0101 ~ 09886010 n 0000 ~ 10089892 n 0000 ~ 10103794 n 0000 ~i 10158319 n 0000 ~i 11401947 n 0000 | a person appointed to a high office in the government; "Minister of Finance" -10321126 18 n 01 ministrant 0 002 @ 09983572 n 0000 + 02446660 v 0101 | someone who serves as a minister -10321233 18 n 01 minority_leader 0 001 @ 10253995 n 0000 | leader of the minority party in a legislature -10321340 18 n 02 minor_leaguer 0 bush_leaguer 0 002 @ 09835506 n 0000 #m 08078976 n 0000 | a player on a minor-league baseball team -10321474 18 n 01 minstrel 1 005 @ 10415638 n 0000 #m 08189371 n 0000 + 01730216 v 0101 ~ 10056719 n 0000 ~ 10211036 n 0000 | a performer in a minstrel show -10321632 18 n 01 Minuteman 0 001 @ 10317717 n 0000 | an American militiaman prior to and during the American Revolution -10321754 18 n 02 miracle_man 0 miracle_worker 0 001 @ 00007846 n 0000 | a person who claims or is alleged to perform miracles -10321882 18 n 02 misanthrope 0 misanthropist 0 006 @ 10148305 n 0000 + 07546844 n 0201 + 04658524 n 0201 + 01138161 a 0102 + 02463582 a 0103 ~ 10322648 n 0000 | someone who dislikes people in general -10322084 18 n 01 miser 0 003 @ 10178611 n 0000 + 01113807 a 0103 ~ 09912681 n 0000 | a stingy hoarder of money and possessions (often living miserably) -10322238 18 n 01 misfit 0 004 @ 09606527 n 0000 ~ 09796185 n 0000 ~ 10221040 n 0000 ~ 10598904 n 0000 | someone unable to adapt to their circumstances -10322391 18 n 01 misleader 0 004 @ 09623038 n 0000 @ 09998101 n 0000 + 02000288 v 0101 + 00834009 v 0102 | someone who leads astray (often deliberately) -10322546 18 n 01 misogamist 0 002 @ 00007846 n 0000 + 07546973 n 0101 | a person who hates marriage -10322648 18 n 02 misogynist 0 woman_hater 0 003 @ 10321882 n 0000 + 07547064 n 0101 + 01138316 a 0102 | a misanthrope who dislikes women in particular -10322801 18 n 02 missing_link 0 ape-man 0 001 @ 09627462 n 0000 | hypothetical organism formerly thought to be intermediate between apes and human beings -10322957 18 n 01 missionary 0 006 @ 10694258 n 0000 ~i 10856486 n 0000 ~ 10919886 n 0000 ~i 11135797 n 0000 ~i 11384755 n 0000 ~i 11401009 n 0000 | someone who attempts to convert others to a particular doctrine or program -10323182 18 n 02 missionary 1 missioner 1 011 @ 09628382 n 0000 + 08403225 n 0201 + 08402442 n 0205 + 00730984 n 0201 + 00731222 n 0201 ~i 10870235 n 0000 ~i 11158156 n 0000 ~i 11225661 n 0000 ~i 11287964 n 0000 ~i 11293470 n 0000 ~i 11335878 n 0000 | someone sent on a mission--especially a religious or charitable mission to a foreign country -10323529 18 n 02 missus 0 missis 0 001 @ 10780632 n 0000 | informal term of address for someone's wife -10323634 18 n 01 mistress 0 002 @ 10054657 n 0000 ~ 09911465 n 0000 | a woman master who directs the work of others -10323752 18 n 03 mistress 1 kept_woman 0 fancy_woman 0 005 @ 10787470 n 0000 @ 09622745 n 0000 ~ 09952393 n 0000 ~i 10863440 n 0000 ~i 10929116 n 0000 | an adulterous woman; a woman who has an ongoing extramarital sexual relationship with a man -10323999 18 n 01 mixed-blood 0 006 @ 00007846 n 0000 ~ 09638454 n 0000 ~ 09638569 n 0000 ~ 09638722 n 0000 ~ 10157378 n 0000 ~ 10313000 n 0000 | a person whose ancestors belonged to two or more races -10324201 18 n 01 mnemonist 0 002 @ 09617867 n 0000 + 05661551 n 0101 | an expert in the use of mnemonics; someone able to perform unusual feats of memory -10324357 18 n 01 mod 0 003 @ 09772029 n 0000 #m 08371574 n 0000 ;r 08860123 n 0000 | a British teenager or young adult in the 1960s; noted for their clothes consciousness and opposition to the rockers -10324560 18 n 02 model 0 poser 0 006 @ 09815790 n 0000 + 02142775 v 0202 + 02142775 v 0101 ~ 09813219 n 0000 ~ 10033572 n 0000 ~ 10427103 n 0000 | a person who poses for a photographer or painter or sculptor; "the president didn't have time to be a model so the artist worked from photos" -10324851 18 n 02 model 1 role_model 0 003 @ 09623038 n 0000 ~ 10325243 n 0000 ~ 10728233 n 0000 | someone worthy of imitation; "every child needs a role model" -10325013 18 n 01 hero 0 004 @ 09623038 n 0000 + 00251134 a 0102 ~i 10822786 n 0000 ~i 11085402 n 0000 | a man distinguished by exceptional courage and nobility and strength; "RAF pilots were the heroes of the Battle of Britain" -10325243 18 n 07 ideal 0 paragon 0 nonpareil 0 saint 1 apotheosis 0 nonesuch 0 nonsuch 0 008 @ 10324851 n 0000 + 00693633 v 0501 + 00693633 v 0502 + 00599329 n 0401 + 00475819 v 0403 ~ 10222353 n 0000 ~ 10325549 n 0000 ~ 10325656 n 0000 | model of excellence or perfection of a kind; one having no equal -10325549 18 n 01 class_act 0 001 @ 10325243 n 0000 | someone who shows impressive and stylish excellence -10325656 18 n 01 humdinger 0 001 @ 10325243 n 0000 | someone of remarkable excellence; "a humdinger of a secretary" -10325774 18 n 02 modeler 0 modeller 0 006 @ 09614315 n 0000 + 01743784 v 0201 + 01697406 v 0201 + 01743784 v 0101 + 01697406 v 0101 ~i 11353510 n 0000 | a person who creates models -10325957 18 n 01 moderationist 1 002 @ 10034201 n 0000 + 04883614 n 0102 | a moderate drinker (as opposed to a total abstainer) -10326087 18 n 01 moderator 0 004 @ 09624559 n 0000 + 00595545 n 0101 + 00202934 v 0102 ~ 10326776 n 0000 | someone who mediates disputes and attempts to avoid violence -10326257 18 n 01 moderator 1 003 @ 10469346 n 0000 + 00595545 n 0101 + 00813790 v 0101 | someone who presides over a forum or debate -10326392 18 n 01 moderator 2 002 @ 10469346 n 0000 + 00595545 n 0101 | in the Presbyterian church, the officer who presides over a synod or general assembly -10326551 18 n 01 modern 0 002 @ 00007846 n 0000 + 00820975 a 0101 | a contemporary person -10326643 18 n 01 modernist 0 002 @ 09812338 n 0000 + 03777961 n 0101 | an artist who makes a deliberate break with previous styles -10326776 18 n 01 modifier 1 001 @ 10326087 n 0000 | a moderator who makes less extreme or uncompromising -10326883 18 n 02 Mogul 0 Moghul 0 001 @ 10541229 n 0000 | a member of the Muslim dynasty that ruled India until 1857 -10327002 18 n 03 Mohammedan 0 Muhammedan 0 Muhammadan 0 003 @ 10099375 n 0000 + 03035113 a 0301 + 03035113 a 0102 | a follower of Mohammed -10327143 18 n 01 molecular_biologist 0 003 @ 09855630 n 0000 ~i 11328289 n 0000 ~i 11345705 n 0000 | a biologist who studies the structure and activity of macromolecules essential to life -10327333 18 n 01 molester 0 002 @ 09633969 n 0000 ~ 10100314 n 0000 | someone who subjects others to unwanted or improper sexual activities -10327475 18 n 03 moll 0 gun_moll 0 gangster's_moll 0 001 @ 09977660 n 0000 | the girlfriend of a gangster -10327583 18 n 01 mollycoddle 0 002 @ 09991867 n 0000 + 02570267 v 0107 | a pampered darling; an effeminate man -10327696 18 n 01 Mon 0 001 @ 09683757 n 0000 | a member of a Buddhist people living in Myanmar and adjacent parts of Thailand -10327824 18 n 02 monarchist 0 royalist 0 004 @ 10531227 n 0000 + 01213548 n 0201 ~ 09902128 n 0000 ~ 10384054 n 0000 | an advocate of the principles of monarchy -10327987 18 n 02 Monegasque 0 Monacan 0 003 @ 09686536 n 0000 #m 08967868 n 0000 + 02978155 a 0102 | a native or inhabitant of Monaco -10328123 18 n 01 monetarist 0 003 @ 10043643 n 0000 + 05995898 n 0101 ~ 09854813 n 0000 | an advocate of the theory that economic fluctuations are caused by increases or decreases in the supply of money -10328328 18 n 01 moneygrubber 0 001 @ 10328437 n 0000 | someone whose main interest in life is moneymaking -10328437 18 n 01 moneymaker 0 002 @ 09609232 n 0000 ~ 10328328 n 0000 | someone who is successful in accumulating wealth -10328560 18 n 01 mongoloid 0 001 @ 10197525 n 0000 | a person suffering from Down syndrome (no longer used technically in this sense) -10328696 18 n 01 Mongoloid 1 001 @ 09641757 n 0000 | a member of the Mongoloid race -10328782 18 n 02 monogamist 0 monogynist 0 003 @ 10640620 n 0000 + 13966201 n 0201 + 13966007 n 0101 | someone who practices monogamy (one spouse at a time) -10328941 18 n 01 monolingual 0 001 @ 00007846 n 0000 | a person who knows only one language -10329035 18 n 01 monologist 0 002 @ 10415638 n 0000 + 07011387 n 0101 | an entertainer who performs alone -10329143 18 n 01 monomaniac 0 002 @ 10595647 n 0000 + 01584724 a 0101 | a person suffering from monomania -10329251 18 n 01 Monophysite 0 001 @ 10016103 n 0000 | an adherent of Monophysitism -10329337 18 n 03 monopolist 0 monopolizer 0 monopoliser 0 006 @ 10576962 n 0000 + 02204242 v 0302 + 02204242 v 0201 + 14444114 n 0101 + 02204242 v 0101 + 02204242 v 0102 | someone who monopolizes the means of producing or selling something -10329579 18 n 01 monotheist 0 002 @ 09847727 n 0000 + 06224136 n 0101 | a believer in one god -10329675 18 n 01 Monsieur 0 001 @ 10287213 n 0000 | used as a French courtesy title; equivalent to English `Mr' -10329789 18 n 01 Monsignor 0 002 @ 10470779 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) an ecclesiastical title of honor bestowed on some priests -10329945 18 n 05 monster 0 fiend 0 devil 1 demon 1 ogre 1 008 @ 09631463 n 0000 + 01132515 a 0401 + 00547300 v 0401 + 01133374 a 0302 + 01132515 a 0302 + 00547493 v 0301 + 01131454 a 0104 ~ 10002644 n 0000 | a cruel wicked and inhuman person -10330189 18 n 04 moocher 0 mooch 0 cadger 0 scrounger 0 007 @ 09847010 n 0000 + 02269894 v 0401 + 02270165 v 0403 + 02270165 v 0304 + 02270404 v 0303 + 02270404 v 0101 ~ 10557699 n 0000 | someone who mooches or cadges (tries to get something free) -10330439 18 n 01 Moonie 0 003 @ 09628382 n 0000 #m 08093421 n 0000 ;u 06717170 n 0000 | an often derogatory term for a member of the Unification Church -10330593 18 n 01 moonlighter 0 002 @ 09632518 n 0000 + 02420606 v 0101 | a person who holds a second job (usually after hours) -10330722 18 n 01 mopper 0 002 @ 09632518 n 0000 + 01393339 v 0103 | a worker who uses a mop to clean a surface -10330835 18 n 01 moppet 0 001 @ 10084295 n 0000 | a little girl (usually one you are fond of) -10330931 18 n 01 moralist 0 004 @ 10423589 n 0000 ~ 10046870 n 0000 ~ 10050558 n 0000 ~ 10742736 n 0000 | a philosopher who specializes in morals and moral problems -10331098 18 n 01 morosoph 0 001 @ 10100761 n 0000 | a learned fool -10331167 18 n 01 morris_dancer 0 001 @ 10098862 n 0000 | someone who does a morris dance -10331258 18 n 01 mortal_enemy 0 001 @ 10098710 n 0000 | an enemy who wants to kill you -10331347 18 n 02 mortgagee 0 mortgage_holder 0 003 @ 09976728 n 0000 @ 10180178 n 0000 + 02351737 v 0101 | the person who accepts a mortgage; "the bank became our mortgagee when it accepted our mortgage on our new home" -10331569 18 n 02 mortgagor 0 mortgager 0 003 @ 09997622 n 0000 + 02351737 v 0201 + 02351737 v 0101 | the person who gives a mortgage in return for money to be repaid; "we became mortgagors when the bank accepted our mortgage and loaned us the money to buy our new home" -10331841 18 n 04 mortician 0 undertaker 0 funeral_undertaker 0 funeral_director 0 002 @ 10605985 n 0000 ~ 10051215 n 0000 | one whose business is the management of funerals -10332016 18 n 01 mossback 0 001 @ 09957156 n 0000 | an extremely old-fashioned conservative -10332110 18 n 01 moss-trooper 0 001 @ 10293172 n 0000 | a marauder and plunderer (originally operating in the bogs between England and Scotland) -10332257 18 n 02 most_valuable_player 0 MVP 0 001 @ 10439851 n 0000 | the player judged to be the most important to the sport -10332385 18 n 02 mother 0 female_parent 0 017 @ 10399491 n 0000 ! 10080869 n 0202 + 01735346 a 0101 + 13814041 n 0101 + 00054628 v 0105 + 02550516 v 0101 ! 10080869 n 0101 ~ 10278128 n 0000 ~ 10300500 n 0000 ~ 10333317 n 0000 ~ 10472274 n 0000 ~ 10492086 n 0000 ~ 10497373 n 0000 ~ 10501747 n 0000 ~ 10676434 n 0000 ~ 10680370 n 0000 ~i 11161412 n 0000 | a woman who has given birth to a child (also used as a term of address to your mother); "the mother of three children" -10332861 18 n 01 mother 1 001 @ 09754217 n 0000 | a term of address for a mother superior -10332953 18 n 01 mother 2 001 @ 10377021 n 0000 | a term of address for an elderly woman -10333044 18 n 01 mother_figure 0 001 @ 10787470 n 0000 | a woman who evokes the feelings usually reserved for a mother -10333165 18 n 01 mother_hen 0 001 @ 00007846 n 0000 | a person who cares for the needs of others (especially in an overprotective or interfering way) -10333317 18 n 01 mother-in-law 0 003 @ 10332385 n 0000 @ 10207169 n 0000 ~i 11199943 n 0000 | the mother of your spouse -10333439 18 n 03 mother's_boy 0 mamma's_boy 0 mama's_boy 0 001 @ 10624074 n 0000 | a boy excessively attached to his mother; lacking normal masculine interests -10333601 18 n 01 mother's_daughter 0 001 @ 09992837 n 0000 | a daughter who is favored by and similar to her mother -10333719 18 n 01 mother's_son 0 001 @ 09624168 n 0000 | a male person; "every mother's son who could walk was there" -10333838 18 n 03 motorcycle_cop 0 motorcycle_policeman 0 speed_cop 0 001 @ 10448983 n 0000 | a policeman who rides a motorcycle (and who checks the speeds of motorists) -10334009 18 n 01 motorcyclist 0 001 @ 09629752 n 0000 | a traveler who rides a motorcycle -10334101 18 n 02 motorist 0 automobilist 0 003 @ 10034906 n 0000 + 02958343 n 0203 + 01930117 v 0102 | someone who drives (or travels in) an automobile -10334255 18 n 01 motorman 0 001 @ 10378412 n 0000 | the operator of streetcar -10334335 18 n 01 motormouth 0 001 @ 10630188 n 0000 | someone who talks incessantly; "I wish that motormouth would shut up" -10334461 18 n 01 Mound_Builder 0 001 @ 09627462 n 0000 | prehistoric Amerindians who built altar mounds -10334567 18 n 02 mountaineer 0 mountain_climber 0 007 @ 09929298 n 0000 @ 09606009 n 0000 + 09359803 n 0101 + 01922895 v 0101 ~ 09785659 n 0000 ~i 11050183 n 0000 ~i 11335491 n 0000 | someone who climbs mountains -10334782 18 n 02 mountebank 0 charlatan 0 003 @ 09998101 n 0000 ~ 10427467 n 0000 ~ 10497202 n 0000 | a flamboyant deceiver; one who attracts customers with tricks or jokes -10334957 18 n 02 mounter 0 climber 2 003 @ 09813522 n 0000 + 01921964 v 0201 + 01921964 v 0103 | someone who ascends on foot; "a solitary mounter of the staircase" -10335123 18 n 01 mounter 1 002 @ 10605985 n 0000 + 00407633 v 0101 | a skilled worker who mounts pictures or jewels etc. -10335246 18 n 04 mourner 0 griever 0 sorrower 0 lamenter 0 010 @ 09630641 n 0000 + 01802219 v 0401 + 00911350 v 0402 + 01797347 v 0302 + 01797347 v 0201 + 01797204 v 0101 + 01797051 v 0101 ~ 10395073 n 0000 ~ 10763245 n 0000 ~ 10773040 n 0000 | a person who is feeling grief (as grieving over someone who has died) -10335563 18 n 01 mouse 0 003 @ 00007846 n 0000 + 00252826 a 0101 + 00252826 a 0102 | person who is quiet or timid -10335679 18 n 01 mouth 0 001 @ 10042300 n 0000 | a person conceived as a consumer of food; "he has four mouths to feed" -10335801 18 n 02 mouthpiece 1 mouth 1 003 @ 10638385 n 0000 ;u 07075172 n 0000 + 00941990 v 0204 | a spokesperson (as a lawyer) -10335931 18 n 01 mover 0 014 @ 09629752 n 0000 + 01835496 v 0103 + 01855606 v 0101 ~ 09773076 n 0000 ~ 09813522 n 0000 ~ 09932616 n 0000 ~ 10006748 n 0000 ~ 10178216 n 0000 ~ 10277231 n 0000 ~ 10492447 n 0000 ~ 10495421 n 0000 ~ 10563403 n 0000 ~ 10724699 n 0000 ~ 10727016 n 0000 | someone who moves -10336234 18 n 01 mover 2 003 @ 10791221 n 0000 + 01850315 v 0101 ~ 10519984 n 0000 | workman employed by a moving company; "the movers were very careful with the grand piano" -10336411 18 n 02 moviegoer 0 motion-picture_fan 0 002 @ 10633450 n 0000 #m 08221897 n 0000 | someone who goes to see movies -10336537 18 n 02 muckraker 0 mudslinger 0 003 @ 10009671 n 0000 ;c 06148148 n 0000 + 00934744 v 0101 | one who spreads real or alleged scandal about another (usually for political advantage) -10336730 18 n 03 muezzin 0 muazzin 0 muadhdhin 0 001 @ 09795334 n 0000 | the Muslim official of a mosque who summons the faithful to prayer from a minaret five times a day -10336904 18 n 01 muffin_man 0 002 @ 10411551 n 0000 ;r 08860123 n 0000 | formerly an itinerant peddler of muffins -10337020 18 n 01 mufti 0 002 @ 10227985 n 0000 ~ 10143085 n 0000 | a jurist who interprets Muslim religious law -10337134 18 n 01 muggee 0 002 @ 10752093 n 0000 + 02277663 v 0101 | a victim of a mugging; "the law seems to give more protection to the mugger than to the muggee" -10337300 18 n 01 mugger 0 002 @ 10534586 n 0000 + 02277663 v 0101 | a robber who takes property by threatening or performing violence on the person who is robbed (usually on the street) -10337488 18 n 03 mugwump 1 independent 1 fencesitter 0 002 @ 09619824 n 0000 ;c 06148148 n 0000 | a neutral or uncommitted person (especially in politics) -10337645 18 n 01 Mugwump 0 001 @ 10450303 n 0000 | someone who bolted from the Republican Party during the U.S. presidential election of 1884 -10337789 18 n 01 mujahid 0 002 @ 09682291 n 0000 #m 08206663 n 0000 | a Muslim engaged in what he considers to be a jihad -10337913 18 n 01 mujtihad 0 002 @ 10557854 n 0000 @ 09682291 n 0000 | an Islamic scholar who engages in ijtihad, the effort to derive rules of divine law from Muslim sacred texts -10338094 18 n 04 muleteer 0 mule_skinner 0 mule_driver 0 skinner 4 002 @ 10241300 n 0000 + 02390101 n 0101 | a worker who drives mules -10338231 18 n 03 Mullah 0 Mollah 0 Mulla 0 002 @ 09682291 n 0000 #m 08380017 n 0000 | a Muslim trained in the doctrine and law of Islam; the head of a mosque -10338391 18 n 01 muncher 0 002 @ 09915964 n 0000 + 01201693 v 0102 | a chewer who makes a munching noise -10338498 18 n 01 muralist 0 004 @ 10391653 n 0000 + 03799710 n 0101 ~i 11216922 n 0000 ~i 11263687 n 0000 | a painter of murals -10338628 18 n 01 murderee 0 001 @ 10752093 n 0000 | a victim who is murdered -10338707 18 n 03 murderer 0 liquidator 1 manslayer 0 017 @ 09977660 n 0000 @ 10231087 n 0000 + 01327301 v 0203 + 02482425 v 0101 ~ 09813696 n 0000 ~ 09884305 n 0000 ~ 09985577 n 0000 ~ 10109342 n 0000 ~ 10152083 n 0000 ~ 10162016 n 0000 ~ 10204833 n 0000 ~ 10298343 n 0000 ~ 10339179 n 0000 ~ 10401204 n 0000 ~ 10532252 n 0000 ~ 10581464 n 0000 ~i 11077369 n 0000 | a criminal who commits homicide (who performs the unlawful premeditated killing of another human being) -10339179 18 n 01 murderess 0 001 @ 10338707 n 0000 | a woman murderer -10339251 18 n 01 murder_suspect 0 001 @ 10681383 n 0000 | someone suspected of committing murder -10339350 18 n 02 muscleman 0 muscle 0 001 @ 09879297 n 0000 | a bully employed as a thug or bodyguard; "the drug lord had his muscleman to protect him" -10339504 18 n 04 muser 0 muller 6 ponderer 0 ruminator 0 005 @ 10708454 n 0000 + 00630380 v 040b + 00630380 v 0304 + 00630380 v 0209 + 00630380 v 0107 | a reflective thinker characterized by quiet contemplation -10339717 18 n 01 musher 0 003 @ 09629752 n 0000 + 01939678 v 0101 + 01939406 v 0102 | a traveler who drives (or travels with) a dog team -10339856 18 n 01 music_critic 0 002 @ 09979589 n 0000 ~i 11333601 n 0000 | a critic of musical performances -10339966 18 n 01 musician 0 014 @ 09812338 n 0000 ;c 07020895 n 0000 + 05636048 n 0101 + 07020895 n 0101 + 05718935 n 0101 + 00543233 n 0101 ~ 09809925 n 0000 ~ 09919771 n 0000 ~ 09947232 n 0000 ~ 09952539 n 0000 ~ 10755512 n 0000 ~i 11044629 n 0000 ~i 11215205 n 0000 ~i 11216386 n 0000 | artist who composes or conducts music as a profession -10340312 18 n 03 musician 1 instrumentalist 0 player 2 045 @ 10415638 n 0000 #m 08246613 n 0000 + 01725051 v 0301 + 03800933 n 0202 + 05636048 n 0101 + 07020895 n 0101 + 05718935 n 0101 + 00543233 n 0101 ~ 09760913 n 0000 ~ 09761310 n 0000 ~ 09837459 n 0000 ~ 09842629 n 0000 ~ 09842716 n 0000 ~ 09849256 n 0000 ~ 09896311 n 0000 ~ 09903501 n 0000 ~ 09926246 n 0000 ~ 10098245 n 0000 ~ 10118743 n 0000 ~ 10151760 n 0000 ~ 10160624 n 0000 ~ 10160770 n 0000 ~ 10161047 n 0000 ~ 10185483 n 0000 ~ 10220486 n 0000 ~ 10229883 n 0000 ~ 10240715 n 0000 ~ 10277638 n 0000 ~ 10369317 n 0000 ~ 10382825 n 0000 ~ 10415037 n 0000 ~ 10430665 n 0000 ~ 10435041 n 0000 ~ 10512109 n 0000 ~ 10528816 n 0000 ~ 10535881 n 0000 ~ 10554243 n 0000 ~ 10599806 n 0000 ~ 10603851 n 0000 ~ 10623650 n 0000 ~ 10730416 n 0000 ~ 10732010 n 0000 ~ 10749928 n 0000 ~ 10754578 n 0000 ~ 10755080 n 0000 | someone who plays a musical instrument (as a profession) -10341243 18 n 01 musicologist 0 002 @ 10557854 n 0000 + 06171388 n 0101 | a student of musicology -10341343 18 n 01 music_teacher 0 002 @ 10694258 n 0000 ~ 10431224 n 0000 | someone who teaches music -10341446 18 n 01 musketeer 0 003 @ 10204921 n 0000 #m 08389438 n 0000 + 03802007 n 0101 | a foot soldier armed with a musket -10341573 18 n 01 Muslimah 0 002 @ 09682291 n 0000 ~ 10359117 n 0000 | a Muslim woman -10341660 18 n 04 mutant 0 mutation 0 variation 0 sport 1 008 @ 00004475 n 0000 ;c 06037666 n 0000 + 02661252 v 0302 + 02987177 a 0201 + 00119873 v 0201 + 02987454 a 0101 + 00119873 v 0101 ~ 10109443 n 0000 | (biology) an organism that has characteristics resulting from chromosomal alteration -10341955 18 n 03 mutilator 0 maimer 0 mangler 0 006 @ 00007846 n 0000 + 01232098 v 0302 + 00292672 v 0302 + 00090888 v 0201 + 00292672 v 0101 + 00090708 v 0101 | a person who mutilates or destroys or disfigures or cripples -10342180 18 n 01 mutineer 0 003 @ 10210137 n 0000 + 00963896 n 0101 + 02583958 v 0101 | someone who is openly rebellious and refuses to obey authorities (especially seamen or soldiers) -10342367 18 n 03 mute 0 deaf-mute 0 deaf-and-dumb_person 0 004 @ 09996481 n 0000 + 00682168 a 0202 + 00151855 a 0102 ~ 10039569 n 0000 | a deaf person who is unable to speak -10342543 18 n 03 mutterer 0 mumbler 0 murmurer 0 007 @ 10630188 n 0000 + 01044114 v 0301 + 07386920 n 0303 + 01044533 v 0201 + 01044533 v 0102 + 07386920 n 0101 + 00909219 v 0301 | a person who speaks softly and indistinctly -10342770 18 n 04 muzhik 0 moujik 0 mujik 0 muzjik 0 001 @ 10410668 n 0000 | a Russian peasant (especially prior to 1917) -10342893 18 n 01 muzzler 0 002 @ 09632518 n 0000 + 02340897 v 0101 | someone who muzzles animals -10342992 18 n 01 Mycenaen 0 001 @ 09710164 n 0000 | a native or inhabitant of ancient Mycenae -10343088 18 n 01 mycologist 0 002 @ 09868270 n 0000 + 06069747 n 0101 | a botanist who specializes in the study of fungi -10343211 18 n 02 mycophagist 0 mycophage 0 002 @ 10042300 n 0000 + 00411859 n 0101 | a person or animal who eats fungi (especially mushrooms) -10343355 18 n 01 myope 0 001 @ 10757625 n 0000 | a person with myopia; a nearsighted person -10343449 18 n 01 myrmidon 1 001 @ 10099375 n 0000 | a follower who carries out orders without question -10343554 18 n 02 mystic 0 religious_mystic 0 010 @ 09847727 n 0000 + 00900071 a 0102 + 00900071 a 0103 + 02863247 a 0102 + 02863464 a 0102 ~i 09532214 n 0000 ~i 09534058 n 0000 ~ 10501635 n 0000 ~i 10854397 n 0000 ~i 10948312 n 0000 | someone who believes in the existence of realities beyond human comprehension -10343869 18 n 01 mythologist 0 004 @ 09617867 n 0000 + 07978423 n 0101 + 06147873 n 0101 ~i 10880981 n 0000 | an expert on mythology -10344004 18 n 01 nabob 0 001 @ 10292052 n 0000 | a wealthy man (especially one who made his fortune in the Orient) -10344121 18 n 01 naif 0 001 @ 09621359 n 0000 | a naive or inexperienced person -10344203 18 n 01 nailer 0 002 @ 09632518 n 0000 + 01357831 v 0101 | a worker who attaches something by nailing it -10344319 18 n 01 namby-pamby 0 002 @ 10771636 n 0000 + 02325816 a 0101 | an insipid weakling who is foolishly sentimental -10344443 18 n 03 name 0 figure 0 public_figure 0 001 @ 10200781 n 0000 | a well-known or notable person; "they studied all the great names in the history of France"; "she is an important figure in modern music" -10344656 18 n 01 name_dropper 0 001 @ 10201535 n 0000 | someone who pretends that famous people are his/her friends -10344774 18 n 01 namer 0 002 @ 00007846 n 0000 + 01028748 v 0101 | a person who gives a name or names; "the owner is usually the namer of a boat" -10344922 18 n 01 namesake 0 001 @ 00007846 n 0000 | a person with the same name as another -10345015 18 n 01 nan 0 002 @ 10142747 n 0000 ;r 08860123 n 0000 | your grandmother -10345100 18 n 03 nanny 0 nursemaid 0 nurse 1 006 @ 10787470 n 0000 @ 10229498 n 0000 + 01186428 v 0304 ~ 10038119 n 0000 ~ 10287082 n 0000 ~ 10774870 n 0000 | a woman who is the custodian of children -10345302 18 n 03 narc 0 nark 1 narcotics_agent 0 001 @ 10249459 n 0000 | a lawman concerned with narcotics violations -10345422 18 n 02 narcissist 0 narcist 0 003 @ 10576962 n 0000 + 04835260 n 0202 + 04835260 n 0103 | someone in love with themselves -10345556 18 n 01 narcoleptic 0 002 @ 10595647 n 0000 + 02767110 a 0101 | a person who has narcolepsy -10345659 18 n 02 nark 0 copper's_nark 0 003 @ 10206173 n 0000 ;r 08860123 n 0000 + 00936913 v 0101 | an informer or spy working for the police -10345804 18 n 03 narrator 0 storyteller 0 teller 3 007 @ 10630188 n 0000 + 01009240 v 0303 + 00953216 v 0301 + 00953216 v 0102 ~ 09793352 n 0000 ~ 10075529 n 0000 ~ 10147352 n 0000 | someone who tells a story -10346015 18 n 01 nationalist 1 004 @ 09774783 n 0000 + 07485047 n 0101 + 05965195 n 0101 ~ 10346198 n 0000 | an advocate of national independence of or a strong national government -10346198 18 n 01 nationalist_leader 0 006 @ 10346015 n 0000 @ 09623038 n 0000 ~ 09740085 n 0000 ~i 10989339 n 0000 ~i 11153200 n 0000 ~i 11223929 n 0000 | the leader of a nationalist movement -10346392 18 n 01 natural 0 001 @ 09762821 n 0000 | someone regarded as certain to succeed; "he's a natural for the job" -10346514 18 n 02 naturalist 0 natural_scientist 0 016 @ 09855630 n 0000 ;c 06066555 n 0000 ;c 06083243 n 0000 ~i 10809317 n 0000 ~i 10818312 n 0000 ~i 10919278 n 0000 ~i 10923313 n 0000 ~i 10997405 n 0000 ~i 11064330 n 0000 ~i 11065938 n 0000 ~i 11114791 n 0000 ~i 11194910 n 0000 ~i 11213323 n 0000 ~i 11316141 n 0000 ~i 11326154 n 0000 ~i 11371443 n 0000 | a biologist knowledgeable about natural history (especially botany and zoology) -10346955 18 n 01 naturalist 1 002 @ 10423589 n 0000 + 05973372 n 0101 | an advocate of the doctrine that the world can be understood in scientific terms -10347110 18 n 01 naturopath 0 001 @ 10707233 n 0000 | a therapist who practices naturopathy -10347204 18 n 01 nautch_girl 0 001 @ 09989502 n 0000 | a professional dancing girl in India -10347298 18 n 01 naval_attache 0 002 @ 10316360 n 0000 ;c 08199025 n 0000 | a military attache who is a commissioned or warrant officer in a navy -10347446 18 n 01 naval_commander 0 003 @ 10347593 n 0000 ;c 08199025 n 0000 ~i 11090378 n 0000 | naval officer in command of a fleet of warships -10347593 18 n 01 naval_officer 0 012 @ 10317007 n 0000 ;c 08199025 n 0000 ~ 10347446 n 0000 ~i 10876798 n 0000 ~i 10926773 n 0000 ~i 10933084 n 0000 ~i 10966982 n 0000 ~i 11065718 n 0000 ~i 11149483 n 0000 ~i 11207929 n 0000 ~i 11230402 n 0000 ~i 11261986 n 0000 | an officer in the navy -10347883 18 n 01 navigator 0 021 @ 10072708 n 0000 ~i 10831860 n 0000 ~i 10846913 n 0000 ~i 10877584 n 0000 ~i 10885176 n 0000 ~i 10905315 n 0000 ~i 10908313 n 0000 ~i 10920582 n 0000 ~i 10925402 n 0000 ~i 10934154 n 0000 ~i 10942866 n 0000 ~i 10983503 n 0000 ~i 10999202 n 0000 ~i 11012676 n 0000 ~i 11064106 n 0000 ~i 11149016 n 0000 ~ 11242077 n 0000 ~i 11332068 n 0000 ~i 11358863 n 0000 ~i 11363930 n 0000 ~i 11365100 n 0000 | in earlier times, a person who explored by ship -10348365 18 n 01 navigator 1 003 @ 09780676 n 0000 + 01933305 v 0101 ~ 09817694 n 0000 | the member of an aircrew who is responsible for the aircraft's course -10348526 18 n 02 Navy_SEAL 0 SEAL 0 003 @ 09861395 n 0000 #m 08193448 n 0000 ;c 08199025 n 0000 | a member of a Naval Special Warfare unit who is trained for unconventional warfare; "SEAL is an acronym for Sea Air and Land" -10348752 18 n 02 nawab 0 nabob 1 002 @ 10140314 n 0000 ;r 08900535 n 0000 | a governor in India during the Mogul empire -10348874 18 n 01 oblate 0 001 @ 09628382 n 0000 | a lay person dedicated to religious work or the religious life -10348989 18 n 01 obsessive 0 002 @ 10354898 n 0000 + 01585022 a 0102 | a person who has obsessions -10349090 18 n 01 obsessive-compulsive 0 003 @ 10354898 n 0000 + 14381017 n 0101 + 01585312 a 0101 | a person with obsessive-compulsive characteristics -10349243 18 n 05 obstructionist 0 obstructor 0 obstructer 0 resister 0 thwarter 0 008 @ 09615465 n 0000 + 02558172 v 0501 + 02583545 v 0401 + 02557199 v 0301 + 02557199 v 0201 + 01176931 n 0101 ~ 10349551 n 0000 ~ 10659571 n 0000 | someone who systematically obstructs some action that others want to take -10349551 18 n 01 naysayer 0 002 @ 10349243 n 0000 ~ 10697013 n 0000 | someone with an aggressively negative attitude -10349670 18 n 01 Nazarene 0 001 @ 09620078 n 0000 | an inhabitant of Nazareth -10349750 18 n 01 Nazarene 1 001 @ 09678009 n 0000 | an early name for any Christian -10349836 18 n 02 Nazarene 2 Ebionite 0 001 @ 09628382 n 0000 | a member of a group of Jews who (during the early history of the Christian Church) accepted Jesus as the Messiah; they accepted the Gospel According to Matthew but rejected the Epistles of St. Paul and continued to follow Jewish law and celebrate Jewish holidays; they were later declared heretic by the Church of Rome -10350220 18 n 02 Nazi 0 German_Nazi 0 009 @ 10079893 n 0000 ~ 09877443 n 0000 ~ 10660250 n 0000 ~i 10953797 n 0000 ~i 11003724 n 0000 ~i 11008647 n 0000 ~i 11047701 n 0000 ~i 11050537 n 0000 ~i 11052672 n 0000 | a German member of Adolf Hitler's political party -10350484 18 n 01 nazi 1 002 @ 10525134 n 0000 ;u 06717170 n 0000 | derogatory term for a person who is fanatically dedicated to, or seeks to control, some activity, practice, etc. -10350666 18 n 01 Neapolitan 0 002 @ 09716047 n 0000 #m 08805565 n 0000 | a native or inhabitant of Naples -10350774 18 n 02 nebbish 0 nebbech 0 002 @ 10599354 n 0000 ;c 06951067 n 0000 | (Yiddish) a timid unfortunate simpleton -10350896 18 n 01 necessitarian 0 004 @ 10423589 n 0000 ! 10257402 n 0101 ~ 09889346 n 0000 ~ 10080508 n 0000 | someone who does not believe the doctrine of free will -10351064 18 n 01 necker 0 002 @ 09622302 n 0000 + 01426153 v 0101 | a lover who necks -10351152 18 n 01 necromancer 1 002 @ 10020031 n 0000 + 05777439 n 0101 | one who practices divination by conjuring up the dead -10351281 18 n 01 needleworker 0 006 @ 10284064 n 0000 ~ 10044763 n 0000 ~ 10051552 n 0000 ~ 10120816 n 0000 ~ 10239619 n 0000 ~ 10584318 n 0000 | someone who does work (as sewing or embroidery) with a needle -10351491 18 n 01 negativist 1 001 @ 09833997 n 0000 | someone who refuses to do what is asked or does the opposite of what is asked -10351625 18 n 01 neglecter 0 004 @ 00007846 n 0000 + 00616153 v 0101 + 00616857 v 0101 + 00614999 v 0101 | a person who is neglectful and gives little attention or respect to people or responsibilities; "he tried vainly to impress his neglecters" -10351874 18 n 03 negotiator 0 negotiant 0 treater 0 011 @ 09610660 n 0000 + 00762720 v 0301 + 00761713 v 0202 + 00761713 v 0102 ~ 09624559 n 0000 ~ 09839167 n 0000 ~ 09970822 n 0000 ~ 10180580 n 0000 ~ 10352208 n 0000 ~ 10522035 n 0000 ~ 10583916 n 0000 | someone who negotiates (confers with others in order to reach a settlement) -10352208 18 n 02 negotiatress 0 negotiatrix 0 001 @ 10351874 n 0000 | a woman negotiator -10352299 18 n 02 neighbor 0 neighbour 0 009 @ 00007846 n 0000 + 01076435 a 0202 + 08641113 n 0204 + 08225090 n 0202 + 02608176 v 0202 + 01076435 a 0101 + 08641113 n 0103 + 08225090 n 0101 + 02608176 v 0101 | a person who lives (or is located) near another -10352557 18 n 01 neoclassicist 0 002 @ 09774783 n 0000 + 06154464 n 0101 | an advocate of neoclassicism -10352663 18 n 02 neoconservative 0 neocon 0 001 @ 09957156 n 0000 | a conservative who subscribes to neoconservatism -10352782 18 n 01 neoliberal 0 002 @ 10256756 n 0000 + 00576011 a 0101 | a liberal who subscribes to neoliberalism -10352898 18 n 01 neologist 0 002 @ 10256080 n 0000 + 00940560 n 0101 | a lexicographer of new words and expressions -10353016 18 n 04 neonate 0 newborn 0 newborn_infant 0 newborn_baby 0 008 @ 09827683 n 0000 ~ 10268058 n 0000 ~ 10274985 n 0000 ~ 10457293 n 0000 ~ 10465451 n 0000 ~ 10613198 n 0000 ~ 10656706 n 0000 ~ 10699981 n 0000 | a baby from birth to four weeks -10353269 18 n 01 Neoplatonist 0 001 @ 10016103 n 0000 | an adherent of Neoplatonism -10353355 18 n 01 nephew 0 003 @ 10236946 n 0000 ! 10357613 n 0101 ~ 10146002 n 0000 | a son of your brother or sister -10353475 18 n 01 nepotist 0 001 @ 10200781 n 0000 | a powerful person who shows favoritism to relatives or close friends -10353598 18 n 01 nerd 1 001 @ 09617867 n 0000 | an intelligent but single-minded expert in a particular technical field or profession -10353734 18 n 01 Nestorian 0 001 @ 10099375 n 0000 | a follower of Nestorius -10353813 18 n 01 neurasthenic 0 002 @ 10595647 n 0000 + 03090612 a 0101 | a person suffering a nervous breakdown -10353928 18 n 01 neurobiologist 0 003 @ 09855630 n 0000 + 06078511 n 0101 ~ 10354580 n 0000 | a specialist in neurobiology -10354053 18 n 01 neurolinguist 0 003 @ 10354580 n 0000 @ 10264437 n 0000 + 06179290 n 0101 | someone trained in neuroscience and linguistics who studies brain processes during language production and reception -10354265 18 n 02 neurologist 0 brain_doctor 0 010 @ 10632576 n 0000 + 06052864 n 0101 + 06078978 n 0101 ~i 10891830 n 0000 ~i 10918834 n 0000 ~i 10982127 n 0000 ~i 11110205 n 0000 ~i 11346568 n 0000 ~i 11381684 n 0000 ~i 11390549 n 0000 | a medical specialist in the nervous system and the disorders affecting it -10354580 18 n 01 neuroscientist 0 004 @ 10353928 n 0000 + 06081833 n 0101 ~ 10354053 n 0000 ~i 11063944 n 0000 | a neurobiologist who specializes in the study of the brain -10354754 18 n 02 neurosurgeon 0 brain_surgeon 0 001 @ 10679174 n 0000 | someone who does surgery on the nervous system (especially the brain) -10354898 18 n 03 neurotic 0 psychoneurotic 0 mental_case 0 008 @ 10595647 n 0000 + 01583040 a 0202 + 01583040 a 0101 ~ 09926991 n 0000 ~ 10196046 n 0000 ~ 10348989 n 0000 ~ 10349090 n 0000 ~ 10489564 n 0000 | a person suffering from neurosis -10355142 18 n 01 neutral 0 004 @ 00007846 n 0000 + 00732160 a 0101 ~ 10085344 n 0000 ~ 10646140 n 0000 | one who does not side with any party in a war or dispute -10355306 18 n 01 neutralist 0 003 @ 09774783 n 0000 + 01240850 n 0101 + 06662712 n 0101 | an advocate of neutrality in international affairs -10355449 18 n 08 newcomer 0 fledgling 0 fledgeling 0 starter 1 neophyte 1 freshman 1 newbie 0 entrant 1 005 @ 10363913 n 0000 + 01628449 v 0403 + 00345761 v 0405 + 00936998 a 0201 ~ 10512201 n 0000 | any new participant in some activity -10355688 18 n 01 newcomer 1 002 @ 09810166 n 0000 ~ 10284871 n 0000 | a recent arrival; "he's a newcomer to Boston" -10355806 18 n 01 New_Dealer 0 001 @ 10677713 n 0000 | a supporter of the economic policies in the United States known as the New Deal -10355942 18 n 02 New_Englander 0 Yankee 1 002 @ 09738708 n 0000 #m 09048880 n 0000 | an American who lives in New England -10356066 18 n 02 newlywed 0 honeymooner 0 004 @ 10640620 n 0000 + 02708923 v 0201 ~ 09874618 n 0000 ~ 10147935 n 0000 | someone recently married -10356213 18 n 04 newsagent 0 newsdealer 0 newsvendor 0 newsstand_operator 0 001 @ 10592152 n 0000 | someone who sells newspapers -10356344 18 n 01 newscaster 0 002 @ 09795124 n 0000 ~ 10356877 n 0000 | someone who broadcasts the news -10356450 18 n 01 newspaper_editor 0 004 @ 10044879 n 0000 ~ 09881895 n 0000 ~ 09923996 n 0000 ~ 10639817 n 0000 | the editor of a newspaper -10356592 18 n 01 newspaper_columnist 0 004 @ 09939154 n 0000 ~ 09779461 n 0000 ~ 10139651 n 0000 ~ 10356749 n 0000 | a columnist who writes for newspapers -10356749 18 n 01 newspaper_critic 0 002 @ 09979589 n 0000 @ 10356592 n 0000 | a critic who writes a column for the newspapers -10356877 18 n 02 newsreader 0 news_reader 0 002 @ 10356344 n 0000 ;r 08860123 n 0000 | someone who reads out broadcast news bulletin -10357012 18 n 01 Newtonian 0 002 @ 10099375 n 0000 + 03036014 a 0101 | a follower of Isaac Newton -10357112 18 n 01 New_Waver 0 001 @ 10088390 n 0000 | a film maker who follows New Wave ideas -10357207 18 n 01 next_friend 0 002 @ 09777353 n 0000 ;c 08441203 n 0000 | (law) a person who acts on behalf of an infant or disabled person -10357349 18 n 01 next_of_kin 0 001 @ 10235549 n 0000 | the person who is (or persons who are) most closely related to a given person -10357484 18 n 01 nibbler 0 003 @ 09857852 n 0000 + 01174294 v 0101 + 01446729 v 0101 | a biter who takes dainty repeated bites -10357613 18 n 01 niece 0 003 @ 10237069 n 0000 ! 10353355 n 0101 ~ 10146104 n 0000 | a daughter of your brother or sister -10357737 18 n 04 niggard 0 skinflint 0 scrooge 0 churl 2 003 @ 10178611 n 0000 + 01113636 a 0102 ~ 10434054 n 0000 | a selfish person who is unwilling to give or spend -10357907 18 n 03 night_owl 0 nighthawk 0 nightbird 0 001 @ 09619824 n 0000 | a person who likes to be active late at night -10358032 18 n 01 night_porter 0 001 @ 10026553 n 0000 | a porter on duty during the night -10358124 18 n 02 night_rider 0 nightrider 0 001 @ 09821253 n 0000 | member of a secret mounted band in United States South after the American Civil War; committed acts of intimidation and revenge -10358322 18 n 01 night_watchman 0 001 @ 10770059 n 0000 | a watchman who works during the night -10358420 18 n 01 nihilist 1 003 @ 09625789 n 0000 + 13973320 n 0101 + 05965388 n 0101 | someone who rejects all theories of morality or religious belief -10358575 18 n 01 NIMBY 0 002 @ 10018021 n 0000 ;u 07091902 n 0000 | someone who objects to siting something in their own neighborhood but does not object to it being sited elsewhere; an acronym for not in my backyard -10358794 18 n 03 nincompoop 0 poop 0 ninny 0 001 @ 10599354 n 0000 | a stupid foolish person -10358889 18 n 01 ninja 0 003 @ 10309614 n 0000 #m 08389094 n 0000 ;c 09718217 n 0000 | a member of the ninja who were trained in martial arts and hired for espionage or sabotage or assassinations; a person skilled in ninjutsu -10359117 18 n 01 niqaabi 0 001 @ 10341573 n 0000 | an observant Muslim woman who covers her face and hands when in public or in the presence of any man outside her immediate family -10359300 18 n 01 Nisei 0 001 @ 09738708 n 0000 | a person born in the United States of parents who emigrated from Japan -10359422 18 n 01 nitpicker 0 002 @ 09979072 n 0000 + 00846218 v 0101 | someone who makes small and unjustified criticisms -10359546 18 n 02 Nobelist 0 Nobel_Laureate 0 002 @ 10249011 n 0000 + 07268759 n 0101 | winner of a Nobel prize -10359659 18 n 01 NOC 0 001 @ 10569411 n 0000 | an undercover agent who is given no official cover -10359759 18 n 01 nomad 0 006 @ 10765679 n 0000 ~ 09846469 n 0000 ~ 09881613 n 0000 ~ 10192588 n 0000 ~ 10552019 n 0000 ~ 10566966 n 0000 | a member of a people who have no permanent home but move about according to the seasons -10359988 18 n 01 nominalist 0 001 @ 10423589 n 0000 | a philosopher who has adopted the doctrine of nominalism -10360101 18 n 01 nominator 0 003 @ 10484526 n 0000 + 02401523 v 0101 + 00879540 v 0101 | someone who proposes a candidate for appointment or election -10360253 18 n 01 nonagenarian 0 002 @ 10376523 n 0000 + 01646120 a 0101 | someone whose age is in the nineties -10360366 18 n 01 noncandidate 0 001 @ 10450303 n 0000 | someone who has announced they are not a candidate; especially a politician who has announced that he or she is not a candidate for some political office -10360578 18 n 01 noncombatant 0 002 @ 10582746 n 0000 + 01517755 a 0101 | a member of the armed forces who does not participate in combat (e.g. a chaplain or surgeon) -10360747 18 n 03 noncommissioned_officer 0 noncom 0 enlisted_officer 0 010 @ 10317007 n 0000 ;c 08199025 n 0000 ~ 09780547 n 0000 ~ 09864429 n 0000 ~ 09917345 n 0000 ~ 09966139 n 0000 ~ 10034020 n 0000 ~ 10244665 n 0000 ~ 10420809 n 0000 ~ 10580772 n 0000 | a military officer appointed from enlisted personnel -10361060 18 n 01 nondescript 0 002 @ 00007846 n 0000 + 01673590 a 0102 | a person is not easily classified and not very interesting -10361194 18 n 01 nondriver 0 002 @ 10412055 n 0000 ! 10034906 n 0101 | a person who is not a driver -10361296 18 n 01 nonparticipant 0 001 @ 00007846 n 0000 | a person who does not participate -10361390 18 n 02 nonpartisan 0 nonpartizan 0 003 @ 00007846 n 0000 + 00731292 a 0101 ! 10402086 n 0101 | a person who is nonpartisan -10361525 18 n 02 nonperson 0 unperson 0 001 @ 00007846 n 0000 | a person regarded as nonexistent and having no rights; a person whose existence is systematically ignored (especially for ideological or political reasons); "the former senator is treated as a nonperson by this administration"; "George Orwell predicted that political dissidents would be treated as unpersons" -10361901 18 n 01 nonreader 0 001 @ 10665698 n 0000 | a student who is very slow in learning to read -10362003 18 n 01 nonresident 0 002 @ 00007846 n 0000 ! 10523519 n 0101 | someone who does not live in a particular place; "described by an admiring nonresident as a green and pleasant land" -10362195 18 n 02 non-resistant 0 passive_resister 0 001 @ 10515194 n 0000 | a reformer who believes in passive resistance -10362319 18 n 01 nonsmoker 0 002 @ 00007846 n 0000 ! 10614976 n 0101 | a person who does not smoke tobacco -10362428 18 n 02 normalizer 0 normaliser 0 003 @ 09609871 n 0000 + 00468236 v 0202 + 00468236 v 0101 | a person who normalizes -10362557 18 n 01 Northern_Baptist 0 002 @ 09838701 n 0000 #m 08089797 n 0000 | a member of the American Baptist Convention -10362682 18 n 01 Northerner 0 001 @ 09620078 n 0000 | an inhabitant of the North -10362765 18 n 02 nosher 0 snacker 0 003 @ 10042300 n 0000 + 01173405 v 0202 + 01173405 v 0101 | someone who eats lightly or eats snacks between meals -10362917 18 n 03 no-show 0 nonattender 0 truant 1 001 @ 09633969 n 0000 | someone who shirks duty -10363017 18 n 01 no-show 1 001 @ 10151133 n 0000 | a guest who fails to notify a hotel or restaurant when canceling a reservation -10363149 18 n 02 notary 0 notary_public 0 003 @ 10372373 n 0000 ;c 08441203 n 0000 + 00822101 v 0101 | someone legally empowered to witness signatures and certify a document's validity and to take depositions -10363360 18 n 01 noticer 0 001 @ 10372373 n 0000 | someone who gives formal notice -10363445 18 n 01 noticer 1 002 @ 09626589 n 0000 + 02118476 v 0101 | someone who takes notice; "a careful noticer of details" -10363573 18 n 01 novelist 0 015 @ 10794014 n 0000 + 06367879 n 0101 + 03833065 n 0101 ~i 10809576 n 0000 ~i 10812225 n 0000 ~i 10833111 n 0000 ~i 10967633 n 0000 ~i 10993936 n 0000 ~i 11001211 n 0000 ~i 11004106 n 0000 ~i 11065345 n 0000 ~i 11175875 n 0000 ~i 11235787 n 0000 ~i 11247298 n 0000 ~i 11407591 n 0000 | one who writes novels -10363913 18 n 05 novice 0 beginner 0 tyro 0 tiro 0 initiate 2 010 @ 09632274 n 0000 + 02390470 v 0501 + 00345761 v 0202 ~ 09755788 n 0000 ~ 09801864 n 0000 ~ 09981834 n 0000 ~ 10245341 n 0000 ~ 10355449 n 0000 ~ 10700963 n 0000 ~ 10722385 n 0000 | someone new to a field or activity -10364198 18 n 02 novitiate 0 novice 1 001 @ 09628382 n 0000 | someone who has entered a religious order but has not taken final vows -10364333 18 n 01 Nubian 0 003 @ 09700492 n 0000 @ 07967382 n 0000 #m 08504375 n 0000 | a native or inhabitant of Nubia; "Nubians now form an ethnic minority in Egypt" -10364502 18 n 02 nuclear_chemist 0 radiochemist 0 002 @ 09913824 n 0000 + 06090540 n 0201 | a chemist who specializes in nuclear chemistry -10364643 18 n 01 nuclear_physicist 0 035 @ 10428004 n 0000 ~i 10817244 n 0000 ~i 10850273 n 0000 ~i 10855200 n 0000 ~i 10858164 n 0000 ~i 10858577 n 0000 ~i 10865329 n 0000 ~i 10903918 n 0000 ~i 10905703 n 0000 ~i 10936894 n 0000 ~i 10969986 n 0000 ~i 10970279 n 0000 ~i 10983172 n 0000 ~i 10993777 n 0000 ~i 11001848 n 0000 ~i 11038810 n 0000 ~i 11046722 n 0000 ~i 11047139 n 0000 ~i 11120368 n 0000 ~i 11124088 n 0000 ~i 11167088 n 0000 ~i 11171614 n 0000 ~i 11193814 n 0000 ~i 11195913 n 0000 ~i 11215909 n 0000 ~i 11226713 n 0000 ~i 11278498 n 0000 ~i 11286476 n 0000 ~i 11328289 n 0000 ~i 11330228 n 0000 ~i 11335041 n 0000 ~i 11372896 n 0000 ~i 11386138 n 0000 ~i 11391234 n 0000 ~i 11404402 n 0000 | a physicist who specializes in nuclear physics -10365399 18 n 02 nude 0 nude_person 0 003 @ 00007846 n 0000 + 00457998 a 0104 ~ 10662306 n 0000 | a naked person -10365514 18 n 01 nudger 0 003 @ 10495421 n 0000 + 01231252 v 0101 + 00766289 v 0101 | someone who nudges; someone who gives a gentle push; "he needs a regular nudger to keep him awake" -10365701 18 n 02 nudist 0 naturist 0 002 @ 09619824 n 0000 + 01031563 n 0101 | a person who practices nudity for reasons of health or religion -10365846 18 n 02 nudnik 0 nudnick 0 003 @ 09867437 n 0000 @ 10419630 n 0000 ;c 06951067 n 0000 | (Yiddish) someone who is a boring pest -10365984 18 n 01 nullifier 0 002 @ 09774783 n 0000 + 02478059 v 0106 | an advocate of nullification; someone who believes that a state can resist federal laws -10366145 18 n 01 nullipara 0 002 @ 10787470 n 0000 ;c 06053439 n 0000 | (obstetrics) a woman who has never give birth to a child -10366276 18 n 01 number_theorist 0 001 @ 10301261 n 0000 | a mathematician specializing in number theory -10366383 18 n 01 numerologist 0 002 @ 09847727 n 0000 + 06248530 n 0101 | a believer in numerology -10366484 18 n 01 numen 0 004 @ 09545324 n 0000 ;c 05946687 n 0000 + 02056001 a 0101 + 02770360 a 0101 | a spirit believed to inhabit an object or preside over a place (especially in ancient Roman religion) -10366692 18 n 01 Numidian 0 001 @ 09620078 n 0000 | an inhabitant of ancient Numidia -10366779 18 n 03 numismatist 0 numismatologist 0 coin_collector 0 003 @ 09936620 n 0000 + 01015996 n 0202 + 01015996 n 0101 | a collector and student of money (and coins in particular) -10366966 18 n 01 nurse 0 017 @ 10165109 n 0000 #m 13838025 n 0000 + 02550698 v 0101 + 00080705 v 0101 ~ 10106642 n 0000 ~ 10140929 n 0000 ~ 10164492 n 0000 ~ 10258304 n 0000 ~ 10303186 n 0000 ~ 10314836 n 0000 ~ 10477713 n 0000 ~ 10516527 n 0000 ~ 10565197 n 0000 ~ 10756937 n 0000 ~i 10888151 n 0000 ~i 11207410 n 0000 ~i 11280405 n 0000 | one skilled in caring for young children or the sick (usually under the supervision of a physician) -10367409 18 n 01 nurser 0 002 @ 00007846 n 0000 + 02515194 v 0101 | a person who treats something carefully; "a great nurser of pennies" -10367548 18 n 02 nursing_aide 0 nurse's_aide 0 001 @ 09780249 n 0000 | someone who assists a nurse in tasks that require little formal training -10367694 18 n 01 nurse-midwife 0 001 @ 10516527 n 0000 | a registered nurse who has received special training as a midwife -10367819 18 n 03 nurse_practitioner 0 NP 0 nurse_clinician 0 001 @ 10516527 n 0000 | a registered nurse who has received special training and can perform many of the duties of a physician -10368009 18 n 01 nun 0 003 @ 10518602 n 0000 ~ 10602470 n 0000 ~i 11335878 n 0000 | a woman religious -10368113 18 n 02 nuncio 0 papal_nuncio 0 002 @ 10013927 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a diplomatic representative of the Pope having ambassadorial status -10368291 18 n 03 nursling 0 nurseling 0 suckling 0 001 @ 09827683 n 0000 | an infant considered in relation to its nurse -10368414 18 n 03 nutter 0 wacko 0 whacko 0 001 @ 10042845 n 0000 | a person who is regarded as eccentric or mad -10368528 18 n 02 nymph 1 houri 0 001 @ 10787470 n 0000 | a voluptuously beautiful young woman -10368624 18 n 01 nymphet 0 001 @ 10787470 n 0000 | a sexually attractive young woman -10368711 18 n 01 nympholept 0 001 @ 09630641 n 0000 | a person seized by nympholepsy -10368798 18 n 02 nymphomaniac 0 nympho 0 002 @ 10419047 n 0000 + 01584857 a 0102 | a woman with abnormal sexual desires -10368920 18 n 02 oarsman 0 rower 0 006 @ 09861946 n 0000 + 01946996 v 0201 + 05639556 n 0101 ~ 10369095 n 0000 ~ 10565764 n 0000 ~ 10664850 n 0000 | someone who rows a boat -10369095 18 n 01 oarswoman 0 001 @ 10368920 n 0000 | a woman oarsman -10369166 18 n 02 obliger 0 accommodator 0 003 @ 09608709 n 0000 + 00885925 v 0202 + 00885925 v 0101 | someone who performs a service or does a favor -10369317 18 n 01 oboist 0 002 @ 10340312 n 0000 + 03838899 n 0101 | a musician who plays the oboe -10369417 18 n 01 obscurantist 0 002 @ 09998101 n 0000 + 00756470 n 0101 | a person who is deliberately vague -10369528 18 n 02 observer 1 commentator 1 004 @ 09617867 n 0000 + 00939035 v 0201 + 01020005 v 0102 ~ 09795010 n 0000 | an expert who observes and comments on something -10369699 18 n 02 obstetrician 0 accoucheur 0 003 @ 10632576 n 0000 + 06053439 n 0101 ~ 10416444 n 0000 | a physician specializing in obstetrics -10369845 18 n 01 Occidental 0 002 @ 09620078 n 0000 + 00825375 a 0101 | a native inhabitant of the Occident -10369955 18 n 01 occupier 1 003 @ 10582746 n 0000 ;c 08199025 n 0000 + 01126360 v 0102 | a member of a military force who is residing in a conquered foreign country -10370122 18 n 01 oceanographer 0 003 @ 10560637 n 0000 + 06119904 n 0101 ~i 10955748 n 0000 | a scientist who studies physical and biological aspects of the seas -10370286 18 n 01 octogenarian 0 001 @ 10376523 n 0000 | someone whose age is in the eighties -10370381 18 n 01 occultist 0 007 @ 00007846 n 0000 + 05968450 n 0101 + 05968288 n 0101 ~ 09905965 n 0000 ~ 10055297 n 0000 ~ 10488309 n 0000 ~ 10625860 n 0000 | a believer in occultism; someone versed in the occult arts -10370603 18 n 01 odalisque 0 001 @ 09952393 n 0000 | a woman slave in a harem -10370683 18 n 02 odds-maker 0 handicapper 0 002 @ 10118844 n 0000 + 01085874 v 0201 | someone who sets the betting odds based on calculations of the outcome of a contest (especially a horse race) -10370881 18 n 01 odist 0 001 @ 10444194 n 0000 | a poet who writes odes -10370955 18 n 01 wine_lover 0 001 @ 09956387 n 0000 | a connoisseur of fine wines; a grape nut -10371052 18 n 02 offerer 0 offeror 0 003 @ 09608709 n 0000 + 02297142 v 0201 + 02297142 v 0101 | someone who presents something to another for acceptance or rejection -10371221 18 n 01 office-bearer 0 002 @ 10202624 n 0000 ;r 08860123 n 0000 | the person who holds an office -10371330 18 n 01 office_boy 0 001 @ 10053808 n 0000 | a young man who is employed to do odd jobs in a business office -10371450 18 n 02 officeholder 2 officer 2 004 @ 10372373 n 0000 @ 10180178 n 0000 ~ 10477839 n 0000 ~ 10581094 n 0000 | someone who is appointed or elected to an office and who holds a position of trust; "he is an officer of the court"; "the club elected its officers for the coming year" -10371741 18 n 02 officer 4 ship's_officer 0 009 @ 10294602 n 0000 + 00752335 v 0101 ~ 10298912 n 0000 ~ 10300041 n 0000 ~ 10476928 n 0000 ~ 10494643 n 0000 ~ 10546428 n 0000 ~ 10655730 n 0000 ~ 10675346 n 0000 | a person authorized to serve in a position of authority on a vessel; "he is the officer in charge of the ship's engines" -10372076 18 n 01 official 0 008 @ 09769636 n 0000 ~ 10101427 n 0000 ~ 10263931 n 0000 ~ 10514429 n 0000 ~ 10562135 n 0000 ~ 10649308 n 0000 ~ 10711483 n 0000 ~ 10735984 n 0000 | someone who administers the rules of a game or sport; "the golfer asked for an official who could give him a ruling" -10372373 18 n 02 official 1 functionary 0 051 @ 10605985 n 0000 + 01096497 v 0202 + 08357784 n 0102 ~ 09800056 n 0000 ~ 09800964 n 0000 ~ 09833111 n 0000 ~ 09844770 n 0000 ~ 09880427 n 0000 ~ 09895902 n 0000 ~ 09903639 n 0000 ~ 09904057 n 0000 ~ 09922799 n 0000 ~ 09924106 n 0000 ~ 09925459 n 0000 ~ 09942697 n 0000 ~ 09950150 n 0000 ~ 09950318 n 0000 ~ 10013927 n 0000 ~ 10048836 n 0000 ~ 10062594 n 0000 ~ 10091861 n 0000 ~ 10092098 n 0000 ~ 10165957 n 0000 ~ 10180791 n 0000 ~ 10202624 n 0000 ~ 10208432 n 0000 ~ 10214390 n 0000 ~ 10225219 n 0000 ~ 10258602 n 0000 ~ 10278456 n 0000 ~ 10289766 n 0000 ~ 10363149 n 0000 ~ 10363360 n 0000 ~ 10371450 n 0000 ~ 10373801 n 0000 ~ 10458834 n 0000 ~ 10459764 n 0000 ~ 10478462 n 0000 ~ 10484858 n 0000 ~ 10497775 n 0000 ~ 10512562 n 0000 ~ 10516874 n 0000 ~ 10517826 n 0000 ~ 10525878 n 0000 ~ 10567268 n 0000 ~ 10567401 n 0000 ~ 10699099 n 0000 ~ 10719036 n 0000 ~ 10742111 n 0000 ~ 10758445 n 0000 ~ 10773277 n 0000 | a worker who holds or is invested with an office -10373390 18 n 01 officiant 0 002 @ 09927451 n 0000 + 02382087 v 0101 | a clergyman who officiates at a religious ceremony or service -10373525 18 n 03 Federal 0 Fed 0 federal_official 0 001 @ 10373801 n 0000 | any federal law-enforcement officer -10373639 18 n 03 Federal 1 Federal_soldier 0 Union_soldier 0 002 @ 10802283 n 0000 + 01606214 a 0102 | a member of the Union Army during the American Civil War -10373801 18 n 02 agent 3 federal_agent 0 005 @ 10372373 n 0000 + 02607909 a 0101 ~ 10203135 n 0000 ~ 10373525 n 0000 ~ 10732212 n 0000 | any agent or representative of a federal agency or bureau -10373998 18 n 03 offspring 0 progeny 0 issue 0 007 @ 10235549 n 0000 ~ 09827519 n 0000 ~ 09842823 n 0000 ~ 09918248 n 0000 ~ 10092643 n 0000 ~ 10141590 n 0000 ~ 10671613 n 0000 | the immediate descendants of a person; "she was the mother of many offspring"; "he died without issue" -10374282 18 n 01 ogler 0 002 @ 10633450 n 0000 + 02164067 v 0101 | a viewer who gives a flirtatious or lewd look at another person -10374415 18 n 01 oiler 0 003 @ 09632518 n 0000 + 14966667 n 0101 + 01268571 v 0101 | a worker who oils engines or machinery -10374541 18 n 01 oilman 0 002 @ 10605985 n 0000 ~ 10530862 n 0000 | a worker who produces or sells petroleum -10374652 18 n 01 oilman 1 002 @ 09882007 n 0000 ~ 10781547 n 0000 | a person who owns or operates oil wells -10374762 18 n 01 oil_painter 0 001 @ 10391653 n 0000 | a painter who uses oil paints -10374849 18 n 01 oil_tycoon 0 001 @ 09840217 n 0000 | a powerful person in the oil business -10374943 18 n 01 old-age_pensioner 0 001 @ 10414612 n 0000 | an old person who receives an old-age pension -10375052 18 n 01 old_boy 0 001 @ 10376523 n 0000 | a vivacious elderly man -10375129 18 n 01 old_boy 1 001 @ 09786338 n 0000 | a former male pupil of a school -10375214 18 n 02 old_boy 2 old_man 3 001 @ 10287213 n 0000 | a familiar term of address for a man -10375314 18 n 01 old_lady 0 001 @ 10780632 n 0000 | your own wife; "meet my old lady" -10375402 18 n 01 old_man 1 002 @ 10080869 n 0000 @ 06605396 n 0000 | an informal term for your father -10375506 18 n 04 old_man 2 greybeard 0 graybeard 0 Methuselah 1 005 @ 10376523 n 0000 @ 10287213 n 0000 ~ 09933842 n 0000 ~ 10376890 n 0000 ~ 10406266 n 0000 | a man who is very old -10375690 18 n 01 old_man 4 003 @ 09867956 n 0000 ;r 09044862 n 0000 ;u 07157273 n 0000 | (slang) boss -10375794 18 n 01 old_master 0 034 @ 10391653 n 0000 @ 10280130 n 0000 ~i 10858468 n 0000 ~i 10859012 n 0000 ~i 10868177 n 0000 ~i 10882089 n 0000 ~i 10898133 n 0000 ~i 10912079 n 0000 ~i 10945977 n 0000 ~i 10956377 n 0000 ~i 10964052 n 0000 ~i 11000786 n 0000 ~i 11025508 n 0000 ~i 11055612 n 0000 ~i 11056060 n 0000 ~i 11056195 n 0000 ~i 11118481 n 0000 ~i 11128394 n 0000 ~i 11134196 n 0000 ~i 11134339 n 0000 ~i 11178161 n 0000 ~i 11244765 n 0000 ~i 11254028 n 0000 ~i 11257932 n 0000 ~i 11258096 n 0000 ~i 11273104 n 0000 ~i 11314219 n 0000 ~i 11343208 n 0000 ~i 11343507 n 0000 ~i 11359867 n 0000 ~i 11362329 n 0000 ~i 11363269 n 0000 ~i 11363791 n 0000 ~i 11376939 n 0000 | a great European painter prior to 19th century -10376523 18 n 04 oldster 0 old_person 0 senior_citizen 0 golden_ager 0 015 @ 09605289 n 0000 ~ 09793248 n 0000 ~ 09904208 n 0000 ~ 09984047 n 0000 ~ 10022645 n 0000 ~ 10022908 n 0000 ~ 10027105 n 0000 ~ 10161521 n 0000 ~ 10360253 n 0000 ~ 10370286 n 0000 ~ 10375052 n 0000 ~ 10375506 n 0000 ~ 10377021 n 0000 ~ 10580437 n 0000 ~ 10584617 n 0000 | an elderly person -10376890 18 n 05 old-timer 0 oldtimer 0 gaffer 1 old_geezer 0 antique 0 002 @ 10375506 n 0000 + 01638962 a 0502 | an elderly man -10377021 18 n 01 old_woman 0 006 @ 10376523 n 0000 @ 10787470 n 0000 ~ 09847543 n 0000 ~ 10143530 n 0000 ~ 10155485 n 0000 ~ 10332953 n 0000 | a woman who is old -10377185 18 n 01 oligarch 0 002 @ 10541229 n 0000 + 02770742 a 0101 | one of the rulers in an oligarchy -10377291 18 n 01 Olympian 0 001 @ 09820263 n 0000 | an athlete who participates in the Olympic games -10377394 18 n 01 ombudsman 0 001 @ 10215623 n 0000 | a government appointee who investigates complaints by private persons against the government -10377542 18 n 01 omnivore 0 001 @ 10042300 n 0000 | a person who eats all kinds of foods -10377633 18 n 01 oncologist 0 002 @ 10632576 n 0000 + 06054266 n 0101 | a specialist in oncology -10377732 18 n 01 oneiromancer 0 002 @ 10020031 n 0000 + 05777599 n 0101 | someone who divines through the interpretation of dreams -10377865 18 n 01 one_of_the_boys 0 001 @ 09870926 n 0000 | a man who has been socially accepted into a group of other men; "he quickly became one of the boys" -10378026 18 n 02 onlooker 0 looker-on 0 001 @ 10633450 n 0000 | someone who looks on -10378113 18 n 01 onomancer 0 002 @ 10020031 n 0000 + 05777722 n 0101 | one who practices onomancy -10378213 18 n 01 operagoer 0 001 @ 10407726 n 0000 | a patron of the opera -10378290 18 n 02 opera_star 0 operatic_star 0 002 @ 10599806 n 0000 ~ 10471732 n 0000 | singer of lead role in an opera -10378412 18 n 02 operator 0 manipulator 0 013 @ 00007347 n 0000 + 01224744 v 0101 ~ 09946574 n 0000 ~ 10034906 n 0000 ~ 10050432 n 0000 ~ 10057714 n 0000 ~ 10179817 n 0000 ~ 10223294 n 0000 ~ 10334255 n 0000 ~ 10504426 n 0000 ~ 10684538 n 0000 ~ 10697519 n 0000 ~ 10698064 n 0000 | an agent that operates some apparatus or machine; "the operator of the switchboard" -10378780 18 n 01 operator 1 003 @ 09882007 n 0000 + 02443849 v 0101 ~ 10676214 n 0000 | someone who owns or operates a business; "who is the operator of this franchise?" -10378952 18 n 01 operator 3 001 @ 10634075 n 0000 | a speculator who trades aggressively on stock or commodity markets -10379073 18 n 03 ophthalmologist 0 eye_doctor 0 oculist 0 003 @ 10632576 n 0000 + 06054446 n 0101 ~i 11306920 n 0000 | a medical doctor specializing in the diagnosis and treatment of diseases of the eye -10379278 18 n 02 opium_addict 0 opium_taker 0 001 @ 10035952 n 0000 | someone addicted to opium -10379376 18 n 02 opportunist 0 self-seeker 0 008 @ 10576962 n 0000 + 00931974 a 0101 + 04835488 n 0101 ~ 09830926 n 0000 ~ 09868782 n 0000 ~ 09896973 n 0000 ~ 10194566 n 0000 ~ 10711641 n 0000 | a person who places expediency above principle -10379620 18 n 03 opposition 1 opponent 2 opposite 0 002 @ 09613191 n 0000 + 01081152 v 0202 | a contestant that you are matched against -10379758 18 n 01 oppressor 0 008 @ 09631463 n 0000 + 02585489 v 0102 + 02424652 v 0101 ~ 09824135 n 0000 ~ 10304278 n 0000 ~ 10684146 n 0000 ~ 10716005 n 0000 ~ 10716389 n 0000 | a person of authority who subjects others to undue pressures -10380000 18 n 02 optician 0 lens_maker 0 001 @ 10605985 n 0000 | a worker who makes glasses for remedying defects of vision -10380126 18 n 01 optimist 0 005 @ 00007846 n 0000 + 07541558 n 0101 + 05211793 n 0101 ! 10419472 n 0101 ~ 10318414 n 0000 | a person disposed to take a favorable view of things -10380305 18 n 02 optometrist 0 oculist 1 003 @ 10631941 n 0000 + 05311054 n 0202 + 00632716 n 0101 | a person skilled in testing for defects of vision in order to prescribe corrective glasses -10380499 18 n 01 Orangeman 0 002 @ 09679316 n 0000 #m 08036669 n 0000 | a member of a society founded in Ireland in 1795 to uphold Protestantism and the British sovereign -10380672 18 n 05 orator 0 speechmaker 0 rhetorician 0 public_speaker 0 speechifier 0 016 @ 10630188 n 0000 + 00990008 v 0501 + 07072698 n 0301 + 06170498 n 0301 + 02017933 a 0101 + 00828901 v 0101 ~ 09617161 n 0000 ~ 10050880 n 0000 ~ 10159714 n 0000 ~ 10634990 n 0000 ~ 10732644 n 0000 ~i 10873059 n 0000 ~i 10897946 n 0000 ~i 10930428 n 0000 ~i 11040381 n 0000 ~i 11074769 n 0000 | a person who delivers a speech or oration -10381100 18 n 01 orchestrator 0 002 @ 09809925 n 0000 + 01707737 v 0101 | an arranger who writes for orchestras -10381214 18 n 01 ordainer 0 003 @ 09928136 n 0000 + 02386012 v 0101 + 02427726 v 0101 | a cleric who ordains; a cleric who admits someone to holy orders -10381369 18 n 06 orderer 0 systematizer 0 systematiser 0 systemizer 0 systemiser 0 systematist 1 008 @ 10383237 n 0000 + 01031705 n 0601 + 00480969 v 0504 + 00480969 v 0403 + 00480969 v 0302 + 00480969 v 0201 + 00276883 v 0101 + 00277659 v 0101 | an organizer who puts things in order; "Aristotle was a great orderer of ideas" -10381698 18 n 01 orderer 1 002 @ 09885145 n 0000 + 00745499 v 0101 | someone who places an order to buy -10381804 18 n 02 orderly 0 hospital_attendant 0 001 @ 09821831 n 0000 | a male hospital attendant who has general duties that do not involve the medical treatment of patients -10381981 18 n 01 orderly 1 002 @ 09821831 n 0000 @ 10622053 n 0000 | a soldier who serves as an attendant to a superior officer; "the orderly laid out the general's uniform" -10382157 18 n 01 orderly_sergeant 0 001 @ 10093475 n 0000 | the first sergeant of a company; duties formerly included the conveyance of orders -10382302 18 n 01 ordinand 0 001 @ 09927451 n 0000 | a person being ordained -10382380 18 n 01 ordinary 1 002 @ 10225219 n 0000 ;c 08441203 n 0000 | a judge of a probate court -10382480 18 n 01 ordinary 0 001 @ 09927451 n 0000 | a clergyman appointed to prepare condemned prisoners for death -10382597 18 n 01 organ_donor 0 001 @ 10026058 n 0000 | someone from whom an organ is taken for transplantation -10382710 18 n 01 organ-grinder 0 001 @ 10593745 n 0000 | a street musician who plays a hand organ or hurdy-gurdy -10382825 18 n 01 organist 0 011 @ 10340312 n 0000 + 03494537 n 0102 + 03273551 n 0104 + 03854065 n 0101 ~i 10830229 n 0000 ~i 10868025 n 0000 ~i 10877015 n 0000 ~i 10913010 n 0000 ~i 11248599 n 0000 ~i 11287964 n 0000 ~i 11329808 n 0000 | a person who plays an organ -10383094 18 n 01 organization_man 0 001 @ 10053808 n 0000 | an employee who sacrifices his own individuality for the good of an organization -10383237 18 n 03 organizer 0 organiser 0 arranger 0 006 @ 10708454 n 0000 + 01463963 v 0301 + 01021629 v 0301 + 00404642 v 0101 ~ 09963914 n 0000 ~ 10381369 n 0000 | a person who brings order and organization to an enterprise; "she was the organizer of the meeting" -10383505 18 n 03 organizer 1 organiser 1 labor_organizer 0 004 @ 10738515 n 0000 + 00710005 v 0104 + 02434238 v 0103 ~i 10926429 n 0000 | someone who enlists workers to join a union -10383689 18 n 01 orientalist 0 003 @ 10631941 n 0000 + 06158185 n 0101 + 05168063 n 0101 | a specialist in oriental subjects -10383816 18 n 03 originator 0 conceiver 0 mastermind 0 008 @ 09614315 n 0000 + 00710005 v 0301 + 01633343 v 0202 + 01628449 v 0101 ~ 10107303 n 0000 ~ 10434725 n 0000 ~ 10484526 n 0000 ~ 10673451 n 0000 | someone who creates new things -10384054 18 n 01 Orleanist 0 001 @ 10327824 n 0000 | a supporter of the Orleans branch of the Bourbons that was descended from a younger brother of Louis XIV -10384214 18 n 02 ornithologist 0 bird_watcher 1 005 @ 10806222 n 0000 + 01139865 v 0202 + 06073494 n 0101 ~i 10828368 n 0000 ~i 11392082 n 0000 | a zoologist who studies birds -10384392 18 n 01 orphan 0 002 @ 09917593 n 0000 + 02315277 v 0101 | a child who has lost both parents -10384496 18 n 01 orphan 1 001 @ 00007846 n 0000 | someone or something who lacks support or care or supervision -10384610 18 n 01 orthodontist 0 002 @ 10004282 n 0000 + 06048552 n 0101 | a dentist specializing in the prevention or correction of irregularities of the teeth -10384772 18 n 01 Orthodox_Jew 0 004 @ 09681351 n 0000 #m 08094659 n 0000 ~ 10161695 n 0000 ~ 10275534 n 0000 | Jew who practices strict observance of Mosaic law -10384935 18 n 01 orthoepist 0 001 @ 10426630 n 0000 | a practitioner of orthoepy (especially one of the 17th or 18th century scholars who proposed to reform English spelling so it would reflect pronunciation more closely) -10385159 18 n 02 orthopedist 0 orthopaedist 0 003 @ 10632576 n 0000 + 06064106 n 0202 + 06064106 n 0101 | a specialist in correcting deformities of the skeletal system (especially in children) -10385354 18 n 01 orthoptist 0 002 @ 10632576 n 0000 + 00708957 n 0101 | a specialist in orthoptics -10385455 18 n 02 osteologist 0 osteologer 0 001 @ 09792237 n 0000 | an anatomist who is skilled is osteology -10385566 18 n 02 osteopath 0 osteopathist 0 002 @ 10707233 n 0000 + 00709205 n 0201 | a therapist who manipulates the skeleton and muscles -10385707 18 n 01 ostrich 0 001 @ 00007846 n 0000 | a person who refuses to face reality or recognize the truth (a reference to the popular notion that the ostrich hides from danger by burying its head in the sand) -10385923 18 n 01 Ostrogoth 0 001 @ 10139774 n 0000 | a member of the eastern group of Goths who created a kingdom in northern Italy around 500 AD -10386071 18 n 02 ouster 0 ejector 0 002 @ 00007846 n 0000 + 02401809 v 0101 | a person who ousts or supplants someone else -10386196 18 n 01 out-and-outer 0 002 @ 09617867 n 0000 ;u 07157273 n 0000 | someone who is excellent at something -10386312 18 n 04 outcast 0 castaway 2 pariah 0 Ishmael 1 005 @ 09630641 n 0000 + 02528440 a 0102 ~ 10171755 n 0000 ~ 10254585 n 0000 ~ 10739881 n 0000 | a person who is rejected (from society or home) -10386515 18 n 01 outcaste 0 002 @ 00007846 n 0000 + 02528566 a 0101 | a person belonging to no caste -10386618 18 n 01 outdoorsman 0 002 @ 00007846 n 0000 ~ 10386754 n 0000 | a person who spends time outdoors (e.g., hunting or fishing) -10386754 18 n 01 outdoorswoman 0 001 @ 10386618 n 0000 | a woman who spends time outdoors (e.g., hunting and fishing) -10386874 18 n 01 outfielder 1 001 @ 10086383 n 0000 | a fielder in cricket who is stationed in the outfield -10386984 18 n 01 outfielder 0 007 @ 10086568 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 + 03859717 n 0101 ~ 10387196 n 0000 ~ 10387476 n 0000 ~ 10387586 n 0000 | (baseball) a person who plays in the outfield -10387196 18 n 01 right_fielder 0 003 @ 10386984 n 0000 + 04091839 n 0101 + 00724898 n 0101 | the person who plays right field -10387324 18 n 02 right-handed_pitcher 0 right-hander 1 002 @ 10435988 n 0000 ;c 00471613 n 0000 | (baseball) a pitcher who throws with the right hand -10387476 18 n 02 center_fielder 0 centerfielder 0 001 @ 10386984 n 0000 | the person who plays center field -10387586 18 n 01 left_fielder 0 003 @ 10386984 n 0000 + 03654374 n 0101 + 00724433 n 0101 | the person who plays left field -10387712 18 n 01 outfitter 0 003 @ 10120816 n 0000 ;r 08860123 n 0000 + 02339413 v 0104 | someone who sells men's clothes -10387836 18 n 01 outlier 0 001 @ 10523519 n 0000 | a person who lives away from his place of work -10387936 18 n 01 outpatient 0 002 @ 10405694 n 0000 ! 10207681 n 0101 | a patient who does not reside in the hospital where he is being treated -10388082 18 n 01 outrider 0 001 @ 09863031 n 0000 | an escort who rides ahead (as a member of the vanguard) -10388192 18 n 01 outsider 1 001 @ 09613191 n 0000 | a contestant (human or animal) not considered to have a good chance to win -10388321 18 n 01 overachiever 0 001 @ 10665698 n 0000 | a student who attains higher standards than the IQ indicated -10388440 18 n 03 overlord 0 master 4 lord 1 006 @ 10541229 n 0000 + 05198036 n 0301 + 00595146 n 0201 + 02539334 v 0202 + 00595684 n 0101 ~ 10085736 n 0000 | a person who has general authority over others -10388647 18 n 01 overnighter 0 001 @ 10151133 n 0000 | a guest who stays overnight -10388732 18 n 02 overseer 0 superintendent 0 005 @ 10676877 n 0000 + 02443049 v 0203 + 02443049 v 0101 ~ 10506336 n 0000 ~ 10560247 n 0000 | a person who directs and manages an organization -10388924 18 n 02 owner 0 proprietor 0 018 @ 09882007 n 0000 ;c 08441203 n 0000 + 01109914 a 0201 + 13243780 n 0201 + 14479488 n 0101 + 13240514 n 0101 + 00809465 n 0102 + 02204692 v 0101 ~ 09866473 n 0000 ~ 10255096 n 0000 ~ 10255207 n 0000 ~ 10408324 n 0000 ~ 10458519 n 0000 ~ 10491575 n 0000 ~ 10520804 n 0000 ~ 10524869 n 0000 ~ 10548976 n 0000 ~ 10711253 n 0000 | (law) someone who owns (is legal possessor of) a business; "he is the owner of a chain of restaurants" -10389398 18 n 02 owner 2 possessor 0 011 @ 00007846 n 0000 + 02204692 v 0203 + 14479488 n 0101 + 13240514 n 0101 + 00809465 n 0102 + 02204692 v 0101 ~ 10180178 n 0000 ~ 10182499 n 0000 ~ 10402603 n 0000 ~ 10553627 n 0000 ~ 10590239 n 0000 | a person who owns something; "they are searching for the owner of the car"; "who is the owner of that friendly smile?" -10389760 18 n 01 owner-driver 0 001 @ 10034906 n 0000 | a motorist who owns the car that he/she drives -10389865 18 n 01 owner-occupier 0 001 @ 10523519 n 0000 | an occupant who owns the home that he/she lives in -10389976 18 n 01 oyabun 0 001 @ 10676877 n 0000 | a Japanese supervisor -10390050 18 n 01 pachuco 0 001 @ 09772029 n 0000 | a Mexican-American teenager who belongs to a neighborhood gang and who dresses in showy clothes -10390199 18 n 03 pacifist 0 pacificist 0 disarmer 0 006 @ 09605289 n 0000 + 01088005 v 0301 + 01741953 a 0101 + 05946406 n 0101 + 05965586 n 0101 ~ 10028123 n 0000 | someone opposed to violence as a means of settling disputes -10390427 18 n 03 packer 0 bagger 0 boxer 1 004 @ 10791221 n 0000 + 01485158 v 0301 + 01485839 v 0201 + 01482449 v 0101 | a workman employed to pack things into containers -10390600 18 n 01 packrat 0 001 @ 09936620 n 0000 | a collector of miscellaneous useless objects -10390698 18 n 01 padrone 1 001 @ 10054657 n 0000 | an employer who exploits Italian immigrants in the U.S. -10390807 18 n 01 padrone 0 001 @ 10186774 n 0000 | an owner or proprietor of an inn in Italy -10390902 18 n 01 pagan 1 003 @ 09628382 n 0000 + 01784401 a 0103 ~ 10780105 n 0000 | a person who follows a polytheistic or pre-Christian religion (not a Christian or Muslim or Jew) -10391086 18 n 02 page 1 varlet 1 001 @ 09821831 n 0000 | in medieval times a youth acting as a knight's attendant as the first stage in training for knighthood -10391248 18 n 01 page 2 002 @ 09821831 n 0000 + 02412513 v 0101 | a youthful attendant at official functions or ceremonies such as legislative functions and weddings -10391416 18 n 02 page 3 pageboy 0 001 @ 10311375 n 0000 | a boy who is employed to run errands -10391513 18 n 03 pain 0 pain_in_the_neck 0 nuisance 0 001 @ 09631463 n 0000 | a bothersome annoying person; "that kid is a terrible pain" -10391653 18 n 01 painter 0 117 @ 09812338 n 0000 + 00070288 a 0101 + 01684899 v 0101 + 01684663 v 0101 ~ 09758424 n 0000 ~ 09938672 n 0000 ~ 09982013 n 0000 ~ 09992746 n 0000 ~ 10018747 n 0000 ~ 10082423 n 0000 ~ 10123517 n 0000 ~ 10201956 n 0000 ~ 10246176 n 0000 ~ 10320106 n 0000 ~ 10338498 n 0000 ~ 10374762 n 0000 ~ 10375794 n 0000 ~ 10447924 n 0000 ~ 10455619 n 0000 ~ 10459414 n 0000 ~ 10509389 n 0000 ~ 10556401 n 0000 ~ 10770545 n 0000 ~i 10811708 n 0000 ~i 10842376 n 0000 ~i 10845926 n 0000 ~i 10852669 n 0000 ~i 10862999 n 0000 ~i 10889316 n 0000 ~i 10889533 n 0000 ~i 10896255 n 0000 ~i 10907851 n 0000 ~i 10910076 n 0000 ~i 10911948 n 0000 ~i 10913203 n 0000 ~i 10921218 n 0000 ~i 10923521 n 0000 ~i 10924072 n 0000 ~i 10924987 n 0000 ~i 10927687 n 0000 ~i 10928299 n 0000 ~i 10928498 n 0000 ~i 10931333 n 0000 ~i 10944468 n 0000 ~i 10960561 n 0000 ~i 10977159 n 0000 ~i 10984257 n 0000 ~i 10987044 n 0000 ~i 10992528 n 0000 ~i 10997553 n 0000 ~i 11009773 n 0000 ~i 11011559 n 0000 ~i 11017020 n 0000 ~i 11033992 n 0000 ~i 11055915 n 0000 ~i 11057548 n 0000 ~i 11071838 n 0000 ~i 11096338 n 0000 ~i 11101576 n 0000 ~i 11106170 n 0000 ~i 11106830 n 0000 ~i 11107635 n 0000 ~i 11107757 n 0000 ~i 11110396 n 0000 ~i 11120633 n 0000 ~i 11124961 n 0000 ~i 11131658 n 0000 ~i 11143044 n 0000 ~i 11149373 n 0000 ~i 11151436 n 0000 ~i 11153887 n 0000 ~i 11154857 n 0000 ~i 11158651 n 0000 ~i 11164505 n 0000 ~i 11180357 n 0000 ~i 11181835 n 0000 ~i 11183955 n 0000 ~i 11185392 n 0000 ~i 11192666 n 0000 ~i 11193645 n 0000 ~i 11193928 n 0000 ~i 11196208 n 0000 ~i 11197633 n 0000 ~i 11213216 n 0000 ~i 11224173 n 0000 ~i 11234951 n 0000 ~i 11241106 n 0000 ~i 11258769 n 0000 ~i 11272198 n 0000 ~i 11272972 n 0000 ~i 11281837 n 0000 ~i 11294202 n 0000 ~i 11295033 n 0000 ~i 11302962 n 0000 ~i 11309318 n 0000 ~i 11316003 n 0000 ~i 11322758 n 0000 ~i 11325265 n 0000 ~i 11331063 n 0000 ~i 11342191 n 0000 ~i 11344092 n 0000 ~i 11346391 n 0000 ~i 11350393 n 0000 ~i 11352883 n 0000 ~i 11358225 n 0000 ~i 11360022 n 0000 ~i 11361142 n 0000 ~i 11361288 n 0000 ~i 11366232 n 0000 ~i 11368240 n 0000 ~i 11369551 n 0000 ~i 11374448 n 0000 ~i 11378805 n 0000 ~i 11382112 n 0000 ~i 11383425 n 0000 ~i 11395466 n 0000 ~i 11400126 n 0000 | an artist who paints -10393909 18 n 01 painter 1 008 @ 10605985 n 0000 + 01362736 v 0101 ~ 09619605 n 0000 ~ 10189179 n 0000 ~ 10255348 n 0000 ~ 10556033 n 0000 ~ 10597642 n 0000 ~ 10657165 n 0000 | a worker who is employed to cover objects with paint -10394141 18 n 02 palatine 0 palsgrave 0 003 @ 10271677 n 0000 ;c 15259284 n 0000 + 02861483 a 0101 | (Middle Ages) the lord of a palatinate who exercised sovereign powers over his lands -10394329 18 n 01 palatine 1 001 @ 09717047 n 0000 | any of various important officials in ancient Rome -10394434 18 n 03 Paleo-American 0 Paleo-Amerind 0 Paleo-Indian 0 001 @ 09645091 n 0000 | a member of the Paleo-American peoples who were the earliest human inhabitants of North America and South America during the late Pleistocene epoch -10394673 18 n 02 paleographer 0 paleographist 0 001 @ 09804806 n 0000 | an archeologist skilled in paleography -10394786 18 n 03 paleontologist 0 palaeontologist 0 fossilist 0 010 @ 10560637 n 0000 + 09284589 n 0301 + 06073888 n 0202 + 06073888 n 0101 ~i 11009495 n 0000 ~i 11121640 n 0000 ~i 11121876 n 0000 ~i 11122114 n 0000 ~i 11218938 n 0000 ~i 11334609 n 0000 | a specialist in paleontology -10395073 18 n 02 pallbearer 0 bearer 1 002 @ 10335246 n 0000 + 01432601 v 0201 | one of the mourners carrying the coffin at a funeral -10395209 18 n 03 palmist 0 palmister 0 chiromancer 0 003 @ 10105462 n 0000 + 05777830 n 0303 + 02107817 v 0301 | fortuneteller who predicts your future by the lines on your palms -10395390 18 n 04 pamperer 0 spoiler 2 coddler 0 mollycoddler 0 005 @ 00007846 n 0000 + 02570267 v 0407 + 02570267 v 0306 + 02570267 v 0208 + 02570267 v 0101 | someone who pampers or spoils by excessive indulgence -10395605 18 n 01 pamphleteer 0 006 @ 10794014 n 0000 + 06413889 n 0105 + 06409290 n 0102 ~i 10928140 n 0000 ~i 11178781 n 0000 ~i 11220836 n 0000 | a writer of pamphlets (usually taking a partisan stand on public issues) -10395828 18 n 01 Panchen_Lama 0 001 @ 10243664 n 0000 | the lama next in rank to the Dalai Lama -10395926 18 n 01 panderer 1 002 @ 09831962 n 0000 + 01182293 v 0102 | a person who serves or caters to the vulgar passions or plans of others (especially in order to make money) -10396106 18 n 02 panelist 0 panellist 0 009 @ 09979321 n 0000 #m 08414381 n 0000 + 08414608 n 0201 + 08414807 n 0202 + 08414381 n 0201 + 08414608 n 0101 + 08414807 n 0102 + 08414381 n 0101 ~ 10228278 n 0000 | a member of a panel -10396337 18 n 01 panhandler 0 002 @ 09847010 n 0000 + 02270978 v 0101 | a beggar who approaches strangers asking for money -10396462 18 n 01 pansexual 0 001 @ 00007846 n 0000 | a person who participates in (or is open to) sexual activities of many kinds -10396594 18 n 01 pantheist 0 002 @ 09847727 n 0000 + 06224975 n 0101 | someone who believes that God and the universe are the same -10396727 18 n 01 paparazzo 0 001 @ 10426749 n 0000 | a freelance photographer who pursues celebrities trying to take candid photographs of them to sell to newspapers or magazines -10396908 18 n 01 paperboy 0 001 @ 10001217 n 0000 | a boy who sells or delivers newspapers -10397001 18 n 02 paperhanger 0 paperer 0 002 @ 09974648 n 0000 + 01268112 v 0202 | one whose occupation is decorating walls with wallpaper -10397142 18 n 01 paperhanger 1 002 @ 10105085 n 0000 ;u 07075172 n 0000 | someone who passes bad checks or counterfeit paper money -10397275 18 n 01 paper-pusher 0 002 @ 09880427 n 0000 @ 09928451 n 0000 | a clerk or bureaucrat who does paperwork -10397392 18 n 02 papoose 0 pappoose 0 001 @ 09827683 n 0000 | an American Indian infant -10397482 18 n 03 parachutist 0 parachuter 0 parachute_jumper 0 005 @ 10226993 n 0000 + 01968275 v 0202 + 03888257 n 0101 + 01968275 v 0102 ~ 10608188 n 0000 | a person who jumps from aircraft using a parachute -10397694 18 n 01 paragrapher 0 004 @ 10794014 n 0000 + 06399995 n 0101 + 01699700 v 0101 + 01699539 v 0101 | a writer of paragraphs (as for publication on the editorial page of a newspaper) -10397886 18 n 02 paralegal 0 legal_assistant 0 002 @ 10398624 n 0000 ;c 08441203 n 0000 | a person with specialized training who assists lawyers -10398033 18 n 01 paralytic 0 004 @ 10158756 n 0000 + 02545989 a 0101 ~ 10400003 n 0000 ~ 10630093 n 0000 | a person suffering from paralysis -10398176 18 n 02 paramedic 0 paramedical 0 003 @ 10398624 n 0000 + 02773862 a 0201 + 02773862 a 0101 | a person trained to assist medical professionals and to give emergency medical treatment -10398370 18 n 02 paranoid 0 paranoiac 0 002 @ 10490141 n 0000 + 02077157 a 0101 | a person afflicted with paranoia -10398487 18 n 01 paraplegic 0 002 @ 10158756 n 0000 + 02546116 a 0101 | a person who has paraplegia (is paralyzed from the waist down) -10398624 18 n 01 paraprofessional 0 003 @ 09815790 n 0000 ~ 10397886 n 0000 ~ 10398176 n 0000 | a trained worker who is not a member of a profession but who assists a professional -10398806 18 n 01 parapsychologist 0 003 @ 10488865 n 0000 + 07256375 n 0103 ~i 11258924 n 0000 | someone who studies the evidence for such psychological phenomena as psychokinesis and telepathy and clairvoyance -10399019 18 n 02 paratrooper 0 para 0 002 @ 10622053 n 0000 #m 08390374 n 0000 | a soldier in the paratroops -10399130 18 n 01 pardoner 0 003 @ 09928136 n 0000 + 00905399 v 0101 ~ 09755555 n 0000 | a medieval cleric who raised money for the church by selling papal indulgences -10399299 18 n 03 pardoner 1 forgiver 0 excuser 0 004 @ 00007846 n 0000 + 00893167 v 0301 + 00903385 v 0201 + 00905399 v 0101 | a person who pardons or forgives or excuses a fault or offense -10399491 18 n 01 parent 0 013 @ 10126708 n 0000 #m 07970406 n 0000 + 02884085 a 0101 + 01722529 a 0101 + 14425414 n 0101 + 02539788 v 0105 ! 09918248 n 0101 ~ 09772448 n 0000 ~ 10054975 n 0000 ~ 10080869 n 0000 ~ 10088101 n 0000 ~ 10332385 n 0000 ~ 10654932 n 0000 | a father or mother; one who begets or one who gives birth to or nurtures and raises a child; a relative who plays the role of guardian -10399895 18 n 01 parer 0 002 @ 10290919 n 0000 + 01262564 v 0101 | a manicurist who trims the fingernails -10400003 18 n 01 paretic 0 001 @ 10398033 n 0000 | a person afflicted with paresis (partial paralysis) -10400108 18 n 01 parishioner 0 002 @ 09922485 n 0000 #m 08223688 n 0000 | a member of a parish -10400205 18 n 01 park_commissioner 0 001 @ 09943811 n 0000 | a commissioner in charge of public parks -10400309 18 n 01 parliamentarian 0 002 @ 09617867 n 0000 ~i 11264002 n 0000 | an expert in parliamentary rules and procedures -10400437 18 n 02 Parliamentarian 1 Member_of_Parliament 0 002 @ 10253995 n 0000 #m 08162691 n 0000 | an elected member of the British Parliament: a member of the House of Commons -10400618 18 n 01 parliamentary_agent 0 002 @ 09777353 n 0000 ;r 08860123 n 0000 | a person who is employed to look after the affairs of businesses that are affected by legislation of the British Parliament -10400826 18 n 02 parlormaid 0 parlourmaid 0 001 @ 10282672 n 0000 | a maid in a private home whose duties are to care for the parlor and the table and to answer the door -10400998 18 n 02 parodist 0 lampooner 0 006 @ 10191943 n 0000 + 00852685 v 0203 + 06780309 n 0101 + 00549610 n 0101 + 00849939 v 0103 ~ 09896170 n 0000 | mimics literary or musical style for comic effect -10401204 18 n 01 parricide 0 003 @ 10338707 n 0000 ~ 10302816 n 0000 ~ 10407221 n 0000 | someone who kills his or her parent -10401331 18 n 01 parrot 0 002 @ 09964411 n 0000 + 00958174 v 0101 | a copycat who does not understand the words or acts being imitated -10401468 18 n 02 Parsee 0 Parsi 0 001 @ 09628382 n 0000 | a member of a monotheistic sect of Zoroastrian origin; descended from the Persians; now found in western India -10401639 18 n 02 partaker 0 sharer 0 005 @ 10401829 n 0000 + 02295208 v 0202 + 02294179 v 0201 + 02295208 v 0101 ~ 10453061 n 0000 | someone who has or gives or receives a part or a share -10401829 18 n 01 participant 0 010 @ 09816771 n 0000 + 01082606 v 0102 ~ 09608002 n 0000 ~ 09615336 n 0000 ~ 09874725 n 0000 ~ 10148035 n 0000 ~ 10297841 n 0000 ~ 10401639 n 0000 ~ 10440387 n 0000 ~ 10525785 n 0000 | someone who takes part in an activity -10402086 18 n 03 partisan 0 zealot 0 drumbeater 0 005 @ 09774783 n 0000 + 06201136 n 0102 ~ 09853645 n 0000 ~ 10023656 n 0000 ! 10361390 n 0101 | a fervent and even militant proponent of something -10402285 18 n 01 partitionist 0 003 @ 09774783 n 0000 + 00397953 n 0102 + 01563724 v 0101 | an advocate of partitioning a country -10402417 18 n 01 partner 2 006 @ 00007846 n 0000 #m 08060694 n 0000 + 08060694 n 0101 + 06526291 n 0101 ~ 09964064 n 0000 ~ 10598459 n 0000 | a person who is a member of a partnership -10402603 18 n 01 part-owner 0 001 @ 10389398 n 0000 | a person who owns something in common with others -10402709 18 n 01 part-timer 0 001 @ 09632518 n 0000 | someone who works less than the customary or standard time -10402824 18 n 01 party 0 013 @ 00007846 n 0000 ;c 08441203 n 0000 ~ 09815455 n 0000 ~ 09815677 n 0000 ~ 09960891 n 0000 ~ 10213034 n 0000 ~ 10219240 n 0000 ~ 10223606 n 0000 ~ 10266848 n 0000 ~ 10526795 n 0000 ~ 10529103 n 0000 ~ 10716286 n 0000 ~ 10760622 n 0000 | a person involved in legal proceedings; "the party of the first part" -10403162 18 n 03 party_boss 0 political_boss 0 boss 2 001 @ 10450303 n 0000 | a leader in a political party who controls votes and dictates appointments; "party bosses have a reputation for corruption" -10403366 18 n 01 party_girl 0 001 @ 10129825 n 0000 | an attractive young woman hired to attend parties and entertain men -10403490 18 n 01 partygoer 0 001 @ 09608002 n 0000 | someone who is attending a party; "the hall was crowded with an overflow of partygoers" -10403633 18 n 02 party_man 0 party_liner 0 001 @ 10450303 n 0000 | a member of a political party who follows strictly the party line -10403768 18 n 02 pasha 0 pacha 0 001 @ 09824609 n 0000 | a civil or military authority in Turkey or Egypt -10403876 18 n 02 passenger 0 rider 1 012 @ 09629752 n 0000 ;c 02858304 n 0000 ;c 02924116 n 0000 ;c 02958343 n 0000 ;c 02691156 n 0000 ;c 04468005 n 0000 + 01955984 v 0201 ~ 09945745 n 0000 ~ 10078643 n 0000 ~ 10178077 n 0000 ~ 10660471 n 0000 ~ 10661334 n 0000 | a traveler riding in a vehicle (a boat or bus or car or plane or train etc) who is not operating it -10404242 18 n 02 passer 0 forward_passer 0 003 @ 09834378 n 0000 ;c 00468480 n 0000 + 02231473 v 0101 | (football) a ball carrier who tries to gain ground by throwing a forward pass -10404426 18 n 01 passer 2 003 @ 10665698 n 0000 @ 10703692 n 0000 + 02525044 v 0101 | a student who passes an examination -10404550 18 n 01 passer 3 001 @ 00007846 n 0000 | a person who passes as a member of a different ethnic or racial group -10404672 18 n 03 passerby 0 passer-by 0 passer 1 002 @ 10412055 n 0000 + 02051694 v 0306 | a person who passes by casually or by chance -10404810 18 n 01 passive_source 0 001 @ 10205985 n 0000 | an informant who is not assigned to obtain specific intelligence but who routinely passes on whatever information he or she has -10404998 18 n 01 paster 0 003 @ 10791221 n 0000 + 01332599 v 0101 + 01332205 v 0102 | a workman who pastes -10405107 18 n 01 past_master 0 001 @ 09617867 n 0000 | someone who has long and thorough experience in a given activity -10405229 18 n 01 past_master 1 001 @ 10298482 n 0000 | someone who was formerly a master -10405320 18 n 01 pastry_cook 0 001 @ 09963574 n 0000 | a chef who specializes in pastry -10405410 18 n 01 patentee 0 003 @ 10214637 n 0000 + 02445356 v 0101 + 02239692 v 0101 | the inventor to whom a patent is issued -10405540 18 n 01 pater 0 001 @ 10080869 n 0000 | an informal use of the Latin word for father; sometimes used by British schoolboys or used facetiously -10405694 18 n 01 patient 0 014 @ 09898892 n 0000 @ 10595647 n 0000 #m 13837840 n 0000 #m 13838025 n 0000 ~ 09782855 n 0000 ~ 09790188 n 0000 ~ 09811568 n 0000 ~ 10195155 n 0000 ~ 10195487 n 0000 ~ 10195942 n 0000 ~ 10202854 n 0000 ~ 10207681 n 0000 ~ 10387936 n 0000 ~ 10744456 n 0000 | a person who requires medical care; "the number of emergency patients has grown rapidly" -10406072 18 n 01 patrial 0 002 @ 09700964 n 0000 ;r 08860123 n 0000 | a person who has the right to be considered legally a British citizen (by virtue of the birth of a parent or grandparent) -10406266 18 n 01 patriarch 4 002 @ 10375506 n 0000 + 02759765 a 0101 | a man who is older and higher in rank than yourself -10406391 18 n 01 patriarch 2 014 @ 10102800 n 0000 ~ 09795894 n 0000 ~ 10218390 n 0000 ~ 10599068 n 0000 ~i 10807487 n 0000 ~i 10845050 n 0000 ~i 11073586 n 0000 ~i 11074573 n 0000 ~i 11074870 n 0000 ~i 11091863 n 0000 ~i 11093469 n 0000 ~i 11177370 n 0000 ~i 11208431 n 0000 ~i 11258353 n 0000 | any of the early biblical characters regarded as fathers of the human race -10406765 18 n 02 patriarch 1 paterfamilias 0 003 @ 10287213 n 0000 @ 10164605 n 0000 + 01737825 a 0101 | the male head of family or tribe -10406905 18 n 01 patriarch 3 003 @ 09505153 n 0000 ~i 11204409 n 0000 ~i 11233934 n 0000 | title for the heads of the Eastern Orthodox Churches (in Istanbul and Alexandria and Moscow and Jerusalem) -10407105 18 n 01 patrician 1 002 @ 09605289 n 0000 + 01590484 a 0106 | a person of refined upbringing and manners -10407221 18 n 01 patricide 0 001 @ 10401204 n 0000 | a person who murders their father -10407310 18 n 02 patriot 0 nationalist 0 008 @ 09625401 n 0000 + 01568092 a 0201 + 04878101 n 0202 ~ 09911849 n 0000 ~i 10990963 n 0000 ~i 11007059 n 0000 ~i 11109728 n 0000 ~i 11167418 n 0000 | one who loves and defends his or her country -10407552 18 n 01 patroller 0 003 @ 10770059 n 0000 #m 08329113 n 0000 + 02454939 v 0101 | someone on patrol duty; an individual or a member of a group that patrols an area -10407726 18 n 02 patron 0 frequenter 0 009 @ 09984659 n 0000 + 02466134 v 0206 + 01844431 v 0201 + 02466134 v 0101 + 00908621 v 0101 + 02466134 v 0102 + 00908621 v 0102 ~ 10378213 n 0000 ~ 10517405 n 0000 | a regular customer -10407954 18 n 03 patron 1 sponsor 0 supporter 2 015 @ 09608709 n 0000 + 02556126 v 0301 + 00908621 v 0304 + 00895304 v 0302 + 01215036 n 0201 + 02220148 v 0201 + 02219940 v 0201 + 02219940 v 0102 + 02219940 v 0103 ~ 09793717 n 0000 ~ 10134627 n 0000 ~ 10134982 n 0000 ~ 10149527 n 0000 ~ 10408438 n 0000 ~ 10718794 n 0000 | someone who supports or champions something -10408324 18 n 01 patron 2 003 @ 10388924 n 0000 ;r 08929922 n 0000 ~ 10186774 n 0000 | the proprietor of an inn -10408438 18 n 02 patroness 0 patronne 0 001 @ 10407954 n 0000 | a woman who is a patron or the wife of a patron -10408552 18 n 01 patron_saint 0 008 @ 09614684 n 0000 @ 10547145 n 0000 ~i 10550673 n 0000 ~i 10897154 n 0000 ~i 10915373 n 0000 ~i 10924231 n 0000 ~i 10996285 n 0000 ~i 11225469 n 0000 | a saint who is considered to be a defender of some group or nation -10408809 18 n 01 patternmaker 0 001 @ 10284064 n 0000 | someone who makes patterns (as for sewing or carpentry or metalworking) -10408939 18 n 01 patzer 0 001 @ 09915834 n 0000 | a poor chess player -10409011 18 n 01 pauper 0 005 @ 10453357 n 0000 + 02317970 v 0102 ~ 09847010 n 0000 ~ 10006081 n 0000 ~ 10649724 n 0000 | a person who is very poor -10409161 18 n 01 pavement_artist 0 001 @ 10029068 n 0000 | someone who draws on the pavement with colored chalks (hoping that passers-by will give them money) -10409322 18 n 01 pawer 0 002 @ 09631463 n 0000 + 01211098 v 0101 | a person who handles or caresses in a clumsy or overfamiliar manner -10409459 18 n 01 pawnbroker 0 002 @ 10254392 n 0000 @ 10441534 n 0000 | a person who lends money at interest in exchange for personal property that is deposited as security -10409634 18 n 01 payee 0 003 @ 09627906 n 0000 + 02253456 v 0101 + 02251743 v 0101 | a person to whom money is paid -10409752 18 n 02 payer 0 remunerator 0 011 @ 09624980 n 0000 + 02249741 v 0203 + 02253154 v 0101 + 00737884 v 0101 + 02253456 v 0101 + 02251743 v 0101 ~ 10032342 n 0000 ~ 10410035 n 0000 ~ 10694163 n 0000 ~ 10700201 n 0000 ~ 10713012 n 0000 | a person who pays money for something -10410035 18 n 01 paymaster 0 001 @ 10409752 n 0000 | a person in charge of paying wages -10410125 18 n 01 peacekeeper 0 001 @ 09614684 n 0000 | someone who keeps peace; "she's the peacekeeper in that family" -10410246 18 n 01 peacekeeper 1 002 @ 10622053 n 0000 ;c 08199025 n 0000 | a member of a military force that is assigned (often with international sanction) to preserve peace in a trouble area -10410440 18 n 01 peanut 0 001 @ 09917593 n 0000 | a young child who is small for his age -10410531 18 n 02 pearl_diver 0 pearler 0 002 @ 10019552 n 0000 + 01383800 v 0201 | a diver who searches for molluscs containing pearls -10410668 18 n 03 peasant 0 provincial 0 bucolic 0 004 @ 10544232 n 0000 + 00595894 n 0101 ~ 09968741 n 0000 ~ 10342770 n 0000 | a country person -10410815 18 n 07 peasant 2 barbarian 1 boor 0 churl 0 Goth 1 tyke 2 tike 2 002 @ 09631463 n 0000 + 00412788 a 0201 | a crude uncouth ill-bred person lacking culture or refinement -10410996 18 n 01 peasant 3 004 @ 09779623 n 0000 #m 08182283 n 0000 + 00595894 n 0101 ~ 10083264 n 0000 | one of a (chiefly European) class of agricultural laborers -10411163 18 n 02 pedaler 0 pedaller 0 005 @ 10529965 n 0000 + 01935476 v 0204 + 01935476 v 0104 ~ 09986189 n 0000 ~ 10738111 n 0000 | a person who rides a pedal-driven vehicle (as a bicycle) -10411356 18 n 03 pedant 0 bookworm 1 scholastic 0 003 @ 10557854 n 0000 + 02083908 a 0103 ~ 10494037 n 0000 | a person who pays more attention to formal rules and book learning than they merit -10411551 18 n 05 peddler 0 pedlar 0 packman 0 hawker 0 pitchman 0 009 @ 10577284 n 0000 + 02302817 v 0404 + 02302817 v 0101 ~ 09908678 n 0000 ~ 09912598 n 0000 ~ 09977520 n 0000 ~ 10336904 n 0000 ~ 10550090 n 0000 ~ 10725438 n 0000 | someone who travels about selling his wares (as on the streets or at carnivals) -10411867 18 n 03 pederast 0 paederast 0 child_molester 0 003 @ 10419047 n 0000 + 01202367 a 0202 + 01202367 a 0101 | a man who has sex (usually sodomy) with a boy as the passive partner -10412055 18 n 03 pedestrian 0 walker 0 footer 0 023 @ 09629752 n 0000 + 01906322 v 0301 + 01912893 v 0201 + 01904930 v 0201 ~ 10176111 n 0000 ~ 10178917 n 0000 ~ 10220360 n 0000 ~ 10293332 n 0000 ~ 10361194 n 0000 ~ 10404672 n 0000 ~ 10416732 n 0000 ~ 10506220 n 0000 ~ 10553235 n 0000 ~ 10594408 n 0000 ~ 10645854 n 0000 ~ 10646528 n 0000 ~ 10646942 n 0000 ~ 10661865 n 0000 ~ 10667041 n 0000 ~ 10682038 n 0000 ~ 10731848 n 0000 ~ 10762064 n 0000 ~ 10771539 n 0000 | a person who travels by foot -10412554 18 n 01 pedodontist 0 001 @ 10004282 n 0000 | a dentist who specializes in the care of children's teeth -10412669 18 n 02 pedophile 0 paedophile 0 001 @ 10419047 n 0000 | an adult who is sexually attracted to children -10412784 18 n 01 peeler 1 002 @ 09632518 n 0000 + 01262936 v 0102 | a worker who peels the skins from fruits and vegetables -10412910 18 n 01 peer 1 013 @ 10271677 n 0000 #m 08388636 n 0000 ;r 08860123 n 0000 ~ 09840435 n 0000 ~ 10038620 n 0000 ~ 10041373 n 0000 ~ 10041539 n 0000 ~ 10260943 n 0000 ~ 10295371 n 0000 ~ 10413276 n 0000 ~ 10755815 n 0000 ~ 10755926 n 0000 ~i 10911687 n 0000 | a nobleman (duke or marquis or earl or viscount or baron) who is a member of the British peerage -10413276 18 n 01 peer_of_the_realm 0 003 @ 10412910 n 0000 #m 08162860 n 0000 ;r 08860123 n 0000 | a peer who is entitled to sit in the House of Lords -10413429 18 n 01 pelter 0 003 @ 10709529 n 0000 + 01507914 v 0101 + 01121320 v 0102 | a thrower of missiles; "the police were too busy to chase the pelters" -10413588 18 n 01 pendragon 0 001 @ 10164025 n 0000 | the supreme war chief of the ancient Britons -10413688 18 n 01 penetrator 0 002 @ 10213652 n 0000 + 01227675 v 0101 | an intruder who passes into or through (often by overcoming resistance) -10413834 18 n 01 penitent 0 004 @ 09628382 n 0000 ;c 08083599 n 0000 + 01743217 a 0101 ~ 10094320 n 0000 | (Roman Catholic Church) a person who repents for wrongdoing (a Roman Catholic may be admitted to penance under the direction of a confessor) -10414084 18 n 01 penny_pincher 0 001 @ 10178611 n 0000 | someone who is excessively careful with money (who pinches every penny before letting go of it) -10414239 18 n 01 penologist 0 002 @ 10619642 n 0000 + 06152460 n 0101 | a person who studies the theory and practice of prison management -10414379 18 n 02 pen_pal 0 pen-friend 0 001 @ 09966554 n 0000 | a person you come to know by frequent friendly correspondence -10414507 18 n 02 penpusher 0 pencil_pusher 0 001 @ 09928451 n 0000 | a clerk who does boring paperwork -10414612 18 n 02 pensioner 0 pensionary 1 004 @ 09850121 n 0000 + 02262601 v 0201 + 02262601 v 0101 ~ 10374943 n 0000 | the beneficiary of a pension fund -10414768 18 n 01 pentathlete 0 001 @ 09820263 n 0000 | an athlete who competes in a pentathlon -10414865 18 n 02 Pentecostal 0 Pentecostalist 0 004 @ 09679316 n 0000 #m 08087319 n 0000 + 06232298 n 0201 + 03098628 a 0101 | any member of a Pentecostal religious body -10415037 18 n 01 percussionist 0 006 @ 10340312 n 0000 + 08217557 n 0102 + 00545059 n 0101 ~ 09986450 n 0000 ~ 10036929 n 0000 ~ 10801697 n 0000 | a musician who plays percussion instruments -10415230 18 n 01 perfectionist 0 005 @ 09950457 n 0000 + 14459422 n 0101 + 05924519 n 0103 + 00260494 n 0101 + 04637722 n 0101 | a person who is displeased by anything that does not meet very high standards -10415439 18 n 01 perfecter 0 002 @ 10605985 n 0000 + 00473572 v 0101 | a skilled worker who perfects something; "although not the inventor he must be recognized as the perfecter of this technique" -10415638 18 n 02 performer 0 performing_artist 0 028 @ 09616922 n 0000 + 06157326 n 0201 + 01714208 v 0101 ~ 09765278 n 0000 ~ 09813126 n 0000 ~ 09843824 n 0000 ~ 09940146 n 0000 ~ 09973072 n 0000 ~ 09989502 n 0000 ~ 10069296 n 0000 ~ 10091450 n 0000 ~ 10091997 n 0000 ~ 10123615 n 0000 ~ 10163723 n 0000 ~ 10226413 n 0000 ~ 10280674 n 0000 ~ 10321474 n 0000 ~ 10329035 n 0000 ~ 10340312 n 0000 ~ 10493685 n 0000 ~ 10554024 n 0000 ~ 10596517 n 0000 ~ 10615584 n 0000 ~ 10660883 n 0000 ~ 10664340 n 0000 ~ 10665190 n 0000 ~ 10746799 n 0000 ~ 10747815 n 0000 | an entertainer who performs a dramatic or musical work for an audience -10416270 18 n 01 perfumer 0 001 @ 10284064 n 0000 | a person who makes (and sells) perfumes -10416364 18 n 01 peri 0 001 @ 10129825 n 0000 | a beautiful and graceful girl -10416444 18 n 01 perinatologist 0 002 @ 10369699 n 0000 + 06053982 n 0101 | an obstetrician specializing in perinatology -10416567 18 n 01 periodontist 0 002 @ 10004282 n 0000 + 06048851 n 0101 | a dentist specializing in diseases of the gums and other structure surrounding the teeth -10416732 18 n 01 peripatetic 0 001 @ 10412055 n 0000 | a person who walks from place to place -10416828 18 n 01 perisher 0 002 @ 09886220 n 0000 ;r 08831004 n 0000 | bounder -10416909 18 n 02 perjurer 0 false_witness 0 002 @ 10256537 n 0000 + 00834745 v 0101 | a person who deliberately gives false testimony -10417045 18 n 02 peroxide_blond 0 peroxide_blonde 0 001 @ 09860506 n 0000 | a blond whose hair is bleached with peroxide -10417168 18 n 02 perpetrator 0 culprit 0 002 @ 09633969 n 0000 + 02582615 v 0101 | someone who perpetrates wrongdoing -10417288 18 n 01 peshmerga 0 001 @ 09719430 n 0000 | a member of a Kurdish guerilla organization that fights for a free Kurdish state -10417424 18 n 01 personality 0 001 @ 09903153 n 0000 | a person of considerable prominence; "she is a Hollywood personality" -10417551 18 n 01 personal_representative 0 002 @ 10522035 n 0000 ~ 10253296 n 0000 | a person who manages the affairs of another -10417682 18 n 01 personage 0 001 @ 00007846 n 0000 | another word for person; a person not meriting identification; "a strange personage appeared at the door" -10417843 18 n 01 persona_grata 0 001 @ 10013927 n 0000 | a diplomat who is acceptable to the government to which he is sent -10417969 18 n 01 persona_non_grata 1 001 @ 10013927 n 0000 | a diplomat who is unacceptable to the government to which he is sent -10418101 18 n 01 personification 0 004 @ 00007846 n 0000 + 02698944 v 0102 ~ 10418302 n 0000 ~ 10500217 n 0000 | a person who represents an abstract quality; "she is the personification of optimism" -10418302 18 n 03 embodiment 0 incarnation 0 avatar 2 005 @ 10418101 n 0000 + 02698443 v 0201 + 01645157 v 0201 ~ 10418577 n 0000 ~ 10518003 n 0000 | a new personification of a familiar idea; "the embodiment of hope"; "the incarnation of evil"; "the very avatar of cunning" -10418577 18 n 01 deification 0 002 @ 10418302 n 0000 + 00693401 v 0101 | an embodiment of the qualities of a god; "the capitalists' deification of capital" -10418735 18 n 02 perspirer 0 sweater 0 002 @ 00007846 n 0000 + 00067545 v 0201 | a person who perspires -10418841 18 n 02 persuader 0 inducer 0 006 @ 09610660 n 0000 + 00770437 v 0201 + 00766418 v 0101 ~ 10268629 n 0000 ~ 10681891 n 0000 ~ 10775379 n 0000 | someone who tries to persuade or induce or lead on -10419047 18 n 04 pervert 0 deviant 0 deviate 0 degenerate 0 015 @ 10522324 n 0000 + 01549568 a 0402 + 02661252 v 0301 + 01596122 a 0202 + 02661252 v 0201 + 02579447 v 0102 ~ 10085548 n 0000 ~ 10297367 n 0000 ~ 10368798 n 0000 ~ 10411867 n 0000 ~ 10412669 n 0000 ~ 10545792 n 0000 ~ 10545940 n 0000 ~ 10552980 n 0000 ~ 10621514 n 0000 | a person whose behavior deviates from what is acceptable especially in sexual behavior -10419472 18 n 01 pessimist 0 005 @ 10604634 n 0000 + 07543033 n 0101 + 05211974 n 0101 ! 10380126 n 0101 ~ 09999795 n 0000 | a person who expects the worst -10419630 18 n 05 pest 0 blighter 0 cuss 0 pesterer 0 gadfly 0 003 @ 10716005 n 0000 + 01803380 v 0403 ~ 10365846 n 0000 | a persistently annoying person -10419785 18 n 01 Peter_Pan 1 001 @ 10287213 n 0000 | a boyish or immature man; after the boy in Barrie's play who never grows up -10419916 18 n 01 petit_bourgeois 0 002 @ 09869830 n 0000 #m 08182105 n 0000 | a member of the lower middle class -10420031 18 n 04 petitioner 0 suppliant 0 supplicant 0 requester 0 006 @ 09607280 n 0000 + 00758627 v 0301 + 00758627 v 0201 ~ 09851087 n 0000 ~ 10459882 n 0000 ~ 10623354 n 0000 | one praying humbly for something; "a suppliant for her favors" -10420277 18 n 02 petit_juror 0 petty_juror 0 002 @ 10228278 n 0000 #m 08415272 n 0000 | a member of a petit jury -10420392 18 n 02 petroleum_geologist 0 oil_geologist 0 001 @ 10127689 n 0000 | a specialist in petroleum geology -10420507 18 n 02 pet_sitter 0 critter_sitter 0 001 @ 09984298 n 0000 | someone left in charge of pets while their owners are away from home -10420649 18 n 02 petter 0 fondler 0 002 @ 09622302 n 0000 + 01226600 v 0101 | a lover who gently fondles and caresses the loved one; "they are heavy petters" -10420809 18 n 03 petty_officer 0 PO 0 P.O. 0 003 @ 10360747 n 0000 ~ 10299125 n 0000 ~ 10579176 n 0000 | a noncommissioned officer in the Navy or Coast Guard with a rank comparable to sergeant in the Army -10421016 18 n 02 Pharaoh 0 Pharaoh_of_Egypt 0 004 @ 10541229 n 0000 + 02776813 a 0101 ~ 09915434 n 0000 ~i 11353847 n 0000 | the title of the ancient Egyptian kings -10421183 18 n 01 Pharisee 0 002 @ 09681351 n 0000 ~i 11092292 n 0000 | a member of an ancient Jewish sect noted for strict obedience to Jewish traditions -10421339 18 n 01 pharisee 1 003 @ 09631463 n 0000 + 01782100 a 0104 + 01782100 a 0105 | a self-righteous or sanctimonious person -10421470 18 n 06 pharmacist 0 druggist 0 chemist 1 apothecary 0 pill_pusher 0 pill_roller 0 006 @ 10165109 n 0000 + 06084469 n 0301 + 03247620 n 0201 + 03098803 a 0102 + 06055300 n 0101 ~ 10421753 n 0000 | a health professional trained in the art of preparing and dispensing drugs -10421753 18 n 02 pharmacologist 0 pharmaceutical_chemist 0 003 @ 10421470 n 0000 + 06054892 n 0101 ~i 11137506 n 0000 | someone trained in the science of drugs (their composition and uses and effects) -10421956 18 n 02 philanthropist 0 altruist 0 017 @ 10025730 n 0000 + 00101609 a 0201 + 04833276 n 0201 + 01089483 n 0101 ~i 10882988 n 0000 ~i 10909471 n 0000 ~i 10911288 n 0000 ~i 11019073 n 0000 ~i 11033159 n 0000 ~i 11046457 n 0000 ~i 11059875 n 0000 ~i 11172609 n 0000 ~i 11208688 n 0000 ~i 11210383 n 0000 ~i 11267113 n 0000 ~i 11359187 n 0000 ~i 11401617 n 0000 | someone who makes charitable donations intended to increase human well-being -10422405 18 n 02 philatelist 0 stamp_collector 0 002 @ 09936620 n 0000 + 01016420 n 0101 | a collector and student of postage stamps -10422540 18 n 03 philhellene 0 philhellenist 0 Graecophile 0 006 @ 10677713 n 0000 + 03133141 a 0303 + 03133141 a 0304 + 07501194 n 0201 + 03133141 a 0102 + 03133141 a 0101 | an admirer of Greece and everything Greek -10422759 18 n 01 Philippian 0 001 @ 09721444 n 0000 | a native or inhabitant of Philippi in ancient Macedonia -10422871 18 n 01 Philistine 0 002 @ 09620078 n 0000 + 03099392 a 0101 | a member of an Aegean people who settled ancient Philistia around the 12th century BC -10423031 18 n 03 philistine 1 anti-intellectual 0 lowbrow 0 004 @ 10441251 n 0000 + 01334075 a 0301 + 01333886 a 0201 + 01333886 a 0102 | a person who is uninterested in intellectual pursuits -10423225 18 n 02 philologist 0 philologue 0 010 @ 10191192 n 0000 + 06171040 n 0102 ~i 10986272 n 0000 ~i 11066209 n 0000 ~i 11195452 n 0000 ~i 11197099 n 0000 ~i 11254213 n 0000 ~i 11304354 n 0000 ~i 11345181 n 0000 ~i 11363552 n 0000 | a humanist specializing in classical scholarship -10423514 18 n 01 philomath 0 001 @ 10557854 n 0000 | a lover of learning -10423589 18 n 01 philosopher 0 122 @ 10557854 n 0000 ;c 06158346 n 0000 + 02858231 a 0101 + 06158346 n 0101 ~ 09625676 n 0000 ~ 09986700 n 0000 ~ 10043024 n 0000 ~ 10053591 n 0000 ~ 10062385 n 0000 ~ 10064669 n 0000 ~ 10065066 n 0000 ~ 10071557 n 0000 ~ 10153724 n 0000 ~ 10257402 n 0000 ~ 10304783 n 0000 ~ 10330931 n 0000 ~ 10346955 n 0000 ~ 10350896 n 0000 ~ 10359988 n 0000 ~ 10443659 n 0000 ~ 10469511 n 0000 ~ 10509161 n 0000 ~ 10558896 n 0000 ~ 10625099 n 0000 ~ 10658676 n 0000 ~ 10723873 n 0000 ~ 10803978 n 0000 ~i 10807317 n 0000 ~i 10816424 n 0000 ~i 10816644 n 0000 ~i 10816890 n 0000 ~i 10821699 n 0000 ~i 10822338 n 0000 ~i 10829450 n 0000 ~i 10829733 n 0000 ~i 10830456 n 0000 ~i 10845603 n 0000 ~i 10846504 n 0000 ~i 10847125 n 0000 ~i 10854777 n 0000 ~i 10868738 n 0000 ~i 10869683 n 0000 ~i 10886558 n 0000 ~i 10900366 n 0000 ~i 10906234 n 0000 ~i 10906638 n 0000 ~i 10906822 n 0000 ~i 10930296 n 0000 ~i 10931452 n 0000 ~i 10931854 n 0000 ~i 10932898 n 0000 ~i 10934758 n 0000 ~i 10936279 n 0000 ~i 10958703 n 0000 ~i 10959374 n 0000 ~i 10959479 n 0000 ~i 11021667 n 0000 ~i 11033003 n 0000 ~i 11038084 n 0000 ~i 11044295 n 0000 ~i 11044517 n 0000 ~i 11044789 n 0000 ~i 11052955 n 0000 ~i 11066425 n 0000 ~i 11068630 n 0000 ~i 11070387 n 0000 ~i 11079392 n 0000 ~i 11096508 n 0000 ~i 11104676 n 0000 ~i 11117307 n 0000 ~i 11125193 n 0000 ~i 11136798 n 0000 ~i 11144068 n 0000 ~i 11145085 n 0000 ~i 11147533 n 0000 ~i 11147729 n 0000 ~i 11149995 n 0000 ~i 11151322 n 0000 ~i 11156333 n 0000 ~i 11160457 n 0000 ~i 11170123 n 0000 ~i 11179287 n 0000 ~i 11179502 n 0000 ~i 11186911 n 0000 ~i 11189709 n 0000 ~i 11207125 n 0000 ~i 11211517 n 0000 ~i 11216562 n 0000 ~i 11217312 n 0000 ~i 11223642 n 0000 ~i 11224419 n 0000 ~i 11228298 n 0000 ~i 11230669 n 0000 ~i 11239271 n 0000 ~i 11239989 n 0000 ~ 11242849 n 0000 ~i 11250056 n 0000 ~i 11250991 n 0000 ~i 11251995 n 0000 ~i 11257547 n 0000 ~i 11272689 n 0000 ~i 11274812 n 0000 ~i 11286354 n 0000 ~i 11287964 n 0000 ~i 11292391 n 0000 ~i 11307422 n 0000 ~i 11310321 n 0000 ~i 11310679 n 0000 ~i 11311450 n 0000 ~i 11315249 n 0000 ~i 11318039 n 0000 ~i 11329030 n 0000 ~i 11334609 n 0000 ~i 11337331 n 0000 ~i 11338484 n 0000 ~i 11379812 n 0000 ~i 11384566 n 0000 ~i 11390170 n 0000 ~i 11393828 n 0000 ~i 11401194 n 0000 ~i 11405684 n 0000 ~i 11405826 n 0000 | a specialist in philosophy -10425946 18 n 01 philosopher 1 006 @ 00007846 n 0000 + 00858053 a 0102 + 05944686 n 0101 + 05943300 n 0102 + 06158346 n 0101 + 00858053 a 0101 | a wise person who is calm and rational; someone who lives a life of reason with equanimity -10426184 18 n 02 philosophizer 0 philosophiser 0 003 @ 10708454 n 0000 + 00630026 v 0202 + 00630026 v 0101 | someone who considers situations from a philosophical point of view -10426363 18 n 01 phlebotomist 0 001 @ 10605985 n 0000 | someone who practices phlebotomy -10426454 18 n 01 phonetician 0 006 @ 10264437 n 0000 + 06177033 n 0101 ~ 10724132 n 0000 ~i 10842575 n 0000 ~i 11090136 n 0000 ~i 11326730 n 0000 | a specialist in phonetics -10426630 18 n 01 phonologist 0 003 @ 10264437 n 0000 + 06177450 n 0101 ~ 10384935 n 0000 | a specialist in phonology -10426749 18 n 02 photographer 0 lensman 0 014 @ 09812338 n 0000 + 00620554 n 0101 + 00903559 n 0101 + 01003249 v 0101 ~ 09889539 n 0000 ~ 10396727 n 0000 ~ 10469874 n 0000 ~i 10861535 n 0000 ~i 10955282 n 0000 ~i 11116466 n 0000 ~i 11314514 n 0000 ~i 11318348 n 0000 ~i 11329281 n 0000 ~i 11382688 n 0000 | someone who takes photographs professionally -10427103 18 n 01 photographer's_model 0 002 @ 10324560 n 0000 ~ 09972458 n 0000 | a model who poses for photographers -10427223 18 n 01 photojournalist 0 001 @ 10224578 n 0000 | a journalist who presents a story primarily through the use of photographs -10427359 18 n 02 photometrist 0 photometrician 0 001 @ 10304383 n 0000 | someone who practices photometry -10427467 18 n 02 phrenologist 0 craniologist 0 003 @ 10334782 n 0000 + 06041805 n 0201 + 06045847 n 0101 | someone who claims to be able to read your character from the shape of your skull -10427658 18 n 01 Phrygian 0 002 @ 09620078 n 0000 ~ 09938851 n 0000 | a native or inhabitant of Phrygia -10427764 18 n 02 physical_therapist 0 physiotherapist 0 004 @ 10707233 n 0000 + 00700000 n 0202 + 00700000 n 0101 ~ 10297983 n 0000 | therapist who treats injury or dysfunction with exercises and other physical treatments of the disorder -10428004 18 n 01 physicist 0 100 @ 10560637 n 0000 ;c 06090869 n 0000 + 06090869 n 0101 ~ 09763668 n 0000 ~ 09818343 n 0000 ~ 09856267 n 0000 ~ 10364643 n 0000 ~i 10813986 n 0000 ~i 10817717 n 0000 ~i 10820613 n 0000 ~i 10821514 n 0000 ~i 10824352 n 0000 ~i 10830046 n 0000 ~i 10834543 n 0000 ~i 10840563 n 0000 ~i 10848641 n 0000 ~i 10855834 n 0000 ~i 10865140 n 0000 ~i 10883380 n 0000 ~i 10888401 n 0000 ~i 10892218 n 0000 ~i 10912802 n 0000 ~i 10916505 n 0000 ~i 10917999 n 0000 ~i 10921324 n 0000 ~i 10932696 n 0000 ~i 10940315 n 0000 ~i 10954498 n 0000 ~i 10960922 n 0000 ~i 10965151 n 0000 ~i 10966318 n 0000 ~i 10968058 n 0000 ~i 10976004 n 0000 ~i 10976468 n 0000 ~i 10978422 n 0000 ~i 10981961 n 0000 ~i 10984589 n 0000 ~i 10986562 n 0000 ~i 10989099 n 0000 ~i 10993098 n 0000 ~i 10993507 n 0000 ~i 10999410 n 0000 ~i 11002895 n 0000 ~i 11034874 n 0000 ~i 11037495 n 0000 ~i 11039344 n 0000 ~i 11040240 n 0000 ~i 11046934 n 0000 ~i 11047521 n 0000 ~i 11070218 n 0000 ~i 11088969 n 0000 ~i 11089318 n 0000 ~i 11092740 n 0000 ~i 11097525 n 0000 ~i 11100260 n 0000 ~i 11105945 n 0000 ~i 11115785 n 0000 ~i 11125957 n 0000 ~i 11134466 n 0000 ~i 11136973 n 0000 ~i 11138301 n 0000 ~i 11147533 n 0000 ~i 11166504 n 0000 ~i 11171409 n 0000 ~i 11178393 n 0000 ~i 11180476 n 0000 ~i 11202581 n 0000 ~i 11203287 n 0000 ~i 11205375 n 0000 ~i 11212426 n 0000 ~i 11213094 n 0000 ~i 11236188 n 0000 ~i 11238906 n 0000 ~i 11244887 n 0000 ~i 11246718 n 0000 ~i 11255211 n 0000 ~i 11255619 n 0000 ~i 11268326 n 0000 ~i 11276285 n 0000 ~i 11298810 n 0000 ~i 11339669 n 0000 ~i 11340146 n 0000 ~i 11340411 n 0000 ~i 11346110 n 0000 ~ 11346873 n 0000 ~i 11354743 n 0000 ~i 11358374 n 0000 ~i 11359037 n 0000 ~i 11359412 n 0000 ~i 11360175 n 0000 ~i 11368368 n 0000 ~i 11378929 n 0000 ~i 11380035 n 0000 ~i 11383100 n 0000 ~i 11391915 n 0000 ~i 11394954 n 0000 ~i 11402120 n 0000 ~i 11403828 n 0000 ~i 11405437 n 0000 ~i 11408414 n 0000 | a scientist trained in physics -10429965 18 n 01 physiologist 0 027 @ 09855630 n 0000 + 06080522 n 0101 + 05005064 n 0101 ~i 10808886 n 0000 ~i 10833805 n 0000 ~i 10847793 n 0000 ~i 10850049 n 0000 ~i 10947922 n 0000 ~i 10954819 n 0000 ~i 10988887 n 0000 ~i 11022848 n 0000 ~i 11039344 n 0000 ~i 11047961 n 0000 ~i 11052843 n 0000 ~i 11053559 n 0000 ~i 11069974 n 0000 ~i 11137175 n 0000 ~i 11148259 n 0000 ~i 11195771 n 0000 ~i 11227206 n 0000 ~i 11235263 n 0000 ~i 11248777 n 0000 ~i 11284541 n 0000 ~i 11287734 n 0000 ~i 11298240 n 0000 ~i 11309449 n 0000 ~i 11378254 n 0000 | a biologist specializing in physiology -10430554 18 n 01 phytochemist 0 001 @ 09913824 n 0000 | a chemist who specializes in the chemistry of plants -10430665 18 n 02 pianist 0 piano_player 0 020 @ 10340312 n 0000 + 03928116 n 0101 ~i 10837258 n 0000 ~i 10853244 n 0000 ~i 10896644 n 0000 ~i 10920366 n 0000 ~i 10965836 n 0000 ~i 11048109 n 0000 ~i 11060937 n 0000 ~i 11131358 n 0000 ~i 11135236 n 0000 ~i 11219635 n 0000 ~i 11244419 n 0000 ~i 11251531 n 0000 ~i 11273286 n 0000 ~i 11273479 n 0000 ~i 11278351 n 0000 ~i 11285456 n 0000 ~i 11287186 n 0000 ~i 11293334 n 0000 | a person who plays the piano -10431122 18 n 01 piano_maker 0 002 @ 10284064 n 0000 ~i 11315760 n 0000 | a person who makes pianos -10431224 18 n 01 piano_teacher 0 001 @ 10341343 n 0000 | someone who teaches students to play the piano -10431330 18 n 03 pickaninny 0 piccaninny 0 picaninny 0 004 @ 09636339 n 0000 @ 09917593 n 0000 ;u 06718862 n 0000 ;u 06717170 n 0000 | (ethnic slur) offensive term for a Black child -10431514 18 n 01 picker 0 002 @ 10079399 n 0000 + 01382083 v 0101 | someone who gathers crops or fruits etc. -10431625 18 n 03 picker 1 chooser 0 selector 0 003 @ 00007846 n 0000 + 00674607 v 0303 + 00676450 v 0101 | a person who chooses or selects out -10431770 18 n 01 picket 0 002 @ 10002760 n 0000 + 02522153 v 0101 | a protester posted by a labor organization outside a place of work -10431907 18 n 03 pickpocket 0 cutpurse 0 dip 0 001 @ 10707804 n 0000 | a thief who steals from the pockets or purses of others in public places -10432053 18 n 01 pickup 0 002 @ 09763784 n 0000 + 02486534 v 0101 | a casual acquaintance; often made in hope of sexual relationships -10432189 18 n 02 picnicker 0 picknicker 0 003 @ 10042300 n 0000 + 01168259 v 0201 + 01168259 v 0101 | a person who is picnicking -10432320 18 n 01 pied_piper 1 001 @ 09623038 n 0000 | a leader who entices people to follow (especially to their doom) -10432441 18 n 01 pilgrim 0 001 @ 10771392 n 0000 | someone who journeys in foreign lands -10432532 18 n 01 pilgrim 1 002 @ 09847727 n 0000 ~ 10156284 n 0000 | someone who journeys to a sacred place as an act of religious devotion -10432674 18 n 02 Pilgrim 2 Pilgrim_Father 0 001 @ 10583387 n 0000 | one of the colonists from England who sailed to America on the Mayflower and founded the colony of Plymouth in New England in 1620 -10432875 18 n 01 pill 0 001 @ 09631463 n 0000 | a unpleasant or tiresome person -10432957 18 n 02 pillar 0 mainstay 0 001 @ 10677713 n 0000 | a prominent supporter; "he is a pillar of the community" -10433077 18 n 01 pill_head 0 001 @ 10162780 n 0000 | a consumer of amphetamine pills -10433164 18 n 02 pilot 0 airplane_pilot 0 010 @ 09826204 n 0000 ;c 02686568 n 0000 + 01941093 v 0103 ~ 09839860 n 0000 ~ 09892693 n 0000 ~ 09939827 n 0000 ~ 09964202 n 0000 ~ 10229193 n 0000 ~ 10704098 n 0000 ~ 10782632 n 0000 | someone who is licensed to operate an aircraft in flight -10433452 18 n 01 pilot 1 002 @ 10294602 n 0000 + 01933305 v 0102 | a person qualified to guide ships through difficult waters going into or out of a harbor -10433610 18 n 02 Piltdown_man 0 Piltdown_hoax 0 001 @ 09627462 n 0000 | a supposedly primitive man later proven to be a hoax -10433737 18 n 07 pimp 0 procurer 0 panderer 0 pander 0 pandar 0 fancy_man 0 ponce 0 008 @ 09633969 n 0000 ;r 08871007 n 0000 + 01180975 v 0401 + 01180975 v 0301 + 01180975 v 0203 + 01180975 v 0102 ~ 10479493 n 0000 ~ 10779897 n 0000 | someone who procures customers for whores (in England they call a pimp a ponce) -10434054 18 n 01 pinchgut 0 001 @ 10357737 n 0000 | a niggardly person who starves himself (and others) -10434160 18 n 01 pinch_hitter 0 004 @ 10671042 n 0000 @ 09843956 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 | (baseball) a substitute for the regular batter -10434321 18 n 02 pinko 0 pink 0 001 @ 10619176 n 0000 | a person with mildly leftist political views -10434424 18 n 01 pioneer 0 007 @ 10583387 n 0000 + 00649757 v 0101 ~ 09881519 n 0000 ~ 10113072 n 0000 ~ 10113249 n 0000 ~i 10859857 n 0000 ~i 10890868 n 0000 | one the first colonists or settlers in a new territory; "they went west as pioneers with only the possessions they could carry with them" -10434725 18 n 04 pioneer 1 innovator 0 trailblazer 1 groundbreaker 0 004 @ 10383816 n 0000 + 01642437 v 0202 + 01641914 v 0102 + 01645421 v 0101 | someone who helps to open up a new line of research or technology or art -10434947 18 n 01 pipe_major 0 001 @ 10435041 n 0000 | the chief piper in a band of bagpipes -10435041 18 n 02 piper 0 bagpiper 0 003 @ 10340312 n 0000 + 01727684 v 0101 ~ 10434947 n 0000 | someone who plays the bagpipe -10435169 18 n 01 pipe_smoker 0 001 @ 10614976 n 0000 | a smoker who uses a pipe -10435251 18 n 03 pip-squeak 0 squirt 0 small_fry 0 001 @ 09923418 n 0000 | someone who is small and insignificant -10435367 18 n 04 pirate 0 buccaneer 0 sea_robber 0 sea_rover 0 009 @ 10443170 n 0000 + 02616012 v 0201 + 03100026 a 0101 ~ 09966941 n 0000 ~ 10567096 n 0000 ~i 11114423 n 0000 ~i 11190774 n 0000 ~i 11264193 n 0000 ~i 11334003 n 0000 | someone who robs at sea or plunders the land from the sea without having a commission from any sovereign nation -10435716 18 n 02 pisser 0 urinator 0 004 @ 00007846 n 0000 + 00072012 v 0202 + 00072012 v 0106 ~ 09846586 n 0000 | a person who urinates -10435855 18 n 01 pistoleer 0 002 @ 10622053 n 0000 + 03948459 n 0101 | someone armed with a pistol (especially a soldier so armed) -10435988 18 n 03 pitcher 0 hurler 0 twirler 0 012 @ 10709529 n 0000 @ 09835506 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 + 02048891 v 0301 + 01507143 v 0201 + 01509079 v 0102 ~ 10252921 n 0000 ~ 10387324 n 0000 ~ 10518194 n 0000 ~ 10564541 n 0000 ~ 10649574 n 0000 | (baseball) the person who does the pitching; "our pitcher has a sore arm" -10436334 18 n 01 pitchman 1 001 @ 10548537 n 0000 | an aggressive salesman who uses a fast line of talk to sell something -10436458 18 n 03 pituitary_dwarf 0 hypophysial_dwarf 0 Levi-Lorrain_dwarf 0 001 @ 10040344 n 0000 | a dwarf whose condition is caused by a deficiency of growth hormones, rather than by genetic factors (as in the case of the achondroplastic dwarf) -10436707 18 n 02 pivot 0 pivot_man 0 002 @ 10293332 n 0000 + 00656507 a 0101 | the person in a rank around whom the others wheel and maneuver -10436851 18 n 02 place-kicker 0 placekicker 0 003 @ 10230580 n 0000 ;c 00468480 n 0000 + 01371044 v 0101 | (football) a kicker who makes a place kick for a goal -10437014 18 n 02 placeman 0 placeseeker 0 002 @ 09800964 n 0000 ;r 08860123 n 0000 | a disparaging term for an appointee -10437137 18 n 01 placer_miner 0 001 @ 10319796 n 0000 | a miner who extracts minerals from a placer by washing or dredging -10437262 18 n 05 plagiarist 0 plagiarizer 0 plagiariser 0 literary_pirate 0 pirate 1 009 @ 10707804 n 0000 + 03100026 a 0501 + 02277897 v 0501 + 02278061 v 0302 + 02278061 v 0201 + 07277158 n 0101 + 00750405 n 0101 + 02278061 v 0101 + 02278061 v 0102 | someone who uses another person's words or ideas as if they were his own -10437590 18 n 01 plainclothesman 0 001 @ 10009276 n 0000 | a detective who wears civilian clothes on duty -10437698 18 n 01 plainsman 0 002 @ 09620078 n 0000 ;r 09372504 n 0000 | an inhabitant of a plains region (especially the Great Plains of North America) -10437852 18 n 02 plaintiff 0 complainant 0 005 @ 10266848 n 0000 ;c 08441203 n 0000 + 00844298 v 0201 ! 09762101 n 0101 ~ 10672192 n 0000 | a person who brings an action in a court of law -10438042 18 n 01 plaiter 0 003 @ 10605985 n 0000 + 01674717 v 0103 + 01387656 v 0101 | someone who plaits (hair or fabric etc.) -10438172 18 n 03 planner 0 contriver 0 deviser 0 012 @ 00007846 n 0000 + 01651444 v 0304 + 01632411 v 0303 + 01638368 v 0203 + 01639714 v 0102 + 01638368 v 0101 + 00704690 v 0101 ~ 10007809 n 0000 ~ 10290422 n 0000 ~ 10556518 n 0000 ~ 10661563 n 0000 ~ 10688356 n 0000 | a person who makes plans -10438470 18 n 01 plant 0 001 @ 09765278 n 0000 | an actor situated in the audience whose acting is rehearsed but seems spontaneous to the audience -10438619 18 n 02 planter 0 plantation_owner 0 001 @ 10078806 n 0000 | the owner or manager of a plantation -10438728 18 n 01 planter 1 001 @ 09632518 n 0000 | a worker who puts or sets seeds or seedlings into the ground -10438842 18 n 01 plasterer 0 002 @ 10605985 n 0000 + 01360899 v 0101 | a worker skilled in applying plaster -10438952 18 n 01 plaster_saint 0 001 @ 10138767 n 0000 | a person (considered to be) without human failings; "he's no plaster saint" -10439087 18 n 02 platelayer 0 tracklayer 0 001 @ 10241300 n 0000 | a workman who lays and repairs railroad tracks -10439203 18 n 01 plater 0 003 @ 10605985 n 0000 + 01395049 v 0101 ~ 10049788 n 0000 | a skilled worker who coats articles with a film of metal (usually silver or gold) -10439373 18 n 02 platinum_blond 0 platinum_blonde 0 001 @ 09860506 n 0000 | a blond whose hair is a pale silvery (often artificially colored) blond -10439523 18 n 01 platitudinarian 0 001 @ 09867437 n 0000 | a bore who makes excessive use of platitudes -10439629 18 n 01 Platonist 0 002 @ 09774783 n 0000 + 05974564 n 0101 | an advocate of Platonism -10439727 18 n 03 playboy 0 man-about-town 0 Corinthian 1 001 @ 10168183 n 0000 | a man devoted to the pursuit of pleasure -10439851 18 n 02 player 1 participant 1 024 @ 09613191 n 0000 + 01072949 v 0101 ~ 09835506 n 0000 ~ 09854421 n 0000 ~ 09869961 n 0000 ~ 09894654 n 0000 ~ 09915834 n 0000 ~ 09992238 n 0000 ~ 10101634 n 0000 ~ 10136959 n 0000 ~ 10142946 n 0000 ~ 10179291 n 0000 ~ 10242682 n 0000 ~ 10332257 n 0000 ~ 10440886 n 0000 ~ 10453184 n 0000 ~ 10562391 n 0000 ~ 10575463 n 0000 ~ 10582604 n 0000 ~ 10591481 n 0000 ~ 10618342 n 0000 ~ 10662162 n 0000 ~ 10701180 n 0000 ~ 10759047 n 0000 | a person who participates in or is skilled at some game -10440387 18 n 01 player 3 003 @ 10401829 n 0000 ;c 01094725 n 0000 + 01072949 v 0101 | an important participant (as in a business deal); "he was a major player in setting up the corporation" -10440580 18 n 01 player 4 001 @ 00007846 n 0000 | a person who pursues a number of different social and sexual partners simultaneously -10440717 18 n 03 playgoer 0 theatergoer 0 theatregoer 0 004 @ 10633450 n 0000 #m 08221897 n 0000 ~ 10093264 n 0000 ~ 10148542 n 0000 | someone who attends the theater -10440886 18 n 01 playmaker 0 001 @ 10439851 n 0000 | a player in a team sport who leads attacks or maneuvers in such a way that a teammate can score -10441037 18 n 02 playmate 0 playfellow 0 001 @ 09945905 n 0000 | a companion at play -10441124 18 n 01 pleaser 0 002 @ 09616922 n 0000 + 01815628 v 0101 | a pleasing entertainer; "he is quite the crowd pleaser" -10441251 18 n 02 plebeian 0 pleb 0 005 @ 09610405 n 0000 #m 07947255 n 0000 + 01593079 a 0202 + 01593079 a 0102 ~ 10423031 n 0000 | one of the common people -10441410 18 n 01 pledge 0 001 @ 10307234 n 0000 | someone accepted for membership but not yet fully admitted to the group -10441534 18 n 01 pledgee 0 002 @ 09605289 n 0000 ~ 10409459 n 0000 | someone to whom a pledge is made or someone with whom something is deposited as a pledge -10441694 18 n 01 pledger 0 003 @ 09605289 n 0000 + 02299269 v 0101 + 00884540 v 0101 | someone who makes or gives a pledge -10441819 18 n 01 pledge_taker 0 001 @ 10759151 n 0000 | a volunteer who records (usually by telephone) contributions pledged in a fund drive -10441962 18 n 01 plenipotentiary 0 001 @ 10013927 n 0000 | a diplomat who is fully authorized to represent his or her government -10442093 18 n 02 plier 0 plyer 0 004 @ 09632518 n 0000 + 02595383 v 0201 + 02595383 v 0101 + 01864038 v 0101 | someone who plies a trade -10442232 18 n 04 plodder 0 slowpoke 0 stick-in-the-mud 0 slowcoach 0 002 @ 09993252 n 0000 + 01921204 v 0103 | someone who moves slowly; "in England they call a slowpoke a slowcoach" -10442417 18 n 02 plodder 1 slogger 1 003 @ 10154601 n 0000 + 02415573 v 0203 + 01921204 v 0103 | someone who works slowly and monotonously for long hours -10442573 18 n 02 plotter 2 mapper 0 003 @ 09928451 n 0000 + 01687876 v 0201 + 01693453 v 0102 | a clerk who marks data on a chart -10442705 18 n 02 plowboy 0 ploughboy 0 001 @ 10285313 n 0000 | a boy who leads the animals that draw a plow -10442815 18 n 03 plowman 0 ploughman 0 plower 0 002 @ 10079399 n 0000 + 01741864 v 0301 | a man who plows -10442923 18 n 02 plowwright 0 ploughwright 0 001 @ 10793570 n 0000 | a workman who makes and repairs plows -10443032 18 n 02 plumber 0 pipe_fitter 0 001 @ 09974648 n 0000 | a craftsman who installs and repairs pipes and fixtures and appliances -10443170 18 n 07 plunderer 0 pillager 0 looter 0 spoiler 0 despoiler 0 raider 0 freebooter 0 009 @ 10707804 n 0000 ;c 00973077 n 0000 + 02020027 v 0602 + 02344568 v 0502 + 02344568 v 0303 + 02344568 v 0208 + 02345048 v 0102 + 02344568 v 0101 ~ 10435367 n 0000 | someone who takes spoils or plunder (as in war) -10443482 18 n 01 pluralist 0 002 @ 10256756 n 0000 + 08367683 n 0101 | someone who believes that distinct ethnic or cultural or religious groups can exist together in society -10443659 18 n 01 pluralist 1 002 @ 10423589 n 0000 + 05965749 n 0101 | a philosopher who believes that no single explanation can account for all the phenomena of nature -10443830 18 n 01 pluralist 2 002 @ 09928136 n 0000 + 00412130 n 0101 | a cleric who holds more than one benefice at a time -10443955 18 n 01 plutocrat 0 001 @ 10529231 n 0000 | someone who exercises power by virtue of wealth -10444058 18 n 01 poacher 0 002 @ 09802641 n 0000 + 01143266 v 0101 | someone who hunts or fishes illegally on the property of another -10444194 18 n 01 poet 0 156 @ 10794014 n 0000 + 02857295 a 0101 + 01702514 v 0103 + 01702514 v 0104 ~ 09839022 n 0000 ~ 10050043 n 0000 ~ 10370881 n 0000 ~ 10447255 n 0000 ~ 10447359 n 0000 ~ 10447585 n 0000 ~ 10625000 n 0000 ~i 10811900 n 0000 ~i 10820444 n 0000 ~i 10823760 n 0000 ~i 10824146 n 0000 ~i 10828233 n 0000 ~i 10838484 n 0000 ~i 10844667 n 0000 ~i 10852669 n 0000 ~i 10853628 n 0000 ~i 10854146 n 0000 ~i 10861174 n 0000 ~i 10863552 n 0000 ~i 10865990 n 0000 ~i 10866883 n 0000 ~i 10867064 n 0000 ~i 10873679 n 0000 ~i 10876419 n 0000 ~i 10877253 n 0000 ~i 10879155 n 0000 ~i 10882293 n 0000 ~i 10882436 n 0000 ~i 10887981 n 0000 ~i 10894065 n 0000 ~i 10897796 n 0000 ~i 10904821 n 0000 ~i 10911104 n 0000 ~i 10913871 n 0000 ~i 10914331 n 0000 ~i 10919496 n 0000 ~i 10922239 n 0000 ~i 10928645 n 0000 ~i 10934611 n 0000 ~i 10939856 n 0000 ~i 10943659 n 0000 ~i 10957072 n 0000 ~i 10972298 n 0000 ~i 10983931 n 0000 ~i 10989977 n 0000 ~i 10999584 n 0000 ~i 11000660 n 0000 ~i 11004106 n 0000 ~i 11006889 n 0000 ~i 11012846 n 0000 ~i 11045796 n 0000 ~i 11047333 n 0000 ~i 11055296 n 0000 ~i 11055807 n 0000 ~i 11057381 n 0000 ~i 11059772 n 0000 ~i 11060416 n 0000 ~i 11061734 n 0000 ~i 11065229 n 0000 ~i 11065345 n 0000 ~i 11070644 n 0000 ~i 11080884 n 0000 ~i 11081673 n 0000 ~i 11084789 n 0000 ~i 11091184 n 0000 ~i 11096645 n 0000 ~i 11098601 n 0000 ~i 11103104 n 0000 ~i 11108084 n 0000 ~i 11133197 n 0000 ~i 11134115 n 0000 ~i 11137928 n 0000 ~i 11141882 n 0000 ~i 11142517 n 0000 ~i 11142788 n 0000 ~i 11144068 n 0000 ~i 11148152 n 0000 ~i 11151798 n 0000 ~i 11153615 n 0000 ~i 11156812 n 0000 ~i 11157719 n 0000 ~i 11159418 n 0000 ~i 11159595 n 0000 ~i 11160361 n 0000 ~i 11162793 n 0000 ~i 11164058 n 0000 ~i 11166732 n 0000 ~i 11175875 n 0000 ~i 11181073 n 0000 ~i 11189432 n 0000 ~i 11189579 n 0000 ~i 11192067 n 0000 ~i 11198094 n 0000 ~i 11203795 n 0000 ~i 11210291 n 0000 ~i 11214707 n 0000 ~i 11218776 n 0000 ~i 11221389 n 0000 ~i 11231683 n 0000 ~i 11235510 n 0000 ~i 11239143 n 0000 ~i 11240480 n 0000 ~i 11242743 n 0000 ~i 11244550 n 0000 ~i 11249191 n 0000 ~i 11251788 n 0000 ~i 11262468 n 0000 ~i 11262574 n 0000 ~i 11262765 n 0000 ~i 11265591 n 0000 ~i 11271859 n 0000 ~i 11290864 n 0000 ~i 11294582 n 0000 ~i 11295196 n 0000 ~i 11296914 n 0000 ~i 11298519 n 0000 ~i 11299672 n 0000 ~i 11300465 n 0000 ~i 11304011 n 0000 ~i 11309164 n 0000 ~i 11310523 n 0000 ~i 11310833 n 0000 ~i 11317416 n 0000 ~i 11323448 n 0000 ~i 11327163 n 0000 ~i 11327650 n 0000 ~i 11327744 n 0000 ~i 11332250 n 0000 ~i 11332423 n 0000 ~i 11334215 n 0000 ~i 11335330 n 0000 ~i 11338667 n 0000 ~i 11339041 n 0000 ~i 11350286 n 0000 ~i 11355247 n 0000 ~i 11355428 n 0000 ~i 11363164 n 0000 ~i 11366787 n 0000 ~i 11367436 n 0000 ~i 11369444 n 0000 ~i 11374952 n 0000 ~i 11377043 n 0000 ~i 11382930 n 0000 ~i 11384986 n 0000 ~i 11385277 n 0000 ~i 11390058 n 0000 ~i 11397657 n 0000 ~i 11399446 n 0000 ~i 11400594 n 0000 ~i 11402463 n 0000 ~i 11403015 n 0000 ~i 11403600 n 0000 | a writer of poems (the term is usually reserved for writers of good poetry) -10447255 18 n 01 poetess 0 003 @ 10444194 n 0000 ~i 11179797 n 0000 ~i 11281345 n 0000 | a woman poet -10447359 18 n 01 poet_laureate 0 002 @ 10444194 n 0000 @ 10249011 n 0000 | the poet officially appointed to the royal household in Great Britain; "the poet laureate is expected to provide poems for great national occasions" -10447585 18 n 01 poet_laureate 1 001 @ 10444194 n 0000 | a poet who is unofficially regarded as holding an honorary position in a particular group or region; "she is the poet laureate of all lyricists"; "he is the poet laureate of Arkansas" -10447828 18 n 01 poilu 0 001 @ 10622053 n 0000 | a French soldier (especially in World War I) -10447924 18 n 01 pointillist 0 003 @ 10391653 n 0000 + 01789734 a 0101 + 03975419 n 0101 | a painter who uses the technique of pointillism -10448065 18 n 01 point_man 0 001 @ 10622053 n 0000 | a soldier who goes ahead of a patrol -10448157 18 n 01 point_man 1 001 @ 09623038 n 0000 | someone who is the forefront of an important enterprise; "he is the president's point man on economic issues" -10448322 18 n 01 pointsman 0 002 @ 10721321 n 0000 ;r 08860123 n 0000 | a policeman stationed at an intersection to direct traffic -10448455 18 n 01 point_woman 0 001 @ 09623038 n 0000 | a woman who is the forefront of an important enterprise -10448568 18 n 01 poisoner 0 002 @ 10231087 n 0000 + 01323338 v 0101 | someone who kills with poison -10448670 18 n 03 polemicist 0 polemist 0 polemic 0 002 @ 10794014 n 0000 + 00602563 a 0301 | a writer who argues in opposition to others (especially in theology) -10448834 18 n 01 police_commissioner 0 001 @ 09943811 n 0000 | a civil commissioner appointed to supervise the duties and discipline of the police -10448983 18 n 03 policeman 0 police_officer 0 officer 1 017 @ 10249459 n 0000 #m 08209687 n 0000 + 00752335 v 0301 ~ 09862621 n 0000 ~ 09879144 n 0000 ~ 09893015 n 0000 ~ 09959258 n 0000 ~ 10009276 n 0000 ~ 10123122 n 0000 ~ 10208847 n 0000 ~ 10333838 n 0000 ~ 10449412 n 0000 ~ 10540114 n 0000 ~ 10591347 n 0000 ~ 10721321 n 0000 ~ 10730542 n 0000 ~ 10730728 n 0000 | a member of a police force; "it was an accident, officer" -10449412 18 n 02 police_matron 0 policewoman 0 002 @ 10448983 n 0000 ~ 10312491 n 0000 | a woman policeman -10449521 18 n 02 police_sergeant 0 sergeant 0 003 @ 10249459 n 0000 ~ 09777870 n 0000 ~ 10008254 n 0000 | a lawman with the rank of sergeant -10449664 18 n 01 policyholder 0 002 @ 09984659 n 0000 @ 10180178 n 0000 | a person who holds an insurance policy; usually, the client in whose name an insurance policy is written -10449845 18 n 01 policy_maker 0 001 @ 10200781 n 0000 | someone who sets the plan pursued by a government or business etc.; "policy makers often make the right decision for the wrong reason" -10450038 18 n 01 political_prisoner 0 001 @ 10476086 n 0000 | someone who is imprisoned because of their political views -10450161 18 n 01 political_scientist 0 002 @ 10619642 n 0000 + 06148148 n 0102 | a social scientist specializing in the study of government -10450303 18 n 04 politician 0 politico 0 pol 0 political_leader 0 046 @ 09623038 n 0000 + 13840719 n 0101 + 00611972 n 0101 ~ 09889691 n 0000 ~ 09945603 n 0000 ~ 10001481 n 0000 ~ 10002151 n 0000 ~ 10083097 n 0000 ~ 10242328 n 0000 ~ 10278805 n 0000 ~ 10337645 n 0000 ~ 10360366 n 0000 ~ 10403162 n 0000 ~ 10403633 n 0000 ~ 10522633 n 0000 ~ 10545087 n 0000 ~ 10618848 n 0000 ~ 10647475 n 0000 ~ 10650162 n 0000 ~ 10696672 n 0000 ~ 10775911 n 0000 ~i 10826717 n 0000 ~i 10834690 n 0000 ~i 10839791 n 0000 ~i 10860999 n 0000 ~i 10869385 n 0000 ~i 10874162 n 0000 ~i 10893606 n 0000 ~i 10898549 n 0000 ~i 10899951 n 0000 ~i 10902409 n 0000 ~i 10915566 n 0000 ~i 10941206 n 0000 ~i 11061853 n 0000 ~i 11076566 n 0000 ~i 11077195 n 0000 ~i 11149243 n 0000 ~i 11167595 n 0000 ~i 11194205 n 0000 ~i 11195073 n 0000 ~i 11228039 n 0000 ~ 11244061 n 0000 ~i 11253802 n 0000 ~i 11270772 n 0000 ~i 11294349 n 0000 ~i 11379217 n 0000 | a person active in party politics -10451263 18 n 01 politician 1 006 @ 09623038 n 0000 + 13840719 n 0101 + 00611972 n 0101 ~ 10140314 n 0000 ~ 10253995 n 0000 ~ 10303814 n 0000 | a leader engaged in civil administration -10451450 18 n 01 politician 2 001 @ 10556518 n 0000 | a schemer who tries to gain advantage in an organization in sly or underhanded ways -10451590 18 n 04 pollster 0 poll_taker 0 headcounter 0 canvasser 0 004 @ 10207831 n 0000 + 02454312 v 0403 + 02454312 v 0402 + 05800998 n 0101 | someone who conducts surveys of public opinion; "a pollster conducts public opinion polls"; "a headcounter counts heads" -10451858 18 n 02 polluter 0 defiler 0 003 @ 09831962 n 0000 + 00492410 v 0203 + 00492706 v 0101 | a person or organization that causes pollution of the environment -10452024 18 n 03 poltroon 0 craven 0 recreant 0 003 @ 09614047 n 0000 + 00265496 a 0302 + 00266309 a 0101 | an abject coward -10452151 18 n 01 polyandrist 0 002 @ 10452260 n 0000 + 13966795 n 0101 | a woman with two or more husbands -10452260 18 n 01 polygamist 0 004 @ 10640620 n 0000 + 13966925 n 0101 ~ 10452151 n 0000 ~ 10452432 n 0000 | someone who is married to two or more people at the same time -10452432 18 n 01 polygynist 0 002 @ 10452260 n 0000 + 13967089 n 0101 | a man with two or more wives -10452535 18 n 01 polytheist 0 001 @ 09848110 n 0000 | one who believes in a plurality of gods -10452631 18 n 01 pomologist 0 001 @ 09868270 n 0000 | someone versed in pomology or someone who cultivates fruit trees -10452752 18 n 01 ponce 1 002 @ 10287213 n 0000 ;r 08860123 n 0104 | a man who is effeminate in his manner and fussy in the way he dresses -10452892 18 n 01 pontifex 0 004 @ 10470779 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 + 02432395 v 0101 | a member of the highest council of priests in ancient Rome -10453061 18 n 01 pooler 0 001 @ 10401639 n 0000 | someone who shares in and contributes to a general fund for use by all -10453184 18 n 01 pool_player 0 001 @ 10439851 n 0000 | someone who shoots pool -10453265 18 n 02 poor_devil 0 wretch 0 001 @ 10752093 n 0000 | someone you feel sorry for -10453357 18 n 02 poor_person 0 have-not 0 005 @ 09630641 n 0000 ~ 09641226 n 0000 ~ 10028402 n 0000 ~ 10409011 n 0000 ~ 10744544 n 0000 | a person with few or no possessions -10453533 18 n 07 pope 0 Catholic_Pope 0 Roman_Catholic_Pope 0 pontiff 0 Holy_Father 0 Vicar_of_Christ 0 Bishop_of_Rome 0 050 @ 09505153 n 0000 @ 09679925 n 0000 #m 08053260 n 0000 + 02879638 a 0404 + 02879638 a 0101 ~ 09797375 n 0000 ~i 10813204 n 0000 ~i 10844031 n 0000 ~i 10844231 n 0000 ~i 10856799 n 0000 ~i 10879789 n 0000 ~i 10880024 n 0000 ~i 10901192 n 0000 ~i 10901420 n 0000 ~i 10901589 n 0000 ~i 11013876 n 0000 ~i 11014212 n 0000 ~i 11014450 n 0000 ~i 11014652 n 0000 ~i 11014833 n 0000 ~i 11071960 n 0000 ~i 11072189 n 0000 ~i 11072396 n 0000 ~i 11072673 n 0000 ~i 11086607 n 0000 ~i 11087612 n 0000 ~i 11087767 n 0000 ~i 11127188 n 0000 ~i 11127419 n 0000 ~i 11127565 n 0000 ~i 11127752 n 0000 ~i 11127996 n 0000 ~i 11160200 n 0000 ~i 11202322 n 0000 ~i 11226126 n 0000 ~i 11226427 n 0000 ~i 11236852 n 0000 ~i 11237075 n 0000 ~i 11237275 n 0000 ~i 11237550 n 0000 ~i 11237868 n 0000 ~i 11238092 n 0000 ~i 11238303 n 0000 ~i 11238511 n 0000 ~i 11304139 n 0000 ~i 11327398 n 0000 ~i 11356636 n 0000 ~i 11356822 n 0000 ~i 11357086 n 0000 ~i 11357332 n 0000 | the head of the Roman Catholic Church -10454645 18 n 01 popinjay 0 001 @ 10047459 n 0000 | a vain and talkative person (chatters like a parrot) -10454752 18 n 04 popularizer 0 populariser 0 vulgarizer 1 vulgariser 1 005 @ 09610660 n 0000 + 00970215 v 0404 + 00970215 v 0303 + 00970215 v 0202 + 00970215 v 0101 | someone who makes attractive to the general public -10454972 18 n 01 pork_butcher 0 002 @ 09884391 n 0000 ;r 08860123 n 0000 | a vendor of pork and products made from pork -10455094 18 n 02 pornographer 0 porn_merchant 0 002 @ 10593745 n 0000 + 00747215 n 0101 | someone who presents shows or sells writing or pictures that are sexually explicit in violation of the community mores -10455305 18 n 02 porter 1 Pullman_porter 0 001 @ 10053808 n 0000 | a railroad employee who assists passengers (especially on sleeping cars) -10455447 18 n 01 porter 0 005 @ 10241300 n 0000 + 01450961 v 0101 + 01450792 v 0101 ~ 10513386 n 0000 ~ 10608073 n 0000 | a person employed to carry luggage and supplies -10455619 18 n 04 portraitist 0 portrait_painter 0 portrayer 0 limner 0 005 @ 10391653 n 0000 + 01688256 v 0403 + 01688771 v 0301 + 01688771 v 0101 + 01688256 v 0101 | a painter or drawer of portraits -10455821 18 n 02 portwatcher 0 port_watcher 0 001 @ 10770059 n 0000 | a watchman on a wharf -10455915 18 n 02 poseur 0 poser 1 003 @ 10070711 n 0000 + 00837288 v 0201 ~ 10456070 n 0000 | a person who habitually pretends to be something he is not -10456070 18 n 01 poseuse 0 001 @ 10455915 n 0000 | a woman poseur -10456138 18 n 02 positivist 0 rationalist 0 005 @ 09625789 n 0000 + 06191018 n 0201 + 02782815 a 0101 + 05993367 n 0101 ~ 10269611 n 0000 | someone who emphasizes observable facts and excludes metaphysical speculation about origins or ultimate causes -10456391 18 n 01 posseman 0 002 @ 10287213 n 0000 #m 08405490 n 0000 | an able-bodied man serving as a member of a posse -10456514 18 n 01 possible 0 001 @ 09607280 n 0000 | an applicant who might be suitable -10456603 18 n 01 postdiluvian 0 001 @ 00004475 n 0000 | anything living after Noah's flood -10456696 18 n 02 postdoc 0 post_doc 0 002 @ 10557854 n 0000 @ 10523076 n 0000 | a scholar or researcher who is involved in academic study beyond the level of a doctoral degree -10456874 18 n 01 poster_boy 0 001 @ 10456950 n 0000 | a male poster child -10456950 18 n 01 poster_child 0 003 @ 09917593 n 0000 ~ 10456874 n 0000 ~ 10457214 n 0000 | a child afflicted by some disease or deformity whose picture is used on posters to raise money for charitable purposes; "she was the poster child for muscular dystrophy" -10457214 18 n 01 poster_girl 0 001 @ 10456950 n 0000 | a female poster child -10457293 18 n 01 postmature_infant 0 001 @ 10353016 n 0000 | infant born after 42 weeks of gestation; usually shows signs of placental insufficiency -10457444 18 n 01 postulator 0 002 @ 09814660 n 0000 + 00716758 v 0101 | someone who assumes or takes something for granted as the basis of an argument -10457597 18 n 01 postulator 1 002 @ 09927451 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) someone who proposes or pleads for a candidate for beatification or canonization -10457777 18 n 01 posturer 0 001 @ 00007846 n 0000 | someone who behaves in a manner calculated to impress or mislead others -10457903 18 n 01 private_citizen 0 001 @ 09923673 n 0000 | a citizen who does not hold any official or public position -10458024 18 n 01 probable 0 001 @ 09607280 n 0000 | an applicant likely to be chosen -10458111 18 n 03 problem_solver 0 solver 0 convergent_thinker 0 003 @ 10708454 n 0000 + 00733044 v 0202 + 00634906 v 0201 | a thinker who focuses on the problem as stated and tries to synthesize information and knowledge to achieve a solution -10458356 18 n 01 pro-lifer 0 001 @ 09774783 n 0000 | an advocate of full legal protection for embryos and fetuses; someone opposed to legalized induced abortion -10458519 18 n 01 proprietress 0 001 @ 10388924 n 0000 | a woman proprietor -10458596 18 n 01 prosthetist 0 002 @ 09617867 n 0000 + 04013729 n 0101 | an expert in prosthetics -10458696 18 n 01 prosthodontist 0 003 @ 10004282 n 0000 + 06049250 n 0102 + 06049250 n 0101 | a dentist who is expert in prosthodontics -10458834 18 n 01 provincial 1 002 @ 10372373 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) an official in charge of an ecclesiastical province acting under the superior general of a religious order; "the general of the Jesuits receives monthly reports from the provincials" -10459116 18 n 02 postal_clerk 0 mail_clerk 0 001 @ 09928451 n 0000 | a clerk in a post office -10459212 18 n 02 postilion 0 postillion 0 001 @ 10185793 n 0000 | someone who rides the near horse of a pair in order to guide the horses pulling a carriage (especially a carriage without a coachman) -10459414 18 n 02 Postimpressionist 0 Post-impressionist 0 001 @ 10391653 n 0000 | an artist of the Postimpressionist school who revolted against Impressionism -10459575 18 n 01 postmaster 0 002 @ 10298647 n 0000 ~ 10459687 n 0000 | the person in charge of a post office -10459687 18 n 01 postmistress 0 001 @ 10459575 n 0000 | a woman postmaster -10459764 18 n 01 postmaster_general 0 001 @ 10372373 n 0000 | the official in charge of the national postal service -10459882 18 n 01 postulant 0 001 @ 10420031 n 0000 | one submitting a request or application especially one seeking admission into a religious order -10460033 18 n 02 potboy 0 potman 0 002 @ 10053808 n 0000 ;r 08860123 n 0000 | a worker in an inn or public house who serves customers and does various chores -10460193 18 n 01 pothead 0 001 @ 10162780 n 0000 | someone who smokes marijuana habitually -10460286 18 n 04 potholer 0 spelunker 0 speleologist 0 spelaeologist 0 006 @ 10072708 n 0000 + 06121554 n 0402 + 00798108 n 0402 + 06121554 n 0301 + 00798108 n 0301 + 00649887 v 0202 | a person who explores caves -10460501 18 n 01 pothunter 2 001 @ 10193026 n 0000 | someone who hunts for food (not for sport) -10460599 18 n 01 pothunter 1 001 @ 09613191 n 0000 | someone who participates in contests in order to collect trophies -10460720 18 n 01 pothunter 0 001 @ 09804806 n 0000 | a nonprofessional archeologist -10460806 18 n 04 potter 0 thrower 1 ceramicist 0 ceramist 0 006 @ 09974648 n 0000 + 00935247 n 0401 + 00935247 n 0301 + 01663443 v 0201 ~i 11311817 n 0000 ~i 11379436 n 0000 | a craftsman who shapes pottery on a potter's wheel and bakes them it a kiln -10461060 18 n 02 poultryman 0 poulterer 0 001 @ 10309896 n 0000 | a dealer in poultry and poultry products -10461169 18 n 01 powderer 0 002 @ 00007846 n 0000 + 00042173 v 0101 | someone who applies or scatters powder -10461280 18 n 01 powder_monkey 0 001 @ 09815790 n 0000 | someone who carries explosives (as from the magazine to the guns on board a warship) -10461424 18 n 02 power 0 force 0 007 @ 00007347 n 0000 + 01350449 v 0201 + 00747418 v 0201 + 02504562 v 0205 ~ 10226556 n 0000 ~ 10461747 n 0000 ~ 10462005 n 0000 | one possessing or exercising power or influence or authority; "the mysterious presence of an evil power"; "may the force be with you"; "the forces of evil" -10461747 18 n 01 influence 0 005 @ 10461424 n 0000 + 01830134 a 0101 + 00776523 v 0102 + 00701040 v 0104 + 02536557 v 0101 | one having power to influence another; "she was the most important influence in my life"; "he was a bad influence on the children" -10462005 18 n 01 Moloch 2 001 @ 10461424 n 0000 | a tyrannical power to be propitiated by human subservience or sacrifice; "the great Moloch of war"; "duty has become the Moloch of modern life"- Norman Douglas -10462217 18 n 02 power_broker 0 powerbroker 0 001 @ 10200781 n 0000 | a person who is important by virtue of the people or votes they control; "a power broker who does you a favor will expect you to return it" -10462429 18 n 04 powerhouse 0 human_dynamo 0 ball_of_fire 1 fireball 0 002 @ 09767197 n 0000 ~ 10577182 n 0000 | a highly energetic and indefatigable person -10462588 18 n 01 power_user 0 002 @ 09951274 n 0000 ;c 06128570 n 0000 | (computing) a computer user who needs the fastest and most powerful computers available -10462751 18 n 02 power_worker 0 power-station_worker 0 001 @ 10605985 n 0000 | a worker at a power station -10462860 18 n 02 practitioner 0 practician 0 004 @ 10480253 n 0000 ~ 09929577 n 0000 ~ 10138114 n 0000 ~ 10182402 n 0000 | someone who practices a learned profession -10463028 18 n 02 praetor 0 pretor 0 007 @ 10225219 n 0000 + 03101818 a 0203 + 03101818 a 0104 + 03101818 a 0102 + 03101818 a 0103 + 03101818 a 0101 + 00596193 n 0101 | an annually elected magistrate of the ancient Roman Republic -10463259 18 n 02 Praetorian_Guard 0 Praetorian 0 002 @ 09863031 n 0000 #m 08429346 n 0000 | a member of the Praetorian Guard -10463386 18 n 01 pragmatist 0 002 @ 10509605 n 0000 + 05151869 n 0102 | a person who takes a practical approach to problems and is concerned primarily with the success or failure of her actions -10463582 18 n 01 pragmatist 1 003 @ 10509161 n 0000 + 05974798 n 0101 + 05151869 n 0102 | an adherent of philosophical pragmatism -10463714 18 n 06 prankster 0 cut-up 0 trickster 0 tricker 0 hoaxer 0 practical_joker 0 005 @ 10731244 n 0000 + 02577586 v 0501 + 02575723 v 0404 + 00427580 n 0304 + 00427580 n 0103 | someone who plays practical jokes on others -10463943 18 n 01 prattler 0 002 @ 10630188 n 0000 + 01036804 v 0109 | someone who speaks in a childish way -10464052 18 n 02 prayer 0 supplicant 1 003 @ 09628382 n 0000 + 00759944 v 0101 ~ 09844898 n 0000 | someone who prays to God -10464178 18 n 04 preacher 0 preacher_man 0 sermonizer 0 sermoniser 0 007 @ 09927451 n 0000 + 00828374 v 0402 + 00828374 v 0301 + 00828003 v 0101 ~ 10067011 n 0000 ~i 10871756 n 0000 ~i 11086774 n 0000 | someone whose occupation is preaching the gospel -10464432 18 n 01 prebendary 0 001 @ 09891613 n 0000 | a canon who receives a prebend for serving the church -10464542 18 n 02 preceptor 0 don 2 003 @ 10694258 n 0000 ;r 08860123 n 0000 + 00596393 n 0101 | teacher at a university or college (especially at Cambridge or Oxford) -10464711 18 n 01 predecessor 0 003 @ 09627117 n 0000 + 02407766 v 0101 ~ 10102969 n 0000 | one who precedes you in time (as in holding a position or office) -10464870 18 n 02 preemptor 0 pre-emptor 0 002 @ 09853184 n 0000 + 02301321 v 0101 | a bidder in bridge who makes a preemptive bid -10465002 18 n 02 preemptor 1 pre-emptor 1 002 @ 09802641 n 0000 + 02302454 v 0101 | someone who acquires land by preemption -10465128 18 n 01 prefect 0 001 @ 09770472 n 0000 | a chief officer or chief magistrate; "the prefect of Paris police" -10465248 18 n 01 Pre-Raphaelite 0 005 @ 09812338 n 0000 + 03102110 a 0101 ~i 11067047 n 0000 ~i 11179666 n 0000 ~i 11271563 n 0000 | a painter or writer dedicated to restoring early Renaissance ideals -10465451 18 n 06 premature_baby 0 preterm_baby 0 premature_infant 0 preterm_infant 0 preemie 0 premie 0 001 @ 10353016 n 0000 | an infant that is born prior to 37 weeks of gestation -10465635 18 n 01 presbyope 0 001 @ 10757625 n 0000 | a person with presbyopia; someone who is farsighted resulting from the progressive loss with aging of the elasticity of the crystalline lens -10465831 18 n 01 presbyter 0 001 @ 10048367 n 0000 | an elder in the Presbyterian Church -10465922 18 n 01 Presbyterian 0 002 @ 09679316 n 0000 #m 08091891 n 0000 | a follower of Calvinism as taught in the Presbyterian Church -10466060 18 n 03 preschooler 0 kindergartner 0 kindergartener 0 001 @ 09917593 n 0000 | a child who attends a preschool or kindergarten -10466198 18 n 02 presenter 1 sponsor 1 003 @ 09774783 n 0000 + 02219940 v 0201 + 00901103 v 0102 | an advocate who presents a person (as for an award or a degree or an introduction etc.) -10466387 18 n 01 presenter 2 002 @ 09610660 n 0000 + 02262752 v 0101 | someone who presents a message of some sort (as a petition or an address or a check or a memorial etc.) -10466564 18 n 01 presentist 0 001 @ 10705615 n 0000 | a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) are being fulfilled at the present time -10466759 18 n 01 preservationist 0 001 @ 10515194 n 0000 | someone who advocates the preservation of historical sites or endangered species or natural areas -10466918 18 n 01 preserver 1 003 @ 00007846 n 0000 + 02733122 v 0102 ~ 09614684 n 0000 | someone who keeps safe from harm or danger -10467052 18 n 01 preserver 2 003 @ 09963320 n 0000 + 00212414 v 0101 ~ 10549165 n 0000 | a cook who preserves fruits or meat -10467179 18 n 01 president 0 008 @ 10164747 n 0000 + 02984104 a 0101 + 00596807 n 0102 + 15266265 n 0101 + 00596807 n 0101 + 02443609 v 0101 ~ 09618880 n 0000 ~i 10971080 n 0000 | the chief executive of a republic -10467395 18 n 04 President_of_the_United_States 0 United_States_President 0 President 4 Chief_Executive 0 049 @ 10164747 n 0000 #p 08356074 n 0000 + 02984104 a 0301 + 00596807 n 0302 + 15266265 n 0301 + 00596807 n 0301 + 02443609 v 0301 ~i 10808200 n 0000 ~i 10808353 n 0000 ~i 10825180 n 0000 ~i 10869931 n 0000 ~i 10875468 n 0000 ~i 10875910 n 0000 ~i 10884831 n 0000 ~i 10902051 n 0000 ~i 10902591 n 0000 ~i 10908919 n 0000 ~i 10954966 n 0000 ~i 10970864 n 0000 ~i 10974740 n 0000 ~i 10990733 n 0000 ~i 11011123 n 0000 ~i 11028446 n 0000 ~i 11031420 n 0000 ~i 11031668 n 0000 ~i 11036140 n 0000 ~i 11058633 n 0000 ~i 11075823 n 0000 ~i 11081828 n 0000 ~i 11088059 n 0000 ~i 11088346 n 0000 ~i 11101000 n 0000 ~i 11132462 n 0000 ~i 11148486 n 0000 ~i 11169418 n 0000 ~i 11186042 n 0000 ~i 11208172 n 0000 ~i 11234813 n 0000 ~i 11240733 n 0000 ~i 11255460 n 0000 ~i 11269697 n 0000 ~i 11270023 n 0000 ~i 11328714 n 0000 ~i 11333237 n 0000 ~i 11349739 n 0000 ~i 11354145 n 0000 ~i 11358719 n 0000 ~i 11375418 n 0000 ~i 11390855 n 0000 | the person who holds the office of head of state of the United States government; "the President likes to jog every morning" -10468559 18 n 01 president 1 006 @ 09966255 n 0000 + 02984104 a 0101 + 00596807 n 0102 + 15266265 n 0101 + 00596807 n 0101 + 02443609 v 0101 | an executive officer of a firm or corporation -10468750 18 n 02 president 2 prexy 0 006 @ 09758885 n 0000 + 02984104 a 0101 + 00596807 n 0102 + 15266265 n 0101 + 00596807 n 0101 + 02443609 v 0101 | the head administrative officer of a college or university -10468962 18 n 05 president 3 chairman 1 chairwoman 1 chair 0 chairperson 0 011 @ 10469346 n 0000 + 02440020 v 0401 + 00813790 v 0402 + 00590047 n 0201 + 02440020 v 0202 + 00596807 n 0102 + 15266265 n 0101 + 00596807 n 0101 + 02443609 v 0101 ~ 10229034 n 0000 ~ 10750911 n 0000 | the officer who presides at the meetings of an organization; "address your remarks to the chairperson" -10469346 18 n 01 presiding_officer 0 005 @ 09623038 n 0000 ~ 10326257 n 0000 ~ 10326392 n 0000 ~ 10468962 n 0000 ~ 10631309 n 0000 | the leader of a group meeting -10469511 18 n 01 pre-Socratic 0 001 @ 10423589 n 0000 | any philosopher who lived before Socrates -10469611 18 n 04 press_agent 0 publicity_man 0 public_relations_man 0 PR_man 0 001 @ 10490699 n 0000 | someone employed to arrange publicity (for a firm or a public figure) -10469786 18 n 01 press_lord 0 001 @ 10491575 n 0000 | a powerful newspaper proprietor -10469874 18 n 01 press_photographer 0 001 @ 10426749 n 0000 | a photographer who works for a newspaper -10469979 18 n 01 Pretender 2 002 @ 09925592 n 0000 + 02275799 v 0101 | a claimant to the throne or to the office of ruler (usually without just title) -10470132 18 n 01 preterist 0 001 @ 10705615 n 0000 | a theologian who believes that the Scripture prophecies of the Apocalypse (the Book of Revelation) have already been fulfilled -10470314 18 n 01 prevailing_party 0 002 @ 10266848 n 0000 ;c 08441203 n 0000 | the party in a lawsuit who obtains a judgment in their own favor -10470460 18 n 04 prey 0 quarry 0 target 0 fair_game 0 003 @ 10752093 n 0000 + 01150559 v 0301 + 01203715 v 0101 | a person who is the aim of an attack (especially a victim of ridicule or exploitation) by some hostile person or influence; "he fell prey to muggers"; "everyone was fair game"; "the target of a manhunt" -10470779 18 n 01 priest 0 017 @ 09927451 n 0000 @ 13950812 n 0000 + 00574114 a 0101 + 08113443 n 0101 ~ 09807075 n 0000 ~ 09857200 n 0000 ~ 09891613 n 0000 ~ 09902851 n 0000 ~ 09954355 n 0000 ~ 10024621 n 0000 ~ 10081204 n 0000 ~ 10329789 n 0000 ~ 10452892 n 0000 ~ 10471570 n 0000 ~ 10750031 n 0000 ~i 10806841 n 0000 ~i 10938363 n 0000 | a clergyman in Christian churches who has the authority to perform or administer various religious rites; one of the Holy Orders -10471250 18 n 02 priest 1 non-Christian_priest 0 010 @ 09505153 n 0000 + 08113443 n 0101 ~ 10036444 n 0000 ~ 10094954 n 0000 ~ 10184290 n 0000 ~ 10243664 n 0000 ~ 10281432 n 0000 ~ 10626194 n 0000 ~ 10759982 n 0000 ~i 10964660 n 0000 | a person who performs religious duties and ceremonies in a non-Christian religion -10471570 18 n 01 priestess 0 001 @ 10470779 n 0000 | a woman priest -10471640 18 n 01 prima_ballerina 0 001 @ 09834592 n 0000 | a leading female ballet dancer -10471732 18 n 02 prima_donna 0 diva 0 001 @ 10378290 n 0000 | a distinguished female operatic singer; a female operatic star -10471859 18 n 01 prima_donna 1 001 @ 09631463 n 0000 | a vain and temperamental person -10471948 18 n 01 primary_care_physician 0 001 @ 10020890 n 0000 | the physician who provides primary care; "the primary care physician acts as a gatekeeper to the medical system" -10472129 18 n 02 primigravida 0 gravida_I 0 002 @ 10144838 n 0000 ;c 06053439 n 0000 | (obstetrics) a woman who is pregnant for the first time -10472274 18 n 02 primipara 0 para_I 0 003 @ 10332385 n 0000 ;c 06053439 n 0000 + 03102427 a 0101 | (obstetrics) woman who has been delivered of a child for the first time -10472447 18 n 04 primordial_dwarf 0 hypoplastic_dwarf 0 true_dwarf 0 normal_dwarf 0 001 @ 10040344 n 0000 | an achondroplastic dwarf whose small size is the result of a genetic defect; body parts and mental and sexual development are normal -10472690 18 n 01 primus 0 001 @ 09857200 n 0000 | the presiding bishop of the Episcopal Church of Scotland -10472799 18 n 01 prince 0 019 @ 09807754 n 0000 #m 08153437 n 0000 + 14433115 n 0101 + 08558488 n 0102 + 01592108 a 0101 ~ 09804658 n 0000 ~ 09981092 n 0000 ~ 09993122 n 0000 ~ 10142060 n 0000 ~ 10281637 n 0000 ~ 10473273 n 0000 ~ 10473562 n 0000 ~ 10473718 n 0000 ~ 10473789 n 0000 ~ 10473917 n 0000 ~i 10920051 n 0000 ~i 10949952 n 0000 ~i 11232475 n 0000 ~i 11274103 n 0000 | a male member of a royal family other than the sovereign (especially the son of a sovereign) -10473273 18 n 01 Elector 1 002 @ 10472799 n 0000 ~i 10980681 n 0000 | any of the German princes who were entitled to vote in the election of new emperor of the Holy Roman Empire -10473453 18 n 01 prince_charming 0 001 @ 10674130 n 0000 | a suitor who fulfills the dreams of his beloved -10473562 18 n 01 prince_consort 0 003 @ 10472799 n 0000 @ 09958724 n 0000 ~i 10811540 n 0000 | a prince who is the husband of a reigning female sovereign -10473718 18 n 01 princeling 0 001 @ 10472799 n 0000 | a young prince -10473789 18 n 01 princeling 1 001 @ 10472799 n 0000 | a petty or insignificant prince who rules some unimportant principality -10473917 18 n 01 Prince_of_Wales 0 003 @ 10472799 n 0000 ~i 10892416 n 0000 ~i 10949782 n 0000 | the male heir apparent of the British sovereign -10474064 18 n 01 princess 0 008 @ 09807754 n 0000 #m 08153437 n 0000 ~i 09558177 n 0000 ~ 09804518 n 0000 ~ 09981183 n 0000 ~ 10281770 n 0000 ~ 10474343 n 0000 ~i 10611117 n 0000 | a female member of a royal family other than the queen (especially the daughter of a sovereign) -10474343 18 n 01 princess_royal 0 001 @ 10474064 n 0000 | the eldest daughter of a British sovereign -10474446 18 n 02 principal 2 dealer 3 003 @ 10090020 n 0000 + 02244956 v 0201 ~ 09876152 n 0000 | the major party to a financial transaction at a stock exchange; buys and sells for his own account -10474645 18 n 04 principal 0 school_principal 0 head_teacher 0 head 1 007 @ 10045713 n 0000 + 00593219 n 0401 + 00593108 n 0401 + 00597629 n 0101 ~ 09906848 n 0000 ~ 10164233 n 0000 ~ 10164397 n 0000 | the educator who has executive authority for a school; "she sent unruly pupils to see the principal" -10474950 18 n 01 principal 3 003 @ 09633969 n 0000 ;c 06539178 n 0000 ~ 09977660 n 0000 | (criminal law) any person involved in a criminal offense, regardless of whether the person profits from such involvement -10475163 18 n 02 principal_investigator 0 PI 1 001 @ 10560637 n 0000 | the scientist in charge of an experiment or research project -10475297 18 n 02 printer 0 pressman 0 011 @ 10605985 n 0000 + 01745722 v 0101 + 01747945 v 0101 ~ 09949946 n 0000 ~ 10482768 n 0000 ~i 10854265 n 0000 ~i 10860589 n 0000 ~i 10888644 n 0000 ~i 10979079 n 0000 ~i 11009115 n 0000 ~i 11020513 n 0000 | someone whose occupation is printing -10475584 18 n 01 printer's_devil 0 001 @ 09801864 n 0000 | an apprentice in a printing establishment -10475687 18 n 02 printmaker 0 graphic_artist 0 003 @ 09812338 n 0000 ~ 10058027 n 0000 ~ 10266486 n 0000 | an artist who designs and makes prints -10475835 18 n 01 print_seller 0 001 @ 09810983 n 0000 | someone who sells etchings and engravings etc. -10475940 18 n 01 prior 0 002 @ 10675876 n 0000 + 00597728 n 0101 | the head of a religious order; in an abbey the prior is next below the abbot -10476086 18 n 02 prisoner 0 captive 0 008 @ 09630641 n 0000 + 01065126 a 0201 ~ 09962966 n 0000 ~ 10009162 n 0000 ~ 10187557 n 0000 ~ 10212074 n 0000 ~ 10450038 n 0000 ~ 10476331 n 0000 | a person who is confined; especially a prisoner of war -10476331 18 n 02 prisoner_of_war 0 POW 0 001 @ 10476086 n 0000 | a person who surrenders to (or is taken by) the enemy in time of war -10476467 18 n 03 private 0 buck_private 0 common_soldier 0 001 @ 10058585 n 0000 | an enlisted man of the lowest rank in the Army or Marines; "our prisoner was just a private and knew nothing of value" -10476671 18 n 07 private_detective 0 PI 0 private_eye 0 private_investigator 0 operative 0 shamus 0 sherlock 0 004 @ 10009484 n 0000 ~ 10187842 n 0000 ~ 10208189 n 0000 ~ 10660128 n 0000 | someone who can be employed as a detective to collect information -10476928 18 n 02 privateer 0 privateersman 0 003 @ 10371741 n 0000 @ 09977178 n 0000 ~i 11035132 n 0000 | an officer or crew member of a privateer -10477077 18 n 02 prizefighter 1 gladiator 1 017 @ 09870208 n 0000 + 01420451 v 0101 ~ 10082687 n 0000 ~ 10167042 n 0000 ~ 10261624 n 0000 ~ 10262445 n 0000 ~ 10314305 n 0000 ~ 10773901 n 0000 ~i 10814574 n 0000 ~i 10910421 n 0000 ~i 10930591 n 0000 ~i 11135044 n 0000 ~i 11141709 n 0000 ~i 11155943 n 0000 ~i 11266279 n 0000 ~i 11351832 n 0000 ~i 11355082 n 0000 | a professional boxer -10477465 18 n 01 probability_theorist 0 001 @ 10301261 n 0000 | a mathematician who specializes in probability theory -10477585 18 n 02 probationer 0 parolee 0 002 @ 09977660 n 0000 + 02591893 v 0201 | someone released on probation or on parole -10477713 18 n 02 probationer 1 student_nurse 0 001 @ 10366966 n 0000 | a nurse in training who is undergoing a trial period -10477839 18 n 01 probation_officer 0 001 @ 10371450 n 0000 | the officer of the court who supervises probationers -10477955 18 n 01 processor 0 003 @ 09632518 n 0000 ;c 00903559 n 0000 + 00515154 v 0101 | someone who processes things (foods or photographs or applicants etc.) -10478118 18 n 01 process-server 0 001 @ 10311021 n 0000 | someone who personally delivers a process (a writ compelling attendance in court) or court papers to the defendant -10478293 18 n 01 proconsul 0 003 @ 10140314 n 0000 + 03103655 a 0101 + 00597821 n 0101 | a provincial governor of consular rank in the Roman Republic and Roman Empire -10478462 18 n 01 proconsul 2 003 @ 10372373 n 0000 + 03103655 a 0101 + 00597821 n 0101 | an official in a modern colony who has considerable administrative power -10478626 18 n 03 procrastinator 0 postponer 0 cunctator 0 003 @ 10000616 n 0000 + 02642814 v 0201 + 02642238 v 0101 | someone who postpones work (especially out of laziness or habitual carelessness) -10478827 18 n 01 proctologist 0 002 @ 10632576 n 0000 + 06062225 n 0101 | a doctor specializing in diseases of the rectum and anus -10478960 18 n 02 proctor 0 monitor 1 005 @ 10676877 n 0000 + 02163301 v 0201 + 00597957 n 0101 + 02593354 v 0102 ~ 10216403 n 0000 | someone who supervises (an examination) -10479135 18 n 01 procurator 0 004 @ 09880427 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 ~ 11235112 n 0000 | (ancient Rome) someone employed by the Roman Emperor to manage finance and taxes -10479328 18 n 02 procurer 1 securer 0 003 @ 09764201 n 0000 + 02238770 v 0202 + 02238770 v 0101 | someone who obtains or acquires; "the procurer of opera tickets" -10479493 18 n 01 procuress 0 001 @ 10433737 n 0000 | a woman pimp -10479561 18 n 03 prodigal 0 profligate 1 squanderer 0 007 @ 09612848 n 0000 + 01158181 v 0302 + 02268351 v 0303 + 02422242 a 0203 + 02422242 a 0102 ~ 10635460 n 0000 ~ 10769459 n 0000 | a recklessly extravagant consumer -10479783 18 n 01 prodigy 0 004 @ 10126926 n 0000 ~ 09871952 n 0000 ~ 09918867 n 0000 ~ 10131151 n 0000 | an unusually gifted or intelligent (young) person; someone whose talents excite wonder and admiration; "she is a chess prodigy" -10480018 18 n 01 producer 2 004 @ 09614315 n 0000 + 02157100 v 0101 ~ 10088390 n 0000 ~ 10705448 n 0000 | someone who finds financing for and supervises the making and presentation of a show (play or film or program or similar work) -10480253 18 n 02 professional 0 professional_person 0 012 @ 09605289 n 0000 #m 08266070 n 0000 ~ 09895222 n 0000 ~ 09975630 n 0000 ~ 09979589 n 0000 ~ 10045713 n 0000 ~ 10165109 n 0000 ~ 10249950 n 0000 ~ 10257948 n 0000 ~ 10462860 n 0000 ~ 10491309 n 0000 ~ 10804923 n 0000 | a person engaged in one of the learned professions -10480583 18 n 02 professional 2 pro 0 004 @ 09820263 n 0000 ! 09786760 n 0101 ~ 10109826 n 0000 ~ 10578349 n 0000 | an athlete who plays for pay -10480730 18 n 02 professor 0 prof 0 009 @ 09759069 n 0000 #m 08287586 n 0000 + 02784873 a 0101 + 00598056 n 0101 ~ 09816654 n 0000 ~ 09817386 n 0000 ~ 10115748 n 0000 ~ 10517283 n 0000 ~ 10757050 n 0000 | someone who is a member of the faculty at a college or university -10481003 18 n 01 profiteer 0 003 @ 09609232 n 0000 + 13258362 n 0105 + 02279615 v 0101 | someone who makes excessive profit (especially on goods in short supply) -10481167 18 n 01 profit_taker 0 001 @ 10657835 n 0000 | someone who sells stock shares at a profit -10481268 18 n 04 programmer 0 computer_programmer 0 coder 0 software_engineer 0 008 @ 09615807 n 0000 @ 09951274 n 0000 ;c 06128570 n 0000 + 00994076 v 0301 + 01747717 v 0101 ~ 09974278 n 0000 ~ 10154871 n 0000 ~ 10155222 n 0000 | a person who designs and writes and tests computer programs -10481561 18 n 01 projectionist 0 003 @ 10605985 n 0000 + 04009801 n 0101 + 04009552 n 0101 | the person who operates the projector in a movie house -10481711 18 n 03 proletarian 0 prole 0 worker 1 004 @ 09610405 n 0000 #m 08180639 n 0000 + 00259957 a 0101 ~ 10023885 n 0000 | a member of the working class (not necessarily employed); "workers of the world--unite!" -10481929 18 n 01 promisee 0 003 @ 09610660 n 0000 + 00884317 v 0101 + 00884011 v 0101 | a person to whom a promise is made -10482054 18 n 02 promiser 0 promisor 0 005 @ 09610660 n 0000 + 00884317 v 0201 + 00884011 v 0201 + 00884011 v 0101 ~ 10760951 n 0000 | a person who makes a promise -10482220 18 n 03 promoter 0 booster 1 plugger 0 005 @ 09773962 n 0000 + 00976487 v 0301 + 02554922 v 0203 + 00976653 v 0103 ~ 09839515 n 0000 | someone who is an active supporter and advocate -10482414 18 n 02 prompter 0 theater_prompter 0 002 @ 09815790 n 0000 + 00877848 v 0101 | someone who assists a performer by providing the next words of a forgotten speech -10482587 18 n 01 promulgator 0 003 @ 10249270 n 0000 ;c 08441203 n 0000 + 00861560 v 0101 | (law) one who promulgates laws (announces a law as a way of putting it into execution) -10482768 18 n 02 proofreader 0 reader 4 002 @ 10475297 n 0000 + 00628302 v 0101 | someone who reads proof in order to find errors and mark corrections -10482921 18 n 01 propagandist 0 005 @ 09610660 n 0000 + 03022739 a 0101 + 06674542 n 0101 ~ 10612373 n 0000 ~i 11003724 n 0000 | a person who disseminates messages calculated to assist some cause or some government -10483138 18 n 02 propagator 0 disseminator 0 003 @ 09610660 n 0000 + 00968211 v 0205 + 00968211 v 0106 | someone who spreads the news -10483274 18 n 01 propagator 1 002 @ 09868270 n 0000 + 00055871 v 0101 | someone who propagates plants (as under glass) -10483395 18 n 03 property_man 0 propman 0 property_master 0 001 @ 10645392 n 0000 | member of the stage crew in charge of properties -10483530 18 n 05 prophet 0 prophesier 0 oracle 0 seer 1 vaticinator 0 008 @ 10020031 n 0000 + 00926702 v 0502 + 00102930 a 0302 + 01881696 a 0101 ~ 09823287 n 0000 ~ 10483799 n 0000 ~ 10595361 n 0000 + 00918312 v 0501 | an authoritative person who divines the future -10483799 18 n 01 prophetess 0 002 @ 10483530 n 0000 ~i 09596186 n 0000 | a woman prophet -10483890 18 n 01 prophet 1 027 @ 09628382 n 0000 + 01881696 a 0102 + 01881696 a 0101 ~i 10816136 n 0000 ~i 10922019 n 0000 ~i 10956612 n 0000 ~i 10964520 n 0000 ~i 11021100 n 0000 ~i 11021916 n 0000 ~i 11061225 n 0000 ~i 11074140 n 0000 ~i 11082842 n 0000 ~i 11083656 n 0000 ~i 11085559 n 0000 ~i 11089868 n 0000 ~i 11150973 n 0000 ~i 11153783 n 0000 ~i 11178059 n 0000 ~i 11184092 n 0000 ~i 11191475 n 0000 ~i 11193392 n 0000 ~i 11199137 n 0000 ~i 11211236 n 0000 ~i 11279874 n 0000 ~i 11405319 n 0000 ~i 11406023 n 0000 ~i 11407715 n 0000 | someone who speaks by divine inspiration; someone who is an interpreter of the will of God -10484526 18 n 02 proposer 0 mover 1 006 @ 10383816 n 0000 ;c 06652878 n 0000 + 00879356 v 0201 + 00014549 v 0202 + 00706243 v 0102 ~ 10360101 n 0000 | (parliamentary procedure) someone who makes a formal motion -10484739 18 n 01 propositus 0 001 @ 00007846 n 0000 | the person immediately affected by or concerned with an action -10484858 18 n 04 prosecutor 0 public_prosecutor 0 prosecuting_officer 0 prosecuting_attorney 0 007 @ 10372373 n 0000 @ 10249950 n 0000 ;c 08441203 n 0000 + 02581900 v 0101 + 02581477 v 0101 ~ 10019072 n 0000 ~ 10649962 n 0000 | a government official who conducts criminal prosecutions on behalf of the state -10485168 18 n 01 proselyte 0 002 @ 09962414 n 0000 + 00769834 v 0101 | a new convert; especially a gentile converted to Judaism -10485298 18 n 01 prospector 0 003 @ 10319796 n 0000 + 00648071 v 0101 ~ 10627714 n 0000 | someone who explores an area for mineral deposits -10485440 18 n 0c prostitute 0 cocotte 0 whore 0 harlot 0 bawd 0 tart 0 cyprian 2 fancy_woman 1 working_girl 1 sporting_lady 0 lady_of_pleasure 0 woman_of_the_street 0 012 @ 10787470 n 0000 + 00424787 a 0501 + 00748155 n 0303 + 02580577 v 0301 + 01427695 v 0301 + 02554066 v 0101 ~ 09889065 n 0000 ~ 09890296 n 0000 ~ 09941172 n 0000 ~ 10001882 n 0000 ~ 10663315 n 0000 ~ 10779416 n 0000 | a woman who engages in sexual intercourse for money -10485883 18 n 01 protectionist 0 002 @ 09774783 n 0000 + 06658786 n 0101 | an advocate of protectionism -10485989 18 n 01 protege 0 002 @ 09627906 n 0000 ~ 10486166 n 0000 | a person who receives support and protection from an influential patron who furthers the protege's career -10486166 18 n 01 protegee 0 001 @ 10485989 n 0000 | a woman protege -10486236 18 n 01 protozoologist 0 002 @ 10806222 n 0000 + 06073748 n 0101 | a zoologist who studies protozoans -10486349 18 n 01 provider 1 002 @ 09608709 n 0000 + 01182709 v 0101 | someone who provides the means for subsistence -10486468 18 n 01 provost 0 001 @ 09758885 n 0000 | a high-ranking university administrator -10486561 18 n 01 provost_marshal 0 002 @ 10317500 n 0000 ;c 08199025 n 0000 | the supervisor of the military police -10486679 18 n 03 prowler 0 sneak 1 stalker 2 006 @ 10213652 n 0000 + 02001252 v 0301 + 02088974 a 0202 + 02088974 a 0203 + 01911888 v 0201 + 01918304 v 0101 | someone who prowls or sneaks about; usually with unlawful intentions -10486909 18 n 03 proxy 0 placeholder 0 procurator 1 001 @ 09777353 n 0000 | a person authorized to act for another -10487026 18 n 02 prude 0 puritan 1 003 @ 09631463 n 0000 + 01300370 a 0202 + 01880163 a 0205 | a person excessively concerned about propriety and decorum -10487182 18 n 02 pruner 0 trimmer 0 003 @ 09632518 n 0000 + 01321002 v 0204 + 01321002 v 0107 | a worker who thins out and trims trees and shrubs; "untouched by the pruner's axe" -10487363 18 n 01 psalmist 0 004 @ 09947232 n 0000 + 06466787 n 0101 + 06466677 n 0101 + 01730059 v 0101 | a composer of sacred songs; "David is called The Psalmist because he is believed to be the author of the Book of Psalms" -10487592 18 n 01 psephologist 0 002 @ 10620758 n 0000 + 06152311 n 0101 | a sociologist who studies election trends -10487710 18 n 01 pseudohermaphrodite 0 002 @ 09857007 n 0000 + 01479509 a 0101 | someone having external genitalia of one sex and internal sex organs of the other sex; not a true hermaphrodite because there is no ambiguity in the sex of the external genitalia and hence no question about gender at birth -10488016 18 n 03 psychiatrist 0 head-shrinker 1 shrink 0 010 @ 10632576 n 0000 + 06055946 n 0101 ~ 09783653 n 0000 ~ 09790278 n 0000 ~i 11060805 n 0000 ~i 11080987 n 0000 ~i 11174354 n 0000 ~i 11174563 n 0000 ~i 11174730 n 0000 ~i 11324785 n 0000 | a physician who specializes in psychiatry -10488309 18 n 01 psychic 0 005 @ 10370381 n 0000 + 01599898 a 0101 ~ 09925953 n 0000 ~ 10306279 n 0000 ~ 10488513 n 0000 | a person apparently sensitive to things beyond the natural range of perception -10488513 18 n 01 spirit_rapper 0 001 @ 10488309 n 0000 | someone who claims to receive messages from the dead in the form of raps on a table -10488656 18 n 01 psycholinguist 0 003 @ 10488865 n 0000 @ 10264437 n 0000 + 06140587 n 0101 | a person (usually a psychologist but sometimes a linguist) who studies the psychological basis of human language -10488865 18 n 01 psychologist 0 026 @ 10560637 n 0000 + 06136258 n 0101 ~ 09608520 n 0000 ~ 10195261 n 0000 ~ 10398806 n 0000 ~ 10488656 n 0000 ~ 10489426 n 0000 ~i 10851282 n 0000 ~i 10874921 n 0000 ~i 10891428 n 0000 ~i 10891569 n 0000 ~i 10898693 n 0000 ~i 10964261 n 0000 ~i 10997234 n 0000 ~i 11024908 n 0000 ~i 11079392 n 0000 ~i 11094611 n 0000 ~i 11122579 n 0000 ~i 11212786 n 0000 ~i 11234292 n 0000 ~i 11268523 n 0000 ~i 11300893 n 0000 ~i 11304461 n 0000 ~i 11341137 n 0000 ~i 11376400 n 0000 ~i 11402626 n 0000 | a scientist trained in psychology -10489426 18 n 01 psychophysicist 0 003 @ 10488865 n 0000 + 06139491 n 0101 ~i 11317519 n 0000 | a psychologist trained in psychophysics -10489564 18 n 02 sociopath 0 psychopath 0 002 @ 10354898 n 0000 + 02799173 a 0101 | someone with a sociopathic personality; a person with an antisocial personality disorder (`psychopath' was once widely used but has now been superseded by `sociopath') -10489818 18 n 01 psychopomp 0 001 @ 09483738 n 0000 | a conductor of souls to the afterworld; "Hermes was their psychopomp" -10489944 18 n 02 psychotherapist 0 clinical_psychologist 0 004 @ 10707233 n 0000 + 06056923 n 0101 + 00700652 n 0101 ~ 10912626 n 0000 | a therapist who deals with mental and emotional disorders -10490141 18 n 03 psychotic 0 psychotic_person 0 psycho 0 005 @ 10595647 n 0000 + 02077469 a 0101 ~ 09900391 n 0000 ~ 10398370 n 0000 ~ 10556704 n 0000 | a person afflicted with psychosis -10490330 18 n 01 pteridologist 0 001 @ 09617867 n 0000 | an expert in the study of ferns -10490421 18 n 02 publican 0 tavern_keeper 0 003 @ 09841188 n 0000 ;r 08860123 n 0000 ~ 10691764 n 0000 | the keeper of a public house -10490557 18 n 01 public_defender 0 002 @ 10249950 n 0000 ;c 08441203 n 0000 | a lawyer who represents indigent defendants at public expense -10490699 18 n 03 publicist 0 publicizer 0 publiciser 0 010 @ 09610660 n 0000 + 00975902 v 0304 + 00954608 v 0302 + 00975902 v 0202 + 00954608 v 0201 + 00975902 v 0102 + 00975902 v 0104 ~ 09773962 n 0000 ~ 10469611 n 0000 ~ 10579835 n 0000 | someone who publicizes -10490965 18 n 01 public_relations_person 0 002 @ 00007846 n 0000 ~ 10636014 n 0000 | a person employed to establish and promote a favorable relationship with the public -10491136 18 n 01 public_servant 0 003 @ 10053808 n 0000 ;c 00181781 n 0000 ~ 10620027 n 0000 | someone who holds a government position (either by election or appointment) -10491309 18 n 01 publisher 0 009 @ 10480253 n 0000 + 01745722 v 0102 + 00967625 v 0101 ~i 10831003 n 0000 ~i 10836862 n 0000 ~i 11061552 n 0000 ~i 11143933 n 0000 ~i 11196934 n 0000 ~i 11211870 n 0000 | a person engaged in publishing periodicals or books or music -10491575 18 n 02 publisher 1 newspaper_publisher 0 011 @ 10388924 n 0000 + 01745722 v 0102 + 00967625 v 0101 ~ 10469786 n 0000 ~i 10839791 n 0000 ~i 11029298 n 0000 ~i 11030260 n 0000 ~i 11037278 n 0000 ~i 11248426 n 0000 ~i 11290107 n 0000 ~i 11290272 n 0000 | the proprietor of a newspaper -10491869 18 n 01 puddler 0 002 @ 10216928 n 0000 + 01624743 v 0101 | a worker who turns pig iron into wrought iron by puddling -10491998 18 n 01 pudge 0 002 @ 10055730 n 0000 + 00987510 a 0103 | a short fat person -10492086 18 n 01 puerpera 0 002 @ 10332385 n 0000 + 03039648 a 0101 | a woman in childbirth or shortly thereafter -10492202 18 n 03 puller 0 tugger 0 dragger 0 007 @ 09632518 n 0000 + 01454810 v 0304 + 01453433 v 0301 + 01454636 v 0201 + 01453256 v 0201 + 01452918 v 0201 + 01448100 v 0101 | someone who pulls or tugs or drags in an effort to move something -10492447 18 n 01 puller 1 004 @ 10335931 n 0000 + 01609287 v 0101 ~ 10793019 n 0000 ~ 10802147 n 0000 | someone who applies force so as to cause motion toward herself or himself -10492627 18 n 01 puncher 1 002 @ 09870208 n 0000 + 01415285 v 0101 | someone who delivers punches -10492727 18 n 01 punching_bag 0 001 @ 10752093 n 0000 | a person on whom another person vents their anger; "he resigned because his boss used him as a punching bag" -10492894 18 n 02 punk_rocker 0 punk 2 002 @ 09772029 n 0000 #m 08370505 n 0000 | a teenager or young adult who is a performer (or enthusiast) of punk rock and a member of the punk youth subculture -10493093 18 n 01 punster 0 002 @ 10191943 n 0000 + 06781581 n 0101 | someone overly fond of making puns -10493199 18 n 01 punter 0 003 @ 10230580 n 0000 ;c 00468480 n 0000 + 01372408 v 0101 | (football) a person who kicks the football by dropping it from the hands and contacting it with the foot before it hits the ground -10493419 18 n 01 punter 2 002 @ 09861946 n 0000 + 01372189 v 0101 | someone who propels a boat with a pole -10493528 18 n 02 puppet_ruler 0 puppet_leader 0 002 @ 10541229 n 0000 @ 09623038 n 0000 | a leader or ruler who is chosen by a despot to head a government -10493685 18 n 01 puppeteer 0 004 @ 10415638 n 0000 + 04025350 n 0101 + 04025130 n 0101 ~i 11043836 n 0000 | one who operates puppets or marionettes -10493835 18 n 02 puppy 0 pup 0 001 @ 10804406 n 0000 | an inexperienced young person -10493922 18 n 01 purchasing_agent 0 001 @ 09777353 n 0000 | an agent who purchases goods or services for another -10494037 18 n 01 purist 0 002 @ 10411356 n 0000 + 07191950 n 0101 | someone who insists on great precision and correctness (especially in the use of words) -10494195 18 n 01 puritan 0 003 @ 09758173 n 0000 + 01300370 a 0102 + 01300370 a 0103 | someone who adheres to strict religious principles; someone opposed to sensual pleasures -10494373 18 n 01 Puritan 2 001 @ 09679316 n 0000 | a member of a group of English Protestants who in the 16th and 17th centuries thought that the Protestant Reformation under Elizabeth was incomplete and advocated the simplification and regulation of forms of worship -10494643 18 n 01 purser 0 001 @ 10371741 n 0000 | an officer aboard a ship who keeps accounts and attends to the passengers' welfare -10494778 18 n 02 pursued 0 chased 0 001 @ 10192926 n 0000 | a person who is being chased; "the film jumped back and forth from the pursuer to the pursued" -10494935 18 n 02 pursuer 0 chaser 0 004 @ 10100124 n 0000 + 02001858 v 0201 + 02000868 v 0101 ~ 09869447 n 0000 | a person who is pursuing and trying to overtake or capture; "always before he had been able to outwit his pursuers" -10495167 18 n 01 pursuer 1 002 @ 00007846 n 0000 + 02375131 v 0103 | a person who pursues some plan or goal; "a pursuer of truth" -10495299 18 n 01 purveyor 0 002 @ 10677271 n 0000 + 02338975 v 0102 | someone who supplies provisions (especially food) -10495421 18 n 02 pusher 0 shover 0 004 @ 10335931 n 0000 + 01871680 v 0202 + 01584701 v 0201 ~ 10365514 n 0000 | someone who pushes -10495555 18 n 05 pusher 1 drug_peddler 0 peddler 1 drug_dealer 0 drug_trafficker 0 004 @ 10721470 n 0000 @ 09977660 n 0000 + 02302817 v 0301 + 02245555 v 0101 | an unlicensed dealer in illegal drugs -10495756 18 n 02 pusher 2 thruster 0 002 @ 10213652 n 0000 + 02062212 v 0204 | one who intrudes or pushes himself forward -10495880 18 n 01 pushover 0 001 @ 10098092 n 0000 | someone who is easily taken advantage of -10495975 18 n 01 pussycat 0 001 @ 00007846 n 0000 | a person who is regarded as easygoing and agreeable -10496081 18 n 01 putter 0 003 @ 10136959 n 0000 + 01403785 v 0101 + 01403540 v 0101 | a golfer who is putting -10496193 18 n 02 putterer 0 potterer 0 007 @ 09993252 n 0000 + 02415394 v 0201 + 01473346 v 0203 + 01473176 v 0202 + 02415394 v 0102 + 01473346 v 0101 + 01473176 v 0101 | a person who putters about -10496393 18 n 01 putz 0 002 @ 10100761 n 0000 ;c 06951067 n 0000 | (Yiddish) a fool; an idiot -10496489 18 n 02 Pygmy 0 Pigmy 0 001 @ 10613505 n 0000 | any member of various peoples having an average height of less than five feet -10496626 18 n 02 pygmy 1 pigmy 1 001 @ 10613505 n 0000 | an unusually small individual -10496715 18 n 01 pyrographer 0 002 @ 09812338 n 0000 + 00938240 n 0101 | an artist who practices pyrography -10496825 18 n 01 pyromancer 0 002 @ 10020031 n 0000 + 05778029 n 0101 | one who practices pyromancy -10496927 18 n 01 python 1 001 @ 09545324 n 0000 | a soothsaying spirit or a person who is possessed by such a spirit -10497046 18 n 01 pythoness 0 001 @ 09503282 n 0000 | a witch with powers of divination -10497135 18 n 01 qadi 0 001 @ 10225219 n 0000 | an Islamic judge -10497202 18 n 01 quack 0 003 @ 10020890 n 0000 @ 10334782 n 0000 + 00011982 v 0101 | an untrained person who pretends to be a physician and who dispenses medical advice -10497373 18 n 01 quadripara 0 002 @ 10332385 n 0000 ;c 06053439 n 0000 | (obstetrics) woman who has given birth to a viable infant in each of four pregnancies -10497534 18 n 01 quadriplegic 0 001 @ 10158756 n 0000 | a person who is paralyzed in both arms and both legs -10497645 18 n 02 quadruplet 0 quad 0 001 @ 10595164 n 0000 | one of four children born at the same time from the same pregnancy -10497775 18 n 01 quaestor 0 002 @ 10372373 n 0000 ;c 06150633 n 0000 | any of several public officials of ancient Rome (usually in charge of finance and administration) -10497946 18 n 01 quaffer 0 002 @ 10034614 n 0000 + 01202068 v 0102 | a person who drinks heartily -10498046 18 n 02 quaker 1 trembler 0 003 @ 09614047 n 0000 + 01888511 v 0201 + 01889129 v 0102 | one who quakes and trembles with (or as with) fear -10498196 18 n 01 qualifier 0 002 @ 09613191 n 0000 + 02679012 v 0101 | a contestant who meets certain requirements and so qualifies to take part in the next stage of competition; "the tournament was won by a late qualifier" -10498422 18 n 02 quarreler 0 quarreller 0 003 @ 09615465 n 0000 + 00775156 v 0201 + 00775156 v 0101 | a disputant who quarrels -10498551 18 n 02 quarryman 0 quarrier 0 004 @ 09632518 n 0000 + 01163847 v 0201 ~ 09873604 n 0000 ~ 10659294 n 0000 | a man who works in a quarry -10498699 18 n 01 quarter 0 001 @ 00007846 n 0000 | an unspecified person; "he dropped a word in the right quarter" -10498816 18 n 03 quarterback 0 signal_caller 0 field_general 0 003 @ 09830194 n 0000 ;c 00468480 n 0000 + 01076370 v 0101 | (football) the person who plays quarterback -10498986 18 n 01 quartermaster 0 001 @ 09809749 n 0000 | an army officer who provides clothing and subsistence for troops -10499110 18 n 01 quartermaster_general 0 001 @ 10644839 n 0000 | a staff officer in charge of supplies for a whole army -10499232 18 n 01 Quebecois 0 001 @ 09696585 n 0000 | a native or inhabitant of Quebec (especially one who speaks French) -10499355 18 n 03 queen 0 queen_regnant 0 female_monarch 0 010 @ 10083823 n 0000 #m 08153437 n 0000 ! 10231515 n 0302 + 01592262 a 0101 ! 10231515 n 0101 ~ 10499631 n 0000 ~i 10901827 n 0000 ~i 11073795 n 0000 ~i 11131981 n 0000 ~i 11162206 n 0000 | a female sovereign ruler -10499631 18 n 01 Queen_of_England 0 008 @ 10499355 n 0000 ~i 10818469 n 0000 ~i 10957330 n 0000 ~i 10957748 n 0000 ~i 11015872 n 0000 ~i 11161664 n 0000 ~i 11162010 n 0000 ~i 11365857 n 0000 | the sovereign ruler of England -10499857 18 n 01 queen 1 016 @ 10083823 n 0000 #m 08153437 n 0000 + 01592262 a 0101 ~ 10500419 n 0000 ~ 10500506 n 0000 ~ 10500717 n 0000 ~i 10855431 n 0000 ~i 10887790 n 0000 ~i 10955920 n 0000 ~i 10961372 n 0000 ~i 11062111 n 0000 ~i 11084514 n 0000 ~i 11156548 n 0000 ~i 11202722 n 0000 ~i 11224046 n 0000 ~i 11294680 n 0000 | the wife or widow of a king -10500217 18 n 01 queen 4 001 @ 10418101 n 0000 | something personified as a woman who is considered the best or most important of her kind; "Paris is the queen of cities"; "the queen of ocean liners" -10500419 18 n 01 queen_consort 0 001 @ 10499857 n 0000 | the wife of a reigning king -10500506 18 n 01 queen_dowager 0 002 @ 10499857 n 0000 ~ 10500603 n 0000 | the widow of a king -10500603 18 n 01 queen_mother 0 001 @ 10500506 n 0000 | a queen dowager who is mother of the reigning sovereign -10500717 18 n 01 queen_regent 0 001 @ 10499857 n 0000 | a queen who serves as ruler when the king cannot -10500824 18 n 01 Queen's_Counsel 0 001 @ 10235385 n 0000 | Counsel to the Crown when the British monarch is a queen -10500942 18 n 02 question_master 0 quizmaster 0 002 @ 10299250 n 0000 ;r 08860123 n 0000 | the host or chairman of a radio or tv quiz show or panel game -10501097 18 n 01 Quetzalcoatl 0 001 @i 09505418 n 0000 | an Aztec deity represented as a plumed serpent -10501203 18 n 04 quibbler 0 caviller 0 caviler 0 pettifogger 1 006 @ 10284965 n 0000 + 00774056 v 0403 + 00808671 v 0301 + 00808671 v 0201 + 00810385 v 0101 + 00774056 v 0101 | a disputant who quibbles; someone who raises annoying petty objections -10501453 18 n 02 quick_study 0 sponge 1 001 @ 10251779 n 0000 | someone able to acquire new knowledge and skills rapidly and easily; "she soaks up foreign languages like a sponge" -10501635 18 n 01 quietist 0 002 @ 10343554 n 0000 + 05949088 n 0101 | a religious mystic who follows quietism -10501747 18 n 01 quintipara 0 002 @ 10332385 n 0000 ;c 06053439 n 0000 | (obstetrics) woman who has given birth to a viable infant in each of five pregnancies -10501908 18 n 03 quintuplet 0 quint 0 quin 0 001 @ 10595164 n 0000 | one of five children born at the same time from the same pregnancy -10502046 18 n 01 quitter 0 005 @ 00007846 n 0000 + 01083044 v 0107 ~ 09755657 n 0000 ~ 09995925 n 0000 ~ 10007109 n 0000 | a person who gives up too easily -10502204 18 n 01 quoter 0 002 @ 09610660 n 0000 + 01023259 v 0101 | a communicator (speaker or writer) who uses quotations -10502329 18 n 01 rabbi 0 007 @ 09505153 n 0000 #m 08113910 n 0000 ;c 06987124 n 0000 + 02930765 a 0101 + 02930765 a 0102 ~ 09788761 n 0000 ~i 11050436 n 0000 | spiritual leader of a Jewish congregation; qualified to expound and apply Jewish law -10502576 18 n 03 racer 0 race_driver 0 automobile_driver 0 004 @ 10034906 n 0000 + 02059462 v 0101 ~ 09619734 n 0000 ~i 11213966 n 0000 | someone who drives racing cars at high speeds -10502762 18 n 01 racetrack_tout 0 001 @ 10712835 n 0000 | someone who offers advice about betting on horses (either to influence the odds or in the hope of sharing some of the winnings) -10502950 18 n 02 racist 0 racialist 0 004 @ 09853645 n 0000 + 01155044 n 0202 + 06203758 n 0101 + 01155044 n 0101 | a person with a prejudiced belief that one race is superior to others -10503138 18 n 01 racker 0 001 @ 09821831 n 0000 | an attendant who puts pool or billiard balls into a rack -10503247 18 n 01 racketeer 0 004 @ 09977660 n 0000 #m 08245059 n 0000 + 00775943 n 0101 ~ 09832762 n 0000 | someone who commits crimes for profit (especially one who obtains money by fraud or extortion) -10503452 18 n 01 radical 1 010 @ 00007846 n 0000 ~ 09791816 n 0000 ~ 09863749 n 0000 ~ 10074735 n 0000 ~ 10255567 n 0000 ~ 10527334 n 0000 ~ 10702781 n 0000 ~ 10731013 n 0000 ~ 10786892 n 0000 ~ 10804636 n 0000 | a person who has radical ideas or opinions -10503710 18 n 01 radio_announcer 0 001 @ 09795124 n 0000 | an announcer whose voice is broadcast on radio -10503818 18 n 01 radiobiologist 0 002 @ 09855630 n 0000 ~ 11012993 n 0000 | a biologist who studies the effects of radiation on living organisms -10503965 18 n 01 radiographer 0 003 @ 10632576 n 0000 + 13545382 n 0101 + 00904428 n 0101 | a person who makes radiographs -10504090 18 n 01 radiologic_technologist 0 001 @ 10560637 n 0000 | a scientist trained in radiological technology -10504206 18 n 02 radiologist 0 radiotherapist 0 004 @ 10632576 n 0000 + 00705580 n 0201 + 06062407 n 0101 + 00903309 n 0102 | a medical specialist who uses radioactive substances and X-rays in the treatment of disease -10504426 18 n 01 radio_operator 0 002 @ 10378412 n 0000 ~ 10158139 n 0000 | someone who operates a radio transmitter -10504545 18 n 03 raftsman 0 raftman 0 rafter 0 002 @ 09629752 n 0000 + 01842508 v 0301 | someone who travels by raft -10504664 18 n 02 ragamuffin 0 tatterdemalion 0 003 @ 10741367 n 0000 + 00679717 a 0206 + 02583619 a 0202 | a dirty shabbily clothed urchin -10504805 18 n 01 ragpicker 0 001 @ 09632274 n 0000 | an unskilled person who picks up rags from trash cans and public dumps as a means of livelihood -10504956 18 n 01 ragsorter 0 001 @ 09632518 n 0000 | a worker who sorts rags and old clothing for new uses (as in papermaking) -10505085 18 n 01 railbird 0 001 @ 10639925 n 0000 | a fan of racing who watches races from the outer rail of the track -10505206 18 n 02 rail-splitter 0 splitter 2 002 @ 10241300 n 0000 + 01556572 v 0202 | a laborer who splits logs to build split-rail fences -10505347 18 n 01 rainmaker 0 001 @ 10626439 n 0000 | American Indian medicine man who attempt to make it rain -10505459 18 n 01 rainmaker 1 002 @ 10069645 n 0000 ;u 07075172 n 0000 | executive who is very successful in bringing in business to his company or firm -10505613 18 n 01 raiser 1 002 @ 09875188 n 0000 + 01156406 v 0101 | a bridge partner who increases the partner's bid -10505732 18 n 02 raja 0 rajah 0 001 @ 09807754 n 0000 | a prince or king in India -10505816 18 n 02 Rajput 0 Rajpoot 0 001 @ 09713501 n 0000 | a member of the dominant Hindu military caste in northern India -10505942 18 n 06 rake 0 rakehell 0 profligate 0 rip 0 blood 0 roue 0 002 @ 10257647 n 0000 + 01549568 a 0307 | a dissolute man in fashionable society -10506094 18 n 01 rambler 1 002 @ 09610660 n 0000 + 02684453 v 0102 | a person whose speech or writing is not well organized -10506220 18 n 01 rambler 0 002 @ 10412055 n 0000 + 01881180 v 0108 | a person who takes long walks in the country -10506336 18 n 01 ramrod 0 001 @ 10388732 n 0000 | a harshly demanding overseer -10506417 18 n 01 rancher 0 003 @ 10078806 n 0000 + 02420430 v 0101 ~ 10144962 n 0000 | a person who owns or operates a ranch -10506544 18 n 01 ranch_hand 0 002 @ 10176679 n 0000 ~ 09972661 n 0000 | a hired hand on a ranch -10506642 18 n 02 rani 0 ranee 0 001 @ 09807754 n 0000 | (the feminine of raja) a Hindu princess or the wife of a raja -10506762 18 n 01 ranker 0 003 @ 10622053 n 0000 ;r 08860123 n 0000 + 00660102 v 0101 | an enlisted soldier who serves in the ranks of the armed forces -10506915 18 n 01 ranker 1 003 @ 09942970 n 0000 ;r 08860123 n 0000 + 00660102 v 0101 | a commissioned officer who has been promoted from enlisted status -10507070 18 n 02 ranter 0 raver 0 003 @ 10630188 n 0000 + 01051956 v 0206 + 01051956 v 0101 | someone who rants and raves; speaks in a violent or loud manner -10507230 18 n 02 raper 0 rapist 0 003 @ 09821253 n 0000 @ 09977660 n 0000 + 02567519 v 0101 | someone who forces another to have sexual intercourse -10507380 18 n 01 rape_suspect 0 001 @ 10681383 n 0000 | someone who is suspected of committing rape -10507482 18 n 01 rapper 0 001 @ 10599806 n 0000 | someone who performs rap music -10507565 18 n 01 rapporteur 0 001 @ 10516874 n 0000 | a recorder appointed by a committee to prepare reports of the meetings -10507692 18 n 02 rare_bird 0 rara_avis 0 001 @ 09606527 n 0000 | a rare or unique person -10507783 18 n 02 Raskolnikov 0 Rodya_Raskolnikov 0 001 @i 09587565 n 0000 | a fictional character in Dostoevsky's novel `Crime and Punishment'; he kills old women because he believes he is beyond the bounds of good or evil -10508008 18 n 02 rat-catcher 0 disinfestation_officer 0 001 @ 10791221 n 0000 | a workman employed to destroy or drive away vermin -10508141 18 n 01 ratepayer 0 002 @ 10694163 n 0000 ;r 08860123 n 0000 | a person who pays local rates (especially a householder) -10508272 18 n 01 raver 1 002 @ 09990415 n 0000 + 02492054 v 0101 | a participant in a rave dancing party -10508379 18 n 01 raw_recruit 0 001 @ 10512372 n 0000 | an inexperienced and untrained recruit -10508475 18 n 03 reactionary 0 ultraconservative 0 extreme_right-winger 0 005 @ 09957156 n 0000 + 00575126 a 0201 + 02030562 a 0101 ~ 09869706 n 0000 ~ 09937489 n 0000 | an extreme conservative; an opponent of progress or liberalism -10508710 18 n 01 reader 0 005 @ 10557854 n 0000 + 08222571 n 0101 + 00626428 v 0101 + 00625119 v 0101 ~ 09866559 n 0000 | a person who enjoys reading -10508862 18 n 01 reader 3 007 @ 10266328 n 0000 + 08222571 n 0101 + 00626428 v 0101 + 00625119 v 0101 ~ 09995253 n 0000 ~ 10292714 n 0000 ~ 10605510 n 0000 | a person who can read; a literate person -10509063 18 n 01 reading_teacher 0 001 @ 10694258 n 0000 | someone who teaches students to read -10509161 18 n 01 realist 0 005 @ 10423589 n 0000 + 02787290 a 0101 + 13955461 n 0103 + 05974564 n 0102 ~ 10463582 n 0000 | a philosopher who believes that universals are real and exist independently of anyone thinking of them -10509389 18 n 01 realist 1 005 @ 10391653 n 0000 + 01979985 a 0102 + 13955461 n 0103 + 08469457 n 0102 + 05151869 n 0101 | a painter who represents the world realistically and not in an idealized or romantic style -10509605 18 n 01 realist 2 005 @ 00007846 n 0000 + 01939984 a 0101 + 13955461 n 0103 + 05151869 n 0101 ~ 10463386 n 0000 | a person who accepts the world as it literally is and deals with it accordingly -10509810 18 n 05 real_estate_broker 0 real_estate_agent 0 estate_agent 0 land_agent 1 house_agent 0 002 @ 09777012 n 0000 ~ 10510078 n 0000 | a person who is authorized to act as an agent for the sale of land; "in England they call a real estate agent a land agent" -10510078 18 n 01 Realtor 0 003 @ 10509810 n 0000 #m 08487319 n 0000 ;u 06851742 n 0000 | a real estate agent who is a member of the National Association of Realtors -10510245 18 n 01 rear_admiral 0 001 @ 10094584 n 0000 | an admiral junior to a vice admiral -10510339 18 n 02 reasoner 0 ratiocinator 0 007 @ 10708454 n 0000 + 00633265 v 0201 + 00772189 v 0102 + 00634472 v 0101 + 00632627 v 0101 ~ 09789898 n 0000 ~ 09899929 n 0000 | someone who reasons logically -10510546 18 n 04 rebutter 0 disprover 0 refuter 0 confuter 0 007 @ 09997404 n 0000 + 00667424 v 0402 + 00814850 v 0301 + 00667747 v 0301 + 00667424 v 0201 + 00814850 v 0102 + 00667747 v 0102 | a debater who refutes or disproves by offering contrary evidence or argument -10510818 18 n 03 receiver 2 pass_receiver 0 pass_catcher 0 001 @ 10101634 n 0000 | a football player who catches (or is supposed to catch) a forward pass -10510974 18 n 01 receiver 3 001 @ 10701180 n 0000 | the tennis player who receives the serve -10511069 18 n 01 receptionist 0 003 @ 10569744 n 0000 + 06630852 n 0101 + 00090253 n 0101 | a secretary whose main duty is to answer the telephone and receive visitors -10511239 18 n 03 recidivist 0 backslider 0 reversionist 0 003 @ 09633969 n 0000 + 00204585 v 0202 + 00068617 n 0101 | someone who lapses into previous undesirable patterns of behavior -10511425 18 n 03 recidivist 1 repeater 1 habitual_criminal 0 003 @ 09977660 n 0000 + 01734502 v 0204 + 00068617 n 0101 | someone who is repeatedly arrested for criminal behavior (especially for the same criminal behavior) -10511649 18 n 01 recitalist 0 003 @ 10623650 n 0000 + 06893441 n 0101 + 07234881 n 0102 | a musician who gives recitals -10511771 18 n 01 reciter 0 001 @ 10630188 n 0000 | someone who recites from memory -10511856 18 n 02 record-breaker 0 record-holder 0 001 @ 09906704 n 0000 | someone who breaks a record -10511960 18 n 01 recorder 1 002 @ 10225219 n 0000 ;r 08860123 n 0000 | a barrister or solicitor who serves as part-time judge in towns or boroughs -10512109 18 n 01 recorder_player 0 001 @ 10340312 n 0000 | someone who plays the recorder -10512201 18 n 02 recruit 0 enlistee 0 004 @ 10355449 n 0000 + 01097500 v 0201 + 02471327 v 0105 + 01098452 v 0101 | any new member or supporter (as in the armed forces) -10512372 18 n 02 recruit 1 military_recruit 0 006 @ 10058585 n 0000 + 01098452 v 0101 ~ 09857957 n 0000 ~ 10508379 n 0000 ~ 10641301 n 0000 ~ 10802507 n 0000 | a recently enlisted soldier -10512562 18 n 01 recruiter 0 003 @ 10372373 n 0000 + 01098452 v 0101 ~ 10512859 n 0000 | an official who enlists personnel for military service -10512708 18 n 01 recruiter 1 004 @ 10677271 n 0000 + 02471327 v 0105 ~ 10163593 n 0000 ~ 10562968 n 0000 | someone who supplies members or employees -10512859 18 n 01 recruiting-sergeant 0 002 @ 10580772 n 0000 @ 10512562 n 0000 | a sergeant deputized to enlist recruits -10512982 18 n 01 rectifier 0 002 @ 00007846 n 0000 + 00199912 v 0101 | a person who corrects or sets right; "a rectifier of prejudices" -10513120 18 n 05 redact 0 redactor 0 reviser 0 rewriter 0 rewrite_man 0 007 @ 10044879 n 0000 + 01700934 v 0401 + 00995838 v 0401 + 00996102 v 0301 + 00200397 v 0202 + 00200397 v 0102 ~ 09754907 n 0000 | someone who puts text into appropriate form for publication -10513386 18 n 01 redcap 0 001 @ 10455447 n 0000 | a porter who helps passengers with their baggage at a railroad station -10513509 18 n 01 redcap 1 002 @ 10317500 n 0000 ;r 08860123 n 0000 | a member of the military police in Britain -10513623 18 n 01 redeemer 1 004 @ 09624980 n 0000 + 02256998 v 0102 + 02256853 v 0101 + 02256732 v 0101 | someone who redeems or buys back (promissory notes or merchandise or commercial paper etc.) -10513823 18 n 04 redhead 0 redheader 0 red-header 0 carrottop 0 001 @ 00007846 n 0000 | someone who has red hair -10513938 18 n 02 redneck 0 cracker 0 001 @ 10544232 n 0000 | a poor White person in the southern United States -10514051 18 n 01 reeler 0 001 @ 10098862 n 0000 | a dancer of reels -10514121 18 n 01 reenactor 0 002 @ 09765278 n 0000 + 01722815 v 0101 | a person who enacts a role in an event that occurred earlier -10514255 18 n 01 referral 0 001 @ 09898892 n 0000 | a person whose case has been referred to a specialist or professional group; "the patient is a referral from Dr. Bones" -10514429 18 n 02 referee 0 ref 0 004 @ 10372076 n 0000 ;c 00523513 n 0000 + 01085237 v 0101 + 01952898 v 0101 | (sports) the chief official (as in boxing or American football) who is expected to ensure fair play -10514643 18 n 01 referee 2 002 @ 10249950 n 0000 ;c 08441203 n 0000 | an attorney appointed by a court to investigate and report on a case -10514784 18 n 01 refiner 0 004 @ 10605985 n 0000 + 00474762 v 0101 + 00474017 v 0102 + 00474492 v 0101 | one whose work is to refine a specific thing; "he was a sugar refiner" -10514962 18 n 04 refinisher 0 renovator 0 restorer 0 preserver 0 004 @ 10605985 n 0000 + 02552449 v 0301 + 00164201 v 0201 + 01265246 v 0101 | a skilled worker who is employed to restore or refinish buildings or antique furniture -10515194 18 n 05 reformer 0 reformist 0 crusader 0 social_reformer 0 meliorist 0 030 @ 09615465 n 0000 + 05945508 n 0501 + 02589576 v 0301 + 00576189 a 0202 + 05967097 n 0201 + 00265673 v 0201 + 00384620 v 0201 + 00265386 v 0201 + 00265386 v 0101 ~ 09756637 n 0000 ~ 09856827 n 0000 ~ 09911051 n 0000 ~ 09924996 n 0000 ~ 10002760 n 0000 ~ 10037922 n 0000 ~ 10060621 n 0000 ~ 10084635 n 0000 ~ 10176475 n 0000 ~ 10210137 n 0000 ~ 10315837 n 0000 ~ 10362195 n 0000 ~ 10466759 n 0000 ~ 10743356 n 0000 ~i 10906048 n 0000 ~i 10937611 n 0000 ~i 11067885 n 0000 ~i 11219121 n 0000 ~i 11282802 n 0000 ~i 11347080 n 0000 ~i 11387179 n 0000 | a disputant who advocates reform -10515863 18 n 01 Reform_Jew 0 002 @ 09681351 n 0000 #m 08095426 n 0000 | liberal Jew who tries to adapt all aspects of Judaism to modern circumstances -10516016 18 n 01 refugee 0 002 @ 10071332 n 0000 ~ 10017890 n 0000 | an exile who flees for safety -10516117 18 n 01 regent 0 003 @ 10541229 n 0000 + 01827261 a 0101 ~i 10887790 n 0000 | someone who rules during the absence or incapacity or minority of the country's monarch -10516294 18 n 02 regent 1 trustee 1 003 @ 09944160 n 0000 #m 08324107 n 0000 + 02349212 v 0203 | members of a governing board -10516422 18 n 01 regicide 0 001 @ 10231087 n 0000 | someone who commits regicide; the killer of a king -10516527 18 n 02 registered_nurse 0 RN 0 003 @ 10366966 n 0000 ~ 10367694 n 0000 ~ 10367819 n 0000 | a graduate nurse who has passed examinations for registration -10516692 18 n 01 registrant 0 002 @ 00007846 n 0000 + 02471690 v 0101 | a person who is formally entered (along with others) in a register (and who obtains certain rights thereby) -10516874 18 n 03 registrar 0 record-keeper 0 recorder 0 003 @ 10372373 n 0000 + 01000214 v 0301 ~ 10507565 n 0000 | someone responsible for keeping records -10517032 18 n 01 registrar 1 001 @ 09758885 n 0000 | the administrator responsible for student records -10517137 18 n 01 registrar 3 001 @ 10053808 n 0000 | a person employed to keep a record of the owners of stocks and bonds issued by the company -10517283 18 n 01 Regius_professor 0 001 @ 10480730 n 0000 | holder of a British professorship created by a royal patron -10517405 18 n 03 regular 0 habitue 0 fixture 0 002 @ 10407726 n 0000 + 01067003 a 0101 | a regular patron; "an habitue of the racetrack"; "a bum who is a Central Park fixture" -10517583 18 n 01 regular 1 002 @ 10099375 n 0000 ;c 06148148 n 0000 | a dependable follower (especially in party politics); "he is one of the party regulars" -10517743 18 n 01 regular 2 001 @ 10622053 n 0000 | a soldier in the regular army -10517826 18 n 01 regulator 0 002 @ 10372373 n 0000 + 02511551 v 0101 | an official responsible for control and supervision of a particular activity or area of public interest -10518003 18 n 01 reincarnation 0 002 @ 10418302 n 0000 + 02698726 v 0101 | embodiment in a new form (especially the reappearance or a person in another form); "his reincarnation as a lion" -10518194 18 n 03 reliever 0 relief_pitcher 0 fireman 2 003 @ 10435988 n 0000 + 02412175 v 0102 ~ 09930257 n 0000 | a pitcher who does not start the game -10518349 18 n 03 reliever 2 allayer 0 comforter 1 004 @ 00007846 n 0000 + 01814815 v 0301 + 01815185 v 0202 + 01815185 v 0103 | a person who reduces the intensity (e.g., of fears) and calms and pacifies; "a reliever of anxiety"; "an allayer of fears" -10518602 18 n 01 religious 0 012 @ 09628382 n 0000 + 01782981 a 0101 ~ 10111903 n 0000 ~ 10112129 n 0000 ~ 10112434 n 0000 ~ 10221520 n 0000 ~ 10368009 n 0000 ~ 10518945 n 0000 ~ 10519291 n 0000 ~ 10675876 n 0000 ~ 10760199 n 0000 ~i 11176797 n 0000 | a member of a religious order who is bound by vows of poverty and chastity and obedience -10518945 18 n 01 eremite 0 007 @ 10518602 n 0000 + 02578546 a 0103 + 02578546 a 0102 + 02686950 a 0101 + 02686950 a 0102 ! 10519291 n 0101 ~ 10519126 n 0000 | a Christian recluse -10519126 18 n 02 anchorite 0 hermit 1 004 @ 10518945 n 0000 + 02578546 a 0204 + 02578546 a 0205 + 02578546 a 0101 | one retired from society for religious reasons -10519291 18 n 02 cenobite 0 coenobite 0 006 @ 10518602 n 0000 + 02686630 a 0202 + 02686630 a 0204 + 02686630 a 0101 + 02686630 a 0103 ! 10518945 n 0101 | a member of a religious order living in common -10519494 18 n 01 religious_leader 0 017 @ 09628382 n 0000 @ 09623038 n 0000 ~ 09826945 n 0000 ~ 10152616 n 0000 ~ 10152889 n 0000 ~i 10282014 n 0000 ~i 10813813 n 0000 ~i 10825407 n 0000 ~i 11092541 n 0000 ~i 11104008 n 0000 ~i 11189054 n 0000 ~i 11199394 n 0000 ~i 11275772 n 0000 ~i 11293972 n 0000 ~i 11393124 n 0000 ~i 11393315 n 0000 ~i 11403220 n 0000 | leader of a religious order -10519884 18 n 01 remittance_man 0 001 @ 10071332 n 0000 | an exile living on money sent from home -10519984 18 n 01 remover 0 002 @ 10336234 n 0000 ;r 08860123 n 0000 | someone who works for a company that moves furniture -10520109 18 n 01 Renaissance_man 1 001 @ 10557854 n 0000 | a scholar during the Renaissance who (because knowledge was limited) could know almost everything about many topics -10520286 18 n 02 Renaissance_man 2 generalist 0 002 @ 10557854 n 0000 ! 10631941 n 0201 | a modern scholar who is in a position to acquire more than superficial knowledge about many different interests; "a statistician has to be something of a generalist" -10520544 18 n 01 renegade 0 003 @ 10006842 n 0000 + 00963858 a 0102 + 02583379 v 0102 | someone who rebels and becomes an outlaw -10520675 18 n 01 rent_collector 0 001 @ 09936362 n 0000 | a person who goes from house to house collecting rents for the owner -10520804 18 n 01 renter 1 003 @ 10388924 n 0000 + 02460199 v 0101 + 02208903 v 0103 | an owner of property who receives payment for its use by another person -10520964 18 n 01 rentier 0 001 @ 10216106 n 0000 | someone whose income is from property rents or bond interest and other investments -10521100 18 n 03 repairman 0 maintenance_man 0 service_man 1 004 @ 10308732 n 0000 ~ 09825750 n 0000 ~ 10159289 n 0000 ~ 10731560 n 0000 | a skilled worker whose job is to repair things -10521288 18 n 01 repatriate 0 003 @ 09923673 n 0000 + 02502387 v 0101 + 02503633 v 0101 | a person who has returned to the country of origin or whose citizenship has been restored -10521470 18 n 01 repeater 0 003 @ 00007846 n 0000 + 02595662 v 0101 + 01734502 v 0104 | a person who repeats; "the audience consisted largely of repeaters who had seen the movie many times" -10521662 18 n 03 reporter 0 newsman 0 newsperson 0 004 @ 09610660 n 0000 + 00967098 v 0101 ~ 10521853 n 0000 ~ 10698368 n 0000 | a person who investigates and reports or edits news stories -10521853 18 n 01 newswoman 0 001 @ 10521662 n 0000 | a female newsperson -10521928 18 n 02 repository 0 secretary 2 001 @ 09954639 n 0000 | a person to whom a secret is entrusted -10522035 18 n 01 representative 0 012 @ 10351874 n 0000 ~ 09777353 n 0000 ~ 09782397 n 0000 ~ 09814381 n 0000 ~ 09814488 n 0000 ~ 09960117 n 0000 ~ 10000787 n 0000 ~ 10052694 n 0000 ~ 10164747 n 0000 ~ 10417551 n 0000 ~ 10524076 n 0000 ~ 10738515 n 0000 | a person who represents others -10522324 18 n 02 reprobate 0 miscreant 0 005 @ 09633969 n 0000 + 00621524 a 0104 ~ 10419047 n 0000 ~ 10555430 n 0000 ~ 10793492 n 0000 | a person without moral scruples -10522495 18 n 01 republican 0 002 @ 09774783 n 0000 + 00716892 a 0101 | an advocate of a republic (usually in opposition to a monarchy) -10522633 18 n 01 Republican 1 003 @ 10450303 n 0000 #m 08263113 n 0000 + 02788378 a 0101 | a member of the Republican Party -10522759 18 n 03 rescuer 0 recoverer 0 saver 1 005 @ 00007846 n 0000 + 02550868 v 0304 + 02247977 v 0201 ~ 10549510 n 0000 ~ 10671898 n 0000 | someone who saves something from danger or violence -10522956 18 n 02 research_director 0 director_of_research 0 001 @ 10676877 n 0000 | a supervisor in a research center -10523076 18 n 03 research_worker 0 researcher 0 investigator 1 008 @ 10560637 n 0000 + 00789138 v 0301 + 00877327 v 0201 + 00648224 v 0201 ~ 09617577 n 0000 ~ 09863339 n 0000 ~ 10091256 n 0000 ~ 10456696 n 0000 | a scientist who devotes himself to doing research -10523341 18 n 01 reservist 0 006 @ 10622053 n 0000 #m 08206460 n 0000 ;c 08199025 n 0000 + 08206460 n 0102 ~ 10771066 n 0000 ~ 10772580 n 0000 | a member of a military reserve -10523519 18 n 03 resident 0 occupant 0 occupier 0 023 @ 09620078 n 0000 + 02648639 v 0301 + 00086809 n 0202 + 01054335 n 0201 + 02648639 v 0201 + 02125409 a 0101 + 02648639 v 0102 + 02650552 v 0101 ~ 09782730 n 0000 ~ 09932706 n 0000 ~ 09937688 n 0000 ~ 09988597 n 0000 ~ 10188957 n 0000 ~ 10207370 n 0000 ~ 10313146 n 0000 ! 10362003 n 0101 ~ 10387836 n 0000 ~ 10389865 n 0000 ~ 10621847 n 0000 ~ 10649823 n 0000 ~ 10671387 n 0000 ~ 10700517 n 0000 ~ 10719267 n 0000 | someone who lives at a particular place for a prolonged period or who was born there -10524076 18 n 01 resident_commissioner 0 001 @ 10522035 n 0000 | the representative of Puerto Rico in the United States House of Representatives -10524223 18 n 01 respecter 0 003 @ 10099375 n 0000 + 02457233 v 0101 + 00694068 v 0101 | a person who respects someone or something; usually used in the negative; "X is no respecter of Y" -10524413 18 n 03 respondent 0 responder 0 answerer 0 012 @ 09610660 n 0000 + 00815686 v 0301 + 00815686 v 0203 + 00718737 v 0201 + 00717358 v 0202 + 01999608 a 0102 + 00815686 v 0103 + 00717358 v 0102 ~ 09814567 n 0000 ~ 10168012 n 0000 ~ 10213180 n 0000 ~ 10703692 n 0000 | someone who responds -10524711 18 n 01 respondent 1 001 @ 09933411 n 0000 | the codefendant (especially in a divorce proceeding) who is accused of adultery with the corespondent -10524869 18 n 02 restaurateur 0 restauranter 0 001 @ 10388924 n 0000 | the proprietor of a restaurant -10524973 18 n 01 rester 0 006 @ 00007846 n 0000 + 01545883 v 0101 + 00779601 v 0101 + 00779360 v 0101 + 00014405 v 0101 ~ 10610465 n 0000 | a person who rests -10525134 18 n 02 restrainer 0 controller 1 012 @ 00007846 n 0000 + 02441022 v 0201 + 01803936 v 0203 + 02422663 v 0101 + 01819554 v 0102 + 01301051 v 0101 + 01301410 v 0101 + 00233335 v 0102 ~ 10350484 n 0000 ~ 10668450 n 0000 ~ 10678472 n 0000 ~ 10785574 n 0000 | a person who directs and restrains -10525436 18 n 02 retailer 0 retail_merchant 0 005 @ 10309896 n 0000 @ 10018861 n 0000 + 02247028 v 0101 ~ 09907804 n 0000 ~ 10258493 n 0000 | a merchant who sells goods at retail -10525617 18 n 02 retiree 0 retired_person 0 004 @ 09626031 n 0000 + 02380009 v 0101 + 02379753 v 0101 ~ 10051861 n 0000 | someone who has retired from active working -10525785 18 n 01 retreatant 0 001 @ 10401829 n 0000 | a participant in a religious retreat -10525878 18 n 01 returning_officer 0 005 @ 10372373 n 0000 ;r 08860123 n 0000 ;r 08820121 n 0000 ;r 08831004 n 0000 ;r 08972521 n 0000 | the official in each electorate who holds the election and returns the results -10526096 18 n 03 reveler 0 reveller 0 merrymaker 0 003 @ 09902954 n 0000 + 02491383 v 0201 ~ 10536897 n 0000 | a celebrant who shares in a noisy party; "the clubs attract revelers as young as thirteen" -10526300 18 n 04 drunken_reveler 0 drunken_reveller 0 bacchanal 0 bacchant 2 001 @ 10034201 n 0000 | someone who engages in drinking bouts -10526441 18 n 01 revenant 0 001 @ 09545976 n 0000 | someone who has returned from the dead -10526534 18 n 01 revenant 1 001 @ 00007846 n 0000 | a person who returns after a lengthy absence -10526633 18 n 01 revenuer 0 001 @ 10133644 n 0000 | a government agent responsible for collecting revenue (especially one responsible for stopping bootlegging) -10526795 18 n 01 reversioner 0 002 @ 10402824 n 0000 ;c 08441203 n 0000 | (law) a party who is entitled to an estate in reversion -10526927 18 n 03 reviewer 1 referee 1 reader 5 005 @ 09979321 n 0000 + 00855794 v 0201 + 01952898 v 0201 + 00855512 v 0101 ~ 10555156 n 0000 | someone who reads manuscripts and judges their suitability for publication -10527147 18 n 01 revisionist 0 003 @ 09945319 n 0000 + 08368631 n 0101 + 08368516 n 0101 | a Communist who tries to rewrite Marxism to justify a retreat from the revolutionary position -10527334 18 n 04 revolutionist 0 revolutionary 0 subversive 0 subverter 0 024 @ 10503452 n 0000 + 02402409 v 0402 + 00963283 a 0303 + 02015238 a 0201 + 05951692 n 0101 + 07424109 n 0101 + 00962722 n 0101 ~ 09969869 n 0000 ~ 10040789 n 0000 ~ 10131268 n 0000 ~ 10210137 n 0000 ~i 10910580 n 0000 ~i 10922501 n 0000 ~i 11018153 n 0000 ~i 11155444 n 0000 ~i 11155577 n 0000 ~i 11159418 n 0000 ~i 11160457 n 0000 ~i 11181634 n 0000 ~i 11265183 n 0000 ~i 11349318 n 0000 ~i 11366405 n 0000 ~i 11405176 n 0000 ~i 11406314 n 0000 | a radical supporter of political or social revolution -10527915 18 n 01 rheumatic 0 002 @ 10595647 n 0000 + 01173795 a 0103 | a person suffering with rheumatism -10528023 18 n 01 rheumatologist 0 002 @ 10632576 n 0000 + 06062655 n 0101 | a physician specializing in rheumatic diseases -10528148 18 n 02 Rhodesian_man 0 Homo_rhodesiensis 0 001 @ 02472293 n 0000 | a primitive hominid resembling Neanderthal man but living in Africa -10528295 18 n 01 Rhodes_scholar 0 001 @ 10558773 n 0000 | a student who holds one of the scholarships endowed by the will of Cecil J. Rhodes that enables the student to study at Oxford University -10528493 18 n 05 rhymer 0 rhymester 0 versifier 0 poetizer 0 poetiser 0 007 @ 10794014 n 0000 + 01702514 v 0504 + 01702514 v 0403 + 01702514 v 0302 + 06381869 n 0202 + 07096661 n 0201 + 01701858 v 0101 | a writer who composes rhymes; a maker of poor verses (usually used as terms of contempt for minor or inferior poets) -10528816 18 n 01 rhythm_and_blues_musician 0 002 @ 10340312 n 0000 ~i 10938640 n 0000 | a performer (and sometimes composer) of rhythm and blues music -10528969 18 n 01 ribald 0 002 @ 10761693 n 0000 + 00424787 a 0103 | a ribald person; someone who uses vulgar and offensive language -10529103 18 n 01 Richard_Roe 0 002 @ 10402824 n 0000 ;c 08441203 n 0000 | an unknown or fictitious party to legal proceedings -10529231 18 n 03 rich_person 0 wealthy_person 0 have 0 012 @ 00007846 n 0000 + 02204692 v 0302 + 02203362 v 0301 ~ 09776642 n 0000 ~ 09979913 n 0000 ~ 10080784 n 0000 ~ 10292052 n 0000 ~ 10318607 n 0000 ~ 10443955 n 0000 ~ 10529555 n 0000 ~ 10529684 n 0000 ~ 10529823 n 0000 | a person who possesses great material wealth -10529555 18 n 01 millionaire 0 001 @ 10529231 n 0000 | a person whose material wealth is valued at more than a million dollars -10529684 18 n 01 billionaire 0 001 @ 10529231 n 0000 | a very rich person whose material wealth is valued at more than a billion dollars -10529823 18 n 01 multi-billionaire 0 001 @ 10529231 n 0000 | a very rich person whose material wealth is valued at many billions of dollars -10529965 18 n 01 rider 0 005 @ 09629752 n 0000 + 01957529 v 0101 ~ 10159533 n 0000 ~ 10185793 n 0000 ~ 10411163 n 0000 | a traveler who actively rides an animal (as a horse or camel) -10530150 18 n 01 rider 2 002 @ 09629752 n 0000 + 02102398 v 0101 | a traveler who actively rides a vehicle (as a bicycle or motorcycle) -10530288 18 n 01 disreputable_person 0 001 @ 09631129 n 0000 | someone lacking public esteem -10530383 18 n 01 riding_master 0 001 @ 10694258 n 0000 | someone who teaches horsemanship -10530475 18 n 02 Riff 0 Riffian 0 001 @ 09850317 n 0000 | a Berber living in northern Morocco -10530571 18 n 01 rifleman 0 002 @ 10622053 n 0000 ~ 09893746 n 0000 | a soldier whose weapon is a rifle -10530677 18 n 01 rifleman 1 001 @ 10294953 n 0000 | someone skilled in the use of a rifle -10530769 18 n 01 rigger 0 002 @ 09974648 n 0000 + 00408085 v 0101 | someone who rigs ships -10530862 18 n 02 rigger 1 oil_rigger 0 001 @ 10374541 n 0000 | someone who works on an oil rig -10530959 18 n 03 right-hander 0 right_hander 0 righthander 0 001 @ 00007846 n 0000 | a person who uses the right hand more skillfully than the left -10531109 18 n 03 right-hand_man 0 chief_assistant 0 man_Friday 0 001 @ 09815790 n 0000 | the most helpful assistant -10531227 18 n 02 rightist 0 right-winger 0 007 @ 09957156 n 0000 + 02030793 a 0101 + 06220449 n 0101 + 08416652 n 0102 ~ 10079893 n 0000 ~ 10327824 n 0000 ~ 10716698 n 0000 | a member of a right wing political party -10531445 18 n 01 ringer 0 001 @ 10201535 n 0000 | a contestant entered in a competition under false pretenses -10531557 18 n 03 ringer 1 dead_ringer 0 clone 0 002 @ 10027246 n 0000 ;u 07075172 n 0000 | a person who is almost identical to another -10531694 18 n 01 ring_girl 0 001 @ 10129825 n 0000 | a young woman who holds up cards indicating the number of the next round at prize fights -10531838 18 n 01 ringleader 0 001 @ 10209246 n 0000 | a person who leads (especially in illicit activities) -10531948 18 n 01 ringmaster 0 001 @ 10299250 n 0000 | the person in charge of performances in a circus ring -10532058 18 n 01 rioter 0 002 @ 10731244 n 0000 + 02584661 v 0101 | troublemaker who participates in a violent disturbance of the peace; someone who rises up against the constituted authority -10532252 18 n 01 ripper 0 001 @ 10338707 n 0000 | a murderer who slashes the victims with a knife; "Jack the Ripper was probably a madman" -10532393 18 n 01 Rip_van_Winkle 0 001 @ 10610465 n 0000 | a person who sleeps a lot -10532479 18 n 01 Rip_van_Winkle 1 001 @ 10721124 n 0000 | a person oblivious to social changes -10532576 18 n 01 riser 0 004 @ 00007846 n 0000 + 00018158 v 0105 + 01983264 v 0102 ~ 10041684 n 0000 | a person who rises (especially from bed); "he's usually a late riser" -10532751 18 n 01 ritualist 1 002 @ 10618465 n 0000 + 06148002 n 0101 | a social anthropologist who is expert on rites and ceremonies -10532886 18 n 01 ritualist 0 002 @ 09774783 n 0000 + 01031023 n 0101 | an advocate of strict observance of ritualistic forms -10533013 18 n 05 rival 0 challenger 0 competitor 0 competition 0 contender 0 018 @ 09613191 n 0000 + 01072262 v 0503 + 01072262 v 0301 + 00868591 v 0201 + 00512941 a 0102 + 01122194 v 0101 ~ 09906704 n 0000 ~ 09941089 n 0000 ~ 10089779 n 0000 ~ 10098710 n 0000 ~ 10113753 n 0000 ~ 10235024 n 0000 ~ 10543057 n 0000 ~ 10563610 n 0000 ~ 10578021 n 0000 ~ 10662819 n 0000 ~ 10710509 n 0000 ~ 10711144 n 0000 | the contestant you hope to defeat; "he had respect for his rivals"; "he wanted to know what the competition was doing" -10533541 18 n 02 riveter 0 rivetter 0 003 @ 10605985 n 0000 + 01367266 v 0201 + 01367266 v 0101 | a worker who inserts and hammers rivets -10533681 18 n 01 road_builder 0 001 @ 09878275 n 0000 | someone whose business is to build roads -10533780 18 n 02 road_hog 0 roadhog 0 001 @ 10034906 n 0000 | a driver who obstructs others -10533874 18 n 02 roadman 1 road_mender 0 001 @ 10791221 n 0000 | a workman who is employed to repair roads -10533983 18 n 07 roarer 0 bawler 0 bellower 0 screamer 0 screecher 0 shouter 0 yeller 0 008 @ 09610660 n 0000 + 00912833 v 0701 + 00912473 v 0601 + 01048939 v 0505 + 01046480 v 0202 + 01048718 v 0102 + 00915605 v 0102 ~ 09977520 n 0000 | someone who communicates vocally in a very loud voice -10534277 18 n 01 roaster 0 003 @ 09963320 n 0000 + 00324560 v 0101 ~ 09843200 n 0000 | a cook who roasts food -10534389 18 n 01 roaster 1 002 @ 09979072 n 0000 ;u 06776138 n 0000 | a harsh or humorous critic (sometimes intended as a facetious compliment); "the honoree gave his roasters as good as he got" -10534586 18 n 01 robber 1 004 @ 10707804 n 0000 + 02321391 v 0101 ~ 09838295 n 0000 ~ 10337300 n 0000 | a thief who steals from someone by threatening violence -10534748 18 n 01 robbery_suspect 0 001 @ 10681383 n 0000 | someone suspected of committing robbery -10534849 18 n 01 Robert's_Rules_of_Order 0 001 @i 06652878 n 0000 | a book of rules for presiding over a meeting; written by Henry M. Martin in 1876 and subsequently updated through many editions -10535047 18 n 01 Robin_Hood 0 001 @i 09587565 n 0000 | legendary English outlaw of the 12th century; said to have robbed the rich to help the poor -10535196 18 n 01 Robinson_Crusoe 0 001 @i 09587565 n 0000 | the hero of Daniel Defoe's novel about a shipwrecked English sailor who survives on a small tropical island -10535366 18 n 01 rock 0 001 @ 10138767 n 0000 | (figurative) someone who is strong and stable and dependable; "he was her rock during the crisis"; "Thou art Peter, and upon this rock I will build my church"--Gospel According to Matthew -10535604 18 n 02 rock_climber 0 cragsman 0 001 @ 09929298 n 0000 | a climber of vertical rock faces -10535706 18 n 01 rocker 0 003 @ 09772029 n 0000 #m 08370878 n 0000 ;r 08860123 n 0000 | a teenager or young adult in the 1960s who wore leather jackets and rode motorcycles -10535881 18 n 02 rocker 1 rock_'n'_roll_musician 0 002 @ 10340312 n 0000 ~ 10536416 n 0000 | a performer or composer or fan of rock music -10536021 18 n 01 rocker 2 002 @ 09821831 n 0000 + 01876028 v 0101 | an attendant who rocks a child in a cradle -10536134 18 n 02 rocket_engineer 0 rocket_scientist 0 002 @ 09615807 n 0000 ~i 10863124 n 0000 | an engineer who builds and tests rockets -10536274 18 n 01 rocket_scientist 1 001 @ 10708454 n 0000 | a clever thinker; "you do not have to be a rocket scientist to figure that out" -10536416 18 n 01 rock_star 0 013 @ 10535881 n 0000 @ 10599806 n 0000 ~i 10849083 n 0000 ~i 11024226 n 0000 ~i 11031842 n 0000 ~i 11056654 n 0000 ~i 11078650 n 0000 ~i 11126783 n 0000 ~i 11131358 n 0000 ~i 11167952 n 0000 ~i 11192533 n 0000 ~i 11246040 n 0000 ~i 11313726 n 0000 | a famous singer of rock music -10536728 18 n 07 rogue 0 knave 0 rascal 2 rapscallion 2 scalawag 2 scallywag 2 varlet 2 002 @ 10753546 n 0000 + 01224964 a 0301 | a deceitful and unreliable scoundrel -10536897 18 n 01 roisterer 0 002 @ 10526096 n 0000 + 02493260 v 0102 | an especially noisy and unrestrained merrymaker -10537018 18 n 01 rollerblader 0 001 @ 10537107 n 0000 | a skater who uses Rollerblades -10537107 18 n 01 roller-skater 0 003 @ 10604491 n 0000 + 01937534 v 0101 ~ 10537018 n 0000 | someone who engages in roller skating -10537240 18 n 02 Roman_Emperor 0 Emperor_of_Rome 0 020 @ 10053004 n 0000 ~i 10819755 n 0000 ~i 10820053 n 0000 ~i 10828990 n 0000 ~i 10879551 n 0000 ~i 10899414 n 0000 ~i 10907962 n 0000 ~i 10926917 n 0000 ~i 10935968 n 0000 ~i 10938821 n 0000 ~i 11021342 n 0000 ~i 11094312 n 0000 ~i 11166251 n 0000 ~i 11203472 n 0000 ~i 11204069 n 0000 ~i 11338172 n 0000 ~i 11341970 n 0000 ~i 11343847 n 0000 ~i 11347834 n 0000 ~i 11364799 n 0000 | sovereign of the Roman Empire -10537708 18 n 02 Romanov 0 Romanoff 0 001 @ 10053004 n 0000 | a member of the imperial family that ruled Russia -10537822 18 n 01 romantic 0 001 @ 10196965 n 0000 | a soulful or amorous idealist -10537906 18 n 02 romanticist 0 romantic 1 003 @ 09812338 n 0000 + 06155075 n 0101 ! 09926519 n 0101 | an artist of the Romantic Movement or someone influenced by Romanticism -10538082 18 n 01 Romeo 0 001 @ 09622302 n 0000 | an ardent male lover -10538154 18 n 01 romper 0 003 @ 00007846 n 0000 + 01926878 v 0101 + 01883716 v 010a | a person who romps or frolics -10538272 18 n 01 roofer 0 003 @ 09974648 n 0000 + 01233993 v 0101 ~ 10705211 n 0000 | a craftsman who lays or repairs roofs -10538398 18 n 01 room_clerk 0 001 @ 10007995 n 0000 | a hotel clerk who is responsible for room assignments to guests -10538518 18 n 03 roommate 0 roomie 0 roomy 0 001 @ 10112591 n 0000 | an associate who shares a room with you -10538629 18 n 03 ropemaker 0 rope-maker 0 roper 0 001 @ 09974648 n 0000 | a craftsman who makes ropes -10538733 18 n 01 roper 1 002 @ 09972661 n 0000 + 01604251 v 0102 | a cowboy who uses a lasso to rope cattle or horses -10538853 18 n 01 roper 2 002 @ 09995573 n 0000 + 01604251 v 0102 | a decoy who lures customers into a gambling establishment (especially one with a fixed game) -10539015 18 n 02 ropewalker 0 ropedancer 0 001 @ 09764598 n 0000 | an acrobat who performs on a rope stretched at some height above the ground -10539160 18 n 01 rosebud 0 002 @ 10129825 n 0000 ;c 06364641 n 0000 | (a literary reference to) a pretty young girl -10539278 18 n 01 Rosicrucian 0 001 @ 10307234 n 0000 | a member of a secret 17th-century society of philosophers and scholars versed in mystical and metaphysical and alchemical lore -10539462 18 n 01 Rosicrucian 1 001 @ 10307234 n 0000 | a member of any of various organizations that subsequently derived from the 17th-century society -10539616 18 n 01 Rotarian 0 002 @ 10307234 n 0000 #m 08236251 n 0000 | a member of a Rotary Club -10539715 18 n 0d rotter 0 dirty_dog 0 rat 0 skunk 0 stinker 0 stinkpot 0 bum 2 puke 0 crumb 0 lowlife 0 scum_bag 0 so-and-so 0 git 0 003 @ 09631463 n 0000 + 02346013 a 0701 + 02584475 v 0301 | a person who is deemed to be despicable or contemptible; "only a rotter would do that"; "kill the rat"; "throw the bum out"; "you cowardly little pukes!"; "the British call a contemptible person a `git'" -10540114 18 n 01 Mountie 0 002 @ 10448983 n 0000 #m 08210670 n 0000 | colloquial term for a member of the Royal Canadian Mounted Police -10540252 18 n 01 Rough_Rider 1 001 @ 09902353 n 0000 | a member of the volunteer cavalry regiment led by Theodore Roosevelt in the Spanish-American War (1898) -10540413 18 n 01 roughrider 0 001 @ 10185793 n 0000 | a horseman skilled at breaking wild horses to the saddle -10540526 18 n 01 Roundhead 1 001 @ 10677713 n 0000 | a supporter of parliament and Oliver Cromwell during the English Civil War -10540656 18 n 01 roundhead 0 001 @ 00007846 n 0000 | a brachycephalic person -10540735 18 n 01 roundsman 0 001 @ 10791221 n 0000 | a workman employed to make rounds (to deliver goods or make inspections or so on) -10540872 18 n 01 router 0 001 @ 10605985 n 0000 | a worker who routes shipments for distribution and delivery -10540984 18 n 02 rover 1 scouter 0 002 @ 09871681 n 0000 + 02167571 v 0201 | an adult member of the Boy Scouts movement -10541106 18 n 02 rubberneck 0 rubbernecker 0 002 @ 10633450 n 0000 + 02150740 v 0101 | a person who stares inquisitively -10541229 18 n 02 ruler 0 swayer 0 028 @ 00007846 n 0000 + 00599234 n 0101 + 02586619 v 0102 + 00715868 v 0101 ~ 09727323 n 0000 ~ 09841865 n 0000 ~ 09869578 n 0000 ~ 09887496 n 0000 ~ 10011902 n 0000 ~ 10052497 n 0000 ~ 10065261 n 0000 ~ 10156726 n 0000 ~ 10159852 n 0000 ~ 10230097 n 0000 ~ 10326883 n 0000 ~ 10377185 n 0000 ~ 10388440 n 0000 ~ 10421016 n 0000 ~ 10493528 n 0000 ~ 10516117 n 0000 ~ 10541983 n 0000 ~ 10588357 n 0000 ~ 10628644 n 0000 ~ 10665455 n 0000 ~ 10674315 n 0000 ~ 10732854 n 0000 ~ 10735707 n 0000 ~i 11330026 n 0000 | a person who rules or commands; "swayer of the universe" -10541833 18 n 02 civil_authority 0 civil_officer 0 002 @ 09824609 n 0000 ~ 10303814 n 0000 | a person who exercises authority over civilian affairs -10541983 18 n 01 dynast 0 001 @ 10541229 n 0000 | a hereditary ruler -10542054 18 n 01 rug_merchant 0 001 @ 10309896 n 0000 | a merchant who sells rugs -10542138 18 n 01 Rumpelstiltskin 0 001 @i 09587565 n 0000 | a dwarf in one of the fairy stories of the brothers Grimm; tells a woman he will not hold her to a promise if she can guess his name and when she discovers it he is so furious that he destroys himself -10542401 18 n 01 Shylock 0 001 @i 09587565 n 0000 | a merciless usurer in a play by Shakespeare -10542499 18 n 01 rumrunner 0 001 @ 10615334 n 0000 | someone who illegally smuggles liquor across a border -10542608 18 n 01 runner 4 001 @ 10311021 n 0000 | a person who is employed to deliver messages or documents; "he sent a runner over with the contract" -10542761 18 n 01 runner 3 003 @ 09629752 n 0000 + 01926311 v 0101 ~ 10223459 n 0000 | someone who travels on foot by running -10542888 18 n 01 runner 0 005 @ 09820263 n 0000 + 01086103 v 0102 ~ 10292969 n 0000 ~ 10315561 n 0000 ~ 10641413 n 0000 | a trained athlete who competes in foot races -10543057 18 n 02 runner-up 0 second_best 0 001 @ 10533013 n 0000 | the competitor who finishes second -10543161 18 n 01 running_back 0 004 @ 09830194 n 0000 ;c 00468480 n 0000 ~ 10115430 n 0000 ~ 10157128 n 0000 | (football) a back on the offensive team (a fullback or halfback) who tries to advance the ball by carrying it on plays from the line of scrimmage -10543420 18 n 01 running_mate 0 001 @ 09889691 n 0000 | a nominee for the lesser of two closely related political offices -10543544 18 n 04 runt 0 shrimp 0 peewee 0 half-pint 0 004 @ 10613505 n 0000 + 01394558 a 0203 + 01394558 a 0102 + 02387790 a 0103 | disparaging terms for small people -10543713 18 n 01 ruralist 0 001 @ 09774783 n 0000 | an advocate of rural living -10543795 18 n 01 rusher 0 002 @ 00007846 n 0000 + 00459498 v 0101 | a person who rushes; someone in a hurry; someone who acts precipitously -10543937 18 n 01 rusher 1 001 @ 10314952 n 0000 | someone who migrates as part of a rush to a new gold field or a new territory -10544067 18 n 01 rusher 2 003 @ 09834378 n 0000 ;c 00468480 n 0000 + 02059770 v 0101 | (football) a ball carrier who tries to gain ground by running with the ball -10544232 18 n 01 rustic 0 010 @ 09610405 n 0000 + 02616542 v 0101 ~ 09613559 n 0000 ~ 09971135 n 0000 ~ 09971273 n 0000 ~ 10176357 n 0000 ~ 10410668 n 0000 ~ 10513938 n 0000 ~ 10790384 n 0000 ~ 10804102 n 0000 | an unsophisticated country person -10544480 18 n 02 rustler 0 cattle_thief 0 002 @ 10707804 n 0000 + 02277138 v 0101 | someone who steals livestock (especially cattle) -10544615 18 n 01 Sabbatarian 0 002 @ 09628382 n 0000 ;c 06232880 n 0000 | one who observes Saturday as the Sabbath (as in Judaism) -10544748 18 n 03 saboteur 0 wrecker 0 diversionist 0 004 @ 10008716 n 0000 + 00350380 n 0301 + 01566185 v 0202 ~ 10610850 n 0000 | someone who commits sabotage or deliberately causes wrecks -10544940 18 n 02 sachem 0 sagamore 0 001 @ 10203298 n 0000 | a chief of a North American tribe or confederation (especially an Algonquian chief) -10545087 18 n 01 sachem 1 001 @ 10450303 n 0000 | a political leader (especially of Tammany Hall) -10545187 18 n 01 sacred_cow 0 001 @ 10200781 n 0000 | a person unreasonably held to be immune to criticism -10545296 18 n 01 sacrificer 0 002 @ 09628382 n 0000 + 02325558 v 0101 | a religious person who offers up a sacrifice -10545415 18 n 01 saddler 0 001 @ 10284064 n 0000 | a maker and repairer and seller of equipment for horses -10545524 18 n 01 Sadducee 0 002 @ 09681351 n 0000 + 02791630 a 0101 | a member of an ancient Jewish sect around the time of Jesus; opposed to the Pharisees -10545682 18 n 02 sadhu 0 saddhu 0 002 @ 09684609 n 0000 ;c 06236802 n 0000 | (Hinduism) an ascetic holy man -10545792 18 n 01 sadist 0 003 @ 10419047 n 0000 + 07493830 n 0101 ! 10297367 n 0101 | someone who obtains pleasure from inflicting pain or others -10545940 18 n 01 sadomasochist 0 002 @ 10419047 n 0000 + 07494018 n 0101 | someone who enjoys both sadism and masochism -10546062 18 n 03 safebreaker 0 safecracker 0 cracksman 0 001 @ 10707804 n 0000 | a thief who breaks open safes to steal valuable contents -10546202 18 n 01 sage 0 006 @ 10309496 n 0000 ~ 06340977 n 0000 ~ 10281896 n 0000 ~i 10832908 n 0000 ~i 10886361 n 0000 ~i 11172181 n 0000 | a mentor in spiritual and philosophical topics who is renowned for profound wisdom -10546428 18 n 02 sailing_master 0 navigator 2 002 @ 10371741 n 0000 + 01933305 v 0201 | the ship's officer in charge of navigation -10546561 18 n 01 sailmaker 0 001 @ 10284064 n 0000 | a maker of sails -10546633 18 n 02 sailor 0 crewman 2 008 @ 10605985 n 0000 + 01846658 v 0101 ~ 10158506 n 0000 ~ 10247176 n 0000 ~ 10294602 n 0000 ~ 10770433 n 0000 ~ 10802043 n 0000 ~i 11291824 n 0000 | any member of a ship's crew -10546850 18 n 04 saint 0 holy_man 0 holy_person 0 angel 3 011 @ 10138767 n 0000 + 01459949 a 0402 + 01130261 a 0402 + 02870663 a 0402 + 01130261 a 0105 + 08152657 n 0101 + 00599329 n 0101 + 00866702 v 0104 + 00475819 v 0103 ~ 09532942 n 0000 ~ 10076307 n 0000 | person of exceptional holiness -10547145 18 n 01 saint 3 052 @ 09505418 n 0000 #m 08152657 n 0000 + 01130261 a 0105 + 08152657 n 0101 + 00599329 n 0101 + 00823129 v 0103 + 00866702 v 0104 ~ 10408552 n 0000 ~i 10815648 n 0000 ~i 10818088 n 0000 ~i 10818860 n 0000 ~i 10820790 n 0000 ~i 10827155 n 0000 ~i 10828573 n 0000 ~i 10837918 n 0000 ~i 10840021 n 0000 ~i 10840769 n 0000 ~i 10843858 n 0000 ~i 10856486 n 0000 ~i 10864204 n 0000 ~i 10868980 n 0000 ~i 10938363 n 0000 ~i 10952143 n 0000 ~i 10952629 n 0000 ~i 10978098 n 0000 ~i 11013876 n 0000 ~i 11015080 n 0000 ~i 11070994 n 0000 ~i 11071177 n 0000 ~i 11073061 n 0000 ~i 11078982 n 0000 ~i 11083064 n 0000 ~i 11085924 n 0000 ~i 11086774 n 0000 ~i 11087359 n 0000 ~i 11094055 n 0000 ~i 11121108 n 0000 ~i 11127188 n 0000 ~i 11140243 n 0000 ~i 11144604 n 0000 ~i 11156943 n 0000 ~i 11160055 n 0000 ~i 11162582 n 0000 ~i 11164671 n 0000 ~i 11205797 n 0000 ~i 11213552 n 0000 ~i 11225661 n 0000 ~i 11231157 n 0000 ~i 11301414 n 0000 ~i 11336176 n 0000 ~i 11338796 n 0000 ~i 11367725 n 0000 | a person who has died and has been declared a saint by canonization -10548227 18 n 04 salesclerk 0 shop_clerk 0 clerk 1 shop_assistant 0 005 @ 10548681 n 0000 ;u 08860123 n 0404 + 00590518 n 0301 ~ 10591949 n 0000 ~ 10592049 n 0000 | a salesperson in a store -10548419 18 n 03 salesgirl 0 saleswoman 0 saleslady 0 002 @ 10548681 n 0000 ~ 10314627 n 0000 | a woman salesperson -10548537 18 n 01 salesman 0 005 @ 10548681 n 0000 + 05639651 n 0101 ~ 09865672 n 0000 ~ 10436334 n 0000 ~ 10726786 n 0000 | a man salesperson -10548681 18 n 03 salesperson 0 sales_representative 0 sales_rep 0 005 @ 10053808 n 0000 ~ 10002982 n 0000 ~ 10548227 n 0000 ~ 10548419 n 0000 ~ 10548537 n 0000 | a person employed to represent a business and to sell its merchandise (as to customers in a store or to customers who are visited) -10548976 18 n 01 saloon_keeper 0 001 @ 10388924 n 0000 | the proprietor of a saloon -10549062 18 n 02 salter 0 salt_merchant 0 001 @ 10309896 n 0000 | someone who makes or deals in salt -10549165 18 n 01 salter 1 003 @ 10467052 n 0000 + 00213353 v 0101 + 02196214 v 0101 | someone who uses salt to preserve meat or fish or other foods -10549315 18 n 02 salutatorian 0 salutatory_speaker 0 001 @ 10557854 n 0000 | a graduating student with the second highest academic rank; may deliver the opening address at graduation exercises -10549510 18 n 02 salvager 0 salvor 0 004 @ 10522759 n 0000 + 02550868 v 0101 + 01381357 v 0101 ~ 10659961 n 0000 | someone who salvages -10549648 18 n 01 Samaritan 0 001 @ 09715685 n 0000 | a member of the people inhabiting Samaria in biblical times -10549763 18 n 01 samurai 0 003 @ 10768585 n 0000 #m 08388966 n 0000 ;c 09718217 n 0000 | a Japanese warrior who was a member of the feudal military aristocracy -10549925 18 n 01 sandbagger 0 002 @ 09998101 n 0000 + 00841394 v 0101 | someone who deceives you about his true nature or intent in order to take advantage of you -10550090 18 n 01 sandboy 0 002 @ 10411551 n 0000 ;r 08860123 n 0000 | a young peddler of sand; used now only to express great happiness in `happy as a sandboy' -10550252 18 n 01 sandwichman 0 001 @ 10053808 n 0000 | a person with advertising boards hanging from the shoulders -10550369 18 n 01 sangoma 0 001 @ 10707233 n 0000 | a traditional Zulu healer and respected elder -10550468 18 n 01 sannup 0 001 @ 09645091 n 0000 | a married male American Indian -10550551 18 n 03 sannyasi 0 sannyasin 0 sanyasi 0 002 @ 09847010 n 0000 @ 09684609 n 0000 | a Hindu religious mendicant -10550673 18 n 07 Santa_Claus 0 Santa 0 Kriss_Kringle 0 Father_Christmas 0 Saint_Nicholas 1 Saint_Nick 0 St._Nick 0 002 @i 10408552 n 0000 @i 09483738 n 0000 | the legendary patron saint of children; an imaginary being who is thought to bring presents to children at Christmas -10550951 18 n 02 Tristan 0 Tristram 0 003 @i 09587565 n 0000 ;c 06371413 n 0000 ;c 15259284 n 0000 | (Middle Ages) the nephew of the king of Cornwall who (according to legend) fell in love with his uncle's bride (Iseult) after they mistakenly drank a love potion that left them eternally in love with each other -10551265 18 n 02 Iseult 0 Isolde 0 003 @i 09587565 n 0000 ;c 06371413 n 0000 ;c 15259284 n 0000 | (Middle Ages) the bride of the king of Cornwall who (according to legend) fell in love with the king's nephew (Tristan) after they mistakenly drank a love potion that left them eternally in love with each other -10551576 18 n 01 sapper 1 003 @ 09809538 n 0000 ;c 08199025 n 0000 + 01310555 v 0101 | a military engineer who does sapping (digging trenches or undermining fortifications) -10551751 18 n 01 sapper 0 003 @ 09809538 n 0000 ;c 08199025 n 0000 + 02280869 v 0104 | a military engineer who lays or detects and disarms mines -10551898 18 n 01 Saracen 2 002 @ 09682291 n 0000 ;c 06155567 n 0000 | (historically) a Muslim who opposed the Crusades -10552019 18 n 01 Saracen 1 002 @ 10359759 n 0000 ;c 06155567 n 0000 | (historically) a member of the nomadic people of the Syrian and Arabian deserts at the time of the Roman Empire -10552203 18 n 01 Saracen 0 001 @ 09729530 n 0000 | (when used broadly) any Arab -10552285 18 n 01 Sardinian 0 002 @ 09716047 n 0000 + 03025403 a 0101 | a native or inhabitant of Sardinia -10552393 18 n 01 Sassenach 0 001 @ 09701148 n 0000 | the Scots' term for an English person -10552486 18 n 02 Satanist 0 diabolist 0 004 @ 10010525 n 0000 @ 10016103 n 0000 + 05979595 n 0201 + 05979595 n 0103 | an adherent of Satan or Satanism -10552639 18 n 02 satellite 0 planet 0 001 @ 10099375 n 0000 | a person who follows or serves another -10552742 18 n 03 satirist 0 ironist 0 ridiculer 0 007 @ 10191943 n 0000 + 00851933 v 0301 + 06777164 n 0202 + 06777164 n 0103 ~i 11095391 n 0000 ~i 11251225 n 0000 ~i 11326869 n 0000 | a humorist who uses ridicule and irony and sarcasm -10552980 18 n 04 satyr 1 lecher 0 lech 0 letch 0 004 @ 10419047 n 0000 + 02133431 a 0201 + 03113881 a 0101 + 03113881 a 0102 | man with strong sexual desires -10553140 18 n 01 satrap 0 001 @ 10140314 n 0000 | a governor of a province in ancient Persia -10553235 18 n 03 saunterer 0 stroller 0 ambler 0 004 @ 10412055 n 0000 + 01918183 v 0301 + 01917980 v 0201 + 01917980 v 0102 | someone who walks at a leisurely pace -10553402 18 n 02 savage 0 barbarian 0 008 @ 09627462 n 0000 + 00412788 a 0201 + 00412788 a 0103 ~ 09891079 n 0000 ~ 10163452 n 0000 ~ 10193419 n 0000 ~ 10746195 n 0000 ~i 11212226 n 0000 | a member of an uncivilized people -10553627 18 n 01 saver 0 006 @ 10389398 n 0000 + 02357228 v 0101 + 02266920 v 0101 + 02225492 v 0101 ~ 10044470 n 0000 ~ 10178611 n 0000 | someone who saves (especially money) -10553805 18 n 04 savior 0 saviour 0 rescuer 1 deliverer 0 006 @ 09608709 n 0000 + 02551602 v 0401 + 02551144 v 0402 + 02551144 v 0301 + 02551832 v 0101 ~ 09537660 n 0000 | a person who rescues you from harm or danger -10554024 18 n 01 Savoyard 1 001 @ 10415638 n 0000 | a person who performs in the operettas of Gilbert and Sullivan -10554141 18 n 01 sawyer 0 002 @ 10241300 n 0000 + 01559590 v 0101 | one who is employed to saw wood -10554243 18 n 02 saxophonist 0 saxist 0 007 @ 10340312 n 0000 + 04141076 n 0102 ~ 09786226 n 0000 ~ 10701962 n 0000 ~i 11035017 n 0000 ~i 11222914 n 0000 ~i 11403692 n 0000 | a musician who plays the saxophone -10554455 18 n 04 scab 0 strikebreaker 0 blackleg 0 rat 1 005 @ 09632518 n 0000 + 02412939 v 0403 + 02413140 v 0401 + 02412939 v 0304 + 02412939 v 0102 | someone who works (or provides workers) during a strike -10554666 18 n 02 scalawag 3 scallywag 3 001 @ 09831962 n 0000 | a white Southerner who supported Reconstruction policies after the American Civil War (usually for self-interest) -10554846 18 n 01 scalper 0 003 @ 10634075 n 0000 + 02241911 v 0101 ~ 10718509 n 0000 | someone who buys something and resells it at a price far above the initial cost; "he got theater tickets through a scalper" -10555059 18 n 01 scandalmonger 0 001 @ 10139347 n 0000 | a person who spreads malicious gossip -10555156 18 n 01 scanner 0 002 @ 10526927 n 0000 + 01051828 v 0101 | someone who scans verse to determine the number and prosodic value of the syllables -10555311 18 n 02 scapegoat 0 whipping_boy 0 001 @ 10752093 n 0000 | someone who is punished for the errors of others -10555430 18 n 02 scapegrace 0 black_sheep 0 001 @ 10522324 n 0000 | a reckless and unprincipled reprobate -10555538 18 n 02 Scaramouch 0 Scaramouche 0 001 @i 09587565 n 0000 | a stock character in commedia dell'arte depicted as a boastful coward -10555679 18 n 02 scaremonger 0 stirrer 0 002 @ 09781504 n 0000 + 01761706 v 0205 | a person who spreads frightening rumors and stirs up trouble -10555825 18 n 02 scatterbrain 0 forgetful_person 0 001 @ 10599354 n 0000 | a flighty and disorganized person -10555936 18 n 01 scenarist 0 002 @ 10794014 n 0000 + 07012135 n 0101 | a writer of screenplays -10556033 18 n 01 scene_painter 0 001 @ 10393909 n 0000 | a painter of theatrical scenery -10556124 18 n 02 sceneshifter 0 shifter 0 001 @ 10645392 n 0000 | a stagehand responsible for moving scenery -10556235 18 n 01 scene-stealer 0 001 @ 09765278 n 0000 | an actor who draws more attention than other actors in the same scene; "babies are natural scene-stealers" -10556401 18 n 02 scenic_artist 0 scene_painter 1 001 @ 10391653 n 0000 | an artist specializing in scenic subjects -10556518 18 n 02 schemer 0 plotter 1 005 @ 10438172 n 0000 + 00708128 v 0201 + 00708376 v 0101 ~ 09794081 n 0000 ~ 10451450 n 0000 | a planner who draws up a personal scheme of action -10556704 18 n 01 schizophrenic 0 002 @ 10490141 n 0000 + 02077741 a 0101 | someone who is afflicted with schizophrenia -10556825 18 n 02 schlemiel 0 shlemiel 0 002 @ 10599354 n 0000 ;c 06951067 n 0000 | (Yiddish) a dolt who is a habitual bungler -10556953 18 n 04 schlepper 0 shlepper 0 schlep 0 shlep 0 002 @ 10599354 n 0000 ;c 06951067 n 0000 | (Yiddish) an awkward and stupid person -10557094 18 n 02 schlimazel 0 shlimazel 0 002 @ 09630641 n 0000 ;c 06951067 n 0000 | (Yiddish) a very unlucky or inept person who fails at everything -10557246 18 n 02 schlockmeister 0 shlockmeister 0 002 @ 10309896 n 0000 ;u 07157273 n 0000 | (slang) a merchant who deals in shoddy or inferior merchandise -10557404 18 n 04 schmuck 0 shmuck 0 schmo 0 shmo 0 002 @ 10221040 n 0000 ;c 06951067 n 0000 | (Yiddish) a jerk -10557517 18 n 02 schnook 0 shnook 0 002 @ 10599354 n 0000 ;c 06951067 n 0000 | (Yiddish) a gullible simpleton more to be pitied than despised; "don't be such an apologetic shnook" -10557699 18 n 02 schnorrer 0 shnorrer 0 002 @ 10330189 n 0000 ;c 06951067 n 0000 | (Yiddish) a scrounger who takes advantage of the generosity of others -10557854 18 n 04 scholar 0 scholarly_person 0 bookman 0 student 1 040 @ 09621545 n 0000 + 00604694 n 0401 + 02083615 a 0101 + 05985999 n 0105 ~ 09759311 n 0000 ~ 09786338 n 0000 ~ 09802951 n 0000 ~ 09852558 n 0000 ~ 09852679 n 0000 ~ 09885416 n 0000 ~ 10021892 n 0000 ~ 10137632 n 0000 ~ 10177150 n 0000 ~ 10191192 n 0000 ~ 10206887 n 0000 ~ 10217335 n 0000 ~ 10258786 n 0000 ~ 10297655 n 0000 ~ 10298798 n 0000 ~ 10337913 n 0000 ~ 10341243 n 0000 ~ 10411356 n 0000 ~ 10423514 n 0000 ~ 10423589 n 0000 ~ 10456696 n 0000 ~ 10508710 n 0000 ~ 10520109 n 0000 ~ 10520286 n 0000 ~ 10549315 n 0000 ~ 10559009 n 0000 ~ 10559683 n 0000 ~ 10586166 n 0000 ~ 10601234 n 0000 ~ 10705615 n 0000 ~ 10745006 n 0000 ~ 10747294 n 0000 ~i 10915025 n 0000 ~i 11138681 n 0000 ~i 11152122 n 0000 ~i 11361039 n 0000 | a learned person (especially in the humanities); someone who by long study has gained mastery in one or more disciplines -10558773 18 n 01 scholar 2 003 @ 10665698 n 0000 + 13266170 n 0101 ~ 10528295 n 0000 | a student who holds a scholarship -10558896 18 n 01 Scholastic 1 002 @ 10423589 n 0000 + 02793094 a 0101 | a Scholastic philosopher or theologian -10559009 18 n 01 scholiast 0 002 @ 10557854 n 0000 ~ 10132887 n 0000 | a scholar who writes explanatory notes on an author (especially an ancient commentator on a classical author) -10559192 18 n 01 schoolboy 0 002 @ 10285313 n 0000 @ 10559288 n 0000 | a boy attending school -10559288 18 n 03 schoolchild 0 school-age_child 0 pupil 1 005 @ 10804406 n 0000 ~ 09862345 n 0000 ~ 09993651 n 0000 ~ 10247519 n 0000 ~ 10559192 n 0000 | a young person attending school (up through senior high school) -10559508 18 n 01 schoolfriend 0 001 @ 10112591 n 0000 | a friend who attends the same school -10559603 18 n 01 schoolgirl 0 001 @ 10084295 n 0000 | a girl attending school -10559683 18 n 02 Schoolman 1 medieval_Schoolman 0 001 @ 10557854 n 0000 | a scholar in one of the universities of the Middle Ages; versed in scholasticism -10559840 18 n 04 schoolmarm 0 schoolma'am 0 schoolmistress 0 mistress 2 001 @ 10560352 n 0000 | a woman schoolteacher (especially one regarded as strict) -10559996 18 n 01 schoolmaster 1 001 @ 10045713 n 0000 | any person (or institution) who acts as an educator -10560106 18 n 04 schoolmate 0 classmate 0 schoolfellow 0 class_fellow 0 001 @ 09763784 n 0000 | an acquaintance that you go to school with -10560247 18 n 01 school_superintendent 0 001 @ 10388732 n 0000 | the superintendent of a school system -10560352 18 n 02 schoolteacher 0 school_teacher 0 005 @ 10694258 n 0000 #m 08276720 n 0000 ~ 10119491 n 0000 ~ 10559840 n 0000 ~i 11288528 n 0000 | a teacher in a school below the college level -10560548 18 n 01 science_teacher 0 001 @ 10694258 n 0000 | someone who teaches science -10560637 18 n 01 scientist 0 027 @ 00007846 n 0000 + 05999797 n 0101 ~ 09819477 n 0000 ~ 09852979 n 0000 ~ 09855630 n 0000 ~ 09913824 n 0000 ~ 09934647 n 0000 ~ 09951070 n 0000 ~ 10127689 n 0000 ~ 10264437 n 0000 ~ 10301261 n 0000 ~ 10306004 n 0000 ~ 10313872 n 0000 ~ 10319996 n 0000 ~ 10370122 n 0000 ~ 10394786 n 0000 ~ 10428004 n 0000 ~ 10475163 n 0000 ~ 10488865 n 0000 ~ 10504090 n 0000 ~ 10523076 n 0000 ~ 10619642 n 0000 ~i 10830731 n 0000 ~i 10979079 n 0000 ~i 10988570 n 0000 ~i 11033358 n 0000 ~i 11057925 n 0000 | a person with advanced knowledge of one or more sciences -10561222 18 n 01 scion 0 001 @ 10006511 n 0000 | a descendent or heir; "a scion of royal stock" -10561320 18 n 04 scoffer 0 flouter 0 mocker 0 jeerer 0 008 @ 09631463 n 0000 + 00850192 v 0401 + 00849332 v 0301 + 00849080 v 0301 + 00801782 v 0202 + 00850192 v 0203 + 00801782 v 0101 + 00850192 v 0102 | someone who jeers or mocks or treats something with contempt or calls out in derision -10561613 18 n 02 scoffer 1 gorger 0 002 @ 10042300 n 0000 + 01193099 v 0201 | someone who eats food rapidly and greedily -10561736 18 n 01 scofflaw 0 001 @ 09977660 n 0000 | one who habitually ignores the law and does not answer court summonses -10561861 18 n 05 scold 1 scolder 0 nag 0 nagger 0 common_scold 0 007 @ 09631463 n 0000 + 00844941 v 0401 + 00844941 v 0301 + 00909573 v 0203 + 00824767 v 020c + 00909573 v 0103 ~ 10161273 n 0000 | someone (especially a woman) who annoys people by constantly finding fault -10562135 18 n 02 scorekeeper 0 scorer 2 002 @ 10372076 n 0000 + 00657728 v 0202 | an official who records the score during the progress of a game -10562283 18 n 01 scorer 1 002 @ 10276045 n 0000 + 01275762 v 0101 | a logger who marks trees to be felled -10562391 18 n 01 scorer 0 002 @ 10439851 n 0000 + 01111816 v 0101 | a player who makes a score in a game or contest -10562509 18 n 01 scourer 1 001 @ 09629752 n 0000 | someone who travels widely and energetically; "he was a scourer of the seven seas" -10562645 18 n 01 scourer 0 002 @ 09927089 n 0000 + 01251228 v 0102 | someone who cleanses by scouring -10562749 18 n 03 scout 0 pathfinder 0 guide 1 006 @ 09617867 n 0000 + 02159427 v 0301 + 02167571 v 0101 ~ 10193543 n 0000 ~ 10721919 n 0000 ~i 11277500 n 0000 | someone who can find paths through unexplored territory -10562968 18 n 02 scout 2 talent_scout 0 003 @ 10512708 n 0000 ;c 00523513 n 0000 + 02167571 v 0101 | someone employed to discover and recruit talented persons (especially in the worlds of entertainment or sports) -10563183 18 n 01 Scout 3 004 @ 10285313 n 0000 @ 10084295 n 0000 ~ 09871681 n 0000 ~ 10131016 n 0000 | a Boy Scout or Girl Scout -10563314 18 n 01 scoutmaster 0 001 @ 09623038 n 0000 | the leader of a troop of Scouts -10563403 18 n 01 scrambler 0 002 @ 10335931 n 0000 + 01886334 v 0101 | a rapid mover; someone who scrambles; "their quarterback was a good scrambler"; "scramblers can often unnerve a better tennis player" -10563610 18 n 01 scratch 0 001 @ 10533013 n 0000 | a competitor who has withdrawn from competition -10563711 18 n 01 scratcher 0 002 @ 00007846 n 0000 + 02119874 v 0102 | a person who scratches to relieve an itch -10563826 18 n 01 scratcher 1 002 @ 10791221 n 0000 + 01309143 v 0101 | a workman who uses a tool for scratching -10563940 18 n 02 scrawler 0 scribbler 0 003 @ 10801291 n 0000 + 01747203 v 0201 + 01747203 v 0102 | a writer whose handwriting is careless and hard to read -10564098 18 n 02 screen_actor 0 movie_actor 0 002 @ 09765278 n 0000 ~ 10089484 n 0000 | an actor who plays a role in a film -10564224 18 n 01 screener 0 003 @ 10150071 n 0000 + 02400378 v 0101 + 00697419 v 0101 | a guard at an airport who checks passengers or their luggage at a security checkpoint -10564400 18 n 02 screenwriter 0 film_writer 0 003 @ 10564905 n 0000 ~i 11143458 n 0000 ~i 11350059 n 0000 | someone who writes screenplays -10564541 18 n 01 screwballer 0 002 @ 10435988 n 0000 ;c 00471613 n 0000 | (baseball) a pitcher who throws screwballs -10564660 18 n 03 scribe 0 scribbler 1 penman 0 003 @ 10224578 n 0000 + 06403969 n 0302 + 01006239 v 0201 | informal terms for journalists -10564800 18 n 01 scrimshanker 0 003 @ 10608385 n 0000 ;r 08860123 n 0000 + 02463990 v 0101 | a shirker -10564905 18 n 01 scriptwriter 0 002 @ 10794014 n 0000 ~ 10564400 n 0000 | someone who writes scripts for plays or movies or broadcast dramas -10565048 18 n 01 scrubber 0 002 @ 09632518 n 0000 + 01251228 v 0101 | a worker who uses a scrub brush to clean a surface (usually a floor or deck) -10565197 18 n 01 scrub_nurse 0 001 @ 10366966 n 0000 | a nurse who helps a surgeon prepare for surgery -10565302 18 n 02 scrutinizer 0 scrutiniser 0 005 @ 10067968 n 0000 + 02153387 v 0204 + 00697062 v 0203 + 02153387 v 0103 + 00697062 v 0102 | a careful examiner; someone who inspects with great care -10565502 18 n 02 scrutineer 0 canvasser 1 004 @ 10067968 n 0000 ;r 08860123 n 0000 + 00878052 n 0101 + 00635850 n 0102 | someone who examines votes at an election -10565667 18 n 01 scuba_diver 0 001 @ 10019552 n 0000 | an underwater diver who uses scuba gear -10565764 18 n 01 sculler 0 003 @ 10368920 n 0000 ;c 02858304 n 0000 + 01947352 v 0101 | someone who sculls (moves a long oar pivoted on the back of the boat to propel the boat forward) -10565951 18 n 01 scullion 0 001 @ 10582154 n 0000 | a kitchen servant employed to do menial tasks (especially washing) -10566072 18 n 04 sculptor 0 sculpturer 0 carver 0 statue_maker 0 038 @ 09812338 n 0000 + 01256157 v 0301 + 01684337 v 0202 + 01551871 v 0202 + 01684337 v 0101 + 01551871 v 0101 ~i 09527825 n 0000 ~ 10566893 n 0000 ~i 10836555 n 0000 ~i 10848122 n 0000 ~i 10862676 n 0000 ~i 10879009 n 0000 ~i 10888788 n 0000 ~i 10914658 n 0000 ~i 10939040 n 0000 ~i 10959664 n 0000 ~i 10981750 n 0000 ~i 10997553 n 0000 ~i 11044168 n 0000 ~i 11054563 n 0000 ~i 11113898 n 0000 ~i 11128394 n 0000 ~i 11132245 n 0000 ~i 11133778 n 0000 ~i 11146407 n 0000 ~i 11149867 n 0000 ~i 11178161 n 0000 ~i 11183955 n 0000 ~i 11189274 n 0000 ~i 11204689 n 0000 ~i 11209201 n 0000 ~i 11213726 n 0000 ~i 11231943 n 0000 ~i 11234951 n 0000 ~i 11267949 n 0000 ~i 11291179 n 0000 ~i 11306175 n 0000 ~i 11328930 n 0000 | an artist who creates sculptures -10566893 18 n 01 sculptress 0 001 @ 10566072 n 0000 | a woman sculptor -10566966 18 n 01 Scythian 0 002 @ 10359759 n 0000 + 02793793 a 0101 | a member of the ancient nomadic people inhabiting Scythia -10567096 18 n 01 sea_king 0 001 @ 10435367 n 0000 | a Viking pirate chief -10567172 18 n 01 sea_lawyer 0 001 @ 10294602 n 0000 | an argumentative and contentious seaman -10567268 18 n 01 sealer 0 003 @ 10372373 n 0000 + 01356582 v 0101 + 01353405 v 0101 | an official who affixes a seal to a document -10567401 18 n 01 searcher 1 004 @ 10372373 n 0000 + 02153709 v 0101 + 01317723 v 0101 + 01315613 v 0101 | a customs official whose job is to search baggage or goods or vehicles for contraband or dutiable items -10567613 18 n 01 Sea_Scout 0 001 @ 09871681 n 0000 | a Boy Scout enrolled in programs for water activities -10567722 18 n 02 seasonal_worker 0 seasonal 0 001 @ 09632518 n 0000 | a worker who finds employment only in certain seasons -10567848 18 n 01 seasoner 0 002 @ 09963320 n 0000 + 02191766 v 0101 | a cook who uses seasonings; "the cook is a light seasoner" -10567979 18 n 01 secessionist 0 002 @ 09774783 n 0000 + 05968710 n 0101 | an advocate of secessionism -10568083 18 n 01 second 0 001 @ 09821831 n 0000 | the official attendant of a contestant in a duel or boxing match -10568200 18 n 02 second_baseman 0 second_sacker 0 003 @ 10205457 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 | (baseball) the person who plays second base -10568358 18 n 01 second_cousin 0 001 @ 10235549 n 0000 | a child of a first cousin -10568443 18 n 01 seconder 0 002 @ 10677713 n 0000 + 02556817 v 0101 | someone who endorses a motion or petition as a necessary preliminary to a discussion or vote -10568608 18 n 02 second_fiddle 0 second_banana 1 001 @ 10669991 n 0000 | someone who serves in a subordinate capacity or plays a secondary role -10568754 18 n 01 second_hand 0 001 @ 09624559 n 0000 | an intermediate person; used in the phrase `at second hand'; "he could learn at second hand from books" -10568915 18 n 01 second-in-command 0 001 @ 10005280 n 0000 | someone who relieves a commander -10569011 18 n 02 second_lieutenant 0 2nd_lieutenant 0 001 @ 10259348 n 0000 | a commissioned officer in the Army or Air Force or Marine Corps holding the lowest rank -10569179 18 n 02 second-rater 0 mediocrity 0 003 @ 00007846 n 0000 + 02347564 a 0201 + 01128253 a 0201 | a person of second-rate ability or value; "a team of aging second-raters"; "shone among the mediocrities who surrounded him" -10569411 18 n 04 secret_agent 0 intelligence_officer 0 intelligence_agent 0 operative 1 010 @ 09777353 n 0000 ~ 09778266 n 0000 ~ 09778392 n 0000 ~ 09875025 n 0000 ~ 09899134 n 0000 ~ 09933613 n 0000 ~ 10101078 n 0000 ~ 10359659 n 0000 ~ 10641755 n 0000 ~ 10764128 n 0000 | a person secretly employed in espionage for a government -10569744 18 n 02 secretary 0 secretarial_assistant 0 007 @ 09815790 n 0000 + 02794123 a 0101 + 00599472 n 0101 ~ 10069981 n 0000 ~ 10511069 n 0000 ~ 10619888 n 0000 ~ 10654015 n 0000 | an assistant who handles correspondence and clerical work for a boss or an organization -10570019 18 n 01 secretary 1 017 @ 10162991 n 0000 + 00599472 n 0101 ~ 10570429 n 0000 ~ 10570704 n 0000 ~ 10570961 n 0000 ~ 10571202 n 0000 ~ 10571435 n 0000 ~ 10571670 n 0000 ~ 10571907 n 0000 ~ 10572185 n 0000 ~ 10572469 n 0000 ~ 10572706 n 0000 ~ 10572889 n 0000 ~ 10573129 n 0000 ~ 10573349 n 0000 ~ 10573596 n 0000 ~ 10736788 n 0000 | a person who is head of an administrative department of government -10570429 18 n 03 Attorney_General 1 United_States_Attorney_General 0 US_Attorney_General 0 001 @ 10570019 n 0000 | the person who holds the position of secretary of the Justice Department; "Edmund Randolph was the first Attorney General, appointed by President Washington" -10570704 18 n 02 Secretary_of_Agriculture 0 Agriculture_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Agriculture; "the first Secretary of Agriculture was Norman J. Colman, who was appointed by Cleveland" -10570961 18 n 02 Secretary_of_Commerce 0 Commerce_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Commerce; "the first Commerce Secretary was William C. Redfield who was appointed by Wilson" -10571202 18 n 02 Secretary_of_Defense 0 Defense_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Defense Department; "the first Defense Secretary was James V. Forrestal who was appointed by Truman" -10571435 18 n 02 Secretary_of_Education 0 Education_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Education; "Carter appointed Shirley Hufstedler as the first Secretary of Education" -10571670 18 n 02 Secretary_of_Energy 0 Energy_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Energy; "the first Secretary of Energy was James R. Schlesinger who was appointed by Carter" -10571907 18 n 01 Secretary_of_Health_and_Human_Services 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Health and Human Services; "the first Secretary of Health and Human Services was Patricia Roberts Harris who was appointed by Carter" -10572185 18 n 01 Secretary_of_Housing_and_Urban_Development 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Housing and Urban Development; "the first Secretary of Housing and Urban Development was Robert C. Weaver who was appointed by Johnson" -10572469 18 n 02 Secretary_of_Labor 0 Labor_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Labor; "the first Labor Secretary was William B. Wilson who was appointed by President Wilson" -10572706 18 n 01 Secretary_of_State 1 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of State; "the first Secretary of State was Thomas Jefferson" -10572889 18 n 02 Secretary_of_the_Interior 0 Interior_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Interior Department; "President Taylor appointed Thomas Ewing as the first Secretary of the Interior" -10573129 18 n 02 Secretary_of_the_Treasury 0 Treasury_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Treasury Department; "Alexander Hamilton was the first Secretary of the Treasury" -10573349 18 n 02 Secretary_of_Transportation 0 Transportation_Secretary 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Transportation; "Johnson appointed Alan S. Boyd as the first Transportation Secretary" -10573596 18 n 01 Secretary_of_Veterans_Affairs 0 001 @ 10570019 n 0000 | the person who holds the secretaryship of the Department of Veterans Affairs; "Bush appointed Edward J. Derwinski as the first Secretary of Veterans Affairs" -10573829 18 n 01 Secretary_General 0 001 @ 09770472 n 0000 | a person who is a chief administrator (as of the United Nations) -10573957 18 n 03 sectarian 0 sectary 0 sectarist 0 003 @ 09853645 n 0000 + 02794372 a 0101 + 02091574 a 0101 | a member of a sect; "most sectarians are intolerant of the views of any other sect" -10574154 18 n 01 Section_Eight 0 002 @ 10622053 n 0000 ;c 08199025 n 0000 | a soldier who received a Section Eight discharge as unfit for military service -10574311 18 n 01 section_hand 0 002 @ 10241300 n 0000 #m 08243570 n 0000 | a laborer assigned to a section gang -10574425 18 n 01 section_man 0 001 @ 10694258 n 0000 | someone who teaches a section of a large college course -10574538 18 n 01 secularist 0 002 @ 09774783 n 0000 + 05968835 n 0101 | an advocate of secularism; someone who believes that religion should be excluded from government and education -10574723 18 n 02 secundigravida 0 gravida_II 0 001 @ 10144838 n 0000 | a woman who is pregnant for the second time -10574840 18 n 01 security_consultant 0 001 @ 09774266 n 0000 | an adviser about alarm systems to prevent burglaries -10574958 18 n 01 security_director 0 001 @ 09770949 n 0000 | head of a private security force working for a business or industry -10575089 18 n 03 seducer 0 ladies'_man 0 lady_killer 0 003 @ 10257647 n 0000 + 01428578 v 0101 ~ 10737717 n 0000 | a man who takes advantage of women -10575241 18 n 01 seducer 1 003 @ 09831962 n 0000 + 00783246 v 0101 ~ 10575387 n 0000 | a bad person who entices others into error or wrongdoing -10575387 18 n 01 seductress 0 001 @ 10575241 n 0000 | a woman who seduces -10575463 18 n 02 seeded_player 0 seed 0 002 @ 10439851 n 0000 + 00658913 v 0201 | one of the outstanding players in a tournament -10575594 18 n 02 seeder 0 cloud_seeder 0 002 @ 00007846 n 0000 + 00516425 v 0101 | a person who seeds clouds -10575705 18 n 02 seedsman 0 seedman 0 001 @ 10720453 n 0000 | a dealer in seeds -10575787 18 n 03 seeker 0 searcher 0 quester 0 009 @ 00007846 n 0000 + 02240881 v 0301 + 02153709 v 0201 + 01317723 v 0201 + 01315613 v 0201 + 00648224 v 0202 ~ 10090745 n 0000 ~ 10116905 n 0000 ~ 10193719 n 0000 | someone making a search or inquiry; "they are seekers after truth" -10576071 18 n 01 seer 2 003 @ 09626589 n 0000 + 02150948 v 0103 + 02129289 v 0101 | an observer who perceives visually; "an incurable seer of movies" -10576223 18 n 01 segregate 0 001 @ 00007846 n 0000 | someone who is or has been segregated -10576316 18 n 02 segregator 0 segregationist 0 005 @ 09853645 n 0000 + 06216805 n 0201 + 08380340 n 0201 + 01202184 n 0201 + 02482139 v 0101 | someone who believes the races should be kept apart -10576513 18 n 01 seismologist 0 002 @ 10128519 n 0000 + 06120496 n 0101 | a geophysicist who studies earthquakes and the mechanical characteristics of the Earth -10576676 18 n 01 selectman 0 002 @ 10048836 n 0000 #m 08323471 n 0000 | an elected member of a board of officials who run New England towns -10576818 18 n 01 selectwoman 0 002 @ 10048836 n 0000 #m 08323471 n 0000 | an elected member of a board of officials who run New England towns -10576962 18 n 01 selfish_person 0 008 @ 09631463 n 0000 ~ 10023506 n 0000 ~ 10047199 n 0000 ~ 10072546 n 0000 ~ 10179649 n 0000 ~ 10329337 n 0000 ~ 10345422 n 0000 ~ 10379376 n 0000 | a person who is unusually selfish -10577182 18 n 01 self-starter 0 001 @ 10462429 n 0000 | an energetic person with unusual initiative -10577284 18 n 05 seller 0 marketer 0 vender 0 vendor 0 trafficker 0 016 @ 10309896 n 0000 + 02260770 v 0501 + 02302817 v 0405 + 02302817 v 0305 + 02298160 v 0201 + 02244956 v 0102 + 02242464 v 0101 ~ 09629477 n 0000 ~ 09967063 n 0000 ~ 10097995 n 0000 ~ 10113997 n 0000 ~ 10190516 n 0000 ~ 10411551 n 0000 ~ 10577710 n 0000 ~ 10721470 n 0000 ~ 10736926 n 0000 | someone who promotes or exchanges goods or services for money -10577710 18 n 01 selling_agent 0 001 @ 10577284 n 0000 | someone who sells goods (on commission) for others -10577820 18 n 02 semanticist 0 semiotician 0 006 @ 10264437 n 0000 + 05976257 n 0201 + 06179792 n 0101 ~i 11109563 n 0000 ~i 11212786 n 0000 ~i 11260945 n 0000 | a specialist in the study of meaning -10578021 18 n 01 semifinalist 0 002 @ 10533013 n 0000 + 07467393 n 0101 | one of four competitors remaining in a tournament by elimination -10578162 18 n 02 seminarian 0 seminarist 0 004 @ 10665698 n 0000 ;c 08083599 n 0000 + 08284994 n 0201 + 08285109 n 0201 | a student at a seminary (especially a Roman Catholic seminary) -10578349 18 n 02 semiprofessional 0 semipro 0 001 @ 10480583 n 0000 | an athlete who plays for pay on a part-time basis -10578471 18 n 01 senator 0 007 @ 10253995 n 0000 + 02796301 a 0101 + 00604131 n 0101 ~ 10650076 n 0000 ~i 10902752 n 0000 ~i 10985160 n 0000 ~i 11002191 n 0000 | a member of a senate -10578656 18 n 01 sendee 0 002 @ 09627906 n 0000 + 01031256 v 0103 | the intended recipient of a message -10578762 18 n 02 sender 0 transmitter 0 005 @ 09610660 n 0000 + 01435380 v 0201 + 01437254 v 0101 + 01031256 v 0103 ~ 10629545 n 0000 | someone who transmits a message; "return to sender" -10578952 18 n 01 Senhor 0 001 @ 10287213 n 0000 | a Portuguese title of respect; equivalent to English `Mr' -10579062 18 n 01 senior 0 001 @ 10736602 n 0000 | an undergraduate student during the year preceding graduation -10579176 18 n 02 senior_chief_petty_officer 0 SCPO 0 001 @ 10420809 n 0000 | a senior noncommissioned officer in the Navy or Coast Guard with a rank comparable to master sergeant in the Army -10579369 18 n 02 senior_master_sergeant 0 SMSgt 0 001 @ 10580772 n 0000 | a senior noncommissioned officer in the Air Force with a rank comparable to master sergeant in the Army -10579549 18 n 01 senior_vice_president 0 001 @ 10751265 n 0000 | the ranking vice president in a firm that has more than one -10579676 18 n 02 sentimentalist 0 romanticist 1 003 @ 00007846 n 0000 + 05152902 n 0201 + 04628080 n 0101 | someone who indulges in excessive sentimentality -10579835 18 n 02 sensationalist 0 ballyhoo_artist 0 003 @ 10490699 n 0000 + 07247602 n 0101 + 07088053 n 0101 | someone who uses exaggerated or lurid material in order to gain public attention -10580030 18 n 02 separatist 0 separationist 0 006 @ 09774783 n 0000 ;c 01032368 n 0000 + 00728619 a 0103 + 04943704 n 0101 + 02431320 v 0101 ~ 10779238 n 0000 | an advocate of secession or separation from a larger group (such as an established church or a national union) -10580304 18 n 02 Sephardi 0 Sephardic_Jew 0 001 @ 09681351 n 0000 | a Jew who is of Spanish or Portuguese or North African descent -10580437 18 n 01 septuagenarian 0 001 @ 10376523 n 0000 | someone whose age is in the seventies -10580535 18 n 03 serf 0 helot 0 villein 0 006 @ 10709435 n 0000 ;r 09275473 n 0000 ;c 15259284 n 0000 + 13998263 n 0101 + 13998263 n 0102 ~ 09968652 n 0000 | (Middle Ages) a person who is bound to the land and owned by the feudal lord -10580772 18 n 01 sergeant 1 010 @ 10360747 n 0000 ~ 09938554 n 0000 ~ 10093475 n 0000 ~ 10152306 n 0000 ~ 10299583 n 0000 ~ 10512859 n 0000 ~ 10579369 n 0000 ~ 10581278 n 0000 ~ 10645017 n 0000 ~ 10696101 n 0000 | any of several noncommissioned officer ranks in the Army or Air Force or Marines ranking above a corporal -10581094 18 n 02 sergeant_at_arms 0 serjeant-at-arms 0 002 @ 10371450 n 0000 ;c 08163273 n 0000 | an officer (as of a legislature or court) who maintains order and executes commands -10581278 18 n 02 sergeant_major 0 command_sergeant_major 0 001 @ 10580772 n 0000 | a noncommissioned officer serving as chief administrative officer of a headquarters unit of the Army -10581464 18 n 02 serial_killer 0 serial_murderer 0 002 @ 10338707 n 0000 ~ 10581648 n 0000 | someone who murders more than three victims one at a time in a relatively short interval -10581648 18 n 01 spree_killer 0 001 @ 10581464 n 0000 | a serial killer whose murders occur within a brief period of time -10581772 18 n 01 sericulturist 0 003 @ 10292316 n 0000 + 13555101 n 0101 + 00923303 n 0101 | a producer of raw silk -10581890 18 n 04 serjeant-at-law 0 serjeant 0 sergeant-at-law 0 sergeant 2 001 @ 09840963 n 0000 | an English barrister of the highest rank -10582032 18 n 01 serologist 0 002 @ 10306004 n 0000 + 06063072 n 0101 | a medical scientist who specializes in serology -10582154 18 n 02 servant 0 retainer 0 013 @ 09632518 n 0000 + 02540670 v 0101 ~ 09863238 n 0000 ~ 09885769 n 0000 ~ 10024119 n 0000 ~ 10075802 n 0000 ~ 10077106 n 0000 ~ 10242573 n 0000 ~ 10283546 n 0000 ~ 10292192 n 0000 ~ 10308938 n 0000 ~ 10565951 n 0000 ~ 10582507 n 0000 | a person working in the service of another (especially in the household) -10582507 18 n 02 servant_girl 0 serving_girl 0 001 @ 10582154 n 0000 | a girl who is a servant -10582604 18 n 01 server 1 003 @ 10439851 n 0000 ;c 00479076 n 0000 + 01077568 v 0101 | (court games) the player who serves to start a point -10582746 18 n 04 serviceman 0 military_man 0 man 3 military_personnel 0 018 @ 10605985 n 0000 #m 08198398 n 0000 ;c 08199025 n 0000 ! 09924742 n 0101 ~ 09780828 n 0000 ~ 09811852 n 0000 ~ 09861395 n 0000 ~ 09942275 n 0000 ~ 10028765 n 0000 ~ 10058777 n 0000 ~ 10294139 n 0000 ~ 10317007 n 0000 ~ 10360578 n 0000 ~ 10369955 n 0000 ~ 10664076 n 0000 ~ 10749353 n 0000 ~ 10749528 n 0000 ~ 10759331 n 0000 | someone who serves in the armed forces; a member of a military force; "two men stood sentry duty" -10583250 18 n 01 servitor 0 002 @ 09821831 n 0000 + 02540670 v 0101 | someone who performs the duties of an attendant for someone else -10583387 18 n 02 settler 0 colonist 0 016 @ 10314952 n 0000 + 09048460 n 0201 + 08499840 n 0201 + 08374049 n 0201 + 00415044 v 0101 + 00413876 v 0101 ~ 10432674 n 0000 ~ 10434424 n 0000 ~ 10627714 n 0000 ~ 10643218 n 0000 ~i 10958885 n 0000 ~i 11069085 n 0000 ~i 11181438 n 0000 ~i 11312362 n 0000 ~i 11389619 n 0000 ~i 11392913 n 0000 | a person who settles in a new colony or moves into new country -10583790 18 n 01 settler 1 002 @ 09928451 n 0000 ;r 08860123 n 0000 | a clerk in a betting shop who calculates the winnings -10583916 18 n 01 settler 2 002 @ 10351874 n 0000 + 00698855 v 0102 | a negotiator who settles disputes -10584021 18 n 02 settlor 0 trustor 0 003 @ 10025730 n 0000 ;c 08441203 n 0201 ;c 08441203 n 0101 | (law) a person who creates a trust by giving real or personal property in trust to a trustee for the benefit of a beneficiary; a person who gives such property is said to settle it on the trustee -10584318 18 n 01 sewer 0 006 @ 10351281 n 0000 + 01666327 v 0101 + 01329239 v 0101 ~ 09843048 n 0000 ~ 10584501 n 0000 ~ 10732748 n 0000 | someone who sews; "a sewer of fine gowns" -10584501 18 n 01 sewing-machine_operator 0 001 @ 10584318 n 0000 | someone who sews by operating a sewing machine -10584617 18 n 01 sexagenarian 0 002 @ 10376523 n 0000 + 01646646 a 0101 | someone whose age is in the sixties -10584729 18 n 03 sex_kitten 0 sexpot 0 sex_bomb 0 001 @ 10129825 n 0000 | a young woman who is thought to have sex appeal -10584853 18 n 01 sex_object 0 001 @ 00007846 n 0000 | any person regarded simply as an object of sexual gratification -10584973 18 n 01 sex_offender 0 001 @ 09963159 n 0000 | someone who has been convicted of a sex crime -10585077 18 n 01 sex_symbol 0 001 @ 00007846 n 0000 | a person (especially a celebrity) who is well-known for their sexual attractiveness -10585217 18 n 02 sexton 0 sacristan 0 002 @ 09922799 n 0000 @ 09895701 n 0000 | an officer of the church who is in charge of sacred objects -10585359 18 n 01 shadow 1 002 @ 10100124 n 0000 + 02001461 v 0101 | an inseparable companion; "the poor child was his mother's shadow" -10585496 18 n 02 Shah 0 Shah_of_Iran 0 002 @ 10628644 n 0000 ~i 11220461 n 0000 | title for the former hereditary monarch of Iran -10585628 18 n 01 shaheed 0 002 @ 10296618 n 0000 ;c 06988057 n 0000 | Arabic term for holy martyrs; applied by Palestinians to suicide bombers -10585773 18 n 01 Shaker 0 002 @ 09678009 n 0000 #m 08150576 n 0000 | a member of Christian group practicing celibacy and communal living and common possession of property and separation from the world -10585976 18 n 02 shaker 1 mover_and_shaker 0 001 @ 00007846 n 0000 | a person who wields power and influence; "a shaker of traditional beliefs"; "movers and shakers in the business world" -10586166 18 n 02 Shakespearian 0 Shakespearean 0 001 @ 10557854 n 0000 | a Shakespearean scholar -10586265 18 n 02 shanghaier 0 seizer 0 003 @ 10230801 n 0000 + 01213614 v 0201 + 01471547 v 0101 | a kidnapper who drugs men and takes them for compulsory service aboard a ship -10586444 18 n 03 sharecropper 0 cropper 0 sharecrop_farmer 0 001 @ 09779623 n 0000 | small farmers and tenants -10586557 18 n 01 shark 0 001 @ 09617867 n 0000 | a person who is unusually skilled in certain ways; "a card shark" -10586674 18 n 01 shark 1 002 @ 09633969 n 0000 ~ 10742384 n 0000 | a person who is ruthless and greedy and dishonest -10586793 18 n 01 sharpshooter 1 002 @ 09820263 n 0000 + 01135501 v 0101 | an athlete noted for accurate aim -10586903 18 n 01 shaver 1 002 @ 10287213 n 0000 + 00037298 v 0101 | an adult male who shaves -10586998 18 n 01 Shavian 0 001 @ 10677713 n 0000 | an admirer of G. B. Shaw or his works -10587089 18 n 01 shearer 0 002 @ 10605985 n 0000 + 01560369 v 0102 | a skilled worker who shears the wool off of sheep or other animals -10587227 18 n 01 shearer 1 003 @ 10791221 n 0000 + 01320816 v 0101 + 01320513 v 0101 | a workman who uses shears to cut leather or metal or textiles -10587378 18 n 02 shedder 0 spiller 0 002 @ 09821253 n 0000 + 01542207 v 0201 | an attacker who sheds or spills blood; "a great hunter and spiller of blood" -10587536 18 n 01 she-devil 0 001 @ 10739636 n 0000 | a cruel woman -10587605 18 n 03 sheepherder 0 shepherd 0 sheepman 1 003 @ 10171567 n 0000 + 02550044 v 0201 ~ 10589066 n 0000 | a herder of sheep (on an open range); someone who keeps the sheep together in a flock -10587806 18 n 01 sheepman 0 001 @ 10658501 n 0000 | a man who raises (or tends) sheep -10587894 18 n 01 sheep 0 001 @ 10099375 n 0000 | a docile and vulnerable person who would rather follow than make an independent decision; "his students followed him like sheep" -10588074 18 n 01 sheep 1 001 @ 10599354 n 0000 | a timid defenseless simpleton who is readily preyed upon -10588182 18 n 01 shegetz 0 003 @ 09679028 n 0000 ;u 06717170 n 0000 ;u 06951067 n 0000 | an offensive term for non-Jewish young man; "why does she like all those shkotzim?" -10588357 18 n 05 sheik 0 tribal_sheik 0 sheikh 0 tribal_sheikh 0 Arab_chief 0 002 @ 10541229 n 0000 + 08558770 n 0101 | the leader of an Arab village or family -10588519 18 n 02 sheika 0 sheikha 0 001 @ 10780632 n 0000 | the wife of a sheik -10588601 18 n 01 sheller 0 002 @ 09632518 n 0000 + 00197744 v 0101 | a worker who removes shells (as of peas or oysters) -10588724 18 n 01 shelver 0 003 @ 09632518 n 0000 + 02642814 v 0106 + 01497750 v 0101 | a worker who puts things (as books) on shelves -10588860 18 n 01 Shem 0 002 @i 10287213 n 0000 ;c 06449735 n 0000 | (Old Testament) eldest son of Noah -10588965 18 n 01 shepherd 1 001 @ 09927451 n 0000 | a clergyman who watches over a group of people -10589066 18 n 01 shepherdess 0 001 @ 10587605 n 0000 | a woman shepherd -10589140 18 n 01 sheriff 0 001 @ 10249459 n 0000 | the principal law-enforcement officer in a county -10589243 18 n 02 shiksa 0 shikse 0 003 @ 10787470 n 0000 ;u 06717170 n 0000 ;u 06951067 n 0000 | a derogatory term used by Jews to refer to non-Jewish women -10589402 18 n 01 shill 0 002 @ 09995573 n 0000 + 02575536 v 0101 | a decoy who acts as an enthusiastic customer in order to stimulate the participation of others -10589566 18 n 01 shingler 0 002 @ 09632518 n 0000 + 01234223 v 0101 | a worker who shingles roofs -10589666 18 n 01 ship-breaker 0 001 @ 09960688 n 0000 | a contractor who buys old ships and breaks them up for scrap -10589785 18 n 01 ship_broker 0 001 @ 09777012 n 0000 | an agent for the ship owner; obtains cargo and may arrange for its loading or discharge -10589930 18 n 02 shipbuilder 0 ship_builder 0 001 @ 09878275 n 0000 | a person who builds ships as a business -10590042 18 n 01 ship_chandler 0 001 @ 10018861 n 0000 | a dealer in equipment and supplies for ships -10590146 18 n 01 shipmate 0 001 @ 09816771 n 0000 | an associate on the same ship with you -10590239 18 n 01 shipowner 0 001 @ 10389398 n 0000 | someone who owns a ship or a share in a ship -10590339 18 n 01 shipper 0 003 @ 09882716 n 0000 + 01950798 v 0103 ~ 09958569 n 0000 | someone who ships goods -10590452 18 n 01 shipping_agent 0 001 @ 09777353 n 0000 | the agent of a shipowner -10590537 18 n 01 shipping_clerk 0 001 @ 09928451 n 0000 | an employee who ships and receives goods -10590638 18 n 01 ship's_chandler 0 001 @ 09907804 n 0000 | a dealer in sails and ropes and other supplies for sailing ships -10590764 18 n 03 shipwright 0 shipbuilder 1 ship_builder 1 001 @ 10793570 n 0000 | a carpenter who helps build and launch wooden vessels -10590903 18 n 01 shirtmaker 0 001 @ 10284064 n 0000 | a maker of shirts -10590977 18 n 01 shocker 0 002 @ 09831962 n 0000 + 01810447 v 0101 | a shockingly bad person -10591072 18 n 01 shogun 0 002 @ 10011902 n 0000 @ 09718217 n 0000 | a hereditary military dictator of Japan; the shoguns ruled Japan until the revolution of 1867-68 -10591239 18 n 01 Shona 0 001 @ 09692624 n 0000 | a member of a Bantu tribe living in present-day Zimbabwe -10591347 18 n 01 shoofly 0 002 @ 10448983 n 0000 ;u 07075172 n 0000 | an undercover police officer who investigates other policemen -10591481 18 n 01 shooter 2 003 @ 10439851 n 0000 ;c 00523513 n 0000 + 01597286 v 0101 | (sports) a player who drives or kicks a ball at the goal (or a basketball player who shoots at the basket) -10591678 18 n 02 shooter 3 crap-shooter 0 002 @ 10118844 n 0000 + 01437144 v 0101 | a gambler who throws dice in the game of craps -10591811 18 n 01 shopaholic 0 002 @ 10592397 n 0000 ;u 06288527 n 0000 | a compulsive shopper; "shopaholics can never resist a bargain" -10591949 18 n 01 shop_boy 0 002 @ 10548227 n 0000 @ 10285313 n 0000 | a young male shop assistant -10592049 18 n 01 shop_girl 0 002 @ 10548227 n 0000 @ 10129825 n 0000 | a young female shop assistant -10592152 18 n 04 shopkeeper 0 tradesman 0 storekeeper 0 market_keeper 0 007 @ 10309896 n 0000 #m 07950685 n 0000 ~ 09927305 n 0000 ~ 10097705 n 0000 ~ 10186578 n 0000 ~ 10356213 n 0000 ~ 10713923 n 0000 | a merchant who owns or manages a shop -10592397 18 n 01 shopper 0 006 @ 09984659 n 0000 + 02466134 v 0103 + 02326355 v 0101 + 02325968 v 0101 ~ 09839343 n 0000 ~ 10591811 n 0000 | someone who visits stores in search of articles to buy -10592595 18 n 01 shopper 1 002 @ 09777353 n 0000 + 02466134 v 0103 | a commercial agent who shops at the competitor's store in order to compare their prices and merchandise with those of the store that employs her -10592811 18 n 02 shop_steward 0 steward 1 002 @ 10738515 n 0000 + 00604523 n 0201 | a union member who is elected to represent fellow workers in negotiating with management -10592986 18 n 01 shortstop 0 002 @ 10205457 n 0000 ;c 00471613 n 0000 | (baseball) the person who plays the shortstop position -10593115 18 n 02 shot 0 shooter 0 007 @ 09617867 n 0000 + 02484570 v 0201 + 01134781 v 0202 + 01137138 v 0201 ~ 10294953 n 0000 ~ 10593392 n 0000 ~ 10726524 n 0000 | a person who shoots (usually with respect to their ability to shoot); "he is a crack shot"; "a poor shooter" -10593392 18 n 02 gunman 1 gun 1 002 @ 10593115 n 0000 + 01136614 v 0201 | a person who shoots a gun (as regards their ability) -10593521 18 n 01 shot_putter 0 001 @ 09820263 n 0000 | an athlete who competes in the shot put -10593618 18 n 02 shoveler 0 shoveller 0 002 @ 09632518 n 0000 + 01312810 v 0101 | a worker who shovels; "a shoveler of coal" -10593745 18 n 03 showman 0 promoter 1 impresario 0 010 @ 09865954 n 0000 ~ 10070563 n 0000 ~ 10382710 n 0000 ~ 10455094 n 0000 ~i 10834869 n 0000 ~i 10904270 n 0000 ~i 10933449 n 0000 ~i 10942473 n 0000 ~i 11067745 n 0000 ~i 11263180 n 0000 | a sponsor who books and stages public entertainments -10594043 18 n 01 showman 1 001 @ 00007846 n 0000 | a person skilled at making effective presentations -10594147 18 n 02 shrew 0 termagant 0 003 @ 10739636 n 0000 ~ 10755164 n 0000 ~ 10803463 n 0000 | a scolding nagging bad-tempered woman -10594284 18 n 02 Shudra 0 Sudra 0 002 @ 09713501 n 0000 #m 08307440 n 0000 | a member of the lowest or worker Hindu caste -10594408 18 n 01 shuffler 0 002 @ 10412055 n 0000 + 01917549 v 0101 | someone who walks without raising the feet -10594523 18 n 01 shuffler 1 002 @ 09894654 n 0000 + 01418667 v 0101 | the card player who shuffles the cards -10594634 18 n 01 shutterbug 0 001 @ 10059582 n 0000 | a photography enthusiast -10594715 18 n 02 shy_person 0 shrinking_violet 0 002 @ 09614047 n 0000 ~ 10764907 n 0000 | someone who shrinks from familiarity with others -10594857 18 n 02 shyster 0 pettifogger 0 001 @ 09633969 n 0000 | a person (especially a lawyer or politician) who uses unscrupulous or unethical methods -10595012 18 n 02 Siamese_twin 0 conjoined_twin 0 001 @ 10197182 n 0000 | one of a pair of identical twins born with their bodies joined at some point -10595164 18 n 02 sibling 0 sib 2 007 @ 10235549 n 0000 #m 07970406 n 0000 ~ 10157271 n 0000 ~ 10497645 n 0000 ~ 10501908 n 0000 ~ 10729801 n 0000 ~ 10734394 n 0000 | a person's brother or sister -10595361 18 n 01 sibyl 0 005 @ 10483530 n 0000 ;r 08780881 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 + 01882754 a 0104 | (ancient Rome) a woman who was regarded as an oracle or prophet -10595551 18 n 01 sibyl 2 002 @ 10105462 n 0000 + 01882754 a 0104 | a woman who tells fortunes -10595647 18 n 03 sick_person 0 diseased_person 0 sufferer 0 029 @ 09630641 n 0000 + 02121511 v 0303 + 00065639 v 0301 + 00065070 v 0301 ~ 09795751 n 0000 ~ 09836057 n 0000 ~ 09960001 n 0000 ~ 09961605 n 0000 ~ 10005163 n 0000 ~ 10010977 n 0000 ~ 10040698 n 0000 ~ 10062176 n 0000 ~ 10170989 n 0000 ~ 10202763 n 0000 ~ 10208748 n 0000 ~ 10214230 n 0000 ~ 10254670 n 0000 ~ 10276764 n 0000 ~ 10290684 n 0000 ~ 10329143 n 0000 ~ 10345556 n 0000 ~ 10353813 n 0000 ~ 10354898 n 0000 ~ 10405694 n 0000 ~ 10490141 n 0000 ~ 10527915 n 0000 ~ 10687427 n 0000 ~ 10745613 n 0000 ~ 10759702 n 0000 | a person suffering from an illness -10596272 18 n 01 side_judge 0 001 @ 10101427 n 0000 | a football official -10596348 18 n 01 sidesman 0 002 @ 09815790 n 0000 ;c 08087981 n 0000 | (Church of England) an assistant to the churchwarden; collects offerings of money in the church -10596517 18 n 01 sightreader 0 003 @ 10415638 n 0000 ;c 07020895 n 0000 + 01715525 v 0101 | a performer who reads without preparation or prior acquaintance (as in music) -10596689 18 n 04 sightseer 0 excursionist 0 tripper 0 rubberneck 1 005 @ 10718131 n 0000 + 01843055 v 0302 + 00310201 n 0202 + 00311809 n 0201 + 01843904 v 0101 | a tourist who is visiting sights of interest -10596899 18 n 02 signaler 0 signaller 0 006 @ 09610660 n 0000 + 01039330 v 0202 + 01039330 v 0102 ~ 10597091 n 0000 ~ 10714851 n 0000 ~ 10777768 n 0000 | someone who communicates by signals -10597091 18 n 01 signalman 0 002 @ 10722758 n 0000 @ 10596899 n 0000 | a railroad employee in charge of signals and point in a railroad yard -10597234 18 n 02 signer 0 signatory 0 010 @ 00007846 n 0000 + 02409941 v 0101 + 02464866 v 0101 + 00996485 v 0101 + 00889229 v 0101 ~ 09613690 n 0000 ~ 09613853 n 0000 ~ 09756195 n 0000 ~ 10057271 n 0000 ~ 10786270 n 0000 | someone who signs and is bound by a document -10597505 18 n 01 signer 1 003 @ 09610660 n 0000 + 00929160 v 0101 + 01039330 v 0101 | someone who can use sign language to communicate -10597642 18 n 01 sign_painter 0 001 @ 10393909 n 0000 | someone who paints signs and billboards etc. -10597745 18 n 02 signor 0 signior 0 001 @ 10287213 n 0000 | used as an Italian courtesy title; can be prefixed to the name or used separately -10597889 18 n 01 signora 0 001 @ 10780632 n 0000 | an Italian title of address equivalent to Mrs. when used before a name -10598013 18 n 01 signore 0 001 @ 10287213 n 0000 | an Italian title of respect for a man; equivalent to the English `sir'; used separately (not prefixed to his name) -10598181 18 n 01 signorina 0 001 @ 10739512 n 0000 | an Italian courtesy title for an unmarried woman; equivalent to `Miss', it is either used alone or before a name -10598349 18 n 01 Sikh 0 003 @ 10016103 n 0000 ;c 06239931 n 0000 + 02797550 a 0101 | an adherent of Sikhism -10598459 18 n 02 silent_partner 0 sleeping_partner 0 001 @ 10402417 n 0000 | a partner (who usually provides capital) whose association with the enterprise is not public knowledge -10598641 18 n 01 silly 0 001 @ 09917593 n 0000 | a word used for misbehaving children; "don't be a silly" -10598749 18 n 03 silversmith 0 silverworker 0 silver-worker 0 002 @ 10221956 n 0000 ~i 11258501 n 0000 | someone who makes or repairs articles of silver -10598904 18 n 04 addle-head 0 addlehead 0 loon 1 birdbrain 0 002 @ 10322238 n 0000 + 02074929 a 0310 | a person with confused ideas; incapable of serious thought -10599068 18 n 01 Simeon 0 002 @ 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the 2nd son of Jacob and one of the 12 patriarchs of Israel -10599215 18 n 01 simperer 0 002 @ 10614363 n 0000 + 00029336 v 0102 | a smiler whose smile is silly and self-conscious and sometimes coy -10599354 18 n 02 simpleton 0 simple 0 020 @ 00007846 n 0000 ~ 09780984 n 0000 ~ 10013114 n 0000 ~ 10013399 n 0000 ~ 10039391 n 0000 ~ 10100761 n 0000 ~ 10197525 n 0000 ~ 10197780 n 0000 ~ 10350774 n 0000 ~ 10358794 n 0000 ~ 10555825 n 0000 ~ 10556825 n 0000 ~ 10556953 n 0000 ~ 10557517 n 0000 ~ 10588074 n 0000 ~ 10629142 n 0000 ~ 10642988 n 0000 ~ 10667187 n 0000 ~ 10669876 n 0000 ~ 10734129 n 0000 | a person lacking intelligence or common sense -10599806 18 n 04 singer 0 vocalist 0 vocalizer 0 vocaliser 0 064 @ 10340312 n 0000 + 01704236 v 0402 + 01704236 v 0301 + 00952182 v 0303 + 07110615 n 0204 + 01731031 v 0101 + 01729431 v 0101 + 01067816 v 0101 ~ 09786115 n 0000 ~ 09839436 n 0000 ~ 09842528 n 0000 ~ 09890662 n 0000 ~ 09896401 n 0000 ~ 09899534 n 0000 ~ 09920771 n 0000 ~ 09961198 n 0000 ~ 09980090 n 0000 ~ 10099093 n 0000 ~ 10191802 n 0000 ~ 10259016 n 0000 ~ 10279867 n 0000 ~ 10378290 n 0000 ~ 10507482 n 0000 ~ 10536416 n 0000 ~ 10624310 n 0000 ~ 10625546 n 0000 ~ 10701783 n 0000 ~ 10709876 n 0000 ~ 10715881 n 0000 ~ 10758713 n 0000 ~ 10766492 n 0000 ~ 10803838 n 0000 ~i 10831363 n 0000 ~i 10886222 n 0000 ~i 10895549 n 0000 ~i 10935304 n 0000 ~i 10947108 n 0000 ~i 10971981 n 0000 ~i 10991165 n 0000 ~i 11060535 n 0000 ~i 11070855 n 0000 ~i 11076820 n 0000 ~i 11076965 n 0000 ~i 11089669 n 0000 ~i 11091545 n 0000 ~i 11105298 n 0000 ~i 11118886 n 0000 ~i 11123262 n 0000 ~i 11148748 n 0000 ~i 11157580 n 0000 ~i 11159698 n 0000 ~i 11176527 n 0000 ~i 11216100 n 0000 ~i 11234152 n 0000 ~i 11264973 n 0000 ~i 11275344 n 0000 ~i 11301279 n 0000 ~i 11305745 n 0000 ~i 11306008 n 0000 ~i 11322178 n 0000 ~i 11361423 n 0000 ~i 11376069 n 0000 ~i 11390364 n 0000 ~i 11400704 n 0000 | a person who sings -10601078 18 n 02 sinner 0 evildoer 0 004 @ 09633969 n 0000 + 02565687 v 0101 ~ 10280598 n 0000 ~i 11162582 n 0000 | a person who sins (without repenting) -10601234 18 n 01 Sinologist 0 002 @ 10557854 n 0000 + 06171524 n 0101 | a student of Chinese history and language and culture -10601362 18 n 01 sipper 0 002 @ 10034614 n 0000 + 01170687 v 0101 | a drinker who sips -10601451 18 n 01 sir 0 001 @ 10287213 n 0000 | term of address for a man -10601526 18 n 01 Sir 1 002 @ 10285135 n 0000 ;r 08860123 n 0000 | a title used before the name of knight or baronet -10601644 18 n 01 sirdar 0 001 @ 10200781 n 0000 | an important person in India -10601725 18 n 01 sire 1 001 @ 10271677 n 0000 | a title of address formerly used for a man of rank and authority -10601840 18 n 01 Siren 1 002 @ 09490352 n 0000 ~i 10272657 n 0000 | a sea nymph (part woman and part bird) supposed to lure sailors to destruction on the rocks where the nymphs lived; "Odysseus ordered his crew to plug their ears so they would not hear the Siren's fatal song" -10602119 18 n 01 sirrah 0 001 @ 09624168 n 0000 | formerly a contemptuous term of address to an inferior man or boy; often used in anger -10602258 18 n 01 sister 2 003 @ 10307234 n 0000 #m 08230477 n 0000 ~ 10602695 n 0000 | a female person who is a fellow member of a sorority or labor union or other group; "none of her sisters would betray her" -10602470 18 n 01 Sister 1 004 @ 10368009 n 0000 #m 08075647 n 0000 ;c 08083599 n 0000 + 08075647 n 0101 | (Roman Catholic Church) a title given to a nun (and used as a form of address); "the Sisters taught her to love God" -10602695 18 n 01 Beguine 0 003 @ 10602258 n 0000 #m 08075647 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a member of a lay sisterhood (one of several founded in the Netherlands in the 12th and 13th centuries); though not taking religious vows the sisters followed an austere life -10602985 18 n 02 sister 0 sis 0 007 @ 10084181 n 0000 + 00291665 a 0101 + 13814184 n 0101 ! 09876454 n 0101 ~ 09854218 n 0000 ~ 10267865 n 0000 ~ 10603242 n 0000 | a female person who has the same parents as another person; "my sister married a musician" -10603242 18 n 03 half_sister 0 half-sister 0 stepsister 0 001 @ 10602985 n 0000 | a sister who has only one parent in common with you -10603378 18 n 05 sissy 0 pantywaist 0 pansy 1 milksop 0 Milquetoast 0 001 @ 09614047 n 0000 | a timid man or boy considered childish or unassertive -10603528 18 n 04 waverer 0 vacillator 0 hesitator 0 hesitater 0 007 @ 09614047 n 0000 + 02641035 v 0401 + 02640440 v 0401 + 02640440 v 0301 + 02706046 v 0203 + 02740204 v 0102 + 02640440 v 0102 | one who hesitates (usually out of fear) -10603766 18 n 01 sister-in-law 0 001 @ 10207169 n 0000 | the sister of your spouse -10603851 18 n 01 sitar_player 0 002 @ 10340312 n 0000 ~i 11295464 n 0000 | a musician who plays the sitar -10603959 18 n 01 sitter 1 003 @ 00004475 n 0000 ;c 00015388 n 0000 ! 10648033 n 0101 | an organism (person or animal) that sits -10604089 18 n 02 sitting_duck 0 easy_mark 0 001 @ 10752480 n 0000 | a defenseless victim -10604180 18 n 01 six-footer 0 001 @ 00007846 n 0000 | a person who is at least six feet tall -10604275 18 n 01 sixth-former 0 002 @ 10665698 n 0000 ;r 08860123 n 0000 | a student in the sixth form -10604380 18 n 01 skateboarder 0 002 @ 10604491 n 0000 + 01937795 v 0101 | someone who skates on a skateboard -10604491 18 n 01 skater 0 005 @ 09820263 n 0000 + 01936753 v 0101 ~ 10196490 n 0000 ~ 10537107 n 0000 ~ 10604380 n 0000 | someone who skates -10604634 18 n 03 skeptic 0 sceptic 0 doubter 0 008 @ 09621545 n 0000 + 00687295 v 0301 + 00647247 a 0203 + 02463847 a 0204 + 00647247 a 0102 + 02463847 a 0103 ~ 10027953 n 0000 ~ 10419472 n 0000 | someone who habitually doubts accepted beliefs -10604880 18 n 01 sketcher 0 002 @ 10029068 n 0000 + 01697628 v 0101 | someone who draws sketches -10604979 18 n 01 skidder 0 002 @ 09632518 n 0000 + 01975121 v 0101 | a worker who uses a skid to move logs -10605088 18 n 03 skidder 1 slider 1 slipper 0 003 @ 00007846 n 0000 + 01870867 v 0101 ~ 10617665 n 0000 | a person who slips or slides because of loss of traction -10605253 18 n 01 skier 0 004 @ 09820263 n 0000 + 01938426 v 0101 ~ 10246317 n 0000 ~ 10605375 n 0000 | someone who skis -10605375 18 n 01 ski_jumper 0 002 @ 10605253 n 0000 @ 10226803 n 0000 | a skier who leaps through the air (especially on a ski jump) -10605510 18 n 01 skimmer 0 002 @ 10508862 n 0000 + 00627824 v 0101 | a rapid superficial reader -10605608 18 n 01 Skinnerian 0 002 @ 10099375 n 0000 + 03027538 a 0101 | a follower of the theories or methods of B. F. Skinner -10605737 18 n 01 skinny-dipper 0 003 @ 10683349 n 0000 + 00442654 n 0101 + 01962498 v 0101 | a naked swimmer -10605848 18 n 01 skirmisher 0 002 @ 09939313 n 0000 + 01123765 v 0101 | someone who skirmishes (e.g., as a member of a scouting party) -10605985 18 n 03 skilled_worker 0 trained_worker 0 skilled_workman 0 066 @ 09632518 n 0000 ~ 09801371 n 0000 ~ 09808949 n 0000 ~ 09826204 n 0000 ~ 09833536 n 0000 ~ 09835348 n 0000 ~ 09884133 n 0000 ~ 09889170 n 0000 ~ 09934921 n 0000 ~ 09963320 n 0000 ~ 09974648 n 0000 ~ 09977178 n 0000 ~ 09985279 n 0000 ~ 10003870 n 0000 ~ 10029269 n 0000 ~ 10040515 n 0000 ~ 10044879 n 0000 ~ 10049363 n 0000 ~ 10058155 n 0000 ~ 10064831 n 0000 ~ 10093658 n 0000 ~ 10107778 n 0000 ~ 10108606 n 0000 ~ 10115840 n 0000 ~ 10118587 n 0000 ~ 10129585 n 0000 ~ 10147488 n 0000 ~ 10160913 n 0000 ~ 10193026 n 0000 ~ 10203016 n 0000 ~ 10244226 n 0000 ~ 10268827 n 0000 ~ 10269078 n 0000 ~ 10308732 n 0000 ~ 10331841 n 0000 ~ 10335123 n 0000 ~ 10372373 n 0000 ~ 10374541 n 0000 ~ 10380000 n 0000 ~ 10393909 n 0000 ~ 10415439 n 0000 ~ 10426363 n 0000 ~ 10438042 n 0000 ~ 10438842 n 0000 ~ 10439203 n 0000 ~ 10462751 n 0000 ~ 10475297 n 0000 ~ 10481561 n 0000 ~ 10514784 n 0000 ~ 10514962 n 0000 ~ 10533541 n 0000 ~ 10540872 n 0000 ~ 10546633 n 0000 ~ 10582746 n 0000 ~ 10587089 n 0000 ~ 10607706 n 0000 ~ 10614629 n 0000 ~ 10614812 n 0000 ~ 10696251 n 0000 ~ 10733117 n 0000 ~ 10733487 n 0000 ~ 10733705 n 0000 ~ 10758949 n 0000 ~ 10761519 n 0000 ~ 10765189 n 0000 ~ 10783734 n 0000 | a worker who has acquired special skills -10607291 18 n 02 skin-diver 0 aquanaut 0 002 @ 10683126 n 0000 + 01963130 v 0101 | an underwater swimmer equipped with a face mask and foot fins and either a snorkel or an air cylinder -10607478 18 n 01 skinhead 0 002 @ 09879297 n 0000 #m 08371200 n 0000 | a young person who belongs to a British or American group that shave their heads and gather at rock concerts or engage in white supremacist demonstrations -10607706 18 n 01 skinner 3 002 @ 10605985 n 0000 + 01262936 v 0101 | a person who prepares or deals in animal skins -10607824 18 n 01 skipper 2 002 @ 10665698 n 0000 + 02613860 v 0102 | a student who fails to attend classes -10607933 18 n 02 skivvy 0 slavey 0 002 @ 10024119 n 0000 ;r 08860123 n 0000 | a female domestic servant who does all kinds of menial work -10608073 18 n 01 skycap 0 001 @ 10455447 n 0000 | a porter who helps passengers with their baggage at an airport -10608188 18 n 01 skydiver 0 003 @ 10397482 n 0000 + 01968045 v 0101 + 01968045 v 0102 | a person who jumps from a plane and performs various gymnastic maneuvers before pulling the parachute cord -10608385 18 n 02 slacker 0 shirker 0 007 @ 10197967 n 0000 ;c 08199025 n 0000 + 02463704 v 0202 + 02464342 v 0101 ~ 10136146 n 0000 ~ 10286539 n 0000 ~ 10564800 n 0000 | a person who shirks his work or duty (especially one who tries to evade military service in wartime) -10608658 18 n 01 slammer 0 002 @ 09930257 n 0000 + 01242832 v 0101 | a person who closes things violently; "she's a dramatic slammer of doors" -10608803 18 n 02 slapper 0 spanker 0 003 @ 10178216 n 0000 + 01420928 v 0201 + 01416871 v 0101 | a hitter who slaps (usually another person) with an open hand; "someone slapped me on the back and I turned to see who the slapper was"; "my father was the designated spanker in our family" -10609092 18 n 01 slasher 0 002 @ 09821253 n 0000 + 01322675 v 0101 | someone who slashes another person -10609198 18 n 04 slattern 0 slut 1 slovenly_woman 0 trollop 1 002 @ 10612210 n 0000 + 02424716 a 0103 | a dirty untidy woman -10609325 18 n 01 slave 0 009 @ 00007846 n 0000 ~ 09864891 n 0000 ~ 09865068 n 0000 ~ 09865398 n 0000 ~ 09976551 n 0000 ~ 10118113 n 0000 ~i 11288930 n 0000 ~i 11353195 n 0000 ~i 11364570 n 0000 | a person who is owned by someone -10609556 18 n 03 slave 1 striver 0 hard_worker 0 002 @ 09632518 n 0000 + 02421199 v 0101 | someone who works as hard as a slave -10609686 18 n 01 slave 2 001 @ 00007846 n 0000 | someone entirely dominated by some influence or person; "a slave to fashion"; "a slave to cocaine"; "his mother was his abject slave" -10609871 18 n 01 slave_driver 0 001 @ 10692269 n 0000 | a supervisor of slaves at work -10609960 18 n 02 slave_driver 1 Simon_Legree 1 001 @ 10054657 n 0000 | a cruel employer who demands excessive work from the employees -10610096 18 n 03 slaveholder 0 slave_owner 0 slaver 1 001 @ 10180178 n 0000 | someone who holds slaves -10610201 18 n 03 slaver 0 slave_dealer 0 slave_trader 0 002 @ 10752719 n 0000 ~ 10779504 n 0000 | a person engaged in slave trade -10610333 18 n 01 sledder 0 004 @ 09820263 n 0000 + 01939174 v 0101 ~ 10275940 n 0000 ~ 10714195 n 0000 | someone who rides a sled -10610465 18 n 02 sleeper 0 slumberer 0 009 @ 10524973 n 0000 + 00014742 v 0203 + 00014742 v 0101 ~ 10032987 n 0000 ~ 10532393 n 0000 ~ 10611267 n 0000 ~ 10611361 n 0000 ~ 10617397 n 0000 ~ 10623949 n 0000 | a rester who is sleeping -10610699 18 n 01 sleeper 1 001 @ 09762821 n 0000 | an unexpected achiever of success; "the winner was a true sleeper--no one expected him to get it" -10610850 18 n 01 sleeper 2 005 @ 10641755 n 0000 @ 10544748 n 0000 @ 10702781 n 0000 #m 08244532 n 0000 ;c 00759694 n 0000 | a spy or saboteur or terrorist planted in an enemy country who lives there as a law-abiding citizen until activated by a prearranged signal -10611117 18 n 01 Sleeping_Beauty 0 001 @i 10474064 n 0000 | fairy story: princess under an evil spell who could be awakened only by a prince's kiss -10611267 18 n 01 sleeping_beauty 1 001 @ 10610465 n 0000 | a person who is sleeping soundly -10611361 18 n 03 sleepwalker 0 somnambulist 0 noctambulist 0 004 @ 10610465 n 0000 + 00285141 n 0304 + 00285141 n 0202 + 01916960 v 0101 | someone who walks about in their sleep -10611541 18 n 01 sleepyhead 0 001 @ 00007846 n 0000 | a sleepy person -10611613 18 n 02 sleuth 0 sleuthhound 0 002 @ 10009484 n 0000 + 00785690 v 0104 | a detective who follows a trail -10611729 18 n 01 slicer 0 002 @ 10136959 n 0000 + 01408958 v 0101 | a golfer whose shots typically curve right (for right-handed golfers) -10611869 18 n 01 slicker 1 002 @ 10625285 n 0000 ~ 09924313 n 0000 | a person with good manners and stylish clothing -10611988 18 n 01 slinger 0 002 @ 10709529 n 0000 + 01514348 v 0101 | a person who uses a sling to throw something -10612104 18 n 01 slip 0 001 @ 10804406 n 0000 | a young and slender person; "he's a mere slip of a lad" -10612210 18 n 04 slob 0 sloven 0 pig 2 slovenly_person 0 004 @ 10761693 n 0000 + 02425749 a 0203 ~ 10267166 n 0000 ~ 10609198 n 0000 | a coarse obnoxious person -10612373 18 n 01 sloganeer 0 003 @ 10482921 n 0000 + 07152259 n 0102 + 01698152 v 0101 | someone who coins and uses slogans to promote a cause -10612518 18 n 02 slopseller 0 slop-seller 0 002 @ 10720453 n 0000 ;r 08860123 n 0000 | a dealer in cheap ready-made clothing -10612645 18 n 01 slouch 0 001 @ 10202363 n 0000 | an incompetent person; usually used in negative constructions; "he's no slouch when it comes to baseball" -10612803 18 n 01 sloucher 0 002 @ 00007846 n 0000 + 01989720 v 0102 | a person who slouches; someone with a drooping carriage -10612931 18 n 02 sluggard 0 slug 0 003 @ 10197967 n 0000 + 02417504 v 0203 + 02417504 v 0103 | an idle slothful person -10613052 18 n 01 small_businessman 0 002 @ 09882007 n 0000 ~ 09951717 n 0000 | a businessman who runs a business employing less than 100 people -10613198 18 n 02 small-for-gestational-age_infant 0 SGA_infant 0 001 @ 10353016 n 0000 | an infant whose size and weight are considerably less than the average for babies of the same age -10613387 18 n 01 smallholder 0 002 @ 10078806 n 0000 ;r 08860123 n 0000 | a person owning or renting a smallholding -10613505 18 n 01 small_person 0 009 @ 00007846 n 0000 ~ 10040344 n 0000 ~ 10262880 n 0000 ~ 10291580 n 0000 ~ 10496489 n 0000 ~ 10496626 n 0000 ~ 10543544 n 0000 ~ 10715136 n 0000 ~ 10784436 n 0000 | a person of below average size -10613738 18 n 01 small_farmer 0 002 @ 10078806 n 0000 ~ 09979985 n 0000 | a farmer on a small farm -10613839 18 n 01 smarta 0 001 @ 09872557 n 0000 | one of a group of brahmans who uphold nonsectarian orthodoxy according to the Vedanta school of Hinduism -10613996 18 n 0b smasher 0 stunner 0 knockout 0 beauty 0 ravisher 1 sweetheart 1 peach 0 lulu 0 looker 0 mantrap 0 dish 0 003 @ 10787470 n 0000 + 00218673 a 0b01 + 02115430 v 0201 | a very attractive or seductive looking woman -10614225 18 n 01 smasher 1 004 @ 00007846 n 0000 + 01566705 v 0103 + 01401772 v 0101 + 00335923 v 0101 | a person who smashes something -10614363 18 n 01 smiler 0 005 @ 00007846 n 0000 + 01067512 v 0101 + 00028565 v 0101 ~ 10599215 n 0000 ~ 10614507 n 0000 | a person who smiles -10614507 18 n 01 smirker 0 002 @ 10614363 n 0000 + 00029336 v 0101 | a smiler whose smile is offensively self-satisfied -10614629 18 n 02 smith 0 metalworker 0 003 @ 10605985 n 0000 ~ 09859152 n 0000 ~ 10105260 n 0000 | someone who works metal (especially by hammering it when it is hot and malleable) -10614812 18 n 01 smith 1 005 @ 10605985 n 0000 ~ 09810633 n 0000 ~ 10152528 n 0000 ~ 10269199 n 0000 ~ 10712374 n 0000 | someone who works at something specified -10614976 18 n 02 smoker 0 tobacco_user 0 007 @ 09612848 n 0000 + 01198101 v 0101 ! 10362319 n 0101 ~ 09905697 n 0000 ~ 09923101 n 0000 ~ 09923186 n 0000 ~ 10435169 n 0000 | a person who smokes tobacco -10615179 18 n 04 smoothie 0 smoothy 0 sweet_talker 0 charmer 1 002 @ 10195593 n 0000 + 01806505 v 0409 | someone with an assured and ingratiating manner -10615334 18 n 05 smuggler 0 runner 1 contrabandist 0 moon_curser 0 moon-curser 0 006 @ 09977660 n 0000 + 03096273 n 0301 + 02345856 v 0101 ~ 09973903 n 0000 ~ 10152440 n 0000 ~ 10542499 n 0000 | someone who imports or exports without paying duties -10615584 18 n 01 snake_charmer 0 001 @ 10415638 n 0000 | a performer who uses movements and music to control snakes -10615702 18 n 02 snake 0 snake_in_the_grass 0 001 @ 09831962 n 0000 | a deceitful or treacherous person -10615808 18 n 01 snarer 0 002 @ 10193026 n 0000 + 01480770 v 0103 | someone who sets snares for birds or small animals -10615929 18 n 01 snatcher 1 002 @ 10707804 n 0000 + 01439745 v 0101 | a thief who grabs and runs; "a purse snatcher" -10616048 18 n 01 sneak 2 003 @ 09631463 n 0000 + 02088974 a 0102 + 02319346 a 0101 | a person who is regarded as underhanded and furtive and contemptible -10616204 18 n 03 sneak_thief 0 pilferer 0 snitcher 1 004 @ 10707804 n 0000 + 02322230 v 0302 + 02276866 v 0201 ~ 10775245 n 0000 | a thief who steals without using violence -10616379 18 n 02 sneerer 0 scorner 0 005 @ 09631463 n 0000 + 01774799 v 0203 + 00796976 v 0204 + 00032778 v 0101 + 00032539 v 0101 | a person who expresses contempt by remarks or facial expression -10616578 18 n 01 sneezer 0 002 @ 00007846 n 0000 + 00004819 v 0101 | a person who sneezes -10616670 18 n 01 sniffer 0 003 @ 00007846 n 0000 + 02125032 v 0101 + 00007549 v 0101 | a person who sniffs -10616779 18 n 02 sniffler 0 sniveler 1 001 @ 00007846 n 0000 | a person who breathes audibly through a congested nose -10616899 18 n 01 sniper 0 002 @ 10294953 n 0000 + 01135501 v 0102 | a marksman who shoots at people from a concealed place -10617024 18 n 04 snob 0 prig 0 snot 0 snoot 0 004 @ 09631463 n 0000 + 01890382 a 0403 + 01890382 a 0305 + 01858740 a 0105 | a person regarded as arrogant and annoying -10617193 18 n 02 snoop 0 snooper 0 005 @ 10642151 n 0000 + 00785690 v 0203 + 00665156 a 0104 + 00785690 v 0103 ~ 10042690 n 0000 | a spy who makes uninvited inquiries into the private affairs of others -10617397 18 n 01 snorer 0 002 @ 10610465 n 0000 + 00017031 v 0101 | someone who snores while sleeping -10617501 18 n 01 snorter 0 003 @ 09631463 n 0000 + 01045073 v 0101 + 00006523 v 0101 | someone who expresses contempt or indignation by uttering a snorting sound -10617665 18 n 01 snowboarder 0 002 @ 10605088 n 0000 + 02104860 v 0101 | someone who slides down snow-covered slopes while standing on a snowboard -10617814 18 n 02 snuffer 0 snuff_user 0 001 @ 09612848 n 0000 | a person who uses snuff -10617904 18 n 01 snuffer 1 002 @ 00007846 n 0000 + 00478217 v 0101 | a person who snuffs out candles -10618007 18 n 01 snuffler 0 002 @ 00007846 n 0000 + 00101779 v 0101 | a person who breathes noisily (as through a nose blocked by mucus) -10618146 18 n 01 sobersides 0 001 @ 09605289 n 0000 | a serious and sedate individual -10618234 18 n 01 sob_sister 0 001 @ 10224578 n 0000 | a journalist who specializes in sentimental stories -10618342 18 n 01 soccer_player 0 003 @ 09820263 n 0000 @ 10439851 n 0000 ~ 10134001 n 0000 | an athlete who plays soccer -10618465 18 n 02 social_anthropologist 0 cultural_anthropologist 0 004 @ 09796323 n 0000 + 06147522 n 0202 + 06147522 n 0101 ~ 10532751 n 0000 | an anthropologist who studies such cultural phenomena as kinship systems -10618685 18 n 02 social_climber 0 climber 1 003 @ 10740868 n 0000 + 00249017 v 0201 ~ 10265281 n 0000 | someone seeking social prominence by obsequious behavior -10618848 18 n 01 socialist 0 014 @ 10450303 n 0000 + 00298041 a 0102 + 08366202 n 0101 + 06220616 n 0101 ~ 09945319 n 0000 ~ 10075416 n 0000 ~ 10211830 n 0000 ~ 10309147 n 0000 ~ 10619176 n 0000 ~i 10886929 n 0000 ~i 10959223 n 0000 ~i 11036911 n 0000 ~i 11247155 n 0000 ~i 11339361 n 0000 | a political advocate of socialism -10619176 18 n 03 collectivist 0 leftist 0 left-winger 0 007 @ 10618848 n 0000 + 06218459 n 0201 + 00298507 a 0101 + 08368308 n 0102 + 06214580 n 0101 + 08416328 n 0102 ~ 10434321 n 0000 | a person who belongs to the political left -10619409 18 n 01 socialite 0 001 @ 10200781 n 0000 | a socially prominent person -10619492 18 n 02 socializer 0 socialiser 0 003 @ 00007846 n 0000 + 02388950 v 0202 + 02388950 v 0101 | a person who takes part in social activities -10619642 18 n 01 social_scientist 0 007 @ 10560637 n 0000 + 06143154 n 0101 ~ 09796323 n 0000 ~ 10043643 n 0000 ~ 10414239 n 0000 ~ 10450161 n 0000 ~ 10620758 n 0000 | someone expert in the study of human society and its personal relationships -10619888 18 n 01 social_secretary 0 001 @ 10569744 n 0000 | a personal secretary who handles your social correspondence and appointments -10620027 18 n 03 social_worker 0 caseworker 0 welfare_worker 0 002 @ 10491136 n 0000 ~ 09785236 n 0000 | someone employed to provide social services (especially to the disadvantaged) -10620212 18 n 01 Socinian 0 001 @ 10016103 n 0000 | an adherent of the teachings of Socinus; a Christian who rejects the divinity of Christ and the Trinity and original sin; influenced the development of Unitarian theology -10620437 18 n 01 sociobiologist 0 002 @ 09855630 n 0000 + 06082972 n 0101 | a biologist who studies the biological determinants of social behavior -10620586 18 n 01 sociolinguist 0 002 @ 10264437 n 0000 + 06181123 n 0101 | a linguist who studies the social and cultural factors that influence linguistic communication -10620758 18 n 01 sociologist 0 014 @ 10619642 n 0000 + 06151693 n 0101 ~ 10002257 n 0000 ~ 10487592 n 0000 ~i 10946134 n 0000 ~i 10976256 n 0000 ~i 11176669 n 0000 ~i 11222457 n 0000 ~i 11224309 n 0000 ~i 11262340 n 0000 ~i 11310321 n 0000 ~i 11325419 n 0000 ~i 11377851 n 0000 ~i 11378662 n 0000 | a social scientist who studies the institutions and development of human society -10621140 18 n 01 sod 1 002 @ 10153414 n 0000 ;r 08860123 n 0000 | an informal British term for a youth or man; "the poor sod couldn't even buy a drink" -10621294 18 n 02 soda_jerk 1 soda_jerker 0 001 @ 09969718 n 0000 | someone who works at a soda fountain -10621400 18 n 01 sodalist 0 003 @ 10307234 n 0000 #m 08075388 n 0000 + 08075388 n 0103 | a member of a sodality -10621514 18 n 04 sodomite 0 sodomist 0 sod 0 bugger 0 003 @ 10419047 n 0000 + 02568392 v 0403 + 00849294 n 0201 | someone who engages in anal copulation (especially a male who engages in anal copulation with another male) -10621738 18 n 02 softy 0 softie 0 001 @ 10771636 n 0000 | a person who is weak and excessively sentimental -10621847 18 n 01 sojourner 0 002 @ 10523519 n 0000 + 02709422 v 0101 | a temporary resident -10621941 18 n 01 solderer 0 002 @ 09632518 n 0000 + 01595260 v 0101 | a worker who joins or mends with solder -10622053 18 n 01 soldier 0 055 @ 10058777 n 0000 + 01518694 a 0101 + 05640184 n 0102 + 01097031 v 0101 ~ 09724365 n 0000 ~ 09797873 n 0000 ~ 09891300 n 0000 ~ 09902353 n 0000 ~ 09902611 n 0000 ~ 09938272 n 0000 ~ 09953775 n 0000 ~ 10029985 n 0000 ~ 10095061 n 0000 ~ 10136146 n 0000 ~ 10146416 n 0000 ~ 10150415 n 0000 ~ 10174845 n 0000 ~ 10204921 n 0000 ~ 10219380 n 0000 ~ 10220228 n 0000 ~ 10253703 n 0000 ~ 10291469 n 0000 ~ 10294318 n 0000 ~ 10317717 n 0000 ~ 10381981 n 0000 ~ 10399019 n 0000 ~ 10410246 n 0000 ~ 10435855 n 0000 ~ 10447828 n 0000 ~ 10448065 n 0000 ~ 10506762 n 0000 ~ 10517743 n 0000 ~ 10523341 n 0000 ~ 10530571 n 0000 ~ 10574154 n 0000 ~ 10690648 n 0000 ~ 10702307 n 0000 ~ 10739391 n 0000 ~ 10761962 n 0000 ~i 10814776 n 0000 ~i 10838802 n 0000 ~i 10857849 n 0000 ~i 10919598 n 0000 ~i 11049608 n 0000 ~i 11109728 n 0000 ~i 11114056 n 0000 ~i 11120834 n 0000 ~i 11123762 n 0000 ~i 11184273 n 0000 ~i 11190592 n 0000 ~i 11229499 n 0000 ~i 11230021 n 0000 ~i 11306619 n 0000 ~i 11330346 n 0000 ~ 11357660 n 0000 | an enlisted man or woman who serves in an army; "the soldiers stood at attention" -10623175 18 n 01 solicitor 0 004 @ 10249950 n 0000 ;c 08441203 n 0000 + 00604321 n 0101 ~ 10249191 n 0000 | a British lawyer who gives legal advice and prepares legal documents -10623354 18 n 02 solicitor 1 canvasser 2 004 @ 10420031 n 0000 + 02458747 v 0202 + 00782057 v 0101 ~ 10116478 n 0000 | a petitioner who solicits contributions or trade or votes -10623533 18 n 01 solicitor_general 0 001 @ 10249459 n 0000 | a law officer appointed to assist an attorney general -10623650 18 n 01 soloist 0 005 @ 10340312 n 0000 + 07040939 n 0101 + 01257418 n 0101 + 01715040 v 0101 ~ 10511649 n 0000 | a musician who performs a solo -10623806 18 n 03 sommelier 0 wine_waiter 0 wine_steward 0 001 @ 10763383 n 0000 | a waiter who manages wine service in a hotel or restaurant -10623949 18 n 01 somniloquist 0 003 @ 10610465 n 0000 + 00285387 n 0103 + 00285387 n 0102 | someone who talks while asleep -10624074 18 n 02 son 0 boy 3 006 @ 10285938 n 0000 ! 09992837 n 0202 ! 09992837 n 0101 ~ 10227490 n 0000 ~ 10333439 n 0000 ~i 10961087 n 0000 | a male human offspring; "their son became a famous judge"; "his boy is taller than he is" -10624310 18 n 01 songster 0 004 @ 10599806 n 0000 + 07048000 n 0101 + 00546389 n 0101 ~ 10624437 n 0000 | a person who sings -10624437 18 n 01 songstress 0 001 @ 10624310 n 0000 | a woman songster (especially of popular songs) -10624540 18 n 03 songwriter 0 songster 1 ballad_maker 0 014 @ 09947232 n 0000 + 07048000 n 0201 ~i 10847454 n 0000 ~i 10882846 n 0000 ~i 10904463 n 0000 ~i 10938640 n 0000 ~i 10947108 n 0000 ~i 10975796 n 0000 ~i 11020721 n 0000 ~i 11056654 n 0000 ~i 11126783 n 0000 ~i 11167952 n 0000 ~i 11301279 n 0000 ~i 11390364 n 0000 | a composer of words or music for popular songs -10624915 18 n 01 son-in-law 0 001 @ 10207169 n 0000 | the husband of your daughter -10625000 18 n 01 sonneteer 0 002 @ 10444194 n 0000 + 06381372 n 0101 | a poet who writes sonnets -10625099 18 n 01 Sophist 1 002 @ 10423589 n 0000 + 02999616 a 0101 | any of a group of Greek philosophers and teachers in the 5th century BC who speculated on a wide range of subjects -10625285 18 n 02 sophisticate 0 man_of_the_world 0 004 @ 09605289 n 0000 + 02388764 v 0101 ~ 09967406 n 0000 ~ 10611869 n 0000 | a worldly-wise person -10625438 18 n 02 sophomore 0 soph 0 002 @ 10274815 n 0000 + 01015599 a 0101 | a second-year undergraduate -10625546 18 n 01 soprano 0 014 @ 10599806 n 0000 ~ 09938080 n 0000 ~ 10313441 n 0000 ~i 10967152 n 0000 ~i 11132768 n 0000 ~i 11207768 n 0000 ~i 11209428 n 0000 ~i 11242469 n 0000 ~i 11246408 n 0000 ~i 11300326 n 0000 ~i 11325867 n 0000 ~i 11334317 n 0000 ~i 11334773 n 0000 ~i 11348047 n 0000 | a female singer -10625860 18 n 06 sorcerer 0 magician 0 wizard 0 necromancer 0 thaumaturge 0 thaumaturgist 0 011 @ 10370381 n 0000 + 05978812 n 0404 + 01576071 a 0306 + 01576071 a 0307 + 05967977 n 0201 ~ 10055085 n 0000 ~ 10072054 n 0000 ~ 10281546 n 0000 ~ 10626540 n 0000 ~ 10784544 n 0000 ~i 10878672 n 0000 | one who practices magic or sorcery -10626194 18 n 02 shaman 0 priest-doctor 0 003 @ 10471250 n 0000 + 02568884 v 0101 ~ 10626439 n 0000 | in societies practicing shamanism: one acting as a medium between the visible and spirit worlds; practices sorcery for healing or divination -10626439 18 n 01 medicine_man 0 002 @ 10626194 n 0000 ~ 10505347 n 0000 | a Native American shaman -10626540 18 n 01 sorceress 0 002 @ 10625860 n 0000 ~ 09493983 n 0000 | a woman sorcerer -10626630 18 n 01 sorehead 0 001 @ 10284965 n 0000 | someone who is peevish or disgruntled -10626722 18 n 01 sort 0 001 @ 00007846 n 0000 | a person of a particular character or nature; "what sort of person is he?"; "he's a good sort" -10626867 18 n 01 sorter 0 002 @ 09928451 n 0000 + 00654625 v 0103 | a clerk who sorts things (as letters at the post office) -10626994 18 n 01 soubrette 0 001 @ 10129825 n 0000 | a pert or flirtatious young girl -10627082 18 n 02 soul 0 psyche 0 003 @ 10636598 n 0000 + 01780740 a 0202 ~ 09545976 n 0000 | the immaterial part of a person; the actuating cause of an individual life -10627252 18 n 01 soul_mate 0 001 @ 09622302 n 0000 | someone for whom you have a deep affinity -10627349 18 n 01 sounding_board 0 001 @ 00007846 n 0000 | a person whose reactions to something serve as an indication of its acceptability; "I would use newspapermen as a sounding board for such policies" -10627557 18 n 01 soundman 0 001 @ 10696251 n 0000 | a technician in charge of amplifying sound or producing sound effects (as for a TV or radio broadcast) -10627714 18 n 01 sourdough 0 003 @ 10583387 n 0000 @ 10485298 n 0000 ;r 08682819 n 0000 | a settler or prospector (especially in western United States or northwest Canada and Alaska) -10627899 18 n 04 sourpuss 0 picklepuss 0 gloomy_Gus 0 pouter 0 004 @ 09631129 n 0000 ;u 07075172 n 0000 + 02719016 v 0402 + 00034758 v 0401 | someone with a habitually sullen or gloomy expression -10628097 18 n 01 Southern_Baptist 0 002 @ 09838701 n 0000 #m 08089955 n 0000 | a member of the Southern Baptist Convention -10628222 18 n 01 Southerner 0 004 @ 09738708 n 0000 #m 09050730 n 0000 ~ 09953615 n 0000 ~ 10138472 n 0000 | an American who lives in the South -10628368 18 n 05 Rebel 2 Reb 0 Johnny_Reb 0 Johnny 0 greyback 0 002 @ 09953775 n 0000 ;u 07075172 n 0000 | `Johnny' was applied as a nickname for Confederate soldiers by the Federal soldiers in the American Civil War; `greyback' derived from their grey Confederate uniforms -10628644 18 n 03 sovereign 0 crowned_head 0 monarch 0 014 @ 10541229 n 0000 @ 10164747 n 0000 + 00718339 a 0301 + 01591895 a 0301 + 00718339 a 0303 + 00718339 a 0302 + 01591895 a 0302 ~ 09892156 n 0000 ~ 09896520 n 0000 ~ 09987239 n 0000 ~ 10053004 n 0000 ~ 10231515 n 0000 ~ 10310404 n 0000 ~ 10585496 n 0000 | a nation's ruler or head of state usually by hereditary right -10629020 18 n 01 sower 0 004 @ 10078806 n 0000 + 01501347 v 0102 + 01500873 v 0101 + 00969370 v 0101 | someone who sows -10629142 18 n 01 space_cadet 0 002 @ 10599354 n 0000 ;c 03808564 n 0000 | someone who seems unable to respond appropriately to reality (as if under the influence of some narcotic drug) -10629329 18 n 01 spacewalker 0 001 @ 09818022 n 0000 | an astronaut who is active outside a spacecraft in outer space -10629449 18 n 01 space_writer 0 001 @ 10794014 n 0000 | a writer paid by the area of the copy -10629545 18 n 01 spammer 0 001 @ 10578762 n 0000 | someone who sends unwanted email (often in bulk) -10629647 18 n 03 Spanish_American 1 Hispanic_American 0 Hispanic 0 003 @ 09738708 n 0000 + 03072158 a 0301 ~ 09978697 n 0000 | an American whose first language is Spanish -10629820 18 n 01 sparer 0 002 @ 09608709 n 0000 + 02464583 v 0101 | someone who refrains from injuring or destroying -10629939 18 n 02 sparring_partner 0 sparring_mate 0 001 @ 09870208 n 0000 | a boxer who spars with another boxer who is training for an important fight -10630093 18 n 01 spastic 0 001 @ 10398033 n 0000 | a person suffering from spastic paralysis -10630188 18 n 05 speaker 0 talker 0 utterer 0 verbalizer 0 verbaliser 0 037 @ 09811712 n 0000 + 00941990 v 0405 + 00941990 v 0303 + 00830761 v 0202 + 00963570 v 0202 + 00941990 v 0201 + 00941990 v 0102 ~ 09784564 n 0000 ~ 09888017 n 0000 ~ 09911570 n 0000 ~ 09961999 n 0000 ~ 10012244 n 0000 ~ 10032884 n 0000 ~ 10034785 n 0000 ~ 10048001 n 0000 ~ 10149128 n 0000 ~ 10207831 n 0000 ~ 10252547 n 0000 ~ 10265801 n 0000 ~ 10309347 n 0000 ~ 10334335 n 0000 ~ 10342543 n 0000 ~ 10345804 n 0000 ~ 10380672 n 0000 ~ 10463943 n 0000 ~ 10507070 n 0000 ~ 10511771 n 0000 ~ 10631131 n 0000 ~ 10646780 n 0000 ~ 10654211 n 0000 ~ 10690095 n 0000 ~ 10747672 n 0000 ~ 10758589 n 0000 ~ 10758847 n 0000 ~ 10763245 n 0000 ~ 10777299 n 0000 ~ 10786033 n 0000 | someone who expresses in language; someone who talks (especially someone who delivers a public speech or someone especially garrulous); "the speaker at commencement"; "an utterer of useful maxims" -10631131 18 n 01 native_speaker 0 001 @ 10630188 n 0000 | a speaker of a particular language who has spoken that language since earliest childhood; "native speakers of French" -10631309 18 n 01 Speaker 1 002 @ 10469346 n 0000 + 00604424 n 0101 | the presiding officer of a deliberative assembly; "the leader of the majority party is the Speaker of the House of Representatives" -10631512 18 n 01 spearhead 0 002 @ 09623038 n 0000 + 02440608 v 0101 | someone who leads or initiates an activity (attack or campaign etc.) -10631654 18 n 01 speechwriter 0 001 @ 10794014 n 0000 | a writer who composes speeches for others to deliver -10631765 18 n 01 special_agent 0 002 @ 09777353 n 0000 ! 10738968 n 0102 | someone whose authority is limited to the special undertaking they have been instructed to perform -10631941 18 n 03 specialist 0 specializer 0 specialiser 0 028 @ 09617867 n 0000 + 02446164 v 0302 + 02446164 v 0201 + 02278195 a 0101 + 02799988 a 0101 + 05705184 n 0101 + 00583461 n 0105 + 02446164 v 0101 + 02446164 v 0102 ! 10520286 n 0102 ~ 09616573 n 0000 ~ 09821086 n 0000 ~ 09891730 n 0000 ~ 09978442 n 0000 ~ 09981740 n 0000 ~ 10012484 n 0000 ~ 10045454 n 0000 ~ 10090864 n 0000 ~ 10128254 n 0000 ~ 10144055 n 0000 ~ 10144188 n 0000 ~ 10210648 n 0000 ~ 10263146 n 0000 ~ 10312287 n 0000 ~ 10380305 n 0000 ~ 10383689 n 0000 ~ 10704516 n 0000 ~ 10727818 n 0000 | an expert who is devoted to one occupation or branch of learning -10632576 18 n 02 specialist 1 medical_specialist 0 035 @ 10020890 n 0000 + 02278195 a 0101 + 02799988 a 0101 + 05705184 n 0101 + 00583461 n 0105 + 02446164 v 0101 + 02446164 v 0102 ~ 09793495 n 0000 ~ 09828760 n 0000 ~ 09894445 n 0000 ~ 09919297 n 0000 ~ 10006177 n 0000 ~ 10011074 n 0000 ~ 10014771 n 0000 ~ 10041195 n 0000 ~ 10051761 n 0000 ~ 10056914 n 0000 ~ 10059323 n 0000 ~ 10128381 n 0000 ~ 10154013 n 0000 ~ 10170681 n 0000 ~ 10194969 n 0000 ~ 10212231 n 0000 ~ 10354265 n 0000 ~ 10369699 n 0000 ~ 10377633 n 0000 ~ 10379073 n 0000 ~ 10385159 n 0000 ~ 10385354 n 0000 ~ 10478827 n 0000 ~ 10488016 n 0000 ~ 10503965 n 0000 ~ 10504206 n 0000 ~ 10528023 n 0000 ~ 10741493 n 0000 | practices one branch of medicine -10633298 18 n 01 specifier 0 002 @ 09621545 n 0000 + 00715541 v 0106 | someone who draws up specifications giving details (as for obtaining a patent) -10633450 18 n 05 spectator 0 witness 1 viewer 1 watcher 2 looker 1 020 @ 09626589 n 0000 + 02130524 v 0501 + 02128653 v 0401 + 02150510 v 0401 + 02150948 v 0302 + 02128873 v 0201 + 02151700 v 0101 ~ 09877587 n 0000 ~ 09885334 n 0000 ~ 09913329 n 0000 ~ 10075299 n 0000 ~ 10122531 n 0000 ~ 10336411 n 0000 ~ 10374282 n 0000 ~ 10378026 n 0000 ~ 10440717 n 0000 ~ 10541106 n 0000 ~ 10642151 n 0000 ~ 10648909 n 0000 ~ 10761326 n 0000 | a close observer; someone who looks at something (such as an exhibition of some kind); "the spectators applauded the performance"; "television viewers"; "sky watchers discovered a new star" -10634075 18 n 02 speculator 0 plunger 0 007 @ 09606009 n 0000 @ 10118844 n 0000 + 02272090 v 0101 ~ 10167838 n 0000 ~ 10378952 n 0000 ~ 10554846 n 0000 ~ 10747965 n 0000 | someone who risks losses for the possibility of considerable gains -10634316 18 n 01 speculator 1 003 @ 10708454 n 0000 + 00927049 v 0101 + 00633443 v 0101 | someone who makes conjectures without knowing the facts -10634464 18 n 01 speech_therapist 0 002 @ 10707233 n 0000 + 00707213 n 0101 | a therapist who treats speech defects and disorders -10634596 18 n 02 speeder 0 speed_demon 0 002 @ 10034906 n 0000 + 02055975 v 0101 | a driver who exceeds the safe speed limit -10634723 18 n 01 speed_freak 0 001 @ 09768830 n 0000 | addict who habitually uses stimulant drugs (especially amphetamines) -10634849 18 n 02 speedskater 0 speed_skater 0 001 @ 10196490 n 0000 | an ice-skater who races competitively; usually around an oval course -10634990 18 n 01 spellbinder 0 004 @ 10380672 n 0000 + 01821132 v 0104 + 00777522 v 0106 + 00020926 v 0102 | an orator who can hold his listeners spellbound -10635149 18 n 03 speller 0 good_speller 0 poor_speller 0 002 @ 10801291 n 0000 + 00937879 v 0101 | someone who spells words -10635275 18 n 03 spender 1 disburser 0 expender 0 004 @ 09984659 n 0000 + 02267060 v 0302 + 02301502 v 0201 + 02267060 v 0101 | someone who spends money to purchase goods or services -10635460 18 n 04 spendthrift 0 spend-all 0 spender 2 scattergood 0 003 @ 10479561 n 0000 + 02267529 v 0301 ~ 10635625 n 0000 | someone who spends money prodigally -10635625 18 n 02 big_spender 0 high_roller 1 001 @ 10635460 n 0000 | one who spends lavishly and ostentatiously on entertainment; "the last of the big spenders" -10635788 18 n 01 sphinx 2 001 @ 00007846 n 0000 | an inscrutable person who keeps his thoughts and intentions secret -10635907 18 n 02 spindlelegs 0 spindleshanks 0 001 @ 10708797 n 0000 | a thin person with long thin legs -10636014 18 n 02 spin_doctor 0 spinmeister 0 001 @ 10490965 n 0000 | a public relations person who tries to forestall negative publicity by publicizing a favorable interpretation of the words or actions of a company or political party or famous person; "his title is Director of Communications but he is just a spin doctor" -10636340 18 n 03 spinner 0 spinster 1 thread_maker 0 002 @ 10284064 n 0000 + 01518772 v 0101 | someone who spins (who twists fibers into threads) -10636488 18 n 02 spinster 0 old_maid 0 002 @ 10739512 n 0000 + 13967827 n 0101 | an elderly unmarried woman -10636598 18 n 01 spirit 1 003 @ 10757918 n 0000 + 01229631 v 0101 ~ 10627082 n 0000 | the vital principle or animating force within living things -10636746 18 n 01 spitfire 0 001 @ 10052843 n 0000 | a highly emotional and quick-tempered person (especially a girl or woman) -10636874 18 n 02 spitter 0 expectorator 0 003 @ 00007846 n 0000 + 00006238 v 0201 + 00101956 v 0101 | a person who spits (ejects saliva or phlegm from the mouth) -10637038 18 n 01 spiv 0 002 @ 10197967 n 0000 ;r 08860123 n 0000 | a person without employment who makes money by various dubious schemes; goes about smartly dressed and having a good time -10637229 18 n 01 splicer 0 002 @ 09632518 n 0000 + 01559868 v 0101 | a worker who splices ropes together by interweaving strands -10637360 18 n 01 splicer 1 002 @ 10790192 n 0000 + 01560184 v 0101 | a woodworker who joins pieces of wood with a splice -10637483 18 n 01 split_end 0 002 @ 10056398 n 0000 ;c 00468480 n 0000 | (football) an offensive end who lines up at a distance from the other linemen -10637635 18 n 02 splitter 0 divider 1 003 @ 10693824 n 0000 + 02467662 v 0201 ! 10276477 n 0101 | a taxonomist who classifies organisms into many groups on the basis of relatively minor characteristics -10637839 18 n 01 splitter 1 002 @ 09632518 n 0000 + 01556572 v 0102 | a worker who splits fish and removes the backbone -10637961 18 n 01 spoiler 1 001 @ 09889691 n 0000 | a candidate with no chance of winning but who may draw enough votes to prevent one of the leading candidates from winning -10638136 18 n 04 spoilsport 0 killjoy 0 wet_blanket 0 party_pooper 0 003 @ 09631129 n 0000 ;u 07075172 n 0000 ~ 10792178 n 0000 | someone who spoils the pleasure of others -10638310 18 n 01 spokesman 0 001 @ 10638385 n 0000 | a male spokesperson -10638385 18 n 04 spokesperson 0 interpreter 0 representative 2 voice 0 007 @ 09774783 n 0000 ~ 09787765 n 0000 ~ 10094782 n 0000 ~ 10335801 n 0000 ~ 10638310 n 0000 ~ 10638734 n 0000 ~ 10726786 n 0000 | an advocate who represents someone else's policy or purpose; "the meeting was attended by spokespersons for all the major organs of government" -10638734 18 n 01 spokeswoman 0 001 @ 10638385 n 0000 | a female spokesperson -10638813 18 n 01 sponger 1 002 @ 10791221 n 0000 + 01383646 v 0101 | a workman employed to collect sponges -10638922 18 n 03 sport 0 sportsman 0 sportswoman 0 002 @ 09820263 n 0000 + 04839555 n 0201 | someone who engages in sports -10639047 18 n 01 sport 2 001 @ 00007846 n 0000 | a person known for the way she (or he) behaves when teased or defeated or subjected to trying circumstances; "a good sport"; "a poor sport" -10639238 18 n 02 sport 3 summercater 0 001 @ 10744164 n 0000 | (Maine colloquial) a temporary summer resident of Maine -10639359 18 n 02 sporting_man 0 outdoor_man 0 001 @ 09786760 n 0000 | someone who enjoys outdoor activities -10639469 18 n 01 sporting_man 1 002 @ 10118844 n 0000 ~ 10046387 n 0000 | someone who leads a merry existence; especially a gambler on the outcome of sporting events -10639637 18 n 03 sports_announcer 0 sportscaster 0 sports_commentator 0 002 @ 09795124 n 0000 + 00969260 v 0201 | an announcer who reads sports news or describes sporting events -10639817 18 n 01 sports_editor 0 001 @ 10356450 n 0000 | the newspaper editor responsible for sports news -10639925 18 n 03 sports_fan 0 fan 1 rooter 0 004 @ 10059582 n 0000 + 08223581 n 0201 ~ 09776933 n 0000 ~ 10505085 n 0000 | an enthusiastic devotee of sports -10640084 18 n 02 sports_writer 0 sportswriter 0 001 @ 10224578 n 0000 | a journalist who writes about sports -10640195 18 n 01 spotter 1 002 @ 10053808 n 0000 + 00509607 v 0101 | a worker employed to apply spots (as markers or identifiers) -10640327 18 n 01 spotter 2 001 @ 10053808 n 0000 | a worker employed at a dry-cleaning establishment to remove spots -10640446 18 n 02 spot-welder 0 spot_welder 0 005 @ 10773665 n 0000 + 01596056 v 0201 + 01596056 v 0202 + 01596056 v 0101 + 01596056 v 0102 | a welder who does spot welding -10640620 18 n 05 spouse 0 partner 1 married_person 0 mate 0 better_half 0 013 @ 10235549 n 0000 @ 10024362 n 0000 #m 07989373 n 0000 + 01428853 v 0402 + 02801964 a 0101 ~ 09853305 n 0000 ~ 09958724 n 0000 ~ 10170598 n 0000 ~ 10193967 n 0000 ~ 10328782 n 0000 ~ 10356066 n 0000 ~ 10452260 n 0000 ~ 10780632 n 0000 | a person's partner in marriage -10640968 18 n 01 sprawler 0 002 @ 00007846 n 0000 + 01543426 v 0101 | a person who sprawls; "he is such a sprawler he needs a bed to himself" -10641112 18 n 01 sprayer 0 002 @ 10241300 n 0000 + 01373551 v 0101 | a worker who applies spray to a surface -10641223 18 n 01 sprog 0 002 @ 09917593 n 0000 ;r 08860123 n 0000 | a child -10641301 18 n 01 sprog 1 003 @ 10512372 n 0000 ;r 08860123 n 0000 ;c 08199025 n 0000 | a new military recruit -10641413 18 n 01 sprinter 0 003 @ 10542888 n 0000 + 01928579 v 0101 ~i 11131135 n 0000 | someone who runs a short distance at top speed -10641551 18 n 01 spurner 0 002 @ 00007846 n 0000 + 00796976 v 0102 | a person who rejects (someone or something) with contempt; "she was known as a spurner of all suitors"; "he was no spurner of rules" -10641755 18 n 02 spy 0 undercover_agent 0 011 @ 10569411 n 0000 ;c 08199025 n 0000 + 00785470 v 0101 + 00785690 v 0101 ~ 09970192 n 0000 ~ 10027476 n 0000 ~ 10063919 n 0000 ~ 10103228 n 0000 ~ 10205833 n 0000 ~ 10610850 n 0000 ~i 11164163 n 0000 | (military) a secret agent hired by a state to obtain information about its enemies or by a business to obtain industrial secrets from competitors -10642151 18 n 01 spy 1 005 @ 10633450 n 0000 + 00785470 v 0101 + 00785690 v 0101 ~ 10617193 n 0000 ~ 10689104 n 0000 | a secret watcher; someone who secretly watches other people; "my spies tell me that you had a good time last night" -10642388 18 n 01 spymaster 0 001 @ 10298647 n 0000 | someone who directs clandestine intelligence activities -10642499 18 n 01 squabbler 0 001 @ 10284965 n 0000 | someone who quarrels about a small matter -10642596 18 n 01 square_dancer 0 002 @ 10098862 n 0000 + 01898893 v 0101 | someone who does square dancing -10642705 18 n 03 square_shooter 0 straight_shooter 0 straight_arrow 0 002 @ 10138767 n 0000 ! 10256537 n 0101 | a frank and honest person -10642845 18 n 02 square 0 square_toes 0 002 @ 09957156 n 0000 ;u 07075172 n 0000 | a formal and conservative person with old-fashioned views -10642988 18 n 02 square 1 lame 0 001 @ 10599354 n 0000 | someone who doesn't understand what is going on -10643095 18 n 01 squatter 1 002 @ 10213652 n 0000 + 02649712 v 0101 | someone who settles on land without right or title -10643218 18 n 03 squatter 2 homesteader 0 nester 0 002 @ 10583387 n 0000 + 00415231 v 0201 | someone who settles lawfully on government land with the intent to acquire title to it -10643400 18 n 01 squaw 0 001 @ 09645091 n 0000 | an American Indian woman -10643476 18 n 01 squaw_man 0 001 @ 09641002 n 0000 | a white man married to a North American Indian woman -10643584 18 n 01 squeeze 0 002 @ 09622302 n 0000 ;u 07157273 n 0000 | (slang) a person's girlfriend or boyfriend; "she was his main squeeze" -10643727 18 n 02 squinter 0 squint-eye 0 002 @ 00007846 n 0000 + 00008602 v 0101 | a person with strabismus -10643837 18 n 01 squire 0 002 @ 10245639 n 0000 ;r 08860123 n 0000 | an English country landowner -10643937 18 n 01 squire 1 003 @ 09821831 n 0000 + 02026203 v 0101 ~ 09808686 n 0000 | young nobleman attendant on a knight -10644062 18 n 02 squire 2 gallant 0 002 @ 09821831 n 0000 + 00640106 a 0202 | a man who attends or escorts a woman -10644179 18 n 01 stabber 0 003 @ 09821253 n 0000 + 01231652 v 0102 + 01230350 v 0101 | someone who stabs another person -10644301 18 n 05 stableman 0 stableboy 0 groom 1 hostler 0 ostler 0 002 @ 10176679 n 0000 + 00045639 v 0302 | someone employed in a stable to take care of the horses -10644469 18 n 01 stacker 0 003 @ 10241300 n 0000 + 01503952 v 0101 + 01503404 v 0101 | a laborer who builds up a stack or pile -10644598 18 n 02 staff_member 0 staffer 0 003 @ 10053808 n 0000 #m 08439955 n 0000 ;r 09044862 n 0000 | an employee who is a member of a staff of workers (especially a member of the staff that works for the President of the United States) -10644839 18 n 01 staff_officer 0 004 @ 09942970 n 0000 ;c 08199025 n 0000 ~ 10225787 n 0000 ~ 10499110 n 0000 | a commissioned officer assigned to a military commander's staff -10645017 18 n 01 staff_sergeant 0 001 @ 10580772 n 0000 | a noncommissioned officer ranking above corporal and below sergeant first class in the Army or Marines or above airman 1st class in the Air Force -10645223 18 n 01 stage_director 0 002 @ 10015215 n 0000 ~ 09811112 n 0000 | someone who supervises the actors and directs the action in the production of a stage show -10645392 18 n 02 stagehand 0 stage_technician 0 004 @ 10053808 n 0000 #m 08243695 n 0000 ~ 10483395 n 0000 ~ 10556124 n 0000 | an employee of a theater who performs work involved in putting on a theatrical production -10645611 18 n 02 stage_manager 0 stager 0 003 @ 10676877 n 0000 + 01648126 v 0201 + 01711445 v 0201 | someone who supervises the physical aspects in the production of a show and who is in charge of the stage when the show is being performed -10645854 18 n 03 staggerer 0 totterer 0 reeler 1 004 @ 10412055 n 0000 + 01924882 v 0302 + 01918803 v 0203 + 01924882 v 0101 | someone who walks unsteadily as if about to fall -10646032 18 n 01 stainer 0 002 @ 09632518 n 0000 + 00286008 v 0101 | a worker who stains (wood or fabric) -10646140 18 n 01 stakeholder 0 001 @ 10355142 n 0000 | someone entrusted to hold the stakes for two or more persons betting against one another; must deliver the stakes to the winner -10646325 18 n 01 Stalinist 0 002 @ 10099375 n 0000 + 08440630 n 0109 | a follower of Stalin and Stalinism -10646433 18 n 01 stalker 0 002 @ 10193026 n 0000 + 02001252 v 0101 | someone who stalks game -10646528 18 n 01 stalker 1 002 @ 10412055 n 0000 + 01924148 v 0101 | someone who walks with long stiff strides -10646641 18 n 01 stalking-horse 0 001 @ 09889691 n 0000 | a candidate put forward to divide the Opposition or to mask the true candidate -10646780 18 n 02 stammerer 0 stutterer 0 003 @ 10630188 n 0000 + 00981544 v 0202 + 00981544 v 0103 | someone who speaks with involuntary pauses and repetitions -10646942 18 n 04 stamper 0 stomper 0 tramper 0 trampler 0 005 @ 10412055 n 0000 + 01929467 v 0402 + 01921204 v 0306 + 01925338 v 0201 + 01925338 v 0102 | someone who walks with a heavy noisy gait or who stamps on the ground -10647168 18 n 01 stamper 1 002 @ 10791221 n 0000 + 01624568 v 0101 | a workman whose job is to form or cut out by applying a mold or die (either by hand or by operating a stamping machine) -10647359 18 n 01 stamp_dealer 0 001 @ 10720453 n 0000 | a dealer in stamps (whose customers are stamp collectors) -10647475 18 n 01 standard-bearer 0 001 @ 10450303 n 0000 | an outstanding leader of a political movement -10647582 18 n 02 standardizer 0 standardiser 0 003 @ 09609871 n 0000 + 00467717 v 0202 + 00467717 v 0101 | a person who sets a standard for things to conform to -10647745 18 n 01 standee 0 003 @ 10648033 n 0000 ;c 04468005 n 0000 + 01546111 v 0101 | someone who stands in a place where one might otherwise sit (as a spectator who uses standing room in a theater or a passenger on a crowded bus or train); "the allowed number of standees is posted" -10648033 18 n 01 stander 0 005 @ 00004475 n 0000 ;c 00015388 n 0000 + 01546111 v 0101 ! 10603959 n 0101 ~ 10647745 n 0000 | an organism (person or animal) that stands; "a crowd of sitters and standers" -10648237 18 n 07 stand-in 0 substitute 0 relief 0 reliever 1 backup 0 backup_man 0 fill-in 0 010 @ 09626238 n 0000 + 02258617 v 0704 + 02412175 v 0402 + 01853934 a 0203 + 02394662 v 0201 + 02258617 v 0201 + 02258617 v 0103 ~ 10269289 n 0000 ~ 10666846 n 0000 ~ 10680153 n 0000 | someone who takes the place of another (as when things get dangerous or difficult); "the star had a stand-in for dangerous scenes"; "we need extra employees for summer fill-ins" -10648696 18 n 03 star 0 principal 1 lead 0 007 @ 09765278 n 0000 + 01720980 v 0101 + 02631349 v 0101 ~ 09967967 n 0000 ~ 10089484 n 0000 ~ 10198437 n 0000 ~ 10698550 n 0000 | an actor who plays a principal role -10648909 18 n 01 starer 0 003 @ 10633450 n 0000 + 02132745 v 0102 + 00033406 v 0101 | a viewer who gazes fixedly (often with hostility) -10649047 18 n 01 starets 0 002 @ 09774266 n 0000 ~i 11254683 n 0000 | a religious adviser (not necessarily a priest) in the Eastern Orthodox Church -10649197 18 n 01 starlet 0 001 @ 09767700 n 0000 | a young (film) actress who is publicized as a future star -10649308 18 n 02 starter 2 dispatcher 0 001 @ 10372076 n 0000 | the official who signals the beginning of a race or competition -10649438 18 n 01 starter 3 002 @ 09613191 n 0000 ~ 10649574 n 0000 | a contestant in a team sport who is in the game at the beginning -10649574 18 n 01 starting_pitcher 0 003 @ 10435988 n 0000 @ 10649438 n 0000 ;c 00471613 n 0000 | (baseball) a pitcher who starts in a baseball game -10649724 18 n 01 starveling 0 001 @ 10409011 n 0000 | someone who is starving (or being starved) -10649823 18 n 01 stater 0 001 @ 10523519 n 0000 | a resident of a particular state or group of states; "Keystone stater"; "farm staters" -10649962 18 n 02 state's_attorney 0 state_attorney 0 001 @ 10484858 n 0000 | a prosecuting attorney for a state -10650076 18 n 01 state_senator 0 001 @ 10578471 n 0000 | a member of a state senate -10650162 18 n 03 statesman 0 solon 0 national_leader 0 117 @ 10450303 n 0000 + 00753093 a 0102 + 04890865 n 0101 ~ 10048485 n 0000 ~ 10107604 n 0000 ~ 10652511 n 0000 ~i 10807858 n 0000 ~i 10808756 n 0000 ~i 10809857 n 0000 ~i 10812047 n 0000 ~i 10821218 n 0000 ~i 10826952 n 0000 ~i 10827873 n 0000 ~i 10828990 n 0000 ~i 10830456 n 0000 ~i 10832085 n 0000 ~i 10832568 n 0000 ~i 10837567 n 0000 ~i 10841657 n 0000 ~i 10844805 n 0000 ~i 10850964 n 0000 ~i 10851599 n 0000 ~i 10852506 n 0000 ~i 10854777 n 0000 ~i 10855604 n 0000 ~i 10862822 n 0000 ~i 10863896 n 0000 ~i 10869207 n 0000 ~i 10873059 n 0000 ~i 10878161 n 0000 ~i 10886763 n 0000 ~i 10889689 n 0000 ~i 10893830 n 0000 ~i 10895073 n 0000 ~i 10895688 n 0000 ~i 10897312 n 0000 ~i 10897946 n 0000 ~i 10898308 n 0000 ~i 10900524 n 0000 ~i 10902934 n 0000 ~i 10912451 n 0000 ~i 10916105 n 0000 ~i 10924649 n 0000 ~i 10925939 n 0000 ~i 10927824 n 0000 ~i 10930428 n 0000 ~i 10930778 n 0000 ~i 10932244 n 0000 ~i 10937364 n 0000 ~i 10972495 n 0000 ~i 10976997 n 0000 ~i 10989610 n 0000 ~i 11001668 n 0000 ~i 11007750 n 0000 ~i 11015650 n 0000 ~i 11022465 n 0000 ~i 11025668 n 0000 ~i 11034596 n 0000 ~i 11051070 n 0000 ~i 11053344 n 0000 ~i 11085113 n 0000 ~i 11096033 n 0000 ~i 11097820 n 0000 ~i 11101700 n 0000 ~i 11102144 n 0000 ~i 11103864 n 0000 ~i 11104287 n 0000 ~i 11108767 n 0000 ~i 11111577 n 0000 ~i 11138681 n 0000 ~i 11147729 n 0000 ~i 11150634 n 0000 ~i 11153200 n 0000 ~i 11158982 n 0000 ~i 11171298 n 0000 ~i 11177532 n 0000 ~i 11183605 n 0000 ~i 11184927 n 0000 ~i 11190183 n 0000 ~i 11191653 n 0000 ~i 11194587 n 0000 ~i 11199727 n 0000 ~i 11200812 n 0000 ~i 11202833 n 0000 ~i 11209790 n 0000 ~i 11217182 n 0000 ~i 11219635 n 0000 ~i 11229801 n 0000 ~i 11236317 n 0000 ~i 11236497 n 0000 ~i 11241854 n 0000 ~i 11245110 n 0000 ~i 11249322 n 0000 ~i 11251995 n 0000 ~i 11261483 n 0000 ~i 11267343 n 0000 ~i 11277900 n 0000 ~i 11285282 n 0000 ~i 11292391 n 0000 ~i 11306297 n 0000 ~i 11306619 n 0000 ~i 11323721 n 0000 ~i 11323849 n 0000 ~i 11325146 n 0000 ~i 11325663 n 0000 ~i 11329690 n 0000 ~i 11337999 n 0000 ~i 11343625 n 0000 ~i 11360744 n 0000 ~i 11364243 n 0000 ~i 11370654 n 0000 ~i 11370990 n 0000 ~i 11372372 n 0000 ~i 11375087 n 0000 ~i 11380429 n 0000 ~i 11380923 n 0000 ~i 11400230 n 0000 | a man who is a respected leader in national or international affairs -10652511 18 n 01 stateswoman 0 002 @ 10650162 n 0000 ~i 11337779 n 0000 | a woman statesman -10652605 18 n 01 state_treasurer 0 001 @ 10727256 n 0000 | the treasurer for a state government -10652703 18 n 02 stationer 0 stationery_seller 0 001 @ 10309896 n 0000 | a merchant who sells writing materials and office supplies -10652837 18 n 02 stationmaster 0 station_agent 0 001 @ 10298647 n 0000 | the person in charge of a railway station -10652954 18 n 02 statistician 0 actuary 0 005 @ 09887034 n 0000 ;c 06018465 n 0000 + 02939542 a 0201 + 06018465 n 0101 ~ 10680796 n 0000 | someone versed in the collection and interpretation of numerical data (especially someone who uses statistics to calculate insurance premiums) -10653238 18 n 02 statistician 1 mathematical_statistician 0 002 @ 10301261 n 0000 + 06018465 n 0101 | a mathematician who specializes in statistics -10653388 18 n 02 stay-at-home 0 homebody 0 001 @ 09605289 n 0000 | a person who seldom goes anywhere; one not given to wandering or travel -10653529 18 n 01 steamfitter 0 001 @ 09974648 n 0000 | a craftsman who installs and maintains equipment for ventilating or heating or refrigerating -10653679 18 n 03 steelmaker 0 steelworker 0 steelman 0 001 @ 10284064 n 0000 | a worker engaged in making steel -10653793 18 n 01 steeplejack 0 001 @ 10241300 n 0000 | someone who builds or maintains very tall structures -10653903 18 n 01 stemmer 0 001 @ 09632518 n 0000 | a worker who makes or applies stems for artificial flowers -10654015 18 n 03 stenographer 0 amanuensis 0 shorthand_typist 0 003 @ 10569744 n 0000 + 06350127 n 0102 + 00615462 n 0101 | someone skilled in the transcription of speech (especially dictation) -10654211 18 n 01 stentor 0 002 @ 10630188 n 0000 + 01456977 a 0102 | a speaker with an unusually loud voice -10654321 18 n 03 stepbrother 0 half-brother 0 half_brother 0 001 @ 09876454 n 0000 | a brother who has only one parent in common with you -10654461 18 n 01 stepchild 0 003 @ 09918248 n 0000 ~ 10654596 n 0000 ~ 10655075 n 0000 | a child of your spouse by a former marriage -10654596 18 n 01 stepdaughter 0 001 @ 10654461 n 0000 | a daughter of your spouse by a former marriage -10654701 18 n 01 stepfather 0 002 @ 10654932 n 0000 @ 10081670 n 0000 | the husband of your mother by a subsequent marriage -10654827 18 n 01 stepmother 0 001 @ 10654932 n 0000 | the wife of your father by a subsequent marriage -10654932 18 n 01 stepparent 0 003 @ 10399491 n 0000 ~ 10654701 n 0000 ~ 10654827 n 0000 | the spouse of your parent by a subsequent marriage -10655075 18 n 01 stepson 0 001 @ 10654461 n 0000 | the son your spouse by a former marriage -10655169 18 n 09 stevedore 0 loader 0 longshoreman 0 docker 0 dockhand 0 dock_worker 0 dockworker 0 dock-walloper 0 lumper 1 005 @ 10241300 n 0000 + 02085742 v 0401 + 01305731 v 0401 + 01612084 v 0201 + 01489989 v 0201 | a laborer who loads and unloads vessels in a port -10655442 18 n 01 steward 0 003 @ 10086074 n 0000 + 00604523 n 0101 ~ 09906079 n 0000 | someone who manages property or other affairs for someone else -10655594 18 n 02 steward 3 flight_attendant 0 003 @ 09821831 n 0000 + 00604523 n 0101 ~ 10655875 n 0000 | an attendant on an airplane -10655730 18 n 01 steward 4 002 @ 10371741 n 0000 + 00604523 n 0101 | the ship's officer who is in charge of provisions and dining arrangements -10655875 18 n 03 stewardess 0 air_hostess 0 hostess 1 001 @ 10655594 n 0000 | a woman steward on an airplane -10655986 18 n 01 stickler 0 002 @ 10296444 n 0000 + 00773786 v 0101 | someone who insists on something; "a stickler for promptness" -10656120 18 n 01 stiff 0 001 @ 10287213 n 0000 | an ordinary man; "a lucky stiff"; "a working stiff" -10656223 18 n 02 stifler 0 smotherer 0 004 @ 00007846 n 0000 + 01568630 v 0201 + 01568630 v 0102 + 00390842 v 0101 | a person who stifles or smothers or suppresses; "he is a real conversation stifler"; "I see from all the yawn smotherers that it is time to stop" -10656488 18 n 02 stigmatic 0 stigmatist 0 003 @ 00007846 n 0000 + 14571930 n 0201 + 03120454 a 0101 | a person whose body is marked by religious stigmata (such as marks resembling the wounds of the crucified Christ) -10656706 18 n 01 stillborn_infant 0 002 @ 10353016 n 0000 ! 10268058 n 0101 | infant who shows no signs of life after birth -10656832 18 n 01 stinter 0 003 @ 10044470 n 0000 + 02225739 v 0101 + 02345498 v 0102 | an economizer who stints someone with something -10656969 18 n 02 stipendiary 0 stipendiary_magistrate 0 002 @ 10280945 n 0000 ;r 08860123 n 0000 | (United Kingdom) a paid magistrate (appointed by the Home Secretary) dealing with police cases -10657165 18 n 01 stippler 0 003 @ 10393909 n 0000 + 01681212 v 0101 + 01695773 v 0101 | a painter who stipples (creates a stippled effect) -10657306 18 n 01 stitcher 0 003 @ 10120816 n 0000 @ 09619452 n 0000 + 01329239 v 0104 | a garmentmaker who performs the finishing steps -10657444 18 n 01 stockbroker 0 001 @ 09777012 n 0000 | an agent in the buying and selling of stocks and bonds -10657556 18 n 01 stockjobber 0 002 @ 10657835 n 0000 ;r 08860123 n 0000 | one who deals only with brokers or other jobbers -10657681 18 n 02 stocktaker 0 stock-taker 0 001 @ 10053808 n 0000 | an employee whose job is to take inventory; "an outside stocktaker had to be hired" -10657835 18 n 01 stock_trader 0 003 @ 10720453 n 0000 ~ 10481167 n 0000 ~ 10657556 n 0000 | someone who buys and sells stock shares -10657969 18 n 03 stockholder 0 shareholder 0 shareowner 0 002 @ 10216106 n 0000 ~ 10658122 n 0000 | someone who holds shares of stock in a corporation -10658122 18 n 01 stockholder_of_record 0 001 @ 10657969 n 0000 | the stockholder whose name is registered on the books of the corporation as owning the shares at a particular time -10658304 18 n 01 stockist 0 006 @ 10677271 n 0000 + 13367070 n 0102 + 04321534 n 0101 + 02323059 v 0101 + 02323286 v 0101 + 02285392 v 0101 | one (as a retailer or distributor) that stocks goods -10658501 18 n 03 stockman 0 stock_raiser 0 stock_farmer 0 004 @ 10078806 n 0000 ~ 09873899 n 0000 ~ 09902017 n 0000 ~ 10587806 n 0000 | farmer who breed or raises livestock -10658676 18 n 01 Stoic 1 002 @ 10423589 n 0000 + 03020354 a 0101 | a member of the ancient Greek school of philosophy founded by Zeno; "a Stoic achieves happiness by submission to destiny" -10658867 18 n 02 stoic 0 unemotional_person 0 004 @ 09605289 n 0000 ! 10052843 n 0201 + 00858558 a 0101 + 00858558 a 0102 | someone who is seemingly indifferent to emotions -10659042 18 n 02 stoker 0 fireman 1 002 @ 10241300 n 0000 + 02439156 v 0101 | a laborer who tends fires (as on a coal-fired train or steamship) -10659188 18 n 01 stone_breaker 0 002 @ 09873604 n 0000 ;r 08860123 n 0000 | someone who breaks up stone -10659294 18 n 02 stonecutter 0 cutter 2 001 @ 10498551 n 0000 | someone who cuts or carves stone -10659393 18 n 02 stoner 0 lapidator 0 003 @ 09821253 n 0000 + 01323518 v 0202 + 01323518 v 0101 | an attacker who pelts the victim with stones (especially with intent to kill) -10659571 18 n 01 stonewaller 0 003 @ 10349243 n 0000 + 00460132 v 0101 + 01034932 v 0101 | one who stonewalls or refuses to answer or cooperate; someone who delays by lengthy speeches etc. -10659762 18 n 01 stooper 0 004 @ 00007846 n 0000 + 02037683 v 0101 + 02062632 v 0102 + 01601685 v 0101 | a person who carries himself or herself with the head and shoulders habitually bent forward -10659961 18 n 01 stooper 1 001 @ 10549510 n 0000 | a person at a racetrack who searches for winning parimutuel tickets that have been carelessly discarded by others -10660128 18 n 01 store_detective 0 001 @ 10476671 n 0000 | a private detective employed by a merchant to stop pilferage -10660250 18 n 01 storm_trooper 0 001 @ 10350220 n 0000 | a member of the Nazi SA -10660333 18 n 03 storyteller 1 fibber 0 fabricator 0 003 @ 10256537 n 0000 + 01634424 v 0301 + 00835294 v 0201 | someone who tells lies -10660471 18 n 01 stowaway 0 002 @ 10403876 n 0000 + 02146175 v 0101 | a person who hides aboard a ship or plane in the hope of getting free passage -10660621 18 n 01 strafer 0 002 @ 09939827 n 0000 + 01136142 v 0101 | a combat pilot who strafes the enemy -10660729 18 n 02 straggler 0 strayer 0 004 @ 09993252 n 0000 + 01881180 v 0204 + 01925694 v 0201 + 02066304 v 0104 | someone who strays or falls behind -10660883 18 n 02 straight_man 0 second_banana 0 001 @ 10415638 n 0000 | a performer who acts as stooge to a comedian -10661002 18 n 03 stranger 0 alien 1 unknown 0 005 @ 10213652 n 0000 + 01376894 a 0301 + 01035007 a 0201 ! 09763784 n 0101 ~ 10103921 n 0000 | anyone who does not belong in the environment in which they are found -10661216 18 n 01 stranger 1 002 @ 00007846 n 0000 ! 09763784 n 0101 | an individual that one is not acquainted with -10661334 18 n 01 straphanger 1 001 @ 10403876 n 0000 | a standing subway or bus passenger who grips a hanging strap for support -10661464 18 n 01 straphanger 2 001 @ 09945745 n 0000 | a commuter who uses public transportation -10661563 18 n 02 strategist 0 strategian 0 004 @ 10438172 n 0000 + 06249177 n 0101 + 05905348 n 0102 ~ 09791419 n 0000 | an expert in strategy (especially in warfare) -10661732 18 n 02 straw_boss 0 assistant_foreman 0 001 @ 10104209 n 0000 | a member of a work gang who supervises the other workers -10661865 18 n 01 strider 0 002 @ 10412055 n 0000 + 01919711 v 0101 | a person who walks rapidly with long steps; "he was such a strider that she couldn't keep up without running" -10662046 18 n 01 stringer 0 002 @ 09632518 n 0000 + 01359432 v 0101 | a worker who strings; "a stringer of beads" -10662162 18 n 01 stringer 1 002 @ 10439851 n 0000 #m 08208560 n 0000 | a member of a squad on a team; "a first stringer"; "a second stringer" -10662306 18 n 01 streaker 0 003 @ 10070942 n 0000 @ 10365399 n 0000 + 01927330 v 0101 | someone who takes off all their clothes and runs naked through a public place -10662474 18 n 02 street_cleaner 0 street_sweeper 0 001 @ 09927089 n 0000 | a worker employed to clean streets (especially one employed by a municipal sanitation department) -10662649 18 n 02 street_fighter 1 tough 2 001 @ 09939313 n 0000 | someone who learned to fight in the streets rather than being formally trained in the sport of boxing -10662819 18 n 01 street_fighter 0 001 @ 10533013 n 0000 | a contestant who is very aggressive and willing to use underhand methods -10662952 18 n 02 street_urchin 0 guttersnipe 0 003 @ 10741367 n 0000 ~ 10119685 n 0000 ~ 10663137 n 0000 | a child who spends most of his time in the streets especially in slum areas -10663137 18 n 03 street_arab 0 gamin 0 throwaway 0 002 @ 10662952 n 0000 ;u 06717170 n 0000 | (sometimes offensive) a homeless boy who has been abandoned and roams the streets -10663315 18 n 07 streetwalker 0 street_girl 0 hooker 0 hustler 1 floozy 0 floozie 0 slattern 1 004 @ 10485440 n 0000 + 02424716 a 0703 + 02322596 v 0401 + 02554235 v 0102 | a prostitute who attracts customers by walking the streets -10663549 18 n 02 stretcher-bearer 0 litter-bearer 0 001 @ 09821831 n 0000 | one who helps carry a stretcher -10663659 18 n 01 strike_leader 0 001 @ 09623038 n 0000 | someone who leads a strike -10663745 18 n 01 striker 0 002 @ 09626031 n 0000 + 02412647 v 0101 | an employee on strike against an employer -10663858 18 n 01 striker 1 002 @ 09861395 n 0000 ;c 08199025 n 0000 | someone receiving intensive training for a naval technical rating -10663996 18 n 01 striker 2 001 @ 09820263 n 0000 | a forward on a soccer team -10664076 18 n 01 striper 0 001 @ 10582746 n 0000 | a serviceman who wears stripes on the uniform to indicate rank or years of service; "he's a four-striper" -10664235 18 n 01 strip_miner 0 002 @ 10319796 n 0000 + 01164081 v 0101 | a miner who does strip mining -10664340 18 n 07 stripper 0 striptease_artist 0 striptease 0 stripteaser 0 exotic_dancer 4 ecdysiast 0 peeler 0 007 @ 10415638 n 0000 + 00049900 v 0708 + 10664340 n 0403 + 00531490 n 0402 + 10664340 n 0304 + 00049900 v 0105 ~i 11124472 n 0000 | a performer who provides erotic entertainment by undressing to music -10664656 18 n 03 stripper 1 stemmer 1 sprigger 0 002 @ 09632518 n 0000 + 01263659 v 0101 | a worker who strips the stems from moistened tobacco leaves and binds the leaves together into books -10664850 18 n 01 stroke 0 002 @ 10368920 n 0000 + 01124722 v 0101 | the oarsman nearest the stern of the shell who sets the pace for the rest of the crew -10665006 18 n 01 strongman 0 001 @ 10011902 n 0000 | a powerful political figure who rules by the exercise of force or violence; "he is determined to bring down the Iraqi strongman" -10665190 18 n 01 strongman 1 001 @ 10415638 n 0000 | a man who performs feats of strength at a fair or circus -10665302 18 n 01 struggler 0 003 @ 00007846 n 0000 + 02407338 v 0102 + 01505058 v 0101 | a person who struggles with difficulties or with great effort -10665455 18 n 01 Stuart 1 002 @ 10541229 n 0000 #m 08158460 n 0000 | a member of the royal family that ruled Scotland and England -10665587 18 n 03 stud 0 he-man 0 macho-man 0 001 @ 10287213 n 0000 | a man who is virile and sexually active -10665698 18 n 03 student 0 pupil 0 educatee 0 025 @ 10059162 n 0000 #m 13840553 n 0000 + 02387486 v 0301 + 00604694 n 0101 + 00607405 v 0101 ~ 09813351 n 0000 ~ 09823153 n 0000 ~ 09901502 n 0000 ~ 09937056 n 0000 ~ 09975933 n 0000 ~ 10066206 n 0000 ~ 10218043 n 0000 ~ 10249869 n 0000 ~ 10283366 n 0000 ~ 10306181 n 0000 ~ 10361901 n 0000 ~ 10388321 n 0000 ~ 10404426 n 0000 ~ 10558773 n 0000 ~ 10578162 n 0000 ~ 10604275 n 0000 ~ 10607824 n 0000 ~ 10736394 n 0000 ~ 10784922 n 0000 ~ 10801561 n 0000 | a learner who is enrolled in an educational institution -10666259 18 n 02 student_teacher 0 practice_teacher 0 001 @ 09936892 n 0000 | a college student who is teaching under the supervision of a certified teacher in order to qualify for a degree in education -10666464 18 n 01 study 0 001 @ 10308504 n 0000 | someone who memorizes quickly and easily (as the lines for a part in a play); "he is a quick study" -10666615 18 n 01 stuffed_shirt 0 002 @ 09867437 n 0000 ;u 07075172 n 0000 | a bore who is extremely formal, pompous, and old-fashioned -10666752 18 n 02 stumblebum 1 palooka 0 001 @ 09870208 n 0000 | a second-rate prize fighter -10666846 18 n 03 double 1 stunt_man 0 stunt_woman 0 001 @ 10648237 n 0000 | a stand-in for movie stars to perform dangerous stunts; "his first job in Hollywood was as a double for Clark Gable" -10667041 18 n 02 stumbler 0 tripper 1 003 @ 10412055 n 0000 + 01900408 v 0202 + 01900408 v 0101 | a walker or runner who trips and almost falls -10667187 18 n 09 stupid 0 stupid_person 1 stupe 0 dullard 2 dolt 1 pudding_head 0 pudden-head 0 poor_fish 0 pillock 0 006 @ 10599354 n 0000 + 01336587 a 0102 + 00439588 a 0101 ~ 09850642 n 0000 ~ 10039663 n 0000 ~ 10237935 n 0000 | a person who is not very bright; "The economy, stupid!" -10667477 18 n 01 stylist 0 002 @ 09812338 n 0000 + 07066659 n 0102 | an artist who is a master of a particular style -10667596 18 n 01 stylite 0 001 @ 09758173 n 0000 | an early Christian ascetic who lived on top of high pillars -10667709 18 n 01 subaltern 0 003 @ 09943239 n 0000 ;c 08199025 n 0000 + 02100968 a 0106 | a British commissioned army officer below the rank of captain -10667863 18 n 01 subcontractor 0 003 @ 09960688 n 0000 + 02461063 v 0101 + 02460883 v 0101 | someone who enters into a subcontract with the primary contractor -10668024 18 n 01 subdeacon 0 002 @ 09927451 n 0000 @ 13950812 n 0000 | a clergyman an order below deacon; one of the Holy Orders in the unreformed western Christian church and the eastern Catholic Churches but now suppressed in the Roman Catholic Church -10668280 18 n 01 subdivider 0 002 @ 10019888 n 0000 + 00333066 v 0101 | someone who divides parts into smaller parts (especially a divider of land into building sites) -10668450 18 n 03 subduer 0 surmounter 0 overcomer 0 004 @ 10525134 n 0000 + 01108148 v 0302 + 02424128 v 0104 + 00462092 v 0104 | someone who overcomes and establishes ascendancy and control by force or persuasion -10668666 18 n 03 subject 1 case 2 guinea_pig 0 002 @ 00007846 n 0000 + 00071559 a 0101 | a person who is subjected to experimental or other observational procedures; someone who is an object of investigation; "the subjects for this investigation were selected randomly"; "the cases that we studied were drawn from two different communities" -10669009 18 n 01 subjectivist 0 002 @ 09621545 n 0000 + 05977135 n 0101 | a person who subscribes to subjectivism -10669125 18 n 01 subjugator 0 002 @ 09956578 n 0000 + 02496816 v 0101 | a conqueror who defeats and enslaves -10669236 18 n 01 sublieutenant 0 002 @ 10259348 n 0000 ;r 08860123 n 0000 | an officer ranking next below a lieutenant -10669357 18 n 01 submariner 0 003 @ 09861395 n 0000 #m 08273167 n 0000 + 01225357 v 0101 | a member of the crew of a submarine -10669486 18 n 01 submitter 0 002 @ 09607280 n 0000 + 01072641 v 0102 | someone who submits something (as an application for a job or a manuscript for publication etc.) for the judgment of others; "he was a prolific submitter of proposals" -10669727 18 n 01 submitter 1 003 @ 10099375 n 0000 + 01118081 v 0101 + 00878348 v 0101 | someone who yields to the will of another person or force -10669876 18 n 01 subnormal 0 002 @ 10599354 n 0000 + 01597702 a 0101 | a person of less than normal intelligence -10669991 18 n 04 subordinate 0 subsidiary 0 underling 0 foot_soldier 1 010 @ 09815790 n 0000 + 01854129 a 0202 + 00792991 a 0101 + 00579712 v 0101 + 00659535 v 0101 ~ 09817174 n 0000 ~ 09868703 n 0000 ~ 09934337 n 0000 ~ 10289176 n 0000 ~ 10568608 n 0000 | an assistant subject to the authority or control of another -10670310 18 n 02 subscriber 0 contributor 0 003 @ 10025730 n 0000 + 02308741 v 0201 + 02299269 v 0102 | someone who contributes (or promises to contribute) a sum of money -10670483 18 n 02 subscriber 1 reader 2 002 @ 09984659 n 0000 + 02209745 v 0101 | someone who contracts to receive and pay for a service or a certain number of issues of a publication -10670668 18 n 04 subscriber 2 endorser 0 indorser 0 ratifier 0 006 @ 10677713 n 0000 + 02464866 v 0402 + 02556817 v 0304 + 02556817 v 0203 + 02453889 v 0202 + 00806314 v 0101 | someone who expresses strong approval -10670885 18 n 02 subsidizer 0 subsidiser 0 003 @ 10025730 n 0000 + 02216710 v 0202 + 02216710 v 0101 | someone who assists or supports by giving a subsidy -10671042 18 n 03 substitute 1 reserve 0 second-stringer 0 007 @ 09820263 n 0000 #m 08209519 n 0000 + 01855446 a 0102 + 02394662 v 0101 + 02258617 v 0101 ~ 09849874 n 0000 ~ 10434160 n 0000 | an athlete who plays only when a starter on the team is replaced -10671300 18 n 01 subtracter 0 001 @ 09887034 n 0000 | a person who subtracts numbers -10671387 18 n 01 suburbanite 0 001 @ 10523519 n 0000 | a resident of a suburb -10671467 18 n 02 subvocalizer 0 subvocaliser 0 002 @ 09811712 n 0000 + 00979667 v 0101 | someone who articulates speech without uttering sounds -10671613 18 n 02 successor 0 heir 1 002 @ 10373998 n 0000 + 02406585 v 0101 | a person who inherits some title or office -10671736 18 n 02 successor 1 replacement 1 002 @ 09626238 n 0000 + 02406585 v 0101 | a person who follows next in order; "he was President Lincoln's successor" -10671898 18 n 02 succorer 0 succourer 0 003 @ 10522759 n 0000 + 02548710 v 0202 + 02548710 v 0101 | someone who gives help in times of need or distress or difficulty -10672066 18 n 01 sucker 0 002 @ 10034614 n 0000 + 01169704 v 0101 | a drinker who sucks (as at a nipple or through a straw) -10672192 18 n 02 suer 0 petitioner 1 003 @ 10437852 n 0000 + 00754731 v 0201 + 02582042 v 0102 | someone who petitions a court for redress of a grievance or recovery of a right -10672371 18 n 01 Sufi 0 001 @ 09682291 n 0000 | a Muslim who represents the mystical dimension of Islam; a Muslim who seeks direct experience of Allah; mainly in Iran -10672540 18 n 02 suffragan 0 suffragan_bishop 0 001 @ 09857200 n 0000 | an assistant or subordinate bishop of a diocese -10672662 18 n 01 suffragette 0 004 @ 10672908 n 0000 @ 10084635 n 0000 ;r 08860123 n 0000 + 05186306 n 0103 | a woman advocate of women's right to vote (especially a militant advocate in the United Kingdom at the beginning of the 20th century) -10672908 18 n 01 suffragist 0 015 @ 09774783 n 0000 + 05186306 n 0103 ~ 10672662 n 0000 ~i 10819134 n 0000 ~i 11062649 n 0000 ~i 11135488 n 0000 ~i 11192195 n 0000 ~i 11194062 n 0000 ~i 11253802 n 0000 ~i 11296139 n 0000 ~i 11305851 n 0000 ~i 11313507 n 0000 ~i 11319570 n 0000 ~i 11388141 n 0000 ~i 11396128 n 0000 | an advocate of the extension of voting rights (especially to women) -10673296 18 n 01 sugar_daddy 0 001 @ 10682953 n 0000 | a wealthy older man who gives a young person expensive gifts in return for friendship or intimacy -10673451 18 n 02 suggester 0 proposer 1 004 @ 10383816 n 0000 + 00875394 v 0201 + 00927430 v 0102 + 00875394 v 0102 | someone who advances a suggestion or proposal; "the suggester of this absurd strategy was a fool" -10673669 18 n 02 suicide 0 felo-de-se 0 001 @ 10231087 n 0000 | a person who kills himself intentionally -10673776 18 n 01 suicide_bomber 0 003 @ 10702781 n 0000 ;c 00759694 n 0000 ~ 10229193 n 0000 | a terrorist who blows himself up in order to kill or injure other people -10673946 18 n 01 suit 0 003 @ 09882007 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 | (slang) a businessman dressed in a business suit; "all the suits care about is the bottom line" -10674130 18 n 03 suitor 0 suer 1 wooer 0 004 @ 09771435 n 0000 + 02534936 v 0301 + 02534492 v 0301 ~ 10473453 n 0000 | a man who courts a woman; "a suer for the hand of the princess" -10674315 18 n 02 sultan 0 grand_Turk 0 002 @ 10541229 n 0000 ~i 11278756 n 0000 | the ruler of a Muslim country (especially of the former Ottoman Empire) -10674471 18 n 01 Sumerian 0 002 @ 09640220 n 0000 + 02805331 a 0101 | a member of a people who inhabited ancient Sumer -10674592 18 n 01 summercaters 0 001 @ 10744164 n 0000 | (Maine colloquial) temporary summer residents of coastal Maine -10674713 18 n 01 sumo_wrestler 0 002 @ 10793168 n 0000 ;r 08921850 n 0000 | a wrestler who participates in sumo (a Japanese form of wrestling); "sumo wrestlers are large heavy men" -10674896 18 n 01 sun 0 001 @ 10200781 n 0000 | a person considered as a source of warmth or energy or glory etc -10675010 18 n 01 sunbather 0 002 @ 10197967 n 0000 + 00104147 v 0102 | someone who basks in the sunshine in order to get a suntan -10675142 18 n 01 sundowner 0 002 @ 10744544 n 0000 ;r 08831004 n 0000 | a tramp who habitually arrives at sundown -10675258 18 n 01 sun_worshiper 0 001 @ 09847727 n 0000 | someone who worships the sun -10675346 18 n 01 supercargo 0 001 @ 10371741 n 0000 | an officer on a merchant ship in charge of the cargo and its sale and purchase -10675481 18 n 02 supergrass 0 grass 1 002 @ 10206173 n 0000 ;r 08860123 n 0000 | a police informer who implicates many people -10675609 18 n 01 super_heavyweight 0 001 @ 09870208 n 0000 | an amateur boxer who weighs more than 201 pounds -10675721 18 n 02 superintendent 1 super 0 001 @ 09895701 n 0000 | a caretaker for an apartment house; represents the owner as janitor and rent collector -10675876 18 n 01 superior 2 004 @ 10518602 n 0000 ~ 09754217 n 0000 ~ 09754404 n 0000 ~ 10475940 n 0000 | the head of a religious community -10676018 18 n 03 superior 1 higher-up 0 superordinate 0 005 @ 09623038 n 0000 ! 10205231 n 0101 ~ 09851719 n 0000 ~ 10133307 n 0000 ~ 10676877 n 0000 | one of greater rank or station or quality -10676214 18 n 02 supermarketer 0 supermarketeer 0 001 @ 10378780 n 0000 | an operator of a supermarket -10676319 18 n 01 supermodel 0 001 @ 10291240 n 0000 | a fashion model who has attained the status of a celebrity -10676434 18 n 01 supermom 0 001 @ 10332385 n 0000 | an informal term for a mother who can combine childcare and full-time employment -10676569 18 n 03 supernumerary 0 spear_carrier 0 extra 0 001 @ 09765278 n 0000 | a minor actor in crowd scenes -10676682 18 n 01 supernumerary 1 002 @ 00007846 n 0000 + 01581305 a 0107 | a person serving no apparent function; "reducing staff is difficult because our employees include no supernumeraries" -10676877 18 n 01 supervisor 0 017 @ 10676018 n 0000 + 02443049 v 0102 + 02163301 v 0102 ~ 09848916 n 0000 ~ 09969062 n 0000 ~ 10003575 n 0000 ~ 10015215 n 0000 ~ 10104209 n 0000 ~ 10104888 n 0000 ~ 10388732 n 0000 ~ 10389976 n 0000 ~ 10478960 n 0000 ~ 10522956 n 0000 ~ 10645611 n 0000 ~ 10687516 n 0000 ~ 10692269 n 0000 ~ 10722029 n 0000 | one who supervises or has charge and direction of -10677271 18 n 02 supplier 0 provider 0 012 @ 09882716 n 0000 + 02327200 v 0202 + 02327200 v 0101 ~ 09858560 n 0000 ~ 09901642 n 0000 ~ 09956035 n 0000 ~ 10017794 n 0000 ~ 10018861 n 0000 ~ 10495299 n 0000 ~ 10512708 n 0000 ~ 10658304 n 0000 ~ 10681557 n 0000 | someone whose business is to supply a particular service or commodity -10677604 18 n 01 supply_officer 0 001 @ 09942970 n 0000 | a commissioned officer responsible for logistics -10677713 18 n 06 supporter 0 protagonist 0 champion 2 admirer 1 booster 2 friend 4 030 @ 09774783 n 0000 + 02554922 v 0503 + 01827858 v 0401 + 01149138 v 0301 + 02453889 v 0106 + 00895304 v 0102 ~ 09794211 n 0000 ~ 09848489 n 0000 ~ 09868157 n 0000 ~ 09913593 n 0000 ~ 09953615 n 0000 ~ 09966470 n 0000 ~ 10059582 n 0000 ~ 10108719 n 0000 ~ 10111358 n 0000 ~ 10116246 n 0000 ~ 10218989 n 0000 ~ 10275395 n 0000 ~ 10355806 n 0000 ~ 10422540 n 0000 ~ 10432957 n 0000 ~ 10540526 n 0000 ~ 10568443 n 0000 ~ 10586998 n 0000 ~ 10670668 n 0000 ~ 10686073 n 0000 ~ 10713502 n 0000 ~ 10740219 n 0000 ~ 10760763 n 0000 ~ 10776052 n 0000 | a person who backs a politician or a team etc.; "all their supporters came out for the game"; "they are friends of the library" -10678472 18 n 02 suppressor 0 suppresser 0 004 @ 10525134 n 0000 + 02424652 v 0202 + 00462092 v 0201 + 00462092 v 0101 | someone who suppresses; "dictators are suppressors of free speech" -10678662 18 n 01 supremacist 0 003 @ 09774783 n 0000 + 14442530 n 0103 ~ 10779610 n 0000 | a person who advocates the supremacy of some particular group or race over all others -10678841 18 n 01 suprematist 0 001 @ 09758424 n 0000 | an artist of the school of suprematism -10678937 18 n 01 supremo 0 002 @ 09853881 n 0000 ;r 08860123 n 0000 | the most important person in an organization -10679054 18 n 02 surfer 0 surfboarder 0 002 @ 10683126 n 0000 + 01948077 v 0102 | someone who engages in surfboarding -10679174 18 n 03 surgeon 0 operating_surgeon 0 sawbones 0 012 @ 10020890 n 0000 ~ 09789449 n 0000 ~ 09967270 n 0000 ~ 10354754 n 0000 ~i 10839469 n 0000 ~i 10883688 n 0000 ~i 10914006 n 0000 ~i 10926238 n 0000 ~i 11008462 n 0000 ~i 11134895 n 0000 ~i 11223294 n 0000 ~i 11256335 n 0000 | a physician who specializes in surgery -10679503 18 n 01 Surgeon_General 0 001 @ 10305635 n 0000 | the senior medical officer in an Army or Navy -10679610 18 n 01 Surgeon_General 1 001 @ 10069645 n 0000 | the head of the United States Public Health Service -10679723 18 n 01 surpriser 0 002 @ 09609561 n 0000 + 01126051 v 0102 | a captor who uses surprise to capture the victim -10679845 18 n 01 surrealist 0 003 @ 09812338 n 0000 #m 08470210 n 0000 + 08470210 n 0101 | an artist who is a member of the movement called surrealism -10679998 18 n 02 surrenderer 0 yielder 0 004 @ 00007846 n 0000 + 01116447 v 0201 + 02235229 v 0101 + 01115585 v 0101 | a person who yields or surrenders -10680153 18 n 03 surrogate 1 alternate 0 replacement 2 006 @ 10648237 n 0000 + 02405390 v 0302 + 00162688 v 0301 + 01853934 a 0201 + 02393726 v 0201 + 00604930 v 0202 | someone who takes the place of another person -10680370 18 n 01 surrogate_mother 0 001 @ 10332385 n 0000 | a woman who bears a child for a couple where the wife is unable to do so; "a surrogate mother is artificially inseminated with the father's semen and carries the fetus to term" -10680609 18 n 01 surveyor 0 004 @ 09615807 n 0000 + 00646738 v 0101 ~ 10263580 n 0000 ~ 10268930 n 0000 | an engineer who determines the boundaries and elevations of land or structures -10680796 18 n 01 surveyor 1 002 @ 10652954 n 0000 + 00647929 v 0101 | someone who conducts a statistical survey -10680910 18 n 01 survivalist 0 001 @ 00007846 n 0000 | someone who tries to insure their personal survival or the survival of their group or nation -10681060 18 n 01 survivor 2 002 @ 00007846 n 0000 + 02619739 v 0103 | one who outlives another; "he left his farm to his survivors" -10681194 18 n 02 survivor 3 subsister 0 003 @ 09630641 n 0000 + 02616713 v 0204 + 02619924 v 0101 | one who lives through affliction; "the survivors of the fire were taken to a hospital" -10681383 18 n 01 suspect 0 006 @ 00007846 n 0000 + 00687926 v 0103 + 00924873 v 0101 ~ 10339251 n 0000 ~ 10507380 n 0000 ~ 10534748 n 0000 | someone who is under suspicion -10681557 18 n 04 sutler 0 victualer 1 victualler 1 provisioner 0 004 @ 10677271 n 0000 + 02338975 v 0401 + 02332999 v 0301 + 02332999 v 0201 | a supplier of victuals or supplies to an army -10681748 18 n 01 Svengali 0 001 @i 09587565 n 0000 | the musician in a novel by George du Maurier who controls Trilby's singing hypnotically -10681891 18 n 01 Svengali 1 001 @ 10418841 n 0000 | someone (usually maleficent) who tries to persuade or force another person to do his bidding -10682038 18 n 01 swaggerer 0 003 @ 10412055 n 0000 + 01916634 v 0102 + 00012434 v 0101 | someone who walks in an arrogant manner -10682169 18 n 03 swagman 0 swagger 0 swaggie 0 002 @ 10217831 n 0000 ;r 08831004 n 0000 | an itinerant Australian laborer who carries his personal belongings in a bundle as he travels around in search of work -10682380 18 n 01 swearer 0 003 @ 09610660 n 0000 + 01011031 v 0107 + 00889947 v 0101 | someone who takes a solemn oath -10682501 18 n 01 swearer 1 002 @ 09859412 n 0000 + 00865387 v 0104 | someone who uses profanity -10682599 18 n 01 sweater_girl 0 001 @ 10129825 n 0000 | a girl with an attractive bust who wears tight sweaters -10682713 18 n 01 sweeper 0 003 @ 10053808 n 0000 + 01393996 v 0101 + 01393714 v 0101 | an employee who sweeps (floors or streets etc.) -10682850 18 n 01 sweetheart 2 001 @ 10138767 n 0000 | any well-liked individual; "he's a sweetheart" -10682953 18 n 04 sweetheart 0 sweetie 0 steady 0 truelove 0 004 @ 09622302 n 0000 ~ 10243384 n 0000 ~ 10673296 n 0000 ~ 10745181 n 0000 | a person loved by another person -10683126 18 n 03 swimmer 1 natator 0 bather 0 005 @ 09629752 n 0000 + 01960911 v 0101 ~ 10096620 n 0000 ~ 10607291 n 0000 ~ 10679054 n 0000 | a person who travels through the water by swimming; "he is not a good swimmer" -10683349 18 n 01 swimmer 0 007 @ 09820263 n 0000 + 01960911 v 0101 ~ 09831303 n 0000 ~ 09873769 n 0000 ~ 10019406 n 0000 ~ 10605737 n 0000 ~i 10948798 n 0000 | a trained athlete who participates in swimming meets; "he was an Olympic swimmer" -10683593 18 n 02 swineherd 0 pigman 0 001 @ 10171567 n 0000 | a herder or swine -10683675 18 n 02 swinger 0 tramp 1 002 @ 10257647 n 0000 + 01427483 v 0101 | a person who engages freely in promiscuous sex -10683801 18 n 01 swinger 1 003 @ 09820263 n 0000 + 02087745 v 0101 + 01877355 v 0101 | someone who swings sports implements -10683927 18 n 02 swing_voter 0 floating_voter 0 001 @ 10760340 n 0000 | a voter who has no allegiance to any political party and whose unpredictable decisions can swing the outcome of an election one way or the other -10684146 18 n 02 switcher 0 whipper 0 003 @ 10379758 n 0000 + 01411085 v 0203 + 01411630 v 0101 | a person who administers punishment by wielding a switch or whip -10684311 18 n 01 switch-hitter 0 002 @ 09843956 n 0000 + 01413719 v 0101 | a baseball player who can bat either right or left handed -10684446 18 n 01 switch-hitter 1 001 @ 09857007 n 0000 | slang term for a bisexual person -10684538 18 n 01 switchman 0 001 @ 10378412 n 0000 | a man who operates railroad switches -10684630 18 n 05 swot 0 grind 0 nerd 0 wonk 0 dweeb 0 003 @ 10251779 n 0000 + 02419773 v 0206 + 00605783 v 0105 | an insignificant student who is ridiculed as being affected or boringly studious -10684827 18 n 05 sycophant 0 toady 0 crawler 0 lackey 1 ass-kisser 0 008 @ 10095869 n 0000 + 02063771 v 0302 + 00880978 v 0202 + 00790394 a 0103 + 04906923 n 0101 + 02181231 a 0104 ~ 09800631 n 0000 ~ 10139206 n 0000 | a person who tries to please someone in order to gain a personal advantage -10685123 18 n 03 syllogist 0 syllogizer 0 syllogiser 0 004 @ 10269785 n 0000 + 00653449 v 0302 + 00653449 v 0201 + 05779116 n 0101 | logician skilled in syllogistic reasoning -10685300 18 n 01 sylph 1 001 @ 09483738 n 0000 | an elemental being believed to inhabit the air -10685398 18 n 01 sylph 2 001 @ 10787470 n 0000 | a slender graceful young woman -10685480 18 n 02 sylvan 0 silvan 0 001 @ 09545324 n 0000 | a spirit that lives in or frequents the woods -10685587 18 n 01 symbolic_logician 0 001 @ 10269785 n 0000 | a person skilled at symbolic logic -10685685 18 n 01 symbolist 0 003 @ 09812338 n 0000 + 08470507 n 0101 + 00412271 n 0101 | a member of an artistic movement that expressed ideas indirectly via symbols -10685853 18 n 03 symbolist 1 symbolizer 0 symboliser 0 005 @ 10212501 n 0000 + 00836236 v 0303 + 00836236 v 0202 + 00412271 n 0101 + 06807849 n 0101 | someone skilled in the interpretation or representation of symbols -10686073 18 n 03 sympathizer 0 sympathiser 0 well-wisher 0 005 @ 10677713 n 0000 + 01822724 v 0202 + 01822724 v 0101 ~ 09859818 n 0000 ~ 10083677 n 0000 | someone who shares your feelings or opinions and hopes that you will be successful -10686313 18 n 03 sympathizer 1 sympathiser 1 comforter 0 005 @ 09610660 n 0000 + 01814815 v 0301 + 01822248 v 0203 + 01822248 v 0102 ~ 10223069 n 0000 | commiserates with someone who has had misfortune -10686517 18 n 01 symphonist 0 001 @ 09947232 n 0000 | a composer of symphonies -10686598 18 n 01 symposiast 0 001 @ 09608002 n 0000 | someone who participates in a symposium -10686694 18 n 01 syncopator 0 002 @ 10220486 n 0000 + 00170500 v 0101 | a musician who plays syncopated jazz music (usually in a dance band); "they called themselves the Dixie Syncopators" -10686885 18 n 01 syndic 0 001 @ 09777012 n 0000 | one appointed to represent a city or university or corporation in business transactions -10687025 18 n 01 syndicator 0 002 @ 09882007 n 0000 + 02449011 v 0101 | a businessman who forms a syndicate -10687135 18 n 01 synonymist 0 002 @ 10256080 n 0000 + 13808161 n 0101 | a student of synonyms -10687231 18 n 03 synthesist 0 synthesizer 0 synthesiser 0 004 @ 09621545 n 0000 + 00644066 v 0302 + 00644066 v 0201 + 05783940 n 0101 | an intellectual who synthesizes or uses synthetic methods -10687427 18 n 01 syphilitic 0 001 @ 10595647 n 0000 | a person suffering from syphilis -10687516 18 n 01 system_administrator 0 002 @ 10676877 n 0000 @ 09951274 n 0000 | a person in charge of managing and maintaining a computer system of telecommunication system (as for a business or institution) -10687728 18 n 01 systems_analyst 0 001 @ 09790482 n 0000 | a person skilled at systems analysis -10687826 18 n 02 tablemate 0 dining_companion 0 001 @ 10013242 n 0000 | someone you dine with -10687922 18 n 01 tacker 1 002 @ 09632518 n 0000 + 01357429 v 0101 | a worker who fastens things by tacking them (as with tacks or by spotwelding) -10688070 18 n 01 tackle 0 002 @ 10263411 n 0000 + 01150164 v 0101 | the person who plays that position on a football team; "the right tackle is a straight A student" -10688238 18 n 01 tackler 0 002 @ 10101634 n 0000 + 01150164 v 0101 | a football player who tackles the ball carrier -10688356 18 n 01 tactician 0 003 @ 10438172 n 0000 + 06248968 n 0101 + 05905152 n 0102 | a person who is skilled at planning tactics -10688491 18 n 01 Tagalog 0 002 @ 09727440 n 0000 #m 08980300 n 0000 | a member of a people native to the Philippines chiefly inhabiting central Luzon around and including Manila -10688671 18 n 02 tagalong 0 hanger-on 0 002 @ 10099375 n 0000 + 02027030 v 0101 | someone who persistently (and annoyingly) follows along -10688811 18 n 01 tagger 0 001 @ 00007846 n 0000 | someone who appends or joins one thing to another; "a theory that was simply added on by some anonymous tagger" -10688975 18 n 01 tagger 1 001 @ 00007846 n 0000 | someone who assigns labels to the grammatical constituents of textual matter -10689104 18 n 03 tail 0 shadow 0 shadower 0 005 @ 10100124 n 0000 @ 10642151 n 0000 + 02001461 v 0301 + 02001461 v 0201 + 02001858 v 0104 | a spy employed to follow someone and report their movements -10689306 18 n 01 tailback 0 002 @ 09830194 n 0000 ;c 00468480 n 0000 | (American football) the person who plays tailback -10689429 18 n 01 tailgater 0 002 @ 10034906 n 0000 + 01998125 v 0101 | a driver who follows too closely behind another motor vehicle -10689564 18 n 03 tailor 0 seamster 0 sartor 0 006 @ 10120816 n 0000 + 02792080 a 0301 + 04160372 n 0201 + 01666327 v 0102 + 01666717 v 0102 ~ 10093908 n 0000 | a person whose occupation is making and altering garments -10689784 18 n 01 taker 2 002 @ 09984659 n 0000 + 02236124 v 0102 | one who accepts an offer -10689878 18 n 01 talent 0 001 @ 09617867 n 0000 | a person who possesses unusual innate ability in some field or activity -10690002 18 n 01 talent_agent 0 001 @ 09777353 n 0000 | an agent who represents performers -10690095 18 n 01 talking_head 0 001 @ 10630188 n 0000 | a talker on television who talks directly into the cameras and whose upper body is all that is shown on the screen -10690268 18 n 02 tallyman 1 tally_clerk 0 001 @ 09928451 n 0000 | one who keeps a tally of quantity or weight of goods produced or shipped or received -10690421 18 n 01 tallyman 2 002 @ 10726786 n 0000 ;r 08860123 n 0000 | one who sells goods on the installment plan -10690538 18 n 01 tamer 0 002 @ 10159045 n 0000 + 00302130 v 0105 | an animal trainer who tames wild animals -10690648 18 n 02 tanker 0 tank_driver 0 001 @ 10622053 n 0000 | a soldier who drives a tank -10690742 18 n 01 tanner 0 002 @ 09974648 n 0000 + 00511430 v 0101 | a craftsman who tans skins and hides -10690849 18 n 02 tantalizer 0 tantaliser 0 003 @ 10716005 n 0000 + 00850501 v 0206 + 00850501 v 0105 | someone who tantalizes; a tormentor who offers something desirable but keeps it just out of reach -10691052 18 n 01 taoiseach 0 001 @ 09906986 n 0000 | the prime minister of the Irish Republic -10691148 18 n 02 tap_dancer 0 tapper 3 002 @ 09989502 n 0000 + 01895757 v 0202 | a dancer who sounds out rhythms by using metal taps on the toes and heels of the shoes -10691318 18 n 03 tapper 0 wiretapper 0 phone_tapper 0 003 @ 10042690 n 0000 + 02188848 v 0201 + 02188848 v 0102 | someone who wiretaps a telephone or telegraph wire -10691485 18 n 01 tapper 2 002 @ 09632518 n 0000 + 01403314 v 0101 | a worker who uses a tap to cut screw threads -10691600 18 n 01 tapper 4 002 @ 00007846 n 0000 + 01247804 v 0101 | a person who strikes a surface lightly and usually repeatedly; "finger tappers irritated her" -10691764 18 n 02 tapster 0 tapper 1 005 @ 10490421 n 0000 + 02360274 v 0201 + 01854519 v 0201 + 04390977 n 0101 + 04559451 n 0103 | a tavern keeper who taps kegs or casks -10691937 18 n 02 Tartuffe 0 Tartufe 0 001 @ 10195593 n 0000 | a hypocrite who pretends to religious piety (after the protagonist in a play by Moliere) -10692090 18 n 01 Tarzan 1 001 @ 10287213 n 0000 | (sometimes used ironically) a man of great strength and agility (after the hero of a series of novels by Edgar Rice Burroughs) -10692269 18 n 01 taskmaster 0 003 @ 10676877 n 0000 ~ 10609871 n 0000 ~ 10692405 n 0000 | someone who imposes hard or continuous work -10692405 18 n 01 taskmistress 0 001 @ 10692269 n 0000 | a woman taskmaster -10692482 18 n 04 taster 0 taste_tester 0 taste-tester 0 sampler 0 005 @ 09979321 n 0000 + 01195299 v 0401 + 02192992 v 0101 + 01195299 v 0104 ~ 10783438 n 0000 | someone who samples food or drink for its quality -10692696 18 n 06 tattletale 0 tattler 0 taleteller 0 talebearer 0 telltale 0 blabbermouth 0 003 @ 10139347 n 0000 + 01305344 a 0503 + 00937208 v 0204 | someone who gossips indiscreetly -10692883 18 n 02 tax_assessor 0 assessor 0 003 @ 09880427 n 0000 + 00681429 v 0204 ~ 10265891 n 0000 | an official who evaluates property for the purpose of taxing it -10693052 18 n 05 tax_collector 0 taxman 0 exciseman 0 collector_of_internal_revenue 0 internal_revenue_agent 0 001 @ 09880427 n 0000 | someone who collects taxes for the government -10693235 18 n 01 taxer 0 002 @ 09880427 n 0000 + 02307547 v 0101 | a bureaucrat who levies taxes -10693334 18 n 01 taxi_dancer 0 001 @ 09989502 n 0000 | a woman employed to dance with patrons who pay a fee for each dance -10693459 18 n 03 taxidermist 0 animal_stuffer 0 stuffer 0 003 @ 09974648 n 0000 + 00321148 v 0301 + 05636402 n 0101 | a craftsman who stuffs and mounts the skins of animals for display -10693646 18 n 08 taxidriver 0 taximan 0 cabdriver 0 cabman 0 cabby 0 hack_driver 0 hack-driver 0 livery_driver 0 001 @ 10034906 n 0000 | someone who drives a taxi for a living -10693824 18 n 03 taxonomist 0 taxonomer 0 systematist 0 008 @ 09855630 n 0000 + 06152821 n 0301 + 01031705 n 0301 + 08378356 n 0101 + 06153186 n 0101 + 01013770 n 0101 ~ 10276477 n 0000 ~ 10637635 n 0000 | a biologist who specializes in the classification of organisms into groups on the basis of their structure and origin and behavior -10694163 18 n 01 taxpayer 0 002 @ 10409752 n 0000 ~ 10508141 n 0000 | someone who pays taxes -10694258 18 n 02 teacher 0 instructor 0 028 @ 10045713 n 0000 #m 13840553 n 0000 + 00593732 n 0201 + 00829107 v 0203 + 00604811 n 0101 + 00829107 v 0101 + 00273734 v 0101 ~ 09813441 n 0000 ~ 09832873 n 0000 ~ 09901337 n 0000 ~ 09931418 n 0000 ~ 09990777 n 0000 ~ 10003120 n 0000 ~ 10020807 n 0000 ~ 10057918 n 0000 ~ 10111601 n 0000 ~ 10140169 n 0000 ~ 10209539 n 0000 ~ 10302446 n 0000 ~ 10322957 n 0000 ~ 10341343 n 0000 ~ 10464542 n 0000 ~ 10509063 n 0000 ~ 10530383 n 0000 ~ 10560352 n 0000 ~ 10560548 n 0000 ~ 10574425 n 0000 ~ 10694939 n 0000 | a person whose occupation is teaching -10694849 18 n 01 teacher's_pet 0 001 @ 09991867 n 0000 | the teacher's favorite student -10694939 18 n 01 teaching_fellow 0 001 @ 10694258 n 0000 | a graduate student with teaching responsibilities -10695050 18 n 02 teammate 0 mate 4 001 @ 09816771 n 0000 | a fellow member of a team; "it was his first start against his former teammates" -10695192 18 n 03 teamster 0 trucker 0 truck_driver 0 002 @ 10034906 n 0000 + 01954341 v 0201 | someone who drives a truck as an occupation -10695333 18 n 01 teamster 2 002 @ 10035430 n 0000 + 07985384 n 0101 | the driver of a team of horses doing hauling -10695450 18 n 01 tearaway 0 002 @ 09991530 n 0000 ;r 08860123 n 0000 | a reckless and impetuous person -10695555 18 n 04 tease 0 teaser 0 annoyer 0 vexer 0 008 @ 09631129 n 0000 + 01787955 v 040b + 01787955 v 0301 + 00852506 v 0201 + 01803380 v 0201 + 00850501 v 0201 + 00850501 v 0101 + 01803380 v 0101 | someone given to teasing (as by mocking or stirring curiosity) -10695822 18 n 01 teaser 1 002 @ 09632518 n 0000 + 01463792 v 0101 | a worker who teases wool -10695917 18 n 02 techie 0 tekki 0 002 @ 10696251 n 0000 ;c 00928947 n 0000 | a technician who is highly proficient and enthusiastic about some technical field (especially computing) -10696101 18 n 01 technical_sergeant 0 001 @ 10580772 n 0000 | a noncommissioned officer ranking below a master sergeant in the air force or marines -10696251 18 n 01 technician 0 008 @ 10605985 n 0000 + 05643190 n 0102 + 05665146 n 0101 ~ 09794550 n 0000 ~ 10004019 n 0000 ~ 10627557 n 0000 ~ 10695917 n 0000 ~ 10772289 n 0000 | someone whose occupation involves training in a specific technical process -10696508 18 n 01 technician 1 003 @ 09617867 n 0000 + 05643190 n 0102 + 05665146 n 0101 | someone known for high skill in some intellectual or artistic technique -10696672 18 n 01 technocrat 0 001 @ 10450303 n 0000 | an advocate of technocracy -10696755 18 n 01 technocrat 1 002 @ 09617867 n 0000 #m 08386555 n 0000 | an expert who is a member of a highly skilled elite group -10696888 18 n 01 technophile 0 002 @ 10078131 n 0000 ! 10697013 n 0101 | a person who is enthusiastic about new technology -10697013 18 n 01 technophobe 0 002 @ 10349551 n 0000 ! 10696888 n 0101 | a person who dislikes or avoids new technology -10697135 18 n 02 Ted 0 Teddy_boy 0 002 @ 10717921 n 0000 ;r 08860123 n 0000 | a tough youth of 1950's and 1960's wearing Edwardian style clothes -10697282 18 n 03 teetotaler 0 teetotaller 0 teetotalist 0 003 @ 09757944 n 0000 + 01069867 n 0302 + 01196364 v 0201 | a total abstainer -10697420 18 n 01 telecaster 0 002 @ 09875786 n 0000 + 00969506 v 0101 | a television broadcaster -10697519 18 n 03 telegrapher 0 telegraphist 0 telegraph_operator 0 008 @ 10378412 n 0000 + 06274921 n 0201 + 04400499 n 0202 + 01007222 v 0202 + 06274921 n 0101 + 04400499 n 0102 + 04400499 n 0101 + 01007222 v 0102 | someone who transmits messages by telegraph -10697782 18 n 01 teleologist 0 002 @ 09774783 n 0000 + 05977619 n 0101 | advocate of teleology -10697879 18 n 04 telepathist 0 thought-reader 0 mental_telepathist 0 mind_reader 0 002 @ 09610660 n 0000 + 07255998 n 0101 | someone with the power of communicating thoughts directly -10698064 18 n 03 telephone_operator 0 telephonist 0 switchboard_operator 0 002 @ 10378412 n 0000 + 06272290 n 0202 | someone who helps callers get the person they are calling -10698241 18 n 01 televangelist 0 002 @ 10067011 n 0000 + 07244822 n 0101 | an evangelist who conducts services on television -10698368 18 n 04 television_reporter 0 television_newscaster 0 TV_reporter 0 TV_newsman 0 002 @ 10521662 n 0000 ~ 09792969 n 0000 | someone who reports news stories via television -10698550 18 n 02 television_star 0 TV_star 0 001 @ 10648696 n 0000 | a star in a television show -10698649 18 n 02 Tell 0 William_Tell 0 001 @i 09805324 n 0000 | a Swiss patriot who lived in the early 14th century and who was renowned for his skill as an archer; according to legend an Austrian governor compelled him to shoot an apple from his son's head with his crossbow (which he did successfully without mishap) -10698970 18 n 03 teller 0 cashier 0 bank_clerk 0 001 @ 09837824 n 0000 | an employee of a bank who receives and pays out money -10699099 18 n 02 teller 1 vote_counter 0 002 @ 10372373 n 0000 ~ 09892066 n 0000 | an official appointed to count the votes (especially in legislative assembly) -10699262 18 n 04 tellurian 0 earthling 0 earthman 0 worldling 1 003 @ 09620078 n 0000 + 09270894 n 0201 + 09270894 n 0202 | an inhabitant of the earth -10699415 18 n 03 temp 0 temporary 0 temporary_worker 0 001 @ 09632518 n 0000 | a worker (especially in an office) hired on a temporary basis -10699558 18 n 02 temporizer 0 temporiser 0 003 @ 10000616 n 0000 + 00318484 v 0202 + 00318484 v 0101 | someone who temporizes; someone who tries to gain time or who waits for a favorable time -10699752 18 n 01 tempter 0 007 @ 00007846 n 0000 + 01807770 v 0101 + 01807529 v 0101 + 00782527 v 0103 + 00784184 v 0101 + 00793785 v 0101 + 00776523 v 0103 | a person who tempts others; "Satan is the great tempter of mankind" -10699981 18 n 01 term_infant 0 001 @ 10353016 n 0000 | infant born at a gestational age between 37 and 42 completed weeks -10700105 18 n 01 toiler 0 002 @ 09632518 n 0000 + 02419773 v 0103 | one who works strenuously -10700201 18 n 02 tenant 0 renter 0 007 @ 10409752 n 0000 + 02208537 v 0202 + 02460619 v 0201 + 01054335 n 0102 + 02460483 v 0101 ~ 10252075 n 0000 ~ 10269458 n 0000 | someone who pays rent to use land or a building or a car that is owned by someone else; "the landlord can evict a tenant who doesn't pay the rent" -10700517 18 n 01 tenant 1 003 @ 10523519 n 0000 + 01054335 n 0102 + 02460483 v 0101 | any occupant who dwells in a place -10700640 18 n 01 tenant 2 005 @ 10180178 n 0000 + 01054335 n 0102 ~ 09968433 n 0000 ~ 10261211 n 0000 ~ 10700840 n 0000 | a holder of buildings or lands by any kind of title (as ownership or lease) -10700840 18 n 01 tenant_farmer 0 002 @ 10078806 n 0000 @ 10700640 n 0000 | a farmer who works land owned by someone else -10700963 18 n 01 tenderfoot 0 001 @ 10363913 n 0000 | an inexperienced person (especially someone inexperienced in outdoor living) -10701096 18 n 01 tennis_coach 0 001 @ 09931640 n 0000 | a coach of tennis players -10701180 18 n 01 tennis_player 0 021 @ 09820263 n 0000 @ 10439851 n 0000 ~ 10510974 n 0000 ~ 10701644 n 0000 ~i 10825718 n 0000 ~i 10870440 n 0000 ~i 10907236 n 0000 ~i 10907501 n 0000 ~i 10913355 n 0000 ~i 10924452 n 0000 ~i 10963815 n 0000 ~i 10998117 n 0000 ~i 11010019 n 0000 ~i 11105463 n 0000 ~i 11119634 n 0000 ~i 11126081 n 0000 ~i 11188852 n 0000 ~i 11201740 n 0000 ~i 11291451 n 0000 ~i 11342440 n 0000 ~i 11369676 n 0000 | an athlete who plays tennis -10701644 18 n 02 tennis_pro 0 professional_tennis_player 0 001 @ 10701180 n 0000 | someone who earns a living playing or teaching tennis -10701783 18 n 01 tenor 0 006 @ 10599806 n 0000 ~i 10885487 n 0000 ~i 10938199 n 0000 ~i 11168513 n 0000 ~i 11172411 n 0000 ~i 11227101 n 0000 | an adult male with a tenor voice -10701962 18 n 02 tenor_saxophonist 0 tenorist 0 001 @ 10554243 n 0000 | a musician who plays the tenor saxophone -10702077 18 n 01 tentmaker 0 001 @ 10284064 n 0000 | someone who makes or repairs tents -10702167 18 n 01 termer 0 001 @ 00007846 n 0000 | a person who serves a specified term; "there are not many fourth termers in the Senate" -10702307 18 n 01 territorial 0 004 @ 10622053 n 0000 #m 08391387 n 0000 #m 08391953 n 0000 ;c 08199025 n 0000 | nonprofessional soldier member of a territorial military unit -10702483 18 n 04 terror 0 brat 0 little_terror 0 holy_terror 0 002 @ 10200047 n 0000 + 00641813 a 0201 | a very troublesome child -10702615 18 n 03 terror 1 scourge 0 threat 0 002 @ 00007846 n 0000 + 10702781 n 0101 | a person who inspires fear or dread; "he was the terror of the neighborhood" -10702781 18 n 01 terrorist 0 013 @ 10503452 n 0000 #m 08358963 n 0000 ;c 00759694 n 0000 + 10702615 n 0101 + 07520612 n 0102 + 00759694 n 0101 ~ 10155222 n 0000 ~ 10218802 n 0000 ~ 10610850 n 0000 ~ 10673776 n 0000 ~i 10851452 n 0000 ~i 11078404 n 0000 ~i 11201386 n 0000 | a radical who employs terror as a political weapon; usually organizes with other terrorists in small cells; often uses religion as a cover for terrorist activities -10703221 18 n 02 tertigravida 0 gravida_III 0 001 @ 10144838 n 0000 | a woman who is pregnant for the third time -10703336 18 n 02 testator 0 testate 0 004 @ 00007846 n 0000 + 02444758 a 0201 ~ 10010767 n 0000 ~ 10703480 n 0000 | a person who makes a will -10703480 18 n 01 testatrix 0 001 @ 10703336 n 0000 | a female testator -10703553 18 n 01 test_driver 0 002 @ 10034906 n 0000 + 01931375 v 0101 | a driver who drives a motor vehicle to evaluate its performance -10703692 18 n 02 testee 0 examinee 0 005 @ 10524413 n 0000 + 00786816 v 0201 + 00669970 v 0101 + 00786458 v 0102 ~ 10404426 n 0000 | someone who is tested (as by an intelligence test or an academic examination) -10703905 18 n 03 testifier 0 deponent 0 deposer 0 005 @ 10786033 n 0000 + 01013040 v 0302 + 01013040 v 0203 + 01015244 v 0101 + 01014821 v 0101 | a person who testifies or gives a deposition -10704098 18 n 01 test_pilot 0 001 @ 10433164 n 0000 | a pilot hired to fly experimental airplanes through maneuvers designed to test them -10704238 18 n 01 test-tube_baby 0 001 @ 09827683 n 0000 | a baby conceived by fertilization that occurs outside the mother's body; the woman's ova are removed and mixed with sperm in a culture medium - if fertilization occurs the blastocyte is implanted in the woman's uterus -10704516 18 n 01 Teutonist 0 001 @ 10631941 n 0000 | a specialist in the history of the Teutonic people or language (especially with respect to the Teutonic influence on the history of England) -10704712 18 n 02 Texas_Ranger 0 Ranger 1 001 @ 10249459 n 0000 | a member of the Texas state highway patrol; formerly a mounted lawman who maintained order on the frontier -10704886 18 n 01 thane 1 002 @ 09923673 n 0000 + 00604910 n 0101 | a man ranking above an ordinary freeman and below a noble in Anglo-Saxon England (especially one who gave military service in exchange for land) -10705100 18 n 01 thane 2 003 @ 10271677 n 0000 ;r 08890097 n 0000 + 00604910 n 0101 | a feudal lord or baron -10705211 18 n 01 thatcher 0 002 @ 10538272 n 0000 + 01233838 v 0101 | someone skilled in making a roof from plant stalks or foliage -10705345 18 n 01 Thatcherite 0 002 @ 09774783 n 0000 ;r 08860123 n 0000 | an advocate of Thatcherism -10705448 18 n 01 theatrical_producer 0 004 @ 10480018 n 0000 ~i 11011764 n 0000 ~i 11348160 n 0000 ~i 11406700 n 0000 | someone who produces theatrical performances -10705615 18 n 04 theologian 0 theologist 0 theologizer 0 theologiser 0 056 @ 10557854 n 0000 + 01034118 v 0402 + 00631398 v 0402 + 00631398 v 0301 + 01034118 v 0301 + 06182144 n 0201 + 06183899 n 0201 + 00613973 n 0201 ~ 09921792 n 0000 ~ 10022111 n 0000 ~ 10063340 n 0000 ~ 10116702 n 0000 ~ 10466564 n 0000 ~ 10470132 n 0000 ~i 10807317 n 0000 ~i 10815648 n 0000 ~i 10820790 n 0000 ~i 10822567 n 0000 ~i 10822962 n 0000 ~i 10823894 n 0000 ~i 10827155 n 0000 ~i 10828573 n 0000 ~i 10836308 n 0000 ~i 10837918 n 0000 ~i 10840769 n 0000 ~i 10842730 n 0000 ~i 10856215 n 0000 ~i 10871129 n 0000 ~i 10880398 n 0000 ~i 10945546 n 0000 ~i 10948117 n 0000 ~i 10948312 n 0000 ~i 10951948 n 0000 ~i 10959857 n 0000 ~i 11015080 n 0000 ~i 11058335 n 0000 ~i 11060103 n 0000 ~i 11071177 n 0000 ~i 11080745 n 0000 ~i 11083064 n 0000 ~i 11086774 n 0000 ~i 11108195 n 0000 ~i 11145364 n 0000 ~i 11171851 n 0000 ~i 11204962 n 0000 ~i 11206885 n 0000 ~i 11216562 n 0000 ~i 11248997 n 0000 ~i 11307262 n 0000 ~i 11326591 n 0000 ~i 11336668 n 0000 ~i 11342618 n 0000 ~i 11377043 n 0000 ~i 11399866 n 0000 ~i 11407465 n 0000 ~i 11408243 n 0000 | someone who is learned in theology or who speculates about theology -10706812 18 n 05 theorist 0 theoretician 0 theorizer 0 theoriser 0 idealogue 0 010 @ 09621545 n 0000 ;c 05999797 n 0000 ;c 00933420 n 0000 + 00633443 v 0403 + 00633443 v 0302 + 05888929 n 0203 + 05989479 n 0201 + 05952979 n 0101 + 05888929 n 0103 + 05989479 n 0101 | someone who theorizes (especially in science or art) -10707134 18 n 01 theosophist 0 002 @ 09847727 n 0000 + 05953614 n 0101 | a believer in theosophy -10707233 18 n 02 therapist 0 healer 0 016 @ 09617867 n 0000 + 00081725 v 0203 + 00661091 n 0101 ~ 09625309 n 0000 ~ 09784443 n 0000 ~ 09919200 n 0000 ~ 09983314 n 0000 ~ 09983444 n 0000 ~ 10049896 n 0000 ~ 10171456 n 0000 ~ 10347110 n 0000 ~ 10385566 n 0000 ~ 10427764 n 0000 ~ 10489944 n 0000 ~ 10550369 n 0000 ~ 10634464 n 0000 | a person skilled in a particular type of therapy -10707616 18 n 01 Thessalian 0 001 @ 09710164 n 0000 | a native or inhabitant of Thessaly -10707707 18 n 01 Thessalonian 0 001 @ 09710164 n 0000 | a native or inhabitant of Thessalonica -10707804 18 n 02 thief 0 stealer 0 019 @ 09977660 n 0000 + 02321757 v 0201 ~ 09837088 n 0000 ~ 09866661 n 0000 ~ 09880741 n 0000 ~ 09987927 n 0000 ~ 10051337 n 0000 ~ 10144571 n 0000 ~ 10144730 n 0000 ~ 10180923 n 0000 ~ 10246913 n 0000 ~ 10431907 n 0000 ~ 10437262 n 0000 ~ 10443170 n 0000 ~ 10534586 n 0000 ~ 10544480 n 0000 ~ 10546062 n 0000 ~ 10615929 n 0000 ~ 10616204 n 0000 | a criminal who takes property belonging to someone else with the intention of keeping it or selling it -10708292 18 n 03 thinker 0 creative_thinker 0 mind 0 002 @ 09621545 n 0000 + 00628491 v 0101 | an important intellectual; "the great minds of the 17th century" -10708454 18 n 01 thinker 1 013 @ 09621545 n 0000 + 00628491 v 0101 ~ 09872996 n 0000 ~ 09926862 n 0000 ~ 10019733 n 0000 ~ 10068804 n 0000 ~ 10339504 n 0000 ~ 10383237 n 0000 ~ 10426184 n 0000 ~ 10458111 n 0000 ~ 10510339 n 0000 ~ 10536274 n 0000 ~ 10634316 n 0000 | someone who exercises the mind (usually in an effort to reach a decision) -10708797 18 n 03 thin_person 0 skin_and_bones 0 scrag 0 004 @ 00007846 n 0000 + 00990192 a 0301 ! 10082146 n 0103 ~ 10635907 n 0000 | a person who is unusually thin and scrawny -10708976 18 n 02 third_baseman 0 third_sacker 0 003 @ 10205457 n 0000 ;c 00471613 n 0000 ;c 00475787 n 0000 | (baseball) the person who plays third base -10709131 18 n 01 third_party 0 001 @ 09803429 n 0000 | someone other than the principals who are involved in a transaction -10709256 18 n 01 third-rater 0 001 @ 00007846 n 0000 | one who is third-rate or distinctly inferior -10709358 18 n 01 thoroughbred 0 001 @ 09605289 n 0000 | a well-bred person -10709435 18 n 01 thrall 0 002 @ 09865398 n 0000 ~ 10580535 n 0000 | someone held in bondage -10709529 18 n 01 thrower 0 006 @ 00007846 n 0000 + 01508368 v 0101 ~ 10413429 n 0000 ~ 10435988 n 0000 ~ 10611988 n 0000 ~ 10717055 n 0000 | someone who projects something (especially by a rapid motion of the arm) -10709745 18 n 02 throwster 0 thrower 2 001 @ 09632518 n 0000 | a person who twists silk or rayon filaments into a thread or yarn -10709876 18 n 01 thrush 0 002 @ 10599806 n 0000 ;u 07075172 n 0000 | a woman who sings popular songs -10709979 18 n 01 thunderbird 0 002 @ 09545324 n 0000 ;c 07978423 n 0000 | (mythology) the spirit of thunder and lightning believed by some Native Americans to take the shape of a great bird -10710171 18 n 01 thurifer 0 001 @ 09763349 n 0000 | an acolyte who carries a thurible -10710259 18 n 02 ticket_collector 0 ticket_taker 0 001 @ 10026553 n 0000 | someone who is paid to admit only those who have purchased tickets -10710403 18 n 02 tier 0 tier_up 0 002 @ 09632518 n 0000 + 01285440 v 0101 | a worker who ties something -10710509 18 n 01 tier 1 002 @ 10533013 n 0000 + 01115190 v 0101 | any one of two or more competitors who tie one another -10710632 18 n 01 tiger 0 001 @ 00007846 n 0000 | a fierce or audacious person; "he's a tiger on the tennis court"; "it aroused the tiger in me" -10710778 18 n 01 tight_end 0 002 @ 10056398 n 0000 ;c 00468480 n 0000 | (football) an offensive end who lines up close to the tackle -10710913 18 n 01 tiler 0 002 @ 09632518 n 0000 + 01338663 v 0101 | a worker who lays tile -10711005 18 n 01 tiller 0 002 @ 10078806 n 0000 + 01740608 v 0101 | someone who tills land (prepares the soil for the planting of crops) -10711144 18 n 01 tilter 0 002 @ 10533013 n 0000 + 01122906 v 0101 | someone who engages in a tilt or joust -10711253 18 n 01 timberman 0 001 @ 10388924 n 0000 | an owner or manager of a company that is engaged in lumbering -10711370 18 n 01 timekeeper 0 001 @ 09928451 n 0000 | a clerk who keeps track of the hours worked by employees -10711483 18 n 02 timekeeper 1 timer 0 003 @ 10372076 n 0000 ;c 00523513 n 0000 + 00490968 v 0202 | (sports) an official who keeps track of the time elapsed -10711641 18 n 01 timeserver 0 001 @ 10379376 n 0000 | one who conforms to current ways and opinions for personal advantage -10711766 18 n 01 Timorese 0 001 @ 09641757 n 0000 | a native or inhabitant of Timor -10711852 18 n 01 tinker 1 001 @ 10217831 n 0000 | formerly a person (traditionally a Gypsy) who traveled from place to place mending pots and kettles and other metal utensils as a way to earn a living -10712055 18 n 02 tinker 2 tinkerer 2 003 @ 09617696 n 0000 + 01473346 v 0204 + 01473346 v 0104 | a person who enjoys fixing and experimenting with machines and their parts -10712229 18 n 02 tinkerer 0 fiddler 1 003 @ 09632274 n 0000 + 00261314 v 0202 + 01473346 v 0104 | an unskilled person who tries to fix or mend -10712374 18 n 02 tinsmith 0 tinner 0 001 @ 10614812 n 0000 | someone who makes or repairs tinware -10712474 18 n 01 tinter 0 002 @ 10155849 n 0000 + 00286928 v 0101 | a hairdresser who tints hair -10712573 18 n 01 tipper 0 002 @ 10025730 n 0000 + 02202133 v 0101 | a person who leaves a tip; "a generous tipper" -10712690 18 n 02 tippler 0 social_drinker 0 002 @ 10034201 n 0000 + 01172114 v 0101 | someone who drinks liquor repeatedly in small quantities -10712835 18 n 02 tipster 0 tout 1 003 @ 09774266 n 0000 + 06651577 n 0101 ~ 10502762 n 0000 | one who sells advice about gambling or speculation (especially at the racetrack) -10713012 18 n 01 tither 0 003 @ 10409752 n 0000 + 02252755 v 0101 + 02252542 v 0101 | someone who pays tithes -10713124 18 n 02 titterer 0 giggler 0 003 @ 10248876 n 0000 + 00030142 v 0201 + 00030142 v 0102 | a person who laughs nervously -10713254 18 n 01 T-man 0 001 @ 10133644 n 0000 | a special law-enforcement agent of the United States Treasury -10713367 18 n 01 toast 0 001 @ 09903153 n 0000 | a celebrity who receives much acclaim and attention; "he was the toast of the town" -10713502 18 n 02 toaster 0 wassailer 1 002 @ 10677713 n 0000 + 01175467 v 0205 | someone who proposes a toast; someone who drinks to the health of success of someone or some venture -10713686 18 n 02 toastmaster 0 symposiarch 0 002 @ 10299250 n 0000 ~ 10713843 n 0000 | the person who proposes toasts and introduces speakers at a banquet -10713843 18 n 01 toast_mistress 0 001 @ 10713686 n 0000 | a woman toastmaster -10713923 18 n 01 tobacconist 0 002 @ 10592152 n 0000 + 04442831 n 0101 | a retail dealer in tobacco and tobacco-related articles -10714054 18 n 01 Tobagonian 0 002 @ 10774440 n 0000 #m 08756052 n 0000 | a native or inhabitant of the island of Tobago in the West Indies -10714195 18 n 01 tobogganist 0 003 @ 10610333 n 0000 + 04443433 n 0101 + 01940034 v 0101 | someone who rides a toboggan -10714317 18 n 02 Todd 1 Sweeney_Todd 0 001 @i 09587565 n 0000 | fictional character in a play by George Pitt; a barber who murdered his customers -10714465 18 n 04 toddler 0 yearling 0 tot 0 bambino 0 002 @ 09917593 n 0000 + 01918803 v 0101 | a young child -10714577 18 n 02 toff 0 nob 0 001 @ 10292052 n 0000 | informal term for an upper-class or wealthy person -10714684 18 n 07 tollkeeper 0 tollman 0 tollgatherer 0 toll_collector 0 toll_taker 0 toll_agent 0 toller 0 001 @ 10053808 n 0000 | someone employed to collect tolls -10714851 18 n 03 toller 1 bell_ringer 1 ringer 2 003 @ 10596899 n 0000 + 02181538 v 0301 + 02181973 v 0101 | a person who rings church bells (as for summoning the congregation) -10715030 18 n 03 tomboy 0 romp 0 hoyden 0 001 @ 10129825 n 0000 | a girl who behaves in a boyish manner -10715136 18 n 01 Tom_Thumb 0 001 @ 10613505 n 0000 | a very small person -10715211 18 n 01 Tom_Thumb 1 001 @i 09483738 n 0000 | an imaginary hero of English folklore who was no taller than his father's thumb -10715347 18 n 01 toolmaker 0 001 @ 10284064 n 0000 | someone skilled in making or repairing tools -10715447 18 n 01 top_banana 0 001 @ 09940146 n 0000 | the leading comedian in a burlesque show -10715544 18 n 01 topper 0 002 @ 09632518 n 0000 + 01321509 v 0101 | a worker who cuts tops off (of trees or vegetables etc.) -10715671 18 n 01 topper 1 002 @ 09632518 n 0000 + 02360497 v 0101 | a worker who makes or adds the top to something -10715789 18 n 01 torchbearer 0 001 @ 09623038 n 0000 | a leader in a campaign or movement -10715881 18 n 01 torch_singer 0 001 @ 10599806 n 0000 | a singer (usually a woman) who specializes in singing torch songs -10716005 18 n 03 tormentor 0 tormenter 0 persecutor 0 011 @ 10379758 n 0000 + 02585489 v 0301 + 01803003 v 0201 + 00071178 v 0203 + 01802689 v 0201 + 01803003 v 0101 + 01802689 v 0101 ~ 10161178 n 0000 ~ 10419630 n 0000 ~ 10690849 n 0000 ~ 10784675 n 0000 | someone who torments -10716286 18 n 02 tort-feasor 0 tortfeasor 0 001 @ 10402824 n 0000 | a party who has committed a tort -10716389 18 n 01 torturer 0 004 @ 10379758 n 0000 + 01802689 v 0102 + 00071178 v 0101 ~ 10096964 n 0000 | someone who inflicts severe physical pain (usually for punishment or coercion) -10716576 18 n 01 Tory 1 001 @ 09738708 n 0000 | an American who favored the British side during the American Revolution -10716698 18 n 01 Tory 0 001 @ 10531227 n 0000 | a supporter of traditional political and social institutions against the forces of reform; a political conservative -10716864 18 n 01 Tory 2 001 @ 09701603 n 0000 | a member of political party in Great Britain that has been known as the Conservative Party since 1832; was the opposition party to the Whigs -10717055 18 n 01 tosser 0 003 @ 10709529 n 0000 + 01893079 v 0102 + 01512625 v 0102 | someone who throws lightly (as with the palm upward) -10717196 18 n 03 tosser 1 jerk-off 0 wanker 0 003 @ 10299700 n 0000 + 01430633 v 0302 + 01430633 v 0206 | terms of abuse for a masturbator -10717337 18 n 01 totalitarian 0 001 @ 10016103 n 0000 | an adherent of totalitarian principles or totalitarian government -10717461 18 n 01 totemist 0 002 @ 00007846 n 0000 #m 08372574 n 0000 | a person who belongs to a clan or tribe having a totem -10717589 18 n 01 toucher 0 003 @ 00007846 n 0000 + 01206849 v 0101 + 01206218 v 0101 | a person who causes or allows a part of the body to come in contact with someone or something -10717772 18 n 01 touch-typist 0 002 @ 10735173 n 0000 + 01005782 v 0101 | a skilled typist who can type a document without looking at the keyboard -10717921 18 n 02 tough_guy 0 plug-ugly 0 002 @ 09879297 n 0000 ~ 10697135 n 0000 | someone who bullies weaker people -10718040 18 n 01 tour_guide 0 001 @ 10151570 n 0000 | a guide who leads others on a tour -10718131 18 n 03 tourist 0 tourer 0 holidaymaker 0 007 @ 09629752 n 0000 + 01845229 v 0201 + 01816696 a 0102 + 00310666 n 0101 + 00298161 n 0101 + 01845229 v 0101 ~ 10596689 n 0000 | someone who travels for pleasure -10718349 18 n 02 tout 0 touter 0 003 @ 09773962 n 0000 + 00971460 v 0201 + 00971460 v 0101 | someone who advertises for customers in an especially brazen way -10718509 18 n 02 tout 2 ticket_tout 0 002 @ 10554846 n 0000 ;r 08860123 n 0000 | someone who buys tickets to an event in order to resell them at a profit -10718665 18 n 02 tovarich 0 tovarisch 0 002 @ 09945905 n 0000 ;r 09003284 n 0000 | a comrade (especially in Russian communism) -10718794 18 n 02 tower_of_strength 0 pillar_of_strength 0 001 @ 10407954 n 0000 | a person who can be relied on to give a great deal of support and comfort -10718952 18 n 01 towhead 0 001 @ 09860506 n 0000 | a person with light blond hair -10719036 18 n 01 town_clerk 0 001 @ 10372373 n 0000 | the official who keeps a town's records -10719132 18 n 02 town_crier 0 crier 0 002 @ 09795334 n 0000 + 00974786 v 0201 | (formerly) an official who made public announcements -10719267 18 n 02 townsman 1 towner 0 003 @ 10523519 n 0000 ~ 10719395 n 0000 ~ 10719573 n 0000 | a resident of a town or city -10719395 18 n 01 townee 0 003 @ 10719267 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 | townsman unacquainted with country life especially a slick and flashy male city dweller -10719573 18 n 02 townie 0 towny 0 001 @ 10719267 n 0000 | resident of a college town not affiliated with the college -10719692 18 n 01 townsman 0 001 @ 09626238 n 0000 | a person from the same town as yourself; "a fellow townsman" -10719807 18 n 01 toxicologist 0 003 @ 10306004 n 0000 + 06064462 n 0101 ~i 11025926 n 0000 | one who studies the nature and effects of poisons and their treatment -10719972 18 n 01 tracer 0 001 @ 10009276 n 0000 | an investigator who is employed to find missing persons or missing goods -10720097 18 n 01 tracker 0 002 @ 10193026 n 0000 + 02001858 v 0109 | someone who tracks down game -10720197 18 n 01 track_star 0 001 @ 09762509 n 0000 | a star runner -10720267 18 n 01 Tractarian 0 001 @ 09678009 n 0000 | a follower of Tractarianism and supporter of the Oxford movement (which was expounded in pamphlets called `Tracts for the Times') -10720453 18 n 04 trader 0 bargainer 0 dealer 2 monger 0 021 @ 10309896 n 0000 + 02302817 v 0402 + 08060193 n 0302 + 02244956 v 0301 + 02260362 v 0101 ~ 09810983 n 0000 ~ 09841400 n 0000 ~ 09852826 n 0000 ~ 09913741 n 0000 ~ 09968128 n 0000 ~ 09985207 n 0000 ~ 10032190 n 0000 ~ 10085101 n 0000 ~ 10093818 n 0000 ~ 10186068 n 0000 ~ 10216690 n 0000 ~ 10309785 n 0000 ~ 10575705 n 0000 ~ 10612518 n 0000 ~ 10647359 n 0000 ~ 10657835 n 0000 | someone who purchases and maintains an inventory of goods to be sold -10720964 18 n 03 trade_unionist 0 unionist 0 union_member 0 003 @ 09632518 n 0000 + 08473482 n 0201 + 08233056 n 0103 | a worker who belongs to a trade union -10721124 18 n 02 traditionalist 0 diehard 0 006 @ 09957156 n 0000 + 02647497 v 0203 + 00611754 a 0101 + 04801877 n 0101 + 01213702 n 0101 ~ 10532479 n 0000 | one who adheres to traditional views -10721321 18 n 01 traffic_cop 0 003 @ 10448983 n 0000 ~ 09980658 n 0000 ~ 10448322 n 0000 | a policeman who controls the flow of automobile traffic -10721470 18 n 01 dealer 0 003 @ 10577284 n 0000 + 02245993 v 0101 ~ 10495555 n 0000 | a seller of illicit goods; "a dealer in stolen goods" -10721612 18 n 01 tragedian 1 001 @ 09765278 n 0000 | an actor who specializes in tragic roles -10721708 18 n 01 tragedian 2 001 @ 10794014 n 0000 | a writer (especially a playwright) who writes tragedies -10721819 18 n 01 tragedienne 0 001 @ 09767700 n 0000 | an actress who specializes in tragic roles -10721919 18 n 01 trailblazer 0 001 @ 10562749 n 0000 | someone who marks a trail by leaving blazes on trees -10722029 18 n 01 trail_boss 0 001 @ 10676877 n 0000 | the person responsible for driving a herd of cattle -10722137 18 n 01 trainbandsman 0 002 @ 10317717 n 0000 #m 08285719 n 0000 | a member of a trainband -10722239 18 n 01 trainbearer 0 002 @ 09821831 n 0000 #m 08256735 n 0000 | one who holds up the train of a gown or robe on a ceremonial occasion -10722385 18 n 01 trainee 0 007 @ 10363913 n 0000 + 13267816 n 0101 + 00602805 v 0101 + 02553697 v 0102 + 02387034 v 0103 + 00603298 v 0101 ~ 09886540 n 0000 | someone who is being trained -10722575 18 n 01 trainer 0 006 @ 09623038 n 0000 + 02387034 v 0103 + 00833702 v 0102 + 00603298 v 0101 ~ 09931640 n 0000 ~ 10159045 n 0000 | one who trains other persons or animals -10722758 18 n 05 trainman 0 railroader 0 railroad_man 0 railwayman 0 railway_man 0 005 @ 10053808 n 0000 ~ 09873135 n 0000 ~ 10597091 n 0000 ~ 10802953 n 0000 ~ 10803031 n 0000 | an employee of a railroad -10722965 18 n 02 traitor 0 treasonist 0 009 @ 09977660 n 0000 + 04879658 n 0201 + 00749767 n 0203 + 00782072 n 0201 + 00962939 a 0102 ~ 09935793 n 0000 ~ 10087255 n 0000 ~ 10723230 n 0000 ~i 10823529 n 0000 | someone who betrays his country by committing treason -10723230 18 n 01 traitress 0 001 @ 10722965 n 0000 | female traitor -10723300 18 n 03 tramp 0 hobo 0 bum 1 002 @ 10744544 n 0000 ~ 10026976 n 0000 | a disreputable vagrant; "a homeless tramp"; "he tried to help the really down-and-out bums" -10723474 18 n 01 trampler 1 003 @ 09831962 n 0000 + 01867504 v 0102 + 00070439 v 0101 | someone who injures by trampling -10723597 18 n 01 transactor 0 002 @ 09882007 n 0000 + 02245765 v 0101 | someone who conducts or carries on business or negotiations -10723731 18 n 01 transalpine 0 002 @ 10103921 n 0000 + 00410668 a 0101 | one living on or coming from the other side of the Alps from Italy -10723873 18 n 01 transcendentalist 0 002 @ 10423589 n 0000 + 06192186 n 0101 | advocate of transcendentalism -10723984 18 n 01 transcriber 0 003 @ 10801291 n 0000 + 00994895 v 0101 + 00995103 v 0101 | someone who makes a written version of spoken material -10724132 18 n 01 transcriber 1 002 @ 10426454 n 0000 + 00994895 v 0101 | someone who represents the sounds of speech in phonetic notation -10724272 18 n 01 transcriber 4 001 @ 10801291 n 0000 | someone who rewrites in a different script -10724372 18 n 02 transfer 0 transferee 0 002 @ 00007846 n 0000 + 02393086 v 0101 | someone who transfers or is transferred from one position to another; "the best student was a transfer from LSU" -10724570 18 n 01 transferee 1 002 @ 09627906 n 0000 ;c 08441203 n 0000 | (law) someone to whom a title or property is conveyed -10724699 18 n 02 transferer 0 transferrer 0 012 @ 10335931 n 0000 + 02232190 v 0201 + 02220461 v 0201 + 01855155 v 0202 + 02086458 v 0202 + 02012344 v 0201 + 01435380 v 0202 + 02220461 v 0101 + 01855155 v 0102 + 02086458 v 0102 + 01435380 v 0102 ~ 10724999 n 0000 | someone who transfers something -10724999 18 n 01 transferor 0 003 @ 10724699 n 0000 ;c 08441203 n 0000 + 02220461 v 0101 | (law) someone who conveys a title or property to another -10725149 18 n 01 transient 0 002 @ 09629752 n 0000 + 01756292 a 0104 | one who stays for only a short time; "transient laborers" -10725280 18 n 02 translator 1 transcriber 3 002 @ 10264219 n 0000 + 00959827 v 0101 | a person who translates written messages from one language to another -10725438 18 n 01 transmigrante 0 002 @ 09720256 n 0000 @ 10411551 n 0000 | a Latin American who buys used goods in the United States and takes them to Latin America to sell -10725613 18 n 01 transplanter 0 002 @ 10120533 n 0000 + 01855155 v 0101 | a gardener who moves plants to new locations -10725734 18 n 02 transsexual 0 transexual 0 002 @ 00007846 n 0000 + 01202634 a 0101 | a person whose sexual identification is entirely with the opposite sex -10725893 18 n 02 transsexual 2 transexual 2 002 @ 09606527 n 0000 + 01202634 a 0101 | a person who has undergone a sex change operation -10726031 18 n 02 transvestite 0 cross-dresser 0 004 @ 00007846 n 0000 + 00051637 v 0201 + 01202813 a 0101 + 01202813 a 0102 | someone who adopts the dress or manner or sexual role of the opposite sex -10726233 18 n 01 trapper 0 003 @ 10193026 n 0000 + 01480770 v 0101 ~ 09971595 n 0000 | someone who sets traps for animals (usually to obtain their furs) -10726388 18 n 02 Trappist 0 Cistercian 0 001 @ 10112129 n 0000 | member of an order of monks noted for austerity and a vow of silence -10726524 18 n 01 trapshooter 0 001 @ 10593115 n 0000 | a person who engages in shooting at clay pigeons that are hurled into the air by a trap -10726669 18 n 01 travel_agent 0 001 @ 09777012 n 0000 | someone who sells or arranges trips or tours for customers -10726786 18 n 06 traveling_salesman 0 travelling_salesman 0 commercial_traveler 0 commercial_traveller 0 roadman 0 bagman 1 003 @ 10548537 n 0000 @ 10638385 n 0000 ~ 10690421 n 0000 | a salesman who travels to call on customers -10727016 18 n 01 traverser 0 002 @ 10335931 n 0000 + 01912159 v 0101 | someone who moves or passes across; "the traversers slowly ascended the mountain" -10727171 18 n 01 trawler 0 001 @ 10093658 n 0000 | a fisherman who use a trawl net -10727256 18 n 02 treasurer 0 financial_officer 0 005 @ 09624980 n 0000 + 00605246 n 0101 ~ 09881265 n 0000 ~ 09906195 n 0000 ~ 10652605 n 0000 | an officer charged with receiving and disbursing funds -10727458 18 n 02 Treasury 0 First_Lord_of_the_Treasury 0 002 @ 09886010 n 0000 #m 08382056 n 0000 | the British cabinet minister responsible for economic strategy -10727623 18 n 01 tree_hugger 0 002 @ 10060621 n 0000 ;u 06717170 n 0000 | derogatory term for environmentalists who support restrictions on the logging industry and the preservation of forests -10727818 18 n 02 tree_surgeon 0 arborist 0 002 @ 10631941 n 0000 + 13107891 n 0201 | a specialist in treating damaged trees -10727944 18 n 01 trekker 0 003 @ 09629752 n 0000 + 01847392 v 0101 + 01847220 v 0101 | a traveler who makes a long arduous journey (as hiking through mountainous country) -10728117 18 n 01 trencher 0 003 @ 10012989 n 0000 + 01311896 v 0101 + 01311722 v 0101 | someone who digs trenches -10728233 18 n 03 trend-setter 0 taste-maker 0 fashion_arbiter 0 001 @ 10324851 n 0000 | someone who popularizes a new fashion -10728361 18 n 02 trial_attorney 0 trial_lawyer 0 002 @ 10249950 n 0000 ;c 08441203 n 0000 | a lawyer who specializes in defending clients before a court of law -10728523 18 n 01 trial_judge 0 002 @ 10225219 n 0000 ;c 08441203 n 0000 | a judge in a trial court -10728624 18 n 01 tribesman 0 002 @ 10307234 n 0000 #m 07969695 n 0000 | someone who lives in a tribe -10728727 18 n 01 tribologist 0 002 @ 10304650 n 0000 + 06135095 n 0101 | a specialist in tribology -10728828 18 n 01 tribune 0 003 @ 09614684 n 0000 ;r 08806897 n 0000 ;c 15253139 n 0000 | (ancient Rome) an official elected by the plebeians to protect their interests -10728998 18 n 03 trier 1 attempter 0 essayer 0 006 @ 00007846 n 0000 + 02530167 v 0304 + 02530167 v 0203 + 02531625 v 0103 + 02530167 v 0101 + 01195299 v 0102 | one who tries -10729175 18 n 01 trier 2 004 @ 10225219 n 0000 ;c 08441203 n 0000 + 02501278 v 0103 + 02500902 v 0102 | one (as a judge) who examines and settles a case -10729330 18 n 01 trifler 0 002 @ 10197967 n 0000 + 02592895 v 0102 | one who behaves lightly or not seriously -10729442 18 n 01 trigonometrician 0 002 @ 10301261 n 0000 + 06012513 n 0101 | a mathematician specializing in trigonometry -10729567 18 n 01 Trilby 0 001 @i 09587565 n 0000 | singer in a novel by George du Maurier who was under the control of the hypnotist Svengali -10729711 18 n 01 Trinidadian 0 001 @ 09620078 n 0000 | inhabitant or native of Trinidad -10729801 18 n 01 triplet 0 001 @ 10595164 n 0000 | one of three offspring born at the same time from the same pregnancy -10729923 18 n 01 tripper 2 002 @ 10036266 n 0000 ;u 07157273 n 0000 | (slang) someone who has taken a psychedelic drug and is undergoing hallucinations -10730077 18 n 01 tritheist 0 002 @ 09628382 n 0000 + 06224439 n 0101 | someone (not an orthodox Christian) who believes that the Father and Son and Holy Ghost are three separate gods -10730262 18 n 01 triumvir 0 001 @ 09770472 n 0000 | one of a group of three sharing public administration or civil authority especially in ancient Rome -10730416 18 n 02 trombonist 0 trombone_player 0 002 @ 10340312 n 0000 + 04487394 n 0101 | a musician who plays the trombone -10730542 18 n 01 trooper 0 001 @ 10448983 n 0000 | a mounted policeman -10730615 18 n 01 trouper 1 001 @ 10138767 n 0000 | a person who is reliable and uncomplaining and hard working -10730728 18 n 02 trooper 2 state_trooper 0 001 @ 10448983 n 0000 | a state police officer -10730820 18 n 01 trophy_wife 0 001 @ 10780632 n 0000 | a wife who is an attractive young woman; seldom the first wife of an affluent older man; "his trophy wife was an asset to his business" -10731013 18 n 03 Trotskyite 0 Trotskyist 0 Trot 0 003 @ 10503452 n 0000 + 11349318 n 0201 + 06215977 n 0201 | radicals who support Trotsky's theory that socialism must be established throughout the world by continuing revolution -10731244 18 n 05 troublemaker 0 trouble_maker 0 troubler 0 mischief-maker 0 bad_hat 0 010 @ 09631129 n 0000 ~ 09778783 n 0000 ~ 10018373 n 0000 ~ 10167565 n 0000 ~ 10169419 n 0000 ~ 10169607 n 0000 ~ 10209246 n 0000 ~ 10274318 n 0000 ~ 10463714 n 0000 ~ 10532058 n 0000 | someone who deliberately stirs up trouble -10731560 18 n 02 troubleshooter 0 trouble_shooter 0 001 @ 10521100 n 0000 | a worker whose job is to locate and fix sources of trouble (especially in mechanical devices) -10731732 18 n 02 truant 0 hooky_player 0 001 @ 09757653 n 0000 | one who is absent from school without permission -10731848 18 n 03 trudger 0 plodder 2 slogger 2 003 @ 10412055 n 0000 + 01921204 v 0203 + 01921204 v 0104 | someone who walks in a laborious heavy-footed manner -10732010 18 n 02 trumpeter 0 cornetist 0 006 @ 10340312 n 0000 + 03110669 n 0201 + 01733829 v 0101 ~ 09878179 n 0000 ~i 10823199 n 0000 ~i 11000012 n 0000 | a musician who plays the trumpet or cornet -10732212 18 n 01 trustbuster 0 001 @ 10373801 n 0000 | a federal agent who engages in trust busting -10732314 18 n 02 trustee 0 legal_guardian 0 003 @ 10086074 n 0000 ;c 08441203 n 0000 + 02349212 v 0103 | a person (or institution) to whom legal title to property is entrusted to use for another's benefit -10732521 18 n 01 trusty 0 001 @ 09962966 n 0000 | a convict who is considered trustworthy and granted special privileges -10732644 18 n 01 tub-thumper 0 001 @ 10380672 n 0000 | a noisy and vigorous or ranting public speaker -10732748 18 n 01 tucker 0 003 @ 10584318 n 0000 + 01330822 v 0103 + 01390327 v 0101 | a sewer who tucks -10732854 18 n 01 Tudor 1 002 @ 10541229 n 0000 #m 08159031 n 0000 | a member of the dynasty that ruled England -10732967 18 n 01 tumbler 0 003 @ 10153594 n 0000 + 00100235 v 0101 ~ 10733574 n 0000 | a gymnast who performs rolls and somersaults and twists etc. -10733117 18 n 02 tuner 0 piano_tuner 0 002 @ 10605985 n 0000 + 00295346 v 0101 | someone who tunes pianos -10733225 18 n 01 turncock 0 001 @ 10053808 n 0000 | one employed to control water supply by turning water mains on and off -10733350 18 n 01 turner 0 001 @ 00007846 n 0000 | one of two persons who swing ropes for jumpers to skip over in the game of jump rope -10733487 18 n 01 turner 1 002 @ 10605985 n 0000 + 01584450 v 0101 | a lathe operator -10733574 18 n 01 turner 2 003 @ 10732967 n 0000 #m 08230679 n 0000 + 02562425 v 0101 | a tumbler who is a member of a turnverein -10733705 18 n 01 turtler 0 002 @ 10605985 n 0000 + 01142363 v 0101 | someone whose occupation is hunting turtles -10733820 18 n 01 tutee 0 001 @ 10251779 n 0000 | learns from a tutor -10733891 18 n 02 tv_announcer 0 television_announcer 0 001 @ 09795124 n 0000 | an announcer on television -10733999 18 n 01 twaddler 0 002 @ 09610660 n 0000 + 01036804 v 0106 | someone who twaddles; someone who writes or talks twaddle -10734129 18 n 03 twerp 0 twirp 0 twit 0 001 @ 10599354 n 0000 | someone who is regarded as contemptible -10734235 18 n 02 twiddler 0 fiddler 2 003 @ 10291110 n 0000 + 01586278 v 0202 + 01224211 v 0101 | someone who manipulates in a nervous or unconscious manner -10734394 18 n 01 twin 0 004 @ 10595164 n 0000 + 00057665 v 0101 ~ 10109197 n 0000 ~ 10197182 n 0000 | either of two offspring born at the same time from the same pregnancy -10734568 18 n 01 twiner 0 003 @ 09632518 n 0000 + 01518047 v 0101 + 01517662 v 0102 | someone who intertwines (e.g. threads) or forms something by twisting or interlacing -10734741 18 n 01 two-timer 1 001 @ 09998101 n 0000 | someone who deceives a lover or spouse by carrying on a sexual relationship with somebody else -10734891 18 n 01 Tyke 0 001 @ 09701148 n 0000 | a native of Yorkshire -10734963 18 n 02 tympanist 0 timpanist 0 007 @ 10036929 n 0000 + 03612965 n 0205 + 03612965 n 0204 + 03612965 n 0203 + 03612965 n 0104 + 03612965 n 0103 + 03249569 n 0103 | a person who plays the kettledrums -10735173 18 n 01 typist 0 003 @ 10053808 n 0000 + 01004692 v 0101 ~ 10717772 n 0000 | someone paid to operate a typewriter -10735298 18 n 03 tyrant 0 autocrat 0 despot 0 010 @ 10011902 n 0000 + 00718137 a 0301 + 00717684 a 0304 + 02711292 a 0301 + 02711292 a 0302 + 00717684 a 0202 + 00788474 a 0103 + 02587239 v 0101 + 01781757 v 0101 ~ 09987161 n 0000 | a cruel and oppressive dictator -10735564 18 n 01 tyrant 1 002 @ 00007846 n 0000 + 00788474 a 0103 | any person who exercises power in a cruel way; "his father was a tyrant" -10735707 18 n 01 tyrant 2 002 @ 10541229 n 0000 ~i 10936424 n 0000 | in ancient Greece, a ruler who had seized power without legal right to it -10735852 18 n 01 ugly_duckling 0 001 @ 09606527 n 0000 | an ugly or unpromising child who grows into a beautiful or worthy person -10735984 18 n 02 umpire 0 ump 0 002 @ 10372076 n 0000 + 01085237 v 0102 | an official at a baseball game -10736091 18 n 01 uncle 0 004 @ 10236946 n 0000 + 02654548 a 0101 ! 09823502 n 0101 ~ 10146209 n 0000 | the brother of your father or mother; the husband of your aunt -10736259 18 n 01 uncle 1 001 @ 09608709 n 0000 | a source of help and advice and encouragement; "he played uncle to lonely students" -10736394 18 n 03 underachiever 0 underperformer 0 nonachiever 0 003 @ 10665698 n 0000 + 02562585 v 0202 + 02562585 v 0101 | a student who does not perform as well as expected or as well as the IQ indicates -10736602 18 n 02 undergraduate 0 undergrad 0 004 @ 09937056 n 0000 ~ 09934213 n 0000 ~ 10274815 n 0000 ~ 10579062 n 0000 | a university student who has not yet received a first degree -10736788 18 n 01 undersecretary 0 001 @ 10570019 n 0000 | a secretary immediately subordinate to the head of a department of government -10736926 18 n 01 underseller 0 002 @ 10577284 n 0000 + 02351467 v 0101 | a seller that sells at a lower price than others do; "he went all over town looking for undersellers" -10737103 18 n 02 understudy 0 standby 0 003 @ 09765278 n 0000 + 02638444 v 0201 + 00604930 v 0101 | an actor able to replace a regular performer when required -10737264 18 n 01 undesirable 0 002 @ 09631129 n 0000 + 00733905 a 0101 | one whose presence is undesirable; "rounding up vagrants and drunks and other undesirables" -10737431 18 n 04 undoer 1 opener 0 unfastener 0 untier 0 007 @ 00007846 n 0000 + 01284908 v 0401 + 01284461 v 0401 + 01344293 v 0301 + 01346003 v 0201 + 01284271 v 0102 + 01284908 v 0102 | a person who unfastens or unwraps or opens; "children are talented undoers of their shoelaces" -10737717 18 n 01 undoer 2 002 @ 10575089 n 0000 + 02559199 v 0101 | a seducer who ruins a woman; "she awoke in the arms of her cruel undoer" -10737860 18 n 01 unemployed_person 0 002 @ 09626031 n 0000 ~ 10192704 n 0000 | someone who is jobless -10737964 18 n 01 unicorn 0 001 @ 09483738 n 0000 | an imaginary creature represented as a white horse with a long horn growing from its forehead -10738111 18 n 01 unicyclist 0 002 @ 10411163 n 0000 + 04509417 n 0101 | a person who rides a unicycle -10738215 18 n 01 unilateralist 0 002 @ 09774783 n 0000 + 05963744 n 0101 | an advocate of unilateralism -10738321 18 n 01 uniocular_dichromat 0 001 @ 10011659 n 0000 | a person who has normal vision in one eye and dichromacy in the other; very rare but very useful for experiments on color vision -10738515 18 n 01 union_representative 0 004 @ 10522035 n 0000 ~ 10383505 n 0000 ~ 10592811 n 0000 ~ 10764465 n 0000 | a representative for a labor union -10738670 18 n 01 Unitarian 0 003 @ 10016103 n 0000 #m 08092040 n 0000 + 02955996 a 0101 | adherent of Unitarianism -10738787 18 n 01 Trinitarian 0 001 @ 10016103 n 0000 | adherent of Trinitarianism -10738871 18 n 01 Arminian 0 002 @ 10016103 n 0000 #m 08092190 n 0000 | adherent of Arminianism -10738968 18 n 02 universal_agent 0 general_agent 0 002 @ 09777353 n 0000 ! 10631765 n 0201 | someone authorized to transact every kind of business for the principal -10739135 18 n 01 universal_donor 0 001 @ 09860813 n 0000 | a person whose type O Rh-negative blood may be safely transfused into persons with other blood types -10739297 18 n 01 UNIX_guru 0 001 @ 09950917 n 0000 | an expert on the UNIX operating system -10739391 18 n 01 Unknown_Soldier 0 001 @ 10622053 n 0000 | an unidentified soldier whose body is honored as a memorial -10739512 18 n 01 unmarried_woman 0 003 @ 10787470 n 0000 ~ 10598181 n 0000 ~ 10636488 n 0000 | a woman who is not married -10739636 18 n 02 unpleasant_woman 0 disagreeable_woman 0 008 @ 09631463 n 0000 ~ 09832321 n 0000 ~ 09972587 n 0000 ~ 10029729 n 0000 ~ 10114209 n 0000 ~ 10587536 n 0000 ~ 10594147 n 0000 ~ 10758337 n 0000 | a woman who is an unpleasant person -10739881 18 n 02 untouchable 0 Harijan 0 002 @ 10386312 n 0000 + 00428243 a 0101 | belongs to lowest social and ritual class in India -10740017 18 n 04 upbraider 0 reprover 0 reproacher 0 rebuker 0 005 @ 09824609 n 0000 + 00824767 v 0403 + 00825975 v 0301 + 00824066 v 0202 + 00825975 v 0102 | someone who finds fault or imputes blame -10740219 18 n 03 upholder 0 maintainer 0 sustainer 0 005 @ 10677713 n 0000 + 02679530 v 0302 + 02681795 v 0202 + 02679899 v 0102 + 00896497 v 0101 | someone who upholds or maintains; "firm upholders of tradition"; "they are sustainers of the idea of democracy" -10740482 18 n 01 upholsterer 0 002 @ 09974648 n 0000 + 02341816 v 0101 | a craftsman who upholsters furniture -10740594 18 n 01 upsetter 0 002 @ 10782940 n 0000 + 01109087 v 0101 | an unexpected winner; someone who defeats the favorite competitor -10740732 18 n 01 upstager 0 003 @ 09765278 n 0000 + 02086100 v 0101 + 01107024 v 0101 | a selfish actor who upstages the other actors -10740868 18 n 04 upstart 0 parvenu 0 nouveau-riche 0 arriviste 0 005 @ 09631463 n 0000 + 01850862 a 0301 + 01850862 a 0202 ~ 10618685 n 0000 ~ 10784281 n 0000 | a person who has suddenly risen to a higher economic status but has not gained social acceptance of others in that class -10741152 18 n 01 upstart 1 002 @ 09631463 n 0000 ~ 10784113 n 0000 | an arrogant or presumptuous person -10741258 18 n 01 urban_guerrilla 0 001 @ 10150556 n 0000 | a guerrilla who fights only in cities and towns -10741367 18 n 01 urchin 0 003 @ 09917593 n 0000 ~ 10504664 n 0000 ~ 10662952 n 0000 | poor and often mischievous city child -10741493 18 n 01 urologist 0 002 @ 10632576 n 0000 + 06065208 n 0101 | a specialist in urology -10741590 18 n 01 user 0 007 @ 00007846 n 0000 + 01158872 v 0101 ~ 09612848 n 0000 ~ 10057491 n 0000 ~ 10742269 n 0000 ~ 10743124 n 0000 ~ 10771809 n 0000 | a person who makes use of a thing; someone who uses or employs something -10741821 18 n 02 usher 0 guide 0 006 @ 10063461 n 0000 + 01999798 v 0205 + 01931768 v 0208 + 10742005 n 0101 + 02000547 v 0101 ~ 10742005 n 0000 | someone employed to conduct others -10742005 18 n 01 usherette 0 003 @ 10741821 n 0000 + 10742111 n 0101 + 10741821 n 0101 | a female usher -10742111 18 n 02 usher 2 doorkeeper 1 002 @ 10372373 n 0000 + 10742005 n 0101 | an official stationed at the entrance of a courtroom or legislative chamber -10742269 18 n 01 usufructuary 0 002 @ 10741590 n 0000 + 02821586 a 0101 | someone who holds property by usufruct -10742384 18 n 04 usurer 0 loan_shark 0 moneylender 0 shylock 1 002 @ 10254392 n 0000 @ 10586674 n 0000 | someone who lends money at excessive rates of interest -10742546 18 n 02 usurper 0 supplanter 0 004 @ 09633969 n 0000 + 02405390 v 0201 + 02274482 v 0102 ~ 09925824 n 0000 | one who wrongfully or illegally seizes and holds the place of another -10742736 18 n 01 utilitarian 0 002 @ 10330931 n 0000 + 01090820 a 0101 | someone who believes that the value of a thing depends on its utility -10742881 18 n 01 utility_man 0 001 @ 10791221 n 0000 | a workman expected to serve in any capacity when called on -10742997 18 n 01 utility_man 1 001 @ 09835506 n 0000 | a baseball player valued for the ability to play at several positions -10743124 18 n 02 utilizer 0 utiliser 0 002 @ 10741590 n 0000 + 01158872 v 0102 | someone who puts to good use; "not all organisms are utilizers of oxygen"; "the social agencies and their utilizers both objected to the budget cut" -10743356 18 n 01 Utopian 0 002 @ 10515194 n 0000 + 02497938 a 0101 | an idealistic (but usually impractical) social reformer; "a Utopian believes in the ultimate perfectibility of man" -10743543 18 n 01 utterer 1 002 @ 09998101 n 0000 + 02043851 v 0101 | someone who circulates forged banknotes or counterfeit coins -10743675 18 n 03 utterer 2 vocalizer 1 vocaliser 1 006 @ 00004475 n 0000 + 00952182 v 0304 + 00745187 v 0201 + 00952182 v 0203 + 00983824 v 0101 + 00940384 v 0104 | an organism that can utter vocal sounds; "an utterer of foul oaths"; "is the giraffe a vocalizer?" -10743941 18 n 02 uxor 0 ux. 0 003 @ 10780632 n 0000 ;c 08441203 n 0000 + 01735475 a 0103 | (legal terminology) the Latin word for wife -10744078 18 n 01 uxoricide 0 001 @ 10193967 n 0000 | a husband who murders his wife -10744164 18 n 02 vacationer 0 vacationist 0 008 @ 09626031 n 0000 + 15137890 n 0201 + 02708707 v 0201 + 02708707 v 0101 ~ 09889941 n 0000 ~ 10639238 n 0000 ~ 10674592 n 0000 ~ 10772472 n 0000 | someone on vacation; someone who is devoting time to pleasure or relaxation rather than to work -10744456 18 n 01 vaccinee 0 001 @ 10405694 n 0000 | a patient who has been vaccinated -10744544 18 n 04 vagrant 0 drifter 0 floater 1 vagabond 1 009 @ 10765679 n 0000 @ 10453357 n 0000 + 02127159 a 0404 + 01881180 v 040c + 01881180 v 020b + 02127159 a 0105 ~ 09844685 n 0000 ~ 10675142 n 0000 ~ 10723300 n 0000 | a wanderer who has no established residence or visible means of support -10744844 18 n 01 Vaisya 0 002 @ 09713501 n 0000 #m 08307267 n 0000 | a member of the mercantile and professional Hindu caste; the third of the four main castes -10745006 18 n 02 valedictorian 0 valedictory_speaker 0 001 @ 10557854 n 0000 | the student with the best grades who usually delivers the valedictory address at commencement -10745181 18 n 01 valentine 0 001 @ 10682953 n 0000 | a sweetheart chosen to receive a greeting on Saint Valentine's Day; "will you be my valentine?" -10745332 18 n 05 valet 0 valet_de_chambre 0 gentleman 1 gentleman's_gentleman 0 man 5 005 @ 10292192 n 0000 @ 09863238 n 0000 + 01088547 v 0501 + 02420991 v 0501 + 02541138 v 0101 | a manservant who acts as a personal attendant to his employer; "Jeeves was Bertie Wooster's man" -10745613 18 n 01 valetudinarian 0 002 @ 10595647 n 0000 + 02822746 a 0101 | weak or sickly person especially one morbidly concerned with his or her health -10745770 18 n 01 valley_girl 0 001 @ 10129825 n 0000 | a girl who grew up in the tract housing in the San Fernando Valley -10745894 18 n 01 valuer 0 004 @ 09802050 n 0000 ;r 08860123 n 0000 + 00695226 v 0101 + 00681429 v 0106 | someone who assesses the monetary worth of possessions -10746056 18 n 01 vandal 0 003 @ 10008716 n 0000 + 01520454 v 0101 + 01520454 v 0102 | someone who willfully destroys or defaces property -10746195 18 n 01 Vandal 1 001 @ 10553402 n 0000 | a member of the Germanic people who overran Gaul and Spain and North Africa and sacked Rome in 455 -10746346 18 n 01 vanisher 0 003 @ 00007846 n 0000 + 02156546 v 0101 + 00426958 v 0102 | a person who disappears -10746460 18 n 01 varnisher 0 002 @ 09619605 n 0000 + 01269008 v 0101 | someone who applies a finishing coat of varnish -10746581 18 n 05 vassal 0 liege 0 liegeman 0 liege_subject 0 feudatory 0 003 @ 10099375 n 0000 + 03065804 a 0501 + 00962306 a 0201 | a person holding a fief; a person who owes allegiance and service to a feudal lord -10746799 18 n 01 vaudevillian 0 003 @ 10415638 n 0000 ~i 10873783 n 0000 ~i 11351347 n 0000 | a performer who works in vaudeville -10746931 18 n 03 vaulter 0 pole_vaulter 0 pole_jumper 0 003 @ 09820263 n 0000 + 01966168 v 0101 + 01965806 v 0101 | an athlete who jumps over a high crossbar with the aid of a long pole -10747119 18 n 01 vegetarian 0 002 @ 10042300 n 0000 ~ 10747424 n 0000 | eater of fruits and grains and nuts; someone who eats no meat or fish or (often) any animal products -10747294 18 n 01 Vedist 0 003 @ 10557854 n 0000 + 06464419 n 0102 + 06245286 n 0101 | a scholar of or an authority on the Vedas -10747424 18 n 01 vegan 0 001 @ 10747119 n 0000 | a strict vegetarian; someone who eats no animal or dairy products at all -10747548 18 n 01 venerator 0 002 @ 09771664 n 0000 + 01778568 v 0104 | someone who regards with deep respect or reverence -10747672 18 n 01 venter 0 002 @ 10630188 n 0000 + 00944548 v 0101 | a speaker who expresses or gives vent to a personal opinion or grievance -10747815 18 n 01 ventriloquist 0 003 @ 10415638 n 0000 + 05636666 n 0102 + 05636666 n 0101 | a performer who projects the voice into a wooden dummy -10747965 18 n 01 venture_capitalist 0 002 @ 10634075 n 0000 + 13354260 n 0101 | a speculator who makes money available for innovative projects (especially in high technology) -10748142 18 n 02 venturer 1 merchant-venturer 0 001 @ 10309896 n 0000 | a merchant who undertakes a trading venture (especially a venture that sends goods overseas) -10748309 18 n 01 verger 0 002 @ 09922799 n 0000 @ 09895701 n 0000 | a church officer who takes care of the interior of the building and acts as an attendant (carries the verge) during ceremonies -10748506 18 n 02 vermin 0 varmint 0 002 @ 09831962 n 0000 + 01627315 a 0101 | an irritating or obnoxious person -10748620 18 n 06 very_important_person 0 VIP 0 high-up 0 dignitary 0 panjandrum 0 high_muckamuck 0 001 @ 10200781 n 0000 | an important or influential (and often overbearing) person -10748804 18 n 01 vestal 0 002 @ 10787470 n 0000 + 00361125 a 0102 | a chaste woman -10748889 18 n 01 vestryman 0 002 @ 09922799 n 0000 #m 08478851 n 0000 | a man who is a member of a church vestry -10749004 18 n 01 vestrywoman 0 002 @ 09922799 n 0000 #m 08478851 n 0000 | a woman who is a member of a church vestry -10749123 18 n 07 veteran 0 old-timer 1 oldtimer 1 old_hand 0 warhorse 0 old_stager 0 stager 1 002 @ 09617867 n 0000 + 00936523 a 0102 | an experienced person who has been through many battles; someone who has given long service -10749353 18 n 03 veteran 1 vet 1 ex-serviceman 0 004 @ 10582746 n 0000 #m 08228980 n 0000 #m 08229134 n 0000 ~ 10253887 n 0000 | a person who has served in the armed forces -10749528 18 n 02 veteran 2 veteran_soldier 0 002 @ 10582746 n 0000 + 00936523 a 0102 | a serviceman who has seen considerable active service; "the veterans laughed at the new recruits" -10749715 18 n 04 veterinarian 0 veterinary 0 veterinary_surgeon 0 vet 0 005 @ 10020890 n 0000 + 00080456 v 0401 + 02446504 v 0401 + 03128816 a 0201 ~ 10185591 n 0000 | a doctor who practices veterinary medicine -10749928 18 n 02 vibist 0 vibraphonist 0 001 @ 10340312 n 0000 | a musician who plays the vibraphone -10750031 18 n 01 vicar 0 003 @ 10470779 n 0000 + 02824585 a 0101 + 08100907 n 0102 | a Roman Catholic priest who acts for another higher-ranking clergyman -10750188 18 n 01 vicar 1 004 @ 09927451 n 0000 ;c 08087981 n 0000 + 02824585 a 0101 + 08100907 n 0102 | (Church of England) a clergyman appointed to act as priest of a parish -10750365 18 n 01 vicar 2 004 @ 09927451 n 0000 ;c 08088472 n 0000 + 02824585 a 0101 + 08100907 n 0102 | (Episcopal Church) a clergyman in charge of a chapel -10750524 18 n 01 vicar_apostolic 0 001 @ 09857200 n 0000 | a titular Roman Catholic bishop in a non-Catholic area -10750640 18 n 01 vicar-general 0 002 @ 10005280 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) an administrative deputy who assists a bishop -10750788 18 n 01 vice_admiral 0 001 @ 10094584 n 0000 | an admiral ranking below a full admiral and above a rear admiral -10750911 18 n 01 vice_chairman 0 001 @ 10468962 n 0000 | one ranking below or serving in the place of a chairman -10751026 18 n 01 vice_chancellor 0 001 @ 09770949 n 0000 | a deputy or assistant to someone bearing the title of chancellor -10751152 18 n 01 vicegerent 0 001 @ 10005721 n 0000 | someone appointed by a ruler as an administrative deputy -10751265 18 n 02 vice_president 0 V.P. 0 005 @ 10069645 n 0000 + 02984333 a 0101 ~ 10070108 n 0000 ~ 10579549 n 0000 ~ 10751527 n 0000 | an executive officer ranking immediately below a president; may serve in the president's place under certain circumstances -10751527 18 n 01 Vice_President_of_the_United_States 0 002 @ 10751265 n 0000 ~i 11008313 n 0000 | the vice president of the United States who presides over the United States Senate -10751710 18 n 01 vice-regent 0 001 @ 10005280 n 0000 | a regent's deputy -10751785 18 n 02 viceroy 0 vicereine 0 005 @ 10140314 n 0000 + 03129098 a 0101 + 00605616 n 0101 ~ 10068425 n 0000 ~ 10230216 n 0000 | governor of a country or province who rules as the representative of his or her king or sovereign -10752020 18 n 01 vicereine 2 001 @ 10780632 n 0000 | wife of a viceroy -10752093 18 n 01 victim 0 016 @ 09630641 n 0000 + 02574205 v 0101 + 02500619 v 0101 + 02574205 v 0102 + 02500619 v 0102 ~ 09899671 n 0000 ~ 09899782 n 0000 ~ 10192926 n 0000 ~ 10296618 n 0000 ~ 10296832 n 0000 ~ 10337134 n 0000 ~ 10338628 n 0000 ~ 10453265 n 0000 ~ 10470460 n 0000 ~ 10492727 n 0000 ~ 10555311 n 0000 | an unfortunate person who suffers from some adverse circumstance -10752480 18 n 02 victim 1 dupe 0 009 @ 00007846 n 0000 + 00854904 v 0202 + 02574205 v 0101 + 02500619 v 0101 + 02574205 v 0102 ~ 09884666 n 0000 ~ 09921409 n 0000 ~ 10243988 n 0000 ~ 10604089 n 0000 | a person who is tricked or swindled -10752719 18 n 02 victimizer 0 victimiser 0 004 @ 09831962 n 0000 + 02574205 v 0202 + 02574205 v 0101 ~ 10610201 n 0000 | a person who victimizes others; "I thought we were partners, not victim and victimizer" -10752930 18 n 03 victor 1 master 1 superior 3 002 @ 09939313 n 0000 ~ 09956578 n 0000 | a combatant who is able to defeat rivals -10753061 18 n 01 Victorian 0 002 @ 00007846 n 0000 + 03027793 a 0101 | a person who lived during the reign of Victoria -10753182 18 n 02 victualer 2 victualler 2 004 @ 10186774 n 0000 ;r 08860123 n 0000 + 02332999 v 0201 + 02332999 v 0101 | an innkeeper (especially British) -10753339 18 n 02 vigilante 0 vigilance_man 0 001 @ 10759151 n 0000 | member of a vigilance committee -10753442 18 n 01 villager 0 001 @ 09620078 n 0000 | one who has lived in a village most of their life -10753546 18 n 02 villain 0 scoundrel 0 007 @ 09631129 n 0000 + 01224964 a 0203 + 02515001 a 0102 ~ 09886220 n 0000 ~ 10118208 n 0000 ~ 10536728 n 0000 ~ 10753917 n 0000 | a wicked or evil person; someone who does evil deliberately -10753779 18 n 02 villain 1 baddie 0 002 @ 05929008 n 0000 ;u 07157273 n 0201 | the principal bad character in a film or work of fiction -10753917 18 n 01 villainess 0 001 @ 10753546 n 0000 | a woman villain -10753989 18 n 01 vintager 0 001 @ 10161363 n 0000 | a person who harvests grapes for making wine -10754088 18 n 03 vintner 0 winemaker 0 wine_maker 0 001 @ 10284064 n 0000 | someone who makes wine -10754189 18 n 02 vintner 1 wine_merchant 0 001 @ 10309896 n 0000 | someone who sells wine -10754281 18 n 03 violator 0 debaucher 0 ravisher 0 004 @ 10257647 n 0000 + 02567519 v 0302 + 02579447 v 0206 + 02567519 v 0103 | someone who assaults others sexually -10754449 18 n 03 violator 1 lawbreaker 0 law_offender 0 002 @ 09977660 n 0000 + 02566528 v 0104 | someone who violates the law -10754578 18 n 02 violinist 0 fiddler 0 014 @ 10340312 n 0000 + 01733667 v 0201 + 04536866 n 0101 ~i 10910948 n 0000 ~i 10959074 n 0000 ~i 11012042 n 0000 ~i 11085267 n 0000 ~i 11110791 n 0000 ~i 11175040 n 0000 ~i 11219851 n 0000 ~i 11316828 n 0000 ~i 11367910 n 0000 ~i 11407048 n 0000 ~i 11408041 n 0000 | a musician who plays the violin -10754920 18 n 01 violin_maker 0 005 @ 10284064 n 0000 ~i 10815477 n 0000 ~i 11017831 n 0000 ~i 11017987 n 0000 ~i 11320821 n 0000 | someone who makes violins -10755080 18 n 01 violist 0 001 @ 10340312 n 0000 | a musician who plays the viola -10755164 18 n 01 virago 1 001 @ 10594147 n 0000 | a noisy or scolding or domineering woman -10755257 18 n 01 virgin 0 004 @ 09621359 n 0000 + 00361125 a 0103 + 00361125 a 0104 + 02824922 a 0101 | a person who has never had sex -10755394 18 n 01 virologist 0 003 @ 10313580 n 0000 + 06065640 n 0101 ~i 11279109 n 0000 | a specialist in virology -10755512 18 n 01 virtuoso 1 002 @ 10339966 n 0000 + 02226979 a 0104 | a musician who is a consummate master of technique and artistry -10755648 18 n 02 Visayan 0 Bisayan 0 003 @ 09727440 n 0000 #m 08981244 n 0000 ~ 09697246 n 0000 | a member of the most numerous indigenous people of the Philippines -10755815 18 n 01 viscount 0 001 @ 10412910 n 0000 | a British peer who ranks below an earl and above a baron -10755926 18 n 01 viscountess 0 002 @ 10412910 n 0000 ~i 10826717 n 0000 | a noblewoman holding the rank of viscount in her own right -10756061 18 n 01 viscountess 1 001 @ 10780632 n 0000 | a wife or widow of a viscount -10756148 18 n 01 viscount 1 001 @ 10271677 n 0000 | (in various countries) a son or younger brother or a count -10756261 18 n 01 Visigoth 0 001 @ 10139774 n 0000 | a member of the western group of Goths who sacked Rome and created a kingdom in present-day Spain and southern France -10756433 18 n 03 visionary 0 illusionist 0 seer 0 006 @ 09621545 n 0000 + 01635432 v 0306 ~ 09797113 n 0000 ~ 10020031 n 0000 ~ 10078529 n 0000 ~ 10102506 n 0000 | a person with unusual powers of foresight -10756641 18 n 01 visionary 1 003 @ 00007846 n 0000 + 02498213 a 0103 ~ 10196965 n 0000 | a person given to fanciful speculations and enthusiasms with little regard for what is actually possible -10756837 18 n 01 visiting_fireman 0 001 @ 10757193 n 0000 | an important or distinguished visitor -10756937 18 n 01 visiting_nurse 0 001 @ 10366966 n 0000 | a nurse who is paid to visit the sick in their homes -10757050 18 n 01 visiting_professor 0 001 @ 10480730 n 0000 | a professor visiting another college or university to teach for a limited time -10757193 18 n 02 visitor 0 visitant 0 013 @ 09629752 n 0000 + 02493030 v 0201 + 02487573 v 0201 + 02619424 v 0101 + 02493030 v 0101 + 02487573 v 0101 + 01844048 v 0101 + 01843689 v 0102 + 01038666 v 010e ~ 09868899 n 0000 ~ 09887850 n 0000 ~ 10150940 n 0000 ~ 10756837 n 0000 | someone who visits -10757492 18 n 02 visualizer 0 visualiser 0 002 @ 09626589 n 0000 + 01635432 v 0101 | one whose prevailing mental imagery is visual -10757625 18 n 01 visually_impaired_person 0 006 @ 00007846 n 0000 ~ 09798096 n 0000 ~ 09860130 n 0000 ~ 10195056 n 0000 ~ 10343355 n 0000 ~ 10465635 n 0000 | someone who has inferior vision -10757817 18 n 01 vitalist 0 002 @ 09848489 n 0000 + 05977977 n 0101 | one who believes in vitalism -10757918 18 n 02 vital_principle 0 life_principle 0 002 @ 00007347 n 0000 ~ 10636598 n 0000 | a hypothetical force to which the functions and qualities peculiar to living things are sometimes ascribed -10758121 18 n 01 viticulturist 0 001 @ 09779790 n 0000 | a cultivator of grape vine -10758207 18 n 01 vivisectionist 0 002 @ 09855630 n 0000 + 00716777 n 0101 | a biologist who cuts open live animals for research -10758337 18 n 03 vixen 0 harpy 0 hellcat 0 001 @ 10739636 n 0000 | a malicious woman with a fierce temper -10758445 18 n 01 vizier 0 002 @ 10372373 n 0000 + 00605715 n 0101 | a high official in a Muslim government (especially in the Ottoman Empire) -10758589 18 n 01 vociferator 0 002 @ 10630188 n 0000 + 00915265 v 0101 | a loud and vehement speaker (usually in protest) -10758713 18 n 01 voice 1 002 @ 10599806 n 0000 ;c 07107676 n 0000 | (metonymy) a singer; "he wanted to hear trained voices sing it" -10758847 18 n 01 voicer 0 002 @ 10630188 n 0000 + 00933403 v 0101 | a speaker who voices an opinion -10758949 18 n 01 voicer 1 001 @ 10605985 n 0000 | someone who regulates the tone of organ pipes -10759047 18 n 01 volleyball_player 0 001 @ 10439851 n 0000 | someone who plays the game of volleyball -10759151 18 n 02 volunteer 0 unpaid_worker 0 005 @ 09632518 n 0000 + 02424984 v 0101 ~ 09890987 n 0000 ~ 10441819 n 0000 ~ 10753339 n 0000 | a person who performs voluntary work -10759331 18 n 03 volunteer 1 military_volunteer 0 voluntary 0 005 @ 10582746 n 0000 ;c 08199025 n 0000 + 02520219 a 0301 + 02424984 v 0301 ! 10028765 n 0101 | (military) a person who freely enlists for service -10759543 18 n 02 voluptuary 0 sybarite 0 003 @ 09629246 n 0000 + 01298239 a 0204 + 01298239 a 0105 | a person addicted to luxury and pleasures of the senses -10759702 18 n 02 vomiter 0 spewer 0 003 @ 10595647 n 0000 + 00076400 v 020d + 00076400 v 0101 | a person who vomits -10759820 18 n 01 votary 2 001 @ 10016103 n 0000 | a devoted (almost religiously so) adherent of a cause or person or activity; "the cultured votary of science" -10759982 18 n 01 votary 1 004 @ 10471250 n 0000 ~ 09575316 n 0000 ~ 09829506 n 0000 ~ 09829650 n 0000 | a priest or priestess (or consecrated worshipper) in a non-Christian religion or cult; "a votary of Aphrodite" -10760199 18 n 01 votary 0 001 @ 10518602 n 0000 | one bound by vows to a religion or life of worship or service; "monasteries of votaries" -10760340 18 n 02 voter 0 elector 0 011 @ 09923673 n 0000 #m 08161068 n 0000 + 00846219 a 0201 + 02400760 v 0201 + 02461314 v 0101 + 02462201 v 0101 + 02462580 v 0101 ~ 09611884 n 0000 ~ 09980805 n 0000 ~ 10096725 n 0000 ~ 10683927 n 0000 | a citizen who has a legal right to vote -10760622 18 n 01 vouchee 0 003 @ 10402824 n 0000 ;c 08441203 n 0000 + 00792165 v 0101 | (law) a person called into court to defend a title -10760763 18 n 02 voucher 0 verifier 0 004 @ 10677713 n 0000 + 00664483 v 0201 + 00890100 v 0102 + 01015104 v 0101 | someone who vouches for another or for the correctness of a statement -10760951 18 n 01 vower 0 002 @ 10482054 n 0000 + 00886759 v 0101 | someone who makes a solemn promise to do something or behave in a certain way; "young vowers of eternal love"; "there are many vowers of chastity but few who observe it" -10761190 18 n 01 voyager 0 002 @ 09629752 n 0000 + 01846320 v 0101 | a traveler to a distant land (especially one who travels by sea) -10761326 18 n 03 voyeur 0 Peeping_Tom 0 peeper 0 004 @ 10633450 n 0000 + 02165146 v 0301 + 03129648 a 0102 + 03129648 a 0101 | a viewer who enjoys seeing the sex acts or sex organs of others -10761519 18 n 02 vulcanizer 0 vulcaniser 0 003 @ 10605985 n 0000 + 00516932 v 0202 + 00516932 v 0101 | someone who vulcanizes rubber to improve its strength and resiliency -10761693 18 n 01 vulgarian 0 003 @ 09631463 n 0000 ~ 10528969 n 0000 ~ 10612210 n 0000 | a vulgar person (especially someone who makes a vulgar display of wealth) -10761858 18 n 02 vulgarizer 0 vulgariser 0 001 @ 09997212 n 0000 | someone who makes something vulgar -10761962 18 n 01 Wac 0 002 @ 10622053 n 0000 @ 10787470 n 0000 | a member of the Women's Army Corps -10762064 18 n 01 waddler 0 002 @ 10412055 n 0000 + 01918803 v 0106 | someone who walks with a waddling gait; "fat waddlers who walk like pigeons" -10762212 18 n 01 waffler 0 002 @ 09610660 n 0000 + 02640440 v 0103 | someone who speaks or writes in a vague and evasive manner -10762342 18 n 03 wag 0 wit 0 card 0 003 @ 10191943 n 0000 ;u 07075172 n 0000 + 01268194 a 0201 | a witty amusing person who makes jokes -10762480 18 n 01 Wagnerian 0 001 @ 10099375 n 0000 | a follower of the theories or an admirer of the music of Richard Wagner -10762607 18 n 02 wagoner 0 waggoner 0 001 @ 10035430 n 0000 | the driver of a wagon -10762693 18 n 03 wagonwright 0 waggonwright 0 wainwright 0 001 @ 10793570 n 0000 | a wagon maker -10762792 18 n 02 Wahhabi 0 Wahabi 0 001 @ 09682291 n 0000 | a member of a strictly orthodox Sunni Muslim sect from Saudi Arabia; strives to purify Islamic beliefs and rejects any innovation occurring after the 3rd century of Islam; "Osama bin Laden is said to be a Wahhabi Muslim" -10763075 18 n 02 waif 0 street_child 0 001 @ 09917593 n 0000 | a homeless child especially one forsaken or orphaned; "street children beg or steal in order to survive" -10763245 18 n 01 wailer 0 003 @ 10335246 n 0000 @ 10630188 n 0000 + 01046932 v 0103 | a mourner who utters long loud high-pitched cries -10763383 18 n 02 waiter 0 server 0 007 @ 10013614 n 0000 + 01181295 v 0201 + 02413290 v 0101 ~ 09896084 n 0000 ~ 09969718 n 0000 ~ 10623806 n 0000 ~ 10763620 n 0000 | a person whose occupation is to serve at table (as in a restaurant) -10763620 18 n 01 waitress 0 003 @ 10763383 n 0000 + 02413290 v 0102 ~ 09880189 n 0000 | a woman waiter -10763725 18 n 01 waiter 1 005 @ 00007846 n 0000 + 02641463 v 0101 + 02637938 v 0101 + 00720063 v 0104 ~ 10277352 n 0000 | a person who waits or awaits -10763878 18 n 01 waker 0 002 @ 00007846 n 0000 + 00018526 v 0105 | a person who awakes; "an early waker" -10763985 18 n 03 waker 1 rouser 0 arouser 0 003 @ 09821831 n 0000 + 00018813 v 0306 + 00018813 v 0204 | someone who rouses others from sleep -10764128 18 n 01 walk-in 0 002 @ 10569411 n 0000 @ 10006842 n 0000 | an operative who initiates his own defection (usually to a hostile country) for political asylum -10764296 18 n 01 walk-in 1 002 @ 00007846 n 0000 + 02017149 v 0101 | person who walks in without having an appointment; "the emergency room was overrun with walk-ins" -10764465 18 n 01 walking_delegate 0 001 @ 10738515 n 0000 | a union representative who visits workers at their jobs to see whether agreements are observed -10764622 18 n 01 walk-on 0 001 @ 09765278 n 0000 | plays a small part in a dramatic production -10764719 18 n 01 wallah 0 002 @ 09632518 n 0000 ;r 08900535 n 0000 | usually in combination: person in charge of or employed at a particular thing; "a kitchen wallah"; "the book wallah" -10764907 18 n 01 wallflower 0 001 @ 10594715 n 0000 | remains on sidelines at social event -10765000 18 n 01 walloper 0 002 @ 10782940 n 0000 + 01103180 v 0101 | a winner by a wide margin -10765098 18 n 01 walloper 1 002 @ 10178216 n 0000 + 01415807 v 0104 | a very hard hitter -10765189 18 n 02 wallpaperer 0 wall-paperer 0 002 @ 10605985 n 0000 + 01268112 v 0101 | a worker who papers walls -10765305 18 n 01 wally 0 002 @ 10100761 n 0000 ;r 08860123 n 0000 | a silly and inept person; someone who is regarded as stupid -10765435 18 n 01 Walter_Mitty 0 001 @i 09587565 n 0000 | fictional character created by James Thurber who daydreams about his adventures and triumphs -10765587 18 n 01 waltzer 0 002 @ 09990415 n 0000 + 01895612 v 0101 | a dancer who waltzes -10765679 18 n 04 wanderer 0 roamer 0 rover 0 bird_of_passage 0 005 @ 09629752 n 0000 + 01881180 v 0206 + 01881180 v 0102 ~ 10359759 n 0000 ~ 10744544 n 0000 | someone who leads a wandering unsettled life -10765885 18 n 01 Wandering_Jew 0 001 @ 09681351 n 0000 | a legendary Jew condemned to roam the world for mocking Jesus at the Crucifixion -10766025 18 n 02 wanter 0 needer 0 006 @ 00007846 n 0000 + 02632567 v 0101 + 01825237 v 0102 + 01317064 v 0101 + 01188725 v 0101 + 00709205 v 0101 | a person who wants or needs something; "an owner of many things and needer of none" -10766260 18 n 01 wanton 0 005 @ 09629246 n 0000 + 00361837 a 0106 + 02615451 v 0101 + 01038434 v 0101 ~ 10262343 n 0000 | lewd or lascivious woman -10766409 18 n 01 war_baby 0 001 @ 09827683 n 0000 | conceived or born during war -10766492 18 n 01 warbler 0 002 @ 10599806 n 0000 + 01050896 v 0101 | a singer; usually a singer who adds embellishments to the song -10766626 18 n 01 war_bride 0 001 @ 09874618 n 0000 | bride of a serviceman during wartime -10766718 18 n 01 war_correspondent 0 001 @ 09966710 n 0000 | a journalist who sends news reports and commentary from a combat zone or place of battle for publication or broadcast -10766899 18 n 01 war_criminal 0 001 @ 09633969 n 0000 | an offender who violates international law during times of war -10767020 18 n 01 ward 0 002 @ 00007846 n 0000 + 01129337 v 0102 | a person who is under the protection or in the custody of another -10767154 18 n 01 warden 0 002 @ 10249459 n 0000 + 00605812 n 0101 | the chief official in charge of a prison -10767265 18 n 01 warder 0 004 @ 10249459 n 0000 + 00605909 n 0101 + 01129337 v 0102 ~ 10767432 n 0000 | a person who works in a prison and is in charge of prisoners -10767432 18 n 01 wardress 0 002 @ 10767265 n 0000 ~ 10303310 n 0000 | a woman warder -10767519 18 n 02 warehouser 0 warehouseman 0 002 @ 10791221 n 0000 + 02282365 v 0101 | a workman who manages or works in a warehouse -10767654 18 n 02 war_god 0 god_of_war 0 001 @ 09505418 n 0000 | a god worshipped as giving victory in war -10767762 18 n 01 warlock 0 001 @ 09503282 n 0000 | a male witch or demon -10767837 18 n 01 warlord 0 001 @ 10316862 n 0000 | supreme military leader exercising civil power in a region especially one accountable to nobody when the central government is weak -10768022 18 n 01 warner 0 003 @ 09610660 n 0000 + 00832907 v 0101 + 00870213 v 0101 | someone who gives a warning to others -10768148 18 n 01 warrantee 0 002 @ 09984659 n 0000 + 00891936 v 0102 | a customer to whom a warrant or guarantee is given -10768272 18 n 01 warrantee 1 001 @ 09627906 n 0000 | a recipient of a warrant issued by a court in the United States -10768391 18 n 01 warrant_officer 0 002 @ 10317007 n 0000 ;c 08199025 n 0000 | holds rank by virtue of a warrant -10768505 18 n 01 warrener 0 001 @ 10119351 n 0000 | maintains a rabbit warren -10768585 18 n 01 warrior 0 008 @ 00007846 n 0000 + 01093172 v 0101 ~ 09645788 n 0000 ~ 09905050 n 0000 ~ 09981365 n 0000 ~ 10150556 n 0000 ~ 10549763 n 0000 ~i 11005972 n 0000 | someone engaged in or experienced in warfare -10768810 18 n 01 war_widow 0 001 @ 10780284 n 0000 | a woman whose husband has died in war -10768903 18 n 01 washer 0 006 @ 09632518 n 0000 + 01270199 v 0101 + 01535246 v 0101 ~ 10769084 n 0000 ~ 10769188 n 0000 ~ 10783352 n 0000 | someone who washes things for a living -10769084 18 n 02 washerman 0 laundryman 0 001 @ 10768903 n 0000 | operates industrial washing machine -10769188 18 n 04 washwoman 0 washerwoman 0 laundrywoman 0 laundress 0 001 @ 10768903 n 0000 | a working woman who takes in washing -10769321 18 n 02 wassailer 0 carouser 0 003 @ 10034201 n 0000 + 02493260 v 0201 + 02491383 v 0108 | someone who enjoys riotous drinking -10769459 18 n 02 wastrel 0 waster 0 003 @ 10479561 n 0000 + 02268351 v 0201 + 01158181 v 0203 | someone who dissipates resources self-indulgently -10769607 18 n 01 watchdog 0 001 @ 09614684 n 0000 | a guardian or defender against theft or illegal practices or waste; "she is the global watchdog for human rights abuses" -10769782 18 n 01 watcher 3 001 @ 00007846 n 0000 | a person who keeps a devotional vigil by a sick bed or by a dead body -10769905 18 n 03 watchmaker 0 horologist 0 horologer 0 003 @ 10284064 n 0000 + 05635841 n 0301 + 05635841 n 0201 | someone who makes or repairs watches -10770059 18 n 03 watchman 0 watcher 1 security_guard 0 009 @ 10150071 n 0000 #m 08210982 n 0000 + 02151966 v 0201 ~ 09838117 n 0000 ~ 10092299 n 0000 ~ 10271216 n 0000 ~ 10358322 n 0000 ~ 10407552 n 0000 ~ 10455821 n 0000 | a guard who keeps watch -10770309 18 n 02 water_boy 0 waterer 0 002 @ 09815790 n 0000 + 02357873 v 0201 | an assistant who supplies drinking water -10770433 18 n 02 water_dog 0 water_rat 0 001 @ 10546633 n 0000 | a person who enjoys being in or on the water -10770545 18 n 02 watercolorist 0 watercolourist 0 007 @ 10391653 n 0000 + 14991319 n 0203 + 04558804 n 0203 + 04558578 n 0203 + 01696435 v 0201 + 04558578 n 0101 + 01696435 v 0102 | a painter who paints with watercolors -10770767 18 n 01 waterer 1 003 @ 10079399 n 0000 + 02357873 v 0101 + 00228236 v 0101 | someone who waters plants or crops -10770891 18 n 03 water_witch 0 dowser 0 rhabdomancer 0 003 @ 10020031 n 0000 + 05776679 n 0303 + 01315140 v 0201 | someone who uses a divining rod to find underground water -10771066 18 n 01 Wave 0 002 @ 10523341 n 0000 @ 10787470 n 0000 | a member of the women's reserve of the United States Navy; originally organized during World War II but now no longer a separate branch -10771270 18 n 01 waver 0 003 @ 09610660 n 0000 + 01446901 v 0103 + 01041415 v 0102 | someone who communicates by waving -10771392 18 n 02 wayfarer 0 journeyer 0 004 @ 09629752 n 0000 + 01846916 v 0202 + 01845720 v 0202 ~ 10432441 n 0000 | a traveler going on a trip -10771539 18 n 01 wayfarer 1 001 @ 10412055 n 0000 | a pedestrian who walks from place to place -10771636 18 n 03 weakling 0 doormat 0 wuss 0 004 @ 00007846 n 0000 ~ 10344319 n 0000 ~ 10621738 n 0000 ~ 10781817 n 0000 | a person who is physically weak and ineffectual -10771809 18 n 01 wearer 0 002 @ 10741590 n 0000 + 00052374 v 0101 | a person who wears or carries or displays something as a body covering or accessory; "the wearer of the crown" -10771990 18 n 01 weasel 0 001 @ 00007846 n 0000 | a person who is regarded as treacherous or sneaky -10772092 18 n 02 weatherman 0 weather_forecaster 0 001 @ 10312287 n 0000 | predicts the weather -10772190 18 n 01 weaver 0 002 @ 09974648 n 0000 + 01673891 v 0101 | a craftsman who weaves cloth -10772289 18 n 01 webmaster 0 001 @ 10696251 n 0000 | a technician who designs or maintains a website -10772392 18 n 01 wedding_guest 0 001 @ 10150940 n 0000 | a guest at a wedding -10772472 18 n 01 weekender 0 002 @ 10744164 n 0000 + 02707987 v 0101 | someone who vacations on a weekend -10772580 18 n 01 weekend_warrior 0 002 @ 10523341 n 0000 ;c 08199025 n 0000 | a reservist who fulfills the military obligation on weekends -10772721 18 n 01 weekend_warrior 1 001 @ 10182499 n 0000 | a homeowner who acts as a contractor and tries to do major improvement projects on weekends (often without understanding the scope of the work to be done) -10772937 18 n 01 weeder 0 002 @ 10079399 n 0000 + 00313171 v 0101 | a farmhand hired to remove weeds -10773040 18 n 01 weeper 1 002 @ 10335246 n 0000 + 00066191 v 0102 | a hired mourner -10773126 18 n 02 weeper 0 crier 1 005 @ 09630641 n 0000 + 00066191 v 0201 + 00066191 v 0102 ~ 09844566 n 0000 ~ 09860940 n 0000 | a person who weeps -10773277 18 n 01 weigher 0 002 @ 10372373 n 0000 + 02704617 v 0101 | an official who weighs and records the weight -10773394 18 n 02 weightlifter 0 lifter 0 003 @ 09820263 n 0000 + 01974062 v 0202 + 01150370 v 0102 | an athlete who lifts barbells -10773527 18 n 02 welcher 0 welsher 0 002 @ 09955015 n 0000 + 02574072 v 0201 | someone who swindles you by not repaying a debt or wager -10773665 18 n 01 welder 0 003 @ 09974648 n 0000 + 01595830 v 0101 ~ 10640446 n 0000 | joins pieces of metal by welding them together -10773800 18 n 02 welfare_case 0 charity_case 0 001 @ 09898892 n 0000 | a case for a welfare worker -10773901 18 n 01 welterweight 0 001 @ 10477077 n 0000 | a professional boxer who weighs between 141 and 147 pounds -10774018 18 n 01 welterweight 1 001 @ 10793168 n 0000 | a wrestler who weighs 154-172 pounds -10774113 18 n 01 welterweight 2 001 @ 09870208 n 0000 | an amateur boxer who weighs no more than 148 pounds -10774223 18 n 01 wencher 0 002 @ 09772746 n 0000 + 01427806 v 0101 | someone who patronizes prostitutes -10774329 18 n 01 westerner 0 001 @ 09620078 n 0000 | an inhabitant of a western area; especially of the U.S. -10774440 18 n 01 West_Indian 0 013 @ 09738400 n 0000 #m 08747054 n 0000 ~ 09690864 n 0000 ~ 09691024 n 0000 ~ 09691729 n 0000 ~ 09693982 n 0000 ~ 09698901 n 0000 ~ 09712448 n 0000 ~ 09718092 n 0000 ~ 09723228 n 0000 ~ 09749260 n 0000 ~ 10024937 n 0000 ~ 10714054 n 0000 | a native or inhabitant of the West Indies -10774756 18 n 01 West-sider 0 001 @ 09744679 n 0000 | a resident of the west side of Manhattan in New York City -10774870 18 n 04 wet_nurse 0 wet-nurse 0 wetnurse 0 amah 1 001 @ 10345100 n 0000 | a woman hired to suckle a child of someone else -10775003 18 n 01 wetter 0 002 @ 10791221 n 0000 + 00214951 v 0101 | a workman who wets the work in a manufacturing process -10775128 18 n 01 whaler 0 002 @ 10294602 n 0000 + 01141938 v 0101 | a seaman who works on a ship that hunts whales -10775245 18 n 01 wharf_rat 0 001 @ 10616204 n 0000 | someone who lives near wharves and lives by pilfering from ships or warehouses -10775379 18 n 02 wheedler 0 coaxer 0 003 @ 10418841 n 0000 + 00768778 v 0205 + 00768778 v 0101 | someone who tries to persuade by blandishment and coaxing -10775536 18 n 01 wheeler 2 002 @ 10293332 n 0000 + 02046075 v 0101 | the man at the outermost end of the rank in wheeling -10775660 18 n 02 wheelwright 0 wheeler 0 001 @ 10793570 n 0000 | someone who makes and repairs wooden wheels -10775771 18 n 01 whiffer 0 002 @ 09843956 n 0000 + 01409888 v 0101 | a batter who strikes out by swinging at and missing the third strike -10775911 18 n 01 Whig 2 001 @ 10450303 n 0000 | a member of the Whig Party that existed in the United States before the American Civil War -10776052 18 n 01 Whig 1 001 @ 10677713 n 0000 | a supporter of the American Revolution -10776141 18 n 01 Whig 0 002 @ 09701603 n 0000 @ 10256756 n 0000 | a member of the political party that urged social reform in 18th and 19th century England; was the opposition party to the Tories -10776339 18 n 08 whiner 0 complainer 0 moaner 0 sniveller 0 crybaby 0 bellyacher 0 grumbler 0 squawker 0 014 @ 09631463 n 0000 + 01048939 v 0801 + 00910973 v 0806 + 00909573 v 0702 + 00909219 v 0703 + 00910973 v 0607 + 00101779 v 0402 + 01042531 v 0401 + 00067274 v 0401 + 01045419 v 0302 + 00907147 v 0201 + 01042531 v 0102 + 00907930 v 0101 ~ 10240921 n 0000 | a person given to excessive complaints and crying and whining -10776766 18 n 02 whip 0 party_whip 0 001 @ 10253995 n 0000 | a legislator appointed by the party to enforce discipline -10776887 18 n 01 whipper-in 0 001 @ 09815790 n 0000 | huntsman's assistant in managing the hounds -10776987 18 n 03 whippersnapper 0 jackanapes 0 lightweight 2 002 @ 09923418 n 0000 + 01281559 a 0301 | someone who is unimportant but cheeky and presumptuous -10777147 18 n 02 whirling_dervish 0 whirler 0 002 @ 10006337 n 0000 + 02046755 v 0203 | a dervish whose actions include ecstatic dancing and whirling -10777299 18 n 01 whisperer 0 002 @ 10630188 n 0000 + 00915830 v 0101 | one who speaks in a whisper -10777400 18 n 03 whistle_blower 0 whistle-blower 0 whistleblower 0 001 @ 10205985 n 0000 | an informant who exposes wrongdoing within an organization in the hope of stopping it; "the law gives little protection to whistleblowers who feel the public has a right to know what is going on"; "the whistleblower was fired for exposing the conditions in mental hospitals" -10777768 18 n 01 whistler 0 003 @ 10596899 n 0000 + 02183626 v 0101 + 01043441 v 0101 | someone who makes a loud high sound -10777894 18 n 02 whited_sepulcher 0 whited_sepulchre 0 001 @ 10195593 n 0000 | a person who is inwardly evil but outwardly professes to be virtuous -10778044 18 n 01 whiteface 0 001 @ 09930876 n 0000 | a clown whose face is covered with white make-up -10778148 18 n 02 Carmelite 0 White_Friar 0 003 @ 10111903 n 0000 #m 08148827 n 0000 + 03053199 a 0101 | a Roman Catholic friar wearing the white cloak of the Carmelite order; mendicant preachers -10778345 18 n 04 Dominican 0 Black_Friar 0 Blackfriar 0 friar_preacher 0 003 @ 10111903 n 0000 #m 08149160 n 0000 ~i 11282802 n 0000 | a Roman Catholic friar wearing the black mantle of the Dominican order -10778553 18 n 02 Franciscan 0 Grey_Friar 0 002 @ 10111903 n 0000 #m 08149314 n 0000 | a Roman Catholic friar wearing the grey habit of the Franciscan order -10778711 18 n 01 Augustinian 0 003 @ 10111903 n 0000 #m 08148067 n 0000 ~ 10778888 n 0000 | a Roman Catholic friar or monk belonging to one of the Augustinian monastic orders -10778888 18 n 01 Austin_Friar 0 001 @ 10778711 n 0000 | one of the Roman Catholic hermits of Saint Augustine -10778999 18 n 02 white_hope 0 great_white_hope 0 001 @ 10184946 n 0000 | someone (or something) expected to achieve great success in a given field; "this company is the great white hope of the nuclear industry's waste management policy" -10779238 18 n 01 white_separatist 0 002 @ 10580030 n 0000 + 08380606 n 0101 | someone who advocates a society in which white people live separately from members of other races -10779416 18 n 01 white_slave 0 001 @ 10485440 n 0000 | a woman sold into prostitution -10779504 18 n 01 white_slaver 0 001 @ 10610201 n 0000 | a person who forces women to become prostitutes -10779610 18 n 01 white_supremacist 0 003 @ 10678662 n 0000 + 06204126 n 0101 ~ 10237676 n 0000 | a person who believes that the white race is or should be supreme -10779775 18 n 01 whittler 0 002 @ 10197967 n 0000 + 01552219 v 0101 | someone who whittles (usually as an idle pastime) -10779897 18 n 02 whoremaster 1 whoremonger 1 001 @ 10433737 n 0000 | a pimp who procures whores -10779995 18 n 04 whoremaster 2 whoremonger 2 john 1 trick 0 001 @ 09984659 n 0000 | a prostitute's customer -10780105 18 n 02 Wiccan 0 witch 3 001 @ 10390902 n 0000 | a believer in Wicca -10780185 18 n 01 wicket-keeper 0 001 @ 09977326 n 0000 | stands behind the wicket to catch balls -10780284 18 n 02 widow 0 widow_woman 0 006 @ 10787470 n 0000 + 15153667 n 0101 + 13967970 n 0101 + 00360337 v 0101 ~ 10028289 n 0000 ~ 10768810 n 0000 | a woman whose husband is dead especially one who has not remarried -10780506 18 n 02 widower 0 widowman 0 001 @ 10287213 n 0000 | a man whose wife is dead especially one who has not remarried -10780632 18 n 02 wife 0 married_woman 0 028 @ 10787470 n 0000 @ 10640620 n 0000 + 01735475 a 0101 ! 10193967 n 0101 ~ 09844356 n 0000 ~ 09981278 n 0000 ~ 10092794 n 0000 ~ 10137498 n 0000 ~ 10183347 n 0000 ~ 10189776 n 0000 ~ 10293773 n 0000 ~ 10303037 n 0000 ~ 10304086 n 0000 ~ 10323529 n 0000 ~ 10375314 n 0000 ~ 10588519 n 0000 ~ 10597889 n 0000 ~ 10730820 n 0000 ~ 10743941 n 0000 ~ 10752020 n 0000 ~ 10756061 n 0000 ~i 10838288 n 0000 ~i 10887593 n 0000 ~i 11034485 n 0000 ~i 11251384 n 0000 ~i 11255775 n 0000 ~i 11275952 n 0000 ~i 11281555 n 0000 | a married woman; a man's partner in marriage -10781236 18 n 03 wiggler 0 wriggler 0 squirmer 0 004 @ 00007846 n 0000 + 01868370 v 0305 + 01868370 v 0203 + 01898282 v 0103 | one who can't stay still (especially a child); "the toddler was a real wiggler on plane trips" -10781460 18 n 01 wigmaker 0 001 @ 10284064 n 0000 | someone who makes and sells wigs -10781547 18 n 01 wildcatter 0 001 @ 10374652 n 0000 | an oilman who drills exploratory wells in territory not known to be an oil field -10781684 18 n 02 wild_man 0 feral_man 0 003 @ 09627462 n 0000 ~ 09797998 n 0000 ~ 10787364 n 0000 | a person who is not socialized -10781817 18 n 03 wimp 0 chicken 0 crybaby 1 003 @ 10771636 n 0000 + 00265314 a 0201 + 00843046 a 0102 | a person who lacks confidence, is irresolute and wishy-washy -10781984 18 n 01 winder 0 003 @ 09632518 n 0000 + 01522276 v 0101 + 01522052 v 0101 | a worker who winds (e.g., a winch or clock or other mechanism) -10782135 18 n 01 wing 0 001 @ 10179291 n 0000 | a hockey player stationed in a forward position on either side -10782248 18 n 01 wingback 0 002 @ 09830194 n 0000 ;c 00468480 n 0000 | (football) the person who plays wingback -10782362 18 n 01 wing_commander 0 001 @ 09941964 n 0000 | (RAF rank) one who is next below a group captain -10782471 18 n 01 winger 0 005 @ 09820263 n 0000 ;c 00478262 n 0000 ;c 00467995 n 0000 ;c 00470966 n 0000 ;c 00468480 n 0000 | (sports) player in wing position -10782632 18 n 01 wingman 0 001 @ 10433164 n 0000 | the pilot who positions his aircraft outside and behind (on the wing of) the leader of a flying formation -10782791 18 n 01 winner 1 005 @ 10118844 n 0000 + 02288295 v 0102 + 01100145 v 0101 ! 10272782 n 0101 ~ 09627807 n 0000 | a gambler who wins a bet -10782940 18 n 02 winner 0 victor 0 007 @ 09613191 n 0000 + 01100145 v 0101 ! 10272913 n 0101 ~ 09612131 n 0000 ~ 10305062 n 0000 ~ 10740594 n 0000 ~ 10765000 n 0000 | the contestant who wins the contest -10783145 18 n 01 window_cleaner 0 001 @ 09927089 n 0000 | someone who cleans windows for pay -10783240 18 n 02 window_dresser 0 window_trimmer 0 001 @ 09974648 n 0000 | someone who decorates shop windows -10783352 18 n 01 window_washer 0 001 @ 10768903 n 0000 | someone who washes windows -10783438 18 n 01 wine_taster 0 001 @ 10692482 n 0000 | a taster who evaluates the quality of wines -10783539 18 n 01 winker 0 003 @ 00007846 n 0000 + 00008299 v 0101 + 00007739 v 0102 | a person who winks -10783646 18 n 01 wiper 0 002 @ 09632518 n 0000 + 01392237 v 0101 | a worker who wipes -10783734 18 n 02 wireman 0 wirer 0 003 @ 10605985 n 0000 + 02354536 v 0201 + 00505802 v 0202 | a worker who installs and repairs electric wiring -10783881 18 n 01 wire-puller 0 001 @ 10194566 n 0000 | one who uses secret influence (i.e. pulls wires or strings) for his own ends -10784015 18 n 01 wirer 1 002 @ 09610660 n 0000 + 01007222 v 0103 | someone who sends a telegram -10784113 18 n 05 wise_guy 0 smart_aleck 0 wiseacre 0 wisenheimer 0 weisenheimer 0 001 @ 10741152 n 0000 | an upstart who makes conceited, sardonic, insolent comments -10784281 18 n 01 junior 2 001 @ 10740868 n 0000 | term of address for a disrespectful and annoying male; "look here, junior, it's none of your business" -10784436 18 n 01 wisp 0 002 @ 10613505 n 0000 + 00991678 a 0102 | a small person; "a mere wisp of a girl" -10784544 18 n 01 witch_doctor 0 002 @ 10625860 n 0000 ~ 10055181 n 0000 | someone who is believed to heal through magical powers -10784675 18 n 01 witch-hunter 0 001 @ 10716005 n 0000 | someone who identifies and punishes people for their opinions -10784795 18 n 01 withdrawer 0 002 @ 10005006 n 0000 + 02311387 v 0101 | a depositor who withdraws funds previously deposited -10784922 18 n 01 withdrawer 1 002 @ 10665698 n 0000 + 00799383 v 0108 | a student who withdraws from the educational institution in which he or she was enrolled -10785085 18 n 01 withdrawer 2 002 @ 09613191 n 0000 + 00799383 v 0108 | a contestant who withdraws from competition -10785203 18 n 01 withdrawer 3 002 @ 10035952 n 0000 + 01511380 v 0102 | a drug addict who is discontinuing the use of narcotics -10785333 18 n 01 withdrawer 4 003 @ 09619824 n 0000 + 01766952 v 0102 + 00495998 v 0104 | an individualist who withdraws from social interaction -10785480 18 n 01 withdrawer 5 001 @ 09824609 n 0000 | an authority who withdraws permission -10785574 18 n 01 withholder 0 002 @ 10525134 n 0000 + 02213690 v 0101 | a person who restrains or checks or holds back -10785695 18 n 01 withholder 1 004 @ 00007846 n 0000 + 02215001 v 0101 + 02213690 v 0101 ! 10143725 n 0101 | a person who refrains from granting; "a withholder of payments" -10785869 18 n 01 withstander 0 002 @ 09773245 n 0000 + 02706816 v 0102 | an opponent who resists with force or resolution; "obstinate withstanders of innovation" -10786033 18 n 03 witness 0 witnesser 0 informant 1 007 @ 09626589 n 0000 @ 10630188 n 0000 + 00831651 v 0301 + 02128286 v 0201 + 02128286 v 0101 ~ 09822640 n 0000 ~ 10703905 n 0000 | someone who sees an event and reports what happened -10786270 18 n 04 witness 2 attestant 0 attestor 0 attestator 0 004 @ 10597234 n 0000 ;c 08441203 n 0000 + 01014821 v 0202 + 02128286 v 0101 | (law) a person who attests to the genuineness of a document or signature by adding their own signature -10786517 18 n 01 witness 3 008 @ 00007846 n 0000 ;c 08441203 n 0000 + 02128286 v 0101 ~ 09773682 n 0000 ~ 09909477 n 0000 ~ 10072346 n 0000 ~ 10250873 n 0000 ~ 10301089 n 0000 | (law) a person who testifies under oath in a court of law -10786755 18 n 01 wittol 0 001 @ 09982152 n 0000 | an archaic term for a cuckold who knows about his wife's infidelity but tolerates it -10786892 18 n 01 Wobbly 0 001 @ 10503452 n 0000 | a member of the Industrial Workers of the World -10786992 18 n 01 wog 0 004 @ 09636106 n 0000 ;u 06717170 n 0000 ;u 07157273 n 0000 ;r 08860123 n 0000 | (offensive British slang) term used by the British to refer to people of color from Africa or Asia -10787197 18 n 04 wolf 0 woman_chaser 0 skirt_chaser 0 masher 0 002 @ 10789118 n 0000 + 01037910 v 0409 | a man who is aggressive in making amorous advances to women -10787364 18 n 01 wolf_boy 0 001 @ 10781684 n 0000 | a male person assumed to have been raised by wolves -10787470 18 n 02 woman 0 adult_female 0 069 @ 09619168 n 0000 @ 09605289 n 0000 + 01484987 a 0101 + 14425715 n 0101 + 08477634 n 0101 + 00606006 n 0101 + 00566322 v 0105 + 02590910 v 0103 ! 10287213 n 0101 %p 05220126 n 0000 ~i 09586743 n 0000 ~ 09637339 n 0000 ~ 09641130 n 0000 ~ 09643670 n 0000 ~ 09787293 n 0000 ~ 09787390 n 0000 ~ 09830080 n 0000 ~ 09832456 n 0000 ~ 09834258 n 0000 ~ 09852430 n 0000 ~ 09861599 n 0000 ~ 09874862 n 0000 ~ 09875663 n 0000 ~ 09900153 n 0000 ~ 09923263 n 0000 ~ 09965134 n 0000 ~ 09989290 n 0000 ~ 09997834 n 0000 ~ 10020366 n 0000 ~ 10020533 n 0000 ~ 10024784 n 0000 ~ 10025635 n 0000 ~ 10055410 n 0000 ~ 10075063 n 0000 ~ 10122858 n 0000 ~ 10129825 n 0000 ~ 10130447 n 0000 ~ 10130686 n 0000 ~ 10130877 n 0000 ~ 10136283 n 0000 ~ 10144838 n 0000 ~ 10173410 n 0000 ~ 10202085 n 0000 ~ 10222170 n 0000 ~ 10222259 n 0000 ~ 10243137 n 0000 ~ 10280034 n 0000 ~ 10302576 n 0000 ~ 10302700 n 0000 ~ 10303186 n 0000 ~ 10311661 n 0000 ~ 10323752 n 0000 ~ 10333044 n 0000 ~ 10345100 n 0000 ~ 10366145 n 0000 ~ 10368528 n 0000 ~ 10368624 n 0000 ~ 10377021 n 0000 ~ 10485440 n 0000 ~ 10589243 n 0000 ~ 10613996 n 0000 ~ 10685398 n 0000 ~ 10739512 n 0000 ~ 10748804 n 0000 ~ 10761962 n 0000 ~ 10771066 n 0000 ~ 10780284 n 0000 ~ 10780632 n 0000 ~ 10789820 n 0000 | an adult female person (as opposed to a man); "the woman kept house while the man hunted" -10788852 18 n 01 woman 1 005 @ 09619168 n 0000 ;u 07075172 n 0000 + 02590910 v 0102 + 02590910 v 0103 ! 10288516 n 0101 | a female person who plays a significant role (wife or mistress or girlfriend) in the life of a particular man; "he was faithful to his woman" -10789118 18 n 03 womanizer 0 womaniser 0 philanderer 0 009 @ 10257647 n 0000 @ 10287213 n 0000 + 02590910 v 0301 + 02590910 v 0203 + 02590910 v 0102 ~ 09898797 n 0000 ~ 10025487 n 0000 ~ 10274173 n 0000 ~ 10787197 n 0000 | a man who likes many women and has short sexual relationships with them -10789415 18 n 02 wonder_boy 0 golden_boy 0 001 @ 10287213 n 0000 | a man who is unusually successful at an early age -10789534 18 n 02 wonderer 0 marveller 0 003 @ 09771664 n 0000 + 00925490 v 0202 + 00925490 v 0101 | someone filled with admiration and awe; someone who wonders at something -10789709 18 n 01 wonderer 1 002 @ 09621545 n 0000 + 00729378 v 0101 | someone who is curious about something -10789820 18 n 01 wonder_woman 0 001 @ 10787470 n 0000 | a woman who can be a successful wife and have a professional career at the same time -10789963 18 n 02 woodcarver 0 carver 2 002 @ 10790192 n 0000 + 01256600 v 0201 | makes decorative wooden panels -10790077 18 n 01 woodcutter 0 002 @ 10241300 n 0000 ~i 09782946 n 0000 | cuts down trees and chops wood as a job -10790192 18 n 03 woodworker 0 woodsman 1 woodman 1 006 @ 09974648 n 0000 ~ 09885866 n 0000 ~ 09896685 n 0000 ~ 10223869 n 0000 ~ 10637360 n 0000 ~ 10789963 n 0000 | makes things out of wood -10790384 18 n 02 woodsman 0 woodman 0 001 @ 10544232 n 0000 | someone who lives in the woods -10790479 18 n 02 wool_stapler 0 woolsorter 0 001 @ 10140783 n 0000 | a person who sorts wool into different grades -10790596 18 n 01 wool_stapler 1 001 @ 10018861 n 0000 | a dealer in wool -10790671 18 n 01 wordmonger 0 001 @ 10794014 n 0000 | a writer who uses language carelessly or pretentiously with little regard for meaning -10790813 18 n 01 word-painter 0 001 @ 10794014 n 0000 | a writer of vivid or graphic descriptive power -10790918 18 n 01 wordsmith 0 001 @ 10794014 n 0000 | a fluent and prolific writer -10791002 18 n 01 workaholic 0 002 @ 09950457 n 0000 ;u 06288527 n 0000 | person with a compulsive need to work -10791115 18 n 01 working_girl 0 002 @ 09632518 n 0000 @ 10129825 n 0000 | a young woman who is employed -10791221 18 n 04 workman 0 workingman 0 working_man 0 working_person 0 026 @ 10053808 n 0000 + 05638063 n 0103 ~ 09617292 n 0000 ~ 09859557 n 0000 ~ 10115603 n 0000 ~ 10121595 n 0000 ~ 10151367 n 0000 ~ 10166762 n 0000 ~ 10241300 n 0000 ~ 10242439 n 0000 ~ 10247800 n 0000 ~ 10275676 n 0000 ~ 10318293 n 0000 ~ 10336234 n 0000 ~ 10390427 n 0000 ~ 10404998 n 0000 ~ 10508008 n 0000 ~ 10533874 n 0000 ~ 10540735 n 0000 ~ 10563826 n 0000 ~ 10587227 n 0000 ~ 10638813 n 0000 ~ 10647168 n 0000 ~ 10742881 n 0000 ~ 10767519 n 0000 ~ 10775003 n 0000 | an employee who performs manual or industrial labor -10791820 18 n 01 workmate 0 001 @ 09632518 n 0000 | a fellow worker -10791890 18 n 01 worldling 0 001 @ 00007846 n 0000 | a person absorbed by the concerns and interests and pleasures of the present world -10792028 18 n 04 worm 0 louse 0 insect 0 dirt_ball 0 001 @ 09631463 n 0000 | a person who has a nasty or unethical character undeserving of respect -10792178 18 n 04 worrier 0 fuss-budget 0 fusspot 0 worrywart 0 002 @ 10638136 n 0000 + 01767163 v 0101 | thinks about unfortunate things that might happen -10792335 18 n 02 worshiper 1 worshipper 1 004 @ 09771435 n 0000 + 01778017 v 0203 + 01778017 v 0103 ~ 10173665 n 0000 | someone who admires too much to recognize faults -10792506 18 n 01 worthy 0 002 @ 10200781 n 0000 + 02584981 a 0101 | an important, honorable person (word is often used humorously); "he told his story to some conservative worthies"; "local worthies rarely challenged the chief constable" -10792746 18 n 01 wrangler 1 002 @ 09997404 n 0000 + 00774344 v 0102 | someone who argues noisily or angrily -10792856 18 n 01 wrecker 2 004 @ 10241300 n 0000 + 01566185 v 0102 ~ 10189975 n 0000 ~ 10238127 n 0000 | someone who demolishes or dismantles buildings as a job -10793019 18 n 01 wrester 0 002 @ 10492447 n 0000 + 01213998 v 0101 | someone who obtains something by pulling it violently with twisting movements -10793168 18 n 03 wrestler 0 grappler 0 matman 0 012 @ 09939313 n 0000 + 01574292 v 0201 + 01092981 v 0101 ~ 09838621 n 0000 ~ 10082805 n 0000 ~ 10098624 n 0000 ~ 10167152 n 0000 ~ 10261762 n 0000 ~ 10262561 n 0000 ~ 10314422 n 0000 ~ 10674713 n 0000 ~ 10774018 n 0000 | combatant who tries to throw opponent to the ground -10793492 18 n 01 wretch 1 001 @ 10522324 n 0000 | performs some wicked deed -10793570 18 n 01 wright 0 007 @ 09974648 n 0000 ~ 09898692 n 0000 ~ 10318686 n 0000 ~ 10442923 n 0000 ~ 10590764 n 0000 ~ 10762693 n 0000 ~ 10775660 n 0000 | someone who makes or repairs something (usually used in combination) -10793799 18 n 02 write-in_candidate 0 write-in 0 002 @ 09889691 n 0000 + 02461807 v 0201 | a candidate for public office whose name does not appear on the ballot and so must be written on the ballot by the voters -10794014 18 n 02 writer 0 author 0 379 @ 09610660 n 0000 + 02651014 a 0202 + 02651014 a 0201 + 00929718 n 0202 + 01704452 v 0201 + 01744611 v 0102 + 01698271 v 0101 ~ 09755086 n 0000 ~ 09784564 n 0000 ~ 09824065 n 0000 ~ 09855433 n 0000 ~ 09932892 n 0000 ~ 09942431 n 0000 ~ 09946957 n 0000 ~ 09961331 n 0000 ~ 09985809 n 0000 ~ 10028977 n 0000 ~ 10030277 n 0000 ~ 10064405 n 0000 ~ 10099278 n 0000 ~ 10108464 n 0000 ~ 10117267 n 0000 ~ 10128748 n 0000 ~ 10139944 n 0000 ~ 10154740 n 0000 ~ 10224578 n 0000 ~ 10258152 n 0000 ~ 10277912 n 0000 ~ 10363573 n 0000 ~ 10395605 n 0000 ~ 10397694 n 0000 ~ 10444194 n 0000 ~ 10448670 n 0000 ~ 10528493 n 0000 ~ 10555936 n 0000 ~ 10564905 n 0000 ~ 10629449 n 0000 ~ 10631654 n 0000 ~ 10721708 n 0000 ~ 10790671 n 0000 ~ 10790813 n 0000 ~ 10790918 n 0000 ~i 10810549 n 0000 ~i 10813527 n 0000 ~i 10813711 n 0000 ~i 10817102 n 0000 ~i 10817935 n 0000 ~i 10821379 n 0000 ~i 10825554 n 0000 ~i 10826204 n 0000 ~i 10828091 n 0000 ~i 10829293 n 0000 ~i 10832251 n 0000 ~i 10834011 n 0000 ~i 10836184 n 0000 ~i 10836413 n 0000 ~i 10838665 n 0000 ~i 10839617 n 0000 ~i 10840354 n 0000 ~i 10841241 n 0000 ~i 10843035 n 0000 ~i 10843228 n 0000 ~i 10843705 n 0000 ~i 10844527 n 0000 ~i 10851139 n 0000 ~i 10854627 n 0000 ~i 10857159 n 0000 ~i 10857697 n 0000 ~i 10858872 n 0000 ~i 10860347 n 0000 ~i 10860444 n 0000 ~i 10865567 n 0000 ~i 10865700 n 0000 ~i 10865860 n 0000 ~i 10866571 n 0000 ~i 10870235 n 0000 ~i 10871756 n 0000 ~i 10872505 n 0000 ~i 10873303 n 0000 ~i 10874393 n 0000 ~i 10874706 n 0000 ~i 10876513 n 0000 ~i 10877456 n 0000 ~i 10879364 n 0000 ~i 10880841 n 0000 ~i 10881092 n 0000 ~i 10881269 n 0000 ~i 10881616 n 0000 ~i 10884061 n 0000 ~i 10887137 n 0000 ~i 10889032 n 0000 ~i 10890437 n 0000 ~i 10893830 n 0000 ~i 10894522 n 0000 ~i 10895274 n 0000 ~i 10896823 n 0000 ~i 10896987 n 0000 ~i 10897312 n 0000 ~i 10900730 n 0000 ~i 10904107 n 0000 ~i 10904992 n 0000 ~i 10905159 n 0000 ~i 10906462 n 0000 ~i 10907647 n 0000 ~i 10909127 n 0000 ~i 10914447 n 0000 ~i 10917377 n 0000 ~i 10925772 n 0000 ~i 10927270 n 0000 ~i 10931167 n 0000 ~i 10934410 n 0000 ~i 10935025 n 0000 ~i 10935745 n 0000 ~i 10937882 n 0000 ~i 10940474 n 0000 ~i 10940669 n 0000 ~i 10943115 n 0000 ~i 10944902 n 0000 ~i 10945048 n 0000 ~i 10945263 n 0000 ~i 10946286 n 0000 ~i 10953473 n 0000 ~i 10956883 n 0000 ~i 10958182 n 0000 ~i 10958552 n 0000 ~i 10967311 n 0000 ~i 10968504 n 0000 ~i 10970603 n 0000 ~i 10972094 n 0000 ~i 10972697 n 0000 ~i 10972985 n 0000 ~i 10974971 n 0000 ~i 10975404 n 0000 ~i 10977368 n 0000 ~i 10979079 n 0000 ~i 10984876 n 0000 ~i 10986710 n 0000 ~i 10988466 n 0000 ~i 10990371 n 0000 ~i 10991740 n 0000 ~i 10993636 n 0000 ~i 10997997 n 0000 ~i 10998651 n 0000 ~i 11001567 n 0000 ~i 11004333 n 0000 ~i 11004731 n 0000 ~i 11005429 n 0000 ~i 11006128 n 0000 ~i 11006431 n 0000 ~i 11006689 n 0000 ~i 11007993 n 0000 ~i 11008870 n 0000 ~i 11010557 n 0000 ~i 11012153 n 0000 ~i 11012300 n 0000 ~i 11013743 n 0000 ~i 11016075 n 0000 ~i 11016563 n 0000 ~i 11016841 n 0000 ~i 11022001 n 0000 ~i 11022669 n 0000 ~i 11023327 n 0000 ~i 11024033 n 0000 ~i 11025125 n 0000 ~i 11026816 n 0000 ~i 11027294 n 0000 ~i 11028675 n 0000 ~i 11030679 n 0000 ~i 11031257 n 0000 ~i 11032840 n 0000 ~i 11033870 n 0000 ~i 11035618 n 0000 ~i 11037966 n 0000 ~i 11038505 n 0000 ~i 11038978 n 0000 ~i 11039860 n 0000 ~i 11048205 n 0000 ~i 11048879 n 0000 ~i 11049001 n 0000 ~i 11049608 n 0000 ~i 11054670 n 0000 ~i 11056947 n 0000 ~i 11063061 n 0000 ~i 11063182 n 0000 ~i 11063535 n 0000 ~i 11065101 n 0000 ~i 11066772 n 0000 ~i 11069746 n 0000 ~i 11073324 n 0000 ~i 11073453 n 0000 ~i 11074284 n 0000 ~i 11076359 n 0000 ~i 11077927 n 0000 ~i 11078059 n 0000 ~i 11079252 n 0000 ~i 11082535 n 0000 ~i 11088622 n 0000 ~i 11091084 n 0000 ~i 11093116 n 0000 ~i 11095731 n 0000 ~i 11099085 n 0000 ~i 11102493 n 0000 ~i 11102674 n 0000 ~i 11105778 n 0000 ~i 11108584 n 0000 ~i 11114637 n 0000 ~i 11117744 n 0000 ~i 11117931 n 0000 ~i 11120146 n 0000 ~i 11120834 n 0000 ~i 11122825 n 0000 ~i 11128236 n 0000 ~i 11129017 n 0000 ~i 11129478 n 0000 ~i 11130291 n 0000 ~i 11130474 n 0000 ~i 11137748 n 0000 ~i 11142922 n 0000 ~i 11145730 n 0000 ~i 11146494 n 0000 ~i 11149762 n 0000 ~i 11151084 n 0000 ~i 11152331 n 0000 ~i 11152758 n 0000 ~i 11154023 n 0000 ~i 11154489 n 0000 ~i 11155331 n 0000 ~i 11157954 n 0000 ~i 11158533 n 0000 ~i 11162915 n 0000 ~i 11164970 n 0000 ~i 11165339 n 0000 ~i 11165519 n 0000 ~i 11165712 n 0000 ~i 11167792 n 0000 ~i 11168839 n 0000 ~i 11169595 n 0000 ~i 11172795 n 0000 ~i 11176797 n 0000 ~i 11178631 n 0000 ~i 11180029 n 0000 ~i 11180812 n 0000 ~i 11182275 n 0000 ~i 11183074 n 0000 ~i 11183211 n 0000 ~i 11186511 n 0000 ~i 11188613 n 0000 ~i 11190183 n 0000 ~i 11192349 n 0000 ~i 11196627 n 0000 ~i 11196764 n 0000 ~i 11198094 n 0000 ~i 11198981 n 0000 ~i 11200686 n 0000 ~i 11206544 n 0000 ~i 11209543 n 0000 ~i 11210963 n 0000 ~i 11211322 n 0000 ~i 11211987 n 0000 ~i 11212669 n 0000 ~i 11212988 n 0000 ~i 11214926 n 0000 ~i 11216264 n 0000 ~i 11217479 n 0000 ~i 11219992 n 0000 ~i 11222759 n 0000 ~i 11224654 n 0000 ~i 11225350 n 0000 ~i 11229662 n 0000 ~i 11231821 n 0000 ~i 11239143 n 0000 ~i 11239567 n 0000 ~i 11239765 n 0000 ~i 11240480 n 0000 ~i 11243102 n 0000 ~i 11243424 n 0000 ~i 11243720 n 0000 ~i 11244550 n 0000 ~i 11245590 n 0000 ~i 11245744 n 0000 ~i 11245902 n 0000 ~i 11249559 n 0000 ~i 11249712 n 0000 ~i 11253630 n 0000 ~i 11261698 n 0000 ~i 11264343 n 0000 ~i 11270380 n 0000 ~i 11272030 n 0000 ~i 11272689 n 0000 ~i 11273907 n 0000 ~i 11274454 n 0000 ~i 11275035 n 0000 ~i 11278120 n 0000 ~i 11278980 n 0000 ~i 11280013 n 0000 ~i 11280213 n 0000 ~i 11282154 n 0000 ~i 11283682 n 0000 ~i 11284409 n 0000 ~i 11289161 n 0000 ~i 11293636 n 0000 ~i 11295936 n 0000 ~i 11297032 n 0000 ~i 11299212 n 0000 ~i 11300678 n 0000 ~i 11302449 n 0000 ~i 11302615 n 0000 ~i 11306473 n 0000 ~i 11307082 n 0000 ~i 11308120 n 0000 ~i 11308520 n 0000 ~i 11309613 n 0000 ~i 11311287 n 0000 ~i 11311959 n 0000 ~i 11314119 n 0000 ~i 11314666 n 0000 ~i 11314792 n 0000 ~i 11316249 n 0000 ~i 11316567 n 0000 ~i 11316970 n 0000 ~i 11317897 n 0000 ~i 11318692 n 0000 ~i 11318824 n 0000 ~i 11320405 n 0000 ~i 11323316 n 0000 ~i 11323580 n 0000 ~i 11327544 n 0000 ~i 11329030 n 0000 ~i 11331442 n 0000 ~i 11337202 n 0000 ~i 11340992 n 0000 ~i 11344337 n 0000 ~i 11345017 n 0000 ~i 11345181 n 0000 ~i 11345378 n 0000 ~i 11349207 n 0000 ~i 11352035 n 0000 ~i 11356183 n 0000 ~i 11356283 n 0000 ~i 11356392 n 0000 ~i 11359697 n 0000 ~i 11360895 n 0000 ~i 11363412 n 0000 ~i 11366109 n 0000 ~i 11368638 n 0000 ~i 11368841 n 0000 ~i 11370201 n 0000 ~i 11371125 n 0000 ~i 11371622 n 0000 ~i 11372599 n 0000 ~i 11373099 n 0000 ~i 11374085 n 0000 ~i 11374952 n 0000 ~i 11377168 n 0000 ~i 11378087 n 0000 ~i 11381193 n 0000 ~i 11381457 n 0000 ~i 11381583 n 0000 ~i 11382398 n 0000 ~i 11382795 n 0000 ~i 11383767 n 0000 ~i 11384159 n 0000 ~i 11385748 n 0000 ~i 11386346 n 0000 ~i 11386692 n 0000 ~i 11392210 n 0000 ~i 11392368 n 0000 ~i 11393446 n 0000 ~i 11394042 n 0000 ~i 11394491 n 0000 ~i 11394657 n 0000 ~i 11395199 n 0000 ~i 11395609 n 0000 ~i 11396667 n 0000 ~i 11398094 n 0000 ~i 11398955 n 0000 ~i 11399123 n 0000 ~i 11404871 n 0000 ~i 11408148 n 0000 | writes (books or stories or articles or the like) professionally (for pay) -10801291 18 n 01 writer 1 010 @ 10266328 n 0000 + 01691057 v 0101 + 01007027 v 0101 + 01031966 v 0101 + 00993014 v 0101 ~ 10011486 n 0000 ~ 10563940 n 0000 ~ 10635149 n 0000 ~ 10723984 n 0000 ~ 10724272 n 0000 | a person who is able to write and has written something -10801561 18 n 01 Wykehamist 0 002 @ 10665698 n 0000 ;r 08860123 n 0000 | a student enrolled in (or graduated from) Winchester College -10801697 18 n 01 xylophonist 0 002 @ 10415037 n 0000 + 03721384 n 0102 | someone who plays a xylophone -10801802 18 n 01 yakuza 0 002 @ 10120085 n 0000 ;r 08921850 n 0000 | a Japanese gangster -10801893 18 n 01 Yahoo 0 001 @i 09587565 n 0000 | one of a race of brutes resembling men but subject to the Houyhnhnms in a novel by Jonathan Swift -10802043 18 n 02 yachtsman 0 yachtswoman 0 001 @ 10546633 n 0000 | a person who owns or sails a yacht -10802147 18 n 02 yanker 0 jerker 0 003 @ 10492447 n 0000 + 01592072 v 0202 + 01592072 v 0101 | someone who gives a strong sudden pull -10802283 18 n 03 Yankee 2 Yank 2 Northerner 1 005 @ 09738708 n 0000 #m 09052652 n 0000 ;r 09044862 n 0000 + 01606470 a 0101 ~ 10373639 n 0000 | an American who lives in the North (especially during the American Civil War) -10802507 18 n 02 yard_bird 0 yardbird 0 001 @ 10512372 n 0000 | a military recruit who is assigned menial tasks -10802621 18 n 01 yardie 0 001 @ 10120085 n 0000 | member of an international gang of Jamaican criminals who sell drugs and violence; "A much publicized raid on a yardie stronghold had first been simulated at Riot City" -10802842 18 n 01 yardman 0 001 @ 10241300 n 0000 | a laborer hired to do outdoor work (such as mowing lawns) -10802953 18 n 01 yardman 1 001 @ 10722758 n 0000 | worker in a railway yard -10803031 18 n 03 yardmaster 0 trainmaster 0 train_dispatcher 0 002 @ 10017422 n 0000 @ 10722758 n 0000 | a railroad employer who is in charge of a railway yard -10803193 18 n 01 yawner 0 002 @ 00007846 n 0000 + 00007328 v 0101 | a person who yawns -10803282 18 n 01 yenta 0 002 @ 10139347 n 0000 ;c 06951067 n 0000 | (Yiddish) a woman who talks too much; a gossip unable to keep a secret; a woman who spreads rumors and scandal -10803463 18 n 01 yenta 1 002 @ 10594147 n 0000 ;c 06951067 n 0000 | (Yiddish) a vulgar shrew; a shallow coarse termagant -10803586 18 n 01 yeoman 0 001 @ 10110287 n 0000 | in former times was free and cultivated his own land -10803691 18 n 03 yeoman 1 yeoman_of_the_guard 0 beefeater 0 001 @ 09863031 n 0000 | officer in the (ceremonial) bodyguard of the British monarch -10803838 18 n 01 yodeller 0 002 @ 10599806 n 0000 + 01050651 v 0101 | a singer who changes register rapidly (popular is Swiss folk songs) -10803978 18 n 01 yogi 0 001 @ 10423589 n 0000 | one who practices yoga and has achieved a high level of spiritual insight -10804102 18 n 07 yokel 0 rube 0 hick 0 yahoo 1 hayseed 0 bumpkin 0 chawbacon 0 002 @ 10544232 n 0000 + 00636891 a 0601 | a person who is not very intelligent or interested in culture -10804287 18 n 02 young_buck 0 young_man 0 002 @ 09772029 n 0000 @ 10287213 n 0000 | a teenager or a young adult male -10804406 18 n 04 young_person 0 youth 0 younker 0 spring_chicken 0 006 @ 09622049 n 0000 ~ 09859285 n 0000 ~ 10178821 n 0000 ~ 10493835 n 0000 ~ 10559288 n 0000 ~ 10612104 n 0000 | a young person (especially a young man or boy) -10804636 18 n 01 young_Turk 0 001 @ 10503452 n 0000 | a young radical who agitates for reform -10804732 18 n 01 Young_Turk 1 001 @ 10210137 n 0000 | a member of one or more of the insurgent groups in Turkey in the late 19th century who rebelled against the absolutism of Ottoman rule -10804923 18 n 01 yuppie 0 001 @ 10480253 n 0000 | a young upwardly mobile professional individual; a well-paid middle-class professional who works in a city and has a luxurious life style -10805113 18 n 01 zany 0 003 @ 09930876 n 0000 + 01265108 a 0104 + 02571536 a 0108 | a buffoon in one of the old comedies; imitates others for ludicrous effect -10805274 18 n 01 Zealot 1 001 @ 09681351 n 0000 | a member of an ancient Jewish sect in Judea in the first century who fought to the death against the Romans and who killed or persecuted Jews who collaborated with the Romans -10805501 18 n 01 Zionist 0 004 @ 09681351 n 0000 + 03131904 a 0101 + 08479202 n 0101 + 06663463 n 0101 | a Jewish supporter of Zionism -10805638 18 n 03 zombi 0 zombie 0 living_dead 0 001 @ 09994943 n 0000 | a dead body that has been brought back to life by a supernatural force -10805783 18 n 03 zombi 2 zombie 2 snake_god 0 001 @ 09505418 n 0000 | a god of voodoo cults of African origin worshipped especially in West Indies -10805932 18 n 04 zombi 3 zombie 3 zombi_spirit 0 zombie_spirit 0 002 @ 09545324 n 0000 ;c 06245816 n 0000 | (voodooism) a spirit or supernatural force that reanimates a dead body -10806113 18 n 01 zoo_keeper 0 001 @ 09984298 n 0000 | the chief person responsible for a zoological garden -10806222 18 n 02 zoologist 0 animal_scientist 0 015 @ 09855630 n 0000 + 06083243 n 0101 ~ 10059904 n 0000 ~ 10065911 n 0000 ~ 10172668 n 0000 ~ 10196617 n 0000 ~ 10284763 n 0000 ~ 10286989 n 0000 ~ 10384214 n 0000 ~ 10486236 n 0000 ~i 10982870 n 0000 ~i 11007181 n 0000 ~i 11105609 n 0000 ~i 11138449 n 0000 ~i 11343040 n 0000 | a specialist in the branch of biology dealing with animals -10806612 18 n 01 Zurvan 0 001 @i 09531630 n 0000 | the Zoroastrian god of time -10806693 18 n 03 Aalto 0 Alvar_Aalto 0 Hugo_Alvar_Henrik_Aalto 0 001 @i 09805475 n 0000 | Finnish architect and designer of furniture (1898-1976) -10806841 18 n 01 Aaron 0 002 @i 10470779 n 0000 ;c 06449735 n 0000 | (Old Testament) elder brother of Moses and first high priest of the Israelites; created the golden calf -10807016 18 n 03 Aaron 1 Henry_Louis_Aaron 0 Hank_Aaron 0 001 @i 09835506 n 0000 | United States professional baseball player who hit more home runs than Babe Ruth (born in 1934) -10807197 18 n 03 Abel 1 Niels_Abel 0 Niels_Henrik_Abel 0 001 @i 10301261 n 0000 | Norwegian mathematician (1802-1829) -10807317 18 n 03 Abelard 0 Peter_Abelard 0 Pierre_Abelard 0 002 @i 10423589 n 0000 @i 10705615 n 0000 | French philosopher and theologian; lover of Heloise (1079-1142) -10807487 18 n 02 Abraham 0 Ibrahim 0 001 @i 10406391 n 0000 | the first of the Old Testament patriarchs and the father of Isaac; according to Genesis, God promised to give Abraham's family (the Hebrews) the land of Canaan (the Promised Land); God tested Abraham by asking him to sacrifice his son; "Judaism, Christianity, and Islam each has a special claim on Abraham" -10807858 18 n 03 Acheson 0 Dean_Acheson 0 Dean_Gooderham_Acheson 0 001 @i 10650162 n 0000 | United States statesman who promoted the Marshall Plan and helped establish NATO (1893-1971) -10808045 18 n 02 Adam 1 Robert_Adam 0 001 @i 09805475 n 0000 | Scottish architect who designed many public buildings in England and Scotland (1728-1792) -10808200 18 n 04 Adams 0 John_Adams 0 President_Adams 0 President_John_Adams 0 001 @i 10467395 n 0000 | 2nd President of the United States (1735-1826) -10808353 18 n 04 Adams 1 John_Quincy_Adams 0 President_Adams 1 President_John_Quincy_Adams 0 001 @i 10467395 n 0000 | 6th President of the United States; son of John Adams (1767-1848) -10808539 18 n 03 Adams 2 Sam_Adams 0 Samuel_Adams 0 001 @i 09740085 n 0000 | American Revolutionary leader and patriot; an organizer of the Boston Tea Party and signer of the Declaration of Independence (1722-1803) -10808756 18 n 02 Adenauer 0 Konrad_Adenauer 0 001 @i 10650162 n 0000 | German statesman; chancellor of West Germany (1876-1967) -10808886 18 n 03 Adrian 0 Edgar_Douglas_Adrian 0 Baron_Adrian 0 001 @i 10429965 n 0000 | English physiologist who conducted research into the function of neurons; 1st baron of Cambridge (1889-1997) -10809086 18 n 01 Aeschylus 0 002 @i 10030277 n 0000 + 03028216 a 0101 | Greek tragedian; the father of Greek tragic drama (525-456 BC) -10809223 18 n 01 Aesop 0 001 @i 10075529 n 0000 | Greek author of fables (circa 620-560 BC) -10809317 18 n 03 Agassiz 0 Louis_Agassiz 0 Jean_Louis_Rodolphe_Agassiz 0 001 @i 10346514 n 0000 | United States naturalist (born in Switzerland) who studied fossil fish; recognized geological evidence that ice ages had occurred in North America (1807-1873) -10809576 18 n 02 Agee 0 James_Agee 0 001 @i 10363573 n 0000 | United States novelist (1909-1955) -10809675 18 n 02 Agricola 0 Gnaeus_Julius_Agricola 0 001 @i 10123844 n 0000 | Roman general who was governor of Britain and extended Roman rule north to the Firth of Forth (37-93) -10809857 18 n 02 Agrippa 0 Marcus_Vipsanius_Agrippa 0 001 @i 10650162 n 0000 | Roman general who commanded the fleet that defeated the forces of Antony and Cleopatra at Actium (63-12 BC) -10810046 18 n 02 Agrippina 0 Agrippina_the_Elder 0 001 @i 09717047 n 0000 | granddaughter of Augustus and mother of Caligula and Agrippina the Younger (14 BC - AD 33) -10810215 18 n 02 Agrippina 1 Agrippina_the_Younger 0 001 @i 09717047 n 0000 | wife who poisoned Claudius after her son Nero was declared heir and who was then put to death by Nero -10810397 18 n 01 Ahab 0 001 @i 10231515 n 0000 | according to the Old Testament he was a pagan king of Israel and husband of Jezebel (9th century BC) -10810549 18 n 03 Aiken 0 Conrad_Aiken 0 Conrad_Potter_Aiken 0 001 @i 10794014 n 0000 | United States writer (1889-1973) -10810671 18 n 02 Ailey 0 Alvin_Ailey 0 001 @i 09920283 n 0000 | United States choreographer noted for his use of African elements (born in 1931) -10810818 18 n 02 a_Kempis 0 Thomas_a_Kempis 0 001 @i 09928136 n 0000 | German ecclesiastic (1380-1471) -10810923 18 n 04 Akhenaton 0 Akhenaten 0 Ikhanaton 0 Amenhotep_IV 0 001 @i 10231515 n 0000 | early ruler of Egypt who rejected the old gods and replaced them with sun worship (died in 1358 BC) -10811118 18 n 01 Alaric 0 001 @i 10231515 n 0000 | king of the Visigoths who captured Rome in 410 (370-410) -10811228 18 n 03 Albee 0 Edward_Albee 0 Edward_Franklin_Albeen 0 001 @i 10030277 n 0000 | United States dramatist (1928-) -10811352 18 n 02 Albers 0 Josef_Albers 0 001 @i 09758424 n 0000 | United States painter born in Germany; works characterized by simple geometrical patterns in various colors (1888-1976) -10811540 18 n 03 Albert 0 Prince_Albert 0 Albert_Francis_Charles_Augustus_Emmanuel 0 001 @i 10473562 n 0000 | prince consort of Queen Victoria of England (1819-1861) -10811708 18 n 02 Alberti 0 Leon_Battista_Alberti 0 002 @i 09805475 n 0000 @i 10391653 n 0000 | Italian architect and painter; pioneering theoretician of Renaissance architecture (1404-1472) -10811900 18 n 01 Alcaeus 0 002 @i 10444194 n 0000 @i 09711530 n 0000 | Greek lyric poet of Lesbos; reputed inventor of Alcaic verse (611-580 BC) -10812047 18 n 01 Alcibiades 0 003 @i 10123844 n 0000 @i 10650162 n 0000 @i 09711132 n 0000 | ancient Athenian statesman and general in the Peloponnesian War (circa 450-404 BC) -10812225 18 n 02 Alcott 0 Louisa_May_Alcott 0 001 @i 10363573 n 0000 | United States novelist noted for children's books (1832-1888) -10812360 18 n 02 Alexander 0 Alexander_the_Great 0 002 @i 09956578 n 0000 + 03028338 a 0101 | king of Macedon; conqueror of Greece and Egypt and Persia; founder of Alexandria (356-323 BC) -10812550 18 n 03 Alexander_I 0 Czar_Alexander_I 0 Aleksandr_Pavlovich 0 002 @i 09987239 n 0000 ;r 09002814 n 0000 | the czar of Russia whose plans to liberalize the government of Russia were unrealized because of the wars with Napoleon (1777-1825) -10812800 18 n 03 Alexander_II 0 Czar_Alexander_II 0 Alexander_the_Liberator 0 002 @i 09987239 n 0000 ;r 09002814 n 0000 | the son of Nicholas I who, as czar of Russia, introduced reforms that included limited emancipation of the serfs (1818-1881) -10813049 18 n 02 Alexander_III 0 Czar_Alexander_III 0 002 @i 09987239 n 0000 ;r 09002814 n 0000 | son of Alexander II who was czar of Russia (1845-1894) -10813204 18 n 04 Alexander_VI 0 Pope_Alexander_VI 0 Borgia 1 Rodrigo_Borgia 0 001 @i 10453533 n 0000 | Pope and father of Cesare Borgia and Lucrezia Borgia (1431-1503) -10813374 18 n 02 Alfred 0 Alfred_the_Great 0 001 @i 10231515 n 0000 | king of Wessex; defeated the Vikings and encouraged writing in English (849-899) -10813527 18 n 02 Alger 0 Horatio_Alger 0 001 @i 10794014 n 0000 | United States author of inspirational adventure stories for boys; virtue and hard work overcome poverty (1832-1899) -10813711 18 n 02 Algren 0 Nelson_Algren 0 001 @i 10794014 n 0000 | United States writer (1909-1981) -10813813 18 n 01 Al-hakim 0 001 @i 10519494 n 0000 | an Ismaili caliph of Egypt who declared himself an incarnation of God and founded the Druze religious sect (985-1021) -10813986 18 n 05 Alhazen 0 Alhacen 0 al-Haytham 0 Ibn_al-Haytham 0 Al-Hasan_ibn_al-Haytham 0 003 @i 10301261 n 0000 @i 10428004 n 0000 @i 09818343 n 0000 | an Egyptian polymath (born in Iraq) whose research in geometry and optics was influential into the 17th century; established experiments as the norm of proof in physics (died in 1040) -10814328 18 n 01 Ali 0 001 @i 09887496 n 0000 | the fourth caliph of Islam who is considered to be the first caliph by Shiites; he was a cousin and son-in-law of Muhammad; after his assassination Islam was divided into Shiite and Sunnite sects -10814574 18 n 04 Ali 1 Muhammad_Ali 0 Cassius_Clay 0 Cassius_Marcellus_Clay 0 001 @i 10477077 n 0000 | United States prizefighter who won the world heavyweight championship three times (born in 1942) -10814776 18 n 02 Allen 0 Ethan_Allen 0 001 @i 10622053 n 0000 | a soldier of the American Revolution whose troops helped capture Fort Ticonderoga from the British (1738-1789) -10814953 18 n 03 Allen 1 Woody_Allen 0 Allen_Stewart_Konigsberg 0 002 @i 10088390 n 0000 @i 09765278 n 0000 | United States filmmaker and comic actor (1935-) -10815113 18 n 04 Allen 2 Gracie_Allen 0 Grace_Ethel_Cecile_Rosalie_Allen 0 Gracie 0 001 @i 09940818 n 0000 | United States comedienne remembered as the confused but imperturbable partner of her husband, George Burns (1906-1964) -10815343 18 n 02 Alonso 0 Alicia_Alonso 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | Cuban dancer and choreographer (born in 1921) -10815477 18 n 03 Amati 0 Nicolo_Amati 0 Nicola_Amati 0 001 @i 10754920 n 0000 | Italian violin maker in Cremona; taught the craft to Guarneri and Stradivari (1596-1684) -10815648 18 n 03 Ambrose 0 Saint_Ambrose 0 St._Ambrose 0 008 @i 09857200 n 0000 @i 10705615 n 0000 @i 09947232 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 + 02616071 a 0101 | (Roman Catholic Church) Roman priest who became bishop of Milan; the first Church Father born and raised in the Christian faith; composer of hymns; imposed orthodoxy on the early Christian church and built up its secular power; a saint and Doctor of the Church (340?-397) -10816136 18 n 01 Amos 0 001 @i 10483890 n 0000 | a Hebrew shepherd and minor prophet -10816223 18 n 02 Amundsen 0 Roald_Amundsen 0 001 @i 10072708 n 0000 | Norwegian explorer who was the first to traverse the Northwest Passage and in 1911 the first to reach the South Pole (1872-1928) -10816424 18 n 01 Anaxagoras 0 001 @i 10423589 n 0000 | a presocratic Athenian philosopher who maintained that everything is composed of very small particles that were arranged by some eternal intelligence (500-428 BC) -10816644 18 n 01 Anaximander 0 002 @i 10423589 n 0000 @i 09818343 n 0000 | a presocratic Greek philosopher and student of Thales who believed the universal substance to be infinity rather than something resembling ordinary objects (611-547 BC) -10816890 18 n 01 Anaximenes 0 001 @i 10423589 n 0000 | a presocratic Greek philosopher and associate of Anaximander who believed that all things are made of air in different degrees of density (6th century BC) -10817102 18 n 02 Andersen 0 Hans_Christian_Andersen 0 001 @i 10794014 n 0000 | a Danish author remembered for his fairy stories (1805-1875) -10817244 18 n 03 Anderson 0 Carl_Anderson 0 Carl_David_Anderson 0 001 @i 10364643 n 0000 | United States physicist who discovered antimatter in the form of an antielectron that is called the positron (1905-1991) -10817458 18 n 02 Anderson 1 Marian_Anderson 0 001 @i 09961198 n 0000 | United States contralto noted for her performance of spirituals (1902-1993) -10817607 18 n 02 Anderson 2 Maxwell_Anderson 0 001 @i 10030277 n 0000 | United States dramatist (1888-1959) -10817717 18 n 04 Anderson 3 Philip_Anderson 0 Philip_Warren_Anderson 0 Phil_Anderson 0 001 @i 10428004 n 0000 | United States physicist who studied the electronic structure of magnetic and disordered systems (1923-) -10817935 18 n 02 Anderson 4 Sherwood_Anderson 0 001 @i 10794014 n 0000 | United States author whose works were frequently autobiographical (1876-1941) -10818088 18 n 04 Andrew 0 Saint_Andrew 0 St._Andrew 0 Saint_Andrew_the_Apostle 0 003 @i 09798811 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) disciple of Jesus; brother of Peter; patron saint of Scotland -10818312 18 n 02 Andrews 0 Roy_Chapman_Andrews 0 001 @i 10346514 n 0000 | United States naturalist who contributed to paleontology and geology (1884-1960) -10818469 18 n 01 Anne 0 001 @i 10499631 n 0000 | Queen of England and Scotland and Ireland; daughter if James II and the last of the Stuart monarchs; in 1707 she was the last English ruler to exercise the royal veto over parliament (1665-1714) -10818715 18 n 02 Anouilh 0 Jean_Anouilh 0 001 @i 10030277 n 0000 | French dramatist noted for his reinterpretations of Greek myths (1910-1987) -10818860 18 n 03 Anselm 0 Saint_Anselm 0 St._Anselm 0 002 @i 09805151 n 0000 @i 10547145 n 0000 | an Italian who was a Benedictine monk; was archbishop of Canterbury from 1093 to 1109; one of the founders of scholasticism; best known for his proof of the existence of God -10819134 18 n 04 Anthony 1 Susan_Anthony 0 Susan_B._Anthony 0 Susan_Brownell_Anthony 0 001 @i 10672908 n 0000 | United States suffragist (1820-1906) -10819285 18 n 01 Antichrist 0 002 @i 09773245 n 0000 ;c 06226057 n 0000 | (Christianity) the adversary of Christ (or Christianity) mentioned in the New Testament; the Antichrist will rule the world until overthrown by the Second Coming of Christ -10819533 18 n 03 Antigonus 0 Antigonus_Cyclops 0 Monophthalmos 0 002 @i 10123844 n 0000 @i 09721444 n 0000 | a general of Alexander the Great and king of Macedonia; lost one eye; killed in a battle at Ipsus (382-301 BC) -10819755 18 n 05 Antoninus 0 Aurelius 0 Marcus_Aurelius 0 Marcus_Aurelius_Antoninus 0 Marcus_Annius_Verus 0 001 @i 10537240 n 0000 | Emperor of Rome; nephew and son-in-law and adoptive son of Antonius Pius; Stoic philosopher; the decline of the Roman Empire began under Marcus Aurelius (121-180) -10820053 18 n 01 Antonius_Pius 0 001 @i 10537240 n 0000 | Emperor of Rome; adoptive son of Hadrian (86-161) -10820163 18 n 06 Antony 0 Anthony 0 Mark_Antony 0 Mark_Anthony 0 Antonius 0 Marcus_Antonius 0 001 @i 10123844 n 0000 | Roman general under Julius Caesar in the Gallic wars; repudiated his wife for the Egyptian queen Cleopatra; they were defeated by Octavian at Actium (83-30 BC) -10820444 18 n 03 Apollinaire 0 Guillaume_Apollinaire 0 Wilhelm_Apollinaris_de_Kostrowitzki 0 001 @i 10444194 n 0000 | French poet; precursor of surrealism (1880-1918) -10820613 18 n 03 Appleton 0 Edward_Appleton 0 Sir_Edward_Victor_Appleton 0 001 @i 10428004 n 0000 | English physicist remembered for his studies of the ionosphere (1892-1966) -10820790 18 n 06 Aquinas 0 Thomas_Aquinas 0 Saint_Thomas 0 St._Thomas 0 Saint_Thomas_Aquinas 0 St._Thomas_Aquinas 0 004 @i 10705615 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) Italian theologian and Doctor of the Church who is remembered for his attempt to reconcile faith and reason in a comprehensive theology; presented philosophical proofs of the existence of God (1225-1274) -10821218 18 n 02 Arafat 0 Yasser_Arafat 0 001 @i 10650162 n 0000 | Palestinian statesman who was chairman of the Palestine Liberation Organization (1929-2004) -10821379 18 n 02 Aragon 0 Louis_Aragon 0 001 @i 10794014 n 0000 | French writer who generalized surrealism to literature (1897-1982) -10821514 18 n 01 Archimedes 0 002 @i 10301261 n 0000 @i 10428004 n 0000 | Greek mathematician and physicist noted for his work in hydrostatics and mechanics and geometry (287-212 BC) -10821699 18 n 02 Arendt 0 Hannah_Arendt 0 002 @i 10177150 n 0000 @i 10423589 n 0000 | United States historian and political philosopher (born in Germany) (1906-1975) -10821867 18 n 01 Aristarchus 0 001 @i 10141364 n 0000 | an ancient Greek grammarian remembered for his commentary on the Iliad and Odyssey (circa 217-145 BC) -10822027 18 n 01 Aristarchus_of_Samos 0 001 @i 09818343 n 0000 | an ancient Greek astronomer who was one of the first to propose a heliocentric theory of the universe (circa 270 BC) -10822211 18 n 01 Aristophanes 0 001 @i 10030277 n 0000 | an ancient Greek dramatist remembered for his comedies (448-380 BC) -10822338 18 n 01 Aristotle 0 004 @i 10423589 n 0000 + 03028465 a 0101 + 03028465 a 0102 -c 13955152 n 0000 | one of the greatest of the ancient Athenian philosophers; pupil of Plato; teacher of Alexander the Great (384-322 BC) -10822567 18 n 01 Arius 0 001 @i 10705615 n 0000 | a Greek who was a Christian theologian active in Alexandria and who was declared a heretic for his doctrines about God (which came to be known as Arianism) (256?-336) -10822786 18 n 03 Arminius 0 Armin 0 Hermann 0 002 @i 10325013 n 0000 @i 09747722 n 0000 | German hero; leader at the battle of Teutoburger Wald in AD 9 (circa 18 BC - AD 19) -10822962 18 n 04 Arminius 1 Jacobus_Arminius 0 Jacob_Harmensen 0 Jakob_Hermandszoon 0 001 @i 10705615 n 0000 | Dutch Protestant theologian who founded Arminianism which opposed the absolute predestinarianism of John Calvin (1559-1609) -10823199 18 n 03 Armstrong 0 Louis_Armstrong 0 Satchmo 0 002 @i 10220486 n 0000 @i 10732010 n 0000 | United States pioneering jazz trumpeter and bandleader (1900-1971) -10823369 18 n 02 Armstrong 1 Neil_Armstrong 0 001 @i 09818022 n 0000 | United States astronaut; the first man to set foot on the Moon (July 20, 1969) (1930-) -10823529 18 n 02 Arnold 0 Benedict_Arnold 0 002 @i 10123844 n 0000 @i 10722965 n 0000 | United States general and traitor in the American Revolution; in 1780 his plan to surrender West Point to the British was foiled (1741-1801) -10823760 18 n 02 Arnold 1 Matthew_Arnold 0 002 @i 10444194 n 0000 @i 10266016 n 0000 | English poet and literary critic (1822-1888) -10823894 18 n 01 Arnold_of_Brescia 0 001 @i 10705615 n 0000 | Italian theologian who censured the worldly possessions of monks and the temporal power of bishops and was condemned for dogmatic errors by the Second Lateran Council (early 12th century) -10824146 18 n 03 Arp 0 Jean_Arp 0 Hans_Arp 0 002 @i 09812338 n 0000 @i 10444194 n 0000 | Alsatian artist and poet who was cofounder of dadaism in Zurich; noted for abstract organic sculptures (1887-1966) -10824352 18 n 02 Arrhenius 0 Svante_August_Arrhenius 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | Swedish chemist and physicist noted for his theory of chemical dissociation (1859-1927) -10824541 18 n 02 Artaxerxes_I 0 Artaxerxes 1 002 @i 10231515 n 0000 @i 09714429 n 0000 | king of Persia who sanctioned the practice of Judaism in Jerusalem (?-424 BC) -10824710 18 n 02 Artaxerxes_II 0 Artaxerxes 2 002 @i 10231515 n 0000 @i 09714429 n 0000 | king of Persia who subdued numerous revolutions and made peace with Sparta (?-359 BC) -10824888 18 n 02 Arthur 0 King_Arthur 0 002 @i 09587565 n 0000 + 02643082 a 0101 | a legendary king of the Britons (possibly based on a historical figure in the 6th century but the story has been retold too many times to be sure); said to have led the Knights of the Round Table at Camelot -10825180 18 n 04 Arthur 1 Chester_A._Arthur 0 Chester_Alan_Arthur 0 President_Arthur 0 001 @i 10467395 n 0000 | elected vice president and became 21st President of the United States when Garfield was assassinated (1830-1886) -10825407 18 n 01 Asanga 0 001 @i 10519494 n 0000 | Indian religious leader and founder of the Yogacara school of Buddhism in India (4th century) -10825554 18 n 04 Asch 0 Sholem_Asch 0 Shalom_Asch 0 Sholom_Asch 0 001 @i 10794014 n 0000 | United States writer (born in Poland) who wrote in Yiddish (1880-1957) -10825718 18 n 03 Ashe 0 Arthur_Ashe 0 Arthur_Robert_Ashe 0 001 @i 10701180 n 0000 | United States tennis player who was the first Black to win United States and English singles championships (1943-1993) -10825923 18 n 02 Ashton 0 Sir_Frederick_Ashton 0 001 @i 09920283 n 0000 | British choreographer (1906-1988) -10826033 18 n 03 Ashurbanipal 0 Assurbanipal 0 Asurbanipal 0 001 @i 10231515 n 0000 | king of Assyria who built a magnificent palace and library at Nineveh (668-627 BC) -10826204 18 n 02 Asimov 0 Isaac_Asimov 0 001 @i 10794014 n 0000 | United States writer (born in Russia) noted for his science fiction (1920-1992) -10826352 18 n 02 Astaire 0 Fred_Astaire 0 003 @i 09989502 n 0000 @i 09920283 n 0000 @i 09765278 n 0000 | United States dancer and cinema actor noted for his original and graceful tap dancing (1899-1987) -10826557 18 n 02 Astor 0 John_Jacob_Astor 0 001 @i 09609232 n 0000 | United States capitalist (born in Germany) who made a fortune in fur trading (1763-1848) -10826717 18 n 03 Astor 1 Nancy_Witcher_Astor 0 Viscountess_Astor 0 002 @i 10755926 n 0000 @i 10450303 n 0000 | British politician (born in the United States) who was the first woman to sit in the British House of Commons (1879-1964) -10826952 18 n 04 Ataturk 0 Kemal_Ataturk 0 Kemal_Pasha 0 Mustafa_Kemal 0 001 @i 10650162 n 0000 | Turkish statesman who abolished the caliphate and founded Turkey as a modern secular state (1881-1938) -10827155 18 n 04 Athanasius 0 Saint_Athanasius 0 St._Athanasius 0 Athanasius_the_Great 0 005 @i 10705615 n 0000 @i 10547145 n 0000 @i 09921792 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) Greek patriarch of Alexandria who championed Christian orthodoxy against Arianism; a church father, saint, and Doctor of the Church (293-373) -10827513 18 n 01 Athelstan 0 002 @i 10231515 n 0000 @i 09702836 n 0000 | the first Saxon ruler who extended his kingdom to include nearly all of England (895-939) -10827678 18 n 04 Attila 0 Attila_the_Hun 0 Scourge_of_God 0 Scourge_of_the_Gods 0 001 @i 10231515 n 0000 | king of the Huns; the most successful barbarian invader of the Roman Empire (406-453) -10827873 18 n 04 Attlee 0 Clement_Attlee 0 Clement_Richard_Attlee 0 1st_Earl_Attlee 0 001 @i 10650162 n 0000 | British statesman and leader of the Labour Party who instituted the welfare state in Britain (1883-1967) -10828091 18 n 03 Auchincloss 0 Louis_Auchincloss 0 Louis_Stanton_Auchincloss 0 001 @i 10794014 n 0000 | United States writer (born in 1917) -10828233 18 n 03 Auden 0 W._H._Auden 0 Wystan_Hugh_Auden 0 001 @i 10444194 n 0000 | United States poet (born in England) (1907-1973) -10828368 18 n 02 Audubon 0 John_James_Audubon 0 002 @i 10384214 n 0000 @i 09812338 n 0000 | United States ornithologist and artist (born in Haiti) noted for his paintings of birds of America (1785-1851) -10828573 18 n 04 Augustine 0 Saint_Augustine 0 St._Augustine 0 Augustine_of_Hippo 0 005 @i 10705615 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) one of the great Fathers of the early Christian church; after a dramatic conversion to Christianity he became bishop of Hippo Regius in North Africa; St. Augustine emphasized man's need for grace (354-430) -10828990 18 n 04 Augustus 0 Gaius_Octavianus 0 Gaius_Julius_Caesar_Octavianus 0 Octavian 0 003 @i 10650162 n 0000 @i 10537240 n 0000 + 03045585 a 0101 | Roman statesman who established the Roman Empire and became emperor in 27 BC; defeated Mark Antony and Cleopatra in 31 BC at Actium (63 BC - AD 14) -10829293 18 n 02 Austen 0 Jane_Austen 0 001 @i 10794014 n 0000 | English novelist noted for her insightful portrayals of middle-class families (1775-1817) -10829450 18 n 03 Averroes 0 ibn-Roshd 0 Abul-Walid_Mohammed_ibn-Ahmad_Ibn-Mohammed_ibn-Roshd 0 003 @i 10423589 n 0000 @i 10249950 n 0000 @i 10020890 n 0000 | Arabian philosopher born in Spain; wrote detailed commentaries on Aristotle that were admired by the Schoolmen (1126-1198) -10829733 18 n 03 Avicenna 0 ibn-Sina 0 Abu_Ali_al-Husain_ibn_Abdallah_ibn_Sina 0 002 @i 10423589 n 0000 @i 10020890 n 0000 | Arabian physician and influential Islamic philosopher; his interpretation of Aristotle influenced St. Thomas Aquinas; writings on medicine were important for almost 500 years (980-1037) -10830046 18 n 02 Avogadro 0 Amedeo_Avogadro 0 001 @i 10428004 n 0000 | Italian physicist noted for his work on gases; proposed what has come to be called Avogadro's law (1776-1856) -10830229 18 n 02 Bach 0 Johann_Sebastian_Bach 0 002 @i 10382825 n 0000 @i 09947232 n 0000 | German baroque organist and contrapuntist; composed mostly keyboard music; one of the greatest creators of western music (1685-1750) -10830456 18 n 06 Bacon 0 Francis_Bacon 0 Sir_Francis_Bacon 0 Baron_Verulam 0 1st_Baron_Verulam 0 Viscount_St._Albans 0 002 @i 10650162 n 0000 @i 10423589 n 0000 | English statesman and philosopher; precursor of British empiricism; advocated inductive reasoning (1561-1626) -10830731 18 n 02 Bacon 1 Roger_Bacon 0 002 @i 10112129 n 0000 @i 10560637 n 0000 | English scientist and Franciscan monk who stressed the importance of experimentation; first showed that air is required for combustion and first used lenses to correct vision (1220-1292) -10831003 18 n 02 Baedeker 0 Karl_Baedeker 0 001 @i 10491309 n 0000 | German publisher of a series of travel guidebooks (1801-1859) -10831136 18 n 03 Bailey 0 Nathan_Bailey 0 Nathaniel_Bailey 0 001 @i 10256080 n 0000 | English lexicographer who was the first to treat etymology consistently; his work was used as a reference by Samuel Johnson (died in 1742) -10831363 18 n 03 Bailey 1 Pearl_Bailey 0 Pearl_Mae_Bailey 0 001 @i 10599806 n 0000 | United States singer (1918-1990) -10831483 18 n 03 Bakunin 0 Mikhail_Bakunin 0 Mikhail_Aleksandrovich_Bakunin 0 001 @i 09791816 n 0000 | Russian anarchist; ally and later opponent of Karl Marx (1814-1876) -10831656 18 n 02 Balanchine 0 George_Balanchine 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer (born in Russia) noted for his abstract and formal works (1904-1983) -10831860 18 n 02 Balboa 0 Vasco_Nunez_de_Balboa 0 001 @i 10347883 n 0000 | Spanish explorer who in 1513 crossed the Isthmus of Darien and became the first European to see the eastern shores of the Pacific Ocean (1475-1519) -10832085 18 n 03 Baldwin 0 Stanley_Baldwin 0 1st_Earl_Baldwin_of_Bewdley 0 001 @i 10650162 n 0000 | English statesman; member of the Conservative Party (1867-1947) -10832251 18 n 03 Baldwin 1 James_Baldwin 0 James_Arthur_Baldwin 0 001 @i 10794014 n 0000 | United States author who was an outspoken critic of racism (1924-1987) -10832415 18 n 02 Balenciaga 0 Cristobal_Balenciaga 0 001 @i 09972157 n 0000 | Spanish fashion designer known for his stark elegant designs (1895-1972) -10832568 18 n 03 Balfour 0 Arthur_James_Balfour 0 1st_Earl_of_Balfour 0 001 @i 10650162 n 0000 | English statesman; member of the Conservative Party (1848-1930) -10832731 18 n 02 Ball 0 Lucille_Ball 0 002 @i 09767700 n 0000 @i 09940818 n 0000 | United States comedienne best known as the star of a popular television program (1911-1989) -10832908 18 n 02 Balthazar 0 Balthasar 0 003 @i 10546202 n 0000 #m 08486538 n 0000 ;c 06453849 n 0000 | (New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus -10833111 18 n 03 Balzac 0 Honore_Balzac 0 Honore_de_Balzac 0 002 @i 10363573 n 0000 + 03028863 a 0101 | French novelist; he portrays the complexity of 19th century French society (1799-1850) -10833304 18 n 02 Bankhead 0 Tallulah_Bankhead 0 001 @i 09767700 n 0000 | uninhibited United States actress (1903-1968) -10833425 18 n 02 Banks 0 Sir_Joseph_Banks 0 001 @i 09868270 n 0000 | English botanist who accompanied Captain Cook on his first voyage to the Pacific Ocean (1743-1820) -10833595 18 n 03 Bannister 0 Roger_Bannister 0 Sir_Roger_Gilbert_Bannister 0 001 @i 10108089 n 0000 | English runner who in 1954 became the first person to run a mile in less than four minutes (born in 1929) -10833805 18 n 03 Banting 0 F._G._Banting 0 Sir_Frederick_Grant_Banting 0 001 @i 10429965 n 0000 | Canadian physiologist who discovered insulin with C. H. Best and who used it to treat diabetes(1891-1941) -10834011 18 n 03 Baraka 0 Imamu_Amiri_Baraka 0 LeRoi_Jones 0 001 @i 10794014 n 0000 | United States writer of poems and plays about racial conflict (born in 1934) -10834176 18 n 02 Barany 0 Robert_Barany 0 001 @i 10020890 n 0000 | Austrian physician who developed a rotational method for testing the middle ear (1876-1936) -10834337 18 n 02 Barbarossa 1 Khayr_ad-Din 0 001 @i 09966941 n 0000 | Barbary pirate (died in 1546) -10834439 18 n 02 Barber 1 Samuel_Barber 0 001 @i 09947232 n 0000 | United States composer (1910-1981) -10834543 18 n 02 Bardeen 0 John_Bardeen 0 001 @i 10428004 n 0000 | United States physicist who won the Nobel prize for physics twice (1908-1991) -10834690 18 n 03 Barkley 0 Alben_Barkley 0 Alben_William_Barkley 0 001 @i 10450303 n 0000 | United States politician and lawyer; vice president of the United States (1877-1956) -10834869 18 n 03 Barnum 0 P._T._Barnum 0 Phineas_Taylor_Barnum 0 001 @i 10593745 n 0000 | United States showman who popularized the circus (1810-1891) -10835022 18 n 05 Barrie 0 James_Barrie 0 J._M._Barrie 0 James_Matthew_Barrie 0 Sir_James_Matthew_Barrie 0 001 @i 10030277 n 0000 | Scottish dramatist and novelist; created Peter Pan (1860-1937) -10835218 18 n 03 Barrymore 0 Maurice_Barrymore 0 Herbert_Blythe 0 001 @i 09765278 n 0000 | United States actor; husband of Georgiana Emma Barrymore and father of Ethel Barrymore and John Barrymore and Lionel Barrymore (1847-1905) -10835450 18 n 03 Barrymore 1 Georgiana_Barrymore 0 Georgiana_Emma_Barrymore 0 001 @i 09767700 n 0000 | United States actress; daughter of John Drew and wife of Maurice Barrymore; mother of Ethel Barrymore and John Barrymore and Lionel Barrymore (1854-1893) -10835709 18 n 02 Barrymore 2 Lionel_Barrymore 0 001 @i 09765278 n 0000 | United States actor; son of Maurice Barrymore and Georgiana Barrymore (1878-1954) -10835866 18 n 02 Barrymore 3 Ethel_Barrymore 0 001 @i 09767700 n 0000 | United States actress; daughter of Maurice Barrymore and Georgiana Barrymore (1879-1959) -10836029 18 n 02 Barrymore 4 John_Barrymore 0 001 @i 09765278 n 0000 | United States actor; son of Maurice Barrymore and Georgiana Barrymore (1882-1942) -10836184 18 n 03 Barth 0 John_Barth 0 John_Simmons_Barth 0 001 @i 10794014 n 0000 | United States novelist (born in 1930) -10836308 18 n 02 Barth 1 Karl_Barth 0 001 @i 10705615 n 0000 | Swiss Protestant theologian (1886-1968) -10836413 18 n 02 Barthelme 0 Donald_Barthelme 0 001 @i 10794014 n 0000 | United States author of sometimes surrealistic stories (1931-1989) -10836555 18 n 02 Bartholdi 0 Frederic_Auguste_Bartholdi 0 001 @i 10566072 n 0000 | French sculptor best known for creating the Statue of Liberty now in New York harbor -10836725 18 n 02 Bartholin 0 Caspar_Bartholin 0 001 @i 10020890 n 0000 | Danish physician who discovered Bartholin's gland (1585-1629) -10836862 18 n 02 Bartlett 0 John_Bartlett 0 001 @i 10491309 n 0000 | United States publisher and editor who compiled a book of familiar quotations (1820-1905) -10837023 18 n 04 Bartlett 1 Robert_Bartlett 0 Robert_Abram_Bartlett 0 Captain_Bob 0 001 @i 10072708 n 0000 | United States explorer who accompanied Peary's expedition to the North Pole and who led many other Arctic trips (1875-1946) -10837258 18 n 02 Bartok 0 Bela_Bartok 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | Hungarian composer and pianist who collected Hungarian folk music; in 1940 he moved to the United States (1881-1945) -10837461 18 n 01 Baruch 0 001 @i 10016103 n 0000 | a disciple of and secretary for the prophet Jeremiah -10837567 18 n 03 Baruch 1 Bernard_Baruch 0 Bernard_Mannes_Baruch 0 002 @i 10090020 n 0000 @i 10650162 n 0000 | economic advisor to United States Presidents (1870-1965) -10837737 18 n 02 Baryshnikov 0 Mikhail_Baryshnikov 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | Russian dancer and choreographer who migrated to the United States (born in 1948) -10837918 18 n 05 Basil 0 St._Basil 0 Basil_of_Caesarea 0 Basil_the_Great 0 St._Basil_the_Great 0 005 @i 10705615 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) the bishop of Caesarea who defended the Roman Catholic Church against the heresies of the 4th century; a saint and Doctor of the Church (329-379) -10838288 18 n 01 Bathsheba 0 002 @i 10780632 n 0000 ;c 06449735 n 0000 | (Old Testament) the wife of Uriah and later the wife of king David; Solomon was her son by David (circa 10th century BC) -10838484 18 n 03 Baudelaire 0 Charles_Baudelaire 0 Charles_Pierre_Baudelaire 0 001 @i 10444194 n 0000 | a French poet noted for macabre imagery and evocative language (1821-1867) -10838665 18 n 03 Baum 0 Frank_Baum 0 Lyman_Frank_Brown 0 001 @i 10794014 n 0000 | United States writer of children's books (1856-1919) -10838802 18 n 05 Bayard 0 Seigneur_de_Bayard 0 Chevalier_de_Bayard 0 Pierre_Terrail 0 Pierre_de_Terrail 0 001 @i 10622053 n 0000 | French soldier said to be fearless and chivalrous (1473-1524) -10838997 18 n 02 Bayes 0 Thomas_Bayes 0 001 @i 10301261 n 0000 | English mathematician for whom Bayes' theorem is named (1702-1761) -10839131 18 n 03 Beadle 1 George_Beadle 0 George_Wells_Beadle 0 001 @i 09855630 n 0000 | United States biologist who discovered how hereditary characteristics are transmitted by genes (1903-1989) -10839329 18 n 02 Beaumont 0 Francis_Beaumont 0 001 @i 10030277 n 0000 | English dramatist who collaborated with John Fletcher (1584-1616) -10839469 18 n 02 Beaumont 1 William_Beaumont 0 001 @i 10679174 n 0000 | United States surgeon remembered for his studies of digestion (1785-1853) -10839617 18 n 02 Beauvoir 0 Simone_de_Beauvoir 0 003 @i 10084635 n 0000 @i 10071557 n 0000 @i 10794014 n 0000 | French feminist and existentialist and novelist (1908-1986) -10839791 18 n 03 Beaverbrook 0 1st_Baron_Beaverbrook 0 William_Maxwell_Aitken 0 002 @i 10491575 n 0000 @i 10450303 n 0000 | British newspaper publisher and politician (born in Canada); confidant of Winston Churchill (1879-1964) -10840021 18 n 04 Becket 0 Thomas_a_Becket 0 Saint_Thomas_a_Becket 0 St._Thomas_a_Becket 0 004 @i 09805151 n 0000 @i 10296832 n 0000 @i 10547145 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) archbishop of Canterbury from 1162 to 1170; murdered following his opposition to Henry II's attempts to control the clergy (1118-1170) -10840354 18 n 02 Beckett 0 Samuel_Beckett 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | a playwright and novelist (born in Ireland) who lived in France; wrote plays for the theater of the absurd (1906-1989) -10840563 18 n 03 Becquerel 0 Henri_Becquerel 0 Antoine_Henri_Becquerel 0 001 @i 10428004 n 0000 | French physicist who discovered that rays emitted by uranium salts affect photographic plates (1852-1908) -10840769 18 n 0a Bede 0 Saint_Bede 0 St._Bede 0 Baeda 0 Saint_Baeda 0 St._Baeda 0 Beda 0 Saint_Beda 0 St._Beda 0 the_Venerable_Bede 0 005 @i 10705615 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 @i 10177150 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) English monk and scholar (672-735) -10841065 18 n 02 Beecher 0 Henry_Ward_Beecher 0 002 @i 09927451 n 0000 @i 09756637 n 0000 | United States clergyman who was a leader for the abolition of slavery (1813-1887) -10841241 18 n 03 Beerbohm 0 Max_Beerbohm 0 Sir_Henry_Maxmilian_Beerbohm 0 002 @i 10794014 n 0000 @i 09896170 n 0000 | English writer and caricaturist (1872-1956) -10841405 18 n 03 Beethoven 0 van_Beethoven 0 Ludwig_van_Beethoven 0 002 @i 09947232 n 0000 + 03028987 a 0101 | German composer of instrumental music (especially symphonic and chamber music); continued to compose after he lost his hearing (1770-1827) -10841657 18 n 02 Begin 0 Menachem_Begin 0 001 @i 10650162 n 0000 | Israeli statesman (born in Russia) who (as prime minister of Israel) negotiated a peace treaty with Anwar Sadat (then the president of Egypt) (1913-1992) -10841880 18 n 02 Behrens 0 Peter_Behrens 0 001 @i 09805475 n 0000 | German architect known for his simple utilitarian factory buildings (1868-1940) -10842030 18 n 01 Belisarius 0 001 @i 10123844 n 0000 | Byzantine general under Justinian I; he recovered former Roman territories in northern Africa and fought against the Persians -10842213 18 n 03 Bell 0 Alexander_Bell 0 Alexander_Graham_Bell 0 001 @i 10214637 n 0000 | United States inventor (born in Scotland) of the telephone (1847-1922) -10842376 18 n 03 Bell 1 Vanessa_Bell 0 Vanessa_Stephen 0 002 @i 10391653 n 0000 #m 08240966 n 0000 | English painter; sister of Virginia Woolf; prominent member of the Bloomsbury Group (1879-1961) -10842575 18 n 03 Bell 2 Melville_Bell 0 Alexander_Melville_Bell 0 001 @i 10426454 n 0000 | a phonetician and father of Alexander Graham Bell (1819-1905) -10842730 18 n 04 Bellarmine 0 Bellarmino 0 Cardinal_Bellarmine 0 Roberto_Francesco_Romolo_Bellarmine 0 002 @i 09894143 n 0000 @i 10705615 n 0000 | Italian cardinal and theologian (1542-1621) -10842923 18 n 02 Bellini 0 Vincenzo_Bellini 0 001 @i 09947232 n 0000 | Italian composer of operas (1801-1835) -10843035 18 n 03 Belloc 0 Hilaire_Belloc 0 Joseph_Hilaire_Peter_Belloc 0 001 @i 10794014 n 0000 | English author (born in France) remembered especially for his verse for children (1870-1953) -10843228 18 n 03 Bellow 0 Saul_Bellow 0 Solomon_Bellow 0 001 @i 10794014 n 0000 | United States author (born in Canada) whose novels influenced American literature after World War II (1915-2005) -10843425 18 n 01 Belshazzar 0 002 @i 10123844 n 0000 ;c 06449735 n 0000 | (Old Testament) Babylonian general and son of Nebuchadnezzar II; according to the Old Testament he was warned of his doom by divine handwriting on the wall that was interpreted by Daniel (6th century BC) -10843705 18 n 03 Benchley 0 Robert_Benchley 0 Robert_Charles_Benchley 0 002 @i 10191943 n 0000 @i 10794014 n 0000 | United States humorist (1889-1945) -10843858 18 n 03 Benedict 0 Saint_Benedict 0 St._Benedict 0 002 @i 10112129 n 0000 @i 10547145 n 0000 | Italian monk who founded the Benedictine order about 540 (480-547) -10844031 18 n 02 Benedict_XIV 0 Prospero_Lambertini 0 001 @i 10453533 n 0000 | pope who was a patron of the arts and who denounced the cruelty to the indigenous peoples of South America (1675-1758) -10844231 18 n 02 Benedict_XV 0 Giacomo_della_Chiesa 0 001 @i 10453533 n 0000 | pope who founded the Vatican service for prisoners of war during World War I (1854-1922) -10844401 18 n 03 Benedict 2 Ruth_Benedict 0 Ruth_Fulton 0 001 @i 09796323 n 0000 | United States anthropologist (1887-1948) -10844527 18 n 02 Benet 0 William_Rose_Benet 0 001 @i 10794014 n 0000 | United States writer; brother of Stephen Vincent Benet (1886-1950) -10844667 18 n 02 Benet 1 Stephen_Vincent_Benet 0 001 @i 10444194 n 0000 | United States poet; brother of William Rose Benet (1898-1943) -10844805 18 n 03 Ben_Gurion 0 David_Ben_Gurion 0 David_Grun 0 001 @i 10650162 n 0000 | Israeli statesman (born in Poland) and active Zionist who organized resistance against the British after World War II; prime minister of Israel (1886-1973) -10845050 18 n 01 Benjamin 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the youngest and best-loved son of Jacob and Rachel and one of the twelve forebears of the tribes of Israel -10845248 18 n 02 Bennett 0 Floyd_Bennett 0 001 @i 09826204 n 0000 | United States aviator who (with Richard E. Byrd) piloted the first flight over the North Pole (1890-1928) -10845424 18 n 03 Benny 0 Jack_Benny 0 Benjamin_Kubelsky 0 001 @i 09940146 n 0000 | United States comedian known for his timeing and delivery and self-effacing humor (1894-1974) -10845603 18 n 02 Bentham 0 Jeremy_Bentham 0 002 @i 10423589 n 0000 @i 10227985 n 0000 | English philosopher and jurist; founder of utilitarianism (1748-1831) -10845763 18 n 03 Benton 0 Thomas_Hart_Benton 0 Old_Bullion 0 001 @i 10253995 n 0000 | United States legislator who opposed the use of paper currency (1782-1858) -10845926 18 n 02 Benton 1 Thomas_Hart_Benton 1 001 @i 10391653 n 0000 | United States artist whose paintings portrayed life in the Midwest and South (1889-1975) -10846089 18 n 02 Berg 0 Alban_Berg 0 001 @i 09947232 n 0000 | Austrian composer in Schoenberg's twelve-tone music system (1885-1935) -10846224 18 n 02 Bergman 0 Ingmar_Bergman 0 001 @i 10088200 n 0000 | Swedish film director who used heavy symbolism and explored the psychology of the characters (born 1918) -10846400 18 n 02 Bergman 1 Ingrid_Bergman 0 001 @i 09767700 n 0000 | Swedish film actress (1915-1982) -10846504 18 n 03 Bergson 0 Henri_Bergson 0 Henri_Louis_Bergson 0 001 @i 10423589 n 0000 | French philosopher who proposed elan vital as the cause of evolution and development (1859-1941) -10846693 18 n 02 Beria 0 Lavrenti_Pavlovich_Beria 0 001 @i 09893015 n 0000 | Soviet chief of secret police under Joseph Stalin; was executed by his associates in the power struggle following Stalin's death (1899-1953) -10846913 18 n 04 Bering 0 Vitus_Bering 0 Behring 0 Vitus_Behring 0 001 @i 10347883 n 0000 | Danish explorer who explored the northern Pacific Ocean for the Russians and discovered the Bering Strait (1681-1741) -10847125 18 n 03 Berkeley 0 Bishop_Berkeley 0 George_Berkeley 0 002 @i 10423589 n 0000 @i 09857200 n 0000 | Irish philosopher and Anglican bishop who opposed the materialism of Thomas Hobbes (1685-1753) -10847330 18 n 02 Berlage 0 Hendrik_Petrus_Berlage 0 001 @i 09805475 n 0000 | Dutch architect and town planner (1856-1934) -10847454 18 n 03 Berlin 0 Irving_Berlin 0 Israel_Baline 0 001 @i 10624540 n 0000 | United States songwriter (born in Russia) who wrote more than 1500 songs and several musical comedies (1888-1989) -10847653 18 n 03 Berlioz 0 Hector_Berlioz 0 Louis-Hector_Berlioz 0 001 @i 09947232 n 0000 | French composer of romantic works (1803-1869) -10847793 18 n 02 Bernard 0 Claude_Bernard 0 001 @i 10429965 n 0000 | French physiologist noted for research on secretions of the alimentary canal and the glycogenic function of the liver (1813-1878) -10847994 18 n 03 Bernhardt 0 Sarah_Bernhardt 0 Henriette_Rosine_Bernard 0 001 @i 09767700 n 0000 | French actress (1844-1923) -10848122 18 n 02 Bernini 0 Giovanni_Lorenzo_Bernini 0 002 @i 09805475 n 0000 @i 10566072 n 0000 | Italian sculptor and architect of the baroque period in Italy; designed many churches and chapels and tombs and fountains (1598-1680) -10848356 18 n 04 Bernoulli 0 Jakob_Bernoulli 0 Jacques_Bernoulli 0 James_Bernoulli 0 001 @i 10301261 n 0000 | Swiss mathematician (1654-1705) -10848500 18 n 04 Bernoulli 1 Johann_Bernoulli 0 Jean_Bernoulli 0 John_Bernoulli 0 001 @i 10301261 n 0000 | Swiss mathematician (1667-1748) -10848641 18 n 02 Bernoulli 2 Daniel_Bernoulli 0 001 @i 10428004 n 0000 | Swiss physicist who contributed to hydrodynamics and mathematical physics (1700-1782) -10848802 18 n 02 Bernstein 0 Leonard_Bernstein 0 002 @i 09952539 n 0000 @i 09947232 n 0000 | United States conductor and composer (1918-1990) -10848946 18 n 04 Berra 0 Lawrence_Peter_Berra 0 Yogi 1 Yogi_Berra 0 001 @i 09835506 n 0000 | United States baseball player (born 1925) -10849083 18 n 03 Berry 0 Chuck_Berry 0 Charles_Edward_Berry 0 001 @i 10536416 n 0000 | United States rock singer (born in 1931) -10849213 18 n 02 Bertillon 0 Alphonse_Bertillon 0 001 @i 09978442 n 0000 | French criminologist (1853-1914) -10849323 18 n 02 Bertolucci 0 Bernardo_Bertolucci 0 001 @i 10088390 n 0000 | Italian filmmaker (born in 1940) -10849435 18 n 02 Berzelius 0 Jons_Jakob_Berzelius 0 001 @i 09913824 n 0000 | Swedish chemist who discovered three new elements and determined the atomic weights of many others (1779-1848) -10849625 18 n 02 Bessel 0 Friedrich_Wilhelm_Bessel 0 002 @i 10301261 n 0000 @i 09818343 n 0000 | German mathematician and astronomer who made accurate measurements of stellar distances and who predicted the existence on an 8th planet (1784-1846) -10849873 18 n 02 Bessemer 0 Sir_Henry_Bessemer 0 002 @i 10312077 n 0000 @i 10214637 n 0000 | British inventor and metallurgist who developed the Bessemer process (1813-1898) -10850049 18 n 03 Best 1 C._H._Best 0 Charles_Herbert_Best 0 001 @i 10429965 n 0000 | Canadian physiologist (born in the United States) who assisted F. G. Banting in research leading to the discovery of insulin (1899-1978) -10850273 18 n 03 Bethe 0 Hans_Bethe 0 Hans_Albrecht_Bethe 0 001 @i 10364643 n 0000 | United States physicist (born in Germany) noted for research in astrophysics and nuclear physics (1906-2005) -10850469 18 n 02 Bethune 0 Mary_McLeod_Bethune 0 001 @i 10045713 n 0000 | United States educator who worked to improve race relations and educational opportunities for Black Americans (1875-1955) -10850667 18 n 03 Beveridge 0 William_Henry_Beveridge 0 First_Baron_Beveridge 0 001 @i 10043643 n 0000 | British economist (born in India) whose report on social insurance provided the basis for most of the social legislation on which the welfare state in the United Kingdom is based (1879-1963) -10850964 18 n 02 Bevin 0 Ernest_Bevin 0 001 @i 10650162 n 0000 | British labor leader and statesman who played an important role in diplomacy after World War II (1884-1951) -10851139 18 n 03 Bierce 0 Ambrose_Bierce 0 Ambrose_Gwinett_Bierce 0 001 @i 10794014 n 0000 | United States writer of caustic wit (1842-1914) -10851282 18 n 02 Binet 0 Alfred_Binet 0 001 @i 10488865 n 0000 | French psychologist remembered for his studies of the intellectual development of children (1857-1911) -10851452 18 n 03 bin_Laden 0 Osama_bin_Laden 0 Usama_bin_Laden 0 001 @i 10702781 n 0000 | Arab terrorist who established al-Qaeda (born in 1957) -10851599 18 n 06 Bismarck 0 von_Bismarck 0 Otto_von_Bismarck 0 Prince_Otto_von_Bismarck 0 Prince_Otto_Eduard_Leopold_von_Bismarck 0 Iron_Chancellor 0 002 @i 10650162 n 0000 + 03029133 a 0101 | German statesman under whose leadership Germany was united (1815-1898) -10851865 18 n 02 Bizet 0 Georges_Bizet 0 001 @i 09947232 n 0000 | French composer best known for his operas (1838-1875) -10851987 18 n 03 Black 1 Shirley_Temple_Black 0 Shirley_Temple 0 001 @i 09767700 n 0000 | popular child actress of the 1930's (born in 1928) -10852130 18 n 02 Black 2 Joseph_Black 0 001 @i 09913824 n 0000 | British chemist who identified carbon dioxide and who formulated the concepts of specific heat and latent heat (1728-1799) -10852320 18 n 02 Black_Hawk 0 Makataimeshekiakiak 0 002 @i 10203298 n 0000 @i 09667715 n 0000 | Sauk leader who in 1832 led Fox and Sauk warriors against the United States (1767-1838) -10852506 18 n 03 Blair 0 Tony_Blair 0 Anthony_Charles_Lynton_Blair 0 001 @i 10650162 n 0000 | British statesman who became prime minister in 1997 (born in 1953) -10852669 18 n 02 Blake 0 William_Blake 0 002 @i 10444194 n 0000 @i 10391653 n 0000 | visionary British poet and painter (1757-1827) -10852803 18 n 02 Bleriot 0 Louis_Bleriot 0 001 @i 09826204 n 0000 | French aviator who in 1909 made the first flight across the English Channel (1872-1936) -10852961 18 n 03 Bligh 0 William_Bligh 0 Captain_Bligh 0 001 @i 09771204 n 0000 | British admiral; was captain of the H.M.S. Bounty in 1789 when part of the crew mutinied and set him afloat in an open boat; a few weeks later he arrived safely in Timor 4,000 miles away (1754-1817) -10853244 18 n 02 Blitzstein 0 Marc_Blitzstein 0 002 @i 10430665 n 0000 @i 09947232 n 0000 | United States pianist and composer of operas and musical plays (1905-1964) -10853413 18 n 02 Bloch 0 Ernest_Bloch 0 001 @i 09947232 n 0000 | United States composer (born in Switzerland) who composed symphonies and chamber music and choral music and a piano sonata and an opera (1880-1959) -10853628 18 n 03 Blok 0 Alexander_Alexandrovich_Blok 0 Aleksandr_Aleksandrovich_Blok 0 001 @i 10444194 n 0000 | Russian poet (1880-1921) -10853767 18 n 02 Bloomfield 0 Leonard_Bloomfield 0 001 @i 10264437 n 0000 | United States linguist who adopted a behavioristic approach to linguistics (1887-1949) -10853932 18 n 04 Blucher 0 von_Blucher 0 G._L._von_Blucher 0 Gebhard_Leberecht_von_Blucher 0 001 @ 10123844 n 0000 | Prussian general who is remembered for his leadership in the wars against Napoleon (1742-1819) -10854146 18 n 02 Boccaccio 0 Giovanni_Boccaccio 0 001 @i 10444194 n 0000 | Italian poet (born in France) (1313-1375) -10854265 18 n 02 Bodoni 0 Gianbattista_Bodoni 0 001 @i 10475297 n 0000 | Italian printer who designed the Bodoni font (1740-1813) -10854397 18 n 08 Boehme 0 Jakob_Boehme 0 Bohme 0 Jakob_Bohme 0 Boehm 0 Jakob_Boehm 0 Behmen 0 Jakob_Behmen 0 001 @i 10343554 n 0000 | German mystic and theosophist who founded modern theosophy; influenced George Fox (1575-1624) -10854627 18 n 03 Boell 0 Heinrich_Boell 0 Heinrich_Theodor_Boell 0 001 @i 10794014 n 0000 | German novelist and writer of short stories (1917-1985) -10854777 18 n 02 Boethius 0 Anicius_Manlius_Severinus_Boethius 0 002 @i 10423589 n 0000 @i 10650162 n 0000 | a Roman who was an early Christian philosopher and statesman who was executed for treason; Boethius had a decisive influence on medieval logic (circa 480-524) -10855047 18 n 03 Bogart 0 Humphrey_Bogart 0 Humphrey_DeForest_Bogart 0 002 @i 09765278 n 0000 + 03029274 a 0101 | United States film actor (1899-1957) -10855200 18 n 03 Bohr 0 Niels_Bohr 0 Niels_Henrik_David_Bohr 0 001 @i 10364643 n 0000 | Danish physicist who studied atomic structure and radiations; the Bohr theory of the atom accounted for the spectrum of hydrogen (1885-1962) -10855431 18 n 02 Boleyn 0 Anne_Boleyn 0 001 @i 10499857 n 0000 | the second wife of Henry VIII and mother of Elizabeth I; was executed on a charge of adultery (1507-1536) -10855604 18 n 03 Bolivar 0 Simon_Bolivar 0 El_Libertador 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | Venezuelan statesman who led the revolt of South American colonies against Spanish rule; founded Bolivia in 1825 (1783-1830) -10855834 18 n 02 Boltzmann 0 Ludwig_Boltzmann 0 001 @i 10428004 n 0000 | Austrian physicist who contributed to the kinetic theory of gases (1844-1906) -10855987 18 n 02 Bond 0 Julian_Bond 0 001 @i 09924996 n 0000 | United States civil rights leader who was elected to the legislature in Georgia but was barred from taking his seat because he opposed the Vietnam War (born 1940) -10856215 18 n 02 Bonhoeffer 0 Dietrich_Bonhoeffer 0 001 @i 10705615 n 0000 | German Lutheran theologian and pastor whose works concern Christianity in the modern world; an active opponent of Nazism, he was arrested and sent to Buchenwald and later executed (1906-1945) -10856486 18 n 06 Boniface 0 Saint_Boniface 0 St._Boniface 0 Winfred 0 Wynfrith 0 Apostle_of_Germany 0 003 @i 10322957 n 0000 @i 10547145 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) Anglo-Saxon missionary who was sent to Frisia and Germany to spread the Christian faith; was martyred in Frisia (680-754) -10856799 18 n 02 Boniface_VIII 0 Benedetto_Caetani 0 001 @i 10453533 n 0000 | pope who declared that Catholic princes are subject to the pope in temporal as well as in theological matters (1235-1303) -10857001 18 n 03 Bonney 0 William_H._Bonney 0 Billie_the_Kid 0 001 @i 09977660 n 0000 | United States outlaw who was said to have killed 21 men (1859-1881) -10857159 18 n 02 Bontemps 0 Arna_Wendell_Bontemps 0 001 @i 10794014 n 0000 | United States writer (1902-1973) -10857271 18 n 02 Boole 0 George_Boole 0 002 @i 10301261 n 0000 + 02667741 a 0101 | English mathematician; creator of Boolean algebra (1815-1864) -10857418 18 n 02 Boone 0 Daniel_Boone 0 001 @i 10113072 n 0000 | an American pioneer and guide and explorer (1734-1820) -10857540 18 n 02 Booth 0 John_Wilkes_Booth 0 002 @i 09765278 n 0000 @i 09813696 n 0000 | United States actor and assassin of President Lincoln (1838-1865) -10857697 18 n 03 Borges 0 Jorge_Borges 0 Jorge_Luis_Borges 0 001 @i 10794014 n 0000 | Argentinian writer remembered for his short stories (1899-1986) -10857849 18 n 02 Borgia 2 Cesare_Borgia 0 002 @i 09894143 n 0000 @i 10622053 n 0000 | Italian cardinal and military leader; model for Machiavelli's prince (1475-1507) -10858018 18 n 03 Borgia 3 Lucrezia_Borgia 0 Duchess_of_Ferrara 0 001 @i 10242791 n 0000 | Italian noblewoman and patron of the arts (1480-1519) -10858164 18 n 02 Born 0 Max_Born 0 001 @i 10364643 n 0000 | British nuclear physicist (born in Germany) honored for his contributions to quantum mechanics (1882-1970) -10858333 18 n 03 Borodin 0 Aleksandr_Borodin 0 Aleksandr_Porfirevich_Borodin 0 001 @i 09947232 n 0000 | Russian composer (1833-1887) -10858468 18 n 03 Bosch 0 Hieronymus_Bosch 0 Jerom_Bos 0 001 @i 10375794 n 0000 | Dutch painter (1450-1516) -10858577 18 n 03 Bose 0 Satyendra_N._Bose 0 Satyendra_Nath_Bose 0 001 @i 10364643 n 0000 | Indian physicist who with Albert Einstein proposed statistical laws based on the indistinguishability of particles; led to the description of fundamental particles that later came to be known as bosons -10858872 18 n 02 Boswell 0 James_Boswell 0 001 @i 10794014 n 0000 | Scottish author noted for his biography of Samuel Johnson (1740-1795) -10859012 18 n 03 Botticelli 0 Sandro_Botticelli 0 Alessandro_di_Mariano_dei_Filipepi 0 001 @i 10375794 n 0000 | Italian painter of mythological and religious paintings (1444-1510) -10859194 18 n 02 Bougainville 0 Louis_Antoine_de_Bougainville 0 001 @i 10072708 n 0000 | French explorer who circumnavigated the globe accompanied by scientists (1729-1811) -10859369 18 n 02 Boulez 0 Pierre_Boulez 0 001 @i 09947232 n 0000 | French composer of serial music (born in 1925) -10859485 18 n 02 Bowditch 0 Nathaniel_Bowditch 0 002 @i 10301261 n 0000 @i 09818343 n 0000 | United States mathematician and astronomer noted for his works on navigation (1773-1838) -10859669 18 n 02 Bowdler 0 Thomas_Bowdler 0 002 @i 10044879 n 0000 + 00201034 v 0102 | English editor who in 1818 published an expurgated edition of the works of Shakespeare (1754-1825) -10859857 18 n 03 Bowie 0 Jim_Bowie 0 James_Bowie 0 001 @i 10434424 n 0000 | United States pioneer and hero of the Texas revolt against Mexico; he shared command of the garrison that resisted the Mexican attack on the Alamo where he died (1796-1836) -10860108 18 n 02 Boyle 0 Robert_Boyle 0 001 @i 09913824 n 0000 | Irish chemist who established that air has weight and whose definitions of chemical elements and chemical reactions helped to dissociate chemistry from alchemy (1627-1691) -10860347 18 n 02 Boyle 1 Kay_Boyle 0 001 @i 10794014 n 0000 | United States writer (1902-1992) -10860444 18 n 03 Bradbury 0 Ray_Bradbury 0 Ray_Douglas_Bradbury 0 001 @i 10794014 n 0000 | United States writer of science fiction (born 1920) -10860589 18 n 02 Bradford 0 William_Bradford 0 001 @i 10475297 n 0000 | United States printer (born in England) whose press produced the first American prayer book and the New York City's first newspaper (1663-1752) -10860807 18 n 03 Bradley 0 Omar_Bradley 0 Omar_Nelson_Bradley 0 001 @i 10123844 n 0000 | United States general who played an important role in the Allied victory in World War II (1893-1981) -10860999 18 n 03 Bradley 1 Thomas_Bradley 0 Tom_Bradley 0 001 @i 10450303 n 0000 | United States politician who was elected the first black mayor of Los Angeles (1917-1998) -10861174 18 n 03 Bradstreet 0 Anne_Bradstreet 0 Anne_Dudley_Bradstreet 0 001 @i 10444194 n 0000 | poet in colonial America (born in England) (1612-1672) -10861329 18 n 04 Brady 0 James_Buchanan_Brady 0 Diamond_Jim_Brady 0 Diamond_Jim 0 001 @i 10090020 n 0000 | United States financier noted for his love of diamonds and his extravagant lifestyle (1856-1917) -10861535 18 n 02 Brady 1 Mathew_B._Brady 0 001 @i 10426749 n 0000 | United States pioneer photographer famous for his portraits; was the official Union photographer for the American Civil War (1823-1896) -10861741 18 n 02 Bragg 0 Braxton_Bragg 0 001 @i 10123844 n 0000 | Confederate general during the American Civil War who was defeated by Grant in the battle of Chattanooga (1817-1876) -10861926 18 n 02 Brahe 0 Tycho_Brahe 0 001 @i 09818343 n 0000 | Danish astronomer whose observations of the planets provided the basis for Kepler's laws of planetary motion (1546-1601) -10862113 18 n 02 Brahms 0 Johannes_Brahms 0 001 @i 09947232 n 0000 | German composer who developed the romantic style of both lyrical and classical music (1833-1897) -10862281 18 n 02 Braille 0 Louis_Braille 0 002 @i 10045713 n 0000 + 00995716 v 0101 | French educator who lost his sight at the age of three and who invented a system of writing and printing for sightless people (1809-1852) -10862507 18 n 03 Bramante 0 Donato_Bramante 0 Donato_d'Agnolo_Bramante 0 001 @i 09805475 n 0000 | great Italian architect of the High Renaissance in Italy (1444-1514) -10862676 18 n 02 Brancusi 0 Constantin_Brancusi 0 001 @i 10566072 n 0000 | Romanian sculptor noted for abstractions of animal forms (1876-1957) -10862822 18 n 02 Brandt 0 Willy_Brandt 0 001 @i 10650162 n 0000 | German statesman who as chancellor of West Germany worked to reduce tensions with eastern Europe (1913-1992) -10862999 18 n 02 Braque 0 Georges_Braque 0 001 @i 10391653 n 0000 | French painter who led the cubist movement (1882-1963) -10863124 18 n 04 Braun 0 von_Braun 0 Wernher_von_Braun 0 Wernher_Magnus_Maximilian_von_Braun 0 001 @i 10536134 n 0000 | United States rocket engineer (born in Germany where he designed a missile used against England); he led the United States Army team that put the first American satellite into space (1912-1977) -10863440 18 n 02 Braun 1 Eva_Braun 0 001 @i 10323752 n 0000 | the German mistress of Adolf Hitler (1910-1945) -10863552 18 n 02 Brecht 0 Bertolt_Brecht 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | German dramatist and poet who developed a style of epic theater (1898-1956) -10863717 18 n 02 Breuer 0 Marcel_Lajos_Breuer 0 001 @i 09805475 n 0000 | United States architect (born in Hungary) who was associated with the Bauhaus in the 1920's (1902-1981) -10863896 18 n 03 Brezhnev 0 Leonid_Brezhnev 0 Leonid_Ilyich_Brezhnev 0 001 @i 10650162 n 0000 | Soviet statesman who became president of the Soviet Union (1906-1982) -10864064 18 n 02 Bridges 0 Harry_Bridges 0 001 @i 10242032 n 0000 | United States labor leader who organized the longshoremen (1901-1990) -10864204 18 n 09 Bridget 0 Saint_Bridget 0 St._Bridget 0 Brigid 0 Saint_Brigid 0 St._Brigid 0 Bride 2 Saint_Bride 0 St._Bride 0 002 @i 09754217 n 0000 @i 10547145 n 0000 | Irish abbess; a patron saint of Ireland (453-523) -10864428 18 n 02 Brinton 0 Daniel_Garrison_Brinton 0 001 @i 09796323 n 0000 | United States anthropologist who was the first to attempt a systematic classification of Native American languages (1837-1899) -10864635 18 n 04 Britten 0 Benjamin_Britten 0 Edward_Benjamin_Britten 0 Lord_Britten_of_Aldeburgh 0 002 @i 09952539 n 0000 @i 09947232 n 0000 | major English composer of the 20th century; noted for his operas (1913-1976) -10864858 18 n 02 Broca 0 Pierre-Paul_Broca 0 001 @i 09796323 n 0000 | French anthropologist who studied the craniums and brains of different races of people; remembered for his discovery that articulate speech depends on an area of the brain now known as Broca's area (1824-1880) -10865140 18 n 02 Brockhouse 0 Bertram_Brockhouse 0 001 @i 10428004 n 0000 | Canadian physicist who bounced neutron beams off of atomic nuclei to study the structure of matter (1918-2003) -10865329 18 n 03 Broglie 0 de_Broglie 0 Louis_Victor_de_Broglie 0 001 @i 10364643 n 0000 | French nuclear physicist who generalized the wave-particle duality by proposing that particles of matter exhibit wavelike properties (1892-1987) -10865567 18 n 02 Bronte 0 Charlotte_Bronte 0 001 @i 10794014 n 0000 | English novelist; oldest of three Bronte sisters (1816-1855) -10865700 18 n 04 Bronte 1 Emily_Bronte 0 Emily_Jane_Bronte 0 Currer_Bell 0 001 @i 10794014 n 0000 | English novelist; one of three Bronte sisters (1818-1848) -10865860 18 n 02 Bronte 2 Anne_Bronte 0 001 @i 10794014 n 0000 | English novelist; youngest of three Bronte sisters (1820-1849) -10865990 18 n 02 Brooke 0 Rupert_Brooke 0 001 @i 10444194 n 0000 | English lyric poet (1887-1915) -10866090 18 n 02 Brooks 0 Van_Wyck_Brooks 0 001 @i 10266016 n 0000 | United States literary critic and historian (1886-1963) -10866217 18 n 02 Brown 0 John_Brown 0 001 @i 09756637 n 0000 | abolitionist who was hanged after leading an unsuccessful raid at Harper's Ferry, Virginia (1800-1859) -10866385 18 n 02 Brown 1 Robert_Brown 0 001 @i 09868270 n 0000 | Scottish botanist who first observed the movement of small particles in fluids now known a Brownian motion (1773-1858) -10866571 18 n 03 Browne 0 Charles_Farrar_Browne 0 Artemus_Ward 0 001 @i 10794014 n 0000 | United States writer of humorous tales of an itinerant showman (1834-1867) -10866738 18 n 03 Browne 1 Hablot_Knight_Browne 0 Phiz 0 001 @i 09812068 n 0000 | English illustrator of several of Dickens' novels (1815-1882) -10866883 18 n 02 Browning 0 Elizabeth_Barrett_Browning 0 001 @i 10444194 n 0000 | English poet best remembered for love sonnets written to her husband Robert Browning (1806-1861) -10867064 18 n 02 Browning 1 Robert_Browning 0 001 @i 10444194 n 0000 | English poet and husband of Elizabeth Barrett Browning noted for his dramatic monologues (1812-1889) -10867238 18 n 03 Browning 2 John_M._Browning 0 John_Moses_Browning 0 001 @i 10214637 n 0000 | United States inventor of firearms (especially automatic pistols and repeating rifles and a machine gun called the Peacemaker) (1855-1926) -10867473 18 n 03 Bruce 0 Robert_the_Bruce 0 Robert_I 0 001 @i 10231515 n 0000 | king of Scotland from 1306 to 1329; defeated the English army under Edward II at Bannockburn and gained recognition of Scottish independence (1274-1329) -10867708 18 n 03 Bruce 1 David_Bruce 0 Sir_David_Bruce 0 002 @i 10020890 n 0000 @i 09831411 n 0000 | Australian physician and bacteriologist who described the bacterium that causes undulant fever or brucellosis (1855-1931) -10867933 18 n 02 Bruch 0 Max_Bruch 0 001 @i 09947232 n 0000 | German composer (1838-1920) -10868025 18 n 02 Bruckner 0 Anton_Bruckner 0 002 @i 09947232 n 0000 @i 10382825 n 0000 | Austrian organist and composer of romantic music (1824-1896) -10868177 18 n 08 Brueghel 0 Breughel 0 Bruegel 0 Pieter_Brueghel 0 Pieter_Breughel 0 Pieter_Bruegel 0 Breughel_the_Elder 0 Pieter_Brueghel_the_Elder 0 001 @i 10375794 n 0000 | Flemish painter of landscapes (1525-1569) -10868397 18 n 03 Brummell 0 George_Bryan_Brummell 0 Beau_Brummell 0 001 @i 09991026 n 0000 | English dandy who was a fashion leader during the Regency (1778-1840) -10868562 18 n 02 Brunelleschi 0 Filippo_Brunelleschi 0 001 @i 09805475 n 0000 | Florentine architect who was the first great architect of the Italian Renaissance (1377-1446) -10868738 18 n 02 Bruno 0 Giordano_Bruno 0 001 @i 10423589 n 0000 | Italian philosopher who used Copernican principles to develop a pantheistic monistic philosophy; condemned for heresy by the Inquisition and burned at the stake (1548-1600) -10868980 18 n 03 Bruno 1 Saint_Bruno 0 St._Bruno 0 003 @i 09928136 n 0000 @i 10547145 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a French cleric (born in Germany) who founded the Carthusian order in 1084 (1032-1101) -10869207 18 n 02 Brutus 0 Marcus_Junius_Brutus 0 001 @i 10650162 n 0000 | statesman of ancient Rome who (with Cassius) led a conspiracy to assassinate Julius Caesar (85-42 BC) -10869385 18 n 04 Bryan 0 William_Jennings_Bryan 0 Great_Commoner 0 Boy_Orator_of_the_Platte 0 002 @i 10450303 n 0000 @i 10249950 n 0000 | United States lawyer and politician who advocated free silver and prosecuted John Scopes (1925) for teaching evolution in a Tennessee high school (1860-1925) -10869683 18 n 02 Buber 0 Martin_Buber 0 001 @i 10423589 n 0000 | Israeli religious philosopher (born in Austria); as a Zionist he promoted understanding between Jews and Arabs; his writings affected Christian thinkers as well as Jews (1878-1965) -10869931 18 n 03 Buchanan 0 James_Buchanan 0 President_Buchanan 0 001 @i 10467395 n 0000 | 15th President of the United States (1791-1868) -10870072 18 n 02 Buchner 0 Eduard_Buchner 0 001 @i 09913824 n 0000 | German organic chemist who studied alcoholic fermentation and discovered zymase (1860-1917) -10870235 18 n 03 Buck 0 Pearl_Buck 0 Pearl_Sydenstricker_Buck 0 002 @i 10794014 n 0000 @i 10323182 n 0000 | United States author whose novels drew on her experiences as a missionary in China (1892-1973) -10870440 18 n 03 Budge 0 Don_Budge 0 John_Donald_Budge 0 001 @i 10701180 n 0000 | United States tennis player who in 1938 was the first to win the Australian and French and English and United States singles championship in the same year (1915-2000) -10870691 18 n 02 Bukharin 0 Nikolai_Ivanovich_Bukharin 0 001 @i 09863936 n 0000 | Bolshevik leader in Russia who advocated gradual collectivism of the farms; was executed in a purge by Stalin (1888-1938) -10870897 18 n 02 Bullfinch 0 Charles_Bullfinch 0 001 @i 09805475 n 0000 | United States architect who designed the Capitol Building in Washington which served as a model for state capitols throughout the United States (1763-1844) -10871129 18 n 03 Bultmann 0 Rudolf_Bultmann 0 Rudolf_Karl_Bultmann 0 001 @i 10705615 n 0000 | a Lutheran theologian in Germany (1884-1976) -10871270 18 n 03 Bunche 0 Ralph_Bunche 0 Ralph_Johnson_Bunche 0 001 @i 10013927 n 0000 | United States diplomat and United Nations official (1904-1971) -10871424 18 n 03 Bunsen 0 Robert_Bunsen 0 Robert_Wilhelm_Bunsen 0 001 @i 09913824 n 0000 | German chemist who with Kirchhoff pioneered spectrum analysis but is remembered mainly for his invention of the Bunsen burner (1811-1899) -10871655 18 n 02 Bunuel 0 Luis_Bunuel 0 001 @i 10088200 n 0000 | Spanish film director (1900-1983) -10871756 18 n 02 Bunyan 1 John_Bunyan 0 002 @i 10464178 n 0000 @i 10794014 n 0000 | English preacher and author of an allegorical novel, Pilgrim's Progress (1628-1688) -10871926 18 n 02 Burbage 0 Richard_Burbage 0 001 @i 09765278 n 0000 | English actor who was the first to play the leading role in several of Shakespeare's tragedies (1567-1619) -10872105 18 n 02 Burbank 0 Luther_Burbank 0 001 @i 10186350 n 0000 | United States horticulturist who developed many new varieties of fruits and vegetables and flowers (1849-1926) -10872287 18 n 04 Burger 0 Warren_Burger 0 Warren_E._Burger 0 Warren_Earl_Burger 0 001 @i 09916788 n 0000 | United States jurist appointed chief justice of the United States Supreme Court by Richard Nixon (1907-1995) -10872505 18 n 02 Burgess 1 Anthony_Burgess 0 001 @i 10794014 n 0000 | English writer of satirical novels (1917-1993) -10872624 18 n 03 Burgoyne 0 John_Burgoyne 0 Gentleman_Johnny 0 001 @i 10123844 n 0000 | British general in the American Revolution who captured Fort Ticonderoga but lost the battle of Saratoga in 1777 (1722-1792) -10872839 18 n 05 Burk 0 Martha_Jane_Burk 0 Burke 1 Martha_Jane_Burke 0 Calamity_Jane 0 001 @i 10113249 n 0000 | United States frontierswoman and legendary figure of the Wild West noted for her marksmanship (1852-1903) -10873059 18 n 02 Burke 0 Edmund_Burke 0 002 @i 10650162 n 0000 @i 10380672 n 0000 | British statesman famous for his oratory; pleaded the cause of the American colonists in British Parliament and defended the parliamentary system (1729-1797) -10873303 18 n 03 Burnett 0 Frances_Hodgson_Burnett 0 Frances_Eliza_Hodgson_Burnett 0 001 @i 10794014 n 0000 | United States writer (born in England) remembered for her novels for children (1849-1924) -10873505 18 n 02 Burnham 0 Daniel_Hudson_Burnham 0 001 @i 09805475 n 0000 | United States architect who designed the first important skyscraper with a skeleton (1846-1912) -10873679 18 n 02 Burns 0 Robert_Burns 0 001 @i 10444194 n 0000 | celebrated Scottish poet (1759-1796) -10873783 18 n 03 Burns 1 George_Burns 0 Nathan_Birnbaum 0 002 @i 10746799 n 0000 @i 09940146 n 0000 | United States comedian and film actor (1896-1996) -10873937 18 n 03 Burnside 0 A._E._Burnside 0 Ambrose_Everett_Burnside 0 001 @i 10123844 n 0000 | United States general in the American Civil War who was defeated by Robert E. Lee at the Battle of Fredericksburg (1824-1881) -10874162 18 n 02 Burr 0 Aaron_Burr 0 001 @i 10450303 n 0000 | United States politician who served as vice president under Jefferson; he mortally wounded his political rival Alexander Hamilton in a duel and fled south (1756-1836) -10874393 18 n 02 Burroughs 0 Edgar_Rice_Burroughs 0 001 @i 10794014 n 0000 | United States novelist and author of the Tarzan stories (1875-1950) -10874540 18 n 02 Burroughs 1 William_Seward_Burroughs 0 001 @i 10214637 n 0000 | United States inventor who patented the first practical adding machine (1855-1898) -10874706 18 n 04 Burroughs 2 William_Burroughs 0 William_S._Burroughs 0 William_Seward_Burroughs 2 001 @i 10794014 n 0000 | United States writer noted for his works portraying the life of drug addicts (1914-1997) -10874921 18 n 03 Burt 0 Cyril_Burt 0 Cyril_Lodowic_Burt 0 001 @i 10488865 n 0000 | English psychologist whose studies of twins were later said to have used fabricated data (1883-1971) -10875107 18 n 02 Burton 0 Richard_Burton 0 001 @i 09765278 n 0000 | Welsh film actor who often co-starred with Elizabeth Taylor (1925-1984) -10875249 18 n 04 Burton 1 Richard_Burton 1 Sir_Richard_Burton 0 Sir_Richard_Francis_Burton 0 001 @i 10072708 n 0000 | English explorer who with John Speke was the first European to explore Lake Tanganyika (1821-1890) -10875468 18 n 05 Bush 0 George_Bush 0 George_H.W._Bush 0 George_Herbert_Walker_Bush 0 President_Bush 0 001 @i 10467395 n 0000 | vice president under Reagan and 41st President of the United States (born in 1924) -10875681 18 n 02 Bush 1 Vannevar_Bush 0 001 @i 10049017 n 0000 | United States electrical engineer who designed an early analogue computer and who led the scientific program of the United States during World War II (1890-1974) -10875910 18 n 08 Bush 2 George_Bush 1 George_W._Bush 0 George_Walker_Bush 0 President_Bush 2 President_George_W._Bush 0 Dubyuh 0 Dubya 0 001 @i 10467395 n 0000 | 43rd President of the United States; son of George Herbert Walker Bush (born in 1946) -10876160 18 n 03 Bushnell 0 David_Bushnell 0 Father_of_the_Submarine 0 001 @i 10214637 n 0000 | American inventor who in 1775 designed a man-propelled submarine that was ineffectual but subsequently earned him recognition as a submarine pioneer (1742-1824) -10876419 18 n 02 Butler 1 Samuel_Butler 0 001 @i 10444194 n 0000 | English poet (1612-1680) -10876513 18 n 02 Butler 2 Samuel_Butler 2 001 @i 10794014 n 0000 | English novelist who described a fictitious land he called Erewhon (1835-1902) -10876661 18 n 02 Butterfield 0 William_Butterfield 0 001 @i 09805475 n 0000 | English architect who designed many churches (1814-1900) -10876798 18 n 04 Byrd 0 Richard_E._Byrd 0 Richard_Evelyn_Byrd 0 Admiral_Byrd 0 002 @i 10072708 n 0000 @i 10347593 n 0000 | explorer and United States naval officer; led expeditions to explore Antarctica (1888-1957) -10877015 18 n 02 Byrd 1 William_Byrd 0 002 @i 10382825 n 0000 @i 09947232 n 0000 | English organist and composer of church music; master of 16th century polyphony; was granted a monopoly in music printing with Thomas Tallis (1543-1623) -10877253 18 n 03 Byron 0 Lord_George_Gordon_Byron 0 Sixth_Baron_Byron_of_Rochdale 0 001 @i 10444194 n 0000 | English romantic poet notorious for his rebellious and unconventional lifestyle (1788-1824) -10877456 18 n 02 Cabell 0 James_Branch_Cabell 0 001 @i 10794014 n 0000 | United States writer of satirical novels (1879-1958) -10877584 18 n 03 Cabot 0 John_Cabot 0 Giovanni_Cabato 0 001 @i 10347883 n 0000 | Italian explorer who led the English expedition in 1497 that discovered the mainland of North America and explored the coast from Nova Scotia to Newfoundland (ca. 1450-1498) -10877841 18 n 02 Cabot 1 Sebastian_Cabot 0 002 @i 10072708 n 0000 @i 09898215 n 0000 | son of John Cabot who was born in Italy and who led an English expedition in search of the Northwest Passage and a Spanish expedition that explored the La Plata region of Brazil; in 1544 he published a map of the world (1476-1557) -10878161 18 n 03 Caesar 0 Julius_Caesar 0 Gaius_Julius_Caesar 0 005 @i 10123844 n 0000 @i 10650162 n 0000 + 03077930 a 0201 + 03029400 a 0101 + 03029400 a 0102 | conqueror of Gaul and master of Italy (100-44 BC) -10878375 18 n 03 Caesar 1 Sid_Caesar 0 Sidney_Caesar 0 001 @i 09940146 n 0000 | United States comedian who pioneered comedy television shows (born 1922) -10878530 18 n 03 Cage 0 John_Cage 0 John_Milton_Cage_Jr. 0 001 @i 09947232 n 0000 | United States composer of avant-garde music (1912-1992) -10878672 18 n 03 Cagliostro 0 Count_Alessandro_di_Cagliostro 0 Giuseppe_Balsamo 0 001 @i 10625860 n 0000 | Italian who was famous as a magician and alchemist (1743-1795) -10878844 18 n 03 Cagney 0 Jimmy_Cagney 0 James_Cagney 0 001 @i 09765278 n 0000 | United States film actor known for his portrayals of tough characters (1899-1986) -10879009 18 n 02 Calder 0 Alexander_Calder 0 001 @i 10566072 n 0000 | United States sculptor who first created mobiles and stabiles (1898-1976) -10879155 18 n 03 Calderon 0 Calderon_de_la_Barca 0 Pedro_Calderon_de_la_Barca 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | Spanish poet and dramatist considered one of the great Spanish writers (1600-1681) -10879364 18 n 03 Caldwell 0 Erskine_Caldwell 0 Erskine_Preston_Caldwell 0 001 @i 10794014 n 0000 | United States author remembered for novels about poverty and degeneration (1903-1987) -10879551 18 n 03 Caligula 0 Gaius 0 Gaius_Caesar 0 001 @i 10537240 n 0000 | Roman Emperor who succeeded Tiberius and whose uncontrolled passions resulted in manifest insanity; noted for his cruelty and tyranny; was assassinated (12-41) -10879789 18 n 02 Calixtus_II 0 Guy_of_Burgundy 0 001 @i 10453533 n 0000 | pope who in 1122 forced the Holy Roman Emperor Henry V to sign a concordat that recognized the right of the church to choose its own leadership (died in 1124) -10880024 18 n 03 Calixtus_III 0 Borgia 0 Alfonso_Borgia 0 001 @i 10453533 n 0000 | Italian pope whose nepotism put the Borgia family in power in Italy (1378-1458) -10880189 18 n 03 Callas 0 Maria_Callas 0 Maria_Meneghini_Callas 0 001 @i 09938080 n 0000 | Greek coloratura soprano (born in the United States) known for her dramatic intensity in operatic roles (1923-1977) -10880398 18 n 05 Calvin 0 John_Calvin 0 Jean_Cauvin 0 Jean_Caulvin 0 Jean_Chauvin 0 001 @i 10705615 n 0000 | Swiss theologian (born in France) whose tenets (predestination and the irresistibility of grace and justification by faith) defined Presbyterianism (1509-1564) -10880669 18 n 02 Calvin 1 Melvin_Calvin 0 001 @i 09913824 n 0000 | United States chemist noted for discovering the series of chemical reactions in photosynthesis (1911-) -10880841 18 n 02 Calvino 0 Italo_Calvino 0 001 @i 10794014 n 0000 | Italian writer of novels and short stories (born in Cuba) (1923-1987) -10880981 18 n 02 Campbell 0 Joseph_Campbell 0 001 @i 10343869 n 0000 | United States mythologist (1904-1987) -10881092 18 n 02 Camus 0 Albert_Camus 0 002 @i 10794014 n 0000 @i 10071557 n 0000 | French writer who portrayed the human condition as isolated in an absurd world (1913-1960) -10881269 18 n 02 Canetti 0 Elias_Canetti 0 001 @i 10794014 n 0000 | English writer born in Germany (1905-1994) -10881382 18 n 04 Canute 0 Cnut 0 Knut 0 Canute_the_Great 0 001 @i 10233445 n 0000 | king of Denmark and Norway who forced Edmund II to divide England with him; on the death of Edmund II, Canute became king of all England (994-1035) -10881616 18 n 02 Capek 0 Karel_Capek 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | Czech writer who introduced the word `robot' into the English language (1890-1938) -10881784 18 n 04 Capone 0 Al_Capone 0 Alphonse_Capone 0 Scarface 0 001 @i 10120085 n 0000 | United States gangster who terrorized Chicago during prohibition until arrested for tax evasion (1899-1947) -10881986 18 n 02 Capra 0 Frank_Capra 0 001 @i 10088390 n 0000 | United States film maker (1897-1991) -10882089 18 n 02 Caravaggio 0 Michelangelo_Merisi_da_Caravaggio 0 001 @i 10375794 n 0000 | Italian painter noted for his realistic depiction of religious subjects and his novel use of light (1573-1610) -10882293 18 n 02 Carducci 0 Giosue_Carducci 0 001 @i 10444194 n 0000 | Italian poet considered the national poet of modern Italy (1835-1907) -10882436 18 n 02 Carew 0 Thomas_Carew 0 001 @i 10444194 n 0000 | Englishman and Cavalier poet whose lyric poetry was favored by Charles I (1595-1639) -10882588 18 n 02 Carl_XVI_Gustav 0 Carl_XVI_Gustaf 0 001 @i 10231515 n 0000 | king of Sweden since 1973 (born 1946) -10882706 18 n 02 Carlyle 0 Thomas_Carlyle 0 001 @i 10177150 n 0000 | Scottish historian who wrote about the French Revolution (1795-1881) -10882846 18 n 03 Carmichael 0 Hoagy_Carmichael 0 Hoagland_Howard_Carmichael 0 001 @i 10624540 n 0000 | United States songwriter (1899-1981) -10882988 18 n 02 Carnegie 0 Andrew_Carnegie 0 002 @i 10204177 n 0000 @i 10421956 n 0000 | United States industrialist and philanthropist who endowed education and public libraries and research trusts (1835-1919) -10883202 18 n 02 Carnegie 1 Dale_Carnegie 0 001 @i 10045713 n 0000 | United States educator famous for writing a book about how to win friends and influence people (1888-1955) -10883380 18 n 03 Carnot 0 Sadi_Carnot 0 Nicolas_Leonard_Sadi_Carnot 0 001 @i 10428004 n 0000 | French physicist who founded thermodynamics (1796-1832) -10883533 18 n 03 Carothers 0 Wallace_Carothers 0 Wallace_Hume_Carothers 0 001 @i 09913824 n 0000 | United States chemist who developed nylon (1896-1937) -10883688 18 n 02 Carrel 0 Alexis_Carrel 0 002 @i 10679174 n 0000 @i 09855630 n 0000 | French surgeon and biologist who developed a way to suture and graft blood vessels (1873-1944) -10883871 18 n 02 Carrere 0 John_Merven_Carrere 0 001 @i 09805475 n 0000 | United States architect who with his partner Thomas Hastings designed many important public buildings (1858-1911) -10884061 18 n 06 Carroll 0 Lewis_Carroll 0 Dodgson 0 Reverend_Dodgson 0 Charles_Dodgson 0 Charles_Lutwidge_Dodgson 0 001 @i 10794014 n 0000 | English author; Charles Dodgson was an Oxford don of mathematics who is remembered for the children's stories he wrote under the pen name Lewis Carroll (1832-1898) -10884369 18 n 03 Carson 0 Kit_Carson 0 Christopher_Carson 0 001 @i 10113072 n 0000 | United States frontiersman who guided Fremont's expeditions in the 1840s and served as a Union general in the American Civil War (1809-1868) -10884597 18 n 03 Carson 1 Rachel_Carson 0 Rachel_Louise_Carson 0 002 @i 09855630 n 0000 @i 10060621 n 0000 | United States biologist remembered for her opposition to the use of pesticides that were hazardous to wildlife (1907-1964) -10884831 18 n 05 Carter 1 Jimmy_Carter 0 James_Earl_Carter 0 James_Earl_Carter_Jr. 0 President_Carter 0 001 @i 10467395 n 0000 | 39th President of the United States (1924-) -10885006 18 n 02 Carter 2 Howard_Carter 0 001 @i 10047822 n 0000 | Englishman and Egyptologist who in 1922 discovered and excavated the tomb of Tutankhamen (1873-1939) -10885176 18 n 02 Cartier 0 Jacques_Cartier 0 001 @i 10347883 n 0000 | French explorer who explored the St. Lawrence river and laid claim to the region for France (1491-1557) -10885352 18 n 02 Cartwright 1 Edmund_Cartwright 0 001 @i 10214637 n 0000 | English clergyman who invented the power loom (1743-1823) -10885487 18 n 02 Caruso 0 Enrico_Caruso 0 001 @i 10701783 n 0000 | outstanding Italian operatic tenor (1873-1921) -10885603 18 n 02 Carver 3 George_Washington_Carver 0 002 @i 09868270 n 0000 @i 09913824 n 0000 | United States botanist and agricultural chemist who developed many uses for peanuts and soy beans and sweet potatoes (1864-1943) -10885831 18 n 02 Casals 0 Pablo_Casals 0 001 @i 09903501 n 0000 | an outstanding Spanish cellist noted for his interpretation of Bach's cello suites (1876-1973) -10885994 18 n 04 Casanova 0 Giovanni_Jacopo_Casanova 0 Casanova_de_Seingalt 0 Giovanni_Jacopo_Casanova_de_Seingalt 0 001 @i 09606009 n 0000 | an Italian adventurer who wrote vivid accounts of his sexual encounters (1725-1798) -10886222 18 n 03 Cash 0 Johnny_Cash 0 John_Cash 0 001 @i 10599806 n 0000 | United States country music singer and songwriter (1932-2003) -10886361 18 n 02 Caspar 0 Gaspar 0 003 @i 10546202 n 0000 #m 08486538 n 0000 ;c 06453849 n 0000 | (New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus -10886558 18 n 02 Cassirer 0 Ernst_Cassirer 0 001 @i 10423589 n 0000 | German philosopher concerned with concept formation in the human mind and with symbolic forms in human culture generally (1874-1945) -10886763 18 n 03 Cassius 0 Cassius_Longinus 0 Gaius_Cassius_Longinus 0 001 @i 10650162 n 0000 | prime mover in the conspiracy against Julius Caesar (died in 42 BC) -10886929 18 n 03 Castro 0 Fidel_Castro 0 Fidel_Castro_Ruz 0 001 @i 10618848 n 0000 | Cuban socialist leader who overthrew a dictator in 1959 and established a Marxist socialist state in Cuba (born in 1927) -10887137 18 n 03 Cather 0 Willa_Cather 0 Willa_Sibert_Cather 0 001 @i 10794014 n 0000 | United States writer who wrote about frontier life (1873-1947) -10887290 18 n 01 Catherine_I 0 001 @i 10053439 n 0000 | empress of Russia who succeeded her husband Peter the Great (1684-1727) -10887420 18 n 03 Catherine_II 0 Catherine 0 Catherine_the_Great 0 001 @i 10053439 n 0000 | empress of Russia who greatly increased the territory of the empire (1729-1796) -10887593 18 n 02 Catherine_of_Aragon 0 Catherine 1 001 @i 10780632 n 0000 | first wife of Henry VIII; Henry VIII's divorce from her was the initial step of the Reformation in England (1485-1536) -10887790 18 n 01 Catherine_de_Medicis 0 002 @i 10499857 n 0000 @i 10516117 n 0000 | queen of France as the wife of Henry II and regent during the minority of her son Charles IX (1519-1589) -10887981 18 n 02 Catullus 0 Gaius_Valerius_Catullus 0 001 @i 10444194 n 0000 | Roman lyric poet remembered for his love poems to an aristocratic Roman woman (84-54 BC) -10888151 18 n 03 Cavell 0 Edith_Cavell 0 Edith_Louisa_Cavell 0 001 @i 10366966 n 0000 | English nurse who remained in Brussels after the German occupation in order to help Allied prisoners escape; was caught and executed by the Germans (1865-1915) -10888401 18 n 02 Cavendish 0 Henry_Cavendish 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | British chemist and physicist who established that water is a compound of hydrogen and oxygen and who calculated the density of the earth (1731-1810) -10888644 18 n 02 Caxton 0 William_Caxton 0 001 @i 10475297 n 0000 | English printer who in 1474 printed the first book in English (1422-1491) -10888788 18 n 02 Cellini 0 Benvenuto_Cellini 0 001 @i 10566072 n 0000 | Italian sculptor (1500-1571) -10888891 18 n 02 Celsius 0 Anders_Celsius 0 001 @i 09818343 n 0000 | Swedish astronomer who devised the centigrade thermometer (1701-1744) -10889032 18 n 04 Cervantes 0 Miguel_de_Cervantes 0 Cervantes_Saavedra 0 Miguel_de_Cervantes_Saavedra 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | Spanish writer best remembered for `Don Quixote' which satirizes chivalry and influenced the development of the novel form (1547-1616) -10889316 18 n 02 Cezanne 0 Paul_Cezanne 0 001 @i 10391653 n 0000 | French Post-impressionist painter who influenced modern art (especially cubism) by stressing the structural components latent in nature (1839-1906) -10889533 18 n 02 Chagall 0 Marc_Chagall 0 001 @i 10391653 n 0000 | French painter (born in Russia) noted for his imagery and brilliant colors (1887-1985) -10889689 18 n 03 Chamberlain 2 Neville_Chamberlain 0 Arthur_Neville_Chamberlain 0 001 @i 10650162 n 0000 | British statesman who as Prime Minister pursued a policy of appeasement toward fascist Germany (1869-1940) -10889905 18 n 03 Chambers 0 William_Chambers 0 Sir_William_Chambers 0 001 @i 09805475 n 0000 | English architect (1723-1796) -10890032 18 n 02 Champlain 0 Samuel_de_Champlain 0 001 @i 10072708 n 0000 | French explorer in Nova Scotia who established a settlement on the site of modern Quebec (1567-1635) -10890211 18 n 02 Champollion 0 Jean_Francois_Champollion 0 001 @i 10047822 n 0000 | Frenchman and Egyptologist who studied the Rosetta Stone and in 1821 became the first person to decipher Egyptian hieroglyphics (1790-1832) -10890437 18 n 03 Chandler 2 Raymond_Chandler 0 Raymond_Thornton_Chandler 0 001 @i 10794014 n 0000 | United States writer of detective thrillers featuring the character of Philip Marlowe (1888-1959) -10890637 18 n 03 Chaplin 0 Charlie_Chaplin 0 Sir_Charles_Spencer_Chaplin 0 002 @i 09940146 n 0000 @i 10088390 n 0000 | English comedian and film maker; portrayed a downtrodden little man in baggy pants and bowler hat (1889-1977) -10890868 18 n 03 Chapman 1 John_Chapman 0 Johnny_Appleseed 0 001 @i 10434424 n 0000 | United States pioneer who planted apple trees as he traveled (1774-1845) -10891029 18 n 03 Chain 0 Ernst_Boris_Chain 0 Sir_Ernst_Boris_Chain 0 001 @i 09854915 n 0000 | British biochemist (born in Germany) who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1906-1979) -10891271 18 n 02 Capet 0 Hugh_Capet 0 002 @i 10234340 n 0000 + 02678087 a 0101 | King of France elected in 987 and founding the Capetian dynasty (940-996) -10891428 18 n 02 Cattell 0 James_McKeen_Cattell 0 002 @i 10488865 n 0000 @i 10044879 n 0000 | American psychologist and editor (1860-1944) -10891569 18 n 05 Cattell 1 Ray_Cattell 0 R._B._Cattell 0 Raymond_B._Cattell 0 Raymond_Bernard_Cattell 0 001 @i 10488865 n 0000 | American psychologist (born in England) who developed a broad theory of human behavior based on multivariate research (1905-1998) -10891830 18 n 02 Charcot 0 Jean_Martin_Charcot 0 001 @i 10354265 n 0000 | French neurologist who tried to use hypnotism to cure hysteria (1825-1893) -10891981 18 n 05 Charlemagne 0 Carolus 0 Charles 2 Charles_I 1 Charles_the_Great 0 003 @i 10181137 n 0000 @i 09896520 n 0000 + 02680977 a 0301 | king of the Franks and Holy Roman Emperor; conqueror of the Lombards and Saxons (742-814) -10892218 18 n 03 Charles 1 Jacques_Charles 0 Jacques_Alexandre_Cesar_Charles 0 001 @i 10428004 n 0000 | French physicist and author of Charles's law which anticipated Gay-Lussac's law (1746-1823) -10892416 18 n 02 Charles 0 Prince_Charles 0 001 @i 10473917 n 0000 | the eldest son of Elizabeth II and heir to the English throne (born in 1948) -10892564 18 n 03 Charles 3 Charles_I 0 Charles_Stuart 0 002 @i 10233445 n 0000 + 02680723 a 0102 | son of James I who was King of England and Scotland and Ireland; was deposed and executed by Oliver Cromwell (1600-1649) -10892786 18 n 02 Charles 4 Charles_II 0 002 @i 10233445 n 0000 + 02680723 a 0102 | King of England and Scotland and Ireland during the Restoration (1630-1685) -10892947 18 n 04 Charles 5 Charles_II 1 Charles_I 2 Charles_the_Bald 0 002 @i 10181137 n 0000 @i 10234340 n 0000 | as Charles II he was Holy Roman Emperor and as Charles I he was king of France (823-877) -10893153 18 n 02 Charles 6 Charles_VII 0 001 @i 10234340 n 0000 | King of France who began his reign with most of northern France under English control; after the intervention of Jeanne d'Arc the French were able to defeat the English and end the Hundred Years' War (1403-1461) -10893433 18 n 02 Charles 7 Charles_IX 0 001 @i 10234340 n 0000 | King of France from 1560 to 1574 whose reign was dominated by his mother Catherine de Medicis (1550-1574) -10893606 18 n 03 Chase 0 Salmon_P._Chase 0 Salmon_Portland_Chase 0 002 @i 10450303 n 0000 @i 09916788 n 0000 | United States politician and jurist who served as chief justice of the United States Supreme Court (1808-1873) -10893830 18 n 03 Chateaubriand 0 Francois_Rene_Chateaubriand 0 Vicomte_de_Chateaubriand 0 002 @i 10650162 n 0000 @i 10794014 n 0000 | French statesman and writer; considered a precursor of the romantic movement in France (1768-1848) -10894065 18 n 02 Chaucer 0 Geoffrey_Chaucer 0 001 @i 10444194 n 0000 | English poet remembered as author of the Canterbury Tales (1340-1400) -10894208 18 n 03 Chavez 0 Cesar_Chavez 0 Cesar_Estrada_Chavez 0 001 @i 10242032 n 0000 | United States labor leader who organized farm workers (born 1927) -10894365 18 n 02 Chavez 1 Carlos_Chavez 0 001 @i 09947232 n 0000 | Mexican composer of nationalistic works using themes from Indian folk music (1899-1978) -10894522 18 n 02 Cheever 0 John_Cheever 0 001 @i 10794014 n 0000 | United States writer of novels and short stories (1912-1982) -10894652 18 n 06 Chekhov 0 Chekov 0 Anton_Chekhov 0 Anton_Chekov 0 Anton_Pavlovich_Chekhov 0 Anton_Pavlovich_Chekov 0 001 @i 10030277 n 0000 | Russian dramatist whose plays are concerned with the difficulty of communication between people (1860-1904) -10894905 18 n 03 Cherubini 0 Luigi_Cherubini 0 Maria_Luigi_Carlo_Zenobio_Cherubini 0 001 @i 09947232 n 0000 | Italian composer of church music and operas (1760-1842) -10895073 18 n 03 Chesterfield 0 Fourth_Earl_of_Chesterfield 0 Philip_Dormer_Stanhope 0 001 @i 10650162 n 0000 | suave and witty English statesman remembered mostly for letters to his son (1694-1773) -10895274 18 n 03 Chesterton 0 G._K._Chesterton 0 Gilbert_Keith_Chesterton 0 001 @i 10794014 n 0000 | conservative English writer of the Roman Catholic persuasion; in addition to volumes of criticism and polemics he wrote detective novels featuring Father Brown (1874-1936) -10895549 18 n 02 Chevalier 1 Maurice_Chevalier 0 002 @i 09765278 n 0000 @i 10599806 n 0000 | French actor and cabaret singer (1888-1972) -10895688 18 n 02 Chiang_Kai-shek 0 Chiang_Chung-cheng 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | Chinese military and political figure; in the Chinese civil war that followed World War II he was defeated by the Chinese communists and in 1949 was forced to withdraw to Taiwan where he served as president of Nationalist China until his death (1897-1975) -10896046 18 n 02 Chippendale 0 Thomas_Chippendale 0 001 @i 09885866 n 0000 | a British cabinetmaker remembered for his graceful designs (especially of chairs) which influenced his contemporaries (1718-1779) -10896255 18 n 02 Chirico 0 Giorgio_de_Chirico 0 001 @i 10391653 n 0000 | Italian painter (born in Greece) whose deep shadows and barren landscapes strongly influenced the surrealists (1888-1978) -10896452 18 n 03 Chomsky 0 Noam_Chomsky 0 A._Noam_Chomsky 0 001 @i 10264437 n 0000 | United States linguist whose theory of generative grammar redefined the field of linguistics (born 1928) -10896644 18 n 02 Chopin 0 Frederic_Francois_Chopin 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | French composer (born in Poland) and pianist of the romantic school (1810-1849) -10896823 18 n 03 Chopin 1 Kate_Chopin 0 Kate_O'Flaherty_Chopin 0 001 @i 10794014 n 0000 | United States writer who described Creole life in Louisiana (1851-1904) -10896987 18 n 03 Christie 0 Agatha_Christie 0 Dame_Agatha_Mary_Clarissa_Christie 0 001 @i 10794014 n 0000 | prolific English writer of detective stories (1890-1976) -10897154 18 n 03 Christopher 0 Saint_Christopher 0 St._Christopher 0 001 @i 10408552 n 0000 | Christian martyr and patron saint of travellers (3rd century) -10897312 18 n 04 Churchill 0 Winston_Churchill 0 Winston_S._Churchill 0 Sir_Winston_Leonard_Spenser_Churchill 0 003 @i 10650162 n 0000 @i 10794014 n 0000 + 02696386 a 0101 | British statesman and leader during World War II; received Nobel prize for literature in 1953 (1874-1965) -10897594 18 n 04 Churchill 1 John_Churchill 0 Duke_of_Marlborough 0 First_Duke_of_Marlborough 0 001 @i 10123844 n 0000 | English general considered one of the greatest generals in history (1650-1722) -10897796 18 n 03 Ciardi 0 John_Ciardi 0 John_Anthony_Ciardi 0 002 @i 10444194 n 0000 @i 10266016 n 0000 | United States poet and critic (1916-1986) -10897946 18 n 03 Cicero 0 Marcus_Tullius_Cicero 0 Tully 0 002 @i 10380672 n 0000 @i 10650162 n 0000 | a Roman statesman and orator remembered for his mastery of Latin prose (106-43 BC) -10898133 18 n 02 Cimabue 0 Giovanni_Cimabue 0 001 @i 10375794 n 0000 | painter of the Florentine school; anticipated the move from Byzantine to naturalistic art (1240-1302) -10898308 18 n 02 Cincinnatus 0 Lucius_Quinctius_Cincinnatus 0 001 @i 10650162 n 0000 | Roman statesman regarded as a model of simple virtue; he twice was called to assume dictatorship of Rome and each time retired to his farm (519-438 BC) -10898549 18 n 03 Clark 0 Joe_Clark 0 Charles_Joseph_Clark 0 001 @i 10450303 n 0000 | Canadian politician who served as prime minister (1939-) -10898693 18 n 03 Clark 1 Kenneth_Clark 0 Kenneth_Bancroft_Clark 0 001 @i 10488865 n 0000 | United States psychologist (born in Panama) whose research persuaded the Supreme Court that segregated schools were discriminatory (1914-2005) -10898929 18 n 03 Clark 2 Mark_Clark 0 Mark_Wayne_Clark 0 001 @i 10123844 n 0000 | United States general who was Allied commander in Africa and Italy in World War II and was commander of the United Nations forces in Korea (1896-1984) -10899164 18 n 02 Clark 3 William_Clark 0 001 @i 10072708 n 0000 | United States explorer who (with Meriwether Lewis) led an expedition from St. Louis to the mouth of the Columbia River; Clark was responsible for making maps of the area (1770-1838) -10899414 18 n 03 Claudius 0 Claudius_I 0 Tiberius_Claudius_Drusus_Nero_Germanicus 0 001 @i 10537240 n 0000 | Roman Emperor after his nephew Caligula was murdered; consolidated the Roman Empire and conquered southern Britain; was poisoned by his fourth wife Agrippina after her son Nero was named as Claudius' heir (10 BC to AD 54) -10899747 18 n 02 Clausewitz 0 Karl_von_Clausewitz 0 001 @i 10123844 n 0000 | Prussian general and military theorist who proposed a doctrine of total war and war as an extension of diplomacy (1780-1831) -10899951 18 n 03 Clay 0 Henry_Clay 0 the_Great_Compromiser 0 001 @i 10450303 n 0000 | United States politician responsible for the Missouri Compromise between free and slave states (1777-1852) -10900146 18 n 03 Clay 1 Lucius_Clay 0 Lucius_DuBignon_Clay 0 001 @i 10123844 n 0000 | United States general who commanded United States forces in Europe from 1945 to 1949 and who oversaw the Berlin airlift (1897-1978) -10900366 18 n 01 Cleanthes 0 001 @i 10423589 n 0000 | ancient Greek philosopher who succeeded Zeno of Citium as the leader of the Stoic school (300-232 BC) -10900524 18 n 03 Clemenceau 0 Georges_Clemenceau 0 Georges_Eugene_Benjamin_Clemenceau 0 001 @i 10650162 n 0000 | French statesman who played a key role in negotiating the Treaty of Versailles (1841-1929) -10900730 18 n 03 Clemens 0 Samuel_Langhorne_Clemens 0 Mark_Twain 0 002 @i 10794014 n 0000 @i 10191943 n 0000 | United States writer and humorist best known for his novels about Tom Sawyer and Huckleberry Finn (1835-1910) -10900953 18 n 02 Clement_III 0 Guibert_of_Ravenna 0 001 @i 09797375 n 0000 | Italian antipope from 1080 to 1100 who was installed as pope by the Holy Roman Emperor Henry IV who consistently opposed efforts at papal reform (died in 1100) -10901192 18 n 02 Clement_VII 0 Giulio_de'_Medici 0 001 @i 10453533 n 0000 | Italian pope from 1523 to 1534 who broke with Henry VIII of England after Henry VIII divorced Catherine of Aragon and married Anne Boleyn (1478-1534) -10901420 18 n 02 Clement_XI 0 Giovanni_Francesco_Albani 0 001 @i 10453533 n 0000 | Italian pope from 1700 to 1721 who condemned Jansenist ideas on papal infallibility -10901589 18 n 02 Clement_XIV 0 Lorenzo_Ganganelli 0 001 @i 10453533 n 0000 | Italian pope from 1769 to 1774 who lost whatever support remained of Catholic Europe, causing the church to fall into the hands of secular princes (1705-1774) -10901827 18 n 01 Cleopatra 0 002 @i 10499355 n 0000 @i 09700492 n 0000 | beautiful and charismatic queen of Egypt; mistress of Julius Caesar and later of Mark Antony; killed herself to avoid capture by Octavian (69-30 BC) -10902051 18 n 04 Cleveland 0 Grover_Cleveland 0 Stephen_Grover_Cleveland 0 President_Cleveland 0 001 @i 10467395 n 0000 | 22nd and 24th President of the United States (1837-1908) -10902232 18 n 02 Cline 0 Martin_Cline 0 001 @i 10126424 n 0000 | American geneticist who succeeded in transferring a functioning gene from one mouse to another (born in 1934) -10902409 18 n 02 Clinton 1 DeWitt_Clinton 0 001 @i 10450303 n 0000 | United States politician who as governor of New York supported the project to build the Erie Canal (1769-1828) -10902591 18 n 04 Clinton 0 Bill_Clinton 0 William_Jefferson_Clinton 0 President_Clinton 0 001 @i 10467395 n 0000 | 42nd President of the United States (1946-) -10902752 18 n 03 Clinton 2 Hilary_Clinton 0 Hilary_Rodham_Clinton 0 001 @i 10578471 n 0000 | wife of President Clinton and later a woman member of the United States Senate (1947-) -10902934 18 n 04 Clive 0 Robert_Clive 0 Baron_Clive 0 Baron_Clive_of_Plassey 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | British general and statesman whose victory at Plassey in 1757 strengthened British control of India (1725-1774) -10903172 18 n 02 Clovis 0 Clovis_I 0 002 @i 10231515 n 0000 @i 09688804 n 0000 | king of the Franks who unified Gaul and established his capital at Paris and founded the Frankish monarchy; his name was rendered as Gallic `Louis' (466-511) -10903413 18 n 02 Coca 0 Imogene_Coca 0 001 @i 09940818 n 0000 | United States comedienne who starred in early television shows with Sid Caesar (1908-2001) -10903570 18 n 01 Cochise 0 002 @i 10203298 n 0000 @i 09649926 n 0000 | Apache leader of the resistance to United States troops in Arizona (1812-1874) -10903722 18 n 02 Cochran 0 Jacqueline_Cochran 0 001 @i 09826204 n 0000 | United States aviator who held several speed records and headed the women's Air Force pilots in World War II (1910-1980) -10903918 18 n 03 Cockcroft 0 Sir_John_Cockcroft 0 Sir_John_Douglas_Cockcroft 0 001 @i 10364643 n 0000 | British physicist who (with Ernest Walton in 1931) first split an atom (1897-1967) -10904107 18 n 02 Cocteau 0 Jean_Cocteau 0 002 @i 10794014 n 0000 @i 10088390 n 0000 | French writer and film maker who worked in many artistic media (1889-1963) -10904270 18 n 05 Cody 0 William_F._Cody 0 William_Frederick_Cody 0 Buffalo_Bill 0 Buffalo_Bill_Cody 0 001 @i 10593745 n 0000 | United States showman famous for his Wild West Show (1846-1917) -10904463 18 n 03 Cohan 0 George_M._Cohan 0 George_Michael_Cohan 0 001 @i 10624540 n 0000 | United States songwriter and playwright famous for his patriotic songs (1878-1942) -10904639 18 n 02 Cohn 0 Ferdinand_Julius_Cohn 0 001 @i 09868270 n 0000 | German botanist who is generally recognized as founding bacteriology when he recognized bacteria as plants -10904821 18 n 02 Coleridge 0 Samuel_Taylor_Coleridge 0 004 @i 10444194 n 0000 #m 08468721 n 0000 + 03029801 a 0101 + 03029801 a 0102 | English romantic poet (1772-1834) -10904992 18 n 03 Colette 0 Sidonie-Gabrielle_Colette 0 Sidonie-Gabrielle_Claudine_Colette 0 001 @i 10794014 n 0000 | French writer of novels about women (1873-1954) -10905159 18 n 03 Collins 0 Wilkie_Collins 0 William_Wilkie_Collins 0 001 @i 10794014 n 0000 | English writer noted for early detective novels (1824-1889) -10905315 18 n 04 Columbus 0 Christopher_Columbus 0 Cristoforo_Colombo 0 Cristobal_Colon 0 002 @i 10347883 n 0000 + 03029984 a 0101 | Italian navigator who discovered the New World in the service of Spain while looking for a route to China (1451-1506) -10905568 18 n 03 Comenius 0 John_Amos_Comenius 0 Jan_Amos_Komensky 0 001 @i 10045713 n 0000 | Czech educational reformer (1592-1670) -10905703 18 n 03 Compton 0 Arthur_Compton 0 Arthur_Holly_Compton 0 001 @i 10364643 n 0000 | United States physicist noted for research on x-rays and gamma rays and nuclear energy; his observation that X-rays behave like miniature bowling balls in their interactions with electrons provided evidence for the quantal nature of light (1892-1962) -10906048 18 n 02 Comstock 0 Anthony_Comstock 0 001 @i 10515194 n 0000 | United States reformer who led moral crusades against art and literature that he considered obscene (1844-1915) -10906234 18 n 03 Comte 0 Auguste_Comte 0 Isidore_Auguste_Marie_Francois_Comte 0 001 @i 10423589 n 0000 | French philosopher remembered as the founder of positivism; he also established sociology as a systematic field of study -10906462 18 n 04 Conan_Doyle 0 A._Conan_Doyle 0 Arthur_Conan_Doyle 0 Sir_Arthur_Conan_Doyle 0 001 @i 10794014 n 0000 | British author who created Sherlock Holmes (1859-1930) -10906638 18 n 03 Condorcet 0 Marquis_de_Condorcet 0 Marie_Jean_Antoine_Nicolas_Caritat 0 002 @i 10301261 n 0000 @i 10423589 n 0000 | French mathematician and philosopher (1743-1794) -10906822 18 n 04 Confucius 0 Kongfuze 0 K'ung_Futzu 0 Kong_the_Master 0 002 @i 10423589 n 0000 + 02924600 a 0101 | Chinese philosopher whose ideas and sayings were collected after his death and became the basis of a philosophical doctrine known a Confucianism (circa 551-478 BC) -10907103 18 n 02 Congreve 0 William_Congreve 0 001 @i 10030277 n 0000 | English playwright remembered for his comedies (1670-1729) -10907236 18 n 03 Connolly 0 Maureen_Catherine_Connolly 0 Little_Mo_Connolly 0 001 @i 10701180 n 0000 | United States tennis player who was the first woman to win the United States, British, French, and Australian championships in the same year (1953) (1934-1969) -10907501 18 n 03 Connors 0 Jimmy_Conors 0 James_Scott_Connors 0 001 @i 10701180 n 0000 | outstanding United States tennis player (born in 1952) -10907647 18 n 03 Conrad 0 Joseph_Conrad 0 Teodor_Josef_Konrad_Korzeniowski 0 001 @i 10794014 n 0000 | English novelist (born in Poland) noted for sea stories and for his narrative technique (1857-1924) -10907851 18 n 02 Constable 2 John_Constable 0 001 @i 10391653 n 0000 | English landscape painter (1776-1837) -10907962 18 n 04 Constantine 0 Constantine_I 0 Constantine_the_Great 0 Flavius_Valerius_Constantinus 0 001 @i 10537240 n 0000 | Emperor of Rome who stopped the persecution of Christians and in 324 made Christianity the official religion of the Roman Empire; in 330 he moved his capital from Rome to Byzantium and renamed it Constantinople (280-337) -10908313 18 n 04 Cook 1 James_Cook 0 Captain_Cook 0 Captain_James_Cook 0 001 @i 10347883 n 0000 | English navigator who claimed the east coast of Australia for Britain and discovered several Pacific islands (1728-1779) -10908534 18 n 02 Cooke 0 Jay_Cooke 0 001 @i 10090020 n 0000 | United States financier who marketed Union bonds to finance the American Civil War; the failure of his bank resulted in a financial panic in 1873 (1821-1905) -10908756 18 n 03 Cooke 1 Alistair_Cooke 0 Alfred_Alistair_Cooke 0 002 @i 10224578 n 0000 ;r 08871007 n 0000 | United States journalist (born in England in 1908) -10908919 18 n 03 Coolidge 0 Calvin_Coolidge 0 President_Coolidge 0 001 @i 10467395 n 0000 | elected vice president and succeeded as 30th President of the United States when Harding died in 1923 (1872-1933) -10909127 18 n 02 Cooper 0 James_Fenimore_Cooper 0 001 @i 10794014 n 0000 | United States novelist noted for his stories of American Indians and the frontier life (1789-1851) -10909303 18 n 03 Cooper 1 Gary_Cooper 0 Frank_Cooper 0 001 @i 09765278 n 0000 | United States film actor noted for his portrayals of strong silent heroes (1901-1961) -10909471 18 n 02 Cooper 2 Peter_Cooper 0 002 @i 10204177 n 0000 @i 10421956 n 0000 | United States industrialist who built the first American locomotive; founded Cooper Union in New York City to offer free courses in the arts and sciences (1791-1883) -10909724 18 n 03 Copernicus 0 Nicolaus_Copernicus 0 Mikolaj_Kopernik 0 001 @i 09818343 n 0000 | Polish astronomer who produced a workable model of the solar system with the sun in the center (1473-1543) -10909929 18 n 02 Copland 0 Aaron_Copland 0 001 @i 09947232 n 0000 | United States composer who developed a distinctly American music (1900-1990) -10910076 18 n 03 Copley 0 John_Copley 0 John_Singleton_Copley 0 001 @i 10391653 n 0000 | American painter who did portraits of Paul Revere and John Hancock before fleeing to England to avoid the American Revolution (1738-1815) -10910305 18 n 02 Coppola 0 Francis_Ford_Coppola 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1939) -10910421 18 n 04 Corbett 0 Jim_Corbett 0 James_John_Corbett 0 Gentleman_Jim 0 001 @i 10477077 n 0000 | United States heavyweight boxing champion (1866-1933) -10910580 18 n 03 Corday 0 Charlotte_Corday 0 Marie_Anne_Charlotte_Corday_d'Armont 0 001 @i 10527334 n 0000 | French revolutionary heroine (a Girondist) who assassinated Marat (1768-1793) -10910769 18 n 04 Cordoba 0 Francisco_Fernandez_Cordoba 0 Cordova 0 Francisco_Fernandez_de_Cordova 0 001 @i 10072708 n 0000 | Spanish explorer who discovered Yucatan (1475-1526) -10910948 18 n 02 Corelli 0 Arcangelo_Corelli 0 002 @i 10754578 n 0000 @i 09947232 n 0000 | Italian violinist and composer of violin concertos (1653-1713) -10911104 18 n 02 Corneille 0 Pierre_Corneille 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | French tragic dramatist whose plays treat grand moral themes in elegant verse (1606-1684) -10911288 18 n 02 Cornell 0 Ezra_Cornell 0 002 @i 09882007 n 0000 @i 10421956 n 0000 | United States businessman who unified the telegraph system in the United States and who in 1865 (with Andrew D. White) founded Cornell University (1807-1874) -10911534 18 n 02 Cornell 1 Katherine_Cornell 0 001 @i 09767700 n 0000 | United States actress noted for her performances in Broadway plays (1893-1974) -10911687 18 n 03 Cornwallis 0 Charles_Cornwallis 0 First_Marquess_Cornwallis 0 002 @i 10412910 n 0000 @i 10123844 n 0000 | commander of the British forces in the American War of Independence; was defeated by American and French troops at Yorktown (1738-1805) -10911948 18 n 02 Corot 0 Jean_Baptiste_Camille_Corot 0 001 @i 10391653 n 0000 | French painter of Italian landscapes (1796-1875) -10912079 18 n 02 Correggio 0 Antonio_Allegri_da_Correggio 0 001 @i 10375794 n 0000 | Italian painter noted for his use of chiaroscuro and perspective (1494-1534) -10912243 18 n 06 Cortes 0 Cortez 0 Hernando_Cortes 0 Hernando_Cortez 0 Hernan_Cortes 0 Hernan_Cortez 0 001 @i 09956780 n 0000 | Spanish conquistador who defeated the Aztecs and conquered Mexico (1485-1547) -10912451 18 n 02 Cosimo_de_Medici 0 Cosimo_the_Elder 0 002 @i 10090020 n 0000 @i 10650162 n 0000 | Italian financier and statesman and friend of the papal court (1389-1464) -10912626 18 n 02 Coue 0 Emile_Coue 0 001 @ 10489944 n 0000 | French psychotherapist who claimed that if one imagined one was getting better, one would get better (1857-1926) -10912802 18 n 02 Coulomb 0 Charles_Augustin_de_Coulomb 0 001 @i 10428004 n 0000 | French physicist famous for his discoveries in the field of electricity and magnetism; formulated Coulomb's Law (1736-1806) -10913010 18 n 02 Couperin 0 Francois_Couperin 0 002 @i 10382825 n 0000 @i 09947232 n 0000 | French composer of music for organ and a member of a family of distinguished organists (1668-1733) -10913203 18 n 02 Courbet 0 Gustave_Courbet 0 001 @i 10391653 n 0000 | French painter noted for his realistic depiction of everyday scenes (1819-1877) -10913355 18 n 02 Court 0 Margaret_Court 0 001 @i 10701180 n 0000 | Australian woman tennis player who won many major championships (born in 1947) -10913503 18 n 03 Cousteau 0 Jacques_Costeau 0 Jacques_Yves_Costeau 0 001 @i 10072708 n 0000 | French underwater explorer (born in 1910) -10913641 18 n 03 Coward 1 Noel_Coward 0 Sir_Noel_Pierce_Coward 0 003 @i 10030277 n 0000 @i 09765278 n 0000 @i 09947232 n 0000 | English dramatist and actor and composer noted for his witty and sophisticated comedies (1899-1973) -10913871 18 n 02 Cowper 0 William_Cowper 0 001 @i 10444194 n 0000 | English poet who wrote hymns and poetry about nature (1731-1800) -10914006 18 n 02 Cowper 1 William_Cowper 1 001 @i 10679174 n 0000 | English surgeon who discovered Cowper's gland (1666-1709) -10914134 18 n 03 Craigie 0 William_A._Craigie 0 Sir_William_Alexander_Craigie 0 001 @i 10256080 n 0000 | English lexicographer who was a joint editor of the Oxford English Dictionary (1872-1966) -10914331 18 n 03 Crane 0 Hart_Crane 0 Harold_Hart_Crane 0 001 @i 10444194 n 0000 | United States poet (1899-1932) -10914447 18 n 02 Crane 1 Stephen_Crane 0 001 @i 10794014 n 0000 | United States writer (1871-1900) -10914548 18 n 02 Crawford 0 Joan_Crawford 0 001 @i 09767700 n 0000 | United States film actress (1908-1977) -10914658 18 n 02 Crawford 1 Thomas_Crawford 0 001 @i 10566072 n 0000 | United States neoclassical sculptor (1814-1857) -10914779 18 n 02 Crazy_Horse 0 Tashunca-Uitco 0 002 @i 10203298 n 0000 @i 09669125 n 0000 | a chief of the Sioux who resisted the invasion of the Black Hills and joined Sitting Bull in the defeat of General Custer at Little Bighorn (1849-1877) -10915025 18 n 03 Crichton 0 James_Crichton 0 The_Admirable_Crichton 0 001 @i 10557854 n 0000 | Scottish man of letters and adventurer (1560-1582) -10915173 18 n 03 Crick 0 Francis_Crick 0 Francis_Henry_Compton_Crick 0 001 @i 09854915 n 0000 | English biochemist who (with Watson in 1953) helped discover the helical structure of DNA (1916-2004) -10915373 18 n 03 Crispin 0 Saint_Crispin 0 St._Crispin 0 001 @i 10408552 n 0000 | patron saint of shoemakers; he and his brother were martyred for trying to spread Christianity (3rd century) -10915566 18 n 03 Crockett 0 Davy_Crockett 0 David_Crockett 0 002 @i 10113072 n 0000 @i 10450303 n 0000 | United States frontiersman and Tennessee politician who died at the siege of the Alamo (1786-1836) -10915772 18 n 01 Croesus 0 001 @i 10231515 n 0000 | last king of Lydia (died in 546 BC) -10915862 18 n 02 Crohn 0 Burrill_Bernard_Crohn 0 001 @i 10020890 n 0000 | United States physician who specialized in diseases of the intestines; he was the first to describe regional ileitis which is now known as Crohn's disease (1884-1983) -10916105 18 n 03 Cromwell 0 Oliver_Cromwell 0 Ironsides 0 003 @i 10123844 n 0000 @i 10650162 n 0000 + 03030235 a 0101 | English general and statesman who led the parliamentary army in the English Civil War (1599-1658) -10916325 18 n 03 Cronyn 0 Hume_Cronyn 0 Hume_Blake_Cronyn 0 001 @i 09765278 n 0000 | Canadian actor who frequently played character parts with his wife Jessica Tandy (1911-2003) -10916505 18 n 03 Crookes 0 William_Crookes 0 Sir_William_Crookes 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | English chemist and physicist; discovered thallium; invented the radiometer and studied cathode rays (1832-1919) -10916731 18 n 03 Crosby 0 Bing_Crosby 0 Harry_Lillis_Crosby 0 002 @i 09980090 n 0000 @i 09765278 n 0000 | United States singer and film actor (1904-1977) -10916887 18 n 02 Crouse 0 Russel_Crouse 0 001 @i 10030277 n 0000 | United States playwright (1893-1966) -10916993 18 n 02 Culbertson 0 Ely_Culbertson 0 001 @i 09894654 n 0000 | United States authority on contract bridge whose books helped to popularize the game (1891-1955) -10917164 18 n 04 Cumberland 0 William_Augustus 0 Duke_of_Cumberland 0 Butcher_Cumberland 0 001 @i 10123844 n 0000 | English general; son of George II; fought unsuccessfully in the battle of Fontenoy (1721-1765) -10917377 18 n 03 cummings 0 e._e._cummings 0 Edward_Estlin_Cummings 0 001 @i 10794014 n 0000 | United States writer noted for his typographically eccentric poetry (1894-1962) -10917554 18 n 02 Cunningham 0 Merce_Cunningham 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer (born in 1922) -10917703 18 n 04 Curie 0 Marie_Curie 0 Madame_Curie 0 Marya_Sklodowska 0 001 @i 09913824 n 0000 | French chemist (born in Poland) who won two Nobel prizes; one (with her husband and Henri Becquerel) for research on radioactivity and another for her discovery of radium and polonium (1867-1934) -10917999 18 n 02 Curie 1 Pierre_Curie 0 001 @i 10428004 n 0000 | French physicist; husband of Marie Curie (1859-1906) -10918119 18 n 04 Curl 0 Robert_Curl 0 Robert_F._Curl 0 Robert_Floyd_Curl_Jr. 0 001 @i 09913824 n 0000 | American chemist who with Richard Smalley and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1933) -10918358 18 n 02 Currier 1 Nathaniel_Currier 0 001 @i 10266486 n 0000 | United States lithographer who (with his partner James Ives) produced thousands of prints signed `Currier & Ives' (1813-1888) -10918558 18 n 02 Curtis 0 William_Curtis 0 001 @i 09868270 n 0000 | English botanical writer and publisher (1746-1799) -10918679 18 n 03 Curtiss 0 Glenn_Curtiss 0 Glenn_Hammond_Curtiss 0 001 @i 10204177 n 0000 | United States industrialist and aviation pioneer (1878-1930) -10918834 18 n 03 Cushing 0 Harvey_Cushing 0 Harvery_Williams_Cushing 0 001 @i 10354265 n 0000 | United States neurologist noted for his study of the brain and pituitary gland and who identified Cushing's syndrome (1869-1939) -10919061 18 n 03 Custer 0 George_Armstrong_Custer 0 General_Custer 0 001 @i 10123844 n 0000 | United States general who was killed along with all his command by the Sioux at the Battle of Little Bighorn (1839-1876) -10919278 18 n 04 Cuvier 0 Georges_Cuvier 0 Baron_Georges_Cuvier 0 Georges_Leopold_Chretien_Frederic_Dagobert_Cuvier 0 001 @i 10346514 n 0000 | French naturalist known as the father of comparative anatomy (1769-1832) -10919496 18 n 02 Cynewulf 0 Cynwulf 0 001 @i 10444194 n 0000 | Anglo-Saxon poet (circa 9th century) -10919598 18 n 02 Cyrano_de_Bergerac 0 Savinien_Cyrano_de_Bergerac 0 002 @i 10622053 n 0000 @i 10030277 n 0000 | a French soldier and dramatist remembered chiefly for fighting many duels (often over the size of his nose); was immortalized in 1897 in a play by Edmond Rostand (1619-1655) -10919886 18 n 03 Cyril 0 Saint_Cyril 0 St._Cyril 0 001 @ 10322957 n 0000 | Greek missionary; the invention of the Cyrillic alphabet is attributed to him (826-869) -10920051 18 n 02 Cyrus 0 Cyrus_the_Younger 0 001 @i 10472799 n 0000 | Persian prince who was defeated in battle by his brother Artaxerxes II (424-401 BC) -10920207 18 n 03 Cyrus_II 0 Cyrus_the_Elder 0 Cyrus_the_Great 0 001 @i 10231515 n 0000 | king of Persia and founder of the Persian Empire (circa 600-529 BC) -10920366 18 n 02 Czerny 0 Karl_Czerny 0 002 @i 10430665 n 0000 @i 09947232 n 0000 | Austrian virtuoso pianist and composer of many works for the piano; studied with Beethoven and was a teacher of Liszt (1791-1857) -10920582 18 n 03 da_Gamma 0 Vasco_da_Gamma 0 Gamma 0 001 @i 10347883 n 0000 | Portuguese navigator who led an expedition around the Cape of Good Hope in 1497; he sighted and named Natal on Christmas Day before crossing the Indian Ocean (1469-1524) -10920832 18 n 02 Daguerre 0 Louis_Jacques_Mande_Daguerre 0 001 @i 10214637 n 0000 | French inventor of the first practical photographic process, the daguerreotype (1789-1851) -10921009 18 n 02 Daimler 0 Gottlieb_Daimler 0 002 @i 09615807 n 0000 @i 10204177 n 0000 | German engineer and automobile manufacturer who produced the first high-speed internal combustion engine (1834-1900) -10921218 18 n 02 Dali 0 Salvador_Dali 0 001 @i 10391653 n 0000 | surrealist Spanish painter (1904-1989) -10921324 18 n 02 Dalton 0 John_Dalton 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | English chemist and physicist who formulated atomic theory and the law of partial pressures; gave the first description of red-green color blindness (1766-1844) -10921571 18 n 01 Damocles 0 001 @i 09971839 n 0000 | the Greek courtier to Dionysius the Elder who (according to legend) was condemned to sit under a naked sword that was suspended by a hair in order to demonstrate to him that being a king was not the happy state Damocles had said it was (4th century BC) -10921879 18 n 01 Damon 0 001 @i 10112591 n 0000 | the friend of Phintias who pledged his life that Phintias would return (4th century BC) -10922019 18 n 01 Daniel 1 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) a youth who was taken into the court of Nebuchadnezzar and given divine protection when thrown into a den of lions (6th century BC) -10922239 18 n 02 Dante 0 Dante_Alighieri 0 002 @i 10444194 n 0000 + 03030364 a 0101 | an Italian poet famous for writing the Divine Comedy that describes a journey through Hell and purgatory and paradise guided by Virgil and his idealized Beatrice (1265-1321) -10922501 18 n 02 Danton 0 Georges_Jacques_Danton 0 001 @i 10527334 n 0000 | French revolutionary leader who stormed the Paris bastille and who supported the execution of Louis XVI but was guillotined by Robespierre for his opposition to the Reign of Terror (1759-1794) -10922772 18 n 02 Darius_I 0 Darius_the_Great 0 001 @i 10231515 n 0000 | king of Persia who expanded the Persian Empire and invaded Greece but was defeated at the battle of Marathon (550-486 BC) -10922968 18 n 01 Darius_III 0 001 @i 10231515 n 0000 | king of Persia who was defeated by Alexander the Great; his murder effectively ended the Persian Empire (died in 330 BC) -10923146 18 n 03 Darrow 0 Clarence_Darrow 0 Clarence_Seward_Darrow 0 001 @i 10249950 n 0000 | United States lawyer famous for his defense of lost causes (1857-1938) -10923313 18 n 03 Darwin 0 Charles_Darwin 0 Charles_Robert_Darwin 0 002 @i 10346514 n 0000 + 03013550 a 0101 | English natural scientist who formulated a theory of evolution by natural selection (1809-1882) -10923521 18 n 02 Daumier 0 Honore_Daumier 0 002 @i 10391653 n 0000 @i 10266486 n 0000 | French painter best known for his satirical lithographs of bourgeois society (1808-1879) -10923700 18 n 01 David 0 002 @i 10231515 n 0000 ;c 06449735 n 0000 | (Old Testament) the 2nd king of the Israelites; as a young shepherd he fought Goliath (a giant Philistine warrior) and killed him by hitting him in the head with a stone flung from a sling; he united Israel with Jerusalem as its capital; many of the Psalms are attributed to David (circa 1000-962 BC) -10924072 18 n 02 David 1 Jacques_Louis_David 0 001 @i 10391653 n 0000 | French neoclassical painter who actively supported the French Revolution (1748-1825) -10924231 18 n 03 David 2 Saint_David 0 St._David 0 001 @i 10408552 n 0000 | patron saint of Wales (circa 520-600) -10924347 18 n 02 Davis 0 Bette_Davis 0 001 @i 09767700 n 0000 | United States film actress (1908-1989) -10924452 18 n 03 Davis 1 Dwight_Davis 0 Dwight_Filley_Davis 0 001 @i 10701180 n 0000 | United States tennis player who donated the Davis Cup for international team tennis competition (1879-1945) -10924649 18 n 02 Davis 2 Jefferson_Davis 0 001 @i 10650162 n 0000 | American statesman; president of the Confederate States of America during the American Civil War (1808-1889) -10924828 18 n 03 Davis 3 Miles_Davis 0 Miles_Dewey_Davis_Jr. 0 001 @i 10220486 n 0000 | United States jazz musician; noted for his trumpet style (1926-1991) -10924987 18 n 02 Davis 4 Stuart_Davis 0 001 @i 10391653 n 0000 | United States painter who developed an American version of cubism (1894-1964) -10925132 18 n 03 Davy 0 Humphrey_Davy 0 Sir_Humphrey_Davy 0 001 @i 09913824 n 0000 | English chemist who was a pioneer in electrochemistry and who used it to isolate elements sodium and potassium and barium and boron and calcium and magnesium and chlorine (1778-1829) -10925402 18 n 04 Davys 0 John_Davys 0 Davis 5 John_Davis 0 001 @i 10347883 n 0000 | English navigator who explored the Arctic while searching for the Northwest Passage (1550-1605) -10925584 18 n 02 Dawes 0 William_Dawes 0 001 @i 09740085 n 0000 | American patriot who rode with Paul Revere to warn that the British were advancing on Lexington and Concord (1745-1799) -10925772 18 n 03 Day 0 Clarence_Day 0 Clarence_Shepard_Day_Jr. 0 001 @i 10794014 n 0000 | United States writer best known for his autobiographical works (1874-1935) -10925939 18 n 02 Dayan 0 Moshe_Dayan 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | Israeli general and statesman (1915-1981) -10926066 18 n 03 Dean 2 James_Dean 0 James_Byron_Dean 0 001 @i 09765278 n 0000 | United States film actor whose moody rebellious roles made him a cult figure (1931-1955) -10926238 18 n 02 De_Bakey 0 Michael_Ellis_De_Bakey 0 001 @i 10679174 n 0000 | United States heart surgeon who in 1966 implanted the first artificial heart in a human patient (born in 1908) -10926429 18 n 03 Debs 0 Eugene_V._Debs 0 Eugene_Victor_Debs 0 001 @i 10383505 n 0000 | United States labor organizer who ran for President as a socialist (1855-1926) -10926597 18 n 03 Debussy 0 Claude_Debussey 0 Claude_Achille_Debussy 0 001 @i 09947232 n 0000 | French composer who is said to have created Impressionism in music (1862-1918) -10926773 18 n 02 Decatur 0 Stephen_Decatur 0 001 @i 10347593 n 0000 | United States naval officer remembered for his heroic deeds (1779-1820) -10926917 18 n 01 Decius 0 001 @i 10537240 n 0000 | Emperor of Rome who was proclaimed emperor against his will; his reign was notable for his severe persecution of Christians (201-251) -10927104 18 n 02 Deere 0 John_Deere 0 001 @i 10204177 n 0000 | United States industrialist who manufactured plows suitable for working the prairie soil (1804-1886) -10927270 18 n 02 Defoe 0 Daniel_Defoe 0 001 @i 10794014 n 0000 | English writer remembered particularly for his novel about Robinson Crusoe (1660-1731) -10927424 18 n 03 De_Forest 0 Lee_De_Forest 0 Father_of_Radio 0 002 @i 10049017 n 0000 @i 10214637 n 0000 | United States electrical engineer who in 1907 patented the first triode vacuum tube, which made it possible to detect and amplify radio waves (1873-1961) -10927687 18 n 03 Degas 0 Edgar_Degas 0 Hilaire_Germain_Edgar_Degas 0 001 @i 10391653 n 0000 | French impressionist painter (1834-1917) -10927824 18 n 05 de_Gaulle 0 General_de_Gaulle 0 Charles_de_Gaulle 0 General_Charles_de_Gaulle 0 Charles_Andre_Joseph_Marie_de_Gaulle 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | French general and statesman who became very popular during World War II as the leader of the Free French forces in exile (1890-1970) -10928140 18 n 04 Dekker 0 Decker 0 Thomas_Dekker 0 Thomas_Decker 0 002 @i 10030277 n 0000 @i 10395605 n 0000 | English dramatist and pamphleteer (1572-1632) -10928299 18 n 02 de_Kooning 0 Willem_de_Kooning 0 001 @i 10391653 n 0000 | United States painter (born in the Netherlands) who was a leading American exponent of abstract expressionism (1904-1997) -10928498 18 n 03 Delacroix 0 Eugene_Delacroix 0 Ferdinand_Victor_Eugene_Delacroix 0 001 @i 10391653 n 0000 | French romantic painter (1798-1863) -10928645 18 n 03 de_la_Mare 0 Walter_de_la_Mare 0 Walter_John_de_la_Mare 0 001 @i 10444194 n 0000 | English poet remembered for his verse for children (1873-1956) -10928810 18 n 02 Delbruck 0 Max_Delbruck 0 001 @i 09855630 n 0000 | United States biologist (born in Germany) who studied how viruses infect living cells (1906-1981) -10928978 18 n 03 Delibes 0 Leo_Delibes 0 Clement_Philibert_Leo_Delibes 0 001 @i 09947232 n 0000 | French composer of operas (1836-1891) -10929116 18 n 01 Delilah 0 002 @i 10323752 n 0000 ;c 06449735 n 0000 | (Old Testament) the Philistine mistress of Samson who betrayed him by cutting off his hair and so deprived him of his strength -10929316 18 n 02 Delius 0 Frederick_Delius 0 001 @i 09947232 n 0000 | English composer of orchestral works (1862-1934) -10929437 18 n 04 Delorme 0 Philibert_Delorme 0 de_l'Orme 0 Philibert_de_l'Orme 0 001 @i 09805475 n 0000 | French royal architect who built the Tuileries Palace and Gardens in Paris for Catherine de Medicis (1515-1570) -10929657 18 n 03 Demetrius 0 Demetrius_I 0 Demetrius_Poliorcetes 0 002 @i 10123844 n 0000 @i 09721444 n 0000 | son of Antigonus Cyclops and king of Macedonia; he and his father were defeated at the battle of Ipsus (337-283 BC) -10929886 18 n 03 de_Mille 0 Agnes_de_Mille 0 Agnes_George_de_Mille 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer who introduced formal dance to a wide audience (1905-1993) -10930099 18 n 03 DeMille 0 Cecil_B._DeMille 0 Cecil_Blount_DeMille 0 001 @i 10088390 n 0000 | United States film maker remembered for his extravagant and spectacular epic productions (1881-1959) -10930296 18 n 01 Democritus 0 001 @i 10423589 n 0000 | Greek philosopher who developed an atomistic theory of matter (460-370 BC) -10930428 18 n 01 Demosthenes 0 004 @i 10380672 n 0000 @i 10650162 n 0000 @i 09711132 n 0000 + 03030515 a 0101 | Athenian statesman and orator (circa 385-322 BC) -10930591 18 n 04 Dempsey 0 Jack_Dempsey 0 William_Harrison_Dempsey 0 Manassa_Mauler 0 001 @i 10477077 n 0000 | United States prizefighter who was world heavyweight champion (1895-1983) -10930778 18 n 03 Deng_Xiaoping 0 Teng_Hsiao-ping 0 Teng_Hsiaoping 0 001 @i 10650162 n 0000 | Chinese communist statesman (1904-1997) -10930913 18 n 02 De_Niro 0 Robert_De_Niro 0 001 @i 09765278 n 0000 | United States film actor who frequently plays tough characters (born 1943) -10931059 18 n 02 Depardieu 0 Gerard_Depardieu 0 001 @i 09765278 n 0000 | French film actor (born in 1948) -10931167 18 n 02 De_Quincey 0 Thomas_De_Quincey 0 001 @i 10794014 n 0000 | English writer who described the psychological effects of addiction to opium (1785-1859) -10931333 18 n 02 Derain 0 Andre_Derain 0 001 @i 10391653 n 0000 | French painter and exponent of fauvism (1880-1954) -10931452 18 n 02 Derrida 0 Jacques_Derrida 0 002 @i 10423589 n 0000 @i 10266016 n 0000 | French philosopher and critic (born in Algeria); exponent of deconstructionism (1930-2004) -10931634 18 n 03 de_Saussure 0 Ferdinand_de_Saussure 0 Saussure 0 001 @i 10264437 n 0000 | Swiss linguist and expert in historical linguistics whose lectures laid the foundations for synchronic linguistics (1857-1913) -10931854 18 n 02 Descartes 0 Rene_Descartes 0 003 @i 10301261 n 0000 @i 10423589 n 0000 + 03026758 a 0101 | French philosopher and mathematician; developed dualistic theory of mind and matter; introduced the use of coordinates to locate a point in two or three dimensions (1596-1650) -10932140 18 n 02 De_Sica 0 Vittorio_De_Sica 0 001 @i 10088390 n 0000 | Italian film maker (1901-1974) -10932244 18 n 02 de_Valera 0 Eamon_de_Valera 0 001 @i 10650162 n 0000 | Irish statesman (born in the United States); as president of the Irish Free State he was responsible for the new constitution of 1937 that created the state of Eire (1882-1975) -10932495 18 n 04 deVries 0 De_Vries 0 Hugo_deVries 0 Hugo_De_Vries 0 001 @i 09868270 n 0000 | Dutch botanist who rediscovered Mendel's laws and developed the mutation theory of evolution (1848-1935) -10932696 18 n 02 Dewar 0 Sir_James_Dewar 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | Scottish chemist and physicist noted for his work in cryogenics and his invention of the Dewar flask (1842-1923) -10932898 18 n 02 Dewey 0 John_Dewey 0 003 @i 10423589 n 0000 @i 10045713 n 0000 + 03030635 a 0101 | United States pragmatic philosopher who advocated progressive education (1859-1952) -10933084 18 n 03 Dewey 1 George_Dewey 0 Admiral_Dewey 0 001 @i 10347593 n 0000 | a United States naval officer remembered for his victory at Manila Bay in the Spanish-American War -10933266 18 n 03 Dewey 2 Melvil_Dewey 0 Melville_Louis_Kossuth_Dewey 0 001 @i 10257948 n 0000 | United States librarian who founded the decimal system of classification (1851-1931) -10933449 18 n 03 Diaghilev 0 Sergei_Diaghilev 0 Sergei_Pavlovich_Diaghilev 0 001 @i 10593745 n 0000 | Russian ballet impresario who founded the Russian ballet and later introduced it to the West (1872-1929) -10933658 18 n 04 Diana 1 Princess_Diana 0 Princess_of_Wales 0 Lady_Diana_Frances_Spencer 0 001 @i 10083823 n 0000 | English aristocrat who was the first wife of Prince Charles; her death in an automobile accident in Paris produced intense national mourning (1961-1997) -10933929 18 n 02 Diane_de_Poitiers 0 Duchesse_de_Valentinois 0 001 @i 10083823 n 0000 | French noblewoman who was the mistress of Henry II; she had more influence over him than did his wife Catherine de Medicis (1499-1566) -10934154 18 n 04 Dias 0 Diaz 0 Bartholomeu_Dias 0 Bartholomeu_Diaz 0 001 @i 10347883 n 0000 | Portuguese explorer who in 1488 was the first European to get round the Cape of Good Hope (thus establishing a sea route from the Atlantic to Asia) (1450-1500) -10934410 18 n 03 Dickens 0 Charles_Dickens 0 Charles_John_Huffam_Dickens 0 002 @i 10794014 n 0000 + 02712499 a 0101 | English writer whose novels depicted and criticized social injustice (1812-1870) -10934611 18 n 02 Dickinson 0 Emily_Dickinson 0 001 @i 10444194 n 0000 | United States poet noted for her mystical and unrhymed poems (1830-1886) -10934758 18 n 02 Diderot 0 Denis_Diderot 0 001 @i 10423589 n 0000 | French philosopher who was a leading figure of the Enlightenment in France; principal editor of an encyclopedia that disseminated the scientific and philosophical knowledge of the time (1713-1784) -10935025 18 n 02 Didion 0 Joan_Didion 0 001 @i 10794014 n 0000 | United States writer (born in 1934) -10935128 18 n 03 Diesel 0 Rudolf_Diesel 0 Rudolf_Christian_Karl_Diesel 0 001 @i 09615807 n 0000 | German engineer (born in France) who invented the diesel engine (1858-1913) -10935304 18 n 03 Dietrich 0 Marlene_Dietrich 0 Maria_Magdalene_von_Losch 0 002 @i 09767700 n 0000 @i 10599806 n 0000 | United States film actress (born in Germany) who made many films with Josef von Sternberg and later was a successful cabaret star (1901-1992) -10935567 18 n 03 DiMaggio 0 Joe_DiMaggio 0 Joseph_Paul_DiMaggio 0 001 @i 09835506 n 0000 | United States professional baseball player noted for his batting ability (1914-1999) -10935745 18 n 05 Dinesen 0 Isak_Dinesen 0 Blixen 0 Karen_Blixen 0 Baroness_Karen_Blixen 0 001 @i 10794014 n 0000 | Danish writer who lived in Kenya for 19 years and is remembered for her writings about Africa (1885-1962) -10935968 18 n 02 Diocletian 0 Gaius_Aurelius_Valerius_Diocletian 0 001 @i 10537240 n 0000 | Roman Emperor who when faced with military problems decided in 286 to divide the Roman Empire between himself in the east and Maximian in the west; he initiated the last persecution of the Christians in 303 (245-313) -10936279 18 n 01 Diogenes 0 001 @i 10423589 n 0000 | an ancient Greek philosopher and Cynic who rejected social conventions (circa 400-325 BC) -10936424 18 n 02 Dionysius 0 Dionysius_the_Elder 0 001 @i 10735707 n 0000 | the tyrant of Syracuse who fought the Carthaginians (430-367 BC) -10936567 18 n 01 Diophantus 0 001 @i 10301261 n 0000 | Greek mathematician who was the first to try to develop an algebraic notation (3rd century) -10936716 18 n 02 Dior 0 Christian_Dior 0 001 @i 09972157 n 0000 | French couturier whose first collection in 1947 created a style that became known as the New Look (1905-1957) -10936894 18 n 02 Dirac 0 Paul_Adrien_Maurice_Dirac 0 001 @i 10364643 n 0000 | English theoretical physicist who applied relativity theory to quantum mechanics and predicted the existence of antimatter and the positron (1902-1984) -10937126 18 n 03 Disney 0 Walt_Disney 0 Walter_Elias_Disney 0 001 @i 10088390 n 0000 | United States film maker who pioneered animated cartoons and created such characters as Mickey Mouse and Donald Duck; founded Disneyland (1901-1966) -10937364 18 n 03 Disraeli 0 Benjamin_Disraeli 0 First_Earl_of_Beaconsfield 0 001 @i 10650162 n 0000 | British statesman who as Prime Minister bought controlling interest in the Suez Canal and made Queen Victoria the empress of India (1804-1881) -10937611 18 n 03 Dix 0 Dorothea_Dix 0 Dorothea_Lynde_Dix 0 001 @i 10515194 n 0000 | United States social reformer who pioneered in the reform of prisons and in the treatment of the mentally ill; superintended women army nurses during the American Civil War (1802-1887) -10937882 18 n 03 Doctorow 0 E._L._Doctorow 0 Edgard_Lawrence_Doctorow 0 001 @i 10794014 n 0000 | United States novelist (born in 1931) -10938019 18 n 02 Dolby 0 Ray_M._Dolby 0 001 @i 10049017 n 0000 | United States electrical engineer who devised the Dolby system used to reduce background noise in tape recording -10938199 18 n 02 Domingo 0 Placido_Domingo 0 001 @i 10701783 n 0000 | Spanish operatic tenor noted for performances in operas by Verdi and Puccini (born in 1941) -10938363 18 n 04 Dominic 0 Saint_Dominic 0 St._Dominic 0 Domingo_de_Guzman 0 003 @i 10470779 n 0000 @i 10547145 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) Spanish priest who founded an order whose members became known as Dominicans or Black Friars (circa 1170-1221) -10938640 18 n 03 Domino 0 Fats_Domino 0 Antoine_Domino 0 002 @i 10528816 n 0000 @i 10624540 n 0000 | United States rhythm and blues pianist and singer and composer (born in 1928) -10938821 18 n 02 Domitian 0 Titus_Flavius_Domitianus 0 001 @i 10537240 n 0000 | Emperor of Rome; son of Vespasian who succeeded his brother Titus; instigated a reign of terror and was assassinated as a tyrant (51-96) -10939040 18 n 02 Donatello 0 Donato_di_Betto_Bardi 0 001 @i 10566072 n 0000 | Florentine sculptor famous for his lifelike sculptures (1386-1466) -10939187 18 n 02 Donatus 0 Aelius_Donatus 0 001 @i 10141364 n 0000 | Roman grammarian whose textbook on Latin grammar was used throughout the Middle Ages (fourth century) -10939360 18 n 02 Donizetti 0 Gaetano_Donizetti 0 001 @i 09947232 n 0000 | Italian composer of operas (1797-1848) -10939475 18 n 01 Don_Juan 0 001 @i 10271677 n 0000 | a legendary Spanish nobleman and philanderer who became the hero of many poems and plays and operas -10939630 18 n 02 Donkin 0 Bryan_Donkin 0 001 @i 09615807 n 0000 | English engineer who developed a method of preserving food by sterilizing it with heat and sealing it inside a steel container--the first tin can (1768-1855) -10939856 18 n 02 Donne 0 John_Donne 0 004 @i 10444194 n 0000 @i 09927451 n 0000 + 03030753 a 0102 + 03030753 a 0101 | English clergyman and metaphysical poet celebrated as a preacher (1572-1631) -10940053 18 n 03 Doolittle 0 Jimmy_Doolittle 0 James_Harold_Doolittle 0 002 @i 09826204 n 0000 @i 10123844 n 0000 | United States Air Force officer who electrified the world in 1942 by leading a squadron of 16 bombers on a daylight raid over Tokyo (1896-1993) -10940315 18 n 02 Doppler 0 Christian_Johann_Doppler 0 001 @i 10428004 n 0000 | Austrian physicist famous for his discovery of the Doppler effect (1803-1853) -10940474 18 n 03 Dos_Passos 0 John_Dos_Passos 0 John_Roderigo_Dos_Passos 0 001 @i 10794014 n 0000 | United States novelist remembered for his portrayal of life in the United States (1896-1970) -10940669 18 n 0f Dostoyevsky 0 Dostoevski 0 Dostoevsky 0 Feodor_Dostoyevsky 0 Fyodor_Dostoyevsky 0 Feodor_Dostoevski 0 Fyodor_Dostoevski 0 Feodor_Dostoevsky 0 Fyodor_Dostoevsky 0 Feodor_Mikhailovich_Dostoyevsky 0 Fyodor_Mikhailovich_Dostoyevsky 0 Feodor_Mikhailovich_Dostoevski 0 Fyodor_Mikhailovich_Dostoevski 0 Feodor_Mikhailovich_Dostoevsky 0 Fyodor_Mikhailovich_Dostoevsky 0 003 @i 10794014 n 0000 + 03030919 a 0201 + 03030919 a 0102 | Russian novelist who wrote of human suffering with humor and psychological insight (1821-1881) -10941206 18 n 04 Douglas 0 Stephen_A._Douglas 0 Stephen_Arnold_Douglas 0 Little_Giant 0 001 @i 10450303 n 0000 | United States politician who proposed that individual territories be allowed to decide whether they would have slavery; he engaged in a famous series of debates with Abraham Lincoln (1813-1861) -10941515 18 n 02 Douglass 0 Frederick_Douglass 0 001 @i 09756637 n 0000 | United States abolitionist who escaped from slavery and became an influential writer and lecturer in the North (1817-1895) -10941714 18 n 04 Dowding 0 Hugh_Dowding 0 Baron_Hugh_Caswall_Tremenheere_Dowding 0 Dowdy 0 002 @i 10123844 n 0000 @i 10296176 n 0000 | British marshal of the RAF who commanded the British air defense forces that defeated the Luftwaffe during the Battle of Britain (1882-1970) -10941992 18 n 02 Dowland 0 John_Dowland 0 002 @i 10277638 n 0000 @i 09947232 n 0000 | English lutenist and composer of songs for the lute (1563-1626) -10942144 18 n 02 Down 0 John_L._H._Down 0 001 @i 10020890 n 0000 | English physician who first described Down's syndrome (1828-1896) -10942279 18 n 02 Downing 0 Andrew_Jackson_Downing 0 001 @i 10245863 n 0000 | United States landscape architect who designed the grounds of the White House and the Capitol Building (1815-1852) -10942473 18 n 02 D'Oyly_Carte 0 Richard_D'Oyly_Carte 0 001 @i 10593745 n 0000 | English impresario who brought Gilbert and Sullivan together and produced many of their operettas in London (1844-1901) -10942675 18 n 01 Draco 0 003 @i 10249270 n 0000 @i 09711132 n 0000 + 03031102 a 0101 | Athenian lawmaker whose code of laws prescribed death for almost every offense (circa 7th century BC) -10942866 18 n 03 Drake 0 Francis_Drake 0 Sir_Francis_Drake 0 002 @i 10347883 n 0000 @i 09771204 n 0000 | English explorer and admiral who was the first Englishman to circumnavigate the globe and who helped to defeat the Spanish Armada (1540-1596) -10943115 18 n 03 Dreiser 0 Theodore_Dreiser 0 Theodore_Herman_Albert_Dreiser 0 001 @i 10794014 n 0000 | United States novelist (1871-1945) -10943256 18 n 02 Drew 0 John_Drew 0 001 @i 09765278 n 0000 | United States actor (born in Ireland); father of Georgiana Emma Barrymore (1827-1862) -10943405 18 n 02 Dreyfus 0 Alfred_Dreyfus 0 001 @i 09809749 n 0000 | French army officer of Jewish descent whose false imprisonment for treason in 1894 raised issues of anti-Semitism that dominated French politics until his release in 1906 (1859-1935) -10943659 18 n 02 Dryden 0 John_Dryden 0 002 @i 10444194 n 0000 @i 10030277 n 0000 | the outstanding poet and dramatist of the Restoration (1631-1700) -10943811 18 n 03 Du_Barry 0 Comtesse_Du_Barry 0 Marie_Jeanne_Becu 0 001 @i 09971839 n 0000 | courtier and influential mistress of Louis XV who was guillotined during the French Revolution (1743-1793) -10944013 18 n 03 Du_Bois 0 W._E._B._Du_Bois 0 William_Edward_Burghardt_Du_Bois 0 001 @i 09924996 n 0000 | United States civil rights leader and political activist who campaigned for equality for Black Americans (1868-1963) -10944238 18 n 02 Duchamp 0 Marcel_Duchamp 0 001 @i 09812338 n 0000 | French artist who immigrated to the United States; a leader in the dada movement in New York City; was first to exhibit commonplace objects as art (1887-1968) -10944468 18 n 02 Dufy 0 Raoul_Dufy 0 001 @i 10391653 n 0000 | French painter noted for brightly colored scenes (1877-1953) -10944593 18 n 02 Dukas 0 Paul_Dukas 0 001 @i 09947232 n 0000 | French composer (1865-1935) -10944686 18 n 02 Dulles 0 John_Foster_Dulles 0 001 @i 10013927 n 0000 | United States diplomat who (as Secretary of State) pursued a policy of opposition to the USSR by providing aid to American allies (1888-1959) -10944902 18 n 02 Dumas 0 Alexandre_Dumas 0 001 @i 10794014 n 0000 | French writer remembered for his swashbuckling historical tales (1802-1870) -10945048 18 n 03 du_Maurier 0 George_du_Maurier 0 George_Louis_Palmella_Busson_du_Maurier 0 002 @i 10794014 n 0000 @i 09812068 n 0000 | English writer and illustrator; grandfather of Daphne du Maurier (1834-1896) -10945263 18 n 03 du_Maurier 1 Daphne_du_Maurier 0 Dame_Daphne_du_Maurier 0 001 @i 10794014 n 0000 | English writer of melodramatic novels (1907-1989) -10945415 18 n 02 Duncan 0 Isadora_Duncan 0 001 @i 09989502 n 0000 | United States dancer and pioneer of modern dance (1878-1927) -10945546 18 n 02 Duns_Scotus 0 John_Duns_Scotus 0 001 @i 10705615 n 0000 | Scottish theologian who was very influential in the Middle Ages (1265-1308) -10945699 18 n 03 Durant 0 Will_Durant 0 William_James_Durant 0 001 @i 10177150 n 0000 | United States historian (1885-1981) -10945825 18 n 02 Durante 0 Jimmy_Durante 0 001 @i 09940146 n 0000 | United States comedian remembered for his large nose and hoarse voice (1893-1980) -10945977 18 n 02 Durer 0 Albrecht_Durer 0 002 @i 10375794 n 0000 @i 10058155 n 0000 | a leading German painter and engraver of the Renaissance (1471-1528) -10946134 18 n 02 Durkheim 0 Emile_Durkheim 0 001 @i 10620758 n 0000 | French sociologist and first professor of sociology at the Sorbonne (1858-1917) -10946286 18 n 03 Durrell 0 Lawrence_Durrell 0 Lawrence_George_Durrell 0 001 @i 10794014 n 0000 | English writer of Irish descent who spent much of his life in Mediterranean regions (1912-1990) -10946481 18 n 02 Duse 0 Eleonora_Duse 0 001 @i 09767700 n 0000 | Italian actress best known for her performances in tragic roles (1858-1924) -10946624 18 n 03 Duvalier 0 Francois_Duvalier 0 Papa_Doc 0 001 @i 10011902 n 0000 | oppressive Haitian dictator (1907-1971) -10946750 18 n 03 Duvalier 1 Jean-Claude_Duvalier 0 Baby_Doc 0 001 @i 10011902 n 0000 | son and successor of Francois Duvalier as president of Haiti; he was overthrown by a mass uprising in 1986 (born in 1951) -10946961 18 n 02 Dvorak 0 Antonin_Dvorak 0 001 @i 09947232 n 0000 | Czech composer who combined folk elements with traditional forms (1841-1904) -10947108 18 n 02 Dylan 0 Bob_Dylan 0 002 @i 10624540 n 0000 @i 10599806 n 0000 | United States songwriter noted for his protest songs (born in 1941) -10947259 18 n 02 Eames 0 Charles_Eames 0 001 @i 10210648 n 0000 | United States designer noted for an innovative series of chairs (1907-1978) -10947403 18 n 02 Earhart 0 Amelia_Earhart 0 001 @i 09826204 n 0000 | first woman aviator to fly solo nonstop across the Atlantic (1928); while attempting to fly around the world she disappeared over the Pacific (1898-1937) -10947628 18 n 02 Eastman 0 George_Eastman 0 002 @i 10204177 n 0000 @i 10214637 n 0000 | United States inventor of a dry-plate process of developing photographic film and of flexible film (his firm introduced roll film) and of the box camera and of a process for color photography (1854-1932) -10947922 18 n 03 Eccles 0 John_Eccles 0 Sir_John_Carew_Eccles 0 001 @i 10429965 n 0000 | Australian physiologist noted for his research on the conduction of impulses by nerve cells (1903-1997) -10948117 18 n 04 Eck 0 Johann_Eck 0 Johann_Maier_Eck 0 Johann_Maier 0 001 @i 10705615 n 0000 | a German Roman Catholic theologian who was an indefatigable opponent of Martin Luther (1486-1543) -10948312 18 n 03 Eckhart 0 Johannes_Eckhart 0 Meister_Eckhart 0 002 @i 10705615 n 0000 @i 10343554 n 0000 | German Roman Catholic theologian and mystic (1260-1327) -10948478 18 n 02 Eddington 0 Sir_Arthur_Stanley_Eddington 0 001 @i 09818343 n 0000 | English astronomer remembered for his popular elucidation of relativity theory (1882-1944) -10948656 18 n 03 Eddy 0 Mary_Baker_Eddy 0 Mary_Morse_Baker_Eddy 0 001 @i 09628382 n 0000 | founder of Christian Science in 1866 (1821-1910) -10948798 18 n 03 Ederle 0 Gertrude_Ederle 0 Gertrude_Caroline_Ederle 0 001 @i 10683349 n 0000 | United States swimmer who in 1926 became the first woman to swim the English Channel (1906-2003) -10948993 18 n 01 Edgar 0 001 @i 10233445 n 0000 | the younger brother of Edwy who became king of Northumbria when it renounced Edwy; on Edwy's death he succeeded to the throne of England (944-975) -10949192 18 n 03 Edison 0 Thomas_Edison 0 Thomas_Alva_Edison 0 001 @i 10214637 n 0000 | United States inventor; inventions included the phonograph and incandescent electric light and the microphone and the Kinetoscope (1847-1931) -10949424 18 n 01 Edmund_I 0 001 @i 10231515 n 0000 | king of the English who succeeded Athelstan; he drove out the Danes and made peace with Scotland (921-946) -10949586 18 n 02 Edmund_II 0 Edmund_Ironside 0 001 @i 10231515 n 0000 | king of the English who led resistance to Canute but was defeated and forced to divide the kingdom with Canute (980-1016) -10949782 18 n 02 Edward 1 Black_Prince 0 001 @i 10473917 n 0000 | son of Edward III who defeated the French at Crecy and Poitiers in the Hundred Years' War (1330-1376) -10949952 18 n 03 Edward 2 Prince_Edward 0 Edward_Antony_Richard_Louis 0 001 @i 10472799 n 0000 | third son of Elizabeth II (born in 1964) -10950092 18 n 02 Edward 3 Edward_I 0 001 @i 10233445 n 0000 | King of England from 1272 to 1307; conquered Wales (1239-1307) -10950219 18 n 02 Edward 4 Edward_II 0 001 @i 10233445 n 0000 | King of England from 1307 to 1327 and son of Edward I; was defeated at Bannockburn by the Scots led by Robert the Bruce; was deposed and died in prison (1284-1327) -10950448 18 n 02 Edward 5 Edward_III 0 001 @i 10233445 n 0000 | son of Edward II and King of England from 1327-1377; his claim to the French throne provoked the Hundred Years' War; his reign was marked by an epidemic of the Black Plague and by the emergence of the House of Commons as the powerful arm of British Parliament (1312-1377) -10950786 18 n 02 Edward 6 Edward_IV 0 001 @i 10233445 n 0000 | King of England from 1461 to 1470 and from 1471 to 1483; was dethroned in 1470 but regained the throne in 1471 by his victory at the battle of Tewkesbury (1442-1483) -10951017 18 n 02 Edward 7 Edward_V 0 001 @i 10233445 n 0000 | King of England who was crowned at the age of 13 on the death of his father Edward IV but was immediately confined to the Tower of London where he and his younger brother were murdered (1470-1483) -10951278 18 n 02 Edward 8 Edward_VI 0 001 @i 10233445 n 0000 | King of England and Ireland from 1547 to 1553; son of Henry VIII and Jane Seymour; died of tuberculosis (1537-1553) -10951459 18 n 03 Edward 9 Edward_VII 0 Albert_Edward 0 003 @i 10233445 n 0000 #m 08157809 n 0000 + 03062990 a 0101 | King of England from 1901 to 1910; son of Victoria and Prince Albert; famous for his elegant sporting ways (1841-1910) -10951697 18 n 03 Edward a Edward_VIII 0 Duke_of_Windsor 0 002 @i 10233445 n 0000 #m 08159740 n 0000 | King of England and Ireland in 1936; his marriage to Wallis Warfield Simpson created a constitutional crisis leading to his abdication (1894-1972) -10951948 18 n 02 Edwards 0 Jonathan_Edwards 0 001 @i 10705615 n 0000 | American theologian whose sermons and writings stimulated a period of renewed interest in religion in America (1703-1758) -10952143 18 n 03 Edward_the_Confessor 0 Saint_Edward_the_Confessor 0 St._Edward_the_Confessor 0 002 @i 10233445 n 0000 @i 10547145 n 0000 | son of Ethelred the Unready; King of England from 1042 to 1066; he founded Westminster Abbey where he was eventually buried (1003-1066) -10952421 18 n 01 Edward_the_Elder 0 001 @i 10231515 n 0000 | king of Wessex whose military success against the Danes made it possible for his son Athelstan to become the first king of all England (870-924) -10952629 18 n 03 Edward_the_Martyr 0 Saint_Edward_the_Martyr 0 St._Edward_the_Martyr 0 002 @i 10233445 n 0000 @i 10547145 n 0000 | King of England who was a son of Edgar; he was challenged for the throne by supporters of his half-brother Ethelred II who eventually murdered him (963-978) -10952919 18 n 01 Edwin 0 001 @i 10231515 n 0000 | king of Northumbria who was converted to Christianity (585-633) -10953035 18 n 02 Edwy 0 Eadwig 0 001 @i 10233445 n 0000 | King of England who was renounced by Northumbria in favor of his brother Edgar (died in 959) -10953188 18 n 01 Egbert 0 001 @i 10231515 n 0000 | king of Wessex whose military victories made Wessex the most powerful kingdom in England (died in 839) -10953344 18 n 02 Eglevsky 0 Andre_Eglevsky 0 001 @i 09834699 n 0000 | United States ballet dancer (born in Russia) (1917-1977) -10953473 18 n 03 Ehrenberg 0 Ilya_Ehrenberg 0 Ilya_Grigorievich_Ehrenberg 0 001 @i 10794014 n 0000 | Russian novelist (1891-1967) -10953605 18 n 02 Ehrlich 0 Paul_Ehrlich 0 001 @i 09831411 n 0000 | German bacteriologist who found a `magic bullet' to cure syphilis and was a pioneer in the study of immunology (1854-1915) -10953797 18 n 03 Eichmann 0 Adolf_Eichmann 0 Karl_Adolf_Eichmann 0 001 @i 10350220 n 0000 | Austrian who became the Nazi official who administered the concentration camps where millions of Jews were murdered during World War II (1906-1962) -10954039 18 n 02 Eiffel 0 Alexandre_Gustave_Eiffel 0 001 @i 09615807 n 0000 | French engineer who constructed the Eiffel Tower (1832-1923) -10954180 18 n 02 Eigen 0 Manfred_Eigen 0 001 @i 09913824 n 0000 | German chemist who did research on high-speed chemical reactions (born in 1927) -10954328 18 n 02 Eijkman 0 Christiaan_Eijkman 0 001 @i 10020890 n 0000 | Dutch physician who discovered that beriberi is caused by a nutritional deficiency (1858-1930) -10954498 18 n 02 Einstein 0 Albert_Einstein 0 002 @i 10428004 n 0000 + 03031247 a 0101 | physicist born in Germany who formulated the special theory of relativity and the general theory of relativity; Einstein also proposed that light consists of discrete quantized bundles of energy (later called photons) (1879-1955) -10954819 18 n 02 Einthoven 0 Willem_Einthoven 0 001 @i 10429965 n 0000 | Dutch physiologist who devised the first electrocardiograph (1860-1927) -10954966 18 n 06 Eisenhower 0 Dwight_Eisenhower 0 Dwight_D._Eisenhower 0 Dwight_David_Eisenhower 0 Ike 0 President_Eisenhower 0 002 @i 10123844 n 0000 @i 10467395 n 0000 | United States general who supervised the invasion of Normandy and the defeat of Nazi Germany; 34th President of the United States (1890-1961) -10955282 18 n 02 Eisenstaedt 0 Alfred_Eisenstaedt 0 001 @i 10426749 n 0000 | United States photographer (born in Germany) whose unposed documentary photographs created photojournalism (born in 1898) -10955483 18 n 03 Eisenstein 0 Sergei_Eisenstein 0 Sergei_Mikhailovich_Eisenstein 0 001 @i 10088390 n 0000 | Russian film maker who pioneered the use of montage and is considered among the most influential film makers in the history of motion pictures (1898-1948) -10955748 18 n 02 Ekman 0 Vagn_Walfrid_Ekman 0 001 @i 10370122 n 0000 | Swedish oceanographer who recognized the role of the Coriolis effect on ocean currents (1874-1954) -10955920 18 n 01 Eleanor_of_Aquitaine 0 001 @i 10499857 n 0000 | queen of France as the wife of Louis VII; that marriage was annulled in 1152 and she then married Henry II and became Queen of England (1122-1204) -10956134 18 n 03 Elgar 0 Sir_Edward_Elgar 0 Sir_Edward_William_Elgar 0 001 @i 09947232 n 0000 | British composer of choral and orchestral works including two symphonies as well as songs and chamber music and music for brass band (1857-1934) -10956377 18 n 03 El_Greco 0 Greco 0 Domenikos_Theotocopoulos 0 001 @i 10375794 n 0000 | Spanish painter (born in Greece) remembered for his religious works characterized by elongated human forms and dramatic use of color (1541-1614) -10956612 18 n 01 Elijah 0 001 @i 10483890 n 0000 | a Hebrew prophet in the Old Testament who opposed the worship of idols; he was persecuted for rebuking Ahab and Jezebel (king and queen of Israel); he was taken up to heaven in a chariot of fire (circa 9th century BC) -10956883 18 n 03 Eliot 0 George_Eliot 0 Mary_Ann_Evans 0 001 @i 10794014 n 0000 | British writer of novels characterized by realistic analysis of provincial Victorian society (1819-1880) -10957072 18 n 03 Eliot 1 T._S._Eliot 0 Thomas_Stearns_Eliot 0 002 @i 10444194 n 0000 @i 10030277 n 0000 | British poet (born in the United States) who won the Nobel prize for literature; his plays are outstanding examples of modern verse drama (1888-1965) -10957330 18 n 02 Elizabeth 1 Elizabeth_I 0 003 @i 10499631 n 0000 #m 08159031 n 0000 + 03031400 a 0201 | Queen of England from 1558 to 1603; daughter of Henry VIII and Anne Boleyn; she succeeded Mary I (who was a Catholic) and restored Protestantism to England; during her reign Mary Queen of Scots was executed and the Spanish Armada was defeated; her reign was marked by prosperity and literary genius (1533-1603) -10957748 18 n 02 Elizabeth 2 Elizabeth_II 0 002 @i 10499631 n 0000 #m 08159740 n 0000 | daughter of George VI who became the Queen of England and Northern Ireland in 1952 on the death of her father (1926-); "Elizabeth II is the head of state in Great Britain" -10958010 18 n 03 Ellington 0 Duke_Ellington 0 Edward_Kennedy_Ellington 0 001 @i 10220486 n 0000 | United States jazz composer and piano player and bandleader (1899-1974) -10958182 18 n 03 Ellison 0 Ralph_Ellison 0 Ralph_Waldo_Ellison 0 001 @i 10794014 n 0000 | United States novelist who wrote about a young Black man and his struggles in American society (1914-1994) -10958381 18 n 02 Ellsworth 0 Oliver_Ellsworth 0 001 @i 09916788 n 0000 | United States jurist and the third chief justice of the United States Supreme Court (1745-1807) -10958552 18 n 02 Emerson 0 Ralph_Waldo_Emerson 0 001 @i 10794014 n 0000 | United States writer and leading exponent of transcendentalism (1803-1882) -10958703 18 n 01 Empedocles 0 001 @i 10423589 n 0000 | Greek philosopher who taught that all matter is composed of particles of fire and water and air and earth (fifth century BC) -10958885 18 n 04 Endecott 0 Endicott 0 John_Endecott 0 John_Endicott 0 001 @i 10583387 n 0000 | born in England; in 1629 he became the founder of the Massachusetts Bay Colony (1588-1665) -10959074 18 n 03 Enesco 0 Georges_Enesco 0 George_Enescu 0 002 @i 10754578 n 0000 @i 09947232 n 0000 | Romanian violinist and composer (1881-1955) -10959223 18 n 02 Engels 0 Friedrich_Engels 0 001 @i 10618848 n 0000 | socialist who wrote the Communist Manifesto with Karl Marx in 1848 (1820-1895) -10959374 18 n 01 Epictetus 0 001 @i 10423589 n 0000 | Greek philosopher who was a Stoic (circa 50-130) -10959479 18 n 01 Epicurus 0 001 @i 10423589 n 0000 | Greek philosopher who believed that the world is a random combination of atoms and that pleasure is the highest good (341-270 BC) -10959664 18 n 03 Epstein 0 Jacob_Epstein 0 Sir_Jacob_Epstein 0 001 @i 10566072 n 0000 | British sculptor (born in the United States) noted for busts and large controversial works (1880-1959) -10959857 18 n 04 Erasmus 0 Desiderius_Erasmus 0 Gerhard_Gerhards 0 Geert_Geerts 0 003 @i 10705615 n 0000 @i 10191192 n 0000 + 03031615 a 0101 | Dutch humanist and theologian who was the leading Renaissance scholar of northern Europe; although his criticisms of the Roman Catholic Church led to the Reformation, he opposed violence and condemned Martin Luther (1466-1536) -10960230 18 n 01 Eratosthenes 0 002 @i 09818343 n 0000 @i 10301261 n 0000 | Greek mathematician and astronomer who estimated the circumference of the earth and the distances to the Moon and sun (276-194 BC) -10960439 18 n 02 Erlenmeyer 0 Richard_August_Carl_Emil_Erlenmeyer 0 001 @i 09913824 n 0000 | German chemist (1825-1909) -10960561 18 n 02 Ernst 0 Max_Ernst 0 001 @i 10391653 n 0000 | painter (born in Germany, resident of France and the United States) who was a cofounder of dadaism; developed the technique of collage (1891-1976) -10960772 18 n 04 Erving 0 Julius_Erving 0 Julius_Winfield_Erving 0 Dr._J 0 001 @i 10105733 n 0000 | United States basketball forward (born in 1950) -10960922 18 n 02 Esaki 0 Leo_Esaki 0 002 @i 10428004 n 0000 ;r 08921850 n 0000 | physicist honored for advances in solid state electronics (born in Japan in 1925) -10961087 18 n 01 Esau 0 002 @i 10624074 n 0000 ;c 06449735 n 0000 | (Old Testament) the eldest son of Isaac who would have inherited the covenant that God made with Abraham and that Abraham passed on to Isaac; he traded his birthright to his twin brother Jacob for a mess of pottage -10961372 18 n 01 Esther 0 003 @i 09681973 n 0000 @i 10499857 n 0000 ;c 06449735 n 0000 | (Old Testament) a beautiful Jewess chosen by the king of Persia to be his queen; she stopped a plot to massacre all the Jews in Persia (an event celebrated by Jews as the feast of Purim) -10961650 18 n 01 Ethelbert 0 001 @i 10231515 n 0000 | Anglo-Saxon king of Kent who was converted to Christianity by Saint Augustine; codified English law (552-616) -10961816 18 n 02 Ethelred 1 Ethelred_I 0 001 @i 10231515 n 0000 | king of Wessex and Kent and elder brother of Alfred; Alfred joined Ethelred's battle against the invading Danes and succeeded him on his death (died in 871) -10962041 18 n 03 Ethelred 2 Ethelred_II 0 Ethelred_the_Unready 0 001 @i 10231515 n 0000 | king of the English who succeeded to the throne after his half-brother Edward the Martyr was murdered; he struggled unsuccessfully against the invading Danes (969-1016) -10962302 18 n 01 Euclid 0 003 @i 10128016 n 0000 + 03065227 a 0101 + 03065227 a 0102 | Greek geometer (3rd century BC) -10962423 18 n 02 Eugene 0 Prince_Eugene_of_Savoy 0 001 @i 10123844 n 0000 | Austrian general in the service of the Holy Roman Empire during the War of the Spanish Succession (1663-1736) -10962611 18 n 02 Euler 0 Leonhard_Euler 0 001 @i 10301261 n 0000 | Swiss mathematician (1707-1783) -10962712 18 n 01 Euripides 0 001 @i 10030277 n 0000 | one of the greatest tragic dramatists of ancient Greece (480-406 BC) -10962837 18 n 02 Eusebius 0 Eusebius_of_Caesarea 0 002 @i 09857200 n 0000 @i 10177150 n 0000 | Christian bishop of Caesarea in Palestine; a church historian and a leading early Christian exegete (circa 270-340) -10963050 18 n 02 Eustachio 0 Bartolommeo_Eustachio 0 001 @i 09792237 n 0000 | Italian anatomist who was one of the fathers of modern anatomy; noted for descriptions of the ear and the heart (1520-1574) -10963254 18 n 03 Evans 0 Arthur_Evans 0 Sir_Arthur_John_Evans 0 001 @i 09804806 n 0000 | British archaeologist who excavated the palace of Knossos in Crete to find what he called Minoan civilization (1851-1941) -10963467 18 n 02 Evans 1 Herbert_McLean_Evans 0 001 @i 09792237 n 0000 | United States anatomist who identified four pituitary hormones and discovered vitamin E (1882-1971) -10963642 18 n 03 Evers 0 Medgar_Evers 0 Medgar_Wiley_Evers 0 001 @i 09924996 n 0000 | United States civil rights worker in Mississippi; was killed by a sniper (1925-1963) -10963815 18 n 04 Evert 0 Chris_Evert 0 Chrissie_Evert 0 Christine_Marie_Evert 0 002 @i 10701180 n 0000 + 02089632 v 0101 | United States tennis player who won women's singles titles in the United States and at Wimbledon (born in 1954) -10964052 18 n 03 Eyck 0 van_Eyck 0 Jan_van_Eyck 0 001 @i 10375794 n 0000 | Flemish painter who was a founder of the Flemish school of painting and who pioneered modern techniques of oil painting (1390-1441) -10964261 18 n 04 Eysenck 0 Hans_Eysenck 0 H._J._Eysenck 0 Hans_Jurgen_Eysenck 0 001 @i 10488865 n 0000 | a British psychologist (born in Germany) noted for his theories of intelligence and personality and for his strong criticism of Freudian psychoanalysis -10964520 18 n 02 Ezekiel 0 Ezechiel 0 001 @i 10483890 n 0000 | a Hebrew prophet of the 6th century BC who was exiled to Babylon in 587 BC -10964660 18 n 01 Ezra 0 002 @i 10471250 n 0000 @i 09964805 n 0000 | a Jewish priest and scribe sent by the Persian king to restore Jewish law and worship in Jerusalem -10964829 18 n 02 Faberge 0 Peter_Carl_Faberge 0 001 @i 10136615 n 0000 | Russian goldsmith noted for creating a series of jeweled and enameled Easter eggs for European royalty (1846-1920) -10965019 18 n 02 Fahd 0 Fahd_ibn_Abdel_Aziz_al-Saud 0 001 @i 10231515 n 0000 | king of Saudi Arabia from 1982 to 2005 (1923-2005) -10965151 18 n 02 Fahrenheit 0 Gabriel_Daniel_Fahrenheit 0 001 @i 10428004 n 0000 | German physicist who invented the mercury thermometer and developed the scale of temperature that bears his name (1686-1736) -10965361 18 n 04 Fairbanks 0 Douglas_Fairbanks 0 Douglas_Elton_Fairbanks 0 Julius_Ullman 0 001 @i 09765278 n 0000 | United States film actor noted for his swashbuckling roles (1883-1939) -10965550 18 n 02 Fairbanks 1 Douglas_Fairbanks_Jr. 0 001 @i 09765278 n 0000 | United States film actor; son of Douglas Elton Fairbanks, (1909-2000) -10965700 18 n 02 Faisal 0 Faisal_ibn_Abdel_Aziz_al-Saud 0 001 @i 10231515 n 0000 | king of Saudi Arabia from 1964 to 1975 (1906-1975) -10965836 18 n 02 Falla 0 Manuel_de_Falla 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | Spanish composer and pianist (1876-1946) -10965966 18 n 04 Fallopius 0 Gabriele_Fallopius 0 Fallopio 0 Gabriello_Fallopio 0 001 @i 09792237 n 0000 | Italian anatomist who first described the Fallopian tubes (1523-1562) -10966145 18 n 02 Fallot 0 Etienne-Louis_Arthur_Fallot 0 001 @i 10020890 n 0000 | French physician who described cardiac anomalies including Fallot's tetralogy (1850-1911) -10966318 18 n 02 Faraday 0 Michael_Faraday 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | the English physicist and chemist who discovered electromagnetic induction (1791-1867) -10966496 18 n 03 Farmer 2 Fannie_Farmer 0 Fannie_Merritt_Farmer 0 001 @i 09963320 n 0000 | an expert on cooking whose cookbook has undergone many editions (1857-1915) -10966665 18 n 02 Farmer 1 James_Leonard_Farmer 0 001 @i 09924996 n 0000 | United States civil rights leader who in 1942 founded the Congress of Racial Equality (born in 1920) -10966842 18 n 02 Farouk_I 0 Faruk_I 0 001 @i 10231515 n 0000 | king of Egypt who in 1952 was ousted by a military coup d'etat (1920-1965) -10966982 18 n 02 Farragut 0 David_Glasgow_Farragut 0 001 @i 10347593 n 0000 | United States admiral who commanded Union ships during the American Civil War (1801-1870) -10967152 18 n 02 Farrell 0 Eileen_Farrell 0 001 @i 10625546 n 0000 | United States operatic soprano noted for the clarity and power of her voice (1920-2002) -10967311 18 n 02 Farrell 1 James_Thomas_Farrell 0 001 @i 10794014 n 0000 | United States writer remembered for his novels (1904-1979) -10967447 18 n 02 Fatima 0 Fatimah 0 001 @i 09682291 n 0000 | youngest daughter of the prophet Mohammed and wife of the fourth calif Ali; revered especially by Shiite Muslims (606-632) -10967633 18 n 05 Faulkner 0 William_Faulkner 0 William_Cuthbert_Faulkner 0 Falkner 0 William_Falkner 0 001 @i 10363573 n 0000 | United States novelist (originally Falkner) who wrote about people in the southern United States (1897-1962) -10967872 18 n 02 Fawkes 0 Guy_Fawkes 0 001 @i 09958892 n 0000 | English conspirator who was executed for his role in a plot to blow up James I and the Houses of Parliament (1570-1606) -10968058 18 n 02 Fechner 0 Gustav_Theodor_Fechner 0 001 @i 10428004 n 0000 | German physicist who founded psychophysics; derived Fechner's law on the basis of early work by E. H. Weber (1801-1887) -10968257 18 n 02 Feifer 0 Jules_Feifer 0 001 @i 09898346 n 0000 | United States cartoonist who created a sarcastic comic strip (born in 1929) -10968401 18 n 02 Fellini 0 Federico_Fellini 0 001 @i 10088390 n 0000 | Italian filmmaker (1920-1993) -10968504 18 n 02 Ferber 0 Edna_Ferber 0 001 @i 10794014 n 0000 | United States novelist; author of several popular novels (1887-1968) -10968640 18 n 02 Ferdinand_I 0 Ferdinand_the_Great 0 001 @i 10231515 n 0000 | king of Castile and Leon who achieved control of the Moorish kings of Saragossa and Seville and Toledo (1016-1065) -10968835 18 n 01 Ferdinand_I 1 001 @i 10181137 n 0000 | Holy Roman Emperor and king of Hungary and Bohemia (1503-1564) -10968956 18 n 01 Ferdinand_II 0 001 @i 10181137 n 0000 | Holy Roman Emperor and king of Bohemia and Hungary who waged war against Protestant forces (1578-1637) -10969118 18 n 01 Ferdinand_III 0 001 @i 10181137 n 0000 | Holy Roman Emperor and king of Hungary and Bohemia who signed the Peace of Westphalia ending the Thirty Years' War (1608-1657) -10969305 18 n 05 Ferdinand 0 King_Ferdinand 0 Ferdinand_of_Aragon 0 Ferdinand_V 0 Ferdinand_the_Catholic 0 001 @i 10231515 n 0000 | the king of Castile and Aragon who ruled jointly with his wife Isabella; his marriage to Isabella I in 1469 marked the beginning of the modern state of Spain and their capture of Granada from the Moors in 1492 united Spain as one country; they instituted the Spanish Inquisition in 1478 and supported the expedition of Christopher Columbus in 1492 (1452-1516) -10969799 18 n 02 Fermat 0 Pierre_de_Fermat 0 001 @i 10301261 n 0000 | French mathematician who founded number theory; contributed (with Pascal) to the theory of probability (1601-1665) -10969986 18 n 02 Fermi 0 Enrico_Fermi 0 001 @i 10364643 n 0000 | Italian nuclear physicist (in the United States after 1939) who worked on artificial radioactivity caused by neutron bombardment and who headed the group that in 1942 produced the first controlled nuclear reaction (1901-1954) -10970279 18 n 03 Feynman 0 Richard_Feynman 0 Richard_Phillips_Feynman 0 001 @i 10364643 n 0000 | United States physicist who contributed to the theory of the interaction of photons and electrons (1918-1988) -10970488 18 n 02 Fiedler 0 Arthur_Fiedler 0 001 @i 09952539 n 0000 | popular United States conductor (1894-1979) -10970603 18 n 02 Fielding 0 Henry_Fielding 0 001 @i 10794014 n 0000 | English novelist and dramatist (1707-1754) -10970718 18 n 03 Fields 0 W._C._Fields 0 William_Claude_Dukenfield 0 001 @i 09940146 n 0000 | United States comedian and film actor (1880-1946) -10970864 18 n 03 Fillmore 0 Millard_Fillmore 0 President_Fillmore 0 001 @i 10467395 n 0000 | elected vice president and became the 13th President of the United States when Zachary Taylor died in office (1800-1874) -10971080 18 n 02 Finnbogadottir 0 Vigdis_Finnbogadottir 0 001 @i 10467179 n 0000 | former president of Iceland; first woman to be democratically elected head of state (born in 1930) -10971264 18 n 03 Firth 0 J._R._Firth 0 John_Rupert_Firth 0 001 @i 10264437 n 0000 | English linguist who contributed to linguistic semantics and to prosodic phonology and who was noted for his insistence on studying both sound and meaning in context (1890-1960) -10971528 18 n 03 Fischer 0 Bobby_Fischer 0 Robert_James_Fischer 0 001 @i 09915651 n 0000 | United States chess master; world champion from 1972 to 1975 (born in 1943) -10971697 18 n 02 Fischer 1 Emil_Hermann_Fischer 0 001 @i 09913824 n 0000 | German chemist noted for work on synthetic sugars and the purines (1852-1919) -10971852 18 n 02 Fischer 2 Hans_Fischer 0 001 @i 09913824 n 0000 | German chemist noted for his synthesis of hemin (1881-1945) -10971981 18 n 02 Fitzgerald 0 Ella_Fitzgerald 0 001 @i 10599806 n 0000 | United States scat singer (1917-1996) -10972094 18 n 03 Fitzgerald 1 F._Scott_Fitzgerald 0 Francis_Scott_Key_Fitzgerald 0 001 @i 10794014 n 0000 | United States author whose novels characterized the Jazz Age in the United States (1896-1940) -10972298 18 n 02 Fitzgerald 2 Edward_Fitzgerald 0 002 @i 10444194 n 0000 @i 10212501 n 0000 | English poet remembered primarily for his free translation of the poetry of Omar Khayyam (1809-1883) -10972495 18 n 02 Flaminius 0 Gaius_Flaminius 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | Roman statesman and general who built the Flaminian Way; died when he was defeated by Hannibal (died 217 BC) -10972697 18 n 02 Flaubert 0 Gustave_Flaubert 0 001 @i 10794014 n 0000 | French writer of novels and short stories (1821-1880) -10972825 18 n 03 Fleming 1 Alexander_Fleming 0 Sir_Alexander_Fleming 0 001 @i 09831411 n 0000 | Scottish bacteriologist who discovered penicillin (1881-1955) -10972985 18 n 03 Fleming 2 Ian_Fleming 0 Ian_Lancaster_Fleming 0 001 @i 10794014 n 0000 | British writer famous for writing spy novels about secret agent James Bond (1908-1964) -10973164 18 n 02 Fletcher 0 John_Fletcher 0 001 @i 10030277 n 0000 | prolific English dramatist who collaborated with Francis Beaumont and many other dramatists (1579-1625) -10973339 18 n 03 Flinders 0 Matthew_Flinders 0 Sir_Matthew_Flinders 0 001 @i 10072708 n 0000 | British explorer who mapped the Australian coast (1774-1814) -10973497 18 n 03 Florey 0 Howard_Florey 0 Sir_Howard_Walter_Florey 0 001 @i 10011074 n 0000 | British pathologist who isolated and purified penicillin, which had been discovered in 1928 by Sir Alexander Fleming (1898-1968) -10973722 18 n 02 Florio 0 John_Florio 0 001 @i 10256080 n 0000 | English lexicographer remembered for his Italian and English dictionary (1553-1625) -10973873 18 n 02 Flory 0 Paul_John_Flory 0 001 @i 09913824 n 0000 | United States chemist who developed methods for studying long-chain molecules (1910-1985) -10974033 18 n 02 Fonda 0 Henry_Fonda 0 001 @i 09765278 n 0000 | United States film actor (1905-1982) -10974136 18 n 02 Fonda 1 Jane_Fonda 0 001 @i 09767700 n 0000 | United States film actress and daughter of Henry Fonda (born in 1937) -10974271 18 n 02 Fontanne 0 Lynn_Fontanne 0 001 @i 09767700 n 0000 | United States actress (born in England) who married Alfred Lunt and performed with him in many plays (1887-1983) -10974455 18 n 02 Fonteyn 0 Dame_Margot_Fonteyn 0 001 @i 09989502 n 0000 | English dancer who danced with Rudolf Nureyev (born in 1919) -10974592 18 n 02 Ford 0 Henry_Ford 0 001 @i 10204177 n 0000 | United States manufacturer of automobiles who pioneered mass production (1863-1947) -10974740 18 n 05 Ford 1 Gerald_Ford 0 Gerald_R._Ford 0 Gerald_Rudolph_Ford 0 President_Ford 0 001 @i 10467395 n 0000 | 38th President of the United States; appointed vice president and succeeded Nixon when Nixon resigned (1913-) -10974971 18 n 03 Ford 2 Ford_Madox_Ford 0 Ford_Hermann_Hueffer 0 001 @i 10794014 n 0000 | English writer and editor (1873-1939) -10975101 18 n 02 Ford 3 Edsel_Bryant_Ford 0 001 @i 10204177 n 0000 | son of Henry Ford (1893-1943) -10975202 18 n 02 Ford 4 Henry_Ford_II 0 001 @i 10204177 n 0000 | grandson of Henry Ford (1917-1987) -10975304 18 n 02 Ford 5 John_Ford 0 001 @i 10088390 n 0000 | United States film maker (1896-1973) -10975404 18 n 03 Forester 1 C._S._Forester 0 Cecil_Scott_Forester 0 001 @i 10794014 n 0000 | English writer of adventure novels featuring Captain Horatio Hornblower (1899-1966) -10975583 18 n 03 Fosbury 0 Dick_Fosbury 0 Richard_D._Fosbury 0 001 @i 09820263 n 0000 | United States athlete who revolutionized the high jump by introducing the Fosbury flop in the 1968 Olympics (born in 1947) -10975796 18 n 03 Foster 0 Stephen_Foster 0 Stephen_Collins_Foster 0 001 @i 10624540 n 0000 | United States songwriter whose songs embody the sentiment of the South before the American Civil War (1826-1864) -10976004 18 n 02 Foucault 0 Jean_Bernard_Leon_Foucault 0 001 @i 10428004 n 0000 | French physicist who determined the speed of light and showed that it travels slower in water than in air; invented the Foucault pendulum and the gyroscope (1819-1868) -10976256 18 n 03 Fourier 0 Charles_Fourier 0 Francois_Marie_Charles_Fourier 0 001 @i 10620758 n 0000 | French sociologist and reformer who hoped to achieve universal harmony by reorganizing society (1772-1837) -10976468 18 n 03 Fourier 1 Jean_Baptiste_Joseph_Fourier 0 Baron_Jean_Baptiste_Joseph_Fourier 0 002 @i 10301261 n 0000 @i 10428004 n 0000 | French mathematician who developed Fourier analysis and studied the conduction of heat (1768-1830) -10976708 18 n 02 Fowler 1 Henry_Watson_Fowler 0 001 @i 10256080 n 0000 | English lexicographer who wrote a well-known book on English usage (1858-1933) -10976862 18 n 02 Fox 2 George_Fox 0 001 @i 09628382 n 0000 | English religious leader who founded the Society of Friends (1624-1691) -10976997 18 n 02 Fox 3 Charles_James_Fox 0 001 @i 10650162 n 0000 | English statesman who supported American independence and the French Revolution (1749-1806) -10977159 18 n 02 Fragonard 0 Jean_Honore_Fragonard 0 001 @i 10391653 n 0000 | French artist whose rococo paintings typified the frivolity of life in the royal court of France in the 18th century (1732-1806) -10977368 18 n 03 France 0 Anatole_France 0 Jacques_Anatole_Francois_Thibault 0 001 @i 10794014 n 0000 | French writer of sophisticated novels and short stories (1844-1924) -10977542 18 n 02 Francis_II 0 Emperor_Francis_II 0 001 @i 10181137 n 0000 | the last Holy Roman Emperor (1768-1835) -10977660 18 n 02 Francis_Ferdinand 0 Franz_Ferdinand 0 001 @i 09804658 n 0000 | archduke of Austria and heir apparent to Francis Joseph I; his assassination at Sarajevo triggered the outbreak of World War I (1863-1914) -10977881 18 n 04 Francis_Joseph 0 Franz_Joseph 0 Francis_Joseph_I 0 Franz_Josef_I 0 001 @i 10053004 n 0000 | emperor of Austria and king of Hungary; was defeated by Napoleon III at the battle of Magenta (1830-1916) -10978098 18 n 06 Francis_of_Assisi 0 Saint_Francis_of_Assisi 0 St._Francis_of_Assisi 0 Saint_Francis 0 St._Francis 0 Giovanni_di_Bernardone 0 003 @i 10547145 n 0000 ;c 08083599 n 0000 + 03066658 a 0501 | (Roman Catholic Church) an Italian and the Roman Catholic monk who founded the Franciscan order of friars (1181-1226) -10978422 18 n 02 Franck 0 James_Franck 0 001 @i 10428004 n 0000 | United States physicist (born in Germany) who with Gustav Hertz performed an electron scattering experiment that proved the existence of the stationary energy states postulated by Niels Bohr (1882-1964) -10978693 18 n 02 Franck 1 Cesar_Franck 0 001 @i 09947232 n 0000 | French composer and teacher who influenced a generation of composers (1822-1890) -10978842 18 n 04 Franco 0 Francisco_Franco 0 El_Caudillo 0 General_Franco 0 002 @i 10123844 n 0000 @i 10011902 n 0000 | Spanish general whose armies took control of Spain in 1939 and who ruled as a dictator until his death (1892-1975) -10979079 18 n 02 Franklin 1 Benjamin_Franklin 0 004 @i 10475297 n 0000 @i 10794014 n 0000 @i 09740085 n 0000 @i 10560637 n 0000 | printer whose success as an author led him to take up politics; he helped draw up the Declaration of Independence and the Constitution; he played a major role in the American Revolution and negotiated French support for the colonists; as a scientist he is remembered particularly for his research in electricity (1706-1790) -10979535 18 n 02 Franklin 2 John_Hope_Franklin 0 001 @i 10177150 n 0000 | United States historian noted for studies of Black American history (born in 1915) -10979694 18 n 03 Frazer 0 James_George_Frazer 0 Sir_James_George_Frazer 0 001 @i 09796323 n 0000 | English social anthropologist noted for studies of primitive religion and magic (1854-1941) -10979887 18 n 03 Frederick_I 0 Frederick_Barbarossa 0 Barbarossa 0 001 @i 10181137 n 0000 | Holy Roman Emperor from 1152 to 1190; conceded supremacy to the pope; drowned leading the Third Crusade (1123-1190) -10980097 18 n 01 Frederick_I 1 002 @i 10231515 n 0000 #m 08155518 n 0000 | son of Frederick William who in 1701 became the first king of Prussia (1657-1713) -10980256 18 n 02 Frederick_II 0 Holy_Roman_Emperor_Frederick_II 0 001 @i 10181137 n 0000 | the Holy Roman Emperor who led the Sixth Crusade and crowned himself king of Jerusalem (1194-1250) -10980448 18 n 02 Frederick_II 1 Frederick_the_Great 0 001 @i 10231515 n 0000 | king of Prussia from 1740 to 1786; brought Prussia military prestige by winning the War of the Austrian Succession and the Seven Years' War (1712-1786) -10980681 18 n 02 Frederick_William 0 Great_Elector 0 002 @i 10473273 n 0000 #m 08155518 n 0000 | the Elector of Brandenburg who rebuilt his domain after its destruction during the Thirty Years' War (1620-1688) -10980893 18 n 01 Frederick_William_I 0 002 @i 10231515 n 0000 #m 08155518 n 0000 | son of Frederick I who became king of Prussia in 1713; reformed and strengthened the Prussian army (1688-1740) -10981089 18 n 01 Frederick_William_II 0 002 @i 10231515 n 0000 #m 08155518 n 0000 | king of Prussia who became involved in a costly war with France (1744-1797) -10981251 18 n 01 Frederick_William_III 0 002 @i 10231515 n 0000 #m 08155518 n 0000 | king of Prussia who became involved in the Napoleonic Wars (1770-1840) -10981409 18 n 01 Frederick_William_IV 0 002 @i 10231515 n 0000 #m 08155518 n 0000 | king of Prussia who violently suppressed democratic movements (1795-1865) -10981569 18 n 03 Fremont 0 John_C._Fremont 0 John_Charles_Fremont 0 001 @i 10072708 n 0000 | United States explorer who mapped much of the American west and Northwest (1813-1890) -10981750 18 n 02 French 1 Daniel_Chester_French 0 001 @i 10566072 n 0000 | United States sculptor who created the seated marble figure of Abraham Lincoln in the Lincoln Memorial in Washington D.C. (1850-1931) -10981961 18 n 02 Fresnel 0 Augustin_Jean_Fresnel 0 001 @i 10428004 n 0000 | French physicist who invented polarized light and invented the Fresnel lens (1788-1827) -10982127 18 n 02 Freud 0 Sigmund_Freud 0 003 @i 10354265 n 0000 @i 09790278 n 0000 + 03031733 a 0101 | Austrian neurologist who originated psychoanalysis (1856-1939) -10982295 18 n 02 Frick 0 Henry_Clay_Frick 0 001 @i 10204177 n 0000 | United States industrialist who amassed a fortune in the steel industry (1849-1919) -10982450 18 n 04 Friedan 0 Betty_Friedan 0 Betty_Naomi_Friedan 0 Betty_Naomi_Goldstein_Friedan 0 001 @i 10084635 n 0000 | United States feminist who founded a national organization for women (born in 1921) -10982658 18 n 02 Friedman 0 Milton_Friedman 0 001 @i 10043643 n 0000 | United States economist noted as a proponent of monetarism and for his opposition to government intervention in the economy (born in 1912) -10982870 18 n 02 Frisch 0 Karl_von_Frisch 0 001 @i 10806222 n 0000 | Austrian zoologist noted for his studies of honeybees (1886-1982) -10983007 18 n 03 Frisch 1 Ragnar_Frisch 0 Ragnar_Anton_Kittil_Frisch 0 001 @i 10043643 n 0000 | Norwegian economist noted for his work in econometrics (1895-1973) -10983172 18 n 03 Frisch 2 Otto_Frisch 0 Otto_Robert_Frisch 0 001 @i 10364643 n 0000 | British physicist (born in Austria) who with Lise Meitner recognized that Otto Hahn had produced a new kind of nuclear reaction which they named nuclear fission; Frisch described the explosive potential of a chain nuclear reaction (1904-1979) -10983503 18 n 02 Frobisher 0 Sir_Martin_Frobisher 0 002 @i 10072708 n 0000 @i 10347883 n 0000 | English explorer who led an expedition in search of the Northwest Passage to the orient; served under Drake and helped defeat the Spanish Armada (1535-1594) -10983758 18 n 03 Froebel 0 Friedrich_Froebel 0 Friedrich_Wilhelm_August_Froebel 0 001 @i 10045713 n 0000 | German educator who founded the kindergarten system (1782-1852) -10983931 18 n 03 Frost 0 Robert_Frost 0 Robert_Lee_Frost 0 002 @i 10444194 n 0000 + 03031886 a 0101 | United States poet famous for his lyrical poems on country life in New England (1874-1963) -10984126 18 n 02 Fry 1 Christopher_Fry 0 001 @i 10030277 n 0000 | English dramatist noted for his comic verse dramas (born 1907) -10984257 18 n 03 Fry 2 Roger_Fry 0 Roger_Eliot_Fry 0 003 @i 10391653 n 0000 @i 09810867 n 0000 #m 08240966 n 0000 | English painter and art critic (1866-1934) -10984418 18 n 03 Frye 0 Northrop_Frye 0 Herman_Northrop_Frye 0 001 @i 10266016 n 0000 | Canadian literary critic interested in the use of myth and symbolism (1912-1991) -10984589 18 n 03 Fuchs 0 Klaus_Fuchs 0 Emil_Klaus_Julius_Fuchs 0 001 @i 10428004 n 0000 | British physicist who was born in Germany and fled Nazi persecution; in the 1940s he passed secret information to the USSR about the development of the atom bomb in the United States (1911-1988) -10984876 18 n 02 Fuentes 0 Carlos_Fuentes 0 001 @i 10794014 n 0000 | Mexican novelist (born in 1928) -10984979 18 n 02 Fugard 0 Athol_Fugard 0 001 @i 10030277 n 0000 | South African playwright whose plays feature the racial tensions in South Africa during apartheid (born in 1932) -10985160 18 n 03 Fulbright 0 William_Fulbright 0 James_William_Fulbright 0 001 @i 10578471 n 0000 | United States senator who is remembered for his creation of grants that fund exchange programs of teachers and students between the United States and other countries (1905-1995) -10985440 18 n 04 Fuller 1 Buckminster_Fuller 0 R._Buckminster_Fuller 0 Richard_Buckminster_Fuller 0 002 @i 09805475 n 0000 @i 09615807 n 0000 | United States architect who invented the geodesic dome (1895-1983) -10985653 18 n 03 Fuller 2 Melville_W._Fuller 0 Melville_Weston_Fuller 0 001 @i 09916788 n 0000 | United States jurist and chief justice of the United States Supreme Court (1833-1910) -10985838 18 n 02 Fulton 0 Robert_Fulton 0 001 @i 10214637 n 0000 | American inventor who designed the first commercially successful steamboat and the first steam warship (1765-1815) -10986022 18 n 02 Funk 0 Casimir_Funk 0 001 @i 09854915 n 0000 | United States biochemist (born in Poland) who showed that several diseases were caused by dietary deficiencies and who coined the term `vitamin' for the chemicals involved (1884-1967) -10986272 18 n 02 Furnivall 0 Frederick_James_Furnivall 0 001 @i 10423225 n 0000 | English philologist who first proposed the Oxford English Dictionary (1825-1910) -10986437 18 n 03 Gable 0 Clark_Gable 0 William_Clark_Gable 0 001 @i 09765278 n 0000 | United States film actor (1901-1960) -10986562 18 n 02 Gabor 0 Dennis_Gabor 0 001 @i 10428004 n 0000 | British physicist (born in Hungary) noted for his work on holography (1900-1979) -10986710 18 n 02 Gaboriau 0 Emile_Gaboriau 0 001 @i 10794014 n 0000 | French writer considered by some to be a founder of the detective novel (1832-1873) -10986866 18 n 03 Gagarin 0 Yuri_Gagarin 0 Yuri_Alekseyevich_Gagarin 0 001 @i 09818022 n 0000 | Soviet cosmonaut who in 1961 was the first person to travel in space (1934-1968) -10987044 18 n 02 Gainsborough 0 Thomas_Gainsborough 0 001 @i 10391653 n 0000 | English portrait and landscape painter (1727-1788) -10987176 18 n 02 Galahad 0 Sir_Galahad 0 002 @i 09587565 n 0000 ;c 06371734 n 0000 | (Arthurian legend) the most virtuous knight of the Round Table; was able to see the Holy Grail -10987358 18 n 03 Galbraith 0 John_Galbraith 0 John_Kenneth_Galbraith 0 002 @i 10043643 n 0000 @i 10013927 n 0000 | United States economist (born in Canada) who served as ambassador to India (born in 1908) -10987565 18 n 01 Galen 0 001 @i 09792237 n 0000 | Greek anatomist whose theories formed the basis of European medicine until the Renaissance (circa 130-200) -10987724 18 n 02 Galileo 0 Galileo_Galilei 0 002 @i 09818343 n 0000 + 02732806 a 0101 | Italian astronomer and mathematician who was the first to use a telescope to study the stars; demonstrated that different weights descend at the same rate; perfected the refracting telescope that enabled him to make many discoveries (1564-1642) -10988059 18 n 02 Gallaudet 0 Thomas_Hopkins_Gallaudet 0 001 @i 10045713 n 0000 | United States educator who established the first free school in the United States for the hearing impaired (1787-1851) -10988261 18 n 02 Galois 0 Evariste_Galois 0 001 @i 10301261 n 0000 | French mathematician who described the conditions for solving polynomial equations; was killed in a duel at the age of 21 (1811-1832) -10988466 18 n 02 Galsworthy 0 John_Galsworthy 0 001 @i 10794014 n 0000 | English novelist (1867-1933) -10988570 18 n 03 Galton 0 Francis_Galton 0 Sir_Francis_Galton 0 001 @i 10560637 n 0000 | English scientist (cousin of Charles Darwin) who explored many fields including heredity, meteorology, statistics, psychology, and anthropology; founder of eugenics and first to use fingerprints for identification (1822-1911) -10988887 18 n 02 Galvani 0 Luigi_Galvani 0 001 @i 10429965 n 0000 | Italian physiologist noted for his discovery that frogs' muscles contracted in an electric field (which led to the galvanic cell) (1737-1798) -10989099 18 n 02 Gamow 0 George_Gamow 0 001 @i 10428004 n 0000 | United States physicist (born in Russia) who was a proponent of the big-bang theory and who did research in radioactivity and suggested the triplet code for DNA (1904-1968) -10989339 18 n 03 Gandhi 0 Mahatma_Gandhi 0 Mohandas_Karamchand_Gandhi 0 003 @i 10346198 n 0000 @i 09505153 n 0000 + 03032009 a 0101 | political and spiritual leader during India's struggle with Great Britain for home rule; an advocate of passive resistance (1869-1948) -10989610 18 n 04 Gandhi 1 Indira_Gandhi 0 Indira_Nehru_Gandhi 0 Mrs._Gandhi 0 001 @i 10650162 n 0000 | daughter of Nehru who served as prime minister of India from 1966 to 1977 (1917-1984) -10989801 18 n 03 Garbo 0 Greta_Garbo 0 Greta_Louisa_Gustafsson 0 001 @i 09767700 n 0000 | United States film actress (born in Sweden) known for her reclusiveness (1905-1990) -10989977 18 n 03 Garcia_Lorca 0 Frederico_Garcia_Lorca 0 Lorca 0 002 @i 10444194 n 0000 @i 10030277 n 0000 | Spanish poet and dramatist who was shot dead by Franco's soldiers soon after the start of the Spanish Civil War (1898-1936) -10990212 18 n 02 Gardiner 0 Samuel_Rawson_Gardiner 0 001 @i 10177150 n 0000 | British historian remembered for his ten-volume history of England (1829-1902) -10990371 18 n 02 Gardner 0 Erle_Stanley_Gardner 0 001 @i 10794014 n 0000 | writer of detective novels featuring Perry Mason (1889-1970) -10990509 18 n 02 Gardner 1 Isabella_Stewart_Gardner 0 001 @i 09936362 n 0000 | United States collector and patron of art who built a museum in Boston to house her collection and opened it to the public in 1903 (1840-1924) -10990733 18 n 05 Garfield 0 James_Garfield 0 James_A._Garfield 0 James_Abraham_Garfield 0 President_Garfield 0 001 @i 10467395 n 0000 | 20th President of the United States; assassinated by a frustrated office-seeker (1831-1881) -10990963 18 n 02 Garibaldi 0 Giuseppe_Garibaldi 0 002 @i 10123844 n 0000 @i 10407310 n 0000 | Italian patriot whose conquest of Sicily and Naples led to the formation of the Italian state (1807-1882) -10991165 18 n 02 Garland 0 Judy_Garland 0 002 @i 10599806 n 0000 @i 09767700 n 0000 | United States singer and film actress (1922-1969) -10991303 18 n 02 Garnier 0 Jean_Louis_Charles_Garnier 0 001 @i 09805475 n 0000 | French architect (1825-1898) -10991415 18 n 02 Garrick 0 David_Garrick 0 001 @i 09765278 n 0000 | English actor and theater manager who was the foremost Shakespearean actor of his day (1717-1779) -10991583 18 n 02 Garrison 0 William_Lloyd_Garrison 0 001 @i 09756637 n 0000 | United States abolitionist who published an anti-slavery journal (1805-1879) -10991740 18 n 03 Gaskell 0 Elizabeth_Gaskell 0 Elizabeth_Cleghorn_Stevenson_Gaskell 0 001 @i 10794014 n 0000 | English writer who is remembered for her biography of Charlotte Bronte (1810-1865) -10991936 18 n 03 Gates 0 Bill_Gates 0 William_Henry_Gates 0 002 @i 09951070 n 0000 @i 10060352 n 0000 | United States computer entrepreneur whose software company made him the youngest multi-billionaire in the history of the United States (born in 1955) -10992192 18 n 02 Gatling 0 Richard_Jordan_Gatling 0 001 @i 10214637 n 0000 | United States inventor of the first rapid firing gun (1818-1903) -10992336 18 n 04 Gaudi 0 Antonio_Gaudi 0 Gaudi_i_Cornet 0 Antonio_Gaudi_i_Cornet 0 001 @i 09805475 n 0000 | Spanish architect who was a leading exponent of art nouveau in Europe (1852-1926) -10992528 18 n 02 Gauguin 0 Paul_Gauguin 0 001 @i 10391653 n 0000 | French Post-impressionist painter who worked in the South Pacific (1848-1903) -10992675 18 n 03 Gauss 0 Karl_Gauss 0 Karl_Friedrich_Gauss 0 002 @i 10301261 n 0000 + 03028005 a 0101 | German mathematician who developed the theory of numbers and who applied mathematics to electricity and magnetism and astronomy and geodesy (1777-1855) -10992933 18 n 02 Gawain 0 Sir_Gawain 0 002 @i 09587565 n 0000 ;c 06371734 n 0000 | (Arthurian legend) a nephew of Arthur and one of the knights of the Round Table -10993098 18 n 02 Gay-Lussac 0 Joseph_Louis_Gay-Lussac 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | French chemist and physicist who first isolated boron and who formulated the law describing the behavior of gases under constant pressure (1778-1850) -10993350 18 n 03 Gehrig 0 Lou_Gehrig 0 Henry_Louis_Gehrig 0 001 @i 09835506 n 0000 | baseball player who died of amyotrophic lateral sclerosis (1903-1941) -10993507 18 n 02 Geiger 0 Hans_Geiger 0 001 @i 10428004 n 0000 | German physicist who developed the Geiger counter (1882-1945) -10993636 18 n 03 Geisel 0 Theodor_Seuss_Geisel 0 Dr._Seuss 0 001 @i 10794014 n 0000 | United States writer of children's books (1904-1991) -10993777 18 n 02 Gell-Mann 0 Murray_Gell-Mann 0 001 @i 10364643 n 0000 | United States physicist noted for his studies of subatomic particles (born in 1929) -10993936 18 n 02 Genet 0 Jean_Genet 0 002 @i 10363573 n 0000 @i 10030277 n 0000 | French writer of novels and dramas for the theater of the absurd (1910-1986) -10994097 18 n 03 Genet 1 Edmund_Charles_Edouard_Genet 0 Citizen_Genet 0 001 @i 10013927 n 0000 | French diplomat who in 1793 tried to draw the United States into the war between France and England (1763-1834) -10994308 18 n 04 Genghis_Khan 0 Jinghis_Khan 0 Jenghiz_Khan 0 Temujin 0 001 @i 10053004 n 0000 | Mongolian emperor whose empire stretched from the Black Sea to the Pacific Ocean (1162-1227) -10994500 18 n 02 Genseric 0 Gaiseric 0 001 @i 10231515 n 0000 | king of the Vandals who seized Roman lands and invaded North Africa and sacked Rome (428-477) -10994660 18 n 01 Geoffrey_of_Monmouth 0 001 @i 09921168 n 0000 | Welsh chronicler who wrote an account of the kings of Britain which is now believed to contain little historical fact but it is a source of the Arthurian legend (circa 1100-1154) -10994906 18 n 02 George 1 George_I 0 003 @i 10233445 n 0000 #m 08154960 n 0000 + 03067506 a 0101 | Elector of Hanover and the first Hanoverian King of Great Britain and Ireland from 1714 to 1727 (1660-1727) -10995115 18 n 02 George 2 George_II 0 003 @i 10233445 n 0000 #m 08154960 n 0000 + 03067506 a 0101 | King of Great Britain and Elector of Hanover from 1727 to 1760 (1683-1760) -10995292 18 n 02 George 3 George_III 0 003 @i 10233445 n 0000 #m 08154960 n 0000 + 03067506 a 0101 | King of Great Britain and Ireland from 1760 to 1820; the American colonies were lost during his reign; he became insane in 1811 and his son (later George IV) acted as regent until 1820 (1738-1820) -10995592 18 n 02 George 4 George_IV 0 003 @i 10233445 n 0000 #m 08154960 n 0000 + 03067506 a 0101 | King of Great Britain and Ireland and Hanover from 1820 to 1830; his attempt to divorce his estranged wife undermined the prestige of the Crown (1762-1830) -10995850 18 n 02 George 5 George_V 0 003 @i 10233445 n 0000 #m 08157809 n 0000 #m 08159740 n 0000 | King of Great Britain and Ireland and emperor of India from 1910 to 1936; gave up his German title in 1917 during World War I (1865-1936) -10996090 18 n 02 George 6 George_VI 0 002 @i 10233445 n 0000 #m 08159740 n 0000 | King of Great Britain and Ireland and emperor of India from 1936 to 1947; he succeeded Edward VIII (1895-1952) -10996285 18 n 03 George 0 Saint_George 0 St._George 0 002 @i 10296832 n 0000 @i 10408552 n 0000 | Christian martyr; patron saint of England; hero of the legend of Saint George and the Dragon in which he slew a dragon and saved a princess (?-303) -10996533 18 n 02 Geraint 0 Sir_Geraint 0 002 @i 10238375 n 0000 ;c 06371734 n 0000 | (Arthurian legend) one of the knights of the Round Table -10996677 18 n 01 Geronimo 0 002 @i 10203298 n 0000 @i 09649926 n 0000 | Apache chieftain who raided the white settlers in the Southwest as resistance to being confined to a reservation (1829-1909) -10996876 18 n 02 Gershwin 0 George_Gershwin 0 001 @i 09947232 n 0000 | United States composer who incorporated jazz into classical forms and composed scores for musical comedies (1898-1937) -10997068 18 n 02 Gershwin 1 Ira_Gershwin 0 001 @i 10277912 n 0000 | United States lyricist who frequently collaborated with his brother George Gershwin (1896-1983) -10997234 18 n 03 Gesell 0 Arnold_Gesell 0 Arnold_Lucius_Gesell 0 001 @i 10488865 n 0000 | United States psychologist noted for his work in child development (1880-1961) -10997405 18 n 02 Gesner 0 Konrad_von_Gesner 0 001 @i 10346514 n 0000 | Swiss naturalist who was one of the founders of modern zoology (1516-1565) -10997553 18 n 02 Giacometti 0 Alberto_Giacometti 0 002 @i 10566072 n 0000 @i 10391653 n 0000 | Swiss sculptor and painter known for his bronze sculptures of elongated figures (1901-1966) -10997742 18 n 02 Gibbon 0 Edward_Gibbon 0 001 @i 10177150 n 0000 | English historian best known for his history of the Roman Empire (1737-1794) -10997888 18 n 02 Gibbs 0 Josiah_Willard_Gibbs 0 001 @i 09913824 n 0000 | United States chemist (1839-1903) -10997997 18 n 02 Gibran 0 Kahlil_Gibran 0 001 @i 10794014 n 0000 | United States writer (born in Lebanon) (1883-1931) -10998117 18 n 02 Gibson 0 Althea_Gibson 0 001 @i 10701180 n 0000 | United States tennis player who was the first Black woman player to win all the major world singles titles (1927-2003) -10998305 18 n 03 Gibson 1 Mel_Gibson 0 Mel_Columcille_Gerard_Gibson 0 002 @i 09765278 n 0000 ;r 09044862 n 0000 | Australian actor (born in the United States in 1956) -10998474 18 n 03 Gibson 2 C._D._Gibson 0 Charles_Dana_Gibson 0 001 @i 09812068 n 0000 | United States illustrator remembered for his creation of the `Gibson girl' (1867-1944) -10998651 18 n 03 Gide 0 Andre_Gide 0 Andre_Paul_Guillaume_Gide 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | French author and dramatist who is regarded as the father of modern French literature (1869-1951) -10998860 18 n 03 Gielgud 0 Sir_John_Gielgud 0 Arthur_John_Gielgud 0 001 @i 09765278 n 0000 | English actor of Shakespearean roles who was also noted for appearances in films (1904-2000) -10999048 18 n 02 Gilbert 0 Cass_Gilbert 0 001 @i 09805475 n 0000 | United States architect who influenced the development of the skyscraper (1859-1934) -10999202 18 n 03 Gilbert 1 Humphrey_Gilbert 0 Sir_Humphrey_Gilbert 0 001 @i 10347883 n 0000 | English navigator who in 1583 established in Newfoundland the first English colony in North America (1539-1583) -10999410 18 n 02 Gilbert 2 William_Gilbert 0 002 @i 10020890 n 0000 @i 10428004 n 0000 | English court physician noted for his studies of terrestrial magnetism (1540-1603) -10999584 18 n 05 Gilbert 3 William_Gilbert 1 William_S._Gilbert 0 William_Schwenk_Gilbert 0 Sir_William_Gilbert 0 003 @i 10258152 n 0000 @i 10444194 n 0000 + 03068909 a 0101 | a librettist who was a collaborator with Sir Arthur Sullivan in a famous series of comic operettas (1836-1911) -10999873 18 n 01 Gilgamesh 0 001 @i 10231515 n 0000 | a legendary Sumerian king who was the hero of an epic collection of mythic stories -11000012 18 n 03 Gillespie 0 Dizzy_Gillespie 0 John_Birks_Gillespie 0 001 @i 10732010 n 0000 | United States jazz trumpeter and exponent of bebop (1917-1993) -11000172 18 n 02 Gillette 0 King_Camp_Gilette 0 002 @i 10214637 n 0000 @i 10204177 n 0000 | United States inventor and manufacturer who developed the safety razor (1855-1932) -11000349 18 n 02 Gilman 0 Charlotte_Anna_Perkins_Gilman 0 001 @i 10084635 n 0000 | United States feminist (1860-1935) -11000469 18 n 03 Gilmer 0 Elizabeth_Merriwether_Gilmer 0 Dorothy_Dix 0 001 @i 10224578 n 0000 | United States journalist who wrote a syndicated column of advice to the lovelorn (1870-1951) -11000660 18 n 02 Ginsberg 0 Allen_Ginsberg 0 001 @i 10444194 n 0000 | United States poet of the beat generation (1926-1997) -11000786 18 n 02 Giotto 0 Giotto_di_Bondone 0 002 @i 10375794 n 0000 @i 09805475 n 0000 | Florentine painter who gave up the stiff Byzantine style and developed a more naturalistic style; considered the greatest Italian painter prior to the Renaissance (1267-1337) -11001053 18 n 02 Girard 0 Stephen_Girard 0 001 @i 10090020 n 0000 | United States financier (born in France) who helped finance the War of 1812 (1750-1831) -11001211 18 n 03 Giraudoux 0 Jean_Giraudoux 0 Hippolyte_Jean_Giraudoux 0 002 @i 10363573 n 0000 @i 10030277 n 0000 | French novelist and dramatist whose plays were reinterpretations of Greek myths (1882-1944) -11001422 18 n 02 Gish 0 Lillian_Gish 0 001 @i 09767700 n 0000 | United States film actress who appeared in films by D. W. Griffith (1896-1993) -11001567 18 n 02 Gjellerup 0 Karl_Gjellerup 0 001 @i 10794014 n 0000 | Danish novelist (1857-1919) -11001668 18 n 03 Gladstone 0 William_Gladstone 0 William_Ewart_Gladstone 0 001 @i 10650162 n 0000 | liberal British statesman who served as prime minister four times (1809-1898) -11001848 18 n 03 Glaser 0 Donald_Glaser 0 Donald_Arthur_Glaser 0 001 @i 10364643 n 0000 | United States physicist who invented the bubble chamber to study subatomic particles (born in 1926) -11002040 18 n 02 Glendower 0 Owen_Glendower 0 001 @i 10164025 n 0000 | Welsh chieftain who led a revolt against Henry IV's rule in Wales (1359-1416) -11002191 18 n 03 Glenn 0 John_Glenn 0 John_Herschel_Glenn_Jr. 0 002 @i 09818022 n 0000 @i 10578471 n 0000 | made the first orbital rocket-powered flight by a United States astronaut in 1962; later in United States Senate (1921-) -11002422 18 n 03 Glinka 0 Mikhail_Glinka 0 Mikhail_Ivanovich_Glinka 0 001 @i 09947232 n 0000 | Russian composer (1804-1857) -11002548 18 n 02 Gluck 0 Christoph_Willibald_von_Gluck 0 001 @i 09947232 n 0000 | German composer of more than 100 operas (1714-1787) -11002684 18 n 02 Godard 0 Jean_Luc_Godard 0 001 @i 10088390 n 0000 | French film maker influenced by surrealism; early work explored the documentary use of film; noted for innovative techniques (born in 1930) -11002895 18 n 02 Goddard 0 Robert_Hutchings_Goddard 0 001 @i 10428004 n 0000 | United States physicist who developed the first successful liquid-fueled rocket (1882-1945) -11003068 18 n 02 Godel 0 Kurt_Godel 0 001 @i 10301261 n 0000 | United States mathematician (born in Austria) who is remembered principally for demonstrating the limitations of axiomatic systems (1906-1978) -11003276 18 n 02 Godiva 0 Lady_Godiva 0 001 @i 10242791 n 0000 | according to legend she rode naked through Coventry in order to persuade her husband not to tax the townspeople so heavily; the only person to look at her as she rode by was a man named Tom and Peeping Tom has become a synonym for voyeur (circa 1040-1080) -11003599 18 n 03 Godunov 0 Boris_Godunov 0 Boris_Fyodorovich_Godunov 0 001 @i 09987239 n 0000 | czar of Russia (1551-1605) -11003724 18 n 03 Goebbels 0 Joseph_Goebbels 0 Paul_Joseph_Goebbels 0 002 @i 10350220 n 0000 @i 10482921 n 0000 | German propaganda minister in Nazi Germany who persecuted the Jews (1897-1945) -11003918 18 n 02 Goethals 0 George_Washington_Goethals 0 001 @i 09615807 n 0000 | United States army officer and engineer who supervised the construction of the Panama Canal (1858-1928) -11004106 18 n 02 Goethe 0 Johann_Wolfgang_von_Goethe 0 005 @i 10444194 n 0000 @i 10363573 n 0000 @i 10030277 n 0000 + 03032219 a 0102 + 03032219 a 0101 | German poet and novelist and dramatist who lived in Weimar (1749-1832) -11004333 18 n 02 Gogol 0 Nikolai_Vasilievich_Gogol 0 001 @i 10794014 n 0000 | Russian writer who introduced realism to Russian literature (1809-1852) -11004485 18 n 03 Goldberg 0 Rube_Goldberg 0 Reuben_Lucius_Goldberg 0 001 @i 09898346 n 0000 | United States cartoonist who drew intricate diagrams of very complicated and impractical contraptions that accomplished little or nothing (1883-1970) -11004731 18 n 03 Golding 0 William_Golding 0 Sir_William_Gerald_Golding 0 001 @i 10794014 n 0000 | English novelist (1911-1993) -11004861 18 n 02 Goldman 0 Emma_Goldman 0 001 @i 09791816 n 0000 | United States anarchist (born in Russia) who opposed conscription; was deported to the Soviet Union in 1919 (1869-1940) -11005050 18 n 03 Goldmark 0 Peter_Goldmark 0 Peter_Carl_Goldmark 0 001 @i 10214637 n 0000 | United States inventor (born in Hungary) who made the first TV broadcast in 1940 and invented the long-playing record in 1948 and pioneered videocassette recording (1906-1977) -11005320 18 n 02 Goldoni 0 Carlo_Goldoni 0 001 @i 10030277 n 0000 | prolific Italian dramatist (1707-1793) -11005429 18 n 02 Goldsmith 1 Oliver_Goldsmith 0 001 @i 10794014 n 0000 | Irish writer of novels and poetry and plays and essays (1728-1774) -11005571 18 n 03 Goldwyn 0 Sam_Goldwyn 0 Samuel_Goldwyn 0 001 @i 10088390 n 0000 | United States film maker (born in Poland) who founded his own film company and later merged with Louis B. Mayer (1882-1974) -11005780 18 n 02 Golgi 0 Camillo_Golgi 0 001 @i 10170359 n 0000 | Italian histologist noted for work on the structure of the nervous system and for his discovery of Golgi bodies (1844-1926) -11005972 18 n 01 Goliath 0 002 @i 10768585 n 0000 ;c 06449735 n 0000 | (Old Testament) a giant Philistine warrior who was slain by David with a slingshot -11006128 18 n 02 Gombrowicz 0 Witold_Gombrowicz 0 001 @i 10794014 n 0000 | Polish author (1904-1969) -11006231 18 n 02 Gompers 0 Samuel_Gompers 0 001 @i 10242032 n 0000 | United States labor leader (born in England) who was president of the American Federation of Labor from 1886 to 1924 (1850-1924) -11006431 18 n 03 Goncourt 0 Edmond_de_Goncourt 0 Edmond_Louis_Antoine_Huot_de_Goncourt 0 001 @i 10794014 n 0000 | French writer who collaborated with his brother Jules de Goncourt on many books and who in his will established the Prix Goncourt (1822-1896) -11006689 18 n 03 Goncourt 1 Jules_de_Goncourt 0 Jules_Alfred_Huot_de_Goncourt 0 001 @i 10794014 n 0000 | French writer who collaborated with his brother Edmond de Goncourt on many books (1830-1870) -11006889 18 n 02 Gongora 0 Luis_de_Gongora_y_Argote 0 001 @i 10444194 n 0000 | a Spanish poet whose work was characterized by an affected elegance of style (1561-1627) -11007059 18 n 02 Gonne 0 Maud_Gonne 0 001 @i 10407310 n 0000 | Irish patriot and a founder of the Sinn Fein (1865-1953) -11007181 18 n 02 Goodall 0 Jane_Goodall 0 001 @i 10806222 n 0000 | English zoologist noted for her studies of chimpanzees in the wild (born in 1934) -11007332 18 n 04 Goodman 0 Benny_Goodman 0 Benjamin_David_Goodman 0 King_of_Swing 0 002 @i 09926246 n 0000 @i 09837201 n 0000 | United States clarinetist who in 1934 formed a big band (including black as well as white musicians) and introduced a kind of jazz known as swing (1909-1986) -11007620 18 n 02 Goodyear 0 Charles_Goodyear 0 001 @i 10214637 n 0000 | United States inventor of vulcanized rubber (1800-1860) -11007750 18 n 03 Gorbachev 0 Mikhail_Gorbachev 0 Mikhail_Sergeyevich_Gorbachev 0 001 @i 10650162 n 0000 | Soviet statesman whose foreign policy brought an end to the Cold War and whose domestic policy introduced major reforms (born in 1931) -11007993 18 n 02 Gordimer 0 Nadine_Gordimer 0 001 @i 10794014 n 0000 | South African novelist and short-story writer whose work describes the effects of apartheid (born in 1923) -11008173 18 n 01 Gordius 0 001 @i 10231515 n 0000 | legendary king of ancient Phrygia who was said to be responsible for the Gordian knot -11008313 18 n 03 Gore 0 Al_Gore 0 Albert_Gore_Jr. 0 001 @i 10751527 n 0000 | Vice President of the United States under Bill Clinton (born in 1948) -11008462 18 n 02 Gorgas 0 William_Crawford_Gorgas 0 001 @i 10679174 n 0000 | United States Army surgeon who suppressed yellow fever in Havana and in the Panama Canal Zone (1854-1920) -11008647 18 n 05 Goring 0 Goering 0 Hermann_Goring 0 Hermann_Goering 0 Hermann_Wilhelm_Goring 0 001 @i 10350220 n 0000 | German politician in Nazi Germany who founded the Gestapo and mobilized Germany for war (1893-1946) -11008870 18 n 06 Gorky 0 Maksim_Gorky 0 Gorki 0 Maxim_Gorki 0 Aleksey_Maksimovich_Peshkov 0 Aleksey_Maximovich_Peshkov 0 001 @i 10794014 n 0000 | Russian writer of plays and novels and short stories; noted for his depiction of social outcasts -11009115 18 n 03 Goudy 0 Frederic_Goudy 0 Frederic_William_Goudy 0 001 @i 10475297 n 0000 | United States printer noted for designing typefaces (1865-1947) -11009273 18 n 02 Gould 0 Jay_Gould 0 001 @i 10090020 n 0000 | United States financier who gained control of the Erie Canal and who caused a financial panic in 1869 when he attempted to corner the gold market (1836-1892) -11009495 18 n 02 Gould 1 Stephen_Jay_Gould 0 001 @i 10394786 n 0000 | United States paleontologist and popularizer of science (1941-2002) -11009635 18 n 02 Gounod 0 Charles_Francois_Gounod 0 001 @i 09947232 n 0000 | French composer best remembered for his operas (1818-1893) -11009773 18 n 06 Goya 0 Goya_y_Lucientes 0 Francisco_Goya 0 Francisco_de_Goya 0 Francisco_Jose_de_Goya 0 Francisco_Jose_de_Goya_y_Lucientes 0 001 @i 10391653 n 0000 | Spanish painter well known for his portraits and for his satires (1746-1828) -11010019 18 n 03 Graf 0 Steffi_Graf 0 Stephanie_Graf 0 001 @i 10701180 n 0000 | German tennis player who won seven women's singles titles at Wimbledon (born in 1969) -11010187 18 n 02 Graham 0 Martha_Graham 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer whose work was noted for its austerity and technical rigor (1893-1991) -11010385 18 n 03 Graham 1 Billy_Graham 0 William_Franklin_Graham 0 001 @i 10067011 n 0000 | United States evangelical preacher famous as a mass evangelist (born in 1918) -11010557 18 n 02 Grahame 0 Kenneth_Grahame 0 001 @i 10794014 n 0000 | English writer (born in Scotland) of children's stories (1859-1932) -11010697 18 n 04 Grainger 0 Percy_Grainger 0 Percy_Aldridge_Grainger 0 George_Percy_Aldridge_Grainger 0 001 @i 09947232 n 0000 | United States composer (born in Australia) who lived in London and collected English folk songs (1882-1961) -11010936 18 n 02 Gram 0 Hans_C._J._Gram 0 001 @i 09831411 n 0000 | Danish physician and bacteriologist who developed a method of staining bacteria to distinguish among them (1853-1938) -11011123 18 n 06 Grant 0 Ulysses_Grant 0 Ulysses_S._Grant 0 Ulysses_Simpson_Grant 0 Hiram_Ulysses_Grant 0 President_Grant 0 002 @i 10123844 n 0000 @i 10467395 n 0000 | 18th President of the United States; commander of the Union armies in the American Civil War (1822-1885) -11011398 18 n 02 Grant 1 Cary_Grant 0 001 @i 09765278 n 0000 | United States actor (born in England) who was the elegant leading man in many films (1904-1986) -11011559 18 n 03 Grant 2 Duncan_Grant 0 Duncan_James_Corrow_Grant 0 002 @i 10391653 n 0000 #m 08240966 n 0000 | Scottish painter; cousin of Lytton Strachey and member of the Bloomsbury Group (1885-1978) -11011764 18 n 02 Granville-Barker 0 Harley_Granville-Barker 0 005 @i 09765278 n 0000 @i 10030277 n 0000 @i 09979589 n 0000 @i 10015215 n 0000 @i 10705448 n 0000 | English actor and dramatist and critic and director noted for his productions of Shakespearean plays (1877-1946) -11012042 18 n 02 Grappelli 0 Stephane_Grappelli 0 001 @i 10754578 n 0000 | French jazz violinist (1908-1997) -11012153 18 n 03 Grass 0 Gunter_Grass 0 Gunter_Wilhelm_Grass 0 001 @i 10794014 n 0000 | German writer of novels and poetry and plays (born 1927) -11012300 18 n 03 Graves 0 Robert_Graves 0 Robert_Ranke_Graves 0 001 @i 10794014 n 0000 | English writer known for his interest in mythology and in the classics (1895-1985) -11012474 18 n 02 Gray 0 Asa_Gray 0 001 @i 09868270 n 0000 | United States botanist who specialized in North American flora and who was an early supporter of Darwin's theories of evolution (1810-1888) -11012676 18 n 02 Gray 1 Robert_Gray 0 001 @i 10347883 n 0000 | American navigator who twice circumnavigated the globe and who discovered the Columbia River (1755-1806) -11012846 18 n 02 Gray 2 Thomas_Gray 0 001 @i 10444194 n 0000 | English poet best known for his elegy written in a country churchyard (1716-1771) -11012993 18 n 02 Gray 3 Louis_Harold_Gray 0 001 @ 10503818 n 0000 | English radiobiologist in whose honor the gray (the SI unit of energy for the absorbed dose of radiation) was named (1905-1965) -11013191 18 n 02 Greeley 0 Horace_Greeley 0 001 @i 10224578 n 0000 | United States journalist with political ambitions (1811-1872) -11013324 18 n 02 Green 1 William_Green 0 001 @i 10242032 n 0000 | United States labor leader who was president of the American Federation of Labor from 1924 to 1952 and who led the struggle with the Congress of Industrial Organizations (1873-1952) -11013574 18 n 02 Greenberg 0 Joseph_Greenberg 0 001 @i 10264219 n 0000 | United States linguist who studied the historical relations among 5,000 languages (1916-2001) -11013743 18 n 03 Greene 0 Graham_Greene 0 Henry_Graham_Greene 0 001 @i 10794014 n 0000 | English novelist and Catholic (1904-1991) -11013876 18 n 05 Gregory 0 Gregory_I 0 Saint_Gregory_I 0 St._Gregory_I 0 Gregory_the_Great 0 005 @i 10453533 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 + 03070517 a 0101 | (Roman Catholic Church) an Italian pope distinguished for his spiritual and temporal leadership; a saint and Doctor of the Church (540?-604) -11014212 18 n 03 Gregory 1 Gregory_VII 0 Hildebrand 0 001 @i 10453533 n 0000 | the Italian pope who fought to establish the supremacy of the pope over the Roman Catholic Church and the supremacy of the church over the state (1020-1085) -11014450 18 n 03 Gregory 2 Gregory_XII 0 Angelo_Correr 0 001 @i 10453533 n 0000 | the Italian pope from 1406 to 1415 who worked to end the Great Schism and who retired to make it possible (1327-1417) -11014652 18 n 03 Gregory 3 Gregory_XIII 0 Ugo_Buoncompagni 0 002 @i 10453533 n 0000 + 03070352 a 0101 | the pope who sponsored the introduction of the modern calendar (1572-1585) -11014833 18 n 03 Gregory 4 Gregory_XVI 0 Bartolomeo_Alberto_Capillari 0 001 @i 10453533 n 0000 | Italian pope from 1831 to 1846; conservative in politics and theology; worked to propagate Catholicism in England and the United States (1765-1846) -11015080 18 n 04 Gregory 5 Gregory_Nazianzen 0 Gregory_of_Nazianzen 0 St._Gregory_of_Nazianzen 0 005 @i 10705615 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a church father known for his constant fight against perceived heresies; a saint and Doctor of the Church (329-391) -11015420 18 n 02 Gresham 0 Sir_Thomas_Gresham 0 001 @i 10090020 n 0000 | English financier (1519-1579) -11015525 18 n 02 Gretzky 0 Wayne_Gretzky 0 001 @i 10179291 n 0000 | high-scoring Canadian ice-hockey player (born in 1961) -11015650 18 n 03 Grey 0 Charles_Grey 0 Second_Earl_Grey 0 001 @i 10650162 n 0000 | Englishman who as Prime Minister implemented social reforms including the abolition of slavery throughout the British Empire (1764-1845) -11015872 18 n 02 Grey 1 Lady_Jane_Grey 0 002 @i 10499631 n 0000 #m 08159031 n 0000 | Queen of England for nine days in 1553; she was quickly replaced by Mary Tudor and beheaded for treason (1537-1554) -11016075 18 n 02 Grey 2 Zane_Grey 0 001 @i 10794014 n 0000 | United States writer of western adventure novels (1875-1939) -11016199 18 n 03 Grieg 0 Edvard_Grieg 0 Edvard_Hagerup_Grieg 0 001 @i 09947232 n 0000 | Norwegian composer whose work was often inspired by Norwegian folk music (1843-1907) -11016374 18 n 03 Griffith 0 D._W._Griffith 0 David_Lewelyn_Wark_Griffith 0 001 @i 10088390 n 0000 | United States film maker who was the first to use flashbacks and fade-outs (1875-1948) -11016563 18 n 03 Grimm 0 Jakob_Grimm 0 Jakob_Ludwig_Karl_Grimm 0 002 @i 10794014 n 0000 @i 10264437 n 0000 | the older of the two Grimm brothers remembered best for their fairy stories; also author of Grimm's law describing consonant changes in Germanic languages (1785-1863) -11016841 18 n 03 Grimm 1 Wilhelm_Grimm 0 Wilhelm_Karl_Grimm 0 001 @i 10794014 n 0000 | the younger of the two Grimm brothers remembered best for their fairy stories (1786-1859) -11017020 18 n 02 Gris 0 Jaun_Gris 0 001 @i 10391653 n 0000 | Spanish cubist painter (1887-1927) -11017118 18 n 03 Gromyko 0 Andrei_Gromyko 0 Andrei_Andreyevich_Gromyko 0 001 @i 09787534 n 0000 | Soviet ambassador to the United States and to the United Nations (1909-1989) -11017295 18 n 02 Gropius 0 Walter_Gropius 0 001 @i 09805475 n 0000 | United States architect (born in Germany) and founder of the Bauhaus school (1883-1969) -11017454 18 n 03 Grotius 0 Hugo_Grotius 0 Huig_de_Groot 0 002 @i 10227985 n 0000 @i 10013927 n 0000 | Dutch jurist and diplomat whose writings established the basis of modern international law (1583-1645) -11017661 18 n 02 Groves 0 Leslie_Richard_Groves 0 001 @i 10123844 n 0000 | United States general who served as military director of the atomic bomb project (1896-1970) -11017831 18 n 04 Guarneri 0 Guarnieri 0 Guarnerius 0 Andrea_Guarneri 0 001 @i 10754920 n 0000 | founder of a family of Italian violin makers (1626?-1698) -11017987 18 n 04 Guarneri 1 Guarnieri 1 Guarnerius 1 Guiseppe_Guarneri 0 001 @i 10754920 n 0000 | Italian violin maker and grandson of Andrea Guarneri (1687?-1745) -11018153 18 n 03 Guevara 0 Ernesto_Guevara 0 Che_Guevara 0 001 @i 10527334 n 0000 | an Argentine revolutionary leader who was Fidel Castro's chief lieutenant in the Cuban revolution; active in other Latin American countries; was captured and executed by the Bolivian army (1928-1967) -11018439 18 n 02 Guinevere 0 Guenevere 0 002 @i 09587565 n 0000 ;c 06371734 n 0000 | (Arthurian legend) wife of King Arthur; in some versions of the legend she became Lancelot's lover and that led to the end of the Knights of the Round Table -11018683 18 n 03 Guest 2 Edgar_Guest 0 Edgar_Albert_Guest 0 001 @i 10224578 n 0000 | United States journalist (born in England) noted for his syndicated homey verse (1881-1959) -11018862 18 n 02 Guggenheim 0 Meyer_Guggenheim 0 001 @i 10204177 n 0000 | United States industrialist (born in Switzerland) who with his sons established vast mining and metal processing companies (1828-1905) -11019073 18 n 02 Guggenheim 1 Solomon_Guggenheim 0 001 @i 10421956 n 0000 | United States philanthropist; son of Meyer Guggenheim who created several foundations to support the arts (1861-1949) -11019269 18 n 03 Guinness 0 Alec_Guinness 0 Sir_Alec_Guinness 0 001 @i 09765278 n 0000 | English stage and screen actor noted for versatility (1914-2000) -11019425 18 n 02 Gustavus 0 Gustavus_I 0 001 @i 10231515 n 0000 | king of Sweden who established Lutheranism as the state religion (1496-1560) -11019570 18 n 03 Gustavus 1 Gustavus_II 0 Gustavus_Adolphus 0 001 @i 10231515 n 0000 | king of Sweden whose victories in battle made Sweden a European power; his domestic reforms made Sweden a modern state; in 1630 he intervened on the Protestant side of the Thirty Years' War and was killed in the battle of Lutzen (1594-1632) -11019900 18 n 02 Gustavus 2 Gustavus_III 0 001 @i 10231515 n 0000 | king of Sweden who increased the royal power and waged an unpopular war against Russia (1746-1792) -11020069 18 n 02 Gustavus 3 Gustavus_IV 0 001 @i 10231515 n 0000 | king of Sweden whose losses to Napoleon I led to his being deposed in 1809 (1778-1837) -11020225 18 n 02 Gustavus 4 Gustavus_V 0 001 @i 10231515 n 0000 | king of Sweden who kept Sweden neutral during both World War I and II (1858-1950) -11020375 18 n 02 Gustavus 5 Gustavus_VI 0 001 @i 10231515 n 0000 | the last king of Sweden to have any real political power (1882-1973) -11020513 18 n 03 Gutenberg 0 Johann_Gutenberg 0 Johannes_Gutenberg 0 001 @i 10475297 n 0000 | German printer who was the first in Europe to print using movable type and the first to use a press (1400-1468) -11020721 18 n 03 Guthrie 0 Woody_Guthrie 0 Woodrow_Wilson_Guthrie 0 002 @i 10099093 n 0000 @i 10624540 n 0000 | United States folk singer and songwriter (1912-1967) -11020888 18 n 09 Gwynn 0 Gywn 0 Gynne 0 Nell_Gwynn 0 Nell_Gywn 0 Nell_Gwynne 0 Eleanor_Gwynn 0 Eleanor_Gwyn 0 Eleanor_Gwynne 0 001 @i 09940987 n 0000 | English comedienne and mistress of Charles II (1650-1687) -11021100 18 n 01 Habakkuk 0 001 @i 10483890 n 0000 | a Hebrew minor prophet -11021178 18 n 02 Haber 0 Fritz_Haber 0 001 @i 09913824 n 0000 | German chemist noted for the synthetic production of ammonia from the nitrogen in air (1868-1934) -11021342 18 n 03 Hadrian 0 Publius_Aelius_Hadrianus 0 Adrian 1 001 @i 10537240 n 0000 | Roman Emperor who was the adoptive son of Trajan; travelled throughout his empire to strengthen its frontiers and encourage learning and architecture; on a visit to Britain in 122 he ordered the construction of Hadrian's Wall (76-138) -11021667 18 n 02 Haeckel 0 Ernst_Heinrich_Haeckel 0 002 @i 09855630 n 0000 @i 10423589 n 0000 | German biologist and philosopher; advocated Darwinism and formulated the theory of recapitulation; was an exponent of materialistic monism (1834-1919) -11021916 18 n 02 Haggai 0 Aggeus 0 001 @i 10483890 n 0000 | a Hebrew minor prophet -11022001 18 n 03 Haggard 0 Rider_Haggard 0 Sir_Henry_Rider_Haggard 0 001 @i 10794014 n 0000 | British writer noted for romantic adventure novels (1856-1925) -11022160 18 n 02 Hahn 0 Otto_Hahn 0 001 @i 09913824 n 0000 | German chemist who was co-discoverer with Lise Meitner of nuclear fission (1879-1968) -11022309 18 n 03 Haile_Selassie 0 Ras_Tafari_Makonnen 0 Ras_Tafari 0 001 @i 10053004 n 0000 | emperor of Ethiopia; worshipped by Rastafarians (1892-1975) -11022465 18 n 04 Haldane 0 Richard_Haldane 0 Richard_Burdon_Haldane 0 First_Viscount_Haldane_of_Cloan 0 001 @i 10650162 n 0000 | Scottish statesman and brother of Elizabeth and John Haldane (1856-1928) -11022669 18 n 03 Haldane 1 Elizabeth_Haldane 0 Elizabeth_Sanderson_Haldane 0 001 @i 10794014 n 0000 | Scottish writer and sister of Richard Haldane and John Haldane (1862-1937) -11022848 18 n 03 Haldane 2 John_Haldane 0 John_Scott_Haldane 0 001 @i 10429965 n 0000 | Scottish physiologist and brother of Richard Haldane and Elizabeth Haldane; noted for research into industrial diseases (1860-1936) -11023070 18 n 03 Haldane 3 J._B._S._Haldane 0 John_Burdon_Sanderson_Haldane 0 001 @i 10126424 n 0000 | Scottish geneticist (son of John Haldane) who contributed to the development of population genetics; a popularizer of science and a Marxist (1892-1964) -11023327 18 n 02 Hale 0 Edward_Everett_Hale 0 001 @i 10794014 n 0000 | prolific United States writer (1822-1909) -11023442 18 n 02 Hale 1 George_Ellery_Hale 0 001 @i 09818343 n 0000 | United States astronomer who discovered that sunspots are associated with strong magnetic fields (1868-1938) -11023623 18 n 02 Hale 2 Nathan_Hale 0 001 @i 09740085 n 0000 | a soldier of the American Revolution who was hanged as a spy by the British; his last words were supposed to have been `I only regret that I have but one life to give for my country' (1755-1776) -11023883 18 n 03 Halevy 0 Fromental_Halevy 0 Jacques_Francois_Fromental_Elie_Halevy 0 001 @i 09947232 n 0000 | French operatic composer (1799-1862) -11024033 18 n 02 Haley 0 Alex_Haley 0 001 @i 10794014 n 0000 | United States writer and Afro-American who wrote a fictionalized account of tracing his family roots back to Africa (1921-1992) -11024226 18 n 03 Haley 1 Bill_Haley 0 William_John_Clifton_Haley_Jr. 0 001 @i 10536416 n 0000 | United States rock singer who was one of the first to popularize rock'n'roll music (1925-1981) -11024419 18 n 02 Hall 0 Asaph_Hall 0 001 @i 09818343 n 0000 | United States astronomer who discovered Phobos and Deimos (the two satellites of Mars) (1829-1907) -11024582 18 n 02 Hall 1 Charles_Francis_Hall 0 001 @i 10072708 n 0000 | United States explorer who led three expeditions to the Arctic (1821-1871) -11024731 18 n 02 Hall 2 Charles_Martin_Hall 0 001 @i 09913824 n 0000 | United States chemist who developed an economical method of producing aluminum from bauxite (1863-1914) -11024908 18 n 03 Hall 3 G._Stanley_Hall 0 Granville_Stanley_Hall 0 001 @i 10488865 n 0000 | United States child psychologist whose theories of child psychology strongly influenced educational psychology (1844-1924) -11025125 18 n 03 Hall 4 Radclyffe_Hall 0 Marguerite_Radclyffe_Hall 0 001 @i 10794014 n 0000 | English writer whose novel about a lesbian relationship was banned in Britain for many years (1883-1943) -11025326 18 n 03 Halley 0 Edmond_Halley 0 Edmund_Halley 0 001 @i 09818343 n 0000 | English astronomer who used Newton's laws of motion to predict the period of a comet (1656-1742) -11025508 18 n 02 Hals 0 Frans_Hals 0 001 @i 10375794 n 0000 | Dutch portrait and genre painter who endowed his portraits with vitality and humor (1580?-1666) -11025668 18 n 02 Hamilton 0 Alexander_Hamilton 0 001 @i 10650162 n 0000 | United States statesman and leader of the Federalists; as the first Secretary of the Treasury he establish a federal bank; was mortally wounded in a duel with Aaron Burr (1755-1804) -11025926 18 n 02 Hamilton 1 Alice_Hamilton 0 001 @i 10719807 n 0000 | United States toxicologist known for her work on industrial poisons (1869-1970) -11026078 18 n 03 Hamilton 2 Lady_Emma_Hamilton 0 Amy_Lyon 0 001 @i 10242791 n 0000 | English beauty who was the mistress of Admiral Nelson (1765-1815) -11026231 18 n 03 Hamilton 3 William_Rowan_Hamilton 0 Sir_William_Rowan_Hamilton 0 001 @i 10301261 n 0000 | Irish mathematician (1806-1865) -11026372 18 n 03 Hammarskjold 0 Dag_Hammarskjold 0 Dag_Hjalmar_Agne_Carl_Hammarskjold 0 001 @i 10013927 n 0000 | Swedish diplomat who greatly extended the influence of the United Nations in peacekeeping matters (1905-1961) -11026597 18 n 03 Hammerstein 0 Oscar_Hammerstein 0 Oscar_Hammerstein_II 0 001 @i 10277912 n 0000 | United States lyricist who collaborated on many musical comedies (most successfully with Richard Rodgers) (1895-1960) -11026816 18 n 03 Hammett 0 Dashiell_Hammett 0 Samuel_Dashiell_Hammett 0 001 @i 10794014 n 0000 | United States writer of hard-boiled detective fiction (1894-1961) -11026981 18 n 02 Hammurabi 0 Hammurapi 0 001 @i 10231515 n 0000 | Babylonian king who codified the laws of Sumer and Mesopotamia (died 1750 BC) -11027127 18 n 02 Hampton 0 Lionel_Hampton 0 001 @i 10220486 n 0000 | United States musician who was the first to use the vibraphone as a jazz instrument (1913-2002) -11027294 18 n 03 Hamsun 0 Knut_Hamsun 0 Knut_Pedersen 0 001 @i 10794014 n 0000 | Norwegian writer of novels (1859-1952) -11027416 18 n 02 Hancock 0 John_Hancock 0 001 @i 09740085 n 0000 | American revolutionary patriot who was president of the Continental Congress; was the first signer of the Declaration of Independence (1737-1793) -11027631 18 n 04 Handel 0 George_Frideric_Handel 0 George_Frederick_Handel 0 Georg_Friedrich_Handel 0 002 @i 09947232 n 0000 + 03032383 a 0101 | a prolific British baroque composer (born in Germany) remembered best for his oratorio Messiah (1685-1759) -11027885 18 n 03 Handy 0 W._C._Handy 0 William_Christopher_Handy 0 001 @i 09947232 n 0000 | United States blues musician who transcribed and published traditional blues music (1873-1958) -11028074 18 n 03 Hanks 0 Tom_Hanks 0 Thomas_J._Hanks 0 001 @i 09765278 n 0000 | United States film actor (born in 1956) -11028196 18 n 01 Hannibal 0 002 @i 10123844 n 0000 @i 09697070 n 0000 | general who commanded the Carthaginian army in the second Punic War; crossed the Alps and defeated the Romans but was recalled to defend Carthage and was defeated (247-182 BC) -11028446 18 n 04 Harding 0 Warren_Harding 0 Warren_Gamaliel_Harding 0 President_Harding 0 001 @i 10467395 n 0000 | 29th President of the United States; two of his appointees were involved in the Teapot Dome scandal (1865-1823) -11028675 18 n 02 Hardy 0 Thomas_Hardy 0 001 @i 10794014 n 0000 | English novelist and poet (1840-1928) -11028780 18 n 02 Hardy 1 Oliver_Hardy 0 002 @i 09940146 n 0000 #m 08181375 n 0000 | United States slapstick comedian who played the pompous and overbearing member of the Laurel and Hardy duo who made many films (1892-1957) -11029005 18 n 02 Hargreaves 0 James_Hargreaves 0 001 @i 10214637 n 0000 | English inventor of the spinning jenny (1720-1778) -11029132 18 n 03 Harlow 0 Jean_Harlow 0 Harlean_Carpenter 0 001 @i 09767700 n 0000 | United States film actress who made several films with Clark Gable (1911-1937) -11029298 18 n 03 Harmsworth 0 Alfred_Charles_William_Harmsworth 0 Viscount_Northcliffe 0 001 @i 10491575 n 0000 | British newspaper publisher (1865-1922) -11029454 18 n 04 Harold_I 0 King_Harold_I 0 Harold_Harefoot 0 Harefoot 0 001 @i 10233445 n 0000 | illegitimate son of Canute who seized the throne of England in 1037 (died in 1040) -11029637 18 n 02 Harold_II 0 King_Harold_II 0 001 @i 10233445 n 0000 | King of England who succeeded Edward the Confessor in 1066 and was the last of the Anglo-Saxon monarchs; he was killed fighting the invasion by William the Conqueror (1045-1066) -11029888 18 n 03 Harriman 0 E._H._Harriman 0 Edward_Henry_Harriman 0 001 @i 09882007 n 0000 | United States railway tycoon (1848-1909) -11030025 18 n 03 Harriman 1 Averell_Harriman 0 William_Averell_Harriman 0 002 @i 10090020 n 0000 @i 10013927 n 0000 | United States financier who negotiated a treaty with the Soviet Union banning tests of nuclear weapons (1891-1986) -11030260 18 n 02 Harris 0 Benjamin_Harris 0 001 @i 10491575 n 0000 | publisher of the first newspaper printed in America (1673-1713) -11030395 18 n 03 Harris 1 Bomber_Harris 0 Sir_Arthur_Travers_Harris 0 002 @i 10123844 n 0000 @i 10296176 n 0000 | British marshal of the Royal Air Force; during World War II he directed mass bombing raids against German cities that resulted in heavy civilian casualties (1892-1984) -11030679 18 n 03 Harris 2 Frank_Harris 0 James_Thomas_Harris 0 001 @i 10794014 n 0000 | Irish writer noted for his sexually explicit but unreliable autobiography (1856-1931) -11030855 18 n 02 Harris 3 Townsend_Harris 0 001 @i 10013927 n 0000 | United States diplomat who was instrumental in opening Japan to foreign trade (1804-1878) -11031016 18 n 03 Harris 4 Zellig_Harris 0 Zellig_Sabbatai_Harris 0 001 @i 10264219 n 0000 | United States linguist (born in Ukraine) who developed mathematical linguistics and interpreted speech and writing in a social context (1909-1992) -11031257 18 n 03 Harris 5 Joel_Harris 0 Joel_Chandler_Harris 0 001 @i 10794014 n 0000 | United States author who wrote the stories about Uncle Remus (1848-1908) -11031420 18 n 04 Harrison 1 William_Henry_Harrison 0 President_Harrison 1 President_William_Henry_Harrison 0 001 @i 10467395 n 0000 | 9th President of the United States; caught pneumonia during his inauguration and died shortly after (1773-1841) -11031668 18 n 04 Harrison 2 Benjamin_Harrison 0 President_Harrison 2 President_Benjamin_Harrison 0 001 @i 10467395 n 0000 | 23rd President of the United States (1833-1901) -11031842 18 n 02 Harrison 3 George_Harrison 0 002 @i 10536416 n 0000 #m 08369920 n 0000 | English rock star; lead guitarist of the Beatles (1943-2001) -11031995 18 n 04 Harrison 4 Rex_Harrison 0 Sir_Rex_Harrison 0 Reginald_Carey_Harrison 0 001 @i 09765278 n 0000 | English actor on stage and in films (1908-1990) -11032158 18 n 02 Harrod 0 Charles_Henry_Harrod 0 001 @i 10309896 n 0000 | English merchant who took over a shop in London that was expanded by his son into a prestigious department store (1800-1885) -11032359 18 n 02 Harrod 1 Charles_Digby_Harrod 0 001 @i 10309896 n 0000 | English merchant who expanded his father's shop in London into a prestigious department store (1841-1905) -11032541 18 n 03 Hart 0 Lorenz_Hart 0 Lorenz_Milton_Hart 0 001 @i 10277912 n 0000 | United States lyricist who collaborated with Richard Rodgers (1895-1943) -11032700 18 n 02 Hart 1 Moss_Hart 0 001 @i 10030277 n 0000 | United States playwright who collaborated with George S. Kaufman (1904-1961) -11032840 18 n 02 Harte 0 Bret_Harte 0 001 @i 10794014 n 0000 | United States writer noted for his stories about life during the California gold rush (1836-1902) -11033003 18 n 02 Hartley 0 David_Hartley 0 001 @i 10423589 n 0000 | English philosopher who introduced the theory of the association of ideas (1705-1757) -11033159 18 n 02 Harvard 0 John_Harvard 0 001 @i 10421956 n 0000 | American philanthropist who left his library and half his estate to the Massachusetts college that now bears his name (1607-1638) -11033358 18 n 02 Harvey 0 William_Harvey 0 002 @i 10020890 n 0000 @i 10560637 n 0000 | English physician and scientist who described the circulation of the blood; he later proposed that all animals originate from an ovum produced by the female of the species (1578-1657) -11033631 18 n 01 Hasdrubal 0 002 @i 10123844 n 0000 @i 09697070 n 0000 | general who commanded a Carthaginian army in Spain; joined his brother Hannibal in Italy and was killed by the Romans at the battle of Metaurus River (died 207 BC) -11033870 18 n 02 Hasek 0 Jaroslav_Hasek 0 001 @i 10794014 n 0000 | Czech author of novels and short stories (1883-1923) -11033992 18 n 03 Hassam 0 Childe_Hassam 0 Frederick_Childe_Hassam 0 001 @i 10391653 n 0000 | United States painter noted for brilliant colors and bold brushwork (1859-1935) -11034167 18 n 02 Hassel 0 Odd_Hassel 0 001 @i 09913824 n 0000 | Norwegian chemist noted for his research on organic molecules (1897-1981) -11034307 18 n 02 Hastings 0 Thomas_Hastings 0 001 @i 09805475 n 0000 | United States architect who formed and important architectural firm with John Merven Carrere (1860-1929) -11034485 18 n 02 Hathaway 0 Anne_Hathaway 0 001 @i 10780632 n 0000 | wife of William Shakespeare (1556-1623) -11034596 18 n 02 Havel 0 Vaclav_Havel 0 002 @i 10030277 n 0000 @i 10650162 n 0000 | Czech dramatist and statesman whose plays opposed totalitarianism and who served as president of Czechoslovakia from 1989 to 1992 and president of the Czech Republic since 1993 (born in 1936) -11034874 18 n 03 Hawking 0 Stephen_Hawking 0 Stephen_William_Hawking 0 001 @i 10428004 n 0000 | English theoretical physicist (born in 1942) -11035017 18 n 02 Hawkins 0 Coleman_Hawkins 0 001 @i 10554243 n 0000 | United States jazz saxophonist (1904-1969) -11035132 18 n 04 Hawkins 1 Hawkyns 0 Sir_John_Hawkins 0 Sir_John_Hawkyns 0 001 @i 10476928 n 0000 | English privateer involved in the slave trade; later helped build the fleet that in 1588 defeated the Spanish Armada (1532-1595) -11035363 18 n 02 Haworth 0 Sir_Walter_Norman_Haworth 0 001 @i 09854915 n 0000 | English biochemist who was a pioneer in research on carbohydrates; when he synthesized vitamin C he became the first person to synthesize a vitamin artificially (1883-1950) -11035618 18 n 02 Hawthorne 0 Nathaniel_Hawthorne 0 001 @i 10794014 n 0000 | United States writer of novels and short stories mostly on moral themes (1804-1864) -11035780 18 n 03 Haydn 0 Joseph_Haydn 0 Franz_Joseph_Haydn 0 001 @i 09947232 n 0000 | prolific Austrian composer who influenced the classical form of the symphony (1732-1809) -11035957 18 n 02 Hayek 0 Friedrich_August_von_Hayek 0 001 @i 10043643 n 0000 | English economist (born in Austria) noted for work on the optimum allocation of resources (1899-1992) -11036140 18 n 04 Hayes 0 Rutherford_B._Hayes 0 Rutherford_Birchard_Hayes 0 President_Hayes 0 001 @i 10467395 n 0000 | 19th President of the United States; his administration removed federal troops from the South and so ended the Reconstruction Period (1822-1893) -11036405 18 n 02 Hayes 1 Helen_Hayes 0 001 @i 09767700 n 0000 | acclaimed actress of stage and screen (1900-1993) -11036521 18 n 02 Hays 0 Arthur_Garfield_Hays 0 001 @i 10249950 n 0000 | United States lawyer involved in several famous court trials (1881-1954) -11036668 18 n 03 Hays 1 Will_Hays 0 William_Harrison_Hays 0 001 @i 10249950 n 0000 | United States lawyer and politician who formulated a production code that prescribed the moral content of United States films from 1930 to 1966 (1879-1954) -11036911 18 n 03 Haywood 0 Big_Bill_Haywood 0 William_Dudley_Haywood 0 002 @i 10242032 n 0000 @i 10618848 n 0000 | United States labor leader and militant socialist who was one of the founders of the Industrial Workers of the World (1869-1928) -11037157 18 n 02 Hazlitt 0 William_Hazlitt 0 001 @i 10266016 n 0000 | English essayist and literary critic (1778-1830) -11037278 18 n 02 Hearst 0 William_Randolph_Hearst 0 001 @i 10491575 n 0000 | United States newspaper publisher whose introduction of large headlines and sensational reporting changed American journalism (1863-1951) -11037495 18 n 02 Heaviside 0 Oliver_Heaviside 0 002 @i 10428004 n 0000 @i 10049017 n 0000 | English physicist and electrical engineer who helped develop telegraphic and telephonic communications; in 1902 (independent of A. E. Kennelly) he suggested the existence of an atmospheric layer that reflects radio waves back to earth (1850-1925) -11037836 18 n 03 Hebbel 0 Friedrich_Hebbel 0 Christian_Friedrich_Hebbel 0 001 @i 10030277 n 0000 | German dramatist (1813-1863) -11037966 18 n 02 Hecht 0 Ben_Hecht 0 001 @i 10794014 n 0000 | United States writer of stories and plays (1894-1946) -11038084 18 n 02 Hegel 0 Georg_Wilhelm_Friedrich_Hegel 0 002 @i 10423589 n 0000 + 03032518 a 0101 | German philosopher whose three stage process of dialectical reasoning was adopted by Karl Marx (1770-1831) -11038293 18 n 02 Heidegger 0 Martin_Heidegger 0 001 @i 10071557 n 0000 | German philosopher whose views on human existence in a world of objects and on Angst influenced the existential philosophers (1889-1976) -11038505 18 n 03 Heinlein 0 Robert_A._Heinlein 0 Robert_Anson_Heinlein 0 001 @i 10794014 n 0000 | United States writer of science fiction (1907-1988) -11038657 18 n 02 Heinz 0 Henry_John_Heinz 0 001 @i 10204177 n 0000 | United States industrialist who manufactured and sold processed foods (1844-1919) -11038810 18 n 02 Heisenberg 0 Werner_Karl_Heisenberg 0 001 @i 10364643 n 0000 | German mathematical physicist noted for stating the uncertainty principle (1901-1976) -11038978 18 n 02 Heller 1 Joseph_Heller 0 001 @i 10794014 n 0000 | United States novelist whose best known work was a black comedy inspired by his experiences in the Air Force during World War II (1923-1999) -11039188 18 n 02 Hellman 0 Lillian_Hellman 0 001 @i 10030277 n 0000 | United States playwright; her plays were often indictments of injustice (1905-1984) -11039344 18 n 04 Helmholtz 0 Hermann_von_Helmholtz 0 Hermann_Ludwig_Ferdinand_von_Helmholtz 0 Baron_Hermann_Ludwig_Ferdinand_von_Helmholtz 0 002 @i 10429965 n 0000 @i 10428004 n 0000 | German physiologist and physicist (1821-1894) -11039577 18 n 01 Heloise 0 001 @i 09754217 n 0000 | student and mistress and wife of Abelard (circa 1098-1164) -11039690 18 n 04 Heming 0 Hemminge 0 John_Heming 0 John_Hemminge 0 001 @i 09765278 n 0000 | English actor who edited the first folio of Shakespeare's plays (1556-1630) -11039860 18 n 02 Hemingway 0 Ernest_Hemingway 0 001 @i 10794014 n 0000 | an American writer of fiction who won the Nobel prize for literature in 1954 (1899-1961) -11040024 18 n 03 Hendrix 0 Jimi_Hendrix 0 James_Marshall_Hendrix 0 001 @i 10151760 n 0000 | United States guitarist whose innovative style with electric guitars influenced the development of rock music (1942-1970) -11040240 18 n 02 Henry 0 Joseph_Henry 0 001 @i 10428004 n 0000 | United States physicist who studied electromagnetic phenomena (1791-1878) -11040381 18 n 02 Henry 1 Patrick_Henry 0 002 @i 09740085 n 0000 @i 10380672 n 0000 | a leader of the American Revolution and a famous orator who spoke out against British rule of the American colonies (1736-1799) -11040596 18 n 02 Henry 2 William_Henry 0 001 @i 09913824 n 0000 | English chemist who studied the quantities of gas absorbed by water at different temperatures and under different pressures (1775-1836) -11040800 18 n 02 Henry_I 0 Henry_Beauclerc 0 001 @i 10233445 n 0000 | King of England from 1100 to 1135; youngest son of William the Conqueror; conquered Normandy in 1106 (1068-1135) -11040985 18 n 01 Henry_II 0 002 @i 10233445 n 0000 #m 08156685 n 0000 | first Plantagenet King of England; instituted judicial and financial reforms; quarreled with archbishop Becket concerning the authority of the Crown over the church (1133-1189) -11041236 18 n 01 Henry_II 2 002 @i 10234340 n 0000 #m 08159464 n 0000 | king of France from 1547 to 1559; regained Calais from the English; husband of Catherine de Medicis and father of Charles IX (1519-1559) -11041447 18 n 01 Henry_III 0 002 @i 10233445 n 0000 #m 08156685 n 0000 | son of King John and king of England from 1216 to 1272; his incompetence aroused baronial opposition led by Simon de Montfort (1207-1272) -11041660 18 n 01 Henry_III 2 002 @i 10234340 n 0000 #m 08159464 n 0000 | son of Henry II of France and the last Valois to be king of France (1551-1589) -11041814 18 n 03 Henry_IV 0 Bolingbroke 0 Henry_Bolingbroke 0 002 @i 10233445 n 0000 #m 08155765 n 0000 | the first Lancastrian king of England from 1399 to 1413; deposed Richard II and suppressed rebellions (1367-1413) -11042036 18 n 01 Henry_IV 1 002 @i 10234867 n 0000 @i 10181137 n 0000 | King of the Germans and Holy Roman Emperor (1050-1106) -11042165 18 n 03 Henry_IV 2 Henry_of_Navarre 0 Henry_the_Great 0 002 @i 10234340 n 0000 #m 08154012 n 0000 | king of France from 1589 to 1610; although he was leader of the Huguenot armies, when he succeeded the Catholic Henry III and founded the Bourbon dynasty in 1589 he established religious freedom in France; -11042482 18 n 01 Henry_V 0 002 @i 10233445 n 0000 #m 08155765 n 0000 | son of Henry IV and King of England from 1413 to 1422; reopened the Hundred Years' War and defeated the French at Agincourt (1387-1422) -11042691 18 n 01 Henry_VI 0 002 @i 10233445 n 0000 #m 08155765 n 0000 | son of Henry V who as an infant succeeded his father and was King of England from 1422 to 1461; he was taken prisoner in 1460 and Edward IV was proclaimed king; he was rescued and regained the throne in 1470 but was recaptured and murdered in the Tower of London (1421-1471) -11043040 18 n 02 Henry_VII 0 Henry_Tudor 0 002 @i 10233445 n 0000 #m 08159031 n 0000 | first Tudor king of England from 1485 to 1509; head of the house of Lancaster in the War of the Roses; defeated Richard III at Bosworth Field and was proclaimed king; married the daughter of Edward IV and so united the houses of York and Lancaster (1457-1509) -11043389 18 n 01 Henry_VII 1 002 @i 10234867 n 0000 @i 10181137 n 0000 | King of the Germans and Holy Roman Emperor (1275-1313) -11043519 18 n 01 Henry_VIII 0 002 @i 10233445 n 0000 #m 08159031 n 0000 | son of Henry VII and King of England from 1509 to 1547; his divorce from Catherine of Aragon resulted in his break with the Catholic Church in 1534 and his excommunication 1538, leading to the start of the Reformation in England (1491-1547) -11043836 18 n 02 Henson 0 Jim_Henson 0 001 @i 10493685 n 0000 | United States puppeteer who created a troupe of puppet characters (1936-1990) -11043980 18 n 03 Hepburn 0 Katharine_Hepburn 0 Katharine_Houghton_Hepburn 0 001 @i 09767700 n 0000 | United States film actress who appeared in many films with Spencer Tracy (1907-2003) -11044168 18 n 03 Hepworth 0 Barbara_Hepworth 0 Dame_Barbara_Hepworth 0 001 @i 10566072 n 0000 | British sculptor (1902-1975) -11044295 18 n 01 Heraclitus 0 001 @i 10423589 n 0000 | a presocratic Greek philosopher who said that fire is the origin of all things and that permanence is an illusion as all things are in perpetual flux (circa 500 BC) -11044517 18 n 02 Herbart 0 Johann_Friedrich_Herbart 0 001 @i 10423589 n 0000 | German philosopher (1776-1841) -11044629 18 n 02 Herbert 0 Victor_Herbert 0 001 @i 10339966 n 0000 | United States musician and composer and conductor noted for his comic operas (1859-1924) -11044789 18 n 02 Herder 1 Johann_Gottfried_von_Herder 0 001 @i 10423589 n 0000 | German philosopher who advocated intuition over reason (1744-1803) -11044939 18 n 03 Herman 0 Woody_Herman 0 Woodrow_Charles_Herman 0 002 @i 10220486 n 0000 @i 09837201 n 0000 | United States jazz musician and bandleader (1913-1987) -11045106 18 n 03 Hero 3 Heron 0 Hero_of_Alexandria 0 002 @i 10301261 n 0000 @i 10214637 n 0000 | Greek mathematician and inventor who devised a way to determine the area of a triangle and who described various mechanical devices (first century) -11045353 18 n 02 Herod 0 Herod_the_Great 0 001 @i 10231515 n 0000 | king of Judea who (according to the New Testament) tried to kill Jesus by ordering the death of all children under age two in Bethlehem (73-4 BC) -11045569 18 n 01 Herodotus 0 001 @i 10177150 n 0000 | the ancient Greek known as the father of history; his accounts of the wars between the Greeks and Persians are the first known examples of historical writing (485-425 BC) -11045796 18 n 02 Herrick 0 Robert_Herrick 0 001 @i 10444194 n 0000 | English lyric poet (1591-1674) -11045898 18 n 04 Herschel 0 William_Herschel 0 Sir_William_Herschel 0 Sir_Frederick_William_Herschel 0 001 @i 09818343 n 0000 | English astronomer (born in Germany) who discovered infrared light and who catalogued the stars and discovered the planet Uranus (1738-1822) -11046169 18 n 04 Herschel 1 John_Herschel 0 Sir_John_Herschel 0 Sir_John_Frederick_William_Herschel 0 001 @i 09818343 n 0000 | English astronomer (son of William Herschel) who extended the catalogue of stars to the southern hemisphere and did pioneering work in photography (1792-1871) -11046457 18 n 02 Hershey 0 Milton_Snavely_Hershey 0 002 @i 09953350 n 0000 @i 10421956 n 0000 | United States confectioner and philanthropist who created the model industrial town of Hershey, Pennsylvania; founded an industrial school for orphan boys (1857-1945) -11046722 18 n 03 Hertz 0 Gustav_Hertz 0 Gustav_Ludwig_Hertz 0 001 @i 10364643 n 0000 | German physicist who with James Franck proved the existence of the stationary energy states postulated by Bohr (1887-1975) -11046934 18 n 03 Hertz 1 Heinrich_Hertz 0 Heinrich_Rudolph_Hertz 0 002 @i 10428004 n 0000 + 03072518 a 0101 | German physicist who was the first to produce electromagnetic waves artificially (1857-1894) -11047139 18 n 02 Herzberg 0 Gerhard_Herzberg 0 001 @i 10364643 n 0000 | Canadian physicist (born in Germany) noted for contributions to understanding the structure of molecules (born in 1904) -11047333 18 n 01 Hesiod 0 001 @i 10444194 n 0000 | Greek poet whose existing works describe rural life and the genealogies of the gods and the beginning of the world (eighth century BC) -11047521 18 n 03 Hess 0 Victor_Hess 0 Victor_Franz_Hess 0 001 @i 10428004 n 0000 | United States physicist (born in Austria) who was a discoverer of cosmic radiation (1883-1964) -11047701 18 n 03 Hess 1 Rudolf_Hess 0 Walther_Richard_Rudolf_Hess 0 001 @i 10350220 n 0000 | Nazi leader who in 1941 flew a solo flight to Scotland in an apparent attempt to negotiate a peace treaty with Great Britain but was imprisoned for life (1894-1987) -11047961 18 n 03 Hess 2 Walter_Hess 0 Walter_Rudolf_Hess 0 001 @i 10429965 n 0000 | Swiss physiologist noted for studies of the brain (1881-1973) -11048109 18 n 02 Hess 3 Dame_Myra_Hess 0 001 @i 10430665 n 0000 | English pianist (1890-1965) -11048205 18 n 02 Hesse 0 Hermann_Hesse 0 001 @i 10794014 n 0000 | Swiss writer (born in Germany) whose novels and poems express his interests in eastern spiritual values (1877-1962) -11048389 18 n 02 Hevesy 0 George_Charles_Hevesy_de_Hevesy 0 001 @i 09913824 n 0000 | Hungarian chemist who studied radioisotopes and was one of the discoverers of the element hafnium (1885-1966) -11048586 18 n 02 Heyerdahl 0 Thor_Hyerdahl 0 001 @i 09796323 n 0000 | Norwegian anthropologist noted for his studies of cultural diffusion (1914-2002) -11048739 18 n 02 Heyrovsky 0 Joroslav_Heyrovsky 0 001 @i 09913824 n 0000 | Czechoslovakian chemist who developed polarography (1890-1967) -11048879 18 n 03 Heyse 0 Paul_Heyse 0 Paul_Johann_Ludwig_von_Heyse 0 001 @i 10794014 n 0000 | German writer (1830-1914) -11049001 18 n 03 Heyward 0 DuBois_Heyward 0 Edwin_DuBois_Hayward 0 001 @i 10794014 n 0000 | United States writer (1885-1940) -11049128 18 n 02 Hezekiah 0 Ezekias 0 002 @i 10231515 n 0000 ;c 06449735 n 0000 | (Old Testament) king of Judah who abolished idolatry (715-687 BC) -11049278 18 n 01 Hiawatha 0 002 @i 10203298 n 0000 @i 09664121 n 0000 | a Native American chieftain who argued for peace with the European settlers (16th century) -11049443 18 n 03 Hickock 0 Wild_Bill_Hickock 0 James_Butler_Hickock 0 001 @i 10295951 n 0000 | frontier marshal whose adventures have become legendary (1837-1876) -11049608 18 n 03 Higginson 0 Thomas_Higginson 0 Thomas_Wentworth_Storrow_Higginson 0 002 @i 10622053 n 0000 @i 10794014 n 0000 | United States writer and soldier who led the first Black regiment in the Union Army (1823-1911) -11049835 18 n 02 Hilbert 0 David_Hilbert 0 001 @i 10301261 n 0000 | German mathematician (1862-1943) -11049938 18 n 03 Hill 0 Benny_Hill 0 Alfred_Hawthorne 0 001 @i 09940146 n 0000 | risque English comedian (1925-1992) -11050057 18 n 03 Hill 1 J._J._Hill 0 James_Jerome_Hill 0 001 @i 09882007 n 0000 | United States railroad tycoon (1838-1916) -11050183 18 n 04 Hillary 0 Edmund_Hillary 0 Sir_Edmund_Hillary 0 Sir_Edmund_Percival_Hillary 0 001 @i 10334567 n 0000 | New Zealand mountaineer who in 1953 first attained the summit of Mount Everest with his Sherpa guide Tenzing Norgay (born in 1919) -11050436 18 n 01 Hillel 0 001 @i 10502329 n 0000 | Palestinian rabbi and interpreter of Judaic law -11050537 18 n 02 Himmler 0 Heinrich_Himmler 0 001 @i 10350220 n 0000 | German Nazi who was chief of the SS and the Gestapo and who oversaw the genocide of six million Jews (1900-1945) -11050723 18 n 02 Hinault 0 Bernard_Hinault 0 001 @i 09986189 n 0000 | French racing cyclist who won the Tour de France five times (born in 1954) -11050870 18 n 02 Hindemith 0 Paul_Hindemith 0 002 @i 09947232 n 0000 @i 09952539 n 0000 | German neoclassical composer and conductor who believed that music should have a social purpose (1895-1963) -11051070 18 n 03 Hindenburg 0 Paul_von_Hindenburg 0 Paul_Ludwig_von_Beneckendorff_und_von_Hindenburg 0 003 @i 10123844 n 0000 @i 10086821 n 0000 @i 10650162 n 0000 | German field marshal and statesman; as president of the Weimar Republic he reluctantly appointed Hitler as chancellor in 1933 (1847-1934) -11051376 18 n 01 Hipparchus 0 002 @i 09818343 n 0000 @i 10301261 n 0000 | Greek astronomer and mathematician who discovered the precession of the equinoxes and made the first known star chart and is said to have invented trigonometry (second century BC) -11051632 18 n 01 Hippocrates 0 002 @i 10305802 n 0000 + 03072816 a 0101 | medical practitioner who is regarded as the father of medicine; author of the Hippocratic oath (circa 460-377 BC) -11051822 18 n 02 Hirohito 0 Michinomiya_Hirohito 0 001 @i 10053004 n 0000 | emperor of Japan who renounced his divinity and became a constitutional monarch after Japan surrendered at the end of World War II (1901-1989) -11052043 18 n 02 Hirschfeld 0 Al_Hirschfeld 0 001 @i 09812338 n 0000 | United States artist noted for his line-drawn caricatures (1904-2003) -11052186 18 n 02 Hirschsprung 0 Harold_Hirschsprung 0 001 @i 09828760 n 0000 | Danish pediatrician (1830-1916) -11052299 18 n 04 Hitchcock 0 Alfred_Hitchcock 0 Sir_Alfred_Hitchcock 0 Alfred_Joseph_Hitchcock 0 001 @i 10088200 n 0000 | English film director noted for his skill in creating suspense (1899-1980) -11052498 18 n 02 Hitchings 0 George_Herbert_Hitchings 0 001 @i 09854915 n 0000 | United States biochemist noted for developing drugs to treat leukemia and gout (1905-1998) -11052672 18 n 03 Hitler 0 Adolf_Hitler 0 Der_Fuhrer 0 003 @i 10011902 n 0000 @i 10350220 n 0000 + 03032736 a 0101 | German Nazi dictator during World War II (1889-1945) -11052843 18 n 02 Hoagland 0 Hudson_Hoagland 0 001 @i 10429965 n 0000 | United States physiologist (1899-1982) -11052955 18 n 02 Hobbes 0 Thomas_Hobbes 0 001 @i 10423589 n 0000 | English materialist and political philosopher who advocated absolute sovereignty as the only kind of government that could resolve problems caused by the selfishness of human beings (1588-1679) -11053218 18 n 03 Hobbs 0 Sir_Jack_Hobbs 0 John_Berry_Hobbs 0 001 @i 09977326 n 0000 | notable English cricketer (1882-1963) -11053344 18 n 02 Ho_Chi_Minh 0 Nguyen_Tat_Thanh 0 001 @i 10650162 n 0000 | Vietnamese communist statesman who fought the Japanese in World War II and the French until 1954 and South Vietnam until 1975 (1890-1969) -11053559 18 n 04 Hodgkin 0 Alan_Hodgkin 0 Sir_Alan_Hodgkin 0 Alan_Lloyd_Hodgkin 0 001 @i 10429965 n 0000 | English physiologist who, with Andrew Huxley, discovered the role of potassium and sodium atoms in the transmission of the nerve impulse (1914-1998) -11053817 18 n 03 Hodgkin 1 Dorothy_Hodgkin 0 Dorothy_Mary_Crowfoot_Hodgkin 0 001 @i 09913824 n 0000 | English chemist (born in Egypt) who used crystallography to study the structure of organic compounds (1910-1994) -11054034 18 n 02 Hodgkin 2 Thomas_Hodgkin 0 001 @i 10020890 n 0000 | English physician who first described Hodgkin's disease (1798-1866) -11054173 18 n 03 Hoffa 0 Jimmy_Hoffa 0 James_Riddle_Hoffa 0 001 @i 10242032 n 0000 | United States labor leader who was president of the Teamsters Union; he was jailed for trying to bribe a judge and later disappeared and is assumed to have been murdered (1913-1975) -11054442 18 n 02 Hoffman 0 Dustin_Hoffman 0 001 @i 09765278 n 0000 | versatile United States film actor (born in 1937) -11054563 18 n 02 Hoffman 1 Malvina_Hoffman 0 001 @i 10566072 n 0000 | United States sculptor (1887-1966) -11054670 18 n 04 Hoffmann 0 E._T._A._Hoffmann 0 Ernst_Theodor_Amadeus_Hoffmann 0 Ernst_Theodor_Wilhelm_Hoffmann 0 001 @i 10794014 n 0000 | German writer of fantastic tales (1776-1822) -11054856 18 n 02 Hoffmann 1 Roald_Hoffmann 0 001 @i 09913824 n 0000 | United States chemist (born in Poland) who used quantum mechanics to understand chemical reactions (born in 1937) -11055042 18 n 02 Hoffmann 2 August_Wilhelm_von_Hoffmann 0 001 @i 09913824 n 0000 | German chemist (1818-1892) -11055154 18 n 02 Hoffmann 3 Josef_Hoffmann 0 001 @i 09805475 n 0000 | Austrian architect known for his use of rectilinear units (1870-1956) -11055296 18 n 02 Hoffmannsthal 0 Hugo_von_Hoffmannsthal 0 001 @i 10444194 n 0000 | German poet who wrote libretti for operas by Richard Strauss (1874-1929) -11055454 18 n 03 Hogan 0 Ben_Hogan 0 William_Benjamin_Hogan 0 001 @i 10136959 n 0000 | United States golfer who won many major golf tournaments (1912-1997) -11055612 18 n 02 Hogarth 0 William_Hogarth 0 002 @i 10375794 n 0000 @i 10058155 n 0000 | English artist noted for a series of engravings that satirized the affectations of his time (1697-1764) -11055807 18 n 02 Hogg 0 James_Hogg 0 001 @i 10444194 n 0000 | Scottish writer of rustic verse (1770-1835) -11055915 18 n 02 Hokusai 0 Katsushika_Hokusai 0 001 @i 10391653 n 0000 | Japanese painter whose work influenced the impressionists (1760-1849) -11056060 18 n 03 Holbein 0 Hans_Holbein 0 Holbein_the_Elder 0 001 @i 10375794 n 0000 | German painter of religious works (1465-1524) -11056195 18 n 03 Holbein 1 Hans_Holbein 1 Holbein_the_Younger 0 002 @i 10375794 n 0000 @i 10058155 n 0000 | German painter and engraver noted for his portraits; he was commissioned by Henry VIII to provide portraits of the English king's prospective brides (1497-1543) -11056466 18 n 02 Hollerith 0 Herman_Hollerith 0 001 @i 10214637 n 0000 | United States inventor who invented a system for recording alphanumeric information on punched cards (1860-1929) -11056654 18 n 03 Holly 0 Buddy_Holly 0 Charles_Hardin_Holley 0 002 @i 10536416 n 0000 @i 10624540 n 0000 | United States rock star (1936-1959) -11056799 18 n 02 Holmes 1 Arthur_Holmes 0 001 @i 10127689 n 0000 | English geologist and supporter of the theory of continental drift (1890-1965) -11056947 18 n 02 Holmes 2 Oliver_Wendell_Holmes 0 001 @i 10794014 n 0000 | United States writer of humorous essays (1809-1894) -11057076 18 n 02 Holmes 3 Oliver_Wendell_Holmes_Jr. 0 001 @i 10227985 n 0000 | United States jurist noted for his liberal opinions (1841-1935) -11057221 18 n 01 Holofernes 0 002 @i 10123844 n 0000 ;c 06457952 n 0000 | (Apocrypha) the Assyrian general who was decapitated by the biblical heroine Judith -11057381 18 n 01 Homer 0 002 @i 10444194 n 0000 + 03073251 a 0101 | ancient Greek epic poet who is believed to have written the Iliad and the Odyssey (circa 850 BC) -11057548 18 n 02 Homer 1 Winslow_Homer 0 001 @i 10391653 n 0000 | United States painter best known for his seascapes (1836-1910) -11057679 18 n 02 Honegger 0 Arthur_Honegger 0 001 @i 09947232 n 0000 | Swiss composer (born in France) who was the founding member of a group in Paris that included Erik Satie and Darius Milhaud and Francis Poulenc and Jean Cocteau (1892-1955) -11057925 18 n 02 Hooke 0 Robert_Hooke 0 001 @i 10560637 n 0000 | English scientist who formulated the law of elasticity and proposed a wave theory of light and formulated a theory of planetary motion and proposed the inverse square law of gravitational attraction and discovered the cellular structure of cork and introduced the term `cell' into biology and invented a balance spring for watches (1635-1703) -11058335 18 n 02 Hooker 3 Richard_Hooker 0 001 @i 10705615 n 0000 | English theologian (1554-1600) -11058436 18 n 03 Hooker 4 Joseph_Hooker 0 Fighting_Joe_Hooker 0 001 @i 10123844 n 0000 | United States general in the Union Army who was defeated at Chancellorsville by Robert E. Lee (1814-1879) -11058633 18 n 04 Hoover 0 Herbert_Hoover 0 Herbert_Clark_Hoover 0 President_Hoover 0 001 @i 10467395 n 0000 | 31st President of the United States; in 1929 the stock market crashed and the economy collapsed and Hoover was defeated for reelection by Franklin Roosevelt (1874-1964) -11058914 18 n 03 Hoover 1 J._Edgar_Hoover 0 John_Edgar_Hoover 0 001 @i 10249950 n 0000 | United States lawyer who was director of the FBI for 48 years (1895-1972) -11059079 18 n 03 Hoover 2 William_Hoover 0 William_Henry_Hoover 0 002 @i 10204177 n 0000 + 01244853 v 0103 | United States industrialist who manufactured vacuum cleaners (1849-1932) -11059263 18 n 03 Hope 1 Bob_Hope 0 Leslie_Townes_Hope 0 001 @i 09940146 n 0000 | United States comedian (born in England) who appeared in films with Bing Crosby (1903-2003) -11059438 18 n 04 Hopkins 0 Anthony_Hopkins 0 Sir_Anthony_Hopkins 0 Sir_Anthony_Philip_Hopkins 0 001 @i 09765278 n 0000 | Welsh film actor (born in 1937) -11059593 18 n 02 Hopkins 1 Sir_Frederick_Gowland_Hopkins 0 001 @i 09854915 n 0000 | English biochemist who did pioneering work that led to the discovery of vitamins (1861-1947) -11059772 18 n 02 Hopkins 2 Gerard_Manley_Hopkins 0 001 @i 10444194 n 0000 | English poet (1844-1889) -11059875 18 n 02 Hopkins 3 Johns_Hopkins 0 002 @i 10090020 n 0000 @i 10421956 n 0000 | United States financier and philanthropist who left money to found the university and hospital that bear his name in Baltimore (1795-1873) -11060103 18 n 02 Hopkins 4 Mark_Hopkins 0 002 @i 10705615 n 0000 @i 10045713 n 0000 | United States educator and theologian (1802-1887) -11060241 18 n 02 Hopkinson 0 Francis_Hopkinson 0 001 @i 09740085 n 0000 | American Revolutionary leader and patriot; a signer of the Declaration of Independence (1737-1791) -11060416 18 n 01 Horace 0 001 @i 10444194 n 0000 | Roman lyric poet said to have influenced English poetry (65-8 BC) -11060535 18 n 03 Horne 0 Lena_Horne 0 Lena_Calhoun_Horne 0 002 @i 10599806 n 0000 @i 09767700 n 0000 | United States singer and actress (born in 1917) -11060688 18 n 02 Horne 1 Marilyn_Horne 0 001 @i 10313441 n 0000 | United States operatic mezzo-soprano (born 1934) -11060805 18 n 03 Horney 0 Karen_Horney 0 Karen_Danielsen_Horney 0 001 @i 10488016 n 0000 | United States psychiatrist (1885-1952) -11060937 18 n 02 Horowitz 0 Vladimir_Horowitz 0 001 @i 10430665 n 0000 | Russian concert pianist who was a leading international virtuoso (1904-1989) -11061089 18 n 02 Horta 0 Victor_Horta 0 001 @i 09805475 n 0000 | Belgian architect and leader in art nouveau architecture (1861-1947) -11061225 18 n 01 Hosea 0 001 @i 10483890 n 0000 | a minor Hebrew prophet (8th century BC) -11061317 18 n 03 Houdini 0 Harry_Houdini 0 Erik_Weisz 0 001 @i 10063177 n 0000 | United States magician (born in Hungary) famous for his ability to escape from chains or handcuffs or straitjackets or padlocked containers (1874-1926) -11061552 18 n 02 Houghton 0 Henry_Oscar_Houghton 0 001 @i 10491309 n 0000 | United States publisher who founded a printing shop that became an important book publisher (1823-1895) -11061734 18 n 03 Housman 0 A._E._Housman 0 Alfred_Edward_Housman 0 001 @i 10444194 n 0000 | English poet (1859-1936) -11061853 18 n 03 Houston 0 Sam_Houston 0 Samuel_Houston 0 002 @i 10450303 n 0000 @i 10123844 n 0000 | United States politician and military leader who fought to gain independence for Texas from Mexico and to make it a part of the United States (1793-1863) -11062111 18 n 02 Howard 0 Catherine_Howard 0 001 @i 10499857 n 0000 | Queen of England as the fifth wife of Henry VIII who was accused of adultery and executed (1520-1542) -11062285 18 n 03 Howard 1 Leslie_Howard 0 Leslie_Howard_Stainer 0 001 @i 09765278 n 0000 | English actor of stage and screen (1893-1943) -11062424 18 n 02 Howe 0 Elias_Howe 0 001 @i 10214637 n 0000 | United States inventor who built early sewing machines and won suits for patent infringement against other manufacturers (including Isaac M. Singer) (1819-1867) -11062649 18 n 02 Howe 1 Julia_Ward_Howe 0 001 @i 10672908 n 0000 | United States feminist who was active in the women's suffrage movement (1819-1910) -11062801 18 n 03 Howe 2 Gordie_Howe 0 Gordon_Howe 0 001 @i 10179291 n 0000 | Canadian hockey player who holds the record for playing the most games (born 1928) -11062963 18 n 02 Howe 3 Irving_Howe 0 001 @i 10044879 n 0000 | United States editor (1920-1993) -11063061 18 n 02 Howells 0 William_Dean_Howells 0 001 @i 10794014 n 0000 | United States writer and editor (1837-1920) -11063182 18 n 02 Hoyle 0 Edmond_Hoyle 0 002 @i 10794014 n 0000 @i 09894654 n 0000 | English writer on card games (1672-1769) -11063309 18 n 03 Hoyle 1 Fred_Hoyle 0 Sir_Fred_Hoyle 0 001 @i 09819291 n 0000 | an English astrophysicist and advocate of the steady state theory of cosmology; described processes of nucleosynthesis inside stars (1915-2001) -11063535 18 n 02 Hubbard 0 L._Ron_Hubbard 0 001 @i 10794014 n 0000 | a United States writer of science fiction and founder of Scientology (1911-1986) -11063687 18 n 03 Hubble 0 Edwin_Hubble 0 Edwin_Powell_Hubble 0 001 @i 09819291 n 0000 | United States astronomer who discovered that (as the universe expands) the speed with which nebulae recede increases with their distance from the observer (1889-1953) -11063944 18 n 02 Hubel 0 David_Hubel 0 001 @i 10354580 n 0000 | United States neuroscientist noted for his studies of the neural basis of vision (born in 1926) -11064106 18 n 02 Hudson 0 Henry_Hudson 0 001 @i 10347883 n 0000 | English navigator who discovered the Hudson River; in 1610 he attempted to winter in Hudson Bay but his crew mutinied and set him adrift to die (1565-1611) -11064330 18 n 03 Hudson 1 W._H._Hudson 0 William_Henry_Hudson 0 001 @i 10346514 n 0000 | English naturalist (born in Argentina) (1841-1922) -11064472 18 n 02 Huggins 0 Sir_William_Huggins 0 001 @i 09818343 n 0000 | English astronomer who pioneered spectroscopic analysis in astronomy and who discovered the red shift (1824-1910) -11064662 18 n 02 Hughes 0 Charles_Evans_Hughes 0 001 @i 09916788 n 0000 | United States jurist who served as chief justice of the United States Supreme Court (1862-1948) -11064834 18 n 03 Hughes 1 Howard_Hughes 0 Howard_Robard_Hughes 0 003 @i 10204177 n 0000 @i 09826204 n 0000 @i 10088390 n 0000 | United States industrialist who was an aviator and a film producer; during the last years of his life he was a total recluse (1905-1976) -11065101 18 n 03 Hughes 2 Langston_Hughes 0 James_Langston_Hughes 0 001 @i 10794014 n 0000 | United States writer (1902-1967) -11065229 18 n 03 Hughes 3 Ted_Hughes 0 Edward_James_Hughes 0 001 @i 10444194 n 0000 | English poet (born in 1930) -11065345 18 n 03 Hugo 0 Victor_Hugo 0 Victor-Marie_Hugo 0 003 @i 10444194 n 0000 @i 10363573 n 0000 @i 10030277 n 0000 | French poet and novelist and dramatist; leader of the romantic movement in France (1802-1885) -11065562 18 n 02 Hull 0 Cordell_Hull 0 001 @i 10013927 n 0000 | United States diplomat who did the groundwork for creating the United Nations (1871-1955) -11065718 18 n 02 Hull 1 Isaac_Hull 0 001 @i 10347593 n 0000 | United States naval officer who commanded the `Constitution' during the War of 1812 and won a series of brilliant victories against the British (1773-1843) -11065938 18 n 03 Humboldt 0 Baron_Alexander_von_Humboldt 0 Baron_Friedrich_Heinrich_Alexander_von_Humboldt 0 001 @i 10346514 n 0000 | German naturalist who explored Central and South America and provided a comprehensive description of the physical universe (1769-1859) -11066209 18 n 03 Humboldt 1 Baron_Wilhelm_von_Humboldt 0 Baron_Karl_Wilhelm_von_Humboldt 0 001 @i 10423225 n 0000 | German philologist noted for his studies of the relation between language and culture (1767-1835) -11066425 18 n 02 Hume 0 David_Hume 0 001 @i 10423589 n 0000 | Scottish philosopher whose sceptical philosophy restricted human knowledge to that which can be perceived by the senses (1711-1776) -11066621 18 n 02 Humperdinck 0 Engelbert_Humperdinck 0 001 @i 09947232 n 0000 | German composer of six operas and other incidental music (1854-1921) -11066772 18 n 03 Hunt 0 Leigh_Hunt 0 James_Henry_Leigh_Hunt 0 001 @i 10794014 n 0000 | British writer who defended the Romanticism of Keats and Shelley (1784-1859) -11066938 18 n 02 Hunt 1 Richard_Morris_Hunt 0 001 @i 09805475 n 0000 | United States architect (1827-1895) -11067047 18 n 03 Hunt 2 Holman_Hunt 0 William_Holman_Hunt 0 001 @i 10465248 n 0000 | Englishman and Pre-Raphaelite painter (1827-1910) -11067184 18 n 02 Huntington 0 Collis_Potter_Huntington 0 001 @i 09882007 n 0000 | United States railroad executive who built the western section of the first United States transcontinental railroad (1821-1900) -11067396 18 n 02 Huntington 1 Samuel_Huntington 0 001 @i 09740085 n 0000 | American revolutionary leader who signed the Declaration of Independence and was president of the Continental Congress (1731-1796) -11067604 18 n 02 Huntington 2 George_Huntington 0 001 @i 10020890 n 0000 | United States physician who first described Huntington's chorea -11067745 18 n 03 Hurok 0 Sol_Hurok 0 Solomon_Hurok 0 001 @i 10593745 n 0000 | United States impresario who was born in Russia (1888-1974) -11067885 18 n 04 Huss 0 John_Huss 0 Hus 0 Jan_Hus 0 001 @i 10515194 n 0000 | Czechoslovakian religious reformer who anticipated the Reformation; he questioned the infallibility of the Catholic Church was excommunicated (1409) for attacking the corruption of the clergy; he was burned at the stake (1372-1415) -11068196 18 n 05 Hussein 0 Husain 0 Husayn 0 ibn_Talal_Hussein 0 King_Hussein 0 001 @i 10231515 n 0000 | king of Jordan credited with creating stability at home and seeking peace with Israel (1935-1999) -11068401 18 n 06 Hussein 1 Husain 1 Husayn 1 Saddam_Hussein 0 Saddam 0 Saddam_bin_Hussein_at-Takriti 0 001 @i 09623038 n 0000 | Iraqi leader who waged war against Iran; his invasion of Kuwait led to the Gulf War (born in 1937) -11068630 18 n 02 Husserl 0 Edmund_Husserl 0 001 @i 10423589 n 0000 | German philosopher who developed phenomenology (1859-1938) -11068760 18 n 02 Huston 0 John_Huston 0 001 @i 10088390 n 0000 | United States film maker born in the United States but an Irish citizen after 1964 (1906-1987) -11068922 18 n 02 Hutchins 0 Robert_Maynard_Hutchins 0 001 @i 10045713 n 0000 | United States educator who was president of the University of Chicago (1899-1977) -11069085 18 n 02 Hutchinson 0 Anne_Hutchinson 0 001 @i 10583387 n 0000 | American colonist (born in England) who was banished from Boston for her religious views (1591-1643) -11069261 18 n 02 Hutton 0 James_Hutton 0 001 @i 10127689 n 0000 | Scottish geologist who described the processes that have shaped the surface of the earth (1726-1797) -11069430 18 n 02 Hutton 1 Sir_Leonard_Hutton 0 001 @i 09977326 n 0000 | English cricketer (1916-1990) -11069534 18 n 03 Huxley 0 Thomas_Huxley 0 Thomas_Henry_Huxley 0 003 @i 09855630 n 0000 + 03033108 a 0102 + 03033108 a 0101 | English biologist and a leading exponent of Darwin's theory of evolution (1825-1895) -11069746 18 n 03 Huxley 1 Aldous_Huxley 0 Aldous_Leonard_Huxley 0 001 @i 10794014 n 0000 | English writer; grandson of Thomas Huxley who is remembered mainly for his depiction of a scientifically controlled utopia (1894-1963) -11069974 18 n 03 Huxley 2 Andrew_Huxley 0 Andrew_Fielding_Huxley 0 001 @i 10429965 n 0000 | English physiologist who, with Alan Hodgkin, discovered the role of potassium and sodium ions in the transmission of the nerve impulse (born in 1917) -11070218 18 n 03 Huygens 0 Christiaan_Huygens 0 Christian_Huygens 0 001 @i 10428004 n 0000 | Dutch physicist who first formulated the wave theory of light (1629-1695) -11070387 18 n 01 Hypatia 0 002 @i 09818343 n 0000 @i 10423589 n 0000 | Greek philosopher and astronomer; she invented the astrolabe (370-415) -11070531 18 n 02 Ibert 0 Jacques_Francois_Antoine_Ibert 0 001 @i 09947232 n 0000 | French composer (1890-1962) -11070644 18 n 03 Ibsen 0 Henrik_Ibsen 0 Henrik_Johan_Ibsen 0 003 @i 10444194 n 0000 @i 10030277 n 0000 + 03033259 a 0101 | realistic Norwegian author who wrote plays on social and political themes (1828-1906) -11070855 18 n 02 Iglesias 0 Julio_Iglesias 0 001 @i 10599806 n 0000 | Spanish singer noted for his ballads and love songs (born in 1943) -11070994 18 n 03 Ignatius 0 Saint_Ignatius 0 St._Ignatius 0 002 @i 09857200 n 0000 @i 10547145 n 0000 | bishop of Antioch who was martyred under the Roman Emperor Trajan (died 110) -11071177 18 n 04 Ignatius_of_Loyola 0 Saint_Ignatius_of_Loyola 0 St._Ignatius_of_Loyola 0 Loyola 0 003 @i 10705615 n 0000 @i 10547145 n 0000 ;c 08083599 n 0000 | Spaniard and Roman Catholic theologian and founder of the Society of Jesus; a leading opponent of the Reformation (1491-1556) -11071467 18 n 02 Indiana 0 Robert_Indiana 0 001 @ 09812338 n 0000 | United States pop artist (born 1928) -11071574 18 n 02 Inge 0 William_Inge 0 001 @i 10030277 n 0000 | United States playwright (1913-1973) -11071677 18 n 03 Inge 1 William_Ralph_Inge 0 Gloomy_Dean 0 001 @i 09807075 n 0000 | English prelate noted for his pessimistic sermons and articles (1860-1954) -11071838 18 n 02 Ingres 0 Jean_Auguste_Dominique_Ingres 0 001 @i 10391653 n 0000 | French classical painter (1780-1867) -11071960 18 n 02 Innocent_III 0 Lotario_di_Segni 0 001 @i 10453533 n 0000 | Italian pope from 1198 to 1216 who instituted the Fourth Crusade and under whom papal intervention in European politics reached its height (1161-1216) -11072189 18 n 02 Innocent_VIII 0 Giovanni_Battista_Cibo 0 001 @i 10453533 n 0000 | Italian pope from 1484 to 1492 who was known as a nepotist and was attacked by Savonarola for his worldliness (1432-1492) -11072396 18 n 02 Innocent_XI 0 Benedetto_Odescalchi 0 001 @i 10453533 n 0000 | Italian pope from 1676 to 1689 whose papacy was marked by the struggle with Louis XIV of France over papal authority over French Catholics; known for saintliness and canonized in 1956 (1611-1689) -11072673 18 n 02 Innocent_XII 0 Antonio_Pignatelli 0 001 @i 10453533 n 0000 | Italian pope from 1691 to 1700 who abolished nepotism within the church hierarchy and was universally loved for his charity and piety -11072887 18 n 02 Ionesco 0 Eugene_Ionesco 0 001 @i 10030277 n 0000 | French dramatist (born in Romania) who was a leading exponent of the theater of the absurd (1912-1994) -11073061 18 n 03 Irenaeus 0 Saint_Irenaeus 0 St._Irenaeus 0 004 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | Greek theologian who was bishop of Lyons and an antiheretical writer; a saint and Doctor of the Church (circa 130-200) -11073324 18 n 02 Irving 0 John_Irving 0 001 @i 10794014 n 0000 | United States writer of darkly humorous novels (born in 1942) -11073453 18 n 02 Irving 1 Washington_Irving 0 001 @i 10794014 n 0000 | United States writer remembered for his stories (1783-1859) -11073586 18 n 01 Isaac 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the second patriarch; son of Abraham and Sarah who was offered by Abraham as a sacrifice to God; father of Jacob and Esau -11073795 18 n 04 Isabella 0 Queen_Isabella 0 Isabella_I 0 Isabella_the_Catholic 0 001 @i 10499355 n 0000 | the queen of Castile whose marriage to Ferdinand of Aragon in 1469 marked the beginning of the modern state of Spain; they instituted the Spanish Inquisition in 1478 and sponsored the voyages of Christopher Columbus in 1492 (1451-1504) -11074140 18 n 01 Isaiah 0 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) the first of the major Hebrew prophets (8th century BC) -11074284 18 n 03 Isherwood 0 Christopher_Isherwood 0 Christopher_William_Bradshaw_Isherwood 0 001 @i 10794014 n 0000 | United States writer (born in England) whose best known novels portray Berlin in the 1930's and who collaborated with W. H. Auden in writing plays in verse (1904-1986) -11074573 18 n 01 Ishmael 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the son of Abraham who was cast out after the birth of Isaac; considered the forebear of 12 Arabian tribes -11074769 18 n 01 Isocrates 0 001 @i 10380672 n 0000 | Athenian rhetorician and orator (436-338 BC) -11074870 18 n 01 Issachar 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) a son of Jacob and a forebear of one of the tribes of Israel -11075021 18 n 03 Ivan_III 0 Ivan_III_Vasilievich 0 Ivan_the_Great 0 001 @i 10142060 n 0000 | grand duke of Muscovy whose victories against the Tartars laid the basis for Russian unity (1440-1505) -11075219 18 n 03 Ivan_IV 0 Ivan_Iv_Vasilievich 0 Ivan_the_Terrible 0 001 @i 09987239 n 0000 | the first czar of Russia (1530-1584) -11075352 18 n 02 Ivanov 0 Lev_Ivanov 0 001 @i 09920283 n 0000 | Russian choreographer (1834-1905) -11075452 18 n 03 Ives 0 James_Ives 0 James_Merritt_Ives 0 001 @i 10266486 n 0000 | United States lithographer who (with his partner Nathaniel Currier) produced thousands of prints signed `Currier & Ives' (1824-1895) -11075670 18 n 02 Ives 1 Charles_Edward_Ives 0 001 @i 09947232 n 0000 | United States composer noted for his innovative use of polytonality (1874-1954) -11075823 18 n 03 Jackson 0 Andrew_Jackson 0 Old_Hickory 0 003 @i 10123844 n 0000 @i 10467395 n 0000 + 03075944 a 0101 | 7th president of the US; successfully defended New Orleans from the British in 1815; expanded the power of the presidency (1767-1845) -11076079 18 n 05 Jackson 1 Thomas_Jackson 0 Thomas_J._Jackson 0 Thomas_Jonathan_Jackson 0 Stonewall_Jackson 0 001 @i 10123844 n 0000 | general in the Confederate Army during the American Civil War whose troops at the first Battle of Bull Run stood like a stone wall (1824-1863) -11076359 18 n 03 Jackson 2 Helen_Hunt_Jackson 0 Helen_Maria_Fiske_Hunt_Jackson 0 001 @i 10794014 n 0000 | United States writer of romantic novels about the unjust treatment of Native Americans (1830-1885) -11076566 18 n 03 Jackson 3 Jesse_Jackson 0 Jesse_Louis_Jackson 0 002 @i 09924996 n 0000 @i 10450303 n 0000 | United States civil rights leader who led a national campaign against racial discrimination and ran for presidential nomination (born in 1941) -11076820 18 n 02 Jackson 4 Mahalia_Jackson 0 001 @i 10599806 n 0000 | United States singer who did much to popularize gospel music (1911-1972) -11076965 18 n 03 Jackson 5 Michael_Jackson 0 Michael_Joe_Jackson 0 001 @i 10599806 n 0000 | United States singer who began singing with his four brothers and later became a highly successful star during the 1980s (born in 1958) -11077195 18 n 02 Jackson 6 Glenda_Jackson 0 002 @i 09767700 n 0000 @i 10450303 n 0000 | English film actress who later became a member of British Parliament (born in 1936) -11077369 18 n 01 Jack_the_Ripper 0 001 @i 10338707 n 0000 | an unidentified English murderer in the 19th century -11077484 18 n 02 Jacob 1 Francois_Jacob 0 001 @i 09854915 n 0000 | French biochemist who (with Jacques Monod) studied regulatory processes in cells (born in 1920) -11077649 18 n 02 Jacobi 0 Karl_Gustav_Jacob_Jacobi 0 001 @i 10301261 n 0000 | German mathematician (1804-1851) -11077762 18 n 02 Jacobs 0 Aletta_Jacobs 0 001 @i 10020890 n 0000 | Dutch physician who opened the first birth control clinic in the world in Amsterdam (1854-1929) -11077927 18 n 02 Jacobs 1 Jane_Jacobs 0 001 @i 10794014 n 0000 | United States writer and critic of urban planning (born in 1916) -11078059 18 n 03 Jacobs 2 W._W._Jacobs 0 William_Wymark_Jacobs 0 001 @i 10794014 n 0000 | English writer of macabre short stories (1863-1943) -11078203 18 n 03 Jacquard 0 Joseph_M._Jacquard 0 Joseph_Marie_Jacquard 0 001 @i 10214637 n 0000 | French inventor of the Jacquard loom that could automatically weave complicated patterns (1752-1834) -11078404 18 n 04 Jaffar 0 Jafar 0 Jaffar_Umar_Thalib 0 Jafar_Umar_Thalib 0 002 @i 10702781 n 0000 ;c 00759694 n 0000 | Indonesian terrorist and Islamic militant who commands the Laskar Jihad; uses violence to achieve political ends (1965-2000) -11078650 18 n 03 Jagger 0 Mick_Jagger 0 Michael_Philip_Jagger 0 001 @i 10536416 n 0000 | English rock star (born in 1943) -11078774 18 n 03 Jakobson 0 Roman_Jakobson 0 Roman_Osipovich_Jakobson 0 001 @i 10264437 n 0000 | United States linguist (born in Russia) noted for his description of the universals of phonology (1896-1982) -11078982 18 n 05 James 0 Saint_James 0 St._James 0 Saint_James_the_Apostle 0 St._James_the_Apostle 0 003 @i 09798811 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) disciple of Jesus; brother of John; author of the Epistle of James in the New Testament -11079252 18 n 02 James 1 Henry_James 0 001 @i 10794014 n 0000 | writer who was born in the United States but lived in England (1843-1916) -11079392 18 n 02 James 2 William_James 0 002 @i 10488865 n 0000 @i 10423589 n 0000 | United States pragmatic philosopher and psychologist (1842-1910) -11079544 18 n 02 James 3 Jesse_James 0 001 @i 09977660 n 0000 | United States outlaw who fought as a Confederate soldier and later led a band of outlaws that robbed trains and banks in the West until he was murdered by a member of his own gang (1847-1882) -11079802 18 n 04 James 4 James_I 0 King_James 0 King_James_I 0 002 @i 10233445 n 0000 #m 08158460 n 0000 | the first Stuart to be king of England and Ireland from 1603 to 1625 and king of Scotland from 1567 to 1625; he was the son of Mary Queen of Scots and he succeeded Elizabeth I; he alienated the British Parliament by claiming the divine right of kings (1566-1625) -11080174 18 n 02 James 5 James_II 0 002 @i 10233445 n 0000 #m 08158460 n 0000 | the last Stuart to be king of England and Ireland and Scotland; overthrown in 1688 (1633-1701) -11080351 18 n 02 James 6 James_IV 0 002 @i 10231515 n 0000 #m 08158460 n 0000 | a Stuart king of Scotland who married a daughter of Henry VII; when England and France went to war in 1513 he invaded England and died in defeat at Flodden (1473-1513) -11080601 18 n 02 Jamison 0 Judith_Jamison 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer (born in 1944) -11080745 18 n 03 Jansen 0 Cornelis_Jansen 0 Cornelius_Jansenius 0 001 @i 10705615 n 0000 | a Dutch Roman Catholic theologian (1585-1638) -11080884 18 n 02 Jarrell 0 Randall_Jarrell 0 001 @i 10444194 n 0000 | United States poet (1914-1965) -11080987 18 n 03 Jaspers 0 Karl_Jaspers 0 Karl_Theodor_Jaspers 0 001 @i 10488016 n 0000 | German psychiatrist (1883-1969) -11081111 18 n 02 Jay 0 John_Jay 0 002 @i 10013927 n 0000 @i 09916788 n 0000 | United States diplomat and jurist who negotiated peace treaties with Britain and served as the first chief justice of the United States Supreme Court (1745-1829) -11081353 18 n 03 Jeanne_d'Arc 0 Joan_of_Arc 0 Saint_Joan 0 002 @i 10316862 n 0000 @i 10296832 n 0000 | French heroine and military leader inspired by religious visions to organize French resistance to the English and to have Charles VII crowned king; she was later tried for heresy and burned at the stake (1412-1431) -11081673 18 n 03 Jeffers 0 Robinson_Jeffers 0 John_Robinson_Jeffers 0 001 @i 10444194 n 0000 | United States poet who wrote about California (1887-1962) -11081828 18 n 03 Jefferson 0 Thomas_Jefferson 0 President_Jefferson 0 002 @i 10467395 n 0000 + 02752496 a 0101 | 3rd President of the United States; chief drafter of the Declaration of Independence; made the Louisiana Purchase in 1803 and sent out the Lewis and Clark Expedition to explore it (1743-1826) -11082135 18 n 02 Jenner 0 Edward_Jenner 0 001 @i 10020890 n 0000 | English physician who pioneered vaccination; Jenner inoculated people with small amounts of cowpox to prevent them from getting smallpox (1749-1823) -11082353 18 n 02 Jenny 0 William_Le_Baron_Jenny 0 001 @i 09805475 n 0000 | United States architect who designed the first skyscraper in which a metal skeleton was used (1832-1907) -11082535 18 n 02 Jensen 0 Johannes_Vilhelm_Jensen 0 001 @i 10794014 n 0000 | modernistic Danish writer (1873-1950) -11082652 18 n 02 Jeroboam 0 Jeroboam_I 0 002 @i 10231515 n 0000 ;c 06449735 n 0000 | (Old Testament) first king of the northern kingdom of Israel who led Israel into sin (10th century BC) -11082842 18 n 01 Jeremiah 0 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) an Israelite prophet who is remembered for his angry lamentations (jeremiads) about the wickedness of his people (circa 626-587 BC) -11083064 18 n 06 Jerome 0 Saint_Jerome 0 St._Jerome 0 Hieronymus 0 Eusebius_Hieronymus 0 Eusebius_Sophronius_Hieronymus 0 005 @i 10705615 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) one of the great Fathers of the early Christian Church whose major work was his translation of the Scriptures from Hebrew and Greek into Latin (which became the Vulgate); a saint and Doctor of the Church (347-420) -11083527 18 n 03 Jespersen 0 Otto_Jespersen 0 Jens_Otto_Harry_Jespersen 0 001 @i 10264437 n 0000 | Danish linguist (1860-1943) -11083656 18 n 0a Jesus 0 Jesus_of_Nazareth 0 the_Nazarene 0 Jesus_Christ 0 Christ 0 Savior 1 Saviour 1 Good_Shepherd 0 Redeemer 0 Deliverer 3 009 @i 09537144 n 0000 @i 09681351 n 0000 @i 10483890 n 0000 + 02551602 v 0a01 + 02551602 v 0902 + 00411353 a 0502 + 00411009 a 0501 + 02952275 a 0501 ~i 11084110 n 0000 | a teacher and prophet born in Bethlehem and active in Nazareth; his life and sermons form the basis for Christianity (circa 4 BC - AD 29) -11084110 18 n 01 El_Nino 0 002 @i 11083656 n 0000 ;c 06966825 n 0000 | the Christ child -11084200 18 n 02 Jevons 0 William_Stanley_Jevons 0 002 @i 10043643 n 0000 @i 10269785 n 0000 | English economist and logician who contributed to the development of the theory of marginal utility (1835-1882) -11084409 18 n 02 Jewison 0 Norman_Jewison 0 001 @i 10088390 n 0000 | Canadian filmmaker (born in 1926) -11084514 18 n 01 Jezebel 1 002 @i 10499857 n 0000 @i 09681973 n 0000 | wife of Ahab who was king of Israel; according to the Old Testament she was a cruel immoral queen who fostered the worship of Baal and tried to kill Elijah and other prophets of Israel (9th century BC) -11084789 18 n 02 Jimenez 0 Juan_Ramon_Jimenez 0 001 @i 10444194 n 0000 | Spanish lyric poet (1881-1958) -11084895 18 n 02 Jimenez_de_Cisneros 0 Francisco_Jimenez_de_Cisneros 0 002 @i 09807075 n 0000 @i 10142537 n 0000 | prelate who was the confessor of Isabella I and who was later appointed Grand Inquisitor (1436-1517) -11085113 18 n 02 Jinnah 0 Muhammad_Ali_Jinnah 0 001 @i 10650162 n 0000 | Indian statesman who was the founder of Pakistan as a Muslim state (1876-1948) -11085267 18 n 02 Joachim 0 Joseph_Joachim 0 002 @i 10754578 n 0000 @i 09947232 n 0000 | Hungarian violinist and composer (1831-1907) -11085402 18 n 01 Job 0 001 @i 10325013 n 0000 | a Jewish hero in the Old Testament who maintained his faith in God in spite of afflictions that tested him -11085559 18 n 01 Joel 0 001 @i 10483890 n 0000 | a Hebrew minor prophet -11085633 18 n 02 Joffre 0 Joseph_Jacques_Cesaire_Joffre 0 001 @i 10086821 n 0000 | French field marshal who commanded the Allied armies in France during World War II (1852-1931) -11085813 18 n 02 Joffrey 0 Robert_Joffrey 0 001 @i 09920283 n 0000 | United States choreographer (1930-1988) -11085924 18 n 07 John 0 Saint_John 0 St._John 0 Saint_John_the_Apostle 0 St._John_the_Apostle 0 John_the_Evangelist 0 John_the_Divine 0 004 @i 09798811 n 0000 @i 10067305 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) disciple of Jesus; traditionally said to be the author of the 4th Gospel and three epistles and the book of Revelation -11086279 18 n 03 John 2 King_John 0 John_Lackland 0 002 @i 10233445 n 0000 #m 08156685 n 0000 | youngest son of Henry II; King of England from 1199 to 1216; succeeded to the throne on the death of his brother Richard I; lost his French possessions; in 1215 John was compelled by the barons to sign the Magna Carta (1167-1216) -11086607 18 n 02 John_XXIII 0 Angelo_Guiseppe_Roncalli 0 001 @i 10453533 n 0000 | Italian pope from 1958 to 1963 who convoked the Second Vatican Council (1881-1963) -11086774 18 n 02 John_Chrysostom 0 St._John_Chrysostom 0 006 @i 10705615 n 0000 @i 10464178 n 0000 @i 09921792 n 0000 @i 10547145 n 0000 @i 10022111 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a Church Father who was a great preacher and bishop of Constantinople; a saint and Doctor of the Church (347-407) -11087091 18 n 02 John_of_Gaunt 0 Duke_of_Lancaster 0 001 @i 10038620 n 0000 | the fourth son of Edward III who was the effective ruler of England during the close of his father's reign and during the minority of Richard II; his son was Henry Bolingbroke (1340-1399) -11087359 18 n 02 John_the_Baptist 0 St._John_the_Baptist 0 003 @i 10172448 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) a preacher and hermit and forerunner of Jesus (whom he baptized); was beheaded by Herod at the request of Salome -11087612 18 n 02 John_Paul_I 0 Albino_Luciano 0 001 @i 10453533 n 0000 | the first Pope to assume a double name; he reigned for only 34 days (1912-1978) -11087767 18 n 02 John_Paul_II 0 Karol_Wojtyla 0 001 @i 10453533 n 0000 | the first Pope born in Poland; the first Pope not born in Italy in 450 years (1920-2005) -11087931 18 n 02 Johns 0 Jasper_Johns 0 001 @i 09812338 n 0000 | United States artist and proponent of pop art (born in 1930) -11088059 18 n 04 Johnson 0 Andrew_Johnson 0 President_Johnson 0 President_Andrew_Johnson 0 001 @i 10467395 n 0000 | 17th President of the United States; was elected vice president and succeeded Lincoln when Lincoln was assassinated; was impeached but acquitted by one vote (1808-1875) -11088346 18 n 06 Johnson 1 Lyndon_Johnson 0 Lyndon_Baines_Johnson 0 LBJ 0 President_Johnson 1 President_Lyndon_Johnson 0 001 @i 10467395 n 0000 | 36th President of the United States; was elected vice president and succeeded Kennedy when Kennedy was assassinated (1908-1973) -11088622 18 n 03 Johnson 2 Samuel_Johnson 0 Dr._Johnson 0 002 @i 10794014 n 0000 @i 10256080 n 0000 | English writer and lexicographer (1709-1784) -11088771 18 n 03 Johnston 0 J._E._Johnston 0 Joseph_Eggleston_Johnston 0 001 @i 10123844 n 0000 | Confederate general in the American Civil War; led the Confederate troops in the West (1807-1891) -11088969 18 n 04 Joliot 0 Jean-Frederic_Joliot 0 Joliot-Curie 0 Jean-Frederic_Joliot-Curie 0 001 @i 10428004 n 0000 | French nuclear physicist who was Marie Curie's assistant and who worked with Marie Curie's daughter who he married (taking the name Joliot-Curie); he and his wife discovered how to synthesize new radioactive elements (1900-1958) -11089318 18 n 02 Joliot-Curie 1 Irene_Joliot-Curie 0 001 @i 10428004 n 0000 | French physicist who (with her husband) synthesized new chemical elements (1897-1956) -11089484 18 n 04 Jolliet 0 Louis_Jolliet 0 Joliet 0 Louis_Joliet 0 001 @i 10072708 n 0000 | French explorer (with Jacques Marquette) of the upper Mississippi River valley (1645-1700) -11089669 18 n 03 Jolson 0 Al_Jolson 0 Asa_Yoelson 0 002 @i 10599806 n 0000 @i 09765278 n 0000 | United States singer (born in Russia) who appeared in the first full-length talking film (1886-1950) -11089868 18 n 01 Jonah 0 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) Jonah did not wish to become a prophet so God caused a great storm to throw him overboard from a ship; he was saved by being swallowed by a whale that vomited him out onto dry land -11090136 18 n 02 Jones 0 Daniel_Jones 0 001 @i 10426454 n 0000 | English phonetician (1881-1967) -11090235 18 n 02 Jones 1 Inigo_Jones 0 001 @i 09805475 n 0000 | one of the first great English architects and a theater designer (1573-1652) -11090378 18 n 02 Jones 2 John_Paul_Jones 0 001 @i 10347446 n 0000 | American naval commander in the American Revolution (1747-1792) -11090512 18 n 03 Jones 3 Bobby_Jones 0 Robert_Tyre_Jones 0 001 @i 10136959 n 0000 | United States golfer (1902-1971) -11090631 18 n 03 Jones 4 Casey_Jones 0 John_Luther_Jones 0 001 @i 10057714 n 0000 | United States railroad engineer who died trying to stop his train from crashing into another train; a friend wrote a famous ballad describing the incident (1864-1900) -11090884 18 n 03 Jones 5 Mother_Jones 0 Mary_Harris_Jones 0 001 @i 10242032 n 0000 | United States labor leader (born in Ireland) who helped to found the Industrial Workers of the World (1830-1930) -11091084 18 n 02 Jong 0 Erica_Jong 0 001 @i 10794014 n 0000 | United States writer (born in 1942) -11091184 18 n 03 Jonson 0 Ben_Jonson 0 Benjamin_Jonson 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | English dramatist and poet who was the first real poet laureate of England (1572-1637) -11091374 18 n 02 Joplin 0 Scott_Joplin 0 001 @i 09947232 n 0000 | United States composer who was the first creator of ragtime to write down his compositions (1868-1917) -11091545 18 n 02 Joplin 1 Janis_Joplin 0 001 @i 10599806 n 0000 | United States singer who died of a drug overdose at the height of her popularity (1943-1970) -11091706 18 n 01 Joseph 1 002 @i 09896685 n 0000 ;c 06453849 n 0000 | (New Testament) husband of Mary and (in Christian belief) the foster father of Jesus -11091863 18 n 01 Joseph 2 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the 11th son of Jacob and one of the 12 patriarchs of Israel; Jacob gave Joseph a coat of many colors, which made his brothers jealous and they sold him into slavery in Egypt -11092126 18 n 02 Joseph 3 Chief_Joseph 0 002 @i 10203298 n 0000 @i 09662804 n 0000 | leader of the Nez Perce in their retreat from United States troops (1840-1904) -11092292 18 n 03 Josephus 0 Flavius_Josephus 0 Joseph_ben_Matthias 0 003 @i 10123844 n 0000 @i 10177150 n 0000 @i 10421183 n 0000 | Jewish general who led the revolt of the Jews against the Romans and then wrote a history of those events (37-100) -11092541 18 n 01 Joshua 0 002 @i 10519494 n 0000 ;c 06449735 n 0000 | (Old Testament) Moses' successor who led the Israelites into the Promised Land; best remembered for his destruction of Jericho -11092740 18 n 02 Joule 0 James_Prescott_Joule 0 001 @i 10428004 n 0000 | English physicist who established the mechanical theory of heat and discovered the first law of thermodynamics (1818-1889) -11092938 18 n 02 Jowett 0 Benjamin_Jowett 0 002 @i 09926656 n 0000 @i 10212501 n 0000 | English classical scholar noted for his translations of Plato and Aristotle (1817-1893) -11093116 18 n 03 Joyce 0 James_Joyce 0 James_Augustine_Aloysius_Joyce 0 001 @i 10794014 n 0000 | influential Irish writer noted for his many innovations (such as stream of consciousness writing) (1882-1941) -11093325 18 n 02 Juan_Carlos 0 Juan_Carlos_Victor_Maria_de_Borbon_y_Borbon 0 001 @i 10231515 n 0000 | king of Spain since 1975 (born in 1938) -11093469 18 n 01 Judah 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) the fourth son of Jacob who was forebear of one of the tribes of Israel; one of his descendants was to be the Messiah -11093674 18 n 02 Judas 0 Judas_Iscariot 0 002 @i 09798811 n 0000 ;c 06453849 n 0000 | (New Testament) the Apostle who betrayed Jesus to his enemies for 30 pieces of silver -11093848 18 n 01 Judas_Maccabaeus 0 001 @i 09623038 n 0000 | Jewish leader of a revolt in Judea that recovered Jerusalem around 166 BC; hero of the Apocryphal books I Maccabees and II Maccabees (?-161 BC) -11094055 18 n 05 Jude 0 Saint_Jude 0 St._Jude 0 Judas 2 Thaddaeus 0 003 @i 09798811 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) supposed brother of St. James; one of the Apostles who is invoked in prayer when a situation seems hopeless -11094312 18 n 03 Julian 0 Julian_the_Apostate 0 Flavius_Claudius_Julianus 0 001 @i 10537240 n 0000 | Roman Emperor and nephew of Constantine; he restored paganism as the official religion of the Roman Empire and destroyed Christian temples but his decision was reversed after his death (331?-363) -11094611 18 n 03 Jung 0 Carl_Jung 0 Carl_Gustav_Jung 0 004 @i 10488865 n 0000 + 03033785 a 0101 -c 04677716 n 0000 -c 05675715 n 0000 | Swiss psychologist (1875-1961) -11094780 18 n 02 Junkers 0 Hugo_Junkers 0 001 @i 09615807 n 0000 | German aircraft engineer who designed the first all-metal airplane (1859-1935) -11094928 18 n 02 Jussieu 0 Antoine_Laurent_de_Jussieu 0 001 @i 09868270 n 0000 | French botanist who categorized plants into families and developed a system of plant classification (1748-1836) -11095123 18 n 03 Justinian 0 Justinian_I 0 Justinian_the_Great 0 001 @i 10053004 n 0000 | Byzantine emperor who held the eastern frontier of his empire against the Persians; codified Roman law in 529; his general Belisarius regained North Africa and Spain (483-565) -11095391 18 n 02 Juvenal 0 Decimus_Junius_Juvenalis 0 001 @i 10552742 n 0000 | Roman satirist who denounced the vice and folly of Roman society during the reign of the emperor Domitian (60-140) -11095587 18 n 02 Kachaturian 0 Aram_Kachaturian 0 001 @i 09947232 n 0000 | Armenian composer who incorporated oriental folk music (1903-1978) -11095731 18 n 02 Kafka 0 Franz_Kafka 0 001 @i 10794014 n 0000 | Czech novelist who wrote in German about a nightmarish world of isolated and troubled individuals (1883-1924) -11095907 18 n 02 Kahn 0 Louis_Isadore_Kahn 0 001 @i 09805475 n 0000 | United States architect (born in Estonia) (1901-1974) -11096033 18 n 03 Kalinin 0 Mikhail_Kalinin 0 Mikhail_Ivanovich_Kalinin 0 001 @i 10650162 n 0000 | soviet statesman and head of state of the USSR (1875-1946) -11096192 18 n 02 Kamehameha_I 0 Kamehameha_the_Great 0 001 @i 10231515 n 0000 | Hawaiian king who united the islands under his rule (1758-1819) -11096338 18 n 04 Kandinsky 0 Wassily_Kandinsky 0 Kandinski 0 Wassily_Kandinski 0 001 @i 10391653 n 0000 | Russian painter who was a pioneer of abstract art (1866-1944) -11096508 18 n 02 Kant 0 Immanuel_Kant 0 002 @i 10423589 n 0000 + 03033914 a 0101 | influential German idealist philosopher (1724-1804) -11096645 18 n 02 Karlfeldt 0 Erik_Axel_Karlfeldt 0 001 @i 10444194 n 0000 | Swedish poet whose works incorporate Swedish customs and folklore (1864-1931) -11096801 18 n 03 Karloff 0 Boris_Karloff 0 William_Henry_Pratt 0 001 @i 09765278 n 0000 | United States film actor (born in England) noted for his performances in horror films (1887-1969) -11096991 18 n 03 Karpov 0 Anatoli_Karpov 0 Anatoli_Yevgenevich_Karpov 0 001 @i 09915651 n 0000 | Russian chess master who was world champion from 1975 until 1985 when he was defeated by Gary Kasparov (born in 1951) -11097208 18 n 02 Karsavina 0 Tamara_Karsavina 0 001 @i 09989502 n 0000 | Russian dancer who danced with Nijinsky (1885-1978) -11097335 18 n 03 Kasparov 0 Gary_Kasparov 0 Gary_Weinstein 0 001 @i 09915651 n 0000 | Azerbaijani chess master who became world champion in 1985 by defeating Anatoli Karpov (born in 1963) -11097525 18 n 02 Kastler 0 Alfred_Kastler 0 001 @i 10428004 n 0000 | French physicist (1902-1984) -11097625 18 n 03 Kaufman 0 George_S._Kaufman 0 George_Simon_Kaufman 0 001 @i 10030277 n 0000 | United States playwright who collaborated with many other writers including Moss Hart (1889-1961) -11097820 18 n 03 Kaunda 0 Kenneth_Kaunda 0 Kenneth_David_Kaunda 0 001 @i 10650162 n 0000 | statesman who led Northern Rhodesia to full independence as Zambia in 1964 and served as Zambia's first president (1924-1999) -11098039 18 n 03 Kazan 0 Elia_Kazan 0 Elia_Kazanjoglous 0 001 @i 10015215 n 0000 | United States stage and screen director (born in Turkey) and believer in method acting (1909-2003) -11098223 18 n 02 Kean 0 Edmund_Kean 0 001 @i 09765278 n 0000 | English actor noted for his portrayals of Shakespeare's great tragic characters (1789-1833) -11098380 18 n 03 Keaton 0 Buster_Keaton 0 Joseph_Francis_Keaton 0 002 @i 09940146 n 0000 @i 09765278 n 0000 | United States comedian and actor in silent films noted for his acrobatic skills and deadpan face (1895-1966) -11098601 18 n 02 Keats 0 John_Keats 0 001 @i 10444194 n 0000 | Englishman and romantic poet (1795-1821) -11098707 18 n 02 Keble 0 John_Keble 0 001 @i 09927451 n 0000 | English clergyman who (with John Henry Newman and Edward Pusey) founded the Oxford movement (1792-1866) -11098876 18 n 03 Kekule 0 Friedrich_August_Kekule 0 Friedrich_August_Kekule_von_Stradonitz 0 001 @i 09913824 n 0000 | German chemist remembered for his discovery of the ring structure of benzene (1829-1896) -11099085 18 n 03 Keller 0 Helen_Keller 0 Helen_Adams_Keller 0 002 @i 10252547 n 0000 @i 10794014 n 0000 | United States lecturer and writer who was blind and deaf from the age of 19 months; Anne Sullivan taught her to read and write and speak; Helen Keller graduated from college and went on to champion the cause of blind and deaf people (1880-1968) -11099438 18 n 03 Kellogg 0 W._K._Kellogg 0 Will_Keith_Kellog 0 001 @i 10100620 n 0000 | United States food manufacturer who (with his brother) developed a breakfast cereal of crisp flakes of rolled and toasted wheat and corn; he established a company to manufacture the cereal (1860-1951) -11099729 18 n 03 Kelly 0 Gene_Kelly 0 Eugene_Curran_Kelly 0 003 @i 09989502 n 0000 @i 09920283 n 0000 @i 09765278 n 0000 | United States dancer who performed in many musical films (1912-1996) -11099923 18 n 04 Kelly 1 Grace_Kelly 0 Grace_Patricia_Kelly 0 Princess_Grace_of_Monaco 0 001 @i 09767700 n 0000 | United States film actress who retired when she married into the royal family of Monaco (1928-1982) -11100139 18 n 03 Kelly 2 Emmett_Kelly 0 Weary_Willie 0 001 @i 09930876 n 0000 | United States circus clown (1898-1979) -11100260 18 n 03 Kelvin 0 First_Baron_Kelvin 0 William_Thompson 0 001 @i 10428004 n 0000 | British physicist who invented the Kelvin scale of temperature and pioneered undersea telegraphy (1824-1907) -11100462 18 n 03 Kendall 0 Edward_Kendall 0 Edward_Calvin_Kendall 0 001 @i 09854915 n 0000 | United States biochemist who discovered cortisone (1886-1972) -11100619 18 n 02 Kendrew 0 Sir_John_Cowdery_Kendrew 0 001 @i 09855630 n 0000 | English biologist noted for studies of the molecular structure of blood components (born in 1917) -11100798 18 n 03 Kennan 0 George_F._Kennan 0 George_Frost_Kennan 0 001 @ 10013927 n 0000 | United States diplomat who recommended a policy of containment in dealing with Soviet aggression (1904-2005) -11101000 18 n 06 Kennedy 0 Jack_Kennedy 0 John_Fitzgerald_Kennedy 0 JFK 0 President_Kennedy 0 President_John_F._Kennedy 0 001 @i 10467395 n 0000 | 35th President of the United States; established the Peace Corps; assassinated in Dallas (1917-1963) -11101250 18 n 03 Kennelly 0 A._E._Kennelly 0 Arthur_Edwin_Kennelly 0 001 @i 10049017 n 0000 | United States electrical engineer noted for his work on the theory of alternating currents; independently of Oliver Heaviside he discovered the existence of an atmospheric layer that reflects radio waves back to earth (1861-1939) -11101576 18 n 02 Kent 0 Rockwell_Kent 0 001 @i 10391653 n 0000 | United States painter noted for his woodcuts (1882-1971) -11101700 18 n 02 Kenyata 0 Jomo_Kenyata 0 001 @i 10650162 n 0000 | Kenyan statesman and the first president of independent Kenya (1893-1978) -11101843 18 n 01 Keokuk 0 002 @i 10203298 n 0000 @i 09667715 n 0000 | Sauk leader who aided the United States against Black Hawk (1790-1848) -11101986 18 n 03 Kepler 0 Johannes_Kepler 0 Johan_Kepler 0 001 @i 09818343 n 0000 | German astronomer who first stated laws of planetary motion (1571-1630) -11102144 18 n 02 Kerensky 0 Aleksandr_Feodorovich_Kerensky 0 001 @i 10650162 n 0000 | Russian revolutionary who was head of state after Nicholas II abdicated but was overthrown by the Bolsheviks (1881-1970) -11102353 18 n 03 Kern 0 Jerome_Kern 0 Jerome_David_Kern 0 001 @i 09947232 n 0000 | United States composer of musical comedies (1885-1945) -11102493 18 n 03 Kerouac 0 Jack_Kerouac 0 Jean-Louis_Lebris_de_Kerouac 0 001 @i 10794014 n 0000 | United States writer who was a leading figure of the beat generation (1922-1969) -11102674 18 n 03 Kesey 0 Ken_Kesey 0 Ken_Elton_Kesey 0 001 @i 10794014 n 0000 | United States writer whose best-known novel was based on his experiences as an attendant in a mental hospital (1935-2001) -11102878 18 n 03 Kettering 0 Charles_Kettering 0 Charles_Franklin_Kettering 0 001 @i 09615807 n 0000 | United States electrical engineer who made numerous automotive improvements (including the electric starter) (1876-1958) -11103104 18 n 02 Key 0 Francis_Scott_Key 0 002 @i 10249950 n 0000 @i 10444194 n 0000 | United States lawyer and poet who wrote a poem after witnessing the British attack on Baltimore during the War of 1812; the poem was later set to music and entitled `The Star-Spangled Banner' (1779-1843) -11103397 18 n 02 Keynes 0 John_Maynard_Keynes 0 003 @i 10043643 n 0000 #m 08240966 n 0000 + 03034035 a 0101 | English economist who advocated the use of government monetary and fiscal policy to maintain full employment without inflation (1883-1946) -11103648 18 n 03 Khachaturian 0 Aram_Khachaturian 0 Aram_Ilich_Khachaturian 0 001 @i 09947232 n 0000 | Russian composer (born in Armenia) whose works are romantic and reflect his interest in folk music (1903-1978) -11103864 18 n 02 Khama 0 Sir_Seretse_Khama 0 001 @i 10650162 n 0000 | Botswanan statesman who was the first president of Botswana (1921-1980) -11104008 18 n 04 Khomeini 0 Ruholla_Khomeini 0 Ayatollah_Khomeini 0 Ayatollah_Ruholla_Khomeini 0 001 @i 10519494 n 0000 | Iranian religious leader of the Shiites; when Shah Pahlavi's regime fell Khomeini established a new constitution giving himself supreme powers (1900-1989) -11104287 18 n 03 Khrushchev 0 Nikita_Khrushchev 0 Nikita_Sergeyevich_Khrushchev 0 001 @i 10650162 n 0000 | Soviet statesman and premier who denounced Stalin (1894-1971) -11104458 18 n 03 Kidd 0 William_Kidd 0 Captain_Kidd 0 001 @i 10298912 n 0000 | Scottish sea captain who was hired to protect British shipping in the Indian Ocean and then was accused of piracy and hanged (1645-1701) -11104676 18 n 03 Kierkegaard 0 Soren_Kierkegaard 0 Soren_Aabye_Kierkegaard 0 001 @i 10423589 n 0000 | Danish philosopher who is generally considered. along with Nietzsche, to be a founder of existentialism (1813-1855) -11104896 18 n 02 Kieslowski 0 Krzysztof_Kieslowski 0 001 @i 10088390 n 0000 | Polish filmmaker who made ten films based on the Ten Commandments (1941-1996) -11105054 18 n 03 King 3 Martin_Luther_King 0 Martin_Luther_King_Jr. 0 002 @i 09927451 n 0000 @i 09924996 n 0000 | United States charismatic civil rights leader and Baptist minister who campaigned against the segregation of Blacks (1929-1968) -11105298 18 n 03 King 4 B._B._King 0 Riley_B_King 0 002 @i 10599806 n 0000 @i 10151760 n 0000 | United States guitar player and singer of the blues (born in 1925) -11105463 18 n 03 King 5 Billie_Jean_King 0 Billie_Jean_Moffitt_King 0 001 @i 10701180 n 0000 | United States woman tennis player (born in 1943) -11105609 18 n 02 Kinsey 0 Alfred_Charles_Kinsey 0 001 @i 10806222 n 0000 | United States zoologist best known for his interview studies of sexual behavior (1894-1956) -11105778 18 n 03 Kipling 0 Rudyard_Kipling 0 Joseph_Rudyard_Kipling 0 001 @i 10794014 n 0000 | English author of novels and poetry who was born in India (1865-1936) -11105945 18 n 03 Kirchhoff 0 G._R._Kirchhoff 0 Gustav_Robert_Kirchhoff 0 001 @i 10428004 n 0000 | German physicist who with Bunsen pioneered spectrum analysis and formulated two laws governing electric networks (1824-1887) -11106170 18 n 02 Kirchner 0 Ernst_Ludwig_Kirchner 0 001 @i 10391653 n 0000 | German expressionist painter (1880-1938) -11106290 18 n 03 Kissinger 0 Henry_Kissinger 0 Henry_Alfred_Kissinger 0 001 @i 10013927 n 0000 | United States diplomat who served under President Nixon and President Ford (born in 1923) -11106479 18 n 04 Kitchener 0 Herbert_Kitchener 0 Horatio_Herbert_Kitchener 0 First_Earl_Kitchener_of_Khartoum 0 001 @i 10086821 n 0000 | British field marshal (1850-1916) -11106652 18 n 02 Klaproth 0 Martin_Heinrich_Klaproth 0 001 @i 09913824 n 0000 | German chemist who pioneered analytical chemistry and discovered three new elements (1743-1817) -11106830 18 n 02 Klee 0 Paul_Klee 0 001 @i 10391653 n 0000 | Swiss painter influenced by Kandinsky (1879-1940) -11106943 18 n 03 Klein 0 Calvin_Klein 0 Calvin_Richard_Klein 0 001 @i 09972157 n 0000 | United States fashion designer noted for understated fashions (born in 1942) -11107110 18 n 02 Klein 1 Melanie_Klein 0 001 @i 09790278 n 0000 | United States psychoanalyst (born in Austria) who was the first to specialize in the psychoanalysis of small children (1882-1960) -11107308 18 n 02 Klein 2 Felix_Klein 0 001 @i 10301261 n 0000 | German mathematician who created the Klein bottle (1849-1925) -11107436 18 n 03 Kleist 0 Heinrich_von_Kleist 0 Bernd_Heinrich_Wilhelm_von_Kleist 0 001 @i 10030277 n 0000 | German dramatist whose works concern people torn between reason and emotion (1777-1811) -11107635 18 n 02 Klimt 0 Gustav_Klimt 0 001 @i 10391653 n 0000 | Austrian painter influenced by art nouveau (1862-1918) -11107757 18 n 03 Kline 0 Franz_Kline 0 Franz_Joseph_Kline 0 001 @i 10391653 n 0000 | United States abstract expressionist painter (1910-1962) -11107901 18 n 03 Klinefelter 0 Harry_F._Klinefelter 0 Harry_Fitch_Kleinfelter 0 001 @i 10020890 n 0000 | United States physician who first described the XXY-syndrome (born in 1912) -11108084 18 n 02 Klopstock 0 Friedrich_Gottlieb_Klopstock 0 001 @i 10444194 n 0000 | German poet (1724-1803) -11108195 18 n 02 Knox 0 John_Knox 0 002 @i 10705615 n 0000 @i 10177150 n 0000 | Scottish theologian who founded Presbyterianism in Scotland and wrote a history of the Reformation in Scotland (1514-1572) -11108400 18 n 02 Koch 0 Robert_Koch 0 001 @i 09831411 n 0000 | German bacteriologist who isolated the anthrax bacillus and the tubercle bacillus and the cholera bacillus (1843-1910) -11108584 18 n 02 Koestler 0 Arthur_Koestler 0 001 @i 10794014 n 0000 | British writer (born in Hungary) who wrote a novel exposing the Stalinist purges during the 1930s (1905-1983) -11108767 18 n 06 Konoe 0 Fumimaro_Konoe 0 Prince_Fumimaro_Konoe 0 Konoye 0 Fumimaro_Konoye 0 Prince_Fumimaro_Konoye 0 001 @i 10650162 n 0000 | Japanese statesman who set Japan's expansionist policies and formed an alliance with Germany and Italy (1891-1945) -11109027 18 n 03 Koopmans 0 Tjalling_Koopmans 0 Tjalling_Charles_Koopmans 0 001 @i 10043643 n 0000 | United States economist (born in the Netherlands) (1910-1985) -11109192 18 n 02 Korbut 0 Olga_Korbut 0 001 @i 10153594 n 0000 | Soviet gymnast (born in 1955) -11109289 18 n 03 Korchnoi 0 Viktor_Korchnoi 0 Viktor_Lvovich_Korchnoi 0 001 @i 09915651 n 0000 | Russian chess master (born in 1931) -11109424 18 n 03 Korda 0 Sir_Alexander_Korda 0 Sandor_Kellner 0 001 @i 10088390 n 0000 | British filmmaker (born in Hungary) (1893-1956) -11109563 18 n 03 Korzybski 0 Alfred_Korzybski 0 Alfred_Habdank_Skarbek_Korzybski 0 001 @i 10577820 n 0000 | United States semanticist (born in Poland) (1879-1950) -11109728 18 n 04 Kosciusko 0 Thaddeus_Kosciusko 0 Kosciuszko 0 Tadeusz_Andrzej_Bonawentura_Kosciuszko 0 002 @i 10407310 n 0000 @i 10622053 n 0000 | Polish patriot and soldier who fought with Americans in the American Revolution (1746-1817) -11109970 18 n 03 Koussevitzky 0 Serge_Koussevitzky 0 Sergei_Aleksandrovich_Koussevitzky 0 001 @i 09952539 n 0000 | United States conductor (born in Russia) who was noted for performing the works of contemporary composers (1874-1951) -11110205 18 n 03 Krafft-Ebing 0 Richard_von_Krafft-Ebing 0 Baron_Richard_von_Krafft-Ebing 0 001 @i 10354265 n 0000 | German neurologist noted for his studies of sexual deviance (1840-1902) -11110396 18 n 02 Krasner 0 Lee_Krasner 0 001 @i 10391653 n 0000 | United States artist remembered for her spontaneous approach to painting; she was a founder of the New York school of abstract expressionism (1908-1984) -11110617 18 n 03 Krebs 0 Hans_Adolf_Krebs 0 Sir_Hans_Adolf_Krebs 0 001 @i 09854915 n 0000 | English biochemist (born in Germany) who discovered the Krebs cycle (1900-1981) -11110791 18 n 02 Kreisler 0 Fritz_Kreisler 0 001 @i 10754578 n 0000 | United States violinist (born in Austria) (1875-1962) -11110917 18 n 03 Kroeber 0 Alfred_Kroeber 0 Alfred_Louis_Kroeber 0 001 @i 09796323 n 0000 | United States anthropologist noted for his studies of culture (1876-1960) -11111085 18 n 02 Kronecker 0 Leopold_Kronecker 0 001 @i 10301261 n 0000 | German mathematician (1823-1891) -11111194 18 n 03 Kropotkin 0 Prince_Peter_Kropotkin 0 Pyotr_Alexeyevich_Kropotkin 0 001 @i 09791816 n 0000 | Russian anarchist (1842-1921) -11111335 18 n 04 Kroto 0 Harold_Kroto 0 Harold_W._Kroto 0 Sir_Harold_Walter_Kroto 0 001 @i 09913824 n 0000 | British chemist who with Robert Curl and Richard Smalley discovered fullerenes and opened a new branch of chemistry (born in 1939) -11111577 18 n 03 Kruger 0 Oom_Paul_Kruger 0 Stephanus_Johannes_Paulus_Kruger 0 001 @i 10650162 n 0000 | Boer statesman (1825-1904) -11111710 18 n 02 Krupp 0 Friedrich_Krupp 0 001 @i 10204177 n 0000 | German industrialist who manufactured steel in Essen (1787-1826) -11111845 18 n 02 Krupp 1 Alfred_Krupp 0 001 @i 09809134 n 0000 | German arms manufacturer and son of Friedrich Krupp; his firm provided ordnance for German armies from the 1840s through World War II (1812-1887) -11112058 18 n 03 Kublai_Khan 0 Kubla_Khan 0 Kublai_Kaan 0 001 @i 10053004 n 0000 | Mongolian emperor of China and grandson of Genghis Khan who completed his grandfather's conquest of China; he establish the Yuan dynasty and built a great capital on the site of modern Beijing where he received Marco Polo (1216-1294) -11112377 18 n 02 Kubrick 0 Stanley_Kubrick 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1928) -11112488 18 n 02 Kuhn 0 Richard_Kuhn 0 001 @i 09913824 n 0000 | Austrian chemist who did research on carotenoids and vitamins (1900-1967) -11112628 18 n 03 Kuiper 0 Gerard_Kuiper 0 Gerard_Peter_Kuiper 0 001 @i 09818343 n 0000 | United States astronomer (born in the Netherlands) who studied the solar system and suggested in 1951 that there is a belt of comet-like debris at the edge of the solar system (1905-1973) -11112907 18 n 02 Kurosawa 0 Akira_Kurosawa 0 001 @i 10088390 n 0000 | Japanese filmmaker noted for blending Japanese folklore with western styles of acting (1910-1998) -11113077 18 n 03 Kutuzov 0 Mikhail_Ilarionovich_Kutuzov 0 Prince_of_Smolensk 0 001 @i 10086821 n 0000 | Russian field marshal who commanded the Russian opposition to Napoleon (1745-1813) -11113266 18 n 02 Kuznets 0 Simon_Kuznets 0 001 @i 10043643 n 0000 | United States economist (born in Russia) who developed a method for using a country's gross national product to estimate its economic growth (1901-1985) -11113489 18 n 04 Kyd 0 Kid 2 Thomas_Kyd 0 Thomas_Kid 0 001 @i 10030277 n 0000 | English dramatist (1558-1594) -11113601 18 n 02 Laban 0 Rudolph_Laban 0 001 @i 09920283 n 0000 | Hungarian choreographer who developed Labanotation (1879-1958) -11113732 18 n 02 Labrouste 0 Henri_Labrouste 0 001 @i 09805475 n 0000 | French architect who was among the first to use metal construction successfully (1801-1875) -11113898 18 n 02 Lachaise 0 Gaston_Lachaise 0 001 @i 10566072 n 0000 | United States sculptor (born in France) noted for his large nude figures (1882-1935) -11114056 18 n 04 Lafayette 0 La_Fayette 0 Marie_Joseph_Paul_Yves_Roch_Gilbert_du_Motier 0 Marquis_de_Lafayette 0 001 @i 10622053 n 0000 | French soldier who served under George Washington in the American Revolution (1757-1834) -11114285 18 n 02 Laffer 0 Arthur_Laffer 0 001 @i 10043643 n 0000 | United States economist who proposed the Laffer curve (born in 1940) -11114423 18 n 04 Laffite 0 Lafitte 0 Jean_Laffite 0 Jean_Lafitte 0 001 @i 10435367 n 0000 | French pirate who aided the United States in the War of 1812 and received an official pardon for his crimes (1780-1826) -11114637 18 n 02 La_Fontaine 0 Jean_de_La_Fontaine 0 001 @i 10794014 n 0000 | French writer who collected Aesop's fables and published them (1621-1695) -11114791 18 n 03 Lamarck 0 Jean_Baptiste_de_Lamarck 0 Chevalier_de_Lamarck 0 002 @i 10346514 n 0000 + 03013904 a 0101 | French naturalist who proposed that evolution resulted from the inheritance of acquired characteristics (1744-1829) -11115029 18 n 03 Lamb 2 Charles_Lamb 0 Elia 0 001 @i 10064405 n 0000 | English essayist (1775-1834) -11115131 18 n 03 Lambert 0 Constant_Lambert 0 Leonard_Constant_Lambert 0 002 @i 09947232 n 0000 @i 09952539 n 0000 | English composer and conductor (1905-1951) -11115293 18 n 02 Lancelot 0 Sir_Lancelot 0 002 @i 09587565 n 0000 ;c 06371734 n 0000 | (Arthurian legend) one of the knights of the Round Table; friend of King Arthur until (according to some versions of the legend) he became the lover of Arthur's wife Guinevere -11115558 18 n 03 Land 0 Din_Land 0 Edwin_Herbert_Land 0 002 @i 10214637 n 0000 @i 10204177 n 0000 | United States inventor who incorporated Polaroid film into lenses and invented the one step photographic process (1909-1991) -11115785 18 n 02 Landau 0 Lev_Davidovich_Landau 0 001 @i 10428004 n 0000 | Soviet physicist who worked on low temperature physics (1908-1968) -11115929 18 n 02 Landowska 0 Wanda_Landowska 0 001 @i 10161047 n 0000 | United States harpsichordist (born in Poland) who helped to revive modern interest in the harpsichord (1879-1959) -11116117 18 n 02 Landsteiner 0 Karl_Landsteiner 0 001 @i 10011074 n 0000 | United States pathologist (born in Austria) who discovered human blood groups (1868-1943) -11116284 18 n 02 Laney 0 Lucy_Craft_Laney 0 001 @i 10045713 n 0000 | United States educator who founded the first private school for Black students in Augusta, Georgia (1854-1933) -11116466 18 n 02 Lange 0 Dorothea_Lange 0 001 @i 10426749 n 0000 | United States photographer remembered for her portraits of rural workers during the Depression (1895-1965) -11116642 18 n 02 Langley 0 Samuel_Pierpoint_Langley 0 002 @i 09818343 n 0000 @i 10214637 n 0000 | United States astronomer and aviation pioneer who invented the bolometer and contributed to the design of early aircraft (1834-1906) -11116875 18 n 02 Langmuir 0 Irving_Langmuir 0 001 @i 09913824 n 0000 | United States chemist who studied surface chemistry and developed the gas-filled tungsten lamp and worked on high temperature electrical discharges (1881-1957) -11117108 18 n 04 Langtry 0 Lillie_Langtry 0 Jersey_Lillie 0 Emilie_Charlotte_le_Breton 0 001 @i 09767700 n 0000 | British actress and mistress of the prince who later became Edward VII (1853-1929) -11117307 18 n 03 Lao-tzu 0 Lao-tse 0 Lao-zi 0 001 @i 10423589 n 0000 | Chinese philosopher regarded as the founder of Taoism (6th century BC) -11117451 18 n 03 Laplace 0 Marquis_de_Laplace 0 Pierre_Simon_de_Laplace 0 002 @i 10301261 n 0000 @i 09818343 n 0000 | French mathematician and astronomer who formulated the nebular hypothesis concerning the origins of the solar system and who developed the theory of probability (1749-1827) -11117744 18 n 03 Lardner 0 Ring_Lardner 0 Ringgold_Wilmer_Lardner 0 002 @i 10191943 n 0000 @i 10794014 n 0000 | United States humorist and writer of satirical short stories (1885-1933) -11117931 18 n 02 La_Rochefoucauld 0 Francois_de_La_Rochefoucauld 0 001 @i 10794014 n 0000 | French writer of moralistic maxims (1613-1680) -11118072 18 n 03 Larousse 0 Pierre_Larousse 0 Pierre_Athanase_Larousse 0 001 @i 10256080 n 0000 | French lexicographer (1817-1875) -11118205 18 n 03 LaSalle 0 Sieur_de_LaSalle 0 Rene-Robert_Cavelier 0 001 @i 10072708 n 0000 | French explorer who claimed Louisiana for France (1643-1687) -11118362 18 n 03 Lasso 0 Orlando_di_Lasso 0 Roland_de_Lassus 0 001 @i 09947232 n 0000 | Belgian composer (1532-1594) -11118481 18 n 02 La_Tour 0 Georges_de_La_Tour 0 001 @i 10375794 n 0000 | French painter of religious works (1593-1652) -11118602 18 n 02 Latrobe 0 Benjamin_Henry_Latrobe 0 001 @i 09805475 n 0000 | United States architect (born in England) whose works include the chambers of the United States Congress and the Supreme Court; considered the first professional architect in the United States (1764-1820) -11118886 18 n 03 Lauder 1 Harry_Lauder 0 Sir_Harry_MacLennan_Lauder 0 002 @i 10599806 n 0000 @i 09940146 n 0000 | Scottish ballad singer and music hall comedian (1870-1950) -11119061 18 n 02 Laughton 0 Charles_Laughton 0 001 @i 09765278 n 0000 | United States film actor (born in England) (1899-1962) -11119190 18 n 03 Laurel 0 Stan_Laurel 0 Arthur_Stanley_Jefferson_Laurel 0 002 @i 09940146 n 0000 #m 08181375 n 0000 | United States slapstick comedian (born in England) who played the scatterbrained and often tearful member of the Laurel and Hardy duo who made many films (1890-1965) -11119476 18 n 02 Laurens 0 Henry_Laurens 0 001 @i 09740085 n 0000 | leader of the American Revolution and president of the Continental Congress (1724-1792) -11119634 18 n 03 Laver 0 Rod_Laver 0 Rodney_George_Laver 0 001 @i 10701180 n 0000 | Australian tennis player who in 1962 was the second man to win the Australian and French and English and United States singles titles in the same year; in 1969 he repeated this feat (born in 1938) -11119917 18 n 03 Lavoisier 0 Antoine_Lavoisier 0 Antoine_Laurent_Lavoisier 0 001 @i 09913824 n 0000 | French chemist known as the father of modern chemistry; discovered oxygen and disproved the theory of phlogiston (1743-1794) -11120146 18 n 03 Lawrence 0 D._H._Lawrence 0 David_Herbert_Lawrence 0 001 @i 10794014 n 0000 | English novelist and poet and essayist whose work condemned industrial society and explored sexual relationships (1885-1930) -11120368 18 n 03 Lawrence 1 E._O._Lawrence 0 Ernest_Orlando_Lawrence 0 001 @i 10364643 n 0000 | United States physicist who developed the cyclotron (1901-1958) -11120530 18 n 02 Lawrence 2 Gertrude_Lawrence 0 001 @i 09767700 n 0000 | English actress (1898-1952) -11120633 18 n 02 Lawrence 3 Sir_Thomas_Lawrence 0 001 @i 10391653 n 0000 | English portrait painter remembered for the series of portraits of the leaders of the alliance against Napoleon (1769-1830) -11120834 18 n 04 Lawrence 4 T._E._Lawrence 0 Thomas_Edward_Lawrence 0 Lawrence_of_Arabia 0 002 @i 10622053 n 0000 @i 10794014 n 0000 | Welsh soldier who from 1916 to 1918 organized the Arab revolt against the Turks; he later wrote an account of his adventures (1888-1935) -11121108 18 n 04 Lawrence 5 Saint_Lawrence 0 St._Lawrence 0 Laurentius 0 003 @i 10296832 n 0000 @i 10547145 n 0000 ;c 06226057 n 0000 | Roman martyr; supposedly Lawrence was ordered by the police to give up the church's treasure and when he responded by presenting the poor people of Rome he was roasted to death on a gridiron (died in 258) -11121451 18 n 03 Leacock 0 Stephen_Leacock 0 Stephen_Butler_Leacock 0 002 @i 10043643 n 0000 @i 10191943 n 0000 | Canadian economist best remembered for his humorous writings (1869-1944) -11121640 18 n 03 Leakey 0 Louis_Leakey 0 Louis_Seymour_Bazett_Leakey 0 002 @i 10394786 n 0000 @i 09796323 n 0000 | English paleontologist whose account of fossil discoveries in Tanzania changed theories of human evolution (1903-1972) -11121876 18 n 03 Leakey 1 Mary_Leakey 0 Mary_Douglas_Leakey 0 002 @i 10394786 n 0000 @i 09796323 n 0000 | English paleontologist (the wife of Louis Leakey) who discovered the Zinjanthropus skull that was 1,750,000 years old (1913-1996) -11122114 18 n 03 Leakey 2 Richard_Leakey 0 Richard_Erskine_Leakey 0 002 @i 10394786 n 0000 @i 09796323 n 0000 | English paleontologist (son of Louis Leakey and Mary Leakey) who continued the work of his parents; he was appointed director of a wildlife preserve in Kenya but resigned under political pressure (born in 1944) -11122439 18 n 02 Lear 0 Edward_Lear 0 002 @i 09812338 n 0000 @i 10191943 n 0000 | British artist and writer of nonsense verse (1812-1888) -11122579 18 n 04 Leary 0 Tim_Leary 0 Timothy_Leary 0 Timothy_Francis_Leary 0 001 @i 10488865 n 0000 | United States psychologist who experimented with psychoactive drugs (including LSD) and became a well-known advocate of their use (1920-1996) -11122825 18 n 03 le_Carre 0 John_le_Carre 0 David_John_Moore_Cornwell 0 001 @i 10794014 n 0000 | English writer of novels of espionage (born in 1931) -11122977 18 n 02 le_Chatelier 0 Henry_le_Chatelier 0 001 @i 09913824 n 0000 | French chemist who formulated Le Chatelier's principle (1850-1936) -11123124 18 n 02 Le_Corbusier 0 Charles_Edouard_Jeanneret 0 001 @i 09805475 n 0000 | French architect (born in Switzerland) (1887-1965) -11123262 18 n 03 Ledbetter 0 Huddie_Leadbetter 0 Leadbelly 0 003 @i 10599806 n 0000 @i 10151760 n 0000 @i 09947232 n 0000 | United States folk singer and composer (1885-1949) -11123439 18 n 01 Le_Duc_Tho 0 001 @i 10013927 n 0000 | Vietnamese diplomat who negotiated with Henry Kissinger to end the war in Vietnam (1911-1990) -11123590 18 n 03 Lee 0 Robert_E._Lee 0 Robert_Edward_Lee 0 001 @i 10123844 n 0000 | American general who led the Confederate Armies in the American Civil War (1807-1870) -11123762 18 n 03 Lee 1 Henry_Lee 0 Lighthorse_Harry_Lee 0 001 @i 10622053 n 0000 | soldier of the American Revolution (1756-1818) -11123894 18 n 02 Lee 2 Richard_Henry_Lee 0 001 @i 09740085 n 0000 | leader of the American Revolution who proposed the resolution calling for independence of the American Colonies (1732-1794) -11124088 18 n 02 Lee 3 Tsung_Dao_Lee 0 001 @i 10364643 n 0000 | United States physicist (born in China) who collaborated with Yang Chen Ning in disproving the principle of conservation of parity (born in 1926) -11124300 18 n 03 Lee 4 Bruce_Lee 0 Lee_Yuen_Kam 0 001 @i 09765278 n 0000 | United States actor who was an expert in kung fu and starred in martial arts films (1941-1973) -11124472 18 n 03 Lee 5 Gypsy_Rose_Lee 0 Rose_Louise_Hovick 0 001 @i 10664340 n 0000 | United States striptease artist who became famous on Broadway in the 1930s (1914-1970) -11124647 18 n 03 Lee 6 Spike_Lee 0 Shelton_Jackson_Lee 0 001 @i 10088390 n 0000 | United States filmmaker whose works explore the richness of black culture in America (born in 1957) -11124831 18 n 02 Le_Gallienne 0 Eva_Le_Gallienne 0 001 @i 09767700 n 0000 | United States actress (born in England) (1899-1991) -11124961 18 n 02 Leger 0 Fernand_Leger 0 001 @i 10391653 n 0000 | French painter who was an early cubist (1881-1955) -11125080 18 n 02 Lehar 0 Franz_Lehar 0 001 @i 09947232 n 0000 | Hungarian composer of light operas (1870-1948) -11125193 18 n 04 Leibniz 0 Leibnitz 0 Gottfried_Wilhelm_Leibniz 0 Gottfried_Wilhelm_Leibnitz 0 004 @i 10301261 n 0000 @i 10423589 n 0000 + 03034283 a 0202 + 03034283 a 0101 | German philosopher and mathematician who thought of the universe as consisting of independent monads and who devised a system of the calculus independent of Newton (1646-1716) -11125546 18 n 02 Leigh 0 Vivien_Leigh 0 001 @i 09767700 n 0000 | English film actress (1913-1967) -11125646 18 n 03 Lemaitre 0 Georges_Henri_Lemaitre 0 Edouard_Lemaitre 0 001 @i 09819667 n 0000 | Belgian cosmologist who proposed the big-bang theory of the origin of the universe (1894-1966) -11125840 18 n 03 Lemmon 0 Jack_Lemmon 0 John_Uhler 0 001 @i 09765278 n 0000 | United States film actor (1925-2001) -11125957 18 n 02 Lenard 0 Philipp_Lenard 0 001 @i 10428004 n 0000 | German physicist who studied cathode rays (1862-1947) -11126081 18 n 02 Lendl 0 Ivan_Lendl 0 001 @i 10701180 n 0000 | United States tennis player (born in Czechoslovakia) who won several singles championships; in 1992 he became a United States citizen (born in 1960) -11126295 18 n 03 L'Enfant 0 Charles_L'Enfant 0 Pierre_Charles_L'Enfant 0 001 @i 09805475 n 0000 | United States architect (born in France) who laid out the city plan for Washington (1754-1825) -11126490 18 n 07 Lenin 0 Vladimir_Lenin 0 Nikolai_Lenin 0 Vladimir_Ilyich_Lenin 0 Vladimir_Ilich_Lenin 0 Vladimir_Ilyich_Ulyanov 0 Vladimir_Ilich_Ulyanov 0 001 @i 09863936 n 0000 | Russian founder of the Bolsheviks and leader of the Russian Revolution and first head of the USSR (1870-1924) -11126783 18 n 02 Lennon 0 John_Lennon 0 003 @i 10536416 n 0000 @i 10624540 n 0000 #m 08369920 n 0000 | English rock star and guitarist and songwriter who with Paul McCartney wrote most of the music for the Beatles (1940-1980) -11127011 18 n 02 Le_Notre 0 Andre_Le_Notre 0 001 @i 10245863 n 0000 | French landscape gardener who designed many formal gardens including the parks of Versailles (1613-1700) -11127188 18 n 03 Leo_I 0 St._Leo_I 0 Leo_the_Great 0 002 @i 10453533 n 0000 @i 10547145 n 0000 | Italian pope from 440 to 461 who extended the authority of the papacy to the west and persuaded Attila not to attack Rome (440-461) -11127419 18 n 01 Leo_III 0 001 @i 10453533 n 0000 | Italian pope from 795 to 816 who in 800 crowned Charlemagne emperor of the Romans (750-816) -11127565 18 n 03 Leo_IX 0 Bruno 2 Bruno_of_Toul 0 001 @i 10453533 n 0000 | German pope from 1049 to 1054 whose papacy was the beginning of papal reforms in the 11th century (1002-1054) -11127752 18 n 02 Leo_X 0 Giovanni_de'Medici 0 001 @i 10453533 n 0000 | son of Lorenzo de'Medici and pope from 1513 to 1521 who excommunicated Martin Luther and who in 1521 bestowed on Henry VIII the title of Defender of the Faith (1475-1521) -11127996 18 n 03 Leo_XIII 0 Gioacchino_Pecci 0 Giovanni_Vincenzo_Pecci 0 001 @i 10453533 n 0000 | Italian pope from 1878 to 1903 who was interested in the advancement of learning and who opened the Vatican secret archives to all scholars -11128236 18 n 04 Leonard 0 Elmore_Leonard 0 Elmore_John_Leonard 0 Dutch_Leonard 0 001 @i 10794014 n 0000 | United States writer of thrillers (born in 1925) -11128394 18 n 03 Leonardo 0 Leonardo_da_Vinci 0 da_Vinci 0 004 @i 10375794 n 0000 @i 10566072 n 0000 @i 09615807 n 0000 @i 09805475 n 0000 | Italian painter and sculptor and engineer and scientist and architect; the most versatile genius of the Italian Renaissance (1452-1519) -11128673 18 n 01 Leonidas 0 001 @i 10231515 n 0000 | king of Sparta and hero of the battle of Thermopylae where he was killed by the Persians (died in 480 BC) -11128834 18 n 02 Leontief 0 Wassily_Leontief 0 001 @i 10043643 n 0000 | United States economist (born in Russia) who devised an input-output method of economic analysis (1906-1999) -11129017 18 n 02 Lermontov 0 Mikhail_Yurievich_Lermontov 0 001 @i 10794014 n 0000 | Russian writer (1814-1841) -11129130 18 n 02 Lerner 0 Alan_Jay_Lerner 0 001 @i 10277912 n 0000 | United States lyricist who collaborated on musicals with Frederick Loewe (1918-1986) -11129286 18 n 03 Lesseps 0 Ferdinand_de_Lesseps 0 Vicomte_Ferdinand_Marie_de_Lesseps 0 001 @i 10013927 n 0000 | French diplomat who supervised the construction of the Suez Canal (1805-1894) -11129478 18 n 03 Lessing 0 Doris_Lessing 0 Doris_May_Lessing 0 001 @i 10794014 n 0000 | English author of novels and short stories who grew up in Rhodesia (now Zimbabwe) (born in 1919) -11129665 18 n 02 Lessing 1 Gotthold_Ephraim_Lessing 0 001 @i 10030277 n 0000 | German playwright and leader of the Enlightenment (1729-1781) -11129808 18 n 04 Leuwenhoek 0 Leeuwenhoek 0 Anton_van_Leuwenhoek 0 Anton_van_Leeuwenhoek 0 001 @i 10313872 n 0000 | Dutch pioneer microscopist who was among the first to recognize cells in animals and who gave the first accurate descriptions of microbes and spermatozoa and blood corpuscles (1632-1723) -11130113 18 n 02 Levi-Strauss 0 Claude_Levi-Strauss 0 001 @i 09796323 n 0000 | French cultural anthropologist who promoted structural analysis of social systems (born in 1908) -11130291 18 n 03 Lewis 0 C._S._Lewis 0 Clive_Staples_Lewis 0 001 @i 10794014 n 0000 | English critic and novelist; author of theological works and of books for children (1898-1963) -11130474 18 n 03 Lewis 1 Sinclair_Lewis 0 Harry_Sinclair_Lewis 0 001 @i 10794014 n 0000 | United States novelist who satirized middle-class America in his novel Main Street (1885-1951) -11130661 18 n 03 Lewis 2 John_L._Lewis 0 John_Llewelly_Lewis 0 001 @i 10242032 n 0000 | United States labor leader who was president of the United Mine Workers of America from 1920 to 1960 and president of the Congress of Industrial Organizations from 1935 to 1940 (1880-1969) -11130940 18 n 02 Lewis 3 Meriwether_Lewis 0 001 @i 10072708 n 0000 | United States explorer and soldier who lead led an expedition from St. Louis to the mouth of the Columbia River (1774-1809) -11131135 18 n 03 Lewis 4 Carl_Lewis 0 Frederick_Carleton_Lewis 0 002 @i 10641413 n 0000 @i 10226803 n 0000 | United States athlete who won gold medals at the Olympics for his skill in sprinting and jumping (born in 1961) -11131358 18 n 02 Lewis 5 Jerry_Lee_Lewis 0 002 @i 10536416 n 0000 @i 10430665 n 0000 | United States rock star singer and pianist (born in 1935) -11131505 18 n 02 Libby 0 Willard_Frank_Libby 0 001 @i 09913824 n 0000 | United States chemist who developed a method of radiocarbon dating (1908-1980) -11131658 18 n 02 Lichtenstein 0 Roy_Lichtenstein 0 001 @i 10391653 n 0000 | United States painter who was a leading exponent of pop art (1923-1997) -11131808 18 n 03 Lie 0 Trygve_Lie 0 Trygve_Halvden_Lie 0 001 @i 10013927 n 0000 | Norwegian diplomat who was the first Secretary General of the United Nations (1896-1968) -11131981 18 n 02 Liliuokalani 0 Lydia_Kamekeha_Paki_Liliuokalani 0 001 @i 10499355 n 0000 | queen of the Hawaiian islands (1838-1917) -11132117 18 n 03 Lillie 0 Beatrice_Lillie 0 Lady_Peel 0 001 @i 09767700 n 0000 | British actress (born in Canada) (1898-1989) -11132245 18 n 02 Lin 0 Maya_Lin 0 002 @i 10566072 n 0000 @i 09805475 n 0000 | United States sculptor and architect whose public works include the memorial to veterans of the Vietnam War in Washington (born in 1959) -11132462 18 n 04 Lincoln 0 Abraham_Lincoln 0 President_Lincoln 0 President_Abraham_Lincoln 0 003 @i 10249950 n 0000 @i 10467395 n 0000 + 03034580 a 0102 | 16th President of the United States; saved the Union during the American Civil War and emancipated the slaves; was assassinated by Booth (1809-1865) -11132768 18 n 03 Lind 0 Jenny_Lind 0 Swedish_Nightingale 0 001 @i 10625546 n 0000 | Swedish soprano who toured the United States under the management of P. T. Barnum (1820-1887) -11132948 18 n 05 Lindbergh 0 Charles_Lindbergh 0 Charles_A._Lindbergh 0 Charles_Augustus_Lindbergh 0 Lucky_Lindy 0 001 @i 09826204 n 0000 | United States aviator who in 1927 made the first solo nonstop flight across the Atlantic Ocean (1902-1974) -11133197 18 n 03 Lindsay 0 Vachel_Lindsay 0 Nicholas_Vachel_Lindsay 0 001 @i 10444194 n 0000 | United States poet who traveled the country trading his poems for room and board (1879-1931) -11133387 18 n 02 Lindsay 1 Howard_Lindsay 0 001 @i 10030277 n 0000 | United States playwright who collaborated with Russel Crouse on several musicals (1889-1931) -11133551 18 n 04 Linnaeus 0 Carolus_Linnaeus 0 Carl_von_Linne 0 Karl_Linne 0 003 @i 09868270 n 0000 + 02830010 a 0102 + 02830010 a 0101 | Swedish botanist who proposed the modern system of biological nomenclature (1707-1778) -11133778 18 n 02 Lipchitz 0 Jacques_Lipchitz 0 001 @i 10566072 n 0000 | United States sculptor (born in Lithuania) who pioneered cubist sculpture (1891-1973) -11133938 18 n 02 Lipmann 0 Fritz_Albert_Lipmann 0 001 @i 09854915 n 0000 | United States biochemist (born in Germany) noted for his studies of metabolic processes (1899-1986) -11134115 18 n 01 Li_Po 0 001 @i 10444194 n 0000 | Chinese lyric poet (700-762) -11134196 18 n 02 Lippi 0 Fra_Filippo_Lippi 0 001 @i 10375794 n 0000 | Italian painter whose works show a three-dimensional style (1406-1469) -11134339 18 n 02 Lippi 1 Filippino_Lippi 0 001 @i 10375794 n 0000 | Italian painter and son of Fra Filippo Lippi (1457-1504) -11134466 18 n 02 Lippmann 0 Gabriel_Lippmann 0 001 @i 10428004 n 0000 | French physicist who developed the first color photographic process (1845-1921) -11134620 18 n 02 Lippmann 1 Walter_Lippmann 0 001 @i 10224578 n 0000 | United States journalist (1889-1974) -11134730 18 n 02 Lipscomb 0 William_Nunn_Lipscom_Jr. 0 001 @i 09913824 n 0000 | United States chemist noted for his theories of molecular structure (born in 1919) -11134895 18 n 03 Lister 1 Joseph_Lister 0 Baron_Lister 0 001 @i 10679174 n 0000 | English surgeon who was the first to use antiseptics (1827-1912) -11135044 18 n 03 Liston 0 Sonny_Liston 0 Charles_Liston 0 001 @i 10477077 n 0000 | United States prizefighter who lost his world heavyweight championship to Cassius Clay in 1964 (1932-1970) -11135236 18 n 02 Liszt 0 Franz_Liszt 0 002 @i 10430665 n 0000 @i 09947232 n 0000 | Hungarian composer and piano virtuoso (1811-1886) -11135371 18 n 02 Littre 0 Maximilien_Paul_Emile_Littre 0 001 @i 10256080 n 0000 | French lexicographer (1801-1881) -11135488 18 n 02 Livermore 0 Mary_Ashton_Rice_Livermore 0 001 @i 10672908 n 0000 | United States suffragist (1820-1905) -11135610 18 n 02 Livingston 0 Robert_R._Livingston 0 001 @i 09740085 n 0000 | American Revolutionary leader who served in the Continental Congress and as minister to France (1746-1813) -11135797 18 n 02 Livingstone 0 David_Livingstone 0 002 @i 10322957 n 0000 @i 10072708 n 0000 | Scottish missionary and explorer who discovered the Zambezi River and Victoria Falls (1813-1873) -11135991 18 n 02 Livy 0 Titus_Livius 0 001 @i 10177150 n 0000 | Roman historian whose history of Rome filled 142 volumes (of which only 35 survive) including the earliest history of the war with Hannibal (59 BC to AD 17) -11136214 18 n 03 Lloyd 0 Harold_Lloyd 0 Harold_Clayton_Lloyd 0 001 @i 09765278 n 0000 | United States comic actor in silent films; he used physical danger as a source of comedy (1893-1971) -11136405 18 n 03 Lloyd_Webber 0 Andrew_Lloyd_Webber 0 Baron_Lloyd_Webber_of_Sydmonton 0 001 @i 09947232 n 0000 | English composer of many successful musicals (some in collaboration with Sir Tim Rice) (born in 1948) -11136622 18 n 02 Lobachevsky 0 Nikolai_Ivanovich_Lobachevsky 0 001 @i 10301261 n 0000 | Russian mathematician who independently discovered non-Euclidean geometry (1792-1856) -11136798 18 n 02 Locke 0 John_Locke 0 001 @i 10423589 n 0000 | English empiricist philosopher who believed that all knowledge is derived from sensory experience (1632-1704) -11136973 18 n 03 Lodge 0 Sir_Oliver_Lodge 0 Sir_Oliver_Joseph_Lodge 0 001 @i 10428004 n 0000 | English physicist who studied electromagnetic radiation and was a pioneer of radiotelegraphy (1851-1940) -11137175 18 n 02 Loeb 0 Jacques_Loeb 0 001 @i 10429965 n 0000 | United States physiologist (born in Germany) who did research on parthenogenesis (1859-1924) -11137334 18 n 02 Loewe 0 Frederick_Loewe 0 001 @i 09947232 n 0000 | United States composer (born in Austria) who collaborated with Lerner on several musicals (1901-1987) -11137506 18 n 02 Loewi 0 Otto_Loewi 0 001 @i 10421753 n 0000 | United States pharmacologist (born in Germany) who was the first to show that acetylcholine is produced at the junction between a parasympathetic nerve and a muscle (1873-1961) -11137748 18 n 03 London 0 Jack_London 0 John_Griffith_Chaney 0 001 @i 10794014 n 0000 | United States writer of novels based on experiences in the Klondike gold rush (1876-1916) -11137928 18 n 02 Longfellow 0 Henry_Wadsworth_Longfellow 0 001 @i 10444194 n 0000 | United States poet remembered for his long narrative poems (1807-1882) -11138085 18 n 02 Loos 0 Adolf_Loos 0 001 @i 09805475 n 0000 | Austrian architect (1870-1933) -11138180 18 n 03 Loren 0 Sophia_Loren 0 Sofia_Scicolone 0 001 @i 09767700 n 0000 | Italian film actress (born in 1934) -11138301 18 n 02 Lorentz 0 Hendrik_Antoon_Lorentz 0 001 @i 10428004 n 0000 | Dutch physicist noted for work on electromagnetic theory (1853-1928) -11138449 18 n 03 Lorenz 0 Konrad_Lorenz 0 Konrad_Zacharias_Lorenz 0 001 @i 10806222 n 0000 | Austrian zoologist who studied the behavior of birds and emphasized the importance of innate as opposed to learned behaviors (1903-1989) -11138681 18 n 02 Lorenzo_de'Medici 0 Lorenzo_the_Magnificent 0 002 @i 10650162 n 0000 @i 10557854 n 0000 | Italian statesman and scholar who supported many artists and humanists including Michelangelo and Leonardo and Botticelli (1449-1492) -11138924 18 n 03 Lorre 0 Peter_Lorre 0 Laszlo_Lowestein 0 001 @i 09765278 n 0000 | United States actor (born in Hungary) noted for playing sinister roles (1904-1964) -11139092 18 n 02 Louis_I 0 Louis_the_Pious 0 001 @i 10234340 n 0000 | third son of Charlemagne and king of France and Germany and Holy Roman Emperor (778-840) -11139253 18 n 04 Louis_II 0 Louis_le_Begue 0 Louis_the_Stammerer 0 Louis_the_German 0 001 @i 10234340 n 0000 | king of France and Germany (846-879) -11139403 18 n 01 Louis_III 0 001 @i 10234340 n 0000 | son of Louis II and king of the France and Germany (863-882) -11139520 18 n 02 Louis_IV 0 Louis_d'Outremer 0 001 @i 10234340 n 0000 | king of France (921-954) -11139619 18 n 02 Louis_V 0 Louis_le_Faineant 0 001 @i 10234340 n 0000 | the last Carolingian king of France (967-987) -11139739 18 n 04 Louis_VI 0 Louis_the_Far 0 Louis_the_Wideawake 0 Louis_the_Bruiser 0 001 @i 10234340 n 0000 | king of France whose military victories consolidated his reign (1081-1137) -11139927 18 n 01 Louis_VII 0 001 @i 10234340 n 0000 | king of France who led the unsuccessful Second Crusade and fought frequent wars with Henry II of England (1120-1180) -11140100 18 n 01 Louis_VIII 0 001 @i 10234340 n 0000 | king of France who increased the power of the Crown over the feudal lords (1187-1226) -11140243 18 n 03 Louis_IX 0 Saint_Louis 0 St._Louis 0 002 @i 10234340 n 0000 @i 10547145 n 0000 | king of France and son of Louis VIII; he led two unsuccessful Crusades; considered an ideal medieval king (1214-1270) -11140461 18 n 03 Louis_X 0 Louis_le_Hutin 0 Louis_the_Quarreller 0 001 @i 10234340 n 0000 | king of France (1289-1316) -11140582 18 n 01 Louis_XI 0 001 @i 10234340 n 0000 | king of France who put down an alliance of unruly nobles and unified France except for Brittany (1423-1483) -11140745 18 n 01 Louis_XII 0 001 @i 10234340 n 0000 | king of France who was popular with his subjects (1462-1515) -11140862 18 n 01 Louis_XIII 0 001 @i 10234340 n 0000 | king of France from 1610 to 1643 who relied heavily on the advice of Cardinal Richelieu (1601-1643) -11141019 18 n 03 Louis_XIV 0 Sun_King 0 Louis_the_Great 0 001 @i 10234340 n 0000 | king of France from 1643 to 1715; his long reign was marked by the expansion of French influence in Europe and by the magnificence of his court and the Palace of Versailles (1638-1715) -11141289 18 n 01 Louis_XV 0 001 @i 10234340 n 0000 | grandson of Louis XIV and king of France from 1715 to 1774 who led France into the War of the Austrian Succession and the Seven Years' War (1710-1774) -11141495 18 n 01 Louis_XVI 0 001 @i 10234340 n 0000 | king of France from 1774 to 1792; his failure to grant reforms led to the French Revolution; he and his queen (Marie Antoinette) were guillotined (1754-1793) -11141709 18 n 03 Louis 0 Joe_Louis 0 Joseph_Louis_Barrow 0 001 @i 10477077 n 0000 | United States prizefighter who was world heavyweight champion for 12 years (1914-1981) -11141882 18 n 02 Lovelace 0 Richard_Lovelace 0 001 @i 10444194 n 0000 | English poet (1618-1857) -11141981 18 n 03 Lovell 0 Sir_Bernard_Lovell 0 Sir_Alfred_Charles_Bernard_Lovell 0 001 @i 09818343 n 0000 | English astronomer who pioneered radio astronomy (born in 1913) -11142155 18 n 04 Low 0 David_Low 0 Sir_David_Low 0 Sir_David_Alexander_Cecil_Low 0 001 @i 09898346 n 0000 | British political cartoonist (born in New Zealand) who created the character Colonel Blimp (1891-1963) -11142368 18 n 02 Lowell 0 Abbott_Lawrence_Lowell 0 001 @i 10045713 n 0000 | United States educator and president of Harvard University (1856-1943) -11142517 18 n 02 Lowell 1 Amy_Lowell 0 001 @i 10444194 n 0000 | United States poet (1874-1925) -11142614 18 n 02 Lowell 2 Percival_Lowell 0 001 @i 09818343 n 0000 | United States astronomer whose studies of Mars led him to conclude that Mars was inhabited (1855-1916) -11142788 18 n 03 Lowell 3 Robert_Lowell 0 Robert_Traill_Spence_Lowell_Jr. 0 001 @i 10444194 n 0000 | United States poet (1917-1977) -11142922 18 n 03 Lowry 0 Malcolm_Lowry 0 Clarence_Malcolm_Lowry 0 001 @i 10794014 n 0000 | English novelist (1909-1957) -11143044 18 n 03 Lowry 1 L._S._Lowry 0 Laurence_Stephen_Lowry 0 001 @i 10391653 n 0000 | English painter (1887-1976) -11143163 18 n 02 Lozier 0 Clemence_Sophia_Harned_Lozier 0 001 @i 10020890 n 0000 | United States physician who in 1863 founded a medical school for women (1813-1888) -11143331 18 n 02 Lubitsch 0 Ernst_Lubitsch 0 001 @i 10088390 n 0000 | German filmmaker of sophisticated comedies (1892-1947) -11143458 18 n 02 Lucas 0 George_Lucas 0 002 @i 10088390 n 0000 @i 10564400 n 0000 | United States screenwriter and filmmaker (born in 1944) -11143600 18 n 03 Lucullus 0 Licinius_Lucullus 0 Lucius_Licinius_Lucullus 0 002 @i 10123844 n 0000 + 02025274 a 0102 | Roman general famous for self-indulgence and giving lavish banquets (circa 110-57 BC) -11143806 18 n 02 Luce 0 Clare_Booth_Luce 0 001 @i 10030277 n 0000 | United States playwright and public official (1902-1987) -11143933 18 n 03 Luce 1 Henry_Luce 0 Henry_Robinson_Luce 0 001 @i 10491309 n 0000 | United States publisher of magazines (1898-1967) -11144068 18 n 02 Lucretius 0 Titus_Lucretius_Carus 0 002 @i 10423589 n 0000 @i 10444194 n 0000 | Roman philosopher and poet; in a long didactic poem he tried to provide a scientific explanation of the universe (96-55 BC) -11144291 18 n 02 Luculus 0 Lucius_Licinius_Luculus 0 001 @i 10123844 n 0000 | Roman general famous for giving lavish banquets (110-57 BC) -11144431 18 n 03 Lugosi 0 Bela_Lugosi 0 Bela_Ferenc_Blasko 0 001 @i 09765278 n 0000 | United States film actor (born in Hungary) noted for portraying monsters (1884-1956) -11144604 18 n 03 Luke 0 Saint_Luke 0 St._Luke 0 004 @i 09799213 n 0000 @i 10067305 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) the Apostle closely associated with St. Paul and traditionally assumed to be the author of the third Gospel -11144860 18 n 04 Lully 0 Jean_Baptiste_Lully 0 Lulli 0 Giambattista_Lulli 0 001 @i 09947232 n 0000 | French composer (born in Italy) who was the court composer to Louis XIV and founded the national French opera (1632-1687) -11145085 18 n 03 Lully 1 Raymond_Lully 0 Ramon_Lully 0 001 @i 10423589 n 0000 | Spanish philosopher (1235-1315) -11145199 18 n 02 Lunt 0 Alfred_Lunt 0 001 @i 09765278 n 0000 | United States actor who performed with his wife Lynn Fontanne in many stage productions (1893-1977) -11145364 18 n 02 Luther 0 Martin_Luther 0 001 @i 10705615 n 0000 | German theologian who led the Reformation; believed that salvation is granted on the basis of faith rather than deeds (1483-1546) -11145563 18 n 03 Lutyens 0 Sir_Edwin_Lutyens 0 Sir_Edwin_Landseer_Luytens 0 001 @i 09805475 n 0000 | English architect who planned the city of New Delhi (1869-1944) -11145730 18 n 02 Lyly 0 John_Lyly 0 001 @i 10794014 n 0000 | English writer noted for his elaborate style (1554-1606) -11145850 18 n 01 Lysander 0 001 @i 10123844 n 0000 | Spartan general who defeated the Athenians in the final battle of the Peloponnesian War (died in 395 BC) -11146010 18 n 02 Lysenko 0 Trofim_Denisovich_Lysenko 0 001 @i 10126424 n 0000 | Soviet geneticist whose adherence to Lamarck's theory of evolution was favored by Stalin (1898-1976) -11146193 18 n 01 Lysimachus 0 002 @i 10123844 n 0000 @i 09721444 n 0000 | Macedonian general under Alexander the Great; with Seleucus he defeated Antigonus and Demetrius at the battle of Ipsus (circa 355-281 BC) -11146407 18 n 01 Lysippus 0 001 @i 10566072 n 0000 | Greek sculptor (4th century BC) -11146494 18 n 04 Lytton 0 First_Baron_Lytton 0 Bulwer-Lytton 0 Edward_George_Earle_Bulwer-Lytton 0 001 @i 10794014 n 0000 | English writer of historical romances (1803-1873) -11146670 18 n 02 MacArthur 0 Douglas_MacArthur 0 001 @i 10123844 n 0000 | United States general who served as chief of staff and commanded Allied forces in the South Pacific during World War II; he accepted the surrender of Japan (1880-1964) -11146914 18 n 04 Macaulay 0 Thomas_Babington_Macaulay 0 First_Baron_Macaulay 0 Lord_Macaulay 0 001 @i 10177150 n 0000 | English historian noted for his history of England (1800-1859) -11147099 18 n 01 Macbeth 0 001 @i 10231515 n 0000 | king of Scotland (died in 1057) -11147185 18 n 02 MacDowell 0 Edward_MacDowell 0 001 @i 09947232 n 0000 | United States composer best remembered as a composer of works for the piano (1860-1908) -11147348 18 n 03 MacGregor 0 Robert_MacGregor 0 Rob_Roy 0 001 @i 09977660 n 0000 | Scottish clan leader and outlaw who was the subject of a 1817 novel by Sir Walter Scott (1671-1734) -11147533 18 n 02 Mach 0 Ernst_Mach 0 002 @i 10428004 n 0000 @i 10423589 n 0000 | Austrian physicist and philosopher who introduced the Mach number and who founded logical positivism (1838-1916) -11147729 18 n 02 Machiavelli 0 Niccolo_Machiavelli 0 003 @i 10650162 n 0000 @i 10423589 n 0000 + 03082394 a 0101 | a statesman of Florence who advocated a strong central government (1469-1527) -11147924 18 n 02 Mackenzie 0 Sir_Alexander_Mackenzie 0 001 @i 10072708 n 0000 | Canadian explorer (born in England) who explored the Mackenzie River and who was first to cross North America by land north of Mexico (1764-1820) -11148152 18 n 02 MacLeish 0 Archibald_MacLeish 0 001 @i 10444194 n 0000 | United States poet (1892-1982) -11148259 18 n 03 Macleod 0 John_Macleod 0 John_James_Rickard_Macleod 0 001 @i 10429965 n 0000 | Scottish physiologist who directed the research by F. G. Banting and C. H. Best that led to the discovery of insulin (1876-1935) -11148486 18 n 03 Madison 0 James_Madison 0 President_Madison 0 001 @i 10467395 n 0000 | 4th President of the United States; member of the Continental Congress and rapporteur at the Constitutional Convention in 1776; helped frame the Bill of Rights (1751-1836) -11148748 18 n 02 Madonna 1 Madonna_Louise_Ciccone 0 001 @i 10599806 n 0000 | United States pop singer and sex symbol during the 1980s (born in 1958) -11148899 18 n 02 Maeterlinck 0 Count_Maurice_Maeterlinck 0 001 @i 10030277 n 0000 | Belgian playwright (1862-1949) -11149016 18 n 03 Magellan 0 Ferdinand_Magellan 0 Fernao_Magalhaes 0 001 @i 10347883 n 0000 | Portuguese navigator in the service of Spain; he commanded an expedition that was the first to circumnavigate the world (1480-1521) -11149243 18 n 02 Maginot 0 Andre_Maginot 0 001 @i 10450303 n 0000 | French politician who proposed the Maginot Line (1877-1932) -11149373 18 n 02 Magritte 0 Rene_Magritte 0 001 @i 10391653 n 0000 | Belgian surrealist painter (1898-1967) -11149483 18 n 02 Mahan 0 Alfred_Thayer_Mahan 0 002 @i 10347593 n 0000 @i 10177150 n 0000 | United States naval officer and historian (1840-1914) -11149630 18 n 02 Mahler 0 Gustav_Mahler 0 002 @i 09947232 n 0000 @i 09952539 n 0000 | Austrian composer and conductor (1860-1911) -11149762 18 n 02 Mailer 1 Norman_Mailer 0 001 @i 10794014 n 0000 | United States writer (born in 1923) -11149867 18 n 02 Maillol 0 Aristide_Maillol 0 001 @i 10566072 n 0000 | French sculptor of monumental female nudes (1861-1944) -11149995 18 n 03 Maimonides 0 Moses_Maimonides 0 Rabbi_Moses_Ben_Maimon 0 001 @i 10423589 n 0000 | Spanish philosopher considered the greatest Jewish scholar of the Middle Ages who codified Jewish law in the Talmud (1135-1204) -11150224 18 n 04 Maintenon 0 Marquise_de_Maintenon 0 Francoise_d'Aubigne 0 Madame_de_Maintenon 0 002 @i 10293590 n 0000 @i 09958724 n 0000 | French consort of Louis XIV who secretly married the king after the death of his first wife (1635-1719) -11150471 18 n 02 Maitland 0 Frederic_William_Maitland 0 001 @i 10177150 n 0000 | English historian noted for his works on the history of English law (1850-1906) -11150634 18 n 04 Major 2 John_Major 0 John_R._Major 0 John_Roy_Major 0 001 @i 10650162 n 0000 | British statesman who was prime minister from 1990 until 1997 (born in 1943) -11150809 18 n 01 Makarios_III 0 001 @i 10065261 n 0000 | Greek Orthodox bishop and archbishop of Cyprus and the first president of independent Cyprus (1913-1977) -11150973 18 n 02 Malachi 0 Malachias 0 001 @i 10483890 n 0000 | a Hebrew minor prophet of the 5th century BC -11151084 18 n 02 Malamud 0 Bernard_Malamud 0 001 @i 10794014 n 0000 | United States writer (1914-1986) -11151189 18 n 02 Malcolm_X 0 Malcolm_Little 0 002 @i 09924996 n 0000 @i 10315837 n 0000 | militant civil rights leader (1925-1965) -11151322 18 n 02 Malebranche 0 Nicolas_de_Malebranche 0 001 @i 10423589 n 0000 | French philosopher (1638-1715) -11151436 18 n 03 Malevich 0 Kazimir_Malevich 0 Kazimir_Severinovich_Malevich 0 001 @i 10391653 n 0000 | Russian abstract painter (1878-1935) -11151579 18 n 03 Malinowski 0 Bronislaw_Malinowski 0 Bronislaw_Kasper_Malinowski 0 001 @i 09796323 n 0000 | British anthropologist (born in Poland) who introduced the technique of the participant observer (1884-1942) -11151798 18 n 02 Mallarme 0 Stephane_Mallarme 0 001 @i 10444194 n 0000 | French symbolist poet noted for his free verse (1842-1898) -11151932 18 n 03 Mallon 0 Mary_Mallon 0 Typhoid_Mary 0 001 @i 09897350 n 0000 | United States cook who was an immune carrier of typhoid fever and who infected dozens of people (1870-1938) -11152122 18 n 03 Malone 0 Edmund_Malone 0 Edmond_Malone 0 001 @i 10557854 n 0000 | English scholar remembered for his chronology of Shakespeare's plays and his editions of Shakespeare and Dryden (1741-1812) -11152331 18 n 03 Malory 0 Thomas_Malory 0 Sir_Thomas_Malory 0 001 @i 10794014 n 0000 | English writer who published a translation of romances about King Arthur taken from French and other sources (died in 1471) -11152544 18 n 02 Malpighi 0 Marcello_Malpighi 0 001 @i 10170359 n 0000 | Italian anatomist who was the first to use a microscope to study anatomy and was among the first to recognize cells in animals (1628-1694) -11152758 18 n 02 Malraux 0 Andre_Malraux 0 001 @i 10794014 n 0000 | French novelist (1901-1976) -11152856 18 n 03 Malthus 0 Thomas_Malthus 0 Thomas_Robert_Malthus 0 002 @i 10043643 n 0000 + 03084010 a 0101 | an English economist who argued that increases in population would outgrow increases in the means of subsistence (1766-1834) -11153094 18 n 02 Mamet 0 David_Mamet 0 001 @i 10030277 n 0000 | United States playwright (born in 1947) -11153200 18 n 03 Mandela 0 Nelson_Mandela 0 Nelson_Rolihlahla_Mandela 0 002 @i 10346198 n 0000 @i 10650162 n 0000 | South African statesman who was released from prison to become the nation's first democratically elected president in 1994 (born in 1918) -11153456 18 n 02 Mandelbrot 0 Benoit_Mandelbrot 0 001 @i 10301261 n 0000 | French mathematician (born in Poland) noted for inventing fractals (born in 1924) -11153615 18 n 04 Mandelstam 0 Osip_Mandelstam 0 Osip_Emilevich_Mandelstam 0 Mandelshtam 0 001 @i 10444194 n 0000 | Russian poet who died in a prison camp (1891-1938) -11153783 18 n 01 Manes 0 001 @i 10483890 n 0000 | a Persian prophet who founded Manichaeism (216-276) -11153887 18 n 02 Manet 0 Edouard_Manet 0 001 @i 10391653 n 0000 | French painter whose work influenced the impressionists (1832-1883) -11154023 18 n 02 Mann 0 Thomas_Mann 0 001 @i 10794014 n 0000 | German writer concerned about the role of the artist in bourgeois society (1875-1955) -11154174 18 n 02 Mann 1 Horace_Mann 0 001 @i 10045713 n 0000 | United States educator who introduced reforms that significantly altered the system of public education (1796-1859) -11154355 18 n 02 Mansart 0 Francois_Mansart 0 001 @i 09805475 n 0000 | French architect who introduced the mansard roof (1598-1666) -11154489 18 n 03 Mansfield 0 Katherine_Mansfield 0 Kathleen_Mansfield_Beauchamp 0 001 @i 10794014 n 0000 | New Zealand writer of short stories (1888-1923) -11154646 18 n 02 Manson 0 Sir_Patrick_Manson 0 001 @i 10020890 n 0000 | Scottish physician who discovered that elephantiasis is spread by mosquitos and suggested that mosquitos also spread malaria (1844-1922) -11154857 18 n 02 Mantegna 0 Andrea_Mantegna 0 002 @i 10391653 n 0000 @i 10058155 n 0000 | Italian painter and engraver noted for his frescoes (1431-1506) -11155013 18 n 02 Mantell 0 Gideon_Algernon_Mantell 0 001 @i 10127689 n 0000 | English geologist remembered as the first person to recognize that dinosaurs were reptiles (1790-1852) -11155196 18 n 03 Mantle 0 Mickey_Mantle 0 Mickey_Charles_Mantle 0 001 @i 09835506 n 0000 | United States baseball player (1931-1997) -11155331 18 n 02 Manzoni 0 Alessandro_Manzoni 0 001 @i 10794014 n 0000 | Italian novelist and poet (1785-1873) -11155444 18 n 03 Mao 0 Mao_Zedong 0 Mao_Tsetung 0 002 @i 09945319 n 0000 @i 10527334 n 0000 | Chinese communist leader (1893-1976) -11155577 18 n 02 Marat 0 Jean_Paul_Marat 0 001 @i 10527334 n 0000 | French revolutionary leader (born in Switzerland) who was a leader in overthrowing the Girondists and was stabbed to death in his bath by Charlotte Corday (1743-1793) -11155814 18 n 02 Marceau 0 Marcel_Marceau 0 001 @i 10318892 n 0000 | French mime famous for his sad-faced clown (born in 1923) -11155943 18 n 03 Marciano 0 Rocco_Marciano 0 Rocky_Marciano 0 001 @i 10477077 n 0000 | United States prizefighter who won the world heavyweight championship in 1952 (1924-1969) -11156122 18 n 02 Marconi 0 Guglielmo_Marconi 0 001 @i 10049017 n 0000 | Italian electrical engineer who invented wireless telegraphy and in 1901 transmitted radio signals across the Atlantic Ocean (1874-1937) -11156333 18 n 02 Marcuse 0 Herbert_Marcuse 0 001 @i 10423589 n 0000 | United States political philosopher (born in Germany) concerned about the dehumanizing effects of capitalism and modern technology (1898-1979) -11156548 18 n 01 Marie_Antoinette 0 001 @i 10499857 n 0000 | queen of France (as wife of Louis XVI) who was unpopular; her extravagance and opposition to reform contributed to the overthrow of the monarchy; she was guillotined along with her husband (1755-1793) -11156812 18 n 04 Marini 0 Giambattista_Marini 0 Marino 0 Giambattista_Marino 0 001 @i 10444194 n 0000 | Italian poet (1569-1625) -11156943 18 n 03 Mark 1 Saint_Mark 0 St._Mark 0 003 @i 09799213 n 0000 @i 10067305 n 0000 @i 10547145 n 0000 | Apostle and companion of Saint Peter; assumed to be the author of the second Gospel -11157140 18 n 03 Markova 0 Dame_Alicia_Markova 0 Lilian_Alicia_Marks 0 001 @i 09989502 n 0000 | English ballet dancer (born in 1910) -11157275 18 n 04 Markov 0 Andrei_Markov 0 Markoff 0 Andre_Markoff 0 002 @i 10301261 n 0000 + 02994754 a 0101 | Russian mathematician (1856-1922) -11157422 18 n 03 Marks 0 Simon_Marks 0 First_Baron_Marks_of_Broughton 0 001 @i 09882007 n 0000 | English businessman who created a retail chain (1888-1964) -11157580 18 n 03 Marley 0 Robert_Nesta_Marley 0 Bob_Marley 0 001 @i 10599806 n 0000 | Jamaican singer who popularized reggae (1945-1981) -11157719 18 n 02 Marlowe 0 Christopher_Marlowe 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | English poet and playwright who introduced blank verse as a form of dramatic expression; was stabbed to death in a tavern brawl (1564-1593) -11157954 18 n 03 Marquand 0 John_Marquand 0 John_Philip_Marquand 0 001 @i 10794014 n 0000 | United States writer who created the Japanese detective Mr. Moto and wrote other novels as well (1893-1960) -11158156 18 n 03 Marquette 0 Jacques_Marquette 0 Pere_Jacques_Marquette 0 001 @i 10323182 n 0000 | French missionary who accompanied Louis Joliet in exploring the upper Mississippi River valley (1637-1675) -11158364 18 n 03 Marquis 1 Don_Marquis 0 Donald_Robert_Perry_Marquis 0 001 @i 10191943 n 0000 | humorist who wrote about the imaginary life of cockroaches (1878-1937) -11158533 18 n 02 Marsh 0 Ngaio_Marsh 0 001 @i 10794014 n 0000 | New Zealand writer of detective stories (1899-1982) -11158651 18 n 02 Marsh 1 Reginald_Marsh 0 001 @i 10391653 n 0000 | United States painter (1898-1954) -11158754 18 n 02 Marshall 2 John_Marshall 0 002 @i 10227985 n 0000 @i 09916788 n 0000 | United States jurist; as chief justice of the Supreme Court he established the principles of United States constitutional law (1755-1835) -11158982 18 n 03 Marshall 3 George_Marshall 0 George_Catlett_Marshall 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | United States general and statesman who as Secretary of State organized the European Recovery Program (1880-1959) -11159214 18 n 02 Marshall 4 E._G._Marshall 0 001 @i 09765278 n 0000 | United States actor (1914-1998) -11159318 18 n 02 Marstan 0 John_Marstan 0 001 @i 10030277 n 0000 | English playwright (1575-1634) -11159418 18 n 02 Marti 0 Jose_Julian_Marti 0 002 @i 10527334 n 0000 @i 10444194 n 0000 | Cuban poet and revolutionary who fought for Cuban independence from Spain (1853-1895) -11159595 18 n 01 Martial 0 001 @i 10444194 n 0000 | Roman poet noted for epigrams (first century BC) -11159698 18 n 03 Martin 0 Dean_Martin 0 Dino_Paul_Crocetti 0 001 @i 10599806 n 0000 | United States singer (1917-1995) -11159819 18 n 02 Martin 1 Mary_Martin 0 001 @i 09767700 n 0000 | United States actress (1913-1990) -11159920 18 n 02 Martin 2 Steve_Martin 0 002 @i 09765278 n 0000 @i 09940146 n 0000 | United States actor and comedian (born in 1945) -11160055 18 n 02 Martin 3 St._Martin 0 002 @i 09857200 n 0000 @i 10547145 n 0000 | French bishop who is a patron saint of France (died in 397) -11160200 18 n 02 Martin_V 0 Oddone_Colonna 0 001 @i 10453533 n 0000 | Italian pope from 1417 to 1431 whose election as pope ended the Great Schism (1368-1431) -11160361 18 n 02 Marvell 0 Andrew_Marvell 0 001 @i 10444194 n 0000 | English poet (1621-1678) -11160457 18 n 02 Marx 0 Karl_Marx 0 003 @i 10423589 n 0000 @i 10043643 n 0000 @i 10527334 n 0000 | founder of modern communism; wrote the Communist Manifesto with Engels in 1848; wrote Das Kapital in 1867 (1818-1883) -11160676 18 n 03 Marx 1 Julius_Marx 0 Groucho 0 002 @i 09940146 n 0000 #m 07989741 n 0000 | United States comedian; one of four brothers who made motion pictures together (1890-1977) -11160861 18 n 03 Marx 2 Leonard_Marx 0 Chico 0 002 @i 09940146 n 0000 #m 07989741 n 0000 | United States comedian; one of four brothers who made motion pictures together (1891-1961) -11161045 18 n 03 Marx 3 Arthur_Marx 0 Harpo 0 002 @i 09940146 n 0000 #m 07989741 n 0000 | United States comedian; one of four brothers who made motion pictures together (1893-1964) -11161228 18 n 03 Marx 4 Herbert_Marx 0 Zeppo 0 002 @i 09940146 n 0000 #m 07989741 n 0000 | United States comedian; one of four brothers who made motion pictures together (1901-1979) -11161412 18 n 05 Mary 0 Virgin_Mary 0 The_Virgin 0 Blessed_Virgin 0 Madonna 0 003 @i 09681973 n 0000 @i 10332385 n 0000 + 03034903 a 0101 | the mother of Jesus; Christians refer to her as the Virgin Mary; she is especially honored by Roman Catholics -11161664 18 n 03 Mary_I 0 Mary_Tudor 0 Bloody_Mary 0 002 @i 10499631 n 0000 #m 08159031 n 0000 | daughter of Henry VIII and Catherine of Aragon who was Queen of England from 1553 to 1558; she was the wife of Philip II of Spain and when she restored Roman Catholicism to England many Protestants were burned at the stake as heretics (1516-1558) -11162010 18 n 01 Mary_II 0 001 @i 10499631 n 0000 | Queen of England and Scotland and Ireland; she was the eldest daughter of James II and ruled jointly with her husband William III (1662-1694) -11162206 18 n 02 Mary_Queen_of_Scots 0 Mary_Stuart 0 002 @i 10499355 n 0000 #m 08158460 n 0000 | queen of Scotland from 1542 to 1567; as a Catholic she was forced to abdicate in favor of her son and fled to England where she was imprisoned by Elizabeth I; when Catholic supporters plotted to put her on the English throne she was tried and executed for sedition (1542-1587) -11162582 18 n 04 Mary_Magdalene 0 St._Mary_Magdalene 0 Mary_Magdalen 0 St._Mary_Magdalen 0 002 @i 10601078 n 0000 @i 10547145 n 0000 | sinful woman Jesus healed of evil spirits; she became a follower of Jesus -11162793 18 n 03 Masefield 0 John_Masefield 0 John_Edward_Masefield 0 001 @i 10444194 n 0000 | English poet (1878-1967) -11162915 18 n 03 Mason 2 A._E._W._Mason 0 Alfred_Edward_Woodley_Mason 0 001 @i 10794014 n 0000 | English writer (1865-1948) -11163041 18 n 03 Mason 3 James_Mason 0 James_Neville_Mason 0 001 @i 09765278 n 0000 | English film actor (1909-1984) -11163160 18 n 02 Mason 4 George_Mason 0 001 @i 09740085 n 0000 | American Revolutionary leader from Virginia whose objections led to the drafting of the Bill of Rights (1725-1792) -11163342 18 n 02 Masoud 0 Ahmad_Shah_Masoud 0 001 @i 09623038 n 0000 | Afghan leader of forces opposed to the Taliban; won fame by successfully resisting the Soviets in the 1980s; was assassinated by men posing as journalists (1953-2001) -11163582 18 n 01 Massasoit 0 002 @i 10203298 n 0000 @i 09671641 n 0000 | Wampanoag leader who aided the Pilgrims (1580-1661) -11163709 18 n 02 Massenet 0 Jules_Emile_Frederic_Massenet 0 001 @i 09947232 n 0000 | French composer best remembered for his pop operas (1842-1912) -11163859 18 n 03 Massine 0 Leonide_Fedorovitch_Massine 0 Leonid_Fyodorovich_Myasin 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | French choreographer and ballet dancer (born in Russia) (1895-1979) -11164058 18 n 02 Masters 0 Edgar_Lee_Masters 0 001 @i 10444194 n 0000 | United States poet (1869-1950) -11164163 18 n 02 Mata_Hari 0 Margarete_Gertrud_Zelle 0 001 @i 10641755 n 0000 | Dutch dancer who was executed by the French as a German spy in World War I (1876-1917) -11164332 18 n 03 Mathias 0 Bob_Mathias 0 Robert_Bruce_Mathias 0 001 @i 09820263 n 0000 | United States athlete who won Olympic gold medals in the decathlon (born in 1930) -11164505 18 n 03 Matisse 0 Henri_Matisse 0 Henri_Emile_Benoit_Matisse 0 001 @i 10391653 n 0000 | French painter and sculptor; leading figure of fauvism (1869-1954) -11164671 18 n 06 Matthew 0 Saint_Matthew 0 St._Matthew 0 Saint_Matthew_the_Apostle 0 St._Matthew_the_Apostle 0 Levi 0 004 @i 09798811 n 0000 @i 10067305 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) disciple of Jesus; traditionally considered to be the author of the first Gospel -11164970 18 n 04 Maugham 0 Somerset_Maugham 0 W._Somerset_Maugham 0 William_Somerset_Maugham 0 001 @i 10794014 n 0000 | English writer (born in France) of novels and short stories (1874-1965) -11165164 18 n 03 Mauldin 0 Bill_Mauldin 0 William_Henry_Mauldin 0 001 @i 09898346 n 0000 | United States cartoonist noted for his drawings of soldiers in battle (1921-2003) -11165339 18 n 03 Maupassant 0 Guy_de_Maupassant 0 Henri_Rene_Albert_Guy_de_Maupassant 0 001 @i 10794014 n 0000 | French writer noted especially for his short stories (1850-1893) -11165519 18 n 03 Mauriac 0 Francois_Mauriac 0 Francois_Charles_Mauriac 0 001 @i 10794014 n 0000 | French novelist who wrote about the conflict between desire and religious belief (1885-1970) -11165712 18 n 03 Maurois 0 Andre_Maurois 0 Emile_Herzog 0 001 @i 10794014 n 0000 | French writer best known for his biographies (1885-1967) -11165854 18 n 04 Mauser 0 von_Mauser 0 P._P._von_Mauser 0 Peter_Paul_Mauser 0 002 @i 10214637 n 0000 @i 09809134 n 0000 | German arms manufacturer and inventor of a repeating rifle and pistol (1838-1914) -11166060 18 n 02 Maxim 0 Sir_Hiram_Stevens_Maxim 0 001 @i 10214637 n 0000 | English inventor (born in the United States) who invented the Maxim gun that was used in World War I (1840-1916) -11166251 18 n 03 Maximian 0 Marcus_Aurelius_Valerius_Maximianus 0 Herculius 0 001 @i 10537240 n 0000 | Roman Emperor from 286 until he abdicated in 305; when Diocletian divided the Roman Empire in 286 Maximian became emperor in the west (died in 311) -11166504 18 n 03 Maxwell 0 J._C._Maxwell 0 James_Clerk_Maxwell 0 001 @i 10428004 n 0000 | Scottish physicist whose equations unified electricity and magnetism and who recognized the electromagnetic nature of light (1831-1879) -11166732 18 n 02 Mayakovski 0 Vladimir_Vladimirovich_Mayakovski 0 001 @i 10444194 n 0000 | Soviet poet; leader of Russian futurism (1893-1930) -11166877 18 n 03 Mayer 0 Louis_B._Mayer 0 Louis_Burt_Mayer 0 001 @i 10088390 n 0000 | United States filmmaker (born in Russia) who founded his own film company and later merged with Samuel Goldwyn (1885-1957) -11167088 18 n 02 Mayer 1 Marie_Goeppert_Mayer 0 001 @i 10364643 n 0000 | United States physicist (born in Germany) noted for her research on the structure of the atom (1906-1972) -11167269 18 n 04 Mays 0 Willie_Mays 0 Willie_Howard_Mays_Jr. 0 Say_Hey_Kid 0 001 @i 09835506 n 0000 | United States baseball player (born in 1931) -11167418 18 n 02 Mazzini 0 Giuseppe_Mazzini 0 001 @i 10407310 n 0000 | Italian nationalist whose writings spurred the movement for a unified and independent Italy (1805-1872) -11167595 18 n 03 McCarthy 0 Joseph_McCarthy 0 Joseph_Raymond_McCarthy 0 001 @i 10450303 n 0000 | United States politician who unscrupulously accused many citizens of being Communists (1908-1957) -11167792 18 n 03 McCarthy 1 Mary_McCarthy 0 Mary_Therese_McCarthy 0 001 @i 10794014 n 0000 | United States satirical novelist and literary critic (1912-1989) -11167952 18 n 03 McCartney 0 Paul_McCartney 0 Sir_James_Paul_McCartney 0 003 @i 10536416 n 0000 @i 10624540 n 0000 #m 08369920 n 0000 | English rock star and bass guitarist and songwriter who with John Lennon wrote most of the music for the Beatles (born in 1942) -11168218 18 n 04 McCauley 0 Mary_McCauley 0 Mary_Ludwig_Hays_McCauley 0 Molly_Pitcher 0 001 @i 10173410 n 0000 | heroine of the American Revolution who carried water to soldiers during the Battle of Monmouth Court House and took over her husband's gun when he was overcome by heat (1754-1832) -11168513 18 n 02 McCormick 0 John_McCormick 0 001 @i 10701783 n 0000 | United States operatic tenor (born in Ireland) (1884-1945) -11168645 18 n 03 McCormick 1 Cyrus_McCormick 0 Cyrus_Hall_McCormick 0 002 @i 10214637 n 0000 @i 10292316 n 0000 | United States inventor and manufacturer of a mechanical harvester (1809-1884) -11168839 18 n 03 McCullers 0 Carson_McCullers 0 Carson_Smith_McCullers 0 001 @i 10794014 n 0000 | United States novelist (1917-1967) -11168974 18 n 03 McGraw 0 John_McGraw 0 John_Joseph_McGraw 0 002 @i 09835506 n 0000 @i 09931640 n 0000 | United States baseball player and manager (1873-1934) -11169135 18 n 02 McGuffey 0 William_Holmes_McGuffey 0 001 @i 10045713 n 0000 | United States educator who compiled the McGuffey Eclectic Readers (1800-1873) -11169294 18 n 02 McKim 0 Charles_Follen_McKim 0 001 @i 09805475 n 0000 | United States neoclassical architect (1847-1909) -11169418 18 n 03 McKinley 0 William_McKinley 0 President_McKinley 0 001 @i 10467395 n 0000 | 25th President of the United States; was assassinated by an anarchist (1843-1901) -11169595 18 n 03 McLuhan 0 Marshall_McLuhan 0 Herbert_Marshall_McLuhan 0 001 @i 10794014 n 0000 | Canadian writer noted for his analyses of the mass media (1911-1980) -11169764 18 n 02 McMaster 0 John_Bach_McMaster 0 001 @i 10177150 n 0000 | United States historian who wrote a nine volume history of the people of the United States (1852-1932) -11169943 18 n 02 McPherson 0 Aimee_Semple_McPherson 0 001 @i 10067011 n 0000 | United States evangelist (born in Canada) noted for her extravagant religious services (1890-1944) -11170123 18 n 02 Mead 0 George_Herbert_Mead 0 001 @i 10423589 n 0000 | United States philosopher of pragmatism (1863-1931) -11170248 18 n 02 Mead 1 Margaret_Mead 0 001 @i 09796323 n 0000 | United States anthropologist noted for her claims about adolescence and sexual behavior in Polynesian cultures (1901-1978) -11170438 18 n 02 Meade 0 George_Gordon_Meade 0 001 @i 10123844 n 0000 | United States general in charge of the Union troops at the Battle of Gettysburg (1815-1872) -11170604 18 n 02 Meade 1 James_Edward_Meade 0 001 @i 10043643 n 0000 | English economist noted for his studies of international trade and finance (1907-1995) -11170764 18 n 02 Meany 1 George_Meany 0 001 @i 10242032 n 0000 | United States labor leader who was the first president of the AFL-CIO (1894-1980) -11170913 18 n 03 Medawar 0 Peter_Medawar 0 Sir_Peter_Brian_Medawar 0 001 @i 10199902 n 0000 | British immunologist (born in Brazil) who studied tissue transplants and discovered that the rejection of grafts was an immune response (1915-1987) -11171157 18 n 02 Meiji_Tenno 0 Mutsuhito 0 001 @i 10053004 n 0000 | emperor of Japan who encouraged the modernization of Japan (1852-1912) -11171298 18 n 02 Meir 0 Golda_Meir 0 001 @i 10650162 n 0000 | Israeli statesman (born in Russia) (1898-1978) -11171409 18 n 02 Meissner 0 Fritz_W._Meissner 0 001 @i 10428004 n 0000 | German physicist (1882-1974) -11171513 18 n 02 Meissner 1 Georg_Meissner 0 001 @i 09792237 n 0000 | German anatomist (1829-1905) -11171614 18 n 02 Meitner 0 Lise_Meitner 0 001 @i 10364643 n 0000 | Swedish physicist (born in Austria) who worked in the field of radiochemistry with Otto Hahn and formulated the concept of nuclear fission with Otto Frisch (1878-1968) -11171851 18 n 03 Melanchthon 0 Philipp_Melanchthon 0 Philipp_Schwarzerd 0 001 @i 10705615 n 0000 | German theologian and Luther's successor as leader of the Reformation in Germany (1497-1560) -11172045 18 n 03 Melba 0 Dame_Nellie_Melba 0 Helen_Porter_Mitchell 0 001 @i 09938080 n 0000 | Australian operatic soprano (1861-1931) -11172181 18 n 01 Melchior 0 003 @i 10546202 n 0000 #m 08486538 n 0000 ;c 06453849 n 0000 | (New Testament) one of the three sages from the east who came bearing gifts for the infant Jesus; usually represented as a king of Nubia -11172411 18 n 03 Melchior 1 Lauritz_Melchior 0 Lauritz_Lebrecht_Hommel_Melchior 0 001 @i 10701783 n 0000 | United States operatic tenor (born in Denmark) noted for his Wagnerian roles (1890-1973) -11172609 18 n 04 Mellon 0 Andrew_Mellon 0 Andrew_W._Mellon 0 Andrew_William_Mellon 0 002 @i 10090020 n 0000 @i 10421956 n 0000 | United States financier and philanthropist (1855-1937) -11172795 18 n 02 Melville 0 Herman_Melville 0 001 @i 10794014 n 0000 | United States writer of novels and short stories (1819-1891) -11172929 18 n 01 Menander 0 001 @i 10030277 n 0000 | comic dramatist of ancient Greece (342-292 BC) -11173031 18 n 03 Mencken 0 H._L._Mencken 0 Henry_Louis_Mencken 0 002 @i 10224578 n 0000 @i 10266016 n 0000 | United States journalist and literary critic (1880-1956) -11173199 18 n 03 Mendel 0 Gregor_Mendel 0 Johann_Mendel 0 003 @i 10112129 n 0000 @i 09868270 n 0000 + 03085715 a 0101 | Augustinian monk and botanist whose experiments in breeding garden peas led to his eventual recognition as founder of the science of genetics (1822-1884) -11173475 18 n 06 Mendeleyev 0 Mendeleev 0 Dmitri_Mendeleyev 0 Dmitri_Mendeleev 0 Dmitri_Ivanovich_Mendeleyev 0 Dmitri_Ivanovich_Mendeleev 0 001 @i 09913824 n 0000 | Russian chemist who developed a periodic table of the chemical elements and predicted the discovery of several new elements (1834-1907) -11173778 18 n 02 Mendelsohn 0 Erich_Mendelsohn 0 001 @i 09805475 n 0000 | German architect who migrated to Palestine in 1937 (1887-1953) -11173917 18 n 03 Mendelssohn 0 Felix_Mendelssohn 0 Jakob_Ludwig_Felix_Mendelssohn-Bartholdy 0 001 @i 09947232 n 0000 | German musician and romantic composer of orchestral and choral works (1809-1847) -11174119 18 n 02 Meniere 0 Prosper_Meniere 0 001 @i 10041195 n 0000 | French otologist who first described a form of vertigo now known as Meniere's disease and identified the semicircular canals as the site of the lesion (1799-1862) -11174354 18 n 03 Menninger 0 Charles_Menninger 0 Charles_Frederick_Menninger 0 001 @i 10488016 n 0000 | United States psychiatrist who with his sons founded a famous psychiatric clinic in Topeka (1862-1953) -11174563 18 n 03 Menninger 1 Karl_Menninger 0 Karl_Augustus_Menninger 0 001 @i 10488016 n 0000 | United States psychiatrist and son of Charles Menninger (1893-1990) -11174730 18 n 03 Menninger 2 William_Menninger 0 William_Claire_Menninger 0 001 @i 10488016 n 0000 | United States psychiatrist and son of Charles Menninger (1899-1966) -11174901 18 n 02 Menotti 0 Gian_Carlo_Menotti 0 001 @i 09947232 n 0000 | United States composer (born in Italy) of operas (born in 1911) -11175040 18 n 03 Menuhin 0 Yehudi_Menuhin 0 Sir_Yehudi_Menuhin 0 001 @i 10754578 n 0000 | British violinist (born in the United States) who began his career as a child prodigy in the 1920s (1916-1999) -11175243 18 n 03 Mercator 0 Gerardus_Mercator 0 Gerhard_Kremer 0 001 @i 10127555 n 0000 | Flemish geographer who lived in Germany; he invented the Mercator projection of maps of the globe (1512-1594) -11175445 18 n 02 Mercer 1 John_Mercer 0 002 @i 10292316 n 0000 + 00185698 v 0101 | British maker of printed calico cloth who invented mercerizing (1791-1866) -11175605 18 n 02 Merckx 0 Eddy_Merckx 0 001 @i 09986189 n 0000 | Belgian racing cyclist who won the Tour de France five times (born in 1945) -11175748 18 n 03 Mercouri 0 Melina_Mercouri 0 Anna_Amalia_Mercouri 0 001 @i 09767700 n 0000 | Greek film actress (1925-1994) -11175875 18 n 02 Meredith 0 George_Meredith 0 002 @i 10363573 n 0000 @i 10444194 n 0000 | English novelist and poet (1828-1909) -11176005 18 n 03 Meredith 1 James_Meredith 0 James_Howard_Meredith 0 001 @i 09924996 n 0000 | United States civil rights leader whose college registration caused riots in traditionally segregated Mississippi (born in 1933) -11176230 18 n 02 Mergenthaler 0 Ottmar_Mergenthaler 0 001 @i 10214637 n 0000 | United States inventor (born in Germany) of the Linotype machine (1854-1899) -11176388 18 n 01 Merlin 0 002 @i 09587565 n 0000 ;c 06371734 n 0000 | (Arthurian legend) the magician who acted as King Arthur's advisor -11176527 18 n 02 Merman 1 Ethel_Merman 0 001 @i 10599806 n 0000 | United States singer who appeared in several musical comedies (1909-1984) -11176669 18 n 03 Merton 0 Robert_Merton 0 Robert_King_Merton 0 001 @i 10620758 n 0000 | United States sociologist (1910-2003) -11176797 18 n 02 Merton 1 Thomas_Merton 0 002 @i 10518602 n 0000 @i 10794014 n 0000 | United States religious and writer (1915-1968) -11176932 18 n 03 Mesmer 0 Franz_Anton_Mesmer 0 Friedrich_Anton_Mesmer 0 003 @i 10020890 n 0000 + 00020671 v 0103 + 00020671 v 0104 | Austrian physician who tried to treat diseases with a form of hypnotism (1734-1815) -11177151 18 n 05 Metchnikoff 0 Elie_Metchnikoff 0 Metchnikov 0 Elie_Metchnikov 0 Ilya_Ilich_Metchnikov 0 001 @i 09831411 n 0000 | Russian bacteriologist in France who formulated the theory of phagocytosis (1845-1916) -11177370 18 n 01 Methuselah 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testament) a patriarch (grandfather of Noah) who is said to have lived 969 years -11177532 18 n 03 Metternich 0 Klemens_Metternich 0 Prince_Klemens_Wenzel_Nepomuk_Lothar_von_Metternich 0 001 @i 10650162 n 0000 | Austrian statesman (1773-1859) -11177695 18 n 03 Meyerbeer 0 Giacomo_Meyerbeer 0 Jakob_Liebmann_Beer 0 001 @i 09947232 n 0000 | German composer of operas in a style that influenced Richard Wagner (1791-1864) -11177873 18 n 03 Meyerhof 0 Otto_Meyerhof 0 Otto_Fritz_Meyerhof 0 001 @i 09854915 n 0000 | United States biochemist (born in Germany) who studied the metabolism of muscles (1884-1951) -11178059 18 n 02 Micah 0 Micheas 0 001 @i 10483890 n 0000 | a minor Hebrew prophet (8th century BC) -11178161 18 n 02 Michelangelo 0 Michelangelo_Buonarroti 0 003 @i 10566072 n 0000 @i 10375794 n 0000 @i 09805475 n 0000 | Florentine sculptor and painter and architect; one of the outstanding figures of the Renaissance (1475-1564) -11178393 18 n 04 Michelson 0 A._A._Michelson 0 Albert_Michelson 0 Albert_Abraham_Michelson 0 001 @i 10428004 n 0000 | United States physicist (born in Germany) who collaborated with Morley in the Michelson-Morley experiment (1852-1931) -11178631 18 n 03 Michener 0 James_Michener 0 James_Albert_Michener 0 001 @i 10794014 n 0000 | United States writer of historical novels (1907-1997) -11178781 18 n 02 Middleton 0 Thomas_Middleton 0 002 @i 10030277 n 0000 @i 10395605 n 0000 | English playwright and pamphleteer (1570-1627) -11178922 18 n 02 Mies_Van_Der_Rohe 0 Ludwig_Mies_Van_Der_Rohe 0 001 @i 09805475 n 0000 | United States architect (born in Germany) who built unornamented steel frame and glass skyscrapers (1886-1969) -11179124 18 n 02 Milhaud 0 Darius_Milhaud 0 001 @i 09947232 n 0000 | French composer of works that combine jazz and polytonality and Brazilian music (1892-1974) -11179287 18 n 03 Mill 0 John_Mill 0 John_Stuart_Mill 0 002 @i 10423589 n 0000 @i 10043643 n 0000 | English philosopher and economist remembered for his interpretations of empiricism and utilitarianism (1806-1873) -11179502 18 n 02 Mill 1 James_Mill 0 001 @i 10423589 n 0000 | Scottish philosopher who expounded Bentham's utilitarianism; father of John Stuart Mill (1773-1836) -11179666 18 n 02 Millais 0 Sir_John_Everett_Millais 0 001 @i 10465248 n 0000 | Englishman and Pre-Raphaelite painter (1829-1896) -11179797 18 n 03 Millay 0 Edna_Millay 0 Edna_Saint_Vincent_Millay 0 001 @i 10447255 n 0000 | United States poet (1892-1950) -11179923 18 n 02 Miller 1 Arthur_Miller 0 001 @i 10030277 n 0000 | United States playwright (1915-2005) -11180029 18 n 03 Miller 2 Henry_Miller 0 Henry_Valentine_Miller 0 001 @i 10794014 n 0000 | United States novelist whose novels were originally banned as pornographic (1891-1980) -11180209 18 n 03 Miller 3 Glenn_Miller 0 Alton_Glenn_Miller 0 001 @i 09837201 n 0000 | United States bandleader of a popular big band (1909-1944) -11180357 18 n 02 Millet 0 Jean_Francois_Millet 0 001 @i 10391653 n 0000 | French painter of rural scenes (1814-1875) -11180476 18 n 02 Millikan 0 Robert_Andrews_Millikan 0 001 @i 10428004 n 0000 | United States physicist who isolated the electron and measured its charge (1868-1953) -11180643 18 n 02 Mills 0 Robert_Mills 0 001 @i 09805475 n 0000 | United States architect who was the presidentially appointed architect of Washington D.C. (1781-1855) -11180812 18 n 03 Milne 0 A._A._Milne 0 Alan_Alexander_Milne 0 001 @i 10794014 n 0000 | English writer of stories for children (1882-1956) -11180952 18 n 01 Miltiades 0 001 @i 10123844 n 0000 | Athenian general who defeated the Persians at Marathon (540-489) -11181073 18 n 02 Milton 0 John_Milton 0 001 @i 10444194 n 0000 | English poet; remembered primarily as the author of an epic poem describing humanity's fall from grace (1608-1674) -11181255 18 n 02 Minkowski 0 Hermann_Minkowski 0 001 @i 10301261 n 0000 | German mathematician (born in Russia) who suggested the concept of four-dimensional space-time (1864-1909) -11181438 18 n 04 Minuit 0 Peter_Minuit 0 Minnewit 0 Peter_Minnewit 0 001 @i 10583387 n 0000 | Dutch colonist who bought Manhattan from the Native Americans for the equivalent of $24 (1580-1638) -11181634 18 n 03 Mirabeau 0 Comte_de_Mirabeau 0 Honore-Gabriel_Victor_Riqueti 0 001 @i 10527334 n 0000 | French revolutionary who was prominent in the early days of the French Revolution (1749-1791) -11181835 18 n 02 Miro 0 Joan_Miro 0 001 @i 10391653 n 0000 | Spanish surrealist painter (1893-1983) -11181937 18 n 02 Mitchell 0 Arthur_Mitchell 0 001 @i 09989502 n 0000 | United States dancer who formed the first Black classical ballet company (born in 1934) -11182098 18 n 02 Mitchell 1 John_Mitchell 0 001 @i 10242032 n 0000 | United States labor leader; president of the United Mine Workers of America from 1898 to 1908 (1870-1919) -11182275 18 n 03 Mitchell 2 Margaret_Mitchell 0 Margaret_Munnerlyn_Mitchell 0 001 @i 10794014 n 0000 | United States writer noted for her novel about the South during the American Civil War (1900-1949) -11182479 18 n 02 Mitchell 3 Maria_Mitchell 0 001 @i 09818343 n 0000 | United States astronomer who studied sunspots and nebulae (1818-1889) -11182621 18 n 03 Mitchell 4 William_Mitchell 0 Billy_Mitchell 0 002 @i 09826204 n 0000 @i 10123844 n 0000 | United States aviator and general who was an early advocate of military air power (1879-1936) -11182825 18 n 03 Mitchell 5 R._J._Mitchell 0 Reginald_Joseph_Mitchell 0 001 @i 09775907 n 0000 | English aeronautical engineer (1895-1937) -11182966 18 n 02 Mitchum 0 Robert_Mitchum 0 001 @i 09765278 n 0000 | United States film actor (1917-1997) -11183074 18 n 03 Mitford 0 Nancy_Mitford 0 Nancy_Freeman_Mitford 0 001 @i 10794014 n 0000 | English writer of comic novels (1904-1973) -11183211 18 n 03 Mitford 1 Jessica_Mitford 0 Jessica_Lucy_Mitford 0 001 @i 10794014 n 0000 | United States writer (born in England) who wrote on American culture (1917-1996) -11183387 18 n 03 Mithridates 0 Mithridates_VI 0 Mithridates_the_Great 0 001 @i 10231515 n 0000 | ancient king of Pontus who expanded his kingdom by defeating the Romans but was later driven out by Pompey (132-63 BC) -11183605 18 n 03 Mitterrand 0 Francois_Mitterrand 0 Francois_Maurice_Marie_Mitterrand 0 001 @i 10650162 n 0000 | French statesman and president of France from 1981 to 1985 (1916-1996) -11183791 18 n 03 Mobius 0 August_F._Mobius 0 August_Ferdinand_Mobius 0 001 @i 10301261 n 0000 | German mathematician responsible for the Mobius strip (1790-1868) -11183955 18 n 02 Modigliani 0 Amedeo_Modigliano 0 002 @i 10391653 n 0000 @i 10566072 n 0000 | Italian painter and sculptor (1884-1920) -11184092 18 n 05 Mohammed 0 Mohammad 0 Muhammad 0 Mahomet 0 Mahound 0 001 @i 10483890 n 0000 | the Arab prophet who, according to Islam, was the last messenger of Allah (570-632) -11184273 18 n 03 Mohammed_Ali 0 Mehemet_Ali 0 Muhammad_Ali 1 001 @i 10622053 n 0000 | Albanian soldier in the service of Turkey who was made viceroy of Egypt and took control away from the Ottoman Empire and established Egypt as a modern state (1769-1849) -11184531 18 n 02 Mohorovicic 0 Andrija_Mohorovicic 0 001 @i 10128519 n 0000 | Yugoslav geophysicist for whom the Mohorovicic discontinuity was named (1857-1936) -11184694 18 n 02 Moliere 0 Jean-Baptiste_Poquelin 0 001 @i 10030277 n 0000 | French author of sophisticated comedies (1622-1673) -11184825 18 n 02 Molnar 0 Ferenc_Molnar 0 001 @i 10030277 n 0000 | Hungarian playwright (1878-1952) -11184927 18 n 02 Molotov 0 Vyacheslav_Mikhailovich_Molotov 0 001 @i 10650162 n 0000 | Soviet statesman (1890-1986) -11185044 18 n 02 Mommsen 0 Theodor_Mommsen 0 001 @i 10177150 n 0000 | German historian noted for his history of Rome (1817-1903) -11185175 18 n 02 Mondrian 0 Piet_Mondrian 0 001 @i 09758424 n 0000 | Dutch painter whose work (intersecting lines at right angles and planes in primary colors) influenced the development of abstract art (1872-1944) -11185392 18 n 02 Monet 0 Claude_Monet 0 001 @i 10391653 n 0000 | French impressionist painter (1840-1926) -11185500 18 n 03 Monk 1 Thelonious_Monk 0 Thelonious_Sphere_Monk 0 001 @i 10220486 n 0000 | United States jazz pianist who was one of the founders of the bebop style (1917-1982) -11185680 18 n 02 Monnet 0 Jean_Monnet 0 001 @i 10043643 n 0000 | French economist who advocated a Common Market in Europe (1888-1979) -11185816 18 n 03 Monod 0 Jacques_Monod 0 Jacques_Lucien_Monod 0 001 @i 09854915 n 0000 | French biochemist who (with Francois Jacob) explained how genes are activated and suggested the existence of messenger RNA (1910-1976) -11186042 18 n 03 Monroe 0 James_Monroe 0 President_Monroe 0 001 @i 10467395 n 0000 | 5th President of the United States; author of the Monroe Doctrine (1758-1831) -11186207 18 n 03 Monroe 1 Marilyn_Monroe 0 Norma_Jean_Baker 0 001 @i 09767700 n 0000 | United States film actress noted for sex appeal (1926-1962) -11186356 18 n 02 Montagu 0 Ashley_Montagu 0 001 @i 09796323 n 0000 | United States anthropologist (born in England) who popularized anthropology (1905-) -11186511 18 n 03 Montaigne 0 Michel_Montaigne 0 Michel_Eyquem_Montaigne 0 001 @i 10794014 n 0000 | French writer regarded as the originator of the modern essay (1533-1592) -11186685 18 n 03 Montespan 0 Marquise_de_Montespan 0 Francoise-Athenais_de_Rochechouart 0 001 @i 10293590 n 0000 | French noblewoman who was mistress to Louis XIV until he became attracted to Madame de Maintenon (1641-1707) -11186911 18 n 03 Montesquieu 0 Baron_de_la_Brede_et_de_Montesquieu 0 Charles_Louis_de_Secondat 0 001 @i 10423589 n 0000 | French political philosopher who advocated the separation of executive and legislative and judicial powers (1689-1755) -11187154 18 n 02 Montessori 0 Maria_Montesorri 0 001 @i 10045713 n 0000 | Italian educator who developed a method of teaching mentally handicapped children and advocated a child-centered approach (1870-1952) -11187364 18 n 02 Monteverdi 0 Claudio_Monteverdi 0 001 @i 09947232 n 0000 | Italian composer (1567-1643) -11187471 18 n 03 Montez 0 Lola_Montez 0 Marie_Dolores_Eliza_Rosanna_Gilbert 0 001 @i 09989502 n 0000 | Irish dancer (1818-1861) -11187601 18 n 01 Montezuma_II 0 001 @i 10053004 n 0000 | the last Aztec emperor in Mexico who was overthrown and killed by Hernando Cortes (1466-1520) -11187754 18 n 03 Montfort 0 Simon_de_Montfort 0 Earl_of_Leicester 0 001 @i 10041373 n 0000 | an English nobleman who led the baronial rebellion against Henry III (1208-1265) -11187930 18 n 02 Montgolfier 0 Josef_Michel_Montgolfier 0 001 @i 09835348 n 0000 | French inventor who (with his brother Jacques Etienne Montgolfier) pioneered hot-air ballooning (1740-1810) -11188123 18 n 02 Montgolfier 1 Jacques_Etienne_Montgolfier 0 001 @i 09835348 n 0000 | French inventor who (with his brother Josef Michel Montgolfier) pioneered hot-air ballooning (1745-1799) -11188316 18 n 04 Montgomery 0 Bernard_Law_Montgomery 0 Sir_Bernard_Law_Montgomery 0 1st_Viscount_Montgomery_of_Alamein 0 001 @i 10123844 n 0000 | English general during World War II; won victories over Rommel in North Africa and led British ground forces in the invasion of Normandy (1887-1976) -11188613 18 n 03 Montgomery 1 L._M._Montgomery 0 Lucy_Maud_Montgomery 0 001 @i 10794014 n 0000 | Canadian novelist (1874-1942) -11188742 18 n 02 Moody 0 Dwight_Lyman_Moody 0 001 @i 10067011 n 0000 | United States evangelist (1837-1899) -11188852 18 n 04 Moody 1 Helen_Wills_Moody 0 Helen_Wills 0 Helen_Newington_Wills 0 001 @i 10701180 n 0000 | United States tennis player who dominated women's tennis in the 1920s and 1930s (1905-1998) -11189054 18 n 02 Moon 0 Sun_Myung_Moon 0 001 @i 10519494 n 0000 | United States religious leader (born in Korea) who founded the Unification Church in 1954; was found guilty of conspiracy to evade taxes (born in 1920) -11189274 18 n 03 Moore 0 Henry_Moore 0 Henry_Spencer_Moore 0 001 @i 10566072 n 0000 | British sculptor whose works are monumental organic forms (1898-1986) -11189432 18 n 03 Moore 1 Marianne_Moore 0 Marianne_Craig_Moore 0 001 @i 10444194 n 0000 | United States poet noted for irony and wit (1887-1872) -11189579 18 n 02 Moore 2 Thomas_Moore 0 001 @i 10444194 n 0000 | Irish poet who wrote nostalgic and patriotic verse (1779-1852) -11189709 18 n 03 Moore 3 G._E._Moore 0 George_Edward_Moore 0 001 @i 10423589 n 0000 | English philosopher (1873-1958) -11189829 18 n 03 Moore 4 Dudley_Moore 0 Dudley_Stuart_John_Moore 0 002 @i 09765278 n 0000 @i 09940146 n 0000 | English actor and comedian who appeared on television and in films (born in 1935) -11190024 18 n 02 Moore 5 Douglas_Moore 0 001 @i 09947232 n 0000 | United States composer of works noted for their use of the American vernacular (1893-1969) -11190183 18 n 03 More 0 Thomas_More 0 Sir_Thomas_More 0 002 @i 10650162 n 0000 @i 10794014 n 0000 | English statesman who opposed Henry VIII's divorce from Catherine of Aragon and was imprisoned and beheaded; recalled for his concept of Utopia, the ideal state -11190446 18 n 03 Morgan 0 J._P._Morgan 0 John_Pierpont_Morgan 0 001 @i 10090020 n 0000 | United States financier and philanthropist (1837-1913) -11190592 18 n 02 Morgan 1 Daniel_Morgan 0 001 @i 10622053 n 0000 | soldier in the American Revolution who defeated the British in the battle of Cowpens, South Carolina (1736-1802) -11190774 18 n 03 Morgan 2 Henry_Morgan 0 Sir_Henry_Morgan 0 001 @i 10435367 n 0000 | a Welsh buccaneer who raided Spanish colonies in the West Indies for the English (1635-1688) -11190954 18 n 02 Morgan 3 Thomas_Hunt_Morgan 0 001 @i 09855630 n 0000 | United States biologist who formulated the chromosome theory of heredity (1866-1945) -11191113 18 n 02 Morgan 4 Lewis_Henry_Morgan 0 001 @i 09796323 n 0000 | United States anthropologist who studied the Seneca (1818-1881) -11191251 18 n 04 Morley 0 E._W._Morley 0 Edward_Morley 0 Edward_Williams_Morley 0 001 @i 09913824 n 0000 | United States chemist and physicist who collaborated with Michelson in the Michelson-Morley experiment (1838-1923) -11191475 18 n 01 Mormon 0 001 @i 10483890 n 0000 | the ancient prophet whose writings were revealed to Joseph Smith who founded the Church of Jesus Christ of Latter-Day Saints -11191653 18 n 02 Morris 0 Gouverneur_Morris 0 001 @i 10650162 n 0000 | United States statesman who led the committee that produced the final draft of the United States Constitution (1752-1816) -11191848 18 n 02 Morris 1 Robert_Morris 0 002 @i 09740085 n 0000 @i 10090020 n 0000 | leader of the American Revolution who signed the Declaration of Independence and raised money for the Continental Army (1734-1806) -11192067 18 n 02 Morris 2 William_Morris 0 002 @i 10444194 n 0000 @i 09974648 n 0000 | English poet and craftsman (1834-1896) -11192195 18 n 03 Morris 3 Esther_Morris 0 Esther_Hobart_McQuigg_Slack_Morris 0 001 @i 10672908 n 0000 | United States suffragist in Wyoming (1814-1902) -11192349 18 n 03 Morrison 0 Toni_Morrison 0 Chloe_Anthony_Wofford 0 001 @i 10794014 n 0000 | United States writer whose novels describe the lives of African-Americans (born in 1931) -11192533 18 n 03 Morrison 1 Jim_Morrison 0 James_Douglas_Morrison 0 001 @i 10536416 n 0000 | United States rock singer (1943-1971) -11192666 18 n 04 Morse 0 Samuel_Morse 0 Samuel_F._B._Morse 0 Samuel_Finley_Breese_Morse 0 002 @i 10214637 n 0000 @i 10391653 n 0000 | United States portrait painter who patented the telegraph and developed the Morse code (1791-1872) -11192901 18 n 02 Mortimer 0 Roger_de_Mortimer 0 001 @i 10271677 n 0000 | English nobleman who deposed Edward II and was executed by Edward III (1287-1330) -11193058 18 n 03 Morton 0 Jelly_Roll_Morton 0 Ferdinand_Joseph_La_Menthe_Morton 0 001 @i 10220486 n 0000 | United States jazz musician who moved from ragtime to New Orleans jazz (1885-1941) -11193250 18 n 02 Mosander 0 Carl_Gustaf_Mossander 0 001 @i 09913824 n 0000 | Swedish chemist who discovered rare earth elements (1797-1858) -11193392 18 n 01 Moses 0 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) the Hebrew prophet who led the Israelites from Egypt across the Red sea on a journey known as the Exodus; Moses received the Ten Commandments from God on Mount Sinai -11193645 18 n 03 Moses 1 Grandma_Moses 0 Anna_Mary_Robertson_Moses 0 001 @i 10391653 n 0000 | United States painter of colorful and primitive rural scenes (1860-1961) -11193814 18 n 02 Mossbauer 0 Rudolf_Ludwig_Mossbauer 0 001 @i 10364643 n 0000 | German physicist (born in 1929) -11193928 18 n 02 Motherwell 0 Robert_Motherwell 0 001 @i 10391653 n 0000 | United States abstract expressionist painter (1915-1991) -11194062 18 n 02 Mott 0 Lucretia_Coffin_Mott 0 002 @i 10672908 n 0000 @i 10084635 n 0000 | United States feminist and suffragist (1793-1880) -11194205 18 n 02 Moynihan 0 Daniel_Patrick_Moynihan 0 002 @i 10450303 n 0000 @i 10045713 n 0000 | United States politician and educator (1927-2003) -11194355 18 n 02 Mozart 0 Wolfgang_Amadeus_Mozart 0 003 @i 09947232 n 0000 + 03035675 a 0101 + 03035675 a 0102 | prolific Austrian composer and child prodigy; master of the classical style in all its forms of his time (1756-1791) -11194587 18 n 02 Mubarak 0 Hosni_Mubarak 0 001 @i 10650162 n 0000 | Egyptian statesman who became president in 1981 after Sadat was assassinated (born in 1929) -11194749 18 n 02 Muhammad 1 Elijah_Muhammad 0 001 @i 09858733 n 0000 | leader of Black Muslims who campaigned for independence for Black Americans (1897-1975) -11194910 18 n 02 Muir 0 John_Muir 0 001 @i 10346514 n 0000 | United States naturalist (born in England) who advocated the creation of national parks (1838-1914) -11195073 18 n 02 Mullah_Omar 0 Mullah_Mohammed_Omar 0 001 @i 10450303 n 0000 | reclusive Afghanistani politician and leader of the Taliban who imposed a strict interpretation of shariah law on Afghanistan (born in 1960) -11195295 18 n 02 Muller 0 Hermann_Joseph_Muller 0 001 @i 10126424 n 0000 | United States geneticist who studied the effects of X-rays on genes (1890-1967) -11195452 18 n 03 Muller 1 Max_Muller 0 Friedrich_Max_Muller 0 001 @i 10423225 n 0000 | British philologist (born in Germany) who specialized in Sanskrit (1823-1900) -11195619 18 n 03 Muller 2 Johann_Muller 0 Regiomontanus 0 002 @i 10301261 n 0000 @i 09818343 n 0000 | German mathematician and astronomer (1436-1476) -11195771 18 n 02 Muller 3 Johannes_Peter_Muller 0 002 @i 10429965 n 0000 @i 09792237 n 0000 | German physiologist and anatomist (1801-1858) -11195913 18 n 02 Muller 4 Karl_Alex_Muller 0 001 @i 10364643 n 0000 | Swiss physicist who studied superconductivity (born in 1927) -11196046 18 n 02 Muller 5 Paul_Hermann_Muller 0 001 @i 09913824 n 0000 | Swiss chemist who synthesized DDT and discovered its use as an insecticide (1899-1965) -11196208 18 n 02 Munch 0 Edvard_Munch 0 001 @i 10391653 n 0000 | Norwegian painter (1863-1944) -11196305 18 n 04 Munchhausen 0 Karl_Friedrich_Hieronymus_von_Munchhausen 0 Munchausen 0 Baron_Munchausen 0 001 @i 09793352 n 0000 | German raconteur who told preposterous stories about his adventures as a soldier and hunter; his name is now associated with any telling of exaggerated stories or winning lies (1720-1797) -11196627 18 n 04 Munro 0 H._H._Munro 0 Hector_Hugh_Munro 0 Saki 0 001 @i 10794014 n 0000 | British writer of short stories (1870-1916) -11196764 18 n 03 Murdoch 0 Iris_Murdoch 0 Dame_Jean_Iris_Murdoch 0 001 @i 10794014 n 0000 | British writer (born in Ireland) known primarily for her novels (1919-1999) -11196934 18 n 03 Murdoch 1 Rupert_Murdoch 0 Keith_Rupert_Murdoch 0 002 @i 10491309 n 0000 ;r 08831004 n 0000 | United States publisher (born in Australia in 1931) -11197099 18 n 07 Murray 0 James_Murray 0 James_Augustus_Murray 0 James_Augustus_Henry_Murray 0 Sir_James_Murray 0 Sir_James_Augustus_Murray 0 Sir_James_Augustus_Henry_Murray 0 002 @i 10423225 n 0000 @i 10256080 n 0000 | Scottish philologist and the lexicographer who shaped the Oxford English Dictionary (1837-1915) -11197417 18 n 03 Murray 1 Gilbert_Murray 0 George_Gilbert_Aime_Murphy 0 001 @i 09926656 n 0000 | British classical scholar (born in Australia) who advocated the League of Nations and the United Nations (1866-1957) -11197633 18 n 02 Murillo 0 Bartolome_Esteban_Murillo 0 001 @i 10391653 n 0000 | Spanish painter (1617-1682) -11197743 18 n 03 Murrow 0 Edward_R._Murrow 0 Edward_Roscoe_Murrow 0 001 @i 09875979 n 0000 | United States broadcast journalist remembered for his reports from London during World War II (1908-1965) -11197944 18 n 04 Musial 0 Stan_Musial 0 Stanley_Frank_Musial 0 Stan_the_Man 0 001 @i 09835506 n 0000 | United States baseball player (born in 1920) -11198094 18 n 03 Musset 0 Alfred_de_Musset 0 Louis_Charles_Alfred_de_Musset 0 002 @i 10794014 n 0000 @i 10444194 n 0000 | French poet and writer (1810-1857) -11198253 18 n 03 Mussolini 0 Benito_Mussolini 0 Il_Duce 0 001 @i 10011902 n 0000 | Italian fascist dictator (1883-1945) -11198375 18 n 06 Mussorgsky 0 Moussorgsky 0 Modest_Mussorgsky 0 Modest_Moussorgsky 0 Modest_Petrovich_Mussorgsky 0 Modest_Petrovich_Moussorgsky 0 001 @i 09947232 n 0000 | Russian composer of operas and orchestral works (1839-1881) -11198608 18 n 03 Muybridge 0 Eadweard_Muybridge 0 Edward_James_Muggeridge 0 001 @i 10214637 n 0000 | United States motion-picture pioneer remembered for his pictures of running horses taken with a series of still cameras (born in England) (1830-1904) -11198861 18 n 03 Myrdal 0 Gunnar_Myrdal 0 Karl_Gunnar_Myrdal 0 001 @i 10043643 n 0000 | Swedish economist (1898-1987) -11198981 18 n 03 Nabokov 0 Vladimir_Nabokov 0 Vladimir_vladimirovich_Nabokov 0 001 @i 10794014 n 0000 | United States writer (born in Russia) (1899-1977) -11199137 18 n 01 Nahum 0 001 @i 10483890 n 0000 | a Hebrew minor prophet of the 7th century BC -11199234 18 n 02 Naismith 0 James_Naismith 0 001 @i 10045713 n 0000 | United States educator (born in Canada) who invented the game of basketball (1861-1939) -11199394 18 n 02 Nanak 0 Guru_Nanak 0 002 @i 10519494 n 0000 ;c 06239931 n 0000 | Indian religious leader who founded Sikhism in dissent from the caste system of Hinduism; he taught that all men had a right to search for knowledge of God and that spiritual liberation could be attained by meditating on the name of God (1469-1538) -11199727 18 n 02 Nansen 0 Fridtjof_Nansen 0 002 @i 10072708 n 0000 @i 10650162 n 0000 | Norwegian explorer of the Arctic and director of the League of Nations relief program for refugees of World War I (1861-1930) -11199943 18 n 02 Naomi 0 Noemi 0 001 @i 10333317 n 0000 | the mother-in-law of Ruth whose story is told in the Book of Ruth in the Old Testament -11200090 18 n 02 Napier 0 John_Napier 0 001 @i 10301261 n 0000 | Scottish mathematician who invented logarithms; introduced the use of the decimal point in writing numbers (1550-1617) -11200276 18 n 05 Napoleon 0 Napoleon_I 0 Napoleon_Bonaparte 0 Bonaparte 0 Little_Corporal 0 003 @i 10123844 n 0000 @i 10053004 n 0000 + 03035876 a 0101 | French general who became emperor of the French (1769-1821) -11200492 18 n 03 Napoleon_III 0 Emperor_Napoleon_III 0 Charles_Louis_Napoleon_Bonaparte 0 001 @i 10053004 n 0000 | nephew of Napoleon I and emperor of the French from 1852 to 1871 (1808-1873) -11200686 18 n 02 Nash 0 Ogden_Nash 0 001 @i 10794014 n 0000 | United States writer noted for his droll epigrams (1902-1971) -11200812 18 n 02 Nasser 0 Gamal_Abdel_Nasser 0 001 @i 10650162 n 0000 | Egyptian statesman who nationalized the Suez Canal (1918-1970) -11200949 18 n 02 Nast 0 Thomas_Nast 0 001 @i 09898346 n 0000 | United States political cartoonist (1840-1902) -11201061 18 n 03 Nation 0 Carry_Nation 0 Carry_Amelia_Moore_Nation 0 001 @i 10037922 n 0000 | United States prohibitionist who raided saloons and destroyed bottles of liquor with a hatchet (1846-1911) -11201264 18 n 02 Natta 0 Giulio_Natta 0 001 @i 09913824 n 0000 | Italian chemist noted for work on polymers (1903-1979) -11201386 18 n 0b Sanchez 0 Ilich_Sanchez 0 Ilich_Ramirez_Sanchez 0 Carlos 0 Carlos_the_Jackal 0 Salim 0 Andres_Martinez 0 Taurus 1 Glen_Gebhard 0 Hector_Hevodidbon 0 Michael_Assat 0 002 @i 10702781 n 0000 ;c 00759694 n 0000 | Venezuelan master terrorist raised by a Marxist-Leninist father; trained and worked with many terrorist groups (born in 1949) -11201740 18 n 02 Navratilova 0 Martina_Navratilova 0 001 @i 10701180 n 0000 | United States tennis player (born in Czechoslovakia) who won nine Wimbledon women's singles championships (born in 1956) -11201941 18 n 02 Nazimova 0 Alla_Nazimova 0 001 @i 09767700 n 0000 | United States actress (born in Russia) (1879-1945) -11202063 18 n 04 Nebuchadnezzar 0 Nebuchadnezzar_II 0 Nebuchadrezzar 0 Nebuchadrezzar_II 0 002 @i 10231515 n 0000 ;c 06449735 n 0000 | (Old Testament) king of Chaldea who captured and destroyed Jerusalem and exiled the Israelites to Babylonia (630?-562 BC) -11202322 18 n 02 Nicholas_V 0 Tomasso_Parentucelli 0 001 @i 10453533 n 0000 | Italian pope from 1447 to 1455 who founded the Vatican library (1397-1455) -11202477 18 n 01 Nimrod 0 002 @i 10193026 n 0000 ;c 06449735 n 0000 | (Old Testament) a famous hunter -11202581 18 n 02 Neel 0 Louis_Eugene_Felix_Neel 0 001 @i 10428004 n 0000 | French physicist noted for research on magnetism (born in 1904) -11202722 18 n 01 Nefertiti 0 001 @i 10499857 n 0000 | queen of Egypt and wife of Akhenaton (14th century BC) -11202833 18 n 02 Nehru 0 Jawaharlal_Nehru 0 001 @i 10650162 n 0000 | Indian statesman and leader with Gandhi in the struggle for home rule; was the first prime minister of the Republic of India from 1947 to 1964 (1889-1964) -11203059 18 n 05 Nelson 0 Horatio_Nelson 0 Viscount_Nelson 0 Admiral_Nelson 0 Lord_Nelson 0 001 @i 09771204 n 0000 | English admiral who defeated the French fleets of Napoleon but was mortally wounded at Trafalgar (1758-1805) -11203287 18 n 02 Nernst 0 Walther_Hermann_Nernst 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | German physicist and chemist who formulated the third law of thermodynamics (1864-1941) -11203472 18 n 03 Nero 0 Nero_Claudius_Caesar_Drusus_Germanicus 0 Lucius_Domitius_Ahenobarbus 0 001 @i 10537240 n 0000 | Roman Emperor notorious for his monstrous vice and fantastic luxury (was said to have started a fire that destroyed much of Rome in 64) but the Roman Empire remained prosperous during his rule (37-68) -11203795 18 n 04 Neruda 0 Pablo_Neruda 0 Reyes 0 Neftali_Ricardo_Reyes 0 001 @i 10444194 n 0000 | Chilean poet (1904-1973) -11203920 18 n 02 Nervi 0 Pier_Luigi_Nervi 0 001 @i 09805475 n 0000 | Italian architect who pioneered in the use of reinforced concrete (1891-1979) -11204069 18 n 02 Nerva 0 Marcus_Cocceius_Nerva 0 001 @i 10537240 n 0000 | Emperor of Rome who introduced a degree of freedom after the repressive reign of Domitian; adopted Trajan as his successor (30-98) -11204276 18 n 01 Nestor 0 002 @i 09968845 n 0000 ;c 07979425 n 0000 | (Greek mythology) a wise old counselor to the Greeks at Troy -11204409 18 n 01 Nestorius 0 002 @i 10406905 n 0000 + 02768611 a 0101 | Syrian who was a Christian bishop and Patriarch of Constantinople in the early fifth century; one of the major heresies concerning the doctrine of the hypostasis of Christ was named after him (died in 451) -11204689 18 n 02 Nevelson 0 Louise_Nevelson 0 001 @i 10566072 n 0000 | United States sculptor (born in Russia) known for massive shapes of painted wood (1899-1988) -11204855 18 n 02 Newcomb 0 Simon_Newcomb 0 001 @i 09818343 n 0000 | United States astronomer (1835-1909) -11204962 18 n 03 Newman 0 John_Henry_Newman 0 Cardinal_Newman 0 002 @i 09807075 n 0000 @i 10705615 n 0000 | English prelate and theologian who (with John Keble and Edward Pusey) founded the Oxford movement; Newman later turned to Roman Catholicism and became a cardinal (1801-1890) -11205246 18 n 03 Newman 1 Paul_Newman 0 Paul_Leonard_Newman 0 001 @i 09765278 n 0000 | United States film actor (born in 1925) -11205375 18 n 03 Newton 0 Isaac_Newton 0 Sir_Isaac_Newton 0 003 @i 10301261 n 0000 @i 10428004 n 0000 + 03036014 a 0101 | English mathematician and physicist; remembered for developing the calculus and for his law of gravitation and his three laws of motion (1642-1727) -11205647 18 n 03 Ney 0 Michel_Ney 0 Duc_d'Elchingen 0 002 @i 10123844 n 0000 @i 10296176 n 0000 | French marshal in the Napoleonic Wars (1769-1815) -11205797 18 n 03 Nicholas 0 Saint_Nicholas 0 St._Nicholas 0 002 @i 09857200 n 0000 @i 10547145 n 0000 | a bishop in Asia Minor who is associated with Santa Claus (4th century) -11205975 18 n 02 Nicholas_I 0 Czar_Nicholas_I 0 002 @i 09987239 n 0000 ;r 09002814 n 0000 | czar of Russia from 1825 to 1855 who led Russia into the Crimean War (1796-1855) -11206150 18 n 01 Nicholas_II 0 001 @i 09987239 n 0000 | the last czar of Russia who was forced to abdicate in 1917 by the Russian Revolution; he and his family were executed by the Bolsheviks (1868-1918) -11206356 18 n 03 Nicklaus 0 Jack_Nicklaus 0 Jack_William_Nicklaus 0 001 @i 10136959 n 0000 | United States golfer considered by many to be the greatest golfer of all time (born in 1940) -11206544 18 n 03 Nicolson 0 Harold_Nicolson 0 Sir_Harold_George_Nicolson 0 002 @i 10013927 n 0000 @i 10794014 n 0000 | English diplomat and author (1886-1968) -11206705 18 n 02 Niebuhr 0 Barthold_George_Niebuhr 0 001 @i 10177150 n 0000 | German historian noted for his critical approach to sources and for his history of Rome (1776-1831) -11206885 18 n 02 Niebuhr 1 Reinhold_Niebuhr 0 001 @i 10705615 n 0000 | United States Protestant theologian (1892-1971) -11207006 18 n 03 Nielsen 0 Carl_Nielsen 0 Carl_August_Nielsen 0 001 @i 09947232 n 0000 | Danish composer (1865-1931) -11207125 18 n 02 Nietzsche 0 Friedrich_Wilhelm_Nietzsche 0 001 @i 10423589 n 0000 | influential German philosopher remembered for his concept of the superman and for his rejection of Christian values; considered, along with Kierkegaard, to be a founder of existentialism (1844-1900) -11207410 18 n 03 Nightingale 0 Florence_Nightingale 0 Lady_with_the_Lamp 0 001 @i 10366966 n 0000 | English nurse remembered for her work during the Crimean War (1820-1910) -11207585 18 n 03 Nijinsky 0 Vaslav_Nijinsky 0 Waslaw_Nijinsky 0 001 @i 09989502 n 0000 | Russian dancer considered by many to be the greatest dancer of the 20th century (1890-1950) -11207768 18 n 03 Nilsson 0 Brigit_Nilsson 0 Marta_Brigit_Nilsson 0 001 @i 10625546 n 0000 | Swedish operatic soprano who played Wagnerian roles (born in 1918) -11207929 18 n 04 Nimitz 0 Chester_Nimitz 0 Chester_William_Nimitz 0 Admiral_Nimitz 0 001 @i 10347593 n 0000 | United States admiral of the Pacific fleet during World War II who used aircraft carriers to destroy the Japanese navy (1885-1966) -11208172 18 n 05 Nixon 0 Richard_Nixon 0 Richard_M._Nixon 0 Richard_Milhous_Nixon 0 President_Nixon 0 001 @i 10467395 n 0000 | vice president under Eisenhower and 37th President of the United States; resigned after the Watergate scandal in 1974 (1913-1994) -11208431 18 n 01 Noah 0 001 @i 10406391 n 0000 | the Hebrew patriarch who saved himself and his family and the animals by building an ark in which they survived 40 days and 40 nights of rain; the story of Noah and the flood is told in the Book of Genesis -11208688 18 n 03 Nobel 0 Alfred_Nobel 0 Alfred_Bernhard_Nobel 0 002 @i 09913824 n 0000 @i 10421956 n 0000 | Swedish chemist remembered for his invention of dynamite and for the bequest that created the Nobel prizes (1833-1896) -11208917 18 n 02 Noether 0 Emmy_Noether 0 001 @i 10301261 n 0000 | German mathematician (1882-1935) -11209019 18 n 02 Noguchi 0 Hideyo_Noguchi 0 001 @i 09831411 n 0000 | United States bacteriologist (born in Japan) who discovered the cause of yellow fever and syphilis (1876-1928) -11209201 18 n 02 Noguchi 1 Isamu_Noguchi 0 001 @i 10566072 n 0000 | United States sculptor (1904-1988) -11209306 18 n 03 Norman 1 Greg_Norman 0 Gregory_John_Norman 0 001 @i 10136959 n 0000 | Australian golfer (born in 1955) -11209428 18 n 02 Norman 2 Jessye_Norman 0 001 @i 10625546 n 0000 | United States operatic soprano (born in 1945) -11209543 18 n 03 Norris 0 Frank_Norris 0 Benjamin_Franklin_Norris_Jr. 0 001 @i 10794014 n 0000 | United States writer (1870-1902) -11209675 18 n 02 Norrish 0 Ronald_George_Wreyford_Norrish 0 001 @i 09913824 n 0000 | English chemist (1897-1978) -11209790 18 n 03 North 0 Frederick_North 0 Second_Earl_of_Guilford 0 001 @i 10650162 n 0000 | British statesman under George III whose policies led to rebellion in the American colonies (1732-1792) -11209990 18 n 02 Northrop 0 John_Howard_Northrop 0 001 @i 09854915 n 0000 | United States biochemist (1891-1987) -11210105 18 n 02 Nostradamus 0 Michel_de_Notredame 0 001 @i 09817816 n 0000 | French astrologer who wrote cryptic predictions whose interpretations are still being debated (1503-1566) -11210291 18 n 02 Noyes 0 Alfred_Noyes 0 001 @i 10444194 n 0000 | English poet (1880-1958) -11210383 18 n 03 Nuffield 0 William_Richard_Morris 0 First_Viscount_Nuffield 0 002 @i 10204177 n 0000 @i 10421956 n 0000 | British industrialist who manufactured automobiles and created a philanthropic foundation (1877-1963) -11210610 18 n 02 Nureyev 0 Rudolf_Nureyev 0 001 @i 09989502 n 0000 | Russian dancer who was often the partner of Dame Margot Fonteyn and who defected to the United States in 1961 (born in 1938) -11210806 18 n 02 Oakley 0 Annie_Oakley 0 001 @i 10294953 n 0000 | United States sharpshooter who was featured in Buffalo Bill's Wild West Show (1860-1926) -11210963 18 n 02 Oates 0 Joyce_Carol_Oates 0 001 @i 10794014 n 0000 | United States writer (born in 1938) -11211071 18 n 02 Oates 1 Titus_Oates 0 001 @i 09958892 n 0000 | English conspirator who claimed that there was a Jesuit plot to assassinate Charles II (1649-1705) -11211236 18 n 02 Obadiah 0 Abdias 0 001 @i 10483890 n 0000 | a Hebrew minor prophet -11211322 18 n 02 O'Brien 0 Edna_O'Brien 0 001 @i 10794014 n 0000 | Irish writer (born in 1932) -11211419 18 n 02 O'Casey 0 Sean_O'Casey 0 001 @i 10030277 n 0000 | Irish playwright (1880-1964) -11211517 18 n 04 Occam 0 William_of_Occam 0 Ockham 0 William_of_Ockham 0 001 @i 10423589 n 0000 | English scholastic philosopher and assumed author of Occam's Razor (1285-1349) -11211696 18 n 02 Ochoa 0 Severo_Ochoa 0 001 @i 09854915 n 0000 | United States biochemist (born in Spain) who studied the biological synthesis of nucleic acids (1905-1993) -11211870 18 n 02 Ochs 0 Adolph_Simon_Ochs 0 001 @i 10491309 n 0000 | United States newspaper publisher (1858-1935) -11211987 18 n 03 O'Connor 0 Flannery_O'Connor 0 Mary_Flannery_O'Connor 0 001 @i 10794014 n 0000 | United States writer (1925-1964) -11212120 18 n 02 Odets 0 Clifford_Odets 0 001 @i 10030277 n 0000 | United States playwright (1906-1963) -11212226 18 n 03 Odoacer 0 Odovacar 0 Odovakar 0 001 @i 10553402 n 0000 | Germanic barbarian leader who ended the Western Roman Empire in 476 and became the first barbarian ruler of Italy (434-493) -11212426 18 n 02 Oersted 0 Hans_Christian_Oersted 0 001 @i 10428004 n 0000 | Danish physicist (1777-1851) -11212534 18 n 02 Offenbach 0 Jacques_Offenbach 0 001 @i 09947232 n 0000 | French composer of many operettas and an opera (1819-1880) -11212669 18 n 02 O'Flaherty 0 Liam_O'Flaherty 0 001 @i 10794014 n 0000 | Irish writer of short stories (1896-1984) -11212786 18 n 03 Ogden 0 C._K._Ogden 0 Charles_Kay_Ogden 0 002 @i 10488865 n 0000 @i 10577820 n 0000 | English psychologist who collaborated with I. A. Richards in designing Basic English (1889-1957) -11212988 18 n 02 O'Hara 0 John_Henry_O'Hara 0 001 @i 10794014 n 0000 | United States writer (1905-1970) -11213094 18 n 02 Ohm 0 Georg_Simon_Ohm 0 001 @i 10428004 n 0000 | German physicist who formulated Ohm's law (1787-1854) -11213216 18 n 02 O'Keeffe 0 Georgia_Okeeffe 0 001 @i 10391653 n 0000 | United States painter (1887-1986) -11213323 18 n 04 Oken 0 Lorenz_Oken 0 Okenfuss 0 Lorenz_Okenfuss 0 001 @i 10346514 n 0000 | German naturalist whose speculations that plants and animals are made up of tiny living `infusoria' led to the cell theory (1779-1851) -11213552 18 n 06 Olaf_II 0 Olav_II 0 Saint_Olaf 0 Saint_Olav 0 St._Olaf 0 St._Olav 0 002 @i 10231515 n 0000 @i 10547145 n 0000 | King and patron saint of Norway (995-1030) -11213726 18 n 03 Oldenburg 0 Claes_Oldenburg 0 Claes_Thure_Oldenburg 0 001 @i 10566072 n 0000 | United States sculptor (born in Sweden); a leader of the pop art movement who was noted for giant sculptures of common objects (born in 1929) -11213966 18 n 03 Oldfield 0 Barney_Oldfield 0 Berna_Eli_Oldfield 0 001 @i 10502576 n 0000 | United States race driver who was the first to drive faster than a mile a minute (1878-1946) -11214153 18 n 03 Oliver 0 Joseph_Oliver 0 King_Oliver 0 001 @i 10220486 n 0000 | United States jazz musician who influenced the style of Louis Armstrong (1885-1938) -11214320 18 n 04 Olivier 0 Laurence_Olivier 0 Sir_Laurence_Kerr_Olivier 0 Baron_Olivier_of_Birghton 0 001 @i 09765278 n 0000 | English actor best know for his Shakespearean roles (1907-1989) -11214513 18 n 02 Olmsted 0 Frederick_Law_Olmsted 0 001 @i 10245863 n 0000 | United States landscape architect primarily responsible for the design of Central Park in New York City (1822-1903) -11214707 18 n 01 Omar_Khayyam 0 003 @i 10444194 n 0000 @i 10301261 n 0000 @i 09818343 n 0000 | Persian poet and mathematician and astronomer whose poetry was popularized by Edward Fitzgerald's translation (1050-1123) -11214926 18 n 03 Ondaatje 0 Michael_Ondaatje 0 Philip_Michael_Ondaatje 0 001 @i 10794014 n 0000 | Canadian writer (born in Sri Lanka in 1943) -11215070 18 n 03 O'Neill 0 Eugene_O'Neill 0 Eugene_Gladstone_O'Neill 0 001 @i 10030277 n 0000 | United States playwright (1888-1953) -11215205 18 n 02 Ono 0 Yoko_Ono 0 001 @i 10339966 n 0000 | United States musician (born in Japan) who married John Lennon and collaborated with him on recordings (born in 1933) -11215384 18 n 02 Onsager 0 Lars_Onsager 0 001 @i 09913824 n 0000 | United States chemist (born in Norway) noted for his work in thermodynamics (1903-1976) -11215541 18 n 02 Oort 0 Jan_Hendrix_Oort 0 001 @i 09818343 n 0000 | Dutch astronomer who proved that the galaxy is rotating and proposed the existence of the Oort cloud (1900-1992) -11215724 18 n 02 Opel 0 Wilhelm_von_Opel 0 001 @i 10204177 n 0000 | German industrialist who was the first in Germany to use an assembly line in manufacturing automobiles (1871-1948) -11215909 18 n 02 Oppenheimer 0 Robert_Oppenheimer 0 001 @i 10364643 n 0000 | United States physicist who directed the project at Los Alamos that developed the first atomic bomb (1904-1967) -11216100 18 n 02 Orbison 0 Roy_Orbison 0 002 @i 10599806 n 0000 @i 09947232 n 0000 | United States composer and rockabilly tenor popular in the 1950s (1936-1988) -11216264 18 n 02 Orczy 0 Baroness_Emmusca_Orczy 0 001 @i 10794014 n 0000 | British writer (born in Hungary) (1865-1947) -11216386 18 n 02 Orff 0 Carl_Orff 0 002 @i 10339966 n 0000 @i 10045713 n 0000 | German musician who developed a widely used system for teaching music to children (1895-1982) -11216562 18 n 01 Origen 0 002 @i 10705615 n 0000 @i 10423589 n 0000 | Greek philosopher and theologian who reinterpreted Christian doctrine through the philosophy of Neoplatonism; his work was later condemned as unorthodox (185-254) -11216797 18 n 02 Ormandy 0 Eugene_Ormandy 0 001 @i 09952539 n 0000 | United States conductor (born in Hungary) (1899-1985) -11216922 18 n 03 Orozco 0 Jose_Orozco 0 Jose_Clemente_Orozco 0 001 @i 10338498 n 0000 | Mexican painter noted for his monumental murals (1883-1949) -11217072 18 n 03 Orr 0 Bobby_Orr 0 Robert_Orr 0 001 @i 10179291 n 0000 | Canadian hockey player (born 1948) -11217182 18 n 03 Ortega 0 Daniel_Ortega 0 Daniel_Ortega_Saavedra 0 001 @i 10650162 n 0000 | Nicaraguan statesman (born in 1945) -11217312 18 n 02 Ortega_y_Gasset 0 Jose_Ortega_y_Gasset 0 001 @i 10423589 n 0000 | Spanish philosopher who advocated leadership by an intellectual elite (1883-1955) -11217479 18 n 04 Orwell 0 George_Orwell 0 Eric_Blair 0 Eric_Arthur_Blair 0 002 @i 10794014 n 0000 + 02772012 a 0101 | imaginative British writer concerned with social justice (1903-1950) -11217668 18 n 03 Osborne 0 John_Osborne 0 John_James_Osborne 0 001 @i 10030277 n 0000 | English playwright (1929-1994) -11217789 18 n 02 Osman_I 0 Othman_I 0 001 @i 10052497 n 0000 | the conqueror of Turkey who founded the Ottoman Empire and the Ottoman dynasty that ruled Turkey after the 13th century; conquered most of Asia Minor and assumed the title of emir in 1299 (1259-1326) -11218054 18 n 02 Ostwald 0 Wilhelm_Ostwald 0 001 @i 09913824 n 0000 | German chemist (1853-1932) -11218153 18 n 02 Oswald 0 Lee_Harvey_Oswald 0 001 @i 09813696 n 0000 | United States assassin of President John F. Kennedy (1939-1963) -11218290 18 n 02 Otis 0 Elisha_Graves_Otis 0 002 @i 10214637 n 0000 @i 10204177 n 0000 | United States inventor who manufactured the first elevator with a safety device (1811-1861) -11218473 18 n 03 O'Toole 0 Peter_O'Toole 0 Peter_Seamus_O'Toole 0 002 @i 09765278 n 0000 ;r 08859173 n 0000 | British actor (born in Ireland in 1932) -11218625 18 n 03 Otto_I 0 Otho_I 0 Otto_the_Great 0 002 @i 10234867 n 0000 @i 10181137 n 0000 | King of the Germans and Holy Roman Emperor (912-973) -11218776 18 n 02 Ovid 0 Publius_Ovidius_Naso 0 002 @i 10444194 n 0000 -c 09499230 n 0000 | Roman poet remembered for his elegiac verses on love (43 BC - AD 17) -11218938 18 n 02 Owen 0 Sir_Richard_Owen 0 002 @i 10394786 n 0000 @i 09946672 n 0000 | English comparative anatomist and paleontologist who was an opponent of Darwinism (1804-1892) -11219121 18 n 02 Owen 1 Robert_Owen 0 002 @i 10204177 n 0000 @i 10515194 n 0000 | Welsh industrialist and social reformer who founded cooperative communities (1771-1858) -11219293 18 n 03 Owens 0 Jesse_Owens 0 James_Cleveland_Owens 0 001 @i 09820263 n 0000 | United States athlete and Black American whose success in the 1936 Olympic Games in Berlin outraged Hitler (1913-1980) -11219502 18 n 02 Ozawa 0 Seiji_Ozawa 0 002 @i 09952539 n 0000 ;r 08921850 n 0000 | United States conductor (born in Japan in 1935) -11219635 18 n 03 Paderewski 0 Ignace_Paderewski 0 Ignace_Jan_Paderewski 0 002 @i 10430665 n 0000 @i 10650162 n 0000 | Polish pianist who in 1919 served as the first Prime Minister of independent Poland (1860-1941) -11219851 18 n 02 Paganini 0 Niccolo_Paganini 0 001 @i 10754578 n 0000 | Italian violinist and composer of music for the violin (1782-1840) -11219992 18 n 02 Page 0 Thomas_Nelson_Page 0 002 @i 10794014 n 0000 @i 10013927 n 0000 | United States diplomat and writer about the Old South (1853-1922) -11220149 18 n 02 Page 4 Sir_Frederick_Handley_Page 0 001 @i 10204177 n 0000 | English industrialist who pioneered in the design and manufacture of aircraft (1885-1962) -11220319 18 n 02 Paget 0 Sir_James_Paget 0 001 @i 10011074 n 0000 | English pathologist who discovered the cause of trichinosis (1814-1899) -11220461 18 n 05 Pahlavi 0 Mohammed_Reza_Pahlavi 0 Shah_Pahlavi 0 Pahlevi 0 Mohammed_Reza_Pahlevi 0 001 @i 10585496 n 0000 | Shah of Iran who was deposed in 1979 by Islamic fundamentalists (1919-1980) -11220664 18 n 03 Paige 0 Satchel_Paige 0 Leroy_Robert_Paige 0 001 @i 09835506 n 0000 | United States baseball player; a black pitcher noted for his longevity (1906-1982) -11220836 18 n 03 Paine 0 Tom_Paine 0 Thomas_Paine 0 002 @i 09740085 n 0000 @i 10395605 n 0000 | American Revolutionary leader and pamphleteer (born in England) who supported the American colonist's fight for independence and supported the French Revolution (1737-1809) -11221107 18 n 02 Paine 1 Robert_Treat_Paine 0 001 @i 09740085 n 0000 | American Revolutionary leader and signer of the Declaration of Independence (1731-1814) -11221268 18 n 02 Palestrina 0 Giovanni_Pierluigi_da_Palestrina 0 001 @i 09947232 n 0000 | Italian composer (1526-1594) -11221389 18 n 02 Palgrave 0 Francis_Turner_Palgrave 0 001 @i 10444194 n 0000 | English poet (1824-1897) -11221495 18 n 02 Palladio 0 Andrea_Palladio 0 002 @i 09805475 n 0000 + 02772819 a 0101 | highly original and much imitated Italian architect (1508-1580) -11221650 18 n 03 Palmer 0 Arnold_Palmer 0 Arnold_Daniel_Palmer 0 001 @i 10136959 n 0000 | United States golfer (born in 1929) -11221778 18 n 01 Panini 0 001 @i 10141364 n 0000 | Indian grammarian whose grammatical rules for Sanskrit are the first known example of descriptive linguistics (circa 400 BC) -11221956 18 n 02 Panofsky 0 Erwin_Panofsky 0 001 @i 09811414 n 0000 | art historian (1892-1968) -11222054 18 n 03 Paracelsus 0 Philippus_Aureolus_Paracelsus 0 Theophrastus_Philippus_Aureolus_Bombastus_von_Hohenheim 0 001 @i 10020890 n 0000 | Swiss physician who introduced treatments of particular illnesses based on his observation and experience; he saw illness as having an external cause (rather than an imbalance of humors) and replaced traditional remedies with chemical remedies (1493-1541) -11222457 18 n 02 Pareto 0 Vilfredo_Pareto 0 002 @i 10620758 n 0000 @i 10043643 n 0000 | Italian sociologist and economist whose theories influenced the development of fascism in Italy (1848-1923) -11222655 18 n 02 Park 0 Mungo_Park 0 001 @i 10072708 n 0000 | Scottish explorer in Africa (1771-1806) -11222759 18 n 03 Parker 0 Dorothy_Parker 0 Dorothy_Rothschild_Parker 0 001 @i 10794014 n 0000 | United States writer noted for her sharp wit (1893-1967) -11222914 18 n 05 Parker 1 Charlie_Parker 0 Yardbird_Parker 0 Bird_Parker 0 Charles_Christopher_Parker 0 001 @i 10554243 n 0000 | United States saxophonist and leader of the bop style of jazz (1920-1955) -11223119 18 n 03 Parkinson 0 C._Northcote_Parkinson 0 Cyril_Northcote_Parkinson 0 001 @i 10177150 n 0000 | British historian noted for ridicule of bureaucracies (1909-1993) -11223294 18 n 02 Parkinson 1 James_Parkinson 0 001 @i 10679174 n 0000 | English surgeon (1755-1824) -11223396 18 n 02 Parks 0 Rosa_Parks 0 001 @i 09924996 n 0000 | United States civil rights leader who refused to give up her seat on a bus to a white man in Montgomery (Alabama) and so triggered the national Civil Rights movement (born in 1913) -11223642 18 n 01 Parmenides 0 001 @i 10423589 n 0000 | a presocratic Greek philosopher born in Italy; held the metaphysical view that being is the basic substance and ultimate reality of which all things are composed; said that motion and change are sensory illusions (5th century BC) -11223929 18 n 02 Parnell 0 Charles_Stewart_Parnell 0 001 @i 10346198 n 0000 | Irish nationalist leader (1846-1891) -11224046 18 n 02 Parr 0 Catherine_Parr 0 001 @i 10499857 n 0000 | Queen of England as the 6th wife of Henry VIII (1512-1548) -11224173 18 n 03 Parrish 0 Maxfield_Parrish 0 Maxfield_Frederick_Parrish 0 001 @i 10391653 n 0000 | United States painter (1870-1966) -11224309 18 n 02 Parsons 0 Talcott_Parsons 0 001 @i 10620758 n 0000 | United States sociologist (1902-1979) -11224419 18 n 02 Pascal 0 Blaise_Pascal 0 002 @i 10301261 n 0000 @i 10423589 n 0000 | French mathematician and philosopher and Jansenist; invented an adding machine; contributed (with Fermat) to the theory of probability (1623-1662) -11224654 18 n 03 Pasternak 0 Boris_Pasternak 0 Boris_Leonidovich_Pasternak 0 001 @i 10794014 n 0000 | Russian writer whose best known novel was banned by Soviet authorities but translated and published abroad (1890-1960) -11224877 18 n 02 Pasteur 0 Louis_Pasteur 0 005 @i 09913824 n 0000 @i 09855630 n 0000 + 03036191 a 0101 + 00364629 v 0101 + 00364629 v 0102 | French chemist and biologist whose discovery that fermentation is caused by microorganisms resulted in the process of pasteurization (1822-1895) -11225165 18 n 02 Paterson 0 William_Patterson 0 001 @i 09740085 n 0000 | American Revolutionary leader (born in Ireland) who was a member of the Constitutional Convention (1745-1806) -11225350 18 n 03 Paton 0 Alan_Paton 0 Alan_Stewart_Paton 0 001 @i 10794014 n 0000 | South African writer (1903-1988) -11225469 18 n 03 Patrick 0 Saint_Patrick 0 St._Patrick 0 002 @i 09799213 n 0000 @i 10408552 n 0000 | Apostle and patron saint of Ireland; an English missionary to Ireland in the 5th century -11225661 18 n 08 Paul 0 Saint_Paul 0 St._Paul 0 Apostle_Paul 0 Paul_the_Apostle 0 Apostle_of_the_Gentiles 0 Saul 1 Saul_of_Tarsus 0 004 @i 09799213 n 0000 @i 10323182 n 0000 @i 10547145 n 0000 ;c 06453849 n 0000 | (New Testament) a Christian missionary to the Gentiles; author of several Epistles in the New Testament; even though Paul was not present at the Last Supper he is considered an Apostle; "Paul's name was Saul prior to his conversion to Christianity" -11226126 18 n 02 Paul_III 0 Alessandro_Farnese 0 001 @i 10453533 n 0000 | Italian pope from 1534 to 1549 who excommunicated Henry VIII of England in 1538 and initiated the Council of Trent in 1545; was active in the Counter Reformation and promoted the Society of Jesus for this purpose (1468-1549) -11226427 18 n 02 Paul_VI 0 Giovanni_Battista_Montini 0 001 @i 10453533 n 0000 | Italian pope from 1963 to 1978 who eased restrictions on fasting and on interfaith marriages (1897-1978) -11226614 18 n 02 Paul 1 Alice_Paul 0 001 @i 10084635 n 0000 | United States feminist (1885-1977) -11226713 18 n 02 Pauli 0 Wolfgang_Pauli 0 001 @i 10364643 n 0000 | United States physicist (born in Austria) who proposed the exclusion principle (thus providing a theoretical basis for the periodic table) (1900-1958) -11226933 18 n 03 Pauling 0 Linus_Pauling 0 Linus_Carl_Pauling 0 001 @i 09913824 n 0000 | United States chemist who studied the nature of chemical bonding (1901-1994) -11227101 18 n 02 Pavarotti 0 Luciano_Pavarotti 0 001 @i 10701783 n 0000 | Italian tenor (born in 1935) -11227206 18 n 03 Pavlov 0 Ivan_Pavlov 0 Ivan_Petrovich_Pavlov 0 002 @i 10429965 n 0000 + 03036316 a 0101 | Russian physiologist who observed conditioned salivary responses in dogs (1849-1936) -11227400 18 n 02 Pavlova 0 Anna_Pavlova 0 001 @i 09989502 n 0000 | Russian ballerina (1882-1931) -11227499 18 n 03 Paxton 0 Joseph_Paxton 0 Sir_Joseph_Paxton 0 001 @i 09805475 n 0000 | English architect (1801-1865) -11227618 18 n 03 Peabody 0 Elizabeth_Peabody 0 Elizabeth_Palmer_Peabody 0 001 @i 10045713 n 0000 | educator who founded the first kindergarten in the United States (1804-1894) -11227796 18 n 04 Peary 0 Robert_Peary 0 Robert_E._Peary 0 Robert_Edwin_Peary 0 001 @i 10072708 n 0000 | United States Arctic explorer and United States naval officer who has been regarded as the first man to reach the North Pole (1856-1920) -11228039 18 n 03 Peel 0 Robert_Peel 0 Sir_Robert_Peel 0 001 @i 10450303 n 0000 | British politician (1788-1850) -11228153 18 n 03 Pei 0 I._M._Pei 0 Ieoh_Ming_Pei 0 002 @i 09805475 n 0000 ;r 08723006 n 0000 | United States architect (born in China in 1917) -11228298 18 n 03 Peirce 0 Charles_Peirce 0 Charles_Sanders_Peirce 0 002 @i 10423589 n 0000 @i 10269785 n 0000 | United States philosopher and logician; pioneer of pragmatism (1839-1914) -11228486 18 n 02 Peirce 1 Benjamin_Peirce 0 002 @i 10301261 n 0000 @i 09818343 n 0000 | United States mathematician and astronomer remembered for his studies of Uranus and Saturn and Neptune (1809-1880) -11228691 18 n 01 Pelagius 0 001 @i 10112129 n 0000 | a British or Irish monk who denied the doctrines of original sin and predestination and defended human goodness and free will; his views were declared heretical by the Council of Ephesus in 431 (circa 360-418) -11228956 18 n 02 Penn 0 William_Penn 0 001 @i 09679708 n 0000 | Englishman and Quaker who founded the colony of Pennsylvania (1644-1718) -11229095 18 n 03 Pepin 0 Pepin_III 0 Pepin_the_Short 0 002 @i 10231515 n 0000 @i 09896520 n 0000 | king of the Franks and father of Charlemagne who defended papal interests and founded the Carolingian dynasty in 751 (714-768) -11229323 18 n 02 Pepys 0 Samuel_Pepys 0 001 @i 10011486 n 0000 | English diarist whose diary contained detailed descriptions of 17th century disasters in England (1633-1703) -11229499 18 n 04 Percy 0 Sir_Henry_Percy 0 Hotspur 1 Harry_Hotspur 0 001 @i 10622053 n 0000 | English soldier killed in a rebellion against Henry IV (1364-1403) -11229662 18 n 02 Percy 1 Walker_Percy 0 001 @i 10794014 n 0000 | United States writer whose novels explored human alienation (1916-1990) -11229801 18 n 01 Pericles 0 001 @i 10650162 n 0000 | Athenian statesman whose leadership contributed to Athens' political and cultural supremacy in Greece; he ordered the construction of the Parthenon (died in 429 BC) -11230021 18 n 02 Peron 0 Juan_Domingo_Peron 0 001 @i 10622053 n 0000 | Argentine soldier who became president of Argentina (1895-1974) -11230158 18 n 03 Perry 0 Oliver_Hazard_Perry 0 Commodore_Perry 0 001 @i 09945021 n 0000 | United States commodore who led the fleet that defeated the British on Lake Erie during the War of 1812; brother of Matthew Calbraith Perry (1785-1819) -11230402 18 n 02 Perry 1 Matthew_Calbraith_Perry 0 001 @i 10347593 n 0000 | United States admiral who led a naval expedition to Japan and signed a treaty in 1854 opening up trade relations between United States and Japan; brother of Oliver Hazard Perry (1794-1858) -11230669 18 n 02 Perry 2 Ralph_Barton_Perry 0 001 @i 10423589 n 0000 | United States philosopher (1876-1957) -11230780 18 n 03 Pershing 0 John_Joseph_Pershing 0 Black_Jack_Pershing 0 001 @i 10123844 n 0000 | United States general who commanded the American forces in Europe during World War I (1860-1948) -11230977 18 n 03 Perutz 0 Max_Perutz 0 Max_Ferdinand_Perutz 0 001 @i 09854915 n 0000 | English biochemist (born in Austria); studied the molecular structure of blood (1914-2002) -11231157 18 n 06 Peter 0 Simon_Peter 0 Saint_Peter 0 St._Peter 0 Saint_Peter_the_Apostle 0 St._Peter_the_Apostle 0 002 @i 09798811 n 0000 @i 10547145 n 0000 | disciple of Jesus and leader of the Apostles; regarded by Catholics as the vicar of Christ on earth and first Pope -11231433 18 n 03 Peter_I 0 Czar_Peter_I 0 Peter_the_Great 0 001 @i 09987239 n 0000 | czar of Russia who introduced ideas from western Europe to reform the government; he extended his territories in the Baltic and founded St. Petersburg (1682-1725) -11231683 18 n 03 Petrarch 0 Petrarca 0 Francesco_Petrarca 0 001 @i 10444194 n 0000 | an Italian poet famous for love lyrics (1304-1374) -11231821 18 n 03 Petronius 0 Gaius_Petronius 0 Petronius_Arbiter 0 001 @i 10794014 n 0000 | Roman satirist (died in 66) -11231943 18 n 02 Phidias 0 Pheidias 0 001 @i 10566072 n 0000 | ancient Greek sculptor (circa 500-432 BC) -11232050 18 n 01 Philemon 0 002 @i 09938851 n 0000 ;c 06453849 n 0000 | (New Testament) a Christian (probably living in Colossae) whose slave escaped and went to see Saint Paul -11232229 18 n 01 Philemon 1 002 @i 09971135 n 0000 ;c 07979425 n 0000 | (Greek mythology) a simple countryman who offered hospitality to Zeus and Hermes when they came to earth without revealing their identities in order to test people's piety -11232475 18 n 03 Philip 0 Prince_Philip 0 Duke_of_Edinburgh 0 001 @i 10472799 n 0000 | Englishman and husband of Elizabeth II (born 1921) -11232615 18 n 02 Philip_II 0 Philip_II_of_Spain 0 001 @i 10231515 n 0000 | king of Spain and Portugal and husband of Mary I; he supported the Counter Reformation and sent the Spanish Armada to invade England (1527-1598) -11232837 18 n 02 Philip_II 1 Philip_II_of_Macedon 0 001 @i 10231515 n 0000 | king of ancient Macedonia and father of Alexander the Great (382-336 BC) -11232989 18 n 02 Philip_II 2 Philip_Augustus 0 001 @i 10231515 n 0000 | son of Louis VII whose reign as king of France saw wars with the English that regained control of Normandy and Anjou and most of Poitou (1165-1223) -11233211 18 n 01 Philip_V 0 001 @i 10231515 n 0000 | king of ancient Macedonia whose confrontations with the Romans led to his defeat and his loss of control over Greece -11233383 18 n 02 Philip_VI 0 Philip_of_Valois 0 001 @i 10231515 n 0000 | king of France who founded the Valois dynasty; his dispute with Edward III over his succession led to the Hundred Years' War (1293-1350) -11233595 18 n 02 Phintias 0 Pythias 0 001 @i 10112591 n 0000 | friend of Damon; Phintias (according to legend) was condemned to death by Dionysius the Elder and asked a respite to put his affairs in order; Damon pledged his life for the return of his friend; when Phintias returned in time the tyrant released them both (4th century BC) -11233934 18 n 01 Photius 0 001 @i 10406905 n 0000 | Patriarch of Constantinople and saint of the Greek Orthodox Church; was condemned by the Fourth Council of Constantinople in 869 but was reinstated by a later pope -11234152 18 n 04 Piaf 0 Edith_Piaf 0 Edith_Giovanna_Gassion 0 Little_Sparrow 0 001 @i 10599806 n 0000 | French cabaret singer (1915-1963) -11234292 18 n 02 Piaget 0 Jean_Piaget 0 002 @i 10488865 n 0000 + 03036464 a 0101 | Swiss psychologist remembered for his studies of cognitive development in children (1896-1980) -11234472 18 n 02 Pickett 0 George_Edward_Pickett 0 001 @i 10123844 n 0000 | American Confederate general known for leading a disastrous charge at Gettysburg (1825-1875) -11234643 18 n 03 Pickford 0 Mary_Pickford 0 Gladys_Smith 0 001 @i 09767700 n 0000 | United States film actress (born in Canada) who starred in silent films (1893-1979) -11234813 18 n 03 Pierce 0 Franklin_Pierce 0 President_Pierce 0 001 @i 10467395 n 0000 | 14th President of the United States (1804-1869) -11234951 18 n 02 Picasso 0 Pablo_Picasso 0 002 @i 10391653 n 0000 @i 10566072 n 0000 | prolific and influential Spanish artist who lived in France (1881-1973) -11235112 18 n 02 Pilate 0 Pontius_Pilate 0 001 @ 10479135 n 0000 | the Roman procurator of Judea who ordered that Jesus be crucified (died in AD 36) -11235263 18 n 03 Pincus 0 Gregory_Pincus 0 Gregory_Goodwin_Pincus 0 001 @i 10429965 n 0000 | United States sexual physiologist whose hunch that progesterone could block ovulation led to the development of the oral contraceptive pill (1903-1967) -11235510 18 n 01 Pindar 0 001 @i 10444194 n 0000 | Greek lyric poet remembered for his odes (518?-438? BC) -11235619 18 n 02 Pinter 0 Harold_Pinter 0 001 @i 10030277 n 0000 | English dramatist whose plays are characterized by silences and the use of inaction (born in 1930) -11235787 18 n 02 Pirandello 0 Luigi_Pirandello 0 002 @i 10030277 n 0000 @i 10363573 n 0000 | Italian novelist and playwright (1867-1936) -11235926 18 n 02 Piston 0 Walter_Piston 0 001 @i 09947232 n 0000 | United States neoclassical composer (1894-1976) -11236043 18 n 02 Pitman 1 Sir_Isaac_Pitman 0 001 @i 10045713 n 0000 | English educator who invented a system of phonetic shorthand (1813-1897) -11236188 18 n 02 Pitot 0 Henri_Pitot 0 001 @i 10428004 n 0000 | French physicist for whom the Pitot tube was named (1695-1771) -11236317 18 n 04 Pitt 0 William_Pitt 0 First_Earl_of_Chatham 0 Pitt_the_Elder 0 001 @i 10650162 n 0000 | English statesman who brought the Seven Years' War to an end (1708-1778) -11236497 18 n 04 Pitt 1 William_Pitt 1 Second_Earl_of_Chatham 0 Pitt_the_Younger 0 001 @i 10650162 n 0000 | English statesman and son of Pitt the Elder (1759-1806) -11236663 18 n 04 Pitt 2 George_Pitt 0 George_Dibdin_Pitt 0 George_Dibdin-Pitt 0 001 @i 10030277 n 0000 | a British playwright who created the fictional character Sweeney Todd (1799-1855) -11236852 18 n 03 Pius_II 0 Aeneas_Silvius 0 Enea_Silvio_Piccolomini 0 001 @i 10453533 n 0000 | Italian pope from 1458 to 1464 who is remembered for his unsuccessful attempt to lead a crusade against the Turks (1405-1464) -11237075 18 n 02 Pius_V 0 Antonio_Ghislieri 0 001 @i 10453533 n 0000 | Italian pope from 1566 to 1572 who led the reformation of the Roman Catholic Church; he excommunicated Elizabeth I (1504-1572) -11237275 18 n 03 Pius_VI 0 Giovanni_Angelo_Braschi 0 Giannangelo_Braschi 0 001 @i 10453533 n 0000 | Italian pope from 1775 to 1799 who served during the French Revolution; Napoleon attacked the Papal States and in 1797 Pius VI was taken to France where he died (1717-1799) -11237550 18 n 03 Pius_VII 0 Barnaba_Chiaramonti 0 Luigi_Barnaba_Gregorio_Chiaramonti 0 001 @i 10453533 n 0000 | Italian pope from 1800 to 1823 who was humiliated by Napoleon and taken prisoner in 1809; he concluded a concordat with Napoleon and crowned him emperor of France; he returned to Rome in 1814 (1740-1823) -11237868 18 n 03 Pius_IX 0 Giovanni_Mastai-Ferretti 0 Giovanni_Maria_Mastai-Ferretti 0 001 @i 10453533 n 0000 | Italian pope from 1846 to 1878 who in 1854 declared the dogma of the Immaculate Conception of the Virgin Mary -11238092 18 n 03 Pius_X 0 Giuseppe_Sarto 0 Giuseppe_Melchiorre_Sarto 0 001 @i 10453533 n 0000 | pope who condemned religious modernism; he was canonized in 1954 because of his interest in the poor (1835-1914) -11238303 18 n 03 Pius_XI 0 Achille_Ratti 0 Ambrogio_Damiano_Achille_Ratti 0 001 @i 10453533 n 0000 | pope who signed a treaty with Mussolini recognizing the Vatican City as an independent state (1857-1939) -11238511 18 n 02 Pius_XII 0 Eugenio_Pacelli 0 001 @i 10453533 n 0000 | pope who maintained neutrality during World War II and was later criticized for not aiding the Jews who were persecuted by Hitler (1876-1958) -11238726 18 n 02 Pizarro 0 Francisco_Pizarro 0 001 @i 09956780 n 0000 | Spanish conquistador who conquered the Incas in what is now Peru and founded the city of Lima (1475-1541) -11238906 18 n 03 Planck 0 Max_Planck 0 Max_Karl_Ernst_Ludwig_Planck 0 001 @i 10428004 n 0000 | German physicist whose explanation of blackbody radiation in the context of quantized energy emissions initiated quantum theory (1858-1947) -11239143 18 n 02 Plath 0 Sylvia_Plath 0 002 @i 10794014 n 0000 @i 10444194 n 0000 | United States writer and poet (1932-1963) -11239271 18 n 01 Plato 0 003 @i 10423589 n 0000 #m 08785343 n 0000 + 02780680 a 0101 | ancient Athenian philosopher; pupil of Socrates; teacher of Aristotle (428-347 BC) -11239443 18 n 02 Plautus 0 Titus_Maccius_Plautus 0 001 @i 10030277 n 0000 | comic dramatist of ancient Rome (253?-184 BC) -11239567 18 n 03 Pliny 0 Pliny_the_Elder 0 Gaius_Plinius_Secundus 0 001 @i 10794014 n 0000 | Roman author of an encyclopedic natural history; died while observing the eruption of Vesuvius (23-79) -11239765 18 n 03 Pliny 1 Pliny_the_Younger 0 Gaius_Plinius_Caecilius_Secundus 0 001 @i 10794014 n 0000 | Roman writer and nephew of Pliny the Elder; author of books of letters that commented on affairs of the day (62-113) -11239989 18 n 01 Plotinus 0 001 @i 10423589 n 0000 | Roman philosopher (born in Egypt) who was the leading representative of Neoplatonism (205-270) -11240139 18 n 01 Plutarch 0 001 @i 09855433 n 0000 | Greek biographer who wrote Parallel Lives (46?-120 AD) -11240249 18 n 03 Pocahontas 0 Matoaka 0 Rebecca_Rolfe 0 001 @i 09666476 n 0000 | a Powhatan woman (the daughter of Powhatan) who befriended the English at Jamestown and is said to have saved Captain John Smith's life (1595-1617) -11240480 18 n 02 Poe 0 Edgar_Allan_Poe 0 002 @i 10794014 n 0000 @i 10444194 n 0000 | United States writer and poet (1809-1849) -11240609 18 n 02 Poitier 0 Sidney_Poitier 0 001 @i 09765278 n 0000 | United States film actor and director (born in 1927) -11240733 18 n 05 Polk 0 James_Polk 0 James_K._Polk 0 James_Knox_Polk 0 President_Polk 0 001 @i 10467395 n 0000 | 11th President of the United States; his expansionism led to the Mexican War and the annexation of California and much of the southwest (1795-1849) -11240996 18 n 02 Pollack 0 Sydney_Pollack 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1934) -11241106 18 n 02 Pollock 0 Jackson_Pollock 0 001 @i 10391653 n 0000 | United States artist famous for painting with a drip technique; a leader of abstract expressionism in America (1912-1956) -11241300 18 n 02 Polo 0 Marco_Polo 0 001 @i 09629752 n 0000 | Venetian traveler who explored Asia in the 13th century and served Kublai Khan (1254-1324) -11241455 18 n 03 Polycarp 0 Saint_Polycarp 0 St._Polycarp 0 001 @ 10296832 n 0000 | Greek bishop of Smyrna who refused to recant his Christian faith and was burned to death by pagans (circa 69-155) -11241655 18 n 03 Pompadour 0 Marquise_de_Pompadour 0 Jeanne_Antoinette_Poisson 0 001 @i 10293590 n 0000 | French noblewoman who was the lover of Louis XV, whose policies she influenced (1721-1764) -11241854 18 n 03 Pompey 0 Gnaeus_Pompeius_Magnus 0 Pompey_the_Great 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | Roman general and statesman who quarrelled with Caesar and fled to Egypt where he was murdered (106-48 BC) -11242077 18 n 02 Ponce_de_Leon 0 Juan_Ponce_de_Leon 0 001 @ 10347883 n 0000 | Spanish explorer who accompanied Columbus on his second trip in 1493; in 1513 he discovered Florida while searching for the legendary Fountain of Youth (1460-1521) -11242321 18 n 03 Pons 0 Lily_Pons 0 Alice-Josephine_Pons 0 001 @i 09938080 n 0000 | United States coloratura soprano (born in France) (1904-1976) -11242469 18 n 03 Ponselle 0 Rosa_Ponselle 0 Rosa_Melba_Ponselle 0 001 @i 10625546 n 0000 | United States soprano (1897-1981) -11242596 18 n 01 Pontiac 0 001 @i 09668562 n 0000 | famous chief of the Ottawa who led an unsuccessful rebellion against the British (1715-1769) -11242743 18 n 02 Pope 1 Alexander_Pope 0 001 @i 10444194 n 0000 | English poet and satirist (1688-1744) -11242849 18 n 03 Popper 0 Karl_Popper 0 Sir_Karl_Raimund_Popper 0 001 @ 10423589 n 0000 | British philosopher (born in Austria) who argued that scientific theories can never be proved to be true, but are tested by attempts to falsify them (1902-1994) -11243102 18 n 03 Porter 3 William_Sydney_Porter 0 O._Henry 0 001 @i 10794014 n 0000 | United States writer of short stories whose pen name was O. Henry (1862-1910) -11243268 18 n 03 Porter 4 Cole_Porter 0 Cole_Albert_Porter 0 001 @i 09947232 n 0000 | United States composer and lyricist of musical comedies (1891-1946) -11243424 18 n 02 Porter 5 Katherine_Anne_Porter 0 001 @i 10794014 n 0000 | United States writer of novels and short stories (1890-1980) -11243562 18 n 03 Post 0 C._W._Post 0 Charles_William_Post 0 001 @i 10100620 n 0000 | United States manufacturer of breakfast cereals and Postum (1854-1914) -11243720 18 n 03 Post 1 Emily_Post 0 Emily_Price_Post 0 001 @i 10794014 n 0000 | United States female author who wrote a book and a syndicated newspaper column on etiquette (1872-1960) -11243907 18 n 02 Post 2 Wiley_Post 0 001 @i 09826204 n 0000 | United States aviator who in 1933 made the first solo flight around the world (1899-1935) -11244061 18 n 05 Potemkin 0 Potyokin 0 Grigori_Potemkin 0 Grigori_Potyokin 0 Grigori_Aleksandrovich_Potemkin 0 002 @ 10450303 n 0000 @ 10317007 n 0000 | a Russian officer and politician who was a favorite of Catherine II and in 1762 helped her to seize power; when she visited the Crimea in 1787 he gave the order for sham villages to be built (1739-1791) -11244419 18 n 02 Poulenc 0 Francis_Poulenc 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | French pianist and composer (1899-1963) -11244550 18 n 03 Pound 0 Ezra_Pound 0 Ezra_Loomis_Pound 0 002 @i 10794014 n 0000 @i 10444194 n 0000 | United States writer who lived in Europe; strongly influenced the development of modern literature (1885-1972) -11244765 18 n 02 Poussin 0 Nicolas_Poussin 0 001 @i 10375794 n 0000 | French painter in the classical style (1594-1665) -11244887 18 n 02 Powell 0 Cecil_Frank_Powell 0 001 @i 10428004 n 0000 | English physicist who discovered the pion (the first known meson) which is a subatomic particle involved in holding the nucleus together (1903-1969) -11245110 18 n 03 Powell 1 Colin_Powell 0 Colin_luther_Powell 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | United States general who was the first African American to serve as chief of staff; later served as Secretary of State under President George W. Bush (born 1937) -11245382 18 n 02 Powhatan 1 Wahunsonacock 0 002 @i 10203298 n 0000 @i 09646608 n 0000 | Indian chief and founder of the Powhatan confederacy of tribes in eastern Virginia; father of Pocahontas (1550?-1618) -11245590 18 n 02 Powys 0 John_Cowper_Powys 0 001 @i 10794014 n 0000 | British writer of novels about nature; one of three literary brothers (1872-1963) -11245744 18 n 02 Powys 1 Theodore_Francis_Powys 0 001 @i 10794014 n 0000 | British writer of allegorical novels; one of three literary brothers (1875-1953) -11245902 18 n 02 Powys 2 Llewelyn_Powys 0 001 @i 10794014 n 0000 | British writer of essays; one of three literary brothers (1884-1939) -11246040 18 n 03 Presley 0 Elvis_Presley 0 Elvis_Aron_Presley 0 001 @i 10536416 n 0000 | United States rock singer whose many hit records and flamboyant style greatly influenced American popular music (1935-1977) -11246255 18 n 01 Priam 0 002 @i 09484664 n 0000 ;c 07979425 n 0000 | (Greek mythology) the last king of Troy; father of Hector and Paris and Cassandra -11246408 18 n 03 Price 0 Leontyne_Price 0 Mary_Leontyne_Price 0 001 @i 10625546 n 0000 | United States operatic soprano (born 1927) -11246542 18 n 02 Priestley 0 Joseph_Priestley 0 001 @i 09913824 n 0000 | English chemist who isolated many gases and discovered oxygen (independently of Scheele) (1733-1804) -11246718 18 n 03 Prokhorov 0 Aleksandr_Prokhorov 0 Aleksandr_Mikjailovich_Prokhorov 0 001 @i 10428004 n 0000 | Russian physicist whose research into ways of moving electrons around atoms led to the development of masers and lasers for producing high-intensity radiation (1916-2002) -11247002 18 n 02 Prokofiev 0 Sergei_Sergeyevich_Prokofiev 0 001 @i 09947232 n 0000 | Russian composer of ballets and symphonies and operas (1891-1953) -11247155 18 n 02 Proudhon 0 Pierre_Joseph_Proudhon 0 001 @i 10618848 n 0000 | French socialist who argued that property is theft (1809-1865) -11247298 18 n 02 Proust 0 Marcel_Proust 0 002 @i 10363573 n 0000 + 03033397 a 0101 | French novelist (1871-1922) -11247413 18 n 02 Ptolemy 0 Claudius_Ptolemaeus 0 002 @i 09818343 n 0000 + 03033522 a 0101 | Alexandrian astronomer (of the 2nd century) who proposed a geocentric system of astronomy that was undisputed until the late Renaissance -11247644 18 n 01 Ptolemy_I 0 002 @i 10231515 n 0000 #m 08156948 n 0000 | the king of Egypt who founded the Macedonian dynasty in Egypt; a close friend and general of Alexander the Great who took charge of Egypt after Alexander died (circa 367-285 BC) -11247897 18 n 01 Ptolemy_II 0 002 @i 10231515 n 0000 #m 08156948 n 0000 | son of Ptolemy I and king of Egypt who was said to be responsible for the Septuagint (circa 309-247 BC) -11248077 18 n 02 Puccini 0 Giacomo_Puccini 0 001 @i 09947232 n 0000 | Italian operatic composer noted for the dramatic realism of his operas (1858-1924) -11248232 18 n 02 Pugin 0 Augustus_Welby_Northmore_Pugin 0 001 @i 09805475 n 0000 | English architect who played a prominent role in the 19th century revival of Gothic architecture (1812-1852) -11248426 18 n 02 Pulitzer 0 Joseph_Pulitzer 0 001 @i 10491575 n 0000 | United States newspaper publisher (born in Hungary) who established the Pulitzer prizes (1847-1911) -11248599 18 n 02 Purcell 0 Henry_Purcell 0 002 @i 10382825 n 0000 @i 09947232 n 0000 | English organist at Westminster Abbey and composer of many theatrical pieces (1659-1695) -11248777 18 n 03 Purkinje 0 Jan_Evangelista_Purkinje 0 Johannes_Evangelista_Purkinje 0 001 @i 10429965 n 0000 | Bohemian physiologist remembered for his discovery of Purkinje cells and the Purkinje network (1787-1869) -11248997 18 n 03 Pusey 0 Edward_Pusey 0 Edward_Bouverie_Pusey 0 001 @i 10705615 n 0000 | English theologian who (with John Henry Newman and John Keble) founded the Oxford movement (1800-1882) -11249191 18 n 03 Pushkin 0 Alexander_Pushkin 0 Aleksandr_Sergeyevich_Pushkin 0 001 @i 10444194 n 0000 | Russian poet (1799-1837) -11249322 18 n 03 Putin 0 Vladimir_Putin 0 Vladimir_Vladimirovich_Putin 0 001 @i 10650162 n 0000 | Russian statesman chosen as president of the Russian Federation in 2000; formerly director of the Federal Security Bureau (born in 1952) -11249559 18 n 02 Pyle 0 Howard_Pyle 0 002 @i 09812068 n 0000 @i 10794014 n 0000 | United States writer and illustrator of children's books (1853-1911) -11249712 18 n 02 Pynchon 0 Thomas_Pynchon 0 001 @i 10794014 n 0000 | United States writer of pessimistic novels about life in a technologically advanced society (born in 1937) -11249890 18 n 01 Pyrrhus 0 002 @i 10231515 n 0000 + 03107061 a 0101 | king of Epirus; defeated the Romans in two battles in spite of staggering losses (319-272 BC) -11250056 18 n 01 Pythagoras 0 003 @i 10301261 n 0000 @i 10423589 n 0000 + 03036805 a 0101 | Greek philosopher and mathematician who proved the Pythagorean theorem; considered to be the first true mathematician (circa 580-500 BC) -11250287 18 n 06 Qaddafi 0 Qadhafi 0 Khadafy 0 Gaddafi 0 Muammar_al-Qaddafi 0 Muammar_el-Qaddafi 0 001 @i 09623038 n 0000 | Libyan leader who seized power in a military coup d'etat in 1969; deposed the Libyan monarchy and imposed socialism and Islamic orthodoxy on the country (born in 1942) -11250581 18 n 02 Qin_Shi_Huang_Ti 0 Ch'in_Shih_Huang_Ti 0 001 @i 10053004 n 0000 | the first Qin emperor who unified China, built much of the Great Wall, standardized weights and measures, and created a common currency and legal system (died 210 BC) -11250833 18 n 02 Quincy 0 Josiah_Quincy 0 001 @i 09740085 n 0000 | American patriot who presented the colonists' grievances to the English king (1744-1775) -11250991 18 n 03 Quine 0 W._V._Quine 0 Willard_Van_Orman_Quine 0 002 @i 10423589 n 0000 @i 10269785 n 0000 | United States philosopher and logician who championed an empirical view of knowledge that depended on language (1908-2001) -11251225 18 n 02 Rabelais 0 Francois_Rabelais 0 002 @i 10552742 n 0000 + 03108861 a 0101 | author of satirical attacks on medieval scholasticism (1494-1553) -11251384 18 n 01 Rachel 0 002 @i 10780632 n 0000 ;c 06449735 n 0000 | (Old Testament) the second wife of Jacob and mother of Joseph and Benjamin -11251531 18 n 06 Rachmaninoff 0 Sergei_Rachmaninoff 0 Sergei_Vasilievich_Rachmaninoff 0 Rachmaninov 0 Sergei_Rachmaninov 0 Sergei_Vasilievich_Rachmaninov 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | composer and piano virtuoso born in Russia (1873-1943) -11251788 18 n 03 Racine 0 Jean_Racine 0 Jean_Baptiste_Racine 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | French advocate of Jansenism; tragedian who based his works on Greek and Roman themes (1639-1699) -11251995 18 n 03 Radhakrishnan 0 Sarvepalli_Radhakrishnan 0 Sir_Sarvepalli_Radhakrishnan 0 002 @i 10423589 n 0000 @i 10650162 n 0000 | Indian philosopher and statesman who introduced Indian philosophy to the West (1888-1975) -11252222 18 n 03 Raffles 0 Sir_Thomas_Raffles 0 Sir_Thomas_Stamford_Raffles 0 001 @i 09770472 n 0000 | British colonial administrator who founded Singapore (1781-1826) -11252392 18 n 01 Rain-in-the-Face 0 002 @i 10203298 n 0000 @i 09669125 n 0000 | a chief of the Sioux; he was with Sitting Bull and others at the Battle of Little Bighorn (1876) when General Custer's troops were massacred (1835-1905) -11252627 18 n 06 Raleigh 0 Walter_Raleigh 0 Sir_Walter_Raleigh 0 Ralegh 0 Walter_Ralegh 0 Sir_Walter_Ralegh 0 002 @i 09971839 n 0000 @i 09937903 n 0000 | English courtier (a favorite of Elizabeth I) who tried to colonize Virginia; introduced potatoes and tobacco to England (1552-1618) -11252915 18 n 02 Rameau 0 Jean-Philippe_Rameau 0 001 @i 09947232 n 0000 | French composer of operas whose writings laid the foundation for the modern theory of harmony (1683-1764) -11253097 18 n 03 Rameses 0 Ramesses 0 Ramses 0 002 @i 10231515 n 0000 ~i 11253248 n 0000 | any of 12 kings of ancient Egypt between 1315 and 1090 BC -11253248 18 n 06 Rameses_II 0 Ramesses_II 0 Ramses_II 0 Rameses_the_Great 0 Ramesses_the_Great 0 Ramses_the_Great 0 001 @i 11253097 n 0000 | king of Egypt between 1304 and 1237 BC who built many monuments -11253455 18 n 02 Ramon_y_Cajal 0 Santiago_Ramon_y_Cajal 0 001 @i 10170359 n 0000 | Spanish histologist noted for his work on the structure of the nervous system (1852-1934) -11253630 18 n 02 Rand 0 Ayn_Rand 0 001 @i 10794014 n 0000 | United States writer (born in Russia) noted for her polemical novels and political conservativism (1905-1982) -11253802 18 n 02 Rankin 0 Jeannette_Rankin 0 002 @i 10672908 n 0000 @i 10450303 n 0000 | leader in the women's suffrage movement in Montana; the first woman to serve in the United States House of Representatives (1880-1973) -11254028 18 n 03 Raphael 0 Raffaello_Santi 0 Raffaello_Sanzio 0 001 @i 10375794 n 0000 | Italian painter whose many paintings exemplify the ideals of the High Renaissance (1483-1520) -11254213 18 n 02 Rask 0 Rasmus_Christian_Rask 0 001 @i 10423225 n 0000 | Danish philologist whose work on Old Norse pioneered in the field of comparative linguistics (1787-1832) -11254393 18 n 02 Rasmussen 0 Kund_Johan_Victor_Rasmussen 0 002 @i 10072708 n 0000 @i 10065758 n 0000 | Danish ethnologist and Arctic explorer; led expeditions into the Arctic to find support for his theory that Eskimos and North American Indians originally migrated from Asia (1879-1933) -11254683 18 n 02 Rasputin 0 Grigori_Efimovich_Rasputin 0 001 @i 10649047 n 0000 | Siberian peasant monk who was religious advisor in the court of Nicholas II; was assassinated by Russian noblemen who feared that his debauchery would weaken the monarchy (1872-1916) -11254950 18 n 03 Rattigan 0 Terence_Rattigan 0 Sir_Terence_Mervyn_Rattigan 0 001 @i 10030277 n 0000 | British playwright (1911-1977) -11255085 18 n 02 Ravel 0 Maurice_Ravel 0 001 @i 09947232 n 0000 | French composer and exponent of Impressionism (1875-1937) -11255211 18 n 04 Rayleigh 0 Third_Baron_Rayleigh 0 Lord_Rayleigh 0 John_William_Strutt 0 001 @i 10428004 n 0000 | English physicist who studied the density of gases and discovered argon; made important contributions to acoustic theory (1842-1919) -11255460 18 n 04 Reagan 0 Ronald_Reagan 0 Ronald_Wilson_Reagan 0 President_Reagan 0 001 @i 10467395 n 0000 | 40th President of the United States (1911-2004) -11255619 18 n 02 Reaumur 0 Rene_Antoine_Ferchault_de_Reaumur 0 001 @i 10428004 n 0000 | French physicist who invented the alcohol thermometer (1683-1757) -11255775 18 n 02 Rebecca 0 Rebekah 0 002 @i 10780632 n 0000 ;c 06449735 n 0000 | (Old Testament) wife of Isaac and mother of Jacob and Esau -11255917 18 n 01 Red_Cloud 0 002 @i 10203298 n 0000 @i 09663248 n 0000 | leader of the Oglala who resisted the development of a trail through Wyoming and Montana by the United States government (1822-1909) -11256125 18 n 03 Redford 0 Robert_Redford 0 Charles_Robert_Redford 0 002 @i 09765278 n 0000 @i 10088390 n 0000 | United States actor and filmmaker who starred with Paul Newman in several films (born in 1936) -11256335 18 n 02 Reed 0 Walter_Reed 0 001 @i 10679174 n 0000 | United States physician who proved that yellow fever is transmitted by mosquitoes (1851-1902) -11256494 18 n 02 Reed 1 John_Reed 0 002 @i 10224578 n 0000 @i 09945319 n 0000 | United States journalist who reported on the October Revolution from Petrograd in 1917; founded the Communist Labor Party in America in 1919; is buried in the Kremlin in Moscow (1887-1920) -11256765 18 n 03 Rehnquist 0 William_Rehnquist 0 William_Hubbs_Rehnquist 0 001 @i 09916788 n 0000 | United States jurist who served as an associate justice on the United States Supreme Court from 1972 until 1986, when he was appointed chief justice (born in 1924) -11257031 18 n 03 Reich 0 Steve_Reich 0 Stephen_Michael_Reich 0 001 @i 09947232 n 0000 | United States composer (born in 1936) -11257159 18 n 02 Reich 1 Wilhelm_Reich 0 001 @i 09790278 n 0000 | Austrian born psychoanalyst who lived in the United States; advocated sexual freedom and believed that cosmic energy could be concentrated in a human being (1897-1957) -11257395 18 n 02 Reichstein 0 Tadeus_Reichstein 0 001 @i 09913824 n 0000 | a Swiss chemist born in Poland; studied the hormones of the adrenal cortex -11257547 18 n 02 Reid 0 Thomas_Reid 0 001 @i 10423589 n 0000 | Scottish philosopher of common sense who opposed the ideas of David Hume (1710-1796) -11257697 18 n 02 Reiter 0 Hans_Conrad_Julius_Reiter 0 001 @i 09831411 n 0000 | German bacteriologist who described a disease now known as Reiter's syndrome and who identified the spirochete that causes syphilis in humans (1881-1969) -11257932 18 n 04 Rembrandt 0 Rembrandt_van_Rijn 0 Rembrandt_van_Ryn 0 Rembrandt_Harmensz_van_Rijn 0 001 @i 10375794 n 0000 | influential Dutch artist (1606-1669) -11258096 18 n 02 Renoir 0 Pierre_Auguste_Renoir 0 001 @i 10375794 n 0000 | French impressionist painter (1841-1919) -11258214 18 n 02 Respighi 0 Ottorino_Respighi 0 001 @i 09947232 n 0000 | Italian composer remembered for his symphonic poems (1879-1936) -11258353 18 n 01 Reuben 0 002 @i 10406391 n 0000 ;c 06449735 n 0000 | (Old Testment) a son of Jacob and forefather of one of the tribes of Israel -11258501 18 n 02 Revere 0 Paul_Revere 0 002 @i 10598749 n 0000 @i 09740085 n 0000 | American silversmith remembered for his midnight ride (celebrated in a poem by Longfellow) to warn the colonists in Lexington and Concord that British troops were coming (1735-1818) -11258769 18 n 02 Reynolds 0 Sir_Joshua_Reynolds 0 001 @i 10391653 n 0000 | English portrait painter and first president of the Royal Academy (1723-1792) -11258924 18 n 03 Rhine 0 J._B._Rhine 0 Joseph_Banks_Rhine 0 001 @i 10398806 n 0000 | United States parapsychologist (1895-1980) -11259054 18 n 04 Rhodes 0 Cecil_Rhodes 0 Cecil_J._Rhodes 0 Cecil_John_Rhodes 0 002 @i 10090020 n 0000 @i 09937903 n 0000 | British colonial financier and statesman in South Africa; made a fortune in gold and diamond mining; helped colonize the territory now known as Zimbabwe; he endowed annual fellowships for British Commonwealth and United States students to study at Oxford University (1853-1902) -11259457 18 n 02 Ricardo 0 David_Ricardo 0 001 @i 10043643 n 0000 | English economist who argued that the laws of supply and demand should operate in a free market (1772-1823) -11259635 18 n 04 Rice 0 Elmer_Rice 0 Elmer_Leopold_Rice 0 Elmer_Reizenstein 0 001 @i 10030277 n 0000 | United States playwright (1892-1967) -11259777 18 n 03 Rice 1 Sir_Tim_Rice 0 Timothy_Miles_Bindon_Rice 0 001 @i 10277912 n 0000 | English lyricist who frequently worked with Andrew Lloyd Webber (born in 1944) -11259950 18 n 04 Richard_I 0 Richard_Coeur_de_Lion 0 Richard_the_Lionheart 0 Richard_the_Lion-Hearted 0 002 @i 10233445 n 0000 #m 08156685 n 0000 | son of Henry II and King of England from 1189 to 1199; a leader of the Third Crusade; on his way home from the crusade he was captured and held prisoner in the Holy Roman Empire until England ransomed him in 1194 (1157-1199) -11260325 18 n 01 Richard_II 0 002 @i 10233445 n 0000 #m 08156685 n 0000 | King of England from 1377 to 1399; he suppressed the Peasant's Revolt in 1381 but his reign was marked by popular discontent and baronial opposition in British Parliament and he was forced to abdicate in 1399 (1367-1400) -11260622 18 n 01 Richard_III 0 002 @i 10233445 n 0000 #m 08159924 n 0000 | King of England from 1483 to 1485; seized the throne from his nephew Edward V who was confined to the Tower of London and murdered; his reign ended when he was defeated by Henry Tudor (later Henry VII) at the battle of Bosworth Field (1452-1485) -11260945 18 n 03 Richards 0 I._A._Richards 0 Ivor_Armstrong_Richards 0 002 @i 10266016 n 0000 @i 10577820 n 0000 | English literary critic who collaborated with C. K. Ogden and contributed to the development of Basic English (1893-1979) -11261184 18 n 03 Richardson 0 Ralph_Richardson 0 Sir_Ralph_David_Richardson 0 001 @i 09765278 n 0000 | British stage and screen actor noted for playing classic roles (1902-1983) -11261364 18 n 02 Richardson 1 Henry_Hobson_Richardson 0 001 @i 09805475 n 0000 | United States architect (1838-1886) -11261483 18 n 04 Richelieu 0 Duc_de_Richelieu 0 Armand_Jean_du_Plessis 0 Cardinal_Richelieu 0 002 @i 09807075 n 0000 @i 10650162 n 0000 | French prelate and statesman; principal minister to Louis XIII (1585-1642) -11261698 18 n 02 Richler 0 Mordecai_Richler 0 001 @i 10794014 n 0000 | Canadian novelist (born in 1931) -11261804 18 n 03 Rickenbacker 0 Eddie_Rickenbacker 0 Edward_Vernon_Rickenbacker 0 001 @i 09939827 n 0000 | the most decorated United States combat pilot in World War I (1890-1973) -11261986 18 n 03 Rickover 0 Hyman_Rickover 0 Hyman_George_Rickover 0 001 @i 10347593 n 0000 | United States admiral who advocated the development of nuclear submarines (1900-1986) -11262168 18 n 03 Riemann 0 Bernhard_Riemann 0 Georg_Friedrich_Bernhard_Riemann 0 002 @i 10301261 n 0000 + 03037799 a 0101 | pioneer of non-Euclidean geometry (1826-1866) -11262340 18 n 03 Riesman 0 David_Riesman 0 David_Riesman_Jr. 0 001 @i 10620758 n 0000 | United States sociologist (1909-2002) -11262468 18 n 02 Riley 0 James_Whitcomb_Riley 0 001 @i 10444194 n 0000 | United States poet (1849-1916) -11262574 18 n 02 Rilke 0 Rainer_Maria_Rilke 0 001 @i 10444194 n 0000 | German poet (born in Austria) whose imagery and mystic lyricism influenced 20th-century German literature (1875-1926) -11262765 18 n 03 Rimbaud 0 Arthur_Rimbaud 0 Jean_Nicholas_Arthur_Rimbaud 0 001 @i 10444194 n 0000 | French poet whose work influenced the surrealists (1854-1891) -11262929 18 n 04 Rimsky-Korsakov 0 Nikolai_Andreyevich_Rimsky-Korsakov 0 Rimski-Korsakov 0 Nikolai_Andreyevich_Rimski-Korsakov 0 001 @i 09947232 n 0000 | Russian composer of operas and orchestral works; often used themes from folk music (1844-1908) -11263180 18 n 02 Ringling 0 Charles_Ringling 0 001 @i 10593745 n 0000 | United States showman whose song-and-dance troop evolved into a circus (1863-1926) -11263337 18 n 02 Rittenhouse 0 David_Rittenhouse 0 001 @i 09818343 n 0000 | United States astronomer said to have built the first telescope made in America; also the first director of the United States Mint (1732-1796) -11263558 18 n 02 Ritz 0 Cesar_Ritz 0 001 @i 10187990 n 0000 | Swiss hotelier who created a chain of elegant hotels (1850-1918) -11263687 18 n 02 Rivera 0 Diego_Rivera 0 001 @i 10338498 n 0000 | socialist Mexican painter of murals (1886-1957) -11263803 18 n 02 Robbins 0 Jerome_Robbins 0 001 @i 09920283 n 0000 | United States choreographer who brought human emotion to classical ballet and spirited reality to Broadway musicals (1918-1998) -11264002 18 n 03 Robert 0 Henry_M._Robert 0 Henry_Martyn_Robert 0 001 @i 10400309 n 0000 | United States parliamentary authority and author (in 1876) of Robert's Rules of Order (1837-1923) -11264193 18 n 02 Roberts 0 Bartholomew_Roberts 0 001 @i 10435367 n 0000 | a Welsh pirate credited with having taken more than 400 ships (1682-1722) -11264343 18 n 02 Roberts 1 Kenneth_Roberts 0 001 @i 10794014 n 0000 | United States writer remembered for his historical novels about colonial America (1885-1957) -11264508 18 n 02 Roberts 2 Oral_Roberts 0 001 @i 10067011 n 0000 | United States evangelist (born 1918) -11264614 18 n 03 Roberts 3 Richard_J._Roberts 0 Richard_John_Roberts 0 001 @i 09913824 n 0000 | United States biochemist (born in England) honored for his discovery that some genes contain introns (born in 1943) -11264828 18 n 03 Robertson 0 Oscar_Robertson 0 Oscar_Palmer_Robertson 0 001 @i 10150281 n 0000 | United States basketball guard (born in 1938) -11264973 18 n 03 Robeson 0 Paul_Robeson 0 Paul_Bustill_Robeson 0 002 @i 10599806 n 0000 @i 09924996 n 0000 | United States bass singer and an outspoken critic of racism and proponent of socialism (1898-1976) -11265183 18 n 02 Robespierre 0 Maxmillien_Marie_Isidore_de_Robespierre 0 001 @i 10527334 n 0000 | French revolutionary; leader of the Jacobins and architect of the Reign of Terror; was himself executed in a coup d'etat (1758-1794) -11265416 18 n 03 Robinson 0 Edward_G._Robinson 0 Edward_Goldenberg_Robinson 0 001 @i 09765278 n 0000 | United States film actor noted for playing gangster roles (1893-1973) -11265591 18 n 02 Robinson 1 Edwin_Arlington_Robinson 0 001 @i 10444194 n 0000 | United States poet; author of narrative verse (1869-1935) -11265731 18 n 03 Robinson 2 Jackie_Robinson 0 Jack_Roosevelt_Robinson 0 001 @i 09835506 n 0000 | United States baseball player; first Black to play in the major leagues (1919-1972) -11265914 18 n 02 Robinson 3 James_Harvey_Robinson 0 001 @i 10177150 n 0000 | United States historian who stressed the importance of intellectual and social events for the course of history (1863-1936) -11266117 18 n 03 Robinson 4 Lennox_Robinson 0 Esme_Stuart_Lennox_Robinson 0 001 @i 10030277 n 0000 | Irish playwright and theater manager in Dublin (1886-1958) -11266279 18 n 04 Robinson 5 Ray_Robinson 0 Sugar_Ray_Robinson 0 Walker_Smith 0 001 @i 10477077 n 0000 | United States prizefighter who won the world middleweight championship five times and the world welterweight championship once (1921-1989) -11266524 18 n 03 Robinson 6 Robert_Robinson 0 Sir_Robert_Robinson 0 001 @i 09913824 n 0000 | English chemist noted for his studies of molecular structures in plants (1886-1975) -11266703 18 n 03 Rochambeau 0 Comte_de_Rochambeau 0 Jean_Baptiste_Donatien_de_Vimeur 0 001 @i 10123844 n 0000 | French general who commanded French troops in the American Revolution, notably at Yorktown (1725-1807) -11266920 18 n 02 Rock 1 John_Rock 0 001 @i 10154013 n 0000 | United States gynecologist and devout Catholic who conducted the first clinical trials of the oral contraceptive pill (1890-1984) -11267113 18 n 03 Rockefeller 0 John_D._Rockefeller 0 John_Davison_Rockefeller 0 002 @i 10204177 n 0000 @i 10421956 n 0000 | United States industrialist who made a fortune in the oil business and gave half of it away (1839-1937) -11267343 18 n 03 Rockingham 0 Second_Marquis_of_Rockingham 0 Charles_Watson-Wentworth 0 001 @i 10650162 n 0000 | English statesman who served as prime minister and who opposed the war with the American colonies (1730-1782) -11267568 18 n 02 Rockwell 0 Norman_Rockwell 0 001 @i 09812068 n 0000 | United States illustrator whose works present a sentimental idealized view of everyday life (1894-1978) -11267745 18 n 02 Rodgers 0 Richard_Rodgers 0 001 @i 09947232 n 0000 | United States composer of musical comedies (especially in collaboration with Oscar Hammerstein II and with Lorenz Hart) (1902-1979) -11267949 18 n 03 Rodin 0 Auguste_Rodin 0 Francois_Auguste_Rene_Rodin 0 001 @i 10566072 n 0000 | French sculptor noted for his renderings of the human form (1840-1917) -11268118 18 n 03 Roebling 0 John_Roebling 0 John_Augustus_Roebling 0 001 @i 09615807 n 0000 | United States engineer (born in Germany) who designed and began construction of the Brooklyn bridge (1806-1869) -11268326 18 n 04 Roentgen 0 Wilhelm_Konrad_Roentgen 0 Rontgen 0 Wilhelm_Konrad_Rontgen 0 001 @i 10428004 n 0000 | German physicist who discovered x-rays and developed roentgenography (1845-1923) -11268523 18 n 02 Rogers 0 Carl_Rogers 0 001 @i 10488865 n 0000 | United States psychologist who developed client-centered therapy (1902-1987) -11268667 18 n 04 Rogers 1 Ginger_Rogers 0 Virginia_McMath 0 Virginia_Katherine_McMath 0 002 @i 09989502 n 0000 @i 09767700 n 0000 | United States dancer and film actress who partnered with Fred Astaire (1911-1995) -11268883 18 n 03 Rogers 2 Will_Rogers 0 William_Penn_Adair_Rogers 0 001 @i 10191943 n 0000 | United States humorist remembered for his homespun commentary on politics and American society (1879-1935) -11269085 18 n 02 Roget 0 Peter_Mark_Roget 0 001 @i 10020890 n 0000 | English physician who in retirement compiled a well-known thesaurus (1779-1869) -11269236 18 n 03 Rollo 0 Rolf 0 Hrolf 0 001 @i 10164025 n 0000 | Norse chieftain who became the first duke of Normandy (860-931) -11269367 18 n 02 Romberg 0 Sigmund_Romberg 0 001 @i 09947232 n 0000 | United States composer (born in Hungary) who composed operettas (1887-1951) -11269515 18 n 03 Rommel 0 Erwin_Rommel 0 Desert_Fox 0 001 @i 10086821 n 0000 | German field marshal noted for brilliant generalship in North Africa during World War II (1891-1944) -11269697 18 n 04 Roosevelt 1 Theodore_Roosevelt 0 President_Roosevelt 1 President_Theodore_Roosevelt 0 001 @i 10467395 n 0000 | 26th President of the United States; hero of the Spanish-American War; Panama Canal was built during his administration; "Theodore Roosevelt said `Speak softly but carry a big stick'" (1858-1919) -11270023 18 n 07 Roosevelt 2 Franklin_Roosevelt 0 Franklin_Delano_Roosevelt 0 F._D._Roosevelt 0 President_Roosevelt 2 President_Franklin_Roosevelt 0 FDR 0 002 @i 10467395 n 0000 + 03037924 a 0101 | 32nd President of the United States; elected four times; instituted New Deal to counter the Great Depression and led country during World War II (1882-1945) -11270380 18 n 03 Roosevelt 3 Eleanor_Roosevelt 0 Anna_Eleanor_Roosevelt 0 002 @i 10013927 n 0000 @i 10794014 n 0000 | wife of Franklin Roosevelt and a strong advocate of human rights (1884-1962) -11270577 18 n 03 Ross 0 Betsy_Ross 0 Betsy_Griscom_Ross 0 001 @i 10033412 n 0000 | American seamstress said to have made the first American flag at the request of George Washington (1752-1836) -11270772 18 n 03 Ross 1 Nellie_Ross 0 Nellie_Tayloe_Ross 0 001 @i 10450303 n 0000 | a politician in Wyoming who was the first woman governor in the United States (1876-1977) -11270948 18 n 02 Ross 2 Sir_Ronald_Ross 0 001 @i 10020890 n 0000 | British physician who discovered that mosquitos transmit malaria (1857-1932) -11271094 18 n 03 Ross 3 James_Clark_Ross 0 Sir_James_Clark_Ross 0 001 @i 10072708 n 0000 | British explorer of the Arctic and Antarctic; located the north magnetic pole in 1831; discovered the Ross Sea in Antarctica; nephew of Sir John Ross (1800-1862) -11271349 18 n 03 Ross 4 John_Ross 0 Sir_John_Ross 0 001 @i 10072708 n 0000 | Scottish explorer who led Arctic expeditions that yielded geographic discoveries while searching for the Northwest Passage (1777-1856) -11271563 18 n 02 Rossetti 0 Dante_Gabriel_Rossetti 0 001 @i 10465248 n 0000 | English poet and painter who was a leader of the Pre-Raphaelites (1828-1882) -11271720 18 n 02 Rossini 0 Giloacchino_Antonio_Rossini 0 001 @i 09947232 n 0000 | Italian composer remembered for his operas (1792-1868) -11271859 18 n 02 Rostand 0 Edmond_Rostand 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | French dramatist and poet whose play immortalized Cyrano de Bergerac (1868-1918) -11272030 18 n 03 Roth 0 Philip_Roth 0 Philip_Milton_Roth 0 001 @i 10794014 n 0000 | United States writer whose novels portray middle-class Jewish life (born in 1933) -11272198 18 n 02 Rothko 0 Mark_Rothko 0 001 @i 10391653 n 0000 | United States abstract painter (born in Russia) whose paintings are characterized by horizontal bands of color with indistinct boundaries (1903-1970) -11272415 18 n 01 Rothschild 0 001 @i 09837824 n 0000 | any of family of powerful Jewish bankers in Europe -11272523 18 n 03 Rous 0 Peyton_Rous 0 Francis_Peyton_Rous 0 001 @i 10011074 n 0000 | United States pathologist who discovered viruses that cause tumors (1879-1970) -11272689 18 n 02 Rousseau 0 Jean-Jacques_Rousseau 0 003 @i 10794014 n 0000 @i 10423589 n 0000 + 02858539 a 0101 | French philosopher and writer born in Switzerland; believed that the natural goodness of man was warped by society; ideas influenced the French Revolution (1712-1778) -11272972 18 n 03 Rousseau 1 Henri_Rousseau 0 Le_Douanier_Rousseau 0 001 @i 10391653 n 0000 | French primitive painter (1844-1910) -11273104 18 n 03 Rubens 0 Peter_Paul_Rubens 0 Sir_Peter_Paul_Rubens 0 001 @i 10375794 n 0000 | prolific Flemish baroque painter; knighted by the English king Charles I (1577-1640) -11273286 18 n 04 Rubinstein 0 Anton_Rubenstein 0 Anton_Gregor_Rubinstein 0 Anton_Grigorevich_Rubinstein 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | Russian composer and pianist (1829-1894) -11273479 18 n 03 Rubinstein 1 Arthur_Rubinstein 0 Artur_Rubinstein 0 001 @i 10430665 n 0000 | United States pianist (born in Poland) known for his interpretations of the music of Chopin (1886-1982) -11273679 18 n 03 Rundstedt 0 von_Rundstedt 0 Karl_Rudolf_Gerd_von_Rundstedt 0 001 @i 10086821 n 0000 | German field marshal in World War II who directed the conquest of Poland and led the Ardennes counteroffensive (1875-1953) -11273907 18 n 03 Runyon 0 Damon_Runyon 0 Alfred_Damon_Runyon 0 001 @i 10794014 n 0000 | United States writer of humorous stylized stories about Broadway and the New York underground (1884-1946) -11274103 18 n 02 Rupert 0 Prince_Rupert 0 001 @i 10472799 n 0000 | English leader (born in Germany) of the Royalist forces during the English Civil War (1619-1682) -11274269 18 n 02 Rush 0 Benjamin_Rush 0 002 @i 10020890 n 0000 @i 09740085 n 0000 | physician and American Revolutionary leader; signer of the Declaration of Independence (1745-1813) -11274454 18 n 03 Rushdie 0 Salman_Rushdie 0 Ahmed_Salman_Rushdie 0 001 @i 10794014 n 0000 | British writer of novels who was born in India; one of his novels is regarded as blasphemous by Muslims and a fatwa was issued condemning him to death (born in 1947) -11274714 18 n 02 Ruskin 0 John_Ruskin 0 001 @i 09810867 n 0000 | British art critic (1819-1900) -11274812 18 n 04 Russell 0 Bertrand_Russell 0 Bertrand_Arthur_William_Russell 0 Earl_Russell 0 002 @i 10269785 n 0000 @i 10423589 n 0000 | English philosopher and mathematician who collaborated with Whitehead (1872-1970) -11275035 18 n 03 Russell 1 George_William_Russell 0 A.E. 0 001 @i 10794014 n 0000 | Irish writer whose pen name was A.E. (1867-1935) -11275170 18 n 03 Russell 2 Henry_Russell 0 Henry_Norris_Russell 0 001 @i 09818343 n 0000 | United States astronomer who developed a theory of stellar evolution (1877-1957) -11275344 18 n 02 Russell 3 Lillian_Russell 0 001 @i 10599806 n 0000 | United States entertainer remembered for her roles in comic operas (1861-1922) -11275495 18 n 03 Russell 4 Bill_Russell 0 William_Felton_Russell 0 001 @i 09904556 n 0000 | United States basketball center (born in 1934) -11275636 18 n 03 Russell 5 Ken_Russell 0 Henry_Kenneth_Alfred_Russell 0 001 @i 10088390 n 0000 | English film director (born in 1927) -11275772 18 n 02 Russell 6 Charles_Taze_Russell 0 001 @i 10519494 n 0000 | United States religious leader who founded the sect that is now called Jehovah's Witnesses (1852-1916) -11275952 18 n 01 Ruth 1 001 @i 10780632 n 0000 | the great-grandmother of king David whose story is told in the Book of Ruth in the Old Testament -11276100 18 n 04 Ruth 0 Babe_Ruth 0 George_Herman_Ruth 0 Sultan_of_Swat 0 001 @i 09835506 n 0000 | United States professional baseball player famous for hitting home runs (1895-1948) -11276285 18 n 04 Rutherford 0 Ernest_Rutherford 0 First_Baron_Rutherford 0 First_Baron_Rutherford_of_Nelson 0 001 @i 10428004 n 0000 | British physicist (born in New Zealand) who discovered the atomic nucleus and proposed a nuclear model of the atom (1871-1937) -11276549 18 n 02 Rutherford 1 Daniel_Rutherford 0 001 @i 09913824 n 0000 | British chemist who isolated nitrogen (1749-1819) -11276676 18 n 02 Rutledge 0 John_Rutledge 0 001 @i 09916788 n 0000 | United States jurist and second chief justice of the United States Supreme Court; he was appointed by George Washington and briefly served as chief justice but was ultimately rejected by the United States Senate (1739-1800) -11276971 18 n 02 Saarinen 2 Eero_Saarinen 0 001 @i 09805475 n 0000 | United States architect (born in Finland) (1910-1961) -11277096 18 n 02 Saarinen 1 Eliel_Saarinen 0 001 @i 09805475 n 0000 | Finnish architect and city planner who moved to the United States in 1923; father of Eero Saarinen (1873-1950) -11277279 18 n 03 Sabin 0 Albert_Sabin 0 Albert_Bruce_Sabin 0 001 @i 10313580 n 0000 | United States microbiologist (born in Poland) who developed the Sabin vaccine that is taken orally against poliomyelitis (born 1906) -11277500 18 n 02 Sacagawea 0 Sacajawea 0 002 @i 09668729 n 0000 @i 10562749 n 0000 | the Shoshone guide and interpreter who guided the Lewis and Clark expedition part of the way -11277680 18 n 02 Sacco 0 Nicola_Sacco 0 001 @i 09791816 n 0000 | United States anarchist (born in Italy) who with Bartolomeo Vanzetti was convicted of murder and in spite of world-wide protest was executed (1891-1927) -11277900 18 n 03 Sadat 0 Anwar_Sadat 0 Anwar_el-Sadat 0 001 @i 10650162 n 0000 | Egyptian statesman who (as president of Egypt) negotiated a peace treaty with Menachem Begin (then prime minister of Israel) (1918-1981) -11278120 18 n 04 Sade 0 de_Sade 0 Comte_Donatien_Alphonse_Francois_de_Sade 0 Marquis_de_Sade 0 001 @i 10794014 n 0000 | French soldier and writer whose descriptions of sexual perversion gave rise to the term `sadism' (1740-1814) -11278351 18 n 02 Saint-Saens 0 Charles_Camille_Saint-Saens 0 002 @i 10430665 n 0000 @i 09947232 n 0000 | French pianist and composer (1835-1921) -11278498 18 n 03 Sakharov 0 Andrei_Sakharov 0 Andrei_Dimitrievich_Sakharov 0 001 @i 10364643 n 0000 | Soviet physicist and dissident; helped develop the first Russian hydrogen bomb; advocated nuclear disarmament and campaigned for human rights (1921-1989) -11278756 18 n 02 Saladin 0 Salah-ad-Din_Yusuf_ibn-Ayyub 0 001 @i 10674315 n 0000 | sultan of Syria and Egypt; reconquered Jerusalem from the Christians in 1187 but was defeated by Richard Coeur de Lion in 1191 (1137-1193) -11278980 18 n 03 Salinger 0 J._D._Salinger 0 Jerome_David_Salinger 0 001 @i 10794014 n 0000 | United States writer (born 1919) -11279109 18 n 03 Salk 0 Jonas_Salk 0 Jonas_Edward_Salk 0 001 @i 10755394 n 0000 | United States virologist who developed the Salk vaccine that is injected against poliomyelitis (born 1914) -11279300 18 n 01 Salome 0 001 @i 09989502 n 0000 | woman whose dancing beguiled Herod into giving her the head of John the Baptist -11279433 18 n 02 Salomon 0 Haym_Salomon 0 002 @i 09740085 n 0000 @i 10090020 n 0000 | American financier and American Revolutionary War patriot who helped fund the army during the American Revolution (1740?-1785) -11279648 18 n 01 Samson 0 002 @i 10225219 n 0000 ;c 06449735 n 0000 | (Old Testament) a judge of Israel who performed herculean feats of strength against the Philistines until he was betrayed to them by his mistress Delilah -11279874 18 n 01 Samuel 0 002 @i 10483890 n 0000 ;c 06449735 n 0000 | (Old Testament) Hebrew prophet and judge who anointed Saul as king -11280013 18 n 04 Sand 0 George_Sand 0 Amandine_Aurore_Lucie_Dupin 0 Baroness_Dudevant 0 001 @i 10794014 n 0000 | French writer known for works concerning women's rights and independence (1804-1876) -11280213 18 n 02 Sandburg 0 Carl_Sandburg 0 001 @i 10794014 n 0000 | United States writer remembered for his poetry in free verse and his six volume biography of Abraham Lincoln (1878-1967) -11280405 18 n 03 Sanger 0 Margaret_Sanger 0 Margaret_Higgins_Sanger 0 001 @i 10366966 n 0000 | United States nurse who campaigned for birth control and planned parenthood; she challenged Gregory Pincus to develop a birth control pill (1883-1966) -11280653 18 n 03 Sanger 1 Frederick_Sanger 0 Fred_Sanger 0 001 @i 09854915 n 0000 | English biochemist who determined the sequence of amino acids in insulin and who invented a technique to determine the genetic sequence of an organism (born in 1918) -11280905 18 n 04 Santa_Anna 0 Santa_Ana 0 Antonio_Lopez_de_Santa_Anna 0 Antonio_Lopez_de_Santa_Ana 0 001 @i 10123844 n 0000 | Mexican general who tried to crush the Texas revolt and who lost battles to Winfield Scott and Zachary Taylor in the Mexican War (1795-1876) -11281174 18 n 02 Sapir 0 Edward_Sapir 0 002 @i 09796323 n 0000 @i 10264437 n 0000 | anthropologist and linguist; studied languages of North American Indians (1884-1939) -11281345 18 n 01 Sappho 0 003 @i 10447255 n 0000 @i 09711530 n 0000 + 02020495 a 0101 | the Greek lyric poet of Lesbos; much admired although only fragments of her poetry have been preserved (6th century BC) -11281555 18 n 01 Sarah 0 002 @i 10780632 n 0000 ;c 06449735 n 0000 | (Old Testament) the wife of Abraham and mother of Isaac -11281682 18 n 02 Sarazen 0 Gene_Sarazen 0 001 @i 10136959 n 0000 | United States golfer who was first to win all four major golf tournaments (1902-1999) -11281837 18 n 02 Sargent 0 John_Singer_Sargent 0 001 @i 10391653 n 0000 | United States painter (born in Italy) known for his society portraits (1856-1925) -11281995 18 n 02 Sarnoff 0 David_Sarnoff 0 001 @i 09882007 n 0000 | United States businessman who pioneered in radio and television broadcasting (1891-1971) -11282154 18 n 02 Saroyan 0 William_Saroyan 0 001 @i 10794014 n 0000 | United States writer of plays and short stories (1908-1981) -11282286 18 n 02 Sartre 0 Jean-Paul_Sartre 0 002 @i 10030277 n 0000 @i 10071557 n 0000 | French writer and existentialist philosopher (1905-1980) -11282434 18 n 03 Satie 0 Erik_Satie 0 Erik_Alfred_Leslie_Satie 0 001 @i 09947232 n 0000 | French composer noted for his experimentalism and rejection of Romanticism (1866-1925) -11282613 18 n 01 Saul 0 002 @i 10231515 n 0000 ;c 06449735 n 0000 | (Old Testament) the first king of the Israelites who defended Israel against many enemies (especially the Philistines) -11282802 18 n 02 Savonarola 0 Girolamo_Savonarola 0 002 @i 10778345 n 0000 @i 10515194 n 0000 | Italian religious and political reformer; a Dominican friar in Florence who preached against sin and corruption and gained a large following; he expelled the Medici from Florence but was later excommunicated and executed for criticizing the Pope (1452-1498) -11283158 18 n 02 Sax 0 Adolphe_Sax 0 001 @i 10284064 n 0000 | a Belgian maker of musical instruments who invented the saxophone (1814-1894) -11283300 18 n 04 Saxe 0 Hermann_Maurice_Saxe 0 comte_de_Saxe 0 Marshal_Saxe 0 002 @i 10123844 n 0000 @i 10296176 n 0000 | a French marshal who distinguished himself in the War of the Austrian Succession (1696-1750) -11283517 18 n 01 Saxo_Grammaticus 0 001 @i 10177150 n 0000 | Danish historian who chronicled the history of Denmark (including the legend of Hamlet) (1150?-1220?) -11283682 18 n 04 Sayers 0 Dorothy_Sayers 0 Dorothy_L._Sayers 0 Dorothy_Leigh_Sayers 0 001 @i 10794014 n 0000 | English writer of detective fiction (1893-1957) -11283843 18 n 03 Scheele 0 Karl_Scheele 0 Karl_Wilhelm_Scheele 0 001 @i 09913824 n 0000 | Swedish chemist (born in Germany) who discovered oxygen before Priestley did (1742-1786) -11284024 18 n 02 Schiaparelli 0 Elsa_Schiaparelli 0 001 @i 09972157 n 0000 | fashion designer born in Italy who was noted for her use of synthetic materials and brilliant colors (1896-1973) -11284216 18 n 02 Schiaparelli 1 Giovanni_Virginio_Schiaparelli 0 001 @i 09818343 n 0000 | Italian astronomer who first noted lines (which he called canals) on the surface of Mars (1835-1910) -11284409 18 n 02 Schiller 0 Johann_Christoph_Friedrich_von_Schiller 0 001 @i 10794014 n 0000 | German romantic writer (1759-1805) -11284541 18 n 03 Schleiden 0 Matthias_Schleiden 0 M._J._Schleiden 0 002 @i 10429965 n 0000 @i 10170359 n 0000 | German physiologist and histologist who in 1838 formulated the cell theory (1804-1881) -11284742 18 n 03 Schlesinger 0 Arthur_Schlesinger 0 Arthur_Meier_Schlesinger 0 001 @i 10177150 n 0000 | United States historian (1888-1965) -11284884 18 n 04 Schlesinger 1 Arthur_Schlesinger 1 Arthur_Schlesinger_Jr. 0 Arthur_Meier_Schlesinger_Jr. 0 001 @i 10177150 n 0000 | United States historian and advisor to President Kennedy (born in 1917) -11285091 18 n 02 Schliemann 0 Heinrich_Schliemann 0 001 @i 09804806 n 0000 | German archaeologist who discovered nine superimposed city sites of Troy; he also excavated Mycenae (1822-1890) -11285282 18 n 03 Schmidt 0 Helmut_Schmidt 0 Helmut_Heinrich_Waldemar_Schmidt 0 001 @i 10650162 n 0000 | German statesman who served as chancellor of Germany (born in 1918) -11285456 18 n 02 Schnabel 0 Artur_Schnabel 0 002 @i 09947232 n 0000 @i 10430665 n 0000 | United States composer (born in Austria) and pianist noted for his interpretations of the works of Mozart and Beethoven and Schubert (1882-1951) -11285692 18 n 03 Schonbein 0 Christian_Schonbein 0 Christian_Friedrich_Schonbein 0 001 @i 09913824 n 0000 | German chemist who discovered ozone and developed guncotton as a propellant in firearms (1799-1868) -11285902 18 n 04 Schonberg 0 Arnold_Schonberg 0 Schoenberg 0 Arnold_Schoenberg 0 001 @i 09947232 n 0000 | United States composer and musical theorist (born in Austria) who developed atonal composition (1874-1951) -11286117 18 n 02 Schoolcraft 0 Henry_Rowe_Schoolcraft 0 003 @i 10127689 n 0000 @i 10065758 n 0000 @i 10072708 n 0000 | United States geologist and ethnologist and explorer who discovered the source of the Mississippi River (1793-1864) -11286354 18 n 02 Schopenhauer 0 Arthur_Schopenhauer 0 001 @i 10423589 n 0000 | German pessimist philosopher (1788-1860) -11286476 18 n 02 Schrodinger 0 Erwin_Schrodinger 0 001 @i 10364643 n 0000 | Austrian physicist who discovered the wave equation (1887-1961) -11286618 18 n 04 Schubert 0 Franz_Schubert 0 Franz_Peter_Schubert 0 Franz_Seraph_Peter_Schubert 0 001 @i 09947232 n 0000 | Austrian composer known for his compositions for voice and piano (1797-1828) -11286820 18 n 04 Schulz 0 Charles_Schulz 0 Charles_M._Schulz 0 Charles_Munroe_Schulz 0 001 @i 09898346 n 0000 | United States cartoonist whose comic strip included the beagle Snoopy (1922-2000) -11287016 18 n 03 Schumann 0 Robert_Schumann 0 Robert_Alexander_Schumann 0 001 @i 09947232 n 0000 | German romantic composer known for piano music and songs (1810-1856) -11287186 18 n 02 Schumann 1 Clara_Josephine_Schumann 0 002 @i 10430665 n 0000 @i 09947232 n 0000 | German pianist and composer of piano music; renowned for her interpretation of music, especially the music of her husband Robert Schumann (1819-1896) -11287437 18 n 02 Schumann-Heink 0 Ernestine_Schumann-Heink 0 001 @i 09961198 n 0000 | United States operatic contralto (1861-1936) -11287570 18 n 03 Schumpeter 0 Joseph_Schumpeter 0 Joseph_Alois_Schumpeter 0 001 @i 10043643 n 0000 | United States economist (born in Czechoslovakia) (1883-1950) -11287734 18 n 02 Schwann 0 Theodor_Schwann 0 002 @i 10429965 n 0000 @i 10170359 n 0000 | German physiologist and histologist who in 1838 and 1839 identified the cell as the basic structure of plant and animal tissue (1810-1882) -11287964 18 n 02 Schweitzer 0 Albert_Schweitzer 0 004 @i 10323182 n 0000 @i 10423589 n 0000 @i 10020890 n 0000 @i 10382825 n 0000 | French philosopher and physician and organist who spent most of his life as a medical missionary in Gabon (1875-1965) -11288216 18 n 06 Scipio 0 Scipio_Africanus 0 Scipio_Africanus_Major 0 Publius_Cornelius_Scipio 0 Publius_Cornelius_Scipio_Africanus_Major 0 Scipio_the_Elder 0 001 @i 10123844 n 0000 | Roman general who commanded the invasion of Carthage in the second Punic War and defeated Hannibal at Zama (circa 237-183 BC) -11288528 18 n 03 Scopes 0 John_Scopes 0 John_Thomas_Scopes 0 001 @i 10560352 n 0000 | Tennessee highschool teacher who violated a state law by teaching evolution; in a highly publicized trial in 1925 he was prosecuted by William Jennings Bryan and defended by Clarence Darrow (1900-1970) -11288818 18 n 02 Scorsese 0 Martin_Scorsese 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1942) -11288930 18 n 02 Scott 0 Dred_Scott 0 001 @i 10609325 n 0000 | United States slave who sued for liberty after living in a non-slave state; caused the Supreme Court to declare the Missouri Compromise unconstitutional (1795?-1858) -11289161 18 n 03 Scott 1 Walter_Scott 0 Sir_Walter_Scott 0 001 @i 10794014 n 0000 | British author of historical novels and ballads (1771-1832) -11289307 18 n 02 Scott 2 Winfield_Scott 0 001 @i 10123844 n 0000 | United States general who was a hero of the War of 1812 and who defeated Santa Anna in the Mexican War (1786-1866) -11289491 18 n 03 Scott 3 Robert_Scott 0 Robert_Falcon_Scott 0 001 @i 10072708 n 0000 | English explorer who reached the South Pole just a month after Amundsen; he and his party died on the return journey (1868-1912) -11289709 18 n 02 Scott 4 George_C._Scott 0 001 @i 09765278 n 0000 | award-winning United States film actor (1928-1999) -11289830 18 n 03 Scriabin 0 Aleksandr_Scriabin 0 Aleksandr_Nikolayevich_Scriabin 0 001 @i 09947232 n 0000 | Russian composer of orchestral and piano music (1872-1915) -11289999 18 n 02 Scribe 2 Augustin_Eugene_Scribe 0 001 @i 10030277 n 0000 | French playwright (1791-1861) -11290107 18 n 02 Scripps 0 James_Edmund_Scripps 0 001 @i 10491575 n 0000 | United States newspaper publisher and half-brother of Edward Wyllis Scripps (1835-1908) -11290272 18 n 02 Scripps 1 Edward_Wyllis_Scripps 0 001 @i 10491575 n 0000 | United States newspaper publisher who founded an important press association; half-brother of James Edmund Scripps (1854-1926) -11290477 18 n 03 Seaborg 0 Glenn_T._Seaborg 0 Glenn_Theodore_Seaborg 0 001 @i 09913824 n 0000 | United States chemist who was one of the discoverers of plutonium (1912-1999) -11290653 18 n 04 Seaman 1 Elizabeth_Seaman 0 Elizabeth_Cochrane_Seaman 0 Nellie_Bly 0 001 @i 10224578 n 0000 | muckraking United States journalist who exposed bad conditions in mental institutions (1867-1922) -11290864 18 n 02 Seeger 0 Alan_Seeger 0 001 @i 10444194 n 0000 | United States poet killed in World War I (1888-1916) -11290984 18 n 03 Seeger 1 Pete_Seeger 0 Peter_Seeger 0 001 @i 10099093 n 0000 | United States folk singer who was largely responsible for the interest in folk music in the 1960s (born in 1919) -11291179 18 n 02 Segal 0 George_Segal 0 001 @i 10566072 n 0000 | United States sculptor (born in 1924) -11291284 18 n 02 Segovia 0 Andres_Segovia 0 002 @i 10151760 n 0000 @i 09947232 n 0000 | Spanish guitarist who made classical guitar a concert instrument (1893-1987) -11291451 18 n 02 Seles 0 Monica_Seles 0 001 @i 10701180 n 0000 | United States tennis player (born in Yugoslavia in 1973) -11291575 18 n 03 Seleucus 0 Seleucus_I 0 Seleucus_I_Nicator 0 002 @i 10123844 n 0000 @i 09721444 n 0000 | Macedonian general who accompanied Alexander the Great into Asia; founded a line of kings who reigned in Asia Minor until 65 BC (358-281 BC) -11291824 18 n 04 Selkirk 0 Selcraig 0 Alexander_Selkirk 0 Alexander_Selcraig 0 001 @i 10546633 n 0000 | Scottish sailor who was put ashore on a deserted island off the coast of Chile for five years (providing the basis for Daniel Defoe's novel about Robinson Crusoe) (1676-1721) -11292105 18 n 02 Sellers 0 Peter_Sellers 0 001 @i 09765278 n 0000 | English comic actor (1925-1980) -11292207 18 n 03 Selznick 0 David_O._Selznick 0 David_Oliver_Selznick 0 001 @i 10088390 n 0000 | United States filmmaker noted for his film adaptations of popular novels (1902-1965) -11292391 18 n 02 Seneca 0 Lucius_Annaeus_Seneca 0 004 @i 10650162 n 0000 @i 10030277 n 0000 @i 10423589 n 0000 + 03038065 a 0101 | Roman statesman and philosopher who was an advisor to Nero; his nine extant tragedies are modeled on Greek tragedies (circa 4 BC - 65 AD) -11292662 18 n 03 Senefelder 0 Alois_Senefelder 0 Aloys_Senefelder 0 001 @i 10266486 n 0000 | German printer who invented lithography (1771-1834) -11292809 18 n 01 Sennacherib 0 001 @i 10231515 n 0000 | king of Assyria who invaded Judea twice and defeated Babylon and rebuilt Nineveh after it had been destroyed by Babylonians (died in 681 BC) -11293008 18 n 02 Sennett 0 Mack_Sennett 0 001 @i 10088390 n 0000 | United States filmmaker (born in Canada) noted for slapstick movies (1880-1960) -11293157 18 n 03 Sequoya 0 Sequoyah 0 George_Guess 0 002 @i 10203298 n 0000 @i 09651790 n 0000 | Cherokee who created a notation for writing the Cherokee language (1770-1843) -11293334 18 n 02 Serkin 0 Rudolf_Serkin 0 001 @i 10430665 n 0000 | United States concert pianist (born in Czechoslovakia) (1903-1991) -11293470 18 n 03 Serra 0 Junipero_Serra 0 Miguel_Jose_Serra 0 001 @i 10323182 n 0000 | Spanish missionary who founded Franciscan missions in California (1713-1784) -11293636 18 n 02 Service 0 Robert_William_Service 0 001 @i 10794014 n 0000 | Canadian writer (born in England) who wrote about life in the Yukon Territory (1874-1958) -11293805 18 n 03 Sessions 0 Roger_Sessions 0 Roger_Huntington_Sessions 0 001 @i 09947232 n 0000 | United States composer who promoted 20th century music (1896-1985) -11293972 18 n 04 Seton 0 Elizabeth_Seton 0 Saint_Elizabeth_Ann_Bayley_Seton 0 Mother_Seton 0 001 @i 10519494 n 0000 | United States religious leader who was the first person born in the United States to be canonized (1774-1821) -11294202 18 n 03 Seurat 0 Georges_Seurat 0 Georges_Pierre_Seurat 0 001 @i 10391653 n 0000 | French painter who developed pointillism (1859-1891) -11294349 18 n 02 Seward 0 William_Henry_Seward 0 001 @i 10450303 n 0000 | United States politician who as Secretary of State in 1867 arranged for the purchase of Alaska from Russia (known at the time as Seward's Folly) (1801-1872) -11294582 18 n 02 Sexton 1 Anne_Sexton 0 001 @i 10444194 n 0000 | United States poet (1928-1974) -11294680 18 n 02 Seymour 0 Jane_Seymour 0 001 @i 10499857 n 0000 | Queen of England as the third wife of Henry VIII and mother of Edward VI (1509-1537) -11294834 18 n 01 Shah_Jahan 0 001 @i 10053004 n 0000 | Mogul emperor of India during whose reign the finest monuments of Mogul architecture were built (including the Taj Mahal at Agra) (1592-1666) -11295033 18 n 03 Shahn 0 Ben_Shahn 0 Benjamin_Shahn 0 001 @i 10391653 n 0000 | United States artist whose work reflected social and political themes (1898-1969) -11295196 18 n 05 Shakespeare 0 William_Shakespeare 0 Shakspere 0 William_Shakspere 0 Bard_of_Avon 0 004 @i 10030277 n 0000 @i 10444194 n 0000 + 03027335 a 0101 + 03027335 a 0102 | English poet and dramatist considered one of the greatest English writers (1564-1616) -11295464 18 n 02 Shankar 0 Ravi_Shankar 0 001 @i 10603851 n 0000 | Indian sitar player who popularized classical Indian music in the West (born in 1920) -11295619 18 n 04 Shannon 0 Claude_Shannon 0 Claude_E._Shannon 0 Claude_Elwood_Shannon 0 001 @i 09615807 n 0000 | United States electrical engineer who pioneered mathematical communication theory (1916-2001) -11295828 18 n 02 Shapley 0 Harlow_Shapley 0 001 @i 09818343 n 0000 | United States astronomer (1885-1972) -11295936 18 n 03 Shaw 0 G._B._Shaw 0 George_Bernard_Shaw 0 003 @i 10794014 n 0000 @i 10030277 n 0000 + 03027213 a 0101 | British playwright (born in Ireland); founder of the Fabian Society (1856-1950) -11296139 18 n 02 Shaw 1 Anna_Howard_Shaw 0 002 @i 10672908 n 0000 @i 10020890 n 0000 | United States physician and suffragist (1847-1919) -11296279 18 n 03 Shaw 2 Henry_Wheeler_Shaw 0 Josh_Billings 0 001 @i 10191943 n 0000 | United States humorist who wrote about rural life (1818-1885) -11296429 18 n 03 Shaw 3 Artie_Shaw 0 Arthur_Jacob_Arshawsky 0 002 @i 09926246 n 0000 @i 09837201 n 0000 | United States clarinetist and leader of a swing band (1910-2004) -11296602 18 n 02 Shawn 0 Ted_Shawn 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer who collaborated with Ruth Saint Denis (1891-1972) -11296775 18 n 02 Shearer 2 Moira_Shearer 0 002 @i 09989502 n 0000 @i 09767700 n 0000 | Scottish ballet dancer and actress (born in 1926) -11296914 18 n 02 Shelley 0 Percy_Bysshe_Shelley 0 001 @i 10444194 n 0000 | Englishman and romantic poet (1792-1822) -11297032 18 n 04 Shelley 1 Mary_Shelley 0 Mary_Wollstonecraft_Shelley 0 Mary_Godwin_Wollstonecraft_Shelley 0 001 @i 10794014 n 0000 | English writer who created Frankenstein's monster and married Percy Bysshe Shelley (1797-1851) -11297263 18 n 03 Shepard 0 Alan_Shepard 0 Alan_Bartlett_Shepard_Jr. 0 001 @i 09818022 n 0000 | astronaut who made the first United States' suborbital rocket-powered flight in 1961 (1923-1998) -11297457 18 n 02 Shepard 1 Sam_Shepard 0 001 @i 10030277 n 0000 | United States author of surrealistic allegorical plays (born in 1943) -11297595 18 n 02 Sheridan 0 Richard_Brinsley_Sheridan 0 001 @i 10030277 n 0000 | Irish playwright remembered for his satirical comedies of manners (1751-1816) -11297756 18 n 02 Sherman 0 Roger_Sherman 0 001 @i 09740085 n 0000 | American Revolutionary leader and signer of the Declaration of Independence and the Articles of Confederation and the United States Constitution (1721-1793) -11297983 18 n 02 Sherman 1 William_Tecumseh_Sherman 0 001 @i 10123844 n 0000 | United States general who was commander of all Union troops in the West; he captured Atlanta and led a destructive march to the sea that cut the Confederacy in two (1820-1891) -11298240 18 n 02 Sherrington 0 Sir_Charles_Scott_Sherrington 0 001 @i 10429965 n 0000 | English physiologist who conducted research on reflex action (1857-1952) -11298403 18 n 02 Sherwood 0 Robert_Emmet_Sherwood 0 001 @i 10030277 n 0000 | United States playwright (1896-1955) -11298519 18 n 02 Shevchenko 0 Taras_Grigoryevich_Shevchenko 0 001 @i 10444194 n 0000 | Ukranian poet (1814-1861) -11298634 18 n 02 Shirer 0 William_Lawrence_Shirer 0 001 @i 10224578 n 0000 | United States broadcast journalist who was in Berlin at the outbreak of World War II (1904-1993) -11298810 18 n 03 Shockley 0 William_Shockley 0 William_Bradford_Shockley 0 001 @i 10428004 n 0000 | United States physicist (born in England) who contributed to the development of the electronic transistor (1910-1989) -11299030 18 n 03 Shostakovich 0 Dmitri_Shostakovich 0 Dmitri_Dmitrievich_Shostakovich 0 001 @i 09947232 n 0000 | Russian composer best known for his fifteen symphonies (1906-1975) -11299212 18 n 03 Shute 0 Nevil_Shute 0 Nevil_Shute_Norway 0 001 @i 10794014 n 0000 | English writer who settled in Norway after World War II (1899-1960) -11299367 18 n 03 Sibelius 0 Jean_Sibelius 0 Johan_Julius_Christian_Sibelius 0 001 @i 09947232 n 0000 | Finnish composer (1865-1957) -11299501 18 n 03 Siddons 0 Sarah_Siddons 0 Sarah_Kemble_Siddons 0 001 @i 09767700 n 0000 | English actress noted for her performances in Shakespearean roles (1755-1831) -11299672 18 n 02 Sidney 0 Sir_Philip_Sidney 0 001 @i 10444194 n 0000 | English poet (1554-1586) -11299770 18 n 02 Siemens 0 Ernst_Werner_von_Siemens 0 001 @i 10049017 n 0000 | German electrical engineer (1816-1892) -11299890 18 n 03 Siemens 1 Karl_Wilhelm_Siemens 0 Sir_Charles_William_Siemens 0 001 @i 09615807 n 0000 | engineer who was a brother of Ernst Werner von Siemens and who moved to England (1823-1883) -11300089 18 n 03 Sikorsky 0 Igor_Sikorsky 0 Igor_Ivanovich_Sikorsky 0 001 @i 10204177 n 0000 | United States industrialist (born in Russia) who designed the first four-engine airplane and the first mass-produced helicopter (1889-1972) -11300326 18 n 03 Sills 0 Beverly_Sills 0 Belle_Miriam_Silverman 0 001 @i 10625546 n 0000 | United States operatic soprano (born in 1929) -11300465 18 n 03 Silverstein 0 Shel_Silverstein 0 Shelby_Silverstein 0 002 @i 10444194 n 0000 @i 09898346 n 0000 | United States poet and cartoonist remembered for his stories and poems for children (1932-1999) -11300678 18 n 03 Simenon 0 Georges_Simenon 0 Georges_Joseph_Christian_Simenon 0 001 @i 10794014 n 0000 | French writer (born in Belgium) best known for his detective novels featuring Inspector Maigret (1903-1989) -11300893 18 n 04 Simon 0 Herb_Simon 0 Herbert_A._Simon 0 Herbert_Alexander_Simon 0 002 @i 10043643 n 0000 @i 10488865 n 0000 | United States economist and psychologist who pioneered in the development of cognitive science (1916-2001) -11301129 18 n 03 Simon 1 Neil_Simon 0 Marvin_Neil_Simon 0 001 @i 10030277 n 0000 | United States playwright noted for light comedies (born in 1927) -11301279 18 n 02 Simon 2 Paul_Simon 0 002 @i 10599806 n 0000 @i 10624540 n 0000 | United States singer and songwriter (born in 1942) -11301414 18 n 05 Simon 4 St._Simon 0 Simon_Zelotes 0 Simon_the_Zealot 0 Simon_the_Canaanite 0 002 @i 09798811 n 0000 @i 10547145 n 0000 | one of the twelve Apostles (first century) -11301597 18 n 02 Simpson 0 Sir_James_Young_Simpson 0 001 @i 10020890 n 0000 | Scottish obstetrician and surgeon who pioneered in the use of ether and discovered the anesthetic effects of chloroform (1811-1870) -11301809 18 n 05 Simpson 1 Mrs._Simpson 0 Wallis_Warfield_Simpson 0 Wallis_Warfield_Windsor 0 Duchess_of_Windsor 0 001 @i 10020366 n 0000 | United States divorcee whose marriage to Edward VIII created a constitutional crisis leading to his abdication -11302062 18 n 03 Sinatra 0 Frank_Sinatra 0 Francis_Albert_Sinatra 0 002 @i 09980090 n 0000 @i 09765278 n 0000 | United States singer and film actor (1915-1998) -11302224 18 n 03 Sinclair 0 Clive_Sinclair 0 Sir_Clive_Marles_Sinclair 0 002 @i 10049017 n 0000 @i 10060352 n 0000 | English electrical engineer who founded a company that introduced many innovative products (born in 1940) -11302449 18 n 03 Sinclair 1 Upton_Sinclair 0 Upton_Beall_Sinclair 0 001 @i 10794014 n 0000 | United States writer whose novels argued for social reform (1878-1968) -11302615 18 n 02 Singer 1 Isaac_Bashevis_Singer 0 001 @i 10794014 n 0000 | United States writer (born in Poland) of Yiddish stories and novels (1904-1991) -11302772 18 n 03 Singer 2 Isaac_M._Singer 0 Isaac_Merrit_Singer 0 002 @i 10214637 n 0000 @i 10292316 n 0000 | United States inventor of an improved chain-stitch sewing machine (1811-1875) -11302962 18 n 03 Siqueiros 0 David_Siqueiros 0 David_Alfaro_Siqueiros 0 001 @i 10391653 n 0000 | Mexican painter of murals depicting protest and revolution (1896-1974) -11303132 18 n 01 Siraj-ud-daula 0 001 @i 10123844 n 0000 | Indian general and nawab of Bengal who opposed the colonization of India by England; he captured Calcutta in 1756 and many of his prisoners suffocated in a crowded room that became known as the Black Hole of Calcutta; he was defeated at the battle of Plassey by a group of Indian nobles in alliance with Robert Clive (1728-1757) -11303522 18 n 02 Sitter 3 Willem_de_Sitter 0 001 @i 09818343 n 0000 | Dutch astronomer who calculated the size of the universe and suggested that it is expanding (1872-1934) -11303698 18 n 01 Sitting_Bull 0 002 @i 10203298 n 0000 @i 09657206 n 0000 | a chief of the Sioux; took up arms against settlers in the northern Great Plains and against United States Army troops; he was present at the Battle of Little Bighorn (1876) when the Sioux massacred General Custer's troops (1831-1890) -11304011 18 n 03 Sitwell 0 Dame_Edith_Sitwell 0 Dame_Edith_Louisa_Sitwell 0 001 @i 10444194 n 0000 | English poet (1887-1964) -11304139 18 n 02 Sixtus_IV 0 Francesco_della_Rovere 0 001 @i 10453533 n 0000 | Italian pope from 1471 to 1484 who consented to the establishment of the Spanish Inquisition and built the Sistine Chapel (1414-1484) -11304354 18 n 02 Skeat 0 Walter_William_Skeat 0 001 @i 10423225 n 0000 | English philologist (1835-1912) -11304461 18 n 04 Skinner 0 Fred_Skinner 0 B._F._Skinner 0 Burrhus_Frederic_Skinner 0 002 @i 10488865 n 0000 + 03027538 a 0101 | United States psychologist and a leading proponent of behaviorism (1904-1990) -11304669 18 n 02 Skinner 1 Cornelia_Otis_Skinner 0 001 @i 09767700 n 0000 | United States actress noted for her one-woman shows (1901-1979) -11304811 18 n 02 Skinner 2 Otis_Skinner 0 001 @i 09765278 n 0000 | United States actor (1858-1942) -11304912 18 n 04 Smalley 0 Richard_Smalley 0 Richard_E._Smalley 0 Richard_Errett_Smalley 0 001 @i 09913824 n 0000 | American chemist who with Robert Curl and Harold Kroto discovered fullerenes and opened a new branch of chemistry (born in 1943) -11305159 18 n 02 Smetana 0 Bedrich_Smetana 0 001 @i 09947232 n 0000 | Czech composer (1824-1884) -11305258 18 n 02 Smith 2 Adam_Smith 0 001 @i 10043643 n 0000 | Scottish economist who advocated private enterprise and free trade (1723-1790) -11305402 18 n 03 Smith 3 John_Smith 0 Captain_John_Smith 0 001 @i 10072708 n 0000 | English explorer who helped found the colony at Jamestown, Virginia; was said to have been saved by Pocahontas (1580-1631) -11305611 18 n 02 Smith 4 Joseph_Smith 0 001 @i 10248542 n 0000 | religious leader who founded the Mormon Church in 1830 (1805-1844) -11305745 18 n 02 Smith 5 Bessie_Smith 0 001 @i 10599806 n 0000 | United States blues singer (1894-1937) -11305851 18 n 02 Smith 6 Julia_Evelina_Smith 0 001 @i 10672908 n 0000 | United States suffragist who refused to pay taxes until she could vote (1792-1886) -11306008 18 n 03 Smith 7 Kate_Smith 0 Kathryn_Elizabeth_Smith 0 001 @i 10599806 n 0000 | United States singer noted for her rendition of patriotic songs (1909-1986) -11306175 18 n 03 Smith 8 David_Smith 0 David_Roland_Smith 0 001 @i 10566072 n 0000 | United States sculptor (1906-1965) -11306297 18 n 03 Smith 9 Ian_Smith 0 Ian_Douglas_Smith 0 001 @i 10650162 n 0000 | Rhodesian statesman who declared independence of Zimbabwe from Great Britain (born in 1919) -11306473 18 n 03 Smollett 0 Tobias_Smollett 0 Tobias_George_Smollett 0 001 @i 10794014 n 0000 | Scottish writer of adventure novels (1721-1771) -11306619 18 n 02 Smuts 0 Jan_Christian_Smuts 0 002 @i 10622053 n 0000 @i 10650162 n 0000 | South African statesman and soldier (1870-1950) -11306760 18 n 03 Snead 0 Sam_Snead 0 Samuel_Jackson_Snead 0 001 @i 10136959 n 0000 | United States golfer known for the graceful arc of his swing (1912-2002) -11306920 18 n 02 Snellen 0 Hermann_Snellen 0 001 @i 10379073 n 0000 | Dutch ophthalmologist who introduced the Snellen chart to study visual acuity (1834-1908) -11307082 18 n 04 Snow 0 C._P._Snow 0 Charles_Percy_Snow 0 Baron_Snow_of_Leicester 0 001 @i 10794014 n 0000 | English writer of novels about moral dilemmas in academe (1905-1980) -11307262 18 n 03 Socinus 0 Faustus_Socinus 0 Fausto_Paolo_Sozzini 0 001 @i 10705615 n 0000 | Italian theologian who argued against Trinitarianism (1539-1604) -11307422 18 n 01 Socrates 0 003 @i 10423589 n 0000 @i 09711132 n 0000 + 03033636 a 0101 | ancient Athenian philosopher; teacher of Plato and Xenophon (470-399 BC) -11307587 18 n 02 Soddy 0 Frederick_Soddy 0 001 @i 09913824 n 0000 | English chemist whose work on radioactive disintegration led to the discovery of isotopes (1877-1956) -11307759 18 n 01 Solomon 0 003 @i 10231515 n 0000 ;c 06449735 n 0000 + 02799446 a 0101 | (Old Testament) son of David and king of Israel noted for his wisdom (10th century BC) -11307937 18 n 02 Solvay 0 Ernest_Solvay 0 002 @i 09913824 n 0000 @i 10204177 n 0000 | Belgian chemist who developed the Solvay process and built factories exploiting it (1838-1922) -11308120 18 n 04 Solzhenitsyn 0 Alexander_Isayevich_Solzhenitsyn 0 Aleksandr_Solzhenitsyn 0 Aleksandr_I._Solzhenitsyn 0 002 @i 10794014 n 0000 @i 10018532 n 0000 | Soviet writer and political dissident whose novels exposed the brutality of Soviet labor camps (born in 1918) -11308396 18 n 02 Sondheim 0 Stephen_Sondheim 0 001 @i 09947232 n 0000 | United States composer of musicals (born in 1930) -11308520 18 n 02 Sontag 0 Susan_Sontag 0 001 @i 10794014 n 0000 | United States writer (born in 1933) -11308624 18 n 01 Sophocles 0 001 @i 10030277 n 0000 | one of the great tragedians of ancient Greece (496-406 BC) -11308739 18 n 02 Sorensen 0 Soren_Peter_Lauritz_Sorensen 0 001 @i 09913824 n 0000 | Danish chemist who devised the pH scale (1868-1939) -11308877 18 n 02 Soufflot 0 Jacques_Germain_Soufflot 0 001 @i 09805475 n 0000 | French architect (1713-1780) -11308988 18 n 03 Sousa 0 John_Philip_Sousa 0 March_King 0 002 @i 09837360 n 0000 @i 09947232 n 0000 | a United States bandmaster and composer of military marches (1854-1932) -11309164 18 n 02 Southey 0 Robert_Southey 0 002 @i 10444194 n 0000 #m 08468721 n 0000 | English poet and friend of Wordsworth and Coleridge (1774-1843) -11309318 18 n 02 Soutine 0 Chaim_Soutine 0 001 @i 10391653 n 0000 | French expressionist painter (born in Lithuania) (1893-1943) -11309449 18 n 02 Spallanzani 0 Lazzaro_Spallanzani 0 001 @i 10429965 n 0000 | Italian physiologist who disproved the theory of spontaneous generation (1729-1799) -11309613 18 n 04 Spark 0 Muriel_Spark 0 Dame_Muriel_Spark 0 Muriel_Sarah_Spark 0 001 @i 10794014 n 0000 | Scottish writer of satirical novels (born in 1918) -11309772 18 n 03 Spassky 0 Boris_Spassky 0 Boris_Vasilevich_Spassky 0 001 @i 09915651 n 0000 | Russian chess master who moved to Paris; world champion from 1969 to 1972 (born in 1937) -11309958 18 n 02 Speer 0 Albert_Speer 0 001 @i 09805475 n 0000 | German Nazi architect who worked for Hitler (1905-1981) -11310081 18 n 03 Speke 0 John_Speke 0 John_Hanning_Speke 0 001 @i 10072708 n 0000 | English explorer who with Sir Richard Burton was the first European to explore Lake Tanganyika; he also discovered Lake Victoria and named it (1827-1864) -11310321 18 n 02 Spencer 0 Herbert_Spencer 0 002 @i 10423589 n 0000 @i 10620758 n 0000 | English philosopher and sociologist who applied the theory of natural selection to human societies (1820-1903) -11310523 18 n 03 Spender 0 Stephen_Spender 0 Sir_Stephen_Harold_Spender 0 002 @i 10444194 n 0000 @i 10266016 n 0000 | English poet and critic (1909-1995) -11310679 18 n 02 Spengler 0 Oswald_Spengler 0 001 @i 10423589 n 0000 | German philosopher who argued that cultures grow and decay in cycles (1880-1936) -11310833 18 n 02 Spenser 0 Edmund_Spenser 0 001 @i 10444194 n 0000 | English poet who wrote an allegorical romance celebrating Elizabeth I in the Spenserian stanza (1552-1599) -11311011 18 n 02 Sperry 0 Elmer_Ambrose_Sperry 0 002 @i 10214637 n 0000 @i 09615807 n 0000 | United States engineer and inventor of the gyrocompass (1860-1930) -11311173 18 n 02 Spielberg 0 Steven_Spielberg 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1947) -11311287 18 n 03 Spillane 0 Mickey_Spillane 0 Frank_Morrison_Spillane 0 001 @i 10794014 n 0000 | United States writer of popular detective novels (born in 1918) -11311450 18 n 04 Spinoza 0 de_Spinoza 0 Baruch_de_Spinoza 0 Benedict_de_Spinoza 0 001 @i 10423589 n 0000 | Dutch philosopher who espoused a pantheistic system (1632-1677) -11311623 18 n 02 Spock 0 Benjamin_Spock 0 001 @i 09828760 n 0000 | United States pediatrician whose many books on child care influenced the upbringing of children around the world (1903-1998) -11311817 18 n 02 Spode 0 Josiah_Spode 0 001 @i 10460806 n 0000 | English potter who started a pottery famous for its bone china (1754-1827) -11311959 18 n 03 Stael 0 Madame_de_Stael 0 Baronne_Anne_Louise_Germaine_Necker_de_Steal-Holstein 0 001 @i 10794014 n 0000 | French romantic writer (1766-1817) -11312120 18 n 03 Stalin 0 Joseph_Stalin 0 Iosif_Vissarionovich_Dzhugashvili 0 001 @i 09945319 n 0000 | Russian leader who succeeded Lenin as head of the Communist Party and created a totalitarian state by purging all opposition (1879-1953) -11312362 18 n 03 Standish 0 Miles_Standish 0 Myles_Standish 0 001 @i 10583387 n 0000 | English colonist in America; leader of the Pilgrims in the early days of the Plymouth Colony (1584-1656) -11312556 18 n 02 Stanford 0 Leland_Stanford 0 001 @i 09882007 n 0000 | United States railroad executive and founder of Stanford University (1824-1893) -11312709 18 n 04 Stanislavsky 0 Konstantin_Stanislavsky 0 Konstantin_Sergeyevich_Stanislavsky 0 Konstantin_Sergeevich_Alekseev 0 002 @i 09765278 n 0000 @i 10015215 n 0000 | Russian actor and theater director who trained his actors to emphasize the psychological motivation of their roles (1863-1938) -11313011 18 n 04 Stanley 0 Henry_M._Stanley 0 Sir_Henry_Morton_Stanley 0 John_Rowlands 0 002 @i 10224578 n 0000 @i 10072708 n 0000 | Welsh journalist and explorer who led an expedition to Africa in search of David Livingstone and found him in Tanzania in 1871; he and Livingstone together tried to find the source of the Nile River (1841-1904) -11313357 18 n 02 Stanley 1 Francis_Edgar_Stanley 0 001 @i 10214637 n 0000 | United States inventor who built a steam-powered automobile (1849-1918) -11313507 18 n 02 Stanton 0 Elizabeth_Cady_Stanton 0 002 @i 10672908 n 0000 @i 10084635 n 0000 | United States suffragist and feminist; called for reform of the practices that perpetuated sexual inequality (1815-1902) -11313726 18 n 04 Starr 0 Ringo_Starr 0 Starkey 0 Richard_Starkey 0 003 @i 10536416 n 0000 @i 10036929 n 0000 #m 08369920 n 0000 | rock star and drummer for the Beatles (born in 1940) -11313911 18 n 04 St._Denis 0 Saint_Denis 0 Ruth_Saint_Denis 0 Ruth_St._Denis 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer who collaborated with Ted Shawn (1877-1968) -11314119 18 n 02 Steele 0 Sir_Richrd_Steele 0 001 @i 10794014 n 0000 | English writer (1672-1729) -11314219 18 n 02 Steen 0 Jan_Steen 0 001 @i 10375794 n 0000 | Dutch genre painter (1626-1679) -11314315 18 n 03 Steffens 0 Lincoln_Steffens 0 Joseph_Lincoln_Steffens 0 001 @i 10224578 n 0000 | United States journalist whose exposes in 1906 started an era of muckraking journalism (1866-1936) -11314514 18 n 02 Steichen 0 Edward_Jean_Steichen 0 001 @i 10426749 n 0000 | United States photographer who pioneered artistic photography (1879-1973) -11314666 18 n 02 Stein 0 Gertrude_Stein 0 001 @i 10794014 n 0000 | experimental expatriate United States writer (1874-1946) -11314792 18 n 03 Steinbeck 0 John_Steinbeck 0 John_Ernst_Steinbeck 0 001 @i 10794014 n 0000 | United States writer noted for his novels about agricultural workers (1902-1968) -11314969 18 n 02 Steinberg 0 Saul_Steinberg 0 001 @i 09898346 n 0000 | United States cartoonist (born in Romania) noted for his caricatures of famous people (1914-1999) -11315140 18 n 02 Steinem 0 Gloria_Steinem 0 001 @i 10084635 n 0000 | United States feminist (born in 1934) -11315249 18 n 02 Steiner 0 Rudolf_Steiner 0 001 @i 10423589 n 0000 | Austrian philosopher who founded anthroposophy (1861-1925) -11315379 18 n 02 Steinman 0 David_Barnard_Steinman 0 001 @i 09924540 n 0000 | United States civil engineer noted for designing suspension bridges (including the George Washington Bridge) (1886-1960) -11315580 18 n 02 Steinmetz 0 Charles_Proteus_Steinmetz 0 002 @i 10049017 n 0000 @i 10214637 n 0000 | United States electrical engineer and inventor (born in Germany) (1865-1923) -11315760 18 n 04 Steinway 0 Henry_Steinway 0 Henry_Engelhard_Steinway 0 Heinrich_Engelhard_Steinway 0 001 @i 10431122 n 0000 | United States piano maker (born in Germany) who founded a famous piano manufacturing firm in New York (1797-1871) -11316003 18 n 03 Stella 0 Frank_Stella 0 Frank_Philip_Stella 0 001 @i 10391653 n 0000 | United States minimalist painter (born in 1936) -11316141 18 n 02 Steller 0 Georg_Wilhelm_Steller 0 001 @i 10346514 n 0000 | German naturalist (1709-1746) -11316249 18 n 02 Stendhal 0 Marie_Henri_Beyle 0 001 @i 10794014 n 0000 | French writer whose novels were the first to feature psychological analysis of the character (1783-1842) -11316429 18 n 03 Stengel 0 Casey_Stengel 0 Charles_Dillon_Stengel 0 001 @i 09841515 n 0000 | United States baseball manager (1890-1975) -11316567 18 n 02 Stephen 0 Sir_Leslie_Stephen 0 001 @i 10794014 n 0000 | English writer (1832-1904) -11316669 18 n 02 Stephenson 0 George_Stephenson 0 001 @i 09882007 n 0000 | English railway pioneer who built the first passenger railway in 1825 (1781-1848) -11316828 18 n 02 Stern 0 Isaac_Stern 0 002 @i 10754578 n 0000 ;r 09003284 n 0000 | United States concert violinist (born in Russia in 1920) -11316970 18 n 02 Sterne 0 Laurence_Sterne 0 001 @i 10794014 n 0000 | English writer (born in Ireland) (1713-1766) -11317086 18 n 02 Steuben 0 Baron_Friedrich_Wilhelm_Ludolf_Gerhard_Augustin_von_Steuben 0 001 @i 09740085 n 0000 | American Revolutionary leader (born in Prussia) who trained the troops under George Washington (1730-1794) -11317309 18 n 02 Stevens 0 George_Stevens 0 001 @i 10088390 n 0000 | United States filmmaker (1905-1975) -11317416 18 n 02 Stevens 1 Wallace_Stevens 0 001 @i 10444194 n 0000 | United States poet (1879-1955) -11317519 18 n 04 Stevens 2 Smitty_Stevens 0 S._Smith_Stevens 0 Stanley_Smith_Stevens 0 001 @i 10489426 n 0000 | United States psychologist and psychophysicist who proposed Stevens' power law to replace Fechner's law (1906-1973) -11317749 18 n 03 Stevenson 0 Adlai_Stevenson 0 Adlai_Ewing_Stevenson 0 001 @i 10013927 n 0000 | United States politician and diplomat (1900-1968) -11317897 18 n 03 Stevenson 1 Robert_Louis_Stevenson 0 Robert_Louis_Balfour_Stevenson 0 001 @i 10794014 n 0000 | Scottish author (1850-1894) -11318039 18 n 02 Stewart 0 Dugald_Stewart 0 001 @i 10423589 n 0000 | Scottish philosopher and follower of Thomas Reid (1753-1828) -11318171 18 n 03 Stewart 1 Jimmy_Stewart 0 James_Maitland_Stewart 0 001 @i 09765278 n 0000 | United States film actor who portrayed incorruptible but modest heros (1908-1997) -11318348 18 n 02 Stieglitz 0 Alfred_Stieglitz 0 001 @i 10426749 n 0000 | United States photographer (1864-1946) -11318462 18 n 04 Stilwell 0 Joseph_Warren_Stilwell 0 Vinegar_Joe_Stilwell 0 Uncle_Joe 0 001 @i 10123844 n 0000 | United States general who commanded the Allied forces in China and Burma and India during World War II (1883-1946) -11318692 18 n 03 Stockton 0 Frank_Stockton 0 Francis_Richard_Stockton 0 001 @i 10794014 n 0000 | United States writer (1834-1902) -11318824 18 n 03 Stoker 1 Bram_Stoker 0 Abraham_Stoker 0 001 @i 10794014 n 0000 | Irish writer of the horror novel about Dracula (1847-1912) -11318967 18 n 03 Stokowski 0 Leopold_Stokowski 0 Leopold_Antoni_Stanislaw_Stokowski 0 001 @i 09952539 n 0000 | United States conductor (born in Britain) (1882-1977) -11319134 18 n 02 Stone 0 Edward_Durell_Stone 0 001 @i 09805475 n 0000 | United States architect (1902-1978) -11319244 18 n 02 Stone 1 Harlan_Fiske_Stone 0 001 @i 10227985 n 0000 | United States jurist who served on the United States Supreme Court as chief justice (1872-1946) -11319413 18 n 03 Stone 2 I._F._Stone 0 Isidor_Feinstein_Stone 0 001 @i 10224578 n 0000 | United States journalist who advocated liberal causes (1907-1989) -11319570 18 n 02 Stone 3 Lucy_Stone 0 002 @i 10084635 n 0000 @i 10672908 n 0000 | United States feminist and suffragist (1818-1893) -11319704 18 n 02 Stone 4 Oliver_Stone 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1946) -11319810 18 n 04 Stone 5 Harlan_Stone 0 Harlan_F._Stone 0 Harlan_Fisk_Stone 0 001 @i 09916788 n 0000 | United States jurist who was named chief justice of the United States Supreme Court in 1941 by Franklin D. Roosevelt (1872-1946) -11320044 18 n 03 Stopes 0 Marie_Stopes 0 Marie_Charlotte_Carmichael_Stopes 0 001 @i 09856827 n 0000 | birth-control campaigner who in 1921 opened the first birth control clinic in London (1880-1958) -11320245 18 n 04 Stoppard 0 Tom_Stoppard 0 Sir_Tom_Stoppard 0 Thomas_Straussler 0 001 @i 10030277 n 0000 | British dramatist (born in Czechoslovakia in 1937) -11320405 18 n 03 Stowe 0 Harriet_Beecher_Stowe 0 Harriet_Elizabeth_Beecher_Stowe 0 002 @i 10794014 n 0000 @i 09756637 n 0000 | United States writer of a novel about slavery that advanced the abolitionists' cause (1811-1896) -11320631 18 n 03 Strachey 0 Lytton_Strachey 0 Giles_Lytton_Strachey 0 002 @i 09855433 n 0000 #m 08240966 n 0000 | English biographer and leading member of the Bloomsbury Group (1880-1932) -11320821 18 n 04 Stradivari 0 Antonio_Stradivari 0 Stradivarius 0 Antonius_Stradivarius 0 001 @i 10754920 n 0000 | Italian violin maker who developed the modern violin and created violins of unequaled tonal quality (1644?-1737) -11321051 18 n 03 Strasberg 0 Lee_Strasberg 0 Israel_Strassberg 0 002 @i 10088200 n 0000 @i 09765278 n 0000 | United States actor and film director (born in Austria) who was a leader in developing method acting in the United States (1901-1982) -11321296 18 n 03 Strauss 0 Johann_Strauss 0 Strauss_the_Elder 0 001 @i 09947232 n 0000 | Austrian composer of waltzes (1804-1849) -11321428 18 n 03 Strauss 1 Johann_Strauss 1 Strauss_the_Younger 0 001 @i 09947232 n 0000 | Austrian composer and son of Strauss the Elder; composed many famous waltzes and became known as the `waltz king' (1825-1899) -11321647 18 n 02 Strauss 2 Richard_Strauss 0 001 @i 09947232 n 0000 | German composer of many operas; collaborated with librettist Hugo von Hoffmannsthal to produce several operas (1864-1949) -11321841 18 n 03 Stravinsky 0 Igor_Stravinsky 0 Igor_Fyodorovich_Stravinsky 0 003 @i 09947232 n 0000 + 03038199 a 0102 + 03038199 a 0101 | composer who was born in Russia but lived in the United States after 1939 (1882-1971) -11322068 18 n 02 Streep 0 Meryl_Streep 0 001 @i 09767700 n 0000 | United States film actress (born in 1949) -11322178 18 n 03 Streisand 0 Barbra_Streisand 0 Barbra_Joan_Streisand 0 002 @i 10599806 n 0000 @i 09767700 n 0000 | United States singer and actress (born in 1942) -11322344 18 n 02 Strickland 0 William_Strickland 0 001 @i 09805475 n 0000 | United States architect and student of Latrobe (1787-1854) -11322481 18 n 03 Strindberg 0 August_Strindberg 0 Johan_August_Strindberg 0 001 @i 10030277 n 0000 | Swedish dramatist and novelist (1849-1912) -11322627 18 n 02 Stroheim 0 Erich_von_Stroheim 0 001 @i 09765278 n 0000 | United States film actor (born in Austria) (1885-1957) -11322758 18 n 03 Stuart 0 Gilbert_Stuart 0 Gilbert_Charles_Stuart 0 001 @i 10391653 n 0000 | United States painter best known for his portraits of George Washington (1755-1828) -11322937 18 n 02 Stubbs 0 William_Stubbs 0 001 @i 10177150 n 0000 | English historian noted for his constitutional history of medieval England (1825-1901) -11323094 18 n 03 Stuyvesant 0 Peter_Stuyvesant 0 Petrus_Stuyvesant 0 001 @i 09770472 n 0000 | the last Dutch colonial administrator of New Netherland; in 1664 he was forced to surrender the colony to England (1592-1672) -11323316 18 n 02 Styron 0 William_Styron 0 001 @i 10794014 n 0000 | United States writer best known for his novels (born in 1925) -11323448 18 n 02 Suckling 1 Sir_John_Suckling 0 002 @i 10444194 n 0000 @i 09971839 n 0000 | English poet and courtier (1609-1642) -11323580 18 n 02 Sue 0 Eugene_Sue 0 001 @i 10794014 n 0000 | French writer whose novels described the sordid side of city life (1804-1857) -11323721 18 n 01 Suharto 0 001 @i 10650162 n 0000 | Indonesian statesman who seized power from Sukarno in 1967 (born in 1921) -11323849 18 n 02 Sukarno 0 Achmad_Sukarno 0 001 @i 10650162 n 0000 | Indonesian statesman who obtained the independence of Indonesia from the Netherlands in 1949 and served as president until ousted by Suharto in a coup d'etat (1901-1970) -11324090 18 n 02 Sulla 0 Lucius_Cornelius_Sulla_Felix 0 001 @i 10123844 n 0000 | Roman general and dictator (138-78 BC) -11324212 18 n 04 Sullivan 0 Arthur_Sullivan 0 Arthur_Seymour_Sullivan 0 Sir_Arthur_Sullivan 0 001 @i 09947232 n 0000 | English composer of operettas who collaborated with the librettist William Gilbert (1842-1900) -11324428 18 n 03 Sullivan 1 Anne_Sullivan 0 Anne_Mansfield_Sullivan 0 001 @i 10045713 n 0000 | United States educator who was the teacher and lifelong companion of Helen Keller (1866-1936) -11324619 18 n 03 Sullivan 2 Ed_Sullivan 0 Edward_Vincent_Sullivan 0 001 @i 10299250 n 0000 | United States host on a well known television variety show (1902-1974) -11324785 18 n 02 Sullivan 3 Harry_Stack_Sullivan 0 001 @i 10488016 n 0000 | United States psychiatrist (1892-1949) -11324902 18 n 04 Sullivan 4 Louis_Sullivan 0 Louis_Henry_Sullivan 0 Louis_Henri_Sullivan 0 001 @i 09805475 n 0000 | United States architect known for his steel framed skyscrapers and for coining the phrase `form follows function' (1856-1924) -11325146 18 n 03 Sully 0 Duc_de_Sully 0 Maxmilien_de_Bethune 0 001 @i 10650162 n 0000 | French statesman (1560-1641) -11325265 18 n 02 Sully 1 Thomas_Sully 0 001 @i 10391653 n 0000 | United States painter (born in England) of portraits and historical scenes (1783-1872) -11325419 18 n 02 Sumner 0 William_Graham_Sumner 0 001 @i 10620758 n 0000 | United States sociologist (1840-1910) -11325534 18 n 03 Sunday 0 Billy_Sunday 0 William_Ashley_Sunday 0 001 @i 10067011 n 0000 | United States evangelist (1862-1935) -11325663 18 n 02 Sun_Yat-sen 0 Sun_Yixian 0 001 @i 10650162 n 0000 | Chinese statesman who organized the Kuomintang and led the revolution that overthrew the Manchu dynasty in 1911 and 1912 (1866-1925) -11325867 18 n 03 Sutherland 0 Joan_Sutherland 0 Dame_Joan_Sutherland 0 001 @i 10625546 n 0000 | Australian operatic soprano (born in 1926) -11326008 18 n 02 Sverdrup 0 Otto_Neumann_Sverdrup 0 001 @i 10072708 n 0000 | Norwegian explorer who led expeditions into the Arctic (1855-1930) -11326154 18 n 02 Swammerdam 0 Jan_Swammerdam 0 002 @i 10346514 n 0000 @i 10313872 n 0000 | Dutch naturalist and microscopist who proposed a classification of insects and who was among the first to recognize cells in animals and was the first to see red blood cells (1637-1680) -11326433 18 n 03 Swanson 0 Gloria_Swanson 0 Gloria_May_Josephine_Svensson 0 001 @i 09767700 n 0000 | United States actress in many silent films (1899-1983) -11326591 18 n 04 Swedenborg 0 Svedberg 0 Emanuel_Swedenborg 0 Emanuel_Svedberg 0 001 @i 10705615 n 0000 | Swedish theologian (1688-1772) -11326730 18 n 02 Sweet 0 Henry_Sweet 0 001 @i 10426454 n 0000 | English phonetician; one of the founders of modern phonetics (1845-1912) -11326869 18 n 03 Swift 0 Jonathan_Swift 0 Dean_Swift 0 001 @i 10552742 n 0000 | an English satirist born in Ireland (1667-1745) -11326999 18 n 02 Swift 1 Gustavus_Franklin_Swift 0 001 @i 10304505 n 0000 | United States meat-packer who began the use of refrigerated railroad cars (1839-1903) -11327163 18 n 02 Swinburne 0 Algernon_Charles_Swinburne 0 001 @i 10444194 n 0000 | English poet (1837-1909) -11327273 18 n 03 Sydenham 0 Thomas_Sydenham 0 English_Hippocrates 0 001 @i 10020890 n 0000 | English physician (1624-1689) -11327398 18 n 02 Sylvester_II 0 Gerbert 0 001 @i 10453533 n 0000 | French pope from 999 to 1003 who was noted for his great learning (945-1003) -11327544 18 n 02 Symonds 0 John_Addington_Symonds 0 001 @i 10794014 n 0000 | English writer (1840-1893) -11327650 18 n 02 Symons 0 Arthur_Symons 0 001 @i 10444194 n 0000 | English poet (1865-1945) -11327744 18 n 04 Synge 0 J._M._Synge 0 John_Millington_Synge 0 Edmund_John_Millington_Synge 0 002 @i 10030277 n 0000 @i 10444194 n 0000 | Irish poet and playwright whose plays are based on rural Irish life (1871-1909) -11327964 18 n 02 Szell 0 George_Szell 0 001 @i 09952539 n 0000 | United States conductor (born in Hungary) (1897-1970) -11328085 18 n 03 Szent-Gyorgyi 0 Albert_Szent-Gyorgyi 0 Albert_von_Szent-Gyorgyi 0 001 @i 09854915 n 0000 | United States biochemist (born in Hungary) who was the first to isolate vitamin C (1893-1986) -11328289 18 n 02 Szilard 0 Leo_Szilard 0 002 @i 10364643 n 0000 @i 10327143 n 0000 | United States physicist and molecular biologist who helped develop the first atom bomb and later opposed the use of all nuclear weapons (1898-1964) -11328524 18 n 03 Tacitus 0 Publius_Cornelius_Tacitus 0 Gaius_Cornelius_Tacitus 0 001 @i 10177150 n 0000 | Roman historian who wrote major works on the history of the Roman Empire (56-120) -11328714 18 n 03 Taft 0 William_Howard_Taft 0 President_Taft 0 002 @i 10467395 n 0000 @i 09916788 n 0000 | 27th President of the United States and later chief justice of the United States Supreme Court (1857-1930) -11328930 18 n 02 Taft 1 Lorado_Taft 0 001 @i 10566072 n 0000 | United States sculptor (1860-1936) -11329030 18 n 03 Tagore 0 Rabindranath_Tagore 0 Sir_Rabindranath_Tagore 0 002 @i 10794014 n 0000 @i 10423589 n 0000 | Indian writer and philosopher whose poetry (based on traditional Hindu themes) pioneered the use of colloquial Bengali (1861-1941) -11329281 18 n 03 Talbot 0 Fox_Talbot 0 William_Henry_Fox_Talbot 0 002 @i 10214637 n 0000 @i 10426749 n 0000 | English inventor and pioneer in photography who published the first book illustrated with photographs (1800-1877) -11329507 18 n 02 Tallchief 0 Maria_Tallchief 0 001 @i 09989502 n 0000 | United States ballerina who promoted American ballet through tours and television appearances (born in 1925) -11329690 18 n 02 Talleyrand 0 Charles_Maurice_de_Talleyrand 0 001 @i 10650162 n 0000 | French statesman (1754-1838) -11329808 18 n 02 Tallis 0 Thomas_Tallis 0 002 @i 10382825 n 0000 @i 09947232 n 0000 | English organist and composer of church and secular music; was granted a monopoly in music printing with William Byrd (1505-1585) -11330026 18 n 04 Tamerlane 0 Tamburlaine 0 Timur 0 Timur_Lenk 0 001 @i 10541229 n 0000 | Mongolian ruler of Samarkand who led his nomadic hordes to conquer an area from Turkey to Mongolia (1336-1405) -11330228 18 n 03 Tamm 0 Igor_Tamm 0 Igor_Yevgeneevich_Tamm 0 001 @i 10364643 n 0000 | Russian physicist (1895-1971) -11330346 18 n 01 Tancred 0 001 @i 10622053 n 0000 | Norman leader in the First Crusade who played an important role in the capture of Jerusalem (1078-1112) -11330504 18 n 02 Tandy 0 Jessica_Tandy 0 001 @i 09767700 n 0000 | United States actress (born in England) who made many stage appearances, often with her husband Hume Cronyn (1909-1994) -11330692 18 n 03 Taney 0 Roger_Taney 0 Roger_Brooke_Taney 0 001 @i 09916788 n 0000 | United States jurist who served as chief justice of the United States Supreme Court; remembered for his ruling that slaves and their descendants have no rights as citizens (1777-1864) -11330963 18 n 02 Tange 0 Kenzo_Tange 0 001 @i 09805475 n 0000 | Japanese architect (born in 1913) -11331063 18 n 02 Tanguy 0 Yves_Tanguy 0 001 @i 10391653 n 0000 | United States surrealist painter (born in France) (1900-1955) -11331192 18 n 02 Tappan 0 Arthur_Tappan 0 001 @i 09756637 n 0000 | United States abolitionist (1786-1865) -11331300 18 n 03 Tarantino 0 Quentin_Tarantino 0 Quentin_Jerome_Tarantino 0 001 @i 10088390 n 0000 | United States filmmaker (born in 1963) -11331442 18 n 04 Tarbell 0 Ida_Tarbell 0 Ida_M._Tarbell 0 Ida_Minerva_Tarbell 0 001 @i 10794014 n 0000 | United States writer remembered for her muckraking investigations into industries in the early 20th century (1857-1944) -11331669 18 n 03 Tarkovsky 0 Andrei_Tarkovsky 0 Andrei_Arsenevich_Tarkovsky 0 001 @i 10088390 n 0000 | Russian filmmaker (1932-1986) -11331804 18 n 05 Tarquin 0 Tarquin_the_Proud 0 Tarquinius 0 Tarquinius_Superbus 0 Lucius_Tarquinius_Superbus 0 001 @i 10231515 n 0000 | according to legend, the seventh and last Etruscan king of Rome who was expelled for his cruelty (reigned from 534 to 510 BC) -11332068 18 n 03 Tasman 0 Abel_Tasman 0 Abel_Janszoon_Tasman 0 001 @i 10347883 n 0000 | Dutch navigator who was the first European to discover Tasmania and New Zealand (1603-1659) -11332250 18 n 02 Tasso 0 Torquato_Tasso 0 001 @i 10444194 n 0000 | Italian poet who wrote an epic poem about the capture of Jerusalem during the First Crusade (1544-1595) -11332423 18 n 03 Tate 0 Allen_Tate 0 John_Orley_Allen_Tate 0 002 @i 09979589 n 0000 @i 10444194 n 0000 | United States poet and critic (1899-1979) -11332572 18 n 03 Tati 0 Jacques_Tati 0 Jacques_Tatischeff 0 001 @i 10088390 n 0000 | French filmmaker (1908-1982) -11332688 18 n 03 Tatum 0 Art_Tatum 0 Arthur_Tatum 0 001 @i 10220486 n 0000 | United States jazz pianist who was almost completely blind; his innovations influenced many other jazz musicians (1910-1956) -11332892 18 n 02 Tatum 1 Edward_Lawrie_Tatum 0 001 @i 09854915 n 0000 | United States biochemist who discovered how genes act by regulating definite chemical events (1909-1975) -11333071 18 n 02 Tawney 0 Richard_Henry_Tawney 0 001 @i 10043643 n 0000 | English economist remembered for his studies of the development of capitalism (1880-1962) -11333237 18 n 03 Taylor 0 Zachary_Taylor 0 President_Taylor 0 001 @i 10467395 n 0000 | 12th President of the United States; died in office (1784-1850) -11333390 18 n 02 Taylor 1 Elizabeth_Taylor 0 001 @i 09767700 n 0000 | United States film actress (born in England) who was a childhood star; as an adult she often co-starred with Richard Burton (born in 1932) -11333601 18 n 03 Taylor 2 Deems_Taylor 0 Joseph_Deems_Taylor 0 002 @i 09947232 n 0000 @i 10339856 n 0000 | United States composer and music critic (1885-1966) -11333762 18 n 05 Tchaikovsky 0 Peter_Tchaikovsky 0 Peter_Ilich_Tchaikovsky 0 Pyotr_Tchaikovsky 0 Pyotr_Ilych_Tchaikovsky 0 001 @i 09947232 n 0000 | important Russian composer whose works are noted for their expressive melodies (1840-1893) -11334003 18 n 05 Teach 0 Edward_Teach 0 Thatch 0 Edward_Thatch 0 Blackbeard 0 001 @i 10435367 n 0000 | an English pirate who operated in the Caribbean and off the Atlantic coast of North America (died in 1718) -11334215 18 n 02 Teasdale 0 Sara_Teasdale 0 001 @i 10444194 n 0000 | United States poet (1884-1933) -11334317 18 n 02 Tebaldi 0 Renata_Tebaldi 0 001 @i 10625546 n 0000 | Italian operatic soprano (born in 1922) -11334428 18 n 02 Tecumseh 0 Tecumtha 0 001 @i 09668562 n 0000 | a famous chief of the Shawnee who tried to unite Indian tribes against the increasing white settlement (1768-1813) -11334609 18 n 02 Teilhard_de_Chardin 0 Pierre_Teilhard_de_Chardin 0 002 @i 10394786 n 0000 @i 10423589 n 0000 | French paleontologist and philosopher (1881-1955) -11334773 18 n 03 Te_Kanawa 0 Dame_Kiri_Te_Kanawa 0 Dame_Kiri_Janette_Te_Kanawa 0 001 @i 10625546 n 0000 | New Zealand operatic soprano (born in 1944) -11334925 18 n 02 Telemann 0 Georg_Philipp_Telemann 0 001 @i 09947232 n 0000 | German baroque composer (1681-1767) -11335041 18 n 02 Teller 2 Edward_Teller 0 001 @i 10364643 n 0000 | United States physicist (born in Hungary) who worked on the first atom bomb and the first hydrogen bomb (1908-2003) -11335226 18 n 02 Tenniel 0 Sir_John_Tenniel 0 001 @i 09898346 n 0000 | English cartoonist (1820-1914) -11335330 18 n 04 Tennyson 0 Alfred_Tennyson 0 First_Baron_Tennyson 0 Alfred_Lord_Tennyson 0 001 @i 10444194 n 0000 | Englishman and Victorian poet (1809-1892) -11335491 18 n 01 Tenzing_Norgay 0 002 @i 09733028 n 0000 @i 10334567 n 0000 | Sherpa mountaineer guide who with Sir Edmund Hillary was one of the first to attain the summit of Mount Everest (1914-1986) -11335695 18 n 02 Terence 0 Publius_Terentius_Afer 0 001 @i 10030277 n 0000 | dramatist of ancient Rome (born in Greece) whose comedies were based on works by Menander (190?-159 BC) -11335878 18 n 05 Teresa 0 Mother_Teresa 0 Theresa 0 Mother_Theresa 0 Agnes_Gonxha_Bojaxhiu 0 002 @i 10368009 n 0000 @i 10323182 n 0000 | Indian nun and missionary in the Roman Catholic Church (born of Albanian parents in what is now Macedonia); dedicated to helping the poor in India (1910-1997) -11336176 18 n 02 Teresa_of_Avila 0 Saint_Teresa_of_Avila 0 001 @i 10547145 n 0000 | Spanish mystic and religious reformer; author of religious classics and a Christian saint (1515-1582) -11336364 18 n 03 Tereshkova 0 Valentina_Tereshkova 0 Valentina_Vladmirovna_Tereshkova 0 001 @i 09818022 n 0000 | Soviet cosmonaut who was the first woman in space (born in 1937) -11336544 18 n 03 Terry 0 Dame_Ellen_Terry 0 Dame_Alice_Ellen_Terry 0 001 @i 09767700 n 0000 | English actress (1847-1928) -11336668 18 n 02 Tertullian 0 Quintus_Septimius_Florens_Tertullianus 0 001 @i 10705615 n 0000 | Carthaginian theologian whose writing influenced early Christian theology (160-230) -11336850 18 n 02 Tesla 0 Nikola_Tesla 0 002 @i 10049017 n 0000 @i 10214637 n 0000 | United States electrical engineer and inventor (born in Croatia but of Serbian descent) who discovered the principles of alternating currents and developed the first alternating-current induction motor and the Tesla coil and several forms of oscillators (1856-1943) -11337202 18 n 02 Thackeray 0 William_Makepeace_Thackeray 0 001 @i 10794014 n 0000 | English writer (born in India) (1811-1863) -11337331 18 n 02 Thales 0 Thales_of_Miletus 0 002 @i 10423589 n 0000 @i 09818343 n 0000 | a presocratic Greek philosopher and astronomer (who predicted an eclipse in 585 BC) who was said by Aristotle to be the founder of physical science; he held that all things originated in water (624-546 BC) -11337629 18 n 02 Tharp 0 Twyla_Tharp 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | innovative United States dancer and choreographer (born in 1941) -11337779 18 n 05 Thatcher 1 Margaret_Thatcher 0 Margaret_Hilda_Thatcher 0 Baroness_Thatcher_of_Kesteven 0 Iron_Lady 0 001 @i 10652511 n 0000 | British stateswoman; first woman to serve as Prime Minister (born in 1925) -11337999 18 n 01 Themistocles 0 001 @i 10650162 n 0000 | Athenian statesman who persuaded Athens to build a navy and then led it to victory over the Persians (527-460 BC) -11338172 18 n 04 Theodosius 0 Theodosius_I 0 Theodosius_the_Great 0 Flavius_Theodosius 0 001 @i 10537240 n 0000 | the last emperor of a united Roman Empire, he took control of the eastern empire and ended the war with the Visigoths; he became a Christian and in 391 banned all forms of pagan worship (346-395) -11338484 18 n 01 Theophrastus 0 001 @i 10423589 n 0000 | Greek philosopher who was a student of Aristotle and who succeeded Aristotle as the leader of the Peripatetics (371-287 BC) -11338667 18 n 01 Thespis 0 001 @i 10444194 n 0000 | Greek poet who is said to have originated Greek tragedy (sixth century BC) -11338796 18 n 05 Thomas 0 Saint_Thomas 1 St._Thomas 1 doubting_Thomas 0 Thomas_the_doubting_Apostle 0 002 @i 09798811 n 0000 @i 10547145 n 0000 | the Apostle who would not believe the resurrection of Jesus until he saw Jesus with his own eyes -11339041 18 n 03 Thomas 1 Dylan_Thomas 0 Dylan_Marlais_Thomas 0 001 @i 10444194 n 0000 | Welsh poet (1914-1953) -11339155 18 n 03 Thomas 2 Lowell_Thomas 0 Lowell_Jackson_Thomas 0 001 @i 09875979 n 0000 | a radio broadcast journalist during World War I and World War II noted for his nightly new broadcast (1892-1981) -11339361 18 n 03 Thomas 3 Norman_Thomas 0 Norman_Mattoon_Thomas 0 001 @i 10618848 n 0000 | United States socialist who was a candidate for president six times (1884-1968) -11339534 18 n 02 Thomas 4 Seth_Thomas 0 001 @i 09930102 n 0000 | United States clockmaker who introduced mass production (1785-1859) -11339669 18 n 03 Thompson 0 Benjamin_Thompson 0 Count_Rumford 0 001 @i 10428004 n 0000 | English physicist (born in America) who studied heat and friction; experiments convinced him that heat is caused by moving particles (1753-1814) -11339905 18 n 04 Thompson 1 Homer_Thompson 0 Homer_A._Thompson 0 Homer_Armstrong_Thompson 0 001 @i 09804806 n 0000 | United States classical archaeologist (born in Canada) noted for leading the excavation of the Athenian agora (1906-2000) -11340146 18 n 03 Thomson 0 Joseph_John_Thomson 0 Sir_Joseph_John_Thomson 0 001 @i 10428004 n 0000 | English physicist who experimented with the conduction of electricity through gases and who discovered the electron and determined its charge and mass (1856-1940) -11340411 18 n 03 Thomson 1 George_Paget_Thomson 0 Sir_George_Paget_Thomson 0 001 @i 10428004 n 0000 | English physicist (son of Joseph John Thomson) who was a co-discoverer of the diffraction of electrons by crystals (1892-1975) -11340642 18 n 02 Thomson 2 Elihu_Thomson 0 001 @i 10049017 n 0000 | United States electrical engineer (born in England) who in 1892 formed a company with Thomas Edison (1853-1937) -11340824 18 n 03 Thomson 3 Virgil_Thomson 0 Virgil_Garnett_Thomson 0 001 @i 09947232 n 0000 | United States composer who collaborated with Gertrude Stein (1896-1989) -11340992 18 n 02 Thoreau 0 Henry_David_Thoreau 0 002 @i 10794014 n 0000 + 03038401 a 0101 | United States writer and social critic (1817-1862) -11341137 18 n 02 Thorndike 0 Edward_Lee_Thorndike 0 001 @i 10488865 n 0000 | United States educational psychologist (1874-1949) -11341267 18 n 02 Thorndike 1 Dame_Sybil_Thorndike 0 001 @i 09767700 n 0000 | English actress (1882-1976) -11341374 18 n 02 Thornton 0 William_Thornton 0 001 @i 09805475 n 0000 | American architect (1759-1828) -11341479 18 n 03 Thorpe 0 Jim_Thorpe 0 James_Francis_Thorpe 0 001 @i 09820263 n 0000 | outstanding United States athlete (1888-1953) -11341614 18 n 01 Thucydides 0 001 @i 10177150 n 0000 | ancient Greek historian remembered for his history of the Peloponnesian War (460-395 BC) -11341760 18 n 03 Thurber 0 James_Thurber 0 James_Grover_Thurber 0 002 @i 10191943 n 0000 @i 09898346 n 0000 | United States humorist and cartoonist who published collections of essays and stories (1894-1961) -11341970 18 n 02 Tiberius 0 Tiberius_Claudius_Nero_Caesar_Augustus 0 001 @i 10537240 n 0000 | son-in-law of Augustus who became a suspicious tyrannical Emperor of Rome after a brilliant military career (42 BC to AD 37) -11342191 18 n 02 Tiepolo 0 Giovanni_Battista_Tiepolo 0 001 @i 10391653 n 0000 | Italian painter (1696-1770) -11342301 18 n 02 Tiffany 0 Louis_Comfort_Tiffany 0 001 @i 09812338 n 0000 | United States artist who developed Tiffany glass (1848-1933) -11342440 18 n 03 Tilden 0 Big_Bill_Tilden 0 William_Tatem_Tilden_Jr. 0 001 @i 10701180 n 0000 | United States tennis player who dominated men's tennis in the 1920s (1893-1953) -11342618 18 n 03 Tillich 0 Paul_Tillich 0 Paul_Johannes_Tillich 0 001 @i 10705615 n 0000 | United States theologian (born in Germany) (1886-1965) -11342766 18 n 01 Timothy 0 001 @i 09678009 n 0000 | a disciple of Saint Paul who became the leader of the Christian community at Ephesus -11342905 18 n 02 Tinbergen 0 Jan_Tinbergen 0 001 @i 10043643 n 0000 | Dutch economist noted for his work in econometrics (1903-1994) -11343040 18 n 02 Tinbergen 1 Nikolaas_Tinbergen 0 001 @i 10806222 n 0000 | Dutch zoologist who showed that much animal behavior is innate and stereotyped (1907-1988) -11343208 18 n 02 Tintoretto 0 Jacopo_Robusti 0 001 @i 10375794 n 0000 | Italian painter of the Venetian school (1518-1594) -11343333 18 n 02 Tirso_de_Molina 0 Gabriel_Tellez 0 001 @i 10030277 n 0000 | Spanish dramatist who wrote the first dramatic treatment of the legend of Don Juan (1571-1648) -11343507 18 n 02 Titian 0 Tiziano_Vecellio 0 001 @i 10375794 n 0000 | old master of the Venetian school (1490-1576) -11343625 18 n 03 Tito 0 Marshal_Tito 0 Josip_Broz 0 001 @i 10650162 n 0000 | Yugoslav statesman who led the resistance to German occupation during World War II and established a communist state after the war (1892-1980) -11343847 18 n 03 Titus 0 Titus_Vespasianus_Augustus 0 Titus_Flavius_Vespasianus 0 001 @i 10537240 n 0000 | Emperor of Rome; son of Vespasian (39-81) -11343998 18 n 01 Titus 1 001 @i 09678009 n 0000 | a Greek disciple and helper of Saint Paul -11344092 18 n 02 Tobey 0 Mark_Tobey 0 001 @i 10391653 n 0000 | United States abstract painter influenced by oriental calligraphy (1890-1976) -11344235 18 n 02 Tobin 0 James_Tobin 0 001 @i 10043643 n 0000 | United States economist (1918-2002) -11344337 18 n 03 Tocqueville 0 Alexis_de_Tocqueville 0 Alexis_Charles_Henri_Maurice_de_Tocqueville 0 001 @i 10794014 n 0000 | French political writer noted for his analysis of American institutions (1805-1859) -11344549 18 n 03 Todd 0 Sir_Alexander_Robertus_Todd 0 Lord_Todd 0 001 @i 09913824 n 0000 | Scottish chemist noted for his research into the structure of nucleic acids (born in 1907) -11344733 18 n 03 Tojo 0 Tojo_Hideki 0 Tojo_Eiki 0 001 @i 10011902 n 0000 | Japanese army officer who initiated the Japanese attack on Pearl Harbor and who assumed dictatorial control of Japan during World War II; he was subsequently tried and executed as a war criminal (1884-1948) -11345017 18 n 02 Toklas 0 Alice_B._Toklas 0 001 @i 10794014 n 0000 | United States writer remembered as the secretary and companion of Gertrude Stein (1877-1967) -11345181 18 n 03 Tolkien 0 J.R.R._Tolkien 0 John_Ronald_Reuel_Tolkien 0 002 @i 10423225 n 0000 @i 10794014 n 0000 | British philologist and writer of fantasies (born in South Africa) (1892-1973) -11345378 18 n 03 Tolstoy 0 Leo_Tolstoy 0 Count_Lev_Nikolayevitch_Tolstoy 0 001 @i 10794014 n 0000 | Russian author remembered for two great novels (1828-1910) -11345539 18 n 03 Tombaugh 0 Clyde_Tombaugh 0 Clyde_William_Tombaugh 0 001 @i 09818343 n 0000 | United States astronomer who discovered the planet Pluto (1906-1997) -11345705 18 n 01 Tonegawa_Susumu 0 001 @i 10327143 n 0000 | Japanese molecular biologist noted for his studies of how the immune system produces antibodies (born in 1939) -11345878 18 n 02 Torquemada 0 Tomas_de_Torquemada 0 001 @i 10142537 n 0000 | the Spaniard who as Grand Inquisitor was responsible for the death of thousands of Jews and suspected witches during the Spanish Inquisition (1420-1498) -11346110 18 n 02 Torricelli 0 Evangelista_Torricelli 0 001 @i 10428004 n 0000 | Italian physicist who invented the mercury barometer (1608-1647) -11346257 18 n 02 Toscanini 0 Arturo_Toscanini 0 001 @i 09952539 n 0000 | Italian conductor of many orchestras worldwide (1867-1957) -11346391 18 n 02 Toulouse-Lautrec 0 Henri_Toulouse-Lautrec 0 001 @i 10391653 n 0000 | French painter who portrayed life in the cafes and music halls of Montmartre (1864-1901) -11346568 18 n 03 Tourette 0 Gilles_de_la_Tourette 0 Georges_Gilles_de_la_Tourette 0 001 @i 10354265 n 0000 | French neurologist (1857-1904) -11346710 18 n 02 Town 0 Ithiel_Town 0 001 @ 09805475 n 0000 | United States architect who was noted for his design and construction of truss bridges (1784-1844) -11346873 18 n 03 Townes 0 Charles_Townes 0 Charles_Hard_Townes 0 001 @ 10428004 n 0000 | United States physicist who developed the laser and maser principles for producing high-intensity radiation (1915-) -11347080 18 n 02 Townsend 0 Francis_Everett_Townsend 0 001 @i 10515194 n 0000 | United States social reformer who proposed an old-age pension sponsored by the federal government; his plan was a precursor to Social Security (1867-1960) -11347317 18 n 03 Toynbee 0 Arnold_Toynbee 0 Arnold_Joseph_Toynbee 0 001 @i 10177150 n 0000 | English historian who studied the rise and fall of civilizations looking for cyclical patterns (1889-1975) -11347519 18 n 02 Tracy 0 Spencer_Tracy 0 001 @i 09765278 n 0000 | United States film actor who appeared in many films with Katharine Hepburn (1900-1967) -11347674 18 n 02 Tradescant 0 John_Tradescant 0 001 @i 09868270 n 0000 | English botanist who was one of the first to collect specimens of plants (1570-1638) -11347834 18 n 02 Trajan 0 Marcus_Ulpius_Traianus 0 001 @i 10537240 n 0000 | Roman Emperor and adoptive son of Nerva; extended the Roman Empire to the east and conducted an extensive program of building (53-117) -11348047 18 n 02 Traubel 0 Helen_Traubel 0 001 @i 10625546 n 0000 | United States operatic soprano (1903-1972) -11348160 18 n 02 Tree 0 Sir_Herbert_Beerbohm_Tree 0 002 @i 09765278 n 0000 @i 10705448 n 0000 | English actor and theatrical producer noted for his lavish productions of Shakespeare (1853-1917) -11348356 18 n 03 Trevelyan 0 George_Otto_Trevelyan 0 Sir_George_Otto_Trevelyan 0 001 @i 10177150 n 0000 | English historian who wrote a history of the American revolution and a biography of his uncle Lord Macaulay (1838-1928) -11348584 18 n 02 Trevelyan 1 George_Macaulay_Trevelyan 0 001 @i 10177150 n 0000 | English historian and son of Sir George Otto Trevelyan whose works include a social history of England and a biography of Garibaldi (1876-1962) -11348812 18 n 04 Trevino 0 Lee_Trevino 0 Lee_Buck_Trevino 0 Supermex 0 001 @i 10136959 n 0000 | United States golfer (born in 1939) -11348946 18 n 02 Trevithick 0 Richard_Trevithick 0 001 @i 09615807 n 0000 | English engineer who built the first railway locomotive (1771-1833) -11349092 18 n 02 Trilling 0 Lionel_Trilling 0 001 @i 10266016 n 0000 | United States literary critic (1905-1975) -11349207 18 n 02 Trollope 0 Anthony_Trollope 0 001 @i 10794014 n 0000 | English writer of novels (1815-1882) -11349318 18 n 03 Trotsky 0 Leon_Trotsky 0 Lev_Davidovich_Bronstein 0 003 @i 09863936 n 0000 @i 10527334 n 0000 + 10731013 n 0102 | Russian revolutionary and Communist theorist who helped Lenin and built up the army; he was ousted from the Communist Party by Stalin and eventually assassinated in Mexico (1879-1940) -11349635 18 n 02 Truffaut 0 Francois_Truffaut 0 001 @i 10088390 n 0000 | French filmmaker (1932-1984) -11349739 18 n 04 Truman 0 Harry_Truman 0 Harry_S_Truman 0 President_Truman 0 001 @i 10467395 n 0000 | elected vice president in Roosevelt's 4th term; became 33rd President of the United States on Roosevelt's death in 1945 and was elected President in 1948; authorized the use of atomic bombs against Japan (1884-1972) -11350059 18 n 02 Trumbo 0 Dalton_Trumbo 0 001 @i 10564400 n 0000 | United States screenwriter who was blacklisted and imprisoned for refusing to cooperate with congressional investigations of communism in America (1905-1976) -11350286 18 n 02 Trumbull 0 John_Trumbull 0 001 @i 10444194 n 0000 | American satirical poet (1750-1831) -11350393 18 n 02 Trumbull 1 John_Trumbull 1 001 @i 10391653 n 0000 | American painter of historical scenes (1756-1843) -11350514 18 n 02 Trumbull 2 Jonathan_Trumbull 0 001 @i 09740085 n 0000 | American Revolutionary leader who as governor of Connecticut provided supplies for the Continental Army (1710-1785) -11350705 18 n 02 Truth 0 Sojourner_Truth 0 002 @i 09756637 n 0000 @i 10084635 n 0000 | United States abolitionist and feminist who was freed from slavery and became a leading advocate of the abolition of slavery and for the rights of women (1797-1883) -11350959 18 n 02 Tubman 0 Harriet_Tubman 0 001 @i 09756637 n 0000 | United States abolitionist born a slave on a plantation in Maryland and became a famous conductor on the Underground Railroad leading other slaves to freedom in the North (1820-1913) -11351212 18 n 03 Tuchman 0 Barbara_Tuchman 0 Barbara_Wertheim_Tuchman 0 001 @i 10177150 n 0000 | United States historian (1912-1989) -11351347 18 n 02 Tucker 1 Sophie_Tucker 0 002 @i 10746799 n 0000 @i 09940818 n 0000 | United States vaudevillian (born in Russia) noted for her flamboyant performances (1884-1966) -11351529 18 n 02 Tucker 2 Benjamin_Ricketson_Tucker 0 001 @i 09791816 n 0000 | United States anarchist influential before World War I (1854-1939) -11351677 18 n 02 Tudor 0 Antony_Tudor 0 002 @i 09989502 n 0000 @i 09920283 n 0000 | United States dancer and choreographer (born in England) (1909-1987) -11351832 18 n 03 Tunney 0 Gene_Tunney 0 James_Joseph_Tunney 0 001 @i 10477077 n 0000 | United States prizefighter who won the world heavyweight championship by defeating Jack Dempsey twice (1898-1978) -11352035 18 n 03 Turgenev 0 Ivan_Turgenev 0 Ivan_Sergeevich_Turgenev 0 001 @i 10794014 n 0000 | Russian writer of stories and novels and plays (1818-1883) -11352192 18 n 02 Turgot 0 Anne_Robert_Jacques_Turgot 0 001 @i 10043643 n 0000 | French economist who in 1774 was put in control of finances by Louis XVI; his proposals for reforms that involved abolishing feudal privileges made him unpopular with the aristocracy and in 1776 he was dismissed (1727-1781) -11352498 18 n 03 Turing 0 Alan_Turing 0 Alan_Mathison_Turing 0 001 @i 10301261 n 0000 | English mathematician who conceived of the Turing machine and broke German codes during World War II (1912-1954) -11352701 18 n 02 Turner 3 Frederick_Jackson_Turner 0 001 @i 10177150 n 0000 | United States historian who stressed the role of the western frontier in American history (1861-1951) -11352883 18 n 02 Turner 4 Joseph_Mallord_William_Turner 0 001 @i 10391653 n 0000 | English landscape painter whose treatment of light and color influenced the French impressionists (1775-1851) -11353078 18 n 02 Turner 5 Henry_Hubert_Turner 0 001 @i 10056914 n 0000 | United States endocrinologist (1892-1970) -11353195 18 n 02 Turner 6 Nat_Turner 0 002 @i 10609325 n 0000 @i 10210137 n 0000 | United States slave and insurrectionist who in 1831 led a rebellion of slaves in Virginia; he was captured and executed (1800-1831) -11353412 18 n 02 Turpin 0 Dick_Turpin 0 001 @i 10175507 n 0000 | English highwayman (1706-1739) -11353510 18 n 04 Tussaud 0 Marie_Tussaud 0 Madame_Tussaud 0 Marie_Grosholtz 0 001 @i 10325774 n 0000 | French modeler (resident in England after 1802) who made wax death masks of prominent victims of the French Revolution and toured Britain with her wax models; in 1835 she opened a permanent waxworks exhibition in London (1761-1850) -11353847 18 n 01 Tutankhamen 0 001 @i 10421016 n 0000 | Pharaoh of Egypt around 1358 BC; his tomb was discovered almost intact by Howard Carter in 1922 -11354001 18 n 02 Tutu 0 Desmond_Tutu 0 001 @i 09807075 n 0000 | South African prelate and leader of the antiapartheid struggle (born in 1931) -11354145 18 n 03 Tyler 0 John_Tyler 0 President_Tyler 0 001 @i 10467395 n 0000 | elected vice president and became the 10th President of the United States when Harrison died (1790-1862) -11354333 18 n 06 Tyndale 0 William_Tyndale 0 Tindale 0 William_Tindale 0 Tindal 0 William_Tindal 0 002 @i 10212501 n 0000 @i 10296618 n 0000 | English translator and Protestant martyr; his translation of the Bible into English (which later formed the basis for the King James Version) aroused ecclesiastical opposition; he left England in 1524 and was burned at the stake in Antwerp as a heretic (1494-1536) -11354743 18 n 02 Tyndall 0 John_Tyndall 0 001 @i 10428004 n 0000 | British physicist (born in Ireland) remembered for his experiments on the transparency of gases and the absorption of radiant heat by gases and the transmission of sound through the atmosphere; he was the first person to explain why the daylight sky is blue (1820-1893) -11355082 18 n 03 Tyson 0 Mike_Tyson 0 Michael_Gerald_Tyson 0 001 @i 10477077 n 0000 | United States prizefighter who was world heavyweight champion (born in 1966) -11355247 18 n 03 Tzara 0 Tristan_Tzara 0 Samuel_Rosenstock 0 001 @i 10444194 n 0000 | French poet (born in Romania) who was one of the cofounders of the dada movement (1896-1963) -11355428 18 n 02 Uhland 0 Johann_Ludwig_Uhland 0 001 @i 10444194 n 0000 | German romantic poet (1787-1862) -11355537 18 n 03 Ulanova 0 Galina_Ulanova 0 Galina_Sergeevna_Ulanova 0 001 @i 09989502 n 0000 | Russian ballet dancer (1910-1998) -11355669 18 n 06 Ulfilas 0 Bishop_Ulfilas 0 Ulfila 0 Bishop_Ulfila 0 Wulfila 0 Bishop_Wulfila 0 002 @i 09857200 n 0000 @i 10212501 n 0000 | a Christian believed to be of Cappadocian descent who became bishop of the Visigoths in 341 and translated the Bible from Greek into Gothic; traditionally held to have invented the Gothic alphabet (311-382) -11356018 18 n 01 ultramontane 0 001 @ 09680504 n 0000 | a Roman Catholic who advocates ultramontanism (supreme papal authority in matters of faith and discipline) -11356183 18 n 02 Undset 0 Sigrid_Undset 0 001 @i 10794014 n 0000 | Norwegian novelist (1882-1949) -11356283 18 n 02 Untermeyer 0 Louis_Untermeyer 0 001 @i 10794014 n 0000 | United States writer (1885-1977) -11356392 18 n 03 Updike 0 John_Updike 0 John_Hoyer_Updike 0 001 @i 10794014 n 0000 | United States author (born 1932) -11356512 18 n 02 Upjohn 0 Richard_Upjohn 0 001 @i 09805475 n 0000 | United States architect (born in England) (1802-1878) -11356636 18 n 05 Urban_II 0 Odo 0 Odo_of_Lagery 0 Otho 0 Otho_of_Lagery 0 001 @i 10453533 n 0000 | French pope from 1088 to 1099 whose sermons called for the First Crusade (1042-1099) -11356822 18 n 02 Urban_V 0 Guillaume_de_Grimoard 0 001 @i 10453533 n 0000 | French pope from 1362 to 1370 who tried to reestablish the papacy in Rome but in 1367 returned to Avignon hoping to end the war between France and England; canonized in 1870 (1310-1370) -11357086 18 n 02 Urban_VI 0 Bartolomeo_Prignano 0 001 @i 10453533 n 0000 | Italian pope from 1378 to 1389 whose contested election began the Great Schism; he alienated his political allies by his ruthless treatment of his opponents (1318-1389) -11357332 18 n 02 Urban_VIII 0 Maffeo_Barberini 0 001 @i 10453533 n 0000 | Italian pope from 1623 to 1644 who sanctioned the condemnation of Galileo but later freed him (1568-1644) -11357514 18 n 03 Urey 0 Harold_Urey 0 Harold_Clayton_Urey 0 001 @i 09913824 n 0000 | United States chemist who discovered deuterium (1893-1981) -11357660 18 n 01 Uriah 0 002 @ 10622053 n 0000 ;c 06449735 n 0000 | (Old Testament) the husband of Bathsheba and a soldier who was sent to die in battle so that king David could marry his wife (circa 10th century BC) -11357879 18 n 04 Ussher 0 James_Ussher 0 Usher 1 James_Usher 0 001 @i 09807075 n 0000 | Irish prelate who deduced from the Bible that Creation occurred in the year 4004 BC (1581-1656) -11358065 18 n 03 Ustinov 0 Sir_Peter_Ustinov 0 Peter_Alexander_Ustinov 0 002 @i 09765278 n 0000 @i 10030277 n 0000 | British actor and playwright (1921-2004) -11358225 18 n 02 Utrillo 0 Maurice_Utrillo 0 001 @i 10391653 n 0000 | French painter noted for his paintings of Parisian street scenes (1883-1955) -11358374 18 n 02 Van_Allen 0 James_Alfred_Van_Allen 0 001 @i 10428004 n 0000 | United States physicist who discovered two belts of charged particles from the solar wind trapped by the Earth's magnetic field (born in 1914) -11358598 18 n 03 Vanbrugh 0 John_Vanbrugh 0 Sir_John_Vanbrigh 0 001 @i 09805475 n 0000 | English architect (1664-1726) -11358719 18 n 03 Van_Buren 0 Martin_Van_Buren 0 President_Van_Buren 0 001 @i 10467395 n 0000 | 8th President of the United States (1782-1862) -11358863 18 n 02 Vancouver 0 George_Vancouver 0 001 @i 10347883 n 0000 | English navigator remembered for his exploration of the Pacific coast of North America (1757-1798) -11359037 18 n 03 Van_de_Graaff 0 Robert_Van_de_Graaff 0 Robert_Jemison_Van_de_Graaff 0 001 @i 10428004 n 0000 | United States physicist (1901-1967) -11359187 18 n 03 Vanderbilt 0 Cornelius_Vanderbilt 0 Commodore_Vanderbilt 0 002 @i 10090020 n 0000 @i 10421956 n 0000 | United States financier who accumulated great wealth from railroad and shipping businesses (1794-1877) -11359412 18 n 03 van_der_Waals 0 Johannes_van_der_Waals 0 Johannes_Diderik_van_der_Waals 0 001 @i 10428004 n 0000 | Dutch physicist (1837-1923) -11359558 18 n 03 van_de_Velde 0 Henri_van_de_Velde 0 Henri_Clemens_van_de_Velde 0 001 @i 09805475 n 0000 | Belgian architect (1863-1957) -11359697 18 n 03 Van_Doren 0 Carl_Van_Doren 0 Carl_Clinton_Van_Doren 0 002 @i 10794014 n 0000 @i 10266016 n 0000 | United States writer and literary critic (1885-1950) -11359867 18 n 04 Vandyke 0 Van_Dyck 0 Anthony_Vandyke 0 Sir_Anthony_Vandyke 0 001 @i 10375794 n 0000 | Flemish painter of numerous portraits (1599-1641) -11360022 18 n 03 van_Gogh 0 Vincent_van_Gogh 0 Gogh 0 001 @i 10391653 n 0000 | Dutch Post-impressionist painter noted for his use of color (1853-1890) -11360175 18 n 03 Van_Vleck 0 John_Van_Vleck 0 John_Hasbrouck_Van_Vleck 0 001 @i 10428004 n 0000 | United States physicist (1899-1980) -11360311 18 n 02 Vanzetti 0 Bartolomeo_Vanzetti 0 001 @i 09791816 n 0000 | United States anarchist (born in Italy) who with Nicola Sacco was convicted of murder and in spite of world-wide protest was executed (1888-1927) -11360534 18 n 02 Varese 0 Edgar_Varese 0 001 @i 09947232 n 0000 | United States composer (born in France) whose music combines dissonance with complex rhythms and the use of electronic techniques (1883-1965) -11360744 18 n 02 Vargas 0 Getulio_Dornelles_Vargas 0 001 @i 10650162 n 0000 | Brazilian statesman who ruled Brazil as a virtual dictator (1883-1954) -11360895 18 n 03 Vargas_Llosa 0 Mario_Vargas_Llosa 0 Jorge_Mario_Pedro_Vargas_Llosa 0 001 @i 10794014 n 0000 | Peruvian writer (born in 1936) -11361039 18 n 02 Varro 0 Marcus_Terentius_Varro 0 001 @i 10557854 n 0000 | Roman scholar (116-27 BC) -11361142 18 n 02 Vasarely 0 Viktor_Vasarely 0 001 @i 10391653 n 0000 | French painter (born in Hungary) who was a pioneer of op art (1908-1997) -11361288 18 n 02 Vasari 0 Giorgio_Vasari 0 002 @i 10391653 n 0000 @i 09811414 n 0000 | Italian painter and art historian (1511-1574) -11361423 18 n 02 Vaughan 0 Sarah_Vaughan 0 001 @i 10599806 n 0000 | United States jazz singer noted for her complex bebop phrasing and scat singing (1924-1990) -11361585 18 n 02 Vaughan_Williams 0 Ralph_Vaughan_Williams 0 001 @i 09947232 n 0000 | English composer influenced by folk tunes and music of the Tudor period (1872-1958) -11361757 18 n 02 Vaux 0 Calvert_Vaux 0 001 @i 10245863 n 0000 | United States landscape architect (born in England) who designed Central Park (1824-1895) -11361913 18 n 02 Veblen 0 Oswald_Veblen 0 001 @i 10301261 n 0000 | United States mathematician (1880-1960) -11362022 18 n 03 Veblen 1 Thorstein_Veblen 0 Thorstein_Bunde_Veblen 0 001 @i 10043643 n 0000 | United States economist who wrote about conspicuous consumption (1857-1929) -11362195 18 n 03 Vega 0 Lope_de_Vega 0 Lope_Felix_de_Vega_Carpio 0 001 @i 10030277 n 0000 | prolific Spanish playwright (1562-1635) -11362329 18 n 02 Velazquez 0 Diego_Rodriguez_de_Silva_y_Velazquez 0 001 @i 10375794 n 0000 | Spanish painter (1599-1660) -11362452 18 n 02 Venn 0 John_Venn 0 001 @i 10269785 n 0000 | English logician who introduced Venn diagrams (1834-1923) -11362573 18 n 03 Ventner 0 Craig_Ventner 0 J._Craig_Ventner 0 001 @i 10126424 n 0000 | United States geneticist who published the complete base sequences for all the genes of a free-living organism, the influenza bacterium; later led team that developed a first draft of the entire human genome (born in 1946) -11362885 18 n 03 Venturi 0 Robert_Venturi 0 Robert_Charles_Venturi 0 001 @i 09805475 n 0000 | United States architect (born in 1925) -11363020 18 n 03 Verdi 0 Giuseppe_Verdi 0 Guiseppe_Fortunino_Francesco_Verdi 0 001 @i 09947232 n 0000 | Italian operatic composer (1813-1901) -11363164 18 n 02 Verlaine 0 Paul_Verlaine 0 001 @i 10444194 n 0000 | French symbolist poet (1844-1896) -11363269 18 n 03 Vermeer 0 Jan_Vermeer 0 Jan_van_der_Meer 0 001 @i 10375794 n 0000 | Dutch painter renowned for his use of light (1632-1675) -11363412 18 n 02 Verne 0 Jules_Verne 0 001 @i 10794014 n 0000 | French writer who is considered the father of science fiction (1828-1905) -11363552 18 n 02 Verner 0 Karl_Adolph_Verner 0 001 @i 10423225 n 0000 | Danish philologist (1846-1896) -11363657 18 n 02 Vernier 0 Paul_Vernier 0 001 @i 10301261 n 0000 | French mathematician who described the vernier scale (1580-1637) -11363791 18 n 03 Veronese 0 Paolo_Veronese 0 Paola_Caliari 0 001 @i 10375794 n 0000 | Italian painter of the Venetian school (1528-1588) -11363930 18 n 04 Verrazano 0 Giovanni_da_Verrazano 0 Verrazzano 0 Giovanni_da_Verrazzano 0 001 @i 10347883 n 0000 | Florentine navigator who explored the eastern coast of North America (circa 1485-1528) -11364135 18 n 02 Versace 0 Gianni_Versace 0 001 @i 09972157 n 0000 | Italian fashion designer (1946-1997) -11364243 18 n 03 Verwoerd 0 Hendrik_Verwoerd 0 Hendrik_Frensch_Verwoerd 0 001 @i 10650162 n 0000 | South African statesman who instituted the policy of apartheid (1901-1966) -11364419 18 n 02 Vesalius 0 Andreas_Vesalius 0 001 @i 09792237 n 0000 | a Flemish surgeon who is considered the father of modern anatomy (1514-1564) -11364570 18 n 02 Vesey 0 Denmark_Vesey 0 002 @i 10609325 n 0000 @i 10210137 n 0000 | United States freed slave and insurrectionist in South Carolina who was involved in planning an uprising of slaves and was hanged (1767-1822) -11364799 18 n 02 Vespasian 0 Titus_Flavius_Sabinus_Vespasianus 0 001 @i 10537240 n 0000 | Emperor of Rome and founder of the Flavian dynasty who consolidated Roman rule in Germany and Britain and reformed the army and brought prosperity to the empire; began the construction of the Colosseum (9-79) -11365100 18 n 03 Vespucci 0 Amerigo_Vespucci 0 Americus_Vespucius 0 001 @i 10347883 n 0000 | Florentine navigator who explored the coast of South America; America was named in his honor (1454-1512) -11365300 18 n 02 Vestris 0 Gaetan_Vestris 0 001 @i 09989502 n 0000 | Italian dancing-master for Louis XVI who was considered the greatest dancer of his day; he was the first to discard the mask in mime (1729-1808) -11365516 18 n 01 Victor_Emanuel_II 0 001 @i 10231515 n 0000 | king of Italy who completed the unification of Italy by acquiring Venice and Rome (1820-1878) -11365674 18 n 01 Victor_Emanuel_III 0 001 @i 10231515 n 0000 | king of Italy who appointed Mussolini prime minister; he abdicated in 1946 and the monarchy was abolished (1869-1947) -11365857 18 n 02 Victoria 0 Queen_Victoria 0 004 @i 10499631 n 0000 @i 10053439 n 0000 #m 08154960 n 0000 + 03027793 a 0101 | queen of Great Britain and Ireland and empress of India from 1837 to 1901; the last Hanoverian ruler of England (1819-1901) -11366109 18 n 03 Vidal 0 Gore_Vidal 0 Eugene_Luther_Vidal 0 001 @i 10794014 n 0000 | United States writer (born in 1925) -11366232 18 n 03 Vigee-Lebrun 0 Elisabeth_Vigee-Lebrun 0 Marie_Louise_Elisabeth_Vigee-Lebrun 0 001 @i 10391653 n 0000 | French painter noted for her portraits (1755-1842) -11366405 18 n 04 Villa 0 Pancho_Villa 0 Francisco_Villa 0 Doroteo_Arango 0 001 @i 10527334 n 0000 | Mexican revolutionary leader (1877-1923) -11366548 18 n 02 Villa-Lobos 0 Heitor_Villa-Lobos 0 001 @i 09947232 n 0000 | Brazilian composer (1887-1959) -11366658 18 n 02 Villard 0 Henry_Villard 0 001 @i 09882007 n 0000 | United States railroad magnate and businessman (1835-1900) -11366787 18 n 02 Villon 0 Francois_Villon 0 001 @i 10444194 n 0000 | French poet (flourished around 1460) -11366895 18 n 02 Vinogradoff 0 Sir_Paul_Gavrilovich_Vinogradoff 0 001 @i 10177150 n 0000 | British historian (born in Russia) (1854-1925) -11367035 18 n 02 Vinson 0 Frederick_Moore_Vinson 0 001 @i 09916788 n 0000 | United States jurist who served as chief justice of the Supreme Court (1890-1953) -11367195 18 n 03 Virchow 0 Rudolf_Virchow 0 Rudolf_Karl_Virchow 0 001 @i 10011074 n 0000 | German pathologist who recognized that all cells come from cells by binary fission and who emphasized cellular abnormalities in disease (1821-1902) -11367436 18 n 03 Virgil 0 Vergil 0 Publius_Vergilius_Maro 0 001 @i 10444194 n 0000 | a Roman poet; author of the epic poem `Aeneid' (70-19 BC) -11367581 18 n 03 Visconti 0 Luchino_Visconti 0 Don_Luchino_Visconti_Conte_di_Modrone 0 001 @i 10088390 n 0000 | Italian filmmaker (1906-1976) -11367725 18 n 02 Vitus 0 St._Vitus 0 002 @i 10296832 n 0000 @i 10547145 n 0000 | Christian martyr and patron of those who suffer from epilepsy and Sydenham's chorea (died around 300) -11367910 18 n 03 Vivaldi 0 Antonio_Vivaldi 0 Antonio_Lucio_Vivaldi 0 002 @i 09947232 n 0000 @i 10754578 n 0000 | Italian baroque composer and violinist (1675-1741) -11368076 18 n 02 Vizcaino 0 Sebastian_Vizcaino 0 001 @i 10072708 n 0000 | Spanish explorer who was the first European to explore the California coast (1550-1615) -11368240 18 n 02 Vlaminck 0 Maurice_de_Vlaminck 0 001 @i 10391653 n 0000 | French painter and exponent of fauvism (1876-1958) -11368368 18 n 04 Volta 0 Count_Alessandro_Volta 0 Conte_Alessandro_Volta 0 Conte_Alessandro_Giuseppe_Antonio_Anastasio_Volta 0 001 @i 10428004 n 0000 | Italian physicist after whom the volt is named; studied electric currents and invented the voltaic pile (1745-1827) -11368638 18 n 03 Voltaire 0 Arouet 0 Francois-Marie_Arouet 0 003 @i 10794014 n 0000 + 03038536 a 0101 + 03038536 a 0102 | French writer who was the embodiment of 18th century Enlightenment (1694-1778) -11368841 18 n 02 Vonnegut 0 Kurt_Vonnegut 0 001 @i 10794014 n 0000 | United States writer whose novels and short stories are a mixture of realism and satire and science fiction (born in 1922) -11369035 18 n 03 von_Neumann 0 Neumann 0 John_von_Neumann 0 001 @i 10301261 n 0000 | United States mathematician who contributed to the development of atom bombs and of stored-program digital computers (1903-1957) -11369251 18 n 02 von_Sternberg 0 Josef_von_Sternberg 0 001 @i 10088390 n 0000 | United States film maker (born in Austria) whose films made Marlene Dietrich an international star (1894-1969) -11369444 18 n 02 Voznesenski 0 Andrei_Voznesenski 0 001 @i 10444194 n 0000 | Russian poet (born in 1933) -11369551 18 n 03 Vuillard 0 Edouard_Vuillard 0 Jean_Edouard_Vuillard 0 001 @i 10391653 n 0000 | French painter (1868-1940) -11369676 18 n 02 Wade 0 Virginia_Wade 0 002 @i 10701180 n 0000 + 01916214 v 0101 | English tennis player who won many women's singles titles (born in 1945) -11369834 18 n 03 Wagner 0 Richard_Wagner 0 Wilhelm_Richard_Wagner 0 002 @i 09947232 n 0000 + 03036974 a 0101 | German composer of operas and inventor of the musical drama in which drama and spectacle and music are fused (1813-1883) -11370068 18 n 02 Wagner 1 Otto_Wagner 0 001 @i 09805475 n 0000 | Austrian architect and pioneer of modern architecture (1841-1918) -11370201 18 n 03 Wain 0 John_Wain 0 John_Barrington_Wain 0 001 @i 10794014 n 0000 | English writer (1925-1994) -11370314 18 n 04 Waite 0 Morrison_Waite 0 Morrison_R._Waite 0 Morrison_Remick_Waite 0 001 @i 09916788 n 0000 | United States jurist who was appointed chief justice of the United States Supreme Court in 1874 by President Grant (1816-1888) -11370554 18 n 02 Wajda 0 Andrzej_Wajda 0 001 @i 10088390 n 0000 | Polish filmmaker (born in 1929) -11370654 18 n 02 Waldheim 0 Kurt_Waldheim 0 002 @i 10013927 n 0000 @i 10650162 n 0000 | Austrian diplomat who was Secretary General of the United Nations from 1972 to 1981; in 1986 he was elected president of Austria in spite of worldwide allegations that he had direct knowledge of Nazi atrocities during World War II (born in 1918) -11370990 18 n 02 Walesa 0 Lech_Walesa 0 002 @i 10242032 n 0000 @i 10650162 n 0000 | Polish labor leader and statesman (born in 1943) -11371125 18 n 03 Walker 1 Alice_Walker 0 Alice_Malsenior_Walker 0 001 @i 10794014 n 0000 | United States writer (born in 1944) -11371254 18 n 02 Walker 2 John_Walker 0 001 @i 10108089 n 0000 | New Zealand runner who in 1975 became the first person to run a mile in less that 3 minutes and 50 seconds (born in 1952) -11371443 18 n 02 Wallace 0 Alfred_Russel_Wallace 0 001 @i 10346514 n 0000 | English naturalist who formulated a concept of evolution that resembled Charles Darwin's (1823-1913) -11371622 18 n 03 Wallace 1 Edgar_Wallace 0 Richard_Horatio_Edgar_Wallace 0 001 @i 10794014 n 0000 | English writer noted for his crime novels (1875-1932) -11371778 18 n 02 Wallace 2 Sir_William_Wallace 0 001 @i 10210137 n 0000 | Scottish insurgent who led the resistance to Edward I; in 1297 he gained control of Scotland briefly until Edward invaded Scotland again and defeated Wallace and subsequently executed him (1270-1305) -11372054 18 n 02 Wallenstein 0 Albrecht_Eusebius_Wenzel_von_Wallenstein 0 001 @i 10123844 n 0000 | Austrian general who fought for the Hapsburgs during the Thirty Years' War (1583-1634) -11372242 18 n 03 Waller 0 Fats_Waller 0 Thomas_Wright_Waller 0 001 @i 10220486 n 0000 | United States jazz musician (1904-1943) -11372372 18 n 04 Walpole 0 Robert_Walpole 0 Sir_Robert_Walpole 0 First_Earl_of_Orford 0 001 @i 10650162 n 0000 | Englishman and Whig statesman who (under George I) was effectively the first British prime minister (1676-1745) -11372599 18 n 04 Walpole 1 Horace_Walpole 0 Horatio_Walpole 0 Fourth_Earl_of_Orford 0 002 @i 10794014 n 0000 @i 10177150 n 0000 | English writer and historian; son of Sir Robert Walpole (1717-1797) -11372799 18 n 02 Walter 0 Bruno_Walter 0 001 @i 09952539 n 0000 | German conductor (1876-1962) -11372896 18 n 04 Walton 0 E._T._S._Walton 0 Ernest_Walton 0 Ernest_Thomas_Sinton_Walton 0 001 @i 10364643 n 0000 | Irish physicist who (with Sir John Cockcroft in 1931) first split an atom (1903-1995) -11373099 18 n 02 Walton 1 Izaak_Walton 0 001 @i 10794014 n 0000 | English writer remember for his treatise on fishing (1593-1683) -11373231 18 n 04 Walton 2 William_Walton 0 Sir_William_Walton 0 Sir_William_Turner_Walton 0 001 @i 09947232 n 0000 | English composer (1902-1983) -11373379 18 n 02 Wanamaker 0 John_Wanamaker 0 001 @i 09882007 n 0000 | United States businessman whose business grew into one of the first department stores (1838-1922) -11373550 18 n 03 Warburg 0 Aby_Warburg 0 Aby_Moritz_Warburg 0 001 @i 09811414 n 0000 | German art historian (1866-1929) -11373672 18 n 02 Warburg 1 Otto_Heinrich_Warburg 0 001 @i 09854915 n 0000 | German biochemist who pioneered the use of chemical techniques in biological investigations; noted for studies of cellular respiration (1883-1970) -11373897 18 n 03 Ward 1 Montgomery_Ward 0 Aaron_Montgomery_Ward 0 001 @i 09882007 n 0000 | United States businessman who in 1872 established a successful mail-order business (1843-1913) -11374085 18 n 03 Ward 2 Mrs._Humphrey_Ward 0 Mary_Augusta_Arnold_Ward 0 001 @i 10794014 n 0000 | English writer of novels who was an active opponent of the women's suffrage movement (1851-1920) -11374281 18 n 03 Ward 3 Barbara_Ward 0 Baroness_Jackson_of_Lodsworth 0 002 @i 10043643 n 0000 @i 10060621 n 0000 | English economist and conservationist (1914-1981) -11374448 18 n 02 Warhol 0 Andy_Warhol 0 001 @i 10391653 n 0000 | United States artist who was a leader of the Pop Art movement (1930-1987) -11374589 18 n 02 Warner 1 Charles_Dudley_Warner 0 001 @i 10088390 n 0000 | United States filmmaker who with his brothers founded the movie studio that produced the first talking picture (1881-1958) -11374789 18 n 02 Warren 0 Earl_Warren 0 001 @i 09916788 n 0000 | United States jurist who served as chief justice of the United States Supreme Court (1891-1974) -11374952 18 n 02 Warren 1 Robert_Penn_Warren 0 002 @i 10794014 n 0000 @i 10444194 n 0000 | United States writer and poet (1905-1989) -11375087 18 n 04 Warwick 0 Earl_of_Warwick 0 Richard_Neville 0 Kingmaker 1 001 @i 10650162 n 0000 | English statesman; during the War of the Roses he fought first for the house of York and secured the throne for Edward IV and then changed sides to fight for the house of Lancaster and secured the throne for Henry VI (1428-1471) -11375418 18 n 03 Washington 0 George_Washington 0 President_Washington 0 003 @i 10123844 n 0000 @i 10467395 n 0000 + 03037579 a 0101 | 1st President of the United States; commander-in-chief of the Continental Army during the American Revolution (1732-1799) -11375677 18 n 03 Washington 1 Booker_T._Washington 0 Booker_Taliaferro_Washington 0 001 @i 10045713 n 0000 | United States educator who was born a slave but became educated and founded a college at Tuskegee in Alabama (1856-1915) -11375909 18 n 02 Wassermann 0 August_von_Wassermann 0 001 @i 09831411 n 0000 | German bacteriologist who developed a diagnostic test for syphilis (1866-1925) -11376069 18 n 02 Waters 0 Ethel_Waters 0 002 @i 09767700 n 0000 @i 10599806 n 0000 | United States actress and singer (1896-1977) -11376201 18 n 03 Watson 0 James_Watson 0 James_Dewey_Watson 0 001 @i 10126424 n 0000 | United States geneticist who (with Crick in 1953) helped discover the helical structure of DNA (born in 1928) -11376400 18 n 02 Watson 1 John_Broadus_Watson 0 001 @i 10488865 n 0000 | United States psychologist considered the founder of behavioristic psychology (1878-1958) -11376565 18 n 02 Watson 2 Thomas_Augustus_Watson 0 001 @i 09615807 n 0000 | United States telephone engineer who assisted Alexander Graham Bell in his experiments (1854-1934) -11376742 18 n 02 Watt 0 James_Watt 0 002 @i 09615807 n 0000 @i 10214637 n 0000 | Scottish engineer and inventor whose improvements in the steam engine led to its wide use in industry (1736-1819) -11376939 18 n 02 Watteau 0 Jean_Antoine_Watteau 0 001 @i 10375794 n 0000 | French painter (1684-1721) -11377043 18 n 02 Watts 0 Isaac_Watts 0 002 @i 10444194 n 0000 @i 10705615 n 0000 | English poet and theologian (1674-1748) -11377168 18 n 03 Waugh 0 Evelyn_Waugh 0 Evelyn_Arthur_Saint_John_Waugh 0 001 @i 10794014 n 0000 | English author of satirical novels (1903-1966) -11377315 18 n 03 Wavell 0 Archibald_Percival_Wavell 0 First_Earl_Wavell 0 002 @i 10123844 n 0000 @i 10086821 n 0000 | British field marshal in North Africa in World War II; he defeated the Italians before being defeated by the Germans (1883-1950) -11377564 18 n 03 Wayne 0 Anthony_Wayne 0 Mad_Anthony_Wayne 0 001 @i 10123844 n 0000 | American general during the American Revolution (1745-1796) -11377712 18 n 03 Wayne 1 John_Wayne 0 Duke_Wayne 0 001 @i 09765278 n 0000 | United States film actor who played tough heroes (1907-1979) -11377851 18 n 04 Webb 0 Sidney_Webb 0 Sidney_James_Webb 0 First_Baron_Passfield 0 003 @i 10620758 n 0000 @i 10043643 n 0000 #m 08243851 n 0000 | English sociologist and economist and a central member of the Fabian Society (1859-1947) -11378087 18 n 03 Webb 1 Beatrice_Webb 0 Martha_Beatrice_Potter_Webb 0 001 @i 10794014 n 0000 | English writer and a central member of the Fabian Society (1858-1943) -11378254 18 n 03 Weber 0 E._H._Weber 0 Ernst_Heinrich_Weber 0 001 @i 10429965 n 0000 | German physiologist who studied sensory responses to stimuli and is considered the father of psychophysics (1795-1878) -11378462 18 n 03 Weber 1 Carl_Maria_von_Weber 0 Baron_Karl_Maria_Friedrich_Ernst_von_Weber 0 002 @i 09952539 n 0000 @i 09947232 n 0000 | German conductor and composer of romantic operas (1786-1826) -11378662 18 n 02 Weber 2 Max_Weber 0 001 @i 10620758 n 0000 | German sociologist and pioneer of the analytic method in sociology (1864-1920) -11378805 18 n 02 Weber 3 Max_Weber 1 001 @i 10391653 n 0000 | United States abstract painter (born in Russia) (1881-1961) -11378929 18 n 02 Weber 4 Wilhelm_Eduard_Weber 0 001 @i 10428004 n 0000 | German physicist and brother of E. H. Weber; noted for his studies of terrestrial magnetism (1804-1891) -11379108 18 n 02 Webster 0 Noah_Webster 0 001 @i 10256080 n 0000 | United States lexicographer (1758-1843) -11379217 18 n 02 Webster 1 Daniel_Webster 0 001 @i 10450303 n 0000 | United States politician and orator (1782-1817) -11379336 18 n 02 Webster 2 John_Webster 0 001 @i 10030277 n 0000 | English playwright (1580-1625) -11379436 18 n 02 Wedgwood 0 Josiah_Wedgwood 0 001 @i 10460806 n 0000 | English potter (1730-1795) -11379536 18 n 02 Wegener 0 Alfred_Lothar_Wegener 0 001 @i 10128519 n 0000 | German geophysicist who proposed the theory of continental drift (1880-1930) -11379691 18 n 02 Weil 0 Andre_Weil 0 001 @i 10301261 n 0000 | United States mathematician (born in France) (1906-1998) -11379812 18 n 02 Weil 1 Simone_Weil 0 001 @i 10423589 n 0000 | French philosopher (1909-1943) -11379908 18 n 02 Weill 0 Kurt_Weill 0 001 @i 09947232 n 0000 | German composer; collaborated with Bertolt Brecht (1900-1950) -11380035 18 n 02 Weinberg 0 Steven_Weinberg 0 001 @i 10428004 n 0000 | United States theoretical physicist (born in 1933) -11380159 18 n 02 Weismann 0 August_Friedrich_Leopold_Weismann 0 001 @i 10126424 n 0000 | German biologist who was one of the founders of modern genetics; his theory of genetic transmission ruled out the possibility of transmitting acquired characteristics (1834-1914) -11380429 18 n 03 Weizmann 0 Chaim_Weizmann 0 Chaim_Azriel_Weizmann 0 001 @i 10650162 n 0000 | Israeli statesman who persuaded the United States to recognize the new state of Israel and became its first president (1874-1952) -11380655 18 n 02 Weld 0 Theodore_Dwight_Weld 0 001 @i 09756637 n 0000 | United States abolitionist (1803-1895) -11380768 18 n 03 Welles 0 Orson_Welles 0 George_Orson_Welles 0 002 @i 09765278 n 0000 @i 10088390 n 0000 | United States actor and filmmaker (1915-1985) -11380923 18 n 05 Wellington 0 Duke_of_Wellington 0 First_Duke_of_Wellington 0 Arthur_Wellesley 0 Iron_Duke 0 002 @i 10123844 n 0000 @i 10650162 n 0000 | British general and statesman; he defeated Napoleon at Waterloo; subsequently served as Prime Minister (1769-1852) -11381193 18 n 03 Wells 0 H._G._Wells 0 Herbert_George_Wells 0 001 @i 10794014 n 0000 | prolific English writer best known for his science-fiction novels; he also wrote on contemporary social problems and wrote popular accounts of history and science (1866-1946) -11381457 18 n 02 Welty 0 Eudora_Welty 0 001 @i 10794014 n 0000 | United States writer about rural southern life (1909-2001) -11381583 18 n 02 Werfel 0 Franz_Werfel 0 001 @i 10794014 n 0000 | United States writer (1890-1945) -11381684 18 n 02 Wernicke 0 Karl_Wernicke 0 001 @i 10354265 n 0000 | German neurologist best known for his studies of aphasia (1848-1905) -11381824 18 n 02 Wesley 0 John_Wesley 0 002 @i 09927451 n 0000 + 02955562 a 0102 | English clergyman and founder of Methodism (1703-1791) -11381964 18 n 02 Wesley 1 Charles_Wesley 0 001 @i 09927451 n 0000 | English clergyman and brother of John Wesley who wrote many hymns (1707-1788) -11382112 18 n 02 West 0 Benjamin_West 0 001 @i 10391653 n 0000 | English painter (born in America) who became the second president of the Royal Academy (1738-1820) -11382278 18 n 02 West 1 Mae_West 0 002 @i 09767700 n 0000 @i 09940818 n 0000 | United States film actress (1892-1980) -11382398 18 n 04 West 2 Rebecca_West 0 Dame_Rebecca_West 0 Cicily_Isabel_Fairfield 0 001 @i 10794014 n 0000 | British writer (born in Ireland) (1892-1983) -11382555 18 n 02 Westinghouse 0 George_Westinghouse 0 001 @i 10214637 n 0000 | United States inventor and manufacturer (1846-1914) -11382688 18 n 02 Weston 0 Edward_Weston 0 001 @i 10426749 n 0000 | United States photographer(1886-1958) -11382795 18 n 03 Wharton 0 Edith_Wharton 0 Edith_Newbold_Jones_Wharton 0 001 @i 10794014 n 0000 | United States novelist (1862-1937) -11382930 18 n 02 Wheatley 0 Phillis_Wheatley 0 001 @i 10444194 n 0000 | American poet (born in Africa) who was the first recognized Black writer in America (1753-1784) -11383100 18 n 02 Wheatstone 0 Sir_Charles_Wheatstone 0 002 @i 10428004 n 0000 @i 10214637 n 0000 | English physicist and inventor who devised the Wheatstone bridge (1802-1875) -11383278 18 n 03 Wheeler 3 Sir_Mortimer_Wheeler 0 Sir_Robert_Eric_Mortimer_Wheeler 0 001 @i 09804806 n 0000 | Scottish archaeologist (1890-1976) -11383425 18 n 02 Whistler 1 James_Abbott_McNeill_Whistler 0 001 @i 10391653 n 0000 | United States painter (1834-1903) -11383546 18 n 03 White 1 Andrew_D._White 0 Andrew_Dickson_White 0 001 @i 10045713 n 0000 | United States educator who in 1865 (with Ezra Cornell) founded Cornell University and served as its first president (1832-1918) -11383767 18 n 03 White 2 E._B._White 0 Elwyn_Brooks_White 0 001 @i 10794014 n 0000 | United States writer noted for his humorous essays (1899-1985) -11383917 18 n 02 White 3 Stanford_White 0 001 @i 09805475 n 0000 | United States architect (1853-1906) -11384022 18 n 03 White 4 T._H._White 0 Theodore_Harold_White 0 001 @i 10224578 n 0000 | United States political journalist (1915-1986) -11384159 18 n 03 White 5 Patrick_White 0 Patrick_Victor_Martindale_White 0 001 @i 10794014 n 0000 | Australian writer (1912-1990) -11384291 18 n 04 White 6 Edward_White 0 Edward_D._White 0 Edward_Douglas_White_Jr. 0 001 @i 09916788 n 0000 | United States jurist appointed chief justice of the United States Supreme Court in 1910 by President Taft; noted for his work on antitrust legislation (1845-1921) -11384566 18 n 02 Whitehead 0 Alfred_North_Whitehead 0 002 @i 10423589 n 0000 @i 10301261 n 0000 | English philosopher and mathematician who collaborated with Bertrand Russell (1861-1947) -11384755 18 n 02 Whitman 0 Marcus_Whitman 0 001 @i 10322957 n 0000 | United States frontier missionary who established a post in Oregon where Christianity and schooling and medicine were available to Native Americans (1802-1847) -11384986 18 n 02 Whitman 1 Walt_Whitman 0 001 @i 10444194 n 0000 | United States poet who celebrated the greatness of America (1819-1892) -11385126 18 n 02 Whitney 0 Eli_Whitney 0 002 @i 10214637 n 0000 @i 10292316 n 0000 | United States inventor of the mechanical cotton gin (1765-1825) -11385277 18 n 02 Whittier 0 John_Greenleaf_Whittier 0 001 @i 10444194 n 0000 | United States poet best known for his nostalgic poems about New England (1807-1892) -11385442 18 n 03 Whittle 0 Frank_Whittle 0 Sir_Frank_Whittle 0 001 @i 09775907 n 0000 | English aeronautical engineer who invented the jet aircraft engine (1907-1996) -11385611 18 n 02 Wiener 0 Norbert_Wiener 0 001 @i 10301261 n 0000 | United States mathematician and founder of cybernetics (1894-1964) -11385748 18 n 03 Wiesel 0 Elie_Wiesel 0 Eliezer_Wiesel 0 002 @i 10794014 n 0000 @i 10177150 n 0000 | United States writer (born in Romania) who survived Nazi concentration camps and is dedicated to keeping alive the memory of the Holocaust (born in 1928) -11386005 18 n 02 Wiesenthal 0 Samuel_Wiesenthal 0 001 @i 10215623 n 0000 | Austrian investigator of Nazi war crimes (born in 1908) -11386138 18 n 03 Wigner 0 Eugene_Wigner 0 Eugene_Paul_Wigner 0 001 @i 10364643 n 0000 | United States physicist (born in Hungary) noted for his work on the structure of the atom and its nucleus (1902-1995) -11386346 18 n 03 Wilde 0 Oscar_Wilde 0 Oscar_Fingal_O'Flahertie_Wills_Wilde 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | Irish writer and wit (1854-1900) -11386503 18 n 03 Wilder 0 Billy_Wilder 0 Samuel_Wilder 0 001 @i 10088390 n 0000 | United States filmmaker (born in Austria) whose dark humor infused many of the films he made (1906-2002) -11386692 18 n 03 Wilder 1 Thornton_Wilder 0 Thornton_Niven_Wilder 0 002 @i 10794014 n 0000 @i 10030277 n 0000 | United States writer and dramatist (1897-1975) -11386853 18 n 03 Wilhelm_II 0 Kaiser_Wilhelm 0 Kaiser_Bill 0 001 @i 10229338 n 0000 | grandson of Queen Victoria and Kaiser of Germany from 1888 to 1918; he was vilified as causing World War I (1859-1941) -11387060 18 n 02 Wilkes 0 Charles_Wilkes 0 001 @i 10072708 n 0000 | United States explorer of Antarctica (1798-1877) -11387179 18 n 02 Wilkes 1 John_Wilkes 0 001 @i 10515194 n 0000 | English reformer who published attacks on George III and supported the rights of the American colonists (1727-1797) -11387362 18 n 03 Wilkins 0 Maurice_Wilkins 0 Maurice_Hugh_Frederick_Wilkins 0 001 @i 09854915 n 0000 | English biochemist who helped discover the structure of DNA (1916-2004) -11387539 18 n 02 Wilkins 1 George_Hubert_Wilkins 0 001 @i 10072708 n 0000 | Australian who was the first to explore the Arctic by airplane (1888-1958) -11387692 18 n 02 Wilkins 2 Roy_Wilkins 0 001 @i 09924996 n 0000 | United States civil rights leader (1901-1981) -11387806 18 n 02 Wilkinson 0 Sir_Geoffrey_Wilkinson 0 001 @i 09913824 n 0000 | English chemist honored for his research on pollutants in car exhausts (born in 1921) -11387973 18 n 02 Willard 0 Emma_Hart_Willard 0 001 @i 10045713 n 0000 | United States educator who was an early campaigner for higher education for women (1787-1870) -11388141 18 n 02 Willard 1 Frances_Elizabeth_Caroline_Willard 0 002 @i 10672908 n 0000 @i 10037922 n 0000 | United States advocate of temperance and women's suffrage (1839-1898) -11388321 18 n 05 Willebrand 0 von_Willebrand 0 E._A._von_Willebrand 0 Erik_von_Willebrand 0 Erik_Adolf_von_Willebrand 0 001 @i 10020890 n 0000 | Finnish physician who first described vascular hemophilia (1870-1949) -11388538 18 n 02 William_I 0 William_the_Conqueror 0 001 @i 10233445 n 0000 | duke of Normandy who led the Norman invasion of England and became the first Norman to be King of England; he defeated Harold II at the battle of Hastings in 1066 and introduced many Norman customs into England (1027-1087) -11388841 18 n 02 William_II 0 William_Rufus 0 001 @i 10233445 n 0000 | the second son of William the Conqueror who succeeded him as King of England (1056-1100) -11389003 18 n 02 William_III 0 William_of_Orange 0 001 @i 10233445 n 0000 | King of England and Scotland and Ireland; he married the daughter of James II and was invited by opponents of James II to invade England; when James fled, William III and Mary II were declared joint monarchs (1650-1702) -11389301 18 n 02 William_IV 0 Sailor_King 0 001 @i 10233445 n 0000 | King of England and Ireland; son of George III who ascended the throne after a long naval career (1765-1837) -11389481 18 n 03 Williams 0 Tennessee_Williams 0 Thomas_Lanier_Williams 0 001 @i 10030277 n 0000 | United States playwright (1911-1983) -11389619 18 n 02 Williams 1 Roger_Williams 0 002 @i 09927451 n 0000 @i 10583387 n 0000 | English clergyman and colonist who was expelled from Massachusetts for criticizing Puritanism; he founded Providence in 1636 and obtained a royal charter for Rhode Island in 1663 (1603-1683) -11389901 18 n 03 Williams 2 Ted_Williams 0 Theodore_Samuel_Williams 0 001 @i 09835506 n 0000 | United States baseball player noted as a hitter (1918-2002) -11390058 18 n 02 Williams 3 William_Carlos_Williams 0 001 @i 10444194 n 0000 | United States poet (1883-1963) -11390170 18 n 03 Williams 4 Sir_Bernard_Williams 0 Bernard_Arthur_Owen_Williams 0 001 @i 10423589 n 0000 | English philosopher credited with reviving the field of moral philosophy (1929-2003) -11390364 18 n 04 Williams 5 Hank_Williams 0 Hiram_Williams 0 Hiram_King_Williams 0 002 @i 10599806 n 0000 @i 10624540 n 0000 | United States country singer and songwriter (1923-1953) -11390549 18 n 02 Willis 0 Thomas_Willis 0 001 @i 10354265 n 0000 | English physician who was a pioneer in the study of the brain (1621-1675) -11390692 18 n 02 Wilmut 0 Ian_Wilmut 0 001 @i 10126424 n 0000 | English geneticist who succeeded in cloning a sheep from a cell from an adult ewe (born in 1944) -11390855 18 n 04 Wilson 0 Woodrow_Wilson 0 Thomas_Woodrow_Wilson 0 President_Wilson 0 002 @i 10467395 n 0000 + 02696515 a 0101 | 28th President of the United States; led the United States in World War I and secured the formation of the League of Nations (1856-1924) -11391123 18 n 02 Wilson 1 Edmund_Wilson 0 001 @i 10266016 n 0000 | United States literary critic (1895-1972) -11391234 18 n 02 Wilson 2 Charles_Thomson_Rees_Wilson 0 001 @i 10364643 n 0000 | Scottish physicist who invented the cloud chamber (1869-1959) -11391379 18 n 03 Wilson 3 E._O._Wilson 0 Edward_Osborne_Wilson 0 001 @i 10059904 n 0000 | United States entomologist who has generalized from social insects to other animals including humans (born in 1929) -11391587 18 n 02 Wilson 4 James_Wilson 0 001 @i 09740085 n 0000 | American Revolutionary leader who was one of the signers of the Declaration of Independence (1742-1798) -11391759 18 n 02 Wilson 5 John_Tuzo_Wilson 0 001 @i 10128519 n 0000 | Canadian geophysicist who was a pioneer in the study of plate tectonics (1908-1993) -11391915 18 n 02 Wilson 6 Robert_Woodrow_Wilson 0 001 @i 10428004 n 0000 | United States physicist honored for his work on cosmic microwave radiation (born in 1918) -11392082 18 n 02 Wilson 7 Alexander_Wilson 0 001 @i 10384214 n 0000 | Scottish ornithologist in the United States (1766-1813) -11392210 18 n 03 Wilson 8 Sir_Angus_Wilson 0 Angus_Frank_Johnstone_Wilson 0 001 @i 10794014 n 0000 | English writer of novels and short stories (1913-1991) -11392368 18 n 02 Wilson 9 Harriet_Wilson 0 001 @i 10794014 n 0000 | author of the first novel by an African American that was published in the United States (1808-1870) -11392539 18 n 03 Winckelmann 0 Johann_Winckelmann 0 Johann_Joachim_Winckelmann 0 002 @i 09804806 n 0000 @i 09811414 n 0000 | German archaeologist and art historian said to be the father of archaeology (1717-1768) -11392754 18 n 02 Windaus 0 Adolf_Windaus 0 001 @i 09913824 n 0000 | German chemist who studied steroids and cholesterol and discovered histamine (1876-1959) -11392913 18 n 02 Winslow 0 Edward_Winslow 0 001 @i 10583387 n 0000 | English colonial administrator who traveled to America on the Mayflower and served as the first governor of the Plymouth Colony (1595-1655) -11393124 18 n 02 Wise 0 Isaac_Mayer_Wise 0 001 @i 10519494 n 0000 | United States religious leader (born in Bohemia) who united reform Jewish organizations in the United States (1819-1900) -11393315 18 n 02 Wise 1 Stephen_Samuel_Wise 0 001 @i 10519494 n 0000 | United States Jewish leader (born in Hungary) (1874-1949) -11393446 18 n 02 Wister 0 Owen_Wister 0 001 @i 10794014 n 0000 | United States writer (1860-1938) -11393546 18 n 02 Witherspoon 0 John_Witherspoon 0 002 @i 09740085 n 0000 @i 10045713 n 0000 | American Revolutionary leader and educator (born in Scotland) who signed of the Declaration of Independence and was president of the college that became Princeton University (1723-1794) -11393828 18 n 03 Wittgenstein 0 Ludwig_Wittgenstein 0 Ludwig_Josef_Johan_Wittgenstein 0 001 @i 10423589 n 0000 | British philosopher born in Austria; a major influence on logic and logical positivism (1889-1951) -11394042 18 n 03 Wodehouse 0 P._G._Wodehouse 0 Pelham_Grenville_Wodehouse 0 001 @i 10794014 n 0000 | English writer known for his humorous novels and stories (1881-1975) -11394214 18 n 02 Wolf 2 Friedrich_August_Wolf 0 001 @i 09926656 n 0000 | German classical scholar who claimed that the Iliad and Odyssey were composed by several authors (1759-1824) -11394398 18 n 02 Wolf 3 Hugo_Wolf 0 001 @i 09947232 n 0000 | Austrian composer (1860-1903) -11394491 18 n 03 Wolfe 0 Thomas_Wolfe 0 Thomas_Clayton_Wolfe 0 001 @i 10794014 n 0000 | United States writer best known for his autobiographical novels (1900-1938) -11394657 18 n 04 Wolfe 1 Tom_Wolfe 0 Thomas_Wolfe 1 Thomas_Kennerly_Wolfe_Jr. 0 001 @i 10794014 n 0000 | United States writer who has written extensively on American culture (born in 1931) -11394848 18 n 02 Wolff 0 Kaspar_Friedrich_Wolff 0 001 @i 09792237 n 0000 | German anatomist (1733-1794) -11394954 18 n 02 Wollaston 0 William_Hyde_Wollaston 0 002 @i 09913824 n 0000 @i 10428004 n 0000 | English chemist and physicist who discovered palladium and rhodium and demonstrated that static and current electricity are the same (1766-1828) -11395199 18 n 03 Wollstonecraft 0 Mary_Wollstonecraft 0 Mary_Wollstonecraft_Godwin 0 002 @i 10794014 n 0000 @i 10084635 n 0000 | English writer and early feminist who denied male supremacy and advocated equal education for women; mother of Mary Shelley (1759-1797) -11395466 18 n 02 Wood 0 Grant_Wood 0 001 @i 10391653 n 0000 | United States painter noted for works based on life in the Midwest (1892-1942) -11395609 18 n 03 Wood 1 Mrs._Henry_Wood 0 Ellen_Price_Wood 0 001 @i 10794014 n 0000 | English writer of novels about murders and thefts and forgeries (1814-1887) -11395773 18 n 03 Wood 2 Sir_Henry_Wood 0 Sir_Henry_Joseph_Wood 0 001 @i 09952539 n 0000 | English conductor (1869-1944) -11395895 18 n 02 Wood 3 Natalie_Wood 0 001 @i 09767700 n 0000 | United States film actress (1938-1981) -11396000 18 n 02 Woodbury 0 Helen_Laura_Sumner_Woodbury 0 001 @i 10043643 n 0000 | United States social economist (1876-1933) -11396128 18 n 02 Woodhull 0 Victoria_Clafin_Woodhull 0 001 @i 10672908 n 0000 | United States advocate of women's suffrage; in 1872 she was the first woman to run for the United States presidency (1838-1927) -11396338 18 n 04 Woodward 0 Bob_Woodward 0 Robert_Woodward 0 Robert_Burns_Woodward 0 001 @i 09913824 n 0000 | United States chemist honored for synthesizing complex organic compounds (1917-1979) -11396535 18 n 03 Woodward 1 C._Vann_Woodward 0 Comer_Vann_Woodward 0 001 @i 10177150 n 0000 | United States historian (1908-1999) -11396667 18 n 03 Woolf 0 Virginia_Woolf 0 Adeline_Virginia_Stephen_Woolf 0 002 @i 10794014 n 0000 #m 08240966 n 0000 | English author whose work used such techniques as stream of consciousness and the interior monologue; prominent member of the Bloomsbury Group (1882-1941) -11396943 18 n 02 Woollcott 0 Alexander_Woollcott 0 002 @i 10030147 n 0000 @i 10224578 n 0000 | United States drama critic and journalist (1887-1943) -11397094 18 n 03 Woolley 0 Sir_Leonard_Woolley 0 Sir_Charles_Leonard_Woolley 0 001 @i 09804806 n 0000 | English archaeologist who supervised the excavations at Ur (1880-1960) -11397271 18 n 02 Woolworth 0 Frank_Winfield_Woolworth 0 001 @i 09882007 n 0000 | United States businessman who opened a shop in 1879 selling low-priced goods and built it into a national chain of stores (1852-1919) -11397488 18 n 02 Worcester 0 Joseph_Emerson_Worcester 0 001 @i 10256080 n 0000 | United States lexicographer who was accused of plagiarism by Noah Webster (1784-1865) -11397657 18 n 02 Wordsworth 0 William_Wordsworth 0 003 @i 10444194 n 0000 #m 08468721 n 0000 + 03038683 a 0101 | a romantic English poet whose work was inspired by the Lake District where he spent most of his life (1770-1850) -11397885 18 n 02 Worth 0 Charles_Frederick_Worth 0 001 @i 09972157 n 0000 | French couturier (born in England) regarded as the founder of Parisian haute couture; noted for introducing the bustle (1825-1895) -11398094 18 n 02 Wouk 0 Herman_Wouk 0 001 @i 10794014 n 0000 | United States writer (born in 1915) -11398195 18 n 02 Wren 0 Sir_Christopher_Wren 0 001 @i 09805475 n 0000 | English architect who designed more than fifty London churches (1632-1723) -11398344 18 n 03 Wright 1 Frances_Wright 0 Fanny_Wright 0 001 @i 10084635 n 0000 | United States early feminist (born in Scotland) (1795-1852) -11398489 18 n 02 Wright 2 Frank_Lloyd_Wright 0 001 @i 09805475 n 0000 | influential United States architect (1869-1959) -11398611 18 n 02 Wright 3 Orville_Wright 0 001 @i 10214637 n 0000 | United States aviation pioneer who (with his brother Wilbur Wright) invented the airplane (1871-1948) -11398783 18 n 02 Wright 4 Wilbur_Wright 0 001 @i 10214637 n 0000 | United States aviation pioneer who (with his brother Orville Wright) invented the airplane (1867-1912) -11398955 18 n 02 Wright 5 Richard_Wright 0 001 @i 10794014 n 0000 | United States writer whose work is concerned with the oppression of African Americans (1908-1960) -11399123 18 n 03 Wright 6 Willard_Huntington_Wright 0 S._S._Van_Dine 0 001 @i 10794014 n 0000 | United States writer of detective novels (1888-1939) -11399274 18 n 02 Wurlitzer 0 Rudolf_Wurlitzer 0 001 @i 09882007 n 0000 | United States businessman (born in German) who founded a company to make pipe organs (1831-1914) -11399446 18 n 04 Wyatt 0 Sir_Thomas_Wyatt 0 Wyat 0 Sir_Thomas_Wyat 0 001 @i 10444194 n 0000 | English poet who introduced the sonnet form to English literature (1503-1542) -11399620 18 n 02 Wyatt 1 James_Wyatt 0 001 @i 09805475 n 0000 | English architect (1746-1813) -11399716 18 n 02 Wycherley 0 William_Wycherley 0 001 @i 10030277 n 0000 | English playwright noted for his humorous and satirical plays (1640-1716) -11399866 18 n 08 Wycliffe 0 John_Wycliffe 0 Wickliffe 0 John_Wickliffe 0 Wyclif 0 John_Wyclif 0 Wiclif 0 John_Wiclif 0 001 @i 10705615 n 0000 | English theologian whose objections to Roman Catholic doctrine anticipated the Protestant Reformation (1328-1384) -11400126 18 n 02 Wyeth 0 Andrew_Wyeth 0 001 @i 10391653 n 0000 | United States painter (born in 1917) -11400230 18 n 02 Wykeham 0 William_of_Wykeham 0 002 @i 09807075 n 0000 @i 10650162 n 0000 | English prelate and statesman; founded a college at Oxford and Winchester College in Winchester; served as chancellor of England and bishop of Winchester (1324-1404) -11400490 18 n 02 Wyler 0 William_Wyler 0 001 @i 10088390 n 0000 | United States filmmaker (1902-1981) -11400594 18 n 02 Wylie 0 Elinor_Morton_Hoyt_Wylie 0 001 @i 10444194 n 0000 | United States poet (1885-1928) -11400704 18 n 03 Wynette 0 Tammy_Wynette 0 Tammy_Wynetter_Pugh 0 001 @i 10599806 n 0000 | United States country singer (1942-1998) -11400837 18 n 02 Wyszynski 0 Stefan_Wyszynski 0 001 @i 09807075 n 0000 | Polish prelate who persuaded the Soviet to allow greater religious freedom in Poland (1901-1981) -11401009 18 n 02 Xavier 0 Saint_Francis_Xavier 0 001 @i 10322957 n 0000 | Spanish missionary and Jesuit who establish missionaries in Japan and Ceylon and the East Indies (1506-1552) -11401194 18 n 01 Xenophanes 0 001 @i 10423589 n 0000 | Greek philosopher (560-478 BC) -11401282 18 n 01 Xenophon 0 002 @i 10123844 n 0000 @i 10177150 n 0000 | Greek general and historian; student of Socrates (430-355 BC) -11401418 18 n 02 Xerxes_I 0 Xerxes_the_Great 0 001 @i 10231515 n 0000 | king of Persia who led a vast army against Greece and won the battle of Thermopylae but was eventually defeated (519-465 BC) -11401617 18 n 02 Yale 0 Elihu_Yale 0 001 @i 10421956 n 0000 | English philanthropist who made contributions to a college in Connecticut that was renamed in his honor (1649-1721) -11401797 18 n 02 Yamamoto 0 Isoroku_Yamamoto 0 001 @i 09771204 n 0000 | Japanese admiral who planned the attack on Pearl Harbor in 1941 (1884-1943) -11401947 18 n 02 Yamani 0 Ahmed_Zoki_Yamani 0 001 @i 10320863 n 0000 | Saudi Arabian minister of petroleum who was a central figure in the creation of OPEC (born in 1930) -11402120 18 n 02 Yang_Chen_Ning 0 Chen_N._Yang 0 001 @i 10428004 n 0000 | United States physicist (born in China) who collaborated with Tsung Dao Lee in disproving the principle of conservation of parity (born in 1922) -11402341 18 n 02 Yastrzemski 0 Carl_Yastrzemski 0 001 @i 09835506 n 0000 | United States baseball player (born in 1939) -11402463 18 n 03 Yeats 0 William_Butler_Yeats 0 W._B._Yeats 0 003 @i 10444194 n 0000 @i 10030277 n 0000 + 03038894 a 0101 | Irish poet and dramatist (1865-1939) -11402626 18 n 03 Yerkes 0 Robert_M._Yerkes 0 Robert_Mearns_Yerkes 0 001 @i 10488865 n 0000 | United States psychologist who studied the intelligence of primates (1876-1956) -11402801 18 n 03 Yersin 0 Alexandre_Yersin 0 Alexandre_Emile_Jean_Yersin 0 001 @i 09831411 n 0000 | French bacteriologist born in Switzerland; was a student of Pasteur; discovered the plague bacillus (1863-1943) -11403015 18 n 03 Yevtushenko 0 Yevgeni_Yevtushenko 0 Yevgeni_Aleksandrovich_Yevtushenko 0 001 @i 10444194 n 0000 | Russian poet who expressed the feelings of the post-Stalinist generation (born in 1933) -11403220 18 n 02 Young 0 Brigham_Young 0 001 @i 10519494 n 0000 | United States religious leader of the Mormon Church after the assassination of Joseph Smith; he led the Mormon exodus from Illinois to Salt Lake City, Utah (1801-1877) -11403456 18 n 03 Young 1 Cy_Young 0 Danton_True_Young 0 001 @i 09835506 n 0000 | United States baseball player and famous pitcher (1867-1955) -11403600 18 n 02 Young 2 Edward_Young 0 001 @i 10444194 n 0000 | English poet (1683-1765) -11403692 18 n 03 Young 3 Pres_Young 0 Lester_Willis_Young 0 001 @i 10554243 n 0000 | United States jazz tenor saxophonist (1909-1959) -11403828 18 n 02 Young 4 Thomas_Young 0 002 @i 10428004 n 0000 @i 10047822 n 0000 | British physicist and Egyptologist; he revived the wave theory of light and proposed a three-component theory of color vision; he also played an important role in deciphering the hieroglyphics on the Rosetta Stone (1773-1829) -11404140 18 n 03 Young 5 Whitney_Young 0 Whitney_Moore_Young_Jr. 0 001 @i 09924996 n 0000 | United States civil rights leader (1921-1971) -11404280 18 n 02 Young 6 Loretta_Young 0 001 @i 09767700 n 0000 | United States film and television actress (1913-2000) -11404402 18 n 02 Yukawa 0 Hideki_Yukawa 0 001 @i 10364643 n 0000 | Japanese mathematical physicist who proposed that nuclear forces are mediated by massive particles called mesons which are analogous to the photon in mediating electromagnetic forces (1907-1981) -11404666 18 n 06 Zaharias 0 Babe_Zaharias 0 Didrikson 0 Babe_Didrikson 0 Mildred_Ella_Didrikson 0 Mildred_Ella_Didrikson_Zaharias 0 001 @i 09820263 n 0000 | outstanding United States athlete (1914-1956) -11404871 18 n 02 Zangwill 0 Israel_Zangwill 0 001 @i 10794014 n 0000 | English writer (1864-1926) -11404971 18 n 03 Zanuck 0 Darryl_Zanuck 0 Darryl_Francis_Zanuck 0 001 @i 10088390 n 0000 | United States filmmaker whose works include the first full-length feature film with sound sequences (1902-1979) -11405176 18 n 02 Zapata 0 Emiliano_Zapata 0 001 @i 10527334 n 0000 | Mexican revolutionary who led a revolt for agrarian reforms (1879-1919) -11405319 18 n 02 Zechariah 0 Zacharias 0 001 @i 10483890 n 0000 | a Hebrew minor prophet of the late 6th century BC -11405437 18 n 02 Zeeman 0 Pieter_Zeeman 0 001 @i 10428004 n 0000 | Dutch physicist honored for his research on the influence of magnetism on radiation which showed that light is radiated by the motion of charged particles in an atom (1865-1943) -11405684 18 n 02 Zeno 1 Zeno_of_Citium 0 001 @i 10423589 n 0000 | ancient Greek philosopher who founded the Stoic school (circa 335-263 BC) -11405826 18 n 02 Zeno 2 Zeno_of_Elea 0 001 @i 10423589 n 0000 | ancient Greek philosopher who formulated paradoxes that defended the belief that motion and change are illusory (circa 495-430 BC) -11406023 18 n 02 Zephaniah 0 Sophonias 0 001 @i 10483890 n 0000 | a Hebrew minor prophet of the late 7th century BC -11406141 18 n 02 Zeppelin 0 Count_Ferdinand_von_Zeppelin 0 001 @i 10214637 n 0000 | German inventor who designed and built the first rigid motorized dirigible (1838-1917) -11406314 18 n 02 Zhou_En-lai 0 Chou_En-lai 0 002 @i 10527334 n 0000 @i 09945319 n 0000 | Chinese revolutionary and communist leader (1898-1976) -11406460 18 n 03 Zhukov 0 Georgi_Zhukov 0 Georgi_Konstantinovich_Zhukov 0 001 @i 10123844 n 0000 | Soviet general who during World Warr II directed the counteroffensive at Stalingrad and relieved Leningrad and captured Berlin (1896-1974) -11406700 18 n 03 Ziegfeld 0 Flo_Ziegfeld 0 Florenz_Ziegfeld 0 001 @i 10705448 n 0000 | United States theatrical producer noted for a series of extravagant revues known as the Ziegfeld Follies (1869-1932) -11406906 18 n 02 Ziegler 0 Karl_Waldemar_Ziegler 0 001 @i 09913824 n 0000 | German chemist honored for his research on polymers (1898-1973) -11407048 18 n 02 Zimbalist 0 Efrem_Zimbalist 0 001 @i 10754578 n 0000 | United States violinist (born in Russia) (1889-1985) -11407175 18 n 02 Zinnemann 0 Fred_Zinnemann 0 001 @i 10088390 n 0000 | United States filmmaker (born in Austria) (1907-1997) -11407302 18 n 02 Zinsser 0 Hans_Zinsser 0 001 @i 09831411 n 0000 | United States bacteriologist who helped develop immunization against typhus fever (1878-1940) -11407465 18 n 02 Zinzendorf 0 Count_Nikolaus_Ludwig_von_Zinzendorf 0 001 @i 10705615 n 0000 | German theologian (1700-1760) -11407591 18 n 02 Zola 0 Emile_Zola 0 001 @i 10363573 n 0000 | French novelist and critic; defender of Dreyfus (1840-1902) -11407715 18 n 02 Zoroaster 0 Zarathustra 0 002 @i 10483890 n 0000 + 02926708 a 0101 | Persian prophet who founded Zoroastrianism (circa 628-551 BC) -11407865 18 n 02 Zsigmondy 0 Richard_Adolph_Zsigmondy 0 001 @i 09913824 n 0000 | German chemist (born in Austria) honored for his research on colloidal solutions (1865-1929) -11408041 18 n 02 Zukerman 0 Pinchas_Zukerman 0 001 @i 10754578 n 0000 | Israeli violinist (born in 1948) -11408148 18 n 02 Zweig 0 Stefan_Zweig 0 001 @i 10794014 n 0000 | Austrian writer (1881-1942) -11408243 18 n 03 Zwingli 0 Ulrich_Zwingli 0 Huldreich_Zwingli 0 001 @i 10705615 n 0000 | Swiss theologian whose sermons began the Reformation in Switzerland (1484-1531) -11408414 18 n 02 Zworykin 0 Vladimir_Kosma_Zworykin 0 001 @i 10428004 n 0000 | United States physicist who invented the iconoscope (1889-1982) -11408559 19 n 01 natural_phenomenon 0 005 @ 00034213 n 0000 ~ 11409059 n 0000 ~ 11417672 n 0000 ~ 11418750 n 0000 ~ 11419404 n 0000 | all phenomena that are not artificial -11408733 19 n 01 levitation 0 003 @ 00034213 n 0000 + 01944466 v 0101 + 01944252 v 0101 | the phenomenon of a person or thing rising into the air by apparently supernatural means -11408914 19 n 02 metempsychosis 0 rebirth 0 001 @ 00034213 n 0000 | after death the soul begins a new cycle of existence in another human body -11409059 19 n 01 chemical_phenomenon 0 008 @ 11408559 n 0000 ;c 06084469 n 0000 ~ 11409329 n 0000 ~ 11409538 n 0000 ~ 11410298 n 0000 ~ 11436491 n 0000 ~ 11492833 n 0000 ~ 14479615 n 0000 | any natural phenomenon involving chemistry (as changes to atoms or molecules) -11409329 19 n 02 allotropy 0 allotropism 0 005 @ 11409059 n 0000 + 02613683 a 0202 + 02613683 a 0201 + 02613683 a 0102 + 02613683 a 0101 | the phenomenon of an element existing in two or more physical forms -11409538 19 n 01 exchange 0 002 @ 11409059 n 0000 ~ 11410023 n 0000 | chemical process in which one atom or ion or group changes places with another -11409689 19 n 02 photoconductivity 0 photoconduction 0 002 @ 11512650 n 0000 + 02827413 a 0101 | change in the electrical conductivity of a substance as a result of absorbing electromagnetic radiation -11409892 19 n 01 superconductivity 0 001 @ 11512650 n 0000 | the disappearance of electrical resistance at very low temperatures -11410023 19 n 01 photochemical_exchange 0 001 @ 11409538 n 0000 | an exchange produced by the chemical action of radiant energy (especially light) -11410172 19 n 01 photoemission 0 001 @ 13474290 n 0000 | an emission of photoelectrons (especially from a metallic surface) -11410298 19 n 03 crystallization 0 crystallisation 0 crystallizing 0 007 @ 11409059 n 0000 + 00445940 v 0301 + 00443670 v 0301 + 00445940 v 0202 + 00445940 v 0101 + 00443670 v 0101 ~ 11410527 n 0000 | the formation of crystals -11410527 19 n 02 efflorescence 0 bloom 0 001 @ 11410298 n 0000 | a powdery deposit on a surface -11410625 19 n 07 consequence 0 effect 0 outcome 0 result 0 event 1 issue 0 upshot 0 031 @ 00034213 n 0000 + 02611002 v 0501 + 02635659 v 0402 + 02634265 v 0401 + 02560767 v 0201 + 01642924 v 0202 + 00122844 a 0102 ~ 07295047 n 0000 ~ 11411501 n 0000 ~ 11411610 n 0000 ~ 11411839 n 0000 ~ 11412179 n 0000 ~ 11412334 n 0000 ~ 11412592 n 0000 ~ 11412727 n 0000 ~ 11412993 n 0000 ~ 11413263 n 0000 ~ 11413661 n 0000 ~ 11414041 n 0000 ~ 11414257 n 0000 ~ 11414411 n 0000 ~ 11414608 n 0000 ~ 11415608 n 0000 ~ 11415721 n 0000 ~ 11415842 n 0000 ~ 11416087 n 0000 ~ 11416534 n 0000 ~ 11416722 n 0000 ~ 11416988 n 0000 ~ 11417387 n 0000 ~ 11513880 n 0000 | a phenomenon that follows and is caused by some previous phenomenon; "the magnetic effect was greater when the rod was lengthwise"; "his decision had depressing consequences for business"; "he acted very wise after the event" -11411501 19 n 01 aftereffect 0 001 @ 11410625 n 0000 | any result that follows its cause after an interval -11411610 19 n 03 aftermath 0 wake 0 backwash 1 001 @ 11410625 n 0000 | the consequences of an event (especially a catastrophic event); "the aftermath of war"; "in the wake of the accident no one knew how many had been injured" -11411839 19 n 01 bandwagon_effect 0 001 @ 11410625 n 0000 | the phenomenon of a popular trend attracting even greater popularity; "in periods of high merger activity there is a bandwagon effect with more and more firms seeking to engage in takeover activity"; "polls are accused of creating a bandwagon effect to benefit their candidate" -11412179 19 n 01 brisance 0 002 @ 11410625 n 0000 + 02670899 a 0101 | the shattering or crushing effect of a sudden release of energy as in an explosion -11412334 19 n 01 butterfly_effect 0 001 @ 11410625 n 0000 | the phenomenon whereby a small change at one place in a complex system can have large effects elsewhere, e.g., a butterfly flapping its wings in Rio de Janeiro might change the weather in Chicago -11412592 19 n 02 by-product 0 byproduct 0 002 @ 11410625 n 0000 ~ 11453735 n 0000 | a secondary and sometimes unexpected consequence -11412727 19 n 01 change 0 005 @ 11410625 n 0000 + 00123170 v 0101 + 00126264 v 0101 + 00109660 v 0101 ~ 11492240 n 0000 | the result of alteration or modification; "there were marked changes in the lining of the lungs"; "there had been no change in the mountains" -11412993 19 n 01 coattails_effect 0 002 @ 11410625 n 0000 ;c 06148148 n 0000 | (politics) the consequence of one popular candidate in an election drawing votes for other members of the same political party; "he counted on the coattails effect to win him the election" -11413263 19 n 01 Coriolis_effect 0 002 @ 11410625 n 0000 ;c 06090869 n 0000 | (physics) an effect whereby a body moving in a rotating frame of reference experiences the Coriolis force acting perpendicular to the direction of motion and to the axis of rotation; on Earth the Coriolis effect deflects moving bodies to the right in the northern hemisphere and to the left in the southern hemisphere -11413661 19 n 01 dent 0 001 @ 11410625 n 0000 | an appreciable consequence (especially a lessening); "it made a dent in my bank account" -11413800 19 n 01 dominance 0 003 @ 11418750 n 0000 ;c 06075527 n 0000 + 00793793 a 0101 | the organic phenomenon in which one of a pair of alleles present in a genotype is expressed in the phenotype and the other allele of the pair is not -11414041 19 n 01 domino_effect 0 002 @ 11410625 n 0000 ;u 07105475 n 0000 | the consequence of one event setting off a chain of similar events (like a falling domino causing a whole row of upended dominos to fall) -11414257 19 n 01 harvest 0 001 @ 11410625 n 0000 | the consequence of an effort or activity; "they gathered a harvest of examples"; "a harvest of love" -11414411 19 n 02 impact 0 wallop 0 002 @ 11410625 n 0000 + 00137313 v 0102 | a forceful consequence; a strong effect; "the book had an important impact on my thinking"; "the book packs a wallop" -11414608 19 n 01 influence 0 008 @ 11410625 n 0000 + 01830134 a 0101 + 00776523 v 0102 + 00701040 v 0104 + 02536557 v 0101 ~ 11414874 n 0000 ~ 11415342 n 0000 ~ 11415492 n 0000 | the effect of one thing (or person) on another; "the influence of mechanical action" -11414874 19 n 01 perturbation 0 005 @ 11414608 n 0000 ;c 06090869 n 0000 + 02065652 v 0101 + 02065329 v 0101 ~ 11415084 n 0000 | (physics) a secondary influence on a system that causes it to deviate slightly -11415084 19 n 01 variation 0 005 @ 11414874 n 0000 ;c 06095022 n 0000 + 02662297 v 0101 + 02661252 v 0102 ~ 13507617 n 0000 | (astronomy) any perturbation of the mean motion or orbit of a planet or satellite (especially a perturbation of the earth's moon) -11415342 19 n 01 purchase 1 001 @ 11414608 n 0000 | a means of exerting influence or gaining advantage; "he could get no purchase on the situation" -11415492 19 n 01 wind 1 001 @ 11414608 n 0000 | a tendency or force that influences events; "the winds of change" -11415608 19 n 01 knock-on_effect 0 002 @ 11410625 n 0000 ;r 08860123 n 0000 | a secondary or incidental effect -11415721 19 n 04 outgrowth 0 branch 0 offshoot 0 offset 0 001 @ 11410625 n 0000 | a natural consequence of development -11415842 19 n 01 product 0 002 @ 11410625 n 0000 + 01752884 v 0101 | a consequence of someone's efforts or of a particular set of circumstances; "skill is the product of hours of practice"; "his reaction was the product of hunger and fatigue" -11416087 19 n 01 placebo_effect 0 001 @ 11410625 n 0000 | any effect that seems to be a consequence of administering a placebo; the change is usually beneficial and is assumed result from the person's faith in the treatment or preconceptions about what the experimental drug was supposed to do; pharmacologists were the first to talk about placebo effects but now the idea has been generalized to many situations having nothing to do with drugs -11416534 19 n 01 position_effect 0 002 @ 11410625 n 0000 ;c 06075527 n 0000 | (genetics) the effect on the expression of a gene that is produced by changing its location in a chromosome -11416722 19 n 02 repercussion 0 reverberation 0 003 @ 11410625 n 0000 + 02647918 v 0201 + 00137940 v 0101 | a remote or indirect consequence of some action; "his declaration had unforeseen repercussions"; "reverberations of the market crash were felt years later" -11416988 19 n 01 response 0 002 @ 11410625 n 0000 ~ 11417129 n 0000 | a result; "this situation developed in response to events in Africa" -11417129 19 n 01 reaction 1 002 @ 11416988 n 0000 + 00717358 v 0101 | a response that reveals a person's feelings or attitude; "he was pleased by the audience's reaction to his performance"; "John feared his mother's reaction when she saw the broken lamp" -11417387 19 n 02 side_effect 0 fallout 0 001 @ 11410625 n 0000 | any adverse and unwanted secondary effect; "a strategy to contain the fallout from the accounting scandal" -11417561 19 n 01 engine 0 001 @ 00007347 n 0000 | something used to achieve a purpose; "an engine of change" -11417672 19 n 01 geological_phenomenon 0 012 @ 11408559 n 0000 ;c 06115701 n 0000 ~ 07428954 n 0000 ~ 11418011 n 0000 ~ 11423471 n 0000 ~ 11434016 n 0000 ~ 11434448 n 0000 ~ 11445395 n 0000 ~ 11454591 n 0000 ~ 11461684 n 0000 ~ 11520435 n 0000 ~ 11524110 n 0000 | a natural phenomenon involving the structure or composition of the earth -11418011 19 n 01 endogeny 0 002 @ 11417672 n 0000 + 01331675 a 0102 | a geological phenomenon below the surface of the earth -11418138 19 n 04 luck 0 fortune 0 chance 0 hazard 0 005 @ 00034213 n 0000 + 00916909 v 0404 + 02594102 v 0301 ~ 11427842 n 0000 ~ 11519799 n 0000 | an unknown and unpredictable phenomenon that causes an event to result one way rather than another; "bad luck caused his downfall"; "we ran into each other by pure chance" -11418460 19 n 02 luck 1 fortune 1 004 @ 00034213 n 0000 + 01049210 a 0101 + 01468097 a 0101 ~ 11463746 n 0000 | an unknown and unpredictable phenomenon that leads to a favorable outcome; "it was my good luck to be there"; "they say luck is a lady"; "it was as if fortune guided his hand" -11418750 19 n 01 organic_phenomenon 0 030 @ 11408559 n 0000 ;c 06037666 n 0000 ~ 11413800 n 0000 ~ 11420376 n 0000 ~ 11424194 n 0000 ~ 11424816 n 0000 ~ 11429238 n 0000 ~ 11439031 n 0000 ~ 11443929 n 0000 ~ 11444117 n 0000 ~ 11444643 n 0000 ~ 11444816 n 0000 ~ 11445564 n 0000 ~ 11445753 n 0000 ~ 11446598 n 0000 ~ 11454042 n 0000 ~ 11455901 n 0000 ~ 11456083 n 0000 ~ 11456273 n 0000 ~ 11459907 n 0000 ~ 11466458 n 0000 ~ 11473291 n 0000 ~ 11473807 n 0000 ~ 11491816 n 0000 ~ 11492388 n 0000 ~ 11493266 n 0000 ~ 11502695 n 0000 ~ 11505318 n 0000 ~ 11505546 n 0000 ~ 11506549 n 0000 | (biology) a natural phenomenon involving living plants and animals -11419404 19 n 01 physical_phenomenon 0 034 @ 11408559 n 0000 ~ 11425401 n 0000 ~ 11425580 n 0000 ~ 11431191 n 0000 ~ 11434899 n 0000 ~ 11439690 n 0000 ~ 11444371 n 0000 ~ 11449002 n 0000 ~ 11449907 n 0000 ~ 11452079 n 0000 ~ 11452218 n 0000 ~ 11453016 n 0000 ~ 11453860 n 0000 ~ 11456760 n 0000 ~ 11458624 n 0000 ~ 11467318 n 0000 ~ 11478299 n 0000 ~ 11480698 n 0000 ~ 11490058 n 0000 ~ 11490638 n 0000 ~ 11495041 n 0000 ~ 11503060 n 0000 ~ 11503287 n 0000 ~ 11505769 n 0000 ~ 11505952 n 0000 ~ 11512818 n 0000 ~ 11512992 n 0000 ~ 11516113 n 0000 ~ 11517999 n 0000 ~ 11518330 n 0000 ~ 11520619 n 0000 ~ 11520989 n 0000 ~ 11527767 n 0000 ~ 11527967 n 0000 | a natural phenomenon involving the physical properties of matter and energy -11420139 19 n 03 aberration 0 distortion 0 optical_aberration 0 004 @ 11490638 n 0000 + 02661769 v 0101 ~ 11438904 n 0000 ~ 11513761 n 0000 | an optical phenomenon resulting from the failure of a lens or mirror to produce a good image -11420376 19 n 04 abiogenesis 0 autogenesis 0 autogeny 0 spontaneous_generation 0 004 @ 11418750 n 0000 + 02651816 a 0201 + 02599837 a 0101 + 09756400 n 0101 | a hypothetical organic phenomenon by which living organisms are created from nonliving matter -11420631 19 n 01 absorption_band 0 001 @ 11490638 n 0000 | a dark band in the spectrum of white light that has been transmitted through a substance that exhibits absorption at selective wavelengths -11420831 19 n 01 spectrum 0 016 @ 07939382 n 0000 + 02800132 a 0101 %p 06801138 n 0000 ~ 11421214 n 0000 ~ 11421618 n 0000 ~ 11426288 n 0000 ~ 11451442 n 0000 ~ 11451944 n 0000 ~ 11469691 n 0000 ~ 11475476 n 0000 ~ 11500679 n 0000 ~ 11500816 n 0000 ~ 11500968 n 0000 ~ 11510714 n 0000 ~ 11522325 n 0000 ~ 11523369 n 0000 | an ordered array of the components of an emission or wave -11421214 19 n 01 absorption_spectrum 0 001 @ 11420831 n 0000 | the spectrum of electromagnetic radiation that has passed through a medium that absorbed radiation of certain wavelengths -11421401 19 n 02 actinic_radiation 0 actinic_ray 0 005 @ 11450869 n 0000 #p 11451442 n 0000 ~ 11469481 n 0000 ~ 11473954 n 0000 ~ 11521940 n 0000 | electromagnetic radiation that can produce photochemical reactions -11421618 19 n 01 action_spectrum 0 001 @ 11420831 n 0000 | the efficiency with which electromagnetic radiation produces a photochemical reaction plotted as a function of the wavelength of the radiation -11421822 19 n 02 activation_energy 0 energy_of_activation 0 001 @ 11452218 n 0000 | the energy that an atomic system must acquire before a process (such as an emission or reaction) can occur; "catalysts are said to reduce the energy of activation during the transition phase of a reaction" -11422114 19 n 01 aerodynamic_force 0 002 @ 11458624 n 0000 ~ 11422277 n 0000 | forces acting on airfoils in motion relative to the air (or other gaseous fluids) -11422277 19 n 02 aerodynamic_lift 0 lift 0 002 @ 11422114 n 0000 ~ 11422446 n 0000 | the component of the aerodynamic forces acting on an airfoil that opposes gravity -11422446 19 n 01 ground_effect 0 001 @ 11422277 n 0000 | apparent increase in aerodynamic lift experienced by an aircraft flying close to the ground -11422597 19 n 01 aerosol 0 008 @ 11439690 n 0000 + 01377940 v 0101 + 01377758 v 0101 + 01377940 v 0102 + 01377758 v 0102 ~ 11458314 n 0000 ~ 11465888 n 0000 ~ 11508092 n 0000 | a cloud of solid or liquid particles in a gas -11422822 19 n 02 affinity 1 chemical_attraction 0 001 @ 11458624 n 0000 | the force attracting atoms to each other and binding them together in a molecule; "basic dyes have an affinity for wool and silk" -11423028 19 n 03 air_pocket 0 pocket 0 air_hole 0 001 @ 11425580 n 0000 | a local region of low pressure or descending air that causes a plane to lose height suddenly -11423197 19 n 05 slipstream 0 airstream 1 race 0 backwash 0 wash 0 001 @ 13482330 n 0000 | the flow of air that is driven backwards by an aircraft propeller -11423356 19 n 01 airstream 0 002 @ 11525955 n 0000 ~ 11470139 n 0000 | a relatively well-defined prevailing wind -11423471 19 n 02 alluvial_fan 0 alluvial_cone 0 001 @ 11417672 n 0000 | a fan-shaped deposit where a fast flowing stream flattens out -11423607 19 n 02 alpha_radiation 0 alpha_ray 0 002 @ 11499510 n 0000 @ 11437577 n 0000 | the radiation of alpha particles during radioactive decay -11423756 19 n 02 alpha_rhythm 0 alpha_wave 0 001 @ 11431302 n 0000 | the normal brainwave in the electroencephalogram of a person who is awake but relaxed; occurs with a frequency of 8-12 hertz -11423952 19 n 03 alternating_current 0 AC 0 alternating_electric_current 0 002 @ 11450566 n 0000 ! 11447153 n 0101 | an electric current that reverses direction sinusoidally; "In the US most household current is AC at 60 cycles per second" -11424194 19 n 03 alternation_of_generations 0 heterogenesis 0 xenogenesis 0 002 @ 11418750 n 0000 ~ 11424589 n 0000 | the alternation of two or more different forms in the life cycle of a plant or animal -11424400 19 n 01 alternative_energy 0 003 @ 11452218 n 0000 ~ 11509697 n 0000 ~ 11526894 n 0000 | energy derived from sources that do not use up natural resources or harm the environment -11424589 19 n 02 metagenesis 0 digenesis 0 001 @ 11424194 n 0000 | alternation of sexual and asexual generations -11424704 19 n 01 amperage 0 001 @ 11449002 n 0000 | the strength of an electrical current measured in amperes -11424816 19 n 02 annual_ring 0 growth_ring 0 001 @ 11418750 n 0000 | an annual formation of wood in plants as they grow -11424938 19 n 01 antitrades 0 001 @ 11497586 n 0000 | wind in the upper atmosphere blowing above but in the opposite direction from the trade winds -11425088 19 n 04 apparent_motion 0 motion 0 apparent_movement 0 movement 0 001 @ 11490463 n 0000 | an optical illusion of motion produced by viewing a rapid succession of still pictures of a moving object; "the cinema relies on apparent motion"; "the succession of flashing lights gave an illusion of movement" -11425401 19 n 01 acoustic_phenomenon 0 003 @ 11419404 n 0000 ~ 11511765 n 0000 ~ 11512331 n 0000 | a physical phenomenon associated with the production or transmission of sound -11425580 19 n 01 atmospheric_phenomenon 0 017 @ 11419404 n 0000 ~ 09247410 n 0000 ~ 11423028 n 0000 ~ 11427241 n 0000 ~ 11446242 n 0000 ~ 11460488 n 0000 ~ 11461268 n 0000 ~ 11461563 n 0000 ~ 11462526 n 0000 ~ 11476231 n 0000 ~ 11482579 n 0000 ~ 11487424 n 0000 ~ 11507000 n 0000 ~ 11517656 n 0000 ~ 11517776 n 0000 ~ 11517898 n 0000 ~ 11524662 n 0000 | a physical phenomenon associated with the atmosphere -11425989 19 n 02 atomic_energy 0 nuclear_energy 0 002 @ 11452218 n 0000 ~ 11426125 n 0000 | the energy released by a nuclear reaction -11426125 19 n 02 atomic_power 0 nuclear_power 0 001 @ 11425989 n 0000 | nuclear energy regarded as a source of electricity for the power grid (for civilian use) -11426288 19 n 01 atomic_spectrum 0 003 @ 11420831 n 0000 ;c 06090869 n 0000 %p 11457586 n 0000 | (physics) a spectrum of radiation caused by electron transitions within an atom; the series of spectrum lines is characteristic of the element -11426530 19 n 02 attraction 0 attractive_force 0 008 @ 11458624 n 0000 + 01350025 v 0101 ! 11426914 n 0101 ~ 11426778 n 0000 ~ 11436283 n 0000 ~ 11464143 n 0000 ~ 11479058 n 0000 ~ 11522815 n 0000 | the force by which one object attracts another -11426778 19 n 01 affinity 2 002 @ 11426530 n 0000 ;c 06051542 n 0000 | (immunology) the attraction between an antigen and an antibody -11426914 19 n 02 repulsion 0 repulsive_force 0 003 @ 11458624 n 0000 ! 11426530 n 0101 = 00170156 a 0000 | the force by which bodies repel one another -11427067 19 n 02 aureole 0 corona 0 002 @ 11463371 n 0000 #p 09371686 n 0000 | the outermost region of the sun's atmosphere; visible as a white halo during a solar eclipse -11427241 19 n 01 aurora 0 005 @ 11425580 n 0000 + 02649873 a 0101 ~ 11427501 n 0000 ~ 11427619 n 0000 %p 11515734 n 0000 | an atmospheric phenomenon consisting of bands of light caused by charged solar particles following the earth's magnetic lines of force -11427501 19 n 02 aurora_australis 0 southern_lights 0 001 @ 11427241 n 0000 | the aurora of the southern hemisphere -11427619 19 n 02 aurora_borealis 0 northern_lights 0 001 @ 11427241 n 0000 | the aurora of the northern hemisphere -11427736 19 n 01 autofluorescence 0 002 @ 11458102 n 0000 + 00270732 a 0101 | self-induced fluorescence -11427842 19 n 03 bad_luck 0 mischance 1 mishap 1 001 @ 11418138 n 0000 | an unpredictable outcome that is unfortunate; "if I didn't have bad luck I wouldn't have any luck at all" -11428023 19 n 08 beam 0 beam_of_light 0 light_beam 0 ray 0 ray_of_light 0 shaft 0 shaft_of_light 0 irradiation 0 011 @ 11473954 n 0000 + 00291757 v 0801 + 02768431 v 0401 + 00280463 a 0102 + 02763740 v 0102 ~ 11472503 n 0000 ~ 11472699 n 0000 ~ 11484861 n 0000 ~ 11485582 n 0000 ~ 11485681 n 0000 ~ 11485774 n 0000 | a column of light (as from a beacon) -11428379 19 n 03 beam 1 ray 1 electron_beam 0 004 @ 11450869 n 0000 + 00291444 v 0202 ~ 11428567 n 0000 ~ 11485907 n 0000 | a group of nearly parallel lines of electromagnetic radiation -11428567 19 n 01 cathode_ray 0 001 @ 11428379 n 0000 | a beam of electrons emitted by the cathode of an electrical discharge tube -11428699 19 n 03 beta_radiation 0 beta_ray 0 electron_radiation 0 002 @ 11499510 n 0000 @ 11437577 n 0000 | radiation of beta particles during radioactive decay -11428862 19 n 02 beta_rhythm 0 beta_wave 0 001 @ 11431302 n 0000 | the normal brainwave in the encephalogram of a person who is awake and alert; occurs with a frequency between 12 and 30 hertz -11429057 19 n 02 binding_energy 0 separation_energy 0 001 @ 11452218 n 0000 | the energy required to separate particles from a molecule or atom or nucleus; equals the mass defect -11429238 19 n 01 bioelectricity 0 002 @ 11418750 n 0000 ~ 11431302 n 0000 | electric phenomena in animals or plants -11429356 19 n 02 bise 0 bize 0 001 @ 11487950 n 0000 | a dry cold north wind in southeastern France -11429458 19 n 03 atmospheric_pressure 0 air_pressure 0 pressure 1 005 @ 11494935 n 0000 ~ 11495708 n 0000 ~ 11495822 n 0000 ~ 11495964 n 0000 ~ 11496157 n 0000 | the pressure exerted by the atmosphere -11429661 19 n 02 black-body_radiation 0 blackbody_radiation 0 001 @ 11450869 n 0000 | the electromagnetic radiation that would be radiated from an ideal black body; the distribution of energy in the radiated spectrum of a black body depends only on temperature and is determined by Planck's radiation law -11429968 19 n 01 blood_pressure 0 007 @ 14302005 n 0000 @ 11495041 n 0000 #p 11439031 n 0000 ~ 11430483 n 0000 ~ 11430659 n 0000 ~ 11430863 n 0000 ~ 11431058 n 0000 | the pressure of the circulating blood against the walls of the blood vessels; results from the systole of the left ventricle of the heart; sometimes measured for a quick evaluation of a person's health; "adult blood pressure is considered normal at 120/80 where the first number is the systolic pressure and the second is the diastolic pressure" -11430483 19 n 01 systolic_pressure 0 001 @ 11429968 n 0000 | the blood pressure (as measured by a sphygmomanometer) during the contraction of the left ventricle of the heart -11430659 19 n 01 diastolic_pressure 0 001 @ 11429968 n 0000 | the blood pressure (as measured by a sphygmomanometer) after the contraction of the heart while the chambers of the heart refill with blood -11430863 19 n 01 arterial_pressure 0 001 @ 11429968 n 0000 | the pressure of the circulating blood on the arteries; "arterial pressure is the product of cardiac output and vascular resistance" -11431058 19 n 01 venous_pressure 0 001 @ 11429968 n 0000 | the pressure exerted on the walls of the veins by the circulating blood -11431191 19 n 01 boundary_layer 0 001 @ 11419404 n 0000 | the layer of slower flow of a fluid past a surface -11431302 19 n 03 brainwave 0 brain_wave 0 cortical_potential 0 006 @ 11429238 n 0000 ;c 06081602 n 0000 ~ 11423756 n 0000 ~ 11428862 n 0000 ~ 11445187 n 0000 ~ 11518915 n 0000 | (neurophysiology) rapid fluctuations of voltage between parts of the cerebral cortex that are detectable with an electroencephalograph -11431617 19 n 02 calm_air 0 calm 0 002 @ 11525955 n 0000 #p 13850674 n 0000 | wind moving at less than 1 knot; 0 on the Beaufort scale -11431754 19 n 04 breeze 0 zephyr 0 gentle_wind 0 air 0 012 @ 11525955 n 0000 + 02508917 a 0402 + 00305225 a 0102 + 02769480 v 0101 ~ 11432155 n 0000 ~ 11432262 n 0000 ~ 11432387 n 0000 ~ 11432508 n 0000 ~ 11432632 n 0000 ~ 11432758 n 0000 ~ 11432887 n 0000 ~ 11433013 n 0000 | a slight wind (usually refreshing); "the breeze was cooled by the lake"; "as he waited he could feel the air on his neck" -11432155 19 n 01 sea_breeze 0 001 @ 11431754 n 0000 | a cooling breeze from the sea (during the daytime) -11432262 19 n 01 breath 0 001 @ 11431754 n 0000 | a slight movement of the air; "there wasn't a breath of air in the room" -11432387 19 n 01 light_air 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 1-3 knots; 1 on the Beaufort scale -11432508 19 n 01 light_breeze 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 4-7 knots; 2 on the Beaufort scale -11432632 19 n 01 gentle_breeze 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 8-12 knots; 3 on the Beaufort scale -11432758 19 n 01 moderate_breeze 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 13-18 knots; 4 on the Beaufort scale -11432887 19 n 01 fresh_breeze 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 19-24 knots; 5 on the Beaufort scale -11433013 19 n 01 strong_breeze 0 002 @ 11431754 n 0000 #p 13850674 n 0000 | wind moving 25-31 knots; 6 on the Beaufort scale -11433140 19 n 03 Brownian_movement 0 Brownian_motion 0 pedesis 0 001 @ 07309781 n 0000 | the random motion of small particles suspended in a gas or liquid -11433297 19 n 01 brush_discharge 0 001 @ 11511523 n 0000 | discharge between electrodes creating visible streamers of ionized particles -11433435 19 n 02 candlelight 0 candle_flame 0 001 @ 11473954 n 0000 | the light provided by a burning candle -11433546 19 n 03 capacitance 0 electrical_capacity 0 capacity 0 001 @ 11449002 n 0000 | an electrical phenomenon whereby an electric charge is stored -11433698 19 n 02 elastance 0 electrical_elastance 0 001 @ 11449002 n 0000 | the reciprocal of capacitance -11433806 19 n 02 capillarity 0 capillary_action 0 002 @ 11517999 n 0000 + 02412880 a 0101 | a phenomenon associated with surface tension and resulting in the elevation or depression of liquids in capillaries -11434016 19 n 02 catastrophe 0 cataclysm 0 002 @ 11417672 n 0000 ~ 11434150 n 0000 | a sudden violent change in the earth's surface -11434150 19 n 01 nuclear_winter 0 001 @ 11434016 n 0000 | a long period of darkness and extreme cold that scientists predict would follow a full-scale nuclear war; a layer of dust and smoke in the atmosphere would cover the earth and block the rays of the sun; most living organisms would perish -11434448 19 n 01 continental_drift 0 001 @ 11417672 n 0000 | the gradual movement and formation of continents (as described by plate tectonics) -11434594 19 n 01 centrifugal_force 0 002 @ 11458624 n 0000 ! 11434747 n 0101 | the outward force on a body moving in a curved path around another body -11434747 19 n 01 centripetal_force 0 002 @ 11458624 n 0000 ! 11434594 n 0101 | the inward force on a body moving in a curved path around another body -11434899 19 n 01 chaos 0 001 @ 11419404 n 0000 | the formless and disordered state of matter before the creation of the cosmos -11435028 19 n 02 charge 0 electric_charge 0 006 @ 11449002 n 0000 + 00518115 v 0101 + 00517847 v 0101 ~ 11435358 n 0000 ~ 11435871 n 0000 ~ 11436019 n 0000 | the quantity of unbalanced electricity in a body (either positive or negative) and construed as an excess or deficiency of electrons; "the battery needed a fresh charge" -11435358 19 n 01 electrostatic_charge 0 001 @ 11435028 n 0000 | the electric charge at rest on the surface of an insulated body (which establishes and adjacent electrostatic field) -11435541 19 n 01 electrostatic_field 0 001 @ 11449658 n 0000 | electric field associated with static electric charges -11435661 19 n 01 pyroelectricity 0 003 @ 11449002 n 0000 + 03106005 a 0102 + 03106005 a 0101 | generation of an electric charge on certain crystals (such as tourmaline) as a result of a change in temperature -11435871 19 n 01 positive_charge 0 002 @ 11435028 n 0000 ! 11436019 n 0101 | having a deficiency of electrons; having a higher electric potential -11436019 19 n 01 negative_charge 0 002 @ 11435028 n 0000 ! 11435871 n 0101 | having a surplus of electrons; having a lower electric potential -11436163 19 n 01 chatter_mark 0 001 @ 13475538 n 0000 | marks on a glaciated rock caused by the movement of a glacier -11436283 19 n 02 chemical_bond 0 bond 0 007 @ 11426530 n 0000 ~ 11436748 n 0000 ~ 11436929 n 0000 ~ 11437111 n 0000 ~ 11437344 n 0000 ~ 11438105 n 0000 ~ 11438260 n 0000 | an electrical force linking atoms -11436491 19 n 01 valency 0 001 @ 11409059 n 0000 | the phenomenon of forming chemical bonds -11436585 19 n 01 cohesion 0 002 @ 11458624 n 0000 ;c 06090869 n 0000 | (physics) the intermolecular force that holds together the molecules in a solid or liquid -11436748 19 n 01 covalent_bond 0 003 @ 11436283 n 0000 ~ 11437823 n 0000 ~ 11437957 n 0000 | a chemical bond that involves sharing a pair of electrons between atoms in a molecule -11436929 19 n 02 cross-link 0 cross-linkage 0 003 @ 11436283 n 0000 + 01291527 v 0201 + 01291527 v 0101 | a side bond that links two adjacent chains of atoms in a complex molecule -11437111 19 n 01 hydrogen_bond 0 001 @ 11436283 n 0000 | a chemical bond consisting of a hydrogen atom between two electronegative atoms (e.g., oxygen or nitrogen) with one side be a covalent bond and the other being an ionic bond -11437344 19 n 03 ionic_bond 0 electrovalent_bond 0 electrostatic_bond 0 001 @ 11436283 n 0000 | a chemical bond in which one atom loses an electron to form a positive ion and the other atom gains an electron to form a negative ion -11437577 19 n 01 ionizing_radiation 0 006 @ 11499284 n 0000 ~ 11423607 n 0000 ~ 11428699 n 0000 ~ 11441707 n 0000 ~ 11487298 n 0000 ~ 11527177 n 0000 | high-energy radiation capable of producing ionization in substances through which it passes -11437823 19 n 01 double_bond 0 001 @ 11436748 n 0000 | a covalent bond in which two pairs of electrons are shared between two atoms -11437957 19 n 02 coordinate_bond 0 dative_bond 0 001 @ 11436748 n 0000 | a covalent bond in which both electrons are provided by one of the atoms -11438105 19 n 01 metallic_bond 0 001 @ 11436283 n 0000 | a chemical bond in which electrons are shared over many nuclei and electronic conduction occurs -11438260 19 n 02 peptide_bond 0 peptide_linkage 0 001 @ 11436283 n 0000 | the primary linkage of all protein structures; the chemical bond between the carboxyl groups and amino groups that unites a peptide -11438468 19 n 01 chemical_energy 0 001 @ 11452218 n 0000 | that part of the energy in a substance that can be released by a chemical reaction -11438612 19 n 03 chinook 0 chinook_wind 0 snow_eater 0 001 @ 11525955 n 0000 | a warm dry wind blowing down the eastern slopes of the Rockies -11438756 19 n 01 harmattan 0 001 @ 11525955 n 0000 | a dusty wind from the Sahara that blows toward the western coast of Africa during the winter -11438904 19 n 01 chromatic_aberration 0 001 @ 11420139 n 0000 | an optical aberration in which the image has colored fringes -11439031 19 n 01 circulation 0 008 @ 11418750 n 0000 + 02042843 v 0101 + 02042404 v 0101 + 00270005 v 0103 %p 11429968 n 0000 ~ 11439312 n 0000 ~ 11439446 n 0000 ~ 11439566 n 0000 | movement through a circuit; especially the movement of blood through the heart and blood vessels -11439312 19 n 01 systemic_circulation 0 001 @ 11439031 n 0000 | circulation that supplies blood to all the body except to the lungs -11439446 19 n 01 pulmonary_circulation 0 001 @ 11439031 n 0000 | circulation of blood between the heart and the lungs -11439566 19 n 01 vitelline_circulation 0 001 @ 11439031 n 0000 | circulation of blood between the embryo and the yolk sac -11439690 19 n 01 cloud 1 007 @ 11419404 n 0000 ~ 09251002 n 0000 ~ 09366940 n 0000 ~ 11422597 n 0000 ~ 11441416 n 0000 ~ 11441980 n 0000 ~ 11442073 n 0000 | any collection of particles (e.g., smoke or dust) or gases that is visible -11439924 19 n 01 cold_wave 0 001 @ 11524451 n 0000 | a wave of unusually cold weather -11440012 19 n 01 cold_weather 0 002 @ 11524662 n 0000 ~ 11440521 n 0000 | a period of unusually cold weather -11440123 19 n 01 Coriolis_force 0 002 @ 11458624 n 0000 ;c 06090869 n 0000 | (physics) a force due to the earth's rotation; acts on a body in motion (airplane or projectile) in a rotating reference frame; in a rotating frame of reference Newton's second law of motion can be made to apply if in addition to the real forces acting on a body a Coriolis force and a centrifugal force are introduced -11440521 19 n 02 freeze 0 frost 0 005 @ 11440012 n 0000 + 01252714 a 0202 + 00196595 v 0201 + 02758826 v 0101 + 00078138 v 0101 | weather cold enough to cause freezing -11440691 19 n 01 corona 2 001 @ 11473954 n 0000 | one or more circles of light seen around a luminous object -11440802 19 n 09 corona_discharge 0 corona 1 corposant 0 St._Elmo's_fire 0 Saint_Elmo's_fire 0 Saint_Elmo's_light 0 Saint_Ulmo's_fire 0 Saint_Ulmo's_light 0 electric_glow 0 001 @ 11511523 n 0000 | an electrical discharge accompanied by ionization of surrounding atmosphere -11441077 19 n 06 cosmic_background_radiation 0 CBR 0 cosmic_microwave_background_radiation 0 CMBR 0 cosmic_microwave_background 0 CMB 0 002 @ 11441561 n 0000 ;c 06098195 n 0000 | (cosmology) the cooled remnant of the hot big bang that fills the entire universe and can be observed today with an average temperature of about 2.725 kelvin -11441416 19 n 01 cosmic_dust 0 002 @ 11439690 n 0000 #s 08271042 n 0000 | clouds of particles or gases occurring throughout interstellar space -11441561 19 n 01 cosmic_radiation 0 003 @ 11499284 n 0000 ~ 11441077 n 0000 %p 11441707 n 0000 | radiation coming from outside the solar system -11441707 19 n 01 cosmic_ray 0 002 @ 11437577 n 0000 #p 11441561 n 0000 | highly penetrating ionizing radiation of extraterrestrial origin; consisting chiefly of protons and alpha particles; collision with atmospheric particles results in rays and particles of many kinds -11441980 19 n 01 dust_cloud 0 001 @ 11439690 n 0000 | a cloud of dust suspended in the air -11442073 19 n 03 mushroom 0 mushroom_cloud 0 mushroom-shaped_cloud 0 001 @ 11439690 n 0000 | a large cloud of rubble and dust shaped like a mushroom and rising into the sky after an explosion (especially of a nuclear bomb) -11442298 19 n 02 counterglow 0 gegenschein 0 001 @ 11473954 n 0000 | a faint spot of light in the night sky that appears directly opposite the position of the sun; a reflection of sunlight by micrometeoric material in space -11442524 19 n 01 crosswind 0 001 @ 11525955 n 0000 | wind blowing across the path of a ship or aircraft -11442630 19 n 02 fohn 0 foehn 0 001 @ 11525955 n 0000 | a warm dry wind that blows down the northern slopes of the Alps -11442752 19 n 01 khamsin 0 001 @ 11525955 n 0000 | an oppressively hot southerly wind from the Sahara that blows across Egypt in the spring -11442894 19 n 01 Santa_Ana 0 001 @ 11525955 n 0000 | a strong hot dry wind that blows in winter from the deserts of southern California toward the Pacific Coast -11443057 19 n 01 high_wind 0 001 @ 11525955 n 0000 | a very strong wind; "rain and high winds covered the region" -11443173 19 n 01 headwind 0 001 @ 11525955 n 0000 | wind blowing opposite to the path of a ship or aircraft -11443283 19 n 02 katabatic_wind 0 catabatic_wind 0 001 @ 11525955 n 0000 | a wind caused by the downward motion of cold air -11443409 19 n 01 tailwind 0 001 @ 11525955 n 0000 | wind blowing in the same direction as the path of a ship or aircraft -11443532 19 n 02 current 1 electric_current 0 003 @ 11449002 n 0000 ~ 11470348 n 0000 ~ 11518743 n 0000 | a flow of electricity through a conductor; "the current was measured in amperes" -11443721 19 n 01 cyclone 0 008 @ 11527014 n 0000 + 03058223 a 0101 + 03057949 a 0101 + 03057949 a 0102 + 03057949 a 0103 ~ 11467018 n 0000 ~ 11519450 n 0000 ~ 11521145 n 0000 | a violent rotating windstorm -11443929 19 n 02 cyclosis 0 streaming 0 001 @ 11418750 n 0000 | the circulation of cytoplasm within a cell -11444038 19 n 01 daylight 0 001 @ 11473954 n 0000 | light during the daytime -11444117 19 n 01 death 0 006 @ 11418750 n 0000 + 00358431 v 0101 + 02109818 v 0101 ~ 11486178 n 0000 ~ 11486708 n 0000 ~ 11487078 n 0000 | the permanent end of all life functions in an organism or part of an organism; "the animal died a painful death" -11444371 19 n 01 decalescence 0 002 @ 11419404 n 0000 + 00872715 a 0101 | phenomenon that occurs when a metal is being heated and there is a sudden slowing in the rate of temperature increase; slowing is caused by a change in the internal crystal structure of the metal -11444643 19 n 02 decay 0 decomposition 0 005 @ 11418750 n 0000 + 01332285 a 0201 + 00209837 v 0201 + 00552815 v 0101 + 00208836 v 0101 | the organic phenomenon of rotting -11444816 19 n 01 dehiscence 0 006 @ 11418750 n 0000 ;c 06037666 n 0000 + 00702773 a 0101 + 00308105 v 0101 = 00702773 a 0000 = 00702962 a 0000 | (biology) release of material by splitting open of an organ or tissue; the natural bursting open at maturity of a fruit or other reproductive body to release seeds or spores or the bursting open of a surgically closed wound -11445187 19 n 02 delta_rhythm 0 delta_wave 0 001 @ 11431302 n 0000 | the normal brainwave in the encephalogram of a person in deep dreamless sleep; occurs with high voltage and low frequency (1 to 4 hertz) -11445395 19 n 03 deposit 0 sedimentation 0 alluviation 0 003 @ 11417672 n 0000 + 01988755 v 0201 ~ 11446067 n 0000 | the phenomenon of sediment or gravel accumulating -11445564 19 n 03 desquamation 0 peeling 0 shedding 0 003 @ 11418750 n 0000 + 01259951 v 0202 + 00009492 v 0101 | loss of bits of outer skin by peeling or shedding or coming off in scales -11445753 19 n 01 exfoliation 0 004 @ 11418750 n 0000 + 01260159 v 0101 + 01263336 v 0101 + 01513838 v 0101 | the peeling off in flakes or scales of bark or dead skin; "exfoliation is increased by sunburn" -11445960 19 n 02 mother_lode 0 champion_lode 0 001 @ 11446067 n 0000 | the main vein of ore in a deposit -11446067 19 n 02 lode 0 load 0 002 @ 11445395 n 0000 ~ 11445960 n 0000 | a deposit of valuable ore occurring within definite boundaries separating it from surrounding rocks -11446242 19 n 02 condensation 0 condensate 0 006 @ 11425580 n 0000 + 00366275 v 0201 + 00364868 v 0201 + 00366275 v 0101 ~ 11446459 n 0000 ~ 14834132 n 0000 | atmospheric moisture that has condensed because of cold -11446459 19 n 01 sweat 0 001 @ 11446242 n 0000 | condensation of moisture on a cold surface; "the cold glasses were streaked with sweat" -11446598 19 n 01 diapedesis 0 001 @ 11418750 n 0000 | passage of blood cells (especially white blood cells) through intact capillary walls and into the surrounding tissue -11446771 19 n 01 dichroism 0 001 @ 11491619 n 0000 | pleochroism of a crystal so that it exhibits two different colors when viewed from two different directions -11446934 19 n 01 diffraction 0 003 @ 11490638 n 0000 + 02029805 v 0101 ~ 11527386 n 0000 | when light passes sharp edges or goes through narrow slits the rays are deflected and produce fringes of light and dark bands -11447153 19 n 03 direct_current 0 DC 0 direct_electric_current 0 002 @ 11450566 n 0000 ! 11423952 n 0101 | an electric current that flows in one direction steadily -11447319 19 n 01 signal 0 002 @ 11450566 n 0000 ~ 11447532 n 0000 | an electric quantity (voltage or current or field strength) whose modulation represents coded information about the source from which it comes -11447532 19 n 01 interrupt 0 001 @ 11447319 n 0000 | a signal that temporarily stops the execution of a program so that another procedure can be carried out -11447691 19 n 01 doldrums 0 001 @ 11525955 n 0000 | a belt of calms and light winds between the northern and southern trade winds of the Atlantic and Pacific -11447851 19 n 03 drift 0 impetus 0 impulsion 0 004 @ 11458624 n 0000 + 01650425 v 0301 + 01874875 v 0101 + 01902783 v 0102 | a force that moves something along -11448013 19 n 01 dust_devil 0 001 @ 11525779 n 0000 | a miniature whirlwind strong enough to whip dust and leaves and litter into the air -11448153 19 n 04 dust_storm 0 duster 0 sandstorm 0 sirocco 0 001 @ 11527014 n 0000 | a windstorm that lifts up clouds of dust or sand; "it was the kind of duster not experienced in years" -11448343 19 n 03 east_wind 0 easter 0 easterly 0 003 @ 11525955 n 0000 + 00823665 a 0201 ~ 11473033 n 0000 | a wind from the east -11448475 19 n 02 northwest_wind 0 northwester 0 002 @ 11525955 n 0000 + 01602112 a 0201 | a wind from the northwest -11448593 19 n 02 southwester 0 sou'wester 0 002 @ 11525955 n 0000 + 01604000 a 0101 | a strong wind from the southwest -11448714 19 n 02 southeaster 0 sou'easter 0 002 @ 11525955 n 0000 + 01603649 a 0101 | a strong wind from the southeast -11448835 19 n 02 elastic_energy 0 elastic_potential_energy 0 001 @ 11494472 n 0000 | potential energy that is stored when a body is deformed (as in a coiled spring) -11449002 19 n 01 electrical_phenomenon 0 018 @ 11419404 n 0000 ~ 11424704 n 0000 ~ 11433546 n 0000 ~ 11433698 n 0000 ~ 11435028 n 0000 ~ 11435661 n 0000 ~ 11443532 n 0000 ~ 11449784 n 0000 ~ 11468172 n 0000 ~ 11493827 n 0000 ~ 11503813 n 0000 ~ 11503968 n 0000 ~ 11504313 n 0000 ~ 11504750 n 0000 ~ 11507797 n 0000 ~ 11511765 n 0000 ~ 11514288 n 0000 ~ 11523538 n 0000 | a physical phenomenon involving electricity -11449419 19 n 03 electrical_power 0 electric_power 0 wattage 0 002 @ 11453016 n 0000 ~ 11449561 n 0000 | the product of voltage and current -11449561 19 n 01 load 1 001 @ 11449419 n 0000 | the power output of a generator or power plant -11449658 19 n 01 electric_field 0 002 @ 11456760 n 0000 ~ 11435541 n 0000 | a field of force surrounding a charged particle -11449784 19 n 01 dielectric_heating 0 001 @ 11449002 n 0000 | heating of an insulator by a high-frequency electric field -11449907 19 n 01 electricity 0 023 @ 11419404 n 0000 + 02826877 a 0101 + 00506040 v 0101 + 00505802 v 0101 -c 00358392 a 0000 -c 00763633 a 0000 -c 00763767 a 0000 -c 01829652 a 0000 -c 01829980 a 0000 -c 02748421 a 0000 -c 02827160 a 0000 -c 02888295 a 0000 -c 00339907 n 0000 -c 00365329 n 0000 -c 03462747 n 0000 -c 03860569 n 0000 ~ 11450453 n 0000 ~ 11467202 n 0000 ~ 11491194 n 0000 ~ 11491308 n 0000 ~ 11514462 n 0000 ~ 11514559 n 0000 ~ 11514672 n 0000 | a physical phenomenon associated with stationary or moving electrons and protons -11450453 19 n 01 galvanism 0 002 @ 11449907 n 0000 + 02827160 a 0102 | electricity produced by chemical action -11450566 19 n 02 electricity 1 electrical_energy 0 007 @ 11452218 n 0000 + 02826877 a 0101 + 00506040 v 0101 + 00505802 v 0101 ~ 11423952 n 0000 ~ 11447153 n 0000 ~ 11447319 n 0000 | energy made available by the flow of electric charge through a conductor; "they built a car that runs on electricity" -11450869 19 n 03 electromagnetic_radiation 0 electromagnetic_wave 0 nonparticulate_radiation 0 011 @ 11499284 n 0000 %p 09391223 n 0000 ~ 11421401 n 0000 ~ 11428379 n 0000 ~ 11429661 n 0000 ~ 11451310 n 0000 ~ 11463073 n 0000 ~ 11474637 n 0000 ~ 11482312 n 0000 ~ 11499817 n 0000 ~ 11527177 n 0000 | radiation consisting of waves of energy associated with electric and magnetic fields resulting from the acceleration of an electric charge -11451310 19 n 01 Hertzian_wave 0 001 @ 11450869 n 0000 | an electromagnetic wave generated by oscillations in an electric circuit -11451442 19 n 01 electromagnetic_spectrum 0 021 @ 11420831 n 0000 %p 05056490 n 0000 %p 05057163 n 0000 %p 05057275 n 0000 %p 05057382 n 0000 %p 05057485 n 0000 %p 05057593 n 0000 %p 05057695 n 0000 %p 05057805 n 0000 %p 05057917 n 0000 %p 05058025 n 0000 %p 11421401 n 0000 %p 11463073 n 0000 %p 11469691 n 0000 %p 11473954 n 0000 %p 11474637 n 0000 %p 11482312 n 0000 %p 11500816 n 0000 %p 11500968 n 0000 %p 11522325 n 0000 %p 11523369 n 0000 | the entire frequency range of electromagnetic waves -11451944 19 n 01 emission_spectrum 0 001 @ 11420831 n 0000 | spectrum of electromagnetic radiation emitted by a self-luminous source -11452079 19 n 01 energy 1 001 @ 11419404 n 0000 | any source of usable power; "the DOE is responsible for maintaining the energy policy" -11452218 19 n 02 energy 0 free_energy 0 017 @ 11419404 n 0000 ;c 06090869 n 0000 + 00559102 v 0102 + 00022686 v 0104 ~ 11421822 n 0000 ~ 11424400 n 0000 ~ 11425989 n 0000 ~ 11429057 n 0000 ~ 11438468 n 0000 ~ 11450566 n 0000 ~ 11452750 n 0000 ~ 11453210 n 0000 ~ 11453420 n 0000 ~ 11466043 n 0000 ~ 11482013 n 0000 ~ 11499091 n 0000 ~ 11499284 n 0000 | (physics) a thermodynamic quantity equivalent to the capacity of a physical system to do work; the units of energy are joules or ergs; "energy can take a wide variety of forms" -11452750 19 n 02 energy_level 0 energy_state 0 001 @ 11452218 n 0000 | a definite stable energy that a physical system can have; used especially of the state of electrons in atoms or molecules; "according to quantum theory only certain energy levels are possible" -11453016 19 n 01 power 0 005 @ 11419404 n 0000 ;c 06090869 n 0000 + 01181559 v 0101 ~ 11449419 n 0000 ~ 11524213 n 0000 | (physics) the rate of doing work; measured in watts (= joules/second) -11453210 19 n 01 rest_energy 0 001 @ 11452218 n 0000 | the energy equivalent to the mass of a particle at rest in an inertial frame of reference; equal to the rest mass times the square of the speed of light -11453420 19 n 01 work 0 002 @ 11452218 n 0000 ;c 06090869 n 0000 | (physics) a manifestation of energy; the transfer of energy from one physical system to another expressed as the product of a force and the distance through which it moves a body in the direction of that force; "work equals force times distance" -11453735 19 n 01 epiphenomenon 0 001 @ 11412592 n 0000 | a secondary phenomenon that is a by-product of another phenomenon -11453860 19 n 01 event 0 002 @ 11419404 n 0000 ;c 06106502 n 0000 | a phenomenon located at a single point in space-time; the fundamental observational entity in relativity theory -11454042 19 n 01 facilitation 0 003 @ 11418750 n 0000 ;c 06081602 n 0000 + 01757338 v 0101 | (neurophysiology) phenomenon that occurs when two or more neural impulses that alone are not enough to trigger a response in a neuron combine to trigger an action potential -11454310 19 n 01 flare 1 001 @ 11503060 n 0000 | am unwanted reflection in an optical system (or the fogging of an image that is caused by such a reflection) -11454470 19 n 01 flashover 0 001 @ 11511523 n 0000 | an unintended electric discharge (as over or around an insulator) -11454591 19 n 04 flood 0 inundation 0 deluge 1 alluvion 0 010 @ 11417672 n 0000 + 00217700 v 0302 + 01524523 v 0203 + 00217700 v 0201 + 00452220 v 0101 + 00217152 v 0101 + 01524523 v 0102 ~ 11454953 n 0000 ~ 11455092 n 0000 ~ 11455386 n 0000 | the rising of a body of water and its overflowing onto normally dry land; "plains fertilized by annual inundations" -11454953 19 n 01 debacle 0 001 @ 11454591 n 0000 | flooding caused by a tumultuous breakup of ice in a river during the spring or summer -11455092 19 n 02 flash_flood 0 flashflood 0 002 @ 11454591 n 0000 ~ 11455236 n 0000 | a sudden local flood of great volume and short duration -11455236 19 n 01 floodhead 0 001 @ 11455092 n 0000 | a wall of water rushing ahead of the flood; "we were lucky to be safe when the floodheads hit" -11455386 19 n 04 Noah's_flood 0 Noachian_deluge 0 Noah_and_the_Flood 0 the_Flood 0 002 @ 11454591 n 0000 ;c 06431740 n 0000 | (Biblical) the great deluge that is said in the Book of Genesis to have occurred in the time of Noah; it was brought by God upon the earth because of the wickedness of human beings -11455695 19 n 02 focus 0 focal_point 0 004 @ 08620061 n 0000 + 02881438 a 0101 + 00314782 v 0101 + 02161922 v 0101 | a point of convergence of light (or other radiation) or a point from which it diverges -11455901 19 n 01 food_chain 0 003 @ 11418750 n 0000 #p 11456273 n 0000 ;c 06070929 n 0000 | (ecology) a community of organisms where each member is eaten in turn by another member -11456083 19 n 01 food_pyramid 0 002 @ 11418750 n 0000 ;c 06070929 n 0000 | (ecology) a hierarchy of food chains with the principal predator at the top; each level preys on the level below -11456273 19 n 02 food_web 0 food_cycle 0 003 @ 11418750 n 0000 ;c 06070929 n 0000 %p 11455901 n 0000 | (ecology) a community of organisms where there are several interrelated food chains -11456462 19 n 03 fair_weather 0 sunshine 1 temperateness 0 002 @ 11524662 n 0000 + 02402559 a 0301 | moderate weather; suitable for outdoor activities -11456615 19 n 01 fata_morgana 0 001 @ 11484375 n 0000 | a mirage in the Strait of Messina (attributed to the Arthurian sorcerer Morgan le Fay) -11456760 19 n 03 field 0 field_of_force 0 force_field 0 005 @ 11419404 n 0000 ~ 11449658 n 0000 ~ 11464027 n 0000 ~ 11477384 n 0000 ~ 11477582 n 0000 | the space around a radiating body within which its electromagnetic oscillations can exert force on another similar body not in contact with it -11457057 19 n 02 line_of_force 0 field_line 0 003 @ 08593262 n 0000 ~ 11457283 n 0000 ~ 11457392 n 0000 | an imaginary line in a field of force; direction of the line at any point is the direction of the force at that point -11457283 19 n 01 electrical_line_of_force 0 001 @ 11457057 n 0000 | a line of force in an electrical field -11457392 19 n 01 magnetic_line_of_force 0 001 @ 11457057 n 0000 | a line of force in a magnetic field -11457496 19 n 01 fine_spray 0 001 @ 11494638 n 0000 | precipitation in very small drops -11457586 19 n 01 fine_structure 0 002 @ 06801138 n 0000 #p 11426288 n 0000 | the presence of groups of closely spaced spectrum lines observed in the atomic spectrum of certain elements; "the fine structure results from slightly different energy levels" -11457841 19 n 01 firelight 0 001 @ 11473954 n 0000 | the light of a fire (especially in a fireplace) -11457944 19 n 01 firestorm 0 001 @ 11462526 n 0000 | a storm in which violent winds are drawn into the column of hot air rising over a severely bombed area -11458102 19 n 01 fluorescence 0 005 @ 11473954 n 0000 + 00271419 a 0101 + 02161160 v 0101 ~ 11427736 n 0000 ~ 11491026 n 0000 | light emitted during absorption of radiation of some other (invisible) wavelength -11458314 19 n 01 fog 0 006 @ 11422597 n 0000 + 00461609 a 0102 ~ 11458514 n 0000 ~ 11467543 n 0000 ~ 11482706 n 0000 ~ 11490934 n 0000 | droplets of water vapor suspended in the air near the ground -11458514 19 n 01 fogbank 0 001 @ 11458314 n 0000 | a large mass of fog on the sea (as seen from a distance) -11458624 19 n 01 force 0 024 @ 11419404 n 0000 ;c 06090869 n 0000 + 01448100 v 0103 + 01350449 v 0101 + 01871979 v 0102 ~ 11422114 n 0000 ~ 11422822 n 0000 ~ 11426530 n 0000 ~ 11426914 n 0000 ~ 11434594 n 0000 ~ 11434747 n 0000 ~ 11436585 n 0000 ~ 11440123 n 0000 ~ 11447851 n 0000 ~ 11475682 n 0000 ~ 11482985 n 0000 ~ 11497777 n 0000 ~ 11498040 n 0000 ~ 11498203 n 0000 ~ 11498461 n 0000 ~ 11514805 n 0000 ~ 11519702 n 0000 ~ 11523736 n 0000 ~ 11523839 n 0000 | (physics) the influence that produces a change in a physical quantity; "force equals mass times acceleration" -11459200 19 n 02 forked_lightning 0 chain_lightning 0 001 @ 11475279 n 0000 | a form of lightning that moves rapidly in a zigzag path with one end divided (fork-like) -11459369 19 n 04 friar's_lantern 0 ignis_fatuus 0 jack-o'-lantern 0 will-o'-the-wisp 0 001 @ 11473954 n 0000 | a pale light sometimes seen at night over marshy ground -11459538 19 n 02 friction 0 rubbing 0 005 @ 11503644 n 0000 + 01250908 v 0201 + 02732059 a 0101 ~ 11460063 n 0000 ~ 11460281 n 0000 | the resistance encountered when one body is moved in contact with another -11459748 19 n 02 fringe 0 interference_fringe 0 001 @ 11490638 n 0000 | one of the light or dark bands produced by the interference and diffraction of light -11459907 19 n 01 gene_expression 0 001 @ 11418750 n 0000 | conversion of the information encoded in a gene first into messenger RNA and then to a protein -11460063 19 n 04 grinding 0 abrasion 0 attrition 0 detrition 0 004 @ 11459538 n 0000 + 02648106 a 0301 + 01254013 v 0201 + 00331082 v 0101 | the wearing down of rock particles by friction due to water or wind or ice -11460281 19 n 03 grip 0 traction 0 adhesive_friction 0 002 @ 11459538 n 0000 ;c 02958343 n 0000 | the friction between a body and the surface on which it moves (as between an automobile tire and the road) -11460488 19 n 01 front 0 006 @ 11425580 n 0000 ;c 06118563 n 0000 + 02894878 a 0101 ~ 11460728 n 0000 ~ 11460829 n 0000 ~ 11461080 n 0000 | (meteorology) the atmospheric phenomenon created at the boundary between two different air masses -11460728 19 n 01 warm_front 0 001 @ 11460488 n 0000 | the front of an advancing mass of warmer air -11460829 19 n 02 cold_front 0 polar_front 0 002 @ 11460488 n 0000 ~ 11460962 n 0000 | the front of an advancing mass of colder air -11460962 19 n 01 squall_line 0 001 @ 11460829 n 0000 | a cold front along which squalls or thunderstorms are likely -11461080 19 n 02 occluded_front 0 occlusion 0 002 @ 11460488 n 0000 ;c 06118563 n 0000 | (meteorology) a composite front when colder air surrounds a mass of warm air and forces it aloft -11461268 19 n 02 greenhouse_effect 0 greenhouse_warming 0 001 @ 11425580 n 0000 | warming that results when solar radiation is trapped by the atmosphere; caused by atmospheric gases that allow sunshine to pass through but absorb heat that is radiated back from the warmed surface of the earth -11461563 19 n 01 inversion 0 001 @ 11425580 n 0000 | the layer of air near the earth is cooler than an overlying layer -11461684 19 n 02 frost_heave 0 frost_heaving 0 001 @ 11417672 n 0000 | upthrust of ground or pavement caused by the freezing of moist soil -11461825 19 n 01 gale 0 005 @ 11525955 n 0000 ~ 11462013 n 0000 ~ 11462152 n 0000 ~ 11462276 n 0000 ~ 11462401 n 0000 | a strong wind moving 45-90 knots; force 7 to 10 on Beaufort scale -11462013 19 n 02 moderate_gale 0 near_gale 0 002 @ 11461825 n 0000 #p 13850674 n 0000 | wind moving 32-38 knots; 7 on the Beaufort scale -11462152 19 n 01 fresh_gale 0 002 @ 11461825 n 0000 #p 13850674 n 0000 | wind moving 39-46 knots; 8 on the Beaufort scale -11462276 19 n 01 strong_gale 0 002 @ 11461825 n 0000 #p 13850674 n 0000 | wind moving 47-54 knots; 9 on the Beaufort scale -11462401 19 n 01 whole_gale 0 002 @ 11461825 n 0000 #p 13850674 n 0000 | wind moving 55-63 knots; 10 on the Beaufort scale -11462526 19 n 02 storm 0 violent_storm 0 014 @ 11425580 n 0000 #p 13850674 n 0000 + 00303727 a 0101 + 02769900 v 0101 + 02770170 v 0101 %p 08524572 n 0000 ~ 11457944 n 0000 ~ 11462951 n 0000 ~ 11465688 n 0000 ~ 11467650 n 0000 ~ 11501737 n 0000 ~ 11509570 n 0000 ~ 11519253 n 0000 ~ 11527014 n 0000 | a violent weather condition with winds 64-72 knots (11 on the Beaufort scale) and precipitation and thunder and lightning -11462951 19 n 02 northeaster 0 noreaster 0 002 @ 11462526 n 0000 + 01601763 a 0101 | a storm blowing from the northeast -11463073 19 n 02 gamma_radiation 0 gamma_ray 0 002 @ 11450869 n 0000 #p 11451442 n 0000 | electromagnetic radiation emitted during radioactive decay and having an extremely short wavelength -11463265 19 n 01 gaslight 0 001 @ 11473954 n 0000 | light yielded by the combustion of illuminating gas -11463371 19 n 03 radiance 0 glow 1 glowing 0 002 @ 11473954 n 0000 ~ 11427067 n 0000 | the amount of electromagnetic radiation leaving or arriving at a point on a surface -11463544 19 n 01 glow 2 002 @ 11473954 n 0000 ~ 11463647 n 0000 | a steady even light without flames -11463647 19 n 01 sky_glow 0 001 @ 11463544 n 0000 | illumination of the night sky in urban areas -11463746 19 n 03 good_luck 0 fluke 0 good_fortune 0 004 @ 11418460 n 0000 + 00341655 a 0202 + 00341655 a 0203 ~ 11463895 n 0000 | a stroke of luck -11463895 19 n 01 serendipity 0 002 @ 11463746 n 0000 + 01468552 a 0101 | good luck in making unexpected and fortunate discoveries -11464027 19 n 01 gravitational_field 0 001 @ 11456760 n 0000 | a field of force surrounding a body of finite mass -11464143 19 n 04 gravity 0 gravitation 0 gravitational_attraction 0 gravitational_force 0 006 @ 11426530 n 0000 ;c 06090869 n 0000 + 02737183 a 0201 + 01835280 v 0201 + 01835280 v 0101 ~ 11464784 n 0000 | (physics) the force of attraction between all masses in the universe; especially the attraction of the earth's mass for bodies near its surface; "the more remote the body the less the gravity"; "the gravitation between two bodies is proportional to the product of their masses and inversely proportional to the square of the distance between them"; "gravitation cannot be held responsible for people falling in love"--Albert Einstein -11464784 19 n 01 solar_gravity 0 001 @ 11464143 n 0000 | the gravity of the sun; "solar gravity creates extreme pressures and temperatures" -11464926 19 n 01 gun_smoke 0 001 @ 11508092 n 0000 | smoke created by the firing of guns -11465017 19 n 03 gust 0 blast 0 blow 0 009 @ 11525955 n 0000 + 00305225 a 0301 + 02769241 v 0301 + 02100632 v 0301 + 01902783 v 0304 + 00305700 a 0101 ~ 11465297 n 0000 ~ 11465425 n 0000 ~ 11497888 n 0000 | a strong current of air; "the tree was bent almost double by the gust" -11465297 19 n 01 bluster 0 004 @ 11465017 n 0000 + 00304670 a 0103 + 00304670 a 0102 + 02770362 v 0101 | a violent gusty wind -11465425 19 n 01 sandblast 0 002 @ 11465017 n 0000 + 01386741 v 0101 | a blast of wind laden with sand -11465530 19 n 01 hail 0 003 @ 11494638 n 0000 + 02759115 v 0101 %p 14915804 n 0000 | precipitation of ice pellets when there are strong rising air currents -11465688 19 n 01 hailstorm 0 001 @ 11462526 n 0000 | a storm during which hail falls -11465775 19 n 01 half-light 0 001 @ 11473954 n 0000 | a greyish light (as at dawn or dusk or in dim interiors) -11465888 19 n 01 haze 0 003 @ 11422597 n 0000 + 00461609 a 0103 + 02772202 v 0101 | atmospheric moisture or dust or smoke that causes reduced visibility -11466043 19 n 02 heat 0 heat_energy 0 010 @ 11452218 n 0000 + 00372665 v 0101 + 02333358 v 0101 + 00371264 v 0101 ~ 11466337 n 0000 ~ 11470621 n 0000 ~ 11470765 n 0000 ~ 11470933 n 0000 ~ 11471097 n 0000 ~ 11472352 n 0000 | a form of energy that is transferred by a difference in temperature -11466337 19 n 01 geothermal_energy 0 001 @ 11466043 n 0000 | energy derived from the heat in the interior of the earth -11466458 19 n 01 histocompatibility 0 001 @ 11418750 n 0000 | condition in which the cells of one tissue can survive in the presence of cells of another tissue; "a successful graft or transplant requires a high degree of histocompatibility" -11466701 19 n 01 hot_weather 0 003 @ 11524662 n 0000 ~ 11466834 n 0000 ~ 11466909 n 0000 | a period of unusually high temperatures -11466834 19 n 01 scorcher 0 001 @ 11466701 n 0000 | an extremely hot day -11466909 19 n 01 sultriness 0 002 @ 11466701 n 0000 + 01250121 a 0101 | oppressively hot and humid weather -11467018 19 n 01 hurricane 0 002 @ 11443721 n 0000 #p 13850674 n 0000 | a severe tropical cyclone usually with heavy rains and winds moving a 73-136 knots (12 on the Beaufort scale) -11467202 19 n 01 hydroelectricity 0 002 @ 11449907 n 0000 + 02827950 a 0101 | electricity produced by water power -11467318 19 n 01 hysteresis 0 001 @ 11419404 n 0000 | the lagging of an effect behind its cause; especially the phenomenon in which the magnetic induction of a ferromagnetic material lags behind the changing magnetic field -11467543 19 n 02 ice_fog 0 pogonip 0 001 @ 11458314 n 0000 | a dense winter fog containing ice particles -11467650 19 n 02 ice_storm 0 silver_storm 0 001 @ 11462526 n 0000 | a storm with freezing rain that leaves everything glazed with ice -11467786 19 n 02 incandescence 0 glow 0 005 @ 11473954 n 0000 + 02768874 v 0202 + 00271813 a 0101 + 00572186 v 0101 + 00572021 v 0101 | the phenomenon of light emission by a body as its temperature is raised -11467996 19 n 01 incidence 0 002 @ 11490638 n 0000 + 02987623 a 0101 | the striking of a light beam on a surface; "he measured the angle of incidence of the reflected light" -11468172 19 n 02 induction 0 inductance 0 005 @ 11449002 n 0000 + 01737417 v 0101 + 01737417 v 0102 ~ 11468442 n 0000 ~ 11468578 n 0000 | an electrical phenomenon whereby an electromotive force (EMF) is generated in a closed circuit by a change in the flow of current -11468442 19 n 01 mutual_induction 0 001 @ 11468172 n 0000 | generation of electromotive forces in each other by two adjacent circuits -11468578 19 n 01 self-induction 0 001 @ 11468172 n 0000 | generation of an electromotive force (EMF) in a circuit by changing the current in that circuit; usually measured in henries -11468763 19 n 01 inertia 0 003 @ 11480698 n 0000 ;c 06090869 n 0000 ~ 11468973 n 0000 | (physics) the tendency of a body to maintain its state of rest or uniform motion unless acted upon by an external force -11468973 19 n 01 moment_of_inertia 0 002 @ 11468763 n 0000 @ 11482985 n 0000 | the tendency of a body to resist angular acceleration -11469108 19 n 01 angular_acceleration 0 002 @ 15275851 n 0000 ;c 06090869 n 0000 | (physics) the rate of change of the angular velocity of a rotating body -11469265 19 n 01 angular_velocity 0 002 @ 15282696 n 0000 ;c 06090869 n 0000 | (physics) the rate of change of the angular position of a rotating body; usually expressed in radians per second or radians per minute -11469481 19 n 04 infrared 0 infrared_light 0 infrared_radiation 0 infrared_emission 0 001 @ 11421401 n 0000 | electromagnetic radiation with wavelengths longer than visible light but shorter than radio waves -11469691 19 n 01 infrared_spectrum 0 003 @ 11420831 n 0000 #p 11451442 n 0000 %p 05056811 n 0000 | the spectrum of infrared radiation -11469827 19 n 01 interreflection 0 001 @ 11503060 n 0000 | reciprocal reflection between two reflecting surfaces; "there was interreflection between the two surfaces of the lens" -11470008 19 n 01 jet_propulsion 0 001 @ 11498850 n 0000 | propulsion by means of the discharge of a jet of fluid toward the rear -11470139 19 n 01 jet_stream 0 001 @ 11423356 n 0000 | a high-speed high-altitude airstream blowing from west to east near the top of the troposphere; has important effects of the formation of weather fronts -11470348 19 n 01 juice 0 002 @ 11443532 n 0000 ;u 07157273 n 0000 | electric current; "when the wiring was finished they turned on the juice" -11470492 19 n 02 kinetic_energy 0 K.E. 0 001 @ 11482013 n 0000 | the mechanical energy that a body has by virtue of its motion -11470621 19 n 01 heat_of_dissociation 0 001 @ 11466043 n 0000 | the heat required for a fluid substance to break up into simpler constituents -11470765 19 n 01 heat_of_formation 0 001 @ 11466043 n 0000 | the heat evolved or absorbed during the formation of one mole of a substance from its component elements -11470933 19 n 01 heat_of_solution 0 001 @ 11466043 n 0000 | the heat evolved or absorbed when one mole of a substance is dissolved in a large volume of a solvent -11471097 19 n 02 latent_heat 0 heat_of_transformation 0 006 @ 11466043 n 0000 ~ 11471359 n 0000 ~ 11471578 n 0000 ~ 11471828 n 0000 ~ 11471977 n 0000 ~ 11472131 n 0000 | heat absorbed or radiated during a change of phase at a constant temperature and pressure -11471359 19 n 01 heat_of_condensation 0 001 @ 11471097 n 0000 | heat liberated by a unit mass of gas at its boiling point as it condenses into a liquid; "the heat of condensation is equal to the heat of vaporization" -11471578 19 n 01 heat_of_fusion 0 001 @ 11471097 n 0000 | heat absorbed by a unit mass of a solid at its melting point in order to convert the solid into a liquid at the same temperature; "the heat of fusion is equal to the heat of solidification" -11471828 19 n 01 heat_of_solidification 0 001 @ 11471097 n 0000 | heat liberated by a unit mass of liquid at its freezing point when it solidifies -11471977 19 n 01 heat_of_sublimation 0 001 @ 11471097 n 0000 | heat absorbed by a unit mass of material when it changes from a solid to a gaseous state -11472131 19 n 02 heat_of_vaporization 0 heat_of_vaporisation 0 001 @ 11471097 n 0000 | heat absorbed by a unit mass of a material at its boiling point in order to convert the material into a gas at the same temperature -11472352 19 n 01 specific_heat 0 001 @ 11466043 n 0000 | the heat required to raise the temperature of one gram of a substance one degree centigrade -11472503 19 n 01 heat_ray 0 002 @ 11428023 n 0000 ~ 11472820 n 0000 | a ray that produces a thermal effect -11472612 19 n 01 heat_wave 0 001 @ 11524451 n 0000 | a wave of unusually hot weather -11472699 19 n 01 high_beam 0 001 @ 11428023 n 0000 | the beam of a car's headlights that provides distant illumination -11472820 19 n 01 infrared_ray 0 001 @ 11472503 n 0000 | a ray of infrared radiation; produces a thermal effect (as from an infrared lamp) -11472960 19 n 01 lamplight 0 001 @ 11473954 n 0000 | light from a lamp -11473033 19 n 01 levanter 0 001 @ 11448343 n 0000 | an easterly wind in the western Mediterranean area -11473138 19 n 02 leverage 0 purchase 0 002 @ 11480698 n 0000 + 01593254 v 0104 | the mechanical advantage gained by being in a position to use a lever -11473291 19 n 01 life 0 003 @ 11418750 n 0000 ~ 11473488 n 0000 ~ 11473685 n 0000 | the organic phenomenon that distinguishes living organisms from nonliving ones; "there is no life on the moon" -11473488 19 n 01 biology 0 004 @ 11473291 n 0000 + 02665803 a 0102 + 02665803 a 0101 + 09855630 n 0101 | characteristic life processes and phenomena of living organisms; "the biology of viruses" -11473685 19 n 01 aerobiosis 0 002 @ 11473291 n 0000 + 00068738 a 0101 | life sustained in the presence of air or oxygen -11473807 19 n 01 life_cycle 0 001 @ 11418750 n 0000 | a series of stages through which an organism passes between recurrences of a primary stage -11473954 19 n 03 light 0 visible_light 0 visible_radiation 0 027 @ 11421401 n 0000 #p 11451442 n 0000 ;c 06090869 n 0000 + 00291873 v 0101 ~ 11428023 n 0000 ~ 11433435 n 0000 ~ 11440691 n 0000 ~ 11442298 n 0000 ~ 11444038 n 0000 ~ 11457841 n 0000 ~ 11458102 n 0000 ~ 11459369 n 0000 ~ 11463265 n 0000 ~ 11463371 n 0000 ~ 11463544 n 0000 ~ 11465775 n 0000 ~ 11467786 n 0000 ~ 11472960 n 0000 ~ 11476430 n 0000 ~ 11483990 n 0000 ~ 11484975 n 0000 ~ 11485186 n 0000 ~ 11485367 n 0000 ~ 11506349 n 0000 ~ 11515734 n 0000 ~ 11515849 n 0000 ~ 11515935 n 0000 | (physics) electromagnetic radiation that can produce a visual sensation; "the light was filtered through a soft glass window" -11474637 19 n 01 line 0 002 @ 11450869 n 0000 #p 11451442 n 0000 | a single frequency (or very narrow band) of radiation in a spectrum -11474774 19 n 01 elves 0 001 @ 11476231 n 0000 | an acronym for emissions of light and very low frequency perturbations due to electromagnetic pulse sources; extremely bright extremely short (less than a msec) electrical flashes forming a huge ring (up to 400 km diameter) in the ionosphere -11475067 19 n 03 jet 0 blue_jet 0 reverse_lightning 0 001 @ 11476231 n 0000 | atmospheric discharges (lasting 10 msec) bursting from the tops of giant storm clouds in blue cones that widen as they flash upward -11475279 19 n 01 lightning 0 003 @ 11476231 n 0000 ~ 11459200 n 0000 ~ 11519121 n 0000 | abrupt electric discharge from cloud to cloud or from cloud to earth accompanied by the emission of light -11475476 19 n 01 line_spectrum 0 001 @ 11420831 n 0000 | a spectrum in which energy is concentrated at particular wavelengths; produced by excited atoms and ions as they fall back to a lower energy level -11475682 19 n 01 Lorentz_force 0 001 @ 11458624 n 0000 | the force experienced by a point charge moving along a wire that is in a magnetic field; the force is at right angles to both the current and the magnetic field; "the Lorentz force can be used to suspend a current-carrying object between two magnets" -11475992 19 n 02 sprites 0 red_sprites 0 001 @ 11476231 n 0000 | atmospheric electricity (lasting 10 msec) appearing as globular flashes of red (pink to blood-red) light rising to heights of 60 miles (sometimes seen together with elves) -11476231 19 n 01 atmospheric_electricity 0 006 @ 07307895 n 0000 @ 11425580 n 0000 ~ 11474774 n 0000 ~ 11475067 n 0000 ~ 11475279 n 0000 ~ 11475992 n 0000 | electrical discharges in the atmosphere -11476430 19 n 01 luminescence 0 005 @ 11473954 n 0000 + 00272410 a 0101 + 02766223 v 0101 ~ 11476619 n 0000 ~ 11476767 n 0000 | light not due to incandescence; occurs at low temperatures -11476619 19 n 01 bioluminescence 0 002 @ 11476430 n 0000 + 00270856 a 0101 | luminescence produced by physiological processes (as in the firefly) -11476767 19 n 01 chemiluminescence 0 002 @ 11476430 n 0000 + 02693278 a 0101 | luminescence resulting from a chemical reaction as the oxidation of luciferin in fireflies -11476939 19 n 01 luminous_energy 0 001 @ 11499091 n 0000 | the energy associated with visible light -11477041 19 n 01 magnetosphere 0 001 @ 11477384 n 0000 | the magnetic field of a planet; the volume around the planet in which charged particles are subject more to the planet's magnetic field than to the solar magnetic field -11477269 19 n 01 solar_magnetic_field 0 002 @ 11477384 n 0000 #p 09314603 n 0000 | the magnetic field of the sun -11477384 19 n 03 magnetic_field 0 magnetic_flux 0 flux 0 003 @ 11456760 n 0000 ~ 11477041 n 0000 ~ 11477269 n 0000 | the lines of force surrounding a permanent magnet or a moving charged particle -11477582 19 n 01 radiation_field 0 001 @ 11456760 n 0000 | a field that represents the energy lost from the radiator to space -11477710 19 n 01 beat 0 001 @ 07345166 n 0000 | a single pulsation of an oscillation produced by adding two waves of different frequencies; has a frequency equal to the difference between the two oscillations -11477921 19 n 01 resonance 0 003 @ 07345166 n 0000 + 02010536 a 0101 + 02175958 v 0101 | a vibration of large amplitude produced by a relatively small vibration near the same frequency of vibration as the natural frequency of the resonating system -11478171 19 n 01 sympathetic_vibration 0 002 @ 07345166 n 0000 ;c 06090869 n 0000 | (physics) vibration produced by resonance -11478299 19 n 01 resonance 1 003 @ 11419404 n 0000 ~ 11478514 n 0000 ~ 11478682 n 0000 | an excited state of a stable particle causing a sharp maximum in the probability of absorption of electromagnetic radiation -11478514 19 n 01 nuclear_resonance 0 001 @ 11478299 n 0000 | the resonance absorption of a gamma ray by a nucleus identical to the nucleus that emitted the gamma ray -11478682 19 n 01 magnetic_resonance 0 002 @ 11478299 n 0000 ~ 11478898 n 0000 | resonance of electrons or atoms or molecules or nuclei to radiation frequencies as a result of space quantization in a magnetic field -11478898 19 n 03 nuclear_magnetic_resonance 0 NMR 0 proton_magnetic_resonance 0 001 @ 11478682 n 0000 | resonance of protons to radiation in a magnetic field -11479058 19 n 03 magnetism 0 magnetic_attraction 0 magnetic_force 0 007 @ 11426530 n 0000 = 00169955 a 0000 ~ 11479368 n 0000 ~ 11479640 n 0000 ~ 11479816 n 0000 ~ 11480284 n 0000 ~ 11480521 n 0000 | attraction for iron; associated with electric currents as well as magnets; characterized by fields of force -11479368 19 n 01 electromagnetism 0 002 @ 11479058 n 0000 + 02926320 a 0101 | magnetism produced by an electric current; "electromagnetism was discovered when it was observed that a copper wire carrying an electric current can magnetize pieces of iron or steel near it" -11479640 19 n 01 antiferromagnetism 0 003 @ 11479058 n 0000 + 02605509 a 0101 ~ 11480091 n 0000 | magnetic field creates parallel but opposing spins; varies with temperature -11479816 19 n 01 diamagnetism 0 002 @ 11479058 n 0000 + 02711599 a 0101 | phenomenon exhibited by materials like copper or bismuth that become magnetized in a magnetic field with a polarity opposite to the magnetic force; unlike iron they are slightly repelled by a magnet -11480091 19 n 01 ferrimagnetism 0 001 @ 11479640 n 0000 | a phenomenon in ferrites where there can be incomplete cancellation of antiferromagnetic arranged spins giving a net magnetic moment -11480284 19 n 01 ferromagnetism 0 002 @ 11479058 n 0000 + 03003223 a 0101 | phenomenon exhibited by materials like iron (nickel or cobalt) that become magnetized in a magnetic field and retain their magnetism when the field is removed -11480521 19 n 01 paramagnetism 0 001 @ 11479058 n 0000 | materials like aluminum or platinum become magnetized in a magnetic field but it disappears when the field is removed -11480698 19 n 01 mechanical_phenomenon 0 006 @ 11419404 n 0000 ~ 11468763 n 0000 ~ 11473138 n 0000 ~ 11480930 n 0000 ~ 11481334 n 0000 ~ 11503644 n 0000 | a physical phenomenon associated with the equilibrium or motion of objects -11480930 19 n 01 sound 0 006 @ 11480698 n 0000 + 02179518 v 0101 + 02180529 v 0101 + 02135048 v 0101 + 02176268 v 0101 ~ 11481209 n 0000 | mechanical vibrations transmitted by an elastic medium; "falling trees make a sound in the forest even when no one is there to hear them" -11481209 19 n 01 ultrasound 0 002 @ 11480930 n 0000 + 00175300 a 0102 | very high frequency sound; used in ultrasonography -11481334 19 n 02 trajectory 0 flight 0 003 @ 11480698 n 0000 ~ 11481487 n 0000 ~ 11481627 n 0000 | the path followed by an object moving through space -11481487 19 n 02 ballistics 0 ballistic_trajectory 0 002 @ 11481334 n 0000 + 02658188 a 0101 | the trajectory of an object in free flight -11481627 19 n 01 gravity-assist 0 002 @ 11481334 n 0000 ;c 00313502 n 0000 | (spaceflight) a trajectory that passes close to a planetary body in order to gain energy from its gravitational field -11481824 19 n 02 mass_defect 0 mass_deficiency 0 001 @ 05024254 n 0000 | the amount by which the mass of an atomic nucleus is less than the sum of the masses of its constituent particles -11482013 19 n 01 mechanical_energy 0 003 @ 11452218 n 0000 ~ 11470492 n 0000 ~ 11494472 n 0000 | energy in a mechanical form -11482140 19 n 03 thaw 0 thawing 0 warming 0 002 @ 11524662 n 0000 + 00376106 v 0102 | warm weather following a freeze; snow and ice melt; "they welcomed the spring thaw" -11482312 19 n 01 microwave 0 003 @ 11450869 n 0000 #p 11451442 n 0000 + 00321936 v 0101 | a short electromagnetic wave (longer than infrared but shorter than radio waves); used for radar and microwave ovens and for transmitting telephone, facsimile, video and data -11482579 19 n 01 midnight_sun 0 001 @ 11425580 n 0000 | the sun visible at midnight (inside the Arctic or Antarctic Circles) -11482706 19 n 01 mist 0 005 @ 11458314 n 0000 + 02549569 a 0101 + 00461609 a 0104 + 01373303 v 0101 + 00361495 v 0101 | a thin fog with condensation near the ground -11482873 19 n 01 mistral 0 001 @ 11487950 n 0000 | a strong north wind that blows in France during the winter -11482985 19 n 01 moment 0 004 @ 11458624 n 0000 ~ 11468973 n 0000 ~ 11483179 n 0000 ~ 11483354 n 0000 | a turning force produced by an object acting at a distance (or a measure of that force) -11483179 19 n 01 moment_of_a_couple 0 002 @ 11482985 n 0000 #p 09257563 n 0000 | given two equal and opposite forces, the product of the force and the distance between them -11483354 19 n 01 dipole_moment 0 003 @ 11482985 n 0000 ~ 11483472 n 0000 ~ 11483580 n 0000 | the moment of a dipole -11483472 19 n 01 electric_dipole_moment 0 001 @ 11483354 n 0000 | the dipole moment in an electric dipole -11483580 19 n 01 magnetic_dipole_moment 0 002 @ 11483354 n 0000 ;c 06090869 n 0000 | (physics) a current loop gives rise to a magnetic field characteristic of a magnetic dipole; "An orbiting electron in an atom will have a magnetic dipole moment" -11483829 19 n 02 magnetic_moment 0 moment_of_a_magnet 0 001 @ 11519702 n 0000 | the torque exerted on a magnet or dipole when it is placed in a magnetic field -11483990 19 n 02 meteor 0 shooting_star 0 003 @ 11473954 n 0000 #p 11507000 n 0000 ~ 11484260 n 0000 | a streak of light in the sky at night that results when a meteoroid hits the earth's atmosphere and air friction causes the meteoroid to melt or vaporize or explode -11484260 19 n 02 bolide 0 fireball 0 001 @ 11483990 n 0000 | an especially luminous meteor (sometimes exploding) -11484375 19 n 01 mirage 0 002 @ 11490463 n 0000 ~ 11456615 n 0000 | an optical illusion in which atmospheric refraction by a layer of hot air distorts or inverts reflections of distant objects -11484570 19 n 01 monsoon 0 001 @ 11525955 n 0000 | a seasonal wind in southern Asia; blows from the southwest (bringing rain) in summer and from the northeast in winter -11484741 19 n 01 monsoon 1 002 @ 11525955 n 0000 @ 11501381 n 0000 | any wind that changes direction with the seasons -11484861 19 n 03 moonbeam 0 moon_ray 0 moon-ray 0 002 @ 11428023 n 0000 #p 11484975 n 0000 | a ray of moonlight -11484975 19 n 03 moonlight 0 moonshine 0 Moon 0 003 @ 11473954 n 0000 + 00278006 a 0302 %p 11484861 n 0000 | the light of the Moon; "moonlight is the smuggler's enemy"; "the Moon was bright enough to read by" -11485186 19 n 01 starlight 0 001 @ 11473954 n 0000 | the light of the stars -11485264 19 n 01 sunburst 0 001 @ 11485367 n 0000 | a sudden emergence of the sun from behind clouds -11485367 19 n 03 sunlight 0 sunshine 0 sun 0 005 @ 11473954 n 0000 + 02112546 v 0301 + 00104147 v 0301 ~ 11485264 n 0000 %p 11485582 n 0000 | the rays of the sun; "the shingles were weathered by the sun and wind" -11485582 19 n 02 sunbeam 0 sunray 0 002 @ 11428023 n 0000 #p 11485367 n 0000 | a ray of sunlight -11485681 19 n 01 laser_beam 0 001 @ 11428023 n 0000 | a beam of light generated by a laser -11485774 19 n 01 low_beam 0 001 @ 11428023 n 0000 | the beam of a car's headlights that provides illumination for a short distance -11485907 19 n 01 particle_beam 0 002 @ 11428379 n 0000 ~ 11486049 n 0000 | a collimated flow of particles (atoms or electrons or molecules) -11486049 19 n 02 ion_beam 0 ionic_beam 0 001 @ 11485907 n 0000 | a beam of ions moving in the same direction at the same speed -11486178 19 n 02 necrobiosis 0 cell_death 0 003 @ 11444117 n 0000 ;c 06080522 n 0000 ~ 11486381 n 0000 | (physiology) the normal degeneration and death of living cells (as in various epithelial cells) -11486381 19 n 03 apoptosis 0 programmed_cell_death 0 caspase-mediated_cell_death 0 001 @ 11486178 n 0000 | a type of cell death in which the cell uses specialized cellular machinery to kill itself; a cell suicide mechanism that enables metazoans to control cell number and eliminate cells that threaten the animal's survival -11486708 19 n 04 necrosis 0 mortification 0 gangrene 0 sphacelus 0 006 @ 11444117 n 0000 + 00097394 v 0404 + 01176973 a 0301 + 00097394 v 0203 + 02982602 a 0101 ~ 11486983 n 0000 | the localized death of living cells (as from infection or the interruption of blood supply) -11486983 19 n 01 myonecrosis 0 001 @ 11486708 n 0000 | localized death of muscle cell fibers -11487078 19 n 02 brain_death 0 cerebral_death 0 001 @ 11444117 n 0000 | death when respiration and other reflexes are absent; consciousness is gone; organs can be removed for transplantation before the heartbeat stops -11487298 19 n 01 neutron_radiation 0 002 @ 11499510 n 0000 @ 11437577 n 0000 | radiation of neutrons (as by a neutron bomb) -11487424 19 n 01 halo 0 002 @ 11425580 n 0000 ~ 11487533 n 0000 | a circle of light around the sun or moon -11487533 19 n 03 solar_halo 0 parhelic_circle 0 parhelic_ring 0 001 @ 11487424 n 0000 | a luminous halo parallel to the horizon at the altitude of the sun; caused by ice crystals in the atmosphere -11487732 19 n 03 parhelion 0 mock_sun 0 sundog 0 002 @ 04682462 n 0000 + 02774269 a 0101 | a bright spot on the parhelic circle; caused by diffraction by ice crystals; "two or more parhelia are usually seen at once" -11487950 19 n 04 north_wind 0 northerly 0 norther 0 boreas 0 006 @ 11525955 n 0000 + 03133530 a 0401 + 01601069 a 0301 ~ 11429356 n 0000 ~ 11482873 n 0000 ~ 11520271 n 0000 | a wind that blows from the north -11488160 19 n 01 nuclear_propulsion 0 001 @ 11497777 n 0000 | the use of a nuclear reactor either to produce electricity to power an engine (as in a nuclear submarine) or to directly heat a propellant (as in nuclear rockets) -11488387 19 n 01 ocean_current 0 006 @ 07406765 n 0000 ~ 11488601 n 0000 ~ 11489070 n 0000 ~ 11489536 n 0000 ~ 11489686 n 0000 ~ 11489878 n 0000 | the steady flow of surface ocean water in a prevailing direction -11488601 19 n 01 El_Nino 0 003 @ 11488387 n 0000 ;c 06119904 n 0000 ~ 11488828 n 0000 | (oceanography) a warm ocean current that flows along the equator from the date line and south off the coast of Ecuador at Christmas time -11488828 19 n 01 El_Nino_southern_oscillation 0 001 @ 11488601 n 0000 | a more intense El Nino that occurs every few years when the welling up of cold nutrient-rich water does not occur; kills plankton and fish and affects weather patterns -11489070 19 n 01 equatorial_current 0 003 @ 11488387 n 0000 ~ 11489230 n 0000 ~ 11489383 n 0000 | any of the ocean currents that flow westward at the equator -11489230 19 n 01 North_Equatorial_Current 0 001 @ 11489070 n 0000 | an equatorial current that flows west across the Pacific just north of the equator -11489383 19 n 01 South_Equatorial_Current 0 001 @ 11489070 n 0000 | an equatorial current that flows west across the Pacific just south of the equator -11489536 19 n 01 Gulf_stream 0 001 @ 11488387 n 0000 | a warm ocean current that flows from the Gulf of Mexico northward through the Atlantic Ocean -11489686 19 n 03 Japan_current 0 Kuroshio_current 0 Kuroshio 0 001 @ 11488387 n 0000 | a warm ocean current that flows northeastwardly off the coast of Japan into the northern Pacific ocean -11489878 19 n 02 Peruvian_current 0 Humboldt_current 0 001 @ 11488387 n 0000 | a cold ocean current that flows north along the Pacific Coast of South America before turning west -11490058 19 n 01 opacity 0 005 @ 11419404 n 0000 + 00433115 a 0101 ! 11520619 n 0101 ~ 11490257 n 0000 ~ 11490335 n 0000 | the phenomenon of not permitting the passage of electromagnetic radiation -11490257 19 n 01 optical_opacity 0 001 @ 11490058 n 0000 | opacity to light -11490335 19 n 02 radiopacity 0 radio-opacity 0 002 @ 11490058 n 0000 + 00434838 a 0101 | opacity to X-rays or other radiation -11490463 19 n 01 optical_illusion 0 003 @ 11490638 n 0000 ~ 11425088 n 0000 ~ 11484375 n 0000 | an optical phenomenon that results in a false or deceptive visual impression -11490638 19 n 01 optical_phenomenon 0 011 @ 11419404 n 0000 ~ 11420139 n 0000 ~ 11420631 n 0000 ~ 11446934 n 0000 ~ 11459748 n 0000 ~ 11467996 n 0000 ~ 11490463 n 0000 ~ 11491619 n 0000 ~ 11492014 n 0000 ~ 11528225 n 0000 ~ 11528427 n 0000 | a physical phenomenon related to or involving light -11490934 19 n 02 pea_soup 0 pea-souper 0 001 @ 11458314 n 0000 | a heavy thick yellow fog -11491026 19 n 01 phosphorescence 0 003 @ 11458102 n 0000 + 00272555 a 0101 + 02632035 v 0101 | a fluorescence that persists after the bombarding radiation has ceased -11491194 19 n 01 photoelectricity 0 001 @ 11449907 n 0000 | electricity generated by light or affected by light -11491308 19 n 03 piezoelectricity 0 piezoelectric_effect 0 piezo_effect 0 002 @ 11449907 n 0000 + 02980972 a 0101 | electricity produced by mechanical pressure on certain crystals (notably quartz or Rochelle salt); alternatively, electrostatic stress produces a change in the linear dimensions of the crystal -11491619 19 n 01 pleochroism 0 003 @ 11490638 n 0000 ~ 11446771 n 0000 ~ 11520821 n 0000 | the phenomenon of different colors appearing when certain crystals are viewed from different directions -11491816 19 n 01 pleomorphism 0 003 @ 11418750 n 0000 ;c 06037666 n 0000 + 02780837 a 0101 | (biology) the appearance of two or more distinctly different forms in the life cycle of some organisms -11492014 19 n 02 polarization 0 polarisation 0 004 @ 11490638 n 0000 + 00487554 v 0202 + 00487350 v 0101 + 00487182 v 0101 | the phenomenon in which waves of light or other radiation are restricted in direction of vibration -11492240 19 n 02 depolarization 0 depolarisation 0 003 @ 11412727 n 0000 + 00574341 v 0202 + 00574341 v 0101 | a loss of polarity or polarization -11492388 19 n 01 polymorphism 0 005 @ 11418750 n 0000 ;c 06037666 n 0000 + 02855185 a 0101 + 02855185 a 0102 ~ 11492643 n 0000 | (biology) the existence of two or more forms of individuals within the same animal species (independent of sex differences) -11492643 19 n 01 dimorphism 0 002 @ 11492388 n 0000 ;c 06037666 n 0000 | (biology) the existence of two forms of individual within the same animal species (independent of sex differences) -11492833 19 n 02 polymorphism 1 pleomorphism 1 006 @ 11409059 n 0000 ;c 06084469 n 0000 + 02780837 a 0201 + 02855503 a 0102 + 02855503 a 0101 ~ 11493083 n 0000 | (chemistry) the existence of different kinds of crystal of the same chemical compound -11493083 19 n 01 dimorphism 1 002 @ 11492833 n 0000 ;c 06084469 n 0000 | (chemistry) the property of certain substances that enables them to exist in two distinct crystalline forms -11493266 19 n 01 polymorphism 2 003 @ 11418750 n 0000 ;c 06075527 n 0000 ~ 11493452 n 0000 | (genetics) the genetic variation within a population that natural selection can operate on -11493452 19 n 02 single_nucleotide_polymorphism 0 SNP 0 002 @ 11493266 n 0000 ;c 06075527 n 0000 | (genetics) genetic variation in a DNA sequence that occurs when a single nucleotide in a genome is altered; SNPs are usually considered to be point mutations that have been evolutionarily successful enough to recur in a significant proportion of the population of a species -11493827 19 n 05 electric_potential 0 potential 0 potential_difference 0 potential_drop 0 voltage 1 003 @ 11449002 n 0000 ~ 11494076 n 0000 ~ 11494287 n 0000 | the difference in electrical charge between two points in a circuit expressed in volts -11494076 19 n 01 evoked_potential 0 001 @ 11493827 n 0000 | the electrical response of the central nervous system produced by an external stimulus; "he measured evoked potentials with an electroencephalogram" -11494287 19 n 01 resting_potential 0 001 @ 11493827 n 0000 | the potential difference between the two sides of the membrane of a nerve cell when the cell is not conducting an impulse -11494472 19 n 02 potential_energy 0 P.E. 0 002 @ 11482013 n 0000 ~ 11448835 n 0000 | the mechanical energy that a body has by virtue of its position; stored energy -11494638 19 n 02 precipitation 0 downfall 0 009 @ 11524662 n 0000 + 02756821 v 0101 ~ 11457496 n 0000 ~ 11465530 n 0000 ~ 11501381 n 0000 ~ 11507951 n 0000 ~ 11508382 n 0000 ~ 11509204 n 0000 %p 11509377 n 0000 | the falling to earth of any form of water (rain or snow or hail or sleet or mist) -11494935 19 n 01 gas_pressure 0 002 @ 11495041 n 0000 ~ 11429458 n 0000 | the pressure exerted by a gas -11495041 19 n 03 pressure 0 pressure_level 0 force_per_unit_area 0 019 @ 11419404 n 0000 + 01447257 v 0101 + 00403609 v 0102 + 00403401 v 0101 + 00403149 v 0101 + 00403609 v 0103 + 00403401 v 0102 + 00403149 v 0102 ~ 11429968 n 0000 ~ 11494935 n 0000 ~ 11495607 n 0000 ~ 11496296 n 0000 ~ 11496503 n 0000 ~ 11496746 n 0000 ~ 11496881 n 0000 ~ 11497173 n 0000 ~ 11497378 n 0000 ~ 11517494 n 0000 ~ 11523031 n 0000 | the force applied to a unit area of surface; measured in pascals (SI unit) or in dynes (cgs unit); "the compressed gas exerts an increased pressure" -11495607 19 n 01 head 0 001 @ 11495041 n 0000 | the pressure exerted by a fluid; "a head of steam" -11495708 19 n 01 barometric_pressure 0 001 @ 11429458 n 0000 | atmospheric pressure as indicated by a barometer -11495822 19 n 01 compartment_pressure 0 001 @ 11429458 n 0000 | the air pressure maintained in an air-tight compartment (as in an aircraft) -11495964 19 n 01 overpressure 0 001 @ 11429458 n 0000 | a transient air pressure greater than the surrounding atmospheric pressure; "the overpressure of the blast kills by lethal concussion" -11496157 19 n 01 sea-level_pressure 0 001 @ 11429458 n 0000 | the atmospheric pressure reduced by a formula to the pressure at sea level -11496296 19 n 01 hydrostatic_head 0 001 @ 11495041 n 0000 | the pressure at a given point in a liquid measured in terms of the vertical height of a column of the liquid needed to produce the same pressure -11496503 19 n 02 intraocular_pressure 0 IOP 0 001 @ 11495041 n 0000 | pressure exerted by the fluids inside the eyeball; regulated by resistance to the outward flow of aqueous humor; "glaucoma can result from increased intraocular pressure" -11496746 19 n 01 oil_pressure 0 001 @ 11495041 n 0000 | pressure that keeps oil on the moving parts of an internal-combustion engine -11496881 19 n 01 osmotic_pressure 0 004 @ 11495041 n 0000 ;c 06089447 n 0000 ~ 14576690 n 0000 ~ 14576860 n 0000 | (physical chemistry) the pressure exerted by a solution necessary to prevent osmosis into that solution when it is separated from the pure solvent by a semipermeable membrane -11497173 19 n 02 radiation_pressure 0 corpuscular-radiation_pressure 0 002 @ 11495041 n 0000 ~ 05100981 n 0000 | the minute pressure exerted on a surface normal to the direction of propagation of a wave -11497378 19 n 02 sound_pressure 0 instantaneous_sound_pressure 0 001 @ 11495041 n 0000 | the difference between the instantaneous pressure at a point in a sound field and the average pressure at that point -11497586 19 n 01 prevailing_wind 0 004 @ 11525955 n 0000 ~ 11424938 n 0000 ~ 11519949 n 0000 ~ 11520120 n 0000 | the predominant wind direction; "the prevailing wind is from the southwest" -11497777 19 n 01 propulsion 0 003 @ 11458624 n 0000 ~ 11488160 n 0000 ~ 11498850 n 0000 | a propelling force -11497888 19 n 03 puff 0 puff_of_air 0 whiff 0 004 @ 11465017 n 0000 + 02100861 v 0301 + 00943436 v 0301 + 00305700 a 0102 | a short light gust of air -11498040 19 n 01 pull 0 003 @ 11458624 n 0000 + 01609287 v 0101 + 01505254 v 0102 | the force used in pulling; "the pull of the moon"; "the pull of the current" -11498203 19 n 02 push 0 thrust 0 006 @ 11458624 n 0000 + 02713852 v 0201 + 02714057 v 0201 + 02094569 v 0201 + 01447632 v 0102 + 01871979 v 0101 | the force used in pushing; "the push of the water on the walls of the tank"; "the thrust of the jet engines" -11498461 19 n 01 reaction 0 002 @ 11458624 n 0000 ;c 06100236 n 0000 | (mechanics) the equal and opposite force that is produced when any force is applied to a body; "every action has an equal and opposite reaction" -11498679 19 n 01 rocket_propulsion 0 001 @ 11498850 n 0000 | reaction propulsion using stored oxygen for combustion; used where there is insufficient atmospheric oxygen -11498850 19 n 01 reaction_propulsion 0 003 @ 11497777 n 0000 ~ 11470008 n 0000 ~ 11498679 n 0000 | propulsion that results from the ejection at high velocity of a mass of gas to which the vehicle reacts with an equal and opposite momentum -11499091 19 n 01 radiant_energy 0 002 @ 11452218 n 0000 ~ 11476939 n 0000 | energy that is transmitted in the form of (electromagnetic) radiation; energy that exists in the absence of matter -11499284 19 n 01 radiation 0 006 @ 11452218 n 0000 + 02767116 v 0101 ~ 11437577 n 0000 ~ 11441561 n 0000 ~ 11450869 n 0000 ~ 11510067 n 0000 | energy that is radiated or transmitted in the form of rays or waves or particles -11499510 19 n 02 corpuscular_radiation 0 particulate_radiation 0 004 @ 13545184 n 0000 ~ 11423607 n 0000 ~ 11428699 n 0000 ~ 11487298 n 0000 | a stream of atomic or subatomic particles that may be charged positively (e.g. alpha particles) or negatively (e.g. beta particles) or not at all (e.g. neutrons) -11499817 19 n 03 radio_wave 0 radio_emission 0 radio_radiation 0 009 @ 11450869 n 0000 #p 11500968 n 0000 ~ 11500122 n 0000 ~ 11500458 n 0000 ~ 11500570 n 0000 ~ 11501230 n 0000 ~ 11507174 n 0000 ~ 11507321 n 0000 ~ 11507511 n 0000 | an electromagnetic wave with a wavelength between 0.5 cm to 30,000 m -11500122 19 n 01 sky_wave 0 002 @ 11499817 n 0000 ~ 11500349 n 0000 | a radio wave that is reflected back to earth by the ionosphere or a communications satellite; permits transmission around the curve of the earth's surface -11500349 19 n 01 ionospheric_wave 0 001 @ 11500122 n 0000 | a sky wave that is reflected by the ionosphere -11500458 19 n 01 ground_wave 0 001 @ 11499817 n 0000 | a radio wave propagated on or near the earth's surface -11500570 19 n 01 radio_signal 0 001 @ 11499817 n 0000 | a radio wave used to transmit and receive messages -11500679 19 n 01 mass_spectrum 0 001 @ 11420831 n 0000 | a distribution of ions as shown by a mass spectrograph or a mass spectrometer -11500816 19 n 01 microwave_spectrum 0 002 @ 11420831 n 0000 #p 11451442 n 0000 | the part of the electromagnetic spectrum corresponding to microwaves -11500968 19 n 02 radio_spectrum 0 radio-frequency_spectrum 0 003 @ 11420831 n 0000 #p 11451442 n 0000 %p 11499817 n 0000 | the entire spectrum of electromagnetic frequencies used for communications; includes frequencies used for radio and radar and television -11501230 19 n 02 carrier_wave 0 carrier 0 002 @ 11499817 n 0000 + 02079933 v 0205 | a radio wave that can be modulated in order to transmit a signal -11501381 19 n 02 rain 0 rainfall 0 009 @ 11494638 n 0000 + 02550333 a 0102 + 02756558 v 0101 ~ 11484741 n 0000 %p 11501649 n 0000 ~ 11501737 n 0000 ~ 11502102 n 0000 ~ 11502322 n 0000 ~ 11502497 n 0000 | water falling in drops from vapor condensed in the atmosphere -11501649 19 n 01 raindrop 0 002 @ 13771404 n 0000 #p 11501381 n 0000 | a drop of rain -11501737 19 n 01 rainstorm 0 004 @ 11462526 n 0000 @ 11501381 n 0000 ~ 11501864 n 0000 ~ 11501988 n 0000 | a storm with rain -11501864 19 n 02 line_storm 0 equinoctial_storm 0 001 @ 11501737 n 0000 | a violent rainstorm near the time of an equinox -11501988 19 n 01 thundershower 0 001 @ 11501737 n 0000 | a short rainstorm accompanied by thunder and lightning -11502102 19 n 07 downpour 0 cloudburst 0 deluge 0 waterspout 1 torrent 1 pelter 0 soaker 0 006 @ 11501381 n 0000 + 00216216 v 0704 + 02758033 v 0602 + 00016532 a 0501 + 00217700 v 0302 + 01524523 v 0301 | a heavy rain -11502322 19 n 02 drizzle 0 mizzle 0 004 @ 11501381 n 0000 + 02757475 v 0202 + 02549234 a 0102 + 02757475 v 0101 | very light rain; stronger than mist but less than a shower -11502497 19 n 02 shower 0 rain_shower 0 004 @ 11501381 n 0000 + 02550333 a 0101 + 02757651 v 0101 ~ 11506167 n 0000 | a brief period of precipitation; "the game was interrupted by a brief shower" -11502695 19 n 01 recognition 0 002 @ 11418750 n 0000 ;c 06037666 n 0000 | (biology) the ability of one molecule to attach to another molecule that has a complementary shape; "molecular recognition drives all of biology, for instance, hormone and receptor or antibody-antigen interactions or the organization of molecules into larger biologically active entities" -11503060 19 n 02 reflection 0 reflexion 0 005 @ 11419404 n 0000 ~ 11454310 n 0000 ~ 11469827 n 0000 ~ 11523256 n 0000 ~ 11527556 n 0000 | the phenomenon of a propagating wave (light or sound) being thrown back from a surface -11503287 19 n 01 refraction 0 003 @ 11419404 n 0000 + 02111838 v 0101 ~ 11503482 n 0000 | the change in direction of a propagating wave (light or sound) when passing from one medium to another -11503482 19 n 02 double_refraction 0 birefringence 0 002 @ 11503287 n 0000 + 02837278 a 0201 | splitting a ray into two parallel rays polarized perpendicularly -11503644 19 n 01 resistance 0 004 @ 11480698 n 0000 ~ 11459538 n 0000 ~ 11504478 n 0000 ~ 11504898 n 0000 | any mechanical force that tends to retard or oppose motion -11503813 19 n 01 conductance 0 001 @ 11449002 n 0000 | a material's capacity to conduct electricity; measured as the reciprocal of electrical resistance -11503968 19 n 06 electric_resistance 0 electrical_resistance 0 impedance 0 resistance 1 resistivity 0 ohmic_resistance 0 003 @ 11449002 n 0000 + 03110183 a 0501 ~ 11504225 n 0000 | a material's opposition to the flow of electric current; measured in ohms -11504225 19 n 01 ohmage 0 001 @ 11503968 n 0000 | the ohmic resistance of a conductor -11504313 19 n 01 reactance 0 001 @ 11449002 n 0000 | opposition to the flow of electric current resulting from inductance and capacitance (rather than resistance) -11504478 19 n 03 acoustic_resistance 0 acoustic_impedance 0 acoustic_reactance 0 001 @ 11503644 n 0000 | opposition to the flow of sound through a surface; acoustic resistance is the real component of acoustic impedance and acoustic reactance is the imaginary component -11504750 19 n 01 reluctance 0 002 @ 11449002 n 0000 ;c 06090869 n 0000 | (physics) opposition to magnetic flux (analogous to electric resistance) -11504898 19 n 02 drag 0 retarding_force 0 003 @ 11503644 n 0000 ~ 11505057 n 0000 ~ 11505210 n 0000 | the phenomenon of resistance to motion through a fluid -11505057 19 n 02 sonic_barrier 0 sound_barrier 0 001 @ 11504898 n 0000 | the increase in aerodynamic drag as an airplane approaches the speed of sound -11505210 19 n 01 windage 0 001 @ 11504898 n 0000 | the retarding force of air friction on a moving object -11505318 19 n 01 rejection 0 002 @ 11418750 n 0000 ;c 06043075 n 0000 | (medicine) an immunological response that refuses to accept substances or organisms that are recognized as foreign; "rejection of the transplanted liver" -11505546 19 n 02 rejuvenation 0 greening 0 004 @ 11418750 n 0000 + 00521478 v 0201 + 00168588 v 0103 + 00097781 v 0101 | the phenomenon of vitality and freshness being restored; "the annual rejuvenation of the landscape" -11505769 19 n 02 resolving_power 0 resolution 0 001 @ 11419404 n 0000 | the ability of a microscope or telescope to measure the angular separation of images that are close together -11505952 19 n 01 resolution 1 002 @ 11419404 n 0000 ;c 06128570 n 0000 | (computer science) the number of pixels per square inch on a computer-generated display; the greater the resolution, the better the picture -11506167 19 n 03 scattering 1 sprinkle 0 sprinkling 0 003 @ 11502497 n 0000 + 02757828 v 0301 + 02757828 v 0201 | a light shower that falls in some locations and not others nearby -11506349 19 n 01 scintillation 0 003 @ 11473954 n 0000 ;c 06090869 n 0000 + 02161330 v 0101 | (physics) a flash of light that is produced in a phosphor when it absorbs a photon or ionizing particle -11506549 19 n 01 sex_linkage 0 001 @ 11418750 n 0000 | an association between genes in sex chromosomes that makes some characteristics appear more frequently in one sex than in the other -11506738 19 n 01 shear 0 002 @ 07358060 n 0000 ;c 06090869 n 0000 | (physics) a deformation of an object in which parallel planes remain parallel but are shifted in a direction parallel to themselves; "the shear changed the quadrilateral into a parallelogram" -11507000 19 n 02 meteor_shower 0 meteor_stream 0 002 @ 11425580 n 0000 %p 11483990 n 0000 | a transient shower of meteors when a meteor swarm enters the earth's atmosphere -11507174 19 n 01 short_wave 0 001 @ 11499817 n 0000 | a radio wave with a wavelength less than 100 meters (a frequency greater than 3 megahertz) -11507321 19 n 01 medium_wave 0 002 @ 11499817 n 0000 ;r 08860123 n 0000 | a radio wave with a wavelength between 100 and 1000 meters (a frequency between 300 kilohertz and 3000 kilohertz) -11507511 19 n 01 long_wave 0 001 @ 11499817 n 0000 | a radio wave with a wavelength longer than a kilometer (a frequency below 300 kilohertz) -11507655 19 n 03 simoom 0 simoon 0 samiel 0 001 @ 11525955 n 0000 | a violent hot sand-laden wind on the deserts of Arabia and North Africa -11507797 19 n 01 skin_effect 0 001 @ 11449002 n 0000 | the tendency of high-frequency alternating current to distribute near the surface of a conductor -11507951 19 n 01 sleet 0 003 @ 11494638 n 0000 + 01079396 a 0101 + 02759254 v 0101 | partially melted snow (or a mixture of rain and snow) -11508092 19 n 02 smoke 0 fume 0 007 @ 11422597 n 0000 + 02767922 v 0201 + 02127100 v 0201 + 02233927 a 0101 + 02767922 v 0102 ~ 11464926 n 0000 ~ 11508303 n 0000 | a cloud of fine particles suspended in a gas -11508303 19 n 01 smother 0 001 @ 11508092 n 0000 | a stifling cloud of smoke -11508382 19 n 02 snow 0 snowfall 0 005 @ 11494638 n 0000 + 02758977 v 0101 ~ 11508578 n 0000 ~ 11508808 n 0000 %p 11509066 n 0000 | precipitation falling from clouds in the form of ice crystals -11508578 19 n 02 flurry 0 snow_flurry 0 001 @ 11508382 n 0000 | a light brief snowfall and gust of wind (or something resembling that); "he had to close the window against the flurries"; "there was a flurry of chicken feathers" -11508808 19 n 01 whiteout 0 001 @ 11508382 n 0000 | an arctic atmospheric condition with clouds over snow produce a uniform whiteness and objects are difficult to see; occurs when the light reflected off the snow equals the light coming through the clouds -11509066 19 n 02 snowflake 0 flake 0 004 @ 14883206 n 0000 #p 11508382 n 0000 #s 15043763 n 0000 %s 14845743 n 0000 | a crystal of snow -11509204 19 n 01 virga 0 001 @ 11494638 n 0000 | light wispy precipitation that evaporates before it reaches the ground (especially when the lower air is low in humidity) -11509377 19 n 07 ice_crystal 0 snow_mist 0 diamond_dust 0 poudrin 0 ice_needle 0 frost_snow 0 frost_mist 0 003 @ 14883206 n 0000 #p 11494638 n 0000 %s 14845743 n 0000 | small crystals of ice -11509570 19 n 02 blizzard 0 snowstorm 0 001 @ 11462526 n 0000 | a storm with widespread snowfall accompanied by strong winds -11509697 19 n 02 solar_energy 0 solar_power 0 001 @ 11424400 n 0000 | energy from the sun that is converted into thermal or electrical energy; "the amount of energy falling on the earth is given by the solar constant, but very little use has been made of solar energy" -11509968 19 n 01 insolation 0 002 @ 11510067 n 0000 + 02112546 v 0102 | incident solar radiation -11510067 19 n 01 solar_radiation 0 005 @ 11499284 n 0000 ~ 11509968 n 0000 ~ 11510223 n 0000 ~ 11510411 n 0000 ~ 11510571 n 0000 | radiation from the sun -11510223 19 n 02 solar_flare 0 flare 0 001 @ 11510067 n 0000 | a sudden eruption of intense high-energy radiation from the sun's surface; associated with sunspots and radio interference -11510411 19 n 01 solar_prominence 0 001 @ 11510067 n 0000 | large eruptions of luminous hydrogen gas that rise thousands of kilometers above the chromosphere -11510571 19 n 01 solar_wind 0 003 @ 11510067 n 0000 #p 09314603 n 0000 %s 09314398 n 0000 | a stream of protons moving radially from the sun -11510714 19 n 02 sound_spectrum 0 acoustic_spectrum 0 002 @ 11420831 n 0000 ~ 11510896 n 0000 | the distribution of energy as a function of frequency for a particular sound source -11510896 19 n 01 speech_spectrum 0 001 @ 11510714 n 0000 | the average sound spectrum for the human voice -11511004 19 n 02 sunspot 0 macula 0 001 @ 04682462 n 0000 | a cooler darker spot appearing periodically on the sun's photosphere; associated with a strong magnetic field -11511176 19 n 01 facula 0 001 @ 04682462 n 0000 | a large bright spot on the sun's photosphere occurring most frequently in the vicinity of sunspots -11511327 19 n 01 facula 1 001 @ 04682462 n 0000 | a bright spot on a planet -11511405 19 n 03 south_wind 0 souther 0 southerly 0 002 @ 11525955 n 0000 + 01602966 a 0201 | a wind from the south -11511523 19 n 05 discharge 0 spark 0 arc 0 electric_arc 0 electric_discharge 0 005 @ 11512650 n 0000 + 02766687 v 0201 ~ 11433297 n 0000 ~ 11440802 n 0000 ~ 11454470 n 0000 | electrical conduction through a gas in an applied electric field -11511765 19 n 01 distortion 1 004 @ 11449002 n 0000 @ 11425401 n 0000 + 00835903 v 0102 ~ 11512144 n 0000 | a change (usually undesired) in the waveform of an acoustic or analog electrical signal; the difference between two measurements of a signal (as between the input and output signal); "heavy metal guitar players use vacuum tube amplifiers to produce extreme distortion" -11512144 19 n 02 nonlinear_distortion 0 amplitude_distortion 0 001 @ 11511765 n 0000 | distortion that occurs when the output signal does not have a linear relation to the input signal -11512331 19 n 03 projection 0 acoustic_projection 0 sound_projection 0 002 @ 11425401 n 0000 + 02180747 v 0101 | the acoustic phenomenon that gives sound a penetrating quality; "our ukuleles have been designed to have superior sound and projection"; "a prime ingredient of public speaking is projection of the voice" -11512650 19 n 01 electrical_conduction 0 004 @ 11512818 n 0000 ~ 11409689 n 0000 ~ 11409892 n 0000 ~ 11511523 n 0000 | the passage of electricity through a conductor -11512818 19 n 02 conduction 0 conductivity 0 004 @ 11419404 n 0000 + 00557813 a 0201 + 02079933 v 0102 ~ 11512650 n 0000 | the transmission of heat or electricity or sound -11512992 19 n 01 propagation 0 006 @ 11419404 n 0000 + 02085573 v 0101 + 01436139 v 0101 ~ 11513179 n 0000 ~ 11513357 n 0000 ~ 11513631 n 0000 | the movement of a wave through a medium -11513179 19 n 02 Doppler_effect 0 Doppler_shift 0 001 @ 11512992 n 0000 | change in the apparent frequency of a wave as observer and source move toward or away from each other -11513357 19 n 02 red_shift 0 redshift 0 002 @ 11512992 n 0000 ;c 06095022 n 0000 | (astronomy) a shift in the spectra of very distant galaxies toward longer wavelengths (toward the red end of the spectrum); generally interpreted as evidence that the universe is expanding -11513631 19 n 01 wave_front 0 002 @ 11512992 n 0000 #p 11524451 n 0000 | all the points just reached by a wave as it propagates -11513761 19 n 01 spherical_aberration 0 001 @ 11420139 n 0000 | an optical aberration resulting in a distorted image -11513880 19 n 01 spillover 0 002 @ 11410625 n 0000 ;c 06149484 n 0000 | (economics) any indirect effect of public expenditure -11514008 19 n 01 squall 0 004 @ 11525955 n 0000 + 00305882 a 0101 + 02770019 v 0101 ~ 11514171 n 0000 | sudden violent winds; often accompanied by precipitation -11514171 19 n 01 line_squall 0 001 @ 11514008 n 0000 | a squall advancing along a front that forms a definite line -11514288 19 n 01 electrical_disturbance 0 001 @ 11449002 n 0000 | electrical signals produced by unwanted sources (atmospherics or receiver noise or unwanted transmitters) -11514462 19 n 01 static_electricity 0 001 @ 11449907 n 0000 | electricity produced by friction -11514559 19 n 02 dynamic_electricity 0 current_electricity 0 001 @ 11449907 n 0000 | a flow of electric charge -11514672 19 n 01 thermoelectricity 0 002 @ 11449907 n 0000 + 02814878 a 0101 | electricity produced by heat (as in a thermocouple) -11514805 19 n 01 stress 0 004 @ 11458624 n 0000 ;c 06090869 n 0000 ~ 11515051 n 0000 ~ 11515526 n 0000 | (physics) force that produces strain on a physical body; "the intensity of stress is expressed in units of force divided by units of area" -11515051 19 n 01 tension 0 004 @ 11514805 n 0000 ;c 06090869 n 0000 + 01572728 v 0102 + 00536304 v 0101 | (physics) a stress that produces an elongation of an elastic physical body; "the direction of maximum tension moves asymptotically toward the direction of the shear" -11515325 19 n 01 strain 0 005 @ 07358060 n 0000 ;c 06090869 n 0000 + 01572728 v 0101 + 00025203 v 0102 ~ 11515644 n 0000 | (physics) deformation of a physical body under the action of applied forces -11515526 19 n 01 breaking_point 0 001 @ 11514805 n 0000 | the degree of tension or stress at which something breaks -11515644 19 n 01 overstrain 0 002 @ 11515325 n 0000 + 01165898 v 0101 | too much strain -11515734 19 n 01 streamer 0 002 @ 11473954 n 0000 #p 11427241 n 0000 | light that streams; "streamers of flames" -11515849 19 n 01 torchlight 0 001 @ 11473954 n 0000 | light from a torch or torches -11515935 19 n 01 twilight 0 001 @ 11473954 n 0000 | the diffused light from the sky when the sun is below the horizon but its rays are refracted by the atmosphere of the earth -11516113 19 n 02 interaction 0 fundamental_interaction 0 006 @ 11419404 n 0000 ;c 06090869 n 0000 ~ 11516439 n 0000 ~ 11516659 n 0000 ~ 11516819 n 0000 ~ 11517210 n 0000 | (physics) the transfer of energy between elementary particles or between an elementary particle and a field or between fields; mediated by gauge bosons -11516439 19 n 01 electromagnetic_interaction 0 001 @ 11516113 n 0000 | an interaction between charged elementary particles that is intermediate in strength between the strong and weak interactions; mediated by photons -11516659 19 n 01 gravitational_interaction 0 001 @ 11516113 n 0000 | a weak interaction between particles that results from their mass; mediated by gravitons -11516819 19 n 03 strong_interaction 0 strong_force 0 color_force 0 002 @ 11516113 n 0000 ;c 06090869 n 0000 | (physics) the interaction that binds protons and neutrons together in the nuclei of atoms; mediated by gluons -11517041 19 n 01 supertwister 0 001 @ 11519450 n 0000 | the most powerful tornado which can create enormously devastating damage; "supertwisters are fortunately rare" -11517210 19 n 02 weak_interaction 0 weak_force 0 002 @ 11516113 n 0000 ;c 06090869 n 0000 | (physics) an interaction between elementary particles involving neutrinos or antineutrinos that is responsible for certain kinds of radioactive decay; mediated by intermediate vector bosons -11517494 19 n 01 suction 0 004 @ 11495041 n 0000 + 02804905 a 0101 + 01854679 v 0101 + 00073584 v 0101 | a force over an area produced by a pressure difference -11517656 19 n 01 sunrise 0 001 @ 11425580 n 0000 | atmospheric phenomena accompanying the daily appearance of the sun -11517776 19 n 01 sunset 0 001 @ 11425580 n 0000 | atmospheric phenomena accompanying the daily disappearance of the sun -11517898 19 n 01 afterglow 0 001 @ 11425580 n 0000 | a glow sometimes seen in the sky after sunset -11517999 19 n 01 surface_tension 0 003 @ 11419404 n 0000 ~ 11433806 n 0000 ~ 11518168 n 0000 | a phenomenon at the surface of a liquid caused by intermolecular forces -11518168 19 n 02 interfacial_tension 0 interfacial_surface_tension 0 001 @ 11517999 n 0000 | surface tension at the surface separating two non-miscible liquids -11518330 19 n 01 syzygy 0 001 @ 11419404 n 0000 | the straight line configuration of 3 celestial bodies (as the sun and earth and moon) in a gravitational system -11518494 19 n 01 tempest 0 003 @ 11527014 n 0000 ;c 06364641 n 0000 + 00304144 a 0104 | (literary) a violent wind; "a tempest swept over the island" -11518645 19 n 01 thermal 0 002 @ 11525955 n 0000 + 02814453 a 0101 | rising current of warm air -11518743 19 n 01 thermionic_current 0 001 @ 11443532 n 0000 | an electric current produced between two electrodes as a result of electrons emitted by thermionic emission -11518915 19 n 02 theta_rhythm 0 theta_wave 0 001 @ 11431302 n 0000 | the normal brainwave in the encephalogram of a person who is awake but relaxed and drowsy; occurs with low frequency and low amplitude -11519121 19 n 03 thunderbolt 0 bolt 0 bolt_of_lightning 0 001 @ 11475279 n 0000 | a discharge of lightning accompanied by thunder -11519253 19 n 03 thunderstorm 0 electrical_storm 0 electric_storm 0 001 @ 11462526 n 0000 | a storm resulting from strong rising air currents; heavy rain or hail along with thunder and lightning -11519450 19 n 02 tornado 0 twister 0 004 @ 11443721 n 0000 + 01868370 v 0206 ~ 11517041 n 0000 ~ 11524324 n 0000 | a localized and violently destructive windstorm occurring over land characterized by a funnel-shaped cloud extending toward the ground -11519702 19 n 02 torsion 0 torque 0 002 @ 11458624 n 0000 ~ 11483829 n 0000 | a twisting force -11519799 19 n 03 tossup 0 toss-up 0 even_chance 0 001 @ 11418138 n 0000 | an unpredictable phenomenon; "it's a toss-up whether he will win or lose" -11519949 19 n 02 trade_wind 0 trade 0 001 @ 11497586 n 0000 | steady winds blowing from east to west above and below the equator; "they rode the trade winds going west" -11520120 19 n 02 antitrade_wind 0 antitrade 0 001 @ 11497586 n 0000 | winds blowing from west to east and lying above the trade winds in the tropics -11520271 19 n 02 tramontane 0 tramontana 0 001 @ 11487950 n 0000 | a cold dry wind that blows south out of the mountains into Italy and the western Mediterranean -11520435 19 n 01 transgression 0 002 @ 11417672 n 0000 + 02689529 v 0101 | the spreading of the sea over land as evidenced by the deposition of marine strata over terrestrial strata -11520619 19 n 02 transparency 0 transparence 0 005 @ 11419404 n 0000 + 00431774 a 0206 + 02413390 a 0108 + 00431774 a 0106 ! 11490058 n 0101 | permitting the free passage of electromagnetic radiation -11520821 19 n 01 trichroism 0 001 @ 11491619 n 0000 | pleochroism of a crystal so that it exhibits three different colors when viewed from three different directions -11520989 19 n 02 turbulence 0 turbulency 0 004 @ 11419404 n 0000 + 00087597 a 0205 + 00087597 a 0105 ~ 07404584 n 0000 | unstable flow of a liquid or gas -11521145 19 n 01 typhoon 0 001 @ 11443721 n 0000 | a tropical cyclone occurring in the western Pacific or Indian oceans -11521267 19 n 01 turbulent_flow 0 002 @ 13482330 n 0000 ~ 11521404 n 0000 | flow in which the velocity at any point varies erratically -11521404 19 n 01 sea 0 002 @ 11521267 n 0000 ~ 11521534 n 0000 | turbulent water with swells of considerable size; "heavy seas" -11521534 19 n 01 head_sea 0 001 @ 11521404 n 0000 | a sea in which the waves are running directly against the course of the ship -11521665 19 n 01 streamline_flow 0 002 @ 13482330 n 0000 ~ 11521824 n 0000 | flow of a gas or liquid in which the velocity at any point is relatively steady -11521824 19 n 01 laminar_flow 0 001 @ 11521665 n 0000 | nonturbulent streamline flow in parallel layers (laminae) -11521940 19 n 05 ultraviolet 0 ultraviolet_radiation 0 ultraviolet_light 0 ultraviolet_illumination 0 UV 0 003 @ 11421401 n 0000 + 02518601 a 0101 ~ 11522206 n 0000 | radiation lying in the ultraviolet range; wave lengths shorter than light but longer than X rays -11522206 19 n 02 sunray 1 sun-ray 1 001 @ 11521940 n 0000 | a ray of artificial ultraviolet light from a sunray lamp -11522325 19 n 01 ultraviolet_spectrum 0 002 @ 11420831 n 0000 #p 11451442 n 0000 | the spectrum of ultraviolet radiation -11522448 19 n 02 draft 0 draught 0 005 @ 11525955 n 0000 + 01397674 a 0202 + 01397674 a 0101 ~ 11522649 n 0000 ~ 11522730 n 0000 | a current of air (usually coming into a chimney or room or vehicle) -11522649 19 n 01 updraft 0 001 @ 11522448 n 0000 | a strong upward air current -11522730 19 n 01 downdraft 0 001 @ 11522448 n 0000 | a strong downward air current -11522815 19 n 01 van_der_Waal's_forces 0 001 @ 11426530 n 0000 | relatively weak attraction between neutral atoms and molecules arising from polarization induced in each particle by the presence of other particles -11523031 19 n 02 vapor_pressure 0 vapour_pressure 0 001 @ 11495041 n 0000 | the pressure exerted by a vapor; often understood to mean saturated vapor pressure (the vapor pressure of a vapor in contact with its liquid form) -11523256 19 n 01 virtual_image 0 001 @ 11503060 n 0000 | a reflected optical image (as seen in a plane mirror) -11523369 19 n 02 visible_spectrum 0 color_spectrum 0 002 @ 11420831 n 0000 #p 11451442 n 0000 | the distribution of colors produced when light is dispersed by a prism -11523538 19 n 03 voltage 2 electromotive_force 0 emf 0 001 @ 11449002 n 0000 | the rate at which energy is drawn from a source that produces a flow of electricity in a circuit; expressed in volts -11523736 19 n 01 magnetomotive_force 0 001 @ 11458624 n 0000 | the force that produces magnetic flux -11523839 19 n 04 life_force 0 vital_force 0 vitality 0 elan_vital 0 003 @ 11458624 n 0000 ;c 06037666 n 0000 + 00902347 a 0301 | (biology) a hypothetical force (not physical or chemical) once thought by Henri Bergson to cause the evolution and development of organisms -11524110 19 n 01 volcanism 0 001 @ 11417672 n 0000 | the phenomena associated with volcanic activity -11524213 19 n 01 waterpower 0 001 @ 11453016 n 0000 | the power to do work that is latent in a head of water -11524324 19 n 01 waterspout 0 001 @ 11519450 n 0000 | a tornado passing over water and picking up a column of water and mist -11524451 19 n 01 wave 0 004 @ 11524662 n 0000 ~ 11439924 n 0000 ~ 11472612 n 0000 %p 11513631 n 0000 | a persistent and widespread unusual weather condition (especially of unusual temperatures); "a heat wave" -11524662 19 n 04 weather 0 weather_condition 0 conditions 0 atmospheric_condition 0 014 @ 11425580 n 0000 ;c 06118563 n 0000 + 00275088 v 0101 ~ 11440012 n 0000 ~ 11456462 n 0000 ~ 11466701 n 0000 ~ 11482140 n 0000 ~ 11494638 n 0000 ~ 11524451 n 0000 ~ 11525303 n 0000 ~ 11525955 n 0000 ~ 14520278 n 0000 ~ 14522113 n 0000 ~ 14523090 n 0000 | the atmospheric conditions that comprise the state of the atmosphere in terms of temperature and wind and clouds and precipitation; "they were hoping for good weather"; "every day we have weather conditions and yesterday was no exception"; "the conditions were too rainy for playing in the snow" -11525303 19 n 01 elements 0 001 @ 11524662 n 0000 | violent or severe weather (viewed as caused by the action of the four elements); "they felt the full fury of the elements" -11525480 19 n 02 west_wind 0 wester 0 003 @ 11525955 n 0000 + 00824753 a 0201 ~ 11525614 n 0000 | wind that blows from west to east -11525614 19 n 02 prevailing_westerly 0 westerly 0 002 @ 11525480 n 0000 + 00824753 a 0201 | the winds from the west that occur in the temperate zones of the Earth -11525779 19 n 01 whirlwind 0 002 @ 11527014 n 0000 ~ 11448013 n 0000 | a more or less vertical column of air whirling around itself as it moves over the surface of the Earth -11525955 19 n 03 wind 0 air_current 1 current_of_air 0 034 @ 11524662 n 0000 + 00305225 a 0103 + 00980385 a 0101 ~ 11423356 n 0000 ~ 11431617 n 0000 ~ 11431754 n 0000 ~ 11438612 n 0000 ~ 11438756 n 0000 ~ 11442524 n 0000 ~ 11442630 n 0000 ~ 11442752 n 0000 ~ 11442894 n 0000 ~ 11443057 n 0000 ~ 11443173 n 0000 ~ 11443283 n 0000 ~ 11443409 n 0000 ~ 11447691 n 0000 ~ 11448343 n 0000 ~ 11448475 n 0000 ~ 11448593 n 0000 ~ 11448714 n 0000 ~ 11461825 n 0000 ~ 11465017 n 0000 ~ 11484570 n 0000 ~ 11484741 n 0000 ~ 11487950 n 0000 ~ 11497586 n 0000 ~ 11507655 n 0000 ~ 11511405 n 0000 ~ 11514008 n 0000 ~ 11518645 n 0000 ~ 11522448 n 0000 ~ 11525480 n 0000 %s 14841267 n 0000 | air moving (sometimes with considerable force) from an area of high pressure to an area of low pressure; "trees bent under the fierce winds"; "when there is no wind, row"; "the radioactivity was being swept upwards by the air current and out into the atmosphere" -11526894 19 n 02 wind_generation 0 wind_power 0 001 @ 11424400 n 0000 | power derived from the wind (as by windmills) -11527014 19 n 01 windstorm 0 005 @ 11462526 n 0000 ~ 11443721 n 0000 ~ 11448153 n 0000 ~ 11518494 n 0000 ~ 11525779 n 0000 | a storm consisting of violent winds -11527177 19 n 04 X_ray 0 X-ray 0 X-radiation 0 roentgen_ray 0 002 @ 11450869 n 0000 @ 11437577 n 0000 | electromagnetic radiation of short wavelength produced when high-speed electrons strike a solid target -11527386 19 n 01 X-ray_diffraction 0 001 @ 11446934 n 0000 | the scattering of X rays by the atoms of a crystal; the diffraction pattern shows structure of the crystal -11527556 19 n 01 zodiacal_light 0 001 @ 11503060 n 0000 | a luminous tract in the sky; a reflection of sunlight from cosmic dust in the plane of the ecliptic; visible just before sunrise and just after sunset -11527767 19 n 01 chop 0 002 @ 11419404 n 0000 + 00305464 a 0101 | the irregular motion of waves (usually caused by wind blowing in a direction opposite to the tide); "the boat headed into the chop" -11527967 19 n 02 flotation 0 floatation 0 007 @ 11419404 n 0000 + 01874568 v 0201 + 01904293 v 0201 + 01514887 v 0201 + 01874568 v 0101 + 01904293 v 0101 + 01514887 v 0101 | the phenomenon of floating (remaining on the surface of a liquid without sinking) -11528225 19 n 01 parallax 0 003 @ 11490638 n 0000 ~ 11528636 n 0000 ~ 11528939 n 0000 | the apparent displacement of an object as seen from two different points that are not on a line with the object -11528427 19 n 01 Tyndall_effect 0 001 @ 11490638 n 0000 | the phenomenon in which light is scattered by very small particles in its path; it makes a beam of light visible; the scattered light is mainly blue -11528636 19 n 02 heliocentric_parallax 0 annual_parallax 0 002 @ 11528225 n 0000 ~ 11528841 n 0000 | the parallax of a celestial body using two points in the earth's orbit around the sun as the baseline -11528841 19 n 01 stellar_parallax 0 001 @ 11528636 n 0000 | the heliocentric parallax of a star -11528939 19 n 02 geocentric_parallax 0 diurnal_parallax 0 003 @ 11528225 n 0000 ~ 11529158 n 0000 ~ 11529441 n 0000 | the parallax of a celestial body using two points on the surface of the earth as the earth rotates -11529158 19 n 01 horizontal_parallax 0 001 @ 11528939 n 0000 | the maximum parallax observed when the celestial body is at the horizon -11529295 19 n 01 pulsation 0 001 @ 00034213 n 0000 | a periodically recurring phenomenon that alternately increases and decreases some quantity -11529441 19 n 01 solar_parallax 0 001 @ 11528939 n 0000 | the angle subtended by the mean equatorial radius of the Earth at a distance of one astronomical unit -11529603 20 n 03 Plantae 0 kingdom_Plantae 0 plant_kingdom 0 014 @ 07940552 n 0000 ;c 06066555 n 0000 %m 00017222 n 0000 %m 11531457 n 0000 %m 11534434 n 0000 %m 11534677 n 0000 %m 11536778 n 0000 %m 11544769 n 0000 %m 11551211 n 0000 %m 11551659 n 0000 %m 11551898 n 0000 %m 11744583 n 0000 %m 11744859 n 0000 %m 13221243 n 0000 | (botany) the taxonomic kingdom comprising all living or extinct plants -11530008 20 n 01 microflora 0 002 @ 00017222 n 0000 @ 01326291 n 0000 | microscopic plants; bacteria are often considered to be microflora -11530149 20 n 01 plant_cell 0 002 @ 00006484 n 0000 %p 11530283 n 0000 | a cell that is a structural and functional unit of a plant -11530283 20 n 01 cell_wall 0 002 @ 08591680 n 0000 #p 11530149 n 0000 | a rigid layer of polysaccharides enclosing the membrane of plant and prokaryotic cells; maintains the shape of the cell and serves as a protective barrier -11530512 20 n 01 crop 1 006 @ 00017222 n 0000 ~ 13086063 n 0000 ~ 13086220 n 0000 ~ 13086438 n 0000 ~ 13086556 n 0000 ~ 13126308 n 0000 | a cultivated plant that is grown commercially on a large scale -11530715 20 n 01 endemic 0 001 @ 00017222 n 0000 | a plant that is native to a certain limited area; "it is an endemic found only this island" -11530860 20 n 01 holophyte 0 002 @ 00017222 n 0000 + 00315931 a 0101 | an organism that produces its own food by photosynthesis -11530990 20 n 01 non-flowering_plant 0 001 @ 00017222 n 0000 | a plant that does not bear flowers -11531090 20 n 01 plantlet 0 002 @ 00017222 n 0000 + 00017222 n 0101 | a young plant or a small plant -11531193 20 n 01 wilding 0 002 @ 00017222 n 0000 ~ 11672400 n 0000 | a wild uncultivated plant (especially a wild apple or crabapple tree) -11531334 20 n 01 semi-climber 0 001 @ 13100677 n 0000 | a plant that tends to climb and on occasion can grow like a vine -11531457 20 n 01 Thallophyta 0 002 @ 08220891 n 0000 #m 11529603 n 0000 | used only in former classifications: comprising what is now considered a heterogeneous assemblage of flowerless and seedless organisms: algae; bacteria; fungi; lichens -11531701 20 n 01 thallophyte 0 002 @ 11552133 n 0000 + 03142512 a 0101 | any of a group of cryptogamic organisms consisting principally of a thallus and thus showing no differentiation into stem and root and leaf -11531916 20 n 01 button 0 001 @ 13086908 n 0000 | any of various plant parts that resemble buttons -11532017 20 n 01 thallus 0 002 @ 13086908 n 0000 ~ 11532194 n 0000 | a plant body without true stems or roots or leaves or vascular system; characteristic of the thallophytes -11532194 20 n 01 crustose_thallus 0 001 @ 11532017 n 0000 | thin crusty lichen thallus; adheres closely to or is embedded in the surface on which it grows -11532351 20 n 02 cap 0 pileus 0 002 @ 13086908 n 0000 #p 12992868 n 0000 | a fruiting structure resembling an umbrella or a cone that forms the top of a stalked fleshy fungus such as a mushroom -11532547 20 n 01 calyptra 0 001 @ 13086908 n 0000 | the hood or cap covering the calyx of certain plants: e.g., the California poppy -11532682 20 n 01 volva 0 002 @ 13086908 n 0000 #p 12992868 n 0000 | cuplike structure around the base of the stalk of certain fungi -11532816 20 n 01 ascocarp 0 007 @ 13089246 n 0000 #p 13024012 n 0000 + 02644748 a 0101 ~ 11533472 n 0000 ~ 11533622 n 0000 ~ 11533772 n 0000 ~ 12962310 n 0000 | mature fruiting body of an ascomycetous fungus -11533026 20 n 01 acervulus 0 001 @ 13089246 n 0000 | small asexual fruiting body resembling a cushion or blister consisting of a mat of hyphae that is produced on a host by some fungi -11533212 20 n 01 basidiocarp 0 002 @ 13089246 n 0000 #p 12997654 n 0000 | the fruiting body of a basidiomycete which bears its spores on special cells -11533365 20 n 01 peridium 0 001 @ 09257949 n 0000 | outer layer of the spore-bearing organ in many fungi -11533472 20 n 01 ascoma 0 001 @ 11532816 n 0000 | an ascocarp having the spore-bearing layer of cells (the hymenium) on a broad disklike receptacle -11533622 20 n 01 apothecium 0 003 @ 11532816 n 0000 + 02635069 a 0101 ~ 13030337 n 0000 | a cuplike ascocarp in many lichens and ascomycetous fungi -11533772 20 n 02 cleistothecium 0 cleistocarp 0 001 @ 11532816 n 0000 | closed spore-bearing structure of some fungi (especially Aspergillaceae and Erysiphaceae) from which spores are released only by decay or disintegration -11533999 20 n 01 domatium 0 001 @ 13086908 n 0000 | a part of a plant (e.g., a leaf) that has been modified to provide protection for insects or mites or fungi -11534161 20 n 01 podetium 0 002 @ 13088096 n 0000 ~ 11534360 n 0000 | an organ or body resembling a stalk; especially the outgrowth of the thallus of certain lichens on which the ascocarp is borne -11534360 20 n 01 seta 2 001 @ 11534161 n 0000 | stalk of a moss capsule -11534434 20 n 02 Tracheophyta 0 division_Tracheophyta 0 003 @ 08220891 n 0000 #m 11529603 n 0000 %m 11664677 n 0000 | in former classifications: comprising plants with a vascular system including ferns and fern allies as well as seed plants -11534677 20 n 01 plant_order 0 075 @ 08106934 n 0000 #m 11529603 n 0000 ~ 11538341 n 0000 ~ 11539675 n 0000 ~ 11540000 n 0000 ~ 11540230 n 0000 ~ 11540747 n 0000 ~ 11541713 n 0000 ~ 11542920 n 0000 ~ 11543429 n 0000 ~ 11544131 n 0000 ~ 11596845 n 0000 ~ 11600139 n 0000 ~ 11604225 n 0000 ~ 11604904 n 0000 ~ 11606379 n 0000 ~ 11607392 n 0000 ~ 11660848 n 0000 ~ 11663813 n 0000 ~ 11692952 n 0000 ~ 11740655 n 0000 ~ 11778391 n 0000 ~ 11800799 n 0000 ~ 11804082 n 0000 ~ 11841368 n 0000 ~ 11864364 n 0000 ~ 11911274 n 0000 ~ 12039524 n 0000 ~ 12090041 n 0000 ~ 12097746 n 0000 ~ 12100382 n 0000 ~ 12154228 n 0000 ~ 12169526 n 0000 ~ 12213197 n 0000 ~ 12213485 n 0000 ~ 12224309 n 0000 ~ 12226009 n 0000 ~ 12250708 n 0000 ~ 12260021 n 0000 ~ 12289744 n 0000 ~ 12300441 n 0000 ~ 12317763 n 0000 ~ 12322887 n 0000 ~ 12350234 n 0000 ~ 12359026 n 0000 ~ 12359578 n 0000 ~ 12391477 n 0000 ~ 12410715 n 0000 ~ 12581230 n 0000 ~ 12598247 n 0000 ~ 12600417 n 0000 ~ 12605019 n 0000 ~ 12610933 n 0000 ~ 12618942 n 0000 ~ 12659730 n 0000 ~ 12684640 n 0000 ~ 12723835 n 0000 ~ 12734446 n 0000 ~ 12740196 n 0000 ~ 12769815 n 0000 ~ 12778926 n 0000 ~ 12808227 n 0000 ~ 12808751 n 0000 ~ 12959802 n 0000 ~ 13140535 n 0000 ~ 13148602 n 0000 ~ 13169674 n 0000 ~ 13214645 n 0000 ~ 13216238 n 0000 ~ 13217213 n 0000 ~ 13218900 n 0000 ~ 13221807 n 0000 ~ 13222227 n 0000 ~ 13224086 n 0000 ~ 13225729 n 0000 | the order of plants -11536087 20 n 01 ornamental 0 003 @ 00017222 n 0000 + 01091234 a 0103 ~ 12172906 n 0000 | any plant grown for its beauty or ornamental value -11536230 20 n 01 pot_plant 0 002 @ 00017222 n 0000 ;r 08860123 n 0000 | a plant suitable for growing in a flowerpot (especially indoors) -11536369 20 n 01 acrogen 0 002 @ 00017222 n 0000 + 02602434 a 0102 | any flowerless plant such as a fern (pteridophyte) or moss (bryophyte) in which growth occurs only at the tip of the main stem -11536567 20 n 01 apomict 0 001 @ 00017222 n 0000 | a plant that reproduces or is reproduced by apomixis -11536673 20 n 01 aquatic 0 002 @ 00017222 n 0000 + 00124077 a 0101 | a plant that lives in or on water -11536778 20 n 02 Bryophyta 0 division_Bryophyta 0 009 @ 08220891 n 0000 #m 11529603 n 0000 + 03141177 a 0101 %m 11537327 n 0000 %m 11537665 n 0000 %m 11537886 n 0000 %m 11538123 n 0000 %m 11538935 n 0000 %m 11542341 n 0000 | a division of nonflowering plants characterized by rhizoids rather than true roots and having little or no organized vascular tissue and showing alternation of generations between gamete-bearing forms and spore-bearing forms; comprises true mosses (Bryopsida) and liverworts (Hepaticopsida) and hornworts (Anthoceropsida) -11537327 20 n 02 bryophyte 0 nonvascular_plant 0 004 @ 13084479 n 0000 #m 11536778 n 0000 ~ 11537506 n 0000 ~ 11542640 n 0000 | any of numerous plants of the division Bryophyta -11537506 20 n 01 moss 0 005 @ 11537327 n 0000 + 01696632 a 0102 ~ 11539289 n 0000 ~ 11539467 n 0000 ~ 11542137 n 0000 | tiny leafy-stemmed flowerless plants -11537665 20 n 01 moss_family 0 009 @ 08107499 n 0000 #m 11536778 n 0000 ~ 11538582 n 0000 ~ 11540439 n 0000 ~ 11540970 n 0000 ~ 11541322 n 0000 ~ 11543264 n 0000 ~ 11543602 n 0000 ~ 11544314 n 0000 | a family of mosses -11537886 20 n 01 moss_genus 0 010 @ 08108972 n 0000 #m 11536778 n 0000 ~ 11538716 n 0000 ~ 11539825 n 0000 ~ 11540631 n 0000 ~ 11541111 n 0000 ~ 11541579 n 0000 ~ 11541919 n 0000 ~ 11543792 n 0000 ~ 11544540 n 0000 | a genus of mosses -11538123 20 n 02 Anthoceropsida 0 class_Anthoceropsida 0 004 @ 08103777 n 0000 #m 11536778 n 0000 %m 11538341 n 0000 %m 11538582 n 0000 | hornworts: in some classification systems included in the class Hepaticopsida -11538341 20 n 02 Anthocerotales 0 order_Anthocerotales 0 003 @ 11534677 n 0000 #m 11538123 n 0000 %m 11538820 n 0000 | hornworts; liverworts having a thalloid gametophyte; in some classification systems included in the class Hepaticopsida -11538582 20 n 02 Anthocerotaceae 0 family_Anthocerotaceae 0 003 @ 11537665 n 0000 #m 11538123 n 0000 %m 11538716 n 0000 | hornworts -11538716 20 n 02 Anthoceros 0 genus_Anthoceros 0 002 @ 11537886 n 0000 #m 11538582 n 0000 | hornworts -11538820 20 n 01 hornwort 1 002 @ 11542640 n 0000 #m 11538341 n 0000 | liverworts with slender hornlike capsules -11538935 20 n 04 Bryopsida 0 class_Bryopsida 0 Musci 0 class_Musci 0 007 @ 08103777 n 0000 #m 11536778 n 0000 %m 11539675 n 0000 %m 11540000 n 0000 %m 11540230 n 0000 %m 11540747 n 0000 %m 11541713 n 0000 | true mosses: bryophytes having leafy rather than thalloid gametophytes: comprises orders Andreaeales; Bryales; Dicranales; Eubryales; Sphagnales -11539289 20 n 02 acrocarp 0 acrocarpous_moss 0 002 @ 11537506 n 0000 ! 11539467 n 0101 | a moss in which the main axis is terminated by the archegonium (and hence the capsule) -11539467 20 n 02 pleurocarp 0 pleurocarpous_moss 0 003 @ 11537506 n 0000 + 02590382 a 0101 ! 11539289 n 0101 | a moss having the archegonium or antheridium on a short side branch rather than the main stalk -11539675 20 n 02 Andreaeales 0 order_Andreaeales 0 003 @ 11534677 n 0000 #m 11538935 n 0000 %m 11539825 n 0000 | comprises a single genus: Andreaea -11539825 20 n 02 Andreaea 0 genus_Andreaea 0 002 @ 11537886 n 0000 #m 11539675 n 0000 | brown or blackish Alpine mosses having a dehiscent capsule with 4 longitudinal slits -11540000 20 n 02 Bryales 0 order_Bryales 0 002 @ 11534677 n 0000 #m 11538935 n 0000 | category used in some classification systems for mosses having the spore case separated from the capsule wall by a hollow intercellular space -11540230 20 n 02 Dicranales 0 order_Dicranales 0 003 @ 11534677 n 0000 #m 11538935 n 0000 %m 11540439 n 0000 | widely distributed order of mosses with erect gametophores and sporophytes at the tips of stems -11540439 20 n 02 Dicranaceae 0 family_Dicranaceae 0 003 @ 11537665 n 0000 #m 11540230 n 0000 %m 11540631 n 0000 | mosses having costate leaves and long-stalked capsules with cleft peristome -11540631 20 n 02 Dicranum 0 genus_Dicranum 0 002 @ 11537886 n 0000 #m 11540439 n 0000 | type genus of Dicranaceae -11540747 20 n 02 Eubryales 0 order_Eubryales 0 004 @ 11534677 n 0000 #m 11538935 n 0000 %m 11540970 n 0000 %m 11541322 n 0000 | mosses with perennial erect gametophores and stems with rows of leaves and drooping capsules -11540970 20 n 02 Bryaceae 0 family_Bryaceae 0 003 @ 11537665 n 0000 #m 11540747 n 0000 %m 11541111 n 0000 | a family of acrocarpous mosses -11541111 20 n 02 Bryum 0 genus_Bryum 0 002 @ 11537886 n 0000 #m 11540970 n 0000 | type genus of the Bryaceae: mosses distinguished by mostly erect and tufted gametophytes and symmetrical short-necked capsules -11541322 20 n 02 Mniaceae 0 family_Mniaceae 0 003 @ 11537665 n 0000 #m 11540747 n 0000 %m 11541579 n 0000 | family of erect mosses with club-shaped paraphyses and the hexagonal cells of the upper leaf surface; sometimes treated as a subfamily of Bryaceae -11541579 20 n 02 Mnium 0 genus_Mnium 0 002 @ 11537886 n 0000 #m 11541322 n 0000 | mosses similar to those of genus Bryum but larger -11541713 20 n 02 Sphagnales 0 order_Sphagnales 0 003 @ 11534677 n 0000 #m 11538935 n 0000 %m 11541919 n 0000 | coextensive with the genus Sphagnum; in some classifications isolated in a separate subclass -11541919 20 n 01 genus_Sphagnum 0 003 @ 11537886 n 0000 #m 11541713 n 0000 %m 11542137 n 0000 | a large genus constituting the order Sphagnales: atypical mosses of temperate bogs with leaves that can hold much water -11542137 20 n 04 sphagnum 0 sphagnum_moss 0 peat_moss 0 bog_moss 0 002 @ 11537506 n 0000 #m 11541919 n 0000 | any of various pale or ashy mosses of the genus Sphagnum whose decomposed remains form peat -11542341 20 n 04 Hepaticopsida 0 class_Hepaticopsida 0 Hepaticae 0 class_Hepaticae 0 006 @ 08103777 n 0000 #m 11536778 n 0000 %m 11542640 n 0000 %m 11542920 n 0000 %m 11543429 n 0000 %m 11544131 n 0000 | liverworts: comprises orders Anthocerotales; Jungermanniales; Marchantiales; Sphaerocarpales -11542640 20 n 02 liverwort 0 hepatic 0 005 @ 11537327 n 0000 #m 11542341 n 0000 ~ 11538820 n 0000 ~ 11543105 n 0000 ~ 11544015 n 0000 | any of numerous small green nonvascular plants of the class Hepaticopsida growing in wet places and resembling green seaweeds or leafy mosses -11542920 20 n 02 Jungermanniales 0 order_Jungermanniales 0 004 @ 11534677 n 0000 #m 11542341 n 0000 %m 11543105 n 0000 %m 11543264 n 0000 | large order of chiefly tropical liverworts -11543105 20 n 02 leafy_liverwort 0 scale_moss 0 002 @ 11542640 n 0000 #m 11542920 n 0000 | moss-like liverwort with tiny scalelike leaves; usually epiphytic -11543264 20 n 02 Jungermanniaceae 0 family_Jungermanniaceae 0 002 @ 11537665 n 0000 #m 11542920 n 0000 | comprising the leafy members of the order Jungermanniales -11543429 20 n 02 Marchantiales 0 order_Marchantiales 0 003 @ 11534677 n 0000 #m 11542341 n 0000 %m 11543602 n 0000 | liverworts with gametophyte differentiated internally -11543602 20 n 02 Marchantiaceae 0 family_Marchantiaceae 0 003 @ 11537665 n 0000 #m 11543429 n 0000 %m 11543792 n 0000 | liverworts with prostrate and usually dichotomously branched thalli -11543792 20 n 02 Marchantia 0 genus_Marchantia 0 003 @ 11537886 n 0000 #m 11543602 n 0000 %m 11544015 n 0000 | type genus of Marchantiaceae; liverworts that reproduce asexually by gemmae and have stalked antheridiophores -11544015 20 n 02 hepatica 2 Marchantia_polymorpha 0 002 @ 11542640 n 0000 #m 11543792 n 0000 | a common liverwort -11544131 20 n 02 Sphaerocarpales 0 order_Sphaerocarpales 0 003 @ 11534677 n 0000 #m 11542341 n 0000 %m 11544314 n 0000 | small order sometimes included in the order Jungermanniales -11544314 20 n 02 Sphaerocarpaceae 0 family_Sphaerocarpaceae 0 003 @ 11537665 n 0000 #m 11544131 n 0000 %m 11544540 n 0000 | liverworts with bilaterally symmetrical gametophytes; sometimes placed in the order Jungermanniales -11544540 20 n 04 Sphaerocarpus 0 genus_Sphaerocarpus 0 Sphaerocarpos 0 genus_Sphaerocarpos 0 002 @ 11537886 n 0000 #m 11544314 n 0000 | type genus of Sphaerocarpaceae; liverworts with small many-lobed usually orbicular thallus -11544769 20 n 02 Pteridophyta 0 division_Pteridophyta 0 011 @ 08220891 n 0000 #m 11529603 n 0000 %m 11545214 n 0000 %m 11545524 n 0000 %m 13166338 n 0000 %m 13167078 n 0000 %m 13169219 n 0000 %m 13215936 n 0000 %m 13217213 n 0000 %m 13218722 n 0000 %m 13220842 n 0000 | containing all the vascular plants that do not bear seeds: ferns, horsetails, club mosses, and whisk ferns; in some classifications considered a subdivision of Tracheophyta -11545214 20 n 01 genus_Pecopteris 0 003 @ 13167078 n 0000 #m 11544769 n 0000 %m 11545350 n 0000 | genus of Carboniferous fossil ferns -11545350 20 n 01 pecopteris 0 002 @ 11545714 n 0000 #m 11545214 n 0000 | Carboniferous fossil fern characterized by a regular arrangement of the leaflets resembling a comb -11545524 20 n 02 pteridophyte 0 nonflowering_plant 0 004 @ 13083586 n 0000 #m 11544769 n 0000 ~ 11545714 n 0000 ~ 11547562 n 0000 | plants having vascular tissue and reproducing by spores -11545714 20 n 01 fern 0 093 @ 11545524 n 0000 #m 13169219 n 0000 + 00209390 a 0102 + 00209079 a 0102 ~ 11545350 n 0000 %p 11550022 n 0000 ~ 12951835 n 0000 ~ 12952165 n 0000 ~ 12953206 n 0000 ~ 12954353 n 0000 ~ 12954799 n 0000 ~ 12955414 n 0000 ~ 12955840 n 0000 ~ 12956170 n 0000 ~ 12956922 n 0000 ~ 12957076 n 0000 ~ 12960378 n 0000 ~ 12960863 n 0000 ~ 12961879 n 0000 ~ 13170840 n 0000 ~ 13171210 n 0000 ~ 13172923 n 0000 ~ 13174354 n 0000 ~ 13174670 n 0000 ~ 13175682 n 0000 ~ 13176000 n 0000 ~ 13176363 n 0000 ~ 13176714 n 0000 ~ 13177048 n 0000 ~ 13177529 n 0000 ~ 13178284 n 0000 ~ 13178707 n 0000 ~ 13179804 n 0000 ~ 13180534 n 0000 ~ 13181055 n 0000 ~ 13183056 n 0000 ~ 13183489 n 0000 ~ 13184001 n 0000 ~ 13184394 n 0000 ~ 13185134 n 0000 ~ 13185658 n 0000 ~ 13186388 n 0000 ~ 13186654 n 0000 ~ 13188096 n 0000 ~ 13189428 n 0000 ~ 13189844 n 0000 ~ 13190060 n 0000 ~ 13191620 n 0000 ~ 13192625 n 0000 ~ 13193642 n 0000 ~ 13194572 n 0000 ~ 13194918 n 0000 ~ 13195341 n 0000 ~ 13195761 n 0000 ~ 13196738 n 0000 ~ 13197274 n 0000 ~ 13197507 n 0000 ~ 13198054 n 0000 ~ 13198482 n 0000 ~ 13198914 n 0000 ~ 13199717 n 0000 ~ 13199970 n 0000 ~ 13200986 n 0000 ~ 13201423 n 0000 ~ 13201566 n 0000 ~ 13201969 n 0000 ~ 13204276 n 0000 ~ 13204826 n 0000 ~ 13206178 n 0000 ~ 13206817 n 0000 ~ 13208302 n 0000 ~ 13208705 n 0000 ~ 13209129 n 0000 ~ 13209808 n 0000 ~ 13210205 n 0000 ~ 13211020 n 0000 ~ 13211790 n 0000 ~ 13212559 n 0000 ~ 13213066 n 0000 ~ 13213235 n 0000 ~ 13213397 n 0000 ~ 13213577 n 0000 ~ 13214031 n 0000 ~ 13214217 n 0000 ~ 13214340 n 0000 ~ 13214485 n 0000 ~ 13215258 n 0000 ~ 13227778 n 0000 ~ 13228536 n 0000 ~ 13229543 n 0000 ~ 13229951 n 0000 ~ 13230190 n 0000 ~ 13230662 n 0000 | any of numerous flowerless and seedless vascular plants having true roots from a rhizome and fronds that uncurl upward; reproduce by spores -11547562 20 n 01 fern_ally 0 005 @ 11545524 n 0000 ~ 13216812 n 0000 ~ 13219422 n 0000 ~ 13221529 n 0000 ~ 13226320 n 0000 | pteridophytes of other classes than Filicopsida -11547737 20 n 01 agamete 0 003 @ 11675842 n 0000 + 02136158 a 0101 ~ 11547855 n 0000 | an asexual reproductive cell -11547855 20 n 01 spore 0 017 @ 11547737 n 0000 ~ 11548465 n 0000 ~ 11548594 n 0000 ~ 11548728 n 0000 ~ 11548870 n 0000 ~ 11549009 n 0000 ~ 11549245 n 0000 ~ 11549487 n 0000 ~ 11549779 n 0000 ~ 11549895 n 0000 ~ 11550022 n 0000 ~ 11675537 n 0000 ~ 11687789 n 0000 ~ 11688199 n 0000 ~ 13063666 n 0000 ~ 13092240 n 0000 ~ 13239921 n 0000 | a small usually single-celled asexual reproductive body produced by many nonflowering plants and fungi and some bacteria and protozoans and that are capable of developing into a new individual without sexual fusion; "a sexual spore is formed after the fusion of gametes" -11548465 20 n 01 basidiospore 0 002 @ 11547855 n 0000 + 02659571 a 0101 | a sexually produced fungal spore borne on a basidium -11548594 20 n 01 endospore 0 001 @ 11547855 n 0000 | a small asexual spore that develops inside the cell of some bacteria and algae -11548728 20 n 01 carpospore 0 004 @ 11547855 n 0000 #p 01413942 n 0000 + 02681567 a 0101 + 02681681 a 0101 | a nonmotile spore of red algae -11548870 20 n 01 chlamydospore 0 002 @ 11547855 n 0000 ~ 11549638 n 0000 | thick-walled asexual resting spore of certain fungi and algae -11549009 20 n 02 conidium 0 conidiospore 0 001 @ 11547855 n 0000 | an asexually produced fungal spore formed on a conidiophore -11549138 20 n 01 conidiophore 0 001 @ 13022538 n 0000 | a specialized fungal hypha that produces conidia -11549245 20 n 01 oospore 0 001 @ 11547855 n 0000 | a thick-walled sexual spore that develops from a fertilized oosphere in some algae and fungi -11549391 20 n 01 oosphere 0 001 @ 05456945 n 0000 | a gamete; used especially of lower plants -11549487 20 n 01 resting_spore 0 001 @ 11547855 n 0000 | a spore of certain algae or fungi that lies dormant; may germinate after a prolonged period -11549638 20 n 01 teliospore 0 001 @ 11548870 n 0000 | a chlamydospore that develops in the last stage of the life cycle of the rust fungus -11549779 20 n 01 tetraspore 0 001 @ 11547855 n 0000 | one of the four asexual spores produced within a sporangium -11549895 20 n 01 zoospore 0 001 @ 11547855 n 0000 | an asexual spore of some algae and fungi that moves by means of flagella -11550022 20 n 01 fern_seed 0 002 @ 11547855 n 0000 #p 11545714 n 0000 | the asexual spore of ferns that resembles dust; once thought to be seeds and to make the possessor invisible -11550205 20 n 01 fructification 0 001 @ 11675842 n 0000 | organs of fruiting (especially the reproductive parts of ferns and mosses) -11550340 20 n 01 gleba 0 002 @ 11675842 n 0000 #p 13093380 n 0000 | fleshy spore-bearing inner mass of e.g. a puffball or stinkhorn -11550474 20 n 01 hymenium 0 002 @ 11675842 n 0000 #p 12992868 n 0000 | spore-bearing layer of cells in certain fungi containing asci or basidia -11550620 20 n 01 pycnidium 0 001 @ 13086908 n 0000 | flask-shaped asexual structure containing conidia -11550725 20 n 02 sporocarp 0 spore_case 2 001 @ 11675842 n 0000 | specialized leaf branch in certain aquatic ferns that encloses the sori or clusters of sporangia -11550890 20 n 01 stipule 0 001 @ 13086908 n 0000 | a small leafy outgrowth at the base of a leaf or its stalk; usually occurring in pairs and soon shed -11551044 20 n 01 tepal 0 001 @ 13086908 n 0000 | an undifferentiated part of a perianth that cannot be distinguished as a sepal or a petal (as in lilies and tulips) -11551211 20 n 02 Spermatophyta 0 division_Spermatophyta 0 004 @ 08220891 n 0000 #m 11529603 n 0000 %m 11595312 n 0000 %m 11664929 n 0000 | seed plants; comprises the Angiospermae (or Magnoliophyta) and Gymnospermae (or Gymnospermophyta); in some classification systems Spermatophyta is coordinate with Pteridophyta (spore producing plants having vascular tissue and roots) and Bryophyta (spore producing plants lacking vascular tissue and roots) -11551659 20 n 01 Phanerogamae 0 003 @ 08220891 n 0000 #m 11529603 n 0000 ! 11551898 n 0101 | in former classification systems: one of two major plant divisions, including all seed-bearing plants; superseded by the division Spermatophyta -11551898 20 n 01 Cryptogamia 0 003 @ 08220891 n 0000 #m 11529603 n 0000 ! 11551659 n 0101 | in former classification systems: one of two major plant divisions, including all plants that do not bear seeds: ferns, mosses, algae, fungi -11552133 20 n 01 cryptogam 0 004 @ 00017222 n 0000 + 02707008 a 0101 + 02707008 a 0102 ~ 11531701 n 0000 | formerly recognized taxonomic group including all flowerless and seedless plants that reproduce by means of spores: ferns, mosses, algae, fungi -11552386 20 n 03 spermatophyte 0 phanerogam 0 seed_plant 0 005 @ 13083586 n 0000 ~ 11552594 n 0000 ~ 11552686 n 0000 ~ 11596108 n 0000 ~ 11665372 n 0000 | plant that reproduces by means of seeds not spores -11552594 20 n 01 seedling 0 001 @ 11552386 n 0000 | young plant or tree grown from a seed -11552686 20 n 01 balsam 0 003 @ 11552386 n 0000 + 02658412 a 0101 %s 14896714 n 0000 | any seed plant yielding balsam -11552806 20 n 01 annual 0 003 @ 00017222 n 0000 ;c 06066555 n 0000 + 00678024 a 0101 | (botany) a plant that completes its entire life cycle within the space of a year -11552976 20 n 01 biennial 0 003 @ 00017222 n 0000 ;c 06066555 n 0000 + 00678221 a 0101 | (botany) a plant having a life cycle that normally takes two seasons from germination to death to complete; flowering biennials usually bloom and fruit in the second season -11553240 20 n 01 perennial 0 005 @ 00017222 n 0000 ;c 06066555 n 0000 + 00678473 a 0101 + 02618877 v 0101 ~ 12938667 n 0000 | (botany) a plant lasting for three seasons or more -11553419 20 n 01 escape 0 001 @ 00017222 n 0000 | a plant originally cultivated but now growing wild -11553522 20 n 01 hygrophyte 0 002 @ 00017222 n 0000 + 02589402 a 0101 | a plant that grows in a moist habitat -11553634 20 n 01 neophyte 0 001 @ 00017222 n 0000 | a plant that is found in an area where it had not been recorded previously -11553763 20 n 01 gymnosperm_family 0 019 @ 11744583 n 0000 #m 11595312 n 0000 ~ 11597126 n 0000 ~ 11597924 n 0000 ~ 11598991 n 0000 ~ 11600671 n 0000 ~ 11601487 n 0000 ~ 11604393 n 0000 ~ 11606661 n 0000 ~ 11607739 n 0000 ~ 11629501 n 0000 ~ 11639609 n 0000 ~ 11645271 n 0000 ~ 11648428 n 0000 ~ 11649597 n 0000 ~ 11651259 n 0000 ~ 11659909 n 0000 ~ 11660979 n 0000 ~ 11664090 n 0000 | a family of gymnosperms -11554175 20 n 01 gymnosperm_genus 0 065 @ 08108972 n 0000 #m 11595312 n 0000 ~ 11597396 n 0000 ~ 11598100 n 0000 ~ 11598452 n 0000 ~ 11599165 n 0000 ~ 11600900 n 0000 ~ 11601757 n 0000 ~ 11602304 n 0000 ~ 11602671 n 0000 ~ 11603045 n 0000 ~ 11603630 n 0000 ~ 11604576 n 0000 ~ 11605396 n 0000 ~ 11606846 n 0000 ~ 11608055 n 0000 ~ 11618750 n 0000 ~ 11620248 n 0000 ~ 11620560 n 0000 ~ 11622988 n 0000 ~ 11624367 n 0000 ~ 11627028 n 0000 ~ 11628284 n 0000 ~ 11629211 n 0000 ~ 11630351 n 0000 ~ 11632794 n 0000 ~ 11633116 n 0000 ~ 11633459 n 0000 ~ 11634526 n 0000 ~ 11634970 n 0000 ~ 11636068 n 0000 ~ 11636389 n 0000 ~ 11638902 n 0000 ~ 11639863 n 0000 ~ 11640471 n 0000 ~ 11641788 n 0000 ~ 11642912 n 0000 ~ 11643684 n 0000 ~ 11644712 n 0000 ~ 11645041 n 0000 ~ 11645783 n 0000 ~ 11647131 n 0000 ~ 11648617 n 0000 ~ 11649012 n 0000 ~ 11649749 n 0000 ~ 11651731 n 0000 ~ 11653323 n 0000 ~ 11653728 n 0000 ~ 11654124 n 0000 ~ 11654667 n 0000 ~ 11655407 n 0000 ~ 11655764 n 0000 ~ 11656380 n 0000 ~ 11656974 n 0000 ~ 11657314 n 0000 ~ 11657763 n 0000 ~ 11658104 n 0000 ~ 11658872 n 0000 ~ 11659068 n 0000 ~ 11659500 n 0000 ~ 11660121 n 0000 ~ 11661207 n 0000 ~ 11662764 n 0000 ~ 11663136 n 0000 ~ 11664301 n 0000 | a genus of gymnosperms -11555413 20 n 02 monocot_family 0 liliopsid_family 0 035 @ 08107499 n 0000 #m 11665781 n 0000 ~ 11556187 n 0000 ~ 11743109 n 0000 ~ 11778534 n 0000 ~ 11780747 n 0000 ~ 11794267 n 0000 ~ 12039743 n 0000 ~ 12087207 n 0000 ~ 12100538 n 0000 ~ 12149751 n 0000 ~ 12154426 n 0000 ~ 12155259 n 0000 ~ 12156308 n 0000 ~ 12311894 n 0000 ~ 12350433 n 0000 ~ 12351287 n 0000 ~ 12351975 n 0000 ~ 12354068 n 0000 ~ 12355320 n 0000 ~ 12581381 n 0000 ~ 12605315 n 0000 ~ 12605965 n 0000 ~ 12606907 n 0000 ~ 12608447 n 0000 ~ 12608778 n 0000 ~ 12608941 n 0000 ~ 12609638 n 0000 ~ 12611243 n 0000 ~ 12611815 n 0000 ~ 12612913 n 0000 ~ 12615427 n 0000 ~ 12617140 n 0000 ~ 12617739 n 0000 ~ 12618336 n 0000 | family of flowering plants having a single cotyledon (embryonic leaf) in the seed -11556187 20 n 01 liliid_monocot_family 0 027 @ 11555413 n 0000 #m 12410381 n 0000 ~ 12411084 n 0000 ~ 12418680 n 0000 ~ 12422751 n 0000 ~ 12423565 n 0000 ~ 12430878 n 0000 ~ 12436260 n 0000 ~ 12438046 n 0000 ~ 12440128 n 0000 ~ 12440623 n 0000 ~ 12441770 n 0000 ~ 12455101 n 0000 ~ 12456278 n 0000 ~ 12457250 n 0000 ~ 12458002 n 0000 ~ 12463322 n 0000 ~ 12464903 n 0000 ~ 12465107 n 0000 ~ 12465796 n 0000 ~ 12467811 n 0000 ~ 12469725 n 0000 ~ 12471150 n 0000 ~ 12474620 n 0000 ~ 12475450 n 0000 ~ 12476036 n 0000 ~ 12479066 n 0000 | family of monocotyledonous plants of the subclass Liliidae; mostly herbs usually with petaloid sepals and petals and compound pistils -11556857 20 n 02 monocot_genus 0 liliopsid_genus 0 235 @ 08108972 n 0000 #m 11667562 n 0000 ~ 11561228 n 0000 ~ 11743570 n 0000 ~ 11779801 n 0000 ~ 11780589 n 0000 ~ 11781430 n 0000 ~ 11781850 n 0000 ~ 11782522 n 0000 ~ 11783723 n 0000 ~ 11784323 n 0000 ~ 11785100 n 0000 ~ 11785475 n 0000 ~ 11786017 n 0000 ~ 11786365 n 0000 ~ 11786983 n 0000 ~ 11787391 n 0000 ~ 11787892 n 0000 ~ 11788223 n 0000 ~ 11788536 n 0000 ~ 11788926 n 0000 ~ 11789280 n 0000 ~ 11789796 n 0000 ~ 11790239 n 0000 ~ 11790624 n 0000 ~ 11791155 n 0000 ~ 11791446 n 0000 ~ 11791819 n 0000 ~ 11792155 n 0000 ~ 11792598 n 0000 ~ 11793032 n 0000 ~ 11793252 n 0000 ~ 11793651 n 0000 ~ 11794791 n 0000 ~ 11795366 n 0000 ~ 11795774 n 0000 ~ 11796318 n 0000 ~ 12043248 n 0000 ~ 12044269 n 0000 ~ 12044571 n 0000 ~ 12045004 n 0000 ~ 12045352 n 0000 ~ 12045695 n 0000 ~ 12046251 n 0000 ~ 12046620 n 0000 ~ 12047173 n 0000 ~ 12047586 n 0000 ~ 12048231 n 0000 ~ 12048772 n 0000 ~ 12049134 n 0000 ~ 12049412 n 0000 ~ 12049796 n 0000 ~ 12050295 n 0000 ~ 12050766 n 0000 ~ 12051285 n 0000 ~ 12052053 n 0000 ~ 12052630 n 0000 ~ 12053138 n 0000 ~ 12054499 n 0000 ~ 12054902 n 0000 ~ 12055317 n 0000 ~ 12055839 n 0000 ~ 12058429 n 0000 ~ 12059090 n 0000 ~ 12059479 n 0000 ~ 12059851 n 0000 ~ 12060118 n 0000 ~ 12060380 n 0000 ~ 12060816 n 0000 ~ 12061849 n 0000 ~ 12062227 n 0000 ~ 12063066 n 0000 ~ 12063414 n 0000 ~ 12063887 n 0000 ~ 12064183 n 0000 ~ 12064814 n 0000 ~ 12064996 n 0000 ~ 12068824 n 0000 ~ 12069488 n 0000 ~ 12069821 n 0000 ~ 12070177 n 0000 ~ 12070950 n 0000 ~ 12071965 n 0000 ~ 12072419 n 0000 ~ 12073007 n 0000 ~ 12073410 n 0000 ~ 12073744 n 0000 ~ 12074205 n 0000 ~ 12074678 n 0000 ~ 12075495 n 0000 ~ 12076075 n 0000 ~ 12076381 n 0000 ~ 12077062 n 0000 ~ 12077505 n 0000 ~ 12077732 n 0000 ~ 12078596 n 0000 ~ 12078954 n 0000 ~ 12079352 n 0000 ~ 12079737 n 0000 ~ 12080199 n 0000 ~ 12081022 n 0000 ~ 12081488 n 0000 ~ 12081851 n 0000 ~ 12082357 n 0000 ~ 12082593 n 0000 ~ 12082764 n 0000 ~ 12082980 n 0000 ~ 12083339 n 0000 ~ 12084746 n 0000 ~ 12085117 n 0000 ~ 12085469 n 0000 ~ 12085840 n 0000 ~ 12086362 n 0000 ~ 12087408 n 0000 ~ 12104614 n 0000 ~ 12104943 n 0000 ~ 12107489 n 0000 ~ 12108249 n 0000 ~ 12109189 n 0000 ~ 12110630 n 0000 ~ 12111882 n 0000 ~ 12112488 n 0000 ~ 12112789 n 0000 ~ 12113471 n 0000 ~ 12114226 n 0000 ~ 12114981 n 0000 ~ 12115563 n 0000 ~ 12116267 n 0000 ~ 12116583 n 0000 ~ 12116881 n 0000 ~ 12117507 n 0000 ~ 12118223 n 0000 ~ 12118912 n 0000 ~ 12119947 n 0000 ~ 12120812 n 0000 ~ 12121405 n 0000 ~ 12122124 n 0000 ~ 12122581 n 0000 ~ 12123050 n 0000 ~ 12124358 n 0000 ~ 12124505 n 0000 ~ 12125398 n 0000 ~ 12125782 n 0000 ~ 12126238 n 0000 ~ 12126911 n 0000 ~ 12127890 n 0000 ~ 12128645 n 0000 ~ 12129525 n 0000 ~ 12130408 n 0000 ~ 12130759 n 0000 ~ 12131216 n 0000 ~ 12132299 n 0000 ~ 12133332 n 0000 ~ 12133870 n 0000 ~ 12134300 n 0000 ~ 12136944 n 0000 ~ 12139367 n 0000 ~ 12140137 n 0000 ~ 12141037 n 0000 ~ 12141890 n 0000 ~ 12143572 n 0000 ~ 12145802 n 0000 ~ 12146100 n 0000 ~ 12147699 n 0000 ~ 12148079 n 0000 ~ 12148610 n 0000 ~ 12148962 n 0000 ~ 12150447 n 0000 ~ 12151814 n 0000 ~ 12152406 n 0000 ~ 12152869 n 0000 ~ 12153393 n 0000 ~ 12154628 n 0000 ~ 12155459 n 0000 ~ 12156484 n 0000 ~ 12312276 n 0000 ~ 12312405 n 0000 ~ 12350578 n 0000 ~ 12351477 n 0000 ~ 12352150 n 0000 ~ 12353604 n 0000 ~ 12354374 n 0000 ~ 12354849 n 0000 ~ 12355594 n 0000 ~ 12356255 n 0000 ~ 12358173 n 0000 ~ 12583529 n 0000 ~ 12584057 n 0000 ~ 12584970 n 0000 ~ 12585512 n 0000 ~ 12586110 n 0000 ~ 12586867 n 0000 ~ 12587366 n 0000 ~ 12587686 n 0000 ~ 12588156 n 0000 ~ 12588989 n 0000 ~ 12589286 n 0000 ~ 12590117 n 0000 ~ 12590842 n 0000 ~ 12591523 n 0000 ~ 12591897 n 0000 ~ 12592351 n 0000 ~ 12593689 n 0000 ~ 12593826 n 0000 ~ 12594746 n 0000 ~ 12595801 n 0000 ~ 12596525 n 0000 ~ 12597006 n 0000 ~ 12597333 n 0000 ~ 12597640 n 0000 ~ 12605519 n 0000 ~ 12606227 n 0000 ~ 12606797 n 0000 ~ 12607198 n 0000 ~ 12607717 n 0000 ~ 12607896 n 0000 ~ 12608620 n 0000 ~ 12609128 n 0000 ~ 12609842 n 0000 ~ 12610186 n 0000 ~ 12610609 n 0000 ~ 12611479 n 0000 ~ 12612020 n 0000 ~ 12612410 n 0000 ~ 12613285 n 0000 ~ 12613596 n 0000 ~ 12613968 n 0000 ~ 12614317 n 0000 ~ 12614962 n 0000 ~ 12615097 n 0000 ~ 12615986 n 0000 ~ 12616825 n 0000 ~ 12617384 n 0000 ~ 12617950 n 0000 ~ 12618524 n 0000 | genus of flowering plants having a single cotyledon (embryonic leaf) in the seed -11561228 20 n 01 liliid_monocot_genus 0 075 @ 11556857 n 0000 #m 12410381 n 0000 ~ 12411710 n 0000 ~ 12415911 n 0000 ~ 12416278 n 0000 ~ 12416917 n 0000 ~ 12417273 n 0000 ~ 12417686 n 0000 ~ 12418065 n 0000 ~ 12418356 n 0000 ~ 12419217 n 0000 ~ 12419592 n 0000 ~ 12420335 n 0000 ~ 12420991 n 0000 ~ 12421334 n 0000 ~ 12422399 n 0000 ~ 12422931 n 0000 ~ 12426100 n 0000 ~ 12428915 n 0000 ~ 12429589 n 0000 ~ 12429942 n 0000 ~ 12431128 n 0000 ~ 12436490 n 0000 ~ 12437311 n 0000 ~ 12438324 n 0000 ~ 12438977 n 0000 ~ 12439400 n 0000 ~ 12440385 n 0000 ~ 12440869 n 0000 ~ 12442220 n 0000 ~ 12442865 n 0000 ~ 12443144 n 0000 ~ 12443547 n 0000 ~ 12443929 n 0000 ~ 12444261 n 0000 ~ 12444666 n 0000 ~ 12445138 n 0000 ~ 12445848 n 0000 ~ 12449024 n 0000 ~ 12450099 n 0000 ~ 12451789 n 0000 ~ 12454021 n 0000 ~ 12455342 n 0000 ~ 12455787 n 0000 ~ 12456527 n 0000 ~ 12457519 n 0000 ~ 12458224 n 0000 ~ 12459048 n 0000 ~ 12459471 n 0000 ~ 12460549 n 0000 ~ 12461326 n 0000 ~ 12461809 n 0000 ~ 12462401 n 0000 ~ 12462951 n 0000 ~ 12463574 n 0000 ~ 12464278 n 0000 ~ 12465321 n 0000 ~ 12466034 n 0000 ~ 12466450 n 0000 ~ 12468081 n 0000 ~ 12469936 n 0000 ~ 12471366 n 0000 ~ 12471825 n 0000 ~ 12473011 n 0000 ~ 12473405 n 0000 ~ 12474006 n 0000 ~ 12474828 n 0000 ~ 12475593 n 0000 ~ 12476902 n 0000 ~ 12478283 n 0000 ~ 12479303 n 0000 ~ 12479821 n 0000 ~ 12480233 n 0000 ~ 12480677 n 0000 ~ 12481806 n 0000 | genus of monocotyledonous plants comprising mostly herbs having usually petaloid sepals and petals and compound pistils -11562747 20 n 02 dicot_family 0 magnoliopsid_family 0 074 @ 08107499 n 0000 #m 11665781 n 0000 ~ 11564258 n 0000 ~ 11564734 n 0000 ~ 11565040 n 0000 ~ 11565385 n 0000 ~ 11566230 n 0000 ~ 11566682 n 0000 ~ 11740824 n 0000 ~ 11742531 n 0000 ~ 11766609 n 0000 ~ 11801038 n 0000 ~ 11803118 n 0000 ~ 11803277 n 0000 ~ 12090318 n 0000 ~ 12096798 n 0000 ~ 12097927 n 0000 ~ 12099556 n 0000 ~ 12157276 n 0000 ~ 12167749 n 0000 ~ 12168126 n 0000 ~ 12213635 n 0000 ~ 12224522 n 0000 ~ 12290116 n 0000 ~ 12299165 n 0000 ~ 12299988 n 0000 ~ 12317919 n 0000 ~ 12323411 n 0000 ~ 12325497 n 0000 ~ 12326604 n 0000 ~ 12327209 n 0000 ~ 12328026 n 0000 ~ 12329899 n 0000 ~ 12339972 n 0000 ~ 12344996 n 0000 ~ 12345495 n 0000 ~ 12346179 n 0000 ~ 12347892 n 0000 ~ 12391745 n 0000 ~ 12396255 n 0000 ~ 12398682 n 0000 ~ 12404314 n 0000 ~ 12404943 n 0000 ~ 12484413 n 0000 ~ 12485122 n 0000 ~ 12486254 n 0000 ~ 12598409 n 0000 ~ 12600574 n 0000 ~ 12644464 n 0000 ~ 12740514 n 0000 ~ 12745788 n 0000 ~ 12747563 n 0000 ~ 12751402 n 0000 ~ 12751823 n 0000 ~ 12756286 n 0000 ~ 12758639 n 0000 ~ 12767951 n 0000 ~ 12769430 n 0000 ~ 12770068 n 0000 ~ 12772081 n 0000 ~ 12776212 n 0000 ~ 12776946 n 0000 ~ 12779233 n 0000 ~ 12781659 n 0000 ~ 12782108 n 0000 ~ 12783996 n 0000 ~ 12823164 n 0000 ~ 12874231 n 0000 ~ 13140699 n 0000 ~ 13144303 n 0000 ~ 13148791 n 0000 ~ 13151265 n 0000 ~ 13151568 n 0000 ~ 13233012 n 0000 | family of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination -11564258 20 n 01 magnoliid_dicot_family 0 018 @ 11562747 n 0000 #m 11667112 n 0000 ~ 11693566 n 0000 ~ 11697158 n 0000 ~ 11700401 n 0000 ~ 11701903 n 0000 ~ 11702428 n 0000 ~ 11702999 n 0000 ~ 11703386 n 0000 ~ 11708181 n 0000 ~ 11712827 n 0000 ~ 11713960 n 0000 ~ 11714618 n 0000 ~ 11717007 n 0000 ~ 11717820 n 0000 ~ 11718911 n 0000 ~ 11719468 n 0000 ~ 11739530 n 0000 | family of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms -11564734 20 n 01 hamamelid_dicot_family 0 008 @ 11562747 n 0000 #m 12313005 n 0000 ~ 12260208 n 0000 ~ 12280487 n 0000 ~ 12286372 n 0000 ~ 12288422 n 0000 ~ 12314315 n 0000 ~ 12723985 n 0000 | family of mostly woody dicotyledonous flowering plants with flowers often unisexual and often borne in catkins -11565040 20 n 01 caryophylloid_dicot_family 0 012 @ 11562747 n 0000 #m 11803475 n 0000 ~ 11804604 n 0000 ~ 11817774 n 0000 ~ 11818945 n 0000 ~ 11822557 n 0000 ~ 11827169 n 0000 ~ 11827775 n 0000 ~ 11835806 n 0000 ~ 11841529 n 0000 ~ 11854760 n 0000 ~ 11856981 n 0000 | family of relatively early dicotyledonous plants including mostly flowers -11565385 20 n 01 dilleniid_dicot_family 0 040 @ 11562747 n 0000 #m 12358485 n 0000 ~ 11864602 n 0000 ~ 11867525 n 0000 ~ 11900058 n 0000 ~ 11909048 n 0000 ~ 12034828 n 0000 ~ 12169776 n 0000 ~ 12188985 n 0000 ~ 12192373 n 0000 ~ 12194776 n 0000 ~ 12202352 n 0000 ~ 12226322 n 0000 ~ 12249821 n 0000 ~ 12250413 n 0000 ~ 12252620 n 0000 ~ 12255452 n 0000 ~ 12255659 n 0000 ~ 12258380 n 0000 ~ 12359734 n 0000 ~ 12362844 n 0000 ~ 12363988 n 0000 ~ 12367122 n 0000 ~ 12370842 n 0000 ~ 12371911 n 0000 ~ 12372708 n 0000 ~ 12373361 n 0000 ~ 12374002 n 0000 ~ 12376950 n 0000 ~ 12377809 n 0000 ~ 12381321 n 0000 ~ 12382484 n 0000 ~ 12383073 n 0000 ~ 12385046 n 0000 ~ 12386039 n 0000 ~ 12387201 n 0000 ~ 12734722 n 0000 ~ 12737383 n 0000 ~ 12738859 n 0000 ~ 12929061 n 0000 | family of more or less advanced dicotyledonous trees and shrubs and herbs -11566230 20 n 01 asterid_dicot_family 0 018 @ 11562747 n 0000 #m 11910835 n 0000 ~ 11911591 n 0000 ~ 11919232 n 0000 ~ 12660009 n 0000 ~ 12671157 n 0000 ~ 12682054 n 0000 ~ 12808933 n 0000 ~ 12811856 n 0000 ~ 12813393 n 0000 ~ 12829099 n 0000 ~ 12834408 n 0000 ~ 12838027 n 0000 ~ 12876032 n 0000 ~ 12892226 n 0000 ~ 12914433 n 0000 ~ 12915400 n 0000 ~ 12949722 n 0000 | family of more or less advanced dicotyledonous herbs and some trees and shrubs -11566682 20 n 01 rosid_dicot_family 0 036 @ 11562747 n 0000 #m 12212810 n 0000 ~ 11746224 n 0000 ~ 11746776 n 0000 ~ 11753936 n 0000 ~ 11754188 n 0000 ~ 11796744 n 0000 ~ 12341126 n 0000 ~ 12348774 n 0000 ~ 12487394 n 0000 ~ 12487647 n 0000 ~ 12501537 n 0000 ~ 12501745 n 0000 ~ 12619306 n 0000 ~ 12683950 n 0000 ~ 12685214 n 0000 ~ 12690388 n 0000 ~ 12693590 n 0000 ~ 12694048 n 0000 ~ 12694707 n 0000 ~ 12701178 n 0000 ~ 12702443 n 0000 ~ 12704636 n 0000 ~ 12706644 n 0000 ~ 12715569 n 0000 ~ 12719277 n 0000 ~ 12720532 n 0000 ~ 12784543 n 0000 ~ 12787007 n 0000 ~ 12787565 n 0000 ~ 12790656 n 0000 ~ 12792041 n 0000 ~ 12806270 n 0000 ~ 12916935 n 0000 ~ 12930044 n 0000 ~ 12946088 n 0000 | a family of dicotyledonous plants -11567411 20 n 02 dicot_genus 0 magnoliopsid_genus 0 240 @ 08108972 n 0000 #m 11665781 n 0000 ~ 11571907 n 0000 ~ 11573173 n 0000 ~ 11573660 n 0000 ~ 11575425 n 0000 ~ 11579418 n 0000 ~ 11585340 n 0000 ~ 11741010 n 0000 ~ 11742175 n 0000 ~ 11742745 n 0000 ~ 11767196 n 0000 ~ 11768242 n 0000 ~ 11769002 n 0000 ~ 11769483 n 0000 ~ 11770013 n 0000 ~ 11770526 n 0000 ~ 11770969 n 0000 ~ 11771383 n 0000 ~ 11772154 n 0000 ~ 11772702 n 0000 ~ 11773138 n 0000 ~ 11773860 n 0000 ~ 11774279 n 0000 ~ 11775160 n 0000 ~ 11775780 n 0000 ~ 11776337 n 0000 ~ 11776861 n 0000 ~ 11777365 n 0000 ~ 11777779 n 0000 ~ 11801247 n 0000 ~ 11802076 n 0000 ~ 11851101 n 0000 ~ 12090702 n 0000 ~ 12092127 n 0000 ~ 12092766 n 0000 ~ 12093088 n 0000 ~ 12093769 n 0000 ~ 12094121 n 0000 ~ 12094786 n 0000 ~ 12096223 n 0000 ~ 12097013 n 0000 ~ 12097180 n 0000 ~ 12098227 n 0000 ~ 12098665 n 0000 ~ 12099220 n 0000 ~ 12099803 n 0000 ~ 12158148 n 0000 ~ 12162905 n 0000 ~ 12163649 n 0000 ~ 12164215 n 0000 ~ 12165608 n 0000 ~ 12166003 n 0000 ~ 12166312 n 0000 ~ 12167282 n 0000 ~ 12167955 n 0000 ~ 12168385 n 0000 ~ 12214245 n 0000 ~ 12214605 n 0000 ~ 12215373 n 0000 ~ 12216028 n 0000 ~ 12216382 n 0000 ~ 12216836 n 0000 ~ 12217211 n 0000 ~ 12218621 n 0000 ~ 12219495 n 0000 ~ 12219875 n 0000 ~ 12220247 n 0000 ~ 12220654 n 0000 ~ 12220994 n 0000 ~ 12221943 n 0000 ~ 12222334 n 0000 ~ 12222715 n 0000 ~ 12223405 n 0000 ~ 12223950 n 0000 ~ 12224669 n 0000 ~ 12249993 n 0000 ~ 12290522 n 0000 ~ 12291763 n 0000 ~ 12292285 n 0000 ~ 12292655 n 0000 ~ 12293419 n 0000 ~ 12295560 n 0000 ~ 12296218 n 0000 ~ 12297678 n 0000 ~ 12298003 n 0000 ~ 12298783 n 0000 ~ 12299425 n 0000 ~ 12300625 n 0000 ~ 12301917 n 0000 ~ 12302418 n 0000 ~ 12302974 n 0000 ~ 12303349 n 0000 ~ 12306519 n 0000 ~ 12307611 n 0000 ~ 12309403 n 0000 ~ 12309850 n 0000 ~ 12310153 n 0000 ~ 12313735 n 0000 ~ 12313954 n 0000 ~ 12314146 n 0000 ~ 12318164 n 0000 ~ 12319687 n 0000 ~ 12322359 n 0000 ~ 12323820 n 0000 ~ 12324756 n 0000 ~ 12325667 n 0000 ~ 12326842 n 0000 ~ 12327407 n 0000 ~ 12327718 n 0000 ~ 12328241 n 0000 ~ 12330336 n 0000 ~ 12330751 n 0000 ~ 12331415 n 0000 ~ 12332422 n 0000 ~ 12332718 n 0000 ~ 12332866 n 0000 ~ 12333397 n 0000 ~ 12334686 n 0000 ~ 12339319 n 0000 ~ 12340202 n 0000 ~ 12343306 n 0000 ~ 12344131 n 0000 ~ 12345136 n 0000 ~ 12345709 n 0000 ~ 12346448 n 0000 ~ 12347490 n 0000 ~ 12348127 n 0000 ~ 12392385 n 0000 ~ 12392943 n 0000 ~ 12393527 n 0000 ~ 12393942 n 0000 ~ 12394494 n 0000 ~ 12394861 n 0000 ~ 12395717 n 0000 ~ 12396666 n 0000 ~ 12397594 n 0000 ~ 12398990 n 0000 ~ 12399784 n 0000 ~ 12400261 n 0000 ~ 12401122 n 0000 ~ 12403862 n 0000 ~ 12404484 n 0000 ~ 12405209 n 0000 ~ 12409016 n 0000 ~ 12410032 n 0000 ~ 12410205 n 0000 ~ 12484612 n 0000 ~ 12485331 n 0000 ~ 12485523 n 0000 ~ 12485811 n 0000 ~ 12598629 n 0000 ~ 12600888 n 0000 ~ 12601335 n 0000 ~ 12602118 n 0000 ~ 12602850 n 0000 ~ 12603784 n 0000 ~ 12741079 n 0000 ~ 12741409 n 0000 ~ 12742041 n 0000 ~ 12742546 n 0000 ~ 12743232 n 0000 ~ 12743680 n 0000 ~ 12744277 n 0000 ~ 12744656 n 0000 ~ 12745160 n 0000 ~ 12745976 n 0000 ~ 12746733 n 0000 ~ 12747961 n 0000 ~ 12748815 n 0000 ~ 12750577 n 0000 ~ 12751043 n 0000 ~ 12751554 n 0000 ~ 12752039 n 0000 ~ 12756059 n 0000 ~ 12756862 n 0000 ~ 12759120 n 0000 ~ 12759496 n 0000 ~ 12760013 n 0000 ~ 12760722 n 0000 ~ 12761123 n 0000 ~ 12761471 n 0000 ~ 12762245 n 0000 ~ 12762583 n 0000 ~ 12764703 n 0000 ~ 12765679 n 0000 ~ 12766241 n 0000 ~ 12768177 n 0000 ~ 12769663 n 0000 ~ 12770277 n 0000 ~ 12772419 n 0000 ~ 12772557 n 0000 ~ 12773334 n 0000 ~ 12773488 n 0000 ~ 12774127 n 0000 ~ 12774891 n 0000 ~ 12775225 n 0000 ~ 12775530 n 0000 ~ 12776391 n 0000 ~ 12777294 n 0000 ~ 12778045 n 0000 ~ 12779437 n 0000 ~ 12780852 n 0000 ~ 12781241 n 0000 ~ 12781814 n 0000 ~ 12782338 n 0000 ~ 12782774 n 0000 ~ 12783173 n 0000 ~ 12783601 n 0000 ~ 12784173 n 0000 ~ 12818147 n 0000 ~ 12823531 n 0000 ~ 12824581 n 0000 ~ 12824909 n 0000 ~ 12825301 n 0000 ~ 12825949 n 0000 ~ 12826395 n 0000 ~ 12859488 n 0000 ~ 13140993 n 0000 ~ 13142695 n 0000 ~ 13143097 n 0000 ~ 13143626 n 0000 ~ 13143930 n 0000 ~ 13144511 n 0000 ~ 13148019 n 0000 ~ 13149039 n 0000 ~ 13150741 n 0000 ~ 13151439 n 0000 ~ 13151820 n 0000 ~ 13152203 n 0000 ~ 13152592 n 0000 ~ 13233548 n 0000 ~ 13235947 n 0000 ~ 13236354 n 0000 ~ 13236726 n 0000 ~ 13237343 n 0000 ~ 13237788 n 0000 ~ 13238178 n 0000 ~ 13238828 n 0000 ~ 13239471 n 0000 | genus of flowering plants having two cotyledons (embryonic leaves) in the seed which usually appear at germination -11571907 20 n 01 magnoliid_dicot_genus 0 062 @ 11567411 n 0000 #m 11667112 n 0000 ~ 11693812 n 0000 ~ 11695485 n 0000 ~ 11695813 n 0000 ~ 11696338 n 0000 ~ 11696776 n 0000 ~ 11697388 n 0000 ~ 11698433 n 0000 ~ 11698895 n 0000 ~ 11699283 n 0000 ~ 11699915 n 0000 ~ 11700676 n 0000 ~ 11701492 n 0000 ~ 11702081 n 0000 ~ 11702566 n 0000 ~ 11703205 n 0000 ~ 11703935 n 0000 ~ 11704401 n 0000 ~ 11705921 n 0000 ~ 11706120 n 0000 ~ 11706629 n 0000 ~ 11707109 n 0000 ~ 11707668 n 0000 ~ 11708442 n 0000 ~ 11709450 n 0000 ~ 11712153 n 0000 ~ 11713034 n 0000 ~ 11713628 n 0000 ~ 11714150 n 0000 ~ 11715207 n 0000 ~ 11716285 n 0000 ~ 11717239 n 0000 ~ 11718096 n 0000 ~ 11718521 n 0000 ~ 11719120 n 0000 ~ 11720088 n 0000 ~ 11722769 n 0000 ~ 11723655 n 0000 ~ 11724529 n 0000 ~ 11724822 n 0000 ~ 11726569 n 0000 ~ 11726925 n 0000 ~ 11727976 n 0000 ~ 11728350 n 0000 ~ 11729315 n 0000 ~ 11731861 n 0000 ~ 11732309 n 0000 ~ 11732857 n 0000 ~ 11733424 n 0000 ~ 11733769 n 0000 ~ 11734872 n 0000 ~ 11735325 n 0000 ~ 11735822 n 0000 ~ 11736216 n 0000 ~ 11736569 n 0000 ~ 11737316 n 0000 ~ 11738378 n 0000 ~ 11738832 n 0000 ~ 11739199 n 0000 ~ 11739809 n 0000 ~ 11740208 n 0000 | genus of dicotyledonous flowering plants regarded as among the most primitive of extant angiosperms -11573173 20 n 01 hamamelid_dicot_genus 0 017 @ 11567411 n 0000 #m 12313005 n 0000 ~ 12260593 n 0000 ~ 12262327 n 0000 ~ 12264254 n 0000 ~ 12264621 n 0000 ~ 12265266 n 0000 ~ 12265900 n 0000 ~ 12268096 n 0000 ~ 12280886 n 0000 ~ 12283981 n 0000 ~ 12286581 n 0000 ~ 12287388 n 0000 ~ 12288188 n 0000 ~ 12288598 n 0000 ~ 12724201 n 0000 ~ 12731202 n 0000 | genus of mostly woody relatively primitive dicotyledonous flowering plants with flowers often unisexual and often borne in catkins -11573660 20 n 01 caryophylloid_dicot_genus 0 091 @ 11567411 n 0000 #m 11803475 n 0000 ~ 11805380 n 0000 ~ 11805837 n 0000 ~ 11806975 n 0000 ~ 11807849 n 0000 ~ 11809922 n 0000 ~ 11810190 n 0000 ~ 11810559 n 0000 ~ 11810918 n 0000 ~ 11811308 n 0000 ~ 11812358 n 0000 ~ 11812573 n 0000 ~ 11813309 n 0000 ~ 11813830 n 0000 ~ 11814059 n 0000 ~ 11814440 n 0000 ~ 11814824 n 0000 ~ 11815194 n 0000 ~ 11817000 n 0000 ~ 11817329 n 0000 ~ 11818515 n 0000 ~ 11819354 n 0000 ~ 11819751 n 0000 ~ 11820323 n 0000 ~ 11820751 n 0000 ~ 11821415 n 0000 ~ 11821777 n 0000 ~ 11822167 n 0000 ~ 11822849 n 0000 ~ 11824548 n 0000 ~ 11825013 n 0000 ~ 11825535 n 0000 ~ 11825988 n 0000 ~ 11826416 n 0000 ~ 11826999 n 0000 ~ 11827348 n 0000 ~ 11828113 n 0000 ~ 11830570 n 0000 ~ 11831730 n 0000 ~ 11832108 n 0000 ~ 11833208 n 0000 ~ 11833577 n 0000 ~ 11834148 n 0000 ~ 11834521 n 0000 ~ 11835114 n 0000 ~ 11835451 n 0000 ~ 11836137 n 0000 ~ 11836556 n 0000 ~ 11838266 n 0000 ~ 11838741 n 0000 ~ 11839297 n 0000 ~ 11841061 n 0000 ~ 11842861 n 0000 ~ 11843285 n 0000 ~ 11843709 n 0000 ~ 11844203 n 0000 ~ 11844651 n 0000 ~ 11845019 n 0000 ~ 11845387 n 0000 ~ 11846087 n 0000 ~ 11846582 n 0000 ~ 11846970 n 0000 ~ 11847414 n 0000 ~ 11847615 n 0000 ~ 11847841 n 0000 ~ 11848253 n 0000 ~ 11848610 n 0000 ~ 11849017 n 0000 ~ 11849666 n 0000 ~ 11850136 n 0000 ~ 11850337 n 0000 ~ 11850748 n 0000 ~ 11851395 n 0000 ~ 11852255 n 0000 ~ 11852814 n 0000 ~ 11853191 n 0000 ~ 11853644 n 0000 ~ 11854232 n 0000 ~ 11855122 n 0000 ~ 11856055 n 0000 ~ 11856271 n 0000 ~ 11856389 n 0000 ~ 11856815 n 0000 ~ 11857528 n 0000 ~ 11858406 n 0000 ~ 11859024 n 0000 ~ 11859981 n 0000 ~ 11860801 n 0000 ~ 11862089 n 0000 ~ 11862598 n 0000 | genus of relatively early dicotyledonous plants including mostly flowers -11575425 20 n 01 dilleniid_dicot_genus 0 215 @ 11567411 n 0000 #m 12358485 n 0000 ~ 11864906 n 0000 ~ 11866078 n 0000 ~ 11866942 n 0000 ~ 11867070 n 0000 ~ 11869890 n 0000 ~ 11870212 n 0000 ~ 11870607 n 0000 ~ 11870916 n 0000 ~ 11871294 n 0000 ~ 11871916 n 0000 ~ 11872850 n 0000 ~ 11873396 n 0000 ~ 11874300 n 0000 ~ 11874707 n 0000 ~ 11875100 n 0000 ~ 11880218 n 0000 ~ 11880610 n 0000 ~ 11881063 n 0000 ~ 11881426 n 0000 ~ 11881563 n 0000 ~ 11883137 n 0000 ~ 11883799 n 0000 ~ 11884198 n 0000 ~ 11884667 n 0000 ~ 11885148 n 0000 ~ 11885697 n 0000 ~ 11886380 n 0000 ~ 11886788 n 0000 ~ 11888271 n 0000 ~ 11888621 n 0000 ~ 11889078 n 0000 ~ 11889473 n 0000 ~ 11889847 n 0000 ~ 11890329 n 0000 ~ 11890723 n 0000 ~ 11891050 n 0000 ~ 11891395 n 0000 ~ 11891838 n 0000 ~ 11892460 n 0000 ~ 11893004 n 0000 ~ 11893451 n 0000 ~ 11893808 n 0000 ~ 11894173 n 0000 ~ 11895270 n 0000 ~ 11895980 n 0000 ~ 11896365 n 0000 ~ 11896904 n 0000 ~ 11897342 n 0000 ~ 11897760 n 0000 ~ 11898079 n 0000 ~ 11898474 n 0000 ~ 11899027 n 0000 ~ 11899432 n 0000 ~ 11899595 n 0000 ~ 11900986 n 0000 ~ 11902595 n 0000 ~ 11903167 n 0000 ~ 11903525 n 0000 ~ 11903881 n 0000 ~ 11904896 n 0000 ~ 11905236 n 0000 ~ 11905584 n 0000 ~ 11905989 n 0000 ~ 11906359 n 0000 ~ 11906713 n 0000 ~ 11907267 n 0000 ~ 11907554 n 0000 ~ 11907939 n 0000 ~ 11908431 n 0000 ~ 11908718 n 0000 ~ 11909353 n 0000 ~ 11909745 n 0000 ~ 11910070 n 0000 ~ 12035064 n 0000 ~ 12035423 n 0000 ~ 12170415 n 0000 ~ 12171750 n 0000 ~ 12172715 n 0000 ~ 12173407 n 0000 ~ 12174124 n 0000 ~ 12174742 n 0000 ~ 12175797 n 0000 ~ 12177592 n 0000 ~ 12180714 n 0000 ~ 12181147 n 0000 ~ 12181851 n 0000 ~ 12182414 n 0000 ~ 12182858 n 0000 ~ 12183318 n 0000 ~ 12183636 n 0000 ~ 12183916 n 0000 ~ 12184337 n 0000 ~ 12184724 n 0000 ~ 12185078 n 0000 ~ 12185687 n 0000 ~ 12186116 n 0000 ~ 12187030 n 0000 ~ 12187450 n 0000 ~ 12188120 n 0000 ~ 12189293 n 0000 ~ 12189620 n 0000 ~ 12190241 n 0000 ~ 12190712 n 0000 ~ 12191075 n 0000 ~ 12191461 n 0000 ~ 12191965 n 0000 ~ 12192722 n 0000 ~ 12193458 n 0000 ~ 12193964 n 0000 ~ 12194466 n 0000 ~ 12195186 n 0000 ~ 12195965 n 0000 ~ 12197211 n 0000 ~ 12197765 n 0000 ~ 12198140 n 0000 ~ 12198628 n 0000 ~ 12199030 n 0000 ~ 12199564 n 0000 ~ 12200315 n 0000 ~ 12200747 n 0000 ~ 12201166 n 0000 ~ 12201456 n 0000 ~ 12201761 n 0000 ~ 12202712 n 0000 ~ 12204405 n 0000 ~ 12204546 n 0000 ~ 12204925 n 0000 ~ 12205308 n 0000 ~ 12227220 n 0000 ~ 12229282 n 0000 ~ 12230146 n 0000 ~ 12231031 n 0000 ~ 12232683 n 0000 ~ 12233094 n 0000 ~ 12233410 n 0000 ~ 12233759 n 0000 ~ 12234176 n 0000 ~ 12234513 n 0000 ~ 12234913 n 0000 ~ 12235263 n 0000 ~ 12236363 n 0000 ~ 12237350 n 0000 ~ 12238306 n 0000 ~ 12239100 n 0000 ~ 12239458 n 0000 ~ 12240335 n 0000 ~ 12240715 n 0000 ~ 12241699 n 0000 ~ 12242287 n 0000 ~ 12242668 n 0000 ~ 12243292 n 0000 ~ 12243927 n 0000 ~ 12245067 n 0000 ~ 12245472 n 0000 ~ 12250874 n 0000 ~ 12251137 n 0000 ~ 12251577 n 0000 ~ 12251997 n 0000 ~ 12253083 n 0000 ~ 12254014 n 0000 ~ 12254478 n 0000 ~ 12255086 n 0000 ~ 12255934 n 0000 ~ 12257140 n 0000 ~ 12257343 n 0000 ~ 12257920 n 0000 ~ 12258663 n 0000 ~ 12259122 n 0000 ~ 12259615 n 0000 ~ 12359952 n 0000 ~ 12363110 n 0000 ~ 12363580 n 0000 ~ 12364379 n 0000 ~ 12365670 n 0000 ~ 12366507 n 0000 ~ 12367306 n 0000 ~ 12370011 n 0000 ~ 12370384 n 0000 ~ 12371002 n 0000 ~ 12372124 n 0000 ~ 12372932 n 0000 ~ 12373526 n 0000 ~ 12374238 n 0000 ~ 12375294 n 0000 ~ 12376382 n 0000 ~ 12377328 n 0000 ~ 12378080 n 0000 ~ 12378546 n 0000 ~ 12379278 n 0000 ~ 12380197 n 0000 ~ 12380597 n 0000 ~ 12380926 n 0000 ~ 12381666 n 0000 ~ 12382699 n 0000 ~ 12383256 n 0000 ~ 12385219 n 0000 ~ 12386263 n 0000 ~ 12386724 n 0000 ~ 12387478 n 0000 ~ 12390914 n 0000 ~ 12391111 n 0000 ~ 12391280 n 0000 ~ 12735009 n 0000 ~ 12735666 n 0000 ~ 12736064 n 0000 ~ 12736455 n 0000 ~ 12736840 n 0000 ~ 12737745 n 0000 ~ 12738087 n 0000 ~ 12738480 n 0000 ~ 12739072 n 0000 ~ 12739595 n 0000 ~ 12929237 n 0000 | genus of more or less advanced dicotyledonous trees and shrubs and herbs -11579418 20 n 01 asterid_dicot_genus 0 322 @ 11567411 n 0000 #m 11910835 n 0000 ~ 11916268 n 0000 ~ 11917186 n 0000 ~ 11917633 n 0000 ~ 11918131 n 0000 ~ 11918631 n 0000 ~ 11919026 n 0000 ~ 11920344 n 0000 ~ 11920867 n 0000 ~ 11921200 n 0000 ~ 11921622 n 0000 ~ 11921949 n 0000 ~ 11923016 n 0000 ~ 11923827 n 0000 ~ 11924330 n 0000 ~ 11925140 n 0000 ~ 11925720 n 0000 ~ 11926185 n 0000 ~ 11926640 n 0000 ~ 11927616 n 0000 ~ 11927901 n 0000 ~ 11931756 n 0000 ~ 11937965 n 0000 ~ 11938977 n 0000 ~ 11939380 n 0000 ~ 11939887 n 0000 ~ 11941261 n 0000 ~ 11941719 n 0000 ~ 11942144 n 0000 ~ 11942366 n 0000 ~ 11942875 n 0000 ~ 11943299 n 0000 ~ 11943824 n 0000 ~ 11944569 n 0000 ~ 11945228 n 0000 ~ 11945930 n 0000 ~ 11946584 n 0000 ~ 11947079 n 0000 ~ 11949217 n 0000 ~ 11949707 n 0000 ~ 11950028 n 0000 ~ 11951385 n 0000 ~ 11952153 n 0000 ~ 11952900 n 0000 ~ 11953762 n 0000 ~ 11955398 n 0000 ~ 11955770 n 0000 ~ 11956208 n 0000 ~ 11956671 n 0000 ~ 11957162 n 0000 ~ 11957912 n 0000 ~ 11958316 n 0000 ~ 11958742 n 0000 ~ 11959104 n 0000 ~ 11959489 n 0000 ~ 11960084 n 0000 ~ 11960540 n 0000 ~ 11960943 n 0000 ~ 11961266 n 0000 ~ 11961686 n 0000 ~ 11962108 n 0000 ~ 11962500 n 0000 ~ 11962853 n 0000 ~ 11963158 n 0000 ~ 11963755 n 0000 ~ 11964269 n 0000 ~ 11964688 n 0000 ~ 11965054 n 0000 ~ 11965378 n 0000 ~ 11967572 n 0000 ~ 11968104 n 0000 ~ 11969410 n 0000 ~ 11969977 n 0000 ~ 11970429 n 0000 ~ 11971094 n 0000 ~ 11971600 n 0000 ~ 11972141 n 0000 ~ 11972569 n 0000 ~ 11973159 n 0000 ~ 11973888 n 0000 ~ 11975100 n 0000 ~ 11975482 n 0000 ~ 11975853 n 0000 ~ 11976715 n 0000 ~ 11977125 n 0000 ~ 11978035 n 0000 ~ 11980088 n 0000 ~ 11980577 n 0000 ~ 11980867 n 0000 ~ 11981314 n 0000 ~ 11981817 n 0000 ~ 11982724 n 0000 ~ 11983160 n 0000 ~ 11983739 n 0000 ~ 11983910 n 0000 ~ 11984397 n 0000 ~ 11984854 n 0000 ~ 11985586 n 0000 ~ 11986091 n 0000 ~ 11987722 n 0000 ~ 11987956 n 0000 ~ 11988419 n 0000 ~ 11988774 n 0000 ~ 11989266 n 0000 ~ 11989636 n 0000 ~ 11990804 n 0000 ~ 11991080 n 0000 ~ 11991993 n 0000 ~ 11992340 n 0000 ~ 11992674 n 0000 ~ 11993007 n 0000 ~ 11993932 n 0000 ~ 11994827 n 0000 ~ 11995683 n 0000 ~ 11996092 n 0000 ~ 11996490 n 0000 ~ 11996792 n 0000 ~ 11997775 n 0000 ~ 11998648 n 0000 ~ 11999140 n 0000 ~ 11999455 n 0000 ~ 11999958 n 0000 ~ 12000609 n 0000 ~ 12001565 n 0000 ~ 12002197 n 0000 ~ 12002957 n 0000 ~ 12003407 n 0000 ~ 12004310 n 0000 ~ 12004686 n 0000 ~ 12005148 n 0000 ~ 12005500 n 0000 ~ 12005869 n 0000 ~ 12006081 n 0000 ~ 12006503 n 0000 ~ 12007560 n 0000 ~ 12008017 n 0000 ~ 12009250 n 0000 ~ 12009616 n 0000 ~ 12010021 n 0000 ~ 12010458 n 0000 ~ 12011067 n 0000 ~ 12012897 n 0000 ~ 12013323 n 0000 ~ 12013811 n 0000 ~ 12014739 n 0000 ~ 12015076 n 0000 ~ 12015384 n 0000 ~ 12015840 n 0000 ~ 12018640 n 0000 ~ 12019190 n 0000 ~ 12019675 n 0000 ~ 12020048 n 0000 ~ 12020388 n 0000 ~ 12021120 n 0000 ~ 12023996 n 0000 ~ 12025019 n 0000 ~ 12025849 n 0000 ~ 12026306 n 0000 ~ 12026764 n 0000 ~ 12027864 n 0000 ~ 12028196 n 0000 ~ 12029326 n 0000 ~ 12029929 n 0000 ~ 12030265 n 0000 ~ 12030479 n 0000 ~ 12031739 n 0000 ~ 12032215 n 0000 ~ 12032939 n 0000 ~ 12033310 n 0000 ~ 12033939 n 0000 ~ 12660796 n 0000 ~ 12661420 n 0000 ~ 12661873 n 0000 ~ 12662223 n 0000 ~ 12662654 n 0000 ~ 12663554 n 0000 ~ 12664897 n 0000 ~ 12666602 n 0000 ~ 12667179 n 0000 ~ 12667817 n 0000 ~ 12668364 n 0000 ~ 12668732 n 0000 ~ 12669157 n 0000 ~ 12669641 n 0000 ~ 12670172 n 0000 ~ 12670558 n 0000 ~ 12671529 n 0000 ~ 12671898 n 0000 ~ 12672497 n 0000 ~ 12672843 n 0000 ~ 12673178 n 0000 ~ 12673755 n 0000 ~ 12677427 n 0000 ~ 12678059 n 0000 ~ 12679712 n 0000 ~ 12680125 n 0000 ~ 12681768 n 0000 ~ 12682264 n 0000 ~ 12683248 n 0000 ~ 12809233 n 0000 ~ 12812121 n 0000 ~ 12812665 n 0000 ~ 12813024 n 0000 ~ 12813870 n 0000 ~ 12814417 n 0000 ~ 12815060 n 0000 ~ 12815434 n 0000 ~ 12829809 n 0000 ~ 12830080 n 0000 ~ 12830404 n 0000 ~ 12830974 n 0000 ~ 12831389 n 0000 ~ 12831776 n 0000 ~ 12832140 n 0000 ~ 12832690 n 0000 ~ 12832976 n 0000 ~ 12833341 n 0000 ~ 12833793 n 0000 ~ 12834671 n 0000 ~ 12835196 n 0000 ~ 12835578 n 0000 ~ 12836033 n 0000 ~ 12836663 n 0000 ~ 12837643 n 0000 ~ 12839409 n 0000 ~ 12839839 n 0000 ~ 12840640 n 0000 ~ 12841686 n 0000 ~ 12842105 n 0000 ~ 12842765 n 0000 ~ 12843844 n 0000 ~ 12844220 n 0000 ~ 12844697 n 0000 ~ 12845732 n 0000 ~ 12846143 n 0000 ~ 12846546 n 0000 ~ 12846869 n 0000 ~ 12847254 n 0000 ~ 12847749 n 0000 ~ 12848343 n 0000 ~ 12848870 n 0000 ~ 12849597 n 0000 ~ 12850718 n 0000 ~ 12851304 n 0000 ~ 12851673 n 0000 ~ 12852049 n 0000 ~ 12852726 n 0000 ~ 12852930 n 0000 ~ 12853901 n 0000 ~ 12854443 n 0000 ~ 12854925 n 0000 ~ 12857024 n 0000 ~ 12857594 n 0000 ~ 12858019 n 0000 ~ 12859873 n 0000 ~ 12860254 n 0000 ~ 12860842 n 0000 ~ 12861139 n 0000 ~ 12861751 n 0000 ~ 12862312 n 0000 ~ 12862648 n 0000 ~ 12863026 n 0000 ~ 12863458 n 0000 ~ 12864038 n 0000 ~ 12864363 n 0000 ~ 12866824 n 0000 ~ 12867679 n 0000 ~ 12868248 n 0000 ~ 12868418 n 0000 ~ 12868634 n 0000 ~ 12869248 n 0000 ~ 12870392 n 0000 ~ 12871074 n 0000 ~ 12876684 n 0000 ~ 12877041 n 0000 ~ 12878019 n 0000 ~ 12878525 n 0000 ~ 12879350 n 0000 ~ 12879719 n 0000 ~ 12880963 n 0000 ~ 12881429 n 0000 ~ 12882321 n 0000 ~ 12882591 n 0000 ~ 12883395 n 0000 ~ 12883733 n 0000 ~ 12883923 n 0000 ~ 12884523 n 0000 ~ 12888733 n 0000 ~ 12890009 n 0000 ~ 12893094 n 0000 ~ 12898226 n 0000 ~ 12898628 n 0000 ~ 12898959 n 0000 ~ 12899333 n 0000 ~ 12900148 n 0000 ~ 12902297 n 0000 ~ 12902887 n 0000 ~ 12903250 n 0000 ~ 12903794 n 0000 ~ 12904148 n 0000 ~ 12904720 n 0000 ~ 12905655 n 0000 ~ 12906334 n 0000 ~ 12906926 n 0000 ~ 12907287 n 0000 ~ 12908432 n 0000 ~ 12909252 n 0000 ~ 12910141 n 0000 ~ 12912105 n 0000 ~ 12912498 n 0000 ~ 12913004 n 0000 ~ 12913352 n 0000 ~ 12913645 n 0000 ~ 12914048 n 0000 ~ 12914731 n 0000 ~ 12915230 n 0000 ~ 12916025 n 0000 ~ 12916356 n 0000 ~ 12949955 n 0000 ~ 12950501 n 0000 ~ 12950984 n 0000 | genus of more or less advanced dicotyledonous herbs and some trees and shrubs -11585340 20 n 01 rosid_dicot_genus 0 298 @ 11567411 n 0000 #m 12212810 n 0000 ~ 11746419 n 0000 ~ 11748330 n 0000 ~ 11748936 n 0000 ~ 11749462 n 0000 ~ 11749742 n 0000 ~ 11750359 n 0000 ~ 11750855 n 0000 ~ 11751598 n 0000 ~ 11752404 n 0000 ~ 11754633 n 0000 ~ 11755694 n 0000 ~ 11758628 n 0000 ~ 11759049 n 0000 ~ 11760128 n 0000 ~ 11760560 n 0000 ~ 11761007 n 0000 ~ 11761484 n 0000 ~ 11762237 n 0000 ~ 11762706 n 0000 ~ 11763473 n 0000 ~ 11764072 n 0000 ~ 11764231 n 0000 ~ 11765099 n 0000 ~ 11797016 n 0000 ~ 11798851 n 0000 ~ 11799158 n 0000 ~ 11799520 n 0000 ~ 11800359 n 0000 ~ 11937523 n 0000 ~ 12341412 n 0000 ~ 12342043 n 0000 ~ 12349091 n 0000 ~ 12349491 n 0000 ~ 12349916 n 0000 ~ 12488121 n 0000 ~ 12490330 n 0000 ~ 12490671 n 0000 ~ 12491200 n 0000 ~ 12491626 n 0000 ~ 12493090 n 0000 ~ 12493699 n 0000 ~ 12494115 n 0000 ~ 12494629 n 0000 ~ 12495509 n 0000 ~ 12496207 n 0000 ~ 12496735 n 0000 ~ 12497492 n 0000 ~ 12498316 n 0000 ~ 12498739 n 0000 ~ 12498928 n 0000 ~ 12501035 n 0000 ~ 12503908 n 0000 ~ 12505032 n 0000 ~ 12505563 n 0000 ~ 12505987 n 0000 ~ 12506614 n 0000 ~ 12507236 n 0000 ~ 12507670 n 0000 ~ 12508077 n 0000 ~ 12508936 n 0000 ~ 12509297 n 0000 ~ 12510197 n 0000 ~ 12510569 n 0000 ~ 12511046 n 0000 ~ 12511703 n 0000 ~ 12512460 n 0000 ~ 12512947 n 0000 ~ 12513426 n 0000 ~ 12514324 n 0000 ~ 12514802 n 0000 ~ 12515219 n 0000 ~ 12515597 n 0000 ~ 12516040 n 0000 ~ 12516432 n 0000 ~ 12517253 n 0000 ~ 12517820 n 0000 ~ 12518305 n 0000 ~ 12518725 n 0000 ~ 12519328 n 0000 ~ 12520223 n 0000 ~ 12520661 n 0000 ~ 12521847 n 0000 ~ 12524518 n 0000 ~ 12524944 n 0000 ~ 12525347 n 0000 ~ 12525975 n 0000 ~ 12526380 n 0000 ~ 12526946 n 0000 ~ 12527391 n 0000 ~ 12527569 n 0000 ~ 12529353 n 0000 ~ 12529730 n 0000 ~ 12530208 n 0000 ~ 12531144 n 0000 ~ 12531552 n 0000 ~ 12532008 n 0000 ~ 12532720 n 0000 ~ 12533588 n 0000 ~ 12533992 n 0000 ~ 12534453 n 0000 ~ 12535101 n 0000 ~ 12535461 n 0000 ~ 12535820 n 0000 ~ 12536455 n 0000 ~ 12536665 n 0000 ~ 12537437 n 0000 ~ 12537988 n 0000 ~ 12538603 n 0000 ~ 12542649 n 0000 ~ 12544027 n 0000 ~ 12544646 n 0000 ~ 12545090 n 0000 ~ 12546015 n 0000 ~ 12547658 n 0000 ~ 12548134 n 0000 ~ 12549649 n 0000 ~ 12549976 n 0000 ~ 12550968 n 0000 ~ 12552081 n 0000 ~ 12552658 n 0000 ~ 12553314 n 0000 ~ 12554242 n 0000 ~ 12555069 n 0000 ~ 12555720 n 0000 ~ 12556030 n 0000 ~ 12558902 n 0000 ~ 12559302 n 0000 ~ 12559842 n 0000 ~ 12561696 n 0000 ~ 12562420 n 0000 ~ 12563404 n 0000 ~ 12563567 n 0000 ~ 12563913 n 0000 ~ 12564381 n 0000 ~ 12564840 n 0000 ~ 12566809 n 0000 ~ 12567316 n 0000 ~ 12567768 n 0000 ~ 12568865 n 0000 ~ 12569233 n 0000 ~ 12570126 n 0000 ~ 12571194 n 0000 ~ 12571606 n 0000 ~ 12572021 n 0000 ~ 12572373 n 0000 ~ 12573078 n 0000 ~ 12573760 n 0000 ~ 12574143 n 0000 ~ 12574727 n 0000 ~ 12575089 n 0000 ~ 12577000 n 0000 ~ 12579242 n 0000 ~ 12579593 n 0000 ~ 12580204 n 0000 ~ 12620031 n 0000 ~ 12622653 n 0000 ~ 12623368 n 0000 ~ 12624249 n 0000 ~ 12624873 n 0000 ~ 12625215 n 0000 ~ 12626030 n 0000 ~ 12628872 n 0000 ~ 12629187 n 0000 ~ 12629523 n 0000 ~ 12629946 n 0000 ~ 12631224 n 0000 ~ 12632875 n 0000 ~ 12633386 n 0000 ~ 12636107 n 0000 ~ 12636430 n 0000 ~ 12636705 n 0000 ~ 12637319 n 0000 ~ 12637729 n 0000 ~ 12644713 n 0000 ~ 12651062 n 0000 ~ 12651465 n 0000 ~ 12653056 n 0000 ~ 12657940 n 0000 ~ 12659203 n 0000 ~ 12684153 n 0000 ~ 12687211 n 0000 ~ 12688526 n 0000 ~ 12691189 n 0000 ~ 12691834 n 0000 ~ 12692323 n 0000 ~ 12693033 n 0000 ~ 12693734 n 0000 ~ 12694193 n 0000 ~ 12695760 n 0000 ~ 12696322 n 0000 ~ 12697021 n 0000 ~ 12697360 n 0000 ~ 12697883 n 0000 ~ 12698283 n 0000 ~ 12698905 n 0000 ~ 12699157 n 0000 ~ 12699485 n 0000 ~ 12699778 n 0000 ~ 12700219 n 0000 ~ 12700831 n 0000 ~ 12701491 n 0000 ~ 12701901 n 0000 ~ 12702706 n 0000 ~ 12704191 n 0000 ~ 12704844 n 0000 ~ 12707040 n 0000 ~ 12707432 n 0000 ~ 12712149 n 0000 ~ 12712488 n 0000 ~ 12712820 n 0000 ~ 12713664 n 0000 ~ 12714114 n 0000 ~ 12714550 n 0000 ~ 12716166 n 0000 ~ 12716861 n 0000 ~ 12717524 n 0000 ~ 12717914 n 0000 ~ 12718314 n 0000 ~ 12718807 n 0000 ~ 12719455 n 0000 ~ 12720893 n 0000 ~ 12721357 n 0000 ~ 12721864 n 0000 ~ 12722884 n 0000 ~ 12723446 n 0000 ~ 12784738 n 0000 ~ 12787196 n 0000 ~ 12787846 n 0000 ~ 12789399 n 0000 ~ 12789767 n 0000 ~ 12790185 n 0000 ~ 12790835 n 0000 ~ 12791539 n 0000 ~ 12792638 n 0000 ~ 12794853 n 0000 ~ 12795829 n 0000 ~ 12796192 n 0000 ~ 12796617 n 0000 ~ 12797213 n 0000 ~ 12797693 n 0000 ~ 12798041 n 0000 ~ 12799119 n 0000 ~ 12799580 n 0000 ~ 12800327 n 0000 ~ 12801323 n 0000 ~ 12802248 n 0000 ~ 12802987 n 0000 ~ 12803517 n 0000 ~ 12804216 n 0000 ~ 12806455 n 0000 ~ 12917338 n 0000 ~ 12922283 n 0000 ~ 12922600 n 0000 ~ 12923439 n 0000 ~ 12923839 n 0000 ~ 12924452 n 0000 ~ 12924984 n 0000 ~ 12925394 n 0000 ~ 12925836 n 0000 ~ 12926316 n 0000 ~ 12927354 n 0000 ~ 12927921 n 0000 ~ 12928690 n 0000 ~ 12931109 n 0000 ~ 12931449 n 0000 ~ 12931738 n 0000 ~ 12932532 n 0000 ~ 12933164 n 0000 ~ 12933827 n 0000 ~ 12934368 n 0000 ~ 12934776 n 0000 ~ 12935457 n 0000 ~ 12935982 n 0000 ~ 12936333 n 0000 ~ 12936713 n 0000 ~ 12936999 n 0000 ~ 12937822 n 0000 ~ 12938897 n 0000 ~ 12939664 n 0000 ~ 12940060 n 0000 ~ 12940427 n 0000 ~ 12940778 n 0000 ~ 12941360 n 0000 ~ 12942270 n 0000 ~ 12942930 n 0000 ~ 12943302 n 0000 ~ 12944238 n 0000 ~ 12944590 n 0000 ~ 12944960 n 0000 ~ 12945708 n 0000 ~ 12946432 n 0000 ~ 12946578 n 0000 ~ 12948633 n 0000 ~ 12948849 n 0000 ~ 12948978 n 0000 ~ 12949549 n 0000 | a genus of dicotyledonous plants -11590783 20 n 01 fungus_family 0 072 @ 08107499 n 0000 #m 12992464 n 0000 ~ 12963307 n 0000 ~ 12964130 n 0000 ~ 12964572 n 0000 ~ 12965209 n 0000 ~ 12966386 n 0000 ~ 12967504 n 0000 ~ 12967776 n 0000 ~ 12968658 n 0000 ~ 12970379 n 0000 ~ 12971157 n 0000 ~ 12972966 n 0000 ~ 12974457 n 0000 ~ 12978232 n 0000 ~ 12978654 n 0000 ~ 12978969 n 0000 ~ 12980478 n 0000 ~ 12981595 n 0000 ~ 12982103 n 0000 ~ 12983217 n 0000 ~ 12985010 n 0000 ~ 12985629 n 0000 ~ 12986084 n 0000 ~ 12987834 n 0000 ~ 12988703 n 0000 ~ 12989142 n 0000 ~ 12989462 n 0000 ~ 12990800 n 0000 ~ 12991488 n 0000 ~ 13000372 n 0000 ~ 13005835 n 0000 ~ 13010064 n 0000 ~ 13010219 n 0000 ~ 13011856 n 0000 ~ 13012613 n 0000 ~ 13015040 n 0000 ~ 13016457 n 0000 ~ 13018579 n 0000 ~ 13019017 n 0000 ~ 13025197 n 0000 ~ 13026146 n 0000 ~ 13027190 n 0000 ~ 13030157 n 0000 ~ 13031690 n 0000 ~ 13034277 n 0000 ~ 13034953 n 0000 ~ 13039870 n 0000 ~ 13041725 n 0000 ~ 13042514 n 0000 ~ 13043516 n 0000 ~ 13044541 n 0000 ~ 13046512 n 0000 ~ 13047011 n 0000 ~ 13047385 n 0000 ~ 13049561 n 0000 ~ 13053187 n 0000 ~ 13054211 n 0000 ~ 13060689 n 0000 ~ 13062112 n 0000 ~ 13062630 n 0000 ~ 13063784 n 0000 ~ 13064678 n 0000 ~ 13066631 n 0000 ~ 13067845 n 0000 ~ 13069348 n 0000 ~ 13070003 n 0000 ~ 13074084 n 0000 ~ 13078133 n 0000 ~ 13080471 n 0000 ~ 13081369 n 0000 ~ 13226526 n 0000 | includes lichen families -11592146 20 n 01 fungus_genus 0 137 @ 08108972 n 0000 #m 12992464 n 0000 ~ 12963494 n 0000 ~ 12964321 n 0000 ~ 12964750 n 0000 ~ 12965463 n 0000 ~ 12966581 n 0000 ~ 12967124 n 0000 ~ 12967656 n 0000 ~ 12967955 n 0000 ~ 12968882 n 0000 ~ 12970560 n 0000 ~ 12971624 n 0000 ~ 12971956 n 0000 ~ 12973202 n 0000 ~ 12973541 n 0000 ~ 12974662 n 0000 ~ 12976389 n 0000 ~ 12978826 n 0000 ~ 12979129 n 0000 ~ 12979630 n 0000 ~ 12980652 n 0000 ~ 12981791 n 0000 ~ 12982338 n 0000 ~ 12982723 n 0000 ~ 12983404 n 0000 ~ 12985236 n 0000 ~ 12986337 n 0000 ~ 12987993 n 0000 ~ 12988858 n 0000 ~ 12989301 n 0000 ~ 12989739 n 0000 ~ 12990092 n 0000 ~ 12990250 n 0000 ~ 12990407 n 0000 ~ 12990938 n 0000 ~ 12991645 n 0000 ~ 12992022 n 0000 ~ 13000668 n 0000 ~ 13001743 n 0000 ~ 13002433 n 0000 ~ 13004160 n 0000 ~ 13005166 n 0000 ~ 13005568 n 0000 ~ 13006377 n 0000 ~ 13006741 n 0000 ~ 13007195 n 0000 ~ 13007770 n 0000 ~ 13009780 n 0000 ~ 13010401 n 0000 ~ 13012030 n 0000 ~ 13012835 n 0000 ~ 13013187 n 0000 ~ 13015229 n 0000 ~ 13015826 n 0000 ~ 13016749 n 0000 ~ 13018749 n 0000 ~ 13019202 n 0000 ~ 13020011 n 0000 ~ 13020623 n 0000 ~ 13022078 n 0000 ~ 13025421 n 0000 ~ 13026339 n 0000 ~ 13027049 n 0000 ~ 13027375 n 0000 ~ 13027670 n 0000 ~ 13030438 n 0000 ~ 13031007 n 0000 ~ 13031956 n 0000 ~ 13034431 n 0000 ~ 13035521 n 0000 ~ 13036592 n 0000 ~ 13037124 n 0000 ~ 13039553 n 0000 ~ 13040108 n 0000 ~ 13040971 n 0000 ~ 13041172 n 0000 ~ 13042694 n 0000 ~ 13042814 n 0000 ~ 13043746 n 0000 ~ 13044149 n 0000 ~ 13045027 n 0000 ~ 13045429 n 0000 ~ 13045834 n 0000 ~ 13046887 n 0000 ~ 13047706 n 0000 ~ 13048212 n 0000 ~ 13048666 n 0000 ~ 13050555 n 0000 ~ 13051196 n 0000 ~ 13051546 n 0000 ~ 13051866 n 0000 ~ 13052431 n 0000 ~ 13053450 n 0000 ~ 13053816 n 0000 ~ 13055009 n 0000 ~ 13057845 n 0000 ~ 13058447 n 0000 ~ 13058796 n 0000 ~ 13059139 n 0000 ~ 13059485 n 0000 ~ 13059852 n 0000 ~ 13060912 n 0000 ~ 13062272 n 0000 ~ 13062868 n 0000 ~ 13063936 n 0000 ~ 13064247 n 0000 ~ 13064852 n 0000 ~ 13065215 n 0000 ~ 13066803 n 0000 ~ 13068073 n 0000 ~ 13068565 n 0000 ~ 13069535 n 0000 ~ 13070708 n 0000 ~ 13071029 n 0000 ~ 13073211 n 0000 ~ 13073526 n 0000 ~ 13074277 n 0000 ~ 13076181 n 0000 ~ 13077811 n 0000 ~ 13078483 n 0000 ~ 13078652 n 0000 ~ 13078809 n 0000 ~ 13079203 n 0000 ~ 13079775 n 0000 ~ 13079953 n 0000 ~ 13080174 n 0000 ~ 13080674 n 0000 ~ 13081050 n 0000 ~ 13081565 n 0000 ~ 13081778 n 0000 ~ 13082293 n 0000 ~ 13082711 n 0000 ~ 13082829 n 0000 ~ 13226698 n 0000 ~ 13231436 n 0000 ~ 13232515 n 0000 | includes lichen genera -11594676 20 n 01 fungus_order 0 032 @ 08106934 n 0000 #m 12992464 n 0000 ~ 12963140 n 0000 ~ 12963796 n 0000 ~ 12965056 n 0000 ~ 12967281 n 0000 ~ 12968408 n 0000 ~ 12970872 n 0000 ~ 12972818 n 0000 ~ 12974286 n 0000 ~ 12977795 n 0000 ~ 12978381 n 0000 ~ 12979478 n 0000 ~ 12980231 n 0000 ~ 12984802 n 0000 ~ 12986858 n 0000 ~ 12987652 n 0000 ~ 12998349 n 0000 ~ 13024967 n 0000 ~ 13026763 n 0000 ~ 13029946 n 0000 ~ 13041548 n 0000 ~ 13043264 n 0000 ~ 13046285 n 0000 ~ 13047216 n 0000 ~ 13049285 n 0000 ~ 13060451 n 0000 ~ 13061921 n 0000 ~ 13063046 n 0000 ~ 13065902 n 0000 ~ 13077479 n 0000 ~ 13082077 n 0000 | the order of fungi -11595312 20 n 04 Gymnospermae 0 class_Gymnospermae 0 Gymnospermophyta 0 division_Gymnospermophyta 0 011 @ 08103777 n 0000 #m 11551211 n 0000 %m 11553763 n 0000 %m 11554175 n 0000 %m 11596108 n 0000 %m 11596486 n 0000 %m 11599694 n 0000 %m 11604698 n 0000 %m 11605708 n 0000 %m 11663449 n 0000 %m 13108662 n 0000 | plants having naked seeds not enclosed in an ovary; in some systems considered a class (Gymnospermae) and in others a division (Gymnospermophyta); comprises three subdivisions (or classes): Cycadophytina (class Cycadopsida) and Gnetophytina (class Gnetopsida) and Coniferophytina (class Coniferopsida); in some classifications the Coniferophytina are divided into three groups: Pinophytina (class Pinopsida) and Ginkgophytina (class Ginkgopsida) and Taxophytina (class Taxopsida) -11596108 20 n 01 gymnosperm 0 007 @ 11552386 n 0000 #m 11595312 n 0000 + 02917327 a 0101 ~ 11596344 n 0000 ~ 11599324 n 0000 ~ 11600372 n 0000 ~ 11605542 n 0000 | plants of the class Gymnospermae having seeds not enclosed in an ovary -11596344 20 n 01 progymnosperm 0 001 @ 11596108 n 0000 | an ancestral fossil type from which modern gymnosperms are thought to have derived -11596486 20 n 05 Gnetopsida 0 class_Gnetopsida 0 Gnetophytina 0 subdivision_Gnetophytina 0 Gnetophyta 0 003 @ 08103777 n 0000 #m 11595312 n 0000 %m 11596845 n 0000 | gymnospermous flowering plants; supposed link between conifers and angiosperms; in some systems classified as a class (Gnetopsida) and in others as a subdivision (Gnetophytina or Gnetophyta) -11596845 20 n 02 Gnetales 0 order_Gnetales 0 005 @ 11534677 n 0000 #m 11596486 n 0000 %m 11597126 n 0000 %m 11597924 n 0000 %m 11598991 n 0000 | chiefly tropical or xerophytic woody plants; practically unknown as fossils but considered close to the ancestral line of angiosperms -11597126 20 n 02 Gnetaceae 0 family_Gnetaceae 0 003 @ 11553763 n 0000 #m 11596845 n 0000 %m 11597396 n 0000 | plants having small unisexual flowers and fleshy or winged fruit: in some classifications includes the genera Ephedra and Welwitschia as well as genus Gnetum -11597396 20 n 01 genus_Gnetum 0 003 @ 11554175 n 0000 #m 11597126 n 0000 %m 11597657 n 0000 | type genus of the Gnetaceae; small trees or shrubs usually with climbing jointed stems and terminal spikes of flowers with orange-red seeds clustered in rough cones -11597657 20 n 02 gnetum 0 Gnetum_gnemon 0 002 @ 13108662 n 0000 #m 11597396 n 0000 | small tropical tree with tiered branches and divaricate branchlets having broad glossy dark green leaves; exploited for its edible young leaves and seeds that provide a fine flour -11597924 20 n 02 Ephedraceae 0 family_Ephedraceae 0 003 @ 11553763 n 0000 #m 11596845 n 0000 %m 11598452 n 0000 | ephedras: in some classifications included in the Gnetaceae -11598100 20 n 02 Catha 0 genus_Catha 0 003 @ 11554175 n 0000 #m 12747563 n 0000 %m 11598287 n 0000 | a genus of African evergreen shrubs characterized by thick leaves and white flowers -11598287 20 n 01 Catha_edulis 0 002 @ 13112664 n 0000 #m 11598100 n 0000 | a shrub that is cultivated by Arabs for its leaves which are chewed or used to make tea -11598452 20 n 01 genus_Ephedra 0 003 @ 11554175 n 0000 #m 11597924 n 0000 %m 11598686 n 0000 | type and sole genus of Ephedraceae: tropical and subtropical evergreen shrubby or creeping plants native to dry and inhospitable regions -11598686 20 n 02 ephedra 0 joint_fir 1 003 @ 13112664 n 0000 #m 11598452 n 0000 ~ 11598886 n 0000 | jointed and nearly leafless desert shrub having reduced scalelike leaves and reddish fleshy seeds -11598886 20 n 02 mahuang 0 Ephedra_sinica 0 001 @ 11598686 n 0000 | Chinese ephedra yielding ephedrine -11598991 20 n 02 Welwitschiaceae 0 family_Welwitschiaceae 0 003 @ 11553763 n 0000 #m 11596845 n 0000 %m 11599165 n 0000 | in some classifications included in the Gnetaceae -11599165 20 n 02 genus_Welwitschia 0 genus_Welwitchia 0 003 @ 11554175 n 0000 #m 11598991 n 0000 %m 11599324 n 0000 | type and sole genus of Welwitschiaceae -11599324 20 n 02 welwitschia 0 Welwitschia_mirabilis 0 002 @ 11596108 n 0000 #m 11599165 n 0000 | curious plant of arid regions of southwestern Africa having a yard-high and yard-wide trunk like a turnip with a deep taproot and two large persistent woody straplike leaves growing from the base; living relic of a flora long disappeared; some may be 700-5000 years old -11599694 20 n 06 Cycadopsida 0 class_Cycadopsida 0 Cycadophytina 0 subdivision_Cycadophytina 0 Cycadophyta 0 subdivision_Cycadophyta 0 004 @ 08103777 n 0000 #m 11595312 n 0000 %m 11600139 n 0000 %m 11604225 n 0000 | palmlike gymnosperms: includes the surviving order Cycadales and several extinct orders; possibly not a natural group; in some systems considered a class (Cycadopsida) and in others a subdivision (Cycadophytina or Cycadophyta) -11600139 20 n 02 Cycadales 0 order_Cycadales 0 004 @ 11534677 n 0000 #m 11599694 n 0000 %m 11600671 n 0000 %m 11601487 n 0000 | primitive tropical gymnosperms abundant in the Mesozoic, now reduced to a few scattered tropical forms -11600372 20 n 01 cycad 0 009 @ 11596108 n 0000 ~ 11601177 n 0000 ~ 11601918 n 0000 ~ 11602478 n 0000 ~ 11602873 n 0000 ~ 11603246 n 0000 ~ 11603462 n 0000 ~ 11603835 n 0000 ~ 11604046 n 0000 | any tropical gymnosperm of the order Cycadales; having unbranched stems with a crown of fernlike leaves -11600671 20 n 03 Cycadaceae 0 family_Cycadaceae 0 cycad_family 0 003 @ 11553763 n 0000 #m 11600139 n 0000 %m 11600900 n 0000 | ancient palmlike plants closely related to ferns in that fertilization is by means of spermatozoids -11600900 20 n 02 Cycas 0 genus_Cycas 0 003 @ 11554175 n 0000 #m 11600671 n 0000 %m 11601333 n 0000 | type genus of Cycadaceae: genus of widely distributed Old World evergreen tropical trees having pinnate leaves and columnar stems covered with persistent bases of old leaves -11601177 20 n 02 sago_palm 2 Cycas_revoluta 0 003 @ 11600372 n 0000 ~ 11601333 n 0000 %s 15062955 n 0000 | dwarf palmlike cycad of Japan that yields sago -11601333 20 n 03 false_sago 0 fern_palm 0 Cycas_circinalis 0 002 @ 11601177 n 0000 #m 11600900 n 0000 | southeastern Indian cycad with palmlike foliage -11601487 20 n 03 Zamiaceae 0 family_Zamiaceae 0 zamia_family 0 007 @ 11553763 n 0000 #m 11600139 n 0000 %m 11601757 n 0000 %m 11602304 n 0000 %m 11602671 n 0000 %m 11603045 n 0000 %m 11603630 n 0000 | a family of cycads often included in the family Cycadaceae: zamias -11601757 20 n 01 genus_Zamia 0 003 @ 11554175 n 0000 #m 11601487 n 0000 %m 11601918 n 0000 | genus of small evergreen tropical and subtropical American cycads -11601918 20 n 01 zamia 0 003 @ 11600372 n 0000 #m 11601757 n 0000 ~ 11602091 n 0000 | any of various cycads of the genus Zamia; among the smallest and most verdant cycads -11602091 20 n 04 coontie 0 Florida_arrowroot 0 Seminole_bread 0 Zamia_pumila 0 001 @ 11601918 n 0000 | small tough woody zamia of Florida and West Indies and Cuba; roots and half-buried stems yield an arrowroot -11602304 20 n 01 genus_Ceratozamia 0 003 @ 11554175 n 0000 #m 11601487 n 0000 %m 11602478 n 0000 | small genus of Mexican cycads; sometimes classified in family Cycadaceae -11602478 20 n 01 ceratozamia 0 002 @ 11600372 n 0000 #m 11602304 n 0000 | a small cycad of the genus Ceratozamia having a short scaly woody trunk and fernlike foliage and woody cones; Mexico -11602671 20 n 01 genus_Dioon 0 003 @ 11554175 n 0000 #m 11601487 n 0000 %m 11602873 n 0000 | small genus of arborescent cycads of Mexico and Central America; sometimes classified in family Cycadaceae -11602873 20 n 01 dioon 0 002 @ 11600372 n 0000 #m 11602671 n 0000 | any cycad of the genus Dioon; handsome palmlike cycads with robust crowns of leaves and rugged trunks -11603045 20 n 01 genus_Encephalartos 0 004 @ 11554175 n 0000 #m 11601487 n 0000 %m 11603246 n 0000 %m 11603462 n 0000 | genus of arborescent African cycads; sometimes classified in family Cycadaceae -11603246 20 n 01 encephalartos 0 002 @ 11600372 n 0000 #m 11603045 n 0000 | any of numerous cycads of the genus Encephalartos having stout cylindrical trunks and a terminal crown of long often spiny pinnate leaves -11603462 20 n 02 kaffir_bread 0 Encephalartos_caffer 0 002 @ 11600372 n 0000 #m 11603045 n 0000 | South African cycad; the farinaceous pith of the fruit used as food -11603630 20 n 01 genus_Macrozamia 0 004 @ 11554175 n 0000 #m 11601487 n 0000 %m 11603835 n 0000 %m 11604046 n 0000 | genus of large evergreen Australian cycads; sometimes classified in family Cycadaceae -11603835 20 n 01 macrozamia 0 002 @ 11600372 n 0000 #m 11603630 n 0000 | any treelike cycad of the genus Macrozamia having erect trunks and pinnate leaves and large cones with sometimes edible nuts; Australia -11604046 20 n 03 burrawong 0 Macrozamia_communis 0 Macrozamia_spiralis 0 002 @ 11600372 n 0000 #m 11603630 n 0000 | large attractive palmlike evergreen cycad of New South Wales -11604225 20 n 02 Bennettitales 0 order_Bennettitales 0 003 @ 11534677 n 0000 #m 11599694 n 0000 %m 11604393 n 0000 | fossil gymnospermous plants of the Carboniferous -11604393 20 n 02 Bennettitaceae 0 family_Bennettitaceae 0 003 @ 11553763 n 0000 #m 11604225 n 0000 %m 11604576 n 0000 | a family of fossil gymnospermous plants of the Carboniferous -11604576 20 n 02 Bennettitis 0 genus_Bennettitis 0 002 @ 11554175 n 0000 #m 11604393 n 0000 | type of the Bennettitales -11604698 20 n 02 Pteridospermopsida 0 class_Pteridospermopsida 0 003 @ 08103777 n 0000 #m 11595312 n 0000 %m 11604904 n 0000 | extinct gymnosperms most of Carboniferous to Jurassic: seed ferns and allies -11604904 20 n 04 Cycadofilicales 0 order_Cycadofilicales 0 Lyginopteridales 0 order_Lyginopteridales 0 003 @ 11534677 n 0000 #m 11604698 n 0000 %m 11605396 n 0000 | fossil gymnospermous trees or climbing plants from the Devonian: seed ferns -11605147 20 n 04 Pteridospermae 0 group_Pteridospermae 0 Pteridospermaphyta 0 group_Pteridospermaphyta 0 001 @ 07992450 n 0000 | used in some classification systems: a group of extinct fossil gymnosperms coextensive with the order Cycadofilicales -11605396 20 n 02 Lyginopteris 0 genus_Lyginopteris 0 002 @ 11554175 n 0000 #m 11604904 n 0000 | genus of fossil seed ferns of the Carboniferous -11605542 20 n 02 seed_fern 0 pteridosperm 0 001 @ 11596108 n 0000 | an extinct seed-producing fernlike plant of the order Cycadofilicales (or group Pteridospermae) -11605708 20 n 05 Coniferopsida 0 class_Coniferopsida 0 Coniferophytina 0 subdivision_Coniferophytina 0 Coniferophyta 0 007 @ 08103777 n 0000 #m 11595312 n 0000 %m 11606379 n 0000 %m 11607071 n 0000 %m 11607392 n 0000 %m 11660537 n 0000 %m 11660848 n 0000 | cone-bearing gymnosperms dating from the Carboniferous period; most are substantial trees; includes the classes Pinopsida (subdivision Pinophytina) and Ginkgopsida (subdivision Ginkgophytina) and Taxopsida (subdivision Taxophytina) which in turn include the surviving orders Coniferales and Taxales (yews) and sometimes Ginkgoales as well as extinct orders such as Cordaitales (of the Carboniferous and Permian) -11606379 20 n 02 Cordaitales 0 order_Cordaitales 0 003 @ 11534677 n 0000 #m 11605708 n 0000 %m 11606661 n 0000 | extinct plants having tall arborescent trunks comparable to or more advanced than cycads; known from the Pennsylvanian period; probably extinct since the Mesozoic era -11606661 20 n 02 Cordaitaceae 0 family_Cordaitaceae 0 003 @ 11553763 n 0000 #m 11606379 n 0000 %m 11606846 n 0000 | chiefly Paleozoic plants; Cordaites is the chief and typical genus -11606846 20 n 02 Cordaites 0 genus_Cordaites 0 002 @ 11554175 n 0000 #m 11606661 n 0000 | tall Paleozoic trees superficially resembling modern screw pines; structurally intermediate in some ways between cycads and conifers -11607071 20 n 04 Pinopsida 0 class_Pinopsida 0 Pinophytina 0 subdivision_Pinophytina 0 002 @ 08103777 n 0000 #m 11605708 n 0000 | most conifers: in some systems classified as a class (Pinopsida) and in others as a subdivision (Pinophytina); used in some classifications for one of five subdivisions of Gymnospermophyta -11607392 20 n 02 Coniferales 0 order_Coniferales 0 010 @ 11534677 n 0000 #m 11605708 n 0000 %m 11607739 n 0000 %m 11629501 n 0000 %m 11645271 n 0000 %m 11648428 n 0000 %m 11649597 n 0000 %m 11651259 n 0000 %m 11659909 n 0000 %m 11660979 n 0000 | profusely branching and chiefly evergreen trees and some shrubs having narrow or needlelike leaves -11607739 20 n 03 Pinaceae 0 family_Pinaceae 0 pine_family 0 012 @ 11553763 n 0000 #m 11607392 n 0000 %m 11608055 n 0000 %m 11618750 n 0000 %m 11620248 n 0000 %m 11620560 n 0000 %m 11622988 n 0000 %m 11624367 n 0000 %m 11627028 n 0000 %m 11628284 n 0000 %m 11629211 n 0000 %m 11645041 n 0000 | a family of Pinaceae -11608055 20 n 02 Pinus 0 genus_Pinus 0 005 @ 11554175 n 0000 #m 11607739 n 0000 %m 11608250 n 0000 %m 11609475 n 0000 %m 11609862 n 0000 | type genus of the Pinaceae: large genus of true pines -11608250 20 n 03 pine 0 pine_tree 0 true_pine 0 031 @ 13108841 n 0000 #m 11608055 n 0000 %s 11608885 n 0000 ~ 11609475 n 0000 ~ 11611087 n 0000 ~ 11611233 n 0000 ~ 11611356 n 0000 ~ 11611561 n 0000 ~ 11611758 n 0000 ~ 11612018 n 0000 ~ 11612349 n 0000 ~ 11612575 n 0000 ~ 11612923 n 0000 ~ 11614250 n 0000 ~ 11614713 n 0000 ~ 11615026 n 0000 ~ 11615259 n 0000 ~ 11615387 n 0000 ~ 11615607 n 0000 ~ 11615812 n 0000 ~ 11616486 n 0000 ~ 11616662 n 0000 ~ 11616852 n 0000 ~ 11617090 n 0000 ~ 11617272 n 0000 ~ 11617631 n 0000 ~ 11617878 n 0000 ~ 11618079 n 0000 ~ 11618290 n 0000 ~ 11618525 n 0000 %p 11683331 n 0000 | a coniferous tree -11608885 20 n 01 pine 2 005 @ 15098161 n 0000 #s 11608250 n 0000 ~ 11609122 n 0000 ~ 11609251 n 0000 ~ 11609362 n 0000 | straight-grained durable and often resinous white to yellowish timber of any of numerous trees of the genus Pinus -11609122 20 n 01 knotty_pine 0 001 @ 11608885 n 0000 | pine lumber with many knots; used especially for paneling and furniture -11609251 20 n 01 white_pine 2 002 @ 11608885 n 0000 #s 11612923 n 0000 | soft white wood of white pine trees -11609362 20 n 01 yellow_pine 2 002 @ 11608885 n 0000 #s 11614250 n 0000 | hard yellowish wood of a yellow pine -11609475 20 n 02 pinon 0 pinyon 0 006 @ 11608250 n 0000 #m 11608055 n 0000 ~ 11609684 n 0000 ~ 11610437 n 0000 ~ 11610602 n 0000 ~ 11610823 n 0000 | any of several low-growing pines of western North America -11609684 20 n 01 nut_pine 0 005 @ 11609475 n 0000 %p 07774842 n 0000 ~ 11609862 n 0000 ~ 11610047 n 0000 ~ 11610215 n 0000 | any of several pinons bearing edible nutlike seeds -11609862 20 n 03 pinon_pine 0 Mexican_nut_pine 0 Pinus_cembroides 0 002 @ 11609684 n 0000 #m 11608055 n 0000 | a small two-needled or three-needled pinon of Mexico and southern Texas -11610047 20 n 02 Rocky_mountain_pinon 0 Pinus_edulis 0 001 @ 11609684 n 0000 | small compact two-needled pinon of southwestern United States; important as a nut pine -11610215 20 n 04 single-leaf 0 single-leaf_pine 0 single-leaf_pinyon 0 Pinus_monophylla 0 001 @ 11609684 n 0000 | pinon of southwestern United States having solitary needles and often many stems; important as a nut pine -11610437 20 n 03 bishop_pine 0 bishop's_pine 0 Pinus_muricata 0 001 @ 11609475 n 0000 | two-needled or three-needled pinon mostly of northwestern California coast -11610602 20 n 02 California_single-leaf_pinyon 0 Pinus_californiarum 0 001 @ 11609475 n 0000 | very small tree similar to Rocky mountain pinon but having a single needle per fascicle; similar to Parry's pinyon in range -11610823 20 n 03 Parry's_pinyon 0 Pinus_quadrifolia 0 Pinus_parryana 0 001 @ 11609475 n 0000 | five-needled pinon of southern California and northern Baja California having (sometimes three-needled or four-needled showing hybridization from Pinus californiarum) -11611087 20 n 02 spruce_pine 0 Pinus_glabra 0 001 @ 11608250 n 0000 | large two-needled pine of southeastern United States with light soft wood -11611233 20 n 02 black_pine 5 Pinus_nigra 0 001 @ 11608250 n 0000 | large two-needled timber pine of southeastern Europe -11611356 20 n 03 pitch_pine 1 northern_pitch_pine 0 Pinus_rigida 0 001 @ 11608250 n 0000 | large three-needled pine of the eastern United States and southeastern Canada; closely related to the pond pine -11611561 20 n 02 pond_pine 0 Pinus_serotina 0 001 @ 11608250 n 0000 | large three-needled pine of sandy swamps of southeastern United States; needles longer than those of the northern pitch pine -11611758 20 n 04 stone_pine 0 umbrella_pine 1 European_nut_pine 0 Pinus_pinea 0 002 @ 11608250 n 0000 %p 07774842 n 0000 | medium-sized two-needled pine of southern Europe having a spreading crown; widely cultivated for its sweet seeds that resemble almonds -11612018 20 n 05 Swiss_pine 0 Swiss_stone_pine 0 arolla_pine 0 cembra_nut_tree 0 Pinus_cembra 0 002 @ 11608250 n 0000 %p 11612235 n 0000 | large five-needled European pine; yields cembra nuts and a resinous exudate -11612235 20 n 02 cembra_nut 0 cedar_nut 0 002 @ 13136556 n 0000 #p 11612018 n 0000 | the seed of the Swiss pine -11612349 20 n 06 Swiss_mountain_pine 0 mountain_pine 1 dwarf_mountain_pine 0 mugho_pine 0 mugo_pine 0 Pinus_mugo 0 001 @ 11608250 n 0000 | low shrubby pine of central Europe with short bright green needles in bunches of two -11612575 20 n 02 ancient_pine 0 Pinus_longaeva 0 001 @ 11608250 n 0000 | small slow-growing pine of western United States similar to the bristlecone pine; chocolate brown bark in plates and short needles in bunches of 5; crown conic but becoming rough and twisted; oldest plant in the world growing to 5000 years in cold semidesert mountain tops -11612923 20 n 01 white_pine 0 007 @ 11608250 n 0000 %s 11609251 n 0000 ~ 11613219 n 0000 ~ 11613459 n 0000 ~ 11613692 n 0000 ~ 11613867 n 0000 ~ 11614039 n 0000 | any of several five-needled pines with white wood and smooth usually light grey bark when young; especially the eastern white pine -11613219 20 n 04 American_white_pine 0 eastern_white_pine 0 weymouth_pine 0 Pinus_strobus 0 001 @ 11612923 n 0000 | tall-growing pine of eastern North America; bark is brown with longitudinal fissures when mature; valued as a timber tree -11613459 20 n 04 western_white_pine 0 silver_pine 1 mountain_pine 2 Pinus_monticola 0 001 @ 11612923 n 0000 | tall pine of western North America with stout blue-green needles; bark is grey-brown with rectangular plates when mature -11613692 20 n 02 southwestern_white_pine 0 Pinus_strobiformis 0 001 @ 11612923 n 0000 | medium-size pine of northwestern Mexico; bark is dark brown and furrowed when mature -11613867 20 n 02 limber_pine 0 Pinus_flexilis 0 001 @ 11612923 n 0000 | western North American pine with long needles and very flexible limbs and dark-grey furrowed bark -11614039 20 n 03 whitebark_pine 0 whitebarked_pine 0 Pinus_albicaulis 0 001 @ 11612923 n 0000 | small pine of western North America; having smooth grey-white bark and soft brittle wood; similar to limber pine -11614250 20 n 01 yellow_pine 0 005 @ 11608250 n 0000 %s 11609362 n 0000 ~ 11614420 n 0000 ~ 11615967 n 0000 ~ 11616260 n 0000 | any of various pines having yellow wood -11614420 20 n 05 ponderosa 0 ponderosa_pine 0 western_yellow_pine 0 bull_pine 0 Pinus_ponderosa 0 001 @ 11614250 n 0000 | common and widely distributed tall timber pine of western North America having dark green needles in bunches of 2 to 5 and thick bark with dark brown plates when mature -11614713 20 n 04 Jeffrey_pine 0 Jeffrey's_pine 0 black_pine 3 Pinus_jeffreyi 0 001 @ 11608250 n 0000 | tall symmetrical pine of western North America having long blue-green needles in bunches of 3 and elongated cones on spreading somewhat pendulous branches; sometimes classified as a variety of ponderosa pine -11615026 20 n 05 shore_pine 0 lodgepole 0 lodgepole_pine 0 spruce_pine 2 Pinus_contorta 0 001 @ 11608250 n 0000 | shrubby two-needled pine of coastal northwestern United States; red to yellow-brown bark fissured into small squares -11615259 20 n 02 Sierra_lodgepole_pine 0 Pinus_contorta_murrayana 0 001 @ 11608250 n 0000 | tall subspecies of lodgepole pine -11615387 20 n 03 loblolly_pine 0 frankincense_pine 0 Pinus_taeda 0 001 @ 11608250 n 0000 | tall spreading three-needled pine of southeastern United States having reddish-brown fissured bark and a full bushy upper head -11615607 20 n 02 jack_pine 0 Pinus_banksiana 0 001 @ 11608250 n 0000 | slender medium-sized two-needled pine of eastern North America; with yellow-green needles and scaly grey to red-brown fissured bark -11615812 20 n 01 swamp_pine 0 001 @ 11608250 n 0000 | any of several pines that prefer or endure moist situations such as loblolly pine or longleaf pine -11615967 20 n 05 longleaf_pine 0 pitch_pine 2 southern_yellow_pine 0 Georgia_pine 0 Pinus_palustris 0 001 @ 11614250 n 0000 | large three-needled pine of southeastern United States having very long needles and gnarled twisted limbs; bark is red-brown deeply ridged; an important timber tree -11616260 20 n 04 shortleaf_pine 0 short-leaf_pine 0 shortleaf_yellow_pine 0 Pinus_echinata 0 001 @ 11614250 n 0000 | large pine of southern United States having short needles in bunches of 2-3 and red-brown bark when mature -11616486 20 n 03 red_pine 1 Canadian_red_pine 0 Pinus_resinosa 0 001 @ 11608250 n 0000 | pine of eastern North America having long needles in bunches of two and reddish bark -11616662 20 n 04 Scotch_pine 0 Scots_pine 0 Scotch_fir 0 Pinus_sylvestris 0 001 @ 11608250 n 0000 | medium large two-needled pine of northern Europe and Asia having flaking red-brown bark -11616852 20 n 04 scrub_pine 0 Virginia_pine 0 Jersey_pine 0 Pinus_virginiana 0 001 @ 11608250 n 0000 | common small shrubby pine of the eastern United States having straggling often twisted or branches and short needles in bunches of 2 -11617090 20 n 02 Monterey_pine 0 Pinus_radiata 0 001 @ 11608250 n 0000 | tall California pine with long needles in bunches of 3, a dense crown, and dark brown deeply fissured bark -11617272 20 n 03 bristlecone_pine 0 Rocky_Mountain_bristlecone_pine 0 Pinus_aristata 0 001 @ 11608250 n 0000 | small slow-growing upland pine of western United States (Rocky Mountains) having dense branches with fissured rust-brown bark and short needles in bunches of 5 and thorn-tipped cone scales; among the oldest living things some over 4500 years old -11617631 20 n 04 table-mountain_pine 0 prickly_pine 0 hickory_pine 0 Pinus_pungens 0 001 @ 11608250 n 0000 | a small two-needled upland pine of the eastern United States (Appalachians) having dark brown flaking bark and thorn-tipped cone scales -11617878 20 n 02 knobcone_pine 0 Pinus_attenuata 0 001 @ 11608250 n 0000 | medium-sized three-needled pine of the Pacific coast of the United States having a prominent knob on each scale of the cone -11618079 20 n 03 Japanese_red_pine 0 Japanese_table_pine 0 Pinus_densiflora 0 001 @ 11608250 n 0000 | pine native to Japan and Korea having a wide-spreading irregular crown when mature; grown as an ornamental -11618290 20 n 03 Japanese_black_pine 0 black_pine 4 Pinus_thunbergii 0 001 @ 11608250 n 0000 | large Japanese ornamental having long needles in bunches of 2; widely planted in United States because of its resistance to salt and smog -11618525 20 n 06 Torrey_pine 0 Torrey's_pine 0 soledad_pine 0 grey-leaf_pine 0 sabine_pine 0 Pinus_torreyana 0 001 @ 11608250 n 0000 | medium-sized five-needled pine of southwestern California having long cylindrical cones -11618750 20 n 02 Larix 0 genus_Larix 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11618861 n 0000 | larches -11618861 20 n 02 larch 0 larch_tree 0 008 @ 13108841 n 0000 #m 11618750 n 0000 %s 11619136 n 0000 ~ 11619227 n 0000 ~ 11619455 n 0000 ~ 11619687 n 0000 ~ 11619845 n 0000 ~ 11620016 n 0000 | any of numerous conifers of the genus Larix all having deciduous needlelike leaves -11619136 20 n 01 larch 2 002 @ 15098161 n 0000 #s 11618861 n 0000 | wood of a larch tree -11619227 20 n 04 American_larch 0 tamarack 0 black_larch 0 Larix_laricina 0 001 @ 11618861 n 0000 | medium-sized larch of Canada and northern United States including Alaska having a broad conic crown and rust-brown scaly bark -11619455 20 n 04 western_larch 0 western_tamarack 0 Oregon_larch 0 Larix_occidentalis 0 001 @ 11618861 n 0000 | tall larch of western North America have pale green sharply pointed leaves and oblong cones; an important timber tree -11619687 20 n 02 subalpine_larch 0 Larix_lyallii 0 001 @ 11618861 n 0000 | medium-sized larch of the Rocky Mountains; closely related to Larix occidentalis -11619845 20 n 02 European_larch 0 Larix_decidua 0 001 @ 11618861 n 0000 | tall European tree having a slender conic crown, flat needlelike leaves, and hairy cone scales -11620016 20 n 03 Siberian_larch 0 Larix_siberica 0 Larix_russica 0 001 @ 11618861 n 0000 | medium-sized larch of northeastern Russia and Siberia having narrowly conic crown and soft narrow bright-green leaves; used in cultivation -11620248 20 n 02 Pseudolarix 0 genus_Pseudolarix 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11620389 n 0000 | one species: golden larch -11620389 20 n 02 golden_larch 0 Pseudolarix_amabilis 0 002 @ 13108841 n 0000 #m 11620248 n 0000 | Chinese deciduous conifer resembling a larch with golden yellow leaves -11620560 20 n 02 Abies 0 genus_Abies 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11620673 n 0000 | true firs -11620673 20 n 03 fir 0 fir_tree 0 true_fir 0 006 @ 13108841 n 0000 #m 11620560 n 0000 %s 11620912 n 0000 ~ 11621029 n 0000 ~ 11622771 n 0000 %p 11683105 n 0000 | any of various evergreen trees of the genus Abies; chiefly of upland areas -11620912 20 n 01 fir 2 003 @ 15098161 n 0000 #s 11620673 n 0000 ~ 11628678 n 0000 | nonresinous wood of a fir tree -11621029 20 n 01 silver_fir 0 008 @ 11620673 n 0000 ~ 11621281 n 0000 ~ 11621547 n 0000 ~ 11621727 n 0000 ~ 11621950 n 0000 ~ 11622184 n 0000 ~ 11622368 n 0000 ~ 11622591 n 0000 | any of various true firs having leaves white or silvery white beneath -11621281 20 n 06 amabilis_fir 0 white_fir 1 Pacific_silver_fir 0 red_silver_fir 0 Christmas_tree 1 Abies_amabilis 0 001 @ 11621029 n 0000 | medium to tall fir of western North America having a conic crown and branches in tiers; leaves smell of orange when crushed -11621547 20 n 03 European_silver_fir 0 Christmas_tree 2 Abies_alba 0 001 @ 11621029 n 0000 | tall timber tree of central and southern Europe having a regular crown and grey bark -11621727 20 n 05 white_fir 2 Colorado_fir 0 California_white_fir 0 Abies_concolor 0 Abies_lowiana 0 001 @ 11621029 n 0000 | medium to tall fir of central to western United States having a narrow erect crown and soft wood -11621950 20 n 04 balsam_fir 0 balm_of_Gilead 1 Canada_balsam 1 Abies_balsamea 0 001 @ 11621029 n 0000 | medium-sized fir of northeastern North America; leaves smell of balsam when crushed; much used for pulpwood and Christmas trees -11622184 20 n 02 Fraser_fir 0 Abies_fraseri 0 001 @ 11621029 n 0000 | small fast-growing but short-lived fir of southern Alleghenies similar to balsam fir but with very short leaves -11622368 20 n 05 lowland_fir 0 lowland_white_fir 0 giant_fir 0 grand_fir 0 Abies_grandis 0 001 @ 11621029 n 0000 | lofty fir of the Pacific coast of northwestern America having long curving branches and deep green leaves -11622591 20 n 03 Alpine_fir 0 subalpine_fir 0 Abies_lasiocarpa 0 001 @ 11621029 n 0000 | medium-tall timber tree of the Rocky Mountains having a narrowly conic to columnar crown -11622771 20 n 04 Santa_Lucia_fir 0 bristlecone_fir 0 Abies_bracteata 0 Abies_venusta 0 001 @ 11620673 n 0000 | a pyramidal fir of southwestern California having spiny pointed leaves and cone scales with long spines -11622988 20 n 02 Cedrus 0 genus_Cedrus 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11623105 n 0000 | true cedars -11623105 20 n 03 cedar 1 cedar_tree 1 true_cedar 0 006 @ 13108841 n 0000 #m 11622988 n 0000 %s 11623304 n 0000 ~ 11623815 n 0000 ~ 11623967 n 0000 ~ 11624192 n 0000 | any cedar of the genus Cedrus -11623304 20 n 02 cedar 3 cedarwood 0 005 @ 15098161 n 0000 #s 11623105 n 0000 #s 11630017 n 0000 ~ 11623556 n 0000 ~ 11635709 n 0000 | durable aromatic wood of any of numerous cedar trees; especially wood of the red cedar often used for cedar chests -11623556 20 n 01 red_cedar 4 002 @ 11623304 n 0000 ~ 11623685 n 0000 | fragrant reddish wood of any of various red cedar trees -11623685 20 n 01 pencil_cedar 2 002 @ 11623556 n 0000 #s 11637015 n 0000 | wood of a pencil cedar tree; used for making pencils -11623815 20 n 02 cedar_of_Lebanon 0 Cedrus_libani 0 001 @ 11623105 n 0000 | cedar of Lebanon and northwestern Syria that attains great age and height -11623967 20 n 04 deodar 0 deodar_cedar 0 Himalayan_cedar 0 Cedrus_deodara 0 001 @ 11623105 n 0000 | tall East Indian cedar having spreading branches with nodding tips; highly valued for its appearance as well as its timber -11624192 20 n 02 Atlas_cedar 0 Cedrus_atlantica 0 001 @ 11623105 n 0000 | tall Algerian evergreen of Atlas mountains with blue-green leaves; widely planted as an ornamental -11624367 20 n 02 Picea 0 genus_Picea 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11624531 n 0000 | a genus of temperate and Arctic evergreen trees (see spruce) -11624531 20 n 01 spruce 0 013 @ 13108841 n 0000 #m 11624367 n 0000 %s 11624840 n 0000 ~ 11625003 n 0000 ~ 11625223 n 0000 ~ 11625391 n 0000 ~ 11625632 n 0000 ~ 11625804 n 0000 ~ 11626010 n 0000 ~ 11626152 n 0000 ~ 11626409 n 0000 ~ 11626585 n 0000 ~ 11626826 n 0000 | any coniferous tree of the genus Picea -11624840 20 n 01 spruce 2 002 @ 15098161 n 0000 #s 11624531 n 0000 | light soft moderately strong wood of spruce trees; used especially for timbers and millwork -11625003 20 n 02 Norway_spruce 0 Picea_abies 0 001 @ 11624531 n 0000 | tall pyramidal spruce native to northern Europe having dark green foliage on spreading branches with pendulous branchlets and long pendulous cones -11625223 20 n 03 weeping_spruce 0 Brewer's_spruce 0 Picea_breweriana 0 001 @ 11624531 n 0000 | medium-sized spruce of California and Oregon having pendulous branches -11625391 20 n 03 Engelmann_spruce 0 Engelmann's_spruce 0 Picea_engelmannii 0 001 @ 11624531 n 0000 | tall spruce of Rocky Mountains and British Columbia with blue-green needles and acutely conic crown; wood used for rough lumber and boxes -11625632 20 n 02 white_spruce 0 Picea_glauca 0 001 @ 11624531 n 0000 | medium-sized spruce of northeastern North America having short blue-green leaves and slender cones -11625804 20 n 03 black_spruce 0 Picea_mariana 0 spruce_pine 3 001 @ 11624531 n 0000 | small spruce of boggy areas of northeastern North America having spreading branches with dense foliage; inferior wood -11626010 20 n 02 Siberian_spruce 0 Picea_obovata 0 001 @ 11624531 n 0000 | tall spruce of northern Europe and Asia; resembles Norway spruce -11626152 20 n 02 Sitka_spruce 0 Picea_sitchensis 0 001 @ 11624531 n 0000 | a large spruce that grows only along the northwestern coast of the United States and Canada; has sharp stiff needles and thin bark; the wood has a high ratio of strength to weight -11626409 20 n 02 oriental_spruce 0 Picea_orientalis 0 001 @ 11624531 n 0000 | evergreen tree of the Caucasus and Asia Minor used as an ornamental having pendulous branchlets -11626585 20 n 04 Colorado_spruce 0 Colorado_blue_spruce 0 silver_spruce 0 Picea_pungens 0 001 @ 11624531 n 0000 | tall spruce with blue-green needles and dense conic crown; older trees become columnar with lower branches sweeping downward -11626826 20 n 04 red_spruce 0 eastern_spruce 0 yellow_spruce 0 Picea_rubens 0 001 @ 11624531 n 0000 | medium-sized spruce of eastern North America; chief lumber spruce of the area; source of pulpwood -11627028 20 n 02 Tsuga 0 genus_Tsuga 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11627168 n 0000 | hemlock; hemlock fir; hemlock spruce -11627168 20 n 02 hemlock 1 hemlock_tree 0 007 @ 13108841 n 0000 #m 11627028 n 0000 %s 11627364 n 0000 ~ 11627512 n 0000 ~ 11627714 n 0000 ~ 11627908 n 0000 ~ 11628087 n 0000 | an evergreen tree -11627364 20 n 01 hemlock 2 002 @ 15098161 n 0000 #s 11627168 n 0000 | soft coarse splintery wood of a hemlock tree especially the western hemlock -11627512 20 n 04 eastern_hemlock 0 Canadian_hemlock 0 spruce_pine 4 Tsuga_canadensis 0 001 @ 11627168 n 0000 | common forest tree of the eastern United States and Canada; used especially for pulpwood -11627714 20 n 02 Carolina_hemlock 0 Tsuga_caroliniana 0 001 @ 11627168 n 0000 | medium-sized evergreen of southeastern United States having spreading branches and widely diverging cone scales -11627908 20 n 03 mountain_hemlock 0 black_hemlock 0 Tsuga_mertensiana 0 001 @ 11627168 n 0000 | large evergreen of western United States; wood much harder than Canadian hemlock -11628087 20 n 04 western_hemlock 0 Pacific_hemlock 0 west_coast_hemlock 0 Tsuga_heterophylla 0 001 @ 11627168 n 0000 | tall evergreen of western North America; commercially important timber tree -11628284 20 n 02 Pseudotsuga 0 genus_Pseudotsuga 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11628456 n 0000 | douglas fir; closely related to genera Larix and Cathaya -11628456 20 n 01 douglas_fir 0 005 @ 13108841 n 0000 #m 11628284 n 0000 %s 11628678 n 0000 ~ 11628793 n 0000 ~ 11629047 n 0000 | tall evergreen timber tree of western North America having resinous wood and short needles -11628678 20 n 01 douglas_fir 2 002 @ 11620912 n 0000 #s 11628456 n 0000 | strong durable timber of a douglas fir -11628793 20 n 07 green_douglas_fir 0 douglas_spruce 0 douglas_pine 0 douglas_hemlock 0 Oregon_fir 0 Oregon_pine 0 Pseudotsuga_menziesii 0 001 @ 11628456 n 0000 | lofty douglas fir of northwestern North America having short needles and egg-shaped cones -11629047 20 n 03 big-cone_spruce 0 big-cone_douglas_fir 0 Pseudotsuga_macrocarpa 0 001 @ 11628456 n 0000 | douglas fir of California having cones 4-8 inches long -11629211 20 n 01 genus_Cathaya 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11629354 n 0000 | one species; related to Pseudotsuga and Larix -11629354 20 n 01 Cathaya 0 002 @ 13108841 n 0000 #m 11629211 n 0000 | Chinese evergreen conifer discovered in 1955; not yet cultivated elsewhere -11629501 20 n 03 Cupressaceae 0 family_Cupressaceae 0 cypress_family 0 021 @ 11553763 n 0000 #m 11607392 n 0000 %m 11630017 n 0000 %m 11630351 n 0000 %m 11632794 n 0000 %m 11633116 n 0000 %m 11633459 n 0000 %m 11634526 n 0000 %m 11634970 n 0000 %m 11636068 n 0000 %m 11636389 n 0000 %m 11638902 n 0000 %m 11639609 n 0000 %m 11639863 n 0000 %m 11640471 n 0000 %m 11640645 n 0000 %m 11641275 n 0000 %m 11641788 n 0000 %m 11642912 n 0000 %m 11643684 n 0000 %m 11644712 n 0000 | cypresses and junipers and many cedars -11630017 20 n 02 cedar 2 cedar_tree 2 012 @ 13108841 n 0000 #m 11629501 n 0000 %s 11623304 n 0000 ~ 11633284 n 0000 ~ 11634736 n 0000 ~ 11635152 n 0000 ~ 11635433 n 0000 ~ 11635830 n 0000 ~ 11636204 n 0000 ~ 11639084 n 0000 ~ 11639306 n 0000 ~ 11639445 n 0000 | any of numerous trees of the family Cupressaceae that resemble cedars -11630351 20 n 02 Cupressus 0 genus_Cupressus 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11630489 n 0000 | type genus of Cupressaceae -11630489 20 n 02 cypress 1 cypress_tree 0 012 @ 13108841 n 0000 #m 11630351 n 0000 %s 11630890 n 0000 ~ 11631159 n 0000 ~ 11631405 n 0000 ~ 11631619 n 0000 ~ 11631854 n 0000 ~ 11631985 n 0000 ~ 11632167 n 0000 ~ 11632376 n 0000 ~ 11632619 n 0000 %p 11683216 n 0000 | any of numerous evergreen conifers of the genus Cupressus of north temperate regions having dark scalelike leaves and rounded cones -11630890 20 n 01 cypress 2 009 @ 15098161 n 0000 #s 11630489 n 0000 ~ 11633633 n 0000 ~ 11636566 n 0000 ~ 11640645 n 0000 ~ 11641963 n 0000 ~ 11642243 n 0000 ~ 11642430 n 0000 ~ 11643022 n 0000 | wood of any of various cypress trees especially of the genus Cupressus -11631159 20 n 02 gowen_cypress 0 Cupressus_goveniana 0 001 @ 11630489 n 0000 | small sometimes shrubby tree native to California; often used as an ornamental; in some classification systems includes the pygmy cypress and the Santa Cruz cypress -11631405 20 n 03 pygmy_cypress 0 Cupressus_pigmaea 0 Cupressus_goveniana_pigmaea 0 001 @ 11630489 n 0000 | rare small cypress native to northern California; sometimes considered the same species as gowen cypress -11631619 20 n 03 Santa_Cruz_cypress 0 Cupressus_abramsiana 0 Cupressus_goveniana_abramsiana 0 001 @ 11630489 n 0000 | rare California cypress taller than but closely related to gowen cypress and sometimes considered the same species -11631854 20 n 02 Arizona_cypress 0 Cupressus_arizonica 0 001 @ 11630489 n 0000 | Arizona timber tree with bluish silvery foliage -11631985 20 n 02 Guadalupe_cypress 0 Cupressus_guadalupensis 0 001 @ 11630489 n 0000 | relatively low wide-spreading endemic on Guadalupe Island; cultivated for its bluish foliage -11632167 20 n 02 Monterey_cypress 0 Cupressus_macrocarpa 0 001 @ 11630489 n 0000 | tall California cypress endemic on Monterey Bay; widely used for ornament as well as reforestation and shelterbelt planting -11632376 20 n 04 Mexican_cypress 0 cedar_of_Goa 0 Portuguese_cypress 0 Cupressus_lusitanica 0 001 @ 11630489 n 0000 | tall spreading evergreen found in Mexico having drooping branches; believed to have been introduced into Portugal from Goa -11632619 20 n 03 Italian_cypress 0 Mediterranean_cypress 0 Cupressus_sempervirens 0 001 @ 11630489 n 0000 | tall Eurasian cypress with thin grey bark and ascending branches -11632794 20 n 02 Athrotaxis 0 genus_Athrotaxis 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11632929 n 0000 | a genus of gymnosperm -11632929 20 n 02 King_William_pine 0 Athrotaxis_selaginoides 0 002 @ 13108841 n 0000 #m 11632794 n 0000 | evergreen of Tasmanian mountains having sharp-pointed leaves that curve inward -11633116 20 n 02 Austrocedrus 0 genus_Austrocedrus 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11633284 n 0000 | one species; formerly included in genus Libocedrus -11633284 20 n 02 Chilean_cedar 0 Austrocedrus_chilensis 0 002 @ 11630017 n 0000 #m 11633116 n 0000 | a small South American evergreen having coppery bark and pretty foliage -11633459 20 n 02 Callitris 0 genus_Callitris 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11633633 n 0000 | evergreen monoecious coniferous trees or shrubs: cypress pines -11633633 20 n 01 cypress_pine 0 006 @ 11630890 n 0000 #m 11633459 n 0000 ~ 11633863 n 0000 ~ 11633999 n 0000 ~ 11634243 n 0000 ~ 11634393 n 0000 | any of several evergreen trees or shrubs of Australia and northern New Caledonia -11633863 20 n 02 Port_Jackson_pine 0 Callitris_cupressiformis 0 001 @ 11633633 n 0000 | Australian cypress pine having globular cones -11633999 20 n 04 black_cypress_pine 0 red_cypress_pine 0 Callitris_endlicheri 0 Callitris_calcarata 0 001 @ 11633633 n 0000 | Australian tree with small flattened scales as leaves and numerous dark brown seed; valued for its timber and resin -11634243 20 n 03 white_cypress_pine 0 Callitris_glaucophylla 0 Callitris_glauca 0 001 @ 11633633 n 0000 | small tree or shrub of southern Australia -11634393 20 n 02 stringybark_pine 0 Callitris_parlatorei 0 001 @ 11633633 n 0000 | Australian cypress pine with fibrous inner bark -11634526 20 n 02 Calocedrus 0 genus_Calocedrus 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11634736 n 0000 | tall evergreens of western North America and eastern Asia; formerly included in genus Libocedrus -11634736 20 n 04 incense_cedar 2 red_cedar 1 Calocedrus_decurrens 0 Libocedrus_decurrens 0 002 @ 11630017 n 0000 #m 11634526 n 0000 | tall tree of the Pacific coast of North America having foliage like cypress and cinnamon-red bark -11634970 20 n 02 Chamaecyparis 0 genus_Chamaecyparis 0 005 @ 11554175 n 0000 #m 11629501 n 0000 %m 11635152 n 0000 %m 11635433 n 0000 %m 11635830 n 0000 | a genus of Chamaecyparis -11635152 20 n 06 southern_white_cedar 0 coast_white_cedar 0 Atlantic_white_cedar 0 white_cypress 0 white_cedar 1 Chamaecyparis_thyoides 0 002 @ 11630017 n 0000 #m 11634970 n 0000 | slow-growing medium-sized cedar of east coast of the United States; resembles American arborvitae -11635433 20 n 05 Oregon_cedar 0 Port_Orford_cedar 0 Lawson's_cypress 0 Lawson's_cedar 0 Chamaecyparis_lawsoniana 0 003 @ 11630017 n 0000 #m 11634970 n 0000 %s 11635709 n 0000 | large timber tree of western North America with trunk diameter to 12 feet and height to 200 feet -11635709 20 n 01 Port_Orford_cedar 2 002 @ 11623304 n 0000 #s 11635433 n 0000 | the wood of the Port Orford cedar tree -11635830 20 n 05 yellow_cypress 0 yellow_cedar 0 Nootka_cypress 0 Alaska_cedar 0 Chamaecyparis_nootkatensis 0 002 @ 11630017 n 0000 #m 11634970 n 0000 | tall evergreen of the Pacific coast of North America often cultivated for ornament -11636068 20 n 02 Cryptomeria 0 genus_Cryptomeria 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11636204 n 0000 | Japanese cedar; sugi -11636204 20 n 04 Japanese_cedar 0 Japan_cedar 0 sugi 0 Cryptomeria_japonica 0 002 @ 11630017 n 0000 #m 11636068 n 0000 | tall evergreen of Japan and China yielding valuable soft wood -11636389 20 n 02 Juniperus 0 genus_Juniperus 0 006 @ 11554175 n 0000 #m 11629501 n 0000 %m 11636566 n 0000 %m 11637015 n 0000 %m 11637482 n 0000 %m 11637659 n 0000 | junipers -11636566 20 n 01 juniper 0 010 @ 11630890 n 0000 #m 11636389 n 0000 %p 11636835 n 0000 ~ 11637015 n 0000 ~ 11637810 n 0000 ~ 11637991 n 0000 ~ 11638109 n 0000 ~ 11638378 n 0000 ~ 11638525 n 0000 ~ 11638698 n 0000 | coniferous shrub or small tree with berrylike cones -11636835 20 n 01 juniper_berry 0 002 @ 13134947 n 0000 #p 11636566 n 0000 | berrylike fruit of a plant of the genus Juniperus especially the berrylike cone of the common juniper -11637015 20 n 02 pencil_cedar 0 pencil_cedar_tree 0 006 @ 11636566 n 0000 #m 11636389 n 0000 %s 11623685 n 0000 ~ 11637247 n 0000 ~ 11637482 n 0000 ~ 11637659 n 0000 | any of several junipers with wood suitable for making pencils -11637247 20 n 04 eastern_red_cedar 0 red_cedar 2 red_juniper 0 Juniperus_virginiana 0 001 @ 11637015 n 0000 | small juniper found east of Rocky Mountains having a conic crown, brown bark that peels in shreds, and small sharp needles -11637482 20 n 02 Bermuda_cedar 0 Juniperus_bermudiana 0 002 @ 11637015 n 0000 #m 11636389 n 0000 | ornamental densely pyramidal juniper of Bermuda; fairly large for a juniper -11637659 20 n 02 east_African_cedar 0 Juniperus_procera 0 002 @ 11637015 n 0000 #m 11636389 n 0000 | tropical African timber tree with fragrant wood -11637810 20 n 02 southern_red_cedar 0 Juniperus_silicicola 0 001 @ 11636566 n 0000 | juniper of swampy coastal regions of southeastern United States; similar to eastern red cedar -11637991 20 n 03 dwarf_juniper 1 savin 0 Juniperus_sabina 0 001 @ 11636566 n 0000 | procumbent or spreading juniper -11638109 20 n 02 common_juniper 0 Juniperus_communis 0 002 @ 11636566 n 0000 %p 07827130 n 0000 | densely branching shrub or small tree having pungent blue berries used to flavor gin; widespread in northern hemisphere; only conifer on coasts of Iceland and Greenland -11638378 20 n 03 ground_cedar 1 dwarf_juniper 2 Juniperus_communis_depressa 0 001 @ 11636566 n 0000 | a procumbent variety of the common juniper -11638525 20 n 02 creeping_juniper 0 Juniperus_horizontalis 0 001 @ 11636566 n 0000 | low to prostrate shrub of Canada and northern United States; bronzed purple in winter -11638698 20 n 03 Mexican_juniper 0 drooping_juniper 0 Juniperus_flaccida 0 001 @ 11636566 n 0000 | small tree of western Texas and mountains of Mexico having spreading branches with drooping branchlets -11638902 20 n 02 Libocedrus 0 genus_Libocedrus 0 005 @ 11554175 n 0000 #m 11629501 n 0000 %m 11639084 n 0000 %m 11639306 n 0000 %m 11639445 n 0000 | cypresses that resemble cedars -11639084 20 n 01 incense_cedar 1 002 @ 11630017 n 0000 #m 11638902 n 0000 | any of several attractive trees of southwestern South America and New Zealand and New Caledonia having glossy evergreen leaves and scented wood -11639306 20 n 02 kawaka 0 Libocedrus_plumosa 0 002 @ 11630017 n 0000 #m 11638902 n 0000 | New Zealand timber tree resembling the cypress -11639445 20 n 03 pahautea 0 Libocedrus_bidwillii 0 mountain_pine 3 002 @ 11630017 n 0000 #m 11638902 n 0000 | evergreen tree of New Zealand resembling the kawaka -11639609 20 n 03 Taxodiaceae 0 subfamily_Taxodiaceae 0 redwood_family 0 002 @ 11553763 n 0000 #m 11629501 n 0000 | coniferous trees; traditionally considered an independent family though recently included in Cupressaceae in some classification systems -11639863 20 n 01 genus_Metasequoia 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11640132 n 0000 | genus of deciduous conifers comprising both living and fossil forms; 1 extant species: dawn redwood of China; variously classified as member of Pinaceae or Taxodiaceae -11640132 20 n 03 metasequoia 0 dawn_redwood 0 Metasequoia_glyptostrodoides 0 002 @ 13108841 n 0000 #m 11639863 n 0000 | large fast-growing Chinese monoecious tree having flat bright-green deciduous leaves and small globular cones; commonly cultivated in United States as an ornamental; known as a fossil before being discovered in China -11640471 20 n 01 genus_Sequoia 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11641034 n 0000 | redwoods; until recently considered a genus of a separate family Taxodiaceae -11640645 20 n 02 sequoia 0 redwood 0 005 @ 11630890 n 0000 #m 11629501 n 0000 %s 11640898 n 0000 ~ 11641034 n 0000 ~ 11641494 n 0000 | either of two huge coniferous California trees that reach a height of 300 feet; sometimes placed in the Taxodiaceae -11640898 20 n 01 redwood 2 002 @ 15098161 n 0000 #s 11640645 n 0000 | the soft reddish wood of either of two species of sequoia trees -11641034 20 n 03 California_redwood 0 coast_redwood 0 Sequoia_sempervirens 0 002 @ 11640645 n 0000 #m 11640471 n 0000 | lofty evergreen of United States coastal foothills from Oregon to Big Sur; it flourishes in wet, rainy, foggy habitats -11641275 20 n 02 Sequoiadendron 0 genus_Sequoiadendron 0 003 @ 11744859 n 0000 #m 11629501 n 0000 %m 11641494 n 0000 | giant sequoias; sometimes included in the genus Sequoia; until recently placed in the Taxodiaceae -11641494 20 n 06 giant_sequoia 0 big_tree 0 Sierra_redwood 0 Sequoiadendron_giganteum 0 Sequoia_gigantea 0 Sequoia_Wellingtonia 0 002 @ 11640645 n 0000 #m 11641275 n 0000 | extremely lofty evergreen of southern end of western foothills of Sierra Nevada in California; largest living organism -11641788 20 n 02 Taxodium 0 genus_Taxodium 0 005 @ 11554175 n 0000 #m 11629501 n 0000 %m 11641963 n 0000 %m 11642243 n 0000 %m 11642430 n 0000 | bald cypress; swamp cypress -11641963 20 n 05 bald_cypress 0 swamp_cypress 0 pond_bald_cypress 0 southern_cypress 0 Taxodium_distichum 0 002 @ 11630890 n 0000 #m 11641788 n 0000 | common cypress of southeastern United States having trunk expanded at base; found in coastal swamps and flooding river bottoms -11642243 20 n 03 pond_cypress 0 bald_cypress 2 Taxodium_ascendens 0 002 @ 11630890 n 0000 #m 11641788 n 0000 | smaller than and often included in the closely related Taxodium distichum -11642430 20 n 03 Montezuma_cypress 0 Mexican_swamp_cypress 0 Taxodium_mucronatum 0 003 @ 11630890 n 0000 #m 11641788 n 0000 ~ 11642622 n 0000 | cypress of river valleys of Mexican highlands -11642622 20 n 02 Ahuehuete 0 Tule_tree 0 002 @ 11642430 n 0000 #p 08740875 n 0000 | Mexico's most famous tree; a giant specimen of Montezuma cypress more than 2,000 years old with a girth of 165 feet at Santa Maria del Tule; "some say the Tule tree is the world's largest single biomass" -11642912 20 n 02 Tetraclinis 0 genus_Tetraclinis 0 002 @ 11554175 n 0000 #m 11629501 n 0000 | sandarac tree -11643022 20 n 04 sandarac 1 sandarac_tree 0 Tetraclinis_articulata 0 Callitris_quadrivalvis 0 003 @ 11630890 n 0000 %s 11643354 n 0000 %s 11643506 n 0000 | large coniferous evergreen tree of North Africa and Spain having flattened branches and scalelike leaves yielding a hard fragrant wood; bark yields a resin used in varnishes -11643354 20 n 02 sandarac 0 sandarach 0 002 @ 14894481 n 0000 #s 11643022 n 0000 | a brittle and faintly aromatic translucent resin used in varnishes -11643506 20 n 02 sandarac 2 citronwood 2 002 @ 15098161 n 0000 #s 11643022 n 0000 | durable fragrant wood; used in building (as in the roof of the cathedral at Cordova, Spain) -11643684 20 n 02 Thuja 0 genus_Thuja 0 005 @ 11554175 n 0000 #m 11629501 n 0000 %m 11644046 n 0000 %m 11644226 n 0000 %m 11644462 n 0000 | red cedar -11643835 20 n 01 arborvitae 0 005 @ 13108841 n 0000 ~ 11644046 n 0000 ~ 11644226 n 0000 ~ 11644462 n 0000 ~ 11644872 n 0000 | any of several Asian and North American conifers of the genera Thuja and Thujopsis -11644046 20 n 04 western_red_cedar 0 red_cedar 3 canoe_cedar 0 Thuja_plicata 0 002 @ 11643835 n 0000 #m 11643684 n 0000 | large valuable arborvitae of northwestern United States -11644226 20 n 04 American_arborvitae 0 northern_white_cedar 0 white_cedar 2 Thuja_occidentalis 0 002 @ 11643835 n 0000 #m 11643684 n 0000 | small evergreen of eastern North America having tiny scalelike leaves on flattened branchlets -11644462 20 n 03 Oriental_arborvitae 0 Thuja_orientalis 0 Platycladus_orientalis 0 002 @ 11643835 n 0000 #m 11643684 n 0000 | Asiatic shrub or small tree widely planted in United States and Europe; in some classifications assigned to its own genus -11644712 20 n 02 Thujopsis 0 genus_Thujopsis 0 003 @ 11554175 n 0000 #m 11629501 n 0000 %m 11644872 n 0000 | one species; has close similarity to genus Thuja -11644872 20 n 02 hiba_arborvitae 0 Thujopsis_dolobrata 0 002 @ 11643835 n 0000 #m 11644712 n 0000 | slow-growing medium-large Japanese evergreen used as an ornamental -11645041 20 n 01 genus_Keteleeria 0 003 @ 11554175 n 0000 #m 11607739 n 0000 %m 11645163 n 0000 | a genus of keteleeria -11645163 20 n 01 keteleeria 0 002 @ 13108841 n 0000 #m 11645041 n 0000 | Asiatic conifers resembling firs -11645271 20 n 03 Araucariaceae 0 family_Araucariaceae 0 araucaria_family 0 005 @ 11553763 n 0000 #m 11607392 n 0000 %m 11645590 n 0000 %m 11645783 n 0000 %m 11647131 n 0000 | tall evergreen cone-bearing trees of South America and Australia with broad leathery leaves; in some classifications included in the Pinaceae -11645590 20 n 01 Wollemi_pine 0 002 @ 13108841 n 0000 #m 11645271 n 0000 | newly discovered (1994) pine thought to have been long extinct; Australia; genus and species names not yet assigned -11645783 20 n 01 genus_Araucaria 0 003 @ 11554175 n 0000 #m 11645271 n 0000 %m 11645914 n 0000 | a genus of the araucaria family -11645914 20 n 01 araucaria 0 007 @ 13108841 n 0000 #m 11645783 n 0000 ~ 11646167 n 0000 ~ 11646344 n 0000 ~ 11646517 n 0000 ~ 11646694 n 0000 ~ 11646955 n 0000 | any of several tall South American or Australian trees with large cones and edible seeds -11646167 20 n 03 monkey_puzzle 0 chile_pine 0 Araucaria_araucana 0 001 @ 11645914 n 0000 | large Chilean evergreen conifer having intertwined branches and bearing edible nuts -11646344 20 n 03 norfolk_island_pine 0 Araucaria_heterophylla 0 Araucaria_excelsa 0 001 @ 11645914 n 0000 | evergreen of Australia and Norfolk Island in the South Pacific -11646517 20 n 02 new_caledonian_pine 0 Araucaria_columnaris 0 001 @ 11645914 n 0000 | very tall evergreen of New Caledonia and the New Hebrides similar to norfolk island pine -11646694 20 n 03 bunya_bunya 0 bunya_bunya_tree 0 Araucaria_bidwillii 0 002 @ 11645914 n 0000 %p 07737594 n 0000 | Australian conifer bearing two-inch seeds tasting like roasted chestnuts; among the aborigines the tree is hereditary property protected by law -11646955 20 n 03 hoop_pine 0 Moreton_Bay_pine 0 Araucaria_cunninghamii 0 001 @ 11645914 n 0000 | pine of Australia and New Guinea; yields a valuable light even-textured wood -11647131 20 n 02 Agathis 0 genus_Agathis 0 006 @ 11554175 n 0000 #m 11645271 n 0000 %m 11647306 n 0000 %m 11647703 n 0000 %m 11648039 n 0000 %m 11648268 n 0000 | kauri pine -11647306 20 n 02 kauri_pine 0 dammar_pine 0 007 @ 13108841 n 0000 #m 11647131 n 0000 %s 11647548 n 0000 ~ 11647703 n 0000 ~ 11647868 n 0000 ~ 11648039 n 0000 ~ 11648268 n 0000 | any of various trees of the genus Agathis; yield dammar resin -11647548 20 n 01 kauri 2 002 @ 15098161 n 0000 #s 11647306 n 0000 | white close-grained wood of a tree of the genus Agathis especially Agathis australis -11647703 20 n 03 kauri 0 kaury 0 Agathis_australis 0 002 @ 11647306 n 0000 #m 11647131 n 0000 | tall timber tree of New Zealand having white straight-grained wood -11647868 20 n 04 amboina_pine 0 amboyna_pine 0 Agathis_dammara 0 Agathis_alba 0 001 @ 11647306 n 0000 | native to the Moluccas and Philippines; a source of dammar resin -11648039 20 n 04 dundathu_pine 0 queensland_kauri 0 smooth_bark_kauri 0 Agathis_robusta 0 002 @ 11647306 n 0000 #m 11647131 n 0000 | Australian timber tree resembling the kauri but having wood much lighter in weight and softer -11648268 20 n 02 red_kauri 0 Agathis_lanceolata 0 002 @ 11647306 n 0000 #m 11647131 n 0000 | New Zealand tree with glossy leaves and scaly reddish-brown bark -11648428 20 n 03 Cephalotaxaceae 0 family_Cephalotaxaceae 0 plum-yew_family 0 004 @ 11553763 n 0000 #m 11607392 n 0000 %m 11648617 n 0000 %m 11649012 n 0000 | a family of Cephalotaxaceae -11648617 20 n 02 Cephalotaxus 0 genus_Cephalotaxus 0 003 @ 11554175 n 0000 #m 11648428 n 0000 %m 11648776 n 0000 | the genus of Cephalotaxus (see plum-yews) -11648776 20 n 01 plum-yew 0 002 @ 13108841 n 0000 #m 11648617 n 0000 | any of several evergreen trees and shrubs of eastern Asia resembling yew and having large seeds enclosed in a fleshy envelope; sometimes cultivated as ornamentals -11649012 20 n 02 Torreya 0 genus_Torreya 0 004 @ 11554175 n 0000 #m 11648428 n 0000 %m 11649150 n 0000 %m 11649359 n 0000 | nutmeg-yews -11649150 20 n 03 California_nutmeg 0 nutmeg-yew 0 Torreya_californica 0 002 @ 11661372 n 0000 #m 11649012 n 0000 | California evergreen having a fruit resembling a nutmeg but with a strong turpentine flavor -11649359 20 n 04 stinking_cedar 0 stinking_yew 0 Torrey_tree 0 Torreya_taxifolia 0 002 @ 11661372 n 0000 #m 11649012 n 0000 | rare small evergreen of northern Florida; its glossy green leaves have an unpleasant fetid smell when crushed -11649597 20 n 02 Phyllocladaceae 0 family_Phyllocladaceae 0 003 @ 11553763 n 0000 #m 11607392 n 0000 %m 11649749 n 0000 | a family of Phyllocladaceae -11649749 20 n 02 Phyllocladus 0 genus_Phyllocladus 0 003 @ 11554175 n 0000 #m 11649597 n 0000 %m 11649878 n 0000 | celery pine -11649878 20 n 01 celery_pine 0 005 @ 13108841 n 0000 #m 11649749 n 0000 ~ 11650160 n 0000 ~ 11650307 n 0000 ~ 11650430 n 0000 | Australasian evergreen conifer having a graceful head of foliage resembling celery that is composed of phyllodes borne in the axils of scalelike leaves -11650160 20 n 03 celery_top_pine 0 celery-topped_pine 0 Phyllocladus_asplenifolius 0 001 @ 11649878 n 0000 | medium tall celery pine of Tasmania -11650307 20 n 02 tanekaha 0 Phyllocladus_trichomanoides 0 001 @ 11649878 n 0000 | medium tall celery pine of New Zealand -11650430 20 n 02 Alpine_celery_pine 0 Phyllocladus_alpinus 0 001 @ 11649878 n 0000 | small shrubby celery pine of New Zealand -11650558 20 n 02 yellowwood 0 yellowwood_tree 0 004 @ 13104059 n 0000 ~ 11650759 n 0000 ~ 11650919 n 0000 %s 11651133 n 0000 | any of various trees having yellowish wood or yielding a yellow extract -11650759 20 n 01 gymnospermous_yellowwood 0 003 @ 11650558 n 0000 ~ 11652753 n 0000 ~ 11653570 n 0000 | any of various gymnospermous trees having yellow wood -11650919 20 n 01 angiospermous_yellowwood 0 006 @ 11650558 n 0000 ~ 12399899 n 0000 ~ 12516165 n 0000 ~ 12715408 n 0000 ~ 12762405 n 0000 ~ 12776558 n 0000 | any of various angiospermous trees having yellow wood -11651133 20 n 01 yellowwood 2 002 @ 15098161 n 0000 #s 11650558 n 0000 | the yellow wood of any of various yellowwood trees -11651259 20 n 03 Podocarpaceae 0 family_Podocarpaceae 0 podocarpus_family 0 017 @ 11553763 n 0000 #m 11607392 n 0000 %m 11651731 n 0000 %m 11653323 n 0000 %m 11653728 n 0000 %m 11654124 n 0000 %m 11654667 n 0000 %m 11655407 n 0000 %m 11655764 n 0000 %m 11656380 n 0000 %m 11656974 n 0000 %m 11657314 n 0000 %m 11657763 n 0000 %m 11658104 n 0000 %m 11658872 n 0000 %m 11659068 n 0000 %m 11659500 n 0000 | gymnosperms with simple persistent needlelike or scalelike leaves -11651731 20 n 02 Podocarpus 0 genus_Podocarpus 0 009 @ 11554175 n 0000 #m 11651259 n 0000 %m 11652039 n 0000 %m 11652217 n 0000 %m 11652376 n 0000 %m 11652578 n 0000 %m 11652753 n 0000 %m 11652966 n 0000 %m 11653126 n 0000 | evergreen trees or shrubs; sometimes classified as member of the family Taxaceae -11652039 20 n 01 podocarp 0 002 @ 13108841 n 0000 #m 11651731 n 0000 | any evergreen in the southern hemisphere of the genus Podocarpus having a pulpy fruit with one hard seed -11652217 20 n 03 yacca 0 yacca_podocarp 0 Podocarpus_coriaceus 0 002 @ 13108841 n 0000 #m 11651731 n 0000 | West Indian evergreen with medium to long leaves -11652376 20 n 03 brown_pine 0 Rockingham_podocarp 0 Podocarpus_elatus 0 002 @ 13108841 n 0000 #m 11651731 n 0000 | large Australian tree with straight-grained yellow wood that turns brown on exposure -11652578 20 n 03 cape_yellowwood 0 African_yellowwood 0 Podocarpus_elongatus 0 002 @ 13108841 n 0000 #m 11651731 n 0000 | South African tree or shrub having a rounded crown -11652753 20 n 02 South-African_yellowwood 0 Podocarpus_latifolius 0 002 @ 11650759 n 0000 #m 11651731 n 0000 | erect or shrubby tree of Africa having ridged dark grey bark and rigid glossy medium to long leaves -11652966 20 n 02 alpine_totara 0 Podocarpus_nivalis 0 002 @ 13112664 n 0000 #m 11651731 n 0000 | low wide-spreading coniferous shrub of New Zealand mountains -11653126 20 n 02 totara 0 Podocarpus_totara 0 002 @ 13108841 n 0000 #m 11651731 n 0000 | valuable timber tree of New Zealand yielding hard reddish wood used for furniture and bridges and wharves -11653323 20 n 02 Afrocarpus 0 genus_Afrocarpus 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11653570 n 0000 | dioecious evergreen trees or shrubs; equatorial to southern and southeastern Africa: yellowwood; similar to trees or genus Podocarpus -11653570 20 n 03 common_yellowwood 0 bastard_yellowwood 0 Afrocarpus_falcata 0 002 @ 11650759 n 0000 #m 11653323 n 0000 | medium-sized tree of South Africa -11653728 20 n 02 Dacrycarpus 0 genus_Dacrycarpus 0 002 @ 11554175 n 0000 #m 11651259 n 0000 | evergreen coniferous shrubs or trees of New Zealand to Malaysia and Philippines -11653904 20 n 05 kahikatea 0 New_Zealand_Dacryberry 0 New_Zealand_white_pine 0 Dacrycarpus_dacrydioides 0 Podocarpus_dacrydioides 0 001 @ 13108841 n 0000 | New Zealand evergreen valued for its light easily worked wood -11654124 20 n 02 Dacrydium 0 genus_Dacrydium 0 004 @ 11554175 n 0000 #m 11651259 n 0000 %m 11654293 n 0000 %m 11654438 n 0000 | Australasian evergreen trees or shrubs -11654293 20 n 04 rimu 0 imou_pine 0 red_pine 2 Dacrydium_cupressinum 0 002 @ 13108841 n 0000 #m 11654124 n 0000 | tall New Zealand timber tree -11654438 20 n 03 tarwood 2 tar-wood 2 Dacrydium_colensoi 0 002 @ 13108841 n 0000 #m 11654124 n 0000 | New Zealand silver pine of conical habit with long slender flexuous branches; adapted to cold wet summers and high altitudes -11654667 20 n 02 Falcatifolium 0 genus_Falcatifolium 0 004 @ 11554175 n 0000 #m 11651259 n 0000 %m 11654984 n 0000 %m 11655152 n 0000 | sickle pines: dioecious evergreen tropical trees and shrubs having sickle-shaped leaves; similar to Dacrycarpus in habit; Malaysia and Philippines to New Guinea and New Caledonia -11654984 20 n 02 common_sickle_pine 0 Falcatifolium_falciforme 0 002 @ 13108841 n 0000 #m 11654667 n 0000 | small tropical rain forest tree of Indonesia and Malaysia -11655152 20 n 02 yellow-leaf_sickle_pine 0 Falcatifolium_taxoides 0 002 @ 13108841 n 0000 #m 11654667 n 0000 | a rain forest tree or shrub of New Caledonia having a conic crown and pale green sickle-shaped leaves; host species for the rare parasite yew -11655407 20 n 02 Halocarpus 0 genus_Halocarpus 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11655592 n 0000 | dioecious trees or shrubs of New Zealand; similar in habit to Dacrydium -11655592 20 n 05 tarwood 1 tar-wood 1 New_Zealand_mountain_pine 0 Halocarpus_bidwilli 0 Dacrydium_bidwilli 0 002 @ 13108841 n 0000 #m 11655407 n 0000 | New Zealand shrub -11655764 20 n 02 Lagarostrobus 0 genus_Lagarostrobus 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11656123 n 0000 | genus of dioecious evergreen trees of New Zealand and Tasmania; similar to genus Dacrydium -11655974 20 n 03 westland_pine 0 silver_pine 2 Lagarostrobus_colensoi 0 001 @ 13108841 n 0000 | timber tree of New Zealand having shiny white wood -11656123 20 n 03 huon_pine 0 Lagarostrobus_franklinii 0 Dacrydium_franklinii 0 002 @ 13108841 n 0000 #m 11655764 n 0000 | Tasmanian timber tree with yellow aromatic wavy-grained wood used for carving and ship building; sometimes placed in genus Dacrydium -11656380 20 n 02 Lepidothamnus 0 genus_Lepidothamnus 0 004 @ 11554175 n 0000 #m 11651259 n 0000 %m 11656549 n 0000 %m 11656771 n 0000 | small usually shrubby conifers -11656549 20 n 02 Chilean_rimu 0 Lepidothamnus_fonkii 0 002 @ 13112664 n 0000 #m 11656380 n 0000 | about the hardiest Podocarpaceae species; prostrate spreading shrub similar to mountain rimu; mountains of southern Chile -11656771 20 n 03 mountain_rimu 0 Lepidothamnus_laxifolius 0 Dacridium_laxifolius 0 002 @ 13112664 n 0000 #m 11656380 n 0000 | low-growing to prostrate shrub with slender trailing branches; New Zealand -11656974 20 n 02 Microstrobos 0 genus_Microstrobos 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11657153 n 0000 | 2 species of small evergreen shrubs of Australia and Tasmania -11657153 20 n 02 Tasman_dwarf_pine 0 Microstrobos_niphophilus 0 002 @ 13112664 n 0000 #m 11656974 n 0000 | small shrub or Tasmania having short stiff branches -11657314 20 n 02 Nageia 0 genus_Nageia 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11657585 n 0000 | small genus of Asian evergreen trees having columnar crowns and distinguished by leaves lacking a midrib; eastern Asia including India and Philippines and New Guinea -11657585 20 n 02 nagi 0 Nageia_nagi 0 002 @ 13108841 n 0000 #m 11657314 n 0000 | medium-sized tree having glossy lanceolate leaves; southern China to Taiwan and southern Japan -11657763 20 n 02 Parasitaxus 0 genus_Parasitaxus 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11657904 n 0000 | one species: parasite yew -11657904 20 n 02 parasite_yew 0 Parasitaxus_ustus 0 002 @ 13120446 n 0000 #m 11657763 n 0000 | rare and endangered monoecious parasitic conifer of New Caledonia; parasitic on Falcatifolium taxoides -11658104 20 n 02 Prumnopitys 0 genus_Prumnopitys 0 005 @ 11554175 n 0000 #m 11651259 n 0000 %m 11658331 n 0000 %m 11658544 n 0000 %m 11658709 n 0000 | mostly dioecious evergreen conifers; leaves are softer than in Podocarpus -11658331 20 n 04 miro 0 black_pine 1 Prumnopitys_ferruginea 0 Podocarpus_ferruginea 0 002 @ 13108841 n 0000 #m 11658104 n 0000 | New Zealand conifer used for lumber; the dark wood is used for interior carpentry -11658544 20 n 04 matai 0 black_pine 2 Prumnopitys_taxifolia 0 Podocarpus_spicata 0 002 @ 13108841 n 0000 #m 11658104 n 0000 | conifer of Australia and New Zealand -11658709 20 n 03 plum-fruited_yew 0 Prumnopitys_andina 0 Prumnopitys_elegans 0 002 @ 13108841 n 0000 #m 11658104 n 0000 | South American evergreen tree or shrub -11658872 20 n 02 Retrophyllum 0 genus_Retrophyllum 0 002 @ 11554175 n 0000 #m 11651259 n 0000 | small genus of tropical evergreen dioecious shrubs or trees of Oceania and tropical South America -11659068 20 n 04 Saxe-gothea 0 Saxegothea 0 genus_Saxe-gothea 0 genus_Saxegothea 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11659248 n 0000 | one species: Prince Albert's yew -11659248 20 n 03 Prince_Albert_yew 0 Prince_Albert's_yew 0 Saxe-gothea_conspicua 0 002 @ 13108841 n 0000 #m 11659068 n 0000 | small yew having attractive foliage and partially weeping branches cultivated as an ornamental; mountains of southern Chile -11659500 20 n 02 Sundacarpus 0 genus_Sundacarpus 0 003 @ 11554175 n 0000 #m 11651259 n 0000 %m 11659627 n 0000 | one species -11659627 20 n 03 Sundacarpus_amara 0 Prumnopitys_amara 0 Podocarpus_amara 0 002 @ 13108841 n 0000 #m 11659500 n 0000 | a large fast-growing monoecious tropical evergreen tree having large glossy lanceolate leaves; of rain forests of Sumatra and Philippines to northern Queensland -11659909 20 n 02 Sciadopityaceae 0 family_Sciadopityaceae 0 003 @ 11553763 n 0000 #m 11607392 n 0000 %m 11660121 n 0000 | family comprising a single genus that until recently was considered part of Taxodiaceae -11660121 20 n 02 Sciadopitys 0 genus_Sciadopitys 0 003 @ 11554175 n 0000 #m 11659909 n 0000 %m 11660300 n 0000 | type and sole genus of Sciadopityaceae; Japanese umbrella pines -11660300 20 n 02 Japanese_umbrella_pine 0 Sciadopitys_verticillata 0 002 @ 13108841 n 0000 #m 11660121 n 0000 | tall evergreen having a symmetrical spreading crown and needles growing in whorls that resemble umbrellas at ends of twigs -11660537 20 n 04 Taxopsida 0 class_Taxopsida 0 Taxophytina 0 subdivision_Taxophytina 0 002 @ 08103777 n 0000 #m 11605708 n 0000 | yews: in some systems classified as a class (Taxopsida) and in others as a subdivision (Taxophytina) used in some classifications for one of five subdivisions of Gymnospermophyta -11660848 20 n 02 Taxales 0 order_Taxales 0 002 @ 11534677 n 0000 #m 11605708 n 0000 | coextensive with the family Taxaceae: yews -11660979 20 n 03 Taxaceae 0 family_Taxaceae 0 yew_family 0 006 @ 11553763 n 0000 #m 11607392 n 0000 %m 11661207 n 0000 %m 11661372 n 0000 %m 11662764 n 0000 %m 11663136 n 0000 | sometimes classified as member of order Taxales -11661207 20 n 02 Taxus 0 genus_Taxus 0 006 @ 11554175 n 0000 #m 11660979 n 0000 %m 11661909 n 0000 %m 11662128 n 0000 %m 11662371 n 0000 %m 11662585 n 0000 | yews -11661372 20 n 01 yew 0 011 @ 13108841 n 0000 #m 11660979 n 0000 ~ 11649150 n 0000 ~ 11649359 n 0000 %s 11661707 n 0000 ~ 11661909 n 0000 ~ 11662128 n 0000 ~ 11662371 n 0000 ~ 11662585 n 0000 ~ 11662937 n 0000 ~ 11663263 n 0000 | any of numerous evergreen trees or shrubs having red cup-shaped berries and flattened needlelike leaves -11661707 20 n 01 yew 2 002 @ 15098161 n 0000 #s 11661372 n 0000 | wood of a yew; especially the durable fine-grained light brown or red wood of the English yew valued for cabinetwork and archery bows -11661909 20 n 03 Old_World_yew 0 English_yew 0 Taxus_baccata 0 002 @ 11661372 n 0000 #m 11661207 n 0000 | predominant yew in Europe; extraordinarily long-lived and slow growing; one of the oldest species in the world -11662128 20 n 04 Pacific_yew 0 California_yew 0 western_yew 0 Taxus_brevifolia 0 002 @ 11661372 n 0000 #m 11661207 n 0000 | small or medium irregularly branched tree of the Pacific coast of North America; yields fine hard close-grained wood -11662371 20 n 02 Japanese_yew 0 Taxus_cuspidata 0 002 @ 11661372 n 0000 #m 11661207 n 0000 | shrubby hardy evergreen of China and Japan having lustrous dark green foliage; cultivated in the eastern United States -11662585 20 n 02 Florida_yew 0 Taxus_floridana 0 002 @ 11661372 n 0000 #m 11661207 n 0000 | small bushy yew of northern Florida having spreading branches and very narrow leaves -11662764 20 n 02 Austrotaxus 0 genus_Austrotaxus 0 003 @ 11554175 n 0000 #m 11660979 n 0000 %m 11662937 n 0000 | a gymnosperm genus having one species: New Caledonian yew -11662937 20 n 02 New_Caledonian_yew 0 Austrotaxus_spicata 0 002 @ 11661372 n 0000 #m 11662764 n 0000 | large yew native to New Caledonia; cultivated in eastern Australia and New Zealand and Hawaii -11663136 20 n 02 Pseudotaxus 0 genus_Pseudotaxus 0 003 @ 11554175 n 0000 #m 11660979 n 0000 %m 11663263 n 0000 | one species -11663263 20 n 02 white-berry_yew 0 Pseudotaxus_chienii 0 002 @ 11661372 n 0000 #m 11663136 n 0000 | yew of southeastern China, differing from the Old World yew in having white berries -11663449 20 n 06 Ginkgopsida 0 class_Ginkgopsida 0 Ginkgophytina 0 class_Ginkgophytina 0 subdivision_Ginkgophytina 0 subdivision_Ginkgophyta 0 003 @ 08103777 n 0000 #m 11595312 n 0000 %m 11663813 n 0000 | ginkgos: in some systems classified as a class and in others as a subdivision; used in some classifications for one of five subdivisions of Gymnospermophyta -11663813 20 n 02 Ginkgoales 0 order_Ginkgoales 0 003 @ 11534677 n 0000 #m 11663449 n 0000 %m 11664090 n 0000 | coextensive with the family Ginkgoaceae: plants that first appeared in the Permian and now represented by a single surviving species; often included in Coniferales -11664090 20 n 03 Ginkgoaceae 0 family_Ginkgoaceae 0 ginkgo_family 0 003 @ 11553763 n 0000 #m 11663813 n 0000 %m 11664301 n 0000 | constituting the order Ginkgoales; includes the genus Ginkgo and extinct forms -11664301 20 n 01 genus_Ginkgo 0 002 @ 11554175 n 0000 #m 11664090 n 0000 | sole surviving genus of the Ginkgoaceae -11664418 20 n 04 ginkgo 0 gingko 0 maidenhair_tree 0 Ginkgo_biloba 0 001 @ 13108662 n 0000 | deciduous dioecious Chinese tree having fan-shaped leaves and fleshy yellow seeds; exists almost exclusively in cultivation especially as an ornamental street tree -11664677 20 n 02 Pteropsida 0 subdivision_Pteropsida 0 002 @ 08220891 n 0000 #m 11534434 n 0000 | used in former classifications to include all ferns and flowering plants and divided into the three classes Filicinae and Gymnospermae and Angiospermae -11664929 20 n 06 Angiospermae 0 class_Angiospermae 0 Magnoliophyta 0 division_Magnoliophyta 0 Anthophyta 0 division_Anthophyta 0 007 @ 08103777 n 0000 #m 11551211 n 0000 %m 11665372 n 0000 %m 11665781 n 0000 %m 11667562 n 0000 %m 13109733 n 0000 %m 13120003 n 0000 | comprising flowering plants that produce seeds enclosed in an ovary; in some systems considered a class (Angiospermae) and in others a division (Magnoliophyta or Anthophyta) -11665372 20 n 02 angiosperm 0 flowering_plant 0 010 @ 11552386 n 0000 #m 11664929 n 0000 + 02623529 a 0101 ~ 11665648 n 0000 ~ 11666854 n 0000 ~ 11668117 n 0000 %p 11669335 n 0000 ~ 11669921 n 0000 ~ 11672400 n 0000 ~ 12660601 n 0000 | plants having seeds in a closed ovary -11665648 20 n 01 angiocarp 0 002 @ 11665372 n 0000 + 02623229 a 0102 | tree bearing fruit enclosed in a shell or involucre or husk -11665781 20 n 06 Dicotyledones 0 class_Dicotyledones 0 Dicotyledonae 0 class_Dicotyledonae 0 Magnoliopsida 0 class_Magnoliopsida 0 031 @ 08103777 n 0000 #m 11664929 n 0000 %m 11555413 n 0000 %m 11562747 n 0000 %m 11567411 n 0000 %m 11666854 n 0000 %m 11667112 n 0000 %m 11740655 n 0000 %m 11800799 n 0000 %m 11803475 n 0000 %m 11910835 n 0000 %m 12090041 n 0000 %m 12212810 n 0000 %m 12213485 n 0000 %m 12224309 n 0000 %m 12250708 n 0000 %m 12289744 n 0000 %m 12300441 n 0000 %m 12313005 n 0000 %m 12317763 n 0000 %m 12358485 n 0000 %m 12391477 n 0000 %m 12598247 n 0000 %m 12600417 n 0000 %m 12723835 n 0000 %m 12740196 n 0000 %m 12769815 n 0000 %m 12778926 n 0000 %m 12808751 n 0000 %m 13140535 n 0000 %m 13148602 n 0000 | comprising seed plants that produce an embryo with paired cotyledons and net-veined leaves; divided into six (not always well distinguished) subclasses (or superorders): Magnoliidae and Hamamelidae (considered primitive); Caryophyllidae (an early and distinctive offshoot); and three more or less advanced groups: Dilleniidae; Rosidae; Asteridae -11666854 20 n 04 dicot 0 dicotyledon 0 magnoliopsid 0 exogen 0 006 @ 11665372 n 0000 #m 11665781 n 0000 + 00873251 a 0402 ~ 12694336 n 0000 ~ 12694486 n 0000 ~ 12750306 n 0000 | flowering plant with two cotyledons; the stem grows by deposit on its outside -11667112 20 n 03 Magnoliidae 0 subclass_Magnoliidae 0 ranalian_complex 0 005 @ 08103777 n 0000 #m 11665781 n 0000 %m 11564258 n 0000 %m 11571907 n 0000 %m 11692952 n 0000 | a group of families of trees and shrubs and herbs having well-developed perianths and apocarpous ovaries and generally regarded as the most primitive extant flowering plants; contains 36 families including Magnoliaceae and Ranunculaceae; sometimes classified as a superorder -11667562 20 n 06 Monocotyledones 0 class_Monocotyledones 0 Monocotyledonae 0 class_Monocotyledonae 0 Liliopsida 0 class_Liliopsida 0 009 @ 08103777 n 0000 #m 11664929 n 0000 %m 11556857 n 0000 %m 11668117 n 0000 %m 11668340 n 0000 %m 11668573 n 0000 %m 11668952 n 0000 %m 12410381 n 0000 %m 12610933 n 0000 | comprising seed plants that produce an embryo with a single cotyledon and parallel-veined leaves: includes grasses and lilies and palms and orchids; divided into four subclasses or superorders: Alismatidae; Arecidae; Commelinidae; and Liliidae -11668117 20 n 04 monocot 0 monocotyledon 0 liliopsid 0 endogen 0 004 @ 11665372 n 0000 #m 11667562 n 0000 + 00873113 a 0402 + 00753922 a 0201 | a monocotyledonous flowering plant; the stem grows by deposits on its inside -11668340 20 n 02 Alismatidae 0 subclass_Alismatidae 0 002 @ 08103777 n 0000 #m 11667562 n 0000 | one of four subclasses or superorders of Monocotyledones; comprises about 500 species in 14 families of aquatic and semiaquatic herbs -11668573 20 n 02 Arecidae 0 subclass_Arecidae 0 005 @ 08103777 n 0000 #m 11667562 n 0000 %m 11778391 n 0000 %m 12154228 n 0000 %m 12581230 n 0000 | one of four subclasses or superorder of Monocotyledones; comprises about 6400 species in 5 families of trees and shrubs and terrestrial herbs and a few free-floating aquatics including: Palmae; Araceae; Pandanaceae and Lemnaceae -11668952 20 n 02 Commelinidae 0 subclass_Commelinidae 0 005 @ 08103777 n 0000 #m 11667562 n 0000 %m 12100382 n 0000 %m 12350234 n 0000 %m 12605019 n 0000 | one of four subclasses or superorders of Monocotyledones; comprises about 19,000 species in 25 families of mostly terrestrial herbs especially of moist places including: Cyperaceae; Gramineae; Bromeliaceae; and Zingiberaceae -11669335 20 n 03 flower 2 bloom 0 blossom 0 017 @ 11675842 n 0000 #p 11665372 n 0000 + 00294245 v 0302 + 00294245 v 0201 + 00294245 v 0103 ~ 11669786 n 0000 ~ 11674019 n 0000 ~ 11674332 n 0000 ~ 11674603 n 0000 ~ 11674914 n 0000 %p 11675096 n 0000 %p 11676500 n 0000 %p 11677743 n 0000 %p 11678635 n 0000 %p 11690893 n 0000 %p 11692265 n 0000 ~ 11951271 n 0000 | reproductive organ of angiosperm plants especially one having showy or colorful parts -11669786 20 n 02 floret 0 floweret 0 001 @ 11669335 n 0000 | a diminutive flower (especially one that is part of a composite flower) -11669921 20 n 01 flower 0 126 @ 11665372 n 0000 + 02729665 a 0101 + 00294245 v 0103 ~ 11672269 n 0000 ~ 11719286 n 0000 ~ 11721337 n 0000 ~ 11724660 n 0000 ~ 11725015 n 0000 ~ 11726707 n 0000 ~ 11727091 n 0000 ~ 11732567 n 0000 ~ 11733054 n 0000 ~ 11736694 n 0000 ~ 11792341 n 0000 ~ 11793779 n 0000 ~ 11805956 n 0000 ~ 11807979 n 0000 ~ 11810358 n 0000 ~ 11811473 n 0000 ~ 11812910 n 0000 ~ 11813077 n 0000 ~ 11814584 n 0000 ~ 11815491 n 0000 ~ 11818636 n 0000 ~ 11820965 n 0000 ~ 11826198 n 0000 ~ 11836327 n 0000 ~ 11839460 n 0000 ~ 11839568 n 0000 ~ 11857696 n 0000 ~ 11859275 n 0000 ~ 11859472 n 0000 ~ 11859737 n 0000 ~ 11883328 n 0000 ~ 11883628 n 0000 ~ 11887119 n 0000 ~ 11887310 n 0000 ~ 11887750 n 0000 ~ 11888424 n 0000 ~ 11888800 n 0000 ~ 11889619 n 0000 ~ 11891175 n 0000 ~ 11892029 n 0000 ~ 11892181 n 0000 ~ 11892637 n 0000 ~ 11896141 n 0000 ~ 11900569 n 0000 ~ 11904109 n 0000 ~ 11905749 n 0000 ~ 11915214 n 0000 ~ 11918286 n 0000 ~ 11918808 n 0000 ~ 11920498 n 0000 ~ 11925303 n 0000 ~ 11925450 n 0000 ~ 11931918 n 0000 ~ 11939491 n 0000 ~ 11941924 n 0000 ~ 11943407 n 0000 ~ 11943992 n 0000 ~ 11946727 n 0000 ~ 11947802 n 0000 ~ 11948469 n 0000 ~ 11950345 n 0000 ~ 11955896 n 0000 ~ 11958080 n 0000 ~ 11958499 n 0000 ~ 11958888 n 0000 ~ 11960245 n 0000 ~ 11961446 n 0000 ~ 11962272 n 0000 ~ 11969607 n 0000 ~ 11969806 n 0000 ~ 11970101 n 0000 ~ 11971248 n 0000 ~ 11971783 n 0000 ~ 11978233 n 0000 ~ 11988596 n 0000 ~ 11989869 n 0000 ~ 11992479 n 0000 ~ 11992806 n 0000 ~ 12001707 n 0000 ~ 12001924 n 0000 ~ 12008252 n 0000 ~ 12013511 n 0000 ~ 12020184 n 0000 ~ 12020507 n 0000 ~ 12022054 n 0000 ~ 12026018 n 0000 ~ 12026476 n 0000 ~ 12030092 n 0000 ~ 12033504 n 0000 ~ 12034141 n 0000 ~ 12035631 n 0000 ~ 12035907 n 0000 ~ 12041446 n 0000 ~ 12093329 n 0000 ~ 12093600 n 0000 ~ 12252168 n 0000 ~ 12290748 n 0000 ~ 12293723 n 0000 ~ 12360108 n 0000 ~ 12418507 n 0000 ~ 12443736 n 0000 ~ 12444095 n 0000 ~ 12475035 n 0000 ~ 12480456 n 0000 ~ 12606438 n 0000 ~ 12683407 n 0000 ~ 12799776 n 0000 ~ 12830222 n 0000 ~ 12831141 n 0000 ~ 12833149 n 0000 ~ 12833985 n 0000 ~ 12836862 n 0000 ~ 12877244 n 0000 ~ 12879527 n 0000 ~ 12883628 n 0000 ~ 12884260 n 0000 ~ 12890265 n 0000 ~ 12898774 n 0000 ~ 12909421 n 0000 ~ 12913144 n 0000 ~ 12914923 n 0000 ~ 12950126 n 0000 ~ 12951146 n 0000 | a plant cultivated for its blooms or blossoms -11672269 20 n 01 bloomer 0 002 @ 11669921 n 0000 + 00294245 v 0101 | a flower that blooms in a particular way; "a night bloomer" -11672400 20 n 02 wildflower 0 wild_flower 0 085 @ 11665372 n 0000 @ 11531193 n 0000 ~ 11721844 n 0000 ~ 11737534 n 0000 ~ 11738547 n 0000 ~ 11836722 n 0000 ~ 11838413 n 0000 ~ 11858814 n 0000 ~ 11860208 n 0000 ~ 11860555 n 0000 ~ 11862300 n 0000 ~ 11862835 n 0000 ~ 11924014 n 0000 ~ 11926976 n 0000 ~ 11927215 n 0000 ~ 11941478 n 0000 ~ 11942487 n 0000 ~ 11951511 n 0000 ~ 11959259 n 0000 ~ 11963932 n 0000 ~ 11964446 n 0000 ~ 11964848 n 0000 ~ 11965627 n 0000 ~ 11967744 n 0000 ~ 11970586 n 0000 ~ 11972291 n 0000 ~ 11976170 n 0000 ~ 11980682 n 0000 ~ 11981475 n 0000 ~ 11983375 n 0000 ~ 11983606 n 0000 ~ 11988132 n 0000 ~ 11988893 n 0000 ~ 11989393 n 0000 ~ 11990920 n 0000 ~ 11991263 n 0000 ~ 11993203 n 0000 ~ 11993444 n 0000 ~ 11993675 n 0000 ~ 11994336 n 0000 ~ 11995840 n 0000 ~ 12006766 n 0000 ~ 12011370 n 0000 ~ 12012111 n 0000 ~ 12012510 n 0000 ~ 12015959 n 0000 ~ 12019375 n 0000 ~ 12022821 n 0000 ~ 12025220 n 0000 ~ 12025507 n 0000 ~ 12026981 n 0000 ~ 12027658 n 0000 ~ 12032429 n 0000 ~ 12032686 n 0000 ~ 12258885 n 0000 ~ 12259316 n 0000 ~ 12259788 n 0000 ~ 12291959 n 0000 ~ 12796385 n 0000 ~ 12799269 n 0000 ~ 12800049 n 0000 ~ 12801966 n 0000 ~ 12803226 n 0000 ~ 12803958 n 0000 ~ 12878169 n 0000 ~ 12879963 n 0000 ~ 12881631 n 0000 ~ 12881913 n 0000 ~ 12882158 n 0000 ~ 12885045 n 0000 ~ 12885265 n 0000 ~ 12885754 n 0000 ~ 12885956 n 0000 ~ 12886185 n 0000 ~ 12886402 n 0000 ~ 12886600 n 0000 ~ 12886831 n 0000 ~ 12887065 n 0000 ~ 12887293 n 0000 ~ 12887532 n 0000 ~ 12887713 n 0000 ~ 12888016 n 0000 ~ 12888234 n 0000 ~ 12888457 n 0000 ~ 12937130 n 0000 | wild or uncultivated flowering plant -11674019 20 n 01 apetalous_flower 0 001 @ 11669335 n 0000 | flower having no petals -11674105 20 n 01 flower_head 0 002 @ 11674332 n 0000 %p 11674603 n 0000 | a shortened compact cluster of flowers so arranged that the whole gives the effect of a single flower as in clover or members of the family Compositae -11674332 20 n 01 inflorescence 0 009 @ 11669335 n 0000 ~ 11674105 n 0000 ~ 11674798 n 0000 ~ 13131028 n 0000 ~ 13131282 n 0000 ~ 13132338 n 0000 ~ 13132940 n 0000 ~ 13133438 n 0000 %p 13154841 n 0000 | the flowering part of a plant or arrangement of flowers on a stalk -11674603 20 n 02 ray_flower 0 ray_floret 0 002 @ 11669335 n 0000 #p 11674105 n 0000 | small flower with a flat strap-shaped corolla usually occupying the peripheral rings of a composite flower -11674798 20 n 02 catkin 0 ament 0 002 @ 11674332 n 0000 + 01865640 a 0202 | a cylindrical spikelike inflorescence -11674914 20 n 01 bud 2 003 @ 11669335 n 0000 + 00357998 v 0101 ~ 11675025 n 0000 | a partially opened flower -11675025 20 n 01 rosebud 0 001 @ 11674914 n 0000 | the bud of a rose -11675096 20 n 01 stamen 0 004 @ 11675842 n 0000 #p 11669335 n 0000 %p 11675245 n 0000 %p 11675404 n 0000 | the male reproductive organ of a flower -11675245 20 n 01 anther 0 003 @ 11675842 n 0000 #p 11675096 n 0000 + 01477251 a 0101 | the part of the stamen that contains pollen; usually borne on a stalk -11675404 20 n 01 gynostegium 0 002 @ 13086908 n 0000 #p 11675096 n 0000 | the crown of the stamen in plants of the genus Asclepias -11675537 20 n 01 pollen 0 004 @ 11547855 n 0000 + 00054059 v 0101 ~ 11675738 n 0000 ~ 14585392 n 0000 | the fine spores that contain male gametes and that are borne by an anther in a flowering plant -11675738 20 n 01 pollinium 0 001 @ 11675537 n 0000 | a coherent mass of pollen grains (as in orchids) -11675842 20 n 01 reproductive_structure 0 031 @ 13087625 n 0000 ~ 11547737 n 0000 ~ 11550205 n 0000 ~ 11550340 n 0000 ~ 11550474 n 0000 ~ 11550725 n 0000 ~ 11669335 n 0000 ~ 11675096 n 0000 ~ 11675245 n 0000 ~ 11676500 n 0000 ~ 11677259 n 0000 ~ 11677603 n 0000 ~ 11678635 n 0000 ~ 11678768 n 0000 ~ 11680838 n 0000 ~ 11680995 n 0000 ~ 11682349 n 0000 ~ 11682512 n 0000 ~ 11682659 n 0000 ~ 11682842 n 0000 ~ 12994475 n 0000 ~ 13091312 n 0000 ~ 13091774 n 0000 ~ 13092078 n 0000 ~ 13093380 n 0000 ~ 13093629 n 0000 ~ 13093725 n 0000 ~ 13094003 n 0000 ~ 13094145 n 0000 ~ 13094273 n 0000 ~ 13134947 n 0000 | the parts of a plant involved in its reproduction -11676500 20 n 01 pistil 0 007 @ 11675842 n 0000 #p 11669335 n 0000 ~ 11676963 n 0000 ~ 11677045 n 0000 ~ 11677144 n 0000 %p 11677259 n 0000 ~ 11677743 n 0000 | the female ovule-bearing part of a flower composed of ovary and style and stigma -11676743 20 n 01 gynobase 0 001 @ 13130161 n 0000 | the enlarged receptacle in which the pistil is borne -11676850 20 n 01 gynophore 0 001 @ 13129165 n 0000 | the stalk of a pistil that raises it above the receptacle -11676963 20 n 01 simple_pistil 0 001 @ 11676500 n 0000 | consists of one carpel -11677045 20 n 01 compound_pistil 0 001 @ 11676500 n 0000 | consists of two or more fused carpels -11677144 20 n 01 pistillode 0 001 @ 11676500 n 0000 | a sterile vestigial pistil remaining in a staminate flower -11677259 20 n 01 style 0 006 @ 11675842 n 0000 #p 11676500 n 0000 ;c 06066555 n 0000 ~ 11677485 n 0000 %p 11677603 n 0000 ~ 12145638 n 0000 | (botany) the narrow elongated part of the pistil between the ovary and the stigma -11677485 20 n 01 stylopodium 0 001 @ 11677259 n 0000 | an enlargement at the base of the style in some Umbelliferae -11677603 20 n 01 stigma 0 002 @ 11675842 n 0000 #p 11677259 n 0000 | the apical end of the style where deposited pollen enters the pistil -11677743 20 n 01 carpel 0 004 @ 11676500 n 0000 #p 11669335 n 0000 + 02681282 a 0101 ~ 11678377 n 0000 | a simple pistil or one element of a compound pistil -11677902 20 n 01 carpophore 0 001 @ 13129165 n 0000 | a slender stalk that furnishes an axis for a carpel -11678010 20 n 02 cornstalk 0 corn_stalk 0 002 @ 13129165 n 0000 #p 12143676 n 0000 | the stalk of a corn plant -11678123 20 n 01 filament 0 001 @ 13129165 n 0000 | the stalk of a stamen -11678199 20 n 02 funicle 0 funiculus 0 001 @ 13129165 n 0000 | the stalk of a plant ovule or seed -11678299 20 n 01 petiolule 0 001 @ 13129165 n 0000 | the stalk of a leaflet -11678377 20 n 01 mericarp 0 001 @ 11677743 n 0000 | a carpel with one seed; one of a pair split apart at maturity -11678493 20 n 01 hilum 0 002 @ 08620061 n 0000 + 02947799 a 0101 | the scar on certain seeds marking its point of attachment to the funicle -11678635 20 n 01 ovary 0 003 @ 11675842 n 0000 #p 11669335 n 0000 %p 11680838 n 0000 | the organ that bears the ovules of a flower -11678768 20 n 01 ovule 0 010 @ 11675842 n 0000 + 02933027 a 0101 %p 11679085 n 0000 %p 11679250 n 0000 %p 11679378 n 0000 ~ 11679528 n 0000 ~ 11679652 n 0000 ~ 11679779 n 0000 ~ 11679909 n 0000 ~ 11683989 n 0000 | a small body that contains the female germ cell of a plant; develops into a seed after fertilization -11679085 20 n 01 chalaza 0 002 @ 13086908 n 0000 #p 11678768 n 0000 | basal part of a plant ovule opposite the micropyle; where integument and nucellus are joined -11679250 20 n 01 nucellus 0 002 @ 13086908 n 0000 #p 11678768 n 0000 | central part of a plant ovule; contains the embryo sac -11679378 20 n 01 micropyle 0 002 @ 09201031 n 0000 #p 11678768 n 0000 | minute opening in the wall of an ovule through which the pollen tube enters -11679528 20 n 01 amphitropous_ovule 0 001 @ 11678768 n 0000 | a partly inverted ovule turned back 90 degrees on its stalk -11679652 20 n 01 anatropous_ovule 0 001 @ 11678768 n 0000 | a completely inverted ovule turned back 180 degrees on its stalk -11679779 20 n 01 campylotropous_ovule 0 001 @ 11678768 n 0000 | a curved ovule with the micropyle almost touching the funiculus -11679909 20 n 01 orthotropous_ovule 0 001 @ 11678768 n 0000 | a completely straight ovule with the micropyle at the apex -11680032 20 n 03 stoma 1 stomate 0 pore 0 006 @ 09201031 n 0000 + 02645494 a 0102 + 02645494 a 0101 ~ 11680277 n 0000 ~ 13153729 n 0000 ~ 13153888 n 0000 | a minute epidermal pore in a leaf or stem through which gases and water vapor can pass -11680277 20 n 01 germ_pore 0 001 @ 11680032 n 0000 | a pore in the outer wall of a spore or pollen grain through which the germ tube or pollen tube makes its exit on germination -11680457 20 n 01 germ_tube 0 002 @ 13086908 n 0000 ;c 06066555 n 0000 | (botany) a slender tubular outgrowth from a spore in germination -11680596 20 n 01 pollen_tube 0 002 @ 13086908 n 0000 ;c 06066555 n 0000 | (botany) a slender tubular outgrowth from a pollen grain when deposited on the stigma for a flower; it penetrates the style and conveys the male gametes to the ovule -11680838 20 n 01 placenta 0 003 @ 11675842 n 0000 #p 11678635 n 0000 + 01830946 a 0101 | that part of the ovary of a flowering plant where the ovules form -11680995 20 n 01 placentation 0 008 @ 11675842 n 0000 ~ 11681255 n 0000 ~ 11681393 n 0000 ~ 11681554 n 0000 ~ 11681692 n 0000 ~ 11681865 n 0000 ~ 11682003 n 0000 ~ 11682166 n 0000 | arrangement of the ovules in the placenta and of the placentas in the ovary -11681255 20 n 01 apical_placentation 0 001 @ 11680995 n 0000 | where one or few ovules develop at the top of a simple or compound ovary -11681393 20 n 01 axile_placentation 0 001 @ 11680995 n 0000 | ovules are borne at or around the center of a compound ovary on an axis formed from joined septa -11681554 20 n 01 basal_placentation 0 001 @ 11680995 n 0000 | where one or few ovules develop at the base of a simple or compound ovary -11681692 20 n 01 free_central_placentation 0 001 @ 11680995 n 0000 | where ovules develop on a central column in a compound ovary lacking septa or with septa at base only -11681865 20 n 01 lamellate_placentation 0 001 @ 11680995 n 0000 | with ovules on thin extensions of the placentae into a compound ovary -11682003 20 n 02 marginal_placentation 0 ventral_placentation 0 001 @ 11680995 n 0000 | with ovules borne on the wall along the ventral suture of a simple ovary -11682166 20 n 01 parietal_placentation 0 001 @ 11680995 n 0000 | where ovules develop on the wall or slight outgrowths of the wall forming broken partitions within a compound ovary -11682349 20 n 03 testa 0 episperm 0 seed_coat 0 003 @ 11675842 n 0000 #p 11683989 n 0000 + 02812697 a 0101 | protective outer layer of seeds of flowering plants -11682512 20 n 01 endosperm 0 002 @ 11675842 n 0000 #p 11683989 n 0000 | nutritive tissue surrounding the embryo within seeds of flowering plants -11682659 20 n 01 gemma 0 001 @ 11675842 n 0000 | small asexual reproductive structure in e.g. liverworts and mosses that detaches from the parent and develops into a new individual -11682842 20 n 03 cone 0 strobilus 0 strobile 0 008 @ 11675842 n 0000 #p 13108841 n 0000 #p 13221529 n 0000 #p 13219422 n 0000 + 02844728 a 0102 ~ 11683105 n 0000 ~ 11683216 n 0000 ~ 11683331 n 0000 | cone-shaped mass of ovule- or spore-bearing scales or bracts -11683105 20 n 01 fir_cone 0 002 @ 11682842 n 0000 #p 11620673 n 0000 | the seed-producing cone of a fir tree -11683216 20 n 01 galbulus 0 002 @ 11682842 n 0000 #p 11630489 n 0000 | the seed-producing cone of a cypress tree -11683331 20 n 01 pinecone 0 002 @ 11682842 n 0000 #p 11608250 n 0000 | the seed-producing cone of a pine tree -11683443 20 n 01 septum 0 002 @ 13087625 n 0000 + 02796711 a 0101 | a partition or wall especially in an ovary -11683556 20 n 01 shell 0 005 @ 13139918 n 0000 + 00181258 v 0102 + 00197744 v 0101 + 01513710 v 0101 ~ 11683747 n 0000 | the hard usually fibrous outer layer of some fruits especially nuts -11683747 20 n 01 nutshell 0 001 @ 11683556 n 0000 | the shell around the kernel of a nut -11683838 20 n 02 nectary 0 honey_gland 0 002 @ 13087625 n 0000 + 03089615 a 0101 | a gland (often a protuberance or depression) that secretes nectar -11683989 20 n 01 seed 2 007 @ 11678768 n 0000 + 01500873 v 0102 + 01652429 v 0101 + 01542056 v 0101 %p 11682349 n 0000 %p 11682512 n 0000 %p 11684264 n 0000 | a mature fertilized plant ovule consisting of an embryo and its food source and having a protective coat or testa -11684264 20 n 02 pericarp 0 seed_vessel 0 007 @ 09257949 n 0000 #p 11683989 n 0000 ~ 11684499 n 0000 ~ 11684654 n 0000 ~ 11684739 n 0000 ~ 11685179 n 0000 ~ 12036368 n 0000 | the ripened and variously modified walls of a plant ovary -11684499 20 n 02 epicarp 0 exocarp 0 002 @ 11684264 n 0000 + 02932231 a 0101 | outermost layer of the pericarp of fruits as the skin of a peach or grape -11684654 20 n 01 mesocarp 0 001 @ 11684264 n 0000 | the middle layer of a pericarp -11684739 20 n 03 stone 0 pit 0 endocarp 0 006 @ 11684264 n 0000 + 00179567 v 0201 + 01158180 a 0105 + 00179567 v 0102 ~ 11690088 n 0000 ~ 11690169 n 0000 | the hard inner (usually woody) layer of the pericarp of some fruits (as peaches or plums or cherries or olives) that contains the seed; "you should remove the stones from prunes before cooking" -11685091 20 n 01 pip 0 001 @ 13135832 n 0000 | a small hard seed found in some fruits -11685179 20 n 01 capsule 0 006 @ 11684264 n 0000 + 02678677 a 0101 ~ 11685400 n 0000 ~ 11685512 n 0000 ~ 11685621 n 0000 %p 11685876 n 0000 | a dry dehiscent seed vessel or the spore-containing structure of e.g. mosses -11685400 20 n 01 bilocular_capsule 0 001 @ 11685179 n 0000 | a capsule divided into two cells or compartments -11685512 20 n 01 boll 0 001 @ 11685179 n 0000 | the rounded seed-bearing capsule of a cotton or flax plant -11685621 20 n 02 silique 0 siliqua 0 002 @ 11685179 n 0000 ~ 11685766 n 0000 | narrow elongated seed capsule peculiar to the family Cruciferae -11685766 20 n 01 silicle 0 001 @ 11685621 n 0000 | short broad silique occurring in some cruciferous plants -11685876 20 n 01 peristome 0 003 @ 13088096 n 0000 #p 11685179 n 0000 ;c 06066555 n 0000 | (botany) fringe of toothlike appendages surrounding the mouth of a moss capsule -11686049 20 n 01 haustorium 0 001 @ 13088096 n 0000 | a root-like attachment in parasitic plants that penetrates and obtains food from the host -11686195 20 n 01 cataphyll 0 002 @ 13152742 n 0000 ~ 11686398 n 0000 | a reduced or scarcely developed leaf at the start of a plant's life (i.e., cotyledons) or in the early stages of leaf development -11686398 20 n 02 cotyledon 0 seed_leaf 0 001 @ 11686195 n 0000 | embryonic leaf in seed-bearing plants -11686503 20 n 01 embryo 0 002 @ 00017222 n 0000 ;c 06066555 n 0000 | (botany) a minute rudimentary plant contained within a seed or an archegonium -11686652 20 n 01 perisperm 0 001 @ 13095685 n 0000 | the nutritive tissue outside the sac containing the embryo in some seeds -11686780 20 n 03 monocarp 0 monocarpic_plant 0 monocarpous_plant 0 001 @ 00017222 n 0000 | a plant that bears fruit once and dies -11686912 20 n 01 sporophyte 0 001 @ 00017222 n 0000 | the spore-producing individual or phase in the life cycle of a plant having alternation of generations -11687071 20 n 01 gametophyte 0 003 @ 00017222 n 0000 ~ 11687266 n 0000 ~ 11687681 n 0000 | the gamete-bearing individual or phase in the life cycle of a plant having alternation of generations -11687266 20 n 01 megagametophyte 0 001 @ 11687071 n 0000 | the female gametophyte produced by the megaspore of a plant that produces both microspore and megaspores -11687432 20 n 02 megasporangium 0 macrosporangium 0 001 @ 13091774 n 0000 | a plant structure that produces megaspores -11687553 20 n 01 megasporophyll 0 001 @ 13091620 n 0000 | in non-flowering plants, a sporophyll that bears only megasporangia -11687681 20 n 01 microgametophyte 0 001 @ 11687071 n 0000 | the male gametophyte produced by a microspore -11687789 20 n 01 microspore 0 001 @ 11547855 n 0000 | smaller of the two types of spore produced in heterosporous plants; develops in the pollen sac into a male gametophyte -11687964 20 n 01 microsporangium 0 001 @ 13091774 n 0000 | a plant structure that produces microspores -11688069 20 n 01 microsporophyll 0 001 @ 13091620 n 0000 | in non-flowering plants, a sporophyll that bears only microsporangia -11688199 20 n 02 megaspore 0 macrospore 0 001 @ 11547855 n 0000 | larger of the two types of spore produced in heterosporous plants; develops in ovule into a female gametophyte -11688378 20 n 02 archespore 0 archesporium 0 003 @ 00006484 n 0000 + 02639590 a 0201 + 02639590 a 0101 | primitive cell or group of cells from which a mother cell develops -11688552 20 n 01 daughter_cell 0 001 @ 00006484 n 0000 | a cell formed by the division or budding of another cell; "anthrax grows by dividing into two daughter cells that are generally identical" -11688750 20 n 01 mother_cell 0 002 @ 00006484 n 0000 ~ 11688958 n 0000 | cell from which another cell of an organism (usually of a different sort) develops; "a sperm cell develops from a sperm mother cell" -11688958 20 n 01 spore_mother_cell 0 001 @ 11688750 n 0000 | cell from which a spore develops -11689054 20 n 01 archegonium 0 002 @ 13087625 n 0000 + 02639430 a 0101 | a female sex organ occurring in mosses, ferns, and most gymnosperms -11689197 20 n 03 bonduc_nut 0 nicker_nut 0 nicker_seed 0 002 @ 13135832 n 0000 #p 12488454 n 0000 | hard shiny grey seed of a bonduc tree; used for making e.g. jewelry -11689367 20 n 01 Job's_tears 0 001 @ 13135832 n 0000 | hard pearly seeds of an Asiatic grass; often used as beads -11689483 20 n 02 oilseed 0 oil-rich_seed 0 006 @ 13135832 n 0000 ~ 11689678 n 0000 ~ 11689815 n 0000 ~ 11689957 n 0000 ~ 11879895 n 0000 ~ 15086247 n 0000 | any of several seeds that yield oil -11689678 20 n 01 castor_bean 0 002 @ 11689483 n 0000 #p 12924623 n 0000 | the toxic seed of the castor-oil plant; source of castor oil -11689815 20 n 01 cottonseed 0 003 @ 11689483 n 0000 #p 12175949 n 0000 %s 07674393 n 0000 | seed of cotton plants; source of cottonseed oil -11689957 20 n 01 candlenut 2 002 @ 11689483 n 0000 #p 12927494 n 0000 | seed of candlenut tree; source of soil used in varnishes -11690088 20 n 01 peach_pit 0 001 @ 11684739 n 0000 | the stone seed of a peach -11690169 20 n 01 cherry_stone 0 001 @ 11684739 n 0000 | the stone seed of a cherry -11690254 20 n 03 hypanthium 0 floral_cup 0 calyx_tube 0 001 @ 13087625 n 0000 | the cuplike or ringlike or tubular structure of a flower which bears the sepals and stamens and calyx (as in Rosaceae) -11690455 20 n 02 petal 0 flower_petal 0 003 @ 11690893 n 0000 #p 11691046 n 0000 + 01775540 a 0101 | part of the perianth that is usually brightly colored -11690612 20 n 01 sepal 0 002 @ 11690893 n 0000 #p 11691523 n 0000 | one of the green parts that form the calyx of a flower -11690737 20 n 01 mentum 0 002 @ 13086908 n 0000 #p 12041446 n 0000 | a projection like a chin formed by the sepals and base of the column in some orchids -11690893 20 n 01 floral_leaf 0 004 @ 13152742 n 0000 #p 11669335 n 0000 ~ 11690455 n 0000 ~ 11690612 n 0000 | a modified leaf that is part of a flower -11691046 20 n 01 corolla 0 005 @ 13875970 n 0000 #p 11692265 n 0000 ;c 06066555 n 0000 %p 11690455 n 0000 %p 11691332 n 0000 | (botany) the whorl of petals of a flower that collectively form an inner floral envelope or layer of the perianth; "we cultivate the flower for its corolla" -11691332 20 n 01 corona 0 003 @ 13086908 n 0000 #p 11691046 n 0000 ;c 06066555 n 0000 | (botany) the trumpet-shaped or cup-shaped outgrowth of the corolla of a daffodil or narcissus flower -11691523 20 n 01 calyx 0 007 @ 13875970 n 0000 #p 11692265 n 0000 ;c 06066555 n 0000 + 02675856 a 0101 %p 11690612 n 0000 ~ 11691990 n 0000 ~ 11692604 n 0000 | (botany) the whorl of sepals of a flower collectively forming the outer floral envelope or layer of the perianth enclosing and supporting the developing bud; usually green -11691857 20 n 01 lip 0 002 @ 13086908 n 0000 ;c 06066555 n 0000 | (botany) either of the two parts of a bilabiate corolla or calyx -11691990 20 n 01 hull 2 001 @ 11691523 n 0000 | persistent enlarged calyx at base of e.g. a strawberry or raspberry -11692108 20 n 04 epicalyx 0 false_calyx 0 calycle 0 calyculus 0 001 @ 13154841 n 0000 | a group of bracts simulating a calyx as in a carnation or hibiscus -11692265 20 n 05 perianth 0 chlamys 0 floral_envelope 0 perigone 0 perigonium 0 007 @ 13087625 n 0000 @ 09257949 n 0000 #p 11669335 n 0000 + 00365513 a 0201 %p 11691046 n 0000 %p 11691523 n 0000 ~ 12415765 n 0000 | collective term for the outer parts of a flower consisting of the calyx and corolla and enclosing the stamens and pistils -11692604 20 n 01 pappus 0 002 @ 11691523 n 0000 ~ 11692792 n 0000 | calyx composed of scales or bristles or featherlike hairs in plants of the Compositae such as thistles and dandelions -11692792 20 n 01 thistledown 0 001 @ 11692604 n 0000 | pappus of a thistle consisting of silky featherlike hairs attached to the seed-like fruit of a thistle -11692952 20 n 04 Ranales 0 order_Ranales 0 Ranunculales 0 order_Ranunculales 0 016 @ 11534677 n 0000 #m 11667112 n 0000 %m 11693566 n 0000 %m 11697158 n 0000 %m 11700401 n 0000 %m 11701903 n 0000 %m 11702428 n 0000 %m 11702999 n 0000 %m 11703386 n 0000 %m 11708181 n 0000 %m 11712827 n 0000 %m 11713960 n 0000 %m 11714618 n 0000 %m 11718911 n 0000 %m 11719468 n 0000 %m 11739530 n 0000 | herbs, shrubs and trees: includes families Ranunculaceae; Annonaceae; Berberidaceae; Magnoliaceae; Menispermaceae; Myristicaceae; Nymphaeaceae; Lardizabalaceae; Lauraceae; Calycanthaceae; Ceratophyllaceae; Cercidiphyllaceae -11693566 20 n 03 Annonaceae 0 family_Annonaceae 0 custard-apple_family 0 007 @ 11564258 n 0000 #m 11692952 n 0000 %m 11693812 n 0000 %m 11695485 n 0000 %m 11695813 n 0000 %m 11696338 n 0000 %m 11696776 n 0000 | chiefly tropical trees or shrubs -11693812 20 n 02 Annona 0 genus_Annona 0 003 @ 11571907 n 0000 #m 11693566 n 0000 %m 11693981 n 0000 | type genus of the Annonaceae; tropical American trees or shrubs -11693981 20 n 02 custard_apple 0 custard_apple_tree 0 010 @ 12651821 n 0000 #m 11693812 n 0000 %p 07760859 n 0000 ~ 11694300 n 0000 ~ 11694469 n 0000 ~ 11694664 n 0000 ~ 11694866 n 0000 ~ 11695085 n 0000 ~ 11695285 n 0000 ~ 11695599 n 0000 | any of several tropical American trees bearing fruit with soft edible pulp -11694300 20 n 03 cherimoya 0 cherimoya_tree 0 Annona_cherimola 0 002 @ 11693981 n 0000 %p 07761141 n 0000 | small tropical American tree bearing round or oblong fruit -11694469 20 n 03 ilama 0 ilama_tree 0 Annona_diversifolia 0 002 @ 11693981 n 0000 %p 07761777 n 0000 | tropical American tree grown in southern United States having a whitish pink-tinged fruit -11694664 20 n 04 soursop 0 prickly_custard_apple 0 soursop_tree 0 Annona_muricata 0 002 @ 11693981 n 0000 %p 07761309 n 0000 | small tropical American tree bearing large succulent slightly acid fruit -11694866 20 n 04 bullock's_heart 0 bullock's_heart_tree 0 bullock_heart 0 Annona_reticulata 0 002 @ 11693981 n 0000 %p 07761461 n 0000 | small tropical American tree bearing a bristly heart-shaped acid tropical fruit -11695085 20 n 03 sweetsop 0 sweetsop_tree 0 Annona_squamosa 0 002 @ 11693981 n 0000 %p 07761611 n 0000 | tropical American tree bearing sweet pulpy fruit with thick scaly rind and shiny black seeds -11695285 20 n 03 pond_apple 0 pond-apple_tree 0 Annona_glabra 0 002 @ 11693981 n 0000 %p 07761954 n 0000 | small evergreen tree of tropical America with edible fruit; used chiefly as grafting stock -11695485 20 n 02 Asimina 0 genus_Asimina 0 003 @ 11571907 n 0000 #m 11693566 n 0000 %m 11695599 n 0000 | pawpaw -11695599 20 n 04 pawpaw 1 papaw 1 papaw_tree 0 Asimina_triloba 0 003 @ 11693981 n 0000 #m 11695485 n 0000 %p 07762114 n 0000 | small tree native to the eastern United States having oblong leaves and fleshy fruit -11695813 20 n 04 Cananga 0 genus_Cananga 0 Canangium 0 genus_Canangium 0 003 @ 11571907 n 0000 #m 11693566 n 0000 %m 11695974 n 0000 | a genus of Malayan tree -11695974 20 n 03 ilang-ilang 0 ylang-ylang 0 Cananga_odorata 0 002 @ 13109733 n 0000 #m 11695813 n 0000 | evergreen Asian tree with aromatic greenish-yellow flowers yielding a volatile oil; widely grown in the tropics as an ornamental -11696211 20 n 01 ilang-ilang 1 001 @ 14892655 n 0000 | oil distilled from flowers of the ilang-ilang tree; used in perfumery -11696338 20 n 02 Oxandra 0 genus_Oxandra 0 002 @ 11571907 n 0000 #m 11693566 n 0000 | genus of tropical trees -11696450 20 n 03 lancewood 0 lancewood_tree 0 Oxandra_lanceolata 0 002 @ 13104059 n 0000 %s 11696606 n 0000 | source of most of the lancewood of commerce -11696606 20 n 01 lancewood 2 002 @ 15098161 n 0000 #s 11696450 n 0000 | durable straight-grained wood of the lacewood tree; used for building and cabinetwork and tools -11696776 20 n 02 Xylopia 0 genus_Xylopia 0 003 @ 11571907 n 0000 #m 11693566 n 0000 %m 11696935 n 0000 | tropical evergreen trees or shrubs; chiefly African -11696935 20 n 03 Guinea_pepper 1 negro_pepper 0 Xylopia_aethiopica 0 002 @ 13104059 n 0000 #m 11696776 n 0000 | tropical west African evergreen tree bearing pungent aromatic seeds used as a condiment and in folk medicine -11697158 20 n 03 Berberidaceae 0 family_Berberidaceae 0 barberry_family 0 007 @ 11564258 n 0000 #m 11692952 n 0000 %m 11697388 n 0000 %m 11698433 n 0000 %m 11698895 n 0000 %m 11699283 n 0000 %m 11699915 n 0000 | shrubs or herbs -11697388 20 n 02 Berberis 0 genus_Berberis 0 003 @ 11571907 n 0000 #m 11697158 n 0000 %m 11697560 n 0000 | large genus of shrubs of temperate zones of New and Old Worlds -11697560 20 n 01 barberry 0 005 @ 13112664 n 0000 #m 11697388 n 0000 ~ 11697802 n 0000 ~ 11698042 n 0000 ~ 11698245 n 0000 | any of numerous plants of the genus Berberis having prickly stems and yellow flowers followed by small red berries -11697802 20 n 02 American_barberry 0 Berberis_canadensis 0 001 @ 11697560 n 0000 | deciduous shrub of eastern North America whose leaves turn scarlet in autumn and having racemes of yellow flowers followed by ellipsoid glossy red berries -11698042 20 n 03 common_barberry 0 European_barberry 0 Berberis_vulgaris 0 001 @ 11697560 n 0000 | upright deciduous European shrub widely naturalized in United States having clusters of juicy berries -11698245 20 n 02 Japanese_barberry 0 Berberis_thunbergii 0 001 @ 11697560 n 0000 | compact deciduous shrub having persistent red berries; widespread in cultivation especially for hedges -11698433 20 n 02 Caulophyllum 0 genus_Caulophyllum 0 003 @ 11571907 n 0000 #m 11697158 n 0000 %m 11698562 n 0000 | blue cohosh -11698562 20 n 08 blue_cohosh 0 blueberry_root 0 papooseroot 0 papoose_root 0 squawroot 0 squaw_root 0 Caulophyllum_thalictrioides 0 Caulophyllum_thalictroides 0 002 @ 13112664 n 0000 #m 11698433 n 0000 | tall herb of eastern North America and Asia having blue berrylike fruit and a thick knotty rootstock formerly used medicinally -11698895 20 n 02 Epimedium 0 genus_Epimedium 0 003 @ 11571907 n 0000 #m 11697158 n 0000 %m 11699071 n 0000 | herbaceous perennials of Mediterranean to India and eastern Asia -11699071 20 n 03 barrenwort 0 bishop's_hat 0 Epimedium_grandiflorum 0 002 @ 12205694 n 0000 #m 11698895 n 0000 | slow-growing creeping plant with semi-evergreen leaves on erect wiry stems; used as ground cover -11699283 20 n 02 Mahonia 0 genus_Mahonia 0 002 @ 11571907 n 0000 #m 11697158 n 0000 | evergreen shrubs and small trees of North and Central America and Asia -11699442 20 n 06 Oregon_grape 1 Oregon_holly_grape 0 hollygrape 0 mountain_grape 0 holly-leaves_barberry 0 Mahonia_aquifolium 0 001 @ 13112664 n 0000 | ornamental evergreen shrub of Pacific coast of North America having dark green pinnate leaves and racemes of yellow flowers followed by blue-black berries -11699751 20 n 02 Oregon_grape 2 Mahonia_nervosa 0 001 @ 13112664 n 0000 | small shrub with grey-green leaves and yellow flowers followed by glaucous blue berries -11699915 20 n 02 Podophyllum 0 genus_Podophyllum 0 003 @ 11571907 n 0000 #m 11697158 n 0000 %m 11700058 n 0000 | perennial rhizomatous herbs -11700058 20 n 04 mayapple 1 May_apple 1 wild_mandrake 0 Podophyllum_peltatum 0 003 @ 12205694 n 0000 #m 11699915 n 0000 %p 11700279 n 0000 | North American herb with poisonous root stock and edible though insipid fruit -11700279 20 n 01 May_apple 2 002 @ 13134947 n 0000 #p 11700058 n 0000 | edible but insipid fruit of the May apple plant -11700401 20 n 04 Calycanthaceae 0 family_Calycanthaceae 0 calycanthus_family 0 strawberry-shrub_family 0 004 @ 11564258 n 0000 #m 11692952 n 0000 %m 11700676 n 0000 %m 11701492 n 0000 | shrubs or small trees having aromatic bark; the eastern United States and eastern Asia -11700676 20 n 02 Calycanthus 0 genus_Calycanthus 0 003 @ 11571907 n 0000 #m 11700401 n 0000 %m 11700864 n 0000 | a magnoliid dicot genus of the family Calycanthaceae including: allspice -11700864 20 n 01 allspice 1 004 @ 13112664 n 0000 #m 11700676 n 0000 ~ 11701066 n 0000 ~ 11701302 n 0000 | deciduous shrubs having aromatic bark; eastern China; southwestern and eastern United States -11701066 20 n 05 Carolina_allspice 0 strawberry_shrub 0 strawberry_bush 2 sweet_shrub 0 Calycanthus_floridus 0 001 @ 11700864 n 0000 | hardy shrub of southeastern United States having clove-scented wood and fragrant red-brown flowers -11701302 20 n 03 spicebush 2 California_allspice 0 Calycanthus_occidentalis 0 001 @ 11700864 n 0000 | straggling aromatic shrub of southwestern United States having fragrant brown flowers -11701492 20 n 02 Chimonanthus 0 genus_Chimonanthus 0 003 @ 11571907 n 0000 #m 11700401 n 0000 %m 11701698 n 0000 | small genus of Asian deciduous or evergreen shrubs having fragrant flowers: winter sweet -11701698 20 n 04 Japan_allspice 0 Japanese_allspice 0 winter_sweet 1 Chimonanthus_praecox 0 002 @ 13112664 n 0000 #m 11701492 n 0000 | deciduous Japanese shrub cultivated for its fragrant yellow flowers -11701903 20 n 02 Ceratophyllaceae 0 family_Ceratophyllaceae 0 003 @ 11564258 n 0000 #m 11692952 n 0000 %m 11702081 n 0000 | coextensive with the genus Ceratophyllum: hornworts -11702081 20 n 02 Ceratophyllum 0 genus_Ceratophyllum 0 003 @ 11571907 n 0000 #m 11701903 n 0000 %m 11702252 n 0000 | constituting the family Ceratophyllaceae: hornworts -11702252 20 n 01 hornwort 2 002 @ 13121544 n 0000 #m 11702081 n 0000 | any aquatic plant of the genus Ceratophyllum; forms submerged masses in ponds and slow-flowing streams -11702428 20 n 02 Cercidiphyllaceae 0 family_Cercidiphyllaceae 0 003 @ 11564258 n 0000 #m 11692952 n 0000 %m 11702566 n 0000 | one genus -11702566 20 n 02 Cercidiphyllum 0 genus_Cercidiphyllum 0 003 @ 11571907 n 0000 #m 11702428 n 0000 %m 11702713 n 0000 | one species: katsura tree -11702713 20 n 02 katsura_tree 0 Cercidiphyllum_japonicum 0 002 @ 13109733 n 0000 #m 11702566 n 0000 | rapidly growing deciduous tree of low mountainsides of China and Japan; grown as an ornamental for its dark blue-green candy-scented foliage that becomes yellow to scarlet in autumn -11702999 20 n 03 Lardizabalaceae 0 family_Lardizabalaceae 0 lardizabala_family 0 003 @ 11564258 n 0000 #m 11692952 n 0000 %m 11703205 n 0000 | thick-stemmed lianas and some shrubs; some have edible fruit -11703205 20 n 02 Lardizabala 0 genus_Lardizabala 0 002 @ 11571907 n 0000 #m 11702999 n 0000 | evergreen monoecious climbers of South America having dark mauve-blue edible berries -11703386 20 n 03 Lauraceae 0 family_Lauraceae 0 laurel_family 0 010 @ 11564258 n 0000 #m 11692952 n 0000 %m 11703669 n 0000 %m 11703935 n 0000 %m 11704401 n 0000 %m 11705921 n 0000 %m 11706120 n 0000 %m 11706629 n 0000 %m 11707109 n 0000 %m 11707668 n 0000 | a family of Lauraceae -11703669 20 n 01 laurel 0 010 @ 13109733 n 0000 #m 11703386 n 0000 ~ 11704093 n 0000 ~ 11704620 n 0000 ~ 11704791 n 0000 ~ 11705171 n 0000 ~ 11705573 n 0000 ~ 11706942 n 0000 ~ 11707229 n 0000 ~ 11707827 n 0000 | any of various aromatic trees of the laurel family -11703935 20 n 02 Laurus 0 genus_Laurus 0 003 @ 11571907 n 0000 #m 11703386 n 0000 %m 11704093 n 0000 | small evergreen trees or shrubs with aromatic leaves -11704093 20 n 05 true_laurel 0 bay 0 bay_laurel 0 bay_tree 0 Laurus_nobilis 0 003 @ 11703669 n 0000 #m 11703935 n 0000 %p 07816296 n 0000 | small Mediterranean evergreen tree with small blackish berries and glossy aromatic leaves used for flavoring in cooking; also used by ancient Greeks to crown victors -11704401 20 n 02 Cinnamomum 0 genus_Cinnamomum 0 006 @ 11571907 n 0000 #m 11703386 n 0000 %m 11704620 n 0000 %m 11704791 n 0000 %m 11705171 n 0000 %m 11705573 n 0000 | Asiatic and Australian aromatic trees and shrubs -11704620 20 n 02 camphor_tree 0 Cinnamomum_camphora 0 002 @ 11703669 n 0000 #m 11704401 n 0000 | large evergreen tree of warm regions whose aromatic wood yields camphor -11704791 20 n 04 cinnamon 0 Ceylon_cinnamon 0 Ceylon_cinnamon_tree 0 Cinnamomum_zeylanicum 0 004 @ 11703669 n 0000 #m 11704401 n 0000 %p 07814203 n 0000 %p 11705052 n 0000 | tropical Asian tree with aromatic yellowish-brown bark; source of the spice cinnamon -11705052 20 n 02 cinnamon 2 cinnamon_bark 0 002 @ 13162297 n 0000 #p 11704791 n 0000 | aromatic bark used as a spice -11705171 20 n 03 cassia 2 cassia-bark_tree 0 Cinnamomum_cassia 0 003 @ 11703669 n 0000 #m 11704401 n 0000 %p 11705387 n 0000 | Chinese tree with aromatic bark; yields a less desirable cinnamon than Ceylon cinnamon -11705387 20 n 02 cassia_bark 0 Chinese_cinnamon 0 002 @ 13162297 n 0000 #p 11705171 n 0000 | aromatic bark of the cassia-bark tree; less desirable as a spice than Ceylon cinnamon bark -11705573 20 n 02 Saigon_cinnamon 0 Cinnamomum_loureirii 0 003 @ 11703669 n 0000 #m 11704401 n 0000 %p 11705776 n 0000 | tropical southeast Asian tree with aromatic bark; yields a bark used medicinally -11705776 20 n 01 cinnamon_bark 1 002 @ 13162297 n 0000 #p 11705573 n 0000 | aromatic bark of Saigon cinnamon used medicinally as a carminative -11705921 20 n 02 Lindera 0 genus_Lindera 0 003 @ 11571907 n 0000 #m 11703386 n 0000 %m 11706325 n 0000 | aromatic evergreen or deciduous dioecious shrubs or trees of eastern Asia and North America -11706120 20 n 02 Benzoin 0 genus_Benzoin 0 002 @ 11571907 n 0000 #m 11703386 n 0000 | used in some classifications for the American spicebush and certain other plants often included in the genus Lindera -11706325 20 n 06 spicebush 1 spice_bush 0 American_spicebush 0 Benjamin_bush 0 Lindera_benzoin 0 Benzoin_odoriferum 0 002 @ 13112664 n 0000 #m 11705921 n 0000 | deciduous shrub of the eastern United States having highly aromatic leaves and bark and yellow flowers followed by scarlet or yellow berries -11706629 20 n 02 Persea 0 genus_Persea 0 004 @ 11571907 n 0000 #m 11703386 n 0000 %m 11706761 n 0000 %m 11706942 n 0000 | avocado -11706761 20 n 03 avocado 0 avocado_tree 0 Persea_Americana 0 003 @ 12651821 n 0000 #m 11706629 n 0000 %p 07764847 n 0000 | tropical American tree bearing large pulpy green fruits -11706942 20 n 03 laurel-tree 0 red_bay 0 Persea_borbonia 0 002 @ 11703669 n 0000 #m 11706629 n 0000 | small tree of southern United States having dark red heartwood -11707109 20 n 01 genus_Sassafras 0 003 @ 11571907 n 0000 #m 11703386 n 0000 %m 11707229 n 0000 | a genus of sassafras -11707229 20 n 03 sassafras 0 sassafras_tree 0 Sassafras_albidum 0 004 @ 11703669 n 0000 #m 11707109 n 0000 %p 07816052 n 0000 %s 11707511 n 0000 | yellowwood tree with brittle wood and aromatic leaves and bark; source of sassafras oil; widely distributed in eastern North America -11707511 20 n 01 sassafras_oil 0 002 @ 14966667 n 0000 #s 11707229 n 0000 | oil from root bark of sassafras trees; used in perfumery and as a disinfectant -11707668 20 n 02 Umbellularia 0 genus_Umbellularia 0 003 @ 11571907 n 0000 #m 11703386 n 0000 %m 11707827 n 0000 | aromatic evergreen trees of Pacific coast -11707827 20 n 09 California_laurel 0 California_bay_tree 0 Oregon_myrtle 0 pepperwood 0 spice_tree 2 sassafras_laurel 0 California_olive 0 mountain_laurel 2 Umbellularia_californica 0 002 @ 11703669 n 0000 #m 11707668 n 0000 | Pacific coast tree having aromatic foliage and small umbellate flowers followed by olivelike fruit; yields a hard tough wood -11708181 20 n 03 Magnoliaceae 0 family_Magnoliaceae 0 magnolia_family 0 006 @ 11564258 n 0000 #m 11692952 n 0000 %m 11708442 n 0000 %m 11709450 n 0000 %m 11711971 n 0000 %m 11712153 n 0000 | subclass Magnoliidae: genera Liriodendron, Magnolia, and Manglietia -11708442 20 n 02 Illicium 0 genus_Illicium 0 006 @ 11571907 n 0000 #m 11708181 n 0000 %m 11708658 n 0000 %m 11708857 n 0000 %m 11709045 n 0000 %m 11709205 n 0000 | anise trees: evergreen trees with aromatic leaves -11708658 20 n 01 anise_tree 0 005 @ 13104059 n 0000 #m 11708442 n 0000 ~ 11708857 n 0000 ~ 11709045 n 0000 ~ 11709205 n 0000 | any of several evergreen shrubs and small trees of the genus Illicium -11708857 20 n 02 purple_anise 0 Illicium_floridanum 0 002 @ 11708658 n 0000 #m 11708442 n 0000 | small shrubby tree with purple flowers; found in wet soils of southeastern United States -11709045 20 n 02 star_anise 1 Illicium_anisatum 0 002 @ 11708658 n 0000 #m 11708442 n 0000 | small shrubby tree of Japan and Taiwan; flowers are not fragrant -11709205 20 n 03 star_anise 0 Chinese_anise 0 Illicium_verum 0 003 @ 11708658 n 0000 #m 11708442 n 0000 %p 07826930 n 0000 | small tree of China and Vietnam bearing anise-scented star-shaped fruit used in food and medicinally as a carminative -11709450 20 n 01 genus_Magnolia 0 003 @ 11571907 n 0000 #m 11708181 n 0000 %m 11709674 n 0000 | shrubs or trees of North America or Asia having entire evergreen or deciduous leaves; among most ancient of angiosperm genera -11709674 20 n 01 magnolia 0 011 @ 13109733 n 0000 #m 11709450 n 0000 %p 11710008 n 0000 ~ 11710136 n 0000 ~ 11710393 n 0000 ~ 11710658 n 0000 ~ 11710827 n 0000 ~ 11710987 n 0000 ~ 11711289 n 0000 ~ 11711537 n 0000 ~ 11711764 n 0000 | any shrub or tree of the genus Magnolia; valued for their longevity and exquisite fragrant blooms -11710008 20 n 01 magnolia 2 002 @ 13162297 n 0000 #p 11709674 n 0000 | dried bark of various magnolias; used in folk medicine -11710136 20 n 05 southern_magnolia 0 evergreen_magnolia 0 large-flowering_magnolia 0 bull_bay 0 Magnolia_grandiflora 0 001 @ 11709674 n 0000 | evergreen tree of southern United States having large stiff glossy leaves and huge white sweet-smelling flowers -11710393 20 n 05 umbrella_tree 1 umbrella_magnolia 0 elkwood 0 elk-wood 0 Magnolia_tripetala 0 001 @ 11709674 n 0000 | small deciduous tree of eastern North America having creamy white flowers and large leaves in formations like umbrellas at the ends of branches -11710658 20 n 02 earleaved_umbrella_tree 0 Magnolia_fraseri 0 001 @ 11709674 n 0000 | small erect deciduous tree with large leaves in coiled formations at branch tips -11710827 20 n 02 cucumber_tree 0 Magnolia_acuminata 0 001 @ 11709674 n 0000 | American deciduous magnolia having large leaves and fruit like a small cucumber -11710987 20 n 04 large-leaved_magnolia 0 large-leaved_cucumber_tree 0 great-leaved_macrophylla 0 Magnolia_macrophylla 0 001 @ 11709674 n 0000 | large deciduous shrub or tree of southeastern United States having huge leaves in dense false whorls and large creamy flowers tinged purple toward the base -11711289 20 n 03 saucer_magnolia 0 Chinese_magnolia 0 Magnolia_soulangiana 0 001 @ 11709674 n 0000 | large deciduous shrub or small tree having large open rosy to purplish flowers; native to Asia; prized as an ornamental in eastern North America -11711537 20 n 02 star_magnolia 0 Magnolia_stellata 0 001 @ 11709674 n 0000 | deciduous shrubby magnolia from Japan having fragrant white starlike flowers blooming before leaves unfold; grown as an ornamental in United States -11711764 20 n 04 sweet_bay 0 swamp_bay 0 swamp_laurel 2 Magnolia_virginiana 0 001 @ 11709674 n 0000 | shrub or small tree having rather small fragrant white flowers; abundant in southeastern United States -11711971 20 n 02 manglietia 0 genus_Manglietia 0 002 @ 13109733 n 0000 #m 11708181 n 0000 | a genus of flowering tree of the family Magnoliaceae found from Malay to southern China -11712153 20 n 02 Liriodendron 0 genus_Liriodendron 0 003 @ 11571907 n 0000 #m 11708181 n 0000 %m 11712282 n 0000 | tulip trees -11712282 20 n 05 tulip_tree 0 tulip_poplar 0 yellow_poplar 0 canary_whitewood 0 Liriodendron_tulipifera 0 003 @ 13109733 n 0000 #m 11712153 n 0000 %s 11712621 n 0000 | tall North American deciduous timber tree having large tulip-shaped greenish yellow flowers and conelike fruit; yields soft white woods used especially for cabinet work -11712621 20 n 05 tulipwood 0 true_tulipwood 0 whitewood 0 white_poplar 2 yellow_poplar 2 002 @ 15098161 n 0000 #s 11712282 n 0000 | light easily worked wood of a tulip tree; used for furniture and veneer -11712827 20 n 03 Menispermaceae 0 family_Menispermaceae 0 moonseed_family 0 005 @ 11564258 n 0000 #m 11692952 n 0000 %m 11713034 n 0000 %m 11713164 n 0000 %m 11713628 n 0000 | herbaceous or woody climbers -11713034 20 n 02 Menispermum 0 genus_Menispermum 0 003 @ 11571907 n 0000 #m 11712827 n 0000 %m 11713370 n 0000 | climbing herbs -11713164 20 n 01 moonseed 0 004 @ 13100677 n 0000 #m 11712827 n 0000 ~ 11713370 n 0000 ~ 11713763 n 0000 | plant of the family Menispermaceae having red or black fruit with crescent- or ring-shaped seeds -11713370 20 n 04 common_moonseed 0 Canada_moonseed 0 yellow_parilla 0 Menispermum_canadense 0 002 @ 11713164 n 0000 #m 11713034 n 0000 | a woody vine of eastern North America having large oval leaves and small white flowers and purple to blue-black fruits -11713628 20 n 02 Cocculus 0 genus_Cocculus 0 003 @ 11571907 n 0000 #m 11712827 n 0000 %m 11713763 n 0000 | climbing plants or shrubs -11713763 20 n 02 Carolina_moonseed 0 Cocculus_carolinus 0 002 @ 11713164 n 0000 #m 11713628 n 0000 | woody vine of southeastern United States resembling the common moonseed but having red fruits -11713960 20 n 03 Myristicaceae 0 family_Myristicaceae 0 nutmeg_family 0 003 @ 11564258 n 0000 #m 11692952 n 0000 %m 11714150 n 0000 | family of aromatic tropical trees with arillate seeds -11714150 20 n 02 Myristica 0 genus_Myristica 0 003 @ 11571907 n 0000 #m 11713960 n 0000 %m 11714382 n 0000 | type genus of Myristicaceae; tropical Asian evergreen trees with small white or yellow flowers followed by fleshy fruits -11714382 20 n 03 nutmeg 0 nutmeg_tree 0 Myristica_fragrans 0 003 @ 13111174 n 0000 #m 11714150 n 0000 %p 07815424 n 0000 | East Indian tree widely cultivated in the tropics for its aromatic seed; source of two spices: nutmeg and mace -11714618 20 n 03 Nymphaeaceae 0 family_Nymphaeaceae 0 water-lily_family 0 007 @ 11564258 n 0000 #m 11692952 n 0000 %m 11714853 n 0000 %m 11715207 n 0000 %m 11716285 n 0000 %m 11717007 n 0000 %m 11717820 n 0000 | dicot aquatic plants -11714853 20 n 01 water_lily 0 015 @ 13121544 n 0000 #m 11714618 n 0000 ~ 11715430 n 0000 ~ 11715678 n 0000 ~ 11715810 n 0000 ~ 11716041 n 0000 ~ 11716167 n 0000 ~ 11716422 n 0000 ~ 11716698 n 0000 ~ 11716877 n 0000 ~ 11717399 n 0000 ~ 11717577 n 0000 ~ 11718296 n 0000 ~ 11718681 n 0000 %p 13154736 n 0000 | an aquatic plant of the family Nymphaeaceae -11715207 20 n 02 Nymphaea 0 genus_Nymphaea 0 005 @ 11571907 n 0000 #m 11714618 n 0000 %m 11715430 n 0000 %m 11715678 n 0000 %m 11715810 n 0000 | the type genus of the family Nymphaeaceae; any of a variety of water lilies -11715430 20 n 04 water_nymph 2 fragrant_water_lily 0 pond_lily 0 Nymphaea_odorata 0 002 @ 11714853 n 0000 #m 11715207 n 0000 | a water lily having large leaves and showy fragrant flowers that float on the water; of temperate and tropical regions -11715678 20 n 02 European_white_lily 0 Nymphaea_alba 0 002 @ 11714853 n 0000 #m 11715207 n 0000 | a water lily with white flowers -11715810 20 n 05 lotus 1 white_lotus 0 Egyptian_water_lily 0 white_lily 2 Nymphaea_lotus 0 002 @ 11714853 n 0000 #m 11715207 n 0000 | white Egyptian lotus: water lily of Egypt to southeastern Africa; held sacred by the Egyptians -11716041 20 n 02 blue_lotus 1 Nymphaea_caerulea 0 001 @ 11714853 n 0000 | blue Egyptian lotus: held sacred by the Egyptians -11716167 20 n 02 blue_lotus 2 Nymphaea_stellata 0 001 @ 11714853 n 0000 | blue lotus of India and southeastern Asia -11716285 20 n 02 Nuphar 0 genus_Nuphar 0 004 @ 11571907 n 0000 #m 11714618 n 0000 %m 11716422 n 0000 %m 11716877 n 0000 | spatterdocks -11716422 20 n 04 spatterdock 0 cow_lily 0 yellow_pond_lily 0 Nuphar_advena 0 002 @ 11714853 n 0000 #m 11716285 n 0000 | common water lily of eastern and central North America, having broad leaves and globe-shaped yellow flowers; in sluggish fresh or slightly brackish water -11716698 20 n 02 southern_spatterdock 0 Nuphar_sagittifolium 0 001 @ 11714853 n 0000 | of flowing waters of the southeastern United States; may form obstructive mats in streams -11716877 20 n 02 yellow_water_lily 0 Nuphar_lutea 0 002 @ 11714853 n 0000 #m 11716285 n 0000 | a water lily with yellow flowers -11717007 20 n 02 Nelumbonaceae 0 subfamily_Nelumbonaceae 0 003 @ 11564258 n 0000 #m 11714618 n 0000 %m 11717239 n 0000 | in some classifications considered an independent family of water lilies; comprises the single genus Nelumbo -11717239 20 n 02 Nelumbo 0 genus_Nelumbo 0 003 @ 11571907 n 0000 #m 11717007 n 0000 %m 11717577 n 0000 | sometimes placed in the family Nymphaeaceae: lotuses -11717399 20 n 04 lotus 2 Indian_lotus 0 sacred_lotus 0 Nelumbo_nucifera 0 001 @ 11714853 n 0000 | native to eastern Asia; widely cultivated for its large pink or white flowers -11717577 20 n 04 water_chinquapin 1 American_lotus 0 yanquapin 0 Nelumbo_lutea 0 003 @ 11714853 n 0000 #m 11717239 n 0000 %p 07772631 n 0000 | water lily of eastern North America having pale yellow blossoms and edible globular nutlike seeds -11717820 20 n 03 Cabombaceae 0 subfamily_Cabombaceae 0 water-shield_family 0 004 @ 11564258 n 0000 #m 11714618 n 0000 %m 11718096 n 0000 %m 11718521 n 0000 | in some classifications considered an independent family of water lilies; comprises the genera Cabomba and Brasenia -11718096 20 n 02 Cabomba 0 genus_Cabomba 0 003 @ 11571907 n 0000 #m 11717820 n 0000 %m 11718296 n 0000 | alternatively, a member of the family Nymphaeaceae; a small genus of American aquatic plants -11718296 20 n 03 water-shield 1 fanwort 0 Cabomba_caroliniana 0 002 @ 11714853 n 0000 #m 11718096 n 0000 | common aquatic plant of eastern North America having floating and submerged leaves and white yellow-spotted flowers -11718521 20 n 02 Brasenia 0 genus_Brasenia 0 003 @ 11571907 n 0000 #m 11717820 n 0000 %m 11718681 n 0000 | alternatively, a member of the family Nymphaeaceae -11718681 20 n 03 water-shield 2 Brasenia_schreberi 0 water-target 0 002 @ 11714853 n 0000 #m 11718521 n 0000 | aquatic plant with floating oval leaves and purple flowers; in lakes and slow-moving streams; suitable for aquariums -11718911 20 n 03 Paeoniaceae 0 family_Paeoniaceae 0 peony_family 0 003 @ 11564258 n 0000 #m 11692952 n 0000 %m 11719120 n 0000 | perennial rhizomatous herbs and shrubs; of temperate Europe and North America -11719120 20 n 02 Paeonia 0 genus_Paeonia 0 003 @ 11571907 n 0000 #m 11718911 n 0000 %m 11719286 n 0000 | peonies: herbaceous or shrubby plants having showy flowers -11719286 20 n 02 peony 0 paeony 0 002 @ 11669921 n 0000 #m 11719120 n 0000 | any of numerous plants widely cultivated for their showy single or double red or pink or white flowers -11719468 20 n 04 Ranunculaceae 0 family_Ranunculaceae 0 buttercup_family 0 crowfoot_family 0 026 @ 11564258 n 0000 #m 11692952 n 0000 %m 11720088 n 0000 %m 11722769 n 0000 %m 11723655 n 0000 %m 11724529 n 0000 %m 11724822 n 0000 %m 11726569 n 0000 %m 11726925 n 0000 %m 11727976 n 0000 %m 11728350 n 0000 %m 11729315 n 0000 %m 11731861 n 0000 %m 11732309 n 0000 %m 11732857 n 0000 %m 11733424 n 0000 %m 11733769 n 0000 %m 11734872 n 0000 %m 11735325 n 0000 %m 11735822 n 0000 %m 11736216 n 0000 %m 11736569 n 0000 %m 11737316 n 0000 %m 11738378 n 0000 %m 11738832 n 0000 %m 11739199 n 0000 | a family of Ranunculaceae -11720088 20 n 02 Ranunculus 0 genus_Ranunculus 0 008 @ 11571907 n 0000 #m 11719468 n 0000 %m 11720353 n 0000 %m 11720891 n 0000 %m 11721337 n 0000 %m 11721642 n 0000 %m 11721844 n 0000 %m 11722036 n 0000 | annual, biennial or perennial herbs: buttercup; crowfoot -11720353 20 n 06 buttercup 0 butterflower 0 butter-flower 0 crowfoot 0 goldcup 0 kingcup 1 008 @ 12205694 n 0000 #m 11720088 n 0000 ~ 11720643 n 0000 ~ 11721124 n 0000 ~ 11722199 n 0000 ~ 11722342 n 0000 ~ 11722466 n 0000 ~ 11722621 n 0000 | any of various plants of the genus Ranunculus -11720643 20 n 05 meadow_buttercup 0 tall_buttercup 0 tall_crowfoot 0 tall_field_buttercup 0 Ranunculus_acris 0 001 @ 11720353 n 0000 | perennial European buttercup with yellow spring flowers widely naturalized especially in eastern North America -11720891 20 n 03 water_crowfoot 0 water_buttercup 0 Ranunculus_aquatilis 0 002 @ 13121544 n 0000 #m 11720088 n 0000 | plant of ponds and slow streams having submerged and floating leaves and white flowers; Europe and North America -11721124 20 n 02 common_buttercup 0 Ranunculus_bulbosus 0 001 @ 11720353 n 0000 | perennial Old World buttercup with golden to sulphur yellow flowers in late spring to early summer; naturalized in North America -11721337 20 n 03 lesser_celandine 0 pilewort 0 Ranunculus_ficaria 0 002 @ 11669921 n 0000 #m 11720088 n 0000 | perennial herb native to Europe but naturalized elsewhere having heart-shaped leaves and yellow flowers resembling buttercups; its tuberous roots have been used as a poultice to relieve piles -11721642 20 n 02 lesser_spearwort 0 Ranunculus_flammula 0 002 @ 13122364 n 0000 #m 11720088 n 0000 | semiaquatic Eurasian perennial crowfoot with leaves shaped like spears; naturalized in New Zealand -11721844 20 n 02 sagebrush_buttercup 0 Ranunculus_glaberrimus 0 002 @ 11672400 n 0000 #m 11720088 n 0000 | small early-flowering buttercup with shiny yellow flowers of western North America -11722036 20 n 02 greater_spearwort 0 Ranunculus_lingua 0 002 @ 13122364 n 0000 #m 11720088 n 0000 | semiaquatic European crowfoot with leaves shaped like spears -11722199 20 n 03 mountain_lily 2 Mount_Cook_lily 0 Ranunculus_lyalii 0 001 @ 11720353 n 0000 | showy white-flowered perennial of New Zealand -11722342 20 n 02 western_buttercup 0 Ranunculus_occidentalis 0 001 @ 11720353 n 0000 | perennial of western North America -11722466 20 n 03 creeping_buttercup 0 creeping_crowfoot 0 Ranunculus_repens 0 001 @ 11720353 n 0000 | perennial European herb with long creeping stolons -11722621 20 n 03 cursed_crowfoot 0 celery-leaved_buttercup 0 Ranunculus_sceleratus 0 001 @ 11720353 n 0000 | annual herb growing in marshy places -11722769 20 n 02 Aconitum 0 genus_Aconitum 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11722982 n 0000 | genus of poisonous plants of temperate regions of northern hemisphere with a vaulted and enlarged petal -11722982 20 n 01 aconite 0 004 @ 13100156 n 0000 #m 11722769 n 0000 ~ 11723227 n 0000 ~ 11723452 n 0000 | any of various usually poisonous plants of the genus Aconitum having tuberous roots and palmately lobed leaves and blue or white flowers -11723227 20 n 04 monkshood 0 helmetflower 1 helmet_flower 1 Aconitum_napellus 0 001 @ 11722982 n 0000 | a poisonous herb native to northern Europe having hooded blue-purple flowers; the dried leaves and roots yield aconite -11723452 20 n 04 wolfsbane 0 wolfbane 0 wolf's_bane 0 Aconitum_lycoctonum 0 001 @ 11722982 n 0000 | poisonous Eurasian perennial herb with broad rounded leaves and yellow flowers and fibrous rootstock -11723655 20 n 02 Actaea 0 genus_Actaea 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11723770 n 0000 | baneberry -11723770 20 n 03 baneberry 1 cohosh 0 herb_Christopher 0 005 @ 13100156 n 0000 #m 11723655 n 0000 %p 11723986 n 0000 ~ 11724109 n 0000 ~ 11724363 n 0000 | a plant of the genus Actaea having acrid poisonous berries -11723986 20 n 01 baneberry 2 002 @ 13137409 n 0000 #p 11723770 n 0000 | a poisonous berry of a plant of the genus Actaea -11724109 20 n 05 red_baneberry 0 redberry 2 red-berry 2 snakeberry 0 Actaea_rubra 0 001 @ 11723770 n 0000 | North American perennial herb with alternately compound leaves and racemes of small white flowers followed by bright red oval poisonous berries -11724363 20 n 05 white_baneberry 0 white_cohosh 0 white_bead 0 doll's_eyes 0 Actaea_alba 0 001 @ 11723770 n 0000 | North American herb with white poisonous berries -11724529 20 n 02 Adonis 0 genus_Adonis 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11724660 n 0000 | annual or perennial herbs -11724660 20 n 02 pheasant's-eye 0 Adonis_annua 0 002 @ 11669921 n 0000 #m 11724529 n 0000 | Eurasian herb cultivated for its deep red flowers with dark centers -11724822 20 n 01 genus_Anemone 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11725015 n 0000 | perennial herbs with tuberous roots and beautiful flowers; of north and south temperate regions -11725015 20 n 02 anemone 0 windflower 0 008 @ 11669921 n 0000 #m 11724822 n 0000 ~ 11725311 n 0000 ~ 11725480 n 0000 ~ 11725623 n 0000 ~ 11725821 n 0000 ~ 11725973 n 0000 ~ 11726269 n 0000 | any woodland plant of the genus Anemone grown for its beautiful flowers and whorls of dissected leaves -11725311 20 n 03 Alpine_anemone 0 mountain_anemone 0 Anemone_tetonensis 0 001 @ 11725015 n 0000 | silky-foliaged herb of the Rocky Mountains with bluish-white flowers -11725480 20 n 02 Canada_anemone 0 Anemone_Canadensis 0 001 @ 11725015 n 0000 | common summer-flowering woodland herb of Labrador to Colorado -11725623 20 n 02 thimbleweed 0 Anemone_cylindrica 0 003 @ 11725015 n 0000 ~ 11726145 n 0000 ~ 11726433 n 0000 | a common North American anemone with cylindrical fruit clusters resembling thimbles -11725821 20 n 02 wood_anemone 1 Anemone_nemorosa 0 001 @ 11725015 n 0000 | European anemone with solitary white flowers common in deciduous woodlands -11725973 20 n 03 wood_anemone 2 snowdrop 2 Anemone_quinquefolia 0 001 @ 11725015 n 0000 | common anemone of eastern North America with solitary pink-tinged white flowers -11726145 20 n 02 longheaded_thimbleweed 0 Anemone_riparia 0 001 @ 11725623 n 0000 | thimbleweed of northern North America -11726269 20 n 03 snowdrop_anemone 0 snowdrop_windflower 0 Anemone_sylvestris 0 001 @ 11725015 n 0000 | Eurasian herb with solitary nodding fragrant white flowers -11726433 20 n 02 Virginia_thimbleweed 0 Anemone_virginiana 0 001 @ 11725623 n 0000 | thimbleweed of central and eastern North America -11726569 20 n 02 Anemonella 0 genus_Anemonella 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11726707 n 0000 | one species: rue anemone -11726707 20 n 02 rue_anemone 0 Anemonella_thalictroides 0 002 @ 11669921 n 0000 #m 11726569 n 0000 | woodland flower native to eastern North America having cup-shaped flowers reminiscent of anemone but more delicate -11726925 20 n 01 genus_Aquilegia 0 006 @ 11571907 n 0000 #m 11719468 n 0000 %m 11727091 n 0000 %m 11727358 n 0000 %m 11727540 n 0000 %m 11727738 n 0000 | columbine -11727091 20 n 03 columbine 0 aquilegia 0 aquilege 0 005 @ 11669921 n 0000 #m 11726925 n 0000 ~ 11727358 n 0000 ~ 11727540 n 0000 ~ 11727738 n 0000 | a plant of the genus Aquilegia having irregular showy spurred flowers; north temperate regions especially mountains -11727358 20 n 03 meeting_house 0 honeysuckle 2 Aquilegia_canadensis 0 002 @ 11727091 n 0000 #m 11726925 n 0000 | columbine of eastern North America having long-spurred red flowers -11727540 20 n 03 blue_columbine 0 Aquilegia_caerulea 0 Aquilegia_scopulorum_calcarea 0 002 @ 11727091 n 0000 #m 11726925 n 0000 | columbine of the Rocky Mountains having long-spurred blue flowers -11727738 20 n 02 granny's_bonnets 0 Aquilegia_vulgaris 0 002 @ 11727091 n 0000 #m 11726925 n 0000 | common European columbine having variously colored (white or blue to purple or red) short-spurred flowers; naturalized in United States -11727976 20 n 02 Caltha 0 genus_Caltha 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11728099 n 0000 | a genus of Caltha -11728099 20 n 07 marsh_marigold 0 kingcup 2 meadow_bright 0 May_blob 0 cowslip 1 water_dragon 1 Caltha_palustris 0 002 @ 13122364 n 0000 #m 11727976 n 0000 | swamp plant of Europe and North America having bright yellow flowers resembling buttercups -11728350 20 n 02 Cimicifuga 0 genus_Cimicifuga 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11728530 n 0000 | small genus of perennial herbs of north temperate regions: bugbane -11728530 20 n 01 bugbane 0 005 @ 13103136 n 0000 #m 11728350 n 0000 ~ 11728769 n 0000 ~ 11728945 n 0000 ~ 11729142 n 0000 | a plant of the genus Cimicifuga having flowers in long racemes or panicles reported to be distasteful to insects -11728769 20 n 03 American_bugbane 0 summer_cohosh 0 Cimicifuga_americana 0 001 @ 11728530 n 0000 | bugbane of the eastern United States having erect racemes of white flowers -11728945 20 n 04 black_cohosh 0 black_snakeroot 1 rattle-top 0 Cimicifuga_racemosa 0 001 @ 11728530 n 0000 | North American bugbane found from Maine and Ontario to Wisconsin and south to Georgia -11729142 20 n 03 fetid_bugbane 0 foetid_bugbane 0 Cimicifuga_foetida 0 001 @ 11728530 n 0000 | bugbane of Siberia and eastern Asia having ill-smelling green-white flowers -11729315 20 n 01 genus_Clematis 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11729478 n 0000 | large genus of deciduous or evergreen woody vines or erect herbs -11729478 20 n 01 clematis 0 014 @ 13100677 n 0000 @ 13102409 n 0000 #m 11729315 n 0000 ~ 11729860 n 0000 ~ 11730015 n 0000 ~ 11730205 n 0000 ~ 11730312 n 0000 ~ 11730458 n 0000 ~ 11730602 n 0000 ~ 11730750 n 0000 ~ 11730933 n 0000 ~ 11731157 n 0000 ~ 11731411 n 0000 ~ 11731659 n 0000 | any of various ornamental climbing plants of the genus Clematis usually having showy flowers -11729860 20 n 03 pine_hyacinth 0 Clematis_baldwinii 0 Viorna_baldwinii 0 001 @ 11729478 n 0000 | erect clematis of Florida having pink to purple flowers -11730015 20 n 05 blue_jasmine 0 blue_jessamine 0 curly_clematis 0 marsh_clematis 0 Clematis_crispa 0 001 @ 11729478 n 0000 | climber of southern United States having bluish-purple flowers -11730205 20 n 02 pipestem_clematis 0 Clematis_lasiantha 0 001 @ 11729478 n 0000 | clematis of California -11730312 20 n 02 curly-heads 0 Clematis_ochreleuca 0 001 @ 11729478 n 0000 | shrubby clematis of the eastern United States having curly foliage -11730458 20 n 02 golden_clematis 0 Clematis_tangutica 0 001 @ 11729478 n 0000 | Chinese clematis with serrate leaves and large yellow flowers -11730602 20 n 02 scarlet_clematis 0 Clematis_texensis 0 001 @ 11729478 n 0000 | woody vine of Texas having showy solitary nodding scarlet flowers -11730750 20 n 02 leather_flower 1 Clematis_versicolor 0 001 @ 11729478 n 0000 | woody vine of the southern United States having purple or blue flowers with leathery recurved sepals -11730933 20 n 04 leather_flower 2 vase-fine 0 vase_vine 0 Clematis_viorna 0 001 @ 11729478 n 0000 | scandent subshrub of southeastern United States having large red-purple bell-shaped flowers with leathery recurved sepals -11731157 20 n 04 virgin's_bower 0 old_man's_beard 1 devil's_darning_needle 0 Clematis_virginiana 0 001 @ 11729478 n 0000 | common climber of eastern North America that sprawls over other plants and bears numerous panicles of small creamy white flowers -11731411 20 n 04 traveler's_joy 0 traveller's_joy 0 old_man's_beard 2 Clematis_vitalba 0 001 @ 11729478 n 0000 | vigorous deciduous climber of Europe to Afghanistan and Lebanon having panicles of fragrant green-white flowers in summer and autumn -11731659 20 n 04 purple_clematis 0 purple_virgin's_bower 0 mountain_clematis 0 Clematis_verticillaris 0 001 @ 11729478 n 0000 | climber of northeastern North America having waxy purplish-blue flowers -11731861 20 n 02 Coptis 0 genus_Coptis 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11732052 n 0000 | small genus of low perennial herbs having yellow rhizomes and white or yellow flowers -11732052 20 n 04 goldthread 0 golden_thread 0 Coptis_groenlandica 0 Coptis_trifolia_groenlandica 0 002 @ 12205694 n 0000 #m 11731861 n 0000 | low-growing perennial of North America woodlands having trifoliate leaves and yellow rootstock and white flowers -11732309 20 n 02 Consolida 0 genus_Consolida 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11732567 n 0000 | plants having flowers resembling the larkspur's but differing from larkspur's in the arrangement of petals; sometimes included in genus Delphinium -11732567 20 n 03 rocket_larkspur 0 Consolida_ambigua 0 Delphinium_ajacis 0 002 @ 11669921 n 0000 #m 11732309 n 0000 | commonly cultivated larkspur of southern Europe having unbranched spikelike racemes of blue or sometimes purplish or pinkish flowers; sometime placed in genus Delphinium -11732857 20 n 01 genus_Delphinium 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11733054 n 0000 | large genus of chiefly perennial erect branching herbs of north temperate regions some poisonous -11733054 20 n 01 delphinium 0 003 @ 11669921 n 0000 #m 11732857 n 0000 ~ 11733312 n 0000 | any plant of the genus Delphinium having palmately divided leaves and showy spikes of variously colored spurred flowers; some contain extremely poisonous substances -11733312 20 n 01 larkspur 0 001 @ 11733054 n 0000 | any of numerous cultivated plants of the genus Delphinium -11733424 20 n 02 Eranthis 0 genus_Eranthis 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11733548 n 0000 | winter aconite -11733548 20 n 02 winter_aconite 0 Eranthis_hyemalis 0 002 @ 12205694 n 0000 #m 11733424 n 0000 | small Old World perennial herb grown for its bright yellow flowers which appear in early spring often before snow is gone -11733769 20 n 02 Helleborus 0 genus_Helleborus 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11733904 n 0000 | a genus of Helleborus -11733904 20 n 01 hellebore 1 006 @ 13100156 n 0000 #m 11733769 n 0000 ~ 11734093 n 0000 ~ 11734300 n 0000 ~ 11734493 n 0000 ~ 11734698 n 0000 | any plant of the Eurasian genus Helleborus -11734093 20 n 04 stinking_hellebore 0 bear's_foot 0 setterwort 0 Helleborus_foetidus 0 001 @ 11733904 n 0000 | digitate-leaved hellebore with an offensive odor and irritant qualities when taken internally -11734300 20 n 04 Christmas_rose 0 winter_rose 0 black_hellebore 1 Helleborus_niger 0 001 @ 11733904 n 0000 | European evergreen plant with white or purplish rose-like winter-blooming flowers -11734493 20 n 03 lenten_rose 0 black_hellebore 2 Helleborus_orientalis 0 001 @ 11733904 n 0000 | slightly hairy perennial having deep green leathery leaves and flowers that are ultimately purplish-green -11734698 20 n 02 green_hellebore 0 Helleborus_viridis 0 001 @ 11733904 n 0000 | deciduous plant with large deep green pedate leaves and nodding saucer-shaped green flowers -11734872 20 n 01 genus_Hepatica 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11735053 n 0000 | small genus of perennial herbs of north temperate regions; allied to genus Anemone -11735053 20 n 02 hepatica 0 liverleaf 0 002 @ 12205694 n 0000 #m 11734872 n 0000 | any of several plants of the genus Hepatica having three-lobed leaves and white or pinkish flowers in early spring; of moist and mossy subalpine woodland areas of north temperate regions -11735325 20 n 02 Hydrastis 0 genus_Hydrastis 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11735570 n 0000 | small genus of perennial herbs having rhizomes and palmate leaves and small solitary flowers; of northeastern United States and Japan -11735570 20 n 05 goldenseal 0 golden_seal 0 yellow_root 0 turmeric_root 0 Hydrastis_Canadensis 0 002 @ 12205694 n 0000 #m 11735325 n 0000 | perennial herb of northeastern United States having a thick knotted yellow rootstock and large rounded leaves -11735822 20 n 02 Isopyrum 0 genus_Isopyrum 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11735977 n 0000 | tufted perennial herbs of northern hemisphere -11735977 20 n 03 false_rue_anemone 0 false_rue 0 Isopyrum_biternatum 0 002 @ 12205694 n 0000 #m 11735822 n 0000 | slender erect perennial of eastern North America having tuberous roots and pink-tinged white flowers; resembles meadow rue -11736216 20 n 02 Laccopetalum 0 genus_Laccopetalum 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11736362 n 0000 | one species: giant buttercup -11736362 20 n 02 giant_buttercup 0 Laccopetalum_giganteum 0 002 @ 12205694 n 0000 #m 11736216 n 0000 | spectacular perennial native of wet montane grasslands of Peru; formerly included in genus Ranunculus -11736569 20 n 01 genus_Nigella 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11736694 n 0000 | erect annual Eurasian herbs -11736694 20 n 01 nigella 0 005 @ 11669921 n 0000 #m 11736569 n 0000 ~ 11736851 n 0000 ~ 11737009 n 0000 ~ 11737125 n 0000 | any plant of the genus Nigella -11736851 20 n 02 love-in-a-mist 3 Nigella_damascena 0 001 @ 11736694 n 0000 | European garden plant having finely cut leaves and white or pale blue flowers -11737009 20 n 02 fennel_flower 0 Nigella_hispanica 0 001 @ 11736694 n 0000 | nigella of Spain and southern France -11737125 20 n 04 black_caraway 0 nutmeg_flower 0 Roman_coriander 0 Nigella_sativa 0 001 @ 11736694 n 0000 | herb of the Mediterranean region having pungent seeds used like those of caraway -11737316 20 n 02 Pulsatilla 0 genus_Pulsatilla 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11737534 n 0000 | includes a group of plants that in some classifications are included in the genus Anemone: pasqueflowers -11737534 20 n 02 pasqueflower 0 pasque_flower 0 005 @ 11672400 n 0000 #m 11737316 n 0000 ~ 11737752 n 0000 ~ 11738063 n 0000 ~ 11738203 n 0000 | any plant of the genus Pulsatilla; sometimes included in genus Anemone -11737752 20 n 09 American_pasqueflower 0 Eastern_pasque_flower 0 wild_crocus 0 lion's_beard 0 prairie_anemone 0 blue_tulip 0 American_pulsatilla 0 Pulsatilla_patens 0 Anemone_ludoviciana 0 001 @ 11737534 n 0000 | short hairy perennial with early spring blue-violet or lilac flowers; North America and Siberia -11738063 20 n 03 Western_pasqueflower 0 Pulsatilla_occidentalis 0 Anemone_occidentalis 0 001 @ 11737534 n 0000 | of western North America -11738203 20 n 03 European_pasqueflower 0 Pulsatilla_vulgaris 0 Anemone_pulsatilla 0 001 @ 11737534 n 0000 | European perennial having usually violet or white spring flowers -11738378 20 n 02 Thalictrum 0 genus_Thalictrum 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11738547 n 0000 | widely distributed genus of perennial herbs: meadow rue -11738547 20 n 01 meadow_rue 0 002 @ 11672400 n 0000 #m 11738378 n 0000 | any of various herbs of the genus Thalictrum; sometimes rhizomatous or tuberous perennials found in damp shady places and meadows or stream banks; have lacy foliage and clouds of small purple or yellow flowers -11738832 20 n 02 Trautvetteria 0 genus_Trautvetteria 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11738997 n 0000 | small genus of perennial herbs: false bugbane -11738997 20 n 02 false_bugbane 0 Trautvetteria_carolinensis 0 002 @ 12205694 n 0000 #m 11738832 n 0000 | tall perennial of the eastern United States having large basal leaves and white summer flowers -11739199 20 n 02 Trollius 0 genus_Trollius 0 003 @ 11571907 n 0000 #m 11719468 n 0000 %m 11739365 n 0000 | perennial herbs of north temperate regions: globeflowers -11739365 20 n 02 globeflower 0 globe_flower 0 002 @ 12205694 n 0000 #m 11739199 n 0000 | any of several plants of the genus Trollius having globose yellow flowers -11739530 20 n 03 Winteraceae 0 family_Winteraceae 0 winter's_bark_family 0 004 @ 11564258 n 0000 #m 11692952 n 0000 %m 11739809 n 0000 %m 11740208 n 0000 | small family of chiefly tropical shrubs and trees of genera Drimys and Pseudowintera; sometimes included in Magnoliaceae -11739809 20 n 02 Drimys 0 genus_Drimys 0 003 @ 11571907 n 0000 #m 11739530 n 0000 %m 11739978 n 0000 | shrubs and trees of southern hemisphere having aromatic foliage -11739978 20 n 03 winter's_bark 1 winter's_bark_tree 0 Drimys_winteri 0 003 @ 13104059 n 0000 #m 11739809 n 0000 %p 13162815 n 0000 | South American evergreen tree yielding winter's bark and a light soft wood similar to basswood -11740208 20 n 04 Pseudowintera 0 genus_Pseudowintera 0 Wintera 0 genus_Wintera 0 003 @ 11571907 n 0000 #m 11739530 n 0000 %m 11740414 n 0000 | evergreen shrubs or small trees of Australia and New Zealand -11740414 20 n 03 pepper_shrub 0 Pseudowintera_colorata 0 Wintera_colorata 0 002 @ 13112664 n 0000 #m 11740208 n 0000 | evergreen shrub or small tree whose foliage is conspicuously blotched with red and yellow and having small black fruits -11740655 20 n 02 Myricales 0 order_Myricales 0 004 @ 11534677 n 0000 #m 11665781 n 0000 %m 11740824 n 0000 %m 11742531 n 0000 | coextensive with the family Myricaceae -11740824 20 n 03 Myricaceae 0 family_Myricaceae 0 wax-myrtle_family 0 004 @ 11562747 n 0000 #m 11740655 n 0000 %m 11741010 n 0000 %m 11742175 n 0000 | constituting the order Myricales -11741010 20 n 02 Myrica 0 genus_Myrica 0 004 @ 11567411 n 0000 #m 11740824 n 0000 %m 11741175 n 0000 %m 11741350 n 0000 | deciduous aromatic shrubs or small trees -11741175 20 n 03 sweet_gale 0 Scotch_gale 0 Myrica_gale 0 002 @ 13112664 n 0000 #m 11741010 n 0000 | bog shrub of north temperate zone having bitter-tasting fragrant leaves -11741350 20 n 01 wax_myrtle 0 005 @ 13112664 n 0000 #m 11741010 n 0000 ~ 11741575 n 0000 ~ 11741797 n 0000 %s 11742003 n 0000 | any shrub or small tree of the genus Myrica with aromatic foliage and small wax-coated berries -11741575 20 n 03 bay_myrtle 0 puckerbush 0 Myrica_cerifera 0 001 @ 11741350 n 0000 | evergreen aromatic shrubby tree of southeastern United States having small hard berries thickly coated with white wax used for candles -11741797 20 n 05 bayberry 2 candleberry 0 swamp_candleberry 0 waxberry 1 Myrica_pensylvanica 0 001 @ 11741350 n 0000 | deciduous aromatic shrub of eastern North America with grey-green wax-coated berries -11742003 20 n 02 bayberry_wax 0 bayberry_tallow 0 002 @ 15094294 n 0000 #s 11741350 n 0000 | a fragrant green wax obtained from the wax myrtle and used in making candles -11742175 20 n 02 Comptonia 0 genus_Comptonia 0 003 @ 11567411 n 0000 #m 11740824 n 0000 %m 11742310 n 0000 | one species: sweet fern -11742310 20 n 03 sweet_fern 0 Comptonia_peregrina 0 Comptonia_asplenifolia 0 002 @ 13112664 n 0000 #m 11742175 n 0000 | deciduous shrub of eastern North America with sweet scented fernlike leaves and tiny white flowers -11742531 20 n 03 Leitneriaceae 0 family_Leitneriaceae 0 corkwood_family 0 003 @ 11562747 n 0000 #m 11740655 n 0000 %m 11742745 n 0000 | coextensive with the genus Leitneria; commonly isolated in a distinct order -11742745 20 n 02 Leitneria 0 genus_Leitneria 0 003 @ 11567411 n 0000 #m 11742531 n 0000 %m 11742878 n 0000 | one species: corkwood -11742878 20 n 03 corkwood 0 corkwood_tree 0 Leitneria_floridana 0 002 @ 13112664 n 0000 #m 11742745 n 0000 | very small deciduous dioecious tree or shrub of damp habitats in southeastern United States having extremely light wood -11743109 20 n 03 Juncaceae 0 family_Juncaceae 0 rush_family 0 004 @ 11555413 n 0000 #m 12410715 n 0000 %m 11743294 n 0000 %m 11743570 n 0000 | tufted herbs resembling grasses: rushes -11743294 20 n 01 rush 0 009 @ 13122364 n 0000 #m 11743109 n 0000 + 02574188 a 0101 ~ 11743772 n 0000 ~ 11744011 n 0000 ~ 11744108 n 0000 ~ 11744251 n 0000 ~ 11744355 n 0000 ~ 11744471 n 0000 | grasslike plants growing in wet places and having cylindrical often hollow stems -11743570 20 n 02 Juncus 0 genus_Juncus 0 003 @ 11556857 n 0000 #m 11743109 n 0000 %m 11743772 n 0000 | type genus of the Juncaceae; perennial tufted glabrous marsh plants of temperate regions: rushes -11743772 20 n 05 bulrush 1 bullrush 1 common_rush 0 soft_rush 0 Juncus_effusus 0 002 @ 11743294 n 0000 #m 11743570 n 0000 | tall rush with soft erect or arching stems found in Eurasia, Australia, New Zealand, and common in North America -11744011 20 n 02 jointed_rush 0 Juncus_articulatus 0 001 @ 11743294 n 0000 | rush of Australia -11744108 20 n 02 toad_rush 0 Juncus_bufonius 0 001 @ 11743294 n 0000 | low-growing annual rush of damp low-lying ground; nearly cosmopolitan -11744251 20 n 02 hard_rush 0 Juncus_inflexus 0 001 @ 11743294 n 0000 | tall rush of temperate regions -11744355 20 n 02 salt_rush 0 Juncus_leseurii 0 001 @ 11743294 n 0000 | rush of the Pacific coast of North America -11744471 20 n 02 slender_rush 0 Juncus_tenuis 0 001 @ 11743294 n 0000 | tufted wiry rush of wide distribution -11744583 20 n 01 plant_family 0 012 @ 08107499 n 0000 #m 11529603 n 0000 ~ 11553763 n 0000 ~ 12036533 n 0000 ~ 12087650 n 0000 ~ 12689641 n 0000 ~ 12785110 n 0000 ~ 12804621 n 0000 ~ 12815925 n 0000 ~ 12871992 n 0000 ~ 12873646 n 0000 ~ 12874429 n 0000 | a family of plants -11744859 20 n 01 plant_genus 0 050 @ 08108972 n 0000 #m 11529603 n 0000 ~ 11641275 n 0000 ~ 12036781 n 0000 ~ 12087807 n 0000 ~ 12089625 n 0000 ~ 12106540 n 0000 ~ 12108742 n 0000 ~ 12109719 n 0000 ~ 12314652 n 0000 ~ 12315424 n 0000 ~ 12315818 n 0000 ~ 12316300 n 0000 ~ 12317164 n 0000 ~ 12317611 n 0000 ~ 12325093 n 0000 ~ 12329020 n 0000 ~ 12356668 n 0000 ~ 12357802 n 0000 ~ 12469372 n 0000 ~ 12486397 n 0000 ~ 12486732 n 0000 ~ 12584559 n 0000 ~ 12591195 n 0000 ~ 12594165 n 0000 ~ 12685679 n 0000 ~ 12689808 n 0000 ~ 12785312 n 0000 ~ 12785499 n 0000 ~ 12786684 n 0000 ~ 12804866 n 0000 ~ 12810318 n 0000 ~ 12811294 n 0000 ~ 12816359 n 0000 ~ 12816753 n 0000 ~ 12817335 n 0000 ~ 12818742 n 0000 ~ 12819560 n 0000 ~ 12819953 n 0000 ~ 12820434 n 0000 ~ 12821257 n 0000 ~ 12821736 n 0000 ~ 12822284 n 0000 ~ 12822650 n 0000 ~ 12872257 n 0000 ~ 12872698 n 0000 ~ 12873182 n 0000 ~ 12873834 n 0000 ~ 12874642 n 0000 ~ 12874996 n 0000 | a genus of plants -11745817 20 n 02 zebrawood 0 zebrawood_tree 0 007 @ 13104059 n 0000 %s 11746060 n 0000 ~ 11746600 n 0000 ~ 11749603 n 0000 ~ 12331788 n 0000 ~ 12759668 n 0000 ~ 12771085 n 0000 | any of various trees or shrubs having mottled or striped wood -11746060 20 n 01 zebrawood 2 002 @ 15098161 n 0000 #s 11745817 n 0000 | handsomely striped or mottled wood of the zebrawood tree; used especially for cabinetwork -11746224 20 n 03 Connaraceae 0 family_Connaraceae 0 zebrawood_family 0 002 @ 11566682 n 0000 #m 12618942 n 0000 | mostly tropical climbing shrubs or small trees; closely related to Leguminosae -11746419 20 n 02 Connarus 0 genus_Connarus 0 003 @ 11585340 n 0000 #m 12618942 n 0000 %m 11746600 n 0000 | large genus of tropical trees and shrubs; type genus of the Connaraceae -11746600 20 n 01 Connarus_guianensis 0 002 @ 11745817 n 0000 #m 11746419 n 0000 | tropical American and east African tree with strikingly marked hardwood used in cabinetwork -11746776 20 n 06 Leguminosae 0 family_Leguminosae 0 Fabaceae 0 family_Fabaceae 0 legume_family 0 pea_family 0 022 @ 11566682 n 0000 #m 12618942 n 0000 %m 11747468 n 0000 %m 11748330 n 0000 %m 11748936 n 0000 %m 11749462 n 0000 %m 11749742 n 0000 %m 11750359 n 0000 %m 11750855 n 0000 %m 11751598 n 0000 %m 11752404 n 0000 %m 11753936 n 0000 %m 11754188 n 0000 %m 12486732 n 0000 %m 12487394 n 0000 %m 12487647 n 0000 %m 12495146 n 0000 %m 12501035 n 0000 %m 12501537 n 0000 %m 12501745 n 0000 %m 12539306 n 0000 %m 12556307 n 0000 | a large family of trees, shrubs, vines, and herbs bearing bean pods; divided for convenience into the subfamilies Caesalpiniaceae; Mimosaceae; Papilionaceae -11747468 20 n 02 legume 0 leguminous_plant 0 023 @ 12205694 n 0000 @ 13102409 n 0000 #m 11746776 n 0000 + 02755190 a 0101 %p 11748002 n 0000 ~ 11748501 n 0000 ~ 12515711 n 0000 ~ 12520406 n 0000 ~ 12532168 n 0000 ~ 12539306 n 0000 ~ 12544240 n 0000 ~ 12547872 n 0000 ~ 12554526 n 0000 ~ 12556307 n 0000 ~ 12560016 n 0000 ~ 12569426 n 0000 ~ 12575322 n 0000 ~ 12577362 n 0000 ~ 12577686 n 0000 ~ 12577895 n 0000 ~ 12578255 n 0000 ~ 12578626 n 0000 ~ 12579038 n 0000 | an erect or climbing bean or pea plant of the family Leguminosae -11748002 20 n 01 legume 2 007 @ 13139055 n 0000 #p 11747468 n 0000 ~ 12515925 n 0000 ~ 12544539 n 0000 ~ 12560282 n 0000 ~ 12561594 n 0000 ~ 12578916 n 0000 | the fruit or seed of any of various bean or pea plants consisting of a case that splits along both sides when ripe and having the seeds attach to one side of the case -11748330 20 n 02 Arachis 0 genus_Arachis 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11748501 n 0000 | a genus of plants with pods that ripen underground (see peanut) -11748501 20 n 03 peanut 0 peanut_vine 0 Arachis_hypogaea 0 004 @ 11747468 n 0000 #m 11748330 n 0000 %p 07737745 n 0000 %p 11748811 n 0000 | widely cultivated American plant cultivated in tropical and warm regions; showy yellow flowers on stalks that bend over to the soil so that seed pods ripen underground -11748811 20 n 01 peanut 2 003 @ 13139055 n 0000 #p 11748501 n 0000 %s 07674749 n 0000 | underground pod of the peanut vine -11748936 20 n 02 Brya 0 genus_Brya 0 002 @ 11585340 n 0000 #m 11746776 n 0000 | genus of prickly shrubs and small trees of the Caribbean region; source of a durable hardwood -11749112 20 n 03 granadilla_tree 0 granadillo 1 Brya_ebenus 0 002 @ 13104059 n 0000 %s 11749273 n 0000 | West Indian tree yielding a fine grade of green ebony -11749273 20 n 03 cocuswood 0 cocoswood 0 granadilla_wood 1 002 @ 15098161 n 0000 #s 11749112 n 0000 | wood of the granadilla tree used for making musical instruments especially clarinets -11749462 20 n 02 Centrolobium 0 genus_Centrolobium 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11749603 n 0000 | a genus of Centrolobium -11749603 20 n 02 arariba 0 Centrolobium_robustum 0 002 @ 11745817 n 0000 #m 11749462 n 0000 | Brazilian tree with handsomely marked wood -11749742 20 n 04 Coumarouna 0 genus_Coumarouna 0 Dipteryx 0 genus_Dipteryx 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11749920 n 0000 | tropical American trees: tonka beans -11749920 20 n 04 tonka_bean 1 tonka_bean_tree 0 Coumarouna_odorata 0 Dipteryx_odorata 0 002 @ 13108131 n 0000 #m 11749742 n 0000 | tall tropical South American tree having pulpy egg-shaped pods of fragrant black almond-shaped seeds used for flavoring -11750173 20 n 02 tonka_bean 2 coumara_nut 0 001 @ 13136316 n 0000 | fragrant black nutlike seeds of the tonka bean tree; used in perfumes and medicines and as a substitute for vanilla -11750359 20 n 02 Hymenaea 0 genus_Hymenaea 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11750508 n 0000 | genus of tropical American timber trees -11750508 20 n 02 courbaril 0 Hymenaea_courbaril 0 003 @ 12495146 n 0000 #m 11750359 n 0000 %s 11750745 n 0000 | West Indian locust tree having pinnate leaves and panicles of large white or purplish flowers; yields very hard tough wood -11750745 20 n 01 courbaril_copal 0 002 @ 14895189 n 0000 #s 11750508 n 0000 | resin from the courbaril tree -11750855 20 n 01 genus_Melilotus 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11750989 n 0000 | Old World herbs: the sweet clovers -11750989 20 n 03 melilotus 0 melilot 0 sweet_clover 0 004 @ 13103136 n 0000 #m 11750855 n 0000 ~ 11751213 n 0000 ~ 11751347 n 0000 | erect annual or biennial plant grown extensively especially for hay and soil improvement -11751213 20 n 03 white_sweet_clover 0 white_melilot 0 Melilotus_alba 0 001 @ 11750989 n 0000 | biennial plant; valuable honey plant -11751347 20 n 02 yellow_sweet_clover 0 Melilotus_officinalis 0 001 @ 11750989 n 0000 | biennial yellow-flowered Eurasian plant having aromatic leaves used as carminative or flavoring agent; widely cultivated especially as green manure or cover crop -11751598 20 n 02 Swainsona 0 genus_Swainsona 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11751765 n 0000 | a genus of Australian herbs and subshrubs: darling peas -11751765 20 n 02 darling_pea 0 poison_bush 1 004 @ 13118707 n 0000 #m 11751598 n 0000 ~ 11751974 n 0000 ~ 11752168 n 0000 | either of two Australian plants of the genus Swainsona that are poisonous to sheep -11751974 20 n 02 smooth_darling_pea 0 Swainsona_galegifolia 0 001 @ 11751765 n 0000 | erect or trailing perennial of eastern Australia having axillary racemes of blue to purple or red flowers -11752168 20 n 03 hairy_darling_pea 0 Swainsona_greyana 0 Swainsona_grandiflora 0 001 @ 11751765 n 0000 | shrubby perennial of southern Australia having downy or woolly stems and undersides of leaves and racemes of red to pink flowers -11752404 20 n 02 Trifolium 0 genus_Trifolium 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 11752578 n 0000 | any leguminous plant having leaves divided into three leaflets -11752578 20 n 02 clover 0 trefoil 1 008 @ 12205694 n 0000 #m 11752404 n 0000 ~ 11752798 n 0000 ~ 11752937 n 0000 ~ 11753143 n 0000 ~ 11753355 n 0000 ~ 11753562 n 0000 ~ 11753700 n 0000 | a plant of the genus Trifolium -11752798 20 n 02 alpine_clover 0 Trifolium_alpinum 0 001 @ 11752578 n 0000 | European mountain clover with fragrant usually pink flowers -11752937 20 n 04 hop_clover 1 shamrock 1 lesser_yellow_trefoil 0 Trifolium_dubium 0 001 @ 11752578 n 0000 | clover native to Ireland with yellowish flowers; often considered the true or original shamrock -11753143 20 n 03 crimson_clover 0 Italian_clover 0 Trifolium_incarnatum 0 001 @ 11752578 n 0000 | southern European annual with spiky heads of crimson flower; extensively cultivated in United States for forage -11753355 20 n 03 red_clover 0 purple_clover 0 Trifolium_pratense 0 001 @ 11752578 n 0000 | erect to decumbent short-lived perennial having red-purple to pink flowers; the most commonly grown forage clover -11753562 20 n 03 buffalo_clover 0 Trifolium_reflexum 0 Trifolium_stoloniferum 0 001 @ 11752578 n 0000 | clover of western United States -11753700 20 n 04 white_clover 0 dutch_clover 0 shamrock 2 Trifolium_repens 0 001 @ 11752578 n 0000 | creeping European clover having white to pink flowers and bright green leaves; naturalized in United States; widely grown for forage -11753936 20 n 02 Mimosaceae 0 family_Mimosaceae 0 002 @ 11566682 n 0000 #m 11746776 n 0000 | family of spiny woody plants (usually shrubs or small trees) whose leaves mimic animals in sensitivity to touch; commonly included in the family Leguminosae -11754188 20 n 02 Mimosoideae 0 subfamily_Mimosoideae 0 016 @ 11566682 n 0000 #m 11746776 n 0000 %m 11754633 n 0000 %m 11755694 n 0000 %m 11758628 n 0000 %m 11759049 n 0000 %m 11760128 n 0000 %m 11760560 n 0000 %m 11761007 n 0000 %m 11761484 n 0000 %m 11762237 n 0000 %m 11762706 n 0000 %m 11763473 n 0000 %m 11764072 n 0000 %m 11764231 n 0000 %m 11765099 n 0000 | alternative name used in some classification systems for the family Mimosaceae -11754633 20 n 01 genus_Mimosa 0 005 @ 11585340 n 0000 #m 11754188 n 0000 %m 11754893 n 0000 %m 11755110 n 0000 %m 11755319 n 0000 | genus of spiny woody shrubs or trees; named for their apparent imitation of animal sensitivity to light and heat and movement -11754893 20 n 01 mimosa 1 004 @ 13112664 n 0000 #m 11754633 n 0000 ~ 11755110 n 0000 ~ 11755319 n 0000 | any of various tropical shrubs or trees of the genus Mimosa having usually yellow flowers and compound leaves -11755110 20 n 02 sensitive_plant 1 Mimosa_sensitiva 0 002 @ 11754893 n 0000 #m 11754633 n 0000 | semi-climbing prickly evergreen shrub of tropical America having compound leaves sensitive to light and touch -11755319 20 n 07 sensitive_plant 2 touch-me-not 3 shame_plant 0 live-and-die 0 humble_plant 0 action_plant 0 Mimosa_pudica 0 002 @ 11754893 n 0000 #m 11754633 n 0000 | prostrate or semi-erect subshrub of tropical America, and Australia; heavily armed with recurved thorns and having sensitive soft grey-green leaflets that fold and droop at night or when touched or cooled -11755694 20 n 01 genus_Acacia 0 012 @ 11585340 n 0000 #m 11754188 n 0000 %m 11756092 n 0000 %m 11756329 n 0000 %m 11756870 n 0000 %m 11757017 n 0000 %m 11757190 n 0000 %m 11757653 n 0000 %m 11757851 n 0000 %m 11758122 n 0000 %m 11758276 n 0000 %m 11758483 n 0000 | large genus of shrubs and trees and some woody vines of Central and South America, Africa, Australia and Polynesia: wattle; mimosa -11756092 20 n 01 acacia 0 008 @ 13104059 n 0000 #m 11755694 n 0000 ~ 11756329 n 0000 ~ 11756669 n 0000 ~ 11757190 n 0000 ~ 11757851 n 0000 ~ 11758483 n 0000 %s 14900963 n 0000 | any of various spiny trees or shrubs of the genus Acacia -11756329 20 n 02 shittah 0 shittah_tree 0 003 @ 11756092 n 0000 #m 11755694 n 0000 %s 11756522 n 0000 | source of a wood mentioned frequently in the Bible; probably a species of genus Acacia -11756522 20 n 01 shittimwood 0 002 @ 15098161 n 0000 #s 11756329 n 0000 | wood of the shittah tree used to make the ark of the Hebrew Tabernacle -11756669 20 n 01 wattle 0 005 @ 11756092 n 0000 ~ 11756870 n 0000 ~ 11757017 n 0000 ~ 11757653 n 0000 ~ 11758276 n 0000 | any of various Australasian trees yielding slender poles suitable for wattle -11756870 20 n 02 black_wattle 0 Acacia_auriculiformis 0 002 @ 11756669 n 0000 #m 11755694 n 0000 | Australian tree that yields tanning materials -11757017 20 n 03 gidgee 0 stinking_wattle 0 Acacia_cambegei 0 002 @ 11756669 n 0000 #m 11755694 n 0000 | scrubby Australian acacia having extremely foul-smelling blossoms -11757190 20 n 03 catechu 1 Jerusalem_thorn 4 Acacia_catechu 0 003 @ 11756092 n 0000 #m 11755694 n 0000 %s 11757433 n 0000 | East Indian spiny tree having twice-pinnate leaves and yellow flowers followed by flat pods; source of black catechu -11757433 20 n 02 black_catechu 0 catechu 2 002 @ 14848785 n 0000 #s 11757190 n 0000 | extract of the heartwood of Acacia catechu used for dyeing and tanning and preserving fishnets and sails; formerly used medicinally -11757653 20 n 03 silver_wattle 0 mimosa 3 Acacia_dealbata 0 002 @ 11756669 n 0000 #m 11755694 n 0000 | evergreen Australasian tree having white or silvery bark and young leaves and yellow flowers -11757851 20 n 08 huisache 0 cassie 0 mimosa_bush 0 sweet_wattle 0 sweet_acacia 0 scented_wattle 0 flame_tree 5 Acacia_farnesiana 0 002 @ 11756092 n 0000 #m 11755694 n 0000 | tropical American thorny shrub or small tree; fragrant yellow flowers used in making perfumery -11758122 20 n 02 lightwood 0 Acacia_melanoxylon 0 002 @ 12524188 n 0000 #m 11755694 n 0000 | tall Australian acacia yielding highly valued black timber -11758276 20 n 02 golden_wattle 0 Acacia_pycnantha 0 002 @ 11756669 n 0000 #m 11755694 n 0000 | shrubby Australian tree having clusters of fragrant golden yellow flowers; widely cultivated as an ornamental -11758483 20 n 02 fever_tree 4 Acacia_xanthophloea 0 002 @ 11756092 n 0000 #m 11755694 n 0000 | African tree supposed to mark healthful regions -11758628 20 n 02 Adenanthera 0 genus_Adenanthera 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11758799 n 0000 | small genus of trees of tropical Asia and Pacific areas -11758799 20 n 06 coralwood 0 coral-wood 0 red_sandalwood 2 Barbados_pride 0 peacock_flower_fence 0 Adenanthera_pavonina 0 002 @ 13104059 n 0000 #m 11758628 n 0000 | East Indian tree with racemes of yellow-white flowers; cultivated as an ornamental -11759049 20 n 02 genus_Albizia 0 genus_Albizzia 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11759224 n 0000 | large genus of unarmed trees and shrubs of Old World tropics -11759224 20 n 02 albizzia 0 albizia 0 005 @ 13104059 n 0000 #m 11759049 n 0000 ~ 11759404 n 0000 ~ 11759609 n 0000 ~ 11759853 n 0000 | any of numerous trees of the genus Albizia -11759404 20 n 03 silk_tree 0 Albizia_julibrissin 0 Albizzia_julibrissin 0 001 @ 11759224 n 0000 | attractive domed or flat-topped Asiatic tree having bipinnate leaves and flowers with long silky stamens -11759609 20 n 04 siris 0 siris_tree 0 Albizia_lebbeck 0 Albizzia_lebbeck 0 001 @ 11759224 n 0000 | large spreading Old World tree having large leaves and globose clusters of greenish-yellow flowers and long seed pods that clatter in the wind -11759853 20 n 07 rain_tree 0 saman 0 monkeypod 0 monkey_pod 0 zaman 0 zamang 0 Albizia_saman 0 001 @ 11759224 n 0000 | large ornamental tropical American tree with bipinnate leaves and globose clusters of flowers with crimson stamens and seed pods that are eaten by cattle -11760128 20 n 02 Anadenanthera 0 genus_Anadenanthera 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11760294 n 0000 | 2 species of tropical American shrubs or trees -11760294 20 n 02 Anadenanthera_colubrina 0 Piptadenia_macrocarpa 0 002 @ 13112664 n 0000 #m 11760128 n 0000 | Brazilian shrub having twice-pinnate leaves and small spicate flowers followed by flat or irregularly torulose pods; sometimes placed in genus Piptadenia -11760560 20 n 01 genus_Calliandra 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11760785 n 0000 | genus of pinnate-leaved shrubs and small trees of tropical and subtropical North and South America and India and West Africa -11760785 20 n 01 calliandra 0 002 @ 13112664 n 0000 #m 11760560 n 0000 | any of various shrubs and small trees valued for their fine foliage and attractive spreading habit and clustered white to deep pink or red flowers -11761007 20 n 02 Enterolobium 0 genus_Enterolobium 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11761202 n 0000 | small genus of tropical American timber trees closely allied to genus Albizia -11761202 20 n 03 conacaste 0 elephant's_ear 2 Enterolobium_cyclocarpa 0 002 @ 13104059 n 0000 #m 11761007 n 0000 | tropical South American tree having a wide-spreading crown of bipinnate leaves and coiled ear-shaped fruits; grown for shade and ornament as well as valuable timber -11761484 20 n 01 genus_Inga 0 005 @ 11585340 n 0000 #m 11754188 n 0000 %m 11761650 n 0000 %m 11761836 n 0000 %m 11762018 n 0000 | genus of tropical trees or shrubs -11761650 20 n 01 inga 0 002 @ 13104059 n 0000 #m 11761484 n 0000 | any tree or shrub of the genus Inga having pinnate leaves and showy usually white flowers; cultivated as ornamentals -11761836 20 n 02 ice-cream_bean 0 Inga_edulis 0 002 @ 13104059 n 0000 #m 11761484 n 0000 | ornamental evergreen tree with masses of white flowers; tropical and subtropical America -11762018 20 n 02 guama 0 Inga_laurina 0 002 @ 13104059 n 0000 #m 11761484 n 0000 | tropical tree of Central America and West Indies and Puerto Rico having spikes of white flowers; used as shade for coffee plantations -11762237 20 n 02 Leucaena 0 genus_Leucaena 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11762433 n 0000 | small genus of tropical evergreen trees or shrubs having pods like those of the acacia -11762433 20 n 04 lead_tree 0 white_popinac 0 Leucaena_glauca 0 Leucaena_leucocephala 0 002 @ 13104059 n 0000 #m 11762237 n 0000 | low scrubby tree of tropical and subtropical North America having white flowers tinged with yellow resembling mimosa and long flattened pods -11762706 20 n 02 Lysiloma 0 genus_Lysiloma 0 004 @ 11585340 n 0000 #m 11754188 n 0000 %m 11762927 n 0000 %m 11763142 n 0000 | small genus of tropical American trees and shrubs with pinnate leaves and flat straight pods -11762927 20 n 03 wild_tamarind 1 Lysiloma_latisiliqua 0 Lysiloma_bahamensis 0 002 @ 13104059 n 0000 #m 11762706 n 0000 | a tree of the West Indies and Florida and Mexico; resembles tamarind and has long flat pods -11763142 20 n 02 sabicu 1 Lysiloma_sabicu 0 003 @ 13112664 n 0000 #m 11762706 n 0000 %s 11763340 n 0000 | West Indian tree yielding a hard dark brown wood resembling mahogany in texture and value -11763340 20 n 02 sabicu 2 sabicu_wood 0 002 @ 15098161 n 0000 #s 11763142 n 0000 | the wood of the sabicu which resembles mahogany -11763473 20 n 02 Parkia 0 genus_Parkia 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11763625 n 0000 | genus of tropical Old World trees: nitta trees -11763625 20 n 01 nitta_tree 0 003 @ 13104059 n 0000 #m 11763473 n 0000 ~ 11763874 n 0000 | any of several Old World tropical trees of the genus Parkia having heads of red or yellow flowers followed by pods usually containing edible seeds and pulp -11763874 20 n 01 Parkia_javanica 0 001 @ 11763625 n 0000 | tall evergreen rain forest tree with wide-spreading crown having yellow-white flowers; grown as an ornamental in parks and large gardens -11764072 20 n 02 Piptadenia 0 genus_Piptadenia 0 002 @ 11585340 n 0000 #m 11754188 n 0000 | tropical American trees and shrubs; often placed in other genera -11764231 20 n 04 Pithecellobium 0 genus_Pithecellobium 0 Pithecolobium 0 genus_Pithecolobium 0 004 @ 11585340 n 0000 #m 11754188 n 0000 %m 11764478 n 0000 %m 11764814 n 0000 | thorny shrubs and trees of tropical and subtropical America and Asia -11764478 20 n 05 manila_tamarind 0 camachile 0 huamachil 0 wild_tamarind 2 Pithecellobium_dulce 0 002 @ 13104059 n 0000 #m 11764231 n 0000 | common thorny tropical American tree having terminal racemes of yellow flowers followed by sickle-shaped or circinate edible pods and yielding good timber and a yellow dye and mucilaginous gum -11764814 20 n 04 cat's-claw 0 catclaw 0 black_bead 0 Pithecellodium_unguis-cati 0 002 @ 13112664 n 0000 #m 11764231 n 0000 | erect shrub with small if any spines having racemes of white to yellow flowers followed by curved pointed pods and black shiny seeds; West Indies and Florida -11765099 20 n 02 Prosopis 0 genus_Prosopis 0 003 @ 11585340 n 0000 #m 11754188 n 0000 %m 11765277 n 0000 | genus of tropical or subtropical branching shrubs or trees: mesquite -11765277 20 n 02 mesquite 0 mesquit 0 005 @ 13112664 n 0000 #m 11765099 n 0000 ~ 11765568 n 0000 ~ 11765859 n 0000 ~ 11766189 n 0000 | any of several small spiny trees or shrubs of the genus Prosopis having small flowers in axillary cylindrical spikes followed by large pods rich in sugar -11765568 20 n 03 honey_mesquite 0 Western_honey_mesquite 0 Prosopis_glandulosa 0 001 @ 11765277 n 0000 | thorny deep-rooted drought-resistant shrub native to southwestern United States and Mexico bearing pods rich in sugar and important as livestock feed; tends to form extensive thickets -11765859 20 n 03 algarroba 1 Prosopis_juliflora 0 Prosopis_juliiflora 0 002 @ 11765277 n 0000 %p 11766046 n 0000 | mesquite of Gulf Coast and Caribbean Islands from Mexico to Venezuela -11766046 20 n 03 algarroba 3 algarrobilla 0 algarobilla 0 002 @ 13136316 n 0000 #p 11765859 n 0000 | mesquite pod used in tanning and dyeing -11766189 20 n 05 screw_bean 1 screwbean 0 tornillo 0 screwbean_mesquite 0 Prosopis_pubescens 0 002 @ 11765277 n 0000 %p 11766432 n 0000 | shrub or small tree of southwestern United States and northwestern Mexico having spirally twisted pods -11766432 20 n 01 screw_bean 2 002 @ 13139055 n 0000 #p 11766189 n 0000 | spirally twisted sweet pod of screwbean mesquite that is used for fodder or ground into meal for feed -11766609 20 n 03 Apocynaceae 0 family_Apocynaceae 0 dogbane_family 0 021 @ 11562747 n 0000 #m 12289744 n 0000 %m 11767196 n 0000 %m 11768242 n 0000 %m 11769002 n 0000 %m 11769483 n 0000 %m 11770013 n 0000 %m 11770526 n 0000 %m 11770969 n 0000 %m 11771383 n 0000 %m 11772154 n 0000 %m 11772702 n 0000 %m 11773138 n 0000 %m 11773860 n 0000 %m 11774279 n 0000 %m 11775160 n 0000 %m 11775780 n 0000 %m 11776337 n 0000 %m 11776861 n 0000 %m 11777365 n 0000 %m 11777779 n 0000 | chiefly tropical trees or shrubs or herbs having milky juice and often showy flowers; many are sources of drugs -11767196 20 n 02 Apocynum 0 genus_Apocynum 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11767354 n 0000 | perennial herbs with small pink or white flowers -11767354 20 n 01 dogbane 0 005 @ 13100156 n 0000 #m 11767196 n 0000 ~ 11767630 n 0000 ~ 11767877 n 0000 ~ 11768108 n 0000 | any of several poisonous perennial plants of the genus Apocynum having acrid milky juice and bell-shaped white or pink flowers and a very bitter root -11767630 20 n 04 common_dogbane 0 spreading_dogbane 0 rheumatism_weed 1 Apocynum_androsaemifolium 0 001 @ 11767354 n 0000 | North American perennial having pinkish flowers in loose cymes; used in folk medicine for pain or inflammation in joints -11767877 20 n 03 Indian_hemp 1 rheumatism_weed 2 Apocynum_cannabinum 0 001 @ 11767354 n 0000 | Canadian dogbane yielding a tough fiber used as cordage by Native Americans; used in folk medicine for pain or inflammation in joints -11768108 20 n 02 Rocky_Mountain_dogbane 0 Apocynum_pumilum 0 001 @ 11767354 n 0000 | North American plant similar to common dogbane -11768242 20 n 04 Acocanthera 0 genus_Acocanthera 0 Acokanthera 0 genus_Acokanthera 0 004 @ 11567411 n 0000 #m 11766609 n 0000 %m 11768505 n 0000 %m 11768816 n 0000 | small genus of trees and shrubs containing strongly toxic cardiac glycosides; Arabia to Africa -11768505 20 n 04 winter_sweet 4 poison_arrow_plant 0 Acocanthera_oblongifolia 0 Acocanthera_spectabilis 0 002 @ 13112664 n 0000 #m 11768242 n 0000 | medium-sized shrubby tree of South Africa having thick leathery evergreen leaves and white or pink flowers and globose usually two-seeded purplish black fruits -11768816 20 n 04 bushman's_poison 0 ordeal_tree 0 Acocanthera_oppositifolia 0 Acocanthera_venenata 0 002 @ 13112664 n 0000 #m 11768242 n 0000 | evergreen shrub or tree of South Africa -11769002 20 n 02 Adenium 0 genus_Adenium 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11769176 n 0000 | one species: succulent shrub or tree of tropical Africa and Arabia -11769176 20 n 06 impala_lily 0 mock_azalia 0 desert_rose 0 kudu_lily 0 Adenium_obesum 0 Adenium_multiflorum 0 002 @ 13112664 n 0000 #m 11769002 n 0000 | South African shrub having a swollen succulent stem and bearing showy pink and white flowers after the leaves fall; popular as an ornamental in tropics -11769483 20 n 01 genus_Allamanda 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11769621 n 0000 | genus of tropical American woody vines -11769621 20 n 01 allamanda 0 003 @ 13100677 n 0000 #m 11769483 n 0000 ~ 11769803 n 0000 | a plant of the genus Allamanda having large showy funnel-shaped flowers in terminal cymes -11769803 20 n 03 common_allamanda 0 golden_trumpet 0 Allamanda_cathartica 0 001 @ 11769621 n 0000 | vigorous evergreen climbing plant of South America having glossy leathery foliage and golden yellow flowers -11770013 20 n 02 Alstonia 0 genus_Alstonia 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11770256 n 0000 | genus of evergreen trees or shrubs with white funnel-shaped flowers and milky sap; tropical Africa to southeastern Asia and Polynesia -11770256 20 n 04 dita 0 dita_bark 0 devil_tree 0 Alstonia_scholaris 0 002 @ 13104059 n 0000 #m 11770013 n 0000 | evergreen tree of eastern Asia and Philippines having large leathery leaves and small green-white flowers in compact cymes; bark formerly used medicinally -11770526 20 n 02 Amsonia 0 genus_Amsonia 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11770753 n 0000 | genus of herbs and subshrubs with milky juice and showy bluish flowers; Europe to Asia Minor to Japan and North America -11770753 20 n 02 blue_star 0 Amsonia_tabernaemontana 0 002 @ 13118707 n 0000 #m 11770526 n 0000 | subshrubs of southeastern United States forming slow-growing clumps and having blue flowers in short terminal cymes -11770969 20 n 02 Beaumontia 0 genus_Beaumontia 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11771147 n 0000 | small genus of evergreen woody vines in the East Indies and Asia -11771147 20 n 03 Nepal_trumpet_flower 0 Easter_lily_vine 0 Beaumontia_grandiflora 0 002 @ 13100677 n 0000 #m 11770969 n 0000 | evergreen woody twiner with large glossy leaves and showy corymbs of fragrant white trumpet-shaped flowers -11771383 20 n 01 genus_Carissa 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11771539 n 0000 | Old World genus of tropical evergreen usually spiny shrubs -11771539 20 n 01 carissa 0 004 @ 13112664 n 0000 #m 11771383 n 0000 ~ 11771746 n 0000 ~ 11771924 n 0000 | a shrub of the genus Carissa having fragrant white flowers and plumlike red to purple-black fruits -11771746 20 n 03 hedge_thorn 0 natal_plum 1 Carissa_bispinosa 0 001 @ 11771539 n 0000 | South African shrub having forked spines and plumlike fruit; frequently used as hedging -11771924 20 n 04 natal_plum 0 amatungulu 0 Carissa_macrocarpa 0 Carissa_grandiflora 0 002 @ 11771539 n 0000 %p 07746910 n 0000 | very large closely branched South African shrub having forked bright green spines and shiny leaves -11772154 20 n 02 Catharanthus 0 genus_Catharanthus 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11772408 n 0000 | small genus of erect annual or perennial herbs native to Madagascar; widely naturalized in the tropics; formerly included in genus Vinca -11772408 20 n 09 periwinkle 2 rose_periwinkle 0 Madagascar_periwinkle 0 old_maid 1 Cape_periwinkle 0 red_periwinkle 0 cayenne_jasmine 0 Catharanthus_roseus 0 Vinca_rosea 0 002 @ 12205694 n 0000 #m 11772154 n 0000 | commonly cultivated Old World woody herb having large pinkish to red flowers -11772702 20 n 02 Holarrhena 0 genus_Holarrhena 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11772879 n 0000 | genus of deciduous trees and shrubs of tropical Africa and Asia -11772879 20 n 06 ivory_tree 0 conessi 0 kurchi 0 kurchee 0 Holarrhena_pubescens 0 Holarrhena_antidysenterica 0 002 @ 13104059 n 0000 #m 11772702 n 0000 | tropical Asian tree with hard white wood and bark formerly used as a remedy for dysentery and diarrhea -11773138 20 n 04 Mandevilla 0 genus_Mandevilla 0 Dipladenia 0 genus_Dipladenia 0 004 @ 11567411 n 0000 #m 11766609 n 0000 %m 11773408 n 0000 %m 11773628 n 0000 | genus of tropical South American tuberous perennial woody vines with large racemose flowers and milky sap -11773408 20 n 03 white_dipladenia 0 Mandevilla_boliviensis 0 Dipladenia_boliviensis 0 002 @ 13120211 n 0000 #m 11773138 n 0000 | shrubby climber having glossy leaves and white funnel-shaped flowers with yellow throats -11773628 20 n 02 Chilean_jasmine 0 Mandevilla_laxa 0 002 @ 13120211 n 0000 #m 11773138 n 0000 | woody vine of Argentina grown as an ornamental for its glossy leaves and racemes of large fragrant funnel-shaped creamy-white flowers -11773860 20 n 02 Nerium 0 genus_Nerium 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11773987 n 0000 | one species: oleander -11773987 20 n 03 oleander 0 rose_bay 1 Nerium_oleander 0 002 @ 13100156 n 0000 #m 11773860 n 0000 | an ornamental but poisonous flowering shrub having narrow evergreen leaves and clusters of fragrant white to pink or red flowers: native to East Indies but widely cultivated in warm regions -11774279 20 n 03 Plumeria 0 genus_Plumeria 0 Plumiera 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11774513 n 0000 | deciduous shrubs and trees of tropical America having branches like candelabra and fragrant white or pink flowers -11774513 20 n 02 frangipani 0 frangipanni 0 004 @ 13112664 n 0000 #m 11774279 n 0000 ~ 11774795 n 0000 ~ 11774972 n 0000 | any of various tropical American deciduous shrubs or trees of the genus Plumeria having milky sap and showy fragrant funnel-shaped variously colored flowers -11774795 20 n 03 pagoda_tree 1 temple_tree 0 Plumeria_acutifolia 0 001 @ 11774513 n 0000 | frangipani of India having an erect habit and conical form; grown in temple gardens -11774972 20 n 03 West_Indian_jasmine 0 pagoda_tree 2 Plumeria_alba 0 001 @ 11774513 n 0000 | tall sparingly branched conical tree having large fragrant yellow flowers with white centers -11775160 20 n 02 genus_Rauwolfia 0 genus_Rauvolfia 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11775340 n 0000 | pantropical genus of somewhat poisonous shrubs and small trees -11775340 20 n 02 rauwolfia 0 rauvolfia 0 003 @ 13112664 n 0000 #m 11775160 n 0000 ~ 11775626 n 0000 | any shrub or small tree of the genus Rauwolfia having leaves in whorls and cymose flowers; yield substances used medicinally especially as emetics or purgatives or antihypertensives -11775626 20 n 02 snakewood 0 Rauwolfia_serpentina 0 001 @ 11775340 n 0000 | East Indian climbing shrub with twisted limbs and roots resembling serpents -11775780 20 n 01 genus_Strophanthus 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11775959 n 0000 | genus of tropical Asiatic and African shrubs and woody vines and small trees -11775959 20 n 01 strophanthus 0 003 @ 13112664 n 0000 #m 11775780 n 0000 ~ 11776234 n 0000 | any of various shrubs or small trees of the genus Strophanthus having whorled leaves and showy flowers of various colors in dense and corymbose clusters; some have poisonous seeds -11776234 20 n 01 Strophanthus_kombe 0 001 @ 11775959 n 0000 | plant that is a source of strophanthin -11776337 20 n 02 Tabernaemontana 0 genus_Tabernaemontana 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11776511 n 0000 | evergreen tropical trees and shrubs with milky sap -11776511 20 n 09 crape_jasmine 0 crepe_jasmine 0 crepe_gardenia 0 pinwheel_flower 0 East_Indian_rosebay 0 Adam's_apple 0 Nero's_crown 0 coffee_rose 0 Tabernaemontana_divaricate 0 002 @ 13112664 n 0000 #m 11776337 n 0000 | tropical shrub having glossy foliage and fragrant nocturnal flowers with crimped or wavy corollas; northern India to Thailand -11776861 20 n 02 Thevetia 0 genus_Thevetia 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11777080 n 0000 | genus of poisonous tropical American evergreen shrubs and trees having entire leaves and large cymose flowers -11777080 20 n 03 yellow_oleander 0 Thevetia_peruviana 0 Thevetia_neriifolia 0 002 @ 13112664 n 0000 #m 11776861 n 0000 | tropical American shrub or small tree having glossy dark green leaves and fragrant saffron yellow to orange or peach- colored flowers; all parts highly poisonous -11777365 20 n 02 Trachelospermum 0 genus_Trachelospermum 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11777552 n 0000 | genus of Asiatic woody vines with milky sap in leaves and stems -11777552 20 n 03 star_jasmine 0 confederate_jasmine 0 Trachelospermum_jasminoides 0 002 @ 13100677 n 0000 #m 11777365 n 0000 | evergreen Chinese woody climber with shiny dark green leaves and intensely fragrant white flowers -11777779 20 n 02 Vinca 0 genus_Vinca 0 003 @ 11567411 n 0000 #m 11766609 n 0000 %m 11777929 n 0000 | periwinkles: low creeping evergreen perennials -11777929 20 n 01 periwinkle 1 004 @ 13118707 n 0000 #m 11777779 n 0000 ~ 11778092 n 0000 ~ 11778257 n 0000 | chiefly trailing poisonous plants with blue flowers -11778092 20 n 02 myrtle 2 Vinca_minor 0 001 @ 11777929 n 0000 | widely cultivated as a groundcover for its dark green shiny leaves and usually blue-violet flowers -11778257 20 n 02 large_periwinkle 0 Vinca_major 0 001 @ 11777929 n 0000 | plant having variegated foliage and used for window boxes -11778391 20 n 02 Arales 0 order_Arales 0 004 @ 11534677 n 0000 #m 11668573 n 0000 %m 11778534 n 0000 %m 11794267 n 0000 | Araceae; Lemnaceae -11778534 20 n 03 Araceae 0 family_Araceae 0 arum_family 0 034 @ 11555413 n 0000 #m 11778391 n 0000 + 02641201 a 0102 %m 11779300 n 0000 %m 11779801 n 0000 %m 11780589 n 0000 %m 11780747 n 0000 %m 11781430 n 0000 %m 11781850 n 0000 %m 11782522 n 0000 %m 11783723 n 0000 %m 11784323 n 0000 %m 11785100 n 0000 %m 11785475 n 0000 %m 11786017 n 0000 %m 11786365 n 0000 %m 11786983 n 0000 %m 11787391 n 0000 %m 11787892 n 0000 %m 11788223 n 0000 %m 11788536 n 0000 %m 11788926 n 0000 %m 11789280 n 0000 %m 11789796 n 0000 %m 11790239 n 0000 %m 11790624 n 0000 %m 11791155 n 0000 %m 11791446 n 0000 %m 11791819 n 0000 %m 11792155 n 0000 %m 11792598 n 0000 %m 11793032 n 0000 %m 11793252 n 0000 %m 11793651 n 0000 | anthurium; calla lily; jack-in-the-pulpit; philodendron -11779300 20 n 02 arum 1 aroid 0 020 @ 12205694 n 0000 #m 11778534 n 0000 + 02641201 a 0201 ~ 11780148 n 0000 ~ 11780424 n 0000 ~ 11782036 n 0000 ~ 11782761 n 0000 ~ 11782878 n 0000 ~ 11783162 n 0000 ~ 11783488 n 0000 ~ 11784497 n 0000 ~ 11784825 n 0000 ~ 11785276 n 0000 ~ 11785668 n 0000 ~ 11786539 n 0000 ~ 11787625 n 0000 ~ 11788039 n 0000 ~ 11788382 n 0000 ~ 11789962 n 0000 ~ 11793403 n 0000 | any plant of the family Araceae; have small flowers massed on a spadix surrounded by a large spathe -11779801 20 n 01 genus_Arum 0 004 @ 11556857 n 0000 #m 11778534 n 0000 %m 11780148 n 0000 %m 11780424 n 0000 | type genus of the Araceae: tuberous perennial herbs of Europe and Asia with usually heart-shaped leaves -11780018 20 n 01 arum 2 002 @ 15053867 n 0000 #p 11780148 n 0000 | starch resembling sago that is obtained from cuckoopint root -11780148 20 n 04 cuckoopint 0 lords-and-ladies 0 jack-in-the-pulpit 2 Arum_maculatum 0 003 @ 11779300 n 0000 #m 11779801 n 0000 %p 11780018 n 0000 | common European arum with lanceolate spathe and short purple spadix; emerges in early spring; source of a starch called arum -11780424 20 n 02 black_calla 0 Arum_palaestinum 0 002 @ 11779300 n 0000 #m 11779801 n 0000 | ornamental plant of Middle East cultivated for its dark purple spathe -11780589 20 n 02 Acorus 0 genus_Acorus 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11780930 n 0000 | sweet flags; sometimes placed in subfamily Acoraceae -11780747 20 n 02 Acoraceae 0 subfamily_Acoraceae 0 002 @ 11555413 n 0000 #m 11778534 n 0000 | used in some classifications for the genus Acorus which is usually assigned to Araceae -11780930 20 n 06 sweet_flag 0 calamus 1 sweet_calamus 0 myrtle_flag 0 flagroot 0 Acorus_calamus 0 004 @ 13122364 n 0000 #m 11780589 n 0000 %p 11781176 n 0000 %s 11781301 n 0000 | perennial marsh plant having swordlike leaves and aromatic roots -11781176 20 n 01 calamus 2 002 @ 13125117 n 0000 #p 11780930 n 0000 | the aromatic root of the sweet flag used medicinally -11781301 20 n 01 calamus_oil 0 002 @ 14966667 n 0000 #s 11780930 n 0000 | carcinogenic oil from calamus root used as a perfume -11781430 20 n 02 Aglaonema 0 genus_Aglaonema 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11781658 n 0000 | climbing herbs of southeastern Asia having thick fleshy oblong leaves and naked unisexual flowers: Chinese evergreen -11781658 20 n 03 Chinese_evergreen 0 Japanese_leaf 0 Aglaonema_modestum 0 002 @ 13083023 n 0000 #m 11781430 n 0000 | erect or partially climbing herb having large green or variegated leaves -11781850 20 n 01 genus_Alocasia 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11782036 n 0000 | tropical Asiatic herbs similar to Colocasia but distinguished by a large sterile spadix -11782036 20 n 03 alocasia 0 elephant's_ear 1 elephant_ear 0 003 @ 11779300 n 0000 #m 11781850 n 0000 ~ 11782266 n 0000 | any plant of the genus Alocasia having large showy basal leaves and boat-shaped spathe and reddish berries -11782266 20 n 02 giant_taro 0 Alocasia_macrorrhiza 0 001 @ 11782036 n 0000 | large evergreen with extremely large erect or spreading leaves; cultivated widely in tropics for its edible rhizome and shoots; used in wet warm regions as a stately ornamental -11782522 20 n 01 genus_Amorphophallus 0 006 @ 11556857 n 0000 #m 11778534 n 0000 %m 11782761 n 0000 %m 11782878 n 0000 %m 11783162 n 0000 %m 11783488 n 0000 | genus of large tropical east Asian cormous aroids: devil's tongue; snake palm -11782761 20 n 01 amorphophallus 0 002 @ 11779300 n 0000 #m 11782522 n 0000 | any plant of the genus Amorphophallus -11782878 20 n 05 pungapung 0 telingo_potato 0 elephant_yam 0 Amorphophallus_paeonifolius 0 Amorphophallus_campanulatus 0 003 @ 11779300 n 0000 #m 11782522 n 0000 ;r 08981244 n 0000 | putrid-smelling aroid of southeastern Asia (especially the Philippines) grown for its edible tuber -11783162 20 n 04 devil's_tongue 0 snake_palm 0 umbrella_arum 0 Amorphophallus_rivieri 0 002 @ 11779300 n 0000 #m 11782522 n 0000 | foul-smelling somewhat fleshy tropical plant of southeastern Asia cultivated for its edible corms or in the greenhouse for its large leaves and showy dark red spathe surrounding a large spadix -11783488 20 n 03 krubi 0 titan_arum 0 Amorphophallus_titanum 0 002 @ 11779300 n 0000 #m 11782522 n 0000 | malodorous tropical plant having a spathe that resembles the corolla of a morning glory and attains a diameter of several feet -11783723 20 n 01 genus_Anthurium 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11783920 n 0000 | large genus of often epiphytic evergreen tropical American plants often cultivated as houseplants -11783920 20 n 03 anthurium 0 tailflower 0 tail-flower 0 003 @ 13083023 n 0000 #m 11783723 n 0000 ~ 11784126 n 0000 | any of various tropical American plants cultivated for their showy foliage and flowers -11784126 20 n 04 flamingo_flower 0 flamingo_plant 0 Anthurium_andraeanum 0 Anthurium_scherzerianum 0 001 @ 11783920 n 0000 | commonly cultivated anthurium having bright scarlet spathe and spadix -11784323 20 n 02 Arisaema 0 genus_Arisaema 0 004 @ 11556857 n 0000 #m 11778534 n 0000 %m 11784497 n 0000 %m 11784825 n 0000 | tuberous or rhizomatous herbaceous perennials -11784497 20 n 05 jack-in-the-pulpit 1 Indian_turnip 0 wake-robin 2 Arisaema_triphyllum 0 Arisaema_atrorubens 0 002 @ 11779300 n 0000 #m 11784323 n 0000 | common American spring-flowering woodland herb having sheathing leaves and an upright club-shaped spadix with overarching green and purple spathe producing scarlet berries -11784825 20 n 02 green_dragon 1 Arisaema_dracontium 0 002 @ 11779300 n 0000 #m 11784323 n 0000 | early spring-flowering plant of eastern North America resembling the related jack-in-the-pulpit but having digitate leaves, slender greenish yellow spathe and elongated spadix -11785100 20 n 02 Arisarum 0 genus_Arisarum 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11785276 n 0000 | tuberous or rhizomatous perennial herbs; mainly Mediterranean area -11785276 20 n 02 friar's-cowl 0 Arisarum_vulgare 0 002 @ 11779300 n 0000 #m 11785100 n 0000 | tuberous perennial having a cowl-shaped maroon or violet-black spathe; Mediterranean; Canaries; Azores -11785475 20 n 01 genus_Caladium 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11785668 n 0000 | small genus of tropical South American tuberous perennials with large variously colored leaves -11785668 20 n 01 caladium 0 003 @ 11779300 n 0000 #m 11785475 n 0000 ~ 11785875 n 0000 | any plant of the genus Caladium cultivated for their ornamental foliage variously patterned in white or pink or red -11785875 20 n 01 Caladium_bicolor 0 001 @ 11785668 n 0000 | most popular caladium; cultivated in many varieties since the late 19th century -11786017 20 n 02 Calla 1 genus_Calla 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11786131 n 0000 | water arum -11786131 20 n 03 wild_calla 0 water_arum 0 Calla_palustris 0 002 @ 13122364 n 0000 #m 11786017 n 0000 | plant of wetlands and bogs of temperate regions having small greenish flowers partly enclosed in a white spathe and red berries -11786365 20 n 02 Colocasia 0 genus_Colocasia 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11786539 n 0000 | small genus of perennial tuberous herbs of tropical Asia: taro -11786539 20 n 05 taro 0 taro_plant 0 dalo 0 dasheen 1 Colocasia_esculenta 0 004 @ 11779300 n 0000 #m 11786365 n 0000 %p 07736813 n 0000 %p 11786843 n 0000 | herb of the Pacific islands grown throughout the tropics for its edible root and in temperate areas as an ornamental for its large glossy leaves -11786843 20 n 04 taro 2 cocoyam 0 dasheen 2 eddo 0 002 @ 13125117 n 0000 #p 11786539 n 0000 | edible starchy tuberous root of taro plants -11786983 20 n 01 genus_Cryptocoryne 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11787190 n 0000 | water trumpet; aquatic herbs having broad leaves and long slender spathes; often used as aquarium plants -11787190 20 n 02 cryptocoryne 0 water_trumpet 0 002 @ 13121544 n 0000 #m 11786983 n 0000 | any plant of the genus Cryptocoryne; evergreen perennials growing in fresh or brackish water; tropical Asia -11787391 20 n 02 Dieffenbachia 0 genus_Dieffenbachia 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11787625 n 0000 | evergreen perennial herbs of tropical America with lush foliage and poisonous sap; often cultivated as houseplants -11787625 20 n 04 dumb_cane 0 mother-in-law_plant 0 mother-in-law's_tongue 2 Dieffenbachia_sequine 0 002 @ 11779300 n 0000 #m 11787391 n 0000 | an evergreen plant with large showy dark green leaves; contains a poison that swells the tongue and throat hence the name -11787892 20 n 01 genus_Dracontium 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11788039 n 0000 | small genus of tropical American cormous herbs -11788039 20 n 01 dracontium 0 002 @ 11779300 n 0000 #m 11787892 n 0000 | any plant of the genus Dracontium; strongly malodorous tropical American plants usually with gigantic leaves -11788223 20 n 02 Dracunculus 0 genus_Dracunculus 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11788382 n 0000 | tuberous herbaceous perennials: dragon arum -11788382 20 n 03 dragon_arum 0 green_dragon 2 Dracunculus_vulgaris 0 002 @ 11779300 n 0000 #m 11788223 n 0000 | European arum resembling the cuckoopint -11788536 20 n 02 Epipremnum 0 genus_Epipremnum 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11788727 n 0000 | small genus of evergreen lianas of southeastern Asia to western Pacific areas -11788727 20 n 05 golden_pothos 0 pothos 2 ivy_arum 0 Epipremnum_aureum 0 Scindapsus_aureus 0 002 @ 13120211 n 0000 #m 11788536 n 0000 | evergreen liana widely cultivated for its variegated foliage -11788926 20 n 04 Lysichiton 0 genus_Lysichiton 0 Lysichitum 0 genus_Lysichitum 0 002 @ 11556857 n 0000 #m 11778534 n 0000 | skunk cabbage -11789066 20 n 02 skunk_cabbage 2 Lysichiton_americanum 0 001 @ 13122364 n 0000 | clump-forming deciduous perennial swamp plant of western North America similar to Symplocarpus foetidus but having a yellow spathe -11789280 20 n 01 genus_Monstera 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11789438 n 0000 | tropical American climbing plant with deeply incised leaves -11789438 20 n 01 monstera 0 003 @ 13120211 n 0000 #m 11789280 n 0000 ~ 11789589 n 0000 | any plant of the genus Monstera; often grown as houseplants -11789589 20 n 02 ceriman 0 Monstera_deliciosa 0 002 @ 11789438 n 0000 %p 07746749 n 0000 | tropical American vine having roots that hang like cords and cylindrical fruit with a pineapple and banana flavor -11789796 20 n 01 genus_Nephthytis 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11789962 n 0000 | small genus of tropical western African creeping or twining herbs -11789962 20 n 01 nephthytis 0 003 @ 11779300 n 0000 #m 11789796 n 0000 ~ 11790089 n 0000 | any plant of the genus Nephthytis -11790089 20 n 01 Nephthytis_afzelii 0 001 @ 11789962 n 0000 | tropical rhizomatous plant cultivated as an ornamental for its large sagittate leaves -11790239 20 n 02 Orontium 0 genus_Orontium 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11790390 n 0000 | one species of aquatic plant: golden club -11790390 20 n 02 golden_club 0 Orontium_aquaticum 0 002 @ 13121544 n 0000 #m 11790239 n 0000 | aquatic plant of the southeastern United States having blue-green leaves and a spadix resembling a club covered with tiny yellow flowers -11790624 20 n 02 Peltandra 0 genus_Peltandra 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11790788 n 0000 | small genus of North American marsh or aquatic herbs -11790788 20 n 01 arrow_arum 0 003 @ 13121544 n 0000 #m 11790624 n 0000 ~ 11790936 n 0000 | an aquatic plant of the genus Peltandra; North America -11790936 20 n 03 green_arrow_arum 0 tuckahoe 0 Peltandra_virginica 0 001 @ 11790788 n 0000 | perennial herb of the eastern United States having arrowhead-shaped leaves and an elongate pointed spathe and green berries -11791155 20 n 01 genus_Philodendron 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11791341 n 0000 | any of several tropical American climbing plants with smooth shiny evergreen leaves -11791341 20 n 01 philodendron 0 002 @ 13120211 n 0000 #m 11791155 n 0000 | often grown as a houseplant -11791446 20 n 01 genus_Pistia 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11791569 n 0000 | one species: water lettuce -11791569 20 n 05 pistia 0 water_lettuce 0 water_cabbage 0 Pistia_stratiotes 0 Pistia_stratoites 0 002 @ 13121544 n 0000 #m 11791446 n 0000 | pantropical floating plant forming a rosette of wedge-shaped leaves; a widespread weed in rivers and lakes -11791819 20 n 03 Scindapsus 0 genus_Scindapsus 0 genus_Pothos 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11792029 n 0000 | evergreen climbers with adhesive adventitious roots; southeastern Asia and Brazil -11792029 20 n 01 pothos 1 002 @ 13120211 n 0000 #m 11791819 n 0000 | any of various tropical lianas of the genus Scindapsus -11792155 20 n 01 genus_Spathiphyllum 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11792341 n 0000 | evergreen rhizomatous perennials of tropical America and Philippines and Indonesia -11792341 20 n 03 spathiphyllum 0 peace_lily 0 spathe_flower 0 002 @ 11669921 n 0000 #m 11792155 n 0000 | any of various plants of the genus Spathiphyllum having a white or green spathe and a spike of fragrant flowers and often cultivated as an ornamental -11792598 20 n 02 Symplocarpus 0 genus_Symplocarpus 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11792742 n 0000 | one species: skunk cabbage -11792742 20 n 04 skunk_cabbage 1 polecat_weed 0 foetid_pothos 0 Symplocarpus_foetidus 0 002 @ 13122364 n 0000 #m 11792598 n 0000 | deciduous perennial low-growing fetid swamp plant of eastern North America having minute flowers enclosed in a mottled greenish or purple cowl-shaped spathe -11793032 20 n 02 Syngonium 0 genus_Syngonium 0 002 @ 11556857 n 0000 #m 11778534 n 0000 | epiphytic or terrestrial climbing shrubs of Central and South America; used as ornamental houseplants for their velvety foliage -11793252 20 n 02 Xanthosoma 0 genus_Xanthosoma 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11793403 n 0000 | tropical American tuberous perennials -11793403 20 n 06 yautia 0 tannia 0 spoonflower 0 malanga 0 Xanthosoma_sagittifolium 0 Xanthosoma_atrovirens 0 002 @ 11779300 n 0000 #m 11793252 n 0000 | tropical American aroid having edible tubers that are cooked and eaten like yams or potatoes -11793651 20 n 02 Zantedeschia 0 genus_Zantedeschia 0 003 @ 11556857 n 0000 #m 11778534 n 0000 %m 11793779 n 0000 | calla lily -11793779 20 n 04 calla_lily 0 calla 2 arum_lily 0 Zantedeschia_aethiopica 0 004 @ 11669921 n 0000 #m 11793651 n 0000 ~ 11794024 n 0000 ~ 11794139 n 0000 | South African plant widely cultivated for its showy pure white spathe and yellow spadix -11794024 20 n 02 pink_calla 0 Zantedeschia_rehmanii 0 001 @ 11793779 n 0000 | calla having a rose-colored spathe -11794139 20 n 01 golden_calla 0 001 @ 11793779 n 0000 | any of several callas of the genus Zantedeschia having yellow spathes -11794267 20 n 03 Lemnaceae 0 family_Lemnaceae 0 duckweed_family 0 007 @ 11555413 n 0000 #m 11778391 n 0000 %m 11794519 n 0000 %m 11794791 n 0000 %m 11795366 n 0000 %m 11795774 n 0000 %m 11796318 n 0000 | family of small free-floating thalloid plants -11794519 20 n 01 duckweed 0 007 @ 13121544 n 0000 #m 11794267 n 0000 ~ 11795049 n 0000 ~ 11795216 n 0000 ~ 11795580 n 0000 ~ 11796005 n 0000 ~ 11796573 n 0000 | any small or minute aquatic plant of the family Lemnaceae that float on or near the surface of shallow ponds -11794791 20 n 02 Lemna 0 genus_Lemna 0 004 @ 11556857 n 0000 #m 11794267 n 0000 %m 11795049 n 0000 %m 11795216 n 0000 | minute aquatic herbs floating on or below the water surface of still water consisting of a leaflike frond or plant body and single root -11795049 20 n 03 common_duckweed 0 lesser_duckweed 0 Lemna_minor 0 002 @ 11794519 n 0000 #m 11794791 n 0000 | of temperate regions except eastern Asia and Australia -11795216 20 n 02 star-duckweed 0 Lemna_trisulca 0 002 @ 11794519 n 0000 #m 11794791 n 0000 | cosmopolitan in temperate regions except North America -11795366 20 n 02 Spirodela 0 genus_Spirodela 0 003 @ 11556857 n 0000 #m 11794267 n 0000 %m 11795580 n 0000 | minute aquatic herbs floating on the water surface consisting of a shiny leaflike frond and 2-21 roots -11795580 20 n 03 great_duckweed 0 water_flaxseed 0 Spirodela_polyrrhiza 0 002 @ 11794519 n 0000 #m 11795366 n 0000 | cosmopolitan except South America and New Zealand and some oceanic islands -11795774 20 n 02 Wolffia 0 genus_Wolffia 0 003 @ 11556857 n 0000 #m 11794267 n 0000 %m 11796005 n 0000 | minute rootless aquatic herbs having globular fronds floating on or near the water surface and bearing one flower per frond -11796005 20 n 01 watermeal 0 003 @ 11794519 n 0000 #m 11795774 n 0000 ~ 11796188 n 0000 | any of various aquatic plants of the genus Wolffia; throughout warmer regions of the world -11796188 20 n 02 common_wolffia 0 Wolffia_columbiana 0 001 @ 11796005 n 0000 | smallest flowering plants known; of the Americas -11796318 20 n 02 Wolffiella 0 genus_Wolffiella 0 003 @ 11556857 n 0000 #m 11794267 n 0000 %m 11796573 n 0000 | minute rootless aquatic herbs having flat fronds floating on or below the water surface and bearing 1-2 flowers per frond; America and Africa -11796573 20 n 03 mud_midget 0 bogmat 0 Wolffiella_gladiata 0 002 @ 11794519 n 0000 #m 11796318 n 0000 | having narrow flat sickle-shaped submerged fronds; North America -11796744 20 n 03 Araliaceae 0 family_Araliaceae 0 ivy_family 0 007 @ 11566682 n 0000 #m 12213197 n 0000 %m 11797016 n 0000 %m 11798851 n 0000 %m 11799158 n 0000 %m 11799520 n 0000 %m 11800359 n 0000 | mostly tropical trees and shrubs and lianas: genera Panax and Hedera -11797016 20 n 01 genus_Aralia 0 008 @ 11585340 n 0000 #m 11796744 n 0000 %m 11797321 n 0000 %m 11797508 n 0000 %m 11797722 n 0000 %m 11797981 n 0000 %m 11798270 n 0000 %m 11798496 n 0000 | type genus of Araliaceae; large widely distributed genus of shrubs and trees and vines: spikenard; Hercules'-club -11797321 20 n 01 aralia 0 002 @ 13103136 n 0000 #m 11797016 n 0000 | any of various plants of the genus Aralia; often aromatic plants having compound leaves and small umbellate flowers -11797508 20 n 04 American_angelica_tree 0 devil's_walking_stick 0 Hercules'-club 2 Aralia_spinosa 0 002 @ 13112664 n 0000 #m 11797016 n 0000 | small deciduous clump-forming tree or shrub of eastern United States -11797722 20 n 04 wild_sarsaparilla 0 false_sarsaparilla 0 wild_sarsparilla 0 Aralia_nudicaulis 0 002 @ 13118707 n 0000 #m 11797016 n 0000 | common perennial herb having aromatic roots used as a substitute for sarsaparilla; central and eastern North America -11797981 20 n 04 American_spikenard 0 petty_morel 0 life-of-man 0 Aralia_racemosa 0 002 @ 13118707 n 0000 #m 11797016 n 0000 | unarmed woody rhizomatous perennial plant distinguished from wild sarsaparilla by more aromatic roots and panicled umbels; southeastern North America to Mexico -11798270 20 n 04 bristly_sarsaparilla 0 bristly_sarsparilla 0 dwarf_elder 2 Aralia_hispida 0 002 @ 13118707 n 0000 #m 11797016 n 0000 | bristly herb of eastern and central North America having black fruit and medicinal bark -11798496 20 n 02 Japanese_angelica_tree 0 Aralia_elata 0 002 @ 13112664 n 0000 #m 11797016 n 0000 | deciduous clump-forming Asian shrub or small tree; adventive in the eastern United States -11798688 20 n 03 Chinese_angelica 0 Chinese_angelica_tree 0 Aralia_stipulata 0 001 @ 13112664 n 0000 | similar to American angelica tree but less prickly; China -11798851 20 n 02 Hedera 0 genus_Hedera 0 003 @ 11585340 n 0000 #m 11796744 n 0000 %m 11798978 n 0000 | Old World woody vines -11798978 20 n 04 ivy 0 common_ivy 0 English_ivy 0 Hedera_helix 0 002 @ 13100677 n 0000 #m 11798851 n 0000 | Old World vine with lobed evergreen leaves and black berrylike fruits -11799158 20 n 02 Meryta 0 genus_Meryta 0 003 @ 11585340 n 0000 #m 11796744 n 0000 %m 11799331 n 0000 | small to medium evergreen dioecious trees of oceanic climates: puka -11799331 20 n 02 puka 1 Meryta_sinclairii 0 002 @ 13104059 n 0000 #m 11799158 n 0000 | small roundheaded New Zealand tree having large resinous leaves and panicles of green-white flowers -11799520 20 n 02 Panax 0 genus_Panax 0 004 @ 11585340 n 0000 #m 11796744 n 0000 %m 11799732 n 0000 %m 11800020 n 0000 | perennial herbs of eastern North America and Asia having aromatic tuberous roots: ginseng -11799732 20 n 05 ginseng 1 nin-sin 0 Panax_ginseng 0 Panax_schinseng 0 Panax_pseudoginseng 0 003 @ 12205694 n 0000 #m 11799520 n 0000 %p 11800236 n 0000 | Chinese herb with palmately compound leaves and small greenish flowers and forked aromatic roots believed to have medicinal powers -11800020 20 n 03 American_ginseng 0 sang 0 Panax_quinquefolius 0 003 @ 12205694 n 0000 #m 11799520 n 0000 %p 11800236 n 0000 | North American woodland herb similar to and used as substitute for the Chinese ginseng -11800236 20 n 01 ginseng 2 003 @ 13125117 n 0000 #p 11799732 n 0000 #p 11800020 n 0000 | aromatic root of ginseng plants -11800359 20 n 02 Schefflera 0 genus_Schefflera 0 003 @ 11585340 n 0000 #m 11796744 n 0000 %m 11800565 n 0000 | large genus of shrubby and climbing tropical plants having showy digitately compound foliage -11800565 20 n 03 umbrella_tree 2 Schefflera_actinophylla 0 Brassaia_actinophylla 0 002 @ 13112664 n 0000 #m 11800359 n 0000 | erect evergreen shrub or small tree of Australia and northern New Guinea having palmately compound leaves -11800799 20 n 02 Aristolochiales 0 order_Aristolochiales 0 005 @ 11534677 n 0000 #m 11665781 n 0000 %m 11801038 n 0000 %m 11803118 n 0000 %m 11803277 n 0000 | order of plants distinguished by tubular petaloid perianth and inferior ovary -11801038 20 n 03 Aristolochiaceae 0 family_Aristolochiaceae 0 birthwort_family 0 004 @ 11562747 n 0000 #m 11800799 n 0000 %m 11801247 n 0000 %m 11802076 n 0000 | family of birthworts (including wild ginger) -11801247 20 n 02 Aristolochia 0 genus_Aristolochia 0 003 @ 11567411 n 0000 #m 11801038 n 0000 %m 11801392 n 0000 | birthworts; Dutchman's-pipe -11801392 20 n 02 birthwort 0 Aristolochia_clematitis 0 004 @ 13100677 n 0000 #m 11801247 n 0000 ~ 11801665 n 0000 ~ 11801891 n 0000 | creeping plant having curving flowers thought to resemble fetuses; native to Europe; naturalized Great Britain and eastern North America -11801665 20 n 04 Dutchman's-pipe 0 pipe_vine 0 Aristolochia_macrophylla 0 Aristolochia_durior 0 001 @ 11801392 n 0000 | hardy deciduous vine having large leaves and flowers with the calyx tube curved like the bowl of a pipe -11801891 20 n 04 Virginia_snakeroot 0 Virginia_serpentaria 0 Virginia_serpentary 0 Aristolochia_serpentaria 0 001 @ 11801392 n 0000 | birthwort of the eastern United States woodlands -11802076 20 n 02 Asarum 0 genus_Asarum 0 004 @ 11567411 n 0000 #m 11801038 n 0000 %m 11802212 n 0000 %m 11802800 n 0000 | wild ginger -11802212 20 n 01 wild_ginger 0 005 @ 12205694 n 0000 #m 11802076 n 0000 ~ 11802410 n 0000 ~ 11802586 n 0000 ~ 11802995 n 0000 | low-growing perennial herb with pungent gingery leaves and rhizomes -11802410 20 n 03 Canada_ginger 0 black_snakeroot 2 Asarum_canadense 0 001 @ 11802212 n 0000 | deciduous low-growing perennial of Canada and eastern and central United States -11802586 20 n 03 heartleaf 1 heart-leaf 1 Asarum_virginicum 0 001 @ 11802212 n 0000 | evergreen low-growing perennial having mottled green and silvery-grey heart-shaped pungent leaves; Virginia to South Carolina -11802800 20 n 03 heartleaf 2 heart-leaf 2 Asarum_shuttleworthii 0 002 @ 12205694 n 0000 #m 11802076 n 0000 | wild ginger having persistent heart-shaped pungent leaves; West Virginia to Alabama -11802995 20 n 02 asarabacca 0 Asarum_europaeum 0 001 @ 11802212 n 0000 | thick creeping evergreen herb of western Europe -11803118 20 n 02 Rafflesiaceae 0 family_Rafflesiaceae 0 002 @ 11562747 n 0000 #m 11800799 n 0000 | a family of parasitic plants of the order Aristolochiales -11803277 20 n 02 Hydnoraceae 0 family_Hydnoraceae 0 002 @ 11562747 n 0000 #m 11800799 n 0000 | a family of flowering plants in Africa and Argentina that are parasitic on the roots of other plants -11803475 20 n 02 Caryophyllidae 0 subclass_Caryophyllidae 0 006 @ 08103777 n 0000 #m 11665781 n 0000 %m 11565040 n 0000 %m 11573660 n 0000 %m 11804082 n 0000 %m 11841368 n 0000 | a group of families of mostly flowers having basal or central placentation and trinucleate pollen (binucleate pollen is commoner in flowering plants); contains 14 families including: Caryophyllaceae (carnations and pinks); Aizoaceae; Amaranthaceae; Batidaceae; Chenopodiaceae; Cactaceae (order Opuntiales); Nyctaginaceae; Phytolaccaceae; corresponds approximately to order Caryophyllales; sometimes classified as a superorder -11804082 20 n 04 Caryophyllales 0 order_Caryophyllales 0 Chenopodiales 0 order-Chenopodiales 0 010 @ 11534677 n 0000 #m 11803475 n 0000 %m 11804604 n 0000 %m 11818945 n 0000 %m 11822557 n 0000 %m 11827169 n 0000 %m 11827775 n 0000 %m 11835806 n 0000 %m 11854760 n 0000 %m 11856981 n 0000 | corresponds approximately to the older group Centrospermae -11804433 20 n 02 Centrospermae 0 group_Centrospermae 0 001 @ 07992450 n 0000 | used in former classification systems; approximately synonymous with order Caryophyllales -11804604 20 n 04 Caryophyllaceae 0 family_Caryophyllaceae 0 carnation_family 0 pink_family 0 025 @ 11565040 n 0000 #m 11804082 n 0000 + 02682406 a 0101 %m 11805255 n 0000 %m 11805380 n 0000 %m 11805837 n 0000 %m 11806975 n 0000 %m 11807849 n 0000 %m 11809922 n 0000 %m 11810190 n 0000 %m 11810559 n 0000 %m 11810918 n 0000 %m 11811308 n 0000 %m 11812358 n 0000 %m 11812573 n 0000 %m 11813309 n 0000 %m 11813830 n 0000 %m 11814059 n 0000 %m 11814440 n 0000 %m 11814824 n 0000 %m 11815194 n 0000 %m 11817000 n 0000 %m 11817329 n 0000 %m 11817774 n 0000 %m 11818515 n 0000 | large family of herbs or subshrubs (usually with stems swollen at the nodes) -11805255 20 n 01 caryophyllaceous_plant 0 002 @ 12205694 n 0000 #m 11804604 n 0000 | a plant of the family Caryophyllaceae -11805380 20 n 02 Agrostemma 0 genus_Agrostemma 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11805544 n 0000 | a caryophylloid dicot genus including corn cockles -11805544 20 n 04 corn_cockle 0 corn_campion 0 crown-of-the-field 0 Agrostemma_githago 0 002 @ 13085113 n 0000 #m 11805380 n 0000 | European annual having large trumpet-shaped reddish-purple flowers and poisonous seed; a common weed in grainfields and beside roadways; naturalized in America -11805837 20 n 02 Arenaria 0 genus_Arenaria 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11805956 n 0000 | sandworts -11805956 20 n 01 sandwort 1 007 @ 11669921 n 0000 #m 11805837 n 0000 ~ 11806219 n 0000 ~ 11806369 n 0000 ~ 11806521 n 0000 ~ 11806679 n 0000 ~ 11806814 n 0000 | low-growing chiefly perennial plant usually with small white flowers suitable for e.g. rock gardens -11806219 20 n 04 mountain_sandwort 0 mountain_starwort 0 mountain_daisy 0 Arenaria_groenlandica 0 001 @ 11805956 n 0000 | boreal or alpine sandwort -11806369 20 n 03 pine-barren_sandwort 0 longroot 0 Arenaria_caroliniana 0 001 @ 11805956 n 0000 | deep-rooted perennial of southeastern United States -11806521 20 n 02 seabeach_sandwort 0 Arenaria_peploides 0 001 @ 11805956 n 0000 | perennial succulent herb with small solitary axillary or terminal flowers -11806679 20 n 02 rock_sandwort 0 Arenaria_stricta 0 001 @ 11805956 n 0000 | low perennial tufted plant of southeastern North America -11806814 20 n 02 thyme-leaved_sandwort 0 Arenaria_serpyllifolia 0 001 @ 11805956 n 0000 | Eurasian annual sprawling plant naturalized throughout North America -11806975 20 n 02 Cerastium 0 genus_Cerastium 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11807108 n 0000 | mouse-eared chickweed -11807108 20 n 05 mouse-ear_chickweed 0 mouse_eared_chickweed 0 mouse_ear 1 clammy_chickweed 0 chickweed 2 005 @ 12205694 n 0000 #m 11806975 n 0000 ~ 11807367 n 0000 ~ 11807525 n 0000 ~ 11807696 n 0000 | any of various plants related to the common chickweed -11807367 20 n 03 field_chickweed 0 field_mouse-ear 0 Cerastium_arvense 0 001 @ 11807108 n 0000 | densely tufted perennial chickweed of north temperate zone -11807525 20 n 03 snow-in-summer 1 love-in-a-mist 2 Cerastium_tomentosum 0 001 @ 11807108 n 0000 | chickweed with hairy silver-grey leaves and rather large white flowers -11807696 20 n 03 Alpine_mouse-ear 0 Arctic_mouse-ear 0 Cerastium_alpinum 0 001 @ 11807108 n 0000 | widespread in the Arctic and on mountains in Europe -11807849 20 n 02 Dianthus 0 genus_Dianthus 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11807979 n 0000 | carnations and pinks -11807979 20 n 02 pink 0 garden_pink 0 010 @ 11669921 n 0000 #m 11807849 n 0000 ~ 11808299 n 0000 ~ 11808468 n 0000 ~ 11808721 n 0000 ~ 11809094 n 0000 ~ 11809271 n 0000 ~ 11809437 n 0000 ~ 11809594 n 0000 ~ 11809754 n 0000 | any of various flowers of plants of the genus Dianthus cultivated for their fragrant flowers -11808299 20 n 02 sweet_William 0 Dianthus_barbatus 0 001 @ 11807979 n 0000 | Eurasian pink widely cultivated for its flat-topped dense clusters of varicolored flowers -11808468 20 n 04 carnation 0 clove_pink 0 gillyflower 1 Dianthus_caryophyllus 0 002 @ 11807979 n 0000 + 00372960 a 0101 | Eurasian plant with pink to purple-red spice-scented usually double flowers; widely cultivated in many varieties and many colors -11808721 20 n 03 china_pink 0 rainbow_pink 0 Dianthus_chinensis 0 002 @ 11807979 n 0000 ~ 11808932 n 0000 | Chinese pink with deeply toothed rose-lilac flowers with a purplish eye; usually raised as an annual -11808932 20 n 02 Japanese_pink 0 Dianthus_chinensis_heddewigii 0 001 @ 11808721 n 0000 | a flowering variety of China pink distinguished by jagged-edged petals -11809094 20 n 02 maiden_pink 0 Dianthus_deltoides 0 001 @ 11807979 n 0000 | low-growing loosely mat-forming Eurasian pink with a single pale pink flower with a crimson center -11809271 20 n 02 cheddar_pink 0 Diangus_gratianopolitanus 0 001 @ 11807979 n 0000 | mat-forming perennial of central Europe with large fragrant pink or red flowers -11809437 20 n 02 button_pink 0 Dianthus_latifolius 0 001 @ 11807979 n 0000 | much-branched pink with flowers in clusters; closely related to sweet William -11809594 20 n 03 cottage_pink 0 grass_pink 2 Dianthus_plumarius 0 001 @ 11807979 n 0000 | European pink cultivated for its very fragrant pink or rosy flowers -11809754 20 n 02 fringed_pink 1 Dianthus_supurbus 0 001 @ 11807979 n 0000 | Eurasian perennial pink having fragrant lilac or rose flowers with deeply fringed margins -11809922 20 n 01 genus_Drypis 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11810030 n 0000 | one species -11810030 20 n 01 drypis 0 002 @ 12205694 n 0000 #m 11809922 n 0000 | spiny-leaved perennial herb of southern Europe having terminal clusters of small flowers -11810190 20 n 02 Gypsophila 0 genus_Gypsophila 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11810358 n 0000 | Mediterranean herbs having small white or pink flowers -11810358 20 n 03 baby's_breath 0 babies'-breath 0 Gypsophila_paniculata 0 002 @ 11669921 n 0000 #m 11810190 n 0000 | tall plant with small lance-shaped leaves and numerous tiny white or pink flowers -11810559 20 n 02 Hernaria 0 genus_Hernaria 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11810728 n 0000 | low-growing Old World herbs with minute bright green leaves -11810728 20 n 02 rupturewort 0 Hernaria_glabra 0 002 @ 13112427 n 0000 #m 11810559 n 0000 | common prostrate Old World herb often used as a ground cover; formerly reputed to cure ruptures -11810918 20 n 02 Illecebrum 0 genus_Illecebrum 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11811059 n 0000 | one species: coral necklace -11811059 20 n 02 coral_necklace 0 Illecebrum_verticullatum 0 002 @ 12205694 n 0000 #m 11810918 n 0000 | glabrous annual with slender taproot and clusters of white flowers; western Europe especially western Mediterranean and Atlantic coastal areas -11811308 20 n 01 genus_Lychnis 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11811473 n 0000 | genus of plants strongly resembling those of genus Silene: catchfly -11811473 20 n 02 lychnis 0 catchfly 1 005 @ 11669921 n 0000 #m 11811308 n 0000 ~ 11811706 n 0000 ~ 11811921 n 0000 ~ 11812094 n 0000 | mostly perennial herbs with sticky stems that catch insects; widespread in north temperate zone -11811706 20 n 04 ragged_robin 0 cuckoo_flower 0 Lychnis_flos-cuculi 0 Lychins_floscuculi 0 001 @ 11811473 n 0000 | common perennial native to Europe and western Asia having usually pink flowers with ragged petals -11811921 20 n 03 scarlet_lychnis 0 maltese_cross 0 Lychins_chalcedonica 0 001 @ 11811473 n 0000 | Eurasian garden perennial having scarlet flowers in dense terminal heads -11812094 20 n 05 mullein_pink 0 rose_campion 0 gardener's_delight 0 dusty_miller 5 Lychnis_coronaria 0 001 @ 11811473 n 0000 | an old cottage garden plant of southeastern Europe widely cultivated for its attractive white woolly foliage and showy crimson flowers -11812358 20 n 02 Minuartia 0 genus_Minuartia 0 002 @ 11573660 n 0000 #m 11804604 n 0000 | mostly perennial herbs of northern hemisphere often with mat-forming habit; most often placed in genus Arenaria: sandworts -11812573 20 n 02 Moehringia 0 genus_Moehringia 0 004 @ 11573660 n 0000 #m 11804604 n 0000 %m 11812910 n 0000 %m 11813077 n 0000 | low-growing herbs widely distributed in temperate and Arctic northern hemisphere: sandworts; distinguished from members of the genus Arenaria mainly by having four-petaled rather than five-petaled flowers -11812910 20 n 02 sandwort 2 Moehringia_lateriflora 0 002 @ 11669921 n 0000 #m 11812573 n 0000 | low-growing herb having clusters of small white four-petaled flowers -11813077 20 n 02 sandwort 3 Moehringia_mucosa 0 002 @ 11669921 n 0000 #m 11812573 n 0000 | loosely matted plant with moss-like foliage studded with tiny starry four-petaled white blossoms; mountains of central and southern Europe -11813309 20 n 02 Paronychia 0 genus_Paronychia 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11813490 n 0000 | low-growing annual or perennial herbs or woody plants; whitlowworts -11813490 20 n 01 whitlowwort 0 002 @ 13112427 n 0000 #m 11813309 n 0000 | any of various low-growing tufted plants of the genus Paronychia having tiny greenish flowers and usually whorled leaves; widespread throughout warm regions of both Old and New Worlds; formerly thought to cure whitlows (suppurative infections around a fingernail) -11813830 20 n 02 Petrocoptis 0 genus_Petrocoptis 0 002 @ 11573660 n 0000 #m 11804604 n 0000 | perennial tussock-forming rock plants; of Pyrenees and mountains of northern Spain; similar to and sometimes placed in genus Lychnis -11814059 20 n 02 Sagina 0 genus_Sagina 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11814238 n 0000 | small low-growing annual or perennial herbs of temperate and cool regions -11814238 20 n 03 pearlwort 0 pearlweed 0 pearl-weed 0 002 @ 13112427 n 0000 #m 11814059 n 0000 | any of various low-growing plants of the genus Sagina having small spherical flowers resembling pearls -11814440 20 n 02 Saponaria 0 genus_Saponaria 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11814584 n 0000 | mostly perennial Old World herbs -11814584 20 n 05 soapwort 0 hedge_pink 0 bouncing_Bet 0 bouncing_Bess 0 Saponaria_officinalis 0 002 @ 11669921 n 0000 #m 11814440 n 0000 | plant of European origin having pink or white flowers and leaves yielding a detergent when bruised -11814824 20 n 02 Scleranthus 0 genus_Scleranthus 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11814996 n 0000 | small genus of Old World weedy prostrate annuals: knawel -11814996 20 n 03 knawel 0 knawe 0 Scleranthus_annuus 0 002 @ 13085113 n 0000 #m 11814824 n 0000 | widely distributed low-growing Eurasian herb having narrow leaves and inconspicuous green flowers -11815194 20 n 01 genus_Silene 0 008 @ 11573660 n 0000 #m 11804604 n 0000 %m 11815491 n 0000 %m 11815721 n 0000 %m 11815918 n 0000 %m 11816121 n 0000 %m 11816336 n 0000 %m 11816649 n 0000 | large widely distributed genus of plants having mostly showy flowers of various colors: campion; catchfly -11815491 20 n 03 silene 0 campion 0 catchfly 2 008 @ 11669921 n 0000 #m 11815194 n 0000 ~ 11815721 n 0000 ~ 11815918 n 0000 ~ 11816121 n 0000 ~ 11816336 n 0000 ~ 11816649 n 0000 ~ 11816829 n 0000 | any plant of the genus Silene -11815721 20 n 02 moss_campion 0 Silene_acaulis 0 002 @ 11815491 n 0000 #m 11815194 n 0000 | tuft- or mat-forming dwarf perennial of Arctic regions of western and central Europe and North America -11815918 20 n 02 wild_pink 1 Silene_caroliniana 0 002 @ 11815491 n 0000 #m 11815194 n 0000 | perennial of eastern and central North America having short-stalked pink or white flowers in hairy clusters -11816121 20 n 04 red_campion 0 red_bird's_eye 0 Silene_dioica 0 Lychnis_dioica 0 002 @ 11815491 n 0000 #m 11815194 n 0000 | biennial European catchfly having red or pink flowers; sometimes placed in genus Lychnis -11816336 20 n 06 white_campion 0 evening_lychnis 0 white_cockle 0 bladder_campion 1 Silene_latifolia 0 Lychnis_alba 0 002 @ 11815491 n 0000 #m 11815194 n 0000 | bluish-green herb having sticky stems and clusters of large evening-opening white flowers with much-inflated calyx; sometimes placed in genus Lychnis -11816649 20 n 02 fire_pink 0 Silene_virginica 0 002 @ 11815491 n 0000 #m 11815194 n 0000 | perennial herb of eastern North America, having red flowers with narrow notched petals -11816829 20 n 03 bladder_campion 2 Silene_uniflora 0 Silene_vulgaris 0 001 @ 11815491 n 0000 | perennial of Arctic Europe having large white flowers with inflated calyx -11817000 20 n 02 Spergula 0 genus_Spergula 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11817160 n 0000 | small genus of Old World annual herbs: corn spurry -11817160 20 n 03 corn_spurry 0 corn_spurrey 0 Spergula_arvensis 0 002 @ 13085113 n 0000 #m 11817000 n 0000 | small European weed with whorled leaves and white flowers -11817329 20 n 02 Spergularia 0 genus_Spergularia 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11817501 n 0000 | chiefly maritime Eurasian herbs: sand spurry; sea spurry -11817501 20 n 03 sand_spurry 0 sea_spurry 0 Spergularia_rubra 0 002 @ 13085113 n 0000 #m 11817329 n 0000 | prostrate weedy herb with tiny pink flowers; widespread throughout Europe and Asia on sand dunes and heath and coastal cliffs; naturalized in eastern North America -11817774 20 n 02 Stellaria 0 genus_Stellaria 0 003 @ 11565040 n 0000 #m 11804604 n 0000 %m 11817914 n 0000 | common chickweed; stitchwort -11817914 20 n 01 chickweed 0 004 @ 12205694 n 0000 #m 11817774 n 0000 ~ 11818069 n 0000 ~ 11818271 n 0000 | any of various plants of the genus Stellaria -11818069 20 n 02 common_chickweed 0 Stellaria_media 0 001 @ 11817914 n 0000 | a common low-growing annual garden weed with small white flowers; cosmopolitan; so-called because it is eaten by chickens -11818271 20 n 04 stitchwort 0 greater_stitchwort 0 starwort 0 Stellaria_holostea 0 001 @ 11817914 n 0000 | low-growing north temperate herb having small white star-shaped flowers; named for its alleged ability to ease sharp pains in the side -11818515 20 n 02 Vaccaria 0 genus_Vaccaria 0 003 @ 11573660 n 0000 #m 11804604 n 0000 %m 11818636 n 0000 | cow-cockles -11818636 20 n 05 cowherb 0 cow_cockle 0 Vaccaria_hispanica 0 Vaccaria_pyramidata 0 Saponaria_vaccaria 0 002 @ 11669921 n 0000 #m 11818515 n 0000 | European annual with pale rose-colored flowers; cultivated flower or self-sown grainfield weed; introduced in North America; sometimes classified as a soapwort -11818945 20 n 05 Aizoaceae 0 family_Aizoaceae 0 Tetragoniaceae 0 family_Tetragoniaceae 0 carpetweed_family 0 009 @ 11565040 n 0000 #m 11804082 n 0000 %m 11819354 n 0000 %m 11819751 n 0000 %m 11820323 n 0000 %m 11820751 n 0000 %m 11821415 n 0000 %m 11821777 n 0000 %m 11822167 n 0000 | succulent herbs or small shrubs mostly of South Africa but also New Zealand and North America: carpetweeds; fig marigolds -11819354 20 n 02 Carpobrotus 0 genus_Carpobrotus 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11819509 n 0000 | a caryophyllaceous genus of Carpobrotus -11819509 20 n 05 Hottentot_fig 0 Hottentot's_fig 0 sour_fig 0 Carpobrotus_edulis 0 Mesembryanthemum_edule 0 002 @ 13084184 n 0000 #m 11819354 n 0000 | low-growing South African succulent plant having a capsular fruit containing edible pulp -11819751 20 n 02 Dorotheanthus 0 genus_Dorotheanthus 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11819912 n 0000 | a caryophyllaceous genus of Dorotheanthus -11819912 20 n 02 livingstone_daisy 0 Dorotheanthus_bellidiformis 0 002 @ 13084184 n 0000 #m 11819751 n 0000 | low-growing showy succulent annual of South Africa having white or pink or red or orange flowers and spatulate leaves covered in papillae that resemble small crystals -11820191 20 n 01 papilla 0 002 @ 05470189 n 0000 ;c 06066555 n 0000 | (botany) a tiny outgrowth on the surface of a petal or leaf -11820323 20 n 01 genus_Lithops 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11820463 n 0000 | genus of stemless South African succulents -11820463 20 n 07 lithops 0 living_stone 0 stoneface 0 stone-face 0 stone_plant 0 stone_life_face 0 flowering_stone 0 002 @ 13084184 n 0000 #m 11820323 n 0000 | any plant of the genus Lithops native to Africa having solitary yellow or white flowers and thick leaves that resemble stones -11820751 20 n 02 Mesembryanthemum 0 genus_Mesembryanthemum 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11820965 n 0000 | South African annual or biennial plants having flowers that open only in bright sunlight -11820965 20 n 02 fig_marigold 0 pebble_plant 0 003 @ 11669921 n 0000 #m 11820751 n 0000 ~ 11821184 n 0000 | any of several South African plants of the genus Mesembryanthemum cultivated for showy pink or white flowers -11821184 20 n 03 ice_plant 0 icicle_plant 0 Mesembryanthemum_crystallinum 0 001 @ 11820965 n 0000 | Old World annual widely naturalized in warm regions having white flowers and fleshy foliage covered with hairs that resemble ice -11821415 20 n 02 Molluga 0 genus_Molluga 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11821534 n 0000 | carpetweeds -11821534 20 n 03 carpetweed 0 Indian_chickweed 0 Molluga_verticillata 0 002 @ 13085113 n 0000 #m 11821415 n 0000 | annual prostrate mat-forming weed having whorled leaves and small greenish-white flowers; widespread throughout North America -11821777 20 n 02 Pleiospilos 0 genus_Pleiospilos 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11821929 n 0000 | perennial succulents of South Africa -11821929 20 n 03 living_granite 0 living_rock 2 stone_mimicry_plant 0 002 @ 13084184 n 0000 #m 11821777 n 0000 | highly succulent stemless clump-forming plants with grey-green leaves similar in texture to lumps of granite; South Africa -11822167 20 n 02 Tetragonia 0 genus_Tetragonia 0 003 @ 11573660 n 0000 #m 11818945 n 0000 %m 11822300 n 0000 | New Zealand spinach -11822300 20 n 03 New_Zealand_spinach 0 Tetragonia_tetragonioides 0 Tetragonia_expansa 0 002 @ 12205694 n 0000 #m 11822167 n 0000 | coarse sprawling Australasian plant with red or yellow flowers; cultivated for its edible young shoots and succulent leaves -11822557 20 n 03 Amaranthaceae 0 family_Amaranthaceae 0 amaranth_family 0 009 @ 11565040 n 0000 #m 11804082 n 0000 %m 11822849 n 0000 %m 11824548 n 0000 %m 11825013 n 0000 %m 11825535 n 0000 %m 11825988 n 0000 %m 11826416 n 0000 %m 11826999 n 0000 | cosmopolitan family of herbs and shrubs -11822849 20 n 02 Amaranthus 0 genus_Amaranthus 0 004 @ 11573660 n 0000 #m 11822557 n 0000 %m 11823043 n 0000 %m 11824344 n 0000 | large widely distributed genus of chiefly coarse annual herbs -11823043 20 n 01 amaranth 1 006 @ 12205694 n 0000 #m 11822849 n 0000 ~ 11823436 n 0000 ~ 11823572 n 0000 ~ 11823756 n 0000 ~ 11824146 n 0000 | any of various plants of the genus Amaranthus having dense plumes of green or red flowers; often cultivated for food -11823305 20 n 01 amaranth 2 001 @ 12156819 n 0000 | seed of amaranth plants used as a native cereal in Central and South America -11823436 20 n 03 tumbleweed 2 Amaranthus_albus 0 Amaranthus_graecizans 0 001 @ 11823043 n 0000 | bushy plant of western United States -11823572 20 n 04 love-lies-bleeding 0 velvet_flower 0 tassel_flower 1 Amaranthus_caudatus 0 001 @ 11823043 n 0000 | young leaves widely used as leaf vegetables; seeds used as cereal -11823756 20 n 08 prince's-feather 2 gentleman's-cane 0 prince's-plume 1 red_amaranth 0 purple_amaranth 0 Amaranthus_cruentus 0 Amaranthus_hybridus_hypochondriacus 0 Amaranthus_hybridus_erythrostachys 0 001 @ 11823043 n 0000 | tall showy tropical American annual having hairy stems and long spikes of usually red flowers above leaves deeply flushed with purple; seeds often used as cereal -11824146 20 n 02 pigweed 2 Amaranthus_hypochondriacus 0 001 @ 11823043 n 0000 | leaves sometimes used as potherbs; seeds used as cereal; southern United States to Central America; India and China -11824344 20 n 02 thorny_amaranth 0 Amaranthus_spinosus 0 002 @ 12205694 n 0000 #m 11822849 n 0000 | erect annual of tropical central Asia and Africa having a pair of divergent spines at most leaf nodes -11824548 20 n 02 Alternanthera 0 genus_Alternanthera 0 003 @ 11573660 n 0000 #m 11822557 n 0000 %m 11824747 n 0000 | genus of low herbs of tropical America and Australia; includes genus Telanthera -11824747 20 n 03 alligator_weed 0 alligator_grass 0 Alternanthera_philoxeroides 0 002 @ 13085113 n 0000 #m 11824548 n 0000 | prolific South American aquatic weed having grasslike leaves and short spikes of white flowers; clogs waterways with dense floating masses -11825013 20 n 02 Celosia 0 genus_Celosia 0 003 @ 11573660 n 0000 #m 11822557 n 0000 %m 11825211 n 0000 | annual or perennial herbs or vines of tropical and subtropical America and Asia and Africa -11825211 20 n 02 red_fox 0 Celosia_argentea 0 002 @ 12205694 n 0000 #m 11825013 n 0000 | weedy annual with spikes of silver-white flowers -11825351 20 n 04 cockscomb 0 common_cockscomb 0 Celosia_cristata 0 Celosia_argentea_cristata 0 001 @ 12205694 n 0000 | garden annual with featherlike spikes of red or yellow flowers -11825535 20 n 02 Froelichia 0 genus_Froelichia 0 003 @ 11573660 n 0000 #m 11822557 n 0000 %m 11825749 n 0000 | genus of erect or procumbent herbs of the Americas having spikes of woolly white flowers: cottonweed -11825749 20 n 01 cottonweed 1 002 @ 12205694 n 0000 #m 11825535 n 0000 | any of various plants of the genus Froelichia found in sandy soils and on rocky slopes in warmer regions of America; grown for their spikes of woolly white flowers -11825988 20 n 02 Gomphrena 0 genus_Gomphrena 0 003 @ 11573660 n 0000 #m 11822557 n 0000 %m 11826198 n 0000 | genus of tropical herbs or subshrubs having flowers in close heads; tropical America and Australia -11826198 20 n 03 globe_amaranth 0 bachelor's_button 2 Gomphrena_globosa 0 002 @ 11669921 n 0000 #m 11825988 n 0000 | tropical American herb having rose to red or purple flowers that can be dried without losing color -11826416 20 n 02 Iresine 0 genus_Iresine 0 003 @ 11573660 n 0000 #m 11822557 n 0000 %m 11826569 n 0000 | genus of tropical American herbs or subshrubs -11826569 20 n 01 bloodleaf 0 003 @ 13118707 n 0000 #m 11826416 n 0000 ~ 11826715 n 0000 | any plant of the genus Iresine having colored foliage -11826715 20 n 04 beefsteak_plant 1 beef_plant 0 Iresine_herbstii 0 Iresine_reticulata 0 001 @ 11826569 n 0000 | South American plant having green to purple or red branches with green to purple ornamental foliage and spikes of insignificant woolly flowers with dry membranous bracts -11826999 20 n 02 Telanthera 0 genus_Telanthera 0 002 @ 11573660 n 0000 #m 11822557 n 0000 | used in former classifications systems; now included in genus Alternanthera -11827169 20 n 03 Batidaceae 0 family_Batidaceae 0 saltwort_family 0 003 @ 11565040 n 0000 #m 11804082 n 0000 %m 11827348 n 0000 | family coextensive with genus Batis: saltworts -11827348 20 n 02 Batis 0 genus_Batis 0 003 @ 11573660 n 0000 #m 11827169 n 0000 %m 11827541 n 0000 | small genus of plants constituting the family Batidaceae: low straggling dioecious shrubs -11827541 20 n 02 saltwort 1 Batis_maritima 0 002 @ 13112664 n 0000 #m 11827348 n 0000 | low-growing strong-smelling coastal shrub of warm parts of the New World having unisexual flowers in conelike spikes and thick succulent leaves -11827775 20 n 03 Chenopodiaceae 0 family_Chenopodiaceae 0 goosefoot_family 0 012 @ 11565040 n 0000 #m 11804082 n 0000 %m 11828113 n 0000 %m 11830570 n 0000 %m 11831730 n 0000 ~ 11832108 n 0000 %m 11833208 n 0000 %m 11833577 n 0000 %m 11834148 n 0000 %m 11834521 n 0000 %m 11835114 n 0000 %m 11835451 n 0000 | includes spinach and beets -11828113 20 n 02 Chenopodium 0 genus_Chenopodium 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11828247 n 0000 | goosefoot; pigweed -11828247 20 n 01 goosefoot 0 012 @ 12205694 n 0000 #m 11828113 n 0000 ~ 11828577 n 0000 ~ 11828804 n 0000 ~ 11828973 n 0000 ~ 11829205 n 0000 ~ 11829435 n 0000 ~ 11829672 n 0000 ~ 11829922 n 0000 ~ 11830045 n 0000 ~ 11830252 n 0000 ~ 11830400 n 0000 | any of various weeds of the genus Chenopodium having small greenish flowers -11828577 20 n 04 lamb's-quarters 0 pigweed 1 wild_spinach 1 Chenopodium_album 0 003 @ 11828247 n 0000 %p 07733712 n 0000 %p 07733847 n 0000 | common weedy European plant introduced into North America; often used as a potherb -11828804 20 n 05 American_wormseed 0 Mexican_tea 1 Spanish_tea 0 wormseed 0 Chenopodium_ambrosioides 0 001 @ 11828247 n 0000 | rank-smelling tropical American pigweed -11828973 20 n 05 good-king-henry 0 allgood 0 fat_hen 0 wild_spinach 2 Chenopodium_bonus-henricus 0 002 @ 11828247 n 0000 %p 07733847 n 0000 | European plant naturalized in North America; often collected from the wild as a potherb -11829205 20 n 05 Jerusalem_oak 0 feather_geranium 0 Mexican_tea 2 Chenopodium_botrys 0 Atriplex_mexicana 0 001 @ 11828247 n 0000 | Eurasian aromatic oak-leaved goosefoot with many yellow-green flowers; naturalized North America -11829435 20 n 04 strawberry_blite 0 strawberry_pigweed 0 Indian_paint 0 Chenopodium_capitatum 0 001 @ 11828247 n 0000 | European annual with clusters of greenish flowers followed by red pulpy berrylike fruit; naturalized North America -11829672 20 n 03 oak-leaved_goosefoot 0 oakleaf_goosefoot 0 Chenopodium_glaucum 0 001 @ 11828247 n 0000 | annual European plant with spikes of greenish flowers and leaves that are white and hairy on the underside; common as a weed in North America -11829922 20 n 03 sowbane 0 red_goosefoot 2 Chenopodium_hybridum 0 001 @ 11828247 n 0000 | herb considered fatal to swine -11830045 20 n 03 nettle-leaved_goosefoot 0 nettleleaf_goosefoot 0 Chenopodium_murale 0 001 @ 11828247 n 0000 | European annual with coarsely dentate leaves; widespread in United States and southern Canada -11830252 20 n 03 red_goosefoot 1 French_spinach 0 Chenopodium_rubrum 0 001 @ 11828247 n 0000 | common Eurasian weed; naturalized in United States -11830400 20 n 02 stinking_goosefoot 0 Chenopodium_vulvaria 0 001 @ 11828247 n 0000 | European goosefoot with strong-scented foliage; adventive in eastern North America -11830570 20 n 02 Atriplex 0 genus_Atriplex 0 004 @ 11573660 n 0000 #m 11827775 n 0000 %m 11830714 n 0000 %m 11830906 n 0000 | orach; saltbush -11830714 20 n 02 orach 0 orache 0 003 @ 12205694 n 0000 #m 11830570 n 0000 ~ 11831100 n 0000 | any of various herbaceous plants of the genus Atriplex that thrive in deserts and salt marshes -11830906 20 n 01 saltbush 0 004 @ 13112664 n 0000 #m 11830570 n 0000 ~ 11831297 n 0000 ~ 11831521 n 0000 | any of various shrubby plants of the genus Atriplex that thrive in dry alkaline soil -11831100 20 n 03 garden_orache 0 mountain_spinach 0 Atriplex_hortensis 0 001 @ 11830714 n 0000 | Asiatic plant resembling spinach often used as a potherb; naturalized in Europe and North America -11831297 20 n 02 desert_holly 0 Atriplex_hymenelytra 0 001 @ 11830906 n 0000 | handsome low saltbush of arid southwestern United States and Mexico having blue-green prickly-edged leaves often used for Christmas decoration -11831521 20 n 04 quail_bush 0 quail_brush 0 white_thistle 1 Atriplex_lentiformis 0 001 @ 11830906 n 0000 | spiny shrub with silvery-scurfy foliage of alkaline plains of southwestern United States and Mexico -11831730 20 n 04 Bassia 0 genus_Bassia 0 Kochia 0 genus_Kochia 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11831874 n 0000 | summer cypress -11831874 20 n 07 summer_cypress 0 burning_bush 1 fire_bush 1 fire-bush 1 belvedere 0 Bassia_scoparia 0 Kochia_scoparia 0 002 @ 13112664 n 0000 #m 11831730 n 0000 | densely branched Eurasian plant; foliage turns purple-red in autumn -11832108 20 n 02 Beta 0 genus_Beta 0 003 @ 11573660 n 0000 @ 11827775 n 0000 %m 11832214 n 0000 | beets -11832214 20 n 03 beet 0 common_beet 0 Beta_vulgaris 1 006 @ 12212361 n 0000 #m 11832108 n 0000 ~ 11832480 n 0000 ~ 11832671 n 0000 ~ 11832899 n 0000 ~ 11833073 n 0000 | biennial Eurasian plant usually having a swollen edible root; widely cultivated as a food crop -11832480 20 n 02 beetroot 0 Beta_vulgaris_rubra 0 003 @ 11832214 n 0000 %p 07719839 n 0000 %p 07719980 n 0000 | beet having a massively swollen red root; widely grown for human consumption -11832671 20 n 06 chard 0 Swiss_chard 0 spinach_beet 0 leaf_beet 0 chard_plant 0 Beta_vulgaris_cicla 0 002 @ 11832214 n 0000 %p 07720277 n 0000 | beet lacking swollen root; grown as a vegetable for its edible leaves and stalks -11832899 20 n 04 mangel-wurzel 0 mangold-wurzel 0 mangold 0 Beta_vulgaris_vulgaris 0 001 @ 11832214 n 0000 | beet with a large yellowish root; grown chiefly as cattle feed -11833073 20 n 01 sugar_beet 0 001 @ 11832214 n 0000 | form of the common beet having a sweet white root from which sugar is obtained -11833208 20 n 02 Cycloloma 0 genus_Cycloloma 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11833373 n 0000 | a caryophyllaceous genus of the family Chenopodiaceae -11833373 20 n 03 winged_pigweed 0 tumbleweed 1 Cycloloma_atriplicifolium 0 002 @ 13112664 n 0000 #m 11833208 n 0000 | bushy annual weed of central North America having greenish flowers and winged seeds -11833577 20 n 01 genus_Halogeton 0 004 @ 11573660 n 0000 #m 11827775 n 0000 %m 11833749 n 0000 %m 11833999 n 0000 | a caryophyllaceous genus of the family Chenopodiaceae -11833749 20 n 02 halogeton 0 Halogeton_glomeratus 0 002 @ 12205694 n 0000 #m 11833577 n 0000 | a coarse annual herb introduced into North America from Siberia; dangerous to sheep and cattle on western rangelands because of its high oxalate content -11833999 20 n 02 barilla 1 Halogeton_souda 0 002 @ 12205694 n 0000 #m 11833577 n 0000 | Algerian plant formerly burned to obtain calcium carbonate -11834148 20 n 02 Salicornia 0 genus_Salicornia 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11834272 n 0000 | glassworts -11834272 20 n 03 glasswort 0 samphire 0 Salicornia_europaea 0 002 @ 12205694 n 0000 #m 11834148 n 0000 | fleshy maritime plant having fleshy stems with rudimentary scalelike leaves and small spikes of minute flowers; formerly used in making glass -11834521 20 n 02 Salsola 0 genus_Salsola 0 002 @ 11573660 n 0000 #m 11827775 n 0000 | chiefly Old World herbs or shrubs: saltworts -11834654 20 n 07 saltwort 2 barilla 2 glasswort 2 kali 0 kelpwort 0 Salsola_kali 0 Salsola_soda 0 001 @ 13112664 n 0000 | bushy plant of Old World salt marshes and sea beaches having prickly leaves; burned to produce a crude soda ash -11834890 20 n 05 Russian_thistle 0 Russian_tumbleweed 0 Russian_cactus 0 tumbleweed 3 Salsola_kali_tenuifolia 0 001 @ 13112664 n 0000 | prickly bushy Eurasian plant; a troublesome weed in central and western United States -11835114 20 n 02 Sarcobatus 0 genus_Sarcobatus 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11835251 n 0000 | one species: greasewood -11835251 20 n 03 greasewood 1 black_greasewood 0 Sarcobatus_vermiculatus 0 002 @ 13112664 n 0000 #m 11835114 n 0000 | low hardy much-branched spiny shrub common in alkaline soils of western America -11835451 20 n 02 Spinacia 0 genus_Spinacia 0 003 @ 11573660 n 0000 #m 11827775 n 0000 %m 11835568 n 0000 | spinach -11835568 20 n 04 spinach 0 spinach_plant 0 prickly-seeded_spinach 0 Spinacia_oleracea 0 003 @ 12212361 n 0000 #m 11835451 n 0000 %p 07736692 n 0000 | southwestern Asian plant widely cultivated for its succulent edible dark green leaves -11835806 20 n 05 Nyctaginaceae 0 family_Nyctaginaceae 0 Allioniaceae 0 family_Allioniaceae 0 four-o'clock_family 0 008 @ 11565040 n 0000 #m 11804082 n 0000 %m 11836137 n 0000 %m 11836556 n 0000 %m 11838266 n 0000 %m 11838741 n 0000 %m 11839297 n 0000 %m 11841061 n 0000 | a family of flowering plants of the order Caryophyllales -11836137 20 n 02 Nyctaginia 0 genus_Nyctaginia 0 003 @ 11573660 n 0000 #m 11835806 n 0000 %m 11836327 n 0000 | a caryophyllaceous genus of the family Nyctaginaceae having only one species -11836327 20 n 02 scarlet_musk_flower 0 Nyctaginia_capitata 0 002 @ 11669921 n 0000 #m 11836137 n 0000 | viscid branched perennial of the southwestern United States and northern Mexico having tuberous roots and deep red flowers -11836556 20 n 02 Abronia 0 genus_Abronia 0 003 @ 11573660 n 0000 #m 11835806 n 0000 %m 11836722 n 0000 | genus of western North American herbs having showy flowers -11836722 20 n 01 sand_verbena 0 008 @ 11672400 n 0000 #m 11836556 n 0000 ~ 11837020 n 0000 ~ 11837204 n 0000 ~ 11837351 n 0000 ~ 11837562 n 0000 ~ 11837743 n 0000 ~ 11837970 n 0000 | any of various plants of the genus Abronia of western North America and Mexico having flowers resembling verbena -11837020 20 n 03 snowball 0 sweet_sand_verbena 1 Abronia_elliptica 0 001 @ 11836722 n 0000 | plant having heads of fragrant white trumpet-shaped flowers; grows in sandy arid regions -11837204 20 n 02 sweet_sand_verbena 2 Abronia_fragrans 0 001 @ 11836722 n 0000 | taller than Abronia elliptica and having night-blooming flowers -11837351 20 n 02 yellow_sand_verbena 0 Abronia_latifolia 0 001 @ 11836722 n 0000 | plant having hemispherical heads of yellow trumpet-shaped flowers; found in coastal dunes from California to British Columbia -11837562 20 n 02 beach_pancake 0 Abronia_maritima 0 001 @ 11836722 n 0000 | plant having hemispherical heads of wine-red flowers; found in coastal dunes from California to Mexico -11837743 20 n 03 beach_sand_verbena 0 pink_sand_verbena 0 Abronia_umbellata 0 001 @ 11836722 n 0000 | prostrate herb having heads of deep pink to white flowers; found in coastal dunes from British Columbia to Baja California -11837970 20 n 02 desert_sand_verbena 0 Abronia_villosa 0 001 @ 11836722 n 0000 | soft-haired sticky plant with heads of bright pink trumpet-shaped flowers; found in sandy desert soil; after ample rains may carpet miles of desert with pink from the southwestern United States to northern Mexico -11838266 20 n 02 Allionia 0 genus_Allionia 0 003 @ 11573660 n 0000 #m 11835806 n 0000 %m 11838413 n 0000 | small genus of chiefly American herbs -11838413 20 n 03 trailing_four_o'clock 0 trailing_windmills 0 Allionia_incarnata 0 002 @ 11672400 n 0000 #m 11838266 n 0000 | trailing plant having crowded clusters of 3 brilliant deep pink flowers resembling a single flower blooming near the ground; found in dry gravelly or sandy soil; southwestern United States and Mexico -11838741 20 n 03 genus_Bougainvillea 0 Bougainvillaea 0 genus_Bougainvillaea 0 003 @ 11573660 n 0000 #m 11835806 n 0000 %m 11838916 n 0000 | ornamental tropical woody vines -11838916 20 n 01 bougainvillea 0 003 @ 13100677 n 0000 #m 11838741 n 0000 ~ 11839167 n 0000 | any of several South American ornamental woody vines of the genus Bougainvillea having brilliant red or purple flower bracts; widely grown in warm regions -11839167 20 n 02 paper_flower 0 Bougainvillea_glabra 0 001 @ 11838916 n 0000 | Brazilian vine that tends to flower continuously -11839297 20 n 02 Mirabilis 0 genus_Mirabilis 0 005 @ 11573660 n 0000 #m 11835806 n 0000 %m 11839460 n 0000 %m 11839568 n 0000 %m 11840067 n 0000 | four o'clocks -11839460 20 n 01 umbrellawort 0 002 @ 11669921 n 0000 #m 11839297 n 0000 | a plant of the genus Mirabilis -11839568 20 n 01 four_o'clock 0 007 @ 11669921 n 0000 #m 11839297 n 0000 ~ 11839823 n 0000 ~ 11840067 n 0000 ~ 11840246 n 0000 ~ 11840476 n 0000 ~ 11840764 n 0000 | any of several plants of the genus Mirabilis having flowers that open in late afternoon -11839823 20 n 04 common_four-o'clock 0 marvel-of-Peru 0 Mirabilis_jalapa 0 Mirabilis_uniflora 0 001 @ 11839568 n 0000 | common garden plant of North America having fragrant red or purple or yellow or white flowers that open in late afternoon -11840067 20 n 03 California_four_o'clock 0 Mirabilis_laevis 0 Mirabilis_californica 0 002 @ 11839568 n 0000 #m 11839297 n 0000 | California four o'clock with purple-red flowers -11840246 20 n 03 sweet_four_o'clock 0 maravilla 1 Mirabilis_longiflora 0 001 @ 11839568 n 0000 | leafy wildflower having fragrant slender white or pale pink trumpet-shaped flowers; southwestern United States and northern Mexico -11840476 20 n 04 desert_four_o'clock 0 Colorado_four_o'clock 0 maravilla 2 Mirabilis_multiflora 0 001 @ 11839568 n 0000 | wildflower having vibrant deep pink tubular evening-blooming flowers; found in sandy and desert areas from southern California to southern Colorado and into Mexico -11840764 20 n 02 mountain_four_o'clock 0 Mirabilis_oblongifolia 0 001 @ 11839568 n 0000 | leafy wildflower with lavender-pink flowers that open in the evening and remain through cool part of the next day; found in open woods or brush in mountains of southern Colorado to Arizona and into Mexico -11841061 20 n 02 Pisonia 0 genus_Pisonia 0 003 @ 11573660 n 0000 #m 11835806 n 0000 %m 11841247 n 0000 | genus of often thorny tropical trees and shrubs and some vines; mainly America -11841247 20 n 02 cockspur 1 Pisonia_aculeata 0 002 @ 13104059 n 0000 #m 11841061 n 0000 | small spiny West Indian tree -11841368 20 n 02 Opuntiales 0 order_Opuntiales 0 003 @ 11534677 n 0000 #m 11803475 n 0000 %m 11841529 n 0000 | coextensive with the family Cactaceae: cactuses -11841529 20 n 03 Cactaceae 0 family_Cactaceae 0 cactus_family 0 030 @ 11565040 n 0000 #m 11841368 n 0000 %m 11842204 n 0000 %m 11842861 n 0000 %m 11843285 n 0000 %m 11843709 n 0000 %m 11844203 n 0000 %m 11844651 n 0000 %m 11845019 n 0000 %m 11845387 n 0000 %m 11846087 n 0000 %m 11846582 n 0000 %m 11846970 n 0000 %m 11847414 n 0000 %m 11847615 n 0000 %m 11847841 n 0000 %m 11848253 n 0000 %m 11848610 n 0000 %m 11849017 n 0000 %m 11849666 n 0000 %m 11850136 n 0000 %m 11850337 n 0000 %m 11850748 n 0000 %m 11851101 n 0000 %m 11851395 n 0000 %m 11852255 n 0000 %m 11852814 n 0000 %m 11853191 n 0000 %m 11853644 n 0000 %m 11854232 n 0000 | constituting the order Opuntiales -11842204 20 n 01 cactus 0 028 @ 13084184 n 0000 #m 11841529 n 0000 ~ 11843053 n 0000 ~ 11843441 n 0000 ~ 11843896 n 0000 ~ 11844371 n 0000 ~ 11844892 n 0000 ~ 11845277 n 0000 ~ 11845557 n 0000 ~ 11846312 n 0000 ~ 11846425 n 0000 ~ 11846765 n 0000 ~ 11847169 n 0000 ~ 11848009 n 0000 ~ 11848479 n 0000 ~ 11848867 n 0000 ~ 11849271 n 0000 ~ 11849871 n 0000 ~ 11849983 n 0000 ~ 11850521 n 0000 ~ 11850918 n 0000 ~ 11851258 n 0000 ~ 11851578 n 0000 ~ 11851839 n 0000 ~ 11853079 n 0000 ~ 11853356 n 0000 ~ 11853813 n 0000 ~ 11854479 n 0000 | any succulent plant of the family Cactaceae native chiefly to arid regions of the New World and usually having spines -11842861 20 n 02 Acanthocereus 0 genus_Acanthocereus 0 002 @ 11573660 n 0000 #m 11841529 n 0000 | mostly trailing cacti having nocturnal white flowers; tropical America and Caribbean region -11843053 20 n 04 pitahaya_cactus 0 pitahaya 1 Acanthocereus_tetragonus 0 Acanthocereus_pentagonus 0 002 @ 11842204 n 0000 %p 07751280 n 0000 | cactus of the southwestern United States and northern Mexico having edible juicy fruit -11843285 20 n 02 Aporocactus 0 genus_Aporocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11843441 n 0000 | small genus of epiphytic cacti of Mexico -11843441 20 n 03 rattail_cactus 0 rat's-tail_cactus 0 Aporocactus_flagelliformis 0 002 @ 11842204 n 0000 #m 11843285 n 0000 | commonly cultivated tropical American cactus having slender creeping stems and very large showy crimson flowers that bloom for several days -11843709 20 n 02 Ariocarpus 0 genus_Ariocarpus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11843896 n 0000 | slow-growing geophytic cacti; northern and eastern Mexico; southern Texas -11843896 20 n 02 living_rock 1 Ariocarpus_fissuratus 0 002 @ 11842204 n 0000 #m 11843709 n 0000 | usually unbranched usually spineless cactus covered with warty tubercles and having magenta flowers and white or green fruit; resembles the related mescal; northeastern Mexico and southwestern United States -11844203 20 n 02 Carnegiea 0 genus_Carnegiea 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11844371 n 0000 | caryophylloid dicot genus with only one species: saguaro -11844371 20 n 03 saguaro 0 sahuaro 0 Carnegiea_gigantea 0 002 @ 11842204 n 0000 #m 11844203 n 0000 | extremely large treelike cactus of desert regions of southwestern United States having a thick columnar sparsely branched trunk bearing white flowers and edible red pulpy fruit -11844651 20 n 02 Cereus 0 genus_Cereus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11844892 n 0000 | genus of much-branched treelike or shrubby cacti with pronounced ribs and rounded needlelike spines and nocturnal flowers usually white -11844892 20 n 01 night-blooming_cereus 2 002 @ 11842204 n 0000 #m 11844651 n 0000 | any of several cacti of the genus Cereus -11845019 20 n 01 genus_Coryphantha 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11845277 n 0000 | mainly globose cacti of southwestern United States and Mexico covered with many nodules; superficially resembling and formerly included in genus Mammillaria -11845277 20 n 01 coryphantha 0 002 @ 11842204 n 0000 #m 11845019 n 0000 | a cactus of the genus Coryphantha -11845387 20 n 01 genus_Echinocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11845557 n 0000 | globular or cylindrical cacti; southwestern United States to Brazil -11845557 20 n 02 echinocactus 0 barrel_cactus 2 004 @ 11842204 n 0000 #m 11845387 n 0000 ~ 11845793 n 0000 ~ 11845913 n 0000 | any cactus of the genus Echinocactus; strongly ribbed and very spiny; southwestern United States to Brazil -11845793 20 n 01 hedgehog_cactus 0 001 @ 11845557 n 0000 | cactus of the genus Echinocactus having stout sharp spines -11845913 20 n 02 golden_barrel_cactus 0 Echinocactus_grusonii 0 001 @ 11845557 n 0000 | large cactus of east central Mexico having golden to pale yellow flowers and spines -11846087 20 n 02 Echinocereus 0 genus_Echinocereus 0 004 @ 11573660 n 0000 #m 11841529 n 0000 %m 11846312 n 0000 %m 11846425 n 0000 | large genus of low-growing shrubby ribbed cacti of Mexico and southwestern United States -11846312 20 n 01 hedgehog_cereus 0 002 @ 11842204 n 0000 #m 11846087 n 0000 | cactus of the genus Echinocereus -11846425 20 n 01 rainbow_cactus 0 002 @ 11842204 n 0000 #m 11846087 n 0000 | a stout cylindrical cactus of the southwest United States and adjacent Mexico -11846582 20 n 01 genus_Epiphyllum 0 004 @ 11573660 n 0000 #m 11841529 n 0000 ;r 09044862 n 0000 %m 11846765 n 0000 | small genus of tropical American (mainly Central America) cacti -11846765 20 n 02 epiphyllum 0 orchid_cactus 0 002 @ 11842204 n 0000 #m 11846582 n 0000 | any cactus of the genus Epiphyllum having flattened jointed irregularly branching stems and showy tubular flowers -11846970 20 n 02 Ferocactus 0 genus_Ferocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11847169 n 0000 | genus of nearly globular cacti of Mexico and southwestern United States: barrel cacti -11847169 20 n 01 barrel_cactus 1 002 @ 11842204 n 0000 #m 11846970 n 0000 | a cactus of the genus Ferocactus: unbranched barrel-shaped cactus having deep ribs with numerous spines and usually large funnel-shaped flowers followed by dry fruits -11847414 20 n 02 Gymnocalycium 0 genus_Gymnocalycium 0 002 @ 11573660 n 0000 #m 11841529 n 0000 | large genus of low-growing globular South American cacti with spiny ribs covered with many tubercles -11847615 20 n 02 Harrisia 0 genus_Harrisia 0 002 @ 11573660 n 0000 #m 11841529 n 0000 | genus of slender often treelike spiny cacti with solitary showy nocturnal white or pink flowers; Florida and Caribbean to South America -11847841 20 n 02 Hatiora 0 genus_Hatiora 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11848009 n 0000 | small genus of South American epiphytic or lithophytic cacti -11848009 20 n 03 Easter_cactus 0 Hatiora_gaertneri 0 Schlumbergera_gaertneri 0 002 @ 11842204 n 0000 #m 11847841 n 0000 | spring-blooming South American cactus with oblong joints and coral-red flowers; sometimes placed in genus Schlumbergera -11848253 20 n 02 Hylocereus 0 genus_Hylocereus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11848479 n 0000 | genus of climbing or epiphytic tropical American cacti with angular stems and mostly white very fragrant flowers -11848479 20 n 01 night-blooming_cereus 3 002 @ 11842204 n 0000 #m 11848253 n 0000 | any of several cacti of the genus Hylocereus -11848610 20 n 02 Lemaireocereus 0 genus_Lemaireocereus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11848867 n 0000 | tropical American cacti usually tall and branching with stout spines and funnel-shaped flowers and globular or ovoid often edible fruit -11848867 20 n 02 chichipe 0 Lemaireocereus_chichipe 0 002 @ 11842204 n 0000 #m 11848610 n 0000 | tall treelike Mexican cactus with edible red fruit -11849017 20 n 02 Lophophora 0 genus_Lophophora 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11849271 n 0000 | two species of small cacti of northeastern Mexico and southwestern United States having rounded stems covered with jointed tubercles: mescal -11849271 20 n 04 mescal 0 mezcal 0 peyote 0 Lophophora_williamsii 0 003 @ 11842204 n 0000 #m 11849017 n 0000 %p 11849467 n 0000 | a small spineless globe-shaped cactus; source of mescal buttons -11849467 20 n 03 mescal_button 0 sacred_mushroom 0 magic_mushroom 0 003 @ 13087625 n 0000 #p 11849271 n 0000 %s 03750912 n 0000 | the button-shaped top of the mescal cactus; a source of psilocybin -11849666 20 n 01 genus_Mammillaria 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11849871 n 0000 | large genus of cacti characterized chiefly by nipple-shaped protuberances or tubercles on their surface -11849871 20 n 01 mammillaria 0 002 @ 11842204 n 0000 #m 11849666 n 0000 | any cactus of the genus Mammillaria -11849983 20 n 02 feather_ball 0 Mammillaria_plumosa 0 001 @ 11842204 n 0000 | a low tuberculate cactus with white feathery spines; northeastern Mexico -11850136 20 n 02 Melocactus 0 genus_Melocactus 0 002 @ 11573660 n 0000 #m 11841529 n 0000 | genus of strongly ribbed globose or spheroid cacti of tropical South and Central America and the Caribbean -11850337 20 n 02 Myrtillocactus 0 genus_Myrtillocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11850521 n 0000 | small genus of arborescent cacti of Mexico and Central America -11850521 20 n 03 garambulla 0 garambulla_cactus 0 Myrtillocactus_geometrizans 0 003 @ 11842204 n 0000 #m 11850337 n 0000 %p 07769005 n 0000 | arborescent cactus of western Mexico bearing a small oblong edible berrylike fruit -11850748 20 n 02 Pediocactus 0 genus_Pediocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11850918 n 0000 | low-growing cacti of the Great Plains of North America -11850918 20 n 02 Knowlton's_cactus 0 Pediocactus_knowltonii 0 002 @ 11842204 n 0000 #m 11850748 n 0000 | small clustering cactus of southwestern United States; a threatened species -11851101 20 n 02 Nopalea 0 genus_Nopalea 0 003 @ 11567411 n 0000 #m 11841529 n 0000 %m 11851258 n 0000 | a genus of the cactus family with scarlet flowers -11851258 20 n 01 nopal 1 002 @ 11842204 n 0000 #m 11851101 n 0000 | any of several cacti of the genus Nopalea resembling prickly pears -11851395 20 n 02 Opuntia 0 genus_Opuntia 0 004 @ 11573660 n 0000 #m 11841529 n 0000 %m 11851578 n 0000 %m 11851839 n 0000 | large genus of cactuses native to America: prickly pears -11851578 20 n 02 prickly_pear 1 prickly_pear_cactus 0 005 @ 11842204 n 0000 #m 11851395 n 0000 %p 07768858 n 0000 ~ 11852028 n 0000 ~ 11852148 n 0000 | cacti having spiny flat joints and oval fruit that is edible in some species; often used as food for stock -11851839 20 n 02 cholla 0 Opuntia_cholla 0 002 @ 11842204 n 0000 #m 11851395 n 0000 | arborescent cacti having very spiny cylindrical stem segments; southwestern United States and Mexico -11852028 20 n 02 nopal 2 Opuntia_lindheimeri 0 001 @ 11851578 n 0000 | cactus having yellow flowers and purple fruits -11852148 20 n 02 tuna 0 Opuntia_tuna 0 001 @ 11851578 n 0000 | tropical American prickly pear of Jamaica -11852255 20 n 04 Pereskia 0 genus_Pereskia 0 Peireskia 0 genus_Peireskia 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11852531 n 0000 | genus of tropical American shrubby trees and woody climbers having slender branches with broad flat leaves and large panicles of flowers -11852531 20 n 03 Barbados_gooseberry 1 Barbados-gooseberry_vine 0 Pereskia_aculeata 0 003 @ 13100677 n 0000 #m 11852255 n 0000 %p 07769102 n 0000 | West Indian woody climber with spiny stems and numerous fragrant white flowers in panicles followed by small yellow to orange fruits -11852814 20 n 02 Rhipsalis 0 genus_Rhipsalis 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11853079 n 0000 | large genus of epiphytic or lithophytic unarmed cacti with usually segmented stems and pendulous branches; flowers are small followed by berrylike fruits -11853079 20 n 01 mistletoe_cactus 0 002 @ 11842204 n 0000 #m 11852814 n 0000 | a plant of the genus Rhipsalis -11853191 20 n 02 Schlumbergera 0 genus_Schlumbergera 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11853356 n 0000 | South American epiphytic or lithophytic cacti -11853356 20 n 03 Christmas_cactus 0 Schlumbergera_buckleyi 0 Schlumbergera_baridgesii 0 002 @ 11842204 n 0000 #m 11853191 n 0000 | epiphytic cactus of Brazilian ancestry widely cultivated as a houseplant having jointed flat segments and usually rose-purple flowers that bloom in winter -11853644 20 n 02 Selenicereus 0 genus_Selenicereus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11853813 n 0000 | mostly epiphytic climbing cacti that bloom at night -11853813 20 n 01 night-blooming_cereus 1 003 @ 11842204 n 0000 #m 11853644 n 0000 ~ 11853979 n 0000 | any of several night-blooming cacti of the genus Selenicereus -11853979 20 n 02 queen_of_the_night 0 Selenicereus_grandiflorus 0 001 @ 11853813 n 0000 | tropical American climbing cactus having triangular branches; often cultivated for its large showy night-blooming flowers followed by yellow red-streaked fruits -11854232 20 n 02 Zygocactus 0 genus_Zygocactus 0 003 @ 11573660 n 0000 #m 11841529 n 0000 %m 11854479 n 0000 | small genus of Brazilian cacti having flat fleshy usually branched joints and showy red or pink flowers followed by red fleshy fruits -11854479 20 n 04 crab_cactus 0 Thanksgiving_cactus 0 Zygocactus_truncatus 0 Schlumbergera_truncatus 0 002 @ 11842204 n 0000 #m 11854232 n 0000 | South American jointed cactus with usually red flowers; often cultivated as a houseplant; sometimes classified as genus Schlumbergera -11854760 20 n 03 Phytolaccaceae 0 family_Phytolaccaceae 0 pokeweed_family 0 007 @ 11565040 n 0000 #m 11804082 n 0000 %m 11855122 n 0000 %m 11856055 n 0000 %m 11856271 n 0000 %m 11856389 n 0000 %m 11856815 n 0000 | chiefly tropical herbaceous plants (including shrubs and trees) with racemose flowers: genera Phytolacca, Agdestis, Ercilla, Rivina, Trichostigma -11855122 20 n 02 Phytolacca 0 genus_Phytolacca 0 003 @ 11573660 n 0000 #m 11854760 n 0000 %m 11855274 n 0000 | type genus of Phytolaccaceae: pokeweed -11855274 20 n 01 pokeweed 0 005 @ 12205694 n 0000 #m 11855122 n 0000 ~ 11855435 n 0000 ~ 11855553 n 0000 ~ 11855842 n 0000 | perennial of the genus Phytolacca -11855435 20 n 02 Indian_poke 2 Phytolacca_acinosa 0 001 @ 11855274 n 0000 | pokeweed of southeastern Asia and China -11855553 20 n 05 poke 0 pigeon_berry 0 garget 0 scoke 0 Phytolacca_americana 0 001 @ 11855274 n 0000 | tall coarse perennial American herb having small white flowers followed by blackish-red berries on long drooping racemes; young fleshy stems are edible; berries and root are poisonous -11855842 20 n 03 ombu 0 bella_sombra 0 Phytolacca_dioica 0 001 @ 11855274 n 0000 | fast-growing herbaceous evergreen tree of South America having a broad trunk with high water content and dark green oval leaves -11856055 20 n 02 Agdestis 0 genus_Agdestis 0 003 @ 11573660 n 0000 @ 13102409 n 0000 #m 11854760 n 0000 | a genus with one species that is a rapidly growing climbing vine with tuberous roots; grown in hot climates -11856271 20 n 02 Ercilla 0 genus_Ercilla 0 002 @ 11573660 n 0000 #m 11854760 n 0000 | a genus of evergreen climbers -11856389 20 n 02 Rivina 0 genus_Rivina 0 003 @ 11573660 n 0000 #m 11854760 n 0000 %m 11856573 n 0000 | small genus of erect perennial shrubby herbs; tropical and subtropical America -11856573 20 n 05 bloodberry 0 blood_berry 0 rougeberry 0 rouge_plant 0 Rivina_humilis 0 002 @ 13083023 n 0000 #m 11856389 n 0000 | bushy houseplant having white to pale pink flowers followed by racemes of scarlet berries; tropical Americas -11856815 20 n 02 Trichostigma 0 genus_Trichostigma 0 002 @ 11573660 n 0000 #m 11854760 n 0000 | a genus of erect or climbing shrubs found in tropical South America -11856981 20 n 03 Portulacaceae 0 family_Portulacaceae 0 purslane_family 0 009 @ 11565040 n 0000 #m 11804082 n 0000 %m 11857528 n 0000 %m 11858406 n 0000 %m 11859024 n 0000 %m 11859981 n 0000 %m 11860801 n 0000 %m 11862089 n 0000 %m 11862598 n 0000 | family of usually succulent herbs; cosmopolitan in distribution especially in Americas -11857320 20 n 01 purslane 0 002 @ 12205694 n 0000 ~ 11858077 n 0000 | a plant of the family Portulacaceae having fleshy succulent obovate leaves often grown as a potherb or salad herb; a weed in some areas -11857528 20 n 01 genus_Portulaca 0 004 @ 11573660 n 0000 #m 11856981 n 0000 %m 11857696 n 0000 %m 11858077 n 0000 | genus of mainly tropical fleshy or trailing herbs -11857696 20 n 01 portulaca 0 003 @ 11669921 n 0000 #m 11857528 n 0000 ~ 11857875 n 0000 | a plant of the genus Portulaca having pink or red or purple or white ephemeral flowers -11857875 20 n 03 rose_moss 0 sun_plant 0 Portulaca_grandiflora 0 001 @ 11857696 n 0000 | widely cultivated in many varieties for its fleshy moss-like foliage and profusion of brightly colored flowers -11858077 20 n 05 common_purslane 0 pussley 0 pussly 0 verdolagas 0 Portulaca_oleracea 0 002 @ 11857320 n 0000 #m 11857528 n 0000 | weedy trailing mat-forming herb with bright yellow flowers cultivated for its edible mildly acid leaves eaten raw or cooked especially in Indian and Greek and Middle Eastern cuisine; cosmopolitan -11858406 20 n 02 Calandrinia 0 genus_Calandrinia 0 004 @ 11573660 n 0000 #m 11856981 n 0000 %m 11858703 n 0000 %m 11858814 n 0000 | large genus of low-growing herbs; widespread throughout tropical and warm temperate regions having usually basal leaves and panicles of purplish ephemeral flowers -11858703 20 n 01 rock_purslane 0 002 @ 12205694 n 0000 #m 11858406 n 0000 | a plant of the genus Calandrinia -11858814 20 n 03 red_maids 0 redmaids 0 Calandrinia_ciliata 0 002 @ 11672400 n 0000 #m 11858406 n 0000 | succulent carpet-forming plant having small brilliant reddish-pink flowers; southwestern United States -11859024 20 n 02 Claytonia 0 genus_Claytonia 0 005 @ 11573660 n 0000 #m 11856981 n 0000 %m 11859275 n 0000 %m 11859472 n 0000 %m 11859737 n 0000 | genus of mainly North American succulent herbs with white or pink flowers usually in terminal racemes -11859275 20 n 02 Carolina_spring_beauty 0 Claytonia_caroliniana 0 002 @ 11669921 n 0000 #m 11859024 n 0000 | similar to Claytonia virginica but having usually pink flowers; eastern North America -11859472 20 n 02 spring_beauty 0 Clatonia_lanceolata 0 002 @ 11669921 n 0000 #m 11859024 n 0000 | small slender plant having one pair of succulent leaves at the middle of the stem and a loose raceme of white or pink or rose bowl-shaped flowers and an edible corm -11859737 20 n 02 Virginia_spring_beauty 0 Claytonia_virginica 0 002 @ 11669921 n 0000 #m 11859024 n 0000 | small cormous perennial grown for its low rosette of succulent foliage and racemes of pink-tinged white flowers; eastern North America -11859981 20 n 02 Lewisia 0 genus_Lewisia 0 004 @ 11573660 n 0000 #m 11856981 n 0000 %m 11860208 n 0000 %m 11860555 n 0000 | genus of western North American low-growing herbs having linear woolly leaves and large pink flowers -11860208 20 n 02 siskiyou_lewisia 0 Lewisia_cotyledon 0 002 @ 11672400 n 0000 #m 11859981 n 0000 | evergreen perennial having a dense basal rosette of long spatula-shaped leaves and panicles of pink or white-and-red-striped or pink-purple flowers; found on cliffs and in rock crevices in mountains of southwestern Oregon and northern California -11860555 20 n 02 bitterroot 0 Lewisia_rediviva 0 002 @ 11672400 n 0000 #m 11859981 n 0000 | showy succulent ground-hugging plant of Rocky Mountains regions having deep to pale pink flowers and fleshy farinaceous roots; the Montana state flower -11860801 20 n 02 Montia 0 genus_Montia 0 003 @ 11573660 n 0000 #m 11856981 n 0000 %m 11861021 n 0000 | small genus of densely tufted annual herbs; north temperate regions and South America and tropical Africa and Asia -11861021 20 n 01 Indian_lettuce 0 006 @ 12205694 n 0000 #m 11860801 n 0000 ~ 11861238 n 0000 ~ 11861487 n 0000 ~ 11861641 n 0000 ~ 11861853 n 0000 | a plant of the genus Montia having edible pleasant-tasting leaves -11861238 20 n 02 broad-leaved_montia 0 Montia_cordifolia 0 001 @ 11861021 n 0000 | succulent plant with mostly basal leaves; stem bears 1 pair of broadly ovate or heart-shaped leaves and a loose raceme of 3-10 white flowers; western North America -11861487 20 n 04 blinks 0 blinking_chickweed 0 water_chickweed 0 Montia_lamprosperma 0 001 @ 11861021 n 0000 | small Indian lettuce of northern regions -11861641 20 n 02 toad_lily 0 Montia_chamissoi 0 001 @ 11861021 n 0000 | a floating or creeping Indian lettuce having terminal racemes of pale rose flowers; wet areas at high elevations of western North America -11861853 20 n 04 winter_purslane 0 miner's_lettuce 0 Cuban_spinach 0 Montia_perfoliata 0 001 @ 11861021 n 0000 | succulent herb sometimes grown as a salad or pot herb; grows on dunes and waste ground of Pacific coast of North America -11862089 20 n 02 Spraguea 0 genus_Spraguea 0 003 @ 11573660 n 0000 #m 11856981 n 0000 %m 11862300 n 0000 | small genus of usually perennial herbs having deep woody taproots and flower heads of umbels or cymes -11862300 20 n 05 pussy-paw 0 pussy-paws 0 pussy's-paw 0 Spraguea_umbellatum 0 Calyptridium_umbellatum 0 002 @ 11672400 n 0000 #m 11862089 n 0000 | pink clusters of densely packed flowers on prostrate stems resemble upturned pads of cats' feet; grow in coniferous forests of western North America -11862598 20 n 02 Talinum 0 genus_Talinum 0 007 @ 11573660 n 0000 #m 11856981 n 0000 %m 11862835 n 0000 %m 11863242 n 0000 %m 11863467 n 0000 %m 11863717 n 0000 %m 11864114 n 0000 | genus of mainly American more-or-less succulent herbs -11862835 20 n 04 flame_flower 1 flame-flower 1 flameflower 1 Talinum_aurantiacum 0 007 @ 11672400 n 0000 #m 11862598 n 0000 ~ 11863242 n 0000 ~ 11863467 n 0000 ~ 11863717 n 0000 ~ 11863877 n 0000 ~ 11864114 n 0000 | plant with fleshy roots and erect stems with narrow succulent leaves and one reddish-orange flower in each upper leaf axil; southwestern United States; Indians once cooked the fleshy roots -11863242 20 n 02 narrow-leaved_flame_flower 0 Talinum_augustissimum 0 002 @ 11862835 n 0000 #m 11862598 n 0000 | similar to Talinum aurantiacum but with narrower leaves and yellow-orange flowers; southwestern United States -11863467 20 n 02 pigmy_talinum 0 Talinum_brevifolium 0 002 @ 11862835 n 0000 #m 11862598 n 0000 | low plant with crowded narrow succulent leaves and fairly large deep pink axillary flowers that seem to sit on the ground; southwestern United States -11863717 20 n 02 rock_pink 0 Talinum_calycinum 0 002 @ 11862835 n 0000 #m 11862598 n 0000 | pink-flowered perennial of rocky regions of western United States -11863877 20 n 02 jewels-of-opar 0 Talinum_paniculatum 0 001 @ 11862835 n 0000 | erect plant with tuberous roots and terminal panicles of red to yellow flowers; southwestern North America to Central America; widely introduced elsewhere -11864114 20 n 02 spiny_talinum 0 Talinum_spinescens 0 002 @ 11862835 n 0000 #m 11862598 n 0000 | low cushion-forming plant with rose to crimson-magenta flowers and leaf midribs that persist as spines when the leaves die; southwestern United States -11864364 20 n 04 Rhoeadales 0 order_Rhoeadales 0 Papaverales 0 order_Papaverales 0 006 @ 11534677 n 0000 #m 12358485 n 0000 %m 11864602 n 0000 %m 11867525 n 0000 %m 11900058 n 0000 %m 11909048 n 0000 | an order of dicotyledonous plants -11864602 20 n 03 Capparidaceae 0 family_Capparidaceae 0 caper_family 0 006 @ 11565385 n 0000 #m 11864364 n 0000 %m 11864906 n 0000 %m 11866078 n 0000 %m 11866942 n 0000 %m 11867070 n 0000 | a dilleniid dicot family of the order Rhoeadales that includes: genera Capparis, Cleome, Crateva, and Polanisia -11864906 20 n 02 Capparis 0 genus_Capparis 0 003 @ 11575425 n 0000 #m 11864602 n 0000 %m 11865071 n 0000 | tropical or subtropical evergreen shrubs or small trees -11865071 20 n 01 caper 0 007 @ 13112664 n 0000 #m 11864906 n 0000 ~ 11865276 n 0000 ~ 11865429 n 0000 ~ 11865574 n 0000 ~ 11865738 n 0000 ~ 11865874 n 0000 | any of numerous plants of the genus Capparis -11865276 20 n 02 native_pomegranate 0 Capparis_arborea 0 001 @ 11865071 n 0000 | small Australian tree bearing edible fruit resembling the pomegranate -11865429 20 n 03 caper_tree 1 Jamaica_caper_tree 0 Capparis_cynophallophora 0 001 @ 11865071 n 0000 | shrub of southern Florida to West Indies -11865574 20 n 03 caper_tree 2 bay-leaved_caper 0 Capparis_flexuosa 0 001 @ 11865071 n 0000 | shrub or small tree of southern Florida to Central and South America -11865738 20 n 02 native_orange 0 Capparis_mitchellii 0 001 @ 11865071 n 0000 | small Australian tree bearing edible dark purple fruit -11865874 20 n 02 common_caper 0 Capparis_spinosa 0 002 @ 11865071 n 0000 %p 07822053 n 0000 | prostrate spiny shrub of the Mediterranean region cultivated for its greenish flower buds which are pickled -11866078 20 n 02 genus_Cleome 0 Cleome 1 003 @ 11575425 n 0000 #m 11864602 n 0000 %m 11866248 n 0000 | tropical and subtropical annual or perennial herbs or low shrubs -11866248 20 n 02 spiderflower 0 cleome 0 004 @ 12205694 n 0000 #m 11866078 n 0000 ~ 11866469 n 0000 ~ 11866706 n 0000 | any of various often strong-smelling plants of the genus Cleome having showy spider-shaped flowers -11866469 20 n 03 spider_flower 0 spider_plant 0 Cleome_hassleriana 0 001 @ 11866248 n 0000 | native to South America but naturalized in warm parts of United States; grown for its long-lasting spider-shaped white to pink-purple flowers -11866706 20 n 03 Rocky_Mountain_bee_plant 0 stinking_clover 0 Cleome_serrulata 0 001 @ 11866248 n 0000 | plant of western North America having trifoliate leaves and white or pink spider-shaped flowers; sometimes used as an ornamental -11866942 20 n 02 Crateva 0 genus_Crateva 0 002 @ 11575425 n 0000 #m 11864602 n 0000 | tropical genus of small trees or shrubs -11867070 20 n 02 Polanisia 0 genus_Polanisia 0 003 @ 11575425 n 0000 #m 11864602 n 0000 %m 11867311 n 0000 | widely distributed herbs having palmate leaves and creamy white to or pink to magenta flowers with many stamens of unequal length -11867311 20 n 03 clammyweed 0 Polanisia_graveolens 0 Polanisia_dodecandra 0 002 @ 12205694 n 0000 #m 11867070 n 0000 | strong-scented herb common in southern United States covered with intermixed gland and hairs -11867525 20 n 05 Cruciferae 0 family_Cruciferae 0 Brassicaceae 0 family_Brassicaceae 0 mustard_family 0 055 @ 11565385 n 0000 #m 11864364 n 0000 + 02937720 a 0101 %m 11868814 n 0000 %m 11869351 n 0000 %m 11869689 n 0000 %m 11869890 n 0000 %m 11870212 n 0000 %m 11870607 n 0000 %m 11871294 n 0000 %m 11871916 n 0000 %m 11872850 n 0000 %m 11873396 n 0000 %m 11874300 n 0000 %m 11874707 n 0000 %m 11875100 n 0000 %m 11880218 n 0000 %m 11880610 n 0000 %m 11881063 n 0000 %m 11881426 n 0000 %m 11881563 n 0000 %m 11883137 n 0000 %m 11883799 n 0000 %m 11884198 n 0000 %m 11884667 n 0000 %m 11885148 n 0000 %m 11885697 n 0000 %m 11886380 n 0000 %m 11886788 n 0000 %m 11888271 n 0000 %m 11888621 n 0000 %m 11889473 n 0000 %m 11889847 n 0000 %m 11890329 n 0000 %m 11890723 n 0000 %m 11891050 n 0000 %m 11891395 n 0000 %m 11891838 n 0000 %m 11892460 n 0000 %m 11893004 n 0000 %m 11893451 n 0000 %m 11893808 n 0000 %m 11894173 n 0000 %m 11895270 n 0000 %m 11895980 n 0000 %m 11896365 n 0000 %m 11896904 n 0000 %m 11897342 n 0000 %m 11897760 n 0000 %m 11898079 n 0000 %m 11898474 n 0000 %m 11899027 n 0000 %m 11899432 n 0000 %m 11899595 n 0000 %m 11899921 n 0000 | a large family of plants with four-petaled flowers; includes mustards, cabbages, broccoli, turnips, cresses, and their many relatives -11868814 20 n 02 crucifer 0 cruciferous_plant 0 024 @ 12205694 n 0000 #m 11867525 n 0000 %p 07713395 n 0000 ~ 11869351 n 0000 ~ 11870418 n 0000 ~ 11870747 n 0000 ~ 11871059 n 0000 ~ 11875523 n 0000 ~ 11875691 n 0000 ~ 11876432 n 0000 ~ 11876634 n 0000 ~ 11876803 n 0000 ~ 11876976 n 0000 ~ 11877283 n 0000 ~ 11877473 n 0000 ~ 11878101 n 0000 ~ 11878283 n 0000 ~ 11878808 n 0000 ~ 11879054 n 0000 ~ 11879291 n 0000 ~ 11880791 n 0000 ~ 11881189 n 0000 ~ 11894327 n 0000 ~ 11897900 n 0000 | any of various plants of the family Cruciferae -11869351 20 n 02 cress 0 cress_plant 0 011 @ 11868814 n 0000 #m 11867525 n 0000 ~ 11869689 n 0000 ~ 11871496 n 0000 ~ 11871748 n 0000 ~ 11872146 n 0000 ~ 11872658 n 0000 ~ 11873612 n 0000 ~ 11881742 n 0000 ~ 11883945 n 0000 ~ 11890507 n 0000 | any of various plants of the family Cruciferae with edible leaves that have a pungent taste -11869689 20 n 01 watercress 0 007 @ 11869351 n 0000 #m 11867525 n 0000 + 00374001 a 0103 ~ 11882636 n 0000 ~ 11893131 n 0000 ~ 11895472 n 0000 ~ 11895714 n 0000 | any of several water-loving cresses -11869890 20 n 02 Aethionema 0 genus_Aethionema 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11870044 n 0000 | Old World genus of the family Cruciferae -11870044 20 n 02 stonecress 0 stone_cress 0 002 @ 12205694 n 0000 #m 11869890 n 0000 | any Old World herb of the genus Aethionema; native of sunny limestone habitats -11870212 20 n 02 Alliaria 0 genus_Alliaria 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11870418 n 0000 | a genus of herbs of the family Cruciferae; have broad leaves and white flowers and long siliques -11870418 20 n 05 garlic_mustard 0 hedge_garlic 0 sauce-alone 0 jack-by-the-hedge 0 Alliaria_officinalis 0 002 @ 11868814 n 0000 #m 11870212 n 0000 | European herb that smells like garlic -11870607 20 n 02 Alyssum 0 genus_Alyssum 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11870747 n 0000 | a genus of the family Cruciferae -11870747 20 n 02 alyssum 1 madwort 0 002 @ 11868814 n 0000 #m 11870607 n 0000 | any garden plant of the genus Alyssum having clusters of small yellow or white flowers -11870916 20 n 02 Anastatica 0 genus_Anastatica 0 002 @ 11575425 n 0000 %m 11871059 n 0000 | one species: rose of Jericho; resurrection plant -11871059 20 n 03 rose_of_Jericho 1 resurrection_plant 1 Anastatica_hierochuntica 0 002 @ 11868814 n 0000 #m 11870916 n 0000 | small grey Asiatic desert plant bearing minute white flowers that rolls up when dry and expands when moist -11871294 20 n 02 Arabidopsis 0 genus_Arabidopsis 0 002 @ 11575425 n 0000 #m 11867525 n 0000 | a genus of the mustard family having white or yellow or purplish flowers; closely related to genus Arabis -11871496 20 n 02 Arabidopsis_thaliana 0 mouse-ear_cress 0 001 @ 11869351 n 0000 | a small invasive self-pollinating weed with small white flowers; much studied by plant geneticists; the first higher plant whose complete genome sequence was described -11871748 20 n 01 Arabidopsis_lyrata 0 001 @ 11869351 n 0000 | a small noninvasive cross-pollinating plant with white flowers; closely related to Arabidopsis thaliana -11871916 20 n 02 Arabis 0 genus_Arabis 0 005 @ 11575425 n 0000 #m 11867525 n 0000 %m 11872146 n 0000 %m 11872324 n 0000 %m 11872473 n 0000 | annual to perennial woody herbs of temperate North America, Europe and Asia: rockcress -11872146 20 n 02 rock_cress 0 rockcress 0 004 @ 11869351 n 0000 #m 11871916 n 0000 ~ 11872324 n 0000 ~ 11872473 n 0000 | any of several rock-loving cresses of the genus Arabis -11872324 20 n 02 sicklepod 1 Arabis_Canadensis 0 002 @ 11872146 n 0000 #m 11871916 n 0000 | North American rock cress having very long curved pods -11872473 20 n 03 tower_cress 1 tower_mustard 2 Arabis_turrita 0 002 @ 11872146 n 0000 #m 11871916 n 0000 | European cress having stiff erect stems; sometimes placed in genus Turritis -11872658 20 n 04 tower_mustard 1 tower_cress 2 Turritis_glabra 0 Arabis_glabra 0 002 @ 11869351 n 0000 #m 11899432 n 0000 | or genus Arabis: erect cress widely distributed throughout Europe -11872850 20 n 02 Armoracia 0 genus_Armoracia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11872973 n 0000 | horseradish -11872973 20 n 04 horseradish 0 horse_radish 0 red_cole 0 Armoracia_rusticana 0 003 @ 12205694 n 0000 #m 11872850 n 0000 %p 11873182 n 0000 | coarse Eurasian plant cultivated for its thick white pungent root -11873182 20 n 02 horseradish 1 horseradish_root 0 004 @ 13125117 n 0000 #p 11872973 n 0000 %s 07824383 n 0000 %s 15033367 n 0000 | the root of the horseradish plant; it is grated or ground and used for seasoning -11873396 20 n 02 Barbarea 0 genus_Barbarea 0 005 @ 11575425 n 0000 #m 11867525 n 0000 %m 11873612 n 0000 %p 11873845 n 0000 %p 11874081 n 0000 | biennial or perennial herbs of north temperate regions: winter cress -11873612 20 n 03 winter_cress 0 St._Barbara's_herb 0 scurvy_grass 2 003 @ 11869351 n 0000 #m 11873396 n 0000 ~ 11873845 n 0000 | any plant of the genus Barbarea: yellow-flowered Eurasian cresses; widely cultivated for winter salad -11873845 20 n 07 Belle_Isle_cress 0 early_winter_cress 0 land_cress 0 American_cress 0 American_watercress 2 Barbarea_verna 0 Barbarea_praecox 0 002 @ 11873612 n 0000 #p 11873396 n 0000 | of southwestern Europe; cultivated in Florida -11874081 20 n 05 yellow_rocket 0 rockcress 2 rocket_cress 0 Barbarea_vulgaris 0 Sisymbrium_barbarea 0 002 @ 13085113 n 0000 #p 11873396 n 0000 | noxious cress with yellow flowers; sometimes placed in genus Sisymbrium -11874300 20 n 02 Berteroa 0 genus_Berteroa 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11874423 n 0000 | hoary alyssum -11874423 20 n 03 hoary_alison 0 hoary_alyssum 0 Berteroa_incana 0 002 @ 12205694 n 0000 #m 11874300 n 0000 | tall European annual with downy grey-green foliage and dense heads of small white flowers followed by hairy pods; naturalized in North America; sometimes a troublesome weed -11874707 20 n 02 Biscutella 0 genus_Biscutella 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11874878 n 0000 | genus of Eurasian herbs and small shrubs: buckler mustard -11874878 20 n 02 buckler_mustard 0 Biscutalla_laevigata 0 002 @ 13112664 n 0000 #m 11874707 n 0000 | plant of southeastern Europe having yellow flowers like those of mustard and pods with open valves resembling bucklers -11875100 20 n 02 Brassica 0 genus_Brassica 0 017 @ 11575425 n 0000 #m 11867525 n 0000 %m 11875523 n 0000 %m 11875691 n 0000 %m 11876803 n 0000 %m 11876976 n 0000 %m 11877283 n 0000 %m 11877646 n 0000 %m 11877860 n 0000 %m 11878101 n 0000 %m 11878283 n 0000 %m 11878633 n 0000 %m 11878808 n 0000 %m 11879054 n 0000 %m 11879291 n 0000 %m 11879505 n 0000 %m 11879722 n 0000 | mustards: cabbages; cauliflowers; turnips; etc. -11875523 20 n 02 wild_cabbage 0 Brassica_oleracea 0 002 @ 11868814 n 0000 #m 11875100 n 0000 | wild original of cultivated cabbages; common in western coastal Europe -11875691 20 n 03 cabbage 0 cultivated_cabbage 0 Brassica_oleracea 2 004 @ 11868814 n 0000 #m 11875100 n 0000 %p 07713895 n 0000 ~ 11875938 n 0000 | any of various cultivars of the genus Brassica oleracea grown for their edible leaves or flowers -11875938 20 n 03 head_cabbage 0 head_cabbage_plant 0 Brassica_oleracea_capitata 0 003 @ 11875691 n 0000 ~ 11876204 n 0000 ~ 11876316 n 0000 | any of various cultivated cabbage plants having a short thick stalk and large compact head of edible usually green leaves -11876204 20 n 01 savoy_cabbage 0 001 @ 11875938 n 0000 | cabbage plant with a compact head of crinkled leaves -11876316 20 n 01 red_cabbage 0 001 @ 11875938 n 0000 | cabbage plant with a compact head of reddish purple leaves -11876432 20 n 02 brussels_sprout 0 Brassica_oleracea_gemmifera 0 002 @ 11868814 n 0000 %p 07715221 n 0000 | plant grown for its stout stalks of edible small green heads resembling diminutive cabbages -11876634 20 n 02 cauliflower 0 Brassica_oleracea_botrytis 0 002 @ 11868814 n 0000 %p 07715103 n 0000 | a plant having a large edible head of crowded white flower buds -11876803 20 n 02 broccoli 0 Brassica_oleracea_italica 0 003 @ 11868814 n 0000 #m 11875100 n 0000 %p 07714990 n 0000 | plant with dense clusters of tight green flower buds -11876976 20 n 06 kale 0 kail 0 cole 0 borecole 0 colewort 0 Brassica_oleracea_acephala 0 003 @ 11868814 n 0000 #m 11875100 n 0000 ~ 11877193 n 0000 | a hardy cabbage with coarse curly leaves that do not form a head -11877193 20 n 01 collard 0 001 @ 11876976 n 0000 | variety of kale having smooth leaves -11877283 20 n 02 kohlrabi 0 Brassica_oleracea_gongylodes 0 003 @ 11868814 n 0000 #m 11875100 n 0000 %p 07733567 n 0000 | plant cultivated for its enlarged fleshy turnip-shaped edible stem -11877473 20 n 01 turnip_plant 0 004 @ 11868814 n 0000 %p 07735803 n 0000 ~ 11877646 n 0000 ~ 11877860 n 0000 | any of several widely cultivated plants having edible roots -11877646 20 n 03 turnip 0 white_turnip 0 Brassica_rapa 0 004 @ 11877473 n 0000 #m 11875100 n 0000 %p 07735981 n 0000 %p 07736256 n 0000 | widely cultivated plant having a large fleshy edible white or yellow root -11877860 20 n 06 rutabaga 0 turnip_cabbage 2 swede 0 Swedish_turnip 0 rutabaga_plant 0 Brassica_napus_napobrassica 0 003 @ 11877473 n 0000 #m 11875100 n 0000 %p 07736087 n 0000 | a cruciferous plant with a thick bulbous edible yellow root -11878101 20 n 03 broccoli_raab 0 broccoli_rabe 0 Brassica_rapa_ruvo 0 003 @ 11868814 n 0000 #m 11875100 n 0000 %p 07715407 n 0000 | plant grown for its pungent edible leafy shoots -11878283 20 n 01 mustard 0 008 @ 11868814 n 0000 #m 11875100 n 0000 ~ 11878633 n 0000 ~ 11879505 n 0000 ~ 11879722 n 0000 ~ 11896519 n 0000 ~ 11896722 n 0000 %s 15033367 n 0000 | any of several cruciferous plants of the genus Brassica -11878520 20 n 01 mustard_oil 0 001 @ 14966667 n 0000 | oil obtained from mustard seeds and used in making soap -11878633 20 n 05 chinese_mustard 0 indian_mustard 0 leaf_mustard 0 gai_choi 0 Brassica_juncea 0 002 @ 11878283 n 0000 #m 11875100 n 0000 | Asiatic mustard used as a potherb -11878808 20 n 05 Chinese_cabbage 0 celery_cabbage 0 napa 0 pe-tsai 0 Brassica_rapa_pekinensis 0 002 @ 11868814 n 0000 #m 11875100 n 0000 | plant with an elongated head of broad stalked leaves resembling celery; used as a vegetable in east Asia -11879054 20 n 06 bok_choy 0 bok_choi 0 pakchoi 0 pak_choi 0 Chinese_white_cabbage 0 Brassica_rapa_chinensis 0 002 @ 11868814 n 0000 #m 11875100 n 0000 | Asiatic plant grown for its cluster of edible white stalks with dark green leaves -11879291 20 n 04 tendergreen 0 spinach_mustard 0 Brassica_perviridis 0 Brassica_rapa_perviridis 0 002 @ 11868814 n 0000 #m 11875100 n 0000 | Asiatic plant cultivated for its swollen root crown and edible foliage -11879505 20 n 02 black_mustard 0 Brassica_nigra 0 003 @ 11878283 n 0000 #m 11875100 n 0000 %p 07819303 n 0000 | widespread Eurasian annual plant cultivated for its pungent seeds; a principal source of table mustard -11879722 20 n 03 rape 0 colza 0 Brassica_napus 0 003 @ 11878283 n 0000 #m 11875100 n 0000 %s 11879895 n 0000 | Eurasian plant cultivated for its seed and as a forage crop -11879895 20 n 01 rapeseed 0 003 @ 11689483 n 0000 #s 11879722 n 0000 %s 11880032 n 0000 | seed of rape plants; source of an edible oil -11880032 20 n 03 rape_oil 0 rapeseed_oil 0 colza_oil 0 002 @ 14966667 n 0000 #s 11879895 n 0000 | edible light yellow to brown oil from rapeseed used also as a lubricant or illuminant -11880218 20 n 02 Cakile 0 genus_Cakile 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11880411 n 0000 | small genus of succulent annual herbs found on sandy shores of North America and Europe -11880411 20 n 02 sea-rocket 0 Cakile_maritima 0 002 @ 12205694 n 0000 #m 11880218 n 0000 | salt-tolerant seashore annual grown for its fragrant rose or violet flowers and fleshy grey-green foliage -11880610 20 n 03 Camelina 0 genus_Camelina 0 false_flax 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11880791 n 0000 | annual and biennial herbs of Mediterranean to central Asia -11880791 20 n 02 gold_of_pleasure 0 Camelina_sativa 0 002 @ 11868814 n 0000 #m 11880610 n 0000 | annual European false flax having small white flowers; cultivated since Neolithic times as a source of fiber and for its oil-rich seeds; widely naturalized in North America -11881063 20 n 02 Capsella 0 genus_Capsella 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11881189 n 0000 | shepherd's purse -11881189 20 n 03 shepherd's_purse 0 shepherd's_pouch 0 Capsella_bursa-pastoris 0 002 @ 11868814 n 0000 #m 11881063 n 0000 | white-flowered annual European herb bearing triangular notched pods; nearly cosmopolitan as an introduced weed -11881426 20 n 02 Cardamine 0 genus_Cardamine 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11881742 n 0000 | bittercress, bitter cress -11881563 20 n 02 Dentaria 0 genus_Dentaria 0 002 @ 11575425 n 0000 #m 11867525 n 0000 | usually included in genus Cardamine; in some classifications considered a separate genus -11881742 20 n 02 bittercress 0 bitter_cress 0 007 @ 11869351 n 0000 #m 11881426 n 0000 ~ 11882074 n 0000 ~ 11882237 n 0000 ~ 11882426 n 0000 ~ 11882821 n 0000 ~ 11882972 n 0000 | any of various herbs of the genus Cardamine, having usually pinnate leaves and racemes of white, pink or purple flowers; cosmopolitan except Antarctic -11882074 20 n 05 lady's_smock 0 cuckooflower 0 cuckoo_flower 1 meadow_cress 0 Cardamine_pratensis 0 001 @ 11881742 n 0000 | a bitter cress of Europe and America -11882237 20 n 05 coral-root_bittercress 0 coralroot 0 coralwort 0 Cardamine_bulbifera 0 Dentaria_bulbifera 0 001 @ 11881742 n 0000 | European bittercress having a knotted white rootstock -11882426 20 n 07 crinkleroot 0 crinkle-root 0 crinkle_root 0 pepper_root 0 toothwort 0 Cardamine_diphylla 0 Dentaria_diphylla 0 001 @ 11881742 n 0000 | North American herb with pungent scaly or toothed roots -11882636 20 n 03 American_watercress 0 mountain_watercress 0 Cardamine_rotundifolia 0 001 @ 11869689 n 0000 | mat-forming perennial found in cold springs of the eastern United States -11882821 20 n 02 spring_cress 0 Cardamine_bulbosa 0 001 @ 11881742 n 0000 | small white-flowered cress common in wet places in eastern North America -11882972 20 n 02 purple_cress 0 Cardamine_douglasii 0 001 @ 11881742 n 0000 | small perennial herb of cooler regions of North America with racemose purple flowers -11883137 20 n 02 Cheiranthus 0 genus_Cheiranthus 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11883328 n 0000 %m 11883628 n 0000 | Old World perennial plants grown for their showy flowers -11883328 20 n 03 wallflower 1 Cheiranthus_cheiri 0 Erysimum_cheiri 0 002 @ 11669921 n 0000 #m 11883137 n 0000 | perennial of southern Europe having clusters of fragrant flowers of all colors especially yellow and orange; often naturalized on old walls or cliffs; sometimes placed in genus Erysimum -11883628 20 n 01 prairie_rocket 1 002 @ 11669921 n 0000 #m 11883137 n 0000 | any of several western American plants of the genus Cheiranthus having large yellow flowers -11883799 20 n 02 Cochlearia 0 genus_Cochlearia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11883945 n 0000 | a genus of the family Cruciferae -11883945 20 n 03 scurvy_grass 1 common_scurvy_grass 0 Cochlearia_officinalis 0 002 @ 11869351 n 0000 #m 11883799 n 0000 | a widely distributed Arctic cress reputed to have value in treatment or prevention of scurvy; a concentrated source of vitamin C -11884198 20 n 02 Crambe 0 genus_Crambe 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11884384 n 0000 | annual or perennial herbs with large leaves that resemble the leaves of cabbages -11884384 20 n 03 sea_kale 0 sea_cole 0 Crambe_maritima 0 002 @ 12205694 n 0000 #m 11884198 n 0000 | perennial of coastal sands and shingles of northern Europe and Baltic and Black Seas having racemes of small white flowers and large fleshy blue-green leaves often used as potherbs -11884667 20 n 02 Descurainia 0 genus_Descurainia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11884967 n 0000 | includes annual or biennial herbs of America and Europe very similar to and often included among those of genera Sisymbrium or Hugueninia; not recognized in some classification systems -11884967 20 n 02 tansy_mustard 0 Descurainia_pinnata 0 002 @ 12205694 n 0000 #m 11884667 n 0000 | North American herb with bitter-tasting pinnate leaves resembling those of tansy -11885148 20 n 02 Diplotaxis 0 genus_Diplotaxis 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11885292 n 0000 %m 11885524 n 0000 | wall rocket -11885292 20 n 03 wall_rocket 0 Diplotaxis_muralis 0 Diplotaxis_tenuifolia 0 002 @ 12205694 n 0000 #m 11885148 n 0000 | yellow-flowered European plant that grows on old walls and in waste places; an adventive weed in North America -11885524 20 n 02 white_rocket 0 Diplotaxis_erucoides 0 002 @ 12205694 n 0000 #m 11885148 n 0000 | from Mediterranean region; a naturalized weed throughout southern Europe -11885697 20 n 01 genus_Draba 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11885856 n 0000 | large genus of low tufted herbs of temperate and Arctic regions -11885856 20 n 01 draba 0 003 @ 12205694 n 0000 #m 11885697 n 0000 ~ 11886157 n 0000 | any of numerous low-growing cushion-forming plants of the genus Draba having rosette-forming leaves and terminal racemes of small flowers with scapose or leafy stems; fruit is a dehiscent oblong or linear silique -11886157 20 n 04 whitlow_grass 0 shadflower 0 shad-flower 0 Draba_verna 0 001 @ 11885856 n 0000 | annual weed of Europe and North America having a rosette of basal leaves and tiny flowers followed by oblong seed capsules -11886380 20 n 02 Eruca 0 genus_Eruca 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11886537 n 0000 | annual to perennial herbs of the Mediterranean region -11886537 20 n 07 rocket 0 roquette 0 garden_rocket 0 rocket_salad 0 arugula 0 Eruca_sativa 0 Eruca_vesicaria_sativa 0 002 @ 12205694 n 0000 #m 11886380 n 0000 | erect European annual often grown as a salad crop to be harvested when young and tender -11886788 20 n 02 Erysimum 0 genus_Erysimum 0 007 @ 11575425 n 0000 #m 11867525 n 0000 %m 11887119 n 0000 %m 11887310 n 0000 %m 11887476 n 0000 %m 11887750 n 0000 %m 11888061 n 0000 | large genus of annual or perennial herbs some grown for their flowers and some for their attractive evergreen leaves; Old World and North America -11887119 20 n 01 wallflower 2 003 @ 11669921 n 0000 #m 11886788 n 0000 ~ 11887476 n 0000 | any of numerous plants of the genus Erysimum having fragrant yellow or orange or brownish flowers -11887310 20 n 01 prairie_rocket 2 002 @ 11669921 n 0000 #m 11886788 n 0000 | any of several North American plants of the genus Erysimum having large yellow flowers -11887476 20 n 03 Siberian_wall_flower 0 Erysimum_allionii 0 Cheiranthus_allionii 0 002 @ 11887119 n 0000 #m 11886788 n 0000 | showy erect biennial or short-lived perennial cultivated for its terminal racemes of orange-yellow flowers; sometimes placed in genus Cheiranthus -11887750 20 n 04 western_wall_flower 0 Erysimum_asperum 0 Cheiranthus_asperus 0 Erysimum_arkansanum 0 002 @ 11669921 n 0000 #m 11886788 n 0000 | biennial or short-lived perennial prairie rocket having orange-yellow flowers; western North America to Minnesota and Kansas; sometimes placed in genus Cheiranthus -11888061 20 n 02 wormseed_mustard 0 Erysimum_cheiranthoides 0 002 @ 13085113 n 0000 #m 11886788 n 0000 | slender yellow-flowered European mustard often troublesome as a weed; formerly used as an anthelmintic -11888271 20 n 01 genus_Heliophila 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11888424 n 0000 | genus of South African flowering herbs and subshrubs -11888424 20 n 01 heliophila 0 002 @ 11669921 n 0000 #m 11888271 n 0000 | any of various South African herbs and subshrubs cultivated for long showy racemes of bright blue flowers with white eyes -11888621 20 n 02 Hesperis 0 genus_Hesperis 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11888800 n 0000 | biennial or perennial erect herbs having nocturnally fragrant flowers -11888800 20 n 04 damask_violet 0 Dame's_violet 0 sweet_rocket 0 Hesperis_matronalis 0 002 @ 11669921 n 0000 #m 11888621 n 0000 | long cultivated herb having flowers whose scent is more pronounced in the evening; naturalized throughout Europe to Siberia and into North America -11889078 20 n 02 Hugueninia 0 genus_Hugueninia 0 002 @ 11575425 n 0000 %m 11889205 n 0000 | one species: tansy-leaved rocket -11889205 20 n 03 tansy-leaved_rocket 0 Hugueninia_tanacetifolia 0 Sisymbrium_tanacetifolia 0 002 @ 12205694 n 0000 #m 11889078 n 0000 | perennial stellate and hairy herb with small yellow flowers of mountains of southern Europe; sometimes placed in genus Sisymbrium -11889473 20 n 02 Iberis 0 genus_Iberis 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11889619 n 0000 | Old World herbs and subshrubs: candytuft -11889619 20 n 01 candytuft 0 002 @ 11669921 n 0000 #m 11889473 n 0000 | any of various flowering plants of the genus Iberis cultivated for their showy clusters of white to red or purple flowers; native to Mediterranean region -11889847 20 n 02 Isatis 0 genus_Isatis 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11890022 n 0000 %m 11890150 n 0000 | Old World genus of annual to perennial herbs: woad -11890022 20 n 01 woad 0 003 @ 12205694 n 0000 #m 11889847 n 0000 ~ 11890150 n 0000 | any of several herbs of the genus Isatis -11890150 20 n 02 dyer's_woad 0 Isatis_tinctoria 0 002 @ 11890022 n 0000 #m 11889847 n 0000 | European biennial formerly grown for the blue coloring matter yielded by its leaves -11890329 20 n 02 Lepidium 0 genus_Lepidium 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11890507 n 0000 | cosmopolitan genus of annual and biennial and perennial herbs: cress -11890507 20 n 05 common_garden_cress 0 garden_pepper_cress 0 pepper_grass 0 pepperwort 1 Lepidium_sativum 0 003 @ 11869351 n 0000 #m 11890329 n 0000 %p 07733005 n 0000 | annual herb used as salad green and garnish -11890723 20 n 02 Lesquerella 0 genus_Lesquerella 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11890884 n 0000 | genus of low-growing hairy herbs: bladderpods -11890884 20 n 01 bladderpod 1 002 @ 12205694 n 0000 #m 11890723 n 0000 | any of several hairy North American herbs having yellow racemose flowers and inflated pods -11891050 20 n 02 Lobularia 0 genus_Lobularia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11891175 n 0000 | sweet alyssum -11891175 20 n 03 sweet_alyssum 0 sweet_alison 0 Lobularia_maritima 0 002 @ 11669921 n 0000 #m 11891050 n 0000 | perennial European plant having clusters of small fragrant usually white flowers; widely grown in gardens -11891395 20 n 02 Lunaria 0 genus_Lunaria 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11891541 n 0000 | small genus of European herbs: honesty -11891541 20 n 06 honesty 0 silver_dollar 0 money_plant 0 satin_flower 0 satinpod 0 Lunaria_annua 0 002 @ 12205694 n 0000 #m 11891395 n 0000 | southeastern European plant cultivated for its fragrant purplish flowers and round flat papery silver-white seedpods that are used for indoor decoration -11891838 20 n 02 Malcolmia 0 genus_Malcolmia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11892029 n 0000 | genus of plants usually found in coastal habitats; Mediterranean to Afghanistan -11892029 20 n 02 Malcolm_stock 0 stock 2 002 @ 11669921 n 0000 #m 11891838 n 0000 | any of various ornamental flowering plants of the genus Malcolmia -11892181 20 n 03 Virginian_stock 0 Virginia_stock 0 Malcolmia_maritima 0 001 @ 11669921 n 0000 | erect branching herb cultivated for its loose racemes of fragrant white or pink or red or lilac flowers; native to sands and sea cliffs of southwestern Greece and southern Albania -11892460 20 n 02 Matthiola 0 genus_Matthiola 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11892637 n 0000 %m 11892817 n 0000 | genus of Old World plants grown as ornamentals -11892637 20 n 02 stock 1 gillyflower 2 003 @ 11669921 n 0000 #m 11892460 n 0000 ~ 11892817 n 0000 | any of several Old World plants cultivated for their brightly colored flowers -11892817 20 n 02 brompton_stock 0 Matthiola_incana 0 002 @ 11892637 n 0000 #m 11892460 n 0000 | European plant with racemes of sweet-scented flowers; widely cultivated as an ornamental -11893004 20 n 02 Nasturtium 2 genus_Nasturtium 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11893131 n 0000 | aquatic herbs -11893131 20 n 03 common_watercress 0 Rorippa_nasturtium-aquaticum 0 Nasturtium_officinale 0 002 @ 11869689 n 0000 #m 11893004 n 0000 | perennial Eurasian cress growing chiefly in springs or running water having fleshy pungent leaves used in salads or as a potherb or garnish; introduced in North America and elsewhere -11893451 20 n 02 Physaria 0 genus_Physaria 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11893640 n 0000 | small genus of western North American herbs similar to Lesquerella: bladderpods -11893640 20 n 01 bladderpod 2 002 @ 12205694 n 0000 #m 11893451 n 0000 | any of several plants of the genus Physaria having racemose yellow flowers and inflated pods -11893808 20 n 02 Pritzelago 0 genus_Pritzelago 0 002 @ 11575425 n 0000 #m 11867525 n 0000 | chamois cress -11893916 20 n 03 chamois_cress 0 Pritzelago_alpina 0 Lepidium_alpina 0 001 @ 12205694 n 0000 | small tufted perennial herb of mountains of central and southern Europe having very small flowers of usually leafless stems; sometimes placed in genus Lepidium -11894173 20 n 02 Raphanus 0 genus_Raphanus 0 005 @ 11575425 n 0000 #m 11867525 n 0000 %m 11894327 n 0000 %m 11894558 n 0000 %m 11894770 n 0000 | radish -11894327 20 n 02 radish_plant 0 radish 4 006 @ 11868814 n 0000 #m 11894173 n 0000 %p 07735687 n 0000 ~ 11894770 n 0000 %p 11894958 n 0000 ~ 11895092 n 0000 | a cruciferous plant of the genus Raphanus having a pungent edible root -11894558 20 n 05 jointed_charlock 0 wild_radish 0 wild_rape 0 runch 0 Raphanus_raphanistrum 0 002 @ 13085113 n 0000 #m 11894173 n 0000 | Eurasian weed having yellow or mauve or white flowers and podlike fruits -11894770 20 n 02 radish 0 Raphanus_sativus 0 003 @ 11894327 n 0000 #m 11894173 n 0000 %s 15033367 n 0000 | Eurasian plant widely cultivated for its edible pungent root usually eaten raw -11894958 20 n 01 radish 2 002 @ 13125117 n 0000 #p 11894327 n 0000 | pungent edible root of any of various cultivated radish plants -11895092 20 n 04 radish 3 daikon 0 Japanese_radish 0 Raphanus_sativus_longipinnatus 0 001 @ 11894327 n 0000 | radish of Japan with a long hard durable root eaten raw or cooked -11895270 20 n 02 Rorippa 0 genus_Rorippa 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11895472 n 0000 %m 11895714 n 0000 | annual and perennial herbs of damp habitats; cosmopolitan except Antarctica -11895472 20 n 03 marsh_cress 0 yellow_watercress 0 Rorippa_islandica 0 002 @ 11869689 n 0000 #m 11895270 n 0000 | annual or biennial cress growing in damp places sometimes used in salads or as a potherb; troublesome weed in some localities -11895714 20 n 03 great_yellowcress 0 Rorippa_amphibia 0 Nasturtium_amphibium 0 002 @ 11869689 n 0000 #m 11895270 n 0000 | perennial herb found on streams and riversides throughout Europe except extreme north and Mediterranean; sometimes placed in genus Nasturtium -11895980 20 n 01 genus_Schizopetalon 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11896141 n 0000 | small genus of South American herbs grown for its flowers -11896141 20 n 02 schizopetalon 0 Schizopetalon_walkeri 0 002 @ 11669921 n 0000 #m 11895980 n 0000 | a dainty South American annual having deeply pinnatifid leaves and racemes of fringed almond-scented purple-white flowers -11896365 20 n 02 Sinapis 0 genus_Sinapis 0 002 @ 11575425 n 0000 #m 11867525 n 0000 | small genus of Old World herbs usually included in genus Brassica -11896519 20 n 03 white_mustard 0 Brassica_hirta 0 Sinapis_alba 0 002 @ 11878283 n 0000 %p 07819303 n 0000 | Eurasian mustard cultivated for its pungent seeds; a source of table mustard and mustard oil -11896722 20 n 06 field_mustard 0 wild_mustard 0 charlock 0 chadlock 0 Brassica_kaber 0 Sinapis_arvensis 0 001 @ 11878283 n 0000 | weedy Eurasian plant often a pest in grain fields -11896904 20 n 01 genus_Sisymbrium 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11897116 n 0000 | genus of Old World annual or biennial or perennial herbs with racemose flowers; many are considered to be weeds -11897116 20 n 02 hedge_mustard 0 Sisymbrium_officinale 0 002 @ 12205694 n 0000 #m 11896904 n 0000 | stiffly branching Old World annual with pale yellow flowers; widely naturalized in North America; formerly used medicinally -11897342 20 n 02 Stanleya 0 genus_Stanleya 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11897466 n 0000 | prince's plume -11897466 20 n 04 desert_plume 0 prince's-plume 0 Stanleya_pinnata 0 Cleome_pinnata 0 002 @ 13118707 n 0000 #m 11897342 n 0000 | perennial of southwestern United States having leathery blue-green pinnatifid leaves and thick plumelike spikes of yellow flowers; sometimes placed in genus Cleome -11897760 20 n 02 Stephanomeria 0 genus_Stephanomeria 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11897900 n 0000 | malheur wire lettuce -11897900 20 n 02 malheur_wire_lettuce 0 Stephanomeria_malheurensis 0 002 @ 11868814 n 0000 #m 11897760 n 0000 | a small plant of Oregon resembling mustard; a threatened species -11898079 20 n 02 Subularia 0 genus_Subularia 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11898271 n 0000 | small genus of herbs of north temperate regions and mountains of tropical Africa -11898271 20 n 02 awlwort 0 Subularia_aquatica 0 002 @ 13121544 n 0000 #m 11898079 n 0000 | small aquatic plant having tufted awl-shaped leaves in a basal rosette and minute white flowers; circumboreal -11898474 20 n 02 Thlaspi 0 genus_Thlaspi 0 004 @ 11575425 n 0000 #m 11867525 n 0000 %m 11898639 n 0000 %m 11898775 n 0000 | herbs of temperate regions: pennycress -11898639 20 n 01 pennycress 0 003 @ 13085113 n 0000 #m 11898474 n 0000 ~ 11898775 n 0000 | any of several plants of the genus Thlaspi -11898775 20 n 07 field_pennycress 0 French_weed 0 fanweed 0 penny_grass 0 stinkweed 0 mithridate_mustard 0 Thlaspi_arvense 0 002 @ 11898639 n 0000 #m 11898474 n 0000 | foetid Eurasian weed having round flat pods; naturalized throughout North America -11899027 20 n 02 Thysanocarpus 0 genus_Thysanocarpus 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11899223 n 0000 | small genus of herbs of upland regions of the Pacific coast of North America -11899223 20 n 02 fringepod 0 lacepod 0 002 @ 12205694 n 0000 #m 11899027 n 0000 | annual herb having pinnatifid basal leaves and slender racemes of small white flowers followed by one-seeded winged silicles -11899432 20 n 02 Turritis 0 genus_Turritis 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11872658 n 0000 | closely related to and often included in genus Arabis -11899595 20 n 02 Vesicaria 0 genus_Vesicaria 0 003 @ 11575425 n 0000 #m 11867525 n 0000 %m 11899762 n 0000 | small genus of chiefly Mediterranean herbs: bladderpods -11899762 20 n 01 bladderpod 3 002 @ 12205694 n 0000 #m 11899595 n 0000 | annual or perennial herbs with inflated seed pods; some placed in genus Lesquerella -11899921 20 n 01 wasabi 0 002 @ 12205694 n 0000 #m 11867525 n 0000 | a Japanese plant of the family Cruciferae with a thick green root -11900058 20 n 03 Papaveraceae 0 family_Papaveraceae 0 poppy_family 0 019 @ 11565385 n 0000 #m 11864364 n 0000 %m 11900569 n 0000 %m 11900986 n 0000 %m 11902595 n 0000 %m 11903167 n 0000 %m 11903525 n 0000 %m 11903881 n 0000 %m 11904896 n 0000 %m 11905236 n 0000 %m 11905584 n 0000 %m 11905989 n 0000 %m 11906359 n 0000 %m 11906713 n 0000 %m 11907267 n 0000 %m 11907554 n 0000 %m 11907939 n 0000 %m 11908431 n 0000 %m 11908718 n 0000 | herbs or shrubs having milky and often colored juices and capsular fruits -11900569 20 n 01 poppy 0 018 @ 11669921 n 0000 #m 11900058 n 0000 ~ 11901294 n 0000 ~ 11901452 n 0000 ~ 11901597 n 0000 ~ 11901759 n 0000 ~ 11901977 n 0000 ~ 11902200 n 0000 ~ 11902389 n 0000 ~ 11903671 n 0000 ~ 11905392 n 0000 ~ 11906127 n 0000 ~ 11906514 n 0000 ~ 11906917 n 0000 ~ 11907100 n 0000 ~ 11907405 n 0000 ~ 11908549 n 0000 ~ 11908846 n 0000 | annual or biennial or perennial herbs having showy flowers -11900986 20 n 02 Papaver 0 genus_Papaver 0 009 @ 11575425 n 0000 #m 11900058 n 0000 %m 11901294 n 0000 %m 11901452 n 0000 %m 11901597 n 0000 %m 11901759 n 0000 %m 11901977 n 0000 %m 11902200 n 0000 %m 11902389 n 0000 | type genus of the Papaveraceae; chiefly bristly hairy herbs with usually showy flowers -11901294 20 n 02 Iceland_poppy 1 Papaver_alpinum 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | Old World alpine poppy with white or yellow to orange flowers -11901452 20 n 02 western_poppy 0 Papaver_californicum 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | showy annual of California with red flowers -11901597 20 n 02 prickly_poppy 1 Papaver_argemone 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | annual Old World poppy with orange-red flowers and bristly fruit -11901759 20 n 03 Iceland_poppy 2 arctic_poppy 0 Papaver_nudicaule 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | subarctic perennial poppy of both hemispheres having fragrant white or yellow to orange or peach flowers -11901977 20 n 02 oriental_poppy 0 Papaver_orientale 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | commonly cultivated Asiatic perennial poppy having stiff heavily haired leaves and bright scarlet or pink to orange flowers -11902200 20 n 04 corn_poppy 0 field_poppy 0 Flanders_poppy 0 Papaver_rhoeas 0 002 @ 11900569 n 0000 #m 11900986 n 0000 | annual European poppy common in grain fields and often cultivated -11902389 20 n 02 opium_poppy 0 Papaver_somniferum 0 003 @ 11900569 n 0000 #m 11900986 n 0000 %p 07827750 n 0000 | southwestern Asian herb with greyish leaves and white or reddish flowers; source of opium -11902595 20 n 01 genus_Argemone 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11902709 n 0000 | prickly poppies -11902709 20 n 04 prickly_poppy 2 argemone 0 white_thistle 2 devil's_fig 0 003 @ 12205694 n 0000 #m 11902595 n 0000 ~ 11902982 n 0000 | any plant of the genus Argemone having large white or yellow flowers and prickly leaves and stems and pods; chiefly of tropical America -11902982 20 n 02 Mexican_poppy 0 Argemone_mexicana 0 001 @ 11902709 n 0000 | annual herb with prickly stems and large yellow flowers; southern United States to West Indies and Mexico -11903167 20 n 01 genus_Bocconia 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11903333 n 0000 | tropical American trees or shrubs closely related to genus Macleaya -11903333 20 n 03 bocconia 1 tree_celandine 0 Bocconia_frutescens 0 002 @ 13109733 n 0000 #m 11903167 n 0000 | small Central American tree having loose racemes of purple-tinted green flowers -11903525 20 n 02 Chelidonium 0 genus_Chelidonium 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11903671 n 0000 | one species: greater celandine -11903671 20 n 05 celandine 1 greater_celandine 0 swallowwort 1 swallow_wort 0 Chelidonium_majus 0 002 @ 11900569 n 0000 #m 11903525 n 0000 | perennial herb with branched woody stock and bright yellow flowers -11903881 20 n 02 Corydalis 0 genus_Corydalis 0 006 @ 11575425 n 0000 #m 11900058 n 0000 %m 11904109 n 0000 %m 11904274 n 0000 ~ 11904477 n 0000 ~ 11904743 n 0000 | annual or perennial herbs of Himalayan China and South Africa -11904109 20 n 01 corydalis 1 002 @ 11669921 n 0000 #m 11903881 n 0000 | a plant of the genus Corydalis with beautiful compound foliage and spurred tubular flowers -11904274 20 n 03 climbing_corydalis 0 Corydalis_claviculata 0 Fumaria_claviculata 0 002 @ 13100677 n 0000 #m 11903881 n 0000 | annual vine with decompound leaves and racemes of yellow and pink flowers -11904477 20 n 04 Roman_wormwood 1 rock_harlequin 0 Corydalis_sempervirens 0 Fumaria_sempervirens 0 001 @ 11903881 n 0000 | glaucous herb of northeastern United States and Canada having loose racemes of yellow-tipped pink flowers; sometimes placed in genus Fumaria -11904743 20 n 03 fumewort 2 fumeroot 2 Corydalis_solida 0 001 @ 11903881 n 0000 | herb of northern Europe and Asia having erect racemes of red flowers -11904896 20 n 02 Dendromecon 0 genus_Dendromecon 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11905035 n 0000 | one species: bush poppy -11905035 20 n 02 bush_poppy 0 tree_poppy 0 002 @ 13112664 n 0000 #m 11904896 n 0000 | evergreen shrub of southwestern United States and Mexico often cultivated for its fragrant golden yellow flowers -11905236 20 n 02 Eschscholtzia 0 genus_Eschscholtzia 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11905392 n 0000 | showy herbs of western North America -11905392 20 n 02 California_poppy 0 Eschscholtzia_californica 0 002 @ 11900569 n 0000 #m 11905236 n 0000 | of Pacific coast of North America; widely cultivated for its yellow to red flowers -11905584 20 n 02 Glaucium 0 genus_Glaucium 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11905749 n 0000 | herbs of Europe and North Africa and Asia: horned poppy -11905749 20 n 05 horn_poppy 0 horned_poppy 0 yellow_horned_poppy 0 sea_poppy 0 Glaucium_flavum 0 002 @ 11669921 n 0000 #m 11905584 n 0000 | yellow-flowered Eurasian glaucous herb naturalized in along sandy shores in eastern North America -11905989 20 n 02 Hunnemannia 0 genus_Hunnemania 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11906127 n 0000 | one species: golden cup -11906127 20 n 03 golden_cup 0 Mexican_tulip_poppy 0 Hunnemania_fumariifolia 0 002 @ 11900569 n 0000 #m 11905989 n 0000 | native of Mexican highlands grown for its glossy clear yellow flowers and blue-grey finely dissected foliage -11906359 20 n 02 Macleaya 0 genus_Macleaya 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11906514 n 0000 | a perennial herb of eastern Asia: plume poppy -11906514 20 n 03 plume_poppy 0 bocconia 2 Macleaya_cordata 0 002 @ 11900569 n 0000 #m 11906359 n 0000 | herb of China and Japan widely cultivated for its plumelike panicles of creamy white flowers -11906713 20 n 02 Meconopsis 0 genus_Meconopsis 0 004 @ 11575425 n 0000 #m 11900058 n 0000 %m 11906917 n 0000 %m 11907100 n 0000 | herbs almost entirely of mountains of China and Tibet; often monocarpic -11906917 20 n 02 blue_poppy 0 Meconopsis_betonicifolia 0 002 @ 11900569 n 0000 #m 11906713 n 0000 | Chinese perennial having mauve-pink to bright sky blue flowers in drooping cymes -11907100 20 n 02 Welsh_poppy 0 Meconopsis_cambrica 0 002 @ 11900569 n 0000 #m 11906713 n 0000 | widely cultivated west European plant with showy pale yellow flowers -11907267 20 n 02 Platystemon 0 genus_Platystemon 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11907405 n 0000 | one species: creamcups -11907405 20 n 02 creamcups 0 Platystemon_californicus 0 002 @ 11900569 n 0000 #m 11907267 n 0000 | California plant with small pale yellow flowers -11907554 20 n 02 Romneya 0 genus_Romneya 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11907689 n 0000 | one species: matilija poppy -11907689 20 n 03 matilija_poppy 0 California_tree_poppy 0 Romneya_coulteri 0 002 @ 13118707 n 0000 #m 11907554 n 0000 | tall branching subshrub of California and Mexico often cultivated for its silvery-blue foliage and large fragrant white flowers -11907939 20 n 02 Sanguinaria 0 genus_Sanguinaria 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11908077 n 0000 | one species: bloodroot -11908077 20 n 05 bloodroot 0 puccoon 1 redroot 0 tetterwort 0 Sanguinaria_canadensis 0 002 @ 12205694 n 0000 #m 11907939 n 0000 | perennial woodland native of North America having a red root and red sap and bearing a solitary lobed leaf and white flower in early spring and having acrid emetic properties; rootstock used as a stimulant and expectorant -11908431 20 n 02 Stylomecon 0 genus_Stylomecon 0 002 @ 11575425 n 0000 #m 11900058 n 0000 | one species: wind poppy -11908549 20 n 04 wind_poppy 0 flaming_poppy 0 Stylomecon_heterophyllum 0 Papaver_heterophyllum 0 001 @ 11900569 n 0000 | California wild poppy with bright red flowers -11908718 20 n 02 Stylophorum 0 genus_Stylophorum 0 003 @ 11575425 n 0000 #m 11900058 n 0000 %m 11908846 n 0000 | wood poppies -11908846 20 n 03 celandine_poppy 0 wood_poppy 0 Stylophorum_diphyllum 0 002 @ 11900569 n 0000 #m 11908718 n 0000 | perennial herb native to woodland of the eastern United States having yellow flowers -11909048 20 n 03 Fumariaceae 0 family_Fumariaceae 0 fumitory_family 0 005 @ 11565385 n 0000 #m 11864364 n 0000 %m 11909353 n 0000 %m 11909745 n 0000 %m 11910070 n 0000 | erect or climbing herbs of the northern hemisphere and southern Africa: bleeding heart; Dutchman's breeches; fumitory; squirrel corn -11909353 20 n 02 Fumaria 0 genus_Fumaria 0 003 @ 11575425 n 0000 #m 11909048 n 0000 %m 11909527 n 0000 | annual herbs whose flowers have only one petal spurred at the base -11909527 20 n 04 fumitory 0 fumewort 1 fumeroot 1 Fumaria_officinalis 0 002 @ 12205694 n 0000 #m 11909353 n 0000 | delicate European herb with greyish leaves and spikes of purplish flowers; formerly used medicinally -11909745 20 n 02 Adlumia 0 genus_Adlumia 0 002 @ 11575425 n 0000 #m 11909048 n 0000 | one species: climbing fumitory -11909864 20 n 04 climbing_fumitory 0 Allegheny_vine 0 Adlumia_fungosa 0 Fumaria_fungosa 0 001 @ 13100677 n 0000 | vine with feathery leaves and white or pinkish flowers; sometimes placed in genus Fumaria -11910070 20 n 02 Dicentra 0 genus_Dicentra 0 004 @ 11575425 n 0000 #m 11909048 n 0000 %m 11910271 n 0000 %m 11910460 n 0000 | North American and Asian herbs with divided leaves and irregular flowers -11910271 20 n 04 bleeding_heart 0 lyreflower 0 lyre-flower 0 Dicentra_spectabilis 0 002 @ 12205694 n 0000 #m 11910070 n 0000 | garden plant having deep-pink drooping heart-shaped flowers -11910460 20 n 02 Dutchman's_breeches 0 Dicentra_cucullaria 0 002 @ 12205694 n 0000 #m 11910070 n 0000 | delicate spring-flowering plant of the eastern United States having white flowers with double spurs -11910666 20 n 02 squirrel_corn 0 Dicentra_canadensis 0 001 @ 12205694 n 0000 | American plant with cream-colored flowers and tuberous roots resembling kernels of corn -11910835 20 n 02 Asteridae 0 subclass_Asteridae 0 007 @ 08103777 n 0000 #m 11665781 n 0000 %m 11566230 n 0000 %m 11579418 n 0000 %m 11911274 n 0000 %m 12659730 n 0000 %m 12808227 n 0000 | a group of mostly sympetalous herbs and some trees and shrubs mostly with 2 fused carpels; contains 43 families including Campanulales; Solanaceae; Scrophulariaceae; Labiatae; Verbenaceae; Rubiaceae; Compositae; sometimes classified as a superorder -11911274 20 n 02 Campanulales 0 order_Campanulales 0 007 @ 11534677 n 0000 #m 11910835 n 0000 %m 11911591 n 0000 %m 12036533 n 0000 %m 12157276 n 0000 %m 12167749 n 0000 %m 12168126 n 0000 | an order of plants of the subclass Asteridae including: Campanulaceae; Lobeliaceae; Cucurbitaceae; Goodeniaceae; Compositae -11911591 20 n 05 Compositae 0 family_Compositae 0 Asteraceae 0 family_Asteraceae 0 aster_family 0 178 @ 11566230 n 0000 #m 11911274 n 0000 %m 11915214 n 0000 %m 11915658 n 0000 %m 11915899 n 0000 %m 11916268 n 0000 %m 11917633 n 0000 %m 11918131 n 0000 %m 11918631 n 0000 %m 11919026 n 0000 %m 11919232 n 0000 %m 11920344 n 0000 %m 11920867 n 0000 %m 11921200 n 0000 %m 11921622 n 0000 %m 11921949 n 0000 %m 11923016 n 0000 %m 11923827 n 0000 %m 11924330 n 0000 %m 11925140 n 0000 %m 11925720 n 0000 %m 11926185 n 0000 %m 11926640 n 0000 %m 11927616 n 0000 %m 11927901 n 0000 %m 11928549 n 0000 %m 11929027 n 0000 %m 11931756 n 0000 %m 11937523 n 0000 %m 11937965 n 0000 %m 11938977 n 0000 %m 11939380 n 0000 %m 11939887 n 0000 %m 11941261 n 0000 %m 11941719 n 0000 %m 11942144 n 0000 %m 11942366 n 0000 %m 11942875 n 0000 %m 11943299 n 0000 %m 11943824 n 0000 %m 11944196 n 0000 %m 11944569 n 0000 %m 11945228 n 0000 %m 11945930 n 0000 %m 11946584 n 0000 %m 11947079 n 0000 %m 11949217 n 0000 %m 11949707 n 0000 %m 11950028 n 0000 %m 11950345 n 0000 %m 11951385 n 0000 %m 11952153 n 0000 %m 11952900 n 0000 %m 11953762 n 0000 %m 11955398 n 0000 %m 11955770 n 0000 %m 11956208 n 0000 %m 11956671 n 0000 %m 11957912 n 0000 %m 11958316 n 0000 %m 11958742 n 0000 %m 11959104 n 0000 %m 11959489 n 0000 %m 11960084 n 0000 %m 11960540 n 0000 %m 11960943 n 0000 %m 11961266 n 0000 %m 11961686 n 0000 %m 11962108 n 0000 %m 11962500 n 0000 %m 11962853 n 0000 %m 11963158 n 0000 %m 11963755 n 0000 %m 11964269 n 0000 %m 11964688 n 0000 %m 11965054 n 0000 %m 11965378 n 0000 %m 11967572 n 0000 %m 11968104 n 0000 %m 11969410 n 0000 %m 11969977 n 0000 %m 11970429 n 0000 %m 11971094 n 0000 %m 11971600 n 0000 %m 11972141 n 0000 %m 11972569 n 0000 %m 11973159 n 0000 %m 11973888 n 0000 %m 11975100 n 0000 %m 11975482 n 0000 %m 11975853 n 0000 %m 11976715 n 0000 %m 11977125 n 0000 %m 11978035 n 0000 %m 11980088 n 0000 %m 11980577 n 0000 %m 11980867 n 0000 %m 11981314 n 0000 %m 11981817 n 0000 %m 11982724 n 0000 %m 11983160 n 0000 %m 11983739 n 0000 %m 11983910 n 0000 %m 11984397 n 0000 %m 11984854 n 0000 %m 11985586 n 0000 %m 11986091 n 0000 %m 11987722 n 0000 %m 11987956 n 0000 %m 11988419 n 0000 %m 11988774 n 0000 %m 11989266 n 0000 %m 11989636 n 0000 %m 11990804 n 0000 %m 11991080 n 0000 %m 11991993 n 0000 %m 11992340 n 0000 %m 11992674 n 0000 %m 11993007 n 0000 %m 11993932 n 0000 %m 11994827 n 0000 %m 11995683 n 0000 %m 11996092 n 0000 %m 11996490 n 0000 %m 11996792 n 0000 %m 11997775 n 0000 %m 11998648 n 0000 %m 11999140 n 0000 %m 11999455 n 0000 %m 11999958 n 0000 %m 12000609 n 0000 %m 12001565 n 0000 %m 12002197 n 0000 %m 12002957 n 0000 %m 12003407 n 0000 %m 12004310 n 0000 %m 12004686 n 0000 %m 12005148 n 0000 %m 12005500 n 0000 %m 12005869 n 0000 %m 12006081 n 0000 %m 12006503 n 0000 %m 12007560 n 0000 %m 12008017 n 0000 %m 12009250 n 0000 %m 12009616 n 0000 %m 12010021 n 0000 %m 12010458 n 0000 %m 12011067 n 0000 %m 12012897 n 0000 %m 12013323 n 0000 %m 12013811 n 0000 %m 12014739 n 0000 %m 12015076 n 0000 %m 12015384 n 0000 %m 12015840 n 0000 %m 12018640 n 0000 %m 12019190 n 0000 %m 12019675 n 0000 %m 12020048 n 0000 %m 12020388 n 0000 %m 12021120 n 0000 %m 12023996 n 0000 %m 12025019 n 0000 %m 12025849 n 0000 %m 12026306 n 0000 %m 12026764 n 0000 %m 12027864 n 0000 %m 12028196 n 0000 %m 12029326 n 0000 %m 12029929 n 0000 %m 12030265 n 0000 %m 12030479 n 0000 %m 12031739 n 0000 %m 12032215 n 0000 %m 12032939 n 0000 %m 12033310 n 0000 %m 12033939 n 0000 | plants with heads composed of many florets: aster; daisy; dandelion; goldenrod; marigold; lettuces; ragweed; sunflower; thistle; zinnia -11915214 20 n 02 composite 0 composite_plant 0 014 @ 11669921 n 0000 #m 11911591 n 0000 + 02701099 a 0101 ~ 11915658 n 0000 ~ 11915899 n 0000 ~ 11923174 n 0000 ~ 11923397 n 0000 ~ 11923637 n 0000 ~ 11990167 n 0000 ~ 11990313 n 0000 ~ 11990627 n 0000 ~ 12023407 n 0000 ~ 12023726 n 0000 ~ 12030654 n 0000 | considered the most highly evolved dicotyledonous plants, characterized by florets arranged in dense heads that resemble single flowers -11915658 20 n 02 compass_plant 0 compass_flower 0 004 @ 11915214 n 0000 #m 11911591 n 0000 ~ 11987511 n 0000 ~ 12015221 n 0000 | any of several plants having leaves so arranged on the axis as to indicate the cardinal points of the compass -11915899 20 n 02 everlasting 0 everlasting_flower 0 010 @ 11915214 n 0000 #m 11911591 n 0000 ~ 11917407 n 0000 ~ 11921395 n 0000 ~ 11972759 n 0000 ~ 11980318 n 0000 ~ 11981192 n 0000 ~ 11999656 n 0000 ~ 12007766 n 0000 ~ 12033709 n 0000 | any of various plants of various genera of the family Compositae having flowers that can be dried without loss of form or color -11916268 20 n 01 genus_Achillea 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11916467 n 0000 | perennial often aromatic and sometimes mat-forming herbs of north temperate regions: yarrow; milfoil -11916467 20 n 01 achillea 0 004 @ 12205694 n 0000 #m 11916268 n 0000 ~ 11916696 n 0000 ~ 11916965 n 0000 | any of several plants of the genus Achillea native to Europe and having small white flowers in flat-topped flower heads -11916696 20 n 03 yarrow 0 milfoil 1 Achillea_millefolium 0 001 @ 11916467 n 0000 | ubiquitous strong-scented mat-forming Eurasian herb of wasteland, hedgerow or pasture having narrow serrate leaves and small usually white florets; widely naturalized in North America -11916965 20 n 03 sneezeweed_yarrow 0 sneezewort 0 Achillea_ptarmica 0 001 @ 11916467 n 0000 | Eurasian herb having loose heads of button-shaped white flowers and long grey-green leaves that cause sneezing when powdered -11917186 20 n 02 Acroclinium 0 genus_Acroclinium 0 002 @ 11579418 n 0000 %m 11917407 n 0000 | genus of herbs and shrubs of Australia and South Africa: everlasting flower; most species usually placed in genus Helipterum -11917407 20 n 03 pink-and-white_everlasting 0 pink_paper_daisy 0 Acroclinium_roseum 0 002 @ 11915899 n 0000 #m 11917186 n 0000 | flower of southwestern Australia having bright pink daisylike papery flowers; grown for drying -11917633 20 n 02 Ageratina 0 genus_Ageratina 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11917835 n 0000 | annual to perennial herbs or shrubs of eastern United States and Central and South America -11917835 20 n 04 white_snakeroot 0 white_sanicle 0 Ageratina_altissima 0 Eupatorium_rugosum 0 002 @ 12205694 n 0000 #m 11917633 n 0000 | American herb having flat-topped clusters of small white flower heads; reputedly a cause of trembles and milk sickness; sometimes placed in genus Eupatorium -11918131 20 n 01 genus_Ageratum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11918286 n 0000 | genus of tropical American herbs grown for their flowers -11918286 20 n 01 ageratum 1 003 @ 11669921 n 0000 #m 11918131 n 0000 ~ 11918473 n 0000 | any plant of the genus Ageratum having opposite leaves and small heads of blue or white flowers -11918473 20 n 02 common_ageratum 0 Ageratum_houstonianum 0 001 @ 11918286 n 0000 | small tender herb grown for its fluffy brushlike blue to lavender blooms -11918631 20 n 02 Amberboa 0 genus_Amberboa 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11918808 n 0000 | herbs of Mediterranean to central Asia cultivated for their flowers -11918808 20 n 03 sweet_sultan 1 Amberboa_moschata 0 Centaurea_moschata 0 002 @ 11669921 n 0000 #m 11918631 n 0000 | Asian plant widely grown for its sweetly fragrant pink flowers; sometimes placed in genus Centaurea -11919026 20 n 01 genus_Ambrosia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11919447 n 0000 | comprising the ragweeds; in some classification considered the type genus of a separate family Ambrosiaceae -11919232 20 n 02 Ambrosiaceae 0 family_Ambrosiaceae 0 002 @ 11566230 n 0000 #m 11911591 n 0000 | in some classifications considered a separate family comprising a subgroup of the Compositae including the ragweeds -11919447 20 n 03 ragweed 1 ambrosia 0 bitterweed 1 005 @ 13085113 n 0000 #m 11919026 n 0000 ~ 11919761 n 0000 ~ 11919975 n 0000 ~ 11920133 n 0000 | any of numerous chiefly North American weedy plants constituting the genus Ambrosia that produce highly allergenic pollen responsible for much hay fever and asthma -11919761 20 n 02 common_ragweed 0 Ambrosia_artemisiifolia 0 001 @ 11919447 n 0000 | annual weed with finely divided foliage and spikes of green flowers; common in North America; introduced elsewhere accidentally -11919975 20 n 02 great_ragweed 0 Ambrosia_trifida 0 001 @ 11919447 n 0000 | a coarse annual with some leaves deeply and palmately three-cleft or five-cleft -11920133 20 n 03 western_ragweed 0 perennial_ragweed 0 Ambrosia_psilostachya 0 001 @ 11919447 n 0000 | coarse perennial ragweed with creeping roots of dry barren lands of southwestern United States and Mexico -11920344 20 n 01 genus_Ammobium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11920498 n 0000 | small genus of Australian herbs grown for their flowers -11920498 20 n 01 ammobium 0 003 @ 11669921 n 0000 #m 11920344 n 0000 ~ 11920663 n 0000 | any plant of the genus Ammobium having yellow flowers and silvery foliage -11920663 20 n 02 winged_everlasting 0 Ammobium_alatum 0 001 @ 11920498 n 0000 | Australian plant widely cultivated for its beautiful silvery-white blooms with bright yellow centers on long winged stems -11920867 20 n 02 Anacyclus 0 genus_Anacyclus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11920998 n 0000 | a Spanish pellitory -11920998 20 n 03 pellitory 1 pellitory-of-Spain 0 Anacyclus_pyrethrum 0 002 @ 12205694 n 0000 #m 11920867 n 0000 | a small Mediterranean plant containing a volatile oil once used to relieve toothache -11921200 20 n 02 Anaphalis 0 genus_Anaphalis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11921395 n 0000 | a genus of herbs of north temperate regions having hoary leaves: pearly everlasting -11921395 20 n 03 pearly_everlasting 0 cottonweed 3 Anaphalis_margaritacea 0 002 @ 11915899 n 0000 #m 11921200 n 0000 | an American everlasting having foliage with soft wooly hairs and corymbose heads with pearly white bracts -11921622 20 n 01 genus_Andryala 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11921792 n 0000 | a genus of hardy hairy latex-producing perennials of Mediterranean area -11921792 20 n 01 andryala 0 002 @ 12205694 n 0000 #m 11921622 n 0000 | any plant of the genus Andryala having milky sap and heads of bright yellow flowers -11921949 20 n 02 Antennaria 0 genus_Antennaria 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11922192 n 0000 %m 11922374 n 0000 | small woolly perennial herbs having small whitish discoid flowers surrounded by a ring of club-shaped bristles -11922192 20 n 03 ladies'_tobacco 0 lady's_tobacco 0 Antennaria_plantaginifolia 0 002 @ 12205694 n 0000 #m 11921949 n 0000 | North American perennial propagated by means of runners -11922374 20 n 04 cat's_foot 0 cat's_feet 0 pussytoes 0 Antennaria_dioica 0 006 @ 12205694 n 0000 #m 11921949 n 0000 ~ 11922661 n 0000 ~ 11922755 n 0000 ~ 11922839 n 0000 ~ 11922926 n 0000 | low-growing perennial herb having leaves with whitish down and clusters of small white flowers -11922661 20 n 01 plantain-leaved_pussytoes 0 001 @ 11922374 n 0000 | a variety of pussytoes -11922755 20 n 01 field_pussytoes 0 001 @ 11922374 n 0000 | a variety of pussytoes -11922839 20 n 01 solitary_pussytoes 0 001 @ 11922374 n 0000 | a variety of pussytoes -11922926 20 n 01 mountain_everlasting 0 001 @ 11922374 n 0000 | a variety of cat's foot -11923016 20 n 02 Anthemis 0 genus_Anthemis 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11923174 n 0000 %m 11923397 n 0000 %m 11923637 n 0000 | dog fennel -11923174 20 n 05 mayweed 0 dog_fennel 1 stinking_mayweed 0 stinking_chamomile 0 Anthemis_cotula 0 002 @ 11915214 n 0000 #m 11923016 n 0000 | widespread rank-smelling weed having white-rayed flower heads with yellow discs -11923397 20 n 04 yellow_chamomile 0 golden_marguerite 0 dyers'_chamomile 0 Anthemis_tinctoria 0 002 @ 11915214 n 0000 #m 11923016 n 0000 | Eurasian perennial herb with hairy divided leaves and yellow flowers; naturalized in North America -11923637 20 n 04 corn_chamomile 0 field_chamomile 0 corn_mayweed 2 Anthemis_arvensis 0 002 @ 11915214 n 0000 #m 11923016 n 0000 | European white-flowered weed naturalized in North America -11923827 20 n 02 Antheropeas 0 genus_Antheropeas 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11924014 n 0000 | small genus of North American herbs often included in genus Eriophyllum -11924014 20 n 04 woolly_daisy 0 dwarf_daisy 0 Antheropeas_wallacei 0 Eriophyllum_wallacei 0 002 @ 11672400 n 0000 #m 11923827 n 0000 | tiny grey woolly tufted annual with small golden-yellow flower heads; southeastern California to northwestern Arizona and southwestern Utah; sometimes placed in genus Eriophyllum -11924330 20 n 02 Arctium 0 genus_Arctium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11924445 n 0000 | burdock -11924445 20 n 02 burdock 0 clotbur 0 004 @ 13118707 n 0000 #m 11924330 n 0000 ~ 11924661 n 0000 ~ 11924849 n 0000 | any of several erect biennial herbs of temperate Eurasia having stout taproots and producing burs -11924661 20 n 03 common_burdock 0 lesser_burdock 0 Arctium_minus 0 001 @ 11924445 n 0000 | a plant that is ubiquitous in all but very acid soil; found in most of Europe and North Africa -11924849 20 n 04 great_burdock 0 greater_burdock 0 cocklebur 2 Arctium_lappa 0 001 @ 11924445 n 0000 | burdock having heart-shaped leaves found in open woodland, hedgerows and rough grassland of Europe (except extreme N) and Asia Minor; sometimes cultivated for medicinal and culinary use -11925140 20 n 02 Arctotis 0 genus_Arctotis 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11925303 n 0000 %m 11925450 n 0000 | herbs and subshrubs: African daisy -11925303 20 n 01 African_daisy 1 002 @ 11669921 n 0000 #m 11925140 n 0000 | any of several plants of the genus Arctotis having daisylike flowers -11925450 20 n 03 blue-eyed_African_daisy 0 Arctotis_stoechadifolia 0 Arctotis_venusta 0 002 @ 11669921 n 0000 #m 11925140 n 0000 | bushy perennial of South Africa with white or violet flowers; in its native region often clothes entire valley sides in a sheet of color -11925720 20 n 02 Argyranthemum 0 genus_Argyranthemum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11925898 n 0000 | comprises plants often included in the genus Chrysanthemum -11925898 20 n 05 marguerite 2 marguerite_daisy 0 Paris_daisy 0 Chrysanthemum_frutescens 0 Argyranthemum_frutescens 0 002 @ 13118707 n 0000 #m 11925720 n 0000 | perennial subshrub of the Canary Islands having usually pale yellow daisylike flowers; often included in genus Chrysanthemum -11926185 20 n 02 Argyroxiphium 0 genus_Argyroxiphium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11926365 n 0000 | small genus of Hawaiian spreading and rosette-forming shrubs -11926365 20 n 02 silversword 0 Argyroxiphium_sandwicense 0 002 @ 13112664 n 0000 #m 11926185 n 0000 | low-growing plant found only in volcanic craters on Hawaii having rosettes of narrow pointed silver-green leaves and clusters of profuse red-purple flowers on a tall stem -11926640 20 n 01 genus_Arnica 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11926833 n 0000 %m 11926976 n 0000 %m 11927215 n 0000 | large genus of herbs of north temperate and Arctic regions -11926833 20 n 01 arnica 1 002 @ 12205694 n 0000 #m 11926640 n 0000 | any of various rhizomatous usually perennial plants of the genus Arnica -11926976 20 n 02 heartleaf_arnica 0 Arnica_cordifolia 0 002 @ 11672400 n 0000 #m 11926640 n 0000 | wildflower with heart-shaped leaves and broad yellow flower heads; of alpine areas west of the Rockies from Alaska to southern California -11927215 20 n 01 Arnica_montana 0 003 @ 11672400 n 0000 #m 11926640 n 0000 %s 11927509 n 0000 | herb of pasture and open woodland throughout most of Europe and western Asia having orange-yellow daisylike flower heads that when dried are used as a stimulant and to treat bruises and swellings -11927509 20 n 01 arnica 2 002 @ 04439122 n 0000 #s 11927215 n 0000 | used especially in treating bruises -11927616 20 n 02 Arnoseris 0 genus_Arnoseris 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11927740 n 0000 | lamb succory -11927740 20 n 03 lamb_succory 0 dwarf_nipplewort 0 Arnoseris_minima 0 002 @ 12205694 n 0000 #m 11927616 n 0000 | small European herb with small yellow flowers -11927901 20 n 01 genus_Artemisia 0 014 @ 11579418 n 0000 #m 11911591 n 0000 %m 11928352 n 0000 %m 11928858 n 0000 %m 11929291 n 0000 %m 11929477 n 0000 %m 11929743 n 0000 %m 11929880 n 0000 %m 11930038 n 0000 %m 11930353 n 0000 %m 11930571 n 0000 %m 11930994 n 0000 %m 11931135 n 0000 %m 11931312 n 0000 | usually aromatic shrubs or herbs of north temperate regions and South Africa and western South America: wormwood; sagebrush; mugwort; tarragon -11928352 20 n 01 artemisia 0 003 @ 13112664 n 0000 #m 11927901 n 0000 ~ 11930203 n 0000 | any of various composite shrubs or herbs of the genus Artemisia having aromatic green or greyish foliage -11928549 20 n 01 wormwood 0 011 @ 13118707 n 0000 #m 11911591 n 0000 ~ 11928858 n 0000 ~ 11929291 n 0000 ~ 11929477 n 0000 ~ 11929743 n 0000 ~ 11930038 n 0000 ~ 11930571 n 0000 ~ 11930994 n 0000 ~ 11931312 n 0000 ~ 12014355 n 0000 | any of several low composite herbs of the genera Artemisia or Seriphidium -11928858 20 n 01 mugwort 0 004 @ 11928549 n 0000 #m 11927901 n 0000 ~ 11930788 n 0000 ~ 11931540 n 0000 | any of several weedy composite plants of the genus Artemisia -11929027 20 n 02 sagebrush 0 sage_brush 0 007 @ 13118707 n 0000 #m 11911591 n 0000 ~ 11929880 n 0000 ~ 11930353 n 0000 ~ 11931135 n 0000 ~ 12014085 n 0000 ~ 12014524 n 0000 | any of several North American composite subshrubs of the genera Artemis or Seriphidium -11929291 20 n 02 southernwood 0 Artemisia_abrotanum 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | shrubby European wormwood naturalized in North America; sometimes used in brewing beer -11929477 20 n 05 common_wormwood 0 absinthe 0 old_man 0 lad's_love 0 Artemisia_absinthium 0 003 @ 11928549 n 0000 #m 11927901 n 0000 #s 07908411 n 0000 | aromatic herb of temperate Eurasia and North Africa having a bitter taste used in making the liqueur absinthe -11929743 20 n 02 sweet_wormwood 0 Artemisia_annua 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | wormwood of southeastern Europe to Iran -11929880 20 n 03 California_sagebrush 0 California_sage 0 Artemisia_californica 0 002 @ 11929027 n 0000 #m 11927901 n 0000 | low ashy-grey California shrub -11930038 20 n 02 field_wormwood 0 Artemisia_campestris 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | European wormwood similar to common wormwood in its properties -11930203 20 n 03 tarragon 0 estragon 0 Artemisia_dracunculus 0 002 @ 11928352 n 0000 %p 07821610 n 0000 | aromatic perennial of southeastern Russia -11930353 20 n 03 sand_sage 0 silvery_wormwood 0 Artemisia_filifolia 0 002 @ 11929027 n 0000 #m 11927901 n 0000 | silver-haired shrub of central and southern United States and Mexico; a troublesome weed on rangelands -11930571 20 n 03 wormwood_sage 0 prairie_sagewort 0 Artemisia_frigida 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | silky-leaved aromatic perennial of dry northern parts of the northern hemisphere; has tawny florets -11930788 20 n 06 western_mugwort 0 white_sage 0 cudweed 3 prairie_sage 0 Artemisia_ludoviciana 0 Artemisia_gnaphalodes 0 001 @ 11928858 n 0000 | perennial cottony-white herb of southwestern United States -11930994 20 n 02 Roman_wormwood 2 Artemis_pontica 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | European wormwood; minor source of absinthe -11931135 20 n 03 bud_brush 0 bud_sagebrush 0 Artemis_spinescens 0 002 @ 11929027 n 0000 #m 11927901 n 0000 | a perennial that is valuable as sheep forage in the United States -11931312 20 n 04 dusty_miller 1 beach_wormwood 0 old_woman 0 Artemisia_stelleriana 0 002 @ 11928549 n 0000 #m 11927901 n 0000 | herb with greyish leaves found along the east coast of North America; used as an ornamental plant -11931540 20 n 02 common_mugwort 0 Artemisia_vulgaris 0 001 @ 11928858 n 0000 | European tufted aromatic perennial herb having hairy red or purple stems and dark green leaves downy white below and red-brown florets -11931756 20 n 01 genus_Aster 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11931918 n 0000 | large genus of herbs widely cultivated for their daisylike flowers -11931918 20 n 01 aster 0 039 @ 11669921 n 0000 #m 11931756 n 0000 ~ 11932745 n 0000 ~ 11932927 n 0000 ~ 11933099 n 0000 ~ 11933546 n 0000 ~ 11933728 n 0000 ~ 11933903 n 0000 ~ 11934041 n 0000 ~ 11934239 n 0000 ~ 11934616 n 0000 ~ 11934807 n 0000 ~ 11935027 n 0000 ~ 11935187 n 0000 ~ 11935330 n 0000 ~ 11935469 n 0000 ~ 11935627 n 0000 ~ 11935715 n 0000 ~ 11935794 n 0000 ~ 11935877 n 0000 ~ 11935953 n 0000 ~ 11936027 n 0000 ~ 11936113 n 0000 ~ 11936199 n 0000 ~ 11936287 n 0000 ~ 11936369 n 0000 ~ 11936448 n 0000 ~ 11936539 n 0000 ~ 11936624 n 0000 ~ 11936707 n 0000 ~ 11936782 n 0000 ~ 11936864 n 0000 ~ 11936946 n 0000 ~ 11937023 n 0000 ~ 11937102 n 0000 ~ 11937195 n 0000 ~ 11937278 n 0000 ~ 11937360 n 0000 ~ 11937446 n 0000 | any of various chiefly fall-blooming herbs of the genus Aster with showy daisylike flowers -11932745 20 n 01 wood_aster 0 004 @ 11931918 n 0000 ~ 11933257 n 0000 ~ 11933387 n 0000 ~ 11934463 n 0000 | any of several asters of eastern North America usually growing in woods -11932927 20 n 02 whorled_aster 0 Aster_acuminatus 0 001 @ 11931918 n 0000 | North American perennial with apparently whorled leaves and showy white purple-tinged flowers -11933099 20 n 02 heath_aster 2 Aster_arenosus 0 001 @ 11931918 n 0000 | common North American perennial with heathlike foliage and small white flower heads -11933257 20 n 02 heart-leaved_aster 0 Aster_cordifolius 0 001 @ 11932745 n 0000 | perennial wood aster of eastern North America -11933387 20 n 02 white_wood_aster 0 Aster_divaricatus 0 001 @ 11932745 n 0000 | rhizomatous perennial wood aster of eastern North America with white flowers -11933546 20 n 02 bushy_aster 0 Aster_dumosus 0 001 @ 11931918 n 0000 | stiff perennial of the eastern United States having small linear leaves and numerous tiny white flower heads -11933728 20 n 02 heath_aster 1 Aster_ericoides 0 001 @ 11931918 n 0000 | common much-branched North American perennial with heathlike foliage and small starry white flowers -11933903 20 n 02 white_prairie_aster 0 Aster_falcatus 0 001 @ 11931918 n 0000 | perennial of western North America having white flowers -11934041 20 n 02 stiff_aster 0 Aster_linarifolius 0 001 @ 11931918 n 0000 | wiry tufted perennial of the eastern United States with stiff erect rough stems, linear leaves and large violet flowers -11934239 20 n 04 goldilocks 0 goldilocks_aster 0 Aster_linosyris 0 Linosyris_vulgaris 0 001 @ 11931918 n 0000 | early-flowering perennial of southern and southeastern Europe with flower heads resembling those of goldenrod -11934463 20 n 02 large-leaved_aster 0 Aster_macrophyllus 0 001 @ 11932745 n 0000 | tufted perennial wood aster of North America; naturalized in Europe -11934616 20 n 02 New_England_aster 0 Aster_novae-angliae 0 001 @ 11931918 n 0000 | common perennial of eastern North America having showy purplish flowers; a parent of the Michaelmas daisy -11934807 20 n 03 Michaelmas_daisy 0 New_York_aster 0 Aster_novi-belgii 0 001 @ 11931918 n 0000 | North American perennial herb having small autumn-blooming purple or pink or white flowers; widely naturalized in Europe -11935027 20 n 02 upland_white_aster 0 Aster_ptarmicoides 0 001 @ 11931918 n 0000 | tufted rigid North American perennial with loose clusters of white flowers -11935187 20 n 02 Short's_aster 0 Aster_shortii 0 001 @ 11931918 n 0000 | perennial of southeastern United States having usually blue flowers -11935330 20 n 03 sea_aster 0 sea_starwort 0 Aster_tripolium 0 001 @ 11931918 n 0000 | a common European aster that grows in salt marshes -11935469 20 n 02 prairie_aster 0 Aster_turbinellis 0 001 @ 11931918 n 0000 | violet-flowered perennial aster of central United States having solitary heads -11935627 20 n 01 annual_salt-marsh_aster 0 001 @ 11931918 n 0000 | a variety of aster -11935715 20 n 01 aromatic_aster 0 001 @ 11931918 n 0000 | a variety of aster -11935794 20 n 01 arrow_leaved_aster 0 001 @ 11931918 n 0000 | a variety of aster -11935877 20 n 01 azure_aster 0 001 @ 11931918 n 0000 | a variety of aster -11935953 20 n 01 bog_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936027 20 n 01 crooked-stemmed_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936113 20 n 01 Eastern_silvery_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936199 20 n 01 flat-topped_white_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936287 20 n 01 late_purple_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936369 20 n 01 panicled_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936448 20 n 01 perennial_salt_marsh_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936539 20 n 01 purple-stemmed_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936624 20 n 01 rough-leaved_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936707 20 n 01 rush_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936782 20 n 01 Schreiber's_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936864 20 n 01 small_white_aster 0 001 @ 11931918 n 0000 | a variety of aster -11936946 20 n 01 smooth_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937023 20 n 01 southern_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937102 20 n 02 starved_aster 0 calico_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937195 20 n 01 tradescant's_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937278 20 n 01 wavy-leaved_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937360 20 n 01 Western_silvery_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937446 20 n 01 willow_aster 0 001 @ 11931918 n 0000 | a variety of aster -11937523 20 n 01 genus_Ayapana 0 003 @ 11585340 n 0000 #m 11911591 n 0000 %m 11937692 n 0000 | genus of tropical American herbs sometimes included in genus Eupatorium -11937692 20 n 03 ayapana 0 Ayapana_triplinervis 0 Eupatorium_aya-pana 0 002 @ 12205694 n 0000 #m 11937523 n 0000 | low spreading tropical American shrub with long slender leaves used to make a mildly stimulating drink resembling tea; sometimes placed in genus Eupatorium -11937965 20 n 02 Baccharis 0 genus_Baccharis 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11938261 n 0000 %m 11938556 n 0000 %m 11938732 n 0000 | shrubs of western hemisphere often having honey-scented flowers followed by silky thistlelike heads of tiny fruits; often used for erosion control -11938261 20 n 05 groundsel_tree 0 groundsel_bush 0 consumption_weed 0 cotton-seed_tree 0 Baccharis_halimifolia 0 002 @ 13112664 n 0000 #m 11937965 n 0000 | a shrub of salt marshes of eastern and south central North America and West Indies; fruit is surrounded with white plumelike hairy tufts -11938556 20 n 02 mule_fat 0 Baccharis_viminea 0 002 @ 13112664 n 0000 #m 11937965 n 0000 | California shrub with slender leafy shoots that are important browse for mule deer -11938732 20 n 05 coyote_brush 0 coyote_bush 0 chaparral_broom 0 kidney_wort 0 Baccharis_pilularis 0 002 @ 13112664 n 0000 #m 11937965 n 0000 | widely spreading evergreen shrub of southwestern United States with flower heads in a leafy panicle -11938977 20 n 02 Balsamorhiza 0 genus_Balsamorhiza 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11939180 n 0000 | genus of coarse western American herbs with large roots containing an aromatic balsam -11939180 20 n 01 balsamroot 0 002 @ 12205694 n 0000 #m 11938977 n 0000 | a plant of the genus Balsamorhiza having downy leaves in a basal rosette and yellow flowers and long balsam-scented taproots -11939380 20 n 02 Bellis 0 genus_Bellis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11939491 n 0000 | daisy -11939491 20 n 01 daisy 0 003 @ 11669921 n 0000 #m 11939380 n 0000 ~ 11939699 n 0000 | any of numerous composite plants having flower heads with well-developed ray flowers usually arranged in a single whorl -11939699 20 n 03 common_daisy 0 English_daisy 0 Bellis_perennis 0 001 @ 11939491 n 0000 | low-growing Eurasian plant with yellow central disc flowers and pinkish-white outer ray flowers -11939887 20 n 02 Bidens 0 genus_Bidens 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11940006 n 0000 | bur marigolds -11940006 20 n 05 bur_marigold 0 burr_marigold 0 beggar-ticks 1 beggar's-ticks 0 sticktight 0 007 @ 13118707 n 0000 #m 11939887 n 0000 ~ 11940349 n 0000 %p 11940478 n 0000 ~ 11940599 n 0000 ~ 11940750 n 0000 ~ 11940915 n 0000 | any of several plants of the genus Bidens having yellow flowers and prickly fruits that cling to fur and clothing -11940349 20 n 02 Spanish_needles 1 Bidens_bipinnata 0 001 @ 11940006 n 0000 | common bur marigold of the eastern United States -11940478 20 n 02 Spanish_needles 2 beggar-ticks 2 002 @ 12036368 n 0000 #p 11940006 n 0000 | the seed of bur marigolds -11940599 20 n 03 tickseed_sunflower 0 Bidens_coronata 0 Bidens_trichosperma 0 001 @ 11940006 n 0000 | North American bur marigold with large flowers -11940750 20 n 04 European_beggar-ticks 0 trifid_beggar-ticks 0 trifid_bur_marigold 0 Bidens_tripartita 0 001 @ 11940006 n 0000 | bur marigold of temperate Eurasia -11940915 20 n 02 swampy_beggar-ticks 0 Bidens_connata 0 001 @ 11940006 n 0000 | bur marigold of eastern and northern United States and Canada common in wet pastures and meadows -11941094 20 n 01 slender_knapweed 0 001 @ 11948264 n 0000 | a variety of knapweed -11941178 20 n 01 Jersey_knapweed 0 001 @ 11948264 n 0000 | a variety of knapweed -11941261 20 n 02 Boltonia 0 genus_Boltonia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11941478 n 0000 | genus of tall leafy perennial herbs of eastern America and eastern Asia having flowers that resemble asters -11941478 20 n 01 false_chamomile 0 002 @ 11672400 n 0000 #m 11941261 n 0000 | any of various autumn-flowering perennials having white or pink to purple flowers that resemble asters; wild in moist soils from New Jersey to Florida and Texas -11941719 20 n 02 Brachycome 0 genus_Brachycome 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11941924 n 0000 | mostly Australian herbs having basal or alternate leaves and loosely corymbose flower heads -11941924 20 n 02 Swan_River_daisy 0 Brachycome_Iberidifolia 0 002 @ 11669921 n 0000 #m 11941719 n 0000 | western Australian annual much cultivated for its flower heads with white or bluish to violet or variegated rays -11942144 20 n 02 Brickellia 0 genus_Brickelia 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | genus of herbs of southwestern America having usually creamy florets followed by one-seeded fruits in a prominent bristly sheath -11942366 20 n 02 Buphthalmum 0 genus_Buphthalmum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11942487 n 0000 | oxeye -11942487 20 n 01 oxeye 1 003 @ 11672400 n 0000 #m 11942366 n 0000 ~ 11942659 n 0000 | Eurasian perennial herbs having daisylike flowers with yellow rays and dark centers -11942659 20 n 02 woodland_oxeye 0 Buphthalmum_salicifolium 0 001 @ 11942487 n 0000 | hairy Eurasian perennial having deep yellow daisies on lax willowy stems; found in the wild in open woodland and on rocky slopes -11942875 20 n 02 Cacalia 0 genus_Cacalia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11943133 n 0000 | genus of tall smooth herbs of forested mountains of Europe and Asia minor; in some classifications includes many plants usually placed in genus Emilia -11943133 20 n 01 Indian_plantain 0 002 @ 12205694 n 0000 #m 11942875 n 0000 | any of various plants of the genus Cacalia having leaves resembling those of plantain -11943299 20 n 01 genus_Calendula 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11943407 n 0000 | marigold -11943407 20 n 01 calendula 0 003 @ 11669921 n 0000 #m 11943299 n 0000 ~ 11943660 n 0000 | any of numerous chiefly annual herbs of the genus Calendula widely cultivated for their yellow or orange flowers; often used for medicinal and culinary purposes -11943660 20 n 05 common_marigold 0 pot_marigold 0 ruddles 0 Scotch_marigold 0 Calendula_officinalis 0 001 @ 11943407 n 0000 | the common European annual marigold -11943824 20 n 02 Callistephus 0 genus_Callistephus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11943992 n 0000 | one species: erect Asiatic herb with large flowers -11943992 20 n 02 China_aster 0 Callistephus_chinensis 0 002 @ 11669921 n 0000 #m 11943824 n 0000 | valued for their beautiful flowers in a wide range of clear bright colors; grown primarily for cutting -11944196 20 n 01 thistle 0 011 @ 13085113 n 0000 #m 11911591 n 0000 ~ 11944751 n 0000 ~ 11944954 n 0000 ~ 11945367 n 0000 ~ 11953884 n 0000 ~ 11954345 n 0000 ~ 11954798 n 0000 ~ 11955532 n 0000 ~ 11998888 n 0000 ~ 12010628 n 0000 | any of numerous plants of the family Compositae and especially of the genera Carduus and Cirsium and Onopordum having prickly-edged leaves -11944569 20 n 02 Carduus 0 genus_Carduus 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11944751 n 0000 %m 11944954 n 0000 | genus of annual or perennial Old World prickly thistles -11944751 20 n 02 welted_thistle 0 Carduus_crispus 0 002 @ 11944196 n 0000 #m 11944569 n 0000 | European biennial introduced in North America having flower heads in crowded clusters at ends of branches -11944954 20 n 03 musk_thistle 0 nodding_thistle 0 Carduus_nutans 0 002 @ 11944196 n 0000 #m 11944569 n 0000 | Eurasian perennial naturalized in eastern North America having very spiny white cottony foliage and nodding musky crimson flower heads; valuable source of nectar -11945228 20 n 02 Carlina 0 genus_Carlina 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11945367 n 0000 | genus of Mediterranean thistles -11945367 20 n 01 carline_thistle 0 004 @ 11944196 n 0000 #m 11945228 n 0000 ~ 11945514 n 0000 ~ 11945783 n 0000 | a thistle of the genus Carlina -11945514 20 n 02 stemless_carline_thistle 0 Carlina_acaulis 0 001 @ 11945367 n 0000 | stemless perennial having large flowers with white or purple-brown florets nestled in a rosette of long spiny leaves hairy beneath; of alpine regions of southern and eastern Europe -11945783 20 n 02 common_carline_thistle 0 Carlina_vulgaris 0 001 @ 11945367 n 0000 | Eurasian thistle growing in sand dunes and dry chalky soils -11945930 20 n 02 Carthamus 0 genus_Carthamus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11946051 n 0000 | safflower -11946051 20 n 03 safflower 0 false_saffron 0 Carthamus_tinctorius 0 004 @ 12205694 n 0000 #m 11945930 n 0000 %p 11946313 n 0000 %s 11946433 n 0000 | thistlelike Eurasian plant widely grown for its red or orange flower heads and seeds that yield a valuable oil -11946313 20 n 01 safflower_seed 0 003 @ 13135832 n 0000 #p 11946051 n 0000 %s 07675040 n 0000 | seed of the safflower -11946433 20 n 01 safflower_oil 0 002 @ 14966667 n 0000 #s 11946051 n 0000 | oil from safflower seeds used as food as well as in medicines and paints -11946584 20 n 01 genus_Catananche 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11946727 n 0000 | genus of Mediterranean herbs: cupid's dart -11946727 20 n 01 catananche 0 003 @ 11669921 n 0000 #m 11946584 n 0000 ~ 11946918 n 0000 | any of several plants of the genus Catananche having long-stalked heads of blue or yellow flowers -11946918 20 n 03 blue_succory 0 cupid's_dart 0 Catananche_caerulea 0 001 @ 11946727 n 0000 | south European plant having dark-eyed flowers with flat blue rays -11947079 20 n 02 Centaurea 0 genus_Centaurea 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11947251 n 0000 %m 11947802 n 0000 %m 11948469 n 0000 | knapweed; star thistle -11947251 20 n 01 centaury 1 006 @ 13118707 n 0000 #m 11947079 n 0000 ~ 11947429 n 0000 ~ 11947629 n 0000 ~ 11948044 n 0000 ~ 11948264 n 0000 | any plant of the genus Centaurea -11947429 20 n 02 basket_flower 1 Centaurea_americana 0 001 @ 11947251 n 0000 | annual of southwestern United States cultivated for its purple flower heads and its bracts that resemble small baskets -11947629 20 n 03 dusty_miller 4 Centaurea_cineraria 0 Centaurea_gymnocarpa 0 001 @ 11947251 n 0000 | a plant having leaves and stems covered with down that resembles dust -11947802 20 n 04 cornflower 0 bachelor's_button 1 bluebottle 0 Centaurea_cyanus 0 002 @ 11669921 n 0000 #m 11947079 n 0000 | an annual Eurasian plant cultivated in North America having showy heads of blue or purple or pink or white flowers -11948044 20 n 03 star-thistle 0 caltrop 1 Centauria_calcitrapa 0 001 @ 11947251 n 0000 | Mediterranean annual or biennial herb having pinkish to purple flowers surrounded by spine-tipped scales; naturalized in America -11948264 20 n 01 knapweed 0 005 @ 11947251 n 0000 ~ 11941094 n 0000 ~ 11941178 n 0000 ~ 11948656 n 0000 ~ 11948864 n 0000 | any of various plants of the genus Centaurea having purple thistlelike flowers -11948469 20 n 02 sweet_sultan 2 Centaurea_imperialis 0 002 @ 11669921 n 0000 #m 11947079 n 0000 | perennial of mountains of Iran and Iraq; cultivated for its fragrant rose-pink flowers -11948656 20 n 04 lesser_knapweed 0 black_knapweed 0 hardheads 0 Centaurea_nigra 0 001 @ 11948264 n 0000 | a weedy perennial with tough wiry stems and purple flowers; native to Europe but widely naturalized -11948864 20 n 03 great_knapweed 0 greater_knapweed 0 Centaurea_scabiosa 0 001 @ 11948264 n 0000 | tall European perennial having purple flower heads -11949015 20 n 03 Barnaby's_thistle 0 yellow_star-thistle 0 Centaurea_solstitialis 0 001 @ 13085113 n 0000 | European weed having a winged stem and hairy leaves; adventive in the eastern United States -11949217 20 n 02 Chamaemelum 0 genus_Chamaemelum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11949402 n 0000 | small genus of plants sometimes included in genus Anthemis: chamomile -11949402 20 n 04 chamomile 0 camomile 0 Chamaemelum_nobilis 0 Anthemis_nobilis 0 003 @ 12205694 n 0000 #m 11949217 n 0000 #s 07934152 n 0000 | Eurasian plant with apple-scented foliage and white-rayed flowers and feathery leaves used medicinally; in some classification systems placed in genus Anthemis -11949707 20 n 01 genus_Chaenactis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11949857 n 0000 | genus of flowering herbs of western United States -11949857 20 n 01 chaenactis 0 002 @ 12205694 n 0000 #m 11949707 n 0000 | any of several United States plants having long stalks of funnel-shaped white or yellow flowers -11950028 20 n 01 genus_Chrysanthemum 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11950686 n 0000 %m 11950877 n 0000 %m 11951052 n 0000 | in some classifications many plants usually assigned to the genus Chrysanthemum have been divided among other genera: e.g. Argyranthemum; Dendranthema; Leucanthemum; Tanacetum -11950345 20 n 01 chrysanthemum 0 007 @ 11669921 n 0000 #m 11911591 n 0000 ~ 11950686 n 0000 ~ 11950877 n 0000 ~ 11951052 n 0000 %p 11951271 n 0000 ~ 11961100 n 0000 | any of numerous perennial Old World herbs having showy brightly colored flower heads of the genera Chrysanthemum, Argyranthemum, Dendranthema, Tanacetum; widely cultivated -11950686 20 n 03 corn_marigold 0 field_marigold 0 Chrysanthemum_segetum 0 002 @ 11950345 n 0000 #m 11950028 n 0000 | European herb with bright yellow flowers; a common weed in grain fields -11950877 20 n 02 crown_daisy 0 Chrysanthemum_coronarium 0 002 @ 11950345 n 0000 #m 11950028 n 0000 | shrubby annual of the Mediterranean region with yellowish-white flowers -11951052 20 n 04 chop-suey_greens 0 tong_ho 0 shun_giku 0 Chrysanthemum_coronarium_spatiosum 0 003 @ 11950345 n 0000 #m 11950028 n 0000 %p 07709701 n 0000 | grown for its succulent edible leaves used in Asian cooking -11951271 20 n 01 chrysanthemum 1 002 @ 11669335 n 0000 #p 11950345 n 0000 | the flower of a chrysanthemum plant -11951385 20 n 02 Chrysopsis 0 genus_Chrysopsis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11951511 n 0000 | golden aster -11951511 20 n 01 golden_aster 0 005 @ 11672400 n 0000 #m 11951385 n 0000 ~ 11951820 n 0000 ~ 11951961 n 0000 ~ 11952058 n 0000 | any of several shrubby herbs or subshrubs of the genus Chrysopsis having bright golden-yellow flower heads that resemble asters; throughout much of United States and into Canada -11951820 20 n 02 Maryland_golden_aster 0 Chrysopsis_mariana 0 001 @ 11951511 n 0000 | perennial golden aster of southeastern United States -11951961 20 n 01 grass-leaved_golden_aster 0 001 @ 11951511 n 0000 | a variety of golden aster -11952058 20 n 01 sickleweed_golden_aster 0 001 @ 11951511 n 0000 | a variety of golden aster -11952153 20 n 02 Chrysothamnus 0 genus_Chrysothamnus 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11952346 n 0000 %m 11952541 n 0000 | genus of low branching shrubs of western North America -11952346 20 n 01 goldenbush 4 003 @ 13112664 n 0000 #m 11952153 n 0000 ~ 11952541 n 0000 | any of various much-branched yellow-flowered shrubs of the genus Chrysothamnus; western North America -11952541 20 n 03 rabbit_brush 0 rabbit_bush 0 Chrysothamnus_nauseosus 0 002 @ 11952346 n 0000 #m 11952153 n 0000 | pleasantly aromatic shrub having erect slender flexible hairy branches and dense clusters of small yellow flowers covering vast areas of western alkali plains and affording a retreat for jackrabbits; source of a yellow dye used by the Navajo -11952900 20 n 02 Cichorium 0 genus_Cichorium 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11953038 n 0000 %m 11953339 n 0000 | chicory -11953038 20 n 04 chicory 1 succory 0 chicory_plant 0 Cichorium_intybus 0 004 @ 12205694 n 0000 #m 11952900 n 0000 %p 07730855 n 0000 %p 11953610 n 0000 | perennial Old World herb having rayed flower heads with blue florets cultivated for its root and its heads of crisp edible leaves used in salads -11953339 20 n 03 endive 0 witloof 0 Cichorium_endivia 0 004 @ 12205694 n 0000 #m 11952900 n 0000 %p 07731587 n 0000 %p 07731767 n 0000 | widely cultivated herb with leaves valued as salad green; either curly serrated leaves or broad flat ones that are usually blanched -11953610 20 n 02 chicory 2 chicory_root 0 002 @ 13125117 n 0000 #p 11953038 n 0000 | the dried root of the chicory plant: used as a coffee substitute -11953762 20 n 02 Cirsium 0 genus_Cirsium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11953884 n 0000 | plume thistles -11953884 20 n 02 plume_thistle 0 plumed_thistle 0 006 @ 11944196 n 0000 #m 11953762 n 0000 ~ 11954161 n 0000 ~ 11954484 n 0000 ~ 11955040 n 0000 ~ 11955153 n 0000 | any of numerous biennial to perennial herbs with handsome purple or yellow or occasionally white flower heads -11954161 20 n 03 Canada_thistle 0 creeping_thistle 0 Cirsium_arvense 0 001 @ 11953884 n 0000 | European thistle naturalized in United States and Canada where it is a pernicious weed -11954345 20 n 02 field_thistle 0 Cirsium_discolor 0 001 @ 11944196 n 0000 | stout North American thistle with purplish-pink flower heads -11954484 20 n 02 woolly_thistle 1 Cirsium_flodmanii 0 002 @ 11953884 n 0000 ~ 11954642 n 0000 | thistle of western North America having white woolly leaves -11954642 20 n 02 European_woolly_thistle 0 Cirsium_eriophorum 0 001 @ 11954484 n 0000 | woolly thistle of western and central Europe and Balkan Peninsula -11954798 20 n 03 melancholy_thistle 0 Cirsium_heterophylum 0 Cirsium_helenioides 0 001 @ 11944196 n 0000 | perennial stoloniferous thistle of northern Europe with lanceolate basal leaves and usually solitary heads of reddish-purple flowers -11955040 20 n 02 brook_thistle 0 Cirsium_rivulare 0 001 @ 11953884 n 0000 | of central and southwestern Europe -11955153 20 n 05 bull_thistle 0 boar_thistle 0 spear_thistle 0 Cirsium_vulgare 0 Cirsium_lanceolatum 0 001 @ 11953884 n 0000 | European thistle with rather large heads and prickly leaves; extensively naturalized as a weed in the United States -11955398 20 n 02 Cnicus 0 genus_Cnicus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11955532 n 0000 | one species: blessed thistle -11955532 20 n 03 blessed_thistle 1 sweet_sultan 3 Cnicus_benedictus 0 002 @ 11944196 n 0000 #m 11955398 n 0000 | annual of Mediterranean to Portugal having hairy stems and minutely spiny-toothed leaves and large heads of yellow flowers -11955770 20 n 02 Conoclinium 0 genus_Conoclinium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11955896 n 0000 | mistflower -11955896 20 n 05 mistflower 0 mist-flower 0 ageratum 2 Conoclinium_coelestinum 0 Eupatorium_coelestinum 0 002 @ 11669921 n 0000 #m 11955770 n 0000 | rhizomatous plant of central and southeastern United States and West Indies having large showy heads of clear blue flowers; sometimes placed in genus Eupatorium -11956208 20 n 02 Conyza 0 genus_Conyza 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11956348 n 0000 | common American weed or wildflower -11956348 20 n 05 horseweed 1 Canadian_fleabane 0 fleabane 3 Conyza_canadensis 0 Erigeron_canadensis 0 002 @ 13085113 n 0000 #m 11956208 n 0000 | common North American weed with linear leaves and small discoid heads of yellowish flowers; widely naturalized throughout temperate regions; sometimes placed in genus Erigeron -11956671 20 n 01 genus_Coreopsis 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11956850 n 0000 %m 11957162 n 0000 | genus of American plants widely cultivated for their flowers -11956850 20 n 04 coreopsis 0 tickseed 0 tickweed 0 tick-weed 0 005 @ 12205694 n 0000 #m 11956671 n 0000 ~ 11957317 n 0000 ~ 11957514 n 0000 ~ 11957678 n 0000 | any of numerous plants of the genus Coreopsis having a profusion of showy usually yellow daisylike flowers over long periods; North and South America -11957162 20 n 01 subgenus_Calliopsis 0 002 @ 11579418 n 0000 #m 11956671 n 0000 | used in some classification systems for some plants of genus Coreopsis -11957317 20 n 02 giant_coreopsis 0 Coreopsis_gigantea 0 001 @ 11956850 n 0000 | large treelike shrub having feathery leaves and clusters of large yellow flower heads; coastal southern California -11957514 20 n 02 sea_dahlia 0 Coreopsis_maritima 0 001 @ 11956850 n 0000 | stout herb with flowers one to a stalk; ornamental developed from a Mexican wildflower -11957678 20 n 02 calliopsis 0 Coreopsis_tinctoria 0 001 @ 11956850 n 0000 | North American annual widely cultivated for its yellow flowers with purple-red to brownish centers; in some classifications placed in a subgenus Calliopsis -11957912 20 n 01 genus_Cosmos 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11958080 n 0000 | genus of tropical American plants cultivated for their colorful flowers -11958080 20 n 02 cosmos 0 cosmea 0 002 @ 11669921 n 0000 #m 11957912 n 0000 | any of various mostly Mexican herbs of the genus Cosmos having radiate heads of variously colored flowers and pinnate leaves; popular fall-blooming annuals -11958316 20 n 02 Cotula 0 genus_Cotula 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11958499 n 0000 | cosmopolitan herbs especially southern hemisphere; many used as ground covers -11958499 20 n 02 brass_buttons 0 Cotula_coronopifolia 0 002 @ 11669921 n 0000 #m 11958316 n 0000 | South African herb with golden-yellow globose flower heads; naturalized in moist areas along coast of California; cultivated as an ornamental -11958742 20 n 02 Craspedia 0 genus_Craspedia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11958888 n 0000 | herbs of Australia and New Zealand -11958888 20 n 01 billy_buttons 0 002 @ 11669921 n 0000 #m 11958742 n 0000 | any of various plants of the genus Craspedia grown for their downy foliage and globose heads of golden flowers; Australia and New Zealand -11959104 20 n 02 Crepis 0 genus_Crepis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11959259 n 0000 | hawk's-beard; cosmopolitan in northern hemisphere -11959259 20 n 02 hawk's-beard 0 hawk's-beards 0 002 @ 11672400 n 0000 #m 11959104 n 0000 | any of various plants of the genus Crepis having loose heads of yellow flowers on top of a long branched leafy stem; northern hemisphere -11959489 20 n 02 Cynara 0 genus_Cynara 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11959632 n 0000 %m 11959862 n 0000 | artichoke; cardoon -11959632 20 n 04 artichoke 0 globe_artichoke 0 artichoke_plant 0 Cynara_scolymus 0 003 @ 12212361 n 0000 #m 11959489 n 0000 %p 07718747 n 0000 | Mediterranean thistlelike plant widely cultivated for its large edible flower head -11959862 20 n 02 cardoon 0 Cynara_cardunculus 0 003 @ 12212361 n 0000 #m 11959489 n 0000 %p 07730033 n 0000 | southern European plant having spiny leaves and purple flowers cultivated for its edible leafstalks and roots -11960084 20 n 01 genus_Dahlia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11960245 n 0000 | genus of perennial tuberous plants of Mexico and Central America -11960245 20 n 02 dahlia 0 Dahlia_pinnata 0 002 @ 11669921 n 0000 #m 11960084 n 0000 | any of several plants of or developed from the species Dahlia pinnata having tuberous roots and showy rayed variously colored flower heads; native to the mountains of Mexico and Central America and Colombia -11960540 20 n 02 Delairea 0 genus_Delairea 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11960673 n 0000 | one species: German ivy -11960673 20 n 03 German_ivy 0 Delairea_odorata 0 Senecio_milkanioides 0 002 @ 13100677 n 0000 #m 11960540 n 0000 | South African succulent evergreen twining climber with yellow flowers grown primarily as a houseplant for its foliage; sometimes placed in genus Senecio -11960943 20 n 02 Dendranthema 0 genus_Dendranthema 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | comprises plants often included in the genus Chrysanthemum -11961100 20 n 05 florist's_chrysanthemum 0 florists'_chrysanthemum 0 mum 0 Dendranthema_grandifloruom 0 Chrysanthemum_morifolium 0 001 @ 11950345 n 0000 | of China -11961266 20 n 02 Dimorphotheca 0 genus_Dimorphotheca 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11961446 n 0000 | South African herbs or subshrubs with usually yellow flowers -11961446 20 n 03 cape_marigold 0 sun_marigold 0 star_of_the_veldt 0 002 @ 11669921 n 0000 #m 11961266 n 0000 | any of several South African plants grown for the profusion of usually yellow daisylike flowers and mounds of aromatic foliage -11961686 20 n 02 Doronicum 0 genus_Doronicum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11961871 n 0000 | genus of Eurasian perennial tuberous or rhizomatous herbs: leopard's bane -11961871 20 n 02 leopard's-bane 0 leopardbane 0 002 @ 12205694 n 0000 #m 11961686 n 0000 | any of several herbs of the genus Doronicum having alternate often clasping stem leaves cultivated for their long stalks of yellow flower heads -11962108 20 n 02 Echinacea 0 genus_Echinacea 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11962272 n 0000 | small genus of North American coarse perennial herbs -11962272 20 n 01 coneflower 1 002 @ 11669921 n 0000 #m 11962108 n 0000 | any of various perennials of the eastern United States having thick rough leaves and long-stalked showy flowers with drooping rays and a conelike center -11962500 20 n 02 Echinops 0 genus_Echinops 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11962667 n 0000 | genus of Mediterranean and Eurasian herbs: globe thistles -11962667 20 n 01 globe_thistle 0 002 @ 12205694 n 0000 #m 11962500 n 0000 | any of various plants of the genus Echinops having prickly leaves and dense globose heads of bluish flowers -11962853 20 n 02 Elephantopus 0 genus_Elephantopus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11962994 n 0000 | perennial American herb -11962994 20 n 01 elephant's-foot 1 002 @ 12205694 n 0000 #m 11962853 n 0000 | any plant of the genus Elephantopus having heads of blue or purple flowers; America -11963158 20 n 02 Emilia 0 genus_Emilia 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11963305 n 0000 %m 11963572 n 0000 | tropical African herbs -11963305 20 n 06 tassel_flower 2 Emilia_coccinea 0 Emilia_javanica 0 Emilia_flammea 0 Cacalia_javanica 0 Cacalia_lutea 0 002 @ 12205694 n 0000 #m 11963158 n 0000 | tropical African annual having scarlet tassel-shaped flower heads; sometimes placed in genus Cacalia -11963572 20 n 02 tassel_flower 3 Emilia_sagitta 0 002 @ 12205694 n 0000 #m 11963158 n 0000 | tropical Asiatic annual cultivated for its small tassel-shaped heads of scarlet flowers -11963755 20 n 02 Encelia 0 genus_Encelia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11963932 n 0000 | genus of shrubs of southwestern United States and Mexico: brittlebush -11963932 20 n 04 brittlebush 0 brittle_bush 0 incienso 0 Encelia_farinosa 0 002 @ 11672400 n 0000 #m 11963755 n 0000 | fragrant rounded shrub of southwestern United States and adjacent Mexico having brittle stems and small crowded blue-green leaves and yellow flowers; produces a resin used in incense and varnish and in folk medicine -11964269 20 n 02 Enceliopsis 0 genus_Enceliopsis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11964446 n 0000 | small genus of xerophytic herbs of southwestern United States -11964446 20 n 02 sunray 0 Enceliopsis_nudicaulis 0 002 @ 11672400 n 0000 #m 11964269 n 0000 | herb having a basal cluster of grey-green leaves and leafless stalks each with a solitary broad yellow flower head; desert areas Idaho to Arizona -11964688 20 n 01 genus_Engelmannia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11964848 n 0000 | one species: North American herbs that resemble sunflowers -11964848 20 n 01 engelmannia 0 002 @ 11672400 n 0000 #m 11964688 n 0000 | common erect hairy perennial of plains and prairies of southern and central United States having flowers that resemble sunflowers -11965054 20 n 01 genus_Erechtites 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11965218 n 0000 | coarse herbs with whitish discoid flower heads and silky pappus -11965218 20 n 02 fireweed 2 Erechtites_hieracifolia 0 002 @ 13085113 n 0000 #m 11965054 n 0000 | an American weedy plant with small white or greenish flowers -11965378 20 n 02 Erigeron 0 genus_Erigeron 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11965627 n 0000 | cosmopolitan genus of usually perennial herbs with flowers that resemble asters; leaves occasionally (especially formerly) used medicinally -11965627 20 n 01 fleabane 2 010 @ 11672400 n 0000 #m 11965378 n 0000 ~ 11965962 n 0000 ~ 11966083 n 0000 ~ 11966215 n 0000 ~ 11966385 n 0000 ~ 11966617 n 0000 ~ 11966896 n 0000 ~ 11967142 n 0000 ~ 11967315 n 0000 | any of several North American plants of the genus Erigeron having daisylike flowers; formerly believed to repel fleas -11965962 20 n 02 blue_fleabane 0 Erigeron_acer 0 001 @ 11965627 n 0000 | widespread weed with pale purple-blue flowers -11966083 20 n 02 daisy_fleabane 0 Erigeron_annuus 0 001 @ 11965627 n 0000 | widely naturalized white-flowered North American herb -11966215 20 n 03 orange_daisy 0 orange_fleabane 0 Erigeron_aurantiacus 0 001 @ 11965627 n 0000 | mat-forming herb of Turkestan with nearly double orange-yellow flowers -11966385 20 n 02 spreading_fleabane 0 Erigeron_divergens 0 001 @ 11965627 n 0000 | well-branched plant with hairy leaves and stems each with a solitary flower head with narrow white or pink or lavender rays; western North America -11966617 20 n 03 seaside_daisy 0 beach_aster 0 Erigeron_glaucous 0 001 @ 11965627 n 0000 | slightly succulent perennial with basal leaves and hairy sticky stems each bearing a solitary flower head with narrow pink or lavender rays; coastal bluffs Oregon to southern California -11966896 20 n 02 Philadelphia_fleabane 0 Erigeron_philadelphicus 0 001 @ 11965627 n 0000 | especially pretty plant having a delicate fringe of threadlike rays around flower heads having very slender white or pink rays; United States and Canada -11967142 20 n 02 robin's_plantain 0 Erigeron_pulchellus 0 001 @ 11965627 n 0000 | common perennial of eastern North America having flowers with usually violet-purple rays -11967315 20 n 02 showy_daisy 0 Erigeron_speciosus 0 001 @ 11965627 n 0000 | plant having branching leafy stems each branch with an especially showy solitary flower head with many narrow pink or lavender or white rays; northwestern United States mountains -11967572 20 n 02 Eriophyllum 0 genus_Eriophyllum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11967744 n 0000 | genus of hairy herbs and shrubs of western North America -11967744 20 n 01 woolly_sunflower 0 003 @ 11672400 n 0000 #m 11967572 n 0000 ~ 11967878 n 0000 | any plant of the genus Eriophyllum -11967878 20 n 02 golden_yarrow 0 Eriophyllum_lanatum 0 001 @ 11967744 n 0000 | greyish woolly leafy perennial with branched stems ending in leafless stalks bearing golden-yellow flower heads; dry areas western North America -11968104 20 n 02 Eupatorium 0 genus_Eupatorium 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11968704 n 0000 %m 11968931 n 0000 %m 11969166 n 0000 | large genus of chiefly tropical herbs having heads of white or purplish flowers -11968335 20 n 02 hemp_agrimony 0 Eupatorium_cannabinum 0 001 @ 12205694 n 0000 | coarse European herb with palmately divided leaves and clusters of small reddish-purple flower heads -11968519 20 n 02 dog_fennel 2 Eupatorium_capillifolium 0 001 @ 12205694 n 0000 | weedy plant of southeastern United States having divided leaves and long clusters of greenish flowers -11968704 20 n 03 Joe-Pye_weed 1 spotted_Joe-Pye_weed 0 Eupatorium_maculatum 0 002 @ 12205694 n 0000 #m 11968104 n 0000 | North American herb having whorled leaves and terminal clusters of small pinkish or purple flower heads -11968931 20 n 04 boneset 1 agueweed 2 thoroughwort 0 Eupatorium_perfoliatum 0 002 @ 12205694 n 0000 #m 11968104 n 0000 | perennial herb of southeastern United States having white-rayed flower heads; formerly used as in folk medicine -11969166 20 n 05 Joe-Pye_weed 2 purple_boneset 0 trumpet_weed 0 marsh_milkweed 0 Eupatorium_purpureum 0 002 @ 12205694 n 0000 #m 11968104 n 0000 | North American herb having whorled leaves and terminal clusters of flowers spotted with purple -11969410 20 n 02 Felicia 0 genus_Felicia 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11969607 n 0000 %m 11969806 n 0000 | genus of tropical African herbs or subshrubs with usually blue flowers -11969607 20 n 03 blue_daisy 0 blue_marguerite 0 Felicia_amelloides 0 002 @ 11669921 n 0000 #m 11969410 n 0000 | hairy South African or Australian subshrub that has daisylike flowers with blue rays -11969806 20 n 02 kingfisher_daisy 0 Felicia_bergeriana 0 002 @ 11669921 n 0000 #m 11969410 n 0000 | softly hairy South African herb having flowers with bright blue rays -11969977 20 n 01 genus_Filago 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11970101 n 0000 | genus of small woolly herbs -11970101 20 n 03 cotton_rose 1 cudweed 2 filago 0 003 @ 11669921 n 0000 #m 11969977 n 0000 ~ 11970298 n 0000 | any plant of the genus Filago having capitate clusters of small woolly flower heads -11970298 20 n 02 herba_impia 0 Filago_germanica 0 001 @ 11970101 n 0000 | (literally an undutiful herb) a variety of cotton rose -11970429 20 n 01 genus_Gaillardia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11970586 n 0000 | genus of western American hairy herbs with showy flowers -11970586 20 n 01 gaillardia 0 003 @ 11672400 n 0000 #m 11970429 n 0000 ~ 11970846 n 0000 | any plant of western America of the genus Gaillardia having hairy leaves and long-stalked flowers in hot vibrant colors from golden yellow and copper to rich burgundy -11970846 20 n 05 blanket_flower 0 Indian_blanket 0 fire_wheel 0 fire-wheel 0 Gaillardia_pulchella 0 001 @ 11970586 n 0000 | annual of central United States having showy long-stalked yellow flower heads marked with scarlet or purple in the center -11971094 20 n 01 genus_Gazania 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11971248 n 0000 | genus of tomentose tropical African herbs with milky sap -11971248 20 n 01 gazania 0 003 @ 11669921 n 0000 #m 11971094 n 0000 ~ 11971406 n 0000 | any plant of the genus Gazania valued for their showy daisy flowers -11971406 20 n 02 treasure_flower 0 Gazania_rigens 0 001 @ 11971248 n 0000 | decumbent South African perennial with short densely leafy stems and orange flower rays with black eyespots at base -11971600 20 n 02 Gerbera 0 genus_Gerbera 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11971783 n 0000 %m 11971927 n 0000 | genus of South African or Asiatic herbs: African daisies -11971783 20 n 01 African_daisy 3 003 @ 11669921 n 0000 #m 11971600 n 0000 ~ 11971927 n 0000 | African or Asiatic herbs with daisylike flowers -11971927 20 n 03 Barberton_daisy 0 Transvaal_daisy 0 Gerbera_jamesonii 0 002 @ 11971783 n 0000 #m 11971600 n 0000 | widely cultivated South African perennial having flower heads with orange to flame-colored rays -11972141 20 n 02 Gerea 0 genus_Gerea 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11972291 n 0000 | small genus of hairy herbs with yellow flowers -11972291 20 n 02 desert_sunflower 0 Gerea_canescens 0 002 @ 11672400 n 0000 #m 11972141 n 0000 | slender hairy plant with few leaves and golden-yellow flower heads; sandy desert areas of southeastern California to southwestern Utah and western Arizona and northwestern Mexico -11972569 20 n 02 Gnaphalium 0 genus_Gnaphalium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11972759 n 0000 | large widely distributed genus of coarse hairy herbs with whitish involucres -11972759 20 n 01 cudweed 1 003 @ 11915899 n 0000 #m 11972569 n 0000 ~ 11972959 n 0000 | any of numerous plants of the genus Gnaphalium having flowers that can be dried without loss of form or color -11972959 20 n 03 chafeweed 0 wood_cudweed 0 Gnaphalium_sylvaticum 0 001 @ 11972759 n 0000 | weedy perennial of north temperate regions having woolly foliage and dirty white flowers in a leafy spike -11973159 20 n 02 Grindelia 0 genus_Grindelia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11973341 n 0000 | large genus of coarse gummy herbs of western North and Central America -11973341 20 n 04 gumweed 0 gum_plant 0 tarweed 2 rosinweed 2 004 @ 12205694 n 0000 #m 11973159 n 0000 ~ 11973634 n 0000 ~ 11973749 n 0000 | any of various western American plants of the genus Grindelia having resinous leaves and stems formerly used medicinally; often poisonous to livestock -11973634 20 n 01 Grindelia_robusta 0 001 @ 11973341 n 0000 | perennial gumweed of California and Baja California -11973749 20 n 02 curlycup_gumweed 0 Grindelia_squarrosa 0 001 @ 11973341 n 0000 | perennial gumweed of western and central North America -11973888 20 n 02 Gutierrezia 0 genus_Gutierrezia 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11974126 n 0000 %m 11974557 n 0000 %m 11974888 n 0000 | sticky perennial herbs and subshrubs of western North America and warm South America -11974126 20 n 02 matchweed 0 matchbush 0 005 @ 13118707 n 0000 #m 11973888 n 0000 ~ 11974373 n 0000 ~ 11974557 n 0000 ~ 11974888 n 0000 | any of several plants of the genus Gutierrezia having tiny flower heads that resemble the heads of matches -11974373 20 n 02 little-head_snakeweed 0 Gutierrezia_microcephala 0 001 @ 11974126 n 0000 | similar to Gutierrezia sarothrae but with flower heads having fewer rays and disk flowers -11974557 20 n 07 rabbitweed 0 rabbit-weed 0 snakeweed 0 broom_snakeweed 0 broom_snakeroot 0 turpentine_weed 0 Gutierrezia_sarothrae 0 002 @ 11974126 n 0000 #m 11973888 n 0000 | low-growing sticky subshrub of southwestern United States having narrow linear leaves on many slender branches and hundreds of tiny yellow flower heads -11974888 20 n 03 broomweed 0 broom-weed 0 Gutierrezia_texana 0 002 @ 11974126 n 0000 #m 11973888 n 0000 | annual of southwestern United States having rigid woody branches with sticky foliage and yellow flowers -11975100 20 n 02 Gynura 0 genus_Gynura 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11975254 n 0000 | genus of Old World tropical herbs: velvet plants -11975254 20 n 04 velvet_plant 1 purple_velvet_plant 0 royal_velvet_plant 0 Gynura_aurantiaca 0 002 @ 13083023 n 0000 #m 11975100 n 0000 | Javanese foliage plant grown for their handsome velvety leaves with violet-purple hairs -11975482 20 n 02 Haastia 0 genus_Haastia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11975658 n 0000 | genus of New Zealand mat-forming herbs or subshrubs: vegetable sheep -11975658 20 n 03 vegetable_sheep 2 sheep_plant 2 Haastia_pulvinaris 0 002 @ 12205694 n 0000 #m 11975482 n 0000 | cushion-forming New Zealand herb having leaves densely covered with tawny hairs -11975853 20 n 02 Haplopappus 0 genus_Haplopappus 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11976170 n 0000 %m 11976314 n 0000 %m 11976511 n 0000 | genus of North and South American perennial herbs or shrubs with yellow flowers; in some classifications include species placed in other genera especially Hazardia -11976170 20 n 01 goldenbush 1 004 @ 11672400 n 0000 #m 11975853 n 0000 ~ 11976314 n 0000 ~ 11976511 n 0000 | a plant of the genus Haplopappus -11976314 20 n 02 camphor_daisy 0 Haplopappus_phyllocephalus 0 002 @ 11976170 n 0000 #m 11975853 n 0000 | annual of southern United States and Mexico having bristly leaves and pale yellow flowers -11976511 20 n 02 yellow_spiny_daisy 0 Haplopappus_spinulosus 0 002 @ 11976170 n 0000 #m 11975853 n 0000 | slender perennial of western North America having weakly bristly leaves and yellow flower heads -11976715 20 n 02 Hazardia 0 genus_Hazardia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11976933 n 0000 | small genus of shrubs and subshrubs of western United States having flowers that change color as they mature -11976933 20 n 02 hoary_golden_bush 0 Hazardia_cana 0 002 @ 13112664 n 0000 #m 11976715 n 0000 | western American shrubs having white felted foliage and yellow flowers that become red-purple -11977125 20 n 02 Helenium 0 genus_Helenium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11977303 n 0000 | genus of American herbs with flowers having yellow rays: sneezeweeds -11977303 20 n 01 sneezeweed 0 005 @ 12205694 n 0000 #m 11977125 n 0000 ~ 11977512 n 0000 ~ 11977660 n 0000 ~ 11977887 n 0000 | any of various plants of the genus Helenium characteristically causing sneezing -11977512 20 n 02 autumn_sneezeweed 0 Helenium_autumnale 0 001 @ 11977303 n 0000 | North American perennial with bright yellow late summer flowers -11977660 20 n 03 orange_sneezeweed 0 owlclaws 0 Helenium_hoopesii 0 001 @ 11977303 n 0000 | stout perennial herb of western United States having flower heads with drooping orange-yellow rays; causes spewing sickness in sheep -11977887 20 n 02 rosilla 0 Helenium_puberulum 0 001 @ 11977303 n 0000 | a sneezeweed of southwestern United States especially southern California -11978035 20 n 01 genus_Helianthus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11978233 n 0000 | genus of tall erect or branched American annual or perennial herbs with showy flowers: sunflowers -11978233 20 n 02 sunflower 0 helianthus 0 009 @ 11669921 n 0000 #m 11978035 n 0000 ~ 11978551 n 0000 ~ 11978713 n 0000 ~ 11978961 n 0000 ~ 11979187 n 0000 ~ 11979354 n 0000 ~ 11979527 n 0000 ~ 11979715 n 0000 | any plant of the genus Helianthus having large flower heads with dark disk florets and showy yellow rays -11978551 20 n 02 swamp_sunflower 0 Helianthus_angustifolius 0 001 @ 11978233 n 0000 | sunflower of eastern North America having narrow leaves and found in bogs -11978713 20 n 03 common_sunflower 0 mirasol 0 Helianthus_annuus 0 002 @ 11978233 n 0000 %p 07775197 n 0000 | annual sunflower grown for silage and for its seeds which are a source of oil; common throughout United States and much of North America -11978961 20 n 04 giant_sunflower 0 tall_sunflower 0 Indian_potato 1 Helianthus_giganteus 0 001 @ 11978233 n 0000 | very tall American perennial of central and the eastern United States to Canada having edible tuberous roots -11979187 20 n 02 showy_sunflower 0 Helianthus_laetiflorus 0 001 @ 11978233 n 0000 | tall rough-leaved perennial with a few large flower heads; central United States -11979354 20 n 02 Maximilian's_sunflower 0 Helianthus_maximilianii 0 001 @ 11978233 n 0000 | tall perennial of central United States to Canada having golden-yellow flowers -11979527 20 n 02 prairie_sunflower 0 Helianthus_petiolaris 0 001 @ 11978233 n 0000 | similar to the common sunflower with slender usually branching stems common in central United States -11979715 20 n 04 Jerusalem_artichoke 0 girasol 0 Jerusalem_artichoke_sunflower 0 Helianthus_tuberosus 0 002 @ 11978233 n 0000 %p 11979964 n 0000 | tall perennial with hairy stems and leaves; widely cultivated for its large irregular edible tubers -11979964 20 n 01 Jerusalem_artichoke 2 002 @ 13128365 n 0000 #p 11979715 n 0000 | edible tuber of the Jerusalem artichoke -11980088 20 n 02 Helichrysum 0 genus_Helichrysum 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | large genus of mostly African and Australian herbs and shrubs: everlasting flowers; in some classifications includes genus Ozothamnus -11980318 20 n 04 strawflower 1 golden_everlasting 0 yellow_paper_daisy 0 Helichrysum_bracteatum 0 001 @ 11915899 n 0000 | Australian plant naturalized in Spain having flowers of lemon yellow to deep gold; the frequent choice of those who love dried flowers -11980577 20 n 01 genus_Heliopsis 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11980682 n 0000 | oxeye -11980682 20 n 02 heliopsis 0 oxeye 2 002 @ 11672400 n 0000 #m 11980577 n 0000 | any North American shrubby perennial herb of the genus Heliopsis having large yellow daisylike flowers -11980867 20 n 02 Helipterum 0 genus_Helipterum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11981192 n 0000 | genus of South African and Australian herbs or shrubs grown as everlastings; the various Helipterum species are currently in process of being assigned to other genera especially genera Pteropogon and Hyalosperma -11981192 20 n 01 strawflower 2 002 @ 11915899 n 0000 #m 11980867 n 0000 | any of various plants of the genus Helipterum -11981314 20 n 02 Heterotheca 0 genus_Heterotheca 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11981475 n 0000 | genus of yellow-flowered North American herbs -11981475 20 n 04 hairy_golden_aster 0 prairie_golden_aster 0 Heterotheca_villosa 0 Chrysopsis_villosa 0 002 @ 11672400 n 0000 #m 11981314 n 0000 | hairy perennial with yellow flower heads in branched clusters; found almost everywhere in dry places from Canada to west central and western United States; sometimes placed in genus Chrysopsis -11981817 20 n 02 Hieracium 0 genus_Hieracium 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11982115 n 0000 %m 11982342 n 0000 | large genus of perennial hairy herbs of Europe to western Asia to northwestern Africa and North America; few are ornamental; often considered congeneric with Pilosella -11982115 20 n 01 hawkweed 0 004 @ 12205694 n 0000 #m 11981817 n 0000 ~ 11982545 n 0000 ~ 12004120 n 0000 | any of numerous often hairy plants of the genus Hieracium having yellow or orange flowers that resemble the dandelion -11982342 20 n 03 king_devil 0 yellow_hawkweed 0 Hieracium_praealtum 0 002 @ 13085113 n 0000 #m 11981817 n 0000 | European hawkweed introduced into northeastern United States; locally troublesome weeds -11982545 20 n 02 rattlesnake_weed 0 Hieracium_venosum 0 001 @ 11982115 n 0000 | a hawkweed with a rosette of purple-veined basal leaves; Canada to northern Georgia and Kentucky -11982724 20 n 02 Homogyne 0 genus_Homogyne 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11982939 n 0000 | small genus of low perennial herbs of montane Europe; in some classifications included in genus Tussilago -11982939 20 n 03 alpine_coltsfoot 0 Homogyne_alpina 0 Tussilago_alpina 0 002 @ 12205694 n 0000 #m 11982724 n 0000 | rhizomatous herb with purple-red flowers suitable for groundcover; sometimes placed in genus Tussilago -11983160 20 n 02 Hulsea 0 genus_Hulsea 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11983375 n 0000 %m 11983606 n 0000 | small genus of erect balsam-scented herbs; Pacific coast of the northwestern United States -11983375 20 n 03 alpine_gold 0 alpine_hulsea 0 Hulsea_algida 0 002 @ 11672400 n 0000 #m 11983160 n 0000 | low tufted plant having hairy stems each topped by a flower head with short narrow yellow rays; northwestern United States -11983606 20 n 02 dwarf_hulsea 0 Hulsea_nana 0 002 @ 11672400 n 0000 #m 11983160 n 0000 | similar to but smaller than alpine hulsea -11983739 20 n 02 Hyalosperma 0 genus_Hyalosperma 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | genus of herbs of temperate Australia including some from genus Helipterum -11983910 20 n 04 Hypochaeris 0 genus_Hypochaeris 0 Hypochoeris 0 genus_Hypochoeris 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11984144 n 0000 | widely distributed genus of herbs with milky juice; includes some cosmopolitan weeds -11984144 20 n 05 cat's-ear 1 California_dandelion 0 capeweed 0 gosmore 0 Hypochaeris_radicata 0 002 @ 13085113 n 0000 #m 11983910 n 0000 | European weed widely naturalized in North America having yellow flower heads and leaves resembling a cat's ears -11984397 20 n 01 genus_Inula 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11984542 n 0000 | genus of Old World herbs or subshrubs: elecampane -11984542 20 n 01 inula 0 003 @ 12205694 n 0000 #m 11984397 n 0000 ~ 11984659 n 0000 | any plant of the genus Inula -11984659 20 n 02 elecampane 0 Inula_helenium 0 001 @ 11984542 n 0000 | tall coarse Eurasian herb having daisylike yellow flowers with narrow petals whose rhizomatous roots are used medicinally -11984854 20 n 01 genus_Iva 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11985053 n 0000 | small genus of American herbs or shrubs; in some classifications placed in a separate family Ambrosiaceae -11985053 20 n 02 marsh_elder 0 iva 0 003 @ 13122364 n 0000 #m 11984854 n 0000 ~ 11985321 n 0000 | any of various coarse shrubby plants of the genus Iva with small greenish flowers; common in moist areas (as coastal salt marshes) of eastern and central North America -11985321 20 n 03 burweed_marsh_elder 0 false_ragweed 0 Iva_xanthifolia 0 001 @ 11985053 n 0000 | tall annual marsh elder common in moist rich soil in central North America that can cause contact dermatitis; produces much pollen that is a major cause of hay fever -11985586 20 n 01 genus_Krigia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11985739 n 0000 | small herbs closely related to chicory: dwarf dandelions -11985739 20 n 01 krigia 0 003 @ 12205694 n 0000 #m 11985586 n 0000 ~ 11985903 n 0000 | any small branched yellow-flowered North American herb of the genus Krigia -11985903 20 n 03 dwarf_dandelion 0 Krigia_dandelion 0 Krigia_bulbosa 0 001 @ 11985739 n 0000 | small yellow-flowered herb resembling dandelions of central and southeastern United States -11986091 20 n 02 Lactuca 0 genus_Lactuca 0 006 @ 11579418 n 0000 #m 11911591 n 0000 %m 11986306 n 0000 %m 11986511 n 0000 %m 11986729 n 0000 %m 11986900 n 0000 | an herb with milky juice: lettuce; prickly lettuce -11986306 20 n 01 lettuce 0 007 @ 12205694 n 0000 #m 11986091 n 0000 ~ 11986511 n 0000 ~ 11986729 n 0000 ~ 11986900 n 0000 ~ 11987126 n 0000 ~ 11987349 n 0000 | any of various plants of the genus Lactuca -11986511 20 n 03 garden_lettuce 0 common_lettuce 0 Lactuca_sativa 0 003 @ 11986306 n 0000 #m 11986091 n 0000 %p 07723559 n 0000 | annual or perennial garden plant having succulent leaves used in salads; widely grown -11986729 20 n 03 cos_lettuce 0 romaine_lettuce 0 Lactuca_sativa_longifolia 0 002 @ 11986306 n 0000 #m 11986091 n 0000 | lettuce with long dark-green spoon-shaped leaves -11986900 20 n 02 head_lettuce 0 Lactuca_sativa_capitata 0 004 @ 11986306 n 0000 #m 11986091 n 0000 %p 07723753 n 0000 %p 07724269 n 0000 | distinguished by leaves arranged in a dense rosette that develop into a compact ball -11987126 20 n 02 leaf_lettuce 0 Lactuca_sativa_crispa 0 002 @ 11986306 n 0000 %p 07724654 n 0000 | distinguished by leaves having curled or incised leaves forming a loose rosette that does not develop into a compact head -11987349 20 n 03 celtuce 0 stem_lettuce 0 Lactuca_sativa_asparagina 0 002 @ 11986306 n 0000 %p 07724819 n 0000 | lettuce valued especially for its edible stems -11987511 20 n 04 prickly_lettuce 0 horse_thistle 0 Lactuca_serriola 0 Lactuca_scariola 0 001 @ 11915658 n 0000 | European annual wild lettuce having prickly stems; a troublesome weed in parts of United States -11987722 20 n 02 Lagenophera 0 genus_Lagenophera 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | small genus of herbs of Australia and South America having small solitary white or purple flowers similar to true daisies of genus Bellis -11987956 20 n 02 Lasthenia 0 genus_Lasthenia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11988132 n 0000 | small genus of herbs of Pacific coast of North and South America -11988132 20 n 02 goldfields 0 Lasthenia_chrysostoma 0 002 @ 11672400 n 0000 #m 11987956 n 0000 | small slender woolly annual with very narrow opposite leaves and branches bearing solitary golden-yellow flower heads; southwestern Oregon to Baja California and Arizona; often cultivated -11988419 20 n 02 Layia 0 genus_Layia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11988596 n 0000 | genus of western United States annuals with showy yellow or white flowers -11988596 20 n 03 tidytips 0 tidy_tips 0 Layia_platyglossa 0 002 @ 11669921 n 0000 #m 11988419 n 0000 | California annual having flower heads with yellow rays tipped with white -11988774 20 n 02 Leontodon 0 genus_Leontodon 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11988893 n 0000 | hawkbit -11988893 20 n 01 hawkbit 0 003 @ 11672400 n 0000 #m 11988774 n 0000 ~ 11989087 n 0000 | any of various common wildflowers of the genus Leontodon; of temperate Eurasia to Mediterranean regions -11989087 20 n 03 fall_dandelion 0 arnica_bud 0 Leontodon_autumnalis 0 001 @ 11988893 n 0000 | fall-blooming European herb with a yellow flower; naturalized in the United States -11989266 20 n 02 Leontopodium 0 genus_Leontopodium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11989393 n 0000 | edelweiss -11989393 20 n 02 edelweiss 0 Leontopodium_alpinum 0 002 @ 11672400 n 0000 #m 11989266 n 0000 | alpine perennial plant native to Europe having leaves covered with whitish down and small flower heads held in stars of glistening whitish bracts -11989636 20 n 02 Leucanthemum 0 genus_Leucanthemum 0 006 @ 11579418 n 0000 #m 11911591 n 0000 %m 11989869 n 0000 %m 11990167 n 0000 %m 11990313 n 0000 %m 11990627 n 0000 | comprises plants often included in the genus Chrysanthemum -11989869 20 n 07 oxeye_daisy 1 ox-eyed_daisy 0 marguerite 1 moon_daisy 0 white_daisy 0 Leucanthemum_vulgare 0 Chrysanthemum_leucanthemum 0 002 @ 11669921 n 0000 #m 11989636 n 0000 | tall leafy-stemmed Eurasian perennial with white flowers; widely naturalized; often placed in genus Chrysanthemum -11990167 20 n 03 oxeye_daisy 2 Leucanthemum_maximum 0 Chrysanthemum_maximum 0 002 @ 11915214 n 0000 #m 11989636 n 0000 | similar to oxeye daisy -11990313 20 n 03 shasta_daisy 0 Leucanthemum_superbum 0 Chrysanthemum_maximum_maximum 0 002 @ 11915214 n 0000 #m 11989636 n 0000 | hybrid garden flower derived from Chrysanthemum maximum and Chrysanthemum lacustre having large white flower heads resembling oxeye daisies; often placed in the genus Chrysanthemum -11990627 20 n 03 Pyrenees_daisy 0 Leucanthemum_lacustre 0 Chrysanthemum_lacustre 0 002 @ 11915214 n 0000 #m 11989636 n 0000 | perennial of Portugal similar to the oxeye daisy -11990804 20 n 02 Leucogenes 0 genus_Leucogenes 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | New Zealand edelweiss -11990920 20 n 02 north_island_edelweiss 0 Leucogenes_leontopodium 0 001 @ 11672400 n 0000 | perennial herb closely resembling European edelweiss; New Zealand -11991080 20 n 02 Liatris 0 genus_Liatris 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11991263 n 0000 | genus of perennial North American herbs with aromatic usually cormous roots -11991263 20 n 05 blazing_star 1 button_snakeroot 3 gayfeather 0 gay-feather 0 snakeroot 2 004 @ 11672400 n 0000 #m 11991080 n 0000 ~ 11991549 n 0000 ~ 11991777 n 0000 | any of various North American plants of the genus Liatris having racemes or panicles of small discoid flower heads -11991549 20 n 02 dotted_gayfeather 0 Liatris_punctata 0 001 @ 11991263 n 0000 | herb with many stems bearing narrow slender wands of crowded rose-lavender flowers; central United States and Canada to Texas and northern Mexico -11991777 20 n 02 dense_blazing_star 0 Liatris_pycnostachya 0 001 @ 11991263 n 0000 | perennial of southeastern and central United States having very dense spikes of purple flowers; often cultivated for cut flowers -11991993 20 n 02 Ligularia 0 genus_Ligularia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11992166 n 0000 | genus of Old World herbs resembling groundsel: leopard plants -11992166 20 n 01 leopard_plant 0 002 @ 12205694 n 0000 #m 11991993 n 0000 | any of various plants of temperate Eurasia; grown for their yellow flowers and handsome foliage -11992340 20 n 02 Lindheimera 0 genus_Lindheimera 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11992479 n 0000 | one species: Texas star -11992479 20 n 02 Texas_star 1 Lindheimera_texana 0 002 @ 11669921 n 0000 #m 11992340 n 0000 | Texas annual with coarsely pinnatifid leaves; cultivated for its showy radiate yellow flower heads -11992674 20 n 02 Lonas 0 genus_Lonas 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11992806 n 0000 | one species: yellow ageratum -11992806 20 n 04 African_daisy 2 yellow_ageratum 0 Lonas_inodora 0 Lonas_annua 0 002 @ 11669921 n 0000 #m 11992674 n 0000 | shrub of southwestern Mediterranean region having yellow daisylike flowers -11993007 20 n 02 Machaeranthera 0 genus_Machaeranthera 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11993203 n 0000 %m 11993444 n 0000 %m 11993675 n 0000 | wildflowers of western North America -11993203 20 n 03 tahoka_daisy 0 tansy_leaf_aster 0 Machaeranthera_tanacetifolia 0 002 @ 11672400 n 0000 #m 11993007 n 0000 | wild aster with fernlike leaves and flower heads with very narrow bright purple rays; Alberta to Texas and Mexico -11993444 20 n 02 sticky_aster 0 Machaeranthera_bigelovii 0 002 @ 11672400 n 0000 #m 11993007 n 0000 | wild aster having leafy stems and flower heads with narrow bright reddish-lavender or purple rays; western Colorado to Arizona -11993675 20 n 02 Mojave_aster 0 Machaeranthera_tortifoloia 0 002 @ 11672400 n 0000 #m 11993007 n 0000 | wild aster having greyish leafy stems and flower heads with narrow pale lavender or violet rays; of rocky desert slopes California to Arizona and Utah -11993932 20 n 02 Madia 0 genus_Madia 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11994150 n 0000 %m 11994336 n 0000 | genus of sticky herbs with yellow flowers open in morning or evening but closed in bright light -11994150 20 n 01 tarweed 1 003 @ 12205694 n 0000 #m 11993932 n 0000 ~ 11994527 n 0000 | any of various resinous glandular plants of the genus Madia; of western North and South America -11994336 20 n 03 common_madia 0 common_tarweed 0 Madia_elegans 0 002 @ 11672400 n 0000 #m 11993932 n 0000 | California annual having red-brown spots near the base of its yellow flower rays -11994527 20 n 04 melosa 0 Chile_tarweed 0 madia_oil_plant 0 Madia_sativa 0 002 @ 11994150 n 0000 %s 11994718 n 0000 | South American herb with sticky glandular foliage; source of madia oil -11994718 20 n 01 madia_oil 0 002 @ 07673397 n 0000 #s 11994527 n 0000 | used as a substitute for olive oil -11994827 20 n 02 Matricaria 0 genus_Matricaria 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 11995092 n 0000 %m 11995396 n 0000 | chiefly Old World strong-smelling weedy herbs; comprises plants sometimes included in other genera: e.g. Tanacetum; Tripleurospermum -11995092 20 n 05 sweet_false_chamomile 0 wild_chamomile 0 German_chamomile 0 Matricaria_recutita 0 Matricaria_chamomilla 0 002 @ 12205694 n 0000 #m 11994827 n 0000 | annual Eurasian herb similar in fragrance and medicinal uses to chamomile though taste is more bitter and effect is considered inferior -11995396 20 n 03 pineapple_weed 0 rayless_chamomile 0 Matricaria_matricarioides 0 003 @ 12205694 n 0000 #m 11994827 n 0000 ;r 09044862 n 0000 | annual aromatic weed of Pacific coastal areas (United States and northeastern Asia) having bristle-pointed leaves and rayless yellow flowers -11995683 20 n 02 Melampodium 0 genus_Melampodium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11995840 n 0000 | herbs and subshrubs of warm North America -11995840 20 n 02 blackfoot_daisy 0 Melampodium_leucanthum 0 002 @ 11672400 n 0000 #m 11995683 n 0000 | bushy subshrub having flower heads that resemble asters with broad white rays; found in desert areas of Arizona east to Kansas and south to Mexico -11996092 20 n 02 Mikania 0 genus_Mikania 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11996251 n 0000 | large genus of evergreen lianas of tropical America -11996251 20 n 05 climbing_hempweed 0 climbing_boneset 0 wild_climbing_hempweed 0 climbing_hemp-vine 0 Mikania_scandens 0 002 @ 13100677 n 0000 #m 11996092 n 0000 | herb of tropical America having vanilla-scented flowers; climbs up trees -11996490 20 n 01 genus_Mutisia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11996677 n 0000 | genus of South American shrubs or lianas having large flower heads with feathery pappuses -11996677 20 n 01 mutisia 0 002 @ 13112664 n 0000 #m 11996490 n 0000 | any of various plants of the genus Mutisia -11996792 20 n 02 Nabalus 0 genus_Nabalus 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 11997032 n 0000 %m 11997160 n 0000 %m 11997409 n 0000 | genus of North American and east Asian perennial herbs; sometimes included in genus Prenanthes -11997032 20 n 01 rattlesnake_root 2 003 @ 12205694 n 0000 #m 11996792 n 0000 ~ 11997160 n 0000 | a plant of the genus Nabalus -11997160 20 n 04 white_lettuce 0 cankerweed 0 Nabalus_alba 0 Prenanthes_alba 0 002 @ 11997032 n 0000 #m 11996792 n 0000 | herb of northeastern North America having drooping clusters of yellowish-white flowers; sometimes placed in genus Prenanthes -11997409 20 n 04 lion's_foot 0 gall_of_the_earth 0 Nabalus_serpentarius 0 Prenanthes_serpentaria 0 002 @ 12205694 n 0000 #m 11996792 n 0000 | common perennial herb widely distributed in the southern and eastern United States having drooping clusters of pinkish flowers and thick basal leaves suggesting a lion's foot in shape; sometimes placed in genus Prenanthes -11997775 20 n 02 Olearia 0 genus_Olearia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11997969 n 0000 | large genus of Australian evergreen shrubs or small trees with large daisylike flowers -11997969 20 n 03 daisybush 0 daisy-bush 0 daisy_bush 0 004 @ 13112664 n 0000 #m 11997775 n 0000 ~ 11998317 n 0000 ~ 11998492 n 0000 | any of various mostly Australian attractively shaped shrubs of the genus Olearia grown for their handsome and sometimes fragrant evergreen foliage and profusion of daisy flowers with white or purple or blue rays -11998317 20 n 02 muskwood 0 Olearia_argophylla 0 001 @ 11997969 n 0000 | musk-scented shrub or tree of southern and southeastern Australia having creamy-yellow flower heads -11998492 20 n 02 New_Zealand_daisybush 0 Olearia_haastii 0 001 @ 11997969 n 0000 | bushy New Zealand shrub cultivated for its fragrant white flower heads -11998648 20 n 04 Onopordum 0 genus_Onopordum 0 Onopordon 0 genus_Onopordon 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11998888 n 0000 | a genus of Eurasian herbs of the family Compositae with prickly foliage and large purplish flowers -11998888 20 n 05 cotton_thistle 0 woolly_thistle 2 Scotch_thistle 0 Onopordum_acanthium 0 Onopordon_acanthium 0 002 @ 11944196 n 0000 #m 11998648 n 0000 | biennial Eurasian white hairy thistle having pale purple flowers; naturalized in North America -11999140 20 n 01 genus_Othonna 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11999278 n 0000 | genus of western African herbs or shrubs -11999278 20 n 01 othonna 0 002 @ 13112664 n 0000 #m 11999140 n 0000 | a South African plant of the genus Othonna having smooth often fleshy leaves and heads of yellow flowers -11999455 20 n 02 Ozothamnus 0 genus_Ozothamnus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 11999656 n 0000 | genus of Australian shrubs and perennial herbs; sometimes included in genus Helichrysum -11999656 20 n 03 cascade_everlasting 0 Ozothamnus_secundiflorus 0 Helichrysum_secundiflorum 0 002 @ 11915899 n 0000 #m 11999455 n 0000 | shrub with white woolly branches and woolly leaves having fragrant flowers forming long sprays; flowers suitable for drying; sometimes placed in genus Helichrysum -11999958 20 n 02 Packera 0 genus_Packera 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12000191 n 0000 | genus of American of east Asian perennial herbs with yellow to orange or red flower rays; sometimes included in genus Senecio -12000191 20 n 01 butterweed 0 002 @ 12205694 n 0000 #m 11999958 n 0000 | any of several yellow-flowered plants of the genus Packera; often placed in genus Senecio -12000356 20 n 04 golden_groundsel 0 golden_ragwort 0 Packera_aurea 0 Senecio_aureus 0 001 @ 12205694 n 0000 | weedy herb of the eastern United States to Texas having golden-yellow flowers; sometimes becomes invasive; sometimes placed in genus Senecio -12000609 20 n 02 Parthenium 0 genus_Parthenium 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 12000851 n 0000 %m 12001077 n 0000 %m 12001294 n 0000 | small genus of North American herbs and shrubs with terminal panicles of small ray flowers -12000851 20 n 02 guayule 0 Parthenium_argentatum 0 002 @ 13118707 n 0000 #m 12000609 n 0000 | much-branched subshrub with silvery leaves and small white flowers of Texas and northern Mexico; cultivated as a source of rubber -12001077 20 n 02 bastard_feverfew 0 Parthenium_hysterophorus 0 002 @ 13085113 n 0000 #m 12000609 n 0000 | tropical American annual weed with small radiate heads of white flowers; adventive in southern United States -12001294 20 n 04 American_feverfew 0 wild_quinine 0 prairie_dock 0 Parthenium_integrifolium 0 002 @ 13118707 n 0000 #m 12000609 n 0000 | stout perennial herb of the eastern United States with whitish flowers; leaves traditionally used by Catawba Indians to treat burns -12001565 20 n 02 Pericallis 0 genus_Pericallis 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12001707 n 0000 %m 12001924 n 0000 | cineraria -12001707 20 n 03 cineraria 0 Pericallis_cruenta 0 Senecio_cruentus 0 002 @ 11669921 n 0000 #m 12001565 n 0000 | herb of Canary Islands widely cultivated for its blue or purple or red or variegated daisylike flowers -12001924 20 n 02 florest's_cineraria 0 Pericallis_hybrida 0 002 @ 11669921 n 0000 #m 12001565 n 0000 | herb derived from Pericallis cruenta and widely cultivated in a variety of profusely flowering forms with florets from white to pink to red or purple or violet or blue -12002197 20 n 02 Petasites 0 genus_Petasites 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 12002428 n 0000 %m 12002651 n 0000 %m 12002826 n 0000 | genus of rhizomatous herbs of north temperate regions: butterbur; sweet coltsfoot -12002428 20 n 04 butterbur 0 bog_rhubarb 0 Petasites_hybridus 0 Petasites_vulgaris 0 002 @ 12205694 n 0000 #m 12002197 n 0000 | small Eurasian herb having broad leaves and lilac-pink rayless flowers; found in moist areas -12002651 20 n 03 winter_heliotrope 0 sweet_coltsfoot 1 Petasites_fragrans 0 002 @ 12205694 n 0000 #m 12002197 n 0000 | European herb with vanilla-scented white-pink flowers -12002826 20 n 02 sweet_coltsfoot 2 Petasites_sagitattus 0 002 @ 12205694 n 0000 #m 12002197 n 0000 | American sweet-scented herb -12002957 20 n 02 Picris 0 genus_Picris 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12003167 n 0000 | genus of weedy Old World yellow-flowered herbs usually containing a bitter-tasting substance: bitterweed -12003167 20 n 05 oxtongue 0 bristly_oxtongue 0 bitterweed 2 bugloss 2 Picris_echioides 0 002 @ 13085113 n 0000 #m 12002957 n 0000 | widespread European weed with spiny tongue-shaped leaves and yellow flowers; naturalized in United States -12003407 20 n 02 Pilosella 0 genus_Pilosella 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12003696 n 0000 %m 12003814 n 0000 | genus of hairy perennial herbs with horizontal rhizomes and leafy or underground stolons; Eurasia and North Africa; often considered congeneric with Hieracium -12003696 20 n 01 hawkweed 2 002 @ 12205694 n 0000 #m 12003407 n 0000 | any of various plants of the genus Pilosella -12003814 20 n 03 orange_hawkweed 0 Pilosella_aurantiaca 0 Hieracium_aurantiacum 0 002 @ 13085113 n 0000 #m 12003407 n 0000 | European hawkweed having flower heads with bright orange-red rays; a troublesome weed especially as naturalized in northeastern North America; sometimes placed in genus Hieracium -12004120 20 n 03 mouse-ear_hawkweed 0 Pilosella_officinarum 0 Hieracium_pilocella 0 001 @ 11982115 n 0000 | European hawkweed having soft hairy leaves; sometimes placed in genus Hieracium -12004310 20 n 02 Piqueria 0 genus_Piqueria 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12004547 n 0000 | small genus of tropical American perennial herbs or subshrubs with white to pale yellow flowers; often included in genus Stevia -12004547 20 n 01 stevia 2 002 @ 12205694 n 0000 #m 12004310 n 0000 | any plant of the genus Piqueria or the closely related genus Stevia -12004686 20 n 02 Prenanthes 0 genus_Prenanthes 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12004987 n 0000 | genus of North American and Asiatic perennial herbs having pinnatisect leaves small heads of drooping yellowish to purple flowers; sometimes includes species often placed in genus Nabalus -12004987 20 n 02 rattlesnake_root 1 Prenanthes_purpurea 0 002 @ 12205694 n 0000 #m 12004686 n 0000 | herb of central and southern Europe having purple florets -12005148 20 n 01 genus_Pteropogon 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12005329 n 0000 | genus of Australian and South African herbs including some from genus Helipterum -12005329 20 n 02 pteropogon 0 Pteropogon_humboltianum 0 002 @ 12205694 n 0000 #m 12005148 n 0000 | southern Australian plant having feathery hairs surrounding the fruit -12005500 20 n 02 Pulicaria 0 genus_Pulicaria 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12005656 n 0000 | genus of temperate Old World herbs: fleabane -12005656 20 n 03 fleabane 1 feabane_mullet 0 Pulicaria_dysenterica 0 002 @ 12205694 n 0000 #m 12005500 n 0000 | hairy perennial Eurasian herb with yellow daisylike flowers reputed to destroy or drive away fleas -12005869 20 n 02 Pyrethrum 0 genus_Pyrethrum 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | used in former classifications for plants later placed in genus Chrysanthemum and now often included in genus Tanacetum -12006081 20 n 02 Raoulia 0 genus_Raoulia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12006306 n 0000 | genus of low-growing mat-forming New Zealand plants; in some classifications includes species placed in genus Haastia -12006306 20 n 04 sheep_plant 1 vegetable_sheep 1 Raoulia_lutescens 0 Raoulia_australis 0 002 @ 12205694 n 0000 #m 12006081 n 0000 | perennial prostrate mat-forming herb with hoary woolly foliage -12006503 20 n 02 Ratibida 0 genus_Ratibida 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 12006766 n 0000 %m 12007196 n 0000 %m 12007406 n 0000 | genus of perennial wildflowers of North American plains and prairies; often cultivated for their showy flower heads -12006766 20 n 01 coneflower 3 005 @ 11672400 n 0000 #m 12006503 n 0000 ~ 12006930 n 0000 ~ 12007196 n 0000 ~ 12007406 n 0000 | a wildflower of the genus Ratibida -12006930 20 n 02 Mexican_hat 0 Ratibida_columnaris 0 001 @ 12006766 n 0000 | coneflower with flower heads resembling a Mexican hat with a tall red-brown disk and drooping yellow or yellow and red-brown rays; grows in the great plains along base of Rocky Mountains -12007196 20 n 03 long-head_coneflower 0 prairie_coneflower 1 Ratibida_columnifera 0 002 @ 12006766 n 0000 #m 12006503 n 0000 | plant similar to the Mexican hat coneflower; from British Columbia to New Mexico -12007406 20 n 02 prairie_coneflower 2 Ratibida_tagetes 0 002 @ 12006766 n 0000 #m 12006503 n 0000 | coneflower of central to southwestern United States -12007560 20 n 01 genus_Rhodanthe 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12007766 n 0000 | genus of xerophytic herbs and shrubs of South Africa and Australia; sometimes included in genus Helipterum -12007766 20 n 04 Swan_River_everlasting 0 rhodanthe 0 Rhodanthe_manglesii 0 Helipterum_manglesii 0 002 @ 11915899 n 0000 #m 12007560 n 0000 | Australian annual everlasting having light pink nodding flower heads; sometimes placed in genus Helipterum -12008017 20 n 02 Rudbeckia 0 genus_Rudbeckia 0 006 @ 11579418 n 0000 #m 11911591 n 0000 %m 12008252 n 0000 %m 12008487 n 0000 %m 12008749 n 0000 %m 12009047 n 0000 | North American perennial herbs with showy cone-shaped flower heads -12008252 20 n 01 coneflower 2 004 @ 11669921 n 0000 #m 12008017 n 0000 ~ 12008487 n 0000 ~ 12008749 n 0000 | any of various plants of the genus Rudbeckia cultivated for their large usually yellow daisies with prominent central cones -12008487 20 n 03 black-eyed_Susan 1 Rudbeckia_hirta 0 Rudbeckia_serotina 0 002 @ 12008252 n 0000 #m 12008017 n 0000 | the state flower of Maryland; of central and southeastern United States; having daisylike flowers with dark centers and yellow to orange rays -12008749 20 n 02 cutleaved_coneflower 0 Rudbeckia_laciniata 0 003 @ 12008252 n 0000 #m 12008017 n 0000 ~ 12009047 n 0000 | tall leafy plant with erect branches ending in large yellow flower heads with downward-arching rays; grow in Rocky Mountains south to Arizona and east to the Atlantic coast -12009047 20 n 04 golden_glow 0 double_gold 0 hortensia 2 Rudbeckia_laciniata_hortensia 0 002 @ 12008749 n 0000 #m 12008017 n 0000 | very tall branching herb with showy much-doubled yellow flower heads -12009250 20 n 02 Santolina 0 genus_Santolina 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12009420 n 0000 | genus of Mediterranean subshrubs with rayless flower heads -12009420 20 n 02 lavender_cotton 0 Santolina_chamaecyparissus 0 002 @ 13112664 n 0000 #m 12009250 n 0000 | branching aromatic Mediterranean shrub with woolly stems and leaves and yellow flowers -12009616 20 n 02 Sanvitalia 0 genus_Sanvitalia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12009792 n 0000 | small genus of tropical American annual herbs: creeping zinnia -12009792 20 n 02 creeping_zinnia 0 Sanvitalia_procumbens 0 002 @ 12205694 n 0000 #m 12009616 n 0000 | low-branching leafy annual with flower heads resembling zinnias; found in southwestern United States and Mexico to Guatemala -12010021 20 n 02 Saussurea 0 genus_Saussurea 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12010188 n 0000 | genus of herbs of temperate and cool regions of Eurasia -12010188 20 n 03 costusroot 0 Saussurea_costus 0 Saussurea_lappa 0 002 @ 12205694 n 0000 #m 12010021 n 0000 | annual herb of the eastern Himalayas (Kashmir) having purple florets and a fragrant root that yields a volatile oil used in perfumery and for preserving furs -12010458 20 n 02 Scolymus 0 genus_Scolymus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12010628 n 0000 | small genus of thistlelike herbs of the Mediterranean region -12010628 20 n 01 golden_thistle 0 003 @ 11944196 n 0000 #m 12010458 n 0000 ~ 12010815 n 0000 | any of several spiny Mediterranean herbs of the genus Scolymus having yellow flower heads -12010815 20 n 02 Spanish_oyster_plant 0 Scolymus_hispanicus 0 001 @ 12010628 n 0000 | a golden thistle of southwestern Europe cultivated for its edible sweet roots and edible leaves and stalks; its yellow flowers are used as a substitute for saffron -12011067 20 n 02 Senecio 0 genus_Senecio 0 008 @ 11579418 n 0000 #m 11911591 n 0000 %m 12011370 n 0000 %m 12011620 n 0000 %m 12011838 n 0000 %m 12012111 n 0000 %m 12012253 n 0000 %m 12012755 n 0000 | enormous and diverse cosmopolitan genus of trees and shrubs and vines and herbs including many weeds -12011370 20 n 02 nodding_groundsel 0 Senecio_bigelovii 0 002 @ 11672400 n 0000 #m 12011067 n 0000 | plant with erect leafy stems bearing clusters of rayless yellow flower heads on bent individual stalks; moist regions of southwestern United States -12011620 20 n 03 dusty_miller 3 Senecio_cineraria 0 Cineraria_maritima 0 002 @ 13112664 n 0000 #m 12011067 n 0000 | stiff much-branched perennial of the Mediterranean region having very white woolly stems and leaves -12011838 20 n 02 threadleaf_groundsel 0 Senecio_doublasii 0 002 @ 13085113 n 0000 #m 12011067 n 0000 | bluish-green bushy leafy plant covered with close white wool and bearing branched clusters of yellow flower heads; southwestern United States; toxic to range livestock -12012111 20 n 03 butterweed 2 ragwort 2 Senecio_glabellus 0 002 @ 11672400 n 0000 #m 12011067 n 0000 | American ragwort with yellow flowers -12012253 20 n 05 ragwort 1 tansy_ragwort 0 ragweed 2 benweed 0 Senecio_jacobaea 0 002 @ 13085113 n 0000 #m 12011067 n 0000 | widespread European weed having yellow daisylike flowers; sometimes an obnoxious weed and toxic to cattle if consumed in quantity -12012510 20 n 02 arrowleaf_groundsel 0 Senecio_triangularis 0 001 @ 11672400 n 0000 | perennial with sharply toothed triangular leaves on leafy stems bearing a cluster of yellow flower heads; moist places in mountains of western North America -12012755 20 n 02 groundsel 0 Senecio_vulgaris 0 002 @ 13085113 n 0000 #m 12011067 n 0000 | Eurasian weed with heads of small yellow flowers -12012897 20 n 01 genus_Scorzonera 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12013035 n 0000 | genus of narrow-leaved European herbs -12013035 20 n 04 black_salsify 0 viper's_grass 0 scorzonera 0 Scorzonera_hispanica 0 003 @ 12205694 n 0000 #m 12012897 n 0000 %p 07735294 n 0000 | perennial south European herb having narrow entire leaves and solitary yellow flower heads and long black edible roots shaped like carrots -12013323 20 n 02 Sericocarpus 0 genus_Sericocarpus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12013511 n 0000 | small genus of herbs of the eastern United States: white-topped asters -12013511 20 n 01 white-topped_aster 0 003 @ 11669921 n 0000 #m 12013323 n 0000 ~ 12013701 n 0000 | herb having corymbose white-rayed flowers with scaly bracts and silky indehiscent fruits -12013701 20 n 01 narrow-leaved_white-topped_aster 0 001 @ 12013511 n 0000 | a variety of white-topped aster -12013811 20 n 02 Seriphidium 0 genus_Seriphidium 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 12014085 n 0000 %m 12014355 n 0000 %m 12014524 n 0000 | woody plants grown chiefly for their silver or grey and often aromatic foliage; formerly included in the genus Artemisia -12014085 20 n 06 silver_sage 0 silver_sagebrush 0 grey_sage 0 gray_sage 0 Seriphidium_canum 0 Artemisia_cana 0 002 @ 11929027 n 0000 #m 12013811 n 0000 | low much-branched perennial of western United States having silvery leaves; an important browse and shelter plant -12014355 20 n 03 sea_wormwood 0 Seriphidium_maritimum 0 Artemisia_maritima 0 002 @ 11928549 n 0000 #m 12013811 n 0000 | plants of western and northern European coasts -12014524 20 n 04 big_sagebrush 0 blue_sage 0 Seriphidium_tridentatum 0 Artemisia_tridentata 0 002 @ 11929027 n 0000 #m 12013811 n 0000 | aromatic shrub of arid regions of western North America having hoary leaves -12014739 20 n 02 Serratula 0 genus_Serratula 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12014923 n 0000 | genus of Old World perennial herbs with spirally arranged toothed leaves -12014923 20 n 02 sawwort 0 Serratula_tinctoria 0 002 @ 12205694 n 0000 #m 12014739 n 0000 | European perennial whose serrate leaves yield a yellow dye -12015076 20 n 02 Silphium 0 genus_Silphium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12015221 n 0000 | tall North American perennial herbs -12015221 20 n 02 rosinweed 1 Silphium_laciniatum 0 002 @ 11915658 n 0000 #m 12015076 n 0000 | North American perennial having a resinous odor and yellow flowers -12015384 20 n 02 Silybum 0 genus_Silybum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12015525 n 0000 | small genus of east African herbs -12015525 20 n 06 milk_thistle 2 lady's_thistle 0 Our_Lady's_mild_thistle 0 holy_thistle 0 blessed_thistle 2 Silybum_marianum 0 002 @ 12205694 n 0000 #m 12015384 n 0000 | tall Old World biennial thistle with large clasping white-blotched leaves and purple flower heads; naturalized in California and South America -12015840 20 n 02 Solidago 0 genus_Solidago 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12015959 n 0000 | goldenrod -12015959 20 n 01 goldenrod 0 018 @ 11672400 n 0000 #m 12015840 n 0000 ~ 12016434 n 0000 ~ 12016567 n 0000 ~ 12016777 n 0000 ~ 12016914 n 0000 ~ 12017127 n 0000 ~ 12017326 n 0000 ~ 12017511 n 0000 ~ 12017664 n 0000 ~ 12017853 n 0000 ~ 12018014 n 0000 ~ 12018100 n 0000 ~ 12018188 n 0000 ~ 12018271 n 0000 ~ 12018363 n 0000 ~ 12018447 n 0000 ~ 12018530 n 0000 | any of numerous chiefly summer-blooming and fall-blooming North American plants especially of the genus Solidago -12016434 20 n 02 silverrod 0 Solidago_bicolor 0 001 @ 12015959 n 0000 | plant of eastern North America having creamy white flowers -12016567 20 n 03 meadow_goldenrod 0 Canadian_goldenrod 0 Solidago_canadensis 0 001 @ 12015959 n 0000 | large North American goldenrod having showy clusters of yellow flowers on arching branches; often a weed -12016777 20 n 02 Missouri_goldenrod 0 Solidago_missouriensis 0 001 @ 12015959 n 0000 | similar to meadow goldenrod but usually smaller -12016914 20 n 02 alpine_goldenrod 0 Solidago_multiradiata 0 001 @ 12015959 n 0000 | goldenrod similar to narrow goldenrod but having bristly hairs on edges of leaf stalks; mountainous regions of western America -12017127 20 n 03 grey_goldenrod 0 gray_goldenrod 0 Solidago_nemoralis 0 001 @ 12015959 n 0000 | a dyer's weed of Canada and the eastern United States having yellow flowers sometimes used in dyeing -12017326 20 n 03 Blue_Mountain_tea 0 sweet_goldenrod 0 Solidago_odora 0 001 @ 12015959 n 0000 | goldenrod of eastern America having aromatic leaves from which a medicinal tea is made -12017511 20 n 02 dyer's_weed 0 Solidago_rugosa 0 001 @ 12015959 n 0000 | eastern North American herb whose yellow flowers are (or were) used in dyeing -12017664 20 n 03 seaside_goldenrod 0 beach_goldenrod 0 Solidago_sempervirens 0 001 @ 12015959 n 0000 | vigorous showy goldenrod common along eastern coast and Gulf Coast of North America -12017853 20 n 02 narrow_goldenrod 0 Solidago_spathulata 0 001 @ 12015959 n 0000 | western American goldenrod with long narrow clusters of small yellow flowers -12018014 20 n 01 Boott's_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018100 20 n 01 Elliott's_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018188 20 n 01 Ohio_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018271 20 n 01 rough-stemmed_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018363 20 n 01 showy_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018447 20 n 01 tall_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018530 20 n 02 zigzag_goldenrod 0 broad_leaved_goldenrod 0 001 @ 12015959 n 0000 | a variety of goldenrod -12018640 20 n 02 Sonchus 0 genus_Sonchus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12018760 n 0000 | sow thistles -12018760 20 n 02 sow_thistle 0 milk_thistle 1 003 @ 13112664 n 0000 #m 12018640 n 0000 ~ 12019035 n 0000 | any of several Old World coarse prickly-leaved shrubs and subshrubs having milky juice and yellow flowers; widely naturalized; often noxious weeds in cultivated soil -12019035 20 n 02 milkweed 2 Sonchus_oleraceus 0 001 @ 12018760 n 0000 | annual Eurasian sow thistle with soft spiny leaves and rayed yellow flower heads -12019190 20 n 02 Stenotus 0 genus_Stenotus 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12019375 n 0000 | genus of western North American low evergreen shrubs growing in dense tufts -12019375 20 n 03 stemless_golden_weed 0 Stenotus_acaulis 0 Haplopappus_acaulis 0 002 @ 11672400 n 0000 #m 12019190 n 0000 | dark green erect herb of northwestern United States and southwestern Canada having stiff leaves in dense tufts and yellow flower heads; sometimes placed in genus Haplopappus -12019675 20 n 01 genus_Stevia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12019827 n 0000 | genus of shrubs and herbs of tropical and warm Americas -12019827 20 n 01 stevia 1 002 @ 12205694 n 0000 #m 12019675 n 0000 | any plant of the genus Stevia or the closely related genus Piqueria having glutinous foliage and white or purplish flowers; Central and South America -12020048 20 n 02 Stokesia 0 genus_Stokesia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12020184 n 0000 | one species: stokes' aster -12020184 20 n 03 stokes'_aster 0 cornflower_aster 0 Stokesia_laevis 0 002 @ 11669921 n 0000 #m 12020048 n 0000 | erect perennial of southeastern United States having large heads of usually blue flowers -12020388 20 n 02 Tageteste 0 genus_Tagetes 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12020507 n 0000 | marigolds -12020507 20 n 01 marigold 0 004 @ 11669921 n 0000 #m 12020388 n 0000 ~ 12020736 n 0000 ~ 12020941 n 0000 | any of various tropical American plants of the genus Tagetes widely cultivated for their showy yellow or orange flowers -12020736 20 n 04 African_marigold 0 big_marigold 0 Aztec_marigold 0 Tagetes_erecta 0 001 @ 12020507 n 0000 | a stout branching annual with large yellow to orange flower heads; Mexico and Central America -12020941 20 n 02 French_marigold 0 Tagetes_patula 0 001 @ 12020507 n 0000 | strong-scented bushy annual with orange or yellow flower heads marked with red; Mexico and Guatemala -12021120 20 n 02 Tanacetum 0 genus_Tanacetum 0 010 @ 11579418 n 0000 #m 11911591 n 0000 %m 12021499 n 0000 %m 12021882 n 0000 %m 12022054 n 0000 %m 12022382 n 0000 %m 12022821 n 0000 %m 12023108 n 0000 %m 12023407 n 0000 %m 12023726 n 0000 | a large genus of plants resembling chrysanthemums; comprises some plants often included in other genera especially genus Chrysanthemum -12021499 20 n 07 costmary 0 alecost 0 bible_leaf 0 mint_geranium 0 balsam_herb 0 Tanacetum_balsamita 0 Chrysanthemum_balsamita 0 003 @ 12205694 n 0000 #m 12021120 n 0000 %p 07817599 n 0000 | tansy-scented Eurasian perennial herb with buttonlike yellow flowers; used as potherb or salad green and sometimes for potpourri or tea or flavoring; sometimes placed in genus Chrysanthemum -12021882 20 n 02 camphor_dune_tansy 0 Tanacetum_camphoratum 0 002 @ 12205694 n 0000 #m 12021120 n 0000 | densely hairy plant with rayless flowers; San Francisco Bay area -12022054 20 n 04 painted_daisy 0 pyrethrum 1 Tanacetum_coccineum 0 Chrysanthemum_coccineum 0 002 @ 11669921 n 0000 #m 12021120 n 0000 | spring-flowering garden perennial of Asiatic origin having finely divided aromatic leaves and white to pink-purple flowers; source of an insecticide; sometimes placed in genus Chrysanthemum -12022382 20 n 05 pyrethrum 2 Dalmatian_pyrethrum 0 Dalmatia_pyrethrum 0 Tanacetum_cinerariifolium 0 Chrysanthemum_cinerariifolium 0 002 @ 12205694 n 0000 #m 12021120 n 0000 | white-flowered pyrethrum of Balkan area whose pinnate leaves are white and silky-hairy below; source of an insecticide; sometimes placed in genus Chrysanthemum -12022719 20 n 01 pyrethrum 3 001 @ 14919948 n 0000 | made of dried flower heads of pyrethrum plants -12022821 20 n 02 northern_dune_tansy 0 Tanacetum_douglasii 0 002 @ 11672400 n 0000 #m 12021120 n 0000 | lightly hairy rhizomatous perennial having aromatic feathery leaves and stems bearing open clusters of small buttonlike yellow flowers; sand dunes of Pacific coast of North America -12023108 20 n 03 feverfew 0 Tanacetum_parthenium 0 Chrysanthemum_parthenium 0 002 @ 12205694 n 0000 #m 12021120 n 0000 | bushy aromatic European perennial herb having clusters of buttonlike white-rayed flower heads; valued traditionally for medicinal uses; sometimes placed in genus Chrysanthemum -12023407 20 n 05 dusty_miller 2 silver-lace 1 silver_lace 1 Tanacetum_ptarmiciflorum 0 Chrysanthemum_ptarmiciflorum 0 002 @ 11915214 n 0000 #m 12021120 n 0000 | shrubby perennial of the Canary Islands having white flowers and leaves and hairy stems covered with dustlike down; sometimes placed in genus Chrysanthemum -12023726 20 n 04 tansy 0 golden_buttons 0 scented_fern 2 Tanacetum_vulgare 0 002 @ 11915214 n 0000 #m 12021120 n 0000 | common perennial aromatic herb native to Eurasia having buttonlike yellow flower heads and bitter-tasting pinnate leaves sometimes used medicinally -12023996 20 n 02 Taraxacum 0 genus_Taraxacum 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12024176 n 0000 | an asterid dicot genus of the family Compositae including dandelions -12024176 20 n 02 dandelion 0 blowball 0 004 @ 12205694 n 0000 #m 12023996 n 0000 ~ 12024445 n 0000 ~ 12024805 n 0000 | any of several herbs of the genus Taraxacum having long tap roots and deeply notched leaves and bright yellow flowers followed by fluffy seed balls -12024445 20 n 03 common_dandelion 0 Taraxacum_ruderalia 0 Taraxacum_officinale 0 003 @ 12024176 n 0000 %p 07733217 n 0000 %p 12024690 n 0000 | Eurasian plant widely naturalized as a weed in North America; used as salad greens and to make wine -12024690 20 n 01 dandelion_green 0 002 @ 13152742 n 0000 #p 12024445 n 0000 | the foliage of the dandelion plant -12024805 20 n 04 Russian_dandelion 0 kok-saghyz 0 kok-sagyz 0 Taraxacum_kok-saghyz 0 001 @ 12024176 n 0000 | perennial dandelion native to Kazakhstan cultivated for its fleshy roots that have high rubber content -12025019 20 n 02 Tetraneuris 0 genus_Tetraneuris 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12025220 n 0000 %m 12025507 n 0000 | genus of hairy yellow-flowered plants of the western United States -12025220 20 n 03 stemless_hymenoxys 0 Tetraneuris_acaulis 0 Hymenoxys_acaulis 0 002 @ 11672400 n 0000 #m 12025019 n 0000 | perennial having tufted basal leaves and short leafless stalks each bearing a solitary yellow flower head; dry hillsides and plains of west central North America -12025507 20 n 04 old_man_of_the_mountain 0 alpine_sunflower 0 Tetraneuris_grandiflora 0 Hymenoxys_grandiflora 0 002 @ 11672400 n 0000 #m 12025019 n 0000 | whitish hairy plant with featherlike leaves and a few stout stems each bearing an especially handsome solitary large yellow flower head; mountainous regions north central United States -12025849 20 n 01 genus_Tithonia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12026018 n 0000 | genus of robust herbs of Mexico and Central America: Mexican sunflower -12026018 20 n 02 Mexican_sunflower 0 tithonia 0 002 @ 11669921 n 0000 #m 12025849 n 0000 | any plant of the genus Tithonia; tall coarse herbs or shrubs of Mexico to Panama having large flower heads resembling sunflowers with yellow disc florets and golden-yellow to orange-scarlet rays -12026306 20 n 02 Townsendia 0 genus_Townsendia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12026476 n 0000 | genus of western American low tufted herbs: Easter daisy -12026476 20 n 03 Easter_daisy 0 stemless_daisy 0 Townsendia_Exscapa 0 002 @ 11669921 n 0000 #m 12026306 n 0000 | dwarf tufted nearly stemless herb having a rosette of woolly leaves and large white-rayed flower heads and bristly achenes; central Canada and United States west to Arizona -12026764 20 n 02 Tragopogon 0 genus_Tragopogon 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12027222 n 0000 %m 12027658 n 0000 | genus of Old World herbs with linear entire leaves and yellow or purple flower heads -12026981 20 n 02 yellow_salsify 0 Tragopogon_dubius 0 001 @ 11672400 n 0000 | European perennial naturalized throughout United States having hollow stems with a few long narrow tapered leaves and each bearing a solitary pale yellow flower -12027222 20 n 04 salsify 0 oyster_plant 0 vegetable_oyster 0 Tragopogon_porrifolius 0 004 @ 12205694 n 0000 #m 12026764 n 0000 %p 07735179 n 0000 %p 12027538 n 0000 | Mediterranean biennial herb with long-stemmed heads of purple ray flowers and milky sap and long edible root; naturalized throughout United States -12027538 20 n 02 salsify 2 oyster_plant 2 002 @ 13125117 n 0000 #p 12027222 n 0000 | edible root of the salsify plant -12027658 20 n 04 meadow_salsify 0 goatsbeard 0 shepherd's_clock 0 Tragopogon_pratensis 0 002 @ 11672400 n 0000 #m 12026764 n 0000 | weedy European annual with yellow flowers; naturalized in United States -12027864 20 n 02 Trilisa 0 genus_Trilisa 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12028012 n 0000 | genus of herbs of southern United States -12028012 20 n 02 wild_vanilla 0 Trilisa_odoratissima 0 002 @ 12205694 n 0000 #m 12027864 n 0000 | perennial of southeastern United States with leaves having the fragrance of vanilla -12028196 20 n 02 Tripleurospermum 0 genus_Tripleurospermum 0 005 @ 11579418 n 0000 #m 11911591 n 0000 %m 12028424 n 0000 %m 12028818 n 0000 %m 12029039 n 0000 | small genus comprising plants often included in genus Matricaria -12028424 20 n 07 scentless_camomile 0 scentless_false_camomile 0 scentless_mayweed 0 scentless_hayweed 0 corn_mayweed 1 Tripleurospermum_inodorum 0 Matricaria_inodorum 0 002 @ 12205694 n 0000 #m 12028196 n 0000 | ubiquitous European annual weed with white flowers and finely divided leaves naturalized and sometimes cultivated in eastern North America; sometimes included in genus Matricaria -12028818 20 n 03 turfing_daisy 1 Tripleurospermum_oreades_tchihatchewii 0 Matricaria_oreades 0 002 @ 12205694 n 0000 #m 12028196 n 0000 | mat-forming perennial herb of Asia Minor; sometimes included in genus Matricaria -12029039 20 n 03 turfing_daisy 2 Tripleurospermum_tchihatchewii 0 Matricaria_tchihatchewii 0 002 @ 12205694 n 0000 #m 12028196 n 0000 | low densely tufted perennial herb of Turkey having small white flowers; used as a ground cover in dry places; sometimes included in genus Matricaria -12029326 20 n 02 Tussilago 0 genus_Tussilago 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12029635 n 0000 | genus of low creeping yellow-flowered perennial herbs of north temperate regions: coltsfoots; in some classifications includes species often placed in other genera especially Homogyne and Petasites -12029635 20 n 02 coltsfoot 0 Tussilago_farfara 0 002 @ 12205694 n 0000 #m 12029326 n 0000 | perennial herb with large rounded leaves resembling a colt's foot and yellow flowers appearing before the leaves do; native to Europe but now nearly cosmopolitan; used medicinally especially formerly -12029929 20 n 01 genus_Ursinia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12030092 n 0000 | genus of South African herbs and shrubs cultivated as ornamentals -12030092 20 n 01 ursinia 0 002 @ 11669921 n 0000 #m 12029929 n 0000 | any of various plants of the genus Ursinia grown for their yellow- or orange- or white-rayed flowers -12030265 20 n 02 Verbesina 0 genus_Verbesina 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12030654 n 0000 | herbs and shrubs of warm North America to Mexico; includes plants formerly placed in genus Actinomeris -12030479 20 n 02 Actinomeris 0 genus_Actinomeris 0 002 @ 11579418 n 0000 #m 11911591 n 0000 | used in some classification systems for plants now included in genus Verbesina -12030654 20 n 03 crownbeard 0 crown-beard 0 crown_beard 0 006 @ 11915214 n 0000 #m 12030265 n 0000 ~ 12030908 n 0000 ~ 12031139 n 0000 ~ 12031388 n 0000 ~ 12031547 n 0000 | any plant of the genus Verbesina having clustered white or yellow flower heads -12030908 20 n 06 wingstem 0 golden_ironweed 0 yellow_ironweed 0 golden_honey_plant 0 Verbesina_alternifolia 0 Actinomeris_alternifolia 0 001 @ 12030654 n 0000 | perennial herb with showy yellow flowers; the eastern United States -12031139 20 n 06 cowpen_daisy 0 golden_crownbeard 0 golden_crown_beard 0 butter_daisy 0 Verbesina_encelioides 0 Ximenesia_encelioides 0 001 @ 12030654 n 0000 | coarse greyish-green annual yellow-flowered herb; southwestern United States to Mexico -12031388 20 n 02 gravelweed 0 Verbesina_helianthoides 0 001 @ 12030654 n 0000 | perennial herb with yellow flowers; southern and south central United States -12031547 20 n 04 Virginia_crownbeard 0 frostweed 1 frost-weed 1 Verbesina_virginica 0 001 @ 12030654 n 0000 | tall perennial herb having clusters of white flowers; the eastern United States -12031739 20 n 01 genus_Vernonia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12031927 n 0000 | genus of New World tropical herbs or shrubs with terminal cymose heads of tubular flowers -12031927 20 n 02 ironweed 0 vernonia 0 002 @ 12205694 n 0000 #m 12031739 n 0000 | any of various plants of the genus Vernonia of tropical and warm regions of especially North America that take their name from their loose heads of purple to rose flowers that quickly take on a rusty hue -12032215 20 n 01 genus_Wyethia 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12032429 n 0000 %m 12032686 n 0000 | coarse leafy perennial plants resembling sunflowers found especially in the western United States -12032429 20 n 02 mule's_ears 0 Wyethia_amplexicaulis 0 002 @ 11672400 n 0000 #m 12032215 n 0000 | balsamic-resinous herb with clumps of lanceolate leaves and stout leafy stems ending in large deep yellow flowers on long stalks; northwestern United States -12032686 20 n 02 white-rayed_mule's_ears 0 Wyethia_helianthoides 0 002 @ 11672400 n 0000 #m 12032215 n 0000 | herb with basal leaves and leafy hairy stems bearing solitary flower heads with white or pale cream-colored rays; northwestern United States -12032939 20 n 02 Xanthium 0 genus_Xanthium 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12033139 n 0000 | coarse herbs having small heads of greenish flowers followed by burrs with hooked bristles -12033139 20 n 04 cocklebur 0 cockle-bur 0 cockleburr 0 cockle-burr 0 002 @ 13085113 n 0000 #m 12032939 n 0000 | any coarse weed of the genus Xanthium having spiny burrs -12033310 20 n 01 genus_Xeranthemum 0 004 @ 11579418 n 0000 #m 11911591 n 0000 %m 12033504 n 0000 %m 12033709 n 0000 | genus of annual densely hairy herbs of Mediterranean to southwestern Asia -12033504 20 n 01 xeranthemum 0 002 @ 11669921 n 0000 #m 12033310 n 0000 | any plant of the genus Xeranthemum native to southern Europe having chaffy or silvery flower heads with purplish tubular flowers -12033709 20 n 02 immortelle 0 Xeranthemum_annuum 0 002 @ 11915899 n 0000 #m 12033310 n 0000 | mostly widely cultivated species of everlasting flowers having usually purple flowers; southern Europe to Iran; naturalized elsewhere -12033939 20 n 01 genus_Zinnia 0 003 @ 11579418 n 0000 #m 11911591 n 0000 %m 12034141 n 0000 | genus of annual or perennial plants of tropical America having solitary heads of brightly colored flowers -12034141 20 n 03 zinnia 0 old_maid 2 old_maid_flower 0 004 @ 11669921 n 0000 #m 12033939 n 0000 ~ 12034384 n 0000 ~ 12034594 n 0000 | any of various plants of the genus Zinnia cultivated for their variously and brightly colored flower heads -12034384 20 n 02 white_zinnia 0 Zinnia_acerosa 0 001 @ 12034141 n 0000 | subshrub with slender woolly stems and long narrow leaves and flower heads with white rays; southern United States and northern Mexico -12034594 20 n 02 little_golden_zinnia 0 Zinnia_grandiflora 0 001 @ 12034141 n 0000 | subshrub having short leafy stems and numerous small flower heads with nearly round yellow-orange rays; Arizona south to Mexico and east to Kansas -12034828 20 n 03 Loasaceae 0 family_Loasaceae 0 loasa_family 0 004 @ 11565385 n 0000 #m 12359026 n 0000 %m 12035064 n 0000 %m 12035423 n 0000 | family of bristly hairy sometimes climbing plants; America and Africa and southern Arabia -12035064 20 n 01 genus_Loasa 0 003 @ 11575425 n 0000 #m 12034828 n 0000 %m 12035213 n 0000 | genus of tropical American prickly herbs or subshrubs -12035213 20 n 01 loasa 0 002 @ 12205694 n 0000 #m 12035064 n 0000 | any of various perennial South American plants of the genus Loasa having stinging hairs and showy white or yellow or reddish-orange flowers -12035423 20 n 02 Mentzelia 0 genus_Mentzelia 0 004 @ 11575425 n 0000 #m 12034828 n 0000 %m 12035631 n 0000 %m 12035907 n 0000 | genus of bristly herbs or subshrubs of western America lacking stinging hairs -12035631 20 n 03 blazing_star 2 Mentzelia_livicaulis 0 Mentzelia_laevicaulis 0 002 @ 11669921 n 0000 #m 12035423 n 0000 | biennial of southwestern United States having white stems and toothed leaves that is grown for its large pale yellow flowers that open in early morning -12035907 20 n 02 bartonia 0 Mentzelia_lindleyi 0 002 @ 11669921 n 0000 #m 12035423 n 0000 | annual grown especially for its fragrant golden nocturnal flowers -12036067 20 n 01 achene 0 003 @ 13134947 n 0000 + 02601123 a 0101 ~ 12036226 n 0000 | small dry indehiscent fruit with the seed distinct from the fruit wall -12036226 20 n 03 samara 0 key_fruit 0 key 0 001 @ 12036067 n 0000 | a winged often one-seed indehiscent fruit as of the ash or elm or maple -12036368 20 n 02 bur 0 burr 0 005 @ 11684264 n 0000 + 00145083 a 0208 + 00181434 v 0202 + 00181434 v 0101 ~ 11940478 n 0000 | seed vessel having hooks or prickles -12036533 20 n 03 Campanulaceae 0 family_Campanulaceae 0 bellflower_family 0 004 @ 11744583 n 0000 #m 11911274 n 0000 %m 12036781 n 0000 %m 12168385 n 0000 | family of plants of the order Campanulales; in some classifications includes Lobeliaceae -12036781 20 n 01 genus_Campanula 0 003 @ 11744859 n 0000 #m 12036533 n 0000 %m 12036939 n 0000 | large genus of herbs grown for their blossoms: bellflowers -12036939 20 n 02 campanula 0 bellflower 0 014 @ 12205694 n 0000 #m 12036781 n 0000 ~ 12037328 n 0000 ~ 12037499 n 0000 ~ 12037691 n 0000 ~ 12037864 n 0000 ~ 12038038 n 0000 ~ 12038208 n 0000 ~ 12038406 n 0000 ~ 12038585 n 0000 ~ 12038760 n 0000 ~ 12038898 n 0000 ~ 12039122 n 0000 ~ 12039317 n 0000 | any of various plants of the genus Campanula having blue or white bell-shaped flowers -12037328 20 n 03 harebell 1 bluebell 1 Campanula_rotundifolia 0 001 @ 12036939 n 0000 | perennial of northern hemisphere with slender stems and bell-shaped blue flowers -12037499 20 n 02 creeping_bellflower 0 Campanula_rapunculoides 0 001 @ 12036939 n 0000 | erect European herb with creeping rootstocks and nodding spikelike racemes of blue to violet flowers -12037691 20 n 03 Canterbury_bell 2 cup_and_saucer 0 Campanula_medium 0 001 @ 12036939 n 0000 | European biennial widely cultivated for its blue or violet or white flowers -12037864 20 n 02 southern_harebell 0 Campanula_divaricata 0 001 @ 12036939 n 0000 | bellflower of southeastern United States (Maryland to Georgia) having pale blue flowers -12038038 20 n 02 tall_bellflower 0 Campanula_americana 0 001 @ 12036939 n 0000 | annual or perennial of eastern North America with long spikes of blue or white flowers -12038208 20 n 02 marsh_bellflower 0 Campanula_aparinoides 0 001 @ 12036939 n 0000 | bellflower common in marshes of eastern North America having lanceolate linear leaves and small whitish flowers -12038406 20 n 02 clustered_bellflower 0 Campanula_glomerata 0 001 @ 12036939 n 0000 | bellflower of Europe to temperate Asia having dense spikes of violet-blue to white flowers -12038585 20 n 04 peach_bells 0 peach_bell 0 willow_bell 0 Campanula_persicifolia 0 001 @ 12036939 n 0000 | perennial European bellflower with racemose white or blue flowers -12038760 20 n 03 chimney_plant 0 chimney_bellflower 0 Campanula_pyramidalis 0 001 @ 12036939 n 0000 | bellflower of southeastern Europe -12038898 20 n 03 rampion 0 rampion_bellflower 0 Campanula_rapunculus 0 001 @ 12036939 n 0000 | bellflower of Europe and Asia and North Africa having bluish flowers and an edible tuberous root used with the leaves in salad -12039122 20 n 03 throatwort 0 nettle-leaved_bellflower 0 Campanula_trachelium 0 001 @ 12036939 n 0000 | European bellflower with blue-purple to lilac flowers formerly used to treat sore throat -12039317 20 n 03 tussock_bellflower 0 spreading_bellflower 0 Campanula_carpatica 0 001 @ 12036939 n 0000 | European perennial bellflower that grows in clumps with spreading stems and blue or white flowers -12039524 20 n 02 Orchidales 0 order_Orchidales 0 004 @ 11534677 n 0000 #m 12410381 n 0000 %m 12039743 n 0000 %m 12087207 n 0000 | order of plants with irregular flowers having minute seeds: Orchidaceae; Burmanniaceae -12039743 20 n 03 Orchidaceae 0 family_Orchidaceae 0 orchid_family 0 079 @ 11555413 n 0000 #m 12039524 n 0000 %m 12041446 n 0000 %m 12043248 n 0000 %m 12044269 n 0000 %m 12044571 n 0000 %m 12045004 n 0000 %m 12045352 n 0000 %m 12045695 n 0000 %m 12046251 n 0000 %m 12046620 n 0000 %m 12047173 n 0000 %m 12047586 n 0000 %m 12048231 n 0000 %m 12048772 n 0000 %m 12049134 n 0000 %m 12049412 n 0000 %m 12049796 n 0000 %m 12050295 n 0000 %m 12050766 n 0000 %m 12051285 n 0000 %m 12052053 n 0000 %m 12052630 n 0000 %m 12053138 n 0000 %m 12054499 n 0000 %m 12054902 n 0000 %m 12055317 n 0000 %m 12055839 n 0000 %m 12058429 n 0000 %m 12059090 n 0000 %m 12059479 n 0000 %m 12059851 n 0000 %m 12060118 n 0000 %m 12060380 n 0000 %m 12060816 n 0000 %m 12061849 n 0000 %m 12062227 n 0000 %m 12063066 n 0000 %m 12063414 n 0000 %m 12063887 n 0000 %m 12064183 n 0000 %m 12064814 n 0000 %m 12064996 n 0000 %m 12068824 n 0000 %m 12069488 n 0000 %m 12069821 n 0000 %m 12070177 n 0000 %m 12070950 n 0000 %m 12071965 n 0000 %m 12072419 n 0000 %m 12073007 n 0000 %m 12073410 n 0000 %m 12073744 n 0000 %m 12074205 n 0000 %m 12074678 n 0000 %m 12075495 n 0000 %m 12076075 n 0000 %m 12076381 n 0000 %m 12077062 n 0000 %m 12077505 n 0000 %m 12077732 n 0000 %m 12078596 n 0000 %m 12078954 n 0000 %m 12079352 n 0000 %m 12079737 n 0000 %m 12080199 n 0000 %m 12081022 n 0000 %m 12081488 n 0000 %m 12081851 n 0000 %m 12082357 n 0000 %m 12082593 n 0000 %m 12082764 n 0000 %m 12082980 n 0000 %m 12083339 n 0000 %m 12084746 n 0000 %m 12085117 n 0000 %m 12085469 n 0000 %m 12085840 n 0000 %m 12086362 n 0000 | enormous cosmopolitan family of perennial terrestrial or epiphytic plants with fleshy tubers or rootstocks and unusual flowers -12041446 20 n 02 orchid 0 orchidaceous_plant 0 091 @ 11669921 n 0000 #m 12039743 n 0000 %p 05277100 n 0000 %p 11690737 n 0000 ~ 12043444 n 0000 ~ 12044467 n 0000 ~ 12044784 n 0000 ~ 12045157 n 0000 ~ 12045514 n 0000 ~ 12045860 n 0000 ~ 12046428 n 0000 ~ 12046815 n 0000 ~ 12047345 n 0000 ~ 12047884 n 0000 ~ 12048056 n 0000 ~ 12048399 n 0000 ~ 12048928 n 0000 ~ 12049282 n 0000 ~ 12049562 n 0000 ~ 12050014 n 0000 ~ 12050533 n 0000 ~ 12050959 n 0000 ~ 12051514 n 0000 ~ 12051792 n 0000 ~ 12052267 n 0000 ~ 12052447 n 0000 ~ 12052787 n 0000 ~ 12053405 n 0000 ~ 12054678 n 0000 ~ 12055073 n 0000 ~ 12055516 n 0000 ~ 12056099 n 0000 ~ 12056217 n 0000 ~ 12058630 n 0000 ~ 12058822 n 0000 ~ 12059314 n 0000 ~ 12059625 n 0000 ~ 12060546 n 0000 ~ 12061104 n 0000 ~ 12061380 n 0000 ~ 12061614 n 0000 ~ 12062105 n 0000 ~ 12062468 n 0000 ~ 12063211 n 0000 ~ 12063639 n 0000 ~ 12064389 n 0000 ~ 12064591 n 0000 ~ 12065316 n 0000 ~ 12065649 n 0000 ~ 12065777 n 0000 ~ 12069009 n 0000 ~ 12069217 n 0000 ~ 12069679 n 0000 ~ 12070016 n 0000 ~ 12070381 n 0000 ~ 12070583 n 0000 ~ 12070712 n 0000 ~ 12071259 n 0000 ~ 12071477 n 0000 ~ 12071744 n 0000 ~ 12072210 n 0000 ~ 12072722 n 0000 ~ 12073217 n 0000 ~ 12073554 n 0000 ~ 12073991 n 0000 ~ 12074408 n 0000 ~ 12074867 n 0000 ~ 12075010 n 0000 ~ 12075151 n 0000 ~ 12075830 n 0000 ~ 12076223 n 0000 ~ 12076577 n 0000 ~ 12077244 n 0000 ~ 12077944 n 0000 ~ 12078172 n 0000 ~ 12078451 n 0000 ~ 12078747 n 0000 ~ 12079120 n 0000 ~ 12079523 n 0000 ~ 12079963 n 0000 ~ 12080395 n 0000 ~ 12081215 n 0000 ~ 12081649 n 0000 ~ 12082131 n 0000 ~ 12083113 n 0000 ~ 12083591 n 0000 ~ 12084890 n 0000 ~ 12085267 n 0000 ~ 12085664 n 0000 ~ 12086012 n 0000 ~ 12086539 n 0000 | any of numerous plants of the orchid family usually having flowers of unusual shapes and beautiful colors -12043248 20 n 01 genus_Orchis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12043444 n 0000 | type genus of the orchid family; hardy terrestrial orchids of the temperate the northern hemisphere -12043444 20 n 01 orchis 0 005 @ 12041446 n 0000 #m 12043248 n 0000 ~ 12043673 n 0000 ~ 12043836 n 0000 ~ 12044041 n 0000 | any of various deciduous terrestrial orchids having fleshy tubers and flowers in erect terminal racemes -12043673 20 n 03 male_orchis 0 early_purple_orchid 0 Orchis_mascula 0 001 @ 12043444 n 0000 | Eurasian orchid with showy pink or purple flowers in a loose spike -12043836 20 n 03 butterfly_orchid 2 butterfly_orchis 1 Orchis_papilionaceae 0 001 @ 12043444 n 0000 | Mediterranean orchid having usually purple flowers with a fan-shaped spotted or striped rose-red lip -12044041 20 n 04 showy_orchis 0 purple_orchis 0 purple-hooded_orchis 0 Orchis_spectabilis 0 001 @ 12043444 n 0000 | North American orchid having a spike of violet-purple flowers mixed with white; sepals and petals form a hood -12044269 20 n 01 genus_Aerides 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12044467 n 0000 | epiphytic orchids of tropical Asia having stiff leaves and fragrant white flowers in arching racemes -12044467 20 n 01 aerides 0 002 @ 12041446 n 0000 #m 12044269 n 0000 | any orchid of the genus Aerides -12044571 20 n 03 genus_Angrecum 0 Angraecum 0 genus_Angraecum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12044784 n 0000 | genus of tropical Old World epiphytic orchids with showy flowers sometimes grotesque -12044784 20 n 01 angrecum 0 002 @ 12041446 n 0000 #m 12044571 n 0000 | any of various spectacular orchids of the genus Angraecum having dark green leathery leaves and usually nocturnally scented white or ivory flowers -12045004 20 n 02 Anoectochilus 0 genus_Anoectochilus 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12045157 n 0000 | genus of delicate Asiatic orchids -12045157 20 n 01 jewel_orchid 0 002 @ 12041446 n 0000 #m 12045004 n 0000 | any of several delicate Asiatic orchids grown especially for their velvety leaves with metallic white or gold veining -12045352 20 n 02 Aplectrum 0 genus_Aplectrum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12045514 n 0000 | a monocotyledonous genus of the family Orchidaceae -12045514 20 n 03 puttyroot 0 adam-and-eve 0 Aplectrum_hyemale 0 002 @ 12041446 n 0000 #m 12045352 n 0000 | North American orchid bearing a single leaf and yellowish-brown flowers -12045695 20 n 01 genus_Arethusa 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12045860 n 0000 %m 12046028 n 0000 | genus of bog orchids of North America and Japan -12045860 20 n 01 arethusa 0 003 @ 12041446 n 0000 #m 12045695 n 0000 ~ 12046028 n 0000 | any of several bog orchids of the genus Arethusa having 1 or 2 showy flowers -12046028 20 n 04 bog_rose 0 wild_pink 2 dragon's_mouth 0 Arethusa_bulbosa 0 002 @ 12045860 n 0000 #m 12045695 n 0000 | a bog orchid with usually a solitary fragrant magenta pink blossom with a wide gaping corolla; Canada -12046251 20 n 01 genus_Bletia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12046428 n 0000 | genus of tropical American terrestrial orchids with large purple or pink flowers -12046428 20 n 01 bletia 0 002 @ 12041446 n 0000 #m 12046251 n 0000 | any of various orchids of the genus Bletia having pseudobulbs and erect leafless racemes of large purple or pink flowers -12046620 20 n 02 Bletilla 0 genus_Bletilla 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12046815 n 0000 | small genus of chiefly east Asiatic hardy terrestrial orchids similar to genus Bletia -12046815 20 n 02 Bletilla_striata 0 Bletia_striata 0 002 @ 12041446 n 0000 #m 12046620 n 0000 | Japanese orchid with white-striped leaves and slender erect racemes of rose to magenta flowers; often cultivated; sometimes placed in genus Bletia -12047060 20 n 01 pseudobulb 0 001 @ 14315071 n 0000 | a solid bulblike enlargement of the stem of some orchids -12047173 20 n 01 genus_Brassavola 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12047345 n 0000 | genus of tropical American epiphytic or lithophytic rhizomatous orchids -12047345 20 n 01 brassavola 0 002 @ 12041446 n 0000 #m 12047173 n 0000 | any of various tropical American orchids with usually solitary fleshy leaves and showy white to green nocturnally fragrant blossoms solitary or in racemes of up to 7 -12047586 20 n 02 Brassia 0 genus_Brassia 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12047884 n 0000 %m 12048056 n 0000 | genus of tropical American epiphytic orchids having striking axillary racemes of yellow to green spiderlike flowers with long slender sepals and warty lips: spider orchids -12047884 20 n 02 spider_orchid 1 Brassia_lawrenceana 0 002 @ 12041446 n 0000 #m 12047586 n 0000 | South American orchid with spiderlike pale-yellow to pale-green flowers -12048056 20 n 02 spider_orchid 2 Brassia_verrucosa 0 002 @ 12041446 n 0000 #m 12047586 n 0000 | Central American orchid having spiderlike flowers with prominent green warts -12048231 20 n 01 genus_Caladenia 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12048399 n 0000 %m 12048537 n 0000 | terrestrial orchids of Australia to New Caledonia -12048399 20 n 01 caladenia 0 003 @ 12041446 n 0000 #m 12048231 n 0000 ~ 12048537 n 0000 | any of various orchids of the genus Caladenia -12048537 20 n 02 zebra_orchid 0 Caladenia_cairnsiana 0 002 @ 12048399 n 0000 #m 12048231 n 0000 | orchid with reddish linear leaves and panicle of purple-marked pale-yellow flowers with deep red or purple lip; southwestern Australia -12048772 20 n 01 genus_Calanthe 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12048928 n 0000 | large and widely distributed genus of terrestrial orchids -12048928 20 n 01 calanthe 0 002 @ 12041446 n 0000 #m 12048772 n 0000 | any of various showy orchids of the genus Calanthe having white or yellow or rose-colored flowers and broad leaves folded lengthwise -12049134 20 n 02 Calopogon 0 genus_Calopogon 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12049282 n 0000 | terrestrial orchids of North America -12049282 20 n 03 grass_pink 1 Calopogon_pulchellum 0 Calopogon_tuberosum 0 002 @ 12041446 n 0000 #m 12049134 n 0000 | an orchid -12049412 20 n 01 genus_Calypso 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | one species found throughout much of northern North America and Eurasia -12049562 20 n 03 calypso 0 fairy-slipper 0 Calypso_bulbosa 0 001 @ 12041446 n 0000 | rare north temperate bog orchid bearing a solitary white to pink flower marked with purple at the tip of an erect reddish stalk above 1 basal leaf -12049796 20 n 02 Catasetum 0 genus_Catasetum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12050014 n 0000 | genus of tropical American orchids having showy male and female flowers usually on separate inflorescences -12050014 20 n 02 jumping_orchid 0 Catasetum_macrocarpum 0 002 @ 12041446 n 0000 #m 12049796 n 0000 | orchid having both male and female flowers in the same raceme; when a sensitive projection at the base of the column of the male flower is touched the pollen is suddenly ejected -12050295 20 n 01 genus_Cattleya 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12050533 n 0000 | large and highly valued genus of beautiful tropical American epiphytic or lithophytic orchids; the typical orchids; known in many varieties -12050533 20 n 01 cattleya 0 002 @ 12041446 n 0000 #m 12050295 n 0000 | any orchid of the genus Cattleya characterized by a three-lobed lip enclosing the column; among the most popular and most extravagantly beautiful orchids known -12050766 20 n 02 Cephalanthera 0 genus_Cephalanthera 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12050959 n 0000 %m 12051103 n 0000 | small genus of temperate Old World terrestrial orchids -12050959 20 n 01 helleborine 1 003 @ 12041446 n 0000 #m 12050766 n 0000 ~ 12051103 n 0000 | any of several orchids of the genus Cephalanthera -12051103 20 n 02 red_helleborine 0 Cephalanthera_rubra 0 002 @ 12050959 n 0000 #m 12050766 n 0000 | orchid of Mediterranean and Asia having a lax spike of bright rose-pink flowers -12051285 20 n 02 Cleistes 0 genus_Cleistes 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12051514 n 0000 %m 12051792 n 0000 | terrestrial orchids of North and South America having slender fibrous roots; allied to genus Pogonia -12051514 20 n 04 spreading_pogonia 0 funnel-crest_rosebud_orchid 0 Cleistes_divaricata 0 Pogonia_divaricata 0 002 @ 12041446 n 0000 #m 12051285 n 0000 | orchid of northeastern United States with magenta-pink flowers having funnel-shaped lip; sometimes placed in genus Pogonia -12051792 20 n 03 rosebud_orchid 0 Cleistes_rosea 0 Pogonia_rosea 0 002 @ 12041446 n 0000 #m 12051285 n 0000 | orchid of central and northern South America having 1- to 3-blossomed racemes of large showy rose-colored flowers; sometimes placed in genus Pogonia -12052053 20 n 02 Coeloglossum 0 genus_Coeloglossum 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12052267 n 0000 %m 12052447 n 0000 | terrestrial orchids of cooler parts of North America and Europe: satyr orchid -12052267 20 n 02 satyr_orchid 0 Coeloglossum_bracteatum 0 002 @ 12041446 n 0000 #m 12052053 n 0000 | orchid with broad ovate leaves and long-bracted green very irregular flowers -12052447 20 n 02 frog_orchid 1 Coeloglossum_viride 0 002 @ 12041446 n 0000 #m 12052053 n 0000 | orchid having hooded long-bracted green to yellow-green flowers suffused with purple -12052630 20 n 01 genus_Coelogyne 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12052787 n 0000 | large diverse genus of tropical Asiatic epiphytic orchids -12052787 20 n 01 coelogyne 0 002 @ 12041446 n 0000 #m 12052630 n 0000 | any of various orchids of the genus Coelogyne with: clusters of fragrant lacy snow-white flowers; salmon-pink solitary flowers; chainlike racemes of topaz and chocolate brown flowers; spikes of delicate white spice-scented flowers; emerald green flowers marked with blue-black -12053138 20 n 02 Corallorhiza 0 genus_Corallorhiza 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12053405 n 0000 | genus of leafless root-parasitic orchids having small purplish or yellowish racemose flowers with lobed lips; widely distributed in temperate regions -12053405 20 n 01 coral_root 0 005 @ 12041446 n 0000 #m 12053138 n 0000 ~ 12053690 n 0000 ~ 12053962 n 0000 ~ 12054195 n 0000 | a wildflower of the genus Corallorhiza growing from a hard mass of rhizomes associated with a fungus that aids in absorbing nutrients from the forest floor -12053690 20 n 02 spotted_coral_root 0 Corallorhiza_maculata 0 001 @ 12053405 n 0000 | common coral root having yellowish- or reddish- or purplish-brown leafless stems bearing loose racemes of similarly colored flowers with white purple-spotted lips; Guatemala to Canada -12053962 20 n 02 striped_coral_root 0 Corallorhiza_striata 0 001 @ 12053405 n 0000 | nearly leafless wildflower with erect reddish-purple stems bearing racemes of pale pinkish and brownish-striped flowers; western Canada to Mexico -12054195 20 n 03 early_coral_root 0 pale_coral_root 0 Corallorhiza_trifida 0 001 @ 12053405 n 0000 | plant having clumps of nearly leafless pale yellowish to greenish stems bearing similarly colored flowers with white lower lips; northern New Mexico north through South Dakota and Washington to Alaska -12054499 20 n 02 Coryanthes 0 genus_Coryanthes 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12054678 n 0000 | small genus of tropical American epiphytic or lithophytic orchids -12054678 20 n 02 helmetflower 2 helmet_orchid 1 002 @ 12041446 n 0000 #m 12054499 n 0000 | any of several orchids of the genus Coryanthes having racemes of a few musky-scented waxy flowers with a helmet-shaped lip process -12054902 20 n 02 Cycnoches 0 genus_Cycnoches 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12055073 n 0000 | genus of epiphytic or terrestrial tropical American orchids -12055073 20 n 05 swan_orchid 0 swanflower 0 swan-flower 0 swanneck 0 swan-neck 0 002 @ 12041446 n 0000 #m 12054902 n 0000 | any of several orchids of the genus Cycnoches having slender arching columns of flowers suggesting the neck of a swan -12055317 20 n 01 genus_Cymbidium 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12055516 n 0000 | genus of tropical epiphytic or terrestrial Old World orchids; one of the most popular orchid genera -12055516 20 n 02 cymbid 0 cymbidium 0 002 @ 12041446 n 0000 #m 12055317 n 0000 | any of various plants of the genus Cymbidium having narrow leaves and a long drooping cluster of numerous showy and variously colored boat-shaped flowers; extensively hybridized and cultivated as houseplants and important florists' flowers -12055839 20 n 02 Cypripedium 0 genus_Cypripedium 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12056099 n 0000 %m 12056217 n 0000 | genus of chiefly American perennial leafy-stemmed orchids: lady's slippers; sometimes includes species of genus Paphiopedilum -12056099 20 n 01 cypripedia 0 002 @ 12041446 n 0000 #m 12055839 n 0000 | a plant or flower of the genus Cypripedium -12056217 20 n 04 lady's_slipper 0 lady-slipper 0 ladies'_slipper 0 slipper_orchid 0 009 @ 12041446 n 0000 #m 12055839 n 0000 ~ 12056601 n 0000 ~ 12056758 n 0000 ~ 12056990 n 0000 ~ 12057211 n 0000 ~ 12057660 n 0000 ~ 12057895 n 0000 ~ 12058192 n 0000 | any of several chiefly American wildflowers having an inflated pouchlike lip; difficult or impossible to cultivate in the garden -12056601 20 n 03 moccasin_flower 0 nerveroot 0 Cypripedium_acaule 0 001 @ 12056217 n 0000 | once common rose pink woodland orchid of eastern North America -12056758 20 n 05 common_lady's-slipper 0 showy_lady's-slipper 0 showy_lady_slipper 0 Cypripedium_reginae 0 Cypripedium_album 0 001 @ 12056217 n 0000 | pale pink wild orchid of northeastern America having an inflated pouchlike lip -12056990 20 n 03 ram's-head 0 ram's-head_lady's_slipper 0 Cypripedium_arietinum 0 001 @ 12056217 n 0000 | orchid of northern North America having a brownish-green flower and red-and-white lip suggestive of a ram's head -12057211 20 n 04 yellow_lady's_slipper 0 yellow_lady-slipper 0 Cypripedium_calceolus 0 Cypripedium_parviflorum 0 002 @ 12056217 n 0000 ~ 12057447 n 0000 | maroon to purple-brown orchid with yellow lip; Europe, North America and Japan -12057447 20 n 02 large_yellow_lady's_slipper 0 Cypripedium_calceolus_pubescens 0 001 @ 12057211 n 0000 | plant of eastern and central North America having slightly fragrant purple-marked greenish-yellow flowers -12057660 20 n 02 California_lady's_slipper 0 Cypripedium_californicum 0 001 @ 12056217 n 0000 | often having many yellow-green orchids with white pouches growing along streams and seeps of southwestern Oregon and northern California -12057895 20 n 02 clustered_lady's_slipper 0 Cypripedium_fasciculatum 0 001 @ 12056217 n 0000 | clusters of several short stems each having 2 broad leaves and 2-4 drooping brownish to greenish flowers with pouches mottled with purple; British Columbia to central California and northern Colorado -12058192 20 n 02 mountain_lady's_slipper 0 Cypripedium_montanum 0 001 @ 12056217 n 0000 | leafy plant having a few stems in a clump with 1 white and dull purple flower in each upper leaf axil; Alaska to northern California and Wyoming -12058429 20 n 02 Dactylorhiza 0 genus_Dactylorhiza 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12058630 n 0000 %m 12058822 n 0000 | genus of terrestrial orchids of Europe and Asia and North Africa -12058630 20 n 01 marsh_orchid 0 002 @ 12041446 n 0000 #m 12058429 n 0000 | any of several orchids of the genus Dactylorhiza having fingerlike tuberous roots; Europe and Mediterranean region -12058822 20 n 03 common_spotted_orchid 0 Dactylorhiza_fuchsii 0 Dactylorhiza_maculata_fuchsii 0 002 @ 12041446 n 0000 #m 12058429 n 0000 | European orchid having lanceolate leaves spotted purple and pink to white or mauve flowers spotted or lined deep red or purple -12059090 20 n 01 genus_Dendrobium 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12059314 n 0000 | large genus and variable genus of chiefly epiphytic or lithophytic orchids of tropical and subtropical Asia and Australasia -12059314 20 n 01 dendrobium 0 002 @ 12041446 n 0000 #m 12059090 n 0000 | a plant of the genus Dendrobium having stems like cane and usually showy racemose flowers -12059479 20 n 01 genus_Disa 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12059625 n 0000 | genus of showy tropical African terrestrial orchids -12059625 20 n 01 disa 0 002 @ 12041446 n 0000 #m 12059479 n 0000 | any orchid of the genus Disa; beautiful orchids with dark green leaves and usually hooded flowers; much prized as emblematic flowers in their native regions -12059851 20 n 02 Dracula 0 genus_Dracula 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | comprises tropical American species usually placed in genus Masdevallia: diminutive plants having bizarre and often sinister-looking flowers with pendulous scapes and motile lips -12060118 20 n 02 Dryadella 0 genus_Dryadella 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | comprises tropical American species usually placed in genus Masdevallia: very dwarf plants having short tufted and usually unifoliate stems with usually solitary flowers -12060380 20 n 02 Eburophyton 0 genus_Eburophyton 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12060546 n 0000 | a monocotyledonous genus of the family Orchidaceae -12060546 20 n 03 phantom_orchid 0 snow_orchid 0 Eburophyton_austinae 0 002 @ 12041446 n 0000 #m 12060380 n 0000 | waxy white nearly leafless plant with stems in clusters and racemes of white flowers; northwestern United States to northern California and east to Idaho -12060816 20 n 02 Encyclia 0 genus_Encyclia 0 005 @ 11556857 n 0000 #m 12039743 n 0000 %m 12061104 n 0000 %m 12061380 n 0000 %m 12061614 n 0000 | large genus of epiphytic and lithophytic orchids of tropical and subtropical Americas and West Indies; formerly included in genus Epidendrum -12061104 20 n 03 tulip_orchid 0 Encyclia_citrina 0 Cattleya_citrina 0 002 @ 12041446 n 0000 #m 12060816 n 0000 | Mexican epiphytic orchid with glaucous grey-green leaves and lemon- to golden-yellow flowers appearing only partially opened; sometimes placed in genus Cattleya -12061380 20 n 03 butterfly_orchid 3 Encyclia_tampensis 0 Epidendrum_tampense 0 002 @ 12041446 n 0000 #m 12060816 n 0000 | orchid of Florida and the Bahamas having showy brightly colored flowers; sometimes placed in genus Epidendrum -12061614 20 n 04 butterfly_orchid 4 butterfly_orchis 2 Epidendrum_venosum 0 Encyclia_venosa 0 002 @ 12041446 n 0000 #m 12060816 n 0000 | Mexican epiphytic orchid having pale green or yellow-green flowers with white purple-veined lip -12061849 20 n 02 Epidendrum 0 genus_Epidendrum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12062105 n 0000 | large and variable genus of terrestrial or epiphytic or lithophytic orchids of tropical and subtropical Americas; some native to United States -12062105 20 n 01 epidendron 0 002 @ 12041446 n 0000 #m 12061849 n 0000 | any of various orchids of the genus Epidendrum -12062227 20 n 02 Epipactis 0 genus_Epipactis 0 005 @ 11556857 n 0000 #m 12039743 n 0000 %m 12062468 n 0000 %m 12062626 n 0000 %m 12062781 n 0000 | genus of hardy orchids with leafy-bracted racemes of greenish or purplish irregular flowers -12062468 20 n 01 helleborine 2 004 @ 12041446 n 0000 #m 12062227 n 0000 ~ 12062626 n 0000 ~ 12062781 n 0000 | any of various orchids of the genus Epipactis -12062626 20 n 01 Epipactis_helleborine 0 002 @ 12062468 n 0000 #m 12062227 n 0000 | European orchid with spikes of green and pinkish or purplish flowers -12062781 20 n 04 stream_orchid 0 chatterbox 0 giant_helleborine 0 Epipactis_gigantea 0 002 @ 12062468 n 0000 #m 12062227 n 0000 | orchid growing along streams or ponds of western North America having leafy stems and 1 greenish-brown and pinkish flower in the axil of each upper leaf -12063066 20 n 02 Glossodia 0 genus_Glossodia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12063211 n 0000 | small genus of Australian orchids -12063211 20 n 02 tongueflower 0 tongue-flower 0 002 @ 12041446 n 0000 #m 12063066 n 0000 | orchid having blue to purple flowers with tongue-shaped or strap-shaped protuberances (calli) at the lip base -12063414 20 n 02 Goodyera 0 genus_Goodyera 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12063639 n 0000 | genus of small orchids of the northern hemisphere with creeping rhizomes and stalked ovate leaves and small flowers -12063639 20 n 02 rattlesnake_plantain 0 helleborine 3 002 @ 12041446 n 0000 #m 12063414 n 0000 | any of several small temperate and tropical orchids having mottled or striped leaves and spikes of small yellowish-white flowers in a twisted raceme -12063887 20 n 02 Grammatophyllum 0 genus_Grammatophyllum 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | small genus of large epiphytic or terrestrial orchids of southeastern Asia to Polynesia; the giants of the Orchidaceae having long narrow leaves and drooping flower clusters often 6 feet long -12064183 20 n 02 Gymnadenia 0 genus_Gymnadenia 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12064389 n 0000 %m 12064591 n 0000 | small genus of terrestrial orchids of North America and temperate Eurasia -12064389 20 n 02 fragrant_orchid 0 Gymnadenia_conopsea 0 002 @ 12041446 n 0000 #m 12064183 n 0000 | European orchid having dense spikes of fragrant pink or lilac or red flowers with conspicuous spurs -12064591 20 n 02 short-spurred_fragrant_orchid 0 Gymnadenia_odoratissima 0 002 @ 12041446 n 0000 #m 12064183 n 0000 | similar to Gymnadenia conopsea but with smaller flowers on shorter stems and having much shorter spurs -12064814 20 n 02 Gymnadeniopsis 0 genus_Gymnadeniopsis 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | genus of North American terrestrial orchids usually included in genus Habenaria -12064996 20 n 02 Habenaria 0 genus_Habenaria 0 005 @ 11556857 n 0000 #m 12039743 n 0000 %m 12065316 n 0000 %m 12065649 n 0000 %m 12065777 n 0000 | chiefly terrestrial orchids with tubers or fleshy roots often having long slender spurs and petals and lip lobes; includes species formerly placed in genus Gymnadeniopsis -12065316 20 n 02 fringed_orchis 0 fringed_orchid 0 010 @ 12041446 n 0000 #m 12064996 n 0000 ~ 12066261 n 0000 ~ 12066630 n 0000 ~ 12067029 n 0000 ~ 12067193 n 0000 ~ 12067433 n 0000 ~ 12067672 n 0000 ~ 12068138 n 0000 ~ 12068432 n 0000 | any of several summer-flowering American orchids distinguished by a fringed or lacerated lip -12065649 20 n 01 frog_orchid 2 002 @ 12041446 n 0000 #m 12064996 n 0000 | any of several green orchids of the genus Habenaria -12065777 20 n 02 rein_orchid 0 rein_orchis 0 007 @ 12041446 n 0000 #m 12064996 n 0000 ~ 12066018 n 0000 ~ 12066451 n 0000 ~ 12066821 n 0000 ~ 12067817 n 0000 ~ 12068615 n 0000 | any of several American wildflowers with a kidney-shaped lip -12066018 20 n 03 bog_rein_orchid 0 bog_candles 0 Habenaria_dilatata 0 001 @ 12065777 n 0000 | orchid with spikes of many fragrant white flowers on erect leafy stems; of wet or boggy ground through most of the West and northern North America -12066261 20 n 03 white_fringed_orchis 0 white_fringed_orchid 0 Habenaria_albiflora 0 001 @ 12065316 n 0000 | bog orchid of eastern North America with a spike of pure white fringed flowers -12066451 20 n 02 elegant_Habenaria 0 Habenaria_elegans 0 001 @ 12065777 n 0000 | slender inland rein orchid similar to coastal rein orchid but with pale greenish-yellow flowers -12066630 20 n 03 purple-fringed_orchid 2 purple-fringed_orchis 2 Habenaria_fimbriata 0 001 @ 12065316 n 0000 | North American orchid similar to Habenaria psycodes with larger paler flowers -12066821 20 n 02 coastal_rein_orchid 0 Habenaria_greenei 0 001 @ 12065777 n 0000 | stout orchid of central California to northern Washington having racemes of white fragrant bilaterally symmetrical flowers -12067029 20 n 02 Hooker's_orchid 0 Habenaria_hookeri 0 001 @ 12065316 n 0000 | a long-spurred orchid with base leaves and petals converging under the upper sepal -12067193 20 n 05 ragged_orchid 0 ragged_orchis 0 ragged-fringed_orchid 0 green_fringed_orchis 0 Habenaria_lacera 0 001 @ 12065316 n 0000 | fringed orchid of the eastern United States having a greenish flower with the lip deeply lacerated -12067433 20 n 03 prairie_orchid 0 prairie_white-fringed_orchis 0 Habenaria_leucophaea 0 001 @ 12065316 n 0000 | orchid of boggy or wet lands of north central United States having racemes of very fragrant creamy or greenish white flowers -12067672 20 n 02 snowy_orchid 0 Habenaria_nivea 0 001 @ 12065316 n 0000 | slender fringed orchid of eastern North America having white flowers -12067817 20 n 02 round-leaved_rein_orchid 0 Habenaria_orbiculata 0 001 @ 12065777 n 0000 | orchid having a raceme of large greenish-white flowers on a single flower stalk growing between two elliptic or round basal leaves lying on the ground; from northern Oregon and Montana across Canada to the eastern United States -12068138 20 n 03 purple_fringeless_orchid 0 purple_fringeless_orchis 0 Habenaria_peramoena 0 001 @ 12065316 n 0000 | orchid of northeastern and alpine eastern North America closely related to the purple fringed orchids but having rosy-purple or violet flowers with denticulate leaf divisions -12068432 20 n 03 purple-fringed_orchid 1 purple-fringed_orchis 1 Habenaria_psycodes 0 001 @ 12065316 n 0000 | North American orchid with clusters of fragrant purple fringed flowers -12068615 20 n 02 Alaska_rein_orchid 0 Habenaria_unalascensis 0 001 @ 12065777 n 0000 | similar to coastal rein orchid but with smaller flowers; Alaska to Baja California and east to the Dakotas and Colorado -12068824 20 n 02 Hexalectris 0 genus_Hexalectris 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12069009 n 0000 %m 12069217 n 0000 | a monocotyledonous genus of the family Orchidaceae -12069009 20 n 02 crested_coral_root 0 Hexalectris_spicata 0 002 @ 12041446 n 0000 #m 12068824 n 0000 | orchid with yellowish-brown flowers with dark veins; southeastern Arizona to the eastern United States -12069217 20 n 02 Texas_purple_spike 0 Hexalectris_warnockii 0 002 @ 12041446 n 0000 #m 12068824 n 0000 | orchid with slender nearly leafless reddish-brown stems with loose racemes of reddish-brown flowers; of open brushy woods of southeastern Arizona and central Texas -12069488 20 n 02 Himantoglossum 0 genus_Himantoglossum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12069679 n 0000 | small genus of terrestrial orchids of Europe and Mediterranean region -12069679 20 n 02 lizard_orchid 0 Himantoglossum_hircinum 0 002 @ 12041446 n 0000 #m 12069488 n 0000 | an orchid of the genus Himantoglossum -12069821 20 n 01 genus_Laelia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12070016 n 0000 | large genus of mostly epiphytic or lithophytic Central and South American orchids of various sizes -12070016 20 n 01 laelia 0 002 @ 12041446 n 0000 #m 12069821 n 0000 | any of various spectacular plants of the genus Laelia having showy flowers in many colors -12070177 20 n 01 genus_Liparis 0 005 @ 11556857 n 0000 #m 12039743 n 0000 %m 12070381 n 0000 %m 12070583 n 0000 %m 12070712 n 0000 | genus of terrestrial and epiphytic orchids; pantropical to temperate -12070381 20 n 01 liparis 0 002 @ 12041446 n 0000 #m 12070177 n 0000 | an orchid of the genus Liparis having few leaves and usually fairly small yellow-green or dull purple flowers in terminal racemes -12070583 20 n 01 twayblade 2 002 @ 12041446 n 0000 #m 12070177 n 0000 | an orchid of the genus Liparis having a pair of leaves -12070712 20 n 03 fen_orchid 0 fen_orchis 0 Liparis_loeselii 0 002 @ 12041446 n 0000 #m 12070177 n 0000 | small terrestrial orchid of eastern North America and Europe having two nearly basal leaves and dull yellow-green racemose flowers -12070950 20 n 02 Listera 0 genus_Listera 0 005 @ 11556857 n 0000 #m 12039743 n 0000 %m 12071259 n 0000 %m 12071477 n 0000 %m 12071744 n 0000 | genus of terrestrial orchids having usually a single pair of broad shining leaves near the middle of the stem; found in temperate Asia and North America and Europe -12071259 20 n 02 broad-leaved_twayblade 0 Listera_convallarioides 0 002 @ 12041446 n 0000 #m 12070950 n 0000 | small orchid with two elliptic leaves and a slender raceme of small green flowers; western North America -12071477 20 n 02 lesser_twayblade 0 Listera_cordata 0 002 @ 12041446 n 0000 #m 12070950 n 0000 | orchid having two triangular leaves and a short lax raceme of green to rust-colored flowers with the lip flushed mauve; Europe and Asia and North America and Greenland -12071744 20 n 02 twayblade 1 Listera_ovata 0 002 @ 12041446 n 0000 #m 12070950 n 0000 | orchid having a pair of ovate leaves and a long slender raceme of green flowers sometimes tinged red-brown; Europe to central Asia -12071965 20 n 02 Malaxis 0 genus_Malaxis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12072210 n 0000 | large genus of largely terrestrial orchids with one or a few plicate leaves and slender spikes or tiny mostly green flowers; cosmopolitan -12072210 20 n 03 green_adder's_mouth 0 Malaxis-unifolia 0 Malaxis_ophioglossoides 0 002 @ 12041446 n 0000 #m 12071965 n 0000 | North American orchid having a solitary leaf and flowers with threadlike petals -12072419 20 n 01 genus_Masdevallia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12072722 n 0000 | large genus of tropical American mostly epiphytic orchids whose flowers have sepals fused at the base forming a tube; includes orchids sometimes placed in genera Dracula and Dryadella and Scaphosepalum -12072722 20 n 01 masdevallia 0 002 @ 12041446 n 0000 #m 12072419 n 0000 | any of numerous orchids of the genus Masdevallia; tufted evergreen often diminutive plants whose flowers in a remarkable range of colors usually resemble a tricorn with sepals fused at the base to form a tube -12073007 20 n 01 genus_Maxillaria 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12073217 n 0000 | large genus of tropical American epiphytic orchids with persistent leathery leaves and single-flowered scapes -12073217 20 n 01 maxillaria 0 002 @ 12041446 n 0000 #m 12073007 n 0000 | any of numerous orchids of the genus Maxillaria often cultivated for their large brilliantly colored solitary flowers -12073410 20 n 02 Miltonia 0 genus_Miltonia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12073554 n 0000 | genus of tropical American orchids -12073554 20 n 01 pansy_orchid 0 002 @ 12041446 n 0000 #m 12073410 n 0000 | any of various orchids of the genus Miltonia having solitary or loosely racemose showy broadly spreading flowers -12073744 20 n 01 genus_Odontoglossum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12073991 n 0000 | large and important genus of tropical American mostly epiphytic orchids; some of the most widely grown species are often placed in other genera -12073991 20 n 01 odontoglossum 0 002 @ 12041446 n 0000 #m 12073744 n 0000 | any of numerous and diverse orchids of the genus Odontoglossum having racemes of few to many showy usually large flowers in many colors -12074205 20 n 01 genus_Oncidium 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12074408 n 0000 | large genus of showy epiphytic or lithophytic or terrestrial orchids of tropical and subtropical America -12074408 20 n 04 oncidium 0 dancing_lady_orchid 0 butterfly_plant 1 butterfly_orchid 5 002 @ 12041446 n 0000 #m 12074205 n 0000 | any orchid of the genus Oncidium: characterized by slender branching sprays of small yellow and brown flowers; often grown as houseplants -12074678 20 n 02 Ophrys 0 genus_Ophrys 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12075151 n 0000 | a hardy genus of terrestrial orchids of Europe and northern Africa and western Asia -12074867 20 n 02 bee_orchid 0 Ophrys_apifera 0 001 @ 12041446 n 0000 | European orchid whose flowers resemble bumble bees in shape and color -12075010 20 n 03 fly_orchid 1 Ophrys_insectifera 0 Ophrys_muscifera 0 001 @ 12041446 n 0000 | European orchid whose flowers resemble flies -12075151 20 n 01 spider_orchid 0 003 @ 12041446 n 0000 #m 12074678 n 0000 ~ 12075299 n 0000 | any of several European orchids of the genus Ophrys -12075299 20 n 02 early_spider_orchid 0 Ophrys_sphegodes 0 001 @ 12075151 n 0000 | spring-blooming spider orchid having a flower with yellow or green or pink sepals and a broad brown velvety lip -12075495 20 n 02 Paphiopedilum 0 genus_Paphiopedilum 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12075830 n 0000 | horticulturally important genus of mainly terrestrial orchids including many hybrids; southeastern Asia and Indonesia to Philippines and Solomon Islands; Paphiopedilum species sometimes included in genus Cypripedium -12075830 20 n 03 Venus'_slipper 0 Venus's_slipper 0 Venus's_shoe 0 002 @ 12041446 n 0000 #m 12075495 n 0000 | any of various orchids of the genus Paphiopedilum having slender flower stalks bearing 1 to several waxy flowers with pouchlike lips -12076075 20 n 01 genus_Phaius 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12076223 n 0000 | genus of Asiatic and Australian terrestrial orchids -12076223 20 n 01 phaius 0 002 @ 12041446 n 0000 #m 12076075 n 0000 | an orchid of the genus Phaius having large plicate leaves and racemes of showy flowers -12076381 20 n 02 Phalaenopsis 0 genus_Phalaenopsis 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12076577 n 0000 %m 12076852 n 0000 | genus of ornamental epiphytic orchids of Asia and Australia -12076577 20 n 02 moth_orchid 0 moth_plant 0 003 @ 12041446 n 0000 #m 12076381 n 0000 ~ 12076852 n 0000 | any of various orchids of the genus Phalaenopsis having often drooping glossy broad obovate or oval leaves usually dark green flushed purple or mottled grey and silver -12076852 20 n 02 butterfly_plant 2 Phalaenopsis_amabilis 0 002 @ 12076577 n 0000 #m 12076381 n 0000 | orchid having large elliptic to obovate fleshy leaves and fragrant pink-and-white flowers dotted with red -12077062 20 n 02 Pholidota 0 genus_Pholidota 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12077244 n 0000 | genus of mostly epiphytic orchids of Indonesia and the western Pacific -12077244 20 n 01 rattlesnake_orchid 0 002 @ 12041446 n 0000 #m 12077062 n 0000 | any of various orchids of the genus Pholidota having numerous white to brown flowers in spiraling racemes clothed in slightly inflated bracts and resembling a rattlesnake's tail -12077505 20 n 02 Phragmipedium 0 genus_Phragmipedium 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | genus of tropical American orchid species often included in genus Cypripedium or Paphiopedilum and Selenipedium: lady slippers -12077732 20 n 02 Platanthera 0 genus_Platanthera 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12077944 n 0000 %m 12078172 n 0000 | herbaceous terrestrial orchids of temperate northern and southern hemispheres -12077944 20 n 03 lesser_butterfly_orchid 0 Platanthera_bifolia 0 Habenaria_bifolia 0 002 @ 12041446 n 0000 #m 12077732 n 0000 | south European orchid having fragrant greenish-white flowers; sometimes placed in genus Habenaria -12078172 20 n 03 greater_butterfly_orchid 0 Platanthera_chlorantha 0 Habenaria_chlorantha 0 002 @ 12041446 n 0000 #m 12077732 n 0000 | south European orchid with dark green flowers that are larger and less fragrant than Platanthera bifolia; sometimes placed in genus Habenaria -12078451 20 n 02 prairie_white-fringed_orchid 0 Platanthera_leucophea 0 001 @ 12041446 n 0000 | of central North America; a threatened species -12078596 20 n 02 Plectorrhiza 0 genus_Plectorrhiza 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12078747 n 0000 | small genus of Australian orchids -12078747 20 n 01 tangle_orchid 0 002 @ 12041446 n 0000 #m 12078596 n 0000 | an orchid of the genus Plectorrhiza having tangled roots and long wiry stems bearing lax racemes of small fragrant green flowers -12078954 20 n 02 Pleione 0 genus_Pleione 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12079120 n 0000 | small genus of dwarf orchids; India to Thailand and Taiwan -12079120 20 n 01 Indian_crocus 0 002 @ 12041446 n 0000 #m 12078954 n 0000 | any of several dwarf orchids of the genus Pleione bearing one or two solitary white or pink to magenta or occasionally yellow flowers with slender stalks -12079352 20 n 01 genus_Pleurothallis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12079523 n 0000 | large genus of epiphytic or lithophytic orchids of tropical America -12079523 20 n 01 pleurothallis 0 002 @ 12041446 n 0000 #m 12079352 n 0000 | any of numerous small tufted orchids of the genus Pleurothallis having leathery to fleshy leaves and racemes of 1 to many small flowers -12079737 20 n 01 genus_Pogonia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12079963 n 0000 | small but widely distributed genus of orchids closely related to genus Cleistes;: of damp or boggy areas of north temperate zone -12079963 20 n 01 pogonia 0 002 @ 12041446 n 0000 #m 12079737 n 0000 | any hardy bog orchid of the genus Pogonia: terrestrial orchids having slender rootstocks and erect stems bearing one or a few leaves and a solitary terminal flower -12080199 20 n 02 Psychopsis 0 genus_Psychopsis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12080395 n 0000 | epiphytic orchids of Central and South America formerly included in genus Oncidium -12080395 20 n 01 butterfly_orchid 1 004 @ 12041446 n 0000 #m 12080199 n 0000 ~ 12080588 n 0000 ~ 12080820 n 0000 | any orchid of the genus Psychopsis: spectacular large tiger-striped orchids -12080588 20 n 02 Psychopsis_krameriana 0 Oncidium_papilio_kramerianum 0 001 @ 12080395 n 0000 | orchid of South and Central America having flowers similar to but smaller than Psychopsis papilio; sometimes placed in genus Oncidium -12080820 20 n 02 Psychopsis_papilio 0 Oncidium_papilio 0 001 @ 12080395 n 0000 | orchid of South America and Trinidad having large yellow and reddish-brown flowers; sometimes placed in genus Oncidium -12081022 20 n 02 Pterostylis 0 genus_Pterostylis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12081215 n 0000 | genus of terrestrial orchids of Australia and New Zealand and western Pacific -12081215 20 n 02 helmet_orchid 2 greenhood 0 002 @ 12041446 n 0000 #m 12081022 n 0000 | any of numerous orchids of the genus Pterostylis having leaves in a basal rosette and green flowers often striped purple or brown or red with the dorsal sepal incurved to form a hood -12081488 20 n 02 Rhyncostylis 0 genus_Rhyncostylis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12081649 n 0000 | genus of epiphytic orchids of tropical Asia -12081649 20 n 01 foxtail_orchid 0 002 @ 12041446 n 0000 #m 12081488 n 0000 | any of various orchids of the genus Rhyncostylis having pink- to purple-marked white flowers in a dense cylindrical raceme -12081851 20 n 02 Sarcochilus 0 genus_Sarcochilus 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12082131 n 0000 | diminutive epiphytic or lithophytic orchids with clumped short-stemmed foliage and arching racemes of colorful flowers; Australia and Polynesia to southeastern Asia -12082131 20 n 02 orange-blossom_orchid 0 Sarcochilus_falcatus 0 002 @ 12041446 n 0000 #m 12081851 n 0000 | diminutive Australian orchid with loose racemes of fragrant white flowers with purple and orange markings on the lip -12082357 20 n 02 Scaphosepalum 0 genus_Scaphosepalum 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | comprises some tropical American species usually placed in genus Masdevallia: diminutive plants with small flowers carried on one scape -12082593 20 n 02 Schomburgkia 0 genus_Schomburgkia 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | genus of tropical American epiphytic orchids with showy racemose flowers -12082764 20 n 02 Selenipedium 0 genus_Selenipedium 0 002 @ 11556857 n 0000 #m 12039743 n 0000 | genus of tall reedlike tropical American orchids; includes species with pods used locally as a substitute for vanilla -12082980 20 n 01 genus_Sobralia 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12083113 n 0000 | genus of tropical American orchids -12083113 20 n 01 sobralia 0 002 @ 12041446 n 0000 #m 12082980 n 0000 | any of various showy orchids of the genus Sobralia having leafy stems and bright-colored solitary or racemose flowers similar to those of genus Cattleya -12083339 20 n 02 Spiranthes 0 genus_Spiranthes 0 007 @ 11556857 n 0000 #m 12039743 n 0000 %m 12083591 n 0000 %m 12083847 n 0000 %m 12084158 n 0000 %m 12084400 n 0000 %m 12084555 n 0000 | large cosmopolitan genus of white-flowered terrestrial orchids -12083591 20 n 02 ladies'_tresses 0 lady's_tresses 0 006 @ 12041446 n 0000 #m 12083339 n 0000 ~ 12083847 n 0000 ~ 12084158 n 0000 ~ 12084400 n 0000 ~ 12084555 n 0000 | an orchid of the genus Spiranthes having slender often twisted spikes of white flowers -12083847 20 n 02 screw_augur 0 Spiranthes_cernua 0 002 @ 12083591 n 0000 #m 12083339 n 0000 | an orchid of the genus Spiranthes having tall erect densely flowered spiraling clusters of creamy white vanilla-scented flowers; widely distributed especially in low damp places of eastern and central North America -12084158 20 n 02 hooded_ladies'_tresses 0 Spiranthes_romanzoffiana 0 002 @ 12083591 n 0000 #m 12083339 n 0000 | orchid having dense clusters of gently spiraling creamy white flowers with 2 upper petals forming a hood; western North America -12084400 20 n 02 western_ladies'_tresses 0 Spiranthes_porrifolia 0 002 @ 12083591 n 0000 #m 12083339 n 0000 | similar to Spiranthes romanzoffiana;States -12084555 20 n 02 European_ladies'_tresses 0 Spiranthes_spiralis 0 002 @ 12083591 n 0000 #m 12083339 n 0000 | European orchid having shorter racemes of strongly spiraling snow-white flowers -12084746 20 n 01 genus_Stanhopea 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12084890 n 0000 | genus of tropical American epiphytic orchids -12084890 20 n 01 stanhopea 0 002 @ 12041446 n 0000 #m 12084746 n 0000 | any of various orchids of the genus Stanhopea having a single large leaf and loose racemes of large fragrant flowers of various colors; Mexico to Brazil -12085117 20 n 01 genus_Stelis 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12085267 n 0000 | genus of small caespitose orchids of tropical America -12085267 20 n 01 stelis 0 002 @ 12041446 n 0000 #m 12085117 n 0000 | any of various small tropical American orchids of the genus Stelis having long slender racemes of numerous small to minute flowers -12085469 20 n 02 Trichoceros 0 genus_Trichoceros 0 003 @ 11556857 n 0000 #m 12039743 n 0000 %m 12085664 n 0000 | small genus of small epiphytic or terrestrial orchids of tropical South America -12085664 20 n 01 fly_orchid 2 002 @ 12041446 n 0000 #m 12085469 n 0000 | any of several dwarf creeping orchids with small bizarre insect-like hairy flowers on slender stalks -12085840 20 n 01 genus_Vanda 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12086012 n 0000 %m 12086192 n 0000 | genus of showy epiphytic orchids of Himalayas to Malaysia -12086012 20 n 01 vanda 0 003 @ 12041446 n 0000 #m 12085840 n 0000 ~ 12086192 n 0000 | any of numerous showy orchids of the genus Vanda having many large flowers in loose racemes -12086192 20 n 02 blue_orchid 0 Vanda_caerulea 0 002 @ 12086012 n 0000 #m 12085840 n 0000 | famous orchid of northern India having large pale to deep lilac-blue flowers -12086362 20 n 01 genus_Vanilla 0 004 @ 11556857 n 0000 #m 12039743 n 0000 %m 12086539 n 0000 %m 12086778 n 0000 | large genus of tropical climbing orchids; Old and New Worlds -12086539 20 n 01 vanilla 0 003 @ 12041446 n 0000 #m 12086362 n 0000 ~ 12086778 n 0000 | any of numerous climbing plants of the genus Vanilla having fleshy leaves and clusters of large waxy highly fragrant white or green or topaz flowers -12086778 20 n 02 vanilla_orchid 0 Vanilla_planifolia 0 003 @ 12086539 n 0000 #m 12086362 n 0000 %p 07828642 n 0000 | a climbing orchid bearing a podlike fruit yielding vanilla beans; widely cultivated from Florida southward throughout tropical America -12087032 20 n 01 vanillin 0 002 @ 14818238 n 0000 #s 07828642 n 0000 | a crystalline compound found in vanilla beans and some balsam resins; used in perfumes and flavorings -12087207 20 n 02 Burmanniaceae 0 family_Burmanniaceae 0 003 @ 11555413 n 0000 #m 12039524 n 0000 %m 12087408 n 0000 | family of chiefly tropical herbs with basal leaves like bracts and small flowers -12087408 20 n 02 Burmannia 0 genus_Burmannia 0 002 @ 11556857 n 0000 #m 12087207 n 0000 | type genus of the Burmanniaceae; slender herbs of warm regions with leaves resembling scales and flowers with a three-angled or three-winged perianth -12087650 20 n 03 Dioscoreaceae 0 family_Dioscoreaceae 0 yam_family 0 004 @ 11744583 n 0000 #m 12410715 n 0000 %m 12087807 n 0000 %m 12089625 n 0000 | yams -12087807 20 n 02 Dioscorea 0 genus_Dioscorea 0 005 @ 11744859 n 0000 #m 12087650 n 0000 %m 12087961 n 0000 %m 12088909 n 0000 %m 12089320 n 0000 | yams -12087961 20 n 02 yam 0 yam_plant 0 007 @ 13100677 n 0000 #m 12087807 n 0000 %p 12088223 n 0000 ~ 12088327 n 0000 ~ 12088495 n 0000 ~ 12088768 n 0000 ~ 12089496 n 0000 | any of a number of tropical vines of the genus Dioscorea many having edible tuberous roots -12088223 20 n 01 yam 2 002 @ 13128365 n 0000 #p 12087961 n 0000 | edible tuber of any of several yams -12088327 20 n 03 white_yam 0 water_yam 0 Dioscorea_alata 0 001 @ 12087961 n 0000 | grown in Australasia and Polynesia for its large root with fine edible white flesh -12088495 20 n 03 cinnamon_vine 0 Chinese_yam 0 Dioscorea_batata 0 001 @ 12087961 n 0000 | hardy Chinese vine naturalized in United States and cultivated as an ornamental climber for its glossy heart-shaped cinnamon-scented leaves and in the tropics for its edible tubers -12088768 20 n 02 air_potato 0 Dioscorea_bulbifera 0 001 @ 12087961 n 0000 | yam of tropical Africa and Asia cultivated for it large tubers -12088909 20 n 05 elephant's-foot 2 tortoise_plant 0 Hottentot_bread_vine 0 Hottentot's_bread_vine 0 Dioscorea_elephantipes 0 003 @ 13100677 n 0000 #m 12087807 n 0000 %p 12089178 n 0000 | South African vine having a massive rootstock covered with deeply fissured bark -12089178 20 n 02 Hottentot_bread 0 Hottentot's_bread 0 002 @ 13125117 n 0000 #p 12088909 n 0000 | thick edible rootstock of elephant's-foot -12089320 20 n 02 wild_yam 0 Dioscorea_paniculata 0 002 @ 13100677 n 0000 #m 12087807 n 0000 | having a rhizome formerly dried and used to treat rheumatism or liver disorders -12089496 20 n 02 cush-cush 0 Dioscorea_trifida 0 001 @ 12087961 n 0000 | tropical American yam with small yellow edible tubers -12089625 20 n 02 Tamus 0 genus_Tamus 0 003 @ 11744859 n 0000 #m 12087650 n 0000 %m 12089846 n 0000 | a genus of tuberous vines of the family Dioscoreaceae; has twining stems and heart-shaped leaves and axillary racemes -12089846 20 n 03 black_bryony 0 black_bindweed 0 Tamus_communis 0 002 @ 13100677 n 0000 #m 12089625 n 0000 | common European twining vine with tuberous roots and cordate leaves and red berries -12090041 20 n 02 Primulales 0 order_Primulales 0 007 @ 11534677 n 0000 #m 11665781 n 0000 %m 12090318 n 0000 %m 12096798 n 0000 %m 12097746 n 0000 %m 12097927 n 0000 %m 12099556 n 0000 | Primulaceae; Theophrastaceae; Myrsinaceae; and (in some classifications) Plumbaginaceae -12090318 20 n 03 Primulaceae 0 family_Primulaceae 0 primrose_family 0 010 @ 11562747 n 0000 #m 12090041 n 0000 %m 12090702 n 0000 %m 12092127 n 0000 %m 12092766 n 0000 %m 12093088 n 0000 %m 12093769 n 0000 %m 12094121 n 0000 %m 12094786 n 0000 %m 12096223 n 0000 | a dicotyledonous family of the order Primulales with a regular flower; widely distributed in the northern hemisphere -12090702 20 n 01 genus_Primula 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12090890 n 0000 | very large and important genus of plants of temperate Europe and Asia having showy flowers -12090890 20 n 02 primrose 0 primula 0 008 @ 12205694 n 0000 #m 12090702 n 0000 ~ 12091213 n 0000 ~ 12091377 n 0000 ~ 12091550 n 0000 ~ 12091697 n 0000 ~ 12091806 n 0000 ~ 12091953 n 0000 | any of numerous short-stemmed plants of the genus Primula having tufted basal leaves and showy flowers clustered in umbels or heads -12091213 20 n 02 English_primrose 0 Primula_vulgaris 0 001 @ 12090890 n 0000 | plant of western and southern Europe widely cultivated for its pale yellow flowers -12091377 20 n 03 cowslip 0 paigle 1 Primula_veris 0 001 @ 12090890 n 0000 | early spring flower common in British isles having fragrant yellow or sometimes purple flowers -12091550 20 n 03 oxlip 1 paigle 2 Primula_elatior 0 001 @ 12090890 n 0000 | Eurasian primrose with yellow flowers clustered in a one-sided umbel -12091697 20 n 02 Chinese_primrose 0 Primula_sinensis 0 001 @ 12090890 n 0000 | cultivated Asiatic primrose -12091806 20 n 03 auricula 0 bear's_ear 0 Primula_auricula 0 001 @ 12090890 n 0000 | yellow-flowered primrose native to Alps; commonly cultivated -12091953 20 n 02 polyanthus 0 Primula_polyantha 0 001 @ 12090890 n 0000 | florists' primroses; considered a complex hybrid derived from oxlip, cowslip, and common primrose -12092127 20 n 02 Anagallis 0 genus_Anagallis 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12092262 n 0000 | chiefly Old World herbs -12092262 20 n 01 pimpernel 0 004 @ 12205694 n 0000 #m 12092127 n 0000 ~ 12092417 n 0000 ~ 12092629 n 0000 | any of several plants of the genus Anagallis -12092417 20 n 04 scarlet_pimpernel 0 red_pimpernel 0 poor_man's_weatherglass 0 Anagallis_arvensis 0 001 @ 12092262 n 0000 | herb with scarlet or white or purple blossoms that close at approach of rainy weather -12092629 20 n 02 bog_pimpernel 0 Anagallis_tenella 0 001 @ 12092262 n 0000 | small creeping European herb having delicate pink flowers -12092766 20 n 02 Centunculus 0 genus_Centunculus 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12092930 n 0000 | a dicotyledonous genus of the family Primulaceae -12092930 20 n 03 chaffweed 0 bastard_pimpernel 0 false_pimpernel 0 002 @ 13118707 n 0000 #m 12092766 n 0000 | weedy plant having short dry chafflike leaves -12093088 20 n 01 genus_Cyclamen 0 004 @ 11567411 n 0000 #m 12090318 n 0000 %m 12093329 n 0000 %m 12093600 n 0000 | genus of widely cultivated flowering Eurasian herbs with centrally depressed rounded tubers and rounded heart-shaped leaves -12093329 20 n 02 cyclamen 0 Cyclamen_purpurascens 0 002 @ 11669921 n 0000 #m 12093088 n 0000 | Mediterranean plant widely cultivated as a houseplant for its showy dark green leaves splotched with silver and nodding white or pink to reddish flowers with reflexed petals -12093600 20 n 03 sowbread 0 Cyclamen_hederifolium 0 Cyclamen_neopolitanum 0 002 @ 11669921 n 0000 #m 12093088 n 0000 | common wild European cyclamen with pink flowers -12093769 20 n 02 Glaux 0 genus_Glaux 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12093885 n 0000 | sea milkwort -12093885 20 n 04 sea_milkwort 0 sea_trifoly 0 black_saltwort 0 Glaux_maritima 0 002 @ 12205694 n 0000 #m 12093769 n 0000 | a small fleshy herb common along North American seashores and in brackish marshes having pink or white flowers -12094121 20 n 02 Hottonia 0 genus_Hottonia 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12094244 n 0000 | aquatic herbs -12094244 20 n 02 featherfoil 0 feather-foil 0 004 @ 13121544 n 0000 #m 12094121 n 0000 ~ 12094401 n 0000 ~ 12094612 n 0000 | a plant of the genus Hottonia -12094401 20 n 03 water_gillyflower 0 American_featherfoil 0 Hottonia_inflata 0 001 @ 12094244 n 0000 | a featherfoil of the eastern United States with submerged spongy inflated flower stalks and white flowers -12094612 20 n 02 water_violet 0 Hottonia_palustris 0 001 @ 12094244 n 0000 | featherfoil of Europe and western Asia having submerged and floating leaves and violet flowers -12094786 20 n 02 Lysimachia 0 genus_Lysimachia 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12095020 n 0000 | loosestrife: a cosmopolitan genus found in damp or swampy terrain having usually yellow flowers; inclined to be invasive -12095020 20 n 01 loosestrife 2 009 @ 12205694 n 0000 #m 12094786 n 0000 ~ 12095281 n 0000 ~ 12095412 n 0000 ~ 12095543 n 0000 ~ 12095647 n 0000 ~ 12095781 n 0000 ~ 12095934 n 0000 ~ 12096089 n 0000 | any of various herbs and subshrubs of the genus Lysimachia -12095281 20 n 02 gooseneck_loosestrife 0 Lysimachia_clethroides_Duby 0 001 @ 12095020 n 0000 | a variety of the loosestrife herb -12095412 20 n 02 yellow_pimpernel 0 Lysimachia_nemorum 0 001 @ 12095020 n 0000 | trailing European evergreen with yellow flowers -12095543 20 n 02 fringed_loosestrife 0 Lysimachia_ciliatum 0 001 @ 12095020 n 0000 | of North America -12095647 20 n 04 moneywort 0 creeping_Jenny 0 creeping_Charlie 0 Lysimachia_nummularia 0 001 @ 12095020 n 0000 | a loosestrife vine -12095781 20 n 03 yellow_loosestrife 0 garden_loosestrife 0 Lysimachia_vulgaris 0 001 @ 12095020 n 0000 | frequently considered a weed; Europe and Asia -12095934 20 n 02 swamp_candles 0 Lysimachia_terrestris 0 001 @ 12095020 n 0000 | North American plant with spikes of yellow flowers, found in wet places -12096089 20 n 02 whorled_loosestrife 0 Lysimachia_quadrifolia 0 001 @ 12095020 n 0000 | common North American yellow-flowered plant -12096223 20 n 02 Samolus 0 genus_Samolus 0 003 @ 11567411 n 0000 #m 12090318 n 0000 %m 12096395 n 0000 | genus of herbs usually growing in salt marshes: water pimpernels -12096395 20 n 01 water_pimpernel 0 004 @ 13121544 n 0000 #m 12096223 n 0000 ~ 12096563 n 0000 ~ 12096674 n 0000 | a white-flowered aquatic plant of the genus Samolus -12096563 20 n 02 brookweed 1 Samolus_valerandii 0 001 @ 12096395 n 0000 | water pimpernel of Europe to China -12096674 20 n 03 brookweed 2 Samolus_parviflorus 0 Samolus_floribundus 0 001 @ 12096395 n 0000 | American water pimpernel -12096798 20 n 03 Myrsinaceae 0 family_Myrsinaceae 0 myrsine_family 0 004 @ 11562747 n 0000 #m 12090041 n 0000 %m 12097013 n 0000 %m 12097180 n 0000 | family of Old World tropical trees and shrubs; some in Florida -12097013 20 n 02 Myrsine 0 genus_Myrsine 0 002 @ 11567411 n 0000 #m 12096798 n 0000 | evergreen trees and shrubs having aromatic foliage; Africa; Asia (New Zealand) -12097180 20 n 02 Ardisia 0 genus_Ardisia 0 004 @ 11567411 n 0000 #m 12096798 n 0000 %m 12097396 n 0000 %m 12097556 n 0000 | tropical evergreen subshrubs (some climbers) to trees of Asia and Australasia to Americas -12097396 20 n 03 coralberry 1 spiceberry 0 Ardisia_crenata 0 002 @ 13112664 n 0000 #m 12097180 n 0000 | shrub with coral-red berries; Japan to northern India -12097556 20 n 03 marlberry 0 Ardisia_escallonoides 0 Ardisia_paniculata 0 002 @ 13112664 n 0000 #m 12097180 n 0000 | tropical American shrub or small tree with brown wood and dark berries -12097746 20 n 02 Plumbaginales 0 order_Plumbaginales 0 002 @ 11534677 n 0000 #m 12090041 n 0000 | coextensive with the family Plumbaginaceae; usually included in order Primulales -12097927 20 n 04 Plumbaginaceae 0 family_Plumbaginaceae 0 leadwort_family 0 sea-lavender_family 0 006 @ 11562747 n 0000 #m 12090041 n 0000 + 02780975 a 0101 %m 12098227 n 0000 %m 12098665 n 0000 %m 12099220 n 0000 | perennial herbs and shrubs and lianas; cosmopolitan especially in saltwater areas -12098227 20 n 01 genus_Plumbago 0 004 @ 11567411 n 0000 #m 12097927 n 0000 %m 12098403 n 0000 %m 12098524 n 0000 | shrubs and herbs and woody vines of warm regions: leadwort -12098403 20 n 01 plumbago 0 002 @ 12205694 n 0000 #m 12098227 n 0000 | any plumbaginaceous plant of the genus Plumbago -12098524 20 n 02 leadwort 0 Plumbago_europaea 0 002 @ 13112664 n 0000 #m 12098227 n 0000 | a plant of the genus Plumbago with blue flowers -12098665 20 n 02 Armeria 0 genus_Armeria 0 003 @ 11567411 n 0000 #m 12097927 n 0000 %m 12098827 n 0000 | shrubby or herbaceous low-growing evergreen perennials -12098827 20 n 01 thrift 0 003 @ 13118707 n 0000 #m 12098665 n 0000 ~ 12099031 n 0000 | any of numerous sun-loving low-growing evergreens of the genus Armeria having round heads of pink or white flowers -12099031 20 n 03 cliff_rose 0 sea_pink 0 Armeria_maritima 0 001 @ 12098827 n 0000 | tufted thrift of seacoasts and mountains of north temperate zone; occasionally grown as a ground cover -12099220 20 n 02 Limonium 0 genus_Limonium 0 003 @ 11567411 n 0000 #m 12097927 n 0000 %m 12099342 n 0000 | sea lavender -12099342 20 n 03 sea_lavender 0 marsh_rosemary 0 statice 0 002 @ 13118707 n 0000 #m 12099220 n 0000 | any of various plants of the genus Limonium of temperate salt marshes having spikes of white or mauve flowers -12099556 20 n 02 Theophrastaceae 0 family_Theophrastaceae 0 003 @ 11562747 n 0000 #m 12090041 n 0000 %m 12099803 n 0000 | family of mainly tropical American trees and shrubs similar to those of the Myrsinaceae; often included in the Myrsinaceae -12099803 20 n 02 Jacquinia 0 genus_Jacquinia 0 004 @ 11567411 n 0000 #m 12099556 n 0000 %m 12099972 n 0000 %m 12100187 n 0000 | sometimes placed in family Myrsinaceae -12099972 20 n 02 bracelet_wood 0 Jacquinia_armillaris 0 002 @ 13112664 n 0000 #m 12099803 n 0000 | small West Indian shrub or tree with hard glossy seeds patterned yellow and brown that are used to make bracelets -12100187 20 n 03 barbasco 0 joewood 0 Jacquinia_keyensis 0 002 @ 13112664 n 0000 #m 12099803 n 0000 | West Indian shrub or small tree having leathery saponaceous leaves and extremely hard wood -12100382 20 n 02 Graminales 0 order_Graminales 0 004 @ 11534677 n 0000 #m 11668952 n 0000 %m 12100538 n 0000 %m 12149751 n 0000 | grasses; sedges; rushes -12100538 20 n 07 Gramineae 0 family_Gramineae 0 Graminaceae 0 family_Graminaceae 0 Poaceae 0 family_Poaceae 0 grass_family 0 058 @ 11555413 n 0000 #m 12100382 n 0000 %m 12101870 n 0000 %m 12104614 n 0000 %m 12104943 n 0000 %m 12106540 n 0000 %m 12107489 n 0000 %m 12108249 n 0000 %m 12108742 n 0000 %m 12109189 n 0000 %m 12109719 n 0000 %m 12110630 n 0000 %m 12111882 n 0000 %m 12112488 n 0000 ~ 12112789 n 0000 %m 12113471 n 0000 %m 12114226 n 0000 %m 12114981 n 0000 %m 12115563 n 0000 %m 12116267 n 0000 %m 12116583 n 0000 %m 12116881 n 0000 %m 12117507 n 0000 %m 12118223 n 0000 %m 12118912 n 0000 %m 12119947 n 0000 %m 12120812 n 0000 %m 12121405 n 0000 %m 12122124 n 0000 %m 12122581 n 0000 %m 12123050 n 0000 %m 12124358 n 0000 %m 12124505 n 0000 %m 12125398 n 0000 %m 12125782 n 0000 %m 12126238 n 0000 %m 12126911 n 0000 %m 12127890 n 0000 %m 12128645 n 0000 %m 12129525 n 0000 %m 12130408 n 0000 %m 12130759 n 0000 %m 12131216 n 0000 %m 12131550 n 0000 %m 12132299 n 0000 %m 12133332 n 0000 %m 12133870 n 0000 %m 12134300 n 0000 %m 12135898 n 0000 %m 12136944 n 0000 %m 12139367 n 0000 %m 12140137 n 0000 %m 12141037 n 0000 %m 12141890 n 0000 %m 12143572 n 0000 %m 12145802 n 0000 %m 12146100 n 0000 %m 12147031 n 0000 | the grasses: chiefly herbaceous but some woody plants including cereals; bamboo; reeds; sugar cane -12101870 20 n 02 gramineous_plant 0 graminaceous_plant 0 006 @ 12205694 n 0000 #m 12100538 n 0000 ~ 12102133 n 0000 ~ 12132502 n 0000 ~ 12136720 n 0000 ~ 12147226 n 0000 | cosmopolitan herbaceous or woody plants with hollow jointed stems and long narrow leaves -12102133 20 n 01 grass 0 060 @ 12101870 n 0000 + 00209620 a 0101 + 01209025 v 0101 + 01603032 v 0101 + 01204581 v 0101 ~ 12103349 n 0000 ~ 12103476 n 0000 ~ 12103680 n 0000 ~ 12103894 n 0000 ~ 12104104 n 0000 ~ 12104238 n 0000 ~ 12104384 n 0000 ~ 12104734 n 0000 ~ 12105125 n 0000 ~ 12106786 n 0000 ~ 12108432 n 0000 ~ 12108871 n 0000 ~ 12110778 n 0000 ~ 12112008 n 0000 ~ 12112609 n 0000 ~ 12112918 n 0000 ~ 12113657 n 0000 ~ 12113790 n 0000 ~ 12114397 n 0000 ~ 12115180 n 0000 ~ 12115383 n 0000 ~ 12115748 n 0000 ~ 12116058 n 0000 ~ 12116429 n 0000 ~ 12117017 n 0000 ~ 12119099 n 0000 ~ 12119238 n 0000 ~ 12120114 n 0000 ~ 12121033 n 0000 ~ 12121610 n 0000 ~ 12121835 n 0000 ~ 12122018 n 0000 ~ 12122725 n 0000 ~ 12122918 n 0000 ~ 12124627 n 0000 ~ 12125584 n 0000 ~ 12128071 n 0000 ~ 12128306 n 0000 ~ 12128490 n 0000 ~ 12129134 n 0000 ~ 12129349 n 0000 ~ 12129738 n 0000 ~ 12129986 n 0000 ~ 12130160 n 0000 ~ 12130549 n 0000 ~ 12131405 n 0000 ~ 12131550 n 0000 ~ 12133151 n 0000 ~ 12133682 n 0000 ~ 12139575 n 0000 ~ 12140358 n 0000 ~ 12140903 n 0000 ~ 12141167 n 0000 ~ 12141495 n 0000 ~ 12146311 n 0000 | narrow-leaved green herbage: grown as lawns; used as pasture for grazing animals; cut and dried as hay -12103349 20 n 01 beach_grass 0 001 @ 12102133 n 0000 | tough grasses with strong roots that can grow on exposed sandy shores -12103476 20 n 02 bunchgrass 0 bunch_grass 0 001 @ 12102133 n 0000 | any of various grasses of many genera that grow in tufts or clumps rather than forming a sod or mat; chiefly of western United States -12103680 20 n 01 midgrass 0 001 @ 12102133 n 0000 | any of various grasses of moderate height which covered the undisturbed prairie in the United States; includes most of the forage grasses of the temperate zone -12103894 20 n 02 shortgrass 0 short-grass 0 001 @ 12102133 n 0000 | any of various grasses that are short and can tolerate drought conditions; common on the dry upland plains just east of the Rocky Mountains -12104104 20 n 01 sword_grass 0 001 @ 12102133 n 0000 | any of various grasses or sedges having sword-shaped leaves with sharp edges -12104238 20 n 02 tallgrass 0 tall-grass 0 001 @ 12102133 n 0000 | any of various grasses that are tall and that flourish with abundant moisture -12104384 20 n 02 lemongrass 0 lemon_grass 0 001 @ 12102133 n 0000 | a tropical grass native to India and Sri Lanka -12104501 20 n 02 herbage 0 pasturage 0 001 @ 12205694 n 0000 | succulent herbaceous vegetation of pasture land -12104614 20 n 02 Aegilops 0 genus_Aegilops 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12104734 n 0000 | goat grass -12104734 20 n 02 goat_grass 0 Aegilops_triuncalis 0 002 @ 12102133 n 0000 #m 12104614 n 0000 | European grass naturalized as a weed in North America; sharp-pointed seeds cause injury when eaten by livestock -12104943 20 n 02 Agropyron 0 genus_Agropyron 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12105125 n 0000 | perennial grasses of temperate and cool regions: wheatgrass; dog grass -12105125 20 n 02 wheatgrass 0 wheat-grass 0 008 @ 12102133 n 0000 #m 12104943 n 0000 ~ 12105353 n 0000 ~ 12105578 n 0000 ~ 12105828 n 0000 ~ 12105981 n 0000 ~ 12106134 n 0000 ~ 12106323 n 0000 | a grass of the genus Agropyron -12105353 20 n 04 crested_wheatgrass 0 crested_wheat_grass 0 fairway_crested_wheat_grass 0 Agropyron_cristatum 0 001 @ 12105125 n 0000 | Eurasian grass grown in United States great plains area for forage and erosion control -12105578 20 n 08 dog_grass 1 couch_grass 0 quackgrass 0 quack_grass 0 quick_grass 0 witch_grass 2 witchgrass 2 Agropyron_repens 0 001 @ 12105125 n 0000 | European grass spreading rapidly by creeping rhizomes; naturalized in North America as a weed -12105828 20 n 02 bearded_wheatgrass 0 Agropyron_subsecundum 0 001 @ 12105125 n 0000 | a wheatgrass with straight terminal awns on the flowering glumes -12105981 20 n 03 western_wheatgrass 0 bluestem_wheatgrass 0 Agropyron_smithii 0 001 @ 12105125 n 0000 | valuable forage grass of western United States -12106134 20 n 03 intermediate_wheatgrass 0 Agropyron_intermedium 0 Elymus_hispidus 0 001 @ 12105125 n 0000 | Asiatic grass introduced into United States rangelands for pasture and fodder -12106323 20 n 04 slender_wheatgrass 0 Agropyron_trachycaulum 0 Agropyron_pauciflorum 0 Elymus_trachycaulos 0 001 @ 12105125 n 0000 | North American grass cultivated in western United States as excellent forage crop -12106540 20 n 02 Agrostis 0 genus_Agrostis 0 003 @ 11744859 n 0000 #m 12100538 n 0000 %m 12106786 n 0000 | annual or perennial grasses cosmopolitan in northern hemisphere: bent grass (so named from `bent' meaning an area of unfenced grassland) -12106786 20 n 03 bent 0 bent_grass 0 bent-grass 0 005 @ 12102133 n 0000 #m 12106540 n 0000 ~ 12107002 n 0000 ~ 12107191 n 0000 ~ 12107336 n 0000 | grass for pastures and lawns especially bowling and putting greens -12107002 20 n 06 velvet_bent 0 velvet_bent_grass 0 brown_bent 0 Rhode_Island_bent 0 dog_bent 0 Agrostis_canina 0 001 @ 12106786 n 0000 | common grass with slender stems and narrow leaves -12107191 20 n 02 cloud_grass 0 Agrostis_nebulosa 0 001 @ 12106786 n 0000 | Spanish grass with light feathery panicles grown for dried bouquets -12107336 20 n 03 creeping_bent 0 creeping_bentgrass 0 Agrostis_palustris 0 001 @ 12106786 n 0000 | common pasture or lawn grass spread by long runners -12107489 20 n 02 Alopecurus 0 genus_Alopecurus 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12107710 n 0000 | annual or perennial grasses including decorative and meadow species as well as notorious agricultural weeds -12107710 20 n 02 meadow_foxtail 0 Alopecurus_pratensis 0 002 @ 12107970 n 0000 #m 12107489 n 0000 | stout erect perennial grass of northern parts of Old World having silky flowering spikes; widely cultivated for pasture and hay; naturalized in North America -12107970 20 n 02 foxtail 0 foxtail_grass 0 007 @ 12131550 n 0000 ~ 12107710 n 0000 ~ 12134486 n 0000 ~ 12134695 n 0000 ~ 12134836 n 0000 ~ 12135049 n 0000 ~ 12135270 n 0000 | grasses of the genera Alopecurus and Setaria having dense silky or bristly brushlike flowering spikes -12108249 20 n 02 Andropogon 0 genus_Andropogon 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12108432 n 0000 | tall annual or perennial grasses with spikelike racemes; warm regions -12108432 20 n 01 broom_grass 0 004 @ 12102133 n 0000 #m 12108249 n 0000 ~ 12108613 n 0000 ~ 12133462 n 0000 | any of several grasses of the genus Andropogon; used in broom making -12108613 20 n 02 broom_sedge 0 Andropogon_virginicus 0 001 @ 12108432 n 0000 | tall tufted grass of southeastern United States -12108742 20 n 02 Arrhenatherum 0 genus_Arrhenatherum 0 003 @ 11744859 n 0000 #m 12100538 n 0000 %m 12108871 n 0000 | oat grass -12108871 20 n 06 tall_oat_grass 0 tall_meadow_grass 0 evergreen_grass 0 false_oat 0 French_rye 0 Arrhenatherum_elatius 0 002 @ 12102133 n 0000 #m 12108742 n 0000 | coarse perennial Eurasian grass resembling oat; found on roadside verges and rough grassland and in hay meadows; introduced in North America for forage -12109189 20 n 02 Arundo 0 genus_Arundo 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12109498 n 0000 | any of several coarse tall perennial grasses of most warm areas: reeds -12109365 20 n 04 toetoe 1 toitoi 0 Arundo_conspicua 0 Chionochloa_conspicua 0 001 @ 12136720 n 0000 | used by Maoris for thatching -12109498 20 n 02 giant_reed 0 Arundo_donax 0 002 @ 12136720 n 0000 #m 12109189 n 0000 | large rhizomatous perennial grasses found by riversides and in ditches having jointed stems and large grey-white feathery panicles -12109719 20 n 02 Avena 0 genus_Avena 0 003 @ 11744859 n 0000 #m 12100538 n 0000 %m 12109827 n 0000 | oats -12109827 20 n 01 oat 0 006 @ 12141495 n 0000 #m 12109719 n 0000 ~ 12110085 n 0000 ~ 12110236 n 0000 ~ 12110352 n 0000 ~ 12110475 n 0000 | annual grass of Europe and North Africa; grains used as food and fodder (referred to primarily in the plural: `oats') -12110085 20 n 02 cereal_oat 0 Avena_sativa 0 002 @ 12109827 n 0000 %p 07804152 n 0000 | widely cultivated in temperate regions for its edible grains -12110236 20 n 03 wild_oat 0 wild_oat_grass 0 Avena_fatua 0 001 @ 12109827 n 0000 | common in meadows and pastures -12110352 20 n 02 slender_wild_oat 0 Avena_barbata 0 001 @ 12109827 n 0000 | oat of southern Europe and southwestern Asia -12110475 20 n 03 wild_red_oat 0 animated_oat 0 Avene_sterilis 0 001 @ 12109827 n 0000 | Mediterranean oat held to be progenitor of modern cultivated oat -12110630 20 n 02 Bromus 0 genus_Bromus 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12110778 n 0000 | a genus of grasses of the family Gramineae -12110778 20 n 02 brome 0 bromegrass 0 007 @ 12102133 n 0000 #m 12110630 n 0000 ~ 12111043 n 0000 ~ 12111238 n 0000 ~ 12111399 n 0000 ~ 12111627 n 0000 ~ 12111744 n 0000 | any of various woodland and meadow grasses of the genus Bromus; native to temperate regions -12111043 20 n 02 awnless_bromegrass 0 Bromus_inermis 0 001 @ 12110778 n 0000 | drought-resistant perennial with awns lacking or very short and long creeping rhizomes; Europe and temperate Asia -12111238 20 n 03 chess 0 cheat 2 Bromus_secalinus 0 001 @ 12110778 n 0000 | weedy annual native to Europe but widely distributed as a weed especially in wheat -12111399 20 n 07 downy_brome 0 downy_bromegrass 0 downy_cheat 0 downy_chess 0 cheatgrass 0 drooping_brome 0 Bromus_tectorum 0 001 @ 12110778 n 0000 | annual or winter annual grass with softly hairy leaves of the Mediterranean -12111627 20 n 02 field_brome 0 Bromus_arvensis 0 001 @ 12110778 n 0000 | annual grass of Europe and temperate Asia -12111744 20 n 03 Japanese_brome 0 Japanese_chess 0 Bromus_japonicus 0 001 @ 12110778 n 0000 | grass of Mediterranean and temperate Asia -12111882 20 n 02 Bouteloua 0 genus_Bouteloua 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12112008 n 0000 | forage grasses -12112008 20 n 04 grama 0 grama_grass 0 gramma 0 gramma_grass 0 004 @ 12102133 n 0000 #m 12111882 n 0000 ~ 12112219 n 0000 ~ 12112337 n 0000 | pasture grass of plains of South America and western North America -12112219 20 n 02 blue_grama 0 Bouteloua_gracilis 0 001 @ 12112008 n 0000 | a pasture grass of western North America -12112337 20 n 02 black_grama 0 Bouteloua_eriopoda 0 001 @ 12112008 n 0000 | a pasture grass (especially of western coastal regions of North America) -12112488 20 n 02 Buchloe 0 genus_Buchloe 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12112609 n 0000 | buffalo grass -12112609 20 n 02 buffalo_grass 0 Buchloe_dactyloides 0 002 @ 12102133 n 0000 #m 12112488 n 0000 | short grass growing on dry plains of central United States (where buffalo roam) -12112789 20 n 02 Calamagrostis 0 genus_Calamagrostis 0 003 @ 11556857 n 0000 @ 12100538 n 0000 %m 12112918 n 0000 | reed grass -12112918 20 n 01 reed_grass 0 004 @ 12102133 n 0000 #m 12112789 n 0000 ~ 12113195 n 0000 ~ 12113323 n 0000 | any of various tall perennial grasses of the genus Calamagrostis having feathery plumes; natives of marshland fens and wet woodlands of temperate northern hemisphere -12113195 20 n 03 feather_reed_grass 0 feathertop 2 Calamagrostis_acutiflora 0 001 @ 12112918 n 0000 | a variety of reed grass -12113323 20 n 02 Australian_reed_grass 0 Calamagrostic_quadriseta 0 001 @ 12112918 n 0000 | tall Australian reedlike grass sometimes used for hay -12113471 20 n 02 Cenchrus 0 genus_Cenchrus 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12113657 n 0000 %m 12113790 n 0000 | a genus of grasses of the family Gramineae that have burs -12113657 20 n 02 burgrass 0 bur_grass 0 003 @ 12102133 n 0000 #m 12113471 n 0000 ~ 12114010 n 0000 | a grass of the genus Cenchrus -12113790 20 n 04 sandbur 0 sandspur 0 field_sandbur 0 Cenchrus_tribuloides 0 002 @ 12102133 n 0000 #m 12113471 n 0000 | grass of the eastern United States and tropical America having spikelets enclosed in prickly burs -12114010 20 n 03 buffel_grass 0 Cenchrus_ciliaris 0 Pennisetum_cenchroides 0 001 @ 12113657 n 0000 | erect tussock-forming perennial bur grass used particularly in South Africa and Australia for pasture and forage -12114226 20 n 02 Chloris 0 genus_Chloris 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | tufted or perennial or annual grasses having runners: finger grass; windmill grass -12114397 20 n 01 finger_grass 1 003 @ 12102133 n 0000 ~ 12114590 n 0000 ~ 12114770 n 0000 | any grass of the genus Chloris; occurs in short grassland especially on waste ground or poor soils -12114590 20 n 02 Rhodes_grass 0 Chloris_gayana 0 001 @ 12114397 n 0000 | perennial grass of South Africa introduced into United States; cultivated as forage grass in dry regions -12114770 20 n 04 windmill_grass 0 creeping_windmill_grass 0 star_grass 2 Chloris_truncata 0 001 @ 12114397 n 0000 | perennial Australian grass having numerous long spikes arranged like the vanes of a windmill -12114981 20 n 02 Cortaderia 0 genus_Cortaderia 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12115180 n 0000 | tall ornamental grasses of South America and New Zealand and New Guinea: pampas grass -12115180 20 n 02 pampas_grass 0 Cortaderia_selloana 0 002 @ 12102133 n 0000 #m 12114981 n 0000 | tall perennial grass of pampas of South America having silvery plumes and growing in large dense clumps -12115383 20 n 05 plumed_tussock 0 toe_toe 0 toetoe 2 Cortaderia_richardii 0 Arundo_richardii 0 001 @ 12102133 n 0000 | tall grass of New Zealand grown for plumelike flower heads -12115563 20 n 02 Cynodon 0 genus_Cynodon 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12115748 n 0000 %m 12116058 n 0000 | creeping perennial grasses of tropical and southern Africa -12115748 20 n 08 Bermuda_grass 0 devil_grass 0 Bahama_grass 0 kweek 0 doob 0 scutch_grass 0 star_grass 1 Cynodon_dactylon 0 002 @ 12102133 n 0000 #m 12115563 n 0000 | trailing grass native to Europe now cosmopolitan in warm regions; used for lawns and pastures especially in southern United States and India -12116058 20 n 02 giant_star_grass 0 Cynodon_plectostachyum 0 002 @ 12102133 n 0000 #m 12115563 n 0000 | perennial grass having stems 3 to 4 feet high; used especially in Africa and India for pasture and hay -12116267 20 n 02 Dactylis 0 genus_Dactylis 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | a monocotyledonous grass of the family Gramineae (has only one species) -12116429 20 n 04 orchard_grass 0 cocksfoot 0 cockspur 2 Dactylis_glomerata 0 001 @ 12102133 n 0000 | widely grown stout Old World hay and pasture grass -12116583 20 n 02 Dactyloctenium 0 genus_Dactyloctenium 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | a monocotyledonous genus of the family Gramineae -12116734 20 n 03 Egyptian_grass 0 crowfoot_grass 0 Dactyloctenium_aegypticum 0 001 @ 12117017 n 0000 | a creeping grass with spikes like fingers -12116881 20 n 02 Digitaria 0 genus_Digitaria 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12117017 n 0000 | crab grass; finger grass -12117017 20 n 03 crabgrass 0 crab_grass 0 finger_grass 2 005 @ 12102133 n 0000 #m 12116881 n 0000 ~ 12116734 n 0000 ~ 12117235 n 0000 ~ 12117326 n 0000 | grasses with creeping stems that root freely; a pest in lawns -12117235 20 n 02 smooth_crabgrass 0 Digitaria_ischaemum 0 001 @ 12117017 n 0000 | a weed -12117326 20 n 03 large_crabgrass 0 hairy_finger_grass 0 Digitaria_sanguinalis 0 001 @ 12117017 n 0000 | a European forage grass grown for hay; a naturalized weed in United States -12117507 20 n 02 Echinochloa 0 genus_Echinochloa 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12117695 n 0000 %m 12117912 n 0000 | annual or perennial succulent grasses of warm regions -12117695 20 n 04 barnyard_grass 0 barn_grass 0 barn_millet 0 Echinochloa_crusgalli 0 002 @ 12135898 n 0000 #m 12117507 n 0000 | a coarse annual panic grass; a cosmopolitan weed; occasionally used for hay or grazing -12117912 20 n 05 Japanese_millet 0 billion-dollar_grass 0 Japanese_barnyard_millet 0 sanwa_millet 0 Echinochloa_frumentacea 0 002 @ 12135898 n 0000 #m 12117507 n 0000 | coarse annual grass cultivated in Japan and southeastern Asia for its edible seeds and for forage; important wildlife food in United States -12118223 20 n 02 Eleusine 0 genus_Eleusine 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12118414 n 0000 %m 12118661 n 0000 | annual and perennial grasses of savannas and upland grasslands -12118414 20 n 05 yardgrass 0 yard_grass 0 wire_grass 1 goose_grass 2 Eleusine_indica 0 002 @ 12135898 n 0000 #m 12118223 n 0000 | coarse annual grass having fingerlike spikes of flowers; native to Old World tropics; a naturalized weed elsewhere -12118661 20 n 08 finger_millet 0 ragi 0 ragee 0 African_millet 0 coracan 0 corakan 0 kurakkan 0 Eleusine_coracana 0 002 @ 12135898 n 0000 #m 12118223 n 0000 | East Indian cereal grass whose seed yield a somewhat bitter flour, a staple in the Orient -12118912 20 n 02 Elymus 0 genus_Elymus 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12119099 n 0000 %m 12119238 n 0000 | tall tufted perennial grasses (such as lyme grass or wild rye) -12119099 20 n 01 lyme_grass 0 004 @ 12102133 n 0000 #m 12118912 n 0000 ~ 12119390 n 0000 ~ 12119539 n 0000 | a grass of the genus Elymus -12119238 20 n 01 wild_rye 0 004 @ 12102133 n 0000 #m 12118912 n 0000 ~ 12119717 n 0000 ~ 12119822 n 0000 | any of several grasses of the genus Elymus -12119390 20 n 03 giant_ryegrass 0 Elymus_condensatus 0 Leymus_condensatus 0 001 @ 12119099 n 0000 | stout perennial grass of western North America -12119539 20 n 04 sea_lyme_grass 0 European_dune_grass 0 Elymus_arenarius 0 Leymus_arenaria 0 001 @ 12119099 n 0000 | a dune grass of the Pacific seacoast used as a sand binder -12119717 20 n 02 Canada_wild_rye 0 Elymus_canadensis 0 001 @ 12119238 n 0000 | North American wild rye -12119822 20 n 02 medusa's_head 2 Elymus_caput-medusae 0 001 @ 12119238 n 0000 | weedy rye grass having long bristling awns -12119947 20 n 02 Eragrostis 0 genus_Eragrostis 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12120114 n 0000 | annual or perennial grasses of tropics and subtropics -12120114 20 n 02 love_grass 0 bay_grass 0 004 @ 12102133 n 0000 #m 12119947 n 0000 ~ 12120347 n 0000 ~ 12120578 n 0000 | any of various grasses of the genus Eragrostis; specially useful for forage and for the prevention of erosion -12120347 20 n 04 teff 0 teff_grass 0 Eragrostis_tef 0 Eragrostic_abyssinica 0 001 @ 12120114 n 0000 | an African grass economically important as a cereal grass (yielding white flour of good quality) as well as for forage and hay -12120578 20 n 03 weeping_love_grass 0 African_love_grass 0 Eragrostis_curvula 0 001 @ 12120114 n 0000 | perennial South African grass having densely clumped flimsy stems; introduced into United States especially for erosion control -12120812 20 n 02 Erianthus 0 genus_Erianthus 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12121033 n 0000 %m 12121187 n 0000 | genus of reedlike grasses having spikes crowded in a panicle covered with long silky hairs -12121033 20 n 01 plume_grass 0 003 @ 12102133 n 0000 #m 12120812 n 0000 ~ 12121187 n 0000 | a reedlike grass of the genus Erianthus having large plumes -12121187 20 n 03 Ravenna_grass 0 wool_grass 1 Erianthus_ravennae 0 002 @ 12121033 n 0000 #m 12120812 n 0000 | grass often cultivated for its long white-ribbed leaves and large plumes resembling those of pampas grass -12121405 20 n 02 Festuca 0 genus_Festuca 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12121610 n 0000 %m 12121835 n 0000 %m 12122018 n 0000 | a genus of tufted perennial grasses of the family Gramineae -12121610 20 n 04 fescue 0 fescue_grass 0 meadow_fescue 0 Festuca_elatior 0 002 @ 12102133 n 0000 #m 12121405 n 0000 | grass with wide flat leaves cultivated in Europe and America for permanent pasture and hay and for lawns -12121835 20 n 03 sheep_fescue 0 sheep's_fescue 0 Festuca_ovina 0 002 @ 12102133 n 0000 #m 12121405 n 0000 | cultivated for sheep pasturage in upland regions or used as a lawn grass -12122018 20 n 01 silver_grass 0 002 @ 12102133 n 0000 #m 12121405 n 0000 | of Australia and New Zealand -12122124 20 n 02 Glyceria 0 genus_Glyceria 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12122245 n 0000 | manna grass -12122245 20 n 02 manna_grass 0 sweet_grass 0 003 @ 12131550 n 0000 #m 12122124 n 0000 ~ 12122442 n 0000 | any of several moisture-loving grasses of the genus Glyceria having sweet flavor or odor -12122442 20 n 02 reed_meadow_grass 0 Glyceria_grandis 0 001 @ 12122245 n 0000 | a pasture grass of moist places throughout North America -12122581 20 n 02 Holcus 0 genus_Holcus 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | a genus of Old World grasses widely cultivated in America -12122725 20 n 03 velvet_grass 0 Yorkshire_fog 0 Holcus_lanatus 0 001 @ 12102133 n 0000 | tall European perennial grass having a velvety stem; naturalized in United States and used for forage -12122918 20 n 02 creeping_soft_grass 0 Holcus_mollis 0 001 @ 12102133 n 0000 | European perennial grass with soft velvety foliage -12123050 20 n 02 Hordeum 0 genus_Hordeum 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12123244 n 0000 | annual to perennial grasses of temperate northern hemisphere and South America: barley -12123244 20 n 01 barley 0 006 @ 12141495 n 0000 #m 12123050 n 0000 ~ 12123450 n 0000 ~ 12123741 n 0000 ~ 12123932 n 0000 ~ 12124172 n 0000 | cultivated since prehistoric times; grown for forage and grain -12123450 20 n 02 common_barley 0 Hordeum_vulgare 0 003 @ 12123244 n 0000 %p 07803093 n 0000 %p 12123648 n 0000 | grass yielding grain used for breakfast food and animal feed and in malt beverages -12123648 20 n 01 barleycorn 0 002 @ 12156819 n 0000 #p 12123450 n 0000 | a grain of barley -12123741 20 n 03 barley_grass 0 wall_barley 0 Hordeum_murinum 0 001 @ 12123244 n 0000 | European annual grass often found as a weed in waste ground especially along roadsides and hedgerows -12123932 20 n 04 squirreltail_barley 0 foxtail_barley 0 squirreltail_grass 0 Hordeum_jubatum 0 001 @ 12123244 n 0000 | barley grown for its highly ornamental flower heads with delicate long silky awns; North America and northeastern Asia -12124172 20 n 02 little_barley 0 Hordeum_pusillum 0 001 @ 12123244 n 0000 | annual barley native to western North America and widespread in southern United States and tropical America -12124358 20 n 02 Leymus 0 genus_Leymus 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | genus that in some classifications overlaps the genus Elymus -12124505 20 n 02 Lolium 0 genus_Lolium 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12124627 n 0000 | darnel; ryegrass -12124627 20 n 02 rye_grass 0 ryegrass 0 005 @ 12102133 n 0000 #m 12124505 n 0000 ~ 12124818 n 0000 ~ 12125001 n 0000 ~ 12125183 n 0000 | any of several annual or perennial Eurasian grasses -12124818 20 n 03 perennial_ryegrass 0 English_ryegrass 0 Lolium_perenne 0 001 @ 12124627 n 0000 | European perennial grass widely cultivated for pasture and hay and as a lawn grass -12125001 20 n 03 Italian_ryegrass 0 Italian_rye 0 Lolium_multiflorum 0 001 @ 12124627 n 0000 | European grass much used for hay and in United States also for turf and green manure -12125183 20 n 05 darnel 0 tare 2 bearded_darnel 0 cheat 1 Lolium_temulentum 0 001 @ 12124627 n 0000 | weedy annual grass often occurs in grainfields and other cultivated land; seeds sometimes considered poisonous -12125398 20 n 02 Muhlenbergia 0 genus_Muhlenbergia 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12125584 n 0000 | a genus of grasses of the family Gramineae grown in America and Asia -12125584 20 n 03 nimblewill 0 nimble_Will 0 Muhlenbergia_schreberi 0 002 @ 12102133 n 0000 #m 12125398 n 0000 | slender branching American grass of some value for grazing in central United States -12125782 20 n 02 Oryza 0 genus_Oryza 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12125890 n 0000 | rice -12125890 20 n 01 rice 0 004 @ 12141495 n 0000 #m 12125782 n 0000 %s 07891433 n 0000 ~ 12126084 n 0000 | annual or perennial rhizomatous marsh grasses; seed used for food; straw used for paper -12126084 20 n 02 cultivated_rice 0 Oryza_sativa 0 002 @ 12125890 n 0000 %p 07804323 n 0000 | yields the staple food of 50 percent of world's population -12126238 20 n 02 Oryzopsis 0 genus_Oryzopsis 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12126360 n 0000 | rice grass -12126360 20 n 02 ricegrass 0 rice_grass 0 004 @ 12141495 n 0000 #m 12126238 n 0000 ~ 12126516 n 0000 ~ 12126736 n 0000 | any grass of the genus Oryzopsis -12126516 20 n 05 mountain_rice 0 silkgrass 0 silk_grass 0 Indian_millet 2 Oryzopsis_hymenoides 0 001 @ 12126360 n 0000 | valuable forage grass of dry upland areas and plains of western North America to northern Mexico -12126736 20 n 03 smilo 0 smilo_grass 0 Oryzopsis_miliacea 0 001 @ 12126360 n 0000 | perennial mountain rice native to Mediterranean region and introduced into North America -12126911 20 n 02 Panicum 0 genus_Panicum 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12127030 n 0000 | panic grass -12127030 20 n 01 panic_grass 0 006 @ 12135898 n 0000 #m 12126911 n 0000 ~ 12127237 n 0000 ~ 12127460 n 0000 ~ 12127575 n 0000 ~ 12127768 n 0000 | any grass of the genus Panicum; grown for grain and fodder -12127237 20 n 06 witchgrass 1 witch_grass 1 old_witchgrass 0 old_witch_grass 0 tumble_grass 0 Panicum_capillare 0 001 @ 12127030 n 0000 | North American grass with slender brushy panicles; often a weed on cultivated land -12127460 20 n 02 switch_grass 0 Panicum_virgatum 0 001 @ 12127030 n 0000 | grass of western America used for hay -12127575 20 n 03 broomcorn_millet 0 hog_millet 0 Panicum_miliaceum 0 001 @ 12127030 n 0000 | extensively cultivated in Europe and Asia for its grain and in United States sometimes for forage -12127768 20 n 03 goose_grass 1 Texas_millet 0 Panicum_Texanum 0 001 @ 12127030 n 0000 | annual weedy grass used for hay -12127890 20 n 01 genus_Paspalum 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12128071 n 0000 %m 12128306 n 0000 %m 12128490 n 0000 | a genus of perennial grasses of warm regions -12128071 20 n 04 dallisgrass 0 dallis_grass 0 paspalum 0 Paspalum_dilatatum 0 002 @ 12102133 n 0000 #m 12127890 n 0000 | tall tufted perennial tropical American grass naturalized as pasture and forage grass in southern United States -12128306 20 n 02 Bahia_grass 0 Paspalum_notatum 0 002 @ 12102133 n 0000 #m 12127890 n 0000 | perennial tropical American grass used as pasture grass in arid areas of the Gulf States -12128490 20 n 02 knotgrass 1 Paspalum_distichum 0 002 @ 12102133 n 0000 #m 12127890 n 0000 | low-growing weedy grass with spikelets along the leaf stems -12128645 20 n 02 Pennisetum 0 genus_Pennisetum 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12128825 n 0000 %m 12129134 n 0000 %m 12129349 n 0000 | a genus of Old World grasses -12128825 20 n 05 pearl_millet 0 bulrush_millet 0 cattail_millet 0 Pennisetum_glaucum 0 Pennisetum_Americanum 0 002 @ 12141495 n 0000 #m 12128645 n 0000 | tall grass having cattail like spikes; grown in Africa and Asia for its grain and in the United States chiefly for forage; sometimes used in making beer -12129134 20 n 03 fountain_grass 0 Pennisetum_ruppelii 0 Pennisetum_setaceum 0 002 @ 12102133 n 0000 #m 12128645 n 0000 | tall perennial ornamental grass with long nodding flower plumes of tropical Africa and Asia -12129349 20 n 03 feathertop 1 feathertop_grass 0 Pennistum_villosum 0 002 @ 12102133 n 0000 #m 12128645 n 0000 | northeastern tropical African plant having feathery panicles -12129525 20 n 02 Phalaris 0 genus_Phalaris 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12129738 n 0000 %m 12129986 n 0000 %m 12130160 n 0000 | a genus of grasses with broad leaves and a dense spike of flowers -12129738 20 n 05 reed_canary_grass 0 gardener's_garters 0 lady's_laces 0 ribbon_grass 0 Phalaris_arundinacea 0 002 @ 12102133 n 0000 #m 12129525 n 0000 | perennial grass of marshy meadows and ditches having broad leaves; Europe and North America -12129986 20 n 03 canary_grass 0 birdseed_grass 0 Phalaris_canariensis 0 002 @ 12102133 n 0000 #m 12129525 n 0000 | Canary Islands grass; seeds used as feed for caged birds -12130160 20 n 05 hardinggrass 0 Harding_grass 0 toowomba_canary_grass 0 Phalaris_aquatica 0 Phalaris_tuberosa 0 002 @ 12102133 n 0000 #m 12129525 n 0000 | perennial grass of Australia and South Africa; introduced in North America as forage grass -12130408 20 n 02 Phleum 0 genus_Phleum 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12130549 n 0000 | grasses native to temperate regions -12130549 20 n 03 timothy 0 herd's_grass 0 Phleum_pratense 0 003 @ 12102133 n 0000 #m 12130408 n 0000 %p 07802152 n 0000 | grass with long cylindrical spikes grown in northern United States and Europe for hay -12130759 20 n 02 Phragmites 0 genus_Phragmites 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12130937 n 0000 | reeds of marshes and riversides in tropical or temperate regions -12130937 20 n 04 ditch_reed 0 common_reed 0 carrizo 0 Phragmites_communis 0 002 @ 12136720 n 0000 #m 12130759 n 0000 | tall North American reed having relative wide leaves and large plumelike panicles; widely distributed in moist areas; used for mats, screens and arrow shafts -12131216 20 n 02 Poa 0 genus_Poa 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12131405 n 0000 %m 12131767 n 0000 %m 12132092 n 0000 | chiefly perennial grasses of cool temperate regions -12131405 20 n 02 bluegrass 0 blue_grass 0 003 @ 12102133 n 0000 #m 12131216 n 0000 ~ 12131767 n 0000 | any of various grasses of the genus Poa -12131550 20 n 02 meadowgrass 0 meadow_grass 0 005 @ 12102133 n 0000 #m 12100538 n 0000 ~ 12107970 n 0000 ~ 12122245 n 0000 ~ 12132092 n 0000 | any of various grasses that thrive in the presence of abundant moisture -12131767 20 n 05 Kentucky_bluegrass 0 Kentucky_blue 0 Kentucy_blue_grass 0 June_grass 0 Poa_pratensis 0 002 @ 12131405 n 0000 #m 12131216 n 0000 | valuable meadow and pasture grass in Europe and especially central United States having tall stalks and slender bright green leaves; a chief constituent in lawn grass mixtures -12132092 20 n 03 wood_meadowgrass 0 Poa_nemoralis 0 Agrostis_alba 0 002 @ 12131550 n 0000 #m 12131216 n 0000 | slender European grass of shady places; grown also in northeastern America and temperate Asia -12132299 20 n 02 Saccharum 0 genus_Saccharum 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12132502 n 0000 %m 12133151 n 0000 | tall perennial reedlike grass originally of southeastern Asia: sugarcane -12132502 20 n 03 sugarcane 0 sugar_cane 0 Saccharum_officinarum 0 004 @ 12101870 n 0000 #m 12132299 n 0000 %p 12132754 n 0000 ~ 12132956 n 0000 | tall tropical southeast Asian grass having stout fibrous jointed stalks; sap is a chief source of sugar -12132754 20 n 02 sugarcane 2 sugar_cane 2 002 @ 12136206 n 0000 #p 12132502 n 0000 | juicy canes whose sap is a source of molasses and commercial sugar; fresh canes are sometimes chewed for the juice -12132956 20 n 01 noble_cane 0 001 @ 12132502 n 0000 | sugarcanes representing the highest development of the species; characterized by large juicy stalks with soft rinds and high sugar content -12133151 20 n 04 munj 0 munja 0 Saccharum_bengalense 0 Saccharum_munja 0 002 @ 12102133 n 0000 #m 12132299 n 0000 | tough Asiatic grass whose culms are used for ropes and baskets -12133332 20 n 02 Schizachyrium 0 genus_Schizachyrium 0 002 @ 11556857 n 0000 #m 12100538 n 0000 | overlaps the genus Andropogon -12133462 20 n 05 broom_beard_grass 0 prairie_grass 0 wire_grass 2 Andropogon_scoparius 0 Schizachyrium_scoparium 0 001 @ 12108432 n 0000 | handsome hardy North American grass with foliage turning pale bronze in autumn -12133682 20 n 04 bluestem 0 blue_stem 0 Andropogon_furcatus 0 Andropogon_gerardii 0 001 @ 12102133 n 0000 | tall grass with smooth bluish leaf sheaths grown for hay in the United States -12133870 20 n 02 Secale 0 genus_Secale 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12134025 n 0000 | cereal grass widely cultivated for its grain: rye -12134025 20 n 02 rye 0 Secale_cereale 0 003 @ 12141495 n 0000 #m 12133870 n 0000 %p 12157179 n 0000 | hardy annual cereal grass widely cultivated in northern Europe where its grain is the chief ingredient of black bread and in North America for forage and soil improvement -12134300 20 n 02 Setaria 0 genus_Setaria 0 004 @ 11556857 n 0000 #m 12100538 n 0000 %m 12134486 n 0000 %m 12135270 n 0000 | annual or perennial grasses of warm regions: bristlegrasses -12134486 20 n 02 bristlegrass 0 bristle_grass 0 002 @ 12107970 n 0000 #m 12134300 n 0000 | grasses of grasslands and woodlands having large gracefully arching spikes with long bristles beneath each spikelet -12134695 20 n 01 giant_foxtail 0 001 @ 12107970 n 0000 | two species of coarse annual foxtails that are naturalized weeds in United States -12134836 20 n 05 yellow_bristlegrass 0 yellow_bristle_grass 0 yellow_foxtail 0 glaucous_bristlegrass 0 Setaria_glauca 0 001 @ 12107970 n 0000 | common weedy and bristly grass found in nearly all temperate areas -12135049 20 n 06 green_bristlegrass 0 green_foxtail 0 rough_bristlegrass 0 bottle-grass 0 bottle_grass 0 Setaria_viridis 0 001 @ 12107970 n 0000 | European foxtail naturalized in North America; often a troublesome weed -12135270 20 n 04 foxtail_millet 0 Italian_millet 0 Hungarian_grass 0 Setaria_italica 0 004 @ 12107970 n 0000 #m 12134300 n 0000 ~ 12135576 n 0000 ~ 12135729 n 0000 | coarse drought-resistant annual grass grown for grain, hay, and forage in Europe and Asia and chiefly for forage and hay in United States -12135576 20 n 02 Siberian_millet 0 Setaria_italica_rubrofructa 0 001 @ 12135270 n 0000 | millet having orange to reddish grains in long bristly spikes -12135729 20 n 03 German_millet 0 golden_wonder_millet 0 Setaria_italica_stramineofructa 0 001 @ 12135270 n 0000 | millet having yellow grains in large drooping spikes -12135898 20 n 01 millet 0 008 @ 12141495 n 0000 #m 12100538 n 0000 ~ 12117695 n 0000 ~ 12117912 n 0000 ~ 12118414 n 0000 ~ 12118661 n 0000 ~ 12127030 n 0000 ~ 12137120 n 0000 | any of various small-grained annual cereal and forage grasses of the genera Panicum, Echinochloa, Setaria, Sorghum, and Eleusine -12136206 20 n 01 cane 0 004 @ 13129165 n 0000 ~ 12132754 n 0000 ~ 12136392 n 0000 ~ 12136581 n 0000 | a strong slender often flexible stem as of bamboos, reeds, rattans, or sugar cane -12136392 20 n 02 rattan 2 rattan_cane 0 001 @ 12136206 n 0000 | the stem of various climbing palms of the genus Calamus and related genera used to make wickerwork and furniture and canes -12136581 20 n 01 malacca 0 002 @ 12136206 n 0000 #p 12586499 n 0000 | stem of the rattan palm used for making canes and umbrella handles -12136720 20 n 01 reed 0 005 @ 12101870 n 0000 + 00989830 a 0101 ~ 12109365 n 0000 ~ 12109498 n 0000 ~ 12130937 n 0000 | tall woody perennial grasses with hollow slender stems especially of the genera Arundo and Phragmites -12136944 20 n 02 genus_Sorghum 0 Sorghum 1 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12137120 n 0000 | annual or perennial tropical and subtropical cereal grasses: sorghum -12137120 20 n 01 sorghum 0 007 @ 12135898 n 0000 #m 12136944 n 0000 ~ 12137337 n 0000 ~ 12137569 n 0000 ~ 12138757 n 0000 ~ 12138905 n 0000 ~ 12139196 n 0000 | economically important Old World tropical cereal grass -12137337 20 n 05 great_millet 0 kaffir 0 kafir_corn 0 kaffir_corn 0 Sorghum_bicolor 0 001 @ 12137120 n 0000 | important for human and animal food; growth habit and stem form similar to Indian corn but having sawtooth-edged leaves -12137569 20 n 01 grain_sorghum 0 007 @ 12137120 n 0000 ~ 12137791 n 0000 ~ 12137954 n 0000 ~ 12138110 n 0000 ~ 12138248 n 0000 ~ 12138444 n 0000 ~ 12138578 n 0000 | any of several sorghums cultivated primarily for grain -12137791 20 n 06 durra 0 doura 0 dourah 0 Egyptian_corn 0 Indian_millet 1 Guinea_corn 0 001 @ 12137569 n 0000 | sorghums of dry regions of Asia and North Africa -12137954 20 n 03 feterita 0 federita 0 Sorghum_vulgare_caudatum 0 001 @ 12137569 n 0000 | a Sudanese sorghum having exceptionally large soft white grains -12138110 20 n 01 hegari 0 001 @ 12137569 n 0000 | Sudanese sorghums having white seeds; one variety grown in southwestern United States -12138248 20 n 01 kaoliang 0 001 @ 12137569 n 0000 | sorghums of China and Manchuria having small white or brown grains (used for food) and dry pithy stalks (used for fodder, fuel and thatching) -12138444 20 n 02 milo 0 milo_maize 0 001 @ 12137569 n 0000 | small drought-resistant sorghums having large yellow or whitish grains -12138578 20 n 02 shallu 0 Sorghum_vulgare_rosburghii 0 001 @ 12137569 n 0000 | sorghum having slender dry stalks and small hard grains; introduced into United States from India -12138757 20 n 04 sorgo 0 sorgho 0 sweet_sorghum 0 sugar_sorghum 0 001 @ 12137120 n 0000 | any of several sorghums cultivated as a source of syrup -12138905 20 n 05 Johnson_grass 0 Aleppo_grass 0 means_grass 0 evergreen_millet 0 Sorghum_halepense 0 001 @ 12137120 n 0000 | tall perennial grass that spreads by creeping rhizomes and is grown for fodder; naturalized in southern United States where it is a serious pest on cultivated land -12139196 20 n 02 broomcorn 0 Sorghum_vulgare_technicum 0 001 @ 12137120 n 0000 | tall grasses grown for the elongated stiff-branched panicle used for brooms and brushes -12139367 20 n 02 Spartina 0 genus_Spartina 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12139575 n 0000 | grass of freshwater swamps and salt marshes of Europe, Africa, America, and South Atlantic islands -12139575 20 n 02 cordgrass 0 cord_grass 0 004 @ 12102133 n 0000 #m 12139367 n 0000 ~ 12139793 n 0000 ~ 12139921 n 0000 | any of several perennial grasses of the genus Spartina; some important as coastal soil binders -12139793 20 n 02 salt_reed_grass 0 Spartina_cynosuroides 0 001 @ 12139575 n 0000 | tall reedlike grass common in salt meadows -12139921 20 n 04 prairie_cordgrass 0 freshwater_cordgrass 0 slough_grass 0 Spartina_pectinmata 0 001 @ 12139575 n 0000 | North American cordgrass having leaves with dry membranous margins and glumes with long awns -12140137 20 n 02 Sporobolus 0 genus_Sporobolus 0 005 @ 11556857 n 0000 #m 12100538 n 0000 %m 12140358 n 0000 %m 12140511 n 0000 %m 12140903 n 0000 | cosmopolitan annual and perennial grasses (as dropseed or rush grass) -12140358 20 n 02 dropseed 0 drop-seed 0 004 @ 12102133 n 0000 #m 12140137 n 0000 ~ 12140511 n 0000 ~ 12140759 n 0000 | a grass of the genus Sporobolus -12140511 20 n 04 smut_grass 0 blackseed 0 carpet_grass 0 Sporobolus_poiretii 0 002 @ 12140358 n 0000 #m 12140137 n 0000 | grass native to West Indies but common in southern United States having tufted wiry stems often infested with a dark fungus -12140759 20 n 02 sand_dropseed 0 Sporobolus_cryptandrus 0 001 @ 12140358 n 0000 | erect smooth grass of sandy places in eastern North America -12140903 20 n 02 rush_grass 0 rush-grass 0 002 @ 12102133 n 0000 #m 12140137 n 0000 | grass having wiry stems and sheathed panicles -12141037 20 n 02 Stenotaphrum 0 genus_Stenotaphrum 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12141167 n 0000 | lawn grasses -12141167 20 n 03 St._Augustine_grass 0 Stenotaphrum_secundatum 0 buffalo_grass 2 002 @ 12102133 n 0000 #m 12141037 n 0000 | low mat-forming grass of southern United States and tropical America; grown as a lawn grass -12141385 20 n 01 grain 1 001 @ 12141495 n 0000 | a cereal grass; "wheat is a grain that is grown in Kansas" -12141495 20 n 02 cereal 0 cereal_grass 0 014 @ 12102133 n 0000 + 02688623 a 0101 ~ 12109827 n 0000 ~ 12123244 n 0000 ~ 12125890 n 0000 ~ 12126360 n 0000 ~ 12128825 n 0000 ~ 12134025 n 0000 ~ 12135898 n 0000 ~ 12141385 n 0000 ~ 12142085 n 0000 ~ 12143676 n 0000 ~ 12144117 n 0000 ~ 12145919 n 0000 | grass whose starchy grains are used as food: wheat; rice; rye; oats; maize; buckwheat; millet -12141890 20 n 02 Triticum 0 genus_Triticum 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12142085 n 0000 | annual cereal grasses from Mediterranean area; widely cultivated in temperate regions -12142085 20 n 01 wheat 0 009 @ 12141495 n 0000 #m 12141890 n 0000 %p 12142357 n 0000 ~ 12142450 n 0000 ~ 12142750 n 0000 ~ 12142874 n 0000 ~ 12143065 n 0000 ~ 12143215 n 0000 ~ 12143405 n 0000 | annual or biennial grass having erect flower spikes and light brown grains -12142357 20 n 01 wheat_berry 0 002 @ 12156819 n 0000 #p 12142085 n 0000 | a grain of wheat -12142450 20 n 06 durum 0 durum_wheat 0 hard_wheat 0 Triticum_durum 0 Triticum_turgidum 0 macaroni_wheat 0 001 @ 12142085 n 0000 | wheat with hard dark-colored kernels high in gluten and used for bread and pasta; grown especially in southern Russia, North Africa, and northern central North America -12142750 20 n 01 soft_wheat 0 001 @ 12142085 n 0000 | wheat with soft starch kernels used in pastry and breakfast cereals -12142874 20 n 02 common_wheat 0 Triticum_aestivum 0 002 @ 12142085 n 0000 %p 07803545 n 0000 | widely cultivated in temperate regions in many varieties for its commercially important grain -12143065 20 n 03 spelt 0 Triticum_spelta 0 Triticum_aestivum_spelta 0 001 @ 12142085 n 0000 | hardy wheat grown mostly in Europe for livestock feed -12143215 20 n 04 emmer 0 starch_wheat 0 two-grain_spelt 0 Triticum_dicoccum 0 001 @ 12142085 n 0000 | hard red wheat grown especially in Russia and Germany; in United States as stock feed -12143405 20 n 03 wild_wheat 0 wild_emmer 0 Triticum_dicoccum_dicoccoides 0 001 @ 12142085 n 0000 | found wild in Palestine; held to be prototype of cultivated wheat -12143572 20 n 02 Zea 0 genus_Zea 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12143676 n 0000 | corn -12143676 20 n 04 corn 0 maize 0 Indian_corn 0 Zea_mays 0 010 @ 12141495 n 0000 #m 12143572 n 0000 + 01179155 v 0101 %p 07731952 n 0000 %p 08544125 n 0000 %p 11678010 n 0000 ~ 12144399 n 0000 ~ 12144742 n 0000 ~ 12145477 n 0000 %p 13133613 n 0000 | tall annual cereal grass bearing kernels on large ears: widely cultivated in America in many varieties; the principal cereal in Mexico and Central and South America since pre-Columbian times -12144117 20 n 01 corn 1 001 @ 12141495 n 0000 | (Great Britain) any of various cereal plants (especially the dominant crop of the region--wheat in Great Britain or oats in Scotland and Ireland) -12144313 20 n 01 mealie 0 002 @ 13133613 n 0000 ;r 08999482 n 0000 | an ear of corn -12144399 20 n 01 field_corn 0 005 @ 12143676 n 0000 @ 13086556 n 0000 ~ 12144987 n 0000 ~ 12145148 n 0000 ~ 12145325 n 0000 | corn grown primarily for animal feed or market grain -12144580 20 n 01 corn 2 003 @ 12157056 n 0000 + 01179155 v 0101 %s 07674267 n 0000 | the dried grains or kernels or corn used as animal feed or ground for meal -12144742 20 n 06 sweet_corn 0 sugar_corn 0 green_corn 0 sweet_corn_plant 0 Zea_mays_rugosa 0 Zea_saccharata 0 002 @ 12143676 n 0000 #p 07731952 n 0000 | a corn plant developed in order to have young ears that are sweet and suitable for eating -12144987 20 n 02 dent_corn 0 Zea_mays_indentata 0 001 @ 12144399 n 0000 | corn whose kernels contain both hard and soft starch and become indented at maturity -12145148 20 n 04 flint_corn 0 flint_maize 0 Yankee_corn 0 Zea_mays_indurata 0 001 @ 12144399 n 0000 | corn having kernels with a hard outer layer enclosing the soft endosperm -12145325 20 n 04 soft_corn 0 flour_corn 0 squaw_corn 0 Zea_mays_amylacea 0 001 @ 12144399 n 0000 | corn having kernels almost entirely of soft starch -12145477 20 n 02 popcorn 0 Zea_mays_everta 0 002 @ 12143676 n 0000 %p 07732636 n 0000 | corn having small ears and kernels that burst when exposed to dry heat -12145638 20 n 02 cornsilk 0 corn_silk 0 001 @ 11677259 n 0000 | each of the long filamentous styles that grow as a silky tuft at the tip of an ear of Indian corn -12145802 20 n 02 Zizania 0 genus_Zizania 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12145919 n 0000 | wild rice -12145919 20 n 02 wild_rice 0 Zizania_aquatica 0 003 @ 12141495 n 0000 #m 12145802 n 0000 %p 07804771 n 0000 | perennial aquatic grass of North America bearing grain used for food -12146100 20 n 03 genus_Zoysia 0 Zoisia 0 genus_Zoisia 0 003 @ 11556857 n 0000 #m 12100538 n 0000 %m 12146311 n 0000 | lawn grasses native to southeastern Asia and New Zealand; grown especially in warm regions -12146311 20 n 01 zoysia 0 005 @ 12102133 n 0000 #m 12146100 n 0000 ~ 12146488 n 0000 ~ 12146654 n 0000 ~ 12146823 n 0000 | any of several creeping grasses of the genus Zoysia -12146488 20 n 03 Manila_grass 0 Japanese_carpet_grass 0 Zoysia_matrella 0 001 @ 12146311 n 0000 | lawn grass common in the Philippines; grown also in United States -12146654 20 n 03 Korean_lawn_grass 0 Japanese_lawn_grass 0 Zoysia_japonica 0 001 @ 12146311 n 0000 | lawn grass common in China and Japan; grown also in United States -12146823 20 n 03 mascarene_grass 0 Korean_velvet_grass 0 Zoysia_tenuifolia 0 001 @ 12146311 n 0000 | Asiatic creeping perennial grass; introduced in southern United States as a drought-resistant lawn grass -12147031 20 n 02 Bambuseae 0 tribe_Bambuseae 0 007 @ 08108784 n 0000 #m 12100538 n 0000 %m 12147226 n 0000 %m 12147699 n 0000 %m 12148079 n 0000 %m 12148610 n 0000 %m 12148962 n 0000 | bamboos -12147226 20 n 01 bamboo 0 010 @ 12101870 n 0000 #m 12147031 n 0000 %s 12147539 n 0000 ~ 12147835 n 0000 ~ 12148253 n 0000 ~ 12148439 n 0000 ~ 12148757 n 0000 ~ 12149144 n 0000 ~ 12149350 n 0000 ~ 12149521 n 0000 | woody tropical grass having hollow woody stems; mature canes used for construction and furniture -12147539 20 n 01 bamboo 2 002 @ 15098161 n 0000 #s 12147226 n 0000 | the hard woody stems of bamboo plants; used in construction and crafts and fishing poles -12147699 20 n 02 Bambusa 0 genus_Bambusa 0 003 @ 11556857 n 0000 #m 12147031 n 0000 %m 12147835 n 0000 | tall tender clumping bamboos -12147835 20 n 02 common_bamboo 0 Bambusa_vulgaris 0 003 @ 12147226 n 0000 #m 12147699 n 0000 %p 07719330 n 0000 | extremely vigorous bamboo having thin-walled culms striped green and yellow; so widely cultivated that native area is uncertain -12148079 20 n 02 Arundinaria 0 genus_Arundinaria 0 005 @ 11556857 n 0000 #m 12147031 n 0000 + 02643900 a 0101 %m 12148253 n 0000 %m 12148439 n 0000 | North American bamboo -12148253 20 n 03 giant_cane 0 cane_reed 0 Arundinaria_gigantea 0 003 @ 12147226 n 0000 #m 12148079 n 0000 #p 08437847 n 0000 | tall grass of southern United States growing in thickets -12148439 20 n 03 small_cane 0 switch_cane 0 Arundinaria_tecta 0 002 @ 12147226 n 0000 #m 12148079 n 0000 | small cane of watery or moist areas in southern United States -12148610 20 n 02 Dendrocalamus 0 genus_Dendrocalamus 0 003 @ 11556857 n 0000 #m 12147031 n 0000 %m 12148757 n 0000 | giant clump-forming bamboos -12148757 20 n 03 giant_bamboo 0 kyo-chiku 0 Dendrocalamus_giganteus 0 002 @ 12147226 n 0000 #m 12148610 n 0000 | immense tropical southeast Asian bamboo with tough hollow culms that resemble tree trunks -12148962 20 n 02 Phyllostachys 0 genus_Phyllostachys 0 005 @ 11556857 n 0000 #m 12147031 n 0000 %m 12149144 n 0000 %m 12149350 n 0000 %m 12149521 n 0000 | medium and large bamboos -12149144 20 n 04 fishpole_bamboo 0 gosan-chiku 0 hotei-chiku 0 Phyllostachys_aurea 0 002 @ 12147226 n 0000 #m 12148962 n 0000 | small bamboo of southeastern China having slender culms flexuous when young -12149350 20 n 03 black_bamboo 0 kuri-chiku 0 Phyllostachys_nigra 0 002 @ 12147226 n 0000 #m 12148962 n 0000 | small bamboo having thin green culms turning shining black -12149521 20 n 04 giant_timber_bamboo 0 madake 0 ku-chiku 0 Phyllostachys_bambusoides 0 002 @ 12147226 n 0000 #m 12148962 n 0000 | large bamboo having thick-walled culms; native of China and perhaps Japan; widely grown elsewhere -12149751 20 n 03 Cyperaceae 0 family_Cyperaceae 0 sedge_family 0 008 @ 11555413 n 0000 #m 12100382 n 0000 %m 12150028 n 0000 ~ 12150447 n 0000 %m 12151814 n 0000 %m 12152406 n 0000 %m 12152869 n 0000 %m 12153393 n 0000 | bulrush; chufa; cotton grass; papyrus; umbrella plant -12150028 20 n 01 sedge 0 014 @ 13122364 n 0000 #m 12149751 n 0000 + 00210079 a 0101 ~ 12150722 n 0000 ~ 12150969 n 0000 ~ 12151170 n 0000 ~ 12151365 n 0000 ~ 12151615 n 0000 ~ 12152031 n 0000 ~ 12152251 n 0000 ~ 12152532 n 0000 ~ 12153033 n 0000 ~ 12153224 n 0000 ~ 12153580 n 0000 | grasslike or rushlike plant growing in wet places having solid stems, narrow grasslike leaves and spikelets of inconspicuous flowers -12150447 20 n 02 Cyperus 0 genus_Cyperus 0 007 @ 11556857 n 0000 @ 12149751 n 0000 %m 12150722 n 0000 %m 12150969 n 0000 %m 12151170 n 0000 %m 12151365 n 0000 %m 12151615 n 0000 | type genus of Cyperaceae; grasslike rhizomatous herbs; cosmopolitan except very cold regions -12150722 20 n 03 umbrella_plant 1 umbrella_sedge 0 Cyperus_alternifolius 0 002 @ 12150028 n 0000 #m 12150447 n 0000 | African sedge widely cultivated as an ornamental water plant for its terminal umbrellalike cluster of slender grasslike leaves -12150969 20 n 06 chufa 0 yellow_nutgrass 0 earth_almond 0 ground_almond 0 rush_nut 0 Cyperus_esculentus 0 002 @ 12150028 n 0000 #m 12150447 n 0000 | European sedge having small edible nutlike tubers -12151170 20 n 03 galingale 0 galangal 3 Cyperus_longus 0 002 @ 12150028 n 0000 #m 12150447 n 0000 | European sedge having rough-edged leaves and spikelets of reddish flowers and aromatic roots -12151365 20 n 06 papyrus 0 Egyptian_paper_reed 0 Egyptian_paper_rush 0 paper_rush 0 paper_plant 0 Cyperus_papyrus 0 002 @ 12150028 n 0000 #m 12150447 n 0000 | tall sedge of the Nile valley yielding fiber that served many purposes in historic times -12151615 20 n 05 nutgrass 0 nut_grass 0 nutsedge 0 nut_sedge 0 Cyperus_rotundus 0 002 @ 12150028 n 0000 #m 12150447 n 0000 | a widely distributed perennial sedge having small edible nutlike tubers -12151814 20 n 02 Carex 0 genus_Carex 0 004 @ 11556857 n 0000 #m 12149751 n 0000 %m 12152031 n 0000 %m 12152251 n 0000 | large genus of plants found in damp woodlands and bogs and ditches or at water margins: sedges -12152031 20 n 03 sand_sedge 0 sand_reed 0 Carex_arenaria 0 002 @ 12150028 n 0000 #m 12151814 n 0000 | European maritime sedge naturalized along Atlantic coast of United States; rootstock has properties of sarsaparilla -12152251 20 n 02 cypress_sedge 0 Carex_pseudocyperus 0 002 @ 12150028 n 0000 #m 12151814 n 0000 | tufted sedge of temperate regions; nearly cosmopolitan -12152406 20 n 02 Eriophorum 0 genus_Eriophorum 0 003 @ 11556857 n 0000 #m 12149751 n 0000 %m 12152532 n 0000 | cotton grass -12152532 20 n 02 cotton_grass 0 cotton_rush 0 003 @ 12150028 n 0000 #m 12152406 n 0000 ~ 12152722 n 0000 | any sedge of the genus Eriophorum; north temperate bog plants with tufted spikes -12152722 20 n 02 common_cotton_grass 0 Eriophorum_angustifolium 0 001 @ 12152532 n 0000 | having densely tufted white cottony or downlike glumes -12152869 20 n 02 Scirpus 0 genus_Scirpus 0 004 @ 11556857 n 0000 #m 12149751 n 0000 %m 12153033 n 0000 %m 12153224 n 0000 | rhizomatous perennial grasslike herbs -12153033 20 n 03 hardstem_bulrush 0 hardstemmed_bulrush 0 Scirpus_acutus 0 002 @ 12150028 n 0000 #m 12152869 n 0000 | widely distributed North American sedge having rigid olive green stems -12153224 20 n 02 wool_grass 2 Scirpus_cyperinus 0 002 @ 12150028 n 0000 #m 12152869 n 0000 | sedge of eastern North America having numerous clustered woolly spikelets -12153393 20 n 02 Eleocharis 0 genus_Eleocharis 0 003 @ 11556857 n 0000 #m 12149751 n 0000 %m 12153580 n 0000 | sedges having dense spikes of flowers and leaves reduced to basal sheaths -12153580 20 n 01 spike_rush 0 005 @ 12150028 n 0000 #m 12153393 n 0000 ~ 12153741 n 0000 ~ 12153914 n 0000 ~ 12154114 n 0000 | a sedge of the genus Eleocharis -12153741 20 n 03 water_chestnut 1 Chinese_water_chestnut 0 Eleocharis_dulcis 0 002 @ 12153580 n 0000 %p 07737980 n 0000 | Chinese sedge yielding edible bulb-shaped tubers -12153914 20 n 05 needle_spike_rush 0 needle_rush 0 slender_spike_rush 0 hair_grass 0 Eleocharis_acicularis 0 001 @ 12153580 n 0000 | fine-leaved aquatic spike rush; popular as aerator for aquariums -12154114 20 n 02 creeping_spike_rush 0 Eleocharis_palustris 0 001 @ 12153580 n 0000 | cylindrical-stemmed sedge -12154228 20 n 02 Pandanales 0 order_Pandanales 0 005 @ 11534677 n 0000 #m 11668573 n 0000 %m 12154426 n 0000 %m 12155259 n 0000 %m 12156308 n 0000 | families Typhaceae; Sparganiaceae; Pandanaceae -12154426 20 n 03 Pandanaceae 0 family_Pandanaceae 0 screw-pine_family 0 003 @ 11555413 n 0000 #m 12154228 n 0000 %m 12154628 n 0000 | family of woody plants of the order Pandanales including pandanus -12154628 20 n 01 genus_Pandanus 0 003 @ 11556857 n 0000 #m 12154426 n 0000 %m 12154773 n 0000 | type genus of the Pandanaceae (as screw pines) -12154773 20 n 02 pandanus 0 screw_pine 0 003 @ 13104059 n 0000 #m 12154628 n 0000 ~ 12155009 n 0000 | any of various Old World tropical palmlike trees having huge prop roots and edible conelike fruits and leaves like pineapple leaves -12155009 20 n 03 textile_screw_pine 0 lauhala 0 Pandanus_tectorius 0 001 @ 12154773 n 0000 | Polynesian screw pine -12155126 20 n 01 pandanus 3 001 @ 14959234 n 0000 | fiber from leaves of the pandanus tree; used for woven articles (such as mats) -12155259 20 n 03 Typhaceae 0 family_Typhaceae 0 cattail_family 0 003 @ 11555413 n 0000 #m 12154228 n 0000 %m 12155459 n 0000 | perennial marsh plants with creeping rootstocks and long linear leaves -12155459 20 n 02 Typha 0 genus_Typha 0 003 @ 11556857 n 0000 #m 12155259 n 0000 %m 12155583 n 0000 | reed maces; cattails -12155583 20 n 01 cattail 0 004 @ 13122364 n 0000 #m 12155459 n 0000 ~ 12155773 n 0000 ~ 12156117 n 0000 | tall erect herbs with sword-shaped leaves; cosmopolitan in fresh and salt marshes -12155773 20 n 07 cat's-tail 2 bullrush 2 bulrush 2 nailrod 0 reed_mace 0 reedmace 0 Typha_latifolia 0 001 @ 12155583 n 0000 | tall marsh plant with cylindrical seed heads that explode when mature shedding large quantities of down; its long flat leaves are used for making mats and chair seats; of North America, Europe, Asia and North Africa -12156117 20 n 05 lesser_bullrush 0 narrow-leaf_cattail 0 narrow-leaved_reedmace 0 soft_flag 0 Typha_angustifolia 0 001 @ 12155583 n 0000 | reed maces of America, Europe, North Africa, Asia -12156308 20 n 03 Sparganiaceae 0 family_Sparganiaceae 0 bur-reed_family 0 003 @ 11555413 n 0000 #m 12154228 n 0000 %m 12156484 n 0000 | coextensive with the genus Sparganium -12156484 20 n 02 Sparganium 0 genus_Sparganium 0 003 @ 11556857 n 0000 #m 12156308 n 0000 %m 12156679 n 0000 | type and sole genus of Sparganiaceae; marsh or aquatic herbs of temperate regions -12156679 20 n 01 bur_reed 0 002 @ 12205694 n 0000 #m 12156484 n 0000 | marsh plant having elongated linear leaves and round prickly fruit -12156819 20 n 02 grain 0 caryopsis 0 006 @ 13135832 n 0000 ~ 11823305 n 0000 ~ 12123648 n 0000 ~ 12142357 n 0000 ~ 12157056 n 0000 ~ 12157179 n 0000 | dry seed-like fruit produced by the cereal grasses: e.g. wheat, barley, Indian corn -12157056 20 n 01 kernel 1 002 @ 12156819 n 0000 ~ 12144580 n 0000 | a single whole grain of a cereal; "a kernel of corn" -12157179 20 n 01 rye 2 002 @ 12156819 n 0000 #p 12134025 n 0000 | the seed of the cereal grass -12157276 20 n 03 Cucurbitaceae 0 family_Cucurbitaceae 0 gourd_family 0 013 @ 11562747 n 0000 #m 11911274 n 0000 + 02707528 a 0101 ~ 12157677 n 0000 %m 12157769 n 0000 %m 12158148 n 0000 %m 12162905 n 0000 %m 12163649 n 0000 %m 12164215 n 0000 %m 12165608 n 0000 %m 12166003 n 0000 %m 12166312 n 0000 %m 12167282 n 0000 | a family of herbaceous vines (such as cucumber or melon or squash or pumpkin) -12157677 20 n 01 cucurbit 0 001 @ 12157276 n 0000 | any plant of the family Cucurbitaceae -12157769 20 n 02 gourd 1 gourd_vine 0 008 @ 13100677 n 0000 #m 12157276 n 0000 ~ 12162425 n 0000 ~ 12163824 n 0000 ~ 12165758 n 0000 ~ 12166128 n 0000 ~ 12167436 n 0000 ~ 12167602 n 0000 | any vine of the family Cucurbitaceae that bears fruits with hard rinds -12158031 20 n 01 gourd 2 002 @ 13134947 n 0000 ~ 12815838 n 0000 | any of numerous inedible fruits with hard rinds -12158148 20 n 02 Cucurbita 0 genus_Cucurbita 0 011 @ 11567411 n 0000 #m 12157276 n 0000 %m 12158443 n 0000 %m 12158798 n 0000 %m 12159055 n 0000 %m 12160490 n 0000 %m 12161056 n 0000 %m 12161285 n 0000 %m 12161577 n 0000 %p 12162181 n 0000 %m 12162425 n 0000 | type genus of the Cucurbitaceae -12158443 20 n 04 pumpkin 0 pumpkin_vine 0 autumn_pumpkin 0 Cucurbita_pepo 0 004 @ 12158798 n 0000 #m 12158148 n 0000 %p 07735510 n 0000 %p 07770763 n 0000 | a coarse vine widely cultivated for its large pulpy round orange fruit with firm orange skin and numerous seeds; subspecies of Cucurbita pepo include the summer squashes and a few autumn squashes -12158798 20 n 02 squash 0 squash_vine 0 006 @ 13100677 n 0000 #m 12158148 n 0000 %p 07715561 n 0000 ~ 12158443 n 0000 ~ 12159055 n 0000 ~ 12160490 n 0000 | any of numerous annual trailing plants of the genus Cucurbita grown for their fleshy edible fruits -12159055 20 n 03 summer_squash 0 summer_squash_vine 0 Cucurbita_pepo_melopepo 0 007 @ 12158798 n 0000 #m 12158148 n 0000 %p 07715721 n 0000 ~ 12159388 n 0000 ~ 12159555 n 0000 ~ 12160125 n 0000 ~ 12160303 n 0000 | any of various usually bushy plants producing fruit that is eaten while immature and before the rind or seeds harden -12159388 20 n 01 yellow_squash 0 002 @ 12159055 n 0000 %p 07716034 n 0000 | any of various squash plants grown for their yellow fruits with somewhat elongated necks -12159555 20 n 03 marrow 0 marrow_squash 0 vegetable_marrow 0 004 @ 12159055 n 0000 %p 07716504 n 0000 ~ 12159804 n 0000 ~ 12159942 n 0000 | any of various squash plants grown for their elongated fruit with smooth dark green skin and whitish flesh -12159804 20 n 02 zucchini 0 courgette 0 002 @ 12159555 n 0000 %p 07716358 n 0000 | marrow squash plant whose fruit are eaten when small -12159942 20 n 02 cocozelle 0 Italian_vegetable_marrow 0 002 @ 12159555 n 0000 %p 07716649 n 0000 | squash plant having dark green fruit with skin mottled with light green or yellow -12160125 20 n 02 cymling 0 pattypan_squash 0 002 @ 12159055 n 0000 %p 07716750 n 0000 | squash plant having flattened round fruit with a scalloped edge; usually greenish white -12160303 20 n 01 spaghetti_squash 0 002 @ 12159055 n 0000 %p 07716906 n 0000 | squash plant bearing oval fruit with smooth yellowish skin and tender stranded flesh resembling spaghetti -12160490 20 n 02 winter_squash 0 winter_squash_plant 0 009 @ 12158798 n 0000 #m 12158148 n 0000 %p 07717070 n 0000 ~ 12160857 n 0000 ~ 12161056 n 0000 ~ 12161285 n 0000 ~ 12161744 n 0000 ~ 12161969 n 0000 ~ 12162181 n 0000 | any of various plants of the species Cucurbita maxima and Cucurbita moschata producing squashes that have hard rinds and mature in the fall -12160857 20 n 01 acorn_squash 0 002 @ 12160490 n 0000 %p 07717410 n 0000 | squash plant bearing small acorn-shaped fruits having yellow flesh and dark green or yellow rind with longitudinal ridges -12161056 20 n 02 hubbard_squash 0 Cucurbita_maxima 1 003 @ 12160490 n 0000 #m 12158148 n 0000 %p 07717714 n 0000 | any of several winter squash plants producing large greyish-green football-shaped fruit with a rough warty rind -12161285 20 n 02 turban_squash 0 Cucurbita_maxima_turbaniformis 0 004 @ 12160490 n 0000 #m 12158148 n 0000 %p 07717858 n 0000 ~ 12161577 n 0000 | squash plants bearing hard-shelled fruit shaped somewhat like a turban with a rounded central portion protruding from the end opposite the stem -12161577 20 n 01 buttercup_squash 0 002 @ 12161285 n 0000 #m 12158148 n 0000 | plant bearing somewhat drum-shaped fruit having dark green rind with greyish markings -12161744 20 n 02 butternut_squash 0 Cucurbita_maxima 2 002 @ 12160490 n 0000 %p 07717556 n 0000 | plant bearing buff-colored squash having somewhat bottle-shaped fruit with fine-textured edible flesh and a smooth thin rind -12161969 20 n 03 winter_crookneck 0 winter_crookneck_squash 0 Cucurbita_moschata 0 002 @ 12160490 n 0000 %p 07718329 n 0000 | any of various plants bearing squash having hard rinds and elongated recurved necks -12162181 20 n 03 cushaw 0 Cucurbita_mixta 0 Cucurbita_argyrosperma 0 003 @ 12160490 n 0000 #p 12158148 n 0000 %p 07718195 n 0000 | plant bearing squash having globose to ovoid fruit with variously striped grey and green and white warty rinds -12162425 20 n 07 prairie_gourd 0 prairie_gourd_vine 0 Missouri_gourd 0 wild_pumpkin 0 buffalo_gourd 0 calabazilla 0 Cucurbita_foetidissima 0 003 @ 12157769 n 0000 #m 12158148 n 0000 %p 12162758 n 0000 | perennial vine of dry parts of central and southwestern United States and Mexico having small hard mottled green inedible fruit -12162758 20 n 01 prairie_gourd 2 002 @ 13134947 n 0000 #p 12162425 n 0000 | small hard green-and-white inedible fruit of the prairie gourd plant -12162905 20 n 01 genus_Bryonia 0 003 @ 11567411 n 0000 #m 12157276 n 0000 %m 12163035 n 0000 | climbing perennial herbs: bryony -12163035 20 n 02 bryony 0 briony 0 004 @ 13100677 n 0000 #m 12162905 n 0000 ~ 12163279 n 0000 ~ 12163456 n 0000 | a vine of the genus Bryonia having large leaves and small flowers and yielding acrid juice with emetic and purgative properties -12163279 20 n 03 white_bryony 0 devil's_turnip 0 Bryonia_alba 0 001 @ 12163035 n 0000 | white-flowered vine having thick roots and bearing small black berries; Europe to Iran -12163456 20 n 03 red_bryony 0 wild_hop 0 Bryonia_dioica 0 001 @ 12163035 n 0000 | bryony having fleshy roots pale green flowers and very small red berries; Europe; North Africa; western Asia -12163649 20 n 02 Citrullus 0 genus_Citrullus 0 003 @ 11567411 n 0000 #m 12157276 n 0000 %m 12164065 n 0000 | a dicot genus of the family Cucurbitaceae including watermelons -12163824 20 n 02 melon 0 melon_vine 0 005 @ 12157769 n 0000 %p 07755411 n 0000 ~ 12164065 n 0000 ~ 12164363 n 0000 ~ 12165384 n 0000 | any of various fruit of cucurbitaceous vines including: muskmelons; watermelons; cantaloupes; cucumbers -12164065 20 n 03 watermelon 0 watermelon_vine 0 Citrullus_vulgaris 0 003 @ 12163824 n 0000 #m 12163649 n 0000 %p 07756951 n 0000 | an African melon -12164215 20 n 02 Cucumis 0 genus_Cucumis 0 004 @ 11567411 n 0000 #m 12157276 n 0000 %m 12164363 n 0000 %m 12165384 n 0000 | cucumbers; muskmelons -12164363 20 n 04 sweet_melon 0 muskmelon 0 sweet_melon_vine 0 Cucumis_melo 0 006 @ 12163824 n 0000 #m 12164215 n 0000 %p 07755707 n 0000 ~ 12164656 n 0000 ~ 12164881 n 0000 ~ 12165170 n 0000 | any of several varieties of vine whose fruit has a netted rind and edible flesh and a musky smell -12164656 20 n 05 cantaloupe 0 cantaloup 0 cantaloupe_vine 0 cantaloup_vine 0 Cucumis_melo_cantalupensis 0 002 @ 12164363 n 0000 %p 07755929 n 0000 | a variety of muskmelon vine having fruit with a tan rind and orange flesh -12164881 20 n 05 winter_melon 0 Persian_melon 0 honeydew_melon 0 winter_melon_vine 0 Cucumis_melo_inodorus 0 002 @ 12164363 n 0000 %p 07756096 n 0000 | any of a variety of muskmelon vines having fruit with a smooth white rind and white or greenish flesh that does not have a musky smell -12165170 20 n 04 net_melon 0 netted_melon 0 nutmeg_melon 0 Cucumis_melo_reticulatus 0 002 @ 12164363 n 0000 %p 07756641 n 0000 | a muskmelon vine with fruit that has a thin reticulated rind and sweet green flesh -12165384 20 n 03 cucumber 0 cucumber_vine 0 Cucumis_sativus 0 003 @ 12163824 n 0000 #m 12164215 n 0000 %p 07718472 n 0000 | a melon vine of the genus Cucumis; cultivated from earliest times for its cylindrical green fruit -12165608 20 n 02 Ecballium 0 genus_Ecballium 0 003 @ 11567411 n 0000 #m 12157276 n 0000 %m 12165758 n 0000 | exploding cucumber; squirting cucumber -12165758 20 n 04 squirting_cucumber 0 exploding_cucumber 0 touch-me-not 2 Ecballium_elaterium 0 002 @ 12157769 n 0000 #m 12165608 n 0000 | Mediterranean vine having oblong fruit that when ripe expels its seeds and juice violently when touched -12166003 20 n 02 Lagenaria 0 genus_Lagenaria 0 003 @ 11567411 n 0000 #m 12157276 n 0000 %m 12166128 n 0000 | bottle gourds -12166128 20 n 03 bottle_gourd 0 calabash 2 Lagenaria_siceraria 0 002 @ 12157769 n 0000 #m 12166003 n 0000 | Old World climbing plant with hard-shelled bottle-shaped gourds as fruits -12166312 20 n 01 genus_Luffa 0 003 @ 11567411 n 0000 #m 12157276 n 0000 %m 12166424 n 0000 | dishcloth gourds -12166424 20 n 05 luffa 0 dishcloth_gourd 0 sponge_gourd 0 rag_gourd 0 strainer_vine 0 005 @ 13100677 n 0000 #m 12166312 n 0000 ~ 12166793 n 0000 ~ 12166929 n 0000 %p 12167075 n 0000 | any of several tropical annual climbers having large yellow flowers and edible young fruits; grown commercially for the mature fruit's dried fibrous interior that is used as a sponge -12166793 20 n 03 loofah 0 vegetable_sponge 0 Luffa_cylindrica 0 001 @ 12166424 n 0000 | the loofah climber that has cylindrical fruit -12166929 20 n 03 angled_loofah 0 sing-kwa 0 Luffa_acutangula 0 001 @ 12166424 n 0000 | loofah of Pakistan; widely cultivated throughout tropics -12167075 20 n 04 loofa 0 loofah 1 luffa 1 loufah_sponge 0 002 @ 14866889 n 0000 #p 12166424 n 0000 | the dried fibrous part of the fruit of a plant of the genus Luffa; used as a washing sponge or strainer -12167282 20 n 02 Momordica 0 genus_Momordica 0 004 @ 11567411 n 0000 #m 12157276 n 0000 %m 12167436 n 0000 %m 12167602 n 0000 | Old World tropical vine -12167436 20 n 02 balsam_apple 1 Momordica_balsamina 0 002 @ 12157769 n 0000 #m 12167282 n 0000 | a tropical Old World flowering vine with red or orange warty fruit -12167602 20 n 02 balsam_pear 0 Momordica_charantia 0 002 @ 12157769 n 0000 #m 12167282 n 0000 | tropical Old World vine with yellow-orange fruit -12167749 20 n 03 Goodeniaceae 0 family_Goodeniaceae 0 Goodenia_family 0 003 @ 11562747 n 0000 #m 11911274 n 0000 %m 12167955 n 0000 | a family of sappy plants that grow in Australasia and southeast China -12167955 20 n 01 Goodenia 0 002 @ 11567411 n 0000 #m 12167749 n 0000 | a genus of shrubs and herbs that grow in Australia and New Guinea and Malaysia and southeast Asia -12168126 20 n 03 Lobeliaceae 0 family_Lobeliaceae 0 lobelia_family 0 003 @ 11562747 n 0000 #m 11911274 n 0000 + 02756234 a 0101 | not recognized in all classification systems; in some classifications lobeliaceous plants are included in family Campanulaceae -12168385 20 n 01 genus_Lobelia 0 003 @ 11567411 n 0000 #m 12036533 n 0000 %m 12168565 n 0000 | in some classifications considered the type genus of a separate family Lobeliaceae -12168565 20 n 01 lobelia 0 006 @ 12205694 n 0000 #m 12168385 n 0000 ~ 12168750 n 0000 ~ 12168898 n 0000 ~ 12169099 n 0000 ~ 12169320 n 0000 | any plant or flower of the genus Lobelia -12168750 20 n 03 cardinal_flower 0 Indian_pink 2 Lobelia_cardinalis 0 001 @ 12168565 n 0000 | North American lobelia having brilliant red flowers -12168898 20 n 03 Indian_tobacco 2 bladderpod 4 Lobelia_inflata 0 001 @ 12168565 n 0000 | North American wild lobelia having small blue flowers and inflated capsules formerly used as an antispasmodic -12169099 20 n 02 water_lobelia 0 Lobelia_dortmanna 0 001 @ 12168565 n 0000 | erect perennial aquatic herb of Europe and North America having submerged spongy leaves and pendulous racemes of blue flowers above the water -12169320 20 n 03 great_lobelia 0 blue_cardinal_flower 0 Lobelia_siphilitica 0 001 @ 12168565 n 0000 | tall erect and very leafy perennial herb of eastern North America having dense spikes of blue flowers -12169526 20 n 02 Malvales 0 order_Malvales 0 007 @ 11534677 n 0000 #m 12358485 n 0000 %m 12169776 n 0000 %m 12188985 n 0000 %m 12192373 n 0000 %m 12194776 n 0000 %m 12202352 n 0000 | Malvaceae; Bombacaceae; Elaeocarpaceae; Sterculiaceae; Tiliaceae -12169776 20 n 03 Malvaceae 0 family_Malvaceae 0 mallow_family 0 027 @ 11565385 n 0000 #m 12169526 n 0000 %m 12170415 n 0000 %m 12170585 n 0000 %m 12171750 n 0000 %m 12172715 n 0000 %m 12173407 n 0000 %m 12174124 n 0000 %m 12174742 n 0000 %m 12175797 n 0000 %m 12177592 n 0000 %m 12180714 n 0000 %m 12181147 n 0000 %m 12181851 n 0000 %m 12182414 n 0000 %m 12182858 n 0000 %m 12183318 n 0000 %m 12183636 n 0000 %m 12183916 n 0000 %m 12184337 n 0000 %m 12184724 n 0000 %m 12185078 n 0000 %m 12185687 n 0000 %m 12186116 n 0000 %m 12187030 n 0000 %m 12187450 n 0000 %m 12188120 n 0000 | herbs and shrubs and some trees: mallows; cotton; okra -12170415 20 n 02 Malva 0 genus_Malva 0 005 @ 11575425 n 0000 #m 12169776 n 0000 %m 12171098 n 0000 %m 12171316 n 0000 %m 12171503 n 0000 | herbs and subshrubs: mallows -12170585 20 n 01 mallow 0 024 @ 13112664 n 0000 #m 12169776 n 0000 ~ 12171098 n 0000 ~ 12171316 n 0000 ~ 12171503 n 0000 ~ 12172481 n 0000 ~ 12173069 n 0000 ~ 12173664 n 0000 ~ 12174311 n 0000 ~ 12174926 n 0000 ~ 12177844 n 0000 ~ 12181352 n 0000 ~ 12181612 n 0000 ~ 12182049 n 0000 ~ 12183026 n 0000 ~ 12183452 n 0000 ~ 12183816 n 0000 ~ 12184095 n 0000 ~ 12184468 n 0000 ~ 12186352 n 0000 ~ 12186554 n 0000 ~ 12186839 n 0000 ~ 12187247 n 0000 ~ 12187663 n 0000 | any of various plants of the family Malvaceae -12171098 20 n 03 musk_mallow 1 mus_rose 0 Malva_moschata 0 002 @ 12170585 n 0000 #m 12170415 n 0000 | erect Old World perennial with faintly musk-scented foliage and white or pink flowers; adventive in United States -12171316 20 n 02 common_mallow 0 Malva_neglecta 0 002 @ 12170585 n 0000 #m 12170415 n 0000 | annual Old World plant with clusters of pink or white flowers; naturalized in United States -12171503 20 n 05 tall_mallow 0 high_mallow 0 cheese 0 cheeseflower 0 Malva_sylvestris 0 002 @ 12170585 n 0000 #m 12170415 n 0000 | erect or decumbent Old World perennial with axillary clusters of rosy-purple flowers; introduced in United States -12171750 20 n 02 Abelmoschus 0 genus_Abelmoschus 0 004 @ 11575425 n 0000 #m 12169776 n 0000 %m 12171966 n 0000 %m 12172481 n 0000 | genus of tropical coarse herbs having large lobed leaves and often yellow flowers -12171966 20 n 06 okra 0 gumbo 0 okra_plant 0 lady's-finger 0 Abelmoschus_esculentus 0 Hibiscus_esculentus 0 004 @ 12205694 n 0000 #m 12171750 n 0000 %p 07733394 n 0000 %p 12172364 n 0000 | tall coarse annual of Old World tropics widely cultivated in southern United States and West Indies for its long mucilaginous green pods used as basis for soups and stews; sometimes placed in genus Hibiscus -12172364 20 n 01 okra 2 002 @ 13139055 n 0000 #p 12171966 n 0000 | long green edible beaked pods of the okra plant -12172481 20 n 04 abelmosk 0 musk_mallow 2 Abelmoschus_moschatus 0 Hibiscus_moschatus 0 002 @ 12170585 n 0000 #m 12171750 n 0000 | bushy herb of tropical Asia grown for its yellow or pink to scarlet blooms that resemble the hibiscus -12172715 20 n 02 Abutilon 0 genus_Abutilon 0 004 @ 11575425 n 0000 #m 12169776 n 0000 %m 12172906 n 0000 %m 12173069 n 0000 | herbs or shrubs or small trees: flowering maple; Indian mallow -12172906 20 n 01 flowering_maple 0 002 @ 11536087 n 0000 #m 12172715 n 0000 | an ornamental plant of the genus Abutilon having leaves that resemble maple leaves -12173069 20 n 07 velvetleaf 1 velvet-leaf 1 velvetweed 0 Indian_mallow 1 butter-print 0 China_jute 0 Abutilon_theophrasti 0 002 @ 12170585 n 0000 #m 12172715 n 0000 | tall annual herb or subshrub of tropical Asia having velvety leaves and yellow flowers and yielding a strong fiber; naturalized in southeastern Europe and United States -12173407 20 n 02 Alcea 0 genus_Alcea 0 004 @ 11575425 n 0000 #m 12169776 n 0000 %m 12173664 n 0000 %m 12173912 n 0000 | genus of erect herbs of the Middle East having showy flowers: hollyhocks; in some classification systems synonymous with genus Althaea -12173664 20 n 01 hollyhock 1 003 @ 12170585 n 0000 #m 12173407 n 0000 ~ 12173912 n 0000 | any of various tall plants of the genus Alcea; native to the Middle East but widely naturalized and cultivated for its very large variously colored flowers -12173912 20 n 03 rose_mallow 2 Alcea_rosea 0 Althea_rosea 0 002 @ 12173664 n 0000 #m 12173407 n 0000 | plant with terminal racemes of showy white to pink or purple flowers; the English cottage garden hollyhock -12174124 20 n 01 genus_Althaea 0 004 @ 11575425 n 0000 #m 12169776 n 0000 %m 12174311 n 0000 %m 12174521 n 0000 | hollyhocks; in some classification systems synonymous with genus Alcea -12174311 20 n 03 althea 0 althaea 0 hollyhock 2 003 @ 12170585 n 0000 #m 12174124 n 0000 ~ 12174521 n 0000 | any of various plants of the genus Althaea; similar to but having smaller flowers than genus Alcea -12174521 20 n 03 marsh_mallow 0 white_mallow 0 Althea_officinalis 0 002 @ 12174311 n 0000 #m 12174124 n 0000 | European perennial plant naturalized in United States having triangular ovate leaves and lilac-pink flowers -12174742 20 n 02 Callirhoe 0 genus_Callirhoe 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12174926 n 0000 | small genus of North American herbs having usually red or purple flowers -12174926 20 n 01 poppy_mallow 0 005 @ 12170585 n 0000 #m 12174742 n 0000 ~ 12175181 n 0000 ~ 12175370 n 0000 ~ 12175598 n 0000 | a plant of the genus Callirhoe having palmately cleft leaves and white to red or purple flowers borne throughout the summer -12175181 20 n 02 fringed_poppy_mallow 0 Callirhoe_digitata 0 001 @ 12174926 n 0000 | perennial poppy mallow of United States southern plains states having rose-red or rose-purple flowers -12175370 20 n 02 purple_poppy_mallow 0 Callirhoe_involucrata 0 001 @ 12174926 n 0000 | hairy perennial of central United States having round deeply lobed leaves and loose panicles of large crimson-purple or cherry-red flowers -12175598 20 n 02 clustered_poppy_mallow 0 Callirhoe_triangulata 0 001 @ 12174926 n 0000 | densely hairy perennial having mostly triangular basal leaves and rose-purple flowers in panicled clusters -12175797 20 n 02 Gossypium 0 genus_Gossypium 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12175949 n 0000 | herbs and shrubs and small trees: cotton -12175949 20 n 02 cotton 0 cotton_plant 0 010 @ 13112664 n 0000 #m 12175797 n 0000 %p 11689815 n 0000 ~ 12176278 n 0000 ~ 12176453 n 0000 ~ 12176709 n 0000 ~ 12176953 n 0000 ~ 12177129 n 0000 ~ 12177249 n 0000 ~ 12177455 n 0000 | erect bushy mallow plant or small tree bearing bolls containing seeds with many long hairy fibers -12176278 20 n 02 tree_cotton 1 Gossypium_arboreum 0 001 @ 12175949 n 0000 | East Indian shrub cultivated especially for ornament for its pale yellow to deep purple blossoms -12176453 20 n 03 sea_island_cotton 0 tree_cotton 2 Gossypium_barbadense 0 001 @ 12175949 n 0000 | small bushy tree grown on islands of the Caribbean and off the Atlantic coast of the southern United States; yields cotton with unusually long silky fibers -12176709 20 n 02 Levant_cotton 0 Gossypium_herbaceum 0 001 @ 12175949 n 0000 | Old World annual having heart-shaped leaves and large seeds with short greyish lint removed with difficulty; considered an ancestor of modern short-staple cottons -12176953 20 n 02 upland_cotton 0 Gossypium_hirsutum 0 001 @ 12175949 n 0000 | native tropical American plant now cultivated in the United States yielding short-staple cotton -12177129 20 n 02 Peruvian_cotton 0 Gossypium_peruvianum 0 001 @ 12175949 n 0000 | cotton with long rough hairy fibers -12177249 20 n 01 Egyptian_cotton 0 001 @ 12175949 n 0000 | fine somewhat brownish long-staple cotton grown in Egypt; believed to be derived from sea island cotton or by hybridization with Peruvian cotton -12177455 20 n 03 wild_cotton 0 Arizona_wild_cotton 0 Gossypium_thurberi 0 001 @ 12175949 n 0000 | shrub of southern Arizona and Mexico -12177592 20 n 01 genus_Hibiscus 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12177844 n 0000 | large genus of tropical and subtropical herbs and shrubs and trees often grown as ornamentals for their profusion of large flowers in a variety of colors -12177844 20 n 01 hibiscus 0 012 @ 12170585 n 0000 #m 12177592 n 0000 ~ 12178129 n 0000 ~ 12178494 n 0000 ~ 12178780 n 0000 ~ 12178896 n 0000 ~ 12179122 n 0000 ~ 12179391 n 0000 ~ 12179632 n 0000 ~ 12179907 n 0000 ~ 12180168 n 0000 ~ 12180456 n 0000 | any plant of the genus Hibiscus -12178129 20 n 08 kenaf 0 kanaf 0 deccan_hemp 0 bimli 0 bimli_hemp 0 Indian_hemp 3 Bombay_hemp 0 Hibiscus_cannabinus 0 002 @ 12177844 n 0000 %p 12178358 n 0000 | valuable fiber plant of East Indies now widespread in cultivation -12178358 20 n 02 kenaf 2 deccan_hemp 2 002 @ 14906500 n 0000 #p 12178129 n 0000 | fiber from an East Indian plant Hibiscus cannabinus -12178494 20 n 06 Cuban_bast 0 blue_mahoe 0 mahoe 2 majagua 2 mahagua 2 Hibiscus_elatus 0 001 @ 12177844 n 0000 | erect forest tree of Cuba and Jamaica having variably hairy leaves and orange-yellow or orange-red flowers; yields a moderately dense timber for cabinetwork and gunstocks -12178780 20 n 02 sorrel_tree 1 Hibiscus_heterophyllus 0 001 @ 12177844 n 0000 | Australian tree with acid foliage -12178896 20 n 05 rose_mallow 1 swamp_mallow 0 common_rose_mallow 0 swamp_rose_mallow 0 Hibiscus_moscheutos 0 001 @ 12177844 n 0000 | showy shrub of salt marshes of the eastern United States having large rose-colored flowers -12179122 20 n 04 cotton_rose 2 Confederate_rose 0 Confederate_rose_mallow 0 Hibiscus_mutabilis 0 001 @ 12177844 n 0000 | Chinese shrub or small tree having white or pink flowers becoming deep red at night; widely cultivated; naturalized in southeastern United States -12179391 20 n 06 China_rose 1 Chinese_hibiscus 0 Rose_of_China 0 shoeblack_plant 0 shoe_black 0 Hibiscus_rosa-sinensis 0 001 @ 12177844 n 0000 | large showy Asiatic shrub or small tree having large single or double red to deep-red flowers -12179632 20 n 06 roselle 0 rozelle 0 sorrel 3 red_sorrel 0 Jamaica_sorrel 0 Hibiscus_sabdariffa 0 001 @ 12177844 n 0000 | East Indian sparsely prickly annual herb or perennial subshrub widely cultivated for its fleshy calyxes used in tarts and jelly and for its bast fiber -12179907 20 n 02 rose_of_Sharon 0 Hibiscus_syriacus 0 001 @ 12177844 n 0000 | Asiatic shrub or small shrubby tree having showy bell-shaped rose or purple or white flowers and usually three-lobed leaves; widely cultivated in temperate North America and Europe -12180168 20 n 06 mahoe 1 majagua 1 mahagua 1 balibago 0 purau 0 Hibiscus_tiliaceus 0 001 @ 12177844 n 0000 | shrubby tree widely distributed along tropical shores; yields a light tough wood used for canoe outriggers and a fiber used for cordage and caulk; often cultivated for ornament -12180456 20 n 05 flower-of-an-hour 0 flowers-of-an-hour 0 bladder_ketmia 0 black-eyed_Susan 4 Hibiscus_trionum 0 001 @ 12177844 n 0000 | annual weedy herb with ephemeral yellow purple-eyed flowers; Old World tropics; naturalized as a weed in North America -12180714 20 n 02 Hoheria 0 genus_Hoheria 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12180885 n 0000 | small genus of shrubs and small trees of New Zealand: lacebarks -12180885 20 n 04 lacebark 0 ribbonwood 1 houhere 0 Hoheria_populnea 0 002 @ 13104059 n 0000 #m 12180714 n 0000 | small tree or shrub of New Zealand having a profusion of axillary clusters of honey-scented paper-white flowers and whose bark is used for cordage -12181147 20 n 02 Iliamna 0 genus_Iliamna 0 004 @ 11575425 n 0000 #m 12169776 n 0000 %m 12181352 n 0000 %m 12181612 n 0000 | small genus of perennial herbs or subshrubs; some often placed in other genera -12181352 20 n 03 wild_hollyhock 1 Iliamna_remota 0 Sphaeralcea_remota 0 002 @ 12170585 n 0000 #m 12181147 n 0000 | a rare mallow found only in Illinois resembling the common hollyhock and having pale rose-mauve flowers; sometimes placed in genus Sphaeralcea -12181612 20 n 03 mountain_hollyhock 0 Iliamna_ruvularis 0 Iliamna_acerifolia 0 002 @ 12170585 n 0000 #m 12181147 n 0000 | perennial of northwestern United States and western Canada resembling a hollyhock and having white or pink flowers -12181851 20 n 02 Kosteletzya 0 genus_Kosteletzya 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12182049 n 0000 | small genus of herbs of southeastern United States and tropical America and Africa -12182049 20 n 01 seashore_mallow 0 003 @ 12170585 n 0000 #m 12181851 n 0000 ~ 12182276 n 0000 | any of various plants of the genus Kosteletzya predominantly of coastal habitats; grown for their flowers that resemble hibiscus -12182276 20 n 02 salt_marsh_mallow 0 Kosteletzya_virginica 0 001 @ 12182049 n 0000 | subshrub of southeastern United States to New York -12182414 20 n 02 Lavatera 0 genus_Lavatera 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12182615 n 0000 | widespread genus of herbs or softwood arborescent shrubs cultivated for their showy flowers -12182615 20 n 04 tree_mallow 0 velvetleaf 2 velvet-leaf 2 Lavatera_arborea 0 002 @ 13112664 n 0000 #m 12182414 n 0000 | arborescent perennial shrub having palmately lobed furry leaves and showy red-purple flowers; southwestern United States -12182858 20 n 02 Malacothamnus 0 genus_Malacothamnus 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12183026 n 0000 | genus of shrubs or small trees: chaparral mallow -12183026 20 n 03 chaparral_mallow 0 Malacothamnus_fasciculatus 0 Sphaeralcea_fasciculata 0 002 @ 12170585 n 0000 #m 12182858 n 0000 | shrub of coastal ranges of California and Baja California having hairy branches and spikes of numerous mauve flowers; sometimes placed in genus Sphaeralcea -12183318 20 n 01 genus_Malope 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12183452 n 0000 | small genus of chiefly European herbs -12183452 20 n 02 malope 0 Malope_trifida 0 002 @ 12170585 n 0000 #m 12183318 n 0000 | western Mediterranean annual having deep purple-red flowers subtended by 3 large cordate bracts -12183636 20 n 02 Malvastrum 0 genus_Malvastrum 0 002 @ 11575425 n 0000 #m 12169776 n 0000 | genus of mallows characterized by red and yellow flowers often placed in other genera -12183816 20 n 01 false_mallow 1 001 @ 12170585 n 0000 | an American plant of the genus Malvastrum -12183916 20 n 02 Malvaviscus 0 genus_Malvaviscus 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12184095 n 0000 | small genus of shrubs of Central and South America: wax mallows -12184095 20 n 03 waxmallow 0 wax_mallow 0 sleeping_hibiscus 0 002 @ 12170585 n 0000 #m 12183916 n 0000 | any of various plants of the genus Malvaviscus having brilliant bell-shaped drooping flowers like incompletely opened hibiscus flowers -12184337 20 n 02 Napaea 0 genus_Napaea 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12184468 n 0000 | one species: glade mallow -12184468 20 n 02 glade_mallow 0 Napaea_dioica 0 002 @ 12170585 n 0000 #m 12184337 n 0000 | tall coarse American herb having palmate leaves and numerous small white dioecious flowers; found wild in most alluvial soils of eastern and central United States -12184724 20 n 01 genus_Pavonia 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12184912 n 0000 | genus of tropical hairy shrubs or herbs of tropics and subtropics especially South America -12184912 20 n 01 pavonia 0 002 @ 13112664 n 0000 #m 12184724 n 0000 | any of various evergreen plants of the genus Pavonia having white or yellow or purple flowers -12185078 20 n 02 Plagianthus 0 genus_Plagianthus 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12185254 n 0000 | small genus of shrubs and trees of Australia and New Zealand -12185254 20 n 04 ribbon_tree 0 ribbonwood 2 Plagianthus_regius 0 Plagianthus_betulinus 0 003 @ 13104059 n 0000 #m 12185078 n 0000 %s 12185526 n 0000 | deciduous New Zealand tree whose inner bark yields a strong fiber that resembles flax and is called New Zealand cotton -12185526 20 n 01 New_Zealand_cotton 0 002 @ 14959234 n 0000 #s 12185254 n 0000 | a fiber from the bast of New Zealand ribbon trees that resembles cotton fiber -12185687 20 n 02 Radyera 0 genus_Radyera 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12185859 n 0000 | very small genus of shrubs of southern hemisphere: bush hibiscus -12185859 20 n 03 bush_hibiscus 0 Radyera_farragei 0 Hibiscus_farragei 0 002 @ 13112664 n 0000 #m 12185687 n 0000 | southern and western Australian shrub with unlobed or shallowly lobed toothed leaves and purple flowers; sometimes placed in genus Hibiscus -12186116 20 n 02 Sida 0 genus_Sida 0 005 @ 11575425 n 0000 #m 12169776 n 0000 %m 12186352 n 0000 %m 12186554 n 0000 %m 12186839 n 0000 | large genus of tropical subshrubs or herbs some of which yield fibers of mucilaginous substances -12186352 20 n 02 Virginia_mallow 0 Sida_hermaphrodita 0 002 @ 12170585 n 0000 #m 12186116 n 0000 | tall handsome perennial herb of southeastern United States having maplelike leaves and white flowers -12186554 20 n 03 Queensland_hemp 0 jellyleaf 0 Sida_rhombifolia 0 002 @ 12170585 n 0000 #m 12186116 n 0000 | herb widely distributed in tropics and subtropics used for forage and medicinally as a demulcent and having a fine soft bast stronger than jute; sometimes an aggressive weed -12186839 20 n 02 Indian_mallow 2 Sida_spinosa 0 002 @ 12170585 n 0000 #m 12186116 n 0000 | tropical American weed having pale yellow or orange flowers naturalized in southern United States -12187030 20 n 02 Sidalcea 0 genus_Sidalcea 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12187247 n 0000 | genus of showy plants of western North America having palmate leaves and variously colored racemose flowers -12187247 20 n 03 checkerbloom 0 wild_hollyhock 2 Sidalcea_malviflora 0 002 @ 12170585 n 0000 #m 12187030 n 0000 | perennial purple-flowered wild mallow of western North America that is also cultivated -12187450 20 n 02 Sphaeralcea 0 genus_Sphaeralcea 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12187663 n 0000 | large genus of chiefly tropical herbs with showy flowers and mostly globose fruits: globe mallows -12187663 20 n 02 globe_mallow 0 false_mallow 2 003 @ 12170585 n 0000 #m 12187450 n 0000 ~ 12187891 n 0000 | genus of coarse herbs and subshrubs of arid North and South America having pink or scarlet flowers and globose fruits -12187891 20 n 04 prairie_mallow 0 red_false_mallow 0 Sphaeralcea_coccinea 0 Malvastrum_coccineum 0 001 @ 12187663 n 0000 | false mallow of western United States having racemose red flowers; sometimes placed in genus Malvastrum -12188120 20 n 02 Thespesia 0 genus_Thespesia 0 003 @ 11575425 n 0000 #m 12169776 n 0000 %m 12188635 n 0000 | a small genus of tropical trees including the portia tree -12188289 20 n 01 tulipwood_tree 0 004 @ 13104059 n 0000 %s 12188484 n 0000 ~ 12188635 n 0000 ~ 12743823 n 0000 | any of various trees yielding variously colored woods similar to true tulipwood -12188484 20 n 01 tulipwood 2 002 @ 15098161 n 0000 #s 12188289 n 0000 | the variegated or showily striped ornamental wood of various tulipwood trees -12188635 20 n 04 portia_tree 0 bendy_tree 0 seaside_mahoe 0 Thespesia_populnea 0 002 @ 12188289 n 0000 #m 12188120 n 0000 | pantropical tree of usually seacoasts sometimes cultivated as an ornamental for its rounded heart-shaped leaves and showy yellow and purple flowers; yields valuable pink to dark red close-grained wood and oil from its seeds -12188985 20 n 02 Bombacaceae 0 family_Bombacaceae 0 009 @ 11565385 n 0000 #m 12169526 n 0000 %m 12189293 n 0000 %m 12189620 n 0000 %m 12190241 n 0000 %m 12190712 n 0000 %m 12191075 n 0000 %m 12191461 n 0000 %m 12191965 n 0000 | tropical trees with large dry or fleshy fruit containing usually woolly seeds -12189293 20 n 02 Bombax 0 genus_Bombax 0 003 @ 11575425 n 0000 #m 12188985 n 0000 %m 12189429 n 0000 | trees of chiefly South America -12189429 20 n 04 red_silk-cotton_tree 0 simal 0 Bombax_ceiba 0 Bombax_malabarica 0 002 @ 13104059 n 0000 #m 12189293 n 0000 | East Indian silk cotton tree yielding fibers inferior to kapok -12189620 20 n 02 Adansonia 0 genus_Adansonia 0 004 @ 11575425 n 0000 #m 12188985 n 0000 %m 12189779 n 0000 %m 12189987 n 0000 | baobab; cream-of-tartar tree -12189779 20 n 03 cream-of-tartar_tree 0 sour_gourd 0 Adansonia_gregorii 0 003 @ 13109733 n 0000 #m 12189620 n 0000 %p 07770289 n 0000 | Australian tree having an agreeably acid fruit that resembles a gourd -12189987 20 n 03 baobab 0 monkey-bread_tree 0 Adansonia_digitata 0 003 @ 13109733 n 0000 #m 12189620 n 0000 %p 07770439 n 0000 | African tree having an exceedingly thick trunk and fruit that resembles a gourd and has an edible pulp called monkey bread -12190241 20 n 02 Ceiba 0 genus_Ceiba 0 002 @ 11575425 n 0000 #m 12188985 n 0000 | tropical American trees with palmately compound leaves and showy bell-shaped flowers -12190410 20 n 07 kapok 0 ceiba_tree 0 silk-cotton_tree 0 white_silk-cotton_tree 0 Bombay_ceiba 0 God_tree 0 Ceiba_pentandra 0 001 @ 13109733 n 0000 | massive tropical tree with deep ridges on its massive trunk and bearing large pods of seeds covered with silky floss; source of the silky kapok fiber -12190712 20 n 02 Durio 0 genus_Durio 0 003 @ 11575425 n 0000 #m 12188985 n 0000 %m 12190869 n 0000 | a genus of tall Asian trees of the family Bombacaceae -12190869 20 n 04 durian 0 durion 0 durian_tree 0 Durio_zibethinus 0 003 @ 12651821 n 0000 #m 12190712 n 0000 %p 07762913 n 0000 | tree of southeastern Asia having edible oval fruit with a hard spiny rind -12191075 20 n 01 genus_Montezuma 0 003 @ 11575425 n 0000 #m 12188985 n 0000 %m 12191240 n 0000 | one species: medium-sized evergreen tree of Puerto Rico or Mexico -12191240 20 n 01 Montezuma 0 002 @ 13104059 n 0000 #m 12191075 n 0000 | evergreen tree with large leathery leaves and large pink to orange flowers; considered a link plant between families Bombacaceae and Sterculiaceae -12191461 20 n 02 Ochroma 0 genus_Ochroma 0 003 @ 11575425 n 0000 #m 12188985 n 0000 %m 12191587 n 0000 | one species: balsa -12191587 20 n 02 balsa 0 Ochroma_lagopus 0 003 @ 13109733 n 0000 #m 12191461 n 0000 %s 12191813 n 0000 | forest tree of lowland Central America having a strong very light wood; used for making floats and rafts and in crafts -12191813 20 n 02 balsa 2 balsa_wood 0 002 @ 15098161 n 0000 #s 12191587 n 0000 | strong lightweight wood of the balsa tree used especially for floats -12191965 20 n 02 Pseudobombax 0 genus_Pseudobombax 0 003 @ 11575425 n 0000 #m 12188985 n 0000 %m 12192132 n 0000 | tropical American deciduous shrubs or small trees -12192132 20 n 02 shaving-brush_tree 0 Pseudobombax_ellipticum 0 002 @ 13104059 n 0000 #m 12191965 n 0000 | tree of Mexico to Guatemala having densely hairy flowers with long narrow petals clustered at ends of branches before leaves appear -12192373 20 n 03 Elaeocarpaceae 0 family_Elaeocarpaceae 0 elaeocarpus_family 0 006 @ 11565385 n 0000 #m 12169526 n 0000 %m 12192722 n 0000 %m 12193458 n 0000 %m 12193964 n 0000 %m 12194466 n 0000 | genus of trees and shrubs widely distributed in warm regions some yielding useful timber; in some classifications included in the family Santalaceae -12192722 20 n 02 Elaeocarpus 0 genus_Elaeocarpus 0 003 @ 11575425 n 0000 #m 12192373 n 0000 %m 12192877 n 0000 | type genus of the family Elaeocarpaceae -12192877 20 n 06 quandong 1 quandong_tree 1 Brisbane_quandong 0 silver_quandong_tree 0 blue_fig 0 Elaeocarpus_grandis 0 004 @ 13104059 n 0000 #m 12192722 n 0000 %p 12193205 n 0000 %p 12193334 n 0000 | Australian tree having hard white timber and glossy green leaves with white flowers followed by one-seeded glossy blue fruit -12193205 20 n 01 silver_quandong 0 002 @ 15098161 n 0000 #p 12192877 n 0000 | pale easily worked timber from the quandong tree -12193334 20 n 02 quandong 2 blue_fig 2 002 @ 13134947 n 0000 #p 12192877 n 0000 | the fruit of the Brisbane quandong tree -12193458 20 n 02 Aristotelia 0 genus_Aristotelia 0 003 @ 11575425 n 0000 #m 12192373 n 0000 %m 12193665 n 0000 | small genus of shrubs or small trees of Australia and New Zealand and western South America -12193665 20 n 05 makomako 0 New_Zealand_wine_berry 0 wineberry 2 Aristotelia_serrata 0 Aristotelia_racemosa 0 002 @ 13112664 n 0000 #m 12193458 n 0000 | graceful deciduous shrub or small tree having attractive foliage and small red berries that turn black at maturity and are used for making wine -12193964 20 n 02 Muntingia 0 genus_Muntingia 0 003 @ 11575425 n 0000 #m 12192373 n 0000 %m 12194147 n 0000 | one species: Jamaican cherry; sometimes placed in family Flacourtiaceae -12194147 20 n 06 Jamaican_cherry 0 calabur_tree 0 calabura 0 silk_wood 0 silkwood 0 Muntingia_calabura 0 002 @ 13104059 n 0000 #m 12193964 n 0000 | a fast-growing tropical American evergreen having white flowers and white fleshy edible fruit; bark yields a silky fiber used in cordage and wood is valuable for staves -12194466 20 n 02 Sloanea 0 genus_Sloanea 0 003 @ 11575425 n 0000 #m 12192373 n 0000 %m 12194613 n 0000 | genus of tropical hardwood timber trees -12194613 20 n 04 breakax 0 breakaxe 0 break-axe 0 Sloanea_jamaicensis 0 002 @ 13104059 n 0000 #m 12194466 n 0000 | West Indian timber tree having very hard wood -12194776 20 n 03 Sterculiaceae 0 family_Sterculiaceae 0 sterculia_family 0 015 @ 11565385 n 0000 #m 12169526 n 0000 %m 12195186 n 0000 %m 12195965 n 0000 %m 12197211 n 0000 %m 12197765 n 0000 %m 12198140 n 0000 %m 12198628 n 0000 %m 12199030 n 0000 %m 12199564 n 0000 %m 12200315 n 0000 %m 12200747 n 0000 %m 12201166 n 0000 %m 12201456 n 0000 %m 12201761 n 0000 | a large family of plants of order Malvales -12195186 20 n 01 genus_Sterculia 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12195391 n 0000 | type genus of the Sterculiaceae: deciduous or evergreen trees of Old and New World tropics and subtropics -12195391 20 n 01 sterculia 0 004 @ 13109733 n 0000 #m 12195186 n 0000 ~ 12195533 n 0000 ~ 12195734 n 0000 | any tree of the genus Sterculia -12195533 20 n 02 Panama_tree 0 Sterculia_apetala 0 001 @ 12195391 n 0000 | large deciduous tree native to Panama and from which the country takes its name; having densely leafy crown and naked trunk -12195734 20 n 03 kalumpang 0 Java_olives 0 Sterculia_foetida 0 001 @ 12195391 n 0000 | large tree of Old World tropics having foul-smelling orange-red blossoms followed by red pods enclosing oil-rich seeds sometimes used as food -12195965 20 n 02 Brachychiton 0 genus_Brachychiton 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12196129 n 0000 | Australian trees (usually with swollen trunks) -12196129 20 n 02 bottle-tree 0 bottle_tree 0 006 @ 13104059 n 0000 #m 12195965 n 0000 ~ 12196336 n 0000 ~ 12196527 n 0000 ~ 12196694 n 0000 ~ 12196954 n 0000 | an Australian tree of the genus Brachychiton -12196336 20 n 04 flame_tree 1 flame_durrajong 0 Brachychiton_acerifolius 0 Sterculia_acerifolia 0 001 @ 12196129 n 0000 | south Australian tree having panicles of brilliant scarlet flowers -12196527 20 n 03 flame_tree 2 broad-leaved_bottletree 0 Brachychiton_australis 0 001 @ 12196129 n 0000 | north Australian tree having white flowers and broad leaves -12196694 20 n 03 kurrajong 0 currajong 0 Brachychiton_populneus 0 001 @ 12196129 n 0000 | widely distributed tree of eastern Australia yielding a tough durable fiber and soft light attractively grained wood; foliage is an important emergency food for cattle -12196954 20 n 04 Queensland_bottletree 0 narrow-leaved_bottletree 0 Brachychiton_rupestris 0 Sterculia_rupestris 0 001 @ 12196129 n 0000 | large tree of Queensland having cream-colored flowers blotched with red inside; sometimes placed in genus Sterculia -12197211 20 n 02 Cola 0 genus_Cola 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12197359 n 0000 | large genus of African trees bearing kola nuts -12197359 20 n 05 kola 0 kola_nut 0 kola_nut_tree 0 goora_nut 0 Cola_acuminata 0 004 @ 13110915 n 0000 #m 12197211 n 0000 %s 07774479 n 0000 %p 12197601 n 0000 | tree bearing large brown nuts containing e.g. caffeine; source of cola extract -12197601 20 n 02 kola_nut 2 cola_nut 0 003 @ 13136556 n 0000 #p 12197359 n 0000 #s 07927931 n 0000 | bitter brown seed containing caffein; source of cola extract -12197765 20 n 01 genus_Dombeya 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12197901 n 0000 | genus of African shrubs or small trees -12197901 20 n 01 dombeya 0 002 @ 13112664 n 0000 #m 12197765 n 0000 | any of various shrubs or small trees of the genus Dombeya grown for their rounded clusters of exquisite often sweet-scented flowers usually hanging beneath the leaves -12198140 20 n 02 Firmiana 0 genus_Firmiana 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12198286 n 0000 | small genus of Asian trees or shrubs -12198286 20 n 05 Chinese_parasol_tree 0 Chinese_parasol 0 Japanese_varnish_tree 1 phoenix_tree 0 Firmiana_simplex 0 002 @ 13104059 n 0000 #m 12198140 n 0000 | deciduous tree widely grown in southern United States as an ornamental for its handsome maplelike foliage and long racemes of yellow-green flowers followed by curious leaflike pods -12198628 20 n 04 Fremontodendron 0 genus_Fremontodendron 0 Fremontia 0 genus_Fremontia 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12198793 n 0000 | flannelbush -12198793 20 n 03 flannelbush 0 flannel_bush 0 California_beauty 0 002 @ 13112664 n 0000 #m 12198628 n 0000 | any of several handsome evergreen shrubs of California and northern Mexico having downy lobed leaves and showy yellow flowers -12199030 20 n 02 Helicteres 0 genus_Helicteres 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12199266 n 0000 | genus of shrubs and small trees of tropical America and Asia having cylindrical fruits spirally twisted around one another -12199266 20 n 01 screw_tree 0 003 @ 13112664 n 0000 #m 12199030 n 0000 ~ 12199399 n 0000 | a tree or shrub of the genus Helicteres -12199399 20 n 02 nut-leaved_screw_tree 0 Helicteres_isora 0 001 @ 12199266 n 0000 | East Indian shrub often cultivated for its hairy leaves and orange-red flowers -12199564 20 n 04 Heritiera 0 genus_Heritiera 0 Terrietia 0 genus_Terrietia 0 002 @ 11575425 n 0000 #m 12194776 n 0000 | small genus of timber trees of eastern Asia, Australasia and tropical Africa that form large buttresses -12199790 20 n 08 red_beech 2 brown_oak 0 booyong 0 crow's_foot 0 stave_wood 0 silky_elm 0 Heritiera_trifoliolata 0 Terrietia_trifoliolata 0 001 @ 13109733 n 0000 | large tree of Australasia -12199982 20 n 02 looking_glass_tree 0 Heritiera_macrophylla 0 001 @ 13109733 n 0000 | large evergreen tree of India and Burma whose leaves are silvery beneath -12200143 20 n 02 looking-glass_plant 0 Heritiera_littoralis 0 001 @ 13109733 n 0000 | small tree of coastal regions of Old World tropics whose leaves are silvery beneath -12200315 20 n 02 Hermannia 0 genus_Hermannia 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12200504 n 0000 | genus of African herbs and subshrubs having honey-scented bell-shaped flowers -12200504 20 n 04 honey_bell 0 honeybells 0 Hermannia_verticillata 0 Mahernia_verticillata 0 002 @ 13112664 n 0000 #m 12200315 n 0000 | African shrub having decumbent stems and slender yellow honey-scented flowers either solitary or in pairs -12200747 20 n 02 Pterospermum 0 genus_Pterospermum 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12200905 n 0000 | genus of tropical Asian trees and shrubs -12200905 20 n 03 mayeng 0 maple-leaved_bayur 0 Pterospermum_acerifolium 0 002 @ 13104059 n 0000 #m 12200747 n 0000 | Indian tree having fragrant nocturnal white flowers and yielding a reddish wood used for planking; often grown as an ornamental or shade tree -12201166 20 n 02 Tarrietia 0 genus_Tarrietia 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12201331 n 0000 | small genus of east Asian and Australian timber trees -12201331 20 n 02 silver_tree 1 Tarrietia_argyrodendron 0 002 @ 13104059 n 0000 #m 12201166 n 0000 | Australian timber tree -12201456 20 n 02 Theobroma 0 genus_Theobroma 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12201580 n 0000 | cacao plants -12201580 20 n 04 cacao 0 cacao_tree 0 chocolate_tree 0 Theobroma_cacao 0 003 @ 13109733 n 0000 #m 12201456 n 0000 ~ 07754894 n 0000 | tropical American tree producing cacao beans -12201761 20 n 02 Triplochiton 0 genus_Triplochiton 0 003 @ 11575425 n 0000 #m 12194776 n 0000 %m 12201938 n 0000 | small genus of tropical African trees with maplelike leaves -12201938 20 n 05 obeche 0 obechi 0 arere 0 samba 0 Triplochiton_scleroxcylon 0 002 @ 13104059 n 0000 #m 12201761 n 0000 | large west African tree having large palmately lobed leaves and axillary cymose panicles of small white flowers and one-winged seeds; yields soft white to pale yellow wood -12202234 20 n 01 obeche 2 001 @ 15098161 n 0000 | the wood of an African obeche tree; used especially for veneering -12202352 20 n 03 Tiliaceae 0 family_Tiliaceae 0 linden_family 0 007 @ 11565385 n 0000 #m 12169526 n 0000 %m 12202712 n 0000 %m 12204405 n 0000 %m 12204546 n 0000 %m 12204925 n 0000 %m 12205308 n 0000 | chiefly trees and shrubs of tropical and temperate regions of especially southeastern Asia and Brazil; genera Tilia, Corchorus, Entelea, Grewia, Sparmannia -12202712 20 n 02 Tilia 0 genus_Tilia 0 003 @ 11575425 n 0000 #m 12202352 n 0000 %m 12202936 n 0000 | deciduous trees with smooth usually silver-grey bark of North America and Europe and Asia: lime trees; lindens; basswood -12202936 20 n 05 linden 0 linden_tree 0 basswood 0 lime 2 lime_tree 2 008 @ 13104059 n 0000 #m 12202712 n 0000 %s 12203331 n 0000 ~ 12203529 n 0000 ~ 12203699 n 0000 ~ 12203896 n 0000 ~ 12204032 n 0000 ~ 12204175 n 0000 | any of various deciduous trees of the genus Tilia with heart-shaped leaves and drooping cymose clusters of yellowish often fragrant flowers; several yield valuable timber -12203331 20 n 02 basswood 2 linden 2 002 @ 15098161 n 0000 #s 12202936 n 0000 | soft light-colored wood of any of various linden trees; used in making crates and boxes and in carving and millwork -12203529 20 n 03 American_basswood 0 American_lime 0 Tilia_americana 0 001 @ 12202936 n 0000 | large American shade tree with large dark green leaves and rounded crown -12203699 20 n 03 small-leaved_linden 0 small-leaved_lime 0 Tilia_cordata 0 001 @ 12202936 n 0000 | large spreading European linden with small dark green leaves; often cultivated as an ornamental -12203896 20 n 03 white_basswood 0 cottonwood 2 Tilia_heterophylla 0 001 @ 12202936 n 0000 | American basswood of the Allegheny region -12204032 20 n 03 Japanese_linden 0 Japanese_lime 0 Tilia_japonica 0 001 @ 12202936 n 0000 | medium-sized tree of Japan used as an ornamental -12204175 20 n 03 silver_lime 0 silver_linden 0 Tilia_tomentosa 0 001 @ 12202936 n 0000 | large tree native to eastern Europe and Asia Minor having leaves with white tomentum on the under side; widely cultivated as an ornamental -12204405 20 n 02 Entelea 0 genus_Entelea 0 002 @ 11575425 n 0000 #m 12202352 n 0000 | a genus of evergreen shrub that grows in New Zealand -12204546 20 n 02 Corchorus 0 genus_Corchorus 0 003 @ 11575425 n 0000 #m 12202352 n 0000 %m 12204730 n 0000 | widely distributed genus of tropical herbs or subshrubs; especially Asia -12204730 20 n 01 corchorus 1 002 @ 13118707 n 0000 #m 12204546 n 0000 | any of various plants of the genus Corchorus having large leaves and cymose clusters of yellow flowers; a source of jute -12204925 20 n 02 Grewia 0 genus_Grewia 0 003 @ 11575425 n 0000 #m 12202352 n 0000 %m 12205104 n 0000 | a genus of tropical and subtropical Old World climbers or shrubs or trees -12205104 20 n 02 phalsa 0 Grewia_asiatica 0 002 @ 13112664 n 0000 #m 12204925 n 0000 | drought-resistant Asiatic treelike shrub bearing pleasantly acid small red edible fruits commonly used in sherbets -12205308 20 n 02 Sparmannia 0 genus_Sparmannia 0 003 @ 11575425 n 0000 #m 12202352 n 0000 %m 12205460 n 0000 | small genus of tropical African shrubs -12205460 20 n 02 African_hemp 1 Sparmannia_africana 0 002 @ 13112664 n 0000 #m 12205308 n 0000 | large shrub of South Africa having many conspicuously hairy branches with large hairy leaves and clusters of conspicuous white flowers -12205694 20 n 02 herb 0 herbaceous_plant 0 360 @ 13083586 n 0000 + 02893195 a 0101 %p 07707451 n 0000 ~ 11699071 n 0000 ~ 11700058 n 0000 ~ 11720353 n 0000 ~ 11732052 n 0000 ~ 11733548 n 0000 ~ 11735053 n 0000 ~ 11735570 n 0000 ~ 11735977 n 0000 ~ 11736362 n 0000 ~ 11738997 n 0000 ~ 11739365 n 0000 ~ 11747468 n 0000 ~ 11752578 n 0000 ~ 11772408 n 0000 ~ 11779300 n 0000 ~ 11799732 n 0000 ~ 11800020 n 0000 ~ 11802212 n 0000 ~ 11802800 n 0000 ~ 11805255 n 0000 ~ 11807108 n 0000 ~ 11810030 n 0000 ~ 11811059 n 0000 ~ 11817914 n 0000 ~ 11822300 n 0000 ~ 11823043 n 0000 ~ 11824344 n 0000 ~ 11825211 n 0000 ~ 11825351 n 0000 ~ 11825749 n 0000 ~ 11828247 n 0000 ~ 11830714 n 0000 ~ 11833749 n 0000 ~ 11833999 n 0000 ~ 11834272 n 0000 ~ 11855274 n 0000 ~ 11857320 n 0000 ~ 11858703 n 0000 ~ 11861021 n 0000 ~ 11866248 n 0000 ~ 11867311 n 0000 ~ 11868814 n 0000 ~ 11870044 n 0000 ~ 11872973 n 0000 ~ 11874423 n 0000 ~ 11880411 n 0000 ~ 11884384 n 0000 ~ 11884967 n 0000 ~ 11885292 n 0000 ~ 11885524 n 0000 ~ 11885856 n 0000 ~ 11886537 n 0000 ~ 11889205 n 0000 ~ 11890022 n 0000 ~ 11890884 n 0000 ~ 11891541 n 0000 ~ 11893640 n 0000 ~ 11893916 n 0000 ~ 11897116 n 0000 ~ 11899223 n 0000 ~ 11899762 n 0000 ~ 11899921 n 0000 ~ 11902709 n 0000 ~ 11908077 n 0000 ~ 11909527 n 0000 ~ 11910271 n 0000 ~ 11910460 n 0000 ~ 11910666 n 0000 ~ 11916467 n 0000 ~ 11917835 n 0000 ~ 11920998 n 0000 ~ 11921792 n 0000 ~ 11922192 n 0000 ~ 11922374 n 0000 ~ 11926833 n 0000 ~ 11927740 n 0000 ~ 11937692 n 0000 ~ 11939180 n 0000 ~ 11943133 n 0000 ~ 11946051 n 0000 ~ 11949402 n 0000 ~ 11949857 n 0000 ~ 11953038 n 0000 ~ 11953339 n 0000 ~ 11956850 n 0000 ~ 11961871 n 0000 ~ 11962667 n 0000 ~ 11962994 n 0000 ~ 11963305 n 0000 ~ 11963572 n 0000 ~ 11968335 n 0000 ~ 11968519 n 0000 ~ 11968704 n 0000 ~ 11968931 n 0000 ~ 11969166 n 0000 ~ 11973341 n 0000 ~ 11975658 n 0000 ~ 11977303 n 0000 ~ 11982115 n 0000 ~ 11982939 n 0000 ~ 11984542 n 0000 ~ 11985739 n 0000 ~ 11986306 n 0000 ~ 11992166 n 0000 ~ 11994150 n 0000 ~ 11995092 n 0000 ~ 11995396 n 0000 ~ 11997032 n 0000 ~ 11997409 n 0000 ~ 12000191 n 0000 ~ 12000356 n 0000 ~ 12002428 n 0000 ~ 12002651 n 0000 ~ 12002826 n 0000 ~ 12003696 n 0000 ~ 12004547 n 0000 ~ 12004987 n 0000 ~ 12005329 n 0000 ~ 12005656 n 0000 ~ 12006306 n 0000 ~ 12009792 n 0000 ~ 12010188 n 0000 ~ 12013035 n 0000 ~ 12014923 n 0000 ~ 12015525 n 0000 ~ 12019827 n 0000 ~ 12021499 n 0000 ~ 12021882 n 0000 ~ 12022382 n 0000 ~ 12023108 n 0000 ~ 12024176 n 0000 ~ 12027222 n 0000 ~ 12028012 n 0000 ~ 12028424 n 0000 ~ 12028818 n 0000 ~ 12029039 n 0000 ~ 12029635 n 0000 ~ 12031927 n 0000 ~ 12035213 n 0000 ~ 12036939 n 0000 ~ 12090890 n 0000 ~ 12092262 n 0000 ~ 12093885 n 0000 ~ 12095020 n 0000 ~ 12098403 n 0000 ~ 12101870 n 0000 ~ 12104501 n 0000 ~ 12156679 n 0000 ~ 12168565 n 0000 ~ 12171966 n 0000 ~ 12212361 n 0000 ~ 12212690 n 0000 ~ 12251278 n 0000 ~ 12256112 n 0000 ~ 12257570 n 0000 ~ 12258101 n 0000 ~ 12292877 n 0000 ~ 12293180 n 0000 ~ 12298958 n 0000 ~ 12312110 n 0000 ~ 12312728 n 0000 ~ 12342299 n 0000 ~ 12344283 n 0000 ~ 12350758 n 0000 ~ 12351600 n 0000 ~ 12352287 n 0000 ~ 12353754 n 0000 ~ 12354619 n 0000 ~ 12355760 n 0000 ~ 12356395 n 0000 ~ 12357968 n 0000 ~ 12358293 n 0000 ~ 12385429 n 0000 ~ 12387633 n 0000 ~ 12393086 n 0000 ~ 12394638 n 0000 ~ 12437513 n 0000 ~ 12441183 n 0000 ~ 12441390 n 0000 ~ 12443323 n 0000 ~ 12444898 n 0000 ~ 12457771 n 0000 ~ 12469517 n 0000 ~ 12475774 n 0000 ~ 12486574 n 0000 ~ 12500309 n 0000 ~ 12506991 n 0000 ~ 12519563 n 0000 ~ 12526178 n 0000 ~ 12529500 n 0000 ~ 12532886 n 0000 ~ 12533190 n 0000 ~ 12545865 n 0000 ~ 12548280 n 0000 ~ 12552309 n 0000 ~ 12555859 n 0000 ~ 12564613 n 0000 ~ 12573256 n 0000 ~ 12574320 n 0000 ~ 12574470 n 0000 ~ 12598826 n 0000 ~ 12601494 n 0000 ~ 12602980 n 0000 ~ 12603959 n 0000 ~ 12606545 n 0000 ~ 12607456 n 0000 ~ 12622875 n 0000 ~ 12630144 n 0000 ~ 12637485 n 0000 ~ 12665048 n 0000 ~ 12679876 n 0000 ~ 12682411 n 0000 ~ 12684379 n 0000 ~ 12685431 n 0000 ~ 12702948 n 0000 ~ 12707199 n 0000 ~ 12712626 n 0000 ~ 12719684 n 0000 ~ 12778605 n 0000 ~ 12784889 n 0000 ~ 12785724 n 0000 ~ 12793015 n 0000 ~ 12794985 n 0000 ~ 12796022 n 0000 ~ 12797368 n 0000 ~ 12798284 n 0000 ~ 12800586 n 0000 ~ 12802442 n 0000 ~ 12803754 n 0000 ~ 12804352 n 0000 ~ 12809365 n 0000 ~ 12810595 n 0000 ~ 12812235 n 0000 ~ 12816508 n 0000 ~ 12816942 n 0000 ~ 12817129 n 0000 ~ 12817464 n 0000 ~ 12818966 n 0000 ~ 12819141 n 0000 ~ 12819354 n 0000 ~ 12819728 n 0000 ~ 12820292 n 0000 ~ 12820669 n 0000 ~ 12820853 n 0000 ~ 12821048 n 0000 ~ 12821505 n 0000 ~ 12821895 n 0000 ~ 12822115 n 0000 ~ 12822466 n 0000 ~ 12822769 n 0000 ~ 12829975 n 0000 ~ 12834798 n 0000 ~ 12835331 n 0000 ~ 12836212 n 0000 ~ 12836337 n 0000 ~ 12837803 n 0000 ~ 12839574 n 0000 ~ 12839979 n 0000 ~ 12840749 n 0000 ~ 12841872 n 0000 ~ 12842302 n 0000 ~ 12842887 n 0000 ~ 12843970 n 0000 ~ 12844409 n 0000 ~ 12844939 n 0000 ~ 12846335 n 0000 ~ 12846690 n 0000 ~ 12847008 n 0000 ~ 12847927 n 0000 ~ 12848499 n 0000 ~ 12849061 n 0000 ~ 12850906 n 0000 ~ 12851094 n 0000 ~ 12851469 n 0000 ~ 12852234 n 0000 ~ 12852428 n 0000 ~ 12852570 n 0000 ~ 12853080 n 0000 ~ 12854048 n 0000 ~ 12854600 n 0000 ~ 12855042 n 0000 ~ 12857204 n 0000 ~ 12857456 n 0000 ~ 12857779 n 0000 ~ 12858150 n 0000 ~ 12859679 n 0000 ~ 12859986 n 0000 ~ 12860365 n 0000 ~ 12860978 n 0000 ~ 12861892 n 0000 ~ 12863234 n 0000 ~ 12863624 n 0000 ~ 12864160 n 0000 ~ 12864545 n 0000 ~ 12866968 n 0000 ~ 12867826 n 0000 ~ 12868019 n 0000 ~ 12868880 n 0000 ~ 12869061 n 0000 ~ 12870535 n 0000 ~ 12873984 n 0000 ~ 12874783 n 0000 ~ 12875269 n 0000 ~ 12875697 n 0000 ~ 12875861 n 0000 ~ 12878784 n 0000 ~ 12879068 n 0000 ~ 12882779 n 0000 ~ 12888906 n 0000 ~ 12896000 n 0000 ~ 12898342 n 0000 ~ 12904314 n 0000 ~ 12904562 n 0000 ~ 12905817 n 0000 ~ 12906498 n 0000 ~ 12907057 n 0000 ~ 12907465 n 0000 ~ 12908645 n 0000 ~ 12910285 n 0000 ~ 12912670 n 0000 ~ 12913524 n 0000 ~ 12924036 n 0000 ~ 12924284 n 0000 ~ 12925179 n 0000 ~ 12930778 n 0000 ~ 12931542 n 0000 ~ 12931906 n 0000 ~ 12932706 n 0000 ~ 12932966 n 0000 ~ 12933274 n 0000 ~ 12933403 n 0000 ~ 12933616 n 0000 ~ 12934036 n 0000 ~ 12934479 n 0000 ~ 12936155 n 0000 ~ 12936469 n 0000 ~ 12936826 n 0000 ~ 12937388 n 0000 ~ 12938445 n 0000 ~ 12939104 n 0000 ~ 12939874 n 0000 ~ 12940226 n 0000 ~ 12940609 n 0000 ~ 12941536 n 0000 ~ 12942395 n 0000 ~ 12943049 n 0000 ~ 12943443 n 0000 ~ 12944390 n 0000 ~ 12944723 n 0000 ~ 12945828 n 0000 ~ 12950669 n 0000 ~ 13085747 n 0000 ~ 13150894 n 0000 ~ 13152339 n 0000 ~ 13233435 n 0000 ~ 13233727 n 0000 ~ 13238375 n 0000 | a plant lacking a permanent woody stem; many are flowering garden plants or potherbs; some having medicinal properties; some are pests -12212361 20 n 01 vegetable 0 005 @ 12205694 n 0000 ~ 11832214 n 0000 ~ 11835568 n 0000 ~ 11959632 n 0000 ~ 11959862 n 0000 | any of various herbaceous plants cultivated for an edible part such as the fruit or the root of the beet or the leaf of spinach or the seeds of bean plants or the flower buds of broccoli or cauliflower -12212690 20 n 01 simple 0 002 @ 12205694 n 0000 ;u 07073447 n 0000 | any herbaceous plant having medicinal properties -12212810 20 n 02 Rosidae 0 subclass_Rosidae 0 008 @ 08103777 n 0000 #m 11665781 n 0000 %m 11566682 n 0000 %m 11585340 n 0000 %m 12213197 n 0000 %m 12322887 n 0000 %m 12618942 n 0000 %m 12684640 n 0000 | a group of trees and shrubs and herbs mostly with polypetalous flowers; contains 108 families including Rosaceae; Crassulaceae; Myrtaceae; Melastomaceae; Euphorbiaceae; Umbelliferae -12213197 20 n 02 Umbellales 0 order_Umbellales 0 005 @ 11534677 n 0000 #m 12212810 n 0000 %m 11796744 n 0000 %m 12930044 n 0000 %m 12946088 n 0000 | plants having umbels or corymbs of uniovulate flowers; includes the Umbelliferae (chiefly herbs) and Cornaceae (chiefly trees or shrubs) -12213485 20 n 02 Proteales 0 order_Proteales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12213635 n 0000 | coextensive with the family Proteaceae -12213635 20 n 03 Proteaceae 0 family_Proteaceae 0 protea_family 0 020 @ 11562747 n 0000 #m 12213485 n 0000 %m 12214245 n 0000 %m 12214605 n 0000 %m 12215373 n 0000 %m 12216028 n 0000 %m 12216382 n 0000 %m 12216836 n 0000 %m 12217211 n 0000 %m 12218621 n 0000 %m 12219495 n 0000 %m 12219875 n 0000 %m 12220247 n 0000 %m 12220654 n 0000 %m 12220994 n 0000 %m 12221943 n 0000 %m 12222334 n 0000 %m 12222715 n 0000 %m 12223405 n 0000 %m 12223950 n 0000 | large family of Australian and South African shrubs and trees with leathery leaves and clustered mostly tetramerous flowers; constitutes the order Proteales -12214245 20 n 03 Bartle_Frere 0 genus_Bartle-Frere 0 green_dinosaur 0 002 @ 11567411 n 0000 #m 12213635 n 0000 | a living fossil or so-called `green dinosaur'; genus or subfamily of primitive nut-bearing trees thought to have died out 50 million years ago; a single specimen found in 1994 on Mount Bartle Frere in eastern Australia; not yet officially named -12214605 20 n 01 genus_Protea 0 005 @ 11567411 n 0000 #m 12213635 n 0000 %m 12214789 n 0000 %m 12215022 n 0000 %m 12215210 n 0000 | type genus of Proteaceae; tropical African shrubs -12214789 20 n 01 protea 0 004 @ 13112664 n 0000 #m 12214605 n 0000 ~ 12215022 n 0000 ~ 12215210 n 0000 | any tropical African shrub of the genus Protea having alternate rigid leaves and dense colorful flower heads resembling cones -12215022 20 n 03 honeypot 0 king_protea 0 Protea_cynaroides 0 002 @ 12214789 n 0000 #m 12214605 n 0000 | South African shrub whose flowers when open are cup-shaped resembling artichokes -12215210 20 n 03 honeyflower 1 honey-flower 1 Protea_mellifera 0 002 @ 12214789 n 0000 #m 12214605 n 0000 | Australian shrub whose flowers yield honey copiously -12215373 20 n 01 genus_Banksia 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12215579 n 0000 | important genus of Australian evergreen shrubs or trees with alternate leathery leaves and yellowish flowers -12215579 20 n 01 banksia 0 003 @ 13112664 n 0000 #m 12215373 n 0000 ~ 12215824 n 0000 | any shrub or tree of the genus Banksia having alternate leathery leaves apetalous yellow flowers often in showy heads and conelike fruit with winged seeds -12215824 20 n 04 honeysuckle 4 Australian_honeysuckle 0 coast_banksia 0 Banksia_integrifolia 0 001 @ 12215579 n 0000 | shrubby tree with silky foliage and spikes of cylindrical yellow nectarous flowers -12216028 20 n 02 Conospermum 0 genus_Conospermum 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12216215 n 0000 | Australian shrubs (some trees) with flowers in dense spikes: smoke bush -12216215 20 n 01 smoke_bush 2 002 @ 13112664 n 0000 #m 12216028 n 0000 | any of various shrubs of the genus Conospermum with panicles of mostly white woolly flowers -12216382 20 n 02 Embothrium 0 genus_Embothrium 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12216628 n 0000 | small genus of South American evergreen shrubs or small trees with long willowy branches and flowers in flamboyant terminal clusters -12216628 20 n 03 Chilean_firebush 0 Chilean_flameflower 0 Embothrium_coccineum 0 002 @ 13112664 n 0000 #m 12216382 n 0000 | grown for outstanding display of brilliant usually scarlet-crimson flowers; Andes -12216836 20 n 02 Guevina 0 genus_Guevina 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12216968 n 0000 | one species: Chilean nut -12216968 20 n 06 Chilean_nut 0 Chile_nut 0 Chile_hazel 0 Chilean_hazelnut 0 Guevina_heterophylla 0 Guevina_avellana 0 002 @ 13112664 n 0000 #m 12216836 n 0000 | Chilean shrub bearing coral-red fruit with an edible seed resembling a hazelnut -12217211 20 n 01 genus_Grevillea 0 006 @ 11567411 n 0000 #m 12213635 n 0000 %m 12217453 n 0000 %m 12217586 n 0000 %m 12218054 n 0000 %m 12218274 n 0000 | large genus of Australian shrubs and trees having usually showy orange or red flowers -12217453 20 n 01 grevillea 0 003 @ 13112664 n 0000 #m 12217211 n 0000 ~ 12217586 n 0000 | any shrub or tree of the genus Grevillea -12217586 20 n 01 silk_oak 0 006 @ 12217453 n 0000 #m 12217211 n 0000 ~ 12217851 n 0000 ~ 12218054 n 0000 ~ 12218274 n 0000 ~ 12218490 n 0000 | any of several Australian timber trees having usually fernlike foliage and mottled wood used in cabinetry and veneering -12217851 20 n 02 red-flowered_silky_oak 0 Grevillea_banksii 0 001 @ 12217586 n 0000 | tall shrub with cylindrical racemes of red flowers and pinnatifid leaves silky and grey beneath; eastern Australia -12218054 20 n 02 silver_oak 0 Grevillela_parallela 0 002 @ 12217586 n 0000 #m 12217211 n 0000 | small slender tree with usually entire grey-green pendulous leaves and white or cream-colored flowers; northern Australia -12218274 20 n 02 silky_oak 0 Grevillea_robusta 0 002 @ 12217586 n 0000 #m 12217211 n 0000 | medium to tall fast-growing tree with orange flowers and feathery bipinnate leaves silky-hairy beneath; eastern Australia -12218490 20 n 02 beefwood 2 Grevillea_striata 0 002 @ 12217586 n 0000 %s 12225769 n 0000 | tree yielding hard heavy reddish wood -12218621 20 n 02 Hakea 0 genus_Hakea 0 005 @ 11567411 n 0000 #m 12213635 n 0000 %m 12218868 n 0000 %m 12219065 n 0000 %m 12219289 n 0000 | Australian shrubs and small trees with evergreen usually spiny leaves and dense clusters of showy flowers -12218868 20 n 03 cushion_flower 0 pincushion_hakea 0 Hakea_laurina 0 002 @ 13112664 n 0000 #m 12218621 n 0000 | tall straggling shrub with large globose crimson-yellow flowers; western Australia -12219065 20 n 04 needlewood 0 needle-wood 0 needle_wood 0 Hakea_leucoptera 0 002 @ 13112664 n 0000 #m 12218621 n 0000 | large bushy shrub with pungent pointed leaves and creamy white flowers; central and eastern Australia -12219289 20 n 04 needlebush 0 needle-bush 0 needle_bush 0 Hakea_lissosperma 0 002 @ 13112664 n 0000 #m 12218621 n 0000 | shrub with pungent rigid needle-shaped leaves and white flowers; eastern Australia -12219495 20 n 02 Knightia 0 genus_Knightia 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12219668 n 0000 | small genus of trees or shrubs of New Zealand and New Caledonia -12219668 20 n 02 rewa-rewa 0 New_Zealand_honeysuckle 0 002 @ 13109733 n 0000 #m 12219495 n 0000 | slender elegant tree of New Zealand having racemes of red flowers and yielding valuable mottled red timber -12219875 20 n 02 Lambertia 0 genus_Lambertia 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12220019 n 0000 | small genus of Australian shrubs -12220019 20 n 04 honeyflower 2 honey-flower 2 mountain_devil 0 Lambertia_formosa 0 002 @ 13112664 n 0000 #m 12219875 n 0000 | erect bushy shrub of eastern Australia having terminal clusters of red flowers yielding much nectar -12220247 20 n 02 Leucadendron 0 genus_Leucadendron 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12220496 n 0000 | large genus of evergreen trees and shrubs having silvery white leaves and solitary terminal flowers with conspicuous silvery bracts -12220496 20 n 02 silver_tree 2 Leucadendron_argenteum 0 002 @ 13104059 n 0000 #m 12220247 n 0000 | small South African tree with long silvery silky foliage -12220654 20 n 01 genus_Lomatia 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12220829 n 0000 | small genus of low-growing evergreens of Chile and Australia; some yield dyes -12220829 20 n 01 lomatia 0 002 @ 13112664 n 0000 #m 12220654 n 0000 | any of various ornamental evergreens of the genus Lomatia having attractive fragrant flowers -12220994 20 n 01 genus_Macadamia 0 006 @ 11567411 n 0000 #m 12213635 n 0000 %m 12221191 n 0000 %m 12221368 n 0000 %m 12221522 n 0000 %m 12221801 n 0000 | trees or shrubs; Madagascar to Australia -12221191 20 n 02 macadamia 0 macadamia_tree 0 005 @ 13110915 n 0000 #m 12220994 n 0000 ~ 12221368 n 0000 ~ 12221522 n 0000 ~ 12221801 n 0000 | any tree of the genus Macadamia -12221368 20 n 01 Macadamia_integrifolia 0 002 @ 12221191 n 0000 #m 12220994 n 0000 | medium-sized tree of eastern Australia having creamy-white flowers -12221522 20 n 03 macadamia_nut 0 macadamia_nut_tree 0 Macadamia_ternifolia 0 004 @ 12221191 n 0000 #m 12220994 n 0000 ;r 09078231 n 0000 %p 07774596 n 0000 | small Australian tree with racemes of pink flowers; widely cultivated (especially in Hawaii) for its sweet edible nuts -12221801 20 n 02 Queensland_nut 0 Macadamia_tetraphylla 0 002 @ 12221191 n 0000 #m 12220994 n 0000 | bushy tree with pink to purple flowers -12221943 20 n 02 Orites 0 genus_Orites 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12222090 n 0000 | small genus of Australian shrubs or trees -12222090 20 n 02 prickly_ash 2 Orites_excelsa 0 002 @ 13104059 n 0000 #m 12221943 n 0000 | Australian tree having alternate simple leaves (when young they are pinnate with prickly toothed margins) and slender axillary spikes of white flowers -12222334 20 n 02 Persoonia 0 genus_Persoonia 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12222493 n 0000 | Australian undershrubs to small trees: geebungs -12222493 20 n 01 geebung 0 002 @ 13112664 n 0000 #m 12222334 n 0000 | any of numerous shrubs and small trees having hard narrow leaves and long-lasting yellow or white flowers followed by small edible but insipid fruits -12222715 20 n 02 Stenocarpus 0 genus_Stenocarpus 0 004 @ 11567411 n 0000 #m 12213635 n 0000 %m 12222900 n 0000 %m 12223160 n 0000 | small genus of timber trees; Australia to Malaysia -12222900 20 n 03 wheel_tree 0 firewheel_tree 0 Stenocarpus_sinuatus 0 002 @ 13104059 n 0000 #m 12222715 n 0000 | eastern Australian tree widely cultivated as a shade tree and for its glossy leaves and circular clusters of showy red to orange-scarlet flowers -12223160 20 n 03 scrub_beefwood 0 beefwood 3 Stenocarpus_salignus 0 003 @ 13104059 n 0000 #m 12222715 n 0000 %s 12225769 n 0000 | tree or tall shrub with shiny leaves and umbels of fragrant creamy-white flowers; yields hard heavy reddish wood -12223405 20 n 02 Telopea 0 genus_Telopea 0 004 @ 11567411 n 0000 #m 12213635 n 0000 %m 12223569 n 0000 %m 12223764 n 0000 | Australian evergreen shrubs: waratahs -12223569 20 n 02 waratah 1 Telopea_Oreades 0 002 @ 13112664 n 0000 #m 12223405 n 0000 | tall shrub of eastern Australia having oblanceolate to obovate leaves and red flowers in compact racemes -12223764 20 n 02 waratah 2 Telopea_speciosissima 0 002 @ 13112664 n 0000 #m 12223405 n 0000 | straggling shrub with narrow leaves and conspicuous red flowers in dense globular racemes -12223950 20 n 02 Xylomelum 0 genus_Xylomelum 0 003 @ 11567411 n 0000 #m 12213635 n 0000 %m 12224140 n 0000 | small species of Australian trees or shrubs; grown for their fruit and flowers -12224140 20 n 03 native_pear 0 woody_pear 0 Xylomelum_pyriforme 0 002 @ 13112664 n 0000 #m 12223950 n 0000 | tree bearing pear-shaped fruit with a thick woody epicarp -12224309 20 n 02 Casuarinales 0 order_Casuarinales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12224522 n 0000 | order of chiefly Australian trees and shrubs comprising the casuarinas; 1 family: Casuarinaceae -12224522 20 n 02 Casuarinaceae 0 family_Casuarinaceae 0 003 @ 11562747 n 0000 #m 12224309 n 0000 %m 12224669 n 0000 | one genus: genus Casuarina -12224669 20 n 01 genus_Casuarina 0 006 @ 11567411 n 0000 #m 12224522 n 0000 %m 12224978 n 0000 %m 12225222 n 0000 %m 12225349 n 0000 %m 12225563 n 0000 | genus of trees and shrubs widely naturalized in southern United States and West Indies; coextensive with the family Casuarinaceae and order Casuarinales -12224978 20 n 01 casuarina 0 004 @ 13104059 n 0000 #m 12224669 n 0000 ~ 12225222 n 0000 ~ 12225349 n 0000 | any of various trees and shrubs of the genus Casuarina having jointed stems and whorls of scalelike leaves; some yield heavy hardwood -12225222 20 n 01 she-oak 0 002 @ 12224978 n 0000 #m 12224669 n 0000 | any of several Australian trees of the genus Casuarina -12225349 20 n 01 beefwood 1 004 @ 12224978 n 0000 #m 12224669 n 0000 ~ 12225563 n 0000 %s 12225769 n 0000 | any of several Australian trees of the genus Casuarina yielding heavy hard red wood used in cabinetwork -12225563 20 n 02 Australian_pine 0 Casuarina_equisetfolia 0 002 @ 12225349 n 0000 #m 12224669 n 0000 | common Australian tree widely grown as an ornamental in tropical regions; yields heavy hard red wood -12225769 20 n 01 beefwood 4 004 @ 15098161 n 0000 #s 12225349 n 0000 #s 12218490 n 0000 #s 12223160 n 0000 | any of several heavy hard reddish chiefly tropical woods of the families Casuarinaceae and Proteaceae; some used for cabinetwork -12226009 20 n 02 Ericales 0 order_Ericales 0 009 @ 11534677 n 0000 #m 12358485 n 0000 ~ 12226322 n 0000 %m 12249821 n 0000 %m 12250413 n 0000 %m 12252620 n 0000 %m 12255452 n 0000 %m 12255659 n 0000 %m 12258380 n 0000 | Ericaceae; Clethraceae; Diapensiaceae; Epacridaceae; Lennoaceae; Pyrolaceae; Monotropaceae -12226322 20 n 03 Ericaceae 0 family_Ericaceae 0 heath_family 0 028 @ 11565385 n 0000 @ 12226009 n 0000 %m 12226932 n 0000 %m 12227220 n 0000 %m 12229282 n 0000 %m 12230146 n 0000 %m 12231031 n 0000 %m 12232683 n 0000 %m 12233094 n 0000 %m 12233410 n 0000 %m 12233759 n 0000 %m 12234176 n 0000 %m 12234513 n 0000 %m 12234913 n 0000 %m 12235263 n 0000 %m 12236363 n 0000 %m 12237350 n 0000 %m 12238306 n 0000 %m 12239100 n 0000 %m 12239458 n 0000 %m 12240335 n 0000 %m 12240715 n 0000 %m 12241699 n 0000 %m 12242287 n 0000 %m 12242668 n 0000 %m 12243292 n 0000 %m 12243927 n 0000 %m 12245472 n 0000 | heathers -12226932 20 n 01 heath 0 009 @ 13112664 n 0000 #m 12226322 n 0000 ~ 12227420 n 0000 ~ 12232851 n 0000 ~ 12233529 n 0000 ~ 12233998 n 0000 ~ 12234669 n 0000 ~ 12242850 n 0000 ~ 12243109 n 0000 | a low evergreen shrub of the family Ericaceae; has small bell-shaped pink or purple flowers -12227220 20 n 01 genus_Erica 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12227420 n 0000 | large genus of low much-branched woody evergreens ranging from prostrate subshrubs to trees: true heaths -12227420 20 n 02 erica 0 true_heath 0 009 @ 12226932 n 0000 #m 12227220 n 0000 ~ 12227658 n 0000 ~ 12228229 n 0000 ~ 12228387 n 0000 ~ 12228546 n 0000 ~ 12228689 n 0000 ~ 12228886 n 0000 ~ 12229111 n 0000 | any plant of the genus Erica -12227658 20 n 04 tree_heath 1 briar 1 brier 1 Erica_arborea 0 002 @ 12227420 n 0000 %p 12227909 n 0000 | evergreen treelike Mediterranean shrub having fragrant white flowers in large terminal panicles and hard woody roots used to make tobacco pipes -12227909 20 n 01 briarroot 0 003 @ 13125117 n 0000 #p 12227658 n 0000 %s 12228045 n 0000 | hard woody root of the briar Erica arborea -12228045 20 n 03 briarwood 0 brierwood 0 brier-wood 0 002 @ 15098161 n 0000 #s 12227909 n 0000 | wood from the hard woody root of the briar Erica arborea; used to make tobacco pipes -12228229 20 n 03 winter_heath 0 spring_heath 0 Erica_carnea 0 001 @ 12227420 n 0000 | dwarf European shrub with very early blooming bell-shaped red flowers -12228387 20 n 04 bell_heather 1 heather_bell 0 fine-leaved_heath 0 Erica_cinerea 0 001 @ 12227420 n 0000 | common low European shrub with purple-red flowers -12228546 20 n 03 cross-leaved_heath 0 bell_heather 2 Erica_tetralix 0 001 @ 12227420 n 0000 | dwarf European shrub with rose-colored flowers -12228689 20 n 02 Cornish_heath 0 Erica_vagans 0 001 @ 12227420 n 0000 | bushy shrub having pink to white flowers; common on the moors of Cornwall and in southwestern Europe; cultivated elsewhere -12228886 20 n 03 Spanish_heath 0 Portuguese_heath 0 Erica_lusitanica 0 001 @ 12227420 n 0000 | erect dense shrub native to western Iberian peninsula having profuse white or pink flowers; naturalized in southwestern England -12229111 20 n 03 Prince-of-Wales'-heath 0 Prince_of_Wales_heath 0 Erica_perspicua 0 001 @ 12227420 n 0000 | South African shrub grown for its profusion of white flowers -12229282 20 n 01 genus_Andromeda 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12229443 n 0000 | low-growing shrubs of northern regions of northern hemisphere -12229443 20 n 01 andromeda 0 004 @ 13112664 n 0000 #m 12229282 n 0000 ~ 12229651 n 0000 ~ 12229887 n 0000 | any of several shrubs of the genus Andromeda having leathery leaves and clusters of small flowers -12229651 20 n 03 bog_rosemary 0 moorwort 0 Andromeda_glaucophylla 0 001 @ 12229443 n 0000 | wiry evergreen shrub having pendent clusters of white or pink flowers; of wet acidic areas in Arctic and Canada to northeastern United States -12229887 20 n 03 marsh_andromeda 0 common_bog_rosemary 0 Andromeda_polifolia 0 001 @ 12229443 n 0000 | erect to procumbent evergreen shrub having pendent clusters of white or pink flowers; of sphagnum peat bogs and other wet acidic areas in northern Europe -12230146 20 n 01 genus_Arbutus 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12230347 n 0000 | large evergreen shrubs and trees of southern Europe and western North America: strawberry tree; madrona -12230347 20 n 01 arbutus 0 004 @ 13112664 n 0000 #m 12230146 n 0000 ~ 12230540 n 0000 ~ 12230794 n 0000 | any of several evergreen shrubs of the genus Arbutus of temperate Europe and America -12230540 20 n 04 madrona 0 madrono 0 manzanita 2 Arbutus_menziesii 0 001 @ 12230347 n 0000 | evergreen tree of the Pacific coast of North America having glossy leathery leaves and orange-red edible berries; wood used for furniture and bark for tanning -12230794 20 n 03 strawberry_tree 0 Irish_strawberry 0 Arbutus_unedo 0 001 @ 12230347 n 0000 | small evergreen European shrubby tree bearing many-seeded scarlet berries that are edible but bland; of Ireland, southern Europe, Asia Minor -12231031 20 n 02 Arctostaphylos 0 genus_Arctostaphylos 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12231192 n 0000 %m 12231918 n 0000 | bearberry; manzanita -12231192 20 n 01 bearberry 1 004 @ 13112664 n 0000 #m 12231031 n 0000 ~ 12231358 n 0000 ~ 12231709 n 0000 | chiefly evergreen subshrubs of northern to Arctic areas -12231358 20 n 0b common_bearberry 0 red_bearberry 0 wild_cranberry 0 mealberry 0 hog_cranberry 0 sand_berry 0 sandberry 0 mountain_box 0 bear's_grape 0 creashak 0 Arctostaphylos_uva-ursi 0 001 @ 12231192 n 0000 | evergreen mat-forming shrub of North America and northern Eurasia having small white flowers and red berries; leaves turn red in autumn -12231709 20 n 03 alpine_bearberry 0 black_bearberry 0 Arctostaphylos_alpina 0 001 @ 12231192 n 0000 | deciduous creeping shrub bright red in autumn having black or blue-black berries; alpine and circumpolar -12231918 20 n 01 manzanita 1 005 @ 13112664 n 0000 #m 12231031 n 0000 ~ 12232114 n 0000 ~ 12232280 n 0000 ~ 12232503 n 0000 | chiefly evergreen shrubs of warm dry areas of western North America -12232114 20 n 02 heartleaf_manzanita 0 Arctostaphylos_andersonii 0 001 @ 12231918 n 0000 | erect California shrub having leaves with heart-shaped lobes at the base -12232280 20 n 02 Parry_manzanita 0 Arctostaphylos_manzanita 0 001 @ 12231918 n 0000 | erect treelike shrub forming dense thickets and having drooping panicles of white or pink flowers and red berrylike drupes; California -12232503 20 n 03 downy_manzanita 0 woolly_manzanita 0 Arctostaphylos_tomentosa 0 001 @ 12231918 n 0000 | erect openly branched California shrub whose twigs are woolly when young -12232683 20 n 02 Bruckenthalia 0 genus_Bruckenthalia 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12232851 n 0000 | a genus containing only one species: spike heath -12232851 20 n 02 spike_heath 0 Bruckenthalia_spiculifolia 0 002 @ 12226932 n 0000 #m 12232683 n 0000 | small evergreen mat-forming shrub of southern Europe and Asia Minor having stiff stems and terminal clusters of small bell-shaped flowers -12233094 20 n 01 genus_Bryanthus 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12233249 n 0000 | a genus allied to and once included in genus Phyllodoce -12233249 20 n 01 bryanthus 0 002 @ 13112664 n 0000 #m 12233094 n 0000 | procumbent Old World mat-forming evergreen shrub with racemes of pinkish-white flowers -12233410 20 n 02 Calluna 0 genus_Calluna 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12233529 n 0000 | one species -12233529 20 n 05 heather 0 ling 1 Scots_heather 0 broom 2 Calluna_vulgaris 0 002 @ 12226932 n 0000 #m 12233410 n 0000 | common Old World heath represented by many varieties; low evergreen grown widely in the northern hemisphere -12233759 20 n 02 Cassiope 0 genus_Cassiope 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12233998 n 0000 | low tufted evergreen shrubs of colder parts of north temperate regions having moss-like foliage and nodding white or pink flowers -12233998 20 n 02 white_heather 0 Cassiope_mertensiana 0 002 @ 12226932 n 0000 #m 12233759 n 0000 | heath of mountains of western United States having bell-shaped white flowers -12234176 20 n 02 Chamaedaphne 0 genus_Chamaedaphne 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12234318 n 0000 | one species: leatherleaf -12234318 20 n 02 leatherleaf 0 Chamaedaphne_calyculata 0 002 @ 13112664 n 0000 #m 12234176 n 0000 | north temperate bog shrub with evergreen leathery leaves and small white cylindrical flowers -12234513 20 n 02 Daboecia 0 genus_Daboecia 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12234669 n 0000 | a dicotyledonous genus of the family Ericaceae -12234669 20 n 03 Connemara_heath 0 St._Dabeoc's_heath 0 Daboecia_cantabrica 0 002 @ 12226932 n 0000 #m 12234513 n 0000 | low straggling evergreen shrub of western Europe represented by several varieties with flowers from white to rose-purple -12234913 20 n 02 Epigaea 0 genus_Epigaea 0 002 @ 11575425 n 0000 #m 12226322 n 0000 | small creeping evergreen shrubs: trailing arbutus -12235051 20 n 03 trailing_arbutus 0 mayflower 0 Epigaea_repens 0 001 @ 13112664 n 0000 | low-growing evergreen shrub of eastern North America with leathery leaves and clusters of fragrant pink or white flowers -12235263 20 n 02 Gaultheria 0 genus_Gaultheria 0 005 @ 11575425 n 0000 #m 12226322 n 0000 %m 12235479 n 0000 %m 12235765 n 0000 %m 12236160 n 0000 | widely distributed genus of creeping or upright evergreen shrubs -12235479 20 n 04 creeping_snowberry 0 moxie_plum 0 maidenhair_berry 0 Gaultheria_hispidula 0 002 @ 13118569 n 0000 #m 12235263 n 0000 | slow-growing procumbent evergreen shrublet of northern North America and Japan having white flowers and numerous white fleshy rough and hairy seeds -12235765 20 n 08 teaberry 0 wintergreen 2 checkerberry 0 mountain_tea 0 groundberry 1 ground-berry 1 creeping_wintergreen 0 Gaultheria_procumbens 0 004 @ 13118569 n 0000 #m 12235263 n 0000 %p 07743723 n 0000 %s 07812913 n 0000 | creeping shrub of eastern North America having white bell-shaped flowers followed by spicy red berrylike fruit and shiny aromatic leaves that yield wintergreen oil -12236160 20 n 03 salal 0 shallon 0 Gaultheria_shallon 0 002 @ 13112664 n 0000 #m 12235263 n 0000 | small evergreen shrub of Pacific coast of North America having edible dark purple grape-sized berries -12236363 20 n 02 Gaylussacia 0 genus_Gaylussacia 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12236546 n 0000 | deciduous or evergreen shrubs of North America: black huckleberries -12236546 20 n 01 huckleberry 1 005 @ 13112664 n 0000 #m 12236363 n 0000 ~ 12236768 n 0000 ~ 12236977 n 0000 ~ 12237152 n 0000 | any of several shrubs of the genus Gaylussacia bearing small berries resembling blueberries -12236768 20 n 02 black_huckleberry 0 Gaylussacia_baccata 0 002 @ 12236546 n 0000 %p 07743384 n 0000 | low shrub of the eastern United States bearing shiny black edible fruit; best known of the huckleberries -12236977 20 n 03 dangleberry 0 dangle-berry 0 Gaylussacia_frondosa 0 001 @ 12236546 n 0000 | huckleberry of the eastern United States with pink flowers and sweet blue fruit -12237152 20 n 02 box_huckleberry 0 Gaylussacia_brachycera 0 001 @ 12236546 n 0000 | creeping evergreen shrub of southeastern United States having small shiny boxlike leaves and flavorless berries -12237350 20 n 01 genus_Kalmia 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12237486 n 0000 | erect evergreen shrubs: mountain laurel -12237486 20 n 01 kalmia 0 005 @ 13112664 n 0000 #m 12237350 n 0000 ~ 12237641 n 0000 ~ 12237855 n 0000 ~ 12238073 n 0000 | any plant of the genus Kalmia -12237641 20 n 05 mountain_laurel 1 wood_laurel 2 American_laurel 0 calico_bush 0 Kalmia_latifolia 0 001 @ 12237486 n 0000 | a North American evergreen shrub having glossy leaves and white or rose-colored flowers -12237855 20 n 04 swamp_laurel 1 bog_laurel 0 bog_kalmia 0 Kalmia_polifolia 0 001 @ 12237486 n 0000 | laurel of bogs of northwestern United States having small purple flowers and pale leaves that are glaucous beneath -12238073 20 n 04 sheep_laurel 0 pig_laurel 0 lambkill 0 Kalmia_angustifolia 0 001 @ 12237486 n 0000 | North American dwarf shrub resembling mountain laurel but having narrower leaves and small red flowers; poisonous to young stock -12238306 20 n 02 Ledum 0 genus_Ledum 0 005 @ 11575425 n 0000 #m 12226322 n 0000 %m 12238491 n 0000 %m 12238756 n 0000 %m 12238913 n 0000 | evergreen shrubs of north temperate regions -12238491 20 n 03 Labrador_tea 1 crystal_tea 0 Ledum_groenlandicum 0 002 @ 13112664 n 0000 #m 12238306 n 0000 | evergreen shrub of eastern North America having white or creamy bell-shaped flowers and dark green hairy leaves used for tea during American Revolution -12238756 20 n 02 trapper's_tea 0 glandular_Labrador_tea 0 002 @ 13112664 n 0000 #m 12238306 n 0000 | a Rocky Mountain shrub similar to Ledum groenlandicum -12238913 20 n 03 wild_rosemary 0 marsh_tea 0 Ledum_palustre 0 002 @ 13112664 n 0000 #m 12238306 n 0000 | bog shrub of northern and central Europe and eastern Siberia to Korea and Japan -12239100 20 n 02 Leiophyllum 0 genus_Leiophyllum 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12239240 n 0000 | one species: sand myrtle -12239240 20 n 02 sand_myrtle 0 Leiophyllum_buxifolium 0 002 @ 13112664 n 0000 #m 12239100 n 0000 | low-growing evergreen shrub of New Jersey to Florida grown for its many white star-shaped flowers and glossy foliage -12239458 20 n 01 genus_Leucothoe 0 005 @ 11575425 n 0000 #m 12226322 n 0000 %m 12239647 n 0000 %m 12239880 n 0000 %m 12240150 n 0000 | American and Asiatic deciduous and evergreen shrubs -12239647 20 n 01 leucothoe 0 002 @ 13112664 n 0000 #m 12239458 n 0000 | any plant of the genus Leucothoe; grown for their beautiful white flowers; glossy foliage contains a poisonous substance similar to that found in genus Kalmia -12239880 20 n 05 dog_laurel 0 dog_hobble 0 switch-ivy 0 Leucothoe_fontanesiana 0 Leucothoe_editorum 0 002 @ 13112664 n 0000 #m 12239458 n 0000 | fast-growing evergreen shrub of southeastern United States having arching interlaced branches and racemes of white flowers -12240150 20 n 02 sweet_bells 0 Leucothoe_racemosa 0 002 @ 13112664 n 0000 #m 12239458 n 0000 | bushy deciduous shrub of the eastern United States with long racemes of pinkish flowers -12240335 20 n 02 Loiseleuria 0 genus_Loiseleuria 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12240477 n 0000 | one species: alpine azalea -12240477 20 n 03 alpine_azalea 0 mountain_azalea 0 Loiseleuria_procumbens 0 002 @ 13112664 n 0000 #m 12240335 n 0000 | creeping mat-forming evergreen shrub of high mountain regions of northern hemisphere grown for its rose-pink flowers -12240715 20 n 02 Lyonia 0 genus_Lyonia 0 005 @ 11575425 n 0000 #m 12226322 n 0000 %m 12240965 n 0000 %m 12241192 n 0000 %m 12241426 n 0000 | evergreen or deciduous shrubs or small trees of United States to Antilles and eastern Asia to the Himalaya -12240965 20 n 03 staggerbush 0 stagger_bush 0 Lyonia_mariana 0 002 @ 13112664 n 0000 #m 12240715 n 0000 | deciduous shrub of coastal plain of the eastern United States having nodding pinkish-white flowers; poisonous to stock -12241192 20 n 05 maleberry 0 male_berry 0 privet_andromeda 0 he-huckleberry 0 Lyonia_ligustrina 0 002 @ 13112664 n 0000 #m 12240715 n 0000 | deciduous much-branched shrub with dense downy panicles of small bell-shaped white flowers -12241426 20 n 04 fetterbush 1 fetter_bush 0 shiny_lyonia 0 Lyonia_lucida 0 002 @ 13112664 n 0000 #m 12240715 n 0000 | showy evergreen shrub of southeastern United States with shiny leaves and angled branches and clusters of pink to reddish flowers that resemble an umbel -12241699 20 n 02 Menziesia 0 genus_Menziesia 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12241880 n 0000 %m 12242123 n 0000 | deciduous shrubs of North America and eastern Asia -12241880 20 n 03 false_azalea 0 fool's_huckleberry 0 Menziesia_ferruginea 0 002 @ 13112664 n 0000 #m 12241699 n 0000 | straggling shrub of northwestern North America having foliage with a bluish tinge and umbels of small bell-shaped flowers -12242123 20 n 03 minniebush 0 minnie_bush 0 Menziesia_pilosa 0 002 @ 13112664 n 0000 #m 12241699 n 0000 | low shrub of the eastern United States with downy twigs -12242287 20 n 02 Oxydendrum 0 genus_Oxydendrum 0 003 @ 11575425 n 0000 #m 12226322 n 0000 %m 12242409 n 0000 | sourwood -12242409 20 n 04 sorrel_tree 2 sourwood 0 titi 2 Oxydendrum_arboreum 0 002 @ 13109733 n 0000 #m 12242287 n 0000 | deciduous shrubby tree of eastern North America having deeply fissured bark and sprays of small fragrant white flowers and sour-tasting leaves -12242668 20 n 02 Phyllodoce 0 genus_Phyllodoce 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12242850 n 0000 %m 12243109 n 0000 | small genus of evergreen Arctic and alpine shrubs -12242850 20 n 03 mountain_heath 0 Phyllodoce_caerulea 0 Bryanthus_taxifolius 0 002 @ 12226932 n 0000 #m 12242668 n 0000 | small shrub with tiny evergreen leaves and pink or purple flowers; Alpine summits and high ground in Asia and Europe and United States -12243109 20 n 03 purple_heather 0 Brewer's_mountain_heather 0 Phyllodoce_breweri 0 002 @ 12226932 n 0000 #m 12242668 n 0000 | semi-prostrate evergreen herb of western United States -12243292 20 n 02 Pieris 0 genus_Pieris 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12243459 n 0000 %m 12243693 n 0000 | decorative evergreen shrubs of woody vines -12243459 20 n 04 andromeda 2 Japanese_andromeda 0 lily-of-the-valley_tree 0 Pieris_japonica 0 002 @ 13112664 n 0000 #m 12243292 n 0000 | broad-leaved evergreen Asiatic shrub with glossy leaves and drooping clusters of white flowers -12243693 20 n 04 fetterbush 2 mountain_fetterbush 0 mountain_andromeda 0 Pieris_floribunda 0 002 @ 13112664 n 0000 #m 12243292 n 0000 | ornamental evergreen shrub of southeastern United States having small white bell-shaped flowers -12243927 20 n 01 genus_Rhododendron 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12244153 n 0000 %m 12245067 n 0000 | large genus of evergreen shrubs native to cooler regions of the northern hemisphere having showy flowers -12244153 20 n 01 rhododendron 0 006 @ 13112664 n 0000 #m 12243927 n 0000 ~ 12244458 n 0000 ~ 12244650 n 0000 ~ 12244819 n 0000 ~ 12245319 n 0000 | any shrub of the genus Rhododendron: evergreen shrubs or small shrubby trees having leathery leaves and showy clusters of campanulate (bell-shaped) flowers -12244458 20 n 02 coast_rhododendron 0 Rhododendron_californicum 0 001 @ 12244153 n 0000 | medium-sized rhododendron of Pacific coast of North America having large rosy brown-spotted flowers -12244650 20 n 02 rosebay 0 Rhododendron_maxima 0 001 @ 12244153 n 0000 | late-spring-blooming rhododendron of eastern North America having rosy to pink-purple flowers -12244819 20 n 04 swamp_azalea 0 swamp_honeysuckle 0 white_honeysuckle 2 Rhododendron_viscosum 0 001 @ 12244153 n 0000 | shrub growing in swamps throughout the eastern United States and having small white to pinkish flowers resembling honeysuckle -12245067 20 n 03 subgenus_Azalea 0 Azaleastrum 0 subgenus_Azaleastrum 0 003 @ 11575425 n 0000 #m 12243927 n 0000 %m 12245319 n 0000 | group of evergreen or deciduous shrubs formerly considered a separate genus; now included in the genus Rhododendron -12245319 20 n 01 azalea 0 002 @ 12244153 n 0000 #m 12245067 n 0000 | any of numerous ornamental shrubs grown for their showy flowers of various colors -12245472 20 n 02 Vaccinium 0 genus_Vaccinium 0 004 @ 11575425 n 0000 #m 12226322 n 0000 %m 12245695 n 0000 %m 12246232 n 0000 | evergreen or deciduous berry-bearing shrubs of northern hemisphere: cranberries; blueberries -12245695 20 n 01 cranberry 0 005 @ 13112664 n 0000 #m 12245472 n 0000 ~ 12245885 n 0000 ~ 12246037 n 0000 ~ 12249542 n 0000 | any of numerous shrubs of genus Vaccinium bearing cranberries -12245885 20 n 03 American_cranberry 0 large_cranberry 0 Vaccinium_macrocarpon 0 002 @ 12245695 n 0000 %p 07743902 n 0000 | trailing red-fruited plant -12246037 20 n 03 European_cranberry 0 small_cranberry 0 Vaccinium_oxycoccus 0 001 @ 12245695 n 0000 | small red-fruited trailing cranberry of Arctic and cool regions of the northern hemisphere -12246232 20 n 02 blueberry 0 blueberry_bush 0 016 @ 13112664 n 0000 #m 12245472 n 0000 ~ 12246641 n 0000 ~ 12246773 n 0000 ~ 12246941 n 0000 ~ 12247202 n 0000 ~ 12247407 n 0000 ~ 12247664 n 0000 ~ 12247963 n 0000 ~ 12248141 n 0000 ~ 12248359 n 0000 ~ 12248574 n 0000 ~ 12248780 n 0000 ~ 12248941 n 0000 ~ 12249122 n 0000 ~ 12249294 n 0000 | any of numerous shrubs of the genus Vaccinium bearing blueberries -12246641 20 n 01 huckleberry 2 001 @ 12246232 n 0000 | any of various dark-fruited as distinguished from blue-fruited blueberries -12246773 20 n 03 farkleberry 0 sparkleberry 0 Vaccinium_arboreum 0 001 @ 12246232 n 0000 | shrub or small tree of eastern United States having black inedible berries -12246941 20 n 04 low-bush_blueberry 0 low_blueberry 0 Vaccinium_angustifolium 0 Vaccinium_pennsylvanicum 0 001 @ 12246232 n 0000 | low-growing deciduous shrub of northeastern North America having flowers in compact racemes and bearing sweet dark blue berries -12247202 20 n 04 rabbiteye_blueberry 0 rabbit-eye_blueberry 0 rabbiteye 0 Vaccinium_ashei 0 001 @ 12246232 n 0000 | shrub of southeastern United States grown commercially especially for canning industry -12247407 20 n 03 dwarf_bilberry 0 dwarf_blueberry 0 Vaccinium_caespitosum 0 002 @ 12246232 n 0000 %p 07743544 n 0000 | low-growing tufted deciduous shrub of northern and alpine North America having pink to coral-red flowers followed by sweet blue berries -12247664 20 n 04 high-bush_blueberry 0 tall_bilberry 0 swamp_blueberry 0 Vaccinium_corymbosum 0 002 @ 12246232 n 0000 %p 07743544 n 0000 | high-growing deciduous shrub of eastern North America bearing edible blueish to blackish berries with a distinct bloom; source of most cultivated blueberries -12247963 20 n 02 evergreen_blueberry 0 Vaccinium_myrsinites 0 001 @ 12246232 n 0000 | shrub of the eastern United States having shining evergreen leaves and bluish-black fruit -12248141 20 n 02 evergreen_huckleberry 0 Vaccinium_ovatum 0 001 @ 12246232 n 0000 | stiff bushy evergreen shrub of western North America having sour black berries and glossy green foliage used in floral arrangements -12248359 20 n 04 bilberry 1 thin-leaved_bilberry 0 mountain_blue_berry 0 Viccinium_membranaceum 0 001 @ 12246232 n 0000 | erect blueberry of western United States having solitary flowers and somewhat sour berries -12248574 20 n 05 bilberry 2 whortleberry 0 whinberry 0 blaeberry 0 Viccinium_myrtillus 0 002 @ 12246232 n 0000 %p 07743224 n 0000 | erect European blueberry having solitary flowers and blue-black berries -12248780 20 n 04 bog_bilberry 0 bog_whortleberry 0 moor_berry 0 Vaccinium_uliginosum_alpinum 0 001 @ 12246232 n 0000 | an evergreen shrub with leathery leaves -12248941 20 n 03 dryland_blueberry 0 dryland_berry 0 Vaccinium_pallidum 0 001 @ 12246232 n 0000 | low deciduous shrub of the eastern United States bearing dark blue sweet berries -12249122 20 n 04 grouseberry 0 grouse-berry 0 grouse_whortleberry 0 Vaccinium_scoparium 0 001 @ 12246232 n 0000 | shrub of northwestern North America bearing red berries -12249294 20 n 03 deerberry 0 squaw_huckleberry 0 Vaccinium_stamineum 0 001 @ 12246232 n 0000 | small branching blueberry common in marshy areas of the eastern United States having greenish or yellowish unpalatable berries reputedly eaten by deer -12249542 20 n 07 cowberry 0 mountain_cranberry 0 lingonberry 0 lingenberry 0 lingberry 0 foxberry 0 Vaccinium_vitis-idaea 0 002 @ 12245695 n 0000 %p 07744057 n 0000 | low evergreen shrub of high north temperate regions of Europe and Asia and America bearing red edible berries -12249821 20 n 03 Clethraceae 0 family_Clethraceae 0 white-alder_family 0 003 @ 11565385 n 0000 #m 12226009 n 0000 %m 12249993 n 0000 | coextensive with the genus Clethra -12249993 20 n 02 Clethra 0 genus_Clethra 0 002 @ 11567411 n 0000 #m 12249821 n 0000 | type and sole genus of the Clethraceae; deciduous shrubs or small trees: white alder, summer-sweet -12250180 20 n 05 sweet_pepperbush 0 pepper_bush 0 summer_sweet 0 white_alder 2 Clethra_alnifolia 0 001 @ 13112664 n 0000 | shrub of eastern and southern coastal United States having beautiful racemes of spice-scented white flowers -12250413 20 n 03 Diapensiaceae 0 family_Diapensiaceae 0 diapensia_family 0 006 @ 11565385 n 0000 #m 12226009 n 0000 %m 12250874 n 0000 %m 12251137 n 0000 %m 12251577 n 0000 %m 12251997 n 0000 | north temperate low evergreen plants; in some classifications placed in its own order Diapensiales -12250708 20 n 02 Diapensiales 0 order_Diapensiales 0 002 @ 11534677 n 0000 #m 11665781 n 0000 | used in some classifications: coextensive with family Diapensiaceae -12250874 20 n 01 genus_Diapensia 0 003 @ 11575425 n 0000 #m 12250413 n 0000 %m 12251001 n 0000 | type genus of Diapensiaceae -12251001 20 n 01 diapensia 0 002 @ 13118707 n 0000 #m 12250874 n 0000 | any boreal low-growing evergreen plant of the genus Diapensia -12251137 20 n 01 genus_Galax 0 003 @ 11575425 n 0000 #m 12250413 n 0000 %m 12251278 n 0000 | evergreen herbs of southeastern United States -12251278 20 n 06 galax 0 galaxy 0 wandflower 1 beetleweed 0 coltsfoot 1 Galax_urceolata 0 002 @ 12205694 n 0000 #m 12251137 n 0000 | tufted evergreen perennial herb having spikes of tiny white flowers and glossy green round to heart-shaped leaves that become coppery to maroon or purplish in fall -12251577 20 n 02 Pyxidanthera 0 genus_Pyxidanthera 0 003 @ 11575425 n 0000 #m 12250413 n 0000 %m 12251740 n 0000 | one species: pyxie; the eastern United States -12251740 20 n 04 pyxie 0 pixie 0 pixy 0 Pyxidanthera_barbulata 0 002 @ 13112664 n 0000 #m 12251577 n 0000 | creeping evergreen shrub having narrow overlapping leaves and early white star-shaped flowers; of the pine barrens of New Jersey and the Carolinas -12251997 20 n 01 genus_Shortia 0 003 @ 11575425 n 0000 #m 12250413 n 0000 %m 12252168 n 0000 | evergreen perennial herbs of North America and eastern Asia: oconee bells -12252168 20 n 01 shortia 0 003 @ 11669921 n 0000 #m 12251997 n 0000 ~ 12252383 n 0000 | any plant of the genus Shortia; evergreen perennial herbs with smooth leathery basal leaves and showy white solitary flowers -12252383 20 n 02 oconee_bells 0 Shortia_galacifolia 0 001 @ 12252168 n 0000 | plant of southeastern United States having solitary white funnel-shaped flowers flushed with pink and large glossy green leaves that turn bronze-red in fall -12252620 20 n 03 Epacridaceae 0 family_Epacridaceae 0 epacris_family 0 007 @ 11565385 n 0000 #m 12226009 n 0000 %m 12252866 n 0000 %m 12253083 n 0000 %m 12254014 n 0000 %m 12254478 n 0000 %m 12255086 n 0000 | Australasian shrubs or small trees -12252866 20 n 01 Australian_heath 0 005 @ 13112664 n 0000 #m 12252620 n 0000 ~ 12253229 n 0000 ~ 12254667 n 0000 ~ 12254891 n 0000 | any heathlike plant of the family Epacridaceae; most are of the Australian region -12253083 20 n 01 genus_Epacris 0 003 @ 11575425 n 0000 #m 12252620 n 0000 %m 12253229 n 0000 | type genus of the Epacridaceae: Australian heath -12253229 20 n 01 epacris 0 005 @ 12252866 n 0000 #m 12253083 n 0000 ~ 12253487 n 0000 ~ 12253664 n 0000 ~ 12253835 n 0000 | any heathlike evergreen shrub of the genus Epacris grown for their showy and crowded spikes of small bell-shaped or tubular flowers -12253487 20 n 02 common_heath 1 Epacris_impressa 0 001 @ 12253229 n 0000 | spindly upright shrub of southern Australia and Tasmania having white to rose or purple-red flowers -12253664 20 n 03 common_heath 2 blunt-leaf_heath 0 Epacris_obtusifolia 0 001 @ 12253229 n 0000 | small erect shrub of Australia and Tasmania with fragrant ivory flowers -12253835 20 n 02 Port_Jackson_heath 0 Epacris_purpurascens 0 001 @ 12253229 n 0000 | small shrub of southern and western Australia having pinkish to rosy purple tubular flowers -12254014 20 n 02 Astroloma 0 genus_Astroloma 0 003 @ 11575425 n 0000 #m 12252620 n 0000 %m 12254168 n 0000 | evergreen shrubs of Australia and Tasmania -12254168 20 n 06 native_cranberry 0 groundberry 2 ground-berry 2 cranberry_heath 0 Astroloma_humifusum 0 Styphelia_humifusum 0 002 @ 13112664 n 0000 #m 12254014 n 0000 | small prostrate or ascending shrub having scarlet flowers and succulent fruit resembling cranberries; sometimes placed in genus Styphelia -12254478 20 n 02 Richea 0 genus_Richea 0 004 @ 11575425 n 0000 #m 12252620 n 0000 %m 12254667 n 0000 %m 12254891 n 0000 | evergreen trees or shrubs of mountains of Australia and Tasmania -12254667 20 n 02 Australian_grass_tree 2 Richea_dracophylla 0 002 @ 12252866 n 0000 #m 12254478 n 0000 | stout Australian shrub with narrow leaves crowded at ends of branches and terminal clusters of white or pink flowers -12254891 20 n 03 tree_heath 2 grass_tree 2 Richea_pandanifolia 0 002 @ 12252866 n 0000 #m 12254478 n 0000 | gaunt Tasmanian evergreen shrubby tree with slender tapering leaves 3 to 5 feet long -12255086 20 n 02 Styphelia 0 genus_Styphelia 0 003 @ 11575425 n 0000 #m 12252620 n 0000 %m 12255225 n 0000 | Australian heathlike shrubs -12255225 20 n 02 pink_fivecorner 0 Styphelia_triflora 0 002 @ 13112664 n 0000 #m 12255086 n 0000 | heathlike shrub of southwestern Australia grown for its sharply scented foliage and pink flowers followed by pentagonal fruit -12255452 20 n 02 Lennoaceae 0 family_Lennoaceae 0 002 @ 11565385 n 0000 #m 12226009 n 0000 | family of fleshy parasitic herbs lacking green foliage and having heads of small flowers; California and Mexico -12255659 20 n 03 Pyrolaceae 0 family_Pyrolaceae 0 wintergreen_family 0 006 @ 11565385 n 0000 #m 12226009 n 0000 %m 12255934 n 0000 %m 12257140 n 0000 %m 12257343 n 0000 %m 12257920 n 0000 | evergreen herbs of temperate regions: genera Pyrola, Chimaphila, Moneses, Orthilia -12255934 20 n 01 genus_Pyrola 0 003 @ 11575425 n 0000 #m 12255659 n 0000 %m 12256112 n 0000 | short-stemmed perennial herbs of cool or temperate regions: wintergreen; shinleaf -12256112 20 n 02 wintergreen 0 pyrola 0 006 @ 12205694 n 0000 #m 12255934 n 0000 ~ 12256325 n 0000 ~ 12256522 n 0000 ~ 12256708 n 0000 ~ 12256920 n 0000 | any of several evergreen perennials of the genus Pyrola -12256325 20 n 03 false_wintergreen 0 Pyrola_americana 0 Pyrola_rotundifolia_americana 0 001 @ 12256112 n 0000 | evergreen of eastern North America with leathery leaves and numerous white flowers -12256522 20 n 02 lesser_wintergreen 0 Pyrola_minor 0 001 @ 12256112 n 0000 | the common wintergreen having many-flowered racemes of pink-tinged white flowers; Europe and North America -12256708 20 n 03 wild_lily_of_the_valley 1 shinleaf 2 Pyrola_elliptica 0 001 @ 12256112 n 0000 | North American evergreen with small pinkish bell-shaped flowers and oblong leaves used formerly for shinplasters -12256920 20 n 02 wild_lily_of_the_valley 2 Pyrola_rotundifolia 0 001 @ 12256112 n 0000 | evergreen with rounded leaves and very fragrant creamy-white flowers; widely distributed in northern parts of Old and New Worlds -12257140 20 n 02 Orthilia 0 genus_Orthilia 0 002 @ 11575425 n 0000 #m 12255659 n 0000 | a shrubby perennial rhizomatous evergreen herb; grows in damp coniferous woodlands in northern temperate regions -12257343 20 n 02 Chimaphila 0 genus_Chimaphila 0 003 @ 11575425 n 0000 #m 12255659 n 0000 %m 12257570 n 0000 | small genus of evergreen herbs with long creeping rootstocks and shining leaves; North America; Europe; east Asia -12257570 20 n 02 pipsissewa 0 prince's_pine 0 003 @ 12205694 n 0000 #m 12257343 n 0000 ~ 12257725 n 0000 | any of several plants of the genus Chimaphila -12257725 20 n 04 love-in-winter 0 western_prince's_pine 0 Chimaphila_umbellata 0 Chimaphila_corymbosa 0 001 @ 12257570 n 0000 | Eurasian herb with white or pinkish flowers in a terminal corymb -12257920 20 n 02 Moneses 0 genus_Moneses 0 003 @ 11575425 n 0000 #m 12255659 n 0000 %m 12258101 n 0000 | one species: one-flowered wintergreen; sometimes included in genus Pyrola -12258101 20 n 04 one-flowered_wintergreen 0 one-flowered_pyrola 0 Moneses_uniflora 0 Pyrola_uniflora 0 002 @ 12205694 n 0000 #m 12257920 n 0000 | delicate evergreen dwarf herb of north temperate regions having a solitary white terminal flower; sometimes placed in genus Pyrola -12258380 20 n 02 Monotropaceae 0 family_Monotropaceae 0 005 @ 11565385 n 0000 #m 12226009 n 0000 %m 12258663 n 0000 %m 12259122 n 0000 %m 12259615 n 0000 | used in some classification for saprophytic herbs sometimes included in the family Pyrolaceae: genera Monotropa and Sarcodes -12258663 20 n 02 Monotropa 0 genus_Monotropa 0 004 @ 11575425 n 0000 #m 12258380 n 0000 %m 12258885 n 0000 %m 12259316 n 0000 | leafless fleshy saprophytic plants; in some classifications placed in the family Pyrolaceae -12258885 20 n 03 Indian_pipe 0 waxflower 1 Monotropa_uniflora 0 002 @ 11672400 n 0000 #m 12258663 n 0000 | small waxy white or pinkish-white saprophytic woodland plant having scalelike leaves and a nodding flower; turns black with age -12259122 20 n 02 Hypopitys 0 genus_Hypopitys 0 002 @ 11575425 n 0000 #m 12258380 n 0000 | term used in some classifications for the pinesaps, which are usually included in the genus Monotropa -12259316 20 n 03 pinesap 0 false_beachdrops 0 Monotropa_hypopithys 0 002 @ 11672400 n 0000 #m 12258663 n 0000 | fleshy tawny or reddish saprophytic herb resembling the Indian pipe and growing in woodland humus of eastern North America; in some classifications placed in a separate genus Hypopitys -12259615 20 n 02 Sarcodes 0 genus_Sarcodes 0 003 @ 11575425 n 0000 #m 12258380 n 0000 %m 12259788 n 0000 | snow plant; in some classifications placed in family Pyrolaceae -12259788 20 n 02 snow_plant 0 Sarcodes_sanguinea 0 002 @ 11672400 n 0000 #m 12259615 n 0000 | a fleshy bright red saprophytic plant of the mountains of western North America that appears in early spring while snow is on the ground -12260021 20 n 02 Fagales 0 order_Fagales 0 004 @ 11534677 n 0000 #m 12313005 n 0000 %m 12260208 n 0000 %m 12280487 n 0000 | an order of dicotyledonous trees of the subclass Hamamelidae -12260208 20 n 03 Fagaceae 0 family_Fagaceae 0 beech_family 0 009 @ 11564734 n 0000 #m 12260021 n 0000 %m 12260593 n 0000 %m 12262327 n 0000 %m 12264254 n 0000 %m 12264621 n 0000 %m 12265266 n 0000 %m 12265900 n 0000 %m 12268096 n 0000 | chiefly monoecious trees and shrubs: beeches; chestnuts; oaks; genera Castanea, Castanopsis, Chrysolepis, Fagus, Lithocarpus, Nothofagus, Quercus -12260593 20 n 02 Fagus 0 genus_Fagus 0 008 @ 11573173 n 0000 #m 12260208 n 0000 %m 12260799 n 0000 %m 12261359 n 0000 %m 12261571 n 0000 %m 12261808 n 0000 %m 12262018 n 0000 %m 12262185 n 0000 | beeches -12260799 20 n 02 beech 0 beech_tree 0 009 @ 13104059 n 0000 #m 12260593 n 0000 %p 07771082 n 0000 %s 12261179 n 0000 ~ 12261359 n 0000 ~ 12261571 n 0000 ~ 12261808 n 0000 ~ 12262018 n 0000 ~ 12262185 n 0000 | any of several large deciduous trees with rounded spreading crowns and smooth grey bark and small sweet edible triangular nuts enclosed in burs; north temperate regions -12261179 20 n 02 beech 2 beechwood 0 002 @ 15098161 n 0000 #s 12260799 n 0000 | wood of any of various beech trees; used for flooring and containers and plywood and tool handles -12261359 20 n 03 common_beech 0 European_beech 0 Fagus_sylvatica 0 002 @ 12260799 n 0000 #m 12260593 n 0000 | large European beech with minutely-toothed leaves; widely planted as an ornamental in North America -12261571 20 n 05 copper_beech 0 purple_beech 0 Fagus_sylvatica_atropunicea 0 Fagus_purpurea 0 Fagus_sylvatica_purpurea 0 002 @ 12260799 n 0000 #m 12260593 n 0000 | variety of European beech with shining purple or copper-colored leaves -12261808 20 n 05 American_beech 0 white_beech 0 red_beech 1 Fagus_grandifolia 0 Fagus_americana 0 002 @ 12260799 n 0000 #m 12260593 n 0000 | North American forest tree with light green leaves and edible nuts -12262018 20 n 03 weeping_beech 0 Fagus_pendula 0 Fagus_sylvatica_pendula 0 002 @ 12260799 n 0000 #m 12260593 n 0000 | variety of European beech with pendulous limbs -12262185 20 n 01 Japanese_beech 0 002 @ 12260799 n 0000 #m 12260593 n 0000 | a beech native to Japan having soft light yellowish-brown wood -12262327 20 n 02 Castanea 0 genus_Castanea 0 008 @ 11573173 n 0000 #m 12260208 n 0000 %m 12262553 n 0000 %m 12263038 n 0000 %m 12263410 n 0000 %m 12263588 n 0000 %m 12263738 n 0000 %m 12263987 n 0000 | chestnuts; chinkapins -12262553 20 n 02 chestnut 0 chestnut_tree 0 010 @ 13104059 n 0000 #m 12262327 n 0000 %p 07772274 n 0000 %s 12262905 n 0000 ~ 12263038 n 0000 ~ 12263204 n 0000 ~ 12263410 n 0000 ~ 12263588 n 0000 ~ 12263738 n 0000 ~ 12263987 n 0000 | any of several attractive deciduous trees yellow-brown in autumn; yield a hard wood and edible nuts in a prickly bur -12262905 20 n 01 chestnut 2 002 @ 15098161 n 0000 #s 12262553 n 0000 | wood of any of various chestnut trees of the genus Castanea -12263038 20 n 03 American_chestnut 0 American_sweet_chestnut 0 Castanea_dentata 0 002 @ 12262553 n 0000 #m 12262327 n 0000 | large tree found from Maine to Alabama -12263204 20 n 04 European_chestnut 0 sweet_chestnut 0 Spanish_chestnut 0 Castanea_sativa 0 001 @ 12262553 n 0000 | wild or cultivated throughout southern Europe, northwestern Africa and southwestern Asia -12263410 20 n 02 Chinese_chestnut 0 Castanea_mollissima 0 002 @ 12262553 n 0000 #m 12262327 n 0000 | a small tree with small sweet nuts; wild or naturalized in Korea and China -12263588 20 n 02 Japanese_chestnut 0 Castanea_crenata 0 002 @ 12262553 n 0000 #m 12262327 n 0000 | a spreading tree of Japan that has a short trunk -12263738 20 n 05 Allegheny_chinkapin 0 eastern_chinquapin 0 chinquapin 1 dwarf_chestnut 0 Castanea_pumila 0 003 @ 12262553 n 0000 #m 12262327 n 0000 %p 07772413 n 0000 | shrubby chestnut tree of southeastern United States having small edible nuts -12263987 20 n 04 Ozark_chinkapin 0 Ozark_chinquapin 0 chinquapin 2 Castanea_ozarkensis 0 003 @ 12262553 n 0000 #m 12262327 n 0000 %p 07772413 n 0000 | shrubby tree closely related to the Allegheny chinkapin but with larger leaves; southern midwestern United States -12264254 20 n 02 Castanopsis 0 genus_Castanopsis 0 003 @ 11573173 n 0000 #m 12260208 n 0000 %m 12264512 n 0000 | evergreen trees and shrubs of warm regions valued for their foliage; southeastern United States and eastern Australia and northern New Zealand -12264512 20 n 01 oak_chestnut 0 002 @ 13104059 n 0000 #m 12264254 n 0000 | a tree of the genus Castanopsis -12264621 20 n 02 Chrysolepis 0 genus_Chrysolepis 0 004 @ 11573173 n 0000 #m 12260208 n 0000 %m 12264786 n 0000 %m 12265083 n 0000 | two species: golden chinkapins -12264786 20 n 05 giant_chinkapin 0 golden_chinkapin 0 Chrysolepis_chrysophylla 0 Castanea_chrysophylla 0 Castanopsis_chrysophylla 0 002 @ 13104059 n 0000 #m 12264621 n 0000 | small ornamental evergreen tree of Pacific Coast whose glossy yellow-green leaves are yellow beneath; bears edible nuts -12265083 20 n 02 dwarf_golden_chinkapin 0 Chrysolepis_sempervirens 0 002 @ 13112664 n 0000 #m 12264621 n 0000 | evergreen shrub similar to golden chinkapin; mountains of California -12265266 20 n 02 Lithocarpus 0 genus_Lithocarpus 0 003 @ 11573173 n 0000 #m 12260208 n 0000 %m 12265394 n 0000 | tanbark oaks -12265394 20 n 02 tanbark_oak 0 Lithocarpus_densiflorus 0 003 @ 13104059 n 0000 #m 12265266 n 0000 ~ 12265600 n 0000 | evergreen tree of the Pacific coast area having large leathery leaves; yields tanbark -12265600 20 n 03 Japanese_oak 1 Lithocarpus_glabra 0 Lithocarpus_glaber 0 001 @ 12265394 n 0000 | small evergreen tree of China and Japan -12265740 20 n 01 tanbark 0 001 @ 13162297 n 0000 | bark rich in tannin; bruised and cut in pieces to use for tanning; spent tanbark used as a ground covering -12265900 20 n 02 Nothofagus 0 genus_Nothofagus 0 010 @ 11573173 n 0000 #m 12260208 n 0000 %m 12266217 n 0000 %m 12266644 n 0000 %m 12266796 n 0000 %m 12266984 n 0000 %m 12267133 n 0000 %m 12267265 n 0000 %m 12267411 n 0000 %m 12267534 n 0000 | beeches of temperate southern hemisphere except Africa: southern beech -12266217 20 n 02 southern_beech 0 evergreen_beech 0 009 @ 13104059 n 0000 #m 12265900 n 0000 ~ 12266528 n 0000 ~ 12266644 n 0000 ~ 12266796 n 0000 ~ 12267133 n 0000 ~ 12267265 n 0000 ~ 12267411 n 0000 ~ 12267534 n 0000 | any of various beeches of the southern hemisphere having small usually evergreen leaves -12266528 20 n 02 myrtle_beech 0 Nothofagus_cuninghamii 0 001 @ 12266217 n 0000 | large evergreen tree of Tasmania -12266644 20 n 02 Coigue 0 Nothofagus_dombeyi 0 002 @ 12266217 n 0000 #m 12265900 n 0000 | Chilean evergreen whose leafy boughs are used for thatching -12266796 20 n 01 New_Zealand_beech 0 003 @ 12266217 n 0000 #m 12265900 n 0000 ~ 12266984 n 0000 | any of several tall New Zealand trees of the genus Nothofagus; some yield useful timber -12266984 20 n 02 silver_beech 0 Nothofagus_menziesii 0 002 @ 12266796 n 0000 #m 12265900 n 0000 | New Zealand beech with usually pale silvery bark -12267133 20 n 02 roble_beech 0 Nothofagus_obliqua 0 002 @ 12266217 n 0000 #m 12265900 n 0000 | tall deciduous South American tree -12267265 20 n 02 rauli_beech 0 Nothofagus_procera 0 002 @ 12266217 n 0000 #m 12265900 n 0000 | large Chilean timber tree yielding coarse lumber -12267411 20 n 02 black_beech 0 Nothofagus_solanderi 0 002 @ 12266217 n 0000 #m 12265900 n 0000 | New Zealand forest tree -12267534 20 n 02 hard_beech 0 Nothofagus_truncata 0 002 @ 12266217 n 0000 #m 12265900 n 0000 | tall New Zealand tree yielding very hard wood -12267677 20 n 01 acorn 0 003 @ 13134947 n 0000 #p 12268246 n 0000 %p 12267931 n 0000 | fruit of the oak tree: a smooth thin-walled nut in a woody cup-shaped base -12267841 20 n 01 cup 0 002 @ 13087625 n 0000 ~ 12267931 n 0000 | cup-shaped plant organ -12267931 20 n 02 cupule 0 acorn_cup 0 003 @ 12267841 n 0000 #p 12267677 n 0000 + 00536655 a 0101 | cup-shaped structure of hardened bracts at the base of an acorn -12268096 20 n 02 Quercus 0 genus_Quercus 0 005 @ 11573173 n 0000 #m 12260208 n 0000 %m 12268246 n 0000 %m 12275317 n 0000 %m 12279060 n 0000 | oaks -12268246 20 n 02 oak 0 oak_tree 0 029 @ 13104059 n 0000 #m 12268096 n 0000 %p 12267677 n 0000 %s 12268918 n 0000 ~ 12269241 n 0000 ~ 12269652 n 0000 ~ 12270741 n 0000 ~ 12271187 n 0000 ~ 12271451 n 0000 ~ 12271643 n 0000 ~ 12272432 n 0000 ~ 12272883 n 0000 ~ 12273114 n 0000 ~ 12273344 n 0000 ~ 12273515 n 0000 ~ 12273768 n 0000 ~ 12274151 n 0000 ~ 12274630 n 0000 ~ 12275317 n 0000 ~ 12275489 n 0000 ~ 12276110 n 0000 ~ 12276314 n 0000 ~ 12276872 n 0000 ~ 12277150 n 0000 ~ 12278371 n 0000 ~ 12278650 n 0000 ~ 12278865 n 0000 ~ 12279293 n 0000 ~ 12279458 n 0000 | a deciduous tree of the genus Quercus; has acorns and lobed leaves; "great oaks grow from little acorns" -12268918 20 n 01 oak 2 004 @ 15098161 n 0000 #s 12268246 n 0000 ~ 12269099 n 0000 ~ 12272650 n 0000 | the hard durable wood of any oak; used especially for furniture and flooring -12269099 20 n 01 fumed_oak 0 001 @ 12268918 n 0000 | oak given a weathered appearance by exposure to fumes of ammonia; used for cabinetwork -12269241 20 n 01 live_oak 0 005 @ 12268246 n 0000 ~ 12269406 n 0000 ~ 12270946 n 0000 ~ 12279772 n 0000 ~ 12280060 n 0000 | any of several American evergreen oaks -12269406 20 n 03 coast_live_oak 0 California_live_oak 0 Quercus_agrifolia 0 001 @ 12269241 n 0000 | highly variable often shrubby evergreen oak of coastal zone of western North America having small thick usually spiny-toothed dark-green leaves -12269652 20 n 01 white_oak 0 009 @ 12268246 n 0000 ~ 12270027 n 0000 ~ 12270278 n 0000 ~ 12270460 n 0000 ~ 12272239 n 0000 ~ 12273939 n 0000 ~ 12274358 n 0000 ~ 12276477 n 0000 ~ 12277578 n 0000 | any of numerous Old World and American oaks having 6 to 8 stamens in each floret, acorns that mature in one year and leaf veins that never extend beyond the margin of the leaf -12270027 20 n 02 American_white_oak 0 Quercus_alba 0 001 @ 12269652 n 0000 | large slow-growing deciduous tree of the eastern United States having stout spreading branches and leaves with usually 7 rounded lobes; yields strong and durable hard wood -12270278 20 n 02 Arizona_white_oak 0 Quercus_arizonica 0 001 @ 12269652 n 0000 | semi-evergreen shrub or small tree of Arizona and New Mexico having acorns with hemispherical cups -12270460 20 n 03 swamp_white_oak 0 swamp_oak 1 Quercus_bicolor 0 001 @ 12269652 n 0000 | large deciduous oak of the eastern United States with a flaky bark and leaves that have fewer lobes than other white oaks; yields heavy strong wood used in construction; thrives in wet soil -12270741 20 n 03 European_turkey_oak 0 turkey_oak 4 Quercus_cerris 0 001 @ 12268246 n 0000 | large deciduous tree of central and southern Europe and Asia Minor having lanceolate leaves with spiked lobes -12270946 20 n 05 canyon_oak 0 canyon_live_oak 0 maul_oak 0 iron_oak 2 Quercus_chrysolepis 0 001 @ 12269241 n 0000 | medium-sized evergreen of southwestern United States and northwestern Mexico with oblong leathery often spiny-edged leaves -12271187 20 n 02 scarlet_oak 0 Quercus_coccinea 0 001 @ 12268246 n 0000 | medium-large deciduous tree with a thick trunk found in the eastern United States and southern Canada and having close-grained wood and deeply seven-lobed leaves turning scarlet in autumn -12271451 20 n 03 jack_oak 1 northern_pin_oak 0 Quercus_ellipsoidalis 0 001 @ 12268246 n 0000 | small to medium deciduous oak of east central North America; leaves have sharply pointed lobes -12271643 20 n 01 red_oak 0 004 @ 12268246 n 0000 ~ 12271933 n 0000 ~ 12277800 n 0000 ~ 12278107 n 0000 | any of numerous American oaks having 4 stamens in each floret, acorns requiring two years to mature and leaf veins usually extending beyond the leaf margin to form points or bristles -12271933 20 n 04 southern_red_oak 0 swamp_red_oak 0 turkey_oak 1 Quercus_falcata 0 001 @ 12271643 n 0000 | large round-topped deciduous tree with spreading branches having narrow falcate leaves with deeply sinuate lobes and wood similar to that of northern red oaks; New Jersey to Illinois and southward -12272239 20 n 04 Oregon_white_oak 0 Oregon_oak 0 Garry_oak 0 Quercus_garryana 0 001 @ 12269652 n 0000 | small deciduous tree of western North America with crooked branches and pale grey bark -12272432 20 n 05 holm_oak 0 holm_tree 0 holly-leaved_oak 0 evergreen_oak 0 Quercus_ilex 0 001 @ 12268246 n 0000 | evergreen oak of southern Europe having leaves somewhat resembling those of holly; yields a hard wood -12272650 20 n 01 holm_oak 1 001 @ 12268918 n 0000 | hard wood of the holm oak tree -12272735 20 n 02 bear_oak 0 Quercus_ilicifolia 0 001 @ 12274630 n 0000 | shrubby oak of southeastern United States usually forming dense thickets -12272883 20 n 03 shingle_oak 0 laurel_oak 2 Quercus_imbricaria 0 001 @ 12268246 n 0000 | small deciduous tree of eastern and central United States having leaves that shine like laurel; wood is used in western states for shingles -12273114 20 n 03 bluejack_oak 0 turkey_oak 3 Quercus_incana 0 001 @ 12268246 n 0000 | small semi-evergreen shrubby tree of southeastern United States having hairy young branchlets and leaves narrowing to a slender bristly point -12273344 20 n 02 California_black_oak 0 Quercus_kelloggii 0 001 @ 12268246 n 0000 | large deciduous tree of the Pacific coast having deeply parted bristle-tipped leaves -12273515 20 n 03 American_turkey_oak 0 turkey_oak 2 Quercus_laevis 0 001 @ 12268246 n 0000 | small slow-growing deciduous shrubby tree of dry sandy barrens of southeastern United States having leaves with bristle-tipped lobes resembling turkey's toes -12273768 20 n 03 laurel_oak 1 pin_oak 2 Quercus_laurifolia 0 001 @ 12268246 n 0000 | large nearly semi-evergreen oak of southeastern United States; thrives in damp soil -12273939 20 n 05 California_white_oak 0 valley_oak 0 valley_white_oak 0 roble 1 Quercus_lobata 0 001 @ 12269652 n 0000 | tall graceful deciduous California oak having leathery leaves and slender pointed acorns -12274151 20 n 02 overcup_oak 0 Quercus_lyrata 0 001 @ 12268246 n 0000 | medium-large deciduous timber tree of central and southern United States; acorns deeply immersed in the cup and mature in first year -12274358 20 n 05 bur_oak 0 burr_oak 0 mossy-cup_oak 0 mossycup_oak 0 Quercus_macrocarpa 0 001 @ 12269652 n 0000 | medium to large deciduous oak of central and eastern North America with ovoid acorns deeply immersed in large fringed cups; yields tough close-grained wood -12274630 20 n 01 scrub_oak 0 004 @ 12268246 n 0000 ~ 12272735 n 0000 ~ 12274863 n 0000 ~ 12275888 n 0000 | any of various chiefly American small shrubby oaks often a dominant form on thin dry soils sometimes forming dense thickets -12274863 20 n 04 blackjack_oak 0 blackjack 0 jack_oak 2 Quercus_marilandica 0 001 @ 12274630 n 0000 | a common scrubby deciduous tree of central and southeastern United States having dark bark and broad three-lobed (club-shaped) leaves; tends to form dense thickets -12275131 20 n 02 swamp_chestnut_oak 0 Quercus_michauxii 0 001 @ 12275489 n 0000 | medium to large deciduous tree of moist areas of southeastern United States similar to the basket oak -12275317 20 n 03 Japanese_oak 2 Quercus_mongolica 0 Quercus_grosseserrata 0 002 @ 12268246 n 0000 #m 12268096 n 0000 | oak with moderately light fine-grained wood; Japan -12275489 20 n 01 chestnut_oak 0 005 @ 12268246 n 0000 ~ 12275131 n 0000 ~ 12275675 n 0000 ~ 12276628 n 0000 ~ 12277334 n 0000 | an oak having leaves resembling those of chestnut trees -12275675 20 n 04 chinquapin_oak 0 chinkapin_oak 0 yellow_chestnut_oak 0 Quercus_muehlenbergii 0 001 @ 12275489 n 0000 | medium-sized deciduous tree of the eastern United States that yields a strong durable wood -12275888 20 n 03 myrtle_oak 0 seaside_scrub_oak 0 Quercus_myrtifolia 0 001 @ 12274630 n 0000 | small evergreen shrub or tree of southeastern United States; often forms almost impenetrable thickets in sandy coastal areas -12276110 20 n 03 water_oak 0 possum_oak 0 Quercus_nigra 0 001 @ 12268246 n 0000 | relatively tall deciduous water oak of southeastern United States often cultivated as a shade tree; thrives in wet soil -12276314 20 n 03 Nuttall_oak 0 Nuttall's_oak 0 Quercus_nuttalli 0 001 @ 12268246 n 0000 | similar to the pin oak; grows in damp sites in Mississippi River basin -12276477 20 n 03 durmast 0 Quercus_petraea 0 Quercus_sessiliflora 0 001 @ 12269652 n 0000 | deciduous European oak valued for its tough elastic wood -12276628 20 n 04 basket_oak 0 cow_oak 0 Quercus_prinus 0 Quercus_montana 0 001 @ 12275489 n 0000 | medium to large deciduous tree of the eastern United States; its durable wood is used as timber or split and woven into baskets or chair seats -12276872 20 n 03 pin_oak 1 swamp_oak 2 Quercus_palustris 0 001 @ 12268246 n 0000 | fast-growing medium to large pyramidal deciduous tree of northeastern United States and southeastern Canada having deeply pinnatifid leaves that turn bright red in autumn; thrives in damp soil -12277150 20 n 02 willow_oak 0 Quercus_phellos 0 001 @ 12268246 n 0000 | medium to large deciduous oak of the eastern United States having long lanceolate leaves and soft strong wood -12277334 20 n 04 dwarf_chinkapin_oak 0 dwarf_chinquapin_oak 0 dwarf_oak 0 Quercus_prinoides 0 001 @ 12275489 n 0000 | deciduous shrubby tree of northeastern and central United States having a sweet edible nut and often forming dense thickets -12277578 20 n 04 common_oak 0 English_oak 0 pedunculate_oak 0 Quercus_robur 0 001 @ 12269652 n 0000 | medium to large deciduous European oak having smooth leaves with rounded lobes; yields hard strong light-colored wood -12277800 20 n 03 northern_red_oak 0 Quercus_rubra 0 Quercus_borealis 0 001 @ 12271643 n 0000 | large symmetrical deciduous tree with rounded crown widely distributed in eastern North America; has large leaves with triangular spiny tipped lobes and coarse-grained wood less durable than that of white oaks -12278107 20 n 03 Shumard_oak 0 Shumard_red_oak 0 Quercus_shumardii 0 001 @ 12271643 n 0000 | large deciduous red oak of southern and eastern United States having large seven-lobed to nine-lobed elliptical leaves, large acorns and medium hard coarse-grained wood -12278371 20 n 05 post_oak 0 box_white_oak 0 brash_oak 0 iron_oak 1 Quercus_stellata 0 001 @ 12268246 n 0000 | small deciduous tree of eastern and central United States having dark green lyrate pinnatifid leaves and tough moisture-resistant wood used especially for fence posts -12278650 20 n 02 cork_oak 0 Quercus_suber 0 001 @ 12268246 n 0000 | medium-sized evergreen oak of southern Europe and northern Africa having thick corky bark that is periodically stripped to yield commercial cork -12278865 20 n 02 Spanish_oak 0 Quercus_texana 0 001 @ 12268246 n 0000 | small deciduous tree having the trunk branched almost from the base with spreading branches; Texas and southern Oklahoma -12279060 20 n 02 huckleberry_oak 0 Quercus_vaccinifolia 0 002 @ 13112664 n 0000 #m 12268096 n 0000 | a low spreading or prostrate shrub of southwestern United States with small acorns and leaves resembling those of the huckleberry -12279293 20 n 02 Chinese_cork_oak 0 Quercus_variabilis 0 001 @ 12268246 n 0000 | medium to large deciduous tree of China, Japan, and Korea having thick corky bark -12279458 20 n 05 black_oak 0 yellow_oak 0 quercitron 0 quercitron_oak 0 Quercus_velutina 0 001 @ 12268246 n 0000 | medium to large deciduous timber tree of the eastern United States and southeastern Canada having dark outer bark and yellow inner bark used for tanning; broad five-lobed leaves are bristle-tipped -12279772 20 n 02 southern_live_oak 0 Quercus_virginiana 0 001 @ 12269241 n 0000 | medium-sized evergreen native to eastern North America to the east coast of Mexico; often cultivated as shade tree for it wide-spreading crown; extremely hard tough durable wood once used in shipbuilding -12280060 20 n 03 interior_live_oak 0 Quercus_wislizenii 0 Quercus_wizlizenii 0 001 @ 12269241 n 0000 | a small shrubby evergreen tree of western North America similar to the coast live oak but occurring chiefly in foothills of mountain ranges removed from the coast; an important part of the chaparral -12280364 20 n 01 mast 0 001 @ 13136556 n 0000 | nuts of forest trees (as beechnuts and acorns) accumulated on the ground -12280487 20 n 03 Betulaceae 0 family_Betulaceae 0 birch_family 0 011 @ 11564734 n 0000 #m 12260021 n 0000 + 02662252 a 0101 %m 12280886 n 0000 %m 12283981 n 0000 %m 12286372 n 0000 %m 12286581 n 0000 %m 12287388 n 0000 %m 12288188 n 0000 %m 12288422 n 0000 %m 12288598 n 0000 | monoecious trees and shrubs (including the genera Betula and Alnus and Carpinus and Corylus and Ostrya and Ostryopsis) -12280886 20 n 02 Betula 0 genus_Betula 0 013 @ 11573173 n 0000 #m 12280487 n 0000 %m 12281241 n 0000 %m 12281788 n 0000 %m 12281974 n 0000 %m 12282235 n 0000 %m 12282527 n 0000 %m 12282737 n 0000 %m 12282933 n 0000 %m 12283147 n 0000 %m 12283395 n 0000 %m 12283542 n 0000 %m 12283790 n 0000 | a genus of trees of the family Betulaceae (such as birches) -12281241 20 n 02 birch 0 birch_tree 0 013 @ 13104059 n 0000 #m 12280886 n 0000 %s 12281600 n 0000 ~ 12281788 n 0000 ~ 12281974 n 0000 ~ 12282235 n 0000 ~ 12282527 n 0000 ~ 12282737 n 0000 ~ 12282933 n 0000 ~ 12283147 n 0000 ~ 12283395 n 0000 ~ 12283542 n 0000 ~ 12283790 n 0000 | any betulaceous tree or shrub of the genus Betula having a thin peeling bark -12281600 20 n 01 birch 2 002 @ 15098161 n 0000 #s 12281241 n 0000 | hard close-grained wood of any of various birch trees; used especially in furniture and interior finishes and plywood -12281788 20 n 03 yellow_birch 0 Betula_alleghaniensis 0 Betula_leutea 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | tree of eastern North America with thin lustrous yellow or grey bark -12281974 20 n 06 American_white_birch 0 paper_birch 0 paperbark_birch 0 canoe_birch 0 Betula_cordifolia 0 Betula_papyrifera 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | small American birch with peeling white bark often worked into e.g. baskets or toy canoes -12282235 20 n 05 grey_birch 0 gray_birch 0 American_grey_birch 0 American_gray_birch 0 Betula_populifolia 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | medium-sized birch of eastern North America having white or pale grey bark and valueless wood; occurs often as a second-growth forest tree -12282527 20 n 04 silver_birch 0 common_birch 0 European_white_birch 0 Betula_pendula 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | European birch with silvery white peeling bark and markedly drooping branches -12282737 20 n 03 downy_birch 0 white_birch 0 Betula_pubescens 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | European birch with dull white to pale brown bark and somewhat drooping hairy branches -12282933 20 n 04 black_birch 1 river_birch 0 red_birch 0 Betula_nigra 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | birch of swamps and river bottoms throughout the eastern United States having reddish-brown bark -12283147 20 n 04 sweet_birch 0 cherry_birch 0 black_birch 2 Betula_lenta 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | common birch of the eastern United States having spicy brown bark yielding a volatile oil and hard dark wood used for furniture -12283395 20 n 02 Yukon_white_birch 0 Betula_neoalaskana 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | Alaskan birch with white to pale brown bark -12283542 20 n 06 swamp_birch 0 water_birch 0 mountain_birch 0 Western_paper_birch 0 Western_birch 0 Betula_fontinalis 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | birch of western United States resembling the paper birch but having brownish bark -12283790 20 n 03 Newfoundland_dwarf_birch 0 American_dwarf_birch 0 Betula_glandulosa 0 002 @ 12281241 n 0000 #m 12280886 n 0000 | small shrub of colder parts of North America and Greenland -12283981 20 n 02 Alnus 0 genus_Alnus 0 012 @ 11573173 n 0000 #m 12280487 n 0000 %m 12284262 n 0000 %m 12284821 n 0000 %m 12285049 n 0000 %m 12285195 n 0000 %m 12285369 n 0000 %m 12285512 n 0000 %m 12285705 n 0000 %m 12285900 n 0000 %m 12286068 n 0000 %m 12286197 n 0000 | alders -12284262 20 n 02 alder 0 alder_tree 0 012 @ 13104059 n 0000 #m 12283981 n 0000 %s 12284665 n 0000 ~ 12284821 n 0000 ~ 12285049 n 0000 ~ 12285195 n 0000 ~ 12285369 n 0000 ~ 12285512 n 0000 ~ 12285705 n 0000 ~ 12285900 n 0000 ~ 12286068 n 0000 ~ 12286197 n 0000 | north temperate shrubs or trees having toothed leaves and conelike fruit; bark is used in tanning and dyeing and the wood is rot-resistant -12284665 20 n 01 alder 2 002 @ 15098161 n 0000 #s 12284262 n 0000 | wood of any of various alder trees; resistant to underwater rot; used for bridges etc -12284821 20 n 04 common_alder 0 European_black_alder 0 Alnus_glutinosa 0 Alnus_vulgaris 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | medium-sized tree with brown-black bark and woody fruiting catkins; leaves are hairy beneath -12285049 20 n 03 grey_alder 0 gray_alder 0 Alnus_incana 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | native to Europe but introduced in America -12285195 20 n 02 seaside_alder 0 Alnus_maritima 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | shrub or small tree of southeastern United States having soft light brown wood -12285369 20 n 03 white_alder 1 mountain_alder 2 Alnus_rhombifolia 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | tree of western United States -12285512 20 n 03 red_alder 0 Oregon_alder 0 Alnus_rubra 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | large tree of Pacific coast of North America having hard red wood much used for furniture -12285705 20 n 02 speckled_alder 0 Alnus_rugosa 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | common shrub of Canada and northeastern United States having shoots scattered with rust-colored down -12285900 20 n 03 smooth_alder 0 hazel_alder 0 Alnus_serrulata 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | common shrub of the eastern United States with smooth bark -12286068 20 n 02 green_alder 1 Alnus_veridis 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | shrub of mountainous areas of Europe -12286197 20 n 03 green_alder 2 Alnus_veridis_crispa 0 Alnus_crispa 0 002 @ 12284262 n 0000 #m 12283981 n 0000 | North American shrub with light green leaves and winged nuts -12286372 20 n 03 Carpinaceae 0 subfamily_Carpinaceae 0 family_Carpinaceae 0 002 @ 11564734 n 0000 #m 12280487 n 0000 | used in some classification systems for the genera Carpinus, Ostryopsis, and Ostryopsis -12286581 20 n 02 Carpinus 0 genus_Carpinus 0 005 @ 11573173 n 0000 #m 12280487 n 0000 %m 12286826 n 0000 %m 12286988 n 0000 %m 12287195 n 0000 | mostly deciduous monoecious trees or shrubs: hornbeams; sometimes placed in subfamily Carpinaceae -12286826 20 n 01 hornbeam 0 004 @ 13104059 n 0000 #m 12286581 n 0000 ~ 12286988 n 0000 ~ 12287195 n 0000 | any of several trees or shrubs of the genus Carpinus -12286988 20 n 02 European_hornbeam 0 Carpinus_betulus 0 002 @ 12286826 n 0000 #m 12286581 n 0000 | medium-sized Old World tree with smooth grey bark and leaves like beech that turn yellow-orange in autumn -12287195 20 n 02 American_hornbeam 0 Carpinus_caroliniana 0 002 @ 12286826 n 0000 #m 12286581 n 0000 | tree or large shrub with grey bark and blue-green leaves that turn red-orange in autumn -12287388 20 n 02 Ostrya 0 genus_Ostrya 0 005 @ 11573173 n 0000 #m 12280487 n 0000 %m 12287642 n 0000 %m 12287836 n 0000 %m 12288005 n 0000 | deciduous monoecious trees of Europe and Asia and America; sometimes placed in subfamily or family Carpinaceae -12287642 20 n 01 hop_hornbeam 0 004 @ 13104059 n 0000 #m 12287388 n 0000 ~ 12287836 n 0000 ~ 12288005 n 0000 | any of several trees resembling hornbeams with fruiting clusters resembling hops -12287836 20 n 02 Old_World_hop_hornbeam 0 Ostrya_carpinifolia 0 002 @ 12287642 n 0000 #m 12287388 n 0000 | medium-sized hop hornbeam of southern Europe and Asia Minor -12288005 20 n 04 Eastern_hop_hornbeam 0 ironwood 2 ironwood_tree 2 Ostrya_virginiana 0 002 @ 12287642 n 0000 #m 12287388 n 0000 | medium-sized hop hornbeam of eastern North America -12288188 20 n 02 Ostryopsis 0 genus_Ostryopsis 0 002 @ 11573173 n 0000 #m 12280487 n 0000 | deciduous monoecious shrubs of China and Mongolia resembling trees of the genus Ostrya; sometimes placed in subfamily or family Carpinaceae -12288422 20 n 03 Corylaceae 0 subfamily_Corylaceae 0 family_Corylaceae 0 002 @ 11564734 n 0000 #m 12280487 n 0000 | used in some classification systems for the genus Corylus -12288598 20 n 02 Corylus 0 genus_Corylus 0 003 @ 11573173 n 0000 #m 12280487 n 0000 %m 12288823 n 0000 | deciduous monoecious nut-bearing shrubs of small trees: hazel; sometimes placed in the subfamily or family Corylaceae -12288823 20 n 03 hazelnut 0 hazel 1 hazelnut_tree 0 007 @ 13110915 n 0000 #m 12288598 n 0000 %p 07772788 n 0000 %s 12289115 n 0000 ~ 12289310 n 0000 ~ 12289433 n 0000 ~ 12289585 n 0000 | any of several shrubs or small trees of the genus Corylus bearing edible nuts enclosed in a leafy husk -12289115 20 n 01 hazel 3 003 @ 15098161 n 0000 #s 12288823 n 0000 #s 13144084 n 0000 | the fine-grained wood of a hazelnut tree (genus Corylus) and the hazel tree (Australian genus Pomaderris) -12289310 20 n 02 American_hazel 0 Corylus_americana 0 001 @ 12288823 n 0000 | nut-bearing shrub of eastern North America -12289433 20 n 04 cobnut 0 filbert 0 Corylus_avellana 0 Corylus_avellana_grandis 0 001 @ 12288823 n 0000 | small nut-bearing tree much grown in Europe -12289585 20 n 02 beaked_hazelnut 0 Corylus_cornuta 0 001 @ 12288823 n 0000 | hazel of western United States with conspicuous beaklike involucres on the nuts -12289744 20 n 02 Gentianales 0 order_Gentianales 0 009 @ 11534677 n 0000 #m 11665781 n 0000 %m 11766609 n 0000 %m 12290116 n 0000 %m 12299165 n 0000 %m 12299988 n 0000 %m 12484413 n 0000 %m 12485122 n 0000 %m 13233012 n 0000 | an order of dicotyledonous plants having gamopetalous flowers; Gentianaceae; Apocynaceae; Asclepiadaceae; Loganiaceae; Oleaceae; Salvadoraceae -12290116 20 n 03 Gentianaceae 0 family_Gentianaceae 0 gentian_family 0 013 @ 11562747 n 0000 #m 12289744 n 0000 %m 12290522 n 0000 %m 12291763 n 0000 %m 12292285 n 0000 %m 12292655 n 0000 %m 12293419 n 0000 %m 12293723 n 0000 %m 12295560 n 0000 %m 12296218 n 0000 %m 12297678 n 0000 %m 12298003 n 0000 %m 12298783 n 0000 | chiefly herbaceous plants with showy flowers; some are cultivated as ornamentals -12290522 20 n 02 Centaurium 0 genus_Centaurium 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12290748 n 0000 | genus of low-growing herbs mostly of northern hemisphere having flowers with protruding spirally twisted anthers -12290748 20 n 01 centaury 2 008 @ 11669921 n 0000 #m 12290522 n 0000 ~ 12290975 n 0000 ~ 12291143 n 0000 ~ 12291292 n 0000 ~ 12291459 n 0000 ~ 12291564 n 0000 ~ 12291671 n 0000 | any of various plants of the genus Centaurium -12290975 20 n 02 rosita 0 Centaurium_calycosum 0 001 @ 12290748 n 0000 | erect plant with small clusters of pink trumpet-shaped flowers of southwestern United States -12291143 20 n 02 lesser_centaury 0 Centaurium_minus 0 001 @ 12290748 n 0000 | common European glabrous annual centaury with flowers in dense cymes -12291292 20 n 02 tufted_centaury 0 Centaurium_scilloides 0 001 @ 12290748 n 0000 | tufted perennial of western Europe and Azores having bright pink to white flowers -12291459 20 n 01 seaside_centaury 0 001 @ 12290748 n 0000 | a variety of centaury found at the seaside -12291564 20 n 01 broad_leaved_centaury 0 001 @ 12290748 n 0000 | a variety of centaury with broad leaves -12291671 20 n 01 slender_centaury 0 001 @ 12290748 n 0000 | a slender variety of centaury -12291763 20 n 02 Eustoma 0 genus_Eustoma 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12291959 n 0000 | small genus of herbs of warm regions of southern North America to northern South America -12291959 20 n 04 prairie_gentian 0 tulip_gentian 0 bluebell 0 Eustoma_grandiflorum 0 002 @ 11672400 n 0000 #m 12291763 n 0000 | one of the most handsome prairie wildflowers having large erect bell-shaped bluish flowers; of moist places in prairies and fields from eastern Colorado and Nebraska south to New Mexico and Texas -12292285 20 n 02 Exacum 0 genus_Exacum 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12292463 n 0000 | genus of tropical Asiatic and African plants: especially Persian violets -12292463 20 n 02 Persian_violet 0 Exacum_affine 0 002 @ 13083023 n 0000 #m 12292285 n 0000 | perennial cultivated especially as a houseplant for its fragrant bluish to dark lavender flowers -12292655 20 n 02 Frasera 0 genus_Frasera 0 004 @ 11567411 n 0000 #m 12290116 n 0000 %m 12292877 n 0000 %m 12293180 n 0000 | genus of North American herbs: columbo; includes some species sometimes placed in genus Swertia -12292877 20 n 06 columbo 0 American_columbo 0 deer's-ear 0 deer's-ears 0 pyramid_plant 0 American_gentian 0 002 @ 12205694 n 0000 #m 12292655 n 0000 | any of various tall perennial herbs constituting the genus Frasera; widely distributed in warm dry upland areas of California, Oregon, and Washington -12293180 20 n 03 green_gentian 0 Frasera_speciosa 0 Swertia_speciosa 0 002 @ 12205694 n 0000 #m 12292655 n 0000 | tall herb with panicles of white flowers flushed with green; northwestern United States; sometimes placed in genus Swertia -12293419 20 n 02 Gentiana 0 genus_Gentiana 0 004 @ 11567411 n 0000 #m 12290116 n 0000 %m 12294871 n 0000 %m 12295033 n 0000 | type genus of the Gentianaceae; cosmopolitan genus of herbs nearly cosmopolitan in cool temperate regions; in some classifications includes genera Gentianopsis and Gentianella -12293723 20 n 01 gentian 0 014 @ 11669921 n 0000 #m 12290116 n 0000 ~ 12294124 n 0000 ~ 12294331 n 0000 ~ 12294542 n 0000 ~ 12294723 n 0000 ~ 12294871 n 0000 ~ 12295033 n 0000 ~ 12295237 n 0000 ~ 12295429 n 0000 ~ 12295796 n 0000 ~ 12296045 n 0000 ~ 12296432 n 0000 ~ 12297846 n 0000 | any of various plants of the family Gentianaceae especially the genera Gentiana and Gentianella and Gentianopsis -12294124 20 n 02 gentianella 2 Gentiana_acaulis 0 001 @ 12293723 n 0000 | low-growing alpine plant cultivated for its dark glossy green leaves in basal rosettes and showy solitary bell-shaped blue flowers -12294331 20 n 04 closed_gentian 1 blind_gentian 1 bottle_gentian 0 Gentiana_andrewsii 0 001 @ 12293723 n 0000 | gentian of eastern North America having tubular blue or white flowers that open little if at all -12294542 20 n 02 explorer's_gentian 0 Gentiana_calycosa 0 001 @ 12293723 n 0000 | tufted sometimes sprawling perennial with blue flowers spotted with green; western North America -12294723 20 n 03 closed_gentian 2 blind_gentian 2 Gentiana_clausa 0 001 @ 12293723 n 0000 | similar to Gentiana andrewsii but with larger flowers -12294871 20 n 02 great_yellow_gentian 0 Gentiana_lutea 0 002 @ 12293723 n 0000 #m 12293419 n 0000 | robust European perennial having clusters of yellow flowers -12295033 20 n 03 marsh_gentian 0 calathian_violet 0 Gentiana_pneumonanthe 0 002 @ 12293723 n 0000 #m 12293419 n 0000 | perennial Eurasian gentian with sky-blue funnel-shaped flowers of damp open heaths -12295237 20 n 02 soapwort_gentian 0 Gentiana_saponaria 0 001 @ 12293723 n 0000 | erect perennial of wet woodlands of North America having leaves and flower buds resembling those of soapwort -12295429 20 n 02 striped_gentian 0 Gentiana_villosa 0 001 @ 12293723 n 0000 | a perennial marsh gentian of eastern North America -12295560 20 n 02 Gentianella 0 genus_Gentianella 0 004 @ 11567411 n 0000 #m 12290116 n 0000 %m 12295796 n 0000 %m 12296045 n 0000 | genus of herbs with flowers that resemble gentian; in some classifications included in genus Gentiana -12295796 20 n 06 agueweed 1 ague_weed 0 five-flowered_gentian 0 stiff_gentian 0 Gentianella_quinquefolia 0 Gentiana_quinquefolia 0 002 @ 12293723 n 0000 #m 12295560 n 0000 | gentian of eastern North America having clusters of bristly blue flowers -12296045 20 n 02 felwort 0 gentianella_amarella 0 002 @ 12293723 n 0000 #m 12295560 n 0000 | gentian of Europe and China having creamy white flowers with fringed corollas -12296218 20 n 02 Gentianopsis 0 genus_Gentianopsis 0 004 @ 11567411 n 0000 #m 12290116 n 0000 %m 12296432 n 0000 %m 12297110 n 0000 | genus of fringed gentians; in some classifications included in genus Gentiana -12296432 20 n 01 fringed_gentian 0 007 @ 12293723 n 0000 #m 12296218 n 0000 ~ 12296735 n 0000 ~ 12296929 n 0000 ~ 12297110 n 0000 ~ 12297280 n 0000 ~ 12297507 n 0000 | any of various herbs of the genus Gentianopsis having the margins of the corolla lobes fringed; sometimes included in genus Gentiana -12296735 20 n 02 Gentianopsis_crinita 0 Gentiana_crinita 0 001 @ 12296432 n 0000 | tall widely distributed fringed gentian of eastern North America having violet-blue or white fringed flowers -12296929 20 n 02 Gentianopsis_detonsa 0 Gentiana_detonsa 0 001 @ 12296432 n 0000 | medium-tall fringed gentian with pale-blue to blue-purple flowers; circumboreal in distribution -12297110 20 n 02 Gentianopsid_procera 0 Gentiana_procera 0 002 @ 12296432 n 0000 #m 12296218 n 0000 | small blue-flowered fringed gentian of east central North America -12297280 20 n 02 Gentianopsis_thermalis 0 Gentiana_thermalis 0 001 @ 12296432 n 0000 | small blue-flowered fringed gentian of western United States (Rocky Mountains) especially around hot springs in Yellowstone National Park -12297507 20 n 03 tufted_gentian 0 Gentianopsis_holopetala 0 Gentiana_holopetala 0 001 @ 12296432 n 0000 | small blue-flowered fringed gentian of Sierra Nevada mountains -12297678 20 n 02 Halenia 0 genus_Halenia 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12297846 n 0000 | genus of herbs of Eurasia and the Americas: spurred gentians -12297846 20 n 01 spurred_gentian 0 002 @ 12293723 n 0000 #m 12297678 n 0000 | any of various plants of the genus Halenia having flowers with spurred lobes -12298003 20 n 01 genus_Sabbatia 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12298165 n 0000 | genus of smooth slender North American herbs with showy flowers -12298165 20 n 01 sabbatia 0 004 @ 13122364 n 0000 #m 12298003 n 0000 ~ 12298395 n 0000 ~ 12298637 n 0000 | any of various plants of the genus Sabbatia having usually pink cymose flowers; occur from acid bogs to brackish marshes -12298395 20 n 06 marsh_pink 0 rose_pink 0 bitter_floom 0 American_centaury 0 Sabbatia_stellaris 0 Sabbatia_Angularis 0 001 @ 12298165 n 0000 | any of several pink-flowered marsh plant of the eastern United States resembling a true centaury -12298637 20 n 03 prairia_Sabbatia 0 Texas_star 2 Sabbatia_campestris 0 001 @ 12298165 n 0000 | prairie herb with solitary lilac-colored flowers -12298783 20 n 02 Swertia 0 genus_Swertia 0 003 @ 11567411 n 0000 #m 12290116 n 0000 %m 12298958 n 0000 | genus of herbs of mountains of North America and Eurasia and Africa -12298958 20 n 02 marsh_felwort 0 Swertia_perennia 0 002 @ 12205694 n 0000 #m 12298783 n 0000 | perennial of damp places in mountains of Eurasia and North America having dull-colored blue or violet flowers -12299165 20 n 03 Salvadoraceae 0 family_Salvadoraceae 0 Salvadora_family 0 003 @ 11562747 n 0000 #m 12289744 n 0000 %m 12299425 n 0000 | a family of Old World shrubs and trees of order Gentianales; related to Oleaceae but having four stamens and four petals -12299425 20 n 02 Salvadora 0 genus_Salvadora 0 003 @ 11567411 n 0000 #m 12299165 n 0000 %m 12299640 n 0000 | genus of evergreen trees or shrubs; fruit is a drupe; grows in Africa through Arabia to India and China -12299640 20 n 03 toothbrush_tree 0 mustard_tree 1 Salvadora_persica 0 002 @ 12651821 n 0000 #m 12299425 n 0000 | glabrous or pubescent evergreen shrub or tree of the genus Salvadora; twigs are fibrous and in some parts of the world are bound together in clusters and used as a toothbrush; shoots are used as camel fodder; plant ash provides salt -12299988 20 n 03 Oleaceae 0 family_Oleaceae 0 olive_family 0 013 @ 11562747 n 0000 #m 12289744 n 0000 + 02770479 a 0101 %m 12300625 n 0000 %m 12301917 n 0000 %m 12302418 n 0000 %m 12302974 n 0000 %m 12303349 n 0000 %m 12306519 n 0000 %m 12307611 n 0000 %m 12309403 n 0000 %m 12309850 n 0000 %m 12310153 n 0000 | trees and shrubs having berries or drupes or capsules as fruits; sometimes placed in the order Oleales: olive; ash; jasmine; privet; lilac -12300441 20 n 02 Oleales 0 order_Oleales 0 002 @ 11534677 n 0000 #m 11665781 n 0000 | coextensive with the family Oleaceae; in some classifications included in the order Gentianales -12300625 20 n 02 Olea 0 genus_Olea 0 006 @ 11567411 n 0000 #m 12299988 n 0000 %m 12300840 n 0000 %m 12301180 n 0000 %m 12301613 n 0000 %m 12301766 n 0000 | evergreen trees and shrubs having oily one-seeded fruits -12300840 20 n 01 olive_tree 0 006 @ 12651821 n 0000 #m 12300625 n 0000 %s 12301038 n 0000 ~ 12301180 n 0000 ~ 12301613 n 0000 ~ 12301766 n 0000 | a tree of the genus Olea cultivated for its fruit -12301038 20 n 01 olive 2 002 @ 15098161 n 0000 #s 12300840 n 0000 | hard yellow often variegated wood of an olive tree; used in cabinetwork -12301180 20 n 03 olive 0 European_olive_tree 0 Olea_europaea 0 004 @ 12300840 n 0000 #m 12300625 n 0000 %p 07767344 n 0000 %p 12301445 n 0000 | evergreen tree cultivated in the Mediterranean region since antiquity and now elsewhere; has edible shiny black fruits -12301445 20 n 01 olive 1 003 @ 13134947 n 0000 #p 12301180 n 0000 %s 07674508 n 0000 | small ovoid fruit of the European olive tree; important food and source of oil -12301613 20 n 02 black_maire 0 Olea_cunninghamii 0 002 @ 12300840 n 0000 #m 12300625 n 0000 | northern Zealand tree having dense hard light-brown wood -12301766 20 n 02 white_maire 0 Olea_lanceolata 0 002 @ 12300840 n 0000 #m 12300625 n 0000 | small New Zealand tree having red pulpy one-seeded fruit -12301917 20 n 02 Chionanthus 0 genus_Chionanthus 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12302071 n 0000 | deciduous trees or shrubs: fringe tree -12302071 20 n 01 fringe_tree 0 003 @ 13104059 n 0000 #m 12301917 n 0000 ~ 12302248 n 0000 | any of various small decorative flowering trees or shrubs of the genus Chionanthus -12302248 20 n 02 fringe_bush 0 Chionanthus_virginicus 0 001 @ 12302071 n 0000 | small bushy tree of southeastern United States having profuse clusters of white flowers -12302418 20 n 01 genus_Forestiera 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12302565 n 0000 | genus of often spiny American shrubs and trees -12302565 20 n 01 forestiera 0 003 @ 13112664 n 0000 #m 12302418 n 0000 ~ 12302692 n 0000 | any plant of the genus Forestiera -12302692 20 n 03 tanglebush 0 desert_olive 0 Forestiera_neomexicana 0 001 @ 12302565 n 0000 | spiny branching deciduous shrub of southwestern United States having clusters of insignificant yellow-white flowers appearing before leaves followed by attractive black berrylike fruits -12302974 20 n 01 genus_Forsythia 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12303083 n 0000 | forsythia -12303083 20 n 01 forsythia 0 002 @ 13112664 n 0000 #m 12302974 n 0000 | any of various early blooming oleaceous shrubs of the genus Forsythia; native to eastern Asia and southern Europe but widely cultivated for their branches of bright yellow bell-shaped flowers -12303349 20 n 02 Fraxinus 0 genus_Fraxinus 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12303462 n 0000 | ash -12303462 20 n 02 ash 0 ash_tree 0 018 @ 13104059 n 0000 #m 12303349 n 0000 ~i 09584725 n 0000 %s 12303921 n 0000 ~ 12304115 n 0000 ~ 12304286 n 0000 ~ 12304420 n 0000 ~ 12304572 n 0000 ~ 12304703 n 0000 ~ 12304899 n 0000 ~ 12305089 n 0000 ~ 12305293 n 0000 ~ 12305475 n 0000 ~ 12305819 n 0000 ~ 12305986 n 0000 ~ 12306089 n 0000 ~ 12306270 n 0000 %p 12306419 n 0000 | any of various deciduous pinnate-leaved ornamental or timber trees of the genus Fraxinus -12303921 20 n 01 ash 2 002 @ 15098161 n 0000 #s 12303462 n 0000 | strong elastic wood of any of various ash trees; used for furniture and tool handles and sporting goods such as baseball bats -12304115 20 n 02 white_ash 1 Fraxinus_Americana 0 001 @ 12303462 n 0000 | spreading American ash with leaves pale green or silvery beneath and having hard brownish wood -12304286 20 n 02 swamp_ash 0 Fraxinus_caroliniana 0 001 @ 12303462 n 0000 | small ash of swampy areas of southeastern United States -12304420 20 n 02 flowering_ash 2 Fraxinus_cuspidata 0 001 @ 12303462 n 0000 | shrubby ash of southwestern United States having fragrant white flowers -12304572 20 n 02 flowering_ash 3 Fraxinus_dipetala 0 001 @ 12303462 n 0000 | shrubby California ash with showy off-white flowers -12304703 20 n 03 European_ash 0 common_European_ash 0 Fraxinus_excelsior 0 001 @ 12303462 n 0000 | tall ash of Europe to the Caucasus having leaves shiny dark-green above and pale downy beneath -12304899 20 n 03 Oregon_ash 0 Fraxinus_latifolia 0 Fraxinus_oregona 0 001 @ 12303462 n 0000 | timber tree of western North America yielding hard light wood; closely related to the red ash -12305089 20 n 05 black_ash 0 basket_ash 0 brown_ash 0 hoop_ash 0 Fraxinus_nigra 0 001 @ 12303462 n 0000 | vigorous spreading North American tree having dark brown heavy wood; leaves turn gold in autumn -12305293 20 n 03 manna_ash 0 flowering_ash 1 Fraxinus_ornus 0 001 @ 12303462 n 0000 | southern Mediterranean ash having fragrant white flowers in dense panicles and yielding manna -12305475 20 n 03 red_ash 0 downy_ash 0 Fraxinus_pennsylvanica 0 002 @ 12303462 n 0000 ~ 12305654 n 0000 | smallish American tree with velvety branchlets and lower leaf surfaces -12305654 20 n 02 green_ash 0 Fraxinus_pennsylvanica_subintegerrima 0 001 @ 12305475 n 0000 | a variety of red ash having glossy branchlets and lower leaf surfaces -12305819 20 n 02 blue_ash 0 Fraxinus_quadrangulata 0 001 @ 12303462 n 0000 | ash of central and southern United States with bluish-green foliage and hard brown wood -12305986 20 n 02 mountain_ash 2 Fraxinus_texensis 0 001 @ 12303462 n 0000 | low-growing ash of Texas -12306089 20 n 02 pumpkin_ash 0 Fraxinus_tomentosa 0 001 @ 12303462 n 0000 | timber tree of central and southeastern United States having hairy branchlets and a swollen trunk base -12306270 20 n 02 Arizona_ash 0 Fraxinus_velutina 0 001 @ 12303462 n 0000 | small shrubby ash of southwestern United States and northwestern Mexico -12306419 20 n 01 ash-key 0 002 @ 13135832 n 0000 #p 12303462 n 0000 | winged seed of the ash tree -12306519 20 n 02 Jasminum 0 genus_Jasminum 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12306717 n 0000 | shrubs and woody climbers mostly of tropical and temperate Old World: jasmine; jessamine -12306717 20 n 01 jasmine 0 006 @ 13112664 n 0000 #m 12306519 n 0000 ~ 12306938 n 0000 ~ 12307076 n 0000 ~ 12307240 n 0000 ~ 12307455 n 0000 | any of several shrubs and vines of the genus Jasminum chiefly native to Asia -12306938 20 n 02 primrose_jasmine 0 Jasminum_mesnyi 0 001 @ 12306717 n 0000 | evergreen rambling yellow-flowered shrub of western China -12307076 20 n 02 winter_jasmine 0 Jasminum_nudiflorum 0 001 @ 12306717 n 0000 | deciduous rambling shrub widely cultivated for its winter-blooming yellow flowers -12307240 20 n 04 common_jasmine 0 true_jasmine 0 jessamine 0 Jasminum_officinale 0 001 @ 12306717 n 0000 | a climbing deciduous shrub with fragrant white or yellow or red flowers used in perfume and to flavor tea -12307455 20 n 02 Arabian_jasmine 0 Jasminum_sambac 0 001 @ 12306717 n 0000 | East Indian evergreen vine cultivated for its profuse fragrant white flowers -12307611 20 n 02 Ligustrum 0 genus_Ligustrum 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12307756 n 0000 | genus of Old World shrubs: privet -12307756 20 n 01 privet 0 009 @ 13112664 n 0000 #m 12307611 n 0000 ~ 12308112 n 0000 ~ 12308259 n 0000 ~ 12308447 n 0000 ~ 12308664 n 0000 ~ 12308907 n 0000 ~ 12309052 n 0000 ~ 12309277 n 0000 | any of various Old World shrubs having smooth entire leaves and terminal panicles of small white flowers followed by small black berries; many used for hedges -12308112 20 n 02 Amur_privet 0 Ligustrum_amurense 0 001 @ 12307756 n 0000 | eastern Asian shrub cultivated especially for its persistent foliage -12308259 20 n 03 ibolium_privet 0 ibota_privet 0 Ligustrum_ibolium 0 001 @ 12307756 n 0000 | fast-growing and tightly branched hybrid of Ligustrum ovalifolium and Ligustrum obtusifolium -12308447 20 n 02 Japanese_privet 0 Ligustrum_japonicum 0 001 @ 12307756 n 0000 | evergreen shrub of Japan and Korea having small dark leaves and flowers in loose panicles; related to but smaller than Chinese privet -12308664 20 n 03 Chinese_privet 0 white_wax_tree 0 Ligustrum_lucidum 0 001 @ 12307756 n 0000 | erect evergreen treelike shrub of China and Korea and Japan having acuminate leaves and flowers in long erect panicles; resembles Japanese privet -12308907 20 n 01 Ligustrum_obtusifolium 0 001 @ 12307756 n 0000 | small deciduous shrub having graceful arching branches and luxuriant foliage -12309052 20 n 02 California_privet 0 Ligustrum_ovalifolium 0 001 @ 12307756 n 0000 | semi-evergreen Japanese shrub having malodorous flowers; used extensively for hedges because more likely to stay green that common privet -12309277 20 n 02 common_privet 0 Ligustrum_vulgare 0 001 @ 12307756 n 0000 | deciduous semi-evergreen shrub used for hedges -12309403 20 n 02 Osmanthus 0 genus_Osmanthus 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12309630 n 0000 | widely distributed genus of evergreen shrubs or trees of southern United States and Middle East and China and Japan -12309630 20 n 03 devilwood 0 American_olive 0 Osmanthus_americanus 0 002 @ 13104059 n 0000 #m 12309403 n 0000 | small tree of southern United States having panicles of dull white flowers followed by dark purple fruits -12309850 20 n 02 Phillyrea 0 genus_Phillyrea 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12310021 n 0000 | small genus of evergreen shrubs of the Mediterranean region -12310021 20 n 01 mock_privet 0 002 @ 13112664 n 0000 #m 12309850 n 0000 | evergreen shrub with white flowers and olivelike fruits -12310153 20 n 02 Syringa 1 genus_Syringa 0 003 @ 11567411 n 0000 #m 12299988 n 0000 %m 12310349 n 0000 | genus of Old World shrubs or low trees having fragrant flowers in showy panicles: lilacs -12310349 20 n 01 lilac 0 009 @ 13112664 n 0000 #m 12310153 n 0000 + 00376917 a 0102 ~ 12310638 n 0000 ~ 12310840 n 0000 ~ 12311045 n 0000 ~ 12311224 n 0000 ~ 12311413 n 0000 ~ 12311579 n 0000 | any of various plants of the genus Syringa having large panicles of usually fragrant flowers -12310638 20 n 02 Himalayan_lilac 0 Syringa_emodi 0 001 @ 12310349 n 0000 | robust upright shrub of mountains of northern India having oblong-elliptic leaves and pale lilac or white malodorous flowers -12310840 20 n 03 Hungarian_lilac 0 Syringa_josikaea 0 Syringa_josikea 0 001 @ 12310349 n 0000 | central European upright shrub having elliptic leaves and upright clusters of lilac or deep violet flowers -12311045 20 n 02 Persian_lilac 1 Syringa_persica 0 001 @ 12310349 n 0000 | small densely branching Asiatic shrub having lanceolate leaves and panicles of fragrant lilac flowers -12311224 20 n 03 Japanese_tree_lilac 0 Syringa_reticulata 0 Syringa_amurensis_japonica 0 001 @ 12310349 n 0000 | small tree of Japan having narrow pointed leaves and creamy-white flowers -12311413 20 n 02 Japanese_lilac 0 Syringa_villosa 0 001 @ 12310349 n 0000 | lilac of northern China having ovate leaves and profuse early summer rose-lilac flowers -12311579 20 n 02 common_lilac 0 Syringa_vulgaris 0 001 @ 12310349 n 0000 | large European lilac naturalized in North America having heart-shaped ovate leaves and large panicles of highly fragrant lilac or white flowers -12311800 20 n 01 manna 0 001 @ 15038127 n 0000 | hardened sugary exudation of various trees -12311894 20 n 03 Haemodoraceae 0 family_Haemodoraceae 0 bloodwort_family 0 005 @ 11555413 n 0000 #m 12410715 n 0000 %m 12312110 n 0000 %m 12312276 n 0000 %m 12312405 n 0000 | some genera placed in family Liliaceae -12312110 20 n 01 bloodwort 0 002 @ 12205694 n 0000 #m 12311894 n 0000 | any of various plants of the family Haemodoraceae; roots contain a deep red coloring matter -12312276 20 n 02 Haemodorum 0 genus_Haemodorum 0 002 @ 11556857 n 0000 #m 12311894 n 0000 | type genus of family Haemodoraceae -12312405 20 n 02 Anigozanthus 0 genus_Anigozanthus 0 003 @ 11556857 n 0000 #m 12311894 n 0000 %m 12312728 n 0000 | genus of monocotyledonous plants with curious woolly flowers on sturdy stems above a fan of sword-shaped leaves; includes kangaroo's paw and Australian sword lily; sometimes placed in family Amaryllidaceae -12312728 20 n 06 kangaroo_paw 0 kangaroo's_paw 0 kangaroo's-foot 0 kangaroo-foot_plant 0 Australian_sword_lily 0 Anigozanthus_manglesii 0 002 @ 12205694 n 0000 #m 12312405 n 0000 | sedgelike spring-flowering herb having clustered flowers covered with woolly hairs; Australia -12313005 20 n 02 Hamamelidae 0 subclass_Hamamelidae 0 010 @ 08103777 n 0000 #m 11665781 n 0000 %m 11564734 n 0000 %m 11573173 n 0000 %m 12260021 n 0000 %m 12313574 n 0000 %m 12313735 n 0000 %m 12313954 n 0000 %m 12314146 n 0000 %m 12314315 n 0000 | a group of chiefly woody plants considered among the most primitive of angiosperms; perianth poorly developed or lacking; flowers often unisexual and often in catkins and often wind pollinated; contains 23 families including the Betulaceae and Fagaceae (includes the Amentiferae); sometimes classified as a superorder -12313574 20 n 02 Amentiferae 0 group_Amentiferae 0 002 @ 07992450 n 0000 #m 12313005 n 0000 | used in some classification systems for plants that bear catkins -12313735 20 n 02 Hamamelidanthum 0 genus_Hamamelidanthum 0 002 @ 11567411 n 0000 #m 12313005 n 0000 | genus of fossil plants of the Oligocene having flowers resembling those of the witch hazel; found in Baltic region -12313954 20 n 02 Hamamelidoxylon 0 genus_Hamamelidoxylon 0 002 @ 11567411 n 0000 #m 12313005 n 0000 | genus of fossil plants having wood identical with or similar to that of the witch hazel -12314146 20 n 02 Hamamelites 0 genus_Hamamelites 0 002 @ 11567411 n 0000 #m 12313005 n 0000 | genus of fossil plants having leaves similar to those of the witch hazel -12314315 20 n 03 Hamamelidaceae 0 family_Hamamelidaceae 0 witch-hazel_family 0 008 @ 11564734 n 0000 #m 12313005 n 0000 %m 12314652 n 0000 %m 12315424 n 0000 %m 12315818 n 0000 %m 12316300 n 0000 %m 12317164 n 0000 %m 12317611 n 0000 | comprises genera Hamamelis, Corylopsis, Fothergilla, Liquidambar, Parrotia, and other small genera -12314652 20 n 02 Hamamelis 0 genus_Hamamelis 0 003 @ 11744859 n 0000 #m 12314315 n 0000 %m 12314808 n 0000 | deciduous shrubs or small trees: witch hazel -12314808 20 n 04 witch_hazel 0 witch_hazel_plant 0 wych_hazel 0 wych_hazel_plant 0 004 @ 13112664 n 0000 #m 12314652 n 0000 ~ 12315060 n 0000 ~ 12315245 n 0000 | any of several shrubs or trees of the genus Hamamelis; bark yields an astringent lotion -12315060 20 n 02 Virginian_witch_hazel 0 Hamamelis_virginiana 0 001 @ 12314808 n 0000 | common shrub of eastern North America having small yellow flowers after the leaves have fallen -12315245 20 n 02 vernal_witch_hazel 0 Hamamelis_vernalis 0 001 @ 12314808 n 0000 | fragrant shrub of lower Mississippi valley having very small flowers from midwinter to spring -12315424 20 n 02 Corylopsis 0 genus_Corylopsis 0 003 @ 11744859 n 0000 #m 12314315 n 0000 %m 12315598 n 0000 | small genus of deciduous shrubs of temperate regions of Asia -12315598 20 n 02 winter_hazel 0 flowering_hazel 0 002 @ 13112664 n 0000 #m 12315424 n 0000 | any of several Asiatic deciduous shrubs cultivated for their nodding racemes of yellow flowers that appear before the leaves -12315818 20 n 02 genus_Fothergilla 0 Fothergilla 1 003 @ 11744859 n 0000 #m 12314315 n 0000 %m 12315999 n 0000 | small genus of deciduous shrubs of the southeastern United States -12315999 20 n 02 fothergilla 0 witch_alder 0 002 @ 13112664 n 0000 #m 12315818 n 0000 | any of several deciduous low-growing shrubs of the genus Fothergilla having showy brushlike spikes of white flowers in spring and fiery red and orange autumn color; grows from Alabama to the Allegheny Mountains -12316300 20 n 02 genus_Liquidambar 0 Liquidambar 1 004 @ 11744859 n 0000 #m 12314315 n 0000 %m 12316444 n 0000 %m 12316572 n 0000 | sweet gum -12316444 20 n 01 liquidambar 0 003 @ 12334293 n 0000 #m 12316300 n 0000 ~ 12316572 n 0000 | any tree of the genus Liquidambar -12316572 20 n 06 sweet_gum 1 sweet_gum_tree 0 bilsted 0 red_gum 3 American_sweet_gum 0 Liquidambar_styraciflua 0 003 @ 12316444 n 0000 #m 12316300 n 0000 %s 12316853 n 0000 | a North American tree of the genus Liquidambar having prickly spherical fruit clusters and fragrant sap -12316853 20 n 02 sweet_gum 2 liquidambar 2 002 @ 14898470 n 0000 #s 12316572 n 0000 | aromatic exudate from the sweet gum tree -12316982 20 n 04 sweet_gum 3 satin_walnut 0 hazelwood 2 red_gum 4 001 @ 12334520 n 0000 | reddish-brown wood and lumber from heartwood of the sweet gum tree used to make furniture -12317164 20 n 02 Parrotia 0 genus_Parrotia 0 003 @ 11744859 n 0000 #m 12314315 n 0000 %m 12317296 n 0000 | one species: iron tree -12317296 20 n 04 iron_tree 0 iron-tree 0 ironwood 1 ironwood_tree 1 002 @ 13109733 n 0000 #m 12317164 n 0000 | a small slow-growing deciduous tree of northern Iran having a low domed shape -12317487 20 n 01 ironwood 4 001 @ 15098161 n 0000 | exceptionally tough or hard wood of any of a number of ironwood trees -12317611 20 n 02 Parrotiopsis 0 genus_Parrotiopsis 0 002 @ 11744859 n 0000 #m 12314315 n 0000 | one species: deciduous tree of the Himalaya Mountains -12317763 20 n 02 Juglandales 0 order_Juglandales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12317919 n 0000 | coextensive with the family Juglandaceae -12317919 20 n 03 Juglandaceae 0 family_Juglandaceae 0 walnut_family 0 005 @ 11562747 n 0000 #m 12317763 n 0000 %m 12318164 n 0000 %m 12319687 n 0000 %m 12322359 n 0000 | trees having usually edible nuts: butternuts; walnuts; hickories; pecans -12318164 20 n 02 Juglans 0 genus_Juglans 0 007 @ 11567411 n 0000 #m 12317919 n 0000 %m 12318378 n 0000 %m 12318782 n 0000 %m 12318965 n 0000 %m 12319204 n 0000 %m 12319414 n 0000 | type genus of the Juglandaceae -12318378 20 n 02 walnut 0 walnut_tree 0 008 @ 13110915 n 0000 #m 12318164 n 0000 %p 07771212 n 0000 %s 12318615 n 0000 ~ 12318782 n 0000 ~ 12318965 n 0000 ~ 12319204 n 0000 ~ 12319414 n 0000 | any of various trees of the genus Juglans -12318615 20 n 01 walnut 2 002 @ 15098161 n 0000 #s 12318378 n 0000 | hard dark-brown wood of any of various walnut trees; used especially for furniture and paneling -12318782 20 n 02 California_black_walnut 0 Juglans_californica 0 002 @ 12318378 n 0000 #m 12318164 n 0000 | medium-sized tree with somewhat aromatic compound leaves and edible nuts -12318965 20 n 04 butternut 0 butternut_tree 0 white_walnut 0 Juglans_cinerea 0 003 @ 12318378 n 0000 #m 12318164 n 0000 %p 07771891 n 0000 | North American walnut tree having light-brown wood and edible nuts; source of a light-brown dye -12319204 20 n 04 black_walnut 0 black_walnut_tree 0 black_hickory 3 Juglans_nigra 0 003 @ 12318378 n 0000 #m 12318164 n 0000 %p 07771405 n 0000 | North American walnut tree with hard dark wood and edible nut -12319414 20 n 05 English_walnut 0 English_walnut_tree 0 Circassian_walnut 0 Persian_walnut 0 Juglans_regia 0 003 @ 12318378 n 0000 #m 12318164 n 0000 %m 07771539 n 0000 | Eurasian walnut valued for its large edible nut and its hard richly figured wood; widely cultivated -12319687 20 n 02 Carya 0 genus_Carya 0 011 @ 11567411 n 0000 #m 12317919 n 0000 %m 12320010 n 0000 %m 12320414 n 0000 %m 12320627 n 0000 %m 12320806 n 0000 %m 12321077 n 0000 %m 12321395 n 0000 %m 12321669 n 0000 %m 12321873 n 0000 %m 12322099 n 0000 | genus of large deciduous nut-bearing trees; United States and China -12320010 20 n 02 hickory 0 hickory_tree 0 010 @ 13110915 n 0000 #m 12319687 n 0000 %s 12320285 n 0000 ~ 12320414 n 0000 ~ 12320627 n 0000 ~ 12320806 n 0000 ~ 12321395 n 0000 ~ 12321669 n 0000 ~ 12321873 n 0000 ~ 12322099 n 0000 | American hardwood tree bearing edible nuts -12320285 20 n 01 hickory 2 002 @ 15098161 n 0000 #s 12320010 n 0000 | valuable tough heavy hardwood from various hickory trees -12320414 20 n 04 water_hickory 0 bitter_pecan 0 water_bitternut 0 Carya_aquatica 0 002 @ 12320010 n 0000 #m 12319687 n 0000 | hickory of southern United States having many narrow leaflets and rather bitter nuts -12320627 20 n 05 pignut 0 pignut_hickory 0 brown_hickory 0 black_hickory 1 Carya_glabra 0 002 @ 12320010 n 0000 #m 12319687 n 0000 | an American hickory tree having bitter nuts -12320806 20 n 06 bitternut 0 bitternut_hickory 0 bitter_hickory 0 bitter_pignut 0 swamp_hickory 0 Carya_cordiformis 0 002 @ 12320010 n 0000 #m 12319687 n 0000 | hickory of the eastern United States having a leaves with 7 or 9 leaflets and thin-shelled very bitter nuts -12321077 20 n 04 pecan 0 pecan_tree 0 Carya_illinoensis 0 Carya_illinoinsis 0 004 @ 13110915 n 0000 #m 12319687 n 0000 %p 07774719 n 0000 %s 12321304 n 0000 | tree of southern United States and Mexico cultivated for its nuts -12321304 20 n 01 pecan 2 002 @ 15098161 n 0000 #s 12321077 n 0000 | wood of a pecan tree -12321395 20 n 06 big_shellbark 0 big_shellbark_hickory 0 big_shagbark 0 king_nut 0 king_nut_hickory 0 Carya_laciniosa 0 003 @ 12320010 n 0000 #m 12319687 n 0000 %p 07774295 n 0000 | hickory of the eastern United States resembling the shagbark but having a much larger nut -12321669 20 n 03 nutmeg_hickory 0 Carya_myristicaeformis 0 Carya_myristiciformis 0 002 @ 12320010 n 0000 #m 12319687 n 0000 | hickory of southern United States and Mexico having hard nutmeg-shaped nuts -12321873 20 n 05 shagbark 0 shagbark_hickory 0 shellbark 0 shellbark_hickory 0 Carya_ovata 0 003 @ 12320010 n 0000 #m 12319687 n 0000 %p 07774295 n 0000 | North American hickory having loose grey shaggy bark and edible nuts -12322099 20 n 06 mockernut 0 mockernut_hickory 0 black_hickory 2 white-heart_hickory 0 big-bud_hickory 0 Carya_tomentosa 0 002 @ 12320010 n 0000 #m 12319687 n 0000 | smooth-barked North American hickory with 7 to 9 leaflets bearing a hard-shelled edible nut -12322359 20 n 02 Pterocarya 0 genus_Pterocarya 0 003 @ 11567411 n 0000 #m 12317919 n 0000 %m 12322501 n 0000 | Asiatic nut trees: wing nuts -12322501 20 n 02 wing_nut 0 wing-nut 0 003 @ 13110915 n 0000 #m 12322359 n 0000 ~ 12322699 n 0000 | any tree of the genus Pterocarya; fruit is a small winged nutlet; Caucasus to southeastern Asia -12322699 20 n 02 Caucasian_walnut 0 Pterocarya_fraxinifolia 0 001 @ 12322501 n 0000 | medium-sized Caucasian much-branched tree distinguished from other walnut trees by its winged fruit -12322887 20 n 04 Myrtales 0 order_Myrtales 0 Thymelaeales 0 order_Thymelaeales 0 015 @ 11534677 n 0000 #m 12212810 n 0000 %m 12323411 n 0000 %m 12325497 n 0000 %m 12326604 n 0000 %m 12327209 n 0000 %m 12328026 n 0000 %m 12329899 n 0000 %m 12339972 n 0000 %m 12341126 n 0000 %m 12344996 n 0000 %m 12345495 n 0000 %m 12346179 n 0000 %m 12347892 n 0000 %m 12348774 n 0000 | Myrtaceae; Combretaceae; Elaeagnaceae; Haloragidaceae; Melastomaceae; Lecythidaceae; Lythraceae; Rhizophoraceae; Onagraceae; Lecythidaceae; Punicaceae -12323411 20 n 03 Combretaceae 0 family_Combretaceae 0 combretum_family 0 006 @ 11562747 n 0000 #m 12322887 n 0000 %m 12323665 n 0000 %m 12323820 n 0000 %m 12324756 n 0000 %m 12325093 n 0000 | a family of tropical trees and shrubs of the order Myrtales -12323665 20 n 02 dhawa 0 dhava 0 002 @ 13104059 n 0000 #m 12323411 n 0000 | an Indian tree of the family Combretaceae that is a source of timber and gum -12323820 20 n 01 genus_Combretum 0 006 @ 11567411 n 0000 #m 12323411 n 0000 %m 12324056 n 0000 %m 12324222 n 0000 %m 12324388 n 0000 %m 12324558 n 0000 | type genus of the Combretaceae: tropical and subtropical small shrubs and trees -12324056 20 n 01 combretum 0 002 @ 13103136 n 0000 #m 12323820 n 0000 | any of numerous shrubs or small trees of the genus Combretum having spikes of small flowers -12324222 20 n 03 hiccup_nut 0 hiccough_nut 0 Combretum_bracteosum 0 002 @ 13112664 n 0000 #m 12323820 n 0000 | ornamental African shrub or climber with red flowers -12324388 20 n 02 bush_willow 1 Combretum_appiculatum 0 002 @ 13109733 n 0000 #m 12323820 n 0000 | small deciduous tree of the Transvaal having spikes of yellow flowers -12324558 20 n 02 bush_willow 2 Combretum_erythrophyllum 0 002 @ 13109733 n 0000 #m 12323820 n 0000 | small South African tree having creamy yellow fragrant flowers usually growing on stream banks -12324756 20 n 02 Conocarpus 0 genus_Conocarpus 0 002 @ 11567411 n 0000 #m 12323411 n 0000 | monotypic genus of tropical American trees: button tree -12324906 20 n 03 button_tree 0 button_mangrove 0 Conocarpus_erectus 0 001 @ 13104059 n 0000 | evergreen tree or shrub with fruit resembling buttons and yielding heavy hard compact wood -12325093 20 n 02 Laguncularia 0 genus_Laguncularia 0 003 @ 11744859 n 0000 #m 12323411 n 0000 %m 12325234 n 0000 | a genus of Laguncularia -12325234 20 n 02 white_mangrove 2 Laguncularia_racemosa 0 002 @ 13104059 n 0000 #m 12325093 n 0000 | shrub to moderately large tree that grows in brackish water along the seacoasts of western Africa and tropical America; locally important as a source of tannin -12325497 20 n 03 Elaeagnaceae 0 family_Elaeagnaceae 0 oleaster_family 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12325667 n 0000 | shrubs or small trees often armed -12325667 20 n 02 Elaeagnus 0 genus_Elaeagnus 0 003 @ 11567411 n 0000 #m 12325497 n 0000 %m 12325787 n 0000 | oleaster -12325787 20 n 01 oleaster 0 005 @ 13112664 n 0000 #m 12325667 n 0000 ~ 12326033 n 0000 ~ 12326178 n 0000 ~ 12326369 n 0000 | any of several shrubs of the genus Elaeagnus having silver-white twigs and yellow flowers followed by olivelike fruits -12326033 20 n 02 wild_olive 0 Elaeagnus_latifolia 0 001 @ 12325787 n 0000 | erect shrub or climber of India and China with red olivelike fruit -12326178 20 n 05 silverberry 0 silver_berry 1 silverbush 1 silver-bush 1 Elaeagnus_commutata 0 001 @ 12325787 n 0000 | deciduous unarmed North American shrub with silvery leaves and fruits -12326369 20 n 03 Russian_olive 0 silver_berry 2 Elaeagnus_augustifolia 0 001 @ 12325787 n 0000 | deciduous shrubby tree of Europe and western Asia having grey leaves and small yellow fruits covered in silvery scales; sometimes spiny -12326604 20 n 05 Haloragidaceae 0 family_Haloragidaceae 0 Haloragaceae 0 family_Haloragaceae 0 water-milfoil_family 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12326842 n 0000 | a family of dicotyledonous plants of the order Myrtales -12326842 20 n 02 Myriophyllum 0 genus_Myriophyllum 0 003 @ 11567411 n 0000 #m 12326604 n 0000 %m 12327022 n 0000 | chiefly monoecious and usually aquatic herbs (as the milfoils) -12327022 20 n 01 water_milfoil 0 002 @ 13121544 n 0000 #m 12326842 n 0000 | an aquatic plant of the genus Myriophyllum having feathery underwater leaves and small inconspicuous flowers -12327209 20 n 02 Lecythidaceae 0 family_Lecythidaceae 0 004 @ 11562747 n 0000 #m 12322887 n 0000 %m 12327407 n 0000 %m 12327718 n 0000 | large tropical trees bearing large fruits with woody skins -12327407 20 n 02 Grias 0 genus_Grias 0 003 @ 11567411 n 0000 #m 12327209 n 0000 %m 12327528 n 0000 | anchovy pear tree -12327528 20 n 03 anchovy_pear 0 anchovy_pear_tree 0 Grias_cauliflora 0 003 @ 12651821 n 0000 #m 12327407 n 0000 %p 07753448 n 0000 | West Indian tree bearing edible fruit resembling mango -12327718 20 n 02 Bertholletia 0 genus_Bertholletia 0 003 @ 11567411 n 0000 #m 12327209 n 0000 %m 12327846 n 0000 | brazil nut -12327846 20 n 03 brazil_nut 0 brazil-nut_tree 0 Bertholletia_excelsa 0 003 @ 13110915 n 0000 #m 12327718 n 0000 %p 07771731 n 0000 | tall South American tree bearing brazil nuts -12328026 20 n 03 Lythraceae 0 family_Lythraceae 0 loosestrife_family 0 004 @ 11562747 n 0000 #m 12322887 n 0000 %m 12328241 n 0000 %m 12329020 n 0000 | herbs and shrubs and small trees with pink or purple flowers -12328241 20 n 02 Lythrum 0 genus_Lythrum 0 005 @ 11567411 n 0000 #m 12328026 n 0000 %m 12328398 n 0000 %m 12328567 n 0000 %m 12328801 n 0000 | loosestrife -12328398 20 n 01 loosestrife 1 004 @ 13118707 n 0000 #m 12328241 n 0000 ~ 12328567 n 0000 ~ 12328801 n 0000 | any of numerous herbs and subshrubs of the genus Lythrum -12328567 20 n 03 purple_loosestrife 0 spiked_loosestrife 0 Lythrum_salicaria 0 002 @ 12328398 n 0000 #m 12328241 n 0000 | marsh herb with a long spike of purple flowers; originally of Europe but now rampant in eastern United States -12328801 20 n 03 grass_poly 0 hyssop_loosestrife 0 Lythrum_hyssopifolia 0 002 @ 12328398 n 0000 #m 12328241 n 0000 | annual with small solitary pink flowers; originally of Europe but widely naturalized in moist areas -12329020 20 n 02 Lagerstroemia 0 genus_Lagerstroemia 0 004 @ 11744859 n 0000 #m 12328026 n 0000 %m 12329260 n 0000 %m 12329473 n 0000 | shrubs or small trees of tropical Asia and Africa usually with showy white, pink, or purplish flowers -12329260 20 n 04 crape_myrtle 0 crepe_myrtle 0 crepe_flower 0 Lagerstroemia_indica 0 002 @ 13112664 n 0000 #m 12329020 n 0000 | ornamental shrub from eastern India commonly planted in the southern United States -12329473 20 n 03 Queen's_crape_myrtle 0 pride-of-India 1 Lagerstroemia_speciosa 0 002 @ 13109733 n 0000 #m 12329020 n 0000 | native to Asia, Australia, and East Indies, where it provides timber called pyinma; used elsewhere as an ornamental for its large showy flowers -12329744 20 n 01 pyinma 0 001 @ 15098161 n 0000 | relatively hard durable timber from the Queen's crape myrtle; light reddish brown, smooth and lustrous -12329899 20 n 03 Myrtaceae 0 family_Myrtaceae 0 myrtle_family 0 012 @ 11562747 n 0000 #m 12322887 n 0000 %m 12330239 n 0000 %m 12330336 n 0000 %m 12330751 n 0000 %m 12331415 n 0000 %m 12332422 n 0000 %m 12332718 n 0000 %m 12332866 n 0000 %m 12333397 n 0000 %m 12334686 n 0000 %m 12339319 n 0000 | trees and shrubs yielding a fragrant oil -12330239 20 n 01 myrtaceous_tree 0 002 @ 13109733 n 0000 #m 12329899 n 0000 | trees and shrubs -12330336 20 n 02 Myrtus 0 genus_Myrtus 0 003 @ 11567411 n 0000 #m 12329899 n 0000 %m 12330587 n 0000 | type genus of the Myrtaceae -12330469 20 n 01 myrtle 0 002 @ 13109733 n 0000 ~ 12330587 n 0000 | any evergreen shrub or tree of the genus Myrtus -12330587 20 n 02 common_myrtle 0 Myrtus_communis 0 002 @ 12330469 n 0000 #m 12330336 n 0000 | European shrub with white or rosy flowers followed by black berries -12330751 20 n 02 Pimenta 0 genus_Pimenta 0 004 @ 11567411 n 0000 #m 12329899 n 0000 %m 12330891 n 0000 %m 12331066 n 0000 | allspice tree -12330891 20 n 05 bayberry 1 bay-rum_tree 0 Jamaica_bayberry 0 wild_cinnamon 2 Pimenta_acris 0 002 @ 13104059 n 0000 #m 12330751 n 0000 | West Indian tree; source of bay rum -12331066 20 n 04 allspice 0 allspice_tree 1 pimento_tree 0 Pimenta_dioica 0 003 @ 13111174 n 0000 #m 12330751 n 0000 %p 07814007 n 0000 | aromatic West Indian tree that produces allspice berries -12331263 20 n 02 allspice_tree 2 Pimenta_officinalis 0 001 @ 13111174 n 0000 | tropical American tree having small white flowers and aromatic berries -12331415 20 n 02 Eugenia 0 genus_Eugenia 0 006 @ 11567411 n 0000 #m 12329899 n 0000 %m 12331655 n 0000 %m 12331788 n 0000 %m 12332030 n 0000 %m 12332218 n 0000 | tropical trees and shrubs with aromatic leaves and often valuable hard wood -12331655 20 n 02 sour_cherry 2 Eugenia_corynantha 0 002 @ 12651821 n 0000 #m 12331415 n 0000 | Australian tree with sour red fruit -12331788 20 n 02 nakedwood 0 Eugenia_dicrana 0 002 @ 11745817 n 0000 #m 12331415 n 0000 | tree of extreme southern Florida and West Indies having thin scaly bark and aromatic fruits and seeds and yielding hard heavy close-grained zebrawood -12332030 20 n 03 Surinam_cherry 1 pitanga 0 Eugenia_uniflora 0 002 @ 12651821 n 0000 #m 12331415 n 0000 | Brazilian tree with spicy red fruit; often cultivated in California and Florida -12332218 20 n 04 rose_apple 0 rose-apple_tree 0 jambosa 0 Eugenia_jambos 0 003 @ 12651821 n 0000 #m 12331415 n 0000 %p 07770034 n 0000 | tropical tree of the East Indies cultivated for its edible fruit -12332422 20 n 01 genus_Feijoa 0 003 @ 11567411 n 0000 #m 12329899 n 0000 %m 12332555 n 0000 | small South American shrubs or trees -12332555 20 n 02 feijoa 0 feijoa_bush 0 003 @ 13112664 n 0000 #m 12332422 n 0000 %p 07763107 n 0000 | South American shrub having edible greenish plumlike fruit -12332718 20 n 02 Jambos 0 genus_Jambos 0 002 @ 11567411 n 0000 #m 12329899 n 0000 | used in some classifications for rose apples (Eugenia jambos) -12332866 20 n 03 Myrciaria 0 genus_Myrciaria 0 Myrcia 0 003 @ 11567411 n 0000 #m 12329899 n 0000 %m 12333053 n 0000 | a genus of tropical American trees and shrubs of the myrtle family -12333053 20 n 03 jaboticaba 0 jaboticaba_tree 0 Myrciaria_cauliflora 0 003 @ 12651821 n 0000 #m 12332866 n 0000 %p 07765862 n 0000 | small evergreen tropical tree native to Brazil and West Indies but introduced into southern United States; grown in Brazil for its edible tough-skinned purple grapelike fruit that grows all along the branches -12333397 20 n 02 Psidium 0 genus_Psidium 0 004 @ 11567411 n 0000 #m 12329899 n 0000 %m 12333530 n 0000 %m 12333771 n 0000 | guavas -12333530 20 n 04 guava 1 true_guava 0 guava_bush 0 Psidium_guajava 0 003 @ 12651821 n 0000 #m 12333397 n 0000 %p 07765361 n 0000 | small tropical American shrubby tree; widely cultivated in warm regions for its sweet globular yellow fruit -12333771 20 n 04 guava 2 strawberry_guava 0 yellow_cattley_guava 0 Psidium_littorale 0 002 @ 12651821 n 0000 #m 12333397 n 0000 | small tropical shrubby tree bearing small yellowish fruit -12333961 20 n 04 cattley_guava 0 purple_strawberry_guava 0 Psidium_cattleianum 0 Psidium_littorale_longipes 0 001 @ 12651821 n 0000 | small tropical shrubby tree bearing deep red oval fruit -12334153 20 n 02 Brazilian_guava 0 Psidium_guineense 0 001 @ 12651821 n 0000 | South American tree having fruit similar to the true guava -12334293 20 n 02 gum_tree 0 gum 1 005 @ 13104059 n 0000 ~ 12316444 n 0000 %s 12334520 n 0000 ~ 12334891 n 0000 ~ 12340383 n 0000 | any of various trees of the genera Eucalyptus or Liquidambar or Nyssa that are sources of gum -12334520 20 n 02 gumwood 0 gum 2 003 @ 15098161 n 0000 #s 12334293 n 0000 ~ 12316982 n 0000 | wood or lumber from any of various gum trees especially the sweet gum -12334686 20 n 01 genus_Eucalyptus 0 003 @ 11567411 n 0000 #m 12329899 n 0000 %m 12334891 n 0000 | tall trees native to the Australian region; source of timber and medicinal oils from the aromatic leaves -12334891 20 n 03 eucalyptus 0 eucalypt 0 eucalyptus_tree 0 020 @ 12334293 n 0000 #m 12334686 n 0000 %s 12335351 n 0000 ~ 12335483 n 0000 ~ 12335664 n 0000 ~ 12335800 n 0000 ~ 12335937 n 0000 ~ 12336092 n 0000 ~ 12336224 n 0000 ~ 12336333 n 0000 ~ 12336586 n 0000 ~ 12336727 n 0000 ~ 12336973 n 0000 ~ 12337391 n 0000 ~ 12337617 n 0000 ~ 12338034 n 0000 ~ 12338146 n 0000 ~ 12338258 n 0000 ~ 12338796 n 0000 ~ 12338979 n 0000 | a tree of the genus Eucalyptus -12335351 20 n 01 eucalyptus 2 002 @ 15098161 n 0000 #s 12334891 n 0000 | wood of any of various eucalyptus trees valued as timber -12335483 20 n 01 flooded_gum 0 004 @ 12334891 n 0000 ~ 12337800 n 0000 ~ 12337922 n 0000 ~ 12338655 n 0000 | any of several Australian gum trees growing on moist or alluvial soil -12335664 20 n 01 mallee 0 003 @ 12334891 n 0000 ~ 12337131 n 0000 ~ 12338454 n 0000 | any of several low-growing Australian eucalypts -12335800 20 n 01 stringybark 0 002 @ 12334891 n 0000 ~ 12337246 n 0000 | any of several Australian eucalypts having fibrous inner bark -12335937 20 n 01 smoothbark 0 001 @ 12334891 n 0000 | any of several Australian eucalypts having the bark smooth except at or near the base of the trunk -12336092 20 n 04 red_gum 1 peppermint 2 peppermint_gum 0 Eucalyptus_amygdalina 0 001 @ 12334891 n 0000 | red gum tree of Tasmania -12336224 20 n 03 red_gum 2 marri 0 Eucalyptus_calophylla 0 001 @ 12334891 n 0000 | very large red gum tree -12336333 20 n 04 river_red_gum 0 river_gum 0 Eucalyptus_camaldulensis 0 Eucalyptus_rostrata 0 002 @ 12334891 n 0000 %s 12339090 n 0000 | somewhat crooked red gum tree growing chiefly along rivers; has durable reddish lumber used in heavy construction -12336586 20 n 02 mountain_swamp_gum 0 Eucalyptus_camphora 0 001 @ 12334891 n 0000 | medium-sized swamp gum of New South Wales and Victoria -12336727 20 n 05 snow_gum 0 ghost_gum 0 white_ash 2 Eucalyptus_coriacea 0 Eucalyptus_pauciflora 0 001 @ 12334891 n 0000 | small to medium-sized tree of Australia and Tasmania having smooth white to light-grey bark shedding in patches or strips -12336973 20 n 03 alpine_ash 0 mountain_oak 0 Eucalyptus_delegatensis 0 001 @ 12334891 n 0000 | tall timber tree with hard heavy pinkish or light brown wood -12337131 20 n 03 white_mallee 0 congoo_mallee 0 Eucalyptus_dumosa 0 001 @ 12335664 n 0000 | small shrubby mallee -12337246 20 n 03 white_stringybark 0 thin-leaved_stringybark 0 Eucalyptusd_eugenioides 0 001 @ 12335800 n 0000 | stringybark having white wood -12337391 20 n 02 white_mountain_ash 0 Eucalyptus_fraxinoides 0 001 @ 12334891 n 0000 | large tree with dark compact bark on lower trunk but smooth and white above; yields lumber similar to that of European or American ashes -12337617 20 n 03 blue_gum 0 fever_tree 3 Eucalyptus_globulus 0 001 @ 12334891 n 0000 | tall fast-growing timber tree with leaves containing a medicinal oil; young leaves are bluish -12337800 20 n 02 rose_gum 0 Eucalypt_grandis 0 001 @ 12335483 n 0000 | very tall tree of Queensland and New South Wales -12337922 20 n 02 cider_gum 0 Eucalypt_gunnii 0 001 @ 12335483 n 0000 | small to medium-sized tree of Tasmania -12338034 20 n 02 swamp_gum 0 Eucalypt_ovata 0 001 @ 12334891 n 0000 | medium-sized tree of southern Australia -12338146 20 n 02 spotted_gum 0 Eucalyptus_maculata 0 001 @ 12334891 n 0000 | large gum tree with mottled bark -12338258 20 n 03 lemon-scented_gum 0 Eucalyptus_citriodora 0 Eucalyptus_maculata_citriodora 0 001 @ 12334891 n 0000 | similar to but smaller than the spotted gum and having lemon-scented leaves -12338454 20 n 04 black_mallee 0 black_sally 0 black_gum 2 Eucalytus_stellulata 0 001 @ 12335664 n 0000 | a small mallee with rough dark-colored bark toward the butt; yields a red eucalyptus kino gum -12338655 20 n 02 forest_red_gum 0 Eucalypt_tereticornis 0 001 @ 12335483 n 0000 | tall tree of Queensland and New South Wales and Victoria -12338796 20 n 02 mountain_ash 3 Eucalyptus_regnans 0 001 @ 12334891 n 0000 | tree having wood similar to the alpine ash; tallest tree in Australia and tallest hardwood in the world -12338979 20 n 02 manna_gum 0 Eucalyptus_viminalis 0 001 @ 12334891 n 0000 | tall tree yielding a false manna -12339090 20 n 03 eucalyptus_gum 0 eucalyptus_kino 0 red_gum 5 002 @ 14898470 n 0000 #s 12336333 n 0000 | reddish-brown dried gummy exudation from any of several trees of the genus Eucalyptus especially Eucalyptus camaldulensis -12339319 20 n 02 Syzygium 0 genus_Syzygium 0 003 @ 11567411 n 0000 #m 12329899 n 0000 %m 12339526 n 0000 | a tropical evergreen tree of the myrtle family native to the East Indies but cultivated elsewhere -12339526 20 n 05 clove 0 clove_tree 0 Syzygium_aromaticum 0 Eugenia_aromaticum 0 Eugenia_caryophyllatum 0 003 @ 13111174 n 0000 #m 12339319 n 0000 %p 12339831 n 0000 | moderate sized very symmetrical red-flowered evergreen widely cultivated in the tropics for its flower buds which are source of cloves -12339831 20 n 01 clove 2 003 @ 13165409 n 0000 #p 12339526 n 0000 %s 07814487 n 0000 | aromatic flower bud of a clove tree; yields a spice -12339972 20 n 04 Nyssaceae 0 family_Nyssaceae 0 sour-gum_family 0 tupelo_family 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12340202 n 0000 | a family of dicotyledonous trees of order Myrtales that includes the sour gum trees -12340202 20 n 02 Nyssa 0 genus_Nyssa 0 003 @ 11567411 n 0000 #m 12339972 n 0000 %m 12340383 n 0000 | tupelos: deciduous trees of moist habitats especially swamps and beside ponds -12340383 20 n 02 tupelo 0 tupelo_tree 0 005 @ 12334293 n 0000 #m 12340202 n 0000 ~ 12340581 n 0000 ~ 12340755 n 0000 %s 12340998 n 0000 | any of several gum trees of swampy areas of North America -12340581 20 n 02 water_gum 0 Nyssa_aquatica 0 001 @ 12340383 n 0000 | columnar swamp tree of southeastern to midwestern North America yielding pale soft easily worked wood -12340755 20 n 04 sour_gum 0 black_gum 1 pepperidge 0 Nyssa_sylvatica 0 001 @ 12340383 n 0000 | columnar tree of eastern North America having horizontal limbs and small leaves that emerge late in spring and have brilliant color in early fall -12340998 20 n 01 tupelo 2 002 @ 15098161 n 0000 #s 12340383 n 0000 | pale soft wood of a tupelo tree especially the water gum -12341126 20 n 03 Onagraceae 0 family_Onagraceae 0 evening-primrose_family 0 007 @ 11566682 n 0000 #m 12322887 n 0000 %m 12341412 n 0000 %m 12342043 n 0000 %m 12343306 n 0000 %m 12344131 n 0000 %m 12344283 n 0000 | a large and widely distributed family of plants of the order Myrtales -12341412 20 n 02 Circaea 0 genus_Circaea 0 003 @ 11585340 n 0000 #m 12341126 n 0000 %m 12341542 n 0000 | enchanter's nightshade -12341542 20 n 01 enchanter's_nightshade 0 004 @ 12344283 n 0000 #m 12341412 n 0000 ~ 12341795 n 0000 ~ 12341931 n 0000 | any of several erect perennial rhizomatous herbs of the genus Circaea having white flowers that open at dawn; northern hemisphere -12341795 20 n 02 Alpine_enchanter's_nightshade 0 Circaea_alpina 0 001 @ 12341542 n 0000 | an Alpine variety of enchanter's nightshade -12341931 20 n 01 Circaea_lutetiana 0 001 @ 12341542 n 0000 | tall evening primrose with inconspicuous flowers -12342043 20 n 02 Epilobium 0 genus_Epilobium 0 005 @ 11585340 n 0000 #m 12341126 n 0000 %m 12342299 n 0000 %m 12342498 n 0000 %m 12342852 n 0000 | large widely distributed genus of herbs and subshrubs of especially western North America and Arctic areas -12342299 20 n 01 willowherb 0 004 @ 12205694 n 0000 #m 12342043 n 0000 ~ 12342498 n 0000 ~ 12343092 n 0000 | a plant of the genus Epilobium having pink or yellow flowers and seeds with silky hairs -12342498 20 n 05 fireweed 1 giant_willowherb 0 rosebay_willowherb 0 wickup 0 Epilobium_angustifolium 0 002 @ 12342299 n 0000 #m 12342043 n 0000 | tall North American perennial with creeping rootstocks and narrow leaves and spikes of pinkish-purple flowers occurring in great abundance in burned-over areas or recent clearings; an important honey plant -12342852 20 n 04 California_fuchsia 0 humming_bird's_trumpet 0 Epilobium_canum_canum 0 Zauschneria_californica 0 002 @ 13118569 n 0000 #m 12342043 n 0000 | shrublet of southwestern United States to Mexico having brilliant scarlet flowers -12343092 20 n 03 hairy_willowherb 0 codlins-and-cream 0 Epilobium_hirsutum 0 001 @ 12342299 n 0000 | plant of Europe and Asia having purplish-red flowers and hairy stems and leaves; introduced into North America -12343306 20 n 01 genus_Fuchsia 0 003 @ 11567411 n 0000 #m 12341126 n 0000 %m 12343480 n 0000 | large genus of decorative tropical shrubs with pendulous tetramerous flowers -12343480 20 n 01 fuchsia 0 004 @ 13112664 n 0000 #m 12343306 n 0000 ~ 12343753 n 0000 ~ 12343951 n 0000 | any of various tropical shrubs widely cultivated for their showy drooping purplish or reddish or white flowers; Central and South America and New Zealand and Tahiti -12343753 20 n 05 lady's-eardrop 0 ladies'-eardrop 0 lady's-eardrops 0 ladies'-eardrops 0 Fuchsia_coccinea 0 001 @ 12343480 n 0000 | erect or climbing shrub of Brazil with deep pink to red flowers -12343951 20 n 04 konini 0 tree_fuchsia 0 native_fuchsia 0 Fuchsia_excorticata 0 001 @ 12343480 n 0000 | erect deciduous shrub or tree to 10 feet with maroon flowers; New Zealand -12344131 20 n 02 Oenothera 0 genus_Oenothera 0 002 @ 11567411 n 0000 #m 12341126 n 0000 | chiefly North American herbs with usually nocturnal flowers -12344283 20 n 01 evening_primrose 0 006 @ 12205694 n 0000 #m 12341126 n 0000 ~ 12341542 n 0000 ~ 12344483 n 0000 ~ 12344700 n 0000 ~ 12344837 n 0000 | any of several plants of the family Onagraceae -12344483 20 n 03 common_evening_primrose 0 German_rampion 0 Oenothera_biennis 0 001 @ 12344283 n 0000 | a coarse biennial of eastern North America with yellow flowers that open in the evening; naturalized in Europe -12344700 20 n 02 sundrops 0 Oenothera_fruticosa 0 001 @ 12344283 n 0000 | a day-flowering biennial or perennial of the genus Oenothera -12344837 20 n 03 Missouri_primrose 0 Ozark_sundrops 0 Oenothera_macrocarpa 0 001 @ 12344283 n 0000 | evening-opening primrose of south central United States -12344996 20 n 02 Punicaceae 0 family_Punicaceae 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12345136 n 0000 | one species: pomegranates -12345136 20 n 02 Punica 0 genus_Punica 0 003 @ 11567411 n 0000 #m 12344996 n 0000 %m 12345280 n 0000 | coextensive with the family Punicaceae -12345280 20 n 03 pomegranate 0 pomegranate_tree 0 Punica_granatum 0 003 @ 12651821 n 0000 #m 12345136 n 0000 %p 07768694 n 0000 | shrub or small tree native to southwestern Asia having large red many-seeded fruit -12345495 20 n 03 Rhizophoraceae 0 family_Rhizophoraceae 0 mangrove_family 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12345709 n 0000 | trees and shrubs that usually form dense jungles along tropical seacoasts -12345709 20 n 02 Rhizophora 0 genus_Rhizophora 0 003 @ 11567411 n 0000 #m 12345495 n 0000 %m 12345899 n 0000 | type genus of the Rhizophoraceae; a small genus of tropical trees and shrubs -12345899 20 n 02 mangrove 0 Rhizophora_mangle 0 002 @ 13109733 n 0000 #m 12345709 n 0000 | a tropical tree or shrub bearing fruit that germinates while still on the tree and having numerous prop roots that eventually form an impenetrable mass and are important in land building -12346179 20 n 03 Thymelaeaceae 0 family_Thymelaeaceae 0 daphne_family 0 004 @ 11562747 n 0000 #m 12322887 n 0000 %m 12346448 n 0000 %m 12347490 n 0000 | family of trees and shrubs and herbs having tough bark that are found especially in Australia and tropical Africa -12346448 20 n 01 genus_Daphne 0 003 @ 11567411 n 0000 #m 12346179 n 0000 %m 12346578 n 0000 | usually evergreen Eurasian shrubs -12346578 20 n 01 daphne 0 005 @ 13112664 n 0000 #m 12346448 n 0000 ~ 12346813 n 0000 ~ 12346986 n 0000 ~ 12347158 n 0000 | any of several ornamental shrubs with shiny mostly evergreen leaves and clusters of small bell-shaped flowers -12346813 20 n 02 garland_flower 0 Daphne_cneorum 0 001 @ 12346578 n 0000 | widely cultivated low evergreen shrub with dense clusters of fragrant pink to deep rose flowers -12346986 20 n 03 spurge_laurel 0 wood_laurel 1 Daphne_laureola 0 001 @ 12346578 n 0000 | bushy Eurasian shrub with glossy leathery oblong leaves and yellow-green flowers -12347158 20 n 03 mezereon 0 February_daphne 0 Daphne_mezereum 0 002 @ 12346578 n 0000 %p 12347380 n 0000 | small European deciduous shrub with fragrant lilac-colored flowers followed by red berries on highly toxic twigs -12347380 20 n 01 mezereum 0 002 @ 13162297 n 0000 #p 12347158 n 0000 | the dried bark of the shrub mezereon -12347490 20 n 02 Dirca 0 genus_Dirca 0 003 @ 11567411 n 0000 #m 12346179 n 0000 %m 12347639 n 0000 | deciduous shrub of North America: leatherwood -12347639 20 n 06 leatherwood 1 moosewood 1 moose-wood 1 wicopy 0 ropebark 0 Dirca_palustris 0 002 @ 13112664 n 0000 #m 12347490 n 0000 | deciduous shrub of eastern North America having tough flexible branches and pliable bark and small yellow flowers -12347892 20 n 02 Trapaceae 0 family_Trapaceae 0 003 @ 11562747 n 0000 #m 12322887 n 0000 %m 12348127 n 0000 | family comprising solely the genus Trapa; in some classifications treated as a subfamily or tribe of the family Onagraceae -12348127 20 n 02 Trapa 0 genus_Trapa 0 003 @ 11567411 n 0000 #m 12347892 n 0000 %m 12348294 n 0000 | small genus of Eurasian aquatic perennial herbs: water chestnut -12348294 20 n 03 water_chestnut 2 water_chestnut_plant 0 caltrop 2 004 @ 13121544 n 0000 #m 12348127 n 0000 ~ 12348518 n 0000 ~ 12348635 n 0000 | a plant of the genus Trapa bearing spiny four-pronged edible nutlike fruits -12348518 20 n 03 water_caltrop 0 Jesuits'_nut 0 Trapa_natans 0 001 @ 12348294 n 0000 | a variety of water chestnut -12348635 20 n 03 ling 2 ling_ko 0 Trapa_bicornis 0 001 @ 12348294 n 0000 | water chestnut whose spiny fruit has two rather than 4 prongs -12348774 20 n 05 Melastomataceae 0 family_Melastomataceae 0 Melastomaceae 0 family_Melastomaceae 0 meadow-beauty_family 0 005 @ 11566682 n 0000 #m 12322887 n 0000 %m 12349091 n 0000 %m 12349491 n 0000 %m 12349916 n 0000 | a family of trees and bushes and herbs of order Myrtales; many are cultivated as ornamentals -12349091 20 n 02 Melastoma 0 genus_Melastoma 0 002 @ 11585340 n 0000 #m 12348774 n 0000 | type genus of Melastomataceae; Asiatic shrubs with leathery leaves and large purple flowers followed by edible fleshy black berries -12349315 20 n 02 Indian_rhododendron 0 Melastoma_malabathricum 0 001 @ 13112664 n 0000 | evergreen spreading shrub of India and southeastern Asia having large purple flowers -12349491 20 n 02 Medinilla 0 genus_Medinilla 0 003 @ 11585340 n 0000 #m 12348774 n 0000 %m 12349711 n 0000 | tropical Old World ornamental evergreen shrubs having fleshy leaves and large panicles of white pink flowers -12349711 20 n 01 Medinilla_magnifica 0 002 @ 13112664 n 0000 #m 12349491 n 0000 | a beautiful tropical evergreen epiphytic shrub grown for its lush foliage and huge panicles of pink flowers; Philippines -12349916 20 n 02 Rhexia 0 genus_Rhexia 0 003 @ 11585340 n 0000 #m 12348774 n 0000 %m 12350032 n 0000 | deer grass -12350032 20 n 02 deer_grass 0 meadow_beauty 0 002 @ 13118707 n 0000 #m 12349916 n 0000 | any of several plants of the genus Rhexia usually having pink-purple to magenta flowers; eastern North America -12350234 20 n 02 Musales 0 order_Musales 0 007 @ 11534677 n 0000 #m 11668952 n 0000 %m 12350433 n 0000 %m 12351287 n 0000 %m 12351975 n 0000 %m 12354068 n 0000 %m 12355320 n 0000 | tropical plants -12350433 20 n 02 Cannaceae 0 family_Cannaceae 0 003 @ 11555413 n 0000 #m 12350234 n 0000 %m 12350578 n 0000 | coextensive with the genus Canna -12350578 20 n 01 genus_Canna 0 003 @ 11556857 n 0000 #m 12350433 n 0000 %m 12350758 n 0000 | type and sole genus of the Cannaceae: perennial lily-like herbs of New World tropics -12350758 20 n 01 canna 0 004 @ 12205694 n 0000 #m 12350578 n 0000 ~ 12350959 n 0000 ~ 12351091 n 0000 | any plant of the genus Canna having large sheathing leaves and clusters of large showy flowers -12350959 20 n 02 canna_lily 0 Canna_generalis 0 001 @ 12350758 n 0000 | plants grown for their large bright yellow to red flowers -12351091 20 n 05 achira 0 indian_shot 0 arrowroot 2 Canna_indica 0 Canna_edulis 0 001 @ 12350758 n 0000 | canna grown especially for its edible rootstock from which arrowroot starch is obtained -12351287 20 n 03 Marantaceae 0 family_Marantaceae 0 arrowroot_family 0 003 @ 11555413 n 0000 #m 12350234 n 0000 %m 12351477 n 0000 | tropical perennial herbs with usually starchy rhizomes -12351477 20 n 01 genus_Maranta 0 003 @ 11556857 n 0000 #m 12351287 n 0000 %m 12351600 n 0000 | herbs of tropical America -12351600 20 n 01 maranta 0 003 @ 12205694 n 0000 #m 12351477 n 0000 ~ 12351790 n 0000 | any of numerous herbs of the genus Maranta having tuberous starchy roots and large sheathing leaves -12351790 20 n 04 arrowroot 0 American_arrowroot 0 obedience_plant 0 Maranta_arundinaceae 0 001 @ 12351600 n 0000 | white-flowered West Indian plant whose root yields arrowroot starch -12351975 20 n 03 Musaceae 0 family_Musaceae 0 banana_family 0 004 @ 11555413 n 0000 #m 12350234 n 0000 %m 12352150 n 0000 %m 12353604 n 0000 | treelike tropical Asian herbs -12352150 20 n 02 Musa 0 genus_Musa 0 003 @ 11556857 n 0000 #m 12351975 n 0000 %m 12352287 n 0000 | type genus of the Musaceae: bananas -12352287 20 n 02 banana 0 banana_tree 0 007 @ 12205694 n 0000 #m 12352150 n 0000 ~ 12352639 n 0000 ~ 12352844 n 0000 ~ 12352990 n 0000 ~ 12353203 n 0000 ~ 12353431 n 0000 | any of several tropical and subtropical treelike herbs of the genus Musa having a terminal crown of large entire leaves and usually bearing hanging clusters of elongated fruits -12352639 20 n 02 dwarf_banana 0 Musa_acuminata 0 002 @ 12352287 n 0000 %p 07753592 n 0000 | low-growing Asian banana tree cultivated especially in the West Indies for its clusters of edible yellow fruit -12352844 20 n 02 Japanese_banana 0 Musa_basjoo 0 001 @ 12352287 n 0000 | Asiatic banana plant cultivated especially as a foliage plant in Japan -12352990 20 n 03 plantain 0 plantain_tree 0 Musa_paradisiaca 0 002 @ 12352287 n 0000 %p 07768423 n 0000 | a banana tree bearing hanging clusters of edible angular greenish starchy fruits; tropics and subtropics -12353203 20 n 02 edible_banana 0 Musa_paradisiaca_sapientum 0 002 @ 12352287 n 0000 %p 07753592 n 0000 | widely cultivated species of banana trees bearing compact hanging clusters of commercially important edible yellow fruit -12353431 20 n 03 abaca 0 Manila_hemp 0 Musa_textilis 0 001 @ 12352287 n 0000 | Philippine banana tree having leafstalks that yield Manila hemp used for rope and paper etc -12353604 20 n 02 Ensete 0 genus_Ensete 0 003 @ 11556857 n 0000 #m 12351975 n 0000 %m 12353754 n 0000 | Old World tropical herbs: Abyssinian bananas -12353754 20 n 04 Abyssinian_banana 0 Ethiopian_banana 0 Ensete_ventricosum 0 Musa_ensete 0 002 @ 12205694 n 0000 #m 12353604 n 0000 | large evergreen arborescent herb having huge paddle-shaped leaves and bearing inedible fruit that resemble bananas but edible young flower shoots; sometimes placed in genus Musa -12354068 20 n 03 Strelitziaceae 0 family_Strelitziaceae 0 strelitzia_family 0 004 @ 11555413 n 0000 #m 12350234 n 0000 %m 12354374 n 0000 %m 12354849 n 0000 | woody plants with erect stems of tropical South America and South Africa and Madagascar; in some classifications included in the family Musaceae -12354374 20 n 02 Strelitzia 0 genus_Strelitzia 0 003 @ 11556857 n 0000 #m 12354068 n 0000 %m 12354619 n 0000 | small genus of large perennial evergreen herbs having leaves resembling those of banana plants; sometimes placed in family Musaceae -12354619 20 n 02 bird_of_paradise 1 Strelitzia_reginae 0 002 @ 12205694 n 0000 #m 12354374 n 0000 | ornamental plant of tropical South Africa and South America having stalks of orange and purplish-blue flowers resembling a bird -12354849 20 n 01 genus_Ravenala 0 003 @ 11556857 n 0000 #m 12354068 n 0000 %m 12355023 n 0000 | woody tropical plants with tall trunks; sometimes placed in family Musaceae -12355023 20 n 04 traveler's_tree 0 traveller's_tree 0 ravenala 0 Ravenala_madagascariensis 0 002 @ 13103136 n 0000 #m 12354849 n 0000 | giant treelike plant having edible nuts and leafstalks that yield a refreshing drink of clear watery sap; reputedly an emergency source of water for travelers -12355320 20 n 03 Zingiberaceae 0 family_Zingiberaceae 0 ginger_family 0 007 @ 11555413 n 0000 #m 12350234 n 0000 %m 12355594 n 0000 %m 12356255 n 0000 %m 12356668 n 0000 %m 12357802 n 0000 %m 12358173 n 0000 | a family of tropical monocotyledonous plants of order Musales -12355594 20 n 02 Zingiber 0 genus_Zingiber 0 003 @ 11556857 n 0000 #m 12355320 n 0000 %m 12355760 n 0000 | tropical Asiatic and Polynesian perennial plants: ginger -12355760 20 n 01 ginger 0 008 @ 12205694 n 0000 #m 12355594 n 0000 ~ 12356023 n 0000 ~ 12356960 n 0000 ~ 12357100 n 0000 ~ 12357343 n 0000 ~ 12357485 n 0000 %s 15033063 n 0000 | perennial plants having thick branching aromatic rhizomes and leafy reedlike stems -12356023 20 n 04 common_ginger 0 Canton_ginger 0 stem_ginger 0 Zingiber_officinale 0 002 @ 12355760 n 0000 %p 07814925 n 0000 | tropical Asian plant widely cultivated for its pungent root; source of gingerroot and powdered ginger -12356255 20 n 02 Curcuma 0 genus_Curcuma 0 003 @ 11556857 n 0000 #m 12355320 n 0000 %m 12356395 n 0000 | tropical Asiatic perennial herbs -12356395 20 n 03 turmeric 0 Curcuma_longa 0 Curcuma_domestica 0 003 @ 12205694 n 0000 #m 12356255 n 0000 %p 07821919 n 0000 | widely cultivated tropical plant of India having yellow flowers and a large aromatic deep yellow rhizome; source of a condiment and a yellow dye -12356668 20 n 04 Alpinia 0 genus_Alpinia 0 genus_Zerumbet 0 genus_Languas 0 006 @ 11744859 n 0000 #m 12355320 n 0000 %m 12356960 n 0000 %m 12357100 n 0000 %m 12357343 n 0000 %m 12357485 n 0000 | perennial rhizomatous herbs of Asia and Australia and Polynesia having ginger-scented rhizomes -12356960 20 n 02 galangal 1 Alpinia_galanga 0 002 @ 12355760 n 0000 #m 12356668 n 0000 | southeastern Asian perennial with aromatic roots -12357100 20 n 03 lesser_galangal 0 Alpinia_officinarum 0 Alpinia_officinalis 0 002 @ 12355760 n 0000 #m 12356668 n 0000 | Chinese perennial with pyramidal racemes of white flowers and pungent aromatic roots used medicinally and as flavoring -12357343 20 n 02 red_ginger 0 Alpinia_purpurata 0 002 @ 12355760 n 0000 #m 12356668 n 0000 | an ornamental ginger native to Pacific islands -12357485 20 n 06 shellflower 2 shall-flower 2 shell_ginger 0 Alpinia_Zerumbet 0 Alpinia_speciosa 0 Languas_speciosa 0 002 @ 12355760 n 0000 #m 12356668 n 0000 | cultivated for its shining oblong leaves and arching clusters of white flowers with pink shading and crinkled yellow lips with variegated magenta stripes -12357802 20 n 02 Aframomum 0 genus_Aframomum 0 003 @ 11744859 n 0000 #m 12355320 n 0000 %m 12357968 n 0000 | an African genus of plants of the family Zingiberaceae -12357968 20 n 05 grains_of_paradise 0 Guinea_grains 0 Guinea_pepper 2 melagueta_pepper 0 Aframomum_melegueta 0 002 @ 12205694 n 0000 #m 12357802 n 0000 | West African plant bearing pungent peppery seeds -12358173 20 n 02 Elettaria 0 genus_Elettaria 0 003 @ 11556857 n 0000 #m 12355320 n 0000 %m 12358293 n 0000 | cardamom -12358293 20 n 03 cardamom 0 cardamon 0 Elettaria_cardamomum 0 003 @ 12205694 n 0000 #m 12358173 n 0000 %p 07822323 n 0000 | rhizomatous herb of India having aromatic seeds used as seasoning -12358485 20 n 02 Dilleniidae 0 subclass_Dilleniidae 0 010 @ 08103777 n 0000 #m 11665781 n 0000 %m 11565385 n 0000 %m 11575425 n 0000 %m 11864364 n 0000 %m 12169526 n 0000 %m 12226009 n 0000 %m 12359026 n 0000 %m 12359578 n 0000 %m 12734446 n 0000 | a group of families of more or less advanced trees and shrubs and herbs having either polypetalous or gamopetalous corollas and often with ovules attached to the walls of the ovary; contains 69 families including Ericaceae and Cruciferae and Malvaceae; sometimes classified as a superorder -12359026 20 n 04 Parietales 0 order_Parietales 0 Hypericales 0 order_Hypericales 0 021 @ 11534677 n 0000 #m 12358485 n 0000 %m 12034828 n 0000 %m 12359734 n 0000 %m 12362844 n 0000 %m 12363988 n 0000 %m 12367122 n 0000 %m 12370842 n 0000 %m 12371911 n 0000 %m 12372708 n 0000 %m 12373361 n 0000 %m 12374002 n 0000 %m 12376950 n 0000 %m 12377809 n 0000 %m 12381321 n 0000 %m 12382484 n 0000 %m 12383073 n 0000 %m 12385046 n 0000 %m 12386039 n 0000 %m 12387201 n 0000 %m 12929061 n 0000 | a large order of dicotyledonous plants of subclass Dilleniidae -12359578 20 n 02 Guttiferales 0 order_Guttiferales 0 002 @ 11534677 n 0000 #m 12358485 n 0000 | used in some classifications; coextensive with Parietales -12359734 20 n 03 Begoniaceae 0 family_Begoniaceae 0 begonia_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12359952 n 0000 | monoecious succulent herbs or shrubs of tropical and warm regions especially America -12359952 20 n 01 genus_Begonia 0 003 @ 11575425 n 0000 #m 12359734 n 0000 %m 12360108 n 0000 | large genus of tropical succulent plants widely cultivated -12360108 20 n 01 begonia 0 013 @ 11669921 n 0000 #m 12359952 n 0000 ~ 12360534 n 0000 ~ 12360684 n 0000 ~ 12360817 n 0000 ~ 12360958 n 0000 ~ 12361135 n 0000 ~ 12361350 n 0000 ~ 12361560 n 0000 ~ 12361754 n 0000 ~ 12361946 n 0000 ~ 12362274 n 0000 ~ 12362514 n 0000 | any of numerous plants of the genus Begonia grown for their attractive glossy asymmetrical leaves and colorful flowers in usually terminal cymes or racemes -12360534 20 n 01 fibrous-rooted_begonia 0 001 @ 12360108 n 0000 | any of numerous begonias having fibrous rather than tuberous or rhizomatous roots -12360684 20 n 01 tuberous_begonia 0 002 @ 12360108 n 0000 ~ 12362668 n 0000 | any of numerous begonias having large tuberous roots -12360817 20 n 01 rhizomatous_begonia 0 001 @ 12360108 n 0000 | any of numerous begonias having prominent shaggy creeping stems or rhizomes -12360958 20 n 03 Christmas_begonia 0 blooming-fool_begonia 0 Begonia_cheimantha 0 001 @ 12360108 n 0000 | hybrid winter-blooming begonia grown for its many large pink flowers -12361135 20 n 02 angel-wing_begonia 0 Begonia_cocchinea 0 001 @ 12360108 n 0000 | South American fibrous-rooted begonias having prominent basal leaf lobes suggesting angels' wings and racemes of coral-red flowers -12361350 20 n 03 grape-leaf_begonia 0 maple-leaf_begonia 0 Begonia_dregei 0 001 @ 12360108 n 0000 | tuberous or semi-tuberous South African begonia having shallowly lobed ovate leaves and small white flowers -12361560 20 n 04 beefsteak_begonia 0 kidney_begonia 0 Begonia_erythrophylla 0 Begonia_feastii 0 001 @ 12360108 n 0000 | rhizomatous begonia with roundish fleshy leaves reddish colored beneath -12361754 20 n 03 star_begonia 0 star-leaf_begonia 0 Begonia_heracleifolia 0 001 @ 12360108 n 0000 | rhizomatous begonia having leaves with pointed lobes suggestive of stars and pink flowers -12361946 20 n 05 rex_begonia 0 king_begonia 0 painted-leaf_begonia 0 beefsteak_geranium 0 Begonia_rex 0 001 @ 12360108 n 0000 | any of numerous usually rhizomatous hybrid begonias derived from an East Indian plant having rough-textured leaves patterned in silver and bronze and purple and red-brown with inconspicuous flowers -12362274 20 n 02 wax_begonia 0 Begonia_semperflorens 0 001 @ 12360108 n 0000 | hybrid fibrous-rooted begonia having broad-ovate green to bronze-red leaves and small clusters of white or pink or red flowers; widely used as a bedding plant -12362514 20 n 02 Socotra_begonia 0 Begonia_socotrana 0 001 @ 12360108 n 0000 | semi-tuberous begonia having peltate leaves and rose-pink flowers; Yemen -12362668 20 n 02 hybrid_tuberous_begonia 0 Begonia_tuberhybrida 0 001 @ 12360684 n 0000 | any of numerous hybrid begonias having tuberous roots and variously colored flowers -12362844 20 n 02 Dilleniaceae 0 family_Dilleniaceae 0 004 @ 11565385 n 0000 #m 12359026 n 0000 %m 12363110 n 0000 %m 12363580 n 0000 | chiefly tropical shrubs and trees and climbers having leathery leaves or flattened leaflike stems: genera Dillenia and Hibbertia -12363110 20 n 01 genus_Dillenia 0 003 @ 11575425 n 0000 #m 12362844 n 0000 %m 12363301 n 0000 | East Indian and Australian shrubs and trees having panicles of large white or yellow flowers -12363301 20 n 01 dillenia 0 002 @ 13109733 n 0000 #m 12363110 n 0000 | any of several evergreen trees or shrubs of the genus Dillenia grown for their foliage and nodding flowers resembling magnolias which are followed by fruit that is used in curries and jellies and preserves -12363580 20 n 02 Hibbertia 0 genus_Hibbertia 0 003 @ 11575425 n 0000 #m 12362844 n 0000 %m 12363768 n 0000 | evergreen heathlike or scandent shrubs of Madagascar; Australasia; Polynesia -12363768 20 n 02 guinea_gold_vine 0 guinea_flower 0 002 @ 13112664 n 0000 #m 12363580 n 0000 | any of several Australasian evergreen vines widely cultivated in warm regions for their large bright yellow single flowers -12363988 20 n 05 Guttiferae 0 family_Guttiferae 0 Clusiaceae 0 family_Clusiaceae 0 St_John's_wort_family 0 008 @ 11565385 n 0000 #m 12359026 n 0000 %m 12364379 n 0000 %m 12365670 n 0000 %m 12366507 n 0000 %m 12367306 n 0000 %m 12370011 n 0000 %m 12370384 n 0000 | widely distributed family of chiefly tropical trees and shrubs and vines that produce oils and resins and some usable timber -12364379 20 n 02 Calophyllum 0 genus_Calophyllum 0 007 @ 11575425 n 0000 #m 12363988 n 0000 %m 12364604 n 0000 %m 12364940 n 0000 %m 12365158 n 0000 %m 12365285 n 0000 %m 12365462 n 0000 | genus of tropical evergreen trees -12364604 20 n 01 poon 0 004 @ 13104059 n 0000 #m 12364379 n 0000 %s 12364823 n 0000 ~ 12365462 n 0000 | any of several East Indian trees of the genus Calophyllum having shiny leathery leaves and lightweight hard wood -12364823 20 n 01 poon 2 002 @ 15098161 n 0000 #s 12364604 n 0000 | wood of any poon tree; used for masts and spars -12364940 20 n 03 calaba 0 Santa_Maria_tree 0 Calophyllum_calaba 0 002 @ 13104059 n 0000 #m 12364379 n 0000 | West Indian tree having racemes of fragrant white flowers and yielding a durable timber and resinous juice -12365158 20 n 02 Maria 0 Calophyllum_longifolium 0 002 @ 13104059 n 0000 #m 12364379 n 0000 | valuable timber tree of Panama -12365285 20 n 03 laurelwood 0 lancewood_tree 1 Calophyllum_candidissimum 0 002 @ 13104059 n 0000 #m 12364379 n 0000 | tropical American tree; valued for its hard durable wood -12365462 20 n 02 Alexandrian_laurel 0 Calophyllum_inophyllum 0 002 @ 12364604 n 0000 #m 12364379 n 0000 | East Indian tree having racemes of fragrant white flowers; coastal areas southern India to Malaysia -12365670 20 n 01 genus_Clusia 0 006 @ 11575425 n 0000 #m 12363988 n 0000 %m 12365900 n 0000 %m 12366053 n 0000 %m 12366186 n 0000 %m 12366313 n 0000 | tropical American aromatic trees or shrubs; often epiphytic; some stranglers -12365900 20 n 01 clusia 0 002 @ 13104059 n 0000 #m 12365670 n 0000 | an aromatic tree of the genus Clusia having large white or yellow or pink flowers -12366053 20 n 02 wild_fig 0 Clusia_flava 0 002 @ 13104059 n 0000 #m 12365670 n 0000 | a West Indies clusia having fig-shaped fruit -12366186 20 n 02 waxflower 2 Clusia_insignis 0 002 @ 13122985 n 0000 #m 12365670 n 0000 | epiphytic clusia of British Guiana -12366313 20 n 04 pitch_apple 0 strangler_fig 1 Clusia_rosea 0 Clusia_major 0 002 @ 13123431 n 0000 #m 12365670 n 0000 | a common tropical American clusia having solitary white or rose flowers -12366507 20 n 02 Garcinia 0 genus_Garcinia 0 004 @ 11575425 n 0000 #m 12363988 n 0000 %m 12366675 n 0000 %m 12366870 n 0000 | evergreen trees and shrubs: mangosteens -12366675 20 n 03 mangosteen 0 mangosteen_tree 0 Garcinia_mangostana 0 003 @ 12651821 n 0000 #m 12366507 n 0000 %p 07763987 n 0000 | East Indian tree with thick leathery leaves and edible fruit -12366870 20 n 04 gamboge_tree 0 Garcinia_hanburyi 0 Garcinia_cambogia 0 Garcinia_gummi-gutta 0 002 @ 13109733 n 0000 #m 12366507 n 0000 | low spreading tree of Indonesia yielding an orange to brown gum resin (gamboge) used as a pigment when powdered -12367122 20 n 02 Hypericaceae 0 family_Hypericaceae 0 002 @ 11565385 n 0000 #m 12359026 n 0000 | used in some classification systems for plants usually included among the Guttiferae -12367306 20 n 02 Hypericum 0 genus_Hypericum 0 003 @ 11575425 n 0000 #m 12363988 n 0000 %m 12367611 n 0000 | large almost cosmopolitan genus of evergreen or deciduous shrubs and herbs with often showy yellow flowers; cosmopolitan except tropical lowlands and Arctic or high altitudes and desert regions -12367611 20 n 01 St_John's_wort 0 012 @ 13118707 n 0000 #m 12367306 n 0000 ~ 12368028 n 0000 ~ 12368257 n 0000 ~ 12368451 n 0000 ~ 12368637 n 0000 ~ 12368847 n 0000 ~ 12369066 n 0000 ~ 12369309 n 0000 ~ 12369476 n 0000 ~ 12369665 n 0000 ~ 12369845 n 0000 | any of numerous plants of the genus Hypericum having yellow flowers and transparently dotted leaves; traditionally gathered on St John's eve to ward off evil -12368028 20 n 03 common_St_John's_wort 0 tutsan 0 Hypericum_androsaemum 0 001 @ 12367611 n 0000 | deciduous bushy Eurasian shrub with golden yellow flowers and reddish-purple fruits from which a soothing salve is made in Spain -12368257 20 n 03 great_St_John's_wort 0 Hypericum_ascyron 0 Hypericum_pyramidatum 0 001 @ 12367611 n 0000 | perennial shrub having large star-shaped yellow flowers in narrowly pyramidal cymes -12368451 20 n 02 creeping_St_John's_wort 0 Hypericum_calycinum 0 001 @ 12367611 n 0000 | creeping evergreen shrub with bright yellow star-shaped summer flowers; useful as ground cover -12368637 20 n 05 orange_grass 0 nitweed 0 pineweed 0 pine-weed 0 Hypericum_gentianoides 0 001 @ 12367611 n 0000 | annual wiry-stemmed North American weed with minute scalelike leaves and small yellow flowers -12368847 20 n 02 St_Andrews's_cross 0 Hypericum_crux_andrae 0 001 @ 12367611 n 0000 | shrubby plant having yellow to apricot flowers with four petals arranged in a cross; southeastern United States: New York to Texas -12369066 20 n 02 low_St_Andrew's_cross 0 Hypericum_hypericoides 0 001 @ 12367611 n 0000 | low shrubby plant having yellow flowers with four petals arranged in a cross; Bermuda and southeastern United States to West Indies and eastern Mexico -12369309 20 n 02 klammath_weed 0 Hypericum_perforatum 0 001 @ 12367611 n 0000 | yellow-flowered perennial common in fields and waste places but a weed in rangelands -12369476 20 n 03 shrubby_St_John's_wort 0 Hypericum_prolificum 0 Hypericum_spathulatum 0 001 @ 12367611 n 0000 | stiff shrub having oblong entire leaves and dense cymes of yellow flowers -12369665 20 n 03 St_Peter's_wort 0 Hypericum_tetrapterum 0 Hypericum_maculatum 0 001 @ 12367611 n 0000 | European perennial St John's wort; Ireland and France to western Siberia -12369845 20 n 02 marsh_St-John's_wort 0 Hypericum_virginianum 0 001 @ 12367611 n 0000 | perennial marsh herb with pink to mauve flowers; southeastern United States -12370011 20 n 02 Mammea 0 genus_Mammea 0 003 @ 11575425 n 0000 #m 12363988 n 0000 %m 12370174 n 0000 | American and Asiatic trees having edible one-seeded fruit -12370174 20 n 05 mammee_apple 0 mammee 1 mamey 0 mammee_tree 0 Mammea_americana 0 003 @ 12651821 n 0000 #m 12370011 n 0000 %p 07766530 n 0000 | tropical American tree having edible fruit with a leathery rind -12370384 20 n 02 Mesua 0 genus_Mesua 0 003 @ 11575425 n 0000 #m 12363988 n 0000 %m 12370549 n 0000 | genus of tropical Asiatic trees having large solitary flowers -12370549 20 n 04 rose_chestnut 0 ironwood 3 ironwood_tree 3 Mesua_ferrea 0 002 @ 13104059 n 0000 #m 12370384 n 0000 | handsome East Indian evergreen tree often planted as an ornamental for its fragrant white flowers that yield a perfume; source of very heavy hardwood used for railroad ties -12370842 20 n 02 Actinidiaceae 0 family_Actinidiaceae 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12371002 n 0000 | tropical trees or shrubs or woody vines -12371002 20 n 02 Actinidia 0 genus_Actinidia 0 005 @ 11575425 n 0000 #m 12370842 n 0000 %m 12371202 n 0000 %m 12371439 n 0000 %m 12371704 n 0000 | small Asiatic woody vine bearing many-seeded fruit -12371202 20 n 03 bower_actinidia 0 tara_vine 0 Actinidia_arguta 0 002 @ 13100677 n 0000 #m 12371002 n 0000 | climbing Asiatic vine having long finely serrate leaves and racemes of white flowers followed by greenish-yellow edible fruit -12371439 20 n 05 Chinese_gooseberry 0 kiwi 0 kiwi_vine 0 Actinidia_chinensis 0 Actinidia_deliciosa 0 003 @ 13100677 n 0000 #m 12371002 n 0000 %p 07763629 n 0000 | climbing vine native to China; cultivated in New Zealand for its fuzzy edible fruit with green meat -12371704 20 n 03 silvervine 0 silver_vine 0 Actinidia_polygama 0 002 @ 13100677 n 0000 #m 12371002 n 0000 | ornamental vine of eastern Asia having yellow edible fruit and leaves with silver-white markings -12371911 20 n 03 Canellaceae 0 family_Canellaceae 0 canella_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12372124 n 0000 | one genus: aromatic tropical trees of eastern Africa and Florida to West Indies -12372124 20 n 01 genus_Canella 0 003 @ 11575425 n 0000 #m 12371911 n 0000 %m 12372233 n 0000 | one species -12372233 20 n 04 wild_cinnamon 1 white_cinnamon_tree 0 Canella_winterana 0 Canella-alba 0 003 @ 13112664 n 0000 #m 12372124 n 0000 %p 12372520 n 0000 | large evergreen shrub or small tree having white aromatic bark and leathery leaves and small purple to red flowers in terminal cymes -12372520 20 n 03 canella 0 canella_bark 0 white_cinnamon 0 002 @ 13162297 n 0000 #p 12372233 n 0000 | highly aromatic inner bark of the Canella winterana used as a condiment and a tonic -12372708 20 n 03 Caricaceae 0 family_Caricaceae 0 papaya_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12372932 n 0000 | trees native to tropical America and Africa with milky juice and large palmately lobed leaves -12372932 20 n 02 Carica 0 genus_Carica 0 003 @ 11575425 n 0000 #m 12372708 n 0000 %m 12373100 n 0000 | type genus of the Caricaceae; tropical American trees: papayas -12373100 20 n 06 papaya 0 papaia 0 pawpaw 2 papaya_tree 0 melon_tree 0 Carica_papaya 0 003 @ 12651821 n 0000 #m 12372932 n 0000 %p 07762244 n 0000 | tropical American shrub or small tree having huge deeply palmately cleft leaves and large oblong yellow fruit -12373361 20 n 02 Caryocaraceae 0 family_Caryocaraceae 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12373526 n 0000 | small genus of tropical South American trees -12373526 20 n 02 Caryocar 0 genus_Caryocar 0 003 @ 11575425 n 0000 #m 12373361 n 0000 %m 12373739 n 0000 | type genus of the Caryocaraceae; South American trees yielding strong fine-grained wood and edible nuts -12373739 20 n 04 souari 0 souari_nut 0 souari_tree 0 Caryocar_nuciferum 0 003 @ 13104059 n 0000 #m 12373526 n 0000 %p 07772026 n 0000 | large South American evergreen tree trifoliate leaves and drupes with nutlike seeds used as food and a source of cooking oil -12374002 20 n 03 Cistaceae 0 family_Cistaceae 0 rockrose_family 0 005 @ 11565385 n 0000 #m 12359026 n 0000 %m 12374238 n 0000 %m 12375294 n 0000 %m 12376382 n 0000 | shrubs or woody herbs of temperate regions especially Mediterranean -12374238 20 n 02 Cistus 0 genus_Cistus 0 003 @ 11575425 n 0000 #m 12374002 n 0000 %m 12374418 n 0000 | small to medium-sized evergreen shrubs of southern Europe and North Africa -12374418 20 n 02 rockrose 1 rock_rose 1 004 @ 13112664 n 0000 #m 12374238 n 0000 ~ 12374705 n 0000 ~ 12374862 n 0000 | small shrubs of scrub and dry woodland regions of southern Europe and North Africa; grown for their showy flowers and soft often downy and aromatic evergreen foliage -12374705 20 n 02 white-leaved_rockrose 0 Cistus_albidus 0 001 @ 12374418 n 0000 | compact white pubescent shrub of southwestern Europe having pink flowers -12374862 20 n 03 common_gum_cistus 0 Cistus_ladanifer 0 Cistus_ladanum 0 002 @ 12374418 n 0000 %s 12375107 n 0000 | shrub having white flowers and viscid stems and leaves yielding a fragrant oleoresin used in perfumes especially as a fixative -12375107 20 n 02 labdanum 0 ladanum 0 002 @ 14896441 n 0000 #s 12374862 n 0000 | a soft blackish-brown resinous exudate from various rockroses used in perfumes especially as a fixative -12375294 20 n 01 genus_Helianthemum 0 003 @ 11575425 n 0000 #m 12374002 n 0000 %m 12375518 n 0000 | widely distributed evergreen or semi-evergreen shrublets; America; Europe and North Africa to Asia Minor and central Asia -12375518 20 n 03 helianthemum 0 sunrose 0 sun_rose 0 005 @ 13112664 n 0000 #m 12375294 n 0000 ~ 12375769 n 0000 ~ 12376073 n 0000 ~ 12376240 n 0000 | any plant of the genus Helianthemum; vigorous plants of stony alpine meadows and dry scrub regions -12375769 20 n 05 frostweed 0 frost-weed 0 frostwort 2 Helianthemum_canadense 0 Crocanthemum_canadense 0 001 @ 12375518 n 0000 | perennial of the eastern United States having early solitary yellow flowers followed by late petalless flowers; so-called because ice crystals form on it during first frosts -12376073 20 n 02 rockrose 2 rock_rose 2 001 @ 12375518 n 0000 | any of numerous varieties of helianthemums having small rose-like yellow or white or reddish flowers -12376240 20 n 02 rush_rose 0 Helianthemum_scoparium 0 001 @ 12375518 n 0000 | woody yellow-flowered perennial of southeastern United States -12376382 20 n 02 Hudsonia 0 genus_Hudsonia 0 004 @ 11575425 n 0000 #m 12374002 n 0000 %m 12376553 n 0000 %m 12376740 n 0000 | small evergreen subshrubs of North America -12376553 20 n 03 false_heather 0 golden_heather 0 Hudsonia_ericoides 0 002 @ 13118707 n 0000 #m 12376382 n 0000 | North American decumbent evergreen heathlike plant with yellow flowers -12376740 20 n 03 beach_heather 0 poverty_grass 0 Hudsonia_tomentosa 0 002 @ 13118707 n 0000 #m 12376382 n 0000 | small heathlike plant covered with white down growing on beaches in northeastern North America -12376950 20 n 02 Dipterocarpaceae 0 family_Dipterocarpaceae 0 004 @ 11565385 n 0000 #m 12359026 n 0000 %m 12377198 n 0000 %m 12377328 n 0000 | chiefly tropical Asian trees with two-winged fruits; yield valuable woods and aromatic oils and resins -12377198 20 n 01 dipterocarp 0 003 @ 13104059 n 0000 #m 12376950 n 0000 ~ 12377494 n 0000 | tree of the family Dipterocarpaceae -12377328 20 n 02 Shorea 0 genus_Shorea 0 003 @ 11575425 n 0000 #m 12376950 n 0000 %m 12377494 n 0000 | genus of Indonesian and Malaysian timber trees rich in resin -12377494 20 n 03 red_lauan 0 red_lauan_tree 0 Shorea_teysmanniana 0 003 @ 12377198 n 0000 #m 12377328 n 0000 %s 12377658 n 0000 | valuable Philippine timber tree -12377658 20 n 01 red_lauan 2 002 @ 15098161 n 0000 #s 12377494 n 0000 | hard heavy red wood of the red lauan tree; often sold as Philippine mahogany -12377809 20 n 03 Flacourtiaceae 0 family_Flacourtiaceae 0 flacourtia_family 0 008 @ 11565385 n 0000 #m 12359026 n 0000 %m 12378080 n 0000 %m 12378546 n 0000 %m 12379278 n 0000 %m 12380197 n 0000 %m 12380597 n 0000 %m 12380926 n 0000 | chiefly tropical trees and shrubs -12378080 20 n 02 Flacourtia 0 genus_Flacourtia 0 003 @ 11575425 n 0000 #m 12377809 n 0000 %m 12378249 n 0000 | often spiny trees or shrubs of tropical Asia and Africa -12378249 20 n 06 governor's_plum 0 governor_plum 0 Madagascar_plum 0 ramontchi 0 batoko_palm 0 Flacourtia_indica 0 002 @ 13112664 n 0000 #m 12378080 n 0000 | small shrubby tree of Madagascar cultivated in tropical regions as a hedge plant and for its deep red acid fruits resembling small plums -12378546 20 n 02 Dovyalis 0 genus_Dovyalis 0 004 @ 11575425 n 0000 #m 12377809 n 0000 %m 12378753 n 0000 %m 12378963 n 0000 | small genus of sometimes spiny shrubs or small trees; Africa; India; Sri Lanka -12378753 20 n 03 kei_apple 0 kei_apple_bush 0 Dovyalis_caffra 0 003 @ 13112664 n 0000 #m 12378546 n 0000 %p 07762373 n 0000 | vigorous South African spiny shrub grown for its round yellow juicy edible fruits -12378963 20 n 06 ketembilla 0 kitembilla 0 kitambilla 0 ketembilla_tree 0 Ceylon_gooseberry 0 Dovyalis_hebecarpa 0 003 @ 13104059 n 0000 #m 12378546 n 0000 %p 07762534 n 0000 | a small shrubby spiny tree cultivated for its maroon-purple fruit with sweet purple pulp tasting like gooseberries; Sri Lanka and India -12379278 20 n 06 Hydnocarpus 0 genus_Hydnocarpus 0 Taraktagenos 0 genus_Taraktagenos 0 Taraktogenos 0 genus_Taraktogenos 0 004 @ 11575425 n 0000 #m 12377809 n 0000 %m 12379531 n 0000 %m 12379781 n 0000 | medium to large Indonesian and Malaysian trees -12379531 20 n 06 chaulmoogra 0 chaulmoogra_tree 0 chaulmugra 0 Hydnocarpus_kurzii 0 Taraktagenos_kurzii 0 Taraktogenos_kurzii 0 002 @ 13104059 n 0000 #m 12379278 n 0000 | East Indian tree with oily seeds yield chaulmoogra oil used to treat leprosy -12379781 20 n 02 Hydnocarpus_laurifolia 0 Hydnocarpus_wightiana 0 002 @ 13104059 n 0000 #m 12379278 n 0000 | leathery-leaved tree of western India bearing round fruits with brown densely hairy rind enclosing oily pulp that yields hydnocarpus oil -12380029 20 n 01 hydnocarpus_oil 0 001 @ 14966667 n 0000 | oil from seeds of trees of the genus Hydnocarpus especially Hydnocarpus wightiana (Hydnocarpus laurifolia) -12380197 20 n 01 genus_Idesia 0 003 @ 11575425 n 0000 #m 12377809 n 0000 %m 12380305 n 0000 | one species -12380305 20 n 02 idesia 0 Idesia_polycarpa 0 002 @ 13104059 n 0000 #m 12380197 n 0000 | deciduous roundheaded Asiatic tree widely grown in mild climates as an ornamental for its heart-shaped leaves and fragrant yellow-green flowers followed by hanging clusters of fleshy orange-red berries -12380597 20 n 02 Kiggelaria 0 genus_Kiggelaria 0 003 @ 11575425 n 0000 #m 12377809 n 0000 %m 12380761 n 0000 | small genus of South African shrubs or small trees -12380761 20 n 02 wild_peach 0 Kiggelaria_africana 0 002 @ 13112664 n 0000 #m 12380597 n 0000 | large much-branched shrub grown primarily for its evergreen foliage -12380926 20 n 01 genus_Xylosma 0 003 @ 11575425 n 0000 #m 12377809 n 0000 %m 12381095 n 0000 | genus of tropical American and Asiatic spiny evergreen trees and shrubs -12381095 20 n 02 xylosma 0 Xylosma_congestum 0 002 @ 13112664 n 0000 #m 12380926 n 0000 | shrub or small tree grown as an ornamental in mild climates for its neat evergreen foliage and fragrant late flowers; native of China -12381321 20 n 02 Fouquieriaceae 0 family_Fouquieriaceae 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12381666 n 0000 | small family of spiny shrubs or trees of southwestern United States -12381511 20 n 01 candlewood 0 003 @ 13112664 n 0000 ~ 12381931 n 0000 ~ 12382233 n 0000 | any of several resinous trees or shrubs often burned for light -12381666 20 n 02 Fouquieria 0 genus_Fouquieria 0 004 @ 11575425 n 0000 #m 12381321 n 0000 %m 12381931 n 0000 %m 12382233 n 0000 | resinous succulent trees or shrubs of desert and semidesert regions of southwestern United States that are leafless most of the year -12381931 20 n 05 ocotillo 0 coachwhip 0 Jacob's_staff 0 vine_cactus 0 Fouquieria_splendens 0 002 @ 12381511 n 0000 #m 12381666 n 0000 | desert shrub of southwestern United States and Mexico having slender naked spiny branches that after the rainy season put forth foliage and clusters of red flowers -12382233 20 n 04 boojum_tree 0 cirio 0 Fouquieria_columnaris 0 Idria_columnaris 0 002 @ 12381511 n 0000 #m 12381666 n 0000 | candlewood of Mexico and southwestern California having tall columnar stems and bearing honey-scented creamy yellow flowers -12382484 20 n 03 Ochnaceae 0 family_Ochnaceae 0 ochna_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12382699 n 0000 | family of tropical evergreen trees and shrubs with thick shining parallel-veined leaves -12382699 20 n 02 Ochna 0 genus_Ochna 0 003 @ 11575425 n 0000 #m 12382484 n 0000 %m 12382875 n 0000 | type genus of Ochnaceae; evergreen trees and shrubs of Old World tropics -12382875 20 n 02 bird's-eye_bush 0 Ochna_serrulata 0 002 @ 13112664 n 0000 #m 12382699 n 0000 | shrub with narrow-elliptic glossy evergreen leaves and yellow flowers with leathery petaloid sepals -12383073 20 n 03 Passifloraceae 0 family_Passifloraceae 0 passionflower_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12383256 n 0000 | tropical woody tendril-climbing vines -12383256 20 n 02 Passiflora 0 genus_Passiflora 0 003 @ 11575425 n 0000 #m 12383073 n 0000 %m 12383402 n 0000 | type genus of the Passifloraceae -12383402 20 n 02 passionflower 0 passionflower_vine 0 011 @ 13100677 n 0000 #m 12383256 n 0000 %p 07753743 n 0000 ~ 12383737 n 0000 ~ 12383894 n 0000 ~ 12384037 n 0000 ~ 12384227 n 0000 ~ 12384375 n 0000 ~ 12384569 n 0000 ~ 12384680 n 0000 ~ 12384839 n 0000 | any of various chiefly tropical American vines some bearing edible fruit -12383737 20 n 03 granadilla 1 purple_granadillo 0 Passiflora_edulis 0 001 @ 12383402 n 0000 | Brazilian passionflower cultivated for its deep purple fruit -12383894 20 n 03 granadilla 2 sweet_granadilla 0 Passiflora_ligularis 0 002 @ 12383402 n 0000 %p 07753980 n 0000 | considered best for fruit -12384037 20 n 03 granadilla 0 giant_granadilla 0 Passiflora_quadrangularis 0 002 @ 12383402 n 0000 %p 07753980 n 0000 | tropical American passionflower yielding the large granadilla fruit -12384227 20 n 02 maypop 0 Passiflora_incarnata 0 001 @ 12383402 n 0000 | of southern United States; having an insipid berry the size of a hen egg -12384375 20 n 03 Jamaica_honeysuckle 0 yellow_granadilla 0 Passiflora_laurifolia 0 002 @ 12383402 n 0000 %p 07754279 n 0000 | West Indian passionflower; cultivated for its yellow edible fruit -12384569 20 n 02 banana_passion_fruit 0 Passiflora_mollissima 0 001 @ 12383402 n 0000 | cultivated for fruit -12384680 20 n 02 sweet_calabash 0 Passiflora_maliformis 0 002 @ 12383402 n 0000 %p 07754155 n 0000 | West Indian passionflower with edible apple-sized fruit -12384839 20 n 04 love-in-a-mist 1 running_pop 0 wild_water_lemon 0 Passiflora_foetida 0 001 @ 12383402 n 0000 | tropical American passion flower with finely dissected bracts; stems malodorous when crushed -12385046 20 n 03 Resedaceae 0 family_Resedaceae 0 mignonette_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12385219 n 0000 | mainly Mediterranean herbs: mignonette -12385219 20 n 01 genus_Reseda 0 005 @ 11575425 n 0000 #m 12385046 n 0000 %m 12385429 n 0000 %m 12385566 n 0000 %m 12385830 n 0000 | Old World genus of herbs having racemose flowers: mignonette; dyer's rocket -12385429 20 n 01 reseda 0 004 @ 12205694 n 0000 #m 12385219 n 0000 ~ 12385566 n 0000 ~ 12385830 n 0000 | any plant of the genus Reseda -12385566 20 n 03 mignonette 0 sweet_reseda 0 Reseda_odorata 0 002 @ 12385429 n 0000 #m 12385219 n 0000 | Mediterranean woody annual widely cultivated for its dense terminal spikelike clusters greenish or yellowish white flowers having an intense spicy fragrance -12385830 20 n 04 dyer's_rocket 0 dyer's_mignonette 0 weld 0 Reseda_luteola 0 002 @ 12385429 n 0000 #m 12385219 n 0000 | European mignonette cultivated as a source of yellow dye; naturalized in North America -12386039 20 n 03 Tamaricaceae 0 family_Tamaricaceae 0 tamarisk_family 0 004 @ 11565385 n 0000 #m 12359026 n 0000 %m 12386263 n 0000 %m 12386724 n 0000 | family of desert shrubs and trees (mostly halophytes and xerophytes) -12386263 20 n 02 Tamarix 0 genus_Tamarix 0 003 @ 11575425 n 0000 #m 12386039 n 0000 %m 12386462 n 0000 | genus of deciduous shrubs or small trees of eastern Mediterranean regions and tropical Asia -12386462 20 n 01 tamarisk 0 002 @ 13112664 n 0000 #m 12386263 n 0000 | any shrub or small tree of the genus Tamarix having small scalelike or needle-shaped leaves and feathery racemes of small white or pinkish flowers; of mostly coastal areas with saline soil -12386724 20 n 02 Myricaria 0 genus_Myricaria 0 003 @ 11575425 n 0000 #m 12386039 n 0000 %m 12386945 n 0000 | small genus of deciduous shrubs or subshrubs of southern Europe to Siberia and China; tolerant of chalky soil -12386945 20 n 03 false_tamarisk 0 German_tamarisk 0 Myricaria_germanica 0 002 @ 13112664 n 0000 #m 12386724 n 0000 | Eurasian shrub resembling the tamarisk -12387103 20 n 01 halophyte 0 001 @ 13083586 n 0000 | plant growing naturally in very salty soil -12387201 20 n 03 Violaceae 0 family_Violaceae 0 violet_family 0 006 @ 11565385 n 0000 #m 12359026 n 0000 %m 12387478 n 0000 %m 12390914 n 0000 %m 12391111 n 0000 %m 12391280 n 0000 | a family of order Parietales including the genera Viola, Hybanthus, Hymenanthera, Melicytus -12387478 20 n 02 Viola 1 genus_Viola 0 003 @ 11575425 n 0000 #m 12387201 n 0000 %m 12387633 n 0000 | large genus of flowering herbs of temperate regions -12387633 20 n 01 viola 0 007 @ 12205694 n 0000 #m 12387478 n 0000 ~ 12387839 n 0000 ~ 12388143 n 0000 ~ 12388989 n 0000 ~ 12390485 n 0000 ~ 12390681 n 0000 | any of the numerous plants of the genus Viola -12387839 20 n 01 violet 0 012 @ 12387633 n 0000 ~ 12388293 n 0000 ~ 12388444 n 0000 ~ 12388652 n 0000 ~ 12388858 n 0000 ~ 12389130 n 0000 ~ 12389317 n 0000 ~ 12389501 n 0000 ~ 12389727 n 0000 ~ 12389932 n 0000 ~ 12390099 n 0000 ~ 12390314 n 0000 | any of numerous low-growing violas with small flowers -12388143 20 n 03 field_pansy 0 heartsease 1 Viola_arvensis 0 001 @ 12387633 n 0000 | common Old World viola with creamy often violet-tinged flowers -12388293 20 n 02 American_dog_violet 0 Viola_conspersa 0 001 @ 12387839 n 0000 | violet of eastern North America having pale violet to white flowers -12388444 20 n 04 sweet_white_violet 0 white_violet 0 woodland_white_violet 0 Viola_blanda 0 001 @ 12387839 n 0000 | short-stemmed violet of eastern North America having fragrant purple-veined white flowers -12388652 20 n 04 Canada_violet 0 tall_white_violet 0 white_violet 2 Viola_canadensis 0 001 @ 12387839 n 0000 | tall North American perennial with heart-shaped leaves and white flowers with purple streaks -12388858 20 n 03 dog_violet 0 heath_violet 0 Viola_canina 0 001 @ 12387839 n 0000 | Old World leafy-stemmed blue-flowered violet -12388989 20 n 03 horned_violet 0 tufted_pansy 0 Viola_cornuta 0 001 @ 12387633 n 0000 | European viola with an unusually long corolla spur -12389130 20 n 03 two-eyed_violet 0 heartsease 2 Viola_ocellata 0 001 @ 12387839 n 0000 | violet of Pacific coast of North America having white petals tinged with yellow and deep violet -12389317 20 n 04 sweet_violet 0 garden_violet 0 English_violet 0 Viola_odorata 0 001 @ 12387839 n 0000 | European violet typically having purple to white flowers; widely naturalized -12389501 20 n 05 bird's-foot_violet 0 pansy_violet 0 Johnny-jump-up 1 wood_violet 1 Viola_pedata 0 001 @ 12387839 n 0000 | common violet of the eastern United States with large pale blue or purple flowers resembling pansies -12389727 20 n 02 downy_yellow_violet 0 Viola_pubescens 0 001 @ 12387839 n 0000 | violet of eastern North America having softly pubescent leaves and stems and clear yellow flowers with brown-purple veins -12389932 20 n 02 long-spurred_violet 0 Viola_rostrata 0 001 @ 12387839 n 0000 | violet of eastern North America having lilac-purple flowers with a long slender spur -12390099 20 n 04 pale_violet 0 striped_violet 0 cream_violet 0 Viola_striata 0 001 @ 12387839 n 0000 | leafy-stemmed violet of eastern North America having large white or creamy flowers faintly marked with purple -12390314 20 n 04 hedge_violet 0 wood_violet 2 Viola_sylvatica 0 Viola_reichenbachiana 0 001 @ 12387839 n 0000 | common European violet that grows in woods and hedgerows -12390485 20 n 02 pansy 1 Viola_tricolor_hortensis 0 001 @ 12387633 n 0000 | large-flowered garden plant derived chiefly from the wild pansy of Europe and having velvety petals of various colors -12390681 20 n 06 wild_pansy 0 Johnny-jump-up 2 heartsease 3 love-in-idleness 0 pink_of_my_John 0 Viola_tricolor 0 001 @ 12387633 n 0000 | a common and long cultivated European herb from which most common garden pansies are derived -12390914 20 n 02 Hybanthus 0 genus_Hybanthus 0 002 @ 11575425 n 0000 #m 12387201 n 0000 | a genus of herbs and small shrubs with white or purple flowers; grows in tropical or subtropical regions -12391111 20 n 02 Hymenanthera 0 genus_Hymenanthera 0 002 @ 11575425 n 0000 #m 12387201 n 0000 | a genus of slender evergreen shrubs; grow in Australia and New Zealand -12391280 20 n 02 Melicytus 0 genus_Melicytus 0 002 @ 11575425 n 0000 #m 12387201 n 0000 | a genus of deciduous shrubs or trees; fruit is a berry; grow in New Zealand and Fiji and Solomon Islands -12391477 20 n 02 Urticales 0 order_Urticales 0 007 @ 11534677 n 0000 #m 11665781 n 0000 %m 12391745 n 0000 %m 12396255 n 0000 %m 12398682 n 0000 %m 12404314 n 0000 %m 12404943 n 0000 | an order of dicotyledonous plants including Moraceae and Urticaceae and Ulmaceae -12391745 20 n 03 Urticaceae 0 family_Urticaceae 0 nettle_family 0 009 @ 11562747 n 0000 #m 12391477 n 0000 %m 12392385 n 0000 %m 12392943 n 0000 %m 12393527 n 0000 %m 12393942 n 0000 %m 12394494 n 0000 %m 12394861 n 0000 %m 12395717 n 0000 | a family of plants of order Urticales including many nettles with stinging hairs -12392070 20 n 01 nettle 0 008 @ 13085113 n 0000 + 02120715 v 0101 ~ 12392549 n 0000 ~ 12392765 n 0000 ~ 12394118 n 0000 ~ 12395068 n 0000 ~ 12395289 n 0000 ~ 12395463 n 0000 | any of numerous plants having stinging hairs that cause skin irritation on contact (especially of the genus Urtica or family Urticaceae) -12392385 20 n 02 Urtica 0 genus_Urtica 0 004 @ 11567411 n 0000 #m 12391745 n 0000 %m 12392549 n 0000 %m 12392765 n 0000 | a nettle yielding fiber resembling flax -12392549 20 n 02 stinging_nettle 0 Urtica_dioica 0 002 @ 12392070 n 0000 #m 12392385 n 0000 | perennial Eurasian nettle established in North America having broad coarsely toothed leaves with copious stinging hairs -12392765 20 n 02 Roman_nettle 0 Urtica_pipulifera 0 002 @ 12392070 n 0000 #m 12392385 n 0000 | annual European nettle with stinging foliage and small clusters of green flowers -12392943 20 n 02 Boehmeria 0 genus_Boehmeria 0 004 @ 11567411 n 0000 #m 12391745 n 0000 %m 12393086 n 0000 %m 12393269 n 0000 | false nettle -12393086 20 n 02 false_nettle 0 bog_hemp 0 003 @ 12205694 n 0000 #m 12392943 n 0000 ~ 12393269 n 0000 | any of several flowering weeds of the genus Boehmeria lacking stinging hairs -12393269 20 n 05 ramie 0 ramee 0 Chinese_silk_plant 0 China_grass 0 Boehmeria_nivea 0 002 @ 12393086 n 0000 #m 12392943 n 0000 | tall perennial herb of tropical Asia with dark green leaves; cultivated for the fiber from its woody stems that resembles flax -12393527 20 n 04 Helxine 0 genus_Helxine 0 Soleirolia 0 genus_Soleirolia 0 003 @ 11567411 n 0000 #m 12391745 n 0000 %m 12393723 n 0000 | one species; a dwarf creeping mat-forming evergreen herb -12393723 20 n 04 baby's_tears 0 baby_tears 0 Helxine_soleirolia 0 Soleirolia_soleirolii 0 002 @ 13112427 n 0000 #m 12393527 n 0000 | prostrate or creeping Corsican herb with moss-like small round short-stemmed leaves -12393942 20 n 02 Laportea 0 genus_Laportea 0 004 @ 11567411 n 0000 #m 12391745 n 0000 %m 12394118 n 0000 %m 12394328 n 0000 | mostly tropical stinging herbs or trees: nettle -12394118 20 n 02 wood_nettle 0 Laportea_canadensis 0 002 @ 12392070 n 0000 #m 12393942 n 0000 | American perennial herb found in rich woods and provided with stinging hairs; provides fibers used for textiles -12394328 20 n 02 Australian_nettle 0 Australian_nettle_tree 0 002 @ 13104059 n 0000 #m 12393942 n 0000 | any of several tall Australian trees of the genus Laportea -12394494 20 n 02 Parietaria 0 genus_Parietaria 0 003 @ 11567411 n 0000 #m 12391745 n 0000 %m 12394638 n 0000 | small genus of stingless herbs -12394638 20 n 04 pellitory-of-the-wall 0 wall_pellitory 0 pellitory 2 Parietaria_difussa 0 002 @ 12205694 n 0000 #m 12394494 n 0000 | herb that grows in crevices having long narrow leaves and small pink apetalous flowers -12394861 20 n 02 Pilea 0 genus_Pilea 0 005 @ 11567411 n 0000 #m 12391745 n 0000 %m 12395068 n 0000 %m 12395289 n 0000 %m 12395463 n 0000 | low-growing tropical perennials grown for their stingless foliage -12395068 20 n 04 richweed 1 clearweed 0 dead_nettle 3 Pilea_pumilla 0 002 @ 12392070 n 0000 #m 12394861 n 0000 | a plants of the genus Pilea having drooping green flower clusters and smooth translucent stems and leaves -12395289 20 n 02 artillery_plant 0 Pilea_microphylla 0 002 @ 12392070 n 0000 #m 12394861 n 0000 | tropical American stingless nettle that discharges its pollen explosively -12395463 20 n 04 friendship_plant 0 panamica 0 panamiga 0 Pilea_involucrata 0 002 @ 12392070 n 0000 #m 12394861 n 0000 | low stingless nettle of Central and South America having velvety brownish-green toothed leaves and clusters of small green flowers -12395717 20 n 02 Pipturus 0 genus_Pipturus 0 004 @ 11567411 n 0000 #m 12391745 n 0000 %m 12395906 n 0000 %m 12396091 n 0000 | an Australian genus of woody plants of the family Urticaceae -12395906 20 n 02 Queensland_grass-cloth_plant 0 Pipturus_argenteus 0 002 @ 13103136 n 0000 #m 12395717 n 0000 | Australian plant of genus Pipturus whose fiber is used in making cloth -12396091 20 n 01 Pipturus_albidus 0 002 @ 13109733 n 0000 #m 12395717 n 0000 | Hawaiian tree of genus Pipturus having a bark (tapa) from which tapa cloth is made -12396255 20 n 03 Cannabidaceae 0 family_Cannabidaceae 0 hemp_family 0 004 @ 11562747 n 0000 #m 12391477 n 0000 %m 12396666 n 0000 %m 12397594 n 0000 | two genera of erect or twining herbs that are pollinated by the wind, including the genera Cannabis and Humulus; term not used in all classifications; in some the genus Cannabis is placed in the family Moraceae and the genus Humulus in the family Urticaceae -12396666 20 n 01 genus_Cannabis 0 003 @ 11567411 n 0000 #m 12396255 n 0000 %m 12396924 n 0000 | hemp: genus of coarse annuals native to central Asia and widely naturalized in north temperate regions; in some classifications included in the family Moraceae -12396924 20 n 02 cannabis 0 hemp 0 005 @ 13112664 n 0000 #m 12396666 n 0000 %p 02949691 n 0000 ~ 12397210 n 0000 ~ 12397431 n 0000 | any plant of the genus Cannabis; a coarse bushy annual with palmate leaves and clusters of small green flowers; yields tough fibers and narcotic drugs -12397210 20 n 04 marijuana 0 marihuana 0 ganja 0 Cannabis_sativa 0 002 @ 12396924 n 0000 %p 02670049 n 0000 | a strong-smelling plant from whose dried leaves a number of euphoriant and hallucinogenic drugs are prepared -12397431 20 n 02 Indian_hemp 2 Cannabis_indica 0 003 @ 12396924 n 0000 %p 02834147 n 0000 %p 03497182 n 0000 | source of e.g. bhang and hashish as well as fiber -12397594 20 n 02 Humulus 0 genus_Humulus 0 003 @ 11567411 n 0000 #m 12396255 n 0000 %m 12397864 n 0000 | hops: hardy perennial vines of Europe, North America and central and eastern Asia producing a latex sap; in some classifications included in the family Urticaceae -12397864 20 n 02 hop 0 hops 0 005 @ 13100677 n 0000 #m 12397594 n 0000 ~ 12398174 n 0000 ~ 12398384 n 0000 ~ 12398526 n 0000 | twining perennials having cordate leaves and flowers arranged in conelike spikes; the dried flowers of this plant are used in brewing to add the characteristic bitter taste to beer -12398174 20 n 05 common_hop 0 common_hops 0 bine 0 European_hop 0 Humulus_lupulus 0 001 @ 12397864 n 0000 | European twining plant whose flowers are used chiefly to flavor malt liquors; cultivated in America -12398384 20 n 02 American_hop 0 Humulus_americanus 0 001 @ 12397864 n 0000 | native American plant sometimes confused with the European hop -12398526 20 n 02 Japanese_hop 0 Humulus_japonicus 0 001 @ 12397864 n 0000 | ornamental vine native to eastern Asia; cultivated for its variegated foliage -12398682 20 n 03 Moraceae 0 family_Moraceae 0 mulberry_family 0 008 @ 11562747 n 0000 #m 12391477 n 0000 + 02766085 a 0101 %m 12398990 n 0000 %m 12399784 n 0000 %m 12400261 n 0000 %m 12401122 n 0000 %m 12403862 n 0000 | trees or shrubs having a milky juice; in some classifications includes genus Cannabis -12398990 20 n 02 Morus 0 genus_Morus 0 003 @ 11567411 n 0000 #m 12398682 n 0000 %m 12399132 n 0000 | type genus of the Moraceae: mulberries -12399132 20 n 02 mulberry 0 mulberry_tree 0 006 @ 12651821 n 0000 #m 12398990 n 0000 %p 07767171 n 0000 ~ 12399384 n 0000 ~ 12399534 n 0000 ~ 12399656 n 0000 | any of several trees of the genus Morus having edible fruit that resembles the blackberry -12399384 20 n 02 white_mulberry 0 Morus_alba 0 001 @ 12399132 n 0000 | Asiatic mulberry with white to pale red fruit; leaves used to feed silkworms -12399534 20 n 02 black_mulberry 0 Morus_nigra 0 001 @ 12399132 n 0000 | European mulberry having dark foliage and fruit -12399656 20 n 02 red_mulberry 0 Morus_rubra 0 001 @ 12399132 n 0000 | North American mulberry having dark purple edible fruit -12399784 20 n 02 Maclura 0 genus_Maclura 0 002 @ 11567411 n 0000 #m 12398682 n 0000 | yellowwood trees or shrubs -12399899 20 n 04 osage_orange 0 bow_wood 0 mock_orange 2 Maclura_pomifera 0 001 @ 11650919 n 0000 | small shrubby deciduous yellowwood tree of south central United States having spines, glossy dark green leaves and an inedible fruit that resembles an orange; its hard orange-colored wood used for bows by Native Americans; frequently planted as boundary hedge -12400261 20 n 02 Artocarpus 0 genus_Artocarpus 0 005 @ 11567411 n 0000 #m 12398682 n 0000 %m 12400489 n 0000 %m 12400720 n 0000 %m 12400924 n 0000 | evergreen Asiatic trees now grown through the tropics: breadfruit; jackfruit -12400489 20 n 04 breadfruit 0 breadfruit_tree 0 Artocarpus_communis 0 Artocarpus_altilis 0 003 @ 12651821 n 0000 #m 12400261 n 0000 %p 07754451 n 0000 | native to Pacific islands and having edible fruit with a texture like bread -12400720 20 n 03 jackfruit 0 jackfruit_tree 0 Artocarpus_heterophyllus 0 003 @ 12651821 n 0000 #m 12400261 n 0000 %p 07754684 n 0000 | East Indian tree cultivated for its immense edible fruit and seeds -12400924 20 n 03 marang 0 marang_tree 0 Artocarpus_odoratissima 0 003 @ 12651821 n 0000 #m 12400261 n 0000 %p 07766723 n 0000 | Philippine tree similar to the breadfruit tree bearing edible fruit -12401122 20 n 02 Ficus 0 genus_Ficus 0 005 @ 11567411 n 0000 #m 12398682 n 0000 %m 12401335 n 0000 %m 12402051 n 0000 %m 12403513 n 0000 | large genus of tropical trees or shrubs or climbers including fig trees -12401335 20 n 01 fig_tree 0 010 @ 13104059 n 0000 #m 12401122 n 0000 ~ 12401684 n 0000 ~ 12402051 n 0000 ~ 12402348 n 0000 ~ 12402596 n 0000 ~ 12402840 n 0000 ~ 12403075 n 0000 ~ 12403276 n 0000 ~ 12403513 n 0000 | any moraceous tree of the tropical genus Ficus; produces a closed pear-shaped receptacle that becomes fleshy and edible when mature -12401684 20 n 04 fig 0 common_fig 0 common_fig_tree 0 Ficus_carica 0 004 @ 12401335 n 0000 %p 07753113 n 0000 ~ 12401893 n 0000 %p 13137225 n 0000 | Mediterranean tree widely cultivated for its edible fruit -12401893 20 n 02 caprifig 0 Ficus_carica_sylvestris 0 001 @ 12401684 n 0000 | wild variety of the common fig used to facilitate pollination of certain figs -12402051 20 n 05 golden_fig 0 Florida_strangler_fig 0 strangler_fig 2 wild_fig 2 Ficus_aurea 0 002 @ 12401335 n 0000 #m 12401122 n 0000 | a strangler tree native to southern Florida and West Indies; begins as an epiphyte eventually developing many thick aerial roots and covering enormous areas -12402348 20 n 07 banyan 0 banyan_tree 0 banian 0 banian_tree 0 Indian_banyan 0 East_Indian_fig_tree 0 Ficus_bengalensis 0 001 @ 12401335 n 0000 | East Indian tree that puts out aerial shoots that grow down into the soil forming additional trunks -12402596 20 n 07 pipal 0 pipal_tree 0 pipul 0 peepul 0 sacred_fig 0 bo_tree 0 Ficus_religiosa 0 001 @ 12401335 n 0000 | fig tree of India noted for great size and longevity; lacks the prop roots of the banyan; regarded as sacred by Buddhists -12402840 20 n 06 India-rubber_tree 0 India-rubber_plant 0 India-rubber_fig 0 rubber_plant 0 Assam_rubber 0 Ficus_elastica 0 001 @ 12401335 n 0000 | large tropical Asian tree frequently dwarfed as a houseplant; source of Assam rubber -12403075 20 n 04 mistletoe_fig 0 mistletoe_rubber_plant 0 Ficus_diversifolia 0 Ficus_deltoidea 0 001 @ 12401335 n 0000 | shrub or small tree often grown as a houseplant having foliage like mistletoe -12403276 20 n 05 Port_Jackson_fig 0 rusty_rig 0 little-leaf_fig 0 Botany_Bay_fig 0 Ficus_rubiginosa 0 001 @ 12401335 n 0000 | Australian tree resembling the banyan often planted for ornament; introduced into South Africa for brushwood -12403513 20 n 04 sycamore 4 sycamore_fig 0 mulberry_fig 0 Ficus_sycomorus 0 002 @ 12401335 n 0000 #m 12401122 n 0000 | thick-branched wide-spreading tree of Africa and adjacent southwestern Asia often buttressed with branches rising from near the ground; produces cluster of edible but inferior figs on short leafless twigs; the biblical sycamore -12403862 20 n 02 Broussonetia 0 genus_Broussonetia 0 003 @ 11567411 n 0000 #m 12398682 n 0000 %m 12403994 n 0000 | paper mulberry -12403994 20 n 02 paper_mulberry 0 Broussonetia_papyrifera 0 002 @ 13109733 n 0000 #m 12403862 n 0000 | shrubby Asiatic tree having bark (tapa) that resembles cloth; grown as a shade tree in Europe and America; male flowers are pendulous catkins and female are urn-shaped followed by small orange-red aggregate berries -12404314 20 n 02 Cecropiaceae 0 family_Cecropiaceae 0 003 @ 11562747 n 0000 #m 12391477 n 0000 %m 12404484 n 0000 | in some classifications included in family Moraceae -12404484 20 n 02 Cecropia 0 genus_Cecropia 0 003 @ 11567411 n 0000 #m 12404314 n 0000 %m 12404729 n 0000 | large genus of tropical American trees that yield a bast fiber used for cordage and bark used in tanning; milky juice yields caoutchouc -12404729 20 n 06 trumpetwood 0 trumpet-wood 0 trumpet_tree 0 snake_wood 0 imbauba 0 Cecropia_peltata 0 002 @ 13109733 n 0000 #m 12404484 n 0000 | tropical American tree with large peltate leaves and hollow stems -12404943 20 n 03 Ulmaceae 0 family_Ulmaceae 0 elm_family 0 006 @ 11562747 n 0000 #m 12391477 n 0000 %m 12405209 n 0000 %m 12409016 n 0000 %m 12410032 n 0000 %m 12410205 n 0000 | a dicot family of the order Urticales including: genera Ulmus, Celtis, Planera, Trema -12405209 20 n 02 Ulmus 0 genus_Ulmus 0 018 @ 11567411 n 0000 #m 12404943 n 0000 %m 12405714 n 0000 %m 12406304 n 0000 %m 12406488 n 0000 %m 12406715 n 0000 %m 12406902 n 0000 %m 12407079 n 0000 %m 12407222 n 0000 %m 12407396 n 0000 %m 12407545 n 0000 %m 12407715 n 0000 %m 12407890 n 0000 %m 12408077 n 0000 %m 12408280 n 0000 %m 12408466 n 0000 %m 12408717 n 0000 %m 12408873 n 0000 | type genus of family Ulmaceae; deciduous trees having simple serrate leaves; widely distributed in temperate regions -12405714 20 n 02 elm 0 elm_tree 0 018 @ 13104059 n 0000 #m 12405209 n 0000 %s 12406155 n 0000 ~ 12406304 n 0000 ~ 12406488 n 0000 ~ 12406715 n 0000 ~ 12406902 n 0000 ~ 12407079 n 0000 ~ 12407222 n 0000 ~ 12407396 n 0000 ~ 12407545 n 0000 ~ 12407715 n 0000 ~ 12407890 n 0000 ~ 12408077 n 0000 ~ 12408280 n 0000 ~ 12408466 n 0000 ~ 12408717 n 0000 ~ 12408873 n 0000 | any of various trees of the genus Ulmus: important timber or shade trees -12406155 20 n 02 elm 2 elmwood 0 002 @ 15098161 n 0000 #s 12405714 n 0000 | hard tough wood of an elm tree; used for e.g. implements and furniture -12406304 20 n 03 winged_elm 0 wing_elm 0 Ulmus_alata 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | North American elm having twigs and young branches with prominent corky projections -12406488 20 n 05 American_elm 0 white_elm 0 water_elm 1 rock_elm 2 Ulmus_americana 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | large ornamental tree with graceful gradually spreading branches common in eastern North America -12406715 20 n 03 smooth-leaved_elm 0 European_field_elm 0 Ulmus_carpinifolia 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | European elm with lustrous smooth leaves used as an ornamental -12406902 20 n 02 cedar_elm 0 Ulmus_crassifolia 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | elm of southern United States and Mexico having spreading pendulous corky branches -12407079 20 n 03 witch_elm 0 wych_elm 0 Ulmus_glabra 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | Eurasian elm often planted as a shade tree -12407222 20 n 02 Dutch_elm 0 Ulmus_hollandica 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | any of various hybrid ornamental European shade trees ranging from dwarf to tall -12407396 20 n 02 Huntingdon_elm 0 Ulmus_hollandica_vegetata 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | erect vigorous hybrid ornamental elm tree -12407545 20 n 02 water_elm 2 Ulmus_laevis 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | Eurasian elm closely resembling the American elm; thrives in a moist environment -12407715 20 n 02 Chinese_elm 1 Ulmus_parvifolia 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | small fast-growing tree native to Asia; widely grown as shelterbelts and hedges -12407890 20 n 03 English_elm 0 European_elm 0 Ulmus_procera 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | broad spreading rough-leaved elm common throughout Europe and planted elsewhere -12408077 20 n 04 Siberian_elm 0 Chinese_elm 2 dwarf_elm 0 Ulmus_pumila 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | fast-growing shrubby Asian tree naturalized in United States for shelter or ornament -12408280 20 n 03 slippery_elm 0 red_elm 1 Ulmus_rubra 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | North American elm having rough leaves that are red when opening; yields a hard wood -12408466 20 n 06 Jersey_elm 0 guernsey_elm 0 wheately_elm 0 Ulmus_sarniensis 0 Ulmus_campestris_sarniensis 0 Ulmus_campestris_wheatleyi 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | a variety of the English elm with erect branches and broader leaves -12408717 20 n 03 September_elm 0 red_elm 2 Ulmus_serotina 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | autumn-flowering elm of southeastern United States -12408873 20 n 02 rock_elm 1 Ulmus_thomasii 0 002 @ 12405714 n 0000 #m 12405209 n 0000 | tall widely distributed elm of eastern North America -12409016 20 n 02 Celtis 0 genus_Celtis 0 006 @ 11567411 n 0000 #m 12404943 n 0000 %m 12409231 n 0000 %m 12409470 n 0000 %m 12409651 n 0000 %m 12409840 n 0000 | large genus of trees and shrubs with berrylike fruit -12409231 20 n 02 hackberry 0 nettle_tree 0 005 @ 13104059 n 0000 #m 12409016 n 0000 ~ 12409470 n 0000 ~ 12409651 n 0000 ~ 12409840 n 0000 | any of various trees of the genus Celtis having inconspicuous flowers and small berrylike fruits -12409470 20 n 03 European_hackberry 0 Mediterranean_hackberry 0 Celtis_australis 0 002 @ 12409231 n 0000 #m 12409016 n 0000 | bright green deciduous shade tree of southern Europe -12409651 20 n 02 American_hackberry 0 Celtis_occidentalis 0 002 @ 12409231 n 0000 #m 12409016 n 0000 | large deciduous shade tree of southern United States with small deep purple berries -12409840 20 n 02 sugarberry 0 Celtis_laevigata 0 002 @ 12409231 n 0000 #m 12409016 n 0000 | deciduous shade tree with small black berries; southern United States; yields soft yellowish wood -12410032 20 n 02 Planera 0 genus_Planera 0 002 @ 11567411 n 0000 #m 12404943 n 0000 | a deciduous tree of the family Ulmaceae that grows in the southeastern United States -12410205 20 n 02 Trema 0 genus_Trema 0 002 @ 11567411 n 0000 #m 12404943 n 0000 | an evergreen tree of the family Ulmaceae that grows in tropical America and Africa and Asia -12410381 20 n 02 Liliidae 0 subclass_Liliidae 0 006 @ 08103777 n 0000 #m 11667562 n 0000 %m 11556187 n 0000 %m 11561228 n 0000 %m 12039524 n 0000 %m 12410715 n 0000 | one of four subclasses or superorders of Monocotyledones; comprises 17 families including: Liliaceae; Alliaceae; Amaryllidaceae; Iridaceae; Orchidaceae; Trilliaceae -12410715 20 n 02 Liliales 0 order_Liliales 0 012 @ 11534677 n 0000 #m 12410381 n 0000 %m 11743109 n 0000 %m 12087650 n 0000 %m 12311894 n 0000 %m 12411084 n 0000 %m 12418680 n 0000 %m 12422751 n 0000 %m 12423565 n 0000 %m 12467811 n 0000 %m 12475450 n 0000 %m 12476036 n 0000 | an order of monocotyledonous plants including Amaryllidaceae and Liliaceae and Iridaceae -12411084 20 n 03 Iridaceae 0 family_Iridaceae 0 iris_family 0 012 @ 11556187 n 0000 #m 12410715 n 0000 + 02751484 a 0101 %m 12411461 n 0000 ~ 12411710 n 0000 %m 12415911 n 0000 %m 12416278 n 0000 %m 12416917 n 0000 %m 12417273 n 0000 %m 12417686 n 0000 %m 12418065 n 0000 %m 12418356 n 0000 | large family of usually perennial geophytic herbs with rhizomes or corms or bulbs -12411461 20 n 01 iridaceous_plant 0 009 @ 13134302 n 0000 #m 12411084 n 0000 ~ 12411922 n 0000 ~ 12416073 n 0000 ~ 12416423 n 0000 ~ 12417062 n 0000 ~ 12417382 n 0000 ~ 12417836 n 0000 ~ 12418221 n 0000 | any bulbous plant of the family Iridaceae -12411710 20 n 01 genus_Iris 0 006 @ 11561228 n 0000 @ 12411084 n 0000 %m 12411922 n 0000 %m 12412355 n 0000 %m 12412606 n 0000 %m 12412850 n 0000 | large genus of perennials that develop from bulbs or rhizomes -12411922 20 n 04 iris 0 flag 0 fleur-de-lis 0 sword_lily 1 013 @ 12411461 n 0000 #m 12411710 n 0000 ~ 12412355 n 0000 ~ 12412606 n 0000 ~ 12412850 n 0000 ~ 12413165 n 0000 ~ 12413642 n 0000 ~ 12414449 n 0000 ~ 12414602 n 0000 ~ 12414932 n 0000 ~ 12415089 n 0000 ~ 12415272 n 0000 ~ 12415401 n 0000 | plants with sword-shaped leaves and erect stalks bearing bright-colored flowers composed of three petals and three drooping sepals -12412355 20 n 01 bearded_iris 0 006 @ 12411922 n 0000 #m 12411710 n 0000 ~ 12413419 n 0000 ~ 12413880 n 0000 ~ 12414159 n 0000 ~ 12414329 n 0000 | any of numerous wild or cultivated irises with hairlike structures on the falls (the drooping sepals) -12412606 20 n 01 beardless_iris 0 006 @ 12411922 n 0000 #m 12411710 n 0000 ~ 12413301 n 0000 ~ 12414035 n 0000 ~ 12414818 n 0000 ~ 12415595 n 0000 | any of numerous wild or cultivated irises having no hairs on the drooping sepals (the falls) -12412850 20 n 01 bulbous_iris 0 002 @ 12411922 n 0000 #m 12411710 n 0000 | any of various irises having a rootstock formed like a bulb -12412987 20 n 02 orrisroot 0 orris 2 002 @ 13125117 n 0000 #m 12413419 n 0000 | fragrant rootstock of various irises especially Florentine iris; used in perfumes and medicines -12413165 20 n 02 dwarf_iris 2 Iris_cristata 0 001 @ 12411922 n 0000 | low-growing summer-flowering iris of northeastern United States -12413301 20 n 02 Dutch_iris 1 Iris_filifolia 0 001 @ 12412606 n 0000 | bulbous Spanish iris with red-violet flowers -12413419 20 n 04 Florentine_iris 0 orris 1 Iris_germanica_florentina 0 Iris_florentina 0 002 @ 12412355 n 0000 %m 12412987 n 0000 | German iris having large white flowers with lavender-tinged falls and a fragrant rhizome -12413642 20 n 06 stinking_iris 0 gladdon 0 gladdon_iris 0 stinking_gladwyn 0 roast_beef_plant 0 Iris_foetidissima 0 001 @ 12411922 n 0000 | iris with purple flowers and foul-smelling leaves; southern and western Europe and North Africa -12413880 20 n 02 German_iris 1 Iris_germanica 0 001 @ 12412355 n 0000 | a large iris with purple or white flowers, native to central and southern Europe -12414035 20 n 02 Japanese_iris 0 Iris_kaempferi 0 001 @ 12412606 n 0000 | iris native to Japan having large showy flowers -12414159 20 n 02 German_iris 2 Iris_kochii 0 001 @ 12412355 n 0000 | iris of northern Italy having deep blue-purple flowers; similar to but smaller than Iris germanica -12414329 20 n 02 Dalmatian_iris 0 Iris_pallida 0 001 @ 12412355 n 0000 | European iris having soft lilac-blue flowers -12414449 20 n 02 Persian_iris 0 Iris_persica 0 001 @ 12411922 n 0000 | bulbous iris native to Asia Minor cultivated for its pale lilac-colored flowers -12414602 20 n 04 yellow_iris 0 yellow_flag 0 yellow_water_flag 0 Iris_pseudacorus 0 001 @ 12411922 n 0000 | common yellow-flowered iris of Europe and North Africa, naturalized in United States and often cultivated -12414818 20 n 02 Dutch_iris 2 Iris_tingitana 0 001 @ 12412606 n 0000 | bulbous Spanish iris having blue flowers -12414932 20 n 03 dwarf_iris 1 vernal_iris 0 Iris_verna 0 001 @ 12411922 n 0000 | low-growing spring-flowering American iris with bright blue-lilac flowers -12415089 20 n 02 blue_flag 0 Iris_versicolor 0 001 @ 12411922 n 0000 | a common iris of the eastern United States having blue or blue-violet flowers; root formerly used medicinally -12415272 20 n 02 southern_blue_flag 0 Iris_virginica 0 001 @ 12411922 n 0000 | similar to blue flag; the eastern United States -12415401 20 n 02 English_iris 0 Iris_xiphioides 0 001 @ 12411922 n 0000 | bulbous iris native to the Pyrenees; widely cultivated for its large delicate flowers in various colors except yellow -12415595 20 n 03 Spanish_iris 0 xiphium_iris 0 Iris_xiphium 0 001 @ 12412606 n 0000 | bulbous iris of western Mediterranean region having usually violet-purple flowers -12415765 20 n 01 falls 0 001 @ 11692265 n 0000 | the petals or sepals of a flower that bend downward (especially the outer perianth of an iris) -12415911 20 n 02 Belamcanda 0 genus_Belamcanda 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12416073 n 0000 | a monocotyledonous genus of the family Iridaceae -12416073 20 n 03 blackberry-lily 0 leopard_lily 0 Belamcanda_chinensis 0 002 @ 12411461 n 0000 #m 12415911 n 0000 | garden plant whose capsule discloses when ripe a mass of seeds resembling a blackberry -12416278 20 n 01 genus_Crocus 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12416423 n 0000 | a monocotyledonous genus of the family Iridaceae -12416423 20 n 01 crocus 0 003 @ 12411461 n 0000 #m 12416278 n 0000 ~ 12416703 n 0000 | any of numerous low-growing plants of the genus Crocus having slender grasslike leaves and white or yellow or purple flowers; native chiefly to the Mediterranean region but widely cultivated -12416703 20 n 03 saffron 0 saffron_crocus 0 Crocus_sativus 0 002 @ 12416423 n 0000 %p 07827284 n 0000 | Old World crocus having purple or white flowers with aromatic pungent orange stigmas used in flavoring food -12416917 20 n 01 genus_Freesia 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12417062 n 0000 | cormous perennial herbs; native to South Africa -12417062 20 n 01 freesia 0 002 @ 12411461 n 0000 #m 12416917 n 0000 | any of several plants of the genus Freesia valued for their one-sided clusters of usually fragrant yellow or white or pink tubular flowers -12417273 20 n 01 genus_Gladiolus 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12417382 n 0000 | gladiolas -12417382 20 n 04 gladiolus 0 gladiola 0 glad 0 sword_lily 2 002 @ 12411461 n 0000 #m 12417273 n 0000 | any of numerous plants of the genus Gladiolus native chiefly to tropical and South Africa having sword-shaped leaves and one-sided spikes of brightly colored funnel-shaped flowers; widely cultivated -12417686 20 n 02 Ixia 0 genus_Ixia 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12417836 n 0000 | a monocotyledonous genus of the family Iridaceae -12417836 20 n 01 corn_lily 0 002 @ 12411461 n 0000 #m 12417686 n 0000 | any of several South African plants of the genus Ixia having grasslike leaves and clusters of showy variously colored lily-like flowers; widely cultivated -12418065 20 n 02 Sisyrinchium 0 genus_Sisyrinchium 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12418221 n 0000 | chiefly North American grasslike herbs -12418221 20 n 01 blue-eyed_grass 0 002 @ 12411461 n 0000 #m 12418065 n 0000 | plant with grasslike foliage and delicate blue flowers -12418356 20 n 02 Sparaxis 0 genus_Sparaxis 0 003 @ 11561228 n 0000 #m 12411084 n 0000 %m 12418507 n 0000 | deciduous perennial herbs of South Africa -12418507 20 n 02 wandflower 2 Sparaxis_tricolor 0 002 @ 11669921 n 0000 #m 12418356 n 0000 | a showy often-cultivated plant with tawny yellow often purple-spotted flowers -12418680 20 n 03 Amaryllidaceae 0 family_Amaryllidaceae 0 amaryllis_family 0 009 @ 11556187 n 0000 #m 12410715 n 0000 %m 12419037 n 0000 %m 12419217 n 0000 %m 12419592 n 0000 %m 12420335 n 0000 %m 12420991 n 0000 %m 12421334 n 0000 %m 12422399 n 0000 | snowdrop; narcissus; daffodil; in some classification systems considered a subfamily of the Liliaceae -12419037 20 n 01 amaryllis 0 005 @ 13134302 n 0000 #m 12418680 n 0000 ~ 12419394 n 0000 ~ 12421137 n 0000 ~ 12422559 n 0000 | bulbous plant having showy white to reddish flowers -12419217 20 n 01 genus_Amaryllis 0 003 @ 11561228 n 0000 #m 12418680 n 0000 %m 12419394 n 0000 | type genus of the Amaryllidaceae; bulbous flowering plants of southern Africa -12419394 20 n 03 belladonna_lily 0 naked_lady 1 Amaryllis_belladonna 0 002 @ 12419037 n 0000 #m 12419217 n 0000 | amaryllis of South Africa often cultivated for its fragrant white or rose flowers -12419592 20 n 02 Bomarea 0 genus_Bomarea 0 004 @ 11561228 n 0000 #m 12418680 n 0000 %m 12419878 n 0000 %m 12420124 n 0000 | large genus of tropical American vines having showy often spotted umbellate flowers; sometimes placed in family Liliaceae especially subfamily Alstroemeriaceae -12419878 20 n 02 salsilla 1 Bomarea_edulis 0 002 @ 13100677 n 0000 #m 12419592 n 0000 | tropical vine having pink-and-yellow flowers spotted purple and edible roots sometimes boiled as a potato substitute; West Indies to northern South America -12420124 20 n 02 salsilla 2 Bomarea_salsilla 0 002 @ 13100677 n 0000 #m 12419592 n 0000 | tropical vine having umbels of small purple flowers and edible roots sometimes boiled as a potato substitute; Colombia -12420335 20 n 02 Haemanthus 0 genus_Haemanthus 0 004 @ 11561228 n 0000 #m 12418680 n 0000 %m 12420535 n 0000 %m 12420722 n 0000 | genus of African deciduous or evergreen bulbous herbs: blood lilies -12420535 20 n 01 blood_lily 0 003 @ 13134302 n 0000 #m 12420335 n 0000 ~ 12420722 n 0000 | any of various deciduous or evergreen herbs of the genus Haemanthus; South Africa and Namibia -12420722 20 n 02 Cape_tulip 0 Haemanthus_coccineus 0 002 @ 12420535 n 0000 #m 12420335 n 0000 | spectacular plant having large prostrate leaves barred in reddish-purple and flowers with a clump of long yellow stamens in a coral-red cup of fleshy bracts; South Africa -12420991 20 n 01 genus_Hippeastrum 0 003 @ 11561228 n 0000 #m 12418680 n 0000 %m 12421137 n 0000 | bulbous flowering plants of tropical America -12421137 20 n 02 hippeastrum 0 Hippeastrum_puniceum 0 002 @ 12419037 n 0000 #m 12420991 n 0000 | amaryllis of tropical America often cultivated as a houseplant for its showy white to red flowers -12421334 20 n 01 genus_Narcissus 0 003 @ 11561228 n 0000 #m 12418680 n 0000 %m 12421467 n 0000 | Old World perennial bulbous herbs -12421467 20 n 01 narcissus 0 004 @ 13134302 n 0000 #m 12421334 n 0000 ~ 12421683 n 0000 ~ 12421917 n 0000 | bulbous plant having erect linear leaves and showy yellow or white flowers either solitary or in clusters -12421683 20 n 02 daffodil 0 Narcissus_pseudonarcissus 0 003 @ 12421467 n 0000 ~ 12422129 n 0000 ~ 12422230 n 0000 | any of numerous varieties of Narcissus plants having showy often yellow flowers with a trumpet-shaped central crown -12421917 20 n 02 jonquil 0 Narcissus_jonquilla 0 001 @ 12421467 n 0000 | widely cultivated ornamental plant native to southern Europe but naturalized elsewhere having fragrant yellow or white clustered flowers -12422129 20 n 01 jonquil 2 001 @ 12421683 n 0000 | often used colloquially for any yellow daffodil -12422230 20 n 02 paper_white 0 Narcissus_papyraceus 0 001 @ 12421683 n 0000 | a daffodil having star-shaped white blossoms; often grown indoors to bloom in the winter -12422399 20 n 02 Strekelia 0 genus_Strekelia 0 003 @ 11561228 n 0000 #m 12418680 n 0000 %m 12422559 n 0000 | a monocotyledonous genus of the amaryllis family -12422559 20 n 03 Jacobean_lily 0 Aztec_lily 0 Strekelia_formosissima 0 002 @ 12419037 n 0000 #m 12422399 n 0000 | Mexican bulbous herb cultivated for its handsome bright red solitary flower -12422751 20 n 02 Hypoxidaceae 0 family_Hypoxidaceae 0 003 @ 11556187 n 0000 #m 12410715 n 0000 %m 12422931 n 0000 | in some classification systems included in the Amaryllidaceae -12422931 20 n 02 Hypoxis 0 genus_Hypoxis 0 003 @ 11561228 n 0000 #m 12422751 n 0000 %m 12423211 n 0000 | small plants that resemble amaryllis and that grow from a corm and bear flowers on a leafless stalk; sometimes classified as member of the family Amaryllidaceae: star grass -12423211 20 n 01 star_grass 0 003 @ 13134844 n 0000 #m 12422931 n 0000 ~ 12423444 n 0000 | any plant of the genus Hypoxis having long grasslike leaves and yellow star-shaped flowers: Africa; Australia; southern Asia; North America -12423444 20 n 02 American_star_grass 0 Hypoxis_hirsuta 0 001 @ 12423211 n 0000 | perennial star grass of North America -12423565 20 n 03 Liliaceae 0 family_Liliaceae 0 lily_family 0 071 @ 11556187 n 0000 #m 12410715 n 0000 + 02755772 a 0101 %m 12425281 n 0000 %m 12426100 n 0000 %m 12428915 n 0000 %m 12429589 n 0000 %m 12429942 n 0000 %m 12430878 n 0000 %m 12431128 n 0000 %m 12436260 n 0000 %m 12436490 n 0000 %m 12437311 n 0000 %m 12438046 n 0000 %m 12438324 n 0000 %m 12438977 n 0000 %m 12439400 n 0000 %m 12440128 n 0000 %m 12440385 n 0000 %m 12440623 n 0000 %m 12440869 n 0000 %m 12441770 n 0000 %m 12441958 n 0000 %m 12442220 n 0000 %m 12442865 n 0000 %m 12443144 n 0000 %m 12443547 n 0000 %m 12443929 n 0000 %m 12444261 n 0000 %m 12444666 n 0000 %m 12445138 n 0000 %m 12445848 n 0000 %m 12449024 n 0000 %m 12450099 n 0000 %m 12451789 n 0000 %m 12454021 n 0000 %m 12455101 n 0000 %m 12455342 n 0000 %m 12455787 n 0000 %m 12456278 n 0000 %m 12456527 n 0000 %m 12457250 n 0000 %m 12457519 n 0000 %m 12458002 n 0000 %m 12458224 n 0000 %m 12459048 n 0000 %m 12459471 n 0000 %m 12460549 n 0000 %m 12461326 n 0000 %m 12461809 n 0000 %m 12462401 n 0000 %m 12462951 n 0000 %m 12463322 n 0000 %m 12463574 n 0000 %m 12464278 n 0000 %m 12464903 n 0000 %m 12465107 n 0000 %m 12465321 n 0000 %m 12465796 n 0000 %m 12466034 n 0000 %m 12466450 n 0000 %m 12469372 n 0000 %m 12469725 n 0000 %m 12469936 n 0000 %m 12471150 n 0000 %m 12471366 n 0000 %m 12471825 n 0000 %m 12473011 n 0000 %m 12473405 n 0000 %m 12474006 n 0000 %m 12474620 n 0000 | includes species sometimes divided among the following families: Alliaceae; Aloeaceae; Alstroemeriaceae; Aphyllanthaceae; Asparagaceae; Asphodelaceae; Colchicaceae; Convallariaceae; Hemerocallidaceae; Hostaceae; Hyacinthaceae; Melanthiaceae; Ruscaceae; Smilacaceae; Tecophilaeacea; Xanthorrhoeaceae -12425281 20 n 01 liliaceous_plant 0 040 @ 13134302 n 0000 #m 12423565 n 0000 ~ 12426248 n 0000 ~ 12429148 n 0000 ~ 12429770 n 0000 ~ 12430198 n 0000 ~ 12431434 n 0000 ~ 12438571 n 0000 ~ 12439154 n 0000 ~ 12439626 n 0000 ~ 12439830 n 0000 ~ 12441958 n 0000 ~ 12444490 n 0000 ~ 12445387 n 0000 ~ 12446200 n 0000 ~ 12446519 n 0000 ~ 12446737 n 0000 ~ 12448700 n 0000 ~ 12449296 n 0000 ~ 12450344 n 0000 ~ 12451566 n 0000 ~ 12454159 n 0000 ~ 12456845 n 0000 ~ 12458383 n 0000 ~ 12459275 n 0000 ~ 12460697 n 0000 ~ 12461466 n 0000 ~ 12462032 n 0000 ~ 12462582 n 0000 ~ 12463743 n 0000 ~ 12464476 n 0000 ~ 12465557 n 0000 ~ 12466727 n 0000 ~ 12468243 n 0000 ~ 12471544 n 0000 ~ 12472024 n 0000 ~ 12473171 n 0000 ~ 12473608 n 0000 ~ 12473840 n 0000 ~ 12474167 n 0000 | plant growing from a bulb or corm or rhizome or tuber -12426100 20 n 02 Lilium 0 genus_Lilium 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12426248 n 0000 %m 12426623 n 0000 | type genus of Liliaceae -12426248 20 n 01 lily 0 015 @ 12425281 n 0000 #m 12426100 n 0000 ~ 12426623 n 0000 ~ 12426749 n 0000 ~ 12426978 n 0000 ~ 12427184 n 0000 ~ 12427391 n 0000 ~ 12427566 n 0000 ~ 12427757 n 0000 ~ 12427946 n 0000 ~ 12428076 n 0000 ~ 12428242 n 0000 ~ 12428412 n 0000 ~ 12428587 n 0000 ~ 12428747 n 0000 | any liliaceous plant of the genus Lilium having showy pendulous flowers -12426623 20 n 02 mountain_lily 1 Lilium_auratum 0 002 @ 12426248 n 0000 #m 12426100 n 0000 | Japanese lily with golden rays -12426749 20 n 05 Canada_lily 0 wild_yellow_lily 0 meadow_lily 0 wild_meadow_lily 0 Lilium_canadense 0 001 @ 12426248 n 0000 | common lily of the eastern United States having nodding yellow or reddish flowers spotted with brown -12426978 20 n 05 Madonna_lily 0 white_lily 1 Annunciation_lily 0 Lent_lily 0 Lilium_candidum 0 001 @ 12426248 n 0000 | lily of eastern Mediterranean and the Balkans with broad funnel-shaped white flowers -12427184 20 n 04 tiger_lily 1 leopard_lily 1 pine_lily 0 Lilium_catesbaei 0 001 @ 12426248 n 0000 | lily of southeastern United States having cup-shaped flowers with deep yellow to scarlet recurved petals -12427391 20 n 03 Columbia_tiger_lily 0 Oregon_lily 0 Lilium_columbianum 0 001 @ 12426248 n 0000 | lily of western North America with showy orange-red purple-spotted flowers -12427566 20 n 04 tiger_lily 2 devil_lily 0 kentan 0 Lilium_lancifolium 0 001 @ 12426248 n 0000 | east Asian perennial having large reddish-orange black-spotted flowers with reflexed petals -12427757 20 n 04 Easter_lily 0 Bermuda_lily 0 white_trumpet_lily 0 Lilium_longiflorum 0 001 @ 12426248 n 0000 | tall lily have large white trumpet-shaped flowers that bloom in the spring -12427946 20 n 02 coast_lily 0 Lilium_maritinum 0 001 @ 12426248 n 0000 | orange-flowered lily of Pacific coast of United States -12428076 20 n 03 Turk's-cap 2 martagon 0 Lilium_martagon 0 001 @ 12426248 n 0000 | lily with small dull purple flowers of northwestern Europe and northwestern Asia -12428242 20 n 02 Michigan_lily 0 Lilium_michiganense 0 001 @ 12426248 n 0000 | lily of central North America having recurved orange-red flowers with deep crimson spots -12428412 20 n 03 leopard_lily 2 panther_lily 0 Lilium_pardalinum 0 001 @ 12426248 n 0000 | lily of western United States having orange-red to crimson maroon-spotted flowers -12428587 20 n 02 wood_lily 1 Lilium_philadelphicum 0 001 @ 12426248 n 0000 | lily of eastern North America having orange to orange-red purple-spotted flowers -12428747 20 n 03 Turk's-cap 1 Turk's_cap-lily 0 Lilium_superbum 0 001 @ 12426248 n 0000 | lily of the eastern United States with orange to red maroon-spotted flowers -12428915 20 n 01 genus_Agapanthus 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12429148 n 0000 %m 12429352 n 0000 | small genus of South African evergreen or deciduous plants; sometimes placed in the family or subfamily Alliaceae -12429148 20 n 02 agapanthus 0 lily_of_the_Nile 0 003 @ 12425281 n 0000 #m 12428915 n 0000 ~ 12429352 n 0000 | any of various plants of the genus Agapanthus having umbels of showy blue to purple flowers -12429352 20 n 04 African_lily 0 African_tulip 0 blue_African_lily 0 Agapanthus_africanus 0 002 @ 12429148 n 0000 #m 12428915 n 0000 | African plant with bright green evergreen leaves and umbels of many usually deep violet-blue flowers -12429589 20 n 01 genus_Albuca 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12429770 n 0000 | genus of bulbous plants of South Africa; sometimes placed in subfamily Hyacinthaceae -12429770 20 n 01 albuca 0 002 @ 12425281 n 0000 #m 12429589 n 0000 | any of various plants of the genus Albuca having large clusters of pale yellow flowers; South Africa -12429942 20 n 02 Aletris 0 genus_Aletris 0 005 @ 11561228 n 0000 #m 12423565 n 0000 %m 12430198 n 0000 %m 12430471 n 0000 %m 12430675 n 0000 | small genus of bitter-rooted herbs of eastern North America and Asia; sometimes placed in family Melanthiaceae -12430198 20 n 05 colicroot 0 colic_root 0 crow_corn 0 star_grass 3 unicorn_root 0 004 @ 12425281 n 0000 #m 12429942 n 0000 ~ 12430471 n 0000 ~ 12430675 n 0000 | any of several perennials of the genus Aletris having grasslike leaves and bitter roots reputed to cure colic -12430471 20 n 03 ague_root 0 ague_grass 0 Aletris_farinosa 0 002 @ 12430198 n 0000 #m 12429942 n 0000 | colicroot having a scurfy or granuliferous perianth and white flowers; southeastern United States -12430675 20 n 02 yellow_colicroot 0 Aletris_aurea 0 002 @ 12430198 n 0000 #m 12429942 n 0000 | colicroot with yellow-bracted racemose flowers; smaller than Aletris farinosa; southeastern United States -12430878 20 n 02 Alliaceae 0 family_Alliaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes especially genus Allium -12431128 20 n 02 Allium 0 genus_Allium 0 006 @ 11561228 n 0000 #m 12423565 n 0000 + 02626634 a 0101 %m 12431434 n 0000 %m 12431861 n 0000 %m 12432069 n 0000 | large genus of perennial and biennial pungent bulbous plants: garlic; leek; onion; chive; sometimes placed in family Alliaceae as the type genus -12431434 20 n 01 alliaceous_plant 0 018 @ 12425281 n 0000 #m 12431128 n 0000 ~ 12431861 n 0000 ~ 12432356 n 0000 ~ 12432574 n 0000 ~ 12432707 n 0000 ~ 12432808 n 0000 ~ 12434239 n 0000 ~ 12434483 n 0000 ~ 12434634 n 0000 ~ 12434775 n 0000 ~ 12434985 n 0000 ~ 12435152 n 0000 ~ 12435338 n 0000 ~ 12435649 n 0000 ~ 12435777 n 0000 ~ 12435965 n 0000 ~ 12436090 n 0000 | bulbous plants having a characteristic pungent onion odor -12431861 20 n 01 wild_onion 0 005 @ 12431434 n 0000 #m 12431128 n 0000 ~ 12432069 n 0000 ~ 12433769 n 0000 ~ 12435486 n 0000 | any of various plants of the genus Allium with edible bulbs found growing wild -12432069 20 n 02 Hooker's_onion 0 Allium_acuminatum 0 002 @ 12431861 n 0000 #m 12431128 n 0000 | a common North American wild onion with a strong onion odor and an umbel of pink flowers atop a leafless stalk; British Columbia to California and Arizona and east to Wyoming and Colorado -12432356 20 n 04 wild_leek 1 Levant_garlic 0 kurrat 0 Allium_ampeloprasum 0 001 @ 12431434 n 0000 | coarse Old World perennial having a large bulb and tall stalk of greenish purple-tinged flowers; widely naturalized -12432574 20 n 04 Canada_garlic 0 meadow_leek 0 rose_leek 0 Allium_canadense 0 001 @ 12431434 n 0000 | North American bulbous plant -12432707 20 n 02 keeled_garlic 0 Allium_carinatum 0 001 @ 12431434 n 0000 | Eurasian bulbous plant -12432808 20 n 03 onion 0 onion_plant 0 Allium_cepa 0 007 @ 12431434 n 0000 %p 12433081 n 0000 ~ 12433178 n 0000 ~ 12433540 n 0000 ~ 12433952 n 0000 ~ 12434106 n 0000 %s 15033367 n 0000 | bulbous plant having hollow leaves cultivated worldwide for its rounded edible bulb -12433081 20 n 01 onion 2 002 @ 13134059 n 0000 #p 12432808 n 0000 | the bulb of an onion plant -12433178 20 n 05 shallot 0 eschalot 0 multiplier_onion 0 Allium_cepa_aggregatum 0 Allium_ascalonicum 0 003 @ 12432808 n 0000 %p 07723177 n 0000 %p 12433429 n 0000 | type of onion plant producing small clustered mild-flavored bulbs used as seasoning -12433429 20 n 01 shallot 2 002 @ 13134059 n 0000 #p 12433178 n 0000 | aggregate bulb of the multiplier onion -12433540 20 n 04 tree_onion 0 Egyptian_onion 0 top_onion 0 Allium_cepa_viviparum 0 001 @ 12432808 n 0000 | type of perennial onion grown chiefly as a curiosity or for early salad onions; having bulbils that replace the flowers -12433769 20 n 04 nodding_onion 0 nodding_wild_onion 0 lady's_leek 0 Allium_cernuum 0 001 @ 12431861 n 0000 | widely distributed North American wild onion with white to rose flowers -12433952 20 n 03 Welsh_onion 0 Japanese_leek 0 Allium_fistulosum 0 001 @ 12432808 n 0000 | Asiatic onion with slender bulbs; used as early green onions -12434106 20 n 02 red-skinned_onion 0 Allium_haematochiton 0 001 @ 12432808 n 0000 | onion with white to deep red tunic; California -12434239 20 n 03 leek 0 scallion 2 Allium_porrum 0 002 @ 12431434 n 0000 %p 07723039 n 0000 | plant having a large slender white bulb and flat overlapping dark green leaves; used in cooking; believed derived from the wild Allium ampeloprasum -12434483 20 n 04 daffodil_garlic 0 flowering_onion 0 Naples_garlic 0 Allium_neopolitanum 0 001 @ 12431434 n 0000 | European onion with white flowers -12434634 20 n 02 few-flowered_leek 0 Allium_paradoxum 0 001 @ 12431434 n 0000 | leek producing bulbils instead of flowers; Russia and Iran -12434775 20 n 02 garlic 0 Allium_sativum 0 003 @ 12431434 n 0000 + 02733034 a 0101 %p 07818277 n 0000 | bulbous herb of southern Europe widely naturalized; bulb breaks up into separate strong-flavored cloves -12434985 20 n 05 sand_leek 0 giant_garlic 0 Spanish_garlic 0 rocambole 0 Allium_scorodoprasum 0 001 @ 12431434 n 0000 | European leek cultivated and used like leeks -12435152 20 n 05 chives 0 chive 0 cive 0 schnittlaugh 0 Allium_schoenoprasum 0 002 @ 12431434 n 0000 %p 07817024 n 0000 | perennial having hollow cylindrical leaves used for seasoning -12435338 20 n 03 ramp 0 wild_leek 2 Allium_tricoccum 0 001 @ 12431434 n 0000 | North American perennial having a slender bulb and whitish flowers -12435486 20 n 06 crow_garlic 0 false_garlic 0 field_garlic 1 stag's_garlic 0 wild_garlic 2 Allium_vineale 0 001 @ 12431861 n 0000 | pungent Old World wild onion -12435649 20 n 04 wild_garlic 1 wood_garlic 0 Ramsons 0 Allium_ursinum 0 001 @ 12431434 n 0000 | pungent Old World weedy plant -12435777 20 n 04 garlic_chive 0 Chinese_chive 0 Oriental_garlic 0 Allium_tuberosum 0 002 @ 12431434 n 0000 %p 07818572 n 0000 | a plant of eastern Asia; larger than Allium schoenoprasum -12435965 20 n 02 round-headed_leek 0 Allium_sphaerocephalum 0 001 @ 12431434 n 0000 | Old World leek with a spherical bulb -12436090 20 n 03 three-cornered_leek 0 triquetrous_leek 0 Allium_triquetrum 0 001 @ 12431434 n 0000 | European leek naturalized in Great Britain; leaves are triangular -12436260 20 n 03 Aloeaceae 0 family_Aloeaceae 0 aloe_family 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12436490 20 n 01 genus_Aloe 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12436677 n 0000 | large genus of chiefly African liliaceous plants; in some systems placed in family Aloeaceae -12436677 20 n 01 aloe 0 004 @ 13084184 n 0000 #m 12436490 n 0000 ~ 12436907 n 0000 ~ 12437047 n 0000 | succulent plants having rosettes of leaves usually with fiber like hemp and spikes of showy flowers; found chiefly in Africa -12436907 20 n 02 cape_aloe 0 Aloe_ferox 0 001 @ 12436677 n 0000 | much-branched South African plant with reddish prickly succulent leaves -12437047 20 n 02 burn_plant 0 Aloe_vera 0 001 @ 12436677 n 0000 | very short-stemmed plant with thick leaves with soothing mucilaginous juice; leaves develop spiny margins with maturity; native to Mediterranean region; grown widely in tropics and as houseplants -12437311 20 n 01 genus_Kniphofia 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12437513 n 0000 | genus of showy clump-forming African herbs with grasslike leaves; sometimes placed in family Aloeaceae -12437513 20 n 05 kniphofia 0 tritoma 0 flame_flower 2 flame-flower 2 flameflower 2 003 @ 12205694 n 0000 #m 12437311 n 0000 ~ 12437769 n 0000 | a plant of the genus Kniphofia having long grasslike leaves and tall scapes of red or yellow drooping flowers -12437769 20 n 02 poker_plant 0 Kniphofia_uvaria 0 002 @ 12437513 n 0000 ~ 12437930 n 0000 | clump-forming plant of South Africa with spikes of scarlet flowers -12437930 20 n 02 red-hot_poker 0 Kniphofia_praecox 0 001 @ 12437769 n 0000 | widely cultivated hybrid poker plant -12438046 20 n 02 Alstroemeriaceae 0 family_Alstroemeriaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; sometimes included in subfamily Amaryllidaceae -12438324 20 n 01 genus_Alstroemeria 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12438571 n 0000 %m 12438783 n 0000 | genus of showy South American herbs with leafy stems; sometimes placed in family Alstroemeriaceae or in family Amaryllidaceae -12438571 20 n 01 alstroemeria 0 003 @ 12425281 n 0000 #m 12438324 n 0000 ~ 12438783 n 0000 | any of various South American plants of the genus Alstroemeria valued for their handsome umbels of beautiful flowers -12438783 20 n 03 Peruvian_lily 0 lily_of_the_Incas 0 Alstroemeria_pelegrina 0 002 @ 12438571 n 0000 #m 12438324 n 0000 | an Andean herb having umbels of showy pinkish-purple lily-like flowers -12438977 20 n 02 Amianthum 0 genus_Amianthum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12439154 n 0000 | one species: fly poison; sometimes placed in family Melanthiaceae -12439154 20 n 03 fly_poison 0 Amianthum_muscaetoxicum 0 Amianthum_muscitoxicum 0 002 @ 12425281 n 0000 #m 12438977 n 0000 | all parts of plant are highly toxic; bulb pounded and used as a fly poison; sometimes placed in subfamily Melanthiaceae -12439400 20 n 02 Anthericum 0 genus_Anthericum 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12439626 n 0000 %m 12439830 n 0000 | genus of Old World (mainly African) perennial herbs; sometimes placed in family Asphodelaceae -12439626 20 n 02 Saint-Bernard's-lily 0 Anthericum_liliago 0 002 @ 12425281 n 0000 #m 12439400 n 0000 | southern European plant commonly cultivated for its spikes of small starry greenish-white flowers -12439830 20 n 02 amber_lily 0 Anthericum_torreyi 0 002 @ 12425281 n 0000 #m 12439400 n 0000 | plant having basal grasslike leaves and a narrow open cluster of starlike yellowish-orange flowers atop a leafless stalk; southwestern United States; only species of Anthericum growing in North America -12440128 20 n 02 Aphyllanthaceae 0 family_Aphyllanthaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Aphyllanthes -12440385 20 n 02 Aphyllanthes 0 genus_Aphyllanthes 0 002 @ 11561228 n 0000 #m 12423565 n 0000 | one species; small fibrous-rooted perennial with rushlike foliage and deep blue flowers; sometimes placed in its own family Aphyllanthaceae -12440623 20 n 02 Asparagaceae 0 family_Asparagaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae: includes genera Asparagus and sometimes Ruscus -12440869 20 n 01 genus_Asparagus 0 005 @ 11561228 n 0000 #m 12423565 n 0000 %m 12441183 n 0000 %m 12441390 n 0000 %m 12441552 n 0000 | large genus of Old World perennial herbs with erect or spreading or climbing stems and small scalelike leaves and inconspicuous flowers; sometimes placed in family Asparagaceae -12441183 20 n 03 asparagus 0 edible_asparagus 0 Asparagus_officinales 0 003 @ 12205694 n 0000 #m 12440869 n 0000 %p 07719213 n 0000 | plant whose succulent young shoots are cooked and eaten as a vegetable -12441390 20 n 03 asparagus_fern 0 Asparagus_setaceous 0 Asparagus_plumosus 0 002 @ 12205694 n 0000 #m 12440869 n 0000 | a fernlike plant native to South Africa -12441552 20 n 02 smilax 2 Asparagus_asparagoides 0 002 @ 13100677 n 0000 #m 12440869 n 0000 | fragile twining plant of South Africa with bright green flattened stems and glossy foliage popular as a floral decoration -12441770 20 n 02 Asphodelaceae 0 family_Asphodelaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae -12441958 20 n 01 asphodel 0 004 @ 12425281 n 0000 #m 12423565 n 0000 ~ 12442548 n 0000 ~ 12442697 n 0000 | any of various chiefly Mediterranean plants of the genera Asphodeline and Asphodelus having linear leaves and racemes of white or pink or yellow flowers -12442220 20 n 02 Asphodeline 0 genus_Asphodeline 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12442548 n 0000 %m 12442697 n 0000 | genus of rhizomatous perennial or biennial herbs with numerous sometimes fragrant flowers in long cylindrical racemes; Mediterranean region to Caucasus; sometimes placed in family Asphodelaceae -12442548 20 n 01 Jacob's_rod 0 002 @ 12441958 n 0000 #m 12442220 n 0000 | asphodel having erect smooth unbranched stem either flexuous or straight -12442697 20 n 03 king's_spear 0 yellow_asphodel 0 Asphodeline_lutea 0 002 @ 12441958 n 0000 #m 12442220 n 0000 | asphodel with leafy stem and fragrant yellow flowers -12442865 20 n 02 Asphodelus 0 genus_Asphodelus 0 002 @ 11561228 n 0000 #m 12423565 n 0000 | small genus of tall striking annuals or perennials with grasslike foliage and flowers in dense racemes or panicles; Mediterranean to Himalayas; sometimes placed in family Asphodelaceae -12443144 20 n 01 genus_Aspidistra 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12443323 n 0000 | genus of eastern Asiatic herbs; sometimes placed in the family Convallariaceae -12443323 20 n 04 aspidistra 0 cast-iron_plant 0 bar-room_plant 0 Aspidistra_elatio 0 002 @ 12205694 n 0000 #m 12443144 n 0000 | evergreen perennial with large handsome basal leaves; grown primarily as a foliage houseplant -12443547 20 n 02 Bessera 0 genus_Bessera 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12443736 n 0000 | small genus of cormous perennials of Mexico; sometimes placed in family Alliaceae -12443736 20 n 02 coral_drops 0 Bessera_elegans 0 002 @ 11669921 n 0000 #m 12443547 n 0000 | half-hardy Mexican herb cultivated for its drooping terminal umbels of showy red-and-white flowers -12443929 20 n 02 Blandfordia 0 genus_Blandfordia 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12444095 n 0000 | small genus of tuberous Australian perennial herbs -12444095 20 n 01 Christmas_bells 0 002 @ 11669921 n 0000 #m 12443929 n 0000 | any of several plants of the genus Blandfordia having large orange or crimson flowers -12444261 20 n 02 Bloomeria 0 genus_Bloomeria 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12444490 n 0000 | small genus of bulbous perennial herbs of southwestern United States and Mexico; sometimes placed in family Alliaceae -12444490 20 n 03 golden_star 0 golden_stars 0 Bloomeria_crocea 0 002 @ 12425281 n 0000 #m 12444261 n 0000 | California plant having grasslike leaves and showy orange flowers -12444666 20 n 02 Bowiea 0 genus_Bowiea 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12444898 n 0000 | small genus of tropical African perennial bulbous herbs with deciduous twining stems; sometimes placed in family Hyacinthaceae -12444898 20 n 02 climbing_onion 0 Bowiea_volubilis 0 002 @ 12205694 n 0000 #m 12444666 n 0000 | much-branched leafless twining South African herb cultivated as an ornamental for its bright green stems growing from large aboveground bulbs -12445138 20 n 01 genus_Brodiaea 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12445387 n 0000 %m 12445628 n 0000 | genus of western United States bulbous plants with basal leaves and variously colored flowers; sometimes placed in family Alliaceae -12445387 20 n 01 brodiaea 0 003 @ 12425281 n 0000 #m 12445138 n 0000 ~ 12445628 n 0000 | any of several plants of the genus Brodiaea having basal grasslike leaves and globose flower heads on leafless stems resembling those of genus Allium -12445628 20 n 02 elegant_brodiaea 0 Brodiaea_elegans 0 002 @ 12445387 n 0000 #m 12445138 n 0000 | brodiaea having an umbel of violet or blue-violet flowers atop a leafless stalk; northern Oregon to southern California -12445848 20 n 02 Calochortus 0 genus_Calochortus 0 012 @ 11561228 n 0000 #m 12423565 n 0000 %m 12446200 n 0000 %m 12446519 n 0000 %m 12446737 n 0000 %m 12446908 n 0000 %m 12447121 n 0000 %m 12447346 n 0000 %m 12447581 n 0000 %m 12447891 n 0000 %m 12448136 n 0000 %m 12448361 n 0000 | large genus of western North American leafy-stemmed bulbous herbs -12446200 20 n 03 mariposa 0 mariposa_tulip 0 mariposa_lily 0 006 @ 12425281 n 0000 #m 12445848 n 0000 ~ 12447581 n 0000 ~ 12447891 n 0000 ~ 12448136 n 0000 ~ 12448361 n 0000 | any of several plants of the genus Calochortus having tulip-shaped flowers with 3 sepals and 3 petals; southwestern United States and Mexico -12446519 20 n 02 globe_lily 0 fairy_lantern 0 005 @ 12425281 n 0000 #m 12445848 n 0000 ~ 12446908 n 0000 ~ 12447121 n 0000 ~ 12447346 n 0000 | any of several plants of the genus Calochortus having egg-shaped flowers -12446737 20 n 01 cat's-ear 2 002 @ 12425281 n 0000 #m 12445848 n 0000 | any of several plants of the genus Calochortus having flowers with petals shaped like cat's ears -12446908 20 n 03 white_globe_lily 0 white_fairy_lantern 0 Calochortus_albus 0 002 @ 12446519 n 0000 #m 12445848 n 0000 | globe lily having open branched clusters of egg-shaped white flowers; southern California -12447121 20 n 03 yellow_globe_lily 0 golden_fairy_lantern 0 Calochortus_amabilis 0 002 @ 12446519 n 0000 #m 12445848 n 0000 | globe lily having open branched clusters of clear yellow egg-shaped flowers; northern California -12447346 20 n 02 rose_globe_lily 0 Calochortus_amoenus 0 002 @ 12446519 n 0000 #m 12445848 n 0000 | globe lily with deep rose-pink or purple egg-shaped flowers on flexuous stems; western slopes of Sierra Nevada in San Joaquin Valley -12447581 20 n 03 star_tulip 0 elegant_cat's_ears 0 Calochortus_elegans 0 002 @ 12446200 n 0000 #m 12445848 n 0000 | small plant with slender bent stems bearing branched clusters of a few white star-shaped flowers with petals shaped like cat's ears; southeastern Washington and northeastern Oregon to Montana -12447891 20 n 02 desert_mariposa_tulip 0 Calochortus_kennedyi 0 002 @ 12446200 n 0000 #m 12445848 n 0000 | mariposa with clusters of bell-shaped vermilion or orange or yellow flowers atop short stems; southern California to Arizona and Mexico -12448136 20 n 02 yellow_mariposa_tulip 0 Calochortus_luteus 0 002 @ 12446200 n 0000 #m 12445848 n 0000 | mariposa having clusters of a few large deep yellow bell-shaped flowers atop slender stems; California coastal ranges -12448361 20 n 02 sagebrush_mariposa_tulip 0 Calochortus_macrocarpus 0 002 @ 12446200 n 0000 #m 12445848 n 0000 | mariposa having loose clusters of one to three handsome lilac flowers resembling umbels atop stout erect stems; arid northwestern North America east of Cascade Mountains from southern British Columbia to northern California -12448700 20 n 02 sego_lily 0 Calochortus_nuttallii 0 001 @ 12425281 n 0000 | perennial plant having clusters of one to four showy white bell-shaped flowers atop erect unbranched stems; edible bulbs useful in times of scarcity; eastern Montana and western North Dakota south to northern Arizona and northwestern New Mexico -12449024 20 n 04 Camassia 0 genus_Camassia 0 Quamassia 0 genus_Quamassia 0 006 @ 11561228 n 0000 #m 12423565 n 0000 %m 12449296 n 0000 %m 12449526 n 0000 %m 12449784 n 0000 %m 12449934 n 0000 | genus of scapose herbs of North and South America having large edible bulbs -12449296 20 n 05 camas 0 camass 0 quamash 0 camosh 0 camash 0 005 @ 12425281 n 0000 #m 12449024 n 0000 ~ 12449526 n 0000 ~ 12449784 n 0000 ~ 12449934 n 0000 | any of several plants of the genus Camassia; North and South America -12449526 20 n 02 common_camas 0 Camassia_quamash 0 002 @ 12449296 n 0000 #m 12449024 n 0000 | plant having a large edible bulb and linear basal leaves and racemes of light to deep violet-blue star-shaped flowers on tall green scapes; western North America -12449784 20 n 02 Leichtlin's_camas 0 Camassia_leichtlinii 0 002 @ 12449296 n 0000 #m 12449024 n 0000 | camas found to the west of Cascade Mountains -12449934 20 n 03 wild_hyacinth 2 indigo_squill 0 Camassia_scilloides 0 002 @ 12449296 n 0000 #m 12449024 n 0000 | eastern camas; eastern and central North America -12450099 20 n 02 Erythronium 0 genus_Erythronium 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12450344 n 0000 %m 12451566 n 0000 | perennial bulbous herbs most of northern United States: dogtooth violet; adder's tongue; trout lily; fawn lily -12450344 20 n 03 dogtooth_violet 0 dogtooth 0 dog's-tooth_violet 0 007 @ 12425281 n 0000 #m 12450099 n 0000 ~ 12450607 n 0000 ~ 12450840 n 0000 ~ 12451070 n 0000 ~ 12451240 n 0000 ~ 12451399 n 0000 | perennial woodland spring-flowering plant; widely cultivated -12450607 20 n 04 white_dogtooth_violet 0 white_dog's-tooth_violet 0 blonde_lilian 0 Erythronium_albidum 0 001 @ 12450344 n 0000 | North American dogtooth having solitary white flowers with yellow centers and blue or pink exteriors -12450840 20 n 04 yellow_adder's_tongue 0 trout_lily 0 amberbell 0 Erythronium_americanum 0 001 @ 12450344 n 0000 | eastern North American dogtooth having solitary yellow flowers marked with brown or purple and spotted interiors -12451070 20 n 02 European_dogtooth 0 Erythronium_dens-canis 0 001 @ 12450344 n 0000 | sturdy European dogtooth with rose to mauve flowers; cultivated in many varieties -12451240 20 n 02 fawn_lily 0 Erythronium_californicum 0 001 @ 12450344 n 0000 | California dogtooth violet with creamy white flowers sometimes yellow-tinged -12451399 20 n 03 glacier_lily 0 snow_lily 0 Erythronium_grandiflorum 0 001 @ 12450344 n 0000 | dogtooth violet of western North America having bright yellow flowers -12451566 20 n 02 avalanche_lily 0 Erythronium_montanum 0 002 @ 12425281 n 0000 #m 12450099 n 0000 | perennial herb having large white flowers marked with orange; found near the snow line in the northwestern United States -12451789 20 n 02 Fritillaria 0 genus_Fritillaria 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12451915 n 0000 | fritillary -12451915 20 n 02 fritillary 0 checkered_lily 0 011 @ 13134302 n 0000 #m 12451789 n 0000 ~ 12452256 n 0000 ~ 12452480 n 0000 ~ 12452673 n 0000 ~ 12452836 n 0000 ~ 12453018 n 0000 ~ 12453186 n 0000 ~ 12453539 n 0000 ~ 12453714 n 0000 ~ 12453857 n 0000 | any liliaceous plant of the genus Fritillaria having nodding variously colored flowers -12452256 20 n 05 mission_bells 1 rice-grain_fritillary 0 Fritillaria_affinis 0 Fritillaria_lanceolata 0 Fritillaria_mutica 0 001 @ 12451915 n 0000 | herb of northwestern America having green-and-purple bell-shaped flowers -12452480 20 n 03 mission_bells 2 black_fritillary 0 Fritillaria_biflora 0 001 @ 12451915 n 0000 | herb of southwestern United States having dark purple bell-shaped flowers mottled with green -12452673 20 n 02 stink_bell 0 Fritillaria_agrestis 0 001 @ 12451915 n 0000 | a malodorous California herb with bell-shaped flowers; a common weed in grainfields -12452836 20 n 02 crown_imperial 0 Fritillaria_imperialis 0 001 @ 12451915 n 0000 | Eurasian herb with a cluster of leaves and orange-red bell-shaped flowers at the top of the stem -12453018 20 n 02 white_fritillary 0 Fritillaria_liliaceae 0 001 @ 12451915 n 0000 | California herb with white conic or bell-shaped flowers usually tinged with green -12453186 20 n 05 snake's_head_fritillary 0 guinea-hen_flower 0 checkered_daffodil 0 leper_lily 0 Fritillaria_meleagris 0 001 @ 12451915 n 0000 | Eurasian checkered lily with pendant flowers usually veined and checkered with purple or maroon on a pale ground and shaped like the bells carried by lepers in medieval times; widely grown as an ornamental -12453539 20 n 03 brown_bells 0 Fritillaria_micrantha 0 Fritillaria_parviflora 0 001 @ 12451915 n 0000 | California herb with brownish-purple or greenish bell-shaped flowers -12453714 20 n 03 adobe_lily 0 pink_fritillary 0 Fritillaria_pluriflora 0 001 @ 12451915 n 0000 | California herb with pinkish purple flowers -12453857 20 n 02 scarlet_fritillary 0 Fritillaria_recurva 0 001 @ 12451915 n 0000 | western United States herb with scarlet and yellow narrow bell-shaped flowers -12454021 20 n 02 Tulipa 0 genus_Tulipa 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12454159 n 0000 | Eurasian perennial bulbous herbs -12454159 20 n 01 tulip 0 007 @ 12425281 n 0000 #m 12454021 n 0000 ~ 12454436 n 0000 ~ 12454556 n 0000 ~ 12454705 n 0000 ~ 12454793 n 0000 ~ 12454949 n 0000 | any of numerous perennial bulbous herbs having linear or broadly lanceolate leaves and usually a single showy flower -12454436 20 n 03 dwarf_tulip 0 Tulipa_armena 0 Tulipa_suaveolens 0 001 @ 12454159 n 0000 | small early blooming tulip -12454556 20 n 03 lady_tulip 0 candlestick_tulip 0 Tulipa_clusiana 0 001 @ 12454159 n 0000 | Eurasian tulip with small flowers blotched at the base -12454705 20 n 01 Tulipa_gesneriana 0 001 @ 12454159 n 0000 | tall late blooming tulip -12454793 20 n 01 cottage_tulip 0 001 @ 12454159 n 0000 | any of several long-stemmed tulips that flower in May; have egg-shaped variously colored flowers -12454949 20 n 01 Darwin_tulip 0 001 @ 12454159 n 0000 | any of several very tall, late blooming tulips bearing large squarish flowers on sturdy stems -12455101 20 n 02 Colchicaceae 0 family_Colchicaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: genera Colchicum and Gloriosa -12455342 20 n 02 Colchicum 0 genus_Colchicum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12455540 n 0000 | chiefly fall-blooming perennial cormous herbs; sometimes placed in family Colchicaceae -12455540 20 n 04 autumn_crocus 0 meadow_saffron 0 naked_lady 2 Colchicum_autumnale 0 002 @ 13134302 n 0000 #m 12455342 n 0000 | bulbous autumn-flowering herb with white, purple or lavender-and-white flowers; native to western and central Europe -12455787 20 n 01 genus_Gloriosa 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12455950 n 0000 | sometimes placed in family Colchicaceae; one species: glory lily -12455950 20 n 05 gloriosa 0 glory_lily 0 climbing_lily 0 creeping_lily 0 Gloriosa_superba 0 002 @ 13100156 n 0000 #m 12455787 n 0000 | any plant of the genus Gloriosa of tropical Africa and Asia; a perennial herb climbing by means of tendrils at leaf tips having showy yellow to red or purple flowers; all parts are poisonous -12456278 20 n 02 Hemerocallidaceae 0 family_Hemerocallidaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hemerocallis -12456527 20 n 02 Hemerocallis 0 genus_Hemerocallis 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12456845 n 0000 %m 12457091 n 0000 | east Asian rhizomatous clump-forming perennial herbs having flowers on long leafless stalks; cosmopolitan in cultivation: day lilies; sometimes placed in subfamily Hemerocallidaceae -12456845 20 n 02 day_lily 0 daylily 0 003 @ 12425281 n 0000 #m 12456527 n 0000 ~ 12457091 n 0000 | any of numerous perennials having tuberous roots and long narrow bladelike leaves and usually yellow lily-like flowers that bloom for only a day -12457091 20 n 03 lemon_lily 0 Hemerocallis_lilio-asphodelus 0 Hemerocallis_flava 0 002 @ 12456845 n 0000 #m 12456527 n 0000 | a day lily with yellow flowers -12457250 20 n 04 Hostaceae 0 family_Hostaceae 0 Funkaceae 0 family_Funkaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted; includes genus Hosta -12457519 20 n 04 Hosta 0 genus_Hosta 0 Funka 0 genus_Funka 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12457771 n 0000 | robust east Asian clump-forming perennial herbs having racemose flowers: plantain lilies; sometimes placed in family Hostaceae -12457771 20 n 02 plantain_lily 0 day_lily 2 002 @ 12205694 n 0000 #m 12457519 n 0000 | any of numerous perennials having mounds of sumptuous broad ribbed leaves and clusters of white, blue, or lilac flowers; used as ground cover -12458002 20 n 02 Hyacinthaceae 0 family_Hyacinthaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many families or subfamilies in which some classification systems subdivide the Liliaceae but not widely accepted -12458224 20 n 01 genus_Hyacinthus 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12458383 n 0000 | sometimes placed in family Hyacinthaceae as the type genus -12458383 20 n 01 hyacinth 0 005 @ 12425281 n 0000 #m 12458224 n 0000 ~ 12458550 n 0000 ~ 12458713 n 0000 ~ 12458874 n 0000 | any of numerous bulbous perennial herbs -12458550 20 n 02 common_hyacinth 0 Hyacinthus_orientalis 0 001 @ 12458383 n 0000 | widely grown for its fragrance and its white, pink, blue, or purplish flowers -12458713 20 n 02 Roman_hyacinth 0 Hyacinthus_orientalis_albulus 0 001 @ 12458383 n 0000 | hyacinth with loosely flowered spikes, several growing from one bulb -12458874 20 n 04 summer_hyacinth 0 cape_hyacinth 0 Hyacinthus_candicans 0 Galtonia_candicans 0 001 @ 12458383 n 0000 | southern African herb with white bell-shaped flowers -12459048 20 n 02 Hyacinthoides 0 genus_Hyacinthoides 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12459275 n 0000 | small genus of perennial bulbs of western Europe and North Africa; sometimes placed in family Hyacinthaceae -12459275 20 n 06 wild_hyacinth 1 wood_hyacinth 0 bluebell 2 harebell 2 Hyacinthoides_nonscripta 0 Scilla_nonscripta 0 002 @ 12425281 n 0000 #m 12459048 n 0000 | sometimes placed in genus Scilla -12459471 20 n 02 Ornithogalum 0 genus_Ornithogalum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12459629 n 0000 | sometimes placed in family Hyacinthaceae -12459629 20 n 01 star-of-Bethlehem 0 005 @ 13134302 n 0000 #m 12459471 n 0000 ~ 12459882 n 0000 ~ 12460146 n 0000 ~ 12460308 n 0000 | any of several perennial plants of the genus Ornithogalum native to the Mediterranean and having star-shaped flowers -12459882 20 n 04 starflower 0 sleepy_dick 0 summer_snowflake 0 Ornithogalum_umbellatum 0 001 @ 12459629 n 0000 | common Old World herb having grasslike leaves and clusters of star-shaped white flowers with green stripes; naturalized in the eastern United States -12460146 20 n 03 bath_asparagus 0 Prussian_asparagus 0 Ornithogalum_pyrenaicum 0 001 @ 12459629 n 0000 | Old World star of Bethlehem having edible young shoots -12460308 20 n 03 chincherinchee 0 wonder_flower 0 Ornithogalum_thyrsoides 0 001 @ 12459629 n 0000 | South African perennial with long-lasting spikes of white blossoms that are shipped in to Europe and America for use as winter cut flowers -12460549 20 n 02 Muscari 0 genus_Muscari 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12460697 n 0000 | sometimes placed in family Hyacinthaceae -12460697 20 n 01 grape_hyacinth 0 004 @ 12425281 n 0000 #m 12460549 n 0000 ~ 12460957 n 0000 ~ 12461109 n 0000 | any of various early flowering spring hyacinths native to Eurasia having dense spikes of rounded blue flowers resembling bunches of small grapes -12460957 20 n 02 common_grape_hyacinth 0 Muscari_neglectum 0 001 @ 12460697 n 0000 | prolific species having particularly beautiful dark blue flowers -12461109 20 n 02 tassel_hyacinth 0 Muscari_comosum 0 001 @ 12460697 n 0000 | large beautiful Mediterranean species having sterile bluish-violet flowers with fringed corollas forming a tuft above the fertile flowers -12461326 20 n 01 genus_Scilla 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12461466 n 0000 | sometimes placed in subfamily Hyacinthaceae -12461466 20 n 02 scilla 0 squill 0 003 @ 12425281 n 0000 #m 12461326 n 0000 ~ 12461673 n 0000 | an Old World plant of the genus Scilla having narrow basal leaves and pink or blue or white racemose flowers -12461673 20 n 03 spring_squill 0 Scilla_verna 0 sea_onion 1 001 @ 12461466 n 0000 | European scilla with small blue or purple flowers -12461809 20 n 02 Tofieldia 0 genus_Tofieldia 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12462032 n 0000 %m 12462221 n 0000 | genus of perennial herbs of cool temperate regions; sometimes placed in family Melanthiaceae -12462032 20 n 01 false_asphodel 0 003 @ 12425281 n 0000 #m 12461809 n 0000 ~ 12462221 n 0000 | a plant of the genus Tofieldia having linear chiefly basal leaves and small spicate flowers -12462221 20 n 02 Scotch_asphodel 0 Tofieldia_pusilla 0 002 @ 12462032 n 0000 #m 12461809 n 0000 | false asphodel having spikes of white flowers; of mountainous regions of Europe -12462401 20 n 02 Urginea 0 genus_Urginea 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12462582 n 0000 | Mediterranean liliaceous plants; sometimes placed in family Hyacinthaceae -12462582 20 n 04 sea_squill 0 sea_onion 2 squill 2 Urginea_maritima 0 003 @ 12425281 n 0000 #m 12462401 n 0000 %p 12462805 n 0000 | having dense spikes of small white flowers and yielding a bulb with medicinal properties -12462805 20 n 01 squill 3 002 @ 13134059 n 0000 #p 12462582 n 0000 | bulb of the sea squill, which is sliced, dried, and used as an expectorant -12462951 20 n 02 Ruscus 0 genus_Ruscus 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12463134 n 0000 | a genus of European evergreen shrubs; sometimes placed in family Asparagaceae -12463134 20 n 02 butcher's_broom 0 Ruscus_aculeatus 0 002 @ 13112664 n 0000 #m 12462951 n 0000 | shrub with stiff flattened stems resembling leaves (cladophylls); used for making brooms -12463322 20 n 02 Melanthiaceae 0 family_Melanthiaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted: includes Aletris; Narthecium; Veratrum -12463574 20 n 02 Narthecium 0 genus_Narthecium 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12463743 n 0000 | bog asphodels; sometimes placed in family Melanthiaceae -12463743 20 n 01 bog_asphodel 0 004 @ 12425281 n 0000 #m 12463574 n 0000 ~ 12463975 n 0000 ~ 12464128 n 0000 | either of two herbaceous rushlike bog plants having small yellow flowers and grasslike leaves; north temperate regions -12463975 20 n 02 European_bog_asphodel 0 Narthecium_ossifragum 0 001 @ 12463743 n 0000 | of western Europe: Scandinavia to northern Spain and Portugal -12464128 20 n 02 American_bog_asphodel 0 Narthecium_americanum 0 001 @ 12463743 n 0000 | of the eastern United States: New Jersey to South Carolina -12464278 20 n 02 Veratrum 0 genus_Veratrum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12464476 n 0000 | a genus of coarse poisonous perennial herbs; sometimes placed in subfamily Melanthiaceae -12464476 20 n 02 hellebore 2 false_hellebore 0 003 @ 12425281 n 0000 #m 12464278 n 0000 ~ 12464649 n 0000 | perennial herbs of the lily family having thick toxic rhizomes -12464649 20 n 05 white_hellebore 0 American_hellebore 0 Indian_poke 1 bugbane 2 Veratrum_viride 0 001 @ 12464476 n 0000 | North American plant having large leaves and yellowish green flowers growing in racemes; yields a toxic alkaloid used medicinally -12464903 20 n 02 Ruscaceae 0 family_Ruscaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12465107 20 n 02 Tecophilaeacea 0 family_Tecophilaeacea 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12465321 20 n 02 Xerophyllum 0 genus_Xerophyllum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12465557 n 0000 | small genus of North American herbs having grasslike basal leaves: squaw grass; sometimes placed in family Melanthiaceae -12465557 20 n 03 squaw_grass 0 bear_grass 4 Xerophyllum_tenax 0 002 @ 12425281 n 0000 #m 12465321 n 0000 | plant of western North America having woody rhizomes and tufts of stiff grasslike basal leaves and spikes of creamy white flowers -12465796 20 n 03 Xanthorrhoeaceae 0 family_Xanthorrhoeaceae 0 grass_tree_family 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12466034 20 n 02 Xanthorroea 0 genus_Xanthorroea 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12466206 n 0000 | grass trees; sometimes placed in family Xanthorrhoeaceae -12466206 20 n 02 grass_tree 1 Australian_grass_tree 1 002 @ 13103750 n 0000 #m 12466034 n 0000 | any of several Australian evergreen perennials having short thick woody stems crowned by a tuft of grasslike foliage and yielding acaroid resins -12466450 20 n 02 Zigadenus 0 genus_Zigadenus 0 007 @ 11561228 n 0000 #m 12423565 n 0000 %m 12466727 n 0000 %m 12467018 n 0000 %m 12467197 n 0000 %m 12467433 n 0000 %m 12467592 n 0000 | genus of mostly North American poisonous plants; sometimes placed in family Melanthiaceae -12466727 20 n 02 death_camas 0 zigadene 0 006 @ 12425281 n 0000 #m 12466450 n 0000 ~ 12467018 n 0000 ~ 12467197 n 0000 ~ 12467433 n 0000 ~ 12467592 n 0000 | any of various plants of the genus Zigadenus having glaucous leaves and terminal racemes of mostly white flowers; all are poisonous -12467018 20 n 02 alkali_grass 0 Zigadenus_elegans 0 002 @ 12466727 n 0000 #m 12466450 n 0000 | plant of western North America having grasslike leaves and greenish-white flowers -12467197 20 n 02 white_camas 0 Zigadenus_glaucus 0 002 @ 12466727 n 0000 #m 12466450 n 0000 | plant of eastern and central North America having creamy white flowers tinged with brown or purple; poisonous especially to grazing animals -12467433 20 n 02 poison_camas 0 Zigadenus_nuttalli 0 002 @ 12466727 n 0000 #m 12466450 n 0000 | a common perennial death camas; Tennessee to Kansas to Texas -12467592 20 n 03 grassy_death_camas 0 Zigadenus_venenosus 0 Zigadenus_venenosus_gramineus 0 002 @ 12466727 n 0000 #m 12466450 n 0000 | plant of western North America to Mexico; poisonous especially to grazing animals -12467811 20 n 03 Trilliaceae 0 family_Trilliaceae 0 trillium_family 0 003 @ 11556187 n 0000 #m 12410715 n 0000 %m 12468081 n 0000 | small family of herbs having flowers with 3 petals and 3 sepals; in some classification systems considered a subfamily of the Liliaceae -12468081 20 n 01 genus_Trillium 0 003 @ 11561228 n 0000 #m 12467811 n 0000 %m 12468243 n 0000 | deciduous perennial herbs; sometimes placed in family Liliaceae -12468243 20 n 03 trillium 0 wood_lily 2 wake-robin 0 006 @ 12425281 n 0000 #m 12468081 n 0000 ~ 12468545 n 0000 ~ 12468719 n 0000 ~ 12468900 n 0000 ~ 12469157 n 0000 | any liliaceous plant of the genus Trillium having a whorl of three leaves at the top of the stem with a single three-petaled flower -12468545 20 n 03 prairie_wake-robin 0 prairie_trillium 0 Trillium_recurvatum 0 001 @ 12468243 n 0000 | trillium of central United States having dark purple sessile flowers -12468719 20 n 03 dwarf-white_trillium 0 snow_trillium 0 early_wake-robin 0 001 @ 12468243 n 0000 | a low perennial white-flowered trillium found in the southeastern United States -12468900 20 n 04 purple_trillium 0 red_trillium 1 birthroot 0 Trillium_erectum 0 001 @ 12468243 n 0000 | trillium of eastern North America having malodorous pink to purple flowers and an astringent root used in folk medicine especially to ease childbirth -12469157 20 n 04 red_trillium 2 toadshade 0 sessile_trillium 0 Trillium_sessile 0 001 @ 12468243 n 0000 | trillium of northeastern United States with sessile leaves and red or purple flowers having a pungent odor -12469372 20 n 02 Paris 0 genus_Paris 0 003 @ 11744859 n 0000 #m 12423565 n 0000 %m 12469517 n 0000 | sometimes placed in subfamily Trilliaceae -12469517 20 n 02 herb_Paris 0 Paris_quadrifolia 0 002 @ 12205694 n 0000 #m 12469372 n 0000 | European herb with yellow-green flowers resembling and closely related to the trilliums; reputed to be poisonous -12469725 20 n 02 Smilacaceae 0 subfamily_Smilacaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12469936 20 n 02 Smilax 1 genus_Smilax 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12470092 n 0000 %m 12470512 n 0000 | sometimes placed in Smilacaceae -12470092 20 n 01 sarsaparilla 0 004 @ 13100677 n 0000 #m 12469936 n 0000 %p 12470329 n 0000 ~ 12470907 n 0000 | any of various prickly climbing plants of the tropical American genus Smilax having aromatic roots and heart-shaped leaves -12470329 20 n 01 sarsaparilla_root 0 003 @ 13125117 n 0000 #p 12470092 n 0000 #s 07928998 n 0000 | dried root of any of various plants of the genus Smilax used as a flavoring agent -12470512 20 n 08 bullbrier 0 greenbrier 0 catbrier 0 horse_brier 0 horse-brier 0 brier 2 briar 2 Smilax_rotundifolia 0 003 @ 13100677 n 0000 #m 12469936 n 0000 + 00145083 a 0703 | a very prickly woody vine of the eastern United States growing in tangled masses having tough round stems with shiny leathery leaves and small greenish flowers followed by clusters of inedible shiny black berries -12470907 20 n 02 rough_bindweed 0 Smilax_aspera 0 001 @ 12470092 n 0000 | creeping or climbing evergreen having spiny zigzag stems with shiny leaves and racemes of pale-green flowers; Canary Islands to southern Europe and Ethiopia and India -12471150 20 n 02 Convallariaceae 0 family_Convallariaceae 0 002 @ 11556187 n 0000 #m 12423565 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae but not widely accepted -12471366 20 n 02 Convallaria 0 genus_Convallaria 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12471544 n 0000 | sometimes placed in family Convallariaceae: lily of the valley -12471544 20 n 03 lily_of_the_valley 0 May_lily 0 Convallaria_majalis 0 002 @ 12425281 n 0000 #m 12471366 n 0000 | low-growing perennial plant having usually two large oblong lanceolate leaves and a raceme of small fragrant nodding bell-shaped flowers followed by scarlet berries -12471825 20 n 01 genus_Clintonia 0 006 @ 11561228 n 0000 #m 12423565 n 0000 %m 12472024 n 0000 %m 12472326 n 0000 %m 12472559 n 0000 %m 12472778 n 0000 | sometimes placed in family Convallariaceae -12472024 20 n 02 clintonia 0 Clinton's_lily 0 005 @ 12425281 n 0000 #m 12471825 n 0000 ~ 12472326 n 0000 ~ 12472559 n 0000 ~ 12472778 n 0000 | any temperate liliaceous plant of the genus Clintonia having broad basal leaves and white or yellowish or purplish flowers followed by blue or black berries -12472326 20 n 03 red_Clintonia 0 Andrew's_clintonia 0 Clintonia_andrewsiana 0 002 @ 12472024 n 0000 #m 12471825 n 0000 | plant with nearly leafless stalk topped by a cluster of red or reddish lavender flowers; California to Oregon -12472559 20 n 03 yellow_clintonia 0 heal_all 1 Clintonia_borealis 0 002 @ 12472024 n 0000 #m 12471825 n 0000 | common woodland herb of temperate North America having yellow nodding flowers and small round blue fruits -12472778 20 n 03 queen's_cup 0 bride's_bonnet 0 Clintonia_uniflora 0 002 @ 12472024 n 0000 #m 12471825 n 0000 | plant with 1 or 2 white starlike flowers on short leafless stalks; Alaska to California and east to Oregon and Montana -12473011 20 n 02 Liriope 0 genus_Liriope 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12473171 n 0000 | sometimes placed in family Convallariaceae: lilyturf -12473171 20 n 03 lilyturf 0 lily_turf 0 Liriope_muscari 0 002 @ 12425281 n 0000 #m 12473011 n 0000 | Asiatic perennial tufted herb with grasslike evergreen foliage and clusters of dark mauve grapelike flowers; grown as ground cover -12473405 20 n 02 Maianthemum 0 genus_Maianthemum 0 004 @ 11561228 n 0000 #m 12423565 n 0000 %m 12473608 n 0000 %m 12473840 n 0000 | sometimes placed in family Convallariaceae: false lily of the valley -12473608 20 n 02 false_lily_of_the_valley 1 Maianthemum_canadense 0 002 @ 12425281 n 0000 #m 12473405 n 0000 | small two-leaved herb of the northern United States and parts of Canada having racemes of small fragrant white flowers -12473840 20 n 02 false_lily_of_the_valley 2 Maianthemum_bifolium 0 002 @ 12425281 n 0000 #m 12473405 n 0000 | small white-flowered plant of western Europe to Japan -12474006 20 n 02 Polygonatum 0 genus_Polygonatum 0 003 @ 11561228 n 0000 #m 12423565 n 0000 %m 12474167 n 0000 | sometimes placed in subfamily Convallariaceae -12474167 20 n 01 Solomon's-seal 0 003 @ 12425281 n 0000 #m 12474006 n 0000 ~ 12474418 n 0000 | any of several plants of the genus Polygonatum having paired drooping yellowish-green flowers and a thick rootstock with scars shaped like Solomon's seal -12474418 20 n 03 great_Solomon's-seal 0 Polygonatum_biflorum 0 Polygonatum_commutatum 0 001 @ 12474167 n 0000 | North American perennial herb with smooth foliage and drooping tubular greenish flowers -12474620 20 n 02 Uvulariaceae 0 subfamily_Uvulariaceae 0 003 @ 11556187 n 0000 #m 12423565 n 0000 %m 12474828 n 0000 | one of many subfamilies into which some classification systems subdivide the Liliaceae -12474828 20 n 02 Uvularia 0 genus_Uvularia 0 004 @ 11561228 n 0000 #m 12474620 n 0000 %m 12475035 n 0000 %m 12475242 n 0000 | genus of perennial rhizomatous herb of southern and southeastern United States -12475035 20 n 03 bellwort 0 merry_bells 0 wild_oats 0 003 @ 11669921 n 0000 #m 12474828 n 0000 ~ 12475242 n 0000 | any of various plants of the genus Uvularia having yellowish drooping bell-shaped flowers -12475242 20 n 03 strawflower 3 cornflower 2 Uvularia_grandiflora 0 002 @ 12475035 n 0000 #m 12474828 n 0000 | plant of southern and southeastern United States grown for its yellow flowers that can be dried -12475450 20 n 02 Taccaceae 0 family_Taccaceae 0 003 @ 11556187 n 0000 #m 12410715 n 0000 %m 12475593 n 0000 | small family of tropical herbs -12475593 20 n 02 Tacca 0 genus_Tacca 0 003 @ 11561228 n 0000 #m 12475450 n 0000 %m 12475774 n 0000 | genus of tropical plants with creeping rootstocks and small umbellate flowers -12475774 20 n 04 pia 0 Indian_arrowroot 0 Tacca_leontopetaloides 0 Tacca_pinnatifida 0 002 @ 12205694 n 0000 #m 12475593 n 0000 | perennial herb of East Indies to Polynesia and Australia; cultivated for its large edible root yielding Otaheite arrowroot starch -12476036 20 n 04 Agavaceae 0 family_Agavaceae 0 agave_family 0 sisal_family 0 011 @ 11556187 n 0000 #m 12410715 n 0000 %m 12476510 n 0000 %m 12476902 n 0000 %m 12478283 n 0000 %m 12479066 n 0000 %m 12479303 n 0000 %m 12479821 n 0000 %m 12480233 n 0000 %m 12480677 n 0000 %m 12481806 n 0000 | chiefly tropical and xerophytic plants: includes Dracenaceae (Dracaenaceae); comprises plants that in some classifications are divided between the Amaryllidaceae and the Liliaceae -12476510 20 n 03 agave 0 century_plant 0 American_aloe 0 010 @ 13121104 n 0000 #m 12476036 n 0000 ~ 12477163 n 0000 ~ 12477401 n 0000 ~ 12477583 n 0000 ~ 12477747 n 0000 ~ 12477983 n 0000 ~ 12479537 n 0000 ~ 12480004 n 0000 ~ 12480895 n 0000 | tropical American plants with basal rosettes of fibrous sword-shaped leaves and flowers in tall spikes; some cultivated for ornament or for fiber -12476902 20 n 01 genus_Agave 0 007 @ 11561228 n 0000 #m 12476036 n 0000 %m 12477163 n 0000 %m 12477401 n 0000 %m 12477583 n 0000 %m 12477747 n 0000 %m 12477983 n 0000 | type genus of the Agavaceae; in some classifications considered a genus of Amaryllidaceae -12477163 20 n 02 American_agave 0 Agave_americana 0 002 @ 12476510 n 0000 #m 12476902 n 0000 | widely cultivated American monocarpic plant with greenish-white flowers on a tall stalk; blooms only after ten to twenty years and then dies -12477401 20 n 02 sisal 0 Agave_sisalana 0 002 @ 12476510 n 0000 #m 12476902 n 0000 | Mexican or West Indian plant with large fleshy leaves yielding a stiff fiber used in e.g. rope -12477583 20 n 03 maguey 1 cantala 1 Agave_cantala 0 002 @ 12476510 n 0000 #m 12476902 n 0000 | Philippine plant yielding a hard fibre used in making coarse twine -12477747 20 n 02 maguey 2 Agave_atrovirens 0 004 @ 12476510 n 0000 #m 12476902 n 0000 %s 07905618 n 0000 %s 07905770 n 0000 | Mexican plant used especially for making pulque which is the source of the colorless Mexican liquor, mescal -12477983 20 n 01 Agave_tequilana 0 003 @ 12476510 n 0000 #m 12476902 n 0000 %s 07905979 n 0000 | Mexican plant used especially for making tequila -12478131 20 n 03 cantala 2 Cebu_maguey 0 manila_maguey 0 001 @ 14866889 n 0000 | hard fiber used in making coarse twine; from Philippine agave plants -12478283 20 n 02 Cordyline 0 genus_Cordyline 0 004 @ 11561228 n 0000 #m 12476036 n 0000 %m 12478506 n 0000 %m 12478768 n 0000 | Asiatic and Pacific trees or shrubs; fragments of the trunk will regrow to form whole plants -12478506 20 n 02 ti 0 Cordyline_terminalis 0 002 @ 13112664 n 0000 #m 12478283 n 0000 | shrub with terminal tufts of elongated leaves used locally for thatching and clothing; thick sweet roots are used as food; tropical southeastern Asia, Australia and Hawaii -12478768 20 n 03 cabbage_tree 2 grass_tree 3 Cordyline_australis 0 002 @ 13104059 n 0000 #m 12478283 n 0000 | elegant tree having either a single trunk or a branching trunk each with terminal clusters of long narrow leaves and large panicles of fragrant white, yellow or red flowers; New Zealand -12479066 20 n 04 Dracenaceae 0 subfamily_Dracenaceae 0 Dracaenaceae 0 subfamily_Dracaenaceae 0 002 @ 11556187 n 0000 #m 12476036 n 0000 | one of two subfamilies to which some classification systems assign some members of the Agavaceae -12479303 20 n 01 genus_Dracaena 0 003 @ 11561228 n 0000 #m 12476036 n 0000 %m 12479537 n 0000 | Old World tropical plants with branches ending in tufts of sword-shaped leaves; in some classifications considered a genus of Liliaceae -12479537 20 n 01 dracaena 0 003 @ 12476510 n 0000 #m 12479303 n 0000 ~ 12479689 n 0000 | an agave that is often cultivated for its decorative foliage -12479689 20 n 02 dragon_tree 0 Dracaena_draco 0 001 @ 12479537 n 0000 | tall tree of the Canary Islands; source of dragon's blood -12479821 20 n 02 Nolina 0 genus_Nolina 0 003 @ 11561228 n 0000 #m 12476036 n 0000 %m 12480004 n 0000 | perennial plants resembling yucca; found in southern United States and Mexico -12480004 20 n 02 bear_grass 1 Nolina_microcarpa 0 002 @ 12476510 n 0000 #m 12479821 n 0000 | stemless plant with tufts of grasslike leaves and erect panicle of minute creamy white flowers; southwestern United States and Mexico -12480233 20 n 02 Polianthes 0 genus_Polianthes 0 003 @ 11561228 n 0000 #m 12476036 n 0000 %m 12480456 n 0000 | genus of perennial tuberous herbs having lily-like flowers; Mexico; sometimes placed in family Amaryllidaceae -12480456 20 n 02 tuberose 0 Polianthes_tuberosa 0 002 @ 11669921 n 0000 #m 12480233 n 0000 | a tuberous Mexican herb having grasslike leaves and cultivated for its spikes of highly fragrant lily-like waxy white flowers -12480677 20 n 01 genus_Sansevieria 0 003 @ 11561228 n 0000 #m 12476036 n 0000 %m 12480895 n 0000 | Old World tropical herbaceous perennial of the agave family; in some classifications considered a genus of Liliaceae -12480895 20 n 02 sansevieria 0 bowstring_hemp 1 006 @ 12476510 n 0000 #m 12480677 n 0000 ~ 12481150 n 0000 ~ 12481289 n 0000 ~ 12481458 n 0000 %s 12481641 n 0000 | grown as a houseplant for its mottled fleshy sword-shaped leaves or as a source of fiber -12481150 20 n 03 African_bowstring_hemp 0 African_hemp 2 Sansevieria_guineensis 0 001 @ 12480895 n 0000 | bowstring hemp of South Africa -12481289 20 n 02 Ceylon_bowstring_hemp 0 Sansevieria_zeylanica 0 001 @ 12480895 n 0000 | plant having thick fibrous leaves transversely banded in light and dark green -12481458 20 n 03 mother-in-law's_tongue 1 snake_plant 0 Sansevieria_trifasciata 0 001 @ 12480895 n 0000 | stemless plant having narrow rigid leaves often cultivated as a houseplant -12481641 20 n 01 bowstring_hemp 2 002 @ 14959234 n 0000 #s 12480895 n 0000 | strong fiber that resembles hemp; obtained from sansevieria and used for e.g. cordage -12481806 20 n 01 genus_Yucca 0 003 @ 11561228 n 0000 #m 12476036 n 0000 %m 12482031 n 0000 | tropical American plants with stiff lancelike leaves and spikes of white blossoms; sometimes considered a genus of Amaryllidaceae -12482031 20 n 01 yucca 0 012 @ 13112664 n 0000 #m 12481806 n 0000 ~ 12482437 n 0000 ~ 12482668 n 0000 ~ 12482893 n 0000 ~ 12483091 n 0000 ~ 12483282 n 0000 ~ 12483427 n 0000 ~ 12483625 n 0000 ~ 12483841 n 0000 ~ 12484029 n 0000 ~ 12484244 n 0000 | any of several evergreen plants of the genus Yucca having usually tall stout stems and a terminal cluster of white flowers; warmer regions of North America -12482437 20 n 02 Spanish_bayonet 1 Yucca_aloifolia 0 001 @ 12482031 n 0000 | a stiff yucca with a short trunk; found in the southern United States and tropical America; has rigid spine-tipped leaves and clusters of white flowers -12482668 20 n 02 Spanish_bayonet 2 Yucca_baccata 0 001 @ 12482031 n 0000 | tall yucca of the southwestern United States and Mexico having a woody stem and stiff swordlike pointed leaves and a large cluster of white flowers -12482893 20 n 02 Joshua_tree 0 Yucca_brevifolia 0 001 @ 12482031 n 0000 | a large branched arborescent yucca of southwestern United States having short leaves and clustered greenish white flowers -12483091 20 n 02 Spanish_dagger 1 Yucca_carnerosana 0 001 @ 12482031 n 0000 | arborescent yucca of southwestern United States and northern Mexico with sword-shaped leaves and white flowers -12483282 20 n 04 soapweed 0 soap-weed 0 soap_tree 0 Yucca_elata 0 001 @ 12482031 n 0000 | tall arborescent yucca of southwestern United States -12483427 20 n 05 Adam's_needle 0 Adam's_needle-and-thread 0 spoonleaf_yucca 0 needle_palm 0 Yucca_filamentosa 0 001 @ 12482031 n 0000 | yucca with long stiff leaves having filamentlike appendages -12483625 20 n 02 bear_grass 2 Yucca_glauca 0 001 @ 12482031 n 0000 | yucca of west central United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers -12483841 20 n 02 Spanish_dagger 2 Yucca_gloriosa 0 001 @ 12482031 n 0000 | yucca of southeastern United States similar to the Spanish bayonets but with shorter trunk and smoother leaves -12484029 20 n 02 bear_grass 3 Yucca_smalliana 0 001 @ 12482031 n 0000 | yucca of southern United States having a clump of basal grasslike leaves and a central stalk with a terminal raceme of small whitish flowers -12484244 20 n 02 Our_Lord's_candle 0 Yucca_whipplei 0 001 @ 12482031 n 0000 | yucca of southwestern United States and Mexico with a tall spike of creamy white flowers -12484413 20 n 03 Menyanthaceae 0 family_Menyanthaceae 0 buckbean_family 0 003 @ 11562747 n 0000 #m 12289744 n 0000 %m 12484612 n 0000 | a dicotyledonous family of marsh plants of order Gentianales -12484612 20 n 02 Menyanthes 0 genus_Menyanthes 0 003 @ 11567411 n 0000 #m 12484413 n 0000 %m 12484784 n 0000 | the type genus of the Menyanthaceae; one species: bogbeans -12484784 20 n 06 water_shamrock 0 buckbean 0 bogbean 0 bog_myrtle 0 marsh_trefoil 0 Menyanthes_trifoliata 0 002 @ 13121544 n 0000 #m 12484612 n 0000 | perennial plant of Europe and America having racemes of white or purplish flowers and intensely bitter trifoliate leaves; often rooting at water margin and spreading across the surface -12485122 20 n 02 Loganiaceae 0 family_Loganiaceae 0 005 @ 11562747 n 0000 #m 12289744 n 0000 %m 12485331 n 0000 %m 12485523 n 0000 %m 12485811 n 0000 | a dicotyledonous family of plants of order Gentianales -12485331 20 n 02 Logania 0 genus_Logania 0 002 @ 11567411 n 0000 #m 12485122 n 0000 | type genus of the Loganiaceae; Australian and New Zealand shrubs sometimes cultivated for their flowers -12485523 20 n 01 genus_Buddleia 0 003 @ 11567411 n 0000 #m 12485122 n 0000 %m 12485653 n 0000 | shrubs or trees of warm regions -12485653 20 n 02 butterfly_bush 0 buddleia 0 002 @ 13112664 n 0000 #m 12485523 n 0000 | tropical shrub having clusters of white or violet or yellow flowers -12485811 20 n 02 Gelsemium 0 genus_Gelsemium 0 003 @ 11567411 n 0000 #m 12485122 n 0000 %m 12485981 n 0000 | evergreen twining shrubs of Americas and southeastern Asia -12485981 20 n 05 yellow_jasmine 0 yellow_jessamine 0 Carolina_jasmine 0 evening_trumpet_flower 0 Gelsemium_sempervirens 0 002 @ 13100677 n 0000 #m 12485811 n 0000 | poisonous woody evergreen vine of southeastern United States having fragrant yellow funnel-shaped flowers -12486254 20 n 03 Linaceae 0 family_Linaceae 0 flax_family 0 002 @ 11562747 n 0000 %m 12486397 n 0000 | a widely distributed family of plants -12486397 20 n 02 Linum 0 genus_Linum 0 003 @ 11744859 n 0000 #m 12486254 n 0000 %m 12486574 n 0000 | a herbaceous plant genus of the family Linaceae with small sessile leaves -12486574 20 n 01 flax 0 002 @ 12205694 n 0000 #m 12486397 n 0000 | plant of the genus Linum that is cultivated for its seeds and for the fibers of its stem -12486732 20 n 02 Physostigma 0 genus_Physostigma 0 003 @ 11744859 n 0000 #m 11746776 n 0000 %m 12486882 n 0000 | African woody vines: calabar beans -12486882 20 n 02 calabar-bean_vine 0 Physostigma_venenosum 0 003 @ 13100677 n 0000 #m 12486732 n 0000 %p 12487058 n 0000 | tropical African woody vine yielding calabar beans -12487058 20 n 02 calabar_bean 0 ordeal_bean 0 002 @ 13136316 n 0000 #p 12486882 n 0000 | dark brown highly poisonous seed of the calabar-bean vine; source of physostigmine and used in native witchcraft -12487262 20 n 01 physostigmine 0 002 @ 14712692 n 0000 #s 03740161 n 0000 | used in treatment of Alzheimer's disease and glaucoma -12487394 20 n 02 Caesalpiniaceae 0 family_Caesalpiniaceae 0 002 @ 11566682 n 0000 #m 11746776 n 0000 | spiny trees, shrubs, or perennial herbs, including the genera Caesalpinia, Cassia, Ceratonia, Bauhinia; commonly included in the family Leguminosae -12487647 20 n 02 Caesalpinioideae 0 subfamily_Caesalpinioideae 0 017 @ 11566682 n 0000 #m 11746776 n 0000 %m 12488121 n 0000 %m 12490330 n 0000 %m 12490671 n 0000 %m 12491200 n 0000 %m 12491626 n 0000 %m 12493090 n 0000 %m 12493699 n 0000 %m 12494115 n 0000 %m 12494629 n 0000 %m 12495509 n 0000 %m 12496207 n 0000 %m 12496735 n 0000 %m 12497492 n 0000 %m 12498316 n 0000 %m 12498928 n 0000 | alternative name in some classification systems for the family Caesalpiniaceae -12488121 20 n 02 Caesalpinia 0 genus_Caesalpinia 0 010 @ 11585340 n 0000 #m 12487647 n 0000 %m 12488454 n 0000 %m 12488709 n 0000 %m 12489046 n 0000 %m 12489268 n 0000 %m 12489676 n 0000 %m 12489815 n 0000 %m 12490054 n 0000 %m 12498739 n 0000 | small spiny tropical trees or shrubs; includes the small genus or subgenus Poinciana -12488454 20 n 04 bonduc 1 bonduc_tree 0 Caesalpinia_bonduc 0 Caesalpinia_bonducella 0 003 @ 13104059 n 0000 #m 12488121 n 0000 %p 11689197 n 0000 | tropical tree with large prickly pods of seeds that resemble beans and are used for jewelry and rosaries -12488709 20 n 02 divi-divi 1 Caesalpinia_coriaria 0 003 @ 13104059 n 0000 #m 12488121 n 0000 %p 12488914 n 0000 | small thornless tree or shrub of tropical America whose seed pods are a source of tannin -12488914 20 n 01 divi-divi 2 002 @ 13136316 n 0000 #p 12488709 n 0000 | twisted seed pods of the divi-divi tree; source of tannin -12489046 20 n 03 Mysore_thorn 0 Caesalpinia_decapetala 0 Caesalpinia_sepiaria 0 002 @ 13112664 n 0000 #m 12488121 n 0000 | spreading thorny shrub of tropical Asia bearing large erect racemes of red-marked yellow flowers -12489268 20 n 05 brazilwood 0 peachwood 0 peach-wood 0 pernambuco_wood 0 Caesalpinia_echinata 0 003 @ 13104059 n 0000 #m 12488121 n 0000 %s 12489524 n 0000 | tropical tree with prickly trunk; its heavy red wood yields a red dye and is used for cabinetry -12489524 20 n 01 brazilwood 2 002 @ 15098161 n 0000 #s 12489268 n 0000 | heavy wood of various brazilwood trees; used for violin bows and as dyewoods -12489676 20 n 02 brazilian_ironwood 0 Caesalpinia_ferrea 0 002 @ 13104059 n 0000 #m 12488121 n 0000 | thornless tree yielding heavy wood -12489815 20 n 04 bird_of_paradise 2 poinciana 2 Caesalpinia_gilliesii 0 Poinciana_gilliesii 0 002 @ 13120003 n 0000 #m 12488121 n 0000 | a tropical flowering shrub having bright orange or red flowers; sometimes placed in genus Poinciana -12490054 20 n 05 pride_of_barbados 0 paradise_flower 0 flamboyant_tree 0 Caesalpinia_pulcherrima 0 Poinciana_pulcherrima 0 002 @ 13120003 n 0000 #m 12488121 n 0000 | tropical shrub or small tree having showy yellow to orange-red flowers; sometimes placed in genus Poinciana -12490330 20 n 02 Acrocarpus 0 genus_Acrocarpus 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12490490 n 0000 | small genus of trees of Indonesia and Malaysia -12490490 20 n 02 shingle_tree 0 Acrocarpus_fraxinifolius 0 002 @ 13104059 n 0000 #m 12490330 n 0000 | East Indian timber tree with hard durable wood used especially for tea boxes -12490671 20 n 02 Bauhinia 0 genus_Bauhinia 0 004 @ 11585340 n 0000 #m 12487647 n 0000 %m 12490827 n 0000 %m 12491017 n 0000 | mountain ebony, orchid tree -12490827 20 n 02 butterfly_flower 2 Bauhinia_monandra 0 002 @ 13112664 n 0000 #m 12490671 n 0000 | shrub or small tree of Dutch Guiana having clusters of pink flowers streaked with purple -12491017 20 n 03 mountain_ebony 0 orchid_tree 0 Bauhinia_variegata 0 002 @ 13109733 n 0000 #m 12490671 n 0000 | small East Indian tree having orchid-like flowers and hard dark wood -12491200 20 n 02 Brachystegia 0 genus_Brachystegia 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12491435 n 0000 | small genus of tropical African timber trees having pale golden heartwood uniformly striped with dark brown or black: -12491435 20 n 02 msasa 0 Brachystegia_speciformis 0 002 @ 13104059 n 0000 #m 12491200 n 0000 | small shrubby African tree having compound leaves and racemes of small fragrant green flowers -12491626 20 n 02 genus_Cassia 0 Cassia 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12491826 n 0000 | some genus Cassia species often classified as members of the genus Senna or genus Chamaecrista -12491826 20 n 01 cassia 1 006 @ 13104059 n 0000 #m 12491626 n 0000 ~ 12492106 n 0000 ~ 12492460 n 0000 ~ 12492682 n 0000 ~ 12492900 n 0000 | any of various trees or shrubs of the genus Cassia having pinnately compound leaves and usually yellow flowers followed by long seedpods -12492106 20 n 07 golden_shower_tree 0 drumstick_tree 0 purging_cassia 0 pudding_pipe_tree 0 canafistola 0 canafistula 0 Cassia_fistula 0 001 @ 12491826 n 0000 | deciduous or semi-evergreen tree having scented sepia to yellow flowers in drooping racemes and pods whose pulp is used medicinally; tropical Asia and Central and South America and Australia -12492460 20 n 04 pink_shower 0 pink_shower_tree 0 horse_cassia 1 Cassia_grandis 0 001 @ 12491826 n 0000 | tropical American semi-evergreen tree having erect racemes of pink or rose-colored flowers; used as an ornamental -12492682 20 n 02 rainbow_shower 0 Cassia_javonica 0 001 @ 12491826 n 0000 | deciduous ornamental hybrid of southeastern Asia and Hawaii having racemes of flowers ranging in color from cream-colored to orange and red -12492900 20 n 03 horse_cassia 2 Cassia_roxburghii 0 Cassia_marginata 0 001 @ 12491826 n 0000 | East Indian tree having long pods containing a black cathartic pulp used as a horse medicine -12493090 20 n 02 Ceratonia 0 genus_Ceratonia 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12493208 n 0000 | carobs -12493208 20 n 05 carob 0 carob_tree 0 carob_bean_tree 0 algarroba 0 Ceratonia_siliqua 0 003 @ 13108131 n 0000 #m 12493090 n 0000 %p 12493426 n 0000 | evergreen Mediterranean tree with edible pods; the biblical carob -12493426 20 n 06 carob 2 carob_bean 0 algarroba_bean 0 algarroba 2 locust_bean 0 locust_pod 0 003 @ 13136316 n 0000 #p 12493208 n 0000 #s 07598335 n 0000 | long pod containing small beans and sweetish edible pulp; used as animal feed and source of a chocolate substitute -12493699 20 n 02 Cercidium 0 genus_Cercidium 0 002 @ 11585340 n 0000 #m 12487647 n 0000 | spiny shrubs or small trees sometimes placed in genus Parkinsonia: paloverde -12493868 20 n 01 paloverde 0 001 @ 13112664 n 0000 | a thorny shrub of the genus Cercidium that grows in dry parts of the southwestern United States and adjacent Mexico; has smooth light green bark and racemes of yellow flowers and small leaves -12494115 20 n 02 Chamaecrista 0 genus_Chamaecrista 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12494358 n 0000 | genus of tropical herbs or subshrubs having sensitive leaves and suddenly dehiscing pods; some species placed in genus Cassia -12494358 20 n 05 partridge_pea 0 sensitive_pea 0 wild_sensitive_plant 0 Chamaecrista_fasciculata 0 Cassia_fasciculata 0 002 @ 13118707 n 0000 #m 12494115 n 0000 | tropical American plant having leaflets somewhat sensitive to the touch; sometimes placed in genus Cassia -12494629 20 n 02 Delonix 0 genus_Delonix 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12494794 n 0000 | evergreen or deciduous trees of tropical Africa and India -12494794 20 n 06 royal_poinciana 0 flamboyant 0 flame_tree 4 peacock_flower 0 Delonix_regia 0 Poinciana_regia 0 003 @ 13109733 n 0000 #m 12494629 n 0000 + 01794771 a 0203 | showy tropical tree or shrub native to Madagascar; widely planted in tropical regions for its immense racemes of scarlet and orange flowers; sometimes placed in genus Poinciana -12495146 20 n 02 locust_tree 0 locust 0 008 @ 13104059 n 0000 #m 11746776 n 0000 ~ 11750508 n 0000 %s 12495396 n 0000 ~ 12495670 n 0000 ~ 12495895 n 0000 ~ 12568186 n 0000 ~ 12568649 n 0000 | any of various hardwood trees of the family Leguminosae -12495396 20 n 01 locust 2 002 @ 15098161 n 0000 #s 12495146 n 0000 | hardwood from any of various locust trees -12495509 20 n 02 Gleditsia 0 genus_Gleditsia 0 004 @ 11585340 n 0000 #m 12487647 n 0000 %m 12495670 n 0000 %m 12495895 n 0000 | deciduous trees: honey locusts -12495670 20 n 03 water_locust 0 swamp_locust 0 Gleditsia_aquatica 0 002 @ 12495146 n 0000 #m 12495509 n 0000 | honey locust of swamps and bottomlands of southern United States having short oval pods; yields dark heavy wood -12495895 20 n 02 honey_locust 0 Gleditsia_triacanthos 0 002 @ 12495146 n 0000 #m 12495509 n 0000 | tall usually spiny North American tree having small greenish-white flowers in drooping racemes followed by long twisting seed pods; yields very hard durable reddish-brown wood; introduced to temperate Old World -12496207 20 n 02 Gymnocladus 0 genus_Gymnocladus 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12496427 n 0000 | small genus of deciduous trees of China and United States having paniculate flowers and thick pulpy pods -12496427 20 n 04 Kentucky_coffee_tree 0 bonduc 2 chicot 0 Gymnocladus_dioica 0 002 @ 13104059 n 0000 #m 12496207 n 0000 | handsome tree of central and eastern North America having large bipinnate leaves and green-white flowers followed by large woody brown pods whose seeds are used as a coffee substitute -12496735 20 n 04 Haematoxylum 0 genus_Haematoxylum 0 Haematoxylon 0 genus_Haematoxylon 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12496949 n 0000 | small genus of tropical American spiny bushy shrubs or trees -12496949 20 n 05 logwood 0 logwood_tree 0 campeachy 0 bloodwood_tree 1 Haematoxylum_campechianum 0 003 @ 12524188 n 0000 #m 12496735 n 0000 %s 12497322 n 0000 | spiny shrub or small tree of Central America and West Indies having bipinnate leaves and racemes of small bright yellow flowers and yielding a hard brown or brownish-red heartwood used in preparing a black dye -12497322 20 n 01 logwood 2 002 @ 15098161 n 0000 #s 12496949 n 0000 | very hard brown to brownish-red heartwood of a logwood tree; used in preparing a purplish red dye -12497492 20 n 02 Parkinsonia 0 genus_Parkinsonia 0 004 @ 11585340 n 0000 #m 12487647 n 0000 %m 12497669 n 0000 %m 12498055 n 0000 | small genus of spiny shrubs or small trees -12497669 20 n 03 Jerusalem_thorn 1 horsebean 0 Parkinsonia_aculeata 0 002 @ 13112664 n 0000 #m 12497492 n 0000 | large shrub or shrubby tree having sharp spines and pinnate leaves with small deciduous leaflets and sweet-scented racemose yellow-orange flowers; grown as ornamentals or hedging or emergency food for livestock; tropical America but naturalized in southern United States -12498055 20 n 03 palo_verde 0 Parkinsonia_florida 0 Cercidium_floridum 0 002 @ 13104059 n 0000 #m 12497492 n 0000 | densely branched spiny tree of southwestern United States having showy yellow flowers and blue-green bark; sometimes placed in genus Cercidium -12498316 20 n 02 Petteria 0 genus_Petteria 0 003 @ 11585340 n 0000 #m 12487647 n 0000 %m 12498457 n 0000 | one species: Dalmatian laburnum -12498457 20 n 03 Dalmatian_laburnum 0 Petteria_ramentacea 0 Cytisus_ramentaceus 0 002 @ 13112664 n 0000 #m 12498316 n 0000 | erect shrub having large trifoliate leaves and dense clusters of yellow flowers followed by poisonous seeds; Yugoslavia; sometimes placed in genus Cytisus -12498739 20 n 02 Poinciana 0 subgenus_Poinciana 0 002 @ 11585340 n 0000 #m 12488121 n 0000 | small subgenus of ornamental tropical shrubs or trees; not recognized in some classifications -12498928 20 n 01 genus_Senna 0 005 @ 11585340 n 0000 #m 12487647 n 0000 %m 12499163 n 0000 %m 12500309 n 0000 %m 12500518 n 0000 | genus of shrubs and trees and herbs many of which are often classified as members of the genus Cassia -12499163 20 n 01 senna 0 006 @ 13112664 n 0000 #m 12498928 n 0000 ~ 12499439 n 0000 ~ 12499757 n 0000 ~ 12499979 n 0000 ~ 12500751 n 0000 | any of various plants of the genus Senna having pinnately compound leaves and showy usually yellow flowers; many are used medicinally -12499439 20 n 05 ringworm_bush 0 ringworm_shrub 0 ringworm_cassia 0 Senna_alata 0 Cassia_alata 0 002 @ 12499163 n 0000 ;r 09044862 n 0000 | tropical shrub (especially of Americas) having yellow flowers and large leaves whose juice is used as a cure for ringworm and poisonous bites; sometimes placed in genus Cassia -12499757 20 n 04 avaram 0 tanner's_cassia 0 Senna_auriculata 0 Cassia_auriculata 0 001 @ 12499163 n 0000 | evergreen Indian shrub with vivid yellow flowers whose bark is used in tanning; sometimes placed in genus Cassia -12499979 20 n 08 Alexandria_senna 0 Alexandrian_senna 0 true_senna 0 tinnevelly_senna 0 Indian_senna 0 Senna_alexandrina 0 Cassia_acutifolia 0 Cassia_augustifolia 0 001 @ 12499163 n 0000 | erect shrub having racemes of tawny yellow flowers; the dried leaves are used medicinally as a cathartic; sometimes placed in genus Cassia -12500309 20 n 03 wild_senna 0 Senna_marilandica 0 Cassia_marilandica 0 002 @ 12205694 n 0000 #m 12498928 n 0000 | North American perennial herb; leaves are used medicinally; sometimes placed in genus Cassia -12500518 20 n 03 sicklepod 2 Senna_obtusifolia 0 Cassia_tora 0 002 @ 13118707 n 0000 #m 12498928 n 0000 | cosmopolitan tropical herb or subshrub with yellow flowers and slender curved pods; a weed; sometimes placed in genus Cassia -12500751 20 n 06 coffee_senna 0 mogdad_coffee 0 styptic_weed 0 stinking_weed 0 Senna_occidentalis 0 Cassia_occidentalis 0 001 @ 12499163 n 0000 | very leafy malodorous tropical weedy shrub whose seeds have been used as an adulterant for coffee; sometimes classified in genus Cassia -12501035 20 n 02 Tamarindus 0 genus_Tamarindus 0 003 @ 11585340 n 0000 #m 11746776 n 0000 %m 12501202 n 0000 | widely cultivated tropical trees originally of Africa -12501202 20 n 04 tamarind 0 tamarind_tree 0 tamarindo 0 Tamarindus_indica 0 003 @ 13108131 n 0000 #m 12501035 n 0000 %p 07764630 n 0000 | long-lived tropical evergreen tree with a spreading crown and feathery evergreen foliage and fragrant flowers yielding hard yellowish wood and long pods with edible chocolate-colored acidic pulp -12501537 20 n 02 Papilionaceae 0 family_Papilionacea 0 002 @ 11566682 n 0000 #m 11746776 n 0000 | leguminous plants whose flowers have butterfly-shaped corollas; commonly included in the family Leguminosae -12501745 20 n 02 Papilionoideae 0 subfamily_Papilionoideae 0 106 @ 11566682 n 0000 #m 11746776 n 0000 %m 12503908 n 0000 %m 12505032 n 0000 %m 12505563 n 0000 %m 12505987 n 0000 %m 12506614 n 0000 %m 12507236 n 0000 %m 12507670 n 0000 %m 12508077 n 0000 %m 12508936 n 0000 %m 12509297 n 0000 %m 12510197 n 0000 %m 12510569 n 0000 %m 12511046 n 0000 %m 12511703 n 0000 %m 12512460 n 0000 %m 12512947 n 0000 %m 12513426 n 0000 %m 12514324 n 0000 %m 12514802 n 0000 %m 12515219 n 0000 %m 12515597 n 0000 %m 12516040 n 0000 %m 12516432 n 0000 %m 12517253 n 0000 %m 12517820 n 0000 %m 12518305 n 0000 %m 12518725 n 0000 %m 12519328 n 0000 %m 12520223 n 0000 %m 12520661 n 0000 %m 12520864 n 0000 %m 12521847 n 0000 %m 12524518 n 0000 %m 12524944 n 0000 %m 12525347 n 0000 %m 12525975 n 0000 %m 12526380 n 0000 %m 12526946 n 0000 %m 12527391 n 0000 %m 12527569 n 0000 %m 12529353 n 0000 %m 12529730 n 0000 %m 12530208 n 0000 %m 12531144 n 0000 %m 12531552 n 0000 %m 12532008 n 0000 %m 12532720 n 0000 %m 12533588 n 0000 %m 12533992 n 0000 %m 12534453 n 0000 %m 12535101 n 0000 %m 12535461 n 0000 %m 12535820 n 0000 %m 12536455 n 0000 %m 12536665 n 0000 %m 12537437 n 0000 %m 12537988 n 0000 %m 12538603 n 0000 %m 12542649 n 0000 %m 12544027 n 0000 %m 12544646 n 0000 %m 12545090 n 0000 %m 12546015 n 0000 %m 12547658 n 0000 ~ 12548134 n 0000 %m 12549649 n 0000 %m 12549976 n 0000 %m 12550968 n 0000 %m 12552081 n 0000 %m 12552658 n 0000 %m 12553314 n 0000 %m 12554242 n 0000 %m 12555069 n 0000 %m 12555720 n 0000 %m 12556030 n 0000 %m 12558902 n 0000 %m 12559302 n 0000 %m 12559842 n 0000 %m 12561696 n 0000 %m 12562420 n 0000 %m 12563404 n 0000 %m 12563567 n 0000 %m 12563913 n 0000 %m 12564381 n 0000 %m 12564840 n 0000 %m 12566809 n 0000 %m 12567316 n 0000 %m 12567768 n 0000 %m 12568865 n 0000 %m 12569233 n 0000 %m 12570126 n 0000 %m 12571194 n 0000 %m 12571606 n 0000 %m 12572021 n 0000 %m 12572373 n 0000 %m 12573078 n 0000 %m 12573760 n 0000 %m 12574143 n 0000 %m 12574727 n 0000 %m 12575089 n 0000 %m 12577000 n 0000 %m 12579242 n 0000 %m 12579593 n 0000 %m 12580204 n 0000 | alternative name used in some classification systems for the family Papilionaceae -12503908 20 n 01 genus_Amorpha 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12504094 n 0000 | American herbs or shrubs usually growing in dry sunny habitats on prairies and hillsides -12504094 20 n 01 amorpha 0 005 @ 13112664 n 0000 #m 12503908 n 0000 ~ 12504306 n 0000 ~ 12504570 n 0000 ~ 12504783 n 0000 | any plant of the genus Amorpha having odd-pinnate leaves and purplish spicate flowers -12504306 20 n 03 leadplant 0 lead_plant 0 Amorpha_canescens 0 001 @ 12504094 n 0000 | shrub of sandy woodlands and stream banks of western United States having hoary pinnate flowers and dull-colored racemose flowers; thought to indicate the presence of lead ore -12504570 20 n 03 false_indigo 1 bastard_indigo 1 Amorpha_californica 0 001 @ 12504094 n 0000 | an erect to spreading hairy shrub of the Pacific coast of the United States having racemes of red to indigo flowers -12504783 20 n 03 false_indigo 2 bastard_indigo 2 Amorpha_fruticosa 0 001 @ 12504094 n 0000 | dense shrub of moist riverbanks and flood plains of the eastern United States having attractive fragrant foliage and dense racemes of dark purple flowers -12505032 20 n 04 Amphicarpaea 0 genus_Amphicarpaea 0 Amphicarpa 0 genus_Amphicarpa 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12505253 n 0000 | very small genus of twining vines of North America and Asia: hog peanut -12505253 20 n 04 hog_peanut 0 wild_peanut 0 Amphicarpaea_bracteata 0 Amphicarpa_bracteata 0 002 @ 13100677 n 0000 #m 12505032 n 0000 | vine widely distributed in eastern North America producing racemes of purple to maroon flowers and abundant (usually subterranean) edible one-seeded pods resembling peanuts -12505563 20 n 02 Anagyris 0 genus_Anagyris 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12505752 n 0000 | very small genus of shrubs of southern Europe having backward curving seed pods -12505752 20 n 03 bean_trefoil 0 stinking_bean_trefoil 0 Anagyris_foetida 0 002 @ 13112664 n 0000 #m 12505563 n 0000 | shrub with trifoliate leaves and yellow flowers followed by backward curving seed pods; leaves foetid when crushed -12505987 20 n 02 Andira 0 genus_Andira 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12506181 n 0000 %m 12506341 n 0000 | small genus of evergreen trees of tropical America and western Africa -12506181 20 n 02 angelim 0 andelmin 0 003 @ 13104059 n 0000 #m 12505987 n 0000 ~ 12506341 n 0000 | any of several tropical American trees of the genus Andira -12506341 20 n 04 cabbage_bark 0 cabbage-bark_tree 0 cabbage_tree 3 Andira_inermis 0 002 @ 12506181 n 0000 #m 12505987 n 0000 | tree with shaggy unpleasant-smelling toxic bark and yielding strong durable wood; bark and seeds used as a purgative and vermifuge and narcotic -12506614 20 n 02 Anthyllis 0 genus_Anthyllis 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12506784 n 0000 %m 12506991 n 0000 | genus of Mediterranean herbs and shrubs -12506784 20 n 04 Jupiter's_beard 0 silverbush 2 silver-bush 2 Anthyllis_barba-jovis 0 002 @ 13112664 n 0000 #m 12506614 n 0000 | silvery hairy European shrub with evergreen foliage and pale yellow flowers -12506991 20 n 02 kidney_vetch 0 Anthyllis_vulneraria 0 002 @ 12205694 n 0000 #m 12506614 n 0000 | perennial Eurasian herb having heads of red or yellow flowers and common in meadows and pastures; formerly used medicinally for kidney disorders -12507236 20 n 02 Apios 0 genus_Apios 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12507379 n 0000 | twining perennial North American plants -12507379 20 n 07 groundnut 0 groundnut_vine 0 Indian_potato 2 potato_bean 0 wild_bean 0 Apios_americana 0 Apios_tuberosa 0 003 @ 13100677 n 0000 #m 12507236 n 0000 %p 07774032 n 0000 | a North American vine with fragrant blossoms and edible tubers; important food crop of Native Americans -12507670 20 n 02 Aspalathus 0 genus_Aspalathus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12507823 n 0000 | genus of South African heathlike shrubs -12507823 20 n 03 rooibos 0 Aspalathus_linearis 0 Aspalathus_cedcarbergensis 0 002 @ 13112664 n 0000 #m 12507670 n 0000 | South African shrub having flat acuminate leaves and yellow flowers; leaves are aromatic when dried and used to make an herbal tea -12508077 20 n 02 Astragalus 0 genus_Astragalus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12508309 n 0000 | large genus of annual or perennial herbs or shrubs of north temperate regions; largest genus in the family Leguminosae -12508309 20 n 02 milk_vetch 0 milk-vetch 0 005 @ 13103136 n 0000 #m 12508077 n 0000 ~ 12508497 n 0000 ~ 12508618 n 0000 ~ 12508762 n 0000 | any of various plants of the genus Astragalus -12508497 20 n 03 wild_licorice 2 wild_liquorice 2 Astragalus_glycyphyllos 0 001 @ 12508309 n 0000 | European perennial -12508618 20 n 02 alpine_milk_vetch 0 Astragalus_alpinus 0 001 @ 12508309 n 0000 | perennial of mountainous areas of Eurasia and North America -12508762 20 n 02 purple_milk_vetch 0 Astragalus_danicus 0 001 @ 12508309 n 0000 | perennial of southern and western Europe having dense racemes of purple or violet flowers -12508936 20 n 02 Baphia 0 genus_Baphia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12509109 n 0000 | small genus of shrubs and lianas and trees of Africa and Madagascar -12509109 20 n 03 camwood 0 African_sandalwood 0 Baphia_nitida 0 002 @ 13104059 n 0000 #m 12508936 n 0000 | small shrubby African tree with hard wood used as a dyewood yielding a red dye -12509297 20 n 02 Baptisia 0 genus_Baptisia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12509476 n 0000 | genus of North American plants with showy flowers and an inflated pod -12509476 20 n 02 wild_indigo 0 false_indigo 3 005 @ 13103136 n 0000 #m 12509297 n 0000 ~ 12509665 n 0000 ~ 12509821 n 0000 ~ 12509993 n 0000 | any of several plants of the genus Baptisia -12509665 20 n 02 blue_false_indigo 0 Baptisia_australis 0 001 @ 12509476 n 0000 | wild indigo of the eastern United States having racemes of blue flowers -12509821 20 n 02 white_false_indigo 0 Baptisia_lactea 0 001 @ 12509476 n 0000 | erect or spreading herb having racemes of creamy white flowers; the eastern United States -12509993 20 n 04 indigo_broom 0 horsefly_weed 0 rattle_weed 0 Baptisia_tinctoria 0 001 @ 12509476 n 0000 | much-branched erect herb with bright yellow flowers; distributed from Massachusetts to Florida -12510197 20 n 02 Butea 0 genus_Butea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12510343 n 0000 | genus of East Indian trees or shrubs: dhak -12510343 20 n 05 dhak 0 dak 0 palas 0 Butea_frondosa 0 Butea_monosperma 0 002 @ 13104059 n 0000 #m 12510197 n 0000 | East Indian tree bearing a profusion of intense vermilion velvet-textured blooms and yielding a yellow dye -12510569 20 n 02 Cajanus 0 genus_Cajanus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12510774 n 0000 | erect densely branched shrubby perennials of Old World tropics; naturalized in other warm regions -12510774 20 n 08 pigeon_pea 0 pigeon-pea_plant 0 cajan_pea 0 catjang_pea 0 red_gram 0 dhal 0 dahl 0 Cajanus_cajan 0 003 @ 13112664 n 0000 #m 12510569 n 0000 %p 07726230 n 0000 | tropical woody herb with showy yellow flowers and flat pods; much cultivated in the tropics -12511046 20 n 02 Canavalia 0 genus_Canavalia 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12511239 n 0000 %m 12511488 n 0000 | herbs or woody vines of mainly American tropics and subtropics -12511239 20 n 04 jack_bean 0 wonder_bean 0 giant_stock_bean 0 Canavalia_ensiformis 0 002 @ 13100677 n 0000 #m 12511046 n 0000 | annual semi-erect bushy plant of tropical South America bearing long pods with white seeds grown especially for forage -12511488 20 n 02 sword_bean 0 Canavalia_gladiata 0 002 @ 13100677 n 0000 #m 12511046 n 0000 | twining tropical Old World plant bearing long pods usually with red or brown beans; long cultivated in Orient for food -12511703 20 n 01 genus_Caragana 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12511856 n 0000 | large genus of Asiatic deciduous shrubs or small trees -12511856 20 n 02 pea_tree 0 caragana 0 004 @ 13112664 n 0000 #m 12511703 n 0000 ~ 12512095 n 0000 ~ 12512294 n 0000 | any plant of the genus Caragana having even-pinnate leaves and mostly yellow flowers followed by seeds in a linear pod -12512095 20 n 02 Siberian_pea_tree 0 Caragana_arborescens 0 001 @ 12511856 n 0000 | large spiny shrub of eastern Asia having clusters of yellow flowers; often cultivated in shelterbelts and hedges -12512294 20 n 02 Chinese_pea_tree 0 Caragana_sinica 0 001 @ 12511856 n 0000 | shrub with dark-green glossy foliage and solitary pale yellow flowers; northern China -12512460 20 n 02 Castanospermum 0 genus_Castanospermum 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12512674 n 0000 | a rosid dicot genus of the subfamily Papilionoideae having one species: Moreton Bay chestnut -12512674 20 n 02 Moreton_Bay_chestnut 0 Australian_chestnut 0 002 @ 13108131 n 0000 #m 12512460 n 0000 | Australian tree having pinnate leaves and orange-yellow flowers followed by large woody pods containing 3 or 4 seeds that resemble chestnuts; yields dark strong wood -12512947 20 n 02 Centrosema 0 genus_Centrosema 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12513172 n 0000 | a genus of chiefly tropical American vines of the family Leguminosae having trifoliate leaves and large flowers -12513172 20 n 02 butterfly_pea 3 Centrosema_virginianum 0 002 @ 13100677 n 0000 #m 12512947 n 0000 | large-flowered weakly twining or prostrate vine of New Jersey to tropical eastern North America, sometimes cultivated for its purple and white flowers -12513426 20 n 02 Cercis 0 genus_Cercis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12513613 n 0000 | deciduous shrubs and trees of eastern Asia, southern Europe and the United States -12513613 20 n 03 Judas_tree 0 love_tree 0 Circis_siliquastrum 0 002 @ 13109733 n 0000 #m 12513426 n 0000 | small tree of the eastern Mediterranean having abundant purplish-red flowers growing on old wood directly from stems and appearing before the leaves: widely cultivated in mild regions; wood valuable for veneers -12513933 20 n 02 redbud 0 Cercis_canadensis 0 001 @ 13109733 n 0000 | small shrubby tree of eastern North America similar to the Judas tree having usually pink flowers; found in damp sheltered underwood -12514138 20 n 03 western_redbud 0 California_redbud 0 Cercis_occidentalis 0 001 @ 13112664 n 0000 | shrub of western United States having pink or crimson flowers; often forms thickets -12514324 20 n 02 Chamaecytisus 0 genus_Chamaecytisus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12514592 n 0000 | small late-flowering trees or subshrubs having yellow to red flowers and leathery or woody pods; often especially formerly included in genus Cytisus -12514592 20 n 03 tagasaste 0 Chamaecytisus_palmensis 0 Cytesis_proliferus 0 002 @ 13112664 n 0000 #m 12514324 n 0000 | shrub of Canary Islands having bristle-tipped oblanceolate leaves; used as cattle fodder -12514802 20 n 02 Chordospartium 0 genus_Chordospartium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12514992 n 0000 | 2 species of small New Zealand trees: weeping tree broom; endangered -12514992 20 n 01 weeping_tree_broom 0 002 @ 12520864 n 0000 #m 12514802 n 0000 | small shrubby tree of New Zealand having weeping branches and racemes of white to violet flowers followed by woolly indehiscent two-seeded pods -12515219 20 n 02 Chorizema 0 genus_Chorizema 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12515393 n 0000 | genus of Australian twining vines and small shrubs: flame peas -12515393 20 n 01 flame_pea 0 002 @ 13112664 n 0000 #m 12515219 n 0000 | any of several small shrubs or twining vines having entire or lobed leaves and racemes of yellow to orange-red flowers; Australia -12515597 20 n 02 Cicer 0 genus_Cicer 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | chickpea plant; Asiatic herbs -12515711 20 n 04 chickpea 0 chickpea_plant 0 Egyptian_pea 0 Cicer_arietinum 0 003 @ 11747468 n 0000 %p 07726095 n 0000 %p 12515925 n 0000 | Asiatic herb cultivated for its short pods with one or two edible seeds -12515925 20 n 02 chickpea 2 garbanzo 0 002 @ 11748002 n 0000 #p 12515711 n 0000 | the seed of the chickpea plant -12516040 20 n 02 Cladrastis 0 genus_Cladrastis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12516165 n 0000 | yellowwoods -12516165 20 n 04 Kentucky_yellowwood 0 gopherwood 0 Cladrastis_lutea 0 Cladrastis_kentukea 0 002 @ 11650919 n 0000 #m 12516040 n 0000 | small handsome roundheaded deciduous tree having showy white flowers in terminal clusters and heavy hardwood yielding yellow dye -12516432 20 n 01 genus_Clianthus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12516584 n 0000 | genus of semi-prostrate Australasian shrubs or vines -12516584 20 n 02 glory_pea 0 clianthus 0 004 @ 13112664 n 0000 #m 12516432 n 0000 ~ 12516828 n 0000 ~ 12517077 n 0000 | any of various shrubs or vines of the genus Clianthus having compound leaves and pea-like red flowers in drooping racemes -12516828 20 n 05 desert_pea 0 Sturt_pea 0 Sturt's_desert_pea 0 Clianthus_formosus 0 Clianthus_speciosus 0 001 @ 12516584 n 0000 | sprawling shrubby perennial noted for its scarlet black-marked flowers; widely distributed in dry parts of Australia -12517077 20 n 03 parrot's_beak 0 parrot's_bill 0 Clianthus_puniceus 0 001 @ 12516584 n 0000 | evergreen shrub with scarlet to white clawlike or beaklike flowers; New Zealand -12517253 20 n 02 Clitoria 0 genus_Clitoria 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12517445 n 0000 | genus of tropical shrubs or vines having pinnate leaves and large axillary flowers -12517445 20 n 02 butterfly_pea 1 Clitoria_mariana 0 002 @ 13100677 n 0000 #m 12517253 n 0000 | large-flowered wild twining vine of southeastern and central United States having pale blue flowers -12517642 20 n 03 blue_pea 0 butterfly_pea 2 Clitoria_turnatea 0 001 @ 13100677 n 0000 | vine of tropical Asia having pinnate leaves and bright blue flowers with yellow centers -12517820 20 n 02 Codariocalyx 0 genus_Codariocalyx 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12518013 n 0000 | used in some classifications for plants usually included in genus Desmodium -12518013 20 n 05 telegraph_plant 0 semaphore_plant 0 Codariocalyx_motorius 0 Desmodium_motorium 0 Desmodium_gyrans 0 002 @ 13112664 n 0000 #m 12517820 n 0000 | erect tropical Asian shrub whose small lateral leaflets rotate on their axes and jerk up and down under the influence of sunshine -12518305 20 n 02 Colutea 0 genus_Colutea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12518481 n 0000 | small genus of Eurasian shrubs with yellow flowers and bladdery pods -12518481 20 n 02 bladder_senna 0 Colutea_arborescens 0 002 @ 13112664 n 0000 #m 12518305 n 0000 | yellow-flowered European shrub cultivated for its succession of yellow flowers and very inflated bladdery pods and as a source of wildlife food -12518725 20 n 01 genus_Coronilla 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12518879 n 0000 %m 12519089 n 0000 | genus of Old World shrubs and herbs -12518879 20 n 01 coronilla 0 003 @ 13112664 n 0000 #m 12518725 n 0000 ~ 12519089 n 0000 | any of various plants of the genus Coronilla having purple or pink or yellow flowers in long axillary heads or umbels -12519089 20 n 03 axseed 0 crown_vetch 0 Coronilla_varia 0 002 @ 12518879 n 0000 #m 12518725 n 0000 | European herb resembling vetch; naturalized in the eastern United States; having umbels of pink-and-white flowers and sharp-angled pods -12519328 20 n 01 genus_Crotalaria 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12519563 n 0000 %m 12519824 n 0000 %m 12520015 n 0000 | large genus of herbs with simple leaves and racemes of yellow flowers; mainly of tropical Africa -12519563 20 n 02 crotalaria 0 rattlebox 0 004 @ 12205694 n 0000 #m 12519328 n 0000 ~ 12519824 n 0000 ~ 12520015 n 0000 | any of various plants of the genus Crotalaria having inflated pods within which the seeds rattle; used for pasture and green-manure crops -12519824 20 n 02 American_rattlebox 0 Crotalaria_sagitallis 0 002 @ 12519563 n 0000 #m 12519328 n 0000 | tropical American annual herb having an inflated pod in which the ripe seeds rattle -12520015 20 n 02 Indian_rattlebox 0 Crotalaria_spectabilis 0 002 @ 12519563 n 0000 #m 12519328 n 0000 | erect subshrub having purple-tinted flowers and an inflated pod in which the ripe seeds rattle; India -12520223 20 n 02 Cyamopsis 0 genus_Cyamopsis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12520406 n 0000 | small genus of annual usually hairy herbs of tropical Africa and Arabia -12520406 20 n 04 guar 0 cluster_bean 0 Cyamopsis_tetragonolobus 0 Cyamopsis_psoraloides 0 002 @ 11747468 n 0000 #m 12520223 n 0000 | drought-tolerant herb grown for forage and for its seed which yield a gum used as a thickening agent or sizing material -12520661 20 n 02 Cytisus 0 genus_Cytisus 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12521186 n 0000 %m 12521394 n 0000 | large genus of stiff or spiny evergreen or deciduous Old World shrubs: broom -12520864 20 n 01 broom 0 009 @ 13112664 n 0000 #m 12501745 n 0000 ~ 12514992 n 0000 ~ 12521186 n 0000 ~ 12521394 n 0000 ~ 12530439 n 0000 ~ 12530629 n 0000 ~ 12530818 n 0000 ~ 12571330 n 0000 | any of various shrubs of the genera Cytisus or Genista or Spartium having long slender branches and racemes of yellow flowers -12521186 20 n 04 white_broom 0 white_Spanish_broom 0 Cytisus_albus 0 Cytisus_multiflorus 0 002 @ 12520864 n 0000 #m 12520661 n 0000 | low European broom having trifoliate leaves and yellowish-white flowers -12521394 20 n 04 common_broom 0 Scotch_broom 0 green_broom 0 Cytisus_scoparius 0 002 @ 12520864 n 0000 #m 12520661 n 0000 | deciduous erect spreading broom native to western Europe; widely cultivated for its rich yellow flowers -12521624 20 n 04 witches'_broom 0 witch_broom 0 hexenbesen 0 staghead 0 001 @ 07960769 n 0000 | an abnormal tufted growth of small branches on a tree or shrub caused by fungi or insects or other physiological disturbance -12521847 20 n 02 Dalbergia 0 genus_Dalbergia 0 007 @ 11585340 n 0000 #m 12501745 n 0000 %m 12522678 n 0000 %m 12522894 n 0000 %m 12523141 n 0000 %m 12523475 n 0000 %m 12523850 n 0000 | large genus of tropical trees having pinnate leaves and paniculate flowers and cultivated commercially for their dramatically grained and colored timbers -12522188 20 n 02 rosewood 0 rosewood_tree 0 005 @ 13104059 n 0000 %s 12522493 n 0000 ~ 12522678 n 0000 ~ 12523475 n 0000 ~ 12523698 n 0000 | any of those hardwood trees of the genus Dalbergia that yield rosewood--valuable cabinet woods of a dark red or purplish color streaked and variegated with black -12522493 20 n 01 rosewood 2 003 @ 15098161 n 0000 #s 12522188 n 0000 ~ 12565590 n 0000 | hard dark reddish wood of a rosewood tree having a strongly marked grain; used in cabinetwork -12522678 20 n 05 Indian_blackwood 0 East_Indian_rosewood 0 East_India_rosewood 0 Indian_rosewood 0 Dalbergia_latifolia 0 002 @ 12522188 n 0000 #m 12521847 n 0000 | East Indian tree having a useful dark purple wood -12522894 20 n 04 sissoo 0 sissu 0 sisham 0 Dalbergia_sissoo 0 002 @ 13104059 n 0000 #m 12521847 n 0000 | East Indian tree whose leaves are used for fodder; yields a compact dark brown durable timber used in shipbuilding and making railroad ties -12523141 20 n 03 kingwood 0 kingwood_tree 0 Dalbergia_cearensis 0 003 @ 13104059 n 0000 #m 12521847 n 0000 %s 12523319 n 0000 | Brazilian tree yielding a handsome cabinet wood -12523319 20 n 01 kingwood 2 002 @ 15098161 n 0000 #s 12523141 n 0000 | handsome violet-streaked wood of the kingwood tree; used especially in cabinetwork -12523475 20 n 04 Brazilian_rosewood 0 caviuna_wood 0 jacaranda 0 Dalbergia_nigra 0 002 @ 12522188 n 0000 #m 12521847 n 0000 | an important Brazilian timber tree yielding a heavy hard dark-colored wood streaked with black -12523698 20 n 02 Honduras_rosewood 0 Dalbergia_stevensonii 0 001 @ 12522188 n 0000 | Central American tree yielding a valuable dark streaked rosewood -12523850 20 n 02 cocobolo 0 Dalbergia_retusa 0 003 @ 13104059 n 0000 #m 12521847 n 0000 %s 12524010 n 0000 | a valuable timber tree of tropical South America -12524010 20 n 01 granadilla_wood 2 002 @ 15098161 n 0000 #s 12523850 n 0000 | dark red hardwood derived from the cocobolo and used in making musical instruments e.g. clarinets -12524188 20 n 02 blackwood 0 blackwood_tree 0 005 @ 13104059 n 0000 ~ 11758122 n 0000 ~ 12496949 n 0000 %s 12524395 n 0000 ~ 12915568 n 0000 | any of several hardwood trees yielding very dark-colored wood -12524395 20 n 01 blackwood 2 002 @ 15098161 n 0000 #s 12524188 n 0000 | very dark wood of any of several blackwood trees -12524518 20 n 02 Dalea 0 genus_Dalea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12524633 n 0000 | indigo bush -12524633 20 n 02 smoke_tree 2 Dalea_spinosa 0 002 @ 13112664 n 0000 #m 12524518 n 0000 | greyish-green shrub of desert regions of southwestern United States and Mexico having sparse foliage and terminal spikes of bluish violet flowers; locally important as source of a light-colored honey of excellent flavor -12524944 20 n 02 Daviesia 0 genus_Daviesia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12525168 n 0000 | genus of Australasian shrubs and subshrubs having small yellow or purple flowers followed by short triangular pods -12525168 20 n 01 bitter_pea 0 002 @ 13112664 n 0000 #m 12524944 n 0000 | any of several spiny shrubs of the genus Daviesia having yellow flowers and triangular seeds; Australia -12525347 20 n 01 genus_Derris 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12525513 n 0000 %m 12525753 n 0000 | genus of Old World tropical shrubs and woody vines -12525513 20 n 01 derris 0 002 @ 13112664 n 0000 #m 12525347 n 0000 | any of various usually woody vines of the genus Derris of tropical Asia whose roots yield the insecticide rotenone; several are sources of native fish and arrow poisons -12525753 20 n 03 derris_root 0 tuba_root 0 Derris_elliptica 0 002 @ 13100677 n 0000 #m 12525347 n 0000 | woody vine having bright green leaves and racemes of rose-tinted white flowers; the swollen roots contain rotenone -12525975 20 n 02 Desmanthus 0 genus_Desmanthus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12526178 n 0000 | genus of American herbs or shrubs with sensitive pinnate leaves and small whitish flowers -12526178 20 n 03 prairie_mimosa 0 prickle-weed 0 Desmanthus_ilinoensis 0 002 @ 12205694 n 0000 #m 12525975 n 0000 | perennial herb of North American prairies having dense heads of small white flowers -12526380 20 n 02 Desmodium 0 genus_Desmodium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12526516 n 0000 | beggarweed; tick trefoil -12526516 20 n 03 tick_trefoil 0 beggar_lice 2 beggar's_lice 2 003 @ 13118707 n 0000 #m 12526380 n 0000 ~ 12526754 n 0000 | any of various tropical and subtropical plants having trifoliate leaves and rough sticky pod sections or loments -12526754 20 n 03 beggarweed 0 Desmodium_tortuosum 0 Desmodium_purpureum 0 001 @ 12526516 n 0000 | West Indian forage plant cultivated in southern United States as forage and to improve soil -12526946 20 n 02 Dipogon 0 genus_Dipogon 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12527081 n 0000 | one species: Australian pea -12527081 20 n 03 Australian_pea 0 Dipogon_lignosus 0 Dolichos_lignosus 0 002 @ 13100677 n 0000 #m 12526946 n 0000 | South African evergreen partly woody vine grown for its clusters of rosy purple flowers followed by edible pods like snap beans; also grown as green manure; sometimes placed in genus Dolichos -12527391 20 n 02 Dolichos 0 genus_Dolichos 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | genus of chiefly tropical vines often placed in genera Dipogon or Lablab or Macrotyloma -12527569 20 n 01 genus_Erythrina 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12527738 n 0000 | genus of attractive tropical shrubs or trees with usually red flowers -12527738 20 n 02 coral_tree 0 erythrina 0 008 @ 13104059 n 0000 #m 12527569 n 0000 ~ 12528109 n 0000 ~ 12528382 n 0000 ~ 12528549 n 0000 ~ 12528768 n 0000 ~ 12528974 n 0000 ~ 12529220 n 0000 | any of various shrubs or shrubby trees of the genus Erythrina having trifoliate leaves and racemes of scarlet to coral red flowers and black seeds; cultivated as an ornamental -12528109 20 n 03 kaffir_boom 1 Cape_kafferboom 0 Erythrina_caffra 0 001 @ 12527738 n 0000 | small semi-evergreen broad-spreading tree of eastern South Africa with orange-scarlet flowers and small coral-red seeds; yields a light soft wood used for fence posts or shingles -12528382 20 n 02 coral_bean_tree 0 Erythrina_corallodendrum 0 001 @ 12527738 n 0000 | deciduous shrub having racemes of deep red flowers and black-spotted red seeds -12528549 20 n 05 ceibo 0 crybaby_tree 0 cry-baby_tree 0 common_coral_tree 0 Erythrina_crista-galli 0 001 @ 12527738 n 0000 | small South American spiny tree with dark crimson and scarlet flowers solitary or clustered -12528768 20 n 03 kaffir_boom 2 Transvaal_kafferboom 0 Erythrina_lysistemon 0 001 @ 12527738 n 0000 | small semi-evergreen tree of South Africa having dense clusters of clear scarlet flowers and red seeds -12528974 20 n 03 Indian_coral_tree 0 Erythrina_variegata 0 Erythrina_Indica 0 001 @ 12527738 n 0000 | small to medium-sized thorny tree of tropical Asia and northern Australia having dense clusters of scarlet or crimson flowers and black seeds -12529220 20 n 02 cork_tree 1 Erythrina_vespertilio 0 001 @ 12527738 n 0000 | prickly Australian coral tree having soft spongy wood -12529353 20 n 02 Galega 0 genus_Galega 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12529500 n 0000 | small genus of Eurasian herbs: goat's rue -12529500 20 n 03 goat's_rue 1 goat_rue 0 Galega_officinalis 0 002 @ 12205694 n 0000 #m 12529353 n 0000 | tall bushy European perennial grown for its pinnate foliage and slender spikes of blue flowers; sometimes used medicinally -12529730 20 n 01 genus_Gastrolobium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12529905 n 0000 | genus of Australian evergreen shrubs poisonous to livestock: poison bush -12529905 20 n 03 poison_bush 2 poison_pea 2 gastrolobium 0 002 @ 13112664 n 0000 #m 12529730 n 0000 | any of various Australian evergreen shrubs of the genus Gastrolobium having whorled compound leaves poisonous to livestock and showy yellow to deep reddish-orange flowers followed by two-seeded pods -12530208 20 n 02 Genista 0 genus_Genista 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12530439 n 0000 %m 12530629 n 0000 %m 12530818 n 0000 | chiefly deciduous shrubs or small trees of Mediterranean area and western Asia: broom -12530439 20 n 04 broom_tree 0 needle_furze 0 petty_whin 0 Genista_anglica 0 002 @ 12520864 n 0000 #m 12530208 n 0000 | prickly yellow-flowered shrub of the moors of New England and Europe -12530629 20 n 03 Spanish_broom 1 Spanish_gorse 0 Genista_hispanica 0 002 @ 12520864 n 0000 #m 12530208 n 0000 | erect shrub of southwestern Europe having racemes of golden yellow flowers -12530818 20 n 08 woodwaxen 0 dyer's_greenweed 0 dyer's-broom 0 dyeweed 0 greenweed 0 whin 1 woadwaxen 0 Genista_tinctoria 0 002 @ 12520864 n 0000 #m 12530208 n 0000 | small Eurasian shrub having clusters of yellow flowers that yield a dye; common as a weed in Britain and the United States; sometimes grown as an ornamental -12531144 20 n 02 Geoffroea 0 genus_Geoffroea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12531328 n 0000 | small genus of shrubs or small trees of tropical and subtropical America -12531328 20 n 03 chanar 0 chanal 0 Geoffroea_decorticans 0 002 @ 13112664 n 0000 #m 12531144 n 0000 | thorny shrub or small tree common in central Argentina having small orange or yellow flowers followed by edible berries -12531552 20 n 01 genus_Gliricidia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12531727 n 0000 | small genus of low-branching profusely flowering trees of tropical America -12531727 20 n 01 gliricidia 0 002 @ 13104059 n 0000 #m 12531552 n 0000 | any of several small deciduous trees valued for their dark wood and dense racemes of nectar-rich pink flowers grown in great profusion on arching branches; roots and bark and leaves and seeds are poisonous -12532008 20 n 02 Glycine 0 genus_Glycine 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12532168 n 0000 | genus of Asiatic erect or sprawling herbs: soya bean -12532168 20 n 08 soy 0 soya 0 soybean 0 soya_bean 0 soybean_plant 0 soja 0 soja_bean 0 Glycine_max 0 004 @ 11747468 n 0000 #m 12532008 n 0000 %p 07729485 n 0000 %p 12532564 n 0000 | erect bushy hairy annual herb having trifoliate leaves and purple to pink flowers; extensively cultivated for food and forage and soil improvement but especially for its nutritious oil-rich seeds; native to Asia -12532564 20 n 03 soy 2 soybean 2 soya_bean 2 002 @ 13136316 n 0000 #p 12532168 n 0000 | a source of oil; used for forage and soil improvement and as food -12532720 20 n 02 Glycyrrhiza 0 genus_Glycyrrhiza 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12532886 n 0000 %m 12533190 n 0000 | sticky perennial Eurasian herbs -12532886 20 n 03 licorice 0 liquorice 0 Glycyrrhiza_glabra 0 003 @ 12205694 n 0000 #m 12532720 n 0000 %p 12533437 n 0000 | deep-rooted coarse-textured plant native to the Mediterranean region having blue flowers and pinnately compound leaves; widely cultivated in Europe for its long thick sweet roots -12533190 20 n 05 wild_licorice 1 wild_liquorice 1 American_licorice 0 American_liquorice 0 Glycyrrhiza_lepidota 0 002 @ 12205694 n 0000 #m 12532720 n 0000 | North American plant similar to true licorice and having a root with similar properties -12533437 20 n 01 licorice_root 0 002 @ 13125117 n 0000 #p 12532886 n 0000 | root of licorice used in flavoring e.g. candy and liqueurs and medicines -12533588 20 n 02 Halimodendron 0 genus_Halimodendron 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12533730 n 0000 | one species: salt tree -12533730 20 n 03 salt_tree 0 Halimodendron_halodendron 0 Halimodendron_argenteum 0 002 @ 13112664 n 0000 #m 12533588 n 0000 | spiny shrub of the Caspian salt plains and Siberia having elegant silvery, downy young foliage and mildly fragrant pink-purple blooms -12533992 20 n 02 Hardenbergia 0 genus_Hardenbergia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12534208 n 0000 | small genus of Australian woody vines with small violet flowers; closely related to genus Kennedia -12534208 20 n 02 Western_Australia_coral_pea 0 Hardenbergia_comnptoniana 0 002 @ 13100677 n 0000 #m 12533992 n 0000 | vigorous climber of the forests of western Australia; grown for their dense racemes of attractive bright rose-purple flowers -12534453 20 n 02 Hedysarum 0 genus_Hedysarum 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12534625 n 0000 %m 12534862 n 0000 | genus of herbs of north temperate regions -12534625 20 n 02 sweet_vetch 0 Hedysarum_boreale 0 002 @ 13118707 n 0000 #m 12534453 n 0000 | perennial of western United States having racemes of pink to purple flowers followed by flat pods that separate into nearly orbicular joints -12534862 20 n 03 French_honeysuckle 1 sulla 0 Hedysarum_coronarium 0 002 @ 13118707 n 0000 #m 12534453 n 0000 | perennial of southern Europe cultivated for forage and for its nectar-rich pink flowers that make it an important honey crop -12535101 20 n 02 Hippocrepis 0 genus_Hippocrepis 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | species of Old World herbs or subshrubs: horseshoe vetch -12535254 20 n 02 horseshoe_vetch 0 Hippocrepis_comosa 0 001 @ 13118707 n 0000 | European woody perennial with yellow umbellate flowers followed by flattened pods that separate into horseshoe-shaped joints -12535461 20 n 01 genus_Hovea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12535593 n 0000 | genus of Australian evergreen shrubs -12535593 20 n 02 hovea 0 purple_pea 0 002 @ 13112664 n 0000 #m 12535461 n 0000 | any of several attractive evergreen shrubs of Australia grown for their glossy deep green foliage and flowers in rich blues and intense violets -12535820 20 n 02 Indigofera 0 genus_Indigofera 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12536040 n 0000 | genus of tropical herbs and shrubs having odd-pinnate leaves and spurred flowers in long racemes or spikes -12536040 20 n 03 indigo 0 indigo_plant 0 Indigofera_tinctoria 0 003 @ 13112664 n 0000 #m 12535820 n 0000 ~ 12536291 n 0000 | deciduous subshrub of southeastern Asia having pinnate leaves and clusters of red or purple flowers; a source of indigo dye -12536291 20 n 03 anil 0 Indigofera_suffruticosa 0 Indigofera_anil 0 001 @ 12536040 n 0000 | shrub of West Indies and South America that is a source of indigo dye -12536455 20 n 02 Jacksonia 0 genus_Jacksonia 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | genus of yellow-flowered Australian unarmed or spiny shrubs without true leaves but having leaflike stems or branches -12536665 20 n 04 Kennedia 0 genus_Kennedia 0 Kennedya 0 genus_Kennedya 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12536871 n 0000 | genus of Australian woody vines having showy red or purplish flowers -12536871 20 n 01 coral_pea 0 004 @ 13100677 n 0000 #m 12536665 n 0000 ~ 12537068 n 0000 ~ 12537253 n 0000 | any of various Australian climbing plants of the genus Kennedia having scarlet flowers -12537068 20 n 02 coral_vine 2 Kennedia_coccinea 0 001 @ 12536871 n 0000 | prostrate or twining woody vine with small leathery leaves and umbels of red flowers; Australia and Tasmania -12537253 20 n 03 scarlet_runner 2 running_postman 0 Kennedia_prostrata 0 001 @ 12536871 n 0000 | hairy trailing or prostrate western Australian vine with bright scarlet-pink flowers -12537437 20 n 02 Lablab 0 genus_Lablab 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12537569 n 0000 | one species: hyacinth bean -12537569 20 n 06 hyacinth_bean 0 bonavist 0 Indian_bean 1 Egyptian_bean 0 Lablab_purpureus 0 Dolichos_lablab 0 002 @ 13100677 n 0000 #m 12537437 n 0000 | perennial twining vine of Old World tropics having trifoliate leaves and racemes of fragrant purple pea-like flowers followed by maroon pods of edible seeds; grown as an ornamental and as a vegetable on the Indian subcontinent; sometimes placed in genus Dolichos -12537988 20 n 02 Laburnum 0 genus_Laburnum 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12538209 n 0000 %m 12538380 n 0000 | flowering shrubs or trees having bright yellow flowers; all parts of the plant are poisonous -12538209 20 n 03 Scotch_laburnum 0 Alpine_golden_chain 0 Laburnum_alpinum 0 002 @ 13120003 n 0000 #m 12537988 n 0000 | an ornamental shrub or tree of the genus Laburnum -12538380 20 n 04 common_laburnum 0 golden_chain 0 golden_rain 0 Laburnum_anagyroides 0 002 @ 13120003 n 0000 #m 12537988 n 0000 | an ornamental shrub or tree of the genus Laburnum; often cultivated for Easter decorations -12538603 20 n 02 Lathyrus 0 genus_Lathyrus 0 017 @ 11585340 n 0000 #m 12501745 n 0000 %m 12539074 n 0000 %m 12539832 n 0000 %m 12540001 n 0000 %m 12540250 n 0000 %m 12540488 n 0000 %m 12540647 n 0000 %m 12540800 n 0000 %m 12540966 n 0000 %m 12541157 n 0000 %m 12541403 n 0000 %m 12541606 n 0000 %m 12541805 n 0000 %m 12542043 n 0000 %m 12542240 n 0000 %m 12542466 n 0000 | genus of climbing herbs of Old World and temperate North and South America: vetchling; wild pea -12539074 20 n 01 vetchling 0 006 @ 13100677 n 0000 #m 12538603 n 0000 ~ 12540488 n 0000 ~ 12540647 n 0000 ~ 12541403 n 0000 ~ 12542466 n 0000 | any of various small plants of the genus Lathyrus; climb usually by means of tendrils -12539306 20 n 01 wild_pea 0 008 @ 11747468 n 0000 #m 11746776 n 0000 ~ 12539564 n 0000 ~ 12540250 n 0000 ~ 12540966 n 0000 ~ 12541157 n 0000 ~ 12541606 n 0000 ~ 12542043 n 0000 | any of various plants of the family Leguminosae that usually grow like vines -12539564 20 n 05 singletary_pea 0 Caley_pea 0 rough_pea 0 wild_winterpea 0 Lathyrus_hirsutus 0 001 @ 12539306 n 0000 | a weak-stemmed winter annual native to Mediterranean region for long established in southern United States; cultivated as a cover and pasture crop -12539832 20 n 01 everlasting_pea 0 004 @ 13100677 n 0000 #m 12538603 n 0000 ~ 12540001 n 0000 ~ 12541805 n 0000 | any of several perennial vines of the genus Lathyrus -12540001 20 n 03 broad-leaved_everlasting_pea 0 perennial_pea 0 Lathyrus_latifolius 0 002 @ 12539832 n 0000 #m 12538603 n 0000 | perennial climber of central and southern Europe having purple or pink or white flowers; naturalized in North America -12540250 20 n 04 beach_pea 0 sea_pea 0 Lathyrus_maritimus 0 Lathyrus_japonicus 0 002 @ 12539306 n 0000 #m 12538603 n 0000 | wild pea of seashores of north temperate zone having tough roots and purple flowers and useful as a sand binder -12540488 20 n 02 black_pea 0 Lathyrus_niger 0 002 @ 12539074 n 0000 #m 12538603 n 0000 | perennial of Europe and North Africa; foliage turns black in drying -12540647 20 n 03 grass_vetch 0 grass_vetchling 0 Lathyrus_nissolia 0 002 @ 12539074 n 0000 #m 12538603 n 0000 | annual European vetch with red flowers -12540800 20 n 03 sweet_pea 0 sweetpea 0 Lathyrus_odoratus 0 002 @ 13100677 n 0000 #m 12538603 n 0000 | climbing garden plant having fragrant pastel-colored flowers -12540966 20 n 02 marsh_pea 0 Lathyrus_palustris 0 002 @ 12539306 n 0000 #m 12538603 n 0000 | scrambling perennial of damp or marshy areas of Eurasia and North America with purplish flowers -12541157 20 n 04 common_vetchling 0 meadow_pea 0 yellow_vetchling 0 Lathyrus_pratensis 0 002 @ 12539306 n 0000 #m 12538603 n 0000 | scrambling perennial Eurasian wild pea having yellowish flowers and compressed seed pods; cultivated for forage -12541403 20 n 04 grass_pea 0 Indian_pea 0 khesari 0 Lathyrus_sativus 0 002 @ 12539074 n 0000 #m 12538603 n 0000 | European annual grown for forage; seeds used for food in India and for stock elsewhere -12541606 20 n 02 pride_of_California 0 Lathyrus_splendens 0 002 @ 12539306 n 0000 #m 12538603 n 0000 | shrubby California perennial having large pink or violet flowers; cultivated as an ornamental -12541805 20 n 03 flat_pea 1 narrow-leaved_everlasting_pea 0 Lathyrus_sylvestris 0 002 @ 12539832 n 0000 #m 12538603 n 0000 | European perennial with mottled flowers of purple and pink; sometimes cultivated for fodder or as green manure -12542043 20 n 03 Tangier_pea 0 Tangier_peavine 0 Lalthyrus_tingitanus 0 002 @ 12539306 n 0000 #m 12538603 n 0000 | North African annual resembling the sweet pea having showy but odorless flowers -12542240 20 n 05 heath_pea 0 earth-nut_pea 0 earthnut_pea 0 tuberous_vetch 0 Lathyrus_tuberosus 0 002 @ 13100677 n 0000 #m 12538603 n 0000 | European herb bearing small tubers used for food and in Scotland to flavor whiskey -12542466 20 n 03 spring_vetchling 0 spring_vetch 2 Lathyrus_vernus 0 002 @ 12539074 n 0000 #m 12538603 n 0000 | bushy European perennial having nodding racemose violet-blue flowers -12542649 20 n 01 genus_Lespedeza 0 007 @ 11585340 n 0000 #m 12501745 n 0000 %m 12542910 n 0000 %m 12543186 n 0000 %m 12543455 n 0000 %m 12543639 n 0000 %m 12543826 n 0000 | genus of shrubs or herbs of tropical Asia and Australia and the eastern United States -12542910 20 n 02 bush_clover 0 lespedeza 0 006 @ 13103136 n 0000 #m 12542649 n 0000 ~ 12543186 n 0000 ~ 12543455 n 0000 ~ 12543639 n 0000 ~ 12543826 n 0000 | shrubby or herbaceous plants widely used for forage, soil improvement, and especially hay in southern United States -12543186 20 n 03 bicolor_lespediza 0 ezo-yama-hagi 0 Lespedeza_bicolor 0 002 @ 12542910 n 0000 #m 12542649 n 0000 | Asian shrub having conspicuous racemose rose-purple flowers widely used as an ornamental and in erosion control and as a source of feed for wild birds -12543455 20 n 04 japanese_clover 0 japan_clover 0 jap_clover 0 Lespedeza_striata 0 002 @ 12542910 n 0000 #m 12542649 n 0000 | an annual of tropical Asia naturalized in United States -12543639 20 n 02 Korean_lespedeza 0 Lespedeza_stipulacea 0 002 @ 12542910 n 0000 #m 12542649 n 0000 | annual native to Korea but widely cultivated for forage and hay in hot dry regions -12543826 20 n 03 sericea_lespedeza 0 Lespedeza_sericea 0 Lespedeza_cuneata 0 002 @ 12542910 n 0000 #m 12542649 n 0000 | perennial widely planted as for forage and as hay crop especially on poor land -12544027 20 n 02 Lens 0 genus_Lens 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | genus of small erect or climbing herbs with pinnate leaves and small inconspicuous white flowers and small flattened pods: lentils -12544240 20 n 03 lentil 0 lentil_plant 0 Lens_culinaris 0 003 @ 11747468 n 0000 %p 07725255 n 0000 %p 12544539 n 0000 | widely cultivated Eurasian annual herb grown for its edible flattened seeds that are cooked like peas and also ground into meal and for its leafy stalks that are used as fodder -12544539 20 n 01 lentil 2 002 @ 11748002 n 0000 #p 12544240 n 0000 | the fruit or seed of a lentil plant -12544646 20 n 02 Lonchocarpus 0 genus_Lonchocarpus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12544862 n 0000 | genus of chiefly tropical American shrubs and trees having pinnate leaves and red or white flowers -12544862 20 n 01 cube 0 002 @ 13118707 n 0000 #m 12544646 n 0000 | any of several tropical American woody plants of the genus Lonchocarpus whose roots are used locally as a fish poison and commercially as a source of rotenone -12545090 20 n 02 Lotus 3 genus_Lotus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12545635 n 0000 | annual or perennial herbs or subshrubs -12545232 20 n 05 prairie_bird's-foot_trefoil 0 compass_plant 4 prairie_lotus 0 prairie_trefoil 0 Lotus_americanus 0 001 @ 13118707 n 0000 | North American annual with red or rose-colored flowers -12545429 20 n 02 coral_gem 0 Lotus_berthelotii 0 001 @ 13118707 n 0000 | low-growing much-branched perennial of Canary Islands having orange-red to scarlet or purple flowers; naturalized in United States -12545635 20 n 05 bird's_foot_trefoil 1 bird's_foot_clover 0 babies'_slippers 0 bacon_and_eggs 0 Lotus_corniculatus 0 002 @ 13118707 n 0000 #m 12545090 n 0000 | European forage plant having claw-shaped pods introduced in America -12545865 20 n 03 winged_pea 1 asparagus_pea 0 Lotus_tetragonolobus 0 001 @ 12205694 n 0000 | sprawling European annual having a 4-winged edible pod -12546015 20 n 02 Lupinus 0 genus_Lupinus 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12546183 n 0000 %m 12546617 n 0000 %m 12546962 n 0000 | herbs or shrubs: lupin -12546183 20 n 02 lupine 0 lupin 0 006 @ 13103136 n 0000 #m 12546015 n 0000 ~ 12546420 n 0000 ~ 12546832 n 0000 ~ 12547215 n 0000 ~ 12547503 n 0000 | any plant of the genus Lupinus; bearing erect spikes of usually purplish-blue flowers -12546420 20 n 05 white_lupine 0 field_lupine 0 wolf_bean 0 Egyptian_lupine 0 Lupinus_albus 0 001 @ 12546183 n 0000 | white-flowered Eurasian herb widely cultivated for forage and erosion control -12546617 20 n 02 tree_lupine 0 Lupinus_arboreus 0 002 @ 13112664 n 0000 #m 12546015 n 0000 | evergreen shrub of the Pacific coast of the United States having showy yellow or blue flowers; naturalized in Australia -12546832 20 n 02 yellow_lupine 0 Lupinus_luteus 0 001 @ 12546183 n 0000 | yellow-flowered European lupine cultivated for forage -12546962 20 n 05 wild_lupine 0 sundial_lupine 0 Indian_beet 0 old-maid's_bonnet 0 Lupinus_perennis 0 002 @ 13118707 n 0000 #m 12546015 n 0000 | stout perennial of eastern and central North America having palmate leaves and showy racemose blue flowers -12547215 20 n 04 bluebonnet 0 buffalo_clover 3 Texas_bluebonnet 1 Lupinus_subcarnosus 0 001 @ 12546183 n 0000 | low-growing annual herb of southwestern United States (Texas) having silky foliage and blue flowers; a leading cause of livestock poisoning in the southwestern United States -12547503 20 n 02 Texas_bluebonnet 2 Lupinus_texensis 0 001 @ 12546183 n 0000 | closely resembles Lupinus subcarnosus; southwestern United States (Texas) -12547658 20 n 02 Macrotyloma 0 genus_Macrotyloma 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12547872 n 0000 | annual or perennial vines of Africa and India and Australia; plants often placed in genus Dolichos -12547872 20 n 05 horse_gram 0 horse_grain 0 poor_man's_pulse 0 Macrotyloma_uniflorum 0 Dolichos_biflorus 0 002 @ 11747468 n 0000 #m 12547658 n 0000 | twining herb of Old World tropics cultivated in India for food and fodder; sometimes placed in genus Dolichos -12548134 20 n 02 Medicago 0 genus_Medicago 0 003 @ 11585340 n 0000 @ 12501745 n 0000 %m 12548280 n 0000 | a genus of herbs that resemble clover -12548280 20 n 03 medic 0 medick 0 trefoil 2 007 @ 12205694 n 0000 #m 12548134 n 0000 ~ 12548564 n 0000 ~ 12548804 n 0000 ~ 12549005 n 0000 ~ 12549192 n 0000 ~ 12549420 n 0000 | any of several Old World herbs of the genus Medicago having small flowers and trifoliate compound leaves -12548564 20 n 02 moon_trefoil 0 Medicago_arborea 0 001 @ 12548280 n 0000 | evergreen shrub of southern European highlands having downy foliage and a succession of yellow flowers throughout the summer followed by curious snail-shaped pods -12548804 20 n 04 sickle_alfalfa 0 sickle_lucerne 0 sickle_medick 0 Medicago_falcata 0 001 @ 12548280 n 0000 | European medic naturalized in North America having yellow flowers and sickle-shaped pods -12549005 20 n 03 Calvary_clover 0 Medicago_intertexta 0 Medicago_echinus 0 001 @ 12548280 n 0000 | an annual of the Mediterranean area having spiny seed pods and leaves with dark spots -12549192 20 n 05 black_medick 0 hop_clover 2 yellow_trefoil 0 nonesuch_clover 0 Medicago_lupulina 0 001 @ 12548280 n 0000 | prostrate European herb with small yellow flowers and curved black pods; naturalized in North America -12549420 20 n 03 alfalfa 0 lucerne 0 Medicago_sativa 0 002 @ 12548280 n 0000 %p 07801779 n 0000 | important European leguminous forage plant with trifoliate leaves and blue-violet flowers grown widely as a pasture and hay crop -12549649 20 n 01 genus_Millettia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12549799 n 0000 | genus of trees and shrubs of the Old World tropics -12549799 20 n 01 millettia 1 002 @ 13104059 n 0000 #m 12549649 n 0000 | any of several tropical trees or shrubs yielding showy streaked dark reddish or chocolate-colored wood -12549976 20 n 03 genus_Mucuna 0 Stizolobium 0 genus_Stizolobium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12550210 n 0000 | genus of tropical herbs and woody vines having trifoliate leaves and showy flowers in axillary clusters -12550210 20 n 01 mucuna 0 003 @ 13112664 n 0000 #m 12549976 n 0000 ~ 12550408 n 0000 | any of several erect or climbing woody plants of the genus Mucuna; widespread in tropics of both hemispheres -12550408 20 n 09 cowage 1 velvet_bean 0 Bengal_bean 0 Benghal_bean 0 Florida_bean 0 Mucuna_pruriens_utilis 0 Mucuna_deeringiana 0 Mucuna_aterrima 0 Stizolobium_deeringiana 0 002 @ 12550210 n 0000 %p 12550788 n 0000 | the annual woody vine of Asia having long clusters of purplish flowers and densely hairy pods; cultivated in southern United States for green manure and grazing -12550788 20 n 01 cowage 2 002 @ 13139055 n 0000 #p 12550408 n 0000 | pods of the cowage plant or the stinging hairs covering them; used as a vermifuge when mixed with e.g. honey -12550968 20 n 02 Myroxylon 0 genus_Myroxylon 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12551173 n 0000 %m 12551457 n 0000 | a genus of tropical American trees having pinnate leaves and white flowers -12551173 20 n 04 tolu_tree 0 tolu_balsam_tree 0 Myroxylon_balsamum 0 Myroxylon_toluiferum 0 003 @ 13104059 n 0000 #m 12550968 n 0000 %s 12551669 n 0000 | medium-sized tropical American tree yielding tolu balsam and a fragrant hard wood used for high-grade furniture and cabinetwork -12551457 20 n 03 Peruvian_balsam 0 Myroxylon_pereirae 0 Myroxylon_balsamum_pereirae 0 003 @ 13104059 n 0000 #m 12550968 n 0000 %s 12551877 n 0000 | tree of South and Central America yielding an aromatic balsam -12551669 20 n 03 tolu 0 balsam_of_tolu 0 tolu_balsam 0 003 @ 14896714 n 0000 #s 12551173 n 0000 ~ 12551877 n 0000 | aromatic yellowish brown balsam from the tolu balsam tree used especially in cough syrups -12551877 20 n 01 balsam_of_Peru 0 002 @ 12551669 n 0000 #s 12551457 n 0000 | dark brown syrupy balsam from the Peruvian balsam tree used especially in dressing wounds and treating certain skin diseases -12552081 20 n 02 Onobrychis 0 genus_Onobrychis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12552309 n 0000 | genus of Old World herbs having pinnate leaves and pink or whites racemose flowers followed by flat unjointed pods -12552309 20 n 06 sainfoin 0 sanfoin 0 holy_clover 0 esparcet 0 Onobrychis_viciifolia 0 Onobrychis_viciaefolia 0 002 @ 12205694 n 0000 #m 12552081 n 0000 | Eurasian perennial herb having pale pink flowers and curved pods; naturalized in Britain and North America grasslands on calcareous soils; important forage crop and source of honey in Britain -12552658 20 n 02 Ononis 0 genus_Ononis 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12552893 n 0000 %m 12553114 n 0000 | genus of European subshrubs or herbs having pink or purple or yellow solitary or clustered flowers: restharrow -12552893 20 n 03 restharrow 1 rest-harrow 1 Ononis_repens 0 002 @ 13118707 n 0000 #m 12552658 n 0000 | European woody plant having pink flowers and unifoliate leaves and long tough roots; spreads by underground runners -12553114 20 n 03 restharrow 2 rest-harrow 2 Ononis_spinosa 0 002 @ 13118707 n 0000 #m 12552658 n 0000 | Eurasian plant having loose racemes of pink or purple flowers and spiny stems and tough roots -12553314 20 n 02 Ormosia 0 genus_Ormosia 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12553573 n 0000 %m 12553742 n 0000 %m 12554029 n 0000 | genus of tropical shrubs and trees having usually odd-pinnate leaves with large leaflets and pink to reddish wood -12553573 20 n 01 necklace_tree 0 004 @ 13104059 n 0000 #m 12553314 n 0000 ~ 12553742 n 0000 ~ 12554029 n 0000 | a tree of the genus Ormosia having seeds used as beads -12553742 20 n 04 bead_tree 0 jumby_bean 0 jumby_tree 0 Ormosia_monosperma 0 002 @ 12553573 n 0000 #m 12553314 n 0000 | small tree of West Indies and northeastern Venezuela having large oblong pointed leaflets and panicles of purple flowers; seeds are black or scarlet with black spots -12554029 20 n 03 jumby_bead 0 jumbie_bead 0 Ormosia_coarctata 0 002 @ 12553573 n 0000 #m 12553314 n 0000 | West Indian tree similar to Ormosia monosperma but larger and having smaller leaflets and smaller seeds -12554242 20 n 02 Oxytropis 0 genus_Oxytropis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12554526 n 0000 | large widely-distributed genus of evergreen shrubs or subshrubs having odd-pinnate leaves and racemose or spicate flowers each having a pea-like corolla with a clawed petal -12554526 20 n 03 locoweed 0 crazyweed 0 crazy_weed 0 003 @ 11747468 n 0000 #m 12554242 n 0000 ~ 12554729 n 0000 | any of several leguminous plants of western North America causing locoism in livestock -12554729 20 n 03 purple_locoweed 0 purple_loco 0 Oxytropis_lambertii 0 001 @ 12554526 n 0000 | tufted locoweed of southwestern United States having purple or pink to white flowers -12554911 20 n 01 tumbleweed 0 001 @ 13085113 n 0000 | any plant that breaks away from its roots in autumn and is driven by the wind as a light rolling mass -12555069 20 n 02 Pachyrhizus 0 genus_Pachyrhizus 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12555255 n 0000 %m 12555553 n 0000 | small genus of tropical vines having tuberous roots -12555255 20 n 02 yam_bean 1 Pachyrhizus_erosus 0 002 @ 13100677 n 0000 #m 12555069 n 0000 | Central American twining plant with edible roots and pods; large tubers are eaten raw or cooked especially when young and young pods must be thoroughly cooked; pods and seeds also yield rotenone and oils -12555553 20 n 03 yam_bean 2 potato_bean 2 Pachyrhizus_tuberosus 0 002 @ 13100677 n 0000 #m 12555069 n 0000 | twining plant of Amazon basin having large edible roots -12555720 20 n 02 Parochetus 0 genus_Parochetus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12555859 n 0000 | one species: shamrock pea -12555859 20 n 02 shamrock_pea 0 Parochetus_communis 0 002 @ 12205694 n 0000 #m 12555720 n 0000 | trailing trifoliate Asiatic and African herb having cobalt blue flowers -12556030 20 n 02 Phaseolus 0 genus_Phaseolus 0 009 @ 11585340 n 0000 #m 12501745 n 0000 %m 12556793 n 0000 %m 12557064 n 0000 %m 12557280 n 0000 %m 12557556 n 0000 %m 12558230 n 0000 %m 12558425 n 0000 %m 12558680 n 0000 | herbs of warm regions including most American beans -12556307 20 n 02 bean 0 bean_plant 0 006 @ 11747468 n 0000 #m 11746776 n 0000 %p 07724943 n 0000 ~ 12556533 n 0000 ~ 12556656 n 0000 ~ 12557995 n 0000 | any of various leguminous plants grown for their edible seeds and pods -12556533 20 n 01 bush_bean 0 002 @ 12556307 n 0000 ~ 12556793 n 0000 | a bean plant whose bushy growth needs no supports -12556656 20 n 01 pole_bean 0 002 @ 12556307 n 0000 ~ 12557681 n 0000 | a climbing bean plant that will climb a wall or tree or trellis -12556793 20 n 03 common_bean 0 common_bean_plant 0 Phaseolus_vulgaris 0 006 @ 12556533 n 0000 #m 12556030 n 0000 %p 07726796 n 0000 ~ 12557064 n 0000 ~ 12557280 n 0000 ~ 12557556 n 0000 | the common annual twining or bushy bean plant grown for its edible seeds or pods -12557064 20 n 03 kidney_bean 0 frijol 0 frijole 0 002 @ 12556793 n 0000 #m 12556030 n 0000 | the common bean plant grown for the beans rather than the pods (especially a variety with large red kidney-shaped beans) -12557280 20 n 01 green_bean 0 003 @ 12556793 n 0000 #m 12556030 n 0000 ~ 12557438 n 0000 | a common bean plant cultivated for its slender green edible pods -12557438 20 n 01 haricot 0 001 @ 12557280 n 0000 | a French variety of green bean plant bearing light-colored beans -12557556 20 n 01 wax_bean 0 002 @ 12556793 n 0000 #m 12556030 n 0000 | a common bean plant grown for its edible golden pod -12557681 20 n 06 scarlet_runner 1 scarlet_runner_bean 0 Dutch_case-knife_bean 0 runner_bean 0 Phaseolus_coccineus 0 Phaseolus_multiflorus 0 001 @ 12556656 n 0000 | tropical American bean with red flowers and mottled black beans similar to Phaseolus vulgaris but perennial; a preferred food bean in Great Britain -12557995 20 n 02 shell_bean 0 shell_bean_plant 0 006 @ 12556307 n 0000 %p 07728804 n 0000 ~ 12558230 n 0000 ~ 12558425 n 0000 ~ 12558680 n 0000 ~ 12576029 n 0000 | a bean plant grown primarily for its edible seed rather than its pod -12558230 20 n 03 lima_bean 1 lima_bean_plant 0 Phaseolus_limensis 0 003 @ 12557995 n 0000 #m 12556030 n 0000 %p 07729000 n 0000 | bush or tall-growing bean plant having large flat edible seeds -12558425 20 n 05 sieva_bean 0 butter_bean 0 butter-bean_plant 0 lima_bean 3 Phaseolus_lunatus 0 003 @ 12557995 n 0000 #m 12556030 n 0000 %p 07729225 n 0000 | bush bean plant cultivated especially in southern United States having small flat edible seeds -12558680 20 n 02 tepary_bean 0 Phaseolus_acutifolius_latifolius 0 002 @ 12557995 n 0000 #m 12556030 n 0000 | twining plant of southwestern United States and Mexico having roundish white or yellow or brown or black beans -12558902 20 n 02 Pickeringia 0 genus_Pickeringia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12559044 n 0000 | one species: chaparral pea -12559044 20 n 03 chaparral_pea 0 stingaree-bush 0 Pickeringia_montana 0 002 @ 13112664 n 0000 #m 12558902 n 0000 | spiny evergreen xerophytic shrub having showy rose and purple flowers and forming dense thickets; of dry rocky mountain slopes of California -12559302 20 n 02 Piscidia 0 genus_Piscidia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12559518 n 0000 | genus of shrubs or small trees having indehiscent pods with black seeds; roots and bark yield fish poisons -12559518 20 n 04 Jamaica_dogwood 0 fish_fuddle 0 Piscidia_piscipula 0 Piscidia_erythrina 0 002 @ 13104059 n 0000 #m 12559302 n 0000 | small tree of West Indies and Florida having large odd-pinnate leaves and panicles of red-striped purple to white flowers followed by decorative curly winged seedpods; yields fish poisons -12559842 20 n 02 Pisum 0 genus_Pisum 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12560016 n 0000 %m 12560420 n 0000 | small genus of variable annual Eurasian vines: peas -12560016 20 n 02 pea 0 pea_plant 0 006 @ 11747468 n 0000 #m 12559842 n 0000 %p 12560282 n 0000 ~ 12560420 n 0000 ~ 12560775 n 0000 ~ 12561309 n 0000 | a leguminous plant of the genus Pisum with small white flowers and long green pods containing edible green seeds -12560282 20 n 01 pea 2 004 @ 11748002 n 0000 #p 12560016 n 0000 ~ 12560621 n 0000 %p 13140242 n 0000 | the fruit or seed of a pea plant -12560420 20 n 04 garden_pea 0 garden_pea_plant 0 common_pea 0 Pisum_sativum 0 003 @ 12560016 n 0000 #m 12559842 n 0000 %p 12560621 n 0000 | plant producing peas usually eaten fresh rather than dried -12560621 20 n 01 garden_pea 2 002 @ 12560282 n 0000 #p 12560420 n 0000 | the flattened to cylindric inflated multi-seeded fruit of the common pea plant -12560775 20 n 03 edible-pod_pea 0 edible-podded_pea 0 Pisum_sativum_macrocarpon 0 003 @ 12560016 n 0000 ~ 12561038 n 0000 ~ 12561169 n 0000 | a variety of pea plant producing peas having soft thick edible pods lacking the fibrous inner lining of the common pea -12561038 20 n 02 snow_pea 0 sugar_pea 0 001 @ 12560775 n 0000 | variety of pea plant producing peas having thin flat edible pods -12561169 20 n 02 sugar_snap_pea 0 snap_pea 0 001 @ 12560775 n 0000 | variety of pea plant producing peas having crisp rounded edible pods -12561309 20 n 05 field_pea 0 field-pea_plant 0 Austrian_winter_pea 0 Pisum_sativum_arvense 0 Pisum_arvense 0 003 @ 12560016 n 0000 %p 07726386 n 0000 %p 12561594 n 0000 | variety of pea plant native to the Mediterranean region and North Africa and widely grown especially for forage -12561594 20 n 01 field_pea 2 002 @ 11748002 n 0000 #p 12561309 n 0000 | seed of the field pea plant -12561696 20 n 02 Platylobium 0 genus_Platylobium 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12561897 n 0000 %m 12562141 n 0000 | small genus of Australian evergreen leguminous shrubs or subshrubs -12561897 20 n 02 flat_pea 2 Platylobium_formosum 0 002 @ 13112664 n 0000 #m 12561696 n 0000 | evergreen shrub having almost heart-shaped foliage and bright yellow pea-like flowers followed by flat pods with flat wings; Australia and Tasmania -12562141 20 n 03 common_flat_pea 0 native_holly 0 Playlobium_obtusangulum 0 002 @ 13112664 n 0000 #m 12561696 n 0000 | low spreading evergreen shrub of southern Australia having triangular to somewhat heart-shaped foliage and orange-yellow flowers followed by flat winged pods -12562420 20 n 02 Platymiscium 0 genus_Platymiscium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12562577 n 0000 | genus of tropical American trees: quira -12562577 20 n 01 quira 1 005 @ 13104059 n 0000 #m 12562420 n 0000 ~ 12562785 n 0000 ~ 12563045 n 0000 %s 12563281 n 0000 | any of several tropical American trees some yielding economically important timber -12562785 20 n 02 roble 2 Platymiscium_trinitatis 0 001 @ 12562577 n 0000 | large tree of Trinidad and Guyana having odd-pinnate leaves and violet-scented axillary racemes of yellow flowers and long smooth pods; grown as a specimen in parks and large gardens -12563045 20 n 03 Panama_redwood_tree 0 Panama_redwood 1 Platymiscium_pinnatum 0 001 @ 12562577 n 0000 | large erect shrub of Colombia having large odd-pinnate leaves with large leaflets and axillary racemes of fragrant yellow flowers -12563281 20 n 02 Panama_redwood 2 quira 2 002 @ 15098161 n 0000 #s 12562577 n 0000 | hard heavy red wood of a quira tree -12563404 20 n 02 Podalyria 0 genus_Podalyria 0 002 @ 11585340 n 0000 #m 12501745 n 0000 | genus of South African leguminous shrubs often placed in genus Sophora -12563567 20 n 02 Pongamia 0 genus_Pongamia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12563702 n 0000 | one species: Indian beech -12563702 20 n 02 Indian_beech 0 Pongamia_glabra 0 002 @ 13104059 n 0000 #m 12563567 n 0000 | evergreen Asiatic tree having glossy pinnate leaves and racemose creamy-white scented flowers; used as a shade tree -12563913 20 n 02 Psophocarpus 0 genus_Psophocarpus 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12564083 n 0000 | species of tropical Asian and African climbing herbs -12564083 20 n 06 winged_bean 0 winged_pea 2 goa_bean 1 goa_bean_vine 0 Manila_bean 0 Psophocarpus_tetragonolobus 0 003 @ 13100677 n 0000 #m 12563913 n 0000 %p 07725158 n 0000 | a tuberous twining annual vine bearing clusters of purplish flowers and pods with four jagged wings; Old World tropics -12564381 20 n 02 Psoralea 0 genus_Psoralea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12564613 n 0000 | widely distributed genus of herbs or shrubs with glandular compound leaves and spicate or racemose purple or white flowers -12564613 20 n 05 breadroot 0 Indian_breadroot 0 pomme_blanche 0 pomme_de_prairie 0 Psoralea_esculenta 0 002 @ 12205694 n 0000 #m 12564381 n 0000 | densely hairy perennial of central North America having edible tuberous roots -12564840 20 n 02 Pterocarpus 0 genus_Pterocarpus 0 007 @ 11585340 n 0000 #m 12501745 n 0000 %m 12565102 n 0000 %m 12565368 n 0000 %m 12565730 n 0000 %m 12565912 n 0000 %m 12566331 n 0000 | genus of tropical trees or climbers having usually broadly winged pods -12565102 20 n 03 bloodwood_tree 2 kiaat 0 Pterocarpus_angolensis 0 002 @ 13104059 n 0000 #m 12564840 n 0000 | deciduous South African tree having large odd-pinnate leaves and profuse fragrant orange-yellow flowers; yields a red juice and heavy strong durable wood -12565368 20 n 04 padauk 1 padouk 1 amboyna 1 Pterocarpus_indicus 0 003 @ 13104059 n 0000 #m 12564840 n 0000 %s 12565590 n 0000 | tree native to southeastern Asia having reddish wood with a mottled or striped black grain -12565590 20 n 02 amboyna 2 Andaman_redwood 0 002 @ 12522493 n 0000 #s 12565368 n 0000 | mottled curly-grained wood of Pterocarpus indicus -12565730 20 n 03 Burma_padauk 0 Burmese_rosewood 0 Pterocarpus_macrocarpus 0 002 @ 13104059 n 0000 #m 12564840 n 0000 | tree of India and Burma yielding a wood resembling mahogany -12565912 20 n 02 kino 1 Pterocarpus_marsupium 0 003 @ 13104059 n 0000 #m 12564840 n 0000 %s 12566112 n 0000 | East Indian tree yielding a resin or extract often used medicinally and in e.g. tanning -12566112 20 n 03 East_India_kino 0 Malabar_kino 0 kino_gum 0 002 @ 14894140 n 0000 #s 12565912 n 0000 | reddish or black juice or resin from certain trees of the genus Pterocarpus and used in medicine and tanning etc -12566331 20 n 05 red_sandalwood 1 red_sanders 0 red_sanderswood 0 red_saunders 0 Pterocarpus_santalinus 0 003 @ 13104059 n 0000 #m 12564840 n 0000 %s 12566627 n 0000 | tree of India and East Indies yielding a hard fragrant timber prized for cabinetwork and dark red heartwood used as a dyewood -12566627 20 n 02 ruby_wood 0 red_sandalwood 3 002 @ 15098161 n 0000 #s 12566331 n 0000 | hard durable wood of red sandalwood trees (Pterocarpus santalinus); prized for cabinetwork -12566809 20 n 02 Pueraria 0 genus_Pueraria 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12566954 n 0000 | genus of woody Asiatic vines: kudzu -12566954 20 n 03 kudzu 0 kudzu_vine 0 Pueraria_lobata 0 002 @ 13100677 n 0000 #m 12566809 n 0000 | fast-growing vine from eastern Asia having tuberous starchy roots and hairy trifoliate leaves and racemes of purple flowers followed by long hairy pods containing many seeds; grown for fodder and forage and root starch; widespread in the southern United States -12567316 20 n 02 Retama 0 genus_Retama 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12567490 n 0000 | small genus of Mediterranean shrubs; often included in genus Genista -12567490 20 n 06 retem 0 raetam 0 juniper_bush 0 juniper 2 Retama_raetam 0 Genista_raetam 0 002 @ 13112664 n 0000 #m 12567316 n 0000 | desert shrub of Syria and Arabia having small white flowers; constitutes the juniper of the Old Testament; sometimes placed in genus Genista -12567768 20 n 02 Robinia 0 genus_Robinia 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12567950 n 0000 %m 12568186 n 0000 %m 12568649 n 0000 | deciduous flowering trees and shrubs -12567950 20 n 04 bristly_locust 0 rose_acacia 0 moss_locust 0 Robinia_hispida 0 002 @ 13112664 n 0000 #m 12567768 n 0000 | large shrub or small tree of the eastern United States having bristly stems and large clusters of pink flowers -12568186 20 n 03 black_locust 0 yellow_locust 0 Robinia_pseudoacacia 0 003 @ 12495146 n 0000 #m 12567768 n 0000 %s 12568506 n 0000 | large thorny tree of eastern and central United States having pinnately compound leaves and drooping racemes of white flowers; widely naturalized in many varieties in temperate regions -12568506 20 n 01 black_locust 2 002 @ 15098161 n 0000 #s 12568186 n 0000 | strong stiff wood of a black-locust tree; very resistant to decay -12568649 20 n 02 clammy_locust 0 Robinia_viscosa 0 002 @ 12495146 n 0000 #m 12567768 n 0000 | small rough-barked locust of southeastern United States having racemes of pink flowers and glutinous branches and seeds -12568865 20 n 02 Sabinea 0 genus_Sabinea 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12569037 n 0000 | small genus of deciduous West Indian trees or shrubs: carib wood -12569037 20 n 02 carib_wood 0 Sabinea_carinalis 0 002 @ 13104059 n 0000 #m 12568865 n 0000 | small Dominican tree bearing masses of large crimson flowers before the fine pinnate foliage emerges -12569233 20 n 01 genus_Sesbania 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12569426 n 0000 %m 12569851 n 0000 | small genus of tropical and subtropical leguminous herbs or shrubs or trees -12569426 20 n 01 sesbania 0 003 @ 11747468 n 0000 #m 12569233 n 0000 ~ 12569616 n 0000 | any of various plants of the genus Sesbania having pinnate leaves and large showy pea-like flowers -12569616 20 n 02 Colorado_River_hemp 0 Sesbania_exaltata 0 001 @ 12569426 n 0000 | tall-growing annual of southwestern United States widely grown as green manure; yields a strong tough bast fiber formerly used by Indians for cordage -12569851 20 n 03 scarlet_wisteria_tree 0 vegetable_hummingbird 0 Sesbania_grandiflora 0 002 @ 13104059 n 0000 #m 12569233 n 0000 | a softwood tree with lax racemes of usually red or pink flowers; tropical Australia and Asia; naturalized in southern Florida and West Indies -12570126 20 n 02 Sophora 0 genus_Sophora 0 005 @ 11585340 n 0000 #m 12501745 n 0000 %m 12570394 n 0000 %m 12570703 n 0000 %m 12570972 n 0000 | cosmopolitan genus of trees and shrubs having odd-pinnate leaves and showy flowers; some species placed in genus Podalyria -12570394 20 n 05 Japanese_pagoda_tree 0 Chinese_scholartree 0 Chinese_scholar_tree 0 Sophora_japonica 0 Sophora_sinensis 0 002 @ 13104059 n 0000 #m 12570126 n 0000 | handsome roundheaded deciduous tree having compound dark green leaves and profuse panicles of fragrant creamy-white flowers; China and Japan -12570703 20 n 05 mescal_bean 0 coral_bean 0 frijolito 0 frijolillo 0 Sophora_secundiflora 0 002 @ 13104059 n 0000 #m 12570126 n 0000 | shrub or small tree having pinnate leaves poisonous to livestock and dense racemes of intensely fragrant blue flowers and red beans -12570972 20 n 02 kowhai 0 Sophora_tetraptera 0 002 @ 13104059 n 0000 #m 12570126 n 0000 | shrub or small tree of New Zealand and Chile having pendulous racemes of tubular golden-yellow flowers; yields a hard strong wood -12571194 20 n 02 Spartium 0 genus_Spartium 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12571330 n 0000 | one species: Spanish broom -12571330 20 n 03 Spanish_broom 2 weaver's_broom 0 Spartium_junceum 0 002 @ 12520864 n 0000 #m 12571194 n 0000 | tall thornless shrub having pale yellow flowers and flexible rushlike twigs used in basketry; of southwestern Europe and Mediterranean; naturalized in California -12571606 20 n 02 Strongylodon 0 genus_Strongylodon 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12571781 n 0000 | genus of Polynesian or southeastern Asian shrubs or vines -12571781 20 n 03 jade_vine 0 emerald_creeper 0 Strongylodon_macrobotrys 0 002 @ 13120211 n 0000 #m 12571606 n 0000 | vigorous Philippine evergreen twining liana; grown for spectacular festoons of green flowers that resemble lobster claws -12572021 20 n 02 Templetonia 0 genus_Templetonia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12572188 n 0000 | genus of Australian shrubs or subshrubs: coral bush -12572188 20 n 03 coral_bush 0 flame_bush 0 Templetonia_retusa 0 002 @ 13112664 n 0000 #m 12572021 n 0000 | Australian shrub having simple obovate leaves and brilliant scarlet flowers -12572373 20 n 02 Tephrosia 0 genus_Tephrosia 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12572546 n 0000 | genus of tropical and subtropical herbs or shrubs: hoary peas -12572546 20 n 01 hoary_pea 0 004 @ 13118707 n 0000 #m 12572373 n 0000 ~ 12572759 n 0000 ~ 12572858 n 0000 | a plant of the genus Tephrosia having pinnate leaves and white or purplish flowers and flat hairy pods -12572759 20 n 02 bastard_indigo 0 Tephrosia_purpurea 0 001 @ 12572546 n 0000 | East Indian shrub -12572858 20 n 04 catgut 0 goat's_rue 2 wild_sweet_pea 0 Tephrosia_virginiana 0 001 @ 12572546 n 0000 | perennial subshrub of eastern North America having downy leaves yellowish and rose flowers and; source of rotenone -12573078 20 n 02 Thermopsis 0 genus_Thermopsis 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12573256 n 0000 | genus of American and Asiatic showy rhizomatous herbs: bush peas -12573256 20 n 01 bush_pea 0 004 @ 12205694 n 0000 #m 12573078 n 0000 ~ 12573474 n 0000 ~ 12573647 n 0000 | any of various plants of the genus Thermopsis having trifoliate leaves and yellow or purple racemose flowers -12573474 20 n 04 false_lupine 0 golden_pea 0 yellow_pea 0 Thermopsis_macrophylla 0 001 @ 12573256 n 0000 | western United States bushy herb having yellow pea-like flowers -12573647 20 n 02 Carolina_lupine 0 Thermopsis_villosa 0 001 @ 12573256 n 0000 | eastern United States bush pea -12573760 20 n 02 Tipuana 0 genus_Tipuana 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12573911 n 0000 | one species: South American tree: tipu tree -12573911 20 n 04 tipu 0 tipu_tree 0 yellow_jacaranda 0 pride_of_Bolivia 0 002 @ 13104059 n 0000 #m 12573760 n 0000 | semi-evergreen South American tree with odd-pinnate leaves and golden yellow flowers cultivated as an ornamental -12574143 20 n 02 Trigonella 0 genus_Trigonella 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12574320 n 0000 %m 12574470 n 0000 | Old World genus of frequently aromatic herbs -12574320 20 n 02 bird's_foot_trefoil 2 Trigonella_ornithopodioides 0 002 @ 12205694 n 0000 #m 12574143 n 0000 | Old World herb related to fenugreek -12574470 20 n 03 fenugreek 0 Greek_clover 0 Trigonella_foenumgraecum 0 003 @ 12205694 n 0000 #m 12574143 n 0000 %p 07818133 n 0000 | annual herb or southern Europe and eastern Asia having off-white flowers and aromatic seeds used medicinally and in curry -12574727 20 n 02 Ulex 0 genus_Ulex 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12574866 n 0000 | genus of Eurasian spiny shrubs: gorse -12574866 20 n 05 gorse 0 furze 0 whin 2 Irish_gorse 0 Ulex_europaeus 0 002 @ 13112664 n 0000 #m 12574727 n 0000 | very spiny and dense evergreen shrub with fragrant golden-yellow flowers; common throughout western Europe -12575089 20 n 02 Vicia 0 genus_Vicia 0 006 @ 11585340 n 0000 #m 12501745 n 0000 %m 12575322 n 0000 %m 12575679 n 0000 %m 12576029 n 0000 %m 12576838 n 0000 | widely distributed genus of annual or perennial and often climbing herbs -12575322 20 n 01 vetch 0 007 @ 11747468 n 0000 #m 12575089 n 0000 ~ 12575679 n 0000 ~ 12575812 n 0000 ~ 12576451 n 0000 ~ 12576555 n 0000 ~ 12576695 n 0000 | any of various climbing plants of the genus Vicia having pinnately compound leaves that terminate in tendrils and small variously colored flowers; includes valuable forage and soil-building plants -12575679 20 n 01 tare 1 003 @ 12575322 n 0000 #m 12575089 n 0000 ~ 12576838 n 0000 | any of several weedy vetches grown for forage -12575812 20 n 04 tufted_vetch 0 bird_vetch 0 Calnada_pea 0 Vicia_cracca 0 001 @ 12575322 n 0000 | common perennial climber of temperate regions of Eurasia and North America having dense elongate clusters of flowers -12576029 20 n 07 broad_bean 0 broad-bean 0 broad-bean_plant 0 English_bean 0 European_bean 0 field_bean 0 Vicia_faba 0 004 @ 12557995 n 0000 #m 12575089 n 0000 %p 07801892 n 0000 %p 12576323 n 0000 | Old World upright plant grown especially for its large flat edible seeds but also as fodder -12576323 20 n 03 broad_bean 2 fava_bean 0 horsebean 2 002 @ 13136316 n 0000 #p 12576029 n 0000 | seed of the broad-bean plant -12576451 20 n 02 bitter_betch 0 Vicia_orobus 0 001 @ 12575322 n 0000 | European perennial toxic vetch -12576555 20 n 02 spring_vetch 1 Vicia_sativa 0 001 @ 12575322 n 0000 | herbaceous climbing plant valuable as fodder and for soil-building -12576695 20 n 02 bush_vetch 0 Vicia_sepium 0 001 @ 12575322 n 0000 | European purple-flowered with slender stems; occurs as a weed in hedges -12576838 20 n 03 hairy_vetch 0 hairy_tare 0 Vicia_villosa 0 002 @ 12575679 n 0000 #m 12575089 n 0000 | European vetch much cultivated as forage and cover crops -12577000 20 n 02 Vigna 0 genus_Vigna 0 008 @ 11585340 n 0000 #m 12501745 n 0000 %m 12577362 n 0000 %m 12577686 n 0000 %m 12577895 n 0000 %m 12578255 n 0000 %m 12578626 n 0000 %m 12579038 n 0000 | genus of vines or erect herbs having trifoliate leaves and yellowish or purplish flowers; of warm or tropical regions; most species often placed in genus Phaseolus -12577362 20 n 03 moth_bean 0 Vigna_aconitifolia 0 Phaseolus_aconitifolius 0 002 @ 11747468 n 0000 #m 12577000 n 0000 | East Indian legume having hairy foliage and small yellow flowers followed by cylindrical pods; used especially in India for food and forage and as a soil conditioner; sometimes placed in genus Phaseolus -12577686 20 n 04 adzuki_bean 0 adsuki_bean 0 Vigna_angularis 0 Phaseolus_angularis 0 002 @ 11747468 n 0000 #m 12577000 n 0000 | bushy annual widely grown in China and Japan for the flour made from its seeds -12577895 20 n 07 snailflower 0 snail-flower 0 snail_flower 0 snail_bean 0 corkscrew_flower 0 Vigna_caracalla 0 Phaseolus_caracalla 0 002 @ 11747468 n 0000 #m 12577000 n 0000 | perennial tropical American vine cultivated for its racemes of showy yellow and purple flowers having the corolla keel coiled like a snail shell; sometimes placed in genus Phaseolus -12578255 20 n 06 mung 0 mung_bean 0 green_gram 0 golden_gram 0 Vigna_radiata 0 Phaseolus_aureus 0 002 @ 11747468 n 0000 #m 12577000 n 0000 | erect bushy annual widely cultivated in warm regions of India and Indonesia and United States for forage and especially its edible seeds; chief source of bean sprouts used in Chinese cookery; sometimes placed in genus Phaseolus -12578626 20 n 05 cowpea 0 cowpea_plant 0 black-eyed_pea 0 Vigna_unguiculata 0 Vigna_sinensis 0 004 @ 11747468 n 0000 #m 12577000 n 0000 %p 07726672 n 0000 %p 12578916 n 0000 | sprawling Old World annual cultivated especially in southern United States for food and forage and green manure -12578916 20 n 02 cowpea 2 black-eyed_pea 2 002 @ 11748002 n 0000 #p 12578626 n 0000 | fruit or seed of the cowpea plant -12579038 20 n 04 asparagus_bean 0 yard-long_bean 0 Vigna_unguiculata_sesquipedalis 0 Vigna_sesquipedalis 0 002 @ 11747468 n 0000 #m 12577000 n 0000 | South American bean having very long succulent pods -12579242 20 n 02 Viminaria 0 genus_Viminaria 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12579404 n 0000 | one species: Australian leafless shrubs: swamp oak -12579404 20 n 03 swamp_oak 0 Viminaria_juncea 0 Viminaria_denudata 0 002 @ 13112664 n 0000 #m 12579242 n 0000 | Australian leafless shrub resembling broom and having small yellow flowers -12579593 20 n 02 Virgilia 0 genus_Virgilia 0 004 @ 11585340 n 0000 #m 12501745 n 0000 %m 12579822 n 0000 %m 12580012 n 0000 | genus of South African trees having pinnate leaves and rose-purple flowers followed by leathery pods -12579822 20 n 03 keurboom 1 Virgilia_capensis 0 Virgilia_oroboides 0 002 @ 13104059 n 0000 #m 12579593 n 0000 | tree with odd-pinnate leaves and racemes of fragrant pink to purple flowers -12580012 20 n 02 keurboom 2 Virgilia_divaricata 0 002 @ 13104059 n 0000 #m 12579593 n 0000 | fast-growing roundheaded tree with fragrant white to deep rose flowers; planted as an ornamental -12580204 20 n 01 genus_Wisteria 0 003 @ 11585340 n 0000 #m 12501745 n 0000 %m 12580457 n 0000 | Asiatic deciduous woody vine having large drooping racemes of white or bluish or purple or pinkish flowers and velvety pods; widely grown as an ornamental -12580457 20 n 02 wisteria 0 wistaria 0 006 @ 13100677 n 0000 #m 12580204 n 0000 ~ 12580654 n 0000 ~ 12580786 n 0000 ~ 12580896 n 0000 ~ 12581110 n 0000 | any flowering vine of the genus Wisteria -12580654 20 n 02 Japanese_wistaria 0 Wisteria_floribunda 0 001 @ 12580457 n 0000 | having flowers of pink to mauve or violet-blue -12580786 20 n 02 Chinese_wistaria 0 Wisteria_chinensis 0 001 @ 12580457 n 0000 | having deep purple flowers -12580896 20 n 03 American_wistaria 0 American_wisteria 0 Wisteria_frutescens 0 001 @ 12580457 n 0000 | an eastern United States native resembling the cultivated Japanese wisteria having pale purple-lilac flowers -12581110 20 n 02 silky_wisteria 0 Wisteria_venusta 0 001 @ 12580457 n 0000 | a wisteria of China having white flowers -12581230 20 n 02 Palmales 0 order_Palmales 0 003 @ 11534677 n 0000 #m 11668573 n 0000 %m 12581381 n 0000 | coextensive with the family Palmae: palms -12581381 20 n 07 Palmae 0 family_Palmae 0 Palmaceae 0 family_Palmaceae 0 Arecaceae 0 family_Arecaceae 0 palm_family 0 030 @ 11555413 n 0000 #m 12581230 n 0000 %m 12582231 n 0000 %m 12583529 n 0000 %m 12584057 n 0000 %m 12584559 n 0000 %m 12584970 n 0000 %m 12585512 n 0000 %m 12586110 n 0000 %m 12586867 n 0000 %m 12587366 n 0000 %m 12587686 n 0000 %m 12588156 n 0000 %m 12588989 n 0000 %m 12589286 n 0000 %m 12590117 n 0000 %m 12590842 n 0000 %m 12591195 n 0000 %m 12591523 n 0000 %m 12591897 n 0000 %m 12592351 n 0000 %m 12593689 n 0000 %m 12593826 n 0000 %m 12594165 n 0000 %m 12594746 n 0000 %m 12595801 n 0000 %m 12596525 n 0000 %m 12597006 n 0000 %m 12597333 n 0000 %m 12597640 n 0000 | chiefly tropical trees and shrubs and vines usually having a tall columnar trunk bearing a crown of very large leaves; coextensive with the order Palmales -12582231 20 n 02 palm 0 palm_tree 0 016 @ 13104059 n 0000 #m 12581381 n 0000 ~ 12582665 n 0000 ~ 12582846 n 0000 ~ 12583126 n 0000 ~ 12586298 n 0000 ~ 12586989 n 0000 ~ 12587803 n 0000 ~ 12589142 n 0000 ~ 12591017 n 0000 ~ 12591351 n 0000 ~ 12592058 n 0000 ~ 12594989 n 0000 ~ 12595964 n 0000 ~ 12596709 n 0000 ~ 12596849 n 0000 | any plant of the family Palmae having an unbranched trunk crowned by large pinnate or palmate leaves -12582665 20 n 01 sago_palm 1 004 @ 12582231 n 0000 ~ 12584715 n 0000 ~ 12587132 n 0000 ~ 12591702 n 0000 | any of various tropical Asian palm trees the trunks of which yield sago -12582846 20 n 01 feather_palm 0 011 @ 12582231 n 0000 ~ 12583681 n 0000 ~ 12583855 n 0000 ~ 12584191 n 0000 ~ 12585137 n 0000 ~ 12587487 n 0000 ~ 12590232 n 0000 ~ 12592544 n 0000 ~ 12593122 n 0000 ~ 12593994 n 0000 ~ 12594324 n 0000 | palm having pinnate or featherlike leaves -12583126 20 n 01 fan_palm 0 011 @ 12582231 n 0000 ~ 12583401 n 0000 ~ 12585629 n 0000 ~ 12588320 n 0000 ~ 12588780 n 0000 ~ 12589458 n 0000 ~ 12589687 n 0000 ~ 12589841 n 0000 ~ 12597466 n 0000 ~ 12597798 n 0000 ~ 12598027 n 0000 | palm having palmate or fan-shaped leaves -12583401 20 n 01 palmetto 0 002 @ 12583126 n 0000 ~ 12597134 n 0000 | any of several low-growing palms with fan-shaped leaves -12583529 20 n 02 Acrocomia 0 genus_Acrocomia 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12583681 n 0000 | Central and South American feather palms -12583681 20 n 03 coyol 0 coyol_palm 0 Acrocomia_vinifera 0 002 @ 12582846 n 0000 #m 12583529 n 0000 | tropical American palm having edible nuts and yielding a useful fiber -12583855 20 n 05 grugru 0 gri-gri 0 grugru_palm 0 macamba 0 Acrocomia_aculeata 0 002 @ 12582846 n 0000 %p 07774182 n 0000 | tropical American feather palm having a swollen spiny trunk and edible nuts -12584057 20 n 01 genus_Areca 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12584191 n 0000 | a monocotyledonous genus of palm trees -12584191 20 n 01 areca 0 003 @ 12582846 n 0000 #m 12584057 n 0000 ~ 12584365 n 0000 | any of several tall tropical palms native to southeastern Asia having egg-shaped nuts -12584365 20 n 02 betel_palm 0 Areca_catechu 0 002 @ 12584191 n 0000 %p 07770869 n 0000 | southeastern Asian palm bearing betel nuts (scarlet or orange single-seeded fruit with a fibrous husk) -12584559 20 n 02 Arenga 0 genus_Arenga 0 003 @ 11744859 n 0000 #m 12581381 n 0000 %m 12584715 n 0000 | a genus of tropical Asian and Malaysian palm trees -12584715 20 n 04 sugar_palm 0 gomuti 0 gomuti_palm 0 Arenga_pinnata 0 003 @ 12582665 n 0000 #m 12584559 n 0000 %s 15062955 n 0000 | Malaysian feather palm with base densely clothed with fibers; yields a sweet sap used in wine and trunk pith yields sago -12584970 20 n 02 Attalea 0 genus_Attalea 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12585137 n 0000 | unarmed feather palms of central and northern South America -12585137 20 n 05 piassava_palm 0 pissaba_palm 0 Bahia_piassava 0 bahia_coquilla 0 Attalea_funifera 0 003 @ 12582846 n 0000 #m 12584970 n 0000 %p 12585373 n 0000 | Brazilian palm yielding fibers used in making ropes, mats, and brushes -12585373 20 n 01 coquilla_nut 0 002 @ 13135832 n 0000 #p 12585137 n 0000 | nut having a hard hazel-brown shell used like vegetable ivory -12585512 20 n 02 Borassus 0 genus_Borassus 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12585629 n 0000 | palmyra -12585629 20 n 07 palmyra 0 palmyra_palm 0 toddy_palm 0 wine_palm 1 lontar 0 longar_palm 0 Borassus_flabellifer 0 003 @ 12583126 n 0000 #m 12585512 n 0000 %s 12585967 n 0000 | tall fan palm of Africa and India and Malaysia yielding a hard wood and sweet sap that is a source of palm wine and sugar; leaves used for thatching and weaving -12585967 20 n 01 bassine 0 002 @ 14866889 n 0000 #s 12585629 n 0000 | coarse leaf fiber from palmyra palms used in making brushes and brooms -12586110 20 n 01 genus_Calamus 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12586298 n 0000 | distinctive often spiny-stemmed palms found as climbers in tropical and subtropical forest -12586298 20 n 01 calamus 0 004 @ 12582231 n 0000 #m 12586110 n 0000 ~ 12586499 n 0000 ~ 12586725 n 0000 | any tropical Asian palm of the genus Calamus; light tough stems are a source of rattan canes -12586499 20 n 03 rattan 1 rattan_palm 0 Calamus_rotang 0 002 @ 12586298 n 0000 %p 12136581 n 0000 | climbing palm of Sri Lanka and southern India remarkable for the great length of the stems which are used for malacca canes -12586725 20 n 02 lawyer_cane 0 Calamus_australis 0 001 @ 12586298 n 0000 | tall scrambling spiny palm of northeastern Queensland, Australia -12586867 20 n 02 Caryota 0 genus_Caryota 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12586989 n 0000 | fishtail palms -12586989 20 n 01 fishtail_palm 0 002 @ 12582231 n 0000 #m 12586867 n 0000 | attractive East Indian palm having distinctive bipinnate foliage -12587132 20 n 07 wine_palm 2 jaggery_palm 0 kitul 0 kittul 0 kitul_tree 0 toddy_palm 1 Caryota_urens 0 001 @ 12582665 n 0000 | fishtail palm of India to Malay Peninsula; sap yields a brown sugar (jaggery) and trunk pith yields sago -12587366 20 n 02 Ceroxylon 0 genus_Ceroxylon 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12587487 n 0000 | wax palms -12587487 20 n 03 wax_palm 1 Ceroxylon_andicola 0 Ceroxylon_alpinum 0 002 @ 12582846 n 0000 #m 12587366 n 0000 | palm of the Andes yielding a resinous wax which is mixed with tallow to make candles -12587686 20 n 02 Cocos 0 genus_Cocos 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12587803 n 0000 | coconut palms -12587803 20 n 07 coconut 1 coconut_palm 0 coco_palm 0 coco 0 cocoa_palm 0 coconut_tree 0 Cocos_nucifera 0 003 @ 12582231 n 0000 #m 12587686 n 0000 %p 07772935 n 0000 | tall palm tree bearing coconuts as fruits; widely planted throughout the tropics -12588054 20 n 01 coir 0 001 @ 14866889 n 0000 | stiff coarse fiber from the outer husk of a coconut -12588156 20 n 02 Copernicia 0 genus_Copernicia 0 004 @ 11556857 n 0000 #m 12581381 n 0000 %m 12588320 n 0000 %m 12588780 n 0000 | slow-growing tropical fan palms -12588320 20 n 05 carnauba 0 carnauba_palm 0 wax_palm 2 Copernicia_prunifera 0 Copernicia_cerifera 0 003 @ 12583126 n 0000 #m 12588156 n 0000 %s 12588584 n 0000 | Brazilian fan palm having an edible root; source of a useful leaf fiber and a brittle yellowish wax -12588584 20 n 02 carnauba_wax 0 carnauba 2 002 @ 15094294 n 0000 #s 12588320 n 0000 | hard yellowish to brownish wax from leaves of the carnauba palm used especially in floor waxes and polishes -12588780 20 n 06 caranday 0 caranda 0 caranda_palm 0 wax_palm 3 Copernicia_australis 0 Copernicia_alba 0 002 @ 12583126 n 0000 #m 12588156 n 0000 | South American palm yielding a wax similar to carnauba wax -12588989 20 n 01 genus_Corozo 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12589142 n 0000 | a monocotyledonous genus of tropical American palm trees -12589142 20 n 02 corozo 0 corozo_palm 0 002 @ 12582231 n 0000 #m 12588989 n 0000 | any of several tropical American palms bearing corozo nuts -12589286 20 n 02 Corypha 0 genus_Corypha 0 004 @ 11556857 n 0000 #m 12581381 n 0000 %m 12589458 n 0000 %m 12589841 n 0000 | large fan palms of tropical Asia to Australia -12589458 20 n 03 gebang_palm 0 Corypha_utan 0 Corypha_gebanga 0 002 @ 12583126 n 0000 #m 12589286 n 0000 | large-leaved palm of Malay to Philippines and northern Australia; leaves used for thatching or plaiting into containers -12589687 20 n 02 latanier 0 latanier_palm 0 002 @ 12583126 n 0000 #m 12593689 n 0000 | fan palms of the southern United States and the Caribbean region -12589841 20 n 03 talipot 0 talipot_palm 0 Corypha_umbraculifera 0 004 @ 12583126 n 0000 #m 12589286 n 0000 %p 14867690 n 0000 %p 14976170 n 0000 | tall palm of southern India and Sri Lanka with gigantic leaves used as umbrellas and fans or cut into strips for writing paper -12590117 20 n 02 Elaeis 0 genus_Elaeis 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12590232 n 0000 | oil palms -12590232 20 n 01 oil_palm 0 005 @ 12582846 n 0000 #m 12590117 n 0000 ~ 12590499 n 0000 ~ 12590600 n 0000 %p 12590715 n 0000 | pinnate-leaved palms of the genus Elaeis having dense clusters of crowded flowers and bright red fruit and yielding high quality palm oils -12590499 20 n 02 African_oil_palm 0 Elaeis_guineensis 0 001 @ 12590232 n 0000 | oil palm of Africa -12590600 20 n 02 American_oil_palm 0 Elaeis_oleifera 0 001 @ 12590232 n 0000 | palm of Central and South America -12590715 20 n 02 palm_nut 0 palm_kernel 0 003 @ 13136556 n 0000 #p 12590232 n 0000 %s 07674617 n 0000 | seed of any oil palm -12590842 20 n 02 Euterpe 0 genus_Euterpe 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12591017 n 0000 | a monocotyledonous genus of graceful palm trees in tropical America -12591017 20 n 02 cabbage_palm 2 Euterpe_oleracea 0 002 @ 12582231 n 0000 #m 12590842 n 0000 | Brazilian palm of genus Euterpe whose leaf buds are eaten like cabbage when young -12591195 20 n 02 Livistona 0 genus_Livistona 0 003 @ 11744859 n 0000 #m 12581381 n 0000 %m 12591351 n 0000 | fan palms of Asia and Australia and Malaysia -12591351 20 n 03 cabbage_palm 3 cabbage_tree 1 Livistona_australis 0 002 @ 12582231 n 0000 #m 12591195 n 0000 | Australian palm with leaf buds that are edible when young -12591523 20 n 02 Metroxylon 0 genus_Metroxylon 0 002 @ 11556857 n 0000 #m 12581381 n 0000 | a genus of Malayan pinnate-leaved palm trees that flower and fruit once and then die -12591702 20 n 02 true_sago_palm 0 Metroxylon_sagu 0 001 @ 12582665 n 0000 | Malaysian palm whose pithy trunk yields sago--a starch used as a food thickener and fabric stiffener; Malaya to Fiji -12591897 20 n 04 Nipa 0 genus_Nipa 0 Nypa 0 genus_Nypa 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12592058 n 0000 | monotypic genus of palms of Australasia -12592058 20 n 02 nipa_palm 0 Nipa_fruticans 0 003 @ 12582231 n 0000 #m 12591897 n 0000 %s 07891613 n 0000 | any creeping semiaquatic feather palm of the genus Nipa found in mangrove swamps and tidal estuaries; its sap is used for a liquor; leaves are used for thatch; fruit has edible seeds -12592351 20 n 02 Orbignya 0 genus_Orbignya 0 004 @ 11556857 n 0000 #m 12581381 n 0000 %m 12592544 n 0000 %m 12593122 n 0000 | palms of southern Mexico to northern South America: babassu palm -12592544 20 n 06 babassu 0 babassu_palm 0 coco_de_macao 0 Orbignya_phalerata 0 Orbignya_spesiosa 0 Orbignya_martiana 0 003 @ 12582846 n 0000 #m 12592351 n 0000 %p 12592839 n 0000 | tall feather palm of northern Brazil with hard-shelled nuts yielding valuable oil and a kind of vegetable ivory -12592839 20 n 01 babassu_nut 0 003 @ 13135832 n 0000 #p 12592544 n 0000 %s 12592971 n 0000 | hard-shelled nut of the babassu palm -12592971 20 n 02 babassu_oil 0 babacu_oil 0 002 @ 14966667 n 0000 #s 12592839 n 0000 | fatty oil from kernels of babassu nuts similar to coconut oil -12593122 20 n 03 cohune_palm 0 Orbignya_cohune 0 cohune 0 003 @ 12582846 n 0000 #m 12592351 n 0000 %p 12593341 n 0000 | tropical American feather palm whose large nuts yield valuable oil and a kind of vegetable ivory -12593341 20 n 01 cohune_nut 0 003 @ 13135832 n 0000 #p 12593122 n 0000 %s 12593508 n 0000 | nut of the cohune palm having hard white shells like those of ivory nuts -12593508 20 n 03 cohune-nut_oil 0 cohune_oil 0 cohune_fat 0 002 @ 14966667 n 0000 #s 12593341 n 0000 | semisolid fat from nuts of the cohune palm; used in cooking and soap making -12593689 20 n 02 phoenicophorium 0 genus_Phoenicophorium 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12589687 n 0000 | latanier palm -12593826 20 n 02 phoenix 0 genus_Phoenix 0 002 @ 11556857 n 0000 #m 12581381 n 0000 | a large monocotyledonous genus of pinnate-leaved palms found in Asia and Africa -12593994 20 n 02 date_palm 0 Phoenix_dactylifera 0 002 @ 12582846 n 0000 %p 07765073 n 0000 | tall tropical feather palm tree native to Syria bearing sweet edible fruit -12594165 20 n 02 phytelephas 0 genus_Phytelephas 0 003 @ 11744859 n 0000 #m 12581381 n 0000 %m 12594324 n 0000 | small genus of South American feather palms -12594324 20 n 04 ivory_palm 0 ivory-nut_palm 0 ivory_plant 0 Phytelephas_macrocarpa 0 003 @ 12582846 n 0000 #m 12594165 n 0000 %p 12594533 n 0000 | a stemless palm tree of Brazil and Peru bearing ivory nuts -12594533 20 n 03 ivory_nut 0 vegetable_ivory 0 apple_nut 0 002 @ 13135832 n 0000 #p 12594324 n 0000 | nutlike seed of a South American palm; the hard white shell takes a high polish and is used for e.g. buttons -12594746 20 n 04 Raffia 0 genus_Raffia 0 Raphia 0 genus_Raphia 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12594989 n 0000 | feather palm of tropical Africa and Madagascar and Central and South America widely grown for commercial purposes -12594989 20 n 03 raffia_palm 0 Raffia_farinifera 0 Raffia_ruffia 0 005 @ 12582231 n 0000 #m 12594746 n 0000 %s 12595305 n 0000 ~ 12595452 n 0000 ~ 12595699 n 0000 | a large feather palm of Africa and Madagascar having very long pinnatisect fronds yielding a strong commercially important fiber from its leafstalks -12595305 20 n 01 raffia 2 002 @ 14866889 n 0000 #s 12594989 n 0000 | fiber of a raffia palm used as light cordage and in making hats and baskets -12595452 20 n 04 jupati 0 jupaty 0 jupati_palm 0 Raffia_taedigera 0 001 @ 12594989 n 0000 | a tall Brazilian feather palm with a terminal crown of very large leathery pinnatisect leaves rising from long strong stems used for structural purposes -12595699 20 n 02 bamboo_palm 1 Raffia_vinifera 0 001 @ 12594989 n 0000 | a palm of the genus Raffia -12595801 20 n 02 Rhapis 0 genus_Rhapis 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12595964 n 0000 | genus of small clump-forming fan palms of China and Japan -12595964 20 n 01 lady_palm 0 004 @ 12582231 n 0000 #m 12595801 n 0000 ~ 12596148 n 0000 ~ 12596345 n 0000 | any of several small palms of the genus Rhapis; cultivated as houseplants -12596148 20 n 04 miniature_fan_palm 0 bamboo_palm 2 fern_rhapis 0 Rhapis_excelsa 0 001 @ 12595964 n 0000 | small graceful palm with reedlike stems and leaf bases clothed with loose coarse fibers -12596345 20 n 03 reed_rhapis 0 slender_lady_palm 0 Rhapis_humilis 0 001 @ 12595964 n 0000 | Chinese lady palm with more slender stems and finer sheath fibers than Rhapis excelsa -12596525 20 n 02 Roystonea 0 genus_Roystonea 0 004 @ 11556857 n 0000 #m 12581381 n 0000 %m 12596709 n 0000 %m 12596849 n 0000 | a monocotyledonous genus of West Indian feather palms -12596709 20 n 02 royal_palm 0 Roystonea_regia 0 002 @ 12582231 n 0000 #m 12596525 n 0000 | tall feather palm of southern Florida and Cuba -12596849 20 n 02 cabbage_palm 1 Roystonea_oleracea 0 002 @ 12582231 n 0000 #m 12596525 n 0000 | West Indian palm with leaf buds that are edible when young -12597006 20 n 02 Sabal 0 genus_Sabal 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12597134 n 0000 | American dwarf fan palms -12597134 20 n 03 cabbage_palmetto 0 cabbage_palm 4 Sabal_palmetto 0 002 @ 12583401 n 0000 #m 12597006 n 0000 | low-growing fan-leaved palm of coastal southern United States having edible leaf buds -12597333 20 n 02 Serenoa 0 genus_Serenoa 0 003 @ 11556857 n 0000 #m 12581381 n 0000 %m 12597466 n 0000 | one species: saw palmetto -12597466 20 n 03 saw_palmetto 0 scrub_palmetto 0 Serenoa_repens 0 002 @ 12583126 n 0000 #m 12597333 n 0000 | small hardy clump-forming spiny palm of southern United States -12597640 20 n 02 Thrinax 0 genus_Thrinax 0 004 @ 11556857 n 0000 #m 12581381 n 0000 %m 12597798 n 0000 %m 12598027 n 0000 | small to medium-sized fan palms -12597798 20 n 05 thatch_palm 0 thatch_tree 0 silver_thatch 1 broom_palm 0 Thrinax_parviflora 0 002 @ 12583126 n 0000 #m 12597640 n 0000 | small palm of southern Florida and West Indies closely resembling the silvertop palmetto -12598027 20 n 06 key_palm 0 silvertop_palmetto 0 silver_thatch 2 Thrinax_microcarpa 0 Thrinax_morrisii 0 Thrinax_keyensis 0 002 @ 12583126 n 0000 #m 12597640 n 0000 | small stocky fan palm of southern Florida and Cuba -12598247 20 n 02 Plantaginales 0 order_Plantaginales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12598409 n 0000 | coextensive with the family Plantaginaceae -12598409 20 n 03 Plantaginaceae 0 family_Plantaginaceae 0 plantain_family 0 003 @ 11562747 n 0000 #m 12598247 n 0000 %m 12598629 n 0000 | cosmopolitan family of small herbs and a few shrubs; most are troublesome weeds -12598629 20 n 02 Plantago 0 genus_Plantago 0 003 @ 11567411 n 0000 #m 12598409 n 0000 %m 12598826 n 0000 | type genus of the family Plantaginaceae; large cosmopolitan genus of mostly small herbs -12598826 20 n 01 plantain 1 008 @ 12205694 n 0000 #m 12598629 n 0000 ~ 12599185 n 0000 ~ 12599435 n 0000 ~ 12599661 n 0000 ~ 12599874 n 0000 ~ 12600095 n 0000 ~ 12600267 n 0000 | any of numerous plants of the genus Plantago; mostly small roadside or dooryard weeds with elliptic leaves and small spikes of very small flowers; seeds of some used medicinally -12599185 20 n 07 English_plantain 0 narrow-leaved_plantain 0 ribgrass 0 ribwort 0 ripple-grass 0 buckthorn 3 Plantago_lanceolata 0 001 @ 12598826 n 0000 | an Old World plantain with long narrow ribbed leaves widely established in temperate regions -12599435 20 n 06 broad-leaved_plantain 1 common_plantain 0 white-man's_foot 0 whiteman's_foot 0 cart-track_plant 0 Plantago_major 0 001 @ 12598826 n 0000 | common European perennial naturalized worldwide; a troublesome weed -12599661 20 n 02 hoary_plantain 1 Plantago_media 0 001 @ 12598826 n 0000 | widely distributed Old World perennial naturalized in North America having finely hairy leaves and inconspicuous white fragrant flowers -12599874 20 n 04 fleawort 0 psyllium 0 Spanish_psyllium 0 Plantago_psyllium 0 001 @ 12598826 n 0000 | plantain of Mediterranean regions whose seeds swell and become gelatinous when moist and are used as a mild laxative -12600095 20 n 03 rugel's_plantain 0 broad-leaved_plantain 2 Plantago_rugelii 0 001 @ 12598826 n 0000 | North American plantain having reddish leafstalks and broad leaves -12600267 20 n 02 hoary_plantain 2 Plantago_virginica 0 001 @ 12598826 n 0000 | North American annual or biennial with long soft hairs on the leaves -12600417 20 n 02 Polygonales 0 order_Polygonales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12600574 n 0000 | coextensive with the family Polygonaceae, -12600574 20 n 03 Polygonaceae 0 family_Polygonaceae 0 buckwheat_family 0 007 @ 11562747 n 0000 #m 12600417 n 0000 %m 12600888 n 0000 %m 12601335 n 0000 %m 12602118 n 0000 %m 12602850 n 0000 %m 12603784 n 0000 | a family of plants of order Polygonales chiefly of the north temperate zone; includes the buckwheats -12600888 20 n 02 Polygonum 0 genus_Polygonum 0 005 @ 11567411 n 0000 #m 12600574 n 0000 %m 12601106 n 0000 %m 12601494 n 0000 %m 12601805 n 0000 | diverse genus of herbs or woody subshrubs of north temperate regions -12601106 20 n 04 silver_lace_vine 0 China_fleece_vine 0 Russian_vine 0 Polygonum_aubertii 0 002 @ 13100677 n 0000 #m 12600888 n 0000 | twining perennial vine having racemes of fragrant greenish flowers; western China to Russia -12601335 20 n 02 Fagopyrum 0 genus_Fagopyrum 0 002 @ 11567411 n 0000 #m 12600574 n 0000 | buckwheat; in some classifications included in the genus Polygonum -12601494 20 n 03 buckwheat 0 Polygonum_fagopyrum 0 Fagopyrum_esculentum 0 003 @ 12205694 n 0000 #m 12600888 n 0000 %p 07803310 n 0000 | a member of the genus Fagopyrum; annual Asian plant with clusters of small pinkish white flowers and small edible triangular seeds which are used whole or ground into flour -12601805 20 n 05 prince's-feather 1 princess_feather 0 kiss-me-over-the-garden-gate 0 prince's-plume 2 Polygonum_orientale 0 002 @ 13118707 n 0000 #m 12600888 n 0000 | annual with broadly ovate leaves and slender drooping spikes of crimson flowers; southeastern Asia and Australia; naturalized in North America -12602118 20 n 01 genus_Eriogonum 0 003 @ 11567411 n 0000 #m 12600574 n 0000 %m 12602262 n 0000 | North American herbs of the buckwheat family -12602262 20 n 01 eriogonum 0 004 @ 13118707 n 0000 #m 12602118 n 0000 ~ 12602434 n 0000 ~ 12602612 n 0000 | any plant of the genus Eriogonum with small clustered flowers -12602434 20 n 02 umbrella_plant 2 Eriogonum_allenii 0 001 @ 12602262 n 0000 | late blooming perennial plant of shale barrens of Virginia having flowers in flat-topped clusters -12602612 20 n 03 wild_buckwheat 0 California_buckwheat 0 Erigonum_fasciculatum 0 001 @ 12602262 n 0000 | low-growing shrub with spreading branches and flowers in loose heads; desert regions of western United States (California to Utah) -12602850 20 n 02 Rheum 0 genus_Rheum 0 004 @ 11567411 n 0000 #m 12600574 n 0000 %m 12602980 n 0000 %m 12603273 n 0000 | rhubarb -12602980 20 n 02 rhubarb 0 rhubarb_plant 0 005 @ 12205694 n 0000 #m 12602850 n 0000 ~ 12603273 n 0000 ~ 12603449 n 0000 ~ 12603672 n 0000 | plants having long green or reddish acidic leafstalks growing in basal clumps; stems (and only the stems) are edible when cooked; leaves are poisonous -12603273 20 n 05 Himalayan_rhubarb 0 Indian_rhubarb 1 red-veined_pie_plant 0 Rheum_australe 0 Rheum_emodi 0 002 @ 12602980 n 0000 #m 12602850 n 0000 | Asian herb (Himalayas) -12603449 20 n 05 pie_plant 0 garden_rhubarb 0 Rheum_cultorum 0 Rheum_rhabarbarum 0 Rheum_rhaponticum 0 001 @ 12602980 n 0000 | long cultivated hybrid of Rheum palmatum; stems often cooked in pies or as sauce or preserves -12603672 20 n 02 Chinese_rhubarb 0 Rheum_palmatum 0 001 @ 12602980 n 0000 | long used for laxative properties -12603784 20 n 02 Rumex 0 genus_Rumex 0 003 @ 11567411 n 0000 #m 12600574 n 0000 %m 12603959 n 0000 | docks: coarse herbs and shrubs mainly native to north temperate regions -12603959 20 n 03 dock 0 sorrel 1 sour_grass 0 006 @ 12205694 n 0000 #m 12603784 n 0000 ~ 12604228 n 0000 ~ 12604460 n 0000 ~ 12604639 n 0000 ~ 12604845 n 0000 | any of certain coarse weedy plants with long taproots, sometimes used as table greens or in folk medicine -12604228 20 n 03 sour_dock 0 garden_sorrel 1 Rumex_acetosa 0 002 @ 12603959 n 0000 %p 07736371 n 0000 | European sorrel with large slightly acidic sagittate leaves grown throughout north temperate zone for salad and spring greens -12604460 20 n 03 sheep_sorrel 0 sheep's_sorrel 0 Rumex_acetosella 0 001 @ 12603959 n 0000 | small plant having pleasantly acid-tasting arrow-shaped leaves; common in dry places -12604639 20 n 04 bitter_dock 0 broad-leaved_dock 0 yellow_dock 0 Rumex_obtusifolius 0 001 @ 12603959 n 0000 | European dock with broad obtuse leaves and bitter rootstock common as a weed in North America -12604845 20 n 03 French_sorrel 0 garden_sorrel 2 Rumex_scutatus 0 002 @ 12603959 n 0000 %p 07736527 n 0000 | low perennial with small silvery-green ovate to hastate leaves -12605019 20 n 04 Xyridales 0 order_Xyridales 0 Commelinales 0 order_Commelinales 0 009 @ 11534677 n 0000 #m 11668952 n 0000 %m 12605315 n 0000 %m 12605965 n 0000 %m 12606907 n 0000 %m 12608447 n 0000 %m 12608778 n 0000 %m 12608941 n 0000 %m 12609638 n 0000 | an order of monocotyledonous herbs -12605315 20 n 03 Xyridaceae 0 family_Xyridaceae 0 yellow-eyed_grass_family 0 003 @ 11555413 n 0000 #m 12605019 n 0000 %m 12605519 n 0000 | plants of tropical to temperate regions; usually in wet places -12605519 20 n 02 Xyris 0 genus_Xyris 0 003 @ 11556857 n 0000 #m 12605315 n 0000 %m 12605683 n 0000 | chiefly American marsh plants, having usually yellow flowers -12605683 20 n 01 yellow-eyed_grass 0 003 @ 13122364 n 0000 #m 12605519 n 0000 ~ 12605872 n 0000 | any of several rushlike plants, especially of the pine barrens of southern United States -12605872 20 n 02 tall_yellow-eye 0 Xyris_operculata 0 001 @ 12605683 n 0000 | of Australia -12605965 20 n 03 Commelinaceae 0 family_Commelinaceae 0 spiderwort_family 0 005 @ 11555413 n 0000 #m 12605019 n 0000 %m 12606227 n 0000 %m 12606545 n 0000 %m 12606797 n 0000 | large widely distributed family of chiefly perennial herbs or climbers: spiderworts -12606227 20 n 01 genus_Commelina 0 003 @ 11556857 n 0000 #m 12605965 n 0000 %m 12606438 n 0000 | type genus of the Commelinaceae; large genus of herbs of branching or creeping habit: day flower; widow's tears -12606438 20 n 01 commelina 0 002 @ 11669921 n 0000 #m 12606227 n 0000 | any plant of the genus Commelina -12606545 20 n 02 spiderwort 0 dayflower 2 003 @ 12205694 n 0000 #m 12605965 n 0000 ~ 12606688 n 0000 | any plant of the family Commelinaceae -12606688 20 n 02 St.-Bruno's-lily 0 Paradisea_liliastrum 0 001 @ 12606545 n 0000 | a variety of spiderwort -12606797 20 n 02 Tradescantia 0 genus_Tradescantia 0 002 @ 11556857 n 0000 #m 12605965 n 0000 | spiderworts -12606907 20 n 03 Bromeliaceae 0 family_Bromeliaceae 0 pineapple_family 0 005 @ 11555413 n 0000 #m 12605019 n 0000 %m 12607198 n 0000 %m 12607717 n 0000 %m 12607896 n 0000 | a family of tropical American plants of order Xyridales including several (as the pineapple) of economic importance -12607198 20 n 02 Ananas 0 genus_Ananas 0 003 @ 11556857 n 0000 #m 12606907 n 0000 %m 12607456 n 0000 | a genus of tropical American plants have sword-shaped leaves and a fleshy compound fruits composed of the fruits of several flowers (such as pineapples) -12607456 20 n 03 pineapple 0 pineapple_plant 0 Ananas_comosus 0 003 @ 12205694 n 0000 #m 12607198 n 0000 %p 07753275 n 0000 | a tropical American plant bearing a large fleshy edible fruit with a terminal tuft of stiff leaves; widely cultivated in the tropics -12607717 20 n 01 Bromelia 0 002 @ 11556857 n 0000 #m 12606907 n 0000 | the type genus of the family Bromeliaceae which includes tropical American plants with deeply cleft calyx -12607896 20 n 02 Tillandsia 0 genus_Tillandsia 0 003 @ 11556857 n 0000 #m 12606907 n 0000 %m 12608127 n 0000 | large genus of epiphytic or terrestrial sparse-rooting tropical plants usually forming dense clumps or pendant masses -12608127 20 n 05 Spanish_moss 0 old_man's_beard 0 black_moss 0 long_moss 0 Tillandsia_usneoides 0 002 @ 13122985 n 0000 #m 12607896 n 0000 | dense festoons of greenish-grey hairlike flexuous strands anchored to tree trunks and branches by sparse wiry roots; southeastern United States and West Indies to South America -12608447 20 n 02 Mayacaceae 0 family_Mayacaceae 0 003 @ 11555413 n 0000 #m 12605019 n 0000 %m 12608620 n 0000 | a monocotyledonous family of bog plants of order Xyridales -12608620 20 n 02 Mayaca 0 genus_Mayaca 0 002 @ 11556857 n 0000 #m 12608447 n 0000 | small genus of delicate mossy bog plants having white or violet flowers -12608778 20 n 02 Rapateaceae 0 family_Rapateaceae 0 002 @ 11555413 n 0000 #m 12605019 n 0000 | South American herbs somewhat resembling members of the Juncaceae -12608941 20 n 03 Eriocaulaceae 0 family_Eriocaulaceae 0 pipewort_family 0 003 @ 11555413 n 0000 #m 12605019 n 0000 %m 12609128 n 0000 | chiefly tropical aquatic or bog herbs: pipeworts -12609128 20 n 02 Eriocaulon 0 genus_Eriocaulon 0 003 @ 11556857 n 0000 #m 12608941 n 0000 %m 12609379 n 0000 | type genus of the Eriocaulaceae: rushlike aquatic or marginal perennials usually found in shallow waters of acid lakes and pools and bogs -12609379 20 n 02 pipewort 0 Eriocaulon_aquaticum 0 002 @ 13121544 n 0000 #m 12609128 n 0000 | aquatic perennial of North America and Ireland and Hebrides having translucent green leaves in a basal spiral and dense buttonlike racemes of minute white flowers -12609638 20 n 03 Pontederiaceae 0 family_Pontederiaceae 0 pickerelweed_family 0 005 @ 11555413 n 0000 #m 12605019 n 0000 %m 12609842 n 0000 %m 12610186 n 0000 %m 12610609 n 0000 | aquatic or bog plants -12609842 20 n 02 Pontederia 0 genus_Pontederia 0 003 @ 11556857 n 0000 #m 12609638 n 0000 %m 12609968 n 0000 | pickerelweed -12609968 20 n 04 pickerelweed 0 pickerel_weed 0 wampee 0 Pontederia_cordata 0 002 @ 13121544 n 0000 #m 12609842 n 0000 | American plant having spikes of blue flowers and growing in shallow water of streams and ponds -12610186 20 n 02 Eichhornia 0 genus_Eichhornia 0 003 @ 11556857 n 0000 #m 12609638 n 0000 %m 12610328 n 0000 | water hyacinth; water orchid -12610328 20 n 04 water_hyacinth 0 water_orchid 0 Eichhornia_crassipes 0 Eichhornia_spesiosa 0 002 @ 13121544 n 0000 #m 12610186 n 0000 | a tropical floating aquatic plant having spikes of large blue flowers; troublesome in clogging waterways especially in southern United States -12610609 20 n 02 Heteranthera 0 genus_Heteranthera 0 003 @ 11556857 n 0000 #m 12609638 n 0000 %m 12610740 n 0000 | mud plantains -12610740 20 n 03 water_star_grass 0 mud_plantain 0 Heteranthera_dubia 0 002 @ 13121544 n 0000 #m 12610609 n 0000 | grassy-leaved North American aquatic plant with yellow star-shaped blossoms -12610933 20 n 04 Naiadales 0 order_Naiadales 0 Alismales 0 order_Alismales 0 009 @ 11534677 n 0000 #m 11667562 n 0000 %m 12611243 n 0000 %m 12611815 n 0000 %m 12612913 n 0000 %m 12615427 n 0000 %m 12617140 n 0000 %m 12617739 n 0000 %m 12618336 n 0000 | an order of aquatic monocotyledonous herbaceous plants -12611243 20 n 05 Naiadaceae 0 family_Naiadaceae 0 Najadaceae 0 family_Najadaceae 0 naiad_family 0 003 @ 11555413 n 0000 #m 12610933 n 0000 %m 12611479 n 0000 | monotypic family of aquatic plants having narrow leaves and small flowers -12611479 20 n 04 Naias 0 genus_Naias 0 Najas 0 genus_Najas 0 003 @ 11556857 n 0000 #m 12611243 n 0000 %m 12611640 n 0000 | sole genus of the family Naiadaceae -12611640 20 n 02 naiad 0 water_nymph 1 002 @ 13121544 n 0000 #m 12611479 n 0000 | submerged aquatic plant having narrow leaves and small flowers; of fresh or brackish water -12611815 20 n 03 Alismataceae 0 family_Alismataceae 0 water-plantain_family 0 004 @ 11555413 n 0000 #m 12610933 n 0000 %m 12612020 n 0000 %m 12612410 n 0000 | perennial or annual aquatic or marsh plants -12612020 20 n 02 Alisma 0 genus_Alisma 0 003 @ 11556857 n 0000 #m 12611815 n 0000 %m 12612170 n 0000 | small genus of aquatic or semiaquatic plants -12612170 20 n 02 water_plantain 0 Alisma_plantago-aquatica 0 004 @ 13122364 n 0000 #m 12612020 n 0000 ~ 12612709 n 0000 ~ 12612811 n 0000 | marsh plant having clusters of small white or pinkish flowers and broad pointed or rounded leaves -12612410 20 n 02 Sagittaria 0 genus_Sagittaria 0 003 @ 11556857 n 0000 #m 12611815 n 0000 ~ 12612640 n 0000 | genus of aquatic herbs of temperate and tropical regions having sagittate or hastate leaves and white scapose flowers -12612640 20 n 01 common_arrowhead 0 001 @ 12612410 n 0000 | a weed -12612709 20 n 01 ribbon-leaved_water_plantain 0 001 @ 12612170 n 0000 | a variety of water plantain -12612811 20 n 01 narrow-leaved_water_plantain 0 001 @ 12612170 n 0000 | a variety of water plantain -12612913 20 n 06 Hydrocharitaceae 0 family_Hydrocharitaceae 0 Hydrocharidaceae 0 family_Hydrocharidaceae 0 frogbit_family 0 frog's-bit_family 0 008 @ 11555413 n 0000 #m 12610933 n 0000 %m 12613285 n 0000 %m 12613596 n 0000 %m 12613968 n 0000 %m 12614317 n 0000 %m 12614962 n 0000 %m 12615097 n 0000 | simple nearly stemless freshwater aquatic plants; widely distributed -12613285 20 n 02 Hydrocharis 0 genus_Hydrocharis 0 003 @ 11556857 n 0000 #m 12612913 n 0000 %m 12613408 n 0000 | frogbit -12613408 20 n 03 frogbit 0 frog's-bit 0 Hydrocharis_morsus-ranae 0 002 @ 13121544 n 0000 #m 12613285 n 0000 | European floating plant with roundish heart-shaped leaves and white flowers -12613596 20 n 01 genus_Hydrilla 0 003 @ 11556857 n 0000 #m 12612913 n 0000 %m 12613706 n 0000 | one species -12613706 20 n 02 hydrilla 0 Hydrilla_verticillata 0 002 @ 13121544 n 0000 #m 12613596 n 0000 | submersed plant with whorled lanceolate leaves and solitary axillary flowers; Old World plant naturalized in southern United States and clogging Florida's waterways -12613968 20 n 02 Limnobium 0 genus_Limnobium 0 003 @ 11556857 n 0000 #m 12612913 n 0000 %m 12614096 n 0000 | American frogbit -12614096 20 n 02 American_frogbit 0 Limnodium_spongia 0 002 @ 13121544 n 0000 #m 12613968 n 0000 | American plant with roundish heart-shaped or kidney-shaped leaves; usually rooted in muddy bottoms of ponds and ditches -12614317 20 n 04 Elodea 0 genus_Elodea 0 pondweed 2 ditchmoss 0 003 @ 11556857 n 0000 #m 12612913 n 0000 %m 12614477 n 0000 | submerged freshwater perennials -12614477 20 n 01 waterweed 0 004 @ 13121544 n 0000 #m 12614317 n 0000 ~ 12614625 n 0000 ~ 12614763 n 0000 | a weedy aquatic plant of genus Elodea -12614625 20 n 02 Canadian_pondweed 0 Elodea_canadensis 0 001 @ 12614477 n 0000 | North American waterweed; widely naturalized in Europe -12614763 20 n 03 dense-leaved_elodea 0 Elodea_densa 0 Egeria_densa 0 001 @ 12614477 n 0000 | aquatic plant with deep green foliage useful to oxygenate an aquarium; sometimes placed in genus Egeria -12614962 20 n 02 Egeria 0 genus_Egeria 0 002 @ 11556857 n 0000 #m 12612913 n 0000 | small genus of dioecious tropical aquatic plants -12615097 20 n 02 Vallisneria 0 genus_Vallisneria 0 003 @ 11556857 n 0000 #m 12612913 n 0000 %m 12615232 n 0000 | eelgrass; eel grass -12615232 20 n 04 tape_grass 0 eelgrass 2 wild_celery 1 Vallisneria_spiralis 0 002 @ 13121544 n 0000 #m 12615097 n 0000 | submerged aquatic plant with ribbonlike leaves; Old World and Australia -12615427 20 n 03 Potamogetonaceae 0 family_Potamogetonaceae 0 pondweed_family 0 006 @ 11555413 n 0000 #m 12610933 n 0000 %m 12615710 n 0000 %m 12615986 n 0000 %m 12616825 n 0000 %m 12618524 n 0000 | plants that grow in ponds and slow streams; sometimes includes family Zosteraceae -12615710 20 n 01 pondweed 1 007 @ 13121544 n 0000 #m 12615427 n 0000 ~ 12616248 n 0000 ~ 12616442 n 0000 ~ 12616630 n 0000 ~ 12616996 n 0000 ~ 12618146 n 0000 | any of several submerged or floating freshwater perennial aquatic weeds belonging to the family Potamogetonaceae -12615986 20 n 02 Potamogeton 0 genus_Potamogeton 0 005 @ 11556857 n 0000 #m 12615427 n 0000 %m 12616248 n 0000 %m 12616442 n 0000 %m 12616630 n 0000 | a large genus of aquatic herbs found in quiet waters in temperate regions; leaves usually float on the water -12616248 20 n 03 curled_leaf_pondweed 0 curly_pondweed 0 Potamogeton_crispus 0 002 @ 12615710 n 0000 #m 12615986 n 0000 | European herb naturalized in the eastern United States and California -12616442 20 n 02 variously-leaved_pondweed 0 Potamogeton_gramineous 0 002 @ 12615710 n 0000 #m 12615986 n 0000 | of Europe (except the Mediterranean area) and the northern United States -12616630 20 n 03 loddon_pondweed 0 Potamogeton_nodosus 0 Potamogeton_americanus 0 002 @ 12615710 n 0000 #m 12615986 n 0000 | pondweed with floating leaves; of northern United States and Europe -12616825 20 n 02 Groenlandia 0 genus_Groenlandia 0 003 @ 11556857 n 0000 #m 12615427 n 0000 %m 12616996 n 0000 | a monocotyledonous genus of the family Potamogetonaceae -12616996 20 n 01 frog's_lettuce 0 002 @ 12615710 n 0000 #m 12616825 n 0000 | very similar to Potamogeton; of western Africa, Asia, and Europe -12617140 20 n 05 Scheuchzeriaceae 0 family_Scheuchzeriaceae 0 Juncaginaceae 0 family_Juncaginaceae 0 arrow-grass_family 0 003 @ 11555413 n 0000 #m 12610933 n 0000 %m 12617384 n 0000 | a family of monocotyledonous bog herbs of order Naiadales -12617384 20 n 02 Triglochin 0 genus_Triglochin 0 003 @ 11556857 n 0000 #m 12617140 n 0000 %m 12617559 n 0000 | perennial or annual bog or marsh plants; includes arrow grass -12617559 20 n 02 arrow_grass 0 Triglochin_maritima 0 002 @ 13122364 n 0000 #m 12617384 n 0000 | tufted perennial found in shallow water or marshland; sometimes poisons livestock -12617739 20 n 02 Zannichelliaceae 0 family_Zannichelliaceae 0 003 @ 11555413 n 0000 #m 12610933 n 0000 %m 12617950 n 0000 | alternative classification for some genera included in Potamogetonaceae; one species -12617950 20 n 02 Zannichellia 0 genus_Zannichellia 0 002 @ 11556857 n 0000 #m 12617739 n 0000 | horned pondweed: completely submerged herbs; in some classifications included in Potamogetonaceae -12618146 20 n 02 horned_pondweed 0 Zannichellia_palustris 0 001 @ 12615710 n 0000 | found in still or slow-moving fresh or brackish water; useful to oxygenate cool water ponds and aquaria -12618336 20 n 03 Zosteraceae 0 family_Zosteraceae 0 eelgrass_family 0 002 @ 11555413 n 0000 #m 12610933 n 0000 | used in some classifications: essentially equivalent to Potamogetonaceae -12618524 20 n 02 Zostera 0 genus_Zostera 0 003 @ 11556857 n 0000 #m 12615427 n 0000 %m 12618727 n 0000 | (or in some classifications family Zosteraceae) small genus of widely distributed marine plants -12618727 20 n 04 eelgrass 1 grass_wrack 0 sea_wrack 2 Zostera_marina 0 002 @ 13121544 n 0000 #m 12618524 n 0000 | submerged marine plant with very long narrow leaves found in abundance along North Atlantic coasts -12618942 20 n 02 Rosales 0 order_Rosales 0 013 @ 11534677 n 0000 #m 12212810 n 0000 %m 11746224 n 0000 %m 11746419 n 0000 %m 11746776 n 0000 %m 12619306 n 0000 %m 12784543 n 0000 %m 12785110 n 0000 %m 12787007 n 0000 %m 12787565 n 0000 %m 12792041 n 0000 %m 12804621 n 0000 %m 12806270 n 0000 | in some classifications this category does not include Leguminosae -12619306 20 n 03 Rosaceae 0 family_Rosaceae 0 rose_family 0 028 @ 11566682 n 0000 #m 12618942 n 0000 + 03141878 a 0101 %m 12620031 n 0000 %m 12622653 n 0000 %m 12623368 n 0000 %m 12624249 n 0000 %m 12624873 n 0000 %m 12625215 n 0000 %m 12626030 n 0000 %m 12628872 n 0000 %m 12629187 n 0000 %m 12629523 n 0000 %m 12629946 n 0000 %m 12631224 n 0000 %m 12632875 n 0000 %m 12633386 n 0000 %m 12636107 n 0000 %m 12636430 n 0000 %m 12636705 n 0000 %m 12637319 n 0000 %m 12637729 n 0000 %m 12644464 n 0000 %m 12651062 n 0000 %m 12651465 n 0000 %m 12653056 n 0000 %m 12657940 n 0000 %m 12659203 n 0000 | a large family of dicotyledonous plants of order Rosales; have alternate leaves and five-petaled flowers with numerous stamens -12620031 20 n 02 Rosa 0 genus_Rosa 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12620196 n 0000 | large genus of erect or climbing prickly shrubs including roses -12620196 20 n 02 rose 0 rosebush 0 014 @ 13112664 n 0000 #m 12620031 n 0000 %p 12620546 n 0000 ~ 12620661 n 0000 ~ 12620779 n 0000 ~ 12620969 n 0000 ~ 12621110 n 0000 ~ 12621260 n 0000 ~ 12621410 n 0000 ~ 12621619 n 0000 ~ 12621945 n 0000 ~ 12622072 n 0000 ~ 12622297 n 0000 ~ 12622483 n 0000 | any of many shrubs of the genus Rosa that bear roses -12620546 20 n 03 hip 0 rose_hip 0 rosehip 0 002 @ 13134947 n 0000 #p 12620196 n 0000 | the fruit of a rose plant -12620661 20 n 02 mountain_rose 0 Rosa_pendulina 0 001 @ 12620196 n 0000 | European alpine rose with crimson flowers -12620779 20 n 02 ground_rose 0 Rosa_spithamaea 0 001 @ 12620196 n 0000 | low-growing bristly shrub of southern Oregon and California with creeping rootstocks and usually corymbose flowers -12620969 20 n 02 banksia_rose 0 Rosa_banksia 0 001 @ 12620196 n 0000 | Chinese evergreen climbing rose with yellow or white single flowers -12621110 20 n 02 dog_rose 0 Rosa_canina 0 001 @ 12620196 n 0000 | prickly wild rose with delicate pink or white scentless flowers; native to Europe -12621260 20 n 03 China_rose 2 Bengal_rose 0 Rosa_chinensis 0 001 @ 12620196 n 0000 | shrubby Chinese rose; ancestor of many cultivated garden roses -12621410 20 n 03 damask_rose 0 summer_damask_rose 0 Rosa_damascena 0 001 @ 12620196 n 0000 | large hardy very fragrant pink rose; cultivated in Asia Minor as source of attar of roses; parent of many hybrids -12621619 20 n 06 sweetbrier 0 sweetbriar 0 brier 3 briar 3 eglantine 0 Rosa_eglanteria 0 001 @ 12620196 n 0000 | Eurasian rose with prickly stems and fragrant leaves and bright pink flowers followed by scarlet hips -12621836 20 n 03 brier 4 brierpatch 0 brier_patch 0 001 @ 08436759 n 0000 | tangled mass of prickly plants -12621945 20 n 02 Cherokee_rose 0 Rosa_laevigata 0 001 @ 12620196 n 0000 | Chinese climbing rose with fragrant white blossoms -12622072 20 n 05 multiflora 0 multiflora_rose 0 Japanese_rose 0 baby_rose 0 Rosa_multiflora 0 001 @ 12620196 n 0000 | vigorously growing rose having clusters of numerous small flowers; used for hedges and as grafting stock -12622297 20 n 02 musk_rose 0 Rosa_moschata 0 001 @ 12620196 n 0000 | rose native to Mediterranean region having curved or climbing branches and loose clusters of musky-scented flowers -12622483 20 n 02 tea_rose 0 Rosa_odorata 0 001 @ 12620196 n 0000 | any of several hybrid bush roses derived from a tea-scented Chinese rose with pink or yellow flowers -12622653 20 n 01 genus_Agrimonia 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12622875 n 0000 | genus of herbs found chiefly in north temperate regions having pinnate leaves and yellow flowers followed by bristly fruit -12622875 20 n 02 agrimonia 0 agrimony 0 004 @ 12205694 n 0000 #m 12622653 n 0000 ~ 12623077 n 0000 ~ 12623211 n 0000 | a plant of the genus Agrimonia having spikelike clusters of small yellow flowers -12623077 20 n 02 harvest-lice 0 Agrimonia_eupatoria 0 001 @ 12622875 n 0000 | erect perennial Old World herb of dry grassy habitats -12623211 20 n 02 fragrant_agrimony 0 Agrimonia_procera 0 001 @ 12622875 n 0000 | fragrant European perennial herb found at woodland margins on moist soils -12623368 20 n 02 Amelanchier 0 genus_Amelanchier 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12623524 n 0000 | North American deciduous trees or shrubs -12623524 20 n 05 Juneberry 0 serviceberry 0 service_tree 2 shadbush 0 shadblow 0 005 @ 13112664 n 0000 #m 12623368 n 0000 %p 07745661 n 0000 ~ 12623818 n 0000 ~ 12624055 n 0000 | any of various North American trees or shrubs having showy white flowers and edible blue-black or purplish fruit -12623818 20 n 03 alderleaf_Juneberry 0 alder-leaved_serviceberry 0 Amelanchier_alnifolia 0 001 @ 12623524 n 0000 | shrub or small tree of northwestern North America having fragrant creamy white flowers and small waxy purple-red fruits -12624055 20 n 02 Bartram_Juneberry 0 Amelanchier_bartramiana 0 001 @ 12623524 n 0000 | open-growing shrub of eastern North America having pure white flowers and small waxy almost black fruits -12624249 20 n 02 Chaenomeles 0 genus_Chaenomeles 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12624381 n 0000 | flowering quince -12624381 20 n 01 flowering_quince 0 004 @ 13112664 n 0000 #m 12624249 n 0000 ~ 12624568 n 0000 ~ 12624721 n 0000 | Asiatic ornamental shrub with spiny branches and pink or red blossoms -12624568 20 n 03 japonica 1 maule's_quince 0 Chaenomeles_japonica 0 001 @ 12624381 n 0000 | deciduous thorny shrub native to Japan having red blossoms -12624721 20 n 02 Japanese_quince 0 Chaenomeles_speciosa 0 001 @ 12624381 n 0000 | deciduous thorny shrub native to China having red or white blossoms -12624873 20 n 02 Chrysobalanus 0 genus_Chrysobalanus 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12625003 n 0000 | coco plums -12625003 20 n 05 coco_plum 0 coco_plum_tree 0 cocoa_plum 0 icaco 0 Chrysobalanus_icaco 0 003 @ 12651821 n 0000 #m 12624873 n 0000 %p 07758407 n 0000 | small tropical American tree bearing edible plumlike fruit -12625215 20 n 01 genus_Cotoneaster 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12625383 n 0000 | genus of deciduous or evergreen Old World shrubs widely cultivated -12625383 20 n 01 cotoneaster 0 004 @ 13112664 n 0000 #m 12625215 n 0000 ~ 12625670 n 0000 ~ 12625823 n 0000 | any shrub of the genus Cotoneaster: erect or creeping shrubs having richly colored autumn foliage and many small white to pinkish flowers followed by tiny red or black fruits -12625670 20 n 01 Cotoneaster_dammeri 0 001 @ 12625383 n 0000 | climbing evergreen shrub with white flowers and red berries; often used as ground cover -12625823 20 n 01 Cotoneaster_horizontalis 0 001 @ 12625383 n 0000 | deciduous flat-growing shrub with a fanned herringbone pattern and having reddish flowers and orange-red berries; used as a ground cover -12626030 20 n 02 Crataegus 0 genus_Crataegus 0 011 @ 11585340 n 0000 #m 12619306 n 0000 %m 12626353 n 0000 %m 12626674 n 0000 %m 12626878 n 0000 %m 12627119 n 0000 %m 12627347 n 0000 %m 12627526 n 0000 %m 12627750 n 0000 %m 12628060 n 0000 %m 12628356 n 0000 | thorny shrubs and small trees: hawthorn; thorn; thorn apple -12626353 20 n 02 hawthorn 0 haw 0 012 @ 13112664 n 0000 #m 12626030 n 0000 ~ 12626674 n 0000 ~ 12626878 n 0000 ~ 12627119 n 0000 ~ 12627347 n 0000 ~ 12627526 n 0000 ~ 12627750 n 0000 ~ 12628060 n 0000 ~ 12628356 n 0000 ~ 12628579 n 0000 ~ 12628705 n 0000 | a spring-flowering shrub or small tree of the genus Crataegus -12626674 20 n 04 parsley_haw 0 parsley-leaved_thorn 0 Crataegus_apiifolia 0 Crataegus_marshallii 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | southern United States hawthorn with pinnately lobed leaves -12626878 20 n 02 scarlet_haw 0 Crataegus_biltmoreana 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | common shrub or small tree of the eastern United States having few thorns and white flowers in corymbs followed by bright orange-red berries -12627119 20 n 05 blackthorn 1 pear_haw 0 pear_hawthorn 0 Crataegus_calpodendron 0 Crataegus_tomentosa 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | erect and almost thornless American hawthorn with somewhat pear-shaped berries -12627347 20 n 03 cockspur_thorn 0 cockspur_hawthorn 0 Crataegus_crus-galli 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | eastern United States hawthorn with long straight thorns -12627526 20 n 03 mayhaw 0 summer_haw 0 Crataegus_aestivalis 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | hawthorn of southern United States bearing a juicy, acidic, scarlet fruit that is often used in jellies or preserves -12627750 20 n 05 whitethorn 0 English_hawthorn 1 may 0 Crataegus_laevigata 0 Crataegus_oxycantha 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | thorny Eurasian shrub of small tree having dense clusters of white to scarlet flowers followed by deep red berries; established as an escape in eastern North America -12628060 20 n 02 English_hawthorn 2 Crataegus_monogyna 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | European hawthorn having deeply cleft leaves and bright red fruits; widely cultivated in many varieties and often grown as impenetrable hedges; established as an escape in eastern North America -12628356 20 n 04 red_haw 1 downy_haw 0 Crataegus_mollis 0 Crataegus_coccinea_mollis 0 002 @ 12626353 n 0000 #m 12626030 n 0000 | American red-fruited hawthorn with stems and leaves densely covered with short woolly hairs -12628579 20 n 02 evergreen_thorn 0 Crataegus_oxyacantha 0 001 @ 12626353 n 0000 | evergreen hawthorn of southeastern Europe -12628705 20 n 03 red_haw 2 Crataegus_pedicellata 0 Crataegus_coccinea 0 001 @ 12626353 n 0000 | American red-fruited hawthorn with dense corymbs of pink-red flowers -12628872 20 n 02 Cydonia 0 genus_Cydonia 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12628986 n 0000 | quince -12628986 20 n 03 quince 0 quince_bush 0 Cydonia_oblonga 0 003 @ 12651821 n 0000 #m 12628872 n 0000 %p 07769584 n 0000 | small Asian tree with pinkish flowers and pear-shaped fruit; widely cultivated -12629187 20 n 02 Dryas 0 genus_Dryas 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12629305 n 0000 | mountain avens -12629305 20 n 02 mountain_avens 0 Dryas_octopetala 0 002 @ 13118707 n 0000 #m 12629187 n 0000 | creeping evergreen shrub with large white flowers; widely distributed in northern portions of Eurasia and North America -12629523 20 n 02 Eriobotrya 0 genus_Eriobotrya 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12629666 n 0000 | Asiatic evergreen fruit trees -12629666 20 n 05 loquat 0 loquat_tree 0 Japanese_medlar 0 Japanese_plum 2 Eriobotrya_japonica 0 003 @ 12651821 n 0000 #m 12629523 n 0000 %p 07763792 n 0000 | evergreen tree of warm regions having fuzzy yellow olive-sized fruit with a large free stone; native to China and Japan -12629946 20 n 02 Fragaria 0 genus_Fragaria 0 007 @ 11585340 n 0000 #m 12619306 n 0000 %m 12630144 n 0000 %m 12630478 n 0000 %m 12630641 n 0000 %m 12630763 n 0000 %m 12630999 n 0000 | strawberries -12630144 20 n 01 strawberry 0 006 @ 12205694 n 0000 #m 12629946 n 0000 ~ 12630478 n 0000 ~ 12630641 n 0000 ~ 12630763 n 0000 ~ 12630999 n 0000 | any of various low perennial herbs with many runners and bearing white flowers followed by edible fruits having many small achenes scattered on the surface of an enlarged red pulpy berry -12630478 20 n 03 garden_strawberry 0 cultivated_strawberry 0 Fragaria_ananassa 0 003 @ 12630144 n 0000 #m 12629946 n 0000 %p 07745940 n 0000 | widely cultivated -12630641 20 n 03 wild_strawberry 0 wood_strawberry 0 Fragaria_vesca 0 002 @ 12630144 n 0000 #m 12629946 n 0000 | Europe -12630763 20 n 03 beach_strawberry 0 Chilean_strawberry 0 Fragaria_chiloensis 0 002 @ 12630144 n 0000 #m 12629946 n 0000 | wild strawberry of western United States and South America; source of many varieties of cultivated strawberries -12630999 20 n 03 Virginia_strawberry 0 scarlet_strawberry 0 Fragaria_virginiana 0 002 @ 12630144 n 0000 #m 12629946 n 0000 | North American wild strawberry with sweet scarlet fruit; a source of many cultivated strawberries -12631224 20 n 02 Geum 0 genus_Geum 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12631331 n 0000 | avens -12631331 20 n 01 avens 0 009 @ 13118707 n 0000 #m 12631224 n 0000 ~ 12631637 n 0000 ~ 12631813 n 0000 ~ 12631932 n 0000 ~ 12632072 n 0000 ~ 12632335 n 0000 ~ 12632526 n 0000 ~ 12632733 n 0000 | any of various perennials of the genus Geum having usually pinnate basal leaves and variously colored flowers -12631637 20 n 03 yellow_avens 1 Geum_alleppicum_strictum 0 Geum_strictum 0 001 @ 12631331 n 0000 | erect subshrub with deep yellow flowers; Europe and Asia and North America -12631813 20 n 03 bennet 1 white_avens 1 Geum_canadense 0 001 @ 12631331 n 0000 | North American white-flowered avens -12631932 20 n 02 yellow_avens 2 Geum_macrophyllum 0 001 @ 12631331 n 0000 | hairy yellow-flowered plant of eastern Asia and North America -12632072 20 n 05 water_avens 0 Indian_chocolate 0 purple_avens 1 chocolate_root 0 Geum_rivale 0 001 @ 12631331 n 0000 | erect perennial of north temperate zone having pinnate leaves and a few nodding flowers with a brown-purple calyx and orange and pink petals -12632335 20 n 03 prairie_smoke 0 purple_avens 2 Geum_triflorum 0 001 @ 12631331 n 0000 | North American perennial with hairy basal pinnate leaves and purple flowers and plume-tipped fruits -12632526 20 n 05 herb_bennet 0 cloveroot 0 clover-root 0 wood_avens 0 Geum_urbanum 0 001 @ 12631331 n 0000 | hairy Eurasian plant with small yellow flowers and an astringent root formerly used medicinally -12632733 20 n 03 bennet 2 white_avens 2 Geum_virginianum 0 001 @ 12631331 n 0000 | avens of Virginia having pale or greenish yellow flowers -12632875 20 n 02 Heteromeles 0 genus_Heteromeles 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12633061 n 0000 | one species: toyon; in some classifications included in genus Photinia -12633061 20 n 06 toyon 0 tollon 0 Christmasberry 1 Christmas_berry 1 Heteromeles_arbutifolia 0 Photinia_arbutifolia 0 002 @ 13112664 n 0000 #m 12632875 n 0000 | ornamental evergreen treelike shrub of the Pacific coast of the United States having large white flowers and red berrylike fruits; often placed in genus Photinia -12633386 20 n 02 Malus 0 genus_Malus 0 007 @ 11585340 n 0000 #m 12619306 n 0000 %m 12633638 n 0000 %m 12633994 n 0000 %m 12634734 n 0000 %m 12634986 n 0000 %m 12635151 n 0000 | apple trees; found throughout temperate zones of the northern hemisphere -12633638 20 n 01 apple_tree 0 006 @ 12651821 n 0000 #m 12633386 n 0000 %s 12633866 n 0000 ~ 12633994 n 0000 ~ 12634211 n 0000 ~ 12634429 n 0000 | any tree of the genus Malus especially those bearing firm rounded edible fruits -12633866 20 n 01 applewood 0 002 @ 12652876 n 0000 #s 12633638 n 0000 | wood of any of various apple trees of the genus Malus -12633994 20 n 03 apple 0 orchard_apple_tree 0 Malus_pumila 0 003 @ 12633638 n 0000 #m 12633386 n 0000 %p 07739125 n 0000 | native Eurasian tree widely cultivated in many varieties for its firm rounded edible fruits -12634211 20 n 03 wild_apple 0 crab_apple 1 crabapple 1 005 @ 12633638 n 0000 ~ 12634986 n 0000 ~ 12635151 n 0000 ~ 12635359 n 0000 ~ 12635744 n 0000 | any of numerous wild apple trees usually with small acidic fruit -12634429 20 n 03 crab_apple 2 crabapple 2 cultivated_crab_apple 0 004 @ 12633638 n 0000 %p 07739344 n 0000 ~ 12634734 n 0000 ~ 12635532 n 0000 | any of numerous varieties of crab apples cultivated for their small acidic (usually bright red) fruit used for preserves or as ornamentals for their blossoms -12634734 20 n 05 Siberian_crab 0 Siberian_crab_apple 0 cherry_apple 0 cherry_crab 0 Malus_baccata 0 002 @ 12634429 n 0000 #m 12633386 n 0000 | Asian wild crab apple cultivated in many varieties for it small acid usually red fruit used for preserving -12634986 20 n 02 wild_crab 0 Malus_sylvestris 0 002 @ 12634211 n 0000 #m 12633386 n 0000 | wild crab apple native to Europe; a chief ancestor of cultivated apples -12635151 20 n 03 American_crab_apple 0 garland_crab 0 Malus_coronaria 0 002 @ 12634211 n 0000 #m 12633386 n 0000 | medium-sized tree of the eastern United States having pink blossoms and small yellow fruit -12635359 20 n 02 Oregon_crab_apple 0 Malus_fusca 0 001 @ 12634211 n 0000 | small tree or shrub of western United States having white blossoms and tiny yellow or red fruit -12635532 20 n 03 Southern_crab_apple 0 flowering_crab 1 Malus_angustifolia 0 001 @ 12634429 n 0000 | small tree or shrub of southeastern United States; cultivated as an ornamental for its rose-colored blossoms -12635744 20 n 05 Iowa_crab 0 Iowa_crab_apple 0 prairie_crab 0 western_crab_apple 0 Malus_ioensis 0 002 @ 12634211 n 0000 ~ 12635955 n 0000 | wild crab apple of western United States with fragrant pink flowers -12635955 20 n 02 Bechtel_crab 0 flowering_crab 2 001 @ 12635744 n 0000 | derived from the Iowa crab and cultivated for its large double pink blossoms -12636107 20 n 02 Mespilus 0 genus_Mespilus 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12636224 n 0000 | medlars -12636224 20 n 03 medlar 1 medlar_tree 0 Mespilus_germanica 0 003 @ 12651821 n 0000 #m 12636107 n 0000 %p 07766891 n 0000 | small deciduous Eurasian tree cultivated for its fruit that resemble crab apples -12636430 20 n 02 Photinia 0 genus_Photinia 0 002 @ 11585340 n 0000 #m 12619306 n 0000 | genus of deciduous and evergreen east Asian trees and shrubs widely cultivated as ornamentals for their white flowers and red fruits; in some classifications includes genus Heteromeles -12636705 20 n 02 Potentilla 0 genus_Potentilla 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12636885 n 0000 | chiefly perennial northern hemisphere herbs and shrubs: cinquefoil -12636885 20 n 02 cinquefoil 0 five-finger 0 003 @ 13112664 n 0000 #m 12636705 n 0000 ~ 12637123 n 0000 | any of a numerous plants grown for their five-petaled flowers; abundant in temperate regions; alleged to have medicinal properties -12637123 20 n 04 silverweed 2 goose-tansy 0 goose_grass 0 Potentilla_anserina 0 001 @ 12636885 n 0000 | low-growing perennial having leaves silvery beneath; northern United States; Europe; Asia -12637319 20 n 02 Poterium 0 genus_Poterium 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12637485 n 0000 | a genus of thorny herbs or shrubs of the family Rosaceae -12637485 20 n 04 salad_burnet 0 burnet_bloodwort 0 pimpernel 2 Poterium_sanguisorba 0 003 @ 12205694 n 0000 #m 12637319 n 0000 %p 07820036 n 0000 | European garden herb with purple-tinged flowers and leaves that are sometimes used for salads -12637729 20 n 02 Prunus 0 genus_Prunus 0 018 @ 11585340 n 0000 #m 12619306 n 0000 %m 12638218 n 0000 %m 12640435 n 0000 %m 12640607 n 0000 %m 12641007 n 0000 %m 12641180 n 0000 %m 12641413 n 0000 %m 12642734 n 0000 %m 12643113 n 0000 %m 12644902 n 0000 %m 12646950 n 0000 %m 12647560 n 0000 %m 12648045 n 0000 %m 12648196 n 0000 %m 12648424 n 0000 %m 12649723 n 0000 %m 12650556 n 0000 | a genus of shrubs and trees of the family Rosaceae that is widely distributed in temperate regions -12638218 20 n 02 plum 0 plum_tree 0 011 @ 12651821 n 0000 #m 12637729 n 0000 %p 07751451 n 0000 ~ 12638556 n 0000 ~ 12639584 n 0000 ~ 12639736 n 0000 ~ 12640081 n 0000 ~ 12640284 n 0000 ~ 12643313 n 0000 ~ 12648693 n 0000 ~ 12649866 n 0000 | any of several trees producing edible oval fruit having a smooth skin and a single hard stone -12638556 20 n 02 wild_plum 0 wild_plum_tree 0 006 @ 12638218 n 0000 ~ 12638753 n 0000 ~ 12638964 n 0000 ~ 12639168 n 0000 ~ 12639376 n 0000 ~ 12646397 n 0000 | an uncultivated plum tree or shrub -12638753 20 n 04 Allegheny_plum 0 Alleghany_plum 0 sloe 2 Prunus_alleghaniensis 0 002 @ 12638556 n 0000 %p 07752109 n 0000 | wild plum of northeastern United States having dark purple fruits with yellow flesh -12638964 20 n 04 American_red_plum 0 August_plum 0 goose_plum 0 Prunus_americana 0 001 @ 12638556 n 0000 | wild plum trees of eastern and central North America having red-orange fruit with yellow flesh -12639168 20 n 04 chickasaw_plum 0 hog_plum 1 hog_plum_bush 0 Prunus_angustifolia 0 002 @ 12638556 n 0000 %p 07765728 n 0000 | small native American shrubby tree bearing small edible yellow to reddish fruit -12639376 20 n 03 beach_plum 0 beach_plum_bush 0 Prunus_maritima 0 002 @ 12638556 n 0000 %p 07751977 n 0000 | seacoast shrub of northeastern North America having showy white blossoms and edible purple fruit -12639584 20 n 02 common_plum 0 Prunus_domestica 0 001 @ 12638218 n 0000 | any of various widely distributed plums grown in the cooler temperate areas -12639736 20 n 02 bullace 0 Prunus_insititia 0 002 @ 12638218 n 0000 ~ 12639910 n 0000 | small wild or half-domesticated Eurasian plum bearing small ovoid fruit in clusters -12639910 20 n 03 damson_plum 0 damson_plum_tree 0 Prunus_domestica_insititia 0 002 @ 12639736 n 0000 %p 07751737 n 0000 | plum tree long cultivated for its edible fruit -12640081 20 n 02 big-tree_plum 0 Prunus_mexicana 0 001 @ 12638218 n 0000 | small tree of southwestern United States having purplish-red fruit sometimes cultivated as an ornamental for its large leaves -12640284 20 n 02 Canada_plum 0 Prunus_nigra 0 001 @ 12638218 n 0000 | small tree native to northeastern North America having oblong orange-red fruit -12640435 20 n 02 plumcot 0 plumcot_tree 0 003 @ 12651821 n 0000 #m 12637729 n 0000 %p 07768590 n 0000 | hybrid produced by crossing Prunus domestica and Prunus armeniaca -12640607 20 n 02 apricot 0 apricot_tree 0 005 @ 12651821 n 0000 #m 12637729 n 0000 ~ 12640839 n 0000 ~ 12641007 n 0000 ~ 12641180 n 0000 | Asian tree having clusters of usually white blossoms and edible fruit resembling the peach -12640839 20 n 03 Japanese_apricot 0 mei 0 Prunus_mume 0 001 @ 12640607 n 0000 | Japanese ornamental tree with fragrant white or pink blossoms and small yellow fruits -12641007 20 n 02 common_apricot 0 Prunus_armeniaca 0 003 @ 12640607 n 0000 #m 12637729 n 0000 %p 07750872 n 0000 | temperate zone tree bearing downy yellow to rosy fruits -12641180 20 n 03 purple_apricot 0 black_apricot 0 Prunus_dasycarpa 0 002 @ 12640607 n 0000 #m 12637729 n 0000 | small hybrid apricot of Asia and Asia Minor having purplish twigs and white flowers following by inferior purple fruit -12641413 20 n 02 cherry 0 cherry_tree 0 011 @ 12651821 n 0000 #m 12637729 n 0000 %p 07757132 n 0000 %s 12641796 n 0000 ~ 12641931 n 0000 ~ 12642200 n 0000 ~ 12642964 n 0000 ~ 12643473 n 0000 ~ 12647231 n 0000 ~ 12649065 n 0000 ~ 12650556 n 0000 | any of numerous trees and shrubs producing a small fleshy round fruit with a single hard stone; many also produce a valuable hardwood -12641796 20 n 01 cherry 2 002 @ 15098161 n 0000 #s 12641413 n 0000 | wood of any of various cherry trees especially the black cherry -12641931 20 n 02 wild_cherry 0 wild_cherry_tree 0 004 @ 12641413 n 0000 %p 12642090 n 0000 ~ 12647376 n 0000 ~ 12648888 n 0000 | an uncultivated cherry tree -12642090 20 n 01 wild_cherry 2 002 @ 13134947 n 0000 #p 12641931 n 0000 | the fruit of the wild cherry tree -12642200 20 n 02 sweet_cherry 0 Prunus_avium 0 004 @ 12641413 n 0000 %p 07757312 n 0000 ~ 12642435 n 0000 ~ 12642600 n 0000 | large Eurasian tree producing small dark bitter fruit in the wild but edible sweet fruit under cultivation -12642435 20 n 03 heart_cherry 0 oxheart 0 oxheart_cherry 0 001 @ 12642200 n 0000 | any of several cultivated sweet cherries having sweet juicy heart-shaped fruits -12642600 20 n 03 gean 0 mazzard 0 mazzard_cherry 0 001 @ 12642200 n 0000 | wild or seedling sweet cherry used as stock for grafting -12642734 20 n 03 Western_sand_cherry 0 Rocky_Mountains_cherry 0 Prunus_besseyi 0 002 @ 13118707 n 0000 #m 12637729 n 0000 | dwarf ornamental shrub of western United States having large black to red and yellow sweet edible fruit -12642964 20 n 03 capulin 0 capulin_tree 0 Prunus_capuli 0 002 @ 12641413 n 0000 %p 07757874 n 0000 | Mexican black cherry tree having edible fruit -12643113 20 n 05 cherry_laurel 2 laurel_cherry 2 mock_orange 4 wild_orange 1 Prunus_caroliniana 0 002 @ 13109733 n 0000 #m 12637729 n 0000 | small flowering evergreen tree of southern United States -12643313 20 n 04 cherry_plum 0 myrobalan 0 myrobalan_plum 0 Prunus_cerasifera 0 001 @ 12638218 n 0000 | small Asiatic tree bearing edible red or yellow fruit -12643473 20 n 03 sour_cherry 1 sour_cherry_tree 1 Prunus_cerasus 0 004 @ 12641413 n 0000 ~ 12643688 n 0000 ~ 12643877 n 0000 ~ 12644057 n 0000 | rather small Eurasian tree producing red to black acid edible fruit -12643688 20 n 02 amarelle 0 Prunus_cerasus_caproniana 0 002 @ 12643473 n 0000 %p 07758125 n 0000 | any of several cultivated sour cherry trees bearing pale red fruit with colorless juice -12643877 20 n 02 morello 0 Prunus_cerasus_austera 0 002 @ 12643473 n 0000 %p 07758260 n 0000 | any of several cultivated sour cherry trees bearing fruit with dark skin and juice -12644057 20 n 04 marasca 0 marasca_cherry 0 maraschino_cherry 0 Prunus_cerasus_marasca 0 002 @ 12643473 n 0000 %p 12644283 n 0000 | Dalmatian bitter wild cherry tree bearing fruit whose juice is made into maraschino liqueur -12644283 20 n 01 marasca 2 003 @ 13134947 n 0000 #p 12644057 n 0000 #s 07910379 n 0000 | small bitter fruit of the marasca cherry tree from whose juice maraschino liqueur is made -12644464 20 n 02 Amygdalaceae 0 family_Amygdalaceae 0 003 @ 11562747 n 0000 #m 12619306 n 0000 %m 12644713 n 0000 | used in former classifications for plum and peach and almond trees which are now usually classified as members of the genus Prunus -12644713 20 n 02 Amygdalus 0 genus_Amygdalus 0 002 @ 11585340 n 0000 #m 12644464 n 0000 | used in former classifications for peach and almond trees which are now included in genus Prunus -12644902 20 n 01 almond_tree 0 008 @ 12651821 n 0000 #m 12637729 n 0000 ~ 12645174 n 0000 ~ 12645530 n 0000 ~ 12646197 n 0000 ~ 12646740 n 0000 ~ 12650229 n 0000 ~ 12650379 n 0000 | any of several small bushy trees having pink or white blossoms and usually bearing nuts -12645174 20 n 05 almond 0 sweet_almond 0 Prunus_dulcis 0 Prunus_amygdalus 0 Amygdalus_communis 0 003 @ 12644902 n 0000 %p 07750586 n 0000 ~ 12646072 n 0000 | small bushy deciduous tree native to Asia and North Africa having pretty pink blossoms and highly prized edible nuts enclosed in a hard green hull; cultivated in southern Australia and California -12645530 20 n 03 bitter_almond 0 Prunus_dulcis_amara 0 Amygdalus_communis_amara 0 001 @ 12644902 n 0000 | almond trees having white blossoms and poisonous nuts yielding an oil used for flavoring and for medicinal purposes -12645754 20 n 03 almond_oil 0 expressed_almond_oil 0 sweet_almond_oil 0 001 @ 14966667 n 0000 | pale yellow fatty oil expressed from sweet or bitter almonds -12645913 20 n 01 bitter_almond_oil 0 001 @ 14892655 n 0000 | pale yellow essential oil obtained from bitter almonds by distillation from almond cake or meal -12646072 20 n 01 jordan_almond 0 001 @ 12645174 n 0000 | variety of large almond from Malaga, Spain; used in confectionery -12646197 20 n 02 dwarf_flowering_almond 0 Prunus_glandulosa 0 001 @ 12644902 n 0000 | small Chinese shrub with smooth unfurrowed dark red fruit grown especially for its red or pink or white flowers -12646397 20 n 05 holly-leaved_cherry 0 holly-leaf_cherry 0 evergreen_cherry 0 islay 0 Prunus_ilicifolia 0 001 @ 12638556 n 0000 | California evergreen wild plum with spiny leathery leaves and white flowers -12646605 20 n 03 fuji 0 fuji_cherry 0 Prunus_incisa 0 001 @ 12649065 n 0000 | shrubby Japanese cherry tree having pale pink blossoms -12646740 20 n 03 flowering_almond 1 oriental_bush_cherry 0 Prunus_japonica 0 001 @ 12644902 n 0000 | woody oriental plant with smooth unfurrowed red fruit grown especially for its white or pale pink blossoms -12646950 20 n 03 cherry_laurel 1 laurel_cherry 1 Prunus_laurocerasus 0 002 @ 13112664 n 0000 #m 12637729 n 0000 | frequently cultivated Eurasian evergreen shrub or small tree having showy clusters of white flowers and glossy foliage and yielding oil similar to bitter almond oil -12647231 20 n 02 Catalina_cherry 0 Prunus_lyonii 0 001 @ 12641413 n 0000 | evergreen shrub or small tree found on Catalina Island (California) -12647376 20 n 02 bird_cherry 0 bird_cherry_tree 0 003 @ 12641931 n 0000 ~ 12647560 n 0000 ~ 12647893 n 0000 | any of several small-fruited cherry trees frequented or fed on by birds -12647560 20 n 04 hagberry_tree 0 European_bird_cherry 0 common_bird_cherry 0 Prunus_padus 0 003 @ 12647376 n 0000 #m 12637729 n 0000 %p 12647787 n 0000 | small European cherry tree closely resembling the American chokecherry -12647787 20 n 01 hagberry 0 002 @ 13134947 n 0000 #p 12647560 n 0000 | small cherry much liked by birds -12647893 20 n 02 pin_cherry 0 Prunus_pensylvanica 0 001 @ 12647376 n 0000 | small shrubby North American wild cherry with small bright red acid fruit -12648045 20 n 03 peach 0 peach_tree 0 Prunus_persica 0 003 @ 12651821 n 0000 #m 12637729 n 0000 %p 07751004 n 0000 | cultivated in temperate regions -12648196 20 n 03 nectarine 0 nectarine_tree 0 Prunus_persica_nectarina 0 003 @ 12651821 n 0000 #m 12637729 n 0000 %p 07751148 n 0000 | variety or mutation of the peach bearing fruit with smooth skin and (usually) yellow flesh -12648424 20 n 05 sand_cherry 0 Prunus_pumila 0 Prunus_pumilla_susquehanae 0 Prunus_susquehanae 0 Prunus_cuneata 0 002 @ 13112664 n 0000 #m 12637729 n 0000 | small straggling American cherry growing on sandy soil and having minute scarcely edible purplish-black fruit -12648693 20 n 02 Japanese_plum 1 Prunus_salicina 0 001 @ 12638218 n 0000 | small tree of China and Japan bearing large yellow to red plums usually somewhat inferior to European plums in flavor -12648888 20 n 04 black_cherry 0 black_cherry_tree 0 rum_cherry 0 Prunus_serotina 0 001 @ 12641931 n 0000 | large North American wild cherry with round black sour edible fruit -12649065 20 n 01 flowering_cherry 0 005 @ 12641413 n 0000 ~ 12646605 n 0000 ~ 12649317 n 0000 ~ 12649539 n 0000 ~ 12650038 n 0000 | any of several shrubs or trees of the genus Prunus cultivated for their showy white or pink single or double blossoms -12649317 20 n 04 oriental_cherry 0 Japanese_cherry 0 Japanese_flowering_cherry 1 Prunus_serrulata 0 001 @ 12649065 n 0000 | ornamental tree with inedible fruits widely cultivated in many varieties for its white blossoms -12649539 20 n 02 Japanese_flowering_cherry 2 Prunus_sieboldii 0 001 @ 12649065 n 0000 | ornamental tree with inedible fruit widely cultivated in many varieties for its pink blossoms -12649723 20 n 03 blackthorn 2 sloe 1 Prunus_spinosa 0 002 @ 13112664 n 0000 #m 12637729 n 0000 | a thorny Eurasian bush with plumlike fruits -12649866 20 n 03 Sierra_plum 0 Pacific_plum 0 Prunus_subcordata 0 001 @ 12638218 n 0000 | shrub of the Pacific coast of the United States bearing small red insipid fruit -12650038 20 n 03 rosebud_cherry 0 winter_flowering_cherry 0 Prunus_subhirtella 0 001 @ 12649065 n 0000 | shrub or tree native to Japan cultivated as an ornamental for its rose-pink flowers -12650229 20 n 03 Russian_almond 0 dwarf_Russian_almond 0 Prunus_tenella 0 001 @ 12644902 n 0000 | Asiatic shrub cultivated for its rosy red flowers -12650379 20 n 02 flowering_almond 2 Prunus_triloba 0 001 @ 12644902 n 0000 | deciduous Chinese shrub or small tree with often trilobed leaves grown for its pink-white flowers -12650556 20 n 03 chokecherry 0 chokecherry_tree 0 Prunus_virginiana 0 004 @ 12641413 n 0000 #m 12637729 n 0000 %p 12650805 n 0000 ~ 12650915 n 0000 | a common wild cherry of eastern North America having small bitter black berries favored by birds -12650805 20 n 01 chokecherry 2 002 @ 13134947 n 0000 #p 12650556 n 0000 | the fruit of the chokecherry tree -12650915 20 n 03 western_chokecherry 0 Prunus_virginiana_demissa 0 Prunus_demissa 0 001 @ 12650556 n 0000 | chokecherry of western United States -12651062 20 n 01 genus_Pyracantha 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12651229 n 0000 | Eurasian evergreen thorny shrubs bearing red or orange-red berries -12651229 20 n 04 Pyracantha 0 pyracanth 0 fire_thorn 0 firethorn 0 002 @ 13112664 n 0000 #m 12651062 n 0000 | any of various thorny shrubs of the genus Pyracantha bearing small white flowers followed by hard red or orange-red berries -12651465 20 n 02 Pyrus 0 genus_Pyrus 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12651611 n 0000 | fruit trees native to the Old World: pears -12651611 20 n 03 pear 0 pear_tree 0 Pyrus_communis 0 003 @ 12651821 n 0000 #m 12651465 n 0000 %p 07767847 n 0000 | Old World tree having sweet gritty-textured juicy fruit; widely cultivated in many varieties -12651821 20 n 01 fruit_tree 0 055 @ 13109733 n 0000 ~ 11693981 n 0000 ~ 11706761 n 0000 ~ 12190869 n 0000 ~ 12299640 n 0000 ~ 12300840 n 0000 ~ 12327528 n 0000 ~ 12331655 n 0000 ~ 12332030 n 0000 ~ 12332218 n 0000 ~ 12333053 n 0000 ~ 12333530 n 0000 ~ 12333771 n 0000 ~ 12333961 n 0000 ~ 12334153 n 0000 ~ 12345280 n 0000 ~ 12366675 n 0000 ~ 12370174 n 0000 ~ 12373100 n 0000 ~ 12399132 n 0000 ~ 12400489 n 0000 ~ 12400720 n 0000 ~ 12400924 n 0000 ~ 12625003 n 0000 ~ 12628986 n 0000 ~ 12629666 n 0000 ~ 12633638 n 0000 ~ 12636224 n 0000 ~ 12638218 n 0000 ~ 12640435 n 0000 ~ 12640607 n 0000 ~ 12641413 n 0000 ~ 12644902 n 0000 ~ 12648045 n 0000 ~ 12648196 n 0000 ~ 12651611 n 0000 %s 12652876 n 0000 ~ 12667406 n 0000 ~ 12704343 n 0000 ~ 12704513 n 0000 ~ 12707781 n 0000 ~ 12717644 n 0000 ~ 12742290 n 0000 ~ 12743352 n 0000 ~ 12744387 n 0000 ~ 12744850 n 0000 ~ 12745386 n 0000 ~ 12745564 n 0000 ~ 12761284 n 0000 ~ 12765846 n 0000 ~ 12766043 n 0000 ~ 12771192 n 0000 ~ 12773651 n 0000 ~ 12774641 n 0000 ~ 12775717 n 0000 | tree bearing edible fruit -12652876 20 n 01 fruitwood 0 003 @ 15098161 n 0000 #s 12651821 n 0000 ~ 12633866 n 0000 | wood of various fruit trees (as apple or cherry or pear) used especially in cabinetwork -12653056 20 n 02 Rubus 0 genus_Rubus 0 004 @ 11585340 n 0000 #m 12619306 n 0000 %m 12653218 n 0000 %m 12654387 n 0000 | large genus of brambles bearing berries -12653218 20 n 01 bramble_bush 0 006 @ 13119870 n 0000 #m 12653056 n 0000 ~ 12653436 n 0000 ~ 12653633 n 0000 ~ 12653762 n 0000 ~ 12655869 n 0000 | any prickly shrub of the genus Rubus bearing edible aggregate fruits -12653436 20 n 05 lawyerbush 0 lawyer_bush 0 bush_lawyer 0 Rubus_cissoides 0 Rubus_australis 0 001 @ 12653218 n 0000 | stout-stemmed trailing shrub of New Zealand that scrambles over other growth -12653633 20 n 02 stone_bramble 0 Rubus_saxatilis 0 001 @ 12653218 n 0000 | European trailing bramble with red berrylike fruits -12653762 20 n 02 blackberry 0 blackberry_bush 0 005 @ 12653218 n 0000 ~ 12654012 n 0000 ~ 12654227 n 0000 ~ 12654387 n 0000 ~ 12654659 n 0000 | bramble with sweet edible black or dark purple berries that usually do not separate from the receptacle -12654012 20 n 02 true_blackberry 0 Rubus_fruticosus 0 002 @ 12653762 n 0000 %p 07744811 n 0000 | the true blackberry of Europe as well as any of numerous varieties having sweet edible black or dark purple berries -12654227 20 n 02 sand_blackberry 0 Rubus_cuneifolius 0 001 @ 12653762 n 0000 | stiff shrubby blackberry of the eastern United States (Connecticut to Florida) -12654387 20 n 03 dewberry 0 dewberry_bush 0 running_blackberry 0 007 @ 12653762 n 0000 #m 12653056 n 0000 ~ 12655245 n 0000 ~ 12655351 n 0000 ~ 12655498 n 0000 ~ 12655605 n 0000 ~ 12655726 n 0000 | any of several trailing blackberry brambles especially of North America -12654659 20 n 03 western_blackberry 0 western_dewberry 0 Rubus_ursinus 0 004 @ 12653762 n 0000 %p 07744811 n 0000 ~ 12654857 n 0000 ~ 12655062 n 0000 | American blackberry with oblong black fruit -12654857 20 n 02 boysenberry 0 boysenberry_bush 0 002 @ 12654659 n 0000 %p 07745046 n 0000 | cultivated hybrid bramble of California having large dark wine-red fruit with a flavor resembling raspberries -12655062 20 n 03 loganberry 0 Rubus_loganobaccus 0 Rubus_ursinus_loganobaccus 0 002 @ 12654659 n 0000 %p 07745357 n 0000 | red-fruited bramble native from Oregon to Baja California -12655245 20 n 02 American_dewberry 1 Rubus_canadensis 0 001 @ 12654387 n 0000 | North American dewberry -12655351 20 n 03 Northern_dewberry 0 American_dewberry 2 Rubus_flagellaris 0 002 @ 12654387 n 0000 %p 07745197 n 0000 | of eastern North America -12655498 20 n 02 Southern_dewberry 0 Rubus_trivialis 0 001 @ 12654387 n 0000 | of southern North America -12655605 20 n 03 swamp_dewberry 0 swamp_blackberry 0 Rubus_hispidus 0 001 @ 12654387 n 0000 | of eastern North America -12655726 20 n 02 European_dewberry 0 Rubus_caesius 0 002 @ 12654387 n 0000 %p 07745197 n 0000 | creeping European bramble bearing dewberries -12655869 20 n 02 raspberry 0 raspberry_bush 0 008 @ 12653218 n 0000 ~ 12656229 n 0000 ~ 12656685 n 0000 ~ 12656909 n 0000 ~ 12657082 n 0000 ~ 12657294 n 0000 ~ 12657509 n 0000 ~ 12657755 n 0000 | woody brambles bearing usually red but sometimes black or yellow fruits that separate from the receptacle when ripe and are rounder and smaller than blackberries -12656229 20 n 01 red_raspberry 0 003 @ 12655869 n 0000 ~ 12656369 n 0000 ~ 12656528 n 0000 | any of several raspberries bearing red fruit -12656369 20 n 04 wild_raspberry 0 European_raspberry 0 framboise 0 Rubus_idaeus 0 001 @ 12656229 n 0000 | the common European raspberry; fruit red or orange -12656528 20 n 03 American_raspberry 0 Rubus_strigosus 0 Rubus_idaeus_strigosus 0 002 @ 12656229 n 0000 %p 07745466 n 0000 | red raspberry of North America -12656685 20 n 05 black_raspberry 0 blackcap 0 blackcap_raspberry 0 thimbleberry 1 Rubus_occidentalis 0 002 @ 12655869 n 0000 %p 07745466 n 0000 | raspberry native to eastern North America having black thimble-shaped fruit -12656909 20 n 02 salmonberry 1 Rubus_spectabilis 0 001 @ 12655869 n 0000 | large erect red-flowered raspberry of western North America having large pinkish-orange berries -12657082 20 n 04 salmonberry 2 salmon_berry 0 thimbleberry 2 Rubus_parviflorus 0 001 @ 12655869 n 0000 | white-flowered raspberry of western North America and northern Mexico with thimble-shaped orange berries -12657294 20 n 06 cloudberry 0 dwarf_mulberry 0 bakeapple 0 baked-apple_berry 0 salmonberry 3 Rubus_chamaemorus 0 001 @ 12655869 n 0000 | creeping raspberry of north temperate regions with yellow or orange berries -12657509 20 n 04 flowering_raspberry 0 purple-flowering_raspberry 0 Rubus_odoratus 0 thimbleberry 3 001 @ 12655869 n 0000 | shrubby raspberry of eastern North America having showy rose to purplish flowers and red or orange thimble-shaped fruit -12657755 20 n 02 wineberry 1 Rubus_phoenicolasius 0 001 @ 12655869 n 0000 | raspberry of China and Japan having pale pink flowers grown for ornament and for the small red acid fruits -12657940 20 n 02 Sorbus 0 genus_Sorbus 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12658118 n 0000 | a genus of shrubs or trees of the family Rosaceae having feathery leaves -12658118 20 n 01 mountain_ash 1 006 @ 13109733 n 0000 #m 12657940 n 0000 ~ 12658308 n 0000 ~ 12658603 n 0000 ~ 12658715 n 0000 ~ 12658846 n 0000 | any of various trees of the genus Sorbus -12658308 20 n 04 rowan 0 rowan_tree 0 European_mountain_ash 0 Sorbus_aucuparia 0 002 @ 12658118 n 0000 %p 12658481 n 0000 | Eurasian tree with orange-red berrylike fruits -12658481 20 n 01 rowanberry 0 002 @ 13134947 n 0000 #p 12658308 n 0000 | decorative red berrylike fruit of a rowan tree -12658603 20 n 02 American_mountain_ash 0 Sorbus_americana 0 001 @ 12658118 n 0000 | a variety of mountain ash -12658715 20 n 02 Western_mountain_ash 0 Sorbus_sitchensis 0 001 @ 12658118 n 0000 | an ash of the western coast of North America -12658846 20 n 04 service_tree 1 sorb_apple 0 sorb_apple_tree 0 Sorbus_domestica 0 003 @ 12658118 n 0000 %p 07770180 n 0000 ~ 12659064 n 0000 | medium-sized European tree resembling the rowan but bearing edible fruit -12659064 20 n 02 wild_service_tree 0 Sorbus_torminalis 0 001 @ 12658846 n 0000 | European tree bearing edible small speckled brown fruit -12659203 20 n 02 Spiraea 0 genus_Spiraea 0 003 @ 11585340 n 0000 #m 12619306 n 0000 %m 12659356 n 0000 | a dicotyledonous genus of the family Rosaceae -12659356 20 n 02 spirea 1 spiraea 1 003 @ 13112664 n 0000 #m 12659203 n 0000 ~ 12659539 n 0000 | any rosaceous plant of the genus Spiraea; has sprays of small white or pink flowers -12659539 20 n 05 bridal_wreath 1 bridal-wreath 1 Saint_Peter's_wreath 0 St._Peter's_wreath 0 Spiraea_prunifolia 0 001 @ 12659356 n 0000 | shrub having copious small white flowers in spring -12659730 20 n 02 Rubiales 0 order_Rubiales 0 006 @ 11534677 n 0000 #m 11910835 n 0000 %m 12660009 n 0000 %m 12671157 n 0000 %m 12682054 n 0000 %m 12949722 n 0000 | an order of dicotyledonous plants of the subclass Asteridae; have opposite leaves and an inferior compound ovary -12660009 20 n 03 Rubiaceae 0 family_Rubiaceae 0 madder_family 0 019 @ 11566230 n 0000 #m 12659730 n 0000 %m 12660601 n 0000 %m 12660796 n 0000 %m 12661420 n 0000 %m 12661873 n 0000 %m 12662223 n 0000 %m 12662654 n 0000 %m 12663554 n 0000 %m 12664897 n 0000 %m 12666602 n 0000 %m 12667179 n 0000 %m 12667817 n 0000 %m 12668364 n 0000 %m 12668732 n 0000 %m 12669157 n 0000 %m 12669641 n 0000 %m 12670172 n 0000 %m 12670558 n 0000 | widely distributed family of mostly tropical trees and shrubs and herbs; includes coffee and chinchona and gardenia and madder and bedstraws and partridgeberry -12660601 20 n 02 madderwort 0 rubiaceous_plant 0 004 @ 11665372 n 0000 #m 12660009 n 0000 ~ 12661045 n 0000 ~ 12661227 n 0000 | any of numerous trees or shrubs or vines of the family Rubiaceae -12660796 20 n 02 Rubia 0 genus_Rubia 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12661045 n 0000 | type genus of the Rubiaceae; Old World herbs and subshrubs grown for their medicinal properties and for dye substances extracted from their roots -12661045 20 n 03 Indian_madder 0 munjeet 0 Rubia_cordifolia 0 002 @ 12660601 n 0000 #m 12660796 n 0000 | perennial East Indian creeping or climbing herb used for dye in the orient -12661227 20 n 02 madder 0 Rubia_tinctorum 0 002 @ 12660601 n 0000 + 00285593 v 0101 | Eurasian herb having small yellow flowers and red roots formerly an important source of the dye alizarin -12661420 20 n 02 Asperula 0 genus_Asperula 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12661538 n 0000 | woodruff -12661538 20 n 01 woodruff 1 003 @ 13118707 n 0000 #m 12661420 n 0000 ~ 12661661 n 0000 | any plant of the genus Asperula -12661661 20 n 02 dyer's_woodruff 0 Asperula_tinctoria 0 001 @ 12661538 n 0000 | creeping European perennial having red or pinkish-white flowers and red roots sometimes used as a substitute for madder in dyeing -12661873 20 n 02 Calycophyllum 0 genus_Calycophyllum 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12662074 n 0000 | medium to large tropical American trees having shiny reddish-brown shredding bark -12662074 20 n 03 dagame 0 lemonwood_tree 1 Calycophyllum_candidissimum 0 002 @ 13104059 n 0000 #m 12661873 n 0000 | source of a tough elastic wood -12662223 20 n 02 Chiococca 0 genus_Chiococca 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12662379 n 0000 | shrubs of tropical and subtropical New World -12662379 20 n 03 blolly 0 West_Indian_snowberry 0 Chiococca_alba 0 002 @ 13112664 n 0000 #m 12662223 n 0000 | evergreen climbing shrub of southern Florida and West Indies grown for its racemes of fragrant white to creamy flowers followed by globose white succulent berries -12662654 20 n 02 Coffea 0 genus_Coffea 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12662772 n 0000 | coffee trees -12662772 20 n 02 coffee 0 coffee_tree 0 006 @ 13104059 n 0000 #m 12662654 n 0000 %p 07929351 n 0000 ~ 12663023 n 0000 ~ 12663254 n 0000 ~ 12663359 n 0000 | any of several small trees and shrubs native to the tropical Old World yielding coffee beans -12663023 20 n 02 Arabian_coffee 0 Coffea_arabica 0 001 @ 12662772 n 0000 | shrubby tree of northeastern tropical Africa widely cultivated in tropical or near tropical regions for its seed which form most of the commercial coffee -12663254 20 n 02 Liberian_coffee 0 Coffea_liberica 0 001 @ 12662772 n 0000 | small tree of West Africa -12663359 20 n 04 robusta_coffee 0 Rio_Nunez_coffee 0 Coffea_robusta 0 Coffea_canephora 0 001 @ 12662772 n 0000 | native to West Africa but grown in Java and elsewhere; resistant to coffee rust -12663554 20 n 02 genus_Cinchona 0 genus_Chinchona 0 006 @ 11579418 n 0000 #m 12660009 n 0000 %m 12663804 n 0000 %m 12664005 n 0000 %m 12664187 n 0000 %m 12664469 n 0000 | large genus of trees of Andean region of South America having medicinal bark -12663804 20 n 02 cinchona 0 chinchona 0 006 @ 13104059 n 0000 #m 12663554 n 0000 ~ 12664005 n 0000 ~ 12664187 n 0000 ~ 12664469 n 0000 %p 12664710 n 0000 | any of several trees of the genus Cinchona -12664005 20 n 03 Cartagena_bark 0 Cinchona_cordifolia 0 Cinchona_lancifolia 0 002 @ 12663804 n 0000 #m 12663554 n 0000 | Colombian tree; source of Cartagena bark (a cinchona bark) -12664187 20 n 04 calisaya 0 Cinchona_officinalis 0 Cinchona_ledgeriana 0 Cinchona_calisaya 0 002 @ 12663804 n 0000 #m 12663554 n 0000 | Peruvian shrub or small tree having large glossy leaves and cymes of fragrant yellow to green or red flowers; cultivated for its medicinal bark -12664469 20 n 02 cinchona_tree 0 Cinchona_pubescens 0 002 @ 12663804 n 0000 #m 12663554 n 0000 | small tree of Ecuador and Peru having very large glossy leaves and large panicles of fragrant pink flowers; cultivated for its medicinal bark -12664710 20 n 04 cinchona 1 cinchona_bark 0 Peruvian_bark 0 Jesuit's_bark 0 002 @ 13162297 n 0000 #p 12663804 n 0000 | medicinal bark of cinchona trees; source of quinine and quinidine -12664897 20 n 02 Galium 0 genus_Galium 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12665048 n 0000 | annual or perennial herbs: bedstraw; cleavers -12665048 20 n 01 bedstraw 0 008 @ 12205694 n 0000 #m 12664897 n 0000 ~ 12665271 n 0000 ~ 12665659 n 0000 ~ 12665857 n 0000 ~ 12666050 n 0000 ~ 12666159 n 0000 ~ 12666369 n 0000 | any of several plants of the genus Galium -12665271 20 n 06 sweet_woodruff 0 waldmeister 0 woodruff 2 fragrant_bedstraw 0 Galium_odoratum 0 Asperula_odorata 0 003 @ 12665048 n 0000 #s 07931870 n 0000 %p 07821260 n 0000 | Old World fragrant stoloniferous perennial having small white flowers and narrow leaves used as flavoring and in sachets; widely cultivated as a ground cover; in some classifications placed in genus Asperula -12665659 20 n 03 Northern_bedstraw 0 Northern_snow_bedstraw 0 Galium_boreale 0 001 @ 12665048 n 0000 | North American stoloniferous perennial having white flowers; sometimes used as an ornamental -12665857 20 n 04 yellow_bedstraw 0 yellow_cleavers 0 Our_Lady's_bedstraw 0 Galium_verum 0 001 @ 12665048 n 0000 | common yellow-flowered perennial bedstraw; North America and Europe and Asia -12666050 20 n 02 wild_licorice 3 Galium_lanceolatum 0 001 @ 12665048 n 0000 | bedstraw with sweetish roots -12666159 20 n 06 cleavers 0 clivers 0 goose_grass 3 catchweed 0 spring_cleavers 0 Galium_aparine 0 001 @ 12665048 n 0000 | annual having the stem beset with curved prickles; North America and Europe and Asia -12666369 20 n 06 wild_madder 1 white_madder 0 white_bedstraw 0 infant's-breath 0 false_baby's_breath 0 Galium_mollugo 0 001 @ 12665048 n 0000 | Eurasian herb with ample panicles of small white flowers; naturalized in North America -12666602 20 n 01 genus_Gardenia 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12666768 n 0000 | large genus of attractive Old World tropical shrubs and small trees -12666768 20 n 01 gardenia 0 003 @ 13112664 n 0000 #m 12666602 n 0000 ~ 12666965 n 0000 | any of various shrubs and small trees of the genus Gardenia having large fragrant white or yellow flowers -12666965 20 n 04 cape_jasmine 0 cape_jessamine 0 Gardenia_jasminoides 0 Gardenia_augusta 0 001 @ 12666768 n 0000 | evergreen shrub widely cultivated for its large fragrant waxlike white flowers and glossy leaves -12667179 20 n 01 genus_Genipa 0 004 @ 11579418 n 0000 #m 12660009 n 0000 %m 12667406 n 0000 %m 12667582 n 0000 | tropical American evergreen trees or shrubs bearing yellow flowers and succulent edible fruit with a thick rind -12667406 20 n 01 genipa 0 003 @ 12651821 n 0000 #m 12667179 n 0000 ~ 12667582 n 0000 | any tree of the genus Genipa bearing yellow flowers and edible fruit with a thick rind -12667582 20 n 04 genipap_fruit 0 jagua 0 marmalade_box 0 Genipa_Americana 0 003 @ 12667406 n 0000 #m 12667179 n 0000 %p 07763483 n 0000 | tree of the West Indies and northern South America bearing succulent edible orange-sized fruit -12667817 20 n 01 genus_Hamelia 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12667964 n 0000 | evergreen tropical American shrubs or small trees -12667964 20 n 01 hamelia 0 003 @ 13112664 n 0000 #m 12667817 n 0000 ~ 12668131 n 0000 | any of several flowering tropical or subtropical shrubs of the genus Hamelia -12668131 20 n 05 scarlet_bush 0 scarlet_hamelia 0 coloradillo 0 Hamelia_patens 0 Hamelia_erecta 0 001 @ 12667964 n 0000 | handsome shrub with showy orange to scarlet or crimson flowers; Florida and West Indies to Mexico and Brazil -12668364 20 n 02 Mitchella 0 genus_Mitchella 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12668517 n 0000 | creeping evergreen herbs of North America -12668517 20 n 04 partridgeberry 0 boxberry 0 twinberry 2 Mitchella_repens 0 002 @ 13100677 n 0000 #m 12668364 n 0000 | creeping woody plant of eastern North America with shiny evergreen leaves and scarlet berries -12668732 20 n 02 Nauclea 0 genus_Nauclea 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12668917 n 0000 | small genus of evergreen tropical shrubs or trees with smooth leathery leaves -12668917 20 n 03 opepe 0 Nauclea_diderrichii 0 Sarcocephalus_diderrichii 0 002 @ 13104059 n 0000 #m 12668732 n 0000 | large African forest tree yielding a strong hard yellow to golden brown lumber; sometimes placed in genus Sarcocephalus -12669157 20 n 02 Pinckneya 0 genus_Pinckneya 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12669362 n 0000 | small genus of shrubs or small trees of southeastern United States and northern South America -12669362 20 n 04 fever_tree 2 Georgia_bark 0 bitter-bark 0 Pinckneya_pubens 0 002 @ 13112664 n 0000 #m 12669157 n 0000 | ornamental shrub or small tree of swampy areas in southwestern United States having large pink or white sepals and yielding Georgia bark for treating fever -12669641 20 n 02 Psychotria 0 genus_Psychotria 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12669803 n 0000 | tropical chiefly South American shrubs and trees -12669803 20 n 05 lemonwood 0 lemon-wood 0 lemonwood_tree 0 lemon-wood_tree 0 Psychotria_capensis 0 003 @ 13104059 n 0000 #m 12669641 n 0000 %p 12670013 n 0000 | South African evergreen having hard tough wood -12670013 20 n 01 lemonwood 2 002 @ 15098161 n 0000 #p 12669803 n 0000 | hard tough elastic wood of the lemonwood tree; used for making bows and fishing rods -12670172 20 n 02 Sarcocephalus 0 genus_Sarcocephalus 0 003 @ 11579418 n 0000 #m 12660009 n 0000 %m 12670334 n 0000 | genus of tropical African trees and shrubs -12670334 20 n 03 negro_peach 0 Sarcocephalus_latifolius 0 Sarcocephalus_esculentus 0 002 @ 13112664 n 0000 #m 12670172 n 0000 | a stout spreading or semi-climbing tropical shrub with round brownish-red warty fruit; Africa -12670558 20 n 02 Vangueria 0 genus_Vangueria 0 004 @ 11579418 n 0000 #m 12660009 n 0000 %m 12670758 n 0000 %m 12670962 n 0000 | tropical African and Asiatic trees and shrubs having one-seeded fruit -12670758 20 n 04 wild_medlar 0 wild_medlar_tree 0 medlar 2 Vangueria_infausta 0 003 @ 13104059 n 0000 #m 12670558 n 0000 %p 07767002 n 0000 | small deciduous tree of southern Africa having edible fruit -12670962 20 n 02 Spanish_tamarind 0 Vangueria_madagascariensis 0 002 @ 13104059 n 0000 #m 12670558 n 0000 | shrubby tree of Madagascar occasionally cultivated for its edible apple-shaped fruit -12671157 20 n 03 Caprifoliaceae 0 family_Caprifoliaceae 0 honeysuckle_family 0 013 @ 11566230 n 0000 #m 12659730 n 0000 %m 12671529 n 0000 %m 12671898 n 0000 %m 12672843 n 0000 %m 12673178 n 0000 %m 12673755 n 0000 %m 12677427 n 0000 %m 12677612 n 0000 %m 12678059 n 0000 %m 12679712 n 0000 %m 12680125 n 0000 %m 12681768 n 0000 | shrubs and small trees and woody vines -12671529 20 n 01 genus_Abelia 0 003 @ 11579418 n 0000 #m 12671157 n 0000 %m 12671651 n 0000 | chiefly east Asian shrubs -12671651 20 n 01 abelia 0 002 @ 13112664 n 0000 #m 12671529 n 0000 | any of various deciduous or evergreen ornamental shrubs of the genus Abelia having opposite simple leaves and cymes of small white or pink or purplish flowers; Asia and Mexico -12671898 20 n 02 Diervilla 0 genus_Diervilla 0 004 @ 11579418 n 0000 #m 12671157 n 0000 %m 12672083 n 0000 %m 12672289 n 0000 | small genus of low deciduous shrubs: bush honeysuckles -12672083 20 n 02 bush_honeysuckle 1 Diervilla_lonicera 0 002 @ 13112664 n 0000 #m 12671898 n 0000 | spreading bush of northeastern United States having small clusters of fragrant green and yellow flowers -12672289 20 n 02 bush_honeysuckle 2 Diervilla_sessilifolia 0 002 @ 13112664 n 0000 #m 12671898 n 0000 | bush honeysuckle of southeastern United States having large crowded clusters of sulfur-yellow flowers -12672497 20 n 02 Kolkwitzia 0 genus_Kolkwitzia 0 002 @ 11579418 n 0000 %m 12672631 n 0000 | Chinese genus of 1 species: beauty bush -12672631 20 n 02 beauty_bush 0 Kolkwitzia_amabilis 0 002 @ 13112664 n 0000 #m 12672497 n 0000 | Chinese deciduous shrub with yellow-throated pinkish flowers and bristly fruit; often cultivated as an ornamental -12672843 20 n 02 Leycesteria 0 genus_Leycesteria 0 003 @ 11579418 n 0000 #m 12671157 n 0000 %m 12673012 n 0000 | small species of shrubs of western Himalayas to China -12673012 20 n 02 Himalaya_honeysuckle 0 Leycesteria_formosa 0 002 @ 13112664 n 0000 #m 12672843 n 0000 | shrub honeysuckle with drooping spikes of purplish flowers -12673178 20 n 02 Linnaea 0 genus_Linnaea 0 004 @ 11579418 n 0000 #m 12671157 n 0000 %m 12673328 n 0000 %m 12673588 n 0000 | one species: twinflower -12673328 20 n 02 twinflower 0 Linnaea_borealis 0 003 @ 13118707 n 0000 #m 12673178 n 0000 ~ 12673588 n 0000 | creeping evergreen subshrub of the northern parts of Europe and Asia with delicate fragrant tubular bell-shaped usually pink flowers borne in pairs -12673588 20 n 02 American_twinflower 0 Linnaea_borealis_americana 0 002 @ 12673328 n 0000 #m 12673178 n 0000 | similar to the twinflower of northern Europe and Asia -12673755 20 n 02 Lonicera 0 genus_Lonicera 0 016 @ 11579418 n 0000 #m 12671157 n 0000 %m 12674120 n 0000 %m 12674484 n 0000 %m 12674685 n 0000 %m 12674895 n 0000 %m 12675100 n 0000 %m 12675299 n 0000 %m 12675515 n 0000 %m 12675716 n 0000 %m 12675876 n 0000 %m 12676134 n 0000 %m 12676534 n 0000 %m 12676703 n 0000 %m 12676940 n 0000 %m 12677120 n 0000 | woodbine -12674120 20 n 01 honeysuckle 1 016 @ 13112664 n 0000 #m 12673755 n 0000 ~ 12674484 n 0000 ~ 12674685 n 0000 ~ 12674895 n 0000 ~ 12675100 n 0000 ~ 12675299 n 0000 ~ 12675515 n 0000 ~ 12675716 n 0000 ~ 12675876 n 0000 ~ 12676134 n 0000 ~ 12676370 n 0000 ~ 12676534 n 0000 ~ 12676703 n 0000 ~ 12676940 n 0000 ~ 12677120 n 0000 | shrub or vine of the genus Lonicera -12674484 20 n 02 white_honeysuckle 1 Lonicera_albiflora 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | bushy honeysuckle with twining branches and white or yellow-white flowers; southern United States -12674685 20 n 03 American_fly_honeysuckle 0 fly_honeysuckle 0 Lonicera_canadensis 0 003 @ 12674120 n 0000 #m 12673755 n 0000 ~ 12677331 n 0000 | erect deciduous North American shrub with yellow-white flowers -12674895 20 n 03 Italian_honeysuckle 0 Italian_woodbine 0 Lonicera_caprifolium 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | deciduous climbing shrub with fragrant yellow-white flowers in axillary whorls -12675100 20 n 02 yellow_honeysuckle 1 Lonicera_dioica 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | twining deciduous shrub with clusters of purple-tinged yellow-green flowers; northeastern America -12675299 20 n 02 yellow_honeysuckle 2 Lonicera_flava 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | climbing deciduous shrub with fragrant yellow (later orange) flowers in terminal whorls; southeastern United States -12675515 20 n 02 hairy_honeysuckle 0 Lonicera_hirsuta 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | twining deciduous shrub with hairy leaves and spikes of yellow-orange flowers; northeastern America -12675716 20 n 02 twinberry 1 Lonicera_involucrata 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | shrubby honeysuckle with purple flowers; western North America -12675876 20 n 02 Japanese_honeysuckle 0 Lonicera_japonica 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | an Asiatic trailing evergreen honeysuckle with half-evergreen leaves and fragrant white flowers turning yellow with age; has become a weed in some areas -12676134 20 n 02 Hall's_honeysuckle 0 Lonicera_japonica_halliana 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | a variety of Japanese honeysuckle that grows like a vine; established as an aggressive escape in southeastern United States -12676370 20 n 02 Morrow's_honeysuckle 0 Lonicera_morrowii 0 001 @ 12674120 n 0000 | a grey deciduous honeysuckle shrub paired white flowers turning yellow; Japan -12676534 20 n 02 woodbine 1 Lonicera_periclymenum 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | European twining honeysuckle with fragrant red and yellow-white flowers -12676703 20 n 05 trumpet_honeysuckle 0 coral_honeysuckle 0 trumpet_flower 3 trumpet_vine 2 Lonicera_sempervirens 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | evergreen North American honeysuckle vine having coral-red or orange flowers -12676940 20 n 03 bush_honeysuckle 3 Tartarian_honeysuckle 0 Lonicera_tatarica 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | a honeysuckle shrub of southern Russia to central Asia -12677120 20 n 03 European_fly_honeysuckle 0 European_honeysuckle 0 Lonicera_xylosteum 0 002 @ 12674120 n 0000 #m 12673755 n 0000 | cultivated Eurasian shrub with twin yellowish-white flowers and scarlet fruit -12677331 20 n 01 swamp_fly_honeysuckle 0 001 @ 12674685 n 0000 | a variety of fly honeysuckle -12677427 20 n 02 Symphoricarpos 0 genus_Symphoricarpos 0 003 @ 11579418 n 0000 #m 12671157 n 0000 %m 12677841 n 0000 | deciduous shrubs of North America and Central America and China -12677612 20 n 04 snowberry 2 common_snowberry 0 waxberry 2 Symphoricarpos_alba 0 002 @ 13100156 n 0000 #m 12671157 n 0000 | deciduous shrub of western North America having spikes of pink flowers followed by round white berries -12677841 20 n 03 coralberry 2 Indian_currant 0 Symphoricarpos_orbiculatus 0 002 @ 13112664 n 0000 #m 12677427 n 0000 | North American deciduous shrub cultivated for it abundant clusters of coral-red berrylike fruits -12678059 20 n 02 Sambucus 0 genus_Sambucus 0 005 @ 11579418 n 0000 #m 12671157 n 0000 %m 12678224 n 0000 %m 12678794 n 0000 %m 12679023 n 0000 | elder; elderberry -12678224 20 n 02 elder 0 elderberry_bush 0 008 @ 13112664 n 0000 #m 12678059 n 0000 ~ 12678548 n 0000 ~ 12678794 n 0000 ~ 12679023 n 0000 ~ 12679201 n 0000 ~ 12679432 n 0000 ~ 12679593 n 0000 | any of numerous shrubs or small trees of temperate and subtropical northern hemisphere having white flowers and berrylike fruit -12678548 20 n 04 American_elder 0 black_elderberry 0 sweet_elder 0 Sambucus_canadensis 0 002 @ 12678224 n 0000 %p 07765208 n 0000 | common elder of central and eastern North America bearing purple-black berries; fruit used in wines and jellies -12678794 20 n 03 blue_elder 0 blue_elderberry 0 Sambucus_caerulea 0 002 @ 12678224 n 0000 #m 12678059 n 0000 | shrub or small tree of western United States having white flowers and blue berries; fruit used in wines and jellies -12679023 20 n 03 dwarf_elder 1 danewort 0 Sambucus_ebulus 0 002 @ 12678224 n 0000 #m 12678059 n 0000 | dwarf herbaceous elder of Europe having pink flowers and a nauseous odor -12679201 20 n 06 bourtree 0 black_elder 0 common_elder 0 elderberry 0 European_elder 0 Sambucus_nigra 0 001 @ 12678224 n 0000 | a common shrub with black fruit or a small tree of Europe and Asia; fruit used for wines and jellies -12679432 20 n 04 American_red_elder 0 red-berried_elder 2 stinking_elder 0 Sambucus_pubens 0 001 @ 12678224 n 0000 | common North American shrub or small tree -12679593 20 n 03 European_red_elder 0 red-berried_elder 1 Sambucus_racemosa 0 001 @ 12678224 n 0000 | Eurasian shrub -12679712 20 n 02 Triostium 0 genus_Triostium 0 003 @ 11579418 n 0000 #m 12671157 n 0000 %m 12679876 n 0000 | genus of Asiatic and North American herbs: feverroot -12679876 20 n 05 feverroot 0 horse_gentian 0 tinker's_root 0 wild_coffee 0 Triostium_perfoliatum 0 002 @ 12205694 n 0000 #m 12679712 n 0000 | coarse weedy American perennial herb with large usually perfoliate leaves and purple or dull red flowers -12680125 20 n 02 Viburnum 0 genus_Viburnum 0 008 @ 11579418 n 0000 #m 12671157 n 0000 %m 12680402 n 0000 %m 12680652 n 0000 %m 12680864 n 0000 %m 12681141 n 0000 %m 12681376 n 0000 %m 12681579 n 0000 | deciduous or evergreen shrubs or small trees: arrow-wood; wayfaring tree -12680402 20 n 05 cranberry_bush 0 cranberry_tree 1 American_cranberry_bush 0 highbush_cranberry 0 Viburnum_trilobum 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | deciduous North American shrub or small tree having three-lobed leaves and red berries -12680652 20 n 04 wayfaring_tree 0 twist_wood 0 twistwood 0 Viburnum_lantana 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | vigorous deciduous European treelike shrub common along waysides; red berries turn black -12680864 20 n 06 guelder_rose 0 European_cranberrybush 0 European_cranberry_bush 0 crampbark 0 cranberry_tree 2 Viburnum_opulus 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | deciduous thicket-forming Old World shrub with clusters of white flowers and small bright red berries -12681141 20 n 03 arrow_wood 0 southern_arrow_wood 0 Viburnum_dentatum 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | deciduous shrub of eastern North America having blue-black berries and tough pliant wood formerly used to make arrows -12681376 20 n 02 arrow_wood 2 Viburnum_recognitum 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | closely related to southern arrow wood; grows in the eastern United States from Maine to Ohio and Georgia -12681579 20 n 02 black_haw 1 Viburnum_prunifolium 0 002 @ 13112664 n 0000 #m 12680125 n 0000 | upright deciduous shrub having frosted dark-blue fruit; east and east central North America -12681768 20 n 01 genus_Weigela 0 003 @ 11579418 n 0000 #m 12671157 n 0000 %m 12681893 n 0000 | east Asian flowering shrubs -12681893 20 n 02 weigela 0 Weigela_florida 0 002 @ 13112664 n 0000 #m 12681768 n 0000 | deciduous shrub widely cultivated for its white or pink or red flowers -12682054 20 n 02 Dipsacaceae 0 family_Dipsacaceae 0 004 @ 11566230 n 0000 #m 12659730 n 0000 %m 12682264 n 0000 %m 12683248 n 0000 | chiefly southern European herbs with flowers usually in dense cymose heads -12682264 20 n 02 Dipsacus 0 genus_Dipsacus 0 003 @ 11579418 n 0000 #m 12682054 n 0000 %m 12682411 n 0000 | type genus of the Dipsacaceae: teasel -12682411 20 n 03 teasel 0 teazel 0 teasle 0 005 @ 12205694 n 0000 #m 12682264 n 0000 ~ 12682668 n 0000 ~ 12682882 n 0000 ~ 12683096 n 0000 | any of several herbs of the genus Dipsacus native to the Old World having flower heads surrounded by spiny bracts -12682668 20 n 02 common_teasel 0 Dipsacus_fullonum 0 001 @ 12682411 n 0000 | teasel with lilac flowers native to Old World but naturalized in North America; dried flower heads used to raise a nap on woolen cloth -12682882 20 n 02 fuller's_teasel 0 Dipsacus_sativus 0 001 @ 12682411 n 0000 | similar to the common teasel and similarly used; widespread in Europe and North Africa and western Asia; naturalized in United States -12683096 20 n 02 wild_teasel 0 Dipsacus_sylvestris 0 001 @ 12682411 n 0000 | European teasel with white to pink flowers; naturalized in United States -12683248 20 n 01 genus_Scabiosa 0 003 @ 11579418 n 0000 #m 12682054 n 0000 %m 12683407 n 0000 | annual or perennial herbs or subshrubs; mainly Mediterranean -12683407 20 n 02 scabious 0 scabiosa 0 004 @ 11669921 n 0000 #m 12683248 n 0000 ~ 12683571 n 0000 ~ 12683791 n 0000 | any of various plants of the genus Scabiosa -12683571 20 n 04 sweet_scabious 0 pincushion_flower 0 mournful_widow 0 Scabiosa_atropurpurea 0 001 @ 12683407 n 0000 | Old World annual having fragrant purple to deep crimson flower heads; naturalized in United States -12683791 20 n 02 field_scabious 0 Scabiosa_arvensis 0 001 @ 12683407 n 0000 | perennial having bluish-lilac flowers; introduced in the eastern United States -12683950 20 n 03 Balsaminaceae 0 family_Balsaminaceae 0 balsam_family 0 003 @ 11566682 n 0000 #m 12684640 n 0000 %m 12684153 n 0000 | distinguished from the family Geraniaceae by the irregular flowers -12684153 20 n 01 genus_Impatiens 0 003 @ 11585340 n 0000 #m 12683950 n 0000 %m 12684379 n 0000 | annual or perennial herbs with stems more or less succulent; cosmopolitan except for South America, Australia, and New Zealand -12684379 20 n 06 jewelweed 0 lady's_earrings 0 orange_balsam 0 celandine 2 touch-me-not 1 Impatiens_capensis 0 002 @ 12205694 n 0000 #m 12684153 n 0000 | North American annual plant with usually yellow or orange flowers; grows chiefly on wet rather acid soil -12684640 20 n 02 Geraniales 0 order_Geraniales 0 017 @ 11534677 n 0000 #m 12212810 n 0000 %m 12683950 n 0000 %m 12685214 n 0000 %m 12689641 n 0000 %m 12690388 n 0000 %m 12693590 n 0000 %m 12694048 n 0000 %m 12694707 n 0000 %m 12701178 n 0000 %m 12702443 n 0000 %m 12704636 n 0000 %m 12706644 n 0000 %m 12715569 n 0000 %m 12719277 n 0000 %m 12720532 n 0000 %m 12916935 n 0000 | an order of plants of subclass Rosidae including geraniums and many other plants; see Euphorbiaceae; Geraniaceae; Rutaceae; Malpighiaceae; Simaroubaceae; Meliaceae; Zygophyllaceae; Tropaeolaceae -12685214 20 n 03 Geraniaceae 0 family_Geraniaceae 0 geranium_family 0 006 @ 11566682 n 0000 #m 12684640 n 0000 %m 12685431 n 0000 %m 12685679 n 0000 %m 12687211 n 0000 %m 12688526 n 0000 | chiefly herbaceous plants -12685431 20 n 01 geranium 0 009 @ 12205694 n 0000 #m 12685214 n 0000 ~ 12685831 n 0000 ~ 12687462 n 0000 ~ 12687698 n 0000 ~ 12687957 n 0000 ~ 12688187 n 0000 ~ 12688372 n 0000 ~ 12688716 n 0000 | any of numerous plants of the family Geraniaceae -12685679 20 n 01 genus_Geranium 0 003 @ 11744859 n 0000 #m 12685214 n 0000 %m 12685831 n 0000 | genus of mostly North American geraniums: cranesbills -12685831 20 n 02 cranesbill 0 crane's_bill 0 008 @ 12685431 n 0000 #m 12685679 n 0000 ~ 12686077 n 0000 ~ 12686274 n 0000 ~ 12686496 n 0000 ~ 12686676 n 0000 ~ 12686877 n 0000 ~ 12687044 n 0000 | any of numerous geraniums of the genus Geranium -12686077 20 n 03 wild_geranium 0 spotted_cranesbill 0 Geranium_maculatum 0 001 @ 12685831 n 0000 | common wild geranium of eastern North America with deeply parted leaves and rose-purple flowers -12686274 20 n 02 meadow_cranesbill 0 Geranium_pratense 0 001 @ 12685831 n 0000 | tall perennial cranesbill with paired violet-blue axillary flowers; native to northern parts of Old World and naturalized in North America -12686496 20 n 02 Richardson's_geranium 0 Geranium_richardsonii 0 001 @ 12685831 n 0000 | geranium of western North America having branched clusters of white or pale pink flowers -12686676 20 n 04 herb_robert 0 herbs_robert 0 herb_roberts 0 Geranium_robertianum 0 001 @ 12685831 n 0000 | a sticky low herb with small reddish-purple flowers; widespread in the northern hemisphere -12686877 20 n 02 sticky_geranium 0 Geranium_viscosissimum 0 001 @ 12685831 n 0000 | geranium of western North America having pinkish-purple flowers in open clusters -12687044 20 n 02 dove's_foot_geranium 0 Geranium_molle 0 001 @ 12685831 n 0000 | western geranium with small pink flowers; a common weed on lawns and in vacant lots -12687211 20 n 02 Pelargonium 0 genus_Pelargonium 0 007 @ 11585340 n 0000 #m 12685214 n 0000 %m 12687462 n 0000 %m 12687698 n 0000 %m 12687957 n 0000 %m 12688187 n 0000 %m 12688372 n 0000 | geraniums native chiefly to South Africa; widely cultivated -12687462 20 n 03 rose_geranium 0 sweet-scented_geranium 0 Pelargonium_graveolens 0 002 @ 12685431 n 0000 #m 12687211 n 0000 | any of several southern African geraniums having fragrant three-lobed to five-lobed leaves and pink flowers -12687698 20 n 04 fish_geranium 0 bedding_geranium 0 zonal_pelargonium 0 Pelargonium_hortorum 0 002 @ 12685431 n 0000 #m 12687211 n 0000 | an upright geranium having scalloped leaves with a broad color zone inside the margin and white or pink or red flowers -12687957 20 n 04 ivy_geranium 0 ivy-leaved_geranium 0 hanging_geranium 0 Pelargonium_peltatum 0 002 @ 12685431 n 0000 #m 12687211 n 0000 | a commonly cultivated trailing South American plant with peltate leaves and rosy flowers -12688187 20 n 03 apple_geranium 0 nutmeg_geranium 0 Pelargonium_odoratissimum 0 002 @ 12685431 n 0000 #m 12687211 n 0000 | geranium with round fragrant leaves and small white flowers -12688372 20 n 02 lemon_geranium 1 Pelargonium_limoneum 0 002 @ 12685431 n 0000 #m 12687211 n 0000 | a common garden geranium with lemon-scented foliage -12688526 20 n 02 Erodium 0 genus_Erodium 0 003 @ 11585340 n 0000 #m 12685214 n 0000 %m 12688716 n 0000 | geraniums of Europe and South America and Australia especially mountainous regions -12688716 20 n 02 storksbill 0 heron's_bill 0 005 @ 12685431 n 0000 #m 12688526 n 0000 ~ 12688903 n 0000 ~ 12689305 n 0000 ~ 12689491 n 0000 | any of various plants of the genus Erodium -12688903 20 n 09 redstem_storksbill 0 alfilaria 0 alfileria 0 filaree 0 filaria 0 clocks 0 pin_grass 0 pin_clover 0 Erodium_cicutarium 0 001 @ 12688716 n 0000 | European weed naturalized in southwestern United States and Mexico having reddish decumbent stems with small fernlike leaves and small deep reddish-lavender flowers followed by slender fruits that stick straight up; often grown for forage -12689305 20 n 04 musk_clover 0 muskus_grass 0 white-stemmed_filaree 0 Erodium_moschatum 0 001 @ 12688716 n 0000 | low annual European herb naturalized in America; similar to alfilaria -12689491 20 n 02 Texas_storksbill 0 Erodium_texanum 0 001 @ 12688716 n 0000 | of prairies and desert areas of southwestern United States and Mexico -12689641 20 n 02 Erythroxylaceae 0 family_Erythroxylaceae 0 002 @ 11744583 n 0000 #m 12684640 n 0000 | a family of plants of order Geraniales; have drupaceous fruit -12689808 20 n 04 Erythroxylon 0 genus_Erythroxylon 0 Erythroxylum 0 genus_Erythroxylum 0 003 @ 11744859 n 0000 %m 12690046 n 0000 %m 12690240 n 0000 | a large genus of South American shrubs and small trees of the family Erythroxylaceae -12690046 20 n 03 Erythroxylon_coca 0 coca 0 coca_plant 0 002 @ 13112664 n 0000 #m 12689808 n 0000 | a South American shrub whose leaves are chewed by natives of the Andes; a source of cocaine -12690240 20 n 01 Erythroxylon_truxiuense 0 002 @ 13112664 n 0000 #m 12689808 n 0000 | a South American shrub whose leaves are a source of cocaine -12690388 20 n 03 Burseraceae 0 family_Burseraceae 0 torchwood_family 0 007 @ 11566682 n 0000 #m 12684640 n 0000 %m 12690653 n 0000 %m 12691189 n 0000 %m 12691834 n 0000 %m 12692323 n 0000 %m 12693033 n 0000 | resinous or aromatic chiefly tropical shrubs or trees -12690653 20 n 01 incense_tree 0 012 @ 13104059 n 0000 #m 12690388 n 0000 %s 12691028 n 0000 ~ 12691428 n 0000 ~ 12691661 n 0000 ~ 12692024 n 0000 ~ 12692160 n 0000 ~ 12692521 n 0000 ~ 12692714 n 0000 ~ 12693244 n 0000 ~ 12693352 n 0000 %s 12693457 n 0000 | any of various tropical trees of the family Burseraceae yielding fragrant gums or resins that are burned as incense -12691028 20 n 02 elemi 0 gum_elemi 0 002 @ 14897751 n 0000 #s 12690653 n 0000 | fragrant resin obtain from trees of the family Burseraceae and used as incense -12691189 20 n 02 Bursera 0 genus_Bursera 0 004 @ 11585340 n 0000 #m 12690388 n 0000 %m 12691428 n 0000 %m 12691661 n 0000 | type genus of Burseraceae; tropical and subtropical American shrubs and trees some yielding timber and gum elemi -12691428 20 n 02 elephant_tree 0 Bursera_microphylla 0 002 @ 12690653 n 0000 #m 12691189 n 0000 | small tree or shrub of the southwestern United States having a spicy odor and odd-pinnate leaves and small clusters of white flowers -12691661 20 n 02 gumbo-limbo 0 Bursera_simaruba 0 002 @ 12690653 n 0000 #m 12691189 n 0000 | tropical American tree yielding a reddish resin used in cements and varnishes -12691834 20 n 02 Boswellia 0 genus_Boswellia 0 004 @ 11585340 n 0000 #m 12690388 n 0000 %m 12692024 n 0000 %m 12692160 n 0000 | genus of trees of North Africa and India that yield incense -12692024 20 n 01 Boswellia_carteri 0 002 @ 12690653 n 0000 #m 12691834 n 0000 | tree yielding an aromatic gum resin burned as incense -12692160 20 n 02 salai 0 Boswellia_serrata 0 002 @ 12690653 n 0000 #m 12691834 n 0000 | East Indian tree yielding a resin used medicinally and burned as incense -12692323 20 n 02 Commiphora 0 genus_Commiphora 0 004 @ 11585340 n 0000 #m 12690388 n 0000 %m 12692521 n 0000 %m 12692714 n 0000 | genus of East Indian and African trees yielding balsamic products -12692521 20 n 02 balm_of_gilead 2 Commiphora_meccanensis 0 002 @ 12690653 n 0000 #m 12692323 n 0000 | small evergreen tree of Africa and Asia; leaves have a strong aromatic odor when bruised -12692714 20 n 02 myrrh_tree 0 Commiphora_myrrha 0 003 @ 12690653 n 0000 #m 12692323 n 0000 %s 12692875 n 0000 | tree of eastern Africa and Asia yielding myrrh -12692875 20 n 03 myrrh 0 gum_myrrh 0 sweet_cicely 1 002 @ 14897751 n 0000 #s 12692714 n 0000 | aromatic resin that is burned as incense and used in perfume -12693033 20 n 02 Protium 0 genus_Protium 0 004 @ 11585340 n 0000 #m 12690388 n 0000 %m 12693244 n 0000 %m 12693352 n 0000 | genus of chiefly tropical American trees having fragrant wood and yielding gum elemi -12693244 20 n 01 Protium_heptaphyllum 0 002 @ 12690653 n 0000 #m 12693033 n 0000 | tropical American tree -12693352 20 n 01 Protium_guianense 0 002 @ 12690653 n 0000 #m 12693033 n 0000 | tropical American tree -12693457 20 n 01 incense_wood 0 002 @ 15098161 n 0000 #s 12690653 n 0000 | fragrant wood of two incense trees of the genus Protium -12693590 20 n 02 Callitrichaceae 0 family_Callitrichaceae 0 003 @ 11566682 n 0000 #m 12684640 n 0000 %m 12693734 n 0000 | dicot aquatic herbs -12693734 20 n 02 Callitriche 0 genus_Callitriche 0 003 @ 11585340 n 0000 #m 12693590 n 0000 %m 12693865 n 0000 | water starworts -12693865 20 n 01 water_starwort 0 002 @ 13121544 n 0000 #m 12693734 n 0000 | any of several aquatic plants having a star-shaped rosette of floating leaves; America, Europe and Asia -12694048 20 n 02 Malpighiaceae 0 family_Malpighiaceae 0 003 @ 11566682 n 0000 #m 12684640 n 0000 %m 12694193 n 0000 | tropical shrubs or trees -12694193 20 n 02 Malpighia 0 genus_Malpighia 0 003 @ 11585340 n 0000 #m 12694048 n 0000 %m 12694336 n 0000 | type genus of the Malpighiaceae -12694336 20 n 02 jiqui 0 Malpighia_obovata 0 002 @ 11666854 n 0000 #m 12694193 n 0000 | Cuban timber tree with hard wood very resistant to moisture -12694486 20 n 05 barbados_cherry 0 acerola 0 Surinam_cherry 2 West_Indian_cherry 0 Malpighia_glabra 0 002 @ 11666854 n 0000 %p 07746334 n 0000 | tropical American shrub bearing edible acid red fruit resembling cherries -12694707 20 n 03 Meliaceae 0 family_Meliaceae 0 mahogany_family 0 015 @ 11566682 n 0000 #m 12684640 n 0000 %m 12695144 n 0000 %m 12695760 n 0000 %m 12696322 n 0000 %m 12697021 n 0000 %m 12697360 n 0000 %m 12697883 n 0000 %m 12698283 n 0000 %m 12698905 n 0000 %m 12699157 n 0000 %m 12699485 n 0000 %m 12699778 n 0000 %m 12700219 n 0000 %m 12700831 n 0000 | tropical trees and shrubs including many important timber and ornamental trees -12695144 20 n 02 mahogany 0 mahogany_tree 0 010 @ 13104059 n 0000 #m 12694707 n 0000 %s 12695572 n 0000 ~ 12697152 n 0000 ~ 12698027 n 0000 ~ 12699031 n 0000 ~ 12699922 n 0000 ~ 12700088 n 0000 ~ 12700357 n 0000 ~ 15100570 n 0000 | any of various tropical timber trees of the family Meliaceae especially the genus Swietinia valued for their hard yellowish- to reddish-brown wood that is readily worked and takes a high polish -12695572 20 n 01 mahogany 2 004 @ 15098161 n 0000 #s 12695144 n 0000 ~ 12700560 n 0000 ~ 12700711 n 0000 | wood of any of various mahogany trees; much used for cabinetwork and furniture -12695760 20 n 02 Melia 0 genus_Melia 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12695975 n 0000 | type genus of the Meliaceae: East Indian and Australian deciduous trees with leaves resembling those of the ash -12695975 20 n 09 chinaberry 1 chinaberry_tree 0 China_tree 1 Persian_lilac 2 pride-of-India 0 azederach 0 azedarach 0 Melia_azederach 0 Melia_azedarach 0 002 @ 13104059 n 0000 #m 12695760 n 0000 | tree of northern India and China having purple blossoms and small inedible yellow fruits; naturalized in the southern United States as a shade tree -12696322 20 n 02 Azadirachta 0 genus_Azadirachta 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12696492 n 0000 | genus of large important East Indian trees: neem trees -12696492 20 n 07 neem 0 neem_tree 0 nim_tree 0 margosa 0 arishth 0 Azadirachta_indica 0 Melia_Azadirachta 0 003 @ 13104059 n 0000 #m 12696322 n 0000 %p 12696830 n 0000 | large semi-evergreen tree of the East Indies; trunk exudes a tenacious gum; bitter bark used as a tonic; seeds yield an aromatic oil; sometimes placed in genus Melia -12696830 20 n 01 neem_seed 0 004 @ 13135832 n 0000 #p 12696492 n 0000 %s 14739271 n 0000 %s 14782919 n 0000 | seed of neem trees; source of pesticides and fertilizer and medicinal products -12697021 20 n 02 Cedrela 0 genus_Cedrela 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12697152 n 0000 | tropical American trees -12697152 20 n 03 Spanish_cedar 0 Spanish_cedar_tree 0 Cedrela_odorata 0 003 @ 12695144 n 0000 #m 12697021 n 0000 %s 12700711 n 0000 | tropical American tree yielding fragrant wood used especially for boxes -12697360 20 n 02 Chloroxylon 0 genus_Chloroxylon 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12697514 n 0000 | deciduous trees of India and Sri Lanka -12697514 20 n 03 satinwood 0 satinwood_tree 0 Chloroxylon_swietenia 0 003 @ 13104059 n 0000 #m 12697360 n 0000 %s 12697709 n 0000 | East Indian tree with valuable hard lustrous yellowish wood; -12697709 20 n 01 satinwood 2 002 @ 15098161 n 0000 #s 12697514 n 0000 | hard yellowish wood of a satinwood tree having a satiny luster; used for fine cabinetwork and tools -12697883 20 n 02 Entandrophragma 0 genus_Entandrophragma 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12698027 n 0000 | cedar mahogany trees -12698027 20 n 04 African_scented_mahogany 0 cedar_mahogany 0 sapele_mahogany 0 Entandrophragma_cylindricum 0 002 @ 12695144 n 0000 #m 12697883 n 0000 | African tree having rather lightweight cedar-scented wood varying in color from pink to reddish brown -12698283 20 n 02 Flindersia 0 genus_Flindersia 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12698435 n 0000 | small genus of Australian timber trees -12698435 20 n 01 silver_ash 0 004 @ 13104059 n 0000 #m 12698283 n 0000 ~ 12698598 n 0000 ~ 12698774 n 0000 | any of various timber trees of the genus Flindersia -12698598 20 n 04 native_beech 0 flindosa 0 flindosy 0 Flindersia_australis 0 001 @ 12698435 n 0000 | tall Australian timber tree yielding tough hard wood used for staves etc -12698774 20 n 02 bunji-bunji 0 Flindersia_schottiana 0 001 @ 12698435 n 0000 | Australian timber tree whose bark yields a poison -12698905 20 n 02 Khaya 0 genus_Khaya 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12699031 n 0000 | African mahogany trees -12699031 20 n 01 African_mahogany 0 002 @ 12695144 n 0000 #m 12698905 n 0000 | African tree having hard heavy odorless wood -12699157 20 n 01 genus_Lansium 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12699301 n 0000 | a dicotyledonous genus of the family Meliaceae -12699301 20 n 04 lanseh_tree 0 langsat 0 langset 0 Lansium_domesticum 0 003 @ 13104059 n 0000 #m 12699157 n 0000 %p 07745803 n 0000 | East Indian tree bearing an edible yellow berry -12699485 20 n 02 Lovoa 0 genus_Lovoa 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12699618 n 0000 | genus of African timber trees -12699618 20 n 02 African_walnut 0 Lovoa_klaineana 0 002 @ 13104059 n 0000 #m 12699485 n 0000 | tropical African timber tree with wood that resembles mahogany -12699778 20 n 02 Swietinia 0 genus_Swietinia 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12699922 n 0000 | tropical American mahogany trees -12699922 20 n 04 true_mahogany 0 Cuban_mahogany 0 Dominican_mahogany 0 Swietinia_mahogani 0 002 @ 12695144 n 0000 #m 12699778 n 0000 | mahogany tree of West Indies -12700088 20 n 02 Honduras_mahogany 0 Swietinia_macrophylla 0 001 @ 12695144 n 0000 | an important Central American mahogany tree -12700219 20 n 02 Toona 0 genus_Toona 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12700357 n 0000 | formerly included in genus Cedrela -12700357 20 n 05 Philippine_mahogany 1 Philippine_cedar 0 kalantas 0 Toona_calantas 0 Cedrela_calantas 0 002 @ 12695144 n 0000 #m 12700219 n 0000 | Philippine timber tree having hard red fragrant wood -12700560 20 n 01 Philippine_mahogany 2 001 @ 12695572 n 0000 | red hardwood of the Philippine mahogany tree used for cigar boxes and interior finish -12700711 20 n 01 cigar-box_cedar 0 002 @ 12695572 n 0000 #s 12697152 n 0000 | fragrant wood much used for cigar boxes -12700831 20 n 01 genus_Turreae 0 003 @ 11585340 n 0000 #m 12694707 n 0000 %m 12700996 n 0000 | genus of trees and shrubs of tropical Africa and Asia and Australia -12700996 20 n 01 turreae 0 002 @ 13104059 n 0000 #m 12700831 n 0000 | any of numerous trees and shrubs grown for their beautiful glossy foliage and sweetly fragrant starry flowers -12701178 20 n 02 Lepidobotryaceae 0 family_Lepidobotryaceae 0 004 @ 11566682 n 0000 #m 12684640 n 0000 %m 12701491 n 0000 %m 12701901 n 0000 | family created in 1950 solely for the classification of a distinctive African tree repeatedly classified in other families; trees long believed to exist only in Africa -12701491 20 n 01 genus_Lepidobotrys 0 003 @ 11585340 n 0000 #m 12701178 n 0000 %m 12701666 n 0000 | a genus of dicotyledonous trees belonging to the family Lepidobotryaceae -12701666 20 n 01 lepidobotrys 0 002 @ 13104059 n 0000 #m 12701491 n 0000 | African tree often classified in other families; similar to the Costa Rican caracolito in wood structure as well as in fruit and flowers and leaves and seeds -12701901 20 n 02 Ruptiliocarpon 0 genus_Ruptiliocarpon 0 003 @ 11585340 n 0000 #m 12701178 n 0000 %m 12702124 n 0000 | new (1993) genus of trees of Central America now recognized as similar to those of genus Lepidobotrys -12702124 20 n 02 caracolito 0 Ruptiliocarpon_caracolito 0 002 @ 13104059 n 0000 #m 12701901 n 0000 | large Costa Rican tree having light-colored wood suitable for cabinetry; similar to the African lepidobotrys in wood structure as well as in fruit and flowers and leaves and seeds; often classified in other families -12702443 20 n 03 Oxalidaceae 0 family_Oxalidaceae 0 wood-sorrel_family 0 004 @ 11566682 n 0000 #m 12684640 n 0000 %m 12702706 n 0000 %m 12704191 n 0000 | a family of widely distributed herbs of the order Geraniales; have compound leaves and pentamerous flowers -12702706 20 n 01 genus_Oxalis 0 003 @ 11585340 n 0000 #m 12702443 n 0000 %m 12702948 n 0000 | type genus of the Oxalidaceae; large genus of plants having leaves that resemble clover and variously colored flowers usually clustered in umbels -12702948 20 n 03 oxalis 0 sorrel 2 wood_sorrel 0 008 @ 12205694 n 0000 #m 12702706 n 0000 ~ 12703190 n 0000 ~ 12703383 n 0000 ~ 12703557 n 0000 ~ 12703716 n 0000 ~ 12703856 n 0000 ~ 12704041 n 0000 | any plant or flower of the genus Oxalis -12703190 20 n 04 common_wood_sorrel 0 cuckoo_bread 0 shamrock 3 Oxalis_acetosella 0 001 @ 12702948 n 0000 | Eurasian plant with heart-shaped trifoliate leaves and white purple-veined flowers -12703383 20 n 04 Bermuda_buttercup 0 English-weed 0 Oxalis_pes-caprae 0 Oxalis_cernua 0 001 @ 12702948 n 0000 | South African bulbous wood sorrel with showy yellow flowers -12703557 20 n 03 creeping_oxalis 0 creeping_wood_sorrel 0 Oxalis_corniculata 0 001 @ 12702948 n 0000 | creeping much-branched mat-forming weed; cosmopolitan -12703716 20 n 03 goatsfoot 0 goat's_foot 0 Oxalis_caprina 0 001 @ 12702948 n 0000 | short-stemmed South African plant with bluish flowers -12703856 20 n 02 violet_wood_sorrel 0 Oxalis_violacea 0 001 @ 12702948 n 0000 | perennial herb of eastern North America with palmately compound leaves and usually rose-purple flowers -12704041 20 n 04 oca 0 oka 0 Oxalis_tuberosa 0 Oxalis_crenata 0 001 @ 12702948 n 0000 | South American wood sorrel cultivated for its edible tubers -12704191 20 n 02 Averrhoa 0 genus_Averrhoa 0 002 @ 11585340 n 0000 #m 12702443 n 0000 | trees native to East Indies having pinnate leaves: carambolas -12704343 20 n 03 carambola 0 carambola_tree 0 Averrhoa_carambola 0 002 @ 12651821 n 0000 %p 07746551 n 0000 | East Indian tree bearing deeply ridged yellow-brown fruit -12704513 20 n 02 bilimbi 0 Averrhoa_bilimbi 0 001 @ 12651821 n 0000 | East Indian evergreen tree bearing very acid fruit -12704636 20 n 03 Polygalaceae 0 family_Polygalaceae 0 milkwort_family 0 003 @ 11566682 n 0000 #m 12684640 n 0000 %m 12704844 n 0000 | trees, shrubs, and herbs widely distributed throughout both hemispheres -12704844 20 n 02 Polygala 0 genus_Polygala 0 003 @ 11585340 n 0000 #m 12704636 n 0000 %m 12705013 n 0000 | type genus of the Polygalaceae: milkwort; senega; snakeroot -12705013 20 n 01 milkwort 0 007 @ 13118707 n 0000 #m 12704844 n 0000 ~ 12705220 n 0000 ~ 12705458 n 0000 ~ 12705698 n 0000 ~ 12705978 n 0000 ~ 12706410 n 0000 | any of various plants of the genus Polygala -12705220 20 n 02 senega 1 Polygala_alba 0 002 @ 12705013 n 0000 %p 12706240 n 0000 | perennial bushy herb of central and southern United States having white flowers with green centers and often purple crest; similar to Seneca snakeroot -12705458 20 n 05 orange_milkwort 0 yellow_milkwort 0 candyweed 0 yellow_bachelor's_button 0 Polygala_lutea 0 001 @ 12705013 n 0000 | bog plant of pine barrens of southeastern United States having spikes of irregular yellow-orange flowers -12705698 20 n 05 flowering_wintergreen 0 gaywings 0 bird-on-the-wing 0 fringed_polygala 0 Polygala_paucifolia 0 001 @ 12705013 n 0000 | common trailing perennial milkwort of eastern North America having leaves like wintergreen and usually rosy-purple flowers with winged sepals -12705978 20 n 06 Seneca_snakeroot 0 Seneka_snakeroot 0 senga_root 0 senega_root 0 senega_snakeroot 0 Polygala_senega 0 002 @ 12705013 n 0000 %p 12706240 n 0000 | eastern North American plant having a terminal cluster of small white flowers and medicinal roots -12706240 20 n 01 senega 2 003 @ 13125117 n 0000 #p 12705978 n 0000 #p 12705220 n 0000 | dried root of two plants of the genus Polygala containing an irritating saponin -12706410 20 n 03 common_milkwort 0 gand_flower 0 Polygala_vulgaris 0 001 @ 12705013 n 0000 | small European perennial with numerous branches having racemes of blue, pink or white flowers; formerly reputed to promote human lactation -12706644 20 n 03 Rutaceae 0 family_Rutaceae 0 rue_family 0 010 @ 11566682 n 0000 #m 12684640 n 0000 %m 12707040 n 0000 %m 12707432 n 0000 %m 12712149 n 0000 %m 12712488 n 0000 %m 12712820 n 0000 %m 12713664 n 0000 %m 12714114 n 0000 %m 12714550 n 0000 | a family of dicotyledonous plants of order Geraniales; have flowers that are divide into four or five parts and usually have a strong scent -12707040 20 n 02 Ruta 0 genus_Ruta 0 003 @ 11585340 n 0000 #m 12706644 n 0000 %m 12707199 n 0000 | type genus of the Rutaceae; strong-scented Eurasian herbs -12707199 20 n 03 rue 0 herb_of_grace 0 Ruta_graveolens 0 003 @ 12205694 n 0000 #m 12707040 n 0000 %p 07820297 n 0000 | European strong-scented perennial herb with grey-green bitter-tasting leaves; an irritant similar to poison ivy -12707432 20 n 01 genus_Citrus 0 015 @ 11585340 n 0000 #m 12706644 n 0000 %m 12707781 n 0000 %m 12708293 n 0000 %m 12708654 n 0000 %m 12709103 n 0000 %m 12709688 n 0000 %m 12709901 n 0000 %m 12710693 n 0000 %m 12710917 n 0000 %m 12711182 n 0000 %m 12711398 n 0000 %m 12711596 n 0000 ~ 12711817 n 0000 %m 12711984 n 0000 | orange; lemon; lime; etc. -12707781 20 n 02 citrus 0 citrus_tree 0 015 @ 12651821 n 0000 #m 12707432 n 0000 + 03055237 a 0101 %p 07747055 n 0000 ~ 12708293 n 0000 ~ 12709103 n 0000 ~ 12709349 n 0000 ~ 12709688 n 0000 ~ 12709901 n 0000 ~ 12711182 n 0000 ~ 12711398 n 0000 ~ 12711596 n 0000 ~ 12711984 n 0000 ~ 12712320 n 0000 ~ 12713063 n 0000 | any of numerous tropical usually thorny evergreen trees of the genus Citrus having leathery evergreen leaves and widely cultivated for their juicy edible fruits having leathery aromatic rinds -12708293 20 n 02 orange 0 orange_tree 0 008 @ 12707781 n 0000 #m 12707432 n 0000 %p 07747607 n 0000 %s 12708520 n 0000 ~ 12708654 n 0000 ~ 12708941 n 0000 ~ 12710693 n 0000 ~ 12710917 n 0000 | any citrus tree bearing oranges -12708520 20 n 01 orangewood 0 002 @ 15098161 n 0000 #s 12708293 n 0000 | fine-grained wood of an orange tree; used in fine woodwork -12708654 20 n 07 sour_orange 0 Seville_orange 0 bitter_orange 0 bitter_orange_tree 0 bigarade 0 marmalade_orange 0 Citrus_aurantium 0 003 @ 12708293 n 0000 #m 12707432 n 0000 %p 07748753 n 0000 | any of various common orange trees yielding sour or bitter fruit; used as grafting stock -12708941 20 n 03 bergamot 0 bergamot_orange 0 Citrus_bergamia 0 001 @ 12708293 n 0000 | small tree with pear-shaped fruit whose oil is used in perfumery; Italy -12709103 20 n 07 pomelo 0 pomelo_tree 0 pummelo 0 shaddock 0 Citrus_maxima 0 Citrus_grandis 0 Citrus_decumana 0 003 @ 12707781 n 0000 #m 12707432 n 0000 %p 07750146 n 0000 | southeastern Asian tree producing large fruits resembling grapefruits -12709349 20 n 03 citron 0 citron_tree 0 Citrus_medica 0 003 @ 12707781 n 0000 %p 07750449 n 0000 %s 12709591 n 0000 | thorny evergreen small tree or shrub of India widely cultivated for its large lemonlike fruits that have thick warty rind -12709591 20 n 01 citronwood 0 002 @ 15098161 n 0000 #s 12709349 n 0000 | wood of a citron tree -12709688 20 n 02 grapefruit 0 Citrus_paradisi 0 003 @ 12707781 n 0000 #m 12707432 n 0000 %p 07749969 n 0000 | citrus tree bearing large round edible fruit having a thick yellow rind and juicy somewhat acid pulp -12709901 20 n 04 mandarin 0 mandarin_orange 0 mandarin_orange_tree 0 Citrus_reticulata 0 006 @ 12707781 n 0000 #m 12707432 n 0000 %p 07747951 n 0000 ~ 12710295 n 0000 ~ 12710415 n 0000 ~ 12710577 n 0000 | shrub or small tree having flattened globose fruit with very sweet aromatic pulp and thin yellow-orange to flame-orange rind that is loose and easily removed; native to southeastern Asia -12710295 20 n 02 tangerine 0 tangerine_tree 0 002 @ 12709901 n 0000 %p 07748416 n 0000 | a variety of mandarin orange -12710415 20 n 02 clementine 0 clementine_tree 0 001 @ 12709901 n 0000 | a variety of mandarin orange that is grown around the Mediterranean and in South Africa -12710577 20 n 02 satsuma 0 satsuma_tree 0 002 @ 12709901 n 0000 %p 07748276 n 0000 | a variety of mandarin orange -12710693 20 n 03 sweet_orange 0 sweet_orange_tree 0 Citrus_sinensis 0 003 @ 12708293 n 0000 #m 12707432 n 0000 %p 07748912 n 0000 | probably native to southern China; widely cultivated as source of table and juice oranges -12710917 20 n 05 temple_orange 0 temple_orange_tree 0 tangor 0 king_orange 0 Citrus_nobilis 0 003 @ 12708293 n 0000 #m 12707432 n 0000 %p 07747811 n 0000 | large citrus tree having large sweet deep orange fruit that is easily peeled; widely cultivated in Florida -12711182 20 n 04 tangelo 0 tangelo_tree 0 ugli_fruit 0 Citrus_tangelo 0 003 @ 12707781 n 0000 #m 12707432 n 0000 %p 07748574 n 0000 | hybrid between grapefruit and mandarin orange; cultivated especially in Florida -12711398 20 n 04 rangpur 0 rangpur_lime 0 lemanderin 0 Citrus_limonia 0 002 @ 12707781 n 0000 #m 12707432 n 0000 | hybrid between mandarin orange and lemon having very acid fruit with orange peel -12711596 20 n 03 lemon 0 lemon_tree 0 Citrus_limon 0 004 @ 12707781 n 0000 #m 12707432 n 0000 %p 07749582 n 0000 ~ 12711817 n 0000 | a small evergreen tree that originated in Asia but is widely cultivated for its fruit -12711817 20 n 03 sweet_lemon 0 sweet_lime 0 Citrus_limetta 0 002 @ 12711596 n 0000 @ 12707432 n 0000 | lemon tree having fruit with a somewhat insipid sweetish pulp -12711984 20 n 03 lime 1 lime_tree 1 Citrus_aurantifolia 0 003 @ 12707781 n 0000 #m 12707432 n 0000 %p 07749731 n 0000 | any of various related trees bearing limes -12712149 20 n 02 Citroncirus 0 genus_Citroncirus 0 003 @ 11585340 n 0000 #m 12706644 n 0000 %m 12712320 n 0000 | a cross between Citrus sinensis and Poncirus trifoliata -12712320 20 n 03 citrange 0 citrange_tree 0 Citroncirus_webberi 0 003 @ 12707781 n 0000 #m 12712149 n 0000 %p 07750299 n 0000 | more aromatic and acidic than oranges -12712488 20 n 02 Dictamnus 0 genus_Dictamnus 0 002 @ 11585340 n 0000 #m 12706644 n 0000 | a dicotyledonous genus of the family Rutaceae -12712626 20 n 05 fraxinella 0 dittany 0 burning_bush 3 gas_plant 0 Dictamnus_alba 0 001 @ 12205694 n 0000 | Eurasian perennial herb with white flowers that emit flammable vapor in hot weather -12712820 20 n 02 Fortunella 0 genus_Fortunella 0 004 @ 11585340 n 0000 #m 12706644 n 0000 %m 12713063 n 0000 %m 12713358 n 0000 | small genus of shrubs native to south China producing small ovoid fruits resembling oranges: includes kumquats -12713063 20 n 03 kumquat 0 cumquat 0 kumquat_tree 0 005 @ 12707781 n 0000 #m 12712820 n 0000 %p 07749446 n 0000 ~ 12713358 n 0000 ~ 12713521 n 0000 | any of several trees or shrubs of the genus Fortunella bearing small orange-colored edible fruits with thick sweet-flavored skin and sour pulp -12713358 20 n 04 marumi 0 marumi_kumquat 0 round_kumquat 0 Fortunella_japonica 0 002 @ 12713063 n 0000 #m 12712820 n 0000 | shrub bearing round-fruited kumquats -12713521 20 n 04 nagami 0 nagami_kumquat 0 oval_kumquat 0 Fortunella_margarita 0 001 @ 12713063 n 0000 | shrub bearing oval-fruited kumquats -12713664 20 n 02 Phellodendron 0 genus_Phellodendron 0 003 @ 11585340 n 0000 #m 12706644 n 0000 %m 12713866 n 0000 | small genus of aromatic deciduous trees of east Asia often having thick corky bark -12713866 20 n 02 cork_tree 2 Phellodendron_amurense 0 002 @ 13104059 n 0000 #m 12713664 n 0000 | deciduous tree of China and Manchuria having a turpentine aroma and handsome compound leaves turning yellow in autumn and deeply fissured corky bark -12714114 20 n 02 Poncirus 0 genus_Poncirus 0 003 @ 11585340 n 0000 #m 12706644 n 0000 %m 12714254 n 0000 | one species: trifoliate orange -12714254 20 n 04 trifoliate_orange 0 trifoliata 0 wild_orange 2 Poncirus_trifoliata 0 002 @ 13104059 n 0000 #m 12714114 n 0000 | small fast-growing spiny deciduous Chinese orange tree bearing sweetly scented flowers and decorative but inedible fruit: used as a stock in grafting and for hedges -12714550 20 n 02 Zanthoxylum 0 genus_Zanthoxylum 0 005 @ 11585340 n 0000 #m 12706644 n 0000 %m 12714755 n 0000 %m 12714949 n 0000 %m 12715195 n 0000 | deciduous or evergreen trees or shrubs: prickly ash -12714755 20 n 01 prickly_ash 1 004 @ 13104059 n 0000 #m 12714550 n 0000 ~ 12714949 n 0000 ~ 12715195 n 0000 | any of a number of trees or shrubs of the genus Zanthoxylum having spiny branches -12714949 20 n 04 toothache_tree 0 sea_ash 0 Zanthoxylum_americanum 0 Zanthoxylum_fraxineum 0 002 @ 12714755 n 0000 #m 12714550 n 0000 | small deciduous aromatic shrub (or tree) having spiny branches and yellowish flowers; eastern North America -12715195 20 n 04 Hercules'-club 1 Hercules'-clubs 1 Hercules-club 1 Zanthoxylum_clava-herculis 0 002 @ 12714755 n 0000 #m 12714550 n 0000 | densely spiny ornamental of southeastern United States and West Indies -12715408 20 n 03 satinwood 1 West_Indian_satinwood 0 Zanthoxylum_flavum 0 001 @ 11650919 n 0000 | West Indian tree with smooth lustrous and slightly oily wood -12715569 20 n 03 Simaroubaceae 0 family_Simaroubaceae 0 quassia_family 0 009 @ 11566682 n 0000 #m 12684640 n 0000 %m 12715914 n 0000 %m 12716166 n 0000 %m 12716861 n 0000 %m 12717524 n 0000 %m 12717914 n 0000 %m 12718314 n 0000 %m 12718807 n 0000 | chiefly tropical trees and shrubs with bitter bark having dry usually one-seeded winged fruit -12715914 20 n 01 bitterwood_tree 0 006 @ 13104059 n 0000 #m 12715569 n 0000 ~ 12716400 n 0000 ~ 12716594 n 0000 ~ 12718483 n 0000 ~ 12718995 n 0000 | any of various trees or shrubs of the family Simaroubaceae having wood and bark with a bitter taste -12716166 20 n 02 Simarouba 0 genus_Simarouba 0 004 @ 11585340 n 0000 #m 12715569 n 0000 %m 12716400 n 0000 %m 12716594 n 0000 | type genus of Simaroubaceae; tropical American trees and shrubs having a pale soft wood and bitter bark -12716400 20 n 02 marupa 0 Simarouba_amara 0 002 @ 12715914 n 0000 #m 12716166 n 0000 | tree of the Amazon valley yielding a light brittle timber locally regarded as resistant to insect attack -12716594 20 n 03 paradise_tree 0 bitterwood 3 Simarouba_glauca 0 002 @ 12715914 n 0000 #m 12716166 n 0000 | medium to large tree of tropical North and South America having odd-pinnate leaves and long panicles of small pale yellow flowers followed by scarlet fruits -12716861 20 n 01 genus_Ailanthus 0 004 @ 11585340 n 0000 #m 12715569 n 0000 %m 12717072 n 0000 %m 12717224 n 0000 | small genus of east Asian and Chinese trees with odd-pinnate leaves and long twisted samaras -12717072 20 n 01 ailanthus 0 003 @ 13109733 n 0000 #m 12716861 n 0000 ~ 12717224 n 0000 | any of several deciduous Asian trees of the genus Ailanthus -12717224 20 n 03 tree_of_heaven 0 tree_of_the_gods 0 Ailanthus_altissima 0 002 @ 12717072 n 0000 #m 12716861 n 0000 | deciduous rapidly growing tree of China with foliage like sumac and sweetish fetid flowers; widely planted in United States as a street tree because of its resistance to pollution -12717524 20 n 02 Irvingia 0 genus_Irvingia 0 003 @ 11585340 n 0000 #m 12715569 n 0000 %m 12717644 n 0000 | wild mango -12717644 20 n 04 wild_mango 0 dika 0 wild_mango_tree 0 Irvingia_gabonensis 0 003 @ 12651821 n 0000 #m 12717524 n 0000 %p 07773700 n 0000 | African tree with edible yellow fruit resembling mangos; valued for its oil-rich seed and hardy green wood that resists termites -12717914 20 n 02 Kirkia 0 genus_Kirkia 0 003 @ 11585340 n 0000 #m 12715569 n 0000 %m 12718074 n 0000 | small genus of tropical South African trees and shrubs -12718074 20 n 02 pepper_tree 1 Kirkia_wilmsii 0 002 @ 13104059 n 0000 #m 12717914 n 0000 | small African deciduous tree with spreading crown having leaves clustered toward ends of branches and clusters of creamy flowers resembling lilacs -12718314 20 n 02 Picrasma 0 genus_Picrasma 0 003 @ 11585340 n 0000 #m 12715569 n 0000 %m 12718483 n 0000 | small genus of deciduous trees of tropical America and Asia -12718483 20 n 04 Jamaica_quassia 1 bitterwood 2 Picrasma_excelsa 0 Picrasma_excelsum 0 003 @ 12715914 n 0000 #m 12718314 n 0000 %s 12718685 n 0000 | West Indian tree yielding the drug Jamaica quassia -12718685 20 n 01 Jamaica_quassia 2 002 @ 15000475 n 0000 #s 12718483 n 0000 | similar to the extract from Quassia amara -12718807 20 n 01 genus_Quassia 0 003 @ 11585340 n 0000 #m 12715569 n 0000 %m 12718995 n 0000 | tropical trees and shrubs with pinnate leaves and large scarlet flowers; bark is medicinal -12718995 20 n 03 quassia 1 bitterwood 1 Quassia_amara 0 002 @ 12715914 n 0000 #m 12718807 n 0000 | handsome South American shrub or small tree having bright scarlet flowers and yielding a valuable fine-grained yellowish wood; yields the bitter drug quassia from its wood and bark -12719277 20 n 03 Tropaeolaceae 0 family_Tropaeolaceae 0 nasturtium_family 0 003 @ 11566682 n 0000 #m 12684640 n 0000 %m 12719455 n 0000 | coextensive with the genus Tropaeolum -12719455 20 n 02 Tropaeolum 0 genus_Tropaeolum 0 003 @ 11585340 n 0000 #m 12719277 n 0000 %m 12719684 n 0000 | a tropical American genus of dicotyledonous climbing or diffuse pungent herbs constituting the family Tropaeolaceae -12719684 20 n 01 nasturtium 1 006 @ 12205694 n 0000 #m 12719455 n 0000 %p 07819769 n 0000 ~ 12719944 n 0000 ~ 12720200 n 0000 ~ 12720354 n 0000 | any tropical American plant of the genus Tropaeolum having pungent juice and long-spurred yellow to red flowers -12719944 20 n 03 garden_nasturtium 0 Indian_cress 0 Tropaeolum_majus 0 001 @ 12719684 n 0000 | strong-growing annual climber having large flowers of all shades of orange from orange-red to yellowish orange and seeds that are pickled and used like capers -12720200 20 n 02 bush_nasturtium 0 Tropaeolum_minus 0 001 @ 12719684 n 0000 | annual with deep yellow flowers smaller than the common garden nasturtium -12720354 20 n 04 canarybird_flower 0 canarybird_vine 0 canary_creeper 0 Tropaeolum_peregrinum 0 001 @ 12719684 n 0000 | a climber having flowers that are the color of canaries -12720532 20 n 03 Zygophyllaceae 0 family_Zygophyllaceae 0 bean-caper_family 0 007 @ 11566682 n 0000 #m 12684640 n 0000 %m 12720893 n 0000 %m 12721357 n 0000 %m 12721864 n 0000 %m 12722884 n 0000 %m 12723446 n 0000 | small trees, shrubs, and herbs of warm arid and saline regions; often resinous; some poisonous: genera Zygophyllum, Tribulus, Guaiacum, Larrea -12720893 20 n 02 Zygophyllum 0 genus_Zygophyllum 0 003 @ 11585340 n 0000 #m 12720532 n 0000 %m 12721122 n 0000 | usually tropical herbs or shrubs having ill-smelling foliage and flower buds that are used as capers: bean capers -12721122 20 n 03 bean_caper 0 Syrian_bean_caper 0 Zygophyllum_fabago 0 002 @ 13112664 n 0000 #m 12720893 n 0000 | perennial shrub of the eastern Mediterranean region and southwestern Asia having flowers whose buds are used as capers -12721357 20 n 02 Bulnesia 0 genus_Bulnesia 0 003 @ 11585340 n 0000 #m 12720532 n 0000 %m 12721477 n 0000 | palo santo -12721477 20 n 02 palo_santo 0 Bulnesia_sarmienti 0 003 @ 13109733 n 0000 #m 12721357 n 0000 %s 12721705 n 0000 | South American tree of dry interior regions of Argentina and Paraguay having resinous heartwood used for incense -12721705 20 n 02 guaiac_wood 0 guaiacum_wood 0 002 @ 15098161 n 0000 #s 12721477 n 0000 | heartwood of a palo santo; yields an aromatic oil used in perfumes -12721864 20 n 02 Guaiacum 0 genus_Guaiacum 0 004 @ 11585340 n 0000 #m 12720532 n 0000 %m 12722071 n 0000 %m 12722567 n 0000 | small genus of evergreen resinous trees or shrubs of warm and tropical America -12722071 20 n 02 lignum_vitae 0 Guaiacum_officinale 0 004 @ 13109733 n 0000 #m 12721864 n 0000 %s 12722382 n 0000 %s 12722768 n 0000 | small evergreen tree of Caribbean and southern Central America to northern South America; a source of lignum vitae wood, hardest of commercial timbers, and a medicinal resin -12722382 20 n 03 lignum_vitae 2 guaiac 0 guaiacum 2 002 @ 15098161 n 0000 #s 12722071 n 0000 | hard greenish-brown wood of the lignum vitae tree and other trees of the genus Guaiacum -12722567 20 n 02 bastard_lignum_vitae 0 Guaiacum_sanctum 0 002 @ 13109733 n 0000 #m 12721864 n 0000 | small evergreen tree of the southern United States and West Indies a source of lignum vitae wood -12722768 20 n 01 guaiacum 3 002 @ 14894481 n 0000 #s 12722071 n 0000 | medicinal resin from the lignum vitae tree -12722884 20 n 02 Larrea 0 genus_Larrea 0 003 @ 11585340 n 0000 #m 12720532 n 0000 %m 12723062 n 0000 | xerophytic evergreen shrubs; South America to southwestern United States -12723062 20 n 04 creosote_bush 0 coville 0 hediondilla 0 Larrea_tridentata 0 003 @ 13112664 n 0000 #m 12722884 n 0000 %p 12723330 n 0000 | desert shrub of southwestern United States and New Mexico having persistent resinous aromatic foliage and small yellow flowers -12723330 20 n 01 Sonora_gum 0 002 @ 14897751 n 0000 #p 12723062 n 0000 | acidulous gum resin of the creosote bush -12723446 20 n 02 Tribulus 0 genus_Tribulus 0 003 @ 11585340 n 0000 #m 12720532 n 0000 %m 12723610 n 0000 | annual or perennial herbs or subshrubs of warm regions -12723610 20 n 03 caltrop 0 devil's_weed 0 Tribulus_terestris 0 002 @ 13118707 n 0000 #m 12723446 n 0000 | tropical annual procumbent poisonous subshrub having fruit that splits into five spiny nutlets; serious pasture weed -12723835 20 n 02 Salicales 0 order_Salicales 0 003 @ 11534677 n 0000 #m 11665781 n 0000 %m 12723985 n 0000 | coextensive with the family Salicaceae -12723985 20 n 03 Salicaceae 0 family_Salicaceae 0 willow_family 0 004 @ 11564734 n 0000 #m 12723835 n 0000 %m 12724201 n 0000 %m 12731202 n 0000 | two genera of trees or shrubs having hairy catkins: Salix; Populus -12724201 20 n 02 Salix 0 genus_Salix 0 032 @ 11573173 n 0000 #m 12723985 n 0000 %m 12724942 n 0000 %m 12725521 n 0000 %m 12725738 n 0000 %m 12725940 n 0000 %m 12726159 n 0000 %m 12726357 n 0000 %m 12726528 n 0000 %m 12726670 n 0000 %m 12726902 n 0000 %m 12727101 n 0000 %m 12727301 n 0000 %m 12727518 n 0000 %m 12727729 n 0000 %m 12727960 n 0000 %m 12728164 n 0000 %m 12728322 n 0000 %m 12728508 n 0000 %m 12728656 n 0000 %m 12728864 n 0000 %m 12729023 n 0000 %m 12729164 n 0000 %m 12729315 n 0000 %m 12729521 n 0000 %m 12729729 n 0000 %m 12729950 n 0000 %m 12730143 n 0000 %m 12730370 n 0000 %m 12730544 n 0000 %m 12730776 n 0000 %m 12731029 n 0000 | a large and widespread genus varying in size from small shrubs to large trees: willows -12724942 20 n 02 willow 0 willow_tree 0 026 @ 13104059 n 0000 #m 12724201 n 0000 ~ 12725521 n 0000 ~ 12725738 n 0000 ~ 12725940 n 0000 ~ 12726357 n 0000 ~ 12726528 n 0000 ~ 12726670 n 0000 ~ 12726902 n 0000 ~ 12727101 n 0000 ~ 12727301 n 0000 ~ 12727729 n 0000 ~ 12728164 n 0000 ~ 12728322 n 0000 ~ 12728508 n 0000 ~ 12728656 n 0000 ~ 12728864 n 0000 ~ 12729023 n 0000 ~ 12729164 n 0000 ~ 12729315 n 0000 ~ 12729521 n 0000 ~ 12729950 n 0000 ~ 12730143 n 0000 ~ 12730370 n 0000 ~ 12730544 n 0000 ~ 12730776 n 0000 | any of numerous deciduous trees and shrubs of the genus Salix -12725521 20 n 01 osier 1 006 @ 12724942 n 0000 #m 12724201 n 0000 ~ 12726159 n 0000 ~ 12727960 n 0000 ~ 12729729 n 0000 ~ 12731029 n 0000 | any of various willows having pliable twigs used in basketry and furniture -12725738 20 n 03 white_willow 0 Huntingdon_willow 0 Salix_alba 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | large willow tree of Eurasia and North Africa having greyish canescent leaves and grey bark -12725940 20 n 04 silver_willow 0 silky_willow 1 Salix_alba_sericea 0 Salix_sericea 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | North American willow with greyish silky pubescent leaves that usually blacken in drying -12726159 20 n 03 golden_willow 0 Salix_alba_vitellina 0 Salix_vitellina 0 002 @ 12725521 n 0000 #m 12724201 n 0000 | European willow having greyish leaves and yellow-orange twigs used in basketry -12726357 20 n 02 cricket-bat_willow 0 Salix_alba_caerulea 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | Eurasian willow tree having greyish leaves and ascending branches -12726528 20 n 02 arctic_willow 0 Salix_arctica 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | low creeping shrub of Arctic Europe and America -12726670 20 n 03 weeping_willow 0 Babylonian_weeping_willow 0 Salix_babylonica 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | willow with long drooping branches and slender leaves native to China; widely cultivated as an ornamental -12726902 20 n 04 Wisconsin_weeping_willow 0 Salix_pendulina 0 Salix_blanda 0 Salix_pendulina_blanda 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | hybrid willow usually not strongly weeping in habit -12727101 20 n 02 pussy_willow 1 Salix_discolor 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | small willow of eastern North America having greyish leaves and silky catkins that come before the leaves -12727301 20 n 01 sallow 0 003 @ 12724942 n 0000 #m 12724201 n 0000 ~ 12727518 n 0000 | any of several Old World shrubby broad-leaved willows having large catkins; some are important sources for tanbark and charcoal -12727518 20 n 04 goat_willow 0 florist's_willow 0 pussy_willow 2 Salix_caprea 0 002 @ 12727301 n 0000 #m 12724201 n 0000 | much-branched Old World willow having large catkins and relatively large broad leaves -12727729 20 n 04 peachleaf_willow 0 peach-leaved_willow 0 almond-leaves_willow 0 Salix_amygdaloides 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | willow of the western United States with leaves like those of peach or almond trees -12727960 20 n 04 almond_willow 0 black_Hollander 0 Salix_triandra 0 Salix_amygdalina 0 002 @ 12725521 n 0000 #m 12724201 n 0000 | Old World willow with light green leaves cultivated for use in basketry -12728164 20 n 03 hoary_willow 0 sage_willow 1 Salix_candida 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | North American shrub with whitish canescent leaves -12728322 20 n 04 crack_willow 0 brittle_willow 0 snap_willow 0 Salix_fragilis 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | large willow tree with stiff branches that are easily broken -12728508 20 n 02 prairie_willow 0 Salix_humilis 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | slender shrubby willow of dry areas of North America -12728656 20 n 02 dwarf_willow 0 Salix_herbacea 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | widely distributed boreal shrubby willow with partially underground creeping stems and bright green glossy leaves -12728864 20 n 03 grey_willow 0 gray_willow 0 Salix_cinerea 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | Eurasian shrubby willow with whitish tomentose twigs -12729023 20 n 02 arroyo_willow 0 Salix_lasiolepis 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | shrubby willow of the western United States -12729164 20 n 02 shining_willow 0 Salix_lucida 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | common North American shrub with shiny lanceolate leaves -12729315 20 n 03 swamp_willow 0 black_willow 0 Salix_nigra 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | North American shrubby willow having dark bark and linear leaves growing close to streams and lakes -12729521 20 n 03 bay_willow 0 laurel_willow 0 Salix_pentandra 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | European willow tree with shining leathery leaves; widely naturalized in the eastern United States -12729729 20 n 06 purple_willow 0 red_willow 0 red_osier 1 basket_willow 0 purple_osier 0 Salix_purpurea 0 002 @ 12725521 n 0000 #m 12724201 n 0000 | Eurasian osier having reddish or purple twigs and bark rich in tannin -12729950 20 n 02 balsam_willow 0 Salix_pyrifolia 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | small shrubby tree of eastern North America having leaves exuding an odor of balsam when crushed -12730143 20 n 02 creeping_willow 0 Salix_repens 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | small trailing bush of Europe and Asia having straggling branches with silky green leaves of which several varieties are cultivated -12730370 20 n 03 Sitka_willow 0 silky_willow 2 Salix_sitchensis 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | small shrubby tree of western North America (Alaska to Oregon) -12730544 20 n 04 dwarf_grey_willow 0 dwarf_gray_willow 0 sage_willow 2 Salix_tristis 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | willow shrub of dry places in the eastern United States having long narrow leaves canescent beneath -12730776 20 n 02 bearberry_willow 0 Salix_uva-ursi 0 002 @ 12724942 n 0000 #m 12724201 n 0000 | dwarf prostrate mat-forming shrub of Arctic and alpine regions of North America and Greenland having deep green elliptic leaves that taper toward the base -12731029 20 n 04 common_osier 0 hemp_willow 0 velvet_osier 0 Salix_viminalis 0 002 @ 12725521 n 0000 #m 12724201 n 0000 | willow with long flexible twigs used in basketry -12731202 20 n 02 Populus 0 genus_Populus 0 003 @ 11573173 n 0000 #m 12723985 n 0000 %m 12731401 n 0000 | a genus of trees of the family Salicaceae that is found in the northern hemisphere; poplars -12731401 20 n 02 poplar 0 poplar_tree 0 009 @ 13109733 n 0000 #m 12731202 n 0000 %s 12731714 n 0000 ~ 12731835 n 0000 ~ 12732009 n 0000 ~ 12732252 n 0000 ~ 12732491 n 0000 ~ 12732756 n 0000 ~ 12733647 n 0000 | any of numerous trees of north temperate regions having light soft wood and flowers borne in catkins -12731714 20 n 01 poplar 2 002 @ 15098161 n 0000 #s 12731401 n 0000 | soft light-colored non-durable wood of the poplar -12731835 20 n 04 balsam_poplar 0 hackmatack 0 tacamahac 0 Populus_balsamifera 0 001 @ 12731401 n 0000 | poplar of northeastern North America with broad heart-shaped leaves -12732009 20 n 06 white_poplar 0 white_aspen 0 abele 0 aspen_poplar 0 silver-leaved_poplar 0 Populus_alba 0 001 @ 12731401 n 0000 | a poplar that is widely cultivated in the United States; has white bark and leaves with whitish undersurfaces -12732252 20 n 03 grey_poplar 0 gray_poplar 0 Populus_canescens 0 001 @ 12731401 n 0000 | large rapidly growing poplar with faintly lobed dentate leaves grey on the lower surface; native to Europe but introduced and naturalized elsewhere -12732491 20 n 02 black_poplar 0 Populus_nigra 0 002 @ 12731401 n 0000 ~ 12732605 n 0000 | large European poplar -12732605 20 n 02 Lombardy_poplar 0 Populus_nigra_italica 0 001 @ 12732491 n 0000 | distinguished by its columnar fastigiate shape and erect branches -12732756 20 n 01 cottonwood 0 004 @ 12731401 n 0000 ~ 12732966 n 0000 ~ 12733218 n 0000 ~ 12733428 n 0000 | any of several North American trees of the genus Populus having a tuft of cottony hairs on the seed -12732966 20 n 03 Eastern_cottonwood 0 necklace_poplar 0 Populus_deltoides 0 001 @ 12732756 n 0000 | a common poplar of eastern and central United States; cultivated in United States for its rapid growth and luxuriant foliage and in Europe for timber -12733218 20 n 03 black_cottonwood 0 Western_balsam_poplar 0 Populus_trichocarpa 0 001 @ 12732756 n 0000 | cottonwood of western North America with dark green leaves shining above and rusty or silvery beneath -12733428 20 n 05 swamp_cottonwood 0 black_cottonwood 2 downy_poplar 0 swamp_poplar 0 Populus_heterophylla 0 001 @ 12732756 n 0000 | North American poplar with large rounded scalloped leaves and brownish bark and wood -12733647 20 n 01 aspen 0 004 @ 12731401 n 0000 ~ 12733870 n 0000 ~ 12734070 n 0000 ~ 12734215 n 0000 | any of several trees of the genus Populus having leaves on flattened stalks so that they flutter in the lightest wind -12733870 20 n 03 quaking_aspen 0 European_quaking_aspen 0 Populus_tremula 0 001 @ 12733647 n 0000 | Old World aspen with a broad much-branched crown; northwestern Europe and Siberia to North Africa -12734070 20 n 03 American_quaking_aspen 0 American_aspen 0 Populus_tremuloides 0 001 @ 12733647 n 0000 | slender aspen native to North America -12734215 20 n 07 Canadian_aspen 0 bigtooth_aspen 0 bigtoothed_aspen 0 big-toothed_aspen 0 large-toothed_aspen 0 large_tooth_aspen 0 Populus_grandidentata 0 001 @ 12733647 n 0000 | aspen with a narrow crown; eastern North America -12734446 20 n 02 Santalales 0 order_Santalales 0 005 @ 11534677 n 0000 #m 12358485 n 0000 %m 12734722 n 0000 %m 12737383 n 0000 %m 12738859 n 0000 | order of plants distinguished by having a one-celled inferior ovary; many are parasitic or partly parasitic usually on roots -12734722 20 n 03 Santalaceae 0 family_Santalaceae 0 sandalwood_family 0 007 @ 11565385 n 0000 #m 12734446 n 0000 %m 12735009 n 0000 %m 12735666 n 0000 %m 12736064 n 0000 %m 12736455 n 0000 %m 12736840 n 0000 | chiefly tropical herbs or shrubs or trees bearing nuts or one-seeded fruit -12735009 20 n 02 Santalum 0 genus_Santalum 0 003 @ 11575425 n 0000 #m 12734722 n 0000 %m 12735160 n 0000 | parasitic trees of Indonesia and Malaysia -12735160 20 n 03 sandalwood_tree 0 true_sandalwood 0 Santalum_album 0 003 @ 13104059 n 0000 #m 12735009 n 0000 %s 12735452 n 0000 | parasitic tree of Indonesia and Malaysia having fragrant close-grained yellowish heartwood with insect repelling properties and used, e.g., for making chests -12735452 20 n 01 sandalwood 0 002 @ 15098161 n 0000 #s 12735160 n 0000 | close-grained fragrant yellowish heartwood of the true sandalwood; has insect repelling properties and is used for carving and cabinetwork -12735666 20 n 01 genus_Buckleya 0 003 @ 11575425 n 0000 #m 12734722 n 0000 %m 12735817 n 0000 | small genus of Asiatic and American parasitic shrubs -12735817 20 n 02 buckleya 0 Buckleya_distichophylla 0 002 @ 13120446 n 0000 #m 12735666 n 0000 | parasitic shrub of the eastern United States having opposite leaves and insignificant greenish flowers followed by oily dull green olivelike fruits -12736064 20 n 02 Comandra 0 genus_Comandra 0 003 @ 11575425 n 0000 #m 12734722 n 0000 %m 12736228 n 0000 | small genus of chiefly North American parasitic plants -12736228 20 n 02 bastard_toadflax 0 Comandra_pallida 0 002 @ 13120446 n 0000 #m 12736064 n 0000 | woody creeping parasite of western North America having numerous thick powdery leaves and panicles of small dull-white flowers -12736455 20 n 04 Eucarya 0 genus_Eucarya 0 Fusanus 0 genus_Fusanus 0 003 @ 11575425 n 0000 #m 12734722 n 0000 %m 12736603 n 0000 | quandong trees -12736603 20 n 05 quandong 3 quandang 0 quandong_tree 2 Eucarya_acuminata 0 Fusanus_acuminatus 0 004 @ 13104059 n 0000 #m 12736455 n 0000 %p 07769306 n 0000 %p 07769465 n 0000 | Australian tree with edible flesh and edible nutlike seed -12736840 20 n 02 Pyrularia 0 genus_Pyrularia 0 003 @ 11575425 n 0000 #m 12734722 n 0000 %m 12736999 n 0000 | small genus of chiefly Asiatic parasitic shrubs -12736999 20 n 03 rabbitwood 0 buffalo_nut 1 Pyrularia_pubera 0 003 @ 13120446 n 0000 #m 12736840 n 0000 %p 12737251 n 0000 | shrub of southeastern United States parasitic on roots of hemlocks having sparse spikes of greenish flowers and pulpy drupes -12737251 20 n 03 buffalo_nut 2 elk_nut 0 oil_nut 0 002 @ 13134947 n 0000 #p 12736999 n 0000 | oily drupaceous fruit of rabbitwood -12737383 20 n 03 Loranthaceae 0 family_Loranthaceae 0 mistletoe_family 1 006 @ 11565385 n 0000 @ 13120446 n 0000 #m 12734446 n 0000 %m 12737745 n 0000 %m 12738087 n 0000 %m 12738480 n 0000 | in some classification includes Viscaceae: parasitic or hemiparasitic shrublets or shrubs or small trees of tropical and temperate regions; attach to hosts by haustoria -12737745 20 n 02 Loranthus 0 genus_Loranthus 0 003 @ 11575425 n 0000 #m 12737383 n 0000 %m 12737898 n 0000 | type genus of the Loranthaceae: 1 species -12737898 20 n 02 mistletoe 3 Loranthus_europaeus 0 002 @ 13120446 n 0000 #m 12737745 n 0000 | shrub of central and southeastern Europe; partially parasitic on beeches, chestnuts and oaks -12738087 20 n 02 Arceuthobium 0 genus_Arceuthobium 0 003 @ 11575425 n 0000 #m 12737383 n 0000 %m 12738259 n 0000 | genus of chiefly American plants parasitic on conifers -12738259 20 n 02 American_mistletoe 2 Arceuthobium_pusillum 0 002 @ 13120446 n 0000 #m 12738087 n 0000 | small herb with scalelike leaves on reddish-brown stems and berrylike fruits; parasitic on spruce and larch trees -12738480 20 n 02 Nuytsia 0 genus_Nuytsia 0 003 @ 11575425 n 0000 #m 12737383 n 0000 %m 12738599 n 0000 | one species -12738599 20 n 04 flame_tree 3 fire_tree 0 Christmas_tree 3 Nuytsia_floribunda 0 002 @ 13120446 n 0000 #m 12738480 n 0000 | a terrestrial evergreen shrub or small tree of western Australia having brilliant yellow-orange flowers; parasitic on roots of grasses -12738859 20 n 03 Viscaceae 0 family_Viscaceae 0 mistletoe_family 2 004 @ 11565385 n 0000 #m 12734446 n 0000 %m 12739072 n 0000 %m 12739595 n 0000 | in some classifications considered a subfamily of Loranthaceae -12739072 20 n 02 Viscum 0 genus_Viscum 0 003 @ 11575425 n 0000 #m 12738859 n 0000 %m 12739332 n 0000 | type genus of the Viscaceae: Old World evergreen shrubs parasitic on many trees including oaks but especially apple trees, poplars, aspens and cottonwoods -12739332 20 n 03 mistletoe 1 Viscum_album 0 Old_World_mistletoe 0 002 @ 13120446 n 0000 #m 12739072 n 0000 | Old World parasitic shrub having branching greenish stems with leathery leaves and waxy white glutinous berries; the traditional mistletoe of Christmas -12739595 20 n 02 Phoradendron 0 genus_Phoradendron 0 003 @ 11575425 n 0000 #m 12738859 n 0000 %m 12739801 n 0000 | any of various American parasitic plants similar to Old World mistletoe: false mistletoe -12739801 20 n 02 mistletoe 2 false_mistletoe 0 003 @ 13120446 n 0000 #m 12739595 n 0000 ~ 12739966 n 0000 | American plants closely resembling Old World mistletoe -12739966 20 n 03 American_mistletoe 1 Phoradendron_serotinum 0 Phoradendron_flavescens 0 001 @ 12739801 n 0000 | the traditional mistletoe of Christmas in America: grows on deciduous trees and can severely weaken the host plant -12740196 20 n 02 Sapindales 0 order_Sapindales 0 012 @ 11534677 n 0000 #m 11665781 n 0000 %m 12740514 n 0000 %m 12745788 n 0000 %m 12747563 n 0000 %m 12750306 n 0000 %m 12751402 n 0000 %m 12751823 n 0000 %m 12756286 n 0000 %m 12758639 n 0000 %m 12767951 n 0000 %m 12769430 n 0000 | an order of dicotyledonous plants -12740514 20 n 03 Sapindaceae 0 family_Sapindaceae 0 soapberry_family 0 011 @ 11562747 n 0000 #m 12740196 n 0000 %m 12741079 n 0000 %m 12741409 n 0000 %m 12742041 n 0000 %m 12742546 n 0000 %m 12743232 n 0000 %m 12743680 n 0000 %m 12744277 n 0000 %m 12744656 n 0000 %m 12745160 n 0000 | chiefly tropical New and Old World deciduous and evergreen trees and shrubs bearing leathery drupes with yellow translucent flesh; most plants produce toxic saponins -12740967 20 n 01 aalii 0 002 @ 13104059 n 0000 #m 12741079 n 0000 | a small Hawaiian tree with hard dark wood -12741079 20 n 02 Dodonaea 0 genus_Dodonaea 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12740967 n 0000 | a genus of tropical shrub or tree -12741222 20 n 02 soapberry 0 soapberry_tree 0 004 @ 13104059 n 0000 #m 12741409 n 0000 ~ 12741586 n 0000 ~ 12741792 n 0000 | a tree of the genus Sapindus whose fruit is rich in saponin -12741409 20 n 02 Sapindus 0 genus_Sapindus 0 005 @ 11567411 n 0000 #m 12740514 n 0000 %m 12741222 n 0000 %m 12741586 n 0000 %m 12741792 n 0000 | type genus of the Sapindaceae -12741586 20 n 03 wild_China_tree 0 Sapindus_drumondii 0 Sapindus_marginatus 0 002 @ 12741222 n 0000 #m 12741409 n 0000 | deciduous tree of southwestern United States having pulpy fruit containing saponin -12741792 20 n 05 China_tree 2 false_dogwood 0 jaboncillo 0 chinaberry 2 Sapindus_saponaria 0 002 @ 12741222 n 0000 #m 12741409 n 0000 | evergreen of tropical America having pulpy fruit containing saponin which was used as soap by Native Americans -12742041 20 n 02 Blighia 0 genus_Blighia 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12742290 n 0000 | small genus of western African evergreen trees and shrubs bearing fleshy capsular three-seeded fruits edible when neither unripe nor overripe -12742290 20 n 03 akee 0 akee_tree 0 Blighia_sapida 0 003 @ 12651821 n 0000 #m 12742041 n 0000 %p 07762740 n 0000 | widely cultivated in tropical and subtropical regions for its fragrant flowers and colorful fruits; introduced in Jamaica by William Bligh -12742546 20 n 02 Cardiospermum 0 genus_Cardiospermum 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12742741 n 0000 | tendril-climbing herbs or shrubs whose seeds have a white heart-shaped spot -12742741 20 n 01 soapberry_vine 0 004 @ 13100677 n 0000 #m 12742546 n 0000 ~ 12742878 n 0000 ~ 12743009 n 0000 | tendril-climbing vine -12742878 20 n 02 heartseed 0 Cardiospermum_grandiflorum 0 001 @ 12742741 n 0000 | herbaceous vine of tropical America and Africa -12743009 20 n 03 balloon_vine 0 heart_pea 0 Cardiospermum_halicacabum 0 001 @ 12742741 n 0000 | woody perennial climbing plant with large ornamental seed pods that resemble balloons; tropical India and Africa and America -12743232 20 n 02 Dimocarpus 0 genus_Dimocarpus 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12743352 n 0000 | longan -12743352 20 n 06 longan 0 lungen 0 longanberry 0 Dimocarpus_longan 0 Euphorbia_litchi 0 Nephelium_longana 0 003 @ 12651821 n 0000 #m 12743232 n 0000 %p 07766409 n 0000 | tree of southeastern Asia to Australia grown primarily for its sweet edible fruit resembling litchi nuts; sometimes placed in genera Euphorbia or Nephelium -12743680 20 n 01 genus_Harpullia 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12743823 n 0000 | genus of tropical Asiatic and African trees -12743823 20 n 01 harpullia 0 004 @ 12188289 n 0000 #m 12743680 n 0000 ~ 12743976 n 0000 ~ 12744142 n 0000 | any of various tree of the genus Harpullia -12743976 20 n 02 harpulla 0 Harpullia_cupanioides 0 001 @ 12743823 n 0000 | fast-growing tree of India and East Indies yielding a wood used especially for building -12744142 20 n 02 Moreton_Bay_tulipwood 0 Harpullia_pendula 0 001 @ 12743823 n 0000 | Australian tree yielding a variegated tulipwood -12744277 20 n 01 genus_Litchi 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12744387 n 0000 | Chinese trees -12744387 20 n 05 litchi 0 lichee 0 litchi_tree 0 Litchi_chinensis 0 Nephelium_litchi 0 003 @ 12651821 n 0000 #m 12744277 n 0000 %p 07766173 n 0000 | Chinese tree cultivated especially in Philippines and India for its edible fruit; sometimes placed in genus Nephelium -12744656 20 n 04 Melicoccus 0 genus_Melicoccus 0 Melicocca 0 genus_Melicocca 0 003 @ 11567411 n 0000 #m 12740514 n 0000 %m 12744850 n 0000 | tropical American trees and shrubs bearing berries -12744850 20 n 08 Spanish_lime 0 Spanish_lime_tree 0 honey_berry 0 mamoncillo 0 genip 0 ginep 0 Melicocca_bijuga 0 Melicocca_bijugatus 0 003 @ 12651821 n 0000 #m 12744656 n 0000 %p 07763290 n 0000 | tropical American tree bearing a small edible fruit with green leathery skin and sweet juicy translucent pulp -12745160 20 n 02 Nephelium 0 genus_Nephelium 0 004 @ 11567411 n 0000 #m 12740514 n 0000 %m 12745386 n 0000 %m 12745564 n 0000 | a genus of dicotyledonous trees of the family Sapindaceae that are native to Asia and Australia -12745386 20 n 04 rambutan 0 rambotan 0 rambutan_tree 0 Nephelium_lappaceum 0 003 @ 12651821 n 0000 #m 12745160 n 0000 %p 07769731 n 0000 | Malayan tree bearing spiny red fruit -12745564 20 n 04 pulasan 0 pulassan 0 pulasan_tree 0 Nephelium_mutabile 0 003 @ 12651821 n 0000 #m 12745160 n 0000 %p 07769886 n 0000 | East Indian fruit tree bearing fruit similar to but sweeter than that of the rambutan -12745788 20 n 03 Buxaceae 0 family_Buxaceae 0 box_family 0 004 @ 11562747 n 0000 #m 12740196 n 0000 %m 12745976 n 0000 %m 12746733 n 0000 | widely distributed evergreen shrubs and trees -12745976 20 n 02 Buxus 0 genus_Buxus 0 003 @ 11567411 n 0000 #m 12745788 n 0000 %m 12746106 n 0000 | type genus of the Buxaceae -12746106 20 n 02 box 0 boxwood 0 004 @ 13112664 n 0000 #m 12745976 n 0000 ~ 12746253 n 0000 %s 12746474 n 0000 | evergreen shrubs or small trees -12746253 20 n 03 common_box 0 European_box 0 Buxus_sempervirens 0 001 @ 12746106 n 0000 | large slow-growing evergreen shrub or small tree with multiple stems; extensively used for hedges or borders and topiary figures -12746474 20 n 02 boxwood 2 Turkish_boxwood 0 002 @ 15098161 n 0000 #s 12746106 n 0000 | very hard tough close-grained light yellow wood of the box (particularly the common box); used in delicate woodwork: musical instruments and inlays and engraving blocks -12746733 20 n 01 genus_Pachysandra 0 003 @ 11567411 n 0000 #m 12745788 n 0000 %m 12746884 n 0000 | evergreen perennial procumbent subshrubs or herbs -12746884 20 n 01 pachysandra 0 004 @ 13118707 n 0000 #m 12746733 n 0000 ~ 12747120 n 0000 ~ 12747371 n 0000 | any plant of the genus Pachysandra; low-growing evergreen herbs or subshrubs having dentate leaves and used as ground cover -12747120 20 n 03 Allegheny_spurge 0 Allegheny_mountain_spurge 0 Pachysandra_procumbens 0 001 @ 12746884 n 0000 | low semi-evergreen perennial herb having small spikes of white or pinkish flowers; native to southern United States but grown elsewhere -12747371 20 n 02 Japanese_spurge 0 Pachysandra_terminalis 0 001 @ 12746884 n 0000 | slow-growing Japanese evergreen subshrub having terminal spikes of white flowers; grown as a ground cover -12747563 20 n 04 Celastraceae 0 family_Celastraceae 0 spindle-tree_family 0 staff-tree_family 0 005 @ 11562747 n 0000 #m 12740196 n 0000 %m 11598100 n 0000 %m 12747961 n 0000 %m 12748815 n 0000 | trees and shrubs and woody vines usually having bright-colored fruits -12747831 20 n 01 staff_tree 0 002 @ 13112664 n 0000 #m 12747961 n 0000 | any small tree or twining shrub of the genus Celastrus -12747961 20 n 02 Celastrus 0 genus_Celastrus 0 005 @ 11567411 n 0000 #m 12747563 n 0000 %m 12747831 n 0000 %m 12748248 n 0000 %m 12748534 n 0000 | genus of woody vines and erect shrubs (type genus of the Celastraceae) that is native chiefly to Asia and Australia: includes bittersweet -12748248 20 n 08 bittersweet 1 American_bittersweet 0 climbing_bittersweet 0 false_bittersweet 0 staff_vine 0 waxwork 0 shrubby_bittersweet 0 Celastrus_scandens 0 002 @ 13100677 n 0000 #m 12747961 n 0000 | twining shrub of North America having yellow capsules enclosing scarlet seeds -12748534 20 n 05 Japanese_bittersweet 0 Japan_bittersweet 0 oriental_bittersweet 0 Celastrus_orbiculatus 0 Celastric_articulatus 0 002 @ 13100677 n 0000 #m 12747961 n 0000 | ornamental Asiatic vine with showy orange-yellow fruit with a scarlet aril; naturalized in North America -12748815 20 n 02 Euonymus 0 genus_Euonymus 0 006 @ 11567411 n 0000 #m 12747563 n 0000 %m 12749049 n 0000 %m 12749679 n 0000 %m 12749852 n 0000 %m 12750076 n 0000 | widely distributed chiefly evergreen shrubs or small trees or vines -12749049 20 n 03 spindle_tree 0 spindleberry 0 spindleberry_tree 0 004 @ 13112664 n 0000 #m 12748815 n 0000 ~ 12749289 n 0000 ~ 12749456 n 0000 | any shrubby trees or woody vines of the genus Euonymus having showy usually reddish berries -12749289 20 n 02 common_spindle_tree 0 Euonymus_europaeus 0 001 @ 12749049 n 0000 | small erect deciduous shrub having tough white wood and cathartic bark and fruit -12749456 20 n 02 winged_spindle_tree 0 Euonymous_alatus 0 001 @ 12749049 n 0000 | bushy deciduous shrub with branches having thin wide corky longitudinal wings; brilliant red in autumn; northeastern Asia to central China -12749679 20 n 03 wahoo 1 burning_bush 2 Euonymus_atropurpureus 0 002 @ 13112664 n 0000 #m 12748815 n 0000 | deciduous shrub having purple capsules enclosing scarlet seeds -12749852 20 n 03 strawberry_bush 1 wahoo 2 Euonymus_americanus 0 002 @ 13112664 n 0000 #m 12748815 n 0000 | upright deciduous plant with crimson pods and seeds; the eastern United States from New York to Florida and Texas -12750076 20 n 03 evergreen_bittersweet 0 Euonymus_fortunei_radicans 0 Euonymus_radicans_vegetus 0 002 @ 13100677 n 0000 #m 12748815 n 0000 | broad and bushy Asiatic twining shrub with pinkish fruit; many subspecies or varieties -12750306 20 n 04 Cyrilliaceae 0 family_Cyrilliaceae 0 cyrilla_family 0 titi_family 0 004 @ 11666854 n 0000 #m 12740196 n 0000 %m 12750577 n 0000 %m 12751043 n 0000 | shrubs and trees with leathery leaves and small white flowers in racemes: genera Cyrilla and Cliftonia -12750577 20 n 01 genus_Cyrilla 0 003 @ 11567411 n 0000 #m 12750306 n 0000 %m 12750767 n 0000 | one species: trees and shrubs having flowers with acute or twisted petals and wingless fruit -12750767 20 n 04 cyrilla 0 leatherwood 2 white_titi 0 Cyrilla_racemiflora 0 002 @ 13112664 n 0000 #m 12750577 n 0000 | shrub or small tree of southeastern United States to West Indies and Brazil; grown for the slender racemes of white flowers and orange and crimson foliage -12751043 20 n 02 Cliftonia 0 genus_Cliftonia 0 003 @ 11567411 n 0000 #m 12750306 n 0000 %m 12751172 n 0000 | one species: titi -12751172 20 n 03 titi 1 buckwheat_tree 0 Cliftonia_monophylla 0 002 @ 13109733 n 0000 #m 12751043 n 0000 | tree of low-lying coastal areas of southeastern United States having glossy leaves and racemes of fragrant white flowers -12751402 20 n 03 Empetraceae 0 family_Empetraceae 0 crowberry_family 0 003 @ 11562747 n 0000 #m 12740196 n 0000 %m 12751554 n 0000 | heathlike shrubs -12751554 20 n 02 Empetrum 0 genus_Empetrum 0 003 @ 11567411 n 0000 #m 12751402 n 0000 %m 12751675 n 0000 | crowberries -12751675 20 n 01 crowberry 0 002 @ 13112664 n 0000 #m 12751554 n 0000 | a low evergreen shrub with small purple flowers and black berrylike fruit -12751823 20 n 03 Aceraceae 0 family_Aceraceae 0 maple_family 0 004 @ 11562747 n 0000 #m 12740196 n 0000 %m 12752039 n 0000 %m 12756059 n 0000 | a family of trees and shrubs of order Sapindales including the maples -12752039 20 n 02 Acer 0 genus_Acer 0 003 @ 11567411 n 0000 #m 12751823 n 0000 %m 12752205 n 0000 | type genus of the Aceraceae; trees or shrubs having winged fruit -12752205 20 n 01 maple 0 018 @ 13109733 n 0000 #m 12752039 n 0000 %s 12752666 n 0000 ~ 12753007 n 0000 ~ 12753245 n 0000 ~ 12753573 n 0000 ~ 12753762 n 0000 ~ 12754003 n 0000 ~ 12754174 n 0000 ~ 12754311 n 0000 ~ 12754468 n 0000 ~ 12754648 n 0000 ~ 12754781 n 0000 ~ 12754981 n 0000 ~ 12755225 n 0000 ~ 12755559 n 0000 ~ 12755727 n 0000 ~ 12755876 n 0000 | any of numerous trees or shrubs of the genus Acer bearing winged seeds in pairs; north temperate zone -12752666 20 n 01 maple 2 003 @ 15098161 n 0000 #s 12752205 n 0000 ~ 12752892 n 0000 | wood of any of various maple trees; especially the hard close-grained wood of the sugar maple; used especially for furniture and flooring -12752892 20 n 01 bird's-eye_maple 0 001 @ 12752666 n 0000 | maple wood having a wavy grain with eyelike markings -12753007 20 n 02 silver_maple 0 Acer_saccharinum 0 001 @ 12752205 n 0000 | a common North American maple tree; five-lobed leaves are light green above and silvery white beneath; source of hard close-grained but brittle light-brown wood -12753245 20 n 03 sugar_maple 0 rock_maple 0 Acer_saccharum 0 001 @ 12752205 n 0000 | maple of eastern and central North America having three-lobed to five-lobed leaves and hard close-grained wood much used for cabinet work especially the curly-grained form; sap is chief source of maple syrup and maple sugar; many subspecies -12753573 20 n 04 red_maple 0 scarlet_maple 0 swamp_maple 0 Acer_rubrum 0 001 @ 12752205 n 0000 | maple of eastern and central America; five-lobed leaves turn scarlet and yellow in autumn -12753762 20 n 06 moosewood 2 moose-wood 2 striped_maple 0 striped_dogwood 0 goosefoot_maple 0 Acer_pennsylvanicum 0 001 @ 12752205 n 0000 | maple of eastern North America with striped bark and large two-lobed leaves clear yellow in autumn -12754003 20 n 03 Oregon_maple 0 big-leaf_maple 0 Acer_macrophyllum 0 001 @ 12752205 n 0000 | maple of western North America having large 5-lobed leaves orange in autumn -12754174 20 n 03 dwarf_maple 0 Rocky-mountain_maple 0 Acer_glabrum 0 001 @ 12752205 n 0000 | small maple of northwestern North America -12754311 20 n 03 mountain_maple 0 mountain_alder 1 Acer_spicatum 0 001 @ 12752205 n 0000 | small shrubby maple of eastern North America; scarlet in autumn -12754468 20 n 02 vine_maple 0 Acer_circinatum 0 001 @ 12752205 n 0000 | small maple of northwestern North America having prostrate stems that root freely and form dense thickets -12754648 20 n 03 hedge_maple 0 field_maple 0 Acer_campestre 0 001 @ 12752205 n 0000 | shrubby Eurasian maple often used as a hedge -12754781 20 n 02 Norway_maple 0 Acer_platanoides 0 001 @ 12752205 n 0000 | a large Eurasian maple tree naturalized in North America; five-lobed leaves yellow in autumn; cultivated in many varieties -12754981 20 n 04 sycamore 3 great_maple 0 scottish_maple 0 Acer_pseudoplatanus 0 001 @ 12752205 n 0000 | Eurasian maple tree with pale grey bark that peels in flakes like that of a sycamore tree; leaves with five ovate lobes yellow in autumn -12755225 20 n 03 box_elder 0 ash-leaved_maple 0 Acer_negundo 0 002 @ 12752205 n 0000 ~ 12755387 n 0000 | common shade tree of eastern and central United States -12755387 20 n 02 California_box_elder 0 Acer_negundo_Californicum 0 001 @ 12755225 n 0000 | maple of the Pacific coast of the United States; fruits are white when mature -12755559 20 n 02 pointed-leaf_maple 0 Acer_argutum 0 001 @ 12752205 n 0000 | small shrubby Japanese plant with leaves having 5 to 7 acuminate lobes; yellow in autumn -12755727 20 n 03 Japanese_maple 1 full_moon_maple 0 Acer_japonicum 0 001 @ 12752205 n 0000 | leaves deeply incised and bright red in autumn; Japan -12755876 20 n 02 Japanese_maple 2 Acer_palmatum 0 001 @ 12752205 n 0000 | ornamental shrub or small tree of Japan and Korea with deeply incised leaves; cultivated in many varieties -12756059 20 n 02 Dipteronia 0 genus_Dipteronia 0 002 @ 11567411 n 0000 #m 12751823 n 0000 | small genus of large deciduous shrubs having large clusters of winged seeds that turn red as they mature; central and southern China -12756286 20 n 03 Aquifoliaceae 0 family_Aquifoliaceae 0 holly_family 0 003 @ 11562747 n 0000 #m 12740196 n 0000 %m 12756862 n 0000 | widely distributed shrubs and trees -12756457 20 n 01 holly 0 015 @ 13109733 n 0000 #m 12756862 n 0000 ~ 12757303 n 0000 ~ 12757458 n 0000 ~ 12757668 n 0000 ~ 12757816 n 0000 ~ 12757930 n 0000 ~ 12758014 n 0000 ~ 12758099 n 0000 ~ 12758176 n 0000 ~ 12758250 n 0000 ~ 12758325 n 0000 ~ 12758399 n 0000 ~ 12758471 n 0000 ~ 12758555 n 0000 | any tree or shrub of the genus Ilex having red berries and shiny evergreen leaves with prickly edges -12756862 20 n 02 Ilex 0 genus_Ilex 0 004 @ 11567411 n 0000 #m 12756286 n 0000 %m 12756457 n 0000 %m 12757115 n 0000 | a large genus of dicotyledonous trees and shrubs of the family Aquifoliaceae that have small flowers and berries (including hollies) -12757115 20 n 02 Chinese_holly 0 Ilex_cornuta 0 002 @ 13112664 n 0000 #m 12756862 n 0000 | dense rounded evergreen shrub of China having spiny leaves; widely cultivated as an ornamental -12757303 20 n 04 bearberry 2 possum_haw 0 winterberry 0 Ilex_decidua 0 001 @ 12756457 n 0000 | deciduous shrub of southeastern and central United States -12757458 20 n 05 inkberry 0 gallberry 0 gall-berry 0 evergreen_winterberry 0 Ilex_glabra 0 001 @ 12756457 n 0000 | evergreen holly of eastern North America with oblong leathery leaves and small black berries -12757668 20 n 03 mate 0 Paraguay_tea 0 Ilex_paraguariensis 0 001 @ 12756457 n 0000 | South American holly; leaves used in making a drink like tea -12757816 20 n 02 American_holly 0 Christmas_holly 0 002 @ 13100156 n 0000 @ 12756457 n 0000 | an evergreen tree -12757930 20 n 01 low_gallberry_holly 0 001 @ 12756457 n 0000 | an evergreen shrub -12758014 20 n 01 tall_gallberry_holly 0 001 @ 12756457 n 0000 | an evergreen shrub -12758099 20 n 01 yaupon_holly 0 001 @ 12756457 n 0000 | an evergreen shrub -12758176 20 n 01 deciduous_holly 0 001 @ 12756457 n 0000 | a holly tree -12758250 20 n 01 juneberry_holly 0 001 @ 12756457 n 0000 | a holly shrub -12758325 20 n 01 largeleaf_holly 0 001 @ 12756457 n 0000 | a holly tree -12758399 20 n 01 Geogia_holly 0 001 @ 12756457 n 0000 | a holly shrub -12758471 20 n 01 common_winterberry_holly 0 001 @ 12756457 n 0000 | a holly shrub -12758555 20 n 01 smooth_winterberry_holly 0 001 @ 12756457 n 0000 | a holly shrub -12758639 20 n 03 Anacardiaceae 0 family_Anacardiaceae 0 sumac_family 0 013 @ 11562747 n 0000 #m 12740196 n 0000 %m 12759120 n 0000 %m 12759496 n 0000 %m 12760013 n 0000 %m 12760722 n 0000 %m 12761123 n 0000 %m 12761471 n 0000 %m 12762245 n 0000 %m 12762583 n 0000 %m 12764703 n 0000 %m 12765679 n 0000 %m 12766241 n 0000 | the cashew family; trees and shrubs and vines having resinous (sometimes poisonous) juice; includes cashew and mango and pistachio and poison ivy and sumac -12759120 20 n 02 Anacardium 0 genus_Anacardium 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12759273 n 0000 | type genus of the Anacardiaceae: cashew -12759273 20 n 03 cashew 0 cashew_tree 0 Anacardium_occidentale 0 003 @ 13110915 n 0000 #m 12759120 n 0000 %p 07772147 n 0000 | tropical American evergreen tree bearing kidney-shaped nuts that are edible only when roasted -12759496 20 n 02 Astronium 0 genus_Astronium 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12759668 n 0000 | a genus of dicotyledonous plants of the family Anacardiaceae -12759668 20 n 02 goncalo_alves 0 Astronium_fraxinifolium 0 002 @ 11745817 n 0000 #m 12759496 n 0000 | tall tropical American timber tree especially abundant in eastern Brazil; yields hard strong durable zebrawood with straight grain and dark strips on a pinkish to yellowish ground; widely used for veneer and furniture and heavy construction -12760013 20 n 02 Cotinus 0 genus_Cotinus 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12760132 n 0000 | smoke trees -12760132 20 n 02 smoke_tree 1 smoke_bush 0 004 @ 13112664 n 0000 #m 12760013 n 0000 ~ 12760316 n 0000 ~ 12760539 n 0000 | any of several shrubs or shrubby trees of the genus Cotinus -12760316 20 n 04 American_smokewood 0 chittamwood 3 Cotinus_americanus 0 Cotinus_obovatus 0 001 @ 12760132 n 0000 | shrubby tree of southern United States having large plumes of feathery flowers resembling puffs of smoke -12760539 20 n 03 Venetian_sumac 0 wig_tree 0 Cotinus_coggygria 0 001 @ 12760132 n 0000 | Old World shrub having large plumes of yellowish feathery flowers resembling puffs of smoke -12760722 20 n 02 Malosma 0 genus_Malosma 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12760875 n 0000 | one species; often included in the genus Rhus -12760875 20 n 03 laurel_sumac 0 Malosma_laurina 0 Rhus_laurina 0 002 @ 13112664 n 0000 #m 12760722 n 0000 | small aromatic evergreen shrub of California having paniculate leaves and whitish berries; in some classifications included in genus Rhus -12761123 20 n 02 Mangifera 0 genus_Mangifera 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12761284 n 0000 | tropical tree native to Asia bearing fleshy fruit -12761284 20 n 03 mango 0 mango_tree 0 Mangifera_indica 0 003 @ 12651821 n 0000 #m 12761123 n 0000 %p 07764155 n 0000 | large evergreen tropical tree cultivated for its large oval fruit -12761471 20 n 02 Pistacia 0 genus_Pistacia 0 005 @ 11567411 n 0000 #m 12758639 n 0000 %m 12761702 n 0000 %m 12761905 n 0000 %m 12762049 n 0000 | a dicotyledonous genus of trees of the family Anacardiaceae having drupaceous fruit -12761702 20 n 03 pistachio 0 Pistacia_vera 0 pistachio_tree 0 003 @ 13110915 n 0000 #m 12761471 n 0000 %p 07775050 n 0000 | small tree of southern Europe and Asia Minor bearing small hard-shelled nuts -12761905 20 n 02 terebinth 0 Pistacia_terebinthus 0 002 @ 13109733 n 0000 #m 12761471 n 0000 | a Mediterranean tree yielding Chian turpentine -12762049 20 n 04 mastic 0 mastic_tree 0 lentisk 0 Pistacia_lentiscus 0 002 @ 13112664 n 0000 #m 12761471 n 0000 | an evergreen shrub of the Mediterranean region that is cultivated for its resin -12762245 20 n 02 Rhodosphaera 0 genus_Rhodosphaera 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12762405 n 0000 | one species; an Australian evergreen sumac -12762405 20 n 03 Australian_sumac 0 Rhodosphaera_rhodanthema 0 Rhus_rhodanthema 0 002 @ 11650919 n 0000 #m 12762245 n 0000 | evergreen of Australia yielding a dark yellow wood -12762583 20 n 02 Rhus 0 genus_Rhus 0 003 @ 11567411 n 0000 #m 12758639 n 0000 %m 12762896 n 0000 | deciduous or evergreen shrubs and shrubby trees of temperate and subtropical North America, South Africa, eastern Asia and northeastern Australia; usually limited to nonpoisonous sumacs (see genus Toxicodendron) -12762896 20 n 03 sumac 0 sumach 0 shumac 0 009 @ 13112664 n 0000 #m 12762583 n 0000 %s 12763205 n 0000 ~ 12763291 n 0000 ~ 12763529 n 0000 ~ 12763762 n 0000 ~ 12764008 n 0000 ~ 12764202 n 0000 ~ 12764507 n 0000 | a shrub or tree of the genus Rhus (usually limited to the non-poisonous members of the genus) -12763205 20 n 01 sumac 2 002 @ 15098161 n 0000 #s 12762896 n 0000 | wood of a sumac -12763291 20 n 03 fragrant_sumac 0 lemon_sumac 0 Rhus_aromatica 0 001 @ 12762896 n 0000 | sweet-scented sumac of eastern America having ternate leaves and yellowish-green flowers in spikes resembling catkins followed by red hairy fruits -12763529 20 n 04 smooth_sumac 0 scarlet_sumac 0 vinegar_tree 0 Rhus_glabra 0 001 @ 12762896 n 0000 | common nonpoisonous shrub of eastern North America with waxy compound leaves and green paniculate flowers followed by red berries -12763762 20 n 05 dwarf_sumac 0 mountain_sumac 0 black_sumac 0 shining_sumac 0 Rhus_copallina 0 001 @ 12762896 n 0000 | common nonpoisonous shrub of eastern North America with compound leaves and green paniculate flowers followed by red berries -12764008 20 n 03 sugar-bush 0 sugar_sumac 0 Rhus_ovata 0 001 @ 12762896 n 0000 | evergreen shrub of southeastern United States with spikes of reddish yellow flowers and glandular hairy fruits -12764202 20 n 05 staghorn_sumac 1 velvet_sumac 0 Virginian_sumac 0 vinegar_tree 2 Rhus_typhina 0 001 @ 12762896 n 0000 | deciduous shrubby tree or eastern North America with compound leaves that turn brilliant red in fall and dense panicles of greenish yellow flowers followed by crimson acidic berries -12764507 20 n 04 squawbush 0 squaw-bush 0 skunkbush 0 Rhus_trilobata 0 001 @ 12762896 n 0000 | deciduous shrub of California with unpleasantly scented usually trifoliate leaves and edible fruit -12764703 20 n 02 Schinus 0 genus_Schinus 0 005 @ 11567411 n 0000 #m 12758639 n 0000 %m 12764978 n 0000 %m 12765115 n 0000 %m 12765402 n 0000 | genus of evergreen shrubs and trees of tropical and subtropical regions of South and Central America and Canary Islands and China -12764978 20 n 02 aroeira_blanca 0 Schinus_chichita 0 002 @ 13104059 n 0000 #m 12764703 n 0000 | small resinous tree or shrub of Brazil -12765115 20 n 04 pepper_tree 2 molle 1 Peruvian_mastic_tree 0 Schinus_molle 0 002 @ 13104059 n 0000 #m 12764703 n 0000 | small Peruvian evergreen with broad rounded head and slender pendant branches with attractive clusters of greenish flowers followed by clusters of rose-pink fruits -12765402 20 n 02 Brazilian_pepper_tree 0 Schinus_terebinthifolius 0 002 @ 13104059 n 0000 #m 12764703 n 0000 | small Brazilian evergreen resinous tree or shrub having dark green leaflets and white flowers followed by bright red fruit; used as a street tree and lawn specimen -12765679 20 n 02 Spondias 0 genus_Spondias 0 004 @ 11567411 n 0000 #m 12758639 n 0000 %m 12765846 n 0000 %m 12766043 n 0000 | tropical trees having one-seeded fruit -12765846 20 n 04 hog_plum 2 yellow_mombin 0 yellow_mombin_tree 0 Spondias_mombin 0 003 @ 12651821 n 0000 #m 12765679 n 0000 %p 07765612 n 0000 | tropical American tree having edible yellow fruit -12766043 20 n 04 mombin 0 mombin_tree 0 jocote 0 Spondias_purpurea 0 003 @ 12651821 n 0000 #m 12765679 n 0000 %p 07765517 n 0000 | common tropical American shrub or small tree with purplish fruit -12766241 20 n 02 Toxicodendron 0 genus_Toxicodendron 0 007 @ 11567411 n 0000 #m 12758639 n 0000 %m 12766595 n 0000 %m 12766869 n 0000 %m 12767208 n 0000 %m 12767423 n 0000 %m 12767648 n 0000 | in some classifications: comprising those members of the genus Rhus having foliage that is poisonous to the touch; of North America and northern South America -12766595 20 n 05 poison_ash 0 poison_dogwood 0 poison_sumac 0 Toxicodendron_vernix 0 Rhus_vernix 0 002 @ 13100156 n 0000 #m 12766241 n 0000 | smooth American swamp shrub with pinnate leaves and greenish flowers followed by greenish white berries; yields an irritating oil -12766869 20 n 06 poison_ivy 0 markweed 0 poison_mercury 0 poison_oak 2 Toxicodendron_radicans 0 Rhus_radicans 0 002 @ 13100156 n 0000 #m 12766241 n 0000 | climbing plant common in eastern and central United States with ternate leaves and greenish flowers followed by white berries; yields an irritating oil that causes a rash on contact -12767208 20 n 03 western_poison_oak 0 Toxicodendron_diversilobum 0 Rhus_diversiloba 0 002 @ 13100156 n 0000 #m 12766241 n 0000 | poisonous shrub of the Pacific coast of North America that causes a rash on contact -12767423 20 n 04 eastern_poison_oak 0 Toxicodendron_quercifolium 0 Rhus_quercifolia 0 Rhus_toxicodenedron 0 002 @ 13100156 n 0000 #m 12766241 n 0000 | poisonous shrub of southeastern United States causing a rash on contact -12767648 20 n 08 varnish_tree 2 lacquer_tree 0 Chinese_lacquer_tree 0 Japanese_lacquer_tree 0 Japanese_varnish_tree 2 Japanese_sumac 0 Toxicodendron_vernicifluum 0 Rhus_verniciflua 0 002 @ 13100156 n 0000 #m 12766241 n 0000 | small Asiatic tree yielding a toxic exudate from which lacquer is obtained -12767951 20 n 03 Hippocastanaceae 0 family_Hippocastanaceae 0 horse-chestnut_family 0 003 @ 11562747 n 0000 #m 12740196 n 0000 %m 12768177 n 0000 | trees having showy flowers and inedible nutlike seeds in a leathery capsule -12768177 20 n 02 Aesculus 0 genus_Aesculus 0 003 @ 11567411 n 0000 #m 12767951 n 0000 %m 12768369 n 0000 | deciduous trees or some shrubs of North America; southeastern Europe; eastern Asia -12768369 20 n 03 horse_chestnut 0 buckeye 0 Aesculus_hippocastanum 0 007 @ 13109733 n 0000 #m 12768177 n 0000 ~ 12768809 n 0000 ~ 12768933 n 0000 ~ 12769065 n 0000 ~ 12769219 n 0000 ~ 12769318 n 0000 | tree having palmate leaves and large clusters of white to red flowers followed by brown shiny inedible seeds -12768682 20 n 03 buckeye 2 horse_chestnut 2 conker 0 001 @ 13135832 n 0000 | the inedible nutlike seed of the horse chestnut -12768809 20 n 01 sweet_buckeye 0 001 @ 12768369 n 0000 | a tall and often cultivated buckeye of the central United States -12768933 20 n 01 Ohio_buckeye 0 001 @ 12768369 n 0000 | a buckeye with scaly grey bark that is found in the central United States -12769065 20 n 02 dwarf_buckeye 0 bottlebrush_buckeye 0 001 @ 12768369 n 0000 | a spreading shrub with pink flowers; found in southeastern United States -12769219 20 n 01 red_buckeye 0 001 @ 12768369 n 0000 | a shrub buckeye of southern United States -12769318 20 n 01 particolored_buckeye 0 001 @ 12768369 n 0000 | a buckeye marked by different colors or tints -12769430 20 n 03 Staphylaceae 0 family_Staphylaceae 0 bladdernut_family 0 003 @ 11562747 n 0000 #m 12740196 n 0000 %m 12769663 n 0000 | a family of dicotyledonous plants of order Sapindales found mostly in the north temperate zone -12769663 20 n 02 Staphylea 0 genus_Staphylea 0 002 @ 11567411 n 0000 #m 12769430 n 0000 | a genus of small trees or shrubs of the family Staphylaceae -12769815 20 n 02 Ebenales 0 order_Ebenales 0 006 @ 11534677 n 0000 #m 11665781 n 0000 %m 12770068 n 0000 %m 12772081 n 0000 %m 12776212 n 0000 %m 12776946 n 0000 | trees or shrubs of the families Ebenaceae or Sapotaceae or Styracaceae or Symplocaceae -12770068 20 n 03 Ebenaceae 0 family_Ebenaceae 0 ebony_family 0 003 @ 11562747 n 0000 #m 12769815 n 0000 %m 12770277 n 0000 | fruit and timber trees of tropical and warm regions including ebony and persimmon -12770277 20 n 02 Diospyros 0 genus_Diospyros 0 007 @ 11567411 n 0000 #m 12770068 n 0000 %m 12770529 n 0000 %m 12770892 n 0000 %m 12771192 n 0000 %m 12771390 n 0000 %m 12771597 n 0000 | a genus of trees or shrubs that have beautiful and valuable wood -12770529 20 n 03 ebony 0 ebony_tree 0 Diospyros_ebenum 0 003 @ 13104059 n 0000 #m 12770277 n 0000 %s 12770736 n 0000 | tropical tree of southern Asia having hard dark-colored heartwood used in cabinetwork -12770736 20 n 01 ebony 2 002 @ 15098161 n 0000 #s 12770529 n 0000 | hard dark-colored heartwood of the ebony tree; used in cabinetwork and for piano keys -12770892 20 n 04 marblewood 0 marble-wood 0 Andaman_marble 0 Diospyros_kurzii 0 003 @ 13104059 n 0000 #m 12770277 n 0000 %s 12771085 n 0000 | large Asiatic tree having hard marbled zebrawood -12771085 20 n 02 marblewood 2 marble-wood 2 002 @ 11745817 n 0000 #s 12770892 n 0000 | hard marbled wood -12771192 20 n 02 persimmon 0 persimmon_tree 0 005 @ 12651821 n 0000 #m 12770277 n 0000 ~ 12771390 n 0000 ~ 12771597 n 0000 ~ 12771890 n 0000 | any of several tropical trees of the genus Diospyros -12771390 20 n 03 Japanese_persimmon 0 kaki 0 Diospyros_kaki 0 003 @ 12771192 n 0000 #m 12770277 n 0000 %p 07746186 n 0000 | small deciduous Asiatic tree bearing large red or orange edible astringent fruit -12771597 20 n 03 American_persimmon 0 possumwood 0 Diospyros_virginiana 0 003 @ 12771192 n 0000 #m 12770277 n 0000 %p 07746186 n 0000 | medium-sized tree of dry woodlands in the southern and eastern United States bearing yellow or orange very astringent fruit that is edible when fully ripe -12771890 20 n 02 date_plum 0 Diospyros_lotus 0 001 @ 12771192 n 0000 | an Asiatic persimmon tree cultivated for its small yellow or purplish-black edible fruit much valued by Afghan tribes -12772081 20 n 03 Sapotaceae 0 family_Sapotaceae 0 sapodilla_family 0 010 @ 11562747 n 0000 #m 12769815 n 0000 %m 12772419 n 0000 %m 12772557 n 0000 %m 12773334 n 0000 %m 12773488 n 0000 %m 12774127 n 0000 %m 12774891 n 0000 %m 12775225 n 0000 %m 12775530 n 0000 | tropical trees or shrubs with milky juice and often edible fleshy fruit -12772419 20 n 02 Achras 0 genus_Achras 0 002 @ 11567411 n 0000 #m 12772081 n 0000 | tropical trees having papery leaves and large fruit -12772557 20 n 02 Bumelia 0 genus_Bumelia 0 003 @ 11567411 n 0000 #m 12772081 n 0000 %m 12772753 n 0000 | deciduous or evergreen American shrubs small trees having very hard wood and milky latex -12772753 20 n 01 buckthorn 1 004 @ 13112664 n 0000 #m 12772557 n 0000 ~ 12772908 n 0000 ~ 12773142 n 0000 | any shrub or small tree of the genus Bumelia -12772908 20 n 05 southern_buckthorn 0 shittimwood 2 shittim 0 mock_orange 3 Bumelia_lycioides 0 001 @ 12772753 n 0000 | shrubby thorny deciduous tree of southeastern United States with white flowers and small black drupaceous fruit -12773142 20 n 06 false_buckthorn 0 chittamwood 1 chittimwood 1 shittimwood 1 black_haw 2 Bumelia_lanuginosa 0 001 @ 12772753 n 0000 | deciduous tree of southeastern United States and Mexico -12773334 20 n 02 Calocarpum 0 genus_Calocarpum 0 002 @ 11567411 n 0000 #m 12772081 n 0000 | a genus of tropical American trees of the family Sapotaceae -12773488 20 n 02 Chrysophyllum 0 genus_Chrysophyllum 0 003 @ 11567411 n 0000 #m 12772081 n 0000 %m 12773651 n 0000 | tropical American evergreen trees or shrubs -12773651 20 n 03 star_apple 0 caimito 0 Chrysophyllum_cainito 0 002 @ 12651821 n 0000 #m 12773488 n 0000 | evergreen tree of West Indies and Central America having edible purple fruit star-shaped in cross section and dark green leaves with golden silky undersides -12773917 20 n 05 satinleaf 0 satin_leaf 0 caimitillo 0 damson_plum 2 Chrysophyllum_oliviforme 0 001 @ 13109733 n 0000 | tropical American timber tree with dark hard heavy wood and small plumlike purple fruit -12774127 20 n 02 Manilkara 0 genus_Manilkara 0 003 @ 11567411 n 0000 #m 12772081 n 0000 %p 12774641 n 0000 | genus of large evergreen trees with milky latex; pantropical -12774299 20 n 05 balata 0 balata_tree 0 beefwood 0 bully_tree 0 Manilkara_bidentata 0 002 @ 13104059 n 0000 %s 12774496 n 0000 | a tropical hardwood tree yielding balata gum and heavy red timber -12774496 20 n 02 balata 2 gutta_balata 0 002 @ 14898470 n 0000 #s 12774299 n 0000 | when dried yields a hard substance used e.g. in golf balls -12774641 20 n 04 sapodilla 0 sapodilla_tree 0 Manilkara_zapota 0 Achras_zapota 0 003 @ 12651821 n 0000 #p 12774127 n 0000 %p 07764315 n 0000 | large tropical American evergreen yielding chicle gum and edible fruit; sometimes placed in genus Achras -12774891 20 n 02 Palaquium 0 genus_Palaquium 0 003 @ 11567411 n 0000 #m 12772081 n 0000 %m 12775070 n 0000 | large genus of Malaysian trees with milky juice and leathery leaves -12775070 20 n 02 gutta-percha_tree 1 Palaquium_gutta 0 002 @ 13104059 n 0000 #m 12774891 n 0000 | one of several East Indian trees yielding gutta-percha -12775225 20 n 02 Payena 0 genus_Payena 0 003 @ 11567411 n 0000 #m 12772081 n 0000 %m 12775393 n 0000 | genus of medium to large Malaysian trees yielding gutta-percha -12775393 20 n 01 gutta-percha_tree 2 002 @ 13104059 n 0000 #m 12775225 n 0000 | one of several East Indian trees yielding gutta-percha -12775530 20 n 02 Pouteria 0 genus_Pouteria 0 004 @ 11567411 n 0000 #m 12772081 n 0000 %m 12775717 n 0000 %m 12775919 n 0000 | tropical American timber tree with edible fruit (canistel) -12775717 20 n 03 canistel 0 canistel_tree 0 Pouteria_campechiana_nervosa 0 003 @ 12651821 n 0000 #m 12775530 n 0000 %p 07755262 n 0000 | tropical tree of Florida and West Indies yielding edible fruit -12775919 20 n 05 marmalade_tree 0 mammee 2 sapote 0 Pouteria_zapota 0 Calocarpum_zapota 0 003 @ 13104059 n 0000 #m 12775530 n 0000 %p 07764486 n 0000 | tropical American tree having wood like mahogany and sweet edible egg-shaped fruit; in some classifications placed in the genus Calocarpum -12776212 20 n 03 Symplocaceae 0 family_Symplocaceae 0 sweetleaf_family 0 003 @ 11562747 n 0000 #m 12769815 n 0000 %m 12776391 n 0000 | a dicotyledonous family of order Ebenales -12776391 20 n 02 Symplocus 0 genus_Symplocus 0 003 @ 11567411 n 0000 #m 12776212 n 0000 %m 12776558 n 0000 | type and sole genus of Symplocaceae including sweetleaf -12776558 20 n 02 sweetleaf 0 Symplocus_tinctoria 0 002 @ 11650919 n 0000 #m 12776391 n 0000 | small yellowwood tree of southern United States having small fragrant white flowers; leaves and bark yield a yellow dye -12776774 20 n 03 Asiatic_sweetleaf 0 sapphire_berry 0 Symplocus_paniculata 0 001 @ 13120003 n 0000 | deciduous shrub of eastern Asia bearing decorative bright blue fruit -12776946 20 n 04 Styracaceae 0 family_Styracaceae 0 storax_family 0 styrax_family 0 004 @ 11562747 n 0000 #m 12769815 n 0000 %m 12777294 n 0000 %m 12778045 n 0000 | a widely distributed family of shrubs and trees of order Ebenales -12777179 20 n 01 storax 0 001 @ 14894481 n 0000 | a vanilla-scented resin from various trees of the genus Styrax -12777294 20 n 01 genus_Styrax 0 003 @ 11567411 n 0000 #m 12776946 n 0000 %m 12777436 n 0000 | deciduous or evergreen shrubs and small trees -12777436 20 n 01 styrax 0 005 @ 13112664 n 0000 #m 12777294 n 0000 ~ 12777680 n 0000 ~ 12777778 n 0000 ~ 12777892 n 0000 | any shrub or small tree of the genus Styrax having fragrant bell-shaped flowers that hang below the dark green foliage -12777680 20 n 02 snowbell 0 Styrax_obassia 0 001 @ 12777436 n 0000 | small tree native to Japan -12777778 20 n 02 Japanese_snowbell 0 Styrax_japonicum 0 001 @ 12777436 n 0000 | shrubby tree of China and Japan -12777892 20 n 03 Texas_snowbell 0 Texas_snowbells 0 Styrax_texana 0 001 @ 12777436 n 0000 | styrax of southwestern United States; a threatened species -12778045 20 n 02 Halesia 0 genus_Halesia 0 003 @ 11567411 n 0000 #m 12776946 n 0000 %m 12778219 n 0000 | deciduous small trees or shrubs of China and eastern North America -12778219 20 n 01 silver_bell 0 003 @ 13109733 n 0000 #m 12778045 n 0000 ~ 12778398 n 0000 | any of various deciduous trees of the genus Halesia having white bell-shaped flowers -12778398 20 n 06 silver-bell_tree 0 silverbell_tree 0 snowdrop_tree 0 opossum_wood 0 Halesia_carolina 0 Halesia_tetraptera 0 001 @ 12778219 n 0000 | medium-sized tree of West Virginia to Florida and Texas -12778605 20 n 01 carnivorous_plant 0 010 @ 12205694 n 0000 ~ 12779603 n 0000 ~ 12782530 n 0000 ~ 12782915 n 0000 ~ 12783316 n 0000 ~ 12783730 n 0000 ~ 12784371 n 0000 ~ 12872458 n 0000 ~ 12872914 n 0000 ~ 12873341 n 0000 | plants adapted to attract and capture and digest primarily insects but also other small animals -12778926 20 n 02 Sarraceniales 0 order_Sarraceniales 0 007 @ 11534677 n 0000 #m 11665781 n 0000 %m 12779233 n 0000 %m 12779603 n 0000 %m 12781659 n 0000 %m 12782108 n 0000 %m 12783996 n 0000 | plants that are variously modified to serve as insect traps: families Sarraceniaceae; Nepenthaceae; Droseraceae -12779233 20 n 03 Sarraceniaceae 0 family_Sarraceniaceae 0 pitcher-plant_family 0 005 @ 11562747 n 0000 #m 12778926 n 0000 %m 12779437 n 0000 %m 12780852 n 0000 %m 12781241 n 0000 | insectivorous plants -12779437 20 n 02 Sarracenia 0 genus_Sarracenia 0 005 @ 11567411 n 0000 #m 12779233 n 0000 %m 12779851 n 0000 %m 12780325 n 0000 %m 12780563 n 0000 | pitcher plants -12779603 20 n 01 pitcher_plant 0 008 @ 12778605 n 0000 #m 12778926 n 0000 ~ 12779851 n 0000 ~ 12780325 n 0000 ~ 12780563 n 0000 ~ 12781007 n 0000 ~ 12781421 n 0000 ~ 12781940 n 0000 | any of several insectivorous herbs of the order Sarraceniales -12779851 20 n 04 common_pitcher_plant 0 huntsman's_cup 0 huntsman's_cups 0 Sarracenia_purpurea 0 002 @ 12779603 n 0000 #m 12779437 n 0000 | perennial bog herb having dark red flowers and decumbent broadly winged pitchers forming a rosette; of northeastern North America and naturalized in Europe especially Ireland -12780168 20 n 01 pitcher 0 002 @ 13152742 n 0000 ;c 06066555 n 0000 | (botany) a leaf that that is modified in such a way as to resemble a pitcher or ewer -12780325 20 n 02 hooded_pitcher_plant 0 Sarracenia_minor 0 002 @ 12779603 n 0000 #m 12779437 n 0000 | yellow-flowered pitcher plant of southeastern United States having trumpet-shaped leaves with the orifice covered with an arched hood -12780563 20 n 06 huntsman's_horn 0 huntsman's_horns 0 yellow_trumpet 0 yellow_pitcher_plant 0 trumpets 0 Sarracenia_flava 0 002 @ 12779603 n 0000 #m 12779437 n 0000 | pitcher plant of southeastern United States having erect yellow trumpet-shaped pitchers with wide mouths and erect lids -12780852 20 n 02 Darlingtonia 0 genus_Darlingtonia 0 003 @ 11567411 n 0000 #m 12779233 n 0000 %m 12781007 n 0000 | one species: California pitcher plant -12781007 20 n 02 California_pitcher_plant 0 Darlingtonia_californica 0 002 @ 12779603 n 0000 #m 12780852 n 0000 | marsh or bog herb having solitary pendulous yellow-green flowers and somewhat twisted pitchers with broad wings below -12781241 20 n 02 Heliamphora 0 genus_Heliamphora 0 003 @ 11567411 n 0000 #m 12779233 n 0000 %m 12781421 n 0000 | genus of pitcher plants of the Guiana Highlands in South America -12781421 20 n 01 sun_pitcher 0 002 @ 12779603 n 0000 #m 12781241 n 0000 | any of several herbs of Guiana highlands having racemes of nodding white or pink flowers; trap and digest insects in pitcher-shaped leaves with spoon-shaped caps -12781659 20 n 02 Nepenthaceae 0 family_Nepenthaceae 0 003 @ 11562747 n 0000 #m 12778926 n 0000 %m 12781814 n 0000 | coextensive with the genus Nepenthes -12781814 20 n 02 Nepenthes 0 genus_Nepenthes 0 003 @ 11567411 n 0000 #m 12781659 n 0000 %m 12781940 n 0000 | pitcher plants -12781940 20 n 01 tropical_pitcher_plant 0 002 @ 12779603 n 0000 #m 12781814 n 0000 | any of several tropical carnivorous shrubs or woody herbs of the genus Nepenthes -12782108 20 n 03 Droseraceae 0 family_Droseraceae 0 sundew_family 0 006 @ 11562747 n 0000 #m 12778926 n 0000 %m 12782338 n 0000 %m 12782774 n 0000 %m 12783173 n 0000 %m 12783601 n 0000 | a family of carnivorous herbs and shrubs -12782338 20 n 02 Drosera 0 genus_Drosera 0 003 @ 11567411 n 0000 #m 12782108 n 0000 %m 12782530 n 0000 | the type genus of Droseraceae including many low bog-inhabiting insectivorous plants -12782530 20 n 03 sundew 0 sundew_plant 0 daily_dew 0 002 @ 12778605 n 0000 #m 12782338 n 0000 | any of various bog plants of the genus Drosera having leaves covered with sticky hairs that trap and digest insects; cosmopolitan in distribution -12782774 20 n 02 Dionaea 0 genus_Dionaea 0 003 @ 11567411 n 0000 #m 12782108 n 0000 %m 12782915 n 0000 | a genus of the family Droseraceae -12782915 20 n 03 Venus's_flytrap 0 Venus's_flytraps 0 Dionaea_muscipula 0 002 @ 12778605 n 0000 #m 12782774 n 0000 | carnivorous plant of coastal plains of the Carolinas having sensitive hinged marginally bristled leaf blades that close and entrap insects -12783173 20 n 02 Aldrovanda 0 genus_Aldrovanda 0 003 @ 11567411 n 0000 #m 12782108 n 0000 %m 12783316 n 0000 | one species: waterwheel plant -12783316 20 n 02 waterwheel_plant 0 Aldrovanda_vesiculosa 0 002 @ 12778605 n 0000 #m 12783173 n 0000 | floating aquatic carnivorous perennial of central and southern Europe, Africa, Asia, Australia having whorls of 6 to 9 leaves ending in hinged lobes for capturing e.g. water fleas -12783601 20 n 02 Drosophyllum 0 genus_Drosophyllum 0 003 @ 11567411 n 0000 #m 12782108 n 0000 %m 12783730 n 0000 | one species -12783730 20 n 01 Drosophyllum_lusitanicum 0 002 @ 12778605 n 0000 #m 12783601 n 0000 | perennial of dry habitats whose leaves have glandular hairs that secrete adhesive and digestive fluid for capture and digestion of insects; Portugal, southern Spain and Morocco -12783996 20 n 02 Roridulaceae 0 family_Roridulaceae 0 003 @ 11562747 n 0000 #m 12778926 n 0000 %m 12784173 n 0000 | in some classifications included in the family Droseraceae -12784173 20 n 01 genus_Roridula 0 003 @ 11567411 n 0000 #m 12783996 n 0000 %m 12784371 n 0000 | insectivorous undershrubs of South Africa; in some classifications placed in the family Droseraceae -12784371 20 n 01 roridula 0 002 @ 12778605 n 0000 #m 12784173 n 0000 | either of 2 species of the genus Roridula; South African viscid perennial low-growing woody shrubs -12784543 20 n 02 Cephalotaceae 0 family_Cephalotaceae 0 003 @ 11566682 n 0000 #m 12618942 n 0000 %m 12784738 n 0000 | a family of plants of order Rosales; coextensive with the genus Cephalotus -12784738 20 n 02 Cephalotus 0 genus_Cephalotus 0 003 @ 11585340 n 0000 #m 12784543 n 0000 %m 12784889 n 0000 | one species: Australian pitcher plant -12784889 20 n 02 Australian_pitcher_plant 0 Cephalotus_follicularis 0 002 @ 12205694 n 0000 #m 12784738 n 0000 | a carnivorous perennial herb having a green pitcher and hinged lid both with red edges; western Australia -12785110 20 n 03 Crassulaceae 0 family_Crassulaceae 0 stonecrop_family 0 005 @ 11744583 n 0000 #m 12618942 n 0000 %m 12785312 n 0000 %m 12785499 n 0000 %m 12786684 n 0000 | succulent shrubs and herbs -12785312 20 n 02 Crassula 0 genus_Crassula 0 002 @ 11744859 n 0000 #m 12785110 n 0000 | type genus of Crassulaceae; herbs and small shrubs having woody stems and succulent aerial parts -12785499 20 n 01 genus_Sedum 0 007 @ 11744859 n 0000 #m 12785110 n 0000 %m 12785724 n 0000 %m 12785889 n 0000 %m 12786097 n 0000 %m 12786273 n 0000 %m 12786464 n 0000 | large genus of rock plants having thick fleshy leaves -12785724 20 n 01 sedum 0 005 @ 12205694 n 0000 #m 12785499 n 0000 ~ 12785889 n 0000 ~ 12786273 n 0000 ~ 12786464 n 0000 | any of various plants of the genus Sedum -12785889 20 n 01 stonecrop 0 003 @ 12785724 n 0000 #m 12785499 n 0000 ~ 12786097 n 0000 | any of various northern temperate plants of the genus Sedum having fleshy leaves and red or yellow or white flowers -12786097 20 n 02 wall_pepper 0 Sedum_acre 0 002 @ 12785889 n 0000 #m 12785499 n 0000 | mossy European creeping sedum with yellow flowers; widely introduced as a ground cover -12786273 20 n 03 rose-root 0 midsummer-men 0 Sedum_rosea 0 002 @ 12785724 n 0000 #m 12785499 n 0000 | Eurasian mountain plant with fleshy pink-tipped leaves and a cluster of yellow flowers -12786464 20 n 05 orpine 0 orpin 0 livelong 0 live-forever 0 Sedum_telephium 0 002 @ 12785724 n 0000 #m 12785499 n 0000 | perennial northern temperate plant with toothed leaves and heads of small purplish-white flowers -12786684 20 n 02 Aeonium 0 genus_Aeonium 0 003 @ 11744859 n 0000 #m 12785110 n 0000 %m 12786836 n 0000 | a genus of plants of the family Crassulaceae -12786836 20 n 02 pinwheel 1 Aeonium_haworthii 0 002 @ 13118707 n 0000 #m 12786684 n 0000 | perennial subshrub of Tenerife having leaves in rosettes resembling pinwheels -12787007 20 n 03 Cunoniaceae 0 family_Cunoniaceae 0 cunonia_family 0 003 @ 11566682 n 0000 #m 12618942 n 0000 %m 12787196 n 0000 | trees or shrubs or climbers; mostly southern hemisphere -12787196 20 n 02 Ceratopetalum 0 genus_Ceratopetalum 0 003 @ 11585340 n 0000 #m 12787007 n 0000 %m 12787364 n 0000 | a dicotyledonous genus of the family Cunoniaceae -12787364 20 n 03 Christmas_bush 0 Christmas_tree 4 Ceratopetalum_gummiferum 0 002 @ 13104059 n 0000 #m 12787196 n 0000 | Australian tree or shrub with red flowers; often used in Christmas decoration -12787565 20 n 03 Hydrangeaceae 0 family_Hydrangeaceae 0 hydrangea_family 0 008 @ 11566682 n 0000 #m 12618942 n 0000 %m 12787846 n 0000 %m 12789399 n 0000 %m 12789767 n 0000 %m 12790185 n 0000 %m 12790656 n 0000 %m 12791539 n 0000 | sometimes included in the family Saxifragaceae -12787846 20 n 01 genus_Hydrangea 0 008 @ 11585340 n 0000 #m 12787565 n 0000 %m 12788201 n 0000 %m 12788487 n 0000 %m 12788678 n 0000 %m 12788854 n 0000 %m 12789054 n 0000 %m 12789226 n 0000 | type genus of Hydrangeaceae; large genus of shrubs and some trees and vines with white or pink or blue flower clusters; sometimes placed in family Saxifragaceae -12788201 20 n 01 hydrangea 0 010 @ 13112664 n 0000 #m 12787846 n 0000 ~ 12788487 n 0000 ~ 12788678 n 0000 ~ 12788854 n 0000 ~ 12789054 n 0000 ~ 12789226 n 0000 ~ 12789554 n 0000 ~ 12789977 n 0000 ~ 12790430 n 0000 | any of various deciduous or evergreen shrubs of the genus Hydrangea -12788487 20 n 02 climbing_hydrangea 2 Hydrangea_anomala 0 002 @ 12788201 n 0000 #m 12787846 n 0000 | deciduous climber with aerial roots having white to creamy flowers in fairly flat heads -12788678 20 n 02 wild_hydrangea 0 Hydrangea_arborescens 0 002 @ 12788201 n 0000 #m 12787846 n 0000 | deciduous shrub with creamy white flower clusters; eastern United States -12788854 20 n 02 hortensia 0 Hydrangea_macrophylla_hortensis 0 002 @ 12788201 n 0000 #m 12787846 n 0000 | deciduous shrub bearing roundheaded flower clusters opening green and aging to pink or blue -12789054 20 n 02 fall-blooming_hydrangea 0 Hydrangea_paniculata 0 002 @ 12788201 n 0000 #m 12787846 n 0000 | deciduous shrub or small tree with pyramidal flower clusters -12789226 20 n 02 climbing_hydrangea 3 Hydrangea_petiolaris 0 002 @ 12788201 n 0000 #m 12787846 n 0000 | deciduous climber with aerial roots having large flat flower heads -12789399 20 n 01 genus_Carpenteria 0 003 @ 11585340 n 0000 #m 12787565 n 0000 %m 12789554 n 0000 | one species; sometimes placed in family Saxifragaceae -12789554 20 n 02 carpenteria 0 Carpenteria_californica 0 002 @ 12788201 n 0000 #m 12789399 n 0000 | California evergreen shrub having glossy opposite leaves and terminal clusters of a few fragrant white flowers -12789767 20 n 02 Decumaria 0 genus_Decumaria 0 003 @ 11585340 n 0000 #m 12787565 n 0000 %m 12789977 n 0000 | small genus of woody climbers with adhesive aerial roots; sometimes placed in family Saxifragaceae -12789977 20 n 03 decumary 0 Decumaria_barbata 0 Decumaria_barbara 0 002 @ 12788201 n 0000 #m 12789767 n 0000 | woody climber of southeastern United States having white flowers in compound terminal clusters -12790185 20 n 01 genus_Deutzia 0 003 @ 11585340 n 0000 #m 12787565 n 0000 %m 12790430 n 0000 | genus of ornamental mostly deciduous shrubs native to Asia and Central America; widespread in cultivation; sometimes placed in family Saxifragaceae -12790430 20 n 01 deutzia 0 002 @ 12788201 n 0000 #m 12790185 n 0000 | any of various shrubs of the genus Deutzia having usually toothed opposite leaves and shredding bark and white or pink flowers in loose terminal clusters -12790656 20 n 02 Philadelphaceae 0 subfamily_Philadelphaceae 0 003 @ 11566682 n 0000 #m 12787565 n 0000 %m 12790835 n 0000 | one genus; usually included in family Hydrangeaceae -12790835 20 n 01 genus_Philadelphus 0 004 @ 11585340 n 0000 #m 12790656 n 0000 %m 12791064 n 0000 %m 12791329 n 0000 | mock orange: type and sole genus of the subfamily Philadelphaceae; sometimes placed in family Saxifragaceae -12791064 20 n 01 philadelphus 0 003 @ 13112664 n 0000 #m 12790835 n 0000 ~ 12791329 n 0000 | any of various chiefly deciduous ornamental shrubs of the genus Philadelphus having white sweet-scented flowers, single or in clusters; widely grown in temperate regions -12791329 20 n 03 mock_orange 1 syringa 2 Philadelphus_coronarius 0 002 @ 12791064 n 0000 #m 12790835 n 0000 | large hardy shrub with showy and strongly fragrant creamy-white flowers in short terminal racemes -12791539 20 n 02 Schizophragma 0 genus_Schizophragma 0 003 @ 11585340 n 0000 #m 12787565 n 0000 %m 12791790 n 0000 | small genus of deciduous climbing and creeping shrubs with white flowers in flat clusters; sometimes placed in family Saxifragaceae -12791790 20 n 02 climbing_hydrangea 1 Schizophragma_hydrangeoides 0 002 @ 13112664 n 0000 #m 12791539 n 0000 | climbing shrub with adhesive aerial roots having opposite leaves and small white flowers in terminal cymes; Himalayas to Taiwan and Japan -12792041 20 n 03 Saxifragaceae 0 family_Saxifragaceae 0 saxifrage_family 0 018 @ 11566682 n 0000 #m 12618942 n 0000 %m 12792638 n 0000 %m 12794853 n 0000 %m 12795829 n 0000 %m 12796192 n 0000 %m 12796617 n 0000 %m 12797213 n 0000 %m 12797693 n 0000 %m 12798041 n 0000 %m 12799119 n 0000 %m 12799580 n 0000 %m 12800327 n 0000 %m 12801323 n 0000 %m 12802248 n 0000 %m 12802987 n 0000 %m 12803517 n 0000 %m 12804216 n 0000 | a large and diverse family of evergreen or deciduous herbs; widely distributed in northern temperate and cold regions; sometimes includes genera of the family Hydrangeaceae -12792638 20 n 02 Saxifraga 0 genus_Saxifraga 0 010 @ 11585340 n 0000 #m 12792041 n 0000 %m 12793015 n 0000 %m 12793284 n 0000 %m 12793494 n 0000 %m 12793695 n 0000 %m 12793886 n 0000 %m 12794135 n 0000 %m 12794367 n 0000 %m 12794568 n 0000 | type genus of the Saxifragaceae; large genus of usually perennial herbs of Arctic and cool regions of northern hemisphere: saxifrage -12793015 20 n 03 saxifrage 0 breakstone 0 rockfoil 0 009 @ 12205694 n 0000 #m 12792638 n 0000 ~ 12793284 n 0000 ~ 12793494 n 0000 ~ 12793695 n 0000 ~ 12793886 n 0000 ~ 12794135 n 0000 ~ 12794367 n 0000 ~ 12794568 n 0000 | any of various plants of the genus Saxifraga -12793284 20 n 02 yellow_mountain_saxifrage 0 Saxifraga_aizoides 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | tufted evergreen perennial having ciliate leaves and yellow corymbose flowers often spotted orange -12793494 20 n 03 meadow_saxifrage 0 fair-maids-of-France 0 Saxifraga_granulata 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | rosette-forming perennial having compact panicles of white flowers; Europe -12793695 20 n 02 mossy_saxifrage 0 Saxifraga_hypnoides 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | tufted or mat-forming perennial of mountains of Europe; cultivated for its white flowers -12793886 20 n 02 western_saxifrage 0 Saxifraga_occidentalis 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | saxifrage having loose clusters of white flowers on hairy stems growing from a cluster of basal leaves; moist slopes of western North America -12794135 20 n 02 purple_saxifrage 0 Saxifraga_oppositifolia 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | plants forming dense cushions with bright reddish-lavender flowers; rocky areas of Europe and Asia and western North America -12794367 20 n 03 star_saxifrage 0 starry_saxifrage 0 Saxifraga_stellaris 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | small often mat-forming alpine plant having small starlike white flowers; Europe -12794568 20 n 05 strawberry_geranium 0 strawberry_saxifrage 0 mother-of-thousands 0 Saxifraga_stolonifera 0 Saxifraga_sarmentosam 0 002 @ 12793015 n 0000 #m 12792638 n 0000 | eastern Asiatic saxifrage with racemes of small red-and-white flowers; spreads by numerous creeping stolons -12794853 20 n 01 genus_Astilbe 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12794985 n 0000 | chiefly Asiatic perennials: spirea -12794985 20 n 01 astilbe 0 005 @ 12205694 n 0000 #m 12794853 n 0000 ~ 12795209 n 0000 ~ 12795352 n 0000 ~ 12795555 n 0000 | any plant of the genus Astilbe having compound leaves and showy panicles of tiny colorful flowers -12795209 20 n 02 false_goatsbeard 0 Astilbe_biternata 0 001 @ 12794985 n 0000 | North American astilbe with panicles of creamy white flowers -12795352 20 n 02 dwarf_astilbe 0 Astilbe_chinensis_pumila 0 001 @ 12794985 n 0000 | mat-forming evergreen Asiatic plant with finely cut leaves and small pink to burgundy flowers; grown as ground cover -12795555 20 n 03 spirea 2 spiraea 2 Astilbe_japonica 0 001 @ 12794985 n 0000 | a Japanese shrub that resembles members of the genus Spiraea; widely cultivated in many varieties for its dense panicles of flowers in many colors; often forced by florists for Easter blooming -12795829 20 n 01 genus_Bergenia 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12796022 n 0000 | genus of perennial spring-blooming rhizomatous herbs with thick evergreen leaves; eastern Asia -12796022 20 n 01 bergenia 0 002 @ 12205694 n 0000 #m 12795829 n 0000 | any plant of the genus Bergenia; valued as an evergreen ground cover and for the spring blossoms -12796192 20 n 02 Boykinia 0 genus_Boykinia 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12796385 n 0000 | genus of perennial rhizomatous herbs with flowers in panicles; North America; Japan -12796385 20 n 03 coast_boykinia 0 Boykinia_elata 0 Boykinia_occidentalis 0 002 @ 11672400 n 0000 #m 12796192 n 0000 | plant with leaves mostly at the base and openly branched clusters of small white flowers; western North America -12796617 20 n 02 Chrysosplenium 0 genus_Chrysosplenium 0 004 @ 11585340 n 0000 #m 12792041 n 0000 %m 12796849 n 0000 %m 12797025 n 0000 | genus of widely distributed semiaquatic herbs with minute greenish-yellow apetalous flowers -12796849 20 n 02 golden_saxifrage 0 golden_spleen 0 003 @ 13121544 n 0000 #m 12796617 n 0000 ~ 12797025 n 0000 | any of various low aquatic herbs of the genus Chrysosplenium -12797025 20 n 03 water_carpet 0 water_mat 0 Chrysosplenium_americanum 0 002 @ 12796849 n 0000 #m 12796617 n 0000 | aquatic herb with yellowish flowers; central and western United States -12797213 20 n 04 Darmera 0 genus_Darmera 0 Peltiphyllum 0 genus_Peltiphyllum 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12797368 n 0000 | one species -12797368 20 n 04 umbrella_plant 0 Indian_rhubarb 0 Darmera_peltata 0 Peltiphyllum_peltatum 0 002 @ 12205694 n 0000 #m 12797213 n 0000 | rhizomatous perennial herb with large dramatic peltate leaves and white to bright pink flowers in round heads on leafless stems; colonizes stream banks in the Sierra Nevada in California -12797693 20 n 02 Francoa 0 genus_Francoa 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12797860 n 0000 | perennial evergreen herbs with white or pink flowers; Chile -12797860 20 n 03 bridal_wreath 2 bridal-wreath 2 Francoa_ramosa 0 002 @ 13112664 n 0000 #m 12797693 n 0000 | Chilean evergreen shrub having delicate spikes of small white flowers -12798041 20 n 02 Heuchera 0 genus_Heuchera 0 005 @ 11585340 n 0000 #m 12792041 n 0000 %m 12798284 n 0000 %m 12798632 n 0000 %m 12798910 n 0000 | genus of North American herbs with basal cordate or orbicular leaves and small panicled flowers -12798284 20 n 02 alumroot 0 alumbloom 0 005 @ 12205694 n 0000 #m 12798041 n 0000 ~ 12798466 n 0000 ~ 12798632 n 0000 ~ 12798910 n 0000 | any of several herbs of the genus Heuchera -12798466 20 n 02 rock_geranium 0 Heuchera_americana 0 001 @ 12798284 n 0000 | plant with basal leaves mottled with white and flowers in lax panicles on erect stems -12798632 20 n 03 poker_alumroot 0 poker_heuchera 0 Heuchera_cylindrica 0 002 @ 12798284 n 0000 #m 12798041 n 0000 | plant with leathery heart-shaped leaf blades clustered at base of long stalks with greenish-white flowers clustered along the upper part; western North America -12798910 20 n 02 coralbells 0 Heuchera_sanguinea 0 002 @ 12798284 n 0000 #m 12798041 n 0000 | perennial plant of the western United States having bright red flowers in feathery spikes; used as an ornamental -12799119 20 n 02 Leptarrhena 0 genus_Leptarrhena 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12799269 n 0000 | one species: leatherleaf saxifrage -12799269 20 n 02 leatherleaf_saxifrage 0 Leptarrhena_pyrolifolia 0 002 @ 11672400 n 0000 #m 12799119 n 0000 | plant with basal leathery elliptic leaves and erect leafless flower stalks each bearing a dense roundish cluster of tiny white flowers; moist places of northwestern North America to Oregon and Idaho -12799580 20 n 02 Lithophragma 0 genus_Lithophragma 0 004 @ 11585340 n 0000 #m 12792041 n 0000 %m 12799776 n 0000 %m 12800049 n 0000 | small genus of perennial herbs of the western North America -12799776 20 n 04 woodland_star 0 Lithophragma_affine 0 Lithophragma_affinis 0 Tellima_affinis 0 002 @ 11669921 n 0000 #m 12799580 n 0000 | California perennial herb cultivated for its racemose white flowers with widely spreading petals; sometimes placed in genus Tellima -12800049 20 n 02 prairie_star 0 Lithophragma_parviflorum 0 002 @ 11672400 n 0000 #m 12799580 n 0000 | plant with mostly basal leaves and slender open racemes of white or pale pink flowers; prairies and open forest of northwestern United States to British Columbia and Alberta -12800327 20 n 02 Mitella 0 genus_Mitella 0 005 @ 11585340 n 0000 #m 12792041 n 0000 %m 12800586 n 0000 %m 12800832 n 0000 %m 12801072 n 0000 | genus of low slender herbs of North America and northeastern Asia having flowers with trifid or pinnatifid petals -12800586 20 n 03 miterwort 0 mitrewort 0 bishop's_cap 0 004 @ 12205694 n 0000 #m 12800327 n 0000 ~ 12800832 n 0000 ~ 12801072 n 0000 | any of various rhizomatous perennial herbs of the genus Mitella having a capsule resembling a bishop's miter -12800832 20 n 02 fairy_cup 1 Mitella_diphylla 0 002 @ 12800586 n 0000 #m 12800327 n 0000 | miterwort of northeastern North America usually with two opposite leaves on erect flowering stems that terminate in erect racemes of white flowers -12801072 20 n 02 five-point_bishop's_cap 0 Mitella_pentandra 0 002 @ 12800586 n 0000 #m 12800327 n 0000 | small plant with leaves in a basal cluster and tiny greenish flowers in slender racemes; northwestern North America to California and Colorado -12801323 20 n 01 genus_Parnassia 0 005 @ 11585340 n 0000 #m 12792041 n 0000 %m 12801520 n 0000 %m 12801781 n 0000 %m 12801966 n 0000 | genus of bog herbs of Arctic and northern temperate regions -12801520 20 n 02 parnassia 0 grass-of-Parnassus 0 003 @ 13122364 n 0000 #m 12801323 n 0000 ~ 12801781 n 0000 | any of various usually evergreen bog plants of the genus Parnassia having broad smooth basal leaves and a single pale flower resembling a buttercup -12801781 20 n 02 bog_star 0 Parnassia_palustris 0 002 @ 12801520 n 0000 #m 12801323 n 0000 | plant having ovate leaves in a basal rosette and white starlike flowers netted with green -12801966 20 n 02 fringed_grass_of_Parnassus 0 Parnassia_fimbriata 0 002 @ 11672400 n 0000 #m 12801323 n 0000 | bog plant with broadly heart-shaped basal leaves and cream-colored or white saucer-shaped flowers with fringed petals; west of Rocky Mountains from Alaska to New Mexico -12802248 20 n 01 genus_Suksdorfia 0 004 @ 11585340 n 0000 #m 12792041 n 0000 %m 12802442 n 0000 %m 12802707 n 0000 | small genus of rhizomatous herbs of northwestern America and South America -12802442 20 n 01 suksdorfia 0 003 @ 12205694 n 0000 #m 12802248 n 0000 ~ 12802707 n 0000 | any of several American plants of the genus Suksdorfia having orbicular to kidney-shaped somewhat succulent leaves and white or rose or violet flowers in terminal panicles -12802707 20 n 02 violet_suksdorfia 0 Suksdorfia_violaceae 0 002 @ 12802442 n 0000 #m 12802248 n 0000 | slender delicate plant with wide roundish deeply lobed leaves and deep pink to violet funnel-shaped flowers; British Columbia to northern Oregon and west to Idaho and Montana -12802987 20 n 02 Tellima 0 genus_Tellima 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12803226 n 0000 | genus of hardy perennials with palmately lobed leaves and long racemes of small nodding five-petaled flowers; western North America -12803226 20 n 03 false_alumroot 0 fringe_cups 0 Tellima_grandiflora 0 002 @ 11672400 n 0000 #m 12802987 n 0000 | plant growing in clumps with mostly basal leaves and cream-colored or pale pink fringed flowers in several long racemes; Alaska to coastal central California and east to Idaho -12803517 20 n 02 Tiarella 0 genus_Tiarella 0 004 @ 11585340 n 0000 #m 12792041 n 0000 %m 12803754 n 0000 %m 12803958 n 0000 | small genus of North American herbs having mostly basal leaves and slender racemes of delicate white flowers -12803754 20 n 05 foamflower 0 coolwart 0 false_miterwort 2 false_mitrewort 2 Tiarella_cordifolia 0 002 @ 12205694 n 0000 #m 12803517 n 0000 | stoloniferous white-flowered spring-blooming woodland plant -12803958 20 n 03 false_miterwort 1 false_mitrewort 1 Tiarella_unifoliata 0 002 @ 11672400 n 0000 #m 12803517 n 0000 | plant with tiny white flowers hanging in loose clusters on leafy stems; moist woods from Alaska to central California and east to Montana -12804216 20 n 02 Tolmiea 0 genus_Tolmiea 0 003 @ 11585340 n 0000 #m 12792041 n 0000 %m 12804352 n 0000 | one species: pickaback plant -12804352 20 n 04 pickaback_plant 0 piggyback_plant 0 youth-on-age 0 Tolmiea_menziesii 0 002 @ 12205694 n 0000 #m 12804216 n 0000 | vigorous perennial herb with flowers in erect racemes and having young plants develop at the junction of a leaf blade and the leafstalk -12804621 20 n 03 Grossulariaceae 0 family_Grossulariaceae 0 gooseberry_family 0 003 @ 11744583 n 0000 #m 12618942 n 0000 %m 12804866 n 0000 | in some classifications considered a part of the family Saxifragaceae: plants whose fruit is a berry -12804866 20 n 02 Ribes 0 genus_Ribes 0 008 @ 11744859 n 0000 #m 12804621 n 0000 %m 12805146 n 0000 %m 12805373 n 0000 %m 12805561 n 0000 %m 12805762 n 0000 %m 12805899 n 0000 %m 12806015 n 0000 | a flowering shrub bearing currants or gooseberries; native to northern hemisphere -12805146 20 n 02 currant 0 currant_bush 0 006 @ 13112664 n 0000 #m 12804866 n 0000 ~ 12805373 n 0000 ~ 12805561 n 0000 ~ 12805762 n 0000 ~ 12805899 n 0000 | any of various deciduous shrubs of the genus Ribes bearing currants -12805373 20 n 03 red_currant 0 garden_current 0 Ribes_rubrum 0 003 @ 12805146 n 0000 #m 12804866 n 0000 %p 07744682 n 0000 | cultivated European current bearing small edible red berries -12805561 20 n 03 black_currant 0 European_black_currant 0 Ribes_nigrum 0 003 @ 12805146 n 0000 #m 12804866 n 0000 %p 07744559 n 0000 | widely cultivated current bearing edible black aromatic berries -12805762 20 n 02 white_currant 0 Ribes_sativum 0 002 @ 12805146 n 0000 #m 12804866 n 0000 | garden currant bearing small white berries -12805899 20 n 02 winter_currant 0 Ribes_sanguineum 0 002 @ 12805146 n 0000 #m 12804866 n 0000 | a flowering shrub -12806015 20 n 04 gooseberry 0 gooseberry_bush 0 Ribes_uva-crispa 0 Ribes_grossularia 0 003 @ 13112664 n 0000 #m 12804866 n 0000 %p 07744430 n 0000 | spiny Eurasian shrub having greenish purple-tinged flowers and ovoid yellow-green or red-purple berries -12806270 20 n 03 Platanaceae 0 family_Platanaceae 0 plane-tree_family 0 003 @ 11566682 n 0000 #m 12618942 n 0000 %m 12806455 n 0000 | coextensive with the genus Platanus: plane trees -12806455 20 n 02 Platanus 0 genus_Platanus 0 008 @ 11585340 n 0000 #m 12806270 n 0000 %m 12806732 n 0000 %m 12807251 n 0000 %m 12807409 n 0000 %m 12807624 n 0000 %m 12807773 n 0000 %m 12808007 n 0000 | genus of large monoecious mostly deciduous trees: London plane; sycamore -12806732 20 n 03 plane_tree 0 sycamore 0 platan 0 008 @ 13104059 n 0000 #m 12806455 n 0000 %s 12807082 n 0000 ~ 12807251 n 0000 ~ 12807409 n 0000 ~ 12807624 n 0000 ~ 12807773 n 0000 ~ 12808007 n 0000 | any of several trees of the genus Platanus having thin pale bark that scales off in small plates and lobed leaves and ball-shaped heads of fruits -12807082 20 n 02 sycamore 2 lacewood 0 002 @ 15098161 n 0000 #s 12806732 n 0000 | variably colored and sometimes variegated hard tough elastic wood of a sycamore tree -12807251 20 n 02 London_plane 0 Platanus_acerifolia 0 002 @ 12806732 n 0000 #m 12806455 n 0000 | very large fast-growing tree much planted as a street tree -12807409 20 n 04 American_sycamore 0 American_plane 0 buttonwood 0 Platanus_occidentalis 0 002 @ 12806732 n 0000 #m 12806455 n 0000 | very large spreading plane tree of eastern and central North America to Mexico -12807624 20 n 02 oriental_plane 0 Platanus_orientalis 0 002 @ 12806732 n 0000 #m 12806455 n 0000 | large tree of southeastern Europe to Asia Minor -12807773 20 n 02 California_sycamore 0 Platanus_racemosa 0 002 @ 12806732 n 0000 #m 12806455 n 0000 | tall tree of Baja California having deciduous bark and large alternate palmately lobed leaves and ball-shaped clusters of flowers -12808007 20 n 02 Arizona_sycamore 0 Platanus_wrightii 0 002 @ 12806732 n 0000 #m 12806455 n 0000 | medium-sized tree of Arizona and adjacent regions having deeply lobed leaves and collective fruits in groups of 3 to 5 -12808227 20 n 02 Polemoniales 0 order_Polemoniales 0 017 @ 11534677 n 0000 #m 11910835 n 0000 %m 12808933 n 0000 %m 12811856 n 0000 %m 12813393 n 0000 %m 12815925 n 0000 %m 12823164 n 0000 %m 12829099 n 0000 %m 12834408 n 0000 %m 12838027 n 0000 %m 12871992 n 0000 %m 12873646 n 0000 %m 12874231 n 0000 %m 12874429 n 0000 %m 12876032 n 0000 %m 12892226 n 0000 %m 12914433 n 0000 | Polemoniaceae; Solanaceae; Boraginaceae; Labiatae; Lentibulariaceae; Pedaliaceae; in some classifications includes the order Scrophulariales -12808751 20 n 02 Scrophulariales 0 order_Scrophulariales 0 002 @ 11534677 n 0000 #m 11665781 n 0000 | used in some classification systems; often included in the order Polemoniales -12808933 20 n 03 Polemoniaceae 0 family_Polemoniaceae 0 phlox_family 0 006 @ 11566230 n 0000 #m 12808227 n 0000 + 02781531 a 0101 %m 12809233 n 0000 %m 12810318 n 0000 %m 12811294 n 0000 | a widely distributed family of chiefly herbaceous plants of the order Polemoniales; often have showy flowers -12809233 20 n 01 genus_Polemonium 0 003 @ 11579418 n 0000 #m 12808933 n 0000 %m 12809365 n 0000 | type genus of the Polemoniaceae -12809365 20 n 01 polemonium 0 006 @ 12205694 n 0000 #m 12809233 n 0000 ~ 12809626 n 0000 ~ 12809868 n 0000 ~ 12810007 n 0000 ~ 12810151 n 0000 | any plant of the genus Polemonium; most are low-growing often foul-smelling plants of temperate to Arctic regions -12809626 20 n 06 Jacob's_ladder 0 Greek_valerian 1 charity 0 Polemonium_caeruleum 0 Polemonium_van-bruntiae 0 Polymonium_caeruleum_van-bruntiae 0 001 @ 12809365 n 0000 | pinnate-leaved European perennial having bright blue or white flowers -12809868 20 n 02 Greek_valerian 2 Polemonium_reptans 0 001 @ 12809365 n 0000 | erect or spreading perennial of the eastern United States -12810007 20 n 02 northern_Jacob's_ladder 0 Polemonium_boreale 0 001 @ 12809365 n 0000 | perennial erect herb with white flowers; circumboreal -12810151 20 n 03 skunkweed 0 skunk-weed 0 Polemonium_viscosum 0 001 @ 12809365 n 0000 | tall herb of the Rocky Mountains having sticky leaves and an offensive smell -12810318 20 n 01 genus_Phlox 0 004 @ 11744859 n 0000 #m 12808933 n 0000 %m 12810595 n 0000 %m 12810847 n 0000 | herbaceous to shrubby evergreen or deciduous annuals or perennials, diffuse (spreading) or caespitose (tufted or matted); from Alaska and western Canada to Mexico -12810595 20 n 01 phlox 0 006 @ 12205694 n 0000 #m 12810318 n 0000 ~ 12810847 n 0000 ~ 12811027 n 0000 ~ 12811501 n 0000 ~ 12811713 n 0000 | any polemoniaceous plant of the genus Phlox; chiefly North American; cultivated for their clusters of flowers -12810847 20 n 04 chickweed_phlox 0 sand_phlox 0 Phlox_bifida 0 Phlox_stellaria 0 002 @ 12810595 n 0000 #m 12810318 n 0000 | low mat-forming herb of rocky places in United States -12811027 20 n 05 moss_pink 1 mountain_phlox 0 moss_phlox 0 dwarf_phlox 0 Phlox_subulata 0 001 @ 12810595 n 0000 | low tufted perennial phlox with needlelike evergreen leaves and pink or white flowers; native to United States and widely cultivated as a ground cover -12811294 20 n 02 Linanthus 0 genus_Linanthus 0 004 @ 11744859 n 0000 #m 12808933 n 0000 %m 12811501 n 0000 %m 12811713 n 0000 | a genus of herbs of the family Polemoniaceae; found in western United States -12811501 20 n 04 ground_pink 0 fringed_pink 2 moss_pink 2 Linanthus_dianthiflorus 0 002 @ 12810595 n 0000 #m 12811294 n 0000 | low wiry-stemmed branching herb or southern California having fringed pink flowers -12811713 20 n 02 evening-snow 0 Linanthus_dichotomus 0 002 @ 12810595 n 0000 #m 12811294 n 0000 | small California annual with white flowers -12811856 20 n 03 Acanthaceae 0 family_Acanthaceae 0 acanthus_family 0 005 @ 11566230 n 0000 #m 12808227 n 0000 %m 12812121 n 0000 %m 12812665 n 0000 %m 12813024 n 0000 | widely distributed herbs and shrubs and trees; sometimes placed in the order Scrophulariales -12812121 20 n 01 genus_Acanthus 0 003 @ 11579418 n 0000 #m 12811856 n 0000 %m 12812235 n 0000 | bear's breeches -12812235 20 n 01 acanthus 0 003 @ 12205694 n 0000 #m 12812121 n 0000 ~ 12812478 n 0000 | any plant of the genus Acanthus having large spiny leaves and spikes or white or purplish flowers; native to Mediterranean region but widely cultivated -12812478 20 n 04 bear's_breech 0 bear's_breeches 0 sea_holly 2 Acanthus_mollis 0 001 @ 12812235 n 0000 | widely cultivated southern European acanthus with whitish purple-veined flowers -12812665 20 n 02 Graptophyllum 0 genus_Graptophyllum 0 003 @ 11579418 n 0000 #m 12811856 n 0000 %m 12812801 n 0000 | caricature plant -12812801 20 n 02 caricature_plant 0 Graptophyllum_pictum 0 002 @ 13112664 n 0000 #m 12812665 n 0000 | tropical Old World shrub having purple or red tubular flowers and leaf markings resembling the profile of a human face -12813024 20 n 02 Thunbergia 0 genus_Thunbergia 0 003 @ 11579418 n 0000 #m 12811856 n 0000 %m 12813189 n 0000 | a genus of herbs or vines of the family Acanthaceae -12813189 20 n 03 black-eyed_Susan 3 black-eyed_Susan_vine 0 Thunbergia_alata 0 002 @ 13100677 n 0000 #m 12813024 n 0000 | tropical African climbing plant having yellow flowers with a dark purple center -12813393 20 n 02 Bignoniaceae 0 family_Bignoniaceae 0 009 @ 11566230 n 0000 #m 12808227 n 0000 + 02663798 a 0101 %m 12813753 n 0000 %m 12813870 n 0000 ~ 12814235 n 0000 %m 12814417 n 0000 %m 12815060 n 0000 %m 12815434 n 0000 | trees or shrubs or woody vines or herbs having fruit resembling gourds or capsules; sometimes placed in the order Scrophulariales -12813753 20 n 01 bignoniad 0 002 @ 13103136 n 0000 #m 12813393 n 0000 | any woody plant of the family Bignoniaceae -12813870 20 n 02 Bignonia 0 genus_Bignonia 0 003 @ 11579418 n 0000 #m 12813393 n 0000 %m 12814003 n 0000 | one species: cross vine -12814003 20 n 05 cross_vine 0 trumpet_flower 1 quartervine 0 quarter-vine 0 Bignonia_capreolata 0 002 @ 13100677 n 0000 #m 12813870 n 0000 | woody flowering vine of southern United States; stems show a cross in transverse section -12814235 20 n 03 trumpet_creeper 0 trumpet_vine 1 Campsis_radicans 0 001 @ 12813393 n 0000 | a North American woody vine having pinnate leaves and large red trumpet-shaped flowers -12814417 20 n 01 genus_Catalpa 0 003 @ 11579418 n 0000 #m 12813393 n 0000 %m 12814643 n 0000 | a dicotyledonous genus of plants belonging to the family Bignoniaceae; has large flowers (white or mottled) and long terete pods -12814643 20 n 02 catalpa 0 Indian_bean 2 004 @ 13108131 n 0000 #m 12814417 n 0000 ~ 12814857 n 0000 ~ 12814960 n 0000 | tree of the genus Catalpa with large leaves and white flowers followed by long slender pods -12814857 20 n 01 Catalpa_bignioides 0 001 @ 12814643 n 0000 | catalpa tree of southern United States -12814960 20 n 01 Catalpa_speciosa 0 001 @ 12814643 n 0000 | catalpa tree of central United States -12815060 20 n 02 Chilopsis 0 genus_Chilopsis 0 003 @ 11579418 n 0000 #m 12813393 n 0000 %m 12815198 n 0000 | one species: desert willow -12815198 20 n 02 desert_willow 0 Chilopsis_linearis 0 002 @ 13112664 n 0000 #m 12815060 n 0000 | evergreen shrubby tree resembling a willow of dry regions of southwestern North America having showy purplish flowers and long seed pods -12815434 20 n 02 Crescentia 0 genus_Crescentia 0 003 @ 11579418 n 0000 #m 12813393 n 0000 %m 12815668 n 0000 | a genus of tropical American trees of the family Bignoniaceae; has a short trunk and crooked limbs and drooping branches -12815668 20 n 03 calabash 0 calabash_tree 0 Crescentia_cujete 0 002 @ 13104059 n 0000 #m 12815434 n 0000 | tropical American evergreen that produces large round gourds -12815838 20 n 01 calabash 1 001 @ 12158031 n 0000 | round gourd of the calabash tree -12815925 20 n 03 Boraginaceae 0 family_Boraginaceae 0 borage_family 0 014 @ 11744583 n 0000 #m 12808227 n 0000 %m 12816359 n 0000 %m 12816753 n 0000 %m 12817335 n 0000 %m 12818147 n 0000 %m 12818742 n 0000 %m 12819560 n 0000 %m 12819953 n 0000 %m 12820434 n 0000 %m 12821257 n 0000 %m 12821736 n 0000 %m 12822284 n 0000 %m 12822650 n 0000 | a widely distributed family of plants distinguished by circinate flowers and nutlike fruit -12816359 20 n 02 Borago 0 genus_Borago 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12816508 n 0000 | perennial herbs of the Mediterranean region -12816508 20 n 03 borage 0 tailwort 0 Borago_officinalis 0 003 @ 12205694 n 0000 #m 12816359 n 0000 %p 07816398 n 0000 | hairy blue-flowered European annual herb long used in herbal medicine and eaten raw as salad greens or cooked like spinach -12816753 20 n 02 Amsinckia 0 genus_Amsinckia 0 004 @ 11744859 n 0000 #m 12815925 n 0000 %m 12816942 n 0000 %m 12817129 n 0000 | rough annual herbs of Europe and the Americas: fiddlenecks -12816942 20 n 02 common_amsinckia 0 Amsinckia_intermedia 0 002 @ 12205694 n 0000 #m 12816753 n 0000 | annual of western United States with coiled spikes of yellow-orange coiled flowers -12817129 20 n 02 large-flowered_fiddleneck 0 Amsinckia_grandiflora 0 002 @ 12205694 n 0000 #m 12816753 n 0000 | annual of the western United States having large coiled flower spikes; a threatened species -12817335 20 n 01 genus_Anchusa 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12817464 n 0000 | rough and hairy Old World herbs -12817464 20 n 01 anchusa 0 005 @ 12205694 n 0000 #m 12817335 n 0000 ~ 12817694 n 0000 ~ 12817855 n 0000 ~ 12818004 n 0000 | any of various Old World herbs of the genus Anchusa having one-sided clusters of trumpet-shaped flowers -12817694 20 n 03 bugloss 1 alkanet 0 Anchusa_officinalis 0 001 @ 12817464 n 0000 | perennial or biennial herb cultivated for its delicate usually blue flowers -12817855 20 n 02 cape_forget-me-not 1 Anchusa_capensis 0 001 @ 12817464 n 0000 | anchusa of southern Africa having blue flowers with white throats -12818004 20 n 02 cape_forget-me-not 2 Anchusa_riparia 0 001 @ 12817464 n 0000 | anchusa of southern Africa having blue to red-purple flowers -12818147 20 n 02 Cordia 0 genus_Cordia 0 004 @ 11567411 n 0000 #m 12815925 n 0000 %m 12818346 n 0000 %m 12818601 n 0000 | tropical deciduous or evergreen trees or shrubs of the family Boraginaceae -12818346 20 n 06 Spanish_elm 2 Equador_laurel 0 salmwood 0 cypre 0 princewood 2 Cordia_alliodora 0 002 @ 13109733 n 0000 #m 12818147 n 0000 | large tropical American tree of the genus Cordia grown for its abundant creamy white flowers and valuable wood -12818601 20 n 03 princewood 1 Spanish_elm 1 Cordia_gerascanthus 0 002 @ 13104059 n 0000 #m 12818147 n 0000 | tropical American timber tree -12818742 20 n 02 Cynoglossum 0 genus_Cynoglossum 0 005 @ 11744859 n 0000 #m 12815925 n 0000 %m 12818966 n 0000 %m 12819141 n 0000 %m 12819354 n 0000 | a large genus of tall rough herbs belonging to the family Boraginaceae -12818966 20 n 02 Chinese_forget-me-not 0 Cynoglossum_amabile 0 002 @ 12205694 n 0000 #m 12818742 n 0000 | biennial east Asian herb grown for its usually bright blue flowers -12819141 20 n 02 hound's-tongue 1 Cynoglossum_officinale 0 002 @ 12205694 n 0000 #m 12818742 n 0000 | biennial shrub of Europe and western Asia having coarse tongue-shaped leaves and dark reddish-purple flowers -12819354 20 n 02 hound's-tongue 2 Cynoglossum_virginaticum 0 002 @ 12205694 n 0000 #m 12818742 n 0000 | perennial shrub of North America having coarse tongue-shaped leaves and pale-blue to purple flowers -12819560 20 n 02 Echium 0 genus_Echium 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12819728 n 0000 | a genus of bristly herbs and shrubs of the family Boraginaceae -12819728 20 n 05 blueweed 0 blue_devil 0 blue_thistle 0 viper's_bugloss 0 Echium_vulgare 0 002 @ 12205694 n 0000 #m 12819560 n 0000 | a coarse prickly European weed with spikes of blue flowers; naturalized in United States -12819953 20 n 04 Hackelia 0 genus_Hackelia 0 Lappula 0 genus_Lappula 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12820113 n 0000 | stickweed; beggar's lice -12820113 20 n 02 beggar's_lice 0 beggar_lice 0 002 @ 12820292 n 0000 #m 12819953 n 0000 | Eurasian and North American plants having small prickly nutlets that stick to clothing -12820292 20 n 01 stickweed 0 002 @ 12205694 n 0000 ~ 12820113 n 0000 | any of several herbaceous plants having seeds that cling to clothing -12820434 20 n 02 Lithospermum 0 genus_Lithospermum 0 005 @ 11744859 n 0000 #m 12815925 n 0000 %m 12820669 n 0000 %m 12820853 n 0000 %m 12821048 n 0000 | annual or perennial herbaceous or shrubby plants; cosmopolitan except Australia -12820669 20 n 02 gromwell 0 Lithospermum_officinale 0 002 @ 12205694 n 0000 #m 12820434 n 0000 | European perennial branching plant; occurs in hedgerows and at the edge of woodlands -12820853 20 n 02 puccoon 2 Lithospermum_caroliniense 0 002 @ 12205694 n 0000 #m 12820434 n 0000 | perennial plant of eastern North America having hairy foliage yielding a red or yellow pigment -12821048 20 n 03 hoary_puccoon 0 Indian_paint 1 Lithospermum_canescens 0 002 @ 12205694 n 0000 #m 12820434 n 0000 | perennial North American plant with greyish hairy foliage yielding a red or yellow pigment -12821257 20 n 02 Mertensia 0 genus_Mertensia 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12821505 n 0000 | a genus of herbs belonging to the family Boraginaceae that grow in temperate regions and have blue or purple flowers shaped like funnels -12821505 20 n 03 Virginia_bluebell 0 Virginia_cowslip 0 Mertensia_virginica 0 002 @ 12205694 n 0000 #m 12821257 n 0000 | smooth erect herb of eastern North America having entire leaves and showy blue flowers that are pink in bud -12821736 20 n 02 Myosotis 0 genus_Myosotis 0 004 @ 11744859 n 0000 #m 12815925 n 0000 %m 12821895 n 0000 %m 12822115 n 0000 | forget-me-nots; scorpion grass -12821895 20 n 02 garden_forget-me-not 0 Myosotis_sylvatica 0 002 @ 12205694 n 0000 #m 12821736 n 0000 | small biennial to perennial herb of Europe, northern Africa and western Asia having blue, purple or white flowers -12822115 20 n 03 forget-me-not 0 mouse_ear 2 Myosotis_scorpiodes 0 002 @ 12205694 n 0000 #m 12821736 n 0000 | small perennial herb having bright blue or white flowers -12822284 20 n 02 Onosmodium 0 genus_Onosmodium 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12822466 n 0000 | a genus of North American perennial herbs of the family Boraginaceae -12822466 20 n 01 false_gromwell 0 002 @ 12205694 n 0000 #m 12822284 n 0000 | any of several North American perennial herbs with hairy foliage and small yellowish or greenish flowers -12822650 20 n 02 Symphytum 0 genus_Symphytum 0 003 @ 11744859 n 0000 #m 12815925 n 0000 %m 12822769 n 0000 | comfrey -12822769 20 n 02 comfrey 0 cumfrey 0 003 @ 12205694 n 0000 #m 12822650 n 0000 ~ 12822955 n 0000 | perennial herbs of Europe and Iran; make rapidly growing groundcover for shaded areas -12822955 20 n 03 common_comfrey 0 boneset 2 Symphytum_officinale 0 002 @ 12822769 n 0000 %p 07817160 n 0000 | European herb having small white, pink or purple flowers; naturalized as a weed in North America -12823164 20 n 03 Convolvulaceae 0 family_Convolvulaceae 0 morning-glory_family 0 009 @ 11562747 n 0000 #m 12808227 n 0000 %m 12823531 n 0000 %m 12823859 n 0000 %m 12824581 n 0000 %m 12824909 n 0000 %m 12825301 n 0000 %m 12825949 n 0000 %m 12826395 n 0000 | morning glory; bindweed; sweet potato; plants having trumpet-shaped flowers and a climbing or twining habit -12823531 20 n 01 genus_Convolvulus 0 004 @ 11567411 n 0000 #m 12823164 n 0000 %m 12823717 n 0000 %m 12824053 n 0000 | genus of mostly climbing or scrambling herbs and shrubs: bindweed -12823717 20 n 01 convolvulus 0 003 @ 13100677 n 0000 #m 12823531 n 0000 ~ 12824289 n 0000 | any of numerous plants of the genus Convolvulus -12823859 20 n 01 bindweed 0 004 @ 13100677 n 0000 #m 12823164 n 0000 ~ 12824053 n 0000 ~ 12825061 n 0000 | any of several vines of the genera Convolvulus and Calystegia having a twining habit -12824053 20 n 03 field_bindweed 0 wild_morning-glory 1 Convolvulus_arvensis 0 002 @ 12823859 n 0000 #m 12823531 n 0000 | weakly climbing European perennial with white or pink flowers; naturalized in North America and an invasive weed -12824289 20 n 02 scammony 1 Convolvulus_scammonia 0 001 @ 12823717 n 0000 | twining plant of Asia Minor having cream-colored to purple flowers and long thick roots yielding a cathartic resin -12824482 20 n 01 scammony 2 001 @ 14894481 n 0000 | resin from the root of Convolvulus scammonia -12824581 20 n 02 Argyreia 0 genus_Argyreia 0 003 @ 11567411 n 0000 #m 12823164 n 0000 %m 12824735 n 0000 | woody climbers of tropical Asia to Australia -12824735 20 n 01 silverweed 0 002 @ 13100677 n 0000 #m 12824581 n 0000 | any of various twining shrubs of the genus Argyreia having silvery leaves and showy purple flowers -12824909 20 n 02 Calystegia 0 genus_Calystegia 0 003 @ 11567411 n 0000 #m 12823164 n 0000 %m 12825061 n 0000 | climbing or scrambling herbs: bindweed -12825061 20 n 04 hedge_bindweed 0 wild_morning-glory 2 Calystegia_sepium 0 Convolvulus_sepium 0 002 @ 12823859 n 0000 #m 12824909 n 0000 | common Eurasian and American wild climber with pink flowers; sometimes placed in genus Convolvulus -12825301 20 n 02 Cuscuta 0 genus_Cuscuta 0 004 @ 11567411 n 0000 #m 12823164 n 0000 %m 12825497 n 0000 %m 12825721 n 0000 | genus of twining leafless parasitic herbs lacking chlorophyll: dodder -12825497 20 n 01 dodder 0 003 @ 13100677 n 0000 #m 12825301 n 0000 ~ 12825721 n 0000 | a leafless annual parasitic vine of the genus Cuscuta having whitish or yellow filamentous stems; obtain nourishment through haustoria -12825721 20 n 02 love_vine 0 Cuscuta_gronovii 0 002 @ 12825497 n 0000 #m 12825301 n 0000 | leafless parasitic vine with dense clusters of small white bell-shaped flowers on orange-yellow stems that twine around clover or flax -12825949 20 n 01 genus_Dichondra 0 003 @ 11567411 n 0000 #m 12823164 n 0000 %m 12826143 n 0000 | genus of chiefly tropical prostrate perennial herbs with creeping stems that root at the nodes -12826143 20 n 02 dichondra 0 Dichondra_micrantha 0 002 @ 13100677 n 0000 #m 12825949 n 0000 | a creeping perennial herb with hairy stems and orbicular to reniform leaves and small white to greenish flowers; used as a grass substitute in warm regions -12826395 20 n 02 Ipomoea 0 genus_Ipomoea 0 003 @ 11567411 n 0000 #m 12823164 n 0000 %m 12826516 n 0000 | morning glory -12826516 20 n 01 morning_glory 0 014 @ 13100677 n 0000 #m 12826395 n 0000 ~ 12826895 n 0000 ~ 12827068 n 0000 ~ 12827270 n 0000 ~ 12827537 n 0000 ~ 12827684 n 0000 ~ 12827907 n 0000 ~ 12828220 n 0000 ~ 12828379 n 0000 ~ 12828520 n 0000 ~ 12828628 n 0000 ~ 12828791 n 0000 ~ 12828977 n 0000 | any of various twining vines having funnel-shaped flowers that close late in the day -12826895 20 n 02 common_morning_glory 1 Ipomoea_purpurea 0 001 @ 12826516 n 0000 | pantropical annual climbing herb with funnel-shaped blue, purple, pink or white flowers -12827068 20 n 02 common_morning_glory 2 Ipomoea_tricolor 0 001 @ 12826516 n 0000 | annual or perennial climbing herb of Central America having sky-blue flowers; most commonly cultivated morning glory -12827270 20 n 05 cypress_vine 0 star-glory 0 Indian_pink 1 Ipomoea_quamoclit 0 Quamoclit_pennata 0 001 @ 12826516 n 0000 | tropical American annual climber having red (sometimes white) flowers and finely dissected leaves; naturalized in United States and elsewhere -12827537 20 n 03 moonflower 0 belle_de_nuit 0 Ipomoea_alba 0 001 @ 12826516 n 0000 | pantropical climber having white fragrant nocturnal flowers -12827684 20 n 03 sweet_potato 0 sweet_potato_vine 0 Ipomoea_batatas 0 002 @ 12826516 n 0000 %p 07712063 n 0000 | pantropical vine widely cultivated in several varieties for its large sweet tuberous root with orange flesh -12827907 20 n 07 wild_potato_vine 0 wild_sweet_potato_vine 0 man-of-the-earth 1 manroot 0 scammonyroot 0 Ipomoea_panurata 0 Ipomoea_fastigiata 0 001 @ 12826516 n 0000 | tropical American prostrate or climbing herbaceous perennial having an enormous starchy root; sometimes held to be source of the sweet potato -12828220 20 n 03 red_morning-glory 0 star_ipomoea 0 Ipomoea_coccinea 0 001 @ 12826516 n 0000 | annual herb having scarlet flowers; the eastern United States -12828379 20 n 02 man-of-the-earth 2 Ipomoea_leptophylla 0 001 @ 12826516 n 0000 | a morning glory with long roots of western United States -12828520 20 n 02 scammony 3 Ipomoea_orizabensis 0 001 @ 12826516 n 0000 | tropical American morning glory -12828628 20 n 03 railroad_vine 0 beach_morning_glory 0 Ipomoea_pes-caprae 0 001 @ 12826516 n 0000 | a prostrate perennial of coastal sand dunes Florida to Texas -12828791 20 n 02 Japanese_morning_glory 0 Ipomoea_nil 0 001 @ 12826516 n 0000 | annual Old World tropical climbing herb distinguished by wide color range and frilled or double flowers -12828977 20 n 02 imperial_Japanese_morning_glory 0 Ipomoea_imperialis 0 001 @ 12826516 n 0000 | hybrid from Ipomoea nil -12829099 20 n 03 Gesneriaceae 0 family_Gesneriaceae 0 gesneria_family 0 015 @ 11566230 n 0000 #m 12808227 n 0000 %m 12829582 n 0000 %m 12829809 n 0000 %m 12830080 n 0000 %m 12830404 n 0000 %m 12830974 n 0000 %m 12831389 n 0000 %m 12831776 n 0000 %m 12832140 n 0000 %m 12832315 n 0000 %m 12832690 n 0000 %m 12832976 n 0000 %m 12833341 n 0000 %m 12833793 n 0000 | large family of tropical herbs or shrubs or lianas; in some classification systems placed in the order Scrophulariales -12829582 20 n 01 gesneriad 0 002 @ 13103136 n 0000 #m 12829099 n 0000 | any of numerous tropical or subtropical small shrubs or treelets or epiphytic vines of the family Gesneriaceae: African violet; Cape primroses; gloxinia -12829809 20 n 01 genus_Gesneria 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12829975 n 0000 | large genus of tropical American herbs having showy tubular flowers -12829975 20 n 01 gesneria 0 002 @ 12205694 n 0000 #m 12829809 n 0000 | any plant of the genus Gesneria -12830080 20 n 01 genus_Achimenes 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12830222 n 0000 | genus of tropical perennial American herbs -12830222 20 n 02 achimenes 0 hot_water_plant 0 002 @ 11669921 n 0000 #m 12830080 n 0000 | any plant of the genus Achimenes having showy bell-shaped flowers that resemble gloxinias -12830404 20 n 01 genus_Aeschynanthus 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12830568 n 0000 | large genus of East Indian ornamental woody epiphytic plants -12830568 20 n 01 aeschynanthus 0 003 @ 13122985 n 0000 #m 12830404 n 0000 ~ 12830789 n 0000 | a plant of the genus Aeschynanthus having somewhat red or orange flowers and seeds having distinctive hairs at base and apex -12830789 20 n 02 lipstick_plant 0 Aeschynanthus_radicans 0 001 @ 12830568 n 0000 | epiphyte or creeping on rocks; Malaysian plant having somewhat fleshy leaves and bright red flowers -12830974 20 n 02 Alsobia 0 genus_Alsobia 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12831141 n 0000 | tropical American herbs sometimes included in genus Episcia -12831141 20 n 03 lace-flower_vine 0 Alsobia_dianthiflora 0 Episcia_dianthiflora 0 002 @ 11669921 n 0000 #m 12830974 n 0000 | low-growing creeping perennial of Central America having deeply fringed white flowers; sometimes placed in genus Episcia -12831389 20 n 01 genus_Columnea 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12831535 n 0000 | genus of tropical American subshrubs and lianas -12831535 20 n 01 columnea 0 002 @ 13112664 n 0000 #m 12831389 n 0000 | tropical plant having thick hairy somewhat toothed leaves and solitary or clustered yellow to scarlet flowers; many cultivated for their flowers and ornamental foliage -12831776 20 n 01 genus_Episcia 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12831932 n 0000 | genus of tropical American herbs having soft hairy foliage -12831932 20 n 01 episcia 0 002 @ 13083023 n 0000 #m 12831776 n 0000 | any plant of the genus Episcia; usually creeping and stoloniferous and of cascading habit; grown for their colorful foliage and flowers -12832140 20 n 01 genus_Gloxinia 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12832538 n 0000 | small genus of tropical American herbs with leafy stems and axillary flowers -12832315 20 n 01 gloxinia 0 004 @ 13083023 n 0000 #m 12829099 n 0000 ~ 12832538 n 0000 ~ 12833526 n 0000 | any of several plants of the genera Gloxinia or Sinningia (greenhouse gloxinias) having showy bell-shaped flowers -12832538 20 n 02 Canterbury_bell 1 Gloxinia_perennis 0 002 @ 12832315 n 0000 #m 12832140 n 0000 | herb of Colombia to Peru having pale purple flowers -12832690 20 n 01 genus_Kohleria 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12832822 n 0000 | genus of tropical American shrubs -12832822 20 n 01 kohleria 0 002 @ 13083023 n 0000 #m 12832690 n 0000 | shrubby herb cultivated for their soft velvety foliage and showy scarlet flowers -12832976 20 n 02 Saintpaulia 0 genus_Saintpaulia 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12833149 n 0000 | east African herb with nodding flowers; widely cultivated -12833149 20 n 02 African_violet 0 Saintpaulia_ionantha 0 002 @ 11669921 n 0000 #m 12832976 n 0000 | tropical African plant cultivated as a houseplant for its violet or white or pink flowers -12833341 20 n 02 Sinningia 0 genus_Sinningia 0 003 @ 11579418 n 0000 #m 12829099 n 0000 %m 12833526 n 0000 | genus of perennial tuberous herbs and shrubs of Central and South America -12833526 20 n 03 florist's_gloxinia 0 Sinningia_speciosa 0 Gloxinia_spesiosa 0 002 @ 12832315 n 0000 #m 12833341 n 0000 | South American herb cultivated in many varieties as a houseplant for its large handsome leaves and large variously colored bell-shaped flowers -12833793 20 n 01 genus_Streptocarpus 0 004 @ 11579418 n 0000 #m 12829099 n 0000 %m 12833985 n 0000 %m 12834190 n 0000 | large genus of usually stemless African or Asian herbs: Cape primrose -12833985 20 n 01 streptocarpus 0 003 @ 11669921 n 0000 #m 12833793 n 0000 ~ 12834190 n 0000 | any of various plants of the genus Streptocarpus having leaves in a basal rosette and flowers like primroses -12834190 20 n 01 Cape_primrose 0 002 @ 12833985 n 0000 #m 12833793 n 0000 | any of various African plants of the genus Streptocarpus widely cultivated especially as houseplants for their showy blue or purple flowers -12834408 20 n 03 Hydrophyllaceae 0 family_Hydrophyllaceae 0 waterleaf_family 0 008 @ 11566230 n 0000 #m 12808227 n 0000 %m 12834671 n 0000 %m 12835196 n 0000 %m 12835578 n 0000 %m 12836033 n 0000 %m 12836663 n 0000 %m 12837643 n 0000 | perennial woodland herbs -12834671 20 n 02 Hydrophyllum 0 genus_Hydrophyllum 0 003 @ 11579418 n 0000 #m 12834408 n 0000 %m 12834798 n 0000 | waterleaf -12834798 20 n 01 waterleaf 0 003 @ 12205694 n 0000 #m 12834671 n 0000 ~ 12834938 n 0000 | any of several plants of the genus Hydrophyllum -12834938 20 n 06 Virginia_waterleaf 0 Shawnee_salad 0 shawny 0 Indian_salad 0 John's_cabbage 0 Hydrophyllum_virginianum 0 001 @ 12834798 n 0000 | showy perennial herb with white flowers; leaves sometimes used as edible greens in southeastern United States -12835196 20 n 02 Emmanthe 0 genus_Emmanthe 0 003 @ 11579418 n 0000 #m 12834408 n 0000 %m 12835331 n 0000 | one species: yellow bells -12835331 20 n 04 yellow_bells 0 California_yellow_bells 0 whispering_bells 0 Emmanthe_penduliflora 0 002 @ 12205694 n 0000 #m 12835196 n 0000 | viscid herb of arid or desert habitats of southwestern United States having pendulous yellow flowers -12835578 20 n 02 Eriodictyon 0 genus_Eriodictyon 0 003 @ 11579418 n 0000 #m 12834408 n 0000 %m 12835766 n 0000 | small genus of evergreen shrubs of southwestern United States and Mexico -12835766 20 n 02 yerba_santa 0 Eriodictyon_californicum 0 002 @ 13112664 n 0000 #m 12835578 n 0000 | viscid evergreen shrub of western United States with white to deep lilac flowers; the sticky aromatic leaves are used in treating bronchial and pulmonary illnesses -12836033 20 n 01 genus_Nemophila 0 004 @ 11579418 n 0000 #m 12834408 n 0000 %m 12836212 n 0000 %m 12836337 n 0000 | genus of ornamental chiefly California herbs: baby blue-eyes -12836212 20 n 01 nemophila 0 003 @ 12205694 n 0000 #m 12836033 n 0000 ~ 12836508 n 0000 | any plant of the genus Nemophila -12836337 20 n 02 baby_blue-eyes 0 Nemophila_menziesii 0 002 @ 12205694 n 0000 #m 12836033 n 0000 | delicate California annual having blue flowers marked with dark spots -12836508 20 n 02 five-spot 0 Nemophila_maculata 0 001 @ 12836212 n 0000 | California annual having white flowers with a deep purple blotch on each petal -12836663 20 n 01 genus_Phacelia 0 003 @ 11579418 n 0000 #m 12834408 n 0000 %m 12836862 n 0000 | American herbs with usually pinnatifid leaves and blue or purple or white flowers in scorpioid cymes -12836862 20 n 03 scorpionweed 0 scorpion_weed 0 phacelia 0 005 @ 11669921 n 0000 #m 12836663 n 0000 ~ 12837052 n 0000 ~ 12837259 n 0000 ~ 12837466 n 0000 | any plant of the genus Phacelia -12837052 20 n 02 California_bluebell 1 Phacelia_campanularia 0 001 @ 12836862 n 0000 | annual of southern California with intricately branched stems and lax cymes of aromatic deep blue bell-shaped flowers -12837259 20 n 04 California_bluebell 2 whitlavia 0 Phacelia_minor 0 Phacelia_whitlavia 0 001 @ 12836862 n 0000 | desert plant of southern California with blue or violet tubular flowers in terminal racemes -12837466 20 n 02 fiddleneck 0 Phacelia_tanacetifolia 0 001 @ 12836862 n 0000 | hairy annual of California to Mexico with crowded cymes of small blue to lilac or mauve flowers -12837643 20 n 02 Pholistoma 0 genus_Pholistoma 0 003 @ 11579418 n 0000 #m 12834408 n 0000 %m 12837803 n 0000 | straggling herbs of southwestern United States -12837803 20 n 03 fiesta_flower 0 Pholistoma_auritum 0 Nemophila_aurita 0 002 @ 12205694 n 0000 #m 12837643 n 0000 | straggling California annual herb with deep purple or violet flowers; sometimes placed in genus Nemophila -12838027 20 n 05 Labiatae 0 family_Labiatae 0 Lamiaceae 0 family_Lamiaceae 0 mint_family 0 053 @ 11566230 n 0000 #m 12808227 n 0000 ~ 12839319 n 0000 %m 12839409 n 0000 %m 12839839 n 0000 %m 12840640 n 0000 %m 12841686 n 0000 %m 12842105 n 0000 %m 12842765 n 0000 %m 12843844 n 0000 %m 12844220 n 0000 %m 12844697 n 0000 %m 12845732 n 0000 %m 12846143 n 0000 %m 12846546 n 0000 %m 12846869 n 0000 %m 12847254 n 0000 %m 12847749 n 0000 %m 12848343 n 0000 %m 12848870 n 0000 %m 12849597 n 0000 %m 12850718 n 0000 %m 12851304 n 0000 %m 12851673 n 0000 %m 12852049 n 0000 %m 12852726 n 0000 %m 12852930 n 0000 %m 12853901 n 0000 %m 12854443 n 0000 %m 12854925 n 0000 %m 12857024 n 0000 %m 12857594 n 0000 %m 12858019 n 0000 %m 12859488 n 0000 %m 12859873 n 0000 %m 12860254 n 0000 %m 12860842 n 0000 %m 12861139 n 0000 %m 12861751 n 0000 %m 12862312 n 0000 %m 12862648 n 0000 %m 12863026 n 0000 %m 12863458 n 0000 %m 12864038 n 0000 %m 12864363 n 0000 %m 12866824 n 0000 %m 12867679 n 0000 %m 12868248 n 0000 %m 12868418 n 0000 %m 12868634 n 0000 %m 12869248 n 0000 %m 12870392 n 0000 %m 12871074 n 0000 | a large family of aromatic herbs and shrubs having flowers resembling the lips of a mouth and four-lobed ovaries yielding four one-seeded nutlets and including mint; thyme; sage; rosemary -12839319 20 n 01 mint 1 001 @ 12838027 n 0000 | any member of the mint family of plants -12839409 20 n 02 Acinos 0 genus_Acinos 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12839574 n 0000 | plants closely allied to the genera Satureja and Calamintha -12839574 20 n 05 basil_thyme 0 basil_balm 2 mother_of_thyme 0 Acinos_arvensis 0 Satureja_acinos 0 002 @ 12205694 n 0000 #m 12839409 n 0000 | fragrant European mint having clusters of small violet-and-white flowers; naturalized especially in eastern North America -12839839 20 n 02 Agastache 0 genus_Agastache 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12839979 n 0000 | giant hyssop; Mexican hyssop -12839979 20 n 01 giant_hyssop 0 005 @ 12205694 n 0000 #m 12839839 n 0000 ~ 12840168 n 0000 ~ 12840362 n 0000 ~ 12840502 n 0000 | any of a number of aromatic plants of the genus Agastache -12840168 20 n 02 yellow_giant_hyssop 0 Agastache_nepetoides 0 001 @ 12839979 n 0000 | erect perennial with stout stems and yellow-green flowers; southern Canada and southeastern United States -12840362 20 n 02 anise_hyssop 0 Agastache_foeniculum 0 001 @ 12839979 n 0000 | much-branched North American herb with an odor like fennel -12840502 20 n 02 Mexican_hyssop 0 Agastache_mexicana 0 001 @ 12839979 n 0000 | erect perennial of Mexico having rose to crimson flowers -12840640 20 n 02 Ajuga 0 genus_Ajuga 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12840749 n 0000 | bugle -12840749 20 n 02 bugle 0 bugleweed 1 006 @ 12205694 n 0000 #m 12840640 n 0000 ~ 12841007 n 0000 ~ 12841193 n 0000 ~ 12841354 n 0000 ~ 12841472 n 0000 | any of various low-growing annual or perennial evergreen herbs native to Eurasia; used for ground cover -12841007 20 n 02 creeping_bugle 0 Ajuga_reptans 0 001 @ 12840749 n 0000 | low rhizomatous European carpeting plant having spikes of blue flowers; naturalized in parts of United States -12841193 20 n 03 erect_bugle 0 blue_bugle 0 Ajuga_genevensis 0 001 @ 12840749 n 0000 | upright rhizomatous perennial with bright blue flowers; southern Europe -12841354 20 n 02 pyramid_bugle 0 Ajuga_pyramidalis 0 001 @ 12840749 n 0000 | European evergreen carpeting perennial -12841472 20 n 03 ground_pine 2 yellow_bugle 0 Ajuga_chamaepitys 0 001 @ 12840749 n 0000 | low-growing annual with yellow flowers dotted red; faintly aromatic of pine resin; Europe, British Isles and North Africa -12841686 20 n 02 Ballota 0 genus_Ballota 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12841872 n 0000 | perennial herbs or subshrubs of especially Mediterranean area: black horehound -12841872 20 n 05 black_horehound 0 black_archangel 0 fetid_horehound 0 stinking_horehound 0 Ballota_nigra 0 002 @ 12205694 n 0000 #m 12841686 n 0000 | ill-smelling European herb with rugose leaves and whorls of dark purple flowers -12842105 20 n 02 Blephilia 0 genus_Blephilia 0 005 @ 11579418 n 0000 #m 12838027 n 0000 %m 12842302 n 0000 %m 12842519 n 0000 %m 12842642 n 0000 | small genus of North American herbs: wood mints -12842302 20 n 01 wood_mint 0 004 @ 12205694 n 0000 #m 12842105 n 0000 ~ 12842519 n 0000 ~ 12842642 n 0000 | American herb of genus Blephilia with more or less hairy leaves and clusters of purplish or bluish flowers -12842519 20 n 02 hairy_wood_mint 0 Blephilia_hirsuta 0 002 @ 12842302 n 0000 #m 12842105 n 0000 | a variety of wood mint -12842642 20 n 02 downy_wood_mint 0 Blephilia_celiata 0 002 @ 12842302 n 0000 #m 12842105 n 0000 | a variety of wood mint -12842765 20 n 02 Calamintha 0 genus_Calamintha 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12842887 n 0000 | calamint -12842887 20 n 01 calamint 0 005 @ 12205694 n 0000 #m 12842765 n 0000 ~ 12843144 n 0000 ~ 12843316 n 0000 ~ 12843557 n 0000 | perennial aromatic herbs growing in hedgerows or scrub or open woodlands from western Europe to central Asia and in North America -12843144 20 n 03 common_calamint 0 Calamintha_sylvatica 0 Satureja_calamintha_officinalis 0 001 @ 12842887 n 0000 | mint-scented perennial of central and southern Europe -12843316 20 n 04 large-flowered_calamint 0 Calamintha_grandiflora 0 Clinopodium_grandiflorum 0 Satureja_grandiflora 0 001 @ 12842887 n 0000 | aromatic herb with large pink flowers; southern and southeastern Europe; Anatolia; northern Iran -12843557 20 n 06 lesser_calamint 0 field_balm 1 Calamintha_nepeta 0 Calamintha_nepeta_glantulosa 0 Satureja_nepeta 0 Satureja_calamintha_glandulosa 0 001 @ 12842887 n 0000 | low-growing strongly aromatic perennial herb of southern Europe to Great Britain; naturalized in United States -12843844 20 n 02 Clinopodium 0 genus_Clinopodium 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12843970 n 0000 | wild basil -12843970 20 n 04 wild_basil 0 cushion_calamint 0 Clinopodium_vulgare 0 Satureja_vulgaris 0 002 @ 12205694 n 0000 #m 12843844 n 0000 | aromatic herb having heads of small pink or whitish flowers; widely distributed in United States, Europe and Asia -12844220 20 n 02 Collinsonia 0 genus_Collinsonia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12844409 n 0000 | small genus of perennial erect or spreading aromatic herbs; United States -12844409 20 n 07 horse_balm 0 horseweed 2 stoneroot 0 stone-root 0 richweed 2 stone_root 0 Collinsonia_canadensis 0 002 @ 12205694 n 0000 #m 12844220 n 0000 | erect perennial strong-scented with serrate pointed leaves and a loose panicle of yellowish flowers; the eastern United States -12844697 20 n 01 genus_Coleus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12844939 n 0000 | genus of Old World tropical plants cultivated for their variegated leaves; various plants sometimes placed in genera Plectranthus or Solenostemon -12844939 20 n 02 coleus 0 flame_nettle 0 004 @ 12205694 n 0000 #m 12844697 n 0000 ~ 12845187 n 0000 ~ 12845413 n 0000 | any of various Old World tropical plants of the genus Coleus having multicolored decorative leaves and spikes of blue flowers -12845187 20 n 04 country_borage 0 Coleus_aromaticus 0 Coleus_amboinicus 0 Plectranthus_amboinicus 0 001 @ 12844939 n 0000 | an aromatic fleshy herb of India and Ceylon to South Africa; sometimes placed in genus Plectranthus -12845413 20 n 05 painted_nettle 0 Joseph's_coat 1 Coleus_blumei 0 Solenostemon_blumei 0 Solenostemon_scutellarioides 0 001 @ 12844939 n 0000 | perennial aromatic herb of southeastern Asia having large usually bright-colored or blotched leaves and spikes of blue-violet flowers; sometimes placed in genus Solenostemon -12845732 20 n 02 Conradina 0 genus_Conradina 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12845908 n 0000 | small genus of low aromatic shrubs of southeastern United States -12845908 20 n 02 Apalachicola_rosemary 0 Conradina_glabra 0 002 @ 13112664 n 0000 #m 12845732 n 0000 | small shrub of Apalachicola River area in southeastern United States having highly aromatic pinkish flowers; a threatened species -12846143 20 n 02 Dracocephalum 0 genus_Dracocephalum 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12846335 n 0000 | genus of American herbs and dwarf shrubs of the mind family: dragonheads -12846335 20 n 03 dragonhead 0 dragon's_head 0 Dracocephalum_parviflorum 0 002 @ 12205694 n 0000 #m 12846143 n 0000 | American herb having sharply serrate lanceolate leaves and spikes of blue to violet flowers -12846546 20 n 01 genus_Elsholtzia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12846690 n 0000 | genus of Asiatic and African aromatic herbs -12846690 20 n 01 elsholtzia 0 002 @ 12205694 n 0000 #m 12846546 n 0000 | any of various aromatic herbs of the genus Elsholtzia having blue or purple flowers in one-sided spikes -12846869 20 n 02 Galeopsis 0 genus_Galeopsis 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12847008 n 0000 | erect annual European herbs -12847008 20 n 03 hemp_nettle 0 dead_nettle 4 Galeopsis_tetrahit 0 002 @ 12205694 n 0000 #m 12846869 n 0000 | coarse bristly Eurasian plant with white or reddish flowers and foliage resembling that of a nettle; common as a weed in United States -12847254 20 n 02 Glechoma 0 genus_Glechoma 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12847374 n 0000 | ground ivy -12847374 20 n 07 ground_ivy 0 alehoof 0 field_balm 2 gill-over-the-ground 0 runaway_robin 0 Glechoma_hederaceae 0 Nepeta_hederaceae 0 002 @ 13100677 n 0000 #m 12847254 n 0000 | trailing European aromatic plant of the mint family having rounded leaves and small purplish flowers often grown in hanging baskets; naturalized in North America; sometimes placed in genus Nepeta -12847749 20 n 02 Hedeoma 0 genus_Hedeoma 0 004 @ 11579418 n 0000 #m 12838027 n 0000 ;r 09044862 n 0000 %m 12847927 n 0000 | small genus of American herbs (American pennyroyal) -12847927 20 n 03 pennyroyal 2 American_pennyroyal 0 Hedeoma_pulegioides 0 003 @ 12205694 n 0000 #m 12847749 n 0000 %s 12848212 n 0000 | erect hairy branching American herb having purple-blue flowers; yields an essential oil used as an insect repellent and sometimes in folk medicine -12848212 20 n 02 pennyroyal_oil 2 hedeoma_oil 0 002 @ 14966667 n 0000 #s 12847927 n 0000 | aromatic oil from American pennyroyal -12848343 20 n 02 Hyssopus 0 genus_Hyssopus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12848499 n 0000 | Eurasian genus of perennial herbs or subshrubs -12848499 20 n 02 hyssop 0 Hyssopus_officinalis 0 003 @ 12205694 n 0000 #m 12848343 n 0000 %p 07816575 n 0000 | a European mint with aromatic and pungent leaves used in perfumery and as a seasoning in cookery; often cultivated as a remedy for bruises; yields hyssop oil -12848770 20 n 01 hyssop_oil 0 002 @ 14966667 n 0000 #s 07908923 n 0000 | used chiefly in liqueurs -12848870 20 n 02 Lamium 0 genus_Lamium 0 005 @ 11579418 n 0000 #m 12838027 n 0000 %m 12849061 n 0000 %m 12849279 n 0000 %m 12849416 n 0000 | genus of Old World herbs: dead nettles; henbits -12849061 20 n 01 dead_nettle 1 004 @ 12205694 n 0000 #m 12848870 n 0000 ~ 12849279 n 0000 ~ 12849416 n 0000 | any of various plants of the genus Lamium having clusters of small usually purplish flowers with two lips -12849279 20 n 02 white_dead_nettle 0 Lamium_album 0 002 @ 12849061 n 0000 #m 12848870 n 0000 | European dead nettle with white flowers -12849416 20 n 02 henbit 0 Lamium_amplexicaule 0 002 @ 12849061 n 0000 #m 12848870 n 0000 | Eurasian plant having toothed leaves and small two-lipped white or purplish-red flowers -12849597 20 n 02 Lavandula 0 genus_Lavandula 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12849717 n 0000 | lavender -12849717 20 n 01 lavender 0 005 @ 13112664 n 0000 #m 12849597 n 0000 ~ 12849952 n 0000 ~ 12850168 n 0000 ~ 12850336 n 0000 | any of various Old World aromatic shrubs or subshrubs with usually mauve or blue flowers; widely cultivated -12849952 20 n 03 English_lavender 0 Lavandula_angustifolia 0 Lavandula_officinalis 0 001 @ 12849717 n 0000 | aromatic Mediterranean shrub widely cultivated for its lilac flowers which are dried and used in sachets -12850168 20 n 02 French_lavender 1 Lavandula_stoechas 0 001 @ 12849717 n 0000 | shrubby greyish lavender of southwestern Europe having usually reddish-purple flowers -12850336 20 n 03 spike_lavender 0 French_lavender 2 Lavandula_latifolia 0 002 @ 12849717 n 0000 %s 12850531 n 0000 | Mediterranean plant with pale purple flowers that yields spike lavender oil -12850531 20 n 02 spike_lavender_oil 0 spike_oil 0 002 @ 14966667 n 0000 #s 12850336 n 0000 | pale yellow essential oil obtained from spike lavender used in scenting soaps and cosmetics -12850718 20 n 02 Leonotis 0 genus_Leonotis 0 004 @ 11579418 n 0000 #m 12838027 n 0000 %m 12850906 n 0000 %m 12851094 n 0000 | small genus of tropical herbs and subshrubs of South Africa -12850906 20 n 05 dagga 0 Cape_dagga 0 red_dagga 0 wilde_dagga 0 Leonotis_leonurus 0 002 @ 12205694 n 0000 #m 12850718 n 0000 | relatively nontoxic South African herb smoked like tobacco -12851094 20 n 03 lion's-ear 0 Leonotis_nepetaefolia 0 Leonotis_nepetifolia 0 002 @ 12205694 n 0000 #m 12850718 n 0000 | pantropical herb having whorls of striking lipped flowers; naturalized in United States -12851304 20 n 02 Leonurus 0 genus_Leonurus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12851469 n 0000 | genus of stout Old World herbs having flowers in whorls -12851469 20 n 02 motherwort 0 Leonurus_cardiaca 0 002 @ 12205694 n 0000 #m 12851304 n 0000 | bitter Old World herb of hedgerows and woodland margins having toothed leaves and white or pale pink flowers -12851673 20 n 04 Lepechinia 0 genus_Lepechinia 0 Sphacele 0 genus_Sphacele 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12851860 n 0000 | a dicotyledonous genus of the family Labiatae -12851860 20 n 03 pitcher_sage 1 Lepechinia_calycina 0 Sphacele_calycina 0 002 @ 13112664 n 0000 #m 12851673 n 0000 | California plant with woolly stems and leaves and large white flowers -12852049 20 n 02 Lycopus 0 genus_Lycopus 0 005 @ 11579418 n 0000 #m 12838027 n 0000 %m 12852234 n 0000 %m 12852428 n 0000 %m 12852570 n 0000 | small genus of herbs of the mint family -12852234 20 n 02 bugleweed 2 Lycopus_virginicus 0 002 @ 12205694 n 0000 #m 12852049 n 0000 | a mildly narcotic and astringent aromatic herb having small whitish flowers; eastern United States -12852428 20 n 02 water_horehound 0 Lycopus_americanus 0 002 @ 12205694 n 0000 #m 12852049 n 0000 | aromatic perennial herb of United States -12852570 20 n 03 gipsywort 0 gypsywort 0 Lycopus_europaeus 0 002 @ 12205694 n 0000 #m 12852049 n 0000 | hairy Eurasian herb with two-lipped white flowers -12852726 20 n 01 genus_Origanum 0 006 @ 11579418 n 0000 #m 12838027 n 0000 %m 12853080 n 0000 %m 12853287 n 0000 %m 12853482 n 0000 %m 12853706 n 0000 | a genus of aromatic mints of the family Labiatae -12852930 20 n 02 Majorana 0 genus_Majorana 0 002 @ 11579418 n 0000 #m 12838027 n 0000 | small genus of herbs usually included in the genus Origanum -12853080 20 n 01 origanum 0 005 @ 12205694 n 0000 #m 12852726 n 0000 ~ 12853287 n 0000 ~ 12853482 n 0000 ~ 12853706 n 0000 | any of various fragrant aromatic herbs of the genus Origanum used as seasonings -12853287 20 n 06 oregano 0 marjoram 0 pot_marjoram 0 wild_marjoram 0 winter_sweet 2 Origanum_vulgare 0 003 @ 12853080 n 0000 #m 12852726 n 0000 %p 07818995 n 0000 | aromatic Eurasian perennial -12853482 20 n 04 sweet_marjoram 0 knotted_marjoram 0 Origanum_majorana 0 Majorana_hortensis 0 002 @ 12853080 n 0000 #m 12852726 n 0000 | aromatic European plant native to Mediterranean and Turkey; not widespread in Europe -12853706 20 n 06 dittany_of_crete 0 cretan_dittany 0 crete_dittany 0 hop_marjoram 0 winter_sweet 3 Origanum_dictamnus 0 002 @ 12853080 n 0000 #m 12852726 n 0000 | dwarf aromatic shrub of Crete -12853901 20 n 02 Marrubium 0 genus_Marrubium 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12854048 n 0000 | Old World aromatic herbs: horehound -12854048 20 n 01 horehound 0 003 @ 12205694 n 0000 #m 12853901 n 0000 ~ 12854193 n 0000 | any of various aromatic herbs of the genus Marrubium -12854193 20 n 03 common_horehound 0 white_horehound 0 Marrubium_vulgare 0 001 @ 12854048 n 0000 | European aromatic herb with hairy leaves and numerous white flowers in axillary cymes; leaves yield a bitter extract use medicinally and as flavoring -12854443 20 n 02 Melissa 0 genus_Melissa 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12854600 n 0000 | a genus of Old World mints of the family Labiatae -12854600 20 n 06 lemon_balm 0 garden_balm 0 sweet_balm 0 bee_balm 1 beebalm 1 Melissa_officinalis 0 003 @ 12205694 n 0000 #m 12854443 n 0000 %p 07818689 n 0000 | bushy perennial Old World mint having small white or yellowish flowers and fragrant lemon-flavored leaves; a garden escapee in northern Europe and North America -12854925 20 n 02 Mentha 0 genus_Mentha 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12855042 n 0000 | mint plants -12855042 20 n 01 mint 0 011 @ 12205694 n 0000 #m 12854925 n 0000 %p 07819166 n 0000 ~ 12855365 n 0000 ~ 12855494 n 0000 ~ 12855710 n 0000 ~ 12855886 n 0000 ~ 12856091 n 0000 ~ 12856287 n 0000 ~ 12856479 n 0000 ~ 12856680 n 0000 | any north temperate plant of the genus Mentha with aromatic leaves and small mauve flowers -12855365 20 n 03 corn_mint 0 field_mint 0 Mentha_arvensis 0 001 @ 12855042 n 0000 | European mint naturalized in United States -12855494 20 n 03 water-mint 0 water_mint 0 Mentha_aquatica 0 001 @ 12855042 n 0000 | a European mint that thrives in wet places; has a perfume like that of the bergamot orange; naturalized in eastern North America -12855710 20 n 04 bergamot_mint 1 lemon_mint 1 eau_de_cologne_mint 0 Mentha_citrata 0 001 @ 12855042 n 0000 | mint with leaves having perfume like that of the bergamot orange -12855886 20 n 02 horsemint 1 Mentha_longifolia 0 001 @ 12855042 n 0000 | a coarse Old World wild water mint having long leaves and spikelike clusters of flowers; naturalized in the eastern United States -12856091 20 n 02 peppermint 0 Mentha_piperita 0 002 @ 12855042 n 0000 %s 07812497 n 0000 | herb with downy leaves and small purple or white flowers that yields a pungent oil used as a flavoring -12856287 20 n 02 spearmint 0 Mentha_spicata 0 002 @ 12855042 n 0000 %s 07812662 n 0000 | common garden herb having clusters of small purplish flowers and yielding an oil used as a flavoring -12856479 20 n 04 apple_mint 0 applemint 0 Mentha_rotundifolia 0 Mentha_suaveolens 0 001 @ 12855042 n 0000 | mint with apple-scented stems of southern and western Europe; naturalized in United States -12856680 20 n 02 pennyroyal 1 Mentha_pulegium 0 002 @ 12855042 n 0000 %s 12856868 n 0000 | Eurasian perennial mint have small lilac-blue flowers and ovate leaves; yields an aromatic oil -12856868 20 n 01 pennyroyal_oil 1 002 @ 14966667 n 0000 #s 12856680 n 0000 | oil from European pennyroyal having an odor like mint; used chiefly in soaps -12857024 20 n 02 Micromeria 0 genus_Micromeria 0 004 @ 11579418 n 0000 #m 12838027 n 0000 %m 12857204 n 0000 %m 12857456 n 0000 | large genus of fragrant chiefly Old World herbs -12857204 20 n 04 yerba_buena 0 Micromeria_chamissonis 0 Micromeria_douglasii 0 Satureja_douglasii 0 002 @ 12205694 n 0000 #m 12857024 n 0000 | trailing perennial evergreen herb of northwestern United States with small white flowers; used medicinally -12857456 20 n 02 savory 2 Micromeria_juliana 0 002 @ 12205694 n 0000 #m 12857024 n 0000 | dwarf aromatic shrub of Mediterranean regions -12857594 20 n 02 Molucella 0 genus_Molucella 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12857779 n 0000 | small genus of aromatic herbs of Mediterranean regions; widely cultivated -12857779 20 n 03 molucca_balm 0 bells_of_Ireland 0 Molucella_laevis 0 002 @ 12205694 n 0000 #m 12857594 n 0000 | aromatic annual with a tall stems of small whitish flowers enclosed in a greatly enlarged saucer-shaped or bell-shaped calyx -12858019 20 n 01 genus_Monarda 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12858150 n 0000 | wild bergamot, horsemint, beebalm -12858150 20 n 02 monarda 0 wild_bergamot 0 008 @ 12205694 n 0000 #m 12858019 n 0000 ~ 12858397 n 0000 ~ 12858618 n 0000 ~ 12858871 n 0000 ~ 12858987 n 0000 ~ 12859153 n 0000 ~ 12859272 n 0000 | any of various aromatic herbs of the genus Monarda -12858397 20 n 05 bee_balm 2 beebalm 2 bergamot_mint 2 oswego_tea 0 Monarda_didyma 0 001 @ 12858150 n 0000 | perennial aromatic herb of eastern North America having variously colored tubular flowers in dense showy heads -12858618 20 n 02 horsemint 2 Monarda_punctata 0 001 @ 12858150 n 0000 | tall erect perennial or annual having lanceolate leaves and heads of purple-spotted creamy flowers; many subspecies grown from eastern to southwestern United States and in Mexico -12858871 20 n 03 bee_balm 3 beebalm 3 Monarda_fistulosa 0 001 @ 12858150 n 0000 | perennial herb of North America -12858987 20 n 03 lemon_mint 2 horsemint 3 Monarda_citriodora 0 001 @ 12858150 n 0000 | an annual horsemint of central and western United States and northern Mexico -12859153 20 n 02 plains_lemon_monarda 0 Monarda_pectinata 0 001 @ 12858150 n 0000 | annual of southern United States -12859272 20 n 02 basil_balm 1 Monarda_clinopodia 0 001 @ 12858150 n 0000 | perennial herb of North America (New York to Illinois and mountains of Alaska) having aromatic leaves and clusters of yellowish-pink balls -12859488 20 n 02 Monardella 0 genus_Monardella 0 003 @ 11567411 n 0000 #m 12838027 n 0000 %m 12859679 n 0000 | a genus of fragrant herbs of the family Labiatae in the western United States -12859679 20 n 02 mustang_mint 0 Monardella_lanceolata 0 002 @ 12205694 n 0000 #m 12859488 n 0000 | fragrant California annual herb having lanceolate leaves and clusters of rose-purple flowers -12859873 20 n 02 Nepeta 0 genus_Nepeta 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12859986 n 0000 | catmint -12859986 20 n 03 catmint 0 catnip 0 Nepeta_cataria 0 002 @ 12205694 n 0000 #m 12859873 n 0000 | hairy aromatic perennial herb having whorls of small white purple-spotted flowers in a terminal spike; used in the past as a domestic remedy; strongly attractive to cats -12860254 20 n 02 Ocimum 0 genus_Ocimum 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12860365 n 0000 | basil -12860365 20 n 01 basil 0 003 @ 12205694 n 0000 #m 12860254 n 0000 ~ 12860542 n 0000 | any of several Old World tropical aromatic annual or perennial herbs of the genus Ocimum -12860542 20 n 03 common_basil 0 sweet_basil 0 Ocimum_basilicum 0 002 @ 12860365 n 0000 %p 07816164 n 0000 | annual or perennial of tropical Asia having spikes of small white flowers and aromatic leaves; one of the most important culinary herbs; used in salads, casseroles, sauces and some liqueurs -12860842 20 n 02 Perilla 0 genus_Perilla 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12860978 n 0000 | small genus of Asiatic herbs -12860978 20 n 02 beefsteak_plant 2 Perilla_frutescens_crispa 0 002 @ 12205694 n 0000 #m 12860842 n 0000 | plant grown for its ornamental red or purple foliage -12861139 20 n 01 genus_Phlomis 0 004 @ 11579418 n 0000 #m 12838027 n 0000 %m 12861345 n 0000 %m 12861541 n 0000 | large genus of Old World aromatic herbs or subshrubs or shrubs having often woolly leaves -12861345 20 n 01 phlomis 0 002 @ 13118707 n 0000 #m 12861139 n 0000 | any of various plants of the genus Phlomis; grown primarily for their dense whorls of lipped flowers and attractive foliage -12861541 20 n 02 Jerusalem_sage 0 Phlomis_fruticosa 0 002 @ 13118707 n 0000 #m 12861139 n 0000 | a spreading subshrub of Mediterranean regions cultivated for dense axillary whorls of purple or yellow flowers -12861751 20 n 01 genus_Physostegia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12861892 n 0000 | genus of North American perennial herbs -12861892 20 n 01 physostegia 0 003 @ 12205694 n 0000 #m 12861751 n 0000 ~ 12862116 n 0000 | any of various plants of the genus Physostegia having sessile linear to oblong leaves and showy white or rose or lavender flowers -12862116 20 n 04 false_dragonhead 0 false_dragon_head 0 obedient_plant 0 Physostegia_virginiana 0 001 @ 12861892 n 0000 | North American plant having a spike of two-lipped pink or white flowers -12862312 20 n 01 genus_Plectranthus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12862512 n 0000 | large genus of ornamental flowering plants; includes some plants often placed in the genus Coleus -12862512 20 n 01 plectranthus 0 002 @ 13083023 n 0000 #m 12862312 n 0000 | any of various ornamental plants of the genus Plectranthus -12862648 20 n 02 Pogostemon 0 genus_Pogostemon 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12862828 n 0000 | genus of Asiatic shrubs or trees whose leaves yield a fragrant oil -12862828 20 n 04 patchouli 0 patchouly 0 pachouli 0 Pogostemon_cablin 0 002 @ 13112664 n 0000 #m 12862648 n 0000 | small East Indian shrubby mint; fragrant oil from its leaves is used in perfumes -12863026 20 n 02 Prunella 0 genus_Prunella 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12863234 n 0000 | small genus of perennial mostly Eurasian having terminal spikes of small purplish or white flowers -12863234 20 n 03 self-heal 0 heal_all 2 Prunella_vulgaris 0 002 @ 12205694 n 0000 #m 12863026 n 0000 | decumbent blue-flowered European perennial thought to possess healing properties; naturalized throughout North America -12863458 20 n 04 Pycnanthemum 0 genus_Pycnanthemum 0 Koellia 0 genus_Koellia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12863624 n 0000 | American mountain mint -12863624 20 n 01 mountain_mint 0 003 @ 12205694 n 0000 #m 12863458 n 0000 ~ 12863819 n 0000 | any of a number of perennial herbs of the genus Pycnanthemum; eastern North America and California -12863819 20 n 02 basil_mint 0 Pycnanthemum_virginianum 0 001 @ 12863624 n 0000 | perennial herb of the eastern United States having inconspicuous greenish flowers and narrow leaves that are very aromatic when bruised -12864038 20 n 02 Rosmarinus 0 genus_Rosmarinus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12864160 n 0000 | rosemary -12864160 20 n 02 rosemary 0 Rosmarinus_officinalis 0 003 @ 12205694 n 0000 #m 12864038 n 0000 %p 07820145 n 0000 | widely cultivated for its fragrant grey-green leaves used in cooking and in perfumery -12864363 20 n 01 genus_Salvia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12864545 n 0000 | large genus of shrubs and subshrubs of the mint family varying greatly in habit: sage -12864545 20 n 02 sage 0 salvia 0 014 @ 12205694 n 0000 #m 12864363 n 0000 ~ 12864902 n 0000 ~ 12865037 n 0000 ~ 12865239 n 0000 ~ 12865367 n 0000 ~ 12865562 n 0000 ~ 12865708 n 0000 ~ 12865824 n 0000 ~ 12866002 n 0000 ~ 12866162 n 0000 ~ 12866333 n 0000 ~ 12866459 n 0000 ~ 12866635 n 0000 | any of various plants of the genus Salvia; a cosmopolitan herb -12864902 20 n 02 blue_sage 1 Salvia_azurea 0 001 @ 12864545 n 0000 | blue-flowered sage of dry prairies of the eastern United States -12865037 20 n 02 clary_sage 0 Salvia_clarea 0 002 @ 12864545 n 0000 %p 07820683 n 0000 | stout Mediterranean sage with white or pink or violet flowers; yields oil used as a flavoring and in perfumery -12865239 20 n 03 blue_sage 2 mealy_sage 0 Salvia_farinacea 0 001 @ 12864545 n 0000 | Texas sage having intensely blue flowers -12865367 20 n 03 blue_sage 3 Salvia_reflexa 0 Salvia_lancifolia 0 001 @ 12864545 n 0000 | sage of western North America to Central America having violet-blue flowers; widespread in cultivation -12865562 20 n 03 purple_sage 0 chaparral_sage 0 Salvia_leucophylla 0 001 @ 12864545 n 0000 | silvery-leaved California herb with purple flowers -12865708 20 n 03 cancerweed 0 cancer_weed 0 Salvia_lyrata 0 001 @ 12864545 n 0000 | sage of eastern United States -12865824 20 n 03 common_sage 0 ramona 0 Salvia_officinalis 0 002 @ 12864545 n 0000 %p 07820497 n 0000 | shrubby plant with aromatic greyish-green leaves used as a cooking herb -12866002 20 n 02 meadow_clary 0 Salvia_pratensis 0 001 @ 12864545 n 0000 | tall perennial Old World salvia with violet-blue flowers; found in open grasslands -12866162 20 n 02 clary 0 Salvia_sclarea 0 001 @ 12864545 n 0000 | aromatic herb of southern Europe; cultivated in Great Britain as a potherb and widely as an ornamental -12866333 20 n 02 pitcher_sage 2 Salvia_spathacea 0 001 @ 12864545 n 0000 | California erect and sparsely branched perennial -12866459 20 n 02 Mexican_mint 0 Salvia_divinorum 0 001 @ 12864545 n 0000 | an herb from Oaxaca that has a powerful hallucinogenic effect; the active ingredient is salvinorin -12866635 20 n 04 wild_sage 0 wild_clary 0 vervain_sage 0 Salvia_verbenaca 0 001 @ 12864545 n 0000 | Eurasian sage with blue flowers and foliage like verbena; naturalized in United States -12866824 20 n 04 Satureja 0 genus_Satureja 0 Satureia 0 genus_Satureia 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12866968 n 0000 | savory -12866968 20 n 01 savory 1 004 @ 12205694 n 0000 #m 12866824 n 0000 ~ 12867184 n 0000 ~ 12867449 n 0000 | any of several aromatic herbs or subshrubs of the genus Satureja having spikes of flowers attractive to bees -12867184 20 n 03 summer_savory 0 Satureja_hortensis 0 Satureia_hortensis 0 002 @ 12866968 n 0000 %p 07820960 n 0000 | erect annual herb with oval leaves and pink flowers; used to flavor e.g. meats or soups or salads; southeastern Europe and naturalized elsewhere -12867449 20 n 03 winter_savory 0 Satureja_montana 0 Satureia_montana 0 002 @ 12866968 n 0000 %p 07821107 n 0000 | erect perennial subshrub having pink or white flowers and leathery leaves with a flavor of thyme; southern Europe -12867679 20 n 02 Scutellaria 0 genus_Scutellaria 0 002 @ 11579418 n 0000 #m 12838027 n 0000 | an asterid dicot genus that includes the skullcaps -12867826 20 n 02 skullcap 0 helmetflower 0 001 @ 12205694 n 0000 | a herbaceous plant of the genus Scutellaria which has a calyx that, when inverted, resembles a helmet with its visor raised -12868019 20 n 05 blue_pimpernel 0 blue_skullcap 0 mad-dog_skullcap 0 mad-dog_weed 0 Scutellaria_lateriflora 0 001 @ 12205694 n 0000 | an American mint that yields a resinous exudate used especially formerly as an antispasmodic -12868248 20 n 02 Sideritis 0 genus_Sideritis 0 002 @ 11579418 n 0000 #m 12838027 n 0000 | genus of woolly aromatic herbs or subshrubs or shrubs of Mediterranean region -12868418 20 n 02 Solenostemon 0 genus_Solenostemon 0 002 @ 11579418 n 0000 #m 12838027 n 0000 | genus of shrubby often succulent herbs of tropical Africa and Asia; includes some plants often placed in genus Coleus -12868634 20 n 02 Stachys 0 genus_Stachys 0 004 @ 11579418 n 0000 #m 12838027 n 0000 %m 12868880 n 0000 %m 12869061 n 0000 | large genus of usually woolly or hairy herbs or subshrubs or shrubs; temperate eastern hemisphere; tropical Australasia -12868880 20 n 03 hedge_nettle 1 dead_nettle 2 Stachys_sylvatica 0 002 @ 12205694 n 0000 #m 12868634 n 0000 | foul-smelling perennial Eurasiatic herb with a green creeping rhizome -12869061 20 n 02 hedge_nettle 2 Stachys_palustris 0 002 @ 12205694 n 0000 #m 12868634 n 0000 | perennial herb with an odorless rhizome widespread in moist places in northern hemisphere -12869248 20 n 02 Teucrium 0 genus_Teucrium 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12869478 n 0000 | large widely distributed genus of perennial herbs or shrubs or subshrubs; native to Mediterranean region to western Asia -12869478 20 n 01 germander 0 006 @ 13118707 n 0000 #m 12869248 n 0000 ~ 12869668 n 0000 ~ 12869874 n 0000 ~ 12870048 n 0000 ~ 12870225 n 0000 | any of various plants of the genus Teucrium -12869668 20 n 03 American_germander 0 wood_sage 2 Teucrium_canadense 0 001 @ 12869478 n 0000 | subshrub with serrate leaves and cream-colored to pink or purple flowers in spikelike racemes; North America -12869874 20 n 02 wall_germander 0 Teucrium_chamaedrys 0 001 @ 12869478 n 0000 | European perennial subshrub with red-purple or bright rose flowers with red and white spots -12870048 20 n 03 cat_thyme 0 marum 0 Teucrium_marum 0 001 @ 12869478 n 0000 | Mediterranean germander having small hairy leaves and reddish purple flowers; attractive to cats -12870225 20 n 02 wood_sage 1 Teucrium_scorodonia 0 001 @ 12869478 n 0000 | European germander with one-sided racemes of yellow flowers; naturalized in North America -12870392 20 n 02 Thymus 0 genus_Thymus 0 003 @ 11579418 n 0000 #m 12838027 n 0000 %m 12870535 n 0000 | large genus of Old World mints: thyme -12870535 20 n 01 thyme 0 004 @ 12205694 n 0000 #m 12870392 n 0000 ~ 12870682 n 0000 ~ 12870891 n 0000 | any of various mints of the genus Thymus -12870682 20 n 02 common_thyme 0 Thymus_vulgaris 0 002 @ 12870535 n 0000 %p 07821758 n 0000 | common aromatic garden perennial native to the western Mediterranean; used in seasonings and formerly as medicine -12870891 20 n 03 wild_thyme 0 creeping_thyme 0 Thymus_serpyllum 0 001 @ 12870535 n 0000 | aromatic dwarf shrub common on banks and hillsides in Europe; naturalized in United States -12871074 20 n 02 Trichostema 0 genus_Trichostema 0 004 @ 11579418 n 0000 #m 12838027 n 0000 %m 12871272 n 0000 %m 12871484 n 0000 | genus of North American aromatic herbs or subshrubs: blue curls -12871272 20 n 01 blue_curls 0 005 @ 13118707 n 0000 #m 12871074 n 0000 ~ 12871484 n 0000 ~ 12871696 n 0000 ~ 12871859 n 0000 | any of several plants of the genus Trichostema having whorls of small blue flowers -12871484 20 n 04 black_sage 0 wooly_blue_curls 0 California_romero 0 Trichostema_lanatum 0 002 @ 12871272 n 0000 #m 12871074 n 0000 | an aromatic plant with wooly leaves found in southern California and Mexico -12871696 20 n 04 turpentine_camphor_weed 0 camphorweed 0 vinegarweed 0 Trichostema_lanceolatum 0 001 @ 12871272 n 0000 | aromatic plant of western United States -12871859 20 n 02 bastard_pennyroyal 0 Trichostema_dichotomum 0 001 @ 12871272 n 0000 | aromatic plant of the eastern United States -12871992 20 n 03 Lentibulariaceae 0 family_Lentibulariaceae 0 bladderwort_family 0 005 @ 11744583 n 0000 #m 12808227 n 0000 %m 12872257 n 0000 %m 12872698 n 0000 %m 12873182 n 0000 | carnivorous aquatic or bog plants: genera Utricularia, Pinguicula, and Genlisea -12872257 20 n 02 Utricularia 0 genus_Utricularia 0 003 @ 11744859 n 0000 #m 12871992 n 0000 %m 12872458 n 0000 | bladderworts: large genus of aquatic carnivorous plants; cosmopolitan in distribution -12872458 20 n 01 bladderwort 0 002 @ 12778605 n 0000 #m 12872257 n 0000 | any of numerous aquatic carnivorous plants of the genus Utricularia some of whose leaves are modified as small urn-shaped bladders that trap minute aquatic animals -12872698 20 n 02 Pinguicula 0 genus_Pinguicula 0 003 @ 11744859 n 0000 #m 12871992 n 0000 %m 12872914 n 0000 | butterworts: a large genus of almost stemless carnivorous bog plants; Europe and America to Antarctica -12872914 20 n 01 butterwort 0 002 @ 12778605 n 0000 #m 12872698 n 0000 | any of numerous carnivorous bog plants of the genus Pinguicula having showy purple or yellow or white flowers and a rosette of basal leaves coated with a sticky secretion to trap small insects -12873182 20 n 01 genus_Genlisea 0 003 @ 11744859 n 0000 #m 12871992 n 0000 %m 12873341 n 0000 | small genus of carnivorous plants of tropical African swamps -12873341 20 n 01 genlisea 0 002 @ 12778605 n 0000 #m 12873182 n 0000 | rootless carnivorous swamp plants having at the base of the stem a rosette of foliage and leaves consisting of slender tubes swollen in the middle to form traps; each tube passes into two long spirally twisted arms with stiff hairs -12873646 20 n 02 Martyniaceae 0 family_Martyniaceae 0 002 @ 11744583 n 0000 #m 12808227 n 0000 | in most classifications not considered a separate family but included in the Pedaliaceae -12873834 20 n 01 genus_Martynia 0 003 @ 11744859 n 0000 #m 12874429 n 0000 %m 12873984 n 0000 | in some classifications includes the unicorn plants -12873984 20 n 02 martynia 0 Martynia_annua 0 002 @ 12205694 n 0000 #m 12873834 n 0000 | sprawling annual or perennial herb of Central America and West Indies having creamy-white to red-purple bell-shaped flowers followed by unusual horned fruit -12874231 20 n 03 Orobanchaceae 0 family_Orobanchaceae 0 broomrape_family 0 002 @ 11562747 n 0000 #m 12808227 n 0000 | brown or yellow leafless herbs; sometimes placed in the order Scrophulariales -12874429 20 n 03 Pedaliaceae 0 family_Pedaliaceae 0 sesame_family 0 005 @ 11744583 n 0000 #m 12808227 n 0000 %m 12873834 n 0000 %m 12874642 n 0000 %m 12874996 n 0000 | the family of plants of order Polemoniales -12874642 20 n 02 Sesamum 0 genus_Sesamum 0 003 @ 11744859 n 0000 #m 12874429 n 0000 %m 12874783 n 0000 | tropical African and Indian herbs -12874783 20 n 05 sesame 0 benne 0 benni 0 benny 0 Sesamum_indicum 0 003 @ 12205694 n 0000 #m 12874642 n 0000 %p 07827410 n 0000 | East Indian annual erect herb; source of sesame seed or benniseed and sesame oil -12874996 20 n 02 Proboscidea 0 genus_Proboscidea 0 005 @ 11744859 n 0000 #m 12874429 n 0000 %m 12875269 n 0000 %m 12875697 n 0000 %m 12875861 n 0000 | in some classifications included in the genus Martynia and hence the two taxonomic names for some of the unicorn plants -12875269 20 n 07 common_unicorn_plant 0 devil's_claw 0 common_devil's_claw 0 elephant-tusk 0 proboscis_flower 0 ram's_horn 0 Proboscidea_louisianica 0 002 @ 12205694 n 0000 #m 12874996 n 0000 | annual of southern United States to Mexico having large whitish or yellowish flowers mottled with purple and a long curving beak -12875594 20 n 01 beak 0 001 @ 08663156 n 0000 | a beaklike, tapering tip on certain plant structures -12875697 20 n 03 sand_devil's_claw 0 Proboscidea_arenaria 0 Martynia_arenaria 0 002 @ 12205694 n 0000 #m 12874996 n 0000 | alternatively placed in genus Martynia -12875861 20 n 03 sweet_unicorn_plant 0 Proboscidea_fragrans 0 Martynia_fragrans 0 002 @ 12205694 n 0000 #m 12874996 n 0000 | a herbaceous plant of the genus Proboscidea -12876032 20 n 04 Scrophulariaceae 0 family_Scrophulariaceae 0 figwort_family 0 foxglove_family 0 018 @ 11566230 n 0000 #m 12808227 n 0000 %m 12876684 n 0000 %m 12877041 n 0000 %m 12878019 n 0000 %m 12878525 n 0000 %m 12879350 n 0000 %m 12879719 n 0000 %m 12880963 n 0000 %m 12881429 n 0000 %m 12882321 n 0000 %m 12882591 n 0000 %m 12883395 n 0000 %m 12883733 n 0000 %m 12883923 n 0000 %m 12884523 n 0000 %m 12888733 n 0000 %m 12890009 n 0000 | a family of dicotyledonous plants of the order Polemoniales; includes figwort and snapdragon and foxglove and toadflax and speedwell and mullein; in some classifications placed in the order Scrophulariales -12876684 20 n 02 Scrophularia 0 genus_Scrophularia 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12876899 n 0000 | type genus of Scrophulariaceae; named for the plants' supposed ability to cure scrofula: figworts -12876899 20 n 01 figwort 0 002 @ 13103136 n 0000 #m 12876684 n 0000 | any of numerous tall coarse woodland plants of the genus Scrophularia -12877041 20 n 02 Antirrhinum 0 genus_Antirrhinum 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12877244 n 0000 | a genus of herbs of the family Scrophulariaceae with brightly colored irregular flowers -12877244 20 n 01 snapdragon 0 005 @ 11669921 n 0000 #m 12877041 n 0000 ~ 12877493 n 0000 ~ 12877637 n 0000 ~ 12877838 n 0000 | a garden plant of the genus Antirrhinum having showy white or yellow or crimson flowers resembling the face of a dragon -12877493 20 n 02 white_snapdragon 0 Antirrhinum_coulterianum 0 001 @ 12877244 n 0000 | California plant with slender racemes of white flowers -12877637 20 n 02 yellow_twining_snapdragon 0 Antirrhinum_filipes 0 001 @ 12877244 n 0000 | southwestern United States plant with yellow flowers on stems that twist and twine through other vegetation -12877838 20 n 02 Mediterranean_snapdragon 0 Antirrhinum_majus 0 001 @ 12877244 n 0000 | perennial native to the Mediterranean but widely cultivated for its purple or pink flowers -12878019 20 n 02 Besseya 0 genus_Besseya 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12878169 n 0000 | genus of North American spring wildflowers -12878169 20 n 01 kitten-tails 0 003 @ 11672400 n 0000 #m 12878019 n 0000 ~ 12878325 n 0000 | a plant of the genus Besseya having fluffy spikes of flowers -12878325 20 n 02 Alpine_besseya 0 Besseya_alpina 0 001 @ 12878169 n 0000 | small pale plant with dense spikes of pale bluish-violet flowers; of high cold meadows from Wyoming and Utah to New Mexico -12878525 20 n 02 Aureolaria 0 genus_Aureolaria 0 004 @ 11579418 n 0000 #m 12876032 n 0000 %m 12878784 n 0000 %m 12879068 n 0000 | small genus of North American herbs often root-parasitic and bearing golden-yellow flowers; sometimes placed in genus Gerardia -12878784 20 n 03 false_foxglove 1 Aureolaria_pedicularia 0 Gerardia_pedicularia 0 002 @ 12205694 n 0000 #m 12878525 n 0000 | multi-stemmed North American annual having solitary axillary dark golden-yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia -12879068 20 n 03 false_foxglove 2 Aureolaria_virginica 0 Gerardia_virginica 0 002 @ 12205694 n 0000 #m 12878525 n 0000 | sparsely branched North American perennial with terminal racemes of bright yellow flowers resembling those of the foxglove; sometimes placed in genus Gerardia -12879350 20 n 01 genus_Calceolaria 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12879527 n 0000 | large genus of tropical American herbs and shrubs with showy cymose flowers -12879527 20 n 02 calceolaria 0 slipperwort 0 002 @ 11669921 n 0000 #m 12879350 n 0000 | any garden plant of the genus Calceolaria having flowers with large inflated slipper-shaped lower lip -12879719 20 n 04 Castilleja 0 genus_Castilleja 0 Castilleia 0 genus_Castilleia 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12879963 n 0000 | genus of western North and South American perennials often partially parasitic on roots of grasses -12879963 20 n 02 Indian_paintbrush 1 painted_cup 0 006 @ 11672400 n 0000 #m 12879719 n 0000 ~ 12880244 n 0000 ~ 12880462 n 0000 ~ 12880638 n 0000 ~ 12880799 n 0000 | any of various plants of the genus Castilleja having dense spikes of hooded flowers with brightly colored bracts -12880244 20 n 02 desert_paintbrush 0 Castilleja_chromosa 0 001 @ 12879963 n 0000 | most common paintbrush of western United States dry lands; having erect stems ending in dense spikes of bright orange to red flowers -12880462 20 n 02 giant_red_paintbrush 0 Castilleja_miniata 0 001 @ 12879963 n 0000 | wildflower of western North America having ragged clusters of crimson or scarlet flowers -12880638 20 n 02 great_plains_paintbrush 0 Castilleja_sessiliflora 0 001 @ 12879963 n 0000 | hairy plant with pinkish flowers; Great Plains to northern Mexico -12880799 20 n 02 sulfur_paintbrush 0 Castilleja_sulphurea 0 001 @ 12879963 n 0000 | plant of moist highland meadows having ragged clusters of pale yellow flowers -12880963 20 n 02 Chelone 0 genus_Chelone 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12881105 n 0000 | herbaceous perennials: shellflower -12881105 20 n 06 shellflower 1 shell-flower 1 turtlehead 0 snakehead 0 snake-head 0 Chelone_glabra 0 002 @ 13122364 n 0000 #m 12880963 n 0000 | showy perennial of marshlands of eastern and central North America having waxy lanceolate leaves and flower with lower part creamy white and upper parts pale pink to deep purple -12881429 20 n 02 Collinsia 0 genus_Collinsia 0 005 @ 11579418 n 0000 #m 12876032 n 0000 %m 12881631 n 0000 %m 12881913 n 0000 %m 12882158 n 0000 | genus of hardy annual herbs of western United States -12881631 20 n 04 purple_chinese_houses 0 innocense 0 Collinsia_bicolor 0 Collinsia_heterophylla 0 002 @ 11672400 n 0000 #m 12881429 n 0000 | white and lavender to pale-blue flowers grow in perfect rings of widely spaced bands around the stems forming a kind of pagoda; California -12881913 20 n 02 maiden_blue-eyed_Mary 0 Collinsia_parviflora 0 002 @ 11672400 n 0000 #m 12881429 n 0000 | small widely branching western plant with tiny blue-and-white flowers; British Columbia to Ontario and south to California and Colorado -12882158 20 n 02 blue-eyed_Mary 0 Collinsia_verna 0 002 @ 11672400 n 0000 #m 12881429 n 0000 | eastern United States plant with whorls of blue-and-white flowers -12882321 20 n 06 Culver's_root 0 Culvers_root 0 Culver's_physic 0 Culvers_physic 0 whorlywort 0 Veronicastrum_virginicum 0 002 @ 11579418 n 0000 #m 12876032 n 0000 | a tall perennial herb having spikes of small white or purple flowers; common in eastern North America -12882591 20 n 01 genus_Digitalis 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12882779 n 0000 | genus of Eurasian herbs having alternate leaves and racemes of showy bell-shaped flowers -12882779 20 n 02 foxglove 0 digitalis 0 004 @ 12205694 n 0000 #m 12882591 n 0000 ~ 12882945 n 0000 ~ 12883265 n 0000 | any of several plants of the genus Digitalis -12882945 20 n 07 common_foxglove 0 fairy_bell 0 fingerflower 0 finger-flower 0 fingerroot 0 finger-root 0 Digitalis_purpurea 0 001 @ 12882779 n 0000 | tall leafy European biennial or perennial having spectacular clusters of large tubular pink-purple flowers; leaves yield drug digitalis and are poisonous to livestock -12883265 20 n 03 yellow_foxglove 1 straw_foxglove 0 Digitalis_lutea 0 001 @ 12882779 n 0000 | European yellow-flowered foxglove -12883395 20 n 01 genus_Gerardia 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12883628 n 0000 | genus of annual or perennial herbs with showy pink or purple or yellow flowers; plants often assigned to genera Aureolaria or Agalinis -12883628 20 n 01 gerardia 0 002 @ 11669921 n 0000 #m 12883395 n 0000 | any plant of the genus Gerardia -12883733 20 n 02 Agalinis 0 genus_Agalinis 0 002 @ 11579418 n 0000 #m 12876032 n 0000 | semiparasitic herb with purple or white or pink flowers; grows in the United States and West Indies -12883923 20 n 02 Linaria 0 genus_Linaria 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12884260 n 0000 | genus of herbs and subshrubs having showy flowers: spurred snapdragon -12884100 20 n 03 blue_toadflax 0 old-field_toadflax 0 Linaria_canadensis 0 001 @ 12884260 n 0000 | North American plant having racemes of blue-violet flowers -12884260 20 n 05 toadflax 0 butter-and-eggs 0 wild_snapdragon 0 devil's_flax 0 Linaria_vulgaris 0 003 @ 11669921 n 0000 #m 12883923 n 0000 ~ 12884100 n 0000 | common European perennial having showy yellow and orange flowers; a naturalized weed in North America -12884523 20 n 02 Penstemon 0 genus_Penstemon 0 018 @ 11579418 n 0000 #m 12876032 n 0000 %m 12885045 n 0000 %m 12885265 n 0000 %m 12885510 n 0000 %m 12885754 n 0000 %m 12885956 n 0000 %m 12886185 n 0000 %m 12886402 n 0000 %m 12886600 n 0000 %m 12886831 n 0000 %m 12887065 n 0000 %m 12887293 n 0000 %m 12887532 n 0000 %m 12887713 n 0000 %m 12888016 n 0000 %m 12888234 n 0000 %m 12888457 n 0000 | large genus of subshrubs or herbs having showy blue or purple or red or yellow or white flowers; mostly western North America -12885045 20 n 02 golden-beard_penstemon 0 Penstemon_barbatus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | plant of southwestern United States having long open clusters of scarlet flowers with yellow hairs on lower lip -12885265 20 n 02 scarlet_bugler 0 Penstemon_centranthifolius 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | plant with bright red tubular flowers in long narrow clusters near tips of erect stems; coastal ranges from central California southward -12885510 20 n 02 red_shrubby_penstemon 0 redwood_penstemon 0 002 @ 13112664 n 0000 #m 12884523 n 0000 | low branching dark green shrub with bunches of brick-red flowers at ends of branches; coastal ranges and foothills of northern California -12885754 20 n 02 Platte_River_penstemon 0 Penstemon_cyananthus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | erect plant with blue-violet flowers in rings near tips of stems; Idaho to Utah and Wyoming -12885956 20 n 02 Davidson's_penstemon 0 Penstemon_davidsonii 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | mat-forming plant with blue and lavender flowers clustered on short erect stems; British Columbia to northern California -12886185 20 n 02 hot-rock_penstemon 0 Penstemon_deustus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | stems in clumps with cream-colored flowers; found from Washington to Wyoming and southward to California and Utah -12886402 20 n 02 Jones'_penstemon 0 Penstemon_dolius 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | low plant with light blue and violet flowers in short clusters near tips of stems; Nevada to Utah -12886600 20 n 03 shrubby_penstemon 0 lowbush_penstemon 0 Penstemon_fruticosus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | low bushy plant with large showy pale lavender or blue-violet flowers in narrow clusters at ends of stems -12886831 20 n 02 narrow-leaf_penstemon 0 Penstemon_linarioides 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | plant having small narrow leaves and blue-violet flowers in long open clusters; Utah and Colorado to New Mexico and Arizona -12887065 20 n 02 mountain_pride 0 Penstemon_newberryi 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | mat-forming plant with deep pink flowers on short erect leafy stems; rocky places at high elevations from Oregon to California -12887293 20 n 03 balloon_flower 0 scented_penstemon 0 Penstemon_palmeri 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | fragrant puffed-up white to reddish-pink flowers in long narrow clusters on erect stems; Arizona to New Mexico and Utah -12887532 20 n 02 Parry's_penstemon 0 Penstemon_parryi 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | erect stems with pinkish-lavender flowers in long interrupted clusters; Arizona -12887713 20 n 03 rock_penstemon 0 cliff_penstemon 0 Penstemon_rupicola 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | one of the West's most beautiful wildflowers; large brilliant pink or rose flowers in many racemes above thick mats of stems and leaves; ledges and cliffs from Washington to California -12888016 20 n 02 Rydberg's_penstemon 0 Penstemon_rydbergii 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | plant with whorls of small dark blue-violet flowers; Washington to Wyoming and south to California and Colorado -12888234 20 n 02 cascade_penstemon 0 Penstemon_serrulatus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | whorls of deep blue to dark purple flowers at tips of erect leafy stems; moist places from British Columbia to Oregon -12888457 20 n 02 Whipple's_penstemon 0 Penstemon_whippleanus 0 002 @ 11672400 n 0000 #m 12884523 n 0000 | wine and lavender to purple and black flowers in several clusters on the upper half of leafy stems; Montana south through the Rocky Mountains to Arizona and New Mexico -12888733 20 n 02 Verbascum 0 genus_Verbascum 0 003 @ 11579418 n 0000 #m 12876032 n 0000 %m 12888906 n 0000 | genus of coarse herbs and subshrubs mostly with woolly leaves -12888906 20 n 03 mullein 0 flannel_leaf 0 velvet_plant 2 006 @ 12205694 n 0000 #m 12888733 n 0000 ~ 12889219 n 0000 ~ 12889412 n 0000 ~ 12889579 n 0000 ~ 12889713 n 0000 | any of various plants of the genus Verbascum having large usually woolly leaves and terminal spikes of yellow or white or purplish flowers -12889219 20 n 02 moth_mullein 0 Verbascum_blattaria 0 001 @ 12888906 n 0000 | European mullein with smooth leaves and large yellow or purplish flowers; naturalized as a weed in North America -12889412 20 n 02 white_mullein 0 Verbascum_lychnitis 0 001 @ 12888906 n 0000 | densely hairy Eurasian herb with racemose white flowers; naturalized in North America -12889579 20 n 02 purple_mullein 0 Verbascum_phoeniceum 0 001 @ 12888906 n 0000 | Eurasian mullein with showy purple or pink flowers -12889713 20 n 07 common_mullein 0 great_mullein 0 Aaron's_rod 0 flannel_mullein 0 woolly_mullein 0 torch 0 Verbascum_thapsus 0 001 @ 12888906 n 0000 | tall-stalked very woolly mullein with densely packed yellow flowers; ancient Greeks and Romans dipped the stalks in tallow for funeral torches -12890009 20 n 01 genus_Veronica 0 007 @ 11579418 n 0000 #m 12876032 n 0000 %m 12890265 n 0000 %m 12890490 n 0000 %m 12890685 n 0000 %m 12891093 n 0000 %m 12891469 n 0000 | widespread genus of herbs with pink or white or blue or purple flowers: speedwell -12890265 20 n 02 veronica 0 speedwell 0 008 @ 11669921 n 0000 #m 12890009 n 0000 ~ 12890490 n 0000 ~ 12890928 n 0000 ~ 12891305 n 0000 ~ 12891643 n 0000 ~ 12891824 n 0000 ~ 12892013 n 0000 | any plant of the genus Veronica -12890490 20 n 02 field_speedwell 0 Veronica_agrestis 0 002 @ 12890265 n 0000 #m 12890009 n 0000 | European plant with minute axillary blue flowers on long stalks; widely naturalized in America -12890685 20 n 03 brooklime 1 American_brooklime 0 Veronica_americana 0 002 @ 13122364 n 0000 #m 12890009 n 0000 | plant of western North America and northeastern Asia having prostrate stems with dense racemes of pale violet to lilac flowers -12890928 20 n 02 corn_speedwell 0 Veronica_arvensis 0 001 @ 12890265 n 0000 | erect or procumbent blue-flowered annual found in waste places of Europe and America -12891093 20 n 03 brooklime 2 European_brooklime 0 Veronica_beccabunga 0 002 @ 13122364 n 0000 #m 12890009 n 0000 | European plant having low-lying stems with blue flowers; sparsely naturalized in North America -12891305 20 n 03 germander_speedwell 0 bird's_eye 0 Veronica_chamaedrys 0 001 @ 12890265 n 0000 | Old World plant with axillary racemes of blue-and-white flowers -12891469 20 n 03 water_speedwell 0 Veronica_michauxii 0 Veronica_anagallis-aquatica 0 002 @ 13121544 n 0000 #m 12890009 n 0000 | plant of wet places in Eurasia and America -12891643 20 n 03 common_speedwell 0 gypsyweed 0 Veronica_officinalis 0 001 @ 12890265 n 0000 | common hairy European perennial with pale blue or lilac flowers in axillary racemes -12891824 20 n 02 purslane_speedwell 0 Veronica_peregrina 0 001 @ 12890265 n 0000 | North American annual with small white flowers widely naturalized as a weed in South America and Europe -12892013 20 n 02 thyme-leaved_speedwell 0 Veronica_serpyllifolia 0 001 @ 12890265 n 0000 | perennial decumbent herb having small opposite leaves and racemes of blue flowers; throughout Eurasia and the New World -12892226 20 n 03 Solanaceae 0 family_Solanaceae 0 potato_family 0 028 @ 11566230 n 0000 #m 12808227 n 0000 + 02799301 a 0101 %m 12893094 n 0000 %m 12898226 n 0000 %m 12898628 n 0000 %m 12898959 n 0000 %m 12899333 n 0000 %m 12900148 n 0000 %m 12902297 n 0000 %m 12902887 n 0000 %m 12903250 n 0000 %m 12903794 n 0000 %m 12904148 n 0000 %m 12904720 n 0000 %m 12905655 n 0000 %m 12906334 n 0000 %m 12906926 n 0000 %m 12907287 n 0000 %m 12908432 n 0000 %m 12909252 n 0000 %m 12910141 n 0000 %m 12912105 n 0000 %m 12912498 n 0000 %m 12913004 n 0000 %m 12913352 n 0000 %m 12913645 n 0000 %m 12914048 n 0000 | large and economically important family of herbs or shrubs or trees often strongly scented and sometimes narcotic or poisonous; includes the genera Solanum, Atropa, Brugmansia, Capsicum, Datura, Hyoscyamus, Lycopersicon, Nicotiana, Petunia, Physalis, and Solandra -12893094 20 n 02 Solanum 0 genus_Solanum 0 013 @ 11579418 n 0000 #m 12892226 n 0000 %m 12893463 n 0000 %m 12894247 n 0000 %m 12894438 n 0000 %m 12894607 n 0000 %m 12895578 n 0000 %m 12895811 n 0000 %m 12896000 n 0000 %m 12897118 n 0000 %m 12897493 n 0000 %m 12897788 n 0000 %m 12897999 n 0000 | type genus of the Solanaceae: nightshade; potato; eggplant; bittersweet -12893463 20 n 01 nightshade 0 010 @ 13103136 n 0000 #m 12893094 n 0000 ~ 12893794 n 0000 ~ 12893993 n 0000 ~ 12894607 n 0000 ~ 12894930 n 0000 ~ 12895298 n 0000 ~ 12896307 n 0000 ~ 12896862 n 0000 ~ 12897341 n 0000 | any of numerous shrubs or herbs or vines of the genus Solanum; most are poisonous though many bear edible fruit -12893794 20 n 03 kangaroo_apple 0 poroporo 0 Solanum_aviculare 0 001 @ 12893463 n 0000 | Australian annual sometimes cultivated for its racemes of purple flowers and edible yellow egg-shaped fruit -12893993 20 n 05 horse_nettle 0 ball_nettle 0 bull_nettle 0 ball_nightshade 0 Solanum_carolinense 0 001 @ 12893463 n 0000 | coarse prickly weed having pale yellow flowers and yellow berrylike fruit; common throughout southern and eastern United States -12894247 20 n 02 potato_tree 1 Solanum_crispum 0 002 @ 13100677 n 0000 #m 12893094 n 0000 | hardy climbing shrub of Chile grown as an ornamental for its fragrant flowers; not a true potato -12894438 20 n 03 Uruguay_potato 1 Uruguay_potato_vine 0 Solanum_commersonii 0 003 @ 13100677 n 0000 #m 12893094 n 0000 %p 07711799 n 0000 | South American potato vine -12894607 20 n 07 bittersweet 2 bittersweet_nightshade 0 climbing_nightshade 0 deadly_nightshade 1 poisonous_nightshade 0 woody_nightshade 0 Solanum_dulcamara 0 002 @ 12893463 n 0000 #m 12893094 n 0000 | poisonous perennial Old World vine having violet flowers and oval coral-red berries; widespread weed in North America -12894930 20 n 08 trompillo 0 white_horse_nettle 0 prairie_berry 0 purple_nightshade 0 silverleaf_nightshade 0 silver-leaved_nightshade 0 silver-leaved_nettle 0 Solanum_elaeagnifolium 0 001 @ 12893463 n 0000 | weedy nightshade with silvery foliage and violet or blue or white flowers; roundish berry widely used to curdle milk; central United States to South America -12895298 20 n 02 African_holly 0 Solanum_giganteum 0 001 @ 12893463 n 0000 | woolly-stemmed biennial arborescent shrub of tropical Africa and southern Asia having silvery-white prickly branches, clusters of blue or white flowers, and bright red berries resembling holly berries -12895578 20 n 02 wild_potato 0 Solanum_jamesii 0 002 @ 13100677 n 0000 #m 12893094 n 0000 | erect or spreading perennial of southwestern United States and Mexico bearing small pale brown to cream-colored tubers resembling potatoes -12895811 20 n 02 potato_vine 2 Solanum_jasmoides 0 002 @ 13100677 n 0000 #m 12893094 n 0000 | copiously branched vine of Brazil having deciduous leaves and white flowers tinged with blue -12896000 20 n 07 eggplant 0 aubergine 0 brinjal 0 eggplant_bush 0 garden_egg 0 mad_apple 0 Solanum_melongena 0 003 @ 12205694 n 0000 #m 12893094 n 0000 %p 07713074 n 0000 | hairy upright herb native to southeastern Asia but widely cultivated for its large glossy edible fruit commonly used as a vegetable -12896307 20 n 05 black_nightshade 0 common_nightshade 0 poisonberry 0 poison-berry 0 Solanum_nigrum 0 002 @ 12893463 n 0000 ~ 12896615 n 0000 | Eurasian herb naturalized in America having white flowers and poisonous hairy foliage and bearing black berries that are sometimes poisonous but sometimes edible -12896615 20 n 06 garden_huckleberry 0 wonderberry 0 sunberry 0 Solanum_nigrum_guineese 0 Solanum_melanocerasum 0 Solanum_burbankii 0 001 @ 12896307 n 0000 | improved garden variety of black nightshade having small edible orange or black berries -12896862 20 n 04 Jerusalem_cherry 0 winter_cherry 1 Madeira_winter_cherry 0 Solanum_pseudocapsicum 0 001 @ 12893463 n 0000 | small South American shrub cultivated as a houseplant for its abundant ornamental but poisonous red or yellow cherry-sized fruit -12897118 20 n 02 naranjilla 0 Solanum_quitoense 0 002 @ 13112664 n 0000 #m 12893094 n 0000 | small perennial shrub cultivated in uplands of South America for its edible bright orange fruits resembling tomatoes or oranges -12897341 20 n 02 buffalo_bur 0 Solanum_rostratum 0 001 @ 12893463 n 0000 | North American nightshade with prickly foliage and racemose yellow flowers -12897493 20 n 04 potato 0 white_potato 0 white_potato_vine 0 Solanum_tuberosum 0 003 @ 13100677 n 0000 #m 12893094 n 0000 %p 07710616 n 0000 | annual native to South America having underground stolons bearing edible starchy tubers; widely cultivated as a garden vegetable; vines are poisonous -12897788 20 n 03 potato_vine 3 giant_potato_creeper 0 Solanum_wendlandii 0 002 @ 13100677 n 0000 #m 12893094 n 0000 | vine of Costa Rica sparsely armed with hooklike spines and having large lilac-blue flowers -12897999 20 n 04 potato_tree 2 Brazilian_potato_tree 0 Solanum_wrightii 0 Solanum_macranthum 0 002 @ 13112664 n 0000 #m 12893094 n 0000 | South American shrub or small tree widely cultivated in the tropics; not a true potato -12898226 20 n 02 Atropa 0 genus_Atropa 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12898342 n 0000 | belladonna -12898342 20 n 04 belladonna 0 belladonna_plant 0 deadly_nightshade 2 Atropa_belladonna 0 002 @ 12205694 n 0000 #m 12898226 n 0000 | perennial Eurasian herb with reddish bell-shaped flowers and shining black berries; extensively grown in United States; roots and leaves yield atropine -12898628 20 n 01 genus_Browallia 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12898774 n 0000 | small genus of tropical South American annuals -12898774 20 n 02 bush_violet 0 browallia 0 002 @ 11669921 n 0000 #m 12898628 n 0000 | any of several herbs of the genus Browallia cultivated for their blue or violet or white flowers -12898959 20 n 02 Brunfelsia 0 genus_Brunfelsia 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12899166 n 0000 | genus of tropical American shrubs grown for their flowers followed by fleshy berrylike fruits -12899166 20 n 02 lady-of-the-night 0 Brunfelsia_americana 0 002 @ 13112664 n 0000 #m 12898959 n 0000 | West Indian shrub with fragrant showy yellowish-white flowers -12899333 20 n 02 Brugmansia 0 genus_Brugmansia 0 004 @ 11579418 n 0000 #m 12892226 n 0000 %m 12899537 n 0000 %m 12899752 n 0000 | includes some plants often placed in the genus Datura: angel's trumpets -12899537 20 n 04 angel's_trumpet 1 maikoa 0 Brugmansia_arborea 0 Datura_arborea 0 002 @ 13112664 n 0000 #m 12899333 n 0000 | a South American plant that is cultivated for its large fragrant trumpet-shaped flowers -12899752 20 n 03 angel's_trumpet 2 Brugmansia_suaveolens 0 Datura_suaveolens 0 002 @ 13112664 n 0000 #m 12899333 n 0000 | South American plant cultivated for its very large nocturnally fragrant trumpet-shaped flowers -12899971 20 n 03 red_angel's_trumpet 0 Brugmansia_sanguinea 0 Datura_sanguinea 0 001 @ 13112664 n 0000 | arborescent South American shrub having very large orange-red flowers -12900148 20 n 02 genus_Capsicum 0 Capsicum 1 009 @ 11579418 n 0000 #m 12892226 n 0000 %m 12900462 n 0000 %m 12900783 n 0000 %m 12900987 n 0000 %m 12901264 n 0000 %m 12901565 n 0000 %m 12901724 n 0000 %m 12902021 n 0000 | chiefly tropical perennial shrubby plants having many-seeded fruits: sweet and hot peppers -12900462 20 n 03 capsicum 0 pepper 0 capsicum_pepper_plant 0 010 @ 13112664 n 0000 #m 12900148 n 0000 %p 07720442 n 0000 ~ 12900783 n 0000 ~ 12900987 n 0000 ~ 12901264 n 0000 ~ 12901565 n 0000 ~ 12901724 n 0000 ~ 12902021 n 0000 %s 15032829 n 0000 | any of various tropical plants of the genus Capsicum bearing peppers -12900783 20 n 02 cone_pepper 0 Capsicum_annuum_conoides 0 002 @ 12900462 n 0000 #m 12900148 n 0000 | plant bearing erect pungent conical red or yellow or purple fruits; sometimes grown as an ornamental -12900987 20 n 07 cayenne 0 cayenne_pepper 0 chili_pepper 0 chilli_pepper 0 long_pepper 1 jalapeno 0 Capsicum_annuum_longum 0 004 @ 12900462 n 0000 #m 12900148 n 0000 %p 07721456 n 0000 %s 07822518 n 0000 | plant bearing very hot and finely tapering long peppers; usually red -12901264 20 n 07 sweet_pepper 0 bell_pepper 0 pimento 0 pimiento 0 paprika 0 sweet_pepper_plant 0 Capsicum_annuum_grossum 0 004 @ 12900462 n 0000 #m 12900148 n 0000 %p 07720615 n 0000 %s 07824702 n 0000 | plant bearing large mild thick-walled usually bell-shaped fruits; the principal salad peppers -12901565 20 n 02 cherry_pepper 0 Capsicum_annuum_cerasiforme 0 002 @ 12900462 n 0000 #m 12900148 n 0000 | plant bearing small rounded usually pungent fruits -12901724 20 n 03 bird_pepper 0 Capsicum_frutescens_baccatum 0 Capsicum_baccatum 0 002 @ 12900462 n 0000 #m 12900148 n 0000 | plant bearing very small and very hot oblong red fruits; includes wild forms native to tropical America; thought to be ancestral to the sweet pepper and many hot peppers -12902021 20 n 04 tabasco_pepper 0 hot_pepper 0 tabasco_plant 0 Capsicum_frutescens 0 003 @ 12900462 n 0000 #m 12900148 n 0000 %p 07722052 n 0000 | plant bearing very hot medium-sized oblong red peppers; grown principally in the Gulf Coast states for production of hot sauce -12902297 20 n 02 Cestrum 0 genus_Cestrum 0 004 @ 11579418 n 0000 #m 12892226 n 0000 %m 12902466 n 0000 %m 12902662 n 0000 | genus of fragrant tropical American shrubs -12902466 20 n 02 day_jessamine 0 Cestrum_diurnum 0 002 @ 13112664 n 0000 #m 12902297 n 0000 | West Indian evergreen shrub having clusters of funnel-shaped white flowers that are fragrant by day -12902662 20 n 03 night_jasmine 0 night_jessamine 0 Cestrum_nocturnum 0 002 @ 13112664 n 0000 #m 12902297 n 0000 | West Indian evergreen shrub having clusters of funnel-shaped yellow-white flowers that are fragrant by night -12902887 20 n 02 Cyphomandra 0 genus_Cyphomandra 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12903014 n 0000 | tree tomato -12903014 20 n 02 tree_tomato 0 tamarillo 0 002 @ 13112664 n 0000 #m 12902887 n 0000 | South American arborescent shrub having pale pink blossoms followed by egg-shaped reddish-brown edible fruit somewhat resembling a tomato in flavor -12903250 20 n 02 Datura 0 genus_Datura 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12903367 n 0000 | thorn apple -12903367 20 n 01 thorn_apple 0 003 @ 13112664 n 0000 #m 12903250 n 0000 ~ 12903503 n 0000 | any of several plants of the genus Datura -12903503 20 n 06 jimsonweed 0 jimson_weed 0 Jamestown_weed 0 common_thorn_apple 0 apple_of_Peru 2 Datura_stramonium 0 001 @ 12903367 n 0000 | intensely poisonous tall coarse annual tropical weed having rank-smelling foliage, large white or violet trumpet-shaped flowers and prickly fruits -12903794 20 n 02 Fabiana 0 genus_Fabiana 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12903964 n 0000 | genus of South and Central American heathlike evergreen shrubs -12903964 20 n 02 pichi 0 Fabiana_imbricata 0 002 @ 13112664 n 0000 #m 12903794 n 0000 | Peruvian shrub with small pink to lavender tubular flowers; leaves yield a tonic and diuretic -12904148 20 n 02 Hyoscyamus 0 genus_Hyoscyamus 0 004 @ 11579418 n 0000 #m 12892226 n 0000 %m 12904314 n 0000 %m 12904562 n 0000 | genus of poisonous herbs: henbane -12904314 20 n 04 henbane 0 black_henbane 0 stinking_nightshade 0 Hyoscyamus_niger 0 002 @ 12205694 n 0000 #m 12904148 n 0000 | poisonous fetid Old World herb having sticky hairy leaves and yellow-brown flowers; yields hyoscyamine and scopolamine -12904562 20 n 02 Egyptian_henbane 0 Hyoscyamus_muticus 0 002 @ 12205694 n 0000 #m 12904148 n 0000 | poisonous herb whose leaves are a source of hyoscyamine -12904720 20 n 02 Lycium 0 genus_Lycium 0 004 @ 11579418 n 0000 #m 12892226 n 0000 %m 12904938 n 0000 %m 12905412 n 0000 | deciduous and evergreen shrubs often spiny; cosmopolitan in temperate and subtropical regions -12904938 20 n 02 matrimony_vine 0 boxthorn 0 003 @ 13112664 n 0000 #m 12904720 n 0000 ~ 12905135 n 0000 | any of various shrubs or vines of the genus Lycium with showy flowers and bright berries -12905135 20 n 04 common_matrimony_vine 0 Duke_of_Argyll's_tea_tree 0 Lycium_barbarum 0 Lycium_halimifolium 0 001 @ 12904938 n 0000 | deciduous erect or spreading shrub with spiny branches and violet-purple flowers followed by orange-red berries; southeastern Europe to China -12905412 20 n 03 Christmasberry 2 Christmas_berry 2 Lycium_carolinianum 0 002 @ 13112664 n 0000 #m 12904720 n 0000 | spiny evergreen shrub of southeastern United States having spreading branches usually blue or mauve flowers and red berries -12905655 20 n 04 Lycopersicon 0 genus_Lycopersicon 0 Lycopersicum 0 genus_Lycopersicum 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12906021 n 0000 | tomatoes -12905817 20 n 04 tomato 0 love_apple 0 tomato_plant 0 Lycopersicon_esculentum 0 003 @ 12205694 n 0000 %p 07734017 n 0000 ~ 12906021 n 0000 | native to South America; widely cultivated in many varieties -12906021 20 n 02 cherry_tomato 0 Lycopersicon_esculentum_cerasiforme 0 004 @ 12905817 n 0000 #m 12905655 n 0000 %p 07734292 n 0000 ~ 12906214 n 0000 | plant bearing small red to yellow fruit -12906214 20 n 01 plum_tomato 0 001 @ 12906021 n 0000 | an Italian variety of cherry tomato that is shaped like a plum -12906334 20 n 02 Mandragora 0 genus_Mandragora 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12906498 n 0000 | a genus of stemless herbs of the family Solanaceae -12906498 20 n 03 mandrake 1 devil's_apples 0 Mandragora_officinarum 0 003 @ 12205694 n 0000 #m 12906334 n 0000 %p 12906771 n 0000 | a plant of southern Europe and North Africa having purple flowers, yellow fruits and a forked root formerly thought to have magical powers -12906771 20 n 02 mandrake_root 0 mandrake 2 002 @ 13125117 n 0000 #p 12906498 n 0000 | the root of the mandrake plant; used medicinally or as a narcotic -12906926 20 n 02 Nicandra 0 genus_Nicandra 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12907057 n 0000 | sturdy annual of Peru -12907057 20 n 03 apple_of_Peru 1 shoo_fly 0 Nicandra_physaloides 0 002 @ 12205694 n 0000 #m 12906926 n 0000 | coarse South American herb grown for its blue-and-white flowers followed by a bladderlike fruit enclosing a dry berry -12907287 20 n 02 Nicotiana 0 genus_Nicotiana 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12907465 n 0000 | American and Asiatic aromatic herbs and shrubs with viscid foliage -12907465 20 n 02 tobacco 0 tobacco_plant 0 006 @ 12205694 n 0000 #m 12907287 n 0000 ~ 12907671 n 0000 ~ 12907857 n 0000 ~ 12908093 n 0000 ~ 12908230 n 0000 | aromatic annual or perennial herbs and shrubs -12907671 20 n 03 flowering_tobacco 0 Jasmine_tobacco 0 Nicotiana_alata 0 001 @ 12907465 n 0000 | South American ornamental perennial having nocturnally fragrant greenish-white flowers -12907857 20 n 02 common_tobacco 0 Nicotiana_tabacum 0 002 @ 12907465 n 0000 #s 04442831 n 0000 | tall erect South American herb with large ovate leaves and terminal clusters of tubular white or pink flowers; cultivated for its leaves -12908093 20 n 03 wild_tobacco 0 Indian_tobacco 1 Nicotiana_rustica 0 001 @ 12907465 n 0000 | tobacco plant of South America and Mexico -12908230 20 n 03 tree_tobacco 0 mustard_tree 0 Nicotiana_glauca 0 001 @ 12907465 n 0000 | evergreen South American shrub naturalized in United States; occasionally responsible for poisoning livestock -12908432 20 n 01 genus_Nierembergia 0 005 @ 11579418 n 0000 #m 12892226 n 0000 %m 12908645 n 0000 %m 12908854 n 0000 %m 12909068 n 0000 | genus of tropical American erect or creeping herbs with solitary flowers -12908645 20 n 02 cupflower 1 nierembergia 0 004 @ 12205694 n 0000 #m 12908432 n 0000 ~ 12908854 n 0000 ~ 12909068 n 0000 | any of various plants of the genus Nierembergia having upturned bell-shaped flowers -12908854 20 n 03 whitecup 0 Nierembergia_repens 0 Nierembergia_rivularis 0 002 @ 12908645 n 0000 #m 12908432 n 0000 | prostrate woody South American herb with white tubular flowers often tinged with blue or rose -12909068 20 n 02 tall_cupflower 0 Nierembergia_frutescens 0 002 @ 12908645 n 0000 #m 12908432 n 0000 | shrubby Chilean herb having bluish-white tubular flowers used as an ornamental -12909252 20 n 02 genus_Petunia 0 Petunia 1 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12909421 n 0000 | annual or perennial herbs or shrubs of tropical South America -12909421 20 n 01 petunia 0 005 @ 11669921 n 0000 #m 12909252 n 0000 ~ 12909614 n 0000 ~ 12909759 n 0000 ~ 12909917 n 0000 | any of numerous tropical herbs having fluted funnel-shaped flowers -12909614 20 n 02 large_white_petunia 0 Petunia_axillaris 0 001 @ 12909421 n 0000 | annual herb having large nocturnally fragrant white flowers -12909759 20 n 02 violet-flowered_petunia 0 Petunia_integrifolia 0 001 @ 12909421 n 0000 | herb or small shrublet having solitary violet to rose-red flowers -12909917 20 n 02 hybrid_petunia 0 Petunia_hybrida 0 001 @ 12909421 n 0000 | hybrids of Petunia axillaris and Petunia integrifolia: a complex group of petunias having single or double flowers in colors from white to purple -12910141 20 n 02 Physalis 0 genus_Physalis 0 004 @ 11579418 n 0000 #m 12892226 n 0000 %m 12910285 n 0000 %m 12911079 n 0000 | ground cherries -12910285 20 n 02 ground_cherry 0 husk_tomato 0 009 @ 12205694 n 0000 #m 12910141 n 0000 ~ 12910676 n 0000 ~ 12910875 n 0000 ~ 12911079 n 0000 ~ 12911264 n 0000 ~ 12911440 n 0000 ~ 12911673 n 0000 ~ 12911914 n 0000 | any of numerous cosmopolitan annual or perennial herbs of the genus Physalis bearing edible fleshy berries enclosed in a bladderlike husk; some cultivated for their flowers -12910676 20 n 03 downy_ground_cherry 0 strawberry_tomato 1 Physalis_pubescens 0 001 @ 12910285 n 0000 | decorative American annual having round fleshy yellow berries enclosed in a bladderlike husk -12910875 20 n 04 Chinese_lantern_plant 0 winter_cherry 2 bladder_cherry 0 Physalis_alkekengi 0 001 @ 12910285 n 0000 | Old World perennial cultivated for its ornamental inflated papery orange-red calyx -12911079 20 n 03 cape_gooseberry 0 purple_ground_cherry 0 Physalis_peruviana 0 002 @ 12910285 n 0000 #m 12910141 n 0000 | annual of tropical South America having edible purple fruits -12911264 20 n 03 strawberry_tomato 2 dwarf_cape_gooseberry 0 Physalis_pruinosa 0 001 @ 12910285 n 0000 | stout hairy annual of eastern North America with sweet yellow fruits -12911440 20 n 04 tomatillo 1 jamberry 1 Mexican_husk_tomato 0 Physalis_ixocarpa 0 002 @ 12910285 n 0000 %p 07734555 n 0000 | annual of Mexico and southern United States having edible purplish viscid fruit resembling small tomatoes -12911673 20 n 05 tomatillo 2 miltomate 0 purple_ground_cherry 2 jamberry 2 Physalis_philadelphica 0 001 @ 12910285 n 0000 | Mexican annual naturalized in eastern North America having yellow to purple edible fruit resembling small tomatoes -12911914 20 n 02 yellow_henbane 0 Physalis_viscosa 0 001 @ 12910285 n 0000 | found on sea beaches from Virginia to South America having greenish-yellow flowers and orange or yellow berries -12912105 20 n 02 Salpichroa 0 genus_Salpichroa 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12912274 n 0000 | herbs of temperate North and South America: cock's eggs -12912274 20 n 03 cock's_eggs 0 Salpichroa_organifolia 0 Salpichroa_rhomboidea 0 002 @ 13100677 n 0000 #m 12912105 n 0000 | weedy vine of Argentina having solitary white flowers followed by egg-shaped white or yellow fruit -12912498 20 n 01 genus_Salpiglossis 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12912670 n 0000 | small genus of herbs of the southern Andes having large showy flowers -12912670 20 n 01 salpiglossis 0 003 @ 12205694 n 0000 #m 12912498 n 0000 ~ 12912801 n 0000 | any plant of the genus Salpiglossis -12912801 20 n 02 painted_tongue 0 Salpiglossis_sinuata 0 001 @ 12912670 n 0000 | Chilean herb having velvety funnel-shaped yellowish or violet flowers with long tonguelike styles at the corolla throat -12913004 20 n 01 genus_Schizanthus 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12913144 n 0000 | Chilean herbs with orchid-like flowers -12913144 20 n 03 butterfly_flower 1 poor_man's_orchid 0 schizanthus 0 002 @ 11669921 n 0000 #m 12913004 n 0000 | any plant of the genus Schizanthus having finely divided leaves and showy variegated flowers -12913352 20 n 02 Scopolia 0 genus_Scopolia 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12913524 n 0000 | genus of European perennial herbs yielding medicinal alkaloids -12913524 20 n 01 Scopolia_carniolica 0 002 @ 12205694 n 0000 #m 12913352 n 0000 | herb that is a source of scopolamine -12913645 20 n 02 Solandra 0 genus_Solandra 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12913791 n 0000 | shrubby climbers of tropical America -12913791 20 n 04 chalice_vine 0 trumpet_flower 2 cupflower 2 Solandra_guttata 0 002 @ 13112664 n 0000 #m 12913645 n 0000 | Mexican evergreen climbing plant having large solitary funnel-shaped fragrant yellow flowers with purple-brown ridges in the throat -12914048 20 n 02 Streptosolen 0 genus_Streptosolen 0 003 @ 11579418 n 0000 #m 12892226 n 0000 %m 12914193 n 0000 | one species: marmalade bush -12914193 20 n 04 marmalade_bush 0 fire_bush 2 fire-bush 2 Streptosolen_jamesonii 0 002 @ 13112664 n 0000 #m 12914048 n 0000 | evergreen South American shrub having showy trumpet-shaped orange flowers; grown as an ornamental or houseplant -12914433 20 n 04 Verbenaceae 0 family_Verbenaceae 0 verbena_family 0 vervain_family 0 007 @ 11566230 n 0000 #m 12808227 n 0000 %m 12914731 n 0000 %m 12915230 n 0000 %m 12915400 n 0000 %m 12916025 n 0000 %m 12916356 n 0000 | family of New World tropical and subtropical herbs and shrubs and trees -12914731 20 n 01 genus_Verbena 0 004 @ 11579418 n 0000 #m 12914433 n 0000 %m 12914923 n 0000 %m 12915140 n 0000 | type genus of the Verbenaceae; genus of herbaceous perennials and subshrubs -12914923 20 n 02 verbena 0 vervain 0 002 @ 11669921 n 0000 #m 12914731 n 0000 | any of numerous tropical or subtropical American plants of the genus Verbena grown for their showy spikes of variously colored flowers -12915140 20 n 01 lantana 0 002 @ 13100156 n 0000 #m 12914731 n 0000 | a flowering shrub -12915230 20 n 02 Avicennia 0 genus_Avicennia 0 004 @ 11579418 n 0000 #m 12914433 n 0000 %m 12915568 n 0000 %m 12915811 n 0000 | small genus of tropical shrubs or trees -12915400 20 n 02 Avicenniaceae 0 family_Avicenniaceae 0 002 @ 11566230 n 0000 #m 12914433 n 0000 | used in some classifications: coextensive with the genus Avicennia -12915568 20 n 02 black_mangrove 1 Avicennia_marina 0 002 @ 12524188 n 0000 #m 12915230 n 0000 | a mangrove of the West Indies and the southern Florida coast; occurs in dense thickets and has numerous short roots that bend up from the ground -12915811 20 n 02 white_mangrove 1 Avicennia_officinalis 0 002 @ 13104059 n 0000 #m 12915230 n 0000 | a small to medium-sized tree growing in brackish water especially along the shores of the southwestern Pacific -12916025 20 n 02 Aegiceras 0 genus_Aegiceras 0 003 @ 11579418 n 0000 #m 12914433 n 0000 %m 12916179 n 0000 | a genus of herbs of the family Verbenaceae -12916179 20 n 02 black_mangrove 2 Aegiceras_majus 0 002 @ 13104059 n 0000 #m 12916025 n 0000 | an Australian tree resembling the black mangrove of the West Indies and Florida -12916356 20 n 02 Tectona 0 genus_Tectona 0 003 @ 11579418 n 0000 #m 12914433 n 0000 %m 12916511 n 0000 | small genus of southeastern Asian tropics: teak -12916511 20 n 02 teak 0 Tectona_grandis 0 003 @ 13104059 n 0000 #m 12916356 n 0000 %s 12916723 n 0000 | tall East Indian timber tree now planted in western Africa and tropical America for its hard durable wood -12916723 20 n 02 teak 2 teakwood 0 002 @ 15098161 n 0000 #s 12916511 n 0000 | hard strong durable yellowish-brown wood of teak trees; resistant to insects and to warping; used for furniture and in shipbuilding -12916935 20 n 03 Euphorbiaceae 0 family_Euphorbiaceae 0 spurge_family 0 015 @ 11566682 n 0000 #m 12684640 n 0000 %m 12917338 n 0000 %m 12922283 n 0000 %m 12922600 n 0000 %m 12923439 n 0000 %m 12923839 n 0000 %m 12924452 n 0000 %m 12924984 n 0000 %m 12925394 n 0000 %m 12925836 n 0000 %m 12926316 n 0000 %m 12927354 n 0000 %m 12927921 n 0000 %m 12928690 n 0000 | a family of plants of order Geraniales -12917338 20 n 02 Euphorbia 0 genus_Euphorbia 0 022 @ 11585340 n 0000 #m 12916935 n 0000 %m 12917901 n 0000 %m 12918404 n 0000 %m 12918609 n 0000 %m 12918810 n 0000 %m 12918991 n 0000 %m 12919195 n 0000 %m 12919403 n 0000 %m 12919646 n 0000 %m 12919847 n 0000 %m 12920043 n 0000 %m 12920204 n 0000 %m 12920521 n 0000 %m 12920719 n 0000 %m 12920955 n 0000 %m 12921126 n 0000 %m 12921315 n 0000 %m 12921499 n 0000 %m 12921660 n 0000 %m 12921868 n 0000 %m 12922119 n 0000 | type genus of the Euphorbiaceae: very large genus of diverse plants all having milky juice -12917901 20 n 01 spurge 0 021 @ 13112664 n 0000 #m 12917338 n 0000 ~ 12918404 n 0000 ~ 12918609 n 0000 ~ 12918810 n 0000 ~ 12918991 n 0000 ~ 12919195 n 0000 ~ 12919403 n 0000 ~ 12919646 n 0000 ~ 12919847 n 0000 ~ 12920043 n 0000 ~ 12920204 n 0000 ~ 12920521 n 0000 ~ 12920719 n 0000 ~ 12920955 n 0000 ~ 12921126 n 0000 ~ 12921315 n 0000 ~ 12921499 n 0000 ~ 12921660 n 0000 ~ 12921868 n 0000 ~ 12922119 n 0000 | any of numerous plants of the genus Euphorbia; usually having milky often poisonous juice -12918404 20 n 04 caper_spurge 0 myrtle_spurge 0 mole_plant 0 Euphorbia_lathyris 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | poisonous Old World spurge; adventive in America; seeds yield a purgative oil -12918609 20 n 05 sun_spurge 0 wartweed 0 wartwort 0 devil's_milk 1 Euphorbia_helioscopia 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | not unattractive European weed whose flowers turn toward the sun -12918810 20 n 03 petty_spurge 0 devil's_milk 2 Euphorbia_peplus 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | an Old World spurge introduced as a weed in the eastern United States -12918991 20 n 03 medusa's_head 1 Euphorbia_medusae 0 Euphorbia_caput-medusae 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | African dwarf succulent perennial shrub with numerous slender drooping branches -12919195 20 n 04 wild_spurge 0 flowering_spurge 0 tramp's_spurge 0 Euphorbia_corollata 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | common perennial United States spurge having showy white petallike bracts -12919403 20 n 04 snow-on-the-mountain 0 snow-in-summer 2 ghost_weed 0 Euphorbia_marginata 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | annual spurge of western United States having showy white-bracted flower clusters and very poisonous milk -12919646 20 n 02 cypress_spurge 0 Euphorbia_cyparissias 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | Old World perennial having foliage resembling cypress; naturalized as a weed in the United States -12919847 20 n 03 leafy_spurge 0 wolf's_milk 0 Euphorbia_esula 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | tall European perennial naturalized and troublesome as a weed in eastern North America -12920043 20 n 02 hairy_spurge 0 Euphorbia_hirsuta 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | much-branched hirsute weed native to northeastern North America -12920204 20 n 07 poinsettia 0 Christmas_star 0 Christmas_flower 0 lobster_plant 0 Mexican_flameleaf 0 painted_leaf 1 Euphorbia_pulcherrima 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | tropical American plant having poisonous milk and showy tapering usually scarlet petallike leaves surrounding small yellow flowers -12920521 20 n 04 Japanese_poinsettia 0 mole_plant 2 paint_leaf 0 Euphorbia_heterophylla 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | showy poinsettia found from the southern United States to Peru -12920719 20 n 04 fire-on-the-mountain 0 painted_leaf 2 Mexican_fire_plant 0 Euphorbia_cyathophora 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | poinsettia of United States and eastern Mexico; often confused with Euphorbia heterophylla -12920955 20 n 02 wood_spurge 0 Euphorbia_amygdaloides 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | European perennial herb with greenish yellow terminal flower clusters -12921126 20 n 02 candelilla 0 Euphorbia_antisyphilitica 0 003 @ 12917901 n 0000 #m 12917338 n 0000 %s 14791292 n 0000 | wax-coated shrub of northern Mexico and southwestern United States -12921315 20 n 02 dwarf_spurge 0 Euphorbia_exigua 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | European erect or depressed annual weedy spurge adventive in northeastern United States -12921499 20 n 02 scarlet_plume 0 Euphorbia_fulgens 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | Mexican shrub often cultivated for its scarlet-bracted flowers -12921660 20 n 03 naboom 0 cactus_euphorbia 0 Euphorbia_ingens 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | small tree of dry open parts of southern Africa having erect angled branches suggesting candelabra -12921868 20 n 04 crown_of_thorns 0 Christ_thorn 0 Christ_plant 0 Euphorbia_milii 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | somewhat climbing bushy spurge of Madagascar having long woody spiny stems with few leaves and flowers with scarlet bracts -12922119 20 n 02 toothed_spurge 0 Euphorbia_dentata 0 002 @ 12917901 n 0000 #m 12917338 n 0000 | an annual weed of northeastern North America with dentate leaves -12922283 20 n 02 Acalypha 0 genus_Acalypha 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12922458 n 0000 | a genus of herbs and shrubs belonging to the family Euphorbiaceae -12922458 20 n 02 three-seeded_mercury 0 Acalypha_virginica 0 002 @ 13112664 n 0000 #m 12922283 n 0000 | weedy herb of eastern North America -12922600 20 n 01 genus_Croton 0 004 @ 11585340 n 0000 #m 12916935 n 0000 %m 12922763 n 0000 %m 12923108 n 0000 | tropical shrubs and herbs; source of croton oil -12922763 20 n 02 croton 1 Croton_tiglium 0 004 @ 13112664 n 0000 #m 12922600 n 0000 %s 12922933 n 0000 ~ 12923108 n 0000 | tropical Asiatic shrub; source of croton oil -12922933 20 n 01 croton_oil 0 002 @ 14966667 n 0000 #s 12922763 n 0000 | viscid acrid brownish-yellow oil from the seeds of Croton tiglium having a violent cathartic action -12923108 20 n 02 cascarilla 0 Croton_eluteria 0 003 @ 12922763 n 0000 #m 12922600 n 0000 %p 12923257 n 0000 | West Indian shrub with aromatic bark -12923257 20 n 03 cascarilla_bark 0 eleuthera_bark 0 sweetwood_bark 0 002 @ 13162297 n 0000 #p 12923108 n 0000 | aromatic bark of cascarilla; used as a tonic and for making incense -12923439 20 n 02 Codiaeum 0 genus_Codiaeum 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12923652 n 0000 | evergreen tropical trees and shrubs with thick and colorful leathery leaves; Malaya and Pacific islands -12923652 20 n 02 croton 2 Codiaeum_variegatum 0 002 @ 13112664 n 0000 #m 12923439 n 0000 | grown in many varieties for their brightly colored foliage; widely cultivated as a houseplant -12923839 20 n 02 Mercurialis 0 genus_Mercurialis 0 004 @ 11585340 n 0000 #m 12916935 n 0000 %m 12924036 n 0000 %m 12924284 n 0000 | a genus of slender herbs belonging to the family Euphorbiaceae -12924036 20 n 04 herb_mercury 0 herbs_mercury 0 boys-and-girls 0 Mercurialis_annua 0 002 @ 12205694 n 0000 #m 12923839 n 0000 | Eurafrican annual naturalized in America as a weed; formerly dried for use as a purgative, diuretic or antisyphilitic -12924284 20 n 03 dog's_mercury 0 dog_mercury 0 Mercurialis_perennis 0 002 @ 12205694 n 0000 #m 12923839 n 0000 | European perennial weedy plant with greenish flowers -12924452 20 n 02 Ricinus 0 genus_Ricinus 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12924623 n 0000 | a genus of herb having only one known species: castor-oil plant -12924623 20 n 05 castor-oil_plant 0 castor_bean_plant 0 palma_christi 0 palma_christ 0 Ricinus_communis 0 003 @ 13112664 n 0000 #m 12924452 n 0000 %p 11689678 n 0000 | large shrub of tropical Africa and Asia having large palmate leaves and spiny capsules containing seeds that are the source of castor oil and ricin; widely naturalized throughout the tropics -12924984 20 n 02 Cnidoscolus 0 genus_Cnidoscolus 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12925179 n 0000 | a genus of perennial plant with bristles; belonging to the family Euphorbiaceae -12925179 20 n 07 spurge_nettle 0 tread-softly 0 devil_nettle 0 pica-pica 0 Cnidoscolus_urens 0 Jatropha_urens 0 Jatropha_stimulosus 0 002 @ 12205694 n 0000 #m 12924984 n 0000 | a stinging herb of tropical America -12925394 20 n 02 Jatropha 0 genus_Jatropha 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12925583 n 0000 | a mainly tropical genus of American plant belonging to the family Euphorbiaceae -12925583 20 n 02 physic_nut 0 Jatropha_curcus 0 002 @ 13109733 n 0000 #m 12925394 n 0000 | small tropical American tree yielding purple dye and a tanning extract and bearing physic nuts containing a purgative oil that is poisonous in large quantities -12925836 20 n 03 Hevea 0 rubber_tree 0 genus_Hevea 0 002 @ 11585340 n 0000 #m 12916935 n 0000 | small genus of South American trees yielding latex; "rubber trees are usually cultivated in plantations" -12926039 20 n 03 Para_rubber_tree 0 caoutchouc_tree 0 Hevea_brasiliensis 0 001 @ 13109733 n 0000 | deciduous tree of the Amazon and Orinoco Rivers having leathery leaves and fragrant yellow-white flowers; it yields a milky juice that is the chief source of commercial rubber -12926316 20 n 02 Manihot 0 genus_Manihot 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12926480 n 0000 | genus of economically important tropical plants: cassava -12926480 20 n 02 cassava 0 casava 0 004 @ 13112664 n 0000 #m 12926316 n 0000 ~ 12926689 n 0000 ~ 12927194 n 0000 | any of several plants of the genus Manihot having fleshy roots yielding a nutritious starch -12926689 20 n 08 bitter_cassava 0 manioc 0 mandioc 0 mandioca 0 tapioca_plant 0 gari 0 Manihot_esculenta 0 Manihot_utilissima 0 003 @ 12926480 n 0000 %s 07932323 n 0000 %p 12927013 n 0000 | cassava with long tuberous edible roots and soft brittle stems; used especially to make cassiri (an intoxicating drink) and tapioca -12927013 20 n 02 cassava 2 manioc 2 003 @ 13125117 n 0000 #p 12926689 n 0000 %s 07619881 n 0000 | cassava root eaten as a staple food after drying and leaching; source of tapioca -12927194 20 n 02 sweet_cassava 0 Manihot_dulcis 0 001 @ 12926480 n 0000 | South American plant with roots used as a vegetable and herbage used for stock feed -12927354 20 n 02 Aleurites 0 genus_Aleurites 0 004 @ 11585340 n 0000 #m 12916935 n 0000 %m 12927494 n 0000 %m 12927758 n 0000 | candlenut -12927494 20 n 03 candlenut 1 varnish_tree 1 Aleurites_moluccana 0 003 @ 13109733 n 0000 #m 12927354 n 0000 %p 11689957 n 0000 | large tree native to southeastern Asia; the nuts yield oil used in varnishes; nut kernels strung together are used locally as candles -12927758 20 n 04 tung_tree 0 tung 0 tung-oil_tree 0 Aleurites_fordii 0 002 @ 13109733 n 0000 #m 12927354 n 0000 | Chinese tree bearing seeds that yield tung oil -12927921 20 n 02 Pedilanthus 0 genus_Pedilanthus 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %m 12928071 n 0000 | tropical American succulent shrubs -12928071 20 n 02 slipper_spurge 0 slipper_plant 0 004 @ 13112664 n 0000 #m 12927921 n 0000 ~ 12928307 n 0000 ~ 12928491 n 0000 | any of several tropical American shrubby succulent plants resembling cacti but having foot-shaped bracts -12928307 20 n 03 candelilla 2 Pedilanthus_bracteatus 0 Pedilanthus_pavonis 0 002 @ 12928071 n 0000 %s 14791292 n 0000 | wax-coated Mexican shrub related to Euphorbia antisyphilitica -12928491 20 n 06 Jewbush 0 Jew-bush 0 Jew_bush 0 redbird_cactus 0 redbird_flower 0 Pedilanthus_tithymaloides 0 001 @ 12928071 n 0000 | low tropical American shrub having powerful emetic properties -12928690 20 n 02 Sebastiana 0 genus_Sebastiana 0 003 @ 11585340 n 0000 #m 12916935 n 0000 %p 12928819 n 0000 | Mexican spurges -12928819 20 n 03 jumping_bean 0 jumping_seed 0 Mexican_jumping_bean 0 002 @ 13135832 n 0000 #p 12928690 n 0000 | seed of Mexican shrubs of the genus Sebastiana containing the larva of a moth whose movements cause the bean to jerk or tumble -12929061 20 n 03 Theaceae 0 family_Theaceae 0 tea_family 0 003 @ 11565385 n 0000 #m 12359026 n 0000 %m 12929237 n 0000 | a family of trees and shrubs of the order Parietales -12929237 20 n 01 genus_Camellia 0 004 @ 11575425 n 0000 #m 12929061 n 0000 %m 12929403 n 0000 %m 12929783 n 0000 | tropical Asiatic evergreen shrubs or small trees -12929403 20 n 02 camellia 0 camelia 0 003 @ 13112664 n 0000 #m 12929237 n 0000 ~ 12929600 n 0000 | any of several shrubs or small evergreen trees having solitary white or pink or reddish flowers -12929600 20 n 02 japonica 2 Camellia_japonica 0 001 @ 12929403 n 0000 | greenhouse shrub with glossy green leaves and showy fragrant rose-like flowers; cultivated in many varieties -12929783 20 n 02 tea 0 Camellia_sinensis 0 003 @ 13112664 n 0000 #m 12929237 n 0000 %p 07932841 n 0000 | a tropical evergreen shrub or small tree extensively cultivated in e.g. China and Japan and India; source of tea leaves; "tea has fragrant white flowers" -12930044 20 n 05 Umbelliferae 0 family_Umbelliferae 0 Apiaceae 0 family_Apiaceae 0 carrot_family 0 029 @ 11566682 n 0000 #m 12213197 n 0000 %m 12930778 n 0000 %m 12931109 n 0000 %m 12931449 n 0000 ~ 12931738 n 0000 %m 12932532 n 0000 %m 12933164 n 0000 %m 12933827 n 0000 %m 12934368 n 0000 %m 12934776 n 0000 %m 12935457 n 0000 %m 12935982 n 0000 %m 12936713 n 0000 %m 12936999 n 0000 %m 12937822 n 0000 %m 12938897 n 0000 %m 12939664 n 0000 %m 12940060 n 0000 %m 12940427 n 0000 %m 12940778 n 0000 ~ 12941360 n 0000 %m 12942270 n 0000 %m 12942930 n 0000 %m 12943302 n 0000 %m 12944238 n 0000 %m 12944590 n 0000 %m 12944960 n 0000 %m 12945708 n 0000 | plants having flowers in umbels: parsley; carrot; anise; caraway; celery; dill -12930778 20 n 02 umbellifer 0 umbelliferous_plant 0 003 @ 12205694 n 0000 #m 12930044 n 0000 ~ 12930951 n 0000 | any of numerous aromatic herbs of the family Umbelliferae -12930951 20 n 01 wild_parsley 0 001 @ 12930778 n 0000 | any of various uncultivated umbelliferous plants with foliage resembling that of carrots or parsley -12931109 20 n 02 Aethusa 0 genus_Aethusa 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12931231 n 0000 | fool's parsley -12931231 20 n 03 fool's_parsley 0 lesser_hemlock 0 Aethusa_cynapium 0 002 @ 13100156 n 0000 #m 12931109 n 0000 | European weed naturalized in America that resembles parsley but causes nausea and poisoning when eaten -12931449 20 n 02 Anethum 0 genus_Anethum 0 002 @ 11585340 n 0000 #m 12930044 n 0000 | dill -12931542 20 n 02 dill 0 Anethum_graveolens 0 003 @ 12205694 n 0000 %p 07827896 n 0000 %p 07828041 n 0000 | aromatic Old World herb having aromatic threadlike foliage and seeds used as seasoning -12931738 20 n 01 genus_Angelica 0 003 @ 11585340 n 0000 @ 12930044 n 0000 %m 12931906 n 0000 | biennial or perennial herbs of the northern hemisphere; have a taproot -12931906 20 n 02 angelica 0 angelique 0 004 @ 12205694 n 0000 #m 12931738 n 0000 ~ 12932173 n 0000 ~ 12932365 n 0000 | any of various tall and stout herbs of the genus Angelica having pinnately compound leaves and small white or greenish flowers in compound umbels -12932173 20 n 03 garden_angelica 0 archangel 0 Angelica_Archangelica 0 001 @ 12931906 n 0000 | a biennial cultivated herb; its stems are candied and eaten and its roots are used medicinally -12932365 20 n 02 wild_angelica 0 Angelica_sylvestris 0 001 @ 12931906 n 0000 | European herb with compound leaves and white flowers; adventive on Cape Breton Island -12932532 20 n 02 Anthriscus 0 genus_Anthriscus 0 004 @ 11585340 n 0000 #m 12930044 n 0000 %m 12932706 n 0000 %m 12932966 n 0000 | chervil: of Europe, North Africa and Asia -12932706 20 n 03 chervil 0 beaked_parsley 0 Anthriscus_cereifolium 0 003 @ 12205694 n 0000 #m 12932532 n 0000 %p 07816839 n 0000 | aromatic annual Old World herb cultivated for its finely divided and often curly leaves for use especially in soups and salads -12932966 20 n 03 cow_parsley 0 wild_chervil 0 Anthriscus_sylvestris 0 002 @ 12205694 n 0000 #m 12932532 n 0000 | coarse erect biennial Old World herb introduced as a weed in eastern North America -12933164 20 n 02 Apium 0 genus_Apium 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12933274 n 0000 | celery -12933274 20 n 02 wild_celery 2 Apium_graveolens 0 002 @ 12205694 n 0000 #m 12933164 n 0000 | herb of Europe and temperate Asia -12933403 20 n 03 celery 0 cultivated_celery 0 Apium_graveolens_dulce 0 003 @ 12205694 n 0000 %p 07730406 n 0000 %p 07828156 n 0000 | widely cultivated herb with aromatic leaf stalks that are eaten raw or cooked -12933616 20 n 06 celeriac 0 celery_root 0 knob_celery 0 root_celery 0 turnip-rooted_celery 0 Apium_graveolens_rapaceum 0 002 @ 12205694 n 0000 %p 07730708 n 0000 | grown for its thickened edible aromatic root -12933827 20 n 01 genus_Astrantia 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12934036 n 0000 | a genus of Eurasian herbs of the family Umbelliferae with aromatic roots and palmate leaves and showy flowers -12934036 20 n 02 astrantia 0 masterwort 0 003 @ 12205694 n 0000 #m 12933827 n 0000 ~ 12934174 n 0000 | any plant of the genus Astrantia -12934174 20 n 02 greater_masterwort 0 Astrantia_major 0 001 @ 12934036 n 0000 | European herb with aromatic roots and leaves in a basal tuft and showy compound umbels of white to rosy flowers -12934368 20 n 02 Carum 0 genus_Carum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12934479 n 0000 | caraway -12934479 20 n 02 caraway 0 Carum_carvi 0 005 @ 12205694 n 0000 #m 12934368 n 0000 %p 07816726 n 0000 %p 07827554 n 0000 ~ 12934685 n 0000 | a Eurasian plant with small white flowers yielding caraway seed -12934685 20 n 01 whorled_caraway 0 001 @ 12934479 n 0000 | a caraway with whorled leaves -12934776 20 n 02 Cicuta 0 genus_Cicuta 0 004 @ 11585340 n 0000 #m 12930044 n 0000 %m 12934985 n 0000 %m 12935166 n 0000 | small genus of perennial herbs having deadly poisonous tuberous roots: water hemlock -12934985 20 n 02 water_hemlock 0 Cicuta_verosa 0 002 @ 13100156 n 0000 #m 12934776 n 0000 | tall erect highly poisonous Eurasiatic perennial herb locally abundant in marshy areas -12935166 20 n 03 spotted_cowbane 0 spotted_hemlock 0 spotted_water_hemlock 0 002 @ 13100156 n 0000 #m 12934776 n 0000 | tall biennial water hemlock of northeastern North America having purple-spotted stems and clusters of extremely poisonous tuberous roots resembling small sweet potatoes -12935457 20 n 02 Conium 0 genus_Conium 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12935609 n 0000 | small genus of highly toxic biennials: hemlock -12935609 20 n 07 hemlock 3 poison_hemlock 0 poison_parsley 0 California_fern 0 Nebraska_fern 0 winter_fern 0 Conium_maculatum 0 002 @ 13100156 n 0000 #m 12935457 n 0000 | large branching biennial herb native to Eurasia and Africa and adventive in North America having large fernlike leaves and white flowers; usually found in damp habitats; all parts extremely poisonous -12935982 20 n 02 Conopodium 0 genus_Conopodium 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12936155 n 0000 | a genus of dicotyledonous plants of the family Umbelliferae -12936155 20 n 02 earthnut 1 Conopodium_denudatum 0 002 @ 12205694 n 0000 #m 12935982 n 0000 | a common European plant having edible tubers with the flavor of roasted chestnuts -12936333 20 n 02 Coriandrum 0 genus_Coriandrum 0 002 @ 11585340 n 0000 %m 12936469 n 0000 | small genus of annual Mediterranean herbs -12936469 20 n 05 coriander 0 coriander_plant 0 Chinese_parsley 0 cilantro 0 Coriandrum_sativum 0 004 @ 12205694 n 0000 #m 12936333 n 0000 %p 07817315 n 0000 %p 07817465 n 0000 | Old World herb with aromatic leaves and seed resembling parsley -12936713 20 n 02 Cuminum 0 genus_Cuminum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %p 12936826 n 0000 | cumin -12936826 20 n 02 cumin 0 Cuminum_cyminum 0 003 @ 12205694 n 0000 #p 12936713 n 0000 %p 07814634 n 0000 | dwarf Mediterranean annual long cultivated for its aromatic seeds -12936999 20 n 02 Daucus 0 genus_Daucus 0 004 @ 11585340 n 0000 #m 12930044 n 0000 %m 12937130 n 0000 %m 12937388 n 0000 | carrot -12937130 20 n 03 wild_carrot 0 Queen_Anne's_lace 0 Daucus_carota 0 002 @ 11672400 n 0000 #m 12936999 n 0000 | a widely naturalized Eurasian herb with finely cut foliage and white compound umbels of small white or yellowish flowers and thin yellowish roots -12937388 20 n 03 carrot 0 cultivated_carrot 0 Daucus_carota_sativa 0 004 @ 12205694 n 0000 #m 12936999 n 0000 %p 07730207 n 0000 %p 12937678 n 0000 | perennial plant widely cultivated as an annual in many varieties for its long conical orange edible roots; temperate and tropical regions -12937678 20 n 01 carrot 2 003 @ 13125117 n 0000 #p 12937388 n 0000 + 03132982 a 0101 | deep orange edible root of the cultivated carrot plant -12937822 20 n 02 Eryngium 0 genus_Eryngium 0 006 @ 11585340 n 0000 #m 12930044 n 0000 %m 12938081 n 0000 %m 12938193 n 0000 %m 12938445 n 0000 %m 12938667 n 0000 | large genus of decorative plants with thistlelike flower heads; cosmopolitan in distribution -12938081 20 n 02 eryngo 0 eringo 0 002 @ 13118707 n 0000 #m 12937822 n 0000 | any plant of the genus Eryngium -12938193 20 n 04 sea_holly 1 sea_holm 0 sea_eryngium 0 Eryngium_maritimum 0 002 @ 13112664 n 0000 #m 12937822 n 0000 | European evergreen eryngo with twisted spiny leaves naturalized on United States east coast; roots formerly used as an aphrodisiac -12938445 20 n 02 button_snakeroot 1 Eryngium_aquaticum 0 002 @ 12205694 n 0000 #m 12937822 n 0000 | coarse prickly perennial eryngo with aromatic roots; southeastern United States; often confused with rattlesnake master -12938667 20 n 04 rattlesnake_master 0 rattlesnake's_master 0 button_snakeroot 2 Eryngium_yuccifolium 0 002 @ 11553240 n 0000 #m 12937822 n 0000 | coarse prickly perennial eryngo of United States thought to cure rattlesnake bite -12938897 20 n 02 Foeniculum 0 genus_Foeniculum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12939104 n 0000 | very small genus of aromatic European herbs with pinnately compound leaves and yellow flowers -12939104 20 n 01 fennel 0 004 @ 12205694 n 0000 #m 12938897 n 0000 ~ 12939282 n 0000 ~ 12939479 n 0000 | any of several aromatic herbs having edible seeds and leaves and stems -12939282 20 n 02 common_fennel 0 Foeniculum_vulgare 0 003 @ 12939104 n 0000 %p 07817758 n 0000 %p 07818029 n 0000 | strongly aromatic with a smell of aniseed; leaves and seeds used for seasoning -12939479 20 n 03 Florence_fennel 0 Foeniculum_dulce 0 Foeniculum_vulgare_dulce 0 002 @ 12939104 n 0000 %p 07817871 n 0000 | grown especially for its edible aromatic bulbous stem base -12939664 20 n 02 Heracleum 0 genus_Heracleum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12939874 n 0000 | widely distributed genus of plants with usually thick rootstocks and large umbels of white flowers -12939874 20 n 03 cow_parsnip 0 hogweed 0 Heracleum_sphondylium 0 002 @ 12205694 n 0000 #m 12939664 n 0000 | tall coarse plant having thick stems and cluster of white to purple flowers -12940060 20 n 02 Levisticum 0 genus_Levisticum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12940226 n 0000 | genus of aromatic European herbs with yellow flowers -12940226 20 n 02 lovage 0 Levisticum_officinale 0 003 @ 12205694 n 0000 #m 12940060 n 0000 %p 07818825 n 0000 | herb native to southern Europe; cultivated for its edible stalks and foliage and seeds -12940427 20 n 02 Myrrhis 0 genus_Myrrhis 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12940609 n 0000 | European perennial herbs having pinnate leaves and umbels of white flowers -12940609 20 n 02 sweet_cicely 0 Myrrhis_odorata 0 003 @ 12205694 n 0000 #m 12940427 n 0000 %p 07821404 n 0000 | European herb with soft ferny leaves and white flowers -12940778 20 n 02 Oenanthe 0 genus_Oenanthe 0 004 @ 11585340 n 0000 #m 12930044 n 0000 %m 12940939 n 0000 %m 12941220 n 0000 | poisonous herbs: water dropworts -12940939 20 n 03 water_dropwort 0 hemlock_water_dropwort 0 Oenanthe_crocata 0 002 @ 13100156 n 0000 #m 12940778 n 0000 | European poisonous herb having tuberous roots, yellow juice that stains the skin, yellow flowers and foliage resembling celery; all parts extremely poisonous -12941220 20 n 02 water_fennel 0 Oenanthe_aquatica 0 002 @ 13100156 n 0000 #m 12940778 n 0000 | European poisonous herb with fibrous roots -12941360 20 n 02 Pastinaca 0 genus_Pastinaca 0 003 @ 11585340 n 0000 @ 12930044 n 0000 %m 12941536 n 0000 | a rosid dicot genus of the family Umbelliferae; includes parsnips -12941536 20 n 02 parsnip 0 Pastinaca_sativa 0 004 @ 12205694 n 0000 #m 12941360 n 0000 ~ 12941717 n 0000 ~ 12942025 n 0000 | a strong-scented plant cultivated for its edible root -12941717 20 n 01 cultivated_parsnip 0 003 @ 12941536 n 0000 %p 07735404 n 0000 %p 12941914 n 0000 | European biennial having a long fusiform root that has been made palatable through cultivation -12941914 20 n 01 parsnip 2 002 @ 13125117 n 0000 #p 12941717 n 0000 | the whitish root of cultivated parsnip -12942025 20 n 02 wild_parsnip 0 madnep 0 002 @ 12941536 n 0000 @ 13085113 n 0000 | biennial weed in Europe and America having large pinnate leaves and yellow flowers and a bitter and somewhat poisonous root; the ancestor of cultivated parsnip -12942270 20 n 02 Petroselinum 0 genus_Petroselinum 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12942395 n 0000 | parsley -12942395 20 n 02 parsley 0 Petroselinum_crispum 0 004 @ 12205694 n 0000 #m 12942270 n 0000 ~ 12942572 n 0000 ~ 12942729 n 0000 | annual or perennial herb with aromatic leaves -12942572 20 n 03 Italian_parsley 0 flat-leaf_parsley 0 Petroselinum_crispum_neapolitanum 0 001 @ 12942395 n 0000 | a variety of parsley having flat leaves -12942729 20 n 03 Hamburg_parsley 0 turnip-rooted_parsley 0 Petroselinum_crispum_tuberosum 0 001 @ 12942395 n 0000 | parsley with smooth leaves and enlarged edible taproot resembling a savory parsnip -12942930 20 n 02 Pimpinella 0 genus_Pimpinella 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12943049 n 0000 | anise -12943049 20 n 03 anise 0 anise_plant 0 Pimpinella_anisum 0 003 @ 12205694 n 0000 #m 12942930 n 0000 %p 07826653 n 0000 | native to Egypt but cultivated widely for its aromatic seeds and the oil from them used medicinally and as a flavoring in cookery -12943302 20 n 02 Sanicula 0 genus_Sanicula 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12943443 n 0000 | chiefly American herbs: sanicle -12943443 20 n 02 sanicle 0 snakeroot 1 005 @ 12205694 n 0000 #m 12943302 n 0000 ~ 12943743 n 0000 ~ 12943912 n 0000 ~ 12944095 n 0000 | a plant of the genus Sanicula having palmately compound leaves and unisexual flowers in panicled umbels followed by bristly fruit; reputed to have healing powers -12943743 20 n 02 footsteps-of-spring 0 Sanicula_arctopoides 0 001 @ 12943443 n 0000 | sanicle of northwestern United States and British Columbia having yellow flowers -12943912 20 n 02 purple_sanicle 0 Sanicula_bipinnatifida 0 001 @ 12943443 n 0000 | sanicle of northwestern United States and British Columbia having yellow or red or purple flowers -12944095 20 n 02 European_sanicle 0 Sanicula_Europaea 0 001 @ 12943443 n 0000 | sanicle of Europe and Asia having white to pale pink flowers -12944238 20 n 02 Seseli 0 genus_Seseli 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12944390 n 0000 | a rosid dicot genus that includes moon carrots -12944390 20 n 02 moon_carrot 0 stone_parsley 2 002 @ 12205694 n 0000 #m 12944238 n 0000 | any plant of the genus Seseli having dense umbels of small white or pink flowers and finely divided foliage -12944590 20 n 02 Sison 0 genus_Sison 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12944723 n 0000 | genus including stone parsley -12944723 20 n 02 stone_parsley 1 Sison_amomum 0 002 @ 12205694 n 0000 #m 12944590 n 0000 | a slender roadside herb of western Europe and Mediterranean areas that has foliage resembling parsley and has white flowers with aromatic seeds -12944960 20 n 02 Sium 0 genus_Sium 0 005 @ 11585340 n 0000 #m 12930044 n 0000 %m 12945177 n 0000 %m 12945366 n 0000 %m 12945549 n 0000 | perennial of wet and marshy places in the northern hemisphere: water parsnips -12945177 20 n 02 water_parsnip 0 Sium_suave 0 002 @ 13122364 n 0000 #m 12944960 n 0000 | stout white-flowered perennial found wild in shallow fresh water; northern United States and Asia -12945366 20 n 02 greater_water_parsnip 0 Sium_latifolium 0 002 @ 13122364 n 0000 #m 12944960 n 0000 | large stout white-flowered perennial found wild in shallow fresh water; Europe -12945549 20 n 02 skirret 0 Sium_sisarum 0 002 @ 13122364 n 0000 #m 12944960 n 0000 | an Asiatic herb cultivated in Europe for its sweet edible tuberous root -12945708 20 n 02 Smyrnium 0 genus_Smyrnium 0 003 @ 11585340 n 0000 #m 12930044 n 0000 %m 12945828 n 0000 | Alexanders -12945828 20 n 05 Alexander 0 Alexanders 0 black_lovage 0 horse_parsley 0 Smyrnium_olusatrum 0 002 @ 12205694 n 0000 #m 12945708 n 0000 | European herb somewhat resembling celery widely naturalized in Britain coastal regions and often cultivated as a potherb -12946088 20 n 03 Cornaceae 0 family_Cornaceae 0 dogwood_family 0 008 @ 11566682 n 0000 #m 12213197 n 0000 %m 12946432 n 0000 %m 12946578 n 0000 %m 12948633 n 0000 %m 12948849 n 0000 %m 12948978 n 0000 %m 12949549 n 0000 | a rosid dicot family of the order Umbellales including: genera Aucuba, Cornus, Corokia, Curtisia, Griselinia, Helwingia -12946432 20 n 02 Aucuba 0 genus_Aucuba 0 002 @ 11585340 n 0000 #m 12946088 n 0000 | hardy evergreen dioecious shrubs and small trees from Japan -12946578 20 n 02 Cornus 0 genus_Cornus 0 003 @ 11585340 n 0000 #m 12946088 n 0000 %m 12946849 n 0000 | a rosid dicot genus of the family Cornaceae including: dogwood; cornel: perennial chiefly deciduous shrubs or small trees of temperate regions of northern hemisphere -12946849 20 n 03 dogwood 0 dogwood_tree 0 cornel 0 010 @ 13109733 n 0000 #m 12946578 n 0000 %s 12947171 n 0000 ~ 12947313 n 0000 ~ 12947544 n 0000 ~ 12947756 n 0000 ~ 12947895 n 0000 ~ 12948053 n 0000 ~ 12948251 n 0000 ~ 12948495 n 0000 | a tree of shrub of the genus Cornus often having showy bracts resembling flowers -12947171 20 n 01 dogwood 2 002 @ 15098161 n 0000 #s 12946849 n 0000 | hard tough wood of any dogwood of the genus Cornus; resembles boxwood -12947313 20 n 03 common_white_dogwood 0 eastern_flowering_dogwood 0 Cornus_florida 0 001 @ 12946849 n 0000 | deciduous tree; celebrated for its large white or pink bracts and stunning autumn color that is followed by red berries -12947544 20 n 06 red_osier 2 red_osier_dogwood 0 red_dogwood 1 American_dogwood 0 redbrush 0 Cornus_stolonifera 0 001 @ 12946849 n 0000 | common North American shrub with reddish purple twigs and white flowers -12947756 20 n 02 silky_dogwood 1 Cornus_obliqua 0 001 @ 12946849 n 0000 | shrub of eastern North America closely resembling silky cornel -12947895 20 n 03 silky_cornel 0 silky_dogwood 2 Cornus_amomum 0 001 @ 12946849 n 0000 | shrub of eastern North America having purplish stems and blue fruit -12948053 20 n 05 common_European_dogwood 0 red_dogwood 2 blood-twig 0 pedwood 0 Cornus_sanguinea 0 001 @ 12946849 n 0000 | European deciduous shrub turning red in autumn having dull white flowers -12948251 20 n 05 bunchberry 0 dwarf_cornel 0 crackerberry 0 pudding_berry 0 Cornus_canadensis 0 001 @ 12946849 n 0000 | creeping perennial herb distinguished by red berries and clustered leaf whorls at the tips of shoots; Greenland to Alaska -12948495 20 n 02 cornelian_cherry 0 Cornus_mas 0 001 @ 12946849 n 0000 | deciduous European shrub or small tree having bright red fruit -12948633 20 n 02 Corokia 0 genus_Corokia 0 002 @ 11585340 n 0000 #m 12946088 n 0000 | evergreen shrubs with intricately twisted wiry stems that in summer are smothered in small yellow flowers; grows in New Zealand -12948849 20 n 02 Curtisia 0 genus_Curtisia 0 002 @ 11585340 n 0000 #m 12946088 n 0000 | a large evergreen tree of South Africa -12948978 20 n 02 Griselinia 0 genus_Griselinia 0 004 @ 11585340 n 0000 #m 12946088 n 0000 %m 12949160 n 0000 %m 12949361 n 0000 | evergreen shrubs of New Zealand and South America -12949160 20 n 02 puka 2 Griselinia_lucida 0 002 @ 13112664 n 0000 #m 12948978 n 0000 | South American shrub or small tree having long shining evergreen leaves and panicles of green or yellow flowers -12949361 20 n 02 kapuka 0 Griselinia_littoralis 0 002 @ 13112664 n 0000 #m 12948978 n 0000 | small New Zealand broadleaf evergreen tree often cultivated in warm regions as an ornamental -12949549 20 n 02 Helwingia 0 genus_Helwingia 0 002 @ 11585340 n 0000 #m 12946088 n 0000 | deciduous dioecious shrubs native to woodland thickets in low mountains in Japan -12949722 20 n 03 Valerianaceae 0 family_Valerianaceae 0 valerian_family 0 005 @ 11566230 n 0000 #m 12659730 n 0000 %m 12949955 n 0000 %m 12950501 n 0000 %m 12950984 n 0000 | genus of mostly herbs having a characteristic fetid odor -12949955 20 n 02 Valeriana 0 genus_Valeriana 0 003 @ 11579418 n 0000 #m 12949722 n 0000 %m 12950126 n 0000 | genus of widely distributed perennial herbs and some shrubs -12950126 20 n 01 valerian 0 003 @ 11669921 n 0000 #m 12949955 n 0000 ~ 12950314 n 0000 | a plant of the genus Valeriana having lobed or dissected leaves and cymose white or pink flowers -12950314 20 n 03 common_valerian 0 garden_heliotrope 0 Valeriana_officinalis 0 001 @ 12950126 n 0000 | tall rhizomatous plant having very fragrant flowers and rhizomes used medicinally -12950501 20 n 02 Valerianella 0 genus_Valerianella 0 003 @ 11579418 n 0000 #m 12949722 n 0000 %m 12950669 n 0000 | genus of Old World annual herbs widely naturalized -12950669 20 n 01 corn_salad 0 003 @ 12205694 n 0000 #m 12950501 n 0000 ~ 12950796 n 0000 | a plant of the genus Valerianella -12950796 20 n 04 common_corn_salad 0 lamb's_lettuce 0 Valerianella_olitoria 0 Valerianella_locusta 0 001 @ 12950669 n 0000 | widely cultivated as a salad crop and pot herb; often a weed -12950984 20 n 02 Centranthus 0 genus_Centranthus 0 003 @ 11579418 n 0000 #m 12949722 n 0000 %m 12951146 n 0000 | genus of southern European herbs and subshrubs -12951146 20 n 03 red_valerian 0 French_honeysuckle 2 Centranthus_ruber 0 002 @ 11669921 n 0000 #m 12950984 n 0000 | European herb with small fragrant crimson or white spurred flowers -12951331 20 n 02 cutch 0 kutch 0 001 @ 15067025 n 0000 | tannin extract derived from any of several mangrove barks of Pacific areas -12951465 20 n 02 Hymenophyllaceae 0 family_Hymenophyllaceae 0 004 @ 13166338 n 0000 #m 13169674 n 0000 %m 12951668 n 0000 %m 12952022 n 0000 | terrestrial (hygrophytic) or epiphytic ferns: filmy ferns -12951668 20 n 02 Hymenophyllum 0 genus_Hymenophyllum 0 003 @ 13167078 n 0000 #m 12951465 n 0000 %m 12951835 n 0000 | type genus of the Hymenophyllaceae: filmy ferns -12951835 20 n 02 filmy_fern 0 film_fern 0 002 @ 11545714 n 0000 #m 12951668 n 0000 | any fern of the genus Hymenophyllum growing in tropical humid regions and having translucent leaves -12952022 20 n 02 Trichomanes 0 genus_Trichomanes 0 003 @ 13167078 n 0000 #m 12951465 n 0000 %m 12952165 n 0000 | bristle ferns; kidney ferns -12952165 20 n 02 bristle_fern 0 filmy_fern 2 005 @ 11545714 n 0000 #m 12952022 n 0000 ~ 12952469 n 0000 ~ 12952590 n 0000 ~ 12952717 n 0000 | any fern of the genus Trichomanes having large pinnatifid often translucent fronds; most are epiphytic on tree branches and twigs or terrestrial on mossy banks -12952469 20 n 02 hare's-foot_bristle_fern 0 Trichomanes_boschianum 0 001 @ 12952165 n 0000 | a variety of bristle fern -12952590 20 n 02 Killarney_fern 0 Trichomanes_speciosum 0 001 @ 12952165 n 0000 | large stout fern of extreme western Europe -12952717 20 n 02 kidney_fern 0 Trichomanes_reniforme 0 001 @ 12952165 n 0000 | large fern of New Zealand having kidney-shaped fronds -12952852 20 n 02 Osmundaceae 0 family_Osmundaceae 0 005 @ 13166338 n 0000 #m 13169674 n 0000 %m 12953079 n 0000 %m 12954185 n 0000 %m 12954634 n 0000 | large family of ferns widely distributed in temperate and tropical areas -12953079 20 n 01 genus_Osmunda 0 003 @ 13167078 n 0000 #m 12952852 n 0000 %m 12953206 n 0000 | type genus of the Osmundaceae -12953206 20 n 02 flowering_fern 0 osmund 0 005 @ 11545714 n 0000 #m 12953079 n 0000 ~ 12953484 n 0000 ~ 12953712 n 0000 ~ 12953919 n 0000 | any fern of the genus Osmunda: large ferns with creeping rhizomes; naked sporangia are on modified fronds that resemble flower clusters -12953484 20 n 06 royal_fern 0 royal_osmund 0 king_fern 1 ditch_fern 0 French_bracken 0 Osmunda_regalis 0 001 @ 12953206 n 0000 | large deeply rooted fern of worldwide distribution with upright bipinnate compound tufted fronds -12953712 20 n 02 interrupted_fern 0 Osmunda_clatonia 0 001 @ 12953206 n 0000 | North American fern having tall erect pinnate fronds and a few sporogenous pinnae at or near the center of the fertile fronds -12953919 20 n 04 cinnamon_fern 0 fiddlehead 1 fiddlehead_fern 0 Osmunda_cinnamonea 0 001 @ 12953206 n 0000 | New World fern having woolly cinnamon-colored spore-bearing fronds in early spring later surrounded by green fronds; the early uncurling fronds are edible -12954185 20 n 02 Leptopteris 0 genus_Leptopteris 0 003 @ 13167078 n 0000 #m 12952852 n 0000 %m 12954353 n 0000 | including some ferns sometimes placed in genus Todea -12954353 20 n 06 crape_fern 1 Prince-of-Wales_fern 0 Prince-of-Wales_feather 0 Prince-of-Wales_plume 0 Leptopteris_superba 0 Todea_superba 0 002 @ 11545714 n 0000 #m 12954185 n 0000 | New Zealand with pinnate fronds and a densely woolly stalks; sometimes included in genus Todea -12954634 20 n 02 Todea 0 genus_Todea 0 003 @ 13167078 n 0000 #m 12952852 n 0000 %m 12954799 n 0000 | a genus of delicate ferns belonging to the family Osmundaceae -12954799 20 n 03 crepe_fern 2 king_fern 2 Todea_barbara 0 002 @ 11545714 n 0000 #m 12954634 n 0000 | fern of rain forests of tropical Australia and New Zealand and South Africa -12954978 20 n 02 Schizaeaceae 0 family_Schizaeaceae 0 006 @ 13166338 n 0000 #m 13169219 n 0000 %m 12955191 n 0000 %m 12955639 n 0000 %m 12956029 n 0000 %m 12956791 n 0000 | small family of mainly tropical ferns -12955191 20 n 02 Schizaea 0 genus_Schizaea 0 003 @ 13167078 n 0000 #m 12954978 n 0000 %m 12955414 n 0000 | type genus of the Schizaeaceae cosmopolitan especially in tropics; small leptosporangiate ferns: curly grass fern -12955414 20 n 03 curly_grass 0 curly_grass_fern 0 Schizaea_pusilla 0 002 @ 11545714 n 0000 #m 12955191 n 0000 | rare small fern of northeastern North America having numerous slender spiraling fronds and forming dense tufts -12955639 20 n 02 Anemia 0 genus_Anemia 0 003 @ 13167078 n 0000 #m 12954978 n 0000 %m 12955840 n 0000 | genus of terrestrial or lithophytic ferns having pinnatifid fronds; chiefly of tropical America -12955840 20 n 02 pine_fern 0 Anemia_adiantifolia 0 002 @ 11545714 n 0000 #m 12955639 n 0000 | fern of Florida and West Indies and Central America with rhizome densely clad in grown hairs -12956029 20 n 02 Lygodium 0 genus_Lygodium 0 003 @ 13167078 n 0000 #m 12954978 n 0000 %m 12956170 n 0000 | chiefly tropical climbing ferns -12956170 20 n 01 climbing_fern 0 005 @ 11545714 n 0000 @ 13102409 n 0000 #m 12956029 n 0000 ~ 12956367 n 0000 ~ 12956588 n 0000 | any of several ferns of the genus Lygodium that climb by twining -12956367 20 n 03 creeping_fern 0 Hartford_fern 0 Lygodium_palmatum 0 001 @ 12956170 n 0000 | delicate fern of the eastern United States having a twining stem and palmately-lobed sterile fronds and forked fertile fronds -12956588 20 n 04 climbing_maidenhair 0 climbing_maidenhair_fern 0 snake_fern 0 Lygodium_microphyllum 0 001 @ 12956170 n 0000 | tropical fern widespread in Old World; naturalized in Jamaica and Florida -12956791 20 n 02 Mohria 0 genus_Mohria 0 003 @ 13167078 n 0000 #m 12954978 n 0000 %m 12956922 n 0000 | African terrestrial ferns -12956922 20 n 02 scented_fern 3 Mohria_caffrorum 0 002 @ 11545714 n 0000 #m 12956791 n 0000 | sweetly scented African fern with narrow bipinnate fronds -12957076 20 n 02 aquatic_fern 0 water_fern 0 008 @ 11545714 n 0000 ~ 12957608 n 0000 ~ 12958261 n 0000 ~ 12958615 n 0000 ~ 12959074 n 0000 ~ 12959538 n 0000 ~ 13171797 n 0000 ~ 13171975 n 0000 | ferns that grow in water -12957298 20 n 02 Marsileaceae 0 family_Marsileaceae 0 005 @ 13166338 n 0000 #m 13169219 n 0000 %m 12957467 n 0000 %m 12958140 n 0000 %m 12958470 n 0000 | clover ferns -12957467 20 n 02 Marsilea 0 genus_Marsilea 0 004 @ 13167078 n 0000 #m 12957298 n 0000 %m 12957608 n 0000 %m 12957924 n 0000 | clover ferns -12957608 20 n 02 clover_fern 0 pepperwort 2 004 @ 12957076 n 0000 #m 12957467 n 0000 ~ 12957803 n 0000 ~ 12957924 n 0000 | any of several water ferns of the genus Marsilea having four leaflets -12957803 20 n 04 nardoo 0 nardo 0 common_nardoo 0 Marsilea_drummondii 0 001 @ 12957608 n 0000 | Australian clover fern -12957924 20 n 02 water_clover 0 Marsilea_quadrifolia 0 002 @ 12957608 n 0000 #m 12957467 n 0000 | water fern of Europe and Asia and the eastern United States distinguished by four leaflets resembling clover leaves -12958140 20 n 02 Pilularia 0 genus_Pilularia 0 003 @ 13167078 n 0000 #m 12957298 n 0000 %m 12958261 n 0000 | pillworts -12958261 20 n 02 pillwort 0 Pilularia_globulifera 0 002 @ 12957076 n 0000 #m 12958140 n 0000 | European water fern found around margins of bodies of water or in wet acid soil having small globose sporocarps -12958470 20 n 01 genus_Regnellidium 0 003 @ 13167078 n 0000 #m 12957298 n 0000 %m 12958615 n 0000 | one species of aquatic or semiaquatic fern -12958615 20 n 02 regnellidium 0 Regnellidium_diphyllum 0 002 @ 12957076 n 0000 #m 12958470 n 0000 | small latex-containing aquatic fern of southern Brazil -12958772 20 n 02 Salviniaceae 0 family_Salviniaceae 0 004 @ 13166338 n 0000 #m 13169219 n 0000 %m 12958921 n 0000 %m 12959371 n 0000 | water ferns -12958921 20 n 02 Salvinia 0 genus_Salvinia 0 003 @ 13167078 n 0000 #m 12958772 n 0000 %m 12959074 n 0000 | type genus of the Salviniaceae: water ferns -12959074 20 n 03 floating-moss 0 Salvinia_rotundifolia 0 Salvinia_auriculata 0 002 @ 12957076 n 0000 #m 12958921 n 0000 | free-floating aquatic ferns -12959226 20 n 02 Azollaceae 0 family_Azollaceae 0 002 @ 13166338 n 0000 #m 13169674 n 0000 | used in some classifications for the genus Azolla -12959371 20 n 02 Azolla 0 genus_Azolla 0 003 @ 13167078 n 0000 #m 12958772 n 0000 %m 12959538 n 0000 | a genus of fern sometimes placed in its own family Azollaceae -12959538 20 n 04 mosquito_fern 0 floating_fern 0 Carolina_pond_fern 0 Azolla_caroliniana 0 002 @ 12957076 n 0000 #m 12959371 n 0000 | small free-floating aquatic fern from the eastern United States to tropical America; naturalized in western and southern Europe -12959802 20 n 02 Ophioglossales 0 order_Ophioglossales 0 003 @ 11534677 n 0000 #m 13169219 n 0000 %m 12959967 n 0000 | coextensive with the family Ophioglossaceae -12959967 20 n 02 Ophioglossaceae 0 family_Ophioglossaceae 0 005 @ 13166338 n 0000 #m 12959802 n 0000 %m 12960211 n 0000 %m 12960729 n 0000 %m 12961689 n 0000 | a family of succulent ferns of order Ophioglossales; cosmopolitan in distribution -12960211 20 n 02 Ophioglossum 0 genus_Ophioglossum 0 003 @ 13167078 n 0000 #m 12959967 n 0000 %m 12960378 n 0000 | the type genus of the fern family Ophioglossaceae -12960378 20 n 02 adder's_tongue 0 adder's_tongue_fern 0 003 @ 11545714 n 0000 #m 12960211 n 0000 ~ 12960552 n 0000 | ferns with fertile spikes shaped like a snake's tongue -12960552 20 n 02 ribbon_fern 1 Ophioglossum_pendulum 0 001 @ 12960378 n 0000 | epiphytic fern with straplike usually twisted fronds of tropical Asia and Polynesia and America -12960729 20 n 02 Botrychium 0 genus_Botrychium 0 003 @ 13167078 n 0000 #m 12959967 n 0000 %m 12960863 n 0000 | grape fern; moonwort -12960863 20 n 01 grape_fern 0 006 @ 11545714 n 0000 #m 12960729 n 0000 ~ 12961112 n 0000 ~ 12961242 n 0000 ~ 12961393 n 0000 ~ 12961536 n 0000 | a fern of the genus Botrychium having a fertile frond bearing small grapelike clusters of spore cases -12961112 20 n 03 moonwort 0 common_moonwort 0 Botrychium_lunaria 0 001 @ 12960863 n 0000 | of America and Eurasia and Australia -12961242 20 n 03 daisyleaf_grape_fern 0 daisy-leaved_grape_fern 0 Botrychium_matricariifolium 0 001 @ 12960863 n 0000 | of North America and Eurasia -12961393 20 n 02 leathery_grape_fern 0 Botrychium_multifidum 0 001 @ 12960863 n 0000 | European fern with leathery and sparsely hairy fronds -12961536 20 n 02 rattlesnake_fern 0 Botrychium_virginianum 0 001 @ 12960863 n 0000 | American fern whose clustered sporangia resemble a snake's rattle -12961689 20 n 02 Helminthostachys 0 genus_Helminthostachys 0 003 @ 13167078 n 0000 #m 12959967 n 0000 %m 12961879 n 0000 | one species: terrestrial fern of southeastern Asia and Australia -12961879 20 n 02 flowering_fern 2 Helminthostachys_zeylanica 0 002 @ 11545714 n 0000 #m 12961689 n 0000 | Australasian fern with clusters of sporangia on stems of fertile fronds -12962059 20 n 01 soldier_grainy_club 0 001 @ 13024653 n 0000 | a variety of grainy club -12962149 20 n 01 ostiole 0 001 @ 05245906 n 0000 | a small pore especially one in the reproductive bodies of certain algae and fungi through which spores pass -12962310 20 n 01 perithecium 0 001 @ 11532816 n 0000 | flask-shaped ascocarp -12962389 20 n 01 stroma 0 001 @ 13095685 n 0000 | the dense colorless framework of a chloroplast -12962488 20 n 01 stroma 1 001 @ 13095685 n 0000 | a mass of fungal tissue that has spore-bearing structures embedded in it or on it -12962622 20 n 01 plastid 0 003 @ 09291513 n 0000 ~ 12962847 n 0000 ~ 12962992 n 0000 | any of various small particles in the cytoplasm of the cells of plants and some animals containing pigments or starch or oil or protein -12962847 20 n 01 chromoplast 0 001 @ 12962622 n 0000 | plastid containing pigments other than chlorophyll usually yellow or orange carotenoids -12962992 20 n 01 chloroplast 0 001 @ 12962622 n 0000 | plastid containing chlorophyll and other pigments; in plants that carry out photosynthesis -12963140 20 n 02 Erysiphales 0 order_Erysiphales 0 003 @ 11594676 n 0000 #m 13028070 n 0000 %m 12963307 n 0000 | saprophytic and parasitic fungi that live on plants -12963307 20 n 02 Erysiphaceae 0 family_Erysiphaceae 0 003 @ 11590783 n 0000 #m 12963140 n 0000 %m 12963494 n 0000 | family of fungi parasitic mostly on leaves; includes powdery mildews -12963494 20 n 02 Erysiphe 0 genus_Erysiphe 0 003 @ 11592146 n 0000 #m 12963307 n 0000 %m 12963628 n 0000 | genus of powdery mildews -12963628 20 n 01 powdery_mildew 0 002 @ 13077295 n 0000 #m 12963494 n 0000 | any of various fungi of the genus Erysiphe producing powdery conidia on the host surface -12963796 20 n 02 Sphaeriales 0 order_Sphaeriales 0 006 @ 11594676 n 0000 #m 13028070 n 0000 %m 12964130 n 0000 %m 12964572 n 0000 %m 12965209 n 0000 %m 12966386 n 0000 | large order of ascomycetous fungi usually having a dark hard perithecia with definite ostioles; in more recent classifications often divided among several orders -12964130 20 n 02 Sphaeriaceae 0 family_Sphaeriaceae 0 003 @ 11590783 n 0000 #m 12963796 n 0000 %m 12964321 n 0000 | parasitic fungi having globose and sometimes necked or beaked perithecia -12964321 20 n 02 Neurospora 0 genus_Neurospora 0 002 @ 11592146 n 0000 #m 12964130 n 0000 | genus of fungi with black perithecia used extensively in genetic research; includes some forms with orange spore masses that cause severe damage in bakeries -12964572 20 n 02 Ceratostomataceae 0 family_Ceratostomataceae 0 003 @ 11590783 n 0000 #m 12963796 n 0000 %m 12964750 n 0000 | fungi having carbonous perithecia with long necks -12964750 20 n 02 Ceratostomella 0 genus_Ceratostomella 0 003 @ 11592146 n 0000 #m 12964572 n 0000 %m 12964920 n 0000 | genus of fungi forming continuous hyaline spores -12964920 20 n 02 Dutch_elm_fungus 0 Ceratostomella_ulmi 0 002 @ 12992868 n 0000 #m 12964750 n 0000 | fungus causing Dutch elm disease -12965056 20 n 02 Hypocreales 0 order_Hypocreales 0 002 @ 11594676 n 0000 #m 13028070 n 0000 | used in some classifications for the family Hypocreaceae -12965209 20 n 02 Hypocreaceae 0 family_Hypocreaceae 0 004 @ 11590783 n 0000 #m 12963796 n 0000 %m 12965463 n 0000 ~ 12966048 n 0000 | family of fungi having brightly colored fleshy or membranous ascocarps; sometimes placed in its own order Hypocreales -12965463 20 n 02 Claviceps 0 genus_Claviceps 0 003 @ 11592146 n 0000 #m 12965209 n 0000 %m 12965626 n 0000 | fungi parasitic upon the ovaries of various grasses -12965626 20 n 02 ergot 0 Claviceps_purpurea 0 004 @ 12992868 n 0000 #m 12965463 n 0000 + 02721979 a 0101 ~ 12965951 n 0000 | a fungus that infects various cereal plants forming compact black masses of branching filaments that replace many grains of the plant; source of medicinally important alkaloids and of lysergic acid -12965951 20 n 01 rye_ergot 0 001 @ 12965626 n 0000 | a sclerotium or hardened mass of mycelium -12966048 20 n 01 mushroom_pimple 0 003 @ 12965209 n 0000 ~ 12966193 n 0000 ~ 12966290 n 0000 | any of various fungi of the family Hypocreaceae -12966193 20 n 01 orange_mushroom_pimple 0 001 @ 12966048 n 0000 | a variety of mushroom pimple -12966290 20 n 01 green_mushroom_pimple 0 001 @ 12966048 n 0000 | a variety of mushroom pimple -12966386 20 n 02 Xylariaceae 0 family_Xylariaceae 0 004 @ 11590783 n 0000 #m 12963796 n 0000 %m 12966581 n 0000 %m 12967124 n 0000 | family of fungi characterized by dark brown to black spores -12966581 20 n 02 Xylaria 0 genus_Xylaria 0 004 @ 11592146 n 0000 #m 12966386 n 0000 %m 12966804 n 0000 %m 12966945 n 0000 | type genus of Xylariaceae; fungi with perithecia in the upper part of erect black woody stromata -12966804 20 n 02 black_root_rot_fungus 0 Xylaria_mali 0 002 @ 12992868 n 0000 #m 12966581 n 0000 | fungus causing black root rot in apples -12966945 20 n 03 dead-man's-fingers 0 dead-men's-fingers 0 Xylaria_polymorpha 0 002 @ 12992868 n 0000 #m 12966581 n 0000 | the fruiting bodies of the fungi of the genus Xylaria -12967124 20 n 02 Rosellinia 0 genus_Rosellinia 0 002 @ 11592146 n 0000 #m 12966386 n 0000 | fungi having smooth perithecia with dark one-celled ascospores -12967281 20 n 02 Helotiales 0 order_Helotiales 0 005 @ 11594676 n 0000 #m 13023292 n 0000 %m 12967504 n 0000 %m 12967776 n 0000 %m 13226526 n 0000 | order of fungi having asci in a disk-shaped to goblet-shaped apothecium -12967504 20 n 02 Helotiaceae 0 family_Helotiaceae 0 003 @ 11590783 n 0000 #m 12967281 n 0000 %m 12967656 n 0000 | a fungus family of order Helotiales -12967656 20 n 02 Helotium 0 genus_Helotium 0 002 @ 11592146 n 0000 #m 12967504 n 0000 | type genus of the Helotiaceae -12967776 20 n 02 Sclerotiniaceae 0 family_Sclerotiniaceae 0 004 @ 11590783 n 0000 #m 12967281 n 0000 %m 12967955 n 0000 %m 12968309 n 0000 | a fungus family of order Helotiales -12967955 20 n 01 genus_Sclerotinia 0 003 @ 11592146 n 0000 #m 12967776 n 0000 %m 12968136 n 0000 | large genus of ascomycetous fungi including various destructive plant pathogens -12968136 20 n 01 sclerotinia 0 003 @ 12992868 n 0000 #m 12967955 n 0000 ~ 12968309 n 0000 | any fungus of the genus Sclerotinia; some causing brown rot diseases in plants -12968309 20 n 01 brown_cup 0 002 @ 12968136 n 0000 #m 12967776 n 0000 | a variety of sclerotinia -12968408 20 n 02 Sclerodermatales 0 order_Sclerodermatales 0 004 @ 11594676 n 0000 #m 13038944 n 0000 %m 12968658 n 0000 %m 12970379 n 0000 | an order of fungi having a peridium surrounding a gleba (sometimes placed in subclass Homobasidiomycetes) -12968658 20 n 02 Sclerodermataceae 0 family_Sclerodermataceae 0 003 @ 11590783 n 0000 #m 12968408 n 0000 %m 12968882 n 0000 | a family of fungi or order Sclerodermatales with a single-layered peridium; includes earthballs -12968882 20 n 02 Scleroderma 0 genus_Scleroderma 0 006 @ 11592146 n 0000 #m 12968658 n 0000 %m 12969131 n 0000 %m 12969425 n 0000 %m 12969670 n 0000 %m 12969927 n 0000 | genus of poisonous fungi having hard-skinned fruiting bodies: false truffles -12969131 20 n 04 earthball 0 false_truffle 1 puffball 1 hard-skinned_puffball 0 005 @ 12992868 n 0000 #m 12968882 n 0000 ~ 12969425 n 0000 ~ 12969670 n 0000 ~ 12969927 n 0000 | any of various fungi of the genus Scleroderma having hard-skinned subterranean fruiting bodies resembling truffles -12969425 20 n 02 Scleroderma_citrinum 0 Scleroderma_aurantium 0 002 @ 12969131 n 0000 #m 12968882 n 0000 | an earthball fungus that is a dingy brownish yellow and a dark purplish interior; the peridium is covered with a pattern of small warts -12969670 20 n 02 Scleroderma_flavidium 0 star_earthball 0 002 @ 12969131 n 0000 #m 12968882 n 0000 | an earthball with a smooth upper surface that is at first buried in sand; the top of the fruiting body opens up to form segments like the ray of an umbel -12969927 20 n 02 Scleroderma_bovista 0 smooth_earthball 0 002 @ 12969131 n 0000 #m 12968882 n 0000 | an earthball with a peridium that is firm dry and smooth when young but developing cracks when mature; pale orange-yellow when young and reddish brown at maturity -12970193 20 n 01 Podaxaceae 0 002 @ 13039349 n 0000 ~ 12970293 n 0000 | a variety of gastromycete -12970293 20 n 01 stalked_puffball 2 001 @ 12970193 n 0000 | a variety of Podaxaceae -12970379 20 n 04 Tulostomaceae 0 family_Tulostomaceae 0 Tulostomataceae 0 family_Tulostomataceae 0 003 @ 11590783 n 0000 #m 12968408 n 0000 %m 12970560 n 0000 | stalked puffballs -12970560 20 n 04 Tulostoma 0 genus_Tulostoma 0 Tulestoma 0 genus_Tulestoma 0 003 @ 11592146 n 0000 #m 12970379 n 0000 %m 12970733 n 0000 | type genus of the Tulostomaceae -12970733 20 n 01 stalked_puffball 0 002 @ 12992868 n 0000 #m 12970560 n 0000 | mushroom of the genus Tulostoma that resembles a puffball -12970872 20 n 02 Hymenogastrales 0 order_Hymenogastrales 0 003 @ 11594676 n 0000 #m 13038944 n 0000 %m 12971157 n 0000 | an order of fungi belonging to the class Gasteromycetes; has a distinct basidiocarp with a fleshy or waxy gleba (sometimes placed in subclass Homobasidiomycetes) -12971157 20 n 02 Rhizopogonaceae 0 family_Rhizopogonaceae 0 005 @ 11590783 n 0000 #m 12970872 n 0000 %m 12971400 n 0000 %m 12971624 n 0000 %m 12971956 n 0000 | a family of fungi of order Hymenogastrales having round subterranean sporophores -12971400 20 n 01 false_truffle 2 004 @ 12992868 n 0000 #m 12971157 n 0000 ~ 12971804 n 0000 ~ 12972136 n 0000 | any of various fungi of the family Rhizopogonaceae having subterranean fruiting bodies similar to the truffle -12971624 20 n 02 Rhizopogon 0 genus_Rhizopogon 0 003 @ 11592146 n 0000 #m 12971157 n 0000 %m 12971804 n 0000 | a genus of fungi having subterranean sporophores resembling tubers -12971804 20 n 01 Rhizopogon_idahoensis 0 002 @ 12971400 n 0000 #m 12971624 n 0000 | a large whitish Rhizopogon that becomes greyish brown in maturity -12971956 20 n 02 Truncocolumella 0 genus_Truncocolumella 0 003 @ 11592146 n 0000 #m 12971157 n 0000 %m 12972136 n 0000 | a genus of fungi belonging to the family Rhizopogonaceae -12972136 20 n 01 Truncocolumella_citrina 0 002 @ 12971400 n 0000 #m 12971956 n 0000 | a fungus with a round yellow to orange fruiting body that is found on the surface of the ground or partially buried; has a distinctive sterile column extending into the spore-bearing tissue -12972414 20 n 04 Zygomycota 0 subdivision_Zygomycota 0 Zygomycotina 0 subdivision_Zygomycotina 0 003 @ 08220891 n 0000 #m 12994979 n 0000 %m 12972629 n 0000 | division of fungi having sexually produced zygospores -12972629 20 n 02 Zygomycetes 0 class_Zygomycetes 0 004 @ 08103777 n 0000 #m 12972414 n 0000 %m 12972818 n 0000 %m 12974286 n 0000 | class of fungi coextensive with subdivision Zygomycota -12972818 20 n 02 Mucorales 0 order_Mucorales 0 003 @ 11594676 n 0000 #m 12972629 n 0000 %m 12972966 n 0000 | an order of mostly saprophytic fungi -12972966 20 n 02 Mucoraceae 0 family_Mucoraceae 0 004 @ 11590783 n 0000 #m 12972818 n 0000 %m 12973202 n 0000 %m 12973541 n 0000 | large family of chiefly saprophytic fungi that includes many common molds destructive to food products -12973202 20 n 01 genus_Mucor 0 003 @ 11592146 n 0000 #m 12972966 n 0000 %m 12973443 n 0000 | type genus of the Mucoraceae; genus of molds having cylindrical or pear-shaped sporangia not limited in location to points where rhizoids develop -12973443 20 n 01 mucor 0 002 @ 13077033 n 0000 #m 12973202 n 0000 | any mold of the genus Mucor -12973541 20 n 01 genus_Rhizopus 0 005 @ 11592146 n 0000 #m 12972966 n 0000 %m 12973791 n 0000 %m 12973937 n 0000 %m 12974062 n 0000 | a genus of rot-causing fungi having columnar hemispherical aerial sporangia anchored to the substrate by rhizoids -12973791 20 n 01 rhizopus 0 003 @ 13077033 n 0000 #m 12973541 n 0000 ~ 12973937 n 0000 | any of various rot causing fungi of the genus Rhizopus -12973937 20 n 02 bread_mold 0 Rhizopus_nigricans 0 002 @ 12973791 n 0000 #m 12973541 n 0000 | a mold of the genus Rhizopus -12974062 20 n 03 leak_fungus 0 ring_rot_fungus 0 Rhizopus_stolonifer 0 002 @ 12974826 n 0000 #m 12973541 n 0000 | fungus causing soft watery rot in fruits and vegetables and rings of dry rot around roots of sweet potatoes -12974286 20 n 02 Entomophthorales 0 order_Entomophthorales 0 003 @ 11594676 n 0000 #m 12972629 n 0000 %m 12974457 n 0000 | coextensive with the family Entomophthoraceae -12974457 20 n 02 Entomophthoraceae 0 family_Entomophthoraceae 0 003 @ 11590783 n 0000 #m 12974286 n 0000 %m 12974662 n 0000 | mostly parasitic lower fungi that typically develop in the bodies of insects -12974662 20 n 02 Entomophthora 0 genus_Entomophthora 0 002 @ 11592146 n 0000 #m 12974457 n 0000 | type genus of the Entomophthoraceae; fungi parasitic on insects -12974826 20 n 01 rhizoid 0 002 @ 14867858 n 0000 ~ 12974062 n 0000 | any of various slender filaments that function as roots in mosses and ferns and fungi etc -12974987 20 n 02 slime_mold 0 slime_mould 0 003 @ 12992868 n 0000 ~ 12975804 n 0000 ~ 12976198 n 0000 | a naked mass of protoplasm having characteristics of both plants and animals; sometimes classified as protoctists -12975207 20 n 04 Myxomycota 0 division_Myxomycota 0 Gymnomycota 0 division_Gymnomycota 0 004 @ 08220891 n 0000 #m 12992464 n 0000 %m 12975608 n 0000 %m 12975982 n 0000 | slime molds; organisms having a noncellular and multinucleate creeping vegetative phase and a propagative spore-producing stage: comprises Myxomycetes and Acrasiomycetes; in some classifications placed in the kingdom Protoctista -12975608 20 n 02 Myxomycetes 0 class_Myxomycetes 0 003 @ 08103777 n 0000 #m 12975207 n 0000 %m 12975804 n 0000 | the class of true slime molds; essentially equivalent to the division Myxomycota -12975804 20 n 04 true_slime_mold 0 acellular_slime_mold 0 plasmodial_slime_mold 0 myxomycete 0 002 @ 12974987 n 0000 #m 12975608 n 0000 | a slime mold of the class Myxomycetes -12975982 20 n 02 Acrasiomycetes 0 class_Acrasiomycetes 0 004 @ 08103777 n 0000 #m 12975207 n 0000 %m 12976198 n 0000 %m 12976389 n 0000 | cellular slime molds; in some classifications placed in kingdom Protoctista -12976198 20 n 01 cellular_slime_mold 0 003 @ 12974987 n 0000 #m 12975982 n 0000 ~ 12976554 n 0000 | differing from true slime molds in being cellular and nucleate throughout the life cycle -12976389 20 n 01 genus_Dictostylium 0 003 @ 11592146 n 0000 #m 12975982 n 0000 %m 12976554 n 0000 | genus of slime molds that grow on dung and decaying vegetation -12976554 20 n 01 dictostylium 0 002 @ 12976198 n 0000 #m 12976389 n 0000 | any slime mold of the genus Dictostylium -12976672 20 n 02 Phycomycetes 0 Phycomycetes_group 0 002 @ 07992450 n 0000 #m 12992464 n 0000 | a large and probably unnatural group of fungi and funguslike organisms comprising the Mastigomycota (including the Oomycetes) and Zygomycota subdivisions of the division Eumycota; a category not used in all systems -12976985 20 n 04 Mastigomycota 0 subdivision_Mastigomycota 0 Mastigomycotina 0 subdivision_Mastigomycotina 0 004 @ 08220891 n 0000 #m 12994979 n 0000 %m 12977296 n 0000 %m 12977565 n 0000 | fungi in which the spores and gametes are motile; in some systems placed in the Phycomycetes group with the Zygomycota -12977296 20 n 02 Oomycetes 0 class_Oomycetes 0 005 @ 08103777 n 0000 #m 12976985 n 0000 %m 12979478 n 0000 %m 12980231 n 0000 %m 12983217 n 0000 | nonphotosynthetic fungi that resemble algae and that reproduce by forming oospores; sometimes classified as protoctists -12977565 20 n 02 Chytridiomycetes 0 class_Chytridiomycetes 0 004 @ 08103777 n 0000 #m 12976985 n 0000 %m 12977795 n 0000 %m 12978381 n 0000 | a class of mostly aquatic fungi; saprophytic or parasitic on algae or fungi or plants -12977795 20 n 02 Chytridiales 0 order_Chytridiales 0 004 @ 11594676 n 0000 #m 12977565 n 0000 %m 12978232 n 0000 %m 12978969 n 0000 | simple aquatic fungi mostly saprophytic but some parasitic on higher plants or animals or fresh water fungi; sometimes placed in class Oomycetes -12978076 20 n 01 pond-scum_parasite 0 002 @ 12992868 n 0000 #m 12979129 n 0000 | an aquatic fungus of genus Synchytriaceae that is parasitic on pond scum -12978232 20 n 02 Chytridiaceae 0 family_Chytridiaceae 0 002 @ 11590783 n 0000 #m 12977795 n 0000 | a family of aquatic fungi of order Chytridiales -12978381 20 n 02 Blastocladiales 0 order_Blastocladiales 0 003 @ 11594676 n 0000 #m 12977565 n 0000 %m 12978654 n 0000 | fungi that carry out asexual reproduction by thick-walled resting spores that produce zoospores upon germination; sometimes placed in class Oomycetes -12978654 20 n 02 Blastodiaceae 0 family_Blastodiaceae 0 003 @ 11590783 n 0000 #m 12978381 n 0000 %m 12978826 n 0000 | a family of saprobic fungi of order Blastocladiales -12978826 20 n 02 Blastocladia 0 genus_Blastocladia 0 002 @ 11592146 n 0000 #m 12978654 n 0000 | a genus of fungi of the family Blastodiaceae -12978969 20 n 02 Synchytriaceae 0 family_Synchytriaceae 0 003 @ 11590783 n 0000 #m 12977795 n 0000 %m 12979129 n 0000 | a fungus family of order Chytridiales -12979129 20 n 02 Synchytrium 0 genus_Synchytrium 0 004 @ 11592146 n 0000 #m 12978969 n 0000 %m 12978076 n 0000 %m 12979316 n 0000 | simple parasitic fungi including pond scum parasites -12979316 20 n 02 potato_wart_fungus 0 Synchytrium_endobioticum 0 002 @ 12992868 n 0000 #m 12979129 n 0000 | fungus causing potato wart disease in potato tubers -12979478 20 n 02 Saprolegniales 0 order_Saprolegniales 0 003 @ 11594676 n 0000 #m 12977296 n 0000 %m 12979630 n 0000 | order of chiefly aquatic fungi -12979630 20 n 02 Saprolegnia 0 genus_Saprolegnia 0 004 @ 11592146 n 0000 #m 12979478 n 0000 %m 12979829 n 0000 %m 12980080 n 0000 | aquatic fungi growing chiefly on plant debris and animal remains -12979829 20 n 02 white_fungus 0 Saprolegnia_ferax 0 002 @ 12992868 n 0000 #m 12979630 n 0000 | a fungus that attacks living fish and tadpoles and spawn causing white fungus disease: a coating of white hyphae on especially peripheral parts (as fins) -12980080 20 n 01 water_mold 0 002 @ 13077033 n 0000 #m 12979630 n 0000 | parasitic or saprobic organisms living chiefly in fresh water or moist soil -12980231 20 n 02 Peronosporales 0 order_Peronosporales 0 005 @ 11594676 n 0000 #m 12977296 n 0000 %m 12980478 n 0000 %m 12981595 n 0000 %m 12982103 n 0000 | order of chiefly parasitic lower fungi: Albuginaceae and Peronosporaceae and Pythiaceae -12980478 20 n 02 Peronosporaceae 0 family_Peronosporaceae 0 004 @ 11590783 n 0000 #m 12980231 n 0000 %m 12980652 n 0000 %m 12980840 n 0000 | parasitic fungi: downy mildews -12980652 20 n 02 Peronospora 0 genus_Peronospora 0 005 @ 11592146 n 0000 #m 12980478 n 0000 %m 12981086 n 0000 %m 12981301 n 0000 %m 12981443 n 0000 | genus of destructive downy mildews -12980840 20 n 02 downy_mildew 0 false_mildew 0 005 @ 13077295 n 0000 #m 12980478 n 0000 ~ 12981086 n 0000 ~ 12981301 n 0000 ~ 12981443 n 0000 | any of various fungi of the family Peronosporaceae parasitic on e.g. grapes and potatoes and melons -12981086 20 n 02 blue_mold_fungus 0 Peronospora_tabacina 0 002 @ 12980840 n 0000 #m 12980652 n 0000 | fungus causing a serious disease in tobacco plants characterized by bluish-grey mildew on undersides of leaves -12981301 20 n 02 onion_mildew 0 Peronospora_destructor 0 002 @ 12980840 n 0000 #m 12980652 n 0000 | fungus causing a downy mildew on onions -12981443 20 n 02 tobacco_mildew 0 Peronospora_hyoscyami 0 002 @ 12980840 n 0000 #m 12980652 n 0000 | fungus causing a downy mildew on growing tobacco -12981595 20 n 02 Albuginaceae 0 family_Albuginaceae 0 003 @ 11590783 n 0000 #m 12980231 n 0000 %m 12981791 n 0000 | fungi that produce white sori resembling blisters on certain flowering plants -12981791 20 n 02 Albugo 0 genus_Albugo 0 003 @ 11592146 n 0000 #m 12981595 n 0000 %m 12981954 n 0000 | type genus of the Albuginaceae; fungi causing white rusts -12981954 20 n 01 white_rust 0 002 @ 12992868 n 0000 #m 12981791 n 0000 | fungus causing a disease characterized by a white powdery mass of conidia -12982103 20 n 02 Pythiaceae 0 family_Pythiaceae 0 004 @ 11590783 n 0000 #m 12980231 n 0000 %m 12982338 n 0000 %m 12982723 n 0000 | fungi having sporangia usually borne successively and singly at the tips of branching sporangiophores -12982338 20 n 01 genus_Pythium 0 003 @ 11592146 n 0000 #m 12982103 n 0000 %m 12982468 n 0000 | destructive root-parasitic fungi -12982468 20 n 01 pythium 0 003 @ 12992868 n 0000 #m 12982338 n 0000 ~ 12982590 n 0000 | any fungus of the genus Pythium -12982590 20 n 02 damping_off_fungus 0 Pythium_debaryanum 0 001 @ 12982468 n 0000 | fungus causing damping off disease in seedlings -12982723 20 n 02 Phytophthora 0 genus_Phytophthora 0 004 @ 11592146 n 0000 #m 12982103 n 0000 %m 12982915 n 0000 %m 12983048 n 0000 | destructive parasitic fungi causing brown rot in plants -12982915 20 n 01 Phytophthora_citrophthora 0 002 @ 12992868 n 0000 #m 12982723 n 0000 | causes brown rot gummosis in citrus fruits -12983048 20 n 01 Phytophthora_infestans 0 002 @ 12992868 n 0000 #m 12982723 n 0000 | fungus causing late blight in solanaceous plants especially tomatoes and potatoes -12983217 20 n 02 Plasmodiophoraceae 0 family_Plasmodiophoraceae 0 003 @ 11590783 n 0000 #m 12977296 n 0000 %m 12983404 n 0000 | family of fungi often causing hypertrophy in seed plants -12983404 20 n 02 Plasmodiophora 0 genus_Plasmodiophora 0 003 @ 11592146 n 0000 #m 12983217 n 0000 %m 12983654 n 0000 | type genus of Plasmodiophoraceae comprising minute plant parasitic fungi similar to and sometimes included among the slime molds -12983654 20 n 02 clubroot_fungus 0 Plasmodiophora_brassicae 0 002 @ 12992868 n 0000 #m 12983404 n 0000 | a fungus resembling slime mold that causes swellings or distortions of the roots of cabbages and related plants -12983873 20 n 01 Geglossaceae 0 001 @ 13024012 n 0000 | a type of ascomycetous fungus -12983961 20 n 01 Sarcosomataceae 0 007 @ 13024012 n 0000 ~ 12984160 n 0000 ~ 12984267 n 0000 ~ 12984377 n 0000 ~ 12984489 n 0000 ~ 12984595 n 0000 ~ 12984699 n 0000 | a type of ascomycetous fungus -12984160 20 n 01 black_felt_cup 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984267 20 n 01 Rufous_rubber_cup 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984377 20 n 01 charred_pancake_cup 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984489 20 n 01 devil's_cigar 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984595 20 n 01 devil's_urn 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984699 20 n 01 winter_urn 0 001 @ 12983961 n 0000 | a common name for a variety of Sarcosomataceae -12984802 20 n 02 Tuberales 0 order_Tuberales 0 003 @ 11594676 n 0000 #m 13023292 n 0000 %m 12985010 n 0000 | small order of fungi belonging to the subdivision Ascomycota having closed underground ascocarps -12985010 20 n 02 Tuberaceae 0 family_Tuberaceae 0 003 @ 11590783 n 0000 #m 12984802 n 0000 %m 12985236 n 0000 | family of fungi whose ascocarps resemble tubers and vary in size from that of an acorn to that of a large apple -12985236 20 n 02 Tuber 1 genus_Tuber 0 003 @ 11592146 n 0000 #m 12985010 n 0000 %m 12985420 n 0000 | type genus of the Tuberaceae: fungi whose fruiting bodies are typically truffles -12985420 20 n 03 truffle 0 earthnut 2 earth-ball 1 002 @ 12992868 n 0000 #m 12985236 n 0000 | any of various highly prized edible subterranean fungi of the genus Tuber; grow naturally in southwestern Europe -12985629 20 n 02 Clavariaceae 0 family_Clavariaceae 0 003 @ 11590783 n 0000 #m 12998349 n 0000 %m 12985857 n 0000 | fleshy fungi: coral fungi -12985773 20 n 01 club_fungus 0 001 @ 12985857 n 0000 | a club-shaped coral fungus -12985857 20 n 01 coral_fungus 0 003 @ 12992868 n 0000 #m 12985629 n 0000 ~ 12985773 n 0000 | any of numerous fungi of the family Clavariaceae often brightly colored that grow in often intricately branched clusters like coral -12986084 20 n 02 Hydnaceae 0 family_Hydnaceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 12986227 n 0000 %m 12986337 n 0000 | tooth fungi -12986227 20 n 01 tooth_fungus 0 002 @ 12992868 n 0000 #m 12986084 n 0000 | a fungus of the family Hydnaceae -12986337 20 n 02 Hydnum 0 genus_Hydnum 0 002 @ 11592146 n 0000 #m 12986084 n 0000 | type genus of Hydnaceae -12986447 20 n 02 Lichenes 0 division_Lichenes 0 011 @ 08220891 n 0000 #m 12992464 n 0000 %m 12986858 n 0000 %m 12987056 n 0000 %m 12987652 n 0000 %m 12987834 n 0000 %m 12988703 n 0000 %m 12989142 n 0000 %m 12989462 n 0000 %m 12990800 n 0000 %m 12991488 n 0000 | comprising the lichens which grow symbiotically with algae; sometimes treated as an independent group more or less coordinate with algae and fungi -12986858 20 n 02 Lichenales 0 order_Lichenales 0 002 @ 11594676 n 0000 #m 12986447 n 0000 | category used especially in former classifications for organisms now constituting the division Lichenes -12987056 20 n 01 lichen 0 011 @ 12992868 n 0000 #m 12986447 n 0000 ~ 12987423 n 0000 ~ 12987535 n 0000 ~ 12988158 n 0000 ~ 12989007 n 0000 ~ 12989938 n 0000 ~ 12990597 n 0000 ~ 12991184 n 0000 ~ 12991837 n 0000 ~ 12992177 n 0000 | any thallophytic plant of the division Lichenes; occur as crusty patches or bushy growths on tree trunks or rocks or bare ground etc. -12987423 20 n 01 ascolichen 0 001 @ 12987056 n 0000 | a lichen in which the fungus component is an ascomycete -12987535 20 n 01 basidiolichen 0 001 @ 12987056 n 0000 | a lichen in which the fungus component is a basidiomycete -12987652 20 n 02 Lechanorales 0 order_Lechanorales 0 002 @ 11594676 n 0000 #m 12986447 n 0000 | category used in some classification systems for all lichens that produce apothecia -12987834 20 n 02 Lecanoraceae 0 family_Lecanoraceae 0 003 @ 11590783 n 0000 #m 12986447 n 0000 %m 12987993 n 0000 | a fungus family of the division Lichenes -12987993 20 n 01 genus_Lecanora 0 004 @ 11592146 n 0000 #m 12987834 n 0000 %m 12988158 n 0000 %m 12988572 n 0000 | type genus of Lecanoraceae; crustaceous lichens -12988158 20 n 01 lecanora 0 004 @ 12987056 n 0000 #m 12987993 n 0000 ~ 12988341 n 0000 ~ 12988572 n 0000 | any lichen of the genus Lecanora; some used in dyeing; some used for food -12988341 20 n 01 manna_lichen 0 001 @ 12988158 n 0000 | any of several Old World partially crustaceous or shrubby lecanoras that roll up and are blown about over African and Arabian deserts and used as food by people and animals -12988572 20 n 02 archil 1 orchil 1 002 @ 12988158 n 0000 #m 12987993 n 0000 | any of various lecanoras that yield the dye archil -12988703 20 n 02 Roccellaceae 0 family_Roccellaceae 0 003 @ 11590783 n 0000 #m 12986447 n 0000 %m 12988858 n 0000 | a fungus family of division Lichenes -12988858 20 n 01 genus_Roccella 0 003 @ 11592146 n 0000 #m 12988703 n 0000 %m 12989007 n 0000 | chiefly fruticose maritime rock-inhabiting lichens -12989007 20 n 02 roccella 0 Roccella_tinctoria 0 002 @ 12987056 n 0000 #m 12988858 n 0000 | a source of the dye archil and of litmus -12989142 20 n 02 Pertusariaceae 0 family_Pertusariaceae 0 003 @ 11590783 n 0000 #m 12986447 n 0000 %m 12989301 n 0000 | a fungus family of division Lichenes -12989301 20 n 02 Pertusaria 0 genus_Pertusaria 0 002 @ 11592146 n 0000 #m 12989142 n 0000 | crustose lichens that are a source of the dye archil and of litmus -12989462 20 n 02 Usneaceae 0 family_Usneaceae 0 006 @ 11590783 n 0000 #m 12986447 n 0000 %m 12989739 n 0000 %m 12990092 n 0000 %m 12990250 n 0000 %m 12990407 n 0000 | fruticose lichens having prostrate or erect or pendulous thalli: genera Usnea, Evernia, Ramalina, Alectoria -12989739 20 n 02 Usnea 0 genus_Usnea 0 003 @ 11592146 n 0000 #m 12989462 n 0000 %m 12989938 n 0000 | widely distributed lichens usually having a greyish or yellow pendulous freely branched thallus -12989938 20 n 03 beard_lichen 0 beard_moss 0 Usnea_barbata 0 002 @ 12987056 n 0000 #m 12989739 n 0000 | greenish grey pendulous lichen growing on trees -12990092 20 n 02 Evernia 0 genus_Evernia 0 002 @ 11592146 n 0000 #m 12989462 n 0000 | lichens of the family Usneaceae having a pendulous or shrubby thallus -12990250 20 n 02 Ramalina 0 genus_Ramalina 0 002 @ 11592146 n 0000 #m 12989462 n 0000 | shrubby lichens of the family Usneaceae having a flattened thallus -12990407 20 n 02 Alectoria 0 genus_Alectoria 0 003 @ 11592146 n 0000 #m 12989462 n 0000 %m 12990597 n 0000 | lichens having dark brown erect or pendulous much-branched cylindrical thallus -12990597 20 n 02 horsehair_lichen 0 horsetail_lichen 0 002 @ 12987056 n 0000 #m 12990407 n 0000 | any of several lichens of the genus Alectoria having a thallus consisting of filaments resembling hair -12990800 20 n 02 Cladoniaceae 0 family_Cladoniaceae 0 003 @ 11590783 n 0000 #m 12986447 n 0000 %m 12990938 n 0000 | a family of lichens -12990938 20 n 02 Cladonia 0 genus_Cladonia 0 003 @ 11592146 n 0000 #m 12990800 n 0000 %m 12991184 n 0000 | type genus of Cladoniaceae; lichens characterized by a crustose thallus and capitate fruiting bodies borne on simple or branched podetia -12991184 20 n 04 reindeer_moss 0 reindeer_lichen 0 arctic_moss 0 Cladonia_rangiferina 0 002 @ 12987056 n 0000 #m 12990938 n 0000 | an erect greyish branching lichen of Arctic and even some north temperate regions constituting the chief food for reindeer and caribou and sometimes being eaten by humans -12991488 20 n 02 Parmeliaceae 0 family_Parmeliaceae 0 004 @ 11590783 n 0000 #m 12986447 n 0000 %m 12991645 n 0000 %m 12992022 n 0000 | a family of lichens -12991645 20 n 02 Parmelia 0 genus_Parmelia 0 003 @ 11592146 n 0000 #m 12991488 n 0000 %m 12991837 n 0000 | type genus of the Parmeliaceae; a large genus of chiefly alpine foliaceous lichens -12991837 20 n 03 crottle 0 crottal 0 crotal 0 002 @ 12987056 n 0000 #m 12991645 n 0000 | any of several lichens of the genus Parmelia from which reddish brown or purple dyes are made -12992022 20 n 02 Cetraria 0 genus_Cetraria 0 003 @ 11592146 n 0000 #m 12991488 n 0000 %m 12992177 n 0000 | foliose lichens chiefly of northern latitudes -12992177 20 n 03 Iceland_moss 0 Iceland_lichen 0 Cetraria_islandica 0 002 @ 12987056 n 0000 #m 12992022 n 0000 | lichen with branched flattened partly erect thallus that grows in mountainous and Arctic regions; used as a medicine or food for humans and livestock; a source of glycerol -12992464 20 n 03 Fungi 0 kingdom_Fungi 0 fungus_kingdom 0 012 @ 07940552 n 0000 -c 00314927 a 0000 %m 11590783 n 0000 %m 11592146 n 0000 %m 11594676 n 0000 %m 12975207 n 0000 %m 12976672 n 0000 %m 12986447 n 0000 %m 12992868 n 0000 %m 12994979 n 0000 -c 13061704 n 0000 -c 13095348 n 0000 | the taxonomic kingdom including yeast, molds, smuts, mushrooms, and toadstools; distinct from the green plants -12992868 20 n 01 fungus 0 078 @ 00004475 n 0000 #m 12992464 n 0000 + 02832678 a 0102 + 02832678 a 0101 -c 00860434 n 0000 %p 11532351 n 0000 %p 11532682 n 0000 %p 11550474 n 0000 ~ 12964920 n 0000 ~ 12965626 n 0000 ~ 12966804 n 0000 ~ 12966945 n 0000 ~ 12968136 n 0000 ~ 12969131 n 0000 ~ 12970733 n 0000 ~ 12971400 n 0000 ~ 12974987 n 0000 ~ 12978076 n 0000 ~ 12979316 n 0000 ~ 12979829 n 0000 ~ 12981954 n 0000 ~ 12982468 n 0000 ~ 12982915 n 0000 ~ 12983048 n 0000 ~ 12983654 n 0000 ~ 12985420 n 0000 ~ 12985857 n 0000 ~ 12986227 n 0000 ~ 12987056 n 0000 ~ 12995601 n 0000 ~ 12997654 n 0000 ~ 13001930 n 0000 ~ 13002209 n 0000 ~ 13015509 n 0000 ~ 13015688 n 0000 ~ 13016076 n 0000 ~ 13016289 n 0000 ~ 13018906 n 0000 %p 13022709 n 0000 ~ 13023134 n 0000 ~ 13024012 n 0000 ~ 13025647 n 0000 ~ 13027557 n 0000 ~ 13027879 n 0000 ~ 13034555 n 0000 ~ 13034788 n 0000 ~ 13035241 n 0000 ~ 13035389 n 0000 ~ 13037406 n 0000 ~ 13039349 n 0000 ~ 13040303 n 0000 ~ 13043926 n 0000 ~ 13044778 n 0000 ~ 13045594 n 0000 ~ 13046669 n 0000 ~ 13047862 n 0000 ~ 13048447 n 0000 ~ 13048932 n 0000 ~ 13049105 n 0000 ~ 13052670 n 0000 ~ 13054073 n 0000 ~ 13054560 n 0000 ~ 13060190 n 0000 ~ 13063269 n 0000 ~ 13066129 n 0000 ~ 13069773 n 0000 ~ 13077033 n 0000 ~ 13077295 n 0000 ~ 13078021 n 0000 ~ 13079073 n 0000 ~ 13079419 n 0000 ~ 13080306 n 0000 ~ 13080866 n 0000 ~ 13081229 n 0000 ~ 13081999 n 0000 ~ 13082568 n 0000 -c 13155899 n 0000 ~ 13226871 n 0000 | an organism of the kingdom Fungi lacking chlorophyll and feeding on organic matter; ranging from unicellular or multicellular organisms to spore-bearing syncytia -12994475 20 n 01 basidium 0 004 @ 11675842 n 0000 + 02659292 a 0101 %p 12994711 n 0000 ~ 12994892 n 0000 | a small club-shaped structure typically bearing four basidiospores at the ends of minute projections; unique to basidiomycetes -12994711 20 n 01 hypobasidium 0 002 @ 13087625 n 0000 #p 12994475 n 0000 | special cell constituting the base of the basidium in various fungi especially of the order Tremellales -12994892 20 n 01 promycelium 0 001 @ 12994475 n 0000 | the basidium of various fungi -12994979 20 n 02 Eumycota 0 division_Eumycota 0 009 @ 08220891 n 0000 #m 12992464 n 0000 %m 12972414 n 0000 %m 12976985 n 0000 %m 12995435 n 0000 %m 12995601 n 0000 %m 12995724 n 0000 %m 12996225 n 0000 %m 13023292 n 0000 | true fungi; eukaryotic heterotrophic walled organisms; distinguished from Myxomycota (funguslike slime molds): comprises subdivisions Mastigomycotina; Zygomycotina; Ascomycotina; Basidiomycotina; Deuteromycotina (imperfect fungi) -12995435 20 n 02 Eumycetes 0 class_Eumycetes 0 002 @ 08103777 n 0000 #m 12994979 n 0000 | category used in some classifications: coextensive with division Eumycota -12995601 20 n 01 true_fungus 0 002 @ 12992868 n 0000 #m 12994979 n 0000 | any of numerous fungi of the division Eumycota -12995724 20 n 05 Deuteromycota 0 subdivision_Deuteromycota 0 Deuteromycotina 0 Fungi_imperfecti 0 subdivision_Deuteromycotina 0 005 @ 08220891 n 0000 #m 12994979 n 0000 %m 12996068 n 0000 %m 13077479 n 0000 %m 13082077 n 0000 | large and heterogeneous form division of fungi comprising forms for which no sexually reproductive stage is known -12996068 20 n 02 Deuteromycetes 0 class_Deuteromycetes 0 002 @ 08103777 n 0000 #m 12995724 n 0000 | form class; coextensive with subdivision Deuteromycota -12996225 20 n 04 Basidiomycota 0 subdivision_Basidiomycota 0 Basidiomycotina 0 subdivision_Basidiomycotina 0 010 @ 08220891 n 0000 #m 12994979 n 0000 %m 12996841 n 0000 %m 12998130 n 0000 %m 12998349 n 0000 %m 13038944 n 0000 %m 13049285 n 0000 %m 13065702 n 0000 %m 13065902 n 0000 %m 13069348 n 0000 | comprises fungi bearing the spores on a basidium; includes Gasteromycetes (puffballs) and Tiliomycetes comprising the orders Ustilaginales (smuts) and Uredinales (rusts) and Hymenomycetes (mushrooms, toadstools, agarics and bracket fungi); in some classification systems considered a division of kingdom Fungi -12996841 20 n 02 Basidiomycetes 0 class_Basidiomycetes 0 008 @ 08103777 n 0000 #m 12996225 n 0000 %m 12997128 n 0000 %m 12997432 n 0000 %m 12997654 n 0000 %m 13060451 n 0000 %m 13061921 n 0000 %m 13063046 n 0000 | large class of higher fungi coextensive with subdivision Basidiomycota -12997128 20 n 02 Homobasidiomycetes 0 subclass_Homobasidiomycetes 0 002 @ 08103777 n 0000 #m 12996841 n 0000 | category used in some classification systems for various basidiomycetous fungi including e.g. mushrooms and puffballs which are usually placed in the classes Gasteromycetes and Hymenomycetes -12997432 20 n 02 Heterobasidiomycetes 0 subclass_Heterobasidiomycetes 0 002 @ 08103777 n 0000 #m 12996841 n 0000 | category used in some classification systems for various basidiomycetous fungi including rusts and smuts -12997654 20 n 02 basidiomycete 0 basidiomycetous_fungi 0 008 @ 12992868 n 0000 #m 12996841 n 0000 + 02659404 a 0101 %p 11533212 n 0000 ~ 12997919 n 0000 ~ 12998815 n 0000 ~ 13011595 n 0000 ~ 13049953 n 0000 | any of various fungi of the subdivision Basidiomycota -12997919 20 n 01 mushroom 2 002 @ 12997654 n 0000 ~ 13032115 n 0000 | any of various fleshy fungi of the subdivision Basidiomycota consisting of a cap at the end of a stem arising from an underground mycelium -12998130 20 n 02 Hymenomycetes 0 class_Hymenomycetes 0 002 @ 08103777 n 0000 #m 12996225 n 0000 | used in some classifications; usually coextensive with order Agaricales: mushrooms; toadstools; agarics; bracket fungi -12998349 20 n 02 Agaricales 0 order_Agaricales 0 018 @ 11594676 n 0000 #m 12996225 n 0000 %m 12985629 n 0000 %m 12986084 n 0000 %m 12998815 n 0000 %m 13000372 n 0000 %m 13005835 n 0000 %m 13010064 n 0000 %m 13010219 n 0000 %m 13011856 n 0000 %m 13012613 n 0000 %m 13015040 n 0000 %m 13016457 n 0000 %m 13018579 n 0000 %m 13019017 n 0000 %m 13054211 n 0000 %m 13070003 n 0000 %m 13074084 n 0000 | typical gilled mushrooms belonging to the subdivision Basidiomycota -12998815 20 n 01 agaric 0 079 @ 12997654 n 0000 #m 12998349 n 0000 ~ 13000891 n 0000 ~ 13001041 n 0000 ~ 13001206 n 0000 ~ 13001366 n 0000 ~ 13001529 n 0000 ~ 13002750 n 0000 ~ 13002925 n 0000 ~ 13003061 n 0000 ~ 13003254 n 0000 ~ 13003522 n 0000 ~ 13003712 n 0000 ~ 13004423 n 0000 ~ 13004640 n 0000 ~ 13004826 n 0000 ~ 13004992 n 0000 ~ 13005329 n 0000 ~ 13005984 n 0000 ~ 13006171 n 0000 ~ 13006631 n 0000 ~ 13006894 n 0000 ~ 13007417 n 0000 ~ 13007629 n 0000 ~ 13008157 n 0000 ~ 13008315 n 0000 ~ 13008485 n 0000 ~ 13008689 n 0000 ~ 13008839 n 0000 ~ 13009085 n 0000 ~ 13009244 n 0000 ~ 13009429 n 0000 ~ 13009656 n 0000 ~ 13010694 n 0000 ~ 13010951 n 0000 ~ 13011221 n 0000 ~ 13012253 n 0000 ~ 13012469 n 0000 ~ 13012973 n 0000 ~ 13013534 n 0000 ~ 13013764 n 0000 ~ 13017102 n 0000 ~ 13017240 n 0000 ~ 13017439 n 0000 ~ 13017610 n 0000 ~ 13017789 n 0000 ~ 13017979 n 0000 ~ 13018088 n 0000 ~ 13018232 n 0000 ~ 13018407 n 0000 ~ 13019496 n 0000 ~ 13019643 n 0000 ~ 13019835 n 0000 ~ 13020191 n 0000 ~ 13020481 n 0000 ~ 13020964 n 0000 ~ 13021166 n 0000 ~ 13021332 n 0000 ~ 13021543 n 0000 ~ 13021689 n 0000 ~ 13021867 n 0000 ~ 13022210 n 0000 ~ 13070308 n 0000 ~ 13074619 n 0000 ~ 13074814 n 0000 ~ 13075020 n 0000 ~ 13075272 n 0000 ~ 13075441 n 0000 ~ 13075684 n 0000 ~ 13075847 n 0000 ~ 13076041 n 0000 ~ 13076405 n 0000 ~ 13076643 n 0000 ~ 13076831 n 0000 ~ 13231678 n 0000 ~ 13231919 n 0000 ~ 13232106 n 0000 ~ 13232363 n 0000 ~ 13232779 n 0000 | a saprophytic fungus of the order Agaricales having an umbrellalike cap with gills on the underside -13000372 20 n 02 Agaricaceae 0 family_Agaricaceae 0 010 @ 11590783 n 0000 #m 12998349 n 0000 %m 13000668 n 0000 %m 13002433 n 0000 %m 13004160 n 0000 %m 13005568 n 0000 %m 13006377 n 0000 %m 13006741 n 0000 %m 13007195 n 0000 %m 13009780 n 0000 | large family including many familiar mushrooms -13000668 20 n 02 Agaricus 0 genus_Agaricus 0 004 @ 11592146 n 0000 #m 13000372 n 0000 %m 13001366 n 0000 %m 13001529 n 0000 | type genus of Agaricaceae; gill fungi having brown spores and including several edible species -13000891 20 n 01 mushroom 1 001 @ 12998815 n 0000 | mushrooms and related fleshy fungi (including toadstools, puffballs, morels, coral fungi, etc.) -13001041 20 n 01 mushroom 0 003 @ 12998815 n 0000 + 01382437 v 0101 ! 13001206 n 0101 | common name for an edible agaric (contrasting with the inedible toadstool) -13001206 20 n 01 toadstool 0 002 @ 12998815 n 0000 ! 13001041 n 0101 | common name for an inedible or poisonous agaric (contrasting with the edible mushroom) -13001366 20 n 02 horse_mushroom 0 Agaricus_arvensis 0 002 @ 12998815 n 0000 #m 13000668 n 0000 | coarse edible mushroom with a hollow stem and a broad white cap -13001529 20 n 03 meadow_mushroom 0 field_mushroom 0 Agaricus_campestris 0 002 @ 12998815 n 0000 #m 13000668 n 0000 | common edible mushroom found naturally in moist open soil; the cultivated mushroom of commerce -13001743 20 n 02 Lentinus 0 genus_Lentinus 0 004 @ 11592146 n 0000 #m 13016457 n 0000 %m 13001930 n 0000 %m 13002209 n 0000 | a genus of fungus belonging to the family Tricholomataceae -13001930 20 n 06 shiitake 0 shiitake_mushroom 0 Chinese_black_mushroom 0 golden_oak_mushroom 0 Oriental_black_mushroom 0 Lentinus_edodes 0 002 @ 12992868 n 0000 #m 13001743 n 0000 | edible east Asian mushroom having a golden or dark brown to blackish cap and an inedible stipe -13002209 20 n 02 scaly_lentinus 0 Lentinus_lepideus 0 002 @ 12992868 n 0000 #m 13001743 n 0000 | a fungus with a scaly cap and white flesh and a ring on the stalk (with scales below the ring); odor reminiscent of licorice -13002433 20 n 02 Amanita 0 genus_Amanita 0 009 @ 11592146 n 0000 #m 13000372 n 0000 %m 13002750 n 0000 %m 13002925 n 0000 %m 13003061 n 0000 %m 13003254 n 0000 %m 13003522 n 0000 %m 13003712 n 0000 ~ 13003846 n 0000 | genus of widely distributed agarics that have white spores and are poisonous with few exceptions -13002750 20 n 03 royal_agaric 0 Caesar's_agaric 0 Amanita_caesarea 0 002 @ 12998815 n 0000 #m 13002433 n 0000 | widely distributed edible mushroom resembling the fly agaric -13002925 20 n 02 false_deathcap 0 Amanita_mappa 0 002 @ 12998815 n 0000 #m 13002433 n 0000 | agaric often confused with the death cup -13003061 20 n 02 fly_agaric 0 Amanita_muscaria 0 002 @ 12998815 n 0000 #m 13002433 n 0000 | poisonous (but rarely fatal) woodland fungus having a scarlet cap with white warts and white gills -13003254 20 n 05 death_cap 0 death_cup 0 death_angel 0 destroying_angel 1 Amanita_phalloides 0 002 @ 12998815 n 0000 #m 13002433 n 0000 | extremely poisonous usually white fungus with a prominent cup-shaped base; differs from edible Agaricus only in its white gills -13003522 20 n 03 blushing_mushroom 0 blusher 0 Amanita_rubescens 0 003 @ 12998815 n 0000 #m 13002433 n 0000 + 00103317 v 0201 | yellowish edible agaric that usually turns red when touched -13003712 20 n 02 destroying_angel 2 Amanita_verna 0 002 @ 12998815 n 0000 #m 13002433 n 0000 | fungus similar to Amanita phalloides -13003846 20 n 01 slime_mushroom 0 003 @ 13002433 n 0000 ~ 13003974 n 0000 ~ 13004065 n 0000 | a mushroom of the genus Amanita -13003974 20 n 01 white_slime_mushroom 0 001 @ 13003846 n 0000 | a type of slime mushroom -13004065 20 n 01 Fischer's_slime_mushroom 0 001 @ 13003846 n 0000 | a type of slime mushroom -13004160 20 n 02 Cantharellus 0 genus_Cantharellus 0 006 @ 11592146 n 0000 #m 13000372 n 0000 %m 13004423 n 0000 %m 13004640 n 0000 %m 13004826 n 0000 %m 13004992 n 0000 | a well-known genus of fungus; has funnel-shaped fruiting body; includes the chanterelles -13004423 20 n 03 chanterelle 0 chantarelle 0 Cantharellus_cibarius 0 002 @ 12998815 n 0000 #m 13004160 n 0000 | widely distributed edible mushroom rich yellow in color with a smooth cap and a pleasant apricot aroma -13004640 20 n 02 floccose_chanterelle 0 Cantharellus_floccosus 0 002 @ 12998815 n 0000 #m 13004160 n 0000 | a mildly poisonous fungus with a fruiting body shaped like a hollow trumpet -13004826 20 n 02 pig's_ears 0 Cantharellus_clavatus 0 002 @ 12998815 n 0000 #m 13004160 n 0000 | an edible agaric with a brown fruiting body that is often compound -13004992 20 n 02 cinnabar_chanterelle 0 Cantharellus_cinnabarinus 0 002 @ 12998815 n 0000 #m 13004160 n 0000 | mushroom with a distinctive pink to vermillion fruiting body -13005166 20 n 02 Omphalotus 0 genus_Omphalotus 0 003 @ 11592146 n 0000 #m 13016457 n 0000 %m 13005329 n 0000 | a genus of fungi with a depressed disc in the cap -13005329 20 n 04 jack-o-lantern_fungus 0 jack-o-lantern 0 jack-a-lantern 0 Omphalotus_illudens 0 002 @ 12998815 n 0000 #m 13005166 n 0000 | a large poisonous agaric with orange caps and narrow clustered stalks; the gills are luminescent -13005568 20 n 02 Coprinus 0 genus_Coprinus 0 004 @ 11592146 n 0000 #m 13000372 n 0000 %m 13005984 n 0000 %m 13006171 n 0000 | genus of black-spotted agarics in which the cap breaks down at maturity into an inky fluid; sometimes placed in its own family Coprinaceae -13005835 20 n 02 Coprinaceae 0 family_Coprinaceae 0 002 @ 11590783 n 0000 #m 12998349 n 0000 | used in some classifications for the genus Coprinus -13005984 20 n 03 inky_cap 0 inky-cap_mushroom 0 Coprinus_atramentarius 0 002 @ 12998815 n 0000 #m 13005568 n 0000 | having a cap that melts into an inky fluid after spores have matured -13006171 20 n 04 shaggymane 0 shaggy_cap 0 shaggymane_mushroom 0 Coprinus_comatus 0 002 @ 12998815 n 0000 #m 13005568 n 0000 | common edible mushroom having an elongated shaggy white cap and black spores -13006377 20 n 02 Lactarius 0 genus_Lactarius 0 003 @ 11592146 n 0000 #m 13000372 n 0000 %m 13006631 n 0000 | large genus of agarics that have white spore and contain a white or milky juice when cut or broken; includes both edible and poisonous species -13006631 20 n 02 milkcap 0 Lactarius_delicioso 0 002 @ 12998815 n 0000 #m 13006377 n 0000 | edible mushroom -13006741 20 n 02 Marasmius 0 genus_Marasmius 0 003 @ 11592146 n 0000 #m 13000372 n 0000 %m 13006894 n 0000 | chiefly small mushrooms with white spores -13006894 20 n 02 fairy-ring_mushroom 0 Marasmius_oreades 0 002 @ 12998815 n 0000 #m 13006741 n 0000 | mushroom that grows in a fairy ring -13007034 20 n 02 fairy_ring 0 fairy_circle 0 001 @ 13875392 n 0000 | a ring of fungi marking the periphery of the perennial underground growth of the mycelium -13007195 20 n 02 Pleurotus 0 genus_Pleurotus 0 004 @ 11592146 n 0000 #m 13000372 n 0000 %m 13007417 n 0000 %m 13007629 n 0000 | agarics with white spores and caps having an eccentric stem; an important mushroom of Japan -13007417 20 n 04 oyster_mushroom 0 oyster_fungus 0 oyster_agaric 0 Pleurotus_ostreatus 0 002 @ 12998815 n 0000 #m 13007195 n 0000 | edible agaric with a soft greyish cap growing in shelving masses on dead wood -13007629 20 n 02 olive-tree_agaric 0 Pleurotus_phosphoreus 0 002 @ 12998815 n 0000 #m 13007195 n 0000 | red luminescent mushroom of Europe -13007770 20 n 02 Pholiota 0 genus_Pholiota 0 011 @ 11592146 n 0000 #m 13010219 n 0000 %m 13008157 n 0000 %m 13008315 n 0000 %m 13008485 n 0000 %m 13008689 n 0000 %m 13008839 n 0000 %m 13009085 n 0000 %m 13009244 n 0000 %m 13009429 n 0000 %m 13009656 n 0000 | genus of gilled agarics of Europe and North America having brown spores and an annulus; grows on open ground or decaying wood -13008157 20 n 01 Pholiota_astragalina 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a fungus with a smooth orange cap and yellow gills and pale yellow stalk -13008315 20 n 02 Pholiota_aurea 0 golden_pholiota 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a beautiful yellow gilled fungus found from Alaska south along the coast -13008485 20 n 01 Pholiota_destruens 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a large fungus with whitish scales on the cap and remnants of the veil hanging from the cap; the stalk is thick and hard -13008689 20 n 01 Pholiota_flammans 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a fungus with a yellow cap covered with fine scales as is the stalk -13008839 20 n 01 Pholiota_flavida 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a fungus that grows in clusters on the ground; cap is brownish orange with a surface that is smooth and slightly sticky; whitish gills and a cylindrical brown stalk -13009085 20 n 03 nameko 0 viscid_mushroom 0 Pholiota_nameko 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | one of the most important fungi cultivated in Japan -13009244 20 n 01 Pholiota_squarrosa-adiposa 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a gilled fungus having yellow slimy caps with conspicuous tawny scales on the caps and stalks -13009429 20 n 02 Pholiota_squarrosa 0 scaly_pholiota 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a gilled fungus with a cap and stalk that are conspicuously scaly with upright scales; gills develop a greenish tinge with age -13009656 20 n 01 Pholiota_squarrosoides 0 002 @ 12998815 n 0000 #m 13007770 n 0000 | a pale buff fungus with tawny scales -13009780 20 n 02 Russula 0 genus_Russula 0 002 @ 11592146 n 0000 #m 13000372 n 0000 | large genus of fungi with stout stems and white spores and neither annulus nor volva; brittle caps of red or purple or yellow or green or blue; differs from genus Lactarius in lacking milky juice -13010064 20 n 02 Russulaceae 0 family_Russulaceae 0 002 @ 11590783 n 0000 #m 12998349 n 0000 | used in some classification systems for the genus Russula -13010219 20 n 02 Strophariaceae 0 family_Strophariaceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 13007770 n 0000 %m 13010401 n 0000 | sometimes included in family Agaricaceae -13010401 20 n 03 Stropharia 0 genus_Stropharia 0 ring-stalked_fungus 0 005 @ 11592146 n 0000 #m 13010219 n 0000 %m 13010694 n 0000 %m 13010951 n 0000 %m 13011221 n 0000 | genus of gill fungi with brown spores that is closely related to Agaricus; here placed in its own family Strophariaceae -13010694 20 n 01 Stropharia_ambigua 0 002 @ 12998815 n 0000 #m 13010401 n 0000 | a gilled fungus with a long stalk and a yellow slimy cap from which fragments of the broken veil hang; gills are initially white but become dark brown as spores are released -13010951 20 n 01 Stropharia_hornemannii 0 002 @ 12998815 n 0000 #m 13010401 n 0000 | a gilled fungus with a large slimy purple or olive cap; gills become purple with age; the stalk is long and richly decorated with pieces of the white sheath that extends up to a ring -13011221 20 n 01 Stropharia_rugoso-annulata 0 002 @ 12998815 n 0000 #m 13010401 n 0000 | a large gilled fungus with a broad cap and a long stalk; the cap is dark brown; the white gills turn dark purplish brown with age; edible and choice -13011461 20 n 01 galea 0 001 @ 13087625 n 0000 | an organ shaped like a helmet; usually a vaulted and enlarged petal as in Aconitum -13011595 20 n 01 gill_fungus 0 001 @ 12997654 n 0000 | a basidiomycete with gills -13011679 20 n 02 gill 0 lamella 0 001 @ 13087625 n 0000 | any of the radiating leaflike spore-producing structures on the underside of the cap of a mushroom or similar fungus -13011856 20 n 02 Entolomataceae 0 family_Entolomataceae 0 003 @ 11590783 n 0000 #m 12998349 n 0000 %m 13012030 n 0000 | a family of fungi belonging to the order Agaricales -13012030 20 n 02 Entoloma 0 genus_Entoloma 0 004 @ 11592146 n 0000 #m 13011856 n 0000 %m 13012253 n 0000 %m 13012469 n 0000 | agarics with pink spores but lacking both volva and annulus (includes some that are poisonous) -13012253 20 n 02 Entoloma_lividum 0 Entoloma_sinuatum 0 002 @ 12998815 n 0000 #m 13012030 n 0000 | a deadly poisonous agaric; a large cap that is first white (livid or lead-colored) and then turns yellowish or tan -13012469 20 n 01 Entoloma_aprile 0 002 @ 12998815 n 0000 #m 13012030 n 0000 | an agaric with a dark brown conical cap; fruits in early spring -13012613 20 n 02 Lepiotaceae 0 family_Lepiotaceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 13012835 n 0000 %m 13013187 n 0000 | a family of fungi having free gills and a cap that is cleanly separable from the stalk -13012835 20 n 01 genus_Chlorophyllum 0 002 @ 11592146 n 0000 #m 13012613 n 0000 | a genus of fungus belonging to the family Lepiotaceae -13012973 20 n 01 Chlorophyllum_molybdites 0 001 @ 12998815 n 0000 | a poisonous agaric with a fibrillose cap and brown scales on a white ground color; cap can reach a diameter of 30 cm; often forms `fairy rings' -13013187 20 n 01 genus_Lepiota 0 011 @ 11592146 n 0000 #m 13012613 n 0000 %m 13013534 n 0000 %m 13013764 n 0000 %m 13013965 n 0000 %m 13014097 n 0000 %m 13014265 n 0000 %m 13014409 n 0000 %m 13014581 n 0000 %m 13014741 n 0000 %m 13014879 n 0000 | agarics with white spores that includes several edible and poisonous mushrooms: parasol mushrooms -13013534 20 n 01 lepiota 0 009 @ 12998815 n 0000 #m 13013187 n 0000 ~ 13013965 n 0000 ~ 13014097 n 0000 ~ 13014265 n 0000 ~ 13014409 n 0000 ~ 13014581 n 0000 ~ 13014741 n 0000 ~ 13014879 n 0000 | any fungus of the genus Lepiota -13013764 20 n 02 parasol_mushroom 0 Lepiota_procera 0 002 @ 12998815 n 0000 #m 13013187 n 0000 | edible long-stalked mushroom with white flesh and gills and spores; found in open woodlands in autumn -13013965 20 n 02 poisonous_parasol 0 Lepiota_morgani 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric regarded as poisonous -13014097 20 n 01 Lepiota_naucina 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric with greyish white fruiting body and gills that change from pink to dingy red -13014265 20 n 01 Lepiota_rhacodes 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric with a large cap with brown scales and a thick stalk -13014409 20 n 02 American_parasol 0 Lepiota_americana 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric with a pallid cap and a stalk that is enlarged near the base -13014581 20 n 01 Lepiota_rubrotincta 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric with a relatively small pink to red cap and white gills and stalk -13014741 20 n 01 Lepiota_clypeolaria 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | an agaric with a ragged stalk and a soft floccose cap -13014879 20 n 02 onion_stem 0 Lepiota_cepaestipes 0 002 @ 13013534 n 0000 #m 13013187 n 0000 | a white agaric that tends to cluster and has a club-shaped base -13015040 20 n 02 Thelephoraceae 0 family_Thelephoraceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 13015229 n 0000 %m 13015826 n 0000 | fungi having leathery or membranous sporophores -13015229 20 n 02 Corticium 0 genus_Corticium 0 004 @ 11592146 n 0000 #m 13015040 n 0000 %m 13015509 n 0000 %m 13015688 n 0000 | genus of fungi having simple smooth sporophores; some are parasitic on wood or economic crops; some species formerly placed in form genus Rhizoctinia -13015509 20 n 02 pink_disease_fungus 0 Corticium_salmonicolor 0 002 @ 12992868 n 0000 #m 13015229 n 0000 | fungus causing pink disease in citrus and coffee and rubber trees etc -13015688 20 n 02 bottom_rot_fungus 0 Corticium_solani 0 002 @ 12992868 n 0000 #m 13015229 n 0000 | fungus causing bottom rot in lettuce -13015826 20 n 02 Pellicularia 0 genus_Pellicularia 0 004 @ 11592146 n 0000 #m 13015040 n 0000 %m 13016076 n 0000 %m 13016289 n 0000 | genus of fungi having the hymenium in the form of a crust; some species formerly placed in form genus Rhizoctinia -13016076 20 n 03 potato_fungus 0 Pellicularia_filamentosa 0 Rhizoctinia_solani 0 002 @ 12992868 n 0000 #m 13015826 n 0000 | fungus causing a disease in potatoes characterized by black scurfy spots on the tubers -13016289 20 n 02 coffee_fungus 0 Pellicularia_koleroga 0 002 @ 12992868 n 0000 #m 13015826 n 0000 | fungus causing a disease in coffee and some other tropical plants -13016457 20 n 02 Tricholomataceae 0 family_Tricholomataceae 0 009 @ 11590783 n 0000 #m 12998349 n 0000 %m 13001743 n 0000 %m 13005166 n 0000 %m 13016749 n 0000 %m 13020623 n 0000 %m 13022078 n 0000 %m 13231436 n 0000 %m 13232515 n 0000 | a family of fungi belonging to the order Agaricales -13016749 20 n 02 Tricholoma 0 genus_Tricholoma 0 010 @ 11592146 n 0000 #m 13016457 n 0000 %m 13017240 n 0000 %m 13017439 n 0000 %m 13017610 n 0000 %m 13017789 n 0000 %m 13017979 n 0000 %m 13018088 n 0000 %m 13018232 n 0000 %m 13018407 n 0000 | agarics with white spores and a fleshy stalk and notched gills; of various colors both edible and inedible -13017102 20 n 02 blewits 0 Clitocybe_nuda 0 001 @ 12998815 n 0000 | edible agaric that is pale lilac when young; has a smooth moist cap -13017240 20 n 02 sandy_mushroom 0 Tricholoma_populinum 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | an edible agaric that fruits in great clusters (especially in sandy soil under cottonwood trees) -13017439 20 n 01 Tricholoma_pessundatum 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | a mildly poisonous agaric with a viscid reddish brown cap and white gills and stalk -13017610 20 n 01 Tricholoma_sejunctum 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | an agaric with a cap that is coated with dark fibrils in the center and has yellowish margins -13017789 20 n 02 man-on-a-horse 0 Tricholoma_flavovirens 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | an edible agaric with yellow gills and a viscid yellow cap that has a brownish center -13017979 20 n 01 Tricholoma_venenata 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | a poisonous white agaric -13018088 20 n 01 Tricholoma_pardinum 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | a poisonous agaric having a pale cap with fine grey fibrils -13018232 20 n 01 Tricholoma_vaccinum 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | an agaric with a cap that is densely covered with reddish fibrils and pale gills and stalk -13018407 20 n 01 Tricholoma_aurantium 0 002 @ 12998815 n 0000 #m 13016749 n 0000 | an orange tan agaric whose gills become brown by maturity; has a strong odor and taste -13018579 20 n 02 Volvariaceae 0 family_Volvariaceae 0 003 @ 11590783 n 0000 #m 12998349 n 0000 %m 13018749 n 0000 | a family of fungi belonging to the order Agaricales -13018749 20 n 02 Volvaria 0 genus_Volvaria 0 003 @ 11592146 n 0000 #m 13018579 n 0000 %m 13018906 n 0000 | agarics having pink spores and a distinct volva -13018906 20 n 01 Volvaria_bombycina 0 002 @ 12992868 n 0000 #m 13018749 n 0000 | a parasite on various trees -13019017 20 n 02 Pluteaceae 0 family_Pluteaceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 13019202 n 0000 %m 13020011 n 0000 | a family of fungi belonging to the order Agaricales -13019202 20 n 03 Pluteus 0 genus_Pluteus 0 roof_mushroom 0 005 @ 11592146 n 0000 #m 13019017 n 0000 %m 13019496 n 0000 %m 13019643 n 0000 %m 13019835 n 0000 | a large genus of fungi belonging to the family Pluteaceae; the shape of the cap resembles a roof; often abundant early in the summer -13019496 20 n 01 Pluteus_aurantiorugosus 0 002 @ 12998815 n 0000 #m 13019202 n 0000 | an agaric with a brilliant scarlet cap and a slender stalk -13019643 20 n 02 Pluteus_magnus 0 sawdust_mushroom 0 002 @ 12998815 n 0000 #m 13019202 n 0000 | an edible agaric found in piles of hardwood sawdust; the caps are black and coarsely wrinkled -13019835 20 n 02 deer_mushroom 0 Pluteus_cervinus 0 002 @ 12998815 n 0000 #m 13019202 n 0000 | a small edible agaric with a slender stalk; usually found on rotting hardwoods -13020011 20 n 02 Volvariella 0 genus_Volvariella 0 004 @ 11592146 n 0000 #m 13019017 n 0000 %m 13020191 n 0000 %m 13020481 n 0000 | an important genus of mushrooms in the Orient -13020191 20 n 03 straw_mushroom 0 Chinese_mushroom 0 Volvariella_volvacea 0 002 @ 12998815 n 0000 #m 13020011 n 0000 | small tropical and subtropical edible mushroom having a white cap and long stem; an expensive delicacy in China and other Asian countries where it is grown commercially -13020481 20 n 01 Volvariella_bombycina 0 002 @ 12998815 n 0000 #m 13020011 n 0000 | a mushroom with a dry yellowish to white fibrillose cap -13020623 20 n 02 Clitocybe 0 genus_Clitocybe 0 008 @ 11592146 n 0000 #m 13016457 n 0000 %m 13020964 n 0000 %m 13021166 n 0000 %m 13021332 n 0000 %m 13021543 n 0000 %m 13021689 n 0000 %m 13021867 n 0000 | a genus of agarics with white to pale yellow spore deposits and fleshy stalks centrally attached to the cap and closely attached gills -13020964 20 n 01 Clitocybe_clavipes 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | an agaric with a flat cap that is greyish or yellowish brown with pallid gills and a stalk that bulges toward the base -13021166 20 n 01 Clitocybe_dealbata 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | a small poisonous agaric; has a dry white cap with crowded gills and a short stalk -13021332 20 n 01 Clitocybe_inornata 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | a fungus with a cap that is creamy grey when young and turns brown with age and a whitish stalk that stains yellow when handled -13021543 20 n 02 Clitocybe_robusta 0 Clytocybe_alba 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | a large white agaric; edible but not palatable -13021689 20 n 03 Clitocybe_irina 0 Tricholoma_irinum 0 Lepista_irina 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | an edible agaric with large silky white caps and thick stalks -13021867 20 n 01 Clitocybe_subconnexa 0 002 @ 12998815 n 0000 #m 13020623 n 0000 | an edible white agaric that fruits in dense clusters; the gills are narrow and crowded and the stalk is fleshy and unpolished -13022078 20 n 02 Flammulina 0 genus_Flammulina 0 003 @ 11592146 n 0000 #m 13016457 n 0000 %m 13022210 n 0000 | a genus of agarics -13022210 20 n 02 winter_mushroom 0 Flammulina_velutipes 0 002 @ 12998815 n 0000 #m 13022078 n 0000 | an edible agaric that is available in early spring or late fall when few other mushrooms are; has a viscid smooth orange to brown cap and a velvety stalk that turns black in maturity and pallid gills; often occur in clusters -13022538 20 n 01 hypha 0 004 @ 14867858 n 0000 #p 13022709 n 0000 ~ 11549138 n 0000 ~ 13231298 n 0000 | any of the threadlike filaments forming the mycelium of a fungus -13022709 20 n 01 mycelium 0 004 @ 13086908 n 0000 #p 12992868 n 0000 %p 13022538 n 0000 ~ 13022903 n 0000 | the vegetative part of a fungus consisting of a mass of branching threadlike hyphae -13022903 20 n 01 sclerotium 2 001 @ 13022709 n 0000 | compact usually dark-colored mass of hardened mycelium constituting a vegetative food-storage body in various true fungi; detaches when mature and can give rise to new growth -13023134 20 n 01 sac_fungus 0 002 @ 12992868 n 0000 #m 13023292 n 0000 | any of various ascomycetous fungi in which the spores are formed in a sac or ascus -13023292 20 n 04 Ascomycota 0 subdivision_Ascomycota 0 Ascomycotina 0 subdivision_Ascomycotina 0 010 @ 08220891 n 0000 #m 12994979 n 0000 %m 12967281 n 0000 %m 12984802 n 0000 %m 13023134 n 0000 %m 13023783 n 0000 %m 13024012 n 0000 %m 13024763 n 0000 %m 13026529 n 0000 %m 13028070 n 0000 | a large subdivision of Eumycota including Hemiascomycetes and Plectomycetes and Pyrenomycetes and Discomycetes; sac fungi; in some classification systems considered a division of the kingdom Fungi -13023783 20 n 02 Ascomycetes 0 class_Ascomycetes 0 005 @ 08103777 n 0000 #m 13023292 n 0000 %m 13024348 n 0000 %m 13028337 n 0000 %m 13031690 n 0000 | large class of higher fungi coextensive with division Ascomycota: sac fungi -13024012 20 n 02 ascomycete 0 ascomycetous_fungus 0 009 @ 12992868 n 0000 #m 13023292 n 0000 + 03023077 a 0101 %p 11532816 n 0000 ~ 12983873 n 0000 ~ 12983961 n 0000 ~ 13024500 n 0000 ~ 13028611 n 0000 %p 13092078 n 0000 | any fungus of the class Ascomycetes (or subdivision Ascomycota) in which the spores are formed inside an ascus -13024348 20 n 02 Euascomycetes 0 subclass_Euascomycetes 0 002 @ 08103777 n 0000 #m 13023783 n 0000 | category not used in many classification systems -13024500 20 n 02 Clavicipitaceae 0 grainy_club_mushrooms 0 002 @ 13024012 n 0000 ~ 13024653 n 0000 | any of various mushrooms of the class Ascomycetes -13024653 20 n 01 grainy_club 0 002 @ 13024500 n 0000 ~ 12962059 n 0000 | a variety of grainy club mushrooms -13024763 20 n 02 Hemiascomycetes 0 class_Hemiascomycetes 0 003 @ 08103777 n 0000 #m 13023292 n 0000 %m 13024967 n 0000 | class of fungi in which no ascocarps are formed: yeasts and some plant parasites -13024967 20 n 02 Endomycetales 0 order_Endomycetales 0 005 @ 11594676 n 0000 #m 13024763 n 0000 %m 13025197 n 0000 %m 13025647 n 0000 %m 13026146 n 0000 | fungi having a zygote or a single cell developing directly into an ascus -13025197 20 n 02 Saccharomycetaceae 0 family_Saccharomycetaceae 0 003 @ 11590783 n 0000 #m 13024967 n 0000 %m 13025421 n 0000 | family of fungi comprising the typical yeasts: reproduce by budding and ferment carbohydrates -13025421 20 n 02 Saccharomyces 0 genus_Saccharomyces 0 004 @ 11592146 n 0000 #m 13025197 n 0000 %m 13025854 n 0000 %m 13026015 n 0000 | single-celled yeasts that reproduce asexually by budding; used to ferment carbohydrates -13025647 20 n 01 yeast 0 005 @ 12992868 n 0000 #m 13024967 n 0000 + 03145467 a 0101 ~ 13025854 n 0000 ~ 13026015 n 0000 | any of various single-celled fungi that reproduce asexually by budding or division -13025854 20 n 03 baker's_yeast 0 brewer's_yeast 0 Saccharomyces_cerevisiae 0 002 @ 13025647 n 0000 #m 13025421 n 0000 | used as a leaven in baking and brewing -13026015 20 n 02 wine-maker's_yeast 0 Saccharomyces_ellipsoides 0 002 @ 13025647 n 0000 #m 13025421 n 0000 | used in making wine -13026146 20 n 02 Schizosaccharomycetaceae 0 family_Schizosaccharomycetaceae 0 003 @ 11590783 n 0000 #m 13024967 n 0000 %m 13026339 n 0000 | a family of fungi belonging to order Endomycetales -13026339 20 n 02 Schizosaccharomyces 0 genus_Schizosaccharomyces 0 002 @ 11592146 n 0000 #m 13026146 n 0000 | type and only genus of Schizosaccharomycetaceae; comprises the fission yeasts -13026529 20 n 02 Plectomycetes 0 class_Plectomycetes 0 003 @ 08103777 n 0000 #m 13023292 n 0000 %m 13026763 n 0000 | class of fungi in which the fruiting body is a cleistothecium (it releases spores only on decay or disintegration) -13026763 20 n 04 Eurotiales 0 order_Eurotiales 0 Aspergillales 0 order_Aspergillales 0 004 @ 11594676 n 0000 #m 13026529 n 0000 %m 13027049 n 0000 %m 13027190 n 0000 | order of fungi having a closed ascocarp (cleistothecium) with the asci scattered rather than gathered in a hymenium -13027049 20 n 02 Eurotium 0 genus_Eurotium 0 002 @ 11592146 n 0000 #m 13026763 n 0000 | a genus of fungi belonging to the order Eurotiales -13027190 20 n 02 Aspergillaceae 0 family_Aspergillaceae 0 004 @ 11590783 n 0000 #m 13026763 n 0000 %m 13027375 n 0000 %m 13027670 n 0000 | family of fungi including some common molds -13027375 20 n 02 Aspergillus 0 genus_Aspergillus 0 002 @ 11592146 n 0000 #m 13027190 n 0000 | genus of common molds causing food spoilage and some pathogenic to plants and animals -13027557 20 n 01 Aspergillus_fumigatus 0 001 @ 12992868 n 0000 | a mold causing aspergillosis in birds and man -13027670 20 n 02 Thielavia 0 genus_Thielavia 0 003 @ 11592146 n 0000 #m 13027190 n 0000 %m 13027879 n 0000 | genus of fungi having spherical brown perithecia and some conidia borne in chains; cause root rot -13027879 20 n 02 brown_root_rot_fungus 0 Thielavia_basicola 0 002 @ 12992868 n 0000 #m 13027670 n 0000 | fungus causing brown root rot in plants of the pea and potato and cucumber families -13028070 20 n 02 Pyrenomycetes 0 class_Pyrenomycetes 0 005 @ 08103777 n 0000 #m 13023292 n 0000 %m 12963140 n 0000 %m 12963796 n 0000 %m 12965056 n 0000 | class of fungi in which the fruiting body is a perithecium; includes powdery mildews and ergot and Neurospora -13028337 20 n 02 Discomycetes 0 subclass_Discomycetes 0 005 @ 08103777 n 0000 #m 13023783 n 0000 + 02714433 a 0101 %m 13028611 n 0000 %m 13029946 n 0000 | a large and taxonomically difficult group of Ascomycetes in which the fleshy fruiting body is disklike or cup-shaped -13028611 20 n 02 discomycete 0 cup_fungus 0 012 @ 13024012 n 0000 #m 13028337 n 0000 ~ 13028937 n 0000 ~ 13029122 n 0000 ~ 13029326 n 0000 ~ 13029610 n 0000 ~ 13029760 n 0000 ~ 13030616 n 0000 ~ 13030852 n 0000 ~ 13031193 n 0000 ~ 13031323 n 0000 ~ 13031474 n 0000 | any fungus that is a member of the subclass Discomycetes -13028937 20 n 01 Leotia_lubrica 0 001 @ 13028611 n 0000 | a discomycete that develops in clusters of slippery rubbery gelatinous fruiting bodies that are dingy yellow to tan in color -13029122 20 n 01 Mitrula_elegans 0 001 @ 13028611 n 0000 | a discomycete that is 3-8 cm high with an orange to yellow fertile portion and white or pinkish stalks often half in and half out of the water -13029326 20 n 02 Sarcoscypha_coccinea 0 scarlet_cup 0 001 @ 13028611 n 0000 | a discomycete that is a harbinger of spring; the fruiting body is thin and tough and saucer-shaped (about the size of quarter to a half dollar) with a deep bright red upper surface and a whitish exterior -13029610 20 n 01 Caloscypha_fulgens 0 001 @ 13028611 n 0000 | an early spring variety of discomycete with yellow to orange yellow lining of the cup -13029760 20 n 02 Aleuria_aurantia 0 orange_peel_fungus 0 001 @ 13028611 n 0000 | a discomycete with bright orange cup-shaped or saucer-shaped fruiting bodies and pale orange exteriors -13029946 20 n 02 Pezizales 0 order_Pezizales 0 005 @ 11594676 n 0000 #m 13028337 n 0000 %m 13030157 n 0000 %m 13034277 n 0000 %m 13034953 n 0000 | order of mostly saprophytic fungi having cup-shaped ascocarps -13030157 20 n 02 Pezizaceae 0 family_Pezizaceae 0 004 @ 11590783 n 0000 #m 13029946 n 0000 %m 13030438 n 0000 %m 13031007 n 0000 | large family comprising many typical cup fungi -13030337 20 n 01 elf_cup 0 001 @ 11533622 n 0000 | apothecium of a fungus of the family Pezizaceae -13030438 20 n 02 Peziza 0 genus_Peziza 0 004 @ 11592146 n 0000 #m 13030157 n 0000 %m 13030616 n 0000 %m 13030852 n 0000 | type genus of the Pezizaceae: a variety of cup fungus -13030616 20 n 01 Peziza_domicilina 0 002 @ 13028611 n 0000 #m 13030438 n 0000 | a discomycetous fungus of the genus Peziza; the fragile fruiting body is a ghostly white but stains yellow when broken; favors strongly alkaline habitats -13030852 20 n 03 blood_cup 0 fairy_cup 2 Peziza_coccinea 0 002 @ 13028611 n 0000 #m 13030438 n 0000 | a scarlet European fungus with cup-shaped ascocarp -13031007 20 n 02 Plectania 0 genus_Plectania 0 002 @ 11592146 n 0000 #m 13030157 n 0000 | genus of fungi in the family Pezizaceae closely related to and often included in genus Peziza -13031193 20 n 02 Urnula_craterium 0 urn_fungus 0 001 @ 13028611 n 0000 | an urn-shaped discomycete with a nearly black interior -13031323 20 n 01 Galiella_rufa 0 001 @ 13028611 n 0000 | the cup-shaped fruiting body of this discomycete has a jellylike interior and a short stalk -13031474 20 n 01 Jafnea_semitosta 0 001 @ 13028611 n 0000 | the fruiting bodies of this discomycete have a firm texture and long retain their cup shape; the pale brown interior blends with the color of dead leaves -13031690 20 n 02 Morchellaceae 0 family_Morchellaceae 0 008 @ 11590783 n 0000 #m 13023783 n 0000 %m 13032618 n 0000 %m 13032923 n 0000 %m 13033396 n 0000 %m 13033577 n 0000 %m 13033879 n 0000 %m 13034062 n 0000 | a family of edible fungi including the true morels -13031956 20 n 02 Morchella 0 genus_Morchella 0 004 @ 11592146 n 0000 #m 13034953 n 0000 %m 13032115 n 0000 %m 13032381 n 0000 | genus of edible fungi: morel -13032115 20 n 01 morel 0 008 @ 12997919 n 0000 #m 13031956 n 0000 ~ 13032381 n 0000 ~ 13032618 n 0000 ~ 13032923 n 0000 ~ 13033577 n 0000 ~ 13033879 n 0000 ~ 13034062 n 0000 | any of various edible mushrooms of the genus Morchella having a brownish spongelike cap -13032381 20 n 04 common_morel 0 Morchella_esculenta 0 sponge_mushroom 0 sponge_morel 0 002 @ 13032115 n 0000 #m 13031956 n 0000 | an edible and choice morel with a globular to elongate head with an irregular pattern of pits and ridges -13032618 20 n 02 Disciotis_venosa 0 cup_morel 0 002 @ 13032115 n 0000 #m 13031690 n 0000 | an edible morel with a cup-shaped or saucer-shaped fruiting body can be up to 20 cm wide; the fertile surface inside the cup has wrinkles radiating from the center; can be easily confused with inedible mushrooms -13032923 20 n 02 Verpa 0 bell_morel 0 004 @ 13032115 n 0000 #m 13031690 n 0000 ~ 13033134 n 0000 ~ 13033396 n 0000 | a morel whose fertile portion resembles a bell and is attached to the stipe only at the top -13033134 20 n 02 Verpa_bohemica 0 early_morel 0 001 @ 13032923 n 0000 | resembles a thimble on a finger; the surface of the fertile portion is folded into wrinkles that extend from the top down; fruiting begins in spring before the leaves are out on the trees -13033396 20 n 02 Verpa_conica 0 conic_Verpa 0 002 @ 13032923 n 0000 #m 13031690 n 0000 | a morel with a fertile portion that has a relatively smooth surface; the stalk is fragile -13033577 20 n 05 black_morel 0 Morchella_conica 0 conic_morel 0 Morchella_angusticeps 0 narrowhead_morel 0 002 @ 13032115 n 0000 #m 13031690 n 0000 | a morel whose pitted fertile body is attached to the stalk with little free skirt around it; the fertile body is grey when young and black in old age -13033879 20 n 02 Morchella_crassipes 0 thick-footed_morel 0 002 @ 13032115 n 0000 #m 13031690 n 0000 | a delicious morel with a conic fertile portion having deep and irregular pits -13034062 20 n 03 Morchella_semilibera 0 half-free_morel 0 cow's_head 0 002 @ 13032115 n 0000 #m 13031690 n 0000 | a morel with the ridged and pitted fertile portion attached to the stipe for about half its length -13034277 20 n 02 Sarcoscyphaceae 0 family_Sarcoscyphaceae 0 002 @ 11590783 n 0000 #m 13029946 n 0000 | family of fungi belonging to the order Pezizales -13034431 20 n 02 Wynnea 0 genus_Wynnea 0 001 @ 11592146 n 0000 | a genus of fungi belonging to the family Sarcoscyphaceae -13034555 20 n 01 Wynnea_americana 0 001 @ 12992868 n 0000 | a fungus composed of several apothecia that look like elongated rabbit ears; the sterile surface is dark brown and warty; the fertile surface is smooth and pinkish orange -13034788 20 n 01 Wynnea_sparassoides 0 001 @ 12992868 n 0000 | a fungus with a long solid stalk embedded in soil and a yellow-brown head shaped like a cauliflower -13034953 20 n 02 Helvellaceae 0 family_Helvellaceae 0 008 @ 11590783 n 0000 #m 13029946 n 0000 %m 13031956 n 0000 %m 13035241 n 0000 %m 13035389 n 0000 %m 13035521 n 0000 %m 13036592 n 0000 %m 13037124 n 0000 | family of false morels or lorchels; some are edible and some are poisonous -13035241 20 n 01 false_morel 0 004 @ 12992868 n 0000 #m 13034953 n 0000 ~ 13035707 n 0000 ~ 13036804 n 0000 | a fungus of the family Helvellaceae -13035389 20 n 01 lorchel 0 003 @ 12992868 n 0000 #m 13034953 n 0000 ~ 13038577 n 0000 | a large fungus of the family Helvellaceae -13035521 20 n 01 genus_Helvella 0 006 @ 11592146 n 0000 #m 13034953 n 0000 %m 13035707 n 0000 %m 13035925 n 0000 %m 13036116 n 0000 %m 13036312 n 0000 | type genus of the Helvellaceae -13035707 20 n 01 helvella 0 005 @ 13035241 n 0000 #m 13035521 n 0000 ~ 13035925 n 0000 ~ 13036116 n 0000 ~ 13036312 n 0000 | any fungus of the genus Helvella having the ascocarps stalked or pleated or often in folds -13035925 20 n 02 Helvella_crispa 0 miter_mushroom 0 002 @ 13035707 n 0000 #m 13035521 n 0000 | a helvella with a saddle-shaped fertile part and creamy color; the stalk is fluted and pitted -13036116 20 n 01 Helvella_acetabulum 0 002 @ 13035707 n 0000 #m 13035521 n 0000 | a helvella with a cup-shaped fertile body having a brown interior; the stalk is creamy white and heavily ribbed -13036312 20 n 01 Helvella_sulcata 0 002 @ 13035707 n 0000 #m 13035521 n 0000 | a helvella with an irregularly convoluted cap that is dark brown when young and becomes dull grey with age; the lower surface of the cap is smooth and pale grey; the stalk is thick and deeply fluted -13036592 20 n 01 genus_Discina 0 003 @ 11592146 n 0000 #m 13034953 n 0000 %m 13036907 n 0000 | a genus of fungi of the family Helvellaceae with a cup-shaped or saucer-shaped fruiting body and ornamented spores -13036804 20 n 01 discina 0 002 @ 13035241 n 0000 ~ 13036907 n 0000 | any fungus of the genus Discina -13036907 20 n 01 Discina_macrospora 0 002 @ 13036804 n 0000 #m 13036592 n 0000 | a discina with a flat or saucer-shaped fertile body that is brown on the upper surface; has a short stalk; not recommended for eating -13037124 20 n 01 genus_Gyromitra 0 008 @ 11592146 n 0000 #m 13034953 n 0000 %m 13037585 n 0000 %m 13037805 n 0000 %m 13038068 n 0000 %m 13038376 n 0000 %m 13038577 n 0000 %m 13038744 n 0000 | a genus of fungi of the family Helvellaceae with a fertile portion that is tan to brown -13037406 20 n 01 gyromitra 0 006 @ 12992868 n 0000 ~ 13037585 n 0000 ~ 13037805 n 0000 ~ 13038068 n 0000 ~ 13038376 n 0000 ~ 13038744 n 0000 | any fungus of the genus Gyromitra -13037585 20 n 02 Gyromitra_californica 0 California_false_morel 0 002 @ 13037406 n 0000 #m 13037124 n 0000 | a gyromitra with a brown puffed up fertile part and a thick fluted stalk; found under conifers in California -13037805 20 n 02 Gyromitra_sphaerospora 0 round-spored_gyromitra 0 002 @ 13037406 n 0000 #m 13037124 n 0000 | a gyromitra with a brown puffed up fertile part and a rosy pink fluted stalk and smooth round spores; found on hardwood slash east of the Great Plains -13038068 20 n 03 Gyromitra_esculenta 0 brain_mushroom 0 beefsteak_morel 0 002 @ 13037406 n 0000 #m 13037124 n 0000 | a poisonous gyromitra; the surface of the fertile body is smooth at first and becomes progressively undulating and wrinkled (but never truly pitted); color varies from dull yellow to brown -13038376 20 n 02 Gyromitra_infula 0 saddled-shaped_false_morel 0 002 @ 13037406 n 0000 #m 13037124 n 0000 | a poisonous fungus; saddle-shaped and dull yellow to brown fertile part is relatively even -13038577 20 n 02 Gyromitra_fastigiata 0 Gyromitra_brunnea 0 002 @ 13035389 n 0000 #m 13037124 n 0000 | a lorchel with deep brownish red fertile part and white stalk -13038744 20 n 01 Gyromitra_gigas 0 002 @ 13037406 n 0000 #m 13037124 n 0000 | a gyromitra with a large irregular stalk and fertile part that is yellow to brown and wrinkled; has early fruiting time -13038944 20 n 04 Gasteromycetes 0 class_Gasteromycetes 0 Gastromycetes 0 class_Gastromycetes 0 010 @ 08103777 n 0000 #m 12996225 n 0000 %m 12968408 n 0000 %m 12970872 n 0000 %m 13039349 n 0000 %m 13039553 n 0000 %m 13041548 n 0000 %m 13043264 n 0000 %m 13046285 n 0000 %m 13047216 n 0000 | fungi in which the hymenium is enclosed until after spores have matured: puffballs; earth stars; stinkhorn fungi -13039349 20 n 02 gasteromycete 0 gastromycete 0 006 @ 12992868 n 0000 #m 13038944 n 0000 ~ 12970193 n 0000 ~ 13041943 n 0000 ~ 13042134 n 0000 ~ 13042316 n 0000 | any fungus of the class Gasteromycetes -13039553 20 n 02 Phallales 0 order_Phallales 0 006 @ 11592146 n 0000 #m 13038944 n 0000 %m 13039870 n 0000 %m 13040303 n 0000 %m 13041312 n 0000 %m 13042514 n 0000 | order of fungi comprising the stinkhorns and related forms whose mature hymenium is slimy and fetid; sometimes placed in subclass Homobasidiomycetes -13039870 20 n 02 Phallaceae 0 family_Phallaceae 0 005 @ 11590783 n 0000 #m 13039553 n 0000 %m 13040108 n 0000 %m 13040971 n 0000 %m 13041172 n 0000 | a family of fungi belonging to the order Phallales and comprising the true stinkhorns -13040108 20 n 02 Phallus 0 genus_Phallus 0 004 @ 11592146 n 0000 #m 13039870 n 0000 %m 13040629 n 0000 %m 13040796 n 0000 | genus of fungi having the cap or pileus hanging free around the stem -13040303 20 n 02 stinkhorn 0 carrion_fungus 0 006 @ 12992868 n 0000 #m 13039553 n 0000 ~ 13040629 n 0000 ~ 13040796 n 0000 ~ 13041312 n 0000 ~ 13042982 n 0000 | any of various ill-smelling brown-capped fungi of the order Phallales; "the foul smell of the stinkhorn attracts insects that carry the spores away on their feet" -13040629 20 n 02 common_stinkhorn 0 Phallus_impudicus 0 002 @ 13040303 n 0000 #m 13040108 n 0000 | a common fungus formerly used in preparing a salve for rheumatism -13040796 20 n 01 Phallus_ravenelii 0 002 @ 13040303 n 0000 #m 13040108 n 0000 | this stinkhorn has a cap with a granulose surface at the apex and smells like decaying flesh -13040971 20 n 02 Dictyophera 0 genus_Dictyophera 0 002 @ 11592146 n 0000 #m 13039870 n 0000 | closely related to genus Phallus distinguished by an indusium hanging like a skirt from below the pileus -13041172 20 n 02 Mutinus 0 genus_Mutinus 0 002 @ 11592146 n 0000 #m 13039870 n 0000 | a genus of fungi belonging to the family Phallaceae -13041312 20 n 02 dog_stinkhorn 0 Mutinus_caninus 0 002 @ 13040303 n 0000 #m 13039553 n 0000 | a stinkhorn having a stalk without a cap; the slimy gleba is simply plastered on its surface near the apex where winged insects can find it -13041548 20 n 02 Tulostomatales 0 order_Tulostomatales 0 003 @ 11594676 n 0000 #m 13038944 n 0000 %m 13041725 n 0000 | an order of fungi belonging to the class Gasteromycetes -13041725 20 n 02 Calostomataceae 0 family_Calostomataceae 0 005 @ 11590783 n 0000 #m 13041548 n 0000 %m 13041943 n 0000 %m 13042134 n 0000 %m 13042316 n 0000 | a family of fungi belonging to the order Tulostomatales -13041943 20 n 01 Calostoma_lutescens 0 002 @ 13039349 n 0000 #m 13041725 n 0000 | a gasteromycete with a leathery stalk and a fruiting body that is globose and has a pale yellow spore case -13042134 20 n 01 Calostoma_cinnabarina 0 002 @ 13039349 n 0000 #m 13041725 n 0000 | a gasteromycete with a leathery stalk and a fruiting body this globose and has a red spore case -13042316 20 n 01 Calostoma_ravenelii 0 002 @ 13039349 n 0000 #m 13041725 n 0000 | a gasteromycete with a leathery stalk and a fruiting body with a thin gelatinous spore case and elliptical spores -13042514 20 n 02 Clathraceae 0 family_Clathraceae 0 004 @ 11590783 n 0000 #m 13039553 n 0000 %m 13042694 n 0000 %m 13042814 n 0000 | family of fleshy fungi resembling stinkhorns -13042694 20 n 02 Clathrus 0 genus_Clathrus 0 002 @ 11592146 n 0000 #m 13042514 n 0000 | type genus of the Clathraceae -13042814 20 n 02 Pseudocolus 0 genus_Pseudocolus 0 003 @ 11592146 n 0000 #m 13042514 n 0000 %m 13042982 n 0000 | a genus of fungi belonging to the family Clathraceae -13042982 20 n 02 stinky_squid 0 Pseudocolus_fusiformis 0 002 @ 13040303 n 0000 #m 13042814 n 0000 | a stinkhorn of genus Pseudocolus; the fruiting body first resembles a small puffball that soon splits open to form a stalk with tapering arms that arch and taper to a common point -13043264 20 n 02 Lycoperdales 0 order_Lycoperdales 0 004 @ 11594676 n 0000 #m 13038944 n 0000 %m 13043516 n 0000 %m 13044541 n 0000 | small order of basidiomycetous fungi having fleshy often globose fruiting bodies; includes puffballs and earthstars -13043516 20 n 02 Lycoperdaceae 0 family_Lycoperdaceae 0 005 @ 11590783 n 0000 #m 13043264 n 0000 %m 13043746 n 0000 %m 13043926 n 0000 %m 13044149 n 0000 | a fungus family belonging to the order Lycoperdales; includes puffballs -13043746 20 n 02 Lycoperdon 0 genus_Lycoperdon 0 002 @ 11592146 n 0000 #m 13043516 n 0000 | genus of fungi whose fruiting body tapers toward a base consisting of spongy mycelium -13043926 20 n 02 puffball 0 true_puffball 0 003 @ 12992868 n 0000 #m 13043516 n 0000 ~ 13044375 n 0000 | any of various fungi of the family Lycoperdaceae whose round fruiting body discharges a cloud of spores when mature -13044149 20 n 02 Calvatia 0 genus_Calvatia 0 003 @ 11592146 n 0000 #m 13043516 n 0000 %m 13044375 n 0000 | genus of puffballs having outer casings whose upper parts break at maturity into angular pieces to expose the spores -13044375 20 n 02 giant_puffball 0 Calvatia_gigantea 0 002 @ 13043926 n 0000 #m 13044149 n 0000 | huge edible puffball up to 2 feet diameter and 25 pounds in weight -13044541 20 n 02 Geastraceae 0 family_Geastraceae 0 006 @ 11590783 n 0000 #m 13043264 n 0000 %m 13044778 n 0000 %m 13045027 n 0000 %m 13045429 n 0000 %m 13045834 n 0000 | a family of earthstar fungi belonging to the order Lycoperdales -13044778 20 n 01 earthstar 0 005 @ 12992868 n 0000 #m 13044541 n 0000 ~ 13045210 n 0000 ~ 13045975 n 0000 ~ 13046130 n 0000 | any fungus of the family Geastraceae; in form suggesting a puffball whose outer peridium splits into the shape of a star -13045027 20 n 02 Geastrum 0 genus_Geastrum 0 002 @ 11592146 n 0000 #m 13044541 n 0000 | type genus of Geastraceae; fungi whose outer peridium when dry splits into starlike segments -13045210 20 n 01 Geastrum_coronatum 0 001 @ 13044778 n 0000 | an earthstar with a bluish spore sac and a purplish brown gleba; at maturity the outer layer splits into rays that bend backward and elevate the spore sac -13045429 20 n 02 Radiigera 0 genus_Radiigera 0 003 @ 11592146 n 0000 #m 13044541 n 0000 %m 13045594 n 0000 | a genus of fungus belonging to the family Geastraceae -13045594 20 n 01 Radiigera_fuscogleba 0 002 @ 12992868 n 0000 #m 13045429 n 0000 | a fungus similar to an earthstar except that it does not open up; the spore mass is brown at maturity with a column of sterile tissue extending up into it -13045834 20 n 02 Astreus 0 genus_Astreus 0 002 @ 11592146 n 0000 #m 13044541 n 0000 | a genus of fungi belonging to the family Geastraceae -13045975 20 n 01 Astreus_pteridis 0 001 @ 13044778 n 0000 | the largest earthstar; the fruiting body can measure 15 cm across when the rays are expanded -13046130 20 n 01 Astreus_hygrometricus 0 001 @ 13044778 n 0000 | a common species of earthstar widely distributed in sandy soil; the gleba is a pale tan -13046285 20 n 02 Nidulariales 0 order_Nidulariales 0 004 @ 11594676 n 0000 #m 13038944 n 0000 %m 13046512 n 0000 %m 13047011 n 0000 | small order of basidiomycetous fungi comprising families Nidulariaceae and Sphaerobolaceae -13046512 20 n 02 Nidulariaceae 0 family_Nidulariaceae 0 004 @ 11590783 n 0000 #m 13046285 n 0000 %m 13046669 n 0000 %m 13046887 n 0000 | bird's-nest fungi -13046669 20 n 01 bird's-nest_fungus 0 002 @ 12992868 n 0000 #m 13046512 n 0000 | any of various fungi of the family Nidulariaceae having a cup-shaped body containing several egg-shaped structure enclosing the spores -13046887 20 n 02 Nidularia 0 genus_Nidularia 0 002 @ 11592146 n 0000 #m 13046512 n 0000 | type genus of the Nidulariaceae -13047011 20 n 02 Sphaerobolaceae 0 family_Sphaerobolaceae 0 002 @ 11590783 n 0000 #m 13046285 n 0000 | monotypic family of fungi in which the more or less spherical gleba is forcibly ejected at maturity -13047216 20 n 02 Secotiales 0 order_Secotiales 0 003 @ 11594676 n 0000 #m 13038944 n 0000 %m 13047385 n 0000 | an order of fungi belonging to the class Gasteromycetes -13047385 20 n 02 Secotiaceae 0 family_Secotiaceae 0 005 @ 11590783 n 0000 #m 13047216 n 0000 %m 13047706 n 0000 %m 13048212 n 0000 %m 13048666 n 0000 | a family of fungi that have a stalk and cap and a wrinkled mass of tissue (the gleba) where spores are produced; are often dismissed as misshapen forms of other fungi -13047706 20 n 02 Gastrocybe 0 genus_Gastrocybe 0 003 @ 11592146 n 0000 #m 13047385 n 0000 %m 13047862 n 0000 | a genus of fungi of the family Secotiaceae -13047862 20 n 01 Gastrocybe_lateritia 0 002 @ 12992868 n 0000 #m 13047706 n 0000 | a species of Gastrocybe fungus that has a conic cap and a thin stalk; at first the stalk is upright but as it matures the stalk bends over and then downward; the cap then gelatinizes and a slimy mass containing the spores falls to the ground as the stalk collapses -13048212 20 n 02 Macowanites 0 genus_Macowanites 0 003 @ 11592146 n 0000 #m 13047385 n 0000 %m 13048447 n 0000 | a stout-stemmed genus of fungus belonging to the family Secotiaceae having fruiting bodies that never expand completely -13048447 20 n 01 Macowanites_americanus 0 002 @ 12992868 n 0000 #m 13048212 n 0000 | a small fungus with a fragile cap that cracks to expose the white context and a white stalk that is practically enclosed by the cap -13048666 20 n 02 Gastroboletus 0 genus_Gastroboletus 0 004 @ 11592146 n 0000 #m 13047385 n 0000 %m 13048932 n 0000 %m 13049105 n 0000 | a genus of fungi belonging to the family Secotiaceae; they resemble boletes but the spores are not discharged from the basidium -13048932 20 n 01 Gastroboletus_scabrosus 0 002 @ 12992868 n 0000 #m 13048666 n 0000 | a dingy yellow brown fungus with a rough stalk that superficially resembles a bolete -13049105 20 n 01 Gastroboletus_turbinatus 0 002 @ 12992868 n 0000 #m 13048666 n 0000 | a fungus with a cap that can vary from red to dark brown; superficially resembles a bolete -13049285 20 n 02 Aphyllophorales 0 order_Aphyllophorales 0 004 @ 11594676 n 0000 #m 12996225 n 0000 %m 13049561 n 0000 %m 13053187 n 0000 | includes chiefly saprophytic fungi typically with shelflike bodies; sometimes placed in class Hymenomycetes or included in Agaricales -13049561 20 n 02 Polyporaceae 0 family_Polyporaceae 0 013 @ 11590783 n 0000 #m 13049285 n 0000 %m 13050555 n 0000 %m 13050705 n 0000 %m 13050940 n 0000 %m 13051196 n 0000 %m 13051346 n 0000 %m 13051546 n 0000 %m 13051694 n 0000 %m 13051866 n 0000 %m 13052014 n 0000 %m 13052431 n 0000 %m 13053816 n 0000 | fungi that become corky or woody with age, often forming shelflike growths on trees -13049953 20 n 03 polypore 0 pore_fungus 0 pore_mushroom 0 010 @ 12997654 n 0000 ~ 13050397 n 0000 ~ 13050705 n 0000 ~ 13050940 n 0000 ~ 13051346 n 0000 ~ 13051694 n 0000 ~ 13052014 n 0000 ~ 13052248 n 0000 ~ 13052931 n 0000 ~ 13053608 n 0000 | woody pore fungi; any fungus of the family Polyporaceae or family Boletaceae having the spore-bearing surface within tubes or pores; the fruiting bodies are usually woody at maturity and persistent -13050397 20 n 02 bracket_fungus 0 shelf_fungus 0 001 @ 13049953 n 0000 | a woody fungus that forms shelflike sporophores on tree trunks and wood structures -13050555 20 n 02 Albatrellus 0 genus_Albatrellus 0 002 @ 11592146 n 0000 #m 13049561 n 0000 | a genus of fungi belonging to the family Polyporaceae -13050705 20 n 01 Albatrellus_dispansus 0 002 @ 13049953 n 0000 #m 13049561 n 0000 | a rare fungus having a large (up to 14 inches wide) yellow fruiting body with multiple individual caps and a broad central stalk and a fragrant odor -13050940 20 n 02 Albatrellus_ovinus 0 sheep_polypore 0 002 @ 13049953 n 0000 #m 13049561 n 0000 | a fungus with a whitish often circular cap and a white pore surface and small pores and a white central stalk; found under conifers; edible but not popular -13051196 20 n 02 Neolentinus 0 genus_Neolentinus 0 002 @ 11592146 n 0000 #m 13049561 n 0000 | a genus of fungi belonging to the family Polyporaceae -13051346 20 n 01 Neolentinus_ponderosus 0 002 @ 13049953 n 0000 #m 13049561 n 0000 | a gilled polypore with a large cap (up to 15 inches in diameter) and a broad stalk; edible when young and tender -13051546 20 n 02 Nigroporus 0 genus_Nigroporus 0 002 @ 11592146 n 0000 #m 13049561 n 0000 | a genus of fungi belonging to the family Polyporaceae -13051694 20 n 01 Nigroporus_vinosus 0 002 @ 13049953 n 0000 #m 13049561 n 0000 | a woody pore fungus with a dark brown to red brown cap and spore surface and small pores -13051866 20 n 02 Oligoporus 0 genus_Oligoporus 0 002 @ 11592146 n 0000 #m 13049561 n 0000 | a genus of fungi belonging to the family Polyporaceae -13052014 20 n 01 Oligoporus_leucospongia 0 002 @ 13049953 n 0000 #m 13049561 n 0000 | a pore fungus with a whitish cottony soft cap found on conifer logs in forests at high elevation in the western United States and adjacent Canada -13052248 20 n 01 Polyporus_tenuiculus 0 002 @ 13049953 n 0000 #m 13052431 n 0000 | a fungus with a whitish kidney-shaped cap and elongated pores; causes white rot in dead hardwoods -13052431 20 n 02 Polyporus 0 genus_Polyporus 0 005 @ 11592146 n 0000 #m 13049561 n 0000 %m 13052248 n 0000 %m 13052670 n 0000 %m 13052931 n 0000 | type genus of the Polyporaceae; includes important pathogens of e.g. birches and conifers -13052670 20 n 04 hen-of-the-woods 0 hen_of_the_woods 0 Polyporus_frondosus 0 Grifola_frondosa 0 002 @ 12992868 n 0000 #m 13052431 n 0000 | large greyish-brown edible fungus forming a mass of overlapping caps that somewhat resembles a hen at the base of trees -13052931 20 n 02 Polyporus_squamosus 0 scaly_polypore 0 002 @ 13049953 n 0000 #m 13052431 n 0000 | a fungus with a lateral stalk (when there is a stalk) and a scaly cap that becomes nearly black in maturity; widely distributed in the northern hemisphere -13053187 20 n 02 Fistulinaceae 0 family_Fistulinaceae 0 003 @ 11590783 n 0000 #m 13049285 n 0000 %m 13053450 n 0000 | a family of fungi closely related to the family Polyporaceae except that the tubes on the undersurface of the cap are separate from each other -13053450 20 n 02 Fistulina 0 genus_Fistulina 0 003 @ 11592146 n 0000 #m 13053187 n 0000 %m 13053608 n 0000 | fungi having each pore separate though crowded -13053608 20 n 02 beefsteak_fungus 0 Fistulina_hepatica 0 002 @ 13049953 n 0000 #m 13053450 n 0000 | a popular edible fungus with a cap the color of liver or raw meat; abundant in southeastern United States -13053816 20 n 02 Fomes 0 genus_Fomes 0 003 @ 11592146 n 0000 #m 13049561 n 0000 %m 13054073 n 0000 | genus of bracket fungi forming corky or woody perennial shelflike sporophores often of large size; includes some that cause destructive heartrot in trees -13054073 20 n 02 agaric 2 Fomes_igniarius 0 002 @ 12992868 n 0000 #m 13053816 n 0000 | fungus used in the preparation of punk for fuses -13054211 20 n 02 Boletaceae 0 family_Boletaceae 0 010 @ 11590783 n 0000 #m 12998349 n 0000 %m 13054560 n 0000 %m 13055009 n 0000 %m 13057845 n 0000 %m 13058447 n 0000 %m 13058796 n 0000 %m 13059139 n 0000 %m 13059485 n 0000 %m 13059852 n 0000 | family of fleshy fungi having the germ pores easily separating from the cup and often from each other -13054560 20 n 01 bolete 0 021 @ 12992868 n 0000 #m 13054211 n 0000 ~ 13055423 n 0000 ~ 13055577 n 0000 ~ 13055792 n 0000 ~ 13055949 n 0000 ~ 13056135 n 0000 ~ 13056349 n 0000 ~ 13056607 n 0000 ~ 13056799 n 0000 ~ 13057054 n 0000 ~ 13057242 n 0000 ~ 13057422 n 0000 ~ 13057639 n 0000 ~ 13058037 n 0000 ~ 13058272 n 0000 ~ 13058608 n 0000 ~ 13058963 n 0000 ~ 13059298 n 0000 ~ 13059657 n 0000 ~ 13060017 n 0000 | any fungus of the family Boletaceae -13055009 20 n 02 Boletus 0 genus_Boletus 0 014 @ 11592146 n 0000 #m 13054211 n 0000 %m 13055423 n 0000 %m 13055577 n 0000 %m 13055792 n 0000 %m 13055949 n 0000 %m 13056135 n 0000 %m 13056349 n 0000 %m 13056607 n 0000 %m 13056799 n 0000 %m 13057054 n 0000 %m 13057242 n 0000 %m 13057422 n 0000 %m 13057639 n 0000 | type genus of Boletaceae; genus of soft early-decaying pore fungi; some poisonous and some edible -13055423 20 n 01 Boletus_chrysenteron 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus convex cap and a dingy yellow under surface and a dry stalk -13055577 20 n 01 Boletus_edulis 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | an edible and choice fungus; has a convex cap that is slightly viscid when fresh and moist but soon dries and a thick bulbous tan stalk -13055792 20 n 02 Frost's_bolete 0 Boletus_frostii 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus with a red cap and a red coarsely reticulate stalk -13055949 20 n 01 Boletus_luridus 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a poisonous fungus with a dingy yellow cap and orange red undersurface and a cylindrical reticulate stalk -13056135 20 n 01 Boletus_mirabilis 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus that is edible when young and fresh; has a dark brown convex cap with a yellow to greenish under surface and reddish stalk -13056349 20 n 01 Boletus_pallidus 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus that has an off-white cap when it is young but later becomes dingy brown and a stalk of the same color; the under surface of the cap (the tubes) a pale greenish yellow -13056607 20 n 01 Boletus_pulcherrimus 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a beautiful but poisonous bolete; has a brown cap with a scarlet pore surface and a thick reticulate stalk -13056799 20 n 01 Boletus_pulverulentus 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | an edible fungus with a broadly convex blackish brown cap and a pore surface that is yellow when young and darkens with age; stalk is thick and enlarges toward the base -13057054 20 n 01 Boletus_roxanae 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus with a rusty red cap and a white pore surface that becomes yellow with age and a pale yellow stalk -13057242 20 n 01 Boletus_subvelutipes 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | a fungus with a velvety stalk and usually a dingy brown cap; injured areas turn blue instantly -13057422 20 n 01 Boletus_variipes 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | an edible (but not choice) fungus found on soil under hardwoods; has a dry convex cap with whitish under surface and a reticulate stalk -13057639 20 n 01 Boletus_zelleri 0 002 @ 13054560 n 0000 #m 13055009 n 0000 | an edible and choice fungus that has a brown cap with greenish yellow under surface and a stalk that become dull red with age -13057845 20 n 02 Fuscoboletinus 0 genus_Fuscoboletinus 0 004 @ 11592146 n 0000 #m 13054211 n 0000 %m 13058037 n 0000 %m 13058272 n 0000 | a genus of fungi belonging to the family Boletaceae -13058037 20 n 01 Fuscoboletinus_paluster 0 002 @ 13054560 n 0000 #m 13057845 n 0000 | an edible fungus with a pinkish purple cap and stalk and a pore surface that is yellow with large angular pores that become like gills in maturity -13058272 20 n 01 Fuscoboletinus_serotinus 0 002 @ 13054560 n 0000 #m 13057845 n 0000 | an edible fungus with a broadly convex brown cap and a whitish pore surface and stalk -13058447 20 n 02 Leccinum 0 genus_Leccinum 0 003 @ 11592146 n 0000 #m 13054211 n 0000 %m 13058608 n 0000 | a genus of fungi belonging to the family Boletaceae -13058608 20 n 01 Leccinum_fibrillosum 0 002 @ 13054560 n 0000 #m 13058447 n 0000 | an edible fungus with a dark reddish brown cap and a wide light tan stalk that expands toward the base -13058796 20 n 02 Phylloporus 0 genus_Phylloporus 0 003 @ 11592146 n 0000 #m 13054211 n 0000 %m 13058963 n 0000 | a genus of fungi belonging to the family Boletaceae -13058963 20 n 01 Phylloporus_boletinoides 0 002 @ 13054560 n 0000 #m 13058796 n 0000 | a fungus with a broadly convex brown cap and pores that extend part way down the stalk -13059139 20 n 02 Suillus 0 genus_Suillus 0 003 @ 11592146 n 0000 #m 13054211 n 0000 %m 13059298 n 0000 | a genus of fungi belonging to the family Boletaceae -13059298 20 n 01 Suillus_albivelatus 0 002 @ 13054560 n 0000 #m 13059139 n 0000 | a short squat edible fungus with a reddish brown cap and white stalk; fruits under pines in the spring -13059485 20 n 02 Strobilomyces 0 genus_Strobilomyces 0 003 @ 11592146 n 0000 #m 13054211 n 0000 %m 13059657 n 0000 | fungi similar to Boletus but with a shaggy scaly cap -13059657 20 n 02 old-man-of-the-woods 0 Strobilomyces_floccopus 0 002 @ 13054560 n 0000 #m 13059485 n 0000 | edible mild-tasting mushroom found in coniferous woodlands of eastern North America -13059852 20 n 02 Boletellus 0 genus_Boletellus 0 003 @ 11592146 n 0000 #m 13054211 n 0000 %m 13060017 n 0000 | a genus of fungi belonging to the family Boletaceae -13060017 20 n 01 Boletellus_russellii 0 002 @ 13054560 n 0000 #m 13059852 n 0000 | a fungus with a long coarsely shaggy reticulate stalk and a rimose areolate cap surface -13060190 20 n 01 jelly_fungus 0 006 @ 12992868 n 0000 ~ 13061172 n 0000 ~ 13061348 n 0000 ~ 13061471 n 0000 ~ 13061704 n 0000 ~ 13062421 n 0000 | any fungus of the order Tremellales or Auriculariales whose fruiting body is jellylike in consistency when fresh -13060451 20 n 02 Tremellales 0 order_Tremellales 0 005 @ 11594676 n 0000 #m 12996841 n 0000 %m 13060689 n 0000 %m 13062112 n 0000 %m 13062630 n 0000 | fungi varying from gelatinous to waxy or even horny in texture; most are saprophytic -13060689 20 n 02 Tremellaceae 0 family_Tremellaceae 0 003 @ 11590783 n 0000 #m 13060451 n 0000 %m 13060912 n 0000 | a family of basidiomycetous fungi of the order Tremellales that have the basidium divided longitudinally -13060912 20 n 02 Tremella 0 genus_Tremella 0 006 @ 11592146 n 0000 #m 13060689 n 0000 %m 13061172 n 0000 %m 13061348 n 0000 %m 13061471 n 0000 %m 13061704 n 0000 | fungi with yellowish gelatinous sporophores having convolutions resembling those of the brain -13061172 20 n 02 snow_mushroom 0 Tremella_fuciformis 0 002 @ 13060190 n 0000 #m 13060912 n 0000 | popular in China and Japan and Taiwan; gelatinous mushrooms; most are dried -13061348 20 n 02 witches'_butter 0 Tremella_lutescens 0 002 @ 13060190 n 0000 #m 13060912 n 0000 | a yellow jelly fungus -13061471 20 n 01 Tremella_foliacea 0 002 @ 13060190 n 0000 #m 13060912 n 0000 | a jelly fungus with a fruiting body 5-15 cm broad and gelatinous in consistency; resembles a bunch of leaf lettuce; mostly water and brownish in color -13061704 20 n 01 Tremella_reticulata 0 003 @ 13060190 n 0000 #m 13060912 n 0000 ;c 12992464 n 0000 | a jelly fungus with an erect whitish fruiting body and a highly variable shape (sometimes resembling coral fungi) -13061921 20 n 02 Auriculariales 0 order_Auriculariales 0 002 @ 11594676 n 0000 #m 12996841 n 0000 | coextensive with the family Auriculariaceae; sometimes included in the order Tremellales -13062112 20 n 02 Auriculariaceae 0 family_Auriculariaceae 0 003 @ 11590783 n 0000 #m 13060451 n 0000 %m 13062272 n 0000 | fungi having gelatinous sporophores -13062272 20 n 02 Auricularia 0 genus_Auricularia 0 003 @ 11592146 n 0000 #m 13062112 n 0000 %m 13062421 n 0000 | type genus of the Auriculariaceae -13062421 20 n 04 Jew's-ear 0 Jew's-ears 0 ear_fungus 0 Auricularia_auricula 0 002 @ 13060190 n 0000 #m 13062272 n 0000 | widely distributed edible fungus shaped like a human ear and growing on decaying wood -13062630 20 n 02 Dacrymycetaceae 0 family_Dacrymycetaceae 0 003 @ 11590783 n 0000 #m 13060451 n 0000 %m 13062868 n 0000 | a family of basidiomycetous fungi belonging to the order Tremellales having a bifurcate basidium that lacks septa -13062868 20 n 02 Dacrymyces 0 genus_Dacrymyces 0 002 @ 11592146 n 0000 #m 13062630 n 0000 | type genus of the Dacrymycetaceae: fungi with a bifurcate basidium that lacks septa -13063046 20 n 02 Uredinales 0 order_Uredinales 0 005 @ 11594676 n 0000 #m 12996841 n 0000 %m 13063269 n 0000 %m 13063784 n 0000 %m 13064678 n 0000 | rust fungi: parasitic fungi causing rust in plants; sometimes placed in -13063269 20 n 02 rust 0 rust_fungus 0 008 @ 12992868 n 0000 #m 13063046 n 0000 %p 13063514 n 0000 %p 13063666 n 0000 ~ 13064111 n 0000 ~ 13064457 n 0000 ~ 13065089 n 0000 ~ 13065514 n 0000 | any of various fungi causing rust disease in plants -13063514 20 n 01 aecium 0 003 @ 13089246 n 0000 #p 13063269 n 0000 + 02606502 a 0101 | fruiting body of some rust fungi bearing chains of aeciospores -13063666 20 n 01 aeciospore 0 002 @ 11547855 n 0000 #p 13063269 n 0000 | spore of a rust fungus formed in an aecium -13063784 20 n 02 Melampsoraceae 0 family_Melampsoraceae 0 004 @ 11590783 n 0000 #m 13063046 n 0000 %m 13063936 n 0000 %m 13064247 n 0000 | rust fungi -13063936 20 n 02 Melampsora 0 genus_Melampsora 0 003 @ 11592146 n 0000 #m 13063784 n 0000 %m 13064111 n 0000 | rusts having sessile one-celled teliospores in a single layer -13064111 20 n 03 flax_rust 0 flax_rust_fungus 0 Melampsora_lini 0 002 @ 13063269 n 0000 #m 13063936 n 0000 | fungus causing flax rust -13064247 20 n 02 Cronartium 0 genus_Cronartium 0 003 @ 11592146 n 0000 #m 13063784 n 0000 %m 13064457 n 0000 | rust fungi having aecia produced in raised or swollen sori and teliospores borne in waxy columns -13064457 20 n 02 blister_rust 0 Cronartium_ribicola 0 002 @ 13063269 n 0000 #m 13064247 n 0000 | fungus causing white pine blister rust and having a complex life cycle requiring a plant of genus Ribes as alternate host -13064678 20 n 02 Pucciniaceae 0 family_Pucciniaceae 0 004 @ 11590783 n 0000 #m 13063046 n 0000 %m 13064852 n 0000 %m 13065215 n 0000 | large important family of rust fungi -13064852 20 n 02 Puccinia 0 genus_Puccinia 0 003 @ 11592146 n 0000 #m 13064678 n 0000 %m 13065089 n 0000 | type genus of the Pucciniaceae; a large genus of parasitic fungi including many that are destructive to various economic plants -13065089 20 n 02 wheat_rust 0 Puccinia_graminis 0 002 @ 13063269 n 0000 #m 13064852 n 0000 | rust fungus that attacks wheat -13065215 20 n 02 Gymnosporangium 0 genus_Gymnosporangium 0 003 @ 11592146 n 0000 #m 13064678 n 0000 %m 13065514 n 0000 | genus of fungi that produce galls on cedars and other conifers of genera Juniperus and Libocedrus and causes rust spots on apples and pears and other plants of family Rosaceae -13065514 20 n 03 apple_rust 0 cedar-apple_rust 0 Gymnosporangium_juniperi-virginianae 0 002 @ 13063269 n 0000 #m 13065215 n 0000 | rust fungus causing rust spots on apples and pears etc -13065702 20 n 02 Tiliomycetes 0 class_Tiliomycetes 0 002 @ 08103777 n 0000 #m 12996225 n 0000 | category used in some systems to comprise the two orders Ustilaginales (smuts) and Uredinales (rusts) -13065902 20 n 02 Ustilaginales 0 order_Ustilaginales 0 005 @ 11594676 n 0000 #m 12996225 n 0000 %m 13066129 n 0000 %m 13066631 n 0000 %m 13067845 n 0000 | parasitic fungi causing smuts; sometimes placed in class Tiliomycetes -13066129 20 n 02 smut 0 smut_fungus 0 013 @ 12992868 n 0000 #m 13065902 n 0000 + 00089154 v 0101 + 00210481 v 0101 ~ 13066448 n 0000 ~ 13066979 n 0000 ~ 13067191 n 0000 ~ 13067532 n 0000 ~ 13067672 n 0000 ~ 13068255 n 0000 ~ 13068434 n 0000 ~ 13068735 n 0000 ~ 13068917 n 0000 | any fungus of the order Ustilaginales -13066448 20 n 01 covered_smut 0 001 @ 13066129 n 0000 | a smut fungus causing a smut disease of grains in which the spore masses are covered or held together by the grain membranes -13066631 20 n 02 Ustilaginaceae 0 family_Ustilaginaceae 0 004 @ 11590783 n 0000 #m 13065902 n 0000 %m 13067191 n 0000 %m 13067532 n 0000 | a fungus family of loose smuts -13066803 20 n 02 Ustilago 0 genus_Ustilago 0 003 @ 11592146 n 0000 %m 13066979 n 0000 %m 13067330 n 0000 | type genus of the Ustilaginaceae; genus comprising the loose smuts -13066979 20 n 01 loose_smut 0 002 @ 13066129 n 0000 #m 13066803 n 0000 | a smut fungus of the genus Ustilago causing a smut disease of grains in which the entire head is transformed into a dusty mass of spores -13067191 20 n 02 cornsmut 0 corn_smut 0 003 @ 13066129 n 0000 #m 13066631 n 0000 ~ 13067330 n 0000 | a smut fungus attacking Indian corn -13067330 20 n 02 boil_smut 0 Ustilago_maydis 0 002 @ 13067191 n 0000 #m 13066803 n 0000 | a common smut attacking Indian corn causing greyish white swellings that rupture to expose a black spore mass -13067532 20 n 02 Sphacelotheca 0 genus_Sphacelotheca 0 003 @ 13066129 n 0000 #m 13066631 n 0000 %m 13067672 n 0000 | genus of smut fungus -13067672 20 n 02 head_smut 0 Sphacelotheca_reiliana 0 002 @ 13066129 n 0000 #m 13067532 n 0000 | smut fungus attacking heads of corn or sorghum and causing a covered smut -13067845 20 n 02 Tilletiaceae 0 family_Tilletiaceae 0 004 @ 11590783 n 0000 #m 13065902 n 0000 %m 13068073 n 0000 %m 13068565 n 0000 | a family of smut fungi having a simple promycelium bearing the spores in an apical cluster -13068073 20 n 02 Tilletia 0 genus_Tilletia 0 004 @ 11592146 n 0000 #m 13067845 n 0000 %m 13068255 n 0000 %m 13068434 n 0000 | a genus of fungi belonging to the family Tilletiaceae -13068255 20 n 02 bunt 1 Tilletia_caries 0 002 @ 13066129 n 0000 #m 13068073 n 0000 | fungus that destroys kernels of wheat by replacing them with greasy masses of smelly spores -13068434 20 n 03 bunt 2 stinking_smut 0 Tilletia_foetida 0 002 @ 13066129 n 0000 #m 13068073 n 0000 | similar to Tilletia caries -13068565 20 n 02 Urocystis 0 genus_Urocystis 0 003 @ 11592146 n 0000 #m 13067845 n 0000 %m 13068917 n 0000 | a genus of smut fungi belonging to the family Tilletiaceae -13068735 20 n 02 onion_smut 0 Urocystis_cepulae 0 001 @ 13066129 n 0000 | smut fungus causing blackish blisters on scales and leaves of onions; especially destructive to seedlings -13068917 20 n 01 flag_smut_fungus 0 003 @ 13066129 n 0000 #m 13068565 n 0000 ~ 13069224 n 0000 | a smut fungus causing a smut in cereals and other grasses that chiefly affects leaves and stems and is characterized chains of sori within the plant tissue that later rupture releasing black masses of spores -13069224 20 n 02 wheat_flag_smut 0 Urocystis_tritici 0 001 @ 13068917 n 0000 | fungus affecting leaves and stems of wheat -13069348 20 n 02 Septobasidiaceae 0 family_Septobasidiaceae 0 003 @ 11590783 n 0000 #m 12996225 n 0000 %m 13069535 n 0000 | a family of fungi belonging to the subdivision Basidiomycota -13069535 20 n 02 Septobasidium 0 genus_Septobasidium 0 003 @ 11592146 n 0000 #m 13069348 n 0000 %m 13069773 n 0000 | type genus of Septobasidiaceae: smooth shelf fungi usually having a well-developed sometimes thick-walled hypobasidium -13069773 20 n 02 felt_fungus 0 Septobasidium_pseudopedicellatum 0 002 @ 12992868 n 0000 #m 13069535 n 0000 | fungus that frequently encircles twigs and branches of various trees especially citrus trees in southern United States -13070003 20 n 02 Hygrophoraceae 0 family_Hygrophoraceae 0 007 @ 11590783 n 0000 #m 12998349 n 0000 %m 13070308 n 0000 %m 13070708 n 0000 %m 13071029 n 0000 %m 13073211 n 0000 %m 13073526 n 0000 | a family of fungi belonging to the order Agaricales; the gills of these fungi have a clean waxy appearance -13070308 20 n 01 waxycap 0 015 @ 12998815 n 0000 #m 13070003 n 0000 ~ 13070875 n 0000 ~ 13071371 n 0000 ~ 13071553 n 0000 ~ 13071815 n 0000 ~ 13072031 n 0000 ~ 13072209 n 0000 ~ 13072350 n 0000 ~ 13072528 n 0000 ~ 13072706 n 0000 ~ 13072863 n 0000 ~ 13073055 n 0000 ~ 13073380 n 0000 ~ 13073703 n 0000 | any fungus of the family Hygrophoraceae having gills that are more or less waxy in appearance -13070708 20 n 02 Hygrocybe 0 genus_Hygrocybe 0 003 @ 11592146 n 0000 #m 13070003 n 0000 %m 13070875 n 0000 | a genus of fungi belonging to the family Hygrophoraceae -13070875 20 n 02 Hygrocybe_acutoconica 0 conic_waxycap 0 002 @ 13070308 n 0000 #m 13070708 n 0000 | a fungus having an acutely conic cap and dry stalks -13071029 20 n 02 Hygrophorus 0 genus_Hygrophorus 0 012 @ 11592146 n 0000 #m 13070003 n 0000 %m 13071371 n 0000 %m 13071553 n 0000 %m 13071815 n 0000 %m 13072031 n 0000 %m 13072209 n 0000 %m 13072350 n 0000 %m 13072528 n 0000 %m 13072706 n 0000 %m 13072863 n 0000 %m 13073055 n 0000 | a genus of fungi belonging to the family Hygrophoraceae -13071371 20 n 01 Hygrophorus_borealis 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus with a white convex cap and arcuate white gills and a stalk that tapers toward the base -13071553 20 n 01 Hygrophorus_caeruleus 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus with a broadly convex cap that is cream color with a tint of blue over the margin; waxy gills are bluish green to blue-grey; a short stalk tapers abruptly at the base -13071815 20 n 01 Hygrophorus_inocybiformis 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus with a drab squamulose cap and grey-brown squamules over the white background of the stalk and waxy grey-white gills -13072031 20 n 01 Hygrophorus_kauffmanii 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus with a slightly viscid cap; cap and gills are reddish brown and the stalk is grey -13072209 20 n 01 Hygrophorus_marzuolus 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a grey fungus frequently found near melting snow banks -13072350 20 n 01 Hygrophorus_purpurascens 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus with a viscid purplish red cap and stalk; found under spruce and other conifers -13072528 20 n 01 Hygrophorus_russula 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | an edible fungus with a reddish cap and close pale gills and dry stalk; found under hardwoods -13072706 20 n 01 Hygrophorus_sordidus 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | an edible fungus with a large white cap and a dry stalk and white gills -13072863 20 n 01 Hygrophorus_tennesseensis 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a fungus having a brownish sticky cap with a white margin and white gills and an odor of raw potatoes -13073055 20 n 01 Hygrophorus_turundus 0 002 @ 13070308 n 0000 #m 13071029 n 0000 | a small fungus with orange cap and yellow gills found in sphagnum bogs -13073211 20 n 02 Hygrotrama 0 genus_Hygrotrama 0 003 @ 11592146 n 0000 #m 13070003 n 0000 %m 13073380 n 0000 | a genus of fungi belonging to the family Hygrophoraceae -13073380 20 n 01 Hygrotrama_foetens 0 002 @ 13070308 n 0000 #m 13073211 n 0000 | a small grey-brown fungus with an unpleasant odor of mothballs -13073526 20 n 02 Neohygrophorus 0 genus_Neohygrophorus 0 003 @ 11592146 n 0000 #m 13070003 n 0000 %m 13073703 n 0000 | a genus of fungi belonging to the family Hygrophoraceae -13073703 20 n 01 Neohygrophorus_angelesianus 0 002 @ 13070308 n 0000 #m 13073526 n 0000 | a fungus with a small brown convex cap with a depressed disc; waxy wine-colored gills and a brown stalk; fruits in or near melting snow banks in the western mountains of North America -13073979 20 n 01 cortina 0 001 @ 13095013 n 0000 | a cobwebby partial veil consisting of silky fibrils -13074084 20 n 02 Cortinariaceae 0 family_Cortinariaceae 0 004 @ 11590783 n 0000 #m 12998349 n 0000 %m 13074277 n 0000 %m 13076181 n 0000 | a family of fungi belonging to the order Agaricales -13074277 20 n 02 Cortinarius 0 genus_Cortinarius 0 009 @ 11592146 n 0000 #m 13074084 n 0000 %m 13074814 n 0000 %m 13075020 n 0000 %m 13075272 n 0000 %m 13075441 n 0000 %m 13075684 n 0000 %m 13075847 n 0000 %m 13076041 n 0000 | the largest genus in the Agaricales; agarics having rusty spores and prominent cortinae (cobwebby partial veils) -13074619 20 n 01 Cortinarius_armillatus 0 001 @ 12998815 n 0000 | a fungus with large tawny caps and pale cinnamon gills and a red band of veil around the stalk; usually found near birch trees -13074814 20 n 01 Cortinarius_atkinsonianus 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | an edible fungus with a slimy viscid cap that is initially yellow but turns olive and then tawny; flesh is lavender -13075020 20 n 01 Cortinarius_corrugatus 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a fungus with a viscid wrinkled tawny cap; the stalk has a basal bulb that diminishes as the stalk elongates; the gills are dark violet at first but soon turn brown -13075272 20 n 01 Cortinarius_gentilis 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a poisonous fungus with a bright yellow brown cap and a long cinnamon colored stalk -13075441 20 n 02 Cortinarius_mutabilis 0 purple-staining_Cortinarius 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a fungus with a reddish purple cap having a smooth slimy surface; close violet gills; all parts stain dark purple when bruised -13075684 20 n 01 Cortinarius_semisanguineus 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a fungus with a dry brown cap and rusty red gills and a yellowish stalk -13075847 20 n 01 Cortinarius_subfoetidus 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a fungus with a sticky lavender cap and stalk that whitish above and covered with a silky lavender sheath -13076041 20 n 01 Cortinarius_violaceus 0 002 @ 12998815 n 0000 #m 13074277 n 0000 | a fungus that is violet overall with a squamulose cap -13076181 20 n 02 Gymnopilus 0 genus_Gymnopilus 0 005 @ 11592146 n 0000 #m 13074084 n 0000 %m 13076405 n 0000 %m 13076643 n 0000 %m 13076831 n 0000 | a genus of fungus characterized by the orange color of the spore deposit -13076405 20 n 01 Gymnopilus_spectabilis 0 002 @ 12998815 n 0000 #m 13076181 n 0000 | a fungus with a brownish orange fruiting body and a ring near the top of the stalk; the taste is bitter and the flesh contains psilocybin and psilocin -13076643 20 n 01 Gymnopilus_validipes 0 002 @ 12998815 n 0000 #m 13076181 n 0000 | a poisonous fungus with a dry cap and a cortina that does not leave much of a ring on the robust stalk -13076831 20 n 01 Gymnopilus_ventricosus 0 002 @ 12998815 n 0000 #m 13076181 n 0000 | a giant fungus of the Pacific Northwest; has a very thick stalk and the cortina leaves a ring high up on the stalk -13077033 20 n 02 mold 0 mould 0 007 @ 12992868 n 0000 + 01070088 a 0202 + 01070088 a 0101 + 00210738 v 0101 ~ 12973443 n 0000 ~ 12973791 n 0000 ~ 12980080 n 0000 | a fungus that produces a superficial growth on various kinds of damp or decaying organic matter -13077295 20 n 01 mildew 0 004 @ 12992868 n 0000 + 00210738 v 0102 ~ 12963628 n 0000 ~ 12980840 n 0000 | a fungus that produces a superficial (usually white) growth on organic matter -13077479 20 n 02 Moniliales 0 order_Moniliales 0 008 @ 11594676 n 0000 #m 12995724 n 0000 %m 13077811 n 0000 %m 13078133 n 0000 %m 13079203 n 0000 %m 13080174 n 0000 %m 13080471 n 0000 %m 13081369 n 0000 | order of imperfect fungi lacking conidiophores of having conidiophores that are superficial and not enclosed in a pycnidium -13077811 20 n 01 genus_Verticillium 0 003 @ 11592146 n 0000 #m 13077479 n 0000 %m 13078021 n 0000 | genus of imperfect fungi having conidia borne singly at the apex of whorled branchlets; cause wilt diseases -13078021 20 n 01 verticillium 0 002 @ 12992868 n 0000 #m 13077811 n 0000 | a fungus of the genus Verticillium -13078133 20 n 02 Moniliaceae 0 family_Moniliaceae 0 007 @ 11590783 n 0000 #m 13077479 n 0000 %m 13078483 n 0000 %m 13078652 n 0000 %m 13078809 n 0000 %m 13079775 n 0000 %m 13079953 n 0000 | family of imperfect fungi having white or brightly colored hyphae and spores that are produced directly on the mycelium and not aggregated in fruiting bodies -13078483 20 n 02 Trichophyton 0 genus_Trichophyton 0 002 @ 11592146 n 0000 #m 13078133 n 0000 | a genus of fungus of the family Moniliaceae; causes ringworm and favus -13078652 20 n 02 Microsporum 0 genus_Microsporum 0 002 @ 11592146 n 0000 #m 13078133 n 0000 | a genus of fungus of the family Moniliaceae; causes ringworm -13078809 20 n 01 genus_Monilia 0 003 @ 11592146 n 0000 #m 13078133 n 0000 %m 13079073 n 0000 | genus of parasitic yeastlike imperfect fungi having spherical or oval conidia in branched chains; some species usually placed in other genera especially genus Candida -13079073 20 n 01 monilia 0 002 @ 12992868 n 0000 #m 13078809 n 0000 | any of the yeastlike imperfect fungi of the genus Monilia -13079203 20 n 01 genus_Candida 0 004 @ 11592146 n 0000 #m 13077479 n 0000 %m 13079419 n 0000 %m 13079567 n 0000 | a genus of yeastlike imperfect fungi; sometimes included in genus Monilia of the family Moniliaceae -13079419 20 n 01 candida 0 003 @ 12992868 n 0000 #m 13079203 n 0000 ~ 13079567 n 0000 | any of the yeastlike imperfect fungi of the genus Candida -13079567 20 n 02 Candida_albicans 0 Monilia_albicans 0 003 @ 13079419 n 0000 #m 13079203 n 0000 #p 14181713 n 0000 | a parasitic fungus that can infect the mouth or the skin or the intestines or the vagina -13079775 20 n 02 Cercosporella 0 genus_Cercosporella 0 002 @ 11592146 n 0000 #m 13078133 n 0000 | form genus of imperfect fungi lacking pigment in the spores and conidiophores -13079953 20 n 02 Penicillium 0 genus_Penicillium 0 002 @ 11592146 n 0000 #m 13078133 n 0000 | genus of fungi commonly growing as green or blue molds on decaying food; used in making cheese and as a source of penicillin -13080174 20 n 02 Blastomyces 0 genus_Blastomyces 0 002 @ 11592146 n 0000 #m 13077479 n 0000 | genus of pathogenic yeastlike fungi -13080306 20 n 01 blastomycete 0 001 @ 12992868 n 0000 | any of various yeastlike budding fungi of the genus Blastomyces; cause disease in humans and other animals -13080471 20 n 02 Dematiaceae 0 family_Dematiaceae 0 004 @ 11590783 n 0000 #m 13077479 n 0000 %m 13080674 n 0000 %m 13081050 n 0000 | family of imperfect mushrooms having dark-colored hyphae or conidia -13080674 20 n 02 Cercospora 0 genus_Cercospora 0 003 @ 11592146 n 0000 #m 13080471 n 0000 %m 13080866 n 0000 | form genus of imperfect fungi that are leaf parasites with long slender spores -13080866 20 n 02 yellow_spot_fungus 0 Cercospora_kopkei 0 003 @ 12992868 n 0000 #m 13080674 n 0000 ;r 08831004 n 0000 | fungus causing yellow spot (a sugarcane disease in Australia) -13081050 20 n 02 Ustilaginoidea 0 genus_Ustilaginoidea 0 003 @ 11592146 n 0000 #m 13080471 n 0000 %m 13081229 n 0000 | genus of imperfect fungi causing plant diseases like smut -13081229 20 n 02 green_smut_fungus 0 Ustilaginoidea_virens 0 002 @ 12992868 n 0000 #m 13081050 n 0000 | fungus causing green smut in rice -13081369 20 n 02 Tuberculariaceae 0 family_Tuberculariaceae 0 004 @ 11590783 n 0000 #m 13077479 n 0000 %m 13081565 n 0000 %m 13081778 n 0000 | large family of mainly saprophytic imperfect fungi -13081565 20 n 02 Tubercularia 0 genus_Tubercularia 0 002 @ 11592146 n 0000 #m 13081369 n 0000 | type genus of the Tuberculariaceae; fungi with nodules of red or pink conidia; some cause diebacks of woody plants -13081778 20 n 01 genus_Fusarium 0 002 @ 11592146 n 0000 #m 13081369 n 0000 | a form genus of mostly plant parasites some of which cause dry rot; in humans a species can cause inflammation of cornea leading to blindness -13081999 20 n 01 dry_rot 0 001 @ 12992868 n 0000 | a fungus causing dry rot -13082077 20 n 02 Mycelia_Sterilia 0 order_Mycelia_Sterilia 0 005 @ 11594676 n 0000 #m 12995724 n 0000 %m 13082293 n 0000 %m 13082711 n 0000 %m 13082829 n 0000 | order of imperfect fungi having no known spore stage -13082293 20 n 02 genus_Rhizoctinia 0 form_genus_Rhizoctinia 0 003 @ 11592146 n 0000 #m 13082077 n 0000 %m 13082568 n 0000 | form genus of imperfect fungi some species of which are now placed in genera Pellicularia and Corticium because their perfect stages have been found -13082568 20 n 01 rhizoctinia 0 002 @ 12992868 n 0000 #m 13082293 n 0000 | any fungus now or formerly belonging to the form genus Rhizoctinia -13082711 20 n 02 Ozonium 0 genus_Ozonium 0 002 @ 11592146 n 0000 #m 13082077 n 0000 | form genus of imperfect fungi -13082829 20 n 02 Sclerotium 0 genus_Sclerotium 0 002 @ 11592146 n 0000 #m 13082077 n 0000 | form genus of sterile imperfect fungi; many form sclerotia; some cause sclerotium disease in plants -13083023 20 n 01 houseplant 0 010 @ 00017222 n 0000 ~ 11781658 n 0000 ~ 11783920 n 0000 ~ 11856573 n 0000 ~ 11975254 n 0000 ~ 12292463 n 0000 ~ 12831932 n 0000 ~ 12832315 n 0000 ~ 12832822 n 0000 ~ 12862512 n 0000 | any of a variety of plants grown indoors for decorative purposes -13083306 20 n 01 garden_plant 0 002 @ 00017222 n 0000 ~ 13083461 n 0000 | any of a variety of plants usually grown especially in a flower or herb garden -13083461 20 n 02 bedder 0 bedding_plant 0 001 @ 13083306 n 0000 | an ornamental plant suitable for planting in a flowerbed -13083586 20 n 02 vascular_plant 0 tracheophyte 0 026 @ 00017222 n 0000 %p 05511286 n 0000 ~ 11545524 n 0000 ~ 11552386 n 0000 ~ 12205694 n 0000 ~ 12387103 n 0000 ~ 13084184 n 0000 ~ 13084834 n 0000 ~ 13084993 n 0000 ~ 13085113 n 0000 %p 13091057 n 0000 %p 13096863 n 0000 ~ 13099833 n 0000 ~ 13099999 n 0000 ~ 13100677 n 0000 ~ 13102648 n 0000 ~ 13103136 n 0000 ~ 13120958 n 0000 ~ 13121104 n 0000 ~ 13121349 n 0000 ~ 13121544 n 0000 ~ 13128278 n 0000 ~ 13134302 n 0000 ~ 13134844 n 0000 ~ 13217494 n 0000 ~ 13217993 n 0000 | green plant having a vascular system: ferns, gymnosperms, angiosperms -13084184 20 n 01 succulent 0 008 @ 13083586 n 0000 + 01369078 a 0102 ~ 11819509 n 0000 ~ 11819912 n 0000 ~ 11820463 n 0000 ~ 11821929 n 0000 ~ 11842204 n 0000 ~ 12436677 n 0000 | a plant adapted to arid conditions and characterized by fleshy water-storing tissues that act as water reservoirs -13084479 20 n 01 nonvascular_organism 0 002 @ 00004475 n 0000 ~ 11537327 n 0000 | organisms without vascular tissue: e.g. algae, lichens, fungi, mosses -13084633 20 n 01 relict 0 001 @ 00004475 n 0000 | an organism or species surviving as a remnant of an otherwise extinct flora or fauna in an environment much changed from that in which it originated -13084834 20 n 01 cultivar 0 002 @ 08101085 n 0000 @ 13083586 n 0000 | a variety of a plant developed from a natural species and maintained under cultivation -13084993 20 n 01 cultivated_plant 0 002 @ 13083586 n 0000 ! 13085113 n 0101 | plants that are grown for their produce -13085113 20 n 01 weed 0 031 @ 13083586 n 0000 + 02539717 a 0101 + 00313171 v 0101 ! 13084993 n 0101 ~ 11805544 n 0000 ~ 11814996 n 0000 ~ 11817160 n 0000 ~ 11817501 n 0000 ~ 11821534 n 0000 ~ 11824747 n 0000 ~ 11874081 n 0000 ~ 11888061 n 0000 ~ 11894558 n 0000 ~ 11898639 n 0000 ~ 11919447 n 0000 ~ 11944196 n 0000 ~ 11949015 n 0000 ~ 11956348 n 0000 ~ 11965218 n 0000 ~ 11982342 n 0000 ~ 11984144 n 0000 ~ 12001077 n 0000 ~ 12003167 n 0000 ~ 12003814 n 0000 ~ 12011838 n 0000 ~ 12012253 n 0000 ~ 12012755 n 0000 ~ 12033139 n 0000 ~ 12392070 n 0000 ~ 12554911 n 0000 ~ 12942025 n 0000 | any plant that crowds out cultivated plants -13085747 20 n 01 wort 0 001 @ 12205694 n 0000 | usually used in combination: `liverwort'; `milkwort'; `whorlywort' -13085864 20 n 02 crop 0 harvest 0 006 @ 00914632 n 0000 + 01320009 v 0202 + 01321002 v 0103 + 01652537 v 0101 + 01741446 v 0102 ~ 13086753 n 0000 | the yield from plants in a single growing season -13086063 20 n 01 cash_crop 0 001 @ 11530512 n 0000 | a readily salable crop that is grown and gathered for the market (as vegetables or cotton or tobacco) -13086220 20 n 01 catch_crop 0 001 @ 11530512 n 0000 | a crop that grows quickly (e.g. lettuce) and can be planted between two regular crops grown in successive seasons or between two rows of crops in the same season -13086438 20 n 01 cover_crop 0 001 @ 11530512 n 0000 | crop planted to prevent soil erosion and provide green manure -13086556 20 n 01 field_crop 0 002 @ 11530512 n 0000 ~ 12144399 n 0000 | a crop (other than fruits or vegetables) that is grown for agricultural purposes; "cotton, hay, and grain are field crops" -13086753 20 n 01 fruitage 0 003 @ 13085864 n 0000 + 01652895 v 0101 + 01652731 v 0101 | the yield of fruit; "a tree highly recommended for its fruitage" -13086908 20 n 02 plant_part 0 plant_structure 0 035 @ 00019128 n 0000 #p 00017222 n 0000 ~ 09449657 n 0000 ~ 11531916 n 0000 ~ 11532017 n 0000 ~ 11532351 n 0000 ~ 11532547 n 0000 ~ 11532682 n 0000 ~ 11533999 n 0000 ~ 11550620 n 0000 ~ 11550890 n 0000 ~ 11551044 n 0000 ~ 11675404 n 0000 ~ 11679085 n 0000 ~ 11679250 n 0000 ~ 11680457 n 0000 ~ 11680596 n 0000 ~ 11690737 n 0000 ~ 11691332 n 0000 ~ 11691857 n 0000 ~ 13022709 n 0000 ~ 13087625 n 0000 ~ 13090871 n 0000 ~ 13091057 n 0000 ~ 13094556 n 0000 ~ 13095348 n 0000 ~ 13095685 n 0000 ~ 13102775 n 0000 ~ 13111504 n 0000 ~ 13127001 n 0000 ~ 13127091 n 0000 ~ 13130161 n 0000 ~ 13137010 n 0000 ~ 13161506 n 0000 ~ 13162164 n 0000 | any part of a plant or fungus -13087625 20 n 01 plant_organ 0 021 @ 13086908 n 0000 ~ 11675842 n 0000 ~ 11683443 n 0000 ~ 11683838 n 0000 ~ 11689054 n 0000 ~ 11690254 n 0000 ~ 11692265 n 0000 ~ 11849467 n 0000 ~ 12267841 n 0000 ~ 12994711 n 0000 ~ 13011461 n 0000 ~ 13011679 n 0000 ~ 13089246 n 0000 ~ 13125117 n 0000 ~ 13126428 n 0000 ~ 13126684 n 0000 ~ 13127843 n 0000 ~ 13129165 n 0000 ~ 13133786 n 0000 ~ 13152742 n 0000 ~ 13164583 n 0000 | a functional and structural unit of a plant or fungus -13088096 20 n 02 plant_process 0 enation 0 014 @ 05470189 n 0000 ~ 11534161 n 0000 ~ 11685876 n 0000 ~ 11686049 n 0000 ~ 13088460 n 0000 ~ 13088688 n 0000 ~ 13088858 n 0000 ~ 13088989 n 0000 ~ 13089135 n 0000 ~ 13089419 n 0000 ~ 13089526 n 0000 ~ 13090091 n 0000 ~ 13154190 n 0000 ~ 13166044 n 0000 | a natural projection or outgrowth from a plant body or organ -13088460 20 n 01 apophysis 0 003 @ 13088096 n 0000 ;c 06066555 n 0000 + 02634428 a 0101 | (botany) a natural swelling or enlargement: at the base of the stalk or seta in certain mosses or on the cone scale of certain conifers -13088688 20 n 01 callus 0 002 @ 13088096 n 0000 ;c 06066555 n 0000 | (botany) an isolated thickening of tissue, especially a stiff protuberance on the lip of an orchid -13088858 20 n 01 blister 0 002 @ 13088096 n 0000 ;c 06066555 n 0000 | (botany) a swelling on a plant similar to that on the skin -13088989 20 n 02 nodule 0 tubercle 0 003 @ 13088096 n 0000 + 02141867 a 0101 + 03092198 a 0101 | small rounded wartlike protuberance on a plant -13089135 20 n 01 spur 0 001 @ 13088096 n 0000 | tubular extension at the base of the corolla in some flowers -13089246 20 n 01 fruiting_body 0 005 @ 13087625 n 0000 ~ 11532816 n 0000 ~ 11533026 n 0000 ~ 11533212 n 0000 ~ 13063514 n 0000 | an organ specialized for producing spores -13089419 20 n 01 aculeus 0 002 @ 13088096 n 0000 ~ 13089631 n 0000 | a stiff sharp-pointed plant process -13089526 20 n 01 acumen 0 003 @ 13088096 n 0000 + 00393227 v 0101 + 02167285 a 0101 | a tapering point -13089631 20 n 06 spine 0 thorn 0 prickle 0 pricker 0 sticker 0 spikelet 0 007 @ 13089419 n 0000 + 01441993 v 0501 + 01440801 v 0402 + 00145083 a 0309 + 00145083 a 020d + 01810011 a 0103 ~ 13089902 n 0000 | a small sharp-pointed tip resembling a spike on a stem or leaf -13089902 20 n 02 glochidium 0 glochid 0 001 @ 13089631 n 0000 | a barbed spine or bristle (often tufted on cacti) -13090018 20 n 01 brier 6 001 @ 13163991 n 0000 | a thorny stem or twig -13090091 20 n 03 hair 0 fuzz 0 tomentum 0 003 @ 13088096 n 0000 ~ 13090248 n 0000 ~ 13090594 n 0000 | filamentous hairlike growth on a plant; "peach fuzz" -13090248 20 n 01 stinging_hair 0 001 @ 13090091 n 0000 | a multicellular hair in plants like the stinging nettle that expels an irritating fluid -13090395 20 n 01 coma 0 003 @ 07960769 n 0000 ;c 06066555 n 0000 + 00213172 a 0103 | (botany) a usually terminal tuft of bracts (as in the pineapple) or tuft of hairs (especially on certain seeds) -13090594 20 n 01 beard 0 002 @ 13090091 n 0000 ~ 13090743 n 0000 | a tuft or growth of hairs or bristles on certain plants such as iris or grasses -13090743 20 n 01 awn 0 002 @ 13090594 n 0000 + 00216858 a 0102 | slender bristlelike appendage found on the bracts of grasses -13090871 20 n 01 aril 0 001 @ 13086908 n 0000 | fleshy and usually brightly colored cover of some seeds that develops from the ovule stalk and partially or entirely envelopes the seed -13091057 20 n 01 duct 0 003 @ 13086908 n 0000 #p 13083586 n 0000 ~ 13091227 n 0000 | a continuous tube formed by a row of elongated cells lacking intervening end walls -13091227 20 n 01 laticifer 0 001 @ 13091057 n 0000 | a plant duct containing latex -13091312 20 n 01 antheridium 0 002 @ 11675842 n 0000 + 02605035 a 0101 | the male sex organ of spore-producing plants; produces antherozoids; equivalent to the anther in flowers -13091492 20 n 01 antheridiophore 0 001 @ 13094003 n 0000 | gametophore bearing antheridia as in certain mosses and liverworts -13091620 20 n 02 sporophyll 0 sporophyl 0 003 @ 13152742 n 0000 ~ 11687553 n 0000 ~ 11688069 n 0000 | leaf in ferns and mosses that bears the sporangia -13091774 20 n 03 sporangium 0 spore_case 0 spore_sac 0 006 @ 11675842 n 0000 ~ 11687432 n 0000 ~ 11687964 n 0000 ~ 13092987 n 0000 ~ 13093102 n 0000 ~ 13093275 n 0000 | organ containing or producing spores -13091982 20 n 01 sporangiophore 0 001 @ 13129165 n 0000 | stalk bearing one or more sporangia -13092078 20 n 01 ascus 0 002 @ 11675842 n 0000 #p 13024012 n 0000 | saclike structure in which ascospores are formed through sexual reproduction of ascomycetes -13092240 20 n 01 ascospore 0 003 @ 11547855 n 0000 + 02644870 a 0101 + 02644870 a 0102 | sexually produced fungal spore formed within an ascus -13092385 20 n 01 arthrospore 1 002 @ 00006484 n 0000 + 02642886 a 0101 | one of a string of thick walled vegetative resting cells formed by some algae and fungi -13092548 20 n 01 arthrospore 2 003 @ 00006484 n 0000 + 02642886 a 0101 + 02642886 a 0102 | a body that resembles a spore but is not an endospore; produced by some bacteria -13092722 20 n 02 theca 0 sac 0 001 @ 09257949 n 0000 | a case or sheath especially a pollen sac or moss capsule -13092836 20 n 01 paraphysis 0 001 @ 14867858 n 0000 | a sterile simple or branched filament or hair borne among sporangia; may be pointed or clubbed -13092987 20 n 01 eusporangium 0 001 @ 13091774 n 0000 | a sporangium that arises from a group of epidermal cells -13093102 20 n 01 leptosporangium 0 001 @ 13091774 n 0000 | a sporangium formed from a single epidermal cell; characteristic of the Filicales or of almost all modern ferns -13093275 20 n 01 tetrasporangium 0 001 @ 13091774 n 0000 | a sporangium containing four asexual spores -13093380 20 n 01 sporophore 0 002 @ 11675842 n 0000 %p 11550340 n 0000 | a spore-bearing branch or organ: the part of the thallus of a sporophyte that develops spores; in ferns and mosses and liverworts is practically equivalent to the sporophyte -13093629 20 n 01 gametangium 0 001 @ 11675842 n 0000 | cell or organ in which gametes develop -13093725 20 n 01 gametoecium 0 003 @ 11675842 n 0000 ~ 13093852 n 0000 ~ 13093928 n 0000 | gametangia and surrounding bracts -13093852 20 n 01 gynoecium 0 001 @ 13093725 n 0000 | a female gametoecium -13093928 20 n 01 androecium 0 001 @ 13093725 n 0000 | a male gametoecium -13094003 20 n 01 gametophore 0 002 @ 11675842 n 0000 ~ 13091492 n 0000 | a modified branch bearing gametangia as in the thalloid liverworts -13094145 20 n 01 sorus 1 002 @ 11675842 n 0000 %p 13094381 n 0000 | cluster of sporangia usually on underside of a fern frond -13094273 20 n 01 sorus 2 001 @ 11675842 n 0000 | a spore-producing structure in certain lichens and fungi -13094381 20 n 01 indusium 0 002 @ 09257949 n 0000 #p 13094145 n 0000 | a membrane enclosing and protecting the developing spores especially that covering the sori of a fern -13094556 20 n 02 veil 0 velum 0 003 @ 13086908 n 0000 ~ 13094732 n 0000 ~ 13095013 n 0000 | a membranous covering attached to the immature fruiting body of certain mushrooms -13094732 20 n 01 universal_veil 0 001 @ 13094556 n 0000 | membrane initially completely investing the young sporophore of various mushrooms that is ruptured by growth; represented in the mature mushroom by a volva around lower part of stem and scales on upper surface of the cap -13095013 20 n 01 partial_veil 0 003 @ 13094556 n 0000 ~ 13073979 n 0000 %p 13095348 n 0000 | membrane of the young sporophore of various mushrooms extending from the margin of the cap to the stem and is ruptured by growth; represented in mature mushroom by an annulus around the stem and sometimes a cortina on the margin of the cap -13095348 20 n 02 annulus 0 skirt 0 003 @ 13086908 n 0000 #p 13095013 n 0000 ;c 12992464 n 0000 | (Fungi) a remnant of the partial veil that in mature mushrooms surrounds the stem like a collar -13095543 20 n 02 antherozoid 0 spermatozoid 0 001 @ 05456945 n 0000 | a motile male gamete of a plant such as an alga or fern or gymnosperm -13095685 20 n 01 plant_tissue 0 016 @ 13086908 n 0000 ~ 05268797 n 0000 ~ 05294995 n 0000 ~ 05490578 n 0000 ~ 05490799 n 0000 ~ 11686652 n 0000 ~ 12962389 n 0000 ~ 12962488 n 0000 ~ 13096035 n 0000 ~ 13096159 n 0000 ~ 13096317 n 0000 ~ 13096779 n 0000 ~ 13096863 n 0000 ~ 13099373 n 0000 ~ 13099586 n 0000 ~ 13130885 n 0000 | the tissue of a plant -13096035 20 n 02 pulp 0 flesh 0 003 @ 13095685 n 0000 + 01352273 v 0101 %s 13096317 n 0000 | a soft moist part of a fruit -13096159 20 n 01 pith 0 003 @ 13095685 n 0000 + 02366241 v 0101 %s 13096317 n 0000 | soft spongelike central cylinder of the stems of most flowering plants -13096317 20 n 01 parenchyma 2 006 @ 13095685 n 0000 #s 13152742 n 0000 #s 13125117 n 0000 #s 13096035 n 0000 #s 13096159 n 0000 ~ 13096677 n 0000 | the primary tissue of higher plants composed of thin-walled cells that remain capable of cell division even when mature; constitutes the greater part of leaves, roots, the pulp of fruits, and the pith of stems -13096677 20 n 01 chlorenchyma 0 001 @ 13096317 n 0000 | parenchyma whose cells contain chloroplasts -13096779 20 n 01 lignum 0 002 @ 13095685 n 0000 #s 13103136 n 0000 | woody tissue -13096863 20 n 01 vascular_tissue 0 011 @ 13095685 n 0000 #p 13083586 n 0000 #p 05511286 n 0000 ~ 13097187 n 0000 ~ 13097338 n 0000 ~ 13097949 n 0000 ~ 13098515 n 0000 ~ 13098648 n 0000 ~ 13098853 n 0000 ~ 13098962 n 0000 ~ 13099194 n 0000 | tissue that conducts water and nutrients through the plant body in higher plants -13097187 20 n 01 stele 0 002 @ 13096863 n 0000 #p 13128771 n 0000 | the usually cylindrical central vascular portion of the axis of a vascular plant -13097338 20 n 01 cambium 0 002 @ 13096863 n 0000 + 02676456 a 0101 | a formative one-cell layer of tissue between xylem and phloem in most vascular plants that is responsible for secondary growth -13097536 20 n 01 sapwood 0 002 @ 15098161 n 0000 #s 13104059 n 0000 | newly formed outer wood lying between the cambium and the heartwood of a tree or woody plant; usually light colored; active in water conduction -13097752 20 n 02 heartwood 0 duramen 0 002 @ 15098161 n 0000 #s 13104059 n 0000 | the older inactive central wood of a tree or woody plant; usually darker and denser than the surrounding sapwood -13097949 20 n 03 vascular_bundle 0 vascular_strand 0 fibrovascular_bundle 0 002 @ 13096863 n 0000 ~ 13098186 n 0000 | a unit strand of the vascular system in stems and leaves of higher plants consisting essentially of xylem and phloem -13098186 20 n 02 vein 0 nervure 1 003 @ 13097949 n 0000 + 02951425 a 0101 ~ 13098420 n 0000 | any of the vascular bundles or ribs that form the branching framework of conducting and supporting tissues in a leaf or other plant organ -13098420 20 n 02 midrib 0 midvein 0 001 @ 13098186 n 0000 | the vein in the center of a leaf -13098515 20 n 02 vascular_ray 0 medullary_ray 0 001 @ 13096863 n 0000 | a sheet of vascular tissue separating the vascular bundles -13098648 20 n 01 xylem 0 003 @ 13096863 n 0000 #p 13103136 n 0000 %p 13098853 n 0000 | the woody part of plants: the supporting and water-conducting tissue, consisting primarily of tracheids and vessels -13098853 20 n 01 tracheid 0 002 @ 13096863 n 0000 #p 13098648 n 0000 | long tubular cell peculiar to xylem -13098962 20 n 02 phloem 0 bast 1 003 @ 13096863 n 0000 ;c 06066555 n 0000 %p 13099194 n 0000 | (botany) tissue that conducts synthesized food substances (e.g., from leaves) to parts where needed; consists primarily of sieve tubes -13099194 20 n 01 sieve_tube 0 002 @ 13096863 n 0000 #p 13098962 n 0000 | tube formed by cells joined end-to-end through which nutrients flow in flowering plants and brown algae -13099373 20 n 01 pseudophloem 0 001 @ 13095685 n 0000 | false phloem -13099444 20 n 02 bast 2 bast_fiber 0 001 @ 14959234 n 0000 | strong woody fibers obtained especially from the phloem of from various plants -13099586 20 n 01 gall 0 002 @ 13095685 n 0000 ~ 13099734 n 0000 | abnormal swelling of plant tissue caused by insects or microorganisms or injury -13099734 20 n 01 oak_apple 0 001 @ 13099586 n 0000 | oak gall caused by larvae of a cynipid wasp -13099833 20 n 02 evergreen 0 evergreen_plant 0 002 @ 13083586 n 0000 ! 13099999 n 0201 | a plant having foliage that persists and remains green throughout the year -13099999 20 n 01 deciduous_plant 0 002 @ 13083586 n 0000 ! 13099833 n 0102 | a plant having foliage that is shed annually at the end of the growing season -13100156 20 n 01 poisonous_plant 0 021 @ 00017222 n 0000 ~ 11722982 n 0000 ~ 11723770 n 0000 ~ 11733904 n 0000 ~ 11767354 n 0000 ~ 11773987 n 0000 ~ 12455950 n 0000 ~ 12677612 n 0000 ~ 12757816 n 0000 ~ 12766595 n 0000 ~ 12766869 n 0000 ~ 12767208 n 0000 ~ 12767423 n 0000 ~ 12767648 n 0000 ~ 12915140 n 0000 ~ 12931231 n 0000 ~ 12934985 n 0000 ~ 12935166 n 0000 ~ 12935609 n 0000 ~ 12940939 n 0000 ~ 12941220 n 0000 | a plant that when touched or ingested in sufficient quantity can be harmful or fatal to an organism -13100677 20 n 01 vine 0 089 @ 13083586 n 0000 ~ 11531334 n 0000 ~ 11713164 n 0000 ~ 11729478 n 0000 ~ 11769621 n 0000 ~ 11771147 n 0000 ~ 11777552 n 0000 ~ 11798978 n 0000 ~ 11801392 n 0000 ~ 11838916 n 0000 ~ 11852531 n 0000 ~ 11904274 n 0000 ~ 11909864 n 0000 ~ 11960673 n 0000 ~ 11996251 n 0000 ~ 12087961 n 0000 ~ 12088909 n 0000 ~ 12089320 n 0000 ~ 12089846 n 0000 ~ 12157769 n 0000 ~ 12158798 n 0000 ~ 12163035 n 0000 ~ 12166424 n 0000 ~ 12371202 n 0000 ~ 12371439 n 0000 ~ 12371704 n 0000 ~ 12383402 n 0000 ~ 12397864 n 0000 ~ 12419878 n 0000 ~ 12420124 n 0000 ~ 12441552 n 0000 ~ 12470092 n 0000 ~ 12470512 n 0000 ~ 12485981 n 0000 ~ 12486882 n 0000 ~ 12505253 n 0000 ~ 12507379 n 0000 ~ 12511239 n 0000 ~ 12511488 n 0000 ~ 12513172 n 0000 ~ 12517445 n 0000 ~ 12517642 n 0000 ~ 12525753 n 0000 ~ 12527081 n 0000 ~ 12534208 n 0000 ~ 12536871 n 0000 ~ 12537569 n 0000 ~ 12539074 n 0000 ~ 12539832 n 0000 ~ 12540800 n 0000 ~ 12542240 n 0000 ~ 12555255 n 0000 ~ 12555553 n 0000 ~ 12564083 n 0000 ~ 12566954 n 0000 ~ 12580457 n 0000 ~ 12601106 n 0000 ~ 12668517 n 0000 ~ 12742741 n 0000 ~ 12748248 n 0000 ~ 12748534 n 0000 ~ 12750076 n 0000 ~ 12813189 n 0000 ~ 12814003 n 0000 ~ 12823717 n 0000 ~ 12823859 n 0000 ~ 12824735 n 0000 ~ 12825497 n 0000 ~ 12826143 n 0000 ~ 12826516 n 0000 ~ 12847374 n 0000 ~ 12894247 n 0000 ~ 12894438 n 0000 ~ 12895578 n 0000 ~ 12895811 n 0000 ~ 12897493 n 0000 ~ 12897788 n 0000 ~ 12912274 n 0000 ~ 13102409 n 0000 ~ 13120211 n 0000 ~ 13144794 n 0000 ~ 13148208 n 0000 ~ 13148384 n 0000 ~ 13149296 n 0000 ~ 13236100 n 0000 ~ 13236887 n 0000 ~ 13237508 n 0000 ~ 13237988 n 0000 ~ 13239736 n 0000 | a plant with a weak stem that derives support from climbing, twining, or creeping along a surface -13102409 20 n 01 climber 0 007 @ 13100677 n 0000 + 01921964 v 0101 ~ 11729478 n 0000 ~ 11747468 n 0000 ~ 11856055 n 0000 ~ 12956170 n 0000 ~ 13103023 n 0000 | a vine or climbing plant that readily grows up a support or over other plants -13102648 20 n 01 creeper 0 002 @ 13083586 n 0000 + 02060588 v 0101 | any plant (as ivy or periwinkle) that grows by creeping -13102775 20 n 01 tendril 0 002 @ 13086908 n 0000 ~ 13102946 n 0000 | slender stem-like structure by which some twining plants attach themselves to an object for support -13102946 20 n 02 cirrus 0 cirrhus 0 001 @ 13102775 n 0000 | usually coiled -13103023 20 n 01 root_climber 0 001 @ 13102409 n 0000 | a plant that climbs by its adventitious roots e.g. ivy -13103136 20 n 02 woody_plant 0 ligneous_plant 0 022 @ 13083586 n 0000 ~ 11728530 n 0000 ~ 11750989 n 0000 ~ 11797321 n 0000 ~ 12324056 n 0000 ~ 12355023 n 0000 ~ 12395906 n 0000 ~ 12508309 n 0000 ~ 12509476 n 0000 ~ 12542910 n 0000 ~ 12546183 n 0000 ~ 12813753 n 0000 ~ 12829582 n 0000 ~ 12876899 n 0000 ~ 12893463 n 0000 %s 13096779 n 0000 %p 13098648 n 0000 ~ 13103660 n 0000 ~ 13103750 n 0000 ~ 13104059 n 0000 ~ 13112664 n 0000 ~ 13119870 n 0000 | a plant having hard lignified tissues or woody parts especially stems -13103660 20 n 01 lignosae 0 001 @ 13103136 n 0000 | a category in some early taxonomies -13103750 20 n 01 arborescent_plant 0 002 @ 13103136 n 0000 ~ 12466206 n 0000 | having the shape or characteristics of a tree -13103877 20 n 01 snag 0 001 @ 13104059 n 0000 | a dead tree that is still standing, usually in an undisturbed forest; "a snag can provide food and a habitat for insects and birds" -13104059 20 n 01 tree 0 192 @ 13103136 n 0000 #m 08438533 n 0000 + 13107807 n 0101 + 01145163 v 0101 ~ 11650558 n 0000 ~ 11696450 n 0000 ~ 11696935 n 0000 ~ 11708658 n 0000 ~ 11739978 n 0000 ~ 11745817 n 0000 ~ 11749112 n 0000 ~ 11756092 n 0000 ~ 11758799 n 0000 ~ 11759224 n 0000 ~ 11761202 n 0000 ~ 11761650 n 0000 ~ 11761836 n 0000 ~ 11762018 n 0000 ~ 11762433 n 0000 ~ 11762927 n 0000 ~ 11763625 n 0000 ~ 11764478 n 0000 ~ 11770256 n 0000 ~ 11772879 n 0000 ~ 11799331 n 0000 ~ 11841247 n 0000 ~ 12154773 n 0000 ~ 12180885 n 0000 ~ 12185254 n 0000 ~ 12188289 n 0000 ~ 12189429 n 0000 ~ 12191240 n 0000 ~ 12192132 n 0000 ~ 12192877 n 0000 ~ 12194147 n 0000 ~ 12194613 n 0000 ~ 12196129 n 0000 ~ 12198286 n 0000 ~ 12200905 n 0000 ~ 12201331 n 0000 ~ 12201938 n 0000 ~ 12202936 n 0000 ~ 12220496 n 0000 ~ 12222090 n 0000 ~ 12222900 n 0000 ~ 12223160 n 0000 ~ 12224978 n 0000 ~ 12260799 n 0000 ~ 12262553 n 0000 ~ 12264512 n 0000 ~ 12264786 n 0000 ~ 12265394 n 0000 ~ 12266217 n 0000 ~ 12268246 n 0000 ~ 12281241 n 0000 ~ 12284262 n 0000 ~ 12286826 n 0000 ~ 12287642 n 0000 ~ 12302071 n 0000 ~ 12303462 n 0000 ~ 12309630 n 0000 ~ 12323665 n 0000 ~ 12324906 n 0000 ~ 12325234 n 0000 ~ 12330891 n 0000 ~ 12334293 n 0000 ~ 12364604 n 0000 ~ 12364940 n 0000 ~ 12365158 n 0000 ~ 12365285 n 0000 ~ 12365900 n 0000 ~ 12366053 n 0000 ~ 12370549 n 0000 ~ 12373739 n 0000 ~ 12377198 n 0000 ~ 12378963 n 0000 ~ 12379531 n 0000 ~ 12379781 n 0000 ~ 12380305 n 0000 ~ 12394328 n 0000 ~ 12401335 n 0000 ~ 12405714 n 0000 ~ 12409231 n 0000 ~ 12478768 n 0000 ~ 12488454 n 0000 ~ 12488709 n 0000 ~ 12489268 n 0000 ~ 12489676 n 0000 ~ 12490490 n 0000 ~ 12491435 n 0000 ~ 12491826 n 0000 ~ 12495146 n 0000 ~ 12496427 n 0000 ~ 12498055 n 0000 ~ 12506181 n 0000 ~ 12509109 n 0000 ~ 12510343 n 0000 ~ 12522188 n 0000 ~ 12522894 n 0000 ~ 12523141 n 0000 ~ 12523850 n 0000 ~ 12524188 n 0000 ~ 12527738 n 0000 ~ 12531727 n 0000 ~ 12549799 n 0000 ~ 12551173 n 0000 ~ 12551457 n 0000 ~ 12553573 n 0000 ~ 12559518 n 0000 ~ 12562577 n 0000 ~ 12563702 n 0000 ~ 12565102 n 0000 ~ 12565368 n 0000 ~ 12565730 n 0000 ~ 12565912 n 0000 ~ 12566331 n 0000 ~ 12569037 n 0000 ~ 12569851 n 0000 ~ 12570394 n 0000 ~ 12570703 n 0000 ~ 12570972 n 0000 ~ 12573911 n 0000 ~ 12579822 n 0000 ~ 12580012 n 0000 ~ 12582231 n 0000 ~ 12662074 n 0000 ~ 12662772 n 0000 ~ 12663804 n 0000 ~ 12668917 n 0000 ~ 12669803 n 0000 ~ 12670758 n 0000 ~ 12670962 n 0000 ~ 12690653 n 0000 ~ 12695144 n 0000 ~ 12695975 n 0000 ~ 12696492 n 0000 ~ 12697514 n 0000 ~ 12698435 n 0000 ~ 12699301 n 0000 ~ 12699618 n 0000 ~ 12700996 n 0000 ~ 12701666 n 0000 ~ 12702124 n 0000 ~ 12713866 n 0000 ~ 12714254 n 0000 ~ 12714755 n 0000 ~ 12715914 n 0000 ~ 12718074 n 0000 ~ 12724942 n 0000 ~ 12735160 n 0000 ~ 12736603 n 0000 ~ 12740967 n 0000 ~ 12741222 n 0000 ~ 12764978 n 0000 ~ 12765115 n 0000 ~ 12765402 n 0000 ~ 12770529 n 0000 ~ 12770892 n 0000 ~ 12774299 n 0000 ~ 12775070 n 0000 ~ 12775393 n 0000 ~ 12775919 n 0000 ~ 12787364 n 0000 ~ 12806732 n 0000 ~ 12815668 n 0000 ~ 12818601 n 0000 ~ 12915811 n 0000 ~ 12916179 n 0000 ~ 12916511 n 0000 %s 13097536 n 0000 %s 13097752 n 0000 ~ 13103877 n 0000 ~ 13107694 n 0000 ~ 13107807 n 0000 ~ 13107891 n 0000 ~ 13108131 n 0000 ~ 13108323 n 0000 ~ 13108481 n 0000 ~ 13108545 n 0000 ~ 13108662 n 0000 ~ 13109733 n 0000 ~ 13111340 n 0000 %p 13111504 n 0000 ~ 13111881 n 0000 %p 13128003 n 0000 ~ 13142907 n 0000 ~ 13144084 n 0000 %p 13163803 n 0000 %p 13165815 n 0000 %p 13166044 n 0000 ~ 13240362 n 0000 + 01616293 v 0101 | a tall perennial woody plant having a main trunk and branches forming a distinct elevated crown; includes both gymnosperms and angiosperms -13107694 20 n 01 timber_tree 0 001 @ 13104059 n 0000 | any tree that is valued as a source of lumber or timber -13107807 20 n 01 treelet 0 002 @ 13104059 n 0000 + 13104059 n 0101 | a small tree -13107891 20 n 01 arbor 0 010 @ 13104059 n 0000 + 02638121 a 0103 + 02638121 a 0104 + 00613382 a 0102 + 00613382 a 0101 + 02638121 a 0102 + 10727818 n 0102 + 02638121 a 0101 + 00329495 v 0101 + 00329495 v 0102 | tree (as opposed to shrub) -13108131 20 n 01 bean_tree 0 006 @ 13104059 n 0000 ~ 11749920 n 0000 ~ 12493208 n 0000 ~ 12501202 n 0000 ~ 12512674 n 0000 ~ 12814643 n 0000 | any of several trees having seedpods as fruits -13108323 20 n 01 pollard 0 003 @ 13104059 n 0000 + 01320669 v 0102 + 01320669 v 0101 | a tree with limbs cut back to promote a more bushy growth of foliage -13108481 20 n 01 sapling 0 001 @ 13104059 n 0000 | young tree -13108545 20 n 01 shade_tree 0 001 @ 13104059 n 0000 | a tree planted or valued chiefly for its shade from sunlight -13108662 20 n 01 gymnospermous_tree 0 005 @ 13104059 n 0000 #m 11595312 n 0000 ~ 11597657 n 0000 ~ 11664418 n 0000 ~ 13108841 n 0000 | any tree of the division Gymnospermophyta -13108841 20 n 02 conifer 0 coniferous_tree 0 044 @ 13108662 n 0000 + 00913720 a 0101 ~ 11608250 n 0000 ~ 11618861 n 0000 ~ 11620389 n 0000 ~ 11620673 n 0000 ~ 11623105 n 0000 ~ 11624531 n 0000 ~ 11627168 n 0000 ~ 11628456 n 0000 ~ 11629354 n 0000 ~ 11630017 n 0000 ~ 11630489 n 0000 ~ 11632929 n 0000 ~ 11640132 n 0000 ~ 11643835 n 0000 ~ 11645163 n 0000 ~ 11645590 n 0000 ~ 11645914 n 0000 ~ 11647306 n 0000 ~ 11648776 n 0000 ~ 11649878 n 0000 ~ 11652039 n 0000 ~ 11652217 n 0000 ~ 11652376 n 0000 ~ 11652578 n 0000 ~ 11653126 n 0000 ~ 11653904 n 0000 ~ 11654293 n 0000 ~ 11654438 n 0000 ~ 11654984 n 0000 ~ 11655152 n 0000 ~ 11655592 n 0000 ~ 11655974 n 0000 ~ 11656123 n 0000 ~ 11657585 n 0000 ~ 11658331 n 0000 ~ 11658544 n 0000 ~ 11658709 n 0000 ~ 11659248 n 0000 ~ 11659627 n 0000 ~ 11660300 n 0000 ~ 11661372 n 0000 %p 11682842 n 0000 | any gymnospermous tree or shrub bearing cones -13109733 20 n 02 angiospermous_tree 0 flowering_tree 0 059 @ 13104059 n 0000 #m 11664929 n 0000 ~ 11695974 n 0000 ~ 11702713 n 0000 ~ 11703669 n 0000 ~ 11709674 n 0000 ~ 11711971 n 0000 ~ 11712282 n 0000 ~ 11903333 n 0000 ~ 12189779 n 0000 ~ 12189987 n 0000 ~ 12190410 n 0000 ~ 12191587 n 0000 ~ 12195391 n 0000 ~ 12199790 n 0000 ~ 12199982 n 0000 ~ 12200143 n 0000 ~ 12201580 n 0000 ~ 12219668 n 0000 ~ 12242409 n 0000 ~ 12317296 n 0000 ~ 12324388 n 0000 ~ 12324558 n 0000 ~ 12329473 n 0000 ~ 12330239 n 0000 ~ 12330469 n 0000 ~ 12345899 n 0000 ~ 12363301 n 0000 ~ 12366870 n 0000 ~ 12396091 n 0000 ~ 12403994 n 0000 ~ 12404729 n 0000 ~ 12491017 n 0000 ~ 12494794 n 0000 ~ 12513613 n 0000 ~ 12513933 n 0000 ~ 12643113 n 0000 ~ 12651821 n 0000 ~ 12658118 n 0000 ~ 12717072 n 0000 ~ 12721477 n 0000 ~ 12722071 n 0000 ~ 12722567 n 0000 ~ 12731401 n 0000 ~ 12751172 n 0000 ~ 12752205 n 0000 ~ 12756457 n 0000 ~ 12761905 n 0000 ~ 12768369 n 0000 ~ 12773917 n 0000 ~ 12778219 n 0000 ~ 12818346 n 0000 ~ 12925583 n 0000 ~ 12926039 n 0000 ~ 12927494 n 0000 ~ 12927758 n 0000 ~ 12946849 n 0000 ~ 13110915 n 0000 ~ 13111174 n 0000 | any tree having seeds and ovules contained in the ovary -13110915 20 n 01 nut_tree 0 011 @ 13109733 n 0000 ~ 12197359 n 0000 ~ 12221191 n 0000 ~ 12288823 n 0000 ~ 12318378 n 0000 ~ 12320010 n 0000 ~ 12321077 n 0000 ~ 12322501 n 0000 ~ 12327846 n 0000 ~ 12759273 n 0000 ~ 12761702 n 0000 | tree bearing edible nuts -13111174 20 n 01 spice_tree 0 005 @ 13109733 n 0000 ~ 11714382 n 0000 ~ 12331066 n 0000 ~ 12331263 n 0000 ~ 12339526 n 0000 | tree bearing aromatic bark or berries -13111340 20 n 01 fever_tree 1 001 @ 13104059 n 0000 | any of several trees having leaves or bark used to allay fever or thought to indicate regions free of fever -13111504 20 n 02 stump 0 tree_stump 0 004 @ 13086908 n 0000 #p 13104059 n 0000 + 00195221 v 0101 ~ 13111700 n 0000 | the base part of a tree that remains standing after the tree has been felled -13111700 20 n 01 stool 0 003 @ 13111504 n 0000 ;c 06071934 n 0000 + 00095595 v 0101 | (forestry) the stump of a tree that has been felled or headed for the production of saplings -13111881 20 n 01 bonsai 0 003 @ 13104059 n 0000 ~ 13112035 n 0000 ~ 13112201 n 0000 | a dwarfed ornamental tree or shrub grown in a tray or shallow pot -13112035 20 n 01 ming_tree 0 001 @ 13111881 n 0000 | a dwarfed evergreen conifer or shrub shaped to have flat-topped asymmetrical branches and grown in a container -13112201 20 n 01 ming_tree 1 001 @ 13111881 n 0000 | an artificial plant resembling a bonsai -13112296 20 n 02 groundcover 1 ground_cover 1 001 @ 08439476 n 0000 | small plants other than saplings growing on a forest floor -13112427 20 n 02 groundcover 2 ground_cover 2 005 @ 08436759 n 0000 ~ 11810728 n 0000 ~ 11813490 n 0000 ~ 11814238 n 0000 ~ 12393723 n 0000 | low-growing plants planted in deep shade or on a steep slope where turf is difficult to grow -13112664 20 n 02 shrub 0 bush 0 309 @ 13103136 n 0000 #m 08439694 n 0000 + 00613975 a 0201 + 03021866 a 0101 + 13118569 n 0101 ~ 11598287 n 0000 ~ 11598686 n 0000 ~ 11652966 n 0000 ~ 11656549 n 0000 ~ 11656771 n 0000 ~ 11657153 n 0000 ~ 11697560 n 0000 ~ 11698562 n 0000 ~ 11699442 n 0000 ~ 11699751 n 0000 ~ 11700864 n 0000 ~ 11701698 n 0000 ~ 11706325 n 0000 ~ 11740414 n 0000 ~ 11741175 n 0000 ~ 11741350 n 0000 ~ 11742310 n 0000 ~ 11742878 n 0000 ~ 11754893 n 0000 ~ 11760294 n 0000 ~ 11760785 n 0000 ~ 11763142 n 0000 ~ 11764814 n 0000 ~ 11765277 n 0000 ~ 11768505 n 0000 ~ 11768816 n 0000 ~ 11769176 n 0000 ~ 11771539 n 0000 ~ 11774513 n 0000 ~ 11775340 n 0000 ~ 11775959 n 0000 ~ 11776511 n 0000 ~ 11777080 n 0000 ~ 11797508 n 0000 ~ 11798496 n 0000 ~ 11798688 n 0000 ~ 11800565 n 0000 ~ 11827541 n 0000 ~ 11830906 n 0000 ~ 11831874 n 0000 ~ 11833373 n 0000 ~ 11834654 n 0000 ~ 11834890 n 0000 ~ 11835251 n 0000 ~ 11865071 n 0000 ~ 11874878 n 0000 ~ 11905035 n 0000 ~ 11926365 n 0000 ~ 11928352 n 0000 ~ 11938261 n 0000 ~ 11938556 n 0000 ~ 11938732 n 0000 ~ 11952346 n 0000 ~ 11976933 n 0000 ~ 11996677 n 0000 ~ 11997969 n 0000 ~ 11999278 n 0000 ~ 12009420 n 0000 ~ 12011620 n 0000 ~ 12018760 n 0000 ~ 12097396 n 0000 ~ 12097556 n 0000 ~ 12098524 n 0000 ~ 12099972 n 0000 ~ 12100187 n 0000 ~ 12170585 n 0000 ~ 12175949 n 0000 ~ 12182615 n 0000 ~ 12184912 n 0000 ~ 12185859 n 0000 ~ 12193665 n 0000 ~ 12197901 n 0000 ~ 12198793 n 0000 ~ 12199266 n 0000 ~ 12200504 n 0000 ~ 12205104 n 0000 ~ 12205460 n 0000 ~ 12214789 n 0000 ~ 12215579 n 0000 ~ 12216215 n 0000 ~ 12216628 n 0000 ~ 12216968 n 0000 ~ 12217453 n 0000 ~ 12218868 n 0000 ~ 12219065 n 0000 ~ 12219289 n 0000 ~ 12220019 n 0000 ~ 12220829 n 0000 ~ 12222493 n 0000 ~ 12223569 n 0000 ~ 12223764 n 0000 ~ 12224140 n 0000 ~ 12226932 n 0000 ~ 12229443 n 0000 ~ 12230347 n 0000 ~ 12231192 n 0000 ~ 12231918 n 0000 ~ 12233249 n 0000 ~ 12234318 n 0000 ~ 12235051 n 0000 ~ 12236160 n 0000 ~ 12236546 n 0000 ~ 12237486 n 0000 ~ 12238491 n 0000 ~ 12238756 n 0000 ~ 12238913 n 0000 ~ 12239240 n 0000 ~ 12239647 n 0000 ~ 12239880 n 0000 ~ 12240150 n 0000 ~ 12240477 n 0000 ~ 12240965 n 0000 ~ 12241192 n 0000 ~ 12241426 n 0000 ~ 12241880 n 0000 ~ 12242123 n 0000 ~ 12243459 n 0000 ~ 12243693 n 0000 ~ 12244153 n 0000 ~ 12245695 n 0000 ~ 12246232 n 0000 ~ 12250180 n 0000 ~ 12251740 n 0000 ~ 12252866 n 0000 ~ 12254168 n 0000 ~ 12255225 n 0000 ~ 12265083 n 0000 ~ 12279060 n 0000 ~ 12302565 n 0000 ~ 12303083 n 0000 ~ 12306717 n 0000 ~ 12307756 n 0000 ~ 12310021 n 0000 ~ 12310349 n 0000 ~ 12314808 n 0000 ~ 12315598 n 0000 ~ 12315999 n 0000 ~ 12324222 n 0000 ~ 12325787 n 0000 ~ 12329260 n 0000 ~ 12332555 n 0000 ~ 12343480 n 0000 ~ 12346578 n 0000 ~ 12347639 n 0000 ~ 12349315 n 0000 ~ 12349711 n 0000 ~ 12363768 n 0000 ~ 12372233 n 0000 ~ 12374418 n 0000 ~ 12375518 n 0000 ~ 12378249 n 0000 ~ 12378753 n 0000 ~ 12380761 n 0000 ~ 12381095 n 0000 ~ 12381511 n 0000 ~ 12382875 n 0000 ~ 12386462 n 0000 ~ 12386945 n 0000 ~ 12396924 n 0000 ~ 12463134 n 0000 ~ 12478506 n 0000 ~ 12482031 n 0000 ~ 12485653 n 0000 ~ 12489046 n 0000 ~ 12490827 n 0000 ~ 12493868 n 0000 ~ 12497669 n 0000 ~ 12498457 n 0000 ~ 12499163 n 0000 ~ 12504094 n 0000 ~ 12505752 n 0000 ~ 12506784 n 0000 ~ 12507823 n 0000 ~ 12510774 n 0000 ~ 12511856 n 0000 ~ 12514138 n 0000 ~ 12514592 n 0000 ~ 12515393 n 0000 ~ 12516584 n 0000 ~ 12518013 n 0000 ~ 12518481 n 0000 ~ 12518879 n 0000 ~ 12520864 n 0000 ~ 12524633 n 0000 ~ 12525168 n 0000 ~ 12525513 n 0000 ~ 12529905 n 0000 ~ 12531328 n 0000 ~ 12533730 n 0000 ~ 12535593 n 0000 ~ 12536040 n 0000 ~ 12546617 n 0000 ~ 12550210 n 0000 ~ 12559044 n 0000 ~ 12561897 n 0000 ~ 12562141 n 0000 ~ 12567490 n 0000 ~ 12567950 n 0000 ~ 12572188 n 0000 ~ 12574866 n 0000 ~ 12579404 n 0000 ~ 12620196 n 0000 ~ 12623524 n 0000 ~ 12624381 n 0000 ~ 12625383 n 0000 ~ 12626353 n 0000 ~ 12633061 n 0000 ~ 12636885 n 0000 ~ 12646950 n 0000 ~ 12648424 n 0000 ~ 12649723 n 0000 ~ 12651229 n 0000 ~ 12659356 n 0000 ~ 12662379 n 0000 ~ 12666768 n 0000 ~ 12667964 n 0000 ~ 12669362 n 0000 ~ 12670334 n 0000 ~ 12671651 n 0000 ~ 12672083 n 0000 ~ 12672289 n 0000 ~ 12672631 n 0000 ~ 12673012 n 0000 ~ 12674120 n 0000 ~ 12677841 n 0000 ~ 12678224 n 0000 ~ 12680402 n 0000 ~ 12680652 n 0000 ~ 12680864 n 0000 ~ 12681141 n 0000 ~ 12681376 n 0000 ~ 12681579 n 0000 ~ 12681893 n 0000 ~ 12690046 n 0000 ~ 12690240 n 0000 ~ 12721122 n 0000 ~ 12723062 n 0000 ~ 12746106 n 0000 ~ 12747831 n 0000 ~ 12749049 n 0000 ~ 12749679 n 0000 ~ 12749852 n 0000 ~ 12750767 n 0000 ~ 12751675 n 0000 ~ 12757115 n 0000 ~ 12760132 n 0000 ~ 12760875 n 0000 ~ 12762049 n 0000 ~ 12762896 n 0000 ~ 12772753 n 0000 ~ 12777436 n 0000 ~ 12788201 n 0000 ~ 12791064 n 0000 ~ 12791790 n 0000 ~ 12797860 n 0000 ~ 12805146 n 0000 ~ 12806015 n 0000 ~ 12812801 n 0000 ~ 12815198 n 0000 ~ 12831535 n 0000 ~ 12835766 n 0000 ~ 12845908 n 0000 ~ 12849717 n 0000 ~ 12851860 n 0000 ~ 12862828 n 0000 ~ 12885510 n 0000 ~ 12897118 n 0000 ~ 12897999 n 0000 ~ 12899166 n 0000 ~ 12899537 n 0000 ~ 12899752 n 0000 ~ 12899971 n 0000 ~ 12900462 n 0000 ~ 12902466 n 0000 ~ 12902662 n 0000 ~ 12903014 n 0000 ~ 12903367 n 0000 ~ 12903964 n 0000 ~ 12904938 n 0000 ~ 12905412 n 0000 ~ 12913791 n 0000 ~ 12914193 n 0000 ~ 12917901 n 0000 ~ 12922458 n 0000 ~ 12922763 n 0000 ~ 12923652 n 0000 ~ 12924623 n 0000 ~ 12926480 n 0000 ~ 12928071 n 0000 ~ 12929403 n 0000 ~ 12929783 n 0000 ~ 12938193 n 0000 ~ 12949160 n 0000 ~ 12949361 n 0000 ~ 13118330 n 0000 ~ 13118398 n 0000 ~ 13118569 n 0000 ~ 13118707 n 0000 ~ 13120003 n 0000 ~ 13141141 n 0000 ~ 13143285 n 0000 ~ 13143483 n 0000 ~ 13143758 n 0000 ~ 13238988 n 0000 | a low woody perennial plant usually having several major stems -13118330 20 n 01 undershrub 0 001 @ 13112664 n 0000 | a low shrub -13118398 20 n 01 burning_bush 0 002 @ 13112664 n 0000 ;c 06449735 n 0000 | (Old Testament) the bush that burned without being consumed and from which God spoke to Moses -13118569 20 n 01 shrublet 0 005 @ 13112664 n 0000 + 13112664 n 0101 ~ 12235479 n 0000 ~ 12235765 n 0000 ~ 12342852 n 0000 | dwarf shrub -13118707 20 n 02 subshrub 0 suffrutex 0 059 @ 13112664 n 0000 ~ 11751765 n 0000 ~ 11770753 n 0000 ~ 11777929 n 0000 ~ 11797722 n 0000 ~ 11797981 n 0000 ~ 11798270 n 0000 ~ 11826569 n 0000 ~ 11897466 n 0000 ~ 11907689 n 0000 ~ 11924445 n 0000 ~ 11925898 n 0000 ~ 11928549 n 0000 ~ 11929027 n 0000 ~ 11940006 n 0000 ~ 11947251 n 0000 ~ 11974126 n 0000 ~ 12000851 n 0000 ~ 12001294 n 0000 ~ 12092930 n 0000 ~ 12098827 n 0000 ~ 12099342 n 0000 ~ 12204730 n 0000 ~ 12251001 n 0000 ~ 12328398 n 0000 ~ 12350032 n 0000 ~ 12367611 n 0000 ~ 12376553 n 0000 ~ 12376740 n 0000 ~ 12494358 n 0000 ~ 12500518 n 0000 ~ 12526516 n 0000 ~ 12534625 n 0000 ~ 12534862 n 0000 ~ 12535254 n 0000 ~ 12544862 n 0000 ~ 12545232 n 0000 ~ 12545429 n 0000 ~ 12545635 n 0000 ~ 12546962 n 0000 ~ 12552893 n 0000 ~ 12553114 n 0000 ~ 12572546 n 0000 ~ 12601805 n 0000 ~ 12602262 n 0000 ~ 12629305 n 0000 ~ 12631331 n 0000 ~ 12642734 n 0000 ~ 12661538 n 0000 ~ 12673328 n 0000 ~ 12705013 n 0000 ~ 12723610 n 0000 ~ 12746884 n 0000 ~ 12786836 n 0000 ~ 12861345 n 0000 ~ 12861541 n 0000 ~ 12869478 n 0000 ~ 12871272 n 0000 ~ 12938081 n 0000 | low-growing woody shrub or perennial with woody base -13119870 20 n 01 bramble 2 003 @ 13103136 n 0000 + 02573708 a 0102 ~ 12653218 n 0000 | any of various rough thorny shrubs or vines -13120003 20 n 01 flowering_shrub 0 007 @ 13112664 n 0000 #m 11664929 n 0000 ~ 12489815 n 0000 ~ 12490054 n 0000 ~ 12538209 n 0000 ~ 12538380 n 0000 ~ 12776774 n 0000 | shrub noted primarily for its flowers -13120211 20 n 01 liana 0 009 @ 13100677 n 0000 ~ 11773408 n 0000 ~ 11773628 n 0000 ~ 11788727 n 0000 ~ 11789438 n 0000 ~ 11791341 n 0000 ~ 11792029 n 0000 ~ 12571781 n 0000 ~ 13236495 n 0000 | a woody climbing usually tropical plant -13120446 20 n 01 parasitic_plant 0 012 @ 01384687 n 0000 ~ 11657904 n 0000 ~ 12735817 n 0000 ~ 12736228 n 0000 ~ 12736999 n 0000 ~ 12737383 n 0000 ~ 12737898 n 0000 ~ 12738259 n 0000 ~ 12738599 n 0000 ~ 12739332 n 0000 ~ 12739801 n 0000 ~ 13120775 n 0000 | plant living on another plant and obtaining organic nutriment from it -13120775 20 n 02 hemiparasite 0 semiparasite 0 002 @ 13120446 n 0000 + 02850701 a 0101 | a parasitic plant that contains some chlorophyll and therefore is capable of photosynthesis -13120958 20 n 01 geophyte 0 002 @ 13083586 n 0000 + 02735375 a 0101 | a perennial plant that propagates by underground bulbs or tubers or corms -13121104 20 n 05 desert_plant 0 xerophyte 0 xerophytic_plant 0 xerophile 0 xerophilous_plant 0 003 @ 13083586 n 0000 + 02588915 a 0201 ~ 12476510 n 0000 | plant adapted for life with a limited supply of water; compare hydrophyte and mesophyte -13121349 20 n 02 mesophyte 0 mesophytic_plant 0 002 @ 13083586 n 0000 + 02589730 a 0101 | land plant growing in surroundings having an average supply of water; compare xerophyte and hydrophyte -13121544 20 n 04 aquatic_plant 0 water_plant 0 hydrophyte 0 hydrophytic_plant 0 033 @ 13083586 n 0000 + 02589258 a 0301 ~ 11702252 n 0000 ~ 11714853 n 0000 ~ 11720891 n 0000 ~ 11787190 n 0000 ~ 11790390 n 0000 ~ 11790788 n 0000 ~ 11791569 n 0000 ~ 11794519 n 0000 ~ 11898271 n 0000 ~ 12094244 n 0000 ~ 12096395 n 0000 ~ 12327022 n 0000 ~ 12348294 n 0000 ~ 12484784 n 0000 ~ 12609379 n 0000 ~ 12609968 n 0000 ~ 12610328 n 0000 ~ 12610740 n 0000 ~ 12611640 n 0000 ~ 12613408 n 0000 ~ 12613706 n 0000 ~ 12614096 n 0000 ~ 12614477 n 0000 ~ 12615232 n 0000 ~ 12615710 n 0000 ~ 12618727 n 0000 ~ 12693865 n 0000 ~ 12796849 n 0000 ~ 12891469 n 0000 ~ 13122364 n 0000 %p 13154586 n 0000 | a plant that grows partly or wholly in water whether rooted in the mud, as a lotus, or floating without anchorage, as the water hyacinth -13122364 20 n 03 marsh_plant 0 bog_plant 0 swamp_plant 0 024 @ 13121544 n 0000 ~ 11721642 n 0000 ~ 11722036 n 0000 ~ 11728099 n 0000 ~ 11743294 n 0000 ~ 11780930 n 0000 ~ 11786131 n 0000 ~ 11789066 n 0000 ~ 11792742 n 0000 ~ 11985053 n 0000 ~ 12150028 n 0000 ~ 12155583 n 0000 ~ 12298165 n 0000 ~ 12605683 n 0000 ~ 12612170 n 0000 ~ 12617559 n 0000 ~ 12801520 n 0000 ~ 12881105 n 0000 ~ 12890685 n 0000 ~ 12891093 n 0000 ~ 12945177 n 0000 ~ 12945366 n 0000 ~ 12945549 n 0000 ~ 13151975 n 0000 | a semiaquatic plant that grows in soft wet land; most are monocots: sedge, sphagnum, grasses, cattails, etc; possibly heath -13122985 20 n 04 air_plant 0 epiphyte 0 aerophyte 0 epiphytic_plant 0 007 @ 00017222 n 0000 + 03022349 a 0201 ~ 12366186 n 0000 ~ 12608127 n 0000 ~ 12830568 n 0000 ~ 13123309 n 0000 ~ 13123431 n 0000 | plant that derives moisture and nutrients from the air and rain; usually grows on another plant but not parasitic on it -13123309 20 n 02 hemiepiphyte 0 semiepiphyte 0 001 @ 13122985 n 0000 | a plant that is an epiphyte for part of its life -13123431 20 n 02 strangler 0 strangler_tree 0 003 @ 13122985 n 0000 + 01570935 v 0101 ~ 12366313 n 0000 | an epiphytic vine or tree whose aerial roots extend down the trunk of a supporting tree and coalesce around it eventually strangling the tree -13123681 20 n 01 rock_plant 0 003 @ 00017222 n 0000 ~ 13123841 n 0000 ~ 13124019 n 0000 | plant that grows on or among rocks or is suitable for a rock garden -13123841 20 n 02 lithophyte 0 lithophytic_plant 0 002 @ 13123681 n 0000 + 03022469 a 0101 | plant that grows on rocks or stony soil and derives nourishment from the atmosphere -13124019 20 n 04 rupestral_plant 0 rupestrine_plant 0 rupicolous_plant 0 saxicolous_plant 0 001 @ 13123681 n 0000 | plants growing among rocks -13124164 20 n 02 saprophyte 0 saprophytic_organism 0 003 @ 00004475 n 0000 + 00314927 a 0101 + 03020750 a 0101 | an organism that feeds on dead organic matter especially a fungus or bacterium -13124358 20 n 01 saprobe 0 002 @ 00004475 n 0000 + 03020884 a 0101 | an organism that lives in and derives its nourishment from organic matter in stagnant or foul water -13124529 20 n 01 katharobe 0 001 @ 00004475 n 0000 | an organism that lives in an oxygenated medium lacking organic matter -13124654 20 n 04 autophyte 0 autophytic_plant 0 autotroph 0 autotrophic_organism 0 002 @ 00017222 n 0000 + 02652590 a 0102 | plant capable of synthesizing its own food from simple organic substances -13124855 20 n 01 butt 0 001 @ 13809207 n 0000 | the part of a plant from which the roots spring or the part of a stalk or trunk nearest the roots -13125003 20 n 02 rootage 0 root_system 0 002 @ 08435388 n 0000 %p 13125117 n 0000 | a developed system of roots -13125117 20 n 01 root 0 032 @ 13087625 n 0000 #p 13125003 n 0000 ;c 06066555 n 0000 + 13126580 n 0101 + 01529194 v 0101 + 00358135 v 0101 ~ 11781176 n 0000 ~ 11786843 n 0000 ~ 11800236 n 0000 ~ 11873182 n 0000 ~ 11894958 n 0000 ~ 11953610 n 0000 ~ 12027538 n 0000 ~ 12089178 n 0000 ~ 12227909 n 0000 ~ 12412987 n 0000 ~ 12470329 n 0000 ~ 12533437 n 0000 ~ 12706240 n 0000 ~ 12906771 n 0000 ~ 12927013 n 0000 ~ 12937678 n 0000 ~ 12941914 n 0000 %s 13096317 n 0000 ~ 13125882 n 0000 ~ 13126050 n 0000 ~ 13126192 n 0000 %p 13126428 n 0000 ~ 13126580 n 0000 %p 13126684 n 0000 ~ 13126856 n 0000 %p 13162297 n 0000 | (botany) the usually underground organ that lacks buds or leaves or nodes; absorbs water and mineral salts; usually it anchors the plant to the ground -13125882 20 n 01 pneumatophore 0 001 @ 13125117 n 0000 | an air-filled root (submerged or exposed) that can function as a respiratory organ of a marsh or swamp plant -13126050 20 n 01 taproot 0 002 @ 13125117 n 0000 ;c 06066555 n 0000 | (botany) main root of a plant growing straight downward from the stem -13126192 20 n 01 adventitious_root 0 001 @ 13125117 n 0000 | root growing in an unusual location e.g. from a stem -13126308 20 n 01 root_crop 0 001 @ 11530512 n 0000 | crop grown for its enlarged roots: e.g. beets; potatoes; turnips -13126428 20 n 01 root_cap 0 002 @ 13087625 n 0000 #p 13125117 n 0000 | thimble-shaped mass of cells covering and protecting the growing tip of a root -13126580 20 n 01 rootlet 0 002 @ 13125117 n 0000 + 13125117 n 0101 | small root or division of a root -13126684 20 n 01 root_hair 0 002 @ 13087625 n 0000 #p 13125117 n 0000 | thin hairlike outgrowth of an epidermal cell just behind the tip; absorbs nutrients from the soil -13126856 20 n 01 prop_root 0 001 @ 13125117 n 0000 | a root that grows from and supports the stem above the ground in plants such as mangroves -13127001 20 n 01 prophyll 0 001 @ 13086908 n 0000 | a plant structure resembling a leaf -13127091 20 n 01 stock 3 003 @ 13086908 n 0000 + 00095377 v 0102 ~ 13127303 n 0000 | a plant or stem onto which a graft is made; especially a plant grown specifically to provide the root part of grafted plants -13127303 20 n 01 rootstock 0 001 @ 13127091 n 0000 | root or part of a root used for plant propagation; especially that part of a grafted plant that supplies the roots -13127473 20 n 02 cutting 0 slip 0 002 @ 13129165 n 0000 ~ 13127666 n 0000 | a part (sometimes a root or leaf or bud) removed from a plant to propagate a new plant through rooting or grafting -13127666 20 n 01 quickset 0 001 @ 13127473 n 0000 | cuttings of plants set in the ground to grow as hawthorn for hedges or vines; "a quickset of a vine planted in a vineyard" -13127843 20 n 03 stolon 0 runner 0 offset 0 001 @ 13087625 n 0000 | a horizontal branch from the base of plant that produces new plants from buds at its tips -13128003 20 n 02 crown 0 treetop 0 003 @ 08663860 n 0000 #p 13104059 n 0000 ~ 13128156 n 0000 | the upper branches and leaves of a tree or other plant -13128156 20 n 01 capitulum 3 001 @ 13128003 n 0000 | an arrangement of leafy branches forming the top or head of a tree -13128278 20 n 01 tuberous_plant 0 001 @ 13083586 n 0000 | plant growing from a tuber -13128365 20 n 01 tuber 0 006 @ 13129165 n 0000 + 03026095 a 0101 ~ 07737980 n 0000 ~ 07774032 n 0000 ~ 11979964 n 0000 ~ 12088223 n 0000 | a fleshy underground stem or root serving for reproductive and food storage -13128582 20 n 03 rhizome 0 rootstock 2 rootstalk 0 002 @ 13129165 n 0000 + 03111451 a 0101 | a horizontal plant stem with shoots above and roots below serving as a reproductive structure -13128771 20 n 01 axis 0 004 @ 13129165 n 0000 %p 13097187 n 0000 ~ 13128976 n 0000 ~ 13133932 n 0000 | the main stem or central part about which plant organs or plant parts such as branches are arranged -13128976 20 n 01 rachis 0 001 @ 13128771 n 0000 | axis of a compound leaf or compound inflorescence -13129078 20 n 01 caudex 1 001 @ 13129165 n 0000 | woody stem of palms and tree ferns -13129165 20 n 02 stalk 0 stem 0 029 @ 13087625 n 0000 ~ 11676850 n 0000 ~ 11677902 n 0000 ~ 11678010 n 0000 ~ 11678123 n 0000 ~ 11678199 n 0000 ~ 11678299 n 0000 ~ 12136206 n 0000 ~ 13091982 n 0000 ~ 13127473 n 0000 ~ 13128365 n 0000 ~ 13128582 n 0000 ~ 13128771 n 0000 ~ 13129078 n 0000 %p 13129826 n 0000 ~ 13129938 n 0000 ~ 13130014 n 0000 %p 13130161 n 0000 ~ 13130305 n 0000 ~ 13130569 n 0000 ~ 13130726 n 0000 ~ 13131618 n 0000 ~ 13134059 n 0000 ~ 13134680 n 0000 %p 13154190 n 0000 ~ 13163250 n 0000 ~ 13163471 n 0000 ~ 13163649 n 0000 ~ 13165815 n 0000 | a slender or elongated structure that supports a plant or fungus or a plant part or plant organ -13129826 20 n 01 internode 0 002 @ 09429387 n 0000 #p 13129165 n 0000 | a segment of a stem between two nodes -13129938 20 n 01 beanstalk 0 001 @ 13129165 n 0000 | stem of a bean plant -13130014 20 n 04 cladode 0 cladophyll 0 phylloclad 0 phylloclade 0 001 @ 13129165 n 0000 | a flattened stem resembling and functioning as a leaf -13130161 20 n 01 receptacle 0 003 @ 13086908 n 0000 #p 13129165 n 0000 ~ 11676743 n 0000 | enlarged tip of a stem that bears the floral parts -13130305 20 n 02 stock 0 caudex 2 001 @ 13129165 n 0000 | persistent thickened stem of a herbaceous perennial plant -13130423 20 n 01 axil 0 002 @ 13887509 n 0000 + 03133666 a 0101 | the upper angle between an axis and an offshoot such as a branch or leafstalk -13130569 20 n 01 stipe 0 001 @ 13129165 n 0000 | supporting stalk or stem-like structure especially of a pistil or fern frond or supporting a mushroom cap -13130726 20 n 02 scape 0 flower_stalk 0 002 @ 13129165 n 0000 ~ 13132034 n 0000 | erect leafless flower stalk growing directly from the ground as in a tulip -13130885 20 n 01 meristem 0 001 @ 13095685 n 0000 | undifferentiated tissue from which new cells are formed, as at the tip of a stem or root -13131028 20 n 01 umbel 0 002 @ 11674332 n 0000 + 03026504 a 0102 | flat-topped or rounded inflorescence characteristic of the family Umbelliferae in which the individual flower stalks arise from about the same point; youngest flowers are at the center -13131282 20 n 01 corymb 0 001 @ 11674332 n 0000 | flat-topped or convex inflorescence in which the individual flower stalks grow upward from various points on the main stem to approximately the same height; outer flowers open first -13131516 20 n 01 ray 0 001 @ 13132156 n 0000 | a branch of an umbel or an umbelliform inflorescence -13131618 20 n 02 petiole 0 leafstalk 0 002 @ 13129165 n 0000 ~ 13131752 n 0000 | the slender stem that supports the blade of a leaf -13131752 20 n 01 phyllode 0 002 @ 13131618 n 0000 + 03133883 a 0101 | an expanded petiole taking on the function of a leaf blade -13131883 20 n 02 blade 0 leaf_blade 0 001 @ 13152742 n 0000 | especially a leaf of grass or the broad portion of a leaf as distinct from the petiole -13132034 20 n 01 peduncle 0 002 @ 13130726 n 0000 ~ 13132156 n 0000 | stalk bearing an inflorescence or solitary flower -13132156 20 n 02 pedicel 0 pedicle 0 002 @ 13132034 n 0000 ~ 13131516 n 0000 | a small stalk bearing a single flower of an inflorescence; an ultimate division of a common peduncle -13132338 20 n 01 flower_cluster 0 003 @ 11674332 n 0000 ~ 13132486 n 0000 ~ 13132756 n 0000 | an inflorescence consisting of a cluster of flowers -13132486 20 n 01 raceme 0 002 @ 13132338 n 0000 ~ 13132656 n 0000 | usually elongate cluster of flowers along the main stem in which the flowers at the base open first -13132656 20 n 01 panicle 0 001 @ 13132486 n 0000 | compound raceme or branched cluster of flowers -13132756 20 n 02 thyrse 0 thyrsus 0 001 @ 13132338 n 0000 | a dense flower cluster (as of the lilac or horse chestnut) in which the main axis is racemose and the branches are cymose -13132940 20 n 01 cyme 0 004 @ 11674332 n 0000 ~ 13133140 n 0000 ~ 13133233 n 0000 ~ 13133316 n 0000 | more or less flat-topped cluster of flowers in which the central or terminal flower opens first -13133140 20 n 01 cymule 0 001 @ 13132940 n 0000 | a small cyme, generally with few flowers -13133233 20 n 01 glomerule 0 001 @ 13132940 n 0000 | a compacted or sessile cyme -13133316 20 n 01 scorpioid_cyme 0 001 @ 13132940 n 0000 | a cyme with flowers or branches alternating in opposite ranks -13133438 20 n 01 spike 0 003 @ 11674332 n 0000 ;c 06066555 n 0000 %p 13133932 n 0000 | (botany) an indeterminate inflorescence bearing sessile flowers on an unbranched axis -13133613 20 n 03 ear 0 spike 2 capitulum 2 004 @ 13134947 n 0000 #p 12143676 n 0000 + 00294718 v 0201 ~ 12144313 n 0000 | fruiting spike of a cereal plant especially corn -13133786 20 n 02 capitulum 1 head 0 001 @ 13087625 n 0000 | a dense cluster of flowers or foliage; "a head of cauliflower"; "a head of lettuce" -13133932 20 n 01 spadix 0 002 @ 13128771 n 0000 #p 13133438 n 0000 | the fleshy axis of a spike often surrounded by a spathe -13134059 20 n 01 bulb 0 006 @ 13129165 n 0000 + 03141315 a 0101 ~ 12433081 n 0000 ~ 12433429 n 0000 ~ 12462805 n 0000 ~ 13134531 n 0000 | a modified bud consisting of a thickened globular underground stem serving as a reproductive structure -13134302 20 n 01 bulbous_plant 0 009 @ 13083586 n 0000 ~ 12411461 n 0000 ~ 12419037 n 0000 ~ 12420535 n 0000 ~ 12421467 n 0000 ~ 12425281 n 0000 ~ 12451915 n 0000 ~ 12455540 n 0000 ~ 12459629 n 0000 | plant growing from a bulb -13134531 20 n 02 bulbil 0 bulblet 0 001 @ 13134059 n 0000 | small bulb or bulb-shaped growth arising from the leaf axil or in the place of flowers -13134680 20 n 01 corm 0 002 @ 13129165 n 0000 + 02704120 a 0101 | solid swollen underground bulb-shaped stem or stem base and serving as a reproductive structure -13134844 20 n 01 cormous_plant 0 002 @ 13083586 n 0000 ~ 12423211 n 0000 | plant growing from a corm -13134947 20 n 01 fruit 0 037 @ 11675842 n 0000 + 02397119 a 0101 + 10113997 n 0101 + 13135692 n 0101 + 01652731 v 0101 + 01652895 v 0101 + 00506672 v 0101 + 00056188 v 0101 ~ 07705931 n 0000 ~ 11636835 n 0000 ~ 11700279 n 0000 ~ 12036067 n 0000 ~ 12158031 n 0000 ~ 12162758 n 0000 ~ 12193334 n 0000 ~ 12267677 n 0000 ~ 12301445 n 0000 ~ 12620546 n 0000 ~ 12642090 n 0000 ~ 12644283 n 0000 ~ 12647787 n 0000 ~ 12650805 n 0000 ~ 12658481 n 0000 ~ 12737251 n 0000 ~ 13133613 n 0000 ~ 13135692 n 0000 ~ 13135832 n 0000 ~ 13137409 n 0000 ~ 13137672 n 0000 ~ 13138308 n 0000 ~ 13138842 n 0000 ~ 13139055 n 0000 ~ 13139482 n 0000 ~ 13140367 n 0000 ~ 13141415 n 0000 ~ 13150378 n 0000 ~ 13150592 n 0000 | the ripened reproductive body of a seed plant -13135692 20 n 01 fruitlet 0 002 @ 13134947 n 0000 + 13134947 n 0101 | a diminutive fruit, especially one that is part of a multiple fruit -13135832 20 n 01 seed 0 024 @ 13134947 n 0000 + 02255069 a 0101 + 00179718 v 0101 + 01500873 v 0102 + 01652429 v 0101 ~ 07770571 n 0000 ~ 07929351 n 0000 ~ 11685091 n 0000 ~ 11689197 n 0000 ~ 11689367 n 0000 ~ 11689483 n 0000 ~ 11946313 n 0000 ~ 12156819 n 0000 ~ 12306419 n 0000 ~ 12585373 n 0000 ~ 12592839 n 0000 ~ 12593341 n 0000 ~ 12594533 n 0000 ~ 12696830 n 0000 ~ 12768682 n 0000 ~ 12928819 n 0000 ~ 13136316 n 0000 ~ 13136556 n 0000 %p 13137010 n 0000 | a small hard fruit -13136316 20 n 01 bean 2 008 @ 13135832 n 0000 ~ 11750173 n 0000 ~ 11766046 n 0000 ~ 12487058 n 0000 ~ 12488914 n 0000 ~ 12493426 n 0000 ~ 12532564 n 0000 ~ 12576323 n 0000 | any of various seeds or fruits that are beans or resemble beans -13136556 20 n 01 nut 0 009 @ 13135832 n 0000 + 02398255 a 0101 + 01382720 v 0101 ~ 07737081 n 0000 ~ 11612235 n 0000 ~ 12197601 n 0000 ~ 12280364 n 0000 ~ 12590715 n 0000 ~ 13136781 n 0000 | usually large hard-shelled seed -13136781 20 n 01 nutlet 0 002 @ 13136556 n 0000 ~ 13136863 n 0000 | a small nut -13136863 20 n 01 pyrene 0 001 @ 13136781 n 0000 | the small hard nutlet of a drupe or drupelet; the seed and the hard endocarp that surrounds it -13137010 20 n 02 kernel 2 meat 0 002 @ 13086908 n 0000 #p 13135832 n 0000 | the inner and usually edible part of a seed or grain or nut or fruit stone; "black walnut kernels are difficult to get out of the shell" -13137225 20 n 01 syconium 0 002 @ 13137672 n 0000 #p 12401684 n 0000 | the fleshy multiple fruit of the fig consisting of an enlarged hollow receptacle containing numerous fruitlets -13137409 20 n 01 berry 0 006 @ 13134947 n 0000 + 01384102 v 0101 %p 07742704 n 0000 ~ 07743902 n 0000 ~ 11723986 n 0000 ~ 13137951 n 0000 | a small fruit having any of various structures, e.g., simple (grape or blueberry) or aggregate (blackberry or raspberry) -13137672 20 n 03 aggregate_fruit 0 multiple_fruit 0 syncarp 0 003 @ 13134947 n 0000 + 00113663 a 0301 ~ 13137225 n 0000 | fruit consisting of many individual small fruits or drupes derived from separate ovaries within a common receptacle: e.g. blackberry; raspberry; pineapple -13137951 20 n 02 simple_fruit 0 bacca 0 001 @ 13137409 n 0000 | an indehiscent fruit derived from a single ovary having one or many seeds within a fleshy wall or pericarp: e.g. grape; tomato; cranberry -13138155 20 n 01 acinus 0 002 @ 13138658 n 0000 + 02601788 a 0101 | one of the small drupes making up an aggregate or multiple fruit like a blackberry -13138308 20 n 02 drupe 0 stone_fruit 0 011 @ 13134947 n 0000 + 02714948 a 0101 + 13138658 n 0101 ~ 07750586 n 0000 ~ 07751004 n 0000 ~ 07751451 n 0000 ~ 07757132 n 0000 ~ 07765208 n 0000 ~ 07765999 n 0000 ~ 07767344 n 0000 ~ 13138658 n 0000 | fleshy indehiscent fruit with a single seed: e.g. almond; peach; plum; cherry; elderberry; olive; jujube -13138658 20 n 01 drupelet 0 005 @ 13138308 n 0000 + 13138308 n 0101 ~ 07744811 n 0000 ~ 07745466 n 0000 ~ 13138155 n 0000 | a small part of an aggregate fruit that resembles a drupe -13138842 20 n 02 pome 0 false_fruit 0 004 @ 13134947 n 0000 ~ 07739125 n 0000 ~ 07767847 n 0000 ~ 07769584 n 0000 | a fleshy fruit (apple or pear or related fruits) having seed chambers and an outer fleshy part -13139055 20 n 02 pod 0 seedpod 0 009 @ 13134947 n 0000 + 00198057 v 0101 + 00095870 v 0101 ~ 11748002 n 0000 ~ 11748811 n 0000 ~ 11766432 n 0000 ~ 12172364 n 0000 ~ 12550788 n 0000 ~ 13139321 n 0000 | a several-seeded dehiscent fruit as e.g. of a leguminous plant -13139321 20 n 01 loment 0 001 @ 13139055 n 0000 | seedpods that are constricted between the seeds and that break apart when mature into single-seeded segments -13139482 20 n 02 pyxidium 0 pyxis 0 001 @ 13134947 n 0000 | fruit of such plants as the plantain; a capsule whose upper part falls off when the seeds are released -13139647 20 n 01 husk 0 006 @ 05238036 n 0000 + 00181258 v 0101 ~ 13139837 n 0000 ~ 13139918 n 0000 ~ 13140049 n 0000 ~ 13154841 n 0000 | outer membranous covering of some fruits or seeds -13139837 20 n 01 cornhusk 0 001 @ 13139647 n 0000 | the husk of an ear of corn -13139918 20 n 01 hull 1 003 @ 13139647 n 0000 + 00180076 v 0101 ~ 11683556 n 0000 | dry outer covering of a fruit or seed or nut -13140049 20 n 03 pod 1 cod 0 seedcase 0 004 @ 13139647 n 0000 + 00095870 v 0101 + 00198057 v 0101 ~ 13140242 n 0000 | the vessel that contains the seeds of a plant (not the seeds themselves) -13140242 20 n 02 pea_pod 0 peasecod 0 002 @ 13140049 n 0000 #p 12560282 n 0000 | husk of a pea; edible in some garden peas -13140367 20 n 02 accessory_fruit 0 pseudocarp 0 001 @ 13134947 n 0000 | fruit containing much fleshy tissue besides that of the ripened ovary; as apple or strawberry -13140535 20 n 02 Rhamnales 0 order_Rhamnales 0 004 @ 11534677 n 0000 #m 11665781 n 0000 %m 13140699 n 0000 %m 13144303 n 0000 | an order of dicotyledonous plants -13140699 20 n 03 Rhamnaceae 0 family_Rhamnaceae 0 buckthorn_family 0 007 @ 11562747 n 0000 #m 13140535 n 0000 %m 13140993 n 0000 %m 13142695 n 0000 %m 13143097 n 0000 %m 13143626 n 0000 %m 13143930 n 0000 | trees and shrubs usually thorny bearing drupaceous fruit many having medicinal value -13140993 20 n 02 Rhamnus 0 genus_Rhamnus 0 003 @ 11567411 n 0000 #m 13140699 n 0000 %m 13141141 n 0000 | type genus of the Rhamnaceae: buckthorns -13141141 20 n 01 buckthorn 2 008 @ 13112664 n 0000 #m 13140993 n 0000 %p 13141415 n 0000 ~ 13141564 n 0000 ~ 13141972 n 0000 ~ 13142182 n 0000 ~ 13142380 n 0000 ~ 13142504 n 0000 | a shrub or shrubby tree of the genus Rhamnus; fruits are source of yellow dyes or pigments -13141415 20 n 02 buckthorn_berry 0 yellow_berry 0 002 @ 13134947 n 0000 #p 13141141 n 0000 | fruit of various buckthorns yielding dyes or pigments -13141564 20 n 06 cascara_buckthorn 0 bearberry 3 bearwood 0 chittamwood 2 chittimwood 2 Rhamnus_purshianus 0 002 @ 13141141 n 0000 %p 13141797 n 0000 | shrubby tree of the Pacific coast of the United States; yields cascara sagrada -13141797 20 n 04 cascara 0 cascara_sagrada 0 chittam_bark 0 chittem_bark 0 002 @ 13162297 n 0000 #p 13141564 n 0000 | dried bark of the cascara buckthorn used as a laxative -13141972 20 n 03 Carolina_buckthorn 0 indian_cherry 0 Rhamnus_carolinianus 0 001 @ 13141141 n 0000 | deciduous shrub of eastern and central United States having black berrylike fruit; golden-yellow in autumn -13142182 20 n 04 coffeeberry 0 California_buckthorn 0 California_coffee 0 Rhamnus_californicus 0 001 @ 13141141 n 0000 | evergreen shrub of western United States bearing small red or black fruits -13142380 20 n 03 alder_buckthorn 0 alder_dogwood 0 Rhamnus_frangula 0 001 @ 13141141 n 0000 | small tree common in Europe -13142504 20 n 03 redberry 0 red-berry 0 Rhamnus_croceus 0 001 @ 13141141 n 0000 | small spiny evergreen shrub of western United States and Mexico with minute flowers and bright red berries -13142695 20 n 02 Colubrina 0 genus_Colubrina 0 003 @ 11567411 n 0000 #m 13140699 n 0000 %m 13142907 n 0000 | mostly tropical American shrubs or small trees with small yellowish flowers and yellow or red fruits -13142907 20 n 01 nakedwood 1 002 @ 13104059 n 0000 #m 13142695 n 0000 | any of several small to medium-sized trees of Florida and West Indies with thin scaly bark and heavy dark heartwood -13143097 20 n 02 Ziziphus 0 genus_Ziziphus 0 004 @ 11567411 n 0000 #m 13140699 n 0000 %m 13143285 n 0000 %m 13143483 n 0000 | spiny chiefly tropical American and Asiatic shrubs: jujubes -13143285 20 n 05 jujube 0 jujube_bush 0 Christ's-thorn 1 Jerusalem_thorn 2 Ziziphus_jujuba 0 003 @ 13112664 n 0000 #m 13143097 n 0000 %p 07765999 n 0000 | spiny tree having dark red edible fruits -13143483 20 n 02 lotus_tree 0 Ziziphus_lotus 0 002 @ 13112664 n 0000 #m 13143097 n 0000 | shrubby deciduous tree of the Mediterranean region -13143626 20 n 02 Paliurus 0 genus_Paliurus 0 003 @ 11567411 n 0000 #m 13140699 n 0000 %m 13143758 n 0000 | thorny Eurasian shrubs -13143758 20 n 03 Christ's-thorn 2 Jerusalem_thorn 3 Paliurus_spina-christi 0 002 @ 13112664 n 0000 #m 13143626 n 0000 | thorny Eurasian shrub with dry woody winged fruit -13143930 20 n 02 Pomaderris 0 genus_Pomaderris 0 003 @ 11567411 n 0000 #m 13140699 n 0000 %m 13144084 n 0000 | a genus of Australasian shrubs and trees -13144084 20 n 03 hazel 2 hazel_tree 0 Pomaderris_apetala 0 003 @ 13104059 n 0000 #m 13143930 n 0000 %s 12289115 n 0000 | Australian tree grown especially for ornament and its fine-grained wood and bearing edible nuts -13144303 20 n 04 Vitaceae 0 family_Vitaceae 0 Vitidaceae 0 grapevine_family 0 004 @ 11562747 n 0000 #m 13140535 n 0000 %m 13144511 n 0000 %m 13148019 n 0000 | a family of vines belonging to order Rhamnales -13144511 20 n 02 Vitis 0 genus_Vitis 0 006 @ 11567411 n 0000 #m 13144303 n 0000 %m 13144794 n 0000 %m 13145040 n 0000 %m 13145250 n 0000 %m 13145444 n 0000 | the type genus of the family Vitaceae; woody vines with simple leaves and small flowers; includes a wide variety of grapes -13144794 20 n 03 grape 0 grapevine 0 grape_vine 0 006 @ 13100677 n 0000 #m 13144511 n 0000 %p 07758680 n 0000 ~ 13145040 n 0000 ~ 13145250 n 0000 ~ 13145444 n 0000 | any of numerous woody vines of genus Vitis bearing clusters of edible berries -13145040 20 n 02 fox_grape 0 Vitis_labrusca 0 003 @ 13144794 n 0000 #m 13144511 n 0000 %p 07758950 n 0000 | native grape of northeastern United States; origin of many cultivated varieties e.g. Concord grapes -13145250 20 n 02 muscadine 0 Vitis_rotundifolia 0 003 @ 13144794 n 0000 #m 13144511 n 0000 %p 07759424 n 0000 | native grape of southeastern United States; origin of many cultivated varieties -13145444 20 n 04 vinifera 0 vinifera_grape 0 common_grape_vine 0 Vitis_vinifera 0 016 @ 13144794 n 0000 #m 13144511 n 0000 %p 07759816 n 0000 ~ 13145924 n 0000 ~ 13146035 n 0000 ~ 13146583 n 0000 ~ 13146740 n 0000 ~ 13146928 n 0000 ~ 13147045 n 0000 ~ 13147153 n 0000 ~ 13147270 n 0000 ~ 13147386 n 0000 ~ 13147532 n 0000 ~ 13147689 n 0000 ~ 13147788 n 0000 ~ 13147918 n 0000 | common European grape cultivated in many varieties; chief source of Old World wine and table grapes -13145924 20 n 02 Chardonnay 0 chardonnay_grape 0 002 @ 13145444 n 0000 %s 07894799 n 0000 | white wine grape -13146035 20 n 02 Pinot 0 Pinot_grape 0 003 @ 13145444 n 0000 ~ 13146225 n 0000 ~ 13146403 n 0000 | any of several purple or white wine grapes used especially for Burgundies and champagnes -13146225 20 n 01 Pinot_noir 0 002 @ 13146035 n 0000 %s 07894965 n 0000 | red wine grape; grown especially in California for making wines resembling those from Burgundy, France -13146403 20 n 01 Pinot_blanc 0 002 @ 13146035 n 0000 %s 07895100 n 0000 | white wine grape; grown especially in California for making wines resembling those from Chablis, France -13146583 20 n 01 Sauvignon_grape 0 002 @ 13145444 n 0000 %s 07894298 n 0000 | small blue-black grape of Medoc region of France highly prized in winemaking -13146740 20 n 01 Cabernet_Sauvignon_grape 0 002 @ 13145444 n 0000 %s 07895710 n 0000 | superior red wine grapes grown especially in the Bordeaux region of France and northern California -13146928 20 n 01 Sauvignon_blanc 0 002 @ 13145444 n 0000 %s 07895962 n 0000 | white wine grape grown in California -13147045 20 n 01 Merlot 0 001 @ 13145444 n 0000 | black wine grape originally from the region of Bordeaux -13147153 20 n 01 Muscadet 0 001 @ 13145444 n 0000 | white grape grown especially in the valley the Loire in France -13147270 20 n 01 Riesling 0 002 @ 13145444 n 0000 %s 07897438 n 0000 | white grape grown in Europe and California -13147386 20 n 01 Zinfandel 0 002 @ 13145444 n 0000 %s 07898333 n 0000 | small black grape grown chiefly in California; transplanted from Europe -13147532 20 n 01 Chenin_blanc 0 002 @ 13145444 n 0000 %s 07899533 n 0000 | white grape grown especially in California and the lower Loire valley of France -13147689 20 n 01 malvasia 0 002 @ 13145444 n 0000 %s 07900734 n 0000 | used to make malmsey wine -13147788 20 n 02 muscat 0 muskat 0 001 @ 13145444 n 0000 | any of several cultivated grapevines that produce sweet white grapes -13147918 20 n 01 Verdicchio 0 001 @ 13145444 n 0000 | a variety of white wine grape grown in Italy -13148019 20 n 02 Parthenocissus 0 genus_Parthenocissus 0 004 @ 11567411 n 0000 #m 13144303 n 0000 %m 13148208 n 0000 %m 13148384 n 0000 | woody vines having disklike tips on the tendrils -13148208 20 n 03 Boston_ivy 0 Japanese_ivy 0 Parthenocissus_tricuspidata 0 002 @ 13100677 n 0000 #m 13148019 n 0000 | Asiatic vine with three-lobed leaves and purple berries -13148384 20 n 04 Virginia_creeper 0 American_ivy 0 woodbine 2 Parthenocissus_quinquefolia 0 002 @ 13100677 n 0000 #m 13148019 n 0000 | common North American vine with compound leaves and bluish-black berrylike fruit -13148602 20 n 02 Piperales 0 order_Piperales 0 005 @ 11534677 n 0000 #m 11665781 n 0000 %m 13148791 n 0000 %m 13151265 n 0000 %m 13151568 n 0000 | Piperaceae; Saururaceae; Chloranthaceae -13148791 20 n 03 Piperaceae 0 family_Piperaceae 0 pepper_family 0 004 @ 11562747 n 0000 #m 13148602 n 0000 %m 13149039 n 0000 %m 13150741 n 0000 | tropical woody vines and herbaceous plants having aromatic herbage and minute flowers in spikelets -13149039 20 n 02 Piper 0 genus_Piper 0 007 @ 11567411 n 0000 #m 13148791 n 0000 %m 13149296 n 0000 %m 13149506 n 0000 %m 13149829 n 0000 %m 13149970 n 0000 %m 13150178 n 0000 | type genus of the Piperaceae: large genus of chiefly climbing tropical shrubs -13149296 20 n 02 true_pepper 0 pepper_vine 0 006 @ 13100677 n 0000 #m 13149039 n 0000 ~ 13149506 n 0000 ~ 13149829 n 0000 ~ 13149970 n 0000 ~ 13150178 n 0000 | any of various shrubby vines of the genus Piper -13149506 20 n 06 pepper 1 common_pepper 0 black_pepper 0 white_pepper 0 Madagascar_pepper 0 Piper_nigrum 0 004 @ 13149296 n 0000 #m 13149039 n 0000 %p 07815588 n 0000 %s 15033189 n 0000 | climber having dark red berries (peppercorns) when fully ripe; southern India and Sri Lanka; naturalized in northern Burma and Assam -13149829 20 n 02 long_pepper 2 Piper_longum 0 002 @ 13149296 n 0000 #m 13149039 n 0000 | slender tropical climber of the eastern Himalayas -13149970 20 n 03 betel 0 betel_pepper 0 Piper_betel 0 002 @ 13149296 n 0000 #m 13149039 n 0000 | Asian pepper plant whose dried leaves are chewed with betel nut (seed of the betel palm) by southeast Asians -13150178 20 n 04 cubeb 0 cubeb_vine 0 Java_pepper 0 Piper_cubeba 0 003 @ 13149296 n 0000 #m 13149039 n 0000 %p 13150378 n 0000 | tropical southeast Asian shrubby vine bearing spicy berrylike fruits -13150378 20 n 01 cubeb 2 003 @ 13134947 n 0000 #p 13150178 n 0000 #s 03144756 n 0000 | spicy fruit of the cubeb vine; when dried and crushed is used medicinally or in perfumery and sometimes smoked in cigarettes -13150592 20 n 01 schizocarp 0 001 @ 13134947 n 0000 | a dry dehiscent fruit that at maturity splits into two or more parts each with a single seed -13150741 20 n 01 genus_Peperomia 0 003 @ 11567411 n 0000 #m 13148791 n 0000 %m 13150894 n 0000 | large genus of small tropical usually succulent herbs -13150894 20 n 01 peperomia 0 003 @ 12205694 n 0000 #m 13150741 n 0000 ~ 13151082 n 0000 | any of various plants of the genus Peperomia; grown primarily for their often succulent foliage -13151082 20 n 03 watermelon_begonia 0 Peperomia_argyreia 0 Peperomia_sandersii 0 001 @ 13150894 n 0000 | grown as a houseplant for its silvery striped fleshy foliage; South America -13151265 20 n 02 Chloranthaceae 0 family_Chloranthaceae 0 003 @ 11562747 n 0000 #m 13148602 n 0000 %m 13151439 n 0000 | small family of tropical herbs and shrubs and trees -13151439 20 n 02 Chloranthus 0 genus_Chloranthus 0 002 @ 11567411 n 0000 #m 13151265 n 0000 | type genus of the Chloranthaceae -13151568 20 n 03 Saururaceae 0 family_Saururaceae 0 lizard's-tail_family 0 005 @ 11562747 n 0000 #m 13148602 n 0000 %m 13151820 n 0000 %m 13152203 n 0000 %m 13152592 n 0000 | family of perennial aromatic herbs: genera Saururus, Anemopsis, Houttuynia -13151820 20 n 02 Saururus 0 genus_Saururus 0 003 @ 11567411 n 0000 #m 13151568 n 0000 %m 13151975 n 0000 | type genus of the Saururaceae: lizard's-tails -13151975 20 n 04 lizard's-tail 0 swamp_lily 0 water_dragon 2 Saururus_cernuus 0 002 @ 13122364 n 0000 #m 13151820 n 0000 | North American herbaceous perennial of wet places having slender curled racemes of small white flowers -13152203 20 n 02 Anemopsis 0 genus_Anemopsis 0 003 @ 11567411 n 0000 #m 13151568 n 0000 %m 13152339 n 0000 | one species: yerba mansa -13152339 20 n 02 yerba_mansa 0 Anemopsis_californica 0 002 @ 12205694 n 0000 #m 13152203 n 0000 | stoloniferous herb of southwestern United States and Mexico having a pungent rootstock and small spicate flowers with white bracts suggesting an anemone -13152592 20 n 02 Houttuynia 0 genus_Houttuynia 0 002 @ 11567411 n 0000 #m 13151568 n 0000 | one species; east Asian low-growing plant of wet places -13152742 20 n 03 leaf 0 leafage 0 foliage 0 037 @ 13087625 n 0000 + 00282790 v 0301 + 00095747 v 0201 + 01700414 a 0101 + 13154077 n 0101 + 00095747 v 0101 %p 08373244 n 0000 ~ 11686195 n 0000 ~ 11690893 n 0000 ~ 12024690 n 0000 ~ 12780168 n 0000 ~ 13091620 n 0000 %s 13096317 n 0000 ~ 13131883 n 0000 ~ 13153532 n 0000 ~ 13153633 n 0000 ~ 13154077 n 0000 ~ 13154494 n 0000 ~ 13154586 n 0000 ~ 13155759 n 0000 ~ 13156006 n 0000 ~ 13156083 n 0000 ~ 13156592 n 0000 ~ 13160485 n 0000 ~ 13160604 n 0000 ~ 13160695 n 0000 ~ 13160831 n 0000 ~ 13161056 n 0000 ~ 13161151 n 0000 ~ 13161254 n 0000 ~ 13161412 n 0000 %p 13161506 n 0000 ~ 13161639 n 0000 ~ 13161754 n 0000 ~ 13161904 n 0000 ~ 13161998 n 0000 %p 13862407 n 0000 | the main organ of photosynthesis and transpiration in higher plants -13153532 20 n 01 amplexicaul_leaf 0 001 @ 13152742 n 0000 | a leaf with its base clasping the stem -13153633 20 n 02 greenery 0 verdure 0 002 @ 13152742 n 0000 + 00521478 v 0101 | green foliage -13153729 20 n 03 hydathode 0 water_pore 0 water_stoma 0 001 @ 11680032 n 0000 | a pore that exudes water on the surface or margin of a leaf of higher plants -13153888 20 n 01 lenticel 0 001 @ 11680032 n 0000 | one of many raised pores on the stems of woody plants that allow the interchange of gas between the atmosphere and the interior tissue -13154077 20 n 01 leaflet 0 003 @ 13152742 n 0000 + 13152742 n 0101 ~ 13154388 n 0000 | part of a compound leaf -13154190 20 n 02 node 0 leaf_node 0 003 @ 13088096 n 0000 #p 13129165 n 0000 ;c 06066555 n 0000 | (botany) the small swelling that is the part of a plant stem from which one or more leaves emerge -13154388 20 n 02 pinna 0 pinnule 0 001 @ 13154077 n 0000 | division of a usually pinnately divided leaf -13154494 20 n 01 frond 0 001 @ 13152742 n 0000 | compound leaf of a fern or palm or cycad -13154586 20 n 01 pad 0 003 @ 13152742 n 0000 #p 13121544 n 0000 ~ 13154736 n 0000 | the large floating leaf of an aquatic plant (as the water lily) -13154736 20 n 01 lily_pad 0 002 @ 13154586 n 0000 #p 11714853 n 0000 | floating leaves of a water lily -13154841 20 n 01 bract 0 008 @ 13139647 n 0000 #p 11674332 n 0000 + 02669490 a 0101 ~ 11692108 n 0000 ~ 13155095 n 0000 ~ 13155175 n 0000 ~ 13155305 n 0000 ~ 13155611 n 0000 | a modified leaf or leaflike part just below and protecting an inflorescence -13155095 20 n 02 bracteole 0 bractlet 0 001 @ 13154841 n 0000 | a small bract -13155175 20 n 01 spathe 0 001 @ 13154841 n 0000 | a conspicuous bract surrounding or subtending a spadix or other inflorescence -13155305 20 n 01 involucre 0 001 @ 13154841 n 0000 | a highly conspicuous bract or bract pair or ring of bracts at the base of an inflorescence -13155451 20 n 02 lemma 0 flowering_glume 0 001 @ 13155611 n 0000 | the lower and stouter of the two glumes immediately enclosing the floret in most Gramineae -13155611 20 n 01 glume 0 002 @ 13154841 n 0000 ~ 13155451 n 0000 | small dry membranous bract found in inflorescences of Gramineae and Cyperaceae -13155759 20 n 02 scale 0 scale_leaf 0 002 @ 13152742 n 0000 ~ 13155899 n 0000 | a specialized leaf or bract that protects a bud or catkin -13155899 20 n 01 squamule 0 003 @ 13155759 n 0000 ;c 00017222 n 0000 ;c 12992868 n 0000 | a minute scale -13156006 20 n 01 fig_leaf 0 001 @ 13152742 n 0000 | a leaf from a fig tree -13156083 20 n 01 simple_leaf 0 024 @ 13152742 n 0000 ~ 13157595 n 0000 ~ 13157684 n 0000 ~ 13157780 n 0000 ~ 13157858 n 0000 ~ 13157971 n 0000 ~ 13158071 n 0000 ~ 13158167 n 0000 ~ 13158258 n 0000 ~ 13158386 n 0000 ~ 13158512 n 0000 ~ 13158605 n 0000 ~ 13158714 n 0000 ~ 13158815 n 0000 ~ 13158925 n 0000 ~ 13159044 n 0000 ~ 13159155 n 0000 ~ 13159263 n 0000 ~ 13159357 n 0000 ~ 13159457 n 0000 ~ 13159558 n 0000 ~ 13159691 n 0000 ~ 13159778 n 0000 ~ 13159890 n 0000 | a leaf that is not divided into parts -13156592 20 n 01 compound_leaf 0 006 @ 13152742 n 0000 ~ 13156799 n 0000 ~ 13156884 n 0000 ~ 13156986 n 0000 ~ 13157137 n 0000 ~ 13157481 n 0000 | a leaf composed of a number of leaflets on a common stalk -13156799 20 n 01 trifoliolate_leaf 0 001 @ 13156592 n 0000 | having three leaflets -13156884 20 n 01 quinquefoliate_leaf 0 001 @ 13156592 n 0000 | a compound leaf having five leaflets -13156986 20 n 01 palmate_leaf 0 002 @ 13156592 n 0000 ~ 13160365 n 0000 | a leaf resembling an open hand; having lobes radiating from a common point -13157137 20 n 01 pinnate_leaf 0 005 @ 13156592 n 0000 ~ 13157346 n 0000 ~ 13160015 n 0000 ~ 13160116 n 0000 ~ 13160254 n 0000 | a leaf resembling a feather; having the leaflets on each side of a common axis -13157346 20 n 03 bijugate_leaf 0 bijugous_leaf 0 twice-pinnate 0 001 @ 13157137 n 0000 | a pinnate leaf having two pairs of leaflets -13157481 20 n 01 decompound_leaf 0 001 @ 13156592 n 0000 | a leaf having divisions that are themselves compound -13157595 20 n 02 acerate_leaf 0 needle 0 001 @ 13156083 n 0000 | the leaf of a conifer -13157684 20 n 01 acuminate_leaf 0 001 @ 13156083 n 0000 | a leaf narrowing to a slender point -13157780 20 n 01 cordate_leaf 0 001 @ 13156083 n 0000 | a heart-shaped leaf -13157858 20 n 01 cuneate_leaf 0 001 @ 13156083 n 0000 | a wedge-shaped leaf having the acute angle at the base -13157971 20 n 01 deltoid_leaf 0 001 @ 13156083 n 0000 | a simple leaf shaped like a capital delta -13158071 20 n 01 elliptic_leaf 0 001 @ 13156083 n 0000 | a simple leaf shaped like an ellipse -13158167 20 n 01 ensiform_leaf 0 001 @ 13156083 n 0000 | a sword-shaped leaf; as of iris -13158258 20 n 01 hastate_leaf 0 001 @ 13156083 n 0000 | a leaf shaped like a spearhead with flaring pointed lobes at the base -13158386 20 n 01 lanceolate_leaf 0 001 @ 13156083 n 0000 | a leaf shaped like a lance head; tapering to a point at each end -13158512 20 n 02 linear_leaf 0 elongate_leaf 0 001 @ 13156083 n 0000 | a long slender leaf -13158605 20 n 01 lyrate_leaf 0 001 @ 13156083 n 0000 | a simple leaf having curvature suggestive of a lyre -13158714 20 n 01 obtuse_leaf 0 001 @ 13156083 n 0000 | a simple leaf having a rounded or blunt tip -13158815 20 n 01 oblanceolate_leaf 0 001 @ 13156083 n 0000 | a leaf having a rounded apex and tapering base -13158925 20 n 01 oblong_leaf 0 001 @ 13156083 n 0000 | a simple leaf that is rounded at each end with parallel sides -13159044 20 n 01 obovate_leaf 0 001 @ 13156083 n 0000 | an egg-shaped leaf with the narrower end at the base -13159155 20 n 01 ovate_leaf 0 001 @ 13156083 n 0000 | an egg-shaped leaf with the broader end at the base -13159263 20 n 01 orbiculate_leaf 0 001 @ 13156083 n 0000 | circular or nearly circular leaf -13159357 20 n 02 pandurate_leaf 0 panduriform_leaf 0 001 @ 13156083 n 0000 | a fiddle-shaped leaf -13159457 20 n 01 peltate_leaf 0 001 @ 13156083 n 0000 | a shield-shaped leaf; as a nasturtium leaf -13159558 20 n 01 perfoliate_leaf 0 001 @ 13156083 n 0000 | a leaf with the base united around--and apparently pierced by--the stem -13159691 20 n 01 reniform_leaf 0 001 @ 13156083 n 0000 | a simple kidney-shaped leaf -13159778 20 n 02 sagittate-leaf 0 sagittiform_leaf 0 001 @ 13156083 n 0000 | a leaf shaped like an arrow head -13159890 20 n 01 spatulate_leaf 0 001 @ 13156083 n 0000 | spatula-shaped leaf; having a broad rounded apex and narrow base -13160015 20 n 01 bipinnate_leaf 0 001 @ 13157137 n 0000 | a leaf having pinnate leaflets; as ferns -13160116 20 n 02 even-pinnate_leaf 0 abruptly-pinnate_leaf 0 001 @ 13157137 n 0000 | a pinnate leaf with a pair of leaflets at the apex -13160254 20 n 01 odd-pinnate_leaf 0 001 @ 13157137 n 0000 | a pinnate leaf with a single leaflet at the apex -13160365 20 n 01 pedate_leaf 0 001 @ 13156986 n 0000 | a leaf having the radiating lobes each deeply cleft or divided -13160485 20 n 01 entire_leaf 0 001 @ 13152742 n 0000 | a leaf having a smooth margin without notches or indentations -13160604 20 n 01 crenate_leaf 0 001 @ 13152742 n 0000 | a leaf having a scalloped margin -13160695 20 n 01 serrate_leaf 0 001 @ 13152742 n 0000 | a leaf having a margin notched like a saw with teeth pointing toward the apex -13160831 20 n 01 dentate_leaf 0 002 @ 13152742 n 0000 ~ 13160938 n 0000 | a leaf having a toothed margin -13160938 20 n 01 denticulate_leaf 0 001 @ 13160831 n 0000 | a leaf having a finely toothed margin; minutely dentate -13161056 20 n 01 emarginate_leaf 0 001 @ 13152742 n 0000 | a leaf having a notch at the apex -13161151 20 n 01 erose_leaf 0 001 @ 13152742 n 0000 | a leaf having a jagged margin as though gnawed -13161254 20 n 01 runcinate_leaf 0 001 @ 13152742 n 0000 | a leaf having incised margins with the lobes or teeth curved toward the base; as a dandelion leaf -13161412 20 n 01 lobed_leaf 0 001 @ 13152742 n 0000 | a leaf having deeply indented margins -13161506 20 n 01 lobe 0 003 @ 13086908 n 0000 #p 13152742 n 0000 ;c 06066555 n 0000 | (botany) a part into which a leaf is divided -13161639 20 n 01 parallel-veined_leaf 0 001 @ 13152742 n 0000 | a leaf whose veins run in parallel from the stem -13161754 20 n 01 parted_leaf 0 001 @ 13152742 n 0000 | a leaf having margins incised almost to the base so as to create distinct divisions or lobes -13161904 20 n 01 prickly-edged_leaf 0 001 @ 13152742 n 0000 | a leaf having prickly margins -13161998 20 n 01 rosette 0 001 @ 13152742 n 0000 | a cluster of leaves growing in crowded circles from a common center or crown (usually at or close to the ground) -13162164 20 n 01 ligule 0 002 @ 13086908 n 0000 ;c 06066555 n 0000 | (botany) any appendage to a plant that is shaped like a strap -13162297 20 n 01 bark 0 022 @ 09257949 n 0000 #p 13165815 n 0000 #p 13163250 n 0000 #p 13125117 n 0000 + 02239607 a 0101 + 01263904 v 0101 + 01263784 v 0101 ~ 11705052 n 0000 ~ 11705387 n 0000 ~ 11705776 n 0000 ~ 11710008 n 0000 ~ 12265740 n 0000 ~ 12347380 n 0000 ~ 12372520 n 0000 ~ 12664710 n 0000 ~ 12923257 n 0000 ~ 13141797 n 0000 ~ 13162815 n 0000 ~ 13162945 n 0000 ~ 13163093 n 0000 ~ 14823227 n 0000 ~ 14823547 n 0000 | tough protective covering of the woody stems and roots of trees and other woody plants -13162815 20 n 01 winter's_bark 2 002 @ 13162297 n 0000 #p 11739978 n 0000 | aromatic bark having tonic and stimulant properties -13162945 20 n 04 tapa 0 tapa_bark 0 tappa 0 tappa_bark 0 001 @ 13162297 n 0000 | the thin fibrous bark of the paper mulberry and Pipturus albidus -13163093 20 n 02 angostura_bark 0 angostura 0 001 @ 13162297 n 0000 | the bitter bark of a South American tree; used in medicines and liqueurs and bitters -13163250 20 n 01 branch 0 006 @ 13129165 n 0000 + 00613068 a 0101 %p 13162297 n 0000 ~ 13163553 n 0000 ~ 13163803 n 0000 ~ 13163991 n 0000 | a division of a stem, or secondary stem arising from the main stem of a plant -13163471 20 n 01 culm 0 001 @ 13129165 n 0000 | stem of plants of the Gramineae -13163553 20 n 01 deadwood 0 001 @ 13163250 n 0000 | a branch or a part of a tree that is dead -13163649 20 n 02 haulm 0 halm 0 001 @ 13129165 n 0000 | stems of beans and peas and potatoes and grasses collectively as used for thatching and bedding -13163803 20 n 02 limb 0 tree_branch 0 004 @ 13163250 n 0000 #p 13104059 n 0000 ~ 13165646 n 0000 ~ 13165727 n 0000 | any of the main branches arising from the trunk or a bough of a tree -13163991 20 n 03 branchlet 0 twig 0 sprig 0 006 @ 13163250 n 0000 + 00989957 a 0201 + 00329654 v 0201 ~ 13090018 n 0000 ~ 13164285 n 0000 ~ 13164403 n 0000 | a small branch or division of a branch (especially a terminal division); usually applied to branches of the current or preceding year -13164285 20 n 01 wand 0 001 @ 13163991 n 0000 | a thin supple twig or rod; "stems bearing slender wands of flowers" -13164403 20 n 02 withe 0 withy 0 002 @ 13163991 n 0000 ~ 13164501 n 0000 | strong flexible twig -13164501 20 n 01 osier 2 001 @ 13164403 n 0000 | flexible twig of a willow tree -13164583 20 n 01 sprout 0 005 @ 13087625 n 0000 + 00095377 v 0101 + 00357332 v 0107 ~ 13164763 n 0000 ~ 13165086 n 0000 | any new growth of a plant such as a new branch or a bud -13164763 20 n 01 shoot 0 004 @ 13164583 n 0000 + 00357332 v 0101 ~ 13164881 n 0000 ~ 13164970 n 0000 | a new branch -13164881 20 n 01 sucker 0 001 @ 13164763 n 0000 | a shoot arising from a plant's roots -13164970 20 n 01 tiller 0 002 @ 13164763 n 0000 + 00095595 v 0102 | a shoot that sprouts from the base of a grass -13165086 20 n 01 bud 0 005 @ 13164583 n 0000 + 00357998 v 0101 ~ 13165286 n 0000 ~ 13165409 n 0000 ~ 13165552 n 0000 | a swelling on a plant stem consisting of overlapping immature leaves or petals -13165286 20 n 01 leaf_bud 0 002 @ 13165086 n 0000 %p 08373380 n 0000 | a bud from which leaves (but not flowers) develop -13165409 20 n 01 flower_bud 0 003 @ 13165086 n 0000 %p 07947069 n 0000 ~ 12339831 n 0000 | a bud from which only a flower or flowers develop -13165552 20 n 01 mixed_bud 0 001 @ 13165086 n 0000 | a bud yielding both leaves and flowers -13165646 20 n 01 stick 0 001 @ 13163803 n 0000 | a small thin branch of a tree -13165727 20 n 01 bough 0 001 @ 13163803 n 0000 | any of the larger branches of a tree -13165815 20 n 03 trunk 0 tree_trunk 0 bole 0 003 @ 13129165 n 0000 #p 13104059 n 0000 %p 13162297 n 0000 | the main stem of a tree; usually covered with bark; the bole is usually the part that is commercially useful for lumber -13166044 20 n 01 burl 0 003 @ 13088096 n 0000 #p 13104059 n 0000 %s 13166191 n 0000 | a large rounded outgrowth on the trunk or branch of a tree -13166191 20 n 01 burl 2 002 @ 15098161 n 0000 #s 13166044 n 0000 | the wood cut from a tree burl or outgrowth; often used decoratively in veneer -13166338 20 n 01 fern_family 0 037 @ 08107499 n 0000 #m 11544769 n 0000 ~ 12951465 n 0000 ~ 12952852 n 0000 ~ 12954978 n 0000 ~ 12957298 n 0000 ~ 12958772 n 0000 ~ 12959226 n 0000 ~ 12959967 n 0000 ~ 13170060 n 0000 ~ 13171447 n 0000 ~ 13172107 n 0000 ~ 13179216 n 0000 ~ 13179410 n 0000 ~ 13179972 n 0000 ~ 13184492 n 0000 ~ 13187031 n 0000 ~ 13187604 n 0000 ~ 13188973 n 0000 ~ 13190218 n 0000 ~ 13192025 n 0000 ~ 13202749 n 0000 ~ 13203251 n 0000 ~ 13203551 n 0000 ~ 13203842 n 0000 ~ 13205482 n 0000 ~ 13214813 n 0000 ~ 13216475 n 0000 ~ 13217624 n 0000 ~ 13218114 n 0000 ~ 13219067 n 0000 ~ 13222035 n 0000 ~ 13222477 n 0000 ~ 13224256 n 0000 ~ 13225955 n 0000 ~ 13227009 n 0000 ~ 13227235 n 0000 | families of ferns and fern allies -13167078 20 n 01 fern_genus 0 115 @ 08108972 n 0000 #m 11544769 n 0000 ~ 11545214 n 0000 ~ 12951668 n 0000 ~ 12952022 n 0000 ~ 12953079 n 0000 ~ 12954185 n 0000 ~ 12954634 n 0000 ~ 12955191 n 0000 ~ 12955639 n 0000 ~ 12956029 n 0000 ~ 12956791 n 0000 ~ 12957467 n 0000 ~ 12958140 n 0000 ~ 12958470 n 0000 ~ 12958921 n 0000 ~ 12959371 n 0000 ~ 12960211 n 0000 ~ 12960729 n 0000 ~ 12961689 n 0000 ~ 13170286 n 0000 ~ 13170498 n 0000 ~ 13170661 n 0000 ~ 13171041 n 0000 ~ 13171649 n 0000 ~ 13172725 n 0000 ~ 13174206 n 0000 ~ 13174515 n 0000 ~ 13175324 n 0000 ~ 13175484 n 0000 ~ 13175847 n 0000 ~ 13176201 n 0000 ~ 13176523 n 0000 ~ 13176873 n 0000 ~ 13177354 n 0000 ~ 13178107 n 0000 ~ 13178500 n 0000 ~ 13178883 n 0000 ~ 13179648 n 0000 ~ 13180304 n 0000 ~ 13181616 n 0000 ~ 13183251 n 0000 ~ 13183669 n 0000 ~ 13183874 n 0000 ~ 13184164 n 0000 ~ 13184873 n 0000 ~ 13185436 n 0000 ~ 13185820 n 0000 ~ 13185998 n 0000 ~ 13186200 n 0000 ~ 13187167 n 0000 ~ 13187826 n 0000 ~ 13189222 n 0000 ~ 13189656 n 0000 ~ 13190469 n 0000 ~ 13190917 n 0000 ~ 13191318 n 0000 ~ 13191770 n 0000 ~ 13192898 n 0000 ~ 13194328 n 0000 ~ 13195151 n 0000 ~ 13195547 n 0000 ~ 13196545 n 0000 ~ 13196942 n 0000 ~ 13197085 n 0000 ~ 13197670 n 0000 ~ 13197800 n 0000 ~ 13198354 n 0000 ~ 13198728 n 0000 ~ 13199244 n 0000 ~ 13199445 n 0000 ~ 13200806 n 0000 ~ 13201239 n 0000 ~ 13201725 n 0000 ~ 13202933 n 0000 ~ 13203115 n 0000 ~ 13203405 n 0000 ~ 13203708 n 0000 ~ 13204102 n 0000 ~ 13204482 n 0000 ~ 13204646 n 0000 ~ 13206001 n 0000 ~ 13206438 n 0000 ~ 13206584 n 0000 ~ 13208138 n 0000 ~ 13208468 n 0000 ~ 13209647 n 0000 ~ 13210006 n 0000 ~ 13210827 n 0000 ~ 13211179 n 0000 ~ 13211305 n 0000 ~ 13211516 n 0000 ~ 13212751 n 0000 ~ 13213768 n 0000 ~ 13215063 n 0000 ~ 13215462 n 0000 ~ 13215799 n 0000 ~ 13216673 n 0000 ~ 13217763 n 0000 ~ 13218281 n 0000 ~ 13218504 n 0000 ~ 13219258 n 0000 ~ 13222669 n 0000 ~ 13224454 n 0000 ~ 13226135 n 0000 ~ 13227557 n 0000 ~ 13228194 n 0000 ~ 13228357 n 0000 ~ 13228692 n 0000 ~ 13228867 n 0000 ~ 13229018 n 0000 ~ 13229227 n 0000 ~ 13229358 n 0000 ~ 13229747 n 0000 ~ 13230421 n 0000 | genera of ferns and fern allies -13169219 20 n 04 Filicopsida 0 class_Filicopsida 0 Filicinae 0 class_Filicinae 0 019 @ 08103777 n 0000 #m 11544769 n 0000 %m 11545714 n 0000 %m 12954978 n 0000 %m 12957298 n 0000 %m 12958772 n 0000 %m 12959802 n 0000 %m 13169674 n 0000 %m 13179216 n 0000 %m 13187031 n 0000 %m 13187604 n 0000 %m 13188973 n 0000 %m 13192025 n 0000 %m 13202749 n 0000 %m 13203251 n 0000 %m 13203551 n 0000 %m 13214645 n 0000 %m 13227009 n 0000 %m 13227235 n 0000 | ferns -13169674 20 n 04 Filicales 0 order_Filicales 0 Polypodiales 0 order_Polypodiales 0 014 @ 11534677 n 0000 #m 13169219 n 0000 %m 12951465 n 0000 %m 12952852 n 0000 %m 12959226 n 0000 %m 13170060 n 0000 %m 13171447 n 0000 %m 13172107 n 0000 %m 13179410 n 0000 %m 13179972 n 0000 %m 13184492 n 0000 %m 13190218 n 0000 %m 13203842 n 0000 %m 13205482 n 0000 | true (leptosporangiate) ferns -13170060 20 n 02 Gleicheniaceae 0 family_Gleicheniaceae 0 006 @ 13166338 n 0000 #m 13169674 n 0000 %m 13170286 n 0000 %m 13170498 n 0000 %m 13170661 n 0000 %m 13171041 n 0000 | a family of ferns belonging to order Filicales -13170286 20 n 02 Gleichenia 0 genus_Gleichenia 0 002 @ 13167078 n 0000 #m 13170060 n 0000 | type genus of Gleicheniaceae: leptosporangiate ferns with sessile sporangia; South Africa to Malaysia and New Zealand -13170498 20 n 02 Dicranopteris 0 genus_Dicranopteris 0 002 @ 13167078 n 0000 #m 13170060 n 0000 | terrestrial ferns of forest margin or open ground; pantropical -13170661 20 n 02 Diplopterygium 0 genus_Diplopterygium 0 003 @ 13167078 n 0000 #m 13170060 n 0000 %m 13170840 n 0000 | scandent thicket-forming ferns of Asia to western Pacific -13170840 20 n 02 giant_scrambling_fern 0 Diplopterygium_longissimum 0 002 @ 11545714 n 0000 #m 13170661 n 0000 | large scrambling fern forming large patches to 18 feet high; Pacific region and China -13171041 20 n 02 Sticherus 0 genus_Sticherus 0 003 @ 13167078 n 0000 #m 13170060 n 0000 %m 13171210 n 0000 | umbrella ferns; warm regions of Australia and New Zealand -13171210 20 n 04 umbrella_fern 0 fan_fern 0 Sticherus_flabellatus 0 Gleichenia_flabellata 0 002 @ 11545714 n 0000 #m 13171041 n 0000 | large Australasian fern with fanlike repeatedly forked fronds; sometimes placed in genus Gleichenia -13171447 20 n 02 Parkeriaceae 0 family_Parkeriaceae 0 003 @ 13166338 n 0000 #m 13169674 n 0000 %m 13171649 n 0000 | coextensive with the genus Ceratopteris; sometimes included in family Polypodiaceae -13171649 20 n 02 Ceratopteris 0 genus_Ceratopteris 0 004 @ 13167078 n 0000 #m 13171447 n 0000 %m 13171797 n 0000 %m 13171975 n 0000 | water ferns -13171797 20 n 03 floating_fern 1 water_sprite 0 Ceratopteris_pteridioides 0 002 @ 12957076 n 0000 #m 13171649 n 0000 | aquatic fern of tropical America often used in aquariums -13171975 20 n 02 floating_fern 2 Ceratopteris_thalictroides 0 002 @ 12957076 n 0000 #m 13171649 n 0000 | pantropical aquatic fern -13172107 20 n 02 Polypodiaceae 0 family_Polypodiaceae 0 017 @ 13166338 n 0000 #m 13169674 n 0000 %m 13172725 n 0000 %m 13174206 n 0000 %m 13174515 n 0000 %m 13175324 n 0000 %m 13175484 n 0000 %m 13175847 n 0000 %m 13176201 n 0000 %m 13176523 n 0000 %m 13176873 n 0000 %m 13177354 n 0000 %m 13178107 n 0000 %m 13178500 n 0000 %m 13178883 n 0000 %m 13183251 n 0000 %m 13184164 n 0000 | ferns: a large family that in some classification systems has been subdivided into several families (including Aspleniaceae and Blechnaceae and Davalliaceae and Dennstaedtiaceae and Dryopteridaceae and Oleandraceae and Pteridaceae) -13172725 20 n 02 Polypodium 0 genus_Polypodium 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13172923 n 0000 | a genus of ferns belonging to the family Polypodiaceae and having rounded naked sori -13172923 20 n 01 polypody 0 007 @ 11545714 n 0000 #m 13172725 n 0000 ~ 13173132 n 0000 ~ 13173259 n 0000 ~ 13173488 n 0000 ~ 13173697 n 0000 ~ 13173882 n 0000 | any of numerous ferns of the genus Polypodium -13173132 20 n 02 licorice_fern 0 Polypodium_glycyrrhiza 0 001 @ 13172923 n 0000 | fern having rootstock of a sweetish flavor -13173259 20 n 04 grey_polypody 0 gray_polypody 0 resurrection_fern 0 Polypodium_polypodioides 0 001 @ 13172923 n 0000 | fern growing on rocks or tree trunks and having fronds greyish and scurfy below; Americas and South Africa -13173488 20 n 04 leatherleaf 1 leathery_polypody 0 coast_polypody 0 Polypodium_scouleri 0 001 @ 13172923 n 0000 | stiff leathery-leaved fern of western North America having ovate fronds parted to the midrib -13173697 20 n 04 rock_polypody 0 rock_brake 1 American_wall_fern 0 Polypodium_virgianum 0 001 @ 13172923 n 0000 | chiefly lithophytic or epiphytic fern of North America and east Asia -13173882 20 n 07 common_polypody 0 adder's_fern 0 wall_fern 0 golden_maidenhair 0 golden_polypody 2 sweet_fern 2 Polypodium_vulgare 0 001 @ 13172923 n 0000 | mat-forming lithophytic or terrestrial fern with creeping rootstocks and large pinnatifid fronds found throughout North America and Europe and Africa and east Asia -13174206 20 n 02 Aglaomorpha 0 genus_Aglaomorpha 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13174354 n 0000 | epiphytic ferns of tropical Asia -13174354 20 n 02 bear's-paw_fern 0 Aglaomorpha_meyeniana 0 002 @ 11545714 n 0000 #m 13174206 n 0000 | epiphytic fern with large fronds; Taiwan and Philippines -13174515 20 n 02 Campyloneurum 0 genus_Campyloneurum 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13174670 n 0000 | epiphytic ferns of tropical America -13174670 20 n 01 strap_fern 0 004 @ 11545714 n 0000 #m 13174515 n 0000 ~ 13174823 n 0000 ~ 13175074 n 0000 | fern with long narrow strap-shaped leaves -13174823 20 n 03 Florida_strap_fern 0 cow-tongue_fern 0 hart's-tongue_fern 3 001 @ 13174670 n 0000 | common epiphytic or sometimes terrestrial fern having pale yellow-green strap-shaped leaves; Florida to West Indies and Mexico and south to Uruguay -13175074 20 n 03 Central_American_strap_fern 0 narrow-leaved_strap_fern 0 Campyloneurum_augustifolium 0 001 @ 13174670 n 0000 | fern with shorter and narrower leaves than Florida strap fern; Florida to West Indies and Mexico and south to Argentina -13175324 20 n 02 Drymoglossum 0 genus_Drymoglossum 0 002 @ 13167078 n 0000 #m 13172107 n 0000 | epiphytic ferns of Madagascar to tropical Asia and New Guinea -13175484 20 n 02 Drynaria 0 genus_Drynaria 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13175682 n 0000 | large robust epiphytic ferns of tropical forest and scrub; Africa and Asia and Australia -13175682 20 n 02 basket_fern 2 Drynaria_rigidula 0 002 @ 11545714 n 0000 #m 13175484 n 0000 | giant epiphytic or lithophytic fern; Asia to Polynesia and Australia -13175847 20 n 01 genus_Lecanopteris 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13176000 n 0000 | epiphytic ferns of southeastern Asia to New Guinea -13176000 20 n 01 lecanopteris 0 002 @ 11545714 n 0000 #m 13175847 n 0000 | any of several bizarre ferns of the genus Lecanopteris having swollen hollow rhizomes that provide homes for symbiotic ants -13176201 20 n 02 Microgramma 0 genus_Microgramma 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13176363 n 0000 | epiphytic ferns of tropical America and Africa -13176363 20 n 02 snake_polypody 0 Microgramma-piloselloides 0 002 @ 11545714 n 0000 #m 13176201 n 0000 | epiphytic ferns with long rhizomes; tropical America -13176523 20 n 02 Microsorium 0 genus_Microsorium 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13176714 n 0000 | tropical usually epiphytic ferns; Africa to Asia and Polynesia to Australia -13176714 20 n 02 climbing_bird's_nest_fern 0 Microsorium_punctatum 0 002 @ 11545714 n 0000 #m 13176523 n 0000 | tropical Africa to Australasia and Polynesia -13176873 20 n 02 Phlebodium 0 genus_Phlebodium 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13177048 n 0000 | chiefly epiphytic tropical ferns with free veins bearing sori -13177048 20 n 05 golden_polypody 0 serpent_fern 0 rabbit's-foot_fern 0 Phlebodium_aureum 0 Polypodium_aureum 0 002 @ 11545714 n 0000 #m 13176873 n 0000 | tropical American fern with brown scaly rhizomes cultivated for its large deeply lobed deep bluish-green fronds; sometimes placed in genus Polypodium -13177354 20 n 02 Platycerium 0 genus_Platycerium 0 004 @ 13167078 n 0000 #m 13172107 n 0000 %m 13177529 n 0000 %m 13177884 n 0000 | often epiphytic tropical Old World ferns -13177529 20 n 01 staghorn_fern 0 004 @ 11545714 n 0000 #m 13177354 n 0000 ~ 13177768 n 0000 ~ 13177884 n 0000 | any of various tropical ferns of the genus Platycerium having large flat lobed fronds often resembling the antlers of a stag -13177768 20 n 02 South_American_staghorn 0 Platycerium_andinum 0 001 @ 13177529 n 0000 | fern of Peru and Bolivia -13177884 20 n 04 common_staghorn_fern 0 elkhorn_fern 0 Platycerium_bifurcatum 0 Platycerium_alcicorne 0 002 @ 13177529 n 0000 #m 13177354 n 0000 | commonly cultivated fern of Australia and southeastern Asia and Polynesia -13178107 20 n 02 Pyrrosia 0 genus_Pyrrosia 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13178284 n 0000 | epiphytic or lithophytic or terrestrial ferns of tropical Old World -13178284 20 n 04 felt_fern 0 tongue_fern 0 Pyrrosia_lingua 0 Cyclophorus_lingua 0 002 @ 11545714 n 0000 #m 13178107 n 0000 | east Asian fern having fronds shaped like tongues; sometimes placed in genus Cyclophorus -13178500 20 n 02 Solanopteris 0 genus_Solanopteris 0 003 @ 13167078 n 0000 #m 13172107 n 0000 %m 13178707 n 0000 | tropical American epiphytic ferns having rhizomes with tubers and roots as well as scales -13178707 20 n 02 potato_fern 1 Solanopteris_bifrons 0 002 @ 11545714 n 0000 #m 13178500 n 0000 | small epiphytic fern of South America with tuberous swellings along rhizomes -13178883 20 n 02 Cyclophorus 0 genus_Cyclophorus 0 002 @ 13167078 n 0000 #m 13172107 n 0000 | tropical Old World ferns having closely crowded circular sori and no indusia -13179056 20 n 01 myrmecophyte 0 002 @ 00017222 n 0000 + 03025967 a 0101 | plant that affords shelter or food to ants that live in symbiotic relations with it -13179216 20 n 02 Adiantaceae 0 family_Adiantaceae 0 002 @ 13166338 n 0000 #m 13169219 n 0000 | used in some classification systems for some genera of the family Polypodiaceae (or Pteridaceae) -13179410 20 n 02 Vittariaceae 0 family_Vittariaceae 0 003 @ 13166338 n 0000 #m 13169674 n 0000 %m 13179648 n 0000 | one of a number of families into which Polypodiaceae has been subdivided in some classification systems: genus Vittaria -13179648 20 n 02 Vittaria 0 genus_Vittaria 0 003 @ 13167078 n 0000 #m 13179410 n 0000 %m 13179804 n 0000 | tropical epiphytic ferns with straplike fronds -13179804 20 n 03 grass_fern 0 ribbon_fern 2 Vittaria_lineata 0 002 @ 11545714 n 0000 #m 13179648 n 0000 | epiphytic fern found in lowland forests of tropical America -13179972 20 n 02 Aspleniaceae 0 family_Aspleniaceae 0 006 @ 13166338 n 0000 #m 13169674 n 0000 %m 13180304 n 0000 %m 13181616 n 0000 %m 13183669 n 0000 %m 13183874 n 0000 | one of a number of families into which Polypodiaceae has been subdivided in some classification systems; includes genera Asplenium, Pleurosorus, Schaffneria -13180304 20 n 02 Asplenium 0 genus_Asplenium 0 006 @ 13167078 n 0000 #m 13179972 n 0000 %m 13180534 n 0000 %m 13181055 n 0000 %m 13183056 n 0000 %m 13183489 n 0000 | in some classification systems placed in family Polypodiaceae -13180534 20 n 01 spleenwort 0 013 @ 11545714 n 0000 #m 13180304 n 0000 ~ 13180875 n 0000 ~ 13181244 n 0000 ~ 13181406 n 0000 ~ 13181811 n 0000 ~ 13181988 n 0000 ~ 13182164 n 0000 ~ 13182338 n 0000 ~ 13182462 n 0000 ~ 13182662 n 0000 ~ 13182799 n 0000 ~ 13182937 n 0000 | any of various chiefly rock-inhabiting ferns of the genus Asplenium -13180875 20 n 02 black_spleenwort 0 Asplenium_adiantum-nigrum 0 001 @ 13180534 n 0000 | spleenwort of Europe and Africa and Asia having pinnate fronds and yielding an astringent -13181055 20 n 02 bird's_nest_fern 1 Asplenium_nidus 0 002 @ 11545714 n 0000 #m 13180304 n 0000 | tropical Old World or Australian epiphytic fern frequently forming tufts in tree crotches -13181244 20 n 03 ebony_spleenwort 0 Scott's_Spleenwort 0 Asplenium_platyneuron 0 001 @ 13180534 n 0000 | common North American fern with polished black stripes -13181406 20 n 03 black-stem_spleenwort 0 black-stemmed_spleenwort 0 little_ebony_spleenwort 0 001 @ 13180534 n 0000 | fern of tropical America: from southern United States to West Indies and Mexico to Brazil -13181616 20 n 02 Camptosorus 0 genus_Camptosorus 0 002 @ 13167078 n 0000 #m 13179972 n 0000 | classification used in some especially former systems for plants usually placed in genus Asplenium -13181811 20 n 04 walking_fern 0 walking_leaf 0 Asplenium_rhizophyllum 0 Camptosorus_rhizophyllus 0 001 @ 13180534 n 0000 | ferns having lanceolate fronds that root at the tip -13181988 20 n 02 maidenhair_spleenwort 0 Asplenium_trichomanes 0 001 @ 13180534 n 0000 | small rock-inhabiting fern of northern temperate zone and Hawaii with pinnate fronds -13182164 20 n 02 green_spleenwort 0 Asplenium_viride 0 001 @ 13180534 n 0000 | a small fern with slim green fronds; widely distributed in cool parts of northern hemisphere -13182338 20 n 02 mountain_spleenwort 0 Asplenium_montanum 0 001 @ 13180534 n 0000 | a spleenwort of eastern North America -13182462 20 n 03 wall_rue 0 wall_rue_spleenwort 0 Asplenium_ruta-muraria 0 001 @ 13180534 n 0000 | small delicate spleenwort found on a steep slope (as a wall or cliff) of Eurasia and North America -13182662 20 n 02 Bradley's_spleenwort 0 Asplenium_bradleyi 0 001 @ 13180534 n 0000 | a spleenwort of eastern to southern United States -13182799 20 n 02 lobed_spleenwort 0 Asplenium_pinnatifidum 0 001 @ 13180534 n 0000 | a spleenwort of eastern and southern United States -13182937 20 n 02 lanceolate_spleenwort 0 Asplenium_billotii 0 001 @ 13180534 n 0000 | a spleenwort of western Europe -13183056 20 n 04 hart's-tongue 0 hart's-tongue_fern 1 Asplenium_scolopendrium 0 Phyllitis_scolopendrium 0 002 @ 11545714 n 0000 #m 13180304 n 0000 | Eurasian fern with simple lanceolate fronds -13183251 20 n 02 Ceterach 0 genus_Ceterach 0 002 @ 13167078 n 0000 #m 13172107 n 0000 | small genus of Old World ferns; superseded in some classification systems which place plants of this genus in e.g. genera Asplenium and Pleurosorus -13183489 20 n 04 scale_fern 0 scaly_fern 0 Asplenium_ceterach 0 Ceterach_officinarum 0 002 @ 11545714 n 0000 #m 13180304 n 0000 | small European fern with chaffy leathery fronds -13183669 20 n 02 Pleurosorus 0 genus_Pleurosorus 0 002 @ 13167078 n 0000 #m 13179972 n 0000 | small genus comprising terrestrial ferns; found in Chile and Spain and Morocco and Australia and New Zealand -13183874 20 n 02 Schaffneria 0 genus_Schaffneria 0 003 @ 13167078 n 0000 #m 13179972 n 0000 %m 13184001 n 0000 | one species -13184001 20 n 03 Schaffneria_nigripes 0 Asplenium_nigripes 0 Scolopendrium_nigripes 0 002 @ 11545714 n 0000 #m 13183874 n 0000 | a fern of the genus Schaffneria -13184164 20 n 03 Phyllitis 0 genus_Phyllitis 0 genus_Scolopendrium 0 002 @ 13167078 n 0000 #m 13172107 n 0000 | a genus of ferns belonging to the family Polypodiaceae (in some classification systems included in genus Asplenium) -13184394 20 n 01 scolopendrium 0 001 @ 11545714 n 0000 | a fern thought to resemble a millipede -13184492 20 n 02 Blechnaceae 0 family_Blechnaceae 0 007 @ 13166338 n 0000 #m 13169674 n 0000 %m 13184873 n 0000 %m 13185436 n 0000 %m 13185820 n 0000 %m 13185998 n 0000 %m 13186200 n 0000 | one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; includes genera Blechnum, Doodia, Sadleria, Stenochlaena, and Woodwardia -13184873 20 n 02 Blechnum 0 genus_Blechnum 0 003 @ 13167078 n 0000 #m 13184492 n 0000 %m 13185134 n 0000 | in some classification systems placed in family Polypodiaceae; terrestrial ferns of cosmopolitan distribution mainly in southern hemisphere: hard ferns -13185134 20 n 01 hard_fern 0 003 @ 11545714 n 0000 #m 13184873 n 0000 ~ 13185269 n 0000 | any of several ferns of the genus Blechnum -13185269 20 n 02 deer_fern 0 Blechnum_spicant 0 001 @ 13185134 n 0000 | fern with erect fronds of Europe and western North America; often cultivated for deer browse -13185436 20 n 02 genus_Doodia 0 Doodia 1 003 @ 13167078 n 0000 #m 13184492 n 0000 %m 13185658 n 0000 | in some classification systems placed in family Polypodiaceae; small terrestrial colony-forming ferns of Australasia -13185658 20 n 02 doodia 0 rasp_fern 0 002 @ 11545714 n 0000 #m 13185436 n 0000 | any fern of the genus Doodia having pinnate fronds with sharply dentate pinnae -13185820 20 n 02 Sadleria 0 genus_Sadleria 0 002 @ 13167078 n 0000 #m 13184492 n 0000 | low tree ferns with large fronds; in rain forests and on lava flows of Hawaiian Islands -13185998 20 n 02 Stenochlaena 0 genus_Stenochlaena 0 002 @ 13167078 n 0000 #m 13184492 n 0000 | large tropical ferns; some epiphytic climbers and some terrestrial bog ferns; Africa; Asia; Australasia -13186200 20 n 02 Woodwardia 0 genus_Woodwardia 0 003 @ 13167078 n 0000 #m 13184492 n 0000 %m 13186388 n 0000 | in some classification systems placed in family Polypodiaceae: chain ferns -13186388 20 n 01 chain_fern 0 003 @ 11545714 n 0000 #m 13186200 n 0000 ~ 13186546 n 0000 | a fern of the genus Woodwardia having the sori in chainlike rows -13186546 20 n 02 Virginia_chain_fern 0 Woodwardia_virginica 0 001 @ 13186388 n 0000 | North American fern -13186654 20 n 01 tree_fern 0 006 @ 11545714 n 0000 ~ 13187367 n 0000 ~ 13190747 n 0000 ~ 13191148 n 0000 ~ 13191884 n 0000 ~ 13215586 n 0000 | any of numerous usually tropical ferns having a thick woody stem or caudex and a crown of large fronds; found especially in Australia and New Zealand; chiefly of the families Cyatheaceae and Marattiaceae but some from Polypodiaceae -13187031 20 n 02 Cyatheaceae 0 family_Cyatheaceae 0 003 @ 13166338 n 0000 #m 13169219 n 0000 %m 13187167 n 0000 | tropical tree ferns -13187167 20 n 02 Cyathea 0 genus_Cyathea 0 003 @ 13167078 n 0000 #m 13187031 n 0000 %m 13187367 n 0000 | type genus of the Cyatheaceae: tree ferns of the tropical rain forest to temperate woodlands -13187367 20 n 04 silver_tree_fern 0 sago_fern 0 black_tree_fern 0 Cyathea_medullaris 0 002 @ 13186654 n 0000 #m 13187167 n 0000 | a showy tree fern of New Zealand and Australia having a crown of pinnated fronds with whitish undersides -13187604 20 n 02 Davalliaceae 0 family_Davalliaceae 0 003 @ 13166338 n 0000 #m 13169219 n 0000 %m 13187826 n 0000 | one of a number of families into which Polypodiaceae has been subdivided in some classification systems -13187826 20 n 01 genus_Davallia 0 007 @ 13167078 n 0000 #m 13187604 n 0000 %m 13188096 n 0000 %m 13188268 n 0000 %m 13188462 n 0000 %m 13188619 n 0000 %m 13188767 n 0000 | Old World tropical fern; in some classification systems placed directly in family Polypodiaceae -13188096 20 n 01 davallia 0 004 @ 11545714 n 0000 #m 13187826 n 0000 ~ 13188268 n 0000 ~ 13188767 n 0000 | any fern of the genus Davallia; having scaly creeping rhizomes -13188268 20 n 01 hare's-foot_fern 0 004 @ 13188096 n 0000 #m 13187826 n 0000 ~ 13188462 n 0000 ~ 13188619 n 0000 | either of two ferns of the genus Davallia having a soft grey hairy rootstock -13188462 20 n 02 Canary_Island_hare's_foot_fern 0 Davallia_canariensis 0 002 @ 13188268 n 0000 #m 13187826 n 0000 | fern of the Canary Islands and Madeira -13188619 20 n 02 Australian_hare's_foot 0 Davallia_pyxidata 0 002 @ 13188268 n 0000 #m 13187826 n 0000 | a hare's-foot fern of the genus Davallia -13188767 20 n 05 squirrel's-foot_fern 0 ball_fern 0 Davalia_bullata 0 Davalia_bullata_mariesii 0 Davallia_Mariesii 0 002 @ 13188096 n 0000 #m 13187826 n 0000 | feathery fern of tropical Asia and Malaysia -13188973 20 n 02 Dennstaedtiaceae 0 family_Dennstaedtiaceae 0 004 @ 13166338 n 0000 #m 13169219 n 0000 %m 13189222 n 0000 %m 13189656 n 0000 | one of a number of families into which Polypodiaceae has been subdivided in some classification systems -13189222 20 n 02 Dennstaedtia 0 genus_Dennstaedtia 0 003 @ 13167078 n 0000 #m 13188973 n 0000 %m 13189428 n 0000 | chiefly terrestrial ferns; in some classification systems placed in family Polypodiaceae -13189428 20 n 05 hay-scented 0 hay-scented_fern 0 scented_fern 1 boulder_fern 0 Dennstaedtia_punctilobula 0 002 @ 11545714 n 0000 #m 13189222 n 0000 | fern of eastern North America with pale green fronds and an aroma like hay -13189656 20 n 02 Pteridium 0 genus_Pteridium 0 004 @ 13167078 n 0000 #m 13188973 n 0000 %m 13189844 n 0000 %m 13190060 n 0000 | a genus of ferns belonging to the family Dennstaedtiaceae -13189844 20 n 04 bracken 1 pasture_brake 0 brake 1 Pteridium_aquilinum 0 003 @ 11545714 n 0000 #m 13189656 n 0000 + 00209253 a 0301 | large coarse fern often several feet high; essentially weed ferns; cosmopolitan -13190060 20 n 02 bracken 2 Pteridium_esculentum 0 002 @ 11545714 n 0000 #m 13189656 n 0000 | fern of southeastern Asia; not hardy in cold temperate regions -13190218 20 n 02 Dicksoniaceae 0 family_Dicksoniaceae 0 006 @ 13166338 n 0000 #m 13169674 n 0000 %m 13190469 n 0000 %m 13190917 n 0000 %m 13191318 n 0000 %m 13191770 n 0000 | tree ferns: genera Dicksonia, Cibotium, Culcita, and Thyrsopteris elegans -13190469 20 n 02 Dicksonia 0 genus_Dicksonia 0 003 @ 13167078 n 0000 #m 13190218 n 0000 %m 13190747 n 0000 | tree ferns of temperate Australasia having bipinnatifid or tripinnatifid fronds and usually marginal sori; in some classification systems placed in family Cyatheaceae -13190747 20 n 02 soft_tree_fern 0 Dicksonia_antarctica 0 002 @ 13186654 n 0000 #m 13190469 n 0000 | of Australia and Tasmania; often cultivated; hardy in cool climates -13190917 20 n 02 Cibotium 0 genus_Cibotium 0 003 @ 13167078 n 0000 #m 13190218 n 0000 %m 13191148 n 0000 | in some classification systems placed in family Cyatheaceae: ornamental tree ferns with coarse gracefully drooping fronds -13191148 20 n 02 Scythian_lamb 0 Cibotium_barometz 0 002 @ 13186654 n 0000 #m 13190917 n 0000 | Asiatic tree fern having dense matted hairs sometimes used as a styptic -13191318 20 n 02 Culcita 0 genus_Culcita 0 003 @ 13167078 n 0000 #m 13190218 n 0000 %m 13191620 n 0000 | includes some plants usually placed in e.g. genus Dicksonia: terrestrial ferns resembling bracken; tropical America; Malaysia to Australia and Polynesia; southwestern Europe and Atlantic islands -13191620 20 n 02 false_bracken 0 Culcita_dubia 0 002 @ 11545714 n 0000 #m 13191318 n 0000 | resembles Pteridium aquilinum; of Queensland, Australia -13191770 20 n 01 genus_Thyrsopteris 0 003 @ 13167078 n 0000 #m 13190218 n 0000 %m 13191884 n 0000 | one species -13191884 20 n 02 thyrsopteris 0 Thyrsopteris_elegans 0 002 @ 13186654 n 0000 #m 13191770 n 0000 | a terrestrial tree fern of South America -13192025 20 n 04 Dryopteridaceae 0 family_Dryopteridaceae 0 Athyriaceae 0 family_Athyriaceae 0 019 @ 13166338 n 0000 #m 13169219 n 0000 %m 13192625 n 0000 %m 13192898 n 0000 %m 13194328 n 0000 %m 13195151 n 0000 %m 13195547 n 0000 %m 13196545 n 0000 %m 13196942 n 0000 %m 13197085 n 0000 %m 13197670 n 0000 %m 13197800 n 0000 %m 13198354 n 0000 %m 13198728 n 0000 %m 13199244 n 0000 %m 13199445 n 0000 %m 13200806 n 0000 %m 13201239 n 0000 %m 13201725 n 0000 | alternative names for one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems -13192625 20 n 02 shield_fern 0 buckler_fern 0 005 @ 11545714 n 0000 #m 13192025 n 0000 ~ 13193143 n 0000 ~ 13193466 n 0000 ~ 13200651 n 0000 | any of various ferns of the genera Dryopteris or Polystichum or Lastreopsis having somewhat shield-shaped coverings on the sori -13192898 20 n 02 Dryopteris 0 genus_Dryopteris 0 004 @ 13167078 n 0000 #m 13192025 n 0000 %m 13193143 n 0000 %m 13193642 n 0000 | large widespread genus of medium-sized terrestrial ferns; in some classification systems placed in Polypodiaceae -13193143 20 n 02 broad_buckler-fern 0 Dryopteris_dilatata 0 002 @ 13192625 n 0000 #m 13192898 n 0000 | European shield fern -13193269 20 n 04 fragrant_cliff_fern 0 fragrant_shield_fern 0 fragrant_wood_fern 0 Dryopteris_fragrans 0 001 @ 13193642 n 0000 | fern or northern Eurasia and North America having fragrant fronds -13193466 20 n 04 Goldie's_fern 0 Goldie's_shield_fern 0 goldie's_wood_fern 0 Dryopteris_goldiana 0 001 @ 13192625 n 0000 | North American fern with a blackish lustrous stipe -13193642 20 n 03 wood_fern 0 wood-fern 0 woodfern 0 006 @ 11545714 n 0000 #m 13192898 n 0000 ~ 13193269 n 0000 ~ 13193856 n 0000 ~ 13194036 n 0000 ~ 13194212 n 0000 | any of various ferns of the genus Dryopteris -13193856 20 n 02 male_fern 0 Dryopteris_filix-mas 0 001 @ 13193642 n 0000 | fern of North America and Europe whose rhizomes and stalks yield an oleoresin used to expel tapeworms -13194036 20 n 04 marginal_wood_fern 0 evergreen_wood_fern 1 leatherleaf_wood_fern 0 Dryopteris_marginalis 0 001 @ 13193642 n 0000 | North American fern with evergreen fronds -13194212 20 n 02 mountain_male_fern 0 Dryopteris_oreades 0 001 @ 13193642 n 0000 | a fern of the genus Dryopteris -13194328 20 n 02 Athyrium 0 genus_Athyrium 0 004 @ 13167078 n 0000 #m 13192025 n 0000 %m 13194572 n 0000 %m 13194918 n 0000 | temperate and tropical lady ferns; in some classifications placed in family Polypodiaceae or in the genus Asplenium -13194572 20 n 02 lady_fern 0 Athyrium_filix-femina 0 003 @ 11545714 n 0000 #m 13194328 n 0000 ~ 13194758 n 0000 | most widely grown fern of the genus Athyrium for its delicate foliage -13194758 20 n 02 Alpine_lady_fern 0 Athyrium_distentifolium 0 001 @ 13194572 n 0000 | a lady fern with deeply cut leaf segments; found in the Rocky Mountains -13194918 20 n 05 silvery_spleenwort 1 glade_fern 0 narrow-leaved_spleenwort 0 Athyrium_pycnocarpon 0 Diplazium_pycnocarpon 0 002 @ 11545714 n 0000 #m 13194328 n 0000 | North American fern with narrow fronds on yellowish leafstalks -13195151 20 n 02 Cyrtomium 0 genus_Cyrtomium 0 002 @ 13167078 n 0000 #m 13192025 n 0000 | small genus of tropical Asiatic greenhouse ferns; in some classifications placed in Polypodiaceae -13195341 20 n 03 holly_fern 2 Cyrtomium_aculeatum 0 Polystichum_aculeatum 0 001 @ 11545714 n 0000 | tropical Old World fern having glossy fronds suggestive of holly; sometimes placed in genus Polystichum -13195547 20 n 02 Cystopteris 0 genus_Cystopteris 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13195761 n 0000 | chiefly small perennial rock ferns: bladder ferns; in some classifications placed in Polypodiaceae -13195761 20 n 01 bladder_fern 0 005 @ 11545714 n 0000 #m 13195547 n 0000 ~ 13196003 n 0000 ~ 13196234 n 0000 ~ 13196369 n 0000 | any fern of the genus Cystopteris characterized by a hooded indusium or bladderlike membrane covering the sori -13196003 20 n 04 brittle_bladder_fern 0 brittle_fern 0 fragile_fern 0 Cystopteris_fragilis 0 001 @ 13195761 n 0000 | delicate fern widely distributed in North America and European having thin pinnatifid fronds with brittle stems -13196234 20 n 02 mountain_bladder_fern 0 Cystopteris_montana 0 001 @ 13195761 n 0000 | fern of rocky mountainous areas of hemisphere -13196369 20 n 04 bulblet_fern 0 bulblet_bladder_fern 0 berry_fern 0 Cystopteris_bulbifera 0 001 @ 13195761 n 0000 | North American fern often bearing bulbils on the leaflets -13196545 20 n 02 Deparia 0 genus_Deparia 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13196738 n 0000 | classification used for 5 species of terrestrial ferns usually placed in other genera -13196738 20 n 03 silvery_spleenwort 2 Deparia_acrostichoides 0 Athyrium_thelypteroides 0 002 @ 11545714 n 0000 #m 13196545 n 0000 | fern with elongate silvery outgrowths enclosing the developing spores -13196942 20 n 02 Diacalpa 0 genus_Diacalpa 0 002 @ 13167078 n 0000 #m 13192025 n 0000 | one species: delicate fern of foothills of Himalayas -13197085 20 n 02 Gymnocarpium 0 genus_Gymnocarpium 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13197274 n 0000 | oak ferns: in some classification systems included in genus Thelypteris -13197274 20 n 03 oak_fern 0 Gymnocarpium_dryopteris 0 Thelypteris_dryopteris 0 002 @ 11545714 n 0000 #m 13197085 n 0000 | bright blue-green fern widely distributed especially in damp acid woodlands of temperate northern hemisphere -13197507 20 n 03 limestone_fern 0 northern_oak_fern 0 Gymnocarpium_robertianum 0 001 @ 11545714 n 0000 | yellow-green fern of rocky areas of northern hemisphere -13197670 20 n 02 Lastreopsis 0 genus_Lastreopsis 0 002 @ 13167078 n 0000 #m 13192025 n 0000 | tropical terrestrial shield ferns -13197800 20 n 04 Matteuccia 0 genus_Matteuccia 0 Pteretis 0 genus_Pteretis 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13198054 n 0000 | small genus sometimes included in genus Onoclea; in some classifications both genera are placed in Polypodiaceae -13198054 20 n 06 ostrich_fern 0 shuttlecock_fern 0 fiddlehead 2 Matteuccia_struthiopteris 0 Pteretis_struthiopteris 0 Onoclea_struthiopteris 0 002 @ 11545714 n 0000 #m 13197800 n 0000 | tall fern of northern temperate regions having graceful arched fronds and sporophylls resembling ostrich plumes -13198354 20 n 02 Olfersia 0 genus_Olfersia 0 002 @ 13167078 n 0000 #m 13192025 n 0000 | genus of fern having only one species -13198482 20 n 05 hart's-tongue 2 hart's-tongue_fern 2 Olfersia_cervina 0 Polybotrya_cervina 0 Polybotria_cervina 0 001 @ 11545714 n 0000 | tropical American terrestrial fern with leathery lanceolate fronds; sometimes placed in genus Polybotrya -13198728 20 n 02 Onoclea 0 genus_Onoclea 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13198914 n 0000 | one species: sensitive fern; in some classifications included in Polypodiaceae -13198914 20 n 03 sensitive_fern 0 bead_fern 0 Onoclea_sensibilis 0 002 @ 11545714 n 0000 #m 13198728 n 0000 | beautiful spreading fern of eastern North America and eastern Asia naturalized in western Europe; pinnately divided fronds show a slight tendency to fold when touched; pinnules enclose groups of sori in beadlike lobes -13199244 20 n 04 Polybotrya 0 genus_Polybotrya 0 Polybotria 0 genus_Polybotria 0 002 @ 13167078 n 0000 #m 13192025 n 0000 | tropical American ferns; usually terrestrial when young but scandent later -13199445 20 n 02 Polystichum 0 genus_Polystichum 0 005 @ 13167078 n 0000 #m 13192025 n 0000 %m 13199717 n 0000 %m 13199970 n 0000 %m 13200651 n 0000 | small to medium-sized terrestrial ferns especially holly ferns; in some classification systems placed in Polypodiaceae -13199717 20 n 05 Christmas_fern 0 canker_brake 0 dagger_fern 0 evergreen_wood_fern 2 Polystichum_acrostichoides 0 002 @ 11545714 n 0000 #m 13199445 n 0000 | North American evergreen fern having pinnate leaves and dense clusters of lance-shaped fronds -13199970 20 n 01 holly_fern 0 005 @ 11545714 n 0000 #m 13199445 n 0000 ~ 13200193 n 0000 ~ 13200411 n 0000 ~ 13200542 n 0000 | any of various ferns of the genus Polystichum having fronds with texture and gloss like holly -13200193 20 n 03 Braun's_holly_fern 0 prickly_shield_fern 0 Polystichum_braunii 0 001 @ 13199970 n 0000 | North American fern whose more or less evergreen leathery fronds are covered with pale brown chafflike scales -13200411 20 n 02 northern_holly_fern 0 Polystichum_lonchitis 0 001 @ 13199970 n 0000 | evergreen European fern widely cultivated -13200542 20 n 02 western_holly_fern 0 Polystichum_scopulinum 0 001 @ 13199970 n 0000 | North American fern -13200651 20 n 02 soft_shield_fern 0 Polystichum_setiferum 0 002 @ 13192625 n 0000 #m 13199445 n 0000 | European shield fern cultivated in many varieties -13200806 20 n 02 Rumohra 0 genus_Rumohra 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13200986 n 0000 | leatherleaf ferns: in some classifications included in genus Polystichum -13200986 20 n 05 leather_fern 1 leatherleaf_fern 0 ten-day_fern 0 Rumohra_adiantiformis 0 Polystichum_adiantiformis 0 002 @ 11545714 n 0000 #m 13200806 n 0000 | widely distributed fern of tropical southern hemisphere having leathery pinnatifid fronds -13201239 20 n 02 Tectaria 0 genus_Tectaria 0 004 @ 13167078 n 0000 #m 13192025 n 0000 %m 13201423 n 0000 %m 13201566 n 0000 | terrestrial or epilithic ferns of tropical rain forests -13201423 20 n 02 button_fern 1 Tectaria_cicutaria 0 002 @ 11545714 n 0000 #m 13201239 n 0000 | Jamaican fern having round buttonlike bulbils -13201566 20 n 02 Indian_button_fern 0 Tectaria_macrodonta 0 002 @ 11545714 n 0000 #m 13201239 n 0000 | fern of tropical Asia having round buttonlike bulbils -13201725 20 n 01 genus_Woodsia 0 003 @ 13167078 n 0000 #m 13192025 n 0000 %m 13201969 n 0000 | genus of small to medium-sized usually rock-inhabiting ferns of temperate and cold regions; in some classification systems placed in Polypodiaceae -13201969 20 n 01 woodsia 0 005 @ 11545714 n 0000 #m 13201725 n 0000 ~ 13202125 n 0000 ~ 13202355 n 0000 ~ 13202602 n 0000 | any fern of the genus Woodsia -13202125 20 n 04 rusty_woodsia 0 fragrant_woodsia 0 oblong_woodsia 0 Woodsia_ilvensis 0 001 @ 13201969 n 0000 | a common rock-inhabiting fern of northern temperate regions having rusty-brown stipes and lanceolate pinnate fronds -13202355 20 n 04 Alpine_woodsia 0 northern_woodsia 0 flower-cup_fern 0 Woodsia_alpina 0 001 @ 13201969 n 0000 | slender fern of northern North America with shining chestnut-colored stipes and bipinnate fronds with usually distinct marginal sori -13202602 20 n 02 smooth_woodsia 0 Woodsia_glabella 0 001 @ 13201969 n 0000 | rock-inhabiting fern of Arctic and subarctic Europe to eastern Asia -13202749 20 n 02 Lomariopsidaceae 0 family_Lomariopsidaceae 0 004 @ 13166338 n 0000 #m 13169219 n 0000 %m 13202933 n 0000 %m 13203115 n 0000 | small family of usually scandent ferns -13202933 20 n 02 Bolbitis 0 genus_Bolbitis 0 002 @ 13167078 n 0000 #m 13202749 n 0000 | terrestrial or less than normally scandent ferns of tropical regions of northern hemisphere -13203115 20 n 02 Lomogramma 0 genus_Lomogramma 0 002 @ 13167078 n 0000 #m 13202749 n 0000 | large scandent ferns of southeastern Asia -13203251 20 n 02 Lophosoriaceae 0 family_Lophosoriaceae 0 003 @ 13166338 n 0000 #m 13169219 n 0000 %m 13203405 n 0000 | very small family of tree ferns -13203405 20 n 02 Lophosoria 0 genus_Lophosoria 0 002 @ 13167078 n 0000 #m 13203251 n 0000 | one species: tree fern of Central and South America -13203551 20 n 02 Loxomataceae 0 family_Loxomataceae 0 003 @ 13166338 n 0000 #m 13169219 n 0000 %m 13203708 n 0000 | very small family of New Zealand ferns -13203708 20 n 02 Loxoma 0 genus_Loxoma 0 002 @ 13167078 n 0000 #m 13203551 n 0000 | one species of terrestrial ferns of New Zealand -13203842 20 n 02 Oleandraceae 0 family_Oleandraceae 0 005 @ 13166338 n 0000 #m 13169674 n 0000 %m 13204102 n 0000 %m 13204482 n 0000 %m 13204646 n 0000 | one of a number of families into which Polypodiaceae has been subdivided in some classification systems -13204102 20 n 02 Oleandra 0 genus_Oleandra 0 003 @ 13167078 n 0000 #m 13203842 n 0000 %m 13204276 n 0000 | or family Polypodiaceae: tropical epiphytic or terrestrial ferns -13204276 20 n 03 oleander_fern 0 Oleandra_neriiformis 0 Oleandra_mollis 0 002 @ 11545714 n 0000 #m 13204102 n 0000 | tropical fern having leathery fronds resembling oleander; found from Asia to Polynesia -13204482 20 n 02 Arthropteris 0 genus_Arthropteris 0 002 @ 13167078 n 0000 #m 13203842 n 0000 | tropical and subtropical Old World epiphytic or lithophytic ferns -13204646 20 n 02 Nephrolepis 0 genus_Nephrolepis 0 003 @ 13167078 n 0000 #m 13203842 n 0000 %m 13204826 n 0000 | small genus of tropical ferns; sometimes placed in Polypodiaceae -13204826 20 n 01 sword_fern 0 004 @ 11545714 n 0000 #m 13204646 n 0000 ~ 13205058 n 0000 ~ 13205249 n 0000 | any of several tropical ferns having more or less sword-shaped fronds including one from which the Boston fern developed -13205058 20 n 03 Boston_fern 0 Nephrolepis_exaltata 0 Nephrolepis_exaltata_bostoniensis 0 001 @ 13204826 n 0000 | a sword fern with arching or drooping pinnate fronds; a popular houseplant -13205249 20 n 03 basket_fern 1 toothed_sword_fern 0 Nephrolepis_pectinata 0 001 @ 13204826 n 0000 | tropical American fern cultivated for its finely divided greyish-green foliage; West Indies and southern Mexico to Peru and Brazil -13205482 20 n 02 Pteridaceae 0 family_Pteridaceae 0 015 @ 13166338 n 0000 #m 13169674 n 0000 %m 13206001 n 0000 %m 13206438 n 0000 %m 13206584 n 0000 %m 13208138 n 0000 %m 13208468 n 0000 %m 13209647 n 0000 %m 13210006 n 0000 %m 13210827 n 0000 %m 13211179 n 0000 %m 13211305 n 0000 %m 13211516 n 0000 %m 13212751 n 0000 %m 13213768 n 0000 | one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems; Pteridaceae is itself in turn sometimes further subdivided -13206001 20 n 02 Acrostichum 0 genus_Acrostichum 0 003 @ 13167078 n 0000 #m 13205482 n 0000 %m 13206178 n 0000 | in some classification systems placed in family Polypodiaceae -13206178 20 n 03 golden_fern 1 leather_fern 2 Acrostichum_aureum 0 003 @ 11545714 n 0000 #m 13206001 n 0000 ;r 09044862 n 0000 | stout tropical swamp fern (especially tropical America) having large fronds with golden yellow sporangia covering the undersides -13206438 20 n 02 Actiniopteris 0 genus_Actiniopteris 0 002 @ 13167078 n 0000 #m 13205482 n 0000 | terrestrial ferns of tropical Asia and Africa -13206584 20 n 02 Adiantum 0 genus_Adiantum 0 003 @ 13167078 n 0000 #m 13205482 n 0000 %m 13206817 n 0000 | cosmopolitan genus of ferns: maidenhair ferns; in some classification systems placed in family Polypodiaceae or Adiantaceae -13206817 20 n 02 maidenhair 0 maidenhair_fern 0 006 @ 11545714 n 0000 #m 13206584 n 0000 ~ 13207094 n 0000 ~ 13207335 n 0000 ~ 13207572 n 0000 ~ 13207736 n 0000 | any of various small to large terrestrial ferns of the genus Adiantum having delicate palmately branched fronds -13207094 20 n 06 common_maidenhair 0 Venushair 0 Venus'-hair_fern 0 southern_maidenhair 0 Venus_maidenhair 0 Adiantum_capillus-veneris 0 001 @ 13206817 n 0000 | delicate maidenhair fern with slender shining black leaf stalks; cosmopolitan -13207335 20 n 03 American_maidenhair_fern 0 five-fingered_maidenhair_fern 0 Adiantum_pedatum 0 001 @ 13206817 n 0000 | hardy palmately branched North American fern with divergent recurved branches borne on lustrous dark reddish stipes -13207572 20 n 03 Bermuda_maidenhair 0 Bermuda_maidenhair_fern 0 Adiantum_bellum 0 001 @ 13206817 n 0000 | delicate endemic Bermudian fern with creeping rootstock -13207736 20 n 03 brittle_maidenhair 0 brittle_maidenhair_fern 0 Adiantum_tenerum 0 002 @ 13206817 n 0000 ~ 13207923 n 0000 | tropical American fern with broad pinnae; widely cultivated -13207923 20 n 05 Farley_maidenhair 0 Farley_maidenhair_fern 0 Barbados_maidenhair 0 glory_fern 0 Adiantum_tenerum_farleyense 0 001 @ 13207736 n 0000 | named for a country house in Barbados where it was discovered -13208138 20 n 02 Anogramma 0 genus_Anogramma 0 003 @ 13167078 n 0000 #m 13205482 n 0000 %m 13208302 n 0000 | a genus of ferns belonging to the family Pteridaceae -13208302 20 n 03 annual_fern 0 Jersey_fern 0 Anogramma_leptophylla 0 002 @ 11545714 n 0000 #m 13208138 n 0000 | small short-lived fern of Central and South America -13208468 20 n 02 Cheilanthes 0 genus_Cheilanthes 0 004 @ 13167078 n 0000 #m 13205482 n 0000 %m 13208705 n 0000 %m 13209129 n 0000 | small evergreen ferns: lipferns; in some classifications placed in family Polypodiaceae or Adiantaceae -13208705 20 n 02 lip_fern 0 lipfern 0 005 @ 11545714 n 0000 #m 13208468 n 0000 ~ 13208965 n 0000 ~ 13209270 n 0000 ~ 13209460 n 0000 | any of various terrestrial ferns of the genus Cheilanthes; cosmopolitan in arid and semiarid temperate or tropical regions -13208965 20 n 03 smooth_lip_fern 0 Alabama_lip_fern 0 Cheilanthes_alabamensis 0 001 @ 13208705 n 0000 | southeastern United States to northern Mexico and Jamaica -13209129 20 n 02 lace_fern 0 Cheilanthes_gracillima 0 002 @ 11545714 n 0000 #m 13208468 n 0000 | small tufted fern of northwestern America -13209270 20 n 03 wooly_lip_fern 0 hairy_lip_fern 0 Cheilanthes_lanosa 0 001 @ 13208705 n 0000 | small North American evergreen fern whose stipes and lower frond surfaces are densely wooly -13209460 20 n 02 southwestern_lip_fern 0 Cheilanthes_eatonii 0 001 @ 13208705 n 0000 | lip fern of Texas to Oklahoma and Colorado and Arizona and Mexico having tall erect tufted fronds -13209647 20 n 02 Coniogramme 0 genus_Coniogramme 0 003 @ 13167078 n 0000 #m 13205482 n 0000 %m 13209808 n 0000 | terrestrial ferns of Pacific islands and Asia -13209808 20 n 02 bamboo_fern 0 Coniogramme_japonica 0 002 @ 11545714 n 0000 #m 13209647 n 0000 | fast-growing sturdy Japanese fern; cultivated for their attractive broad dark-green pinnate fronds -13210006 20 n 02 Cryptogramma 0 genus_Cryptogramma 0 004 @ 13167078 n 0000 #m 13205482 n 0000 %m 13210205 n 0000 %m 13210350 n 0000 | sometimes placed in family Polypodiaceae or Cryptogrammataceae -13210205 20 n 01 rock_brake 2 004 @ 11545714 n 0000 #m 13210006 n 0000 ~ 13210350 n 0000 ~ 13210597 n 0000 | dwarf deciduous lithophytic ferns -13210350 20 n 03 American_rock_brake 0 American_parsley_fern 0 Cryptogramma_acrostichoides 0 002 @ 13210205 n 0000 #m 13210006 n 0000 | rock-inhabiting fern of northern North America growing in massive tufts and having fronds resembling parsley -13210597 20 n 03 European_parsley_fern 0 mountain_parsley_fern 0 Cryptogramma_crispa 0 001 @ 13210205 n 0000 | fern of Europe and Asia Minor having short slender rhizome and densely tufted bright green fronds resembling parsley -13210827 20 n 02 Doryopteris 0 genus_Doryopteris 0 003 @ 13167078 n 0000 #m 13205482 n 0000 %m 13211020 n 0000 | small to medium tropical tufted ferns; sometimes placed in family Adiantaceae -13211020 20 n 02 hand_fern 0 Doryopteris_pedata 0 002 @ 11545714 n 0000 #m 13210827 n 0000 | tropical American fern with coarsely lobed to palmatifid fronds -13211179 20 n 02 Jamesonia 0 genus_Jamesonia 0 002 @ 13167078 n 0000 #m 13205482 n 0000 | xerophytic ferns of South America -13211305 20 n 02 Onychium 0 genus_Onychium 0 002 @ 13167078 n 0000 #m 13205482 n 0000 | small terrestrial ferns of Old World tropics and subtropics: clawed ferns; sometimes placed in family Cryptogrammataceae -13211516 20 n 02 Pellaea 0 genus_Pellaea 0 005 @ 13167078 n 0000 #m 13205482 n 0000 %m 13211790 n 0000 %m 13212025 n 0000 %m 13212559 n 0000 | genus of chiefly small rock-loving ferns; in some classification systems it is placed in the family Polypodiaceae or Adiantaceae -13211790 20 n 03 cliff_brake 0 cliff-brake 0 rock_brake 3 005 @ 11545714 n 0000 #m 13211516 n 0000 ~ 13212025 n 0000 ~ 13212175 n 0000 ~ 13212379 n 0000 | any of several small lithophytic ferns of tropical and warm temperate regions -13212025 20 n 02 coffee_fern 0 Pellaea_andromedifolia 0 002 @ 13211790 n 0000 #m 13211516 n 0000 | evergreen fern of California and Baja California -13212175 20 n 02 purple_rock_brake 0 Pellaea_atropurpurea 0 001 @ 13211790 n 0000 | very short shallowly creeping North American fern usually growing on cliffs or walls and having dark glossy leaf axes -13212379 20 n 03 bird's-foot_fern 0 Pellaea_mucronata 0 Pellaea_ornithopus 0 001 @ 13211790 n 0000 | cliff brake of California and Baja California having purple-brown leafstalks -13212559 20 n 02 button_fern 2 Pellaea_rotundifolia 0 002 @ 11545714 n 0000 #m 13211516 n 0000 | fern of New Zealand and Australia having trailing fronds with dark green buttonlike leaflets -13212751 20 n 02 Pityrogramma 0 genus_Pityrogramma 0 006 @ 13167078 n 0000 #m 13205482 n 0000 %m 13213066 n 0000 %m 13213235 n 0000 %m 13213397 n 0000 %m 13213577 n 0000 | terrestrial tropical ferns having fronds with powdery yellowish or white undersides; sometimes placed in family Polypodiaceae or Adiantaceae -13213066 20 n 02 silver_fern 1 Pityrogramma_argentea 0 002 @ 11545714 n 0000 #m 13212751 n 0000 | fern of southern tropical Africa having fronds with white undersides -13213235 20 n 02 silver_fern 2 Pityrogramma_calomelanos 0 002 @ 11545714 n 0000 #m 13212751 n 0000 | tropical American fern having fronds with white undersides -13213397 20 n 02 golden_fern 2 Pityrogramma_calomelanos_aureoflava 0 002 @ 11545714 n 0000 #m 13212751 n 0000 | tropical American fern having fronds with light golden undersides -13213577 20 n 02 gold_fern 0 Pityrogramma_chrysophylla 0 002 @ 11545714 n 0000 #m 13212751 n 0000 | fern of West Indies and South America having fronds with bright golden-yellow undersides -13213768 20 n 02 Pteris 0 genus_Pteris 0 006 @ 13167078 n 0000 #m 13205482 n 0000 %m 13214031 n 0000 %m 13214217 n 0000 %m 13214340 n 0000 %m 13214485 n 0000 | large genus of terrestrial ferns of tropics and subtropics; sometimes placed in family Polypodiaceae -13214031 20 n 01 brake 2 002 @ 11545714 n 0000 #m 13213768 n 0000 | any of various ferns of the genus Pteris having pinnately compound leaves and including several popular houseplants -13214217 20 n 01 Pteris_cretica 0 002 @ 11545714 n 0000 #m 13213768 n 0000 | cultivated in many varieties as houseplants -13214340 20 n 03 spider_brake 0 spider_fern 1 Pteris_multifida 0 002 @ 11545714 n 0000 #m 13213768 n 0000 | Asiatic fern introduced in America -13214485 20 n 03 ribbon_fern 0 spider_fern 2 Pteris_serrulata 0 002 @ 11545714 n 0000 #m 13213768 n 0000 | fern of North Africa and Azores and Canary Islands -13214645 20 n 02 Marattiales 0 order_Marattiales 0 003 @ 11534677 n 0000 #m 13169219 n 0000 %m 13214813 n 0000 | lower ferns coextensive with the family Marattiaceae -13214813 20 n 02 Marattiaceae 0 family_Marattiaceae 0 005 @ 13166338 n 0000 #m 13214645 n 0000 %m 13215063 n 0000 %m 13215462 n 0000 %m 13215799 n 0000 | constituting the order Marattiales: chiefly tropical eusporangiate ferns with gigantic fronds -13215063 20 n 02 Marattia 0 genus_Marattia 0 003 @ 13167078 n 0000 #m 13214813 n 0000 %m 13215258 n 0000 | type genus of the Marattiaceae: ferns having the sporangia fused together in two rows -13215258 20 n 02 potato_fern 2 Marattia_salicina 0 002 @ 11545714 n 0000 #m 13215063 n 0000 | large Australasian evergreen fern with an edible rhizome sometimes used as a vegetable by indigenous people -13215462 20 n 01 genus_Angiopteris 0 003 @ 13167078 n 0000 #m 13214813 n 0000 %m 13215586 n 0000 | one species: tree fern -13215586 20 n 03 angiopteris 0 giant_fern 0 Angiopteris_evecta 0 002 @ 13186654 n 0000 #m 13215462 n 0000 | highly variable species of very large primitive ferns of the Pacific tropical areas with high rainfall -13215799 20 n 02 Danaea 0 genus_Danaea 0 002 @ 13167078 n 0000 #m 13214813 n 0000 | fairly small terrestrial ferns of tropical America -13215936 20 n 04 Psilopsida 0 class_Psilopsida 0 Psilotatae 0 class_Psilotatae 0 003 @ 08103777 n 0000 #m 11544769 n 0000 %m 13216238 n 0000 | whisk ferns; comprising the family Psilotaceae or Psilotatae: vascular plants with no roots, partial if any leaf differentiation, and rudimentary spore sacs -13216238 20 n 02 Psilotales 0 order_Psilotales 0 003 @ 11534677 n 0000 #m 13215936 n 0000 %m 13216475 n 0000 | lower vascular plants having dichotomously branched sporophyte divided into aerial shoot and rhizome and lacking true roots -13216475 20 n 02 Psilotaceae 0 family_Psilotaceae 0 003 @ 13166338 n 0000 #m 13216238 n 0000 %m 13216673 n 0000 | small family of lower ferns having nearly naked stems and minute scalelike leaves -13216673 20 n 02 Psilotum 0 genus_Psilotum 0 003 @ 13167078 n 0000 #m 13216475 n 0000 %m 13216812 n 0000 | type genus of the Psilotaceae -13216812 20 n 01 whisk_fern 0 003 @ 11547562 n 0000 #m 13216673 n 0000 ~ 13217005 n 0000 | chiefly tropical clump-forming plants of skeletal appearance resembling whisk brooms; lacking roots -13217005 20 n 02 skeleton_fork_fern 0 Psilotum_nudum 0 001 @ 13216812 n 0000 | pantropical epiphytic or terrestrial whisk fern with usually dull yellow branches and minute leaves; America; Japan; Australia -13217213 20 n 02 Psilophytales 0 order_Psilophytales 0 005 @ 11534677 n 0000 #m 11544769 n 0000 %m 13217494 n 0000 %m 13217624 n 0000 %m 13218114 n 0000 | Paleozoic simple dichotomously branched plants of Europe and eastern Canada including the oldest known vascular land plants -13217494 20 n 01 psilophyte 0 002 @ 13083586 n 0000 #m 13217213 n 0000 | any plant of the order Psilophytales: a savannah plant -13217624 20 n 02 Psilophytaceae 0 family_Psilophytaceae 0 003 @ 13166338 n 0000 #m 13217213 n 0000 %m 13217763 n 0000 | Paleozoic plants -13217763 20 n 01 genus_Psilophyton 0 003 @ 13167078 n 0000 #m 13217624 n 0000 %m 13217993 n 0000 | type genus of the Psilophytaceae: genus of small wiry herbaceous Paleozoic plants with underground rhizomes and apical sporangia -13217993 20 n 01 psilophyton 0 002 @ 13083586 n 0000 #m 13217763 n 0000 | any plant or fossil of the genus Psilophyton -13218114 20 n 02 Rhyniaceae 0 family_Rhyniaceae 0 004 @ 13166338 n 0000 #m 13217213 n 0000 %m 13218281 n 0000 %m 13218504 n 0000 | primitive plants of the Paleozoic -13218281 20 n 02 Rhynia 0 genus_Rhynia 0 002 @ 13167078 n 0000 #m 13218114 n 0000 | type genus of the Rhyniaceae; small leafless dichotomously branching fossil plants with terminal sporangia and smooth branching rhizomes -13218504 20 n 02 Horneophyton 0 genus_Horneophyton 0 002 @ 13167078 n 0000 #m 13218114 n 0000 | Devonian fossil plant considered one of the earliest forms of vascular land plants; similar to genus Rhynia but smaller -13218722 20 n 04 Sphenopsida 0 class_Sphenopsida 0 Equisetatae 0 class_Equisetatae 0 003 @ 08103777 n 0000 #m 11544769 n 0000 %m 13218900 n 0000 | horsetails and related forms -13218900 20 n 02 Equisetales 0 order_Equisetales 0 003 @ 11534677 n 0000 #m 13218722 n 0000 %m 13219067 n 0000 | lower tracheophytes in existence since the Devonian -13219067 20 n 03 Equisetaceae 0 family_Equisetaceae 0 horsetail_family 0 003 @ 13166338 n 0000 #m 13218900 n 0000 %m 13219258 n 0000 | sole surviving family of the Equisetales: fern allies -13219258 20 n 02 Equisetum 0 genus_Equisetum 0 003 @ 13167078 n 0000 #m 13219067 n 0000 %m 13219422 n 0000 | horsetails; coextensive with the family Equisetaceae -13219422 20 n 01 horsetail 0 009 @ 11547562 n 0000 #m 13219258 n 0000 %p 11682842 n 0000 ~ 13219833 n 0000 ~ 13219976 n 0000 ~ 13220122 n 0000 ~ 13220355 n 0000 ~ 13220525 n 0000 ~ 13220663 n 0000 | perennial rushlike flowerless herbs with jointed hollow stems and narrow toothlike leaves that spread by creeping rhizomes; tend to become weedy; common in northern hemisphere; some in Africa and South America -13219833 20 n 03 common_horsetail 0 field_horsetail 0 Equisetum_arvense 0 001 @ 13219422 n 0000 | of Eurasia and Greenland and North America -13219976 20 n 03 swamp_horsetail 0 water_horsetail 0 Equisetum_fluviatile 0 001 @ 13219422 n 0000 | Eurasia; northern North America to Virginia -13220122 20 n 05 scouring_rush 0 rough_horsetail 0 Equisetum_hyemale 0 Equisetum_hyemale_robustum 0 Equisetum_robustum 0 001 @ 13219422 n 0000 | evergreen erect horsetail with rough-edged stems; formerly used for scouring utensils -13220355 20 n 02 marsh_horsetail 0 Equisetum_palustre 0 001 @ 13219422 n 0000 | scouring-rush horsetail widely distributed in wet or boggy areas of northern hemisphere -13220525 20 n 02 wood_horsetail 0 Equisetum_Sylvaticum 0 001 @ 13219422 n 0000 | Eurasia except southern Russia; northern North America -13220663 20 n 03 variegated_horsetail 0 variegated_scouring_rush 0 Equisetum_variegatum 0 001 @ 13219422 n 0000 | northern North America; Greenland; northern and central Europe -13220842 20 n 04 Lycopsida 0 class_Lycopsida 0 Lycopodiate 0 class_Lycopodiate 0 008 @ 08103777 n 0000 #m 11544769 n 0000 %m 13221383 n 0000 %m 13221529 n 0000 %m 13221807 n 0000 %m 13222227 n 0000 %m 13224086 n 0000 %m 13225729 n 0000 | club mosses and related forms: includes Lycopodiales; Isoetales; Selaginellales; and extinct Lepidodendrales; sometimes considered a subdivision of Tracheophyta -13221243 20 n 01 Lycophyta 0 002 @ 08220891 n 0000 #m 11529603 n 0000 | used in some classifications for the class Lycopsida: club mosses -13221383 20 n 02 Lycopodineae 0 class_Lycopodineae 0 002 @ 08103777 n 0000 #m 13220842 n 0000 | alternative designation for the class Lycopsida -13221529 20 n 03 club_moss 0 club-moss 0 lycopod 0 008 @ 11547562 n 0000 #m 13220842 n 0000 %p 11682842 n 0000 ~ 13222877 n 0000 ~ 13222985 n 0000 ~ 13223090 n 0000 ~ 13223265 n 0000 ~ 13224673 n 0000 | primitive evergreen moss-like plant with spores in club-shaped strobiles -13221807 20 n 02 Lepidodendrales 0 order_Lepidodendrales 0 003 @ 11534677 n 0000 #m 13220842 n 0000 %m 13222035 n 0000 | fossil arborescent plants arising during the early Devonian and conspicuous throughout the Carboniferous -13222035 20 n 02 Lepidodendraceae 0 family_Lepidodendraceae 0 002 @ 13166338 n 0000 #m 13221807 n 0000 | fossil plants characterized by conspicuous spirally arranged leaf scars on the trunk -13222227 20 n 02 Lycopodiales 0 order_Lycopodiales 0 003 @ 11534677 n 0000 #m 13220842 n 0000 %m 13222477 n 0000 | lower vascular plants coextensive with the family Lycopodiaceae; in some classifications includes the Selaginellaceae and Isoetaceae -13222477 20 n 03 Lycopodiaceae 0 family_Lycopodiaceae 0 clubmoss_family 0 003 @ 13166338 n 0000 #m 13222227 n 0000 %m 13222669 n 0000 | a family of ferns belonging to the order Lycopodiales -13222669 20 n 02 Lycopodium 0 genus_Lycopodium 0 002 @ 13167078 n 0000 #m 13222477 n 0000 | type and sole genus of the Lycopodiaceae; erect or creeping evergreen plants often used for Christmas decorations -13222877 20 n 02 shining_clubmoss 0 Lycopodium_lucidulum 0 001 @ 13221529 n 0000 | a variety of club moss -13222985 20 n 02 alpine_clubmoss 0 Lycopodium_alpinum 0 001 @ 13221529 n 0000 | a variety of club moss -13223090 20 n 04 fir_clubmoss 0 mountain_clubmoss 0 little_clubmoss 0 Lycopodium_selago 0 001 @ 13221529 n 0000 | of northern Europe and America; resembling a miniature fir -13223265 20 n 02 ground_pine 1 Christmas_green 0 005 @ 13221529 n 0000 ~ 13223485 n 0000 ~ 13223588 n 0000 ~ 13223710 n 0000 ~ 13223843 n 0000 | any of several club mosses having long creeping stems and erect branches -13223485 20 n 02 running_pine 0 Lycopodium_clavitum 0 001 @ 13223265 n 0000 | a variety of club moss -13223588 20 n 03 ground_cedar 2 staghorn_moss 0 Lycopodium_complanatum 0 001 @ 13223265 n 0000 | a variety of club moss -13223710 20 n 04 ground_fir 0 princess_pine 0 tree_clubmoss 0 Lycopodium_obscurum 0 001 @ 13223265 n 0000 | a variety of club moss -13223843 20 n 02 foxtail_grass 2 Lycopodium_alopecuroides 0 001 @ 13223265 n 0000 | ground pine thickly covered with bristly leaves; widely distributed in barren sandy or peaty moist coastal regions of eastern and southeastern United States -13224086 20 n 02 Selaginellales 0 order_Selaginellales 0 003 @ 11534677 n 0000 #m 13220842 n 0000 %m 13224256 n 0000 | in some classifications included in Lycopodiales -13224256 20 n 02 Selaginellaceae 0 family_Selaginellaceae 0 003 @ 13166338 n 0000 #m 13224086 n 0000 %m 13224454 n 0000 | lesser club mosses: terrestrial chiefly tropical plants resembling mosses -13224454 20 n 02 Selaginella 0 genus_Selaginella 0 003 @ 13167078 n 0000 #m 13224256 n 0000 %m 13224673 n 0000 | type and sole genus of the Selaginellaceae; evergreen moss-like plants: spike moss and little club moss -13224673 20 n 03 spikemoss 0 spike_moss 0 little_club_moss 0 007 @ 13221529 n 0000 #m 13224454 n 0000 ~ 13224922 n 0000 ~ 13225075 n 0000 ~ 13225244 n 0000 ~ 13225365 n 0000 ~ 13225617 n 0000 | any of numerous fern allies of the genus Selaginella -13224922 20 n 03 meadow_spikemoss 0 basket_spikemoss 0 Selaginella_apoda 0 001 @ 13224673 n 0000 | spikemoss forming dense mats; eastern North America -13225075 20 n 03 rock_spikemoss 0 dwarf_lycopod 0 Selaginella_rupestris 0 001 @ 13224673 n 0000 | tufted spikemoss forming loose spreading mats; eastern North America -13225244 20 n 02 desert_selaginella 0 Selaginella_eremophila 0 001 @ 13224673 n 0000 | prostrate spikemoss; California -13225365 20 n 03 resurrection_plant 2 rose_of_Jericho 2 Selaginella_lepidophylla 0 001 @ 13224673 n 0000 | densely tufted fern ally of southwestern United States to Peru; curls up in a tight ball when dry and expands and grows under moist conditions -13225617 20 n 02 florida_selaginella 0 Selaginella_eatonii 0 001 @ 13224673 n 0000 | occurs widely in Florida -13225729 20 n 02 Isoetales 0 order_Isoetales 0 003 @ 11534677 n 0000 #m 13220842 n 0000 %m 13225955 n 0000 | aquatic or marsh-growing fern allies; known to have existed since the Cenozoic; sometimes included in Lycopodiales -13225955 20 n 03 Isoetaceae 0 family_Isoetaceae 0 quillwort_family 0 003 @ 13166338 n 0000 #m 13225729 n 0000 %m 13226135 n 0000 | quillworts; coextensive with the genus Isoetes -13226135 20 n 02 Isoetes 0 genus_Isoetes 0 003 @ 13167078 n 0000 #m 13225955 n 0000 %m 13226320 n 0000 | type and genus of the Isoetaceae and sole extant genus of the order Isoetales -13226320 20 n 01 quillwort 0 002 @ 11547562 n 0000 #m 13226135 n 0000 | any of several spore-bearing aquatic or marsh plants having short rhizomes and leaves resembling quills; worldwide except Polynesia -13226526 20 n 02 Geoglossaceae 0 family_Geoglossaceae 0 003 @ 11590783 n 0000 #m 12967281 n 0000 %m 13226698 n 0000 | a family of fungi belonging to the order Helotiales -13226698 20 n 02 Geoglossum 0 genus_Geoglossum 0 003 @ 11592146 n 0000 #m 13226526 n 0000 %m 13226871 n 0000 | type genus of the Geoglossaceae comprising the earthtongues -13226871 20 n 02 earthtongue 0 earth-tongue 0 002 @ 12992868 n 0000 #m 13226698 n 0000 | any club-shaped fungus of the genus Geoglossum -13227009 20 n 02 Cryptogrammataceae 0 family_Cryptogrammataceae 0 002 @ 13166338 n 0000 #m 13169219 n 0000 | one of a number of families into which the family Polypodiaceae has been subdivided in some classification systems -13227235 20 n 02 Thelypteridaceae 0 family_Thelypteridaceae 0 011 @ 13166338 n 0000 #m 13169219 n 0000 %m 13227557 n 0000 %m 13228194 n 0000 %m 13228357 n 0000 %m 13228692 n 0000 %m 13229018 n 0000 %m 13229227 n 0000 %m 13229358 n 0000 %m 13229747 n 0000 %m 13230421 n 0000 | genera Thelypteris, Phegopteris, and others -13227557 20 n 02 Thelypteris 0 genus_Thelypteris 0 003 @ 13167078 n 0000 #m 13227235 n 0000 %m 13227778 n 0000 | marsh ferns: in some classification systems considered part of genus Dryopteris in family Dryopteridaceae -13227778 20 n 03 marsh_fern 0 Thelypteris_palustris 0 Dryopteris_thelypteris 0 003 @ 11545714 n 0000 #m 13227557 n 0000 ~ 13228017 n 0000 | fern having pinnatifid fronds and growing in wet places; cosmopolitan in north temperate regions -13228017 20 n 04 snuffbox_fern 0 meadow_fern 0 Thelypteris_palustris_pubescens 0 Dryopteris_thelypteris_pubescens 0 001 @ 13227778 n 0000 | fern of northeastern North America -13228194 20 n 02 Amauropelta 0 genus_Amauropelta 0 002 @ 13167078 n 0000 #m 13227235 n 0000 | epiphytic or terrestrial ferns of America and Africa and Polynesia -13228357 20 n 01 genus_Christella 0 003 @ 13167078 n 0000 #m 13227235 n 0000 %m 13228536 n 0000 | medium to large terrestrial ferns of tropical forests of Old World to Americas -13228536 20 n 01 christella 0 002 @ 11545714 n 0000 #m 13228357 n 0000 | any of several tropical ferns of the genus Christella having thin brittle fronds -13228692 20 n 02 Cyclosorus 0 genus_Cyclosorus 0 002 @ 13167078 n 0000 #m 13227235 n 0000 | small genus of terrestrial ferns of tropical and subtropical southern hemisphere -13228867 20 n 02 Goniopteris 0 genus_Goniopteris 0 001 @ 13167078 n 0000 | terrestrial ferns of Florida and West Indies to Central and South America -13229018 20 n 02 Macrothelypteris 0 genus_Macrothelypteris 0 002 @ 13167078 n 0000 #m 13227235 n 0000 | medium to large terrestrial ferns of tropical Asia to Polynesia and Australia; naturalized in Americas -13229227 20 n 02 Meniscium 0 genus_Meniscium 0 002 @ 13167078 n 0000 #m 13227235 n 0000 | terrestrial ferns of tropical Americas -13229358 20 n 02 Oreopteris 0 genus_Oreopteris 0 003 @ 13167078 n 0000 #m 13227235 n 0000 %m 13229543 n 0000 | 3 species of ferns formerly included in genus Dryopteris or Thelypteris -13229543 20 n 03 mountain_fern 0 Oreopteris_limbosperma 0 Dryopteris_oreopteris 0 002 @ 11545714 n 0000 #m 13229358 n 0000 | common European mountain fern having fragrant lemon or balsam scented fronds -13229747 20 n 02 Parathelypteris 0 genus_Parathelypteris 0 004 @ 13167078 n 0000 #m 13227235 n 0000 %m 13229951 n 0000 %m 13230190 n 0000 | terrestrial ferns of warm and tropical Asia and North America -13229951 20 n 03 New_York_fern 0 Parathelypteris_novae-boracensis 0 Dryopteris_noveboracensis 0 002 @ 11545714 n 0000 #m 13229747 n 0000 | slender shield fern of moist woods of eastern North America; sometimes placed in genus Dryopteris -13230190 20 n 03 Massachusetts_fern 0 Parathelypteris_simulata 0 Thelypteris_simulata 0 002 @ 11545714 n 0000 #m 13229747 n 0000 | delicate feathery shield fern of the eastern United States; sometimes placed in genus Thelypteris -13230421 20 n 02 Phegopteris 0 genus_Phegopteris 0 003 @ 13167078 n 0000 #m 13227235 n 0000 %m 13230662 n 0000 | beech ferns: genus is variously classified: considered alternative name for genus Dryopteris or included in genus Thelypteris -13230662 20 n 01 beech_fern 0 004 @ 11545714 n 0000 #m 13230421 n 0000 ~ 13230843 n 0000 ~ 13231078 n 0000 | any fern of the genus Phegopteris having deeply cut triangular fronds -13230843 20 n 05 broad_beech_fern 0 southern_beech_fern 0 Phegopteris_hexagonoptera 0 Dryopteris_hexagonoptera 0 Thelypteris_hexagonoptera 0 001 @ 13230662 n 0000 | beech fern of North American woodlands having straw-colored stripes -13231078 20 n 06 long_beech_fern 0 narrow_beech_fern 0 northern_beech_fern 0 Phegopteris_connectilis 0 Dryopteris_phegopteris 0 Thelypteris_phegopteris 0 001 @ 13230662 n 0000 | beech fern of North America and Eurasia -13231298 20 n 01 rhizomorph 0 001 @ 13022538 n 0000 | a dense mass of hyphae forming a root-like structure characteristic of many fungi -13231436 20 n 02 Armillaria 0 genus_Armillaria 0 004 @ 11592146 n 0000 #m 13016457 n 0000 %m 13231678 n 0000 %m 13231919 n 0000 | genus of edible mushrooms having white spores an annulus and blue juice; some are edible; some cause root rot -13231678 20 n 01 shoestring_fungus 0 002 @ 12998815 n 0000 #m 13231436 n 0000 | any of several fungi of the genus Armillaria that form brown stringy rhizomorphs and cause destructive rot of the roots of some trees such as apples or maples -13231919 20 n 02 Armillaria_caligata 0 booted_armillaria 0 002 @ 12998815 n 0000 #m 13231436 n 0000 | fungus with a brown cap and white gills and a membranous ring halfway up the stalk -13232106 20 n 02 Armillaria_ponderosa 0 white_matsutake 0 001 @ 12998815 n 0000 | a large white mushroom that develops brown stains as it ages; gills are white; odor is spicy and aromatic; collected commercially for oriental cooking the Pacific Northwest -13232363 20 n 01 Armillaria_zelleri 0 001 @ 12998815 n 0000 | a large fungus with viscid cap that dries and turns brown with age; gills are off-white -13232515 20 n 02 Armillariella 0 genus_Armillariella 0 003 @ 11592146 n 0000 #m 13016457 n 0000 %m 13232779 n 0000 | a honey-colored diminutive form of genus Armillaria; grows in clusters; edible (when cooked) but most attention has been on how to get rid of it -13232779 20 n 03 honey_mushroom 0 honey_fungus 0 Armillariella_mellea 0 002 @ 12998815 n 0000 #m 13232515 n 0000 | a honey-colored edible mushroom commonly associated with the roots of trees in late summer and fall; do not eat raw -13233012 20 n 03 Asclepiadaceae 0 family_Asclepiadaceae 0 milkweed_family 0 013 @ 11562747 n 0000 #m 12289744 n 0000 + 02644602 a 0101 %m 13233435 n 0000 %m 13233548 n 0000 %m 13235947 n 0000 %m 13236354 n 0000 %m 13236726 n 0000 %m 13237343 n 0000 %m 13237788 n 0000 %m 13238178 n 0000 %m 13238828 n 0000 %m 13239471 n 0000 | widely distributed family of herbs and shrubs of the order Gentianales; most with milky juice -13233435 20 n 01 asclepiad 0 002 @ 12205694 n 0000 #m 13233012 n 0000 | any plant of the family Asclepiadaceae -13233548 20 n 02 Asclepias 0 genus_Asclepias 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13233727 n 0000 | genus of chiefly North American perennial herbs: silkweed; milkweed -13233727 20 n 02 milkweed 0 silkweed 0 012 @ 12205694 n 0000 #m 13233548 n 0000 ~ 13234114 n 0000 ~ 13234293 n 0000 ~ 13234519 n 0000 ~ 13234678 n 0000 ~ 13234857 n 0000 ~ 13235011 n 0000 ~ 13235159 n 0000 ~ 13235319 n 0000 ~ 13235503 n 0000 ~ 13235766 n 0000 | any of numerous plants of the genus Asclepias having milky juice and pods that split open releasing seeds with downy tufts -13234114 20 n 02 white_milkweed 0 Asclepias_albicans 0 001 @ 13233727 n 0000 | tall herb with leafless white waxy stems and whitish starlike flowers; southwestern United States -13234293 20 n 03 blood_flower 0 swallowwort 2 Asclepias_curassavica 0 001 @ 13233727 n 0000 | tropical herb having orange-red flowers followed by pods suggesting a swallow with outspread wings; a weed throughout the tropics -13234519 20 n 02 poke_milkweed 0 Asclepias_exaltata 0 001 @ 13233727 n 0000 | milkweed of the eastern United States with leaves resembling those of pokeweed -13234678 20 n 02 swamp_milkweed 0 Asclepias_incarnata 0 001 @ 13233727 n 0000 | densely branching perennial of the eastern United States with white to crimson or purple flowers -13234857 20 n 03 Mead's_milkweed 0 Asclepias_meadii 0 Asclepia_meadii 0 001 @ 13233727 n 0000 | milkweed of central North America; a threatened species -13235011 20 n 02 purple_silkweed 0 Asclepias_purpurascens 0 001 @ 13233727 n 0000 | perennial of eastern North America having pink-purple flowers -13235159 20 n 02 showy_milkweed 0 Asclepias_speciosa 0 001 @ 13233727 n 0000 | milkweed of southern North America having large starry purple and pink flowers -13235319 20 n 03 poison_milkweed 0 horsetail_milkweed 0 Asclepias_subverticillata 0 001 @ 13233727 n 0000 | milkweed of southwestern United States and Mexico; poisonous to livestock -13235503 20 n 08 butterfly_weed 0 orange_milkweed 0 chigger_flower 0 chiggerflower 0 pleurisy_root 0 tuber_root 0 Indian_paintbrush 2 Asclepias_tuberosa 0 001 @ 13233727 n 0000 | erect perennial of eastern and southern United States having showy orange flowers -13235766 20 n 02 whorled_milkweed 0 Asclepias_verticillata 0 001 @ 13233727 n 0000 | milkweed of the eastern United States with narrow leaves in whorls and greenish-white flowers -13235947 20 n 02 Araujia 0 genus_Araujia 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13236100 n 0000 | small genus of South American evergreen vines -13236100 20 n 02 cruel_plant 0 Araujia_sericofera 0 002 @ 13100677 n 0000 #m 13235947 n 0000 | robust twining shrub having racemes of fragrant white or pink flowers with flat spreading terminal petals that trap nocturnal moths and hold them until dawn -13236354 20 n 01 genus_Cynancum 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13236495 n 0000 | genus of perennial tropical African lianas -13236495 20 n 01 cynancum 0 002 @ 13120211 n 0000 #m 13236354 n 0000 | any of various mostly giant tropical lianas of Africa and Madagascar having greenish or purple flowers and long smooth pods; roots formerly used as an emetic -13236726 20 n 01 genus_Hoya 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13236887 n 0000 | large genus of climbing shrubs of Australia and Asia and Polynesia -13236887 20 n 01 hoya 0 004 @ 13100677 n 0000 #m 13236726 n 0000 ~ 13237075 n 0000 ~ 13237188 n 0000 | any plant of the genus Hoya having fleshy leaves and usually nectariferous flowers -13237075 20 n 01 honey_plant 0 001 @ 13236887 n 0000 | a plant that furnishes nectar suitable for making honey -13237188 20 n 02 wax_plant 0 Hoya_carnosa 0 001 @ 13236887 n 0000 | succulent climber of southern Asia with umbels of pink and white star-shaped flowers -13237343 20 n 02 Periploca 0 genus_Periploca 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13237508 n 0000 | genus of woody vines of warm regions of the Old World -13237508 20 n 02 silk_vine 0 Periploca_graeca 0 002 @ 13100677 n 0000 #m 13237343 n 0000 | deciduous climber for arches and fences having ill-scented but interesting flowers and poisonous yellow fruits; cultivated for its dark shining foliage; southeastern Europe to Asia Minor -13237788 20 n 02 Sarcostemma 0 genus_Sarcostemma 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13237988 n 0000 | succulent subshrubs or vines; tropical and subtropical India and Africa and Malaysia -13237988 20 n 03 soma 0 haoma 0 Sarcostemma_acidum 0 002 @ 13100677 n 0000 #m 13237788 n 0000 | leafless East Indian vine; its sour milky juice formerly used to make an intoxicating drink -13238178 20 n 01 genus_Stapelia 0 004 @ 11567411 n 0000 #m 13233012 n 0000 %m 13238375 n 0000 %m 13238654 n 0000 | genus of foul-smelling plants resembling cacti; found from Africa to East India -13238375 20 n 03 stapelia 0 carrion_flower 0 starfish_flower 0 003 @ 12205694 n 0000 #m 13238178 n 0000 ~ 13238654 n 0000 | any of various plants of the genus Stapelia having succulent leafless toothed stems resembling cacti and large foul-smelling (often star-shaped) flowers -13238654 20 n 01 Stapelias_asterias 0 002 @ 13238375 n 0000 #m 13238178 n 0000 | stapelia of Cape Province having mostly dark red-brown flowers with flat starlike corollas -13238828 20 n 01 genus_Stephanotis 0 004 @ 11567411 n 0000 #m 13233012 n 0000 %m 13238988 n 0000 %m 13239177 n 0000 | genus of Old World tropical woody vines -13238988 20 n 01 stephanotis 0 003 @ 13112664 n 0000 #m 13238828 n 0000 ~ 13239177 n 0000 | any of various evergreen climbing shrubs of the genus Stephanotis having fragrant waxy flowers -13239177 20 n 03 Madagascar_jasmine 0 waxflower 3 Stephanotis_floribunda 0 002 @ 13238988 n 0000 #m 13238828 n 0000 | twining woody vine of Madagascar having thick dark waxy evergreen leaves and clusters of large fragrant waxy white flowers along the stems; widely cultivated in warm regions -13239471 20 n 02 Vincetoxicum 0 genus_Vincetoxicum 0 003 @ 11567411 n 0000 #m 13233012 n 0000 %m 13239736 n 0000 | genus of chiefly tropical American vines having cordate leaves and large purple or greenish cymose flowers; supposedly having powers as an antidote -13239736 20 n 03 negro_vine 0 Vincetoxicum_hirsutum 0 Vincetoxicum_negrum 0 002 @ 13100677 n 0000 #m 13239471 n 0000 | twining vine with hairy foliage and dark purplish-brown flowers -13239921 20 n 01 zygospore 0 001 @ 11547855 n 0000 | a plant spore formed by two similar sexual cells -13240025 20 n 02 old_growth 0 virgin_forest 0 001 @ 08438533 n 0000 | forest or woodland having a mature or overly mature ecosystem more or less uninfluenced by human activity -13240203 20 n 01 second_growth 0 001 @ 08438533 n 0000 | a second growth of trees covering an area where the original stand was destroyed by fire or cutting -13240362 20 n 01 tree_of_knowledge 0 001 @ 13104059 n 0000 | the biblical tree in the Garden of Eden whose forbidden fruit was tasted by Adam and Eve -13240514 21 n 01 ownership 0 010 @ 00031921 n 0000 + 10389398 n 0101 + 10388924 n 0101 ~ 13240839 n 0000 ~ 13240971 n 0000 ~ 13241057 n 0000 ~ 13243780 n 0000 ~ 13243991 n 0000 ~ 13247445 n 0000 ~ 13334307 n 0000 | the relation of an owner to the thing possessed; possession with the right to transfer possession to others -13240839 21 n 01 community 0 002 @ 13240514 n 0000 + 00493012 a 0101 | common ownership; "they shared a community of possessions" -13240971 21 n 01 severalty 0 001 @ 13240514 n 0000 | exclusive individual ownership -13241057 21 n 01 property_right 0 003 @ 13240514 n 0000 ~ 13243668 n 0000 ~ 13341962 n 0000 | the legal right of ownership -13241182 21 n 01 preemptive_right 0 001 @ 05178394 n 0000 | the right granting to shareholders the first opportunity to buy a new issue of stock; provides protection against dilution of the shareholder's ownership interest -13241407 21 n 01 subscription_right 0 001 @ 05178394 n 0000 | the right of a shareholder in a company to subscribe to shares of a new issue of common stock before it is offered to the public -13241600 21 n 01 option 0 009 @ 06480506 n 0000 ~ 00080474 n 0000 ~ 00080619 n 0000 ~ 00080743 n 0000 ~ 00080968 n 0000 ~ 00081174 n 0000 ~ 00081395 n 0000 ~ 13242239 n 0000 ~ 13242558 n 0000 | the right to buy or sell property at an agreed price; the right is purchased and if it is not exercised by a stated date the money is forfeited -13241940 21 n 01 stock_option 1 001 @ 13296899 n 0000 | a benefit given by a company to an employee in the form of an option to buy stock in the company at a discount or at a fixed price; "stock options are not much use as an incentive if the price at which they can be exercised is out of reach" -13242239 21 n 01 stock_option 0 003 @ 13241600 n 0000 ~ 13242410 n 0000 ~ 13242484 n 0000 | the right to buy or sell a stock at a specified price within a stated period -13242410 21 n 01 call_option 0 001 @ 13242239 n 0000 | an option to buy -13242484 21 n 01 put_option 0 001 @ 13242239 n 0000 | an option to sell -13242558 21 n 01 lock-up_option 0 001 @ 13241600 n 0000 | an option to buy the crown jewels offered to a white knight in order to forestall a hostile takeover -13242719 21 n 02 tenure 0 land_tenure 0 004 @ 05177285 n 0000 ~ 13242923 n 0000 ~ 13243134 n 0000 ~ 13243374 n 0000 | the right to hold property; part of an ancient hierarchical system of holding lands -13242923 21 n 01 copyhold 0 001 @ 13242719 n 0000 | a medieval form of land tenure in England; a copyhold was a parcel of land granted to a peasant by the lord of the manor in return for agricultural services -13243134 21 n 01 freehold 0 002 @ 13242719 n 0000 + 10110287 n 0101 | tenure by which land is held in fee simple or for life -13243261 21 n 01 freehold 1 002 @ 13246662 n 0000 + 10110287 n 0101 | an estate held in fee simple or for life -13243374 21 n 01 villeinage 0 001 @ 13242719 n 0000 | tenure by which a villein held land -13243466 21 n 01 stock_buyback 0 001 @ 13253612 n 0000 | a corporation's purchase of its own outstanding stock; increases earnings/share so stock price rises (which can discourage a takeover attempt) -13243668 21 n 01 public_domain 0 001 @ 13241057 n 0000 | property rights that are held by the public at large -13243780 21 n 02 proprietorship 0 proprietary 0 002 @ 13240514 n 0000 + 10388924 n 0102 | an unincorporated business owned by a single person who is responsible for its liabilities and entitled to its profits -13243991 21 n 01 employee_ownership 0 001 @ 13240514 n 0000 | ownership of a business by the people who work for it -13244109 21 n 03 property 0 belongings 0 holding 0 025 @ 00032613 n 0000 + 02203362 v 0303 + 02301680 v 0201 ~ 13244753 n 0000 ~ 13244881 n 0000 ~ 13245076 n 0000 ~ 13245217 n 0000 ~ 13245338 n 0000 ~ 13245504 n 0000 ~ 13245626 n 0000 ~ 13246332 n 0000 ~ 13246475 n 0000 ~ 13247149 n 0000 ~ 13247358 n 0000 ~ 13247554 n 0000 ~ 13247712 n 0000 ~ 13247818 n 0000 ~ 13248393 n 0000 ~ 13248792 n 0000 ~ 13249062 n 0000 ~ 13250398 n 0000 ~ 13250930 n 0000 ~ 13264794 n 0000 ~ 13334492 n 0000 ~ 13360498 n 0000 | something owned; any tangible or intangible possession that is owned by someone; "that hat is my property"; "he is a man of property"; -13244753 21 n 02 tangible_possession 0 material_possession 0 001 @ 13244109 n 0000 | property or belongings that are tangible -13244881 21 n 03 worldly_possessions 0 worldly_belongings 0 worldly_goods 0 001 @ 13244109 n 0000 | all the property that someone possess; "he left all his worldly possessions to his daughter" -13245076 21 n 02 ratables 0 rateables 0 002 @ 13244109 n 0000 ;r 08860123 n 0000 | property that provides tax income for local governments -13245217 21 n 01 hereditament 0 001 @ 13244109 n 0000 | any property (real or personal or mixed) that can be inherited -13245338 21 n 01 intellectual_property 0 001 @ 13244109 n 0000 | intangible property that is the result of creativity (such as patents or trademarks or copyrights) -13245504 21 n 01 community_property 0 001 @ 13244109 n 0000 | property and income belonging jointly to a married couple -13245626 21 n 04 personal_property 0 personal_estate 0 personalty 0 private_property 0 004 @ 13244109 n 0000 ~ 13245846 n 0000 ~ 13246079 n 0000 ~ 13251154 n 0000 | movable property (as distinguished from real estate) -13245846 21 n 03 chattel 0 personal_chattel 0 movable 0 003 @ 13245626 n 0000 ;c 03405725 n 0000 ;c 02958343 n 0000 | personal as opposed to real property; any tangible movable property (furniture or domestic animals or a car etc) -13246079 21 n 02 effects 0 personal_effects 0 001 @ 13245626 n 0000 | property of a personal character that is portable but not used in business; "she left some of her personal effects in the house"; "I watched over their effects until they returned" -13246332 21 n 01 things 0 001 @ 13244109 n 0000 | any movable possession (especially articles of clothing); "she packed her things and left" -13246475 21 n 04 real_property 0 real_estate 0 realty 0 immovable 0 004 @ 13244109 n 0000 ~ 13246662 n 0000 ~ 13250048 n 0000 ~ 13250244 n 0000 | property consisting of houses and land -13246662 21 n 05 estate 1 land 0 landed_estate 0 acres 0 demesne 0 015 @ 13246475 n 0000 ~ 13243261 n 0000 ~ 13247228 n 0000 ~ 13249154 n 0000 ~ 13249245 n 0000 ~ 13249400 n 0000 ~ 13249927 n 0000 ~ 13251906 n 0000 ~ 13251980 n 0000 ~ 13252062 n 0000 ~ 13252168 n 0000 ~ 13252293 n 0000 ~ 13252395 n 0000 ~ 13252513 n 0000 ~ 13288942 n 0000 | extensive landed property (especially in the country) retained by the owner for his own use; "the family owned a large estate on Long Island" -13247149 21 n 01 commonage 0 001 @ 13244109 n 0000 | property held in common -13247228 21 n 01 glebe 0 001 @ 13246662 n 0000 | plot of land belonging to an English parish church or an ecclesiastical office -13247358 21 n 01 landholding 0 001 @ 13244109 n 0000 | a holding in the form of land -13247445 21 n 01 landholding 1 001 @ 13240514 n 0000 | ownership of land; the state or fact of owning land -13247554 21 n 01 salvage 0 004 @ 13244109 n 0000 @ 03076708 n 0000 + 02550868 v 0101 + 02550868 v 0102 | property or goods saved from damage or destruction -13247712 21 n 01 shareholding 0 001 @ 13244109 n 0000 | a holding in the form of shares of corporations -13247818 21 n 03 spiritualty 0 spirituality 0 church_property 0 003 @ 13244109 n 0000 ~ 13247981 n 0000 ~ 13248087 n 0000 | property or income owned by a church -13247981 21 n 02 temporalty 0 temporality 0 001 @ 13247818 n 0000 | the worldly possessions of a church -13248087 21 n 02 benefice 0 ecclesiastical_benefice 0 004 @ 13247818 n 0000 + 02661314 a 0101 + 02201521 v 0101 ~ 13248274 n 0000 | an endowed church office giving income to its holder -13248274 21 n 01 sinecure 0 001 @ 13248087 n 0000 | a benefice to which no spiritual or pastoral duties are attached -13248393 21 n 03 lease 0 rental 0 letting 0 006 @ 13244109 n 0000 + 02892164 a 0201 + 02208903 v 0101 + 02460199 v 0102 ~ 13248598 n 0000 ~ 13248928 n 0000 | property that is leased or rented out or let -13248598 21 n 06 car_rental 0 hire_car 0 rent-a-car 0 self-drive 0 u-drive 0 you-drive 0 001 @ 13248393 n 0000 | a rented car; "she picked up a hire car at the airport and drove to her hotel" -13248792 21 n 01 trade-in 0 002 @ 13244109 n 0000 + 02260085 v 0102 | an item of property that is given in part payment for a new one -13248928 21 n 02 sublease 0 sublet 0 003 @ 13248393 n 0000 + 02209261 v 0201 + 02209261 v 0102 | a lease from one lessee to another -13249062 21 n 01 public_property 0 001 @ 13244109 n 0000 | property owned by a government -13249154 21 n 01 leasehold 0 001 @ 13246662 n 0000 | land or property held under a lease -13249245 21 n 01 smallholding 0 002 @ 13246662 n 0000 ;r 08860123 n 0000 | a piece of land under 50 acres that is sold or let to someone for cultivation -13249400 21 n 01 homestead 1 002 @ 13246662 n 0000 + 00415231 v 0101 | land acquired from the United States public lands by filing a record and living on and cultivating it under the homestead law -13249599 21 n 01 farmstead 0 001 @ 13250048 n 0000 | the buildings and adjacent grounds of a farm -13249699 21 n 01 homestead 0 001 @ 13250048 n 0000 | the home and adjacent grounds occupied by a family -13249805 21 n 01 no_man's_land 0 001 @ 13250048 n 0000 | land that is unowned and uninhabited (and usually undesirable) -13249927 21 n 02 fief 0 feoff 0 002 @ 13246662 n 0000 + 08557754 n 0101 | a piece of land held under the feudal system -13250048 21 n 01 land 1 004 @ 13246475 n 0000 ~ 13249599 n 0000 ~ 13249699 n 0000 ~ 13249805 n 0000 | the land on which real estate is located; "he built the house on land leased from the city" -13250244 21 n 02 mortmain 0 dead_hand 0 002 @ 13246475 n 0000 ;c 08059412 n 0000 | real property held inalienably (as by an ecclesiastical corporation) -13250398 21 n 01 wealth 0 002 @ 13244109 n 0000 ~ 13250542 n 0000 | property that has economic utility: a monetary value or an exchange value -13250542 21 n 01 money 2 002 @ 13250398 n 0000 ~ 13250680 n 0000 | wealth reckoned in terms of money; "all his money is in real estate" -13250680 21 n 05 pile 0 bundle 0 big_bucks 0 megabucks 0 big_money 0 002 @ 13250542 n 0000 ;u 07157273 n 0000 | a large sum of money (especially as pay or profit); "she made a bundle selling real estate"; "they sank megabucks into their new house" -13250930 21 n 01 estate 2 005 @ 13244109 n 0000 ~ 13251289 n 0000 ~ 13251424 n 0000 ~ 13251715 n 0000 ~ 13264342 n 0000 | everything you own; all of your assets (whether real property or personal property) and liabilities -13251154 21 n 02 stuff 0 clobber 0 001 @ 13245626 n 0000 | informal terms for personal possessions; "did you take all your clobber?" -13251289 21 n 01 gross_estate 0 001 @ 13250930 n 0000 | the total valuation of the estate's assets at the time of the person's death -13251424 21 n 01 net_estate 0 002 @ 13250930 n 0000 ;c 13308999 n 0000 | the estate remaining after debts and funeral expenses and administrative expenses have been deducted from the gross estate; the estate then left to be distributed (and subject to federal and state inheritance taxes) -13251715 21 n 02 life_estate 0 estate_for_life 0 003 @ 13250930 n 0000 ;c 08441203 n 0000 ~ 13264203 n 0000 | (law) an estate whose duration is limited to the life of the person holding it -13251906 21 n 01 barony 0 001 @ 13246662 n 0000 | the estate of a baron -13251980 21 n 01 countryseat 0 001 @ 13246662 n 0000 | an estate in the country -13252062 21 n 01 Crown_land 0 002 @ 13246662 n 0000 ;r 08860123 n 0000 | land that belongs to the Crown -13252168 21 n 01 manor 0 002 @ 13246662 n 0000 + 03084397 a 0101 | the landed estate of a lord (including the house on it) -13252293 21 n 03 seigneury 0 seigniory 0 signory 0 001 @ 13246662 n 0000 | the estate of a seigneur -13252395 21 n 01 hacienda 0 002 @ 13246662 n 0000 %p 03474352 n 0000 | a large estate in Spanish-speaking countries -13252513 21 n 01 plantation 0 002 @ 13246662 n 0000 ~ 13252672 n 0000 | an estate where cash crops are grown on a large scale (especially in tropical areas) -13252672 21 n 01 orangery 0 002 @ 13252513 n 0000 @ 03457902 n 0000 | a place where oranges are grown; a plantation of orange trees in warm climes or a greenhouse in cooler areas -13252853 21 n 01 white_elephant 0 001 @ 00032613 n 0000 | a valuable possession whose upkeep is excessively expensive -13252973 21 n 02 transferred_property 0 transferred_possession 0 009 @ 00032613 n 0000 ~ 13253255 n 0000 ~ 13254237 n 0000 ~ 13256599 n 0000 ~ 13262335 n 0000 ~ 13262913 n 0000 ~ 13275288 n 0000 ~ 13327676 n 0000 ~ 13349395 n 0000 | a possession whose ownership changes or lapses -13253255 21 n 01 acquisition 0 004 @ 13252973 n 0000 ~ 13253423 n 0000 ~ 13253612 n 0000 ~ 13265011 n 0000 | something acquired; "a recent acquisition by the museum" -13253423 21 n 02 accession 0 addition 0 001 @ 13253255 n 0000 | something added to what you already have; "the librarian shelved the new accessions"; "he was a new addition to the staff" -13253612 21 n 01 purchase 0 004 @ 13253255 n 0000 + 02207206 v 0102 ~ 13243466 n 0000 ~ 13253751 n 0000 | something acquired by purchase -13253751 21 n 03 bargain 1 buy 0 steal 0 006 @ 13253612 n 0000 + 02646757 v 0201 + 02207206 v 0201 + 02259829 v 0102 ~ 13254011 n 0000 ~ 13254105 n 0000 | an advantageous purchase; "she got a bargain at the auction"; "the stock was a real buy at that price" -13254011 21 n 01 song 0 001 @ 13253751 n 0000 | a very small sum; "he bought it for a song" -13254105 21 n 01 travel_bargain 0 001 @ 13253751 n 0000 | a bargain rate for travellers on commercial routes (usually air routes) -13254237 21 n 02 grant 2 assignment 2 006 @ 13252973 n 0000 ;c 08441203 n 0000 + 02228531 v 0201 + 02255942 v 0101 ~ 13254443 n 0000 ~ 13254697 n 0000 | (law) a transfer of property by deed of conveyance -13254443 21 n 02 appanage 0 apanage 0 001 @ 13254237 n 0000 | a grant (by a sovereign or a legislative body) of resources to maintain a dependent member of a ruling family; "bishoprics were received as appanages for the younger sons of great families" -13254697 21 n 01 land_grant 0 001 @ 13254237 n 0000 | a grant of public land (as to a railway or college) -13254805 21 n 01 gain 0 004 @ 13331198 n 0000 ! 13327231 n 0101 ~ 13254985 n 0000 ~ 13258825 n 0000 | the amount by which the revenue of a business exceeds its cost of operating -13254985 21 n 01 financial_gain 0 005 @ 13254805 n 0000 ~ 13255145 n 0000 ~ 13259917 n 0000 ~ 13311679 n 0000 ~ 13311830 n 0000 | the amount of monetary gain -13255145 21 n 01 income 0 017 @ 13254985 n 0000 ! 13275288 n 0101 ~ 13255562 n 0000 ~ 13255713 n 0000 ~ 13255883 n 0000 ~ 13255994 n 0000 ~ 13258362 n 0000 ~ 13259199 n 0000 ~ 13259359 n 0000 ~ 13260092 n 0000 ~ 13260190 n 0000 ~ 13260936 n 0000 ~ 13261107 n 0000 ~ 13261380 n 0000 ~ 13261597 n 0000 ~ 13261779 n 0000 ~ 13262200 n 0000 | the financial gain (earned or unearned) accruing over a given period of time -13255562 21 n 01 disposable_income 0 002 @ 13255145 n 0000 ;c 13308999 n 0000 | income (after taxes) that is available to you for saving or spending -13255713 21 n 01 double_dipping 0 001 @ 13255145 n 0000 | two incomes received from the same source (as by holding a government job and receiving a government pension) -13255883 21 n 02 easy_money 0 gravy_train 0 001 @ 13255145 n 0000 | income obtained with a minimum of effort -13255994 21 n 02 EBITDA 0 Earnings_Before_Interest_Taxes_Depreciation_and_Amortization 0 001 @ 13255145 n 0000 | income before interest and taxes and depreciation and amortization have been subtracted; an indicator of a company's profitability that is watched by investors (especially in leveraged buyouts) -13256303 21 n 01 easy_money 1 002 @ 14488317 n 0000 ! 13256434 n 0101 | the economic condition in which credit is easy to secure -13256434 21 n 01 tight_money 0 002 @ 14488317 n 0000 ! 13256303 n 0101 | the economic condition in which credit is difficult to secure and interest rates are high -13256599 21 n 01 escheat 1 001 @ 13252973 n 0000 | the property that reverts to the state -13256691 21 n 03 gross 0 revenue 1 receipts 0 005 @ 13331198 n 0000 + 01582821 a 0101 + 02291434 v 0101 ~ 13258167 n 0000 ~ 13258269 n 0000 | the entire amount of income before any deductions are made -13256894 21 n 01 national_income 0 001 @ 05138488 n 0000 | the total value of all income in a nation (wages and profits and interest and rents and pension payments) during a given period (usually 1 yr) -13257098 21 n 02 gross_national_product 0 GNP 0 002 @ 05138488 n 0000 ~ 13257354 n 0000 | former measure of the United States economy; the total market value of goods and services produced by all citizens and capital during a given period (usually 1 yr) -13257354 21 n 02 real_gross_national_product 0 real_GNP 0 001 @ 13257098 n 0000 | a version of the GNP that has been adjusted for the effects of inflation -13257511 21 n 02 gross_domestic_product 0 GDP 0 001 @ 05138488 n 0000 | the measure of an economy adopted by the United States in 1991; the total market values of goods and services produced by workers and capital within a nation's borders during a given period (usually 1 year) -13257792 21 n 01 deflator 0 002 @ 13593219 n 0000 + 00856234 v 0101 | a statistical factor designed to remove the effect of inflation; inflation adjusted variables are in constant dollars -13257982 21 n 01 royalty 0 001 @ 13278375 n 0000 | payment to the holder of a patent or copyright or resource for the right to use their property; "he received royalties on his book" -13258167 21 n 01 box_office 0 001 @ 13256691 n 0000 | total admission receipts for an entertainment -13258269 21 n 01 gate 0 001 @ 13256691 n 0000 | total admission receipts at a sports event -13258362 21 n 07 net_income 0 net 0 net_profit 0 lucre 1 profit 0 profits 1 earnings 1 014 @ 13255145 n 0000 + 10481003 n 0501 + 02278830 v 0501 + 02291548 v 0201 ~ 13259481 n 0000 ~ 13259630 n 0000 ~ 13259797 n 0000 ~ 13260510 n 0000 ~ 13260645 n 0000 ~ 13260762 n 0000 %p 13285176 n 0000 ~ 13303880 n 0000 ~ 13366693 n 0000 ~ 13408023 n 0000 | the excess of revenues over outlays in a given period of time (including depreciation and other non-cash expenses) -13258825 21 n 01 paper_profit 0 002 @ 13254805 n 0000 ! 13259013 n 0101 | an unrealized gain on an investment calculated by subtracting the investor's cost from the current market price -13259013 21 n 01 paper_loss 0 002 @ 13327231 n 0000 ! 13258825 n 0101 | an unrealized loss on an investment calculated by subtracting the current market price from the investor's cost -13259199 21 n 01 cash_flow 0 001 @ 13255145 n 0000 | the excess of cash revenues over cash outlays in a give period of time (not including non-cash expenses) -13259359 21 n 01 personal_income 0 002 @ 13255145 n 0000 ~ 13293246 n 0000 | the income received by a single individual -13259481 21 n 01 earning_per_share 0 001 @ 13258362 n 0000 | the portion of a company's profit allocated to each outstanding share of common stock -13259630 21 n 01 windfall_profit 0 001 @ 13258362 n 0000 | profit that occurs unexpectedly as a consequence of some event not controlled by those who profit from it -13259797 21 n 02 killing 0 cleanup 0 003 @ 13258362 n 0000 ;u 07075172 n 0000 + 02279315 v 0201 | a very large profit -13259917 21 n 03 winnings 0 win 0 profits 2 005 @ 13254985 n 0000 + 02288295 v 0202 + 02288295 v 0102 + 01100145 v 0101 ! 13329322 n 0101 | something won (especially money) -13260092 21 n 01 rental_income 0 001 @ 13255145 n 0000 | income received from rental properties -13260190 21 n 07 return 0 issue 0 take 0 takings 0 proceeds 0 yield 0 payoff 2 006 @ 13255145 n 0000 + 01629000 v 0602 + 02209745 v 0303 + 01629000 v 0103 ~ 13296270 n 0000 ~ 13296460 n 0000 | the income or profit arising from such transactions as the sale of land or other property; "the average return was about 5%" -13260510 21 n 02 fast_buck 0 quick_buck 0 001 @ 13258362 n 0000 | quick or easy earnings, "they are traders out to make a fast buck" -13260645 21 n 01 filthy_lucre 0 001 @ 13258362 n 0000 | shameful profit; "he would sell his soul for filthy lucre" -13260762 21 n 03 gross_profit 0 gross_profit_margin 0 margin 2 002 @ 13258362 n 0000 ;c 01098968 n 0000 | (finance) the net sales minus the cost of goods and services sold -13260936 21 n 03 gross_sales 0 gross_revenue 0 sales 0 001 @ 13255145 n 0000 | income (at invoice values) received for goods and services over some given period of time -13261107 21 n 01 net_sales 0 001 @ 13255145 n 0000 | gross sales reduced by customer discounts, returns, freight out, and allowances -13261242 21 n 03 margin_of_profit 0 profit_margin 0 gross_margin 0 001 @ 13819207 n 0000 | the ratio gross profits divided by net sales -13261380 21 n 02 unearned_income 0 unearned_revenue 0 002 @ 13255145 n 0000 ;c 05662532 n 0000 | (accounting) income received but not yet earned (usually considered a current liability on a company's balance sheet) -13261597 21 n 02 unearned_income 1 unearned_revenue 1 002 @ 13255145 n 0000 ;c 13308999 n 0000 | personal income that you did not earn (e.g., dividends or interest or rent income) -13261779 21 n 02 government_income 0 government_revenue 0 002 @ 13255145 n 0000 ~ 13261916 n 0000 | income available to the government -13261916 21 n 04 tax_income 0 taxation 1 tax_revenue 0 revenue 2 003 @ 13261779 n 0000 + 02307547 v 0201 ~ 13262077 n 0000 | government income due to taxation -13262077 21 n 01 internal_revenue 0 001 @ 13261916 n 0000 | government revenue from domestic sources (excluding customs) -13262200 21 n 01 per_capita_income 0 001 @ 13255145 n 0000 | the total national income divided by the number of people in the nation -13262335 21 n 01 stolen_property 0 003 @ 13252973 n 0000 ~ 13262462 n 0000 ~ 13262663 n 0000 | property that has been stolen -13262462 21 n 01 spoil 0 003 @ 13262335 n 0000 ;u 06295235 n 0000 + 01565472 v 0102 | (usually plural) valuables taken by violence (especially in war); "to the victor belong the spoils of the enemy" -13262663 21 n 07 loot 0 booty 0 pillage 0 plunder 0 prize 1 swag 0 dirty_money 0 007 @ 13262335 n 0000 + 02345288 v 0402 + 02345048 v 0402 + 02344568 v 0401 + 02344568 v 0308 + 02344568 v 0103 %p 13289159 n 0000 | goods or money obtained illegally -13262913 21 n 02 inheritance 0 heritage 2 010 @ 13252973 n 0000 ;c 08441203 n 0000 ~ 13263257 n 0000 ~ 13263375 n 0000 ~ 13263540 n 0000 ~ 13263779 n 0000 ~ 13263920 n 0000 ~ 13264076 n 0000 ~ 13264688 n 0000 %p 13264794 n 0000 | that which is inherited; a title or property or estate that passes by law to the heir on the death of the owner -13263257 21 n 01 primogeniture 0 001 @ 13262913 n 0000 | right of inheritance belongs exclusively to the eldest son -13263375 21 n 01 borough_English 0 001 @ 13262913 n 0000 | a former English custom by which the youngest son inherited land to the exclusion of his older brothers -13263540 21 n 01 accretion 0 003 @ 13262913 n 0000 ;c 08441203 n 0000 + 02535335 a 0101 | (law) an increase in a beneficiary's share in an estate (as when a co-beneficiary dies or fails to meet some condition or rejects the inheritance) -13263779 21 n 02 bequest 0 legacy 0 003 @ 13265011 n 0000 @ 13262913 n 0000 ;c 08441203 n 0000 | (law) a gift of personal property by will -13263920 21 n 02 birthright 0 patrimony 1 002 @ 13262913 n 0000 + 01314197 a 0203 | an inheritance coming by right of birth (especially by primogeniture) -13264076 21 n 01 devise 1 003 @ 13265011 n 0000 @ 13262913 n 0000 ;c 08441203 n 0000 | (law) a gift of real property by will -13264203 21 n 01 dower 0 002 @ 13251715 n 0000 + 02201268 v 0102 | a life estate to which a wife is entitled on the death of her husband -13264342 21 n 02 jointure 0 legal_jointure 0 002 @ 13250930 n 0000 ;c 08441203 n 0000 | (law) an estate secured to a prospective wife as a marriage settlement in lieu of a dower -13264522 21 n 01 free_lunch 0 001 @ 13265011 n 0000 | something acquired without effort or payment or obligation; "there is no free lunch in politics or Hollywood" -13264688 21 n 01 heirloom 0 001 @ 13262913 n 0000 | something that has been in a family for generations -13264794 21 n 01 heirloom 1 003 @ 13244109 n 0000 #p 13262913 n 0000 ;c 08441203 n 0000 | (law) any property that is considered by law or custom as inseparable from an inheritance is inherited with that inheritance -13265011 21 n 01 gift 0 019 @ 13253255 n 0000 + 02200686 v 0102 + 02474239 v 0103 ~ 13263779 n 0000 ~ 13264076 n 0000 ~ 13264522 n 0000 ~ 13265425 n 0000 ~ 13265603 n 0000 ~ 13265749 n 0000 ~ 13265904 n 0000 ~ 13268146 n 0000 ~ 13268842 n 0000 ~ 13270038 n 0000 ~ 13271498 n 0000 ~ 13271797 n 0000 ~ 13271937 n 0000 ~ 13272545 n 0000 ~ 13272712 n 0000 ~ 13272860 n 0000 | something acquired without compensation -13265425 21 n 04 dowry 0 dowery 0 dower 1 portion 1 003 @ 13265011 n 0000 + 02201268 v 0302 + 02201268 v 0202 | money or property brought by a woman to her husband at marriage -13265603 21 n 01 bride_price 0 001 @ 13265011 n 0000 | money or property given (in some societies) by the bridegroom to the family of his bride -13265749 21 n 02 largess 0 largesse 0 001 @ 13265011 n 0000 | a gift or money given (as for service or out of benevolence); usually given ostentatiously -13265904 21 n 03 aid 0 economic_aid 0 financial_aid 0 009 @ 13265011 n 0000 ~ 01086945 n 0000 ~ 01089483 n 0000 ~ 13266170 n 0000 ~ 13266348 n 0000 ~ 13266515 n 0000 ~ 13266892 n 0000 ~ 13267534 n 0000 ~ 13267816 n 0000 | money to support a worthy person or cause -13266170 21 n 01 scholarship 0 004 @ 13265904 n 0000 @ 13268146 n 0000 + 10558773 n 0101 + 10251779 n 0102 | financial aid provided to a student on the basis of academic merit -13266348 21 n 01 fellowship 0 002 @ 13265904 n 0000 @ 13268146 n 0000 | money granted (by a university or foundation or other agency) for advanced study or research -13266515 21 n 01 foreign_aid 0 003 @ 13265904 n 0000 ;c 08199025 n 0000 ~i 13266690 n 0000 | aid (such as economic or military assistance) provided to one nation by another -13266690 21 n 02 Marshall_Plan 0 European_Recovery_Program 0 001 @i 13266515 n 0000 | a United States program of economic aid for the reconstruction of Europe (1948-1952); named after George Marshall -13266892 21 n 01 grant 0 004 @ 13265904 n 0000 + 02262278 v 0102 ~ 13267014 n 0000 ~ 13267534 n 0000 | any monetary aid -13267014 21 n 01 subsidy 0 005 @ 13266892 n 0000 + 02216710 v 0101 + 02216710 v 0102 ~ 13267263 n 0000 ~ 13267411 n 0000 | a grant paid by a government to an enterprise that benefits the public; "a subsidy for research in artificial intelligence" -13267263 21 n 01 subvention 0 002 @ 13267014 n 0000 + 00889740 v 0103 | grant of financial aid as from a government to an educational institution -13267411 21 n 01 price_support 0 001 @ 13267014 n 0000 | a government subsidy used to maintain prices at a certain level -13267534 21 n 01 grant-in-aid 0 003 @ 13266892 n 0000 @ 13265904 n 0000 ~ 13267687 n 0000 | a grant to a person or school for some educational project -13267687 21 n 03 postdoctoral 0 postdoc 0 post_doc 0 001 @ 13267534 n 0000 | a grant that funds postdoctoral study or research -13267816 21 n 01 traineeship 0 002 @ 13265904 n 0000 + 10722385 n 0101 | financial aid that enables you to get trained for a specified job; "the bill provided traineeships in vocational rehabilitation" -13268020 21 n 01 gratuity 1 001 @ 13268146 n 0000 | an award (as for meritorious service) given without claim or obligation -13268146 21 n 02 prize 0 award 0 009 @ 13265011 n 0000 + 02261888 v 0201 ~ 13266170 n 0000 ~ 13266348 n 0000 ~ 13268020 n 0000 ~ 13268484 n 0000 ~ 13268683 n 0000 ~ 13268758 n 0000 ~ 13272283 n 0000 | something given for victory or superiority in a contest or competition or for winning a lottery; "the prize was a free trip to Europe" -13268484 21 n 01 door_prize 0 001 @ 13268146 n 0000 | tickets are passed out at the entrance to a dance or party or other social function and a prize is awarded to the holder of the winning ticket -13268683 21 n 01 jackpot 1 001 @ 13268146 n 0000 | any outstanding award -13268758 21 n 01 prize_money 0 001 @ 13268146 n 0000 | any money given as a prize -13268842 21 n 01 present 0 006 @ 13265011 n 0000 + 01846413 a 0101 + 02262752 v 0101 ~ 13269054 n 0000 ~ 13269186 n 0000 ~ 13269459 n 0000 | something presented as a gift; "his tie was a present from his wife" -13269054 21 n 02 birthday_present 0 birthday_gift 0 001 @ 13268842 n 0000 | a present given in celebration of a person's birthday -13269186 21 n 02 Christmas_present 0 Christmas_gift 0 002 @ 13268842 n 0000 ~ 13269318 n 0000 | a present given at Christmas time -13269318 21 n 02 stocking_filler 0 stocking_stuffer 0 001 @ 13269186 n 0000 | a small Christmas present included in the Christmas stocking -13269459 21 n 02 wedding_present 0 wedding_gift 0 002 @ 13268842 n 0000 ~ 13269596 n 0000 | a present given to someone getting married -13269596 21 n 01 bride-gift 0 001 @ 13269459 n 0000 | a wedding present to the bride -13269683 21 n 01 cash_surrender_value 0 001 @ 13331198 n 0000 | the amount that the insurance company will pay on a given life insurance policy if the policy is cancelled prior to the death of the insured -13269890 21 n 01 contribution 1 001 @ 13331198 n 0000 | an amount of money contributed; "he expected his contribution to be repaid with interest" -13270038 21 n 02 contribution 0 donation 0 005 @ 13265011 n 0000 + 02263027 v 0201 ~ 13270260 n 0000 ~ 13270373 n 0000 ~ 13270906 n 0000 | a voluntary gift (as of money or service or ideas) made to some worthwhile cause -13270260 21 n 01 benefaction 0 002 @ 13270038 n 0000 + 02548219 v 0101 | a contribution of money or assistance -13270373 21 n 01 offering 0 005 @ 13270038 n 0000 ~ 13270545 n 0000 ~ 13270648 n 0000 ~ 13270760 n 0000 ~ 13273050 n 0000 | money contributed to a religious organization -13270545 21 n 01 tithe 1 001 @ 13270373 n 0000 | an offering of a tenth part of some personal income -13270648 21 n 01 offertory 0 001 @ 13270373 n 0000 | the offerings of the congregation at a religious service -13270760 21 n 02 hearth_money 0 Peter's_pence 0 001 @ 13270373 n 0000 | an annual contribution made by Roman Catholics to support the papal see -13270906 21 n 02 political_contribution 0 political_donation 0 002 @ 13270038 n 0000 ~ 13271094 n 0000 | a contribution made to a politician or a political campaign or a political party -13271094 21 n 01 soft_money 0 001 @ 13270906 n 0000 | political contributions made in such a way as to avoid the United States regulations for federal election campaigns (as by contributions to a political action committee) -13271320 21 n 02 endowment 0 endowment_fund 0 004 @ 13353607 n 0000 + 02201268 v 0101 ~ 13271631 n 0000 ~ 13271705 n 0000 | the capital that provides income for an institution -13271498 21 n 01 enrichment 0 002 @ 13265011 n 0000 + 02318648 v 0101 | a gift that significantly increases the recipient's wealth -13271631 21 n 01 patrimony 2 001 @ 13271320 n 0000 | a church endowment -13271705 21 n 01 chantry 0 001 @ 13271320 n 0000 | an endowment for the singing of Masses -13271797 21 n 01 lagniappe 0 001 @ 13265011 n 0000 | a small gift (especially one given by a merchant to a customer who makes a purchase) -13271937 21 n 02 bestowal 0 bestowment 0 002 @ 13265011 n 0000 + 02263692 v 0201 | a gift that is bestowed or conferred -13272059 21 n 02 bounty 0 premium 1 002 @ 13283764 n 0000 ;c 01124794 n 0000 | payment or reward (especially from a government) for acts such as catching criminals or killing predatory animals or enlisting in the military -13272283 21 n 01 premium 4 002 @ 13273154 n 0000 @ 13268146 n 0000 | a prize, bonus, or award given as an inducement to purchase products, enter competitions initiated by business interests, etc.; "they encouraged customers with a premium for loyal patronage" -13272545 21 n 02 freebie 0 freebee 0 001 @ 13265011 n 0000 | something that is free (usually provided as part of a promotional scheme); "the road map was a freebie" -13272712 21 n 01 giveaway 0 002 @ 13265011 n 0000 ;u 07075172 n 0000 | a gift of public land or resources for the private gain of a limited group -13272860 21 n 01 gift_horse 0 001 @ 13265011 n 0000 | a gift (usually of inferior quality) that should be accepted uncritically; "it wasn't much, but don't look a gift horse in the mouth" -13273050 21 n 01 thank_offering 0 001 @ 13270373 n 0000 | an offering made as an expression of thanks -13273154 21 n 02 bonus 0 incentive 0 005 @ 13278375 n 0000 #p 13273381 n 0000 ~ 13272283 n 0000 ~ 13273836 n 0000 ~ 13273949 n 0000 | an additional payment (or other remuneration) to employees as a means of increasing output -13273381 21 n 02 incentive_program 0 incentive_scheme 0 002 @ 05905348 n 0000 %p 13273154 n 0000 | a formal scheme for inducing someone (as employees) to do something -13273550 21 n 01 deductible 0 003 @ 13331198 n 0000 ;c 13308999 n 0000 + 00689673 a 0101 | (taxes) an amount that can be deducted (especially for the purposes of calculating income tax) -13273738 21 n 01 defalcation 0 001 @ 13331198 n 0000 | the sum of money that is misappropriated -13273836 21 n 01 dividend 1 001 @ 13273154 n 0000 | a bonus; something extra (especially a share of a surplus) -13273949 21 n 01 sales_incentive 0 001 @ 13273154 n 0000 | remuneration offered to a salesperson for exceeding some predetermined sales goal -13274092 21 n 02 allowance 1 adjustment 0 007 @ 13282007 n 0000 + 00699334 v 0201 ~ 13274364 n 0000 ~ 13274487 n 0000 ~ 13274597 n 0000 ~ 13274892 n 0000 ~ 13275137 n 0000 | an amount added or deducted on the basis of qualifying circumstances; "an allowance for profit" -13274364 21 n 01 cost-of-living_allowance 0 001 @ 13274092 n 0000 | an allowance for changes in the consumer price index -13274487 21 n 01 depreciation_allowance 0 001 @ 13274092 n 0000 | an allowance for loss due to depreciation -13274597 21 n 02 deduction 0 discount 0 003 @ 13274092 n 0000 + 02319428 v 0201 ~ 13274732 n 0000 | an amount or percentage deducted -13274732 21 n 01 trade_discount 0 001 @ 13274597 n 0000 | a discount from the list price of a commodity allowed by a manufacturer or wholesaler to a merchant -13274892 21 n 01 seasonal_adjustment 0 001 @ 13274092 n 0000 | a statistical adjustment made to accommodate predictable fluctuations as a function of the season of the year; "seasonal adjustments for housing starts must be made in mid-winter" -13275137 21 n 01 tare 0 001 @ 13274092 n 0000 | an adjustment made for the weight of the packaging in order to determine the net weight of the goods -13275288 21 n 04 outgo 0 spending 0 expenditure 0 outlay 1 006 @ 13252973 n 0000 + 02267060 v 0302 ! 13255145 n 0101 ~ 13275847 n 0000 ~ 13277886 n 0000 ~ 13278100 n 0000 | money paid out; an amount spent -13275495 21 n 03 expense 0 disbursal 0 disbursement 0 010 @ 13275847 n 0000 + 02301502 v 0301 ~ 13276330 n 0000 ~ 13276519 n 0000 ~ 13276604 n 0000 ~ 13276778 n 0000 ~ 13276913 n 0000 ~ 13277056 n 0000 ~ 13277179 n 0000 ~ 13277644 n 0000 | amounts paid for goods and services that may be currently tax deductible (as opposed to capital expenditures) -13275847 21 n 01 cost 0 021 @ 13275288 n 0000 + 02702508 v 0101 ~ 13275495 n 0000 ~ 13278275 n 0000 ~ 13278375 n 0000 ~ 13284048 n 0000 ~ 13301835 n 0000 ~ 13302001 n 0000 ~ 13302201 n 0000 ~ 13302293 n 0000 ~ 13302467 n 0000 ~ 13302621 n 0000 ~ 13302775 n 0000 ~ 13302905 n 0000 ~ 13303045 n 0000 ~ 13303214 n 0000 ~ 13303315 n 0000 ~ 13303759 n 0000 ~ 13305794 n 0000 ~ 13306346 n 0000 ~ 13306870 n 0000 | the total spent for goods or services including money and time and labor -13276330 21 n 02 business_expense 0 trade_expense 0 003 @ 13275495 n 0000 ~ 13277492 n 0000 ~ 13277789 n 0000 | ordinary and necessary expenses incurred in a taxpayer's business or trade -13276519 21 n 01 interest_expense 0 001 @ 13275495 n 0000 | interest paid on loans -13276604 21 n 01 lobbying_expense 0 001 @ 13275495 n 0000 | expenses incurred in promoting or evaluating legislation; "many lobbying expenses are deductible by a taxpayer" -13276778 21 n 01 medical_expense 0 001 @ 13275495 n 0000 | amount spent for diagnosis or treatment or prevention of medical problems -13276913 21 n 01 non-cash_expense 0 002 @ 13275495 n 0000 ~ 13328357 n 0000 | an expense (such as depreciation) that is not paid for in cash -13277056 21 n 01 moving_expense 0 001 @ 13275495 n 0000 | the cost of moving your residence from one location to another -13277179 21 n 04 operating_expense 0 operating_cost 0 overhead 0 budget_items 0 003 @ 13275495 n 0000 #p 13422234 n 0000 ;c 13308999 n 0000 | the expense of maintaining property (e.g., paying property taxes and utilities and insurance); it does not include depreciation or the cost of financing or income taxes -13277492 21 n 01 organization_expense 0 001 @ 13276330 n 0000 | the cost (over a period of five years) of organizing a new corporation or partnership -13277644 21 n 01 personal_expense 0 001 @ 13275495 n 0000 | the cost of personal or family living; "some personal expenses are tax deductible" -13277789 21 n 01 promotional_expense 0 001 @ 13276330 n 0000 | the cost of promoting a product -13277886 21 n 01 expense 1 003 @ 13275288 n 0000 ~ 13306436 n 0000 ~ 13306669 n 0000 | money spent to perform work and usually reimbursed by an employer; "he kept a careful record of his expenses at the meeting" -13278100 21 n 01 transfer_payment 0 001 @ 13275288 n 0000 | a public expenditure (as for unemployment compensation or veteran's benefits) that is not for goods and services -13278275 21 n 01 capital_expenditure 0 001 @ 13275847 n 0000 | the cost of long-term improvements -13278375 21 n 01 payment 0 033 @ 13275847 n 0000 + 02253154 v 0101 + 02252931 v 0103 + 02251743 v 0101 ! 13300141 n 0101 ~ 13257982 n 0000 ~ 13273154 n 0000 ~ 13279046 n 0000 ~ 13279162 n 0000 ~ 13281130 n 0000 ~ 13281275 n 0000 ~ 13281925 n 0000 ~ 13282007 n 0000 ~ 13282161 n 0000 ~ 13283187 n 0000 ~ 13283314 n 0000 ~ 13283764 n 0000 ~ 13284562 n 0000 ~ 13292989 n 0000 ~ 13296899 n 0000 ~ 13299248 n 0000 ~ 13299357 n 0000 ~ 13299453 n 0000 ~ 13299651 n 0000 ~ 13300025 n 0000 ~ 13300555 n 0000 ~ 13300711 n 0000 ~ 13301620 n 0000 ~ 13301715 n 0000 ~ 13349834 n 0000 ~ 13349997 n 0000 ~ 13374281 n 0000 ~ 13386465 n 0000 | a sum of money paid or a claim discharged -13279046 21 n 01 overpayment 0 002 @ 13278375 n 0000 + 02250077 v 0101 | a payment larger than needed or expected -13279162 21 n 01 underpayment 0 001 @ 13278375 n 0000 | a payment smaller than needed or expected -13279262 21 n 05 wage 0 pay 1 earnings 0 remuneration 0 salary 0 019 @ 13281275 n 0000 #p 13412721 n 0000 + 02249741 v 0403 + 02290196 v 0301 + 02291708 v 0202 + 02252931 v 0203 + 02253456 v 0201 + 02251743 v 0201 ~ 13279809 n 0000 ~ 13279913 n 0000 ~ 13280008 n 0000 ~ 13280139 n 0000 ~ 13280251 n 0000 ~ 13280373 n 0000 ~ 13280515 n 0000 ~ 13280658 n 0000 ~ 13280795 n 0000 ~ 13280896 n 0000 ~ 13280992 n 0000 | something that remunerates; "wages were paid by check"; "he wasted his pay on drink"; "they saved a quarter of all their earnings" -13279809 21 n 01 combat_pay 0 001 @ 13279262 n 0000 | extra pay for soldiers engaged in active combat -13279913 21 n 01 double_time 0 001 @ 13279262 n 0000 | a doubled wage (for working overtime) -13280008 21 n 01 found 0 001 @ 13279262 n 0000 | food and lodging provided in addition to money; "they worked for $30 and found" -13280139 21 n 01 half-pay 0 001 @ 13279262 n 0000 | reduced wage paid to someone who is not working full time -13280251 21 n 01 living_wage 0 001 @ 13279262 n 0000 | a wage sufficient for a worker and family to subsist comfortably -13280373 21 n 01 merit_pay 0 001 @ 13279262 n 0000 | extra pay awarded to an employee on the basis of merit (especially to school teachers) -13280515 21 n 01 minimum_wage 0 001 @ 13279262 n 0000 | the lowest wage that an employer is allowed to pay; determined by contract or by law -13280658 21 n 02 pay_envelope 0 pay_packet 0 001 @ 13279262 n 0000 | wages enclosed in an envelope for distribution to the wage earner -13280795 21 n 01 sick_pay 0 001 @ 13279262 n 0000 | wages paid to an employee who is on sick leave -13280896 21 n 01 strike_pay 0 001 @ 13279262 n 0000 | money paid to strikers from union funds -13280992 21 n 01 take-home_pay 0 001 @ 13279262 n 0000 | what is left of your pay after deductions for taxes and dues and insurance etc -13281130 21 n 01 subscription 0 001 @ 13278375 n 0000 | a payment for consecutive issues of a newspaper or magazine for a given period of time -13281275 21 n 01 regular_payment 0 007 @ 13278375 n 0000 ~ 13279262 n 0000 ~ 13294135 n 0000 ~ 13294503 n 0000 ~ 13296593 n 0000 ~ 13383855 n 0000 ~ 13384164 n 0000 | a payment made at regular times -13281476 21 n 02 pay_rate 0 rate_of_pay 0 002 @ 13325010 n 0000 ~ 13281641 n 0000 | amount of money received per unit time; "women's pay rate is lower than men's" -13281641 21 n 01 time_and_a_half 0 001 @ 13281476 n 0000 | a rate of pay that is 1.5 times the regular rate; for overtime work -13281770 21 n 04 payment_rate 0 rate_of_payment 0 repayment_rate 0 installment_rate 0 001 @ 13325010 n 0000 | the amount of money paid out per unit time -13281925 21 n 01 blood_money 3 001 @ 13278375 n 0000 | paid to a hired murderer -13282007 21 n 01 recompense 0 004 @ 13278375 n 0000 + 02249741 v 0102 ~ 13274092 n 0000 ~ 13282550 n 0000 | payment or reward (as for service rendered) -13282161 21 n 01 refund 0 003 @ 13278375 n 0000 + 02284951 v 0101 ~ 13282275 n 0000 | money returned to a payer -13282275 21 n 02 rebate 0 discount 2 003 @ 13282161 n 0000 + 02320200 v 0101 ~ 13282419 n 0000 | a refund of some fraction of the amount paid -13282419 21 n 01 rent-rebate 0 002 @ 13282275 n 0000 ;r 08860123 n 0000 | a rebate on rent given by a local government authority -13282550 21 n 01 compensation 0 014 @ 13282007 n 0000 + 02519991 v 0102 + 02253456 v 0104 + 02250625 v 0101 + 02249741 v 0101 ~ 13282948 n 0000 ~ 13283033 n 0000 ~ 13290002 n 0000 ~ 13290285 n 0000 ~ 13290566 n 0000 ~ 13290676 n 0000 ~ 13291189 n 0000 ~ 13292390 n 0000 ~ 13292613 n 0000 | something (such as money) given or received as payment or reparation (as for a service or loss or injury) -13282948 21 n 01 overcompensation 0 001 @ 13282550 n 0000 | excessive compensation -13283033 21 n 01 workmen's_compensation 0 001 @ 13282550 n 0000 | compensation for death or injury suffered by a worker in the course of his employment -13283187 21 n 01 conscience_money 0 001 @ 13278375 n 0000 | payment made voluntarily to reduce guilt over dishonest dealings -13283314 21 n 01 support_payment 0 004 @ 13278375 n 0000 ~ 13283485 n 0000 ~ 13283620 n 0000 ~ 13299071 n 0000 | a payment made by one person for the support of another -13283485 21 n 01 palimony 0 001 @ 13283314 n 0000 | support paid by one half of an unmarried partnership after the relationship ends -13283620 21 n 02 alimony 0 maintenance 1 001 @ 13283314 n 0000 | court-ordered support paid by one spouse to another after they are separated -13283764 21 n 01 reward 0 006 @ 13278375 n 0000 ~ 13272059 n 0000 ~ 13283952 n 0000 ~ 13284184 n 0000 ~ 13284283 n 0000 ~ 13284356 n 0000 | payment made in return for a service rendered -13283952 21 n 01 honorarium 0 001 @ 13283764 n 0000 | a fee paid for a nominally free service -13284048 21 n 02 ransom 0 ransom_money 0 002 @ 13275847 n 0000 + 02256998 v 0101 | money demanded for the return of a captured person -13284184 21 n 01 blood_money 2 001 @ 13283764 n 0000 | a reward for information about a murderer -13284283 21 n 01 guerdon 0 001 @ 13283764 n 0000 | a reward or payment -13284356 21 n 01 meed 0 002 @ 13283764 n 0000 ;u 07073447 n 0000 | a fitting reward -13284442 21 n 01 hush_money 0 001 @ 13284562 n 0000 | a bribe paid to someone to insure that something is kept secret -13284562 21 n 02 bribe 0 payoff 1 006 @ 13278375 n 0000 + 02284096 v 0101 ~ 13284442 n 0000 ~ 13284784 n 0000 ~ 13284973 n 0000 ~ 13285101 n 0000 | payment made to a person in a position of trust to corrupt his judgment -13284784 21 n 01 kickback 0 002 @ 13284562 n 0000 + 02355259 v 0101 | a commercial bribe paid by a seller to a purchasing agent in order to induce the agent to enter into the transaction -13284973 21 n 01 payola 0 001 @ 13284562 n 0000 | a bribe given to a disc jockey to induce him to promote a particular record -13285101 21 n 01 soap 0 001 @ 13284562 n 0000 | money offered as a bribe -13285176 21 n 04 share 0 portion 0 part 0 percentage 0 015 @ 13329641 n 0000 #p 13258362 n 0000 + 02295208 v 0102 ~ 13285619 n 0000 ~ 13285714 n 0000 ~ 13285855 n 0000 ~ 13285973 n 0000 ~ 13286099 n 0000 ~ 13286254 n 0000 ~ 13286524 n 0000 ~ 13286640 n 0000 ~ 13286801 n 0000 ~ 13289020 n 0000 ~ 13289159 n 0000 ~ 13289467 n 0000 | assets belonging to or due to or contributed by an individual person or group; "he wanted his share in cash" -13285619 21 n 01 tranche 0 001 @ 13285176 n 0000 | a portion of something (especially money) -13285714 21 n 01 dispensation 0 003 @ 13285176 n 0000 + 02294436 v 0107 + 00081072 v 0102 | a share that has been dispensed or distributed -13285855 21 n 01 dole 0 001 @ 13285176 n 0000 | a share of money or food or clothing that has been charitably given -13285973 21 n 01 way 0 001 @ 13285176 n 0000 | a portion of something divided into shares; "they split the loot three ways" -13286099 21 n 01 ration 0 003 @ 13285176 n 0000 + 02234803 v 0101 + 02234988 v 0101 | a fixed portion that is allotted (especially in times of scarcity) -13286254 21 n 01 allowance 0 004 @ 13285176 n 0000 + 02255821 v 0101 + 00724150 v 0101 ~ 13294302 n 0000 | an amount allowed or granted (as during a given period); "travel allowance"; "my weekly allowance of two eggs"; "a child's allowance should not be too generous" -13286524 21 n 02 slice 0 piece 0 001 @ 13285176 n 0000 | a share of something; "a slice of the company's revenue" -13286640 21 n 01 split 0 002 @ 13285176 n 0000 + 02467662 v 0102 | a promised or claimed share of loot or money; "he demanded his split before they disbanded" -13286801 21 n 02 interest 3 stake 2 013 @ 13285176 n 0000 ;c 08441203 n 0000 ~ 13287239 n 0000 ~ 13287414 n 0000 ~ 13287540 n 0000 ~ 13287787 n 0000 ~ 13287984 n 0000 ~ 13288206 n 0000 ~ 13288337 n 0000 ~ 13288529 n 0000 ~ 13333420 n 0000 ~ 13341350 n 0000 ~ 13341756 n 0000 | (law) a right or legal share of something; a financial involvement with something; "they have interests all over the world"; "a stake in the company's future" -13287239 21 n 01 grubstake 0 002 @ 13286801 n 0000 + 02216232 v 0101 | funds advanced to a prospector or to someone starting a business in return for a share of the profits -13287414 21 n 01 controlling_interest 0 001 @ 13286801 n 0000 | ownership of more than 50% of a corporation's voting shares -13287540 21 n 01 insurable_interest 0 001 @ 13286801 n 0000 | an interest in a person or thing that will support the issuance of an insurance policy; an interest in the survival of the insured or in the preservation of the thing that is insured -13287787 21 n 01 vested_interest 0 002 @ 13286801 n 0000 ;c 08441203 n 0000 | (law) an interest in which there is a fixed right to present or future enjoyment and that can be conveyed to another -13287984 21 n 01 security_interest 0 006 @ 13286801 n 0000 ~ 13350702 n 0000 ~ 13352138 n 0000 ~ 13352341 n 0000 ~ 13352865 n 0000 ~ 13401013 n 0000 | any interest in a property that secures the payment of an obligation -13288206 21 n 01 terminable_interest 0 001 @ 13286801 n 0000 | an interest in property that terminates under specific conditions -13288337 21 n 02 undivided_interest 0 undivided_right 0 001 @ 13286801 n 0000 | the interest in property owned by tenants whereby each tenant has an equal right to enjoy the entire property -13288529 21 n 01 fee 1 003 @ 13286801 n 0000 ~ 13288661 n 0000 ~ 13288798 n 0000 | an interest in land capable of being inherited -13288661 21 n 01 fee_simple 0 001 @ 13288529 n 0000 | a fee without limitation to any class of heirs; they can sell it or give it away -13288798 21 n 01 fee_tail 0 001 @ 13288529 n 0000 | a fee limited to a particular line of heirs; they are not free to sell it or give it away -13288942 21 n 01 entail 0 001 @ 13246662 n 0000 | land received by fee tail -13289020 21 n 01 profit_sharing 0 001 @ 13285176 n 0000 | a system in which employees receive a share of the net profits of the business -13289159 21 n 01 cut 0 003 @ 13285176 n 0000 #p 13262663 n 0000 ~ 13289306 n 0000 | a share of the profits; "everyone got a cut of the earnings" -13289306 21 n 02 rake-off 0 vigorish 1 002 @ 13289159 n 0000 + 02284662 v 0101 | a percentage (of winnings or loot or profit) taken by an operator or gangster -13289467 21 n 02 allotment 0 allocation 0 004 @ 13285176 n 0000 + 02234087 v 0201 ~ 13289630 n 0000 ~ 13289744 n 0000 | a share set aside for a specific purpose -13289630 21 n 01 reallocation 0 002 @ 13289467 n 0000 + 02234551 v 0102 | a share that has been allocated again -13289744 21 n 01 quota 0 001 @ 13289467 n 0000 | a proportional share assigned to each participant -13289845 21 n 01 appropriation 0 003 @ 13384557 n 0000 ;c 08163273 n 0000 ~ 13358000 n 0000 | money set aside (as by a legislature) for a specific purpose -13290002 21 n 01 reimbursement 0 006 @ 13282550 n 0000 + 02249591 v 0102 + 02285205 v 0101 ~ 13293377 n 0000 ~ 13293512 n 0000 ~ 13293625 n 0000 | compensation paid (to someone) for damages or losses or money already spent etc.; "he received reimbursement for his travel expenses" -13290285 21 n 01 emolument 0 001 @ 13282550 n 0000 | compensation received by virtue of holding an office or having employment (usually in the form of wages or fees); "a clause in the U.S. constitution prevents sitting legislators from receiving emoluments from their own votes" -13290566 21 n 01 blood_money 1 001 @ 13282550 n 0000 | compensation paid to the family of a murdered person -13290676 21 n 06 damages 0 amends 0 indemnity 0 indemnification 0 restitution 0 redress 0 009 @ 13282550 n 0000 + 02519991 v 0603 + 02250625 v 0404 + 02250625 v 0304 ~ 13290991 n 0000 ~ 13291356 n 0000 ~ 13291614 n 0000 ~ 13291831 n 0000 ~ 13292787 n 0000 | a sum of money paid in compensation for loss or injury -13290991 21 n 01 relief 0 002 @ 13290676 n 0000 ;c 08441203 n 0000 | (law) redress awarded by a court; "was the relief supposed to be protection from future harm or compensation for past injury?" -13291189 21 n 02 counterbalance 0 offset 0 005 @ 13282550 n 0000 + 02717831 v 0202 + 02718015 v 0201 + 02543874 v 0104 + 02672540 v 0102 | a compensating equivalent -13291356 21 n 03 actual_damages 0 compensatory_damages 0 general_damages 0 002 @ 13290676 n 0000 ;c 08441203 n 0000 | (law) compensation for losses that can readily be proven to have occurred and for which the injured party has the right to be compensated -13291614 21 n 01 nominal_damages 0 002 @ 13290676 n 0000 ;c 08441203 n 0000 | (law) a trivial sum (usually $1.00) awarded as recognition that a legal injury was sustained (as for technical violations of a contract) -13291831 21 n 03 punitive_damages 0 exemplary_damages 0 smart_money 1 004 @ 13290676 n 0000 ;c 08441203 n 0000 ~ 13292104 n 0000 ~ 13292244 n 0000 | (law) compensation in excess of actual damages (a form of punishment awarded in cases of malicious or willful misconduct) -13292104 21 n 01 double_damages 0 001 @ 13291831 n 0000 | twice the amount that a court would normally find the injured party entitled to -13292244 21 n 01 treble_damages 0 001 @ 13291831 n 0000 | three times the amount that a court would normally find the injured party entitled to -13292390 21 n 01 reparation 0 002 @ 13282550 n 0000 ;u 06295235 n 0000 | (usually plural) compensation exacted from a defeated nation by the victors; "Germany was unable to pay the reparations demanded after World War I" -13292613 21 n 01 reparation 1 002 @ 13282550 n 0000 + 02250625 v 0103 | compensation (given or received) for an insult or injury; "an act for which there is no reparation" -13292787 21 n 03 atonement 0 expiation 0 satisfaction 0 003 @ 13290676 n 0000 + 02520509 v 0201 + 02520509 v 0104 | compensation for a wrong; "we were unable to get satisfaction from the local store" -13292989 21 n 01 residual 0 002 @ 13278375 n 0000 ;u 06295235 n 0000 | (often plural) a payment that is made to a performer or writer or director of a television show or commercial that is paid for every repeat showing; "he could retire on his residuals" -13293246 21 n 02 poverty_line 0 poverty_level 0 001 @ 13259359 n 0000 | a level of personal income defining the state of poverty -13293377 21 n 01 allowance 2 003 @ 13290002 n 0000 ~ 13293752 n 0000 ~ 13293901 n 0000 | a sum granted as reimbursement for expenses -13293512 21 n 01 breakage 0 001 @ 13290002 n 0000 | reimbursement for goods damaged while in transit or in use -13293625 21 n 01 costs 0 001 @ 13290002 n 0000 | pecuniary reimbursement to the winning party for the expenses of litigation -13293752 21 n 01 per_diem 0 001 @ 13293377 n 0000 | a daily allowance for living expenses (especially while traveling in connection with your job) -13293901 21 n 02 travel_allowance 0 travel_reimbursement 0 002 @ 13293377 n 0000 ~ 13294029 n 0000 | a sum allowed for travel -13294029 21 n 01 mileage 0 001 @ 13293901 n 0000 | a travel allowance at a given rate per mile traveled -13294135 21 n 01 stipend 0 003 @ 13281275 n 0000 + 03120681 a 0101 ~ 13294403 n 0000 | a sum of money allotted on a regular basis; usually for some specific purpose -13294302 21 n 01 privy_purse 0 001 @ 13286254 n 0000 | allowance for a monarch's personal expenses -13294403 21 n 01 prebend 0 001 @ 13294135 n 0000 | the stipend assigned by a cathedral to a canon -13294503 21 n 02 annuity 0 rente 1 005 @ 13281275 n 0000 ~ 13294763 n 0000 ~ 13295025 n 0000 ~ 13295183 n 0000 ~ 13295360 n 0000 | income from capital investment paid in a series of regular payments; "his retirement fund was set up to be paid as an annuity" -13294763 21 n 01 annuity_in_advance 0 002 @ 13294503 n 0000 ~ 13295657 n 0000 | an annuity paid in a series of more or less equal payments at the beginning of equally spaced periods; "rent payable in advance constitutes an annuity in advance for the landlord" -13295025 21 n 01 ordinary_annuity 0 001 @ 13294503 n 0000 | an annuity paid in a series of more or less equal payments at the end of equally spaced periods -13295183 21 n 02 reversionary_annuity 0 survivorship_annuity 0 001 @ 13294503 n 0000 | an annuity payable to one person in the event that someone else is unable to receive it -13295360 21 n 01 tontine 0 001 @ 13294503 n 0000 | an annuity scheme wherein participants share certain benefits and on the death of any participant his benefits are redistributed among the remaining participants; can run for a fixed period of time or until the death of all but one participant -13295657 21 n 01 rent 0 009 @ 13294763 n 0000 + 02892033 a 0101 + 02460619 v 0101 + 02208537 v 0102 + 02208903 v 0103 + 02460199 v 0101 ~ 13295972 n 0000 ~ 13296089 n 0000 ~ 13296194 n 0000 | a payment or series of payments made by the lessee to an owner for use of some property, facility, equipment, or service -13295972 21 n 01 ground_rent 0 001 @ 13295657 n 0000 | payment for the right to occupy and improve a piece of land -13296089 21 n 01 peppercorn_rent 0 002 @ 13295657 n 0000 ;r 08860123 n 0000 | very low or nominal rent -13296194 21 n 01 rack_rent 0 001 @ 13295657 n 0000 | an extortionate rent -13296270 21 n 02 economic_rent 0 rent 1 001 @ 13260190 n 0000 | the return derived from cultivated land in excess of that derived from the poorest land cultivated under similar conditions -13296460 21 n 01 payback 0 001 @ 13260190 n 0000 | financial return or reward (especially returns equal to the initial investment) -13296593 21 n 03 installment_plan 0 installment_buying 0 time_plan 0 002 @ 13281275 n 0000 ~ 13296752 n 0000 | a system for paying for goods by installments -13296752 21 n 02 hire-purchase 0 never-never 0 002 @ 13296593 n 0000 ;r 08860123 n 0000 | installment plan; "we bought a car on the never-never" -13296899 21 n 01 benefit 0 007 @ 13278375 n 0000 ~ 13241940 n 0000 ~ 13297097 n 0000 ~ 13297254 n 0000 ~ 13297740 n 0000 ~ 13297850 n 0000 ~ 13298011 n 0000 | financial assistance in time of need -13297097 21 n 01 cost-of-living_benefit 0 001 @ 13296899 n 0000 | a benefit that goes to anyone whose money receipts increase automatically as prices rise -13297254 21 n 01 death_benefit 0 002 @ 13296899 n 0000 ~ 13297397 n 0000 | insurance or pension money payable to a beneficiary of a deceased -13297397 21 n 01 advance_death_benefit 0 002 @ 13297254 n 0000 ~ 13297595 n 0000 | a percentage of death benefits paid directly to policy holders having a short life expectancy (usually 6 months) -13297595 21 n 01 viatical_settlement 2 001 @ 13297397 n 0000 | cash derived from sale of an insurance policy by a terminally ill policy holder -13297740 21 n 01 disability_benefit 0 001 @ 13296899 n 0000 | insurance benefits paid in case of disability -13297850 21 n 02 sick_benefit 0 sickness_benefit 0 002 @ 13296899 n 0000 ;r 08860123 n 0000 | money paid (by the government) to someone who is too ill to work -13298011 21 n 03 fringe_benefit 0 perquisite 0 perk 0 003 @ 13296899 n 0000 ~ 13298287 n 0000 ~ 13298701 n 0000 | an incidental benefit awarded for certain types of employment (especially if it is regarded as a right); "a limousine is one of the fringe benefits of the job" -13298287 21 n 02 appanage 1 apanage 1 001 @ 13298011 n 0000 | any customary and rightful perquisite appropriate to your station in life; "for thousands of years the chair was an appanage of state and dignity rather than an article of ordinary use" -13298537 21 n 02 tax_benefit 0 tax_break 0 001 @ 13329047 n 0000 | a tax deduction that is granted in order to encourage a particular type of commercial activity -13298701 21 n 07 gratuity 0 tip 0 pourboire 0 baksheesh 0 bakshish 0 bakshis 0 backsheesh 0 003 @ 13298011 n 0000 + 02202133 v 0201 ~ 13298935 n 0000 | a relatively small amount of money given for services rendered (as by a waiter) -13298935 21 n 01 Christmas_box 0 002 @ 13298701 n 0000 ;r 08860123 n 0000 | a present given at Christmas for services during the year -13299071 21 n 01 child_support 0 001 @ 13283314 n 0000 | court-ordered support paid by one spouse to the other who has custody of the children after the parents are separated -13299248 21 n 01 lump_sum 0 001 @ 13278375 n 0000 | a complete payment consisting of a single sum of money -13299357 21 n 02 payoff 0 final_payment 0 001 @ 13278375 n 0000 | the final payment of a debt -13299453 21 n 04 remittance 0 remittal 0 remission 0 remitment 0 004 @ 13278375 n 0000 + 02255081 v 0401 + 02255081 v 0201 + 02255081 v 0101 | a payment of money sent to a person in another place -13299651 21 n 02 repayment 0 quittance 0 004 @ 13278375 n 0000 + 02344060 v 0102 + 02284951 v 0103 ~ 13299804 n 0000 | payment of a debt or obligation -13299804 21 n 01 redemption 0 003 @ 13299651 n 0000 ;c 08059412 n 0000 + 02256853 v 0101 | repayment of the principal amount of a debt or security at or before maturity (as when a corporation repurchases its own stock) -13300025 21 n 01 token_payment 0 001 @ 13278375 n 0000 | a small payment made in acknowledgement of an obligation -13300141 21 n 03 nonpayment 0 default 0 nonremittal 0 004 @ 13327896 n 0000 + 02253766 v 0201 ! 13278375 n 0101 ~ 13300324 n 0000 | loss resulting from failure of a debt to be paid -13300324 21 n 01 delinquency 0 001 @ 13300141 n 0000 | nonpayment of a debt when due -13300411 21 n 03 default 2 nonpayment 2 nonremittal 2 002 @ 00066636 n 0000 + 02253766 v 0101 | act of failing to meet a financial obligation -13300555 21 n 01 penalty 0 004 @ 13278375 n 0000 ~ 13300828 n 0000 ~ 13300922 n 0000 ~ 13301328 n 0000 | a payment required for not fulfilling a contract -13300711 21 n 01 pittance 0 001 @ 13278375 n 0000 | an inadequate payment; "they work all day for a mere pittance" -13300828 21 n 02 retribution 0 requital 0 001 @ 13300555 n 0000 | a justly deserved penalty -13300922 21 n 02 forfeit 0 forfeiture 0 003 @ 13300555 n 0000 + 02303331 v 0201 + 02303331 v 0101 | a penalty for a fault or mistake that involves losing or giving up something; "the contract specified forfeits if the work was not completed on time" -13301174 21 n 02 forfeit 1 forfeiture 1 003 @ 13327676 n 0000 + 02303331 v 0201 + 02303331 v 0101 | something that is lost or surrendered as a penalty; -13301328 21 n 03 fine 0 mulct 0 amercement 0 005 @ 13300555 n 0000 + 02498987 v 0301 + 02307412 v 0201 + 02498716 v 0102 ~ 13301500 n 0000 | money extracted as a penalty -13301500 21 n 01 library_fine 0 001 @ 13301328 n 0000 | fine imposed by a library on books that overdue when returned -13301620 21 n 02 premium 2 insurance_premium 0 001 @ 13278375 n 0000 | payment for insurance -13301715 21 n 01 installment 0 001 @ 13278375 n 0000 | a payment of part of a debt; usually paid at regular intervals -13301835 21 n 01 cost_overrun 0 001 @ 13275847 n 0000 | excess of cost over budget; "the cost overrun necessitated an additional allocation of funds in the budget" -13302001 21 n 01 cost_of_living 0 001 @ 13275847 n 0000 | average cost of basic necessities of life (as food and shelter and clothing); "a rise in the cost of living reflects the rate of inflation" -13302201 21 n 01 borrowing_cost 0 001 @ 13275847 n 0000 | the cost of borrowing something -13302293 21 n 01 distribution_cost 0 001 @ 13275847 n 0000 | any cost incurred by a producer or wholesaler or retailer or distributor (as for advertising and shipping etc) -13302467 21 n 02 handling_cost 0 handling_charge 0 001 @ 13275847 n 0000 | the cost of handling (especially the cost of packaging and mailing an order) -13302621 21 n 01 marketing_cost 0 001 @ 13275847 n 0000 | the cost of marketing (e.g., the cost of transferring title and moving goods to the customer) -13302775 21 n 01 production_cost 0 001 @ 13275847 n 0000 | combined costs of raw material and labor incurred in producing goods -13302905 21 n 01 replacement_cost 0 001 @ 13275847 n 0000 | current cost of replacing a fixed asset with a new one of equal effectiveness -13303045 21 n 02 reproduction_cost 0 physical_value 0 001 @ 13275847 n 0000 | cost of reproducing physical property minus various allowances (especially depreciation) -13303214 21 n 01 unit_cost 0 001 @ 13275847 n 0000 | calculated cost for a given unit of a product -13303315 21 n 03 price 0 terms 0 damage 0 014 @ 13275847 n 0000 + 00933599 a 0105 + 00933599 a 0104 + 00721889 v 0101 + 02351010 v 0101 ~ 13304009 n 0000 ~ 13304186 n 0000 ~ 13304340 n 0000 ~ 13304819 n 0000 ~ 13304927 n 0000 ~ 13305262 n 0000 ~ 13305373 n 0000 ~ 13305510 n 0000 ~ 13305673 n 0000 | the amount of money needed to purchase something; "the price of gasoline"; "he got his new car on excellent terms"; "how much is the damage?" -13303759 21 n 01 price 2 001 @ 13275847 n 0000 | cost of bribing someone; "they say that every politician has a price" -13303880 21 n 01 markup 0 002 @ 13258362 n 0000 + 02319824 v 0101 | the amount added to the cost to determine the asking price -13304009 21 n 02 asking_price 0 selling_price 0 004 @ 13303315 n 0000 ~ 13304508 n 0000 ~ 13304665 n 0000 ~ 13305070 n 0000 | the price at which something is offered for sale -13304186 21 n 01 bid_price 0 002 @ 13303315 n 0000 ;c 04323026 n 0000 | (stock market) the price at which a broker is willing to buy a certain security -13304340 21 n 01 closing_price 0 002 @ 13303315 n 0000 ;c 04323026 n 0000 | (stock market) the price of the last transaction completed during a day's trading session -13304508 21 n 01 offer_price 0 002 @ 13304009 n 0000 ;c 04323026 n 0000 | (stock market) the price at which a broker is willing to sell a certain security -13304665 21 n 01 upset_price 0 002 @ 13304009 n 0000 ;c 00092366 n 0000 | (auction) the minimum price at which a seller of property will entertain bids -13304819 21 n 01 factory_price 0 001 @ 13303315 n 0000 | price charged for goods picked up at the factory -13304927 21 n 01 highway_robbery 0 001 @ 13303315 n 0000 | an exorbitant price; "what they are asking for gas these days is highway robbery" -13305070 21 n 01 list_price 0 001 @ 13304009 n 0000 | the selling price of something as stated in a catalogue or price list; often subject to discounts; "I got it at 30% off the list price" -13305262 21 n 01 purchase_price 0 001 @ 13303315 n 0000 | the price at which something is actually purchased -13305373 21 n 02 spot_price 0 cash_price 0 001 @ 13303315 n 0000 | the current delivery price of a commodity traded in the spot market -13305510 21 n 01 support_level 0 002 @ 13303315 n 0000 ;c 04323026 n 0000 | (stock market) the price at which a certain security becomes attractive to investors -13305673 21 n 01 valuation 0 001 @ 13303315 n 0000 | assessed price; "the valuation of this property is much too high" -13305794 21 n 01 opportunity_cost 0 003 @ 13275847 n 0000 ~ 13305932 n 0000 ~ 13306190 n 0000 | cost in terms of foregoing alternatives -13305932 21 n 02 cost_of_capital 0 capital_cost 0 001 @ 13305794 n 0000 | the opportunity cost of the funds employed as the result of an investment decision; the rate of return that a business could earn if it chose another investment with equivalent risk -13306190 21 n 02 carrying_cost 0 carrying_charge 2 001 @ 13305794 n 0000 | the opportunity cost of unproductive assets; the expense incurred by ownership -13306346 21 n 01 portage 0 001 @ 13275847 n 0000 | the cost of carrying or transporting -13306436 21 n 03 incidental_expense 0 incidental 0 minor_expense 0 002 @ 13277886 n 0000 ;u 06295235 n 0000 | (frequently plural) an expense not budgeted or not specified; "he requested reimbursement of $7 for incidental expenses" -13306669 21 n 01 travel_expense 0 002 @ 13277886 n 0000 ;u 06295235 n 0000 | (frequently plural) expenses incurred by an employee in the performance of the job and usually reimbursed by the employer -13306870 21 n 01 charge 2 022 @ 13275847 n 0000 + 02320374 v 0101 + 02321046 v 0101 + 00700517 v 0101 ~ 13307370 n 0000 ~ 13307514 n 0000 ~ 13307685 n 0000 ~ 13307784 n 0000 ~ 13308147 n 0000 ~ 13318147 n 0000 ~ 13324297 n 0000 ~ 13324427 n 0000 ~ 13324609 n 0000 ~ 13324710 n 0000 ~ 13324826 n 0000 ~ 13324912 n 0000 ~ 13325010 n 0000 ~ 13325382 n 0000 ~ 13325505 n 0000 ~ 13325847 n 0000 ~ 13326021 n 0000 ~ 13326103 n 0000 | the price charged for some article or service; "the admission charge" -13307370 21 n 01 carrying_charge 0 001 @ 13306870 n 0000 | charge made for carrying an account or for merchandise sold on an installment plan -13307514 21 n 01 depreciation_charge 0 001 @ 13306870 n 0000 | an amount periodically charged to expense or against revenue in compensation for depreciation of property -13307685 21 n 01 undercharge 0 002 @ 13306870 n 0000 + 02319290 v 0101 | a price that is too low -13307784 21 n 01 overcharge 0 003 @ 13306870 n 0000 + 02319050 v 0101 ~ 13307901 n 0000 | a price that is too high -13307901 21 n 01 extortion 0 002 @ 13307784 n 0000 + 02241107 v 0101 | an exorbitant charge -13307995 21 n 01 corkage 0 001 @ 13325847 n 0000 | a charge added at a restaurant for every bottle of wine served that was not bought on the premises -13308147 21 n 02 fare 0 transportation 0 005 @ 13306870 n 0000 ~ 13308336 n 0000 ~ 13308432 n 0000 ~ 13308543 n 0000 ~ 13308750 n 0000 | the sum charged for riding in a public conveyance -13308336 21 n 01 airfare 0 001 @ 13308147 n 0000 | the fare charged for traveling by airplane -13308432 21 n 02 bus_fare 0 carfare 0 001 @ 13308147 n 0000 | the fare charged for riding a bus or streetcar -13308543 21 n 02 cab_fare 0 taxi_fare 0 001 @ 13308147 n 0000 | the fare charged for riding in a taxicab -13308650 21 n 01 subway_fare 0 001 @ 13308750 n 0000 | the fare charged for riding a subway train -13308750 21 n 01 train_fare 0 002 @ 13308147 n 0000 ~ 13308650 n 0000 | the fare charged for traveling by train -13308864 21 n 01 levy 0 004 @ 13400798 n 0000 + 02306462 v 0101 ~ 13308999 n 0000 ~ 13315743 n 0000 | a charge imposed and collected -13308999 21 n 03 tax 0 taxation 0 revenue_enhancement 0 034 @ 13308864 n 0000 + 02307547 v 0201 + 02307547 v 0101 -c 00689673 a 0000 -c 01877617 a 0000 -c 01877919 a 0000 -c 00361192 n 0000 -c 01127623 n 0000 -c 09936362 n 0000 -c 13251424 n 0000 -c 13255562 n 0000 -c 13261597 n 0000 -c 13273550 n 0000 -c 13277179 n 0000 ~ 13310091 n 0000 ~ 13310230 n 0000 ~ 13312190 n 0000 ~ 13312329 n 0000 ~ 13312434 n 0000 ~ 13312962 n 0000 ~ 13313188 n 0000 ~ 13313464 n 0000 ~ 13313899 n 0000 -c 13314085 n 0000 ~ 13314226 n 0000 ~ 13314495 n 0000 ~ 13314652 n 0000 ~ 13314796 n 0000 ~ 13314936 n 0000 ~ 13315191 n 0000 ~ 13315518 n 0000 ~ 13315616 n 0000 ~ 13315827 n 0000 -c 13400798 n 0000 | charge against a citizen's person or property or activity for the support of government -13309776 21 n 01 tax_base 0 001 @ 13329641 n 0000 | collective value of taxable assets -13309865 21 n 01 tax_rate 0 001 @ 13325010 n 0000 | rate used to calculate tax liability -13309956 21 n 01 tax_liability 0 001 @ 13396054 n 0000 | the amount of tax owed; calculated by applying the tax rate to the tax base -13310091 21 n 01 single_tax 0 001 @ 13308999 n 0000 | a system of taxation in which a tax is levied on a single commodity (usually land) -13310230 21 n 01 income_tax 0 006 @ 13308999 n 0000 ~ 13310415 n 0000 ~ 13310539 n 0000 ~ 13310727 n 0000 ~ 13311368 n 0000 ~ 13315364 n 0000 | a personal tax levied on annual income -13310415 21 n 01 bracket_creep 0 001 @ 13310230 n 0000 | a movement into a higher tax bracket as taxable income increases -13310539 21 n 01 estimated_tax 0 001 @ 13310230 n 0000 | income tax paid periodically on income that is not subject to withholding taxes; based on the taxpayer's predicted tax liability -13310727 21 n 01 FICA 0 001 @ 13310230 n 0000 | a tax on employees and employers that is used to fund the Social Security system -13310858 21 n 01 business_deduction 0 002 @ 13329047 n 0000 ~ 13311217 n 0000 | tax write-off for expenses of doing business -13310985 21 n 01 exemption 0 001 @ 13329047 n 0000 | a deduction allowed to a taxpayer because of his status (having certain dependents or being blind or being over 65 etc.); "additional exemptions are allowed for each dependent" -13311217 21 n 01 entertainment_deduction 0 001 @ 13310858 n 0000 | deduction allowed for some (limited) kinds of entertainment for business purposes -13311368 21 n 02 withholding_tax 0 withholding 0 003 @ 13310230 n 0000 + 02215001 v 0201 ~ 13311573 n 0000 | income tax withheld from employees' wages and paid directly to the government by the employer -13311573 21 n 02 PAYE 0 pay_as_you_earn 0 001 @ 13311368 n 0000 | the British system of withholding tax -13311679 21 n 01 unearned_increment 0 001 @ 13254985 n 0000 | an unearned rise in the market value of property resulting from general market factors -13311830 21 n 01 capital_gain 0 001 @ 13254985 n 0000 | the amount by which the selling price of an asset exceeds the purchase price; the gain is realized when the asset is sold -13312010 21 n 01 capital_loss 0 001 @ 13327896 n 0000 | the amount by which the purchase price of an asset exceeds the selling price; the loss is realized when the asset is sold -13312190 21 n 01 capital_gains_tax 0 001 @ 13308999 n 0000 | a tax on capital gains; "he avoided the capital gains tax by short selling" -13312329 21 n 01 capital_levy 0 002 @ 13308999 n 0000 ~ 13312569 n 0000 | a tax on capital or property -13312434 21 n 01 departure_tax 0 001 @ 13308999 n 0000 | a tax that is levied when you are departing a country by land or sea or air -13312569 21 n 02 property_tax 0 land_tax 0 002 @ 13312329 n 0000 ~ 13312754 n 0000 | a capital tax on property imposed by municipalities; based on the estimated value of the property -13312754 21 n 01 council_tax 0 002 @ 13312569 n 0000 ;r 08860123 n 0000 | a tax levied on households by local authorities; based on the estimated value of the property and the number of people living in it -13312962 21 n 01 franchise_tax 0 001 @ 13308999 n 0000 | a tax that is imposed by states on corporations; it depends both on the net worth of the corporation and on its net income attributable to activities within the state -13313188 21 n 01 gift_tax 0 001 @ 13308999 n 0000 | a tax imposed on transfers of property by gift during the lifetime of the giver -13313322 21 n 04 inheritance_tax 0 estate_tax 0 death_tax 0 death_duty 0 001 @ 13315616 n 0000 | a tax on the estate of the deceased person -13313464 21 n 01 direct_tax 0 001 @ 13308999 n 0000 | a tax paid directly by the person or organization on whom it is levied -13313591 21 n 01 tax_advantage 0 001 @ 05155821 n 0000 | an advantage bestowed by legislation that reduces a tax on some preferred activity -13313733 21 n 02 tax_shelter 0 shelter 0 002 @ 00351638 n 0000 + 02656390 v 0201 | a way of organizing business to reduce the taxes it must pay on current earnings -13313899 21 n 01 indirect_tax 0 004 @ 13308999 n 0000 ~ 13314085 n 0000 ~ 13315999 n 0000 ~ 13316332 n 0000 | a tax levied on goods or services rather than on persons or organizations -13314085 21 n 01 hidden_tax 0 002 @ 13313899 n 0000 ;c 13308999 n 0000 | a tax paid unwittingly by the consumer (such as ad valorem taxes) -13314226 21 n 01 capitation 0 002 @ 13308999 n 0000 ~ 13314355 n 0000 | a tax levied on the basis of a fixed amount per person -13314355 21 n 01 poll_tax 0 001 @ 13314226 n 0000 | a tax of a fixed amount per person and payable as a requirement for the right to vote -13314495 21 n 02 progressive_tax 0 graduated_tax 0 001 @ 13308999 n 0000 | any tax in which the rate increases as the amount subject to taxation increases -13314652 21 n 01 proportional_tax 0 001 @ 13308999 n 0000 | any tax in which the rate is constant as the amount subject to taxation increases -13314796 21 n 01 degressive_tax 0 001 @ 13308999 n 0000 | any tax in which the rate decreases as the amount subject to taxation increases -13314936 21 n 01 rates 0 003 @ 13308999 n 0000 ;r 08860123 n 0000 ~ 13315077 n 0000 | a local tax on property (usually used in the plural) -13315077 21 n 01 poor_rates 0 002 @ 13314936 n 0000 ;r 08860123 n 0000 | a local tax for the relief of the poor -13315191 21 n 02 stamp_tax 0 stamp_duty 0 001 @ 13308999 n 0000 | a tax collected by requiring a stamp to be purchased and attached (usually on documents or publications) -13315364 21 n 02 surtax 0 supertax 0 002 @ 13310230 n 0000 + 02308115 v 0101 | an additional tax on certain kinds of income that has already been taxed -13315518 21 n 01 pavage 0 002 @ 13308999 n 0000 + 01267098 v 0101 | a tax toward paving streets -13315616 21 n 01 transfer_tax 0 002 @ 13308999 n 0000 ~ 13313322 n 0000 | any tax levied on the passing of title to property -13315743 21 n 01 tithe 2 001 @ 13308864 n 0000 | a levy of one tenth of something -13315827 21 n 01 special_assessment 0 001 @ 13308999 n 0000 | an additional tax levied on private property for public improvements that enhance the value of the property -13315999 21 n 02 duty 0 tariff 0 010 @ 13313899 n 0000 + 02307993 v 0201 ~ 13317002 n 0000 ~ 13317269 n 0000 ~ 13317422 n 0000 ~ 13317517 n 0000 ~ 13317611 n 0000 ~ 13317858 n 0000 ~ 13317941 n 0000 ~ 13318024 n 0000 | a government tax on imports or exports; "they signed a treaty to lower duties on trade between their countries" -13316332 21 n 02 excise 0 excise_tax 0 005 @ 13313899 n 0000 + 02307882 v 0101 ~ 13316568 n 0000 ~ 13316722 n 0000 ~ 13316905 n 0000 | a tax that is measured by the amount of business done (not on property or income from real estate) -13316568 21 n 02 sales_tax 0 nuisance_tax 0 001 @ 13316332 n 0000 | a tax based on the cost of the item purchased and collected directly from the buyer -13316722 21 n 03 VAT 0 value-added_tax 0 ad_valorem_tax 0 001 @ 13316332 n 0000 | a tax levied on the difference between a commodity's price before taxes and its cost of production -13316905 21 n 01 gasoline_tax 0 001 @ 13316332 n 0000 | a tax on every gallon of gasoline sold -13317002 21 n 04 customs 0 customs_duty 0 custom 0 impost 0 002 @ 13315999 n 0000 ~ 13317137 n 0000 | money collected under a tariff -13317137 21 n 01 ship_money 0 001 @ 13317002 n 0000 | an impost levied in England to provide money for ships for national defense -13317269 21 n 03 tonnage 0 tunnage 0 tonnage_duty 0 001 @ 13315999 n 0000 | a tax imposed on ships that enter the US; based on the tonnage of the ship -13317422 21 n 01 octroi 0 001 @ 13315999 n 0000 | a tax on various goods brought into a town -13317517 21 n 01 revenue_tariff 0 001 @ 13315999 n 0000 | a tariff imposed to raise revenue -13317611 21 n 01 protective_tariff 0 002 @ 13315999 n 0000 ~ 13317759 n 0000 | a tariff imposed to protect domestic firms from import competition -13317759 21 n 01 anti-dumping_duty 0 001 @ 13317611 n 0000 | a tariff imposed to prevent dumping -13317858 21 n 01 import_duty 0 001 @ 13315999 n 0000 | a duty imposed on imports -13317941 21 n 01 export_duty 0 001 @ 13315999 n 0000 | a duty imposed on exports -13318024 21 n 01 countervailing_duty 0 001 @ 13315999 n 0000 | a duty imposed to offset subsidies by foreign governments -13318147 21 n 03 fixed_charge 0 fixed_cost 0 fixed_costs 0 005 @ 13306870 n 0000 ~ 13318411 n 0000 ~ 13318584 n 0000 ~ 13320168 n 0000 ~ 13396861 n 0000 | a periodic charge that does not vary with business volume (as insurance or rent or mortgage payments etc.) -13318411 21 n 02 cover_charge 0 cover 0 002 @ 13318147 n 0000 + 02310674 v 0201 | a fixed charge by a restaurant or nightclub over and above the charge for food and drink -13318584 21 n 01 interest 0 003 @ 13318147 n 0000 ~ 13318804 n 0000 ~ 13318934 n 0000 | a fixed charge for borrowing money; usually a percentage of the amount borrowed; "how much interest do you pay on your mortgage?" -13318804 21 n 01 compound_interest 0 001 @ 13318584 n 0000 | interest calculated on both the principal and the accrued interest -13318934 21 n 01 simple_interest 0 001 @ 13318584 n 0000 | interest paid on the principal alone -13319032 21 n 02 interest_rate 0 rate_of_interest 0 006 @ 13325010 n 0000 ~ 13319253 n 0000 ~ 13319512 n 0000 ~ 13319726 n 0000 ~ 13319872 n 0000 ~ 13320045 n 0000 | the percentage of a sum of money charged for its use -13319253 21 n 03 discount_rate 0 discount 1 bank_discount 0 002 @ 13319032 n 0000 ~ 13319415 n 0000 | interest on an annual basis deducted in advance on a loan -13319415 21 n 01 bank_rate 0 001 @ 13319253 n 0000 | the discount rate fixed by a central bank -13319512 21 n 01 discount_rate 1 002 @ 13319032 n 0000 ;r 09044862 n 0000 | the rate of interest set by the Federal Reserve that member banks are charged when they borrow money through the Federal Reserve System -13319726 21 n 01 base_rate 0 002 @ 13319032 n 0000 ;r 08860123 n 0000 | the interest rate set by the Bank of England for lending to other banks -13319872 21 n 01 prime_interest_rate 0 001 @ 13319032 n 0000 | the interest rate on short-term loans that banks charge their commercial customers with high credit ratings -13320045 21 n 02 usury 1 vigorish 0 002 @ 13319032 n 0000 + 01534282 a 0106 | an exorbitant or unlawful rate of interest -13320168 21 n 01 fee 0 024 @ 13318147 n 0000 ~ 13320691 n 0000 ~ 13320766 n 0000 ~ 13320860 n 0000 ~ 13321081 n 0000 ~ 13321230 n 0000 ~ 13321338 n 0000 ~ 13321495 n 0000 ~ 13321722 n 0000 ~ 13321992 n 0000 ~ 13322113 n 0000 ~ 13322520 n 0000 ~ 13322641 n 0000 ~ 13322758 n 0000 ~ 13322867 n 0000 ~ 13322938 n 0000 ~ 13323102 n 0000 ~ 13323207 n 0000 ~ 13323313 n 0000 ~ 13323648 n 0000 ~ 13323749 n 0000 ~ 13323885 n 0000 ~ 13323988 n 0000 ~ 13324188 n 0000 | a fixed charge for a privilege or for professional services -13320691 21 n 01 anchorage 0 001 @ 13320168 n 0000 | a fee for anchoring -13320766 21 n 01 cellarage 0 001 @ 13320168 n 0000 | a charge for storing goods in a cellar -13320860 21 n 01 commission 0 001 @ 13320168 n 0000 | a fee for services rendered based on a percentage of an amount received or collected or agreed to be paid (as distinguished from a salary); "he works on commission" -13321081 21 n 01 contingency_fee 0 001 @ 13320168 n 0000 | a fee that is payable only if the outcome is successful (as for an attorney's services) -13321230 21 n 02 dockage 0 docking_fee 0 001 @ 13320168 n 0000 | a fee charged for a vessel to use a dock -13321338 21 n 01 drop-off_charge 0 001 @ 13320168 n 0000 | a fee added for returning a rented car to a location different from the one where it was rented -13321495 21 n 07 entrance_fee 0 admission 0 admission_charge 0 admission_fee 0 admission_price 0 price_of_admission 0 entrance_money 0 003 @ 13320168 n 0000 + 02671279 v 0201 + 02502536 v 0201 | the fee charged for admission -13321722 21 n 01 finder's_fee 0 001 @ 13320168 n 0000 | a fee that is paid to someone who finds a source of financial backing or to someone who brings people together for business purposes; "the agency got a finder's fee when their candidate was hired as the new CEO" -13321992 21 n 01 legal_fee 0 003 @ 13320168 n 0000 ;c 08441203 n 0000 ~ 13322343 n 0000 | a fee paid for legal service -13322113 21 n 03 licensing_fee 0 license_fee 0 license_tax 0 002 @ 13320168 n 0000 ;c 06043075 n 0000 | a fee paid to the government for the privilege of being licensed to do something (as selling liquor or practicing medicine) -13322343 21 n 01 refresher 0 002 @ 13321992 n 0000 ;r 08860123 n 0000 | a fee (in addition to that marked on the brief) paid to counsel in a case that lasts more than one day -13322520 21 n 01 lighterage 0 002 @ 13320168 n 0000 + 01954852 v 0101 | the fee charged for carrying goods in lighters -13322641 21 n 01 lockage 0 001 @ 13320168 n 0000 | a fee charged for passage through a lock in a canal or waterway -13322758 21 n 01 mintage 1 001 @ 13320168 n 0000 | fee paid to a mint by the government for minting a coin -13322867 21 n 01 moorage 0 001 @ 13320168 n 0000 | a fee for mooring -13322938 21 n 01 origination_fee 0 001 @ 13320168 n 0000 | a fee charged to a borrower (especially for a mortgage loan) to cover the costs of initiating the loan -13323102 21 n 01 pipage 0 002 @ 13320168 n 0000 + 01950295 v 0101 | a fee charged for the use of pipes -13323207 21 n 01 poundage 0 001 @ 13320168 n 0000 | a fee charged for the recovery of impounded animals -13323313 21 n 02 retainer 0 consideration 0 002 @ 13320168 n 0000 ~ 13323460 n 0000 | a fee charged in advance to retain the services of someone -13323460 21 n 02 quid_pro_quo 0 quid 0 001 @ 13323313 n 0000 | something for something; that which a party receives (or is promised) in return for something he does or gives or promises -13323648 21 n 01 seigniorage 0 001 @ 13320168 n 0000 | charged by a government for coining bullion -13323749 21 n 01 toll 0 002 @ 13320168 n 0000 + 02306728 v 0101 | a fee levied for the use of roads or bridges (used for maintenance) -13323885 21 n 01 truckage 0 001 @ 13320168 n 0000 | a fee charged for transporting goods by truckage -13323988 21 n 02 tuition 0 tuition_fee 0 002 @ 13320168 n 0000 ;c 00883297 n 0000 | a fee paid for instruction (especially for higher education); "tuition and room and board were more than $25,000" -13324188 21 n 02 wharfage 0 quayage 0 001 @ 13320168 n 0000 | a fee charged for the use of a wharf or quay -13324297 21 n 04 agio 0 agiotage 0 premium 3 exchange_premium 0 001 @ 13306870 n 0000 | a fee charged for exchanging currencies -13324427 21 n 01 demurrage 0 001 @ 13306870 n 0000 | a charge required as compensation for the delay of a ship or freight car or other cargo beyond its scheduled time of departure -13324609 21 n 01 installation_charge 0 001 @ 13306870 n 0000 | the charge for installing something -13324710 21 n 01 porterage 0 002 @ 13306870 n 0000 + 01450961 v 0101 | the charge for carrying burdens by porters -13324826 21 n 01 postage 0 001 @ 13306870 n 0000 | the charge for mailing something -13324912 21 n 01 poundage 1 001 @ 13306870 n 0000 | a charge based on weight measured in pounds -13325010 21 n 02 rate 0 charge_per_unit 0 012 @ 13306870 n 0000 ~ 13281476 n 0000 ~ 13281770 n 0000 ~ 13309865 n 0000 ~ 13319032 n 0000 ~ 13326198 n 0000 ~ 13326450 n 0000 ~ 13326620 n 0000 ~ 13326772 n 0000 ~ 13326871 n 0000 ~ 13326975 n 0000 ~ 13327136 n 0000 | amount of a charge or payment relative to some basis; "a 10-minute phone call at that rate would cost $5" -13325382 21 n 01 water-rate 0 002 @ 13306870 n 0000 ;r 08860123 n 0000 | rate per quarter for water from a public supply -13325505 21 n 01 surcharge 0 003 @ 13306870 n 0000 + 02320773 v 0101 ~ 13325722 n 0000 | an additional charge (as for items previously omitted or as a penalty for failure to exercise common caution or common skill) -13325722 21 n 01 single_supplement 0 001 @ 13325505 n 0000 | a surcharge added to the cost per person when traveling alone -13325847 21 n 02 service_charge 0 service_fee 0 002 @ 13306870 n 0000 ~ 13307995 n 0000 | a percentage of a bill (as at a hotel or restaurant) added in payment for service -13326021 21 n 01 stowage 0 001 @ 13306870 n 0000 | the charge for stowing goods -13326103 21 n 01 tankage 0 001 @ 13306870 n 0000 | the charge for storing something in tanks -13326198 21 n 03 freight 0 freightage 0 freight_rate 0 004 @ 13325010 n 0000 + 01951276 v 0201 + 01489161 v 0201 + 01951276 v 0101 | the charge for transporting something by common carrier; "we pay the freight"; "the freight rate is usually cheaper" -13326450 21 n 02 rate_of_depreciation 0 depreciation_rate 0 001 @ 13325010 n 0000 | the rate at which the value of property is reduced; used to calculate tax deduction -13326620 21 n 02 rate_of_exchange 0 exchange_rate 0 001 @ 13325010 n 0000 | the charge for exchanging currency of one country for currency of another -13326772 21 n 01 excursion_rate 0 001 @ 13325010 n 0000 | a reduced rate for a round-trip ticket -13326871 21 n 01 footage 0 001 @ 13325010 n 0000 | a rate of charging by the linear foot of work done -13326975 21 n 02 linage 0 lineage 0 001 @ 13325010 n 0000 | a rate of payment for written material that is measured according to the number of lines submitted -13327136 21 n 01 room_rate 0 001 @ 13325010 n 0000 | the rate charged daily for a hotel room -13327231 21 n 03 loss 0 red_ink 0 red 0 004 @ 13331198 n 0000 ! 13254805 n 0101 ~ 13259013 n 0000 ~ 13327503 n 0000 | the amount by which the cost of a business exceeds its revenue; "the company operated at a loss last year"; "the company operated in the red last year" -13327503 21 n 01 squeeze 0 001 @ 13327231 n 0000 | a situation in which increased costs cannot be passed on to the customer; "increased expenses put a squeeze on profits" -13327676 21 n 01 loss 1 005 @ 13252973 n 0000 ~ 13301174 n 0000 ~ 13327896 n 0000 ~ 13328073 n 0000 ~ 13328273 n 0000 | something that is lost; "the car was a total loss"; "loss of livestock left the rancher bankrupt" -13327896 21 n 01 financial_loss 0 005 @ 13327676 n 0000 ~ 13300141 n 0000 ~ 13312010 n 0000 ~ 13328357 n 0000 ~ 13329322 n 0000 | loss of money or decrease in financial value -13328073 21 n 01 sacrifice 0 002 @ 13327676 n 0000 + 02343961 v 0101 | a loss entailed by giving up or selling something at less than its value; "he had to sell his car at a considerable sacrifice" -13328273 21 n 01 wastage 0 001 @ 13327676 n 0000 | anything lost by wear or waste -13328357 21 n 02 depreciation 0 wear_and_tear 0 006 @ 13327896 n 0000 @ 13276913 n 0000 + 00315330 v 0101 + 00315020 v 0101 ~ 13328578 n 0000 ~ 13328853 n 0000 | decrease in value of an asset due to obsolescence or use -13328578 21 n 02 straight-line_method 0 straight-line_method_of_depreciation 0 002 @ 13328357 n 0000 ;c 05662532 n 0000 | (accounting) a method of calculating depreciation by taking an equal amount of the asset's cost as an expense for each year of the asset's useful life -13328853 21 n 02 write-off 0 write-down 0 005 @ 13328357 n 0000 ;c 05662532 n 0000 + 00315956 v 0203 + 00315956 v 0102 ~ 13329047 n 0000 | (accounting) reduction in the book value of an asset -13329047 21 n 03 tax_write-off 0 tax_deduction 0 deduction 1 004 @ 13328853 n 0000 ~ 13298537 n 0000 ~ 13310858 n 0000 ~ 13310985 n 0000 | a reduction in the gross amount on which a tax is calculated; reduces taxes by the percentage fixed for the taxpayer's income bracket -13329322 21 n 02 losings 0 losses 0 004 @ 13327896 n 0000 + 02288828 v 0101 + 02287618 v 0101 ! 13259917 n 0101 | something lost (especially money lost at gambling) -13329489 21 n 01 circumstances 0 001 @ 00032613 n 0000 | a person's financial situation (good or bad); "he found himself in straitened circumstances" -13329641 21 n 01 assets 0 023 @ 00032613 n 0000 ;u 06295235 n 0000 ~ 13285176 n 0000 ~ 13309776 n 0000 ~ 13330283 n 0000 ~ 13330425 n 0000 ~ 13330591 n 0000 ~ 13330764 n 0000 ~ 13331198 n 0000 ~ 13331778 n 0000 ~ 13332670 n 0000 ~ 13333047 n 0000 ~ 13333237 n 0000 ~ 13333696 n 0000 ~ 13344071 n 0000 ~ 13353156 n 0000 ~ 13353607 n 0000 ~ 13354420 n 0000 ~ 13356112 n 0000 ~ 13369159 n 0000 ~ 13378518 n 0000 ~ 13378816 n 0000 ~ 13407208 n 0000 | anything of material value or usefulness that is owned by a person or company -13330168 21 n 01 payables 0 001 @ 13396054 n 0000 | money that you currently expect to pay on notes and accounts -13330283 21 n 01 receivables 0 002 @ 13329641 n 0000 ;u 06295235 n 0000 | money that you currently expect to receive from notes or accounts -13330425 21 n 01 crown_jewel 0 001 @ 13329641 n 0000 | the most desirable assets of a corporation; "their crown jewels figured prominently in the takeover attempt" -13330591 21 n 01 deep_pocket 0 002 @ 13329641 n 0000 ;u 06295235 n 0000 | a source of substantial wealth (usually plural); "a patron of the arts should have deep pockets" -13330764 21 n 01 reserve_assets 0 003 @ 13329641 n 0000 ;u 06295235 n 0000 ~ 13330941 n 0000 | capital held back from investment in order to meet probable or possible demands -13330941 21 n 02 special_drawing_rights 0 paper_gold 0 001 @ 13330764 n 0000 | reserve assets in the International Monetary Fund; designed to supplement reserves of gold and convertible currencies used to maintain stability in the foreign exchange market -13331198 21 n 04 sum 0 sum_of_money 0 amount 0 amount_of_money 0 015 @ 13329641 n 0000 ~ 13254805 n 0000 ~ 13256691 n 0000 ~ 13269683 n 0000 ~ 13269890 n 0000 ~ 13273550 n 0000 ~ 13273738 n 0000 ~ 13327231 n 0000 ~ 13331634 n 0000 ~ 13344664 n 0000 ~ 13375891 n 0000 ~ 13412877 n 0000 ~ 13413016 n 0000 ~ 13413159 n 0000 ~ 13413294 n 0000 | a quantity of money; "he borrowed a large sum"; "the amount he had in cash was insufficient" -13331634 21 n 01 figure 0 002 @ 13331198 n 0000 + 00637259 v 0107 | an amount of money expressed numerically; "a figure of $17 was suggested" -13331778 21 n 01 resource 0 006 @ 13329641 n 0000 ~ 13332009 n 0000 ~ 13332197 n 0000 ~ 13365286 n 0000 ~ 13365698 n 0000 ~ 13365978 n 0000 | available source of wealth; a new or reserve supply that can be drawn upon when needed -13332009 21 n 02 natural_resource 0 natural_resources 0 004 @ 13331778 n 0000 ~ 13332290 n 0000 ~ 13332395 n 0000 ~ 13332500 n 0000 | resources (actual and potential) supplied by nature -13332197 21 n 01 labor_resources 0 001 @ 13331778 n 0000 | resources of available manpower -13332290 21 n 01 land_resources 0 001 @ 13332009 n 0000 | natural resources in the form of arable land -13332395 21 n 01 mineral_resources 0 001 @ 13332009 n 0000 | natural resources in the form of minerals -13332500 21 n 01 renewable_resource 0 001 @ 13332009 n 0000 | any natural resource (as wood or solar energy) that can be replenished naturally with the passage of time -13332670 21 n 02 intangible 0 intangible_asset 0 002 @ 13329641 n 0000 ~ 13332820 n 0000 | assets that are saleable though not material or physical -13332820 21 n 02 good_will 0 goodwill 0 002 @ 13332670 n 0000 ;c 05662532 n 0000 | (accounting) an intangible asset valued according to the advantage or reputation a business has acquired (over and above its tangible assets) -13333047 21 n 03 liquid_assets 0 current_assets 0 quick_assets 0 003 @ 13329641 n 0000 #m 13354420 n 0000 ;u 06295235 n 0000 | assets in the form of cash (or easily convertible into cash) -13333237 21 n 02 investment 0 investment_funds 0 004 @ 13329641 n 0000 + 02271137 v 0101 ~ 13342692 n 0000 -c 02291708 v 0000 | money that is invested with an expectation of profit -13333420 21 n 01 equity 0 002 @ 13286801 n 0000 ~ 13333546 n 0000 | the ownership interest of shareholders in a corporation -13333546 21 n 01 sweat_equity 0 001 @ 13333420 n 0000 | interest in a building that a tenant earns by contributing to its renovation or maintenance -13333696 21 n 01 equity 1 001 @ 13329641 n 0000 | the difference between the market value of a property and the claims held against it -13333833 21 n 01 stock 0 015 @ 13354420 n 0000 ~ 13335172 n 0000 ~ 13335808 n 0000 ~ 13335974 n 0000 ~ 13336368 n 0000 ~ 13336492 n 0000 ~ 13336650 n 0000 ~ 13336770 n 0000 ~ 13336933 n 0000 %p 13342135 n 0000 ~ 13342398 n 0000 ~ 13342597 n 0000 ~ 13419951 n 0000 ~ 13420221 n 0000 ~ 13420359 n 0000 | the capital raised by a corporation through the issue of shares entitling holders to an ownership interest (equity); "he owns a controlling share of the company's stock" -13334307 21 n 01 stockholding 1 001 @ 13240514 n 0000 | ownership of stocks; the state or fact of holding stock; "prohibition of unrestricted intercorporate stockholding"- W.Z.Ripley -13334492 21 n 02 stockholding 2 stockholdings 0 001 @ 13244109 n 0000 | a specific number of stocks or shares owned; "sell holdings he has in corporations" -13334650 21 n 01 capital_stock 1 001 @ 13337146 n 0000 | the book value of the outstanding shares of a corporation -13334767 21 n 02 blue_chip 0 blue-chip_stock 0 001 @ 13335172 n 0000 | a common stock of a nationally known company whose value and dividends are reliable; typically have high price and low yield; "blue chips are usually safe investments" -13335008 21 n 01 classified_stock 0 001 @ 13335172 n 0000 | common stock classified as A or B where A has certain advantages (e.g., voting power) that B does not -13335172 21 n 03 common_stock 0 common_shares 0 ordinary_shares 0 004 @ 13333833 n 0000 ~ 13334767 n 0000 ~ 13335008 n 0000 ~ 13335521 n 0000 | stock other than preferred stock; entitles the owner to a share of the corporation's profits and a share of the voting power in shareholder elections; "over 40 million Americans invest in common stocks" -13335521 21 n 01 stock_of_record 0 001 @ 13335172 n 0000 | stock held by stockholders of record on a given date -13335635 21 n 03 par_value 0 face_value 0 nominal_value 0 001 @ 05138488 n 0000 | the value of a security that is set by the company issuing it; unrelated to market value -13335808 21 n 02 no-par-value_stock 0 no-par_stock 0 001 @ 13333833 n 0000 | stock with no par value specified in the corporate charter or on the stock certificate -13335974 21 n 03 preferred_stock 0 preferred_shares 0 preference_shares 0 002 @ 13333833 n 0000 ~ 13336204 n 0000 | stock whose holders are guaranteed priority in the payment of dividends but whose holders have no voting rights -13336204 21 n 02 cumulative_preferred 0 cumulative_preferred_stock 0 001 @ 13335974 n 0000 | preferred stock whose dividends if omitted accumulate until paid out -13336368 21 n 01 float 0 001 @ 13333833 n 0000 | the number of shares outstanding and available for trading by the public -13336492 21 n 01 common_stock_equivalent 0 001 @ 13333833 n 0000 | preferred stock or convertible bonds or warrants that can be converted into common stock -13336650 21 n 01 control_stock 0 001 @ 13333833 n 0000 | shares owned by shareholders who have a controlling interest -13336770 21 n 01 growth_stock 0 001 @ 13333833 n 0000 | stock of a corporation that has had faster than average gains in earnings and is expected to continue to -13336933 21 n 02 hot_stock 0 hot_issue 0 001 @ 13333833 n 0000 | newly issued stock that is in great public demand -13337050 21 n 01 penny_stock 0 001 @ 13421286 n 0000 | a stock selling for less that $1/share -13337146 21 n 01 book_value 0 002 @ 05138488 n 0000 ~ 13334650 n 0000 | the value at which an asset is carried on a balance sheet; equals cost minus accumulated depreciation -13337322 21 n 02 market_value 0 market_price 0 001 @ 05138488 n 0000 | the price at which buyers and sellers trade the item in an open marketplace -13337471 21 n 01 bond_issue 0 001 @ 13417410 n 0000 | bonds sold by a corporation or government agency at a particular time and identifiable by date of maturity -13337634 21 n 01 convertible_bond 0 001 @ 13417410 n 0000 | a bond that can be converted to other securities under certain conditions -13337770 21 n 01 corporate_bond 0 001 @ 13417410 n 0000 | a bond issued by a corporation; carries no claim to ownership and pays no dividends but payments to bondholders have priority over payments to stockholders; "a corporate bond is a safer investment than common stock in the same company" -13338066 21 n 02 coupon_bond 0 bearer_bond 0 001 @ 13417410 n 0000 | a bond issued with detachable coupons that must be presented to the issuer for interest payments -13338234 21 n 01 government_bond 0 003 @ 13417410 n 0000 ~ 13340751 n 0000 ~ 13394326 n 0000 | a bond that is an IOU of the United States Treasury; considered the safest security in the investment world -13338439 21 n 02 junk_bond 0 high-yield_bond 0 001 @ 13417410 n 0000 | a (speculative) bond with a credit rating of BB or lower; issued for leveraged buyouts and other takeovers by companies with questionable credit -13338657 21 n 01 municipal_bond 0 002 @ 13417410 n 0000 ~ 13340902 n 0000 | a bond issued by a state or local government -13338780 21 n 01 noncallable_bond 0 001 @ 13417410 n 0000 | a bond containing a provision that the holder cannot redeem the security before a specific date (usually at maturity) -13338960 21 n 02 performance_bond 0 surety_bond 0 001 @ 13417410 n 0000 | a bond given to protect the recipient against loss in case the terms of a contract are not filled; a surety company assumes liability for nonperformance -13339189 21 n 01 post-obit_bond 0 001 @ 13417410 n 0000 | a bond made by a reversioner to secure a loan; payable out of his reversion -13339325 21 n 01 registered_bond 0 002 @ 13417410 n 0000 @ 13340579 n 0000 | a bond whose owner is recorded on the books of the issuer; can be transferred to another owner only when endorsed by the registered owner -13339542 21 n 01 revenue_bond 0 001 @ 13417410 n 0000 | a bond issued by an agency that is commissioned to finance public works; revenue from the public property is used to pay off the bond -13339734 21 n 01 secured_bond 0 002 @ 13417410 n 0000 ! 13339844 n 0101 | a bond that is back by collateral -13339844 21 n 03 unsecured_bond 0 debenture 0 debenture_bond 0 002 @ 13417410 n 0000 ! 13339734 n 0101 | the ability of a customer to obtain goods or services before payment, based on the trust that payment will be made in the future -13340080 21 n 02 government_security 0 agency_security 0 001 @ 13416345 n 0000 | a security issued by United States government agencies or the Farm Credit System -13340244 21 n 01 mortgage-backed_security 0 001 @ 13416345 n 0000 | a security created when a group of mortgages are gathered together and bonds are sold to other institutions or the public; investors receive a portion of the interest payments on the mortgages as well as the principal payments; usually guaranteed by the government -13340579 21 n 01 registered_security 0 002 @ 13416345 n 0000 ~ 13339325 n 0000 | a security whose owner's name is recorded on the books of the issuer (or issuer's agent) -13340751 21 n 01 savings_bond 0 001 @ 13338234 n 0000 | non-negotiable government bond; cannot be bought and sold once the original purchase is made -13340902 21 n 02 utility_bond 0 utility_revenue_bond 0 001 @ 13338657 n 0000 | a bond issued to finance the construction of public utility services -13341052 21 n 02 zero_coupon_bond 0 zero-coupon_bond 0 004 @ 13418823 n 0000 @ 13417410 n 0000 ;c 08059412 n 0000 ;c 01124794 n 0000 | a bond that is issued at a deep discount from its value at maturity and pays no interest during the life of the bond; the commonest form of zero-coupon security -13341350 21 n 01 reversion 0 004 @ 13286801 n 0000 ;c 08441203 n 0000 + 03111065 a 0101 ~ 13341593 n 0000 | (law) an interest in an estate that reverts to the grantor (or his heirs) at the end of some period (e.g., the death of the grantee) -13341593 21 n 01 escheat 0 002 @ 13341350 n 0000 ;c 08441203 n 0000 | a reversion to the state (as the ultimate owner of property) in the absence of legal heirs -13341756 21 n 01 right 0 003 @ 13286801 n 0000 ;u 06295235 n 0000 + 02519991 v 0101 | (frequently plural) the interest possessed by law or custom in some intangible thing; "mineral rights"; "film rights" -13341962 21 n 01 accession 1 002 @ 13241057 n 0000 ;c 08453464 n 0000 | (civil law) the right to all of that which your property produces whether by growth or improvement -13342135 21 n 01 share 1 002 @ 13417071 n 0000 #p 13333833 n 0000 | any of the equal portions into which the capital stock of a corporation is divided and ownership of which is evidenced by a stock certificate; "he bought 100 shares of IBM at the market price" -13342398 21 n 03 authorized_shares 0 authorized_stock 0 capital_stock 0 001 @ 13333833 n 0000 | the maximum number of shares authorized under the terms of a corporation's articles of incorporation -13342597 21 n 01 quarter_stock 0 001 @ 13333833 n 0000 | stock with a par value of $25/share -13342692 21 n 02 speculation 0 venture 0 007 @ 13333237 n 0000 + 00066146 a 0204 + 02545272 v 0201 + 02272090 v 0101 ~ 13342987 n 0000 ~ 13343123 n 0000 ~ 13343284 n 0000 | an investment that is very risky but could yield great profits; "he knew the stock was a speculation when he bought it" -13342987 21 n 01 gamble 0 003 @ 13342692 n 0000 + 01138523 v 0101 ~ 13343526 n 0000 | money that is risked for possible monetary gain -13343123 21 n 01 smart_money 0 001 @ 13342692 n 0000 | money bet or invested by experienced gamblers or investors (especially if they have inside information) -13343284 21 n 01 pyramid 0 002 @ 13342692 n 0000 ;c 04323026 n 0000 | (stock market) a series of transactions in which the speculator increases his holdings by using the rising market value of those holdings as margin for further purchases -13343526 21 n 04 stake 0 stakes 0 bet 0 wager 0 009 @ 13342987 n 0000 #p 13369857 n 0000 + 01155687 v 0402 + 01155687 v 0301 + 01139104 v 0104 + 02545272 v 0104 ~ 13343774 n 0000 ~ 13343917 n 0000 ~ 13369474 n 0000 | the money risked on a gamble -13343774 21 n 03 pot 0 jackpot 0 kitty 1 002 @ 13343526 n 0000 ;c 00494768 n 0000 | the cumulative amount involved in a game (such as poker) -13343917 21 n 01 ante 0 003 @ 13343526 n 0000 ;c 00494768 n 0000 + 01139380 v 0101 | (poker) the initial contribution that each player makes to the pot -13344071 21 n 02 security 1 protection 0 005 @ 13329641 n 0000 + 02273643 a 0104 ~ 13344386 n 0000 ~ 13344462 n 0000 ~ 13344804 n 0000 | defense against financial failure; financial independence; "his pension gave him security in his old age"; "insurance provided protection against loss of wages due to illness" -13344386 21 n 01 easy_street 0 001 @ 13344071 n 0000 | financial security -13344462 21 n 02 hedge 0 hedging 0 001 @ 13344071 n 0000 | any technique designed to reduce or eliminate financial risk; for example, taking two positions that will offset each other if prices change -13344664 21 n 02 coverage 0 insurance_coverage 0 002 @ 13331198 n 0000 + 00891216 v 0101 | the total amount and type of insurance carried -13344804 21 n 01 insurance 2 016 @ 13344071 n 0000 + 00891216 v 0102 ~ 13345286 n 0000 ~ 13345403 n 0000 ~ 13345962 n 0000 ~ 13346209 n 0000 ~ 13346337 n 0000 ~ 13346432 n 0000 ~ 13346630 n 0000 ~ 13346773 n 0000 ~ 13347065 n 0000 ~ 13347237 n 0000 ~ 13348227 n 0000 ~ 13348456 n 0000 ~ 13348792 n 0000 ~ 13348964 n 0000 | promise of reimbursement in the case of loss; paid to people or companies so concerned about hazards that they have made prepayments to an insurance company -13345286 21 n 01 assurance 2 002 @ 13344804 n 0000 ;r 08860123 n 0000 | a British term for some kinds of insurance -13345403 21 n 02 automobile_insurance 0 car_insurance 0 002 @ 13344804 n 0000 ~ 13345560 n 0000 | insurance against loss due to theft or traffic accidents -13345560 21 n 02 no_fault_insurance 0 no_fault_automobile_insurance 0 001 @ 13345403 n 0000 | a system of automobile insurance where a party who is injured in an automobile accident recovers damages up to a specific amount against his own insurance company regardless of who was responsible for the accident; "the amount of litigation resulting from minor accidents is reduced by no fault insurance" -13345962 21 n 01 business_interruption_insurance 0 001 @ 13344804 n 0000 | insurance that provides protection for the loss of profits and continuing fixed expenses resulting from a break in commercial activities due to the occurrence of a peril -13346209 21 n 01 coinsurance 0 002 @ 13344804 n 0000 + 02251631 v 0101 | insurance issued jointly by two or more underwriters -13346337 21 n 01 fire_insurance 0 001 @ 13344804 n 0000 | insurance against loss due to fire -13346432 21 n 01 group_insurance 0 001 @ 13344804 n 0000 | insurance that is purchased by a group (such as the employees of a company) usually at a reduced rate to individual members of the group -13346630 21 n 01 hazard_insurance 0 001 @ 13344804 n 0000 | insurance that provides protection against certain risks such as storms or fires -13346773 21 n 01 health_insurance 0 003 @ 13344804 n 0000 ~ 13346912 n 0000 ~ 13349208 n 0000 | insurance against loss due to ill health -13346912 21 n 02 hospitalization_insurance 0 hospitalization 0 001 @ 13346773 n 0000 | insurance that pays all or part of a patient's hospital expense -13347065 21 n 01 liability_insurance 0 001 @ 13344804 n 0000 | insurance that provides protection from claims arising from injuries or damage to other people or property -13347237 21 n 02 life_insurance 0 life_assurance 0 004 @ 13344804 n 0000 ~ 13347489 n 0000 ~ 13347750 n 0000 ~ 13347947 n 0000 | insurance paid to named beneficiaries when the insured person dies; "in England they call life insurance life assurance" -13347489 21 n 01 endowment_insurance 0 001 @ 13347237 n 0000 | life insurance for a specified amount which is payable to the insured person at the expiration of a certain period of time or to a designated beneficiary immediately upon the death of the insured -13347750 21 n 02 tontine 2 tontine_insurance 0 001 @ 13347237 n 0000 | a form of life insurance whereby on the death or default of a participant his share is distributed to the remaining members -13347947 21 n 03 whole_life_insurance 0 ordinary_life_insurance 0 straight_life_insurance 0 001 @ 13347237 n 0000 | insurance on the life of the insured for a fixed amount at a definite premium that is paid each year in the same amount during the entire lifetime of the insured -13348227 21 n 01 malpractice_insurance 0 001 @ 13344804 n 0000 | insurance purchased by physicians and hospitals to cover the cost of being sued for malpractice; "obstetricians have to pay high rates for malpractice insurance" -13348456 21 n 01 reinsurance 0 002 @ 13344804 n 0000 + 00891734 v 0101 | sharing the risk by insurance companies; part or all of the insurer's risk is assumed by other companies in return for part of the premium paid by the insured; "reinsurance enables a client to get coverage that would be too great for any one company to assume" -13348792 21 n 01 self-insurance 0 001 @ 13344804 n 0000 | insuring yourself by setting aside money to cover possible losses rather than by purchasing an insurance policy -13348964 21 n 01 term_insurance 0 001 @ 13344804 n 0000 | low-cost insurance that is valid only for a stated period of time and has no cash surrender value or loan value; "term insurance is most often associated with life insurance policies" -13349208 21 n 02 health_maintenance_organization 0 HMO 0 001 @ 13346773 n 0000 | group insurance that entitles members to services of participating hospitals and clinics and physicians -13349395 21 n 02 security 0 surety 0 005 @ 13252973 n 0000 ~ 13349662 n 0000 ~ 13350182 n 0000 ~ 13350443 n 0000 ~ 13418219 n 0000 | property that your creditor can claim in case you default on your obligation; "bankers are reluctant to lend without good security" -13349662 21 n 01 deposit 2 001 @ 13349395 n 0000 | money given as security for an article acquired for temporary use; "his deposit was refunded when he returned the car" -13349834 21 n 02 down_payment 0 deposit 0 002 @ 13278375 n 0000 ~ 13351278 n 0000 | a partial payment made at the time of purchase; the balance to be paid later -13349997 21 n 01 satisfaction 1 002 @ 13278375 n 0000 ;c 08441203 n 0000 | (law) the payment of a debt or fulfillment of an obligation; "the full and final satisfaction of the claim" -13350182 21 n 01 earnest 0 002 @ 13349395 n 0000 ~ 13350322 n 0000 | something of value given by one person to another to bind a contract -13350322 21 n 02 earnest_money 0 arles 0 001 @ 13350182 n 0000 | money given by a buyer to a seller to bind a contract -13350443 21 n 02 recognizance 0 recognisance 0 003 @ 13349395 n 0000 ;c 08441203 n 0000 ~ 13350976 n 0000 | (law) a security entered into before a court with a condition to perform some act required by law; on failure to perform that act a sum is forfeited -13350702 21 n 01 pledge 2 003 @ 13287984 n 0000 + 00886281 v 0101 ~ 13350875 n 0000 | a deposit of personal property as security for a debt; "his saxophone was in pledge" -13350875 21 n 01 pawn 0 002 @ 13350702 n 0000 + 02347220 v 0101 | an article deposited as security -13350976 21 n 03 bail 0 bail_bond 0 bond 3 003 @ 13350443 n 0000 ;c 06539178 n 0000 + 02421749 v 0101 | (criminal law) money that must be forfeited by the bondsman if an accused person fails to appear in court for trial; "the judge set bail at $10,000"; "a $10,000 bond was furnished by an alderman" -13351278 21 n 02 margin 1 security_deposit 0 001 @ 13349834 n 0000 | the amount of collateral a customer deposits with a broker when borrowing from the broker to buy securities -13351457 21 n 01 brokerage_account 0 003 @ 13929037 n 0000 ~ 13351680 n 0000 ~ 13351986 n 0000 | a fund that a customer has entrusted to a securities brokerage; "you can't get a brokerage account unless you have $20,000" -13351680 21 n 01 cash_account 0 003 @ 13351457 n 0000 ! 13351986 n 0101 ~ 13351860 n 0000 | an account with a securities brokerage whose transactions are settled on a cash basis -13351860 21 n 01 custodial_account 0 001 @ 13351680 n 0000 | a brokerage firm account that parents have created for a minor -13351986 21 n 01 margin_account 0 002 @ 13351457 n 0000 ! 13351680 n 0101 | an account with a securities brokerage in which the broker extends credit -13352138 21 n 01 mortgage 0 005 @ 13287984 n 0000 + 02351737 v 0101 ~ 13352464 n 0000 ~ 13352610 n 0000 ~ 13352722 n 0000 | a conditional conveyance of property as security for the repayment of a loan -13352341 21 n 01 conditional_sale 0 001 @ 13287984 n 0000 | a security interest taken by the seller in return for credit -13352464 21 n 01 first_mortgage 0 001 @ 13352138 n 0000 | a mortgage that has priority over all mortgages and liens except those imposed by law -13352610 21 n 01 second_mortgage 0 001 @ 13352138 n 0000 | a mortgage that is subordinate to a first mortgage -13352722 21 n 01 chattel_mortgage 0 001 @ 13352138 n 0000 | a loan to buy some personal item; the item (or chattel) is security for the loan -13352865 21 n 01 collateral 0 003 @ 13287984 n 0000 + 02355521 a 0101 ~ 13353004 n 0000 | a security pledged for the repayment of a loan -13353004 21 n 02 guarantee 3 guaranty 0 001 @ 13352865 n 0000 | a collateral agreement to answer for the debt of another in case that person defaults -13353156 21 n 01 material_resource 0 002 @ 13329641 n 0000 ~ 13353280 n 0000 | assets in the form of material possessions -13353280 21 n 02 wealth 2 riches 0 004 @ 13353156 n 0000 + 02022167 a 0105 ~ 13353446 n 0000 ~ 13370669 n 0000 | an abundance of material possessions and resources -13353446 21 n 01 gold 1 001 @ 13353280 n 0000 | great wealth; "Whilst that for which all virtue now is sold, and almost every vice--almighty gold"--Ben Jonson -13353607 21 n 01 capital 0 006 @ 13329641 n 0000 + 09609232 n 0101 + 00731159 v 0102 ~ 13271320 n 0000 ~ 13353858 n 0000 ~ 13355868 n 0000 | wealth in the form of money or property owned by a person or business and human resources of economic value -13353858 21 n 02 means 0 substance 0 003 @ 13353607 n 0000 ~ 13354021 n 0000 ~ 13354154 n 0000 | considerable capital (wealth or income); "he is a man of means" -13354021 21 n 01 pocketbook 0 001 @ 13353858 n 0000 | your personal financial means; "that car is too expensive for my pocketbook" -13354154 21 n 01 wherewithal 0 001 @ 13353858 n 0000 | the necessary means (especially financial means) -13354260 21 n 02 venture_capital 0 risk_capital 0 002 @ 13354420 n 0000 + 10747965 n 0101 | wealth available for investment in new or speculative enterprises -13354420 21 n 02 capital 1 working_capital 0 013 @ 13329641 n 0000 + 09609232 n 0101 + 00731159 v 0101 + 00162167 v 0101 + 02330742 v 0102 + 00731159 v 0102 + 00731000 v 0102 + 00162167 v 0102 %m 13333047 n 0000 ~ 13333833 n 0000 ~ 13354260 n 0000 ~ 13354769 n 0000 ~ 13356002 n 0000 | assets available for use in the production of further assets -13354769 21 n 01 operating_capital 0 001 @ 13354420 n 0000 | capital available for the operations of a firm (e.g. manufacturing or transportation) as distinct from financial transactions and long-term improvements -13354985 21 n 03 account 2 accounting 0 account_statement 0 008 @ 06516595 n 0000 + 02265231 v 0201 ~ 13355504 n 0000 ~ 13355656 n 0000 ~ 13407844 n 0000 ~ 13408776 n 0000 %p 13408980 n 0000 ~ 13411943 n 0000 | a statement of recent transactions and the resulting balance; "they send me an accounting every month" -13355301 21 n 04 income_statement 0 earnings_report 0 operating_statement 0 profit-and-loss_statement 0 001 @ 06516595 n 0000 | a financial statement that gives operating results for a specific period -13355504 21 n 01 capital_account 1 002 @ 13354985 n 0000 ;c 06150633 n 0000 | (finance) an account of the net value of a business at a specified date -13355656 21 n 01 capital_account 2 003 @ 13354985 n 0000 #p 13410458 n 0000 ;c 06149484 n 0000 | (economics) that part of the balance of payments recording a nation's outflow and inflow of financial securities -13355868 21 n 03 principal 2 corpus 0 principal_sum 0 001 @ 13353607 n 0000 | capital as contrasted with the income derived from it -13356002 21 n 01 seed_money 0 001 @ 13354420 n 0000 | capital needed to set up a new business or enterprise -13356112 21 n 05 funds 0 finances 0 monetary_resource 0 cash_in_hand 0 pecuniary_resource 0 009 @ 13329641 n 0000 ~ 13356402 n 0000 ~ 13356569 n 0000 ~ 13356774 n 0000 ~ 13356887 n 0000 ~ 13356985 n 0000 ~ 13357178 n 0000 ~ 13414770 n 0000 ~ 13423118 n 0000 | assets in the form of money -13356402 21 n 01 bank 1 001 @ 13356112 n 0000 | the funds held by a gambling house or the dealer in some gambling games; "he tried to break the bank at Monte Carlo" -13356569 21 n 02 bankroll 0 roll 0 002 @ 13356112 n 0000 ;c 01094725 n 0000 | a roll of currency notes (often taken as the resources of a person or business etc.); "he shot his roll on a bob-tailed nag" -13356774 21 n 01 pocket 0 001 @ 13356112 n 0000 | a supply of money; "they dipped into the taxpayers' pockets" -13356887 21 n 01 Medicaid_funds 0 001 @ 13356112 n 0000 | public funds used to pay for Medicaid -13356985 21 n 02 treasury 0 exchequer 0 005 @ 13356112 n 0000 ~ 13357891 n 0000 ~ 13358151 n 0000 ~ 13358260 n 0000 ~ 13358360 n 0000 | the funds of a government or institution or individual -13357178 21 n 01 money_supply 0 005 @ 13356112 n 0000 ~ 13357410 n 0000 ~ 13357572 n 0000 ~ 13357720 n 0000 %p 13384557 n 0000 | the total stock of money in the economy; currency held by the public plus money in accounts in banks -13357410 21 n 01 M1 0 001 @ 13357178 n 0000 | a measure of the money supply; includes currency in circulation plus demand deposits or checking account balances -13357572 21 n 01 M2 0 001 @ 13357178 n 0000 | a measure of the money supply; M1 plus net time deposits (other than large certificates of deposit) -13357720 21 n 01 M3 0 001 @ 13357178 n 0000 | a measure of the money supply; M2 plus deposits at institutions that are not banks (such as savings and loan associations) -13357891 21 n 03 public_treasury 0 trough 0 till 0 001 @ 13356985 n 0000 | a treasury for government funds -13358000 21 n 02 pork_barrel 0 pork 0 001 @ 13289845 n 0000 | a legislative appropriation designed to ingratiate legislators with their constituents -13358151 21 n 01 bursary 0 001 @ 13356985 n 0000 | the treasury of a public institution or religious order -13358260 21 n 01 subtreasury 0 001 @ 13356985 n 0000 | a subordinate treasury or place of deposit -13358360 21 n 01 fisc 0 002 @ 13356985 n 0000 + 02847894 a 0101 | a state treasury or exchequer or a royal treasury; originally the public treasury of Rome or the emperor's private purse -13358549 21 n 02 fund 0 monetary_fund 0 014 @ 13384557 n 0000 + 02215506 v 0101 + 02218635 v 0101 ~ 13358895 n 0000 ~ 13359263 n 0000 ~ 13359428 n 0000 ~ 13359572 n 0000 ~ 13360103 n 0000 ~ 13360254 n 0000 ~ 13360390 n 0000 ~ 13363893 n 0000 ~ 13381145 n 0000 ~ 13421832 n 0000 ~ 13422411 n 0000 | a reserve of money set aside for some purpose -13358895 21 n 01 mutual_fund 0 003 @ 13358549 n 0000 ~ 13359032 n 0000 ~ 13359153 n 0000 | the pooled money that is invested in assets -13359032 21 n 02 exchange_traded_fund 0 ETF 0 001 @ 13358895 n 0000 | a mutual fund that is traded on a stock exchange -13359153 21 n 01 index_fund 0 001 @ 13358895 n 0000 | a mutual fund whose assets are stocks on a given list -13359263 21 n 01 revolving_fund 0 001 @ 13358549 n 0000 | a fund which, if borrowed or used, is intended to be replenished so it may be loaned or spent repeatedly -13359428 21 n 01 sinking_fund 0 001 @ 13358549 n 0000 | a fund accumulated regularly in a separate account and used to redeem debt securities -13359572 21 n 02 savings 0 nest_egg 0 002 @ 13358549 n 0000 + 02265979 v 0101 | a fund of money put by as a reserve -13359690 21 n 01 bank_account 0 004 @ 13929037 n 0000 ~ 13359941 n 0000 ~ 13363970 n 0000 ~ 13364212 n 0000 | a fund that a customer has entrusted to a bank and from which the customer can make withdrawals; "he moved his bank account to a new bank" -13359941 21 n 01 giro_account 0 002 @ 13359690 n 0000 ;r 08860123 n 0000 | an account at a post office that can be used in similar ways to an account at a bank -13360103 21 n 02 pension_fund 0 superannuation_fund 0 001 @ 13358549 n 0000 | a fund reserved to pay workers' pensions when they retire from service -13360254 21 n 01 war_chest 0 002 @ 13358549 n 0000 ;c 06148148 n 0000 | a fund accumulated to finance a war (or a political campaign) -13360390 21 n 01 slush_fund 0 001 @ 13358549 n 0000 | a fund for buying votes or bribing public officials -13360498 21 n 01 trust 3 014 @ 13244109 n 0000 ~ 13360950 n 0000 ~ 13361083 n 0000 ~ 13361333 n 0000 ~ 13361465 n 0000 ~ 13361624 n 0000 ~ 13361830 n 0000 ~ 13362347 n 0000 ~ 13362540 n 0000 ~ 13362918 n 0000 ~ 13363056 n 0000 ~ 13363217 n 0000 ~ 13363365 n 0000 ~ 13363704 n 0000 | something (as property) held by one party (the trustee) for the benefit of another (the beneficiary); "he is the beneficiary of a generous trust set up by his father" -13360950 21 n 01 active_trust 0 002 @ 13360498 n 0000 ! 13361333 n 0101 | a trust in which the trustee must perform certain duties -13361083 21 n 01 blind_trust 0 001 @ 13360498 n 0000 | a trust that enables a person to avoid possible conflict of interest by transferring assets to a fiduciary; the person establishing the trust gives up the right to information about the assets -13361333 21 n 01 passive_trust 0 002 @ 13360498 n 0000 ! 13360950 n 0101 | a trust in which the trustee performs no active duties -13361465 21 n 02 charitable_trust 0 public_trust 0 001 @ 13360498 n 0000 | a trust created for charitable or religious or educational or scientific purposes -13361624 21 n 02 Clifford_trust 0 grantor_trust 0 001 @ 13360498 n 0000 | a trust established to shift the income to someone who is taxed at a lower rate than the grantor for a period of 10 years or more -13361830 21 n 01 implied_trust 0 003 @ 13360498 n 0000 ~ 13361962 n 0000 ~ 13362182 n 0000 | a trust inferred by operation of law -13361962 21 n 02 constructive_trust 0 involuntary_trust 0 001 @ 13361830 n 0000 | a trust created by a court (regardless of the intent of the parties) to benefit a party that has been wrongfully deprived of its rights -13362182 21 n 01 resulting_trust 0 001 @ 13361830 n 0000 | a trust created by a court when it is judged that it was the intention of the parties to create a trust -13362347 21 n 02 direct_trust 0 express_trust 0 001 @ 13360498 n 0000 | a trust created by the free and deliberate act of the parties involved (usually on the basis of written documentation) -13362540 21 n 01 discretionary_trust 0 001 @ 13360498 n 0000 | a trust that gives the trustee discretion to pay the beneficiary as much of the trust income as the trustee believes appropriate -13362734 21 n 02 nondiscretionary_trust 0 fixed_investment_trust 0 001 @ 08070850 n 0000 | an investment trust that can buy only those securities listed when the trust was organized -13362918 21 n 02 living_trust 0 inter_vivos_trust 0 001 @ 13360498 n 0000 | a trust created and operating during the grantor's lifetime -13363056 21 n 01 spendthrift_trust 0 001 @ 13360498 n 0000 | a trust created to maintain a beneficiary but to be secure against the beneficiary's improvidence -13363217 21 n 01 testamentary_trust 0 001 @ 13360498 n 0000 | a trust that is created under a will and that becomes active after the grantor dies -13363365 21 n 05 savings_account_trust 0 savings_bank_trust 0 trust_account 0 trustee_account 0 Totten_trust 0 001 @ 13360498 n 0000 | a savings account deposited by someone who makes themselves the trustee for a beneficiary and who controls it during their lifetime; afterward the balance is payable to the previously named beneficiary -13363704 21 n 01 voting_trust 0 001 @ 13360498 n 0000 | an agreement whereby persons owning stock with voting powers retain ownership while transferring the voting rights to the trustees -13363893 21 n 01 trust_fund 0 001 @ 13358549 n 0000 | a fund held in trust -13363970 21 n 03 checking_account 0 chequing_account 0 current_account 1 004 @ 13359690 n 0000 ;r 08860123 n 0304 ;r 08820121 n 0201 ;r 09044862 n 0101 | a bank account against which the depositor can draw checks that are payable on demand -13364212 21 n 01 savings_account 0 004 @ 13359690 n 0000 ~ 13364368 n 0000 ~ 13364602 n 0000 ~ 13364821 n 0000 | a bank account that accumulates interest -13364368 21 n 02 time_deposit_account 0 deposit_account 0 001 @ 13364212 n 0000 | a savings account in which the deposit is held for a fixed term or in which withdrawals can be made only after giving notice or with loss of interest -13364602 21 n 01 dormant_account 0 001 @ 13364212 n 0000 | a savings account showing no activity (other than posting interest) for some specified period; "the dormant account reverted to the state under escheat laws" -13364821 21 n 01 passbook_savings_account 0 001 @ 13364212 n 0000 | a savings account in which deposits and withdrawals are recorded in the depositor's passbook -13364984 21 n 01 cash_equivalent 0 002 @ 13398241 n 0000 ~ 13414849 n 0000 | a highly liquid debt instrument with maturities of less than three months -13365137 21 n 02 certificate_of_deposit 0 CD 0 002 @ 13398241 n 0000 ~ 13381428 n 0000 | a debt instrument issued by a bank; usually pays interest -13365286 21 n 06 support 0 keep 0 livelihood 0 living 0 bread_and_butter 0 sustenance 0 008 @ 13331778 n 0000 + 01184625 v 0601 + 01184625 v 0202 + 02219094 v 0101 ~ 13366137 n 0000 ~ 13366311 n 0000 ~ 13366428 n 0000 ~ 13366537 n 0000 | the financial means whereby one lives; "each child was expected to pay for their keep"; "he applied to the state for support"; "he could no longer earn his own livelihood" -13365698 21 n 05 support 1 financial_support 0 funding 0 backing 0 financial_backing 0 004 @ 13331778 n 0000 + 02217695 v 0401 + 02215506 v 0301 + 02219094 v 0101 | financial resources provided to make some project possible; "the foundation provided support for the experiment" -13365978 21 n 01 ways_and_means 0 001 @ 13331778 n 0000 | resources available to meet expenses (especially legislation for raising revenue for a government) -13366137 21 n 04 comforts 0 creature_comforts 0 amenities 0 conveniences 0 001 @ 13365286 n 0000 | things that make you comfortable and at ease; "all the comforts of home" -13366311 21 n 01 maintenance 0 002 @ 13365286 n 0000 + 01184625 v 0103 | means of maintenance of a family or group -13366428 21 n 01 meal_ticket 0 002 @ 13365286 n 0000 ;u 07075172 n 0000 | a source of income or livelihood -13366537 21 n 01 subsistence 0 001 @ 13365286 n 0000 | minimal (or marginal) resources for subsisting; "social security provided only a bare subsistence" -13366693 21 n 01 accumulation 0 004 @ 13258362 n 0000 ;c 06150633 n 0000 ~ 13367070 n 0000 ~ 13368052 n 0000 | (finance) profits that are not paid out as dividends but are added to the capital base of the corporation -13366912 21 n 03 hoard 0 cache 0 stash 0 004 @ 13367070 n 0000 + 02305856 v 0302 + 02305856 v 0203 + 02305856 v 0101 | a secret store of valuables or money -13367070 21 n 03 store 0 stock 1 fund 1 013 @ 13366693 n 0000 + 10658304 n 0201 + 01318053 n 0201 + 02329733 v 0201 + 02323059 v 0201 + 02323286 v 0201 + 02285392 v 0201 + 02281093 v 0101 ~ 03569964 n 0000 ~ 13366912 n 0000 ~ 13367448 n 0000 ~ 13367593 n 0000 ~ 13367787 n 0000 | a supply of something available for future use; "he brought back a large store of Cuban cigars" -13367448 21 n 01 provision 0 002 @ 13367070 n 0000 + 02338975 v 0101 | a store or supply of something (especially of food or clothing or arms) -13367593 21 n 03 issue 1 military_issue 0 government_issue 0 003 @ 13367070 n 0000 ;c 08199025 n 0000 + 02479323 v 0101 | supplies (as food or clothing or ammunition) issued by the government -13367787 21 n 01 seed_stock 0 002 @ 13367070 n 0000 ~ 13367913 n 0000 | a supply of seeds (or tubers) reserved for planting -13367913 21 n 02 seed_corn 0 seed_grain 0 001 @ 13367787 n 0000 | good quality seeds (as kernels of corn) that are reserved for planting -13368052 21 n 03 reserve 0 backlog 0 stockpile 0 008 @ 13366693 n 0000 + 02285392 v 0303 + 00159236 v 0201 + 00724150 v 0105 + 02214485 v 0101 ~ 13368318 n 0000 ~ 13369074 n 0000 ~ 13370014 n 0000 | something kept back or saved for future use or a special purpose -13368318 21 n 01 bank 0 005 @ 13368052 n 0000 ~ 13368517 n 0000 ~ 13368675 n 0000 ~ 13368900 n 0000 ~ 13369282 n 0000 | a supply or stock held in reserve for future use (especially in emergencies) -13368517 21 n 01 blood_bank 0 001 @ 13368318 n 0000 | a place for storing whole blood or blood plasma; "the Red Cross created a blood bank for emergencies" -13368675 21 n 01 eye_bank 0 001 @ 13368318 n 0000 | a place for storing and preserving corneas that are obtained from human corpses immediately after death; used for corneal transplantation to patients with corneal defects -13368900 21 n 01 food_bank 0 001 @ 13368318 n 0000 | a place where food is contributed and made available to those in need; "they set up a food bank for the flood victims" -13369074 21 n 01 fuel_level 0 001 @ 13368052 n 0000 | the amount of fuel remaining -13369159 21 n 01 hole_card 0 001 @ 13329641 n 0000 | any assets that are concealed until they can be used advantageously -13369282 21 n 01 soil_bank 0 001 @ 13368318 n 0000 | land retired from crop cultivation and planted with soil-building crops; government subsidies are paid to farmers for their retired land -13369474 21 n 02 pool 1 kitty 0 001 @ 13343526 n 0000 | the combined stakes of the betters -13369567 21 n 01 hidden_reserve 0 002 @ 13370014 n 0000 ~ 13369723 n 0000 | reserves that do not show up on the balance sheet (as by understating values) -13369723 21 n 01 cookie_jar_reserve 0 001 @ 13369567 n 0000 | a hidden reserve that can be used to adjust quarterly earning reports -13369857 21 n 01 pool 0 003 @ 13370014 n 0000 + 02295842 v 0101 %p 13343526 n 0000 | any communal combination of funds; "everyone contributed to the pool" -13370014 21 n 02 reserve_account 0 reserve_fund 0 004 @ 13368052 n 0000 ~ 13369567 n 0000 ~ 13369857 n 0000 ~ 13370215 n 0000 | funds taken out of earnings to provide for anticipated future payments -13370215 21 n 04 valuation_reserve 0 valuation_account 0 allowance 3 allowance_account 0 001 @ 13370014 n 0000 | a reserve fund created by a charge against profits in order to provide for changes in the value of a company's assets -13370448 21 n 01 treasure 1 003 @ 00032613 n 0000 + 01776214 v 0104 + 02256109 v 0103 | any possession that is highly valued by its owner; "the children returned from the seashore with their shells and other treasures" -13370669 21 n 02 treasure 0 hoarded_wealth 0 005 @ 13353280 n 0000 ~ 13370938 n 0000 ~ 13371030 n 0000 ~ 13371274 n 0000 ~ 13371355 n 0000 | accumulated wealth in the form of money or jewels etc.; "the pirates hid their treasure on a small island in the West Indies" -13370938 21 n 01 fortune 0 001 @ 13370669 n 0000 | a large amount of wealth or prosperity -13371030 21 n 01 valuable 0 004 @ 13370669 n 0000 + 02500884 a 0101 ~ 13371190 n 0000 ~ 13371489 n 0000 | something of value; "all our valuables were stolen" -13371190 21 n 01 swag 1 002 @ 13371030 n 0000 ;u 07075172 n 0000 | valuable goods -13371274 21 n 01 king's_ransom 0 001 @ 13370669 n 0000 | a very large treasure -13371355 21 n 02 treasure_trove 0 trove 0 001 @ 13370669 n 0000 | treasure of unknown ownership found hidden (usually in the earth) -13371489 21 n 01 precious_metal 0 004 @ 13371030 n 0000 ~ 13371682 n 0000 ~ 13371760 n 0000 ~ 13371866 n 0000 | any of the less common and valuable metals often used to make coins or jewelry -13371682 21 n 01 bullion 0 001 @ 13371489 n 0000 | a mass of precious metal -13371760 21 n 01 gold 0 003 @ 13371489 n 0000 + 01528730 a 0101 %s 14638799 n 0000 | coins made of gold -13371866 21 n 01 silver 0 002 @ 13371489 n 0000 %s 14654954 n 0000 | coins made of silver -13371958 21 n 01 diamond 0 002 @ 03596787 n 0000 ~ 13372123 n 0000 | a transparent piece of diamond that has been cut and polished and is valued as a precious gem -13372123 21 n 02 ice 0 sparkler 0 003 @ 13371958 n 0000 ;u 07075172 n 0000 + 02766390 v 0201 | diamonds; "look at the ice on that dame!" -13372262 21 n 01 ruby 0 001 @ 03596787 n 0000 | a transparent piece of ruby that has been cut and polished and is valued as a precious gem -13372403 21 n 01 pearl 0 003 @ 03596787 n 0000 + 01383800 v 0101 ~ 13372585 n 0000 | a smooth lustrous round structure inside the shell of a clam or oyster; much valued as a jewel -13372585 21 n 01 seed_pearl 0 001 @ 13372403 n 0000 | a small imperfect pearl -13372665 21 n 01 emerald 0 001 @ 03596787 n 0000 | a transparent piece of emerald that has been cut and polished and is valued as a precious gem -13372812 21 n 01 sapphire 0 001 @ 03596787 n 0000 | a transparent piece of sapphire that has been cut and polished and is valued as a precious gem -13372961 21 n 02 medium_of_exchange 0 monetary_system 0 004 @ 07260623 n 0000 ~ 13374008 n 0000 ~ 13384557 n 0000 ~ 13385913 n 0000 | anything that is generally accepted as a standard of value and a measure of wealth in a particular country or region -13373214 21 n 02 standard 0 monetary_standard 0 006 @ 05138488 n 0000 + 00467717 v 0101 + 00467717 v 0102 ~ 13373426 n 0000 ~ 13373584 n 0000 ~ 13373746 n 0000 | the value behind the money in a monetary system -13373426 21 n 01 gold_standard 0 001 @ 13373214 n 0000 | a monetary standard under which the basic unit of currency is defined by a stated quantity of gold -13373584 21 n 01 silver_standard 0 001 @ 13373214 n 0000 | a monetary standard under which the basic unit of currency is defined by a stated quantity of silver -13373746 21 n 01 bimetallism 0 003 @ 13373214 n 0000 + 02664354 a 0101 + 09854813 n 0101 | a monetary standard under which the basic unit of currency is defined by stated amounts of two metals (usually gold and silver) with values set at a predetermined ratio -13374008 21 n 03 tender 0 legal_tender 0 stamp 0 002 @ 13372961 n 0000 ~ 13374161 n 0000 | something that can be used as an official medium of payment -13374161 21 n 01 food_stamp 0 001 @ 13374008 n 0000 | a government-issued stamp that can be used in exchange for food -13374281 21 n 02 credit 0 deferred_payment 0 002 @ 13278375 n 0000 ! 13386465 n 0101 | arrangement for deferred payment for goods and services -13374426 21 n 01 consumer_credit 0 004 @ 13379413 n 0000 ~ 13374979 n 0000 ~ 13375167 n 0000 ~ 13375323 n 0000 | a line of credit extended for personal or household use -13374597 21 n 01 bank_loan 0 003 @ 13398953 n 0000 ~ 13374764 n 0000 ~ 13374887 n 0000 | a loan made by a bank; to be repaid with interest on or before a fixed date -13374764 21 n 02 business_loan 0 commercial_loan 0 001 @ 13374597 n 0000 | a bank loan granted for the use of a business -13374887 21 n 01 interbank_loan 0 001 @ 13374597 n 0000 | a loan from one bank to another -13374979 21 n 04 home_loan 0 home_equity_credit 0 home_equity_loan 0 equity_credit_line 0 002 @ 13374426 n 0000 @ 13398953 n 0000 | a loan secured by equity value in the borrower's home -13375167 21 n 02 installment_credit 0 installment_loan 0 002 @ 13374426 n 0000 @ 13398953 n 0000 | a loan repaid with interest in equal periodic payments -13375323 21 n 03 open-end_credit 0 revolving_credit 0 charge_account_credit 0 006 @ 13374426 n 0000 ~ 13375604 n 0000 ~ 13376012 n 0000 ~ 13376764 n 0000 ~ 13377003 n 0000 ~ 13380996 n 0000 | a consumer credit line that can be used up to a certain limit or paid down at any time -13375604 21 n 03 credit_account 0 charge_account 0 open_account 0 002 @ 13375323 n 0000 ~ 13375758 n 0000 | credit extended by a business to a customer -13375758 21 n 01 revolving_charge_account 0 001 @ 13375604 n 0000 | a charge account that does not have to be paid to zero balance -13375891 21 n 02 advance 0 cash_advance 0 002 @ 13331198 n 0000 + 02283949 v 0101 | an amount paid before it is earned -13376012 21 n 04 credit_card 0 charge_card 0 charge_plate 0 plastic 0 006 @ 13375323 n 0000 @ 06885389 n 0000 %p 03707766 n 0000 ~ 13376426 n 0000 ~ 13376512 n 0000 ~ 13376643 n 0000 | a card (usually plastic) that assures a seller that the person using it has a satisfactory credit rating and that the issuer will see to it that the seller receives payment for the merchandise delivered; "do you take plastic?" -13376426 21 n 01 bank_card 0 001 @ 13376012 n 0000 | a credit card issued by a bank -13376512 21 n 02 calling_card 0 phone_card 0 001 @ 13376012 n 0000 | a card that is used instead of cash to make telephone calls -13376643 21 n 02 cash_card 0 cashcard 0 001 @ 13376012 n 0000 | a credit card that entitles the holder to receive cash -13376764 21 n 01 debit_card 0 003 @ 13375323 n 0000 @ 06885389 n 0000 %p 03707766 n 0000 | a card (usually plastic) that enables the holder to withdraw money or to have the cost of purchases charged directly to the holder's bank account -13377003 21 n 01 smart_card 0 002 @ 13375323 n 0000 @ 06885389 n 0000 | a plastic card containing a microprocessor that enables the holder to perform operations requiring data that is stored in the microprocessor; typically used to perform financial transactions -13377268 21 n 03 draft 0 bill_of_exchange 0 order_of_payment 0 013 @ 06481156 n 0000 ~ 13377654 n 0000 ~ 13377749 n 0000 ~ 13377899 n 0000 ~ 13378031 n 0000 ~ 13378174 n 0000 ~ 13380530 n 0000 ~ 13380667 n 0000 ~ 13380820 n 0000 ~ 13381602 n 0000 ~ 13381734 n 0000 ~ 13422905 n 0000 ~ 13423007 n 0000 | a document ordering the payment of money; drawn by one person or bank on another -13377654 21 n 01 overdraft 0 001 @ 13377268 n 0000 | a draft in excess of the credit balance -13377749 21 n 02 foreign_bill 0 foreign_draft 0 001 @ 13377268 n 0000 | a bill of exchange that is drawn in one country and made payable in another -13377899 21 n 01 inland_bill 0 001 @ 13377268 n 0000 | a bill of exchange that is both drawn and made payable in the same country -13378031 21 n 01 redraft 0 001 @ 13377268 n 0000 | a draft for the amount of a dishonored draft plus the costs and charges of drafting again -13378174 21 n 01 trade_acceptance 0 001 @ 13377268 n 0000 | a bill of exchange for a specific purchase; drawn on the buyer by the seller and bearing the buyer's acceptance -13378348 21 n 01 foreign_exchange 0 001 @ 01093085 n 0000 | the system by which one currency is exchanged for another; enables international transactions to take place -13378518 21 n 01 credit 2 007 @ 13329641 n 0000 ~ 13378717 n 0000 ~ 13379106 n 0000 ~ 13379264 n 0000 ~ 13379413 n 0000 ~ 13379619 n 0000 ~ 13379753 n 0000 | money available for a client to borrow -13378717 21 n 01 cheap_money 0 001 @ 13378518 n 0000 | credit available at low rates of interest -13378816 21 n 01 overage 0 001 @ 13329641 n 0000 | a surplus or excess of money or merchandise that is actually on hand and that exceeds expectations -13378968 21 n 01 tax_credit 0 001 @ 00351638 n 0000 | a direct reduction in tax liability (not dependent on the taxpayer's tax bracket) -13379106 21 n 01 export_credit 0 001 @ 13378518 n 0000 | a credit opened by an importer with a bank in an exporter's country to finance an export operation -13379264 21 n 01 import_credit 0 001 @ 13378518 n 0000 | credit opened by an importer at a bank in his own country upon which an exporter may draw -13379413 21 n 06 credit_line 0 line_of_credit 0 bank_line 0 line 0 personal_credit_line 0 personal_line_of_credit 0 002 @ 13378518 n 0000 ~ 13374426 n 0000 | the maximum credit that a customer is allowed -13379619 21 n 01 commercial_credit 0 001 @ 13378518 n 0000 | credit granted by a bank to a business concern for commercial purposes -13379753 21 n 01 letter_of_credit 0 004 @ 13403331 n 0000 @ 13378518 n 0000 ~ 13380004 n 0000 ~ 13380148 n 0000 | a document issued by a bank that guarantees the payment of a customer's draft; substitutes the bank's credit for the customer's credit -13380004 21 n 01 commercial_letter_of_credit 0 001 @ 13379753 n 0000 | a letter of credit given to a business concern for commercial purposes -13380148 21 n 02 traveler's_letter_of_credit 0 traveller's_letter_of_credit 0 002 @ 13379753 n 0000 ~ 13380309 n 0000 | a letter of credit given to a traveler -13380309 21 n 03 traveler's_check 0 traveller's_check 0 banker's_check 0 001 @ 13380148 n 0000 | a letter of credit issued by a bank or express company that is payable on presentation to any correspondent of the issuer -13380530 21 n 02 bank_draft 0 banker's_draft 0 001 @ 13377268 n 0000 | a draft drawn by a bank against funds deposited in another bank -13380667 21 n 01 dividend_warrant 0 001 @ 13377268 n 0000 | an order of payment (such as a check payable to a shareholder) in which a dividend is paid -13380820 21 n 02 money_order 0 postal_order 0 001 @ 13377268 n 0000 | a written order for the payment of a sum to a named individual; obtainable and payable at a post office -13380996 21 n 02 overdraft_credit 0 check_overdraft_credit 0 001 @ 13375323 n 0000 | credit provided by a bank in honoring a customer's overdrafts -13381145 21 n 02 deposit 1 bank_deposit 0 003 @ 13358549 n 0000 + 02310855 v 0101 ~ 13381303 n 0000 | money deposited in a bank or some similar institution -13381303 21 n 01 demand_deposit 0 001 @ 13381145 n 0000 | a bank deposit from which withdrawals can be made without notice -13381428 21 n 01 time_deposit 0 001 @ 13365137 n 0000 | a certificate of deposit from which withdrawals can be made only after advance notice or at a specified future date -13381602 21 n 02 acceptance 0 banker's_acceptance 0 001 @ 13377268 n 0000 | banking: a time draft drawn on and accepted by a bank -13381734 21 n 03 check 0 bank_check 0 cheque 0 014 @ 13377268 n 0000 + 02311260 v 0301 + 01064999 v 0101 ~ 13382121 n 0000 ~ 13382306 n 0000 ~ 13382471 n 0000 ~ 13382614 n 0000 ~ 13382766 n 0000 ~ 13382975 n 0000 ~ 13383090 n 0000 ~ 13383289 n 0000 ~ 13383439 n 0000 ~ 13383696 n 0000 ~ 13384018 n 0000 | a written order directing a bank to pay money; "he paid all his bills by check" -13382121 21 n 02 bad_check 0 bad_cheque 0 001 @ 13381734 n 0000 | a check that is dishonored on presentation because of insufficient funds; "issuing a bad check is a form of larceny" -13382306 21 n 01 kite 0 002 @ 13381734 n 0000 + 02206140 v 0101 | a bank check drawn on insufficient funds at another bank in order to take advantage of the float -13382471 21 n 01 kite 1 002 @ 13381734 n 0000 + 02206313 v 0101 | a bank check that has been fraudulently altered to increase its face value -13382614 21 n 01 counter_check 0 001 @ 13381734 n 0000 | a blank check provided by a bank for the convenience of customers who are making withdrawals -13382766 21 n 02 giro 0 giro_cheque 0 002 @ 13381734 n 0000 ;r 08860123 n 0000 | a check given by the British government to someone who is unemployed; it can be cashed either at a bank or at the post office -13382975 21 n 02 paycheck 0 payroll_check 0 001 @ 13381734 n 0000 | a check issued in payment of wages or salary -13383090 21 n 02 certified_check 0 certified_cheque 0 001 @ 13381734 n 0000 | a check containing certification that the person who issued the check has sufficient funds on deposit to cover payment -13383289 21 n 02 personal_check 0 personal_cheque 0 001 @ 13381734 n 0000 | a check drawn against funds deposited in your personal checking account -13383439 21 n 04 cashier's_check 0 treasurer's_check 0 cashier's_cheque 0 treasurer's_cheque 0 001 @ 13381734 n 0000 | a check issued by the officer of a bank on the banks own account (not that of a private person); "cashier's checks are as good as cash" -13383696 21 n 02 blank_check 0 blank_cheque 0 002 @ 13381734 n 0000 #m 13414310 n 0000 | a check that has been signed but with the amount payable left blank -13383855 21 n 02 disability_check 0 disability_payment 0 001 @ 13281275 n 0000 | a monthly payment made to someone who has become disabled and is unable to work -13384018 21 n 02 medicare_check 0 medicare_payment 0 001 @ 13381734 n 0000 | a check reimbursing an aged person for the expenses of health care -13384164 21 n 01 pension 0 003 @ 13281275 n 0000 + 02262601 v 0101 ~ 13384341 n 0000 | a regular payment to a person that is intended to allow them to subsist without working -13384341 21 n 06 old-age_pension 0 retirement_pension 0 retirement_check 0 retirement_benefit 0 retirement_fund 0 superannuation 0 001 @ 13384164 n 0000 | a monthly payment made to someone who is retired from work -13384557 21 n 01 money 0 010 @ 13372961 n 0000 #p 13357178 n 0000 + 02775934 a 0101 + 09934921 n 0103 ~ 13289845 n 0000 ~ 13358549 n 0000 ~ 13385216 n 0000 ~ 13385466 n 0000 ~ 13385583 n 0000 ~ 13385778 n 0000 | the most common medium of exchange; functions as legal tender; "we tried to collect the money he owed us" -13384877 21 n 01 money 1 004 @ 13385913 n 0000 + 02775934 a 0101 + 09934921 n 0103 ~ 13385080 n 0000 | the official currency issued by a government or national bank; "he changed his money into francs" -13385080 21 n 01 sterling 0 001 @ 13384877 n 0000 | British money; especially the pound sterling as the basic monetary unit of the UK -13385216 21 n 13 boodle 0 bread 0 cabbage 0 clams 0 dinero 0 dough 0 gelt 0 kale 0 lettuce 0 lolly 0 lucre 2 loot 1 moolah 0 pelf 0 scratch 0 shekels 0 simoleons 0 sugar 0 wampum 0 002 @ 13384557 n 0000 + 02276866 v 0302 | informal terms for money -13385466 21 n 01 shinplaster 0 001 @ 13384557 n 0000 | paper money of little value issued on insufficient security -13385583 21 n 02 subsidization 0 subsidisation 0 005 @ 13384557 n 0000 + 02217011 v 0202 + 02216710 v 0202 + 02217011 v 0101 + 02216710 v 0101 | money (or other benefits) obtained as a subsidy -13385778 21 n 01 token_money 0 001 @ 13384557 n 0000 | coins of regular issue whose face value is greater than their intrinsic value -13385913 21 n 01 currency 0 007 @ 13372961 n 0000 ~ 13384877 n 0000 ~ 13386136 n 0000 ~ 13386614 n 0000 ~ 13386882 n 0000 ~ 13387209 n 0000 ~ 13387877 n 0000 | the metal or paper medium of exchange that is presently used -13386136 21 n 01 Eurocurrency 0 002 @ 13385913 n 0000 ~ 13674479 n 0000 | currency of the major financial and industrial countries held in those countries for the purpose of lending and borrowing -13386334 21 n 01 fractional_currency 0 001 @ 13387209 n 0000 | paper currency in denominations less than the basic monetary unit -13386465 21 n 02 cash 2 immediate_payment 0 002 @ 13278375 n 0000 ! 13374281 n 0101 | prompt payment for goods or services in currency or by check -13386614 21 n 03 cash 0 hard_cash 0 hard_currency 0 007 @ 13385913 n 0000 + 02256354 v 0101 ~ 13387479 n 0000 ~ 13387689 n 0000 ~ 13388000 n 0000 ~ 13422545 n 0000 ~ 13422684 n 0000 | money in the form of bills or coins; "there is a desperate shortage of hard cash" -13386882 21 n 01 hard_currency 1 001 @ 13385913 n 0000 | a currency that is not likely to depreciate suddenly in value; "the countries agreed to conduct their bilateral trade in hard currency, replacing previous barter arrangements"; "Germany once had a solid economy, good fiscal and monetary policies, and a hard currency" -13387209 21 n 03 paper_money 0 folding_money 0 paper_currency 0 004 @ 13385913 n 0000 ~ 13386334 n 0000 ~ 13393599 n 0000 ~ 13393762 n 0000 | currency issued by a government or central bank and consisting of printed paper that can circulate as a substitute for specie -13387479 21 n 01 change 3 001 @ 13386614 n 0000 | money received in return for its equivalent in a larger denomination or a different currency; "he got change for a twenty and used it to pay the taxi driver" -13387689 21 n 01 change 2 001 @ 13386614 n 0000 | the balance of money received when the amount you tender is greater than the amount due; "I paid with a twenty and pocketed the change" -13387877 21 n 04 coinage 0 mintage 0 specie 0 metal_money 0 002 @ 13385913 n 0000 ~ 13388245 n 0000 | coins collectively -13388000 21 n 03 small_change 0 chickenfeed 0 chump_change 0 001 @ 13386614 n 0000 | a trifling sum of money -13388111 21 n 01 change 1 001 @ 13388245 n 0000 | coins of small denomination regarded collectively; "he had a pocketful of change" -13388245 21 n 01 coin 2 043 @ 13387877 n 0000 + 01639105 v 0102 %p 03501811 n 0000 %p 03840507 n 0000 %p 04085181 n 0000 %p 04384199 n 0000 ~ 13388111 n 0000 ~ 13389105 n 0000 ~ 13389194 n 0000 ~ 13389359 n 0000 ~ 13389475 n 0000 ~ 13389577 n 0000 ~ 13389660 n 0000 ~ 13389763 n 0000 ~ 13389864 n 0000 ~ 13389949 n 0000 ~ 13390040 n 0000 ~ 13390139 n 0000 ~ 13390244 n 0000 ~ 13390405 n 0000 ~ 13390525 n 0000 ~ 13390626 n 0000 ~ 13390788 n 0000 ~ 13390857 n 0000 ~ 13390963 n 0000 ~ 13391118 n 0000 ~ 13391262 n 0000 ~ 13391373 n 0000 ~ 13391452 n 0000 ~ 13391610 n 0000 ~ 13391693 n 0000 ~ 13391967 n 0000 ~ 13392357 n 0000 ~ 13392472 n 0000 ~ 13392580 n 0000 ~ 13392688 n 0000 ~ 13392786 n 0000 ~ 13392896 n 0000 ~ 13392977 n 0000 ~ 13393059 n 0000 ~ 13393155 n 0000 ~ 13393265 n 0000 ~ 13393427 n 0000 | a flat metal piece (usually a disc) used as money -13389105 21 n 01 bawbee 0 001 @ 13388245 n 0000 | an old Scottish coin of little value -13389194 21 n 04 bezant 0 bezzant 0 byzant 0 solidus 0 001 @ 13388245 n 0000 | a gold coin of the Byzantine Empire; widely circulated in Europe in the Middle Ages -13389359 21 n 01 denier 0 001 @ 13388245 n 0000 | any of various former European coins of different denominations -13389475 21 n 01 ducat 0 001 @ 13388245 n 0000 | formerly a gold coin of various European countries -13389577 21 n 01 real 0 001 @ 13388245 n 0000 | an old small silver Spanish coin -13389660 21 n 01 piece_of_eight 0 001 @ 13388245 n 0000 | an old silver Spanish coin; worth 8 reales -13389763 21 n 01 shilling 0 001 @ 13388245 n 0000 | an English coin worth one twentieth of a pound -13389864 21 n 01 crown 0 001 @ 13388245 n 0000 | an English coin worth 5 shillings -13389949 21 n 01 half_crown 0 001 @ 13388245 n 0000 | an English coin worth half a crown -13390040 21 n 01 dime 0 001 @ 13388245 n 0000 | a United States coin worth one tenth of a dollar -13390139 21 n 01 nickel 0 001 @ 13388245 n 0000 | a United States coin worth one twentieth of a dollar -13390244 21 n 01 quarter 0 001 @ 13388245 n 0000 | a United States or Canadian coin worth one fourth of a dollar; "he fed four quarters into the slot machine" -13390405 21 n 02 half_dollar 0 fifty-cent_piece 0 001 @ 13388245 n 0000 | a United States coin worth half of a dollar -13390525 21 n 02 halfpenny 0 ha'penny 0 001 @ 13388245 n 0000 | an English coin worth half a penny -13390626 21 n 03 penny 0 cent 0 centime 0 003 @ 13388245 n 0000 ~ 13391774 n 0000 ~ 13391841 n 0000 | a coin worth one-hundredth of the value of the basic unit -13390788 21 n 01 slug 0 001 @ 13388245 n 0000 | a counterfeit coin -13390857 21 n 01 tenpence 0 002 @ 13388245 n 0000 ;r 08860123 n 0000 | a decimal coin worth ten pennies -13390963 21 n 02 twopence 0 tuppence 0 001 @ 13388245 n 0000 | a former United Kingdom silver coin; United Kingdom bronze decimal coin worth two pennies -13391118 21 n 01 threepence 0 002 @ 13388245 n 0000 ;r 08860123 n 0000 | former cupronickel coin of the United Kingdom equal to three pennies -13391262 21 n 02 fourpence 0 groat 0 001 @ 13388245 n 0000 | a former English silver coin worth four pennies -13391373 21 n 01 fivepence 0 001 @ 13388245 n 0000 | a coin worth five cents -13391452 21 n 02 sixpence 0 tanner 0 002 @ 13388245 n 0000 ;r 08860123 n 0000 | a small coin of the United Kingdom worth six pennies; not minted since 1970 -13391610 21 n 01 eightpence 0 001 @ 13388245 n 0000 | a coin worth eight pennies -13391693 21 n 01 ninepence 0 001 @ 13388245 n 0000 | a coin worth nine pennies -13391774 21 n 01 copper 0 001 @ 13390626 n 0000 | a copper penny -13391841 21 n 01 new_penny 0 001 @ 13390626 n 0000 | a coin used in Great Britain since 1971 worth one hundredth of a pound -13391967 21 n 01 dollar 1 003 @ 13388245 n 0000 ~ 13392156 n 0000 ~ 13392262 n 0000 | a United States coin worth one dollar; "the dollar coin has never been popular in the United States" -13392156 21 n 01 Susan_B_Anthony_dollar 0 001 @ 13391967 n 0000 | a United States coin worth one dollar -13392262 21 n 02 silver_dollar 0 cartwheel 0 001 @ 13391967 n 0000 | a dollar made of silver -13392357 21 n 01 double_eagle 0 001 @ 13388245 n 0000 | a former gold coin in the United States worth 20 dollars -13392472 21 n 01 eagle 0 001 @ 13388245 n 0000 | a former gold coin in the United States worth 10 dollars -13392580 21 n 01 half_eagle 0 001 @ 13388245 n 0000 | a former gold coin in United States worth 5 dollars -13392688 21 n 01 guinea 0 001 @ 13388245 n 0000 | a former British gold coin worth 21 shillings -13392786 21 n 01 farthing 0 001 @ 13388245 n 0000 | a former British bronze coin worth a quarter of a penny -13392896 21 n 01 doubloon 0 001 @ 13388245 n 0000 | a former Spanish gold coin -13392977 21 n 01 louis_d'or 0 001 @ 13388245 n 0000 | a former French gold coin -13393059 21 n 01 medallion 0 001 @ 13388245 n 0000 | any of various large ancient Greek coins -13393155 21 n 01 stater 0 001 @ 13388245 n 0000 | any of the various silver or gold coins of ancient Greece -13393265 21 n 01 sou 0 001 @ 13388245 n 0000 | a former French coin of low denomination; often used of any small amount of money; "he hasn't a sou to his name" -13393427 21 n 01 Maundy_money 0 002 @ 13388245 n 0000 ;r 08860123 n 0000 | specially minted silver coins that are distributed by the British sovereign on Maundy Thursday -13393599 21 n 01 fiat_money 0 001 @ 13387209 n 0000 | money that the government declares to be legal tender although it cannot be converted into standard specie -13393762 21 n 09 bill 0 note 1 government_note 0 bank_bill 0 banker's_bill 0 bank_note 0 banknote 0 Federal_Reserve_note 0 greenback 1 009 @ 13387209 n 0000 ~ 13394179 n 0000 ~ 13395074 n 0000 ~ 13395187 n 0000 ~ 13395296 n 0000 ~ 13395407 n 0000 ~ 13395515 n 0000 ~ 13395799 n 0000 ~ 13395897 n 0000 | a piece of paper money (especially one issued by a central bank); "he peeled off five one-thousand-zloty notes" -13394179 21 n 01 silver_certificate 0 001 @ 13393762 n 0000 | formerly a bank note issued by the United States Treasury and redeemable in silver -13394326 21 n 02 Treasury 1 Treasury_obligations 0 004 @ 13338234 n 0000 ~ 13394592 n 0000 ~ 13394792 n 0000 ~ 13394907 n 0000 | negotiable debt obligations of the United States government which guarantees that interest and principal payments will be paid on time -13394592 21 n 02 Treasury_bill 0 T-bill 0 001 @ 13394326 n 0000 | a short-term obligation that is not interest-bearing (it is purchased at a discount); can be traded on a discount basis for 91 days -13394792 21 n 01 Treasury_bond 0 001 @ 13394326 n 0000 | a debt instrument with maturities of 10 years or longer -13394907 21 n 01 Treasury_note 0 001 @ 13394326 n 0000 | securities with maturities of 1 to 10 years; sold for cash or in exchange for maturing issues or at auction -13395074 21 n 02 hundred_dollar_bill 0 c-note 0 001 @ 13393762 n 0000 | a United States bill worth 100 dollars -13395187 21 n 02 fifty_dollar_bill 0 fifty 0 001 @ 13393762 n 0000 | a United States bill worth 50 dollars -13395296 21 n 02 twenty_dollar_bill 0 twenty 0 001 @ 13393762 n 0000 | a United States bill worth 20 dollars -13395407 21 n 02 tenner 0 ten_dollar_bill 0 001 @ 13393762 n 0000 | a United States bill worth 10 dollars -13395515 21 n 03 fiver 0 five-spot 0 five_dollar_bill 0 002 @ 13393762 n 0000 ~ 13395652 n 0000 | a United States bill worth 5 dollars -13395652 21 n 02 nickel 1 nickel_note 0 001 @ 13395515 n 0000 | five dollars worth of a drug; "a nickel bag of drugs"; "a nickel deck of heroin" -13395799 21 n 01 two_dollar_bill 0 001 @ 13393762 n 0000 | a United States bill worth 2 dollars -13395897 21 n 05 dollar 0 dollar_bill 0 one_dollar_bill 0 buck 0 clam 0 002 @ 13393762 n 0000 ;r 09044862 n 0000 | a piece of paper money worth one dollar -13396054 21 n 01 liabilities 0 008 @ 00032613 n 0000 ;u 06295235 n 0000 ~ 13309956 n 0000 ~ 13330168 n 0000 ~ 13396276 n 0000 ~ 13397174 n 0000 ~ 13400798 n 0000 ~ 13407561 n 0000 | anything that is owed to someone else -13396276 21 n 01 deficit 0 003 @ 13396054 n 0000 ~ 13396485 n 0000 ~ 13396768 n 0000 | an excess of liabilities over assets (usually over a certain period); "last year there was a serious budgetary deficit" -13396485 21 n 01 budget_deficit 0 002 @ 13396276 n 0000 ~ 13396603 n 0000 | an excess of expenditures over revenues -13396603 21 n 01 federal_deficit 0 001 @ 13396485 n 0000 | an excess of the federal government's spending over its revenue; "federal deficits can cause inflation" -13396768 21 n 01 trade_deficit 0 001 @ 13396276 n 0000 | an excess of imports over exports -13396861 21 n 01 due 0 001 @ 13318147 n 0000 | a payment that is due (e.g., as the price of membership); "the society dropped him for non-payment of dues" -13397018 21 n 01 limited_liability 0 001 @ 14490319 n 0000 | the liability of a firm's owners for no more than the capital they have invested in the firm -13397174 21 n 01 debt 0 010 @ 13396054 n 0000 ~ 13397443 n 0000 ~ 13397519 n 0000 ~ 13397705 n 0000 ~ 13397932 n 0000 ~ 13398768 n 0000 ~ 13398859 n 0000 ~ 13398953 n 0000 ~ 13400662 n 0000 ~ 14491034 n 0000 | money or goods or services owed by one person to another -13397443 21 n 01 arrears 0 001 @ 13397174 n 0000 | an unpaid overdue debt -13397519 21 n 01 national_debt 0 001 @ 13397174 n 0000 | the debt of the national government (as distinguished from the debts of individuals and businesses and political subdivisions) -13397705 21 n 01 public_debt 0 001 @ 13397174 n 0000 | the total of the nation's debts: debts of local and state and national governments; an indicator of how much public spending is financed by borrowing instead of taxation -13397932 21 n 02 debt_limit 0 debt_ceiling 0 002 @ 13397174 n 0000 ~ 13398074 n 0000 | the maximum borrowing power of a governmental entity -13398074 21 n 01 national_debt_ceiling 0 001 @ 13397932 n 0000 | a limit set by Congress beyond which the national debt cannot rise; periodically raised by Congress -13398241 21 n 03 debt_instrument 0 obligation 0 certificate_of_indebtedness 0 006 @ 13403331 n 0000 ~ 13364984 n 0000 ~ 13365137 n 0000 ~ 13398469 n 0000 ~ 13415381 n 0000 ~ 13417410 n 0000 | a written promise to repay a debt -13398469 21 n 03 note 0 promissory_note 0 note_of_hand 0 007 @ 13398241 n 0000 ~ 13400580 n 0000 ~ 13407389 n 0000 ~ 13407718 n 0000 ~ 13415043 n 0000 ~ 13415168 n 0000 ~ 13415271 n 0000 | a promise to pay a specified amount on demand or at a certain time; "I had to co-sign his note at the bank" -13398768 21 n 01 bad_debt 0 001 @ 13397174 n 0000 | a debt that is unlikely to be repaid -13398859 21 n 01 installment_debt 0 001 @ 13397174 n 0000 | debt to be paid by installments -13398953 21 n 01 loan 0 013 @ 13397174 n 0000 + 02324182 v 0102 ~ 13374597 n 0000 ~ 13374979 n 0000 ~ 13375167 n 0000 ~ 13399275 n 0000 ~ 13399379 n 0000 ~ 13399570 n 0000 ~ 13399782 n 0000 ~ 13400150 n 0000 ~ 13400334 n 0000 ~ 13400472 n 0000 %p 13400662 n 0000 | the temporary provision of money (usually at interest) -13399275 21 n 02 call_loan 0 demand_loan 0 001 @ 13398953 n 0000 | a loan that is repayable on demand -13399379 21 n 01 direct_loan 0 001 @ 13398953 n 0000 | a loan by a lender to a customer without the use of a third party; direct lending gives the lender greater discretion in making loans -13399570 21 n 03 participation_loan 0 loan_participation 0 participation_financing 0 001 @ 13398953 n 0000 | a loan that is shared by a group of banks that join to make a loan too big for any one of them alone -13399782 21 n 02 personal_loan 0 consumer_loan 0 002 @ 13398953 n 0000 ~ 13400024 n 0000 | a loan that establishes consumer credit that is granted for personal use; usually unsecured and based on the borrower's integrity and ability to pay -13400024 21 n 03 automobile_loan 0 auto_loan 0 car_loan 0 001 @ 13399782 n 0000 | a personal loan to purchase an automobile -13400150 21 n 01 point 0 001 @ 13398953 n 0000 | one percent of the total principal of a loan; it is paid at the time the loan is made and is independent of the interest on the loan -13400334 21 n 02 real_estate_loan 0 mortgage_loan 0 001 @ 13398953 n 0000 | a loan on real estate that is usually secured by a mortgage -13400472 21 n 01 time_loan 0 001 @ 13398953 n 0000 | a loan that is payable on or before a specified date -13400580 21 n 01 demand_note 0 001 @ 13398469 n 0000 | a note payable on demand -13400662 21 n 01 principal 1 002 @ 13397174 n 0000 #p 13398953 n 0000 | the original amount of a debt on which interest is calculated -13400798 21 n 01 charge 1 006 @ 13396054 n 0000 ;c 13308999 n 0000 + 02321046 v 0101 ~ 13308864 n 0000 ~ 13403025 n 0000 ~ 13403146 n 0000 | financial liabilities (such as a tax); "the charges against the estate" -13401013 21 n 01 lien 0 008 @ 13287984 n 0000 ~ 13401261 n 0000 ~ 13401610 n 0000 ~ 13401746 n 0000 ~ 13401970 n 0000 ~ 13402209 n 0000 ~ 13402690 n 0000 ~ 13402879 n 0000 | the right to take another's property if an obligation is not discharged -13401261 21 n 01 artisan's_lien 0 001 @ 13401013 n 0000 | lien permitting an artisan to retain possession of a piece of work until has been paid for -13401412 21 n 01 federal_tax_lien 0 001 @ 13402690 n 0000 | lien of the United States on all property of a taxpayer who fails to pay the federal government the taxes for which he or she is liable -13401610 21 n 01 general_lien 0 001 @ 13401013 n 0000 | a lien on all the property owned by a debtor and not just a specific property -13401746 21 n 01 judgment_lien 0 001 @ 13401013 n 0000 | lien on a debtor's property that is granted to a creditor by court judgment; lien may be enforced by having the sheriff seize the property and hold a sheriff's sale -13401970 21 n 01 landlord's_lien 0 001 @ 13401013 n 0000 | lien on a tenant's property for the satisfaction of unpaid rent or property damage; the landlord is given the status of a preferred creditor with regard to the tenant's property -13402209 21 n 01 mechanic's_lien 0 002 @ 13401013 n 0000 ~ 13402389 n 0000 | lien to secure payment for work and materials in erecting or repairing a building or other structure -13402389 21 n 01 garageman's_lien 0 001 @ 13402209 n 0000 | the extension of a mechanic's lien to include payment for work on automobiles -13402529 21 n 01 state_tax_lien 0 001 @ 13402690 n 0000 | a lien on the property of a taxpayer that the tax collector can use upon default of payment of taxes -13402690 21 n 01 tax_lien 0 003 @ 13401013 n 0000 ~ 13401412 n 0000 ~ 13402529 n 0000 | lien of which a tax collector may avail himself in default of taxes (analogous to a judgment lien) -13402879 21 n 01 warehouseman's_lien 0 001 @ 13401013 n 0000 | right of a warehouseman to retain goods until all storage charges have been paid -13403025 21 n 02 encumbrance 0 incumbrance 0 001 @ 13400798 n 0000 | a charge against property (as a lien or mortgage) -13403146 21 n 01 assessment 0 003 @ 13400798 n 0000 + 02308552 v 0101 + 02308389 v 0102 | an amount determined as payable; "the assessment for repairs outraged the club's membership" -13403331 21 n 01 document 0 006 @ 00033020 n 0000 + 02896789 a 0101 ~ 13379753 n 0000 ~ 13398241 n 0000 ~ 13403520 n 0000 ~ 13403643 n 0000 | a written account of ownership or obligation -13403520 21 n 01 quittance 1 001 @ 13403331 n 0000 | a document or receipt certifying release from an obligation or debt -13403643 21 n 01 record 0 010 @ 13403331 n 0000 ;c 08441203 n 0000 + 01000214 v 0101 ~ 13403964 n 0000 ~ 13404156 n 0000 ~ 13404248 n 0000 ~ 13412131 n 0000 ~ 13412321 n 0000 ~ 13414159 n 0000 ~ 13414310 n 0000 | a document that can serve as legal evidence of a transaction; "they could find no record of the purchase" -13403964 21 n 01 balance_sheet 0 001 @ 13403643 n 0000 | a record of the financial situation of an institution on a particular date by listing its assets and the claims against those assets -13404156 21 n 01 expense_record 0 001 @ 13403643 n 0000 | a written record of money spent -13404248 21 n 05 ledger 0 leger 0 account_book 0 book_of_account 0 book 0 006 @ 13403643 n 0000 ~ 13404534 n 0000 ~ 13404655 n 0000 ~ 13404879 n 0000 ~ 13405166 n 0000 %m 13405962 n 0000 | a record in which commercial accounts are recorded; "they got a subpoena to examine our books" -13404534 21 n 01 cost_ledger 0 001 @ 13404248 n 0000 | ledger showing the accumulated costs classified in various ways -13404655 21 n 01 general_ledger 0 002 @ 13404248 n 0000 %p 13405015 n 0000 | the ledger that contains all of the financial accounts of a business; contains offsetting debit and credit accounts (including control accounts) -13404879 21 n 01 subsidiary_ledger 0 001 @ 13404248 n 0000 | details of an account supporting the amount stated in the general ledger -13405015 21 n 01 control_account 0 002 @ 13405962 n 0000 #p 13404655 n 0000 | an account that shows totals of amounts entered in a subsidiary ledger -13405166 21 n 02 daybook 0 journal 0 001 @ 13404248 n 0000 | a ledger in which transactions have been recorded as they occurred -13405296 21 n 03 entry 0 accounting_entry 0 ledger_entry 0 004 @ 13405962 n 0000 ~ 13405480 n 0000 ~ 13405646 n 0000 ~ 13405807 n 0000 | a written record of a commercial transaction -13405480 21 n 01 adjusting_entry 0 001 @ 13405296 n 0000 | an accounting entry made at the end of an accounting period to allocate items between accounting periods -13405646 21 n 02 credit 1 credit_entry 0 003 @ 13405296 n 0000 + 02264752 v 0101 ! 13405807 n 0101 | an accounting entry acknowledging income or capital items -13405807 21 n 02 debit 1 debit_entry 0 003 @ 13405296 n 0000 + 02265560 v 0101 ! 13405646 n 0101 | an accounting entry acknowledging sums that are owing -13405962 21 n 03 accounting 1 accounting_system 0 method_of_accounting 0 012 @ 13412321 n 0000 #m 13404248 n 0000 + 02265231 v 0101 ~ 13405015 n 0000 ~ 13405296 n 0000 ~ 13406374 n 0000 ~ 13406509 n 0000 ~ 13406638 n 0000 ~ 13406852 n 0000 ~ 13407012 n 0000 ~ 13411157 n 0000 ~ 13411533 n 0000 | a bookkeeper's chronological list of related debits and credits of a business; forms part of a ledger of accounts -13406374 21 n 01 credit_side 0 001 @ 13405962 n 0000 | account of payments received; usually the right side of a financial statement -13406509 21 n 01 debit_side 0 001 @ 13405962 n 0000 | account of payments owed; usually the left side of a financial statement -13406638 21 n 01 accrual_basis 0 002 @ 13405962 n 0000 ! 13406852 n 0101 | a method of accounting in which each item is entered as it is earned or incurred regardless of when actual payments are received or made -13406852 21 n 01 cash_basis 0 002 @ 13405962 n 0000 ! 13406638 n 0101 | a method of accounting in which each item is entered as payments are received or made -13407012 21 n 01 pooling_of_interest 0 001 @ 13405962 n 0000 | an accounting method used in the merging of companies; the balance sheets are added together item by item; this method is tax-free -13407208 21 n 01 accounts_receivable 0 002 @ 13329641 n 0000 ;u 06295235 n 0000 | a creditor's accounts of money owed to him; normally arise from the sale of products or services -13407389 21 n 01 note_receivable 0 001 @ 13398469 n 0000 | your right in a promissory note in which the maker promises to pay a certain amount of money at a certain time -13407561 21 n 01 accounts_payable 0 001 @ 13396054 n 0000 | a debtor's accounts of money he owes; normally arise from the purchase of products or services -13407718 21 n 01 note_payable 0 001 @ 13398469 n 0000 | a note promising to pay a certain amount of money at a certain time -13407844 21 n 02 profit_and_loss 0 profit_and_loss_account 0 001 @ 13354985 n 0000 | an account compiled at the end of an accounting period to show gross and net profit or loss -13408023 21 n 01 dividend 0 005 @ 13258362 n 0000 ~ 13408256 n 0000 ~ 13408361 n 0000 ~ 13408473 n 0000 ~ 13408641 n 0000 | that part of the earnings of a corporation that is distributed to its shareholders; usually paid quarterly -13408256 21 n 01 stock_dividend 0 001 @ 13408023 n 0000 | a dividend paid in stock rather than in cash -13408361 21 n 01 extra_dividend 0 001 @ 13408023 n 0000 | a dividend paid in addition to the regular dividend -13408473 21 n 01 equalizing_dividend 0 001 @ 13408023 n 0000 | a dividend paid to compensate shareholders for losses resulting from a change in the dividend schedule -13408641 21 n 01 divvy 0 002 @ 13408023 n 0000 ;r 08860123 n 0000 | short for dividend; especially one paid by a cooperative society -13408776 21 n 01 suspense_account 0 001 @ 13354985 n 0000 | an account used temporarily to carry doubtful receipts and disbursements or discrepancies pending their analysis and permanent classification -13408980 21 n 01 balance 0 004 @ 04747899 n 0000 #p 13354985 n 0000 + 02264967 v 0101 ~ 13411005 n 0000 | equality between the totals of the credit and debit sides of an account -13409160 21 n 01 balance 1 005 @ 13729236 n 0000 ~ 13409363 n 0000 ~ 13409647 n 0000 ~ 13409850 n 0000 ~ 13410269 n 0000 | the difference between the totals of the credit and debit sides of an account -13409363 21 n 04 balance_of_trade 0 trade_balance 0 visible_balance 0 trade_gap 0 001 @ 13409160 n 0000 | the difference in value over a period of time of a country's imports and exports of merchandise; "a nation's balance of trade is favorable when its exports exceed its imports" -13409647 21 n 02 carry-over 0 carry-forward 0 002 @ 13409160 n 0000 ;r 08860123 n 0000 | the accumulated and undivided profits of a corporation after provision has been made for dividends and reserves -13409850 21 n 02 compensating_balance 0 offsetting_balance 0 001 @ 13409160 n 0000 | a minimum credit balance that a bank may require a borrower to keep on deposit as a condition for granting a loan; a common requirement for establishing a line of credit at a bank; "the compensating balance increases the effective interest rate to the bank since the net amount loaned is reduced but the interest paid is unchanged" -13410269 21 n 01 invisible_balance 0 001 @ 13409160 n 0000 | the difference in value over a period of time of a country's imports and exports of services and payments of property incomes -13410458 21 n 02 balance_of_payments 0 balance_of_international_payments 0 003 @ 05662532 n 0000 %p 13355656 n 0000 %p 13410803 n 0000 | a system of recording all of a country's economic transactions with the rest of the world over a period of one year; "a favorable balance of payments exists when more payments are coming in than going out" -13410803 21 n 01 current_account 0 002 @ 05662532 n 0000 #p 13410458 n 0000 | that part of the balance of payments recording a nation's exports and imports of goods and services and transfer payments -13411005 21 n 01 trial_balance 0 001 @ 13408980 n 0000 | a balance of debits and credits in double-entry bookkeeping; drawn up to test their equality -13411157 21 n 02 audited_account 0 audit 0 005 @ 13405962 n 0000 + 00697062 v 0201 ~ 00578405 n 0000 ~ 13411385 n 0000 %p 13423267 n 0000 | an inspection of the accounting procedures and records by a trained accountant or CPA -13411385 21 n 01 limited_audit 0 001 @ 13411157 n 0000 | an audit of limited scope (limited in time span or confined to particular accounts etc.) -13411533 21 n 02 review 0 limited_review 0 003 @ 13405962 n 0000 ;c 05662532 n 0000 ~ 13411785 n 0000 | (accounting) a service (less exhaustive than an audit) that provides some assurance to interested parties as to the reliability of financial data -13411785 21 n 01 analytical_review 0 001 @ 13411533 n 0000 | an auditing procedure based on ratios among accounts and tries to identify significant changes -13411943 21 n 02 expense_account 0 travel_and_entertainment_account 0 001 @ 13354985 n 0000 | an account to which salespersons or executives can charge travel and entertainment expenses -13412131 21 n 01 payslip 0 001 @ 13403643 n 0000 | a slip of paper included with your pay that records how much money you have earned and how much tax or insurance etc. has been taken out -13412321 21 n 01 register 0 007 @ 13403643 n 0000 + 02472033 v 0102 + 01001857 v 0102 + 02471690 v 0101 ~ 13405962 n 0000 ~ 13412533 n 0000 ~ 13412721 n 0000 | a book in which names and transactions are listed -13412533 21 n 01 inventory 0 002 @ 13412321 n 0000 ;c 05662532 n 0000 | (accounting) the value of a firm's current assets including raw materials and work in progress and finished goods -13412721 21 n 02 payroll 0 paysheet 0 002 @ 13412321 n 0000 %p 13279262 n 0000 | a list of employees and their salaries; "the company had a long payroll" -13412877 21 n 02 payroll 2 paysheet 2 001 @ 13331198 n 0000 | the total amount of money paid in wages; "the company had a large payroll" -13413016 21 n 01 peanuts 0 001 @ 13331198 n 0000 | an insignificant sum of money; a trifling amount; "her salary is peanuts compared to his" -13413159 21 n 01 purse 0 001 @ 13331198 n 0000 | a sum of money offered as a prize; "the purse barely covered the winner's expenses" -13413294 21 n 01 purse 1 001 @ 13331198 n 0000 | a sum of money spoken of as the contents of a money purse; "he made the contribution out of his own purse"; "he and his wife shared a common purse" -13413493 21 n 02 value 0 economic_value 0 007 @ 00033615 n 0000 + 00681429 v 0106 + 00695226 v 0101 + 00681429 v 0102 + 00681429 v 0103 ~ 13413840 n 0000 ~ 13413986 n 0000 | the amount (of money or goods or services) that is considered to be a fair equivalent for something else; "he tried to estimate the value of the produce at normal prices" -13413840 21 n 01 mess_of_pottage 0 001 @ 13413493 n 0000 | anything of trivial value; "Esau sold his birthright to Jacob for a mess of pottage" -13413986 21 n 01 premium 0 001 @ 13413493 n 0000 | the amount that something in scarce supply is valued above its nominal value; "they paid a premium for access to water" -13414159 21 n 02 bankbook 0 passbook 0 001 @ 13403643 n 0000 | a record of deposits and withdrawals and interest held by depositors at certain banks -13414310 21 n 02 checkbook 0 chequebook 0 002 @ 13403643 n 0000 %m 13383696 n 0000 | a book issued to holders of checking accounts -13414443 21 n 01 pawn_ticket 0 001 @ 06520222 n 0000 | a pawnbroker's receipt for articles taken as security -13414554 21 n 01 escrow 0 001 @ 06771653 n 0000 | a written agreement (or property or money) delivered to a third party or put in trust by one party to a contract to be returned after fulfillment of some condition -13414770 21 n 01 escrow_funds 0 001 @ 13356112 n 0000 | funds held in escrow -13414849 21 n 01 commercial_paper 0 001 @ 13364984 n 0000 | an unsecured and unregistered short-term obligation issued by an institutional borrower to investors who have temporarily idle cash -13415043 21 n 01 municipal_note 0 001 @ 13398469 n 0000 | a municipal debt instrument with a maturity of less than 2 years -13415168 21 n 01 IOU 0 001 @ 13398469 n 0000 | an informal debt instrument; representing `I owe you' -13415271 21 n 01 time_note 0 001 @ 13398469 n 0000 | a note that specifies the time (or times) of repayment -13415381 21 n 01 floater 0 001 @ 13398241 n 0000 | a debt instrument with a variable interest rate tied to some other interest rate (e.g. the rate paid by T-bills) -13415547 21 n 02 hotel_plan 0 meal_plan 0 004 @ 05728678 n 0000 ~ 13415744 n 0000 ~ 13415998 n 0000 ~ 13416106 n 0000 | a plan and a room rate for providing a room and meals to guests at a hotel -13415744 21 n 01 American_plan 0 002 @ 13415547 n 0000 ~ 13415866 n 0000 | a hotel plan that includes three meals daily -13415866 21 n 01 modified_American_plan 0 001 @ 13415744 n 0000 | a hotel plan that includes breakfast and dinner (but not lunch) -13415998 21 n 01 Bermuda_plan 0 001 @ 13415547 n 0000 | a hotel plan that provides a full breakfast daily -13416106 21 n 02 European_plan 0 continental_plan 0 001 @ 13415547 n 0000 | a hotel plan that provides a continental breakfast daily -13416241 21 n 01 devise 2 002 @ 06544142 n 0000 + 02229412 v 0101 | a will disposing of real property -13416345 21 n 02 security 4 certificate 0 018 @ 06479665 n 0000 + 02349813 v 0201 + 02262139 v 0201 + 00804002 v 0201 ~ 13340080 n 0000 ~ 13340244 n 0000 ~ 13340579 n 0000 ~ 13416897 n 0000 ~ 13417071 n 0000 ~ 13417289 n 0000 ~ 13417410 n 0000 ~ 13418823 n 0000 ~ 13419032 n 0000 ~ 13419178 n 0000 ~ 13419325 n 0000 ~ 13419535 n 0000 ~ 13420900 n 0000 ~ 13421095 n 0000 | a formal declaration that documents a fact of relevance to finance and investment; the holder has a right to receive interest or dividends; "he held several valuable securities" -13416897 21 n 01 scrip 0 001 @ 13416345 n 0000 | a certificate whose value is recognized by the payer and payee; scrip is not currency but may be convertible into currency -13417071 21 n 02 stock_certificate 0 stock 2 002 @ 13416345 n 0000 ~ 13342135 n 0000 | a certificate documenting the shareholder's ownership in the corporation; "the value of his stocks doubled during the past year" -13417289 21 n 02 tax-exempt_security 0 tax-exempt 0 001 @ 13416345 n 0000 | a security that is not subject to taxation -13417410 21 n 02 bond 2 bond_certificate 0 019 @ 13398241 n 0000 @ 13416345 n 0000 + 02351925 v 0101 ~ 13337471 n 0000 ~ 13337634 n 0000 ~ 13337770 n 0000 ~ 13338066 n 0000 ~ 13338234 n 0000 ~ 13338439 n 0000 ~ 13338657 n 0000 ~ 13338780 n 0000 ~ 13338960 n 0000 ~ 13339189 n 0000 ~ 13339325 n 0000 ~ 13339542 n 0000 ~ 13339734 n 0000 ~ 13339844 n 0000 ~ 13341052 n 0000 ~ 13418047 n 0000 | a certificate of debt (usually interest-bearing or discounted) that is issued by a government or corporation in order to raise money; the issuer is required to pay a fixed sum annually until maturity and then a fixed sum to repay the principal -13418047 21 n 01 Premium_Bond 0 002 @ 13417410 n 0000 ;r 08860123 n 0000 | a government bond that bears no interest or capital gains but enters the holder into lotteries -13418219 21 n 03 warrant 0 stock_warrant 0 stock-purchase_warrant 0 003 @ 13349395 n 0000 ~ 13418616 n 0000 ~ 13418713 n 0000 | a type of security issued by a corporation (usually together with a bond or preferred stock) that gives the holder the right to purchase a certain amount of common stock at a stated price; "as a sweetener they offered warrants along with the fixed-income securities" -13418616 21 n 01 perpetual_warrant 0 001 @ 13418219 n 0000 | a warrant with no expiration date -13418713 21 n 01 subscription_warrant 0 001 @ 13418219 n 0000 | a warrant that expires on a stipulated date -13418823 21 n 02 zero-coupon_security 0 zero_coupon_security 0 002 @ 13416345 n 0000 ~ 13341052 n 0000 | a security that makes no interest payments but instead is sold at a deep discount from its face value -13419032 21 n 01 partnership_certificate 0 001 @ 13416345 n 0000 | a certificate showing the interests of all parties in a business partnership -13419178 21 n 01 proprietorship_certificate 0 001 @ 13416345 n 0000 | a certificate showing who is responsible in an individually owned business -13419325 21 n 02 convertible 0 convertible_security 0 001 @ 13416345 n 0000 | a corporate security (usually bonds or preferred stock) that can be exchanged for another form of security (usually common stock) -13419535 21 n 01 letter_security 0 003 @ 13416345 n 0000 ~ 13420544 n 0000 ~ 13420722 n 0000 | a stock or bond that is not registered with the Securities and Exchange Commission and cannot be sold in the public market -13419755 21 n 01 investment_letter 0 001 @ 06626860 n 0000 | a letter of intent saying that a letter security is being bought for investment and not for resale; avoids need for SEC registration -13419951 21 n 03 treasury_stock 0 treasury_shares 0 reacquired_stock 0 001 @ 13333833 n 0000 | stock that has been bought back by the issuing corporation and is available for retirement or resale; it is issued but not outstanding; it cannot vote and pays no dividends -13420221 21 n 01 voting_stock 0 001 @ 13333833 n 0000 | shares in a corporation that entitle the shareholder to voting and proxy rights -13420359 21 n 01 watered_stock 0 001 @ 13333833 n 0000 | stock representing ownership of overvalued assets; stock of a corporation whose total worth is less than its invested capital -13420544 21 n 01 letter_stock 0 001 @ 13419535 n 0000 | stock that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public -13420722 21 n 01 letter_bond 0 001 @ 13419535 n 0000 | a bond that has not been registered with the Securities and Exchange Commission and cannot be sold to the general public -13420900 21 n 01 listed_security 0 002 @ 13416345 n 0000 ! 13421095 n 0101 | a security that has been accepted for trading by one of the organized and registered securities exchanges in the US -13421095 21 n 03 unlisted_security 0 over_the_counter_security 0 OTC_security 0 003 @ 13416345 n 0000 ! 13420900 n 0101 ~ 13421286 n 0000 | a security traded in the over-the-counter market -13421286 21 n 03 over_the_counter_stock 0 OTC_stock 0 unlisted_stock 0 002 @ 13421095 n 0000 ~ 13337050 n 0000 | stock that is not listed and traded on an organized exchange -13421462 21 n 01 budget 3 004 @ 05898568 n 0000 + 03022593 a 0101 + 00724029 v 0101 ~ 13421702 n 0000 | a summary of intended expenditures along with proposals for how to meet them; "the president submitted the annual budget to Congress" -13421702 21 n 01 balanced_budget 0 001 @ 13421462 n 0000 | a budget is balanced when current expenditures are equal to receipts -13421832 21 n 01 budget 2 005 @ 13358549 n 0000 + 03022593 a 0101 + 00724029 v 0101 ~ 13422061 n 0000 ~ 13422234 n 0000 | a sum of money allocated for a particular purpose; "the laboratory runs on a budget of a million a year" -13422061 21 n 01 Civil_List 0 002 @ 13421832 n 0000 ;r 08860123 n 0000 | a sum of money voted by British Parliament each year for the expenses of the British royal family -13422234 21 n 01 operating_budget 0 002 @ 13421832 n 0000 %p 13277179 n 0000 | a budget for current expenses as distinct from financial transactions or permanent improvements -13422411 21 n 01 petty_cash 0 001 @ 13358549 n 0000 | a small fund of cash that a firm keeps for the payment of incidental expenses -13422545 21 n 03 pocket_money 0 pin_money 0 spending_money 0 001 @ 13386614 n 0000 | cash for day-to-day spending on incidental expenses -13422684 21 n 03 ready_cash 0 cold_cash 0 ready_money 0 001 @ 13386614 n 0000 | money in the form of cash that is readily available; "his wife was always a good source of ready cash"; "he paid cold cash for the TV set" -13422905 21 n 02 sight_draft 0 sight_bill 0 001 @ 13377268 n 0000 | a draft payable on presentation -13423007 21 n 02 time_draft 0 time_bill 0 001 @ 13377268 n 0000 | a draft payable at a specified future date -13423118 21 n 01 matching_funds 0 001 @ 13356112 n 0000 | funds that will be supplied in an amount matching the funds available from other sources -13423267 21 n 01 bottom_line 0 002 @ 07012534 n 0000 #p 13411157 n 0000 | the last line in an audit; the line that shows profit or loss -13423405 22 n 01 ablactation 0 001 @ 13440063 n 0000 | the cessation of lactation -13423489 22 n 01 ablation 0 002 @ 13475538 n 0000 + 00275466 v 0101 | the erosive process that reduces the size of glaciers -13423615 22 n 04 abrasion 0 attrition 0 corrasion 0 detrition 0 004 @ 13475538 n 0000 + 01254013 v 0302 + 02648106 a 0201 + 01254013 v 0101 | erosion by friction -13423779 22 n 01 abscission 0 001 @ 13555599 n 0000 | shedding of flowers and leaves and fruit following formation of scar tissue in a plant -13423922 22 n 02 absorption 0 soaking_up 0 005 @ 13558490 n 0000 ;c 06084469 n 0000 + 01539063 v 0101 + 01539633 v 0101 ~ 13496017 n 0000 | (chemistry) a process in which one substance permeates another; a fluid permeates or is dissolved by a liquid or solid -13424183 22 n 01 absorption 2 004 @ 13518963 n 0000 #p 13478342 n 0000 ;c 06090869 n 0000 + 02765464 v 0101 | (physics) the process in which incident radiated energy is retained without reflection or transmission on passing through a medium; "the absorption of photons by atoms or molecules" -13424477 22 n 01 accession 0 001 @ 13497135 n 0000 | a process of increasing by addition (as to a collection or group); "the art collection grew through accession" -13424643 22 n 03 acclimatization 0 acclimatisation 0 acclimation 0 004 @ 13427078 n 0000 + 00393677 v 0303 + 00393677 v 0202 + 00393677 v 0101 | adaptation to a new climate (a new temperature or altitude or environment) -13424865 22 n 02 accretion 0 accumulation 0 006 @ 13497135 n 0000 + 02535335 a 0101 + 00159368 v 0101 ~ 13437181 n 0000 ~ 13442168 n 0000 ~ 13462191 n 0000 | an increase by natural growth or addition -13425067 22 n 01 accretion 1 003 @ 13497135 n 0000 ;c 06115701 n 0000 + 02535335 a 0101 | (geology) an increase in land resulting from alluvial deposits or waterborne sediment -13425245 22 n 01 accretion 2 004 @ 13497135 n 0000 ;c 06037666 n 0000 + 02535335 a 0101 + 00159368 v 0101 | (biology) growth by addition as by the adhesion of parts or particles -13425425 22 n 01 accretion 3 003 @ 13497135 n 0000 ;c 06095022 n 0000 + 02535335 a 0101 | (astronomy) the formation of a celestial object by the effect of gravity pulling together surrounding objects and gases -13425637 22 n 01 acetylation 0 003 @ 13426948 n 0000 + 00524299 v 0101 + 00524083 v 0101 | the process of introducing an acetyl group into a compound; "the acetylation of cyclooxygenase-2 by aspirin" -13425839 22 n 01 Acheson_process 0 001 @ 13497928 n 0000 | an industrial process for making graphite by heating a mixture of coke and clay -13425980 22 n 02 acid-base_equilibrium 0 acid-base_balance 0 002 @ 13446197 n 0000 ;c 06080522 n 0000 | (physiology) the normal equilibrium between acids and alkalis in the body; "with a normal acid-base balance in the body the blood is slightly alkaline" -13426238 22 n 01 acidification 0 002 @ 13518963 n 0000 + 00264875 v 0101 | the process of becoming acid or being converted into an acid -13426376 22 n 01 activation 0 007 @ 13561719 n 0000 + 00191385 v 0101 + 00190999 v 0101 + 00190886 v 0101 + 01643657 v 0104 ! 13496771 n 0101 ~ 13498213 n 0000 | stimulation of activity in an organism or chemical -13426591 22 n 01 active_birth 0 001 @ 13448334 n 0000 | childbirth during which the mother is encouraged to be an active participant -13426726 22 n 01 active_transport 0 002 @ 13570236 n 0000 ;c 03247620 n 0000 | transport of a substance (as a protein or drug) across a cell membrane against the concentration gradient; requires an expenditure of energy -13426948 22 n 01 acylation 0 002 @ 13446390 n 0000 ~ 13425637 n 0000 | the process of introducing an acyl group into a compound -13427078 22 n 03 adaptation 0 adaption 0 adjustment 0 008 @ 13526110 n 0000 + 00150287 v 0301 + 00150287 v 0203 + 00150287 v 0103 ~ 13424643 n 0000 ~ 13458840 n 0000 ~ 13468954 n 0000 ~ 13559782 n 0000 | the process of adapting to something (such as environmental conditions) -13427356 22 n 01 addition_reaction 0 001 @ 13447361 n 0000 | a chemical reaction in which one molecule is added to another -13427481 22 n 01 adiabatic_process 0 002 @ 13518963 n 0000 ;c 06114578 n 0000 | (thermodynamics) any process that occurs without gain or loss of heat -13427633 22 n 02 administrative_data_processing 0 business_data_processing 0 001 @ 13455487 n 0000 | data processing in accounting or business management -13427789 22 n 02 adsorption 0 surface_assimilation 0 003 @ 13558490 n 0000 + 01540232 v 0101 ~ 13447923 n 0000 | the accumulation of molecules of a gas to form a thin film on the surface of a solid -13427989 22 n 01 advection 0 003 @ 13566212 n 0000 ;c 06118563 n 0000 + 02102655 v 0101 | (meteorology) the horizontal transfer of heat or other atmospheric properties -13428159 22 n 01 aeration 0 002 @ 13518963 n 0000 + 02112891 v 0103 | the process of exposing to air (so as to purify); "the aeration of the soil" -13428308 22 n 02 agenesis 0 agenesia 0 001 @ 13522744 n 0000 | imperfect development; nondevelopment of a part -13428421 22 n 01 agglutination 0 002 @ 13508333 n 0000 + 01222016 v 0101 | the building of words from component morphemes that retain their form and meaning in the process of combining -13428608 22 n 01 agglutination 1 004 @ 13526110 n 0000 + 01221684 v 0101 ~ 13492136 n 0000 ~ 13503345 n 0000 | a clumping of bacteria or red cells when held together by antibodies (agglutinins) -13428804 22 n 02 agglutination 2 agglutinating_activity 0 001 @ 13446390 n 0000 | the coalescing of small particles that are suspended in solution; these larger masses are then (usually) precipitated -13429006 22 n 03 aging 0 ageing 0 senescence 0 003 @ 13526110 n 0000 + 01644709 a 0303 ~ 13443709 n 0000 | the organic process of growing older and showing the effects of increasing age -13429194 22 n 01 aldol_reaction 0 001 @ 13447361 n 0000 | a reaction of aldehydes resulting in an aldol -13429300 22 n 01 alluvion 0 001 @ 13486838 n 0000 | gradual formation of new land, by recession of the sea or deposit of sediment -13429432 22 n 01 alpha_decay 0 001 @ 13456899 n 0000 | radioactive decay of an atomic nucleus that is accompanied by the emission of an alpha particle -13429585 22 n 02 alternative_birth 0 alternative_birthing 0 001 @ 13448334 n 0000 | a method of childbirth that avoids intrusive high-tech medicine in favor of more natural and homely settings -13429780 22 n 01 amelogenesis 0 001 @ 13489037 n 0000 | the developmental process of forming tooth enamel -13429888 22 n 02 Americanization 0 Americanisation 0 005 @ 13434878 n 0000 + 00410406 v 0202 + 00409643 v 0202 + 00410406 v 0101 + 00409643 v 0101 | assimilation into American culture -13430074 22 n 01 amitosis 0 002 @ 13444703 n 0000 + 02617357 a 0101 | the direct method of cell division characterized by simple division of the nucleus without formation of chromosomes -13430262 22 n 01 ammonification 0 002 @ 13534954 n 0000 + 00497219 v 0101 | impregnation with ammonia or a compound of ammonia -13430391 22 n 01 amylolysis 0 002 @ 13446390 n 0000 + 02619174 a 0101 | conversion of starch to sugar -13430495 22 n 02 anabolism 0 constructive_metabolism 0 005 @ 13434688 n 0000 #p 13514314 n 0000 + 02619404 a 0101 + 00107648 a 0101 ! 13443787 n 0101 | the synthesis in living organisms of more complex substances (e.g., living tissue) from simpler ones together with the storage of energy -13430786 22 n 01 anaglyphy 0 003 @ 13536794 n 0000 + 02619839 a 0103 + 02619839 a 0102 | the process of producing pictures in contrasting colors that appear three-dimensional when superimposed and viewed through spectacles with one red and one green lens -13431043 22 n 01 anamorphism 0 002 @ 13514648 n 0000 ! 13505069 n 0101 | metamorphism that occurs deep under the earth's surface; changes simple minerals into complex minerals -13431221 22 n 02 anamorphosis 0 anamorphism 1 001 @ 13477023 n 0000 | the evolution of one type of organism from another by a long series of gradual changes -13431380 22 n 01 anaphase 0 003 @ 13536299 n 0000 #p 13512725 n 0000 + 02621117 a 0101 | the stage of meiosis or mitosis when chromosomes move toward opposite ends of the nuclear spindle -13431569 22 n 01 anastalsis 0 002 @ 13440063 n 0000 ! 13534773 n 0101 | muscular action of the alimentary tract in a direction opposite to peristalsis -13431722 22 n 02 androgenesis 0 androgeny 0 004 @ 13532501 n 0000 + 02622093 a 0201 + 02621901 a 0101 + 02621901 a 0102 | male parthenogenesis in which the embryo contains only paternal chromosomes due to the failure of the egg nucleus to participate in fertilization -13431992 22 n 01 angiogenesis 0 001 @ 13489037 n 0000 | the formation of new blood vessels -13432085 22 n 02 Anglicization 0 Anglicisation 0 003 @ 13434878 n 0000 + 00300317 v 0201 + 00300317 v 0102 | the act of anglicizing; making English in appearance -13432249 22 n 01 anisogamy 0 003 @ 13555240 n 0000 ;c 06037666 n 0000 + 02624615 a 0102 | (biology) reproduction by the union or fusion of two differing gametes (especially differing in size) -13432443 22 n 01 anovulation 0 002 @ 13526110 n 0000 ! 13530237 n 0101 | the absence of ovulation due to immaturity or post-maturity or pregnancy or oral contraceptive pills or dysfunction of the ovary -13432647 22 n 02 anthropogenesis 0 anthropogeny 0 003 @ 13477023 n 0000 + 02628811 a 0201 + 02628811 a 0101 | the evolution or genesis of the human race -13432802 22 n 01 antiredeposition 0 001 @ 13518963 n 0000 | the process of preventing redeposition -13432903 22 n 02 antisepsis 0 asepsis 0 002 @ 13526110 n 0000 + 02115759 a 0201 | the process of inhibiting the growth and multiplication of microorganisms -13433061 22 n 02 aphaeresis 0 apheresis 0 004 @ 13524399 n 0000 ;c 06172789 n 0000 + 02631955 a 0202 + 02631955 a 0101 | (linguistics) omission at the beginning of a word as in `coon' for `raccoon' or `till' for `until' -13433283 22 n 01 aphesis 0 002 @ 13524399 n 0000 + 02632504 a 0101 | the gradual disappearance of an initial (usually unstressed) vowel or syllable as in `squire' for `esquire' -13433462 22 n 01 apogamy 0 004 @ 13433727 n 0000 ;c 06066555 n 0000 + 02633447 a 0101 + 02633447 a 0103 | (botany) development of an embryo without fertilization; especially the development in some ferns of a sporophyte from the gametophyte without fertilization -13433727 22 n 01 apomixis 0 007 @ 13434120 n 0000 + 02136158 a 0104 + 02633877 a 0101 + 02633877 a 0102 ~ 13433462 n 0000 ~ 13532356 n 0000 ~ 13532501 n 0000 | any of several kinds of reproduction without fertilization -13433948 22 n 01 apposition 0 002 @ 13489037 n 0000 ;c 06037666 n 0000 | (biology) growth in the thickness of a cell wall by the deposit of successive layers of material -13434120 22 n 02 asexual_reproduction 0 agamogenesis 0 010 @ 13550318 n 0000 + 02136158 a 0203 ~ 13433727 n 0000 ~ 13438979 n 0000 ~ 13441959 n 0000 ~ 13481408 n 0000 ~ 13481580 n 0000 ~ 13517199 n 0000 ~ 13532747 n 0000 ~ 13544073 n 0000 | reproduction without the fusion of gametes -13434406 22 n 01 assibilation 0 002 @ 13464820 n 0000 + 00547022 v 0101 | the development of a consonant phoneme into a sibilant -13434537 22 n 01 assimilation 0 002 @ 13508333 n 0000 + 00160447 v 0101 | a linguistic process by which a sound becomes similar to an adjacent sound -13434688 22 n 02 assimilation 1 absorption 1 004 @ 13526110 n 0000 + 01540042 v 0101 ~ 13430495 n 0000 ~ 13510829 n 0000 | the process of absorbing nutrients into the body after digestion -13434878 22 n 02 assimilation 2 absorption 3 008 @ 13557451 n 0000 + 00602255 v 0201 + 00160261 v 0101 + 00159642 v 0101 ~ 13429888 n 0000 ~ 13432085 n 0000 ~ 13476440 n 0000 ~ 13574582 n 0000 | the social process of absorbing one cultural group into harmony with another -13435152 22 n 01 association 0 004 @ 13446390 n 0000 ;c 06084469 n 0000 ~ 13494325 n 0000 ~ 13558125 n 0000 | (chemistry) any process of combination (especially in solution) that depends on relatively weak chemical bonding -13435377 22 n 01 asynchronous_operation 0 002 @ 13524925 n 0000 ! 13564501 n 0101 | operations that occur without a regular or predictable time relation to other events -13435548 22 n 01 attack 0 002 @ 13460299 n 0000 + 00019792 v 0101 | the onset of a corrosive or destructive process (as by a chemical agent); "the film was sensitive to attack by acids"; "open to attack by the elements" -13435770 22 n 01 autocatalysis 0 002 @ 13444131 n 0000 + 02651696 a 0101 | catalysis in which the catalyst is one of the products of the reaction -13435918 22 n 02 autolysis 0 self-digestion 0 002 @ 13509528 n 0000 + 02652018 a 0101 | lysis of plant or animal tissue by an internal process -13436063 22 n 02 automatic_data_processing 0 ADP 0 003 @ 13455487 n 0000 ~ 13472341 n 0000 ~ 13500860 n 0000 | data processing by a computer -13436206 22 n 01 autoradiography 0 001 @ 13545382 n 0000 | producing a radiograph by means of the radiation emitted from the specimen being photographed -13436361 22 n 02 autotype 0 autotypy 0 002 @ 13536794 n 0000 + 02653056 a 0101 | process for producing permanent prints in a carbon pigment -13436503 22 n 01 autoregulation 0 002 @ 13526110 n 0000 ;c 06080522 n 0000 | (physiology) processes that maintain a generally constant physiological state in a cell or organism -13436682 22 n 01 auxesis 0 002 @ 13489037 n 0000 + 02653174 a 0101 | growth from increase in cell size without cell division -13436809 22 n 02 auxiliary_operation 0 off-line_operation 0 001 @ 13524925 n 0000 | a operation performed by off-line equipment not under the control of the central processing unit -13436992 22 n 02 background_processing 0 backgrounding 0 001 @ 13540975 n 0000 | the execution of low priority programs while higher priority programs are not using the processing system -13437181 22 n 01 backup 0 002 @ 13424865 n 0000 + 01478603 v 0104 | an accumulation caused by clogging or a stoppage; "a traffic backup on the main street"; "he discovered a backup in the toilet" -13437379 22 n 01 bacteriolysis 0 002 @ 13509528 n 0000 + 02657334 a 0101 | dissolution or destruction of bacteria -13437495 22 n 01 bacteriostasis 0 002 @ 13526110 n 0000 + 02657619 a 0101 | inhibition of the growth of bacteria -13437610 22 n 02 basal_metabolic_rate 0 BMR 0 001 @ 15280201 n 0000 | the rate at which heat is produced by an individual in a resting state -13437753 22 n 01 basal_metabolism 0 001 @ 13514314 n 0000 | the amount of energy required to maintain the body of an individual in a resting state -13437902 22 n 01 batch_processing 0 001 @ 13477462 n 0000 | the serial execution of computer programs -13438006 22 n 01 beach_erosion 0 001 @ 13475538 n 0000 | the erosion of beaches -13438088 22 n 01 bed-wetting 0 001 @ 13474858 n 0000 | enuresis during sleep; especially common in children (who usually outgrow it) -13438223 22 n 01 Bessemer_process 0 002 @ 13497928 n 0000 @ 13561396 n 0000 | an industrial process for making steel using a Bessemer converter to blast air through molten iron and thus burning the excess carbon and impurities; the first successful method of making steel in quantity at low cost -13438521 22 n 01 beta_decay 0 001 @ 13456899 n 0000 | radioactive decay of an atomic nucleus that is accompanied by the emission of a beta particle -13438671 22 n 01 biochemical_mechanism 0 001 @ 13512506 n 0000 | a chemical mechanism involved in vital processes occurring in living organisms -13438817 22 n 02 biosynthesis 0 biogenesis 0 003 @ 13565379 n 0000 + 02665367 a 0201 + 02666530 a 0101 | production of a chemical compound by a living organism -13438979 22 n 01 blastogenesis 0 002 @ 13434120 n 0000 + 02667148 a 0101 | asexual reproduction by budding -13439088 22 n 02 blaze 0 blazing 0 002 @ 13480848 n 0000 + 02764438 v 0101 | a strong flame that burns brightly; "the blaze spread rapidly" -13439230 22 n 02 blood_coagulation 0 blood_clotting 0 001 @ 13454479 n 0000 | a process in which liquid blood is changed into a semisolid mass (a blood clot) -13439390 22 n 02 blooming 0 bloom 0 002 @ 13526110 n 0000 + 00294245 v 0201 | the organic process of bearing flowers; "you will stop all bloom if you let the flowers go to seed" -13439570 22 n 06 blossoming 0 flowering 0 florescence 0 inflorescence 0 anthesis 0 efflorescence 0 004 @ 13489037 n 0000 + 01488856 a 0602 + 00294522 v 0601 + 00294245 v 0203 | the time and process of budding and unfolding of blossoms -13439807 22 n 01 blowing 0 003 @ 13541167 n 0000 + 00477247 v 0101 ~ 13500674 n 0000 | processing that involves blowing a gas -13439935 22 n 02 bluing 0 blueing 0 002 @ 13446390 n 0000 + 00521641 v 0101 | a process that makes something blue (or bluish) -13440063 22 n 04 bodily_process 0 body_process 0 bodily_function 0 activity 0 031 @ 13526110 n 0000 + 00037457 a 0401 ~ 00830448 n 0000 ~ 00831191 n 0000 ~ 00831782 n 0000 ~ 00835032 n 0000 ~ 00838098 n 0000 ~ 00844254 n 0000 ~ 00845178 n 0000 ~ 00858188 n 0000 ~ 00859001 n 0000 ~ 00868196 n 0000 ~ 13423405 n 0000 ~ 13431569 n 0000 ~ 13466586 n 0000 ~ 13477934 n 0000 ~ 13479889 n 0000 ~ 13491616 n 0000 ~ 13495413 n 0000 ~ 13505843 n 0000 ~ 13505987 n 0000 ~ 13525912 n 0000 ~ 13529450 n 0000 ~ 13534773 n 0000 ~ 13535261 n 0000 ~ 13535837 n 0000 ~ 13537761 n 0000 ~ 13538080 n 0000 ~ 13542855 n 0000 ~ 13565622 n 0000 ~ 13570072 n 0000 | an organic process that takes place in the body; "respiratory activity" -13440779 22 n 01 boiling 0 003 @ 13491876 n 0000 @ 13572436 n 0000 ~ 13457831 n 0000 | the application of heat to change something from a liquid to a gas -13440935 22 n 03 boolean_operation 0 binary_operation 0 binary_arithmetic_operation 0 001 @ 13524925 n 0000 | an operation that follows the rules of Boolean algebra; each operand and the result take one of two values -13441154 22 n 01 bottom_fermentation 0 001 @ 13575433 n 0000 | a slow kind of alcoholic fermentation at a temperature low enough that the yeast cells can sink to the bottom of the fermenting liquid; used in the production of lager -13441387 22 n 03 bowel_movement 0 movement 0 bm 0 002 @ 13459088 n 0000 ;u 06605046 n 0000 | a euphemism for defecation; "he had a bowel movement" -13441536 22 n 02 Bradley_method_of_childbirth 0 Bradley_method 0 001 @ 13518656 n 0000 | a method that prepares a mother for natural childbirth by providing education and exercises and nutrition and techniques of breathing and relaxation (with the assistance of the father) -13441812 22 n 02 brooding 0 incubation 0 002 @ 13532886 n 0000 + 00060185 v 0204 | sitting on eggs so as to hatch them by the warmth of the body -13441959 22 n 01 budding 0 001 @ 13434120 n 0000 | reproduction of some unicellular organisms (such as yeasts) by growth and specialization followed by the separation by constriction of a part of the parent -13442168 22 n 01 buildup 0 001 @ 13424865 n 0000 | the result of the process of accumulation; "the buildup of leaves blocked the drain pipes" -13442312 22 n 01 calcification 0 003 @ 13446390 n 0000 + 00498988 v 0101 ~ 13529015 n 0000 | a process that impregnates something with calcium (or calcium salts) -13442476 22 n 01 calcination 0 002 @ 13530408 n 0000 + 00372251 v 0101 | the conversion of metals into their oxides as a result of heating to a high temperature -13442639 22 n 01 calving 0 001 @ 13532886 n 0000 | giving birth to a calf -13442715 22 n 01 capture 0 002 @ 13518963 n 0000 + 02304241 v 0101 | any process in which an atomic or nuclear system acquires an additional particle -13442867 22 n 01 capture 1 001 @ 13518963 n 0000 | a process whereby a star or planet holds an object in its gravitational field -13442998 22 n 01 carbonation 0 002 @ 13534954 n 0000 + 00186740 v 0101 | saturation with carbon dioxide (as soda water) -13443120 22 n 01 carbon_cycle 0 001 @ 13567177 n 0000 | a thermonuclear reaction in the interior of stars -13443228 22 n 01 carbon_cycle 1 001 @ 13526110 n 0000 | the organic circulation of carbon from the atmosphere into organisms and back again -13443370 22 n 02 carbonization 0 carbonisation 0 003 @ 13464031 n 0000 + 00369628 v 0202 + 00369628 v 0101 | the destructive distillation of coal (as in coke ovens) -13443537 22 n 01 carriage_return 0 001 @ 13540791 n 0000 | the operation that prepares for the next character to be printed or displayed as the first character on a line -13443709 22 n 01 catabiosis 0 001 @ 13429006 n 0000 | normal aging of cells -13443787 22 n 04 catabolism 0 katabolism 0 dissimilation 0 destructive_metabolism 0 008 @ 13526110 n 0000 #p 13514314 n 0000 + 02682699 a 0101 + 00107984 a 0101 + 02682699 a 0102 + 00107984 a 0102 + 00238720 v 0101 ! 13430495 n 0101 | breakdown in living organisms of more complex substances into simpler ones together with release of energy -13444131 22 n 02 catalysis 0 contact_action 0 003 @ 13446390 n 0000 + 03054409 a 0101 ~ 13435770 n 0000 | acceleration of a chemical reaction induced the presence of material that is chemically unchanged at the end of the reaction; "of the top 50 commodity chemicals, 30 are created directly by catalysis and another 6 are made from raw materials that are catalytically produced" -13444513 22 n 04 cavity 0 caries 0 dental_caries 0 tooth_decay 0 002 @ 13456715 n 0000 + 01175427 a 0201 | soft decayed area in a tooth; progressive decay can lead to the death of a tooth -13444703 22 n 02 cell_division 0 cellular_division 0 005 @ 13526110 n 0000 ~ 13430074 n 0000 ~ 13449156 n 0000 ~ 13512725 n 0000 ~ 13516597 n 0000 | the process in reproduction and growth by which a cell divides to form daughter cells -13444940 22 n 05 cenogenesis 0 kenogenesis 0 caenogenesis 0 cainogenesis 0 kainogenesis 0 003 @ 13489037 n 0000 + 02687191 a 0101 ! 13531652 n 0101 | introduction during embryonic development of characters or structure not present in the earlier evolutionary history of the strain or species (such as the addition of the placenta in mammalian evolution) -13445296 22 n 01 centrifugation 0 003 @ 13518963 n 0000 + 02047263 v 0101 ~ 13570923 n 0000 | the process of separating substances of different densities by the use of a centrifuge -13445479 22 n 01 chain_reaction 1 001 @ 13447361 n 0000 | a series of chemical reactions in which the product of one is a reactant in the next -13445624 22 n 01 chain_reaction 2 001 @ 13523208 n 0000 | a self-sustaining nuclear reaction; a series of nuclear fissions in which neutrons released by splitting one atom leads to the splitting of others -13445831 22 n 01 chelation 1 002 @ 13446390 n 0000 + 02621706 v 0101 | the process of forming a ring by forming one or more hydrogen bonds -13445972 22 n 01 chelation 2 003 @ 00029677 n 0000 ;c 06043075 n 0000 + 02621706 v 0101 | (medicine) the process of removing a heavy metal from the bloodstream by means of a chelate as in treating lead or mercury poisoning -13446197 22 n 02 chemical_equilibrium 0 equilibrium 0 004 @ 13447361 n 0000 + 02673134 v 0202 + 00136800 v 0201 ~ 13425980 n 0000 | a chemical reaction and its reverse proceed at equal rates -13446390 22 n 03 chemical_process 0 chemical_change 0 chemical_action 0 043 @ 13518963 n 0000 ;c 06084469 n 0000 ~ 13426948 n 0000 ~ 13428804 n 0000 ~ 13430391 n 0000 ~ 13435152 n 0000 ~ 13439935 n 0000 ~ 13442312 n 0000 ~ 13444131 n 0000 ~ 13445831 n 0000 ~ 13447361 n 0000 ~ 13448622 n 0000 ~ 13449319 n 0000 ~ 13453428 n 0000 ~ 13453861 n 0000 ~ 13456071 n 0000 ~ 13456252 n 0000 ~ 13456367 n 0000 ~ 13460863 n 0000 ~ 13461525 n 0000 ~ 13462795 n 0000 ~ 13465998 n 0000 ~ 13467700 n 0000 ~ 13486270 n 0000 ~ 13486431 n 0000 ~ 13494707 n 0000 ~ 13501548 n 0000 ~ 13502205 n 0000 ~ 13502556 n 0000 ~ 13512506 n 0000 ~ 13521873 n 0000 ~ 13534098 n 0000 ~ 13537429 n 0000 ~ 13538757 n 0000 ~ 13540199 n 0000 ~ 13542688 n 0000 ~ 13544279 n 0000 ~ 13554586 n 0000 ~ 13564639 n 0000 ~ 13565379 n 0000 ~ 13567960 n 0000 ~ 13568109 n 0000 ~ 13575433 n 0000 | (chemistry) any process determined by the atomic and molecular composition and structure of the substances involved -13447361 22 n 02 chemical_reaction 0 reaction 0 020 @ 13446390 n 0000 ;c 06084469 n 0000 + 00446885 v 0201 ~ 13427356 n 0000 ~ 13429194 n 0000 ~ 13445479 n 0000 ~ 13446197 n 0000 ~ 13458268 n 0000 ~ 13467224 n 0000 ~ 13469066 n 0000 ~ 13473392 n 0000 ~ 13474734 n 0000 ~ 13477812 n 0000 ~ 13494919 n 0000 ~ 13521072 n 0000 ~ 13530408 n 0000 ~ 13530799 n 0000 ~ 13536523 n 0000 ~ 13547677 n 0000 ~ 13552858 n 0000 | (chemistry) a process in which one or more substances are changed into others; "there was a chemical reaction of the lime with the ground water" -13447923 22 n 02 chemisorption 0 chemosorption 0 003 @ 13427789 n 0000 + 01599666 v 0201 + 01599666 v 0101 | adsorption (especially when irreversible) by means of chemical instead of physical forces; "chemisorption of gaseous nitrogen on iron catalysts" -13448179 22 n 01 chemosynthesis 0 001 @ 13565379 n 0000 | synthesis of carbohydrate from carbon dioxide and water; limited to certain bacteria and fungi -13448334 22 n 04 childbirth 0 childbearing 0 accouchement 0 vaginal_birth 0 006 @ 13532886 n 0000 + 02694109 a 0201 %p 00042541 n 0000 ~ 13426591 n 0000 ~ 13429585 n 0000 ~ 13518656 n 0000 | the parturition process in human beings; having a baby; the process of giving birth to a child -13448622 22 n 01 chlorination 0 003 @ 13446390 n 0000 + 00186567 v 0101 ~ 13540091 n 0000 | the addition or substitution of chlorine in organic compounds -13448778 22 n 01 chromatography 0 004 @ 13518963 n 0000 + 02987910 a 0102 ~ 13450070 n 0000 ~ 13531927 n 0000 | a process used for separating mixtures by virtue of differences in absorbency -13448970 22 n 02 civilization 0 civilisation 0 002 @ 13557451 n 0000 + 00411312 v 0202 | the social process whereby societies achieve an advanced stage of development and organization -13449156 22 n 02 cleavage 0 segmentation 0 003 #p 14046202 n 0000 @ 13444703 n 0000 ;c 06071426 n 0000 | (embryology) the repeated division of a fertilised ovum -13449319 22 n 01 cleavage 1 001 @ 13446390 n 0000 | the breaking of a chemical bond in a molecule resulting in smaller molecules -13449450 22 n 02 climate_change 0 global_climate_change 0 001 @ 13566212 n 0000 | a change in the world's climate -13449566 22 n 02 clouding 0 clouding_up 0 002 @ 13572436 n 0000 + 02770717 v 0102 | the process whereby water particles become visible in the sky -13449714 22 n 01 cohesion 0 002 @ 13489037 n 0000 ;c 06066555 n 0000 | (botany) the process in some plants of parts growing together that are usually separate (such as petals) -13449892 22 n 01 cold_fusion 0 001 @ 13485525 n 0000 | nuclear fusion at or near room temperatures; claims to have discovered it are generally considered to have been mistaken -13450070 22 n 01 column_chromatography 0 001 @ 13448778 n 0000 | chromatography that uses selective adsorption by a column of powders -13450206 22 n 02 combustion 0 burning 0 005 @ 13530408 n 0000 + 00377002 v 0102 ~ 13450417 n 0000 ~ 13480848 n 0000 ~ 13501261 n 0000 | a process in which a substance reacts with oxygen to give heat and light -13450417 22 n 01 deflagration 0 003 @ 13450206 n 0000 + 00585148 v 0101 + 02772310 v 0101 | combustion that propagates through a gas or along the surface of an explosive at a rapid rate driven by the transfer of heat -13450636 22 n 01 compensation 0 004 @ 13459322 n 0000 ;c 06055946 n 0000 + 02672859 v 0102 ~ 13529616 n 0000 | (psychiatry) a defense mechanism that conceals your undesirable shortcomings by exaggerating desirable behaviors -13450862 22 n 02 computer_operation 0 machine_operation 0 004 @ 13524925 n 0000 ~ 13481994 n 0000 ~ 13550940 n 0000 ~ 13562133 n 0000 | an elementary operation that a computer is designed and built to perform -13451073 22 n 01 concretion 0 001 @ 13518963 n 0000 | the formation of stonelike objects within a body organ (e.g., the kidneys) -13451204 22 n 01 concurrent_operation 0 001 @ 13524925 n 0000 | two or more operations performed at the same time (or within a give interval) -13451348 22 n 01 condensation 0 003 @ 13518963 n 0000 + 00366275 v 0101 + 00364868 v 0101 | the process of changing from a gaseous to a liquid or solid state -13451508 22 n 02 congealment 0 congelation 0 002 @ 13491060 n 0000 + 00442669 v 0203 | the process of congealing; solidification by (or as if by) freezing -13451665 22 n 01 conspicuous_consumption 0 001 @ 13451804 n 0000 | buying expensive services and products in order to flaunt your wealth -13451804 22 n 05 consumption 0 economic_consumption 0 usance 0 use 0 use_of_goods_and_services 0 004 @ 13461162 n 0000 ;c 06149484 n 0000 + 01158572 v 0401 ~ 13451665 n 0000 | (economics) the utilization of economic goods to satisfy needs or in manufacturing; "the consumption of energy has increased steadily" -13452117 22 n 02 control_operation 0 control_function 0 001 @ 13524925 n 0000 | an operation that controls the recording or processing or transmission of interpretation of data; "a control operation started the data processing" -13452347 22 n 03 convalescence 0 recuperation 0 recovery 0 008 @ 13491616 n 0000 + 00092690 v 0302 + 00093163 v 0201 + 00092690 v 0201 + 02543598 a 0101 + 00092690 v 0103 ~ 13509843 n 0000 ~ 13545845 n 0000 | gradual healing (through rest) after sickness or injury -13452614 22 n 01 convection 1 001 @ 13566212 n 0000 | the transfer of heat through a fluid (liquid or gas) caused by molecular motion -13452750 22 n 01 convection 2 003 @ 13518963 n 0000 ;c 06118563 n 0000 + 02043068 v 0101 | (meteorology) the vertical movement of heat or other properties by massive motion within the atmosphere -13452947 22 n 01 conversion 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism represses emotional conflicts which are then converted into physical symptoms that have no organic basis -13453160 22 n 03 cooling 0 chilling 0 temperature_reduction 0 008 @ 13566212 n 0000 + 00370412 v 0202 + 00369864 v 0202 + 00370412 v 0101 + 00369864 v 0101 ~ 13484644 n 0000 ~ 13491794 n 0000 ~ 13548531 n 0000 | the process of becoming cooler; a falling temperature -13453428 22 n 03 corrosion 0 corroding 0 erosion 1 007 @ 13446390 n 0000 + 00274283 v 0201 + 00273963 v 0201 + 00274283 v 0101 + 00273963 v 0101 ~ 13537894 n 0000 ~ 13552270 n 0000 | erosion by chemical action -13453640 22 n 01 corruption 0 001 @ 13456715 n 0000 | decay of matter (as by rot or oxidation) -13453737 22 n 01 cost-pull_inflation 0 001 @ 13498828 n 0000 | inflation caused by an increase in the costs of production -13453861 22 n 01 cracking 0 004 @ 13446390 n 0000 + 00238372 v 0101 + 00238542 v 0101 ~ 13494472 n 0000 | the process whereby heavy molecules of naphtha or petroleum are broken down into hydrocarbons of lower molecular weight (especially in the oil-refining process) -13454130 22 n 02 crossing_over 0 crossover 0 002 @ 13526110 n 0000 #p 13466449 n 0000 | the interchange of sections between pairing homologous chromosomes during the prophase of meiosis -13454318 22 n 01 cultivation 0 002 @ 13489037 n 0000 + 01742726 v 0101 | the process of fostering the growth of something; "the cultivation of bees for honey" -13454479 22 n 03 curdling 0 clotting 0 coagulation 0 011 @ 13518963 n 0000 + 00458276 v 0302 + 00457998 v 0302 + 00368367 v 0202 + 00457998 v 0201 + 00457770 v 0203 + 00443000 v 0101 + 00442847 v 0101 + 00457770 v 0101 ~ 13439230 n 0000 ~ 13567063 n 0000 | the process of forming semisolid lumps in a liquid -13454789 22 n 01 cyanide_process 0 001 @ 13497928 n 0000 | an industrial process for extracting gold and silver by treating ore with a sodium cyanide solution -13454950 22 n 02 cytogenesis 0 cytogeny 0 002 @ 13489037 n 0000 + 02709441 a 0101 | the origin and development and variation of cells -13455086 22 n 01 cytolysis 0 002 @ 13509528 n 0000 + 02708506 a 0101 | pathological breakdown of cells by the destruction of their outer membrane -13455234 22 n 01 data_mining 0 001 @ 13455487 n 0000 | data processing using sophisticated data search capabilities and statistical algorithms to discover patterns and correlations in large preexisting databases; a way to discover new meaning in data -13455487 22 n 01 data_processing 0 014 @ 13541167 n 0000 ;c 06128570 n 0000 ~ 13427633 n 0000 ~ 13436063 n 0000 ~ 13455234 n 0000 ~ 13468542 n 0000 %p 13477462 n 0000 ~ 13508830 n 0000 ~ 13518140 n 0000 ~ 13524925 n 0000 ~ 13540975 n 0000 ~ 13547048 n 0000 ~ 13554984 n 0000 ~ 13574928 n 0000 | (computer science) a series of operations on data by a computer in order to retrieve or transform or classify information -13455906 22 n 01 dealignment 0 001 @ 00029677 n 0000 | a process whereby voters are moved toward nonpartisanship thus weakening the structure of political parties -13456071 22 n 02 deamination 0 deaminization 0 003 @ 13446390 n 0000 + 00573247 v 0202 + 00573247 v 0101 | removal of the amino radical from an amino acid or other amino compound -13456252 22 n 01 decalcification 0 002 @ 13446390 n 0000 + 00499304 v 0101 | loss of calcium from bones or teeth -13456367 22 n 01 decarboxylation 0 003 @ 13446390 n 0000 + 00501534 v 0101 + 00501718 v 0101 | the process of removing a carboxyl group from a chemical compound (usually replacing it with hydrogen) -13456567 22 n 02 decay 1 decline 1 003 @ 13458571 n 0000 + 00399074 v 0102 ~ 13478055 n 0000 | a gradual decrease; as of stored charge or current -13456715 22 n 01 decay 2 006 @ 13518963 n 0000 ~ 13444513 n 0000 ~ 13453640 n 0000 ~ 13458019 n 0000 ~ 13466312 n 0000 ~ 13560417 n 0000 | the process of gradually becoming inferior -13456899 22 n 03 decay 3 radioactive_decay 0 disintegration 2 006 @ 13523208 n 0000 + 00399368 v 0301 + 00399074 v 0301 + 00399074 v 0102 ~ 13429432 n 0000 ~ 13438521 n 0000 | the spontaneous disintegration of a radioactive substance along with the emission of ionizing radiation -13457181 22 n 02 decentralization 0 decentalisation 0 002 @ 13557451 n 0000 + 00405540 v 0101 | the social process in which population and industry moves from urban centers to outlying districts -13457378 22 n 02 decline 2 diminution 0 011 @ 13458571 n 0000 + 00151689 v 0202 + 00431826 v 0101 ~ 13464204 n 0000 ~ 13464440 n 0000 ~ 13470491 n 0000 ~ 13475944 n 0000 ~ 13509196 n 0000 ~ 13523088 n 0000 ~ 13556151 n 0000 ~ 13556377 n 0000 | change toward something smaller or lower -13457665 22 n 01 decoction 0 003 @ 13478525 n 0000 ;c 06054892 n 0000 + 00374893 v 0101 | (pharmacology) the extraction of water-soluble drug substances by boiling -13457831 22 n 02 decoction_process 0 decoction_mashing 0 002 @ 13440779 n 0000 ;c 00915140 n 0000 | (brewing) a process in which part of the mash is removed and boiled and then returned -13458019 22 n 04 decomposition 0 rot 0 rotting 0 putrefaction 0 006 @ 13456715 n 0000 ;c 06037666 n 0000 + 00399553 v 0401 + 00209837 v 0302 + 00209837 v 0202 + 00209837 v 0101 | (biology) the process of decay caused by bacterial or fungal action -13458268 22 n 03 decomposition 1 decomposition_reaction 0 chemical_decomposition_reaction 0 004 @ 13447361 n 0000 ;c 06084469 n 0000 + 00209174 v 0101 ~ 13472125 n 0000 | (chemistry) separation of a substance into two or more substances that may differ from each other and from the original substance -13458571 22 n 02 decrease 0 decrement 0 010 @ 00029677 n 0000 ! 13497135 n 0202 + 00151689 v 0101 ! 13497135 n 0101 ~ 13456567 n 0000 ~ 13457378 n 0000 ~ 13463255 n 0000 ~ 13518563 n 0000 ~ 13556249 n 0000 ~ 13574452 n 0000 | a process of becoming smaller or shorter -13458840 22 n 01 dedifferentiation 0 002 @ 13427078 n 0000 + 00119725 v 0101 | the loss of specialization in form or function -13458968 22 n 01 deepening 0 002 @ 13464820 n 0000 + 00570524 v 0101 | a process of becoming deeper and more profound -13459088 22 n 03 defecation 0 laxation 0 shitting 0 007 @ 13473097 n 0000 + 00074038 v 0303 + 00074038 v 0102 ~ 13441387 n 0000 ~ 13492287 n 0000 ~ 13555775 n 0000 ~ 13572226 n 0000 | the elimination of fecal waste through the anus -13459322 22 n 06 defense_mechanism 0 defense_reaction 0 defence_mechanism 0 defence_reaction 0 defense 0 defence 0 015 @ 13542947 n 0000 @ 05701738 n 0000 ;c 06055946 n 0000 ~ 13450636 n 0000 ~ 13452947 n 0000 ~ 13461951 n 0000 ~ 13467009 n 0000 ~ 13495636 n 0000 ~ 13501059 n 0000 ~ 13503673 n 0000 ~ 13541798 n 0000 ~ 13546169 n 0000 ~ 13546416 n 0000 ~ 13548931 n 0000 ~ 13550089 n 0000 | (psychiatry) an unconscious process that tries to reduce the anxiety associated with instinctive desires -13459821 22 n 01 deflation 0 006 @ 13471206 n 0000 + 02538803 a 0101 + 00562720 v 0101 + 00562303 v 0101 ! 13498828 n 0101 ! 13466849 n 0101 | a contraction of economic activity resulting in a decline of prices -13460034 22 n 01 defoliation 0 002 @ 13526110 n 0000 + 00195813 v 0101 | the loss of foliage -13460129 22 n 01 degaussing 0 002 @ 13460991 n 0000 + 00400101 v 0103 | the process of making a (steel) ship's hull nonmagnetic by producing an opposing magnetic field -13460299 22 n 02 degeneration 0 devolution 0 006 @ 00029677 n 0000 ! 13464820 n 0202 + 00092293 v 0104 ~ 13435548 n 0000 ~ 13523983 n 0000 ~ 14256668 n 0000 | the process of declining from a higher to a lower level of effective power or vitality or essential quality -13460568 22 n 04 dehydration 0 desiccation 0 drying_up 0 evaporation 1 010 @ 13478525 n 0000 #p 13538314 n 0000 + 00366858 v 0401 + 00211396 v 0202 + 00212790 v 0202 + 00212790 v 0101 + 00211396 v 0101 + 00211108 v 0102 ~ 13484937 n 0000 ~ 13500557 n 0000 | the process of extracting moisture -13460863 22 n 01 de-iodination 0 002 @ 13446390 n 0000 + 00521033 v 0101 | the removal of iodine atoms from organic compounds -13460991 22 n 02 demagnetization 0 demagnetisation 0 004 @ 13518963 n 0000 + 00400101 v 0202 + 00400101 v 0101 ~ 13460129 n 0000 | the process of removing magnetization -13461162 22 n 01 demand 0 003 @ 13471206 n 0000 ! 13563522 n 0101 ~ 13451804 n 0000 | the ability and desire to purchase goods and services; "the automobile reduced the demand for buggywhips"; "the demand exceeded the supply" -13461390 22 n 01 demand-pull_inflation 0 001 @ 13498828 n 0000 | inflation caused by an increase in demand or in the supply of money -13461525 22 n 02 demineralization 0 demineralisation 0 003 @ 13446390 n 0000 + 00574514 v 0202 + 00574514 v 0101 | the removal of minerals and mineral salts from a liquid (especially from water) -13461722 22 n 02 denazification 0 de-Nazification 0 002 @ 13557451 n 0000 + 00501288 v 0101 | social process of removing Nazis from official positions and giving up any allegiance to Nazism; "denazification was a slow process" -13461951 22 n 01 denial 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism that denies painful thoughts -13462084 22 n 01 deossification 0 001 @ 13526110 n 0000 | the loss of the mineral content of bone tissue -13462191 22 n 02 deposition 0 deposit 0 005 @ 13424865 n 0000 ~ 13471958 n 0000 ~ 13537622 n 0000 ~ 13547380 n 0000 ~ 13563382 n 0000 | the natural process of laying down a deposit of something -13462387 22 n 01 derivation 0 004 @ 13508333 n 0000 ;c 06181584 n 0000 + 00251791 v 0101 ~ 13462680 n 0000 | (descriptive linguistics) the process whereby new words are formed from existing words or bases by affixation; "`singer' from `sing' or `undo' from `do' are examples of derivations" -13462680 22 n 01 eponymy 0 001 @ 13462387 n 0000 | the derivation of a general name from that of a famous person -13462795 22 n 03 desalination 0 desalinization 0 desalinisation 0 004 @ 13446390 n 0000 + 00531904 v 0304 + 00531904 v 0203 + 00531904 v 0101 | the removal of salt (especially from sea water) -13462989 22 n 01 desertification 0 001 @ 13486838 n 0000 | the gradual transformation of habitable land into desert; is usually caused by climate change or by destructive use of the land; "the dust storms in Korea are the result of rapid desertification in China" -13463255 22 n 02 desensitization 0 desensitisation 0 005 @ 13458571 n 0000 + 02114924 v 0202 + 00272683 v 0202 + 02114924 v 0101 + 00272683 v 0101 | the process of reducing sensitivity; "the patient was desensitized to the allergen" -13463490 22 n 01 desorption 0 003 @ 13518963 n 0000 + 00570003 v 0101 + 00570205 v 0101 | changing from an adsorbed state on a surface to a gaseous or liquid state -13463656 22 n 04 destalinization 0 de-Stalinization 0 destalinisation 0 de-Stalinisation 0 003 @ 13557451 n 0000 + 00569318 v 0302 + 00569318 v 0101 | social process of neutralizing the influence of Joseph Stalin by revising his policies and removing monuments dedicated to him and renaming places named in his honor; "his statue was demolished as part of destalinization" -13464031 22 n 01 destructive_distillation 0 002 @ 13484082 n 0000 ~ 13443370 n 0000 | heating a solid substance in a closed container and collecting the volatile products -13464204 22 n 04 deterioration 0 decline_in_quality 0 declension 0 worsening 0 006 @ 13457378 n 0000 + 00203866 v 0401 + 00203866 v 0302 + 00208497 v 0101 + 00092293 v 0102 ~ 13556509 n 0000 | process of changing to an inferior state -13464440 22 n 01 detumescence 0 001 @ 13457378 n 0000 | diminution of swelling; the subsidence of anything swollen -13464557 22 n 02 development 0 developing 0 004 @ 13541167 n 0000 + 02138766 v 0201 + 02138766 v 0101 ~ 13571041 n 0000 | processing a photosensitive material in order to make an image visible; "the development and printing of his pictures took only two hours" -13464820 22 n 02 development 2 evolution 1 008 @ 00029677 n 0000 + 00251064 v 0201 ! 13460299 n 0202 + 00543410 v 0101 ~ 13434406 n 0000 ~ 13458968 n 0000 ~ 13490343 n 0000 ~ 13571217 n 0000 | a process in which something passes by degrees to a different stage (especially a more advanced or mature stage); "the development of his ideas took many years"; "the evolution of Greek civilization"; "the slow development of her skill as a writer" -13465264 22 n 01 diakinesis 0 002 @ 15290337 n 0000 #p 13542474 n 0000 | the final stage of the prophase of meiosis -13465382 22 n 01 diastrophism 0 001 @ 13486838 n 0000 | the process of deformation that produces continents and ocean basins in the earth's crust -13465530 22 n 01 diffusion 0 005 @ 13518963 n 0000 ;c 06090869 n 0000 ~ 13528100 n 0000 ~ 13534954 n 0000 ~ 13570236 n 0000 | (physics) the process in which there is movement of a substance from an area of high concentration of that substance to an area of lower concentration -13465809 22 n 01 digestion 0 003 @ 13526110 n 0000 + 01197338 v 0101 ~ 13486520 n 0000 | the organic process by which food is converted into substances that can be absorbed into the body -13465998 22 n 01 digestion 1 002 @ 13446390 n 0000 + 00209420 v 0101 | the process of decomposing organic matter (as in sewage) by bacteria or by chemical action or heat -13466170 22 n 01 digital_photography 0 001 @ 13536794 n 0000 | a photographic method that stores the image digitally for later reproduction -13466312 22 n 02 dilapidation 0 ruin 0 003 @ 13456715 n 0000 + 00578993 v 0201 + 01662434 v 0101 | the process of becoming dilapidated -13466449 22 n 01 diplotene 0 003 @ 15290337 n 0000 #p 13542474 n 0000 %p 13454130 n 0000 | the fourth stage of the prophase of meiosis -13466586 22 n 03 discharge 0 emission 1 expelling 0 006 @ 13440063 n 0000 + 00104868 v 0303 + 00104868 v 0102 ~ 13471815 n 0000 ~ 13473097 n 0000 ~ 13513747 n 0000 | any of several bodily processes by which substances go out of the body; "the discharge of pus" -13466849 22 n 01 disinflation 0 003 @ 13471206 n 0000 ! 13498828 n 0101 ! 13459821 n 0101 | a reduction of prices intended to improve the balance of payments -13467009 22 n 01 displacement 0 003 @ 13459322 n 0000 ;c 06055946 n 0000 ~ 06247181 n 0000 | (psychiatry) a defense mechanism that transfers affect or reaction from the original object to some more acceptable one -13467224 22 n 02 displacement 1 displacement_reaction 0 002 @ 13447361 n 0000 ;c 06084469 n 0000 | (chemistry) a reaction in which an elementary substance displaces and sets free a constituent element from a compound -13467443 22 n 01 dissimilation 1 003 @ 13508333 n 0000 + 00161012 v 0101 + 00160653 v 0101 | a linguistic process by which one of two similar sounds in a word becomes less like the other; "the Old French MARBRE became the English MARBLE by dissimilation" -13467700 22 n 01 dissociation 0 003 @ 13446390 n 0000 ;c 06084469 n 0000 + 00209598 v 0101 | (chemistry) the temporary or reversible process in which a molecule or ion is broken down into smaller molecules or ions -13467916 22 n 02 dissolution 0 disintegration 1 005 @ 13518963 n 0000 + 00397576 v 0201 + 00355955 v 0101 ~ 13480176 n 0000 ~ 13509528 n 0000 | separation into component parts -13468094 22 n 02 dissolving 0 dissolution 1 005 @ 13508651 n 0000 + 00447309 v 0201 + 00446329 v 0201 + 00447309 v 0101 + 00446329 v 0101 | the process of going into solution; "the dissolving of salt in water" -13468306 22 n 02 distillation 0 distillment 0 006 @ 13518963 n 0000 + 00475183 v 0204 + 00229026 v 0201 + 00475183 v 0104 + 00229280 v 0101 + 00229026 v 0101 | the process of purifying a liquid by boiling it and condensing its vapors -13468542 22 n 03 distributed_data_processing 0 remote-access_data_processing 0 teleprocessing 0 001 @ 13455487 n 0000 | data processing in which some of the functions are performed in different places and connected by transmission facilities -13468786 22 n 01 dithering 0 001 @ 13573499 n 0000 | the process of representing intermediate colors by patterns of tiny colored dots that simulate the desired color -13468954 22 n 01 domestication 0 001 @ 13427078 n 0000 | adaptation to intimate association with human beings -13469066 22 n 03 double_decomposition 0 double_decomposition_reaction 0 metathesis 0 002 @ 13447361 n 0000 ~ 13469317 n 0000 | a chemical reaction between two compounds in which parts of each are interchanged to form two new compounds (AB+CD=AD+CB) -13469317 22 n 01 double_replacement_reaction 0 001 @ 13469066 n 0000 | a chemical reaction between two compounds where the positive ion of one compound is exchanged with the positive ion of another compound -13469526 22 n 01 doubling 0 002 @ 13517843 n 0000 + 00246217 v 0101 | increase by a factor of two; "doubling with a computer took no time at all" -13469674 22 n 01 drift 1 005 @ 13518963 n 0000 ;c 04194289 n 0000 ;c 02691156 n 0000 + 01925694 v 0103 ~ 13507210 n 0000 | the gradual departure from an intended course due to external influences (as a ship or plane) -13469893 22 n 01 drift 2 002 @ 13508333 n 0000 ~ 13470193 n 0000 | a process of linguistic change over a period of time -13470015 22 n 02 dry_plate 0 dry_plate_process 0 001 @ 13536794 n 0000 | a former photographic method that used a glass plate coated with a light-sensitive gelatinous emulsion -13470193 22 n 01 melioration 0 002 @ 13469893 n 0000 + 00205046 v 0104 | the linguistic process in which over a period of time a word grows more positive in connotation or more elevated in meaning -13470392 22 n 01 dyadic_operation 0 001 @ 13524925 n 0000 | an operation on exactly two operands -13470491 22 n 03 ebb 1 ebbing 0 wane 0 005 @ 13457378 n 0000 + 00431826 v 0303 + 00433778 v 0301 + 00570907 v 0201 + 00570907 v 0101 | a gradual decline (in size or strength or power or number) -13470687 22 n 01 eburnation 0 001 @ 13526110 n 0000 | a change that occurs in degenerative joint disease in which bone is converted into a dense smooth substance resembling ivory -13470868 22 n 01 ecchymosis 0 001 @ 13526110 n 0000 | the escape of blood from ruptured blood vessels into the surrounding tissue to form a purple or black-and-blue spot on the skin -13471052 22 n 01 economic_growth 0 001 @ 13471206 n 0000 | steady growth in the productive capacity of the economy (and so a growth of national income) -13471206 22 n 01 economic_process 0 010 @ 00029677 n 0000 ~ 13459821 n 0000 ~ 13461162 n 0000 ~ 13466849 n 0000 ~ 13471052 n 0000 ~ 13488110 n 0000 ~ 13498828 n 0000 ~ 13511243 n 0000 ~ 13560191 n 0000 ~ 13563522 n 0000 | any process affecting the production and development and management of material wealth -13471517 22 n 01 effacement 0 002 @ 13526110 n 0000 #p 14048441 n 0000 | shortening of the uterine cervix and thinning of its walls as it is dilated during labor -13471681 22 n 01 effervescence 0 003 @ 13518963 n 0000 + 02276088 a 0101 + 00519363 v 0104 | the process of bubbling as gas escapes -13471815 22 n 01 ejaculation 0 004 @ 13466586 n 0000 + 00055010 v 0101 ~ 13522611 n 0000 ~ 13540429 n 0000 | the discharge of semen in males -13471958 22 n 01 electrodeposition 0 001 @ 13462191 n 0000 | the deposition of a substance on an electrode by the action of electricity (especially by electrolysis) -13472125 22 n 01 electrolysis 0 003 @ 13458268 n 0000 ;c 06084469 n 0000 + 02718131 a 0101 | (chemistry) a chemical decomposition reaction produced by passing an electric current through a solution containing ions -13472341 22 n 02 electronic_data_processing 0 EDP 0 001 @ 13436063 n 0000 | automatic data processing by electronic means without the use of tabulating cards or punched tapes -13472518 22 n 04 electrophoresis 0 cataphoresis 0 dielectrolysis 0 ionophoresis 0 005 @ 13518963 n 0000 + 02718845 a 0202 + 02718845 a 0101 ~ 13496167 n 0000 ~ 13532059 n 0000 | the motion of charged particles in a colloid under the influence of an electric field; particles with a positive charge go to the cathode and negative to the anode -13472862 22 n 01 electrostatic_precipitation 0 001 @ 13497928 n 0000 | a process that removes suspended dust particles from a gas by applying a high voltage electrostatic charge to the particles and collecting them on charged plates -13473097 22 n 05 elimination 0 evacuation 0 excretion 0 excreting 0 voiding 0 009 @ 13466586 n 0000 + 00073343 v 0502 + 00072989 v 0401 + 00072989 v 0301 + 00073343 v 0201 + 00072989 v 0103 ~ 13459088 n 0000 ~ 13496972 n 0000 ~ 13515958 n 0000 | the bodily process of discharging waste matter -13473392 22 n 01 elimination_reaction 0 001 @ 13447361 n 0000 | a chemical reaction in which a molecule decomposes to two different molecules -13473536 22 n 01 elision 0 002 @ 13524399 n 0000 + 00615421 v 0101 | omission of a sound between two words (usually a vowel and the end of one word or the beginning of the next) -13473716 22 n 02 ellipsis 0 eclipsis 0 001 @ 13524399 n 0000 | omission or suppression of parts of words or sentences -13473836 22 n 01 elution 0 002 @ 13478525 n 0000 + 01270463 v 0101 | the process of extracting one material from another by washing with a solvent to remove adsorbed material from an adsorbent (as in washing of loaded ion-exchange resins to remove captured ions); used to obtain uranium ions -13474130 22 n 01 emergent_evolution 0 001 @ 13477023 n 0000 | the appearance of entirely new properties at certain critical stages in the course of evolution -13474290 22 n 01 emission 0 007 @ 13549672 n 0000 ~ 11410172 n 0000 ~ 13480394 n 0000 ~ 13536661 n 0000 ~ 13545184 n 0000 ~ 13553758 n 0000 ~ 13566928 n 0000 | the release of electrons from parent atoms -13474495 22 n 01 encapsulation 0 002 @ 00029677 n 0000 + 01587984 v 0101 | the process of enclosing (as in a capsule) -13474615 22 n 01 endoergic_reaction 0 001 @ 13523208 n 0000 | a nuclear reaction occurring with absorption of energy -13474734 22 n 01 endothermic_reaction 0 001 @ 13447361 n 0000 | a chemical reaction accompanied by the absorption of heat -13474858 22 n 02 enuresis 0 urinary_incontinence 0 005 @ 13496972 n 0000 ~ 13438088 n 0000 ~ 13529831 n 0000 ~ 13562474 n 0000 ~ 13571943 n 0000 | inability to control the flow of urine and involuntary urination -13475072 22 n 01 epigenesis 0 001 @ 13514648 n 0000 | a geological change in the mineral content of rock after the rock has formed -13475205 22 n 01 epilation 0 002 @ 13509196 n 0000 ~ 13542855 n 0000 | loss of hair; the result of removing hair -13475320 22 n 01 epitaxy 0 001 @ 13488844 n 0000 | growing a crystal layer of one mineral on the crystal base of another mineral in such a manner that its crystalline orientation is the same as that of the substrate -13475538 22 n 05 erosion 0 eroding 0 eating_away 0 wearing 0 wearing_away 0 012 @ 13486838 n 0000 ;c 06115701 n 0000 + 00275253 v 0505 + 00274724 v 0201 + 00274724 v 0101 ~ 11436163 n 0000 ~ 13423489 n 0000 ~ 13423615 n 0000 ~ 13438006 n 0000 ~ 13499165 n 0000 ~ 13538182 n 0000 ~ 13558003 n 0000 | (geology) the mechanical process of wearing or grinding something down (as by particles washing over it) -13475944 22 n 01 erosion 2 001 @ 13457378 n 0000 | a gradual decline of something; "after the accounting scandal there was an erosion of confidence in the auditors" -13476111 22 n 01 erythropoiesis 0 002 @ 13526110 n 0000 + 02722501 a 0101 | the process of producing red blood cells by the stem cells in the bone marrow -13476267 22 n 02 establishment 0 ecesis 0 002 @ 13518963 n 0000 ;c 06070929 n 0000 | (ecology) the process by which a plant or animal becomes established in a new habitat -13476440 22 n 02 Europeanization 0 Europeanisation 0 003 @ 13434878 n 0000 + 00409869 v 0202 + 00409869 v 0101 | assimilation into European culture -13476590 22 n 01 eutrophication 0 001 @ 13526110 n 0000 | excessive nutrients in a lake or other body of water, usually caused by runoff of nutrients (animal waste, fertilizers, sewage) from the land, which causes a dense growth of plant life; the decomposition of the plants depletes the supply of oxygen, leading to the death of animal life; "he argued that the controlling factor in eutrophication is not nitrate but phosphate" -13477023 22 n 04 evolution 0 organic_evolution 0 phylogeny 0 phylogenesis 0 013 @ 13526110 n 0000 ;c 06037666 n 0000 + 02942958 a 0401 + 03000725 a 0101 + 00545557 v 0103 + 00251064 v 0101 -c 01196759 n 0000 ~ 13431221 n 0000 ~ 13432647 n 0000 ~ 13474130 n 0000 ~ 13510263 n 0000 ~ 13515678 n 0000 ~ 13560079 n 0000 | (biology) the sequence of events involved in the evolutionary development of a species or taxonomic group of organisms -13477462 22 n 02 execution 0 instruction_execution 0 005 @ 00029677 n 0000 #p 13455487 n 0000 ;c 06128570 n 0000 ~ 13437902 n 0000 ~ 13518279 n 0000 | (computer science) the process of carrying out an instruction by a computer -13477691 22 n 01 exoergic_reaction 0 001 @ 13523208 n 0000 | a nuclear reaction accompanied by the evolution of energy -13477812 22 n 01 exothermic_reaction 0 001 @ 13447361 n 0000 | a chemical reaction accompanied by the evolution of heat -13477934 22 n 01 expectoration 0 002 @ 13440063 n 0000 + 00006238 v 0101 | the process of coughing up and spitting out -13478055 22 n 02 exponential_decay 0 exponential_return 0 002 @ 13456567 n 0000 ~ 13549311 n 0000 | a decrease that follows an exponential function -13478205 22 n 01 expression 0 003 @ 13526110 n 0000 ;c 06075527 n 0000 + 02144460 v 0101 | (genetics) the process of expressing a gene -13478342 22 n 01 extinction 0 003 @ 13518963 n 0000 %p 13424183 n 0000 %p 13553251 n 0000 | the reduction of the intensity of radiation as a consequence of absorption and radiation -13478525 22 n 01 extraction 0 008 @ 13518963 n 0000 + 01459392 v 0101 + 00229280 v 0102 ~ 13457665 n 0000 ~ 13460568 n 0000 ~ 13473836 n 0000 ~ 13500023 n 0000 ~ 13516312 n 0000 | the process of obtaining something from a mixture or compound by chemical or physical or mechanical means -13478813 22 n 01 extravasation 0 004 @ 13526110 n 0000 + 01375909 v 0101 ~ 14370526 n 0000 ~ 14573099 n 0000 | the process of exuding or passing out of a vessel into surrounding tissues; said of blood or lymph or urine -13479034 22 n 02 farrow 0 farrowing 0 003 @ 13532886 n 0000 + 00058645 v 0201 + 00058645 v 0101 | the production of a litter of pigs -13479169 22 n 01 fat_metabolism 0 001 @ 13514314 n 0000 | a metabolic process that breaks down ingested fats into fatty acids and glycerol and then into simpler compounds that can be used by cells of the body -13479380 22 n 01 feedback 0 004 @ 13518963 n 0000 + 02310157 v 0101 ~ 13520731 n 0000 ~ 13539262 n 0000 | the process in which part of the output of a system is returned to its input in order to regulate its further output -13479605 22 n 02 feminization 0 feminisation 0 003 @ 13533470 n 0000 + 00567099 v 0202 + 00567099 v 0101 | the process of becoming feminized; the development of female characteristics (loss of facial hair or breast enlargement) in a male because of hormonal disorders or castration -13479889 22 n 03 festering 0 suppuration 0 maturation 2 007 @ 13440063 n 0000 ;c 06043075 n 0000 + 00097179 v 0302 + 00096766 v 0302 + 00097179 v 0201 + 00096766 v 0203 + 00096766 v 0101 | (medicine) the formation of morbific matter in an abscess or a vesicle and the discharge of pus -13480176 22 n 01 fibrinolysis 0 001 @ 13467916 n 0000 | a normal ongoing process that dissolves fibrin and results in the removal of small blood clots; "drugs causing fibrinolysis have been utilized therapeutically" -13480394 22 n 01 field_emission 0 001 @ 13474290 n 0000 | the emission of electrons that are stripped from parent atoms by a high electric field -13480541 22 n 01 filling 0 003 @ 13482330 n 0000 + 00451838 v 0101 ~ 13547925 n 0000 | flow into something (as a container) -13480667 22 n 01 filtration 0 004 @ 13518963 n 0000 + 01457954 v 0104 + 01458664 v 0101 ~ 13534274 n 0000 | the process whereby fluids pass through a filter or a filtering medium -13480848 22 n 03 fire 0 flame 0 flaming 0 010 @ 13450206 n 0000 + 02759443 v 0301 + 02759443 v 0201 + 01248958 a 0101 + 02356420 v 0102 + 00378664 v 0102 + 00320536 v 0101 ~ 13439088 n 0000 ~ 13481883 n 0000 ~ 13495873 n 0000 | the process of combustion of inflammable materials producing heat and light and (often) smoke; "fire was one of our ancestors' first discoveries" -13481224 22 n 02 fission 0 nuclear_fission 0 001 @ 13523208 n 0000 | a nuclear reaction in which a massive nucleus splits into smaller nuclei with the simultaneous release of energy -13481408 22 n 01 fission 1 002 @ 13434120 n 0000 ~ 13553418 n 0000 | reproduction of some unicellular organisms by division of the cell into two more or less equal parts -13481580 22 n 01 fissiparity 0 001 @ 13434120 n 0000 | reproduction of some multicellular organisms by division, as in the case of some starfish -13481727 22 n 01 fixed-cycle_operation 0 001 @ 13524925 n 0000 | an operation that is completed in a specified number of regularly timed execution cycles -13481883 22 n 01 flare 0 003 @ 13480848 n 0000 + 02762981 v 0101 + 02762806 v 0101 | a sudden burst of flame -13481994 22 n 02 floating-point_operation 0 flop 0 001 @ 13450862 n 0000 | an arithmetic operation performed on floating-point numbers; "this computer can perform a million flops per second" -13482187 22 n 01 flocculation 0 002 @ 13518963 n 0000 + 02625916 v 0101 | the process of flocculating; forming woolly cloudlike aggregations -13482330 22 n 01 flow 0 010 @ 13518963 n 0000 + 02743727 v 0101 + 02067689 v 0101 ~ 11423197 n 0000 ~ 11521267 n 0000 ~ 11521665 n 0000 ~ 13480541 n 0000 ~ 13482580 n 0000 ~ 13499782 n 0000 ~ 13529295 n 0000 | any uninterrupted stream or discharge -13482580 22 n 01 flowage 0 001 @ 13482330 n 0000 | gradual internal motion or deformation of a solid body (as by heat); "rock fracture and rock flowage are different types of geological deformation" -13482781 22 n 02 focalization 0 focalisation 0 003 @ 13533349 n 0000 + 02692335 v 0204 + 02692335 v 0103 | the confinement of an infection to a limited area -13482940 22 n 02 fold 0 folding 1 001 @ 13486838 n 0000 | a geological process that causes a bend in a stratum of rock -13483061 22 n 01 foliation 0 002 @ 13562328 n 0000 ;c 06115701 n 0000 | (geology) the arrangement of leaflike layers in a rock -13483190 22 n 02 foliation 1 leafing 0 003 @ 13489037 n 0000 ;c 06066555 n 0000 + 00282790 v 0101 | (botany) the process of forming leaves -13483331 22 n 02 foreground_processing 0 foregrounding 0 001 @ 13540975 n 0000 | the execution of a program that preempts the use of the processing system -13483488 22 n 01 formation 0 003 @ 13518963 n 0000 ~ 13497650 n 0000 ~ 13550755 n 0000 | natural process that causes something to form; "the formation of gas in the intestine"; "the formation of crystals"; "the formation of pseudopods" -13483726 22 n 02 fossilization 0 fossilisation 0 004 @ 13518963 n 0000 + 00507664 v 0202 + 00507664 v 0101 ~ 13535583 n 0000 | the process of fossilizing a plant or animal that existed in some earlier age; the process of being turned to stone -13483971 22 n 01 fractional_distillation 0 001 @ 13484082 n 0000 | fractionation of a liquid by distillation -13484082 22 n 02 fractionation 0 fractional_process 0 005 @ 13497928 n 0000 + 01459696 v 0101 + 01459542 v 0101 ~ 13464031 n 0000 ~ 13483971 n 0000 | a process that uses heat to separate a substance into its components -13484303 22 n 01 fragmentation 0 003 @ 13562133 n 0000 ;c 06128570 n 0000 + 00338071 v 0102 | (computer science) the condition of a file that is broken up and stored in many different locations on a magnetic disk; "fragmentation slows system performance because it takes extra time to locate and assemble the parts of the fragmented file" -13484644 22 n 02 freeze 1 freezing 0 010 @ 13453160 n 0000 @ 13536016 n 0000 + 02758826 v 0201 + 00445711 v 0201 + 00375865 v 0201 + 00374135 v 0201 + 00375865 v 0101 + 00374135 v 0101 ~ 13484937 n 0000 ~ 13485270 n 0000 | the withdrawal of heat to change something from a liquid to a solid -13484937 22 n 03 freeze-drying 0 lyophilization 0 lyophilisation 0 004 @ 13484644 n 0000 @ 13460568 n 0000 + 00212236 v 0302 + 00212236 v 0201 | a method of drying food or blood plasma or pharmaceuticals or tissue without destroying their physical structure; material is frozen and then warmed in a vacuum so that the ice sublimes -13485270 22 n 02 frost 1 icing 0 003 @ 13484644 n 0000 + 01253254 a 0101 + 01208400 v 0101 | the formation of frost or ice on a surface -13485408 22 n 01 fructification 0 003 @ 13489037 n 0000 + 00506672 v 0101 + 00056188 v 0101 | the bearing of fruit -13485525 22 n 03 fusion 0 nuclear_fusion 0 nuclear_fusion_reaction 0 003 @ 13523208 n 0000 ~ 13449892 n 0000 ~ 13567177 n 0000 | a nuclear reaction in which nuclei combine to form more massive nuclei with the simultaneous release of energy -13485767 22 n 01 fusion 1 002 @ 13508333 n 0000 ~ 13564215 n 0000 | the merging of adjacent sounds or syllables or words -13485890 22 n 01 galactosis 0 001 @ 13553916 n 0000 | the secretion of milk -13485968 22 n 02 galvanization 0 galvanisation 0 003 @ 13561719 n 0000 + 00090513 v 0202 + 00090513 v 0101 | stimulation with a galvanic current -13486115 22 n 01 gametogenesis 0 003 @ 13489037 n 0000 ~ 13524612 n 0000 ~ 13560329 n 0000 | the development and maturation of sex cells through meiosis -13486270 22 n 01 gasification 0 002 @ 13446390 n 0000 + 00442267 v 0101 | the process of changing into gas; "coal gas is produced by the gasification of coal" -13486431 22 n 01 gassing 0 001 @ 13446390 n 0000 | the process of interacting with gas -13486520 22 n 01 gastric_digestion 0 001 @ 13465809 n 0000 | the process of breaking down proteins by the action of the gastric juice in the stomach -13486671 22 n 01 gastrulation 0 002 @ 13526110 n 0000 #p 13489037 n 0000 | the process in which a gastrula develops from a blastula by the inward migration of cells -13486838 22 n 02 geological_process 0 geologic_process 0 013 @ 13518963 n 0000 ;c 06115701 n 0000 ~ 13429300 n 0000 ~ 13462989 n 0000 ~ 13465382 n 0000 ~ 13475538 n 0000 ~ 13482940 n 0000 ~ 13487409 n 0000 ~ 13501405 n 0000 ~ 13514648 n 0000 ~ 13527817 n 0000 ~ 13562328 n 0000 ~ 13562680 n 0000 | (geology) a natural process whereby geological features are modified -13487207 22 n 02 germination 0 sprouting 0 005 @ 13489037 n 0000 + 00357332 v 0207 + 00095377 v 0201 + 00357667 v 0101 + 00357332 v 0103 | the process whereby seeds or spores sprout and begin to grow -13487409 22 n 01 glaciation 0 007 @ 13486838 n 0000 + 02736015 a 0101 + 01208708 v 0101 + 00374375 v 0101 ~ 13487638 n 0000 ~ 13487791 n 0000 ~ 13487952 n 0000 | the process of covering the earth with glaciers or masses of ice -13487638 22 n 01 Riss_glaciation 0 001 @ 13487409 n 0000 | the next-to-last Pleistocene glaciation in the Alps and the deposits laid down at that time -13487791 22 n 01 Saale_glaciation 0 001 @ 13487409 n 0000 | the next-to-last Pleistocene glaciation in northern Europe and the deposits laid down at that time -13487952 22 n 01 Wolstonian_glaciation 0 001 @ 13487409 n 0000 | the next-to-last Pleistocene glaciation in Britain and the deposits laid down at that time -13488110 22 n 02 globalization 0 globalisation 0 003 @ 13471206 n 0000 + 00540739 v 0202 + 00540739 v 0101 | growth to a global or worldwide scale; "the globalization of the communication industry" -13488310 22 n 01 global_warming 0 001 @ 13491876 n 0000 | an increase in the average temperature of the earth's atmosphere (especially a sustained increase that causes climatic changes) -13488498 22 n 01 glycogenesis 0 001 @ 13526110 n 0000 | the formation in animals of glycogen from glucose -13488606 22 n 01 glycolysis 0 001 @ 13514314 n 0000 | a metabolic process that breaks down carbohydrates and sugars through a series of reactions to either pyruvic acid or lactic acid and releases energy for the body in the form of ATP -13488844 22 n 01 growing 1 003 @ 00912960 n 0000 ;c 06099269 n 0000 ~ 13475320 n 0000 | (electronics) the production of (semiconductor) crystals by slow crystallization from the molten state -13489037 22 n 06 growth 0 growing 0 maturation 0 development 1 ontogeny 0 ontogenesis 0 053 @ 13526110 n 0000 ;c 06037666 n 0000 + 02942769 a 0601 + 02942769 a 0501 + 02945820 a 0401 + 00252019 v 0401 + 00094460 v 0402 ! 13522744 n 0401 + 02979722 a 0301 + 00248026 v 0304 + 00248026 v 0305 + 00250181 v 0203 + 00231557 v 0201 + 00245457 v 0201 + 00231557 v 0101 + 00245457 v 0101 + 00250181 v 0103 ~ 00920510 n 0000 ~ 13429780 n 0000 ~ 13431992 n 0000 ~ 13433948 n 0000 ~ 13436682 n 0000 ~ 13439570 n 0000 ~ 13444940 n 0000 ~ 13449714 n 0000 ~ 13454318 n 0000 ~ 13454950 n 0000 ~ 13483190 n 0000 ~ 13485408 n 0000 ~ 13486115 n 0000 %p 13486671 n 0000 ~ 13487207 n 0000 ~ 13490909 n 0000 ~ 13499923 n 0000 ~ 13501738 n 0000 ~ 13504403 n 0000 ~ 13507827 n 0000 ~ 13511755 n 0000 ~ 13517553 n 0000 ~ 13518432 n 0000 ~ 13520981 n 0000 ~ 13531652 n 0000 ~ 13541975 n 0000 ~ 13543093 n 0000 ~ 13543231 n 0000 ~ 13543418 n 0000 ~ 13543564 n 0000 ~ 13552124 n 0000 ~ 13563647 n 0000 ~ 13565781 n 0000 ~ 13566436 n 0000 ~ 13573057 n 0000 -c 15278960 n 0000 | (biology) the process of an individual organism growing organically; a purely biological unfolding of events involved in an organism changing gradually from a simple to a more complex level; "he proposed an indicator of osseous development in children" -13490343 22 n 01 growth 1 002 @ 13464820 n 0000 + 00250181 v 0103 | a progression from simpler to more complex forms; "the growth of culture" -13490487 22 n 01 gynogenesis 0 001 @ 13532501 n 0000 | female parthenogenesis in which the embryo contains only maternal chromosomes due to the failure of the sperm to fuse with the egg nucleus -13490683 22 n 02 Haber_process 0 Haber-Bosch_process 0 001 @ 13497928 n 0000 | an industrial process for producing ammonia from nitrogen and hydrogen by combining them under high pressure in the presence of an iron catalyst -13490909 22 n 01 habit 0 001 @ 13489037 n 0000 | the general form or mode of growth (especially of a plant or crystal); "a shrub of spreading habit" -13491060 22 n 05 hardening 0 solidifying 0 solidification 0 set 0 curing 0 010 @ 13518963 n 0000 #p 13538314 n 0000 + 00527572 v 0501 + 00442669 v 0402 + 00445467 v 0301 + 00445169 v 0301 + 00445467 v 0201 + 00445169 v 0201 + 00443116 v 0101 ~ 13451508 n 0000 | the process of becoming hard or solid by cooling or drying or crystallization; "the hardening of concrete"; "he tested the set of the glue" -13491464 22 n 02 hatch 0 hatching 0 004 @ 13532886 n 0000 + 00063095 v 0201 + 00060185 v 0102 + 00063095 v 0101 | the production of young from an egg -13491616 22 n 01 healing 0 005 @ 13440063 n 0000 + 00270561 v 0102 + 00099184 v 0101 ~ 13452347 n 0000 ~ 13571365 n 0000 | the natural process by which the body repairs itself -13491794 22 n 01 heat_dissipation 0 001 @ 13453160 n 0000 | dissipation of heat -13491876 22 n 02 heating 0 warming 0 009 @ 13566212 n 0000 + 00373250 v 0201 + 00372665 v 0101 ~ 13440779 n 0000 ~ 13488310 n 0000 ~ 13497784 n 0000 ~ 13530108 n 0000 ~ 13545036 n 0000 ~ 13566535 n 0000 | the process of becoming warmer; a rising temperature -13492136 22 n 02 hemagglutination 0 haemagglutination 0 003 @ 13428608 n 0000 + 01221842 v 0201 + 01221842 v 0102 | agglutination of red blood cells -13492287 22 n 02 hematochezia 0 haematochezia 0 001 @ 13459088 n 0000 | passage of stools containing blood (as from diverticulosis or colon cancer or peptic ulcer) -13492453 22 n 09 hematopoiesis 0 haematopoiesis 0 hemopoiesis 0 haemopoiesis 0 hemogenesis 0 haemogenesis 0 hematogenesis 0 haematogenesis 0 sanguification 0 005 @ 13526110 n 0000 + 02739578 a 0404 + 02739578 a 0303 + 02739578 a 0202 + 02739578 a 0101 | the formation of blood cells in the living body (especially in the bone marrow) -13492789 22 n 03 hemimetamorphosis 0 hemimetabolism 0 hemimetaboly 0 005 @ 13514880 n 0000 + 01530076 a 0302 + 01530076 a 0202 + 01530076 a 0201 + 01530076 a 0103 | incomplete or partial metamorphosis in insects -13493003 22 n 02 heterometabolism 0 heterometaboly 0 003 @ 13514880 n 0000 + 01530378 a 0202 + 01530378 a 0102 | development of insects with incomplete metamorphosis in which no pupal stage precedes maturity -13493213 22 n 04 hemolysis 0 haemolysis 0 hematolysis 0 haematolysis 0 003 @ 13509528 n 0000 + 03007530 a 0202 + 03007530 a 0101 | lysis of erythrocytes with the release of hemoglobin -13493399 22 n 01 heredity 0 002 @ 13526110 n 0000 + 01314537 a 0103 | the biological process whereby genetic factors are transmitted from one generation to the next -13493566 22 n 01 heterospory 0 002 @ 13517199 n 0000 + 02740793 a 0101 | the development of both microspores and megaspores -13493692 22 n 02 holometabolism 0 holometaboly 0 005 @ 13514880 n 0000 ;c 02159955 n 0000 + 01530622 a 0202 + 01530622 a 0101 + 01530622 a 0102 | complete metamorphosis in insects -13493874 22 n 01 homospory 0 002 @ 13517199 n 0000 + 02741271 a 0101 | the development of a single kind of asexual spores -13493998 22 n 01 human_process 0 006 @ 00029677 n 0000 ~ 13508333 n 0000 ~ 13528852 n 0000 ~ 13542947 n 0000 ~ 13557451 n 0000 ~ 13571580 n 0000 | a process in which human beings are involved -13494192 22 n 01 humification 0 002 @ 13526110 n 0000 + 00116079 v 0101 | the process of the formation of humus from plant remains -13494325 22 n 01 hydration 0 003 @ 13435152 n 0000 + 00214268 v 0101 + 00214020 v 0101 | the process of combining with water; usually reversible -13494472 22 n 01 hydrocracking 0 001 @ 13453861 n 0000 | the process whereby hydrocarbon molecules of petroleum are broken down into kerosene and gasolene by the addition of hydrogen under high pressure in the presence of a catalyst -13494707 22 n 01 hydrogenation 0 002 @ 13446390 n 0000 + 00308534 v 0101 | a chemical process that adds hydrogen atoms to an unsaturated oil; "food producers use hydrogenation to keep fat from becoming rancid" -13494919 22 n 01 hydrolysis 0 003 @ 13447361 n 0000 + 00564300 v 0101 + 00564300 v 0102 | a chemical reaction in which water reacts with a compound to produce other compounds; involves the splitting of a bond and the addition of the hydrogen cation and the hydroxide anion from the water -13495209 22 n 03 hyperhidrosis 0 hyperidrosis 0 polyhidrosis 0 001 @ 13535261 n 0000 | excessive and profuse perspiration -13495333 22 n 01 hypersecretion 0 001 @ 13553916 n 0000 | excessive secretion -13495413 22 n 01 hypostasis 0 001 @ 13440063 n 0000 | the accumulation of blood in an organ -13495507 22 n 02 hypostasis 1 epistasis 0 001 @ 13526110 n 0000 | the suppression of a gene by the effect of an unrelated gene -13495636 22 n 02 idealization 0 idealisation 0 003 @ 13459322 n 0000 ;c 06055946 n 0000 + 00692907 v 0202 | (psychiatry) a defense mechanism that splits something you are ambivalent about into two representations--one good and one bad -13495873 22 n 01 ignition 0 003 @ 13480848 n 0000 + 02759614 v 0101 ~ 13560586 n 0000 | the process of initiating combustion or catching fire -13496017 22 n 01 imbibition 0 003 @ 13423922 n 0000 ;c 06084469 n 0000 + 01540042 v 0102 | (chemistry) the absorption of a liquid by a solid or gel -13496167 22 n 01 immunoelectrophoresis 0 001 @ 13472518 n 0000 | electrophoresis to separate antigens and antibodies -13496286 22 n 02 implantation 0 nidation 0 003 @ 13526110 n 0000 ;c 06071426 n 0000 + 01528821 v 0101 | (embryology) the organic process whereby a fertilized egg becomes implanted in the lining of the uterus of placental mammals -13496517 22 n 02 impregnation 0 saturation 0 003 @ 13534954 n 0000 #p 13538314 n 0000 + 00497705 v 0101 | the process of totally saturating something with a substance; "the impregnation of wood with preservative"; "the saturation of cotton with ether" -13496771 22 n 01 inactivation 0 003 @ 13518963 n 0000 + 00191517 v 0101 ! 13426376 n 0101 | the process of rendering inactive; "the gene inactivation system"; "thermal inactivation of serum samples" -13496972 22 n 02 incontinence 0 incontinency 0 004 @ 13473097 n 0000 + 00591953 a 0201 + 00591953 a 0101 ~ 13474858 n 0000 | involuntary urination or defecation -13497135 22 n 03 increase 0 increment 0 growth 2 018 @ 00029677 n 0000 + 00230746 v 0301 ! 13458571 n 0202 + 00153263 v 0101 + 00156601 v 0101 ! 13458571 n 0101 + 00049266 a 0201 ~ 13424477 n 0000 ~ 13424865 n 0000 ~ 13425067 n 0000 ~ 13425245 n 0000 ~ 13425425 n 0000 ~ 13517843 n 0000 ~ 13538996 n 0000 ~ 13542114 n 0000 ~ 13543968 n 0000 ~ 13549488 n 0000 ~ 13574804 n 0000 | a process of becoming larger or longer or more numerous or more important; "the increase in unemployment"; "the growth of population" -13497650 22 n 02 incrustation 0 encrustation 0 003 @ 13483488 n 0000 + 00255079 v 0201 + 00255079 v 0102 | the formation of a crust -13497784 22 n 01 induction_heating 0 001 @ 13491876 n 0000 | the heating of a conducting material caused by an electric current induced in it -13497928 22 n 01 industrial_process 0 008 @ 00029677 n 0000 ~ 13425839 n 0000 ~ 13438223 n 0000 ~ 13454789 n 0000 ~ 13472862 n 0000 ~ 13484082 n 0000 ~ 13490683 n 0000 ~ 13558325 n 0000 | a systematic series of mechanical or chemical operations that produce or manufacture something -13498213 22 n 01 indweller 0 002 @ 13426376 n 0000 + 02617196 v 0101 | activation by an inner spirit or force or principle; "the Holy Spirit is the indweller of the church and its members" -13498404 22 n 01 infection 0 005 @ 13533470 n 0000 ;c 06043075 n 0000 + 02833070 a 0101 + 00088713 v 0101 ~ 13575226 n 0000 | (medicine) the invasion of the body by pathogenic microorganisms and their multiplication which can lead to tissue damage and disease -13498666 22 n 01 infection 1 002 @ 13508333 n 0000 ;c 06177033 n 0000 | (phonetics) the alteration of a speech sound under the influence of a neighboring sound -13498828 22 n 02 inflation 0 rising_prices 0 010 @ 13471206 n 0000 + 02538626 a 0101 + 00562882 v 0101 + 00562523 v 0101 ! 13459821 n 0101 ! 13466849 n 0101 ~ 13453737 n 0000 ~ 13461390 n 0000 ~ 13548350 n 0000 ~ 13560738 n 0000 | a general and progressive increase in prices; "in inflation everything gets more valuable except money" -13499165 22 n 01 deflation 1 002 @ 13475538 n 0000 ;c 06115701 n 0000 | (geology) the erosion of soil as a consequence of sand and dust and loose rocks being removed by the wind; "a constant deflation of the desert landscape" -13499393 22 n 01 inflationary_spiral 0 002 @ 13560191 n 0000 ! 13499590 n 0101 | an episode of inflation in which prices and wages increase at an increasing rate and currency rapidly loses value -13499590 22 n 01 deflationary_spiral 0 002 @ 13560191 n 0000 ! 13499393 n 0101 | an episode of deflation in which prices and wages decrease at an increasing rate and currency gains in value -13499782 22 n 02 inflow 0 influx 0 004 @ 13482330 n 0000 ! 13529295 n 0203 ! 13529295 n 0101 ~ 13500437 n 0000 | the process of flowing in -13499923 22 n 01 infructescence 0 001 @ 13489037 n 0000 | the fruiting stage of the inflorescence -13500023 22 n 01 infusion 0 002 @ 13478525 n 0000 + 00327654 v 0101 | the process of extracting certain active properties (as a drug from a plant) by steeping or soaking (usually in water) -13500214 22 n 01 inhibition 0 002 @ 13526110 n 0000 ;c 06080522 n 0000 | (physiology) the process whereby nerves can retard or prevent the functioning of an organ or part; "the inhibition of the heart by the vagus nerve" -13500437 22 n 03 inpouring 0 inpour 0 inrush 0 001 @ 13499782 n 0000 | an inflow; "an inpouring of spiritual comfort" -13500557 22 n 01 inspissation 0 002 @ 13460568 n 0000 + 00431610 v 0102 | the process of thickening by dehydration -13500674 22 n 01 insufflation 0 003 @ 13439807 n 0000 ;c 06043075 n 0000 + 00079629 v 0101 | (medicine) blowing air or medicated powder into the lungs (or into some other body cavity) -13500860 22 n 02 integrated_data_processing 0 IDP 0 001 @ 13436063 n 0000 | automatic data processing in which data acquisition and other stages or processing are integrated into a coherent system -13501059 22 n 02 intellectualization 0 intellectualisation 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism that uses reasoning to block out emotional stress and conflict -13501261 22 n 01 internal_combustion 0 001 @ 13450206 n 0000 | the combustion of fuel inside a cylinder (as in an internal-combustion engine) -13501405 22 n 01 intrusion 0 001 @ 13486838 n 0000 | the forcing of molten rock into fissures or between strata of an earlier rock formation -13501548 22 n 03 intumescence 0 intumescency 0 swelling 0 001 @ 13446390 n 0000 | the increase in volume of certain substances when they are heated (often accompanied by release of water) -13501738 22 n 01 intussusception 0 002 @ 13489037 n 0000 ;c 06037666 n 0000 | (biology) growth in the surface area of a cell by the deposit of new particles between existing particles in the cell wall -13501941 22 n 04 invagination 0 introversion 0 intussusception 1 infolding 0 004 @ 13526110 n 0000 + 01507006 v 0301 + 01506812 v 0202 + 01506812 v 0101 | the folding in of an outer layer so as to form a pocket in the surface; "the invagination of the blastula" -13502205 22 n 01 inversion 0 001 @ 13446390 n 0000 | a chemical process in which the direction of optical rotation of a substance is reversed from dextrorotatory to levorotary or vice versa -13502397 22 n 01 involution 0 001 @ 13526110 n 0000 | reduction in size of an organ or part (as in the return of the uterus to normal size after childbirth) -13502556 22 n 01 iodination 0 003 @ 13446390 n 0000 + 00184907 v 0101 + 00184907 v 0102 | the substitution or addition of iodine atoms in organic compounds -13502714 22 n 01 ion_exchange 0 001 @ 13518963 n 0000 | a process in which ions are exchanged between a solution and an insoluble (usually resinous) solid; widely used in industrial processing -13502909 22 n 02 ionization 0 ionisation 0 005 @ 13518963 n 0000 + 00267041 v 0202 + 00266798 v 0202 + 00267041 v 0101 + 00266798 v 0101 | the process of ionizing; the formation of ions by separating atoms or molecules or radicals or by adding or subtracting electrons from atoms by strong electric fields in a gas -13503226 22 n 01 irreversible_process 0 002 @ 00029677 n 0000 ! 13551617 n 0101 | any process that is not reversible -13503345 22 n 01 isoagglutination 0 001 @ 13428608 n 0000 | agglutination of an agglutinogen of one individual by a serum from another individual of the same species -13503513 22 n 01 isogamy 0 002 @ 13555240 n 0000 ;c 06037666 n 0000 | (biology) reproduction by the union or fusion of gametes of the same size and structure -13503673 22 n 01 isolation 0 003 @ 13459322 n 0000 ;c 06055946 n 0000 + 00655378 v 0101 | (psychiatry) a defense mechanism in which memory of an unacceptable act or impulse is separated from the emotion originally associated with it -13503908 22 n 02 iteration 0 looping 0 003 @ 00029677 n 0000 ;c 06128570 n 0000 + 00958334 v 0104 | (computer science) executing the same set of instructions a given number of times or until a specified result is obtained; "the solution is obtained by iteration" -13504173 22 n 02 iteration 1 loop 0 003 @ 00029677 n 0000 ;c 06128570 n 0000 + 00958334 v 0104 | (computer science) a single execution of a set of instructions that are to be repeated; "the solution took hundreds of iterations" -13504403 22 n 01 juvenescence 0 001 @ 13489037 n 0000 | the process of growing into a youth -13504497 22 n 01 cytokinesis 0 003 @ 13526110 n 0000 #p 13516597 n 0000 #p 13512725 n 0000 | organic process consisting of the division of the cytoplasm of a cell following karyokinesis bringing about the separation into two daughter cells -13504739 22 n 01 karyokinesis 0 004 @ 13526110 n 0000 #p 13516597 n 0000 #p 13512725 n 0000 + 03078076 a 0101 | organic process consisting of the division of the nucleus of a cell during mitosis or meiosis -13504947 22 n 01 karyolysis 0 001 @ 13509528 n 0000 | disintegration and dissolution of a cell nucleus when a cell dies -13505069 22 n 01 katamorphism 0 002 @ 13514648 n 0000 ! 13431043 n 0101 | metamorphism that occurs at or near the earth's surface; breaks down complex minerals into simpler ones -13505249 22 n 02 keratinization 0 keratinisation 0 003 @ 13526110 n 0000 + 00576684 v 0202 + 00576684 v 0101 | organic process by which keratin is deposited in cells and the cells become horny (as in nails and hair) -13505467 22 n 04 Krebs_cycle 0 Krebs_citric_acid_cycle 0 citric_acid_cycle 0 tricarboxylic_acid_cycle 0 003 @ 13526110 n 0000 #p 13514314 n 0000 %p 13530989 n 0000 | in all plants and animals: a series of enzymatic reactions in mitochondria involving oxidative metabolism of acetyl compounds to produce high-energy phosphate compounds that are the source of cellular energy -13505843 22 n 04 lacrimation 0 lachrymation 0 tearing 0 watering 0 003 @ 13440063 n 0000 + 00452098 v 0401 + 00066977 v 0301 | shedding tears -13505987 22 n 01 lactation 0 002 @ 13440063 n 0000 + 01186428 v 0106 | the production and secretion of milk by the mammary glands -13506119 22 n 02 Lamaze_method_of_childbirth 0 Lamaze_method 0 002 @ 13518656 n 0000 %p 00659667 n 0000 | a method that prepares a mother for natural childbirth; the pregnant woman (in classes and at home) practices (usually with the help of a coach) and learns about the physiology of childbirth and techniques of relaxation, concentration, and breathing -13506477 22 n 02 laying 0 egg_laying 0 001 @ 13532886 n 0000 | the production of eggs (especially in birds) -13506587 22 n 02 leach 0 leaching 0 004 @ 13518963 n 0000 + 00488617 v 0101 + 02071627 v 0101 + 02071837 v 0101 | the process of leaching -13506727 22 n 04 leak 0 wetting 0 making_water 0 passing_water 0 003 @ 13515958 n 0000 ;u 06605046 n 0000 + 00592113 a 0101 | a euphemism for urination; "he had to take a leak" -13506906 22 n 02 Leboyer_method_of_childbirth 0 Leboyer_method 0 001 @ 13518656 n 0000 | a method of childbirth that tries to minimize the trauma for the newborn; delivery occurs in a quiet dimly lit room and the infant's head is not pulled and immediate bonding between mother and child is encouraged -13507210 22 n 01 leeway 0 003 @ 13469674 n 0000 ;c 04194289 n 0000 ;c 02691156 n 0000 | (of a ship or plane) sideways drift -13507336 22 n 01 leptotene 0 003 @ 15290337 n 0000 #p 13542474 n 0000 %p 13564045 n 0000 | the first stage of the prophase of meiosis -13507472 22 n 02 lexicalization 0 lexicalisation 0 002 @ 13508333 n 0000 + 00962190 v 0101 | the process of making a word to express a concept -13507617 22 n 01 libration 0 004 @ 13527965 n 0000 @ 11415084 n 0000 ;c 06095022 n 0000 + 01878566 v 0101 | (astronomy) a real or apparent slow oscillation of a moon or satellite; "the libration of the moon" -13507827 22 n 01 life_cycle 0 001 @ 13489037 n 0000 | the course of developmental changes in an organism from fertilized zygote to maturity when another zygote can be produced -13508005 22 n 01 light_reaction 0 002 @ 13536523 n 0000 #p 13537429 n 0000 | the first stage of photosynthesis during which energy from light is used for the production of ATP -13508183 22 n 01 line_feed 0 001 @ 13540791 n 0000 | the operation that prepares for the next character to be printed or displayed on the next line -13508333 22 n 01 linguistic_process 0 013 @ 13493998 n 0000 ;c 06172789 n 0000 ~ 13428421 n 0000 ~ 13434537 n 0000 ~ 13462387 n 0000 ~ 13467443 n 0000 ~ 13469893 n 0000 ~ 13485767 n 0000 ~ 13498666 n 0000 ~ 13507472 n 0000 ~ 13515520 n 0000 ~ 13524399 n 0000 ~ 13564795 n 0000 | a process involved in human language -13508651 22 n 01 liquefaction 0 005 @ 13536016 n 0000 + 02757304 v 0101 + 00444309 v 0101 + 00443984 v 0101 ~ 13468094 n 0000 | the conversion of a solid or a gas into a liquid -13508830 22 n 01 list_processing 0 001 @ 13455487 n 0000 | processing data that is given in the form of chained lists -13508950 22 n 01 lithuresis 0 001 @ 13515958 n 0000 | passing small stones with the urine -13509042 22 n 02 logic_operation 0 logical_operation 0 002 @ 13524925 n 0000 ;c 06163751 n 0000 | an operation that follows the rules of symbolic logic -13509196 22 n 01 loss 0 004 @ 13457378 n 0000 + 01433267 a 0101 ~ 13475205 n 0000 ~ 13547513 n 0000 | gradual decline in amount or activity; "weight loss"; "a serious loss of business" -13509383 22 n 01 lymphopoiesis 0 001 @ 13526110 n 0000 | the formation of lymphocytes in the bone marrow and lymph nodes and thymus and spleen -13509528 22 n 01 lysis 0 011 @ 13467916 n 0000 ;c 06079620 n 0000 ~ 13435918 n 0000 ~ 13437379 n 0000 ~ 13455086 n 0000 ~ 13493213 n 0000 ~ 13504947 n 0000 ~ 13520629 n 0000 ~ 13529167 n 0000 ~ 13545627 n 0000 ~ 13567515 n 0000 | (biochemistry) dissolution or destruction of cells such as blood cells or bacteria -13509843 22 n 01 lysis 1 001 @ 13452347 n 0000 | recuperation in which the symptoms of an acute disease gradually subside -13509967 22 n 02 lysogenization 0 lysogenisation 0 002 @ 13526110 n 0000 + 00467015 v 0101 | the process by which a bacterium acquires a phage that becomes integrated into its genome -13510152 22 n 01 maceration 0 002 @ 13557766 n 0000 + 00398484 v 0101 | softening due to soaking or steeping -13510263 22 n 01 macroevolution 0 001 @ 13477023 n 0000 | evolution on a large scale extending over geologic era and resulting in the formation of new taxonomic groups -13510433 22 n 03 magnetization 0 magnetisation 0 magnetic_induction 0 003 @ 13518963 n 0000 + 00399788 v 0202 + 00399788 v 0101 | the process that makes a substance magnetic (temporarily or permanently) -13510638 22 n 01 majority_operation 0 001 @ 13567344 n 0000 | a threshold operation in which each operand is 0 or 1; output is 1 if and only if more than half the operands have the value 1 -13510829 22 n 01 malabsorption 0 001 @ 13434688 n 0000 | abnormal absorption of nutrients from the digestive tract -13510946 22 n 02 marginalization 0 marginalisation 0 003 @ 13557451 n 0000 + 02377520 v 0202 + 02377520 v 0101 | the social process of becoming or being made marginal (especially as a group within the larger society); "the marginalization of the underclass"; "the marginalization of literature" -13511243 22 n 01 market_forces 0 001 @ 13471206 n 0000 | the interaction of supply and demand that shapes a market economy -13511368 22 n 02 Markov_chain 0 Markoff_chain 0 001 @ 13511507 n 0000 | a Markov process for which the parameter is discrete time values -13511507 22 n 02 Markov_process 0 Markoff_process 0 002 @ 13561896 n 0000 ~ 13511368 n 0000 | a simple stochastic process in which the distribution of future states depends only on the present state and not on how it arrived in the present state -13511755 22 n 04 masculinization 0 masculinisation 0 virilization 0 virilisation 0 003 @ 13489037 n 0000 + 00566569 v 0303 + 00566569 v 0101 | the abnormal development of male sexual characteristics in a female (usually as the result of hormone therapies or adrenal malfunction) -13512036 22 n 02 materialization 0 materialisation 0 003 @ 13518963 n 0000 + 00344174 v 0203 + 00344174 v 0102 | the process of coming into being; becoming reality; "the materialization of her dream" -13512238 22 n 03 maturation 1 ripening 0 maturement 0 009 @ 13526110 n 0000 + 00926156 v 0301 + 00249969 v 0302 + 00250181 v 0301 + 00249969 v 0201 + 00249852 v 0201 + 02979722 a 0101 + 00250181 v 0101 + 00250181 v 0102 | coming to full development; becoming mature -13512506 22 n 02 mechanism 0 chemical_mechanism 0 002 @ 13446390 n 0000 ~ 13438671 n 0000 | the atomic process that occurs during a chemical reaction; "he determined unique mechanisms for the photochemical reactions" -13512725 22 n 03 meiosis 0 miosis 0 reduction_division 0 011 @ 13444703 n 0000 ;c 06075527 n 0000 + 02763423 a 0101 %p 13431380 n 0000 %p 13504497 n 0000 %p 13504739 n 0000 %p 13515251 n 0000 ~ 13522879 n 0000 %p 13542474 n 0000 %p 13554121 n 0000 %p 13566041 n 0000 | (genetics) cell division that produces reproductive cells in sexually reproducing organisms; the nucleus divides into four nuclei each containing half the chromosome number (leading to gametes in animals and spores in plants) -13513222 22 n 01 mellowing 0 004 @ 13551965 n 0000 + 00254486 v 0101 + 00254672 v 0101 + 00254298 v 0101 | the process of becoming mellow -13513362 22 n 02 meltdown 0 nuclear_meltdown 0 001 @ 13530108 n 0000 | severe overheating of the core of a nuclear reactor resulting in the core melting and radiation escaping -13513540 22 n 02 menorrhagia 0 hypermenorrhea 0 002 @ 13513747 n 0000 @ 14299637 n 0000 | abnormally heavy or prolonged menstruation; can be a symptom of uterine tumors and can lead to anemia if prolonged -13513747 22 n 06 menstruation 0 menses 0 menstruum 0 catamenia 0 period 0 flow 1 006 @ 13466586 n 0000 + 00062203 v 0602 + 02879273 a 0402 + 00062203 v 0101 ~ 13513540 n 0000 ~ 13524191 n 0000 | the monthly discharge of blood from the uterus of nonpregnant women from puberty to menopause; "the women were sickly and subject to excessive menstruation"; "a woman does not take the gout unless her menses be stopped"--Hippocrates; "the semen begins to appear in males and to be emitted at the same time of life that the catamenia begin to flow in females"--Aristotle -13514314 22 n 02 metabolism 0 metabolic_process 0 011 @ 13526110 n 0000 ;c 00004475 n 0000 + 02975096 a 0101 + 01197750 v 0101 ~ 00830811 n 0000 %p 13430495 n 0000 ~ 13437753 n 0000 %p 13443787 n 0000 ~ 13479169 n 0000 ~ 13488606 n 0000 %p 13505467 n 0000 | the organic processes (in a cell or organism) that are necessary for life -13514648 22 n 01 metamorphism 0 004 @ 13486838 n 0000 ~ 13431043 n 0000 ~ 13475072 n 0000 ~ 13505069 n 0000 | change in the structure of rock by natural agencies such as pressure or heat or introduction of new chemical substances -13514880 22 n 02 metamorphosis 0 metabolism 2 007 @ 13526110 n 0000 + 01508444 a 0201 + 01508444 a 0202 + 01529643 a 0101 ~ 13492789 n 0000 ~ 13493003 n 0000 ~ 13493692 n 0000 | the marked and rapid transformation of a larva into an adult that occurs in some animals -13515149 22 n 01 metaphase 1 002 @ 13536299 n 0000 #p 13516597 n 0000 | the second stage of mitosis -13515251 22 n 01 metaphase 2 002 @ 13536299 n 0000 #p 13512725 n 0000 | the second stage of meiosis -13515353 22 n 01 metastasis 1 003 @ 13533470 n 0000 + 00104667 v 0101 + 02975216 a 0101 | the spreading of a disease (especially cancer) to another part of the body -13515520 22 n 01 metathesis 1 001 @ 13508333 n 0000 | a linguistic process of transposition of sounds or syllables within a word or words within a sentence -13515678 22 n 01 microevolution 0 001 @ 13477023 n 0000 | evolution resulting from small specific genetic changes that can lead to a new subspecies -13515828 22 n 01 microphoning 0 001 @ 13568524 n 0000 | the transduction of sound waves into electrical waves (by a microphone) -13515958 22 n 02 micturition 0 urination 0 008 @ 13473097 n 0000 + 00072012 v 0202 + 00072012 v 0105 ~ 13506727 n 0000 ~ 13508950 n 0000 ~ 13522485 n 0000 ~ 13524295 n 0000 ~ 13533886 n 0000 | the discharge of urine -13516176 22 n 03 mildew 0 mold 0 mould 0 003 @ 13560417 n 0000 + 00210738 v 0201 + 00210738 v 0102 | the process of becoming mildewed -13516312 22 n 06 mineral_extraction 0 mineral_processing 0 mineral_dressing 0 ore_processing 0 ore_dressing 0 beneficiation 0 003 @ 13478525 n 0000 + 00577170 v 0601 -c 14723425 n 0000 | crushing and separating ore into valuable substances or waste by any of a variety of techniques -13516597 22 n 01 mitosis 0 006 @ 13444703 n 0000 %p 13504497 n 0000 %p 13504739 n 0000 %p 13515149 n 0000 %p 13542374 n 0000 %p 13565940 n 0000 | cell division in which the nucleus divides into nuclei containing the same number of chromosomes -13516842 22 n 05 molt 0 molting 0 moult 0 moulting 0 ecdysis 0 005 @ 13555599 n 0000 + 00009147 v 0404 + 00009147 v 0304 + 00009147 v 0202 + 00009147 v 0102 | periodic shedding of the cuticle in arthropods or the outer skin in reptiles -13517080 22 n 02 monadic_operation 0 unary_operation 0 001 @ 13524925 n 0000 | an operation with exactly one operand -13517199 22 n 02 monogenesis 0 sporulation 0 004 @ 13434120 n 0000 + 01752728 v 0201 ~ 13493566 n 0000 ~ 13493874 n 0000 | asexual reproduction by the production and release of spores -13517385 22 n 01 morphallaxis 0 001 @ 13548734 n 0000 | regeneration on a reduced scale of a body part; observed especially in invertebrates such as certain lobsters -13517553 22 n 01 morphogenesis 0 002 @ 13489037 n 0000 ;c 00004475 n 0000 | differentiation and growth of the structure of an organism (or a part of an organism) -13517717 22 n 01 multiplex_operation 0 001 @ 13524925 n 0000 | an operation in which two or more activities are interleaved -13517843 22 n 01 multiplication 0 006 @ 13497135 n 0000 + 00247390 v 0101 ~ 13469526 n 0000 ~ 13544433 n 0000 ~ 13544930 n 0000 ~ 13570472 n 0000 | a multiplicative increase; "repeated copying leads to a multiplication of errors"; "this multiplication of cells is a natural correlate of growth" -13518140 22 n 02 multiprocessing 0 parallel_processing 0 001 @ 13455487 n 0000 | simultaneous processing by two or more processing units -13518279 22 n 02 multiprogramming 0 concurrent_execution 0 001 @ 13477462 n 0000 | the execution of two or more computer programs by a single computer -13518432 22 n 02 myelinization 0 myelinisation 0 001 @ 13489037 n 0000 | the development of a myelin sheath around a nerve fiber -13518563 22 n 01 narrowing 0 002 @ 13458571 n 0000 ! 13574804 n 0101 | a decrease in width -13518656 22 n 01 natural_childbirth 0 005 @ 13448334 n 0000 ~ 13441536 n 0000 ~ 13506119 n 0000 ~ 13506906 n 0000 ~ 13546768 n 0000 | labor and childbirth without medical intervention; no drugs are given to relieve pain or aid the birth process; "natural childbirth is considered the safest for the baby" -13518963 22 n 04 natural_process 0 natural_action 0 action 0 activity 1 069 @ 00029677 n 0000 + 00043411 a 0401 + 00040325 a 0401 ~ 07439883 n 0000 ~ 13424183 n 0000 ~ 13426238 n 0000 ~ 13427481 n 0000 ~ 13428159 n 0000 ~ 13432802 n 0000 ~ 13442715 n 0000 ~ 13442867 n 0000 ~ 13445296 n 0000 ~ 13446390 n 0000 ~ 13448778 n 0000 ~ 13451073 n 0000 ~ 13451348 n 0000 ~ 13452750 n 0000 ~ 13454479 n 0000 ~ 13456715 n 0000 ~ 13460991 n 0000 ~ 13463490 n 0000 ~ 13465530 n 0000 ~ 13467916 n 0000 ~ 13468306 n 0000 ~ 13469674 n 0000 ~ 13471681 n 0000 ~ 13472518 n 0000 ~ 13476267 n 0000 ~ 13478342 n 0000 ~ 13478525 n 0000 ~ 13479380 n 0000 ~ 13480667 n 0000 ~ 13482187 n 0000 ~ 13482330 n 0000 ~ 13483488 n 0000 ~ 13483726 n 0000 ~ 13486838 n 0000 ~ 13491060 n 0000 ~ 13496771 n 0000 ~ 13502714 n 0000 ~ 13502909 n 0000 ~ 13506587 n 0000 ~ 13510433 n 0000 ~ 13512036 n 0000 ~ 13523208 n 0000 ~ 13524686 n 0000 ~ 13527965 n 0000 ~ 13531149 n 0000 ~ 13531435 n 0000 ~ 13536016 n 0000 ~ 13539894 n 0000 ~ 13549672 n 0000 ~ 13552644 n 0000 ~ 13553251 n 0000 ~ 13555101 n 0000 ~ 13555915 n 0000 ~ 13557158 n 0000 ~ 13557766 n 0000 ~ 13558490 n 0000 ~ 13558953 n 0000 ~ 13561521 n 0000 ~ 13561719 n 0000 ~ 13562862 n 0000 ~ 13563746 n 0000 ~ 13564910 n 0000 ~ 13566212 n 0000 ~ 13568524 n 0000 ~ 13569905 n 0000 ~ 13573805 n 0000 | a process existing in or produced by nature (rather than by the intent of human beings); "the action of natural forces"; "volcanic activity" -13520426 22 n 01 Nazification 0 001 @ 13557451 n 0000 | social process of adopting (or being forced to adopt) Nazism; "as the process of Nazification spread they paid less attention to public opinion" -13520629 22 n 01 necrolysis 0 001 @ 13509528 n 0000 | disintegration and dissolution of dead tissue -13520731 22 n 01 negative_feedback 0 001 @ 13479380 n 0000 | feedback in opposite phase with (decreasing) the input -13520849 22 n 01 neoplasia 0 001 @ 13533470 n 0000 | the pathological process that results in the formation and growth of a tumor -13520981 22 n 01 neurogenesis 0 001 @ 13489037 n 0000 | the development of nerve tissues -13521072 22 n 04 neutralization 0 neutralisation 0 neutralization_reaction 0 neutralisation_reaction 0 003 @ 13447361 n 0000 + 00469904 v 0202 + 00469904 v 0101 | a chemical reaction in which an acid and a base interact with the formation of a salt; with strong acids and bases the essential reaction is the combination of hydrogen ions with hydroxyl ions to form water -13521444 22 n 01 new_line 0 001 @ 13540791 n 0000 | the operation that prepares for the next character to be printed or displayed as the first character on the next line -13521616 22 n 01 nitrification 0 004 @ 13530408 n 0000 ;c 00017222 n 0000 + 00504901 v 0101 + 00502478 v 0101 | the oxidation of ammonium compounds in dead organic material into nitrates and nitrites by soil bacteria (making nitrogen available to plants) -13521873 22 n 01 nitrification 1 002 @ 13446390 n 0000 + 00504676 v 0101 | the chemical process in which a nitro group is added to an organic compound (or substituted for another group in an organic compound) -13522084 22 n 01 nitrogen_cycle 0 001 @ 13526110 n 0000 | the circulation of nitrogen; nitrates from the soil are absorbed by plants which are eaten by animals that die and decay returning the nitrogen back to the soil -13522305 22 n 01 nitrogen_fixation 0 001 @ 13526110 n 0000 | the assimilation of atmospheric nitrogen by soil bacteria and its release for plant use on the death of the bacteria -13522485 22 n 02 nocturia 0 nycturia 0 001 @ 13515958 n 0000 | excessive urination at night; especially common in older men -13522611 22 n 01 nocturnal_emission 0 002 @ 13471815 n 0000 #p 05769156 n 0000 | ejaculation during sleep (usually during a dream) -13522744 22 n 01 nondevelopment 0 003 @ 13526110 n 0000 ! 13489037 n 0104 ~ 13428308 n 0000 | failure of normal development to occur -13522879 22 n 01 nondisjunction 0 001 @ 13512725 n 0000 | meiosis in which there is a failure of paired homologous chromosomes to separate; results in an abnormal number of chromosomes in the daughter cells -13523088 22 n 01 nosedive 0 001 @ 13457378 n 0000 | a sudden sharp drop or rapid decline; "the stock took a nosedive" -13523208 22 n 01 nuclear_reaction 0 009 @ 13518963 n 0000 ;c 06090869 n 0000 ~ 13445624 n 0000 ~ 13456899 n 0000 ~ 13474615 n 0000 ~ 13477691 n 0000 ~ 13481224 n 0000 ~ 13485525 n 0000 ~ 13559509 n 0000 | (physics) a process that alters the energy or structure or composition of atomic nuclei -13523503 22 n 01 nucleosynthesis 0 002 @ 13565379 n 0000 ;c 06095022 n 0000 | (astronomy) the cosmic synthesis of atoms more complex than the hydrogen atom -13523661 22 n 01 nutrition 0 007 @ 13526110 n 0000 ;c 06080522 n 0000 + 03002351 a 0102 + 02557719 a 0105 + 03002351 a 0101 + 10012484 n 0103 + 01204191 v 0101 | (physiology) the organic process of nourishing or being nourished; the processes by which an organism assimilates food and uses it for growth and maintenance -13523983 22 n 01 obsolescence 0 003 @ 13460299 n 0000 + 00669367 a 0101 + 00567775 v 0101 | the process of becoming obsolete; falling into disuse or becoming out of date; "a policy of planned obsolescence" -13524191 22 n 01 oligomenorrhea 0 001 @ 13513747 n 0000 | abnormally light or infrequent menstruation -13524295 22 n 01 oliguria 0 001 @ 13515958 n 0000 | production of an abnormally small amount of urine -13524399 22 n 02 omission 0 deletion 0 005 @ 13508333 n 0000 ~ 13433061 n 0000 ~ 13433283 n 0000 ~ 13473536 n 0000 ~ 13473716 n 0000 | any process whereby sounds or words are left out of spoken words or phrases -13524612 22 n 01 oogenesis 0 001 @ 13486115 n 0000 | development of ova -13524686 22 n 01 opacification 0 002 @ 13518963 n 0000 + 00577500 v 0101 | the process of becoming cloudy or opaque -13524804 22 n 01 open-hearth_process 0 001 @ 13561396 n 0000 | a process for making steel using an open-hearth furnace -13524925 22 n 01 operation 0 021 @ 13455487 n 0000 ;c 06128570 n 0000 ~ 02671224 n 0000 ~ 13435377 n 0000 ~ 13436809 n 0000 ~ 13440935 n 0000 ~ 13450862 n 0000 ~ 13451204 n 0000 ~ 13452117 n 0000 ~ 13470392 n 0000 ~ 13481727 n 0000 ~ 13509042 n 0000 ~ 13517080 n 0000 ~ 13517717 n 0000 ~ 13532196 n 0000 ~ 13540791 n 0000 ~ 13553560 n 0000 ~ 13554800 n 0000 ~ 13558696 n 0000 ~ 13564501 n 0000 ~ 13567344 n 0000 | (computer science) data processing in which the result is completely specified by a rule (especially the processing that results from a single instruction); "it can perform millions of operations per second" -13525549 22 n 03 operation 1 functioning 0 performance 0 003 @ 00029677 n 0000 + 01525666 v 0201 + 01525666 v 0103 | process or manner of functioning or operating; "the power of its engine determines its operation"; "the plane's operation in high winds"; "they compared the cooking performance of each oven"; "the jet's performance conformed to high standards" -13525912 22 n 02 opsonization 0 opsonisation 0 003 @ 13440063 n 0000 + 00577839 v 0201 + 00577839 v 0101 | process whereby opsonins make an invading microorganism more susceptible to phagocytosis -13526110 22 n 02 organic_process 0 biological_process 0 084 @ 00029677 n 0000 ~ 13427078 n 0000 ~ 13428608 n 0000 ~ 13429006 n 0000 ~ 13432443 n 0000 ~ 13432903 n 0000 ~ 13434688 n 0000 ~ 13436503 n 0000 ~ 13437495 n 0000 ~ 13439390 n 0000 ~ 13440063 n 0000 ~ 13443228 n 0000 ~ 13443787 n 0000 ~ 13444703 n 0000 ~ 13454130 n 0000 ~ 13460034 n 0000 ~ 13462084 n 0000 ~ 13465809 n 0000 ~ 13470687 n 0000 ~ 13470868 n 0000 ~ 13471517 n 0000 ~ 13476111 n 0000 ~ 13476590 n 0000 ~ 13477023 n 0000 ~ 13478205 n 0000 ~ 13478813 n 0000 ~ 13486671 n 0000 ~ 13488498 n 0000 ~ 13489037 n 0000 ~ 13492453 n 0000 ~ 13493399 n 0000 ~ 13494192 n 0000 ~ 13495507 n 0000 ~ 13496286 n 0000 ~ 13500214 n 0000 ~ 13501941 n 0000 ~ 13502397 n 0000 ~ 13504497 n 0000 ~ 13504739 n 0000 ~ 13505249 n 0000 ~ 13505467 n 0000 ~ 13509383 n 0000 ~ 13509967 n 0000 ~ 13512238 n 0000 ~ 13514314 n 0000 ~ 13514880 n 0000 ~ 13522084 n 0000 ~ 13522305 n 0000 ~ 13522744 n 0000 ~ 13523661 n 0000 ~ 13527726 n 0000 ~ 13528750 n 0000 ~ 13530237 n 0000 ~ 13530989 n 0000 ~ 13532886 n 0000 ~ 13533470 n 0000 ~ 13534608 n 0000 ~ 13540610 n 0000 ~ 13544537 n 0000 ~ 13544783 n 0000 ~ 13548734 n 0000 ~ 13549105 n 0000 ~ 13549916 n 0000 ~ 13550318 n 0000 ~ 13550504 n 0000 ~ 13551965 n 0000 ~ 13553916 n 0000 ~ 13554121 n 0000 ~ 13555599 n 0000 ~ 13563139 n 0000 ~ 13563948 n 0000 ~ 13564045 n 0000 ~ 13565201 n 0000 ~ 13568238 n 0000 ~ 13568796 n 0000 ~ 13568983 n 0000 ~ 13569226 n 0000 ~ 13569464 n 0000 ~ 13569664 n 0000 ~ 13569774 n 0000 ~ 13570574 n 0000 ~ 13570783 n 0000 ~ 13572860 n 0000 ~ 13573181 n 0000 | a process occurring in living organisms -13527726 22 n 01 organification 0 001 @ 13526110 n 0000 | the process of organ formation -13527817 22 n 01 orogeny 0 001 @ 13486838 n 0000 | the process of mountain formation (especially by the upward displacement of the earth's crust) -13527965 22 n 01 oscillation 0 003 @ 13518963 n 0000 + 02706046 v 0104 ~ 13507617 n 0000 | the process of oscillating between states -13528100 22 n 01 osmosis 0 006 @ 13465530 n 0000 #p 00649760 n 0000 ;c 06037666 n 0000 ;c 06084469 n 0000 + 03000608 a 0101 ~ 13528441 n 0000 | (biology, chemistry) diffusion of molecules through a semipermeable membrane from a place of higher concentration to a place of lower concentration until the concentration on both sides is equal -13528441 22 n 01 reverse_osmosis 0 002 @ 13528100 n 0000 ;c 06084469 n 0000 | (chemistry) a method of producing pure water; a solvent passes through a semipermeable membrane in a direction opposite to that for natural osmosis when it is subjected to a hydrostatic pressure greater than the osmotic pressure -13528750 22 n 01 ossification 0 001 @ 13526110 n 0000 | the developmental process of bone formation -13528852 22 n 01 ossification 1 002 @ 13493998 n 0000 + 00418110 v 0102 | the process of becoming rigidly fixed in a conventional pattern of thought or behavior -13529015 22 n 01 ossification 2 003 @ 13442312 n 0000 + 00267365 v 0101 + 00267249 v 0101 | the calcification of soft tissue into a bonelike material -13529167 22 n 01 osteolysis 0 001 @ 13509528 n 0000 | lysis of bone caused by disease or infection or inadequate blood supply -13529295 22 n 03 outflow 0 effluence 0 efflux 0 004 @ 13482330 n 0000 ! 13499782 n 0302 + 01295837 a 0201 ! 13499782 n 0101 | the process of flowing out -13529450 22 n 01 overactivity 0 002 @ 13440063 n 0000 + 00033206 a 0102 | excessive activity; "overactivity of the sebaceous glands causes the skin to become oily" -13529616 22 n 01 overcompensation 0 003 @ 13450636 n 0000 ;c 06055946 n 0000 + 02672859 v 0103 | (psychiatry) an attempt to overcome a real or imagined defect or unwanted trait by overly exaggerating its opposite -13529831 22 n 01 overflow_incontinence 0 001 @ 13474858 n 0000 | urinary incontinence that occurs when the bladder is so full that it continually leaks urine; often attributable to a blocked urethra (e.g., due to prostate enlargement) or weak bladder muscles or nerve damage -13530108 22 n 01 overheating 0 004 @ 13491876 n 0000 + 00372501 v 0101 + 00370263 v 0101 ~ 13513362 n 0000 | excessive heating -13530237 22 n 01 ovulation 0 003 @ 13526110 n 0000 + 00062397 v 0101 ! 13432443 n 0101 | the expulsion of an ovum from the ovary (usually midway in the menstrual cycle) -13530408 22 n 03 oxidation 0 oxidization 0 oxidisation 0 011 @ 13447361 n 0000 + 00239321 v 0301 + 00238867 v 0302 + 00239321 v 0202 + 00238867 v 0201 + 00239321 v 0103 + 00238867 v 0103 ~ 13442476 n 0000 ~ 13450206 n 0000 ~ 13521616 n 0000 ~ 13552270 n 0000 | the process of oxidizing; the addition of oxygen to a compound with a loss of electrons; always occurs accompanied by reduction -13530799 22 n 03 oxidation-reduction 0 oxidoreduction 0 redox 0 001 @ 13447361 n 0000 | a reversible chemical reaction in which one reaction is an oxidation and the reverse is a reduction -13530989 22 n 01 oxidative_phosphorylation 0 002 @ 13526110 n 0000 #p 13505467 n 0000 | an enzymatic process in cell metabolism that synthesizes ATP from ADP -13531149 22 n 01 oxygenation 0 002 @ 13518963 n 0000 + 00185465 v 0101 | the process of providing or combining or treating with oxygen; "the oxygenation of the blood" -13531318 22 n 01 pachytene 0 002 @ 15290337 n 0000 #p 13542474 n 0000 | the third stage of the prophase of meiosis -13531435 22 n 03 pair_production 0 pair_creation 0 pair_formation 0 001 @ 13518963 n 0000 | the transformation of a gamma-ray photon into an electron and a positron when the photon passes close to an atomic nucleus -13531652 22 n 02 palingenesis 0 recapitulation 0 004 @ 13489037 n 0000 + 01735144 v 0201 + 02687434 a 0101 ! 13444940 n 0101 | emergence during embryonic development of various characters or structures that appeared during the evolutionary history of the strain or species -13531927 22 n 01 paper_chromatography 0 001 @ 13448778 n 0000 | chromatography that uses selective adsorption on a strip of paper -13532059 22 n 02 paper_electrophoresis 0 carrier_electrophoresis 0 001 @ 13472518 n 0000 | electrophoresis carried out on filter paper -13532196 22 n 02 parallel_operation 0 simultaneous_operation 0 002 @ 13524925 n 0000 ! 13554800 n 0101 | the simultaneous execution of two or more operations -13532356 22 n 01 parthenocarpy 0 002 @ 13433727 n 0000 ;c 06066555 n 0000 | (botany) the development of a fruit without fertilization or seeds -13532501 22 n 02 parthenogenesis 0 parthenogeny 0 004 @ 13433727 n 0000 + 02136158 a 0105 ~ 13431722 n 0000 ~ 13490487 n 0000 | process in which an unfertilized egg develops into a new individual; common among insects and some other arthropods -13532747 22 n 03 parthenogenesis 1 parthenogeny 1 virgin_birth 0 001 @ 13434120 n 0000 | human conception without fertilization by a man -13532886 22 n 04 parturition 0 birth 0 giving_birth 0 birthing 0 011 @ 13526110 n 0000 #p 13550318 n 0000 + 00056930 v 0204 ~ 13441812 n 0000 ~ 13442639 n 0000 ~ 13448334 n 0000 ~ 13479034 n 0000 ~ 13491464 n 0000 ~ 13506477 n 0000 ~ 14048441 n 0000 + 00360932 v 0201 | the process of giving birth -13533186 22 n 01 passive_transport 0 001 @ 13570236 n 0000 | transport of a substance across a cell membrane by diffusion; expenditure of energy is not required -13533349 22 n 01 pathogenesis 0 002 @ 13533470 n 0000 ~ 13482781 n 0000 | the origination and development of a disease -13533470 22 n 02 pathologic_process 0 pathological_process 0 006 @ 13526110 n 0000 ~ 13479605 n 0000 ~ 13498404 n 0000 ~ 13515353 n 0000 ~ 13520849 n 0000 ~ 13533349 n 0000 | an organic process occurring as a consequence of disease -13533704 22 n 01 peace_process 0 001 @ 13557451 n 0000 | any social process undertaken by governments who want their citizens to believe they are trying to avoid armed hostilities -13533886 22 n 04 peeing 0 pee 0 pissing 0 piss 0 006 @ 13515958 n 0000 ;u 07124340 n 0000 + 00072012 v 0406 + 00072012 v 0306 + 00072012 v 0207 + 00072012 v 0107 | informal terms for urination; "he took a pee" -13534098 22 n 02 peptization 0 peptisation 0 003 @ 13446390 n 0000 + 00330909 v 0202 + 00330909 v 0101 | the process of converting to a sol; bringing to a colloidal solution -13534274 22 n 02 percolation 0 infiltration 0 007 @ 13480667 n 0000 + 01913532 v 0201 + 01913707 v 0201 + 02071627 v 0102 + 01458464 v 0101 + 01458228 v 0101 + 01457954 v 0101 | the slow passage of a liquid through a filtering medium; "the percolation of rainwater through the soil"; "the infiltration of seawater through the lava" -13534608 22 n 01 perennation 0 003 @ 13526110 n 0000 ;c 00017222 n 0000 + 02618877 v 0101 | the process of living through a number of years (as a perennial plant) -13534773 22 n 02 peristalsis 0 vermiculation 0 002 @ 13440063 n 0000 ! 13431569 n 0101 | the process of wavelike muscle contractions of the alimentary tract that moves food along -13534954 22 n 03 permeation 0 pervasion 0 suffusion 0 010 @ 13465530 n 0000 + 00454651 v 0301 + 00454251 v 0301 + 01229071 v 0202 + 01227235 v 0102 + 01229071 v 0101 + 01457954 v 0103 ~ 13430262 n 0000 ~ 13442998 n 0000 ~ 13496517 n 0000 | the process of permeating or infusing something with a substance -13535261 22 n 05 perspiration 0 sweating 0 diaphoresis 0 sudation 0 hidrosis 0 007 @ 13440063 n 0000 + 02741943 a 0501 + 00067545 v 0402 + 02712125 a 0301 + 00067545 v 0201 + 00067545 v 0103 ~ 13495209 n 0000 | the process of the sweat glands of the skin secreting a salty fluid; "perspiration is a homeostatic process" -13535583 22 n 02 petrifaction 0 petrification 0 003 @ 13483726 n 0000 + 00507485 v 0202 + 00507485 v 0102 | the process of turning some plant material into stone by infiltration with water carrying mineral particles without changing the original shape -13535837 22 n 01 phagocytosis 0 001 @ 13440063 n 0000 | process in which phagocytes engulf and digest microorganisms and cellular debris; an important defense against infection -13536016 22 n 04 phase_change 0 phase_transition 0 state_change 0 physical_change 0 005 @ 13518963 n 0000 ~ 13484644 n 0000 ~ 13508651 n 0000 ~ 13566535 n 0000 ~ 13572436 n 0000 | a change from one state (solid or liquid or gas) to another without a change in chemical composition -13536299 22 n 01 phase_of_cell_division 0 008 @ 15290337 n 0000 ~ 13431380 n 0000 ~ 13515149 n 0000 ~ 13515251 n 0000 ~ 13542374 n 0000 ~ 13542474 n 0000 ~ 13565940 n 0000 ~ 13566041 n 0000 | a stage in meiosis or mitosis -13536523 22 n 01 photochemical_reaction 0 002 @ 13447361 n 0000 ~ 13508005 n 0000 | a chemical reaction produced by the action of light -13536661 22 n 01 photoelectric_emission 0 001 @ 13474290 n 0000 | the release or absorption of quanta above a certain energy level -13536794 22 n 01 photography 0 015 @ 00029677 n 0000 + 02838592 a 0101 + 03925226 n 0101 ~ 13430786 n 0000 ~ 13436361 n 0000 ~ 13466170 n 0000 ~ 13470015 n 0000 ~ 13537176 n 0000 ~ 13539585 n 0000 ~ 13545382 n 0000 ~ 13553083 n 0000 ~ 13573499 n 0000 -c 02138766 v 0000 -c 02139063 v 0000 -c 02139361 v 0000 | the process of producing images of objects on photosensitive surfaces -13537176 22 n 02 photomechanics 0 photoplate_making 0 002 @ 13536794 n 0000 + 02777355 a 0101 | the process whereby printing surfaces (plates or cylinders) are produced by photographic methods; "photomechanics revolutionized the practice of printing" -13537429 22 n 01 photosynthesis 0 004 @ 13446390 n 0000 ;c 00017222 n 0000 + 02777686 a 0101 %p 13508005 n 0000 | synthesis of compounds with the aid of radiant energy (especially in plants) -13537622 22 n 01 pigmentation 0 002 @ 13462191 n 0000 + 00287392 v 0101 | the deposition of pigment in animals or plants or human beings -13537761 22 n 01 pinocytosis 0 001 @ 13440063 n 0000 | process by which certain cells can engulf and incorporate droplets of fluid -13537894 22 n 03 pitting 0 roughness 0 indentation 0 003 @ 13453428 n 0000 + 01279631 v 0301 + 01551195 v 0104 | the formation of small pits in a surface as a consequence of corrosion -13538080 22 n 01 placentation 0 001 @ 13440063 n 0000 | the formation of the placenta in the uterus -13538182 22 n 01 planation 0 002 @ 13475538 n 0000 + 01307389 v 0101 | the process of erosion whereby a level surface is produced -13538314 22 n 01 plastination 0 006 @ 13540610 n 0000 + 02280647 v 0101 %p 00276342 n 0000 %p 13460568 n 0000 %p 13491060 n 0000 %p 13496517 n 0000 | a process involving fixation and dehydration and forced impregnation and hardening of biological tissues; water and lipids are replaced by curable polymers (silicone or epoxy or polyester) that are subsequently hardened; "the plastination of specimens is valuable for research and teaching" -13538757 22 n 02 polymerization 0 polymerisation 0 005 @ 13446390 n 0000 + 00266586 v 0202 + 00266197 v 0202 + 00266586 v 0101 + 00266197 v 0101 | a chemical process that combines several monomers to form a polymer or polymeric compound -13538996 22 n 01 population_growth 0 002 @ 13497135 n 0000 ~ 13539143 n 0000 | increase in the number of people who inhabit a territory or state -13539143 22 n 01 irruption 0 001 @ 13538996 n 0000 | a sudden sharp increase in the relative numbers of a population -13539262 22 n 02 positive_feedback 0 regeneration 1 003 @ 13479380 n 0000 + 00385189 v 0201 ~ 13573368 n 0000 | feedback in phase with (augmenting) the input -13539422 22 n 01 potentiation 0 003 @ 13564910 n 0000 ;c 06043075 n 0000 + 00229801 v 0101 | (medicine) the synergistic effect of two drugs given simultaneously -13539585 22 n 03 powder_photography 0 powder_method 0 powder_technique 0 001 @ 13536794 n 0000 | a process for identifying minerals or crystals; a small rod is coated with a powdered form of the substance and subjected to suitably modified X-rays; the pattern of diffracted rings is used for identification -13539894 22 n 01 precession_of_the_equinoxes 0 001 @ 13518963 n 0000 | a slow westward shift of the equinoxes along the plane of the ecliptic caused by precession of the Earth's axis of rotation -13540091 22 n 01 prechlorination 0 001 @ 13448622 n 0000 | chlorination prior to another chemical process -13540199 22 n 01 precipitation 0 002 @ 13446390 n 0000 + 00474994 v 0101 | the process of forming a chemical precipitate -13540322 22 n 01 precocious_dentition 0 001 @ 13565781 n 0000 | teething at an earlier age than expected -13540429 22 n 01 premature_ejaculation 0 001 @ 13471815 n 0000 | ejaculation during the early stages of sexual excitement or soon after the insertion of the penis into the vagina -13540610 22 n 01 preservation 0 005 @ 13526110 n 0000 ~ 00276342 n 0000 ~ 00820406 n 0000 ~ 13538314 n 0000 ~ 13548531 n 0000 | a process that saves organic substances from decay -13540791 22 n 01 printing_operation 0 004 @ 13524925 n 0000 ~ 13443537 n 0000 ~ 13508183 n 0000 ~ 13521444 n 0000 | an operation that controls the printing or display of information -13540975 22 n 01 priority_processing 0 003 @ 13455487 n 0000 ~ 13436992 n 0000 ~ 13483331 n 0000 | data processing in which the operations performed are determined by a system of priorities -13541167 22 n 01 processing 0 008 @ 00029677 n 0000 + 02438535 v 0101 + 00515154 v 0101 ~ 13439807 n 0000 ~ 13455487 n 0000 ~ 13464557 n 0000 ~ 13548105 n 0000 ~ 13573915 n 0000 | preparing or putting through a prescribed procedure; "the processing of newly arrived immigrants"; "the processing of ore to obtain minerals" -13541491 22 n 02 professionalization 0 professionalisation 0 003 @ 13557451 n 0000 + 00583523 v 0101 + 00583242 v 0101 | the social process whereby people come to engage in an activity for pay or as a means of livelihood; "the professionalization of American sports"; "the professionalization of warfare" -13541798 22 n 01 projection 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism by which your own traits and emotions are attributed to someone else -13541975 22 n 01 proliferation 0 003 @ 13489037 n 0000 + 00247830 v 0101 + 00310635 v 0101 | growth by the rapid multiplication of parts -13542114 22 n 01 proliferation 1 005 @ 13497135 n 0000 ! 01078572 n 0101 ! 01078572 n 0102 + 00247830 v 0101 + 00310635 v 0101 | a rapid increase in number (especially a rapid increase in the number of deadly weapons); "the proliferation of nuclear weapons" -13542374 22 n 01 prophase 1 002 @ 13536299 n 0000 #p 13516597 n 0000 | the first stage of mitosis -13542474 22 n 01 prophase 2 008 @ 13536299 n 0000 #p 13512725 n 0000 %p 13465264 n 0000 %p 13466449 n 0000 %p 13507336 n 0000 %p 13531318 n 0000 %p 13565201 n 0000 %p 13575109 n 0000 | the first stage of meiosis -13542688 22 n 01 proteolysis 0 002 @ 13446390 n 0000 + 03019114 a 0101 | the hydrolysis of proteins into peptides and amino acids by cleavage of their peptide bonds -13542855 22 n 01 psilosis 0 002 @ 13475205 n 0000 @ 13440063 n 0000 | falling out of hair -13542947 22 n 01 psychoanalytic_process 0 002 @ 13493998 n 0000 ~ 13459322 n 0000 | a process that is assumed to occur in psychoanalytic theory -13543093 22 n 01 psychogenesis 0 001 @ 13489037 n 0000 | a general term for the origin and development of almost any aspect of the mind -13543231 22 n 01 psychogenesis 1 001 @ 13489037 n 0000 | the development in the life of an individual of some disorder that is caused by psychological rather than physiological factors -13543418 22 n 01 psychomotor_development 0 001 @ 13489037 n 0000 | progressive acquisition of skills involving both mental and motor activities -13543564 22 n 01 psychosexual_development 0 002 @ 13489037 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the process during which personality and sexual behavior mature through a series of stages: first oral stage and then anal stage and then phallic stage and then latency stage and finally genital stage -13543871 22 n 01 ptyalism 0 002 @ 13552528 n 0000 + 00101956 v 0102 | excessive flow of saliva -13543968 22 n 01 pullulation 0 002 @ 13497135 n 0000 + 00246930 v 0101 | a rapid and abundant increase -13544073 22 n 02 pullulation 1 gemmation 0 002 @ 13434120 n 0000 + 00357332 v 0104 | asexual reproduction in which a local growth on the surface or in the body of the parent becomes a separate individual -13544279 22 n 02 pyrochemical_process 0 pyrochemistry 0 002 @ 13446390 n 0000 + 03105856 a 0201 | processes for chemical reactions at high temperatures -13544433 22 n 01 quadrupling 0 002 @ 13517843 n 0000 + 00247048 v 0101 | increase by a factor of four -13544537 22 n 02 quellung 0 quellung_reaction 0 001 @ 13526110 n 0000 | the swelling of the capsule surrounding a microorganism after reaction with an antibody; the basis of certain tests for identifying microorganisms; "pneumococcus quellung" -13544783 22 n 01 quickening 0 001 @ 13526110 n 0000 | the process of showing signs of life; "the quickening of seed that will become ripe grain" -13544930 22 n 01 quintupling 0 002 @ 13517843 n 0000 + 00247234 v 0101 | increasing by a factor of five -13545036 22 n 01 radiant_heating 0 001 @ 13491876 n 0000 | heating a building by radiation from panels containing hot water or electrical heaters -13545184 22 n 02 radiation 0 radioactivity 0 003 @ 13474290 n 0000 + 00426907 a 0201 ~ 11499510 n 0000 | the spontaneous emission of a stream of particles or electromagnetic rays in nuclear decay -13545382 22 n 02 radiography 0 skiagraphy 0 004 @ 13536794 n 0000 + 02837145 a 0101 + 10503965 n 0101 ~ 13436206 n 0000 | the process of making a radiograph; producing an image on a radiosensitive surface by radiation other than visible light -13545627 22 n 01 radiolysis 0 001 @ 13509528 n 0000 | molecular disintegration resulting from radiation -13545733 22 n 01 rain-wash 0 001 @ 13574193 n 0000 | the washing away of soil or other loose material by rain -13545845 22 n 01 rally 0 002 @ 13452347 n 0000 + 00528608 v 0101 | a marked recovery of strength or spirits during an illness -13545973 22 n 01 random_walk 0 001 @ 13561896 n 0000 | a stochastic process consisting of a sequence of changes each of whose characteristics (as magnitude or direction) is determined by chance -13546169 22 n 02 rationalization 0 rationalisation 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism by which your true motivation is concealed by explaining your actions and feelings in a way that is not threatening -13546416 22 n 01 reaction_formation 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism in which a person unconsciously develops attitudes and behavior that are the opposite of unacceptable repressed desires and impulses and serve to conceal them; "his strict morality is just a reaction formation to hide his sexual drive" -13546768 22 n 02 Read_method_of_childbirth 0 Read_method 0 001 @ 13518656 n 0000 | a method of natural childbirth that assumes it is a normal process and that the pain is largely psychological; involves education and breathing exercises to foster relaxation and other exercises -13547048 22 n 02 real-time_processing 0 real-time_operation 0 001 @ 13455487 n 0000 | data processing fast enough to keep up with an outside process -13547199 22 n 01 rectification 0 003 @ 13548105 n 0000 ;c 06084469 n 0000 + 00474492 v 0102 | (chemistry) the process of refinement or purification of a substance by distillation -13547380 22 n 01 redeposition 0 003 @ 13462191 n 0000 + 02311135 v 0101 + 01576001 v 0101 | deposition from one deposit to another -13547513 22 n 01 reducing 1 002 @ 13509196 n 0000 + 00045817 v 0101 | loss of excess weight (as by dieting); becoming slimmer; "a doctor supervised her reducing" -13547677 22 n 02 reduction 0 reducing 0 002 @ 13447361 n 0000 + 00237877 v 0203 | any process in which electrons are added to an atom or ion (as by removing oxygen or adding hydrogen); always occurs accompanied by oxidation of the reducing agent -13547925 22 n 04 refilling 0 replenishment 0 replacement 0 renewal 0 003 @ 13480541 n 0000 + 00453803 v 0201 + 00453803 v 0102 | filling again by supplying what has been used up -13548105 22 n 03 refining 0 refinement 0 purification 0 006 @ 13541167 n 0000 + 00475183 v 0301 + 00474762 v 0201 + 00474492 v 0201 + 00474492 v 0101 ~ 13547199 n 0000 | the process of removing impurities (as from oil or metals or sugar etc.) -13548350 22 n 01 reflation 0 003 @ 13498828 n 0000 + 00563360 v 0101 + 00563100 v 0101 | inflation of currency after a period of deflation; restore the system to a previous state -13548531 22 n 02 refrigeration 0 infrigidation 0 004 @ 13453160 n 0000 @ 13540610 n 0000 + 00371955 v 0101 + 00371051 v 0101 | the process of cooling or freezing (e.g., food) for preservative purposes -13548734 22 n 01 regeneration 0 005 @ 13526110 n 0000 ;c 06037666 n 0000 + 00168393 v 0101 + 00097941 v 0101 ~ 13517385 n 0000 | (biology) growth anew of lost tissue or destroyed parts or organs -13548931 22 n 01 regression 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) a defense mechanism in which you flee from reality by assuming a more infantile state -13549105 22 n 01 regulation 0 002 @ 13526110 n 0000 ;c 06071426 n 0000 | (embryology) the ability of an early embryo to continue normal development after its structure has been somehow damaged or altered -13549311 22 n 02 relaxation 0 relaxation_behavior 0 002 @ 13478055 n 0000 ;c 06090869 n 0000 | (physics) the exponential return of a system to equilibrium after a disturbance -13549488 22 n 01 relaxation 1 004 @ 13497135 n 0000 ;c 06080522 n 0000 + 00419685 v 0101 + 00026385 v 0101 | (physiology) the gradual lengthening of inactive muscle or muscle fibers -13549672 22 n 01 release 0 004 @ 13518963 n 0000 + 00069295 v 0102 + 00104868 v 0105 ~ 13474290 n 0000 | a process that liberates or discharges something; "there was a sudden release of oxygen"; "the release of iodine from the thyroid gland" -13549916 22 n 01 replication 0 003 @ 13526110 n 0000 ;c 06075527 n 0000 + 01734929 v 0101 | (genetics) the process whereby DNA makes a copy of itself before cell division -13550089 22 n 01 repression 0 002 @ 13459322 n 0000 ;c 06055946 n 0000 | (psychiatry) the classical defense mechanism that protects you from impulses or ideas that would cause anxiety by preventing them from becoming conscious -13550318 22 n 01 reproduction 0 006 @ 13526110 n 0000 ;c 06037666 n 0000 + 00055142 v 0101 ~ 13434120 n 0000 %p 13532886 n 0000 ~ 13555240 n 0000 | the process of generating offspring -13550504 22 n 02 resorption 0 reabsorption 0 003 @ 13526110 n 0000 + 01539913 v 0201 + 01539913 v 0102 | the organic process in which the substance of some differentiated structure that has been produced by the body undergoes lysis and assimilation -13550755 22 n 01 reticulation 0 003 @ 13483488 n 0000 ;c 00903559 n 0000 + 01585142 v 0101 | (photography) the formation of a network of cracks or wrinkles in a photographic emulsion -13550940 22 n 01 retrieval 0 003 @ 13450862 n 0000 ;c 06128570 n 0000 ~ 13551117 n 0000 | (computer science) the operation of accessing information from the computer's memory -13551117 22 n 01 stovepiping 0 001 @ 13550940 n 0000 | retrieval of information from unconnected databases; the situation that exists when it is necessary to climb out of one database in order to climb down into another; sometimes used for protection against wandering hackers -13551396 22 n 02 reuptake 0 re-uptake 0 001 @ 13571580 n 0000 | a process of using up or consuming again; "psychopharmacologists discovered that amine reuptake is a process that inactivates monoamine neurotransmitters" -13551617 22 n 01 reversible_process 0 002 @ 00029677 n 0000 ! 13503226 n 0101 | any process in which a system can be made to pass through the same states in the reverse order when the process is reversed -13551823 22 n 01 rigor_mortis 0 001 @ 13561521 n 0000 | muscular stiffening that begins 2 to 4 hours after death and lasts for about 4 days -13551965 22 n 03 ripening 1 aging 1 ageing 1 002 @ 13526110 n 0000 ~ 13513222 n 0000 | acquiring desirable qualities by being left undisturbed for some time -13552124 22 n 01 rooting 0 003 @ 13489037 n 0000 + 00358314 v 0101 + 00358135 v 0101 | the process of putting forth roots and beginning to grow -13552270 22 n 02 rust 0 rusting 0 006 @ 13453428 n 0000 @ 13530408 n 0000 + 00239614 v 0101 + 00274283 v 0103 + 00273963 v 0102 %s 14865800 n 0000 | the formation of reddish-brown ferric oxides on iron by low-temperature oxidation in the presence of water -13552528 22 n 01 salivation 0 003 @ 13553916 n 0000 + 00102791 v 0101 ~ 13543871 n 0000 | the secretion of saliva -13552644 22 n 01 saltation 0 003 @ 13518963 n 0000 ;c 06115701 n 0000 + 01965654 v 0101 | (geology) the leaping movement of sand or soil particles as they are transported in a fluid medium over an uneven surface -13552858 22 n 01 saponification 0 003 @ 13447361 n 0000 + 00538852 v 0101 + 00538571 v 0101 | a chemical reaction in which an ester is heated with an alkali (especially the alkaline hydrolysis of a fat or oil to make soap) -13553083 22 n 01 scanning 0 002 @ 13536794 n 0000 + 01855447 v 0101 | the process of translating photographs into a digital form that can be recognized by a computer -13553251 22 n 01 scattering 0 002 @ 13518963 n 0000 #p 13478342 n 0000 | the physical process in which particles are deflected haphazardly as a result of collisions -13553418 22 n 01 schizogony 0 001 @ 13481408 n 0000 | asexual reproduction by multiple fission; characteristic of many sporozoan protozoans -13553560 22 n 02 search 0 lookup 0 001 @ 13524925 n 0000 | an operation that determines whether one or more of a set of items has a specified property; "they wrote a program to do a table lookup" -13553758 22 n 01 secondary_emission 0 001 @ 13474290 n 0000 | the emission of electrons from a surface that is bombarded by higher energy primary electrons -13553916 22 n 02 secretion 0 secernment 0 005 @ 13526110 n 0000 + 00069295 v 0101 ~ 13485890 n 0000 ~ 13495333 n 0000 ~ 13552528 n 0000 | the organic process of synthesizing and releasing some substance -13554121 22 n 01 segregation 0 003 @ 13526110 n 0000 #p 13512725 n 0000 ;c 06075527 n 0000 | (genetics) the separation of paired alleles during meiosis so that members of each pair of alleles appear in different gametes -13554343 22 n 02 sensitization 0 sensitisation 0 003 @ 00029677 n 0000 ;c 06136258 n 0000 + 00272391 v 0101 | (psychology) the process of becoming highly sensitive to specific events or situations (especially emotional events or situations) -13554586 22 n 01 sequestration 0 002 @ 13446390 n 0000 + 00579367 v 0101 | the action of forming a chelate or other stable compound with an ion or atom or molecule so that it is no longer available for reactions -13554800 22 n 03 serial_operation 0 sequential_operation 0 consecutive_operation 0 002 @ 13524925 n 0000 ! 13532196 n 0101 | the sequential execution of operations one after another -13554984 22 n 01 serial_processing 0 001 @ 13455487 n 0000 | sequential processing by two or more processing units -13555101 22 n 01 sericulture 0 003 @ 13518963 n 0000 + 03116224 a 0101 + 10581772 n 0101 | raising silkworms in order to obtain raw silk -13555240 22 n 02 sexual_reproduction 0 amphimixis 0 004 @ 13550318 n 0000 %m 07373481 n 0000 ~ 13432249 n 0000 ~ 13503513 n 0000 | reproduction involving the union or fusion of a male and a female gamete -13555446 22 n 02 shaping 0 defining 0 003 @ 00029677 n 0000 + 02736778 v 0201 + 00701040 v 0102 | any process serving to define the shape of something -13555599 22 n 02 shedding 0 sloughing 0 005 @ 13526110 n 0000 + 00009147 v 0205 + 00009147 v 0101 ~ 13423779 n 0000 ~ 13516842 n 0000 | the process whereby something is shed -13555775 22 n 02 shit 0 dump 0 003 @ 13459088 n 0000 + 00074038 v 0103 + 00841986 v 0107 | a coarse term for defecation; "he took a shit" -13555915 22 n 01 sink 0 004 @ 13518963 n 0000 ;c 06125041 n 0000 ! 13558953 n 0101 ~ 03510244 n 0000 | (technology) a process that acts to absorb or remove energy or a substance from a system; "the ocean is a sink for carbon dioxide" -13556151 22 n 01 sinking_spell 0 001 @ 13457378 n 0000 | a temporary decline in health or value -13556249 22 n 01 slippage 0 001 @ 13458571 n 0000 | a decrease of transmitted power in a mechanical system caused by slipping -13556377 22 n 01 slippage 1 002 @ 13457378 n 0000 + 00204391 v 0101 | decline from a standard level of performance or achievement -13556509 22 n 05 slump 0 slack 0 drop-off 0 falloff 0 falling_off 0 008 @ 13464204 n 0000 + 00432839 v 0402 + 00148472 v 0401 + 00204391 v 0302 + 00245289 v 0203 + 00440580 v 0204 + 00441212 v 0201 + 00432839 v 0101 | a noticeable deterioration in performance or quality; "the team went into a slump"; "a gradual slack in output"; "a drop-off in attendance"; "a falloff in quality" -13556893 22 n 02 smoke 0 smoking 0 004 @ 13572436 n 0000 + 02767922 v 0202 + 02233927 a 0101 + 02767922 v 0102 | a hot vapor containing fine particles of carbon being produced by combustion; "the fire produced a tower of black smoke that could be seen for miles" -13557158 22 n 03 soak 0 soakage 0 soaking 0 005 @ 13518963 n 0000 + 01578513 v 0301 + 01578513 v 0201 + 00456151 v 0101 + 01578513 v 0101 | the process of becoming softened and saturated as a consequence of being immersed in water (or other liquid); "a good soak put life back in the wagon" -13557451 22 n 01 social_process 0 012 @ 13493998 n 0000 ~ 13434878 n 0000 ~ 13448970 n 0000 ~ 13457181 n 0000 ~ 13461722 n 0000 ~ 13463656 n 0000 ~ 13510946 n 0000 ~ 13520426 n 0000 ~ 13533704 n 0000 ~ 13541491 n 0000 ~ 13560911 n 0000 ~ 13571763 n 0000 | a process involved in the formation of groups of persons -13557766 22 n 01 softening 0 004 @ 13518963 n 0000 + 00255389 v 0101 + 00254867 v 0101 ~ 13510152 n 0000 | the process of becoming softer; "refrigeration delayed the softening of the fruit"; "he observed the softening of iron by heat" -13558003 22 n 01 soil_erosion 0 002 @ 13475538 n 0000 ~ 13574193 n 0000 | the washing away of soil by the flow of water -13558125 22 n 01 solvation 0 003 @ 13435152 n 0000 + 00446695 v 0101 + 00446514 v 0101 | a chemical process in which solvent molecules and molecules or ions of the solute combine to form a compound -13558325 22 n 01 Solvay_process 0 001 @ 13497928 n 0000 | an industrial process for producing sodium carbonate from sodium chloride and ammonia and carbon dioxide -13558490 22 n 01 sorption 0 004 @ 13518963 n 0000 + 01540449 v 0101 ~ 13423922 n 0000 ~ 13427789 n 0000 | the process in which one substance takes up or holds another (by either absorption or adsorption) -13558696 22 n 02 sort 0 sorting 0 004 @ 13524925 n 0000 + 00654625 v 0203 + 00654625 v 0103 + 02400378 v 0104 | an operation that segregates items into groups according to a specified criterion; "the bottleneck in mail delivery is the process of sorting" -13558953 22 n 01 source 0 004 @ 13518963 n 0000 ;c 06125041 n 0000 ! 13555915 n 0101 ~ 13559177 n 0000 | (technology) a process by which energy or a substance enters a system; "a heat source"; "a source of carbon dioxide" -13559177 22 n 01 origin 0 001 @ 13558953 n 0000 | the source of something's existence or from which it derives or is derived; "the rumor had its origin in idle gossip"; "vegetable origins"; "mineral origin"; "origin in sensation" -13559409 22 n 01 souring 0 002 @ 13560417 n 0000 + 00458471 v 0101 | the process of becoming sour -13559509 22 n 01 spallation 0 002 @ 13523208 n 0000 ;c 06090869 n 0000 | (physics) a nuclear reaction in which a bombarded nucleus breaks up into many particles; "some astronomers believe that the solar system was formed by spallation when the sun was a very young star" -13559782 22 n 03 specialization 0 specialisation 0 differentiation 0 005 @ 13427078 n 0000 ;c 06037666 n 0000 + 00119524 v 0301 + 00119266 v 0204 + 00119266 v 0103 | (biology) the structural adaptation of some body part for a particular function; "cell differentiation in the developing embryo" -13560079 22 n 01 speciation 0 002 @ 13477023 n 0000 + 00119266 v 0101 | the evolution of a biological species -13560191 22 n 01 spiral 0 003 @ 13471206 n 0000 ~ 13499393 n 0000 ~ 13499590 n 0000 | a continuously accelerating change in the economy -13560329 22 n 01 spermatogenesis 0 001 @ 13486115 n 0000 | development of spermatozoa -13560417 22 n 02 spoilage 0 spoiling 0 005 @ 13456715 n 0000 + 00210259 v 0201 + 00210259 v 0101 ~ 13516176 n 0000 ~ 13559409 n 0000 | the process of becoming spoiled -13560586 22 n 01 spontaneous_combustion 0 001 @ 13495873 n 0000 | ignition of a substance (as oily rags) resulting from an internal oxidation process -13560738 22 n 01 stagflation 0 002 @ 13498828 n 0000 + 02802220 a 0101 | a period of slow economic growth and high unemployment (stagnation) while prices rise (inflation) -13560911 22 n 02 Stalinization 0 Stalinisation 0 003 @ 13557451 n 0000 + 00569087 v 0202 + 00569087 v 0101 | social process of adopting (or being forced to adopt) the policies and practices of Joseph Stalin; "many Hungarians refused to take part in the Stalinization of their country" -13561198 22 n 01 stationary_stochastic_process 0 001 @ 13561896 n 0000 | a stochastic process in which the distribution of the random variables is the same for any value of the variable parameter -13561396 22 n 01 steel_production 0 003 @ 00912960 n 0000 ~ 13438223 n 0000 ~ 13524804 n 0000 | making steel from pig iron -13561521 22 n 03 stiffening 0 rigidifying 0 rigidification 0 005 @ 13518963 n 0000 + 00418408 v 0301 + 00418408 v 0201 + 00417596 v 0101 ~ 13551823 n 0000 | the process of becoming stiff or rigid -13561719 22 n 01 stimulation 0 004 @ 13518963 n 0000 ;c 06080522 n 0000 ~ 13426376 n 0000 ~ 13485968 n 0000 | (physiology) the effect of a stimulus (on nerves or organs etc.) -13561896 22 n 01 stochastic_process 0 004 @ 05890249 n 0000 ~ 13511507 n 0000 ~ 13545973 n 0000 ~ 13561198 n 0000 | a statistical process involving a number of random variables depending on a variable parameter (which is usually time) -13562133 22 n 01 storage 0 003 @ 13450862 n 0000 ;c 06128570 n 0000 ~ 13484303 n 0000 | (computer science) the process of storing information in a computer memory or on a magnetic tape or disk -13562328 22 n 01 stratification 0 004 @ 13486838 n 0000 + 01308681 v 0101 + 00506952 v 0101 ~ 13483061 n 0000 | forming or depositing in layers -13562474 22 n 01 stress_incontinence 0 001 @ 13474858 n 0000 | urinary incontinence that occurs when involuntary pressure is put on the bladder by coughing or laughing or sneezing or lifting or straining -13562680 22 n 01 subduction 0 001 @ 13486838 n 0000 | a geological process in which one edge of a crustal plate is forced sideways and downward into the mantle below another plate -13562862 22 n 02 succession 0 ecological_succession 0 002 @ 13518963 n 0000 ;c 06070929 n 0000 | (ecology) the gradual and orderly process of change in an ecosystem brought about by the progressive replacement of one community by another until a stable climax is established -13563139 22 n 01 summation 0 003 @ 13526110 n 0000 ;c 06080522 n 0000 + 00049683 a 0101 | (physiology) the process whereby multiple stimuli can produce a response (in a muscle or nerve or other part) that one stimulus alone does not produce -13563382 22 n 01 superposition 0 002 @ 13462191 n 0000 ;c 06115701 n 0000 | (geology) the deposition of one geological stratum on another -13563522 22 n 01 supply 0 003 @ 13471206 n 0000 + 02479323 v 0102 ! 13461162 n 0101 | offering goods and services for sale -13563647 22 n 01 suppression 0 001 @ 13489037 n 0000 | the failure to develop some part or organ -13563746 22 n 04 survival 0 survival_of_the_fittest 0 natural_selection 0 selection 0 001 @ 13518963 n 0000 | a natural process resulting in the evolution of organisms best adapted to the environment -13563948 22 n 01 symphysis 0 001 @ 13526110 n 0000 | a growing together of parts or structures -13564045 22 n 01 synapsis 0 002 @ 13526110 n 0000 #p 13507336 n 0000 | the side by side pairing of homologous maternal and paternal chromosomes at the start of meiosis -13564215 22 n 01 syncretism 0 008 @ 13485767 n 0000 + 02807775 a 0103 + 02807775 a 0101 + 02807775 a 0102 + 02807478 a 0102 + 02807775 a 0104 + 02807478 a 0104 + 00553616 v 0101 | the fusion of originally different inflected forms (resulting in a reduction in the use of inflections) -13564501 22 n 01 synchronous_operation 0 002 @ 13524925 n 0000 ! 13435377 n 0101 | operations that are initiated predictably by a clock -13564639 22 n 02 syneresis 0 synaeresis 0 001 @ 13446390 n 0000 | the separation of liquid from a gel that is caused by contraction (as in cheese making) -13564795 22 n 02 syneresis 1 synaeresis 1 001 @ 13508333 n 0000 | the contraction of two vowels into a diphthong -13564910 22 n 02 synergy 0 synergism 0 006 @ 13518963 n 0000 + 00620341 a 0202 + 00623356 a 0201 + 04376259 n 0201 + 00620341 a 0101 ~ 13539422 n 0000 | the working together of two things (muscles or drugs for example) to produce an effect greater than the sum of their individual effects -13565201 22 n 02 synizesis 0 synezesis 0 002 @ 13526110 n 0000 #p 13542474 n 0000 | the contraction of chromatin towards one side of the nucleus during the prophase of meiosis -13565379 22 n 01 synthesis 0 006 @ 13446390 n 0000 + 00112628 a 0102 + 00644066 v 0102 ~ 13438817 n 0000 ~ 13448179 n 0000 ~ 13523503 n 0000 | the process of producing a chemical compound (usually by the union of simpler chemical compounds) -13565622 22 n 01 tanning 0 002 @ 13440063 n 0000 + 00103875 v 0101 | process in which skin pigmentation darkens as a result of exposure to ultraviolet light -13565781 22 n 03 teething 0 dentition 0 odontiasis 0 003 @ 13489037 n 0000 + 00095990 v 0101 ~ 13540322 n 0000 | the eruption through the gums of baby teeth -13565940 22 n 01 telophase 1 002 @ 13536299 n 0000 #p 13516597 n 0000 | the final stage of mitosis -13566041 22 n 01 telophase 2 002 @ 13536299 n 0000 #p 13512725 n 0000 | the final stage of meiosis when the chromosomes move toward opposite ends of the nuclear spindle -13566212 22 n 01 temperature_change 0 006 @ 13518963 n 0000 ~ 13427989 n 0000 ~ 13449450 n 0000 ~ 13452614 n 0000 ~ 13453160 n 0000 ~ 13491876 n 0000 | a process whereby the degree of hotness of a body (or medium) changes -13566436 22 n 01 teratogenesis 0 001 @ 13489037 n 0000 | the development of defects in an embryo -13566535 22 n 04 thaw 0 melt 0 thawing 0 melting 0 008 @ 13491876 n 0000 @ 13536016 n 0000 + 00444629 v 0401 + 00376106 v 0406 + 00376106 v 0302 + 00376106 v 0206 + 00444629 v 0201 + 00376106 v 0102 | the process whereby heat changes something from a solid to a liquid; "the power failure caused a refrigerator melt that was a disaster"; "the thawing of a frozen turkey takes several hours" -13566928 22 n 02 thermionic_emission 0 thermal_emission 0 001 @ 13474290 n 0000 | the emission of electrons from very hot substances -13567063 22 n 01 thermocoagulation 0 001 @ 13454479 n 0000 | congealing tissue by heat (as by electric current) -13567177 22 n 01 thermonuclear_reaction 0 002 @ 13485525 n 0000 ~ 13443120 n 0000 | a nuclear fusion reaction taking place at very high temperatures (as in the sun) -13567344 22 n 01 threshold_operation 0 002 @ 13524925 n 0000 ~ 13510638 n 0000 | an operation performed on operands in order to obtain the value of a threshold function -13567515 22 n 01 thrombolysis 0 001 @ 13509528 n 0000 | the process of breaking up and dissolving blood clots -13567627 22 n 01 top_fermentation 0 001 @ 13575433 n 0000 | a violent kind of alcoholic fermentation at a temperature high enough to carry the yeast cells to the top of the fermenting liquid; used in the production of ale; "top fermentation uses a yeast that ferments at higher temperatures than that used for bottom fermentation" -13567960 22 n 01 transamination 0 002 @ 13446390 n 0000 + 00580142 v 0101 | the process of transfering an amino group from one compound to another -13568109 22 n 01 transamination 1 001 @ 13446390 n 0000 | the process of transposing an amino group within a chemical compound -13568238 22 n 01 transcription 0 003 @ 13526110 n 0000 ;c 06075527 n 0000 + 00556389 v 0101 | (genetics) the organic process whereby the DNA sequence in a gene is copied into mRNA; the process whereby a base sequence of messenger RNA is synthesized on a template of complementary DNA -13568524 22 n 01 transduction 0 003 @ 13518963 n 0000 + 00162549 v 0101 ~ 13515828 n 0000 | the process whereby a transducer accepts energy in one form and gives back related energy in a different form; "the transduction of acoustic waves into voltages by a microphone" -13568796 22 n 01 transduction 1 002 @ 13526110 n 0000 ;c 06075527 n 0000 | (genetics) the process of transfering genetic material from one cell to another by a plasmid or bacteriophage -13568983 22 n 01 translation 0 003 @ 13526110 n 0000 ;c 06075527 n 0000 + 00919608 v 0101 | (genetics) the process whereby genetic information coded in messenger RNA directs the formation of a specific protein at a ribosome in the cytoplasm -13569226 22 n 02 protein_folding 0 folding 0 001 @ 13526110 n 0000 | the process whereby a protein molecule assumes its intricate three-dimensional shape; "understanding protein folding is the next step in deciphering the genetic code" -13569464 22 n 01 translocation 0 003 @ 13526110 n 0000 ;c 06075527 n 0000 + 02362323 v 0101 | (genetics) an exchange of chromosome parts; "translocations can result in serious congenital disorders" -13569664 22 n 01 translocation 1 001 @ 13526110 n 0000 | the transport of dissolved material within a plant -13569774 22 n 01 transpiration 0 002 @ 13526110 n 0000 + 00367563 v 0101 | the emission of water vapor from the leaves of plants -13569905 22 n 01 transpiration 1 002 @ 13518963 n 0000 + 02066757 v 0101 | the passage of gases through fine tubes because of differences in pressure or temperature -13570072 22 n 01 transpiration 2 002 @ 13440063 n 0000 + 00068740 v 0101 | the process of giving off or exhaling water vapor through the skin or mucous membranes -13570236 22 n 01 transport 0 003 @ 13465530 n 0000 ~ 13426726 n 0000 ~ 13533186 n 0000 | an exchange of molecules (and their kinetic energy and momentum) across the boundary between adjacent layers of a fluid or across cell membranes -13570472 22 n 01 tripling 0 002 @ 13517843 n 0000 + 00246746 v 0101 | increase by a factor of three -13570574 22 n 01 tumefaction 0 003 @ 13526110 n 0000 + 00257837 v 0101 + 00256507 v 0104 | the process of tumefying; the organic process whereby tissue becomes swollen by the accumulation of fluid within it -13570783 22 n 01 ulceration 0 002 @ 13526110 n 0000 + 00537153 v 0101 | the process of ulcer formation; the process of becoming ulcerated -13570923 22 n 01 ultracentrifugation 0 002 @ 13445296 n 0000 + 02047500 v 0101 | centrifugation at very high speeds -13571041 22 n 01 underdevelopment 0 003 @ 13464557 n 0000 ;c 00903559 n 0000 + 02139063 v 0101 | (photography) inadequate processing of film resulting in inadequate contrast -13571217 22 n 02 unfolding 0 flowering 1 002 @ 13464820 n 0000 + 00293760 v 0104 | a developmental process; "the flowering of antebellum culture" -13571365 22 n 02 union 0 conglutination 0 003 @ 13491616 n 0000 + 01600191 v 0202 + 01221542 v 0201 | healing process involving the growing together of the edges of a wound or the growing together of broken bones -13571580 22 n 01 uptake 0 002 @ 13493998 n 0000 ~ 13551396 n 0000 | a process of taking up or using up or consuming; "they developed paper napkins with a greater uptake of liquids" -13571763 22 n 02 urbanization 0 urbanisation 0 003 @ 13557451 n 0000 + 00499812 v 0202 + 00499812 v 0101 | the social process whereby cities grow and societies become more urban -13571943 22 n 01 urge_incontinence 0 001 @ 13474858 n 0000 | urinary incontinence that is generally attributable to involuntary contracts of the bladder muscle resulting in an urgent need to urinate accompanied by a sudden loss of urine; most common in people over 60 years of age -13572226 22 n 02 urochesia 0 urochezia 0 001 @ 13459088 n 0000 | passage of urine from the anus -13572324 22 n 01 variation 0 002 @ 00029677 n 0000 ~ 06032752 n 0000 | the process of varying or being varied -13572436 22 n 05 vaporization 0 vaporisation 0 vapor 0 vapour 0 evaporation 0 017 @ 13536016 n 0000 + 00575970 v 0501 + 00575720 v 0501 + 00575970 v 0301 + 00575720 v 0301 + 00366858 v 0301 + 00366858 v 0302 + 00442267 v 0302 + 00366858 v 0303 + 00442267 v 0303 + 00366858 v 0203 + 00442267 v 0203 + 00366858 v 0102 + 00442267 v 0102 ~ 13440779 n 0000 ~ 13449566 n 0000 ~ 13556893 n 0000 | the process of becoming a vapor -13572860 22 n 02 vascularization 0 vascularisation 0 003 @ 13526110 n 0000 + 00581671 v 0101 + 00122097 v 0101 | the organic process whereby body tissue becomes vascular and develops capillaries -13573057 22 n 01 vegetation 0 003 @ 13489037 n 0000 + 00232388 v 0101 + 00232225 v 0101 | the process of growth in plants -13573181 22 n 03 vesiculation 0 vesication 0 blistering 0 004 @ 13526110 n 0000 + 00379774 v 0202 + 00581038 v 0101 + 00580865 v 0101 | the formation of vesicles in or beneath the skin -13573368 22 n 02 vicious_circle 0 vicious_cycle 0 001 @ 13539262 n 0000 | one trouble leads to another that aggravates the first -13573499 22 n 01 video_digitizing 0 002 @ 13536794 n 0000 ~ 13468786 n 0000 | the process of capturing and converting and storing video images for use by a computer -13573666 22 n 01 vinification 0 002 @ 13575433 n 0000 + 00459114 v 0101 | the process whereby fermentation changes grape juice into wine -13573805 22 n 01 vitrification 0 002 @ 13518963 n 0000 + 00537759 v 0101 | the process of becoming vitreous -13573915 22 n 02 vulcanization 0 vulcanisation 0 005 @ 13541167 n 0000 + 00516932 v 0202 + 00538043 v 0202 + 00516932 v 0101 + 00538043 v 0101 | process of treating rubber or rubberlike materials with sulphur at great heat to improve elasticity and strength or to harden them -13574193 22 n 02 washout 0 wash 0 003 @ 13558003 n 0000 + 01605851 v 0101 ~ 13545733 n 0000 | the erosive process of washing away soil or gravel by water (as from a roadway); "from the house they watched the washout of their newly seeded lawn by the water" -13574452 22 n 01 wastage 0 004 @ 13458571 n 0000 + 00389992 v 0102 + 00389406 v 0101 + 00093775 v 0101 | the process of wasting -13574582 22 n 02 Westernization 0 Westernisation 0 001 @ 13434878 n 0000 | assimilation of Western culture; the social process of becoming familiar with or converting to the customs and practices of Western civilization -13574804 22 n 02 widening 0 broadening 0 003 @ 13497135 n 0000 + 00303465 v 0101 ! 13518563 n 0101 | an increase in width -13574928 22 n 01 word_processing 0 002 @ 13455487 n 0000 ;c 06677302 n 0000 | rapid and efficient processing (storage and printing) of linguistic data for composition and editing -13575109 22 n 01 zygotene 0 002 @ 15290337 n 0000 #p 13542474 n 0000 | the second stage of the prophase of meiosis -13575226 22 n 01 zymosis 0 004 @ 13498404 n 0000 ;c 06043075 n 0000 + 03000341 a 0101 ~ 14176895 n 0000 | (medicine) the development and spread of an infectious disease (especially one caused by a fungus) -13575433 22 n 05 zymosis 1 zymolysis 0 fermentation 0 fermenting 0 ferment 0 011 @ 13446390 n 0000 + 00458754 v 0501 + 00458471 v 0503 + 00458754 v 0401 + 00458754 v 0301 + 00458471 v 0303 + 03000447 a 0202 + 03000447 a 0101 ~ 13441154 n 0000 ~ 13567627 n 0000 ~ 13573666 n 0000 | a process in which an agent causes an organic substance to break down into simpler substances; especially, the anaerobic breakdown of sugar into alcohol -13575869 23 n 02 fundamental_quantity 0 fundamental_measure 0 005 @ 00033615 n 0000 ~ 05011790 n 0000 ~ 05024254 n 0000 ~ 05129201 n 0000 ~ 15113229 n 0000 | one of the four quantities that are the basis of systems of measurement -13576101 23 n 01 definite_quantity 0 010 @ 00033615 n 0000 ~ 13581465 n 0000 ~ 13581598 n 0000 ~ 13581871 n 0000 ~ 13582013 n 0000 ~ 13583030 n 0000 ~ 13583137 n 0000 ~ 13583272 n 0000 ~ 13583478 n 0000 ~ 13583724 n 0000 | a specific measure of amount -13576355 23 n 01 indefinite_quantity 0 031 @ 00033615 n 0000 ~ 13754293 n 0000 ~ 13754778 n 0000 ~ 13754948 n 0000 ~ 13755053 n 0000 ~ 13755822 n 0000 ~ 13755957 n 0000 ~ 13756125 n 0000 ~ 13757249 n 0000 ~ 13757582 n 0000 ~ 13757724 n 0000 ~ 13758296 n 0000 ~ 13758556 n 0000 ~ 13758745 n 0000 ~ 13759146 n 0000 ~ 13759428 n 0000 ~ 13759773 n 0000 ~ 13760129 n 0000 ~ 13760316 n 0000 ~ 13763806 n 0000 ~ 13763888 n 0000 ~ 13763970 n 0000 ~ 13764086 n 0000 ~ 13764213 n 0000 ~ 13764342 n 0000 ~ 13769672 n 0000 ~ 13772106 n 0000 ~ 13772313 n 0000 ~ 13772468 n 0000 ~ 13772653 n 0000 ~ 13777344 n 0000 | an estimated quantity -13576982 23 n 01 relative_quantity 0 006 @ 00033615 n 0000 ~ 13580415 n 0000 ~ 13580909 n 0000 ~ 13581067 n 0000 ~ 13581218 n 0000 ~ 13740168 n 0000 | a quantity relative to some purpose -13577171 23 n 02 system_of_measurement 0 metric 0 012 @ 00033615 n 0000 ~ 07260623 n 0000 ~ 13577544 n 0000 ~ 13579166 n 0000 ~ 13579287 n 0000 ~ 13580058 n 0000 ~ 13610046 n 0000 ~ 13610987 n 0000 ~ 13617713 n 0000 ~ 13648947 n 0000 ~ 13715755 n 0000 ~ 13852395 n 0000 | a system of related measures that facilitates the quantification of some particular characteristic -13577544 23 n 01 system_of_weights_and_measures 0 004 @ 13577171 n 0000 ~ 13577731 n 0000 ~ 13577934 n 0000 ~ 13578830 n 0000 | system of measurement for length and weight and duration -13577731 23 n 03 British_Imperial_System 0 English_system 0 British_system 0 002 @ 13577544 n 0000 %p 13716084 n 0000 | a system of weights and measures based on the foot and pound and second and pint -13577934 23 n 01 metric_system 0 004 @ 13577544 n 0000 ~ 13578140 n 0000 ~ 13578267 n 0000 %p 13717155 n 0000 | a decimal system of weights and measures based on the meter and the kilogram and the second -13578140 23 n 02 cgs 0 cgs_system 0 001 @ 13577934 n 0000 | system of measurement based on centimeters and grams and seconds -13578267 23 n 07 Systeme_International_d'Unites 0 Systeme_International 0 SI_system 0 SI 0 SI_unit 0 International_System_of_Units 0 International_System 0 001 @ 13577934 n 0000 | a complete metric system of units of measurement for scientists; fundamental quantities are length (meter) and mass (kilogram) and time (second) and electric current (ampere) and temperature (kelvin) and amount of matter (mole) and luminous intensity (candela); "Today the United States is the only country in the world not totally committed to the Systeme International d'Unites" -13578830 23 n 01 United_States_Customary_System 0 001 @ 13577544 n 0000 | the system of weights and measures based on the foot and pound and second and pint that dates back to colonial America but differs in some respects from the British Imperial System; today in the United States this system exists side by side with the SI system -13579166 23 n 01 point_system 0 001 @ 13577171 n 0000 | a system of graduating sizes of type in multiples of the point -13579287 23 n 01 information_measure 0 004 @ 13577171 n 0000 ~ 05091527 n 0000 ~ 13579510 n 0000 ~ 13579679 n 0000 | a system of measurement of information based on the probabilities of the events that convey information -13579510 23 n 01 bandwidth 0 001 @ 13579287 n 0000 | a data transmission rate; the maximum amount of information (bits/second) that can be transmitted along a channel -13579679 23 n 02 baud 0 baud_rate 0 002 @ 13579287 n 0000 ;c 06128570 n 0000 | (computer science) a data transmission rate (bits/second) for modems -13579829 23 n 01 cordage 0 001 @ 00033615 n 0000 | the amount of wood in an area as measured in cords -13579933 23 n 02 octane_number 0 octane_rating 0 001 @ 00033615 n 0000 | a measure of the antiknock properties of gasoline -13580058 23 n 01 utility 0 003 @ 13577171 n 0000 ;c 06149484 n 0000 ~ 13580228 n 0000 | (economics) a measure that is to be maximized in any situation involving choice -13580228 23 n 01 marginal_utility 0 002 @ 13580058 n 0000 ;c 06149484 n 0000 | (economics) the amount that utility increases with an increase of one unit of an economic good or service -13580415 23 n 02 enough 0 sufficiency 0 005 @ 13576982 n 0000 + 02335828 a 0201 + 02669789 v 0201 + 02336109 a 0103 ~ 13580723 n 0000 | an adequate quantity; a quantity that is large enough to achieve a purpose; "enough is as good as a feast"; "there is more than a sufficiency of lawyers in this country" -13580723 23 n 01 fill 0 003 @ 13580415 n 0000 + 01193721 v 0104 + 01183573 v 0103 | a quantity sufficient to satisfy; "he ate his fill of potatoes"; "she had heard her fill of gossip" -13580909 23 n 02 normality 0 N 0 002 @ 13576982 n 0000 ;c 14589223 n 0000 | (of a solution) concentration expressed in gram equivalents of solute per liter -13581067 23 n 02 majority 0 absolute_majority 0 003 @ 13576982 n 0000 ;c 00181781 n 0000 + 01471002 a 0101 | (elections) more than half of the votes -13581218 23 n 02 plurality 0 relative_majority 0 002 @ 13576982 n 0000 ;c 00181781 n 0000 | (in an election with more than 2 options) the number of votes for the candidate or party receiving the greatest number (but less that half of the votes) -13581465 23 n 02 absolute_value 0 numerical_value 0 002 @ 13576101 n 0000 ~ 13730377 n 0000 | a real number regardless of its sign -13581598 23 n 01 acid_value 0 002 @ 13576101 n 0000 ;c 06084469 n 0000 | (chemistry) the amount of free acid present in fat as measured by the milligrams of potassium hydroxide needed to neutralize it; "as the glycerides in fat slowly decompose the acid value increases" -13581871 23 n 01 chlorinity 0 001 @ 13576101 n 0000 | a measure of the quantity of chlorine or other halides in water (especially seawater) -13582013 23 n 01 number 0 049 @ 13576101 n 0000 + 02769933 a 0102 + 00235918 v 0101 + 00948071 v 0102 + 00946755 v 0101 + 00948853 v 0101 + 02645007 v 0102 ~ 05857974 n 0000 ~ 06010930 n 0000 ~ 06258680 n 0000 ~ 13585309 n 0000 ~ 13585429 n 0000 ~ 13591314 n 0000 ~ 13591586 n 0000 ~ 13591761 n 0000 ~ 13593219 n 0000 ~ 13593908 n 0000 ~ 13594005 n 0000 ~ 13594417 n 0000 ~ 13594585 n 0000 ~ 13596986 n 0000 ~ 13597147 n 0000 ~ 13597280 n 0000 ~ 13597585 n 0000 ~ 13597794 n 0000 ~ 13598013 n 0000 ~ 13598128 n 0000 ~ 13598715 n 0000 ~ 13599114 n 0000 ~ 13599348 n 0000 ~ 13713408 n 0000 ~ 13728367 n 0000 ~ 13728499 n 0000 ~ 13728818 n 0000 ~ 13728924 n 0000 ~ 13729031 n 0000 ~ 13729135 n 0000 ~ 13729236 n 0000 ~ 13729428 n 0000 ~ 13731021 n 0000 ~ 13731241 n 0000 ~ 13731356 n 0000 ~ 13731669 n 0000 ~ 13732953 n 0000 ~ 13733167 n 0000 ~ 13733316 n 0000 ~ 13733663 n 0000 ~ 13733818 n 0000 ~ 13733979 n 0000 | a concept of quantity involving zero and units; "every number has a unique position in the sequence" -13583030 23 n 01 quire 0 002 @ 13576101 n 0000 #p 13583137 n 0000 | a quantity of paper; 24 or 25 sheets -13583137 23 n 01 ream 0 002 @ 13576101 n 0000 %p 13583030 n 0000 | a quantity of paper; 480 or 500 sheets; one ream equals 20 quires -13583272 23 n 01 solubility 0 003 @ 13576101 n 0000 ;c 14589223 n 0000 + 02265015 a 0101 | the quantity of a particular substance that can dissolve in a particular solvent (yielding a saturated solution) -13583478 23 n 01 toxicity 0 003 @ 13576101 n 0000 + 02449430 a 0101 ~ 13583611 n 0000 | the degree to which something is poisonous -13583611 23 n 01 cytotoxicity 0 001 @ 13583478 n 0000 | the degree to which something is toxic to living cells -13583724 23 n 02 unit_of_measurement 0 unit 0 038 @ 13576101 n 0000 + 02468793 v 0201 + 00368109 v 0201 ~ 13584646 n 0000 ~ 13584746 n 0000 ~ 13584918 n 0000 ~ 13585127 n 0000 ~ 13599871 n 0000 ~ 13599982 n 0000 ~ 13600097 n 0000 ~ 13600404 n 0000 ~ 13600822 n 0000 ~ 13601596 n 0000 ~ 13602526 n 0000 ~ 13602922 n 0000 ~ 13603065 n 0000 ~ 13603305 n 0000 ~ 13604275 n 0000 ~ 13604572 n 0000 ~ 13604718 n 0000 ~ 13607187 n 0000 ~ 13607405 n 0000 ~ 13607616 n 0000 ~ 13607873 n 0000 ~ 13607985 n 0000 ~ 13608207 n 0000 ~ 13608319 n 0000 ~ 13608480 n 0000 ~ 13608598 n 0000 ~ 13608788 n 0000 ~ 13609214 n 0000 ~ 13609390 n 0000 ~ 13609507 n 0000 ~ 13609871 n 0000 ~ 13609948 n 0000 ~ 13610162 n 0000 ~ 13625237 n 0000 ~ 13635698 n 0000 | any division of quantity accepted as a standard of measurement or exchange; "the dollar is the United States unit of currency"; "a unit of wheat is a bushel"; "change per unit volume" -13584646 23 n 02 measuring_unit 0 measuring_block 0 001 @ 13583724 n 0000 | a unit of measurement -13584746 23 n 01 denier 0 001 @ 13583724 n 0000 | a unit of measurement for the fineness of silk or nylon or rayon; "with an evening dress one wears 10 denier stockings" -13584918 23 n 02 diopter 0 dioptre 0 001 @ 13583724 n 0000 | a unit of measurement of the refractive power of a lens which is equal to the reciprocal of the focal length measured in meters; used by oculists -13585127 23 n 03 karat 0 carat 2 kt 0 001 @ 13583724 n 0000 | the unit of measurement for the proportion of gold in an alloy; 18-karat gold is 75% gold; 24-karat gold is pure gold -13585309 23 n 01 decimal 1 003 @ 13582013 n 0000 + 00530592 v 0101 + 00530592 v 0102 | a number in the decimal system -13585429 23 n 01 constant 0 012 @ 13582013 n 0000 ~ 13585819 n 0000 ~ 13585997 n 0000 ~ 13586122 n 0000 ~ 13589546 n 0000 ~ 13589681 n 0000 ~ 13590079 n 0000 ~ 13590327 n 0000 ~ 13590598 n 0000 ~ 13590974 n 0000 ~ 13593634 n 0000 ~ 15284285 n 0000 | a number representing a quantity assumed to have a fixed value in a specified mathematical context; "the velocity of light is a constant" -13585819 23 n 02 Avogadro's_number 0 Avogadro_number 0 001 @ 13585429 n 0000 | the number of molecules in a mole of a substance (approximately 602,250,000,000,000,000,000,000) -13585997 23 n 01 Boltzmann's_constant 0 001 @ 13585429 n 0000 | constant used in the calculation of the ideal gas constant -13586122 23 n 01 coefficient 0 012 @ 13585429 n 0000 ~ 13586455 n 0000 ~ 13586831 n 0000 ~ 13587030 n 0000 ~ 13587236 n 0000 ~ 13587525 n 0000 ~ 13587763 n 0000 ~ 13588625 n 0000 ~ 13588819 n 0000 ~ 13589003 n 0000 ~ 13589140 n 0000 ~ 13589321 n 0000 | a constant number that serves as a measure of some property or characteristic -13586455 23 n 03 absorption_coefficient 0 coefficient_of_absorption 0 absorptance 0 001 @ 13586122 n 0000 | a measure of the rate of decrease in the intensity of electromagnetic radiation (as light) as it passes through a given substance; the fraction of incident radiant energy absorbed per unit mass or thickness of an absorber; "absorptance equals 1 minus transmittance" -13586831 23 n 02 drag_coefficient 0 coefficient_of_drag 0 001 @ 13586122 n 0000 | the ratio of the drag on a body moving through air to the product of the velocity and the surface area of the body -13587030 23 n 01 coefficient_of_friction 0 001 @ 13586122 n 0000 | the ratio of the weight of an object being moved along a surface and the force that maintains contact between the object and the surface -13587236 23 n 02 coefficient_of_mutual_induction 0 mutual_inductance 0 001 @ 13586122 n 0000 | a measure of the induction between two circuits; the ratio of the electromotive force in a circuit to the corresponding change of current in a neighboring circuit; usually measured in henries -13587525 23 n 02 coefficient_of_self_induction 0 self-inductance 0 001 @ 13586122 n 0000 | the ratio of the electromotive force produced in a circuit by self-induction to the rate of change of current producing it, expressed in henries -13587763 23 n 01 modulus 0 003 @ 13586122 n 0000 ;c 06090869 n 0000 ~ 13587963 n 0000 | (physics) a coefficient that expresses how much of a specified property is possessed by a specified substance -13587963 23 n 03 coefficient_of_elasticity 0 modulus_of_elasticity 0 elastic_modulus 0 005 @ 13587763 n 0000 ;c 06090869 n 0000 ~ 13588233 n 0000 ~ 13588381 n 0000 ~ 13588497 n 0000 | (physics) the ratio of the applied stress to the change in shape of an elastic body -13588233 23 n 01 bulk_modulus 0 001 @ 13587963 n 0000 | the ratio of the change in pressure acting on a volume to the fractional change in volume -13588381 23 n 01 modulus_of_rigidity 0 001 @ 13587963 n 0000 | the coefficient of elasticity for a shearing force -13588497 23 n 01 Young's_modulus 0 001 @ 13587963 n 0000 | a coefficient of elasticity applicable to the stretching of a wire -13588625 23 n 02 coefficient_of_expansion 0 expansivity 0 001 @ 13586122 n 0000 | the fractional change in length or area or volume per unit change in temperature at a given constant pressure -13588819 23 n 04 coefficient_of_reflection 0 reflection_factor 0 reflectance 0 reflectivity 0 001 @ 13586122 n 0000 | the fraction of radiant energy that is reflected from a surface -13589003 23 n 02 transmittance 0 transmission 0 001 @ 13586122 n 0000 | the fraction of radiant energy that passes through a substance -13589140 23 n 03 coefficient_of_viscosity 0 absolute_viscosity 0 dynamic_viscosity 0 001 @ 13586122 n 0000 | a measure of the resistance to flow of a fluid under an applied force -13589321 23 n 02 weight 2 weighting 0 003 @ 13586122 n 0000 ;c 06018465 n 0000 + 00680485 v 0103 | (statistics) a coefficient assigned to elements of a frequency distribution in order to represent their relative importance -13589546 23 n 01 cosmological_constant 0 001 @ 13585429 n 0000 | an arbitrary constant in the equations of general relativity theory -13589681 23 n 01 equilibrium_constant 0 003 @ 13585429 n 0000 ;c 06084469 n 0000 ~ 13589957 n 0000 | (chemistry) the ratio of concentrations when equilibrium is reached in a reversible reaction (when the rate of the forward reaction equals the rate of the reverse reaction) -13589957 23 n 01 dissociation_constant 0 001 @ 13589681 n 0000 | the equilibrium constant for a reversible dissociation -13590079 23 n 03 gas_constant 0 universal_gas_constant 0 R 1 002 @ 13585429 n 0000 ;c 06090869 n 0000 | (physics) the universal constant in the gas equation: pressure times volume = R times temperature; equal to 8.3143 joules per kelvin per mole -13590327 23 n 04 gravitational_constant 0 universal_gravitational_constant 0 constant_of_gravitation 0 G 8 003 @ 13585429 n 0000 #p 05881867 n 0000 ;c 06090869 n 0000 | (physics) the universal constant relating force to mass and distance in Newton's law of gravitation -13590598 23 n 04 Hubble's_constant 0 Hubble_constant 0 Hubble's_parameter 0 Hubble_parameter 0 002 @ 13585429 n 0000 ;c 06098195 n 0000 | (cosmology) the ratio of the speed of recession of a galaxy (due to the expansion of the universe) to its distance from the observer; the Hubble constant is not actually a constant, but is regarded as measuring the expansion rate today -13590974 23 n 01 ionic_charge 0 001 @ 13585429 n 0000 | the charge on an ion is equal to a constant charge e multiplied by an integer from 1 to 15 -13591123 23 n 02 Planck's_constant 0 h 1 001 @ 13593634 n 0000 | the constant of proportionality relating the energy of a photon to its frequency; approximately 6.626 x 10^-34 joule-second -13591314 23 n 02 oxidation_number 0 oxidation_state 0 001 @ 13582013 n 0000 | the degree of oxidation of an atom or ion or molecule; for simple atoms or ions the oxidation number is equal to the ionic charge; "the oxidation number of hydrogen is +1 and of oxygen is -2" -13591586 23 n 01 cardinality 0 002 @ 13582013 n 0000 ;c 06000644 n 0000 | (mathematics) the number of elements in a set or group (considered as a property of that grouping) -13591761 23 n 01 count 0 009 @ 13582013 n 0000 ~ 13591998 n 0000 ~ 13592105 n 0000 ~ 13592219 n 0000 ~ 13592384 n 0000 ~ 13592598 n 0000 ~ 13592764 n 0000 ~ 13592871 n 0000 ~ 13593065 n 0000 | the total number counted; "a blood count" -13591998 23 n 01 complement 0 001 @ 13591761 n 0000 | a complete number or quantity; "a full complement" -13592105 23 n 01 blood_count 0 001 @ 13591761 n 0000 | the number of red and white corpuscles in a blood sample -13592219 23 n 01 body_count 0 001 @ 13591761 n 0000 | a count of troops killed in an operation or time period; "the daily body count increased as the war went on" -13592384 23 n 01 circulation 0 002 @ 13591761 n 0000 + 02043190 v 0101 | number of copies of a newspaper or magazine that are sold; "by increasing its circulation the newspaper hoped to increase its advertising" -13592598 23 n 01 circulation 1 002 @ 13591761 n 0000 ;c 06170892 n 0000 | (library science) the count of books that are loaned by a library over a specified period -13592764 23 n 02 head_count 0 headcount 0 001 @ 13591761 n 0000 | number of people in a particular group -13592871 23 n 01 pollen_count 0 001 @ 13591761 n 0000 | the number of pollen grains (usually ragweed) in a standard volume of air over a twenty-four hour period and a specified time and place -13593065 23 n 01 sperm_count 0 001 @ 13591761 n 0000 | the number of sperm in an ejaculate; "the sperm count is used as an indicator of male fertility" -13593219 23 n 01 factor 1 006 @ 13582013 n 0000 + 00640385 v 0101 + 00733250 v 0101 ~ 13257792 n 0000 ~ 13593438 n 0000 ~ 13593634 n 0000 | any of the numbers (or symbols) that form a product when multiplied together -13593438 23 n 01 conversion_factor 0 001 @ 13593219 n 0000 | factor by which a quantity that is expressed in one set of units must be multiplied in order to convert it into another set of units -13593634 23 n 02 factor_of_proportionality 0 constant_of_proportionality 0 003 @ 13593219 n 0000 @ 13585429 n 0000 ~ 13591123 n 0000 | the constant value of the ratio of two proportional quantities x and y; usually written y = kx, where k is the factor of proportionality -13593908 23 n 01 Fibonacci_number 0 001 @ 13582013 n 0000 | a number in the Fibonacci sequence -13594005 23 n 02 prime 0 prime_quantity 0 002 @ 13582013 n 0000 ~ 13594302 n 0000 | a number that has no factor but itself and 1 -13594136 23 n 01 prime_factor 0 001 @ 13733402 n 0000 | the prime factors of a quantity are all of the prime quantities that will exactly divide the given quantity -13594302 23 n 01 prime_number 0 001 @ 13594005 n 0000 | an integer that has no integral factors but itself and 1 -13594417 23 n 01 composite_number 0 001 @ 13582013 n 0000 | an integer that is divisible without remainder by at least one positive integer other than itself and one -13594585 23 n 01 score 0 020 @ 13582013 n 0000 + 01111816 v 0101 ~ 00187056 n 0000 ~ 00188341 n 0000 ~ 00189476 n 0000 ~ 00190338 n 0000 ~ 13595094 n 0000 ~ 13595276 n 0000 ~ 13595414 n 0000 ~ 13595550 n 0000 ~ 13595699 n 0000 ~ 13595844 n 0000 ~ 13595968 n 0000 ~ 13596106 n 0000 ~ 13596235 n 0000 ~ 13596422 n 0000 ~ 13596569 n 0000 ~ 13596673 n 0000 ~ 13596756 n 0000 %p 13610162 n 0000 | a number that expresses the accomplishment of a team or an individual in a game or contest; "the score was 7 to 0" -13595094 23 n 01 stroke 0 002 @ 13594585 n 0000 ;c 00464894 n 0000 | (golf) the unit of scoring in golf is the act of hitting the ball with a club; "Nicklaus won by three strokes" -13595276 23 n 01 birdie 0 003 @ 13594585 n 0000 ;c 00464894 n 0000 + 01598507 v 0101 | (golf) a score of one stroke under par on a hole -13595414 23 n 01 bogey 0 003 @ 13594585 n 0000 ;c 00464894 n 0000 + 01598921 v 0101 | (golf) a score of one stroke over par on a hole -13595550 23 n 01 deficit 0 003 @ 13594585 n 0000 ;c 00523513 n 0000 ! 13596422 n 0101 | (sports) the score by which a team or individual is losing -13595699 23 n 01 double-bogey 0 003 @ 13594585 n 0000 ;c 00464894 n 0000 + 01598785 v 0101 | (golf) a score of two strokes over par for a hole -13595844 23 n 02 duck 0 duck's_egg 0 002 @ 13594585 n 0000 ;c 00476389 n 0000 | (cricket) a score of nothing by a batsman -13595968 23 n 01 eagle 0 003 @ 13594585 n 0000 ;c 00464894 n 0000 + 01113134 v 0101 | (golf) a score of two strokes under par on a hole -13596106 23 n 01 double_eagle 0 002 @ 13594585 n 0000 ;c 00464894 n 0000 | (golf) a score of three strokes under par on a hole -13596235 23 n 01 game 0 002 @ 13594585 n 0000 ;c 00455599 n 0000 | (games) the score at a particular point or the score needed to win; "the game is 6 all"; "he is serving for the game" -13596422 23 n 01 lead 0 003 @ 13594585 n 0000 ;c 00523513 n 0000 ! 13595550 n 0101 | (sports) the score by which a team or individual is winning -13596569 23 n 01 love 0 001 @ 13594585 n 0000 | a score of zero in tennis or squash; "it was 40 love" -13596673 23 n 01 match 0 001 @ 13594585 n 0000 | the score needed to win a match -13596756 23 n 01 par 0 003 @ 13594585 n 0000 ;c 00464894 n 0000 + 01084331 v 0101 | (golf) the standard number of strokes set for each hole on a golf course, or for the entire course; "a par-5 hole"; "par for this course is 72" -13596986 23 n 01 record 0 001 @ 13582013 n 0000 | the number of wins versus losses and ties a team has had; "at 9-0 they have the best record in their league" -13597147 23 n 01 compound_number 0 001 @ 13582013 n 0000 | a quantity expressed in two different units; "one hour and ten minutes" -13597280 23 n 03 ordinal_number 0 ordinal 0 no. 0 003 @ 13582013 n 0000 + 02200035 a 0201 ~ 13597444 n 0000 | the number designating place in an ordered sequence -13597444 23 n 03 first 0 number_one 0 number_1 0 001 @ 13597280 n 0000 | the first element in a countable series; "the first of the month" -13597585 23 n 02 cardinal_number 0 cardinal 0 004 @ 13582013 n 0000 ~ 13598237 n 0000 ~ 13598408 n 0000 ~ 13598556 n 0000 | the number of elements in a mathematical set; denotes a quantity but not the order -13597794 23 n 02 base 0 radix 0 002 @ 13582013 n 0000 ;c 06809074 n 0000 | (numeration system) the positive integer that is equivalent to one in the next higher counting place; "10 is the radix of the decimal system" -13598013 23 n 01 floating-point_number 0 001 @ 13582013 n 0000 | a number represented in floating-point notation -13598128 23 n 01 fixed-point_number 0 001 @ 13582013 n 0000 | a number represented in fixed-point notation -13598237 23 n 02 frequency 0 absolute_frequency 0 003 @ 13597585 n 0000 + 00486990 a 0101 + 01066542 a 0101 | the number of observations in a given statistical category -13598408 23 n 01 googol 0 001 @ 13597585 n 0000 | a cardinal number represented as 1 followed by 100 zeros (ten raised to the power of a hundred) -13598556 23 n 01 googolplex 0 001 @ 13597585 n 0000 | a cardinal number represented as 1 followed by a googol of zeros (ten raised to the power of a googol) -13598715 23 n 01 atomic_number 0 002 @ 13582013 n 0000 ~ 13598960 n 0000 | the order of an element in Mendeleyev's table of the elements; equal to the number of protons in the nucleus or electrons in the neutral state of an atom of an element -13598960 23 n 01 magic_number 0 001 @ 13598715 n 0000 | the atomic number of an extra stable strongly bound atomic nucleus: 2, 8, 20, 28, 50, 82 or 126 -13599114 23 n 01 baryon_number 0 001 @ 13582013 n 0000 | a number equal to the difference between the number of baryons and the number of antibaryons in any subatomic structure; it is conserved in all types of particle interactions -13599348 23 n 01 quota 0 001 @ 13582013 n 0000 | a prescribed number; "all the salesmen met their quota for the month" -13599469 23 n 01 long_measure 0 001 @ 13603305 n 0000 | a measure of length -13599547 23 n 02 magnetization 0 magnetisation 0 004 @ 00033615 n 0000 + 00777522 v 0101 + 00399788 v 0101 ~ 13599730 n 0000 | the extent or degree to which something is magnetized -13599730 23 n 01 magnetic_flux 0 002 @ 13599547 n 0000 ~ 13634033 n 0000 | a measure of the strength of a magnetic field over a given area -13599871 23 n 01 absorption_unit 0 002 @ 13583724 n 0000 ~ 13610815 n 0000 | a unit for measuring absorption -13599982 23 n 01 acceleration_unit 0 002 @ 13583724 n 0000 ~ 13648793 n 0000 | a unit for measuring acceleration -13600097 23 n 01 angular_unit 0 013 @ 13583724 n 0000 ~ 13611082 n 0000 ~ 13611207 n 0000 ~ 13611395 n 0000 ~ 13611567 n 0000 ~ 13611740 n 0000 ~ 13611884 n 0000 ~ 13612042 n 0000 ~ 13612319 n 0000 ~ 13612427 n 0000 ~ 13612550 n 0000 ~ 13612688 n 0000 ~ 13612791 n 0000 | a unit of measurement for angles -13600404 23 n 02 area_unit 0 square_measure 0 018 @ 13583724 n 0000 ~ 13612943 n 0000 ~ 13613060 n 0000 ~ 13613177 n 0000 ~ 13613294 n 0000 ~ 13613408 n 0000 ~ 13613592 n 0000 ~ 13613742 n 0000 ~ 13613862 n 0000 ~ 13613985 n 0000 ~ 13614143 n 0000 ~ 13614256 n 0000 ~ 13614467 n 0000 ~ 13614572 n 0000 ~ 13614679 n 0000 ~ 13712689 n 0000 ~ 13713003 n 0000 ~ 13713300 n 0000 | a system of units used to measure areas -13600822 23 n 08 volume_unit 0 capacity_unit 0 capacity_measure 0 cubage_unit 0 cubic_measure 0 cubic_content_unit 0 displacement_unit 0 cubature_unit 0 019 @ 13583724 n 0000 #p 13779032 n 0000 ~ 13601370 n 0000 ~ 13601483 n 0000 ~ 13602401 n 0000 ~ 13614764 n 0000 ~ 13615036 n 0000 ~ 13616054 n 0000 ~ 13616688 n 0000 ~ 13616926 n 0000 ~ 13617046 n 0000 ~ 13617207 n 0000 ~ 13617308 n 0000 ~ 13617468 n 0000 ~ 13617630 n 0000 ~ 13617835 n 0000 ~ 13617952 n 0000 ~ 13618076 n 0000 ~ 13618180 n 0000 | a unit of measurement of volume or capacity -13601370 23 n 02 cubic_inch 0 cu_in 0 001 @ 13600822 n 0000 | the volume equal to a cube one inch on each side -13601483 23 n 02 cubic_foot 0 cu_ft 0 001 @ 13600822 n 0000 | the volume equal to a cube one foot on each side -13601596 23 n 01 computer_memory_unit 0 040 @ 13583724 n 0000 ~ 13625884 n 0000 ~ 13626013 n 0000 ~ 13626240 n 0000 ~ 13626464 n 0000 ~ 13626942 n 0000 ~ 13627114 n 0000 ~ 13627327 n 0000 ~ 13627516 n 0000 ~ 13627681 n 0000 ~ 13627810 n 0000 ~ 13627935 n 0000 ~ 13628056 n 0000 ~ 13628246 n 0000 ~ 13628419 n 0000 ~ 13628592 n 0000 ~ 13628761 n 0000 ~ 13628955 n 0000 ~ 13629132 n 0000 ~ 13629309 n 0000 ~ 13629482 n 0000 ~ 13629676 n 0000 ~ 13629854 n 0000 ~ 13630036 n 0000 ~ 13630213 n 0000 ~ 13630387 n 0000 ~ 13630545 n 0000 ~ 13630707 n 0000 ~ 13630864 n 0000 ~ 13631037 n 0000 ~ 13631194 n 0000 ~ 13631355 n 0000 ~ 13631512 n 0000 ~ 13631687 n 0000 ~ 13631845 n 0000 ~ 13632007 n 0000 ~ 13632164 n 0000 ~ 13632320 n 0000 ~ 13632461 n 0000 ~ 13632606 n 0000 | a unit for measuring computer memory -13602401 23 n 01 cord 0 002 @ 13600822 n 0000 + 01503841 v 0101 | a unit of amount of wood cut for burning; 128 cubic feet -13602526 23 n 02 electromagnetic_unit 0 emu 0 015 @ 13583724 n 0000 ~ 13632744 n 0000 ~ 13632961 n 0000 ~ 13633229 n 0000 ~ 13633375 n 0000 ~ 13633596 n 0000 ~ 13633704 n 0000 ~ 13633851 n 0000 ~ 13634205 n 0000 ~ 13634418 n 0000 ~ 13634615 n 0000 ~ 13634784 n 0000 ~ 13635108 n 0000 ~ 13635336 n 0000 ~ 13635553 n 0000 | any of various systems of units for measuring electricity and magnetism -13602922 23 n 01 explosive_unit 0 003 @ 13583724 n 0000 ~ 13647215 n 0000 ~ 13647353 n 0000 | any unit for measuring the force of explosions -13603065 23 n 01 force_unit 0 009 @ 13583724 n 0000 ~ 13647498 n 0000 ~ 13647667 n 0000 ~ 13647888 n 0000 ~ 13647997 n 0000 ~ 13648184 n 0000 ~ 13648378 n 0000 ~ 13648596 n 0000 ~ 13720302 n 0000 | a unit of measurement of physical force -13603305 23 n 02 linear_unit 0 linear_measure 0 049 @ 13583724 n 0000 ~ 13599469 n 0000 ~ 13649054 n 0000 ~ 13649268 n 0000 ~ 13649626 n 0000 ~ 13649791 n 0000 ~ 13650045 n 0000 ~ 13650225 n 0000 ~ 13650447 n 0000 ~ 13650735 n 0000 ~ 13650921 n 0000 ~ 13651072 n 0000 ~ 13651218 n 0000 ~ 13651520 n 0000 ~ 13651804 n 0000 ~ 13651931 n 0000 ~ 13652066 n 0000 ~ 13652203 n 0000 ~ 13652335 n 0000 ~ 13652443 n 0000 ~ 13652529 n 0000 ~ 13652661 n 0000 ~ 13652799 n 0000 ~ 13652886 n 0000 ~ 13652994 n 0000 ~ 13653349 n 0000 ~ 13653461 n 0000 ~ 13653615 n 0000 ~ 13653821 n 0000 ~ 13654232 n 0000 ~ 13654380 n 0000 ~ 13654571 n 0000 ~ 13654674 n 0000 ~ 13654777 n 0000 ~ 13654889 n 0000 ~ 13655089 n 0000 ~ 13655262 n 0000 ~ 13655414 n 0000 ~ 13655570 n 0000 ~ 13655790 n 0000 ~ 13655908 n 0000 ~ 13656075 n 0000 ~ 13656204 n 0000 ~ 13656345 n 0000 ~ 13660178 n 0000 ~ 13712286 n 0000 ~ 13712428 n 0000 ~ 13712592 n 0000 ~ 13712890 n 0000 | a unit of measurement of length -13604275 23 n 02 metric_unit 0 metric 1 004 @ 13583724 n 0000 ~ 13616054 n 0000 ~ 13649268 n 0000 ~ 13717155 n 0000 | a decimal unit of measurement of the metric system (based on meters and kilograms and seconds); "convert all the measurements to metric units"; "it is easier to work in metric" -13604572 23 n 01 miles_per_gallon 0 001 @ 13583724 n 0000 | the distance traveled in a vehicle powered by one gallon of gasoline or diesel fuel -13604718 23 n 01 monetary_unit 0 134 @ 13583724 n 0000 ~ 13661273 n 0000 ~ 13661820 n 0000 ~ 13662190 n 0000 ~ 13662703 n 0000 ~ 13663077 n 0000 ~ 13663448 n 0000 ~ 13663694 n 0000 ~ 13664041 n 0000 ~ 13664283 n 0000 ~ 13666675 n 0000 ~ 13666922 n 0000 ~ 13667255 n 0000 ~ 13667523 n 0000 ~ 13667797 n 0000 ~ 13668034 n 0000 ~ 13668380 n 0000 ~ 13668751 n 0000 ~ 13669237 n 0000 ~ 13669479 n 0000 ~ 13669733 n 0000 ~ 13670156 n 0000 ~ 13670521 n 0000 ~ 13671047 n 0000 ~ 13671416 n 0000 ~ 13671674 n 0000 ~ 13674759 n 0000 ~ 13675093 n 0000 ~ 13675456 n 0000 ~ 13675708 n 0000 ~ 13675976 n 0000 ~ 13676396 n 0000 ~ 13679161 n 0000 ~ 13679494 n 0000 ~ 13679739 n 0000 ~ 13680032 n 0000 ~ 13680273 n 0000 ~ 13680463 n 0000 ~ 13680823 n 0000 ~ 13681142 n 0000 ~ 13681530 n 0000 ~ 13681863 n 0000 ~ 13682221 n 0000 ~ 13682631 n 0000 ~ 13682860 n 0000 ~ 13683093 n 0000 ~ 13683451 n 0000 ~ 13683805 n 0000 ~ 13684140 n 0000 ~ 13684503 n 0000 ~ 13684853 n 0000 ~ 13685096 n 0000 ~ 13685346 n 0000 ~ 13685678 n 0000 ~ 13686023 n 0000 ~ 13686268 n 0000 ~ 13686526 n 0000 ~ 13687015 n 0000 ~ 13687524 n 0000 ~ 13687906 n 0000 ~ 13688319 n 0000 ~ 13688695 n 0000 ~ 13688944 n 0000 ~ 13689282 n 0000 ~ 13689630 n 0000 ~ 13689984 n 0000 ~ 13690321 n 0000 ~ 13690650 n 0000 ~ 13690911 n 0000 ~ 13691154 n 0000 ~ 13691401 n 0000 ~ 13691651 n 0000 ~ 13691909 n 0000 ~ 13692151 n 0000 ~ 13692437 n 0000 ~ 13692713 n 0000 ~ 13692963 n 0000 ~ 13693237 n 0000 ~ 13693514 n 0000 ~ 13693908 n 0000 ~ 13694552 n 0000 ~ 13694825 n 0000 ~ 13695081 n 0000 ~ 13695307 n 0000 ~ 13695567 n 0000 ~ 13695815 n 0000 ~ 13696155 n 0000 ~ 13696402 n 0000 ~ 13696652 n 0000 ~ 13697011 n 0000 ~ 13697380 n 0000 ~ 13697727 n 0000 ~ 13697963 n 0000 ~ 13698202 n 0000 ~ 13698567 n 0000 ~ 13698949 n 0000 ~ 13699313 n 0000 ~ 13699612 n 0000 ~ 13699925 n 0000 ~ 13700233 n 0000 ~ 13700533 n 0000 ~ 13700870 n 0000 ~ 13701183 n 0000 ~ 13701482 n 0000 ~ 13701793 n 0000 ~ 13702102 n 0000 ~ 13702396 n 0000 ~ 13702707 n 0000 ~ 13703022 n 0000 ~ 13703370 n 0000 ~ 13703679 n 0000 ~ 13704143 n 0000 ~ 13704529 n 0000 ~ 13704788 n 0000 ~ 13705037 n 0000 ~ 13705300 n 0000 ~ 13705559 n 0000 ~ 13705800 n 0000 ~ 13706183 n 0000 ~ 13706521 n 0000 ~ 13706753 n 0000 ~ 13706993 n 0000 ~ 13707237 n 0000 ~ 13707473 n 0000 ~ 13707713 n 0000 ~ 13707897 n 0000 ~ 13708141 n 0000 ~ 13708500 n 0000 ~ 13708855 n 0000 ~ 13709223 n 0000 ~ 13709591 n 0000 ~ 13709819 n 0000 ~ 13710317 n 0000 ~ 13710651 n 0000 | a unit of money -13607187 23 n 03 megaflop 0 MFLOP 0 million_floating_point_operations_per_second 0 003 @ 13583724 n 0000 #p 13607405 n 0000 ;c 06128570 n 0000 | (computer science) a unit for measuring the speed of a computer system -13607405 23 n 02 teraflop 0 trillion_floating_point_operations_per_second 0 003 @ 13583724 n 0000 ;c 06128570 n 0000 %p 13607187 n 0000 | (computer science) a unit for measuring the speed of a computer system -13607616 23 n 02 MIPS 0 million_instructions_per_second 0 002 @ 13583724 n 0000 ;c 06128570 n 0000 | (computer science) a unit for measuring the execution speed of a computer's CPU (but not the whole system); "4 MIPS is 4,000,000 instructions per second" -13607873 23 n 01 pain_unit 0 002 @ 13583724 n 0000 ~ 13710986 n 0000 | a unit measuring the intensity of pain -13607985 23 n 01 pressure_unit 0 008 @ 13583724 n 0000 ~ 13711060 n 0000 ~ 13711303 n 0000 ~ 13711416 n 0000 ~ 13711570 n 0000 ~ 13711663 n 0000 ~ 13711855 n 0000 ~ 13712120 n 0000 | a unit measuring force per unit area -13608207 23 n 01 printing_unit 0 002 @ 13583724 n 0000 ~ 13713159 n 0000 | a unit of measurement for printing -13608319 23 n 01 sound_unit 0 005 @ 13583724 n 0000 ~ 13713521 n 0000 ~ 13713633 n 0000 ~ 13713817 n 0000 ~ 13713983 n 0000 | any acoustic unit of measurement -13608480 23 n 01 telephone_unit 0 002 @ 13583724 n 0000 ~ 13714082 n 0000 | a unit of measurement for telephone use -13608598 23 n 01 temperature_unit 0 006 @ 13583724 n 0000 ~ 13714184 n 0000 ~ 13714376 n 0000 ~ 13714756 n 0000 ~ 13714905 n 0000 ~ 13715001 n 0000 | a unit of measurement for temperature -13608788 23 n 02 weight_unit 0 weight 0 017 @ 13583724 n 0000 ~ 13716686 n 0000 ~ 13716878 n 0000 ~ 13717619 n 0000 ~ 13717728 n 0000 ~ 13717914 n 0000 ~ 13718046 n 0000 ~ 13718178 n 0000 ~ 13718267 n 0000 ~ 13718451 n 0000 ~ 13718574 n 0000 ~ 13718675 n 0000 ~ 13718838 n 0000 ~ 13718946 n 0000 ~ 13719291 n 0000 ~ 13719410 n 0000 ~ 13719529 n 0000 | a unit used to measure weight; "he placed two weights in the scale pan" -13609214 23 n 01 mass_unit 0 006 @ 13583724 n 0000 ~ 13715495 n 0000 ~ 13715614 n 0000 ~ 13716084 n 0000 ~ 13717155 n 0000 ~ 13719102 n 0000 | a unit of measurement for mass -13609390 23 n 01 unit_of_viscosity 0 002 @ 13583724 n 0000 ~ 13715240 n 0000 | a unit of measurement for viscosity -13609507 23 n 03 work_unit 0 heat_unit 0 energy_unit 0 015 @ 13583724 n 0000 ~ 13725726 n 0000 ~ 13725902 n 0000 ~ 13726074 n 0000 ~ 13726296 n 0000 ~ 13726562 n 0000 ~ 13726947 n 0000 ~ 13727209 n 0000 ~ 13727333 n 0000 ~ 13727478 n 0000 ~ 13727683 n 0000 ~ 13727841 n 0000 ~ 13727931 n 0000 ~ 13728074 n 0000 ~ 13728203 n 0000 | a unit of measurement for work -13609871 23 n 01 langley 0 001 @ 13583724 n 0000 | unit of solar radiation -13609948 23 n 01 Brinell_number 0 001 @ 13583724 n 0000 | measure of the hardness of a material -13610046 23 n 01 Brix_scale 0 001 @ 13577171 n 0000 | a system for measuring the concentration of sugar solutions -13610162 23 n 01 point 1 006 @ 13583724 n 0000 #p 13594585 n 0000 ~ 00189257 n 0000 ~ 13610426 n 0000 ~ 13610540 n 0000 ~ 13610669 n 0000 | the unit of counting in scoring a game or contest; "he scored 20 points in the first half"; "a touchdown counts 6 points" -13610426 23 n 01 advantage 0 002 @ 13610162 n 0000 #p 00482298 n 0000 | (tennis) first point scored after deuce -13610540 23 n 01 set_point 0 002 @ 13610162 n 0000 #p 00482298 n 0000 | (tennis) the final point needed to win a set in tennis -13610669 23 n 01 match_point 0 002 @ 13610162 n 0000 ;c 00482298 n 0000 | (tennis) the final point needed to win a match (especially in tennis) -13610815 23 n 01 sabin 0 001 @ 13599871 n 0000 | a unit of acoustic absorption equivalent to the absorption by a square foot of a surface that absorbs all incident sound -13610987 23 n 01 circular_measure 0 001 @ 13577171 n 0000 | measurement of angles in radians -13611082 23 n 01 mil 3 001 @ 13600097 n 0000 | an angular unit used in artillery; equal to 1/6400 of a complete revolution -13611207 23 n 02 degree 0 arcdegree 0 004 @ 13600097 n 0000 #p 13612427 n 0000 #p 13612550 n 0000 %p 13611567 n 0000 | a measure for arcs and angles; "there are 360 degrees in a circle" -13611395 23 n 02 second 0 arcsecond 0 002 @ 13600097 n 0000 #p 13611567 n 0000 | a 60th part of a minute of arc; "the treasure is 2 minutes and 45 seconds south of here" -13611567 23 n 03 minute 0 arcminute 0 minute_of_arc 0 003 @ 13600097 n 0000 #p 13611207 n 0000 %p 13611395 n 0000 | a unit of angular distance equal to a 60th of a degree -13611740 23 n 01 microradian 0 002 @ 13600097 n 0000 #p 13611884 n 0000 | a unit of angular distance equal to one thousandth of a milliradian -13611884 23 n 01 milliradian 0 003 @ 13600097 n 0000 #p 13612042 n 0000 %p 13611740 n 0000 | a unit of angular distance equal to one thousandth of a radian -13612042 23 n 02 radian 0 rad 1 002 @ 13600097 n 0000 %p 13611884 n 0000 | the unit of plane angle adopted under the Systeme International d'Unites; equal to the angle at the center of a circle subtended by an arc equal in length to the radius (approximately 57.295 degrees) -13612319 23 n 02 grad 0 grade 0 002 @ 13600097 n 0000 #p 13892237 n 0000 | one-hundredth of a right angle -13612427 23 n 01 oxtant 0 002 @ 13600097 n 0000 %p 13611207 n 0000 | a unit of angular distance equal to half a quadrant -13612550 23 n 01 sextant 0 003 @ 13600097 n 0000 #p 05101675 n 0000 %p 13611207 n 0000 | a unit of angular distance equal to 60 degrees -13612688 23 n 01 straight_angle 0 002 @ 13600097 n 0000 #p 05101675 n 0000 | an angle of 180 degrees -13612791 23 n 02 steradian 0 sr 0 002 @ 13600097 n 0000 #p 13898899 n 0000 | the unit of solid angle adopted under the Systeme International d'Unites -13612943 23 n 02 square_inch 0 sq_in 0 001 @ 13600404 n 0000 | a unit of area equal to one inch by one inch square -13613060 23 n 02 square_foot 0 sq_ft 0 001 @ 13600404 n 0000 | a unit of area equal to one foot by one foot square -13613177 23 n 02 square_yard 0 sq_yd 0 001 @ 13600404 n 0000 | a unit of area equal to one yard by one yard square -13613294 23 n 03 square_meter 0 square_metre 0 centare 0 001 @ 13600404 n 0000 | a centare is 1/100th of an are -13613408 23 n 01 square_mile 0 002 @ 13600404 n 0000 ~ 13613504 n 0000 | an area of 640 acres -13613504 23 n 01 section 0 001 @ 13613408 n 0000 | a land unit equal to 1 square mile -13613592 23 n 01 quarter_section 0 001 @ 13600404 n 0000 | a land unit equal to a quarter of a section (160 acres) and measuring 1/2 mile on a side -13613742 23 n 01 acre 0 001 @ 13600404 n 0000 | a unit of area (4840 square yards) used in English-speaking countries -13613862 23 n 02 are 0 ar 0 002 @ 13600404 n 0000 #p 13613985 n 0000 | a unit of surface area equal to 100 square meters -13613985 23 n 01 hectare 0 002 @ 13600404 n 0000 %p 13613862 n 0000 | (abbreviated `ha') a unit of surface area equal to 100 ares (or 10,000 square meters) -13614143 23 n 01 arpent 0 001 @ 13600404 n 0000 | a former French unit of area; equal approximately to an acre -13614256 23 n 02 barn 0 b 0 002 @ 13600404 n 0000 ;c 06100555 n 0000 | (physics) a unit of nuclear cross section; the effective circular area that one particle presents to another as a target for an encounter -13614467 23 n 01 dessiatine 0 001 @ 13600404 n 0000 | a former Russian unit of area equal to 2.7 acres -13614572 23 n 01 morgen 0 001 @ 13600404 n 0000 | a South African unit of measure equal to about 2 acres -13614679 23 n 03 perch 2 rod 2 pole 2 001 @ 13600404 n 0000 | a square rod of land -13614764 23 n 02 liquid_unit 0 liquid_measure 0 007 @ 13600822 n 0000 ~ 13615235 n 0000 ~ 13615557 n 0000 ~ 13616427 n 0000 ~ 13616560 n 0000 ~ 13618298 n 0000 ~ 13618418 n 0000 | a unit of capacity for liquids (for measuring the volumes of liquids or their containers) -13615036 23 n 02 dry_unit 0 dry_measure 0 005 @ 13600822 n 0000 ~ 13615557 n 0000 ~ 13616340 n 0000 ~ 13616787 n 0000 ~ 13620154 n 0000 | a unit of capacity for dry commodities (as fruit or grain) -13615235 23 n 01 United_States_liquid_unit 0 011 @ 13614764 n 0000 ~ 13618508 n 0000 ~ 13618629 n 0000 ~ 13618849 n 0000 ~ 13619028 n 0000 ~ 13619168 n 0000 ~ 13619307 n 0000 ~ 13619475 n 0000 ~ 13619592 n 0000 ~ 13619764 n 0000 ~ 13619920 n 0000 | a liquid unit officially adopted in the United States Customary System -13615557 23 n 02 British_capacity_unit 0 Imperial_capacity_unit 0 017 @ 13614764 n 0000 @ 13615036 n 0000 ~ 13619920 n 0000 ~ 13621011 n 0000 ~ 13621190 n 0000 ~ 13621418 n 0000 ~ 13621660 n 0000 ~ 13621850 n 0000 ~ 13622035 n 0000 ~ 13622209 n 0000 ~ 13622451 n 0000 ~ 13622591 n 0000 ~ 13622769 n 0000 ~ 13622914 n 0000 ~ 13623054 n 0000 ~ 13623205 n 0000 ~ 13623329 n 0000 | a unit of measure for capacity officially adopted in the British Imperial System; British units are both dry and wet -13616054 23 n 01 metric_capacity_unit 0 011 @ 13600822 n 0000 @ 13604275 n 0000 ~ 13623455 n 0000 ~ 13623636 n 0000 ~ 13623856 n 0000 ~ 13624026 n 0000 ~ 13624190 n 0000 ~ 13624509 n 0000 ~ 13624705 n 0000 ~ 13624873 n 0000 ~ 13625063 n 0000 | a capacity unit defined in metric terms -13616340 23 n 01 ardeb 0 001 @ 13615036 n 0000 | a unit of dry measure used in Egypt -13616427 23 n 01 arroba 2 001 @ 13614764 n 0000 | a liquid measure (with different values) used in some Spanish speaking countries -13616560 23 n 01 bath 0 002 @ 13614764 n 0000 #p 13617046 n 0000 | an ancient Hebrew liquid measure equal to about 10 gallons -13616688 23 n 01 cran 0 001 @ 13600822 n 0000 | a capacity unit used for measuring fresh herring -13616787 23 n 02 ephah 0 epha 0 002 @ 13615036 n 0000 #p 13617046 n 0000 | an ancient Hebrew unit of dry measure equal to about a bushel -13616926 23 n 01 field_capacity 0 001 @ 13600822 n 0000 | the maximum amount of water that a particular soil can hold -13617046 23 n 02 homer 0 kor 0 003 @ 13600822 n 0000 %p 13616560 n 0000 %p 13616787 n 0000 | an ancient Hebrew unit of capacity equal to 10 baths or 10 ephahs -13617207 23 n 01 hin 0 001 @ 13600822 n 0000 | ancient Hebrew unit of liquid measure = 1.5 gallons -13617308 23 n 02 fathom 2 fthm 2 002 @ 13600822 n 0000 ;c 00922327 n 0000 | (mining) a unit of volume (equal to 6 cubic feet) used in measuring bodies of ore -13617468 23 n 01 acre-foot 0 001 @ 13600822 n 0000 | the volume of water that would cover 1 acre to a depth of 1 foot; 43,560 cubic feet or 1233.5 cubic meters -13617630 23 n 01 acre_inch 0 001 @ 13600822 n 0000 | one twelfth of an acre-foot -13617713 23 n 01 board_measure 0 001 @ 13577171 n 0000 | a system of units for measuring lumber based on the board foot -13617835 23 n 01 board_foot 0 001 @ 13600822 n 0000 | the volume of a piece of wood 1 foot square and 1 inch thick -13617952 23 n 01 standard 0 003 @ 13600822 n 0000 + 00467717 v 0101 + 00467717 v 0102 | a board measure = 1980 board feet -13618076 23 n 02 cubic_yard 0 yard 1 001 @ 13600822 n 0000 | a unit of volume (as for sand or gravel) -13618180 23 n 01 last 1 002 @ 13600822 n 0000 ;r 08860123 n 0000 | a unit of capacity for grain equal to 80 bushels -13618298 23 n 01 mutchkin 0 001 @ 13614764 n 0000 | a Scottish unit of liquid measure equal to 0.9 United States pint -13618418 23 n 01 oka 2 001 @ 13614764 n 0000 | a Turkish liquid unit equal to 1.3 pints -13618508 23 n 01 minim 1 002 @ 13615235 n 0000 #p 13618629 n 0000 | a United States liquid unit equal to 1/60 fluidram -13618629 23 n 04 fluidram 1 fluid_dram 1 fluid_drachm 1 drachm 1 003 @ 13615235 n 0000 #p 13618849 n 0000 %p 13618508 n 0000 | a unit of capacity or volume in the apothecary system equal to one eighth of a fluid ounce -13618849 23 n 02 fluidounce 1 fluid_ounce 1 003 @ 13615235 n 0000 #p 13619028 n 0000 %p 13618629 n 0000 | a United States unit of capacity or volume equal to 1.804 cubic inches -13619028 23 n 01 gill 1 003 @ 13615235 n 0000 #p 13619168 n 0000 %p 13618849 n 0000 | a United States liquid unit equal to 4 fluid ounces -13619168 23 n 01 cup 2 003 @ 13615235 n 0000 #p 13619307 n 0000 %p 13619028 n 0000 | a United States liquid unit equal to 8 fluid ounces -13619307 23 n 01 pint 1 003 @ 13615235 n 0000 #p 13619592 n 0000 %p 13619168 n 0000 | a United States liquid unit equal to 16 fluid ounces; two pints equal one quart -13619475 23 n 01 fifth 1 001 @ 13615235 n 0000 | a quantity of liquor equal to one fifth of a United States gallon -13619592 23 n 01 quart 1 003 @ 13615235 n 0000 #p 13619764 n 0000 %p 13619307 n 0000 | a United States liquid unit equal to 32 fluid ounces; four quarts equal one gallon -13619764 23 n 02 gallon 1 gal 0 003 @ 13615235 n 0000 #p 13619920 n 0000 %p 13619592 n 0000 | United States liquid unit equal to 4 quarts or 3.785 liters -13619920 23 n 02 barrel 1 bbl 1 005 @ 13615235 n 0000 @ 13615557 n 0000 #p 13623205 n 0000 %p 13619764 n 0000 %p 13622209 n 0000 | any of various units of capacity; "a barrel of beer is 31 gallons and a barrel of oil is 42 gallons" -13620154 23 n 01 United_States_dry_unit 0 005 @ 13615036 n 0000 ~ 13620404 n 0000 ~ 13620549 n 0000 ~ 13620713 n 0000 ~ 13620871 n 0000 | a unit of measurement of capacity for dry substances officially adopted in the United States Customary System -13620404 23 n 02 pint 3 dry_pint 0 002 @ 13620154 n 0000 #p 13620549 n 0000 | a United States dry unit equal to 0.5 quart or 33.6 cubic inches -13620549 23 n 02 quart 3 dry_quart 0 003 @ 13620154 n 0000 #p 13620713 n 0000 %p 13620404 n 0000 | a United States dry unit equal to 2 pints or 67.2 cubic inches -13620713 23 n 01 peck 1 003 @ 13620154 n 0000 #p 13620871 n 0000 %p 13620549 n 0000 | a United States dry measure equal to 8 quarts or 537.605 cubic inches -13620871 23 n 01 bushel 2 002 @ 13620154 n 0000 %p 13620713 n 0000 | a United States dry measure equal to 4 pecks or 2152.42 cubic inches -13621011 23 n 01 minim 2 002 @ 13615557 n 0000 #p 13621190 n 0000 | a British imperial capacity measure (liquid or dry) equal to 1/60th fluid dram or 0.059194 cubic centimeters -13621190 23 n 04 fluidram 2 fluid_dram 2 fluid_drachm 2 drachm 2 003 @ 13615557 n 0000 #p 13621418 n 0000 %p 13621011 n 0000 | a British imperial capacity measure (liquid or dry) equal to 60 minims or 3.5516 cubic centimeters -13621418 23 n 02 fluidounce 2 fluid_ounce 2 003 @ 13615557 n 0000 #p 13621660 n 0000 %p 13621190 n 0000 | a British imperial unit of capacity or volume (liquid or dry) equal to 8 fluid drams or 28.416 cubic centimeters (1.734 cubic inches) -13621660 23 n 01 gill 2 003 @ 13615557 n 0000 #p 13621850 n 0000 %p 13621418 n 0000 | a British imperial capacity unit (liquid or dry) equal to 5 fluid ounces or 142.066 cubic centimeters -13621850 23 n 01 pint 2 003 @ 13615557 n 0000 #p 13622035 n 0000 %p 13621660 n 0000 | a British imperial capacity measure (liquid or dry) equal to 4 gills or 568.26 cubic centimeters -13622035 23 n 01 quart 2 003 @ 13615557 n 0000 #p 13622209 n 0000 %p 13621850 n 0000 | a British imperial capacity measure (liquid or dry) equal to 2 pints or 1.136 liters -13622209 23 n 03 gallon 2 Imperial_gallon 0 congius 0 005 @ 13615557 n 0000 #p 13622591 n 0000 #p 13619920 n 0000 #p 13622769 n 0000 %p 13622035 n 0000 | a British imperial capacity measure (liquid or dry) equal to 4 quarts or 4.545 liters -13622451 23 n 01 peck 2 002 @ 13615557 n 0000 #p 13622591 n 0000 | a British imperial capacity measure (liquid or dry) equal to 2 gallons -13622591 23 n 01 bushel 1 004 @ 13615557 n 0000 #p 13623054 n 0000 %p 13622209 n 0000 %p 13622451 n 0000 | a British imperial capacity measure (liquid or dry) equal to 4 pecks -13622769 23 n 01 firkin 0 003 @ 13615557 n 0000 #p 13622914 n 0000 %p 13622209 n 0000 | a British unit of capacity equal to 9 imperial gallons -13622914 23 n 01 kilderkin 0 002 @ 13615557 n 0000 %p 13622769 n 0000 | an obsolete British unit of capacity equal to 18 Imperial gallons -13623054 23 n 01 quarter 4 004 @ 13615557 n 0000 #p 13721003 n 0000 ;r 08860123 n 0000 %p 13622591 n 0000 | a quarter of a hundredweight (28 pounds) -13623205 23 n 01 hogshead 1 002 @ 13615557 n 0000 %p 13619920 n 0000 | a British unit of capacity for alcoholic beverages -13623329 23 n 01 chaldron 0 001 @ 13615557 n 0000 | a British imperial capacity measure (liquid or dry) equal to 36 bushels -13623455 23 n 02 cubic_millimeter 0 cubic_millimetre 0 002 @ 13616054 n 0000 #p 13623636 n 0000 | a metric measure of volume or capacity equal to a cube 1 millimeter on each edge -13623636 23 n 07 milliliter 0 millilitre 0 mil 2 ml 0 cubic_centimeter 0 cubic_centimetre 0 cc 0 003 @ 13616054 n 0000 #p 13623856 n 0000 %p 13623455 n 0000 | a metric unit of volume equal to one thousandth of a liter -13623856 23 n 03 centiliter 0 centilitre 0 cl 0 003 @ 13616054 n 0000 #p 13624026 n 0000 %p 13623636 n 0000 | a metric unit of volume equal to one hundredth of a liter -13624026 23 n 03 deciliter 0 decilitre 0 dl 0 003 @ 13616054 n 0000 #p 13624190 n 0000 %p 13623856 n 0000 | a metric unit of volume equal to one tenth of a liter -13624190 23 n 05 liter 0 litre 0 l 0 cubic_decimeter 0 cubic_decimetre 0 003 @ 13616054 n 0000 #p 13624509 n 0000 %p 13624026 n 0000 | a metric unit of capacity, formerly defined as the volume of one kilogram of pure water under standard conditions; now equal to 1,000 cubic centimeters (or approximately 1.75 pints) -13624509 23 n 06 dekaliter 0 dekalitre 0 decaliter 0 decalitre 0 dal 0 dkl 0 003 @ 13616054 n 0000 #p 13624705 n 0000 %p 13624190 n 0000 | a metric unit of volume or capacity equal to 10 liters -13624705 23 n 03 hectoliter 0 hectolitre 0 hl 0 003 @ 13616054 n 0000 #p 13624873 n 0000 %p 13624509 n 0000 | a metric unit of volume or capacity equal to 100 liters -13624873 23 n 04 kiloliter 0 kilolitre 0 cubic_meter 0 cubic_metre 0 003 @ 13616054 n 0000 #p 13625063 n 0000 %p 13624705 n 0000 | a metric unit of volume or capacity equal to 1000 liters -13625063 23 n 02 cubic_kilometer 0 cubic_kilometre 0 002 @ 13616054 n 0000 %p 13624873 n 0000 | a unit of capacity equal to the volume of a cube one kilometer on each edge -13625237 23 n 01 bit 0 003 @ 13583724 n 0000 #p 13626013 n 0000 ~ 13625482 n 0000 | a unit of measurement of information (from binary + digit); the amount of information in a system having two equiprobable states; "there are 8 bits in a byte" -13625482 23 n 03 parity_bit 0 parity 0 check_bit 0 002 @ 13625237 n 0000 ;c 06128570 n 0000 | (computer science) a bit that is used in an error detection procedure in which a 0 or 1 is added to each group of bits so that it will have either an odd number of 1's or an even number of 1's; e.g., if the parity is odd then any group of bits that arrives with an even number of 1's must contain an error -13625884 23 n 02 nybble 0 nibble 0 004 #p 13626013 n 0000 @ 13601596 n 0000 + 01174294 v 0201 + 01446729 v 0201 | a small byte -13626013 23 n 01 byte 0 004 @ 13601596 n 0000 #p 13627327 n 0000 %p 13625237 n 0000 %p 13625884 n 0000 | a sequence of 8 bits (enough to represent one character of alphanumeric data) processed as a single unit of information -13626240 23 n 01 sector 0 003 @ 13601596 n 0000 #p 13626464 n 0000 #p 13626942 n 0000 | the minimum track length that can be assigned to store information; unless otherwise specified a sector of data consists of 512 bytes -13626464 23 n 01 block 0 004 @ 13601596 n 0000 ;c 06128570 n 0000 %p 13626240 n 0000 ~ 13626789 n 0000 | (computer science) a sector or group of sectors that function as the smallest data unit permitted; "since blocks are often defined as a single sector, the terms `block' and `sector' are sometimes used interchangeably" -13626789 23 n 01 bad_block 0 002 @ 13626464 n 0000 ;c 06128570 n 0000 | (computer science) a block (usually one sector) that cannot reliably hold data -13626942 23 n 01 allocation_unit 0 002 @ 13601596 n 0000 %p 13626240 n 0000 | a group of sectors on a magnetic disk that can be reserved for the use of a particular file -13627114 23 n 01 partition 0 002 @ 13601596 n 0000 ;c 06128570 n 0000 | (computer science) the part of a hard disk that is dedicated to a particular operating system or application and accessed as a single unit -13627327 23 n 01 word 0 003 #p 13627516 n 0000 @ 13601596 n 0000 %p 13626013 n 0000 | a word is a string of bits stored in computer memory; "large computers use words up to 64 bits long" -13627516 23 n 06 kilobyte 0 kibibyte 0 K 0 KB 0 kB 1 KiB 0 003 #p 13628056 n 0000 @ 13601596 n 0000 %p 13627327 n 0000 | a unit of information equal to 1024 bytes -13627681 23 n 04 kilobyte 1 K 1 KB 2 kB 3 002 #p 13628246 n 0000 @ 13601596 n 0000 | a unit of information equal to 1000 bytes -13627810 23 n 03 kilobit 0 kbit 0 kb 4 002 #p 13628419 n 0000 @ 13601596 n 0000 | a unit of information equal to 1000 bits -13627935 23 n 02 kibibit 0 kibit 0 002 #p 13628592 n 0000 @ 13601596 n 0000 | a unit of information equal to 1024 bits -13628056 23 n 05 megabyte 0 mebibyte 0 M 2 MB 0 MiB 0 003 #p 13628761 n 0000 @ 13601596 n 0000 %p 13627516 n 0000 | a unit of information equal to 1024 kibibytes or 2^20 (1,048,576) bytes -13628246 23 n 03 megabyte 1 M 3 MB 1 003 #p 13628955 n 0000 @ 13601596 n 0000 %p 13627681 n 0000 | a unit of information equal to 1000 kilobytes or 10^6 (1,000,000) bytes -13628419 23 n 03 megabit 0 Mbit 0 Mb 2 003 #p 13629132 n 0000 @ 13601596 n 0000 %p 13627810 n 0000 | a unit of information equal to 1000 kilobits or 10^6 (1,000,000) bits -13628592 23 n 02 mebibit 0 Mibit 0 003 #p 13629309 n 0000 @ 13601596 n 0000 %p 13627935 n 0000 | a unit of information equal to 1024 kibibits or 2^20 (1,048,576) bits -13628761 23 n 05 gigabyte 0 gibibyte 0 G 2 GB 2 GiB 0 003 #p 13629482 n 0000 @ 13601596 n 0000 %p 13628056 n 0000 | a unit of information equal to 1024 mebibytes or 2^30 (1,073,741,824) bytes -13628955 23 n 03 gigabyte 1 G 3 GB 3 003 #p 13629676 n 0000 @ 13601596 n 0000 %p 13628246 n 0000 | a unit of information equal to 1000 megabytes or 10^9 (1,000,000,000) bytes -13629132 23 n 03 gigabit 0 Gbit 0 Gb 4 003 #p 13629854 n 0000 @ 13601596 n 0000 %p 13628419 n 0000 | a unit of information equal to 1000 megabits or 10^9 (1,000,000,000) bits -13629309 23 n 02 gibibit 0 Gibit 0 003 #p 13630036 n 0000 @ 13601596 n 0000 %p 13628592 n 0000 | a unit of information equal to 1024 mebibits or 2^30 (1,073,741,824) bits -13629482 23 n 04 terabyte 0 tebibyte 0 TB 0 TiB 0 003 #p 13630213 n 0000 @ 13601596 n 0000 %p 13628761 n 0000 | a unit of information equal to 1024 gibibytes or 2^40 (1,099,511,627,776) bytes -13629676 23 n 02 terabyte 1 TB 1 003 #p 13630387 n 0000 @ 13601596 n 0000 %p 13628955 n 0000 | a unit of information equal to 1000 gigabytes or 10^12 (1,000,000,000,000) bytes -13629854 23 n 03 terabit 0 Tbit 0 Tb 2 003 #p 13630545 n 0000 @ 13601596 n 0000 %p 13629132 n 0000 | a unit of information equal to 1000 gigabits or 10^12 (1,000,000,000,000) bits -13630036 23 n 02 tebibit 0 Tibit 0 003 #p 13630707 n 0000 @ 13601596 n 0000 %p 13629309 n 0000 | a unit of information equal to 1024 gibibits or 2^40 (1,099,511,627,776) bits -13630213 23 n 04 petabyte 0 pebibyte 0 PB 0 PiB 0 003 #p 13630864 n 0000 @ 13601596 n 0000 %p 13629482 n 0000 | a unit of information equal to 1024 tebibytes or 2^50 bytes -13630387 23 n 02 petabyte 1 PB 1 003 #p 13631037 n 0000 @ 13601596 n 0000 %p 13629676 n 0000 | a unit of information equal to 1000 terabytes or 10^15 bytes -13630545 23 n 03 petabit 0 Pbit 0 Pb 2 003 #p 13631194 n 0000 @ 13601596 n 0000 %p 13629854 n 0000 | a unit of information equal to 1000 terabits or 10^15 bits -13630707 23 n 02 pebibit 0 Pibit 0 003 #p 13631355 n 0000 @ 13601596 n 0000 %p 13630036 n 0000 | a unit of information equal to 1024 tebibits or 2^50 bits -13630864 23 n 04 exabyte 0 exbibyte 0 EB 0 EiB 0 003 #p 13631512 n 0000 @ 13601596 n 0000 %p 13630213 n 0000 | a unit of information equal to 1024 pebibytes or 2^60 bytes -13631037 23 n 02 exabyte 1 EB 1 003 #p 13631687 n 0000 @ 13601596 n 0000 %p 13630387 n 0000 | a unit of information equal to 1000 petabytes or 10^18 bytes -13631194 23 n 03 exabit 0 Ebit 0 Eb 2 003 #p 13631845 n 0000 @ 13601596 n 0000 %p 13630545 n 0000 | a unit of information equal to 1000 petabits or 10^18 bits -13631355 23 n 02 exbibit 0 Eibit 0 003 #p 13632007 n 0000 @ 13601596 n 0000 %p 13630707 n 0000 | a unit of information equal to 1024 pebibits or 2^60 bits -13631512 23 n 04 zettabyte 0 zebibyte 0 ZB 0 ZiB 0 003 #p 13632164 n 0000 @ 13601596 n 0000 %p 13630864 n 0000 | a unit of information equal to 1024 exbibytes or 2^70 bytes -13631687 23 n 02 zettabyte 1 ZB 1 003 #p 13632320 n 0000 @ 13601596 n 0000 %p 13631037 n 0000 | a unit of information equal to 1000 exabytes or 10^21 bytes -13631845 23 n 03 zettabit 0 Zbit 0 Zb 2 003 #p 13632461 n 0000 @ 13601596 n 0000 %p 13631194 n 0000 | a unit of information equal to 1000 exabits or 10^21 bits -13632007 23 n 02 zebibit 0 Zibit 0 003 #p 13632606 n 0000 @ 13601596 n 0000 %p 13631355 n 0000 | a unit of information equal to 1024 exbibits or 2^70 bits -13632164 23 n 04 yottabyte 0 yobibyte 0 YB 0 YiB 0 002 @ 13601596 n 0000 %p 13631512 n 0000 | a unit of information equal to 1024 zebibytes or 2^80 bytes -13632320 23 n 02 yottabyte 1 YB 1 002 @ 13601596 n 0000 %p 13631687 n 0000 | a unit of information equal to 1000 zettabytes or 10^24 bytes -13632461 23 n 03 yottabit 0 Ybit 0 Yb 2 002 @ 13601596 n 0000 %p 13631845 n 0000 | a unit of information equal to 1000 zettabits or 10^24 bits -13632606 23 n 02 yobibit 0 Yibit 0 002 @ 13601596 n 0000 %p 13632007 n 0000 | a unit of information equal to 1024 zebibits or 2^80 bits -13632744 23 n 01 capacitance_unit 0 006 @ 13602526 n 0000 ~ 13635854 n 0000 ~ 13635985 n 0000 ~ 13636135 n 0000 ~ 13636286 n 0000 ~ 13636529 n 0000 | a measure of the capacity of a circuit component to store charge -13632961 23 n 02 charge_unit 0 quantity_unit 0 005 @ 13602526 n 0000 ~ 13636648 n 0000 ~ 13636866 n 0000 ~ 13636989 n 0000 ~ 13637124 n 0000 | a measure of the quantity of electricity (determined by the amount of an electric current and the time for which it flows) -13633229 23 n 01 conductance_unit 0 002 @ 13602526 n 0000 ~ 13637240 n 0000 | a measure of a material's ability to conduct an electrical charge -13633375 23 n 01 current_unit 0 005 @ 13602526 n 0000 ~ 13637376 n 0000 ~ 13637613 n 0000 ~ 13637722 n 0000 ~ 13637841 n 0000 | a measure of the amount of electric charge flowing past a circuit point at a specific time -13633596 23 n 01 elastance_unit 0 002 @ 13602526 n 0000 ~ 13637988 n 0000 | the reciprocal of capacitance -13633704 23 n 01 field_strength_unit 0 003 @ 13602526 n 0000 ~ 13638094 n 0000 ~ 13638244 n 0000 | an electromagnetic unit of magnetic intensity -13633851 23 n 01 flux_density_unit 0 004 @ 13602526 n 0000 ~ 13638706 n 0000 ~ 13638847 n 0000 ~ 13639009 n 0000 | a measure of the amount of flux per unit of cross sectional area -13634033 23 n 02 flux_unit 0 magnetic_flux_unit 0 003 @ 13599730 n 0000 ~ 13638375 n 0000 ~ 13638577 n 0000 | a measure of the strength of a magnetic field per unit area -13634205 23 n 01 inductance_unit 0 004 @ 13602526 n 0000 ~ 13639147 n 0000 ~ 13639274 n 0000 ~ 13639405 n 0000 | a measure of the property of an electric circuit by which an electromotive force is induced in it -13634418 23 n 01 light_unit 0 006 @ 13602526 n 0000 ~ 13639647 n 0000 ~ 13639808 n 0000 ~ 13639927 n 0000 ~ 13640050 n 0000 ~ 13640206 n 0000 | a measure of the visible electromagnetic radiation -13634615 23 n 01 magnetomotive_force_unit 0 004 @ 13602526 n 0000 ~ 13642000 n 0000 ~ 13642122 n 0000 ~ 13642337 n 0000 | a unit of measurement of magnetomotive force -13634784 23 n 01 potential_unit 0 009 @ 13602526 n 0000 ~ 13642464 n 0000 ~ 13642596 n 0000 ~ 13642729 n 0000 ~ 13642856 n 0000 ~ 13642982 n 0000 ~ 13643109 n 0000 ~ 13643276 n 0000 ~ 13643770 n 0000 | a measure of the potential energy of a unit charge at a given point in a circuit relative to a reference point (ground) -13635108 23 n 01 power_unit 0 009 @ 13602526 n 0000 ~ 13644165 n 0000 ~ 13644379 n 0000 ~ 13644522 n 0000 ~ 13644761 n 0000 ~ 13644894 n 0000 ~ 13645010 n 0000 ~ 13645132 n 0000 ~ 13645331 n 0000 | a measure of electric power -13635336 23 n 01 radioactivity_unit 0 008 @ 13602526 n 0000 ~ 13645465 n 0000 ~ 13645599 n 0000 ~ 13645812 n 0000 ~ 13646031 n 0000 ~ 13646223 n 0000 ~ 13646367 n 0000 ~ 13646557 n 0000 | a measure of radioactivity -13635553 23 n 01 resistance_unit 0 004 @ 13602526 n 0000 ~ 13646694 n 0000 ~ 13646816 n 0000 ~ 13647097 n 0000 | the reciprocal of conductance -13635698 23 n 01 electrostatic_unit 0 001 @ 13583724 n 0000 | any of various units of electricity based on forces of interaction between electric charges -13635854 23 n 01 picofarad 0 002 @ 13632744 n 0000 #p 13635985 n 0000 | a unit of capacitance equal to one trillionth of a farad -13635985 23 n 01 microfarad 0 003 @ 13632744 n 0000 #p 13636135 n 0000 %p 13635854 n 0000 | a unit of capacitance equal to one millionth of a farad -13636135 23 n 01 millifarad 0 003 @ 13632744 n 0000 #p 13636286 n 0000 %p 13635985 n 0000 | a unit of capacitance equal to one thousandth of a farad -13636286 23 n 02 farad 0 F 0 003 @ 13632744 n 0000 #p 13636529 n 0000 %p 13636135 n 0000 | the capacitance of a capacitor that has an equal and opposite charge of 1 coulomb on each plate and a voltage difference of 1 volt between the plates -13636529 23 n 01 abfarad 0 002 @ 13632744 n 0000 %p 13636286 n 0000 | a capacitance unit equal to one billion farads -13636648 23 n 03 coulomb 0 C 0 ampere-second 0 003 @ 13632961 n 0000 #p 13636866 n 0000 #p 13636989 n 0000 | a unit of electrical charge equal to the amount of charge transferred by a current of 1 ampere in 1 second -13636866 23 n 01 abcoulomb 0 002 @ 13632961 n 0000 %p 13636648 n 0000 | a unit of electrical charge equal to 10 coulombs -13636989 23 n 01 ampere-minute 0 003 @ 13632961 n 0000 #p 13637124 n 0000 %p 13636648 n 0000 | a unit of charge equal to 60 coulombs -13637124 23 n 01 ampere-hour 0 002 @ 13632961 n 0000 %p 13636989 n 0000 | a unit of charge equal to 3600 coulombs -13637240 23 n 04 mho 0 siemens 0 reciprocal_ohm 0 S 0 001 @ 13633229 n 0000 | a unit of conductance equal to the reciprocal of an ohm -13637376 23 n 03 ampere 0 amp 0 A 0 003 @ 13633375 n 0000 #p 13637722 n 0000 %p 13637613 n 0000 | the basic unit of electric current adopted under the Systeme International d'Unites; "a typical household circuit carries 15 to 50 amps" -13637613 23 n 02 milliampere 0 mA 0 002 @ 13633375 n 0000 #p 13637376 n 0000 | one thousandth of an ampere -13637722 23 n 02 abampere 0 abamp 0 002 @ 13633375 n 0000 %p 13637376 n 0000 | a unit of current equal to 10 amperes -13637841 23 n 02 ampere 2 international_ampere 0 001 @ 13633375 n 0000 | a former unit of electric current (slightly smaller than the SI ampere) -13637988 23 n 01 daraf 0 001 @ 13633596 n 0000 | a unit of elastance equal to the reciprocal of a farad -13638094 23 n 01 gamma 0 002 #p 13638244 n 0000 @ 13633704 n 0000 | a unit of magnetic field strength equal to one-hundred-thousandth of an oersted -13638244 23 n 01 oersted 0 002 @ 13633704 n 0000 %p 13638094 n 0000 | the magnetic field strength 1 cm from a unit magnetic pole -13638375 23 n 02 maxwell 0 Mx 0 002 @ 13634033 n 0000 #p 13638577 n 0000 | a cgs unit of magnetic flux equal to the flux perpendicular to an area of 1 square centimeter in a magnetic field of 1 gauss -13638577 23 n 02 weber 0 Wb 0 002 @ 13634033 n 0000 %p 13638375 n 0000 | a unit of magnetic flux equal to 100,000,000 maxwells -13638706 23 n 01 microgauss 0 002 @ 13633851 n 0000 #p 13638847 n 0000 | a unit of magnetic flux density equal to one millionth of a gauss -13638847 23 n 01 gauss 0 003 @ 13633851 n 0000 #p 13639009 n 0000 %p 13638706 n 0000 | a unit of magnetic flux density equal to 1 maxwell per square centimeter -13639009 23 n 01 tesla 0 002 @ 13633851 n 0000 %p 13638847 n 0000 | a unit of magnetic flux density equal to one weber per square meter -13639147 23 n 01 abhenry 0 002 @ 13634205 n 0000 #p 13639405 n 0000 | a unit of inductance equal to one billionth of a henry -13639274 23 n 01 millihenry 0 002 @ 13634205 n 0000 #p 13639405 n 0000 | a unit of inductance equal to one thousandth of a henry -13639405 23 n 02 henry 0 H 0 003 @ 13634205 n 0000 %p 13639147 n 0000 %p 13639274 n 0000 | a unit of inductance in which an induced electromotive force of one volt is produced when the current is varied at the rate of one ampere per second -13639647 23 n 01 illumination_unit 0 005 @ 13634418 n 0000 ~ 13640371 n 0000 ~ 13640520 n 0000 ~ 13640716 n 0000 ~ 13640866 n 0000 | a measure of illumination -13639808 23 n 01 luminance_unit 0 003 @ 13634418 n 0000 ~ 13641023 n 0000 ~ 13641175 n 0000 | a measure of luminance -13639927 23 n 01 luminous_flux_unit 0 002 @ 13634418 n 0000 ~ 13641299 n 0000 | a measure of luminous flux per unit area -13640050 23 n 02 luminous_intensity_unit 0 candlepower_unit 0 003 @ 13634418 n 0000 ~ 13641534 n 0000 ~ 13641855 n 0000 | a measure of luminous intensity -13640206 23 n 01 exposure 0 002 @ 13634418 n 0000 + 02113430 v 0101 | the intensity of light falling on a photographic film or plate; "he used the wrong exposure" -13640371 23 n 01 footcandle 0 001 @ 13639647 n 0000 | a unit of illuminance on a surface that is everywhere 1 foot from a point source of 1 candle -13640520 23 n 02 lambert 0 L 7 001 @ 13639647 n 0000 | a cgs unit of illumination equal to the brightness of a perfectly diffusing surface that emits or reflects one lumen per square centimeter -13640716 23 n 02 lux 0 lx 1 002 @ 13639647 n 0000 #p 13640866 n 0000 | a unit of illumination equal to 1 lumen per square meter; 0.0929 foot candle -13640866 23 n 01 phot 0 002 @ 13639647 n 0000 %p 13640716 n 0000 | a unit of illumination equal to 1 lumen per square centimeter; 10,000 phots equal 1 lux -13641023 23 n 01 nit 0 001 @ 13639808 n 0000 | a luminance unit equal to 1 candle per square meter measured perpendicular to the rays from the source -13641175 23 n 02 foot-lambert 0 ft-L 0 001 @ 13639808 n 0000 | a former luminance unit equal to one lumen per square foot -13641299 23 n 02 lumen 0 lm 0 001 @ 13639927 n 0000 | a unit of luminous flux equal to the amount of light given out through a solid angle of 1 steradian by a point source of 1 candela intensity radiating uniformly in all directions -13641534 23 n 04 candle 0 candela 0 cd 0 standard_candle 0 002 @ 13640050 n 0000 + 02149899 v 0101 | the basic unit of luminous intensity adopted under the Systeme International d'Unites; equal to 1/60 of the luminous intensity per square centimeter of a black body radiating at the temperature of 2,046 degrees Kelvin -13641855 23 n 01 international_candle 0 001 @ 13640050 n 0000 | a former international unit of luminous intensity; now replaced by the candela -13642000 23 n 03 gilbert 0 Gb 1 Gi 0 001 @ 13634615 n 0000 | a unit of magnetomotive force equal to 0.7958 ampere-turns -13642122 23 n 01 ampere-turn 0 001 @ 13634615 n 0000 | a unit of magnetomotive force equal to the magnetomotive force produced by the passage of 1 ampere through 1 complete turn of a coil; equal to 1.257 gilberts -13642337 23 n 01 magneton 0 001 @ 13634615 n 0000 | a unit of magnetic moment of a molecular or atomic or subatomic particle -13642464 23 n 01 abvolt 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one-hundred-millionth of a volt -13642596 23 n 02 millivolt 0 mV 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one thousandth of a volt -13642729 23 n 01 microvolt 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one millionth of a volt -13642856 23 n 01 nanovolt 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one billionth of a volt -13642982 23 n 01 picovolt 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one trillionth of a volt -13643109 23 n 01 femtovolt 0 002 @ 13634784 n 0000 #p 13643276 n 0000 | a unit of potential equal to one quadrillionth of a volt (or one thousandth of a nanosecond) -13643276 23 n 02 volt 0 V 0 009 @ 13634784 n 0000 #p 13643770 n 0000 + 02827160 a 0101 %p 13642464 n 0000 %p 13642596 n 0000 %p 13642729 n 0000 %p 13642856 n 0000 %p 13642982 n 0000 %p 13643109 n 0000 | a unit of potential equal to the potential difference between two points on a conductor carrying a current of 1 ampere when the power dissipated between the two points is 1 watt; equivalent to the potential difference across a resistance of 1 ohm when 1 ampere of current flows through it -13643770 23 n 02 kilovolt 0 kV 0 002 @ 13634784 n 0000 %p 13643276 n 0000 | a unit of potential equal to a thousand volts -13643894 23 n 03 rydberg 0 rydberg_constant 0 rydberg_unit 0 001 @ 13644047 n 0000 | a wave number characteristic of the wave spectrum of each element -13644047 23 n 01 wave_number 0 002 @ 15278281 n 0000 ~ 13643894 n 0000 | the reciprocal of the wavelength of a wave -13644165 23 n 01 abwatt 0 002 @ 13635108 n 0000 #p 13644379 n 0000 | a power unit equal to the power dissipated when 1 abampere flows across a potential difference of 1 abvolt (one ten-thousandth of a milliwatt) -13644379 23 n 01 milliwatt 0 003 @ 13635108 n 0000 #p 13644522 n 0000 %p 13644165 n 0000 | a unit of power equal to one thousandth of a watt -13644522 23 n 02 watt 0 W 0 004 @ 13635108 n 0000 #p 13644761 n 0000 #p 13645010 n 0000 %p 13644379 n 0000 | a unit of power equal to 1 joule per second; the power dissipated by a current of 1 ampere flowing across a resistance of 1 ohm -13644761 23 n 02 kilowatt 0 kW 0 003 @ 13635108 n 0000 #p 13644894 n 0000 %p 13644522 n 0000 | a unit of power equal to 1000 watts -13644894 23 n 01 megawatt 0 002 @ 13635108 n 0000 %p 13644761 n 0000 | a unit of power equal to one million watts -13645010 23 n 03 horsepower 0 HP 0 H.P. 0 002 @ 13635108 n 0000 %p 13644522 n 0000 | a unit of power equal to 746 watts -13645132 23 n 02 volt-ampere 0 var 0 002 @ 13635108 n 0000 #p 13645331 n 0000 | a unit of electrical power in an AC circuit equal to the power dissipated when 1 volt produces a current of 1 ampere -13645331 23 n 01 kilovolt-ampere 0 002 @ 13635108 n 0000 %p 13645132 n 0000 | a unit of electrical power equal to 1000 volt-amperes -13645465 23 n 01 millicurie 0 002 @ 13635336 n 0000 #p 13645599 n 0000 | a unit of radioactivity equal to one thousandth of a curie -13645599 23 n 02 curie 0 Ci 0 002 @ 13635336 n 0000 %p 13645465 n 0000 | a unit of radioactivity equal to the amount of a radioactive isotope that decays at the rate of 37,000,000,000 disintegrations per second -13645812 23 n 02 gray 0 Gy 0 001 @ 13635336 n 0000 | the SI unit of energy absorbed from ionizing radiation; equal to the absorption of one joule of radiation energy by one kilogram of matter; one gray equals 100 rad -13646031 23 n 02 roentgen 0 R 0 001 @ 13635336 n 0000 | a unit of radiation exposure; the dose of ionizing radiation that will produce 1 electrostatic unit of electricity in 1 cc of dry air -13646223 23 n 01 rutherford 0 001 @ 13635336 n 0000 | a unit strength of a radioactive source equal to one million disintegrations per second -13646367 23 n 01 REM 0 001 @ 13635336 n 0000 | (Roentgen Equivalent Man) the dosage of ionizing radiation that will cause the same amount of injury to human tissue as 1 roentgen of X-rays -13646557 23 n 01 rad 0 001 @ 13635336 n 0000 | a unit of absorbed ionizing radiation equal to 100 ergs per gram of irradiated material -13646694 23 n 01 abohm 0 002 @ 13635553 n 0000 #p 13646816 n 0000 | a unit of resistance equal to a billionth of an ohm -13646816 23 n 01 ohm 0 004 @ 13635553 n 0000 #p 13647097 n 0000 + 02950264 a 0101 %p 13646694 n 0000 | a unit of electrical resistance equal to the resistance between two points on a conductor when a potential difference of one volt between them produces a current of one ampere -13647097 23 n 01 megohm 0 002 @ 13635553 n 0000 %p 13646816 n 0000 | a unit of resistance equal to one million ohms -13647215 23 n 01 kiloton 2 001 @ 13602922 n 0000 | a measure of explosive power (of an atomic weapon) equal to that of 1000 tons of TNT -13647353 23 n 01 megaton 2 001 @ 13602922 n 0000 | a measure of explosive power (of an atomic weapon) equal to that of one million tons of TNT -13647498 23 n 01 dyne 0 002 @ 13603065 n 0000 #p 13647667 n 0000 | a unit of force equal to the force that imparts an acceleration of 1 cm/sec/sec to a mass of 1 gram -13647667 23 n 02 newton 0 N 1 003 @ 13603065 n 0000 #p 13647888 n 0000 %p 13647498 n 0000 | a unit of force equal to the force that imparts an acceleration of 1 m/sec/sec to a mass of 1 kilogram; equal to 100,000 dynes -13647888 23 n 01 sthene 0 002 @ 13603065 n 0000 %p 13647667 n 0000 | a unit of force equal to 1000 newtons -13647997 23 n 02 poundal 0 pdl 0 001 @ 13603065 n 0000 | a unit of force equal to the force that imparts an acceleration of 1 foot/sec/sec to a mass of 1 pound; equal to 0.1382 newtons -13648184 23 n 02 pound 0 lbf. 0 002 @ 13603065 n 0000 %p 13720501 n 0000 | a nontechnical unit of force equal to the mass of 1 pound with an acceleration of free fall equal to 32 feet/sec/sec -13648378 23 n 01 pounder 0 002 @ 13603065 n 0000 ;u 06307152 n 0000 | (used only in combination) something weighing a given number of pounds; "the fisherman caught a 10-pounder"; "their linemen are all 300-pounders" -13648596 23 n 03 g 7 gee 0 g-force 0 001 @ 13603065 n 0000 | a unit of force equal to the force exerted by gravity; used to indicate the force to which a body is subjected when it is accelerated -13648793 23 n 01 gal 1 001 @ 13599982 n 0000 | a unit of gravitational acceleration equal to one centimeter per second per second (named after Galileo) -13648947 23 n 01 Beaufort_scale 0 001 @ 13577171 n 0000 | a scale from 0 to 12 for the force of the wind -13649054 23 n 01 astronomy_unit 0 007 @ 13603305 n 0000 ~ 13656520 n 0000 ~ 13656749 n 0000 ~ 13656913 n 0000 ~ 13657080 n 0000 ~ 13657244 n 0000 ~ 13657489 n 0000 | a linear unit used for astronomical distances -13649268 23 n 01 metric_linear_unit 0 015 @ 13603305 n 0000 @ 13604275 n 0000 ~ 13657691 n 0000 ~ 13657849 n 0000 ~ 13658027 n 0000 ~ 13658278 n 0000 ~ 13658496 n 0000 ~ 13658657 n 0000 ~ 13658828 n 0000 ~ 13658998 n 0000 ~ 13659162 n 0000 ~ 13659419 n 0000 ~ 13659604 n 0000 ~ 13659760 n 0000 ~ 13659943 n 0000 | a linear unit of distance in metric terms -13649626 23 n 01 nautical_linear_unit 0 004 @ 13603305 n 0000 ~ 13660337 n 0000 ~ 13660619 n 0000 ~ 13660868 n 0000 | a linear unit of distance used in navigation -13649791 23 n 02 inch 0 in 0 009 @ 13603305 n 0000 #p 13650045 n 0000 ;r 09044862 n 0000 ;r 08860123 n 0000 + 02072501 v 0102 %p 13652203 n 0000 %p 13654889 n 0000 %p 13655089 n 0000 %p 13712428 n 0000 | a unit of length equal to one twelfth of a foot -13650045 23 n 02 foot 0 ft 0 003 @ 13603305 n 0000 #p 13650447 n 0000 %p 13649791 n 0000 | a linear unit of length equal to 12 inches or a third of a yard; "he is six feet tall" -13650225 23 n 01 footer 0 002 @ 13603305 n 0000 ;u 06307152 n 0000 | (used only in combinations) the height or length of something in feet; "he is a six-footer"; "the golfer sank a 40-footer"; "his yacht is a 60-footer" -13650447 23 n 02 yard 0 pace 0 007 @ 13603305 n 0000 #p 13660178 n 0000 #p 13652994 n 0000 #p 13650921 n 0000 #p 13654571 n 0000 + 00490722 v 0201 %p 13650045 n 0000 | a unit of length equal to 3 feet; defined as 91.44 centimeters; originally taken to be the average length of a stride -13650735 23 n 01 yarder 0 002 @ 13603305 n 0000 ;u 06307152 n 0000 | (used only in combinations) the height or length of something in yards; "the golfer hit a 300-yarder to the green" -13650921 23 n 03 perch 1 rod 1 pole 1 004 @ 13603305 n 0000 #p 13651072 n 0000 ;r 08860123 n 0000 %p 13650447 n 0000 | a linear measure of 16.5 feet -13651072 23 n 01 furlong 0 004 @ 13603305 n 0000 #p 13651218 n 0000 %p 13650921 n 0000 %p 13653154 n 0000 | a unit of length equal to 220 yards -13651218 23 n 06 mile 1 statute_mile 0 stat_mi 0 land_mile 0 international_mile 0 mi 0 007 @ 13603305 n 0000 #p 13652066 n 0000 + 13651520 n 0101 + 10315561 n 0101 %p 13651072 n 0000 %p 13651804 n 0000 %p 13651931 n 0000 | a unit of length equal to 1,760 yards or 5,280 feet; exactly 1609.344 meters -13651520 23 n 01 miler 0 009 @ 13603305 n 0000 ;u 06307152 n 0000 + 13660619 n 0103 + 13660868 n 0102 + 13660337 n 0102 + 13655414 n 0101 + 13655262 n 0101 + 13651218 n 0101 + 07469325 n 0101 | (used only in combinations) the length of something in miles; "the race was a 30-miler" -13651804 23 n 02 half_mile 0 880_yards 0 002 @ 13603305 n 0000 #p 13651218 n 0000 | a unit of length equal to half of 1 mile -13651931 23 n 02 quarter_mile 0 440_yards 0 002 @ 13603305 n 0000 #p 13651218 n 0000 | a unit of length equal to a quarter of 1 mile -13652066 23 n 01 league 0 002 @ 13603305 n 0000 %p 13651218 n 0000 | an obsolete unit of distance of variable length (usually 3 miles) -13652203 23 n 01 ligne 0 002 @ 13603305 n 0000 #p 13649791 n 0000 | a linear unit (1/40 inch) used to measure diameter of buttons -13652335 23 n 01 nail 0 001 @ 13603305 n 0000 | a former unit of length for cloth equal to 1/16 of a yard -13652443 23 n 01 archine 0 001 @ 13603305 n 0000 | a Russian unit of length (71 cm) -13652529 23 n 02 kos 0 coss 0 001 @ 13603305 n 0000 | (in India) a unit of length having different values in different localities -13652661 23 n 01 vara 0 001 @ 13603305 n 0000 | a Spanish unit of length (about a yard) having different values in different localities -13652799 23 n 01 verst 0 001 @ 13603305 n 0000 | a Russian unit of length (1.067 km) -13652886 23 n 03 cable 0 cable_length 0 cable's_length 0 001 @ 13603305 n 0000 | a nautical unit of depth -13652994 23 n 01 chain 0 006 @ 13603305 n 0000 %p 13650447 n 0000 ~ 13653154 n 0000 ~ 13653261 n 0000 %p 13654777 n 0000 ~ 13660084 n 0000 | a unit of length -13653154 23 n 01 Gunter's_chain 0 002 @ 13652994 n 0000 #p 13651072 n 0000 | a unit of length (22 yards) -13653261 23 n 01 engineer's_chain 0 001 @ 13652994 n 0000 | a unit of length (100 ft) -13653349 23 n 01 cubit 0 001 @ 13603305 n 0000 | an ancient unit of length based on the length of the forearm -13653461 23 n 04 finger 1 fingerbreadth 0 finger's_breadth 0 digit 1 001 @ 13603305 n 0000 | the length of breadth of a finger used as a linear measure -13653615 23 n 01 fistmele 0 001 @ 13603305 n 0000 | about seven inches; the breadth of a fist with the thumb stuck out (used especially in archery to give the correct distance of the string from the bow) -13653821 23 n 01 body_length 0 001 @ 13603305 n 0000 | the length of your body -13653902 23 n 02 extremum 0 peak 0 005 @ 13758296 n 0000 + 01214255 a 0201 + 02008066 v 0202 ~ 13763384 n 0000 ~ 13776137 n 0000 | the most extreme possible amount or value; "voltage peak" -13654093 23 n 01 hand 0 001 @ 13654232 n 0000 | a unit of length equal to 4 inches; used in measuring horses; "the horse stood 20 hands" -13654232 23 n 02 handbreadth 0 handsbreadth 0 002 @ 13603305 n 0000 ~ 13654093 n 0000 | any unit of length based on the breadth of the human hand -13654380 23 n 01 head 0 001 @ 13603305 n 0000 | the length or height based on the size of a human or animal head; "he is two heads taller than his little sister"; "his horse won by a head" -13654571 23 n 01 lea 0 002 @ 13603305 n 0000 %p 13650447 n 0000 | a unit of length of thread or yarn -13654674 23 n 01 li 0 001 @ 13603305 n 0000 | Chinese distance measure; approximately 0.5 kilometers -13654777 23 n 01 link 1 002 @ 13603305 n 0000 #p 13652994 n 0000 | a unit of length equal to 1/100 of a chain -13654889 23 n 01 mesh 0 002 @ 13603305 n 0000 #p 13649791 n 0000 | the number of openings per linear inch of a screen; measures size of particles; "a 100 mesh screen"; "100 mesh powdered cellulose" -13655089 23 n 01 mil 1 002 @ 13603305 n 0000 #p 13649791 n 0000 | a unit of length equal to one thousandth of an inch; used to specify thickness (e.g., of sheets or wire) -13655262 23 n 03 mile 2 mil 5 Swedish_mile 0 003 @ 13603305 n 0000 + 13651520 n 0101 + 10315561 n 0101 | a Swedish unit of length equivalent to 10 km -13655414 23 n 02 mile 3 Roman_mile 0 003 @ 13603305 n 0000 + 13651520 n 0101 + 10315561 n 0101 | an ancient Roman unit of length equivalent to 1620 yards -13655570 23 n 01 Roman_pace 0 001 @ 13603305 n 0000 | an ancient Roman unit of length (4.85 English feet) measured as the distance from the heel of one foot to the heel of the same foot when next it touches the ground -13655790 23 n 01 geometric_pace 0 001 @ 13603305 n 0000 | a modern version of the Roman pace now taken to be 5 feet -13655908 23 n 01 military_pace 0 001 @ 13603305 n 0000 | the length of a single step in marching (taken to be 30 inches for quick time or 36 inches for double time) -13656075 23 n 01 palm 0 002 @ 13603305 n 0000 + 01210737 v 0102 | a linear unit based on the length or width of the human hand -13656204 23 n 01 span 1 001 @ 13603305 n 0000 | a unit of length based on the width of the expanded human hand (usually taken as 9 inches) -13656345 23 n 01 survey_mile 0 001 @ 13603305 n 0000 | a U.S. unit of measure equal to 1609.347 meters; derived from the use of 39.37 inches as the conversion for one meter -13656520 23 n 02 light_year 0 light-year 0 004 @ 13649054 n 0000 %p 13656749 n 0000 %p 13656913 n 0000 %p 13657080 n 0000 | the distance that light travels in a vacuum in 1 year; 5.88 trillion miles or 9.46 trillion kilometers -13656749 23 n 01 light_hour 0 002 @ 13649054 n 0000 #p 13656520 n 0000 | the distance light travels in a vacuum in one hour; approximately one billion kilometers -13656913 23 n 01 light_minute 0 002 @ 13649054 n 0000 #p 13656520 n 0000 | the distance light travels in a vacuum in one minute; approximately 18 million kilometers -13657080 23 n 01 light_second 0 002 @ 13649054 n 0000 #p 13656520 n 0000 | the distance light travels in a vacuum in one second; approximately 300,000 kilometers -13657244 23 n 02 Astronomical_Unit 0 AU 0 001 @ 13649054 n 0000 | a unit of length used for distances within the solar system; equal to the mean distance between the Earth and the Sun (approximately 93 million miles or 150 million kilometers) -13657489 23 n 02 parsec 0 secpar 0 001 @ 13649054 n 0000 | a unit of astronomical length based on the distance from Earth at which stellar parallax is 1 second of arc; equivalent to 3.262 light years -13657691 23 n 03 femtometer 0 femtometre 0 fermi 0 002 @ 13649268 n 0000 #p 13657849 n 0000 | a metric unit of length equal to one quadrillionth of a meter -13657849 23 n 03 picometer 0 picometre 0 micromicron 0 003 @ 13649268 n 0000 #p 13658027 n 0000 %p 13657691 n 0000 | a metric unit of length equal to one trillionth of a meter -13658027 23 n 03 angstrom 0 angstrom_unit 0 A 1 003 @ 13649268 n 0000 #p 13658278 n 0000 %p 13657849 n 0000 | a metric unit of length equal to one ten billionth of a meter (or 0.0001 micron); used to specify wavelengths of electromagnetic radiation -13658278 23 n 06 nanometer 0 nanometre 0 nm 0 millimicron 0 micromillimeter 0 micromillimetre 0 003 @ 13649268 n 0000 #p 13658496 n 0000 %p 13658027 n 0000 | a metric unit of length equal to one billionth of a meter -13658496 23 n 02 micron 0 micrometer 0 003 @ 13649268 n 0000 #p 13658657 n 0000 %p 13658278 n 0000 | a metric unit of length equal to one millionth of a meter -13658657 23 n 03 millimeter 0 millimetre 0 mm 0 003 @ 13649268 n 0000 #p 13658828 n 0000 %p 13658496 n 0000 | a metric unit of length equal to one thousandth of a meter -13658828 23 n 03 centimeter 0 centimetre 0 cm 0 003 @ 13649268 n 0000 #p 13658998 n 0000 %p 13658657 n 0000 | a metric unit of length equal to one hundredth of a meter -13658998 23 n 03 decimeter 0 decimetre 0 dm 0 003 @ 13649268 n 0000 #p 13659162 n 0000 %p 13658828 n 0000 | a metric unit of length equal to one tenth of a meter -13659162 23 n 03 meter 0 metre 0 m 0 006 @ 13649268 n 0000 #p 13659419 n 0000 + 02995636 a 0202 + 02995636 a 0101 + 02995636 a 0102 %p 13658998 n 0000 | the basic unit of length adopted under the Systeme International d'Unites (approximately 1.094 yards) -13659419 23 n 06 decameter 0 dekameter 0 decametre 0 dekametre 0 dam 0 dkm 0 003 @ 13649268 n 0000 #p 13659604 n 0000 %p 13659162 n 0000 | a metric unit of length equal to ten meters -13659604 23 n 03 hectometer 0 hectometre 0 hm 0 003 @ 13649268 n 0000 #p 13659760 n 0000 %p 13659419 n 0000 | a metric unit of length equal to 100 meters -13659760 23 n 04 kilometer 0 kilometre 0 km 0 klick 0 003 @ 13649268 n 0000 #p 13659943 n 0000 %p 13659604 n 0000 | a metric unit of length equal to 1000 meters (or 0.621371 miles) -13659943 23 n 03 myriameter 0 myriametre 0 mym 0 002 @ 13649268 n 0000 %p 13659760 n 0000 | a metric unit of length equal to 10,000 meters -13660084 23 n 01 nautical_chain 0 001 @ 13652994 n 0000 | a nautical unit of length (15 ft) -13660178 23 n 02 fathom 1 fthm 1 003 @ 13603305 n 0000 + 00491689 v 0101 %p 13650447 n 0000 | a linear unit of measurement (equal to 6 feet) for water depth -13660337 23 n 07 nautical_mile 1 mile 4 mi 4 naut_mi 0 knot 0 international_nautical_mile 0 air_mile 0 002 @ 13649626 n 0000 + 13651520 n 0201 | a unit of length used in navigation; exactly 1,852 meters; historically based on the distance spanned by one minute of arc in latitude -13660619 23 n 06 nautical_mile 2 naut_mi 1 mile 6 mi 5 geographical_mile 0 Admiralty_mile 0 002 @ 13649626 n 0000 + 13651520 n 0301 | a former British unit of length equivalent to 6,080 feet (1,853.184 meters); 800 feet longer than a statute mile -13660868 23 n 02 sea_mile 0 mile 5 002 @ 13649626 n 0000 + 13651520 n 0201 | a former British unit of length once used in navigation; equivalent to 6,000 feet (1828.8 meters) -13661045 23 n 02 halfpennyworth 0 ha'p'orth 0 001 @ 13764342 n 0000 | the amount that can be bought for a halfpenny -13661163 23 n 02 pennyworth 0 penn'orth 0 001 @ 13764342 n 0000 | the amount that can be bought for a penny -13661273 23 n 01 dollar 0 025 @ 13604718 n 0000 %p 13664521 n 0000 ~ 13671967 n 0000 ~ 13672077 n 0000 ~ 13672177 n 0000 ~ 13672274 n 0000 ~ 13672367 n 0000 ~ 13672462 n 0000 ~ 13672794 n 0000 ~ 13672967 n 0000 ~ 13673080 n 0000 ~ 13673178 n 0000 ~ 13673267 n 0000 ~ 13673362 n 0000 ~ 13673455 n 0000 ~ 13673554 n 0000 ~ 13673650 n 0000 ~ 13673747 n 0000 ~ 13673843 n 0000 ~ 13673946 n 0000 ~ 13674045 n 0000 ~ 13674138 n 0000 ~ 13674257 n 0000 ~ 13674350 n 0000 ~ 13674660 n 0000 | the basic monetary unit in many countries; equal to 100 cents -13661820 23 n 01 euro 0 001 @ 13604718 n 0000 | the basic monetary unit of most members of the European Union (introduced in 1999); in 2002 twelve European nations (Germany, France, Belgium, Luxembourg, the Netherlands, Italy, Spain, Portugal, Ireland, Greece, Austria, Finland) adopted the euro as their basic unit of money and abandoned their traditional currencies -13662190 23 n 01 franc 0 023 @ 13604718 n 0000 %p 13665965 n 0000 ~ 13676897 n 0000 ~ 13677019 n 0000 ~ 13677109 n 0000 ~ 13677222 n 0000 ~ 13677337 n 0000 ~ 13677469 n 0000 ~ 13677579 n 0000 ~ 13677692 n 0000 ~ 13677788 n 0000 ~ 13677889 n 0000 ~ 13677998 n 0000 ~ 13678145 n 0000 ~ 13678273 n 0000 ~ 13678373 n 0000 ~ 13678480 n 0000 ~ 13678589 n 0000 ~ 13678700 n 0000 ~ 13678816 n 0000 ~ 13678931 n 0000 ~ 13679038 n 0000 ~ 13707804 n 0000 | the basic monetary unit in many countries; equal to 100 centimes -13662703 23 n 02 fractional_monetary_unit 0 subunit 0 012 @ 13604718 n 0000 ~ 13664521 n 0000 ~ 13664808 n 0000 ~ 13665027 n 0000 ~ 13665256 n 0000 ~ 13665965 n 0000 ~ 13669006 n 0000 ~ 13672555 n 0000 ~ 13682450 n 0000 ~ 13694160 n 0000 ~ 13694367 n 0000 ~ 13703942 n 0000 | a monetary unit that is valued at a fraction (usually one hundredth) of the basic monetary unit -13663077 23 n 01 Afghan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13663229 n 0000 ~ 13663340 n 0000 | monetary unit in the Islamic State of Afghanistan -13663229 23 n 01 afghani 0 002 @ 13663077 n 0000 %p 13663340 n 0000 | the basic unit of money in Afghanistan -13663340 23 n 01 pul 0 002 #p 13663229 n 0000 @ 13663077 n 0000 | 100 puls equal 1 afghani in Afghanistan -13663448 23 n 01 Argentine_monetary_unit 0 002 @ 13604718 n 0000 ~ 13663562 n 0000 | monetary unit in Argentina -13663562 23 n 01 austral 0 002 @ 13663448 n 0000 %p 13665256 n 0000 | the basic unit of money in Argentina; equal to 100 centavos -13663694 23 n 01 Thai_monetary_unit 0 003 @ 13604718 n 0000 ~ 13663820 n 0000 ~ 13663933 n 0000 | monetary unit in Thailand -13663820 23 n 02 baht 0 tical 0 002 @ 13663694 n 0000 %p 13663933 n 0000 | the basic unit of money in Thailand -13663933 23 n 01 satang 0 002 #p 13663820 n 0000 @ 13663694 n 0000 | 100 satangs equal 1 baht in Thailand -13664041 23 n 01 Panamanian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13664153 n 0000 | monetary unit in Panama -13664153 23 n 01 balboa 0 002 @ 13664041 n 0000 %p 13664808 n 0000 | the basic unit of money in Panama; equal to 100 centesimos -13664283 23 n 01 Ethiopian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13664396 n 0000 | monetary unit in Ethiopia -13664396 23 n 01 birr 0 002 @ 13664283 n 0000 %p 13664521 n 0000 | the basic unit of money in Ethiopia; equal to 100 cents -13664521 23 n 01 cent 0 011 @ 13662703 n 0000 #p 13664396 n 0000 #p 13661273 n 0000 #p 13679855 n 0000 #p 13685216 n 0000 #p 13686137 n 0000 #p 13696523 n 0000 #p 13704643 n 0000 #p 13705153 n 0000 @ 13705415 n 0000 #p 13686877 n 0000 | a fractional monetary unit of several countries -13664808 23 n 01 centesimo 0 005 @ 13662703 n 0000 #p 13664153 n 0000 #p 13686376 n 0000 #p 13693349 n 0000 #p 13691509 n 0000 | a fractional monetary unit of several countries: Panama and Italy and Uruguay and Chile -13665027 23 n 01 centimo 0 005 @ 13662703 n 0000 #p 13666790 n 0000 #p 13667372 n 0000 #p 13679608 n 0000 #p 13690758 n 0000 | a fractional monetary unit of Venezuela and Costa Rica and Equatorial Guinea and Paraguay and Spain -13665256 23 n 01 centavo 0 020 @ 13662703 n 0000 #p 13663562 n 0000 #p 13667643 n 0000 #p 13675591 n 0000 #p 13675824 n 0000 #p 13676108 n 0000 #p 13691269 n 0000 #p 13684965 n 0000 #p 13688811 n 0000 #p 13691022 n 0000 #p 13691764 n 0000 #p 13692014 n 0000 #p 13692278 n 0000 #p 13692822 n 0000 #p 13693084 n 0000 #p 13693349 n 0000 #p 13692559 n 0000 #p 13696270 n 0000 #p 13667908 n 0000 #p 13707585 n 0000 | a fractional monetary unit of several countries: El Salvador and Sao Tome and Principe and Brazil and Argentina and Bolivia and Colombia and Cuba and the Dominican Republic and Ecuador and El Salvador and Guatemala and Honduras and Mexico and Nicaragua and Peru and the Philippines and Portugal -13665965 23 n 01 centime 0 021 @ 13662703 n 0000 #p 13662190 n 0000 #p 13668491 n 0000 #p 13676897 n 0000 #p 13679038 n 0000 #p 13677109 n 0000 #p 13677222 n 0000 #p 13677469 n 0000 #p 13677579 n 0000 #p 13677889 n 0000 #p 13677998 n 0000 #p 13678145 n 0000 #p 13678373 n 0000 #p 13671527 n 0000 #p 13678480 n 0000 #p 13678589 n 0000 #p 13678700 n 0000 #p 13678816 n 0000 #p 13678931 n 0000 ~ 13668632 n 0000 ~ 13679377 n 0000 | a fractional monetary unit of several countries: France and Algeria and Belgium and Burkina Faso and Burundi and Cameroon and Chad and the Congo and Gabon and Haiti and the Ivory Coast and Luxembourg and Mali and Morocco and Niger and Rwanda and Senegal and Switzerland and Togo -13666675 23 n 01 Venezuelan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13666790 n 0000 | monetary unit of Venezuela -13666790 23 n 01 bolivar 0 002 @ 13666675 n 0000 %p 13665027 n 0000 | the basic unit of money in Venezuela; equal to 100 centimos -13666922 23 n 01 Ghanian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13667048 n 0000 ~ 13667150 n 0000 | monetary unit of Ghana -13667048 23 n 01 cedi 0 002 @ 13666922 n 0000 %p 13667150 n 0000 | the basic unit of money in Ghana -13667150 23 n 01 pesewa 0 002 #p 13667048 n 0000 @ 13666922 n 0000 | 100 pesewas equal 1 cedi in Ghana -13667255 23 n 01 Costa_Rican_monetary_unit 0 002 @ 13604718 n 0000 ~ 13667372 n 0000 | monetary unit in Costa Rica -13667372 23 n 02 colon 0 Costa_Rican_colon 0 002 @ 13667255 n 0000 %p 13665027 n 0000 | the basic unit of money in Costa Rica; equal to 100 centimos -13667523 23 n 01 El_Salvadoran_monetary_unit 0 002 @ 13604718 n 0000 ~ 13667643 n 0000 | monetary unit in El Salvador -13667643 23 n 02 colon 1 El_Salvadoran_colon 0 002 @ 13667523 n 0000 %p 13665256 n 0000 | the basic unit of money in El Salvador; equal to 100 centavos -13667797 23 n 01 Brazilian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13667908 n 0000 | monetary unit in Brazil -13667908 23 n 01 real 1 002 @ 13667797 n 0000 %p 13665256 n 0000 | the basic unit of money in Brazil; equal to 100 centavos -13668034 23 n 01 Gambian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13668161 n 0000 ~ 13668266 n 0000 | monetary unit in Gambia -13668161 23 n 01 dalasi 0 002 @ 13668034 n 0000 %p 13668266 n 0000 | the basic unit of money in Gambia -13668266 23 n 02 butut 0 butat 0 002 #p 13668161 n 0000 @ 13668034 n 0000 | 100 bututs equal 1 dalasi in Gambia -13668380 23 n 01 Algerian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13668491 n 0000 | monetary unit in Algeria -13668491 23 n 02 Algerian_dinar 0 dinar 0 003 @ 13668380 n 0000 %p 13665965 n 0000 %p 13668632 n 0000 | the basic unit of money in Algeria -13668632 23 n 01 Algerian_centime 0 002 @ 13665965 n 0000 #p 13668491 n 0000 | 100 centimes equal 1 dinar in Algeria -13668751 23 n 01 Bahrainian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13668864 n 0000 | monetary unit in Bahrain -13668864 23 n 02 Bahrain_dinar 0 dinar 1 002 @ 13668751 n 0000 %p 13669006 n 0000 | the basic unit of money in Bahrain; equal to 1,000 fils -13669006 23 n 01 fils 0 005 @ 13662703 n 0000 #p 13668864 n 0000 #p 13669342 n 0000 #p 13669590 n 0000 #p 13669998 n 0000 | a fractional monetary unit in Bahrain and Iraq and Jordan and Kuwait; equal to one thousandth of a dinar -13669237 23 n 01 Iraqi_monetary_unit 0 002 @ 13604718 n 0000 ~ 13669342 n 0000 | monetary unit in Iraq -13669342 23 n 02 Iraqi_dinar 0 dinar 2 002 @ 13669237 n 0000 %p 13669006 n 0000 | the basic unit of money in Iraq; equal to 1,000 fils -13669479 23 n 01 Jordanian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13669590 n 0000 | monetary unit in Jordan -13669590 23 n 02 Jordanian_dinar 0 dinar 3 002 @ 13669479 n 0000 %p 13669006 n 0000 | the basic unit of money in Jordan; equal to 1,000 fils -13669733 23 n 01 Kuwaiti_monetary_unit 0 003 @ 13604718 n 0000 ~ 13669860 n 0000 ~ 13669998 n 0000 | monetary unit in Kuwait -13669860 23 n 02 Kuwaiti_dinar 0 dinar 4 002 @ 13669733 n 0000 %p 13669998 n 0000 | the basic unit of money in Kuwait; equal 1,000 fils -13669998 23 n 02 Kuwaiti_dirham 0 dirham 1 003 @ 13669733 n 0000 #p 13669860 n 0000 %p 13669006 n 0000 | worth one tenth of a Kuwaiti dinar; equal 100 fils -13670156 23 n 01 Libyan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13670281 n 0000 ~ 13670399 n 0000 | monetary unit in Libya -13670281 23 n 02 Libyan_dinar 0 dinar 5 002 @ 13670156 n 0000 %p 13670399 n 0000 | the basic unit of money in Libya -13670399 23 n 02 Libyan_dirham 0 dirham 2 002 @ 13670156 n 0000 #p 13670281 n 0000 | 100 dirhams equal 1 dinar in Libya -13670521 23 n 01 Tunisian_monetary_unit 0 004 @ 13604718 n 0000 ~ 13670668 n 0000 ~ 13670790 n 0000 ~ 13670935 n 0000 | monetary unit in Tunisia -13670668 23 n 02 Tunisian_dinar 0 dinar 7 002 @ 13670521 n 0000 %p 13670790 n 0000 | the basic unit of money in Tunisia -13670790 23 n 02 Tunisian_dirham 0 dirham 3 003 @ 13670521 n 0000 #p 13670668 n 0000 %p 13670935 n 0000 | 100 dirhams equal 1 dinar in Tunisia -13670935 23 n 01 millime 0 002 @ 13670521 n 0000 #p 13670790 n 0000 | 1,000 millimes equal 1 dinar in Tunisia -13671047 23 n 01 Yugoslavian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13671182 n 0000 ~ 13671310 n 0000 | monetary unit in Yugoslavia -13671182 23 n 02 Yugoslavian_dinar 0 dinar 8 002 @ 13671047 n 0000 %p 13671310 n 0000 | the basic unit of money in Yugoslavia -13671310 23 n 01 para 0 002 @ 13671047 n 0000 #p 13671182 n 0000 | 100 para equal 1 dinar in Yugoslavia -13671416 23 n 01 Moroccan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13671527 n 0000 | monetary unit in Morocco -13671527 23 n 02 Moroccan_dirham 0 dirham 4 002 @ 13671416 n 0000 %p 13665965 n 0000 | the basic unit of money in Morocco; equal to 100 centimes -13671674 23 n 01 United_Arab_Emirate_monetary_unit 0 002 @ 13604718 n 0000 ~ 13671813 n 0000 | monetary unit in the United Arab Emirates -13671813 23 n 02 United_Arab_Emirate_dirham 0 dirham 5 001 @ 13671674 n 0000 | the basic unit of money in the United Arab Emirates; equal to 1,000 fils -13671967 23 n 01 Australian_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Australia and Nauru -13672077 23 n 01 Bahamian_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in the Bahamas -13672177 23 n 01 Barbados_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Barbados -13672274 23 n 01 Belize_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Belize -13672367 23 n 01 Bermuda_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Bermuda -13672462 23 n 01 Brunei_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Brunei -13672555 23 n 01 sen 0 005 @ 13662703 n 0000 #p 13705674 n 0000 #p 13697840 n 0000 #p 13698076 n 0000 #p 13709700 n 0000 | a fractional monetary unit of Japan and Indonesia and Cambodia; equal to one hundredth of a yen or rupiah or riel -13672794 23 n 02 Canadian_dollar 0 loonie 0 001 @ 13661273 n 0000 | the basic unit of money in Canada; "the Canadian dollar has the image of loon on one side of the coin" -13672967 23 n 01 Cayman_Islands_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in the Cayman Islands -13673080 23 n 01 Dominican_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Dominica -13673178 23 n 01 Fiji_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Fiji -13673267 23 n 01 Grenada_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Grenada -13673362 23 n 01 Guyana_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Guyana -13673455 23 n 01 Hong_Kong_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Hong Kong -13673554 23 n 01 Jamaican_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Jamaica -13673650 23 n 01 Kiribati_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Kiribati -13673747 23 n 01 Liberian_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Liberia -13673843 23 n 01 New_Zealand_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in New Zealand -13673946 23 n 01 Singapore_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Singapore -13674045 23 n 01 Taiwan_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Taiwan -13674138 23 n 01 Trinidad_and_Tobago_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Trinidad and Tobago -13674257 23 n 01 Tuvalu_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Tuvalu -13674350 23 n 01 United_States_dollar 0 002 @ 13661273 n 0000 ~ 13674479 n 0000 | the basic unit of money in the United States -13674479 23 n 01 Eurodollar 0 002 @ 13674350 n 0000 @ 13386136 n 0000 | a United States dollar deposited in a European bank and used as an international currency to finance trade -13674660 23 n 01 Zimbabwean_dollar 0 001 @ 13661273 n 0000 | the basic unit of money in Zimbabwe -13674759 23 n 01 Vietnamese_monetary_unit 0 003 @ 13604718 n 0000 ~ 13674890 n 0000 ~ 13674994 n 0000 | monetary unit in Vietnam -13674890 23 n 01 dong 0 002 @ 13674759 n 0000 %p 13674994 n 0000 | the basic unit of money in Vietnam -13674994 23 n 01 hao 0 002 #p 13674890 n 0000 @ 13674759 n 0000 | 10 hao equal 1 dong in Vietnam -13675093 23 n 01 Greek_monetary_unit 0 003 @ 13604718 n 0000 ~ 13675218 n 0000 ~ 13675349 n 0000 | monetary unit in Greece -13675218 23 n 02 drachma 0 Greek_drachma 0 002 @ 13675093 n 0000 %p 13675349 n 0000 | formerly the basic unit of money in Greece -13675349 23 n 01 lepton 0 002 #p 13675218 n 0000 @ 13675093 n 0000 | 100 lepta equal 1 drachma in Greece -13675456 23 n 01 Sao_Thome_e_Principe_monetary_unit 0 002 @ 13604718 n 0000 ~ 13675591 n 0000 | monetary unit on Sao Tome e Principe -13675591 23 n 01 dobra 0 002 @ 13675456 n 0000 %p 13665256 n 0000 | the basic unit of money on Sao Tome e Principe -13675708 23 n 01 Cape_Verde_monetary_unit 0 002 @ 13604718 n 0000 ~ 13675824 n 0000 | monetary unit on Cape Verde -13675824 23 n 02 Cape_Verde_escudo 0 escudo 1 002 @ 13675708 n 0000 %p 13665256 n 0000 | the basic unit of money on Cape Verde; equal to 100 centavos -13675976 23 n 01 Portuguese_monetary_unit 0 003 @ 13604718 n 0000 ~ 13676108 n 0000 ~ 13676285 n 0000 | monetary unit in Portugal -13676108 23 n 02 Portuguese_escudo 0 escudo 2 003 @ 13675976 n 0000 #p 13676285 n 0000 %p 13665256 n 0000 | formerly the basic monetary unit of Portugal; equal to 100 centavo -13676285 23 n 01 conto 0 002 @ 13675976 n 0000 %p 13676108 n 0000 | 1 conto equals 1,000 escudos in Portugal -13676396 23 n 01 Hungarian_monetary_unit 0 004 @ 13604718 n 0000 ~ 13676544 n 0000 ~ 13676650 n 0000 ~ 13676758 n 0000 | monetary unit in Hungary -13676544 23 n 01 forint 0 002 @ 13676396 n 0000 %p 13676650 n 0000 | the basic unit of money in Hungary -13676650 23 n 01 filler 0 002 #p 13676544 n 0000 @ 13676396 n 0000 | 100 filler equal 1 forint in Hungary -13676758 23 n 01 pengo 0 001 @ 13676396 n 0000 | formerly the basic unit of money in Hungary until it was replaced by the forint in 1946 -13676897 23 n 01 Belgian_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | formerly the basic unit of money in Belgium -13677019 23 n 01 Benin_franc 0 001 @ 13662190 n 0000 | the basic unit of money in Benin -13677109 23 n 01 Burundi_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Burundi -13677222 23 n 01 Cameroon_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Cameroon -13677337 23 n 01 Central_African_Republic_franc 0 001 @ 13662190 n 0000 | the basic unit of money in the Central African Republic -13677469 23 n 01 Chadian_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Chad -13677579 23 n 01 Congo_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in the Congo -13677692 23 n 01 Djibouti_franc 0 001 @ 13662190 n 0000 | the basic unit of money in Djibouti -13677788 23 n 01 French_franc 0 001 @ 13662190 n 0000 | formerly the basic unit of money in France -13677889 23 n 01 Gabon_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Gabon -13677998 23 n 02 Ivory_Coast_franc 0 Cote_d'Ivoire_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in the Ivory Coast -13678145 23 n 01 Luxembourg_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | formerly the basic unit of money in Luxembourg -13678273 23 n 01 Madagascar_franc 0 001 @ 13662190 n 0000 | the basic unit of money in Madagascar -13678373 23 n 01 Mali_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Mali -13678480 23 n 01 Niger_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Niger -13678589 23 n 01 Rwanda_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Rwanda -13678700 23 n 01 Senegalese_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Senegal -13678816 23 n 01 Swiss_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Switzerland -13678931 23 n 01 Togo_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Togo -13679038 23 n 01 Burkina_Faso_franc 0 002 @ 13662190 n 0000 %p 13665965 n 0000 | the basic unit of money in Burkina Faso -13679161 23 n 01 Haitian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13679273 n 0000 | the monetary unit in Haiti -13679273 23 n 01 gourde 0 002 @ 13679161 n 0000 %p 13679377 n 0000 | the basic unit of money in Haiti -13679377 23 n 01 Haitian_centime 0 002 @ 13665965 n 0000 #p 13679273 n 0000 | 100 centimes equal 1 gourde in Haiti -13679494 23 n 01 Paraguayan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13679608 n 0000 | monetary unit in Paraguay -13679608 23 n 01 guarani 0 002 @ 13679494 n 0000 %p 13665027 n 0000 | the basic unit of money in Paraguay; equal to 100 centimos -13679739 23 n 01 Dutch_monetary_unit 0 002 @ 13604718 n 0000 ~ 13679855 n 0000 | monetary unit in the Netherlands -13679855 23 n 04 guilder 1 gulden 1 florin 1 Dutch_florin 0 002 @ 13679739 n 0000 %p 13664521 n 0000 | formerly the basic unit of money in the Netherlands; equal to 100 cents -13680032 23 n 01 Surinamese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13680146 n 0000 | monetary unit in Suriname -13680146 23 n 03 guilder 2 gulden 2 florin 2 001 @ 13680032 n 0000 | the basic unit of money in Suriname; equal to 100 cents -13680273 23 n 01 Peruvian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13680381 n 0000 | monetary unit in Peru -13680381 23 n 01 inti 0 001 @ 13680273 n 0000 | the basic unit of money in Peru -13680463 23 n 01 Papuan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13680599 n 0000 ~ 13680712 n 0000 | monetary unit in Papua New Guinea -13680599 23 n 01 kina 0 002 @ 13680463 n 0000 %p 13680712 n 0000 | the basic unit of money in Papua New Guinea -13680712 23 n 01 toea 0 002 #p 13680599 n 0000 @ 13680463 n 0000 | 100 toea equal 1 kina in Papua New Guinea -13680823 23 n 01 Laotian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13680948 n 0000 ~ 13681048 n 0000 | monetary unit in Laos -13680948 23 n 01 kip 0 002 @ 13680823 n 0000 %p 13681048 n 0000 | the basic unit of money in Laos -13681048 23 n 01 at 0 002 #p 13680948 n 0000 @ 13680823 n 0000 | 100 at equal 1 kip in Laos -13681142 23 n 01 Czech_monetary_unit 0 003 @ 13604718 n 0000 ~ 13681275 n 0000 ~ 13681407 n 0000 | monetary unit in Czech Republic -13681275 23 n 01 koruna 0 003 @ 13681142 n 0000 %p 13681407 n 0000 %p 13681749 n 0000 | the basic unit of money in Czech Republic -13681407 23 n 02 haler 0 heller 0 002 #p 13681275 n 0000 @ 13681142 n 0000 | 100 halers equal 1 koruna in Czech Republic -13681530 23 n 01 Slovakian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13681661 n 0000 ~ 13681749 n 0000 | monetary unit in Slovakia -13681661 23 n 01 koruna 1 001 @ 13681530 n 0000 | the basic unit of money in Slovakia -13681749 23 n 02 haler 1 heller 1 002 @ 13681530 n 0000 #p 13681275 n 0000 | 100 halers equal 1 koruna Slovakia -13681863 23 n 01 Icelandic_monetary_unit 0 003 @ 13604718 n 0000 ~ 13681993 n 0000 ~ 13682116 n 0000 | monetary unit in Iceland -13681993 23 n 02 Icelandic_krona 0 krona 1 002 @ 13681863 n 0000 %p 13682116 n 0000 | the basic unit of money in Iceland -13682116 23 n 01 eyrir 0 002 #p 13681993 n 0000 @ 13681863 n 0000 | 100 aurar equal 1 krona in Iceland -13682221 23 n 01 Swedish_monetary_unit 0 002 @ 13604718 n 0000 ~ 13682330 n 0000 | monetary unit in Sweden -13682330 23 n 02 Swedish_krona 0 krona 2 002 @ 13682221 n 0000 %p 13682450 n 0000 | the basic unit of money in Sweden -13682450 23 n 01 ore 0 004 @ 13662703 n 0000 #p 13682330 n 0000 #p 13682740 n 0000 #p 13682971 n 0000 | a monetary subunit in Denmark and Norway and Sweden; 100 ore equal 1 krona -13682631 23 n 01 Danish_monetary_unit 0 002 @ 13604718 n 0000 ~ 13682740 n 0000 | monetary unit in Denmark -13682740 23 n 02 Danish_krone 0 krone 1 002 @ 13682631 n 0000 %p 13682450 n 0000 | the basic unit of money in Denmark -13682860 23 n 01 Norwegian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13682971 n 0000 | monetary unit in Norway -13682971 23 n 02 Norwegian_krone 0 krone 2 002 @ 13682860 n 0000 %p 13682450 n 0000 | the basic unit of money in Norway -13683093 23 n 01 Malawian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13683221 n 0000 ~ 13683342 n 0000 | monetary unit in Malawi -13683221 23 n 02 Malawi_kwacha 0 kwacha 1 002 @ 13683093 n 0000 %p 13683342 n 0000 | the basic unit of money in Malawi -13683342 23 n 01 tambala 0 002 #p 13683221 n 0000 @ 13683093 n 0000 | 100 tambala equal 1 kwacha in Malawi -13683451 23 n 01 Zambian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13683578 n 0000 ~ 13683700 n 0000 | monetary unit in Zambia -13683578 23 n 02 Zambian_kwacha 0 kwacha 2 002 @ 13683451 n 0000 %p 13683700 n 0000 | the basic unit of money in Zambia -13683700 23 n 01 ngwee 0 002 #p 13683578 n 0000 @ 13683451 n 0000 | 100 ngwee equal 1 kwacha in Zambia -13683805 23 n 01 Angolan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13683932 n 0000 ~ 13684037 n 0000 | monetary unit in Angola -13683932 23 n 01 kwanza 0 002 @ 13683805 n 0000 %p 13684037 n 0000 | the basic unit of money in Angola -13684037 23 n 01 lwei 0 002 #p 13683932 n 0000 @ 13683805 n 0000 | 100 lwei equal 1 kwanza in Angola -13684140 23 n 01 Myanmar_monetary_unit 0 004 @ 13604718 n 0000 ;r 08715390 n 0000 ~ 13684298 n 0000 ~ 13684402 n 0000 | monetary unit in the Union of Burma -13684298 23 n 01 kyat 0 002 @ 13684140 n 0000 %p 13684402 n 0000 | the basic unit of money in Myanmar -13684402 23 n 01 pya 0 002 #p 13684298 n 0000 @ 13684140 n 0000 | 100 pyas equal 1 kyat in Myanmar -13684503 23 n 01 Albanian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13684632 n 0000 ~ 13684735 n 0000 | monetary unit in Albania -13684632 23 n 01 lek 0 002 @ 13684503 n 0000 %p 13684735 n 0000 | the basic unit of money in Albania -13684735 23 n 02 qindarka 0 qintar 0 002 #p 13684632 n 0000 @ 13684503 n 0000 | 100 qindarka equal 1 lek in Albania -13684853 23 n 01 Honduran_monetary_unit 0 002 @ 13604718 n 0000 ~ 13684965 n 0000 | monetary unit in Honduras -13684965 23 n 01 lempira 0 002 @ 13684853 n 0000 %p 13665256 n 0000 | the basic unit of money in Honduras; equal to 100 centavos -13685096 23 n 01 Sierra_Leone_monetary_unit 0 002 @ 13604718 n 0000 ~ 13685216 n 0000 | monetary unit in Sierra Leone -13685216 23 n 01 leone 0 002 @ 13685096 n 0000 %p 13664521 n 0000 | the basic unit of money in Sierra Leone; equal to 100 cents -13685346 23 n 01 Romanian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13685475 n 0000 ~ 13685578 n 0000 | monetary unit in Romania -13685475 23 n 01 leu 0 002 @ 13685346 n 0000 %p 13685578 n 0000 | the basic unit of money in Romania -13685578 23 n 01 ban 0 002 #p 13685475 n 0000 @ 13685346 n 0000 | 100 bani equal 1 leu in Romania -13685678 23 n 01 Bulgarian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13685809 n 0000 ~ 13685913 n 0000 | monetary unit in Bulgaria -13685809 23 n 01 lev 0 002 @ 13685678 n 0000 %p 13685913 n 0000 | the basic unit of money in Bulgaria -13685913 23 n 01 stotinka 0 002 #p 13685809 n 0000 @ 13685678 n 0000 | 100 stotinka equal 1 lev in Bulgaria -13686023 23 n 01 Swaziland_monetary_unit 0 002 @ 13604718 n 0000 ~ 13686137 n 0000 | monetary unit in Swaziland -13686137 23 n 01 lilangeni 0 002 @ 13686023 n 0000 %p 13664521 n 0000 | the basic unit of money in Swaziland; equal to 100 cents -13686268 23 n 01 Italian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13686376 n 0000 | monetary unit in Italy -13686376 23 n 02 lira 1 Italian_lira 0 002 @ 13686268 n 0000 %p 13664808 n 0000 | formerly the basic unit of money in Italy; equal to 100 centesimi -13686526 23 n 01 British_monetary_unit 0 003 @ 13604718 n 0000 ~ 13686660 n 0000 ~ 13686877 n 0000 | monetary unit in Great Britain -13686660 23 n 05 British_pound 0 pound 1 British_pound_sterling 0 pound_sterling 0 quid 0 002 @ 13686526 n 0000 %p 13694367 n 0000 | the basic unit of money in Great Britain and Northern Ireland; equal to 100 pence -13686877 23 n 03 British_shilling 0 shilling 1 bob 0 002 @ 13686526 n 0000 %p 13664521 n 0000 | a former monetary unit in Great Britain -13687015 23 n 01 Turkish_monetary_unit 0 004 @ 13604718 n 0000 ~ 13687160 n 0000 ~ 13687278 n 0000 ~ 13687420 n 0000 | monetary unit in Turkey -13687160 23 n 02 lira 2 Turkish_lira 0 002 @ 13687015 n 0000 %p 13687278 n 0000 | the basic unit of money in Turkey -13687278 23 n 03 kurus 0 piaster 1 piastre 1 003 #p 13687160 n 0000 @ 13687015 n 0000 %p 13687420 n 0000 | 100 kurus equal 1 lira in Turkey -13687420 23 n 01 asper 0 002 #p 13687278 n 0000 @ 13687015 n 0000 | 20 aspers equal 1 kurus in Turkey -13687524 23 n 01 Lesotho_monetary_unit 0 003 @ 13604718 n 0000 ~ 13687652 n 0000 ~ 13687756 n 0000 | monetary unit in Lesotho -13687652 23 n 01 loti 0 002 @ 13687524 n 0000 %p 13687756 n 0000 | the basic unit of money in Lesotho -13687756 23 n 01 sente 0 002 #p 13687652 n 0000 @ 13687524 n 0000 | 100 lisente equal 1 loti in Lesotho; one sente is worth one-hundredth of a loti -13687906 23 n 01 German_monetary_unit 0 003 @ 13604718 n 0000 ~ 13688033 n 0000 ~ 13688190 n 0000 | monetary unit in Germany -13688033 23 n 04 mark 0 German_mark 0 Deutsche_Mark 0 Deutschmark 0 002 @ 13687906 n 0000 %p 13688190 n 0000 | formerly the basic unit of money in Germany -13688190 23 n 01 pfennig 0 002 @ 13687906 n 0000 #p 13688033 n 0000 | 100 pfennigs formerly equaled 1 Deutsche Mark in Germany -13688319 23 n 01 Finnish_monetary_unit 0 003 @ 13604718 n 0000 ~ 13688447 n 0000 ~ 13688577 n 0000 | monetary unit in Finland -13688447 23 n 02 markka 0 Finnish_mark 0 002 @ 13688319 n 0000 %p 13688577 n 0000 | formerly the basic unit of money in Finland -13688577 23 n 01 penni 0 002 #p 13688447 n 0000 @ 13688319 n 0000 | 100 pennia formerly equaled 1 markka in Finland -13688695 23 n 01 Mozambique_monetary_unit 0 002 @ 13604718 n 0000 ~ 13688811 n 0000 | monetary unit in Mozambique -13688811 23 n 01 metical 0 002 @ 13688695 n 0000 %p 13665256 n 0000 | the basic unit of money in Mozambique; equal to 100 centavos -13688944 23 n 01 Nigerian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13689073 n 0000 ~ 13689178 n 0000 | monetary unit in Nigeria -13689073 23 n 01 naira 0 002 @ 13688944 n 0000 %p 13689178 n 0000 | the basic unit of money in Nigeria -13689178 23 n 01 kobo 0 002 #p 13689073 n 0000 @ 13688944 n 0000 | 100 kobos equal 1 naira in Nigeria -13689282 23 n 01 Bhutanese_monetary_unit 0 003 @ 13604718 n 0000 ~ 13689411 n 0000 ~ 13689518 n 0000 | monetary unit in Bhutan -13689411 23 n 01 ngultrum 0 002 @ 13689282 n 0000 %p 13689518 n 0000 | the basic unit of money in Bhutan -13689518 23 n 01 chetrum 0 002 #p 13689411 n 0000 @ 13689282 n 0000 | 100 chetrums equal 1 ngultrum in Bhutan -13689630 23 n 01 Mauritanian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13689765 n 0000 ~ 13689875 n 0000 | monetary unit in Mauritania -13689765 23 n 01 ouguiya 0 002 @ 13689630 n 0000 %p 13689875 n 0000 | the basic unit of money in Mauritania -13689875 23 n 01 khoum 0 002 #p 13689765 n 0000 @ 13689630 n 0000 | 5 khoums equal 1 ouguiya in Mauritania -13689984 23 n 01 Tongan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13690109 n 0000 ~ 13690214 n 0000 | monetary unit in Tonga -13690109 23 n 01 pa'anga 0 002 @ 13689984 n 0000 %p 13690214 n 0000 | the basic unit of money in Tonga -13690214 23 n 01 seniti 0 002 #p 13690109 n 0000 @ 13689984 n 0000 | 100 seniti equal 1 pa'anga in Tonga -13690321 23 n 01 Macao_monetary_unit 0 003 @ 13604718 n 0000 ~ 13690445 n 0000 ~ 13690549 n 0000 | monetary unit in Macao -13690445 23 n 01 pataca 0 002 @ 13690321 n 0000 %p 13690549 n 0000 | the basic unit of money in Macao -13690549 23 n 01 avo 0 002 #p 13690445 n 0000 @ 13690321 n 0000 | 100 avos equal 1 pataca in Macao -13690650 23 n 01 Spanish_monetary_unit 0 002 @ 13604718 n 0000 ~ 13690758 n 0000 | monetary unit in Spain -13690758 23 n 02 peseta 0 Spanish_peseta 0 002 @ 13690650 n 0000 %p 13665027 n 0000 | formerly the basic unit of money in Spain; equal to 100 centimos -13690911 23 n 01 Bolivian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13691022 n 0000 | monetary unit in Bolivia -13691022 23 n 01 boliviano 0 002 @ 13690911 n 0000 %p 13665256 n 0000 | the basic unit of money in Bolivia; equal to 100 centavos -13691154 23 n 01 Nicaraguan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13691269 n 0000 | monetary unit in Nicaragua -13691269 23 n 01 cordoba 0 002 @ 13691154 n 0000 %p 13665256 n 0000 | the basic unit of money in Nicaragua; equal to 100 centavos -13691401 23 n 01 Chilean_monetary_unit 0 002 @ 13604718 n 0000 ~ 13691509 n 0000 | monetary unit in Chile -13691509 23 n 02 Chilean_peso 0 peso 9 002 @ 13691401 n 0000 %p 13664808 n 0000 | the basic unit of money in Chile; equal to 100 centesimos -13691651 23 n 01 Colombian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13691764 n 0000 | monetary unit in Colombia -13691764 23 n 02 Colombian_peso 0 peso 3 002 @ 13691651 n 0000 %p 13665256 n 0000 | the basic unit of money in Colombia; equal to 100 centavos -13691909 23 n 01 Cuban_monetary_unit 0 002 @ 13604718 n 0000 ~ 13692014 n 0000 | monetary unit in Cuba -13692014 23 n 02 Cuban_peso 0 peso 4 002 @ 13691909 n 0000 %p 13665256 n 0000 | the basic unit of money in Cuba; equal to 100 centavos -13692151 23 n 01 Dominican_monetary_unit 0 002 @ 13604718 n 0000 ~ 13692278 n 0000 | monetary unit in the Dominican Republic -13692278 23 n 02 Dominican_peso 0 peso 5 002 @ 13692151 n 0000 %p 13665256 n 0000 | the basic unit of money in the Dominican Republic; equal to 100 centavos -13692437 23 n 01 Guinea-Bissau_monetary_unit 0 002 @ 13604718 n 0000 ~ 13692559 n 0000 | monetary unit in Guinea-Bissau -13692559 23 n 02 Guinea-Bissau_peso 0 peso a 002 @ 13692437 n 0000 %p 13665256 n 0000 | the basic unit of money in Guinea-Bissau; equal to 100 centavos -13692713 23 n 01 Mexican_monetary_unit 0 002 @ 13604718 n 0000 ~ 13692822 n 0000 | monetary unit in Mexico -13692822 23 n 02 Mexican_peso 0 peso 6 002 @ 13692713 n 0000 %p 13665256 n 0000 | the basic unit of money in Mexico; equal to 100 centavos -13692963 23 n 01 Philippine_monetary_unit 0 002 @ 13604718 n 0000 ~ 13693084 n 0000 | monetary unit in the Philippines -13693084 23 n 02 Philippine_peso 0 peso 7 002 @ 13692963 n 0000 %p 13665256 n 0000 | the basic unit of money in the Philippines; equal to 100 centavos -13693237 23 n 01 Uruguayan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13693349 n 0000 | monetary unit in Uruguay -13693349 23 n 02 Uruguayan_peso 0 peso 8 003 @ 13693237 n 0000 %p 13664808 n 0000 %p 13665256 n 0000 | the basic unit of money in Uruguay; equal to 100 centesimos -13693514 23 n 01 Cypriot_monetary_unit 0 003 @ 13604718 n 0000 ~ 13693641 n 0000 ~ 13693781 n 0000 | monetary unit in Cyprus -13693641 23 n 02 Cypriot_pound 0 pound 2 002 @ 13693514 n 0000 %p 13693781 n 0000 | the basic unit of money in Cyprus; equal to 100 cents -13693781 23 n 01 mil 4 002 #p 13693641 n 0000 @ 13693514 n 0000 | a Cypriot monetary unit equal to one thousandth of a pound -13693908 23 n 01 Egyptian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13694017 n 0000 | monetary unit in Egypt -13694017 23 n 02 Egyptian_pound 0 pound 3 002 @ 13693908 n 0000 %p 13694160 n 0000 | the basic unit of money in Egypt; equal to 100 piasters -13694160 23 n 02 piaster 0 piastre 0 005 @ 13662703 n 0000 #p 13694017 n 0000 #p 13694936 n 0000 #p 13695420 n 0000 #p 13695674 n 0000 | a fractional monetary unit in Egypt and Lebanon and Sudan and Syria -13694367 23 n 01 penny 0 003 @ 13662703 n 0000 #p 13694657 n 0000 #p 13686660 n 0000 | a fractional monetary unit of Ireland and the United Kingdom; equal to one hundredth of a pound -13694552 23 n 01 Irish_monetary_unit 0 002 @ 13604718 n 0000 ~ 13694657 n 0000 | monetary unit in Eire -13694657 23 n 04 Irish_pound 0 Irish_punt 0 punt 0 pound 4 002 @ 13694552 n 0000 %p 13694367 n 0000 | formerly the basic unit of money in Ireland; equal to 100 pence -13694825 23 n 01 Lebanese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13694936 n 0000 | monetary unit in Lebanon -13694936 23 n 02 Lebanese_pound 0 pound 5 002 @ 13694825 n 0000 %p 13694160 n 0000 | the basic unit of money in Lebanon; equal to 100 piasters -13695081 23 n 01 Maltese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13695189 n 0000 | monetary unit on Malta -13695189 23 n 02 lira 3 Maltese_lira 0 001 @ 13695081 n 0000 | the basic unit of money on Malta; equal to 100 cents -13695307 23 n 01 Sudanese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13695420 n 0000 | monetary unit in the Sudan -13695420 23 n 02 Sudanese_pound 0 pound 7 002 @ 13695307 n 0000 %p 13694160 n 0000 | the basic unit of money in the Sudan; equal to 100 piasters -13695567 23 n 01 Syrian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13695674 n 0000 | monetary unit in Syria -13695674 23 n 02 Syrian_pound 0 pound 8 002 @ 13695567 n 0000 %p 13694160 n 0000 | the basic unit of money in Syria; equal to 100 piasters -13695815 23 n 01 Botswana_monetary_unit 0 003 @ 13604718 n 0000 ~ 13695945 n 0000 ~ 13696050 n 0000 | monetary unit in Botswana -13695945 23 n 01 pula 0 002 @ 13695815 n 0000 %p 13696050 n 0000 | the basic unit of money in Botswana -13696050 23 n 01 thebe 0 002 #p 13695945 n 0000 @ 13695815 n 0000 | 100 thebe equal 1 pula in Botswana -13696155 23 n 01 Guatemalan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13696270 n 0000 | monetary unit in Guatemala -13696270 23 n 01 quetzal 0 002 @ 13696155 n 0000 %p 13665256 n 0000 | the basic unit of money in Guatemala; equal to 100 centavos -13696402 23 n 01 South_African_monetary_unit 0 002 @ 13604718 n 0000 ~ 13696523 n 0000 | monetary unit in South Africa -13696523 23 n 01 rand 0 002 @ 13696402 n 0000 %p 13664521 n 0000 | the basic unit of money in South Africa; equal to 100 cents -13696652 23 n 01 Iranian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13696777 n 0000 ~ 13696893 n 0000 | monetary unit in Iran -13696777 23 n 02 Iranian_rial 0 rial 1 002 @ 13696652 n 0000 %p 13696893 n 0000 | the basic unit of money in Iran -13696893 23 n 02 Iranian_dinar 0 dinar 9 002 @ 13696652 n 0000 #p 13696777 n 0000 | 100 dinars equal 1 rial in Iran -13697011 23 n 01 Omani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13697134 n 0000 ~ 13697262 n 0000 | monetary unit in Oman -13697134 23 n 03 riyal-omani 0 Omani_rial 0 rial 2 002 @ 13697011 n 0000 %p 13697262 n 0000 | the basic unit of money in Oman -13697262 23 n 02 baiza 0 baisa 0 002 @ 13697011 n 0000 #p 13697134 n 0000 | 1,000 baiza equal 1 riyal-omani in Oman -13697380 23 n 01 Yemeni_monetary_unit 0 003 @ 13604718 n 0000 ~ 13697505 n 0000 ~ 13697621 n 0000 | monetary unit in Yemen -13697505 23 n 02 Yemeni_rial 0 rial 0 001 @ 13697380 n 0000 | the basic unit of money in Yemen; equal to 100 fils -13697621 23 n 02 Yemeni_fils 0 fils 1 001 @ 13697380 n 0000 | 100 Yemeni fils are worth one Yemeni rial -13697727 23 n 01 Cambodian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13697840 n 0000 | monetary unit in Cambodia -13697840 23 n 01 riel 0 002 @ 13697727 n 0000 %p 13672555 n 0000 | the basic unit of money in Cambodia; equal to 100 sen -13697963 23 n 01 Malaysian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13698076 n 0000 | monetary unit is Malaysia -13698076 23 n 01 ringgit 0 002 @ 13697963 n 0000 %p 13672555 n 0000 | the basic unit of money in Malaysia; equal to 100 sen -13698202 23 n 01 Qatari_monetary_unit 0 003 @ 13604718 n 0000 ~ 13698327 n 0000 ~ 13698445 n 0000 | monetary unit in Qatar -13698327 23 n 02 Qatari_riyal 0 riyal 2 002 @ 13698202 n 0000 %p 13698445 n 0000 | the basic unit of money in Qatar -13698445 23 n 02 Qatari_dirham 0 dirham 6 002 @ 13698202 n 0000 #p 13698327 n 0000 | 100 dirhams equal 1 riyal in Qatar -13698567 23 n 01 Saudi_Arabian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13698706 n 0000 ~ 13698838 n 0000 | monetary unit in Saudi Arabia -13698706 23 n 02 Saudi_Arabian_riyal 0 riyal 3 002 @ 13698567 n 0000 %p 13698838 n 0000 | the basic unit of money in Saudi Arabia -13698838 23 n 01 qurush 0 002 #p 13698706 n 0000 @ 13698567 n 0000 | 20 qurush equal 1 riyal in Saudi Arabia -13698949 23 n 01 Russian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13699076 n 0000 ~ 13699189 n 0000 | monetary unit in Russia -13699076 23 n 02 ruble 0 rouble 0 002 @ 13698949 n 0000 %p 13699189 n 0000 | the basic unit of money in Russia -13699189 23 n 03 kopek 0 kopeck 0 copeck 0 002 #p 13699076 n 0000 @ 13698949 n 0000 | 100 kopecks equal 1 ruble in Russia -13699313 23 n 01 Armenian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13699442 n 0000 ~ 13699527 n 0000 | monetary unit in Armenia -13699442 23 n 01 dram 0 001 @ 13699313 n 0000 | the basic unit of money in Armenia -13699527 23 n 01 lumma 0 001 @ 13699313 n 0000 | 100 lumma equal 1 dram in Armenia -13699612 23 n 01 Azerbaijani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13699747 n 0000 ~ 13699836 n 0000 | monetary unit in Azerbaijan -13699747 23 n 01 manat 0 001 @ 13699612 n 0000 | the basic unit of money in Azerbaijan -13699836 23 n 01 qepiq 0 001 @ 13699612 n 0000 | 100 qepiq equal 1 manat in Azerbaijan -13699925 23 n 01 Belarusian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13700056 n 0000 ~ 13700142 n 0000 | monetary unit in Belarus -13700056 23 n 01 rubel 0 001 @ 13699925 n 0000 | the basic unit of money in Belarus -13700142 23 n 01 kapeika 0 001 @ 13699925 n 0000 | 100 kapeikas equal 1 rubel in Belarus -13700233 23 n 01 Estonian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13700362 n 0000 ~ 13700448 n 0000 | monetary unit in Estonia -13700362 23 n 01 kroon 0 001 @ 13700233 n 0000 | the basic unit of money in Estonia -13700448 23 n 01 sent 0 001 @ 13700233 n 0000 | 100 senti equal 1 kroon in Estonia -13700533 23 n 01 Georgian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13700662 n 0000 ~ 13700766 n 0000 | monetary unit in Georgia -13700662 23 n 01 lari 0 002 @ 13700533 n 0000 %p 13700766 n 0000 | the basic unit of money in Georgia -13700766 23 n 01 tetri 0 002 @ 13700533 n 0000 #p 13700662 n 0000 | 100 tetri equal 1 lari in Georgia -13700870 23 n 01 Kazakhstani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13701005 n 0000 ~ 13701094 n 0000 | monetary unit in Kazakhstan -13701005 23 n 01 tenge 0 001 @ 13700870 n 0000 | the basic unit of money in Kazakhstan -13701094 23 n 01 tiyin 0 001 @ 13700870 n 0000 | 100 tiyin equal 1 tenge in Kazakhstan -13701183 23 n 01 Latvian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13701310 n 0000 ~ 13701394 n 0000 | monetary unit in Latvia -13701310 23 n 01 lats 0 001 @ 13701183 n 0000 | the basic unit of money in Latvia -13701394 23 n 01 santims 0 001 @ 13701183 n 0000 | 100 santimi equal 1 lats in Latvia -13701482 23 n 01 Lithuanian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13701615 n 0000 ~ 13701703 n 0000 | monetary unit in Lithuania -13701615 23 n 01 litas 0 001 @ 13701482 n 0000 | the basic unit of money in Lithuania -13701703 23 n 01 centas 0 001 @ 13701482 n 0000 | 100 centas equal 1 litas in Lithuania -13701793 23 n 01 Kyrgyzstani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13701928 n 0000 ~ 13702015 n 0000 | monetary unit in Kyrgyzstan -13701928 23 n 01 som 0 001 @ 13701793 n 0000 | the basic unit of money in Kyrgyzstan -13702015 23 n 01 tyiyn 0 001 @ 13701793 n 0000 | 100 tyiyn equal 1 som in Kyrgyzstan -13702102 23 n 01 Moldovan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13702231 n 0000 ~ 13702315 n 0000 | monetary unit in Moldova -13702231 23 n 01 leu 1 001 @ 13702102 n 0000 | the basic unit of money in Moldova -13702315 23 n 01 ban 1 001 @ 13702102 n 0000 | 100 bani equal 1 leu in Moldova -13702396 23 n 01 Tajikistani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13702531 n 0000 ~ 13702620 n 0000 | monetary unit in Tajikistan -13702531 23 n 01 ruble 1 001 @ 13702396 n 0000 | the basic unit of money in Tajikistan -13702620 23 n 01 tanga 0 001 @ 13702396 n 0000 | 100 tanga equal 1 Tajikistani ruble -13702707 23 n 01 Turkmen_monetary_unit 0 003 @ 13604718 n 0000 ~ 13702840 n 0000 ~ 13702931 n 0000 | monetary unit in Turkmenistan -13702840 23 n 01 manat 1 001 @ 13702707 n 0000 | the basic unit of money in Turkmenistan -13702931 23 n 01 tenge 1 001 @ 13702707 n 0000 | 100 tenge equal 1 manat in Turkmenistan -13703022 23 n 01 Ukranian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13703151 n 0000 ~ 13703258 n 0000 | monetary unit in Ukraine -13703151 23 n 01 hryvnia 0 002 @ 13703022 n 0000 %p 13703258 n 0000 | the basic unit of money in Ukraine -13703258 23 n 01 kopiyka 0 002 @ 13703022 n 0000 #p 13703151 n 0000 | 100 kopiykas equal 1 hryvnia in Ukraine -13703370 23 n 01 Uzbekistani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13703505 n 0000 ~ 13703592 n 0000 | monetary unit in Uzbekistan -13703505 23 n 01 som 1 001 @ 13703370 n 0000 | the basic unit of money in Uzbekistan -13703592 23 n 01 tiyin 1 001 @ 13703370 n 0000 | 100 tiyin equal 1 som in Uzbekistan -13703679 23 n 01 Indian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13703804 n 0000 ~ 13704418 n 0000 | monetary unit in India -13703804 23 n 02 Indian_rupee 0 rupee 1 002 @ 13703679 n 0000 %p 13703942 n 0000 | the basic unit of money in India; equal to 100 paise -13703942 23 n 01 paisa 0 005 @ 13662703 n 0000 #p 13703804 n 0000 #p 13704897 n 0000 #p 13704274 n 0000 #p 13708014 n 0000 | a fractional monetary unit in Bangladesh and India and Nepal and Pakistan -13704143 23 n 01 Pakistani_monetary_unit 0 003 @ 13604718 n 0000 ~ 13704274 n 0000 ~ 13704418 n 0000 | monetary unit in Pakistan -13704274 23 n 02 Pakistani_rupee 0 rupee 2 002 @ 13704143 n 0000 %p 13703942 n 0000 | the basic unit of money in Pakistan; equal to 100 paisa -13704418 23 n 01 anna 0 002 @ 13704143 n 0000 @ 13703679 n 0000 | a former copper coin of Pakistan and India -13704529 23 n 01 Mauritian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13704643 n 0000 | monetary unit in Mauritius -13704643 23 n 02 Mauritian_rupee 0 rupee 3 002 @ 13704529 n 0000 %p 13664521 n 0000 | the basic unit of money in Mauritius; equal to 100 cents -13704788 23 n 01 Nepalese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13704897 n 0000 | monetary unit in Nepal -13704897 23 n 02 Nepalese_rupee 0 rupee 4 002 @ 13704788 n 0000 %p 13703942 n 0000 | the basic unit of money in Nepal; equal to 100 paisa -13705037 23 n 01 Seychelles_monetary_unit 0 002 @ 13604718 n 0000 ~ 13705153 n 0000 | monetary unit in Seychelles -13705153 23 n 02 Seychelles_rupee 0 rupee 5 002 @ 13705037 n 0000 %p 13664521 n 0000 | the basic unit of money in Seychelles; equal to 100 cents -13705300 23 n 01 Sri_Lankan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13705415 n 0000 | monetary unit in Sri Lanka -13705415 23 n 02 Sri_Lanka_rupee 0 rupee 6 002 @ 13705300 n 0000 ~ 13664521 n 0000 | the basic unit of money in Sri Lanka; equal to 100 cents -13705559 23 n 01 Indonesian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13705674 n 0000 | monetary unit in Indonesia -13705674 23 n 01 rupiah 0 002 @ 13705559 n 0000 %p 13672555 n 0000 | the basic unit of money in Indonesia; equal to 100 sen -13705800 23 n 01 Austrian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13705929 n 0000 ~ 13706068 n 0000 | monetary unit in Austria -13705929 23 n 02 schilling 0 Austrian_schilling 0 002 @ 13705800 n 0000 %p 13706068 n 0000 | formerly the basic unit of money in Austria -13706068 23 n 01 groschen 0 002 #p 13705929 n 0000 @ 13705800 n 0000 | 100 groschen equal 1 schilling in Austria -13706183 23 n 01 Israeli_monetary_unit 0 003 @ 13604718 n 0000 ~ 13706310 n 0000 ~ 13706415 n 0000 | monetary unit in Israel -13706310 23 n 01 shekel 0 002 @ 13706183 n 0000 %p 13706415 n 0000 | the basic unit of money in Israel -13706415 23 n 01 agora 0 002 #p 13706310 n 0000 @ 13706183 n 0000 | 100 agorot equal 1 shekel in Israel -13706521 23 n 01 Kenyan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13706628 n 0000 | monetary unit in Kenya -13706628 23 n 02 Kenyan_shilling 0 shilling 2 001 @ 13706521 n 0000 | the basic unit of money in Kenya; equal to 100 cents -13706753 23 n 01 Somalian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13706864 n 0000 | monetary unit in Somalia -13706864 23 n 02 Somalian_shilling 0 shilling 3 001 @ 13706753 n 0000 | the basic unit of money in Somalia; equal to 100 cents -13706993 23 n 01 Tanzanian_monetary_unit 0 002 @ 13604718 n 0000 ~ 13707106 n 0000 | monetary unit in Tanzania -13707106 23 n 02 Tanzanian_shilling 0 shilling 4 001 @ 13706993 n 0000 | the basic unit of money in Tanzania; equal to 100 cents -13707237 23 n 01 Ugandan_monetary_unit 0 002 @ 13604718 n 0000 ~ 13707346 n 0000 | monetary unit in Uganda -13707346 23 n 02 Ugandan_shilling 0 shilling 5 001 @ 13707237 n 0000 | the basic unit of money in Uganda; equal to 100 cents -13707473 23 n 01 Ecuadoran_monetary_unit 0 002 @ 13604718 n 0000 ~ 13707585 n 0000 | monetary unit in Ecuador -13707585 23 n 01 sucre 0 002 @ 13707473 n 0000 %p 13665256 n 0000 | the basic unit of money in Ecuador; equal to 100 centavos -13707713 23 n 01 Guinean_monetary_unit 0 001 @ 13604718 n 0000 | monetary unit in Guinea -13707804 23 n 01 Guinean_franc 0 001 @ 13662190 n 0000 | the basic unit of money in Guinea -13707897 23 n 01 Bangladeshi_monetary_unit 0 002 @ 13604718 n 0000 ~ 13708014 n 0000 | monetary unit in Bangladesh -13708014 23 n 01 taka 0 002 @ 13707897 n 0000 %p 13703942 n 0000 | the basic unit of money in Bangladesh; equal to 100 paisa -13708141 23 n 01 Western_Samoan_monetary_unit 0 003 @ 13604718 n 0000 ~ 13708282 n 0000 ~ 13708392 n 0000 | monetary unit in Western Samoa -13708282 23 n 01 tala 0 002 @ 13708141 n 0000 %p 13708392 n 0000 | the basic unit of money in Western Samoa -13708392 23 n 01 sene 0 002 #p 13708282 n 0000 @ 13708141 n 0000 | 100 sene equal 1 tala in Western Samoa -13708500 23 n 01 Mongolian_monetary_unit 0 003 @ 13604718 n 0000 ~ 13708631 n 0000 ~ 13708748 n 0000 | monetary unit in Mongolia -13708631 23 n 02 tugrik 0 tughrik 0 002 @ 13708500 n 0000 %p 13708748 n 0000 | the basic unit of money in Mongolia -13708748 23 n 01 mongo 0 002 #p 13708631 n 0000 @ 13708500 n 0000 | 100 mongo equal 1 tugrik in Mongolia -13708855 23 n 01 North_Korean_monetary_unit 0 003 @ 13604718 n 0000 ~ 13708992 n 0000 ~ 13709118 n 0000 | monetary unit in North Korea -13708992 23 n 02 North_Korean_won 0 won 1 002 @ 13708855 n 0000 %p 13709118 n 0000 | the basic unit of money in North Korea -13709118 23 n 01 chon 1 002 @ 13708855 n 0000 #p 13708992 n 0000 | 100 chon equal 1 won in North Korea -13709223 23 n 01 South_Korean_monetary_unit 0 003 @ 13604718 n 0000 ~ 13709360 n 0000 ~ 13709486 n 0000 | monetary unit in South Korea -13709360 23 n 02 South_Korean_won 0 won 2 002 @ 13709223 n 0000 %p 13709486 n 0000 | the basic unit of money in South Korea -13709486 23 n 01 chon 2 002 @ 13709223 n 0000 #p 13709360 n 0000 | 100 chon equal 1 won in South Korea -13709591 23 n 01 Japanese_monetary_unit 0 002 @ 13604718 n 0000 ~ 13709700 n 0000 | monetary unit in Japan -13709700 23 n 01 yen 0 002 @ 13709591 n 0000 %p 13672555 n 0000 | the basic unit of money in Japan; equal to 100 sen -13709819 23 n 01 Chinese_monetary_unit 0 004 @ 13604718 n 0000 ~ 13709992 n 0000 ~ 13710101 n 0000 ~ 13710219 n 0000 | the monetary unit in the People's Republic of China -13709992 23 n 02 yuan 0 kwai 0 002 @ 13709819 n 0000 %p 13710101 n 0000 | the basic unit of money in China -13710101 23 n 01 jiao 0 003 #p 13709992 n 0000 @ 13709819 n 0000 %p 13710219 n 0000 | 10 jiao equal 1 yuan in China -13710219 23 n 01 fen 0 002 @ 13709819 n 0000 #p 13710101 n 0000 | 100 fen equal 1 yuan in China -13710317 23 n 01 Zairese_monetary_unit 0 003 @ 13604718 n 0000 ~ 13710443 n 0000 ~ 13710546 n 0000 | monetary unit in Zaire -13710443 23 n 01 zaire 0 002 @ 13710317 n 0000 %p 13710546 n 0000 | the basic unit of money in Zaire -13710546 23 n 01 likuta 0 002 #p 13710443 n 0000 @ 13710317 n 0000 | 100 makuta equal 1 zaire in Zaire -13710651 23 n 01 Polish_monetary_unit 0 003 @ 13604718 n 0000 ~ 13710777 n 0000 ~ 13710881 n 0000 | monetary unit in Poland -13710777 23 n 01 zloty 0 002 @ 13710651 n 0000 %p 13710881 n 0000 | the basic unit of money in Poland -13710881 23 n 01 grosz 0 002 #p 13710777 n 0000 @ 13710651 n 0000 | 100 groszy equal 1 zloty in Poland -13710986 23 n 01 dol 0 001 @ 13607873 n 0000 | a unit of pain intensity -13711060 23 n 04 standard_atmosphere 0 atmosphere 0 atm 0 standard_pressure 0 002 @ 13607985 n 0000 ~ 13780339 n 0000 | a unit of pressure: the pressure that will support a column of mercury 760 mm high at sea level and 0 degrees centigrade -13711303 23 n 02 pascal 0 Pa 0 001 @ 13607985 n 0000 | a unit of pressure equal to one newton per square meter -13711416 23 n 03 torr 0 millimeter_of_mercury 0 mm_Hg 0 001 @ 13607985 n 0000 | a unit of pressure equal to 0.001316 atmosphere; named after Torricelli -13711570 23 n 02 pounds_per_square_inch 0 psi 0 001 @ 13607985 n 0000 | a unit of pressure -13711663 23 n 01 millibar 0 002 @ 13607985 n 0000 #p 13711855 n 0000 | a unit of atmospheric pressure equal to one thousandth of a bar; "atmospheric pressure at sea level is 1013 millibars" -13711855 23 n 01 bar 0 004 @ 13607985 n 0000 ;c 06118563 n 0000 %p 13711663 n 0000 %p 13712120 n 0000 | (meteorology) a unit of pressure equal to a million dynes per square centimeter; "unfortunately some writers have used bar for one dyne per square centimeter" -13712120 23 n 03 barye 0 bar_absolute 0 microbar 0 002 @ 13607985 n 0000 #p 13711855 n 0000 | the absolute unit of pressure equal to one dyne per square centimeter -13712286 23 n 01 point 0 002 @ 13603305 n 0000 #p 13712428 n 0000 | a linear unit used to measure the size of type; approximately 1/72 inch -13712428 23 n 03 em 2 pica_em 0 pica 0 004 @ 13603305 n 0000 #p 13649791 n 0000 %p 13712286 n 0000 %p 13712592 n 0000 | a linear unit (1/6 inch) used in printing -13712592 23 n 02 en 0 nut 0 002 @ 13603305 n 0000 #p 13712428 n 0000 | half the width of an em -13712689 23 n 03 em 1 em_quad 0 mutton_quad 0 001 @ 13600404 n 0000 | a quad with a square body; "since `em quad' is hard to distinguish from `en quad', printers sometimes called it a `mutton quad'" -13712890 23 n 01 cicero 0 001 @ 13603305 n 0000 | a linear unit of the size of type slightly larger than an em -13713003 23 n 02 agate_line 0 line 0 001 @ 13600404 n 0000 | space for one line of print (one column wide and 1/14 inch deep) used to measure advertising -13713159 23 n 01 milline 0 001 @ 13608207 n 0000 | an advertising measure; one agate line appearing in one million copies of a publication -13713300 23 n 02 column_inch 0 inch 2 001 @ 13600404 n 0000 | a unit of measurement for advertising space -13713408 23 n 02 linage 0 lineage 0 001 @ 13582013 n 0000 | the number of lines in a piece of printed material -13713521 23 n 02 Bel 0 B 3 001 @ 13608319 n 0000 | a logarithmic unit of sound intensity equal to 10 decibels -13713633 23 n 02 decibel 0 dB 0 001 @ 13608319 n 0000 | a logarithmic unit of sound intensity; 10 times the logarithm of the ratio of the sound intensity to some reference intensity -13713817 23 n 01 sone 0 002 @ 13608319 n 0000 #p 13713983 n 0000 | a unit of perceived loudness equal to the loudness of a 1000-hertz tone at 40 dB above threshold -13713983 23 n 01 phon 0 002 @ 13608319 n 0000 %p 13713817 n 0000 | a unit of subjective loudness -13714082 23 n 01 Erlang 0 001 @ 13608480 n 0000 | a unit of traffic intensity in a telephone system -13714184 23 n 01 degree 3 003 @ 13608598 n 0000 ~ 13714491 n 0000 ~ 13714641 n 0000 | a unit of temperature on a specified scale; "the game was played in spite of the 40-degree temperature" -13714376 23 n 01 millidegree 0 001 @ 13608598 n 0000 | a unit of temperature equal to one-thousandth of a degree -13714491 23 n 03 degree_centigrade 0 degree_Celsius 0 C 2 002 @ 13714184 n 0000 ~ 13715124 n 0000 | a degree on the centigrade scale of temperature -13714641 23 n 02 degree_Fahrenheit 0 F 2 001 @ 13714184 n 0000 | a degree on the Fahrenheit scale of temperature -13714756 23 n 02 kelvin 0 K 5 001 @ 13608598 n 0000 | the basic unit of thermodynamic temperature adopted under the Systeme International d'Unites -13714905 23 n 01 Rankine 0 001 @ 13608598 n 0000 | a unit of temperature on the Rankine scale -13715001 23 n 01 degree_day 0 001 @ 13608598 n 0000 | a unit used in estimating fuel requirements for heating a building -13715124 23 n 01 standard_temperature 0 002 @ 13714491 n 0000 ~ 13780339 n 0000 | exactly zero degrees centigrade -13715240 23 n 01 poise 0 001 @ 13609390 n 0000 | a cgs unit of dynamic viscosity equal to one dyne-second per square centimeter; the viscosity of a fluid in which a force of one dyne per square centimeter maintains a velocity of 1 centimeter per second -13715495 23 n 01 atomic_mass_unit 0 001 @ 13609214 n 0000 | unit of mass for expressing masses of atoms or molecules -13715614 23 n 02 mass_number 0 nucleon_number 0 001 @ 13609214 n 0000 | the sum of the number of neutrons and protons in an atomic nucleus -13715755 23 n 02 system_of_weights 0 weight 1 003 @ 13577171 n 0000 ~ 13715921 n 0000 ~ 13716490 n 0000 | a system of units used to express the weight of something -13715921 23 n 02 avoirdupois 0 avoirdupois_weight 0 002 @ 13715755 n 0000 %p 13716084 n 0000 | a system of weights based on the 16-ounce pound (or 7,000 grains) -13716084 23 n 01 avoirdupois_unit 0 017 @ 13609214 n 0000 #p 13715921 n 0000 #p 13577731 n 0000 ~ 13719683 n 0000 ~ 13719808 n 0000 ~ 13719922 n 0000 ~ 13720096 n 0000 ~ 13720405 n 0000 ~ 13720501 n 0000 ~ 13720600 n 0000 ~ 13720852 n 0000 ~ 13721003 n 0000 ~ 13721177 n 0000 ~ 13721387 n 0000 ~ 13721529 n 0000 ~ 13721695 n 0000 ~ 13721804 n 0000 | any of the units of the avoirdupois system of weights -13716490 23 n 02 troy 0 troy_weight 0 002 @ 13715755 n 0000 %p 13716686 n 0000 | a system of weights used for precious metals and gemstones; based on a 12-ounce pound and an ounce of 480 grains -13716686 23 n 01 troy_unit 0 006 @ 13608788 n 0000 #p 13716490 n 0000 ~ 13721893 n 0000 ~ 13722198 n 0000 ~ 13722522 n 0000 ~ 13722757 n 0000 | any of the unit of the troy system of weights -13716878 23 n 02 apothecaries'_unit 0 apothecaries'_weight 0 006 @ 13608788 n 0000 ~ 13721893 n 0000 ~ 13722060 n 0000 ~ 13722340 n 0000 ~ 13722522 n 0000 ~ 13722757 n 0000 | any weight unit used in pharmacy; an ounce is equal to 480 grains and a pound is equal to 12 ounces -13717155 23 n 02 metric_weight_unit 0 weight_unit 2 020 @ 13609214 n 0000 @ 13604275 n 0000 #p 13577934 n 0000 ~ 13722929 n 0000 ~ 13723061 n 0000 ~ 13723189 n 0000 ~ 13723304 n 0000 ~ 13723470 n 0000 ~ 13723577 n 0000 ~ 13723712 n 0000 ~ 13723899 n 0000 ~ 13724081 n 0000 ~ 13724350 n 0000 ~ 13724474 n 0000 ~ 13724582 n 0000 ~ 13724977 n 0000 ~ 13725108 n 0000 ~ 13725271 n 0000 ~ 13725457 n 0000 ~ 13725588 n 0000 | a decimal unit of weight based on the gram -13717619 23 n 01 arroba 1 001 @ 13608788 n 0000 | a unit of weight used in some Spanish speaking countries -13717728 23 n 02 catty 0 cattie 0 002 @ 13608788 n 0000 ;r 08723006 n 0000 | any of various units of weight used in southeastern Asia (especially a Chinese measure equal to 500 grams) -13717914 23 n 01 crith 0 001 @ 13608788 n 0000 | the weight of a liter of hydrogen (at 0 centigrade and 760 millimeters pressure) -13718046 23 n 01 frail 0 001 @ 13608788 n 0000 | the weight of a frail (basket) full of raisins or figs; between 50 and 75 pounds -13718178 23 n 01 last 2 001 @ 13608788 n 0000 | a unit of weight equal to 4,000 pounds -13718267 23 n 01 maund 0 001 @ 13608788 n 0000 | a unit of weight used in Asia; has different values in different countries; "the official maund in India is 82.6 pounds avoirdupois" -13718451 23 n 01 obolus 0 002 @ 13608788 n 0000 #p 13723712 n 0000 | a Greek unit of weight equal to one tenth of a gram -13718574 23 n 01 oka 1 001 @ 13608788 n 0000 | a Turkish unit of weight equal to about 2.75 pounds -13718675 23 n 01 picul 0 001 @ 13608788 n 0000 | a unit of weight used in some parts of Asia; approximately equal to 133 pounds (the load a grown man can carry) -13718838 23 n 01 pood 0 001 @ 13608788 n 0000 | a Russian unit of weight equal to approximately 36 pounds -13718946 23 n 01 rotl 0 001 @ 13608788 n 0000 | a unit of weight used in some Moslem countries near the Mediterranean; varies between one and five pounds -13719102 23 n 01 slug 0 001 @ 13609214 n 0000 | a unit of mass equal to the mass that accelerates at 1 foot/sec/sec when acted upon by a force of 1 pound; approximately 14.5939 kilograms -13719291 23 n 01 tael 0 001 @ 13608788 n 0000 | a unit of weight used in east Asia approximately equal to 1.3 ounces -13719410 23 n 01 tod 0 002 @ 13608788 n 0000 ;r 08860123 n 0000 | a unit of weight for wool equal to about 28 pounds -13719529 23 n 01 welterweight 0 001 @ 13608788 n 0000 | a weight of 28 pounds; sometimes imposed as a handicap in a horse race (such as a steeplechase) -13719683 23 n 01 grain 1 002 @ 13716084 n 0000 #p 13719808 n 0000 | 1/7000 pound; equals a troy grain or 64.799 milligrams -13719808 23 n 01 dram 1 003 @ 13716084 n 0000 #p 13719922 n 0000 %p 13719683 n 0000 | 1/16 ounce or 1.771 grams -13719922 23 n 02 ounce 1 oz. 0 003 @ 13716084 n 0000 #p 13720096 n 0000 %p 13719808 n 0000 | a unit of weight equal to one sixteenth of a pound or 16 drams or 28.349 grams -13720096 23 n 02 pound 9 lb 0 005 @ 13716084 n 0000 #p 13720600 n 0000 #p 13720852 n 0000 %p 13719922 n 0000 %p 13720405 n 0000 | 16 ounces avoirdupois; "he got a hernia when he tried to lift 100 pounds" -13720302 23 n 01 pound a 001 @ 13603065 n 0000 | a unit of apothecary weight equal to 12 ounces troy -13720405 23 n 01 half_pound 0 002 @ 13716084 n 0000 #p 13720096 n 0000 | 8 ounces avoirdupois -13720501 23 n 01 quarter_pound 0 002 @ 13716084 n 0000 #p 13648184 n 0000 | 4 ounces avoirdupois -13720600 23 n 01 stone 0 004 @ 13716084 n 0000 #p 13720852 n 0000 ;r 08860123 n 0000 %p 13720096 n 0000 | an avoirdupois unit used to measure the weight of a human body; equal to 14 pounds; "a heavy chap who must have weighed more than twenty stone" -13720852 23 n 01 quarter 2 004 @ 13716084 n 0000 #p 13721177 n 0000 %p 13720096 n 0000 %p 13720600 n 0000 | a quarter of a hundredweight (25 pounds) -13721003 23 n 03 hundredweight 1 cwt 1 long_hundredweight 0 003 @ 13716084 n 0000 #p 13721387 n 0000 %p 13623054 n 0000 | a British unit of weight equivalent to 112 pounds -13721177 23 n 06 hundredweight 2 cwt 2 short_hundredweight 0 centner 1 cental 0 quintal 1 003 @ 13716084 n 0000 #p 13721529 n 0000 %p 13720852 n 0000 | a United States unit of weight equivalent to 100 pounds -13721387 23 n 03 long_ton 0 ton 1 gross_ton 0 002 @ 13716084 n 0000 %p 13721003 n 0000 | a British unit of weight equivalent to 2240 pounds -13721529 23 n 03 short_ton 0 ton 2 net_ton 0 003 @ 13716084 n 0000 #p 13721695 n 0000 %p 13721177 n 0000 | a United States unit of weight equivalent to 2000 pounds -13721695 23 n 01 kiloton 0 003 @ 13716084 n 0000 #p 13721804 n 0000 %p 13721529 n 0000 | one thousand tons -13721804 23 n 01 megaton 0 002 @ 13716084 n 0000 %p 13721695 n 0000 | one million tons -13721893 23 n 01 grain 2 004 @ 13716686 n 0000 @ 13716878 n 0000 #p 13722198 n 0000 #p 13722060 n 0000 | 1/60 dram; equals an avoirdupois grain or 64.799 milligrams -13722060 23 n 01 scruple 0 003 @ 13716878 n 0000 #p 13722340 n 0000 %p 13721893 n 0000 | a unit of apothecary weight equal to 20 grains -13722198 23 n 01 pennyweight 0 003 @ 13716686 n 0000 #p 13722522 n 0000 %p 13721893 n 0000 | a unit of apothecary weight equal to 24 grains -13722340 23 n 03 dram 2 drachm 0 drachma 2 003 @ 13716878 n 0000 #p 13722522 n 0000 %p 13722060 n 0000 | a unit of apothecary weight equal to an eighth of an ounce or to 60 grains -13722522 23 n 03 ounce 2 troy_ounce 0 apothecaries'_ounce 0 005 @ 13716878 n 0000 @ 13716686 n 0000 #p 13722757 n 0000 %p 13722198 n 0000 %p 13722340 n 0000 | a unit of apothecary weight equal to 480 grains or one twelfth of a pound -13722757 23 n 02 troy_pound 0 apothecaries'_pound 0 003 @ 13716878 n 0000 @ 13716686 n 0000 %p 13722522 n 0000 | an apothecary weight equal to 12 ounces or 373.242 grams -13722929 23 n 02 microgram 0 mcg 0 003 @ 13717155 n 0000 #p 13723061 n 0000 %p 13723189 n 0000 | one millionth (1/1,000,000) gram -13723061 23 n 02 milligram 0 mg 0 003 @ 13717155 n 0000 #p 13723304 n 0000 %p 13722929 n 0000 | one thousandth (1/1,000) gram -13723189 23 n 02 nanogram 0 ng 0 002 @ 13717155 n 0000 #p 13722929 n 0000 | one billionth (1/1,000,000,000) gram -13723304 23 n 02 grain 3 metric_grain 0 003 @ 13717155 n 0000 #p 13723470 n 0000 %p 13723061 n 0000 | a weight unit used for pearls or diamonds: 50 mg or 1/4 carat -13723470 23 n 02 decigram 0 dg 0 003 @ 13717155 n 0000 #p 13723577 n 0000 %p 13723304 n 0000 | 1/10 gram -13723577 23 n 01 carat 0 003 @ 13717155 n 0000 #p 13723712 n 0000 %p 13723470 n 0000 | a unit of weight for precious stones = 200 mg -13723712 23 n 04 gram 0 gramme 0 gm 0 g 0 004 @ 13717155 n 0000 #p 13724350 n 0000 %p 13718451 n 0000 %p 13723577 n 0000 | a metric unit of weight equal to one thousandth of a kilogram -13723899 23 n 02 gram_atom 0 gram-atomic_weight 0 001 @ 13717155 n 0000 | the quantity of an element whose weight in grams is numerically equal to the atomic weight of the element -13724081 23 n 03 gram_molecule 0 mole 0 mol 0 004 @ 13717155 n 0000 + 02900381 a 0201 + 02900219 a 0201 + 02900081 a 0201 | the molecular weight of a substance expressed in grams; the basic unit of amount of substance adopted under the Systeme International d'Unites -13724350 23 n 04 dekagram 0 decagram 0 dkg 0 dag 0 003 @ 13717155 n 0000 #p 13724474 n 0000 %p 13723712 n 0000 | 10 grams -13724474 23 n 02 hectogram 0 hg 0 003 @ 13717155 n 0000 #p 13724582 n 0000 %p 13724350 n 0000 | 100 grams -13724582 23 n 03 kilogram 0 kg 0 kilo 0 004 @ 13717155 n 0000 #p 13724977 n 0000 %p 13724474 n 0000 ~ 13724838 n 0000 | one thousand grams; the basic unit of mass adopted under the Systeme International d'Unites; "a kilogram is approximately 2.2 pounds" -13724838 23 n 01 key 0 002 @ 13724582 n 0000 ;u 07157273 n 0000 | a kilogram of a narcotic drug; "they were carrying two keys of heroin" -13724977 23 n 02 myriagram 0 myg 0 003 @ 13717155 n 0000 #p 13725108 n 0000 %p 13724582 n 0000 | one ten thousandth of a centner -13725108 23 n 01 centner 2 003 @ 13717155 n 0000 #p 13725271 n 0000 %p 13724977 n 0000 | in some European countries: a unit of weight equivalent to 50 kilograms -13725271 23 n 04 hundredweight 3 metric_hundredweight 0 doppelzentner 0 centner 3 003 @ 13717155 n 0000 #p 13725457 n 0000 %p 13725108 n 0000 | a unit of weight equal to 100 kilograms -13725457 23 n 01 quintal 2 003 @ 13717155 n 0000 #p 13725588 n 0000 %p 13725271 n 0000 | a unit of weight equal to 100 kilograms -13725588 23 n 04 metric_ton 0 MT 0 tonne 0 t 1 002 @ 13717155 n 0000 %p 13725457 n 0000 | a unit of weight equivalent to 1000 kilograms -13725726 23 n 01 erg 0 002 @ 13609507 n 0000 #p 13726074 n 0000 | a cgs unit of work or energy; the work done by a force of one dyne acting over a distance of one centimeter -13725902 23 n 02 electron_volt 0 eV 0 001 @ 13609507 n 0000 | a unit of energy equal to the work done by an electron accelerated through a potential difference of 1 volt -13726074 23 n 03 joule 0 J 0 watt_second 0 002 @ 13609507 n 0000 %p 13725726 n 0000 | a unit of electrical energy equal to the work done when a current of one ampere passes through a resistance of one ohm for one second -13726296 23 n 03 calorie 1 gram_calorie 0 small_calorie 0 003 @ 13609507 n 0000 #p 13726562 n 0000 + 02814453 a 0103 | unit of heat defined as the quantity of heat required to raise the temperature of 1 gram of water by 1 degree centigrade at atmospheric pressure -13726562 23 n 05 Calorie 2 kilogram_calorie 0 kilocalorie 0 large_calorie 0 nutritionist's_calorie 0 003 @ 13609507 n 0000 + 02675446 a 0101 %p 13726296 n 0000 | a unit of heat equal to the amount of heat required to raise the temperature of one kilogram of water by one degree at one atmosphere pressure; used by nutritionists to characterize the energy-producing potential in food -13726947 23 n 03 British_thermal_unit 0 BTU 0 B.Th.U. 0 002 @ 13609507 n 0000 #p 13727209 n 0000 | a unit of heat equal to the amount of heat required to raise one pound of water one degree Fahrenheit at one atmosphere pressure; equivalent to 251.997 calories -13727209 23 n 01 therm 0 002 @ 13609507 n 0000 %p 13726947 n 0000 | a unit of heat equal to 100,000 British thermal units -13727333 23 n 01 watt-hour 0 002 @ 13609507 n 0000 #p 13727478 n 0000 | a unit of energy equal to the power of one watt operating for one hour -13727478 23 n 04 kilowatt_hour 0 kW-hr 0 Board_of_Trade_unit 0 B.T.U. 0 002 @ 13609507 n 0000 %p 13727333 n 0000 | a unit of energy equal to the work done by a power of 1000 watts operating for one hour -13727683 23 n 01 foot-pound 0 002 @ 13609507 n 0000 #p 13727841 n 0000 | a unit of work equal to a force of one pound moving through a distance of one foot -13727841 23 n 01 foot-ton 0 002 @ 13609507 n 0000 %p 13727683 n 0000 | 2240 foot-pounds -13727931 23 n 01 foot-poundal 0 001 @ 13609507 n 0000 | a unit of work equal to a force of one poundal moving through a distance of one foot -13728074 23 n 01 horsepower-hour 0 001 @ 13609507 n 0000 | a unit of work equal to the work done by one horsepower in one hour -13728203 23 n 01 kilogram-meter 0 001 @ 13609507 n 0000 | a unit of work equal to the work done by a one kilogram force operating through a distance of one meter -13728367 23 n 01 natural_number 0 001 @ 13582013 n 0000 | the number 1 and any other number obtained by adding 1 to it repeatedly -13728499 23 n 02 integer 0 whole_number 0 009 @ 13582013 n 0000 ~ 06813310 n 0000 ~ 13733402 n 0000 ~ 13735355 n 0000 ~ 13735622 n 0000 ~ 13741022 n 0000 ~ 13745420 n 0000 ~ 13746419 n 0000 ~ 13779804 n 0000 | any of the natural numbers (positive or negative) or zero; "an integer is a number that is not a fraction" -13728818 23 n 01 addend 0 001 @ 13582013 n 0000 | a number that is added to another number (the augend) -13728924 23 n 01 augend 0 001 @ 13582013 n 0000 | a number to which another number (the addend) is added -13729031 23 n 01 minuend 0 001 @ 13582013 n 0000 | the number from which the subtrahend is subtracted -13729135 23 n 01 subtrahend 0 001 @ 13582013 n 0000 | the number to be subtracted from the minuend -13729236 23 n 02 remainder 0 difference 0 002 @ 13582013 n 0000 ~ 13409160 n 0000 | the number that remains after subtraction; the number that when added to the subtrahend gives the minuend -13729428 23 n 04 complex_number 0 complex_quantity 0 imaginary_number 0 imaginary 0 006 @ 13582013 n 0000 ;c 06000644 n 0000 ~ 13729732 n 0000 ~ 13729902 n 0000 ~ 13730054 n 0000 %p 13730189 n 0000 | (mathematics) a number of the form a+bi where a and b are real numbers and i is the square root of -1 -13729732 23 n 01 complex_conjugate 0 001 @ 13729428 n 0000 | either of two complex numbers whose real parts are identical and whose imaginary parts differ only in sign -13729902 23 n 02 real_number 0 real 0 004 @ 13729428 n 0000 ~ 05864884 n 0000 ~ 13730469 n 0000 ~ 13730584 n 0000 | any rational or irrational number -13730054 23 n 01 pure_imaginary_number 0 002 @ 13729428 n 0000 ~ 13730189 n 0000 | an imaginary number of the form a+bi where a is 0 -13730189 23 n 02 imaginary_part 0 imaginary_part_of_a_complex_number 0 002 @ 13730054 n 0000 #p 13729428 n 0000 | the part of a complex number that has the square root of -1 as a factor -13730377 23 n 01 modulus 1 001 @ 13581465 n 0000 | the absolute value of a complex number -13730469 23 n 02 rational_number 0 rational 0 002 @ 13729902 n 0000 ~ 13732078 n 0000 | an integer or a fraction -13730584 23 n 02 irrational_number 0 irrational 0 003 @ 13729902 n 0000 ~ 13730756 n 0000 ~ 13730902 n 0000 | a real number that cannot be expressed as a rational number -13730756 23 n 01 transcendental_number 0 003 @ 13730584 n 0000 ~ 13754008 n 0000 ~ 13754165 n 0000 | an irrational number that is not algebraic -13730902 23 n 01 algebraic_number 0 001 @ 13730584 n 0000 | root of an algebraic equation with rational coefficients -13731021 23 n 02 square 0 second_power 0 002 @ 13582013 n 0000 + 00640136 v 0101 | the product of two equal terms; "nine is the second power of three"; "gravity is inversely proportional to the square of the distance" -13731241 23 n 02 cube 0 third_power 0 002 @ 13582013 n 0000 + 00640262 v 0101 | the product of three equal terms -13731356 23 n 04 biquadrate 0 biquadratic 0 quartic 0 fourth_power 0 003 @ 13582013 n 0000 + 03107913 a 0201 + 03107913 a 0101 | an algebraic equation of the fourth degree -13731530 23 n 01 radical 0 002 @ 00033615 n 0000 ;c 06000644 n 0000 | (mathematics) a quantity expressed as the root of another quantity -13731669 23 n 01 root 0 003 @ 13582013 n 0000 ~ 13731840 n 0000 ~ 13731959 n 0000 | a number that, when multiplied by itself some number of times, equals a given number -13731840 23 n 01 square_root 0 001 @ 13731669 n 0000 | a number that when multiplied by itself equals a given number -13731959 23 n 01 cube_root 0 001 @ 13731669 n 0000 | a number that when multiplied three times equals a given number -13732078 23 n 01 fraction 0 008 @ 13730469 n 0000 + 00642098 v 0102 ~ 06813115 n 0000 ~ 13732295 n 0000 ~ 13735800 n 0000 ~ 13735921 n 0000 ~ 13736057 n 0000 ~ 13736550 n 0000 | the quotient of two rational numbers -13732295 23 n 02 common_fraction 0 simple_fraction 0 027 @ 13732078 n 0000 ~ 13736799 n 0000 ~ 13737190 n 0000 ~ 13737378 n 0000 ~ 13737480 n 0000 ~ 13737700 n 0000 ~ 13737830 n 0000 ~ 13737952 n 0000 ~ 13738043 n 0000 ~ 13738140 n 0000 ~ 13738235 n 0000 ~ 13738327 n 0000 ~ 13738459 n 0000 ~ 13738585 n 0000 ~ 13738705 n 0000 ~ 13738840 n 0000 ~ 13738939 n 0000 ~ 13739051 n 0000 ~ 13739170 n 0000 ~ 13739278 n 0000 ~ 13739396 n 0000 ~ 13739507 n 0000 ~ 13739612 n 0000 ~ 13739721 n 0000 ~ 13739826 n 0000 ~ 13739934 n 0000 ~ 13740051 n 0000 | the quotient of two integers -13732871 23 n 01 numerator 0 001 @ 13732953 n 0000 | the dividend of a fraction -13732953 23 n 01 dividend 0 002 @ 13582013 n 0000 ~ 13732871 n 0000 | a number to be divided by another number -13733066 23 n 01 denominator 0 002 @ 13733167 n 0000 ~ 13735476 n 0000 | the divisor of a fraction -13733167 23 n 01 divisor 0 004 @ 13582013 n 0000 ~ 13733066 n 0000 ~ 13734629 n 0000 ~ 13734816 n 0000 | the number by which a dividend is divided -13733316 23 n 01 quotient 0 001 @ 13582013 n 0000 | the number obtained by division -13733402 23 n 02 divisor 1 factor 0 006 @ 13728499 n 0000 + 00640385 v 0201 + 00733250 v 0201 ~ 13594136 n 0000 ~ 13734349 n 0000 ~ 13734992 n 0000 | one of two or more integers that can be exactly divided into another integer; "what are the 4 factors of 6?" -13733663 23 n 01 remainder 1 001 @ 13582013 n 0000 | the part of the dividend that is left over when the dividend is not evenly divisible by the divisor -13733818 23 n 02 multiplier 0 multiplier_factor 0 003 @ 13582013 n 0000 + 00641672 v 0101 ~ 13734085 n 0000 | the number by which a multiplicand is multiplied -13733979 23 n 01 multiplicand 0 001 @ 13582013 n 0000 | the number that is multiplied by the multiplier -13734085 23 n 01 scale_factor 0 002 @ 13733818 n 0000 ~ 13734202 n 0000 | a number used as a multiplier in scaling -13734202 23 n 01 time-scale_factor 0 002 @ 13734085 n 0000 ;c 05666700 n 0000 | the ratio of the simulation time to the time of the real process -13734349 23 n 01 equivalent-binary-digit_factor 0 001 @ 13733402 n 0000 | the average number of binary digits needed to express one radix digit in a numeration system that is not binary; on the average a number that can be expressed in N decimal digits takes 3.3N binary digits -13734629 23 n 02 aliquot 0 aliquot_part 0 003 @ 13733167 n 0000 + 00516887 a 0101 ! 13734816 n 0101 | an integer that is an exact divisor of some quantity; "4 is an aliquot part of 12" -13734816 23 n 02 aliquant 0 aliquant_part 0 002 @ 13733167 n 0000 ! 13734629 n 0101 | an integer that is not an exact divisor of some quantity; "5 is an aliquant part of 12" -13734992 23 n 03 common_divisor 0 common_factor 0 common_measure 0 002 @ 13733402 n 0000 ~ 13735163 n 0000 | an integer that divides two (or more) other integers evenly -13735163 23 n 03 greatest_common_divisor 0 greatest_common_factor 0 highest_common_factor 0 001 @ 13734992 n 0000 | the largest integer that divides without remainder into a set of integers -13735355 23 n 01 common_multiple 0 001 @ 13728499 n 0000 | an integer that is a multiple of two or more other integers -13735476 23 n 01 common_denominator 0 001 @ 13733066 n 0000 | an integer that is a common multiple of the denominators of two or more fractions -13735622 23 n 01 modulus 2 001 @ 13728499 n 0000 | an integer that can be divided without remainder into the difference between two other integers; "2 is a modulus of 5 and 9" -13735800 23 n 01 improper_fraction 0 001 @ 13732078 n 0000 | a fraction whose numerator is larger than the denominator -13735921 23 n 01 proper_fraction 0 002 @ 13732078 n 0000 ~ 13736197 n 0000 | a fraction with a numerator smaller than the denominator -13736057 23 n 02 complex_fraction 0 compound_fraction 0 001 @ 13732078 n 0000 | a fraction with fractions in the numerator or denominator -13736197 23 n 02 decimal_fraction 0 decimal 0 004 @ 13735921 n 0000 + 00530829 v 0201 + 00530829 v 0202 ~ 13736376 n 0000 | a proper fraction whose denominator is a power of 10 -13736376 23 n 03 circulating_decimal 0 recurring_decimal 0 repeating_decimal 0 001 @ 13736197 n 0000 | a decimal with a sequence of digits that repeats itself indefinitely -13736550 23 n 01 continued_fraction 0 001 @ 13732078 n 0000 | a fraction whose numerator is an integer and whose denominator is an integer plus a fraction whose numerator is an integer and whose denominator is an integer plus a fraction and so on -13736799 23 n 02 one-half 0 half 0 003 @ 13732295 n 0000 ~ 13736997 n 0000 ~ 13737089 n 0000 | one of two equal parts of a divisible whole; "half a loaf"; "half an hour"; "a century and one half" -13736997 23 n 01 fifty_percent 0 001 @ 13736799 n 0000 | a half expressed as a percentage -13737089 23 n 02 moiety 0 mediety 0 001 @ 13736799 n 0000 | one of two (approximately) equal parts -13737190 23 n 03 one-third 0 third 0 tierce 0 001 @ 13732295 n 0000 | one of three equal parts of a divisible whole; "it contains approximately a third of the minimum daily requirement" -13737378 23 n 01 two-thirds 0 001 @ 13732295 n 0000 | two of three equal parts of a divisible whole -13737480 23 n 07 one-fourth 0 fourth 0 one-quarter 0 quarter 1 fourth_part 0 twenty-five_percent 0 quartern 0 003 @ 13732295 n 0000 + 01563575 v 0401 + 02483564 v 0402 | one of four equal parts; "a quarter of a pound" -13737700 23 n 02 three-fourths 0 three-quarters 0 001 @ 13732295 n 0000 | three of four equal parts; "three-fourths of a pound" -13737830 23 n 04 one-fifth 0 fifth 0 fifth_part 0 twenty_percent 0 001 @ 13732295 n 0000 | one part in five equal parts -13737952 23 n 02 one-sixth 0 sixth 0 001 @ 13732295 n 0000 | one part in six equal parts -13738043 23 n 02 one-seventh 0 seventh 0 001 @ 13732295 n 0000 | one part in seven equal parts -13738140 23 n 02 one-eighth 0 eighth 0 001 @ 13732295 n 0000 | one part in eight equal parts -13738235 23 n 02 one-ninth 0 ninth 0 001 @ 13732295 n 0000 | one part in nine equal parts -13738327 23 n 04 one-tenth 0 tenth 0 tenth_part 0 ten_percent 0 001 @ 13732295 n 0000 | a tenth part; one part in ten equal parts -13738459 23 n 04 one-twelfth 0 twelfth 0 twelfth_part 0 duodecimal 0 001 @ 13732295 n 0000 | one part in twelve equal parts -13738585 23 n 03 one-sixteenth 0 sixteenth 0 sixteenth_part 0 001 @ 13732295 n 0000 | one part in sixteen equal parts -13738705 23 n 03 one-thirty-second 0 thirty-second 0 thirty-second_part 0 001 @ 13732295 n 0000 | one part in thirty-two equal parts -13738840 23 n 02 one-sixtieth 0 sixtieth 0 001 @ 13732295 n 0000 | one part in sixty equal parts -13738939 23 n 02 one-sixty-fourth 0 sixty-fourth 0 001 @ 13732295 n 0000 | one part in sixty-four equal parts -13739051 23 n 03 one-hundredth 0 hundredth 0 one_percent 0 001 @ 13732295 n 0000 | one part in a hundred equal parts -13739170 23 n 02 one-thousandth 0 thousandth 0 001 @ 13732295 n 0000 | one part in a thousand equal parts -13739278 23 n 02 one-ten-thousandth 0 ten-thousandth 0 001 @ 13732295 n 0000 | one part in ten thousand equal parts -13739396 23 n 01 one-hundred-thousandth 0 001 @ 13732295 n 0000 | one part in a hundred thousand equal parts -13739507 23 n 02 one-millionth 0 millionth 0 001 @ 13732295 n 0000 | one part in a million equal parts -13739612 23 n 01 one-hundred-millionth 0 001 @ 13732295 n 0000 | one part in a hundred million equal parts -13739721 23 n 02 one-billionth 0 billionth 0 001 @ 13732295 n 0000 | one part in a billion equal parts -13739826 23 n 02 one-trillionth 0 trillionth 0 001 @ 13732295 n 0000 | one part in a trillion equal parts -13739934 23 n 02 one-quadrillionth 0 quadrillionth 0 001 @ 13732295 n 0000 | one part in a quadrillion equal parts -13740051 23 n 02 one-quintillionth 0 quintillionth 0 001 @ 13732295 n 0000 | one part in a quintillion equal parts -13740168 23 n 0e nothing 0 nil 0 nix 0 nada 0 null 0 aught 0 cipher 0 cypher 0 goose_egg 0 naught 0 zero 2 zilch 0 zip 0 zippo 0 004 @ 13576982 n 0000 + 00297507 v 0b01 ~ 13740591 n 0000 ~ 13740765 n 0000 | a quantity of no importance; "it looked like nothing I had ever seen before"; "reduced to nil all the work we had done"; "we racked up a pathetic goose egg"; "it was all for naught"; "I didn't hear zilch about it" -13740591 23 n 01 nihil 0 002 @ 13740168 n 0000 ;c 06962600 n 0000 | (Latin) nil; nothing (as used by a sheriff after an unsuccessful effort to serve a writ); "nihil habet" -13740765 23 n 04 bugger_all 0 fuck_all 0 Fanny_Adams 0 sweet_Fanny_Adams 0 003 @ 13740168 n 0000 ;r 08860123 n 0000 ;u 07124340 n 0000 | little or nothing at all; "I asked for a raise and they gave me bugger-all"; "I know sweet Fanny Adams about surgery" -13741022 23 n 02 digit 0 figure 0 020 @ 13728499 n 0000 + 00563824 v 0101 + 00563824 v 0102 + 00563824 v 0103 ~ 13741512 n 0000 ~ 13741603 n 0000 ~ 13741698 n 0000 ~ 13741797 n 0000 ~ 13741903 n 0000 ~ 13742011 n 0000 ~ 13742358 n 0000 ~ 13742573 n 0000 ~ 13743269 n 0000 ~ 13744044 n 0000 ~ 13744304 n 0000 ~ 13744521 n 0000 ~ 13744722 n 0000 ~ 13744916 n 0000 ~ 13745086 n 0000 ~ 13745270 n 0000 | one of the elements that collectively form a system of numeration; "0 and 1 are digits" -13741512 23 n 01 binary_digit 0 001 @ 13741022 n 0000 | either 0 or 1 in binary notation -13741603 23 n 01 octal_digit 0 001 @ 13741022 n 0000 | a digit from 0 to 7 in octal notation -13741698 23 n 01 decimal_digit 0 001 @ 13741022 n 0000 | a digit from 0 to 9 in decimal notation -13741797 23 n 01 duodecimal_digit 0 001 @ 13741022 n 0000 | a digit from 0 to 11 in duodecimal notation -13741903 23 n 01 hexadecimal_digit 0 001 @ 13741022 n 0000 | a digit from 0 to 15 in hexadecimal notation -13742011 23 n 02 significant_digit 0 significant_figure 0 001 @ 13741022 n 0000 | any digit of a number that is known with certainty; any digit of a number beginning with the leftmost non-zero digit and ending with the rightmost non-zero digit (or a zero considered to be the exact value); "he calculated the answer to four significant figures" -13742358 23 n 05 zero 1 0 0 nought 0 cipher 1 cypher 1 004 @ 13741022 n 0000 + 00637259 v 0503 + 00637259 v 0402 + 00297507 v 0101 | a mathematical element that when added to another number yields the same number -13742573 23 n 06 one 0 1 0 I 0 ace 0 single 0 unity 0 003 @ 13741022 n 0000 ~ 13742840 n 0000 ~ 13742980 n 0000 | the smallest whole number or a numeral representing this number; "he has the one but will need a two and three to go with it"; "they had lunch at one" -13742840 23 n 02 monad 0 monas 0 001 @ 13742573 n 0000 | a singular metaphysical entity from which material properties are said to derive -13742980 23 n 01 singleton 0 002 @ 13742573 n 0000 ~ 13743100 n 0000 | a single object (as distinguished from a pair) -13743100 23 n 02 mate 0 fellow 0 002 @ 13742980 n 0000 #p 13743605 n 0000 | one of a pair; "he lost the mate to his shoe"; "one eye was blue but its fellow was brown" -13743269 23 n 04 two 0 2 0 II 0 deuce 0 003 @ 13741022 n 0000 ~ 13743460 n 0000 ~ 13743605 n 0000 | the cardinal number that is the sum of one and one or a numeral representing this number -13743460 23 n 02 craps 0 snake_eyes 0 001 @ 13743269 n 0000 | expressions used when when two dice are thrown and both come up showing one spot -13743605 23 n 0d couple 0 pair 0 twosome 0 twain 0 brace 0 span 2 yoke 0 couplet 0 distich 0 duo 0 duet 0 dyad 0 duad 0 006 @ 13743269 n 0000 + 01465218 v 0201 + 01465365 v 0201 + 01292885 v 0103 %p 13743100 n 0000 ~ 13743869 n 0000 | two items of the same kind -13743869 23 n 01 doubleton 0 002 @ 13743605 n 0000 ;c 00490569 n 0000 | (bridge) a pair of playing cards that are the only cards in their suit in the hand dealt to a player -13744044 23 n 12 three 0 3 0 III 0 trio 0 threesome 0 tierce 1 leash 0 troika 0 triad 0 trine 0 trinity 0 ternary 0 ternion 0 triplet 0 tercet 0 terzetto 0 trey 0 deuce-ace 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of one and one and one -13744304 23 n 0c four 0 4 0 IV 0 tetrad 0 quatern 0 quaternion 0 quaternary 0 quaternity 0 quartet 0 quadruplet 0 foursome 0 Little_Joe 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of three and one -13744521 23 n 0c five 0 5 0 V 2 cinque 0 quint 0 quintet 0 fivesome 0 quintuplet 0 pentad 0 fin 0 Phoebe 0 Little_Phoebe 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of four and one -13744722 23 n 0b six 0 6 0 VI 0 sixer 0 sise 0 Captain_Hicks 0 half_a_dozen 0 sextet 0 sestet 0 sextuplet 0 hexad 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of five and one -13744916 23 n 07 seven 0 7 0 VII 0 sevener 0 heptad 0 septet 0 septenary 0 002 @ 13741022 n 0000 + 02186970 a 0101 | the cardinal number that is the sum of six and one -13745086 23 n 09 eight 0 8 0 VIII 0 eighter 0 eighter_from_Decatur 0 octad 0 ogdoad 0 octonary 0 octet 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of seven and one -13745270 23 n 06 nine 0 9 0 IX 0 niner 0 Nina_from_Carolina 0 ennead 0 001 @ 13741022 n 0000 | the cardinal number that is the sum of eight and one -13745420 23 n 01 large_integer 0 051 @ 13728499 n 0000 ~ 13746512 n 0000 ~ 13746672 n 0000 ~ 13746785 n 0000 ~ 13747114 n 0000 ~ 13747199 n 0000 ~ 13747348 n 0000 ~ 13747469 n 0000 ~ 13747606 n 0000 ~ 13747725 n 0000 ~ 13747865 n 0000 ~ 13747989 n 0000 ~ 13748128 n 0000 ~ 13748246 n 0000 ~ 13748367 n 0000 ~ 13748493 n 0000 ~ 13748622 n 0000 ~ 13748763 n 0000 ~ 13748890 n 0000 ~ 13749017 n 0000 ~ 13749146 n 0000 ~ 13749278 n 0000 ~ 13749407 n 0000 ~ 13749527 n 0000 ~ 13749644 n 0000 ~ 13749778 n 0000 ~ 13749894 n 0000 ~ 13750033 n 0000 ~ 13750164 n 0000 ~ 13750297 n 0000 ~ 13750415 n 0000 ~ 13750504 n 0000 ~ 13750574 n 0000 ~ 13750712 n 0000 ~ 13750844 n 0000 ~ 13751158 n 0000 ~ 13751265 n 0000 ~ 13751404 n 0000 ~ 13751533 n 0000 ~ 13751686 n 0000 ~ 13751829 n 0000 ~ 13752172 n 0000 ~ 13752443 n 0000 ~ 13752679 n 0000 ~ 13752911 n 0000 ~ 13753067 n 0000 ~ 13753274 n 0000 ~ 13753430 n 0000 ~ 13753585 n 0000 ~ 13753740 n 0000 ~ 13753894 n 0000 | an integer equal to or greater than ten -13746419 23 n 01 double_digit 0 001 @ 13728499 n 0000 | a two-digit integer; from 10 to 99 -13746512 23 n 05 ten 0 10 0 X 0 tenner 0 decade 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of nine and one; the base of the decimal system -13746672 23 n 03 eleven 0 11 0 XI 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of ten and one -13746785 23 n 04 twelve 0 12 0 XII 0 dozen 0 003 @ 13745420 n 0000 + 02187465 a 0404 ~ 13746946 n 0000 | the cardinal number that is the sum of eleven and one -13746946 23 n 01 boxcars 0 002 @ 13746785 n 0000 ;u 06295235 n 0000 | (usually plural) an expression used when two dice are thrown and both come up showing six spots -13747114 23 n 01 teens 0 001 @ 13745420 n 0000 | all the numbers that end in -teen -13747199 23 n 05 thirteen 0 13 0 XIII 0 baker's_dozen 0 long_dozen 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twelve and one -13747348 23 n 03 fourteen 0 14 0 XIV 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of thirteen and one -13747469 23 n 03 fifteen 0 15 0 XV 0 002 @ 13745420 n 0000 + 02187793 a 0101 | the cardinal number that is the sum of fourteen and one -13747606 23 n 03 sixteen 0 16 0 XVI 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of fifteen and one -13747725 23 n 03 seventeen 0 17 0 XVII 0 002 @ 13745420 n 0000 + 02187995 a 0101 | the cardinal number that is the sum of sixteen and one -13747865 23 n 03 eighteen 0 18 0 XVIII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of seventeen and one -13747989 23 n 03 nineteen 0 19 0 XIX 0 002 @ 13745420 n 0000 + 02188205 a 0101 | the cardinal number that is the sum of eighteen and one -13748128 23 n 03 twenty 0 20 0 XX 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of nineteen and one -13748246 23 n 03 twenty-one 0 21 0 XXI 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty and one -13748367 23 n 03 twenty-two 0 22 0 XXII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-one and one -13748493 23 n 03 twenty-three 0 23 0 XXIII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-two and one -13748622 23 n 04 twenty-four 0 24 0 XXIV 0 two_dozen 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-three and one -13748763 23 n 03 twenty-five 0 25 0 XXV 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-four and one -13748890 23 n 03 twenty-six 0 26 0 XXVI 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-five and one -13749017 23 n 03 twenty-seven 0 27 0 XXVII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-six and one -13749146 23 n 03 twenty-eight 0 28 0 XXVIII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-seven and one -13749278 23 n 03 twenty-nine 0 29 0 XXIX 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of twenty-eight and one -13749407 23 n 03 thirty 0 30 0 XXX 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and three -13749527 23 n 03 forty 0 40 0 XL 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and four -13749644 23 n 03 fifty 0 50 0 L 6 002 @ 13745420 n 0000 + 02191232 a 0101 | the cardinal number that is the product of ten and five -13749778 23 n 03 sixty 0 60 0 LX 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and six -13749894 23 n 03 seventy 0 70 0 LXX 0 002 @ 13745420 n 0000 + 02193141 a 0101 | the cardinal number that is the product of ten and seven -13750033 23 n 03 seventy-eight 0 78 0 LXXVIII 0 001 @ 13745420 n 0000 | the cardinal number that is the sum of seventy and eight -13750164 23 n 04 eighty 0 80 0 LXXX 0 fourscore 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and eight -13750297 23 n 03 ninety 0 90 0 XC 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and nine -13750415 23 n 05 hundred 0 100 0 C 1 century 0 one_C 0 001 @ 13745420 n 0000 | ten 10s -13750504 23 n 02 gross 0 144 0 001 @ 13745420 n 0000 | twelve dozen -13750574 23 n 03 long_hundred 0 great_hundred 0 120 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and twelve -13750712 23 n 03 five_hundred 0 500 0 D 0 001 @ 13745420 n 0000 | the cardinal number that is the product of one hundred and five -13750844 23 n 0a thousand 0 one_thousand 0 1000 0 M 1 K 6 chiliad 0 G 1 grand 0 thou 0 yard 2 002 @ 13745420 n 0000 ~ 13751036 n 0000 | the cardinal number that is the product of 10 and 100 -13751036 23 n 01 millenary 0 001 @ 13750844 n 0000 | a sum or aggregate of one thousand (especially one thousand years) -13751158 23 n 02 great_gross 0 1728 0 001 @ 13745420 n 0000 | a cardinal number equal to one dozen gross -13751265 23 n 03 ten_thousand 0 10000 0 myriad 0 001 @ 13745420 n 0000 | the cardinal number that is the product of ten and one thousand -13751404 23 n 03 hundred_thousand 0 100000 0 lakh 0 001 @ 13745420 n 0000 | the cardinal number that is the fifth power of ten -13751533 23 n 04 million 0 1000000 0 one_thousand_thousand 0 meg 0 001 @ 13745420 n 0000 | the number that is represented as a one followed by 6 zeros -13751686 23 n 01 crore 0 002 @ 13745420 n 0000 ;r 08900535 n 0000 | the number that is represented as a one followed by 7 zeros; ten million -13751829 23 n 03 billion 0 one_thousand_million 0 1000000000 0 004 @ 13745420 n 0000 ;r 09044862 n 0000 + 02199342 a 0101 ~ 13752033 n 0000 | the number that is represented as a one followed by 9 zeros -13752033 23 n 01 milliard 0 002 @ 13751829 n 0000 ;r 08860123 n 0000 | a billion; "in England they call one thousand million a milliard" -13752172 23 n 03 billion 1 one_million_million 0 1000000000000 0 003 @ 13745420 n 0000 ;r 08860123 n 0000 + 02199523 a 0101 | the number that is represented as a one followed by 12 zeros; in the United Kingdom the usage followed in the United States is frequently seen -13752443 23 n 03 trillion 0 one_million_million 1 1000000000000 1 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 12 zeros; "in England they call a trillion a billion" -13752679 23 n 02 trillion 1 one_million_million_million 0 003 @ 13745420 n 0000 ;r 08860123 n 0000 ;r 08766988 n 0000 | the number that is represented as a one followed by 18 zeros; "in England they call a quintillion a trillion" -13752911 23 n 01 quadrillion 0 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 15 zeros -13753067 23 n 01 quadrillion 1 003 @ 13745420 n 0000 ;r 08860123 n 0000 ;r 08766988 n 0000 | the number that is represented as a one followed by 24 zeros; "in England they call a septillion a quadrillion" -13753274 23 n 01 quintillion 0 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 18 zeros -13753430 23 n 01 sextillion 0 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 21 zeros -13753585 23 n 01 septillion 0 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 24 zeros -13753740 23 n 01 octillion 0 003 @ 13745420 n 0000 ;r 09044862 n 0000 ;r 08929922 n 0000 | the number that is represented as a one followed by 27 zeros -13753894 23 n 03 aleph-null 0 aleph-nought 0 aleph-zero 0 001 @ 13745420 n 0000 | the smallest infinite integer -13754008 23 n 01 pi 0 001 @ 13730756 n 0000 | the ratio of the circumference to the diameter of a circle; approximately equal to 3.14159265358979323846... -13754165 23 n 01 e 0 001 @ 13730756 n 0000 | the base of the natural system of logarithms; approximately equal to 2.718282... -13754293 23 n 03 addition 0 increase 0 gain 0 004 @ 13576355 n 0000 + 00153263 v 0201 + 00156601 v 0201 ~ 13754565 n 0000 | a quantity that is added; "there was an addition to property taxes this year"; "they recorded the cattle's gain in weight over a period of weeks" -13754565 23 n 01 accretion 0 002 @ 13754293 n 0000 + 02535335 a 0101 | something contributing to growth or increase; "he scraped away the accretions of paint"; "the central city surrounded by recent accretions" -13754778 23 n 01 bag 1 002 @ 13576355 n 0000 + 01479874 v 0101 | the quantity of game taken in a particular period (usually by one person); "his bag included two deer" -13754948 23 n 01 breakage 0 001 @ 13576355 n 0000 | the quantity broken; "the total breakage was huge" -13755053 23 n 01 capacity 1 005 @ 13576355 n 0000 ;c 06128570 n 0000 + 01384572 a 0101 ~ 13755342 n 0000 ~ 13755627 n 0000 | (computer science) the amount of information (in bytes) that can be stored on a disk drive; "the capacity of a hard disk drive is usually expressed in megabytes" -13755342 23 n 01 formatted_capacity 0 002 @ 13755053 n 0000 ;c 06128570 n 0000 | (computer science) the usable capacity of a disk drive; the amount of space that is left after the sector headings and boundary definitions and timing information have been added by formatting the disk -13755627 23 n 01 unformatted_capacity 0 002 @ 13755053 n 0000 ;c 06128570 n 0000 | (computer science) the total number of bytes on a disk including the space that will be required to format it -13755822 23 n 02 catch 0 haul 0 002 @ 13576355 n 0000 + 01480149 v 0102 | the quantity that was caught; "the catch was only 10 fish" -13755957 23 n 02 correction 0 fudge_factor 0 001 @ 13576355 n 0000 | a quantity that is added or subtracted in order to increase the accuracy of a scientific measure -13756125 23 n 01 containerful 0 058 @ 13576355 n 0000 ~ 13764540 n 0000 ~ 13764639 n 0000 ~ 13764764 n 0000 ~ 13764897 n 0000 ~ 13764998 n 0000 ~ 13765086 n 0000 ~ 13765207 n 0000 ~ 13765306 n 0000 ~ 13765396 n 0000 ~ 13765531 n 0000 ~ 13765624 n 0000 ~ 13765749 n 0000 ~ 13765990 n 0000 ~ 13766080 n 0000 ~ 13766166 n 0000 ~ 13766252 n 0000 ~ 13766337 n 0000 ~ 13766436 n 0000 ~ 13766547 n 0000 ~ 13766637 n 0000 ~ 13766733 n 0000 ~ 13766896 n 0000 ~ 13767042 n 0000 ~ 13767146 n 0000 ~ 13767239 n 0000 ~ 13767350 n 0000 ~ 13767455 n 0000 ~ 13767545 n 0000 ~ 13767691 n 0000 ~ 13767822 n 0000 ~ 13767956 n 0000 ~ 13768064 n 0000 ~ 13768154 n 0000 ~ 13768250 n 0000 ~ 13768343 n 0000 ~ 13768440 n 0000 ~ 13768537 n 0000 ~ 13768630 n 0000 ~ 13768748 n 0000 ~ 13768850 n 0000 ~ 13768946 n 0000 ~ 13769033 n 0000 ~ 13769123 n 0000 ~ 13769206 n 0000 ~ 13769317 n 0000 ~ 13769428 n 0000 ~ 13769549 n 0000 ~ 13769870 n 0000 ~ 13769994 n 0000 ~ 13770169 n 0000 ~ 13770310 n 0000 ~ 13770416 n 0000 ~ 13770529 n 0000 ~ 13770635 n 0000 ~ 13770729 n 0000 ~ 13770829 n 0000 ~ 13770926 n 0000 | the quantity that a container will hold -13757249 23 n 04 footstep 0 pace 1 step 0 stride 0 010 @ 13576355 n 0000 + 01912709 v 0401 + 01919711 v 0401 + 00490722 v 0302 + 02091689 v 0301 + 02091410 v 0301 + 01928838 v 0301 + 00490722 v 0201 + 02091165 v 0201 + 01929254 v 0201 | the distance covered by a step; "he stepped off ten paces from the old tree and began to dig" -13757582 23 n 01 headspace 0 001 @ 13576355 n 0000 | the volume left at the top of a filled container (bottle or jar or tin) before sealing -13757724 23 n 02 large_indefinite_quantity 0 large_indefinite_amount 0 018 @ 13576355 n 0000 ~ 13758197 n 0000 ~ 13765866 n 0000 ~ 13774311 n 0000 ~ 13774404 n 0000 ~ 13775093 n 0000 ~ 13775319 n 0000 ~ 13775523 n 0000 ~ 13776060 n 0000 ~ 13776137 n 0000 ~ 13776342 n 0000 ~ 13776432 n 0000 ~ 13776621 n 0000 ~ 13776726 n 0000 ~ 13776971 n 0000 ~ 13777098 n 0000 ~ 13777211 n 0000 ~ 13777509 n 0000 | an indefinite quantity that is above the average in size or magnitude -13758197 23 n 01 chunk 0 001 @ 13757724 n 0000 | a substantial amount; "we won a chunk of money" -13758296 23 n 02 limit 0 limitation 0 003 @ 13576355 n 0000 ~ 13653902 n 0000 ~ 13759014 n 0000 | the greatest amount of something that is possible or allowed; "there are limits on the amount you can bet"; "it is growing rapidly with no limitation in sight" -13758556 23 n 03 limit 1 limit_point 0 point_of_accumulation 0 001 @ 13576355 n 0000 | the mathematical value toward which a function goes as the independent variable approaches infinity -13758745 23 n 03 output 0 yield 0 production 0 004 @ 13576355 n 0000 + 02291708 v 0201 + 01629000 v 0202 ~ 13759558 n 0000 | the quantity of something (as a commodity) that is created (usually within a given period of time); "production was up in the second quarter" -13759014 23 n 01 cutoff 0 001 @ 13758296 n 0000 | a designated limit beyond which something cannot function or must be terminated -13759146 23 n 02 region 0 neighborhood 0 001 @ 13576355 n 0000 | the approximate amount of something (usually used prepositionally as in `in the region of'); "it was going to take in the region of two or three months to finish the job"; "the price is in the neighborhood of $100" -13759428 23 n 01 outage 0 001 @ 13576355 n 0000 | the amount of something (as whiskey or oil) lost in storage or transportation -13759558 23 n 02 picking 0 pick 0 002 @ 13758745 n 0000 + 01382083 v 0201 | the quantity of a crop that is harvested; "he sent the first picking of berries to the market"; "it was the biggest peach pick in years" -13759773 23 n 01 reserve 0 003 @ 13576355 n 0000 ;c 06043075 n 0000 ~ 13759941 n 0000 | (medicine) potential capacity to respond in order to maintain vital functions -13759941 23 n 01 pulmonary_reserve 0 001 @ 13759773 n 0000 | the additional volume of air that the lungs can inhale and exhale when breathing to the limit of capacity in times of stress -13760129 23 n 01 run 0 001 @ 13576355 n 0000 | the production achieved during a continuous period of operation (of a machine or factory etc.); "a daily run of 100,000 gallons of paint" -13760316 23 n 02 small_indefinite_quantity 0 small_indefinite_amount 0 029 @ 13576355 n 0000 ~ 07578363 n 0000 ~ 07578879 n 0000 ~ 13760980 n 0000 ~ 13761171 n 0000 ~ 13761407 n 0000 ~ 13761603 n 0000 ~ 13761801 n 0000 ~ 13761966 n 0000 ~ 13762178 n 0000 ~ 13762305 n 0000 ~ 13762458 n 0000 ~ 13762579 n 0000 ~ 13762717 n 0000 ~ 13762836 n 0000 ~ 13763185 n 0000 ~ 13763384 n 0000 ~ 13771034 n 0000 ~ 13771154 n 0000 ~ 13771290 n 0000 ~ 13771404 n 0000 ~ 13772020 n 0000 ~ 13772971 n 0000 ~ 13773047 n 0000 ~ 13773250 n 0000 ~ 13773361 n 0000 ~ 13773725 n 0000 ~ 13773906 n 0000 ~ 13774115 n 0000 | an indefinite quantity that is below average size or magnitude -13760980 23 n 01 crumb 0 001 @ 13760316 n 0000 | a very small quantity of something; "he gave only a crumb of information about his plans"; "there were few crumbs of comfort in the report" -13761171 23 n 03 dab 0 splash 0 splatter 0 004 @ 13760316 n 0000 + 01374020 v 0302 + 01336864 v 0201 + 01233194 v 0101 | a small quantity of something moist or liquid; "a dab of paint"; "a splatter of mud"; "just a splash of whiskey" -13761407 23 n 02 spot 0 bit 1 002 @ 13760316 n 0000 + 01392633 a 0201 | a small piece or quantity of something; "a spot of tea"; "a bit of paper"; "a bit of lint"; "I gave him a bit of my mind" -13761603 23 n 04 hair's-breadth 0 hairsbreadth 0 hair 0 whisker 0 001 @ 13760316 n 0000 | a very small distance or space; "they escaped by a hair's-breadth"; "they lost the election by a whisker" -13761801 23 n 01 modicum 0 001 @ 13760316 n 0000 | a small or moderate or token amount; "England still expects a modicum of eccentricity in its artists"- Ian Jack -13761966 23 n 02 scattering 0 sprinkling 0 002 @ 13760316 n 0000 + 01376245 v 0202 | a small number (of something) dispersed haphazardly; "the first scatterings of green"; "a sprinkling of grey at his temples" -13762178 23 n 02 shoestring 0 shoe_string 0 001 @ 13760316 n 0000 | a small amount of money; "he managed it on a shoestring" -13762305 23 n 02 spray 0 spraying 0 002 @ 13760316 n 0000 + 01372682 v 0201 | a quantity of small objects flying through the air; "a spray of bullets" -13762458 23 n 01 nose 0 002 @ 13760316 n 0000 + 01109644 v 0101 | a small distance; "my horse lost the race by a nose" -13762579 23 n 02 step 1 stone's_throw 0 002 @ 13760316 n 0000 + 00490722 v 0102 | a short distance; "it's only a step to the drugstore" -13762717 23 n 01 little 0 001 @ 13760316 n 0000 | a small amount or duration; "he accepted the little they gave him" -13762836 23 n 04 shtik 0 shtick 0 schtik 0 schtick 0 003 @ 13760316 n 0000 ;c 06951067 n 0000 ~ 13763058 n 0000 | (Yiddish) a little; a piece; "give him a shtik cake"; "he's a shtik crazy"; "he played a shtik Beethoven" -13763058 23 n 04 shtikl 0 shtickl 0 schtikl 0 schtickl 0 001 @ 13762836 n 0000 | a really little shtik; "have a shtikl cake" -13763185 23 n 02 tad 0 shade 0 001 @ 13760316 n 0000 | a slight amount or degree of difference; "a tad too expensive"; "not a tad of difference"; "the new model is a shade better than the old one" -13763384 23 n 02 minimum 0 lower_limit 0 009 @ 13653902 n 0000 @ 13760316 n 0000 + 00841125 v 0102 + 00864475 v 0101 + 00427802 v 0101 + 00841125 v 0103 + 00427802 v 0102 ! 13776137 n 0101 ~ 13763626 n 0000 | the smallest possible quantity -13763626 23 n 01 skeleton 0 001 @ 13763384 n 0000 | something reduced to its minimal form; "the battalion was a mere skeleton of its former self"; "the bare skeleton of a novel" -13763806 23 n 01 spillage 0 001 @ 13576355 n 0000 | the amount that has spilled -13763888 23 n 01 spoilage 0 001 @ 13576355 n 0000 | the amount that has spoiled -13763970 23 n 01 tankage 0 001 @ 13576355 n 0000 | the quantity contained in (or the capacity of) a tank or tanks -13764086 23 n 01 ullage 0 001 @ 13576355 n 0000 | the amount that a container (as a wine bottle or tank) lacks of being full -13764213 23 n 01 top-up 0 002 @ 13576355 n 0000 ;r 08860123 n 0000 | an amount needed to restore something to its former level -13764342 23 n 01 worth 0 004 @ 13576355 n 0000 + 02502016 a 0101 ~ 13661045 n 0000 ~ 13661163 n 0000 | an indefinite quantity of something having a specified value; "10 dollars worth of gasoline" -13764540 23 n 01 armful 0 001 @ 13756125 n 0000 | the quantity that can be contained in the arms -13764639 23 n 02 bag 0 bagful 0 001 @ 13756125 n 0000 | the quantity that a bag will hold; "he ate a large bag of popcorn" -13764764 23 n 02 barrel 4 barrelful 0 002 @ 13756125 n 0000 + 01502540 v 0101 | the quantity that a barrel (of any size) will hold -13764897 23 n 02 barrow 0 barrowful 0 001 @ 13756125 n 0000 | the quantity that a barrow will hold -13764998 23 n 01 barnful 0 001 @ 13756125 n 0000 | the quantity that a barn will hold -13765086 23 n 02 basin 0 basinful 0 001 @ 13756125 n 0000 | the quantity that a basin will hold; "a basinful of water" -13765207 23 n 02 basket 0 basketful 0 001 @ 13756125 n 0000 | the quantity contained in a basket -13765306 23 n 02 bin 0 binful 0 001 @ 13756125 n 0000 | the quantity contained in a bin -13765396 23 n 02 bottle 0 bottleful 0 003 @ 13756125 n 0000 + 01502279 v 0101 ~ 13770076 n 0000 | the quantity contained in a bottle -13765531 23 n 02 bowl 0 bowlful 0 001 @ 13756125 n 0000 | the quantity contained in a bowl -13765624 23 n 02 box 0 boxful 0 001 @ 13756125 n 0000 | the quantity contained in a box; "he gave her a box of chocolates" -13765749 23 n 02 bucket 0 bucketful 0 002 @ 13756125 n 0000 + 01433042 v 0101 | the quantity contained in a bucket -13765866 23 n 01 busload 0 001 @ 13757724 n 0000 | the quantity of cargo or the number of passengers that a bus can carry -13765990 23 n 02 can 0 canful 0 001 @ 13756125 n 0000 | the quantity contained in a can -13766080 23 n 01 capful 0 001 @ 13756125 n 0000 | the quantity that a cap will hold -13766166 23 n 01 carful 0 001 @ 13756125 n 0000 | the quantity that a car will hold -13766252 23 n 01 cartload 0 001 @ 13756125 n 0000 | the quantity that a cart holds -13766337 23 n 02 carton 0 cartonful 0 001 @ 13756125 n 0000 | the quantity contained in a carton -13766436 23 n 02 case 0 caseful 0 002 @ 13756125 n 0000 + 01486312 v 0103 | the quantity contained in a case -13766547 23 n 02 cask 0 caskful 0 001 @ 13756125 n 0000 | the quantity a cask will hold -13766637 23 n 02 crate 0 crateful 0 001 @ 13756125 n 0000 | the quantity contained in a crate -13766733 23 n 02 cup 1 cupful 0 002 @ 13756125 n 0000 + 00189062 v 0101 | the quantity a cup will hold; "he drank a cup of coffee"; "he borrowed a cup of sugar" -13766896 23 n 02 dish 0 dishful 0 002 @ 13756125 n 0000 + 01180351 v 0105 | the quantity that a dish will hold; "they served me a dish of rice" -13767042 23 n 02 dustpan 0 dustpanful 0 001 @ 13756125 n 0000 | the quantity that a dustpan will hold -13767146 23 n 02 flask 0 flaskful 0 001 @ 13756125 n 0000 | the quantity a flask will hold -13767239 23 n 02 glass 0 glassful 0 002 @ 13756125 n 0000 + 00188580 v 0101 | the quantity a glass will hold -13767350 23 n 02 handful 0 fistful 0 001 @ 13756125 n 0000 | the quantity that can be held in the hand -13767455 23 n 01 hatful 0 001 @ 13756125 n 0000 | as many or as much as a hat will hold -13767545 23 n 01 headful 0 001 @ 13756125 n 0000 | the quantity of information that a head will hold; "he has a headful of baseball statistics" -13767691 23 n 01 houseful 0 001 @ 13756125 n 0000 | as many as a house will accommodate; "they entertained a houseful of guests" -13767822 23 n 02 jar 0 jarful 0 002 @ 13756125 n 0000 + 01497864 v 0101 | the quantity contained in a jar; "he drank a jar of beer" -13767956 23 n 02 jug 0 jugful 0 002 @ 13756125 n 0000 + 00324071 v 0101 | the quantity contained in a jug -13768064 23 n 02 keg 0 kegful 0 001 @ 13756125 n 0000 | the quantity contained in a keg -13768154 23 n 02 kettle 0 kettleful 0 001 @ 13756125 n 0000 | the quantity a kettle will hold -13768250 23 n 01 lapful 0 001 @ 13756125 n 0000 | the quantity that can be held in the lap -13768343 23 n 01 mouthful 0 001 @ 13756125 n 0000 | the quantity that can be held in the mouth -13768440 23 n 02 mug 0 mugful 0 001 @ 13756125 n 0000 | the quantity that can be held in a mug -13768537 23 n 02 pail 0 pailful 0 001 @ 13756125 n 0000 | the quantity contained in a pail -13768630 23 n 01 pipeful 0 001 @ 13756125 n 0000 | the quantity of tobacco that can be smoked in a pipe at one time -13768748 23 n 02 pitcher 0 pitcherful 0 001 @ 13756125 n 0000 | the quantity contained in a pitcher -13768850 23 n 02 plate 0 plateful 0 001 @ 13756125 n 0000 | the quantity contained in a plate -13768946 23 n 01 pocketful 0 001 @ 13756125 n 0000 | the quantity a pocket will hold -13769033 23 n 02 pot 0 potful 0 001 @ 13756125 n 0000 | the quantity contained in a pot -13769123 23 n 01 roomful 0 001 @ 13756125 n 0000 | the quantity a room will hold -13769206 23 n 02 sack 0 sackful 0 002 @ 13756125 n 0000 + 01486151 v 0101 | the quantity contained in a sack -13769317 23 n 02 scoop 0 scoopful 0 002 @ 13756125 n 0000 + 01312371 v 0101 | the quantity a scoop will hold -13769428 23 n 01 shelfful 0 001 @ 13756125 n 0000 | the amount that a shelf will hold; "he bought a shelfful of books" -13769549 23 n 01 shoeful 0 001 @ 13756125 n 0000 | the amount that a shoe will hold; "he emptied out a shoeful of water" -13769672 23 n 01 skinful 0 002 @ 13576355 n 0000 ;u 07157273 n 0000 | a quantity of alcoholic drink sufficient to make you drunk; "someone had to drive me home last night because I had a skinful" -13769870 23 n 03 shovel 0 shovelful 0 spadeful 0 002 @ 13756125 n 0000 + 01312810 v 0101 | the quantity a shovel can hold -13769994 23 n 01 skepful 0 001 @ 13756125 n 0000 | the quantity a skep can hold -13770076 23 n 01 split 0 001 @ 13765396 n 0000 | a bottle containing half the usual amount -13770169 23 n 02 spoon 0 spoonful 0 002 @ 13756125 n 0000 + 01579622 v 0101 | as much as a spoon will hold; "he added two spoons of sugar" -13770310 23 n 02 tablespoon 1 tablespoonful 1 001 @ 13756125 n 0000 | as much as a tablespoon will hold -13770416 23 n 02 dessertspoon 0 dessertspoonful 0 001 @ 13756125 n 0000 | as much as a dessert spoon will hold -13770529 23 n 02 tank 0 tankful 0 002 @ 13756125 n 0000 + 02282082 v 0101 | as much as a tank will hold -13770635 23 n 02 teacup 0 teacupful 0 001 @ 13756125 n 0000 | as much as a teacup will hold -13770729 23 n 02 teaspoon 1 teaspoonful 1 001 @ 13756125 n 0000 | as much as a teaspoon will hold -13770829 23 n 02 thimble 0 thimbleful 0 001 @ 13756125 n 0000 | as much as a thimble will hold -13770926 23 n 02 tub 0 tubful 0 001 @ 13756125 n 0000 | the amount that a tub will hold; "a tub of water" -13771034 23 n 01 morsel 0 001 @ 13760316 n 0000 | a small quantity of anything; "a morsel of paper was all he needed" -13771154 23 n 02 handful 1 smattering 0 001 @ 13760316 n 0000 | a small number or amount; "only a handful of responses were received" -13771290 23 n 01 couple 1 001 @ 13760316 n 0000 | a small indefinite number; "he's coming for a couple of days" -13771404 23 n 03 drop 0 drib 0 driblet 0 007 @ 13760316 n 0000 + 13771828 n 0101 + 01611516 v 0103 ~ 05405324 n 0000 ~ 11501649 n 0000 ~ 13771828 n 0000 ~ 13771929 n 0000 | a small indefinite quantity (especially of a liquid); "he had a drop too much to drink"; "a drop of each sample was analyzed"; "there is not a drop of pity in that man"; "years afterward, they would pay the blood-money, driblet by driblet"--Kipling -13771828 23 n 01 droplet 0 003 @ 13771404 n 0000 + 13901585 n 0101 + 13771404 n 0101 | a tiny drop -13771929 23 n 02 eyedrop 0 eye-drop 0 001 @ 13771404 n 0000 | a drop from an eye dropper -13772020 23 n 01 dollop 0 001 @ 13760316 n 0000 | a small measure (usually of food) -13772106 23 n 02 dose 0 dosage 0 004 @ 13576355 n 0000 + 00516584 v 0201 + 00084738 v 0202 + 00516584 v 0101 | the quantity of an active agent (substance or radiation) taken in or absorbed at any one time -13772313 23 n 01 load 1 002 @ 13576355 n 0000 ;u 07075172 n 0000 | an amount of alcohol sufficient to intoxicate; "he got a load on and started a brawl" -13772468 23 n 02 load 0 loading 0 002 @ 13576355 n 0000 ~ 13772876 n 0000 | a quantity that can be processed or transported at one time; "the system broke down under excessive loads" -13772653 23 n 01 precipitation 0 002 @ 13576355 n 0000 + 02756821 v 0101 | the quantity of water falling to earth at a specific place within a specified period of time; "the storm brought several inches of precipitation" -13772876 23 n 01 trainload 0 001 @ 13772468 n 0000 | quantity that can be carried by a train -13772971 23 n 01 dreg 0 001 @ 13760316 n 0000 | a small amount of residue -13773047 23 n 0a jack 0 doodly-squat 0 diddly-squat 0 diddlysquat 0 diddly-shit 0 diddlyshit 0 diddly 0 diddley 0 squat 0 shit 0 001 @ 13760316 n 0000 | a small worthless amount; "you don't know jack" -13773250 23 n 02 nip 0 shot 0 001 @ 13760316 n 0000 | a small drink of liquor; "he poured a shot of whiskey" -13773361 23 n 03 trace 0 hint 1 suggestion 0 003 @ 13760316 n 0000 + 02156063 v 0101 ~ 13773539 n 0000 | a just detectable amount; "he speaks French with a trace of an accent" -13773539 23 n 01 spark 0 002 @ 13773361 n 0000 + 01643657 v 0107 | a small but noticeable trace of some quality that might become stronger; "a spark of interest"; "a spark of decency" -13773725 23 n 09 shred 0 scintilla 0 whit 0 iota 0 tittle 0 smidgen 0 smidgeon 0 smidgin 0 smidge 0 002 @ 13760316 n 0000 + 01573891 v 0101 | a tiny or scarcely detectable amount -13773906 23 n 01 tot 0 001 @ 13760316 n 0000 | a small amount (especially of a drink); "a tot of rum" -13774010 23 n 01 snuff 0 001 @ 13774115 n 0000 | a pinch of smokeless tobacco inhaled at a single time -13774115 23 n 08 touch 0 hint 0 tinge 0 mite 0 pinch 0 jot 0 speck 0 soupcon 0 002 @ 13760316 n 0000 ~ 13774010 n 0000 | a slight but appreciable amount; "this dish could use a touch of garlic" -13774311 23 n 01 barrels 0 001 @ 13757724 n 0000 | the amount that many barrels might hold -13774404 23 n 1b batch 0 deal 0 flock 0 good_deal 0 great_deal 0 hatful 2 heap 0 lot 0 mass 0 mess 0 mickle 0 mint 0 mountain 0 muckle 0 passel 0 peck 0 pile 0 plenty 0 pot 1 quite_a_little 0 raft 0 sight 0 slew 0 spate 0 stack 0 tidy_sum 0 wad 0 008 @ 13757724 n 0000 + 01524298 v 1b06 + 00014490 a 1203 + 02064131 v 1104 + 00453424 v 0701 + 02263788 v 0701 ~ 13775706 n 0000 ~ 13775939 n 0000 | (often followed by `of') a large number or amount or extent; "a batch of letters"; "a deal of trouble"; "a lot of money"; "he made a mint on the stock market"; "see the rest of the winners in our huge passel of photos"; "it must have cost plenty"; "a slew of journalists"; "a wad of money" -13775093 23 n 05 battalion 0 large_number 0 multitude 0 plurality 1 pack 0 002 @ 13757724 n 0000 + 00301951 a 0305 | a large indefinite number; "a battalion of ants"; "a multitude of TV antennas"; "a plurality of religions" -13775319 23 n 04 billyo 0 billyoh 0 billy-ho 0 all_get_out 0 001 @ 13757724 n 0000 | an unimaginably large amount; "British say `it rained like billyo' where Americans say `it rained like all get out'" -13775523 23 n 03 boatload 0 shipload 0 carload 0 001 @ 13757724 n 0000 | the amount of cargo that can be held by a boat or ship or a freight car; "he imported wine by the boatload" -13775706 23 n 04 flood 0 inundation 0 deluge 0 torrent 0 005 @ 13774404 n 0000 + 00601250 a 0401 + 00751131 v 0302 + 01524523 v 0203 + 02356704 v 0101 | an overwhelming number or amount; "a flood of requests"; "a torrent of abuse" -13775939 23 n 01 haymow 0 002 @ 13774404 n 0000 %s 07802026 n 0000 | a mass of hay piled up in a barn for preservation -13776060 23 n 01 infinitude 0 001 @ 13757724 n 0000 | an infinite quantity -13776137 23 n 02 maximum 0 upper_limit 0 007 @ 13653902 n 0000 @ 13757724 n 0000 + 00428870 v 0101 + 00428583 v 0101 + 00428870 v 0102 + 00428583 v 0102 ! 13763384 n 0101 | the largest possible quantity -13776342 23 n 01 mile 7 001 @ 13757724 n 0000 | a large distance; "he missed by a mile" -13776432 23 n 06 million 1 billion 2 trillion 2 zillion 0 jillion 0 gazillion 0 001 @ 13757724 n 0000 | a very large indefinite number (usually hyperbole); "there were millions of flies" -13776621 23 n 01 much 0 001 @ 13757724 n 0000 | a great amount or extent; "they did much for humanity" -13776726 23 n 01 myriad 1 002 @ 13757724 n 0000 + 00301951 a 0106 | a large indefinite number; "he faced a myriad of details" -13776854 23 n 01 reservoir 0 001 @ 13777344 n 0000 | a large or extra supply of something; "a reservoir of talent" -13776971 23 n 02 ocean 0 sea 0 002 @ 13757724 n 0000 + 01416081 a 0101 | anything apparently limitless in quantity or volume -13777098 23 n 01 ream 1 001 @ 13757724 n 0000 | a large quantity of written matter; "he wrote reams and reams" -13777211 23 n 01 small_fortune 0 001 @ 13757724 n 0000 | a large sum of money; "he made a small fortune in the commodities market" -13777344 23 n 01 supply 0 005 @ 13576355 n 0000 + 01182709 v 0102 + 02479323 v 0102 + 02327200 v 0101 ~ 13776854 n 0000 | an amount of something available for use -13777509 23 n 0f tons 0 dozens 0 heaps 0 lots 0 piles 0 scores 0 stacks 0 loads 0 rafts 0 slews 0 wads 0 oodles 0 gobs 0 scads 0 lashings 0 001 @ 13757724 n 0000 | a large number or amount; "made lots of new friends"; "she amassed stacks of newspapers" -13777764 23 n 03 room 0 way 0 elbow_room 0 010 @ 05074774 n 0000 + 00476249 a 0101 ~ 04162998 n 0000 ~ 04302334 n 0000 ~ 13778089 n 0000 ~ 13778261 n 0000 ~ 13778400 n 0000 ~ 13778530 n 0000 ~ 13778671 n 0000 ~ 13778827 n 0000 | space for movement; "room to pass"; "make way for"; "hardly enough elbow room to turn around" -13778089 23 n 02 breathing_room 0 breathing_space 0 001 @ 13777764 n 0000 | sufficient room for easy breathing or movement; "moved to the country to find breathing room" -13778261 23 n 03 headroom 0 headway 0 clearance 0 001 @ 13777764 n 0000 | vertical space available to allow easy passage under something -13778400 23 n 01 houseroom 0 001 @ 13777764 n 0000 | space for accommodation in a house; "I wouldn't give that table houseroom" -13778530 23 n 02 living_space 0 lebensraum 0 001 @ 13777764 n 0000 | space sought for occupation by a nation whose population is expanding -13778671 23 n 01 parking 0 002 @ 13777764 n 0000 + 01493380 v 0101 | space in which vehicles can be parked; "there is plenty of parking behind the store" -13778827 23 n 01 sea_room 0 001 @ 13777764 n 0000 | space for maneuver at sea -13778907 23 n 01 swath 0 001 @ 13910384 n 0000 | the space created by the swing of a scythe or the cut of a mowing machine -13779032 23 n 01 volume 0 004 @ 00033615 n 0000 + 01390900 a 0101 %p 13600822 n 0000 ~ 13779374 n 0000 | the amount of 3-dimensional space occupied by an object; "the gas expanded to twice its original volume" -13779244 23 n 01 volume 1 001 @ 00033615 n 0000 | a relative amount; "mix one volume of the solution with ten volumes of water" -13779374 23 n 02 capacity 0 content 0 004 @ 13779032 n 0000 + 02700867 v 0204 + 01384572 a 0101 ~ 13779570 n 0000 | the amount that can be contained; "the gas tank has a capacity of 12 gallons" -13779570 23 n 01 vital_capacity 0 002 @ 13779374 n 0000 @ 05739043 n 0000 | the maximum amount of air that can be exhaled after a maximum inhalation (usually tested with a spirometer); used to determine the condition of lung tissue -13779804 23 n 01 population 0 001 @ 13728499 n 0000 | the number of inhabitants (either the total number or the number of a particular race or class) in a given place (country or city etc.); "people come and go, but the population of this town has remained approximately constant for the past decade"; "the African-American population of Salt Lake City has been increasing" -13780180 23 n 01 proof 0 001 @ 00033615 n 0000 | a measure of alcoholic strength expressed as an integer twice the percentage of alcohol present (by volume) -13780339 23 n 02 STP 0 s.t.p. 0 002 @ 13715124 n 0000 @ 13711060 n 0000 | standard temperature and pressure -13780449 24 n 02 relations 0 dealings 0 002 @ 00032823 n 0000 + 02377764 v 0201 | mutual dealings or connections or communications among persons or groups -13780606 24 n 01 causality 0 002 @ 00031921 n 0000 + 00323199 a 0101 | the relation between causes and effects -13780719 24 n 02 relationship 0 human_relationship 0 005 @ 00031921 n 0000 + 10235549 n 0102 + 00031921 n 0101 ~ 13781348 n 0000 ~ 13781670 n 0000 | a relation between people; (`relationship' is often used where `relation' would serve, as in `the relationship between inflation and unemployment', but the preferred usage of `relationship' is for human relations or states of relatedness); "the relationship between mothers and their children" -13781164 24 n 01 function 1 001 @ 00031921 n 0000 | a relation such that one thing is dependent on another; "height is a function of age"; "price is a function of supply and demand" -13781348 24 n 01 partnership 0 001 @ 13780719 n 0000 | a cooperative relationship between people or groups who agree to share responsibility for achieving some specific goal; "effective language learning is a partnership between school, teacher and student"; "the action teams worked in partnership with the government" -13781670 24 n 02 personal_relation 0 personal_relationship 0 003 @ 13780719 n 0000 ~ 13781820 n 0000 ~ 13782033 n 0000 | a relation between persons -13781820 24 n 01 bonding 0 004 @ 13781670 n 0000 ~ 13782208 n 0000 ~ 13782329 n 0000 ~ 13782533 n 0000 | a close personal relationship that forms between people (as between husband and wife or parent and child) -13782033 24 n 02 obligation 0 indebtedness 0 003 @ 13781670 n 0000 + 01617004 a 0201 + 00885925 v 0101 | a personal relation in which one is indebted for a service or favor -13782208 24 n 01 female_bonding 0 001 @ 13781820 n 0000 | the formation of a close personal relationship between women -13782329 24 n 01 male_bonding 0 001 @ 13781820 n 0000 | the formation of a close personal relationship between men; "the rituals known as male bonding do not necessarily involve drinking beer together" -13782533 24 n 01 maternal-infant_bonding 0 001 @ 13781820 n 0000 | the attachment that forms between an infant and its mother beginning at birth; "maternal-infant bonding influences the child's psychological and physical development" -13782769 24 n 01 association 0 002 @ 00031921 n 0000 + 02470175 v 0102 | a relation resulting from interaction or dependence; "flints were found in association with the prehistoric remains of the bear"; "the host is not always injured by association with a parasite" -13783038 24 n 01 logical_relation 0 008 @ 00031921 n 0000 ;c 06163751 n 0000 ~ 13783259 n 0000 ~ 13783421 n 0000 ~ 13798491 n 0000 ~ 13798814 n 0000 ~ 13802634 n 0000 ~ 13860281 n 0000 | a relation between propositions -13783259 24 n 01 contradictory 0 001 @ 13783038 n 0000 | two propositions are contradictories if both cannot be true (or both cannot be false) at the same time -13783421 24 n 01 contrary 2 001 @ 13783038 n 0000 | a logical relation such that two propositions are contraries if both cannot be true but both can be false -13783581 24 n 01 mathematical_relation 0 006 @ 00031921 n 0000 ;c 06000644 n 0000 ~ 13783816 n 0000 ~ 13790133 n 0000 ~ 13798491 n 0000 ~ 13798814 n 0000 | a relation between mathematical expressions (such as equality or inequality) -13783816 24 n 05 function 0 mathematical_function 0 single-valued_function 0 map 0 mapping 0 015 @ 13783581 n 0000 ;c 06000644 n 0000 + 00380698 v 0501 + 00380698 v 0401 ~ 05861855 n 0000 ~ 13784366 n 0000 ~ 13784537 n 0000 ~ 13784763 n 0000 ~ 13784906 n 0000 ~ 13785136 n 0000 ~ 13786187 n 0000 ~ 13786413 n 0000 ~ 13786960 n 0000 ~ 13789281 n 0000 ~ 13789462 n 0000 | (mathematics) a mathematical relation such that each element of a given set (the domain of the function) is associated with an element of another set (the range of the function) -13784366 24 n 01 expansion 0 002 @ 13783816 n 0000 ;c 06000644 n 0000 | a function expressed as a sum or product of terms; "the expansion of (a+b)^2 is a^2 + 2ab + b^2" -13784537 24 n 01 inverse_function 0 001 @ 13783816 n 0000 | a function obtained by expressing the dependent variable of one function as the independent variable of another; f and g are inverse functions if f(x)=y and g(y)=x -13784763 24 n 01 Kronecker_delta 0 001 @ 13783816 n 0000 | a function of two variables i and j that equals 1 when i=j and equals 0 otherwise -13784906 24 n 02 metric_function 0 metric 0 003 @ 13783816 n 0000 ;c 06000644 n 0000 ;c 06090869 n 0000 | a function of a topological space that gives, for any two points in the space, a value equal to the distance between them -13785136 24 n 01 transformation 0 007 @ 13783816 n 0000 ;c 06000644 n 0000 + 00544011 v 0101 ~ 13785404 n 0000 ~ 13785557 n 0000 ~ 13785736 n 0000 ~ 13785965 n 0000 | (mathematics) a function that changes the position or direction of the axes of a coordinate system -13785404 24 n 01 reflection 0 002 @ 13785136 n 0000 ;c 06000644 n 0000 | (mathematics) a transformation in which the direction of one axis is reversed -13785557 24 n 01 rotation 0 002 @ 13785136 n 0000 ;c 06000644 n 0000 | (mathematics) a transformation in which the coordinate axes are rotated by a fixed angle about the origin -13785736 24 n 01 translation 0 002 @ 13785136 n 0000 ;c 06000644 n 0000 | (mathematics) a transformation in which the origin of the coordinate system is moved to another position but the direction of each axis remains the same -13785965 24 n 01 affine_transformation 0 002 @ 13785136 n 0000 ;c 06000644 n 0000 | (mathematics) a transformation that is a combination of single transformations such as translation or rotation or reflection on an axis -13786187 24 n 01 isometry 0 002 @ 13783816 n 0000 + 02828802 a 0101 | a one-to-one mapping of one metric space into another metric space that preserves the distances between each pair of points; "the isometries of the cube" -13786413 24 n 01 operator 0 004 @ 13783816 n 0000 ;c 06000644 n 0000 ~ 13786595 n 0000 ~ 13786748 n 0000 | (mathematics) a symbol or function representing a mathematical operation -13786595 24 n 01 linear_operator 0 001 @ 13786413 n 0000 | an operator that obeys the distributive law: A(f+g) = Af + Ag (where f and g are functions) -13786748 24 n 03 identity 1 identity_element 0 identity_operator 0 001 @ 13786413 n 0000 | an operator that leaves unchanged the element on which it operates; "the identity under numerical multiplication is 1" -13786960 24 n 02 trigonometric_function 0 circular_function 0 013 @ 13783816 n 0000 ~ 13787379 n 0000 ~ 13787551 n 0000 ~ 13787723 n 0000 ~ 13787853 n 0000 ~ 13788035 n 0000 ~ 13788182 n 0000 ~ 13788369 n 0000 ~ 13788502 n 0000 ~ 13788690 n 0000 ~ 13788820 n 0000 ~ 13789002 n 0000 ~ 13789136 n 0000 | function of an angle expressed as a ratio of the length of the sides of right-angled triangle containing the angle -13787379 24 n 02 sine 0 sin 0 001 @ 13786960 n 0000 | ratio of the length of the side opposite the given angle to the length of the hypotenuse of a right-angled triangle -13787551 24 n 04 arc_sine 0 arcsine 0 arcsin 0 inverse_sine 0 001 @ 13786960 n 0000 | the inverse function of the sine; the angle that has a sine equal to a given number -13787723 24 n 02 cosine 0 cos 0 001 @ 13786960 n 0000 | ratio of the adjacent side to the hypotenuse of a right-angled triangle -13787853 24 n 04 arc_cosine 0 arccosine 0 arccos 0 inverse_cosine 0 001 @ 13786960 n 0000 | the inverse function of the cosine; the angle that has a cosine equal to a given number -13788035 24 n 02 tangent 0 tan 0 002 @ 13786960 n 0000 + 02808830 a 0101 | ratio of the opposite to the adjacent side of a right-angled triangle -13788182 24 n 04 arc_tangent 0 arctangent 0 arctan 0 inverse_tangent 0 001 @ 13786960 n 0000 | the inverse function of the tangent; the angle that has a tangent equal to a given number -13788369 24 n 02 cotangent 0 cotan 0 001 @ 13786960 n 0000 | ratio of the adjacent to the opposite side of a right-angled triangle -13788502 24 n 03 arc_cotangent 0 arccotangent 0 inverse_cotangent 0 001 @ 13786960 n 0000 | the inverse function of the cotangent; the angle that has a cotangent equal to a given number -13788690 24 n 02 secant 0 sec 0 001 @ 13786960 n 0000 | ratio of the hypotenuse to the adjacent side of a right-angled triangle -13788820 24 n 04 arc_secant 0 arcsecant 0 arcsec 0 inverse_secant 0 001 @ 13786960 n 0000 | the inverse function of the secant; the angle that has a secant equal to a given number -13789002 24 n 02 cosecant 0 cosec 0 001 @ 13786960 n 0000 | ratio of the hypotenuse to the opposite side of a right-angled triangle -13789136 24 n 03 arc_cosecant 0 arccosecant 0 inverse_cosecant 0 001 @ 13786960 n 0000 | the angle that has a cosecant equal to a given number -13789281 24 n 01 threshold_function 0 001 @ 13783816 n 0000 | a function that takes the value 1 if a specified function of the arguments exceeds a given threshold and 0 otherwise -13789462 24 n 02 exponential 0 exponential_function 0 002 @ 13783816 n 0000 + 02965274 a 0101 | a function in which an independent variable appears as an exponent -13789627 24 n 01 exponential_equation 0 001 @ 06669864 n 0000 | an equation involving exponential functions of a variable -13789751 24 n 01 exponential_curve 0 001 @ 07000195 n 0000 | a graph of an exponential function -13789849 24 n 01 exponential_expression 0 001 @ 06731802 n 0000 | a mathematical expression consisting of a constant (especially e) raised to some power -13790004 24 n 01 exponential_series 0 001 @ 05862721 n 0000 | a series derived from the expansion of an exponential expression -13790133 24 n 01 parity 0 004 @ 13783581 n 0000 ;c 06000644 n 0000 ~ 13790492 n 0000 ~ 13790592 n 0000 | (mathematics) a relation between a pair of integers: if both integers are odd or both are even they have the same parity; if one is odd and the other is even they have different parity; "parity is often used to check the integrity of transmitted data" -13790492 24 n 01 evenness 0 001 @ 13790133 n 0000 | the parity of even numbers (divisible by two) -13790592 24 n 01 oddness 0 002 @ 13790133 n 0000 + 00913454 a 0101 | the parity of odd numbers (not divisible by two) -13790712 24 n 01 foundation 0 004 @ 00031921 n 0000 + 00636888 v 0104 ~ 13790912 n 0000 ~ 13791250 n 0000 | the basis on which something is grounded; "there is little foundation for his objections" -13790912 24 n 03 footing 0 basis 0 ground 0 002 @ 13790712 n 0000 ~ 13791122 n 0000 | a relation that provides the foundation for something; "they were on a friendly footing"; "he worked on an interim basis" -13791122 24 n 01 common_ground 0 001 @ 13790912 n 0000 | a basis agreed to by all parties for reaching a mutual understanding -13791250 24 n 01 grass_roots 0 001 @ 13790712 n 0000 | the essential foundation or source; "the problem was attacked at the grass roots" -13791389 24 n 03 connection 0 connexion 0 connectedness 0 015 @ 00031921 n 0000 + 01650581 a 0302 + 02568884 a 0301 ! 13794226 n 0301 = 00566099 a 0000 = 00567593 a 0000 ~ 13791910 n 0000 ~ 13792183 n 0000 ~ 13792579 n 0000 ~ 13792842 n 0000 ~ 13793127 n 0000 ~ 13793330 n 0000 ~ 13793504 n 0000 ~ 13794417 n 0000 ~ 13795489 n 0000 | a relation between things or events (as in the case of one causing the other or sharing features with it); "there was a connection between eating that pickle and having that nightmare" -13791910 24 n 01 series 0 003 @ 13791389 n 0000 ;c 06099269 n 0000 + 02380358 a 0101 | (electronics) connection of components in such a manner that current flows first through one and then through the other; "the voltage divider consisted of a series of fixed resistors" -13792183 24 n 02 alliance 0 bond 0 004 @ 13791389 n 0000 + 02538086 v 0204 + 01607072 v 0201 ~ 13792468 n 0000 | a connection based on kinship or marriage or common interest; "the shifting alliances within a large family"; "their friendship constitutes a powerful bond between them" -13792468 24 n 01 silver_cord 0 001 @ 13792183 n 0000 | the emotional bond between a mother and her offspring -13792579 24 n 01 linkage 0 003 @ 13791389 n 0000 + 00713167 v 0104 ~ 13792692 n 0000 | an associative relation -13792692 24 n 02 link 0 nexus 0 003 @ 13792579 n 0000 + 01492052 v 0102 + 01354673 v 0102 | the means of connection between things linked in series -13792842 24 n 01 communication 0 003 @ 13791389 n 0000 + 01355518 v 0101 + 00742320 v 0101 | a connection allowing access between persons or places; "how many lines of communication can there be among four people?"; "a secret passageway provided communication between the two rooms" -13793127 24 n 01 concatenation 0 001 @ 13791389 n 0000 | the linking together of a consecutive series of symbols or events or ideas etc; "it was caused by an improbable concatenation of circumstances" -13793330 24 n 01 bridge 0 002 @ 13791389 n 0000 + 02623194 v 0101 | something resembling a bridge in form or function; "his letters provided a bridge across the centuries" -13793504 24 n 01 involvement 0 005 @ 13791389 n 0000 + 02677097 v 0101 + 02636132 v 0102 ~ 13793776 n 0000 ~ 13794034 n 0000 | a connection of inclusion or containment; "he escaped involvement in the accident"; "there was additional involvement of the liver and spleen" -13793776 24 n 01 implication 0 003 @ 13793504 n 0000 + 02636921 v 0102 + 02677332 v 0101 | a relation implicated by virtue of involvement or close connection (especially an incriminating involvement); "he was suspected of implication in several robberies" -13794034 24 n 02 inclusion 0 comprehension 0 002 @ 13793504 n 0000 + 02629793 v 0203 | the relation of comprising something; "he admired the inclusion of so many ideas in such a short work" -13794226 24 n 01 unconnectedness 0 006 @ 00031921 n 0000 + 01972712 a 0101 + 00567593 a 0101 ! 13791389 n 0103 ~ 13795834 n 0000 ~ 13796403 n 0000 | the lack of a connection between things -13794417 24 n 02 relevance 0 relevancy 0 008 @ 13791389 n 0000 + 01975138 a 0201 + 01975138 a 0101 ! 13795834 n 0101 ~ 13794658 n 0000 ~ 13794793 n 0000 ~ 13794885 n 0000 ~ 13795180 n 0000 | the relation of something to the matter at hand -13794658 24 n 01 materiality 0 003 @ 13794417 n 0000 + 01487627 a 0101 ! 13796216 n 0101 | relevance requiring careful consideration -13794793 24 n 01 cogency 0 002 @ 13794417 n 0000 + 01770392 a 0101 | persuasive relevance -13794885 24 n 01 point 4 001 @ 13794417 n 0000 | a style in speech or writing that arrests attention and has a penetrating or convincing quality or effect -13795042 24 n 01 germaneness 0 002 @ 13795180 n 0000 + 01975671 a 0101 | pertinence by virtue of a close relation to the matter at hand -13795180 24 n 03 applicability 0 pertinence 0 pertinency 0 010 @ 13794417 n 0000 + 01975833 a 0301 + 00138314 a 0303 + 02676054 v 0302 + 01975833 a 0201 + 00138314 a 0203 + 02676054 v 0202 + 01975448 a 0101 ! 13796053 n 0101 ~ 13795042 n 0000 | relevance by virtue of being applicable to the matter at hand -13795489 24 n 01 relatedness 0 005 @ 13791389 n 0000 + 01972820 a 0101 + 01971237 a 0101 ! 13796403 n 0101 ~ 13795695 n 0000 | a particular manner of connectedness; "the relatedness of all living things" -13795695 24 n 01 bearing 1 001 @ 13795489 n 0000 | relevant relation or interconnection; "those issues have no bearing on our situation" -13795834 24 n 02 irrelevance 0 irrelevancy 0 006 @ 13794226 n 0000 + 01976084 a 0201 + 01976084 a 0101 ! 13794417 n 0101 ~ 13796053 n 0000 ~ 13796216 n 0000 | the lack of a relation of something to the matter at hand -13796053 24 n 01 inapplicability 0 003 @ 13795834 n 0000 + 01976851 a 0101 ! 13795180 n 0101 | irrelevance by virtue of being inapplicable to the matter at hand -13796216 24 n 01 immateriality 0 005 @ 13795834 n 0000 + 01280576 a 0101 + 01976532 a 0102 + 01488066 a 0101 ! 13794658 n 0101 | complete irrelevance requiring no further consideration -13796403 24 n 01 unrelatedness 0 005 @ 13794226 n 0000 + 01974740 a 0101 + 01972596 a 0101 ! 13795489 n 0101 ~ 13796585 n 0000 | the lack of any particular manner of connectedness -13796585 24 n 01 extraneousness 0 005 @ 13796403 n 0000 + 01350494 a 0101 + 01350225 a 0102 + 01976532 a 0101 + 02117464 a 0101 | unrelatedness by virtue of falling outside the matter at hand -13796779 24 n 01 grammatical_relation 0 015 @ 13797142 n 0000 ~ 13797313 n 0000 ~ 13798118 n 0000 ~ 13798301 n 0000 ~ 13799063 n 0000 ~ 13799392 n 0000 ~ 13800418 n 0000 ~ 13800539 n 0000 ~ 13800675 n 0000 ~ 13800801 n 0000 ~ 13801424 n 0000 ~ 13802805 n 0000 ~ 13802920 n 0000 ~ 13803782 n 0000 ~ 13804669 n 0000 | a linguistic relation established by grammar -13797142 24 n 01 linguistic_relation 0 004 @ 00031921 n 0000 ~ 13796779 n 0000 ~ 13807636 n 0000 ~ 13808981 n 0000 | a relation between linguistic forms or constituents -13797313 24 n 02 agreement 3 concord 0 007 @ 13796779 n 0000 + 01465506 v 0201 + 02741793 v 0101 ~ 13797561 n 0000 ~ 13797747 n 0000 ~ 13797856 n 0000 ~ 13797985 n 0000 | the determination of grammatical inflection on the basis of word relations -13797561 24 n 01 number_agreement 0 001 @ 13797313 n 0000 | agreement in number between words in the same grammatical construction (e.g., between adjectives and the nouns they modify) -13797747 24 n 01 person_agreement 0 001 @ 13797313 n 0000 | agreement in person between pronouns and verbs -13797856 24 n 01 case_agreement 0 001 @ 13797313 n 0000 | agreement in grammatical case between words in the same construction -13797985 24 n 01 gender_agreement 0 001 @ 13797313 n 0000 | agreement in grammatical gender between words in the same construction -13798118 24 n 02 transitivity 0 transitiveness 0 004 @ 13796779 n 0000 + 02488705 a 0201 + 02488705 a 0101 ! 13798301 n 0101 | the grammatical relation created by a transitive verb -13798301 24 n 02 intransitivity 0 intransitiveness 0 004 @ 13796779 n 0000 + 02488907 a 0201 + 02488907 a 0101 ! 13798118 n 0101 | the grammatical relation created by an intransitive verb -13798491 24 n 01 transitivity 1 004 @ 13783038 n 0000 @ 13783581 n 0000 ;c 06163751 n 0000 ;c 06000644 n 0000 | (logic and mathematics) a relation between three elements such that if it holds between the first and second and it also holds between the second and third it must necessarily hold between the first and third -13798814 24 n 02 reflexivity 1 reflexiveness 1 006 @ 13783038 n 0000 @ 13783581 n 0000 ;c 06163751 n 0000 ;c 06000644 n 0000 + 00202508 a 0201 + 00202508 a 0101 | (logic and mathematics) a relation such that it holds between an element and itself -13799063 24 n 01 coreference 0 004 @ 13796779 n 0000 + 02704005 a 0101 + 01974071 a 0101 ~ 13799245 n 0000 | the grammatical relation between two words that have a common referent -13799245 24 n 02 reflexivity 0 reflexiveness 0 001 @ 13799063 n 0000 | the coreferential relation between a reflexive pronoun and its antecedent -13799392 24 n 01 conjunction 2 006 @ 13796779 n 0000 ~ 13799655 n 0000 ~ 13799796 n 0000 ~ 13799967 n 0000 ~ 13800115 n 0000 ~ 13800267 n 0000 | the grammatical relation between linguistic units (words or phrases or clauses) that are connected by a conjunction -13799655 24 n 01 coordinating_conjunction 0 001 @ 13799392 n 0000 | the coordination by conjunction of linguistic units of the same status -13799796 24 n 01 subordinating_conjunction 0 001 @ 13799392 n 0000 | the subordination that occurs when a conjunction makes one linguistic unit a constituent of another -13799967 24 n 01 copulative_conjunction 0 001 @ 13799392 n 0000 | the conjunctive relation of units that expresses the addition of their meanings -13800115 24 n 01 disjunctive_conjunction 0 001 @ 13799392 n 0000 | the conjunctive relation of units that expresses the disjunction of their meanings -13800267 24 n 01 adversative_conjunction 0 001 @ 13799392 n 0000 | the conjunctive relation of units that expresses the opposition of their meanings -13800418 24 n 01 complementation 0 001 @ 13796779 n 0000 | the grammatical relation of a word or phrase to a predicate -13800539 24 n 01 coordination 0 001 @ 13796779 n 0000 | the grammatical relation of two constituents having the same grammatical form -13800675 24 n 01 subordination 1 001 @ 13796779 n 0000 | the grammatical relation of a modifying word or phrase to its head -13800801 24 n 03 modification 0 qualifying 0 limiting 0 005 @ 13796779 n 0000 + 00171127 v 0202 + 00171127 v 0101 ~ 13801040 n 0000 ~ 13801217 n 0000 | the grammatical relation that exists when a word qualifies the meaning of the phrase -13801040 24 n 01 restrictiveness 0 001 @ 13800801 n 0000 | a grammatical qualification that makes the meaning more specific (`red hat' has a more specific meaning than `hat') -13801217 24 n 01 apposition 0 002 @ 13800801 n 0000 + 02635941 a 0101 | a grammatical relation between a word and a noun phrase that follows; "`Rudolph the red-nosed reindeer' is an example of apposition" -13801424 24 n 03 mood 0 mode 2 modality 1 008 @ 13796779 n 0000 + 02864400 a 0301 + 02864400 a 0201 ~ 13801700 n 0000 ~ 13801937 n 0000 ~ 13802098 n 0000 ~ 13802306 n 0000 ~ 13802485 n 0000 | verb inflections that express how the action or state is conceived by the speaker -13801700 24 n 06 indicative_mood 0 indicative 0 declarative_mood 0 declarative 0 common_mood 0 fact_mood 0 002 @ 13801424 n 0000 + 03094520 a 0402 | a mood (grammatically unmarked) that represents the act or state as an objective fact -13801937 24 n 02 subjunctive_mood 0 subjunctive 0 001 @ 13801424 n 0000 | a mood that represents an act or state (not as a fact but) as contingent or possible -13802098 24 n 02 optative_mood 0 optative 0 003 @ 13801424 n 0000 ;r 08780881 n 0000 ;c 06969129 n 0000 | a mood (as in Greek or Sanskrit) that expresses a wish or hope; expressed in English by modal verbs -13802306 24 n 04 imperative_mood 0 imperative 0 jussive_mood 0 imperative_form 0 001 @ 13801424 n 0000 | a mood that expresses an intention to influence the listener's behavior -13802485 24 n 02 interrogative_mood 0 interrogative 0 001 @ 13801424 n 0000 | some linguists consider interrogative sentences to constitute a mood -13802634 24 n 02 modality 0 mode 0 001 @ 13783038 n 0000 | a classification of propositions on the basis of whether they claim necessity or possibility or impossibility -13802805 24 n 01 anaphoric_relation 0 001 @ 13796779 n 0000 | the relation between an anaphor and its antecedent -13802920 24 n 01 voice 0 004 @ 13796779 n 0000 ;c 06172789 n 0000 ~ 13803158 n 0000 ~ 13803431 n 0000 | (linguistics) the grammatical relation (active or passive) of the grammatical subject of a verb to the action that the verb denotes -13803158 24 n 02 active_voice 0 active 0 002 @ 13802920 n 0000 ! 13803431 n 0101 | the voice used to indicate that the grammatical subject of the verb is performing the action or causing the happening denoted by the verb; "`The boy threw the ball' uses the active voice" -13803431 24 n 02 passive_voice 0 passive 0 003 @ 13802920 n 0000 + 00042228 a 0201 ! 13803158 n 0101 | the voice used to indicate that the grammatical subject of the verb is the recipient (not the source) of the action denoted by the verb; "`The ball was thrown by the boy' uses the passive voice"; "`The ball was thrown' is an abbreviated passive" -13803782 24 n 02 inflection 0 inflexion 0 008 @ 13796779 n 0000 + 00982514 v 0201 + 00113015 a 0101 + 00982514 v 0101 ~ 13804085 n 0000 ~ 13804203 n 0000 ~ 13804375 n 0000 ~ 13804507 n 0000 | a change in the form of a word (usually by adding a suffix) to indicate a change in its grammatical function -13804085 24 n 01 conjugation 0 003 @ 13803782 n 0000 + 00983123 v 0101 %m 06318062 n 0000 | the inflection of verbs -13804203 24 n 01 declension 0 003 @ 13803782 n 0000 + 00982913 v 0101 %m 06317862 n 0000 | the inflection of nouns and pronouns and adjectives in Indo-European languages -13804375 24 n 01 paradigm 0 002 @ 13803782 n 0000 + 02965552 a 0101 | systematic arrangement of all the inflected forms of a word -13804507 24 n 02 pluralization 0 pluralisation 0 003 @ 13803782 n 0000 + 01071916 v 0202 + 01071916 v 0101 | the act of pluralizing or attributing plurality to -13804669 24 n 01 aspect 0 006 @ 13796779 n 0000 + 03045196 a 0101 ~ 13804889 n 0000 ~ 13805179 n 0000 ~ 13805456 n 0000 ~ 13805594 n 0000 | the beginning or duration or completion or repetition of the action of a verb -13804889 24 n 02 perfective 0 perfective_aspect 0 001 @ 13804669 n 0000 | the aspect of a verb that expresses a completed action -13805020 24 n 02 imperfective 0 imperfective_aspect 0 001 @ 13805179 n 0000 | aspect without regard to the beginning or completion of the action of the verb -13805179 24 n 02 durative 0 durative_aspect 0 003 @ 13804669 n 0000 ~ 13805020 n 0000 ~ 13805336 n 0000 | the aspect of a verb that expresses its duration -13805336 24 n 01 progressive_aspect 0 001 @ 13805179 n 0000 | the aspect of a verb that expresses its on-going action -13805456 24 n 02 inchoative 0 inchoative_aspect 0 001 @ 13804669 n 0000 | aspect with regard to the beginning of the action of the verb -13805594 24 n 02 iterative 0 iterative_aspect 0 001 @ 13804669 n 0000 | the aspect of the verb that expresses the repetition of an action -13805734 24 n 05 progressive 0 progressive_tense 0 imperfect 0 imperfect_tense 0 continuous_tense 0 004 @ 06329506 n 0000 ~ 13805974 n 0000 ~ 13806964 n 0000 ~ 13807403 n 0000 | a tense of verbs used in describing action that is on-going -13805974 24 n 02 present_progressive 0 present_progressive_tense 0 001 @ 13805734 n 0000 | a tense used to express action that is on-going at the time of utterance -13806140 24 n 04 perfective 1 perfective_tense 0 perfect 0 perfect_tense 0 004 @ 06329506 n 0000 ~ 13806404 n 0000 ~ 13806735 n 0000 ~ 13807178 n 0000 | a tense of verbs used in describing action that has been completed (sometimes regarded as perfective aspect) -13806404 24 n 02 present_perfect 0 present_perfect_tense 0 001 @ 13806140 n 0000 | a perfective tense used to express action completed in the present; "`I have finished' is an example of the present perfect" -13806614 24 n 02 preterit 0 preterite 0 001 @ 06330262 n 0000 | a term formerly used to refer to the simple past tense -13806735 24 n 04 past_perfect 0 past_perfect_tense 0 pluperfect 0 pluperfect_tense 0 001 @ 13806140 n 0000 | a perfective tense used to express action completed in the past; "`I had finished' is an example of the past perfect" -13806964 24 n 02 past_progressive 0 past_progressive_tense 0 001 @ 13805734 n 0000 | a progressive tense used to describe on-going action in the past; "`I had been running' is an example of the past progressive" -13807178 24 n 02 future_perfect 0 future_perfect_tense 0 001 @ 13806140 n 0000 | a perfective tense used to describe action that will be completed in the future; "`I will have finished' is an example of the future perfect" -13807403 24 n 02 future_progressive 0 future_progressive_tense 0 001 @ 13805734 n 0000 | a progressive tense used to express action that will be on-going in the future; "`I will be running' is an example of the future progressive" -13807636 24 n 01 semantic_relation 0 008 @ 13797142 n 0000 ~ 13807853 n 0000 ~ 13808004 n 0000 ~ 13808161 n 0000 ~ 13808405 n 0000 ~ 13808566 n 0000 ~ 13808708 n 0000 ~ 13808868 n 0000 | a relation between meanings -13807853 24 n 02 hyponymy 0 subordination 2 001 @ 13807636 n 0000 | the semantic relation of being subordinate or belonging to a lower rank or class -13808004 24 n 02 hypernymy 0 superordination 0 001 @ 13807636 n 0000 | the semantic relation of being superordinate or belonging to a higher rank or class -13808161 24 n 03 synonymy 0 synonymity 0 synonymousness 0 004 @ 13807636 n 0000 + 02381302 a 0301 + 02381302 a 0201 + 10687135 n 0101 | the semantic relation that holds between two words that can (in a given context) express the same meaning -13808405 24 n 01 antonymy 0 001 @ 13807636 n 0000 | the semantic relation that holds between two words that can (in a given context) express opposite meanings -13808566 24 n 02 holonymy 0 whole_to_part_relation 0 001 @ 13807636 n 0000 | the semantic relation that holds between a whole and its parts -13808708 24 n 02 meronymy 0 part_to_whole_relation 0 002 @ 13807636 n 0000 %p 13809207 n 0000 | the semantic relation that holds between a part and the whole -13808868 24 n 01 troponymy 0 001 @ 13807636 n 0000 | the semantic relation of being a manner of does something -13808981 24 n 01 homonymy 0 001 @ 13797142 n 0000 | the relation between two words that are spelled the same way but differ in meaning or the relation between two words that are pronounced the same way but differ in meaning -13809207 24 n 05 part 0 portion 0 component_part 0 component 0 constituent 0 013 @ 00031921 n 0000 #p 13808708 n 0000 + 00524693 a 0101 ~ 00019613 n 0000 ~ 06284225 n 0000 ~ 06482401 n 0000 ~ 13124855 n 0000 ~ 13809769 n 0000 ~ 13809920 n 0000 ~ 13810323 n 0000 ~ 13810615 n 0000 ~ 13810818 n 0000 ~ 13811340 n 0000 | something determined in relation to something that includes it; "he wanted to feel a part of something bigger than himself"; "I read a portion of the manuscript"; "the smaller component is hard to reach"; "the animal constituent of plankton" -13809769 24 n 02 basis 1 base 0 001 @ 13809207 n 0000 | the most important or necessary part of something; "the basis of this drink is orange juice" -13809920 24 n 03 detail 0 particular 0 item 0 004 @ 13809207 n 0000 + 00946105 v 0303 + 00956250 v 0101 ~ 13810141 n 0000 | a small part that can be considered separately from the whole; "it was perfect in all details" -13810141 24 n 02 highlight 0 high_spot 0 002 @ 13809920 n 0000 + 00514069 v 0102 | the most interesting or memorable part; "the highlight of the tour was our visit to the Vatican" -13810323 24 n 01 unit 0 003 @ 13809207 n 0000 + 02468793 v 0101 + 00368109 v 0101 | an individual or group or structure or other entity regarded as a structural or functional constituent of a whole; "the reduced the number of units and installations"; "the word is a basic linguistic unit" -13810615 24 n 01 member 0 003 @ 13809207 n 0000 + 13931627 n 0101 + 08400965 n 0101 | anything that belongs to a set or class; "snakes are members of the class Reptilia"; "members of the opposite sex" -13810818 24 n 06 remainder 0 balance 0 residual 0 residue 0 residuum 0 rest 0 007 @ 13809207 n 0000 + 02835654 a 0402 + 02835654 a 0401 + 02835654 a 0301 + 02243461 v 0101 + 02637592 v 0101 ~ 13811184 n 0000 | something left after other parts have been taken away; "there was no remainder"; "he threw away the rest"; "he took what he wanted and I got the balance" -13811184 24 n 02 leftover 0 remnant 0 002 @ 13810818 n 0000 + 02637592 v 0201 | a small part or portion that remains after the main part no longer exists -13811340 24 n 01 subpart 0 001 @ 13809207 n 0000 | a part of a part -13811410 24 n 02 affinity 3 kinship 2 003 @ 00031921 n 0000 ~ 13811740 n 0000 ~ 13811900 n 0000 | a close connection marked by community of interests or similarity in nature or character; "found a natural affinity with the immigrants"; "felt a deep kinship with the other students"; "anthropology's kinship with the humanities" -13811740 24 n 02 rapport 0 resonance 0 002 @ 13811410 n 0000 + 00592037 v 0201 | a relationship of mutual understanding or trust and agreement between people -13811900 24 n 01 sympathy 0 005 @ 13811410 n 0000 + 01822724 v 0101 + 01822724 v 0102 + 02072923 a 0101 ~ 13812173 n 0000 | a relation of affinity or harmony between people; whatever affects one correspondingly affects the other; "the two of them were in close sympathy" -13812173 24 n 02 mutual_understanding 0 mutual_affection 0 001 @ 13811900 n 0000 | sympathy of each person for the other -13812296 24 n 02 affinity 2 phylogenetic_relation 0 002 @ 13812607 n 0000 ;c 06037666 n 0000 | (biology) state of relationship between organisms or groups of organisms resulting in resemblance in structure or structural parts; "in anatomical structure prehistoric man shows close affinity with modern humans" -13812607 24 n 03 kinship 0 family_relationship 0 relationship 1 016 @ 00031921 n 0000 ;c 06143546 n 0000 + 10235549 n 0302 + 00031921 n 0301 + 10236304 n 0101 + 07969695 n 0101 ~ 13812296 n 0000 ~ 13813042 n 0000 ~ 13813283 n 0000 ~ 13813591 n 0000 ~ 13813765 n 0000 ~ 13813898 n 0000 ~ 13814041 n 0000 ~ 13814184 n 0000 ~ 13814336 n 0000 ~ 13815030 n 0000 | (anthropology) relatedness or connection by blood or marriage or adoption -13813042 24 n 04 descent 0 line_of_descent 0 lineage 0 filiation 0 005 @ 13812607 n 0000 + 00700162 v 0401 + 02737187 v 0103 ~ 13814456 n 0000 ~ 13814601 n 0000 | the kinship relation between an individual and the individual's progenitors -13813283 24 n 01 affinity 1 005 @ 13812607 n 0000 ;c 06143546 n 0000 + 01971519 a 0102 ! 13813591 n 0101 ~ 13813483 n 0000 | (anthropology) kinship by marriage or adoption; not a blood relationship -13813483 24 n 01 steprelationship 0 001 @ 13813283 n 0000 | a family relationship by virtue of remarriage -13813591 24 n 03 consanguinity 0 blood_kinship 0 cognation 0 004 @ 13812607 n 0000 ;c 06143546 n 0000 + 01971846 a 0104 ! 13813283 n 0101 | (anthropology) related by blood -13813765 24 n 02 parentage 0 birth 0 002 @ 13812607 n 0000 + 02539788 v 0105 | the kinship relation of an offspring to the parents -13813898 24 n 02 fatherhood 0 paternity 0 002 @ 13812607 n 0000 + 01971671 a 0203 | the kinship relation between an offspring and the father -13814041 24 n 02 motherhood 0 maternity 0 002 @ 13812607 n 0000 + 10332385 n 0101 | the kinship relation between an offspring and the mother -13814184 24 n 02 sisterhood 0 sistership 0 002 @ 13812607 n 0000 + 10602985 n 0101 | the kinship relation between a female offspring and the siblings -13814336 24 n 01 brotherhood 0 001 @ 13812607 n 0000 | the kinship relation between a male offspring and the siblings -13814456 24 n 01 bilateral_descent 0 001 @ 13813042 n 0000 | line of descent traced through both the maternal and paternal sides of the family -13814601 24 n 01 unilateral_descent 0 003 @ 13813042 n 0000 ~ 13814755 n 0000 ~ 13814898 n 0000 | line of descent traced through one side of the family -13814755 24 n 03 matrilineage 0 enation 0 cognation 1 001 @ 13814601 n 0000 | line of descent traced through the maternal side of the family -13814898 24 n 02 patrilineage 0 agnation 0 001 @ 13814601 n 0000 | line of descent traced through the paternal side of the family -13815030 24 n 02 marital_relationship 0 marital_bed 0 001 @ 13812607 n 0000 | the relationship between wife and husband -13815152 24 n 02 magnitude_relation 0 quantitative_relation 0 005 @ 00031921 n 0000 ~ 13815342 n 0000 ~ 13815449 n 0000 ~ 13819207 n 0000 ~ 15286249 n 0000 | a relation between magnitudes -13815342 24 n 01 scale 0 001 @ 13815152 n 0000 | relative magnitude; "they entertained on a grand scale" -13815449 24 n 02 proportion 1 ratio 0 001 @ 13815152 n 0000 | the relation between things (or parts of things) with respect to their comparative quantity, magnitude, or degree; "an inordinate proportion of the book is given over to quotations"; "a dry martini has a large proportion of gin" -13815742 24 n 01 proportion 0 011 @ 13824815 n 0000 + 00151279 v 0101 %p 05863919 n 0000 ~ 13816071 n 0000 ~ 13816313 n 0000 ~ 13816521 n 0000 ~ 13816649 n 0000 ~ 13816862 n 0000 ~ 13817066 n 0000 ~ 13817526 n 0000 ~ 13818143 n 0000 | the quotient obtained when the magnitude of a part is divided by the magnitude of the whole -13816071 24 n 01 case-fatality_proportion 0 001 @ 13815742 n 0000 | the number of cases of a disease ending in death divided by the number of cases of the disease; usually expressed as a percentage or as the number of deaths per 1000 cases -13816313 24 n 02 case-to-infection_proportion 0 case-to-infection_ratio 0 001 @ 13815742 n 0000 | the number of cases of a disease divided by the number of infections with the agent that causes the disease -13816521 24 n 01 content 0 001 @ 13815742 n 0000 | the proportion of a substance that is contained in a mixture or alloy etc. -13816649 24 n 01 rate 0 001 @ 13815742 n 0000 | a quantity or amount or measure considered as a proportion of another quantity or amount or measure; "the literacy rate"; "the retention rate"; "the dropout rate" -13816862 24 n 01 scale 1 003 @ 13815742 n 0000 + 00319406 v 0101 + 01744082 v 0101 | the ratio between the size of something and a representation of it; "the scale of the map"; "the scale of the model" -13817066 24 n 02 golden_section 0 golden_mean 0 001 @ 13815742 n 0000 | the proportional relation between two divisions of line or two dimension of a plane figure such that short : long :: long : (short + long) -13817279 24 n 03 commensurateness 0 correspondence 1 proportionateness 0 006 @ 13824675 n 0000 + 00481737 a 0301 + 00894029 a 0302 + 00482227 a 0301 + 02071973 a 0202 + 00481222 a 0101 | the relation of corresponding in degree or size or amount -13817526 24 n 04 percentage 0 percent 0 per_centum 0 pct 0 005 @ 13815742 n 0000 ~ 13817761 n 0000 ~ 13818551 n 0000 ~ 13818916 n 0000 ~ 13819074 n 0000 | a proportion in relation to a whole (which is usually the amount per hundred) -13817761 24 n 01 absentee_rate 0 001 @ 13817526 n 0000 | the percentage of workers who do not report to work -13817872 24 n 02 batting_average 0 hitting_average 0 002 @ 13820655 n 0000 ;c 00471613 n 0000 | (baseball) a measure of a batter's performance; the number of base hits divided by the number of official times at bat; "Ted Williams once had a batting average above .400" -13818143 24 n 01 batting_average 1 002 @ 13815742 n 0000 ;c 00471613 n 0000 | (an extension of the baseball term) the proportion of times some effort succeeds; "the salesman's batting average was 7 out of 12" -13818354 24 n 01 fielding_average 0 002 @ 13820655 n 0000 ;c 00471613 n 0000 | (baseball) a measure of a fielder's performance; the number of assists and putouts divided by the number of chances -13818551 24 n 01 occupancy_rate 0 003 @ 13817526 n 0000 ~ 13818736 n 0000 ~ 13818829 n 0000 | the percentage of all rental units (as in hotels) are occupied or rented at a given time -13818736 24 n 01 hospital_occupancy 0 001 @ 13818551 n 0000 | occupancy rate for hospitals -13818829 24 n 01 hotel_occupancy 0 001 @ 13818551 n 0000 | occupancy rate for hotels -13818916 24 n 01 vacancy_rate 0 001 @ 13817526 n 0000 | the percentage of all rental units (as in hotels) that are unoccupied or not rented at a given time -13819074 24 n 01 unemployment_rate 0 001 @ 13817526 n 0000 | the percentage of the work force that is unemployed at any given date -13819207 24 n 01 ratio 1 038 @ 13815152 n 0000 ~ 13261242 n 0000 ~ 13820000 n 0000 ~ 13820239 n 0000 ~ 13820432 n 0000 ~ 13820544 n 0000 ~ 13820655 n 0000 ~ 13820826 n 0000 ~ 13820993 n 0000 ~ 13821272 n 0000 ~ 13821408 n 0000 ~ 13821570 n 0000 ~ 13821766 n 0000 ~ 13821977 n 0000 ~ 13822569 n 0000 ~ 13822735 n 0000 ~ 13822876 n 0000 ~ 13822995 n 0000 ~ 13823150 n 0000 ~ 13823287 n 0000 ~ 13823483 n 0000 ~ 13823651 n 0000 ~ 13823968 n 0000 ~ 13824114 n 0000 ~ 13824340 n 0000 ~ 13824500 n 0000 ~ 13824675 n 0000 ~ 13824815 n 0000 ~ 13824929 n 0000 ~ 13825080 n 0000 ~ 13825292 n 0000 ~ 13825490 n 0000 ~ 13825664 n 0000 ~ 13825840 n 0000 ~ 13826084 n 0000 ~ 13826221 n 0000 ~ 13826426 n 0000 ~ 13877129 n 0000 | the relative magnitudes of two quantities (usually expressed as a quotient) -13820000 24 n 01 abundance 0 002 @ 13819207 n 0000 ;c 06084469 n 0000 | (chemistry) the ratio of the total mass of an element in the earth's crust to the total mass of the earth's crust; expressed as a percentage or in parts per million -13820239 24 n 01 abundance 1 002 @ 13819207 n 0000 ;c 06090869 n 0000 | (physics) the ratio of the number of atoms of a specific isotope of an element to the total number of isotopes present -13820432 24 n 02 albedo 0 reflective_power 0 001 @ 13819207 n 0000 | the ratio of reflected to incident light -13820544 24 n 01 aspect_ratio 0 001 @ 13819207 n 0000 | the ratio of the width to the height of a tv picture -13820655 24 n 01 average 0 004 @ 13819207 n 0000 ;c 00523513 n 0000 ~ 13817872 n 0000 ~ 13818354 n 0000 | (sports) the ratio of successful performances to opportunities -13820826 24 n 03 cephalic_index 0 breadth_index 0 cranial_index 0 001 @ 13819207 n 0000 | ratio (in percent) of the maximum breadth to the maximum length of a skull -13820993 24 n 01 efficiency 0 002 @ 13819207 n 0000 ~ 13821118 n 0000 | the ratio of the output to the input of any system -13821118 24 n 01 figure_of_merit 0 001 @ 13820993 n 0000 | a numerical expression representing the efficiency of a given system, material, or procedure -13821272 24 n 01 facial_index 0 001 @ 13819207 n 0000 | the ratio (in percent) of the maximum width to the maximum height of the face -13821408 24 n 04 focal_ratio 0 f_number 0 stop_number 0 speed 0 001 @ 13819207 n 0000 | the ratio of the focal length to the diameter of a (camera) lens system -13821570 24 n 02 frequency 0 relative_frequency 0 002 @ 13819207 n 0000 ~ 13826959 n 0000 | the ratio of the number of observations in a statistical category to the total number of observations -13821766 24 n 03 hematocrit 0 haematocrit 0 packed_cell_volume 0 001 @ 13819207 n 0000 | the ratio of the volume occupied by packed red blood cells to the volume of the whole blood as measured by a hematocrit -13821977 24 n 03 intelligence_quotient 0 IQ 0 I.Q. 0 003 @ 13819207 n 0000 ~ 13822249 n 0000 ~ 13822364 n 0000 | a measure of a person's intelligence as indicated by an intelligence test; the ratio of a person's mental age to their chronological age (multiplied by 100) -13822249 24 n 01 adult_intelligence 0 001 @ 13821977 n 0000 | the average IQ of the adults in a given population -13822364 24 n 01 borderline_intelligence 0 001 @ 13821977 n 0000 | the minimal IQ required for someone to function normally and independently in the world (without some form of institutional assistance) -13822569 24 n 01 load_factor 0 002 @ 13819207 n 0000 ;c 06096913 n 0000 | (aeronautics) the ratio of an external load to the weight of the aircraft (measured in g) -13822735 24 n 01 loss_ratio 0 001 @ 13819207 n 0000 | the ratio of the annual claims paid by an insurance company to the premiums received -13822876 24 n 01 Mach_number 0 001 @ 13819207 n 0000 | the ratio of the speed of a moving body to the speed of sound -13822995 24 n 01 magnification 0 003 @ 13819207 n 0000 + 00240293 v 0103 + 00434077 v 0101 | the ratio of the size of an image to the size of the object -13823150 24 n 01 mechanical_advantage 0 001 @ 13819207 n 0000 | the ratio of the force exerted by a machine to the force applied to it -13823287 24 n 04 mileage 0 fuel_consumption_rate 0 gasoline_mileage 0 gas_mileage 0 001 @ 13819207 n 0000 | the ratio of the number of miles traveled to the number of gallons of gasoline burned -13823483 24 n 02 odds 0 betting_odds 0 001 @ 13819207 n 0000 | the ratio by which one better's wager is greater than that of another; "he offered odds of two to one" -13823651 24 n 02 order_of_magnitude 0 magnitude 0 001 @ 13819207 n 0000 | a number assigned to the ratio of two quantities; two quantities are of the same order of magnitude if one is less than 10 times as large as the other; the number of magnitudes that the quantities differ is specified to within a power of 10 -13823968 24 n 01 output-to-input_ratio 0 002 @ 13819207 n 0000 #p 05020019 n 0000 | the output power of a transducer divided by the input power -13824114 24 n 01 prevalence 0 002 @ 13819207 n 0000 ;c 06050024 n 0000 | (epidemiology) the ratio (for a given time period) of the number of occurrences of a disease or event to the number of units at risk in the population -13824340 24 n 02 price-to-earnings_ratio 0 P/E_ratio 0 002 @ 13819207 n 0000 ;c 04323026 n 0000 | (stock market) the price of a stock divided by its earnings -13824500 24 n 01 productivity 0 002 @ 13819207 n 0000 ;c 06149484 n 0000 | (economics) the ratio of the quantity and quality of units produced to the labor per unit of time -13824675 24 n 01 proportionality 0 003 @ 13819207 n 0000 + 00482948 a 0101 ~ 13817279 n 0000 | a ratio of two quantities that is constant -13824815 24 n 01 quotient 0 002 @ 13819207 n 0000 ~ 13815742 n 0000 | the ratio of two quantities to be divided -13824929 24 n 02 refractive_index 0 index_of_refraction 0 001 @ 13819207 n 0000 | the ratio of the velocity of light in a vacuum to that in a medium -13825080 24 n 01 relative_humidity 0 001 @ 13819207 n 0000 | the ratio of the amount of water in the air at a give temperature to the maximum amount it could hold at that temperature; expressed as a percentage -13825292 24 n 01 respiratory_quotient 0 001 @ 13819207 n 0000 | the ratio of the volume of carbon dioxide expired to the volume of oxygen consumed by an organism or cell in a given period of time -13825490 24 n 02 safety_factor 0 factor_of_safety 0 001 @ 13819207 n 0000 | the ratio of the breaking stress of a structure to the estimated maximum stress in ordinary use -13825664 24 n 05 signal-to-noise_ratio 0 signal-to-noise 0 signal/noise_ratio 0 signal/noise 0 S/N 0 001 @ 13819207 n 0000 | the ratio of signal intensity to noise intensity -13825840 24 n 01 stoichiometry 0 003 @ 13819207 n 0000 ;c 06084469 n 0000 + 02803876 a 0101 | (chemistry) the relation between the quantities of substances that take part in a reaction or form a compound (typically a ratio of whole integers) -13826084 24 n 01 time_constant 0 001 @ 13819207 n 0000 | the ratio of the inductance of a circuit in henries to its resistance in ohms -13826221 24 n 03 employee_turnover 0 turnover_rate 0 turnover 0 001 @ 13819207 n 0000 | the ratio of the number of workers that had to be replaced in a given time period to the average number of workers -13826426 24 n 01 loading 0 004 @ 13819207 n 0000 ~ 13826614 n 0000 ~ 13826732 n 0000 ~ 13826845 n 0000 | the ratio of the gross weight of an airplane to some factor determining its lift -13826614 24 n 01 power_loading 0 001 @ 13826426 n 0000 | the ratio of the weight of an airplane to its engine power -13826732 24 n 01 span_loading 0 001 @ 13826426 n 0000 | the ratio of the weight of an airplane to its wingspan -13826845 24 n 01 wing_loading 0 001 @ 13826426 n 0000 | the ratio of the weight of an airplane to its wing area -13826959 24 n 02 incidence 0 relative_incidence 0 002 @ 13821570 n 0000 ~ 13827103 n 0000 | the relative frequency of occurrence of something -13827103 24 n 01 morbidity 0 001 @ 13826959 n 0000 | the relative incidence of a particular disease -13827205 24 n 01 control 0 001 @ 00031921 n 0000 | a relation of constraint of one entity (thing or person or group) by another; "measures for the control of disease"; "they instituted controls over drinking on campus" -13827426 24 n 01 direction 0 019 @ 05074774 n 0000 = 01294300 a 0000 = 01295443 a 0000 ~ 13827943 n 0000 ~ 13828075 n 0000 ~ 13828905 n 0000 ~ 13829586 n 0000 ~ 13829848 n 0000 ~ 13830084 n 0000 ~ 13830305 n 0000 ~ 13831441 n 0000 ~ 13835427 n 0000 ~ 13835546 n 0000 ~ 13835664 n 0000 ~ 13835781 n 0000 ~ 13835899 n 0000 ~ 13836018 n 0000 ~ 13836136 n 0000 ~ 13836253 n 0000 | the spatial relation between something and the course along which it points or moves; "he checked the direction and velocity of the wind" -13827943 24 n 01 frontage 0 002 @ 13827426 n 0000 + 02693319 v 0101 | the direction in which something (such as a building) faces -13828075 24 n 01 orientation 0 008 @ 13827426 n 0000 = 01232635 a 0000 = 01233347 a 0000 = 01234167 a 0000 ~ 13828343 n 0000 ~ 13828681 n 0000 ~ 13828795 n 0000 ~ 13830166 n 0000 | position or alignment relative to points of the compass or other specific directions -13828343 24 n 01 attitude 0 002 @ 13828075 n 0000 ~ 13828520 n 0000 | position of aircraft or spacecraft relative to a frame of reference (the horizon or direction of motion) -13828520 24 n 01 trim 0 003 @ 13828343 n 0000 + 02751952 v 0101 + 02752107 v 0101 | attitude of an aircraft in flight when allowed to take its own orientation -13828681 24 n 01 horizontal 0 002 @ 13828075 n 0000 + 01232635 a 0101 | something that is oriented horizontally -13828795 24 n 01 vertical 0 002 @ 13828075 n 0000 + 01233347 a 0101 | something that is oriented vertically -13828905 24 n 01 opposition 0 004 @ 13827426 n 0000 ~ 13829047 n 0000 ~ 13829243 n 0000 ~ 13829408 n 0000 | a direction opposite to another -13829047 24 n 03 orthogonality 0 perpendicularity 0 orthogonal_opposition 0 003 @ 13828905 n 0000 + 01233347 a 0202 + 01720280 a 0201 | the relation of opposition between things at right angles -13829243 24 n 03 antipodal 0 antipodal_opposition 0 diametrical_opposition 0 002 @ 13828905 n 0000 + 02630695 a 0101 | the relation of opposition along a diameter -13829408 24 n 02 enantiomorphism 0 mirror-image_relation 0 001 @ 13828905 n 0000 | the relation of opposition between crystals or molecules that are reflections of one another -13829586 24 n 01 windward 0 003 @ 13827426 n 0000 ! 13829848 n 0101 ~ 13829720 n 0000 | the direction from which the wind is coming -13829720 24 n 04 to_windward 0 windward_side 0 weatherboard 0 weather_side 0 001 @ 13829586 n 0000 | the side toward the wind -13829848 24 n 01 leeward 0 003 @ 13827426 n 0000 ! 13829586 n 0101 ~ 13829980 n 0000 | the direction in which the wind is blowing -13829980 24 n 02 to_leeward 0 leeward_side 0 001 @ 13829848 n 0000 | the side sheltered from the wind -13830084 24 n 01 seaward 0 001 @ 13827426 n 0000 | the direction toward the sea -13830166 24 n 01 quarter 0 001 @ 13828075 n 0000 | one of the four major division of the compass; "the wind is coming from that quarter" -13830305 24 n 02 compass_point 0 point 0 030 @ 13827426 n 0000 ~ 13831000 n 0000 ~ 13831310 n 0000 ~ 13831572 n 0000 ~ 13831717 n 0000 ~ 13831843 n 0000 ~ 13831994 n 0000 ~ 13832118 n 0000 ~ 13832236 n 0000 ~ 13832480 n 0000 ~ 13832599 n 0000 ~ 13832717 n 0000 ~ 13832841 n 0000 ~ 13832993 n 0000 ~ 13833119 n 0000 ~ 13833256 n 0000 ~ 13833504 n 0000 ~ 13833623 n 0000 ~ 13833760 n 0000 ~ 13833886 n 0000 ~ 13834038 n 0000 ~ 13834162 n 0000 ~ 13834280 n 0000 ~ 13834524 n 0000 ~ 13834643 n 0000 ~ 13834761 n 0000 ~ 13834885 n 0000 ~ 13835037 n 0000 ~ 13835163 n 0000 ~ 13835308 n 0000 | any of 32 horizontal directions indicated on the card of a compass; "he checked the point on his compass" -13831000 24 n 01 cardinal_compass_point 0 005 @ 13830305 n 0000 ~ 13831176 n 0000 ~ 13832355 n 0000 ~ 13833375 n 0000 ~ 13834399 n 0000 | one of the four main compass points -13831176 24 n 04 north 0 due_north 0 northward 0 N 0 001 @ 13831000 n 0000 | the cardinal compass point that is at 0 or 360 degrees -13831310 24 n 02 north_by_east 0 NbE 0 001 @ 13830305 n 0000 | the compass point that is one point east (clockwise) of due north -13831441 24 n 03 north 1 magnetic_north 0 compass_north 0 001 @ 13827426 n 0000 | the direction in which a compass needle points -13831572 24 n 03 north_northeast 0 nor'-nor'-east 0 NNE 0 001 @ 13830305 n 0000 | the compass point that is midway between north and northeast -13831717 24 n 02 northeast_by_north 0 NEbN 0 001 @ 13830305 n 0000 | the compass point that is one point north of northeast -13831843 24 n 04 northeast 0 nor'-east 0 northeastward 0 NE 0 001 @ 13830305 n 0000 | the compass point midway between north and east; at 45 degrees -13831994 24 n 02 northeast_by_east 0 NEbE 0 001 @ 13830305 n 0000 | the compass point that is one point east of northeast -13832118 24 n 02 east_northeast 0 ENE 0 001 @ 13830305 n 0000 | the compass point midway between northeast and east -13832236 24 n 02 east_by_north 0 EbN 0 001 @ 13830305 n 0000 | the compass point that is one point north of due east -13832355 24 n 04 east 0 due_east 0 eastward 0 E 0 001 @ 13831000 n 0000 | the cardinal compass point that is at 90 degrees -13832480 24 n 02 east_by_south 0 EbS 0 001 @ 13830305 n 0000 | the compass point that is one point south of due east -13832599 24 n 02 east_southeast 0 ESE 0 001 @ 13830305 n 0000 | the compass point midway between east and southeast -13832717 24 n 02 southeast_by_east 0 SEbE 0 001 @ 13830305 n 0000 | the compass point that is one point east of southeast -13832841 24 n 04 southeast 0 sou'-east 0 southeastward 0 SE 0 001 @ 13830305 n 0000 | the compass point midway between south and east; at 135 degrees -13832993 24 n 02 southeast_by_south 0 SEbS 0 001 @ 13830305 n 0000 | the compass point that is one point south of southeast -13833119 24 n 03 south_southeast 0 sou'-sou'-east 0 SSE 0 001 @ 13830305 n 0000 | the compass point midway between south and southeast -13833256 24 n 02 south_by_east 0 SbE 0 001 @ 13830305 n 0000 | the compass point that is one point east of due south -13833375 24 n 04 south 0 due_south 0 southward 0 S 0 001 @ 13831000 n 0000 | the cardinal compass point that is at 180 degrees -13833504 24 n 02 south_by_west 0 SbW 0 001 @ 13830305 n 0000 | the compass point that is one point west of due south -13833623 24 n 03 south_southwest 0 sou'-sou'-west 0 SSW 0 001 @ 13830305 n 0000 | the compass point midway between south and southwest -13833760 24 n 02 southwest_by_south 0 SWbS 0 001 @ 13830305 n 0000 | the compass point that is one point south of southwest -13833886 24 n 04 southwest 0 sou'-west 0 southwestward 0 SW 0 001 @ 13830305 n 0000 | the compass point midway between south and west; at 225 degrees -13834038 24 n 02 southwest_by_west 0 SWbW 0 001 @ 13830305 n 0000 | the compass point that is one point west of southwest -13834162 24 n 02 west_southwest 0 WSW 0 001 @ 13830305 n 0000 | the compass point midway between west and southwest -13834280 24 n 02 west_by_south 0 WbS 0 001 @ 13830305 n 0000 | the compass point that is one point south of due west -13834399 24 n 04 west 0 due_west 0 westward 0 W 0 001 @ 13831000 n 0000 | the cardinal compass point that is a 270 degrees -13834524 24 n 02 west_by_north 0 WbN 0 001 @ 13830305 n 0000 | the compass point that is one point north of due west -13834643 24 n 02 west_northwest 0 WNW 0 001 @ 13830305 n 0000 | the compass point midway between west and northwest -13834761 24 n 02 northwest_by_west 0 NWbW 0 001 @ 13830305 n 0000 | the compass point that is one point west of northwest -13834885 24 n 04 northwest 0 nor'-west 0 northwestward 0 NW 0 001 @ 13830305 n 0000 | the compass point midway between north and west; at 315 degrees -13835037 24 n 02 northwest_by_north 0 NWbN 0 001 @ 13830305 n 0000 | the compass point that is one point north of northwest -13835163 24 n 03 north_northwest 0 nor'-nor'-west 0 NNW 0 001 @ 13830305 n 0000 | the compass point that is midway between north and northwest -13835308 24 n 02 north_by_west 0 NbW 0 001 @ 13830305 n 0000 | the compass point that is one point west of due north -13835427 24 n 01 north 2 001 @ 13827426 n 0000 | the direction corresponding to the northward cardinal compass point -13835546 24 n 01 northeast 2 001 @ 13827426 n 0000 | the direction corresponding to the northeastward compass point -13835664 24 n 01 east 2 001 @ 13827426 n 0000 | the direction corresponding to the eastward cardinal compass point -13835781 24 n 01 southeast 2 001 @ 13827426 n 0000 | the direction corresponding to the southeastward compass point -13835899 24 n 01 south 2 001 @ 13827426 n 0000 | the direction corresponding to the southward cardinal compass point -13836018 24 n 01 southwest 2 001 @ 13827426 n 0000 | the direction corresponding to the southwestward compass point -13836136 24 n 01 west 2 001 @ 13827426 n 0000 | the direction corresponding to the westward cardinal compass point -13836253 24 n 01 northwest 2 001 @ 13827426 n 0000 | the direction corresponding to the northwestward compass point -13836371 24 n 01 angular_position 0 003 @ 05074774 n 0000 ~ 13836550 n 0000 ~ 13836715 n 0000 | relation by which any position with respect to any other position is established -13836550 24 n 04 elevation 0 EL 0 altitude 0 ALT 0 002 @ 13836371 n 0000 + 02614945 a 0301 | angular distance above the horizon (especially of a celestial object) -13836715 24 n 01 depression 0 001 @ 13836371 n 0000 | angular distance below the horizon (especially of a celestial object) -13836841 24 n 01 business_relation 0 004 @ 00031921 n 0000 %m 09984659 n 0000 ~ 13837009 n 0000 ~ 13837351 n 0000 | a relation between different business enterprises -13837009 24 n 01 competition 1 002 @ 13836841 n 0000 ~ 13837200 n 0000 | a business relation in which two parties compete to gain customers; "business competition can be fiendish at times" -13837200 24 n 02 price_war 0 price_competition 0 001 @ 13837009 n 0000 | intense competition in which competitors cut retail prices to gain business -13837351 24 n 01 clientage 0 001 @ 13836841 n 0000 | relation of a client to a patron -13837439 24 n 01 professional_relation 0 004 @ 00032823 n 0000 ~ 13837667 n 0000 ~ 13838205 n 0000 ~ 13840404 n 0000 | the relation that exists when one person requests and is granted professional help from a qualified source -13837667 24 n 01 medical_relation 0 003 @ 13837439 n 0000 ~ 13837840 n 0000 ~ 13838025 n 0000 | the professional relation between a health care professional and a patient -13837840 24 n 01 doctor-patient_relation 0 003 @ 13837667 n 0000 %m 10020890 n 0000 %m 10405694 n 0000 | the responsibility of a physician to act in the best interests of the patient -13838025 24 n 01 nurse-patient_relation 0 003 @ 13837667 n 0000 %m 10366966 n 0000 %m 10405694 n 0000 | the responsibility of a nurse to act in the best interests of the patient -13838205 24 n 01 legal_relation 0 003 @ 13837439 n 0000 ;c 08441203 n 0000 ~ 13838386 n 0000 | a professional relation that is regulated by law (as between a lawyer and a client) -13838386 24 n 01 fiduciary_relation 0 011 @ 13838205 n 0000 ;c 08441203 n 0000 ~ 13838766 n 0000 ~ 13838930 n 0000 ~ 13839120 n 0000 ~ 13839287 n 0000 ~ 13839468 n 0000 ~ 13839662 n 0000 ~ 13839888 n 0000 ~ 13840039 n 0000 ~ 13840231 n 0000 | the legal relation that exists when one person justifiably places reliance on another whose aid or protection is sought in some matter -13838766 24 n 01 bank-depositor_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of a bank to act in the best interests of the depositors -13838930 24 n 01 confidential_adviser-advisee_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of a confidential adviser to act in the best interest of the advisee -13839120 24 n 01 conservator-ward_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of a conservator to act in the best interests of the ward -13839287 24 n 01 director-stockholder_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of corporate directors to act in the best interests of stockholders -13839468 24 n 01 executor-heir_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of an executor (or administrator) of an estate to act in the best interests of the heir -13839662 24 n 02 lawyer-client_relation 0 attorney-client_relation 0 004 @ 13838386 n 0000 ;c 08441203 n 0000 %m 09985075 n 0000 %m 10249950 n 0000 | the responsibility of a lawyer to act in the best interests of the client -13839888 24 n 01 partner_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of partners to act in one another's best interests -13840039 24 n 01 receiver-creditor_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of receiver or trustee in bankruptcy to act in the best interests of the creditor -13840231 24 n 01 trustee-beneficiary_relation 0 002 @ 13838386 n 0000 ;c 08441203 n 0000 | the responsibility of a trustee to act in the best interests of the beneficiary -13840404 24 n 01 academic_relation 0 002 @ 13837439 n 0000 ~ 13840553 n 0000 | a professional relation between instructors and those they instruct -13840553 24 n 01 teacher-student_relation 0 003 @ 13840404 n 0000 %m 10665698 n 0000 %m 10694258 n 0000 | the academic relation between teachers and their students -13840719 24 n 02 politics 0 political_relation 0 004 @ 00032823 n 0000 + 10451263 n 0101 + 10450303 n 0101 -c 14413831 n 0000 | social relations involving intrigue to gain authority or power; "office politics is often counterproductive" -13840958 24 n 03 chemistry 0 interpersonal_chemistry 0 alchemy 0 001 @ 00032823 n 0000 | the way two individuals relate to each other; "their chemistry was wrong from the beginning -- they hated each other"; "a mysterious alchemy brought them together" -13841213 24 n 02 reciprocality 0 reciprocity 0 008 @ 00031921 n 0000 + 01945550 a 0201 + 01945550 a 0101 ~ 13841467 n 0000 ~ 13841651 n 0000 ~ 13841863 n 0000 ~ 13843401 n 0000 ~ 13843601 n 0000 | a relation of mutual dependence or action or influence -13841467 24 n 01 complementarity 2 001 @ 13841213 n 0000 | the interrelation of reciprocity whereby one thing supplements or depends on the other; "the complementarity of the sexes" -13841651 24 n 02 correlation 0 correlativity 0 006 @ 13841213 n 0000 + 01974298 a 0201 + 01946267 a 0201 + 02704461 a 0101 + 02658979 v 0101 + 00713996 v 0101 | a reciprocal relation between two or more things -13841863 24 n 03 mutuality 0 interdependence 0 interdependency 0 012 @ 13841213 n 0000 + 00726445 a 0301 + 02622033 v 0302 + 00726445 a 0201 + 02622033 v 0202 + 02152473 a 0102 + 01945550 a 0102 ~ 13842241 n 0000 ~ 13842415 n 0000 ~ 13842622 n 0000 ~ 13843786 n 0000 ~ 13843920 n 0000 | a reciprocal relation between interdependent entities (objects or individuals or groups) -13842241 24 n 01 commensalism 0 001 @ 13841863 n 0000 | the relation between two different kinds of organisms when one receives benefits from the other without damaging it -13842415 24 n 01 parasitism 0 001 @ 13841863 n 0000 | the relation between two different kinds of organisms in which one receives benefits from the other by causing damage to it (usually not fatal damage) -13842622 24 n 02 symbiosis 0 mutualism 0 003 @ 13841863 n 0000 + 00727268 a 0101 ~ 13842841 n 0000 | the relation between two different species of organisms that are interdependent; each gains benefits from the other -13842841 24 n 01 trophobiosis 0 001 @ 13842622 n 0000 | a symbiotic relation in which one organism protects the other in return for some kind of food product -13843001 24 n 01 additive_inverse 0 002 @ 13858833 n 0000 ;c 06000644 n 0000 | (mathematics) one of a pair of numbers whose sum is zero; the additive inverse of -5 is +5 -13843173 24 n 02 multiplicative_inverse 0 reciprocal 0 002 @ 13858833 n 0000 ;c 06000644 n 0000 | (mathematics) one of a pair of numbers whose product is 1: the reciprocal of 2/3 is 3/2; the multiplicative inverse of 7 is 1/7 -13843401 24 n 02 mutuality 1 mutualness 0 004 @ 13841213 n 0000 + 02152473 a 0202 + 02152473 a 0102 + 01945550 a 0102 | a reciprocality of sentiments; "the mutuality of their affection was obvious" -13843601 24 n 01 reciprocal 1 001 @ 13841213 n 0000 | something (a term or expression or concept) that has a reciprocal relation to something else; "risk is the reciprocal of safety" -13843786 24 n 01 sharing 0 002 @ 13841863 n 0000 + 02718309 v 0101 | having in common; "the sharing of electrons creates molecules" -13843920 24 n 01 sharing 1 003 @ 13841863 n 0000 + 02295550 v 0101 ~ 13844057 n 0000 | using or enjoying something jointly with others -13844057 24 n 01 time_sharing 0 002 @ 13843920 n 0000 ;c 06128570 n 0000 | (computer science) the use of a central computer by many users simultaneously -13844212 24 n 03 interrelation 0 interrelationship 0 interrelatedness 0 007 @ 00031921 n 0000 + 02006933 a 0302 + 13844212 n 0201 + 13844212 n 0102 + 02724417 v 0102 + 00713818 v 0101 ~ 13844518 n 0000 | mutual or reciprocal relation or relatedness; "interrelationships of animal structure and function" -13844518 24 n 01 psychodynamics 0 001 @ 13844212 n 0000 | the interrelation of conscious and unconscious processes and emotions that determine personality and motivation -13844690 24 n 01 temporal_relation 0 009 @ 00031921 n 0000 = 00125711 a 0000 = 00127296 a 0000 = 00130151 a 0000 = 00130281 a 0000 ~ 13844923 n 0000 ~ 13845114 n 0000 ~ 13845239 n 0000 ~ 13845838 n 0000 | a relation involving time -13844923 24 n 02 antecedent 0 forerunner 0 002 @ 13844690 n 0000 + 00121865 a 0101 | anything that precedes something similar in time; "phrenology was an antecedent of modern neuroscience" -13845114 24 n 01 chronology 0 003 @ 13844690 n 0000 + 02956880 a 0101 + 00277399 v 0101 | an arrangement of events in time -13845239 24 n 07 synchronism 0 synchrony 0 synchronicity 0 synchroneity 0 synchronization 0 synchronisation 0 synchronizing 0 019 @ 13844690 n 0000 + 02739254 v 0701 ! 13845838 n 0705 + 02739254 v 0602 + 02739254 v 0501 ! 13845838 n 0503 + 02377651 a 0401 + 02379323 a 0301 + 02377651 a 0303 + 02377651 a 0203 + 02377651 a 0201 + 02739254 v 0201 + 00960734 v 0201 + 00735866 v 0201 + 00393953 v 0201 + 02739254 v 0202 + 00735866 v 0202 + 00393953 v 0202 ! 13845838 n 0101 | the relation that exists when things occur at the same time; "the drug produces an increased synchrony of the brain waves" -13845838 24 n 05 asynchronism 0 asynchrony 0 desynchronization 0 desynchronisation 0 desynchronizing 0 007 @ 13844690 n 0000 + 00394563 v 0501 ! 13845239 n 0507 + 00394563 v 0402 + 00394563 v 0301 ! 13845239 n 0305 ! 13845239 n 0101 | the relation that exists when things occur at unrelated times; "the stimulus produced a desynchronizing of the brain waves" -13846199 24 n 02 first 0 number_one 0 002 @ 14429985 n 0000 ~ 13846356 n 0000 | the first or highest in an ordering or series; "He wanted to be the first" -13846356 24 n 01 former 0 002 @ 13846199 n 0000 ! 13846708 n 0101 | the first of two or the first mentioned of two; "Tom and Dick were both heroes but only the former is remembered today" -13846546 24 n 01 second 0 003 @ 14429985 n 0000 + 02202146 a 0101 ~ 13846708 n 0000 | following the first in an ordering or series; "he came in a close second" -13846708 24 n 01 latter 0 002 @ 13846546 n 0000 ! 13846356 n 0101 | the second of two or the second mentioned of two; "Tom and Dick were both heroes but only the latter is remembered today" -13846900 24 n 01 third 0 001 @ 14429985 n 0000 | following the second position in an ordering or series; "a distant third"; "he answered the first question willingly, the second reluctantly, and the third with resentment" -13847124 24 n 01 fourth 0 001 @ 14429985 n 0000 | following the third position; number four in a countable series -13847240 24 n 01 fifth 0 002 @ 14429985 n 0000 + 02202712 a 0101 | position five in a countable series of things; "he was fifth out of several hundred runners" -13847402 24 n 01 sixth 0 001 @ 14429985 n 0000 | position six in a countable series of things -13847498 24 n 01 seventh 0 002 @ 14429985 n 0000 + 02202979 a 0101 | position seven in a countable series of things -13847616 24 n 01 eighth 0 001 @ 14429985 n 0000 | position eight in a countable series of things -13847715 24 n 01 ninth 0 001 @ 14429985 n 0000 | position nine in a countable series of things; "going into the ninth they were a run ahead" -13847858 24 n 01 tenth 0 001 @ 14429985 n 0000 | position ten in a countable series of things -13847954 24 n 01 eleventh 0 001 @ 14429985 n 0000 | position 11 in a countable series of things -13848052 24 n 01 twelfth 0 001 @ 14429985 n 0000 | position 12 in a countable series of things -13848149 24 n 01 thirteenth 0 001 @ 14429985 n 0000 | position 13 in a countable series of things -13848249 24 n 01 fourteenth 0 001 @ 14429985 n 0000 | position 14 in a countable series of things -13848349 24 n 01 fifteenth 0 002 @ 14429985 n 0000 + 02203976 a 0101 | position 15 in a countable series of things -13848466 24 n 01 sixteenth 0 001 @ 14429985 n 0000 | position 16 in a countable series of things -13848565 24 n 01 seventeenth 0 002 @ 14429985 n 0000 + 02204237 a 0101 | position 17 in a countable series of things -13848684 24 n 01 eighteenth 0 001 @ 14429985 n 0000 | position 18 in a countable series of things -13848784 24 n 01 nineteenth 0 001 @ 14429985 n 0000 | position 19 in a countable series of things -13848884 24 n 01 twentieth 0 001 @ 14429985 n 0000 | position 20 in a countable series of things -13848983 24 n 01 thirtieth 0 001 @ 14429985 n 0000 | position 30 in a countable series of things -13849082 24 n 01 fortieth 0 001 @ 14429985 n 0000 | position 40 in a countable series of things -13849180 24 n 01 fiftieth 0 002 @ 14429985 n 0000 + 02208145 a 0101 | position 50 in a countable series of things -13849296 24 n 01 sixtieth 0 001 @ 14429985 n 0000 | position 60 in a countable series of things -13849394 24 n 01 seventieth 0 002 @ 14429985 n 0000 + 02208723 a 0101 | position 70 in a countable series of things -13849512 24 n 01 eightieth 0 001 @ 14429985 n 0000 | position 80 in a countable series of things -13849611 24 n 01 ninetieth 0 001 @ 14429985 n 0000 | position 90 in a countable series of things -13849710 24 n 01 hundredth 0 001 @ 14429985 n 0000 | position 100 in a countable series of things -13849810 24 n 01 thousandth 0 001 @ 14429985 n 0000 | position 1,000 in a countable series of things -13849913 24 n 01 millionth 0 001 @ 14429985 n 0000 | position 1,000,000 in a countable series of things -13850019 24 n 01 billionth 0 002 @ 14429985 n 0000 ;r 09044862 n 0000 | position 1,000,000,000 in a countable series of things -13850148 24 n 01 last 0 001 @ 14429985 n 0000 | the last or lowest in an ordering or series; "he was the last to leave"; "he finished an inglorious last" -13850304 24 n 04 scale 3 scale_of_measurement 0 graduated_table 0 ordered_series 0 012 @ 07260623 n 0000 + 00319406 v 0101 + 01744082 v 0101 ~ 13850674 n 0000 ~ 13851067 n 0000 ~ 13851245 n 0000 ~ 13851426 n 0000 ~ 13851677 n 0000 ~ 13851865 n 0000 ~ 13852083 n 0000 ~ 13852395 n 0000 ~ 13853546 n 0000 | an ordered reference standard; "judging on a scale of 1 to 10" -13850674 24 n 02 Beaufort_scale 0 wind_scale 0 014 @ 13850304 n 0000 %p 11431617 n 0000 %p 11432387 n 0000 %p 11432508 n 0000 %p 11432632 n 0000 %p 11432758 n 0000 %p 11432887 n 0000 %p 11433013 n 0000 %p 11462013 n 0000 %p 11462152 n 0000 %p 11462276 n 0000 %p 11462401 n 0000 %p 11462526 n 0000 %p 11467018 n 0000 | an international scale of wind force from 0 (calm air) to 12 (hurricane) -13851067 24 n 01 index 0 003 @ 13850304 n 0000 + 00702434 v 0101 ~ 05120835 n 0000 | a numerical scale used to compare variables with one another or with some reference number -13851245 24 n 01 logarithmic_scale 0 001 @ 13850304 n 0000 | scale on which actual distances from the origin are proportional to the logarithms of the corresponding scale numbers -13851426 24 n 01 Mercalli_scale 0 002 @ 13850304 n 0000 ;c 06115701 n 0000 | a scale formerly used to describe the magnitude of an earthquake; an earthquake detected only by seismographs is a I and an earthquake that destroys all buildings is a XII -13851677 24 n 01 Mohs_scale 0 001 @ 13850304 n 0000 | a scale of hardness of solids; talc is 0 and diamond is 10; ordering is determined by which substance can scratch another substance -13851865 24 n 01 Richter_scale 0 002 @ 13850304 n 0000 ;c 06115701 n 0000 | a logarithmic scale of 1 to 10 formerly used to express the magnitude of an earthquake on the basis of the size of seismograph oscillations -13852083 24 n 01 moment_magnitude_scale 0 002 @ 13850304 n 0000 ;c 06115701 n 0000 | a logarithmic scale of 1 to 10 (a successor to the Richter scale) that enables seismologists to compare the energy released by different earthquakes on the basis of the area of the geological fault that ruptured in the quake -13852395 24 n 01 temperature_scale 0 007 @ 13850304 n 0000 @ 13577171 n 0000 ~ 13852600 n 0000 ~ 13852820 n 0000 ~ 13853002 n 0000 ~ 13853198 n 0000 ~ 13853407 n 0000 | a system of measuring temperature -13852600 24 n 03 Celsius_scale 0 international_scale 0 centigrade_scale 0 001 @ 13852395 n 0000 | a temperature scale that defines the freezing point of water as 0 degrees and the boiling point of water as 100 degrees -13852820 24 n 01 Fahrenheit_scale 0 001 @ 13852395 n 0000 | a temperature scale that defines the freezing point of water as 32 degrees and the boiling point of water a 212 degrees -13853002 24 n 02 Kelvin_scale 0 absolute_scale 0 001 @ 13852395 n 0000 | a temperature scale that defines absolute zero as 0 degrees; water freezes at 273.16 degrees and boils at 373.16 degrees -13853198 24 n 01 Rankine_scale 0 001 @ 13852395 n 0000 | a scale of absolute temperature in Fahrenheit degrees; the freezing point of water is 491.69 degrees and the boiling point of water is 671.69 degrees -13853407 24 n 01 Reaumur_scale 0 001 @ 13852395 n 0000 | a temperature scale on which water freezes at 0 degrees and boils at 80 degrees -13853546 24 n 02 wage_scale 0 wage_schedule 0 002 @ 13850304 n 0000 ~ 13853680 n 0000 | a schedule of wages paid for different jobs -13853680 24 n 01 sliding_scale 0 001 @ 13853546 n 0000 | a wage scale that fluctuates in response to the cost-of-living index -13853808 24 n 01 comparison 0 003 @ 00031921 n 0000 + 00652900 v 0101 ~ 13853947 n 0000 | relation based on similarities and differences -13853947 24 n 01 imaginative_comparison 0 001 @ 13853808 n 0000 | the kind of mental comparison that is expressed in similes or metaphors or allegories -13854101 24 n 02 gauge 0 standard_of_measurement 0 002 @ 07260623 n 0000 + 00490285 v 0101 | accepted or approved instance or example of a quantity or quality against which others are judged or measured or compared -13854318 24 n 01 baseline 0 001 @ 07260623 n 0000 | an imaginary line or standard by which things are measured or compared; "the established a baseline for the budget" -13854488 24 n 01 norm 0 001 @ 07260623 n 0000 | a standard or model or pattern regarded as typical; "the current middle-class norm of two children per family" -13854649 24 n 02 opposition 2 oppositeness 0 020 @ 00031921 n 0000 + 02067913 a 0201 + 02066312 a 0203 ~ 13855100 n 0000 ~ 13855230 n 0000 ~ 13855377 n 0000 ~ 13855627 n 0000 ~ 13855828 n 0000 ~ 13856110 n 0000 ~ 13856320 n 0000 ~ 13856574 n 0000 ~ 13857159 n 0000 ~ 13857486 n 0000 ~ 13857676 n 0000 ~ 13858270 n 0000 ~ 13858392 n 0000 ~ 13858481 n 0000 ~ 13858604 n 0000 ~ 13858833 n 0000 ~ 13860548 n 0000 | the relation between opposed entities -13855100 24 n 01 antipode 0 002 @ 13854649 n 0000 + 02630695 a 0102 | direct opposite; "quiet: an antipode to focused busyness" -13855230 24 n 01 antithesis 0 003 @ 13854649 n 0000 + 02065404 a 0101 + 02065404 a 0102 | exact opposite; "his theory is the antithesis of mine" -13855377 24 n 01 conflict 0 001 @ 13854649 n 0000 | opposition in a work of drama or fiction between characters or forces (especially an opposition that motivates the development of the plot); "this form of conflict is essential to Mann's writing" -13855627 24 n 02 contrast 0 direct_contrast 0 003 @ 13854649 n 0000 + 02666882 v 0101 + 00661213 v 0101 | the opposition or dissimilarity of things that are compared; "in contrast to", "by contrast" -13855828 24 n 01 flip_side 0 002 @ 13854649 n 0000 ;u 07105475 n 0000 | a different aspect of something (especially the opposite aspect); "the flip side of your positive qualities sometimes get out of control"; "on the flip side of partnerships he talked about their competition" -13856110 24 n 02 mutual_opposition 0 polarity 1 002 @ 13854649 n 0000 + 02066312 a 0204 | a relation between two opposite attributes or tendencies; "he viewed it as a balanced polarity between good and evil" -13856320 24 n 01 gradable_opposition 0 002 @ 13854649 n 0000 ~ 13856449 n 0000 | an opposition that is capable of being graded -13856449 24 n 01 polar_opposition 0 001 @ 13856320 n 0000 | an opposition that can be graded between two extremes or poles -13856574 24 n 02 polarity 0 sign 0 004 @ 13854649 n 0000 + 00358820 a 0101 ~ 13856857 n 0000 ~ 13857008 n 0000 | having an indicated pole (as the distinction between positive and negative electric charges); "he got the polarity of the battery reversed"; "charges of opposite sign" -13856857 24 n 02 positivity 0 positiveness 0 003 @ 13856574 n 0000 ! 13857008 n 0202 ! 13857008 n 0101 | the character of the positive electric pole -13857008 24 n 02 negativity 0 negativeness 0 003 @ 13856574 n 0000 ! 13856857 n 0202 ! 13856857 n 0101 | the character of the negative electric pole -13857159 24 n 01 ungradable_opposition 0 002 @ 13854649 n 0000 ~ 13857314 n 0000 | an opposition that has no intermediate grade; either one or the other -13857314 24 n 01 complementarity 1 002 @ 13857159 n 0000 + 00049016 a 0102 | a relation between two opposite states or principles that together exhaust the possibilities -13857486 24 n 01 contradictoriness 0 005 @ 13854649 n 0000 + 00578234 a 0103 + 00508750 a 0101 + 02382144 a 0101 ~ 13858045 n 0000 | the relation that exists when opposites cannot coexist -13857676 24 n 01 contradiction 0 002 @ 13854649 n 0000 ~ 13857804 n 0000 | opposition between two conflicting forces or ideas -13857804 24 n 01 dialectic 0 003 @ 13857676 n 0000 + 03023644 a 0102 + 10011360 n 0101 | a contradiction of ideas that serves as the determining factor in their interaction; "this situation created the inner dialectic of American history" -13858045 24 n 04 incompatibility 2 mutual_exclusiveness 0 inconsistency 0 repugnance 0 003 @ 13857486 n 0000 + 00869596 v 0403 + 00578523 a 0102 | the relation between propositions that cannot both be true at the same time -13858270 24 n 01 contrary 0 001 @ 13854649 n 0000 | exact opposition; "public opinion to the contrary he is not guilty" -13858392 24 n 01 contrariety 0 001 @ 13854649 n 0000 | the relation between contraries -13858481 24 n 01 tertium_quid 0 001 @ 13854649 n 0000 | some third thing similar to two opposites but distinct from both -13858604 24 n 03 reverse 0 contrary 1 opposite 3 004 @ 13854649 n 0000 + 00202095 a 0102 + 00799798 v 0105 + 00138508 v 0103 | a relation of direct opposition; "we thought Sue was older than Bill but just the reverse was true" -13858833 24 n 02 inverse 2 opposite 4 003 @ 13854649 n 0000 ~ 13843001 n 0000 ~ 13843173 n 0000 | something inverted in sequence or character or effect; "when the direct approach failed he tried the inverse" -13859043 24 n 01 change 0 005 @ 00031921 n 0000 + 00123170 v 0101 + 00126264 v 0101 ~ 13859307 n 0000 ~ 13859512 n 0000 | a relational difference between states; especially between states before and after some event; "he attributed the change to their marriage" -13859307 24 n 01 difference 0 004 @ 13859043 n 0000 + 02712922 a 0101 + 00119524 v 0101 + 00119074 v 0101 | a significant change; "the difference in her is amazing"; "his support made a real difference" -13859512 24 n 01 gradient 0 004 @ 13859043 n 0000 ~ 13859692 n 0000 ~ 13859925 n 0000 ~ 13860145 n 0000 | a graded change in the magnitude of some physical quantity or dimension -13859692 24 n 01 concentration_gradient 0 001 @ 13859512 n 0000 | a gradient in concentration of a solute as a function of distance through a solution; "the movement of a solute down its concentration gradient is called diffusion" -13859925 24 n 01 gravity_gradient 0 001 @ 13859512 n 0000 | a gradient in the gravitational forces acting on different parts of a nonspherical object; "the gravity gradient of the moon causes the ocean tides on Earth" -13860145 24 n 01 temperature_gradient 0 001 @ 13859512 n 0000 | change in temperature as a function of distance (especially altitude) -13860281 24 n 03 implication 1 logical_implication 0 conditional_relation 0 004 @ 13783038 n 0000 + 03094239 a 0101 + 00930599 v 0101 + 02634808 v 0102 | a logical relation between propositions p and q of the form `if p then q'; if p is true then q cannot be false -13860548 24 n 01 antagonism 0 005 @ 13854649 n 0000 + 01818680 a 0101 + 01245138 a 0101 + 09773245 n 0102 + 02564841 v 0102 | the relation between opposing principles or forces or factors; "the inherent antagonism of capitalism and socialism" -13860793 25 n 01 solid 0 011 @ 00027807 n 0000 + 00445169 v 0101 ~ 13864153 n 0000 ~ 13864965 n 0000 ~ 13865298 n 0000 ~ 13883885 n 0000 ~ 13900287 n 0000 ~ 13913566 n 0000 ~ 13914608 n 0000 ~ 13915023 n 0000 ~ 13917457 n 0000 | a three-dimensional shape -13861050 25 n 02 plane 0 sheet 0 010 @ 00027807 n 0000 ;c 06000644 n 0000 + 00910101 a 0103 + 00658942 a 0101 ~ 13861449 n 0000 ~ 13861580 n 0000 ~ 13861686 n 0000 ~ 13861806 n 0000 ~ 13861934 n 0000 ~ 13862144 n 0000 | (mathematics) an unbounded two-dimensional shape; "we will refer to the plane of the graph as the X-Y plane"; "any line joining two points on a plane lies wholly on that plane" -13861449 25 n 01 Cartesian_plane 0 001 @ 13861050 n 0000 | a plane in which all points can be described in Cartesian coordinates -13861580 25 n 01 facet_plane 0 001 @ 13861050 n 0000 | the plane of a facet of an object (as of a cube) -13861686 25 n 02 midplane 0 midline 0 001 @ 13861050 n 0000 | the median plane of the body (or some part of the body) -13861806 25 n 01 orbital_plane 0 002 @ 13861050 n 0000 ;c 06095022 n 0000 | (astronomy) the plane on which a body is orbiting -13861934 25 n 01 picture_plane 0 002 @ 13861050 n 0000 #p 04676308 n 0000 | the plane that is in the foreground of a drawing or painting; coextensive with but different from the objective surface of the work -13862144 25 n 01 tangent_plane 0 001 @ 13861050 n 0000 | the plane that contains all the lines tangent to a specific point on a surface -13862282 25 n 01 natural_shape 0 002 @ 00027807 n 0000 ~ 13862407 n 0000 | a shape created by natural forces; not man-made -13862407 25 n 02 leaf_shape 0 leaf_form 0 002 @ 13862282 n 0000 #p 13152742 n 0000 | any of the various shape that leaves of plants can assume -13862552 25 n 01 equilateral 0 001 @ 13862780 n 0000 | a figure whose sides are all equal -13862644 25 n 02 flare 0 flair 0 002 @ 00027807 n 0000 + 00304252 v 0102 | a shape that spreads outward; "the skirt had a wide flare" -13862780 25 n 01 figure 0 007 @ 00027807 n 0000 ~ 13862552 n 0000 ~ 13863020 n 0000 ~ 13863186 n 0000 ~ 13863473 n 0000 ~ 13863602 n 0000 ~ 13880994 n 0000 | a combination of points and lines and planes that form a visible palpable shape -13863020 25 n 01 pencil 0 003 @ 13862780 n 0000 ;c 06090869 n 0000 ;c 06004685 n 0000 | a figure formed by a set of straight lines or light rays meeting at a point -13863186 25 n 02 plane_figure 0 two-dimensional_figure 0 011 @ 13862780 n 0000 ~ 13865904 n 0000 ~ 13866144 n 0000 ~ 13872975 n 0000 ~ 13873361 n 0000 ~ 13874251 n 0000 ~ 13875027 n 0000 ~ 13881644 n 0000 ~ 13897002 n 0000 ~ 13897198 n 0000 ~ 13912260 n 0000 | a two-dimensional shape -13863473 25 n 02 solid_figure 0 three-dimensional_figure 0 002 @ 13862780 n 0000 ~ 04157320 n 0000 | a three-dimensional shape -13863602 25 n 01 subfigure 0 005 @ 13862780 n 0000 ~ 13897377 n 0000 ~ 13899109 n 0000 ~ 13913164 n 0000 ~ 13913849 n 0000 | a figure that is a part of another figure -13863771 25 n 01 line 0 008 @ 00027807 n 0000 ~ 07000941 n 0000 ~ 13867641 n 0000 ~ 13869991 n 0000 ~ 13870414 n 0000 ~ 13871452 n 0000 ~ 13871967 n 0000 ~ 13903079 n 0000 | a length (straight or curved) without breadth or thickness; the trace of a moving point -13864035 25 n 01 bulb 0 002 @ 13865483 n 0000 + 02041807 a 0101 | anything with a round shape resembling a teardrop -13864153 25 n 02 convex_shape 0 convexity 0 010 @ 13860793 n 0000 + 00537339 a 0201 ~ 05324553 n 0000 ~ 13864423 n 0000 ~ 13864542 n 0000 ~ 13895986 n 0000 ~ 13902048 n 0000 ~ 13902482 n 0000 ~ 13902793 n 0000 ~ 13919685 n 0000 | a shape that curves or bulges outward -13864423 25 n 01 camber 0 002 @ 13864153 n 0000 + 02035425 v 0101 | a slight convexity (as of the surface of a road) -13864542 25 n 01 entasis 0 002 @ 13864153 n 0000 #p 03073977 n 0000 | a slight convexity in the shaft of a column; compensates for the illusion of concavity that viewers experience when the sides are perfectly straight -13864763 25 n 02 angular_shape 0 angularity 0 006 @ 00027807 n 0000 + 02047807 a 0201 ~ 13886724 n 0000 ~ 13887211 n 0000 ~ 13887319 n 0000 ~ 13907415 n 0000 | a shape having one or more sharp angles -13864965 25 n 04 concave_shape 0 concavity 0 incurvation 0 incurvature 0 012 @ 13860793 n 0000 + 01280645 v 0301 + 02036339 v 0301 + 00535452 a 0201 ~ 13872072 n 0000 ~ 13872211 n 0000 ~ 13872421 n 0000 ~ 13893694 n 0000 ~ 13894306 n 0000 ~ 13896369 n 0000 ~ 13904665 n 0000 ~ 13908021 n 0000 | a shape that curves or bends inward -13865298 25 n 01 cylinder 2 004 @ 13860793 n 0000 + 02045723 a 0102 ~ 04101232 n 0000 ~ 04101497 n 0000 | a solid bounded by a cylindrical surface and two parallel planes (the bases) -13865483 25 n 01 round_shape 0 012 @ 00027807 n 0000 ~ 13864035 n 0000 ~ 13872592 n 0000 ~ 13875185 n 0000 ~ 13875970 n 0000 ~ 13878112 n 0000 ~ 13898645 n 0000 ~ 13898899 n 0000 ~ 13899200 n 0000 ~ 13899804 n 0000 ~ 13900088 n 0000 ~ 13902336 n 0000 | a shape that is curved and without sharp angles -13865786 25 n 02 conglomeration 0 conglobation 0 002 @ 13899200 n 0000 + 00144694 v 0201 | a rounded spherical form -13865904 25 n 01 heart 0 001 @ 13863186 n 0000 | a plane figure with rounded sides curving inward at the top and intersecting at the bottom; conventionally used on playing cards and valentines; "he drew a heart and called it a valentine" -13866144 25 n 02 polygon 0 polygonal_shape 0 015 @ 13863186 n 0000 ~ 13866515 n 0000 ~ 13866626 n 0000 ~ 13866827 n 0000 ~ 13879126 n 0000 ~ 13879320 n 0000 ~ 13882201 n 0000 ~ 13882276 n 0000 ~ 13882487 n 0000 ~ 13882563 n 0000 ~ 13882639 n 0000 ~ 13882713 n 0000 ~ 13882804 n 0000 ~ 13882883 n 0000 ~ 13883603 n 0000 | a closed plane figure bounded by straight sides -13866515 25 n 01 isogon 0 003 @ 13866144 n 0000 + 02048875 a 0101 ~ 13867133 n 0000 | an equiangular polygon -13866626 25 n 01 convex_polygon 0 002 @ 13866144 n 0000 ! 13866827 n 0101 | a polygon such that no side extended cuts any other side or vertex; it can be cut by a straight line in at most two points -13866827 25 n 01 concave_polygon 0 003 @ 13866144 n 0000 ! 13866626 n 0101 ~ 13867005 n 0000 | a polygon such that there is a straight line that cuts it in four or more points -13867005 25 n 02 reentrant_polygon 0 reentering_polygon 0 001 @ 13866827 n 0000 | a polygon with one or more reentrant angles -13867133 25 n 01 regular_polygon 0 003 @ 13866515 n 0000 ~ 13878634 n 0000 ~ 13879947 n 0000 | a polygon with all sides and all angles equal -13867276 25 n 02 distorted_shape 0 distortion 0 007 @ 00027807 n 0000 + 10018747 n 0201 + 01223182 v 0203 + 01350699 v 0203 ~ 13885370 n 0000 ~ 13885700 n 0000 ~ 13885836 n 0000 | a shape resulting from distortion -13867492 25 n 01 amorphous_shape 0 004 @ 00027807 n 0000 ~ 13909889 n 0000 ~ 13910019 n 0000 ~ 13910384 n 0000 | an ill-defined or arbitrary shape -13867641 25 n 02 curve 0 curved_shape 0 028 @ 13863771 n 0000 + 02033295 v 0103 ! 13869991 n 0101 ~ 06026088 n 0000 ~ 09349648 n 0000 ~ 13868248 n 0000 ~ 13868515 n 0000 ~ 13868607 n 0000 ~ 13868813 n 0000 ~ 13868944 n 0000 ~ 13869045 n 0000 ~ 13869129 n 0000 ~ 13869243 n 0000 ~ 13869327 n 0000 ~ 13869547 n 0000 ~ 13869788 n 0000 ~ 13874384 n 0000 ~ 13874558 n 0000 ~ 13876371 n 0000 ~ 13876561 n 0000 ~ 13876921 n 0000 ~ 13885207 n 0000 ~ 13886133 n 0000 ~ 13886260 n 0000 ~ 13896100 n 0000 ~ 13896217 n 0000 ~ 13902905 n 0000 ~ 13908580 n 0000 | the trace of a point whose direction of motion changes -13868248 25 n 01 closed_curve 0 002 @ 13867641 n 0000 ~ 13868371 n 0000 | a curve (such as a circle) having no endpoints -13868371 25 n 02 simple_closed_curve 0 Jordan_curve 0 002 @ 13868248 n 0000 ~ 13875571 n 0000 | a closed curve that does not intersect itself -13868515 25 n 01 S-shape 0 001 @ 13867641 n 0000 | a double curve resembling the letter S -13868607 25 n 01 catenary 0 001 @ 13867641 n 0000 | the curve theoretically assumed by a perfectly flexible and inextensible cord of uniform density and cross section hanging freely from two fixed points -13868813 25 n 01 Cupid's_bow 0 001 @ 13867641 n 0000 | the double curve of the upper lip when considered to resemble Cupid's bow -13868944 25 n 02 wave 0 undulation 0 002 @ 13867641 n 0000 ~ 13909190 n 0000 | an undulating curve -13869045 25 n 01 extrados 0 001 @ 13867641 n 0000 | the exterior curve of an arch -13869129 25 n 01 gooseneck 0 001 @ 13867641 n 0000 | something in a thin curved form (like the neck of a goose) -13869243 25 n 01 intrados 0 001 @ 13867641 n 0000 | the interior curve of an arch -13869327 25 n 04 bend 2 crook 0 twist 1 turn 0 005 @ 13867641 n 0000 + 02034671 v 0201 + 02033137 v 0101 + 02035919 v 0101 ~ 13869896 n 0000 | a circular segment of a curve; "a bend in the road"; "a crook in the path" -13869547 25 n 02 hook 0 crotchet 0 002 @ 13867641 n 0000 ~ 13869676 n 0000 | a sharp curve or crook; a shape resembling a hook -13869676 25 n 01 uncus 0 002 @ 13869547 n 0000 ;c 06037666 n 0000 | (biology) any hook-shaped process or part -13869788 25 n 01 envelope 0 001 @ 13867641 n 0000 | a curve that is tangent to each of a family of curves -13869896 25 n 01 bight 0 001 @ 13869327 n 0000 | a bend or curve (especially in a coastline) -13869991 25 n 01 straight_line 0 013 @ 13863771 n 0000 ! 13867641 n 0101 ~ 13870680 n 0000 ~ 13870935 n 0000 ~ 13871134 n 0000 ~ 13871338 n 0000 ~ 13871538 n 0000 ~ 13871717 n 0000 ~ 13874927 n 0000 ~ 13877408 n 0000 ~ 13904164 n 0000 ~ 13904325 n 0000 ~ 13913263 n 0000 | a line traced by a point traveling in a constant direction; a line of zero curvature; "the shortest distance between two points is a straight line" -13870414 25 n 02 geodesic 0 geodesic_line 0 003 @ 13863771 n 0000 ;c 06000644 n 0000 + 02993362 a 0102 | (mathematics) the shortest line between two points on a mathematically defined surface (as a straight line on a plane or an arc of a great circle on a sphere) -13870680 25 n 01 perpendicular 0 002 @ 13869991 n 0000 + 01720280 a 0101 | a straight line at right angles to another line -13870805 25 n 03 connection 0 connexion 0 link 0 003 @ 00027807 n 0000 ~ 13911045 n 0000 ~ 13911151 n 0000 | a connecting shape -13870935 25 n 01 asymptote 0 002 @ 13869991 n 0000 + 02929071 a 0101 | a straight line that is the limiting value of a curve; can be considered as tangent at infinity; "the asymptote of the curve" -13871134 25 n 01 tangent 0 003 @ 13869991 n 0000 + 02808830 a 0101 + 14420074 n 0101 | a straight line or plane that touches a curve or curved surface at a point but does not intersect it at that point -13871338 25 n 01 secant 0 001 @ 13869991 n 0000 | a straight line that intersects a curve at two or more points -13871452 25 n 01 perimeter 1 001 @ 13863771 n 0000 | a line enclosing a plane areas -13871538 25 n 01 radius 0 002 @ 13869991 n 0000 + 02836757 a 0101 | a straight line from the center to the perimeter of a circle (or from the center to the surface of a sphere) -13871717 25 n 01 diameter 0 004 @ 13869991 n 0000 + 02711846 a 0101 + 02711846 a 0102 + 02711846 a 0103 | a straight line connecting the center of a circle with two points on its perimeter (or the center of a sphere with two points on its surface) -13871967 25 n 02 centerline 0 center_line 0 001 @ 13863771 n 0000 | a line that bisects a plane figure -13872072 25 n 01 dome 0 001 @ 13864965 n 0000 | a concave shape whose distinguishing characteristic is that the concavity faces downward -13872211 25 n 02 pit 0 fossa 0 006 @ 13864965 n 0000 @ 05303402 n 0000 + 01551195 v 0104 ~ 05279953 n 0000 ~ 05280154 n 0000 ~ 05508943 n 0000 | a concavity in a surface (especially an anatomical depression) -13872421 25 n 04 recess 0 recession 0 niche 0 corner 0 005 @ 13864965 n 0000 + 01934205 v 0401 + 01277305 v 0101 + 01498872 v 0101 ~ 05609884 n 0000 | a small concavity -13872592 25 n 03 cone 0 conoid 0 cone_shape 0 006 @ 13865483 n 0000 + 02844728 a 0101 + 02844728 a 0102 + 01584321 v 0101 ~ 13872822 n 0000 %p 13902482 n 0000 | a shape whose base is a circle and whose sides taper up to a point -13872822 25 n 02 funnel 0 funnel_shape 0 002 @ 13872592 n 0000 + 01444146 v 0101 | a conical shape with a wider and a narrower opening at the two ends -13872975 25 n 02 conic_section 0 conic 0 006 @ 13863186 n 0000 ;c 06004685 n 0000 + 02844728 a 0201 ~ 13878306 n 0000 ~ 13886371 n 0000 ~ 13886575 n 0000 | (geometry) a curve generated by the intersection of a plane and a circular cone -13873213 25 n 01 intersection 0 002 @ 07999699 n 0000 ~ 06009086 n 0000 | a point or set of points common to two or more geometric configurations -13873361 25 n 01 oblong 0 002 @ 13863186 n 0000 + 01435507 a 0101 | a plane figure that deviates from a square or circle due to elongation -13873502 25 n 01 circle 0 007 @ 13878306 n 0000 + 02040652 a 0102 ~ 05102889 n 0000 ~ 13873849 n 0000 ~ 13874073 n 0000 %p 13874384 n 0000 ~ 13909296 n 0000 | ellipse in which the two axes are of equal length; a plane curve generated by one point moving at a constant distance from a fixed point; "he calculated the circumference of the circle" -13873849 25 n 01 circlet 0 001 @ 13873502 n 0000 | a small circle -13873917 25 n 01 circle 1 002 @ 00027807 n 0000 + 01522716 v 0102 | something approximating the shape of a circle; "the chairs were arranged in a circle" -13874073 25 n 01 equator 0 003 @ 13873502 n 0000 + 02929769 a 0101 + 00417001 v 0105 | a circle dividing a sphere or other surface into two usually equal and symmetrical parts -13874251 25 n 02 semicircle 0 hemicycle 0 002 @ 13863186 n 0000 + 02316718 a 0101 | a plane figure with the shape of half a circle -13874384 25 n 01 arc 0 006 @ 13867641 n 0000 #p 13873502 n 0000 #p 13875027 n 0000 + 02034986 v 0103 + 02315461 a 0105 ~ 03668906 n 0000 | a continuous portion of a circle -13874558 25 n 05 scallop 0 crenation 0 crenature 0 crenel 0 crenelle 0 003 @ 13867641 n 0000 + 00145299 v 0101 + 01679106 v 0101 | one of a series of rounded projections (or the notches between them) formed by curves along an edge (as the edge of a leaf or piece of cloth or the margin of a shell or a shriveled red blood cell observed in a hypertonic solution etc.) -13874927 25 n 01 chord 0 001 @ 13869991 n 0000 | a straight line connecting two points on a curve -13875027 25 n 01 sector 0 003 @ 13863186 n 0000 + 02794543 a 0101 %p 13874384 n 0000 | a plane figure bounded by two radii and the included arc of a circle -13875185 25 n 03 disk 0 disc 0 saucer 0 003 @ 13865483 n 0000 ~ 05284617 n 0000 ~ 13911872 n 0000 | something with a round shape resembling a flat circular plate; "the moon's disk hung in a cloudless sky" -13875392 25 n 05 ring 0 halo 0 annulus 0 doughnut 0 anchor_ring 0 002 @ 13900287 n 0000 ~ 13007034 n 0000 | a toroidal shape; "a ring of ships in the harbor"; "a halo of smoke" -13875571 25 n 01 loop 0 010 @ 13868371 n 0000 + 02757100 a 0101 + 01523986 v 0102 + 01673472 v 0101 ~ 02785365 n 0000 ~ 02827883 n 0000 ~ 03241903 n 0000 ~ 03829563 n 0000 ~ 07005523 n 0000 ~ 13875884 n 0000 | anything with a round or oval shape (formed by a curve that is closed and does not intersect itself) -13875884 25 n 01 bight 1 002 @ 13875571 n 0000 + 01342536 v 0101 | a loop in a rope -13875970 25 n 08 coil 0 whorl 0 roll 0 curl 0 curlicue 0 ringlet 0 gyre 0 scroll 0 012 @ 13865483 n 0000 + 01523986 v 0403 + 02098458 v 0402 + 00362128 v 0401 + 00143204 v 0301 + 01391280 v 0302 + 02687251 v 0301 + 02049190 v 0103 + 01523986 v 0101 ~ 11691046 n 0000 ~ 11691523 n 0000 ~ 13918965 n 0000 | a round shape formed by a series of concentric circles (as formed by leaves or flower petals) -13876371 25 n 01 spiral 0 003 @ 13867641 n 0000 + 02738544 v 0101 + 02049190 v 0102 | a plane curve traced by a point circling about the center but at increasing distances from the center -13876561 25 n 02 helix 0 spiral 1 003 @ 13867641 n 0000 + 02738544 v 0201 ~ 13876753 n 0000 | a curve that lies on the surface of a cylinder or cone and cuts the element at a constant angle -13876753 25 n 01 double_helix 0 001 @ 13876561 n 0000 | a pair of parallel helices intertwined about a common axis; "the shape of the DNA molecule is a double helix" -13876921 25 n 01 perversion 0 001 @ 13867641 n 0000 | a curve that reverses the direction of something; "the tendrils of the plant exhibited perversion"; "perversion also shows up in kinky telephone cords" -13877129 25 n 01 eccentricity 0 003 @ 13819207 n 0000 ;c 06004685 n 0000 + 00543200 a 0101 | (geometry) a ratio describing the shape of a conic section; the ratio of the distance between the foci to the length of the major axis; "a circle is an ellipse with zero eccentricity" -13877408 25 n 01 element 0 003 @ 13869991 n 0000 ~ 13877547 n 0000 ~ 13877667 n 0000 | a straight line that generates a cylinder or cone -13877547 25 n 01 element_of_a_cone 0 001 @ 13877408 n 0000 | a straight line joining the apex and a point on the base -13877667 25 n 01 element_of_a_cylinder 0 001 @ 13877408 n 0000 | a straight line running the length of the cylinder -13877785 25 n 01 helix_angle 0 001 @ 13887509 n 0000 | the constant angle at which a helix cuts the elements of a cylinder or cone -13877918 25 n 03 kink 0 twist 0 twirl 0 004 @ 13907415 n 0000 + 01223182 v 0201 + 00362128 v 0103 + 01223833 v 0106 | a sharp bend in a line produced when a line having a loop is pulled tight -13878112 25 n 04 whirl 0 swirl 0 vortex 0 convolution 0 005 @ 13865483 n 0000 + 02047650 v 0204 + 02048891 v 0202 + 02046755 v 0103 + 02048051 v 0101 | the shape of something rotating rapidly -13878306 25 n 02 ellipse 0 oval 0 005 @ 13872975 n 0000 + 02046199 a 0204 + 02046199 a 0102 + 02046199 a 0103 ~ 13873502 n 0000 | a closed plane curve resulting from the intersection of a circular cone and a plane cutting completely through it; "the sums of the distances from the foci to any point on an ellipse is constant" -13878634 25 n 02 square 0 foursquare 0 005 @ 13883346 n 0000 @ 13867133 n 0000 ;c 06004685 n 0000 + 00145448 v 0101 ~ 13879049 n 0000 | (geometry) a plane rectangle with four equal sides and four right angles; a four-sided regular polygon; "you can compute the area of a square if you know the length of its sides" -13878951 25 n 01 square 1 001 @ 00027807 n 0000 | something approximating the shape of a square -13879049 25 n 01 quadrate 1 001 @ 13878634 n 0000 | a square-shaped object -13879126 25 n 03 quadrilateral 0 quadrangle 0 tetragon 0 006 @ 13866144 n 0000 + 02834480 a 0301 + 02834340 a 0201 ~ 13881175 n 0000 ~ 13881381 n 0000 ~ 13881512 n 0000 | a four-sided polygon -13879320 25 n 03 triangle 0 trigon 0 trilateral 0 013 @ 13866144 n 0000 + 00239847 a 0102 + 02049428 a 0101 + 02468618 v 0101 + 00646912 v 0101 ~ 13879816 n 0000 ~ 13879947 n 0000 ~ 13880199 n 0000 ~ 13880295 n 0000 ~ 13880415 n 0000 ~ 13880551 n 0000 ~ 13880704 n 0000 ~ 13919547 n 0000 | a three-sided polygon -13879634 25 n 01 triangle 1 001 @ 00027807 n 0000 | something approximating the shape of a triangle; "the coastline of Chile and Argentina and Brazil forms two legs of a triangle" -13879816 25 n 02 acute_triangle 0 acute-angled_triangle 0 001 @ 13879320 n 0000 | a triangle whose interior angles are all acute -13879947 25 n 02 equilateral_triangle 0 equiangular_triangle 0 003 @ 13879320 n 0000 @ 13867133 n 0000 ~ 13880102 n 0000 | a three-sided regular polygon -13880102 25 n 01 delta 0 001 @ 13879947 n 0000 | an object shaped like an equilateral triangle -13880199 25 n 01 isosceles_triangle 0 001 @ 13879320 n 0000 | a triangle with two equal sides -13880295 25 n 01 oblique_triangle 0 002 @ 13879320 n 0000 ! 13880551 n 0101 | a triangle that contains no right angle -13880415 25 n 02 obtuse_triangle 0 obtuse-angled_triangle 0 001 @ 13879320 n 0000 | a triangle that contains an obtuse interior angle -13880551 25 n 02 right_triangle 0 right-angled_triangle 0 003 @ 13879320 n 0000 ! 13880295 n 0101 %p 13897528 n 0000 | a triangle with one right angle -13880704 25 n 01 scalene_triangle 0 001 @ 13879320 n 0000 | a triangle with no two sides of equal length -13880811 25 n 01 hexagram 0 002 @ 13881644 n 0000 ~ 06882333 n 0000 | a regular polygon formed by extending each of the sides of a regular hexagon to form two equilateral triangles -13880994 25 n 01 parallel 0 002 @ 13862780 n 0000 ;c 06000644 n 0000 | (mathematics) one of a set of parallel geometric figures (parallel lines or planes); "parallels never meet" -13881175 25 n 01 parallelogram 0 005 @ 13879126 n 0000 ! 13881381 n 0101 ~ 13882961 n 0000 ~ 13883133 n 0000 ~ 13883346 n 0000 | a quadrilateral whose opposite sides are both parallel and equal in length -13881381 25 n 01 trapezium 0 003 @ 13879126 n 0000 ;r 09044862 n 0000 ! 13881175 n 0101 | a quadrilateral with no parallel sides -13881512 25 n 01 trapezoid 0 003 @ 13879126 n 0000 ;r 09044862 n 0000 + 02948984 a 0101 | a quadrilateral with two parallel sides -13881644 25 n 01 star 0 004 @ 13863186 n 0000 ~ 13880811 n 0000 ~ 13881810 n 0000 ~ 13882008 n 0000 | a plane figure with 5 or more points; often used as an emblem -13881810 25 n 01 asterism 0 002 @ 13881644 n 0000 ;c 06121113 n 0000 | (mineralogy) a star-shaped figure with six rays that is seen in some crystal structures under reflected or transmitted light -13882008 25 n 03 pentacle 0 pentagram 0 pentangle 0 001 @ 13881644 n 0000 | a star with 5 points; formed by 5 straight lines between the vertices of a pentagon and enclosing another pentagon -13882201 25 n 01 pentagon 0 001 @ 13866144 n 0000 | a five-sided polygon -13882276 25 n 01 hexagon 0 003 @ 13866144 n 0000 + 02741797 a 0102 ~ 13882385 n 0000 | a six-sided polygon -13882385 25 n 01 regular_hexagon 0 001 @ 13882276 n 0000 | a hexagon with six sides of equal length -13882487 25 n 01 heptagon 0 001 @ 13866144 n 0000 | a seven-sided polygon -13882563 25 n 01 octagon 0 001 @ 13866144 n 0000 | an eight-sided polygon -13882639 25 n 01 nonagon 0 001 @ 13866144 n 0000 | a nine-sided polygon -13882713 25 n 01 decagon 0 001 @ 13866144 n 0000 | a polygon with 10 sides and 10 angles -13882804 25 n 01 undecagon 0 001 @ 13866144 n 0000 | an eleven-sided polygon -13882883 25 n 01 dodecagon 0 001 @ 13866144 n 0000 | a twelve-sided polygon -13882961 25 n 03 rhombus 0 rhomb 0 diamond 0 002 @ 13881175 n 0000 + 02948892 a 0101 | a parallelogram with four equal sides; an oblique-angled equilateral parallelogram -13883133 25 n 01 rhomboid 0 003 @ 13881175 n 0000 + 03111656 a 0101 + 03111656 a 0102 | a parallelogram with adjacent sides of unequal lengths; an oblique-angled parallelogram with only the opposite sides equal -13883346 25 n 01 rectangle 0 004 @ 13881175 n 0000 + 02048977 a 0101 ~ 13878634 n 0000 ~ 13883494 n 0000 | a parallelogram with four right angles -13883494 25 n 01 box 0 001 @ 13883346 n 0000 | a rectangular drawing; "the flowchart contained many boxes" -13883603 25 n 01 spherical_polygon 0 002 @ 13866144 n 0000 ~ 13883763 n 0000 | a figure on the surface of a sphere bounded by arcs of 3 or more great circles -13883763 25 n 01 spherical_triangle 0 001 @ 13883603 n 0000 | a spherical polygon formed by the arcs of 3 great circles -13883885 25 n 01 polyhedron 0 016 @ 13860793 n 0000 + 02782106 a 0101 ~ 13884261 n 0000 ~ 13884384 n 0000 ~ 13884511 n 0000 ~ 13914837 n 0000 ~ 13915113 n 0000 ~ 13915209 n 0000 ~ 13915305 n 0000 ~ 13915594 n 0000 ~ 13915690 n 0000 ~ 13915784 n 0000 ~ 13915883 n 0000 ~ 13915999 n 0000 ~ 13917874 n 0000 ~ 13918717 n 0000 | a solid figure bounded by plane polygons or faces -13884261 25 n 01 convex_polyhedron 0 001 @ 13883885 n 0000 | a polyhedron any plane section of which is a convex polygon -13884384 25 n 01 concave_polyhedron 0 001 @ 13883885 n 0000 | a polyhedron some of whose plane sections are concave polygons -13884511 25 n 01 prism 0 005 @ 13883885 n 0000 + 03102558 a 0101 ~ 13884740 n 0000 ~ 13885011 n 0000 ~ 13885111 n 0000 | a polyhedron with two congruent and parallel faces (the bases) and whose lateral faces are parallelograms -13884740 25 n 04 parallelepiped 0 parallelopiped 0 parallelepipedon 0 parallelopipedon 0 003 @ 13884511 n 0000 ~ 13884930 n 0000 ~ 13915417 n 0000 | a prism whose bases are parallelograms -13884930 25 n 01 cuboid 0 001 @ 13884740 n 0000 | a rectangular parallelepiped -13885011 25 n 01 quadrangular_prism 0 001 @ 13884511 n 0000 | a prism whose bases are quadrangles -13885111 25 n 01 triangular_prism 0 001 @ 13884511 n 0000 | a prism whose bases are triangles -13885207 25 n 02 sinuosity 0 sinuousness 0 003 @ 13867641 n 0000 + 02316992 a 0202 + 02316992 a 0102 | having curves; "he hated the sinuosity of mountain roads" -13885370 25 n 05 tortuosity 0 tortuousness 0 torsion 0 contortion 0 crookedness 0 005 @ 13867276 n 0000 + 09960545 n 0401 + 01350699 v 0401 + 02313784 a 0201 + 02313784 a 0101 | a tortuous and twisted shape or position; "they built a tree house in the tortuosities of its boughs"; "the acrobat performed incredible contortions" -13885700 25 n 02 warp 0 buckle 0 003 @ 13867276 n 0000 + 00356954 v 0202 + 00356954 v 0103 | a shape distorted by twisting or folding -13885836 25 n 02 knot 0 gnarl 0 006 @ 13867276 n 0000 + 02313235 a 0202 + 01280808 v 0201 + 00255720 a 0101 + 01521124 v 0103 + 01673732 v 0101 | something twisted and tight and swollen; "their muscles stood out in knots"; "the old man's fists were two great gnarls"; "his stomach was in knots" -13886133 25 n 01 arch 0 002 @ 13867641 n 0000 + 02034986 v 0101 | a curved shape in the vertical plane that spans an opening -13886260 25 n 03 bell 0 bell_shape 0 campana 0 002 @ 13867641 n 0000 + 02676610 a 0302 | the shape of a bell -13886371 25 n 01 parabola 0 003 @ 13872975 n 0000 + 02046916 a 0101 + 02046916 a 0102 | a plane curve formed by the intersection of a right circular cone and a plane parallel to an element of the curve -13886575 25 n 01 hyperbola 0 002 @ 13872975 n 0000 + 02994089 a 0101 | an open curve formed by a plane that cuts the base of a right circular cone -13886724 25 n 02 furcation 0 forking 0 005 @ 13864763 n 0000 + 00328802 v 0203 + 00328802 v 0104 ~ 13886910 n 0000 %p 13913849 n 0000 | the place where something divides into branches -13886910 25 n 01 bifurcation 0 003 @ 13886724 n 0000 + 00329817 v 0101 %p 13887056 n 0000 | the place where something divides into two branches -13887056 25 n 01 bifurcation 1 004 @ 13913849 n 0000 #p 13886910 n 0000 + 02718863 v 0101 + 00329817 v 0101 | a bifurcating branch (one or both of them) -13887211 25 n 01 jog 0 001 @ 13864763 n 0000 | a sharp change in direction; "there was a jog in the road" -13887319 25 n 03 zigzag 0 zig 0 zag 0 004 @ 13864763 n 0000 + 02314451 a 0101 + 01991744 v 0101 + 02314451 a 0102 | an angular shape characterized by sharp turns in alternating directions -13887509 25 n 01 angle 0 040 @ 13910384 n 0000 + 02930616 a 0101 + 02047807 a 0101 + 00573457 v 0101 + 02044866 v 0101 + 02038357 v 0105 + 02047807 a 0102 ~ 05597436 n 0000 ~ 13130423 n 0000 ~ 13877785 n 0000 ~ 13888387 n 0000 ~ 13888491 n 0000 ~ 13889216 n 0000 ~ 13889331 n 0000 ~ 13889461 n 0000 ~ 13889602 n 0000 ~ 13889843 n 0000 ~ 13890226 n 0000 ~ 13890391 n 0000 ~ 13890535 n 0000 ~ 13890869 n 0000 ~ 13891371 n 0000 ~ 13891547 n 0000 ~ 13891735 n 0000 ~ 13892142 n 0000 ~ 13892237 n 0000 ~ 13892383 n 0000 ~ 13892562 n 0000 ~ 13892674 n 0000 ~ 13892765 n 0000 ~ 13892897 n 0000 ~ 13893129 n 0000 ~ 13893310 n 0000 ~ 13893502 n 0000 ~ 13916363 n 0000 ~ 13916495 n 0000 ~ 13918584 n 0000 ~ 13918816 n 0000 ~ 13919059 n 0000 ~ 13919394 n 0000 | the space between two lines or planes that intersect; the inclination of one line to another; measured in degrees or radians -13888387 25 n 01 complementary_angles 0 001 @ 13887509 n 0000 | two angles whose sum is a right angle -13888491 25 n 01 angular_distance 0 007 @ 13887509 n 0000 ~ 08595531 n 0000 ~ 08596668 n 0000 ~ 08632894 n 0000 ~ 08633191 n 0000 ~ 13888783 n 0000 ~ 13889066 n 0000 | the angular separation between two objects as perceived by an observer; "he recorded angular distances between the stars" -13888783 25 n 02 hour_angle 0 HA 0 002 @ 13888491 n 0000 ;c 06095022 n 0000 | (astronomy) the angular distance of a celestial point measured westward along the celestial equator from the zenith crossing; the right ascension for an observer at a particular location and time of day -13889066 25 n 01 true_anomaly 0 001 @ 13888491 n 0000 | the angular distance of a point in an orbit past the point of periapsis measured in degrees -13889216 25 n 01 plane_angle 0 001 @ 13887509 n 0000 | an angle formed by two straight lines (in the same plane) -13889331 25 n 01 spherical_angle 0 001 @ 13887509 n 0000 | an angle formed at the intersection of the arcs of two great circles -13889461 25 n 01 solid_angle 0 001 @ 13887509 n 0000 | an angle formed by three or more planes intersecting at a common point (the vertex) -13889602 25 n 02 inclination 1 angle_of_inclination 0 003 @ 13887509 n 0000 ;c 06004685 n 0000 + 02037090 v 0102 | (geometry) the angle formed by the x-axis and a given line (measured counterclockwise from the positive half of the x-axis) -13889843 25 n 02 inclination 2 inclination_of_an_orbit 0 003 @ 13887509 n 0000 ;c 06095022 n 0000 + 02037090 v 0102 | (astronomy) the angle between the plane of the orbit and the plane of the ecliptic stated in degrees -13890064 25 n 02 reentrant_angle 0 reentering_angle 0 002 @ 13890391 n 0000 ! 13890226 n 0101 | an interior angle of a polygon that is greater than 180 degrees -13890226 25 n 01 salient_angle 0 002 @ 13887509 n 0000 ! 13890064 n 0101 | an angle pointing outward; an interior angle of a polygon that is less than 180 degrees -13890391 25 n 02 interior_angle 0 internal_angle 0 002 @ 13887509 n 0000 ~ 13890064 n 0000 | the angle inside two adjacent sides of a polygon -13890535 25 n 02 exterior_angle 0 external_angle 0 002 @ 13887509 n 0000 ~ 13890679 n 0000 | the supplement of an interior angle of a polygon -13890679 25 n 01 hip 0 003 @ 13890535 n 0000 #p 03522100 n 0000 ;c 06123363 n 0000 | (architecture) the exterior angle formed by the junction of a sloping side and a sloping end of a roof -13890869 25 n 02 angle_of_incidence 0 incidence_angle 0 003 @ 13887509 n 0000 ~ 13891082 n 0000 ~ 13891242 n 0000 | the angle that a line makes with a line perpendicular to the surface at the point of incidence -13891082 25 n 01 angle_of_attack 0 001 @ 13890869 n 0000 | the acute angle between the direction of the undisturbed relative wind and the chord of an airfoil -13891242 25 n 01 critical_angle 0 001 @ 13890869 n 0000 | the smallest angle of incidence for which light is totally reflected -13891371 25 n 01 angle_of_reflection 0 001 @ 13887509 n 0000 | the angle between a reflected ray and a line perpendicular to the reflecting surface at the point of incidence -13891547 25 n 01 angle_of_refraction 0 001 @ 13887509 n 0000 | the angle between a refracted ray and a line perpendicular to the surface between the two media at the point of refraction -13891735 25 n 02 angle_of_extinction 0 extinction_angle 0 001 @ 13887509 n 0000 | the angle from its axis that a crystal must be rotated before appearing maximally dark when viewed in polarized light -13891937 25 n 01 acute_angle 0 001 @ 13892383 n 0000 | an angle less than 90 degrees but more than 0 degrees -13892048 25 n 01 obtuse_angle 0 001 @ 13892383 n 0000 | an angle between 90 and 180 degrees -13892142 25 n 01 dogleg 0 001 @ 13887509 n 0000 | angle that resembles the hind leg of a dog -13892237 25 n 01 right_angle 0 003 @ 13887509 n 0000 ! 13892383 n 0101 %p 13612319 n 0000 | the 90 degree angle between two perpendicular lines -13892383 25 n 01 oblique_angle 0 004 @ 13887509 n 0000 ! 13892237 n 0101 ~ 13891937 n 0000 ~ 13892048 n 0000 | an angle that is not a right angle or a multiple of a right angle -13892562 25 n 01 reflex_angle 0 001 @ 13887509 n 0000 | an angle greater than 180 degrees (but less than 360) -13892674 25 n 02 perigon 0 round_angle 0 001 @ 13887509 n 0000 | an angle of 360 degrees -13892765 25 n 01 cutting_angle 0 001 @ 13887509 n 0000 | the angle between the face of a cutting tool and the surface of the work -13892897 25 n 05 dip 0 angle_of_dip 0 magnetic_dip 0 magnetic_inclination 0 inclination 0 003 @ 13887509 n 0000 ;c 06090869 n 0000 + 02037090 v 0502 | (physics) the angle that a magnetic needle makes with the plane of the horizon -13893129 25 n 01 lead 0 001 @ 13887509 n 0000 | the angle between the direction a gun is aimed and the position of a moving target (correcting for the flight time of the missile) -13893310 25 n 03 magnetic_declination 0 magnetic_variation 0 variation 0 002 @ 13887509 n 0000 + 02662297 v 0301 | the angle (at a particular location) between magnetic north and true north -13893502 25 n 02 azimuth 0 AZ 0 002 @ 13887509 n 0000 + 02655838 a 0101 | the azimuth of a celestial body is the angle between the vertical plane containing it and the plane of the meridian -13893694 25 n 02 bowl 0 trough 0 001 @ 13864965 n 0000 | a concave shape with an open top -13893786 25 n 02 groove 0 channel 0 011 @ 13896369 n 0000 + 01277431 v 0103 + 01457489 v 0101 ~ 03158542 n 0000 ~ 03372355 n 0000 ~ 04035397 n 0000 ~ 04036776 n 0000 ~ 04464125 n 0000 ~ 13894154 n 0000 ~ 13908348 n 0000 ~ 13919173 n 0000 | a long narrow furrow cut either by a natural process (such as erosion) or by a tool (as e.g. a groove in a phonograph record) -13894154 25 n 01 rut 0 003 @ 13893786 n 0000 + 02244361 a 0102 + 01277431 v 0102 | a groove or furrow (especially one in soft earth caused by wheels) -13894306 25 n 02 scoop 0 pocket 1 002 @ 13864965 n 0000 + 01312371 v 0101 | a hollow concave shape made by removing something -13894434 25 n 0c bulge 0 bump 0 hump 0 swelling 0 gibbosity 0 gibbousness 0 jut 0 prominence 0 protuberance 0 protrusion 0 extrusion 0 excrescence 0 022 @ 13919685 n 0000 + 02723904 a 0c01 + 02081946 v 0a02 + 00263231 v 0a03 + 01353618 a 0906 + 02714731 v 0901 + 01019000 a 0606 + 01019000 a 0506 + 02035559 v 0302 + 01353618 a 0105 + 02714360 v 0101 + 02081946 v 0105 + 00256369 v 0101 + 00263231 v 0101 ~ 05541509 n 0000 ~ 05542052 n 0000 ~ 13895262 n 0000 ~ 13895362 n 0000 ~ 13895549 n 0000 ~ 13895622 n 0000 ~ 13895745 n 0000 ~ 13895852 n 0000 | something that bulges out or is protuberant or projects from its surroundings; "the gun in his pocket made an obvious bulge"; "the hump of a camel"; "he stood on the rocky prominence"; "the occipital protuberance was well developed"; "the bony excrescence between its horns" -13895262 25 n 01 belly 0 001 @ 13894434 n 0000 | a part that bulges deeply; "the belly of a sail" -13895362 25 n 01 caput 0 001 @ 13894434 n 0000 | a headlike protuberance on an organ or structure; "the caput humeri is the head of the humerus which fits into a cavity in the scapula" -13895549 25 n 01 mogul 0 001 @ 13894434 n 0000 | a bump on a ski slope -13895622 25 n 02 nub 0 nubble 0 003 @ 13894434 n 0000 + 02240795 a 0203 + 02240795 a 0102 | a small lump or protuberance -13895745 25 n 01 snag 0 003 @ 13894434 n 0000 + 01260593 v 0101 + 01328212 v 0101 | a sharp protuberance -13895852 25 n 01 wart 0 002 @ 13894434 n 0000 ;c 00015388 n 0000 | any small rounded protuberance (as on certain plants or animals) -13895986 25 n 03 node 1 knob 0 thickening 0 002 @ 13864153 n 0000 + 02141735 a 0201 | any thickened enlargement -13896100 25 n 02 bow 0 arc 1 003 @ 13867641 n 0000 + 02034986 v 0203 ~ 09403427 n 0000 | something curved in shape -13896217 25 n 01 crescent 0 002 @ 13867641 n 0000 + 02045473 a 0101 | any shape resembling the curved shape of the moon in its first or last quarters -13896369 25 n 03 depression 0 impression 0 imprint 0 009 @ 13864965 n 0000 ~ 05599874 n 0000 ~ 13893786 n 0000 ~ 13896695 n 0000 ~ 13904506 n 0000 ~ 13904843 n 0000 ~ 13905572 n 0000 ~ 13905792 n 0000 ~ 13907272 n 0000 | a concavity in a surface produced by pressing; "he left the impression of his fingers in the soft mud" -13896695 25 n 01 dimple 0 002 @ 13896369 n 0000 + 00509449 v 0101 | any slight depression in a surface; "there are approximately 336 dimples on a golf ball" -13896854 25 n 01 hyperboloid 0 002 @ 13902905 n 0000 + 02046625 a 0101 | a quadric surface generated by rotating a hyperbola around its main axis -13897002 25 n 01 paraboloid 0 002 @ 13863186 n 0000 + 02047051 a 0101 | a surface having parabolic sections parallel to a single coordinate axis and elliptic sections perpendicular to that axis -13897198 25 n 01 ellipsoid 0 003 @ 13863186 n 0000 + 02046446 a 0101 + 02046446 a 0102 | a surface whose plane sections are all ellipses or circles; "the Earth is an ellipsoid" -13897377 25 n 01 flank 0 004 @ 13863602 n 0000 + 02694106 v 0101 ~ 13897528 n 0000 ~ 13897837 n 0000 | a subfigure consisting of a side of something -13897528 25 n 01 hypotenuse 0 002 @ 13897377 n 0000 #p 13880551 n 0000 | the side of a right triangle opposite the right angle -13897657 25 n 01 altitude 0 002 @ 05129565 n 0000 + 02614945 a 0101 | the perpendicular distance from the base of a geometric figure to the opposite vertex (or side if parallel) -13897837 25 n 01 base 0 001 @ 13897377 n 0000 | the bottom side of a geometric figure from which the altitude can be constructed; "the base of the triangle" -13897996 25 n 04 balance 0 equilibrium 0 equipoise 0 counterbalance 0 006 @ 04341686 n 0000 + 02673134 v 0202 + 00136800 v 0201 + 02673134 v 0203 ~ 13898207 n 0000 ~ 13898315 n 0000 | equality of distribution -13898207 25 n 01 conformation 0 001 @ 13897996 n 0000 | a symmetrical arrangement of the parts of a thing -13898315 25 n 02 symmetry 0 proportion 0 006 @ 13897996 n 0000 + 00483466 v 0201 ! 13898509 n 0201 + 02371718 a 0102 + 00552619 v 0101 + 00552619 v 0102 | balance among the parts of something -13898509 25 n 01 disproportion 0 002 @ 04752530 n 0000 ! 13898315 n 0102 | lack of proportion; imbalance among the parts of something -13898645 25 n 02 spheroid 0 ellipsoid_of_revolution 0 002 @ 13865483 n 0000 + 02046446 a 0103 | a shape that is generated by rotating an ellipse around one of its axes; "it looked like a sphere but on closer examination I saw it was really a spheroid" -13898899 25 n 01 sphere 1 004 @ 13865483 n 0000 + 02041229 a 0107 + 02041229 a 0106 %p 13612791 n 0000 | a three-dimensional closed surface such that every point on the surface is equidistant from the center -13899109 25 n 01 hemisphere 0 002 @ 13863602 n 0000 + 02740070 a 0101 | half of a sphere -13899200 25 n 01 sphere 0 005 @ 13865483 n 0000 + 02041229 a 0106 ~ 13865786 n 0000 ~ 13899404 n 0000 ~ 13901585 n 0000 | a solid figure bounded by a spherical surface (including the space it encloses) -13899404 25 n 03 ball 0 globe 0 orb 0 013 @ 13899200 n 0000 + 02041229 a 0204 + 02041229 a 0202 + 00144694 v 0201 ~ 03143131 n 0000 ~ 03788703 n 0000 ~ 04436675 n 0000 ~ 09279870 n 0000 ~ 09279986 n 0000 ~ 09289709 n 0000 ~ 13899735 n 0000 ~ 13901423 n 0000 ~ 13901490 n 0000 | an object with a spherical shape; "a ball of fire" -13899735 25 n 01 spherule 0 001 @ 13899404 n 0000 | a small sphere -13899804 25 n 01 cylinder 0 010 @ 13865483 n 0000 + 02045723 a 0102 ~ 02890351 n 0000 ~ 04183819 n 0000 ~ 04183957 n 0000 ~ 04184095 n 0000 ~ 09443753 n 0000 ~ 09443921 n 0000 ~ 13901211 n 0000 ~ 13901321 n 0000 | a surface generated by rotating a parallel line around a fixed line -13900088 25 n 02 torus 0 toroid 0 003 @ 13865483 n 0000 + 02817647 a 0201 ~ 03108069 n 0000 | a ring-shaped surface generated by rotating a circle around an axis that does not intersect the circle -13900287 25 n 01 toroid 1 003 @ 13860793 n 0000 + 02817647 a 0101 ~ 13875392 n 0000 | the doughnut-shaped object enclosed by a torus -13900422 25 n 03 column 2 tower 0 pillar 0 005 @ 00027807 n 0000 + 02696503 v 0202 + 00141111 a 0102 ~ 13900914 n 0000 ~ 13901055 n 0000 | anything that approximates the shape of a column or tower; "the test tube held a column of white powder"; "a tower of dust rose above the horizon"; "a thin pillar of smoke betrayed their campsite" -13900760 25 n 01 plume 0 001 @ 00027807 n 0000 | anything that resembles a feather in shape or lightness; "a plume of smoke"; "grass with large plumes" -13900914 25 n 01 columella 0 001 @ 13900422 n 0000 | a small column (or structure resembling a column) that is a part of a plant or animal -13901055 25 n 01 hoodoo 0 002 @ 13900422 n 0000 ;c 06115701 n 0000 | (geology) a column of weathered and unusually shaped rock; "a tall sandstone hoodoo" -13901211 25 n 02 barrel 0 drum 0 001 @ 13899804 n 0000 | a bulging cylindrical shape; hollow with flat ends -13901321 25 n 02 pipe 0 tube 0 002 @ 13899804 n 0000 + 01580928 v 0201 | a hollow cylindrical shape -13901423 25 n 01 pellet 0 001 @ 13899404 n 0000 | a small sphere -13901490 25 n 01 bolus 0 001 @ 13899404 n 0000 | a small round soft mass (as of chewed food) -13901585 25 n 03 drop 0 bead 0 pearl 0 006 @ 13899200 n 0000 + 00280245 a 0201 + 02625521 v 0201 + 13771828 n 0101 ~ 13901858 n 0000 ~ 13901925 n 0000 | a shape that is spherical and small; "he studied the shapes of low-viscosity drops"; "beads of sweat on his forehead" -13901858 25 n 01 dewdrop 0 001 @ 13901585 n 0000 | a drop of dew -13901925 25 n 01 teardrop 0 001 @ 13901585 n 0000 | anything shaped like a falling drop (as a pendant gem on an earring) -13902048 25 n 01 ridge 0 007 @ 13864153 n 0000 + 00144446 v 0101 + 01310417 v 0101 + 01509933 v 0101 + 01742244 v 0101 ~ 05276425 n 0000 ~ 13902229 n 0000 | any long raised strip -13902229 25 n 01 corrugation 0 002 @ 13902048 n 0000 + 01387164 v 0101 | a ridge on a corrugated surface -13902336 25 n 01 rim 0 003 @ 13903079 n 0000 @ 13865483 n 0000 + 02329999 v 0101 | the shape of a raised edge of a more or less circular object -13902482 25 n 03 point 0 tip 0 peak 1 011 @ 13864153 n 0000 #p 13872592 n 0000 #p 02698634 n 0000 #p 04373894 n 0000 #p 03908204 n 0000 #p 02743050 n 0000 #p 03624134 n 0000 + 00392960 v 0103 ~ 05256562 n 0000 ~ 05307521 n 0000 ~ 14312481 n 0000 | a V shape; "the cannibal's teeth were filed to sharp points" -13902793 25 n 01 taper 0 002 @ 13864153 n 0000 + 00392960 v 0102 | a convex shape that narrows toward a point -13902905 25 n 02 quadric 0 quadric_surface 0 002 @ 13867641 n 0000 ~ 13896854 n 0000 | a curve or surface whose equation (in Cartesian coordinates) is of the second degree -13903079 25 n 03 boundary 0 edge 0 bound 0 012 @ 13863771 n 0000 + 02710673 v 0301 + 00233335 v 0305 + 01466978 v 0203 + 02710673 v 0101 ~ 13902336 n 0000 ~ 13903387 n 0000 ~ 13903576 n 0000 ~ 13903738 n 0000 ~ 13903855 n 0000 ~ 13904011 n 0000 ~ 13912686 n 0000 | a line determining the limits of an area -13903387 25 n 03 margin 0 border 0 perimeter 0 004 @ 13903079 n 0000 + 02710673 v 0202 + 00331889 a 0102 ~ 01941538 n 0000 | the boundary line or the area immediately inside the boundary -13903576 25 n 03 periphery 0 fringe 0 outer_boundary 0 003 @ 13903079 n 0000 + 00331889 a 0201 + 00331446 a 0101 | the outside boundary or surface of something -13903738 25 n 03 brink 0 threshold 0 verge 0 002 @ 13903079 n 0000 + 02703790 v 0301 | a region marking a boundary -13903855 25 n 01 upper_bound 0 002 @ 13903079 n 0000 ;c 06000644 n 0000 | (mathematics) a number equal to or greater than any other number in a given set -13904011 25 n 01 lower_bound 0 002 @ 13903079 n 0000 ;c 06000644 n 0000 | (mathematics) a number equal to or less than any other number in a given set -13904164 25 n 02 diagonal 0 bias 0 002 @ 13869991 n 0000 + 01234747 a 0103 | a line or cut across a fabric that is not at right angles to a side of the fabric -13904325 25 n 01 diagonal 1 003 @ 13869991 n 0000 ;c 06004685 n 0000 + 01719870 a 0101 | (geometry) a straight line connecting any two vertices of a polygon that are not adjacent -13904506 25 n 01 dip 1 003 @ 13896369 n 0000 + 02038145 v 0101 + 00432061 v 0101 | a depression in an otherwise level surface; "there was a dip in the road" -13904665 25 n 01 cup 0 001 @ 13864965 n 0000 | any cup-shaped concavity; "bees filled the waxen cups with honey"; "he wore a jock strap with a metal cup"; "the cup of her bra" -13904843 25 n 05 incision 0 scratch 0 prick 0 slit 0 dent 0 009 @ 13896369 n 0000 + 01279631 v 0502 + 01558883 v 0401 + 01559055 v 0401 + 01440801 v 0302 + 01309143 v 0201 + 00802020 a 0101 + 01555742 v 0101 ~ 13905405 n 0000 | a depression scratched or carved into a surface -13905121 25 n 02 incisure 0 incisura 0 004 @ 13905275 n 0000 ;c 06057539 n 0000 + 01555742 v 0101 ~ 05233741 n 0000 | (anatomy) a notch or small hollow -13905275 25 n 01 notch 0 003 @ 13908021 n 0000 + 01276970 v 0101 ~ 13905121 n 0000 | a V-shaped indentation; "mandibular notch" -13905405 25 n 02 score 0 scotch 0 003 @ 13904843 n 0000 + 01276080 v 0201 + 01275762 v 0101 | a slight surface cut (especially a notch that is made to keep a tally) -13905572 25 n 02 sag 0 droop 0 007 @ 13896369 n 0000 + 02403944 a 0202 + 00469637 v 0202 + 02717701 v 0201 + 01985524 v 0202 + 01985757 v 0101 + 01985524 v 0101 | a shape that sags; "there was a sag in the chair seat" -13905792 25 n 06 wrinkle 0 furrow 0 crease 1 crinkle 0 seam 1 line 1 020 @ 13896369 n 0000 #p 05238282 n 0000 + 01276361 v 0601 + 00911762 a 0402 + 00564857 v 0405 + 01278427 v 0404 + 00564857 v 0304 + 01277784 v 0303 + 01278427 v 0303 + 01277784 v 0201 + 01277784 v 0102 + 01279305 v 0102 + 01278427 v 0101 + 00564857 v 0103 ~ 13906345 n 0000 ~ 13906484 n 0000 ~ 13906669 n 0000 ~ 13906767 n 0000 ~ 13906936 n 0000 ~ 13907104 n 0000 | a slight depression in the smoothness of a surface; "his face has many lines"; "ironing gets rid of most wrinkles" -13906345 25 n 03 crow's_foot 0 crow's_feet 0 laugh_line 0 001 @ 13905792 n 0000 | a wrinkle in the skin at the outer corner of your eyes -13906484 25 n 01 dermatoglyphic 0 001 @ 13905792 n 0000 | the lines that form patterns on the skin (especially on the fingertips and the palms of the hands and the soles of the feet) -13906669 25 n 01 frown_line 0 001 @ 13905792 n 0000 | a facial wrinkle associated with frowning -13906767 25 n 03 line_of_life 0 life_line 0 lifeline 0 001 @ 13905792 n 0000 | a crease on the palm; its length is said by palmists to indicate how long you will live -13906936 25 n 04 line_of_heart 0 heart_line 0 love_line 0 mensal_line 0 001 @ 13905792 n 0000 | a crease on the palm; palmists say it indicates your emotional nature -13907104 25 n 03 line_of_fate 0 line_of_destiny 0 line_of_Saturn 0 001 @ 13905792 n 0000 | a crease on the palm; palmists say it indicates how successful you will be -13907272 25 n 05 crevice 0 cranny 1 crack 0 fissure 0 chap 0 002 @ 13896369 n 0000 + 00336922 v 0401 | a long narrow depression in a surface -13907415 25 n 06 fold 0 crease 2 plication 0 flexure 0 crimp 0 bend 1 010 @ 13864763 n 0000 + 02035919 v 0601 + 01280014 v 0602 + 01457206 v 0501 + 02035919 v 0402 + 01217780 v 0302 + 01277974 v 0101 ~ 03965907 n 0000 ~ 13877918 n 0000 ~ 13907847 n 0000 | an angular or rounded shape made by folding; "a fold in the napkin"; "a crease in his trousers"; "a plication on her blouse"; "a flexure of the colon"; "a bend of his elbow" -13907847 25 n 02 pucker 0 ruck 0 004 @ 13907415 n 0000 + 01279015 v 0202 + 01279015 v 0101 + 01330822 v 0102 | an irregular fold in an otherwise even surface (as in cloth) -13908021 25 n 02 indentation 0 indenture 0 004 @ 13864965 n 0000 ~ 03832405 n 0000 ~ 13905275 n 0000 ~ 13908201 n 0000 | a concave cut into a surface or edge (as in a coastline) -13908201 25 n 01 cleft 0 003 @ 13908021 n 0000 + 01556572 v 0101 + 01558681 v 0101 | a split or indentation in something (as the palate or chin) -13908348 25 n 02 stria 0 striation 0 003 @ 13893786 n 0000 + 00508933 v 0201 + 00508933 v 0101 | any of a number of tiny parallel grooves such as: the scratches left by a glacier on rocks or the streaks or ridges in muscle tissue -13908580 25 n 02 roulette 0 line_roulette 0 004 @ 13867641 n 0000 ~ 13908777 n 0000 ~ 13909488 n 0000 ~ 13909752 n 0000 | a line generated by a point on one figure rolling around a second figure -13908777 25 n 01 cycloid 0 004 @ 13908580 n 0000 + 02045620 a 0102 ~ 13908954 n 0000 ~ 13909071 n 0000 | a line generated by a point on a circle rolling along a straight line -13908954 25 n 01 curate_cycloid 0 001 @ 13908777 n 0000 | a cycloid generated by a point inside the rolling circle -13909071 25 n 01 prolate_cycloid 0 001 @ 13908777 n 0000 | a cycloid generated by a point outside the rolling circle -13909190 25 n 02 sine_curve 0 sinusoid 0 002 @ 13868944 n 0000 + 02317145 a 0201 | the curve of y=sin x -13909296 25 n 01 epicycle 0 003 @ 13873502 n 0000 + 02940115 a 0101 + 02940115 a 0102 | a circle that rolls around (inside or outside) another circle; generates an epicycloid or hypocycloid -13909488 25 n 01 epicycloid 0 002 @ 13908580 n 0000 ~ 13909632 n 0000 | a line generated by a point on a circle rolling around another circle -13909632 25 n 01 cardioid 0 001 @ 13909488 n 0000 | an epicycloid in which the rolling circle equals the fixed circle -13909752 25 n 01 hypocycloid 0 001 @ 13908580 n 0000 | a line generated by a point on a circle that rolls around inside another circle -13909889 25 n 01 shapelessness 0 002 @ 13867492 n 0000 + 02151837 a 0103 | an amorphous or indefinite shape; "a shapeless mass" -13910019 25 n 01 blob 0 002 @ 13867492 n 0000 + 01531998 v 0103 | an indistinct shapeless form -13910116 25 n 04 void 0 vacancy 0 emptiness 0 vacuum 0 004 @ 13910384 n 0000 + 01087977 a 0201 + 01088351 a 0101 + 00450303 v 0101 | an empty area or space; "the huge desert voids"; "the emptiness of outer space"; "without their support he'll be ruling in a vacuum" -13910384 25 n 01 space 0 016 @ 13867492 n 0000 @ 00027167 n 0000 + 01988080 v 0101 ~ 03080309 n 0000 ~ 03130340 n 0000 ~ 05388665 n 0000 ~ 05482922 n 0000 ~ 09273291 n 0000 ~ 09277538 n 0000 ~ 09379111 n 0000 ~ 13778907 n 0000 ~ 13887509 n 0000 ~ 13910116 n 0000 ~ 13911429 n 0000 ~ 13911517 n 0000 ~ 13911660 n 0000 | an empty area (usually bounded in some way between things); "the architect left space in front of the building"; "they stopped at an open space in the jungle"; "the space between his teeth" -13910895 25 n 01 hollow 2 002 @ 13911517 n 0000 + 02263982 a 0101 | a cavity or space in something; "hunger had caused the hollows in their cheeks" -13911045 25 n 01 node 2 001 @ 13870805 n 0000 | a connecting point at which several lines come together -13911151 25 n 05 articulation 0 join 0 joint 0 juncture 0 junction 0 007 @ 13870805 n 0000 + 02622234 v 0404 + 01604696 v 0301 + 02354287 v 0301 + 02660147 v 0301 + 02354287 v 0102 ~ 05571341 n 0000 | the shape or manner in which things come together and a connection is made -13911429 25 n 01 hole 0 002 @ 13910384 n 0000 ~ 13912115 n 0000 | an unoccupied space -13911517 25 n 02 cavity 0 enclosed_space 0 003 @ 13910384 n 0000 ~ 13910895 n 0000 ~ 13914473 n 0000 | space that is surrounded by something -13911660 25 n 01 pocket 2 002 @ 13910384 n 0000 ;c 00461782 n 0000 | (bowling) the space between the headpin and the pins behind it on the right or left; "the ball hit the pocket and gave him a perfect strike" -13911872 25 n 02 point 2 dot 0 007 @ 13875185 n 0000 + 00507913 v 0201 + 00998294 v 0201 + 02689882 v 0201 + 01589056 v 0101 + 01589224 v 0101 + 01589363 v 0101 | a very small circular shape; "a row of points"; "draw lines between the dots" -13912115 25 n 01 pore 0 003 @ 13911429 n 0000 + 01397998 a 0102 + 00329396 a 0102 | any tiny hole admitting passage of a liquid (fluid or gas) -13912260 25 n 02 tree 0 tree_diagram 0 003 @ 13863186 n 0000 ~ 13912424 n 0000 ~ 13912540 n 0000 | a figure that branches from a single root; "genealogical tree" -13912424 25 n 01 cladogram 0 001 @ 13912260 n 0000 | a tree diagram used to illustrate phylogenetic relationships -13912540 25 n 01 stemma 0 001 @ 13912260 n 0000 | a tree diagram showing a reconstruction of the transmission of manuscripts of a literary work -13912686 25 n 01 thalweg 0 001 @ 13903079 n 0000 | the middle of the chief navigable channel of a waterway that forms the boundary line between states -13912839 25 n 03 spur 0 spine 0 acantha 0 004 @ 13919685 n 0000 + 01810011 a 0302 + 01810011 a 0203 + 01241490 v 0101 | any sharply pointed projection -13912992 25 n 03 constriction 0 bottleneck 0 chokepoint 0 003 @ 05071027 n 0000 + 00304946 v 0201 + 00304422 v 0101 | a narrowing that reduces the flow through a channel -13913164 25 n 01 facet 0 001 @ 13863602 n 0000 | a smooth surface (as of a bone or cut gemstone) -13913263 25 n 01 vector 0 002 @ 13869991 n 0000 ~ 13913427 n 0000 | a straight line segment whose length is magnitude and whose orientation in space is direction -13913427 25 n 01 ray 0 003 @ 13913263 n 0000 ;c 06000644 n 0000 + 02686952 v 0102 | (mathematics) a straight line extending from a point -13913566 25 n 04 cast 0 mold 0 mould 0 stamp 0 007 @ 13860793 n 0000 + 01624568 v 0401 + 02144644 v 0401 + 01659248 v 0204 + 01662771 v 0202 + 01697027 v 0202 + 00981276 v 0103 | the distinctive form in which a thing is made; "pottery of this cast was found throughout the region" -13913849 25 n 03 branch 0 leg 0 ramification 0 009 @ 13863602 n 0000 #p 13886724 n 0000 + 00329244 v 0301 + 00328802 v 0302 + 00613068 a 0101 + 00328802 v 0101 ~ 13887056 n 0000 ~ 13914141 n 0000 ~ 13914265 n 0000 | a part of a forked or branching shape; "he broke off one of the branches" -13914141 25 n 01 brachium 0 002 @ 13913849 n 0000 ;c 06037666 n 0000 | (biology) a branching or armlike part of an animal -13914265 25 n 02 fork 0 crotch 0 002 @ 13913849 n 0000 + 00141914 v 0101 | the region of the angle formed by the junction of two branches; "they took the south fork"; "he climbed into the crotch of a tree" -13914473 25 n 04 pouch 0 sac 0 sack 0 pocket 0 001 @ 13911517 n 0000 | an enclosed space; "the trapped miners found a pocket of air" -13914608 25 n 02 block 1 cube 1 007 @ 13860793 n 0000 + 00657804 a 0206 + 00657804 a 0203 + 01256867 v 0201 + 00657473 a 0102 + 00477528 v 0101 ~ 03444268 n 0000 | a three-dimensional shape with six square or rectangular sides -13914837 25 n 01 pyramid 0 004 @ 13883885 n 0000 + 01810998 a 0101 + 01810998 a 0103 + 01466047 v 0101 | a polyhedron having a polygonal base and triangular sides with a common vertex -13915023 25 n 01 ovoid 0 002 @ 13860793 n 0000 + 02046199 a 0108 | an egg-shaped object -13915113 25 n 01 tetrahedron 0 001 @ 13883885 n 0000 | any polyhedron having four plane faces -13915209 25 n 01 pentahedron 0 001 @ 13883885 n 0000 | any polyhedron having five plane faces -13915305 25 n 01 hexahedron 0 002 @ 13883885 n 0000 ~ 13915417 n 0000 | any polyhedron having six plane faces -13915417 25 n 01 rhombohedron 0 003 @ 13884740 n 0000 @ 13915305 n 0000 + 02373467 a 0101 | a parallelepiped bounded by six similar faces (either rhombuses or parallelograms) -13915594 25 n 01 octahedron 0 001 @ 13883885 n 0000 | any polyhedron having eight plane faces -13915690 25 n 01 decahedron 0 001 @ 13883885 n 0000 | any polyhedron having ten plane faces -13915784 25 n 01 dodecahedron 0 001 @ 13883885 n 0000 | any polyhedron having twelve plane faces -13915883 25 n 01 icosahedron 0 002 @ 13883885 n 0000 + 02851944 a 0101 | any polyhedron having twenty plane faces -13915999 25 n 06 regular_polyhedron 0 regular_convex_solid 0 regular_convex_polyhedron 0 Platonic_body 0 Platonic_solid 0 ideal_solid 0 006 @ 13883885 n 0000 ~ 13916603 n 0000 ~ 13916721 n 0000 ~ 13917094 n 0000 ~ 13917214 n 0000 ~ 13917334 n 0000 | any one of five solids whose faces are congruent regular polygons and whose polyhedral angles are all congruent -13916363 25 n 01 polyhedral_angle 0 001 @ 13887509 n 0000 | the space enclosed by three or more planes that intersect in a vertex -13916495 25 n 01 face_angle 0 001 @ 13887509 n 0000 | the angle formed by two edges of a polyhedral angle -13916603 25 n 01 regular_tetrahedron 0 001 @ 13915999 n 0000 | a tetrahedron with four equilateral triangular faces -13916721 25 n 02 cube 0 regular_hexahedron 0 006 @ 13915999 n 0000 + 00657804 a 0106 + 00657804 a 0103 + 01256867 v 0101 ~ 13916927 n 0000 ~ 13917022 n 0000 | a hexahedron with six equal squares as faces -13916927 25 n 01 tesseract 0 001 @ 13916721 n 0000 | the four-dimensional analogue of a cube -13917022 25 n 01 quadrate 2 001 @ 13916721 n 0000 | a cubelike object -13917094 25 n 01 regular_dodecahedron 0 001 @ 13915999 n 0000 | a dodecahedron with twelve regular pentagons as faces -13917214 25 n 01 regular_octahedron 0 001 @ 13915999 n 0000 | an octahedron with eight equilateral triangles as faces -13917334 25 n 01 regular_icosahedron 0 001 @ 13915999 n 0000 | an icosahedron with twenty equilateral triangles as faces -13917457 25 n 01 frustum 0 003 @ 13860793 n 0000 ~ 13917690 n 0000 ~ 13917785 n 0000 | a truncated cone or pyramid; the part that is left when a cone or pyramid is cut by a plane parallel to the base and the apical part is removed -13917690 25 n 01 truncated_pyramid 0 001 @ 13917457 n 0000 | a frustum formed from a pyramid -13917785 25 n 01 truncated_cone 0 001 @ 13917457 n 0000 | a frustum formed from a cone -13917874 25 n 01 prismatoid 0 002 @ 13883885 n 0000 ~ 13918095 n 0000 | a polyhedron whose vertices all lie in one or the other of two parallel planes; the faces that lie in those planes are the bases of the prismatoid -13918095 25 n 01 prismoid 0 001 @ 13917874 n 0000 | a prismatoid whose bases are polygons having the same number of sides and whose other faces are trapezoids or parallelograms -13918274 25 n 02 tail 0 tail_end 0 001 @ 13919685 n 0000 | any projection that resembles the tail of an animal -13918387 25 n 02 tongue 0 knife 0 001 @ 13919685 n 0000 | any long thin projection that is transient; "tongues of flame licked at the walls"; "rifles exploded quick knives of fire into the dark" -13918584 25 n 01 tilt_angle 0 001 @ 13887509 n 0000 | the angle a rocket makes with the vertical as it curves along its trajectory -13918717 25 n 01 trapezohedron 0 001 @ 13883885 n 0000 | a polyhedron whose faces are trapeziums -13918816 25 n 01 vertical_angle 0 001 @ 13887509 n 0000 | either of two equal and opposite angles formed by the intersection of two straight lines -13918965 25 n 01 verticil 0 001 @ 13875970 n 0000 | a whorl of leaves growing around a stem -13919059 25 n 02 view_angle 0 angle_of_view 0 001 @ 13887509 n 0000 | the angle included by a photographic lens -13919173 25 n 01 washout 0 001 @ 13893786 n 0000 | the channel or break produced by erosion of relatively soft soil by water; "it was several days after the storm before they could repair the washout and open the road" -13919394 25 n 01 wave_angle 0 001 @ 13887509 n 0000 | the angle of arrival (or departure) of a radio wave with respect to the axis of an antenna array -13919547 25 n 03 wedge 0 wedge_shape 0 cuneus 0 002 @ 13879320 n 0000 + 01527271 v 0101 | any shape that is triangular in cross section -13919685 25 n 01 projection 0 008 @ 13864153 n 0000 ~ 08594886 n 0000 ~ 09320826 n 0000 ~ 13894434 n 0000 ~ 13912839 n 0000 ~ 13918274 n 0000 ~ 13918387 n 0000 ~ 13919919 n 0000 | any solid convex shape that juts out from something -13919919 25 n 01 keel 0 001 @ 13919685 n 0000 | a projection or ridge that suggests a keel -13920012 26 n 01 cleavage 0 001 @ 00024720 n 0000 | the state of being split or cleft; "there was a cleavage between the liberal and conservative members" -13920169 26 n 01 medium 0 002 @ 00024720 n 0000 + 00331030 a 0102 | a state that is intermediate between extremes; a middle position; "a happy medium" -13920322 26 n 01 ornamentation 0 002 @ 00024720 n 0000 + 02749247 v 0101 | the state of being ornamented -13920429 26 n 01 condition 1 016 @ 00024720 n 0000 ~ 13939158 n 0000 ~ 13942743 n 0000 ~ 14062332 n 0000 ~ 14065412 n 0000 ~ 14194345 n 0000 ~ 14473222 n 0000 ~ 14570581 n 0000 ~ 14570676 n 0000 ~ 14570761 n 0000 ~ 14570846 n 0000 ~ 14570939 n 0000 ~ 14571028 n 0000 ~ 14571181 n 0000 ~ 14571930 n 0000 ~ 14572074 n 0000 | a mode of being or form of existence of a person or thing; "the human condition" -13920835 26 n 02 condition 0 status 1 113 @ 00024720 n 0000 + 00207418 v 0101 ~ 04735711 n 0000 ~ 13923582 n 0000 ~ 13923779 n 0000 ~ 13923929 n 0000 ~ 13924336 n 0000 ~ 13924536 n 0000 ~ 13924659 n 0000 ~ 13924863 n 0000 ~ 13925015 n 0000 ~ 13925188 n 0000 ~ 13925550 n 0000 ~ 13925752 n 0000 ~ 13926068 n 0000 ~ 13926535 n 0000 ~ 13938440 n 0000 ~ 13938663 n 0000 ~ 13938899 n 0000 ~ 13939604 n 0000 ~ 13942875 n 0000 ~ 13943053 n 0000 ~ 13944914 n 0000 ~ 13947867 n 0000 ~ 13967507 n 0000 ~ 13967581 n 0000 ~ 13989627 n 0000 ~ 13990064 n 0000 ~ 13990675 n 0000 ~ 13998395 n 0000 ~ 14002109 n 0000 ~ 14034177 n 0000 ~ 14076809 n 0000 ~ 14077693 n 0000 ~ 14087321 n 0000 ~ 14213328 n 0000 ~ 14373582 n 0000 ~ 14408086 n 0000 ~ 14422179 n 0000 ~ 14422488 n 0000 ~ 14433505 n 0000 ~ 14441825 n 0000 ~ 14445379 n 0000 ~ 14446652 n 0000 ~ 14449126 n 0000 ~ 14451911 n 0000 ~ 14455206 n 0000 ~ 14456138 n 0000 ~ 14457218 n 0000 ~ 14457838 n 0000 ~ 14483620 n 0000 ~ 14486274 n 0000 ~ 14486767 n 0000 ~ 14487184 n 0000 ~ 14488317 n 0000 ~ 14488594 n 0000 ~ 14494716 n 0000 ~ 14496063 n 0000 ~ 14496710 n 0000 ~ 14499262 n 0000 ~ 14500908 n 0000 ~ 14506920 n 0000 ~ 14516501 n 0000 ~ 14524661 n 0000 ~ 14524849 n 0000 ~ 14526764 n 0000 ~ 14527171 n 0000 ~ 14529835 n 0000 ~ 14530061 n 0000 ~ 14534696 n 0000 ~ 14536438 n 0000 ~ 14538472 n 0000 ~ 14540765 n 0000 ~ 14544335 n 0000 ~ 14545845 n 0000 ~ 14546042 n 0000 ~ 14546701 n 0000 ~ 14546844 n 0000 ~ 14551986 n 0000 ~ 14555414 n 0000 ~ 14560360 n 0000 ~ 14563475 n 0000 ~ 14563564 n 0000 ~ 14563784 n 0000 ~ 14563928 n 0000 ~ 14568621 n 0000 ~ 14574349 n 0000 ~ 14574504 n 0000 ~ 14574675 n 0000 ~ 14574846 n 0000 ~ 14575063 n 0000 ~ 14575180 n 0000 ~ 14575399 n 0000 ~ 14575531 n 0000 ~ 14575700 n 0000 ~ 14575849 n 0000 ~ 14576053 n 0000 ~ 14577046 n 0000 ~ 14577331 n 0000 ~ 14577469 n 0000 ~ 14577753 n 0000 ~ 14577872 n 0000 ~ 14578104 n 0000 ~ 14578302 n 0000 ~ 14578471 n 0000 ~ 14578634 n 0000 ~ 14578940 n 0000 ~ 14579063 n 0000 ~ 14579215 n 0000 ~ 14579365 n 0000 ~ 14579489 n 0000 ~ 14580090 n 0000 ~ 14580334 n 0000 | a state at a particular time; "a condition (or state) of disrepair"; "the current status of the arms negotiations" -13923030 26 n 01 conditions 3 002 @ 14512817 n 0000 ;u 06295235 n 0000 | the set of circumstances that affect someone's welfare; "hazardous working conditions"; "harsh living conditions" -13923219 26 n 01 conditions 4 002 @ 14512817 n 0000 ;u 06295235 n 0000 | the prevailing context that influences the performance or the outcome of a process; "there were wide variations in the conditions of observation" -13923440 26 n 01 condition 5 001 @ 14061805 n 0000 | an illness, disease, or other medical problem; "a heart condition"; "a skin condition" -13923582 26 n 01 anchorage 0 001 @ 13920835 n 0000 | the condition of being secured to a base; "the plant needs a firm anchorage"; "the mother provides emotional anchorage for the entire family" -13923779 26 n 01 health 1 002 @ 13920835 n 0000 + 01170243 a 0101 | the general condition of body and mind; "his delicate health"; "in poor health" -13923929 26 n 01 mode 0 001 @ 13920835 n 0000 | a particular functioning condition or arrangement; "switched from keyboard to voice mode" -13924069 26 n 01 conditionality 0 003 @ 00024720 n 0000 + 01913413 a 0101 + 00555325 a 0101 | the state of being conditional -13924196 26 n 01 ground_state 0 002 @ 00024720 n 0000 ;c 06090869 n 0000 | (physics) the lowest energy state of an atom or other particle -13924336 26 n 02 niche 1 ecological_niche 0 002 @ 13920835 n 0000 ;c 06070929 n 0000 | (ecology) the status of an organism within its environment and community (affecting its survival as a species) -13924536 26 n 01 noise_conditions 0 001 @ 13920835 n 0000 | the condition of being noisy (as in a communication channel) -13924659 26 n 02 participation 0 involvement 1 004 @ 13920835 n 0000 + 02677567 v 0201 + 02450256 v 0101 + 01082606 v 0102 | the condition of sharing in common with others (as fellows or partners etc.) -13924863 26 n 01 prepossession 0 001 @ 13920835 n 0000 | the condition of being prepossessed; "the king's prepossession in my favor is very valuable" -13925015 26 n 02 regularization 0 regularisation 0 003 @ 13920835 n 0000 + 00275607 v 0202 + 00275607 v 0101 | the condition of having been made regular (or more regular) -13925188 26 n 01 saturation 0 002 @ 13920835 n 0000 ~ 13925340 n 0000 | a condition in which a quantity no longer responds to some external influence -13925340 26 n 01 saturation_point 0 003 @ 13925188 n 0000 ;c 06084469 n 0000 ~ 05013642 n 0000 | (chemistry) the stage at which a substance will receive no more of another substance in solution or in a vapor -13925550 26 n 01 silence 0 003 @ 13920835 n 0000 + 01919428 a 0101 + 00461493 v 0103 | the state of being silent (as when no one is speaking); "there was a shocked silence"; "he gestured for silence" -13925752 26 n 02 situation 1 position 2 005 @ 13920835 n 0000 ~ 13926786 n 0000 ~ 13926932 n 0000 ~ 13927112 n 0000 ~ 13927231 n 0000 | a condition or position in which you find yourself; "the unpleasant situation (or position) of having to choose between two evils"; "found herself in a very fortunate situation" -13926068 26 n 01 ski_conditions 0 001 @ 13920835 n 0000 | the amount and state of snow for skiing -13926168 26 n 01 niche 0 001 @ 13947645 n 0000 | a position particularly well suited to the person who occupies it; "he found his niche in the academic world" -13926329 26 n 01 election 0 001 @ 13945919 n 0000 | the status or fact of being elected; "they celebrated his election" -13926451 26 n 01 nationhood 0 001 @ 00024720 n 0000 | the state of being a nation -13926535 26 n 01 nomination 0 002 @ 13920835 n 0000 + 00879540 v 0101 | the condition of having been proposed as a suitable candidate for appointment or election; "there was keen competition for the nomination"; "his nomination was hotly protested" -13926786 26 n 02 place 1 shoes 0 002 @ 13925752 n 0000 + 02392762 v 0101 | a particular situation; "If you were in my place what would you do?" -13926932 26 n 01 poverty_trap 0 002 @ 13925752 n 0000 ;r 08860123 n 0000 | a situation in which an increase in income results in a loss of benefits so that you are no better off -13927112 26 n 01 soup 0 002 @ 13925752 n 0000 ;u 07075172 n 0000 | an unfortunate situation; "we're in the soup now" -13927231 26 n 02 stymie 0 stymy 0 001 @ 13925752 n 0000 | a situation in golf where an opponent's ball blocks the line between your ball and the hole -13927383 26 n 02 situation 0 state_of_affairs 0 024 @ 00024720 n 0000 ~ 13928191 n 0000 ~ 13932421 n 0000 ~ 13932739 n 0000 ~ 13932948 n 0000 ~ 13933103 n 0000 ~ 13933221 n 0000 ~ 13933841 n 0000 ~ 13934274 n 0000 ~ 13934465 n 0000 ~ 13934596 n 0000 ~ 13934900 n 0000 ~ 13935227 n 0000 ~ 13935400 n 0000 ~ 13935753 n 0000 ~ 13936304 n 0000 ~ 13936441 n 0000 ~ 13937075 n 0000 ~ 13937284 n 0000 ~ 13937554 n 0000 ~ 13937727 n 0000 ~ 13937918 n 0000 ~ 13938210 n 0000 ~ 13943968 n 0000 | the general state of things; the combination of circumstances at a given time; "the present international situation is dangerous"; "wondered how such a state of affairs had come about"; "eternal truths will be neither true nor eternal unless they have fresh meaning for every new social situation"- Franklin D.Roosevelt -13928191 26 n 02 absurd 0 the_absurd 0 001 @ 13927383 n 0000 | a situation in which life seems irrational and meaningless; "The absurd is the essential concept and the first truth"--Albert Camus -13928388 26 n 01 relationship 0 006 @ 00024720 n 0000 + 10235549 n 0102 + 00031921 n 0101 ~ 13930725 n 0000 ~ 13931436 n 0000 ~ 13931765 n 0000 | a state of connectedness between people (especially an emotional connection); "he didn't want his wife to know of the relationship" -13928668 26 n 01 relationship 1 009 @ 00024720 n 0000 + 00040962 n 0101 ~ 13929037 n 0000 ~ 13930245 n 0000 ~ 13930385 n 0000 ~ 13930928 n 0000 ~ 13931145 n 0000 ~ 13931627 n 0000 ~ 13996300 n 0000 | a state involving mutual dealings between people or parties or countries -13928943 26 n 01 tribalism 0 001 @ 00024720 n 0000 | the state of living together in tribes -13929037 26 n 02 account 0 business_relationship 0 004 @ 13928668 n 0000 ~ 13351457 n 0000 ~ 13359690 n 0000 ~ 13929336 n 0000 | a formal contractual relationship established to provide for regular banking or brokerage or business services; "he asked to see the executive who handled his account" -13929336 26 n 01 short_account 0 001 @ 13929037 n 0000 | a brokerage account of someone who sells short (sells securities he does not own) -13929477 26 n 01 blood_brotherhood 0 001 @ 13931145 n 0000 | the friendship characteristic of blood brothers -13929588 26 n 04 company 0 companionship 0 fellowship 0 society 0 005 @ 13931145 n 0000 + 09945905 n 0303 + 09946278 n 0201 + 09945905 n 0201 ~ 13930073 n 0000 | the state of being with someone; "he missed their company"; "he enjoyed the society of his friends" -13929852 26 n 02 confidence 3 trust 0 005 @ 13931145 n 0000 + 02464693 a 0202 + 02349212 v 0203 + 01859801 a 0101 + 02349212 v 0104 | a trustful relationship; "he took me into his confidence"; "he betrayed their trust" -13930073 26 n 01 freemasonry 0 001 @ 13929588 n 0000 | a natural or instinctive fellowship between people of similar interests; "he enjoyed the freemasonry of the Press" -13930245 26 n 02 acquaintance 0 acquaintanceship 0 002 @ 13928668 n 0000 + 09763784 n 0201 | a relationship less intimate than friendship -13930385 26 n 04 affiliation 0 association 0 tie 1 tie-up 0 005 @ 13928668 n 0000 + 02538086 v 0302 + 00234217 v 0301 + 02470175 v 0202 + 02435311 v 0101 | a social or business relationship; "a valuable financial affiliation"; "he was sorry he had to sever his ties with other members of the team"; "many close associations with England" -13930725 26 n 01 anaclisis 0 002 @ 13928388 n 0000 ;c 00704305 n 0000 | (psychoanalysis) relationship marked by strong dependence on others; especially a libidinal attachment to e.g. a parental figure -13930928 26 n 01 assimilation 0 003 @ 13928668 n 0000 + 00160261 v 0101 + 00159642 v 0101 | the state of being assimilated; people of different backgrounds come to see themselves as part of a larger national family -13931145 26 n 02 friendship 0 friendly_relationship 0 006 @ 13928668 n 0000 + 09763784 n 0102 + 10112591 n 0101 ~ 13929477 n 0000 ~ 13929588 n 0000 ~ 13929852 n 0000 | the state of being friends (or friendly) -13931356 26 n 01 intrigue 0 001 @ 13931436 n 0000 | a clandestine love affair -13931436 26 n 02 love_affair 0 romance 0 006 @ 13928388 n 0000 + 01465214 a 0203 + 01037910 v 0207 + 01775782 v 0201 + 02534492 v 0203 ~ 13931356 n 0000 | a relationship between two lovers -13931627 26 n 01 membership 0 004 @ 13928668 n 0000 + 13810615 n 0101 + 10307234 n 0101 + 08170686 n 0101 | the state of being a member -13931765 26 n 01 sexual_relationship 0 002 @ 13928388 n 0000 ~ 13931889 n 0000 | a relationship involving sexual intimacy -13931889 26 n 06 affair 0 affaire 0 intimacy 0 liaison 0 involvement 0 amour 0 001 @ 13931765 n 0000 | a usually secretive or illicit sexual relationship -13932045 26 n 01 utopia 0 003 @ 00024720 n 0000 + 02497938 a 0101 ! 13932213 n 0101 | ideally perfect state; especially in its social and political and moral aspects -13932213 26 n 01 dystopia 0 004 @ 00024720 n 0000 + 03020075 a 0101 + 02498507 a 0101 ! 13932045 n 0101 | state in which the conditions of life are extremely bad as from deprivation or oppression or terror -13932421 26 n 01 acceptance 0 010 @ 13927383 n 0000 + 00719231 v 0101 ! 13937554 n 0101 ~ 14411884 n 0000 ~ 14411981 n 0000 ~ 14412374 n 0000 ~ 14412725 n 0000 ~ 14412882 n 0000 ~ 14413162 n 0000 ~ 14413265 n 0000 | the state of being acceptable and accepted; "torn jeans received no acceptance at the country club" -13932739 26 n 02 ballgame 0 new_ballgame 0 001 @ 13927383 n 0000 | a particular situation that is radically different from the preceding situation; "HDTV looks the same but it's really a whole new ballgame" -13932948 26 n 01 challenge 0 001 @ 13927383 n 0000 | a demanding or stimulating situation; "they reacted irrationally to the challenge of Russian power" -13933103 26 n 01 childlessness 0 002 @ 13927383 n 0000 + 01082998 a 0101 | the condition of being without offspring -13933221 26 n 01 complication 0 002 @ 13927383 n 0000 + 00402539 v 0101 | a situation or condition that is complex or confused; "her coming was a serious complication" -13933391 26 n 01 conflict_of_interest 0 001 @ 14411243 n 0000 | a situation in which a public official's decisions are influenced by the official's personal interests -13933560 26 n 01 crisis 0 008 @ 14411243 n 0000 + 00656132 a 0101 = 00650577 a 0000 = 00651697 a 0000 ~ 14032868 n 0000 ~ 14033054 n 0000 ~ 14033185 n 0000 ~ 14489113 n 0000 | an unstable situation of extreme danger or difficulty; "they went bankrupt during the economic crisis" -13933841 26 n 01 crowding 0 005 @ 13927383 n 0000 + 02649305 v 0101 + 02028722 v 0102 + 02027612 v 0101 ~ 13944747 n 0000 | a situation in which people or things are crowded together; "he didn't like the crowding on the beach" -13934070 26 n 01 crunch 0 001 @ 14411243 n 0000 | a critical situation that arises because of a shortage (as a shortage of time or money or resources); "an end-of-the year crunch"; "a financial crunch" -13934274 26 n 01 disequilibrium 0 003 @ 13927383 n 0000 ! 13934900 n 0101 ~ 14004149 n 0000 | loss of equilibrium attributable to an unstable situation in which some forces outweigh others -13934465 26 n 01 element 0 001 @ 13927383 n 0000 | the situation in which you are happiest and most effective; "in your element" -13934596 26 n 01 environment 0 009 @ 13927383 n 0000 + 02943303 a 0101 ~ 14512817 n 0000 ~ 14513062 n 0000 ~ 14513259 n 0000 ~ 14513694 n 0000 ~ 14513944 n 0000 ~ 14514039 n 0000 ~ 14516256 n 0000 | the totality of surrounding conditions; "he longed for the comfortable environment of his living room" -13934900 26 n 01 equilibrium 0 013 @ 13927383 n 0000 + 02673134 v 0102 + 00136800 v 0101 + 02673134 v 0103 ! 13934274 n 0101 ~ 14002279 n 0000 ~ 14002813 n 0000 ~ 14002915 n 0000 ~ 14003167 n 0000 ~ 14003432 n 0000 ~ 14003599 n 0000 ~ 14003880 n 0000 ~ 14004017 n 0000 | a stable situation in which forces cancel one another -13935227 26 n 01 exclusion 0 006 @ 13927383 n 0000 + 02449340 v 0101 + 00796588 v 0103 ! 13936304 n 0101 ~ 14427633 n 0000 ~ 14427991 n 0000 | the state of being excluded -13935400 26 n 03 goldfish_bowl 0 fish_bowl 0 fishbowl 0 001 @ 13927383 n 0000 | a state of affairs in which you have no privacy; "the president lives in a goldfish bowl" -13935572 26 n 02 hornet's_nest 0 hornets'_nest 0 001 @ 14411243 n 0000 | a highly contentious or hazardous situation; "talk of invading Iraq stirred up a political hornets' nest" -13935753 26 n 01 hotbed 0 001 @ 13927383 n 0000 | a situation that is ideal for rapid development (especially of something bad); "it was a hotbed of vice" -13935910 26 n 01 hot_potato 0 001 @ 14411243 n 0000 | a difficult situation; "he dropped the topic like a hot potato" -13936030 26 n 02 how-do-you-do 0 how-d'ye-do 0 001 @ 14411243 n 0000 | an awkward situation; "that's a fine how-d'ye-do" -13936153 26 n 02 imbroglio 0 embroilment 0 002 @ 14411243 n 0000 + 02677797 v 0201 | an intricate and confusing interpersonal or political situation -13936304 26 n 01 inclusion 0 004 @ 13927383 n 0000 ! 13935227 n 0101 ~ 14427408 n 0000 ~ 14427537 n 0000 | the state of being included -13936441 26 n 01 intestacy 0 001 @ 13927383 n 0000 | the situation of being or dying without a legally valid will -13936557 26 n 01 Mexican_standoff 0 001 @ 14411243 n 0000 | a situation in which no one can emerge as a clear winner -13936676 26 n 02 nightmare 0 incubus 0 001 @ 14411243 n 0000 | a situation resembling a terrifying dream -13936783 26 n 01 no-win_situation 0 001 @ 14411243 n 0000 | a situation in which a favorable outcome is impossible; you are bound to lose whatever you do -13936939 26 n 03 pass 0 strait 0 straits 0 002 @ 14411243 n 0000 ~ 14033481 n 0000 | a bad or difficult situation or state of affairs -13937075 26 n 02 picture 0 scene 0 001 @ 13927383 n 0000 | a situation treated as an observable object; "the political picture is favorable"; "the religious scene in England has changed in the last century" -13937284 26 n 02 prison 0 prison_house 0 001 @ 13927383 n 0000 | a prisonlike situation; a place of seeming confinement -13937406 26 n 01 purgatory 0 002 @ 14411243 n 0000 + 03104988 a 0101 | a temporary condition of torment or suffering; "a purgatory of drug abuse" -13937554 26 n 01 rejection 0 006 @ 13927383 n 0000 ! 13932421 n 0101 ~ 14413411 n 0000 ~ 14413644 n 0000 ~ 14413993 n 0000 ~ 14414146 n 0000 | the state of being rejected -13937727 26 n 02 size 0 size_of_it 0 002 @ 13927383 n 0000 ;u 07075172 n 0000 | the actual state of affairs; "that's the size of the situation"; "she hates me, that's about the size of it" -13937918 26 n 01 square_one 0 001 @ 13927383 n 0000 | the situation in which you begin an endeavor and to which you return if your efforts fail; "the police are now back at square one after having arrested and released 27 men"; "she has tried to diet but always ends up back at square one" -13938210 26 n 01 status_quo 0 001 @ 13927383 n 0000 | the existing state of affairs -13938296 26 n 01 swamp 0 001 @ 14411243 n 0000 | a situation fraught with difficulties and imponderables; "he was trapped in a medical swamp" -13938440 26 n 02 standardization 0 standardisation 0 001 @ 13920835 n 0000 | the condition in which a standard has been successfully established; "standardization of nuts and bolts had saved industry millions of dollars" -13938663 26 n 01 stigmatism 0 004 @ 13920835 n 0000 ;c 06100778 n 0000 + 02621609 a 0102 ! 13938899 n 0101 | (optics) condition of an optical system (as a lens) in which light rays from a single point converge in a single focal point -13938899 26 n 02 astigmatism 1 astigmia 1 005 @ 13920835 n 0000 ;c 06100778 n 0000 + 00108698 a 0201 + 00108698 a 0101 ! 13938663 n 0101 | (optics) defect in an optical system in which light rays from a single point fail to converge in a single focal point -13939158 26 n 02 stratification 0 social_stratification 0 003 @ 13920429 n 0000 + 02513048 v 0101 + 02512808 v 0101 | the condition of being arranged in social strata or classes within a group -13939353 26 n 03 wild 0 natural_state 0 state_of_nature 0 004 @ 00024720 n 0000 + 00412788 a 0106 + 02389220 a 0101 ~ 14472624 n 0000 | a wild primitive state untouched by civilization; "he lived in the wild"; "they collected mushrooms in the wild" -13939604 26 n 01 way 0 001 @ 13920835 n 0000 | the condition of things generally; "that's the way it is"; "I felt the same way" -13939734 26 n 01 isomerism 0 001 @ 00024720 n 0000 | the state of being an isomer; the complex of chemical and physical phenomena characteristic of isomers -13939892 26 n 04 degree 1 level 0 stage 0 point 0 011 @ 00024720 n 0000 ~ 13940311 n 0000 ~ 13940456 n 0000 ~ 13941125 n 0000 ~ 13941337 n 0000 ~ 13941469 n 0000 ~ 13941806 n 0000 ~ 13941924 n 0000 ~ 13942104 n 0000 ~ 14048134 n 0000 ~ 14568516 n 0000 | a specific identifiable position in a continuum or series or especially in a process; "a remarkable degree of frankness"; "at what stage are the social sciences?" -13940311 26 n 01 ladder 0 001 @ 13939892 n 0000 | ascending stages by which somebody or something can progress; "he climbed the career ladder" -13940456 26 n 0a acme 0 height 0 elevation 0 peak 0 pinnacle 0 summit 0 superlative 0 meridian 0 tiptop 0 top 0 008 @ 13939892 n 0000 + 02687385 v 0a02 + 02669081 v 0a06 + 01489557 a 0802 + 02343517 a 0703 + 02008066 v 0402 + 02397637 v 0306 + 00544549 v 0303 | the highest level or degree attainable; the highest stage of development; "his landscapes were deemed the acme of beauty"; "the artist's gifts are at their acme"; "at the height of her career"; "the peak of perfection"; "summer was at its peak"; "...catapulted Einstein to the pinnacle of fame"; "the summit of his ambition"; "so many highest superlatives achieved by man"; "at the top of his profession" -13941125 26 n 01 extent 0 002 @ 13939892 n 0000 + 00540235 v 0103 | the point or degree to which something extends; "the extent of the damage"; "the full extent of the law"; "to a certain extent she was right" -13941337 26 n 02 resultant 0 end_point 0 003 @ 13939892 n 0000 + 00122844 a 0107 + 02634265 v 0101 | the final point in a process -13941469 26 n 02 standard_of_living 0 standard_of_life 0 001 @ 13939892 n 0000 | a level of material comfort in terms of goods and services available to someone or some group; "they enjoyed the highest standard of living in the country"; "the lower the standard of living the easier it is to introduce an autocratic production system" -13941806 26 n 01 plane 0 001 @ 13939892 n 0000 | a level of existence or development; "he lived on a worldly plane" -13941924 26 n 01 state_of_the_art 0 001 @ 13939892 n 0000 | the highest degree of development of an art or technique at a particular time; "the state of the art in space travel" -13942104 26 n 02 ultimacy 0 ultimateness 0 006 @ 13939892 n 0000 + 01013961 a 0201 + 01578312 a 0201 = 01578312 a 0000 ~ 13942405 n 0000 ~ 13942554 n 0000 | the state or degree of being ultimate; the final or most extreme in degree or size or time or distance, "the ultimacy of these social values" -13942405 26 n 01 extremity 0 003 @ 13942104 n 0000 + 01511520 a 0101 + 01534858 a 0101 | the greatest or utmost degree; "the extremity of despair" -13942554 26 n 01 profoundness 0 005 @ 13942104 n 0000 + 00693237 a 0101 + 01512645 a 0101 + 00693020 a 0102 + 01872745 a 0101 | extremeness of degree; "the profoundness of his ignorance" -13942743 26 n 01 ordinary 0 001 @ 13920429 n 0000 | the expected or commonplace condition or situation; "not out of the ordinary" -13942875 26 n 01 circumstance 1 004 @ 13920835 n 0000 ~ 13943400 n 0000 ~ 13943598 n 0000 ~ 13943740 n 0000 | a condition that accompanies or influences some event or activity -13943053 26 n 01 homelessness 0 003 @ 13920835 n 0000 + 01050603 a 0102 ~ 13943236 n 0000 | the state or condition of having no home (especially the state of living in the streets) -13943236 26 n 01 vagrancy 0 002 @ 13943053 n 0000 + 02127159 a 0105 | the state of wandering from place to place; having no permanent home or means of livelihood -13943400 26 n 02 event 0 case 0 001 @ 13942875 n 0000 | a special set of circumstances; "in that event, the first possibility is excluded"; "it may rain in which case the picnic will be canceled" -13943598 26 n 01 hinge 0 001 @ 13942875 n 0000 | a circumstance upon which subsequent events depend; "his absence is the hinge of our plan" -13943740 26 n 01 playing_field 0 001 @ 13942875 n 0000 | the circumstances under which competition occurs; "the government's objective is to insure a genuinely level playing field for American industry and commerce in Europe" -13943968 26 n 01 thing 0 001 @ 13927383 n 0000 | a special situation; "this thing has got to end"; "it is a remarkable thing" -13944096 26 n 02 time_bomb 0 ticking_bomb 0 001 @ 14411243 n 0000 | a problematic situation that will eventually become dangerous if not addressed; "India is a demographic time bomb"; "the refugee camp is a ticking bomb waiting to go off" -13944337 26 n 01 tinderbox 0 001 @ 14411243 n 0000 | a dangerous state of affairs; a situation that is a potential source of violence; "the Balkans are the tinderbox of Europe" -13944516 26 n 01 urgency 1 002 @ 14411243 n 0000 + 00713558 a 0102 | an urgent situation calling for prompt action; "I'll be there, barring any urgencies"; "they departed hurriedly because of some great urgency in their affairs" -13944747 26 n 02 congestion 1 over-crowding 0 004 @ 13933841 n 0000 + 02028181 v 0201 + 02027926 v 0201 + 01478603 v 0105 | excessive crowding; "traffic congestion" -13944914 26 n 01 reinstatement 0 003 @ 13920835 n 0000 + 02426799 v 0102 + 02553262 v 0101 | the condition of being reinstated; "her reinstatement to her former office followed quickly" -13945102 26 n 02 office 0 power 0 006 @ 00024720 n 0000 ;c 01124794 n 0000 + 01632537 a 0101 + 01096497 v 0101 ~ 13945495 n 0000 ~ 13945682 n 0000 | (of a government or government official) holding an office means being in power; "being in office already gives a candidate a great advantage"; "during his first year in office"; "during his first year in power"; "the power of the president" -13945495 26 n 01 executive_clemency 0 001 @ 13945102 n 0000 | the power (usually of a president or governor) to pardon or commute the sentence of someone convicted in that jurisdiction -13945682 26 n 01 war_power 0 001 @ 13945102 n 0000 | an extraordinary power exercised (usually by the executive branch) in the prosecution of a war and involving an extension of the powers that the government normally has in peacetime -13945919 26 n 02 status 0 position 0 032 @ 00024720 n 0000 = 00259568 a 0000 = 00260430 a 0000 = 00261245 a 0000 = 00791227 a 0000 = 00792991 a 0000 ~ 05168795 n 0000 ~ 13926329 n 0000 ~ 13946760 n 0000 ~ 13947415 n 0000 ~ 13948136 n 0000 ~ 13948441 n 0000 ~ 13949463 n 0000 ~ 13950703 n 0000 ~ 13950812 n 0000 ~ 13951215 n 0000 ~ 13952601 n 0000 ~ 13953215 n 0000 ~ 13953356 n 0000 ~ 13953608 n 0000 ~ 13953787 n 0000 ~ 13953936 n 0000 ~ 13954118 n 0000 ~ 14429985 n 0000 ~ 14431738 n 0000 ~ 14431902 n 0000 ~ 14432032 n 0000 ~ 14432167 n 0000 ~ 14432389 n 0000 ~ 14433361 n 0000 ~ 14579623 n 0000 ~ 14579827 n 0000 | the relative position or standing of things or especially persons in a society; "he had the status of a minor"; "the novel attained the status of a classic"; "atheists do not enjoy a favorable position in American life" -13946760 26 n 04 equality 0 equivalence 0 equation 0 par 0 005 @ 13945919 n 0000 + 02633534 v 0301 + 00417001 v 0305 ~ 13947010 n 0000 ~ 13947174 n 0000 | a state of being essentially equal or equivalent; equally balanced; "on a par with the best" -13947010 26 n 02 egality 0 egalite 0 002 @ 13946760 n 0000 + 00715677 a 0102 | social and political equality; "egality represents an extreme leveling of society" -13947174 26 n 01 tie 0 002 @ 13946760 n 0000 ~ 13947272 n 0000 | equality of score in a contest -13947272 26 n 01 deuce 0 001 @ 13947174 n 0000 | a tie in tennis or table tennis that requires winning two successive points to win the game -13947415 26 n 04 social_station 0 social_status 0 social_rank 0 rank 1 003 @ 13945919 n 0000 ~ 13947645 n 0000 ~ 13948026 n 0000 | position in a social hierarchy; "the British are more aware of social status than Americans are" -13947645 26 n 02 place 0 station 0 002 @ 13947415 n 0000 ~ 13926168 n 0000 | proper or designated social situation; "he overstepped his place"; "the responsibilities of a man in his station"; "married above her station" -13947867 26 n 01 place 2 002 @ 13920835 n 0000 + 02392762 v 0101 | proper or appropriate position or location; "a woman's place is no longer in the kitchen" -13948026 26 n 01 quality 0 002 @ 13947415 n 0000 + 02679012 v 0101 | high social status; "a man of quality" -13948136 26 n 01 standing 0 009 @ 13945919 n 0000 ~ 14429382 n 0000 ~ 14429484 n 0000 ~ 14433587 n 0000 ~ 14434681 n 0000 ~ 14435809 n 0000 ~ 14436029 n 0000 ~ 14436875 n 0000 ~ 14439447 n 0000 | social or financial or professional status or reputation; "of equal standing"; "a member in good standing" -13948441 26 n 01 high_status 0 008 @ 13945919 n 0000 ! 13951215 n 0101 ~ 13948654 n 0000 ~ 13948766 n 0000 ~ 13948912 n 0000 ~ 13949576 n 0000 ~ 13949802 n 0000 ~ 14435445 n 0000 | a position of superior status -13948654 26 n 02 center_stage 0 centre_stage 0 001 @ 13948441 n 0000 | a position of prominence or importance -13948766 26 n 01 stardom 0 002 @ 13948441 n 0000 + 10163723 n 0102 | the status of being acknowledged as a star; "stardom meant nothing to her" -13948912 26 n 02 championship 0 title 0 003 @ 13948441 n 0000 ~ 13949080 n 0000 ~ 13949275 n 0000 | the status of being a champion; "he held the title for two years" -13949080 26 n 01 triple_crown 0 002 @ 13948912 n 0000 ;c 00471613 n 0000 | (baseball) an unofficial title won by a batter who leads the league in hitting average, runs batted in, and home runs -13949275 26 n 01 triple_crown 1 002 @ 13948912 n 0000 ;c 00450070 n 0000 | (horse racing) a title won by a horse that can win the Kentucky Derby and the Belmont Stakes and the Preakness -13949463 26 n 01 high_ground 0 001 @ 13945919 n 0000 | a position of superiority over opponents or competitors -13949576 26 n 04 seniority 0 senior_status 0 higher_status 0 higher_rank 0 004 @ 13948441 n 0000 + 02099774 a 0101 = 02099774 a 0000 = 02100709 a 0000 | higher rank than that of others especially by reason of longer service -13949802 26 n 03 precedence 0 precedency 0 priority 0 005 @ 13948441 n 0000 + 00660381 v 0301 + 02100376 a 0101 ~ 13950143 n 0000 ~ 13950282 n 0000 | status established in order of importance or urgency; "...its precedence as the world's leading manufacturer of pharmaceuticals"; "national independence takes priority over class struggle" -13950143 26 n 01 back_burner 0 002 @ 13949802 n 0000 ! 13950282 n 0101 | reduced priority; "dozens of cases were put on the back burner" -13950282 26 n 01 front_burner 0 002 @ 13949802 n 0000 ! 13950143 n 0101 | top priority; "the work was moved to the front burner in order to meet deadlines" -13950440 26 n 03 transcendence 2 transcendency 2 superiority 0 007 @ 14442530 n 0000 + 00792769 a 0301 + 02344793 a 0201 + 02669081 v 0202 + 02344793 a 0101 + 02669081 v 0102 + 02669477 v 0102 | the state of excelling or surpassing or going beyond usual limits -13950703 26 n 01 high_profile 0 001 @ 13945919 n 0000 | a position attracting much attention and publicity -13950812 26 n 02 Holy_Order 0 Order 1 009 @ 13945919 n 0000 ~ 09763349 n 0000 ~ 09789668 n 0000 ~ 09994520 n 0000 ~ 10026763 n 0000 ~ 10072187 n 0000 ~ 10252354 n 0000 ~ 10470779 n 0000 ~ 10668024 n 0000 | (usually plural) the status or rank or office of a Christian clergyman in an ecclesiastical hierarchy; "theologians still disagree over whether `bishop' should or should not be a separate Order" -13951215 26 n 03 low_status 0 lowness 0 lowliness 0 005 @ 13945919 n 0000 + 01951008 a 0201 + 02340458 a 0202 ! 13948441 n 0101 ~ 13951444 n 0000 | a position of inferior status; low in station or rank or fortune or estimation -13951444 26 n 03 inferiority 0 lower_status 0 lower_rank 0 005 @ 13951215 n 0000 + 02297409 a 0102 ~ 13951629 n 0000 ~ 13951794 n 0000 ~ 13951984 n 0000 | the state of being inferior -13951629 26 n 01 backseat 0 001 @ 13951444 n 0000 | a secondary or inferior position or status; "tennis has had to take a backseat while his work is so demanding" -13951794 26 n 01 shade 1 001 @ 13951444 n 0000 | a position of relative inferiority; "an achievement that puts everything else in the shade"; "his brother's success left him in the shade" -13951984 26 n 02 subordinateness 0 subsidiarity 0 006 @ 13951444 n 0000 + 01854129 a 0202 + 00792991 a 0101 ~ 13952171 n 0000 ~ 13952386 n 0000 ~ 13952466 n 0000 | secondary importance -13952171 26 n 03 handmaid 0 handmaiden 0 servant 0 002 @ 13951984 n 0000 + 02670578 v 0301 | in a subordinate position; "theology should be the handmaiden of ethics"; "the state cannot be a servant of the church" -13952386 26 n 01 junior_status 0 001 @ 13951984 n 0000 | in a junior position -13952466 26 n 02 subservience 1 subservientness 0 003 @ 13951984 n 0000 + 02330064 a 0201 + 00790691 a 0202 | in a subservient state -13952601 26 n 01 legal_status 0 007 @ 13945919 n 0000 ;c 08441203 n 0000 ~ 13952792 n 0000 ~ 13953057 n 0000 ~ 13953467 n 0000 ~ 13963757 n 0000 ~ 15152261 n 0000 | a status defined by law -13952792 26 n 01 civil_death 0 002 @ 13952601 n 0000 ;c 08441203 n 0000 | the legal status of a person who is alive but who has been deprived of the rights and privileges of a citizen or a member of society; the legal status of one sentenced to life imprisonment -13953057 26 n 02 villeinage 0 villainage 0 002 @ 13952601 n 0000 @ 13998014 n 0000 | the legal status or condition of servitude of a villein or feudal serf -13953215 26 n 03 bastardy 0 illegitimacy 0 bar_sinister 0 001 @ 13945919 n 0000 | the status of being born to parents who were not married -13953356 26 n 01 left-handedness 0 001 @ 13945919 n 0000 | the status of being born of a morganatic marriage -13953467 26 n 01 citizenship 0 003 @ 13952601 n 0000 ;c 08441203 n 0000 + 09923673 n 0101 | the status of a citizen with rights and duties -13953608 26 n 01 command 0 003 @ 13945919 n 0000 + 02441022 v 0102 + 00751887 v 0101 | a position of highest authority; "the corporation has just undergone a change in command" -13953787 26 n 01 nationality 0 002 @ 13945919 n 0000 + 02988060 a 0101 | the status of belonging to a particular nation by birth or naturalization -13953936 26 n 02 footing 0 terms 0 001 @ 13945919 n 0000 | status with respect to the relations between people or groups; "on good terms with her in-laws"; "on a friendly footing" -13954118 26 n 01 retirement 0 002 @ 13945919 n 0000 + 02379753 v 0101 | the state of being retired from one's business or occupation -13954253 26 n 03 being 0 beingness 0 existence 0 022 @ 00024720 n 0000 + 02724483 a 0301 + 00043765 a 0302 + 01932973 a 0302 + 00927017 a 0301 + 02603699 v 0301 ! 13959931 n 0301 + 02603699 v 0102 ! 13959818 n 0101 = 00927017 a 0000 = 00927578 a 0000 ~ 13954818 n 0000 ~ 13956905 n 0000 ~ 13957117 n 0000 ~ 13957268 n 0000 ~ 13957493 n 0000 ~ 13957601 n 0000 ~ 13961399 n 0000 ~ 13961642 n 0000 ~ 13963192 n 0000 ~ 13963565 n 0000 ~ 14481929 n 0000 | the state or fact of existing; "a point of view gradually coming into being"; "laws in existence for centuries" -13954818 26 n 01 actuality 0 011 @ 13954253 n 0000 + 01933731 a 0101 + 01933520 a 0101 + 00666610 a 0101 + 00043765 a 0101 = 00043765 a 0000 ~ 13955152 n 0000 ~ 13955341 n 0000 ~ 13955461 n 0000 ~ 13956097 n 0000 ~ 13956488 n 0000 | the state of actually existing objectively; "a hope that progressed from possibility to actuality" -13955152 26 n 01 entelechy 0 003 @ 13954818 n 0000 ;c 06162653 n 0000 ;c 10822338 n 0000 | (Aristotle) the state of something that is fully realized; actuality as opposed to potentiality -13955341 26 n 01 genuineness 0 003 @ 13954818 n 0000 + 02460964 a 0102 ! 13960833 n 0101 | the state of being genuine -13955461 26 n 03 reality 1 realness 0 realism 0 015 @ 13954818 n 0000 + 10509605 n 0301 + 10509389 n 0301 + 10509161 n 0301 + 01941604 a 0202 + 02460964 a 0204 + 02119716 a 0201 + 01941604 a 0102 + 02460964 a 0104 + 02119716 a 0101 + 01932973 a 0101 ! 13960117 n 0101 = 01932973 a 0000 = 01934554 a 0000 ~ 13955874 n 0000 | the state of being actual or real; "the reality of his situation slowly dawned on him" -13955874 26 n 01 fact 1 001 @ 13955461 n 0000 | an event known to have happened or something known to have existed; "your fears have no basis in fact"; "how much of the story is fact and how much fiction is hard to tell" -13956097 26 n 01 reality 2 006 @ 13954818 n 0000 + 02460964 a 0104 + 02119716 a 0101 + 00013662 a 0101 + 01932973 a 0101 ~ 13956362 n 0000 | the state of the world as it really is rather than as you might want it to be; "businessmen have to face harsh realities" -13956362 26 n 01 historicalness 0 002 @ 13956097 n 0000 + 01934284 a 0101 | the state of having in fact existed in the past -13956488 26 n 04 truth 0 the_true 0 verity 0 trueness 0 005 @ 13954818 n 0000 + 02460502 a 0401 ! 13960464 n 0101 = 02460502 a 0000 = 02461723 a 0000 | conformity to reality or actuality; "they debated the truth of the proposition"; "the situation brought home to us the blunt truth of the military threat"; "he was famous for the truth of his portraits"; "he turned to religion in his search for eternal verities" -13956905 26 n 03 eternity 0 timelessness 0 timeless_existence 0 003 @ 13954253 n 0000 + 00353431 a 0202 + 01755024 a 0104 | a state of eternal existence believed in some religions to characterize the afterlife -13957117 26 n 01 preexistence 0 003 @ 13954253 n 0000 + 00122386 a 0101 + 02604100 v 0101 | existing in a former state or previous to something else -13957268 26 n 01 coexistence 0 003 @ 13954253 n 0000 + 02378347 a 0101 + 02604618 v 0101 | existing peacefully together -13957390 26 n 02 eternal_life 0 life_eternal 0 001 @ 13961642 n 0000 | life without beginning or end -13957493 26 n 01 subsistence 0 001 @ 13954253 n 0000 | the state of existing in reality; having substance -13957601 26 n 01 presence 0 014 @ 13954253 n 0000 + 01846413 a 0101 ! 13960974 n 0101 = 01846413 a 0000 = 01847672 a 0000 ~ 13957974 n 0000 ~ 13958138 n 0000 ~ 13958353 n 0000 ~ 13958456 n 0000 ~ 13958672 n 0000 ~ 13958800 n 0000 ~ 13958921 n 0000 ~ 13959069 n 0000 ~ 13959642 n 0000 | the state of being present; current existence; "he tested for the presence of radon" -13957974 26 n 02 immanence 0 immanency 0 003 @ 13957601 n 0000 + 00468574 a 0201 + 00468574 a 0101 | the state of being within or not going beyond a given domain -13958138 26 n 02 inherence 0 inherency 0 003 @ 13957601 n 0000 + 01348528 a 0104 + 02653564 v 0101 | the state of inhering; the state of being a fixed characteristic; "the inherence of polysemy in human language" -13958353 26 n 01 ubiety 0 001 @ 13957601 n 0000 | the state of existing and being localized in space -13958456 26 n 03 ubiquity 0 ubiquitousness 0 omnipresence 0 004 @ 13957601 n 0000 + 01847515 a 0301 + 01847515 a 0202 + 01847515 a 0102 | the state of being everywhere at once (or seeming to be everywhere at once) -13958672 26 n 01 hereness 0 003 @ 13957601 n 0000 + 01847242 a 0101 ! 13958800 n 0101 | the state of being here in this place -13958800 26 n 01 thereness 0 002 @ 13957601 n 0000 ! 13958672 n 0101 | the state of being there--not here--in position -13958921 26 n 01 thereness 1 001 @ 13957601 n 0000 | real existence; "things are really there...capture the thereness of them"--Charles Hopkinson -13959069 26 n 01 occurrence 0 003 @ 13957601 n 0000 ~ 13959289 n 0000 ~ 13959463 n 0000 | an instance of something occurring; "a disease of frequent occurrence"; "the occurrence (or presence) of life on other planets" -13959289 26 n 01 allopatry 0 003 @ 13959069 n 0000 + 02376995 a 0101 ! 13959463 n 0101 | the occurrence of related organisms in separate geographical areas with no overlap -13959463 26 n 01 sympatry 0 003 @ 13959069 n 0000 + 02376809 a 0101 ! 13959289 n 0101 | the occurrence of organisms in overlapping geographical areas, but without interbreeding -13959642 26 n 01 shadow 0 002 @ 13957601 n 0000 + 02696306 v 0101 | a dominating and pervasive presence; "he received little recognition working in the shadow of his father" -13959818 26 n 01 nonbeing 0 003 @ 00024720 n 0000 ! 13954253 n 0101 ~ 13959931 n 0000 | the state of not being -13959931 26 n 02 nonexistence 0 nonentity 0 006 @ 13959818 n 0000 + 00927578 a 0101 ! 13954253 n 0103 ~ 13960117 n 0000 ~ 14455700 n 0000 ~ 14483126 n 0000 | the state of not existing -13960117 26 n 02 unreality 0 irreality 0 006 @ 13959931 n 0000 + 01934554 a 0101 ! 13955461 n 0101 + 00625774 a 0103 ~ 13960357 n 0000 ~ 13960464 n 0000 | the state of being insubstantial or imaginary; not existing objectively or in fact -13960357 26 n 01 cloud 1 001 @ 13960117 n 0000 | out of touch with reality; "his head was in the clouds" -13960464 26 n 02 falsity 0 falseness 0 013 @ 13960117 n 0000 + 01942507 a 0202 + 00633235 a 0201 + 02461723 a 0201 + 01942507 a 0102 + 00633235 a 0101 + 00584403 a 0101 + 02576921 v 0104 + 00835903 v 0101 + 00667942 v 0101 + 00202236 v 0101 ! 13956488 n 0101 ~ 13960833 n 0000 | the state of being false or untrue; "argument could not determine its truth or falsity" -13960833 26 n 01 spuriousness 0 004 @ 13960464 n 0000 + 02462210 a 0102 + 01117677 a 0103 ! 13955341 n 0101 | state of lacking genuineness -13960974 26 n 01 absence 0 005 @ 14449405 n 0000 + 01847672 a 0101 ! 13957601 n 0101 ~ 13961179 n 0000 ~ 13961273 n 0000 | the state of being absent; "he was surprised by the absence of any explanation" -13961179 26 n 01 nonoccurrence 0 001 @ 13960974 n 0000 | absence by virtue of not occurring -13961273 26 n 01 awayness 0 002 @ 13960974 n 0000 + 01847864 a 0101 | the state of being elsewhere than in particular place -13961399 26 n 01 life 2 001 @ 13954253 n 0000 | the course of existence of an individual; the actions and events that occur in living; "he hoped for a new life in Australia"; "he wanted to live his own life without interference from others" -13961642 26 n 04 animation 0 life 0 living 0 aliveness 0 011 @ 13954253 n 0000 + 02106366 a 0401 + 00927373 a 0402 + 00190653 a 0402 + 02614181 v 0302 + 10261041 n 0201 = 00094448 a 0000 = 00095280 a 0000 ~ 13957390 n 0000 ~ 13962048 n 0000 ~ 13962166 n 0000 | the condition of living or the state of being alive; "while there's life there's hope"; "life depends on many chemical and physical processes" -13962048 26 n 01 skin 0 001 @ 13961642 n 0000 | a person's skin regarded as their life; "he tried to save his skin" -13962166 26 n 02 survival 0 endurance 0 006 @ 13961642 n 0000 + 02618149 v 0206 + 02619924 v 0101 + 02618149 v 0101 + 02616713 v 0102 ~ 13962360 n 0000 | a state of surviving; remaining alive -13962360 26 n 01 subsistence 1 002 @ 13962166 n 0000 + 02616713 v 0104 | a means of surviving; "farming is a hard means of subsistence" -13962498 26 n 01 death 0 007 @ 00024720 n 0000 + 00358431 v 0101 + 02109818 v 0101 ~ 13962765 n 0000 ~ 13963032 n 0000 ~ 14310172 n 0000 ~ 14310292 n 0000 | the absence of life or state of being dead; "he seemed more content in death than he had ever been in life" -13962765 26 n 05 rest 1 eternal_rest 0 sleep 1 eternal_sleep 0 quietus 0 001 @ 13962498 n 0000 | euphemisms for death (based on an analogy between lying in a bed and in a tomb); "she was laid to rest beside her husband"; "they had to put their family pet to sleep" -13963032 26 n 02 extinction 1 defunctness 0 003 @ 13962498 n 0000 + 00834048 a 0201 + 00097147 a 0201 | no longer in existence; "the extinction of a species" -13963192 26 n 01 life 1 002 @ 13954253 n 0000 ~ 13963342 n 0000 | a characteristic state or mode of living; "social life"; "city life"; "real life" -13963342 26 n 01 ghetto 0 001 @ 13963192 n 0000 | any segregated mode of living or working that results from bias or stereotyping; "the relative security of the gay ghetto"; "no escape from the ghetto of the typing pool" -13963565 26 n 02 transcendence 1 transcendency 1 003 @ 13954253 n 0000 + 01374912 a 0201 + 01374912 a 0101 | a state of being or existence above and beyond the limits of material experience -13963757 26 n 01 marital_status 0 007 @ 13952601 n 0000 ;c 08441203 n 0000 ~ 13963970 n 0000 ~ 13964591 n 0000 ~ 13967715 n 0000 ~ 13967827 n 0000 ~ 13967970 n 0000 | the condition of being married or unmarried -13963970 26 n 05 marriage 0 matrimony 0 union 2 spousal_relationship 0 wedlock 0 015 @ 13963757 n 0000 ;c 08441203 n 0000 + 02852920 a 0202 ~ 13964466 n 0000 ~ 13964879 n 0000 ~ 13965049 n 0000 ~ 13965274 n 0000 ~ 13965515 n 0000 ~ 13965627 n 0000 ~ 13965888 n 0000 ~ 13966007 n 0000 ~ 13966496 n 0000 ~ 13966683 n 0000 ~ 13966925 n 0000 ~ 13967215 n 0000 | the state of being a married couple voluntarily joined for life (or until divorce); "a long and happy marriage"; "God bless this union" -13964466 26 n 01 bigamy 0 003 @ 13963970 n 0000 ;c 08441203 n 0000 + 09853305 n 0101 | having two spouses at the same time -13964591 26 n 01 civil_union 0 002 @ 13963757 n 0000 ;c 08441203 n 0000 | a voluntary union for life (or until divorce) of adult parties of the same sex; "parties to a civil union have all the same benefits, protections, and responsibilities under Vermont law as spouses in a marriage" -13964879 26 n 01 common-law_marriage 0 002 @ 13963970 n 0000 ;c 08441203 n 0000 | a marriage relationship created by agreement and cohabitation rather than by ceremony -13965049 26 n 03 endogamy 0 intermarriage 1 inmarriage 0 005 @ 13963970 n 0000 + 02489183 v 0301 + 02490090 v 0201 + 00871051 a 0101 ! 13965274 n 0101 | marriage within one's own tribe or group as required by custom or law -13965274 26 n 02 exogamy 0 intermarriage 2 005 @ 13963970 n 0000 + 02490090 v 0201 + 00871255 a 0102 + 00871255 a 0101 ! 13965049 n 0101 | marriage to a person belonging to a tribe or group other than your own as required by custom or law -13965515 26 n 01 marriage_of_convenience 0 001 @ 13963970 n 0000 | a marriage for expediency rather than love -13965627 26 n 01 misalliance 0 003 @ 13963970 n 0000 + 02430421 v 0101 ~ 13965780 n 0000 | an unsuitable alliance (especially with regard to marriage) -13965780 26 n 01 mesalliance 0 001 @ 13965627 n 0000 | a marriage with a person of inferior social status -13965888 26 n 01 monandry 0 002 @ 13963970 n 0000 + 01544580 a 0101 | the state of having only one husband at a time -13966007 26 n 02 monogamy 0 monogamousness 0 006 @ 13963970 n 0000 + 01544347 a 0201 + 01544347 a 0101 + 10328782 n 0101 ~ 13966201 n 0000 ~ 13966340 n 0000 | having only one spouse at a time -13966201 26 n 01 monogyny 0 004 @ 13966007 n 0000 + 01544688 a 0102 + 01544688 a 0101 + 10328782 n 0102 | having only one wife at a time -13966340 26 n 01 serial_monogamy 0 001 @ 13966007 n 0000 | a succession of short monogamous relationships (as by someone who undergoes multiple divorces) -13966496 26 n 01 open_marriage 0 001 @ 13963970 n 0000 | a marriage in which each partner is free to enter into extraneous sexual relationships without guilt or jealousy from the other -13966683 26 n 01 cuckoldom 0 001 @ 13963970 n 0000 | the state of a husband whose wife has committed adultery -13966795 26 n 01 polyandry 0 003 @ 13966925 n 0000 + 01545203 a 0101 + 10452151 n 0101 | having more than one husband at a time -13966925 26 n 01 polygamy 0 005 @ 13963970 n 0000 + 01544856 a 0101 + 10452260 n 0101 ~ 13966795 n 0000 ~ 13967089 n 0000 | having more than one spouse at a time -13967089 26 n 01 polygyny 0 003 @ 13966925 n 0000 + 01545317 a 0101 + 10452432 n 0101 | having more than one wife at a time -13967215 26 n 01 sigeh 0 002 @ 13963970 n 0000 ;c 08095647 n 0000 | a Shiite tradition of temporary marriage permitted in Iran that allows a couple to specify the terms of their relationship; can last from a few minutes to 99 years; "sigeh legally wraps premarital sex in an Islamic cloak" -13967507 26 n 01 celibacy 0 001 @ 13920835 n 0000 | an unmarried status -13967581 26 n 01 virginity 0 003 @ 13920835 n 0000 + 00361125 a 0103 = 00360650 a 0000 | the condition or quality of being a virgin -13967715 26 n 01 bachelorhood 0 002 @ 13963757 n 0000 + 09829923 n 0101 | the state of being an unmarried man -13967827 26 n 01 spinsterhood 0 002 @ 13963757 n 0000 + 10636488 n 0101 | the state of being a spinster (usually an elderly unmarried woman) -13967970 26 n 01 widowhood 0 002 @ 13963757 n 0000 + 10780284 n 0101 | the state of being a widow who has not remarried -13968092 26 n 02 employment 0 employ 0 003 @ 00024720 n 0000 + 02409412 v 0203 ! 13968308 n 0101 | the state of being employed or having a job; "they are looking for employment"; "he was in the employ of the city" -13968308 26 n 01 unemployment 0 002 @ 00024720 n 0000 ! 13968092 n 0101 | the state of being unemployed or not having a job; "unemployment is a serious social evil"; "the rate of unemployment is an indicator of the health of an economy" -13968547 26 n 01 order 0 010 @ 00024720 n 0000 + 02511551 v 0104 ! 13972797 n 0101 + 02423284 a 0102 ~ 13968859 n 0000 ~ 13968973 n 0000 ~ 13969101 n 0000 ~ 13969243 n 0000 ~ 13970124 n 0000 ~ 13970236 n 0000 | established customary state (especially of society); "order ruled in the streets"; "law and order" -13968859 26 n 02 civil_order 0 polity 0 001 @ 13968547 n 0000 | the form of government of a social organization -13968973 26 n 01 rule_of_law 0 002 @ 13968547 n 0000 ;c 08441203 n 0000 | a state of order in which events conform to the law -13969101 26 n 03 tranquillity 0 tranquility 0 quiet 2 002 @ 13968547 n 0000 + 00302951 a 0104 | an untroubled state; free from disturbances -13969243 26 n 03 harmony 0 concord 0 concordance 0 014 @ 13968547 n 0000 + 02700104 v 0205 + 01163320 a 0102 + 00508036 a 0101 + 00894029 a 0101 + 01163320 a 0103 + 02700104 v 0101 + 00483181 v 0101 + 00483181 v 0102 + 00482473 v 0101 + 00482473 v 0102 ~ 13969700 n 0000 ~ 13969854 n 0000 ~ 13971065 n 0000 | a harmonious state of things in general and of their properties (as of colors and sounds); congruity of parts with one another and with the whole -13969700 26 n 01 peace 1 002 @ 13969243 n 0000 + 01765392 v 0101 | harmonious relations; freedom from disputes; "the roommates lived in peace together" -13969854 26 n 01 comity 0 002 @ 13969243 n 0000 ~ 13969988 n 0000 | a state or atmosphere of harmony or mutual civility and respect -13969988 26 n 01 comity_of_nations 0 001 @ 13969854 n 0000 | courteous respect by one nation for the laws and institutions of another -13970124 26 n 01 stability 0 002 @ 13968547 n 0000 ! 13975659 n 0101 | a stable order (especially of society) -13970236 26 n 01 peace 0 008 @ 13968547 n 0000 + 01647867 v 0101 ! 13981403 n 0101 ~ 13970460 n 0000 ~ 13970912 n 0000 ~ 13971561 n 0000 ~ 14540220 n 0000 ~ 14540318 n 0000 | the state prevailing during the absence of war -13970460 26 n 01 amity 0 003 @ 13970236 n 0000 + 01075178 a 0102 ~ 13970584 n 0000 | a state of friendship and cordiality -13970584 26 n 02 peaceableness 0 peacefulness 2 005 @ 13970460 n 0000 + 02513101 a 0202 + 01742119 a 0101 + 01741669 a 0102 ~ 13970764 n 0000 | a state that is calm and tranquil -13970764 26 n 01 mollification 0 003 @ 13970584 n 0000 + 01765392 v 0106 + 00294884 v 0103 | a state of being appeased or ameliorated or tempered -13970912 26 n 03 armistice 0 cease-fire 0 truce 0 001 @ 13970236 n 0000 | a state of peace agreed to between opponents so they can discuss peace terms -13971065 26 n 02 agreement 1 accord 0 010 @ 13969243 n 0000 + 01035530 v 0101 ! 13982357 n 0101 ~ 13971382 n 0000 ~ 13971802 n 0000 ~ 13971901 n 0000 ~ 13972180 n 0000 ~ 13972387 n 0000 ~ 13972505 n 0000 ~ 13972601 n 0000 | harmony of people's opinions or actions or characters; "the two parties were in agreement" -13971382 26 n 02 community 0 community_of_interests 0 001 @ 13971065 n 0000 | agreement as to goals; "the preachers and the bootleggers found they had a community of interests" -13971561 26 n 01 conciliation 0 003 @ 13970236 n 0000 + 01765392 v 0103 + 00764902 v 0104 | the state of manifesting goodwill and cooperation after being reconciled; "there was a brief period of conciliation but the fighting soon resumed" -13971802 26 n 02 concurrence 0 meeting_of_minds 0 001 @ 13971065 n 0000 | a state of cooperation -13971901 26 n 01 consensus 0 002 @ 13971065 n 0000 + 00553594 a 0101 | agreement in the judgment or opinion reached by a group as a whole; "the lack of consensus reflected differences in theoretical positions"; "those rights and obligations are based on an unstated consensus" -13972180 26 n 01 sense_of_the_meeting 0 001 @ 13971065 n 0000 | general agreement reached by an assembled group; "no vote was taken, but after each discussion the chair summed up the sense of the meeting" -13972387 26 n 01 unanimity 0 003 @ 13971065 n 0000 + 00784215 a 0102 + 00553732 a 0103 | everyone being of one mind -13972505 26 n 01 unison 0 001 @ 13971065 n 0000 | corresponding exactly; "marching in unison" -13972601 26 n 01 social_contract 0 001 @ 13971065 n 0000 | an implicit agreement among people that results in the organization of society; individual surrenders liberty in return for protection -13972797 26 n 01 disorder 0 010 @ 00024720 n 0000 ! 13968547 n 0101 ~ 13973059 n 0000 ~ 13975659 n 0000 ~ 13975752 n 0000 ~ 13977043 n 0000 ~ 13977184 n 0000 ~ 13977366 n 0000 ~ 13979064 n 0000 ~ 13979173 n 0000 | a disturbance of the peace or of public order -13973059 26 n 02 anarchy 0 lawlessness 0 007 @ 13972797 n 0000 ;c 01124794 n 0000 + 01396503 a 0202 + 00600192 a 0203 + 09791816 n 0101 + 00600192 a 0102 ~ 13973320 n 0000 | a state of lawlessness and disorder (usually resulting from a failure of government) -13973320 26 n 01 nihilism 0 004 @ 13973059 n 0000 + 02911757 a 0101 + 10358420 n 0101 + 09791816 n 0102 | complete denial of all established authority and institutions -13973490 26 n 01 cytopenia 0 003 @ 14189204 n 0000 ~ 13973632 n 0000 ~ 13973769 n 0000 | a deficiency of some cellular element of the blood -13973632 26 n 02 hematocytopenia 0 haematocytopenia 0 001 @ 13973490 n 0000 | an abnormally low number of red blood cells in the blood -13973769 26 n 01 pancytopenia 0 001 @ 13973490 n 0000 | an abnormal deficiency in all blood cells (red blood cells and white blood cells and platelets); usually associated with bone marrow tumor or with aplastic anemia -13973990 26 n 01 immunological_disorder 0 004 @ 14052403 n 0000 ~ 13974317 n 0000 ~ 13974620 n 0000 ~ 14128536 n 0000 | a disorder of the immune system -13974144 26 n 01 immunocompetence 0 003 @ 05200169 n 0000 + 02595469 a 0101 ! 13974317 n 0101 | the ability to develop an immune response following exposure to an antigen -13974317 26 n 01 immunodeficiency 0 007 @ 13973990 n 0000 + 02595647 a 0101 ! 13974144 n 0101 ~ 14127782 n 0000 ~ 14128331 n 0000 ~ 14128650 n 0000 ~ 14128812 n 0000 | immunological disorder in which some part of the body's immune system is inadequate and resistance to infectious diseases is reduced -13974620 26 n 01 immunosuppression 0 001 @ 13973990 n 0000 | lowering the body's normal immune response to invasion by foreign substances; can be deliberate (as in lowering the immune response to prevent rejection of a transplanted organ) or incidental (as a side effect of radiotherapy or chemotherapy for cancer) -13974937 26 n 01 bloodiness 0 002 @ 14034177 n 0000 + 00247439 a 0101 | the state of being bloody -13975037 26 n 01 incompatibility 0 004 @ 14034177 n 0000 ;c 06051542 n 0000 ~ 13975292 n 0000 ~ 13975444 n 0000 | (immunology) the degree to which the body's immune system will try to reject foreign material (as transfused blood or transplanted tissue) -13975292 26 n 01 histoincompatibility 0 001 @ 13975037 n 0000 | incompatibility in which one person's tissue cannot be transplanted to another person -13975444 26 n 01 Rh_incompatibility 0 001 @ 13975037 n 0000 | incompatibility of Rh blood types; a transfusion of Rh-positive blood given to a Rh-negative person (or vice versa) can result in hemolysis and anemia -13975659 26 n 01 instability 0 002 @ 13972797 n 0000 ! 13970124 n 0101 | an unstable order -13975752 26 n 01 confusion 1 006 @ 13972797 n 0000 ~ 13975988 n 0000 ~ 13976182 n 0000 ~ 13976322 n 0000 ~ 13976731 n 0000 ~ 13976907 n 0000 | disorder resulting from a failure to behave predictably; "the army retreated in confusion" -13975988 26 n 02 demoralization 0 demoralisation 0 002 @ 13975752 n 0000 + 00622204 v 0101 | a state of disorder and confusion; "his inconsistency resulted in the demoralization of his staff" -13976182 26 n 01 bluster 0 001 @ 13975752 n 0000 | noisy confusion and turbulence; "he was awakened by the bluster of their preparations" -13976322 26 n 05 chaos 0 pandemonium 0 bedlam 0 topsy-turvydom 0 topsy-turvyness 0 004 @ 13975752 n 0000 + 02425529 a 0505 + 02390569 a 0101 ~ 13976527 n 0000 | a state of extreme confusion and disorder -13976527 26 n 01 balagan 0 002 @ 13976322 n 0000 ;r 09003284 n 0000 | a word for chaos or fiasco borrowed from modern Hebrew (where it is a loan word from Russian); "it was utter and complete balagan!" -13976731 26 n 01 hugger-mugger 0 003 @ 13975752 n 0000 + 02425529 a 0103 + 02518043 v 0101 | a state of confusion; "he engaged in the hugger-mugger of international finance" -13976907 26 n 02 schemozzle 0 shemozzle 0 002 @ 13975752 n 0000 ;c 06951067 n 0000 | (Yiddish) a confused situation or affair; a mess -13977043 26 n 02 rioting 0 riot 0 003 @ 13972797 n 0000 + 02584661 v 0201 + 02584661 v 0101 | a state of disorder involving group violence -13977184 26 n 04 rowdiness 0 rowdyism 0 roughness 2 disorderliness 2 005 @ 13972797 n 0000 + 01666275 a 0401 + 01951197 a 0301 + 00084353 a 0302 + 01667110 a 0102 | rowdy behavior -13977366 26 n 09 disturbance 0 disruption 0 commotion 0 flutter 1 hurly_burly 0 to-do 0 hoo-ha 0 hoo-hah 0 kerfuffle 0 008 @ 13972797 n 0000 ~ 13977732 n 0000 ~ 13977870 n 0000 ~ 13978033 n 0000 ~ 13978166 n 0000 ~ 13978344 n 0000 ~ 13978601 n 0000 ~ 13978709 n 0000 | a disorderly outburst or tumult; "they were amazed by the furious disturbance they had caused" -13977732 26 n 03 convulsion 2 turmoil 0 upheaval 1 001 @ 13977366 n 0000 | a violent disturbance; "the convulsions of the stock market" -13977870 26 n 01 earthquake 0 001 @ 13977366 n 0000 | a disturbance that is extremely disruptive; "selling the company caused an earthquake among the employees" -13978033 26 n 01 incident 0 001 @ 13977366 n 0000 | a public disturbance; "the police investigated an incident at the bus station" -13978166 26 n 02 stir 1 splash 0 002 @ 13977366 n 0000 + 01848701 a 0203 | a prominent or sensational but short-lived news event; "he made a great splash and then disappeared" -13978344 26 n 02 storm 0 tempest 0 004 @ 13977366 n 0000 + 01742912 a 0202 + 01742912 a 0101 + 02723016 v 0103 | a violent commotion or disturbance; "the storms that had characterized their relationship had died away"; "it was only a tempest in a teapot" -13978601 26 n 02 storm_center 0 storm_centre 0 001 @ 13977366 n 0000 | a center of trouble or disturbance -13978709 26 n 04 tumult 0 tumultuousness 0 uproar 0 garboil 0 005 @ 13977366 n 0000 + 01921466 a 0303 + 01923720 a 0204 + 01923720 a 0104 ~ 13978914 n 0000 | a state of commotion and noise and confusion -13978914 26 n 01 combustion 0 001 @ 13978709 n 0000 | a state of violent disturbance and excitement; "combustion grew until revolt was unavoidable" -13979064 26 n 02 discord 0 strife 0 002 @ 13972797 n 0000 + 02718543 v 0103 | lack of agreement or harmony -13979173 26 n 03 turbulence 0 upheaval 0 Sturm_und_Drang 0 006 @ 13972797 n 0000 ;c 06148148 n 0000 + 01923720 a 0105 ~ 13979503 n 0000 ~ 13979786 n 0000 ~ 13979977 n 0000 | a state of violent disturbance and disorder (as in politics or social conditions generally); "the industrial revolution was a period of great turbulence" -13979503 26 n 05 agitation 0 ferment 0 fermentation 0 tempestuousness 1 unrest 0 004 @ 13979173 n 0000 + 01742912 a 0402 + 01763303 v 0301 + 01761533 v 0301 | a state of agitation or turbulent change or development; "the political ferment produced new leadership"; "social unrest" -13979786 26 n 01 roller_coaster 0 001 @ 13979173 n 0000 | anything characterized by abrupt and extreme changes (especially up and down); "the economy has been on a roller coaster all year" -13979977 26 n 01 violence 0 003 @ 13979173 n 0000 + 00248560 a 0103 ~ 13980128 n 0000 | a turbulent state resulting in injuries and destruction etc. -13980128 26 n 01 rage 1 002 @ 13979977 n 0000 + 02722902 v 0101 | violent state of the elements; "the sea hurled itself in thundering rage against the rocks" -13980288 26 n 03 hostility 0 enmity 0 antagonism 0 012 @ 00024720 n 0000 + 00508480 a 0301 + 01245138 a 0301 + 09773245 n 0302 + 01807314 v 0301 + 01807314 v 0302 + 01246388 a 0202 ~ 13980596 n 0000 ~ 13981403 n 0000 ~ 13982000 n 0000 ~i 13982156 n 0000 ~ 13982839 n 0000 | a state of deep-seated ill-will -13980596 26 n 02 latent_hostility 0 tension 0 002 @ 13980288 n 0000 + 02811660 a 0201 | feelings of hostility that are not manifest; "he could sense her latent hostility to him"; "the diplomats' first concern was to reduce international tensions" -13980845 26 n 01 conflict 0 006 @ 00024720 n 0000 + 02667228 v 0101 + 02567147 v 0101 ~ 13981137 n 0000 ~ 13981271 n 0000 ~ 13982357 n 0000 | a state of opposition between persons or ideas or interests; "his conflict of interest made him ineligible for the post"; "a conflict of loyalties" -13981137 26 n 02 clash 0 friction 0 003 @ 13980845 n 0000 + 02667698 v 0101 + 00805228 v 0101 | a state of conflict between persons -13981271 26 n 01 clash 1 001 @ 13980845 n 0000 | a state of conflict between colors; "her dress was a disturbing clash of colors" -13981403 26 n 02 war 0 state_of_war 0 005 @ 13980288 n 0000 ;c 00973077 n 0000 + 01093172 v 0101 ! 13970236 n 0101 ~ 13981763 n 0000 | a legal state created by a declaration of war and ended by official declaration during which the international rules of war apply; "war was declared in November but actual fighting did not begin until the following spring" -13981763 26 n 01 proxy_war 0 001 @ 13981403 n 0000 | a war instigated by a major power that does not itself participate -13981885 26 n 01 hot_war 0 002 @ 00973077 n 0000 ! 13982000 n 0101 | actual fighting between the warring parties -13982000 26 n 01 cold_war 0 002 @ 13980288 n 0000 ! 13981885 n 0101 | a state of political hostility between countries using means short of armed warfare -13982156 26 n 01 Cold_War 1 001 @i 13980288 n 0000 | a state of political hostility that existed from 1945 until 1990 between countries led by the Soviet Union and countries led by the United States -13982357 26 n 03 disagreement 0 dissension 0 dissonance 0 006 @ 13980845 n 0000 + 00804802 v 0203 + 00804802 v 0101 ! 13971065 n 0101 ~ 13982588 n 0000 ~ 13982692 n 0000 | a conflict of people's opinions or actions or characters -13982588 26 n 01 disunity 0 001 @ 13982357 n 0000 | lack of unity (usually resulting from dissension) -13982692 26 n 01 divide 0 001 @ 13982357 n 0000 | a serious disagreement between two groups of people (typically producing tension or hostility) -13982839 26 n 01 suspicion 0 003 @ 13980288 n 0000 + 00924873 v 0101 ~ 13982999 n 0000 | the state of being suspected; "he tried to shield me from suspicion" -13982999 26 n 01 cloud 0 002 @ 13982839 n 0000 + 01537959 v 0105 | suspicion affecting your reputation; "after that mistake he was under a cloud" -13983147 26 n 01 illumination 0 004 @ 00024720 n 0000 + 00291873 v 0105 ~ 13983304 n 0000 ~ 13983515 n 0000 | the degree of visibility of your environment -13983304 26 n 02 light 0 lighting 0 003 @ 13983147 n 0000 + 00291873 v 0101 ! 13983515 n 0101 | having abundant light or illumination; "they played as long as it was light"; "as long as the lighting was good" -13983515 26 n 02 dark 0 darkness 0 007 @ 13983147 n 0000 + 00273082 a 0101 ! 13983304 n 0101 ~ 13983717 n 0000 ~ 13983807 n 0000 ~ 13984082 n 0000 ~ 13984285 n 0000 | absence of light or illumination -13983717 26 n 01 night 0 001 @ 13983515 n 0000 | darkness; "it vanished into the night" -13983807 26 n 05 total_darkness 0 lightlessness 0 blackness 0 pitch_blackness 0 black 0 005 @ 13983515 n 0000 + 00274068 a 0402 + 00274068 a 0301 + 02518229 a 0201 + 00275985 a 0201 | total absence of light; "they fumbled around in total darkness"; "in the black of night" -13984082 26 n 03 blackout 0 brownout 0 dimout 0 003 @ 13983515 n 0000 ;c 02686568 n 0000 + 00312648 v 0101 | darkness resulting from the extinction of lights (as in a city invisible to enemy aircraft) -13984285 26 n 01 semidarkness 0 007 @ 13983515 n 0000 + 00276226 a 0101 ~ 13984468 n 0000 ~ 13984613 n 0000 ~ 13985323 n 0000 ~ 13985462 n 0000 ~ 13985671 n 0000 | partial darkness -13984468 26 n 02 cloudiness 1 overcast 1 003 @ 13984285 n 0000 + 00461971 a 0203 + 02770717 v 0201 | gloomy semidarkness caused by cloud cover -13984613 26 n 03 shade 0 shadiness 0 shadowiness 0 006 @ 13984285 n 0000 + 00276862 a 0303 + 00276862 a 0201 + 00276862 a 0101 + 02768702 v 0102 ~ 13984944 n 0000 | relative darkness caused by light rays being intercepted by an opaque body; "it is much cooler in the shade"; "there's too much shadiness to take good photographs" -13984944 26 n 01 shadow 1 005 @ 13984613 n 0000 + 00276862 a 0103 + 02768702 v 0101 ~ 13985098 n 0000 ~ 13985219 n 0000 | shade within clear boundaries -13985098 26 n 01 umbra 0 001 @ 13984944 n 0000 | a region of complete shadow resulting from total obstruction of light -13985219 26 n 01 penumbra 0 001 @ 13984944 n 0000 | a fringe region of partial shadow around an umbra -13985323 26 n 02 dimness 0 duskiness 0 003 @ 13984285 n 0000 + 00275486 a 0201 + 00284575 a 0102 | the state of being poorly illuminated -13985462 26 n 03 gloom 1 somberness 0 sombreness 0 004 @ 13984285 n 0000 + 00405179 a 0304 + 00405179 a 0203 + 00275764 a 0102 | a state of partial or total darkness; "he struck a match to dispel the gloom" -13985671 26 n 02 obscurity 1 obscureness 1 001 @ 13984285 n 0000 | the state of being indistinct or indefinite for lack of adequate illumination -13985818 26 n 02 emotional_state 0 spirit 1 008 @ 07480068 n 0000 + 00193130 v 0201 ~ 13986189 n 0000 ~ 13986372 n 0000 ~ 13986679 n 0000 ~ 13987423 n 0000 ~ 13988498 n 0000 ~ 13988663 n 0000 | the state of a person's emotions (especially with regard to pleasure or dejection); "his emotional state depended on her opinion"; "he was in good spirits"; "his spirit rose" -13986189 26 n 01 embarrassment 0 001 @ 13985818 n 0000 | the state of being embarrassed (usually by some financial inadequacy); "he is currently suffering financial embarrassments" -13986372 26 n 05 ecstasy 0 rapture 0 transport 0 exaltation 0 raptus 0 006 @ 13985818 n 0000 + 01812324 v 0405 + 01812720 v 0405 + 01817314 v 0303 + 01367008 a 0203 + 01367008 a 0101 | a state of being carried away by overwhelming emotion; "listening to sweet music in a perfect rapture"- Charles Dickens -13986679 26 n 02 gratification 0 satisfaction 0 004 @ 13985818 n 0000 + 01816431 v 0102 ~ 13986943 n 0000 ~ 13987219 n 0000 | state of being gratified or satisfied; "dull repetitious work gives no gratification"; "to my immense gratification he arrived on time" -13986943 26 n 01 quality_of_life 0 001 @ 13986679 n 0000 | your personal satisfaction (or dissatisfaction) with the cultural or intellectual conditions under which you live (as distinct from material comfort); "the new art museum is expected to improve the quality of life" -13987219 26 n 01 comfort 2 001 @ 13986679 n 0000 | satisfaction or physical well-being provided by a person or thing; "his friendship was a comfort"; "a padded chair was one of the room's few comforts" -13987423 26 n 02 happiness 0 felicity 0 009 @ 13985818 n 0000 + 01048406 a 0201 + 01048406 a 0102 + 01148283 a 0101 ! 13988663 n 0101 = 01148283 a 0000 = 01149494 a 0000 ~ 13987719 n 0000 ~ 14051201 n 0000 | state of well-being characterized by emotions ranging from contentment to intense joy -13987719 26 n 03 blessedness 0 beatitude 0 beatification 0 005 @ 13987423 n 0000 + 01812324 v 0306 + 01812068 v 0301 + 01148764 a 0101 ~ 13988224 n 0000 | a state of supreme happiness -13987905 26 n 05 bliss 0 blissfulness 0 cloud_nine 0 seventh_heaven 0 walking_on_air 0 004 @ 14405225 n 0000 + 01813668 v 0502 + 01148897 a 0201 ~ 13988101 n 0000 | a state of extreme happiness -13988101 26 n 02 ecstasy 2 rapture 2 003 @ 13987905 n 0000 + 01367008 a 0203 + 01367008 a 0101 | a state of elated bliss -13988224 26 n 02 nirvana 0 enlightenment 0 003 @ 13987719 n 0000 ;c 06236802 n 0000 ;c 06240244 n 0000 | (Hinduism and Buddhism) the beatitude that transcends the cycle of reincarnation; characterized by the extinction of desire and suffering and individual consciousness -13988498 26 n 01 state 1 002 @ 13985818 n 0000 ;u 07075172 n 0000 | a state of depression or agitation; "he was in such a state you just couldn't reason with him" -13988663 26 n 01 unhappiness 0 005 @ 13985818 n 0000 + 01149494 a 0101 ! 13987423 n 0101 ~ 13988871 n 0000 ~ 13989051 n 0000 | state characterized by emotions ranging from mild discontentment to deep grief -13988871 26 n 01 embitterment 0 002 @ 13988663 n 0000 + 01773535 v 0101 | the state of being embittered; "the embitterment that resulted from the loss of his job never left him" -13989051 26 n 03 sadness 0 sorrow 0 sorrowfulness 0 006 @ 13988663 n 0000 + 01364008 a 0301 + 01797347 v 0202 + 01361863 a 0101 ~ 13989280 n 0000 ~ 13989443 n 0000 | the state of being sad; "she tired of his perpetual sadness" -13989280 26 n 02 mourning 0 bereavement 0 003 @ 13989051 n 0000 + 02315421 v 0201 + 01797051 v 0101 | state of sorrow over the death or departure of a loved one -13989443 26 n 02 poignance 0 poignancy 0 003 @ 13989051 n 0000 + 01712174 a 0201 + 01712174 a 0101 | a state of deeply felt distress or sorrow; "a moment of extraordinary poignancy" -13989627 26 n 01 innocence 0 005 @ 13920835 n 0000 + 01319874 a 0101 ! 13990675 n 0101 ~ 13989863 n 0000 ~ 13990502 n 0000 | a state or condition of being innocent of a specific crime or offense; "the trial established his innocence" -13989863 26 n 04 blamelessness 0 inculpability 0 inculpableness 0 guiltlessness 0 005 @ 13989627 n 0000 + 01319874 a 0402 + 01320705 a 0302 + 01320705 a 0202 + 01320705 a 0101 | a state of innocence -13990064 26 n 05 purity 2 pureness 1 sinlessness 0 innocence 1 whiteness 0 009 @ 13920835 n 0000 + 01905235 a 0501 + 02513614 a 0402 + 02513614 a 0303 + 00361125 a 0201 + 01904845 a 0201 + 01904845 a 0101 + 00475819 v 0101 ~ 13990389 n 0000 | the state of being unsullied by sin or moral wrong; lacking a knowledge of evil -13990389 26 n 01 cleanness 2 003 @ 13990064 n 0000 + 01548808 a 0101 + 00956733 a 0101 | without moral defects -13990502 26 n 01 clear 0 003 @ 13989627 n 0000 + 01320184 a 0102 + 00904046 v 0103 | the state of being free of suspicion; "investigation showed that he was in the clear" -13990675 26 n 02 guilt 0 guiltiness 0 011 @ 13920835 n 0000 + 00154583 a 0201 + 01320988 a 0201 + 01320988 a 0101 ! 13989627 n 0101 ~ 13990960 n 0000 ~ 13991121 n 0000 ~ 13991245 n 0000 ~ 13991346 n 0000 ~ 13991516 n 0000 ~ 13991688 n 0000 | the state of having committed an offense -13990960 26 n 03 blameworthiness 0 culpability 0 culpableness 0 004 @ 13990675 n 0000 + 01321529 a 0306 + 01321529 a 0206 + 01321529 a 0101 | a state of guilt -13991121 26 n 01 bloodguilt 0 002 @ 13990675 n 0000 + 01321939 a 0101 | the state of being guilty of bloodshed and murder -13991245 26 n 01 complicity 0 001 @ 13990675 n 0000 | guilt as an accomplice in a crime or offense -13991346 26 n 03 criminalism 0 criminality 0 criminalness 0 004 @ 13990675 n 0000 + 01402763 a 0301 + 01322323 a 0301 + 01322323 a 0201 | the state of being a criminal -13991516 26 n 01 guilt_by_association 0 001 @ 13990675 n 0000 | the attribution of guilt (without proof) to individuals because the people they associate with are guilty -13991688 26 n 02 impeachability 0 indictability 0 002 @ 13990675 n 0000 + 01322044 a 0202 | the state of being liable to impeachment -13991823 26 n 01 freedom 0 013 @ 00024720 n 0000 = 01061489 a 0000 = 01064286 a 0000 ~ 13992194 n 0000 ~ 13992387 n 0000 ~ 13993685 n 0000 ~ 13993842 n 0000 ~ 13994014 n 0000 ~ 13994148 n 0000 ~ 13994456 n 0000 ~ 13995662 n 0000 ~ 13996061 n 0000 ~ 13996211 n 0000 | the condition of being free; the power to act or speak or think without externally imposed restraints -13992194 26 n 01 academic_freedom 0 001 @ 13991823 n 0000 | the freedom of teachers and students to express their ideas in school without religious or political or institutional restrictions -13992387 26 n 01 enfranchisement 0 002 @ 13991823 n 0000 + 02477135 v 0102 | freedom from political subjugation or servitude -13992514 26 n 02 autonomy 1 liberty 1 006 @ 13994148 n 0000 + 02497400 v 0202 + 02497062 v 0201 + 00728431 a 0101 + 01062393 a 0101 ~ 13992738 n 0000 | immunity from arbitrary exercise of authority: political independence -13992738 26 n 03 self-government 0 self-determination 0 self-rule 0 004 @ 13992514 n 0000 ~ 13992935 n 0000 ~ 13993030 n 0000 ~ 13993210 n 0000 | government of a political unit by its own people -13992935 26 n 01 sovereignty 0 001 @ 13992738 n 0000 | government free from external control -13993030 26 n 01 local_option 0 001 @ 13992738 n 0000 | freedom of a local government to determine by popular vote the applicability of a controversial law in their jurisdiction -13993210 26 n 01 home_rule 0 001 @ 13992738 n 0000 | self-government in local matters by a city or county that is part of a national government -13993356 26 n 02 autarky 0 autarchy 0 004 @ 13994148 n 0000 + 02650795 a 0202 + 00728103 a 0102 + 02650795 a 0103 | economic independence as a national policy -13993517 26 n 01 fragmentation 0 002 @ 14561327 n 0000 + 00338071 v 0102 | the disintegration of social norms governing behavior and thought and social relationships -13993685 26 n 02 free_hand 0 blank_check 0 001 @ 13991823 n 0000 | freedom to do as you see fit; "many have doubts about giving him a free hand to attack" -13993842 26 n 02 free_rein 0 play 1 001 @ 13991823 n 0000 | the removal of constraints; "he gave free rein to his impulses"; "they gave full play to the artist's talent" -13994014 26 n 01 freedom_of_the_seas 0 001 @ 13991823 n 0000 | the right of merchant ships to travel freely in international waters -13994148 26 n 02 independence 0 independency 0 011 @ 13991823 n 0000 + 01062393 a 0202 + 00731606 a 0101 + 01062393 a 0102 + 00727564 a 0101 = 00725772 a 0000 = 00727564 a 0000 ~ 13992514 n 0000 ~ 13993356 n 0000 ~ 14001031 n 0000 ~ 14001213 n 0000 | freedom from control or influence of another or others -13994456 26 n 01 liberty 2 007 @ 13991823 n 0000 + 02497062 v 0101 ~ 13994806 n 0000 ~ 13995148 n 0000 ~ 13995378 n 0000 ~ 13995824 n 0000 ~ 13995935 n 0000 | freedom of choice; "liberty of opinion"; "liberty of worship"; "liberty--perfect liberty--to think or feel or do just as one pleases"; "at liberty to choose whatever occupation one wishes" -13994806 26 n 02 license 1 licence 1 003 @ 13994456 n 0000 + 02444662 v 0202 ~ 13995016 n 0000 | freedom to deviate deliberately from normally applicable rules or practices (especially in behavior or speech) -13995016 26 n 01 poetic_license 0 001 @ 13994806 n 0000 | license used by a writer or artist to heighten the effect of their work -13995148 26 n 01 latitude 0 002 @ 13994456 n 0000 + 00287275 a 0102 | freedom from normal restraints in conduct; "the new freedom in movies and novels"; "allowed his children considerable latitude in how they spent their money" -13995378 26 n 02 license 2 licence 2 002 @ 13994456 n 0000 + 00362269 a 0201 | excessive freedom; lack of due restraint; "when liberty becomes license dictatorship is near"- Will Durant; "the intolerable license with which the newspapers break...the rules of decorum"- Edmund Burke -13995662 26 n 02 civil_liberty 0 political_liberty 0 001 @ 13991823 n 0000 | one's freedom to exercise one's rights as guaranteed under the laws of the country -13995824 26 n 01 discretion 0 002 @ 13994456 n 0000 + 00719819 a 0101 | freedom to act or judge on one's own -13995935 26 n 01 run 0 002 @ 13994456 n 0000 + 02099829 v 0101 | unrestricted freedom to use; "he has the run of the house" -13996061 26 n 01 liberty 3 003 @ 13991823 n 0000 + 02421374 v 0102 + 02497062 v 0101 | personal freedom from servitude or confinement or oppression -13996211 26 n 01 svoboda 0 002 @ 13991823 n 0000 ;r 09003284 n 0000 | (Russia) freedom -13996300 26 n 02 subjugation 0 subjection 0 010 @ 13928668 n 0000 + 02496816 v 0202 + 02496816 v 0101 ~ 13996571 n 0000 ~ 13996719 n 0000 ~ 13997050 n 0000 ~ 13997253 n 0000 ~ 13997529 n 0000 ~ 13998186 n 0000 ~ 13998576 n 0000 | forced submission to control by others -13996571 26 n 01 repression 0 002 @ 13996300 n 0000 + 02424128 v 0101 | a state of forcible subjugation; "the long repression of Christian sects" -13996719 26 n 01 oppression 0 002 @ 13996300 n 0000 ~ 13996909 n 0000 | the state of being kept down by unjust use of force or authority: "after years of oppression they finally revolted" -13996909 26 n 01 yoke 0 001 @ 13996719 n 0000 | an oppressive power; "under the yoke of a tyrant"; "they threw off the yoke of domination" -13997050 26 n 02 enslavement 0 captivity 1 002 @ 13996300 n 0000 + 01065126 a 0201 | the state of being a slave; "So every bondman in his own hand bears the power to cancel his captivity"--Shakespeare -13997253 26 n 05 bondage 0 slavery 0 thrall 0 thralldom 0 thraldom 0 008 @ 13996300 n 0000 + 13997253 n 0503 + 13997253 n 0403 + 13997253 n 0304 + 13997253 n 0305 ~ 13997778 n 0000 ~ 13998014 n 0000 ~ 13998263 n 0000 | the state of being under the control of another person -13997529 26 n 01 bondage 1 001 @ 13996300 n 0000 | the state of being under the control of a force or influence or abstract power; "he was in bondage to fear:; "he sought release from his bondage to Satan"; "a self freed from the bondage of time" -13997778 26 n 01 bonded_labor 0 001 @ 13997253 n 0000 | a practice in which employers give high-interest loans to workers whose entire families then labor at low wages to pay off the debt; the practice is illegal in the United States -13998014 26 n 01 servitude 0 002 @ 13997253 n 0000 ~ 13953057 n 0000 | state of subjection to an owner or master or forced labor imposed as punishment; "penal servitude" -13998186 26 n 01 peonage 0 001 @ 13996300 n 0000 | the condition of a peon -13998263 26 n 03 serfdom 0 serfhood 0 vassalage 0 003 @ 13997253 n 0000 + 10580535 n 0201 + 10580535 n 0101 | the state of a serf -13998395 26 n 01 encapsulation 0 002 @ 13920835 n 0000 + 01587984 v 0101 | the condition of being enclosed (as in a capsule); "the encapsulation of tendons in membranous sheaths" -13998576 26 n 01 confinement 0 006 @ 13996300 n 0000 + 02711114 v 0103 ~ 13998781 n 0000 ~ 13999206 n 0000 ~ 13999663 n 0000 ~ 13999941 n 0000 | the state of being confined; "he was held in confinement" -13998781 26 n 02 constraint 0 restraint 0 003 @ 13998576 n 0000 + 01301410 v 0201 ~ 13998966 n 0000 | the state of being physically constrained; "dogs should be kept under restraint" -13998966 26 n 01 cage 0 003 @ 13998781 n 0000 + 02496036 v 0101 ~ 13999114 n 0000 | something that restricts freedom as a cage restricts movement -13999114 26 n 01 iron_cage 0 001 @ 13998966 n 0000 | a cage from which there is no escape -13999206 26 n 04 captivity 2 imprisonment 0 incarceration 0 immurement 0 008 @ 13998576 n 0000 + 02494356 v 0404 + 02494356 v 0302 + 02495817 v 0201 + 01065126 a 0101 ~ 14000105 n 0000 ~ 14000200 n 0000 ~ 14000302 n 0000 | the state of being imprisoned; "he was held in captivity until he died"; "the imprisonment of captured soldiers"; "his ignominious incarceration in the local jail"; "he practiced the immurement of his enemies in the castle dungeon" -13999663 26 n 04 detention 0 detainment 0 hold 0 custody 0 003 @ 13998576 n 0000 + 01301410 v 0303 + 02495038 v 0102 | a state of being confined (usually for a short time); "his detention was politically motivated"; "the prisoner is on hold"; "he is in the custody of police" -13999941 26 n 02 solitary_confinement 0 solitary 0 001 @ 13998576 n 0000 | confinement of a prisoner in isolation from other prisoners; "he was held in solitary" -14000105 26 n 01 durance 0 001 @ 13999206 n 0000 | imprisonment (especially for a long time) -14000200 26 n 01 life_imprisonment 0 001 @ 13999206 n 0000 | a sentence of imprisonment until death -14000302 26 n 01 internment 0 002 @ 13999206 n 0000 + 02495387 v 0101 | confinement during wartime -14000403 26 n 03 representation 0 delegacy 0 agency 0 006 @ 00024720 n 0000 + 09777353 n 0301 + 02541509 v 0101 ~ 14000642 n 0000 ~ 14000820 n 0000 ~ 14007864 n 0000 | the state of serving as an official and authorized delegate or agent -14000642 26 n 01 free_agency 0 002 @ 14000403 n 0000 ;c 00523513 n 0000 | (sports) the state of a professional athlete who is free to negotiate a contract to play for any team -14000820 26 n 01 legal_representation 0 002 @ 14000403 n 0000 ;c 08441203 n 0000 | personal representation that has legal status; "an person who has been declared incompetent should have legal representation" -14001031 26 n 04 autonomy 2 self-direction 0 self-reliance 0 self-sufficiency 0 004 @ 13994148 n 0000 + 00729439 a 0401 + 00728225 a 0303 + 00728225 a 0101 | personal independence -14001213 26 n 01 separateness 1 001 @ 13994148 n 0000 | political independence; "seeking complete political separateness for Taiwan" -14001348 26 n 03 dependence 0 dependance 0 dependency 0 008 @ 00024720 n 0000 + 00725772 a 0301 + 00712708 v 0303 + 00725772 a 0101 ~ 14001629 n 0000 ~ 14001728 n 0000 ~ 14001852 n 0000 ~ 14001973 n 0000 | the state of relying on or being controlled by someone or something else -14001629 26 n 01 helplessness 0 001 @ 14001348 n 0000 | the state of needing help from something -14001728 26 n 01 reliance 0 003 @ 14001348 n 0000 + 00727113 a 0101 + 00688377 v 0103 | the state of relying on something -14001852 26 n 01 subordination 0 002 @ 14001348 n 0000 + 00659535 v 0101 | the state of being subordinate to something -14001973 26 n 01 contingency 0 003 @ 14001348 n 0000 + 00341933 a 0101 + 00555859 a 0101 | the state of being contingent on something -14002109 26 n 02 polarization 0 polarisation 0 004 @ 13920835 n 0000 + 00487350 v 0202 + 00487182 v 0202 + 00487554 v 0101 | the condition of having or giving polarity -14002279 26 n 01 balance 0 008 @ 13934900 n 0000 + 02743020 v 0101 + 02673134 v 0101 + 01602318 v 0102 ! 14004149 n 0101 ~ 14002481 n 0000 ~ 14017665 n 0000 ~ 14017871 n 0000 | a state of equilibrium -14002481 26 n 01 tension 2 003 @ 14002279 n 0000 ;c 00933420 n 0000 ;c 06364641 n 0000 | a balance between and interplay of opposing elements or tendencies (especially in art or literature); "there is a tension created between narrative time and movie time"; "there is a tension between these approaches to understanding history" -14002813 26 n 01 balance_of_power 0 001 @ 13934900 n 0000 | an equilibrium of power between nations -14002915 26 n 01 dynamic_balance 0 002 @ 13934900 n 0000 ;c 06096913 n 0000 | (aeronautics) the state of equilibrium in which centrifugal forces due to a rotating mass (e.g., a propeller) do not produce force in the shaft and so vibration is reduced -14003167 26 n 01 homeostasis 0 003 @ 13934900 n 0000 ;c 06080522 n 0000 + 02741032 a 0101 | (physiology) metabolic equilibrium actively maintained by several complex biological mechanisms that operate via the autonomic nervous system to offset disrupting changes -14003432 26 n 01 isostasy 0 002 @ 13934900 n 0000 ;c 06115701 n 0000 | (geology) a general equilibrium of the forces tending to elevate or depress the earth's crust -14003599 26 n 01 Nash_equilibrium 0 002 @ 13934900 n 0000 ;c 06150222 n 0000 | (game theory) a stable state of a system that involves several interacting participants in which no participant can gain by a change of strategy as long as all the other participants remain unchanged -14003880 26 n 01 poise 0 003 @ 13934900 n 0000 + 01602318 v 0101 + 01602665 v 0101 | a state of being balanced in a stable equilibrium -14004017 26 n 01 thermal_equilibrium 0 001 @ 13934900 n 0000 | a state in which all parts of a system are at the same temperature -14004149 26 n 03 imbalance 0 instability 1 unbalance 0 002 @ 13934274 n 0000 ! 14002279 n 0101 | a lack of balance or state of disequilibrium; "a hormonal imbalance" -14004317 26 n 01 motion 0 009 @ 00024720 n 0000 + 00014549 v 0102 ! 14006179 n 0101 = 01561771 a 0000 = 01564073 a 0000 ~ 14004572 n 0000 ~ 14005549 n 0000 ~ 14005728 n 0000 ~ 14005892 n 0000 | a state of change; "they were in a state of steady motion" -14004572 26 n 07 shaking 0 shakiness 0 trembling 0 quiver 0 quivering 0 vibration 1 palpitation 1 012 @ 14004317 n 0000 + 01889129 v 0703 + 02824444 a 0601 + 01891249 v 0601 + 01889129 v 0501 + 01889129 v 0401 + 01888511 v 0301 + 02304565 a 0201 + 02292797 a 0202 + 00014034 v 0101 ~ 14004958 n 0000 ~ 14005137 n 0000 | a shaky motion; "the shaking of his fingers as he lit his pipe" -14004958 26 n 01 tremolo 0 002 @ 14004572 n 0000 ;c 07020895 n 0000 | (music) a tremulous effect produced by rapid repetition of a single tone or rapid alternation of two tones -14005137 26 n 01 tremor 0 003 @ 14004572 n 0000 #p 14094350 n 0000 ~ 14005302 n 0000 | shaking or trembling (usually resulting from weakness or stress or disease) -14005302 26 n 01 essential_tremor 0 001 @ 14005137 n 0000 | tremor of unknown cause (usually of the hands and head) that develops in older people; often mistaken for Parkinsonism but is not life-threatening and can usually be kept under control -14005549 26 n 01 perpetual_motion 0 001 @ 14004317 n 0000 | motion that continues indefinitely without any external source of energy; impossible in practice because of friction -14005728 26 n 01 precession 0 001 @ 14004317 n 0000 | the motion of a spinning body (as a top) in which it wobbles so that the axis of rotation sweeps out a cone -14005892 26 n 02 stream 0 flow 0 004 @ 14004317 n 0000 + 02066510 v 0201 + 02028366 v 0103 + 02070679 v 0101 | something that resembles a flowing stream in moving continuously; "a stream of people emptied from the terminal"; "the museum had planned carefully for the flow of visitors" -14006179 26 n 03 motionlessness 0 stillness 1 lifelessness 0 009 @ 00024720 n 0000 + 00119533 a 0301 + 01087557 a 0301 + 01241600 a 0201 + 01564315 a 0204 + 01565751 a 0201 + 01564315 a 0102 ! 14004317 n 0101 ~ 14006490 n 0000 | a state of no motion or movement; "the utter motionlessness of a marble statue" -14006490 26 n 03 stationariness 0 immobility 0 fixedness 0 006 @ 14006179 n 0000 + 01564603 a 0301 + 01059711 a 0203 + 01565252 a 0101 + 01060445 a 0101 ~ 14006684 n 0000 | remaining in place -14006684 26 n 01 rootage 0 001 @ 14006490 n 0000 | fixedness by or as if by roots; "strengthened by rootage in the firm soil of faith" -14006821 26 n 02 dead_letter 0 non-issue 0 001 @ 00024720 n 0000 | the state of something that has outlived its relevance -14006945 26 n 03 action 0 activity 0 activeness 0 026 @ 00024720 n 0000 + 01660444 a 0301 + 01515280 a 0301 + 00927373 a 0301 + 00043411 a 0301 + 00034710 a 0301 + 00042457 a 0301 + 00040325 a 0301 + 00038750 a 0301 + 00037457 a 0301 ! 14010148 n 0303 + 01660444 a 0201 + 00034710 a 0201 ! 14010148 n 0202 + 02419073 v 0101 + 02367363 v 0101 ! 14010148 n 0101 = 00040325 a 0000 ~ 14007546 n 0000 ~ 14008050 n 0000 ~ 14008342 n 0000 ~ 14008567 n 0000 ~ 14008806 n 0000 ~ 14009020 n 0000 ~ 14009763 n 0000 ~ 14009946 n 0000 | the state of being active; "his sphere of activity"; "he is out of action" -14007546 26 n 01 agency 1 004 @ 14006945 n 0000 + 02607909 a 0101 + 09190918 n 0101 ~ 14007750 n 0000 | the state of being in action or exerting power; "the agency of providence"; "she has free agency" -14007750 26 n 01 Frankenstein 0 001 @ 14007546 n 0000 | an agency that escapes control and destroys its creator -14007864 26 n 01 virus 0 001 @ 14000403 n 0000 | a harmful or corrupting agency; "bigotry is a virus that must not be allowed to spread"; "the virus of jealousy is latent in everyone" -14008050 26 n 02 busyness 0 hum 0 004 @ 14006945 n 0000 + 00035978 a 0101 + 01623360 a 0101 + 00292937 a 0101 | the state of being or appearing to be actively engaged in an activity; "they manifested all the busyness of a pack of beavers"; "there is a constant hum of military preparation" -14008342 26 n 02 behavior 0 behaviour 0 001 @ 14006945 n 0000 | the action or reaction of something (as a machine or substance) under specified circumstances; "the behavior of small particles can be studied in experiments" -14008567 26 n 03 eruption 1 eructation 0 extravasation 0 006 @ 14006945 n 0000 ;c 09470550 n 0000 + 00307568 v 0303 + 00068858 v 0301 + 00077071 v 0203 + 00307568 v 0101 | (of volcanos) pouring out fumes or lava (or a deposit so formed) -14008806 26 n 01 operation 0 005 @ 14006945 n 0000 + 01510827 v 0104 ~ 14009274 n 0000 ~ 14009481 n 0000 ~ 14009618 n 0000 | the state of being in effect or being operative; "that rule is no longer in operation" -14009020 26 n 01 overdrive 0 002 @ 14006945 n 0000 + 02408530 v 0101 | the state of high or excessive activity or productivity or concentration; "Troops are ready to go into overdrive as soon as the signal is given"; "Melissa's brain was in overdrive" -14009274 26 n 01 commission 0 002 @ 14008806 n 0000 + 02475401 v 0101 | the state of being in good working order and ready for operation; "put the ships into commission"; "the motor was out of commission" -14009481 26 n 01 running 0 002 @ 14008806 n 0000 + 01526290 v 0101 | the state of being in operation; "the engine is running smoothly" -14009618 26 n 01 idle 0 001 @ 14008806 n 0000 | the state of an engine or other mechanism that is idling; "the car engine was running at idle" -14009763 26 n 01 play 0 002 @ 14006945 n 0000 + 02370650 v 0101 | a state in which action is feasible; "the ball was still in play"; "insiders said the company's stock was in play" -14009946 26 n 01 swing 1 001 @ 14006945 n 0000 | a state of steady vigorous action that is characteristic of an activity; "the party went with a swing"; "it took time to get into the swing of things" -14010148 26 n 03 inaction 0 inactivity 0 inactiveness 0 022 @ 00024720 n 0000 + 00040685 a 0302 + 00036481 a 0301 ! 14006945 n 0303 + 01929802 a 0201 + 01564315 a 0201 + 00040685 a 0202 ! 14006945 n 0202 ! 14006945 n 0101 ~ 14010636 n 0000 ~ 14010845 n 0000 ~ 14010927 n 0000 ~ 14011408 n 0000 ~ 14011557 n 0000 ~ 14011724 n 0000 ~ 14011811 n 0000 ~ 14012173 n 0000 ~ 14012311 n 0000 ~ 14012501 n 0000 ~ 14012667 n 0000 ~ 14013005 n 0000 ~ 14013249 n 0000 | the state of being inactive -14010636 26 n 02 abeyance 0 suspension 0 007 @ 14010148 n 0000 + 00363493 v 0202 + 00034032 a 0101 ~ 14013549 n 0000 ~ 14013646 n 0000 ~ 14013751 n 0000 ~ 14013841 n 0000 | temporary cessation or suspension -14010845 26 n 01 anergy 1 001 @ 14010148 n 0000 | inactivity and lack of energy -14010927 26 n 07 arrest 0 check 0 halt 0 hitch 0 stay 0 stop 0 stoppage 0 009 @ 14010148 n 0000 + 00362610 v 0702 + 00362610 v 0602 + 01860795 v 0302 + 01859586 v 0301 + 01861403 v 0201 + 00354634 v 0201 ~ 14015266 n 0000 ~ 14015596 n 0000 | the state of inactivity following an interruption; "the negotiations were in arrest"; "held them in check"; "during the halt he got some lunch"; "the momentary stay enabled him to escape the blow"; "he spent the entire stop in his seat" -14011408 26 n 01 calcification 1 002 @ 14010148 n 0000 + 00572362 v 0101 | an inflexible and unchanging state; "the calcification of negotiations" -14011557 26 n 01 deep_freeze 0 001 @ 14010148 n 0000 | temporary inactivity or suspension; "the legislation has now been revived after ten years in the deep freeze" -14011724 26 n 01 desuetude 0 001 @ 14010148 n 0000 | a state of inactivity or disuse -14011811 26 n 03 dormancy 0 quiescence 0 quiescency 0 011 @ 14010148 n 0000 + 00043231 a 0301 + 00188155 a 0301 + 00043231 a 0201 + 00034032 a 0102 + 00188155 a 0101 + 00040685 a 0101 = 00040685 a 0000 ~ 14013981 n 0000 ~ 14014162 n 0000 ~ 14015148 n 0000 | a state of quiet (but possibly temporary) inaction; "the volcano erupted after centuries of dormancy" -14012173 26 n 01 extinction 2 002 @ 14010148 n 0000 = 00041051 a 0000 | no longer active; extinguished; "the extinction of the volcano" -14012311 26 n 01 holding_pattern 0 001 @ 14010148 n 0000 | a state of inaction with no progress and no change; "you should go into a holding pattern until he gets over his disappointment" -14012501 26 n 01 rest 0 003 @ 14010148 n 0000 + 00779601 v 0101 + 01545883 v 0101 | a state of inaction; "a body will continue in a state of rest until acted upon" -14012667 26 n 03 stagnation 0 stagnancy 0 doldrums 2 008 @ 14010148 n 0000 ;c 01094725 n 0000 ;c 00933420 n 0000 + 00810764 a 0201 + 02417504 v 0204 + 02725067 v 0101 + 02725286 v 0101 + 02417504 v 0104 | a state of inactivity (in business or art etc); "economic growth of less than 1% per year is considered to be economic stagnation" -14013005 26 n 02 stagnation 1 stagnancy 1 006 @ 14010148 n 0000 + 01241248 a 0202 + 02725067 v 0201 + 02724835 v 0201 + 02725067 v 0101 + 02724835 v 0101 | inactivity of liquids; being stagnant; standing still; without current or circulation -14013249 26 n 01 stasis 0 001 @ 14010148 n 0000 | inactivity resulting from a static balance between opposing forces -14013368 26 n 01 recession 0 001 @ 14488594 n 0000 | the state of the economy declines; a widespread decline in the GDP and employment and trade lasting from six months to a year -14013549 26 n 01 cold_storage 0 001 @ 14010636 n 0000 | in a state of abeyance or postponement -14013646 26 n 02 deferral 0 recess 0 001 @ 14010636 n 0000 | a state of abeyance or suspended business -14013751 26 n 01 moratorium 0 001 @ 14010636 n 0000 | suspension of an ongoing activity -14013841 26 n 02 standdown 0 stand-down 0 001 @ 14010636 n 0000 | a suspension and relaxation from an alert state or a state of readiness -14013981 26 n 01 hibernation 1 002 @ 14011811 n 0000 + 00015946 v 0101 | cessation from or slowing of activity during the winter; especially slowing of metabolism in some animals -14014162 26 n 02 estivation 0 aestivation 0 004 @ 14011811 n 0000 ;c 06083243 n 0000 + 00016183 v 0202 + 00016183 v 0101 | (zoology) cessation or slowing of activity during the summer; especially slowing of metabolism in some animals during a hot or dry period -14014425 26 n 01 acathexia 0 001 @ 14034177 n 0000 | an inability to retain bodily secretions -14014521 26 n 01 angiotelectasia 0 001 @ 14034177 n 0000 | dilation and enlargement of arterioles -14014621 26 n 02 torpor 0 torpidity 0 004 @ 14034177 n 0000 + 00034322 a 0204 ~ 14014849 n 0000 ~ 14014990 n 0000 | a state of motor and mental inactivity with a partial suspension of sensibility; "he fell into a deep torpor" -14014849 26 n 01 hibernation 0 002 @ 14014621 n 0000 + 00015946 v 0101 | the torpid or resting state in which some animals pass the winter -14014990 26 n 03 lethargy 0 lassitude 0 sluggishness 0 002 @ 14014621 n 0000 ~ 05681252 n 0000 | a state of comatose torpor (as found in sleeping sickness) -14015148 26 n 01 slumber 0 003 @ 14011811 n 0000 + 01922410 a 0102 + 01922410 a 0101 | a dormant or quiescent state -14015266 26 n 01 countercheck 0 001 @ 14010927 n 0000 | a check that restrains another check -14015361 26 n 05 deadlock 0 dead_end 0 impasse 0 stalemate 2 standstill 0 002 @ 14411243 n 0000 + 01834485 v 0501 | a situation in which no progress can be made or no advancement is possible; "reached an impasse on the negotiations" -14015596 26 n 01 logjam 0 001 @ 14010927 n 0000 | any stoppage attributable to unusual activity; "the legislation ran into a logjam" -14015731 26 n 01 temporary_state 0 010 @ 00024720 n 0000 ~ 14016114 n 0000 ~ 14016361 n 0000 ~ 14017332 n 0000 ~ 14018567 n 0000 ~ 14019138 n 0000 ~ 14022959 n 0000 ~ 14030435 n 0000 ~ 14032599 n 0000 ~ 14032737 n 0000 | a state that continues for a limited time -14015996 26 n 01 case 2 001 @ 14016114 n 0000 | a specific state of mind that is temporary; "a case of the jitters" -14016114 26 n 02 state_of_mind 2 frame_of_mind 0 004 @ 14015731 n 0000 @ 14373582 n 0000 ~ 14015996 n 0000 ~ 14016275 n 0000 | a temporary psychological state -14016275 26 n 01 thinking_cap 0 001 @ 14016114 n 0000 | a state in which one thinks -14016361 26 n 03 fatigue 0 weariness 0 tiredness 0 009 @ 14015731 n 0000 + 02431728 a 0301 + 02432428 a 0202 + 00075021 v 010c ~ 14016863 n 0000 ~ 14017033 n 0000 ~ 14017206 n 0000 ~ 14018318 n 0000 ~ 14018432 n 0000 | temporary loss of strength and energy resulting from hard physical or mental work; "he was hospitalized for extreme fatigue"; "growing fatigue was apparent from the decline in the execution of their athletic skills"; "weariness overcame her after twelve hours and she fell asleep" -14016863 26 n 02 eyestrain 0 asthenopia 0 001 @ 14016361 n 0000 | a tiredness of the eyes caused by prolonged close work by a person with an uncorrected vision problem -14017033 26 n 01 jet_lag 0 001 @ 14016361 n 0000 | fatigue and sleep disturbance resulting from disruption of the body's normal circadian rhythm as a result of jet travel -14017206 26 n 01 exhaustion 0 004 @ 14016361 n 0000 ~ 04635010 n 0000 ~ 14018055 n 0000 ~ 14018203 n 0000 | extreme fatigue -14017332 26 n 01 depletion 0 003 @ 14015731 n 0000 + 01157517 v 0105 ~ 14017451 n 0000 | the state of being depleted -14017451 26 n 01 salt_depletion 0 001 @ 14017332 n 0000 | loss of salt from the body without replacement (loss by vomiting or profuse perspiration or urination or diarrhea) thus upsetting the electrolyte balance -14017665 26 n 01 electrolyte_balance 0 001 @ 14002279 n 0000 | an equilibrium between the amounts of electrolytes (as calcium and sodium and potassium) that is essential for normal health and functioning -14017871 26 n 01 nitrogen_balance 0 001 @ 14002279 n 0000 | the balance between the amount of nitrogen taken in (to the soil or the body) and the amount given off (lost or excreted) -14018055 26 n 01 frazzle 0 003 @ 14017206 n 0000 ;u 07075172 n 0000 + 00075708 v 0101 | a state of extreme exhaustion; "he was worn to a frazzle" -14018203 26 n 02 mental_exhaustion 0 brain-fag 0 001 @ 14017206 n 0000 | exhaustion that affects mental keenness -14018318 26 n 01 grogginess 0 002 @ 14016361 n 0000 + 00875962 a 0103 | a groggy state resulting from weariness -14018432 26 n 02 loginess 0 logginess 0 002 @ 14016361 n 0000 + 00875962 a 0104 | a dull and listless state resulting from weariness -14018567 26 n 06 drunkenness 0 inebriation 0 inebriety 0 intoxication 0 tipsiness 0 insobriety 0 010 @ 14015731 n 0000 + 00798384 a 0503 + 01190494 v 0401 + 00088532 v 0401 + 01190494 v 0203 + 01190277 v 0203 + 00798491 a 0103 ! 14019138 n 0101 ~ 14018918 n 0000 ~ 14019039 n 0000 | a temporary state resulting from excessive consumption of alcohol -14018918 26 n 01 grogginess 1 002 @ 14018567 n 0000 + 00875962 a 0103 | a dazed and staggering state caused by alcohol -14019039 26 n 01 sottishness 0 002 @ 14018567 n 0000 + 00798491 a 0104 | stupefaction from drink -14019138 26 n 02 soberness 0 sobriety 0 003 @ 14015731 n 0000 + 00799517 a 0101 ! 14018567 n 0101 | the state of being sober and not intoxicated by alcohol -14019296 26 n 01 acardia 0 002 @ 14501726 n 0000 #p 01460108 n 0000 | congenital absence of the heart (as in the development of some monsters) -14019441 26 n 03 acephalia 0 acephaly 0 acephalism 0 002 @ 14501726 n 0000 #p 01460108 n 0000 | absence of the head (as in the development of some monsters) -14019600 26 n 01 acidosis 0 006 @ 14204950 n 0000 + 02601674 a 0101 ~ 14019840 n 0000 ~ 14020023 n 0000 ~ 14020271 n 0000 ~ 14020558 n 0000 | abnormally high acidity (excess hydrogen-ion concentration) of the blood and other body tissues -14019840 26 n 02 ketoacidosis 0 diabetic_acidosis 0 002 @ 14019600 n 0000 #p 14118423 n 0000 | acidosis with an accumulation of ketone bodies; occurs primarily in diabetes mellitus -14020023 26 n 01 metabolic_acidosis 0 001 @ 14019600 n 0000 | acidosis and bicarbonate concentration in the body fluids resulting either from the accumulation of acids or the abnormal loss of bases from the body (as in diarrhea or renal disease) -14020271 26 n 02 respiratory_acidosis 0 carbon_dioxide_acidosis 0 001 @ 14019600 n 0000 | acidosis resulting from reduced gas exchange in the lungs (as in emphysema or pneumonia); excess carbon dioxide combines with water to form carbonic acid which increases the acidity of the blood -14020558 26 n 01 starvation_acidosis 0 001 @ 14019600 n 0000 | acidosis in which the acidity results from lack of food which leads to fat catabolism which in turn releases acidic ketone bodies -14020753 26 n 01 acidemia 0 001 @ 14189204 n 0000 | a blood disorder characterized by an increased concentration of hydrogen ions in the blood (which falls below 7 on the pH scale) -14020936 26 n 01 alkalemia 0 001 @ 14189204 n 0000 | a blood disorder characterized by a lower concentration of hydrogen ions in the blood (which rises above 7.45 on the pH scale) -14021118 26 n 02 alkalinuria 0 alkaluria 0 001 @ 14299637 n 0000 | a condition in which the urine (which is normally slightly acidic) is alkaline -14021266 26 n 01 alkalosis 0 004 @ 14204950 n 0000 + 02612058 a 0101 ~ 14021471 n 0000 ~ 14021622 n 0000 | abnormally high alkalinity (low hydrogen-ion concentration) of the blood and other body tissues -14021471 26 n 01 metabolic_alkalosis 0 001 @ 14021266 n 0000 | alkalosis resulting from hydrogen-ion loss or excessive intake of alkaline substances -14021622 26 n 01 respiratory_alkalosis 0 001 @ 14021266 n 0000 | alkalosis resulting from increased gas exchange in the lungs (as in hyperventilation associated with extreme anxiety or aspirin intoxication or metabolic acidosis) -14021853 26 n 01 acorea 0 001 @ 14501726 n 0000 | absence of the pupil in an eye -14021936 26 n 02 acromicria 0 acromikria 0 001 @ 14501726 n 0000 | abnormally small extremities (underdeveloped fingers and toes) -14022068 26 n 01 acromphalus 0 001 @ 14501726 n 0000 | abnormal protrusion of the navel; sometimes the start of umbilical hernia -14022199 26 n 02 agalactia 0 agalactosis 0 001 @ 14034177 n 0000 | a condition in which milk is not secreted in the mother's breasts after her child has been delivered -14022369 26 n 01 amastia 0 002 @ 14501726 n 0000 ;c 06063588 n 0000 | absence of the mammary glands (either through surgery or developmental defect) -14022520 26 n 02 ankylosis 0 anchylosis 0 002 @ 14204950 n 0000 + 02625149 a 0101 | abnormal adhesion and rigidity of the bones of a joint -14022661 26 n 01 aneuploidy 0 001 @ 14501726 n 0000 | an abnormality involving a chromosome number that is not an exact multiple of the haploid number (one chromosome set is incomplete) -14022849 26 n 03 anorchism 0 anorchidism 0 anorchia 0 001 @ 14501726 n 0000 | absence of one of both testes -14022959 26 n 02 wakefulness 0 sleeplessness 0 004 @ 14015731 n 0000 + 00187176 a 0202 + 00693570 a 0102 ! 14030435 n 0101 | a temporary state in which you are unable (or unwilling) to sleep; "accept your wakefulness and sleep in its own contrary way is more likely to come" -14023236 26 n 01 hypersomnia 0 004 @ 14297696 n 0000 ! 14023374 n 0101 ~ 14070206 n 0000 ~ 14307468 n 0000 | an inability to stay awake -14023374 26 n 01 insomnia 0 002 @ 14297696 n 0000 ! 14023236 n 0101 | an inability to sleep; chronic sleeplessness -14023491 26 n 02 anesthesia 0 anaesthesia 0 011 @ 14034177 n 0000 + 02103052 a 0202 + 09793495 n 0203 + 02103052 a 0101 + 09793495 n 0102 ~ 14026869 n 0000 ~ 14026981 n 0000 ~ 14027204 n 0000 ~ 14027396 n 0000 ~ 14027674 n 0000 ~ 14028087 n 0000 | loss of bodily sensation with or without loss of consciousness -14023804 26 n 02 anhidrosis 0 anhydrosis 0 001 @ 14034177 n 0000 | failure of the sweat glands -14023901 26 n 01 aplasia 0 001 @ 14365950 n 0000 | failure of some tissue or organ to develop -14023997 26 n 01 arousal 0 006 @ 14034177 n 0000 ~ 14036043 n 0000 ~ 14036203 n 0000 ~ 14036356 n 0000 ~ 14037619 n 0000 ~ 14038993 n 0000 | a state of heightened physiological activity -14024185 26 n 02 arteriectasis 0 arteriectasia 0 001 @ 14204950 n 0000 | an abnormal distension of an artery -14024296 26 n 01 arthropathy 0 001 @ 14204950 n 0000 | a pathology or abnormality of a joint -14024391 26 n 02 asynergy 0 asynergia 0 003 @ 14204950 n 0000 + 02646804 a 0201 + 02646804 a 0101 | absence of coordination of organs or body parts that usually work together harmoniously -14024581 26 n 03 asystole 0 cardiac_arrest 0 cardiopulmonary_arrest 0 001 @ 14204950 n 0000 | absence of systole; failure of the ventricles of the heart to contract (usually caused by ventricular fibrillation) with consequent absence of the heart beat leading to oxygen lack and eventually to death -14024882 26 n 02 sleep 0 slumber 1 009 @ 14034177 n 0000 + 00189253 a 0202 + 00014742 v 0203 + 00189017 a 0101 + 00014742 v 0101 ~ 05681117 n 0000 ~ 14025478 n 0000 ~ 14025755 n 0000 ~ 14026089 n 0000 | a natural and periodic state of rest during which consciousness of the world is suspended; "he didn't get enough sleep last night"; "calm as a child in dreamless slumber" -14025258 26 n 02 sleep_terror_disorder 0 pavor_nocturnus 0 001 @ 14297696 n 0000 | a disorder of sleep characterized by a dream of terrifying dimensions far worse than a typical nightmare; they occur during NREM sleep -14025478 26 n 05 orthodox_sleep 0 nonrapid_eye_movement_sleep 0 NREM_sleep 0 nonrapid_eye_movement 0 NREM 0 001 @ 14024882 n 0000 | a recurring sleep state during which rapid eye movements do not occur and dreaming does not occur; accounts for about 75% of normal sleep time -14025755 26 n 05 paradoxical_sleep 0 rapid_eye_movement_sleep 0 REM_sleep 0 rapid_eye_movement 0 REM 0 001 @ 14024882 n 0000 | a recurring sleep state during which dreaming occurs; a state of rapidly shifting eye movements during sleep -14025993 26 n 02 sleep 2 sopor 0 001 @ 14034177 n 0000 | a torpid state resembling deep sleep -14026089 26 n 01 shuteye 0 001 @ 14024882 n 0000 | informal term for sleep -14026166 26 n 02 abulia 0 aboulia 0 003 @ 14373582 n 0000 + 01583486 a 0202 + 01583486 a 0101 | a loss of will power -14026285 26 n 01 anhedonia 0 001 @ 14373582 n 0000 | an inability to experience pleasure -14026376 26 n 02 depersonalization 1 depersonalisation 1 002 @ 14373582 n 0000 ;c 05970755 n 0000 | (existentialism) a loss of personal identity; a feeling of being an anonymous cog in an impersonal social machine -14026592 26 n 01 hypnosis 0 005 @ 14373582 n 0000 + 00168188 a 0101 + 00020671 v 0101 + 00020671 v 0102 ~ 14026781 n 0000 | a state that resembles sleep but that is induced by suggestion -14026781 26 n 01 self-hypnosis 0 001 @ 14026592 n 0000 | hypnosis induced by yourself -14026869 26 n 02 cryoanesthesia 0 cryoanaesthesia 0 001 @ 14023491 n 0000 | insensibility resulting from cold -14026981 26 n 02 general_anesthesia 0 general_anaesthesia 0 003 @ 14023491 n 0000 ~ 14029943 n 0000 ~ 14030084 n 0000 | a state of total unconsciousness resulting from anesthetic drugs (as for a major surgical operation) -14027204 26 n 02 local_anesthesia 0 local_anaesthesia 0 001 @ 14023491 n 0000 | loss of sensation in a small area of the body (as when a local anesthetic is injected for a tooth extraction) -14027396 26 n 06 conduction_anesthesia 0 conduction_anaesthesia 0 nerve_block_anesthesia 0 nerve_block_anaesthesia 0 block_anesthesia 0 block_anaesthesia 0 001 @ 14023491 n 0000 | anesthesia of an area supplied by a nerve; produced by an anesthetic agent applied to the nerve -14027674 26 n 02 regional_anesthesia 0 regional_anaesthesia 0 007 @ 14023491 n 0000 ~ 14028291 n 0000 ~ 14028406 n 0000 ~ 14028652 n 0000 ~ 14028967 n 0000 ~ 14029163 n 0000 ~ 14029405 n 0000 | loss of sensation in a region of the body produced by application of an anesthetic agent to all the nerves supplying that region (as when an epidural anesthetic is administered to the pelvic region during childbirth) -14028087 26 n 02 topical_anesthesia 0 topical_anaesthesia 0 001 @ 14023491 n 0000 | loss of sensation confined to the skin or mucous surfaces (as when benzocaine or Lidocaine is applied to the surface) -14028291 26 n 02 acroanesthesia 0 acroanaesthesia 0 001 @ 14027674 n 0000 | loss of sensation in the extremities -14028406 26 n 03 caudal_anesthesia 0 caudal_anaesthesia 0 caudal_block 0 001 @ 14027674 n 0000 | regional anesthesia resulting from injection of an anesthetic into the caudal end of the spinal canal; now largely replaced by epidural anesthesia -14028652 26 n 03 epidural_anesthesia 0 epidural_anaesthesia 0 epidural 0 001 @ 14027674 n 0000 | regional anesthesia resulting from injection of an anesthetic into the epidural space of the spinal cord; sensation is lost in the abdominal and genital and pelvic areas; used in childbirth and gynecological surgery -14028967 26 n 01 paracervical_block 0 001 @ 14027674 n 0000 | regional anesthesia resulting from the injection of a local anesthetic on each side of the cervix; used during labor and childbirth -14029163 26 n 01 pudendal_block 0 001 @ 14027674 n 0000 | regional anesthesia resulting from the use of a local anesthetic to deaden the pudendal nerves in the region of the vulva and labia majora; used to ease discomfort during childbirth -14029405 26 n 03 spinal_anesthesia 0 spinal_anaesthesia 0 spinal 0 002 @ 14027674 n 0000 ~ 14029686 n 0000 | anesthesia of the lower half of the body; caused by injury to the spinal cord or by injecting an anesthetic beneath the arachnoid membrane that surrounds the spinal cord -14029686 26 n 02 saddle_block_anesthesia 0 saddle_block_anaesthesia 0 001 @ 14029405 n 0000 | the parts of a patient's body that would touch a saddle if the patient were sitting in one are anesthetized by injecting a local anesthetic into the spinal cord -14029943 26 n 01 inhalation_anesthesia 0 001 @ 14026981 n 0000 | general anesthesia achieved by administration of an inhalation anesthetic -14030084 26 n 01 twilight_sleep 0 001 @ 14026981 n 0000 | a state of general anesthesia in which the person retains a slight degree of consciousness; can be induced by injection of scopolamine or morphine -14030291 26 n 01 fugue 0 002 @ 14373582 n 0000 + 03011126 a 0101 | a dreamlike state of altered consciousness that may last for hours or days -14030435 26 n 03 sleepiness 0 drowsiness 0 somnolence 0 006 @ 14015731 n 0000 + 00189253 a 0304 + 00188436 a 0201 + 00189017 a 0101 ! 14022959 n 0101 ~ 14030671 n 0000 | a very sleepy state; "sleepiness causes many driving accidents" -14030671 26 n 02 oscitancy 0 oscitance 0 003 @ 14030435 n 0000 @ 05646039 n 0000 + 00165766 a 0102 | drowsiness and dullness manifested by yawning -14030820 26 n 06 imminence 0 imminency 0 imminentness 0 impendence 0 impendency 0 forthcomingness 0 007 @ 00024720 n 0000 + 01732601 a 0603 + 00448314 a 0504 + 02726884 v 0501 + 02726884 v 0401 + 00448314 a 0203 + 00448314 a 0103 | the state of being imminent and liable to happen soon -14031108 26 n 03 readiness 0 preparedness 0 preparation 0 010 @ 00024720 n 0000 ;c 08199025 n 0000 + 00406243 v 0302 + 02565425 a 0204 + 01843380 a 0201 + 01930512 a 0101 = 01930512 a 0000 = 01932234 a 0000 ~ 14031523 n 0000 ~ 14031660 n 0000 | the state of having been made ready or prepared for use or action (especially military action); "putting them in readiness"; "their preparation was more than adequate" -14031523 26 n 01 ready 0 003 @ 14031108 n 0000 + 01930512 a 0101 + 00406243 v 0104 | poised for action; "their guns were at the ready" -14031660 26 n 02 alert 0 qui_vive 0 006 @ 14031108 n 0000 + 00091311 a 0101 + 00872414 v 0102 ~ 14031922 n 0000 ~ 14032100 n 0000 ~ 14032293 n 0000 | condition of heightened watchfulness or preparation for action; "bombers were put on alert during the crisis" -14031922 26 n 01 air_alert 0 001 @ 14031660 n 0000 | the condition in which combat aircraft are airborne and ready for an operation; "aircraft in the Mideast are on air alert" -14032100 26 n 01 red_alert 0 001 @ 14031660 n 0000 | the highest level of alert when an attack by the enemy seems imminent (or more generally a state of alert resulting from imminent danger) -14032293 26 n 01 strip_alert 0 001 @ 14031660 n 0000 | a state of readiness for domestic defense aircraft; "the Air Force will keep fighters on strip alert at bases around the country" -14032480 26 n 01 diverticulosis 0 001 @ 14204950 n 0000 | presence of multiple diverticula in the walls of the colon -14032599 26 n 01 emergency 0 001 @ 14015731 n 0000 | a state in which martial law applies; "the governor declared a state of emergency" -14032737 26 n 01 clutch 0 002 @ 14015731 n 0000 + 00737656 v 0102 | a tense critical situation; "he is a good man in the clutch" -14032868 26 n 01 Dunkirk 0 001 @ 13933560 n 0000 | a crisis in which a desperate effort is the only alternative to defeat; "the Russians had to pull off a Dunkirk to get out of there" -14033054 26 n 01 exigency 0 002 @ 13933560 n 0000 + 00712877 a 0103 | a pressing or urgent situation; "the health-care exigency" -14033185 26 n 03 juncture 0 critical_point 0 crossroads 0 002 @ 13933560 n 0000 ~ 14033587 n 0000 | a crisis situation or point in time when a critical decision must be made; "at that juncture he had no idea what to do"; "he must be made to realize that the company stands at a critical point" -14033481 26 n 02 desperate_straits 0 dire_straits 0 001 @ 13936939 n 0000 | a state of extreme distress -14033587 26 n 01 criticality 1 005 @ 14033185 n 0000 + 00651935 a 0101 = 00651935 a 0000 = 00652533 a 0000 ~ 14033802 n 0000 | a critical state; especially the point at which a nuclear reaction is self-sustaining -14033802 26 n 02 flash_point 0 flashpoint 0 001 @ 14033587 n 0000 | point at which something is ready to blow up -14033917 26 n 02 flux 1 state_of_flux 0 001 @ 00024720 n 0000 | a state of uncertainty about what should be done (usually following some important event) preceding the establishment of a new direction of action; "the flux following the death of the emperor" -14034177 26 n 03 physical_condition 0 physiological_state 0 physiological_condition 0 054 @ 13920835 n 0000 ~ 05678474 n 0000 ~ 13974937 n 0000 ~ 13975037 n 0000 ~ 14014425 n 0000 ~ 14014521 n 0000 ~ 14014621 n 0000 ~ 14022199 n 0000 ~ 14023491 n 0000 ~ 14023804 n 0000 ~ 14023997 n 0000 ~ 14024882 n 0000 ~ 14025993 n 0000 ~ 14035298 n 0000 ~ 14035502 n 0000 ~ 14035695 n 0000 ~ 14035909 n 0000 ~ 14038264 n 0000 ~ 14038482 n 0000 ~ 14041940 n 0000 ~ 14042165 n 0000 ~ 14042423 n 0000 ~ 14042735 n 0000 ~ 14044174 n 0000 ~ 14044372 n 0000 ~ 14044454 n 0000 ~ 14044719 n 0000 ~ 14044852 n 0000 ~ 14045507 n 0000 ~ 14046038 n 0000 ~ 14046202 n 0000 ~ 14049420 n 0000 ~ 14049552 n 0000 ~ 14049711 n 0000 ~ 14051494 n 0000 ~ 14051728 n 0000 ~ 14051917 n 0000 ~ 14052403 n 0000 ~ 14061462 n 0000 ~ 14062725 n 0000 ~ 14063089 n 0000 ~ 14063475 n 0000 ~ 14063633 n 0000 ~ 14096957 n 0000 ~ 14290212 n 0000 ~ 14290881 n 0000 ~ 14291010 n 0000 ~ 14338848 n 0000 ~ 14405774 n 0000 ~ 14501726 n 0000 ~ 14507951 n 0000 ~ 14509712 n 0000 ~ 14552205 n 0000 ~ 14571618 n 0000 | the condition or state of the body or bodily functions -14035298 26 n 01 drive 0 006 @ 14034177 n 0000 + 02505358 v 0101 ~ 14039534 n 0000 ~ 14040660 n 0000 ~ 14041106 n 0000 ~ 14041256 n 0000 | a physiological state corresponding to a strong need or desire -14035502 26 n 01 elastosis 0 001 @ 14034177 n 0000 | breakdown of elastic tissue (as the loss of elasticity in the skin of elderly people that results from degeneration of connective tissue) -14035695 26 n 03 flatulence 0 flatulency 0 gas 1 006 @ 14034177 n 0000 + 01175741 a 0303 + 01175741 a 0202 + 01182974 a 0201 + 01175741 a 0102 + 01182974 a 0101 | a state of excessive gas in the alimentary canal -14035909 26 n 03 flexure 0 flection 0 flexion 0 002 @ 14034177 n 0000 + 01280488 v 0101 | the state of being flexed (as of a joint) -14036043 26 n 02 alertness 0 alerting 0 001 @ 14023997 n 0000 | a state of readiness to respond; "alerting was indicated by the desynchronization of the EEG" -14036203 26 n 01 emotional_arousal 0 003 @ 14023997 n 0000 ~ 14036539 n 0000 ~ 14037011 n 0000 | the arousal of strong emotions and emotional behavior -14036356 26 n 03 excitation 0 innervation 0 irritation 1 003 @ 14023997 n 0000 + 00503715 v 0301 + 00558963 v 0101 | the neural or electrical arousal of an organ or muscle or gland -14036539 26 n 02 anger 0 angriness 0 007 @ 14036203 n 0000 + 00304144 a 0201 + 00113818 a 0201 + 00113818 a 0101 + 01787106 v 0101 + 01785971 v 0101 ~ 14036735 n 0000 | the state of being angry -14036735 26 n 01 rage 0 003 @ 14036539 n 0000 + 02723016 v 0102 + 01796033 v 0101 | a state of extreme anger; "she fell into a rage and refused to answer" -14036892 26 n 01 fever_pitch 0 001 @ 14037011 n 0000 | a state of extreme excitement; "the crowd was at fever pitch" -14037011 26 n 05 excitement 1 excitation 1 inflammation 1 fervor 0 fervour 0 011 @ 14036203 n 0000 + 02116118 v 0202 + 01772960 v 0201 + 01761706 v 0204 + 02116118 v 0102 + 01772960 v 0101 + 01761706 v 0104 = 00921014 a 0000 = 00922594 a 0000 ~ 14036892 n 0000 ~ 14037480 n 0000 | the state of being emotionally aroused and worked up; "his face was flushed with excitement and his hands trembled"; "he tried to calm those who were in a state of extreme inflammation" -14037480 26 n 01 sensation 0 001 @ 14037011 n 0000 | a state of widespread public excitement and interest; "the news caused a sensation" -14037619 26 n 01 sexual_arousal 0 005 @ 14023997 n 0000 ~ 14037816 n 0000 ~ 14037925 n 0000 ~ 14038027 n 0000 ~ 14038185 n 0000 | the arousal of sexual desires in preparation for sexual behavior -14037816 26 n 01 cybersex 0 001 @ 14037619 n 0000 | sexual arousal involving communication on the internet -14037925 26 n 02 eroticism 0 erotism 0 001 @ 14037619 n 0000 | a state of anticipation of sexuality -14038027 26 n 03 horniness 0 hotness 0 hot_pants 0 004 @ 14037619 n 0000 ;u 07075172 n 0000 + 02132607 a 0201 + 02131668 a 0102 | a state of sexual arousal -14038185 26 n 02 erection 0 hard-on 0 001 @ 14037619 n 0000 | an erect penis -14038264 26 n 04 estrus 0 oestrus 0 heat 0 rut 0 004 @ 14034177 n 0000 + 02724705 v 0401 + 02137806 a 0101 ! 14038482 n 0101 | applies to nonhuman mammals: a state or period of heightened sexual arousal and activity -14038482 26 n 04 anestrus 0 anestrum 0 anoestrus 0 anoestrum 0 005 @ 14034177 n 0000 + 02622859 a 0302 + 02622859 a 0102 ! 14038264 n 0101 ~ 14038743 n 0000 | applies to nonhuman mammals: a state or interval of sexual inactivity between two periods of estrus -14038743 26 n 02 diestrus 0 diestrum 0 003 @ 14038482 n 0000 + 02138428 a 0203 + 02138428 a 0103 | (of animals having several estrous cycles in one breeding season) a state or interval of sexual inactivity or quiescence between periods of activity -14038993 26 n 01 desire 0 007 @ 14023997 n 0000 + 00887719 a 0101 + 01826378 v 0101 + 01826723 v 0103 + 01825237 v 0101 ~ 14039179 n 0000 ~ 14039310 n 0000 | something that is desired -14039179 26 n 02 rage 2 passion 1 001 @ 14038993 n 0000 | something that is desired intensely; "his rage for fame destroyed him" -14039310 26 n 02 materialism 0 philistinism 0 004 @ 14038993 n 0000 + 02577907 a 0101 + 00260780 a 0103 + 10300963 n 0101 | a desire for wealth and material possessions with little interest in ethical or spiritual matters -14039534 26 n 02 hunger 0 hungriness 0 010 @ 14035298 n 0000 + 01269073 a 0201 + 01269073 a 0101 + 02121958 v 0101 + 01188144 v 0102 ~ 14039828 n 0000 ~ 14039974 n 0000 ~ 14040071 n 0000 ~ 14040310 n 0000 ~ 14040490 n 0000 | a physiological need for food; the consequence of food deprivation -14039828 26 n 01 bulimia 0 002 @ 14039534 n 0000 + 02671885 a 0101 | pathologically insatiable hunger (especially when caused by brain lesions) -14039974 26 n 01 emptiness 1 002 @ 14039534 n 0000 + 01269319 a 0101 | having an empty stomach -14040071 26 n 05 edacity 0 esurience 0 ravenousness 0 voracity 0 voraciousness 0 007 @ 14039534 n 0000 + 00010726 a 0506 + 00010726 a 0406 + 01269506 a 0302 + 00010726 a 0305 + 01269506 a 0205 + 00010726 a 0101 | excessive desire to eat -14040310 26 n 02 starvation 0 famishment 0 002 @ 14039534 n 0000 + 01188144 v 0101 | a state of extreme hunger resulting from lack of essential nutrients over a prolonged period -14040490 26 n 02 undernourishment 0 malnourishment 0 003 @ 14039534 n 0000 + 01179276 v 0202 + 01179276 v 0101 | not having enough food to develop or function normally -14040660 26 n 02 thirst 0 thirstiness 0 006 @ 14035298 n 0000 + 01270004 a 0201 + 01270004 a 0101 + 02122060 v 0101 ~ 14040846 n 0000 ~ 14040966 n 0000 | a physiological need to drink -14040846 26 n 01 dehydration 1 003 @ 14040660 n 0000 + 00211396 v 0101 + 00211108 v 0102 | depletion of bodily fluids -14040966 26 n 01 polydipsia 0 002 @ 14040660 n 0000 #p 14117805 n 0000 | excessive thirst (as in cases of diabetes or kidney dysfunction) -14041106 26 n 01 sex_drive 0 001 @ 14035298 n 0000 | a physiological need for sexual activity; "testosterone is responsible for the male sex drive" -14041256 26 n 01 hypoxia 0 008 @ 14035298 n 0000 #p 14042423 n 0000 ~ 14041508 n 0000 ~ 14041631 n 0000 ~ 14041763 n 0000 ~ 14042914 n 0000 ~ 14043243 n 0000 ~ 14043882 n 0000 | oxygen deficiency causing a very strong drive to correct the deficiency -14041508 26 n 01 anemic_hypoxia 0 001 @ 14041256 n 0000 | hypoxia resulting from a decreased concentration of hemoglobin -14041631 26 n 01 hypoxic_hypoxia 0 001 @ 14041256 n 0000 | hypoxia resulting from defective oxygenation of the blood in the lungs -14041763 26 n 02 ischemic_hypoxia 0 stagnant_hypoxia 0 001 @ 14041256 n 0000 | hypoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure) -14041940 26 n 02 hypercapnia 0 hypercarbia 0 003 @ 14034177 n 0000 #p 14042423 n 0000 ! 14042165 n 0101 | the physical condition of having the presence of an abnormally high level of carbon dioxide in the circulating blood -14042165 26 n 02 hypocapnia 0 acapnia 0 005 @ 14034177 n 0000 + 02600244 a 0202 + 02600244 a 0203 + 02600244 a 0201 ! 14041940 n 0101 | a state in which the level of carbon dioxide in the blood is lower than normal; can result from deep or rapid breathing -14042423 26 n 01 asphyxia 0 006 @ 14034177 n 0000 + 01476180 v 0103 + 01569181 v 0102 + 00359511 v 0103 %p 14041256 n 0000 %p 14041940 n 0000 | a condition in which insufficient or no oxygen and carbon dioxide are exchanged on a ventilatory basis; caused by choking or drowning or electric shock or poison gas -14042735 26 n 01 oxygen_debt 0 001 @ 14034177 n 0000 | a cumulative deficit of oxygen resulting from intense exercise; the deficit must be made up when the body returns to rest -14042914 26 n 01 altitude_sickness 0 002 @ 14041256 n 0000 ~ 14043092 n 0000 | effects (as nosebleed or nausea) of oxygen deficiency in the blood and tissues at high altitudes -14043092 26 n 01 mountain_sickness 0 001 @ 14042914 n 0000 | nausea and shortness of breath experienced by mountain climbers above ten thousand feet -14043243 26 n 01 anoxia 0 005 @ 14041256 n 0000 + 02627927 a 0101 ~ 14043458 n 0000 ~ 14043579 n 0000 ~ 14043708 n 0000 | severe hypoxia; absence of oxygen in inspired gases or in arterial blood or in the tissues -14043458 26 n 01 anemic_anoxia 0 001 @ 14043243 n 0000 | anoxia resulting from a decreased concentration of hemoglobin -14043579 26 n 01 anoxic_anoxia 0 001 @ 14043243 n 0000 | anoxia resulting from defective oxygenation of the blood in the lungs -14043708 26 n 02 ischemic_anoxia 0 stagnant_anoxia 0 001 @ 14043243 n 0000 | anoxia resulting from slow peripheral circulation (such as follows congestive cardiac failure) -14043882 26 n 02 suffocation 0 asphyxiation 0 006 @ 14041256 n 0000 + 01476180 v 0203 + 01569181 v 0202 + 00359511 v 0203 + 01476180 v 0101 + 00077698 v 0104 | the condition of being deprived of oxygen (as by having breathing stopped); "asphyxiation is sometimes used as a form of torture" -14044174 26 n 02 hyperthermia 0 hyperthermy 0 003 @ 14034177 n 0000 ! 14044454 n 0101 ~ 14365619 n 0000 | abnormally high body temperature; sometimes induced (as in treating some forms of cancer) -14044372 26 n 01 normothermia 0 001 @ 14034177 n 0000 | normal body temperature -14044454 26 n 01 hypothermia 0 004 @ 14034177 n 0000 + 02985662 a 0101 + 02985782 a 0101 ! 14044174 n 0101 | subnormal body temperature -14044592 26 n 01 flux 0 001 @ 14204950 n 0000 | excessive discharge of liquid from a cavity or organ (as in watery diarrhea) -14044719 26 n 01 muscularity 0 002 @ 14034177 n 0000 + 02882570 a 0101 | the physiological state of having or consisting of muscle -14044852 26 n 01 myasthenia 1 001 @ 14034177 n 0000 | any muscular weakness -14044930 26 n 02 impotence 0 impotency 0 006 @ 14045507 n 0000 ! 14051728 n 0201 + 01825550 a 0201 ! 14051728 n 0102 + 01825550 a 0101 ~ 14045141 n 0000 | an inability (usually of the male animal) to copulate -14045141 26 n 03 erectile_dysfunction 0 male_erecticle_dysfunction 0 ED 0 002 @ 14044930 n 0000 @ 14557898 n 0000 | impotence resulting from a man's inability to have or maintain an erection of his penis -14045347 26 n 01 barrenness 0 002 @ 14045507 n 0000 + 01002664 a 0101 | the state (usually of a woman) of having no children or being unable to have children -14045507 26 n 02 sterility 0 infertility 0 008 @ 14034177 n 0000 + 01002377 a 0203 ! 14051494 n 0201 + 01002377 a 0101 ~ 14044930 n 0000 ~ 14045347 n 0000 ~ 14045835 n 0000 ~ 14045954 n 0000 | the state of being unable to produce offspring; in a woman it is an inability to conceive; in a man it is an inability to impregnate -14045835 26 n 01 cacogenesis 0 001 @ 14045507 n 0000 | inability to produce hybrids that are both viable and fertile -14045954 26 n 01 dysgenesis 0 001 @ 14045507 n 0000 | infertility between hybrids -14046038 26 n 02 false_pregnancy 0 pseudocyesis 0 001 @ 14034177 n 0000 | physiological state in which a woman exhibits symptoms of pregnancy but is not pregnant -14046202 26 n 03 pregnancy 0 gestation 0 maternity 0 020 @ 14034177 n 0000 + 02983097 a 0201 + 00059019 v 0204 + 00173220 a 0101 -c 00334174 n 0000 -c 00943600 n 0000 -c 04680893 n 0000 -c 05519820 n 0000 %p 13449156 n 0000 ~ 14046751 n 0000 ~ 14046861 n 0000 ~ 14047009 n 0000 ~ 14047171 n 0000 ~ 14047740 n 0000 ~ 14048015 n 0000 %p 14048134 n 0000 %p 14048441 n 0000 ~ 14048847 n 0000 -c 14353008 n 0000 %p 14360156 n 0000 | the state of being pregnant; the period from conception to birth when a woman carries a developing fetus in her uterus -14046751 26 n 01 trouble 2 001 @ 14046202 n 0000 | an unwanted pregnancy; "he got several girls in trouble" -14046861 26 n 03 gravidity 0 gravidness 0 gravidation 0 003 @ 14046202 n 0000 + 00173391 a 0204 + 00173391 a 0104 | technical terms for pregnancy -14047009 26 n 01 gravida 0 001 @ 14046202 n 0000 | the number of the pregnancy that a woman is in; "in her third pregnancy a woman is said to be gravida three" -14047171 26 n 02 parity 0 para 0 003 @ 14046202 n 0000 ;c 06053439 n 0000 + 02774585 a 0201 | (obstetrics) the number of liveborn children a woman has delivered; "the parity of the mother must be considered"; "a bipara is a woman who has given birth to two children" -14047440 26 n 01 abdominal_pregnancy 0 001 @ 14047740 n 0000 | ectopic pregnancy in the abdominal cavity -14047547 26 n 01 ovarian_pregnancy 0 001 @ 14047740 n 0000 | ectopic pregnancy in the ovary -14047641 26 n 01 tubal_pregnancy 0 001 @ 14047740 n 0000 | ectopic pregnancy in a Fallopian tube -14047740 26 n 06 ectopic_pregnancy 0 extrauterine_pregnancy 0 ectopic_gestation 0 extrauterine_gestation 0 eccyesis 0 metacyesis 0 004 @ 14046202 n 0000 ~ 14047440 n 0000 ~ 14047547 n 0000 ~ 14047641 n 0000 | pregnancy resulting from gestation elsewhere than in the uterus -14048015 26 n 01 entopic_pregnancy 0 001 @ 14046202 n 0000 | pregnancy resulting from normal gestation in the uterus -14048134 26 n 01 quickening 0 003 @ 13939892 n 0000 #p 14046202 n 0000 + 00053035 v 0101 | the stage of pregnancy at which the mother first feels the movements of the fetus -14048309 26 n 02 premature_labor 0 premature_labour 0 001 @ 14048441 n 0000 | labor beginning prior to the 37th week of gestation -14048441 26 n 07 parturiency 0 labor 0 labour 0 confinement 1 lying-in 0 travail 0 childbed 0 010 @ 13532886 n 0000 #p 14046202 n 0000 + 00057506 v 0302 + 00057506 v 0201 + 00003829 a 0101 + 02860919 a 0101 %p 00370458 n 0000 %p 13471517 n 0000 ~ 14048309 n 0000 %p 14049098 n 0000 | concluding state of pregnancy; from the onset of contractions to the birth of a child; "she was in labor for six hours" -14048847 26 n 01 placenta_previa 0 001 @ 14046202 n 0000 | pregnancy in which the placenta is implanted in the lower part of the uterus (instead of the upper part); can cause bleeding late in pregnancy; delivery by cesarean section may be necessary -14049098 26 n 02 asynclitism 0 obliquity 0 002 @ 14501726 n 0000 #p 14048441 n 0000 | the presentation during labor of the head of the fetus at an abnormal angle -14049262 26 n 01 atresia 0 001 @ 14501726 n 0000 | an abnormal condition in which a normal opening or tube in the body (as the urethra) is closed or absent -14049420 26 n 01 rigor_mortis 0 001 @ 14034177 n 0000 | temporary stiffness of joints and muscular rigidity occurring after death -14049552 26 n 02 vitalization 0 vitalisation 0 003 @ 14034177 n 0000 + 00164816 v 0202 + 00164816 v 0101 | the state of being vitalized and filled with life -14049711 26 n 02 good_health 0 healthiness 0 010 @ 14034177 n 0000 + 01170243 a 0201 ! 14052046 n 0101 ~ 14050011 n 0000 ~ 14050143 n 0000 ~ 14050871 n 0000 ~ 14051056 n 0000 ~ 14051201 n 0000 ~ 14051381 n 0000 ~ 14546227 n 0000 | the state of being vigorous and free from bodily or mental disease -14050011 26 n 02 wholeness 1 haleness 0 003 @ 14049711 n 0000 + 01171396 a 0201 + 01171396 a 0102 | a state of robust good health -14050143 26 n 03 energy 0 vim 0 vitality 0 007 @ 14049711 n 0000 + 00119006 a 0303 + 00873603 a 0101 + 00559102 v 0102 + 00022686 v 0104 ~ 14050434 n 0000 ~ 14050559 n 0000 | a healthy capacity for vigorous activity; "jogging works off my excess energy"; "he seemed full of vim and vigor" -14050434 26 n 01 juice 0 002 @ 14050143 n 0000 ;u 07157273 n 0000 | energetic vitality; "her creative juices were flowing" -14050559 26 n 04 qi 0 chi 0 ch'i 0 ki 0 002 @ 14050143 n 0000 ;r 08723006 n 0000 | the circulating life energy that in Chinese philosophy is thought to be inherent in all things; in traditional Chinese medicine the balance of negative and positive forms in the body is believed to be essential for good health -14050871 26 n 04 bloom 0 blush 0 flush 0 rosiness 0 003 @ 14049711 n 0000 + 01170823 a 0403 + 00103317 v 0303 | a rosy color (especially in the cheeks) taken as a sign of good health -14051056 26 n 02 freshness 0 glow 0 004 @ 14049711 n 0000 + 01829747 v 0201 + 01830042 v 0201 + 02434797 a 0101 | an alert and refreshed state -14051201 26 n 01 radiance 0 003 @ 13987423 n 0000 @ 14049711 n 0000 + 01829747 v 0103 | an attractive combination of good health and happiness; "the radiance of her countenance" -14051381 26 n 01 sturdiness 0 002 @ 14049711 n 0000 + 02038994 a 0104 | the state of being vigorous and robust -14051494 26 n 02 fertility 0 fecundity 0 007 @ 14034177 n 0000 + 01002055 a 0201 + 01082115 a 0102 + 01001689 a 0101 ! 14045507 n 0102 = 01001689 a 0000 = 01002377 a 0000 | the state of being fertile; capable of producing offspring -14051728 26 n 02 potency 1 potence 0 004 @ 14034177 n 0000 ! 14044930 n 0201 + 01825419 a 0101 ! 14044930 n 0102 | the state of being potent; a male's capacity to have sexual intercourse -14051917 26 n 01 pathological_state 0 002 @ 14034177 n 0000 ~ 14052046 n 0000 | a physical condition that is caused by disease -14052046 26 n 03 ill_health 0 unhealthiness 0 health_problem 0 012 @ 14051917 n 0000 + 01172889 a 0201 ! 14049711 n 0101 ~ 14053717 n 0000 ~ 14061805 n 0000 ~ 14062490 n 0000 ~ 14062565 n 0000 ~ 14174549 n 0000 ~ 14204950 n 0000 ~ 14213199 n 0000 ~ 14285662 n 0000 ~ 14547369 n 0000 | a state in which you are unable to function normally and without pain -14052403 26 n 02 disorder 3 upset 3 042 @ 14034177 n 0000 ~ 13973990 n 0000 ~ 14053384 n 0000 ~ 14053558 n 0000 ~ 14053965 n 0000 ~ 14054102 n 0000 ~ 14054262 n 0000 ~ 14054465 n 0000 ~ 14054642 n 0000 ~ 14054762 n 0000 ~ 14055408 n 0000 ~ 14055623 n 0000 ~ 14057221 n 0000 ~ 14057371 n 0000 ~ 14057828 n 0000 ~ 14058066 n 0000 ~ 14058252 n 0000 ~ 14058456 n 0000 ~ 14058563 n 0000 ~ 14058934 n 0000 ~ 14059021 n 0000 ~ 14059143 n 0000 ~ 14059252 n 0000 ~ 14059663 n 0000 ~ 14059825 n 0000 ~ 14059928 n 0000 ~ 14060256 n 0000 ~ 14060417 n 0000 ~ 14060575 n 0000 ~ 14060688 n 0000 ~ 14060929 n 0000 ~ 14074715 n 0000 ~ 14083790 n 0000 ~ 14084502 n 0000 ~ 14084880 n 0000 ~ 14193571 n 0000 ~ 14297696 n 0000 ~ 14298247 n 0000 ~ 14317433 n 0000 ~ 14317562 n 0000 ~ 14400677 n 0000 ~ 14400979 n 0000 | a physical condition in which there is a disturbance of normal functioning; "the doctor prescribed some medicine for the disorder"; "everyone gets stomach upsets from time to time" -14053384 26 n 01 functional_disorder 0 002 @ 14052403 n 0000 ! 14053558 n 0101 | disorder showing symptoms for which no physiological or anatomical cause can be identified -14053558 26 n 01 organic_disorder 0 002 @ 14052403 n 0000 ! 14053384 n 0101 | disorder caused by a detectable physiological or structural change in an organ -14053717 26 n 01 dyscrasia 0 002 @ 14052046 n 0000 ~ 14053850 n 0000 | an abnormal or physiologically unbalanced state of the body -14053850 26 n 01 blood_dyscrasia 0 002 @ 14053717 n 0000 ~ 14189204 n 0000 | any abnormal condition of the blood -14053965 26 n 01 abocclusion 0 001 @ 14052403 n 0000 | the condition in which the upper teeth do not touch the lower teeth when biting -14054102 26 n 01 abruptio_placentae 0 001 @ 14052403 n 0000 | a disorder of pregnancy in which the placenta prematurely separates from the wall of the uterus -14054262 26 n 01 achlorhydria 0 001 @ 14052403 n 0000 | an abnormal deficiency or absence of free hydrochloric acid in the gastric juice; often associated with severe anemias and cancer of the stomach -14054465 26 n 02 acholia 0 cholestasis 0 001 @ 14052403 n 0000 | a condition in which little or no bile is secreted or the flow of bile into the digestive tract is obstructed -14054642 26 n 02 achylia 0 achylia_gastrica 0 001 @ 14052403 n 0000 | absence of gastric juices (partial or complete) -14054762 26 n 02 acute_brain_disorder 0 acute_organic_brain_syndrome 0 001 @ 14052403 n 0000 | any disorder (as sudden confusion or disorientation) in an otherwise normal person that is due to reversible (temporary) impairment of brain tissues (as by head injuries or drugs or infection) -14055052 26 n 04 adult_respiratory_distress_syndrome 0 ARDS 0 wet_lung 0 white_lung 0 001 @ 14145095 n 0000 | acute lung injury characterized by coughing and rales; inflammation of the lungs which become stiff and fibrous and cannot exchange oxygen; occurs among persons exposed to irritants such as corrosive chemical vapors or ammonia or chlorine etc. -14055408 26 n 03 ailment 0 complaint 0 ill 0 005 @ 14052403 n 0000 + 00070816 v 0102 + 00078665 v 0101 ~ 14203269 n 0000 ~ 14203346 n 0000 | an often persistent bodily disorder or disease; a cause for complaining -14055623 26 n 01 eating_disorder 0 005 @ 14052403 n 0000 ~ 14055796 n 0000 ~ 14055977 n 0000 ~ 14056685 n 0000 ~ 14057001 n 0000 | a disorder of the normal eating routine -14055796 26 n 01 anorexia 0 005 @ 14055623 n 0000 + 00988797 a 0101 + 00988797 a 0102 + 00323047 a 0101 ~ 14061263 n 0000 | a prolonged disorder of eating due to loss of appetite -14055977 26 n 01 pica 0 002 @ 14055623 n 0000 ~ 00840898 n 0000 | an eating disorder, frequent in children, in which non-nutritional objects are eaten persistently -14056143 26 n 02 astereognosis 0 tactile_agnosia 0 001 @ 14099933 n 0000 | a loss of the ability to recognize objects by handling them -14056280 26 n 08 attention_deficit_disorder 0 ADD 0 attention_deficit_hyperactivity_disorder 0 ADHD 0 hyperkinetic_syndrome 0 minimal_brain_dysfunction 0 minimal_brain_damage 0 MBD 0 002 @ 14304060 n 0000 %p 14060256 n 0000 | a condition (mostly in boys) characterized by behavioral and learning disorders -14056588 26 n 01 anorgasmia 0 001 @ 14548343 n 0000 | absence of an orgasm in sexual relations -14056685 26 n 04 bulimarexia 0 binge-purge_syndrome 0 binge-vomit_syndrome 0 bulima_nervosa 0 001 @ 14055623 n 0000 | a disorder of eating in which the person alternates between strong craving for food and aversion to food; characterized by excessive eating followed by periods of fasting or self-induced vomiting -14057001 26 n 02 bulimia 1 binge-eating_syndrome 0 002 @ 14055623 n 0000 + 02671885 a 0101 | a disorder of eating seen among young women who go on eating binges and then feel guilt and depression and self-condemnation -14057221 26 n 01 bladder_disorder 0 004 @ 14052403 n 0000 ~ 14401240 n 0000 ~ 14401512 n 0000 ~ 14401644 n 0000 | a disorder of the urinary bladder -14057371 26 n 01 cardiovascular_disease 0 006 @ 14052403 n 0000 ~ 14103288 n 0000 ~ 14103510 n 0000 ~ 14104522 n 0000 ~ 14106025 n 0000 ~ 14112101 n 0000 | a disease of the heart or blood vessels -14057569 26 n 01 carpal_tunnel_syndrome 0 001 @ 14109691 n 0000 | a painful disorder caused by compression of a nerve in the carpal tunnel; characterized by discomfort and weakness in the hands and fingers and by sensations of tingling, burning or numbness -14057828 26 n 01 celiac_disease 0 001 @ 14052403 n 0000 | a disorder in children and adults; inability to tolerate wheat protein (gluten); symptoms include foul-smelling diarrhea and emaciation; often accompanied by lactose intolerance -14058066 26 n 02 cheilosis 0 perleche 0 001 @ 14052403 n 0000 | a disorder of the lips marked by scaling and fissures at the corners of the mouth; caused by a deficiency of riboflavin -14058252 26 n 01 choking 0 004 @ 14052403 n 0000 + 01476180 v 0104 + 00077698 v 0102 + 00002724 v 0101 | a condition caused by blocking the airways to the lungs (as with food or swelling of the larynx) -14058456 26 n 01 colpoxerosis 0 001 @ 14052403 n 0000 | a condition in which the vagina is unusually dry -14058563 26 n 01 degenerative_disorder 0 006 @ 14052403 n 0000 ~ 14058770 n 0000 ~ 14059336 n 0000 ~ 14094068 n 0000 ~ 14094350 n 0000 ~ 14094881 n 0000 | condition leading to progressive loss of function -14058770 26 n 01 demyelination 0 002 @ 14058563 n 0000 #p 14094068 n 0000 | loss of the myelin covering of some nerve fibers resulting in their impaired function -14058934 26 n 01 dysaphia 0 001 @ 14052403 n 0000 | a disorder in the sense of touch -14059021 26 n 03 dysosmia 0 parosamia 0 olfactory_impairment 0 001 @ 14052403 n 0000 | a disorder in the sense of smell -14059143 26 n 01 dysphagia 0 001 @ 14052403 n 0000 | condition in which swallowing is difficult or painful -14059252 26 n 01 dysuria 0 001 @ 14052403 n 0000 | painful or difficult urination -14059336 26 n 01 dystrophy 0 002 @ 14058563 n 0000 ~ 14059481 n 0000 | any degenerative disorder resulting from inadequate or faulty nutrition -14059481 26 n 01 osteodystrophy 0 001 @ 14059336 n 0000 | defective bone development; usually attributable to renal disease or to disturbances in calcium and phosphorus metabolism -14059663 26 n 01 failure 1 004 @ 14052403 n 0000 + 00434374 v 0101 ~ 14112255 n 0000 ~ 14114555 n 0000 | loss of ability to function normally; "kidney failure" -14059825 26 n 01 fantods 0 001 @ 14052403 n 0000 | an ill-defined state of irritability and distress -14059928 26 n 04 glandular_disease 0 gland_disease 0 glandular_disorder 0 adenosis 0 011 @ 14052403 n 0000 ~ 14076992 n 0000 ~ 14077269 n 0000 ~ 14077454 n 0000 ~ 14116908 n 0000 ~ 14117173 n 0000 ~ 14117317 n 0000 ~ 14117449 n 0000 ~ 14117668 n 0000 ~ 14120767 n 0000 ~ 14121276 n 0000 | a disorder of the glands of the body -14060256 26 n 01 hyperactivity 0 003 @ 14052403 n 0000 #p 14056280 n 0000 + 00033206 a 0101 | a condition characterized by excessive restlessness and movement -14060417 26 n 02 impaction 0 impacted_tooth 0 001 @ 14052403 n 0000 | a disorder in which a tooth is so crowded in its socket that it cannot erupt normally -14060575 26 n 01 impaction 1 001 @ 14052403 n 0000 | a disorder in which feces are impacted in the lower colon -14060688 26 n 02 learning_disorder 0 learning_disability 0 004 @ 14052403 n 0000 ~ 14099439 n 0000 ~ 14099552 n 0000 ~ 14099643 n 0000 | a disorder found in children of normal intelligence who have difficulties in learning specific skills -14060929 26 n 01 malocclusion 0 003 @ 14052403 n 0000 ;c 06047430 n 0000 ~ 14061097 n 0000 | (dentistry) a condition in which the opposing teeth do not mesh normally -14061097 26 n 01 overbite 0 002 @ 14060929 n 0000 ;c 06047430 n 0000 | (dentistry) malocclusion in which the upper teeth extend abnormally far over the lower teeth -14061263 26 n 01 anorexia_nervosa 0 002 @ 14055796 n 0000 ;c 06055946 n 0000 | (psychiatry) a psychological disorder characterized by somatic delusions that you are too fat despite being emaciated -14061462 26 n 01 cellularity 0 004 @ 14034177 n 0000 + 00327031 a 0101 ~ 14061599 n 0000 ~ 14061703 n 0000 | the state of having cells -14061599 26 n 01 hypercellularity 0 001 @ 14061462 n 0000 | the state of having abnormally many cells -14061703 26 n 01 hypocellularity 0 001 @ 14061462 n 0000 | the state of having abnormally few cells -14061805 26 n 04 illness 0 unwellness 0 malady 0 sickness 0 021 @ 14052046 n 0000 + 02541302 a 0402 + 02542325 a 0206 ! 14447908 n 0202 + 02541302 a 0101 ! 14447908 n 0102 ~ 13923440 n 0000 ~ 14065332 n 0000 ~ 14065693 n 0000 ~ 14065903 n 0000 ~ 14066005 n 0000 ~ 14066203 n 0000 ~ 14068344 n 0000 ~ 14068685 n 0000 ~ 14069895 n 0000 ~ 14070360 n 0000 ~ 14174316 n 0000 ~ 14174455 n 0000 ~ 14190284 n 0000 ~ 14191037 n 0000 ~ 14234074 n 0000 | impairment of normal physiological function affecting part or all of an organism -14062332 26 n 02 invagination 0 introversion 0 003 @ 13920429 n 0000 + 01506812 v 0202 + 01581789 v 0101 | the condition of being folded inward or sheathed -14062490 26 n 01 invalidism 0 001 @ 14052046 n 0000 | chronic ill health -14062565 26 n 01 biliousness 0 003 @ 14052046 n 0000 + 02543149 a 0101 + 01135269 a 0102 | gastric distress caused by a disorder of the liver or gall bladder -14062725 26 n 05 addiction 0 dependence 1 dependance 1 dependency 1 habituation 0 007 @ 14034177 n 0000 ;c 03808564 n 0000 + 00273445 v 0501 + 00047406 a 0401 + 00047406 a 0201 + 01165290 v 0101 ~ 14064408 n 0000 | being abnormally tolerant to and dependent on something that is psychologically or physically habit-forming (especially alcohol or narcotic drugs) -14063089 26 n 01 suspended_animation 0 002 @ 14034177 n 0000 ~ 14063290 n 0000 | a temporary cessation of vital functions with loss of consciousness resembling death; usually resulting from asphyxia -14063290 26 n 01 anabiosis 0 002 @ 14063089 n 0000 + 02619291 a 0101 | suspended animation in organisms during periods of extreme drought from which they revive when moisture returns -14063475 26 n 01 cryptobiosis 0 002 @ 14034177 n 0000 + 02707164 a 0101 | a state in which an animal's metabolic activities come to a reversible standstill -14063633 26 n 03 dilatation 0 distension 0 distention 0 007 @ 14034177 n 0000 + 00256862 v 0201 + 00305537 v 0202 + 00305537 v 0101 ~ 14063877 n 0000 ~ 14064044 n 0000 ~ 14573303 n 0000 | the state of being stretched beyond normal dimensions -14063877 26 n 01 tympanites 0 001 @ 14063633 n 0000 | distension of the abdomen that is caused by the accumulation of gas in the intestines or the peritoneal cavity -14064044 26 n 02 ectasia 0 ectasis 0 003 @ 14063633 n 0000 ~ 14064186 n 0000 ~ 14064296 n 0000 | dilatation or distension of a hollow organ -14064186 26 n 02 lymphangiectasia 0 lymphangiectasis 0 001 @ 14064044 n 0000 | dilatation of a lymph vessel -14064296 26 n 01 alveolar_ectasia 0 001 @ 14064044 n 0000 | abnormal enlargement of the air sacs in the lungs -14064408 26 n 02 drug_addiction 0 white_plague 1 007 @ 14062725 n 0000 ;c 03808564 n 0000 ~ 14064644 n 0000 ~ 14064984 n 0000 ~ 14065071 n 0000 ~ 14065156 n 0000 ~ 14065243 n 0000 | an addiction to a drug (especially a narcotic drug) -14064644 26 n 04 alcoholism 0 alcohol_addiction 0 inebriation 1 drunkenness 2 003 @ 14064408 n 0000 + 01190494 v 0303 + 01190277 v 0303 | habitual intoxication; prolonged and excessive intake of alcoholic drinks leading to a breakdown in health and an addiction to alcohol such that abrupt deprivation leads to severe withdrawal symptoms -14064984 26 n 01 cocaine_addiction 0 001 @ 14064408 n 0000 | an addiction to cocaine -14065071 26 n 01 heroin_addiction 0 001 @ 14064408 n 0000 | an addiction to heroin -14065156 26 n 01 caffein_addiction 0 001 @ 14064408 n 0000 | an addiction to caffein -14065243 26 n 01 nicotine_addiction 0 001 @ 14064408 n 0000 | an addiction to nicotine -14065332 26 n 01 ague 0 001 @ 14061805 n 0000 | a fit of shivering or shaking -14065412 26 n 01 roots 0 001 @ 13920429 n 0000 | the condition of belonging to a particular place or group by virtue of social or ethnic or cultural lineage; "his roots in Texas go back a long way"; "he went back to Sweden to search for his roots"; "his music has African roots" -14065693 26 n 01 amyloidosis 0 001 @ 14061805 n 0000 | a disorder characterized by deposit of amyloid in organs or tissues; often secondary to chronic rheumatoid arthritis or tuberculosis or multiple myeloma -14065903 26 n 02 anuresis 0 anuria 0 002 @ 14061805 n 0000 + 02631453 a 0101 | inability to urinate -14066005 26 n 01 catastrophic_illness 0 001 @ 14061805 n 0000 | severe illness requiring prolonged hospitalization or recovery; usually involves high costs for hospitals and doctors and medicines -14066203 26 n 02 collapse 1 prostration 0 007 @ 14061805 n 0000 + 01785579 v 0105 + 00030647 v 0102 ~ 14066492 n 0000 ~ 14067076 n 0000 ~ 14204095 n 0000 ~ 14204441 n 0000 | an abrupt failure of function or complete physical exhaustion; "the commander's prostration demoralized his men" -14066492 26 n 02 breakdown 1 crack-up 0 005 @ 14066203 n 0000 + 01785579 v 0201 + 01784295 v 0101 + 00030647 v 0101 ~ 14066661 n 0000 | a mental or physical breakdown -14066661 26 n 01 nervous_breakdown 0 003 @ 14066492 n 0000 ~ 14066806 n 0000 ~ 14066959 n 0000 | a severe or incapacitating emotional disorder -14066806 26 n 02 nervous_exhaustion 0 nervous_prostration 0 001 @ 14066661 n 0000 | an emotional disorder that leaves you exhausted and unable to work -14066959 26 n 01 neurasthenia 0 002 @ 14066661 n 0000 + 03090612 a 0101 | nervous breakdown (not in technical use) -14067076 26 n 01 shock 0 007 @ 14066203 n 0000 ;c 06060845 n 0000 ~ 14067481 n 0000 ~ 14067575 n 0000 ~ 14067681 n 0000 ~ 14067786 n 0000 ~ 14068177 n 0000 | (pathology) bodily collapse or near collapse caused by inadequate oxygen delivery to the cells; characterized by reduced cardiac output and rapid heartbeat and circulatory insufficiency and pallor; "loss of blood is an important cause of shock" -14067481 26 n 01 cardiogenic_shock 0 001 @ 14067076 n 0000 | shock caused by cardiac arrest -14067575 26 n 01 hypovolemic_shock 0 001 @ 14067076 n 0000 | shock caused by severe blood or fluid loss -14067681 26 n 01 obstructive_shock 0 001 @ 14067076 n 0000 | shock caused by obstruction of blood flow -14067786 26 n 01 distributive_shock 0 001 @ 14067076 n 0000 | shock caused by poor distribution of the blood flow -14067902 26 n 01 anaphylactic_shock 0 001 @ 14533547 n 0000 | a severe and rapid and sometimes fatal hypersensitivity reaction to a substance (especially a vaccine or penicillin or shellfish or insect venom) to which the organism has become sensitized by previous exposure -14068177 26 n 02 insulin_shock 0 insulin_reaction 0 002 @ 14067076 n 0000 %p 14319454 n 0000 | hypoglycemia produced by excessive insulin in the system causing coma -14068344 26 n 06 decompression_sickness 0 aeroembolism 1 air_embolism 1 gas_embolism 1 caisson_disease 0 bends 0 001 @ 14061805 n 0000 | pain resulting from rapid change in pressure -14068528 26 n 01 fluorosis 0 001 @ 14204950 n 0000 | a pathological condition resulting from an excessive intake of fluorine (usually from drinking water) -14068685 26 n 02 food_poisoning 0 gastrointestinal_disorder 0 005 @ 14061805 n 0000 ~ 14068894 n 0000 ~ 14069057 n 0000 ~ 14069541 n 0000 ~ 14069747 n 0000 | illness caused by poisonous or contaminated food -14068894 26 n 01 botulism 0 001 @ 14068685 n 0000 | food poisoning from ingesting botulin; not infectious; affects the CNS; can be fatal if not treated promptly -14069057 26 n 01 mushroom_poisoning 0 001 @ 14068685 n 0000 | toxic condition caused by eating certain species of mushrooms (especially Amanita species) -14069212 26 n 01 gammopathy 0 001 @ 14204950 n 0000 | a disturbance in the synthesis of immunoglobulins; proteins having antibody activity increase greatly in the blood -14069383 26 n 01 glossolalia 0 001 @ 14204950 n 0000 | repetitive nonmeaningful speech (especially that associated with a trance state or religious fervor) -14069541 26 n 02 ptomaine 0 ptomaine_poisoning 0 001 @ 14068685 n 0000 | a term for food poisoning that is no longer in scientific use; food poisoning was once thought to be caused by ingesting ptomaines -14069747 26 n 01 salmonellosis 0 001 @ 14068685 n 0000 | a kind of food poisoning caused by eating foods contaminated with Salmonella typhimurium -14069895 26 n 03 lead_poisoning 0 plumbism 0 saturnism 0 001 @ 14061805 n 0000 | toxic condition produced by the absorption of excessive lead into the system -14070055 26 n 02 lead_colic 0 painter's_colic 0 001 @ 14325732 n 0000 | symptom of chronic lead poisoning and associated with obstinate constipation -14070206 26 n 01 catalepsy 0 002 @ 14023236 n 0000 + 03054216 a 0101 | a trancelike state with loss of voluntary motion and failure to react to stimuli -14070360 26 n 01 disease 0 043 @ 14061805 n 0000 ~ 14071235 n 0000 ~ 14071559 n 0000 ~ 14072423 n 0000 ~ 14073331 n 0000 ~ 14073906 n 0000 ~ 14074041 n 0000 ~ 14074267 n 0000 ~ 14074394 n 0000 ~ 14074606 n 0000 ~ 14076126 n 0000 ~ 14076270 n 0000 ~ 14076667 n 0000 ~ 14078120 n 0000 ~ 14078421 n 0000 ~ 14078613 n 0000 ~ 14078733 n 0000 ~ 14079493 n 0000 ~ 14079861 n 0000 ~ 14080210 n 0000 ~ 14080352 n 0000 ~ 14080622 n 0000 ~ 14116321 n 0000 ~ 14122053 n 0000 ~ 14123759 n 0000 ~ 14145095 n 0000 ~ 14151139 n 0000 ~ 14171682 n 0000 ~ 14187378 n 0000 ~ 14198200 n 0000 ~ 14198380 n 0000 ~ 14199477 n 0000 ~ 14219487 n 0000 ~ 14219661 n 0000 ~ 14237561 n 0000 ~ 14252864 n 0000 ~ 14253124 n 0000 ~ 14276936 n 0000 %p 14299637 n 0000 %p 14301785 n 0000 %p 14304060 n 0000 ~ 14352163 n 0000 ~ 14368032 n 0000 | an impairment of health or a condition of abnormal functioning -14071235 26 n 01 disease_of_the_neuromuscular_junction 0 003 @ 14070360 n 0000 ~ 14078871 n 0000 ~ 14079156 n 0000 | a disease characterized by impairment of neuromuscular junctions -14071419 26 n 01 angiopathy 0 003 @ 14204950 n 0000 ~ 14235928 n 0000 ~ 14258176 n 0000 | any disease of the blood vessels or lymph ducts -14071559 26 n 01 aspergillosis 1 001 @ 14070360 n 0000 | disease especially in agricultural workers caused by inhalation of Aspergillus spores causing lumps in skin and ears and respiratory organs -14071758 26 n 01 acanthocytosis 0 001 @ 14189204 n 0000 | the presence of acanthocytes in the blood stream (as in abetalipoproteinemia) -14071896 26 n 03 agranulocytosis 0 agranulosis 0 granulocytopenia 0 002 @ 14189204 n 0000 + 02608380 a 0101 | an acute blood disorder (often caused by radiation or drug therapy) characterized by severe reduction in granulocytes -14072126 26 n 01 analbuminemia 0 001 @ 14189204 n 0000 | an abnormally low level of albumin in the blood serum -14072239 26 n 02 Banti's_disease 0 Banti's_syndrome 0 001 @ 14189204 n 0000 | a disease characterized by congestion and enlargement of the spleen; accompanied by anemia or cirrhosis -14072423 26 n 01 anthrax 1 003 @ 14070360 n 0000 ~ 14072625 n 0000 ~ 14072934 n 0000 | a disease of humans that is not communicable; caused by infection with Bacillus anthracis followed by septicemia -14072625 26 n 02 cutaneous_anthrax 0 malignant_pustule 0 001 @ 14072423 n 0000 | a form of anthrax infection that begins as papule that becomes a vesicle and breaks with a discharge of toxins; symptoms of septicemia are severe with vomiting and high fever and profuse sweating; the infection is often fatal -14072934 26 n 07 pulmonary_anthrax 0 inhalation_anthrax 0 anthrax_pneumonia 0 ragpicker's_disease 0 ragsorter's_disease 0 woolsorter's_pneumonia 0 woolsorter's_disease 0 001 @ 14072423 n 0000 | a form of anthrax infection acquired by inhalation of dust containing Bacillus anthracis; initial symptoms (chill and cough and dyspnea and rapid pulse) are followed by extreme cardiovascular collapse -14073331 26 n 01 blackwater 0 001 @ 14070360 n 0000 | any of several human or animal diseases characterized by dark urine resulting from rapid breakdown of red blood cells -14073505 26 n 01 Argentine_hemorrhagic_fever 0 001 @ 14177423 n 0000 | hemorrhagic fever with neurological signs; caused by the Junin virus -14073647 26 n 01 blackwater_fever 0 001 @ 14077830 n 0000 | severe and often fatal malaria characterized by kidney damage resulting in dark urine -14073795 26 n 01 jungle_fever 0 001 @ 14077830 n 0000 | severe form of malaria occurring in tropical regions -14073906 26 n 01 cat_scratch_disease 0 001 @ 14070360 n 0000 | a disease thought to be transmitted to humans by a scratch from a cat -14074041 26 n 01 complication 1 002 @ 14070360 n 0000 + 00402539 v 0101 | any disease or disorder that occurs during the course of (or because of) another disease; "bed sores are a common complication in cases of paralysis" -14074267 26 n 01 crud 0 001 @ 14070360 n 0000 | an ill-defined bodily ailment; "he said he had the crud and needed a doctor" -14074394 26 n 02 endemic 0 endemic_disease 0 001 @ 14070360 n 0000 | a disease that is constantly present to a greater or lesser degree in people of a certain class or in people living in a particular location -14074606 26 n 01 enteropathy 0 002 @ 14070360 n 0000 ~ 14508149 n 0000 | a disease of the intestinal tract -14074715 26 n 03 idiopathic_disease 0 idiopathic_disorder 0 idiopathy 0 001 @ 14052403 n 0000 | any disease arising from internal dysfunctions of unknown cause -14074877 26 n 02 monogenic_disorder 0 monogenic_disease 0 011 @ 14151139 n 0000 ~ 14128812 n 0000 ~ 14155506 n 0000 ~ 14156345 n 0000 ~ 14156976 n 0000 ~ 14157163 n 0000 ~ 14158179 n 0000 ~ 14168792 n 0000 ~ 14169364 n 0000 ~ 14195715 n 0000 ~ 14466974 n 0000 | an inherited disease controlled by a single pair of genes -14075199 26 n 02 polygenic_disorder 0 polygenic_disease 0 002 @ 14151139 n 0000 ~ 14117805 n 0000 | an inherited disease controlled by several genes at once -14075358 26 n 01 hypogonadism 0 003 @ 14076126 n 0000 ~ 14075660 n 0000 ~ 14075838 n 0000 | incompetence of the gonads (especially in the male with low testosterone); results in deficient development of secondary sex characteristics and (in prepubertal males) a body with long legs and a short trunk -14075660 26 n 02 male_hypogonadism 0 eunuchoidism 0 001 @ 14075358 n 0000 | the state of being a eunuch (either because of lacking testicles or because they failed to develop) -14075838 26 n 01 Kallman's_syndrome 0 001 @ 14075358 n 0000 | hypogonadism with anosmia; a congenital sexual disorder that prevents the testicles from maturing at puberty -14076011 26 n 01 valvular_incompetence 0 001 @ 14076126 n 0000 | inability of a bodily valve to close completely -14076126 26 n 01 incompetence 0 003 @ 14070360 n 0000 ~ 14075358 n 0000 ~ 14076011 n 0000 | inability of a part or organ to function properly -14076270 26 n 02 Kawasaki_disease 0 mucocutaneous_lymph_node_syndrome 0 001 @ 14070360 n 0000 | an acute disease of young children characterized by a rash and swollen lymph nodes and fever; of unknown cause -14076479 26 n 03 plague 1 pestilence 0 pest 0 005 @ 14130166 n 0000 + 01427333 a 0202 + 01427333 a 0201 + 01427333 a 0104 + 02771320 v 0102 | any epidemic disease with a high death rate -14076667 26 n 02 pycnosis 0 pyknosis 0 003 @ 14070360 n 0000 + 03009911 a 0201 + 03009911 a 0102 | a degenerative state of the cell nucleus -14076809 26 n 02 hyalinization 0 hyalinisation 0 001 @ 13920835 n 0000 | the state of being hyaline or having become hyaline; "the patient's arterioles showed marked hyalinization" -14076992 26 n 01 hyperparathyroidism 0 002 @ 14059928 n 0000 ! 14077269 n 0101 | excessive secretion of parathyroid hormone resulting in abnormally high levels of calcium in the blood; can affect many systems of the body (especially causing bone resorption and osteoporosis) -14077269 26 n 01 hypoparathyroidism 0 002 @ 14059928 n 0000 ! 14076992 n 0101 | inadequate secretion of parathyroid hormone resulting in abnormally low levels of calcium in the blood -14077454 26 n 01 hyperpituitarism 0 003 @ 14059928 n 0000 #p 14368483 n 0000 #p 14368288 n 0000 | excessive activity of the pituitary gland (especially overactivity of the anterior lobe which leads to excess secretion of growth hormone) -14077693 26 n 03 vacuolization 0 vacuolisation 0 vacuolation 0 001 @ 13920835 n 0000 | the state of having become filled with vacuoles -14077830 26 n 01 malaria 0 005 @ 14178913 n 0000 + 03082745 a 0101 ~ 14073647 n 0000 ~ 14073795 n 0000 %p 14340462 n 0000 | an infective disease caused by sporozoan parasites that are transmitted through the bite of an infected Anopheles mosquito; marked by paroxysms of chills and fever -14078120 26 n 04 Marseilles_fever 0 Kenya_fever 0 Indian_tick_fever 0 boutonneuse_fever 0 001 @ 14070360 n 0000 | a disease (common in India and around the Mediterranean area) caused by a rickettsia that is transmitted to humans by a reddish brown tick (ixodid) that lives on dogs and other mammals -14078421 26 n 01 Meniere's_disease 0 001 @ 14070360 n 0000 | a disease of the inner ear characterized by episodes of dizziness and tinnitus and progressive hearing loss (usually unilateral) -14078613 26 n 01 milk_sickness 0 001 @ 14070360 n 0000 | caused by consuming milk from cattle suffering from trembles -14078733 26 n 01 mimesis 0 002 @ 14070360 n 0000 #p 14393438 n 0000 | any disease that shows symptoms characteristic of another disease -14078871 26 n 02 myasthenia_gravis 0 myasthenia 0 002 @ 14071235 n 0000 @ 14187378 n 0000 | a chronic progressive disease characterized by chronic fatigue and muscular weakness (especially in the face and neck); caused by a deficiency of acetylcholine at the neuromuscular junctions -14079156 26 n 04 Lambert-Eaton_syndrome 0 Eaton-Lambert_syndrome 0 myasthenic_syndrome 0 carcinomatous_myopathy 0 001 @ 14071235 n 0000 | a disease seen in patients with lung cancer and characterized by weakness and fatigue of hip and thigh muscles and an aching back; caused by antibodies directed against the neuromuscular junctions -14079493 26 n 02 occupational_disease 0 industrial_disease 0 001 @ 14070360 n 0000 | disease or disability resulting from conditions of employment (usually from long exposure to a noxious substance or from continuous repetition of certain acts) -14079740 26 n 01 onycholysis 0 001 @ 14079861 n 0000 | separation of a nail from its normal attachment to the nail bed -14079861 26 n 01 onychosis 0 002 @ 14070360 n 0000 ~ 14079740 n 0000 | any disease or disorder of the nails -14079971 26 n 02 Paget's_disease 0 osteitis_deformans 0 001 @ 14351321 n 0000 | a disease of bone occurring in the middle aged and elderly; excessive bone destruction sometimes leading to bone pain and fractures and skeletal deformities -14080210 26 n 01 rheumatism 0 002 @ 14070360 n 0000 + 01173795 a 0103 | any painful disorder of the joints or muscles or connective tissues -14080352 26 n 02 periarteritis_nodosa 0 polyarteritis_nodosa 0 001 @ 14070360 n 0000 | a progressive disease of connective tissue that is characterized by nodules along arteries; nodules may block the artery and result in inadequate circulation to the particular area -14080622 26 n 02 periodontal_disease 0 periodontitis 0 005 @ 14070360 n 0000 ~ 14080836 n 0000 ~ 14081124 n 0000 ~ 14081216 n 0000 ~ 14081297 n 0000 | a disease that attacks the gum and bone and around the teeth -14080836 26 n 04 pyorrhea 1 pyorrhoea 1 pyorrhea_alveolaris 0 Riggs'_disease 0 002 @ 14080622 n 0000 ~ 14081025 n 0000 | chronic periodontitis; purulent inflammation of the teeth sockets -14081025 26 n 01 pericementoclasia 0 001 @ 14080836 n 0000 | pus pocket formation around a tooth -14081124 26 n 01 alveolar_resorption 0 001 @ 14080622 n 0000 | wasting of the bony socket -14081216 26 n 01 gingivitis 0 001 @ 14080622 n 0000 | inflammation of the gums -14081297 26 n 01 ulatrophia 0 001 @ 14080622 n 0000 | recession of the gums -14081375 26 n 01 attack 0 010 @ 07305234 n 0000 ~ 14081665 n 0000 ~ 14081789 n 0000 ~ 14081941 n 0000 ~ 14082186 n 0000 ~ 14082303 n 0000 ~ 14082788 n 0000 ~ 14082984 n 0000 ~ 14100769 n 0000 ~ 14112855 n 0000 | a sudden occurrence of an uncontrollable condition; "an attack of diarrhea" -14081665 26 n 01 anxiety_attack 0 001 @ 14081375 n 0000 | a sudden acute episode of intense anxiety and feelings of panic -14081789 26 n 01 flare 1 001 @ 14081375 n 0000 | a sudden recurrence or worsening of symptoms; "a colitis flare"; "infection can cause a lupus flare" -14081941 26 n 03 seizure 0 ictus 0 raptus 1 006 @ 14081375 n 0000 + 02852128 a 0201 ~ 14082595 n 0000 ~ 14086924 n 0000 ~ 14087096 n 0000 ~ 14088412 n 0000 | a sudden occurrence (or recurrence) of a disease; "he suffered an epileptic seizure" -14082186 26 n 02 touch 0 spot 0 001 @ 14081375 n 0000 | a slight attack of illness; "he has a touch of rheumatism" -14082303 26 n 04 stroke 0 apoplexy 0 cerebrovascular_accident 0 CVA 0 005 @ 14081375 n 0000 + 02634569 a 0201 ~ 14166358 n 0000 ~ 14288561 n 0000 %p 14370391 n 0000 | a sudden loss of consciousness resulting when the rupture or occlusion of a blood vessel leads to oxygen lack in the brain -14082595 26 n 01 convulsion 0 006 @ 14081941 n 0000 + 01389007 v 0101 + 01388813 v 0101 + 00859937 v 0101 ~ 14083061 n 0000 ~ 14083200 n 0000 | violent uncontrollable contractions of muscles -14082788 26 n 03 paroxysm 0 fit 0 convulsion 1 002 @ 14081375 n 0000 + 02774804 a 0101 | a sudden uncontrollable attack; "a paroxysm of giggling"; "a fit of coughing"; "convulsions of laughter" -14082984 26 n 01 hysterics 0 001 @ 14081375 n 0000 | an attack of hysteria -14083061 26 n 01 clonus 0 002 @ 14082595 n 0000 + 02817113 a 0101 | convulsion characterized by alternating contractions and relaxations -14083200 26 n 01 epileptic_seizure 0 004 @ 14082595 n 0000 #p 14086143 n 0000 ~ 14083368 n 0000 ~ 14083559 n 0000 | convulsions accompanied by impaired consciousness -14083368 26 n 03 grand_mal 0 generalized_seizure 0 epilepsia_major 0 001 @ 14083200 n 0000 | a seizure during which the patient becomes unconscious and has convulsions over the entire body -14083559 26 n 02 petit_mal 0 epilepsia_minor 0 001 @ 14083200 n 0000 | a seizure of short duration characterized by momentary unconsciousness and local muscle spasms or twitching; "the girl was frightened by her first petit mal" -14083790 26 n 05 mental_disorder 0 mental_disturbance 0 disturbance 1 psychological_disorder 0 folie 0 016 @ 14052403 n 0000 ;c 06055946 n 0000 ~ 14084291 n 0000 ~ 14380473 n 0000 ~ 14386475 n 0000 ~ 14386590 n 0000 ~ 14386697 n 0000 ~ 14387202 n 0000 ~ 14387349 n 0000 ~ 14387477 n 0000 ~ 14387604 n 0000 ~ 14387807 n 0000 ~ 14388910 n 0000 ~ 14393033 n 0000 ~ 14393161 n 0000 ~ 14417300 n 0000 | (psychiatry) a psychological disorder of thought or emotion; a more neutral term than mental illness -14084291 26 n 01 Asperger's_syndrome 0 001 @ 14083790 n 0000 | a psychiatric disorder usually noted during early school years; characterized by impaired social relations and by repetitive patterns of behavior -14084502 26 n 01 metabolic_disorder 0 007 @ 14052403 n 0000 ~ 14084709 n 0000 ~ 14155834 n 0000 ~ 14193711 n 0000 ~ 14194183 n 0000 ~ 14270380 n 0000 ~ 14270614 n 0000 | a disorder or defect of metabolism -14084709 26 n 02 alkaptonuria 0 alcaptonuria 0 001 @ 14084502 n 0000 | a rare recessive metabolic anomaly marked by ochronosis and the presence of alkapton in the urine -14084880 26 n 03 nervous_disorder 0 neurological_disorder 0 neurological_disease 0 012 @ 14052403 n 0000 ~ 14085220 n 0000 ~ 14085708 n 0000 ~ 14091254 n 0000 ~ 14091965 n 0000 ~ 14092577 n 0000 ~ 14094881 n 0000 ~ 14095273 n 0000 ~ 14105737 n 0000 ~ 14108938 n 0000 ~ 14109101 n 0000 ~ 14109485 n 0000 | a disorder of the nervous system -14085220 26 n 01 brain_damage 0 002 @ 14285662 n 0000 @ 14084880 n 0000 | injury to the brain that impairs its functions (especially permanently); can be caused by trauma to the head, infection, hemorrhage, inadequate oxygen, genetic abnormality, etc. -14085474 26 n 02 akinesis 0 akinesia 0 001 @ 14558226 n 0000 | motionlessness attributable to a temporary paralysis -14085592 26 n 01 alalia 0 001 @ 14558226 n 0000 | paralysis of the vocal cords resulting in an inability to speak -14085708 26 n 03 brain_disorder 0 encephalopathy 0 brain_disease 0 012 @ 14084880 n 0000 ~ 14086143 n 0000 ~ 14091126 n 0000 ~ 14094350 n 0000 ~ 14094653 n 0000 ~ 14095948 n 0000 ~ 14096123 n 0000 ~ 14097574 n 0000 ~ 14099933 n 0000 ~ 14100494 n 0000 ~ 14309653 n 0000 ~ 14397372 n 0000 | any disorder or disease of the brain -14086036 26 n 02 cystoplegia 0 cystoparalysis 0 001 @ 14558226 n 0000 | paralysis of the urinary bladder -14086143 26 n 01 epilepsy 0 014 @ 14085708 n 0000 + 02945660 a 0101 %p 14083200 n 0000 ~ 14086528 n 0000 ~ 14086626 n 0000 ~ 14087513 n 0000 ~ 14087938 n 0000 ~ 14088127 n 0000 ~ 14089450 n 0000 ~ 14089592 n 0000 ~ 14089974 n 0000 ~ 14090245 n 0000 ~ 14090530 n 0000 ~ 14090727 n 0000 | a disorder of the central nervous system characterized by loss of consciousness and convulsions -14086528 26 n 01 akinetic_epilepsy 0 001 @ 14086143 n 0000 | epilepsy characterized by akinesia -14086626 26 n 02 cortical_epilepsy 0 focal_epilepsy 0 004 @ 14086143 n 0000 %p 14086924 n 0000 ~ 14087758 n 0000 ~ 14090416 n 0000 | epilepsy in which the attacks begins with an isolated disturbance of cerebral function (as a twitching of a limb or an illusory sensation or a mental disturbance) -14086924 26 n 01 focal_seizure 0 002 @ 14081941 n 0000 #p 14086626 n 0000 | transitory disturbance in motor or sensory function resulting from abnormal cortical activity -14087096 26 n 01 raptus_hemorrhagicus 0 001 @ 14081941 n 0000 | seizure caused by a sudden profuse hemorrhage -14087208 26 n 01 diplegia 0 001 @ 14558226 n 0000 | paralysis of corresponding parts on both sides of the body -14087321 26 n 01 protuberance 0 003 @ 13920835 n 0000 + 01353618 a 0106 + 02714541 v 0101 | the condition of being protuberant; the condition of bulging out; "the protuberance of his belly" -14087513 26 n 04 grand_mal_epilepsy 0 grand_mal 1 generalized_epilepsy 0 epilepsia_major 1 001 @ 14086143 n 0000 | epilepsy in which the attacks involve loss of consciousness and tonic spasms of the musculature followed by generalized jerking -14087758 26 n 01 Jacksonian_epilepsy 0 001 @ 14086626 n 0000 | focal epilepsy in which the attack usually moves from distal to proximal limb muscles on the same side of the body -14087938 26 n 02 myoclonus_epilepsy 0 Lafora's_disease 0 001 @ 14086143 n 0000 | epilepsy characterized by clonus of muscle groups and progressive mental deterioration and genetic origin -14088127 26 n 03 petit_mal_epilepsy 0 petit_mal 1 epilepsia_minor 1 002 @ 14086143 n 0000 %p 14088412 n 0000 | epilepsy characterized by paroxysmal attacks of brief clouding of consciousness (and possibly other abnormalities); "she has been suffering from petit mal since childhood" -14088412 26 n 02 absence 1 absence_seizure 0 005 @ 14081941 n 0000 #p 14088127 n 0000 ~ 14088758 n 0000 ~ 14088918 n 0000 ~ 14089080 n 0000 | the occurrence of an abrupt, transient loss or impairment of consciousness (which is not subsequently remembered), sometimes with light twitching, fluttering eyelids, etc.; common in petit mal epilepsy -14088758 26 n 01 complex_absence 0 001 @ 14088412 n 0000 | an absence seizure accompanied by other abnormalities (atonia or automatisms or vasomotor changes) -14088918 26 n 02 pure_absence 0 simple_absence 0 001 @ 14088412 n 0000 | an absence seizure without other complications; followed by 3-per-sec brainwave spikes -14089080 26 n 01 subclinical_absence 0 001 @ 14088412 n 0000 | a transient impairment of cortical function demonstrable only by 3-per-second brainwave spikes -14089240 26 n 01 musicogenic_epilepsy 0 001 @ 14090245 n 0000 | reflex epilepsy induced by music -14089339 26 n 01 photogenic_epilepsy 0 001 @ 14090245 n 0000 | reflex epilepsy induced by a flickering light -14089450 26 n 02 posttraumatic_epilepsy 0 traumatic_epilepsy 0 001 @ 14086143 n 0000 | a convulsive epileptic state caused by a head injury -14089592 26 n 01 procursive_epilepsy 0 001 @ 14086143 n 0000 | epilepsy in which a seizure is induced by whirling or running -14089719 26 n 02 progressive_vaccinia 0 vaccinia_gangrenosa 0 001 @ 14358022 n 0000 | a severe or even fatal form of vaccinia that occurs mainly in persons with an immunological deficiency; characterized by progressive enlargement of the initial lesion -14089974 26 n 02 psychomotor_epilepsy 0 temporal_lobe_epilepsy 0 001 @ 14086143 n 0000 | epilepsy characterized clinically by impairment of consciousness and amnesia for the episode; often involves purposeful movements of the arms and legs and sometimes hallucinations -14090245 26 n 01 reflex_epilepsy 0 003 @ 14086143 n 0000 ~ 14089240 n 0000 ~ 14089339 n 0000 | a form of epilepsy in which attacks are induced by peripheral stimulation -14090416 26 n 01 sensory_epilepsy 0 001 @ 14086626 n 0000 | focal epilepsy initiated by somatosensory phenomena -14090530 26 n 01 status_epilepticus 0 001 @ 14086143 n 0000 | a condition in which there are continuing attacks of epilepsy without intervals of consciousness; can lead to brain damage and death -14090727 26 n 01 tonic_epilepsy 0 001 @ 14086143 n 0000 | epilepsy in which the body is rigid during the seizure -14090842 26 n 02 Erb's_palsy 0 Erb-Duchenne_paralysis 0 001 @ 14558226 n 0000 | paralysis of the arm resulting from injury to the brachial plexus (usually during childbirth) -14091018 26 n 01 nympholepsy 0 001 @ 14391876 n 0000 | a frenzy of emotion; as for something unattainable -14091126 26 n 01 apraxia 0 003 @ 14085708 n 0000 + 01018359 a 0102 + 01018359 a 0101 | inability to make purposeful movements -14091254 26 n 04 ataxia 0 ataxy 0 dyssynergia 0 motor_ataxia 0 006 @ 14084880 n 0000 #p 14471507 n 0000 + 02646952 a 0101 + 02646952 a 0102 ~ 14091525 n 0000 ~ 14091757 n 0000 | inability to coordinate voluntary muscle movements; unsteady movements and staggering gait -14091525 26 n 02 Friedreich's_ataxia 0 herediatry_spinal_ataxia 0 001 @ 14091254 n 0000 | sclerosis of the posterior and lateral columns of the spinal cord; characterized by muscular weakness and abnormal gait; occurs in children -14091757 26 n 01 hereditary_cerebellar_ataxia 0 001 @ 14091254 n 0000 | nervous disorder of late childhood and early adulthood; characterized by ataxic gait and hesitating or explosive speech and nystagmus -14091965 26 n 02 atopognosia 0 atopognosis 0 001 @ 14084880 n 0000 | absence or loss of topognosia; inability to locate correctly a point of touch -14092114 26 n 02 brachydactyly 0 brachydactylia 0 002 @ 14501726 n 0000 + 01597105 a 0101 | abnormal shortness of fingers and toes -14092247 26 n 03 cryptorchidy 0 cryptorchidism 0 cryptorchism 0 003 @ 14501726 n 0000 %p 05525391 n 0000 ~ 14092456 n 0000 | failure of one or both testes to move into the scrotum as the male fetus develops -14092456 26 n 02 monorchism 0 monorchidism 0 001 @ 14092247 n 0000 | failure of one testes to descend into the scrotum -14092577 26 n 01 dyskinesia 0 002 @ 14084880 n 0000 ~ 14092704 n 0000 | abnormality in performing voluntary muscle movements -14092704 26 n 01 tardive_dyskinesia 0 001 @ 14092577 n 0000 | involuntary rolling of the tongue and twitching of the face or trunk or limbs; often occurs in patients with Parkinsonism who are treated with phenothiazine -14092925 26 n 01 deviated_septum 0 002 @ 14501726 n 0000 ~ 14093096 n 0000 | abnormal displacement of any wall that separates two chambers (usually in the nasal cavity) -14093096 26 n 01 deviated_nasal_septum 0 001 @ 14092925 n 0000 | abnormal shift in location of the nasal septum; a common condition causing obstruction of the nasal passages and difficulty in breathing and recurrent nosebleeds -14093325 26 n 01 dextrocardia 0 001 @ 14501726 n 0000 | abnormal condition where the heart is located toward the right side of the chest -14093464 26 n 01 ectrodactyly 0 001 @ 14501726 n 0000 | congenital abnormality involving the absence of some fingers or toes -14093591 26 n 01 enteroptosis 0 001 @ 14559208 n 0000 | an abnormally downward position of the intestines in the abdominal cavity -14093723 26 n 01 erethism 0 001 @ 14501726 n 0000 | an abnormally high degree of irritability or sensitivity to stimulation of an organ or body part -14093874 26 n 02 fetal_distress 0 foetal_distress 0 001 @ 14501726 n 0000 | an abnormal condition of a fetus; usually discovered during pregnancy and characterized by an abnormal heart rhythm -14094068 26 n 04 multiple_sclerosis 0 MS 0 disseminated_sclerosis 0 disseminated_multiple_sclerosis 0 004 @ 14110411 n 0000 @ 14058563 n 0000 @ 14187378 n 0000 %p 14058770 n 0000 | a chronic progressive nervous disorder involving loss of myelin sheath around certain nerve fibers -14094350 26 n 06 paralysis_agitans 0 Parkinsonism 0 Parkinson's_disease 0 Parkinson's_syndrome 0 Parkinson's 0 shaking_palsy 0 003 @ 14085708 n 0000 @ 14058563 n 0000 %p 14005137 n 0000 | a degenerative disorder of the central nervous system characterized by tremor and impaired muscular coordination -14094653 26 n 02 cerebral_palsy 0 spastic_paralysis 0 003 @ 14085708 n 0000 + 02546713 a 0201 + 03119608 a 0201 | a loss or deficiency of motor control with involuntary spasms caused by permanent brain damage present at birth -14094881 26 n 01 chorea 0 006 @ 14084880 n 0000 @ 14058563 n 0000 ~ 14095439 n 0000 ~ 14095568 n 0000 ~ 14095742 n 0000 ~ 14156976 n 0000 | any of several degenerative nervous disorders characterized by spasmodic movements of the body and limbs -14095128 26 n 01 choriomeningitis 0 002 @ 14137829 n 0000 ~ 14137408 n 0000 | a cerebral meningitis with cellular infiltration of the meninges -14095273 26 n 01 flaccid_paralysis 0 001 @ 14084880 n 0000 | weakness or loss of muscle tone resulting from injury or disease of the nerves innervating the muscles -14095439 26 n 01 orthochorea 0 001 @ 14094881 n 0000 | a form of chorea in which spasms occur mainly when the patient is erect -14095568 26 n 03 Sydenham's_chorea 0 Saint_Vitus_dance 0 St._Vitus_dance 0 001 @ 14094881 n 0000 | chorea occurring chiefly in children and associated with rheumatic fever -14095742 26 n 01 tarantism 0 001 @ 14094881 n 0000 | a nervous disorder characterized by an uncontrollable impulse to dance; popularly attributed to bite of the southern European tarantula or wolf spider -14095948 26 n 03 agraphia 0 anorthography 0 logagraphia 0 001 @ 14085708 n 0000 | a loss of the ability to write or to express thoughts in writing because of a brain lesion -14096123 26 n 01 acataphasia 0 001 @ 14085708 n 0000 | a disorder in which a lesion to the central nervous system leaves you unable to formulate a statement or to express yourself in an organized manner -14096328 26 n 01 aphagia 0 001 @ 14204950 n 0000 | loss of the ability to swallow -14096412 26 n 01 amaurosis 0 002 @ 14552802 n 0000 + 02615804 a 0101 | partial or total loss of sight without pathology of the eye; caused by disease of optic nerve or retina or brain -14096598 26 n 01 amblyopia 0 002 @ 14552802 n 0000 + 02615921 a 0101 | visual impairment without apparent organic pathology -14096724 26 n 01 ametropia 0 006 @ 14552802 n 0000 ;c 06054446 n 0000 + 00105388 a 0101 ~ 14553290 n 0000 ~ 14553590 n 0000 ~ 14554011 n 0000 | (ophthalmology) faulty refraction of light rays in the eye as in astigmatism or myopia -14096957 26 n 01 emmetropia 0 003 @ 14034177 n 0000 ;c 06054446 n 0000 + 00105566 a 0101 | (ophthalmology) the normal refractive condition of the eye in which there is clear focus of light on the retina -14097162 26 n 01 aniseikonia 0 002 @ 14552802 n 0000 + 02624477 a 0101 | visual defect in which the shape and size of an ocular image differ in the two eyes -14097321 26 n 01 anorthopia 0 001 @ 14552802 n 0000 | distorted vision in which straight lines appear curved -14097432 26 n 01 aphakia 0 001 @ 14552802 n 0000 | absence of the natural lens of the eye (usually resulting from the removal of cataracts) -14097574 26 n 01 aphasia 0 011 @ 14085708 n 0000 + 00151530 a 0101 + 02632363 a 0101 ~ 14097893 n 0000 ~ 14098078 n 0000 ~ 14098347 n 0000 ~ 14098458 n 0000 ~ 14098663 n 0000 ~ 14098864 n 0000 ~ 14099050 n 0000 ~ 14099172 n 0000 | inability to use or understand language (spoken or written) because of a brain lesion -14097893 26 n 03 auditory_aphasia 0 acoustic_aphasia 0 word_deafness 0 001 @ 14097574 n 0000 | an impairment in understanding spoken language that is not attributable to hearing loss -14098078 26 n 02 conduction_aphasia 0 associative_aphasia 0 001 @ 14097574 n 0000 | aphasia in which the lesion is assumed to be in the association tracts connecting the various language centers in the brain; patient's have difficulty repeating a sentence just heard -14098347 26 n 02 global_aphasia 0 total_aphasia 0 001 @ 14097574 n 0000 | loss of all ability to communicate -14098458 26 n 05 motor_aphasia 0 Broca's_aphasia 0 ataxic_aphasia 0 expressive_aphasia 0 nonfluent_aphasia 0 001 @ 14097574 n 0000 | aphasia in which expression by speech or writing is severely impaired -14098663 26 n 05 nominal_aphasia 0 anomic_aphasia 0 anomia 0 amnesic_aphasia 0 amnestic_aphasia 0 001 @ 14097574 n 0000 | inability to name objects or to recognize written or spoken names of objects -14098864 26 n 01 transcortical_aphasia 0 001 @ 14097574 n 0000 | a general term for aphasia that results from lesions outside of Broca's area or Wernicke's area of the cerebral cortex -14099050 26 n 03 visual_aphasia 0 alexia 0 word_blindness 0 001 @ 14097574 n 0000 | inability to perceive written words -14099172 26 n 05 Wernicke's_aphasia 0 fluent_aphasia 0 receptive_aphasia 0 sensory_aphasia 0 impressive_aphasia 0 001 @ 14097574 n 0000 | aphasia characterized by fluent but meaningless speech and severe impairment of the ability understand spoken or written words -14099439 26 n 01 dyscalculia 0 001 @ 14060688 n 0000 | impaired ability to learn grade-appropriate mathematics -14099552 26 n 01 dysgraphia 0 001 @ 14060688 n 0000 | impaired ability to learn to write -14099643 26 n 01 dyslexia 0 004 @ 14060688 n 0000 + 01275195 a 0102 + 03040408 a 0101 + 01275195 a 0101 | impaired ability to learn to read -14099785 26 n 01 dysphasia 0 001 @ 14548343 n 0000 | an impairment of language (especially speech production) that is usually due to brain damage -14099933 26 n 01 agnosia 0 004 @ 14085708 n 0000 ~ 14056143 n 0000 ~ 14100243 n 0000 ~ 14100370 n 0000 | inability to recognize objects by use of the senses -14100092 26 n 01 anarthria 0 001 @ 14400677 n 0000 | partial or total loss of articulate speech resulting from lesions of the central nervous system -14100243 26 n 01 auditory_agnosia 0 001 @ 14099933 n 0000 | inability to recognize or understand the meaning of spoken words -14100370 26 n 01 visual_agnosia 0 001 @ 14099933 n 0000 | inability to recognize or interpret objects in the visual field -14100494 26 n 03 Creutzfeldt-Jakob_disease 0 CJD 0 Jakob-Creutzfeldt_disease 0 001 @ 14085708 n 0000 | rare (usually fatal) brain disease (usually in middle age) caused by an unidentified slow virus; characterized by progressive dementia and gradual loss of muscle control -14100769 26 n 01 occlusion 0 006 @ 14081375 n 0000 ~ 14100957 n 0000 ~ 14101083 n 0000 ~ 14101935 n 0000 ~ 14102075 n 0000 ~ 14102454 n 0000 | closure or blockage (as of a blood vessel) -14100957 26 n 01 laryngospasm 0 001 @ 14100769 n 0000 | a closure of the larynx that blocks the passage of air to the lungs -14101083 26 n 01 embolism 0 006 @ 14100769 n 0000 + 02992453 a 0101 ~ 14101317 n 0000 ~ 14101568 n 0000 ~ 14101801 n 0000 %p 14373407 n 0000 | occlusion of a blood vessel by an embolus (a loose clot or air bubble or other particle) -14101317 26 n 03 air_embolism 0 aeroembolism 0 gas_embolism 0 001 @ 14101083 n 0000 | obstruction of the circulatory system caused by an air bubble as, e.g., accidentally during surgery or hypodermic injection or as a complication from scuba diving -14101568 26 n 01 fat_embolism 0 001 @ 14101083 n 0000 | serious condition in which fat blocks an artery; fat can enter the blood stream after a long bone is fractured or if adipose tissue is injured or as a result of a fatty liver -14101801 26 n 01 pulmonary_embolism 0 001 @ 14101083 n 0000 | blockage of the pulmonary artery by foreign matter or by a blood clot -14101935 26 n 01 thromboembolism 0 001 @ 14100769 n 0000 | occlusion of a blood vessel by an embolus that has broken away from a thrombus -14102075 26 n 01 thrombosis 0 006 @ 14100769 n 0000 ~ 14102347 n 0000 ~ 14102831 n 0000 ~ 14103018 n 0000 ~ 14353008 n 0000 %p 14373246 n 0000 | the formation or presence of a thrombus (a clot of coagulated blood attached at the site of its formation) in a blood vessel -14102347 26 n 01 cerebral_thrombosis 0 001 @ 14102075 n 0000 | a blood clot in a cerebral artery or vein -14102454 26 n 01 coronary_occlusion 0 002 @ 14102631 n 0000 @ 14100769 n 0000 | occlusion of a coronary artery caused either by progressive atherosclerosis or by a blood clot -14102631 26 n 01 coronary_heart_disease 0 003 @ 14103288 n 0000 ~ 14102454 n 0000 ~ 14102831 n 0000 | a heart disease due to an abnormality of the arteries that supply blood and oxygen to the heart -14102831 26 n 02 coronary_thrombosis 0 coronary 0 003 @ 14102631 n 0000 @ 14102075 n 0000 #p 14112855 n 0000 | obstruction of blood flow in a coronary artery by a blood clot (thrombus) -14103018 26 n 03 milk_leg 0 white_leg 0 phlegmasia_alba_dolens 0 001 @ 14102075 n 0000 | painful thrombosis of the femoral vein in the leg following childbirth -14103180 26 n 02 hepatomegaly 0 megalohepatia 0 001 @ 14501726 n 0000 | abnormal enlargement of the liver -14103288 26 n 02 heart_disease 0 cardiopathy 0 008 @ 14057371 n 0000 ~ 14102631 n 0000 ~ 14108039 n 0000 ~ 14110674 n 0000 ~ 14110966 n 0000 ~ 14112255 n 0000 ~ 14112466 n 0000 ~ 14142983 n 0000 | a disease of the heart -14103510 26 n 02 high_blood_pressure 0 hypertension 0 006 @ 14057371 n 0000 ! 14104522 n 0201 ~ 14104645 n 0000 ~ 14105091 n 0000 ~ 14105386 n 0000 ~ 14105504 n 0000 | a common disorder in which blood pressure remains abnormally high (a reading of 140/90 mm Hg or greater) -14103785 26 n 01 inversion 0 001 @ 14501726 n 0000 | abnormal condition in which an organ is turned inward or inside out (as when the upper part of the uterus is pulled into the cervical canal after childbirth) -14103998 26 n 02 transposition 0 heterotaxy 0 001 @ 14501726 n 0000 | any abnormal position of the organs of the body -14104118 26 n 01 keratectasia 0 001 @ 14553590 n 0000 | abnormal bulging of the cornea of the eye -14104218 26 n 01 keratoconus 0 001 @ 14553590 n 0000 | abnormal cone-shaped protrusion of the cornea of the eye; can be treated by epikeratophakia -14104367 26 n 02 orthostatic_hypotension 0 postural_hypotension 0 001 @ 14104522 n 0000 | low blood pressure occurring in some people when they stand up -14104522 26 n 01 hypotension 0 003 @ 14057371 n 0000 ! 14103510 n 0102 ~ 14104367 n 0000 | abnormally low blood pressure -14104645 26 n 03 essential_hypertension 0 hyperpiesia 0 hyperpiesis 0 001 @ 14103510 n 0000 | persistent and pathological high blood pressure for which no specific cause can be found -14104830 26 n 01 portal_hypertension 0 001 @ 14105091 n 0000 | increase in blood pressure in the veins of the portal system caused by obstruction in the liver (often associated with alcoholic cirrhosis), causing enlargement of the spleen and collateral veins -14105091 26 n 01 malignant_hypertension 0 002 @ 14103510 n 0000 ~ 14104830 n 0000 | severe hypertension that runs a rapid course and damages the inner linings of the blood vessels and the heart and spleen and kidneys and brain; "malignant hypertension is the most lethal form of hypertension" -14105386 26 n 01 secondary_hypertension 0 001 @ 14103510 n 0000 | hypertension that is secondary to another disease -14105504 26 n 01 white-coat_hypertension 0 001 @ 14103510 n 0000 | temporary rise in blood pressure in the doctor's office -14105629 26 n 02 amyotrophia 0 amyotrophy 0 001 @ 14365741 n 0000 | progressive wasting of muscle tissues -14105737 26 n 03 amyotrophic_lateral_sclerosis 0 ALS 0 Lou_Gehrig's_disease 0 002 @ 14084880 n 0000 @ 14110411 n 0000 | thickening of tissue in the motor tracts of the lateral columns and anterior horns of the spinal cord; results in progressive muscle atrophy that starts in the limbs -14106025 26 n 02 aneurysm 0 aneurism 0 009 @ 14057371 n 0000 + 03005862 a 0204 + 03005862 a 0202 + 03005862 a 0103 + 03005862 a 0101 ~ 14106352 n 0000 ~ 14107653 n 0000 ~ 14107750 n 0000 ~ 14107849 n 0000 | a cardiovascular disease characterized by a saclike widening of an artery resulting from weakening of the artery wall -14106352 26 n 01 aortic_aneurysm 0 002 @ 14106025 n 0000 ~ 14106456 n 0000 | an aneurysm of the aorta -14106456 26 n 02 abdominal_aortic_aneurysm 0 AAA 0 001 @ 14106352 n 0000 | an aneurysm of the abdominal aorta associated with old age and hypertension -14106609 26 n 01 aortic_stenosis 0 002 @ 14107374 n 0000 @ 14112466 n 0000 | abnormal narrowing of the aortic valve -14106727 26 n 01 enterostenosis 0 001 @ 14107374 n 0000 | abnormal narrowing of the intestine -14106823 26 n 01 laryngostenosis 0 001 @ 14107374 n 0000 | abnormal narrowing of the larynx -14106917 26 n 01 pulmonary_stenosis 0 002 @ 14107374 n 0000 #p 14469766 n 0000 | abnormal narrowing of the opening into the pulmonary artery from the right ventricle -14107085 26 n 01 pyloric_stenosis 0 001 @ 14107374 n 0000 | narrowing of the pyloric sphincter that blocks the passage of food from the stomach into the duodenum -14107249 26 n 01 rhinostenosis 0 002 @ 14107374 n 0000 @ 14396890 n 0000 | narrowing of the passages in the nasal cavities -14107374 26 n 02 stenosis 0 stricture 0 010 @ 14204950 n 0000 + 01449007 a 0102 ~ 14106609 n 0000 ~ 14106727 n 0000 ~ 14106823 n 0000 ~ 14106917 n 0000 ~ 14107085 n 0000 ~ 14107249 n 0000 ~ 14111915 n 0000 ~ 14572770 n 0000 | abnormal narrowing of a bodily canal or passageway -14107653 26 n 01 cerebral_aneurysm 0 001 @ 14106025 n 0000 | an aneurysm of the carotid artery -14107750 26 n 01 intracranial_aneurysm 0 001 @ 14106025 n 0000 | an aneurysm of a cranial artery -14107849 26 n 01 ventricular_aneurysm 0 001 @ 14106025 n 0000 | a localized dilation or protrusion on the wall of the left ventricle of the heart (occurring after a myocardial infarction) -14108039 26 n 02 angina_pectoris 0 angina 1 003 @ 14103288 n 0000 + 02623037 a 0203 + 02623037 a 0201 | a heart condition marked by paroxysms of chest pain due to reduced oxygen to the heart -14108232 26 n 01 arteriolosclerosis 0 001 @ 14110411 n 0000 | sclerosis of the arterioles -14108324 26 n 05 arteriosclerosis 0 arterial_sclerosis 0 hardening_of_the_arteries 0 induration_of_the_arteries 0 coronary-artery_disease 0 004 @ 14110411 n 0000 + 02930987 a 0101 ~ 14108713 n 0000 ~ 14109889 n 0000 | sclerosis of the arterial walls -14108576 26 n 01 atherogenesis 0 001 @ 14204950 n 0000 | the formation of atheromas on the walls of the arteries as in atherosclerosis -14108713 26 n 02 atherosclerosis 0 coronary_artery_disease 0 002 @ 14108324 n 0000 + 02647123 a 0101 | a stage of arteriosclerosis involving fatty deposits (atheromas) inside the arterial walls, thus narrowing the arteries -14108938 26 n 01 athetosis 0 001 @ 14084880 n 0000 | a continuous succession of slow, writhing, involuntary movements of the hands and feet and other body parts -14109101 26 n 01 kuru 0 001 @ 14084880 n 0000 | a progressive disease of the central nervous system marked by increasing lack of coordination and advancing to paralysis and death within a year of the appearance of symptoms; thought to have been transmitted by cannibalistic consumption of diseased brain tissue since the disease virtually disappeared when cannibalism was abandoned -14109485 26 n 01 nerve_compression 0 002 @ 14084880 n 0000 ~ 14109691 n 0000 | harmful pressure on a nerve (especially in nerves that pass over rigid prominences); causes nerve damage and muscle weakness -14109691 26 n 01 nerve_entrapment 0 002 @ 14109485 n 0000 ~ 14057569 n 0000 | repeated and long-term nerve compression (usually in nerves near joints that are subject to inflammation or swelling) -14109889 26 n 01 arteriosclerosis_obliterans 0 001 @ 14108324 n 0000 | a stage of arteriosclerosis involving closure of blood vessels -14110025 26 n 01 ascites 0 002 @ 14204950 n 0000 + 02644407 a 0101 | accumulation of serous fluid in peritoneal cavity -14110146 26 n 01 azymia 0 001 @ 14204950 n 0000 | absence of an enzyme -14110219 26 n 03 bacteremia 0 bacteriemia 0 bacteriaemia 0 003 @ 14204950 n 0000 ;c 01326291 n 0000 + 02657221 a 0101 | transient presence of bacteria (or other microorganisms) in the blood -14110411 26 n 02 sclerosis 0 induration 0 009 @ 14204950 n 0000 + 00443384 v 0202 + 00443116 v 0202 + 02793513 a 0101 ~ 14094068 n 0000 ~ 14105737 n 0000 ~ 14108232 n 0000 ~ 14108324 n 0000 ~ 14188467 n 0000 | any pathological hardening or thickening of tissue -14110674 26 n 02 cardiac_arrhythmia 0 arrhythmia 0 010 @ 14103288 n 0000 + 02303575 a 0201 ~ 14111355 n 0000 ~ 14111540 n 0000 ~ 14362373 n 0000 ~ 14362510 n 0000 ~ 14362593 n 0000 ~ 14362841 n 0000 ~ 14363027 n 0000 ~ 14363139 n 0000 | an abnormal rate of muscle contractions in the heart -14110966 26 n 02 cardiomyopathy 0 myocardiopathy 0 002 @ 14103288 n 0000 ~ 14111133 n 0000 | a disorder (usually of unknown origin) of the heart muscle (myocardium) -14111133 26 n 01 hypertrophic_cardiomyopathy 0 001 @ 14110966 n 0000 | a disorder in which the heart muscle is so strong that it does not relax enough to fill with the heart with blood and so has reduced pumping ability -14111355 26 n 01 flutter 0 002 @ 14110674 n 0000 + 01879928 v 0102 | abnormally rapid beating of the auricles of the heart (especially in a regular rhythm); can result in heart block -14111540 26 n 02 gallop_rhythm 0 cantering_rhythm 0 001 @ 14110674 n 0000 | cardiac rhythm characterized by the presence of an extra sound; can indicate a heart abnormality -14111715 26 n 01 mitral_valve_prolapse 0 001 @ 14112466 n 0000 | cardiopathy resulting from the mitral valve not regulating the flow of blood between the left atrium and left ventricle of the heart -14111915 26 n 02 mitral_stenosis 0 mitral_valve_stenosis 0 002 @ 14107374 n 0000 @ 14112466 n 0000 | obstruction or narrowing of the mitral valve (as by scarring from rheumatic fever) -14112101 26 n 01 circulatory_failure 0 001 @ 14057371 n 0000 | failure of the cardiovascular system to supply adequate amounts of blood to body tissues -14112255 26 n 02 heart_failure 0 coronary_failure 0 004 @ 14103288 n 0000 @ 14059663 n 0000 ~ 14112719 n 0000 ~ 14112855 n 0000 | inability of the heart to pump enough blood to sustain normal bodily functions -14112466 26 n 01 valvular_heart_disease 0 004 @ 14103288 n 0000 ~ 14106609 n 0000 ~ 14111715 n 0000 ~ 14111915 n 0000 | heart disease caused by stenosis of the cardiac valves and obstructed blood flow or caused by degeneration and blood regurgitation -14112719 26 n 01 congestive_heart_failure 0 001 @ 14112255 n 0000 | inability to pump enough blood to avoid congestion in the tissues -14112855 26 n 01 heart_attack 0 004 @ 14081375 n 0000 @ 14112255 n 0000 %p 14102831 n 0000 %p 14113021 n 0000 | a sudden severe instance of abnormal heart function -14113021 26 n 03 myocardial_infarction 0 myocardial_infarct 0 MI 0 002 @ 14207561 n 0000 #p 14112855 n 0000 | destruction of heart tissue resulting from obstruction of the blood supply to the heart muscle -14113228 26 n 04 kidney_disease 0 renal_disorder 0 nephropathy 0 nephrosis 0 007 @ 14573196 n 0000 ~ 14113798 n 0000 ~ 14113938 n 0000 ~ 14114186 n 0000 ~ 14114365 n 0000 ~ 14114555 n 0000 ~ 14114773 n 0000 | a disease affecting the kidneys -14113471 26 n 01 insufficiency 0 003 @ 05207130 n 0000 ;c 06060845 n 0000 ~ 14113636 n 0000 | (pathology) inability of a bodily part or organ to function normally -14113636 26 n 02 coronary_insufficiency 0 cardiac_insufficiency 0 001 @ 14113471 n 0000 | inadequate blood flow to the heart muscles; can cause angina pectoris -14113798 26 n 02 nephritis 0 Bright's_disease 0 003 @ 14113228 n 0000 + 02883710 a 0101 ~ 14116078 n 0000 | an inflammation of the kidney -14113938 26 n 02 nephrosclerosis 0 nephroangiosclerosis 0 001 @ 14113228 n 0000 | kidney disease that is usually associated with hypertension; sclerosis of the renal arterioles reduces blood flow that can lead to kidney failure and heart failure -14114186 26 n 02 polycystic_kidney_disease 0 PKD 0 001 @ 14113228 n 0000 | kidney disease characterized by enlarged kidneys containing many cysts; often leads to kidney failure -14114365 26 n 01 polyuria 0 002 @ 14113228 n 0000 #p 14117805 n 0000 | renal disorder characterized by the production of large volumes of pale dilute urine; often associated with diabetes -14114555 26 n 02 renal_failure 0 kidney_failure 0 004 @ 14113228 n 0000 @ 14059663 n 0000 ~ 14114886 n 0000 ~ 14115086 n 0000 | inability of the kidneys to excrete wastes and to help maintain the electrolyte balance -14114773 26 n 01 renal_insufficiency 0 001 @ 14113228 n 0000 | insufficient excretion of wastes by the kidneys -14114886 26 n 02 acute_renal_failure 0 acute_kidney_failure 0 001 @ 14114555 n 0000 | renal failure associated with burns or other trauma or with acute infection or obstruction of the urinary tract -14115086 26 n 02 chronic_renal_failure 0 chronic_kidney_failure 0 001 @ 14114555 n 0000 | renal failure that can result from a variety of systemic disorders -14115245 26 n 01 cholelithiasis 0 001 @ 14115914 n 0000 | the presence of gallstones in the gallbladder -14115351 26 n 01 enterolithiasis 0 001 @ 14115914 n 0000 | the presence of calculi in the intestines -14115454 26 n 01 nephrocalcinosis 0 001 @ 14115648 n 0000 | renal lithiasis in which calcium deposits form in the renal parenchyma and result in reduced kidney function and blood in the urine -14115648 26 n 02 nephrolithiasis 0 renal_lithiasis 0 002 @ 14115914 n 0000 ~ 14115454 n 0000 | the presence of kidney stones (calculi) in the kidney -14115799 26 n 01 lipomatosis 0 001 @ 14204950 n 0000 | pathology in which fat accumulates in lipomas in the body -14115914 26 n 01 lithiasis 0 004 @ 14204950 n 0000 ~ 14115245 n 0000 ~ 14115351 n 0000 ~ 14115648 n 0000 | the formation of stones (calculi) in an internal organ -14116078 26 n 01 glomerulonephritis 0 001 @ 14113798 n 0000 | nephritis marked by inflammation of the glomeruli of the kidney; characterized by decreased production of urine and by the presence of blood and protein in the urine and by edema -14116321 26 n 01 liver_disease 0 005 @ 14070360 n 0000 ~ 14116482 n 0000 ~ 14116672 n 0000 ~ 14130354 n 0000 ~ 14131651 n 0000 | a disease affecting the liver -14116482 26 n 02 cirrhosis 0 cirrhosis_of_the_liver 0 001 @ 14116321 n 0000 | a chronic disease interfering with the normal functioning of the liver; the major cause is chronic alcoholism -14116672 26 n 01 fatty_liver 0 001 @ 14116321 n 0000 | yellow discoloration as a result of the accumulation of certain fats (triglycerides) in the liver; can be caused by alcoholic cirrhosis or pregnancy or exposure to certain toxins -14116908 26 n 04 Addison's_disease 0 Addison's_syndrome 0 hypoadrenalism 0 hypoadrenocorticism 0 001 @ 14059928 n 0000 | a glandular disorder caused by failure of function of the cortex of the adrenal gland and marked by anemia and prostration with brownish skin -14117173 26 n 01 adenopathy 0 001 @ 14059928 n 0000 | a glandular disease or enlargement of glandular tissue (especially of the lymph glands) -14117317 26 n 02 aldosteronism 0 hyperaldosteronism 0 001 @ 14059928 n 0000 | a condition caused by overproduction of aldosterone -14117449 26 n 02 Cushing's_disease 0 hyperadrenalism 0 001 @ 14059928 n 0000 | a glandular disorder caused by excessive ACTH resulting in greater than normal functioning of the adrenal gland; characterized by obesity -14117668 26 n 02 Cushing's_syndrome 0 hyperadrenocorticism 0 001 @ 14059928 n 0000 | a glandular disorder caused by excessive cortisol -14117805 26 n 01 diabetes 0 007 @ 14075199 n 0000 + 02543934 a 0101 + 03060971 a 0101 %p 14040966 n 0000 %p 14114365 n 0000 ~ 14118138 n 0000 ~ 14119770 n 0000 | a polygenic disease characterized by abnormally high glucose levels in the blood; any of several metabolic disorders marked by excessive urination and persistent thirst -14118138 26 n 02 diabetes_mellitus 0 DM 0 004 @ 14117805 n 0000 ~ 14118423 n 0000 ~ 14118936 n 0000 ~ 14120096 n 0000 | diabetes caused by a relative or absolute deficiency of insulin and characterized by polyuria; "when doctors say `diabetes' they usually mean `diabetes mellitus'" -14118423 26 n 09 type_I_diabetes 0 insulin-dependent_diabetes_mellitus 0 IDDM 0 juvenile-onset_diabetes 0 juvenile_diabetes 0 growth-onset_diabetes 0 ketosis-prone_diabetes 0 ketoacidosis-prone_diabetes 0 autoimmune_diabetes 0 003 @ 14118138 n 0000 @ 14187378 n 0000 %p 14019840 n 0000 | severe diabetes mellitus with an early onset; characterized by polyuria and excessive thirst and increased appetite and weight loss and episodic ketoacidosis; diet and insulin injections are required to control the disease -14118936 26 n 0d type_II_diabetes 0 non-insulin-dependent_diabetes_mellitus 0 NIDDM 0 non-insulin-dependent_diabetes 0 ketosis-resistant_diabetes_mellitus 0 ketosis-resistant_diabetes 0 ketoacidosis-resistant_diabetes_mellitus 0 ketoacidosis-resistant_diabetes 0 adult-onset_diabetes_mellitus 0 adult-onset_diabetes 0 maturity-onset_diabetes_mellitus 0 maturity-onset_diabetes 0 mature-onset_diabetes 0 001 @ 14118138 n 0000 | mild form of diabetes mellitus that develops gradually in adults; can be precipitated by obesity or severe stress or menopause or other factors; can usually be controlled by diet and hypoglycemic agents without injections of insulin -14119598 26 n 01 nephrogenic_diabetes_insipidus 0 001 @ 14119770 n 0000 | diabetes insipidus caused by a failure of the kidney to respond to normal levels of vasopressin -14119770 26 n 01 diabetes_insipidus 0 002 @ 14117805 n 0000 ~ 14119598 n 0000 | a rare form of diabetes resulting from a deficiency of vasopressin (the pituitary hormone that regulates the kidneys); characterized by the chronic excretion of large amounts of pale dilute urine which results in dehydration and extreme thirst -14120096 26 n 02 latent_diabetes 0 chemical_diabetes 0 001 @ 14118138 n 0000 | a mild form of diabetes mellitus in which there are no overt symptoms but there are abnormal responses to some diagnostic procedures -14120310 26 n 05 angioedema 0 atrophedema 0 giant_hives 0 periodic_edema 0 Quincke's_edema 0 001 @ 14316714 n 0000 | recurrent large circumscribed areas of subcutaneous edema; onset is sudden and it disappears within 24 hours; seen mainly in young women, often as an allergic reaction to food or drugs -14120614 26 n 01 lymphedema 0 001 @ 14316714 n 0000 | swelling (usually in the legs) caused by lymph accumulating in the tissues in the affected areas -14120767 26 n 02 hyperthyroidism 0 thyrotoxicosis 0 004 @ 14059928 n 0000 ! 14121276 n 0101 ~ 14121058 n 0000 %p 14313017 n 0000 | an overactive thyroid gland; pathologically excessive production of thyroid hormones or the condition resulting from excessive production of thyroid hormones -14121058 26 n 02 Graves'_disease 0 exophthalmic_goiter 0 003 @ 14120767 n 0000 @ 14313017 n 0000 @ 14187378 n 0000 | exophthalmos occurring in association with goiter; hyperthyroidism with protrusion of the eyeballs -14121276 26 n 01 hypothyroidism 0 004 @ 14059928 n 0000 ! 14120767 n 0101 ~ 14121500 n 0000 ~ 14121667 n 0000 | an underactive thyroid gland; a glandular disorder resulting from insufficient production of thyroid hormones -14121500 26 n 02 myxedema 0 myxoedema 0 001 @ 14121276 n 0000 | hypothyroidism marked by dry skin and swellings around lips and nose as well as mental deterioration -14121667 26 n 01 cretinism 0 002 @ 14121276 n 0000 + 01841179 a 0101 | severe hypothyroidism resulting in physical and mental stunting -14121804 26 n 04 achondroplasia 0 achondroplasty 0 osteosclerosis_congenita 0 chondrodystrophy 0 002 @ 14151139 n 0000 + 02899271 a 0101 | an inherited skeletal disorder beginning before birth; cartilage is converted to bone resulting in dwarfism -14122053 26 n 01 communicable_disease 0 004 @ 14070360 n 0000 ~ 14122235 n 0000 ~ 14127211 n 0000 ~ 14145501 n 0000 | a disease that can be communicated from one person to another -14122235 26 n 02 contagious_disease 0 contagion 0 009 @ 14122053 n 0000 + 01303042 a 0203 ~ 14122497 n 0000 ~ 14123044 n 0000 ~ 14123510 n 0000 ~ 14124070 n 0000 ~ 14124232 n 0000 ~ 14124931 n 0000 ~ 14133159 n 0000 | any disease easily transmitted by contact -14122497 26 n 03 influenza 0 flu 0 grippe 0 004 @ 14122235 n 0000 @ 14145095 n 0000 ~ 14122670 n 0000 ~ 14122813 n 0000 | an acute febrile highly contagious viral disease -14122670 26 n 02 Asian_influenza 0 Asiatic_flu 0 001 @ 14122497 n 0000 | influenza caused by the Asian virus that was first isolated in 1957 -14122813 26 n 02 swine_influenza 0 swine_flu 0 001 @ 14122497 n 0000 | an acute and highly contagious respiratory disease of swine caused by the orthomyxovirus thought to be the same virus that caused the 1918 influenza pandemic -14123044 26 n 03 measles 0 rubeola 0 morbilli 0 002 @ 14122235 n 0000 ~ 14123259 n 0000 | an acute and highly contagious viral disease marked by distinct red spots followed by a rash; occurs primarily in children -14123259 26 n 04 German_measles 0 rubella 0 three-day_measles 0 epidemic_roseola 0 001 @ 14123044 n 0000 | a contagious viral disease that is a milder form of measles lasting three or four days; can be damaging to a fetus during the first trimester -14123510 26 n 01 diphtheria 0 001 @ 14122235 n 0000 | acute contagious infection caused by the bacterium Corynebacterium diphtheriae; marked by the formation of a false membrane in the throat and other air passages causing difficulty in breathing -14123759 26 n 04 exanthema_subitum 0 roseola_infantum 0 roseola_infantilis 0 pseudorubella 0 001 @ 14070360 n 0000 | a viral disease of infants and young children; characterized by abrupt high fever and mild sore throat; a few days later there is a faint pinkish rash that lasts for a few hours to a few days -14124070 26 n 02 scarlet_fever 0 scarlatina 0 001 @ 14122235 n 0000 | an acute communicable disease (usually in children) characterized by fever and a red rash -14124232 26 n 01 pox 0 004 @ 14122235 n 0000 ~ 14124423 n 0000 ~ 14132975 n 0000 ~ 14262882 n 0000 | a contagious disease characterized by purulent skin eruptions that may leave pock marks -14124423 26 n 03 smallpox 0 variola 0 variola_major 0 003 @ 14124232 n 0000 ~ 14124688 n 0000 %p 14334511 n 0000 | a highly contagious viral disease characterized by fever and weakness and skin eruption with pustules that form scabs that slough off leaving scars -14124688 26 n 09 alastrim 0 variola_minor 0 pseudosmallpox 0 pseudovariola 0 milk_pox 0 white_pox 0 West_Indian_smallpox 0 Cuban_itch 0 Kaffir_pox 0 001 @ 14124423 n 0000 | a mild form of smallpox caused by a less virulent form of the virus -14124931 26 n 03 Vincent's_angina 0 Vincent's_infection 0 trench_mouth 0 002 @ 14122235 n 0000 @ 14173625 n 0000 | an acute communicable infection of the respiratory tract and mouth marked by ulceration of the mucous membrane -14125159 26 n 01 blastomycosis 0 003 @ 14176895 n 0000 + 03050430 a 0101 ~ 14125333 n 0000 | any of several infections of the skin or mucous membrane caused by Blastomyces -14125333 26 n 01 chromoblastomycosis 0 001 @ 14125159 n 0000 | a fungal infection characterized by itchy warty nodules on the skin -14125466 26 n 03 tinea 0 ringworm 0 roundworm 0 009 @ 14176895 n 0000 ~ 14125774 n 0000 ~ 14125881 n 0000 ~ 14126078 n 0000 ~ 14126181 n 0000 ~ 14126293 n 0000 ~ 14126412 n 0000 ~ 14126519 n 0000 ~ 14127100 n 0000 | infections of the skin or nails caused by fungi and appearing as itching circular patches -14125774 26 n 01 dhobi_itch 0 001 @ 14125466 n 0000 | fungal infection attacking moist parts of the body -14125881 26 n 01 kerion 0 001 @ 14125466 n 0000 | ringworm infection of the hair follicles of the scalp and beard that usually results in a swelling that is covered with pustules and oozes fluid -14126078 26 n 02 tinea_pedis 0 athlete's_foot 0 001 @ 14125466 n 0000 | fungal infection of the feet -14126181 26 n 02 tinea_barbae 0 barber's_itch 0 001 @ 14125466 n 0000 | fungal infection of the face and neck -14126293 26 n 01 tinea_capitis 0 001 @ 14125466 n 0000 | fungal infection of the scalp characterized by bald patches -14126412 26 n 01 tinea_corporis 0 001 @ 14125466 n 0000 | fungal infection of nonhairy parts of the skin -14126519 26 n 03 tinea_cruris 0 jock_itch 0 eczema_marginatum 0 001 @ 14125466 n 0000 | fungal infection of the groin (most common in men) -14126660 26 n 03 blindness 0 sightlessness 0 cecity 0 008 @ 14552802 n 0000 + 02160135 a 0202 + 02158826 a 0101 ~ 14126908 n 0000 ~ 14553873 n 0000 ~ 14555790 n 0000 ~ 14557206 n 0000 ~ 14557315 n 0000 | the state of being blind or lacking sight -14126908 26 n 01 legal_blindness 0 001 @ 14126660 n 0000 | vision that is 20/200 or worse in both eyes (20/200 vision is the ability to see at 20 feet what a normal eye can see at 200 feet) -14127100 26 n 01 tinea_unguium 0 001 @ 14125466 n 0000 | fungal infection of the nails (especially toenails) -14127211 26 n 01 infectious_disease 0 026 @ 14122053 n 0000 ~ 14127782 n 0000 ~ 14128029 n 0000 ~ 14129579 n 0000 ~ 14129784 n 0000 ~ 14129999 n 0000 ~ 14130166 n 0000 ~ 14130354 n 0000 ~ 14131950 n 0000 ~ 14135277 n 0000 ~ 14136187 n 0000 ~ 14137066 n 0000 ~ 14137829 n 0000 ~ 14138178 n 0000 ~ 14138538 n 0000 ~ 14140176 n 0000 ~ 14140533 n 0000 ~ 14140781 n 0000 ~ 14142459 n 0000 ~ 14142768 n 0000 ~ 14143239 n 0000 ~ 14143415 n 0000 ~ 14144416 n 0000 ~ 14144626 n 0000 ~ 14144761 n 0000 ~ 14144960 n 0000 | a disease transmitted only by a specific kind of contact -14127782 26 n 02 AIDS 0 acquired_immune_deficiency_syndrome 0 002 @ 13974317 n 0000 @ 14127211 n 0000 | a serious (often fatal) disease of the immune system transmitted through blood products especially by sexual contact or contaminated needles -14128029 26 n 06 brucellosis 1 undulant_fever 0 Malta_fever 0 Gibraltar_fever 0 Rock_fever 0 Mediterranean_fever 0 001 @ 14127211 n 0000 | infectious bacterial disease of human beings transmitted by contact with infected animals or infected meat or milk products; characterized by fever and headache -14128331 26 n 01 agammaglobulinemia 0 001 @ 13974317 n 0000 | a rare immunological disorder characterized by the virtual absence of gamma globulin in the blood and consequent susceptibility to infection -14128536 26 n 01 anergy 0 001 @ 13973990 n 0000 | reduction or lack of an immune response to a specific antigen -14128650 26 n 01 hypogammaglobulinemia 0 001 @ 13974317 n 0000 | an abnormally low concentration of gamma globulin in the blood and increased risk of infection -14128812 26 n 03 severe_combined_immunodeficiency 0 severe_combined_immunodeficiency_disease 0 SCID 0 004 @ 13974317 n 0000 @ 14074877 n 0000 ~ 14129223 n 0000 ~ 14129351 n 0000 | a congenital disease affecting T cells that can result from a mutation in any one of several different genes; children with it are susceptible to infectious disease; if untreated it is lethal within the first year or two of life -14129223 26 n 01 ADA-SCID 0 001 @ 14128812 n 0000 | SCID resulting from mutation of a gene that codes for adenosine deaminase -14129351 26 n 02 X-linked_SCID 0 X-SCID 0 001 @ 14128812 n 0000 | SCID in male children resulting from mutation of a gene that codes for a protein on the surface of T cells that allows them to develop a growth factor receptor -14129579 26 n 04 cholera 0 Asiatic_cholera 0 Indian_cholera 0 epidemic_cholera 0 002 @ 14127211 n 0000 + 02695522 a 0101 | an acute intestinal infection caused by ingestion of contaminated water or food -14129784 26 n 04 dengue 0 dengue_fever 0 dandy_fever 0 breakbone_fever 0 001 @ 14127211 n 0000 | an infectious disease of the tropics transmitted by mosquitoes and characterized by rash and aching head and joints -14129999 26 n 01 dysentery 0 004 @ 14127211 n 0000 ~ 14175313 n 0000 ~ 14184608 n 0000 %p 14371913 n 0000 | an infection of the intestines marked by severe diarrhea -14130166 26 n 01 epidemic_disease 0 004 @ 14127211 n 0000 ~ 14076479 n 0000 ~ 14138691 n 0000 ~ 14330340 n 0000 | any infectious disease that develops and spreads rapidly to many people -14130354 26 n 01 hepatitis 0 004 @ 14127211 n 0000 @ 14116321 n 0000 ~ 14130518 n 0000 ~ 14131247 n 0000 | inflammation of the liver caused by a virus or a toxin -14130518 26 n 01 viral_hepatitis 0 004 @ 14130354 n 0000 ~ 14130661 n 0000 ~ 14130942 n 0000 ~ 14131353 n 0000 | hepatitis caused by a virus -14130661 26 n 02 hepatitis_A 0 infectious_hepatitis 0 001 @ 14130518 n 0000 | an acute but benign form of viral hepatitis caused by an RNA virus that does not persist in the blood serum and is usually transmitted by ingesting food or drink that is contaminated with fecal matter -14130942 26 n 02 hepatitis_B 0 serum_hepatitis 0 001 @ 14130518 n 0000 | an acute (sometimes fatal) form of viral hepatitis caused by a DNA virus that tends to persist in the blood serum and is transmitted by sexual contact or by transfusion or by ingestion of contaminated blood or other bodily fluids -14131247 26 n 02 hepatitis_delta 0 delta_hepatitis 0 001 @ 14130354 n 0000 | a severe form of hepatitis -14131353 26 n 01 hepatitis_C 0 001 @ 14130518 n 0000 | a viral hepatitis clinically indistinguishable from hepatitis B but caused by a single-stranded RNA virus; usually transmitted by parenteral means (as injection of an illicit drug or blood transfusion or exposure to blood or blood products) -14131651 26 n 02 liver_cancer 0 cancer_of_the_liver 0 002 @ 14116321 n 0000 @ 14242337 n 0000 | malignant neoplastic disease of the liver usually occurring as a metastasis from another cancer; symptoms include loss of appetite and weakness and bloating and jaundice and upper abdominal discomfort -14131950 26 n 01 herpes 0 003 @ 14127211 n 0000 ~ 14132102 n 0000 ~ 14132829 n 0000 | viral diseases causing eruptions of the skin or mucous membrane -14132102 26 n 01 herpes_simplex 0 003 @ 14131950 n 0000 ~ 14132375 n 0000 ~ 14132524 n 0000 | an infection caused by the herpes simplex virus; affects the skin and nervous system; produces small temporary (but sometimes painful) blisters on the skin and mucous membranes -14132375 26 n 04 oral_herpes 0 herpes_labialis 0 cold_sore 0 fever_blister 0 001 @ 14132102 n 0000 | caused by herpes simplex virus type 1 (HSV-1) -14132524 26 n 02 genital_herpes 0 herpes_genitalis 0 002 @ 14132102 n 0000 @ 14133159 n 0000 | an infection caused by herpes simplex virus type 2 (HSV-2) that is usually transmitted by sexual contact; marked by recurrent attacks of painful eruptions on the skin and mucous membranes of the genital area -14132829 26 n 03 herpes_zoster 0 zoster 0 shingles 0 001 @ 14131950 n 0000 | eruptions along a nerve path often accompanied by severe neuralgia -14132975 26 n 02 chickenpox 0 varicella 0 001 @ 14124232 n 0000 | an acute contagious disease caused by herpes varicella zoster virus; causes a rash of vesicles on the face and body -14133159 26 n 0a venereal_disease 0 VD 0 venereal_infection 0 social_disease 0 Cupid's_itch 0 Cupid's_disease 0 Venus's_curse 0 dose 0 sexually_transmitted_disease 0 STD 0 007 @ 14122235 n 0000 ~ 14132524 n 0000 ~ 14133543 n 0000 ~ 14133750 n 0000 ~ 14133985 n 0000 ~ 14137561 n 0000 ~ 14175579 n 0000 | a communicable infection transmitted by sexual intercourse or genital contact -14133543 26 n 03 gonorrhea 0 gonorrhoea 0 clap 0 001 @ 14133159 n 0000 | a common venereal disease caused by the bacterium Neisseria gonorrhoeae; symptoms are painful urination and pain around the urethra -14133750 26 n 02 granuloma_inguinale 0 granuloma_venereum 0 001 @ 14133159 n 0000 | a venereal disease caused by a bacterium of the genus Calymmatobacterium; characterized by a pimply rash of the skin in the genital and groin region -14133985 26 n 05 syphilis 0 syph 0 pox 1 lues_venerea 0 lues 0 007 @ 14133159 n 0000 + 03121855 a 0101 ~ 14134351 n 0000 ~ 14134482 n 0000 ~ 14134623 n 0000 ~ 14135065 n 0000 %p 14184067 n 0000 | a common venereal disease caused by the treponema pallidum spirochete; symptoms change through progressive stages; can be congenital (transmitted through the placenta) -14134351 26 n 01 primary_syphilis 0 001 @ 14133985 n 0000 | the first stage; characterized by a chancre at the site of infection -14134482 26 n 01 secondary_syphilis 0 001 @ 14133985 n 0000 | the second stage; characterized by eruptions of the skin and mucous membrane -14134623 26 n 01 tertiary_syphilis 0 001 @ 14133985 n 0000 | the third stage; characterized by involvement of internal organs especially the brain and spinal cord as well as the heart and liver -14134819 26 n 02 tabes_dorsalis 0 locomotor_ataxia 0 001 @ 14135065 n 0000 | syphilis of the spinal cord characterized by degeneration of sensory neurons and stabbing pains in the trunk and legs and unsteady gait and incontinence and impotence -14135065 26 n 01 neurosyphilis 0 002 @ 14133985 n 0000 ~ 14134819 n 0000 | syphilis of the central nervous system -14135181 26 n 01 tabes 0 001 @ 14365741 n 0000 | wasting of the body during a chronic disease -14135277 26 n 05 infectious_mononucleosis 0 mononucleosis 0 mono 0 glandular_fever 0 kissing_disease 0 001 @ 14127211 n 0000 | an acute disease characterized by fever and swollen lymph nodes and an abnormal increase of mononuclear leucocytes or monocytes in the bloodstream; not highly contagious; some believe it can be transmitted by kissing -14135623 26 n 03 Ebola_hemorrhagic_fever 0 Ebola_fever 0 Ebola 0 001 @ 14177423 n 0000 | a severe and often fatal disease in humans and nonhuman primates (monkeys and chimpanzees) caused by the Ebola virus; characterized by high fever and severe internal bleeding; can be spread from person to person; is largely limited to Africa -14135956 26 n 01 Lassa_fever 0 001 @ 14177423 n 0000 | an acute contagious viral disease of central western Africa; characterized by fever and inflammation and muscular pains and difficulty swallowing; can be used as a bioweapon -14136187 26 n 02 leprosy 0 Hansen's_disease 0 005 @ 14127211 n 0000 + 02829711 a 0101 ~ 14136544 n 0000 ~ 14136674 n 0000 %p 14227015 n 0000 | chronic granulomatous communicable disease occurring in tropical and subtropical regions; characterized by inflamed nodules beneath the skin and wasting of body parts; caused by the bacillus Mycobacterium leprae -14136544 26 n 01 tuberculoid_leprosy 0 001 @ 14136187 n 0000 | leprosy characterized by tumors in the skin and cutaneous nerves -14136674 26 n 01 lepromatous_leprosy 0 001 @ 14136187 n 0000 | a very serious form of leprosy characterized by lesions that spread over much of the body and affecting many systems of the body -14136868 26 n 02 necrotizing_enterocolitis 0 NEC 0 001 @ 14171682 n 0000 | an acute inflammatory disease occurring in the intestines of premature infants; necrosis of intestinal tissue may follow -14137066 26 n 02 listeriosis 0 listeria_meningitis 0 001 @ 14127211 n 0000 | an infectious disease of animals and humans (especially newborn or immunosuppressed persons) caused by the bacterium Listeria monocytogenes; in sheep and cattle the infection frequently involves the central nervous system and causes various neurological symptoms -14137408 26 n 01 lymphocytic_choriomeningitis 0 001 @ 14095128 n 0000 | a form of viral meningitis caused by a virus carried by the common house mouse -14137561 26 n 03 lymphogranuloma_venereum 0 LGV 0 lymphopathia_venereum 0 001 @ 14133159 n 0000 | infectious disease caused by a species of chlamydia bacterium; transmitted by sexual contact; characterized by genital lesions and swelling of lymph nodes in the groin -14137829 26 n 01 meningitis 0 005 @ 14127211 n 0000 ~ 14095128 n 0000 ~ 14138364 n 0000 ~ 14343411 n 0000 ~ 14349446 n 0000 | infectious disease characterized by inflammation of the meninges (the tissues that surround the brain or spinal cord) usually caused by a bacterial infection; symptoms include headache and stiff neck and fever and nausea -14138178 26 n 02 mumps 0 epidemic_parotitis 0 002 @ 14127211 n 0000 %p 14352570 n 0000 | an acute contagious viral disease characterized by fever and by swelling of the parotid glands -14138364 26 n 04 cerebrospinal_meningitis 0 epidemic_meningitis 0 brain_fever 0 cerebrospinal_fever 0 001 @ 14137829 n 0000 | meningitis caused by bacteria and often fatal -14138538 26 n 02 paratyphoid 0 paratyphoid_fever 0 001 @ 14127211 n 0000 | any of a variety of infectious intestinal diseases resembling typhoid fever -14138691 26 n 04 plague 0 pestilence 1 pest 1 pestis 1 005 @ 14130166 n 0000 + 02771320 v 0102 ~ 14139015 n 0000 ~ 14139661 n 0000 ~ 14139959 n 0000 | a serious (sometimes fatal) infection of rodents caused by Yersinia pestis and accidentally transmitted to humans by the bite of a flea that has bitten an infected animal -14139015 26 n 03 bubonic_plague 0 pestis_bubonica 0 glandular_plague 0 003 @ 14138691 n 0000 ~ 14139333 n 0000 ~ 14139462 n 0000 | the most common form of the plague in humans; characterized by chills, prostration, delirium and the formation of buboes in the armpits and groin; does not spread from person to person -14139333 26 n 03 ambulant_plague 0 ambulatory_plague 0 pestis_ambulans 0 001 @ 14139015 n 0000 | a mild form of bubonic plague -14139462 26 n 02 Black_Death 0 Black_Plague 0 001 @ 14139015 n 0000 | the epidemic form of bubonic plague experienced during the Middle Ages when it killed nearly half the people of western Europe -14139661 26 n 03 pneumonic_plague 0 pulmonic_plague 0 plague_pneumonia 0 001 @ 14138691 n 0000 | a rapidly progressive and frequently fatal form of the plague that can spread through the air from person to person; characterized by lung involvement with chill, bloody expectoration and high fever -14139959 26 n 01 septicemic_plague 0 001 @ 14138691 n 0000 | an especially dangerous and generally fatal form of the plague in which infecting organisms invade the bloodstream; does not spread from person to person -14140176 26 n 04 poliomyelitis 0 polio 0 infantile_paralysis 0 acute_anterior_poliomyelitis 0 001 @ 14127211 n 0000 | an acute viral disease marked by inflammation of nerve cells of the brain stem and spinal cord -14140391 26 n 01 Pott's_disease 0 001 @ 14143415 n 0000 | TB of the spine with destruction of vertebrae resulting in curvature of the spine -14140533 26 n 01 ratbite_fever 0 003 @ 14127211 n 0000 ~ 14192672 n 0000 ~ 14567690 n 0000 | either of two infectious diseases transmitted to humans by the bite of a rat or mouse; characterized by fever and headache and nausea and skin eruptions -14140781 26 n 02 rickettsial_disease 0 rickettsiosis 0 007 @ 14127211 n 0000 ~ 14141062 n 0000 ~ 14141490 n 0000 ~ 14141821 n 0000 ~ 14141912 n 0000 ~ 14142207 n 0000 ~ 14142326 n 0000 | infectious disease caused by ticks or mites or body lice infected with rickettsial bacteria -14141062 26 n 02 typhus 0 typhus_fever 0 002 @ 14140781 n 0000 ~ 14141238 n 0000 | rickettsial disease transmitted by body lice and characterized by skin rash and high fever -14141238 26 n 04 murine_typhus 0 rat_typhus 0 urban_typhus 0 endemic_typhus 0 001 @ 14141062 n 0000 | acute infection caused by rickettsia and transmitted by the bite of an infected flea; characterized by fever and chills and muscle aches and a rash -14141490 26 n 01 spotted_fever 0 002 @ 14140781 n 0000 ~ 14141656 n 0000 | any of several severe febrile diseases characterized by skin rashes or spots on the skin -14141656 26 n 03 Rocky_Mountain_spotted_fever 0 mountain_fever 0 tick_fever 0 001 @ 14141490 n 0000 | caused by rickettsial bacteria and transmitted by wood ticks -14141821 26 n 01 Q_fever 0 001 @ 14140781 n 0000 | an acute disease resembling influenza -14141912 26 n 01 rickettsialpox 0 001 @ 14140781 n 0000 | mild infectious rickettsial disease caused by a bacterium of the genus Rickettsia transmitted to humans by the bite a mite that lives on rodents; characterized by chills and fever and headache and skin lesions that resemble chickenpox -14142207 26 n 01 trench_fever 0 001 @ 14140781 n 0000 | marked by pain in muscles and joints and transmitted by lice -14142326 26 n 02 tsutsugamushi_disease 0 scrub_typhus 0 001 @ 14140781 n 0000 | transmitted by larval mites and widespread in Asia -14142459 26 n 02 relapsing_fever 0 recurrent_fever 0 001 @ 14127211 n 0000 | marked by recurring high fever and transmitted by the bite of infected lice or ticks; characterized by episodes of high fever and chills and headache and muscle pain and nausea that recur every week or ten days for several months -14142768 26 n 01 rheumatic_fever 0 002 @ 14127211 n 0000 %p 14258391 n 0000 | a severe disease chiefly of children and characterized by painful inflammation of the joints and frequently damage to the heart valves -14142983 26 n 01 rheumatic_heart_disease 0 001 @ 14103288 n 0000 | heart disease caused by recurrent episodes of rheumatic fever; characterized by changes in the myocardium or scarring of the heart valves that reduce the power of the heart to pump blood -14143239 26 n 02 sweating_sickness 0 miliary_fever 0 001 @ 14127211 n 0000 | epidemic in the 15th and 16th centuries and characterized by profuse sweating and high mortality -14143415 26 n 03 tuberculosis 0 TB 0 T.B. 0 009 @ 14127211 n 0000 + 02546854 a 0101 + 02818958 a 0101 + 02818600 a 0101 ~ 14140391 n 0000 ~ 14143818 n 0000 ~ 14144064 n 0000 ~ 14144247 n 0000 ~ 14220308 n 0000 | infection transmitted by inhalation or ingestion of tubercle bacilli and manifested in fever and small lesions (usually in the lungs but in various other parts of the body in acute stages) -14143818 26 n 01 miliary_tuberculosis 0 001 @ 14143415 n 0000 | acute tuberculosis characterized by the appearance of tiny tubercles on one or more organs of the body (presumably resulting from tubercle bacilli being spread in the bloodstream) -14144064 26 n 05 pulmonary_tuberculosis 0 consumption 0 phthisis 0 wasting_disease 0 white_plague 0 001 @ 14143415 n 0000 | involving the lungs with progressive wasting of the body -14144247 26 n 03 scrofula 0 struma 1 king's_evil 0 002 @ 14143415 n 0000 + 02546526 a 0101 | a form of tuberculosis characterized by swellings of the lymphatic glands -14144416 26 n 03 typhoid 0 typhoid_fever 0 enteric_fever 0 001 @ 14127211 n 0000 | serious infection marked by intestinal inflammation and ulceration; caused by Salmonella typhosa ingested with food or water -14144626 26 n 02 whooping_cough 0 pertussis 0 002 @ 14127211 n 0000 @ 14145095 n 0000 | a disease of the respiratory mucous membrane -14144761 26 n 03 yaws 0 frambesia 0 framboesia 0 001 @ 14127211 n 0000 | an infectious tropical disease resembling syphilis in its early stages; marked by red skin eruptions and ulcerating lesions -14144960 26 n 03 yellow_jack 0 yellow_fever 0 black_vomit 0 001 @ 14127211 n 0000 | caused by a flavivirus transmitted by a mosquito -14145095 26 n 03 respiratory_disease 0 respiratory_illness 0 respiratory_disorder 0 015 @ 14070360 n 0000 ~ 14055052 n 0000 ~ 14122497 n 0000 ~ 14144626 n 0000 ~ 14145501 n 0000 ~ 14145911 n 0000 ~ 14146273 n 0000 ~ 14147380 n 0000 ~ 14147627 n 0000 ~ 14147964 n 0000 ~ 14148510 n 0000 ~ 14149963 n 0000 ~ 14150740 n 0000 ~ 14179946 n 0000 %p 14359174 n 0000 | a disease affecting the respiratory system -14145501 26 n 02 cold 0 common_cold 0 004 @ 14145095 n 0000 @ 14122053 n 0000 ~ 14145759 n 0000 %p 14567134 n 0000 | a mild viral infection involving the nose and respiratory passages (but not the lungs); "will they never find a cure for the common cold?" -14145759 26 n 01 head_cold 0 001 @ 14145501 n 0000 | a common cold affecting the nasal passages and resulting in congestion and sneezing and headache -14145911 26 n 03 asthma 0 asthma_attack 0 bronchial_asthma 0 004 @ 14145095 n 0000 + 01174048 a 0101 %p 00226511 n 0000 ~ 14146128 n 0000 | respiratory disorder characterized by wheezing; usually of allergic origin -14146128 26 n 01 status_asthmaticus 0 001 @ 14145911 n 0000 | a prolonged and severe asthma attack that does not respond to standard treatment -14146273 26 n 01 bronchitis 0 005 @ 14145095 n 0000 + 02543324 a 0101 %p 00226511 n 0000 ~ 14146459 n 0000 ~ 14146571 n 0000 | inflammation of the membranes lining the bronchial tubes -14146459 26 n 01 bronchiolitis 0 001 @ 14146273 n 0000 | inflammation of the membranes lining the bronchioles -14146571 26 n 01 chronic_bronchitis 0 002 @ 14146273 n 0000 ~ 14146774 n 0000 | a form of bronchitis characterized by excess production of sputum leading to a chronic cough and obstruction of air flow -14146774 26 n 01 chronic_obstructive_pulmonary_disease 0 002 @ 14147380 n 0000 @ 14146571 n 0000 | a nonreversible lung disease that is a combination of emphysema and chronic bronchitis; usually patients have been heavy cigarette smokers -14147014 26 n 04 coccidioidomycosis 0 coccidiomycosis 0 valley_fever 0 desert_rheumatism 0 001 @ 14176895 n 0000 | an infection of the lungs and skin characterized by excessive sputum and nodules -14147212 26 n 01 cryptococcosis 0 001 @ 14176895 n 0000 | a fungal infection characterized by nodular lesions--first in the lungs and spreading to the nervous system -14147380 26 n 02 emphysema 0 pulmonary_emphysema 0 003 @ 14145095 n 0000 + 03009131 a 0101 ~ 14146774 n 0000 | an abnormal condition of the lungs marked by decreased respiratory function; associated with smoking or chronic bronchitis or old age -14147627 26 n 01 pneumonia 0 008 @ 14145095 n 0000 + 02935285 a 0101 ~ 14148231 n 0000 ~ 14148646 n 0000 ~ 14149167 n 0000 ~ 14149290 n 0000 ~ 14173295 n 0000 ~ 14179839 n 0000 | respiratory disease characterized by inflammation of the lung parenchyma (excluding the bronchi) with congestion caused by viruses or bacteria or irritants -14147964 26 n 03 atypical_pneumonia 0 primary_atypical_pneumonia 0 mycoplasmal_pneumonia 0 002 @ 14145095 n 0000 ~ 14149773 n 0000 | an acute respiratory disease marked by high fever and coughing; caused by mycoplasma; primarily affecting children and young adults -14148231 26 n 02 bronchopneumonia 0 bronchial_pneumonia 0 002 @ 14147627 n 0000 ~ 14260550 n 0000 | pneumonia characterized by acute inflammation of the walls of the bronchioles -14148411 26 n 01 double_pneumonia 0 001 @ 14148646 n 0000 | lobar pneumonia involving both lungs -14148510 26 n 01 interstitial_pneumonia 0 001 @ 14145095 n 0000 | chronic lung disease affecting the interstitial tissue of the lungs -14148646 26 n 01 lobar_pneumonia 0 003 @ 14147627 n 0000 ~ 14148411 n 0000 ~ 14148834 n 0000 | pneumonia affecting one or more lobes of the lung; commonly due to streptococcal infection -14148834 26 n 01 Legionnaires'_disease 0 001 @ 14148646 n 0000 | acute (sometimes fatal) lobar pneumonia caused by bacteria of a kind first recognized after an outbreak of the disease at an American Legion convention in Philadelphia in 1976; characterized by fever and muscle and chest pain and headache and chills and a dry cough -14149167 26 n 01 pneumococcal_pneumonia 0 001 @ 14147627 n 0000 | pneumonia caused by bacteria of the genus pneumococcus -14149290 26 n 04 pneumocytosis 0 pneumocystis_pneumonia 0 pneumocystis_carinii_pneumonia 0 interstitial_plasma_cell_pneumonia 0 001 @ 14147627 n 0000 | pneumonia occurring in infants or in persons with impaired immune systems (as AIDS victims) -14149536 26 n 01 pneumothorax 0 001 @ 14501726 n 0000 | abnormal presence of air in the pleural cavity resulting in the collapse of the lung; may be spontaneous (due to injury to the chest) or induced (as a treatment for tuberculosis) -14149773 26 n 03 psittacosis 1 parrot_fever 0 ornithosis 0 001 @ 14147964 n 0000 | an atypical pneumonia caused by a rickettsia microorganism and transmitted to humans from infected birds -14149963 26 n 02 pneumoconiosis 0 pneumonoconiosis 0 006 @ 14145095 n 0000 ~ 14150210 n 0000 ~ 14150363 n 0000 ~ 14150470 n 0000 ~ 14150612 n 0000 %p 14207809 n 0000 | chronic respiratory disease caused by inhaling metallic or mineral particles -14150210 26 n 04 anthracosis 0 black_lung 0 black_lung_disease 0 coal_miner's_lung 0 001 @ 14149963 n 0000 | lung disease caused by inhaling coal dust -14150363 26 n 01 asbestosis 0 001 @ 14149963 n 0000 | lung disease caused by inhaling asbestos particles -14150470 26 n 01 siderosis 0 001 @ 14149963 n 0000 | fibrosis of the lung caused by iron dust; occurs among welders and other metal workers -14150612 26 n 01 silicosis 0 001 @ 14149963 n 0000 | a lung disease caused by inhaling particles of silica or quartz or slate -14150740 26 n 03 respiratory_distress_syndrome 0 respiratory_distress_syndrome_of_the_newborn 0 hyaline_membrane_disease 0 001 @ 14145095 n 0000 | an acute lung disease of the newborn (especially the premature newborn); lungs cannot expand because of a wetting agent is lacking; characterized by rapid shallow breathing and cyanosis and the formation of a glassy hyaline membrane over the alveoli -14151139 26 n 09 genetic_disease 0 genetic_disorder 0 genetic_abnormality 0 genetic_defect 0 congenital_disease 0 inherited_disease 0 inherited_disorder 0 hereditary_disease 0 hereditary_condition 0 027 @ 14070360 n 0000 ~ 14074877 n 0000 ~ 14075199 n 0000 ~ 14121804 n 0000 ~ 14151884 n 0000 ~ 14155834 n 0000 ~ 14156488 n 0000 ~ 14157527 n 0000 ~ 14158594 n 0000 ~ 14158997 n 0000 ~ 14159887 n 0000 ~ 14160179 n 0000 ~ 14160365 n 0000 ~ 14160665 n 0000 ~ 14160786 n 0000 ~ 14160903 n 0000 ~ 14162025 n 0000 ~ 14162275 n 0000 ~ 14164866 n 0000 ~ 14169128 n 0000 ~ 14171492 n 0000 ~ 14210119 n 0000 ~ 14367797 n 0000 ~ 14506403 n 0000 ~ 14506656 n 0000 ~ 14507651 n 0000 ~ 14569121 n 0000 | a disease or disorder that is inherited genetically -14151884 26 n 01 abetalipoproteinemia 0 003 @ 14158812 n 0000 @ 14193711 n 0000 @ 14151139 n 0000 | a rare inherited disorder of fat metabolism; characterized by severe deficiency of beta-lipoproteins and abnormal red blood cells (acanthocytes) and abnormally low cholesterol levels -14152169 26 n 01 ablepharia 0 001 @ 14465048 n 0000 | a congenital absence of eyelids (partial or complete) -14152279 26 n 01 albinism 0 006 @ 14291010 n 0000 @ 14465048 n 0000 + 02609984 a 0101 + 02609984 a 0102 + 02609984 a 0104 + 02609984 a 0103 | the congenital absence of pigmentation in the eyes and skin and hair -14152492 26 n 01 macrencephaly 0 003 @ 14501726 n 0000 + 02901491 a 0101 + 02901491 a 0102 | an abnormally large braincase -14152617 26 n 02 anencephaly 0 anencephalia 0 003 @ 14465048 n 0000 + 02622678 a 0101 + 02622678 a 0102 | a defect in brain development resulting in small or missing brain hemispheres -14152803 26 n 03 adactylia 0 adactyly 0 adactylism 0 001 @ 14466432 n 0000 | congenital absence of fingers and/or toes -14152924 26 n 01 ametria 0 001 @ 14465048 n 0000 | congenital absence of the uterus -14153010 26 n 04 color_blindness 0 colour_blindness 0 color_vision_deficiency 0 colour_vision_deficiency 0 006 @ 14552802 n 0000 @ 14465048 n 0000 + 02159453 a 0102 + 02159453 a 0101 ~ 14153616 n 0000 ~ 14155274 n 0000 | genetic inability to distinguish differences in hue -14153285 26 n 02 diplopia 0 double_vision 0 001 @ 14552802 n 0000 | visual impairment in which an object is seen as two objects; "diplopia often disappears when one eye is covered" -14153468 26 n 01 epispadias 0 001 @ 14465048 n 0000 | a congenital abnormality in males in which the urethra is on the upper surface of the penis -14153616 26 n 05 dichromacy 0 dichromatism 0 dichromatopsia 0 dichromia 0 dichromasy 0 004 @ 14153010 n 0000 + 03040740 a 0201 ~ 14153982 n 0000 ~ 14154669 n 0000 | a deficiency of color vision in which the person can match any given hue by mixing only two other wavelengths of light (as opposed to the three wavelengths needed by people with normal color vision) -14153982 26 n 03 red-green_dichromacy 0 red-green_color_blindness 0 red-green_colour_blindness 0 003 @ 14153616 n 0000 ~ 14154168 n 0000 ~ 14154421 n 0000 | confusion of red and green -14154168 26 n 03 deuteranopia 0 Daltonism 0 green-blindness 0 003 @ 14153982 n 0000 + 02159787 a 0302 + 02159787 a 0101 | dichromacy characterized by a lowered sensitivity to green light resulting in an inability to distinguish green and purplish-red -14154421 26 n 02 protanopia 0 red-blindness 0 003 @ 14153982 n 0000 + 02160291 a 0202 + 02160291 a 0101 | dichromacy characterized by lowered sensitivity to long wavelengths of light resulting in an inability to distinguish red and purplish blue -14154669 26 n 02 yellow-blue_dichromacy 0 yellow-blue_color_blindness 0 003 @ 14153616 n 0000 ~ 14154832 n 0000 ~ 14155031 n 0000 | confusion of yellow and blue -14154832 26 n 02 tetartanopia 0 yellow-blindness 0 001 @ 14154669 n 0000 | a form of dichromacy characterized by lowered sensitivity to yellow light; so rare that its existence has been questioned -14155031 26 n 02 tritanopia 0 blue-blindness 0 003 @ 14154669 n 0000 + 02160696 a 0202 + 02160696 a 0101 | rare form of dichromacy characterized by a lowered sensitivity to blue light resulting in an inability to distinguish blue and yellow -14155274 26 n 05 monochromacy 0 monochromatism 0 monochromatic_vision 0 monochromia 0 monochromasy 0 002 @ 14153010 n 0000 + 03040525 a 0201 | complete color blindness; colors can be differentiated only on the basis of brightness -14155506 26 n 05 cystic_fibrosis 0 CF 0 fibrocystic_disease_of_the_pancreas 0 pancreatic_fibrosis 0 mucoviscidosis 0 002 @ 14207809 n 0000 @ 14074877 n 0000 | the most common congenital disease; the child's lungs and intestines and pancreas become clogged with thick mucus; caused by defect in a single gene; no cure is known -14155834 26 n 01 inborn_error_of_metabolism 0 006 @ 14084502 n 0000 @ 14151139 n 0000 ~ 14156134 n 0000 ~ 14162943 n 0000 ~ 14164007 n 0000 ~ 14507375 n 0000 | any of a number of diseases in which an inherited defect (usually a missing or inadequate enzyme) results in an abnormality of metabolism -14156134 26 n 01 galactosemia 0 001 @ 14155834 n 0000 | a genetic disease (autosomal recessive) in which an enzyme needed to metabolize galactose is deficient or absent; typically develops shortly after birth -14156345 26 n 01 Gaucher's_disease 0 002 @ 14193711 n 0000 @ 14074877 n 0000 | a rare chronic disorder of lipid metabolism of genetic origin -14156488 26 n 02 Hirschsprung's_disease 0 congenital_megacolon 0 001 @ 14151139 n 0000 | congenital condition in which the colon does not have the normal network of nerves; there is little urge to defecate so the feces accumulate and cause megacolon -14156740 26 n 01 Horner's_syndrome 0 001 @ 14304060 n 0000 | a pattern of symptoms occurring as a result of damage to nerves in the cervical region of the spine (drooping eyelids and constricted pupils and absence of facial sweating) -14156976 26 n 02 Huntington's_chorea 0 Huntington's_disease 0 003 @ 14094881 n 0000 @ 14162025 n 0000 @ 14074877 n 0000 | hereditary disease; develops in adulthood and ends in dementia -14157163 26 n 05 Hurler's_syndrome 0 Hurler's_disease 0 gargoylism 0 dysostosis_multiplex 0 lipochondrodystrophy 0 002 @ 14157527 n 0000 @ 14074877 n 0000 | hereditary disease (autosomal recessive) consisting of an error is mucopolysaccharide metabolism; characterized by severe abnormalities in development of skeletal cartilage and bone and mental retardation -14157527 26 n 01 mucopolysaccharidosis 0 002 @ 14151139 n 0000 ~ 14157163 n 0000 | any of a group of genetic disorders involving a defect in the metabolism of mucopolysaccharides resulting in greater than normal levels of mucopolysaccharides in tissues -14157782 26 n 01 malignant_hyperthermia 0 001 @ 14162025 n 0000 | hereditary condition in which certain anesthetics (e.g., halothane) cause high body temperatures and muscle rigidity -14157967 26 n 01 Marfan's_syndrome 0 001 @ 14162025 n 0000 | an autosomal dominant disease characterized by elongated bones (especially of limbs and digits) and abnormalities of the eyes and circulatory system -14158179 26 n 02 neurofibromatosis 0 von_Recklinghausen's_disease 0 002 @ 14162025 n 0000 @ 14074877 n 0000 | autosomal dominant disease characterized by numerous neurofibromas and by spots on the skin and often by developmental abnormalities -14158424 26 n 01 osteogenesis_imperfecta 0 001 @ 14162025 n 0000 | autosomal dominant disorder of connective tissue characterized by brittle bones that fracture easily -14158594 26 n 01 hyperbetalipoproteinemia 0 002 @ 14270380 n 0000 @ 14151139 n 0000 | a genetic disorder characterized by high levels of beta-lipoproteins and cholesterol; can lead to atherosclerosis at an early age -14158812 26 n 01 hypobetalipoproteinemia 0 002 @ 14270614 n 0000 ~ 14151884 n 0000 | a hereditary disorder characterized by low levels of beta-lipoproteins and lipids and cholesterol -14158997 26 n 01 ichthyosis 0 002 @ 14151139 n 0000 ~ 14537563 n 0000 | any of several congenital diseases in which the skin is dry and scaly like a fish -14159153 26 n 02 clinocephaly 0 clinocephalism 0 001 @ 14465048 n 0000 | a congenital defect in which the top of the head is depressed (concave instead of convex) -14159318 26 n 01 clinodactyly 0 001 @ 14465048 n 0000 | a congenital defect in which one or more toes or fingers are abnormally positioned -14159459 26 n 01 macroglossia 0 001 @ 14465048 n 0000 | a congenital disorder characterized by an abnormally large tongue; often seen in cases of Down's syndrome -14159623 26 n 05 mongolism 0 mongolianism 0 Down's_syndrome 0 Down_syndrome 0 trisomy_21 0 002 @ 14504558 n 0000 @ 14465048 n 0000 | a congenital disorder caused by having an extra 21st chromosome; results in a flat face and short stature and mental retardation -14159887 26 n 02 maple_syrup_urine_disease 0 branched_chain_ketoaciduria 0 002 @ 14271480 n 0000 @ 14151139 n 0000 | an inherited disorder of metabolism in which the urine has a odor characteristic of maple syrup; if untreated it can lead to mental retardation and death in early childhood -14160179 26 n 01 McArdle's_disease 0 001 @ 14151139 n 0000 | an inherited disease in which abnormal amounts of glycogen accumulate in skeletal muscle; results in weakness and cramping -14160365 26 n 02 muscular_dystrophy 0 dystrophy 1 007 @ 14151139 n 0000 ~ 14161075 n 0000 ~ 14161515 n 0000 ~ 14161795 n 0000 ~ 14162563 n 0000 ~ 14163182 n 0000 ~ 14163676 n 0000 | any of several hereditary diseases of the muscular system characterized by weakness and wasting of skeletal muscles -14160665 26 n 01 oligodactyly 0 001 @ 14151139 n 0000 | congenital condition in which some fingers or toes are missing -14160786 26 n 01 oligodontia 0 001 @ 14151139 n 0000 | congenital condition in which some of the teeth are missing -14160903 26 n 01 otosclerosis 0 001 @ 14151139 n 0000 | hereditary disorder in which ossification of the labyrinth of the inner ear causes tinnitus and eventual deafness -14161075 26 n 01 Becker_muscular_dystrophy 0 001 @ 14160365 n 0000 | a form of muscular dystrophy that sets in in adolescence or adulthood and progresses slowly but will affect all voluntary muscles; characterized by generalized weakness and muscle wasting that affects limb and trunk muscles first; similar to Duchenne's muscular dystrophy but less severe; inheritance is X-linked recessive (carried by females but affecting only males) -14161515 26 n 01 distal_muscular_dystrophy 0 001 @ 14160365 n 0000 | a form of muscular dystrophy that sets in between 40 and 60 years of age and is characterized by weakness and wasting of the muscles of the hands and forearms and lower legs; inheritance is autosomal dominant -14161795 26 n 02 Duchenne's_muscular_dystrophy 0 pseudohypertrophic_dystrophy 0 001 @ 14160365 n 0000 | the most common form of muscular dystrophy; inheritance is X-linked recessive (carried by females but affecting only males) -14162025 26 n 02 autosomal_dominant_disease 0 autosomal_dominant_disorder 0 006 @ 14151139 n 0000 ~ 14156976 n 0000 ~ 14157782 n 0000 ~ 14157967 n 0000 ~ 14158179 n 0000 ~ 14158424 n 0000 | a disease caused by a dominant mutant gene on an autosome -14162275 26 n 02 autosomal_recessive_disease 0 autosomal_recessive_defect 0 007 @ 14151139 n 0000 ~ 14162563 n 0000 ~ 14164007 n 0000 ~ 14169364 n 0000 ~ 14169717 n 0000 ~ 14169897 n 0000 ~ 14170070 n 0000 | a disease caused by the presence of two recessive mutant genes on an autosome -14162563 26 n 01 limb-girdle_muscular_dystrophy 0 002 @ 14160365 n 0000 @ 14162275 n 0000 | an autosomal recessive form of muscular dystrophy that appears anywhere from late childhood to middle age; characterized by progressive muscular weakness beginning either in the shoulder or pelvic girdle; usually progresses slowly with cardiopulmonary complications in the later stages -14162943 26 n 01 lysinemia 0 001 @ 14155834 n 0000 | an inborn error of metabolism in which the lack of certain enzymes leads to an inability to metabolize the amino acid lysine; characterized by muscular weakness and mental retardation -14163182 26 n 04 myotonic_muscular_dystrophy 0 myotonic_dystrophy 0 myotonia_atrophica 0 Steinert's_disease 0 001 @ 14160365 n 0000 | a severe form of muscular dystrophy marked by generalized weakness and muscular wasting that affects the face and feet and hands and neck; difficult speech and difficulty with the hands that spreads to the arms and shoulders and legs and hips; the onset can be any time from birth to middle age and the progression is slow; inheritance is autosomal dominant -14163676 26 n 01 oculopharyngeal_muscular_dystrophy 0 001 @ 14160365 n 0000 | a form of muscular dystrophy that usually begins between early adulthood and middle age and first affects muscles of the eyelid and throat; progresses slowly with swallowing problems common as the disease progresses; inheritance is autosomal dominant -14164007 26 n 01 Niemann-Pick_disease 0 003 @ 14155834 n 0000 @ 14193711 n 0000 @ 14162275 n 0000 | a disorder of lipid metabolism that is inherited as an autosomal recessive trait -14164190 26 n 02 oxycephaly 0 acrocephaly 0 001 @ 14465048 n 0000 | a congenital abnormality of the skull; the top of the skull assumes a cone shape -14164341 26 n 02 aplastic_anemia 0 aplastic_anaemia 0 001 @ 14195315 n 0000 | anemia characterized by pancytopenia resulting from failure of the bone marrow; can be caused by neoplasm or by toxic exposure -14164548 26 n 01 erythroblastosis_fetalis 0 001 @ 14195315 n 0000 | severe anemia in newborn babies; the result of Rh incompatibility between maternal and fetal blood; typically occurs when the child of an Rh-negative mother inherits Rh-positive blood from the father; can be diagnosed before birth by amniocentesis -14164866 26 n 03 Fanconi's_anemia 0 Fanconi's_anaemia 0 congenital_pancytopenia 0 002 @ 14195315 n 0000 @ 14151139 n 0000 | a rare congenital anemia characterized by pancytopenia and hypoplasia of the bone marrow -14165081 26 n 01 favism 0 001 @ 14195315 n 0000 | anemia resulting from eating fava beans; victims have an inherited blood abnormality and enzyme deficiency -14165240 26 n 02 hemolytic_anemia 0 haemolytic_anaemia 0 001 @ 14195315 n 0000 | anemia resulting from destruction of erythrocytes -14165373 26 n 02 hyperchromic_anemia 0 hyperchromic_anaemia 0 001 @ 14195315 n 0000 | anemia characterized by an increase in the concentration of corpuscular hemoglobin -14165544 26 n 02 hypochromic_anemia 0 hypochromic_anaemia 0 002 @ 14195315 n 0000 ~ 14195715 n 0000 | anemia characterized by a decrease in the concentration of corpuscular hemoglobin -14165730 26 n 02 hypoplastic_anemia 0 hypoplastic_anaemia 0 001 @ 14195315 n 0000 | anemia resulting from inadequately functioning bone marrow; can develop into aplastic anemia -14165909 26 n 02 iron_deficiency_anemia 0 iron_deficiency_anaemia 0 002 @ 14195315 n 0000 ~ 14166775 n 0000 | a form of anemia due to lack of iron in the diet or to iron loss as a result of chronic bleeding -14166118 26 n 02 ischemia 0 ischaemia 0 005 @ 14195315 n 0000 + 02751733 a 0202 + 02751733 a 0101 ~ 14166358 n 0000 ~ 14166589 n 0000 | local anemia in a given body part sometimes resulting from vasoconstriction or thrombosis or embolism -14166358 26 n 02 ischemic_stroke 0 ischaemic_stroke 0 002 @ 14082303 n 0000 @ 14166118 n 0000 | the most common kind of stroke; caused by an interruption in the flow of blood to the brain (as from a clot blocking a blood vessel) -14166589 26 n 02 transient_ischemic_attack 0 TIA 0 001 @ 14166118 n 0000 | brief episode in which the brain gets insufficient blood supply; symptoms depend on the site of the blockage -14166775 26 n 02 chlorosis 0 greensickness 0 001 @ 14165909 n 0000 | iron deficiency anemia in young women; characterized by weakness and menstrual disturbances and a green color to the skin -14166968 26 n 02 macrocytic_anemia 0 macrocytic_anaemia 0 001 @ 14195315 n 0000 | anemia in which the average size of erythrocytes is larger than normal -14167123 26 n 02 microcytic_anemia 0 microcytic_anaemia 0 002 @ 14195315 n 0000 %p 14197099 n 0000 | anemia in which the average size of erythrocytes is smaller than normal -14167298 26 n 02 parasitemia 0 parasitaemia 0 001 @ 14189204 n 0000 | a condition in which parasites are present in the blood -14167426 26 n 04 pernicious_anemia 0 pernicious_anaemia 0 malignant_anemia 0 malignant_anaemia 0 003 @ 14195315 n 0000 ~ 14167773 n 0000 ~ 14168010 n 0000 | a chronic progressive anemia of older adults; thought to result from a lack of intrinsic factor (a substance secreted by the stomach that is responsible for the absorption of vitamin B12) -14167773 26 n 02 megaloblastic_anemia 0 megaloblastic_anaemia 0 001 @ 14167426 n 0000 | anemia characterized by many large immature and dysfunctional red blood cells (megaloblasts) in the bone marrow; associated with pernicious anemia -14168010 26 n 02 metaplastic_anemia 0 metaplastic_anaemia 0 001 @ 14167426 n 0000 | pernicious anemia in which the various formed elements in the blood are changed -14168176 26 n 02 refractory_anemia 0 refractory_anaemia 0 002 @ 14195315 n 0000 ~ 14168447 n 0000 | any of various anemic conditions that are not successfully treated by any means other than blood transfusions (and that are not associated with another primary disease) -14168447 26 n 04 sideroblastic_anemia 0 sideroblastic_anaemia 0 siderochrestic_anemia 0 siderochrestic_anaemia 0 001 @ 14168176 n 0000 | refractory anemia characterized by sideroblasts in the bone marrow -14168653 26 n 01 sideropenia 0 001 @ 14450172 n 0000 | a deficiency of iron; results from inadequate iron in the diet or from hemorrhage -14168792 26 n 07 sickle-cell_anemia 0 sickle-cell_anaemia 0 sickle-cell_disease 0 crescent-cell_anemia 0 crescent-cell_anaemia 0 drepanocytic_anemia 0 drepanocytic_anaemia 0 002 @ 14195315 n 0000 @ 14074877 n 0000 | a congenital form of anemia occurring mostly in blacks; characterized by abnormal blood cells having a crescent shape -14169128 26 n 02 Spielmeyer-Vogt_disease 0 juvenile_amaurotic_idiocy 0 001 @ 14151139 n 0000 | a congenital progressive disorder of lipid metabolism having an onset at age 5 and characterized by blindness and dementia and early death -14169364 26 n 04 Tay-Sachs_disease 0 Tay-Sachs 0 Sachs_disease 0 infantile_amaurotic_idiocy 0 003 @ 14193711 n 0000 @ 14162275 n 0000 @ 14074877 n 0000 | a hereditary disorder of lipid metabolism occurring most frequently in individuals of Jewish descent in eastern Europe; accumulation of lipids in nervous tissue results in death in early childhood -14169717 26 n 01 thrombasthenia 0 001 @ 14162275 n 0000 | a rare autosomal recessive disease in which the platelets do not produce clots in the normal way and hemorrhage results -14169897 26 n 01 tyrosinemia 0 001 @ 14162275 n 0000 | autosomal recessive defect in tyrosine metabolism resulting in liver and kidney disturbances and mental retardation -14170070 26 n 01 Werdnig-Hoffman_disease 0 001 @ 14162275 n 0000 | autosomal recessive disease in which the degeneration of spinal nerve cells and brain nerve cells leads to atrophy of skeletal muscles and flaccid paralysis; death usually occurs in early childhood -14170337 26 n 03 hemophilia 0 haemophilia 0 bleeder's_disease 0 006 @ 14189204 n 0000 @ 14565696 n 0000 + 02850826 a 0201 ~ 14170772 n 0000 ~ 14170987 n 0000 ~ 14171176 n 0000 | congenital tendency to uncontrolled bleeding; usually affects males and is transmitted from mother to son -14170623 26 n 01 afibrinogenemia 0 002 @ 14189204 n 0000 ~ 14171492 n 0000 | the absence of fibrinogen in the plasma leading to prolonged bleeding -14170772 26 n 04 hemophilia_A 0 haemophilia_A 0 classical_hemophilia 0 classical_haemophilia 0 001 @ 14170337 n 0000 | hemophilia caused by a congenital deficiency of factor VIII; occurs almost exclusively in men -14170987 26 n 03 hemophilia_B 0 haemophilia_B 0 Christmas_disease 0 001 @ 14170337 n 0000 | a clotting disorder similar to hemophilia A but caused by a congenital deficiency of factor IX -14171176 26 n 03 von_Willebrand's_disease 0 angiohemophilia 0 vascular_hemophilia 0 001 @ 14170337 n 0000 | a form of hemophilia discovered by Erik von Willebrand; a genetic disorder that is inherited as an autosomal recessive trait; characterized by a deficiency of the coagulation factor and by mucosal bleeding -14171492 26 n 01 congenital_afibrinogenemia 0 002 @ 14170623 n 0000 @ 14151139 n 0000 | a rare congenital disorder of blood coagulation in which no fibrinogen is found in the blood plasma -14171682 26 n 01 inflammatory_disease 0 013 @ 14070360 n 0000 ~ 14136868 n 0000 ~ 14172005 n 0000 ~ 14172558 n 0000 ~ 14172873 n 0000 ~ 14173013 n 0000 ~ 14173397 n 0000 ~ 14173484 n 0000 ~ 14173625 n 0000 ~ 14186541 n 0000 ~ 14222112 n 0000 %p 14336539 n 0000 ~ 14566129 n 0000 | a disease characterized by inflammation -14172005 26 n 03 gastroenteritis 0 stomach_flu 0 intestinal_flu 0 003 @ 14171682 n 0000 ~ 14172217 n 0000 ~ 14172383 n 0000 | inflammation of the stomach and intestines; can be caused by Salmonella enteritidis -14172217 26 n 01 cholera_infantum 0 001 @ 14172005 n 0000 | often fatal form of gastroenteritis occurring in children; not true cholera but having similar symptoms -14172383 26 n 02 cholera_morbus 0 collywobbles 0 001 @ 14172005 n 0000 | severe gastroenteritis of unknown etiology; characterized by severe colic and vomiting and diarrhea -14172558 26 n 02 pelvic_inflammatory_disease 0 PID 0 001 @ 14171682 n 0000 | inflammation of the female pelvic organs (especially the Fallopian tubes) caused by infection by any of several microorganisms (chiefly gonococci and chlamydia); symptoms are abdominal pain and fever and foul-smelling vaginal discharge -14172873 26 n 01 empyema 0 002 @ 14171682 n 0000 ~ 14173175 n 0000 | a collection of pus in a body cavity (especially in the lung cavity) -14173013 26 n 01 pleurisy 0 003 @ 14171682 n 0000 ~ 14173175 n 0000 ~ 14173295 n 0000 | inflammation of the pleura of the lungs (especially the parietal layer) -14173175 26 n 01 purulent_pleurisy 0 002 @ 14173013 n 0000 @ 14172873 n 0000 | a collection of pus in the lung cavity -14173295 26 n 01 pleuropneumonia 0 002 @ 14173013 n 0000 @ 14147627 n 0000 | pleurisy and pneumonia -14173397 26 n 01 pyelitis 0 001 @ 14171682 n 0000 | inflammation of the renal pelvis -14173484 26 n 03 sore_throat 0 pharyngitis 0 raw_throat 0 002 @ 14171682 n 0000 ~ 14184986 n 0000 | inflammation of the fauces and pharynx -14173625 26 n 01 angina 0 004 @ 14171682 n 0000 ~ 14124931 n 0000 ~ 14173823 n 0000 ~ 14174011 n 0000 | any disease of the throat or fauces marked by spasmodic attacks of intense suffocative pain -14173823 26 n 02 quinsy 0 peritonsillar_abscess 0 001 @ 14173625 n 0000 | a painful pus filled inflammation of the tonsils and surrounding tissues; usually a complication of tonsillitis -14174011 26 n 02 croup 0 spasmodic_laryngitis 0 002 @ 14173625 n 0000 + 02705692 a 0101 | a disease of infants and young children; harsh coughing and hoarseness and fever and difficult breathing -14174208 26 n 01 glossoptosis 0 001 @ 14559208 n 0000 | abnormal downward or back placement of the tongue -14174316 26 n 01 hypermotility 0 001 @ 14061805 n 0000 | excessive movement; especially excessive motility of the gastrointestinal tract -14174455 26 n 01 indisposition 0 002 @ 14061805 n 0000 + 00064889 v 0101 | a slight illness -14174549 26 n 01 infection 0 027 @ 14052046 n 0000 + 02114746 a 0101 + 02833070 a 0101 + 00088713 v 0101 ~ 14176372 n 0000 ~ 14176570 n 0000 ~ 14176715 n 0000 ~ 14178326 n 0000 ~ 14178482 n 0000 ~ 14178794 n 0000 ~ 14178913 n 0000 ~ 14179104 n 0000 ~ 14180327 n 0000 ~ 14180565 n 0000 ~ 14180848 n 0000 ~ 14183065 n 0000 ~ 14184801 n 0000 ~ 14184986 n 0000 ~ 14185219 n 0000 ~ 14185353 n 0000 ~ 14185503 n 0000 ~ 14185620 n 0000 ~ 14185803 n 0000 ~ 14186046 n 0000 ~ 14186340 n 0000 ~ 14358022 n 0000 %p 15287578 n 0000 | the pathological state resulting from the invasion of the body by pathogenic microorganisms -14175165 26 n 04 amebiasis 0 amoebiasis 0 amebiosis 0 amoebiosis 0 002 @ 14178913 n 0000 ~ 14175313 n 0000 | infection by a disease-causing ameba -14175313 26 n 02 amebic_dysentery 0 amoebic_dysentery 0 002 @ 14175165 n 0000 @ 14129999 n 0000 | inflammation of the intestines caused by Endamoeba histolytica; usually acquired by ingesting food or water contaminated with feces; characterized by severe diarrhea -14175579 26 n 01 chlamydia 0 002 @ 14133159 n 0000 + 02695045 a 0101 | a sexually transmitted infection caused by bacteria of the genus Chlamydia -14175727 26 n 02 fascioliasis 0 fasciolosis 0 001 @ 14452616 n 0000 | infestation with the liver fluke Fasciola hepatica; liver damage sometimes occurs; related to liver rot -14175903 26 n 01 fasciolopsiasis 0 001 @ 14452616 n 0000 | infestation with the large intestinal fluke Fasciolopsis buski; common in eastern Asia -14176051 26 n 03 Guinea_worm_disease 0 Guinea_worm 0 dracunculiasis 0 001 @ 14452616 n 0000 | a painful and debilitating infestation contracted by drinking stagnant water contaminated with Guinea worm larvae that can mature inside a human's abdomen until the worm emerges through a painful blister in the person's skin -14176372 26 n 01 enterobiasis 0 002 @ 14452616 n 0000 @ 14174549 n 0000 | an infestation with or a resulting infection caused by the pinworm Enterobius vermicularis; occurs especially in children -14176570 26 n 02 felon 0 whitlow 0 001 @ 14174549 n 0000 | a purulent infection at the end of a finger or toe in the area surrounding the nail -14176715 26 n 01 focal_infection 0 002 @ 14174549 n 0000 %p 14182697 n 0000 | bacterial infection limited to a specific organ or region especially one causing symptoms elsewhere -14176895 26 n 02 fungal_infection 0 mycosis 0 012 @ 13575226 n 0000 ~ 14125159 n 0000 ~ 14125466 n 0000 ~ 14147014 n 0000 ~ 14147212 n 0000 ~ 14181713 n 0000 ~ 14181948 n 0000 ~ 14182103 n 0000 ~ 14182242 n 0000 ~ 14182332 n 0000 ~ 14182453 n 0000 ~ 14567281 n 0000 | an inflammatory condition caused by a fungus -14177210 26 n 01 giardiasis 0 001 @ 14178913 n 0000 | infection of the intestines with protozoa found in contaminated food and water; characterized by diarrhea and nausea and flatulence and abdominal discomfort -14177423 26 n 05 hemorrhagic_fever 0 haemorrhagic_fever 0 viral_hemorrhagic_fever 0 viral_haemorrhagic_fever 0 VHF 0 007 @ 14186340 n 0000 ~ 14073505 n 0000 ~ 14135623 n 0000 ~ 14135956 n 0000 ~ 14179390 n 0000 ~ 14179569 n 0000 ~ 14265722 n 0000 | a group of illnesses caused by a viral infection (usually restricted to a specific geographic area); fever and gastrointestinal symptoms are followed by capillary hemorrhage -14177848 26 n 01 herpangia 0 001 @ 14186340 n 0000 | a viral infection (usually in children) marked by sore throat and fever and papules in the mouth and throat and headache and abdominal pain; usually subsides in a short time -14178077 26 n 03 leishmaniasis 0 leishmaniosis 0 kala_azar 0 004 @ 14178913 n 0000 ~ 14181049 n 0000 ~ 14181187 n 0000 ~ 14181409 n 0000 | sores resulting from a tropical infection by protozoa of the genus Leishmania which are spread by sandflies -14178326 26 n 02 nonsocial_infection 0 cross_infection 0 001 @ 14174549 n 0000 | an infection that is acquired at a hospital or other healthcare facility -14178482 26 n 01 opportunistic_infection 0 002 @ 14174549 n 0000 ~ 14182871 n 0000 | any infection caused by a microorganism that does not normally cause disease in humans; occurs in persons with abnormally functioning immune systems (as AIDS patients or transplant patients receiving immunosuppressive drugs) -14178794 26 n 01 paronychia 0 001 @ 14174549 n 0000 | infection in the tissues adjacent to a nail on a finger or toe -14178913 26 n 01 protozoal_infection 0 006 @ 14174549 n 0000 ~ 14077830 n 0000 ~ 14175165 n 0000 ~ 14177210 n 0000 ~ 14178077 n 0000 ~ 14186256 n 0000 | any infection caused by a protozoan -14179104 26 n 02 respiratory_tract_infection 0 respiratory_infection 0 003 @ 14174549 n 0000 ~ 14179276 n 0000 ~ 14180213 n 0000 | any infection of the respiratory tract -14179276 26 n 01 lower_respiratory_infection 0 001 @ 14179104 n 0000 | infection of the lower respiratory tract -14179390 26 n 01 Crimea-Congo_hemorrhagic_fever 0 001 @ 14177423 n 0000 | an infection common in Arab states caused by a bunyavirus; transmitted by a tick that thrives on sheep -14179569 26 n 01 Rift_Valley_fever 0 001 @ 14177423 n 0000 | an infection common in Africa caused by a bunyavirus; transmitted by mosquitoes or by handling infected animals -14179744 26 n 01 HIV 0 001 @ 14186340 n 0000 | infection by the human immunodeficiency virus -14179839 26 n 01 viral_pneumonia 0 002 @ 14186340 n 0000 @ 14147627 n 0000 | pneumonia caused by a virus -14179946 26 n 02 severe_acute_respiratory_syndrome 0 SARS 0 001 @ 14145095 n 0000 | a respiratory disease of unknown etiology that apparently originated in mainland China in 2003; characterized by fever and coughing or difficulty breathing or hypoxia; can be fatal -14180213 26 n 01 upper_respiratory_infection 0 001 @ 14179104 n 0000 | infection of the upper respiratory tract -14180327 26 n 02 scabies 0 itch 0 003 @ 14174549 n 0000 + 02121188 v 0201 + 02119874 v 0203 | a contagious skin infection caused by the itch mite; characterized by persistent itching and skin irritation; "he has a bad case of the itch" -14180565 26 n 03 schistosomiasis 0 bilharzia 0 bilharziasis 0 002 @ 14452616 n 0000 @ 14174549 n 0000 | an infestation with or a resulting infection caused by a parasite of the genus Schistosoma; common in the tropics and Far East; symptoms depend on the part of the body infected -14180848 26 n 01 sepsis 0 005 @ 14174549 n 0000 + 02998669 a 0101 + 02113827 a 0101 ~ 14189837 n 0000 ~ 14190132 n 0000 | the presence of pus-forming bacteria or their toxins in the blood or tissues -14181049 26 n 04 visceral_leishmaniasis 0 kala-azar 0 Assam_fever 0 dumdum_fever 0 001 @ 14178077 n 0000 | leishmaniasis of the viscera -14181187 26 n 06 cutaneous_leishmaniasis 0 Old_World_leishmaniasis 0 oriental_sore 0 tropical_sore 0 Delhi_boil 0 Aleppo_boil 0 001 @ 14178077 n 0000 | leishmaniasis of the skin; characterized by ulcerative skin lesions -14181409 26 n 05 mucocutaneous_leishmaniasis 0 New_World_leishmaniasis 0 American_leishmaniasis 0 leishmaniasis_americana 0 nasopharyngeal_leishmaniasis 0 001 @ 14178077 n 0000 | a form of leishmaniasis endemic in Mexico and Central American and South America; sores are limited to the skin and mucosa -14181713 26 n 03 candidiasis 0 moniliasis 0 monilia_disease 0 004 @ 14176895 n 0000 %p 13079567 n 0000 ~ 14182568 n 0000 %p 14358335 n 0000 | an infection caused by fungi of the genus Monilia or Candida (especially Candida albicans) -14181948 26 n 02 dermatomycosis 0 dermatophytosis 0 001 @ 14176895 n 0000 | fungal infection of the skin (especially of moist parts covered by clothing) -14182103 26 n 01 favus 0 001 @ 14176895 n 0000 | a contagious fungal infection of the scalp; occurs mainly in Africa and the Middle East -14182242 26 n 01 keratomycosis 0 001 @ 14176895 n 0000 | fungal infection of the cornea -14182332 26 n 01 phycomycosis 0 001 @ 14176895 n 0000 | any fungal infection caused by fungi of the Phycomycetes group -14182453 26 n 01 sporotrichosis 0 001 @ 14176895 n 0000 | a chronic fungal infection of the skin and lymph nodes -14182568 26 n 01 thrush 0 001 @ 14181713 n 0000 | candidiasis of the oral cavity; seen mostly in infants or debilitated adults -14182697 26 n 03 focus 0 focal_point 0 nidus 0 002 @ 08620061 n 0000 #p 14176715 n 0000 | a central point or locus of an infection in an organism; "the focus of infection" -14182871 26 n 01 aspergillosis 0 001 @ 14178482 n 0000 | an opportunistic infection by a fungus of the genus Aspergillus; characterized by inflammation and lesions of the ear and other organs -14183065 26 n 01 sore 0 005 @ 14174549 n 0000 ~ 14183420 n 0000 ~ 14184067 n 0000 ~ 14184254 n 0000 ~ 14184390 n 0000 | an open skin infection -14183210 26 n 02 boil 0 furuncle 0 002 @ 14184801 n 0000 ~ 14183337 n 0000 | a painful sore with a hard core filled with pus -14183337 26 n 01 gumboil 0 001 @ 14183210 n 0000 | a boil or abscess on the gums -14183420 26 n 01 blain 0 002 @ 14183065 n 0000 ~ 14183522 n 0000 | an inflammatory swelling or sore -14183522 26 n 03 chilblain 0 chilblains 0 pernio 0 002 @ 14183420 n 0000 ~ 14183692 n 0000 | inflammation of the hands and feet caused by exposure to cold and moisture -14183692 26 n 01 kibe 0 001 @ 14183522 n 0000 | ulcerated chilblain on the heel -14183774 26 n 01 carbuncle 0 002 @ 14184801 n 0000 + 01175298 a 0102 | an infection larger than a boil and with several openings for discharge of pus -14183926 26 n 01 cartilaginification 0 001 @ 14204950 n 0000 | abnormal formation of cartilage from other tissues; observed in some Asians -14184067 26 n 01 chancre 0 004 @ 14183065 n 0000 #p 14133985 n 0000 #p 14276360 n 0000 + 02691142 a 0101 | a small hard painless nodule at the site of entry of a pathogen (as syphilis) -14184254 26 n 02 fester 0 suppurating_sore 0 002 @ 14183065 n 0000 + 00096766 v 0101 | a sore that has become inflamed and formed pus -14184390 26 n 01 gall 0 003 @ 14183065 n 0000 + 02119659 v 0102 ~ 14184506 n 0000 | a skin sore caused by chafing -14184506 26 n 01 saddle_sore 0 001 @ 14184390 n 0000 | sore on a horseback rider chafed by a saddle -14184608 26 n 02 shigellosis 0 bacillary_dysentery 0 001 @ 14129999 n 0000 | an acute infection of the intestine by shigella bacteria; characterized by diarrhea and fever and abdominal pains -14184801 26 n 01 staphylococcal_infection 0 003 @ 14174549 n 0000 ~ 14183210 n 0000 ~ 14183774 n 0000 | an infection with staphylococcus bacteria; usually marked by abscess formation -14184986 26 n 05 streptococcal_sore_throat 0 strep_throat 0 streptococcus_tonsilitis 0 septic_sore_throat 0 throat_infection 0 002 @ 14173484 n 0000 @ 14174549 n 0000 | an infection of the oral pharynx and tonsils by streptococcus -14185219 26 n 04 sty 0 stye 0 hordeolum 0 eye_infection 0 001 @ 14174549 n 0000 | an infection of the sebaceous gland of the eyelid -14185353 26 n 01 superinfection 0 002 @ 14174549 n 0000 + 00088972 v 0101 | infection that occurs while you are being treated for another infection -14185503 26 n 01 suprainfection 0 001 @ 14174549 n 0000 | secondary infection caused by an opportunistic infection -14185620 26 n 01 tapeworm_infection 0 001 @ 14174549 n 0000 | intestinal infection by a species of parasitic tapeworm; usually the result of eating inadequately cooked meat or fish -14185803 26 n 02 tetanus 0 lockjaw 0 001 @ 14174549 n 0000 | an acute and serious infection of the central nervous system caused by bacterial infection of open wounds; spasms of the jaw and laryngeal muscles may occur during the late stages -14186046 26 n 01 toxoplasmosis 0 001 @ 14174549 n 0000 | infection caused by parasites transmitted to humans from infected cats; if contracted by a pregnant woman it can result in serious damage to the fetus -14186256 26 n 01 trichomoniasis 0 001 @ 14178913 n 0000 | infection of the vagina -14186340 26 n 02 viral_infection 0 virus_infection 0 005 @ 14174549 n 0000 ~ 14177423 n 0000 ~ 14177848 n 0000 ~ 14179744 n 0000 ~ 14179839 n 0000 | infection by a virus that is pathogenic to humans -14186541 26 n 01 arthritis 0 007 @ 14171682 n 0000 + 09811568 n 0101 + 01173795 a 0101 ~ 14186738 n 0000 ~ 14188238 n 0000 ~ 14188804 n 0000 ~ 14189065 n 0000 | inflammation of a joint or joints -14186738 26 n 03 rheumatoid_arthritis 0 atrophic_arthritis 0 rheumatism 1 006 @ 14186541 n 0000 @ 14187378 n 0000 ;c 01328702 n 0000 + 01173795 a 0303 ~ 14187869 n 0000 ~ 14188030 n 0000 | a chronic autoimmune disease with inflammation of the joints and marked deformities; something (possibly a virus) triggers an attack on the synovium by the immune system, which releases cytokines that stimulate an inflammatory reaction that can lead to the destruction of all components of the joint -14187229 26 n 01 rheumatoid_factor 0 001 @ 15027618 n 0000 | autoantibody that is usually present in the serum of people with rheumatoid arthritis -14187378 26 n 02 autoimmune_disease 0 autoimmune_disorder 0 014 @ 14070360 n 0000 ~ 14078871 n 0000 ~ 14094068 n 0000 ~ 14118423 n 0000 ~ 14121058 n 0000 ~ 14186738 n 0000 ~ 14220474 n 0000 ~ 14220735 n 0000 ~ 14220998 n 0000 ~ 14221138 n 0000 ~ 14230800 n 0000 %p 14527977 n 0000 ~ 14565196 n 0000 ~ 14565417 n 0000 | any of a large group of diseases characterized by abnormal functioning of the immune system that causes your immune system to produce antibodies against your own tissues -14187869 26 n 01 psoriatic_arthritis 0 001 @ 14186738 n 0000 | a form of rheumatoid arthritis usually affecting fingers and toes and associated with psoriasis -14188030 26 n 02 Still's_disease 0 juvenile_rheumatoid_arthritis 0 001 @ 14186738 n 0000 | a form of rheumatoid arthritis that affects children; large joints become inflamed and bone growth may be retarded -14188238 26 n 03 osteoarthritis 0 degenerative_arthritis 0 degenerative_joint_disease 0 001 @ 14186541 n 0000 | chronic breakdown of cartilage in the joints; the most common form of arthritis occurring usually after middle age -14188467 26 n 01 osteosclerosis 0 001 @ 14110411 n 0000 | abnormal hardening or eburnation of bone -14188568 26 n 01 housemaid's_knee 0 001 @ 14261384 n 0000 | swelling of the bursa in the knee (due to trauma or excessive kneeling) -14188702 26 n 01 cystitis 0 001 @ 14566129 n 0000 | inflammation of the urinary bladder and ureters -14188804 26 n 03 gout 0 gouty_arthritis 0 urarthritis 0 002 @ 14186541 n 0000 + 02545168 a 0101 | a painful inflammation of the big toe and foot caused by defects in uric acid metabolism resulting in deposits of the acid and its salts in the blood and joints -14189065 26 n 01 spondylarthritis 0 001 @ 14186541 n 0000 | arthritis that affects one or more of the intervertebral joints in the spine -14189204 26 n 02 blood_disease 0 blood_disorder 0 030 @ 14053850 n 0000 ~ 13973490 n 0000 ~ 14020753 n 0000 ~ 14020936 n 0000 ~ 14071758 n 0000 ~ 14071896 n 0000 ~ 14072126 n 0000 ~ 14072239 n 0000 ~ 14167298 n 0000 ~ 14170337 n 0000 ~ 14170623 n 0000 ~ 14189837 n 0000 ~ 14191756 n 0000 ~ 14192034 n 0000 ~ 14192790 n 0000 ~ 14193421 n 0000 ~ 14194690 n 0000 ~ 14194942 n 0000 ~ 14195112 n 0000 ~ 14195315 n 0000 ~ 14196221 n 0000 ~ 14196405 n 0000 ~ 14196823 n 0000 ~ 14196965 n 0000 ~ 14197099 n 0000 ~ 14197315 n 0000 ~ 14197468 n 0000 ~ 14198019 n 0000 ~ 14572353 n 0000 ~ 14572951 n 0000 | a disease or disorder of the blood -14189837 26 n 03 blood_poisoning 0 septicemia 0 septicaemia 0 008 @ 14180848 n 0000 @ 14189204 n 0000 + 02115187 a 0201 ~ 14190493 n 0000 ~ 14190736 n 0000 ~ 14190907 n 0000 ~ 14263562 n 0000 ~ 14272620 n 0000 | invasion of the bloodstream by virulent microorganisms from a focus of infection -14190132 26 n 02 sapremia 0 sapraemia 0 001 @ 14180848 n 0000 | blood poisoning caused by putrefactive bacteria; results from eating putrefied matter -14190284 26 n 01 ozone_sickness 0 001 @ 14061805 n 0000 | illness that can occur to persons exposed to ozone in high-altitude aircraft; characterized by sleepiness and headache and chest pains and itchiness -14190493 26 n 02 puerperal_fever 0 childbed_fever 0 001 @ 14189837 n 0000 | serious form of septicemia contracted by a woman during childbirth or abortion (usually attributable to unsanitary conditions); formerly widespread but now uncommon -14190736 26 n 02 pyemia 0 pyaemia 0 003 @ 14189837 n 0000 + 03105430 a 0202 + 03105430 a 0101 | septicemia caused by pus-forming bacteria being released from an abscess -14190907 26 n 02 toxemia 0 toxaemia 0 001 @ 14189837 n 0000 | blood poisoning caused by bacterial toxic substances in the blood -14191037 26 n 04 toxemia_of_pregnancy 0 toxaemia_of_pregnancy 0 toxemia 1 toxaemia 1 003 @ 14061805 n 0000 ~ 14191284 n 0000 ~ 14191442 n 0000 | an abnormal condition of pregnancy characterized by hypertension and edema and protein in the urine -14191284 26 n 01 eclampsia 0 001 @ 14191037 n 0000 | a toxic condition characterized by convulsions and possibly coma during or immediately after pregnancy -14191442 26 n 02 preeclampsia 0 pre-eclampsia 0 001 @ 14191037 n 0000 | abnormal state of pregnancy characterized by hypertension and fluid retention and albuminuria; can lead to eclampsia if untreated -14191646 26 n 01 eosinopenia 0 001 @ 14299637 n 0000 | a decrease in the number of eosinophils in the blood -14191756 26 n 01 erythroblastosis 0 001 @ 14189204 n 0000 | a blood disease characterized by the abnormal presence of erythroblasts in the blood -14191903 26 n 02 hemoglobinemia 0 haemoglobinemia 0 001 @ 14299637 n 0000 | presence of excessive hemoglobin in the blood plasma -14192034 26 n 02 hemoglobinopathy 0 haemoglobinopathy 0 001 @ 14189204 n 0000 | a blood disease characterized by the presence of abnormal hemoglobins in the blood -14192199 26 n 02 hemoptysis 0 haemoptysis 0 001 @ 14299637 n 0000 | coughing up blood from the respiratory tract; usually indicates a severe infection of the bronchi or lungs -14192376 26 n 02 Hand-Schuller-Christian_disease 0 Schuller-Christian_disease 0 001 @ 14192790 n 0000 | inflammatory histiocytosis associated with disturbance of cholesterol metabolism; occurs chiefly in young children and is characterized by cystic defects of the skull and diabetes insipidus -14192672 26 n 01 Haverhill_fever 0 001 @ 14140533 n 0000 | the form of ratbite fever occurring in the United States -14192790 26 n 01 histiocytosis 0 002 @ 14189204 n 0000 ~ 14192376 n 0000 | a blood disease characterized by an abnormal multiplication of macrophages -14192942 26 n 03 hydatid_mole 0 hydatidiform_mole 0 molar_pregnancy 0 001 @ 14501726 n 0000 | an abnormality during pregnancy; chorionic villi around the fetus degenerate and form clusters of fluid-filled sacs; usually associated with the death of the fetus -14193202 26 n 01 hydramnios 0 001 @ 14501726 n 0000 | an abnormality of pregnancy; accumulation of excess amniotic fluid -14193325 26 n 01 water_on_the_knee 0 001 @ 14347540 n 0000 | hydrarthrosis affecting the knee -14193421 26 n 01 hydremia 0 001 @ 14189204 n 0000 | blood disorder in which there is excess fluid volume compared with the cell volume of the blood -14193571 26 n 01 hydrocele 0 001 @ 14052403 n 0000 | disorder in which serous fluid accumulates in a body sac (especially in the scrotum) -14193711 26 n 01 lipidosis 0 005 @ 14084502 n 0000 ~ 14151884 n 0000 ~ 14156345 n 0000 ~ 14164007 n 0000 ~ 14169364 n 0000 | a disorder of lipid metabolism; abnormal levels of certain fats accumulate in the body -14193925 26 n 0c lipemia 0 lipaemia 0 lipidemia 0 lipidaemia 0 lipoidemia 0 lipoidaemia 0 hyperlipemia 0 hyperlipaemia 0 hyperlipidemia 0 hyperlipidaemia 0 hyperlipoidemia 0 hyperlipoidaemia 0 001 @ 14299637 n 0000 | presence of excess lipids in the blood -14194183 26 n 01 lysine_intolerance 0 001 @ 14084502 n 0000 | a disorder in which a lack of certain enzymes makes it impossible to digest the amino acid lysine -14194345 26 n 02 lysogeny 0 lysogenicity 0 004 @ 13920429 n 0000 + 02831478 a 0201 + 02831364 a 0201 + 02831478 a 0101 | the condition of a host bacterium that has incorporated a phage into its own genetic material; "when a phage infects a bacterium it can either destroy its host or be incorporated in the host genome in a state of lysogeny" -14194690 26 n 01 hypothrombinemia 0 001 @ 14189204 n 0000 | a low level of prothrombin (factor II) in the circulating blood; results in long clotting time and poor clot formation and sometimes excessive bleeding; can result from vitamin K deficiency -14194942 26 n 02 hypervolemia 0 hypervolaemia 0 002 @ 14189204 n 0000 ! 14195112 n 0101 | a blood disorder consisting of an increase in the volume of circulating blood -14195112 26 n 02 hypovolemia 0 hypovolaemia 0 004 @ 14189204 n 0000 + 02877313 a 0202 + 02877313 a 0101 ! 14194942 n 0101 | a blood disorder consisting of a decrease in the volume of circulating blood -14195315 26 n 02 anemia 0 anaemia 0 018 @ 14189204 n 0000 + 03041331 a 0202 + 03041331 a 0101 ~ 14164341 n 0000 ~ 14164548 n 0000 ~ 14164866 n 0000 ~ 14165081 n 0000 ~ 14165240 n 0000 ~ 14165373 n 0000 ~ 14165544 n 0000 ~ 14165730 n 0000 ~ 14165909 n 0000 ~ 14166118 n 0000 ~ 14166968 n 0000 ~ 14167123 n 0000 ~ 14167426 n 0000 ~ 14168176 n 0000 ~ 14168792 n 0000 | a deficiency of red blood cells -14195715 26 n 04 thalassemia 0 thalassaemia 0 Mediterranean_anemia 0 Mediterranean_anaemia 0 003 @ 14165544 n 0000 @ 14074877 n 0000 ~ 14195939 n 0000 | an inherited form of anemia caused by faulty synthesis of hemoglobin -14195939 26 n 04 Cooley's_anemia 0 Cooley's_anaemia 0 thalassemia_major 0 thalassaemia_major 0 001 @ 14195715 n 0000 | a fatal form of homozygous thalassemia (inherited from both parents) in which there is no hemoglobin; skeletal deformations; heart and spleen and liver enlarged -14196221 26 n 02 leukocytosis 0 leucocytosis 0 001 @ 14189204 n 0000 | an abnormal increase in the number of white blood cells in the blood as a result of infection (as in leukemia) -14196405 26 n 02 leukopenia 0 leucopenia 0 002 @ 14189204 n 0000 ~ 14196543 n 0000 | an abnormal lowering of the white blood cell count -14196543 26 n 01 neutropenia 0 002 @ 14196405 n 0000 ~ 14196722 n 0000 | leukopenia in which the decrease is primarily in number of neutrophils (the chief phagocytic leukocyte) -14196722 26 n 01 cyclic_neutropenia 0 001 @ 14196543 n 0000 | neutropenia that occurs periodically -14196823 26 n 02 lymphocytopenia 0 lymphopenia 0 001 @ 14189204 n 0000 | an abnormally small number of lymphocytes in the circulating blood -14196965 26 n 01 lymphocytosis 0 001 @ 14189204 n 0000 | an abnormal increase in the number of lymphocytes in the circulating blood -14197099 26 n 01 microcytosis 0 002 @ 14189204 n 0000 #p 14167123 n 0000 | a blood disorder characterized by the presence of microcytes (abnormally small red blood cells) in the blood; often associated with anemia -14197315 26 n 01 polycythemia 0 001 @ 14189204 n 0000 | a disorder characterized by an abnormal increase in the number of red blood cells in the blood -14197468 26 n 02 purpura 0 peliosis 0 003 @ 14189204 n 0000 ~ 14197628 n 0000 ~ 14565417 n 0000 | any of several blood diseases causing subcutaneous bleeding -14197628 26 n 01 nonthrombocytopenic_purpura 0 001 @ 14197468 n 0000 | purpura resulting from a defect in the capillaries caused by bacteria or drugs -14197780 26 n 01 essential_thrombocytopenia 0 001 @ 14198019 n 0000 | the primary form of thrombocytopenia (rather than a shortage of platelets caused by other conditions such as tuberculosis or chemical suppression of bone marrow etc.) -14198019 26 n 02 thrombocytopenia 0 thrombopenia 0 002 @ 14189204 n 0000 ~ 14197780 n 0000 | a blood disease characterized by an abnormally small number of platelets in the blood -14198200 26 n 01 deficiency_disease 0 003 @ 14070360 n 0000 ~ 14199700 n 0000 ~ 14200704 n 0000 | any disease caused by a lack of an essential nutrient (as a vitamin or mineral) -14198380 26 n 04 fibrocystic_breast_disease 0 fibrocystic_disease_of_the_breast 0 cystic_breast_disease 0 cystic_mastitis 0 001 @ 14070360 n 0000 | the presence of one or more cysts in a breast -14198576 26 n 02 avitaminosis 0 hypovitaminosis 0 007 @ 14199700 n 0000 + 02654314 a 0101 ~ 14199264 n 0000 ~ 14200873 n 0000 ~ 14201311 n 0000 ~ 14201520 n 0000 ~ 14554853 n 0000 | any of several diseases caused by deficiency of one or more vitamins -14198829 26 n 01 hypervitaminosis 0 001 @ 14501726 n 0000 | an abnormal condition resulting from taking vitamins excessively; can be serious for vitamins A or D or K -14198997 26 n 01 hypospadias 0 001 @ 14501726 n 0000 | an abnormal condition in males in which the urethra opens on the under surface of the penis -14199146 26 n 01 lagophthalmos 0 001 @ 14501726 n 0000 | abnormal condition in which an eye cannot close completely -14199264 26 n 01 beriberi 0 002 @ 14198576 n 0000 ~ 14199389 n 0000 | avitaminosis caused by lack of thiamine (vitamin B1) -14199389 26 n 01 kakke_disease 0 001 @ 14199264 n 0000 | the endemic form of beriberi -14199477 26 n 04 goiter 0 goitre 0 struma 0 thyromegaly 0 001 @ 14070360 n 0000 | abnormally enlarged thyroid gland; can result from underproduction or overproduction of hormone or from a deficiency of iodine in the diet -14199700 26 n 01 malnutrition 0 004 @ 14198200 n 0000 ~ 14198576 n 0000 ~ 14199934 n 0000 ~ 14200098 n 0000 | a state of poor nutrition; can result from insufficient or excessive or unbalanced diet or from inability to absorb foods -14199934 26 n 01 kwashiorkor 0 001 @ 14199700 n 0000 | severe malnutrition in children resulting from a diet excessively high in carbohydrates and low in protein -14200098 26 n 01 marasmus 0 001 @ 14199700 n 0000 | extreme malnutrition and emaciation (especially in children); can result from inadequate intake of food or from malabsorption or metabolic disorders -14200301 26 n 01 mental_abnormality 0 002 @ 14501726 n 0000 ~ 14200548 n 0000 | any abnormality of mental function -14200418 26 n 01 nanophthalmos 0 001 @ 14501726 n 0000 | condition in which both eyes are abnormally small but otherwise normal -14200548 26 n 01 organic_brain_syndrome 0 001 @ 14200301 n 0000 | mental abnormality resulting from disturbance of the structure or function of the brain -14200704 26 n 01 zinc_deficiency 0 001 @ 14198200 n 0000 | a deficiency caused by inadequate zinc in the diet or by liver disease or cystic fibrosis or other diseases -14200873 26 n 07 pellagra 0 Alpine_scurvy 0 mal_de_la_rosa 0 mal_rosso 0 maidism 0 mayidism 0 Saint_Ignatius'_itch 0 001 @ 14198576 n 0000 | a disease caused by deficiency of niacin or tryptophan (or by a defect in the metabolic conversion of tryptophan to niacin); characterized by gastrointestinal disturbances and erythema and nervous or mental disorders; may be caused by malnutrition or alcoholism or other nutritional impairments -14201311 26 n 02 rickets 0 rachitis 0 002 @ 14198576 n 0000 + 02546316 a 0202 | childhood disease caused by deficiency of vitamin D and sunlight associated with impaired metabolism of calcium and phosphorus -14201520 26 n 02 scurvy 0 scorbutus 0 003 @ 14198576 n 0000 + 03115436 a 0201 + 03115436 a 0101 | a condition caused by deficiency of ascorbic acid (vitamin C) -14201682 26 n 01 dermoid_cyst 0 001 @ 14202996 n 0000 | a cystic tumor (usually benign) with a wall lined with epithelium and a cavity containing other material -14201845 26 n 01 galactocele 0 001 @ 14202996 n 0000 | a cystic tumor containing milk or a milky substance (especially in the mammary glands) -14201989 26 n 03 hemorrhagic_cyst 0 blood_cyst 0 hematocyst 0 002 @ 14202996 n 0000 ~ 14318552 n 0000 | a cyst containing blood -14202119 26 n 01 hydatid 0 001 @ 14202996 n 0000 | cyst filled with liquid; forms as a result of infestation by tapeworm larvae (as in echinococcosis) -14202272 26 n 02 nabothian_cyst 0 nabothian_follicle 0 001 @ 14202996 n 0000 | a cyst that forms in the nabothian glands of the uterine cervix -14202417 26 n 01 ovarian_cyst 0 001 @ 14202996 n 0000 | a cystic tumor (usually benign) of the ovary -14202520 26 n 02 chalazion 0 Meibomian_cyst 0 001 @ 14202763 n 0000 | a small sebaceous cyst of the eyelid resulting when a Meibomian gland is blocked -14202673 26 n 01 ranula 0 001 @ 14202996 n 0000 | a cyst on the underside of the tongue -14202763 26 n 04 sebaceous_cyst 0 pilar_cyst 0 wen 0 steatocystoma 0 002 @ 14202996 n 0000 ~ 14202520 n 0000 | a common cyst of the skin; filled with fatty matter (sebum) that is secreted by a sebaceous gland that has been blocked -14202996 26 n 01 cyst 0 010 @ 14204950 n 0000 + 02709190 a 0101 ~ 14201682 n 0000 ~ 14201845 n 0000 ~ 14201989 n 0000 ~ 14202119 n 0000 ~ 14202272 n 0000 ~ 14202417 n 0000 ~ 14202673 n 0000 ~ 14202763 n 0000 | a closed sac that develops abnormally in some body structure -14203269 26 n 01 pip 1 001 @ 14055408 n 0000 | a minor nonspecific ailment -14203346 26 n 02 motion_sickness 0 kinetosis 0 005 @ 14055408 n 0000 @ 14359952 n 0000 ~ 14203605 n 0000 ~ 14203813 n 0000 ~ 14203942 n 0000 | the state of being dizzy or nauseated because of the motions that occur while traveling in or on a moving vehicle -14203605 26 n 02 airsickness 0 air_sickness 0 004 @ 14203346 n 0000 + 02542675 a 0201 + 02542675 a 0202 + 02542675 a 0101 | motion sickness experienced while traveling by air (especially during turbulence) -14203813 26 n 01 car_sickness 0 002 @ 14203346 n 0000 + 02542675 a 0103 | motion sickness experienced while traveling in a car -14203942 26 n 03 seasickness 0 mal_de_mer 0 naupathia 0 002 @ 14203346 n 0000 + 02542675 a 0104 | motion sickness experienced while traveling on water -14204095 26 n 02 heatstroke 0 heat_hyperpyrexia 0 003 @ 14066203 n 0000 ~ 14204253 n 0000 ~ 14204586 n 0000 | collapse caused by exposure to excessive heat -14204253 26 n 02 heat_exhaustion 0 heat_prostration 0 001 @ 14204095 n 0000 | a condition marked by dizziness and nausea and weakness caused by depletion of body fluids and electrolytes -14204441 26 n 01 algidity 0 002 @ 14066203 n 0000 + 01251958 a 0101 | prostration characterized by cold and clammy skin and low blood pressure -14204586 26 n 04 sunstroke 0 insolation 0 thermic_fever 0 siriasis 0 002 @ 14204095 n 0000 + 02112546 v 0202 | sudden prostration due to exposure to the sun or excessive heat -14204763 26 n 02 endometriosis 0 adenomyosis 0 001 @ 14204950 n 0000 | the presence of endometrium elsewhere than in the lining of the uterus; causes premenstrual pain and dysmenorrhea -14204950 26 n 01 pathology 0 066 @ 14052046 n 0000 + 01176246 a 0104 + 01585491 a 0101 + 01176246 a 0103 + 10011074 n 0102 ~ 14019600 n 0000 ~ 14021266 n 0000 ~ 14022520 n 0000 ~ 14024185 n 0000 ~ 14024296 n 0000 ~ 14024391 n 0000 ~ 14024581 n 0000 ~ 14032480 n 0000 ~ 14044592 n 0000 ~ 14068528 n 0000 ~ 14069212 n 0000 ~ 14069383 n 0000 ~ 14071419 n 0000 ~ 14096328 n 0000 ~ 14107374 n 0000 ~ 14108576 n 0000 ~ 14110025 n 0000 ~ 14110146 n 0000 ~ 14110219 n 0000 ~ 14110411 n 0000 ~ 14115799 n 0000 ~ 14115914 n 0000 ~ 14183926 n 0000 ~ 14202996 n 0000 ~ 14204763 n 0000 ~ 14206224 n 0000 ~ 14206929 n 0000 ~ 14207561 n 0000 ~ 14207711 n 0000 ~ 14207809 n 0000 ~ 14208065 n 0000 ~ 14208342 n 0000 ~ 14208438 n 0000 ~ 14209201 n 0000 ~ 14210354 n 0000 ~ 14210564 n 0000 ~ 14210716 n 0000 ~ 14210888 n 0000 ~ 14210971 n 0000 ~ 14211212 n 0000 ~ 14211294 n 0000 ~ 14241825 n 0000 ~ 14313440 n 0000 ~ 14318927 n 0000 ~ 14331137 n 0000 ~ 14336004 n 0000 ~ 14352077 n 0000 ~ 14396890 n 0000 ~ 14466122 n 0000 ~ 14502896 n 0000 ~ 14503234 n 0000 ~ 14503528 n 0000 ~ 14527977 n 0000 ~ 14557898 n 0000 ~ 14564934 n 0000 ~ 14566606 n 0000 ~ 14567812 n 0000 ~ 14573196 n 0000 ~ 14573432 n 0000 ~ 14573846 n 0000 ~ 14574014 n 0000 | any deviation from a healthy or normal condition -14206224 26 n 01 adhesion 0 003 @ 14204950 n 0000 ~ 14206375 n 0000 ~ 14206477 n 0000 | abnormal union of bodily tissues; most common in the abdomen -14206375 26 n 01 symphysis 0 001 @ 14206224 n 0000 | an abnormal adhesion of two or more structures -14206477 26 n 01 synechia 0 003 @ 14206224 n 0000 ~ 14206722 n 0000 ~ 14206826 n 0000 | adhesions between the iris and the lens or cornea resulting from trauma or eye surgery or as a complication of glaucoma or cataract; can lead to blindness -14206722 26 n 01 anterior_synechia 0 001 @ 14206477 n 0000 | adhesion between the iris and the cornea -14206826 26 n 01 posterior_synechia 0 001 @ 14206477 n 0000 | adhesion between the iris and the lens -14206929 26 n 04 hemochromatosis 0 iron-storage_disease 0 iron_overload 0 bronzed_diabetes 0 003 @ 14204950 n 0000 ~ 14207256 n 0000 ~ 14207388 n 0000 | pathology in which iron accumulates in the tissues; characterized by bronzed skin and enlarged liver and diabetes mellitus and abnormalities of the pancreas and the joints -14207256 26 n 02 classic_hemochromatosis 0 idiopathic_hemochromatosis 0 001 @ 14206929 n 0000 | inherited form of hemochromatosis -14207388 26 n 01 acquired_hemochromatosis 0 001 @ 14206929 n 0000 | hemochromatosis resulting from repeated transfusions or from excessive intake of foods containing iron -14207561 26 n 02 infarct 0 infarction 0 002 @ 14204950 n 0000 ~ 14113021 n 0000 | localized necrosis resulting from obstruction of the blood supply -14207711 26 n 01 macrocytosis 0 001 @ 14204950 n 0000 | the presence of macrocytes in the blood -14207809 26 n 01 fibrosis 0 004 @ 14204950 n 0000 #p 14149963 n 0000 ~ 14155506 n 0000 ~ 14207978 n 0000 | development of excess fibrous connective tissue in an organ -14207978 26 n 01 myelofibrosis 0 001 @ 14207809 n 0000 | fibrosis of the bone marrow -14208065 26 n 01 malacia 0 002 @ 14204950 n 0000 ~ 14208176 n 0000 | a state of abnormal softening of tissue -14208176 26 n 01 osteomalacia 0 002 @ 14208065 n 0000 %p 14210716 n 0000 | abnormal softening of bones caused by deficiencies of phosphorus or calcium or vitamin D -14208342 26 n 02 mastopathy 0 mazopathy 0 001 @ 14204950 n 0000 | any pathology of the breast -14208438 26 n 01 neuropathy 0 004 @ 14204950 n 0000 ~ 14208587 n 0000 ~ 14208988 n 0000 ~ 14209087 n 0000 | any pathology of the peripheral nerves -14208587 26 n 02 Charcot-Marie-Tooth_disease 0 hereditary_motor_and_sensory_neuropathy 0 001 @ 14208438 n 0000 | a form of neuropathy that can begin between childhood and young adulthood; characterized by weakness and atrophy of the muscles of the hands and lower legs; progression is slow and individuals affected can have a normal life span; inheritance is X-linked recessive or X-linked dominant -14208988 26 n 01 mononeuropathy 0 001 @ 14208438 n 0000 | any neuropathy of a single nerve trunk -14209087 26 n 01 multiple_mononeuropathy 0 001 @ 14208438 n 0000 | pathology of several individual nerve trunks -14209201 26 n 01 myopathy 0 002 @ 14204950 n 0000 + 02766952 a 0101 | any pathology of the muscles that is not attributable to nerve dysfunction -14209348 26 n 01 dermatomyositis 0 001 @ 14350292 n 0000 | myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling accompanied by skin rash affecting cheeks and eyelids and neck and chest and limbs; progression and severity vary among individuals -14209635 26 n 01 polymyositis 0 001 @ 14350292 n 0000 | myositis characterized by weakness of limb and neck muscles and much muscle pain and swelling; progression and severity vary among individuals -14209836 26 n 01 inclusion_body_myositis 0 001 @ 14350292 n 0000 | myositis characterized by weakness of limb muscles (especially the thighs and wrists and fingers); sometimes involves swallowing muscles; onset after 50 and slowly progressive; seen more often in men than in women -14210119 26 n 03 osteopetrosis 0 Albers-Schonberg_disease 0 marble_bones_disease 0 001 @ 14151139 n 0000 | an inherited disorder characterized by an increase in bone density; in severe forms the bone marrow cavity may be obliterated -14210354 26 n 01 osteoporosis 0 002 @ 14204950 n 0000 ~ 14505469 n 0000 | abnormal loss of bony tissue resulting in fragile porous bones attributable to a lack of calcium; most common in postmenopausal women -14210564 26 n 01 priapism 0 001 @ 14204950 n 0000 | condition in which the penis is continually erect; usually painful and seldom with sexual arousal -14210716 26 n 02 demineralization 0 demineralisation 0 003 @ 14204950 n 0000 #p 14208176 n 0000 + 00574514 v 0202 | abnormal loss of mineral salts (especially from bone) -14210888 26 n 02 pyorrhea 0 pyorrhoea 0 001 @ 14204950 n 0000 | discharge of pus -14210971 26 n 04 uremia 0 uraemia 0 azotemia 0 azotaemia 0 004 @ 14204950 n 0000 + 02656218 a 0301 + 02656218 a 0203 + 02656218 a 0102 | accumulation in the blood of nitrogenous waste products (urea) that are usually excreted in the urine -14211212 26 n 01 azoturia 0 001 @ 14204950 n 0000 | excess of urea in the urine -14211294 26 n 01 lesion 1 003 @ 14204950 n 0000 ~ 14211440 n 0000 ~ 14211609 n 0000 | any localized abnormal structural change in a bodily part -14211440 26 n 01 tubercle 0 004 @ 14211294 n 0000 + 02546854 a 0101 + 02818958 a 0101 + 02546854 a 0102 | a swelling that is the characteristic lesion of tuberculosis -14211609 26 n 02 ulcer 0 ulceration 0 011 @ 14211294 n 0000 + 01175158 a 0103 + 00537153 v 0101 + 00019982 v 0101 ~ 14211985 n 0000 ~ 14212126 n 0000 ~ 14212303 n 0000 ~ 14212402 n 0000 ~ 14212759 n 0000 ~ 14212941 n 0000 ~ 14213044 n 0000 | a circumscribed inflammatory and often suppurating lesion on the skin or an internal mucous surface resulting in necrosis of tissue -14211985 26 n 01 aphthous_ulcer 0 001 @ 14211609 n 0000 | a blister on the mucous membranes of the lips or mouth or gastrointestinal tract -14212126 26 n 03 bedsore 0 pressure_sore 0 decubitus_ulcer 0 001 @ 14211609 n 0000 | a chronic ulcer of the skin caused by prolonged pressure on it (as in bedridden patients) -14212303 26 n 01 chancroid 0 002 @ 14211609 n 0000 + 02691028 a 0101 | infectious venereal ulcer -14212402 26 n 02 peptic_ulcer 0 peptic_ulceration 0 003 @ 14211609 n 0000 ~ 14212579 n 0000 ~ 14212670 n 0000 | an ulcer of the mucous membrane lining of the alimentary tract -14212579 26 n 01 duodenal_ulcer 0 001 @ 14212402 n 0000 | a peptic ulcer of the duodenum -14212670 26 n 01 gastric_ulcer 0 001 @ 14212402 n 0000 | a peptic ulcer of the stomach -14212759 26 n 02 canker 0 canker_sore 0 004 @ 14211609 n 0000 + 01175158 a 0101 + 00090075 v 0101 + 00089973 v 0101 | an ulceration (especially of the lips or lining of the mouth) -14212941 26 n 01 noli-me-tangere 0 001 @ 14211609 n 0000 | a cancerous ulcer of soft tissue and bone -14213044 26 n 01 noma 0 001 @ 14211609 n 0000 | acute ulceration of the mucous membranes of the mouth or genitals; often seen in undernourished children -14213199 26 n 01 affliction 0 002 @ 14052046 n 0000 ~ 14213512 n 0000 | a condition of suffering or distress due to ill health -14213328 26 n 01 curvature 0 004 @ 13920835 n 0000 ;c 06043075 n 0000 + 02034671 v 0102 + 02034986 v 0102 | (medicine) a curving or bending; often abnormal; "curvature of the spine" -14213512 26 n 03 deformity 0 malformation 0 misshapenness 0 012 @ 14213199 n 0000 + 02141298 a 0305 + 02141298 a 0101 ~ 14213867 n 0000 ~ 14214001 n 0000 ~ 14214209 n 0000 ~ 14214584 n 0000 ~ 14215199 n 0000 ~ 14467685 n 0000 ~ 14468508 n 0000 ~ 14468693 n 0000 ~ 14468870 n 0000 | an affliction in which some part of the body is misshapen or malformed -14213867 26 n 01 Arnold-Chiari_deformity 0 001 @ 14213512 n 0000 | deformity in which part of the brain protrudes through the skull -14214001 26 n 02 clawfoot 0 pes_cavus 0 001 @ 14213512 n 0000 | a deformity of the foot characterized by an abnormally high arch and hyperextension of the toes which gives the foot the appearance of a claw -14214209 26 n 01 cleft_foot 0 001 @ 14213512 n 0000 | a deformity in which the space between the third and fourth toes extends up into the foot -14214355 26 n 03 cleft_lip 0 harelip 0 cheiloschisis 0 001 @ 14465048 n 0000 | a congenital cleft in the middle of the upper lip -14214486 26 n 01 cleft_palate 0 001 @ 14465048 n 0000 | a congenital fissure of the hard palate -14214584 26 n 02 clubfoot 0 talipes 0 004 @ 14213512 n 0000 ~ 14214819 n 0000 ~ 14214938 n 0000 ~ 14215046 n 0000 | congenital deformity of the foot usually marked by a curled shape or twisted position of the ankle and heel and toes -14214819 26 n 01 talipes_valgus 0 001 @ 14214584 n 0000 | deformity of the foot in which the foot is twisted outward -14214938 26 n 01 talipes_equinus 0 001 @ 14214584 n 0000 | talipes in which the toes are pointed downward -14215046 26 n 01 talipes_calcaneus 0 001 @ 14214584 n 0000 | talipes in which the toes are pointed upward and the person walks on the heel of the foot -14215199 26 n 02 pigeon_breast 0 chicken_breast 0 001 @ 14213512 n 0000 | abnormal protrusion of the breastbone caused by rickets -14215331 26 n 01 blight 1 027 @ 14276936 n 0000 + 02771320 v 0101 ~ 14215908 n 0000 ~ 14216054 n 0000 ~ 14216152 n 0000 ~ 14216234 n 0000 ~ 14216318 n 0000 ~ 14216404 n 0000 ~ 14216653 n 0000 ~ 14216793 n 0000 ~ 14216888 n 0000 ~ 14217253 n 0000 ~ 14217360 n 0000 ~ 14217473 n 0000 ~ 14217676 n 0000 ~ 14217897 n 0000 ~ 14218401 n 0000 ~ 14218493 n 0000 ~ 14218637 n 0000 ~ 14218717 n 0000 ~ 14218805 n 0000 ~ 14218887 n 0000 ~ 14218991 n 0000 ~ 14219068 n 0000 ~ 14219187 n 0000 ~ 14219290 n 0000 ~ 14219394 n 0000 | any plant disease resulting in withering without rotting -14215908 26 n 01 alder_blight 0 002 @ 14215331 n 0000 ;c 00017222 n 0000 | a disease of alders caused by the woolly alder aphid (a plant louse) -14216054 26 n 02 apple_blight 0 apple_canker 0 001 @ 14215331 n 0000 | a disease of apple trees -14216152 26 n 01 beet_blight 0 001 @ 14215331 n 0000 | a disease of beet plants -14216234 26 n 01 blister_blight 0 001 @ 14215331 n 0000 | a disease of tea plants -14216318 26 n 01 blister_blight 1 001 @ 14215331 n 0000 | a disease of Scotch pines -14216404 26 n 01 cane_blight 0 001 @ 14215331 n 0000 | a disease affecting the canes of various bush fruits (e.g., raspberries or currants) -14216546 26 n 01 celery_blight 0 001 @ 14217676 n 0000 | a fungous leaf spot disease of the celery plant -14216653 26 n 03 chestnut_blight 0 chestnut_canker 0 chestnut-bark_disease 0 001 @ 14215331 n 0000 | a disease of American chestnut trees -14216793 26 n 01 coffee_blight 0 001 @ 14215331 n 0000 | a blight affecting the coffee plant -14216888 26 n 01 collar_blight 0 001 @ 14215331 n 0000 | a disease affecting the trunks of pear and apple trees -14217002 26 n 02 fire_blight 0 pear_blight 0 002 @ 14217897 n 0000 ~ 14217147 n 0000 | a disease blackening the leaves of pear and apple trees -14217147 26 n 01 blight_canker 0 001 @ 14217002 n 0000 | a phase of fire blight in which cankers appear -14217253 26 n 03 halo_blight 0 halo_spot 0 bean_blight 0 001 @ 14215331 n 0000 | a blight of bean plants -14217360 26 n 01 halo_blight 1 001 @ 14215331 n 0000 | a blight affecting the leaves of oats and other grasses -14217473 26 n 01 head_blight 0 002 @ 14215331 n 0000 ~ 14217581 n 0000 | a blight of the heads of cereals -14217581 26 n 01 wheat_scab 0 001 @ 14217473 n 0000 | a disease of the heads of wheat plants -14217676 26 n 01 late_blight 0 002 @ 14215331 n 0000 ~ 14216546 n 0000 | blight in which symptoms appear late in the growing season especially a disease of solanaceous plants caused by the fungus Phytophthora infestans -14217897 26 n 01 leaf_blight 0 003 @ 14215331 n 0000 ~ 14217002 n 0000 ~ 14218158 n 0000 | any blight causing a browning and falling of the leaves of a plant -14218057 26 n 01 leaf_disease 0 001 @ 14276936 n 0000 | any plant disease localized in the foliage -14218158 26 n 03 needle_blight 0 needle_cast 0 leaf_cast 0 001 @ 14217897 n 0000 | a disease of conifers causing the needles to fall -14218293 26 n 01 oak_blight 0 001 @ 02251775 n 0000 | a black plant louse that lives on oaks and dogwoods -14218401 26 n 01 peach_blight 0 001 @ 14215331 n 0000 | a disease of trees bearing drupes -14218493 26 n 05 potato_blight 0 potato_mold 0 potato_disease 0 potato_mildew 0 potato_murrain 0 001 @ 14215331 n 0000 | a blight of potatoes -14218637 26 n 01 rim_blight 0 001 @ 14215331 n 0000 | a disease of tea plants -14218717 26 n 01 spinach_blight 0 001 @ 14215331 n 0000 | a disease of spinach plants -14218805 26 n 01 spur_blight 0 001 @ 14215331 n 0000 | a disease of raspberries -14218887 26 n 01 stem_blight 0 001 @ 14215331 n 0000 | a fungous blight attacking the stems of plants -14218991 26 n 01 stripe_blight 0 001 @ 14215331 n 0000 | a disease of oats -14219068 26 n 01 thread_blight 0 001 @ 14215331 n 0000 | a disease of tropical woody plants (cacao or tea or citrus) -14219187 26 n 02 tomato_blight 0 tomato_yellows 0 001 @ 14215331 n 0000 | a disease of tomato plants -14219290 26 n 01 twig_blight 0 001 @ 14215331 n 0000 | a disease of the ends of twigs of woody plants -14219394 26 n 01 walnut_blight 0 001 @ 14215331 n 0000 | a disease of English walnut trees -14219487 26 n 03 sandfly_fever 0 pappataci_fever 0 phlebotomus 0 001 @ 14070360 n 0000 | a mild viral disease transmitted by the bite of the sand fly Phlebotomus papatasii -14219661 26 n 03 skin_disease 0 disease_of_the_skin 0 skin_disorder 0 030 @ 14070360 n 0000 ~ 14221601 n 0000 ~ 14221741 n 0000 ~ 14221924 n 0000 ~ 14222112 n 0000 ~ 14225045 n 0000 ~ 14226056 n 0000 ~ 14227218 n 0000 ~ 14227488 n 0000 ~ 14227613 n 0000 ~ 14227806 n 0000 ~ 14227906 n 0000 ~ 14228038 n 0000 ~ 14228148 n 0000 ~ 14229248 n 0000 ~ 14229403 n 0000 ~ 14229788 n 0000 ~ 14229912 n 0000 ~ 14230083 n 0000 ~ 14230232 n 0000 ~ 14230588 n 0000 ~ 14230800 n 0000 ~ 14231640 n 0000 ~ 14231794 n 0000 ~ 14232034 n 0000 ~ 14232157 n 0000 ~ 14232596 n 0000 ~ 14232945 n 0000 ~ 14233267 n 0000 ~ 14233974 n 0000 | a disease affecting the skin -14220308 26 n 01 lupus_vulgaris 0 002 @ 14229912 n 0000 @ 14143415 n 0000 | tuberculosis of the skin; appears first on the face and heals slowly leaving deep scars -14220474 26 n 03 ankylosing_spondylitis 0 Marie-Strumpell_disease 0 rheumatoid_spondylitis 0 002 @ 14355901 n 0000 @ 14187378 n 0000 | a chronic form of spondylitis primarily in males and marked by impaired mobility of the spine; sometimes leads to ankylosis -14220735 26 n 02 discoid_lupus_erythematosus 0 DLE 0 002 @ 14229912 n 0000 @ 14187378 n 0000 | a chronic skin disease occurring primarily in women between the ages of 20 and 40; characterized by an eruption of red lesions over the cheeks and bridge of the nose -14220998 26 n 01 Hashimoto's_disease 0 001 @ 14187378 n 0000 | autoimmune disorder of the thyroid gland; most common in middle-aged women -14221138 26 n 02 lupus_erythematosus 0 LE 0 002 @ 14229912 n 0000 @ 14187378 n 0000 | a chronic inflammatory collagen disease affecting connective tissue (skin or joints) -14221311 26 n 03 systemic_lupus_erythematosus 0 SLE 0 disseminated_lupus_erythematosus 0 001 @ 14229912 n 0000 | an inflammatory disease of connective tissue with variable features including fever and weakness and fatigability and joint pains and skin lesions on the face or neck or arms -14221601 26 n 01 acantholysis 0 002 @ 14219661 n 0000 #p 14230800 n 0000 | a breakdown of a cell layer in the epidermis (as in pemphigus) -14221741 26 n 01 acanthosis 0 003 @ 14219661 n 0000 #p 14231794 n 0000 + 02600131 a 0101 | an abnormal but benign thickening of the prickle-cell layer of the skin (as in psoriasis) -14221924 26 n 02 acanthosis_nigricans 0 keratosis_nigricans 0 001 @ 14219661 n 0000 | a skin disease characterized by dark wartlike patches in the body folds; can be benign or malignant -14222112 26 n 01 acne 0 005 @ 14219661 n 0000 @ 14171682 n 0000 ~ 14222352 n 0000 ~ 14222541 n 0000 ~ 14334306 n 0000 | an inflammatory disease involving the sebaceous glands of the skin; characterized by papules or pustules or comedones -14222352 26 n 02 acne_rosacea 0 rosacea 0 001 @ 14222112 n 0000 | a skin disease of adults (more often women) in which blood vessels of the face enlarge resulting in a flushed appearance -14222541 26 n 01 acne_vulgaris 0 001 @ 14222112 n 0000 | the most common form of acne; usually affects people from puberty to young adulthood -14222685 26 n 01 actinic_dermatitis 0 001 @ 14224757 n 0000 | dermatitis caused exposure to sunlight -14222788 26 n 02 atopic_dermatitis 0 atopic_eczema 0 001 @ 14224757 n 0000 | a severe form of dermatitis characterized by atopy -14222918 26 n 01 bubble_gum_dermatitis 0 001 @ 14223074 n 0000 | an allergic contact dermatitis developed around the lips of children who chew bubble gum -14223074 26 n 01 contact_dermatitis 0 003 @ 14224757 n 0000 ~ 14222918 n 0000 ~ 14223296 n 0000 | a delayed type of allergic reaction of the skin resulting from skin contact with a specific allergen (such as poison ivy) -14223296 26 n 01 Rhus_dermatitis 0 004 @ 14223074 n 0000 ~ 14223492 n 0000 ~ 14223638 n 0000 ~ 14223752 n 0000 | contact dermatitis resulting from contact with plants of the genus Toxicodendron -14223492 26 n 01 poison_ivy 0 001 @ 14223296 n 0000 | dermatitis resulting from contact with the poison ivy plant; "my poison ivy is drying up" -14223638 26 n 01 poison_oak 0 001 @ 14223296 n 0000 | dermatitis resulting from contact with a poison oak plant -14223752 26 n 01 poison_sumac 0 001 @ 14223296 n 0000 | dermatitis resulting from contact with a poison sumac plant -14223870 26 n 01 cradle_cap 0 001 @ 14224757 n 0000 | a dermatitis of the scalp that is common in infants -14223978 26 n 02 diaper_rash 0 diaper_dermatitis 0 001 @ 14224757 n 0000 | dermatitis of the thighs and buttocks of infants; supposedly caused by ammonia in the urine in the child's diapers -14224170 26 n 01 hypericism 0 001 @ 14224757 n 0000 | a severe dermatitis of herbivorous domestic animals attributable to photosensitivity from eating Saint John's wort -14224341 26 n 01 neurodermatitis 0 001 @ 14224757 n 0000 | dermatitis in which localized areas (especially the forearms or back of the neck or outer part of the ankle) itch persistently; cause is unknown -14224547 26 n 02 schistosome_dermatitis 0 swimmer's_itch 0 003 @ 14224757 n 0000 ;c 02472293 n 0000 ;c 00015388 n 0000 | a sensitization reaction to repeated invasion of the skin by cercariae of schistosomes -14224757 26 n 01 dermatitis 0 010 @ 14226056 n 0000 ~ 14222685 n 0000 ~ 14222788 n 0000 ~ 14223074 n 0000 ~ 14223870 n 0000 ~ 14223978 n 0000 ~ 14224170 n 0000 ~ 14224341 n 0000 ~ 14224547 n 0000 ~ 14232740 n 0000 | inflammation of the skin; skin becomes itchy and may develop blisters -14225045 26 n 01 dermatosis 0 002 @ 14219661 n 0000 ~ 14231022 n 0000 | disorder involving lesions or eruptions of the skin (in which there is usually no inflammation) -14225215 26 n 01 baker's_eczema 0 001 @ 14225346 n 0000 | allergic eczema caused by flour or other ingredients handled by bakers -14225346 26 n 01 allergic_eczema 0 002 @ 14226056 n 0000 ~ 14225215 n 0000 | eczema caused by an allergic reaction -14225463 26 n 01 eczema_herpeticum 0 001 @ 14226056 n 0000 | eczema characterized by a feverish condition and widespread eruption of vesicles; most common in children -14225632 26 n 02 eczema_vaccinatum 0 Kaposi's_varicelliform_eruption 0 002 @ 14226056 n 0000 @ 14321469 n 0000 | a now rare complication of vaccinia superimposed on atopic dermatitis with high fever and generalized vesicles and papulovesicles -14225877 26 n 03 lichtenoid_eczema 0 chronic_eczema 0 eczema_hypertrophicum 0 001 @ 14226056 n 0000 | eczema characterized by thickening of the skin with accentuated skin lines -14226056 26 n 01 eczema 0 006 @ 14219661 n 0000 ~ 14224757 n 0000 ~ 14225346 n 0000 ~ 14225463 n 0000 ~ 14225632 n 0000 ~ 14225877 n 0000 | generic term for inflammatory conditions of the skin; particularly with vesiculation in the acute stages -14226303 26 n 01 erythema 0 007 @ 14227218 n 0000 + 02722304 a 0101 ~ 14226567 n 0000 ~ 14226709 n 0000 ~ 14226862 n 0000 ~ 14290365 n 0000 ~ 14290751 n 0000 | abnormal redness of the skin resulting from dilation of blood vessels (as in sunburn or inflammation) -14226567 26 n 01 erythema_multiforme 0 001 @ 14226303 n 0000 | a red rash caused by hypersensitivity to a drug or disease or other allergen -14226709 26 n 01 erythema_nodosum 0 002 @ 14226303 n 0000 ~ 14227015 n 0000 | skin condition characterized by tender red nodules on the shins and legs -14226862 26 n 02 hickey 0 love_bite 0 001 @ 14226303 n 0000 | a temporary red mark on a person's skin resulting from kissing or sucking by their lover -14227015 26 n 02 erythema_nodosum_leprosum 0 ENL 0 002 @ 14226709 n 0000 #p 14136187 n 0000 | an inflammatory complication of leprosy that results in painful skin lesions on the arms and legs and face -14227218 26 n 01 erythroderma 0 003 @ 14219661 n 0000 ~ 14226303 n 0000 ~ 14227357 n 0000 | any skin disorder involving abnormal redness -14227357 26 n 01 flare 0 001 @ 14227218 n 0000 | reddening of the skin spreading outward from a focus of infection or irritation -14227488 26 n 01 furunculosis 0 001 @ 14219661 n 0000 | acute skin disease characterized by the presence of many furuncles -14227613 26 n 01 impetigo 0 001 @ 14219661 n 0000 | a very contagious infection of the skin; common in children; localized redness develops into small blisters that gradually crust and erode -14227806 26 n 01 jungle_rot 0 001 @ 14219661 n 0000 | skin disorder induced by a tropical climate -14227906 26 n 02 keratoderma 0 keratodermia 0 001 @ 14219661 n 0000 | any skin disorder consisting of a growth that appears horny -14228038 26 n 01 keratonosis 0 001 @ 14219661 n 0000 | any abnormal condition of the outer skin (epidermis) -14228148 26 n 01 keratosis 0 007 @ 14219661 n 0000 ~ 04696432 n 0000 ~ 14228376 n 0000 ~ 14228512 n 0000 ~ 14228712 n 0000 ~ 14228885 n 0000 ~ 14229067 n 0000 | a skin condition marked by an overgrowth of layers of horny skin -14228376 26 n 01 actinic_keratosis 0 001 @ 14228148 n 0000 | an overgrowth of skin layers resulting from extended exposure to the sun -14228512 26 n 02 keratosis_blennorrhagica 0 keratoderma_blennorrhagica 0 001 @ 14228148 n 0000 | skin disease characterized by a scaly rash on the palms and soles; associated with Reiter's syndrome -14228712 26 n 02 keratosis_follicularis 0 Darier's_disease 0 001 @ 14228148 n 0000 | a rare hereditary condition marked by dark crusted patches (sometimes containing pus) -14228885 26 n 01 keratosis_pilaris 0 001 @ 14228148 n 0000 | keratosis characterized by hard conical elevations in the openings of sebaceous glands (especially of arms and thighs) -14229067 26 n 01 seborrheic_keratosis 0 001 @ 14228148 n 0000 | a skin condition characterized by circumscribed wartlike lesions that can be itchy and covered with a greasy crust -14229248 26 n 01 leukoderma 0 002 @ 14219661 n 0000 %p 14291010 n 0000 | a congenital skin condition characterized by spots or bands of unpigmented skin -14229403 26 n 01 lichen 0 002 @ 14219661 n 0000 ~ 14229604 n 0000 | any of several eruptive skin diseases characterized by hard thick lesions grouped together and resembling lichens growing on rocks -14229604 26 n 02 lichen_planus 0 lichen_ruber_planus 0 001 @ 14229403 n 0000 | an eruption of shiny flat-topped purplish (usually itchy) papules on the wrist and forearms and thighs -14229788 26 n 01 livedo 0 001 @ 14219661 n 0000 | skin disorder characterized by patchy bluish discolorations on the skin -14229912 26 n 01 lupus 0 005 @ 14219661 n 0000 ~ 14220308 n 0000 ~ 14220735 n 0000 ~ 14221138 n 0000 ~ 14221311 n 0000 | any of several forms of ulcerative skin disease -14230083 26 n 02 melanosis 0 melanism 0 001 @ 14219661 n 0000 | a condition characterized by abnormal deposits of melanin (especially in the skin) -14230232 26 n 01 molluscum 0 002 @ 14219661 n 0000 ~ 14230358 n 0000 | any skin disease characterized by soft pulpy nodules -14230358 26 n 01 molluscum_contagiosum 0 001 @ 14230232 n 0000 | a virus disease of the skin marked by round white swellings; transmitted from person to person (most often in children or in adults with impaired immune function) -14230588 26 n 02 necrobiosis_lipoidica 0 necrobiosis_lipoidica_diabeticorum 0 001 @ 14219661 n 0000 | skin disease marked by thin shiny patches (especially on the legs); often associated with diabetes mellitus -14230800 26 n 01 pemphigus 0 004 @ 14219661 n 0000 @ 14187378 n 0000 + 02776379 a 0101 %p 14221601 n 0000 | a skin disease characterized by large thin-walled blisters (bullae) arising from normal skin or mucous membrane -14231022 26 n 01 pityriasis 0 004 @ 14225045 n 0000 ~ 14231207 n 0000 ~ 14231330 n 0000 ~ 14231504 n 0000 | any of several skin disorders characterized by shedding dry flakes of skin -14231207 26 n 01 dandruff 0 001 @ 14231022 n 0000 | a condition in which white scales of dead skin are shed by the scalp -14231330 26 n 01 pityriasis_alba 0 001 @ 14231022 n 0000 | common form of pityriasis (usually in children or young adults) characterized by round patches of depigmentation -14231504 26 n 01 pityriasis_rosea 0 001 @ 14231022 n 0000 | pityriasis in which an itchy rash develops over the trunk and extremities -14231640 26 n 01 prurigo 0 001 @ 14219661 n 0000 | chronic inflammatory disease of the skin characterized by blister capped papules and intense itching -14231794 26 n 01 psoriasis 0 002 @ 14219661 n 0000 %p 14221741 n 0000 | a chronic skin disease characterized by dry red patches covered with scales; occurs especially on the scalp and ears and genitalia and the skin over bony prominences -14232034 26 n 01 rhagades 0 001 @ 14219661 n 0000 | cracks or fissures in the skin (especially around the mouth or anus) -14232157 26 n 01 Saint_Anthony's_fire 0 002 @ 14219661 n 0000 ~ 14232299 n 0000 | any of several inflammatory or gangrenous skin conditions -14232299 26 n 01 erysipelas 0 001 @ 14232157 n 0000 | an acute streptococcal infection characterized by deep-red inflammation of the skin and mucous membranes -14232460 26 n 01 scleredema 0 001 @ 14316714 n 0000 | a skin disease marked by hard edema of the tissue usually beginning in the face -14232596 26 n 01 seborrhea 0 001 @ 14219661 n 0000 | a condition in which overactivity of the sebaceous glands causes the skin to become oily -14232740 26 n 02 seborrheic_dermatitis 0 seborrheic_eczema 0 001 @ 14224757 n 0000 | a chronic skin disease associated with seborrhea and greasy scales on the scalp or eyelids or other parts of the skin -14232945 26 n 01 vitiligo 0 003 @ 14219661 n 0000 + 03144152 a 0101 %p 14291010 n 0000 | an acquired skin disease characterized by patches of unpigmented skin (often surrounded by a heavily pigmented border) -14233155 26 n 01 xanthelasma 0 001 @ 14233267 n 0000 | xanthoma of the eyelids; occurs chiefly in the elderly -14233267 26 n 01 xanthoma 0 004 @ 14219661 n 0000 ~ 14233155 n 0000 ~ 14233545 n 0000 ~ 14233717 n 0000 | a skin problem marked by the development (on the eyelids and neck and back) of irregular yellow nodules; sometimes attributable to disturbances of cholesterol metabolism -14233545 26 n 01 xanthoma_disseminatum 0 001 @ 14233267 n 0000 | rare chronic xanthoma of adults in which orange or brownish papules develop on many surfaces of the body -14233717 26 n 05 xanthomatosis 0 xanthoma_multiplex 0 cholesterosis_cutis 0 lipid_granulomatosis 0 lipoid_granulomatosis 0 001 @ 14233267 n 0000 | widespread xanthomas (especially on elbows and knees); often associated with a disorder of lipid metabolism -14233974 26 n 01 xanthosis 0 001 @ 14219661 n 0000 | an abnormal yellow discoloration of the skin -14234074 26 n 01 growth 0 008 @ 14061805 n 0000 ;c 06060845 n 0000 ~ 05603650 n 0000 ~ 14234317 n 0000 ~ 14234436 n 0000 ~ 14235066 n 0000 ~ 14235200 n 0000 ~ 14238953 n 0000 | (pathology) an abnormal proliferation of tissue (as in a tumor) -14234317 26 n 01 exostosis 0 001 @ 14234074 n 0000 | a benign outgrowth from a bone (usually covered with cartilage) -14234436 26 n 02 polyp 0 polypus 0 004 @ 14234074 n 0000 ~ 14234611 n 0000 ~ 14234867 n 0000 ~ 14234950 n 0000 | a small vascular growth on the surface of a mucous membrane -14234611 26 n 01 adenomatous_polyp 0 001 @ 14234436 n 0000 | a polyp that consists of benign neoplastic tissue derived from glandular epithelium; "adenomatous polyps are visible protrusions that can develop on the mucosal surface of the colon or rectum" -14234867 26 n 01 sessile_polyp 0 001 @ 14234436 n 0000 | a relatively flat polyp -14234950 26 n 01 pedunculated_polyp 0 002 @ 14234436 n 0000 %p 14235066 n 0000 | a polyp with a stalk or peduncle -14235066 26 n 01 peduncle 0 002 @ 14234074 n 0000 #p 14234950 n 0000 | the thin process of tissue that attaches a polyp to the body -14235200 26 n 03 tumor 0 tumour 0 neoplasm 0 020 @ 14234074 n 0000 + 02768271 a 0301 ~ 14235667 n 0000 ~ 14235928 n 0000 ~ 14236226 n 0000 ~ 14236595 n 0000 ~ 14236743 n 0000 ~ 14237148 n 0000 ~ 14237489 n 0000 ~ 14238639 n 0000 ~ 14239322 n 0000 ~ 14239425 n 0000 ~ 14239743 n 0000 ~ 14249138 n 0000 ~ 14249262 n 0000 ~ 14250232 n 0000 ~ 14250433 n 0000 ~ 14250514 n 0000 ~ 14250622 n 0000 ~ 14251045 n 0000 | an abnormal new mass of tissue that serves no purpose -14235667 26 n 02 acanthoma 0 skin_tumor 0 002 @ 14235200 n 0000 ~ 14239097 n 0000 | a neoplasm originating in the epidermis -14235793 26 n 01 adenoma 0 003 @ 14236226 n 0000 ~ 14238211 n 0000 ~ 14241733 n 0000 | a benign epithelial tumor of glandular origin -14235928 26 n 01 angioma 0 006 @ 14235200 n 0000 @ 14071419 n 0000 + 02623387 a 0101 ~ 14247575 n 0000 ~ 14247954 n 0000 ~ 14248069 n 0000 | a tumor consisting of a mass of blood or lymphatic vessels -14236130 26 n 01 chondroma 0 001 @ 14236226 n 0000 | a common benign tumor of cartilage cells -14236226 26 n 05 benign_tumor 0 benign_tumour 0 nonmalignant_tumor 0 nonmalignant_tumour 0 nonmalignant_neoplasm 0 012 @ 14235200 n 0000 ~ 14235793 n 0000 ~ 14236130 n 0000 ~ 14238041 n 0000 ~ 14238528 n 0000 ~ 14248541 n 0000 ~ 14248669 n 0000 ~ 14248787 n 0000 ~ 14249601 n 0000 ~ 14249785 n 0000 ~ 14249937 n 0000 ~ 14250081 n 0000 | a tumor that is not cancerous -14236595 26 n 03 blastoma 0 blastocytoma 0 embryonal_carcinosarcoma 0 001 @ 14235200 n 0000 | a tumor composed of immature undifferentiated cells -14236743 26 n 02 brain_tumor 0 brain_tumour 0 003 @ 14235200 n 0000 ~ 14236872 n 0000 ~ 14237032 n 0000 | a tumor in the brain -14236872 26 n 02 glioblastoma 0 spongioblastoma 0 001 @ 14236743 n 0000 | a fast-growing malignant brain tumor composed of spongioblasts; nearly always fatal -14237032 26 n 01 glioma 0 002 @ 14236743 n 0000 %s 05467054 n 0000 | a tumor of the brain consisting of neuroglia -14237148 26 n 01 carcinoid 0 001 @ 14235200 n 0000 | a small tumor (benign or malignant) arising from the mucosa of the gastrointestinal tract; usually associated with excessive secretion of serotonin -14237351 26 n 01 carcinosarcoma 0 001 @ 14239425 n 0000 | a malignant neoplasm composed of carcinoma and sarcoma extensively intermixed -14237489 26 n 01 celioma 0 001 @ 14235200 n 0000 | an abdominal tumor -14237561 26 n 02 malignancy 0 malignance 0 006 @ 14070360 n 0000 ;c 06043075 n 0000 + 02594714 a 0201 + 02594714 a 0101 %p 05431285 n 0000 ~ 14239425 n 0000 | (medicine) a malignant state; progressive and resistant to treatment and tending to cause death -14237818 26 n 02 granulation 0 granulation_tissue 0 003 @ 05286536 n 0000 + 00099374 v 0101 ~ 14318819 n 0000 | new connective tissue and tiny blood vessels that form on the surfaces of a wound during the healing process -14238041 26 n 01 enchondroma 0 001 @ 14236226 n 0000 | benign slow-growing tumor of cartilaginous cells at the ends of tubular bones (especially in the hands and feet) -14238211 26 n 01 fibroadenoma 0 001 @ 14235793 n 0000 | benign and movable and firm and not tender tumor of the breast; common in young women and caused by high levels of estrogen -14238393 26 n 02 fibroid_tumor 0 fibroid 0 001 @ 14238528 n 0000 | benign tumor containing fibrous tissue (especially in the uterus) -14238528 26 n 01 fibroma 0 002 @ 14236226 n 0000 ~ 14238393 n 0000 | nonmalignant tumor of connective tissue -14238639 26 n 01 granuloma 0 003 @ 14235200 n 0000 + 02736596 a 0101 ~ 14238820 n 0000 | a tumor composed of granulation tissue resulting from injury or inflammation or infection -14238820 26 n 01 gumma 0 001 @ 14238639 n 0000 | a small rubbery granuloma that is characteristic of an advanced stage of syphilis -14238953 26 n 01 hamartoma 0 001 @ 14234074 n 0000 | a focal growth that resembles a neoplasm but results from faulty development in an organ -14239097 26 n 01 keratoacanthoma 0 001 @ 14235667 n 0000 | skin tumor that grows rapidly (especially in older people) and resembles a carcinoma but does not spread; it usually disappears spontaneously, often leaving a scar -14239322 26 n 02 lipoma 0 adipose_tumor 0 001 @ 14235200 n 0000 | a tumor consisting of fatty tissue -14239425 26 n 03 malignant_tumor 0 malignant_neoplasm 0 metastatic_tumor 0 009 @ 14235200 n 0000 @ 14237561 n 0000 ~ 14237351 n 0000 ~ 14239918 n 0000 ~ 14240262 n 0000 ~ 14248256 n 0000 ~ 14248899 n 0000 ~ 14249037 n 0000 ~ 14250850 n 0000 | a tumor that is malignant and tends to spread to other parts of the body -14239743 26 n 01 meningioma 0 001 @ 14235200 n 0000 | a tumor arising in the meninges which surround the brain and spinal cord; usually slow growing and sometimes malignant -14239918 26 n 02 cancer 0 malignant_neoplastic_disease 0 006 @ 14239425 n 0000 + 02594940 a 0101 ~ 14241968 n 0000 ~ 14242337 n 0000 ~ 14242922 n 0000 ~ 14246359 n 0000 | any malignant growth or tumor caused by abnormal and uncontrolled cell division; it may spread to other parts of the body through the lymphatic system or the blood stream -14240262 26 n 01 angiosarcoma 0 001 @ 14239425 n 0000 | a rare malignant neoplasm arising from vascular tissue; usually occurs in the breast and skin and is believed to originate from the endothelial cells of blood vessels -14240487 26 n 01 chondrosarcoma 0 001 @ 14246359 n 0000 | a malignant neoplasm of cartilage cells -14240587 26 n 04 Ewing's_sarcoma 0 Ewing's_tumor 0 Ewing's_tumour 0 endothelial_myeloma 0 001 @ 14246359 n 0000 | malignant tumor in bone marrow (usually in the pelvis or in long bones) -14240775 26 n 01 Kaposi's_sarcoma 0 001 @ 14246359 n 0000 | a sarcoma that starts with purplish spots on the feet and legs and spreads from the skin to lymph nodes and internal organs; a common manifestation of AIDS; "until 1980 Kaposi's sarcoma occurred almost exclusively with Jewish or Italian or black men" -14241088 26 n 01 leiomyosarcoma 0 001 @ 14246359 n 0000 | sarcoma of smooth muscle; occurs most often digestive tract or uterus or bladder or prostate -14241241 26 n 01 liposarcoma 0 001 @ 14246359 n 0000 | sarcoma of fat cells -14241319 26 n 01 myosarcoma 0 001 @ 14246359 n 0000 | sarcoma of muscle tissue -14241400 26 n 02 neurosarcoma 0 malignant_neuroma 0 001 @ 14246359 n 0000 | a malignant neoplasm of nerve tissue and fibrous tissue and connective tissue -14241556 26 n 02 osteosarcoma 0 osteogenic_sarcoma 0 001 @ 14246359 n 0000 | malignant bone tumor; most common in children and young adults where it tends to affect the femur -14241733 26 n 01 lymphadenoma 0 001 @ 14235793 n 0000 | an abnormally enlarged lymph node -14241825 26 n 01 lymphadenopathy 0 001 @ 14204950 n 0000 | chronic abnormal enlargement of the lymph nodes (usually associated with disease) -14241968 26 n 01 lymphoma 0 002 @ 14239918 n 0000 ~ 14242132 n 0000 | a neoplasm of lymph tissue that is usually malignant; one of the four major types of cancer -14242132 26 n 01 Hodgkin's_disease 0 001 @ 14241968 n 0000 | a malignant disorder in which there is progressive (but painless) enlargement of lymph tissue followed by enlargement of the spleen and liver -14242337 26 n 01 carcinoma 0 018 @ 14239918 n 0000 + 02680017 a 0101 ~ 14131651 n 0000 ~ 14246710 n 0000 ~ 14246899 n 0000 ~ 14247035 n 0000 ~ 14247239 n 0000 ~ 14247360 n 0000 ~ 14247458 n 0000 ~ 14251174 n 0000 ~ 14251317 n 0000 ~ 14251435 n 0000 ~ 14251616 n 0000 ~ 14251845 n 0000 ~ 14251981 n 0000 ~ 14252184 n 0000 ~ 14252320 n 0000 ~ 14252722 n 0000 | any malignant tumor derived from epithelial tissue; one of the four major types of cancer -14242788 26 n 02 cancroid 0 squamous_cell_carcinoma 0 002 @ 14252320 n 0000 + 02677231 a 0101 | the most common form of skin cancer -14242922 26 n 04 leukemia 0 leukaemia 0 leucaemia 0 cancer_of_the_blood 0 007 @ 14239918 n 0000 ~ 14243268 n 0000 ~ 14243877 n 0000 ~ 14244353 n 0000 ~ 14244726 n 0000 ~ 14244991 n 0000 ~ 14245163 n 0000 | malignant neoplasm of blood-forming tissues; characterized by abnormal proliferation of leukocytes; one of the four major types of cancer -14243268 26 n 01 acute_leukemia 0 003 @ 14242922 n 0000 ~ 14243393 n 0000 ~ 14243649 n 0000 | rapidly progressing leukemia -14243393 26 n 02 acute_lymphocytic_leukemia 0 acute_lymphoblastic_leukemia 0 001 @ 14243268 n 0000 | acute leukemia characterized by proliferation of immature lymphoblast-like cells in bone marrow, lymph nodes, spleen, and blood; most common in children -14243649 26 n 02 acute_myelocytic_leukemia 0 acute_myeloid_leukemia 0 002 @ 14245163 n 0000 @ 14243268 n 0000 | acute leukemia characterized by proliferation of granular leukocytes; most common in adolescents and young adults -14243877 26 n 01 chronic_leukemia 0 003 @ 14242922 n 0000 ~ 14244003 n 0000 ~ 14244160 n 0000 | slowly progressing leukemia -14244003 26 n 01 chronic_lymphocytic_leukemia 0 001 @ 14243877 n 0000 | chronic leukemia characterized by lymphoblast-like cells; more common in older men -14244160 26 n 02 chronic_myelocytic_leukemia 0 myeloid_leukemia 0 002 @ 14245163 n 0000 @ 14243877 n 0000 | chronic leukemia characterized by granular leukocytes; more common in older people -14244353 26 n 01 lymphocytic_leukemia 0 002 @ 14242922 n 0000 ~ 14244542 n 0000 | leukemia characterized by enlargement of lymphoid tissues and lymphocytic cells in the circulating blood -14244542 26 n 01 lymphoblastic_leukemia 0 001 @ 14244353 n 0000 | a form of lymphocytic leukemia in which the abnormal cells in the circulating blood are almost totally lymphoblasts -14244726 26 n 06 monocytic_leukemia 0 monocytic_leukaemia 0 monoblastic_leukemia 0 monoblastic_leukaemia 0 histiocytic_leukemia 0 histiocytic_leukaemia 0 001 @ 14242922 n 0000 | leukemia characterized by the proliferation of monocytes and monoblasts in the blood -14244991 26 n 01 myeloblastic_leukemia 0 001 @ 14242922 n 0000 | a malignant neoplasm of blood-forming tissues; characterized by numerous myeloblasts in the blood stream -14245163 26 n 02 myelocytic_leukemia 0 granulocytic_leukemia 0 003 @ 14242922 n 0000 ~ 14243649 n 0000 ~ 14244160 n 0000 | a malignant neoplasm of blood-forming tissues; marked by proliferation of myelocytes and their presence in the blood -14245405 26 n 02 rhabdomyosarcoma 0 rhabdosarcoma 0 004 @ 14246359 n 0000 ~ 14245594 n 0000 ~ 14245758 n 0000 ~ 14245928 n 0000 | a highly malignant neoplasm derived from striated muscle -14245594 26 n 02 embryonal_rhabdomyosarcoma 0 embryonal_rhabdosarcoma 0 001 @ 14245405 n 0000 | form of rhabdomyosarcoma occurring mainly in infants and children -14245758 26 n 02 alveolar_rhabdomyosarcoma 0 alveolar_rhabdosarcoma 0 001 @ 14245405 n 0000 | form of rhabdomyosarcoma occurring mainly in adolescents and young adults -14245928 26 n 02 pleomorphic_rhabdomyosarcoma 0 pleomorphic_rhabdosarcoma 0 001 @ 14245405 n 0000 | form of rhabdomyosarcoma that affects limb muscles of older adults -14246097 26 n 05 Wilms'_tumor 0 Wilms_tumour 0 adenomyosarcoma 0 nephroblastoma 0 embryoma_of_the_kidney 0 001 @ 14246359 n 0000 | malignant renal tumor of young children characterized by hypertension and blood in the urine and the presence of a palpable mass -14246359 26 n 01 sarcoma 0 011 @ 14239918 n 0000 ~ 14240487 n 0000 ~ 14240587 n 0000 ~ 14240775 n 0000 ~ 14241088 n 0000 ~ 14241241 n 0000 ~ 14241319 n 0000 ~ 14241400 n 0000 ~ 14241556 n 0000 ~ 14245405 n 0000 ~ 14246097 n 0000 | a usually malignant tumor arising from connective tissue (bone or muscle etc.); one of the four major types of cancer -14246710 26 n 03 adenocarcinoma 0 glandular_cancer 0 glandular_carcinoma 0 003 @ 14242337 n 0000 + 02603423 a 0101 ~ 14252067 n 0000 | malignant tumor originating in glandular epithelium -14246899 26 n 01 breast_cancer 0 001 @ 14242337 n 0000 | cancer of the breast; one of the most common malignancies in women in the US -14247035 26 n 02 carcinoma_in_situ 0 preinvasive_cancer 0 001 @ 14242337 n 0000 | a cluster of malignant cells that has not yet invaded the deeper epithelial tissue or spread to other parts of the body -14247239 26 n 01 colon_cancer 0 001 @ 14242337 n 0000 | a malignant tumor of the colon; early symptom is bloody stools -14247360 26 n 01 embryonal_carcinoma 0 001 @ 14242337 n 0000 | malignant neoplasm of the testis -14247458 26 n 02 endometrial_carcinoma 0 endometrial_cancer 0 001 @ 14242337 n 0000 | cancer of the uterine lining -14247575 26 n 02 hemangioma 0 haemangioma 0 002 @ 14235928 n 0000 ~ 14247743 n 0000 | benign angioma consisting of a mass of blood vessels; some appear as birthmarks -14247743 26 n 02 strawberry_hemangioma 0 strawberry_haemangioma 0 001 @ 14247575 n 0000 | a congenital bright red superficial vascular tumor resembling a strawberry; tends to decrease in size during childhood -14247954 26 n 01 lymphangioma 0 001 @ 14235928 n 0000 | benign angioma consisting of a mass of lymphatic vessels -14248069 26 n 03 spider_angioma 0 spider_nevus 0 vascular_spider 0 001 @ 14235928 n 0000 | a dilation of superficial capillaries with a central red dot from which blood vessels radiate -14248256 26 n 01 myeloma 0 002 @ 14239425 n 0000 ~ 14248422 n 0000 | a tumor of the bone marrow (usually malignant) composed of cells normally found in bone marrow -14248422 26 n 01 multiple_myeloma 0 001 @ 14248256 n 0000 | myeloma that develops in several places at the same time -14248541 26 n 01 myoma 0 003 @ 14236226 n 0000 ~ 14249384 n 0000 ~ 14249512 n 0000 | a benign tumor composed of muscle tissue -14248669 26 n 01 myxoma 0 001 @ 14236226 n 0000 | a benign tumor of connective tissue containing jellylike material -14248787 26 n 01 neurinoma 0 001 @ 14236226 n 0000 | tumor (usually benign) of the sheath surrounding a nerve -14248899 26 n 01 neuroblastoma 0 001 @ 14239425 n 0000 | malignant tumor containing embryonic nerve cells; usually metastasizes quickly -14249037 26 n 01 neuroepithelioma 0 001 @ 14239425 n 0000 | malignant tumor of the neuroepithelium -14249138 26 n 02 neurofibroma 0 neurilemoma 0 001 @ 14235200 n 0000 | tumor of the fibrous covering of a peripheral nerve -14249262 26 n 01 neuroma 0 002 @ 14235200 n 0000 + 02883344 a 0101 | any tumor derived from cells of the nervous system -14249384 26 n 01 leiomyoma 0 001 @ 14248541 n 0000 | benign tumor of smooth muscle (usually in the uterus or digestive tract) -14249512 26 n 01 rhabdomyoma 0 001 @ 14248541 n 0000 | benign rumor of striated muscle -14249601 26 n 01 osteoblastoma 0 001 @ 14236226 n 0000 | benign tumor of bone and fibrous tissue; occurs in the vertebrae or femur or tibia or arm bones (especially in young adults) -14249785 26 n 01 osteochondroma 0 001 @ 14236226 n 0000 | benign tumor containing both bone and cartilage; usually occurs near the end of a long bone -14249937 26 n 01 osteoma 0 001 @ 14236226 n 0000 | a slow growing benign tumor of consisting of bone tissue; usually on the skull or mandible -14250081 26 n 04 papilloma 0 villoma 0 papillary_tumor 0 papillary_tumour 0 001 @ 14236226 n 0000 | a benign epithelial tumor forming a rounded mass -14250232 26 n 02 pheochromocytoma 0 phaeochromocytoma 0 001 @ 14235200 n 0000 | a vascular tumor of the adrenal gland; hypersecretion of epinephrine results in intermittent or sustained hypertension -14250433 26 n 01 pinealoma 0 001 @ 14235200 n 0000 | tumor of the pineal gland -14250514 26 n 01 plasmacytoma 0 001 @ 14235200 n 0000 | neoplasm of plasma cells (usually in bone marrow) -14250622 26 n 02 psammoma 0 sand_tumor 0 001 @ 14235200 n 0000 | a tumor derived from fibrous tissue of the meninges or choroid plexus or certain other structures associated with the brain; characterized by sandlike particles -14250850 26 n 01 retinoblastoma 0 001 @ 14239425 n 0000 | malignant ocular tumor of retinal cells; usually occurs before the third year of life; composed of primitive small round retinal cells -14251045 26 n 01 teratoma 0 001 @ 14235200 n 0000 | a tumor consisting of a mixture of tissues not normally found at that site -14251174 26 n 04 hepatoma 0 malignant_hepatoma 0 hepatocarcinoma 0 hepatocellular_carcinoma 0 001 @ 14242337 n 0000 | carcinoma of the liver -14251317 26 n 01 lung_cancer 0 001 @ 14242337 n 0000 | carcinoma of the lungs; one of the commonest forms of cancer -14251435 26 n 01 mesothelioma 0 001 @ 14242337 n 0000 | a form of carcinoma of the mesothelium lining lungs or abdomen or heart; usually associated with exposure to asbestos dust -14251616 26 n 02 oat_cell_carcinoma 0 small_cell_carcinoma 0 001 @ 14242337 n 0000 | highly malignant carcinoma composed of small round or egg-shaped cells with little cytoplasm; lung cancers are frequently oat cell carcinomas -14251845 26 n 01 oral_cancer 0 001 @ 14242337 n 0000 | malignant neoplasm of the lips of mouth; most common in men over the age of 60 -14251981 26 n 01 pancreatic_cancer 0 001 @ 14242337 n 0000 | cancer of the pancreas -14252067 26 n 02 prostate_cancer 0 prostatic_adenocarcinoma 0 001 @ 14246710 n 0000 | cancer of the prostate gland -14252184 26 n 02 seminoma 0 testicular_cancer 0 001 @ 14242337 n 0000 | malignant tumor of the testis; usually occurring in older men -14252320 26 n 01 skin_cancer 0 004 @ 14242337 n 0000 ~ 14242788 n 0000 ~ 14252464 n 0000 ~ 14252564 n 0000 | a malignant neoplasm of the skin -14252464 26 n 01 epithelioma 0 001 @ 14252320 n 0000 | a malignant tumor of the epithelial tissue -14252564 26 n 02 melanoma 0 malignant_melanoma 0 001 @ 14252320 n 0000 | any of several malignant neoplasms (usually of the skin) consisting of melanocytes -14252722 26 n 01 trophoblastic_cancer 0 001 @ 14242337 n 0000 | malignant neoplasm of the uterus derived from the epithelium of the chorion -14252864 26 n 01 eye_disease 0 011 @ 14070360 n 0000 ~ 14254570 n 0000 ~ 14254768 n 0000 ~ 14254926 n 0000 ~ 14255064 n 0000 ~ 14255234 n 0000 ~ 14256585 n 0000 ~ 14256668 n 0000 ~ 14257014 n 0000 ~ 14257377 n 0000 ~ 14257563 n 0000 | any disease of the eye -14253124 26 n 01 animal_disease 0 049 @ 14070360 n 0000 ~ 02195257 n 0000 ~ 14260044 n 0000 ~ 14260349 n 0000 ~ 14261112 n 0000 ~ 14261846 n 0000 ~ 14262045 n 0000 ~ 14262153 n 0000 ~ 14262336 n 0000 ~ 14262419 n 0000 ~ 14262585 n 0000 ~ 14262740 n 0000 ~ 14262882 n 0000 ~ 14263089 n 0000 ~ 14263280 n 0000 ~ 14263440 n 0000 ~ 14263562 n 0000 ~ 14263753 n 0000 ~ 14263944 n 0000 ~ 14264042 n 0000 ~ 14264517 n 0000 ~ 14264664 n 0000 ~ 14264858 n 0000 ~ 14265006 n 0000 ~ 14265350 n 0000 ~ 14271920 n 0000 ~ 14272023 n 0000 ~ 14272141 n 0000 ~ 14272347 n 0000 ~ 14272421 n 0000 ~ 14272620 n 0000 ~ 14272915 n 0000 ~ 14273860 n 0000 ~ 14274068 n 0000 ~ 14274217 n 0000 ~ 14274451 n 0000 ~ 14274592 n 0000 ~ 14274701 n 0000 ~ 14274801 n 0000 ~ 14274905 n 0000 ~ 14274975 n 0000 ~ 14275077 n 0000 ~ 14275240 n 0000 ~ 14275405 n 0000 ~ 14275764 n 0000 ~ 14275978 n 0000 ~ 14276081 n 0000 ~ 14276201 n 0000 ~ 14276649 n 0000 | a disease that typically does not affect human beings -14254102 26 n 01 actinomycosis 0 005 @ 14276649 n 0000 + 02602951 a 0101 ~ 14254397 n 0000 ~ 14259616 n 0000 ~ 14259739 n 0000 | disease of cattle that can be transmitted to humans; results from infection with actinomycetes; characterized by hard swellings that exude pus through long sinuses -14254397 26 n 02 cervicofacial_actinomycosis 0 lumpy_jaw 0 001 @ 14254102 n 0000 | the commonest and least severe form of actinomycosis; affects the face and neck regions -14254570 26 n 01 cataract 0 004 @ 14252864 n 0000 ~ 14256014 n 0000 ~ 14256117 n 0000 ~ 14256227 n 0000 | an eye disease that involves the clouding or opacification of the natural lens of the eye -14254768 26 n 01 macular_edema 0 001 @ 14252864 n 0000 | an eye disease caused by a swelling of the macula resulting from leakage and accumulation of fluid -14254926 26 n 01 cystoid_macular_edema 0 002 @ 14316714 n 0000 @ 14252864 n 0000 | a specific pattern of swelling in the central retina -14255064 26 n 01 drusen 0 002 @ 14252864 n 0000 ;u 06295235 n 0000 | (plural) an eye disease resulting from small accumulations of hyaline bodies underneath the retina -14255234 26 n 01 glaucoma 0 004 @ 14252864 n 0000 ~ 14255536 n 0000 ~ 14255848 n 0000 ~ 14256346 n 0000 | an eye disease that damages the optic nerve and impairs vision (sometimes progressing to blindness); "contrary to popular belief, glaucoma is not always caused by elevated intraocular pressure" -14255536 26 n 03 acute_glaucoma 0 closed-angle_glaucoma 0 angle-closure_glaucoma 0 001 @ 14255234 n 0000 | glaucoma in which the iris blocks the outflow of aqueous humor; "closed-angle glaucoma can cause a rapid buildup of high intraocular pressure that results in permanent visual damage in a couple of days" -14255848 26 n 01 normal_tension_glaucoma 0 001 @ 14255234 n 0000 | glaucoma that results from damage to the optic nerve although the intraocular pressure is normal -14256014 26 n 01 cortical_cataract 0 001 @ 14254570 n 0000 | a cataract that affects the lens cortex -14256117 26 n 01 nuclear_cataract 0 001 @ 14254570 n 0000 | a cataract that affects the nucleus of the lens -14256227 26 n 01 posterior_subcapsular_cataract 0 001 @ 14254570 n 0000 | a cataract in the rear of the lens capsule -14256346 26 n 02 chronic_glaucoma 0 open-angle_glaucoma 0 001 @ 14255234 n 0000 | glaucoma caused by blockage of the canal of Schlemm; produces gradual loss of peripheral vision; "open-angle glaucoma is the most common type of glaucoma" -14256585 26 n 01 keratonosus 0 001 @ 14252864 n 0000 | any disease of the cornea -14256668 26 n 01 macular_degeneration 0 003 @ 14252864 n 0000 @ 13460299 n 0000 ~ 14256889 n 0000 | eye disease caused by degeneration of the cells of the macula lutea and results in blurred vision; can cause blindness -14256889 26 n 02 age-related_macular_degeneration 0 AMD 0 001 @ 14256668 n 0000 | macular degeneration that is age-related -14257014 26 n 01 retinopathy 0 002 @ 14252864 n 0000 ~ 14257147 n 0000 | a disease of the retina that can result in loss of vision -14257147 26 n 01 diabetic_retinopathy 0 001 @ 14257014 n 0000 | retinopathy involving damage to the small blood vessels in the retina; results from chronically high blood glucose levels in people with poorly controlled diabetes -14257377 26 n 01 trachoma 0 001 @ 14252864 n 0000 | a chronic contagious viral disease marked by inflammation of the conjunctiva and cornea of the eye and the formation of scar tissue -14257563 26 n 02 leukoma 0 leucoma 0 001 @ 14252864 n 0000 | eye disease consisting of an opaque white spot on the cornea -14257687 26 n 01 adenitis 0 001 @ 14336539 n 0000 | inflammation of a gland or lymph node -14257779 26 n 01 alveolitis 0 003 @ 14336539 n 0000 ~ 14259865 n 0000 ~ 14260774 n 0000 | inflammation of the alveoli in the lungs caused by inhaling dust; with repeated exposure the condition may become chronic -14257993 26 n 02 alveolitis 1 dry_socket 0 001 @ 14336539 n 0000 | inflammation in the socket of a tooth; sometimes occurs after a tooth is extracted and a blood clot fails to form -14258176 26 n 01 angiitis 0 002 @ 14336539 n 0000 @ 14071419 n 0000 | inflammation of a blood vessel or lymph duct -14258293 26 n 01 aortitis 0 002 @ 14336539 n 0000 ~ 14258391 n 0000 | inflammation of the aorta -14258391 26 n 01 rheumatic_aortitis 0 002 @ 14258293 n 0000 #p 14142768 n 0000 | aortitis occurring in rheumatic fever -14258512 26 n 01 appendicitis 0 001 @ 14336539 n 0000 | inflammation of the vermiform appendix -14258609 26 n 01 arteritis 0 005 @ 14336539 n 0000 ~ 14258762 n 0000 ~ 14258865 n 0000 ~ 14258957 n 0000 ~ 14259133 n 0000 | inflammation of an artery -14258762 26 n 01 periarteritis 0 001 @ 14258609 n 0000 | inflammation of the outer coat of an artery -14258865 26 n 01 polyarteritis 0 001 @ 14258609 n 0000 | inflammation of several arteries -14258957 26 n 02 Takayasu's_arteritis 0 pulseless_disease 0 001 @ 14258609 n 0000 | disorder characterized by the absence of a pulse in both arms and in the carotid arteries -14259133 26 n 01 temporal_arteritis 0 001 @ 14258609 n 0000 | inflammation of the temporal arteries; characterized by headaches and difficulty chewing and (sometimes) visual impairment -14259320 26 n 02 ophthalmia 0 ophthalmitis 0 002 @ 14341432 n 0000 ~ 14259431 n 0000 | severe conjunctivitis -14259431 26 n 01 ophthalmia_neonatorum 0 001 @ 14259320 n 0000 | ophthalmia in newborns; contracted while passing through the birth canal; usually prevented with silver nitrate drops -14259616 26 n 01 thoracic_actinomycosis 0 001 @ 14254102 n 0000 | a serious form of actinomycosis that affects the chest -14259739 26 n 01 abdominal_actinomycosis 0 001 @ 14254102 n 0000 | a serious form of actinomycosis that affects the abdomen -14259865 26 n 02 farmer's_lung 0 thresher's_lung 0 001 @ 14257779 n 0000 | alveolitis caused by an allergic reaction to fungal spores in the dust that is inhaled from moldy hay -14260044 26 n 01 anaplasmosis 0 001 @ 14253124 n 0000 | a disease of cattle that is transmitted by cattle ticks; similar to Texas fever -14260182 26 n 02 anthrax 0 splenic_fever 0 001 @ 14276649 n 0000 | a highly infectious animal disease (especially cattle and sheep); it can be transmitted to people -14260349 26 n 02 aspergillosis 2 brooder_pneumonia 0 001 @ 14253124 n 0000 | severe respiratory disease of birds that takes the form of an acute rapidly fatal pneumonia in young chickens and turkeys -14260550 26 n 01 aspiration_pneumonia 0 001 @ 14148231 n 0000 | inflammation of the lungs caused by inhaling or choking on vomitus; may occur during unconsciousness (anesthesia or drunkenness or seizure or cardiac arrest) -14260774 26 n 02 bagassosis 0 bagascosis 0 001 @ 14257779 n 0000 | alveolitis caused by inhaling bagasse (sugarcane dust) -14260898 26 n 01 balanitis 0 001 @ 14336539 n 0000 | inflammation of the head of the penis -14260991 26 n 01 balanoposthitis 0 001 @ 14336539 n 0000 | inflammation of both the head of the penis and the foreskin -14261112 26 n 01 bighead 0 001 @ 14253124 n 0000 | any of various diseases of animals characterized by edema of the head and neck -14261244 26 n 01 blepharitis 0 001 @ 14336539 n 0000 | inflammation of the eyelids characterized by redness and swelling and dried crusts -14261384 26 n 01 bursitis 0 002 @ 14336539 n 0000 ~ 14188568 n 0000 | inflammation of a bursa; frequently in the shoulder -14261508 26 n 03 brucellosis 0 contagious_abortion 0 Bang's_disease 0 001 @ 14276649 n 0000 | an infectious disease of domestic animals often resulting in spontaneous abortion; transmittable to human beings -14261717 26 n 01 bluetongue 0 001 @ 14262419 n 0000 | a viral disease of sheep and cattle that is transmitted by biting midges -14261846 26 n 03 bovine_spongiform_encephalitis 0 BSE 0 mad_cow_disease 0 001 @ 14253124 n 0000 | a fatal disease of cattle that affects the central nervous system; causes staggering and agitation -14262045 26 n 01 bull_nose 0 001 @ 14253124 n 0000 | a disease of pigs resulting in swelling of the snout -14262153 26 n 01 camelpox 0 001 @ 14253124 n 0000 | a viral disease of camels closely related to smallpox; "with a little genetic engineering camelpox could be used as a bioweapon" -14262336 26 n 02 canine_chorea 0 chorea 1 001 @ 14253124 n 0000 | chorea in dogs -14262419 26 n 01 catarrhal_fever 0 002 @ 14253124 n 0000 ~ 14261717 n 0000 | any of several disease of livestock marked by fever and edema of the respiratory tract -14262585 26 n 01 chronic_wasting_disease 0 001 @ 14253124 n 0000 | a wildlife disease (akin to bovine spongiform encephalitis) that affects deer and elk -14262740 26 n 01 costiasis 0 001 @ 14253124 n 0000 | a fatal disease of freshwater fish caused by a flagellated protozoan invading the skin -14262882 26 n 02 cowpox 0 vaccinia 0 002 @ 14253124 n 0000 @ 14124232 n 0000 | a viral disease of cattle causing a mild skin disease affecting the udder; formerly used to inoculate humans against smallpox -14263089 26 n 01 creeps 0 001 @ 14253124 n 0000 | a disease of cattle and sheep attributed to a dietary deficiency; characterized by anemia and softening of the bones and a slow stiff gait -14263280 26 n 02 hemorrhagic_septicemia 0 pasteurellosis 0 001 @ 14253124 n 0000 | an acute infectious disease characterized by pneumonia and blood infection -14263440 26 n 02 fistulous_withers 0 fistula 0 001 @ 14253124 n 0000 | a chronic inflammation of the withers of a horse -14263562 26 n 01 fowl_cholera 0 002 @ 14253124 n 0000 @ 14189837 n 0000 | an acute diarrheal disease (especially of chickens) caused by the microorganism that causes hemorrhagic septicemia -14263753 26 n 01 fowl_pest 0 001 @ 14253124 n 0000 | either of two acute viral diseases of domestic fowl; characterized by refusal to eat and high temperature and discoloration of the comb -14263944 26 n 01 hog_cholera 0 001 @ 14253124 n 0000 | highly infectious virus disease of swine -14264042 26 n 01 distemper 0 004 @ 14253124 n 0000 + 01683422 v 0101 ~ 14264203 n 0000 ~ 14264352 n 0000 | any of various infectious viral diseases of animals -14264203 26 n 01 canine_distemper 0 001 @ 14264042 n 0000 | a viral disease of young dogs characterized by high fever and respiratory inflammation -14264352 26 n 02 equine_distemper 0 strangles 0 001 @ 14264042 n 0000 | an acute bacterial disease of horses characterized by inflammation of the mucous membranes -14264517 26 n 01 enterotoxemia 0 001 @ 14253124 n 0000 | a disease of cattle and sheep that is attributed to toxins absorbed from the intestines -14264664 26 n 02 foot-and-mouth_disease 0 hoof-and-mouth_disease 0 001 @ 14253124 n 0000 | acute contagious disease of cloven-footed animals marked by ulcers in the mouth and around the hoofs -14264858 26 n 01 foot_rot 0 001 @ 14253124 n 0000 | contagious degenerative infection of the feet of hoofed animals (especially cattle and sheep) -14265006 26 n 04 black_disease 0 sheep_rot 0 liver_rot 0 distomatosis 0 001 @ 14253124 n 0000 | a disease of the liver (especially in sheep and cattle) caused by liver flukes and their by-products -14265205 26 n 01 glanders 0 001 @ 14276649 n 0000 | a destructive and contagious bacterial disease of horses that can be transmitted to humans -14265350 26 n 02 heaves 0 broken_wind 0 001 @ 14253124 n 0000 | a chronic emphysema of the horse that causes difficult expiration and heaving of the flanks -14265508 26 n 02 Lyme_disease 0 Lyme_arthritis 0 001 @ 14276649 n 0000 | an acute inflammatory disease characterized by a rash with joint swelling and fever; caused by bacteria carried by the bite of a deer tick -14265722 26 n 03 Marburg_disease 0 Marburg_hemorrhagic_fever 0 green_monkey_disease 0 001 @ 14177423 n 0000 | a viral disease of green monkeys caused by the Marburg virus; when transmitted to humans it causes serious or fatal illness -14265958 26 n 02 albuminuria 0 proteinuria 0 002 @ 14299637 n 0000 + 02610486 a 0101 | the presence of excessive protein (chiefly albumin but also globulin) in the urine; usually a symptom of kidney disorder -14266168 26 n 01 aminoaciduria 0 001 @ 14299637 n 0000 | abnormal presence of amino acids in the urine; usually a symptom of metabolic defects -14266313 26 n 01 ammoniuria 0 001 @ 14299637 n 0000 | excessive ammonia in the urine -14266400 26 n 02 hematocyturia 0 haematocyturia 0 001 @ 14314320 n 0000 | the presence of red blood cells in the urine -14266521 26 n 01 Jacquemier's_sign 0 001 @ 14299637 n 0000 | a purplish discoloration of the mucous membrane of the vagina that occurs early in pregnancy -14266677 26 n 01 Kayser-Fleischer_ring 0 001 @ 14299637 n 0000 | a pigmented ring at the outer edge of the cornea of the eye; a symptom of Wilson's disease -14266835 26 n 01 keratomalacia 0 001 @ 14299637 n 0000 | softening and drying and ulceration of the cornea resulting from vitamin A deficiency; symptom of cystic fibrosis or sprue -14267017 26 n 01 Kernig's_sign 0 001 @ 14299637 n 0000 | symptom of meningitis; patient cannot extend the leg at the knee when the thigh is flexed because of stiffness in the hamstrings -14267205 26 n 03 ketonemia 0 ketosis 0 acetonemia 0 001 @ 14299637 n 0000 | an abnormal increase of ketone bodies in the blood as in diabetes mellitus -14267358 26 n 01 Koplik's_spots 0 001 @ 14299637 n 0000 | small red spots with white centers found on the mucous membranes of the mouth and tongue; symptom of measles that appears one or two days before the measles rash appears -14267588 26 n 01 fructosuria 0 001 @ 14267841 n 0000 | the presence of levulose is the urine; "fructosuria is a harmless condition" -14267722 26 n 01 glucosuria 0 001 @ 14267841 n 0000 | the presence of abnormally high levels of glucose in the urine -14267841 26 n 01 glycosuria 0 003 @ 14299637 n 0000 ~ 14267588 n 0000 ~ 14267722 n 0000 | the presence of abnormally high levels of sugar in the urine -14267994 26 n 01 lymphuria 0 001 @ 14299637 n 0000 | the presence of lymph in the urine -14268084 26 n 01 monocytosis 0 001 @ 14299637 n 0000 | increase in the number of monocytes in the blood; symptom of monocytic leukemia -14268221 26 n 01 thrombocytosis 0 001 @ 14299637 n 0000 | increase in the number of platelets in the blood which tends to cause clots to form; associated with many neoplasms and chronic infections and other diseases -14268439 26 n 01 ochronosis 0 001 @ 14299637 n 0000 | an accumulation of dark pigment in cartilage and other connective tissue; usually a symptom of alkaptonuria or phenol poisoning -14268623 26 n 02 hypercalcemia 0 hypercalcaemia 0 002 @ 14299637 n 0000 ! 14268871 n 0101 | the presence of abnormally high levels of calcium in the blood; usually the result of excessive bone resorption in hyperparathyroidism or Paget's disease -14268871 26 n 02 hypocalcemia 0 hypocalcaemia 0 002 @ 14299637 n 0000 ! 14268623 n 0101 | abnormally low level of calcium in the blood; associated with hypoparathyroidism or kidney malfunction or vitamin D deficiency -14269090 26 n 02 hypercalciuria 0 hypercalcinuria 0 001 @ 14299637 n 0000 | the presence of abnormally high levels of calcium in the urine; usually the result of excessive bone resorption in hyperparathyroidism or osteoporosis -14269319 26 n 02 hypercholesterolemia 0 hypercholesteremia 0 002 @ 14299637 n 0000 ~ 14466974 n 0000 | the presence of an abnormal amount of cholesterol in the cells and plasma of the blood; associated with the risk of atherosclerosis -14269556 26 n 01 hyperkalemia 0 002 @ 14299637 n 0000 ! 14269772 n 0101 | higher than normal levels of potassium in the circulating blood; associated with kidney failure or sometimes with the use of diuretic drugs -14269772 26 n 01 hypokalemia 0 002 @ 14299637 n 0000 ! 14269556 n 0101 | abnormally low level of potassium in the circulating blood leading to weakness and heart abnormalities; associated with adrenal tumors or starvation or taking diuretics -14270016 26 n 01 kalemia 0 001 @ 00024720 n 0000 | the presence of excess potassium in the circulating blood -14270127 26 n 02 kaliuresis 0 kaluresis 0 001 @ 14299637 n 0000 | the presence of excess potassium in the urine -14270241 26 n 01 natriuresis 0 002 @ 14299637 n 0000 + 02767596 a 0101 | the presence of abnormally large amounts of sodium in the urine -14270380 26 n 01 hyperlipoproteinemia 0 002 @ 14084502 n 0000 ~ 14158594 n 0000 | any of various disorders of lipoprotein and cholesterol metabolism that result in high levels of lipoprotein and cholesterol in the circulating blood -14270614 26 n 01 hypolipoproteinemia 0 002 @ 14084502 n 0000 ~ 14158812 n 0000 | any of various disorders of lipoprotein and cholesterol metabolism that result in low levels of lipoprotein and cholesterol in the circulating blood -14270846 26 n 01 hypoproteinemia 0 001 @ 14299637 n 0000 | abnormally low level of protein in the blood; can indicate inadequate diet or intestinal or renal disorders -14271015 26 n 01 hypernatremia 0 002 @ 14299637 n 0000 ! 14271173 n 0101 | excessive amounts of sodium in the blood; possibly indicating diabetes insipidus -14271173 26 n 01 hyponatremia 0 002 @ 14299637 n 0000 ! 14271015 n 0101 | abnormally low level of sodium in the blood; associated with dehydration -14271322 26 n 01 hypersplenism 0 001 @ 14299637 n 0000 | enlarged spleen and a decrease in one or more types of blood cells; associated with many disorders -14271480 26 n 03 ketonuria 0 ketoaciduria 0 acetonuria 0 002 @ 14299637 n 0000 ~ 14159887 n 0000 | excessive amounts of ketone bodies in the urine as in diabetes mellitus or starvation -14271667 26 n 04 rabies 0 hydrophobia 0 lyssa 0 madness 1 001 @ 14276649 n 0000 | an acute viral disease of the nervous system of warm-blooded animals (usually transmitted by the bite of a rabid animal); rabies is fatal if the virus reaches the brain -14271920 26 n 01 red_water 0 001 @ 14253124 n 0000 | a disease of cattle; characterized by hematuria -14272023 26 n 01 rhinotracheitis 0 001 @ 14253124 n 0000 | a respiratory infection of the nose and throat in cattle -14272141 26 n 02 rinderpest 0 cattle_plague 0 001 @ 14253124 n 0000 | an acute infectious viral disease of cattle (usually fatal); characterized by fever and diarrhea and inflammation of mucous membranes -14272347 26 n 01 scours 0 001 @ 14253124 n 0000 | diarrhea in livestock -14272421 26 n 01 scrapie 0 001 @ 14253124 n 0000 | a fatal disease of sheep characterized by chronic itching and loss of muscular control and progressive degeneration of the central nervous system -14272620 26 n 02 shipping_fever 0 shipping_pneumonia 0 002 @ 14253124 n 0000 @ 14189837 n 0000 | a deadly form of septicemia in cattle and sheep; involves high fever and pneumonia; contracted under conditions of exposure or exhaustion (as often happens when the animals are shipped to market) -14272915 26 n 01 spavin 0 004 @ 14253124 n 0000 ~ 14273084 n 0000 ~ 14273183 n 0000 ~ 14273277 n 0000 | a swelling of the hock joint of a horse; resulting in lameness -14273084 26 n 01 blood_spavin 0 001 @ 14272915 n 0000 | spavin caused by distension of the veins -14273183 26 n 01 bog_spavin 0 001 @ 14272915 n 0000 | spavin caused by collection of fluids -14273277 26 n 01 bone_spavin 0 001 @ 14272915 n 0000 | spavin caused by a bony growth -14273365 26 n 02 swamp_fever 0 leptospirosis 0 003 @ 14276649 n 0000 ~ 14273601 n 0000 ~ 14273753 n 0000 | an infectious disease cause by leptospira and transmitted to humans from domestic animals; characterized by jaundice and fever -14273601 26 n 01 canicola_fever 0 001 @ 14273365 n 0000 | an acute feverish disease in people and in dogs marked by gastroenteritis and mild jaundice -14273753 26 n 01 Weil's_disease 0 001 @ 14273365 n 0000 | a severe form of leptospirosis in human beings -14273860 26 n 02 loco_disease 0 locoism 0 001 @ 14253124 n 0000 | a disease of livestock caused by locoweed poisoning; characterized by weakness and lack of coordination and trembling and partial paralysis -14274068 26 n 01 looping_ill 0 001 @ 14253124 n 0000 | an acute viral disease of the nervous system in sheep; can be transmitted by Ixodes ricinus -14274217 26 n 01 mange 0 003 @ 14253124 n 0000 + 02582269 a 0101 + 02582269 a 0102 | a persistent and contagious disease of the skin causing inflammation and itching and loss of hair; affects domestic animals (and sometimes people) -14274451 26 n 02 moon_blindness 0 mooneye 0 001 @ 14253124 n 0000 | recurrent eye inflammation in horses; sometimes resulting in blindness -14274592 26 n 01 murrain 0 001 @ 14253124 n 0000 | any disease of domestic animals that resembles a plague -14274701 26 n 01 myxomatosis 0 001 @ 14253124 n 0000 | a viral disease (usually fatal) of rabbits -14274801 26 n 01 Newcastle_disease 0 001 @ 14253124 n 0000 | disease of domestic fowl and other birds -14274905 26 n 01 pip 0 001 @ 14253124 n 0000 | a disease of poultry -14274975 26 n 02 psittacosis 0 parrot_disease 0 001 @ 14253124 n 0000 | infectious disease of birds -14275077 26 n 03 pullorum_disease 0 bacillary_white_diarrhea 0 bacillary_white_diarrhoea 0 001 @ 14253124 n 0000 | a serious bacterial disease of young chickens -14275240 26 n 02 saddle_sore 1 gall 1 002 @ 14253124 n 0000 + 02119659 v 0202 | an open sore on the back of a horse caused by ill-fitting or badly adjusted saddle -14275405 26 n 01 sand_crack 0 003 @ 14253124 n 0000 ~ 14275560 n 0000 ~ 14275661 n 0000 | a fissure in the wall of a horse's hoof often causing lameness -14275560 26 n 01 toe_crack 0 001 @ 14275405 n 0000 | a crack on the forepart of a horse's hindfoot -14275661 26 n 01 quarter_crack 0 001 @ 14275405 n 0000 | a crack on the inside of a horse's forefoot -14275764 26 n 02 staggers 0 blind_staggers 0 001 @ 14253124 n 0000 | a disease of the central nervous system affecting especially horses and cattle; characterized by an unsteady swaying gait and frequent falling -14275978 26 n 01 sweating_sickness 2 001 @ 14253124 n 0000 | a disease of cattle (especially calves) -14276081 26 n 01 Texas_fever 0 001 @ 14253124 n 0000 | an infectious disease of cattle transmitted by the cattle tick -14276201 26 n 02 trembles 0 milk_sickness 1 001 @ 14253124 n 0000 | disease of livestock and especially cattle poisoned by eating certain kinds of snakeroot -14276360 26 n 05 tularemia 0 tularaemia 0 rabbit_fever 0 deer_fly_fever 0 yatobyo 0 002 @ 14276649 n 0000 %p 14184067 n 0000 | a highly infectious disease of rodents (especially rabbits and squirrels) and sometimes transmitted to humans by ticks or flies or by handling infected animals -14276649 26 n 02 zoonosis 0 zoonotic_disease 0 010 @ 14253124 n 0000 + 03145956 a 0101 ~ 14254102 n 0000 ~ 14260182 n 0000 ~ 14261508 n 0000 ~ 14265205 n 0000 ~ 14265508 n 0000 ~ 14271667 n 0000 ~ 14273365 n 0000 ~ 14276360 n 0000 | an animal disease that can be transmitted to humans -14276936 26 n 01 plant_disease 0 036 @ 14070360 n 0000 ~ 14215331 n 0000 ~ 14218057 n 0000 ~ 14277655 n 0000 ~ 14278102 n 0000 ~ 14278219 n 0000 ~ 14278360 n 0000 ~ 14278500 n 0000 ~ 14278642 n 0000 ~ 14278773 n 0000 ~ 14279099 n 0000 ~ 14279417 n 0000 ~ 14279543 n 0000 ~ 14279632 n 0000 ~ 14280011 n 0000 ~ 14280151 n 0000 ~ 14280298 n 0000 ~ 14280504 n 0000 ~ 14280639 n 0000 ~ 14280775 n 0000 ~ 14281397 n 0000 ~ 14281678 n 0000 ~ 14281851 n 0000 ~ 14281992 n 0000 ~ 14282107 n 0000 ~ 14282384 n 0000 ~ 14282524 n 0000 ~ 14282698 n 0000 ~ 14282796 n 0000 ~ 14282890 n 0000 ~ 14283097 n 0000 ~ 14283178 n 0000 ~ 14283632 n 0000 ~ 14284450 n 0000 ~ 14284688 n 0000 ~ 14285113 n 0000 | a disease that affects plants -14277655 26 n 01 rust 2 002 @ 14276936 n 0000 ~ 14277833 n 0000 | a plant disease that produces a reddish-brown discoloration of leaves and stems; caused by various rust fungi -14277833 26 n 03 blister_rust 0 white-pine_rust 0 white_pine_blister_rust 0 001 @ 14277655 n 0000 | any of several diseases of pines caused by rust fungi of the genus Cronartium and marked by destructive invasion of bark and sapwood and producing blisters externally -14278102 26 n 01 blackheart 0 001 @ 14276936 n 0000 | any of various diseases in which the central tissues blacken -14278219 26 n 01 black_knot 0 001 @ 14276936 n 0000 | disease of plum and cherry trees characterized by black excrescences on the branches -14278360 26 n 01 black_rot 0 001 @ 14276936 n 0000 | a fungous disease causing darkening and decay of the leaves of fruits and vegetables -14278500 26 n 01 black_spot 0 001 @ 14276936 n 0000 | any of several fungous diseases of plants that produce small black spots on the plant -14278642 26 n 01 bottom_rot 0 001 @ 14276936 n 0000 | fungous disease of lettuce that first rots lower leaves and spreads upward -14278773 26 n 01 brown_rot 0 003 @ 14276936 n 0000 ~ 14278953 n 0000 ~ 14279235 n 0000 | any of certain fungous diseases of plants characterized by browning and decay of tissues -14278953 26 n 02 brown_rot_gummosis 0 gummosis 2 001 @ 14278773 n 0000 | disease of citrus trees caused by the fungus Phytophthora citrophthora -14279099 26 n 01 gummosis 1 001 @ 14276936 n 0000 | pathological production of gummy exudates in citrus and various stone-fruit trees -14279235 26 n 03 ring_rot 2 ring_disease 0 tobacco_wilt 0 001 @ 14278773 n 0000 | disease of tomatoes and potatoes and tobacco etc caused by the bacterium Pseudomonas solanacearum -14279417 26 n 01 canker 1 001 @ 14276936 n 0000 | a fungal disease of woody plants that causes localized damage to the bark -14279543 26 n 01 cotton_ball 0 001 @ 14276936 n 0000 | a fungus disease of cranberries -14279632 26 n 01 crown_gall 0 002 @ 14276936 n 0000 ~ 14279845 n 0000 | a bacterial disease of plants (especially pome and stone fruits and grapes and roses) which forms excrescences on the stem near the ground -14279845 26 n 01 hairy_root 0 001 @ 14279632 n 0000 | a phase of crown gall (especially in apples) during which there is abnormal development of fine fibrous roots -14280011 26 n 01 crown_wart 0 001 @ 14276936 n 0000 | a fungous disease of alfalfa which forms white excrescences at the base of the stem -14280151 26 n 01 damping_off 0 001 @ 14276936 n 0000 | a plant disease caused by a fungus; diseased condition of seedlings in excessive moisture -14280298 26 n 01 dieback 0 002 @ 14276936 n 0000 + 00242026 v 0101 | a disease of plants characterized by the gradual dying of the young shoots starting at the tips and progressing to the larger branches -14280504 26 n 01 dry_rot 0 001 @ 14276936 n 0000 | a crumbling and drying of timber or bulbs or potatoes or fruit caused by a fungus -14280639 26 n 01 heartrot 0 001 @ 14276936 n 0000 | any plant disease in which the central part of a plant rots (especially in trees) -14280775 26 n 01 mosaic 0 003 @ 14276936 n 0000 ~ 14280986 n 0000 ~ 14281086 n 0000 | viral disease in solanaceous plants (tomatoes, potatoes, tobacco) resulting in mottling and often shriveling of the leaves -14280986 26 n 01 potato_mosaic 0 001 @ 14280775 n 0000 | a disease of the leaves of potato plants -14281086 26 n 01 tobacco_mosaic 0 001 @ 14280775 n 0000 | a plant disease causing discoloration of the leaves of tobacco plants -14281216 26 n 01 tomato_streak 0 001 @ 14285113 n 0000 | disease of a wide range of plants (tomatoes, potatoes, peas) resulting from a mixed infection of potato and tomato mosaic -14281397 26 n 01 rhizoctinia_disease 0 002 @ 14276936 n 0000 ~ 14281549 n 0000 | disease caused by rhizoctinia or fungi of Pellicularia and Corticium -14281549 26 n 04 little_potato 0 rosette 0 russet_scab 0 stem_canker 0 001 @ 14281397 n 0000 | rhizoctinia disease of potatoes -14281678 26 n 01 pink_disease 0 001 @ 14276936 n 0000 | serious bark disease of many tropical crop trees (coffee, citrus, rubber); branches have a covering of pink hyphae -14281851 26 n 01 potato_wart 0 001 @ 14276936 n 0000 | fungous disease causing dark warty spongy excrescences in the eyes of potato tubers -14281992 26 n 01 root_rot 0 001 @ 14276936 n 0000 | disease characterized by root decay; caused by various fungi -14282107 26 n 01 scorch 1 002 @ 14276936 n 0000 ~ 14282258 n 0000 | a plant disease that produces a browning or scorched appearance of plant tissues -14282258 26 n 01 leaf_scorch 0 001 @ 14282107 n 0000 | plant disease causing a burned or scorched appearance of the foliage -14282384 26 n 01 sweet-potato_ring_rot 0 001 @ 14276936 n 0000 | disease of sweet potatoes in which roots are girdled by rings of dry rot -14282524 26 n 02 sclerotium_disease 0 sclerotium_rot 0 001 @ 14276936 n 0000 | plant disease cause by fungi of the genus Sclerotium; also one in which sclerotia are formed -14282698 26 n 01 Dutch_elm_disease 0 001 @ 14276936 n 0000 | disease of elms caused by a fungus -14282796 26 n 01 ergot 0 001 @ 14276936 n 0000 | a plant disease caused by the ergot fungus -14282890 26 n 01 foot_rot 1 001 @ 14276936 n 0000 | plant disease in which the stem or trunk rots at the base -14283002 26 n 01 granville_wilt 0 001 @ 14283178 n 0000 | a bacterial wilt of tobacco plants -14283097 26 n 01 pinkroot 0 001 @ 14276936 n 0000 | a fungal disease of onions -14283178 26 n 02 wilt 0 wilt_disease 0 005 @ 14276936 n 0000 + 00469637 v 0101 ~ 14283002 n 0000 ~ 14283423 n 0000 ~ 14283525 n 0000 | any plant disease characterized by drooping and shriveling; usually caused by parasites attacking the roots -14283423 26 n 01 fusarium_wilt 0 001 @ 14283178 n 0000 | wilt caused by fungi of the genus Fusarium -14283525 26 n 01 verticilliosis 0 001 @ 14283178 n 0000 | wilt caused by fungi of the genus Verticillium -14283632 26 n 01 smut 0 007 @ 14276936 n 0000 + 00089154 v 0101 + 00210481 v 0101 ~ 14283909 n 0000 ~ 14284026 n 0000 ~ 14284193 n 0000 ~ 14284309 n 0000 | destructive diseases of plants (especially cereal grasses) caused by fungi that produce black powdery masses of spores -14283909 26 n 01 loose_smut 0 001 @ 14283632 n 0000 | disease of grains; the entire head is a dusty mass of spores -14284026 26 n 02 bunt 0 stinking_smut 0 001 @ 14283632 n 0000 | disease of wheat characterized by replacement of the grains with greasy masses of smelly smut spores -14284193 26 n 01 flag_smut 0 001 @ 14283632 n 0000 | smut affecting leaves and stems of cereals and other grasses -14284309 26 n 02 green_smut 0 false_smut 0 001 @ 14283632 n 0000 | disease of rice; grains covered by a green powder consisting of conidia -14284450 26 n 01 soft_rot 0 002 @ 14276936 n 0000 ~ 14284581 n 0000 | mushy or slimy decay of plants caused by bacteria or fungi -14284581 26 n 01 leak 0 001 @ 14284450 n 0000 | soft watery rot in fruits and vegetables caused by fungi -14284688 26 n 01 yellow_dwarf 0 003 @ 14276936 n 0000 ~ 14284876 n 0000 ~ 14285008 n 0000 | any of several virus diseases of plants characterized by stunting and yellowing of the leaves -14284876 26 n 02 yellow_dwarf_of_potato 0 potato_yellow_dwarf 0 001 @ 14284688 n 0000 | the yellow dwarf disease of potato plants -14285008 26 n 01 onion_yellow_dwarf 0 001 @ 14284688 n 0000 | the yellow dwarf disease of onion plants -14285113 26 n 01 yellow_spot 0 002 @ 14276936 n 0000 ~ 14281216 n 0000 | any of several fungous or viral diseases characterized by yellow spotting on the leaves -14285276 26 n 02 trauma 1 psychic_trauma 0 004 @ 14373582 n 0000 + 01712940 a 0101 + 00090186 v 0101 ~ 14285461 n 0000 | an emotional wound or shock often having long-lasting effects -14285461 26 n 01 birth_trauma 1 001 @ 14285276 n 0000 | emotional injury inflicted on an infant by events incident to birth that is alleged to appear in symbolic form in patients with mental illness -14285662 26 n 04 injury 0 hurt 0 harm 0 trauma 2 030 @ 14052046 n 0000 + 02944872 a 0401 + 00090186 v 0401 + 00090186 v 0402 + 02121511 v 0201 + 00065070 v 0202 + 01161059 a 0103 + 00069879 v 0101 ~ 14085220 n 0000 ~ 14287995 n 0000 ~ 14288107 n 0000 ~ 14288235 n 0000 ~ 14288725 n 0000 ~ 14288871 n 0000 ~ 14289504 n 0000 ~ 14289590 n 0000 ~ 14291561 n 0000 ~ 14291823 n 0000 ~ 14292090 n 0000 ~ 14294678 n 0000 ~ 14294861 n 0000 ~ 14294964 n 0000 ~ 14295140 n 0000 ~ 14295248 n 0000 ~ 14297870 n 0000 ~ 14298102 n 0000 ~ 14298420 n 0000 ~ 14298620 n 0000 ~ 14298815 n 0000 ~ 14299070 n 0000 | any physical damage to the body caused by violence or accident or fracture etc. -14286339 26 n 01 raw_wound 0 001 @ 14298815 n 0000 | a wound that exposes subcutaneous tissue -14286435 26 n 01 stigmata 0 001 @ 14298815 n 0000 | marks resembling the wounds on the crucified body of Christ -14286549 26 n 04 abrasion 0 scratch 0 scrape 0 excoriation 0 012 @ 14298815 n 0000 + 01253808 v 0402 + 01309478 v 0302 + 01309143 v 0302 + 01308160 v 0301 + 02239289 a 0202 + 02119874 v 0202 + 01309143 v 0201 + 01250908 v 0205 + 01254013 v 0101 ~ 14286885 n 0000 ~ 14286995 n 0000 | an abraded area where the skin is torn or worn off -14286885 26 n 01 graze 0 003 @ 14286549 n 0000 + 01608508 v 0101 + 01240514 v 0101 | a superficial abrasion -14286995 26 n 01 rope_burn 0 001 @ 14286549 n 0000 | abrasion (usually on the hands) caused by friction from a rope -14287113 26 n 04 cut 0 gash 0 slash 0 slice 0 005 @ 14298815 n 0000 + 01559055 v 0402 + 01322509 v 0301 + 01322675 v 0301 + 01322509 v 0202 | a wound made by cutting; "he put a bandage over the cut" -14287314 26 n 01 laceration 0 002 @ 14298815 n 0000 + 01559340 v 0101 | a torn ragged wound -14287408 26 n 01 bite 0 004 @ 14298815 n 0000 + 01445932 v 0101 ~ 14287567 n 0000 ~ 14287647 n 0000 | a wound resulting from biting by an animal or a person -14287567 26 n 01 dog_bite 0 001 @ 14287408 n 0000 | a bite inflicted by a dog -14287647 26 n 01 snakebite 0 001 @ 14287408 n 0000 | a bite inflicted by a (venomous) snake -14287741 26 n 01 bee_sting 0 001 @ 14297870 n 0000 | a sting inflicted by a bee -14287823 26 n 01 flea_bite 0 001 @ 14297870 n 0000 | sting inflicted by a flea -14287904 26 n 01 mosquito_bite 0 001 @ 14297870 n 0000 | a sting inflicted by a mosquito -14287995 26 n 01 birth_trauma 0 001 @ 14285662 n 0000 | physical injury to an infant during the birth process -14288107 26 n 01 blast_trauma 0 001 @ 14285662 n 0000 | injury caused the explosion of a bomb (especially in enclosed spaces) -14288235 26 n 03 bleeding 0 hemorrhage 0 haemorrhage 0 012 @ 14285662 n 0000 + 02740223 a 0302 + 02740223 a 0201 + 00074834 v 0203 + 00074834 v 0102 ~ 14288561 n 0000 ~ 14370391 n 0000 ~ 14370526 n 0000 ~ 14370726 n 0000 ~ 14370825 n 0000 ~ 14370992 n 0000 ~ 14371082 n 0000 | the flow of blood from a ruptured blood vessel -14288561 26 n 02 hemorrhagic_stroke 0 haemorrhagic_stroke 0 002 @ 14082303 n 0000 @ 14288235 n 0000 | stroke caused by the rupture of a blood vessel in the brain -14288725 26 n 01 blunt_trauma 0 001 @ 14285662 n 0000 | injury incurred when the human body hits or is hit by a large outside object (as a car) -14288871 26 n 02 bruise 0 contusion 0 005 @ 14285662 n 0000 + 01492725 v 0101 ~ 14289079 n 0000 ~ 14289193 n 0000 ~ 14289387 n 0000 | an injury that doesn't break the skin but results in some discoloration -14289079 26 n 01 ecchymosis 0 001 @ 14288871 n 0000 | the purple or black-and-blue area resulting from a bruise -14289193 26 n 01 petechia 0 001 @ 14288871 n 0000 | a minute red or purple spot on the surface of the skin as the result of tiny hemorrhages of blood vessels in the skin (as in typhoid fever) -14289387 26 n 03 shiner 0 black_eye 0 mouse 0 001 @ 14288871 n 0000 | a swollen bruise caused by a blow to the eye -14289504 26 n 01 bump 0 001 @ 14285662 n 0000 | a lump on the body caused by a blow -14289590 26 n 01 burn 1 008 @ 14285662 n 0000 + 00373766 v 0103 ~ 14289829 n 0000 ~ 14289942 n 0000 ~ 14290107 n 0000 ~ 14291173 n 0000 ~ 14291295 n 0000 ~ 14291435 n 0000 | an injury caused by exposure to heat or chemicals or radiation -14289829 26 n 01 electric_burn 0 001 @ 14289590 n 0000 | a burn caused by heat produced by an electric current -14289942 26 n 02 scorch 0 singe 0 006 @ 14289590 n 0000 + 00378521 v 0201 + 00379440 v 0104 + 00582527 v 0101 + 00582743 v 0101 + 00377715 v 0102 | a surface burn -14290107 26 n 01 scald 0 002 @ 14289590 n 0000 + 00196758 v 0101 | a burn cause by hot liquid or steam -14290212 26 n 01 sedation 0 001 @ 14034177 n 0000 | a state of reduced excitement or anxiety that is induced by the administrative of a sedative agent -14290365 26 n 02 sunburn 0 erythema_solare 0 003 @ 14226303 n 0000 @ 14291173 n 0000 + 00104299 v 0101 | redness of the skin caused by exposure to the rays of the sun -14290534 26 n 04 tan 0 suntan 0 sunburn 1 burn 2 005 @ 14290881 n 0000 + 00104299 v 0402 + 00104299 v 0301 + 00104026 v 0201 + 00103875 v 0101 | a browning of the skin resulting from exposure to the rays of the sun -14290751 26 n 01 windburn 0 001 @ 14226303 n 0000 | redness and irritation of the skin caused by exposure to high-velocity wind -14290881 26 n 01 hyperpigmentation 0 003 @ 14034177 n 0000 ! 14291010 n 0101 ~ 14290534 n 0000 | unusual darkening of the skin -14291010 26 n 01 hypopigmentation 0 005 @ 14034177 n 0000 #p 14229248 n 0000 #p 14232945 n 0000 ! 14290881 n 0101 ~ 14152279 n 0000 | unusual lack of skin color -14291173 26 n 01 first-degree_burn 0 002 @ 14289590 n 0000 ~ 14290365 n 0000 | burn causing redness of the skin surface -14291295 26 n 01 second-degree_burn 0 001 @ 14289590 n 0000 | burn causing blisters on the skin and superficial destruction of the dermis -14291435 26 n 01 third-degree_burn 0 001 @ 14289590 n 0000 | burn characterized by destruction of both epidermis and dermis -14291561 26 n 01 dislocation 0 006 @ 14285662 n 0000 + 00414823 v 0101 + 00465762 v 0101 ~ 14294271 n 0000 ~ 14294354 n 0000 ~ 14294517 n 0000 | a displacement of a part (especially a bone) from its normal position (as in the shoulder or the vertebral column) -14291823 26 n 01 electric_shock 0 001 @ 14285662 n 0000 | trauma caused by the passage of electric current through the body (as from contact with high voltage lines or being struck by lightning); usually involves burns and abnormal heart rhythm and unconsciousness -14292090 26 n 02 fracture 0 break 0 018 @ 14285662 n 0000 + 00336260 v 0203 + 00107739 v 0202 + 00107739 v 0101 + 00107943 v 0101 + 00108303 v 0101 + 00335366 v 0101 ~ 14292571 n 0000 ~ 14292688 n 0000 ~ 14292796 n 0000 ~ 14292944 n 0000 ~ 14293093 n 0000 ~ 14293207 n 0000 ~ 14293352 n 0000 ~ 14293505 n 0000 ~ 14293840 n 0000 ~ 14293985 n 0000 ~ 14294117 n 0000 | breaking of hard tissue such as bone; "it was a nasty fracture"; "the break seems to have been caused by a fall" -14292571 26 n 01 comminuted_fracture 0 001 @ 14292090 n 0000 | fracture in which the bone is splintered or crushed -14292688 26 n 01 complete_fracture 0 001 @ 14292090 n 0000 | break involving the entire width of the bone -14292796 26 n 02 compound_fracture 0 open_fracture 0 001 @ 14292090 n 0000 | bone fracture associated with lacerated soft tissue or an open wound -14292944 26 n 01 compression_fracture 0 001 @ 14292090 n 0000 | fracture in which the bone collapses (especially in short bones such as vertebrae) -14293093 26 n 01 depressed_fracture 0 001 @ 14292090 n 0000 | fracture of the skull where the bone is pushed in -14293207 26 n 01 displaced_fracture 0 001 @ 14292090 n 0000 | fracture in which the two ends of the broken bone are separated from one another -14293352 26 n 02 fatigue_fracture 0 stress_fracture 0 001 @ 14292090 n 0000 | fracture resulting from excessive activity rather than a specific injury -14293505 26 n 02 hairline_fracture 0 capillary_fracture 0 001 @ 14292090 n 0000 | a fracture without separation of the fragments and the line of the break being very thin -14293678 26 n 01 greenstick_fracture 0 001 @ 14293840 n 0000 | a partial fracture of a bone (usually in children); the bone is bent but broken on only one side -14293840 26 n 01 incomplete_fracture 0 002 @ 14292090 n 0000 ~ 14293678 n 0000 | fracture that does not go across the entire width of the bone -14293985 26 n 01 impacted_fracture 0 001 @ 14292090 n 0000 | fracture in which one broken end is wedged into the other broken end -14294117 26 n 02 simple_fracture 0 closed_fracture 0 001 @ 14292090 n 0000 | an uncomplicated fracture in which the broken bones to not pierce the skin -14294271 26 n 01 abarticulation 0 001 @ 14291561 n 0000 | dislocation of a joint -14294354 26 n 01 diastasis 0 001 @ 14291561 n 0000 | separation of an epiphysis from the long bone to which it is normally attached without fracture of the bone -14294517 26 n 01 spondylolisthesis 0 001 @ 14291561 n 0000 | a forward dislocation of one vertebra over the one beneath it producing pressure on spinal nerves -14294678 26 n 02 frostbite 0 cryopathy 0 002 @ 14285662 n 0000 ~ 14299480 n 0000 | destruction of tissue by freezing and characterized by tingling, blistering and possibly gangrene -14294861 26 n 01 intravasation 0 001 @ 14285662 n 0000 | entry of foreign matter into a blood vessel -14294964 26 n 02 penetrating_trauma 0 penetrating_injury 0 001 @ 14285662 n 0000 | injury incurred when an object (as a knife or bullet or shrapnel) penetrates into the body -14295140 26 n 01 pinch 0 001 @ 14285662 n 0000 | an injury resulting from getting some body part squeezed -14295248 26 n 01 rupture 0 004 @ 14285662 n 0000 + 01573515 v 0102 ~ 14295389 n 0000 ~ 14296579 n 0000 | state of being torn or burst open -14295389 26 n 02 hernia 0 herniation 0 010 @ 14295248 n 0000 ~ 14295691 n 0000 ~ 14295829 n 0000 ~ 14296142 n 0000 ~ 14296254 n 0000 ~ 14296399 n 0000 ~ 14296802 n 0000 ~ 14297329 n 0000 ~ 14297406 n 0000 ~ 14297489 n 0000 | rupture in smooth muscle tissue through which a bodily structure protrudes -14295691 26 n 02 colpocele 0 vaginocele 0 003 @ 14295389 n 0000 ~ 14296966 n 0000 ~ 14297150 n 0000 | hernia projecting into the vagina -14295829 26 n 01 diverticulum 0 002 @ 14295389 n 0000 ~ 14295986 n 0000 | a herniation through the muscular wall of a tubular organ (especially the colon) -14295986 26 n 01 Meckel's_diverticulum 0 001 @ 14295829 n 0000 | a congenital diverticulum in the ileum resulting from incomplete closure of the yolk sac -14296142 26 n 01 eventration 0 001 @ 14295389 n 0000 | protrusion of the intestine through the abdominal wall -14296254 26 n 01 exomphalos 0 001 @ 14295389 n 0000 | an umbilical hernia at birth in which some abdominal organs push into the umbilical cord -14296399 26 n 03 hiatus_hernia 0 hiatal_hernia 0 diaphragmatic_hernia 0 001 @ 14295389 n 0000 | hernia resulting from the protrusion of part of the stomach through the diaphragm -14296579 26 n 03 herniated_disc 0 ruptured_intervertebral_disc 0 slipped_disc 0 001 @ 14295248 n 0000 | a painful rupture of the fibrocartilage of the disc between spinal vertebrae; occurs most often in the lumbar region -14296802 26 n 01 inguinal_hernia 0 001 @ 14295389 n 0000 | hernia in which a loop of intestine enters the inguinal canal; the most common type of hernia in males -14296966 26 n 02 cystocele 0 colpocystocele 0 001 @ 14295691 n 0000 | hernia in which the urinary bladder protrudes through the wall of the vagina; sometimes occurs after childbirth -14297150 26 n 02 rectocele 0 proctocele 0 001 @ 14295691 n 0000 | protrusion or herniation of the rectum into the vagina; can occur if pelvic muscles are weakened by childbirth -14297329 26 n 01 keratocele 0 001 @ 14295389 n 0000 | hernia of the cornea -14297406 26 n 01 laparocele 0 001 @ 14295389 n 0000 | hernia through the abdomen -14297489 26 n 02 umbilical_hernia 0 omphalocele 0 001 @ 14295389 n 0000 | protrusion of the intestine and omentum through a hernia in the abdominal wall near the navel; usually self correcting after birth -14297696 26 n 01 sleep_disorder 0 005 @ 14052403 n 0000 ~ 14023236 n 0000 ~ 14023374 n 0000 ~ 14025258 n 0000 ~ 14370267 n 0000 | a disturbance of the normal sleep pattern -14297870 26 n 03 sting 1 bite 1 insect_bite 0 006 @ 14285662 n 0000 + 01445407 v 0202 + 01445407 v 0101 ~ 14287741 n 0000 ~ 14287823 n 0000 ~ 14287904 n 0000 | a painful wound caused by the thrust of an insect's stinger into skin -14298102 26 n 01 strain 0 002 @ 14285662 n 0000 + 00476744 v 0103 | injury to a muscle (often caused by overuse); results in swelling and pain -14298247 26 n 01 strangulation 0 003 @ 14052403 n 0000 + 00359405 v 0101 + 00077950 v 0102 | the condition of having respiration stopped by compression of the air passage -14298420 26 n 02 whiplash 0 whiplash_injury 0 001 @ 14285662 n 0000 | an injury to the neck (the cervical vertebrae) resulting from rapid acceleration or deceleration (as in an automobile accident) -14298620 26 n 04 wale 0 welt 0 weal 0 wheal 0 002 @ 14285662 n 0000 + 01411085 v 0202 | a raised mark on the skin (as produced by the blow of a whip); characteristic of many allergic reactions -14298815 26 n 02 wound 0 lesion 2 007 @ 14285662 n 0000 ~ 14286339 n 0000 ~ 14286435 n 0000 ~ 14286549 n 0000 ~ 14287113 n 0000 ~ 14287314 n 0000 ~ 14287408 n 0000 | an injury to living tissue (especially an injury involving a cut or break in the skin) -14299070 26 n 03 wrench 0 twist 0 pull 0 005 @ 14285662 n 0000 + 00071803 v 0301 + 00091124 v 0201 + 00091124 v 0103 ~ 14299336 n 0000 | a sharp strain on muscles or ligaments; "the wrench to his knee occurred as he fell"; "he was sidelined with a hamstring pull" -14299336 26 n 01 sprain 0 002 @ 14299070 n 0000 + 00091124 v 0102 | a painful injury to a joint caused by a sudden wrenching of its ligaments -14299480 26 n 02 trench_foot 0 immersion_foot 0 001 @ 14294678 n 0000 | resembling frostbite but without freezing; resulting from exposure to cold and wet -14299637 26 n 01 symptom 0 110 @ 05823932 n 0000 #p 14070360 n 0000 ;c 06043075 n 0000 + 00357254 a 0102 + 02807249 a 0101 ~ 07382044 n 0000 ~ 13513540 n 0000 ~ 14021118 n 0000 ~ 14191646 n 0000 ~ 14191903 n 0000 ~ 14192199 n 0000 ~ 14193925 n 0000 ~ 14265958 n 0000 ~ 14266168 n 0000 ~ 14266313 n 0000 ~ 14266521 n 0000 ~ 14266677 n 0000 ~ 14266835 n 0000 ~ 14267017 n 0000 ~ 14267205 n 0000 ~ 14267358 n 0000 ~ 14267841 n 0000 ~ 14267994 n 0000 ~ 14268084 n 0000 ~ 14268221 n 0000 ~ 14268439 n 0000 ~ 14268623 n 0000 ~ 14268871 n 0000 ~ 14269090 n 0000 ~ 14269319 n 0000 ~ 14269556 n 0000 ~ 14269772 n 0000 ~ 14270127 n 0000 ~ 14270241 n 0000 ~ 14270846 n 0000 ~ 14271015 n 0000 ~ 14271173 n 0000 ~ 14271322 n 0000 ~ 14271480 n 0000 ~ 14302261 n 0000 ~ 14302460 n 0000 ~ 14302652 n 0000 ~ 14302847 n 0000 ~ 14303009 n 0000 ~ 14303249 n 0000 ~ 14303877 n 0000 ~ 14304060 n 0000 ~ 14311348 n 0000 ~ 14312172 n 0000 ~ 14312600 n 0000 ~ 14313017 n 0000 ~ 14313154 n 0000 ~ 14313342 n 0000 ~ 14314320 n 0000 ~ 14314483 n 0000 ~ 14314597 n 0000 ~ 14314756 n 0000 ~ 14314850 n 0000 ~ 14315192 n 0000 ~ 14315722 n 0000 ~ 14316470 n 0000 ~ 14316583 n 0000 ~ 14319299 n 0000 ~ 14319454 n 0000 ~ 14319684 n 0000 ~ 14320394 n 0000 ~ 14321469 n 0000 ~ 14322528 n 0000 ~ 14322699 n 0000 ~ 14324795 n 0000 ~ 14333721 n 0000 ~ 14334631 n 0000 ~ 14334814 n 0000 ~ 14335097 n 0000 ~ 14335223 n 0000 ~ 14336169 n 0000 ~ 14336317 n 0000 ~ 14336539 n 0000 ~ 14340287 n 0000 ~ 14340462 n 0000 ~ 14359174 n 0000 ~ 14359459 n 0000 ~ 14359816 n 0000 ~ 14359952 n 0000 ~ 14360459 n 0000 ~ 14363483 n 0000 ~ 14364432 n 0000 ~ 14365119 n 0000 ~ 14365356 n 0000 ~ 14365741 n 0000 ~ 14369408 n 0000 ~ 14369744 n 0000 ~ 14371161 n 0000 ~ 14371913 n 0000 ~ 14372513 n 0000 ~ 14372738 n 0000 ~ 14372855 n 0000 ~ 14373057 n 0000 ~ 14383624 n 0000 ~ 14406465 n 0000 ~ 14507050 n 0000 ~ 14507148 n 0000 ~ 14534076 n 0000 ~ 14567134 n 0000 ~ 14567956 n 0000 ~ 14568194 n 0000 ~ 14568359 n 0000 ~ 14572353 n 0000 ~ 14572503 n 0000 ~ 14572951 n 0000 | (medicine) any sensation or change in bodily function that is experienced by a patient and is associated with a particular disease -14301785 26 n 01 sign 0 004 @ 05823932 n 0000 #p 14070360 n 0000 ;c 06043075 n 0000 ~ 14302005 n 0000 | (medicine) any objective evidence of the presence of a disorder or disease; "there were no signs of asphyxiation" -14302005 26 n 01 vital_sign 0 005 @ 14301785 n 0000 ~ 05014879 n 0000 ~ 11429968 n 0000 ~ 15280695 n 0000 ~ 15281653 n 0000 | sign of life; usually an indicator of a person's general physical condition; "he was still alive but his vital signs were weak" -14302261 26 n 03 amenorrhea 0 amenorrhoea 0 amenia 0 005 @ 14299637 n 0000 + 02616627 a 0204 + 02616627 a 0103 ~ 14303647 n 0000 ~ 14303743 n 0000 | absence or suppression of normal menstrual flow -14302460 26 n 01 aura 0 001 @ 14299637 n 0000 | a sensation (as of a cold breeze or bright light) that precedes the onset of certain disorders such as a migraine attack or epileptic seizure -14302652 26 n 03 chloasma 0 melasma 0 mask_of_pregnancy 0 001 @ 14299637 n 0000 | a tan discoloration of a woman's face that is associated with pregnancy or with the use of oral contraceptives -14302847 26 n 01 clubbing 0 001 @ 14299637 n 0000 | a condition in which the ends of toes and fingers become wide and thick; a symptom of heart or lung disease -14303009 26 n 01 cyanosis 0 003 @ 14299637 n 0000 #p 14510401 n 0000 ~ 14303448 n 0000 | a bluish discoloration of the skin and mucous membranes; a sign that oxygen in the blood is dangerously diminished (as in carbon monoxide poisoning) -14303249 26 n 01 diuresis 0 001 @ 14299637 n 0000 | increased secretion of urine; if not due to increased liquid intake or to the action of a diuretic drug it can be a symptom of diabetes mellitus -14303448 26 n 02 acrocyanosis 0 Raynaud's_sign 0 001 @ 14303009 n 0000 | cyanosis of the extremities; can occur when a spasm of the blood vessels is caused by exposure to cold or by strong emotion -14303647 26 n 01 primary_amenorrhea 0 001 @ 14302261 n 0000 | delay of menarche beyond age 18 -14303743 26 n 01 secondary_amenorrhea 0 001 @ 14302261 n 0000 | cessation of menstruation in a woman who had previously menstruated -14303877 26 n 02 prodrome 0 prodroma 0 003 @ 14299637 n 0000 + 02784701 a 0102 + 02784701 a 0101 | an early symptom that a disease is developing or that an attack is about to occur -14304060 26 n 01 syndrome 0 032 @ 14299637 n 0000 #p 14070360 n 0000 ~ 05896998 n 0000 ~ 14056280 n 0000 ~ 14156740 n 0000 ~ 14304722 n 0000 ~ 14304964 n 0000 ~ 14305149 n 0000 ~ 14305458 n 0000 ~ 14305699 n 0000 ~ 14306475 n 0000 ~ 14307035 n 0000 ~ 14307275 n 0000 ~ 14307724 n 0000 ~ 14308012 n 0000 ~ 14308168 n 0000 ~ 14308311 n 0000 ~ 14308472 n 0000 ~ 14308945 n 0000 ~ 14309183 n 0000 ~ 14309394 n 0000 ~ 14309653 n 0000 ~ 14309938 n 0000 ~ 14310504 n 0000 ~ 14310830 n 0000 ~ 14310987 n 0000 ~ 14311117 n 0000 ~ 14469766 n 0000 ~ 14470144 n 0000 ~ 14470496 n 0000 ~ 14470754 n 0000 ~ 14471054 n 0000 | a pattern of symptoms indicative of some disease -14304722 26 n 02 cervical_disc_syndrome 0 cervical_root_syndrome 0 001 @ 14304060 n 0000 | an abnormal condition resulting from compression of spinal nerve roots in the neck region; involves neck pains and muscular weakness and paresthesia -14304964 26 n 01 Chinese_restaurant_syndrome 0 001 @ 14304060 n 0000 | headache and tingling or burning feelings and sweating caused by eating food that contains monosodium glutamate -14305149 26 n 01 Conn's_syndrome 0 001 @ 14304060 n 0000 | disturbances in saltwater balance and symptoms of weakness and muscular cramps and twitching and convulsions and sometimes paralysis; usually caused by a benign tumor of the cortex of the adrenal gland that leads to excess secretion of aldosterone -14305458 26 n 02 fetal_alcohol_syndrome 0 FAS 0 001 @ 14304060 n 0000 | a congenital medical condition in which body deformation occurs or facial development or mental ability is impaired because the mother drinks alcohol during pregnancy -14305699 26 n 02 Gulf_War_syndrome 0 Persian_Gulf_illness 0 001 @ 14304060 n 0000 | a medical condition of uncertain origin that affected many veterans of the 1991 Gulf War; characterized by fatigue and headache and dizziness and nausea and rashes and joint pain and respiratory disorders -14305990 26 n 03 regional_enteritis 0 regional_ileitis 0 Crohn's_disease 0 001 @ 14341091 n 0000 | a serious chronic and progressive inflammation of the ileum producing frequent bouts of diarrhea with abdominal pain and nausea and fever and weight loss -14306245 26 n 03 irritable_bowel_syndrome 0 spastic_colon 0 mucous_colitis 0 001 @ 14341091 n 0000 | recurrent abdominal pain and diarrhea (often alternating with periods of constipation); often associated with emotional stress -14306475 26 n 03 Klinefelter's_syndrome 0 Klinefelter_syndrome 0 XXY-syndrome 0 001 @ 14304060 n 0000 | syndrome in males that is characterized by small testes and long legs and enlarged breasts and reduced sperm production and mental retardation; a genetic defect in which an extra X chromosome (XXY) is present in the male -14306802 26 n 01 ulcerative_colitis 0 001 @ 14341091 n 0000 | a serious chronic inflammatory disease of the large intestine and rectum characterized by recurrent episodes of abdominal pain and fever and chills and profuse diarrhea -14307035 26 n 01 malabsorption_syndrome 0 001 @ 14304060 n 0000 | a pattern of symptoms including loss of appetite and bloating and weight loss and muscle pain and steatorrhea; associated with celiac disease and sprue and cystic fibrosis -14307275 26 n 02 Munchausen's_syndrome 0 Munchausen_syndrome 0 001 @ 14304060 n 0000 | syndrome consisting of feigning acute and dramatic illness for which no clinical evidence is ever found -14307468 26 n 01 narcolepsy 0 002 @ 14023236 n 0000 + 02767110 a 0101 | a sleep disorder characterized by sudden and uncontrollable episodes of deep sleep; "he believes that narcolepsy is attributable to an inability to suppress REM sleep during waking" -14307724 26 n 02 nephrotic_syndrome 0 nephrosis 1 001 @ 14304060 n 0000 | a syndrome characterized by edema and large amounts of protein in the urine and usually increased blood cholesterol; usually associated with glomerulonephritis or with a complication of various systemic diseases -14308012 26 n 01 Noonan's_syndrome 0 001 @ 14304060 n 0000 | syndrome seen only in males; marked by short stature and lowset ears and subnormal fertility -14308168 26 n 01 phantom_limb_syndrome 0 001 @ 14304060 n 0000 | syndrome consisting of discomfort or pain in a limb that has been amputated -14308311 26 n 02 premenstrual_syndrome 0 PMS 0 001 @ 14304060 n 0000 | a syndrome that occurs in many women from 2 to 14 days before the onset of menstruation -14308472 26 n 03 radiation_sickness 0 radiation_syndrome 0 radiation 0 001 @ 14304060 n 0000 | syndrome resulting from exposure to ionizing radiation (e.g., exposure to radioactive chemicals or to nuclear explosions); low doses cause diarrhea and nausea and vomiting and sometimes loss of hair; greater exposure can cause sterility and cataracts and some forms of cancer and other diseases; severe exposure can cause death within hours; "he was suffering from radiation" -14308945 26 n 01 Ramsay_Hunt_syndrome 0 001 @ 14304060 n 0000 | syndrome resulting from infection by the herpes varicella zoster virus; characterized by vertigo and pain in the ears and facial nerve paralysis and sometimes hearing loss -14309183 26 n 02 Reiter's_syndrome 0 Reiter's_disease 0 001 @ 14304060 n 0000 | an inflammatory syndrome (etiology unknown) predominantly in males; characterized by arthritis and conjunctivitis and urethritis -14309394 26 n 03 restless_legs_syndrome 0 restless_legs 0 Ekbom_syndrome 0 001 @ 14304060 n 0000 | feeling of uneasiness and restlessness in the legs after going to bed (sometimes causing insomnia); may be relieved temporarily by walking or moving the legs -14309653 26 n 01 Reye's_syndrome 0 002 @ 14085708 n 0000 @ 14304060 n 0000 | acquired encephalopathy following acute viral infections (especially influenza or chicken pox) in young children; characterized by fever, vomiting, disorientation, coma, and fatty infiltration of the liver -14309938 26 n 01 scalenus_syndrome 0 001 @ 14304060 n 0000 | discomfort and vascular symptoms and loss of sensation in a shoulder and arm; caused by a scalene muscle compressing the subclavian artery and part of the brachial plexus -14310172 26 n 01 neonatal_death 0 001 @ 13962498 n 0000 | death of a liveborn infant within the first 28 days of life -14310292 26 n 05 sudden_infant_death_syndrome 0 SIDS 0 infant_death 0 crib_death 0 cot_death 0 002 @ 13962498 n 0000 @ 14370267 n 0000 | sudden and unexpected death of an apparently healthy infant during sleep -14310504 26 n 05 tetany 0 tetanilla 0 intermittent_tetanus 0 intermittent_cramp 0 apyretic_tetanus 0 001 @ 14304060 n 0000 | clinical neurological syndrome characterized by muscular twitching and cramps and (when severe) seizures; associated with calcium deficiency (hypoparathyroidism) or vitamin D deficiency or alkalosis -14310830 26 n 01 thoracic_outlet_syndrome 0 001 @ 14304060 n 0000 | tingling sensations in the fingers; caused by compression on a nerve supplying the arm -14310987 26 n 01 Tietze's_syndrome 0 001 @ 14304060 n 0000 | syndrome characterized by swelling of rib cartilage (causing pain) -14311117 26 n 02 Tourette's_syndrome 0 Gilles_de_la_Tourette_syndrome 0 001 @ 14304060 n 0000 | neurological disorder characterized by facial grimaces and tics and movements of the upper body and grunts and shouts and coprolalia -14311348 26 n 01 effect 0 005 @ 14299637 n 0000 + 01642924 v 0102 ~ 14311574 n 0000 ~ 14311709 n 0000 ~ 14311977 n 0000 | a symptom caused by an illness or a drug; "the effects of sleep loss"; "the effect of the anesthetic" -14311574 26 n 01 aftereffect 0 001 @ 14311348 n 0000 | a delayed effect of a drug or therapy; "the drug had unexpected aftereffects" -14311709 26 n 01 bummer 1 001 @ 14311348 n 0000 | a bad reaction to a hallucinogenic drug -14311801 26 n 03 hairy_tongue 0 furry_tongue 0 black_tongue 0 001 @ 14311977 n 0000 | a benign side effect of some antibiotics; dark overgrowth of the papillae of the tongue -14311977 26 n 01 side_effect 0 002 @ 14311348 n 0000 ~ 14311801 n 0000 | a secondary and usually adverse effect of a drug or therapy; "severe headaches are one of the side effects of the drug" -14312172 26 n 01 abscess 0 004 @ 14299637 n 0000 ~ 14312363 n 0000 %p 14312481 n 0000 %p 14312600 n 0000 | symptom consisting of a localized collection of pus surrounded by inflamed tissue -14312363 26 n 01 abscessed_tooth 0 001 @ 14312172 n 0000 | an abscess of a common kind in the tissue around a tooth -14312481 26 n 01 head 0 002 @ 13902482 n 0000 #p 14312172 n 0000 | the tip of an abscess (where the pus accumulates) -14312600 26 n 02 purulence 0 purulency 0 004 @ 14299637 n 0000 #p 14312172 n 0000 + 02114613 a 0201 + 02114613 a 0101 | symptom of being purulent (containing or forming pus) -14312776 26 n 01 water_blister 0 001 @ 05517837 n 0000 | blister containing a nonpurulent clear watery content -14312889 26 n 01 blood_blister 0 001 @ 05517837 n 0000 | blister containing blood or bloody serum usually caused by an injury -14313017 26 n 01 exophthalmos 0 003 @ 14299637 n 0000 #p 14120767 n 0000 ~ 14121058 n 0000 | protrusion of the eyeball from the socket -14313154 26 n 01 festination 0 002 @ 14299637 n 0000 + 00459498 v 0105 | involuntary shortening of stride and quickening of gait that occurs in some diseases (e.g., Parkinson's disease) -14313342 26 n 01 furring 0 001 @ 14299637 n 0000 | a furlike coating of matter as on the tongue -14313440 26 n 03 gangrene 0 sphacelus 0 slough 0 006 @ 14204950 n 0000 + 00097394 v 0204 + 01176973 a 0101 + 00097394 v 0102 ~ 14313661 n 0000 ~ 14313943 n 0000 | necrotic tissue; a mortified or gangrenous part or mass -14313661 26 n 04 dry_gangrene 0 cold_gangrene 0 mumification_necrosis 0 mummification 1 002 @ 14313440 n 0000 ;c 06060845 n 0000 | (pathology) gangrene that develops in the presence of arterial obstruction and is characterized by dryness of the dead tissue and a dark brown color -14313943 26 n 07 gas_gangrene 0 clostridial_myonecrosis 0 emphysematous_gangrene 0 emphysematous_phlegmon 0 gangrenous_emphysema 0 gas_phlegmon 0 progressive_emphysematous_necrosis 0 002 @ 14313440 n 0000 ;c 06060845 n 0000 | (pathology) a deadly form of gangrene usually caused by clostridium bacteria that produce toxins that cause tissue death; can be used as a bioweapon -14314320 26 n 02 hematuria 0 haematuria 0 002 @ 14299637 n 0000 ~ 14266400 n 0000 | the presence of blood in the urine; often a symptom of urinary tract disease -14314483 26 n 02 hemoglobinuria 0 haemoglobinuria 0 001 @ 14299637 n 0000 | presence of hemoglobin in the urine -14314597 26 n 02 hemosiderosis 0 haemosiderosis 0 001 @ 14299637 n 0000 | abnormal deposit of hemosiderin; often a symptom of thalassemia or hemochromatosis -14314756 26 n 01 nebula 0 002 @ 14299637 n 0000 + 00462129 a 0102 | cloudiness of the urine -14314850 26 n 03 sneeze 0 sneezing 0 sternutation 0 005 @ 14299637 n 0000 @ 00863513 n 0000 + 00004819 v 0201 + 02546624 a 0101 + 00004819 v 0101 | a symptom consisting of the involuntary expulsion of air from the nose -14315071 26 n 01 enlargement 0 003 @ 00024720 n 0000 ~ 12047060 n 0000 ~ 14315192 n 0000 | the state of being enlarged -14315192 26 n 03 swelling 0 puffiness 0 lump 1 014 @ 14315071 n 0000 @ 14299637 n 0000 + 01174565 a 0201 + 00256507 v 0101 ~ 05458859 n 0000 ~ 14315549 n 0000 ~ 14316352 n 0000 ~ 14316714 n 0000 ~ 14317221 n 0000 ~ 14317720 n 0000 ~ 14317943 n 0000 ~ 14318030 n 0000 ~ 14318116 n 0000 ~ 14318360 n 0000 | an abnormal protuberance or localized enlargement -14315549 26 n 01 bloat 0 003 @ 14315192 n 0000 + 00361952 v 0101 + 00361797 v 0101 | swelling of the rumen or intestinal tract of domestic animals caused by excessive gas -14315722 26 n 01 bubo 0 003 @ 05430095 n 0000 @ 14299637 n 0000 + 03051194 a 0101 | a lymph node that is inflamed and swollen because of plague or gonorrhea or tuberculosis -14315897 26 n 01 anasarca 0 002 @ 14316714 n 0000 + 02621496 a 0101 | generalized edema with accumulation of serum in subcutaneous connective tissue -14316048 26 n 01 chemosis 0 001 @ 14316714 n 0000 | edema of the mucous membrane of the eyeball and eyelid lining -14316164 26 n 01 papilledema 0 001 @ 14316714 n 0000 | swelling of the optic disc (where the optic nerve enters the eyeball); usually associated with an increase in intraocular pressure -14316352 26 n 01 bunion 0 001 @ 14315192 n 0000 | a painful swelling of the bursa of the first joint of the big toe -14316470 26 n 01 palsy 1 002 @ 14299637 n 0000 + 00268680 v 0101 | a condition marked by uncontrollable tremor -14316583 26 n 01 pyuria 0 001 @ 14299637 n 0000 | presence of white blood cells in the urine; symptom of urinary tract infection -14316714 26 n 04 edema 0 oedema 0 hydrops 0 dropsy 0 011 @ 14315192 n 0000 + 01176544 a 0402 + 01176544 a 0101 ~ 14120310 n 0000 ~ 14120614 n 0000 ~ 14232460 n 0000 ~ 14254926 n 0000 ~ 14315897 n 0000 ~ 14316048 n 0000 ~ 14316164 n 0000 ~ 14317064 n 0000 | swelling from excessive accumulation of watery fluid in cells, tissues, or serous cavities -14317064 26 n 02 cerebral_edema 0 brain_edema 0 001 @ 14316714 n 0000 | swelling of the brain due to the uptake of water in the neuropile and white matter -14317221 26 n 04 hematocele 0 haematocele 0 hematocoele 0 haematocoele 0 001 @ 14315192 n 0000 | swelling caused by blood collecting in a body cavity (especially a swelling of the membrane covering the testis) -14317433 26 n 02 hematocolpometra 0 haematocolpometra 0 001 @ 14052403 n 0000 | accumulation of blood in the vagina and uterus -14317562 26 n 02 hematocolpos 0 haematocolpos 0 001 @ 14052403 n 0000 | accumulation of menstrual blood in the vagina (usually due to an imperforate hymen) -14317720 26 n 02 intumescence 0 intumescency 0 006 @ 14315192 n 0000 + 01174565 a 0202 + 00256507 v 0203 + 01174565 a 0102 + 00256507 v 0103 ~ 14318714 n 0000 | swelling up with blood or other fluids (as with congestion) -14317943 26 n 01 iridoncus 0 001 @ 14315192 n 0000 | swelling of the iris of the eye -14318030 26 n 01 lymphogranuloma 0 001 @ 14315192 n 0000 | swelling of a lymph node -14318116 26 n 02 oscheocele 0 oscheocoele 0 001 @ 14315192 n 0000 | swelling of the scrotum -14318210 26 n 01 tumescence 0 002 @ 14318360 n 0000 + 01174565 a 0103 | tumidity resulting from the presence of blood or other fluid in the tissues -14318360 26 n 02 tumidity 0 tumidness 0 006 @ 14315192 n 0000 + 01174565 a 0204 + 01151592 a 0201 + 01174565 a 0104 + 01151592 a 0101 ~ 14318210 n 0000 | slight swelling of an organ or part -14318552 26 n 02 cephalhematoma 0 cephalohematoma 0 001 @ 14201989 n 0000 | a collection of blood under the scalp of a newborn; caused by pressure during birth -14318714 26 n 02 hematoma 0 haematoma 0 001 @ 14317720 n 0000 | a localized swelling filled with blood -14318819 26 n 01 proud_flesh 0 001 @ 14237818 n 0000 | the swollen tissue around a healing wound or ulcer -14318927 26 n 01 hyperbilirubinemia 0 003 @ 14204950 n 0000 #p 14319684 n 0000 ~ 14319093 n 0000 | abnormally high amounts of bile pigment (bilirubin) in the blood -14319093 26 n 02 hyperbilirubinemia_of_the_newborn 0 neonatal_hyperbilirubinemia 0 001 @ 14318927 n 0000 | a common disorder that is usually due to immaturity of the liver; usually subsides spontaneously -14319299 26 n 02 hyperglycemia 0 hyperglycaemia 0 002 @ 14299637 n 0000 ! 14319454 n 0101 | abnormally high blood sugar usually associated with diabetes -14319454 26 n 02 hypoglycemia 0 hypoglycaemia 0 005 @ 14299637 n 0000 #p 14068177 n 0000 + 02877131 a 0202 + 02877131 a 0101 ! 14319299 n 0101 | abnormally low blood sugar usually resulting from excessive insulin or a poor diet -14319684 26 n 02 jaundice 0 icterus 0 006 @ 14299637 n 0000 + 01177556 a 0202 + 00106723 v 0101 %p 14318927 n 0000 ~ 14320016 n 0000 ~ 14320218 n 0000 | yellowing of the skin and the whites of the eyes caused by an accumulation of bile pigment (bilirubin) in the blood; can be a symptom of gallstones or liver infection or anemia -14320016 26 n 03 jaundice_of_the_newborn 0 physiological_jaundice_of_the_newborn 0 icterus_neonatorum 0 001 @ 14319684 n 0000 | yellowish appearance in newborn infants; usually subsides spontaneously -14320218 26 n 01 kernicterus 0 001 @ 14319684 n 0000 | an abnormal accumulation of bile pigment in the brain and other nerve tissue; causes yellow staining and tissue damage -14320394 26 n 01 congestion 0 006 @ 14299637 n 0000 ~ 14320602 n 0000 ~ 14320813 n 0000 ~ 14320984 n 0000 ~ 14321243 n 0000 ~ 14321333 n 0000 | excessive accumulation of blood or other fluid in a body part -14320602 26 n 01 hydrothorax 0 001 @ 14320394 n 0000 | accumulation of fluid in the pleural cavity (the space between the lungs and the walls of the chest) often resulting from disease of the heart or kidneys -14320813 26 n 02 hemothorax 0 haemothorax 0 001 @ 14320394 n 0000 | accumulation of blood in the pleural cavity (the space between the lungs and the walls of the chest) -14320984 26 n 02 hyperemia 0 hyperaemia 0 003 @ 14320394 n 0000 + 03011750 a 0101 ~ 14321135 n 0000 | increased blood in an organ or other body part -14321135 26 n 01 engorgement 0 001 @ 14320984 n 0000 | congestion with blood; "engorgement of the breast" -14321243 26 n 01 pulmonary_congestion 0 001 @ 14320394 n 0000 | congestion in the lungs -14321333 26 n 01 stuffiness 0 002 @ 14320394 n 0000 + 01622033 a 0101 | state of obstruction or stoppage or air in the nose or throat -14321469 26 n 01 eruption 2 005 @ 14299637 n 0000 ~ 14225632 n 0000 ~ 14321653 n 0000 ~ 14321814 n 0000 ~ 14321953 n 0000 | symptom consisting of a breaking out and becoming visible -14321653 26 n 02 enanthem 0 enanthema 0 001 @ 14321469 n 0000 | eruption on a mucous membrane (as the inside of the mouth) occurring as a symptom of a disease -14321814 26 n 03 exanthem 0 exanthema 0 skin_eruption 0 001 @ 14321469 n 0000 | eruption on the skin occurring as a symptom of a disease -14321953 26 n 04 rash 0 roseola 0 efflorescence 0 skin_rash 0 003 @ 14321469 n 0000 ~ 14322106 n 0000 ~ 14322248 n 0000 | any red eruption of the skin -14322106 26 n 03 prickly_heat 0 heat_rash 0 miliaria 0 001 @ 14321953 n 0000 | obstruction of the sweat ducts during high heat and humidity -14322248 26 n 04 urtication 0 urticaria 0 hives 0 nettle_rash 0 002 @ 14321953 n 0000 @ 14533203 n 0000 | an itchy skin eruption characterized by weals with pale interiors and well-defined red margins; usually the result of an allergic response to insect bites or food or drugs -14322528 26 n 01 numbness 0 002 @ 14299637 n 0000 + 02103333 a 0103 | partial or total lack of sensation in a part of the body; a symptom of nerve damage or dysfunction -14322699 26 n 02 pain 0 hurting 0 047 @ 14299637 n 0000 + 02121511 v 0201 + 02122164 v 0203 + 00065070 v 0202 + 01792567 v 0101 + 00070816 v 0103 ~ 14323683 n 0000 ~ 14324274 n 0000 ~ 14324572 n 0000 ~ 14325437 n 0000 ~ 14325575 n 0000 ~ 14325732 n 0000 ~ 14325902 n 0000 ~ 14325976 n 0000 ~ 14326072 n 0000 ~ 14326190 n 0000 ~ 14326880 n 0000 ~ 14326969 n 0000 ~ 14327125 n 0000 ~ 14328513 n 0000 ~ 14328588 n 0000 ~ 14328720 n 0000 ~ 14328794 n 0000 ~ 14328894 n 0000 ~ 14328966 n 0000 ~ 14329040 n 0000 ~ 14329159 n 0000 ~ 14329262 n 0000 ~ 14329460 n 0000 ~ 14329578 n 0000 ~ 14329654 n 0000 ~ 14329762 n 0000 ~ 14329888 n 0000 ~ 14330046 n 0000 ~ 14330201 n 0000 ~ 14330265 n 0000 ~ 14331373 n 0000 ~ 14331690 n 0000 ~ 14331873 n 0000 ~ 14332085 n 0000 ~ 14332339 n 0000 ~ 14332617 n 0000 ~ 14333058 n 0000 ~ 14333334 n 0000 ~ 14333433 n 0000 ~ 14333575 n 0000 ~ 14333645 n 0000 | a symptom of some physical hurt or disorder; "the patient developed severe pain and distension" -14323683 26 n 02 ache 0 aching 0 011 @ 14322699 n 0000 + 02121511 v 0202 + 02122164 v 0201 + 01711465 a 0102 + 02121511 v 0102 + 02122164 v 0101 ~ 14323974 n 0000 ~ 14325335 n 0000 ~ 14326607 n 0000 ~ 14327266 n 0000 ~ 14327435 n 0000 | a dull persistent (usually moderately intense) pain -14323974 26 n 02 toothache 0 odontalgia 0 002 @ 14323683 n 0000 ~ 14324099 n 0000 | an ache localized in or around a tooth -14324099 26 n 01 aerodontalgia 0 002 @ 14323974 n 0000 ;c 00325785 n 0000 | pain in the teeth that results from a change in air pressure (as in flying or mountain climbing) -14324274 26 n 03 agony 0 suffering 0 excruciation 0 012 @ 14322699 n 0000 + 01802689 v 0303 + 00071178 v 0302 + 02121511 v 0203 + 00065070 v 0201 + 02608090 a 0101 + 09779280 n 0101 + 01794363 v 0101 + 01794523 v 0102 + 01794363 v 0102 ~ 14324672 n 0000 ~ 14325220 n 0000 | a state of acute pain -14324572 26 n 01 arthralgia 0 002 @ 14322699 n 0000 + 02642394 a 0101 | pain in a joint or joints -14324672 26 n 01 throe 1 001 @ 14324274 n 0000 | severe spasm of pain; "the throes of dying"; "the throes of childbirth" -14324795 26 n 02 paresthesia 0 paraesthesia 0 002 @ 14299637 n 0000 ~ 14325006 n 0000 | abnormal skin sensations (as tingling or tickling or itching or burning) usually associated with peripheral nerve damage -14325006 26 n 01 formication 0 002 @ 14324795 n 0000 + 01886228 v 0101 | hallucinated sensation that insects or snakes are crawling over the skin; a common side-effect of extensive use of cocaine or amphetamines -14325220 26 n 02 Passion 2 Passion_of_Christ 0 001 @ 14324274 n 0000 | the suffering of Jesus at the Crucifixion -14325335 26 n 01 backache 0 002 @ 14323683 n 0000 ~ 14328290 n 0000 | an ache localized in the back -14325437 26 n 02 burn 0 burning 0 003 @ 14322699 n 0000 + 02121048 v 0101 + 02120451 v 0103 | pain that feels hot as if it were on fire -14325575 26 n 01 causalgia 0 001 @ 14322699 n 0000 | a burning pain in a limb along the course of a peripheral nerve; usually associated with skin changes -14325732 26 n 04 colic 0 intestinal_colic 0 gripes 0 griping 0 003 @ 14322699 n 0000 + 01175741 a 0101 ~ 14070055 n 0000 | acute abdominal pain (especially in infants) -14325902 26 n 01 chest_pain 0 001 @ 14322699 n 0000 | pain in the chest -14325976 26 n 01 chiralgia 0 001 @ 14322699 n 0000 | a pain in the hand that is not traumatic -14326072 26 n 01 distress 0 001 @ 14322699 n 0000 | extreme physical pain; "the patient appeared to be in distress" -14326190 26 n 01 dysmenorrhea 0 003 @ 14322699 n 0000 ~ 14326305 n 0000 ~ 14326458 n 0000 | painful menstruation -14326305 26 n 01 primary_dysmenorrhea 0 001 @ 14326190 n 0000 | painful menstruation that is intrinsic to menstruation and not the result of a disease -14326458 26 n 01 secondary_dysmenorrhea 0 001 @ 14326190 n 0000 | painful menstruation that is caused by some specific disorder (as endometriosis) -14326607 26 n 03 headache 0 head_ache 0 cephalalgia 0 006 @ 14323683 n 0000 ~ 14327543 n 0000 ~ 14327707 n 0000 ~ 14327878 n 0000 ~ 14327970 n 0000 ~ 14328105 n 0000 | pain in the head caused by dilation of cerebral arteries or muscle contractions or a reaction to drugs -14326880 26 n 02 glossalgia 0 glossodynia 0 001 @ 14322699 n 0000 | pain in the tongue -14326969 26 n 01 growing_pains 0 001 @ 14322699 n 0000 | pain in muscles or joints sometimes experienced by children and often attributed to rapid growth -14327125 26 n 03 hemorrhoid 0 haemorrhoid 0 piles 0 001 @ 14322699 n 0000 | pain caused by venous swelling at or inside the anal sphincter -14327266 26 n 04 stomachache 0 stomach_ache 0 bellyache 0 gastralgia 0 002 @ 14323683 n 0000 #p 14336317 n 0000 | an ache localized in the stomach or abdominal region -14327435 26 n 02 earache 0 otalgia 0 001 @ 14323683 n 0000 | an ache localized in the middle or inner ear -14327543 26 n 02 histamine_headache 0 cluster_headache 0 001 @ 14326607 n 0000 | a painful recurring headache associated with the release of histamine from cells -14327707 26 n 04 migraine 0 megrim 0 sick_headache 0 hemicrania 0 001 @ 14326607 n 0000 | a severe recurring vascular headache; occurs more frequently in women than men -14327878 26 n 01 sick_headache 1 001 @ 14326607 n 0000 | a headache accompanied by nausea -14327970 26 n 01 sinus_headache 0 001 @ 14326607 n 0000 | a headache resulting from congestion or infection in the paranasal sinuses -14328105 26 n 01 tension_headache 0 001 @ 14326607 n 0000 | a headache located at the back of the head; usually caused by body tension resulting from overwork or psychological stress -14328290 26 n 02 lumbago 0 lumbar_pain 0 001 @ 14325335 n 0000 | backache affecting the lumbar region or lower back; can be caused by muscle strain or arthritis or vascular insufficiency or a ruptured intervertebral disc -14328513 26 n 01 keratalgia 0 001 @ 14322699 n 0000 | pain in the cornea -14328588 26 n 01 labor_pain 0 001 @ 14322699 n 0000 | pain and discomfort associated with contractions of the uterus during labor -14328720 26 n 01 mastalgia 0 001 @ 14322699 n 0000 | pain in the breast -14328794 26 n 01 melagra 0 001 @ 14322699 n 0000 | rheumatic or myalgic pains in the arms or legs -14328894 26 n 01 meralgia 0 001 @ 14322699 n 0000 | pain in the thigh -14328966 26 n 01 metralgia 0 001 @ 14322699 n 0000 | pain in the uterus -14329040 26 n 02 myalgia 0 myodynia 0 002 @ 14322699 n 0000 + 02766602 a 0101 | pain in a muscle or group of muscles -14329159 26 n 01 nephralgia 0 001 @ 14322699 n 0000 | pain in the kidney (usually felt in the loins) -14329262 26 n 02 neuralgia 0 neuralgy 0 005 @ 14322699 n 0000 + 03090456 a 0201 + 03090456 a 0101 ~ 14330588 n 0000 ~ 14330727 n 0000 | acute spasmodic pain along the course of one or more nerves -14329460 26 n 01 odynophagia 0 001 @ 14322699 n 0000 | severe pain on swallowing due to a disorder of the esophagus -14329578 26 n 01 orchidalgia 0 001 @ 14322699 n 0000 | pain in the testes -14329654 26 n 01 pang 0 003 @ 14322699 n 0000 ~ 14330833 n 0000 ~ 14330992 n 0000 | a sharp spasm of pain -14329762 26 n 02 pang 1 sting 2 002 @ 14322699 n 0000 + 01793742 v 0201 | a mental pain or distress; "a pang of conscience" -14329888 26 n 02 photalgia 0 photophobia 0 001 @ 14322699 n 0000 | pain in the eye resulting from exposure to bright light (often associated with albinism) -14330046 26 n 03 pleurodynia 0 pleuralgia 0 costalgia 0 001 @ 14322699 n 0000 | pain in the chest caused by inflammation of the muscles between the ribs -14330201 26 n 01 podalgia 0 001 @ 14322699 n 0000 | foot pain -14330265 26 n 01 proctalgia 0 001 @ 14322699 n 0000 | pain in the rectum -14330340 26 n 05 epidemic_pleurodynia 0 epidemic_myalgia 0 myosis 0 diaphragmatic_pleurisy 0 Bornholm_disease 0 001 @ 14130166 n 0000 | an acute infectious disease occurring in epidemic form and featuring paroxysms of pain (usually in the chest) -14330588 26 n 02 trigeminal_neuralgia 0 tic_douloureux 0 001 @ 14329262 n 0000 | intense paroxysmal neuralgia along the trigeminal nerve -14330727 26 n 01 sciatica 0 002 @ 14329262 n 0000 + 02841919 a 0101 | neuralgia along the sciatic nerve -14330833 26 n 03 birth_pangs 0 labor_pains 0 labour_pains 0 001 @ 14329654 n 0000 | a regularly recurrent spasm of pain that is characteristic of childbirth -14330992 26 n 01 afterpains 0 001 @ 14329654 n 0000 | pains felt by a woman after her baby is born; associated with contractions of the uterus -14331137 26 n 01 palilalia 0 001 @ 14204950 n 0000 | a pathological condition in which a word is rapidly and involuntarily repeated -14331271 26 n 01 palmature 0 001 @ 14501726 n 0000 | an abnormality in which the fingers are webbed -14331373 26 n 01 referred_pain 0 001 @ 14322699 n 0000 | pain that is felt at a place in the body different from the injured or diseased part where the pain would be expected; "angina pectoris can cause referred pain in the left shoulder"; "pain in the right shoulder can be referred pain from gallbladder disease" -14331690 26 n 01 renal_colic 0 001 @ 14322699 n 0000 | sharp pain in the lower back that radiates into the groin; associated with the passage of a renal calculus through the ureter -14331873 26 n 03 smart 0 smarting 0 smartness 0 005 @ 14322699 n 0000 + 01513376 a 0301 + 02122164 v 0202 + 01513376 a 0101 + 02122164 v 0102 | a kind of pain such as that caused by a wound or a burn or a sore -14332085 26 n 02 sting 0 stinging 0 005 @ 14322699 n 0000 + 02123424 v 0202 + 01793742 v 0201 + 02123424 v 0102 + 02120451 v 0102 | a kind of pain; something as sudden and painful as being stung; "the sting of death"; "he felt the stinging of nettles" -14332339 26 n 01 stitch 0 001 @ 14322699 n 0000 | a sharp spasm of pain in the side resulting from running -14332448 26 n 01 rebound_tenderness 0 001 @ 14332617 n 0000 | pain felt when a hand pressing on the abdomen is suddenly released; a symptom of peritoneal inflammation -14332617 26 n 03 tenderness 0 soreness 0 rawness 1 009 @ 14322699 n 0000 + 01712753 a 0303 + 01319061 a 0301 + 01712753 a 0202 + 01712753 a 0104 + 02448166 a 0101 ~ 07496166 n 0000 ~ 14332448 n 0000 ~ 14333136 n 0000 | a pain that is felt (as when the area is touched); "the best results are generally obtained by inserting the needle into the point of maximum tenderness"; "after taking a cold, rawness of the larynx and trachea come on" -14333058 26 n 01 thermalgesia 0 001 @ 14322699 n 0000 | pain caused by heat -14333136 26 n 01 chafe 0 005 @ 14332617 n 0000 + 02119659 v 0101 + 01250908 v 0104 + 01253808 v 0101 + 00373397 v 0101 | soreness and warmth caused by friction; "he had a nasty chafe on his knee" -14333334 26 n 01 throb 0 002 @ 14322699 n 0000 + 02122665 v 0101 | a deep pulsating type of pain -14333433 26 n 02 torture 0 torment 0 004 @ 14322699 n 0000 + 00071178 v 0203 + 01711724 a 0106 + 00071178 v 0101 | unbearable physical pain -14333575 26 n 01 ulalgia 0 001 @ 14322699 n 0000 | pain in the gums -14333645 26 n 01 urodynia 0 001 @ 14322699 n 0000 | pain during urination -14333721 26 n 01 postnasal_drip 0 001 @ 14299637 n 0000 | chronic secretion of mucus from the rear of the nasal cavity into the nasopharynx -14333863 26 n 01 papule 0 002 @ 14334306 n 0000 ~ 14334011 n 0000 | a small inflamed elevation of skin that is nonsuppurative (as in chicken pox) -14334011 26 n 02 papulovesicle 0 vesicopapule 0 001 @ 14333863 n 0000 | a papule that changes into a blister -14334122 26 n 01 pustule 0 004 @ 14334306 n 0000 @ 05517837 n 0000 + 00246175 a 0104 ~ 14334511 n 0000 | a small inflamed elevation of skin containing pus; a blister filled with pus -14334306 26 n 03 pimple 0 hickey 1 zit 0 004 @ 14222112 n 0000 + 00246175 a 0103 ~ 14333863 n 0000 ~ 14334122 n 0000 | a small inflamed elevation of the skin; a pustule or papule; common symptom in acne -14334511 26 n 01 pock 0 003 @ 14334122 n 0000 #p 14124423 n 0000 + 01551195 v 0103 | a pustule in an eruptive disease -14334631 26 n 04 cardiomegaly 0 megalocardia 0 megacardia 0 enlarged_heart 0 001 @ 14299637 n 0000 | an abnormal enlargement of the heart; "mild cardiomegaly is common in athletes" -14334814 26 n 03 heart_murmur 0 cardiac_murmur 0 murmur 0 002 @ 14299637 n 0000 ~ 14335006 n 0000 | an abnormal sound of the heart; sometimes a sign of abnormal function of the heart valves -14335006 26 n 01 systolic_murmur 0 001 @ 14334814 n 0000 | a murmur heard during systole -14335097 26 n 01 palpitation 0 003 @ 14299637 n 0000 + 01889392 v 0101 + 01879928 v 0101 | a rapid and irregular heart beat -14335223 26 n 02 heartburn 0 pyrosis 0 001 @ 14299637 n 0000 | a painful burning sensation in the chest caused by gastroesophageal reflux (backflow from the stomach irritating the esophagus); symptomatic of an ulcer or a diaphragmatic hernia or other disorder -14335485 26 n 03 gastroesophageal_reflux 0 esophageal_reflux 0 oesophageal_reflux 0 001 @ 14336004 n 0000 | reflux of stomach contents into the esophagus -14335641 26 n 01 hepatojugular_reflux 0 001 @ 14336004 n 0000 | a venous reflux occurring in congestive heart failure -14335761 26 n 01 ureterorenal_reflux 0 001 @ 14336004 n 0000 | a backflow of urine from the ureter into the renal pelvis -14335884 26 n 01 vesicoureteral_reflux 0 001 @ 14336004 n 0000 | a backflow of urine from the bladder into the ureter -14336004 26 n 01 reflux 0 005 @ 14204950 n 0000 ~ 14335485 n 0000 ~ 14335641 n 0000 ~ 14335761 n 0000 ~ 14335884 n 0000 | an abnormal backward flow of body fluids -14336169 26 n 02 hot_flash 0 flush 1 001 @ 14299637 n 0000 | sudden brief sensation of heat (associated with menopause and some mental disorders) -14336317 26 n 04 indigestion 0 dyspepsia 0 stomach_upset 0 upset_stomach 0 003 @ 14299637 n 0000 + 02544427 a 0201 %p 14327266 n 0000 | a disorder of digestive function characterized by discomfort or heartburn or nausea -14336539 26 n 03 inflammation 0 redness 0 rubor 0 119 @ 14299637 n 0000 #p 14171682 n 0000 + 00395626 a 0202 + 00063724 v 0101 + 00063557 v 0101 ~ 14257687 n 0000 ~ 14257779 n 0000 ~ 14257993 n 0000 ~ 14258176 n 0000 ~ 14258293 n 0000 ~ 14258512 n 0000 ~ 14258609 n 0000 ~ 14260898 n 0000 ~ 14260991 n 0000 ~ 14261244 n 0000 ~ 14261384 n 0000 ~ 14338942 n 0000 ~ 14339772 n 0000 ~ 14339914 n 0000 ~ 14340091 n 0000 ~ 14340182 n 0000 ~ 14340734 n 0000 ~ 14340822 n 0000 ~ 14340914 n 0000 ~ 14341001 n 0000 ~ 14341091 n 0000 ~ 14341253 n 0000 ~ 14341334 n 0000 ~ 14341432 n 0000 ~ 14341563 n 0000 ~ 14341652 n 0000 ~ 14341769 n 0000 ~ 14341923 n 0000 ~ 14342132 n 0000 ~ 14342533 n 0000 ~ 14342638 n 0000 ~ 14344881 n 0000 ~ 14344997 n 0000 ~ 14345304 n 0000 ~ 14345455 n 0000 ~ 14345552 n 0000 ~ 14345719 n 0000 ~ 14345815 n 0000 ~ 14345958 n 0000 ~ 14346080 n 0000 ~ 14346190 n 0000 ~ 14346280 n 0000 ~ 14346416 n 0000 ~ 14346909 n 0000 ~ 14347540 n 0000 ~ 14347695 n 0000 ~ 14347774 n 0000 ~ 14347886 n 0000 ~ 14347993 n 0000 ~ 14348070 n 0000 ~ 14348176 n 0000 ~ 14348300 n 0000 ~ 14348429 n 0000 ~ 14348538 n 0000 ~ 14348647 n 0000 ~ 14348895 n 0000 ~ 14349043 n 0000 ~ 14349208 n 0000 ~ 14349311 n 0000 ~ 14349541 n 0000 ~ 14349628 n 0000 ~ 14349717 n 0000 ~ 14349807 n 0000 ~ 14349892 n 0000 ~ 14350206 n 0000 ~ 14350292 n 0000 ~ 14350448 n 0000 ~ 14350837 n 0000 ~ 14351002 n 0000 ~ 14351094 n 0000 ~ 14351321 n 0000 ~ 14351629 n 0000 ~ 14351995 n 0000 ~ 14352334 n 0000 ~ 14352455 n 0000 ~ 14352570 n 0000 ~ 14352687 n 0000 ~ 14352801 n 0000 ~ 14352890 n 0000 ~ 14353995 n 0000 ~ 14354121 n 0000 ~ 14354257 n 0000 ~ 14354462 n 0000 ~ 14354642 n 0000 ~ 14354751 n 0000 ~ 14354960 n 0000 ~ 14355060 n 0000 ~ 14355238 n 0000 ~ 14355459 n 0000 ~ 14355643 n 0000 ~ 14355725 n 0000 ~ 14355819 n 0000 ~ 14355901 n 0000 ~ 14356044 n 0000 ~ 14356328 n 0000 ~ 14356497 n 0000 ~ 14356578 n 0000 ~ 14357160 n 0000 ~ 14357251 n 0000 ~ 14357370 n 0000 ~ 14357454 n 0000 ~ 14357607 n 0000 ~ 14357693 n 0000 ~ 14357770 n 0000 ~ 14357853 n 0000 ~ 14357942 n 0000 ~ 14358335 n 0000 ~ 14358474 n 0000 ~ 14358622 n 0000 ~ 14358709 n 0000 ~ 14358860 n 0000 ~ 14358993 n 0000 ~ 14359073 n 0000 ~ 14568986 n 0000 | a response of body tissues to injury or irritation; characterized by pain and swelling and redness and heat -14338848 26 n 01 amyxia 0 001 @ 14034177 n 0000 | a condition in which no mucus in produced -14338942 26 n 01 carditis 0 005 @ 14336539 n 0000 ~ 14339094 n 0000 ~ 14339387 n 0000 ~ 14339536 n 0000 ~ 14339682 n 0000 | inflammation of the heart -14339094 26 n 01 endocarditis 0 002 @ 14338942 n 0000 ~ 14339219 n 0000 | inflammation of the endocardium and heart valves -14339219 26 n 01 subacute_bacterial_endocarditis 0 001 @ 14339094 n 0000 | a chronic bacterial infection of the endocardium and heart valves; symptoms develop slowly -14339387 26 n 02 myocardial_inflammation 0 myocarditis 0 001 @ 14338942 n 0000 | inflammation of the myocardium (the muscular tissue of the heart) -14339536 26 n 01 pancarditis 0 001 @ 14338942 n 0000 | inflammation of the entire heart (the epicardium and the myocardium and the endocardium) -14339682 26 n 01 pericarditis 0 001 @ 14338942 n 0000 | inflammation of the pericardium -14339772 26 n 01 catarrh 0 002 @ 14336539 n 0000 + 02683650 a 0101 | inflammation of the nose and throat with increased production of mucus -14339914 26 n 01 cellulitis 0 001 @ 14336539 n 0000 | an inflammation of body tissue (especially that below the skin) characterized by fever and swelling and redness and pain -14340091 26 n 01 cervicitis 0 001 @ 14336539 n 0000 | inflammation of the uterine cervix -14340182 26 n 01 cheilitis 0 001 @ 14336539 n 0000 | inflammation and cracking of the skin of the lips -14340287 26 n 02 chill 1 shivering 0 002 @ 14299637 n 0000 + 00014201 v 0201 | a sensation of cold that often marks the start of an infection and the development of a fever -14340462 26 n 02 ague 1 chills_and_fever 0 003 @ 14299637 n 0000 #p 14077830 n 0000 ~ 14340635 n 0000 | successive stages of chills and fever that is a symptom of malaria -14340635 26 n 01 quartan 0 001 @ 14340462 n 0000 | a malarial fever that recurs every fourth day -14340734 26 n 01 cholangitis 0 001 @ 14336539 n 0000 | inflammation of the bile ducts -14340822 26 n 01 cholecystitis 0 001 @ 14336539 n 0000 | inflammation of the gall bladder -14340914 26 n 01 chorditis 0 001 @ 14336539 n 0000 | inflammation of the vocal cords -14341001 26 n 01 chorditis 1 001 @ 14336539 n 0000 | inflammation of the spermatic cord -14341091 26 n 02 colitis 0 inflammatory_bowel_disease 0 004 @ 14336539 n 0000 ~ 14305990 n 0000 ~ 14306245 n 0000 ~ 14306802 n 0000 | inflammation of the colon -14341253 26 n 01 colpitis 0 001 @ 14336539 n 0000 | inflammation of the vagina -14341334 26 n 01 colpocystitis 0 001 @ 14336539 n 0000 | inflammation of the vagina and bladder -14341432 26 n 02 conjunctivitis 0 pinkeye 0 002 @ 14336539 n 0000 ~ 14259320 n 0000 | inflammation of the conjunctiva of the eye -14341563 26 n 01 corditis 0 001 @ 14336539 n 0000 | inflammation of the spermatic cord -14341652 26 n 01 costochondritis 0 001 @ 14336539 n 0000 | inflammation at the junction of a rib and its cartilage -14341769 26 n 01 dacryocystitis 0 001 @ 14336539 n 0000 | inflammation of the lacrimal sac causing obstruction of the tube draining tears into the nose -14341923 26 n 01 diverticulitis 0 001 @ 14336539 n 0000 | inflammation of a diverticulum in the digestive tract (especially the colon); characterized by painful abdominal cramping and fever and constipation -14342132 26 n 03 encephalitis 0 cephalitis 0 phrenitis 0 009 @ 14336539 n 0000 ~ 14342742 n 0000 ~ 14342882 n 0000 ~ 14343062 n 0000 ~ 14343302 n 0000 ~ 14343411 n 0000 ~ 14343597 n 0000 ~ 14343735 n 0000 ~ 14344033 n 0000 | inflammation of the brain usually caused by a virus; symptoms include headache and neck pain and drowsiness and nausea and fever (`phrenitis' is no longer in scientific use) -14342533 26 n 01 encephalomyelitis 0 001 @ 14336539 n 0000 | inflammation of the brain and spinal cord -14342638 26 n 01 endarteritis 0 001 @ 14336539 n 0000 | inflammation of the inner lining of an artery -14342742 26 n 01 acute_hemorrhagic_encephalitis 0 001 @ 14342132 n 0000 | encephalitis that resembles apoplexy due to blood extravasation -14342882 26 n 02 equine_encephalitis 0 equine_encephalomyelitis 0 001 @ 14342132 n 0000 | encephalitis caused by a virus that is transmitted by a mosquito from an infected horse -14343062 26 n 03 herpes_simplex_encephalitis 0 herpes_encephalitis 0 acute_inclusion_body_encephalitis 0 001 @ 14342132 n 0000 | common form of acute encephalitis caused by herpes simplex 1; usually affects the temporal and frontal lobes -14343302 26 n 01 leukoencephalitis 0 001 @ 14342132 n 0000 | inflammation of the white matter of the brain -14343411 26 n 03 meningoencephalitis 0 cerebromeningitis 0 encephalomeningitis 0 002 @ 14137829 n 0000 @ 14342132 n 0000 | inflammation of the brain and spinal cord and their meninges -14343597 26 n 01 panencephalitis 0 003 @ 14342132 n 0000 ~ 14344189 n 0000 ~ 14344720 n 0000 | diffuse inflammation of the entire brain -14343735 26 n 05 sleeping_sickness 0 sleepy_sickness 0 epidemic_encephalitis 0 lethargic_encephalitis 0 encephalitis_lethargica 0 001 @ 14342132 n 0000 | an encephalitis that was epidemic between 1915 and 1926; symptoms include paralysis of the extrinsic eye muscle and extreme muscular weakness -14344033 26 n 01 West_Nile_encephalitis 0 001 @ 14342132 n 0000 | encephalitis caused by the West Nile virus; can be fatal in humans and horses and birds -14344189 26 n 09 subacute_sclerosing_panencephalitis 0 SSPE 0 inclusion_body_encephalitis 0 subacute_inclusion_body_encephalitis 0 sclerosing_leukoencephalitis 0 subacute_sclerosing_leukoencephalitis 0 Bosin's_disease 0 Dawson's_encephalitis 0 Van_Bogaert_encephalitis 0 001 @ 14343597 n 0000 | a rare chronic progressive encephalitis caused by the measles virus and occurring primarily in children and young adults; death usually occurs within three years; characterized by primary measles infection before the age of two years -14344720 26 n 01 rubella_panencephalitis 0 001 @ 14343597 n 0000 | a rare loss of mental and physical skills in adolescents; associated with the rubella virus -14344881 26 n 01 endocervicitis 0 001 @ 14336539 n 0000 | inflammation of the mucous lining of the uterine cervix -14344997 26 n 01 enteritis 0 002 @ 14336539 n 0000 ~ 14345168 n 0000 | inflammation of the intestine (especially the small intestine); usually characterized by diarrhea -14345168 26 n 01 necrotizing_enteritis 0 001 @ 14344997 n 0000 | enteritis characterized by bloody diarrhea and severe abdominal pain -14345304 26 n 01 epicondylitis 0 002 @ 14336539 n 0000 ~ 14356720 n 0000 | painful inflammation of the muscles and soft tissues around an epicondyle -14345455 26 n 01 epididymitis 0 001 @ 14336539 n 0000 | painful inflammation of the epididymis -14345552 26 n 01 epiglottitis 0 001 @ 14336539 n 0000 | inflammation of the epiglottis; characterized by fever and a severe sore throat and difficulty in swallowing -14345719 26 n 01 episcleritis 0 001 @ 14336539 n 0000 | inflammation of the sclera of the eye -14345815 26 n 02 esophagitis 0 oesophagitis 0 001 @ 14336539 n 0000 | inflammation of the esophagus; often caused by gastroesophageal reflux -14345958 26 n 01 fibrositis 0 001 @ 14336539 n 0000 | inflammation of white fibrous tissues (especially muscle sheaths) -14346080 26 n 01 fibromyositis 0 001 @ 14336539 n 0000 | local inflammation of muscle and connective tissue -14346190 26 n 01 folliculitis 0 001 @ 14336539 n 0000 | inflammation of a hair follicle -14346280 26 n 01 funiculitis 0 001 @ 14336539 n 0000 | inflammation of a funiculus (especially an inflammation of the spermatic cord) -14346416 26 n 01 gastritis 0 003 @ 14336539 n 0000 ~ 14346606 n 0000 ~ 14346731 n 0000 | inflammation of the lining of the stomach; nausea and loss of appetite and discomfort after eating -14346606 26 n 01 acute_gastritis 0 001 @ 14346416 n 0000 | gastritis caused by ingesting an irritant (as too much aspirin) -14346731 26 n 01 chronic_gastritis 0 001 @ 14346416 n 0000 | persistent gastritis can be a symptom of a gastric ulcer or pernicious anemia or stomach cancer or other disorders -14346909 26 n 01 glossitis 0 004 @ 14336539 n 0000 ~ 14347045 n 0000 ~ 14347190 n 0000 ~ 14347334 n 0000 | inflammation of the tongue -14347045 26 n 01 acute_glossitis 0 001 @ 14346909 n 0000 | glossitis resulting from injury or infection and characterized by swelling and pain -14347190 26 n 01 chronic_glossitis 0 001 @ 14346909 n 0000 | glossitis with atrophy of tongue tissue; sometimes accompanies pernicious anemia -14347334 26 n 02 Moeller's_glossitis 0 glossodynia_exfoliativa 0 001 @ 14346909 n 0000 | a superficial form of glossitis marked by irregular red patches on the tongue and sensitivity to hot or spicy food -14347540 26 n 01 hydrarthrosis 0 002 @ 14336539 n 0000 ~ 14193325 n 0000 | inflammation and swelling of a movable joint because of excess synovial fluid -14347695 26 n 01 ileitis 0 001 @ 14336539 n 0000 | inflammation of the ileum -14347774 26 n 01 iridocyclitis 0 001 @ 14336539 n 0000 | inflammation of the iris and ciliary body of the eye -14347886 26 n 01 iridokeratitis 0 001 @ 14336539 n 0000 | inflammation of the iris and cornea of the eye -14347993 26 n 01 iritis 0 001 @ 14336539 n 0000 | inflammation of the iris -14348070 26 n 01 jejunitis 0 001 @ 14336539 n 0000 | inflammation of the jejunum of the small intestine -14348176 26 n 01 jejunoileitis 0 001 @ 14336539 n 0000 | inflammation of the jejunum and the ileum of the small intestine -14348300 26 n 01 keratitis 0 001 @ 14336539 n 0000 | inflammation of the cornea causing watery painful eyes and blurred vision -14348429 26 n 01 keratoconjunctivitis 0 001 @ 14336539 n 0000 | inflammation of the cornea and conjunctiva -14348538 26 n 01 keratoiritis 0 001 @ 14336539 n 0000 | inflammation of the cornea and the iris of the eye -14348647 26 n 01 keratoscleritis 0 001 @ 14336539 n 0000 | inflammation of the cornea and sclera of the eye -14348757 26 n 02 labyrinthitis 0 otitis_interna 0 001 @ 14351629 n 0000 | inflammation of the inner ear; can cause vertigo and vomiting -14348895 26 n 02 laminitis 0 founder 0 001 @ 14336539 n 0000 | inflammation of the laminated tissue that attaches the hoof to the foot of a horse -14349043 26 n 01 laryngitis 0 001 @ 14336539 n 0000 | inflammation of the mucous membrane of the larynx; characterized by hoarseness or loss of voice and coughing -14349208 26 n 01 laryngopharyngitis 0 001 @ 14336539 n 0000 | inflammation of the larynx and pharynx -14349311 26 n 01 laryngotracheobronchitis 0 001 @ 14336539 n 0000 | inflammation of the larynx and trachea and bronchial passageways -14349446 26 n 01 leptomeningitis 0 001 @ 14137829 n 0000 | inflammation of the leptomeninges -14349541 26 n 01 lymphadenitis 0 001 @ 14336539 n 0000 | inflammation of lymph nodes -14349628 26 n 01 lymphangitis 0 001 @ 14336539 n 0000 | inflammation of a lymph vessel -14349717 26 n 01 mastitis 0 001 @ 14336539 n 0000 | inflammation of a breast (or udder) -14349807 26 n 01 mastoiditis 0 001 @ 14336539 n 0000 | inflammation of the mastoid -14349892 26 n 02 metritis 0 endometritis 0 001 @ 14336539 n 0000 | inflammation of the lining of the uterus (of the endometrium) -14350023 26 n 01 monoplegia 0 001 @ 14558226 n 0000 | paralysis of a single limb -14350106 26 n 01 myelatelia 0 001 @ 14464005 n 0000 | any developmental defect of the spinal cord -14350206 26 n 01 myelitis 0 001 @ 14336539 n 0000 | inflammation of the spinal cord -14350292 26 n 01 myositis 0 005 @ 14336539 n 0000 ~ 14209348 n 0000 ~ 14209635 n 0000 ~ 14209836 n 0000 ~ 14350536 n 0000 | inflammation of muscle tissue -14350448 26 n 01 myometritis 0 001 @ 14336539 n 0000 | inflammation of the myometrium -14350536 26 n 03 trichinosis 0 trichiniasis 0 myositis_trichinosa 0 002 @ 14350292 n 0000 @ 14452616 n 0000 | infestation by trichina larvae that are transmitted by eating inadequately cooked meat (especially pork); larvae migrate from the intestinal tract to the muscles where they become encysted -14350837 26 n 01 neuritis 0 003 @ 14336539 n 0000 ~ 14353314 n 0000 ~ 14353479 n 0000 | inflammation of a nerve accompanied by pain and sometimes loss of function -14351002 26 n 01 oophoritis 0 001 @ 14336539 n 0000 | inflammation of one or both ovaries -14351094 26 n 01 orchitis 0 001 @ 14336539 n 0000 | inflammation of one or both testes; characterized by pain and swelling -14351219 26 n 01 ophthalmoplegia 0 001 @ 14558226 n 0000 | paralysis of the motor nerves of the eye -14351321 26 n 01 osteitis 0 003 @ 14336539 n 0000 ~ 14079971 n 0000 ~ 14351490 n 0000 | inflammation of a bone as a consequence of infection or trauma or degeneration -14351490 26 n 01 osteomyelitis 0 001 @ 14351321 n 0000 | an inflammation of bone and bone marrow (usually caused by bacterial infection) -14351629 26 n 01 otitis 0 004 @ 14336539 n 0000 ~ 14348757 n 0000 ~ 14351759 n 0000 ~ 14351886 n 0000 | inflammation of the ear -14351759 26 n 01 otitis_externa 0 001 @ 14351629 n 0000 | inflammation of the external ear (including auricle and ear canal) -14351886 26 n 01 otitis_media 0 001 @ 14351629 n 0000 | inflammation of the middle ear; common in children -14351995 26 n 01 ovaritis 0 001 @ 14336539 n 0000 | inflammation of the ovaries -14352077 26 n 01 otorrhea 0 001 @ 14204950 n 0000 | discharge from the external ear -14352163 26 n 02 ozena 0 ozaena 0 001 @ 14070360 n 0000 | a chronic disease of the nose characterized by a foul-smelling nasal discharge and atrophy of nasal structures -14352334 26 n 01 pancreatitis 0 001 @ 14336539 n 0000 | inflammation of the pancreas; usually marked by abdominal pain -14352455 26 n 01 parametritis 0 001 @ 14336539 n 0000 | inflammation of connective tissue adjacent to the uterus -14352570 26 n 01 parotitis 0 002 @ 14336539 n 0000 #p 14138178 n 0000 | inflammation of one or both parotid glands -14352687 26 n 02 peritonitis 0 peritoneal_inflammation 0 001 @ 14336539 n 0000 | inflammation of the peritoneum -14352801 26 n 01 phalangitis 0 001 @ 14336539 n 0000 | inflammation of a finger or toe -14352890 26 n 01 phlebitis 0 002 @ 14336539 n 0000 ~ 14353862 n 0000 | inflammation of a vein (usually in the legs) -14353008 26 n 02 phlebothrombosis 0 venous_thrombosis 0 003 @ 14102075 n 0000 ;c 14046202 n 0000 ;c 06063588 n 0000 | thrombosis of a vein without prior inflammation of the vein; associated with sluggish blood flow (as in prolonged bedrest or pregnancy or surgery) or with rapid coagulation of the blood -14353314 26 n 02 polyneuritis 0 multiple_neuritis 0 002 @ 14350837 n 0000 ~ 14353622 n 0000 | inflammation of many or all of the peripheral nerves (as in leprosy) -14353479 26 n 01 retrobulbar_neuritis 0 001 @ 14350837 n 0000 | inflammation of the optic nerve behind the eye; common in multiple sclerosis -14353622 26 n 03 Guillain-Barre_syndrome 0 infectious_polyneuritis 0 Landry's_paralysis 0 001 @ 14353314 n 0000 | a form of peripheral polyneuritis characterized by pain and weakness and sometimes paralysis of the limbs; cause is unknown -14353862 26 n 01 thrombophlebitis 0 001 @ 14352890 n 0000 | phlebitis in conjunction with the formation of a blood clot (thrombus) -14353995 26 n 01 pneumonitis 0 001 @ 14336539 n 0000 | inflammation of the lungs; caused by a virus or an allergic reaction -14354121 26 n 01 posthitis 0 001 @ 14336539 n 0000 | inflammation of the foreskin of the penis; usually caused by bacterial infection -14354257 26 n 01 proctitis 0 001 @ 14336539 n 0000 | inflammation of the rectum; marked by bloody stools and a frequent urge to defecate; frequently associated with Crohn's disease or ulcerative colitis -14354462 26 n 01 prostatitis 0 001 @ 14336539 n 0000 | inflammation of the prostate gland characterized by perineal pain and irregular urination and (if severe) chills and fever -14354642 26 n 01 rachitis 1 002 @ 14336539 n 0000 + 02546316 a 0102 | inflammation of the vertebral column -14354751 26 n 01 radiculitis 0 001 @ 14336539 n 0000 | inflammation of the radicle of a nerve -14354847 26 n 01 chorioretinitis 0 001 @ 14354960 n 0000 | inflammation of the choroid layer behind the retina -14354960 26 n 01 retinitis 0 002 @ 14336539 n 0000 ~ 14354847 n 0000 | inflammation of the retina -14355060 26 n 02 rhinitis 0 coryza 0 002 @ 14336539 n 0000 ~ 14533937 n 0000 | an inflammation of the mucous membrane lining the nose (usually associated with nasal discharge) -14355238 26 n 01 sinusitis 0 002 @ 14336539 n 0000 ~ 14355356 n 0000 | inflammation of one of the paranasal sinuses -14355356 26 n 01 pansinusitis 0 001 @ 14355238 n 0000 | inflammation of all of the paranasal sinuses -14355459 26 n 01 salpingitis 0 001 @ 14336539 n 0000 | inflammation of a Fallopian tube (usually the result of infection spreading from the vagina or uterus) or of a Eustachian tube -14355643 26 n 01 scleritis 0 001 @ 14336539 n 0000 | inflammation of the sclera -14355725 26 n 01 sialadenitis 0 001 @ 14336539 n 0000 | inflammation of the salivary glands -14355819 26 n 01 splenitis 0 001 @ 14336539 n 0000 | inflammation of the spleen -14355901 26 n 01 spondylitis 0 002 @ 14336539 n 0000 ~ 14220474 n 0000 | inflammation of a spinal joint; characterized by pain and stiffness -14356044 26 n 01 stomatitis 0 002 @ 14336539 n 0000 ~ 14356167 n 0000 | inflammation of the mucous membrane of the mouth -14356167 26 n 01 vesicular_stomatitis 0 001 @ 14356044 n 0000 | a disease of horses, cattle, swine, and occasionally human beings; caused by the vesiculovirus -14356328 26 n 01 synovitis 0 002 @ 14336539 n 0000 ~ 14356993 n 0000 | inflammation of the synovial membrane that lines a synovial joint; results in pain and swelling -14356497 26 n 01 tarsitis 0 001 @ 14336539 n 0000 | inflammation of the eyelid -14356578 26 n 03 tendinitis 0 tendonitis 0 tenonitis 0 003 @ 14336539 n 0000 ~ 14356720 n 0000 ~ 14356993 n 0000 | inflammation of a tendon -14356720 26 n 03 tennis_elbow 0 lateral_epicondylitis 0 lateral_humeral_epicondylitis 0 002 @ 14356578 n 0000 @ 14345304 n 0000 | painful inflammation of the tendon at the outer border of the elbow resulting from overuse of lower arm muscles (as in twisting of the hand) -14356993 26 n 03 tenosynovitis 0 tendosynovitis 0 tendonous_synovitis 0 002 @ 14356578 n 0000 @ 14356328 n 0000 | inflammation of a tendon and its enveloping sheath -14357160 26 n 01 thyroiditis 0 001 @ 14336539 n 0000 | inflammation of the thyroid gland -14357251 26 n 01 tonsillitis 0 001 @ 14336539 n 0000 | inflammation of the tonsils (especially the palatine tonsils) -14357370 26 n 01 tracheitis 0 001 @ 14336539 n 0000 | inflammation of the trachea -14357454 26 n 01 tracheobronchitis 0 001 @ 14336539 n 0000 | common respiratory infection characterized by inflammation of the trachea and the bronchi -14357607 26 n 01 tympanitis 0 001 @ 14336539 n 0000 | inflammation of the inner ear -14357693 26 n 01 ulitis 0 001 @ 14336539 n 0000 | inflammation of the gums -14357770 26 n 01 ureteritis 0 001 @ 14336539 n 0000 | inflammation of the ureter -14357853 26 n 01 uveitis 0 001 @ 14336539 n 0000 | inflammation of the uvea of the eye -14357942 26 n 01 uvulitis 0 001 @ 14336539 n 0000 | inflammation of the uvula -14358022 26 n 05 vaccinia 1 vaccina 0 variola_vaccine 0 variola_vaccinia 0 variola_vaccina 0 002 @ 14174549 n 0000 ~ 14089719 n 0000 | a local infection induced in humans by inoculation with the virus causing cowpox in order to confer resistance to smallpox; normally lasts three weeks and leaves a pitted scar -14358335 26 n 01 vaginitis 0 002 @ 14336539 n 0000 #p 14181713 n 0000 | inflammation of the vagina (usually associated with candidiasis) -14358474 26 n 01 valvulitis 0 001 @ 14336539 n 0000 | inflammation of a valve (especially of a cardiac valve as a consequence of rheumatic fever) -14358622 26 n 01 vasculitis 0 001 @ 14336539 n 0000 | inflammation of a blood vessel -14358709 26 n 01 vasovesiculitis 0 001 @ 14336539 n 0000 | inflammation of the vas deferens and seminal vesicles; usually occurring with prostatitis -14358860 26 n 01 vesiculitis 0 001 @ 14336539 n 0000 | inflammation of a seminal vesicle (usually in conjunction with prostatitis) -14358993 26 n 01 vulvitis 0 001 @ 14336539 n 0000 | inflammation of the vulva -14359073 26 n 01 vulvovaginitis 0 001 @ 14336539 n 0000 | inflammation of the vulva and the vagina -14359174 26 n 02 cough 0 coughing 0 004 @ 14299637 n 0000 #p 14145095 n 0000 + 00005815 v 0201 + 00005815 v 0101 | a sudden noisy expulsion of air from the lungs that clears the air passages; a common symptom of upper respiratory infection or bronchitis or pneumonia or tuberculosis -14359459 26 n 03 hiccup 0 hiccough 0 singultus 0 005 @ 14299637 n 0000 @ 00863513 n 0000 ;u 06295235 n 0000 + 00003826 v 0202 + 00003826 v 0101 | (usually plural) the state of having reflex spasms of the diaphragm accompanied by a rapid closure of the glottis producing an audible sound; sometimes a symptom of indigestion; "how do you cure the hiccups?" -14359816 26 n 01 meningism 0 001 @ 14299637 n 0000 | symptoms that mimic those of meningitis but without inflammation of the meninges -14359952 26 n 02 nausea 0 sickness 1 007 @ 14299637 n 0000 + 02545689 a 0204 + 02545689 a 0102 + 02195191 v 0102 ~ 14203346 n 0000 ~ 14360156 n 0000 ~ 14360320 n 0000 | the state that precedes vomiting -14360156 26 n 01 morning_sickness 0 002 @ 14359952 n 0000 #p 14046202 n 0000 | nausea early in the day; a characteristic symptom in the early months of pregnancy -14360320 26 n 03 queasiness 0 squeamishness 0 qualm 0 003 @ 14359952 n 0000 + 00984333 a 0205 + 02545689 a 0103 | a mild state of nausea -14360459 26 n 03 spasm 0 cramp 0 muscle_spasm 0 010 @ 14299637 n 0000 ~ 14360742 n 0000 ~ 14360915 n 0000 ~ 14361064 n 0000 ~ 14361182 n 0000 ~ 14361415 n 0000 ~ 14361513 n 0000 ~ 14361664 n 0000 ~ 14571714 n 0000 ~ 14572265 n 0000 | a painful and involuntary muscular contraction -14360742 26 n 02 charley_horse 0 charley-horse 0 002 @ 14360459 n 0000 ;u 07075172 n 0000 | a muscular cramp (especially in the thigh or calf) following vigorous exercise -14360915 26 n 02 writer's_cramp 0 graphospasm 0 001 @ 14360459 n 0000 | muscular spasms of thumb and forefinger while writing with a pen or pencil -14361064 26 n 01 blepharospasm 0 001 @ 14360459 n 0000 | spasm of the eyelid muscle resulting in closure of the eye -14361182 26 n 04 crick 0 kink 0 rick 0 wrick 0 005 @ 14360459 n 0000 ;r 08860123 n 0000 + 00091124 v 0405 + 00091124 v 0306 + 00025510 v 0101 | a painful muscle spasm especially in the neck or back (`rick' and `wrick' are British) -14361415 26 n 01 myoclonus 0 001 @ 14360459 n 0000 | a clonic spasm of a muscle or muscle group -14361513 26 n 01 opisthotonos 0 001 @ 14360459 n 0000 | severe spasm in which the back arches and the head bends back and heels flex toward the back -14361664 26 n 03 twitch 0 twitching 0 vellication 0 010 @ 14360459 n 0000 + 02120140 v 0303 + 01891817 v 0202 + 00009631 v 0201 + 01891817 v 0102 + 00009631 v 0101 ~ 14361972 n 0000 ~ 14362075 n 0000 ~ 14362179 n 0000 ~ 14363367 n 0000 | a sudden muscle spasm; especially one caused by a nervous condition -14361972 26 n 01 tic 0 001 @ 14361664 n 0000 | a local and habitual twitching especially in the face -14362075 26 n 01 blepharism 0 001 @ 14361664 n 0000 | condition in which a person blinks continuously -14362179 26 n 01 fibrillation 0 004 @ 14361664 n 0000 + 00009884 v 0101 ~ 14362373 n 0000 ~ 14363139 n 0000 | muscular twitching involving individual muscle fibers acting without coordination -14362373 26 n 01 atrial_fibrillation 0 002 @ 14362179 n 0000 @ 14110674 n 0000 | fibrillation of the muscles of the atria of the heart -14362510 26 n 01 bradycardia 0 001 @ 14110674 n 0000 | abnormally slow heartbeat -14362593 26 n 04 heart_block 0 Adams-Stokes_syndrome 0 Stokes-Adams_syndrome 0 atrioventricular_block 0 001 @ 14110674 n 0000 | recurrent sudden attacks of unconsciousness caused by impaired conduction of the impulse that regulates the heartbeat -14362841 26 n 02 premature_ventricular_contraction 0 PVC 0 001 @ 14110674 n 0000 | irregularity of cardiac rhythm; recurrent occurrences can be a precursor of ventricular fibrillation -14363027 26 n 01 tachycardia 0 001 @ 14110674 n 0000 | abnormally rapid heartbeat (over 100 beats per minute) -14363139 26 n 01 ventricular_fibrillation 0 002 @ 14362179 n 0000 @ 14110674 n 0000 | fibrillation of heart muscles resulting in interference with rhythmic contractions of the ventricles and possibly leading to cardiac arrest -14363367 26 n 01 fasciculation 0 001 @ 14361664 n 0000 | muscular twitching of contiguous groups of muscle fibers -14363483 26 n 03 scar 0 cicatrix 0 cicatrice 0 010 @ 14299637 n 0000 + 01551679 v 0201 + 01551679 v 0202 + 01551195 v 0101 + 01274745 v 0101 ~ 14363785 n 0000 ~ 14363913 n 0000 ~ 14364065 n 0000 ~ 14364217 n 0000 ~ 14364306 n 0000 | a mark left (usually on the skin) by the healing of injured tissue -14363785 26 n 01 callus 0 002 @ 14363483 n 0000 ~ 02468504 n 0000 | bony tissue formed during the healing of a fractured bone -14363913 26 n 02 keloid 0 cheloid 0 001 @ 14363483 n 0000 | raised pinkish scar tissue at the site of an injury; results from excessive tissue repair -14364065 26 n 01 pockmark 0 001 @ 14363483 n 0000 | a scar or pit on the skin that is left by a pustule of smallpox or acne or other eruptive disease -14364217 26 n 01 sword-cut 0 001 @ 14363483 n 0000 | a scar from a cut made by a sword -14364306 26 n 01 vaccination 0 002 @ 14363483 n 0000 + 00086835 v 0104 | the scar left following inoculation with a vaccine -14364432 26 n 01 hardening 0 003 @ 14299637 n 0000 ~ 14364566 n 0000 ~ 14364980 n 0000 | abnormal hardening or thickening of tissue -14364566 26 n 02 callosity 0 callus 1 005 @ 14364432 n 0000 + 00255880 v 0201 + 00255752 v 0201 + 02447569 a 0102 ~ 14364802 n 0000 | an area of skin that is thick or hard from continual pressure or friction (as the sole of the foot) -14364802 26 n 02 corn 0 clavus 0 001 @ 14364566 n 0000 | a hard thickening of the skin (especially on the top or sides of the toes) caused by the pressure of ill-fitting shoes -14364980 26 n 01 calcification 0 003 @ 14364432 n 0000 + 00498662 v 0101 + 00498988 v 0101 | tissue hardened by deposition of lime salts -14365119 26 n 04 musca_volitans 0 muscae_volitantes 0 floater 0 spots 0 001 @ 14299637 n 0000 | spots before the eyes caused by opaque cell fragments in the vitreous humor and lens; "floaters seem to drift through the field of vision" -14365356 26 n 05 fever 0 febrility 0 febricity 0 pyrexia 0 feverishness 0 006 @ 14299637 n 0000 + 02544892 a 0501 + 02726715 a 0502 + 03105742 a 0401 + 02544892 a 0102 ~ 14365619 n 0000 | a rise in the temperature of the body; frequently a symptom of infection -14365619 26 n 01 hyperpyrexia 0 002 @ 14044174 n 0000 @ 14365356 n 0000 | extremely high fever (especially in children) -14365741 26 n 03 atrophy 0 wasting 0 wasting_away 0 005 @ 14299637 n 0000 + 00093979 v 0101 ~ 14105629 n 0000 ~ 14135181 n 0000 ~ 14571377 n 0000 | a decrease in size of an organ caused by disease or disuse -14365950 26 n 01 dysplasia 0 008 @ 14501726 n 0000 + 02715567 a 0101 ~ 14023901 n 0000 ~ 14366225 n 0000 ~ 14366759 n 0000 ~ 14368805 n 0000 ~ 14369064 n 0000 ~ 14369194 n 0000 | abnormal development (of organs or cells) or an abnormal structure resulting from such growth -14366225 26 n 01 fibrous_dysplasia_of_bone 0 003 @ 14365950 n 0000 ~ 14366486 n 0000 ~ 14366633 n 0000 | a disturbance in which bone that is undergoing lysis is replaced by an abnormal proliferation of fibrous tissue resulting in bone lesions or skin lesions -14366486 26 n 02 Albright's_disease 0 polyostotic_fibrous_dysplasia 0 001 @ 14366225 n 0000 | fibrous dysplasia of bone affecting multiple bones -14366633 26 n 01 monostotic_fibrous_dysplasia 0 001 @ 14366225 n 0000 | fibrous dysplasia of bone confined to a single bone -14366759 26 n 01 hypertrophy 0 009 @ 14365950 n 0000 + 00094153 v 0101 ~ 14367005 n 0000 ~ 14367080 n 0000 ~ 14367249 n 0000 ~ 14367341 n 0000 ~ 14368192 n 0000 ~ 14368288 n 0000 ~ 14368483 n 0000 | abnormal enlargement of a body part or organ -14367005 26 n 01 adenomegaly 0 001 @ 14366759 n 0000 | gland enlargement -14367080 26 n 01 cor_pulmonale 0 001 @ 14366759 n 0000 | enlargement of the right ventricle of the heart due to disease of the lungs or of the pulmonary blood vessels -14367249 26 n 01 dactylomegaly 0 001 @ 14366759 n 0000 | abnormally large fingers or toes -14367341 26 n 01 elephantiasis 0 004 @ 14366759 n 0000 ~ 14367556 n 0000 ~ 14367649 n 0000 ~ 14367797 n 0000 | hypertrophy of certain body parts (usually legs and scrotum); the end state of the disease filariasis -14367556 26 n 01 elephantiasis_neuromatosa 0 001 @ 14367341 n 0000 | hypertrophy of a limb -14367649 26 n 02 elephantiasis_scroti 0 chyloderma 0 001 @ 14367341 n 0000 | swelling of the scrotum resulting from chronic lymphatic obstruction -14367797 26 n 02 nevoid_elephantiasis 0 pachyderma 0 002 @ 14367341 n 0000 @ 14151139 n 0000 | thickening of the skin (usually unilateral on an extremity) caused by congenital enlargement of lymph vessel and lymph vessel obstruction -14368032 26 n 01 filariasis 0 001 @ 14070360 n 0000 | a disease caused by nematodes in the blood or tissues of the body causing blockage of lymphatic vessels -14368192 26 n 01 splenomegaly 0 001 @ 14366759 n 0000 | an abnormal enlargement of the spleen -14368288 26 n 03 giantism 0 gigantism 0 overgrowth 0 002 @ 14366759 n 0000 %p 14077454 n 0000 | excessive size; usually caused by excessive secretion of growth hormone from the pituitary gland -14368483 26 n 02 acromegaly 0 acromegalia 0 003 @ 14366759 n 0000 + 02140834 a 0101 %p 14077454 n 0000 | enlargement of bones of hands and feet and face; often accompanied by headache and muscle pain and emotional disturbances; caused by overproduction of growth hormone by the anterior pituitary gland (due to a tumor) -14368805 26 n 01 hyperplasia 0 002 @ 14365950 n 0000 ~ 14368917 n 0000 | abnormal increase in number of cells -14368917 26 n 02 benign_prostatic_hyperplasia 0 BPH 0 001 @ 14368805 n 0000 | enlarged prostate; appears to be part of the natural aging process -14369064 26 n 01 hypoplasia 0 001 @ 14365950 n 0000 | underdevelopment of an organ because of a decrease in the number of cells -14369194 26 n 01 anaplasia 0 002 @ 14365950 n 0000 + 02621246 a 0101 | loss of structural differentiation within a cell or group of cells often with increased capacity for multiplication, as in a malignant tumor -14369408 26 n 01 apnea 0 003 @ 14299637 n 0000 ~ 14369530 n 0000 ~ 14370267 n 0000 | transient cessation of respiration -14369530 26 n 01 periodic_apnea_of_the_newborn 0 001 @ 14369408 n 0000 | irregular breathing of newborns; periods of rapid breathing followed by apnea; believed to be associated with sudden infant death syndrome -14369744 26 n 02 dyspnea 0 dyspnoea 0 005 @ 14299637 n 0000 + 00267871 a 0205 + 00267871 a 0104 ~ 14369913 n 0000 ~ 14370122 n 0000 | difficult or labored respiration -14369913 26 n 01 orthopnea 0 001 @ 14369744 n 0000 | form of dyspnea in which the person can breathe comfortably only when standing or sitting erect; associated with asthma and emphysema and angina pectoris -14370122 26 n 03 shortness_of_breath 0 SOB 0 breathlessness 0 003 @ 14369744 n 0000 + 00096595 a 0301 + 00267871 a 0301 | a dyspneic condition -14370267 26 n 01 sleep_apnea 0 003 @ 14369408 n 0000 @ 14297696 n 0000 ~ 14310292 n 0000 | apnea that occurs during sleep -14370391 26 n 01 cerebral_hemorrhage 0 002 @ 14288235 n 0000 #p 14082303 n 0000 | bleeding from a ruptured blood vessel in the brain -14370526 26 n 01 blood_extravasation 0 002 @ 14288235 n 0000 @ 13478813 n 0000 | the leakage of blood from a vessel into tissues surrounding it; can occur in injuries or burns or allergic reactions -14370726 26 n 01 hyphema 0 001 @ 14288235 n 0000 | bleeding into the interior chamber of the eye -14370825 26 n 01 metrorrhagia 0 001 @ 14288235 n 0000 | bleeding from the uterus that is not due to menstruation; usually indicative of disease (as cervical cancer) -14370992 26 n 02 nosebleed 0 epistaxis 0 001 @ 14288235 n 0000 | bleeding from the nose -14371082 26 n 01 ulemorrhagia 0 001 @ 14288235 n 0000 | bleeding of the gums -14371161 26 n 02 constipation 0 irregularity 0 006 @ 14299637 n 0000 + 00594146 a 0201 + 00074558 v 0101 ~ 14371449 n 0000 ~ 14371620 n 0000 ~ 14371770 n 0000 | irregular and infrequent or difficult evacuation of the bowels; can be a symptom of intestinal obstruction or diverticulitis -14371449 26 n 01 dyschezia 0 001 @ 14371161 n 0000 | difficulty in defecating (usually as a consequence of long continued voluntary suppression of the urge to defecate) -14371620 26 n 01 fecal_impaction 0 001 @ 14371161 n 0000 | accumulation of hardened feces in the rectum or lower colon which the person cannot move -14371770 26 n 01 obstipation 0 002 @ 14371161 n 0000 + 00074730 v 0101 | severe constipation resulting from an obstruction in the intestines -14371913 26 n 04 diarrhea 0 diarrhoea 0 looseness_of_the_bowels 0 looseness 0 009 @ 14299637 n 0000 #p 14129999 n 0000 + 00638841 a 0402 + 00638622 a 0204 + 00638622 a 0202 + 00638622 a 0103 + 00638622 a 0101 ~ 14372286 n 0000 ~ 14372399 n 0000 | frequent and watery bowel movements; can be a symptom of infection or food poisoning or colitis or a gastrointestinal tumor -14372286 26 n 02 the_shits 0 the_trots 0 002 @ 14371913 n 0000 ;u 07157273 n 0000 | obscene terms for diarrhea -14372399 26 n 01 Montezuma's_revenge 0 001 @ 14371913 n 0000 | diarrhea contracted in Mexico or Central America -14372513 26 n 04 dizziness 0 giddiness 0 lightheadedness 0 vertigo 0 005 @ 14299637 n 0000 + 02544048 a 0404 + 02544525 a 0305 + 02544048 a 0202 + 02544048 a 0101 | a reeling sensation; a feeling that you are about to fall -14372738 26 n 02 anemia 1 anaemia 1 003 @ 14299637 n 0000 + 02324781 a 0202 + 02324781 a 0101 | a lack of vitality -14372855 26 n 01 wheeziness 0 002 @ 14299637 n 0000 + 01174048 a 0103 | presence of abnormal high-pitched sound heard with a stethoscope when an airway is blocked (as in asthma or chronic bronchitis) -14373057 26 n 01 withdrawal_symptom 0 001 @ 14299637 n 0000 | any physical or psychological disturbance (as sweating or depression) experienced by a drug addict when deprived of the drug -14373246 26 n 01 thrombus 0 002 @ 05402091 n 0000 #p 14102075 n 0000 | a blood clot formed within a blood vessel and remaining attached to its place of origin -14373407 26 n 01 embolus 0 003 @ 05402091 n 0000 #p 14101083 n 0000 + 02992453 a 0101 | an abnormal particle (e.g. an air bubble or part of a clot) circulating in the blood -14373582 26 n 04 psychological_state 0 psychological_condition 0 mental_state 0 mental_condition 0 024 @ 13920835 n 0000 ;c 06136258 n 0000 ~ 05669934 n 0000 ~ 14016114 n 0000 ~ 14026166 n 0000 ~ 14026285 n 0000 ~ 14026376 n 0000 ~ 14026592 n 0000 ~ 14030291 n 0000 ~ 14285276 n 0000 ~ 14374273 n 0000 ~ 14374432 n 0000 ~ 14375241 n 0000 ~ 14375363 n 0000 ~ 14375576 n 0000 ~ 14376855 n 0000 ~ 14379130 n 0000 ~ 14380140 n 0000 ~ 14403107 n 0000 ~ 14404160 n 0000 ~ 14405225 n 0000 ~ 14406573 n 0000 ~ 14407536 n 0000 ~ 14416845 n 0000 | (psychology) a mental condition in which the qualities of a state are relatively constant even though the state itself may be dynamic; "a manic state" -14374273 26 n 01 morale 0 001 @ 14373582 n 0000 | a state of individual psychological well-being based upon a sense of confidence and usefulness and purpose -14374432 26 n 02 anxiety 0 anxiousness 0 006 @ 14373582 n 0000 ;c 06055946 n 0000 ~ 14374764 n 0000 ~ 14375005 n 0000 ~ 14375166 n 0000 ~ 14405931 n 0000 | (psychiatry) a relatively permanent state of worry and nervousness occurring in a variety of mental disorders, usually accompanied by compulsive behavior or attacks of panic -14374764 26 n 01 castration_anxiety 0 002 @ 14374432 n 0000 ;c 00704305 n 0000 | (psychoanalysis) anxiety resulting from real or imagined threats to your sexual functions; originally applied only to men but can in principle apply to women -14375005 26 n 02 hypochondria 0 hypochondriasis 0 002 @ 14374432 n 0000 + 01584164 a 0102 | chronic and abnormal anxiety about imaginary symptoms and ailments -14375166 26 n 01 overanxiety 0 001 @ 14374432 n 0000 | excessive anxiety -14375241 26 n 01 hallucinosis 0 001 @ 14373582 n 0000 | a mental state in which the person has continual hallucinations -14375363 26 n 01 identity_crisis 0 001 @ 14373582 n 0000 | distress and disorientation (especially in adolescence) resulting from conflicting pressures and uncertainty about one's self and one's role in society -14375576 26 n 02 nervousness 0 nerves 0 004 @ 14373582 n 0000 + 02456157 a 0102 ~ 14375761 n 0000 ~ 14375890 n 0000 | an uneasy psychological state; "he suffered an attack of nerves" -14375761 26 n 03 jitters 0 heebie-jeebies 0 screaming_meemies 0 002 @ 14375576 n 0000 ;u 07157273 n 0000 | extreme nervousness -14375890 26 n 03 strain 1 mental_strain 0 nervous_strain 0 003 @ 14375576 n 0000 ;c 06136258 n 0000 ~ 14376188 n 0000 | (psychology) nervousness resulting from mental stress; "his responsibilities were a constant strain"; "the mental strain of staying alert hour after hour was too much for him" -14376188 26 n 03 tension 3 tenseness 2 stress 1 006 @ 14375890 n 0000 ;c 06136258 n 0000 + 01798452 v 0303 + 02405326 a 0201 ~ 14376497 n 0000 ~ 14376695 n 0000 | (psychology) a state of mental or emotional strain or suspense; "he suffered from fatigue and emotional tension"; "stress is a vasoconstrictor" -14376497 26 n 01 yips 0 001 @ 14376188 n 0000 | nervous tension that causes an athlete to fail (especially causes golfers to miss short putts); "to avoid the yips he changed his style of putting" -14376695 26 n 01 breaking_point 0 002 @ 14376188 n 0000 ;c 06136258 n 0000 | (psychology) stress at which a person breaks down or a situation becomes crucial -14376855 26 n 02 delusion 0 psychotic_belief 0 010 @ 14373582 n 0000 ;c 06136258 n 0000 + 01583880 a 0101 + 02575082 v 0103 ~ 14377177 n 0000 ~ 14377375 n 0000 ~ 14377617 n 0000 ~ 14378712 n 0000 ~ 14378897 n 0000 ~ 14379017 n 0000 | (psychology) an erroneous belief that is held in the face of evidence to the contrary -14377177 26 n 01 delusions_of_grandeur 0 002 @ 14376855 n 0000 #p 14392318 n 0000 | a delusion (common in paranoia) that you are much greater and more powerful and influential than you really are -14377375 26 n 01 delusions_of_persecution 0 001 @ 14376855 n 0000 | a delusion (common in paranoia) that others are out to get you and frustrate and embarrass you or inflict suffering on you; a complicated conspiracy is frequently imagined -14377617 26 n 01 hallucination 0 006 @ 14376855 n 0000 + 02117649 v 0101 ~ 14377830 n 0000 ~ 14378177 n 0000 ~ 14378311 n 0000 ~ 14378439 n 0000 | illusory perception; a common symptom of severe mental disorder -14377830 26 n 02 auditory_hallucination 0 acousma 0 001 @ 14377617 n 0000 | illusory auditory perception of strange nonverbal sounds -14377965 26 n 01 chromatism 0 001 @ 14378439 n 0000 | hallucinatory perception of colored lights -14378064 26 n 01 pink_elephants 0 001 @ 14378439 n 0000 | any visual hallucination arising from heavy drinking -14378177 26 n 01 pseudohallucination 0 001 @ 14377617 n 0000 | an image vivid enough to be a hallucination but recognized as unreal -14378311 26 n 01 trip 0 002 @ 14377617 n 0000 + 01200934 v 0101 | a hallucinatory experience induced by drugs; "an acid trip" -14378439 26 n 01 visual_hallucination 0 004 @ 14377617 n 0000 ~ 14377965 n 0000 ~ 14378064 n 0000 ~ 14378586 n 0000 | illusory visual perception -14378586 26 n 01 zoopsia 0 001 @ 14378439 n 0000 | visual hallucination of animals; sometimes occurring in delirium tremens -14378712 26 n 02 nihilistic_delusion 0 nihilism 1 001 @ 14376855 n 0000 | the delusion that things (or everything, including the self) do not exist; a sense that everything is unreal -14378897 26 n 01 somatic_delusion 0 001 @ 14376855 n 0000 | a delusion concerning the body image or parts of the body -14379017 26 n 01 zoanthropy 0 001 @ 14376855 n 0000 | the delusion that you have assumed the form of an animal -14379130 26 n 01 mental_health 0 004 @ 14373582 n 0000 ! 14380140 n 0101 ~ 14379360 n 0000 ~ 14379501 n 0000 | the psychological state of someone who is functioning at a satisfactory level of emotional and behavioral adjustment -14379360 26 n 02 mental_soundness 0 mental_balance 0 001 @ 14379130 n 0000 | the healthy psychological state of someone with good judgment -14379501 26 n 02 sanity 0 saneness 0 007 @ 14379130 n 0000 + 01926229 a 0202 + 02073443 a 0201 + 02073443 a 0101 ! 14395018 n 0101 ~ 14379703 n 0000 ~ 14379829 n 0000 | normal or sound powers of mind -14379703 26 n 01 lucidity 0 003 @ 14379501 n 0000 + 02073970 a 0101 + 00621058 v 010c | a lucid state of mind; not confused -14379829 26 n 03 rationality 0 reason 0 reasonableness 0 005 @ 14379501 n 0000 + 01926229 a 0301 + 00772189 v 0202 + 00634472 v 0201 + 01925372 a 0101 | the state of having good sense and sound judgment; "his rationality may have been impaired"; "he had to rely less on reason than on rousing their emotions" -14380140 26 n 03 mental_illness 0 mental_disease 0 psychopathy 0 006 @ 14373582 n 0000 + 02077253 a 0301 ! 14379130 n 0101 ~ 14392318 n 0000 ~ 14395018 n 0000 ~ 14398067 n 0000 | any disease of the mind; the psychological state of someone who has emotional or behavioral problems serious enough to require psychiatric intervention -14380473 26 n 01 anxiety_disorder 0 006 @ 14083790 n 0000 ~ 14380717 n 0000 ~ 14381017 n 0000 ~ 14381249 n 0000 ~ 14381416 n 0000 ~ 14386130 n 0000 | a cover term for a variety of mental disorders in which severe anxiety is a salient symptom -14380717 26 n 03 generalized_anxiety_disorder 0 GAD 0 anxiety_reaction 0 001 @ 14380473 n 0000 | an anxiety disorder characterized by chronic free-floating anxiety and such symptoms as tension or sweating or trembling or lightheadedness or irritability etc that has lasted for more than six months -14381017 26 n 01 obsessive-compulsive_disorder 0 003 @ 14380473 n 0000 + 10349090 n 0101 + 01585312 a 0101 | an anxiety disorder characterized by recurrent and persistent thoughts and feelings and repetitive, ritualized behaviors -14381249 26 n 01 panic_disorder 0 001 @ 14380473 n 0000 | an anxiety disorder characterized by unpredictable panic attacks; the attacks are usually severe but brief -14381416 26 n 03 phobia 0 phobic_disorder 0 phobic_neurosis 0 005 @ 14380473 n 0000 + 01585679 a 0101 ~ 14381840 n 0000 ~ 14382238 n 0000 ~ 14385403 n 0000 | an anxiety disorder characterized by extreme and irrational fear of simple things or social situations; "phobic disorder is a general term for all phobias" -14381732 26 n 01 acarophobia 0 001 @ 14384796 n 0000 | a morbid fear of small insects and mites and worms -14381840 26 n 01 agoraphobia 0 002 @ 14381416 n 0000 + 00078705 a 0101 | a morbid fear of open spaces (as fear of being caught alone in some public place) -14381997 26 n 01 androphobia 0 001 @ 14385403 n 0000 | a morbid fear of men -14382075 26 n 01 arachnophobia 0 001 @ 14384796 n 0000 | a morbid fear of spiders -14382159 26 n 01 gynophobia 0 001 @ 14385403 n 0000 | a morbid fear of women -14382238 26 n 01 simple_phobia 0 022 @ 14381416 n 0000 ~ 14382766 n 0000 ~ 14382871 n 0000 ~ 14382967 n 0000 ~ 14383067 n 0000 ~ 14383163 n 0000 ~ 14383252 n 0000 ~ 14383362 n 0000 ~ 14383444 n 0000 ~ 14383544 n 0000 ~ 14383759 n 0000 ~ 14383848 n 0000 ~ 14383961 n 0000 ~ 14384041 n 0000 ~ 14384133 n 0000 ~ 14384227 n 0000 ~ 14384351 n 0000 ~ 14384431 n 0000 ~ 14384509 n 0000 ~ 14384602 n 0000 ~ 14384684 n 0000 ~ 14384796 n 0000 | any phobia (other than agoraphobia) associated with relatively simple well-defined stimuli -14382766 26 n 01 acrophobia 0 002 @ 14382238 n 0000 + 00078329 a 0101 | a morbid fear of great heights -14382871 26 n 01 algophobia 0 002 @ 14382238 n 0000 + 00078942 a 0101 | a morbid fear of pain -14382967 26 n 01 aquaphobia 0 002 @ 14382238 n 0000 + 00080098 a 0102 | a morbid fear of drowning -14383067 26 n 01 astraphobia 0 001 @ 14382238 n 0000 | a morbid fear of thunder and lightning -14383163 26 n 01 automysophobia 0 001 @ 14382238 n 0000 | a morbid fear of being dirty -14383252 26 n 01 claustrophobia 0 001 @ 14382238 n 0000 | a morbid fear of being closed in a confined space -14383362 26 n 01 cryophobia 0 001 @ 14382238 n 0000 | a morbid fear of freezing -14383444 26 n 01 cyberphobia 0 001 @ 14382238 n 0000 | irrational fear of computers or technology -14383544 26 n 01 hydrophobia 1 001 @ 14382238 n 0000 | a morbid fear of water -14383624 26 n 01 hydrophobia 2 001 @ 14299637 n 0000 | a symptom of rabies in humans consisting of an aversion to swallowing liquids -14383759 26 n 01 hypnophobia 0 001 @ 14382238 n 0000 | a morbid fear of falling asleep -14383848 26 n 01 mysophobia 0 002 @ 14382238 n 0000 + 00080213 a 0101 | a morbid fear of dirt or contamination -14383961 26 n 01 neophobia 0 001 @ 14382238 n 0000 | a morbid fear of novelty -14384041 26 n 01 nyctophobia 0 001 @ 14382238 n 0000 | a morbid fear of night or darkness -14384133 26 n 01 phobophobia 0 001 @ 14382238 n 0000 | a morbid fear of developing a phobia -14384227 26 n 02 phonophobia 0 acousticophobia 0 001 @ 14382238 n 0000 | a morbid fear of sounds including your own voice -14384351 26 n 01 photophobia 1 001 @ 14382238 n 0000 | a morbid fear of light -14384431 26 n 01 pyrophobia 0 001 @ 14382238 n 0000 | a morbid fear of fire -14384509 26 n 01 taphephobia 0 001 @ 14382238 n 0000 | a morbid fear of being buried alive -14384602 26 n 01 thanatophobia 0 001 @ 14382238 n 0000 | a morbid fear of death -14384684 26 n 01 triskaidekaphobia 0 002 @ 14382238 n 0000 + 00081087 a 0101 | a morbid fear of the number 13 -14384796 26 n 01 zoophobia 0 008 @ 14382238 n 0000 ~ 14381732 n 0000 ~ 14382075 n 0000 ~ 14385002 n 0000 ~ 14385082 n 0000 ~ 14385160 n 0000 ~ 14385243 n 0000 ~ 14385325 n 0000 | a morbid fear of animals -14385002 26 n 01 ailurophobia 0 001 @ 14384796 n 0000 | a morbid fear of cats -14385082 26 n 01 cynophobia 0 001 @ 14384796 n 0000 | a morbid fear of dogs -14385160 26 n 01 entomophobia 0 001 @ 14384796 n 0000 | a morbid fear of insects -14385243 26 n 01 lepidophobia 0 001 @ 14384796 n 0000 | a morbid fear of snakes -14385325 26 n 01 musophobia 0 001 @ 14384796 n 0000 | a morbid fear of mice -14385403 26 n 01 social_phobia 0 007 @ 14381416 n 0000 ~ 14381997 n 0000 ~ 14382159 n 0000 ~ 14385734 n 0000 ~ 14385818 n 0000 ~ 14385919 n 0000 ~ 14386022 n 0000 | any phobia (other than agoraphobia) associated with situations in which you are subject to criticism by others (as fear of eating in public or public speaking etc) -14385734 26 n 01 satanophobia 0 001 @ 14385403 n 0000 | an abnormal fear of Satan -14385818 26 n 01 school_phobia 0 001 @ 14385403 n 0000 | a child's sudden fear of attending school -14385919 26 n 01 traumatophobia 0 001 @ 14385403 n 0000 | a morbid fear of battle or physical injury -14386022 26 n 01 xenophobia 0 002 @ 14385403 n 0000 + 00081513 a 0101 | a fear of foreigners or strangers -14386130 26 n 02 posttraumatic_stress_disorder 0 PTSD 0 003 @ 14380473 n 0000 %p 07536437 n 0000 ~ 14388596 n 0000 | an anxiety disorder associated with serious traumatic events and characterized by such symptoms as survivor guilt, reliving the trauma in dreams, numbness and lack of involvement with reality, or recurrent thoughts and images -14386475 26 n 01 psychosomatic_disorder 0 001 @ 14083790 n 0000 | a mental disorder that causes somatic symptoms -14386590 26 n 01 aberration 0 002 @ 14083790 n 0000 + 02662076 v 0101 | a disorder in one's mental state -14386697 26 n 03 conversion_disorder 0 conversion_reaction 0 conversion_hysteria 0 002 @ 14083790 n 0000 ~ 14386968 n 0000 | a mental disorder characterized by the conversion of mental conflict into somatic forms (into paralysis or anesthesia having no apparent cause) -14386968 26 n 01 glove_anesthesia 0 001 @ 14386697 n 0000 | a mental disorder involving loss of sensitivity in the hand and wrist; "since no combination of nerves serve this area a glove anesthesia is clearly psychogenic in origin" -14387202 26 n 01 delirium 0 001 @ 14083790 n 0000 | a usually brief state of excitement and mental confusion often accompanied by hallucinations -14387349 26 n 01 delusional_disorder 0 001 @ 14083790 n 0000 | any mental disorder in which delusions play a significant role -14387477 26 n 01 encopresis 0 001 @ 14083790 n 0000 | involuntary defecation not attributable to physical defects or illness -14387604 26 n 01 folie_a_deux 0 001 @ 14083790 n 0000 | the simultaneous occurrence of symptoms of a mental disorder (as delusions) in two persons who are closely related (as siblings or man and wife) -14387807 26 n 01 personality_disorder 0 004 @ 14083790 n 0000 ~ 14387975 n 0000 ~ 14388139 n 0000 ~ 14388758 n 0000 | inflexible and maladaptive patterns of behavior -14387975 26 n 01 maladjustment 0 001 @ 14387807 n 0000 | the condition of being unable to adapt properly to your environment with resulting emotional instability -14388139 26 n 03 antisocial_personality_disorder 0 sociopathic_personality 0 psychopathic_personality 0 001 @ 14387807 n 0000 | a personality disorder characterized by amorality and lack of affect; capable of violent acts without guilt feelings (`psychopathic personality' was once widely used but was superseded by `sociopathic personality' to indicate the social aspects of the disorder, but now `antisocial personality disorder' is the preferred term) -14388596 26 n 04 battle_fatigue 0 combat_fatigue 0 combat_neurosis 0 shell_shock 0 001 @ 14386130 n 0000 | a mental disorder caused by stress of active warfare -14388758 26 n 02 schizotypal_personality 0 schizoid 0 001 @ 14387807 n 0000 | characterized by symptoms similar to but less severe than schizophrenia -14388910 26 n 04 affective_disorder 0 major_affective_disorder 0 emotional_disorder 0 emotional_disturbance 0 004 @ 14083790 n 0000 ~ 14389240 n 0000 ~ 14391660 n 0000 ~ 14392639 n 0000 | any mental disorder not caused by detectable organic abnormalities of the brain and in which a major disturbance of emotions is predominant -14389240 26 n 03 depressive_disorder 0 clinical_depression 0 depression 3 010 @ 14388910 n 0000 ~ 14389584 n 0000 ~ 14389739 n 0000 ~ 14389909 n 0000 ~ 14390109 n 0000 ~ 14390249 n 0000 ~ 14390466 n 0000 ~ 14390967 n 0000 ~ 14391112 n 0000 ~ 14391319 n 0000 | a state of depression and anhedonia so severe as to require clinical intervention -14389584 26 n 01 agitated_depression 0 001 @ 14389240 n 0000 | a state of clinical depression in which the person exhibits irritability and restlessness -14389739 26 n 01 anaclitic_depression 0 001 @ 14389240 n 0000 | severe and progressive depression in infants who lose their mother and do not get a suitable substitute -14389909 26 n 02 dysthymia 0 dysthymic_depression 0 001 @ 14389240 n 0000 | mild chronic depression; "I thought she had just been in a bad mood for thirty years, but the doctor called it dysthymia" -14390109 26 n 01 endogenous_depression 0 001 @ 14389240 n 0000 | a state of depression for which there is no apparent precipitating cause -14390249 26 n 02 exogenous_depression 0 reactive_depression 0 001 @ 14389240 n 0000 | an inappropriate state of depression that is precipitated by events in the person's life (to be distinguished from normal grief) -14390466 26 n 01 major_depressive_episode 0 004 @ 14389240 n 0000 ;c 06055946 n 0000 ~ 14390839 n 0000 ~ 14391480 n 0000 | (psychiatry) a state of depression with all the classic symptoms (anhedonia and lethargy and sleep disturbance and despondency and morbid thoughts and feelings of worthlessness and sometimes attempted suicide) but with no known organic dysfunction -14390839 26 n 01 involutional_depression 0 001 @ 14390466 n 0000 | a major depressive episode associated with the climacteric -14390967 26 n 01 neurotic_depression 0 002 @ 14389240 n 0000 ! 14391112 n 0101 | a term used for any state of depression that is not psychotic -14391112 26 n 01 psychotic_depression 0 002 @ 14389240 n 0000 ! 14390967 n 0101 | a state of depression so severe that the person loses contact with reality and suffers a variety of functional impairments -14391319 26 n 01 retarded_depression 0 001 @ 14389240 n 0000 | a state of clinical depression in which the individual is lethargic and slow to initiate action -14391480 26 n 01 unipolar_depression 0 001 @ 14390466 n 0000 | a major depressive episode that occurs without the manic phase that occurs in the classic form of bipolar disorder -14391660 26 n 02 mania 0 manic_disorder 0 003 @ 14388910 n 0000 + 02391003 a 0102 ~ 14391876 n 0000 | a mood disorder; an affective disorder in which the victim tends to respond excessively and sometimes violently -14391876 26 n 05 craze 0 delirium 1 frenzy 0 fury 0 hysteria 1 009 @ 14391660 n 0000 + 00086606 a 0501 + 01786906 v 0401 + 02390724 a 0201 + 02543823 a 0201 + 02075321 a 0102 + 01787822 v 0102 ~ 14091018 n 0000 ~ 14392143 n 0000 | state of violent mental agitation -14392143 26 n 02 mass_hysteria 0 epidemic_hysertia 0 001 @ 14391876 n 0000 | a condition in which a large group of people exhibit the same state of violent mental agitation -14392318 26 n 01 megalomania 0 004 @ 14380140 n 0000 + 01584569 a 0102 + 01584569 a 0101 %p 14377177 n 0000 | a psychological state characterized by delusions of grandeur -14392491 26 n 01 melancholia 0 002 @ 14404160 n 0000 + 01362684 a 0102 | extreme depression characterized by tearful sadness and irrational fears -14392639 26 n 04 bipolar_disorder 0 manic_depression 0 manic_depressive_illness 0 manic-depressive_psychosis 0 002 @ 14388910 n 0000 ~ 14392862 n 0000 | a mental disorder characterized by episodes of mania and depression -14392862 26 n 03 cyclothymia 0 cyclothymic_disorder 0 cyclic_disorder 0 002 @ 14392639 n 0000 + 03058635 a 0101 | a mild bipolar disorder that persists over a long time -14393033 26 n 01 schizothymia 0 001 @ 14083790 n 0000 | resembling schizophrenia but remaining within the bounds of normality -14393161 26 n 03 neurosis 0 neuroticism 0 psychoneurosis 0 006 @ 14083790 n 0000 + 01583040 a 0302 + 02976525 a 0101 + 01583040 a 0101 ~ 14393438 n 0000 ~ 14393958 n 0000 | a mental or personality disturbance not attributable to any known neurological or organic dysfunction -14393438 26 n 02 hysteria 0 hysterical_neurosis 0 006 @ 14393161 n 0000 + 01584287 a 0101 + 01584287 a 0102 %p 14078733 n 0000 ~ 14393716 n 0000 ~ 14393862 n 0000 | neurotic disorder characterized by violent emotional outbreaks and disturbances of sensory and motor functions -14393716 26 n 01 anxiety_hysteria 0 001 @ 14393438 n 0000 | a form of hysteria having features of both conversion disorder and anxiety neurosis -14393862 26 n 01 hysterocatalepsy 0 001 @ 14393438 n 0000 | hysteria with cataleptic symptoms -14393958 26 n 01 anxiety_neurosis 0 001 @ 14393161 n 0000 | characterized by diffuse anxiety and often somatic manifestations of fear -14394094 26 n 06 depersonalization 0 depersonalisation 0 depersonalization_disorder 0 depersonalisation_disorder 0 depersonalization_neurosis 0 depersonalisation_neurosis 0 003 @ 14417300 n 0000 + 00388296 v 0202 + 00388296 v 0101 | emotional dissociative disorder in which there is loss of contact with your own personal reality accompanied by feelings of unreality and strangeness -14394479 26 n 02 fugue 1 psychogenic_fugue 0 001 @ 14417300 n 0000 | dissociative disorder in which a person forgets who they are and leaves home to creates a new life; during the fugue there is no memory of the former life; after recovering there is no memory for events during the dissociative state -14394783 26 n 02 split_personality 0 multiple_personality 0 001 @ 14417300 n 0000 | a relatively rare dissociative disorder in which the usual integrity of the personality breaks down and two or more independent personalities emerge -14395018 26 n 01 insanity 0 008 @ 14380140 n 0000 + 02074092 a 0101 ! 14379501 n 0101 ~ 14395240 n 0000 ~ 14395403 n 0000 ~ 14397563 n 0000 ~ 14397714 n 0000 ~ 14397889 n 0000 | relatively permanent disorder of the mind -14395240 26 n 03 lunacy 0 madness 0 insaneness 0 004 @ 14395018 n 0000 + 02074092 a 0301 + 02075321 a 0205 + 02076234 a 0101 | obsolete terms for legal insanity -14395403 26 n 02 dementia 0 dementedness 0 005 @ 14395018 n 0000 + 02075321 a 0203 ~ 14395597 n 0000 ~ 14395955 n 0000 ~ 14396707 n 0000 | mental deterioration of organic or functional origin -14395597 26 n 07 alcoholic_dementia 0 alcohol_amnestic_disorder 0 Korsakoff's_psychosis 0 Korsakoff's_syndrome 0 Korsakov's_psychosis 0 Korsakov's_syndrome 0 polyneuritic_psychosis 0 001 @ 14395403 n 0000 | dementia observed during the last stages of severe chronic alcoholism; involves loss of memory for recent events although long term memory is intact -14395955 26 n 01 presenile_dementia 0 003 @ 14395403 n 0000 ~ 14396096 n 0000 ~ 14396431 n 0000 | dementia with onset before the age of 65 -14396096 26 n 03 Alzheimer's_disease 0 Alzheimer's 0 Alzheimers 0 001 @ 14395955 n 0000 | a progressive form of presenile dementia that is similar to senile dementia except that it usually starts in the 40s or 50s; first symptoms are impaired memory which is followed by impaired thought and speech and finally complete helplessness -14396431 26 n 01 Pick's_disease 0 001 @ 14395955 n 0000 | a progressive form of presenile dementia found most often in middle-aged and elderly women and characterized by degeneration of the frontal and temporal lobes with loss of intellectual ability and transitory aphasia -14396707 26 n 02 senile_dementia 0 senile_psychosis 0 001 @ 14395403 n 0000 | dementia of the aged; results from degeneration of the brain in the absence of cerebrovascular disease -14396890 26 n 01 rhinopathy 0 004 @ 14204950 n 0000 ~ 14107249 n 0000 ~ 14397040 n 0000 ~ 14567281 n 0000 | any disease or malformation of the nose -14397040 26 n 09 rhinophyma 0 hypertrophic_rosacea 0 toper's_nose 0 brandy_nose 0 rum_nose 0 rum-blossom 0 potato_nose 0 hammer_nose 0 copper_nose 0 001 @ 14396890 n 0000 | enlargement of the nose with dilation of follicles and redness and prominent vascularity of the skin; often associated with excessive consumption of alcohol -14397372 26 n 01 Wernicke's_encephalopathy 0 001 @ 14085708 n 0000 | inflammatory degenerative disease of the brain caused by thiamine deficiency that is usually associated with alcoholism -14397563 26 n 02 irrationality 0 unreason 0 002 @ 14395018 n 0000 + 01926376 a 0101 | the state of being irrational; lacking powers of understanding -14397714 26 n 03 derangement 0 mental_unsoundness 0 unbalance 1 003 @ 14395018 n 0000 + 01764586 v 0301 + 01764586 v 0102 | a state of mental disturbance and disorientation -14397889 26 n 03 craziness 0 daftness 0 flakiness 0 005 @ 14395018 n 0000 + 00608791 a 0305 + 00608791 a 0306 + 02074929 a 0209 + 02075321 a 0102 | informal terms for insanity -14398067 26 n 01 psychosis 0 005 @ 14380140 n 0000 + 02077469 a 0101 ~ 14398279 n 0000 ~ 14398390 n 0000 ~ 14398523 n 0000 | any severe mental disorder in which contact with reality is lost or highly distorted -14398279 26 n 02 delirium_tremens 0 DTs 0 001 @ 14398067 n 0000 | acute delirium caused by alcohol poisoning -14398390 26 n 01 paranoia 0 001 @ 14398067 n 0000 | a psychological disorder characterized by delusions of persecution or grandeur -14398523 26 n 04 schizophrenia 0 schizophrenic_disorder 0 schizophrenic_psychosis 0 dementia_praecox 0 008 @ 14398067 n 0000 + 02077741 a 0101 + 03115277 a 0102 ~ 14398929 n 0000 ~ 14399116 n 0000 ~ 14399438 n 0000 ~ 14399852 n 0000 ~ 14400325 n 0000 | any of several psychotic disorders characterized by distortions of reality and disturbances of thought and language and withdrawal from social contact -14398929 26 n 02 borderline_schizophrenia 0 latent_schizophrenia 0 001 @ 14398523 n 0000 | schizophrenia characterized by mild symptoms or by some preexisting tendency to schizophrenia -14399116 26 n 03 catatonic_schizophrenia 0 catatonic_type_schizophrenia 0 catatonia 0 003 @ 14398523 n 0000 + 03054551 a 0301 %p 14545045 n 0000 | a form of schizophrenia characterized by a tendency to remain in a fixed stuporous state for long periods; the catatonia may give way to short periods of extreme excitement -14399438 26 n 04 hebephrenia 0 hebephrenic_schizophrenia 0 disorganized_schizophrenia 0 disorganized_type_schizophrenia 0 002 @ 14398523 n 0000 + 02076016 a 0101 | a form of schizophrenia characterized by severe disintegration of personality including erratic speech and childish mannerisms and bizarre behavior; usually becomes evident during puberty; the most common diagnostic category in mental institutions -14399852 26 n 04 paranoid_schizophrenia 0 paranoic_type_schizophrenia 0 paraphrenic_schizophrenia 0 paraphrenia 0 001 @ 14398523 n 0000 | a form of schizophrenia characterized by delusions (of persecution or grandeur or jealousy); symptoms may include anger and anxiety and aloofness and doubts about gender identity; unlike other types of schizophrenia the patients are usually presentable and (if delusions are not acted on) may function in an apparently normal manner -14400325 26 n 02 acute_schizophrenic_episode 0 reactive_schizophrenia 0 001 @ 14398523 n 0000 | schizophrenia of abrupt onset and relatively short duration (a few weeks or months) -14400507 26 n 02 aphonia 0 voicelessness 0 003 @ 14400677 n 0000 + 00151661 a 0202 + 00151661 a 0101 | a disorder of the vocal organs that results in the loss of voice -14400677 26 n 03 speech_disorder 0 speech_defect 0 defect_of_speech 0 011 @ 14052403 n 0000 ~ 14100092 n 0000 ~ 14400507 n 0000 ~ 14401878 n 0000 ~ 14402015 n 0000 ~ 14402184 n 0000 ~ 14402377 n 0000 ~ 14402488 n 0000 ~ 14402625 n 0000 ~ 14402763 n 0000 ~ 14402922 n 0000 | a disorder of oral speech -14400979 26 n 03 sprue 0 tropical_sprue 0 psilosis 0 001 @ 14052403 n 0000 | a chronic disorder that occurs in tropical and non-tropical forms and in both children and adults; nutrients are not absorbed; symptoms include foul-smelling diarrhea and emaciation -14401240 26 n 01 flaccid_bladder 0 001 @ 14057221 n 0000 | a urinary bladder disorder resulting from interruption of the reflex arc normally associated with voiding urine; absence of bladder sensation and over-filling of the bladder and inability to urinate voluntarily -14401512 26 n 01 neurogenic_bladder 0 001 @ 14057221 n 0000 | a urinary bladder disorder caused by a lesion in the nervous system -14401644 26 n 01 spastic_bladder 0 001 @ 14057221 n 0000 | a urinary bladder disorder resulting from spinal cord lesion or multiple sclerosis or trauma; absence of bladder sensation and incontinence and interrupted voiding of urine -14401878 26 n 01 cataphasia 0 001 @ 14400677 n 0000 | a speech disorder in which the same word is repeated several times in succession -14402015 26 n 01 dysarthria 0 001 @ 14400677 n 0000 | impaired articulatory ability resulting from defects in the peripheral motor nerves or in the speech musculature -14402184 26 n 01 dyslogia 0 001 @ 14400677 n 0000 | impaired ability to express ideas verbally; usually resulting from difficulties of reasoning (as in feeblemindedness or certain psychoses) -14402377 26 n 01 dysphonia 0 001 @ 14400677 n 0000 | speech disorder attributable to a disorder of phonation -14402488 26 n 01 lallation 0 001 @ 14400677 n 0000 | defective articulation of the `l' phoneme or the phoneme `r' is pronounced as `l' -14402625 26 n 01 lambdacism 0 001 @ 14400677 n 0000 | speech defect involving excessive use or unusual pronunciation of the phoneme `l' -14402763 26 n 01 lisp 0 002 @ 14400677 n 0000 + 00982178 v 0101 | a speech defect that involves pronouncing `s' like voiceless `th' and `z' like voiced `th' -14402922 26 n 02 stammer 0 stutter 0 003 @ 14400677 n 0000 + 00981544 v 0202 + 00981544 v 0103 | a speech disorder involving hesitations and involuntary repetitions of certain sounds -14403107 26 n 01 agitation 1 005 @ 14373582 n 0000 ~ 14403282 n 0000 ~ 14403560 n 0000 ~ 14403772 n 0000 ~ 14404042 n 0000 | a mental state of extreme emotional disturbance -14403282 26 n 03 disturbance 2 perturbation 0 upset 0 005 @ 14403107 n 0000 + 01790020 v 0301 + 01770501 v 0302 + 01764171 v 0201 + 01770501 v 0101 | an unhappy and worried mental state; "there was too much anger and disturbance"; "she didn't realize the upset she caused me" -14403560 26 n 05 fret 0 stew 0 sweat 1 lather 0 swither 0 003 @ 14403107 n 0000 + 01805384 v 0203 + 01793933 v 0103 | agitation resulting from active worry; "don't get in a stew"; "he's in a sweat about exams" -14403772 26 n 05 dither 0 pother 0 fuss 0 tizzy 0 flap 0 006 @ 14403107 n 0000 + 01819911 v 0502 + 01793933 v 0301 + 01820077 v 0201 + 01819911 v 0203 + 01819911 v 0101 | an excited state of agitation; "he was in a dither"; "there was a terrible flap about the theft" -14404042 26 n 01 tailspin 0 001 @ 14403107 n 0000 | loss of emotional control often resulting in emotional collapse -14404160 26 n 01 depression 0 009 @ 14373582 n 0000 ! 14405225 n 0101 ~ 14392491 n 0000 ~ 14404460 n 0000 ~ 14404610 n 0000 ~ 14404722 n 0000 ~ 14404831 n 0000 ~ 14404941 n 0000 ~ 14486533 n 0000 | a mental state characterized by a pessimistic sense of inadequacy and a despondent lack of activity -14404460 26 n 05 blues 0 blue_devils 0 megrims 0 vapors 0 vapours 0 001 @ 14404160 n 0000 | a state of depression; "he had a bad case of the blues" -14404610 26 n 02 funk 0 blue_funk 0 001 @ 14404160 n 0000 | a state of nervous depression; "he was in a funk" -14404722 26 n 01 melancholy 0 001 @ 14404160 n 0000 | a constitutional tendency to be gloomy and depressed -14404831 26 n 01 slough_of_despond 0 002 @ 14404160 n 0000 ;u 01204055 n 0000 | (formal) extreme depression -14404941 26 n 01 low_spirits 0 003 @ 14404160 n 0000 ! 14405621 n 0101 ~ 14405061 n 0000 | a state of mild depression -14405061 26 n 02 dumps 0 mopes 0 002 @ 14404941 n 0000 ;u 07075172 n 0000 | an informal expression for a mildly depressed state; "in the dumps"; "have the mopes" -14405225 26 n 01 elation 0 006 @ 14373582 n 0000 + 01811736 v 0101 ! 14404160 n 0101 ~ 13987905 n 0000 ~ 14405452 n 0000 ~ 14405621 n 0000 | an exhilarating psychological state of pride and optimism; an absence of depression -14405452 26 n 01 high 1 002 @ 14405225 n 0000 + 00799224 a 0101 | a state of altered consciousness induced by alcohol or narcotics; "they took drugs to get a high on" -14405621 26 n 01 high 2 003 @ 14405225 n 0000 + 00705498 a 0101 ! 14404941 n 0101 | a state of sustained elation; "I'm on a permanent high these days" -14405774 26 n 01 cold_sweat 0 002 @ 14034177 n 0000 #p 07519253 n 0000 | the physical condition of concurrent perspiration and chill; associated with fear -14405931 26 n 02 panic 1 scare 0 005 @ 14374432 n 0000 + 00194924 a 0202 + 01785748 v 0208 + 01781983 v 0101 ~ 14406209 n 0000 | sudden mass fear and anxiety over anticipated events; "panic in the stock market"; "a war scare"; "a bomb scare led them to evacuate the building" -14406209 26 n 01 red_scare 0 001 @ 14405931 n 0000 | a period of general fear of communists -14406303 26 n 04 fit 1 tantrum 0 scene 1 conniption 0 001 @ 07518132 n 0000 | a display of bad temper; "he had a fit"; "she threw a tantrum"; "he made a scene" -14406465 26 n 01 areflexia 0 001 @ 14299637 n 0000 | absence of a reflex; a sign of possible nerve damage -14406573 26 n 04 irritation 0 annoyance 0 vexation 0 botheration 0 011 @ 14373582 n 0000 + 02507736 v 0407 + 01791535 v 0401 + 01787955 v 0404 + 01787955 v 030b + 01787955 v 0106 ~ 14406900 n 0000 ~ 14407070 n 0000 ~ 14407211 n 0000 ~ 14407283 n 0000 ~ 14407435 n 0000 | the psychological state of being irritated or annoyed -14406900 26 n 01 bummer 0 001 @ 14406573 n 0000 | an experience that is irritating or frustrating or disappointing; "having to stand in line so long was a real bummer" -14407070 26 n 03 huff 0 miff 0 seeing_red 0 003 @ 14406573 n 0000 + 01786620 v 0201 + 00115193 a 0101 | a state of irritation or annoyance -14407211 26 n 01 pinprick 0 001 @ 14406573 n 0000 | a minor annoyance -14407283 26 n 02 restlessness 0 impatience 0 002 @ 14406573 n 0000 + 01737241 a 0201 | a lack of patience; irritation with anything that causes delay -14407435 26 n 01 snit 0 001 @ 14406573 n 0000 | a state of agitated irritation; "he was in a snit" -14407536 26 n 03 enchantment 0 spell 0 trance 0 007 @ 14373582 n 0000 + 01806505 v 0303 + 01064560 v 0201 + 01817314 v 0101 + 00776988 v 0105 ~ 14407795 n 0000 ~ 14407899 n 0000 | a psychological state induced by (or as if induced by) a magical incantation -14407795 26 n 01 possession 0 001 @ 14407536 n 0000 | being controlled by passion or the supernatural -14407899 26 n 02 fascination 0 captivation 0 004 @ 14407536 n 0000 + 01806505 v 0207 + 02678839 v 0102 + 01821132 v 0101 | the state of being intensely interested (as by awe or terror) -14408086 26 n 01 difficulty 0 013 @ 13920835 n 0000 ~ 14408519 n 0000 ~ 14408646 n 0000 ~ 14409285 n 0000 ~ 14409371 n 0000 ~ 14409489 n 0000 ~ 14409880 n 0000 ~ 14410089 n 0000 ~ 14410365 n 0000 ~ 14410605 n 0000 ~ 14411243 n 0000 ~ 14564519 n 0000 ~ 14564779 n 0000 | a condition or state of affairs almost beyond one's ability to deal with and requiring great effort to bear or overcome; "grappling with financial difficulties" -14408519 26 n 01 bitch 0 002 @ 14408086 n 0000 ;u 07157273 n 0000 | an unpleasant difficulty; "this problem is a real bitch" -14408646 26 n 03 predicament 0 quandary 0 plight 0 004 @ 14408086 n 0000 ~ 07505047 n 0000 ~ 14408951 n 0000 ~ 14409137 n 0000 | a situation from which extrication is difficult especially an unpleasant or trying one; "finds himself in a most awkward predicament"; "the woeful plight of homeless people" -14408951 26 n 02 corner 1 box 0 002 @ 14408646 n 0000 + 01934205 v 0101 | a predicament from which a skillful or graceful escape is impossible; "his lying got him into a tight corner" -14409137 26 n 01 hot_water 0 001 @ 14408646 n 0000 | a dangerous or distressing predicament; "his views on race got him into political hot water" -14409285 26 n 01 rattrap 0 001 @ 14408086 n 0000 | a difficult entangling situation -14409371 26 n 01 pinch 1 001 @ 14408086 n 0000 | a painful or straitened circumstance; "the pinch of the recession" -14409489 26 n 07 fix 0 hole 0 jam 0 mess 2 muddle 1 pickle 0 kettle_of_fish 0 002 @ 14408086 n 0000 ~ 14409718 n 0000 | informal terms for a difficult situation; "he got into a terrible fix"; "he made a muddle of his marriage" -14409718 26 n 02 dog's_breakfast 0 dog's_dinner 0 002 @ 14409489 n 0000 ;r 08860123 n 0000 | a poor job; a mess; "they made a real dog's breakfast of that job" -14409880 26 n 02 hard_time 0 rough_sledding 0 001 @ 14408086 n 0000 | a difficulty that can be overcome with effort; "we had a hard time getting here"; "analysts predicted rough sledding for handset makers" -14410089 26 n 02 stress 2 strain 2 002 @ 14408086 n 0000 + 01798452 v 0103 | difficulty that causes worry or emotional tension; "she endured the stresses and strains of life"; "he presided over the economy during the period of the greatest stress and danger"- R.J.Samuelson -14410365 26 n 01 mire 0 001 @ 14408086 n 0000 | a difficulty or embarrassment that is hard to extricate yourself from; "the country is still trying to climb out of the mire left by its previous president"; "caught in the mire of poverty" -14410605 26 n 02 problem 0 job 0 005 @ 14408086 n 0000 + 00746451 a 0105 + 00746451 a 0104 ~ 14410918 n 0000 ~ 14411079 n 0000 | a state of difficulty that needs to be resolved; "she and her husband are having problems"; "it is always a job to contact him"; "urban problems such as traffic congestion and smog" -14410918 26 n 01 race_problem 0 001 @ 14410605 n 0000 | a social and political problem caused by conflict between races occupying the same or adjacent regions -14411079 26 n 01 balance-of-payments_problem 0 001 @ 14410605 n 0000 | an economic problem caused by payments for imports being greater than receipts for exports -14411243 26 n 01 situation 2 019 @ 14408086 n 0000 ~ 13933391 n 0000 ~ 13933560 n 0000 ~ 13934070 n 0000 ~ 13935572 n 0000 ~ 13935910 n 0000 ~ 13936030 n 0000 ~ 13936153 n 0000 ~ 13936557 n 0000 ~ 13936676 n 0000 ~ 13936783 n 0000 ~ 13936939 n 0000 ~ 13937406 n 0000 ~ 13938296 n 0000 ~ 13944096 n 0000 ~ 13944337 n 0000 ~ 13944516 n 0000 ~ 14015361 n 0000 ~ 14411772 n 0000 | a complex or critical or unusual difficulty; "the dangerous situation developed suddenly"; "that's quite a situation"; "no human situation is simple" -14411772 26 n 01 quicksand 0 001 @ 14411243 n 0000 | a treacherous situation that tends to entrap and destroy -14411884 26 n 01 vogue 0 001 @ 13932421 n 0000 | a current state of general acceptance and use -14411981 26 n 03 recognition 0 acknowledgment 0 acknowledgement 0 005 @ 13932421 n 0000 + 00817311 v 0202 + 00592883 v 0201 = 00027247 a 0000 = 00028672 a 0000 | the state or quality of being recognized or acknowledged; "the partners were delighted with the recognition of their work"; "she seems to avoid much in the way of recognition or acknowledgement of feminist work prior to her own" -14412374 26 n 03 approval 0 favorable_reception 0 favourable_reception 0 003 @ 13932421 n 0000 + 00803815 v 0101 ~ 14412564 n 0000 | acceptance as satisfactory; "he bought it on approval" -14412564 26 n 01 appro 0 003 @ 14412374 n 0000 ;r 08860123 n 0000 ;u 07091587 n 0000 | an informal British abbreviation of approval; "he accepted it on appro" -14412725 26 n 01 acceptation 0 005 @ 13932421 n 0000 + 02210622 v 0101 + 00797697 v 0101 + 00719231 v 0101 + 00686447 v 0101 | acceptance as true or valid -14412882 26 n 02 contentedness 0 content 0 005 @ 13932421 n 0000 + 00588797 a 0202 + 01816844 v 0201 + 01194238 v 0201 + 00588797 a 0101 | the state of being contented with your situation in life; "he relaxed in sleepy contentedness"; "they could read to their heart's content" -14413162 26 n 01 acquiescence 0 002 @ 13932421 n 0000 + 00804139 v 0103 | acceptance without protest -14413265 26 n 01 welcome 0 003 @ 13932421 n 0000 + 02539968 a 0101 + 01470098 v 0101 | the state of being welcome; "don't outstay your welcome" -14413411 26 n 03 apostasy 0 renunciation 0 defection 0 002 @ 13937554 n 0000 + 02584097 v 0301 | the state of having rejected your religious beliefs or your political party or a cause (often in favor of opposing beliefs or causes) -14413644 26 n 02 disfavor 0 disfavour 0 004 @ 13937554 n 0000 + 02513460 v 0203 + 02513460 v 0102 ~ 14413831 n 0000 | the state of being out of favor; "he is in disfavor with the king" -14413831 26 n 01 wilderness 0 002 @ 14413644 n 0000 ;c 13840719 n 0000 | (politics) a state of disfavor; "he led the Democratic party back from the wilderness" -14413993 26 n 03 excommunication 0 exclusion 1 censure 0 003 @ 13937554 n 0000 + 02402112 v 0101 + 01030397 v 0101 | the state of being excommunicated -14414146 26 n 01 reprobation 0 002 @ 13937554 n 0000 + 01071155 v 0101 | rejection by God; the state of being condemned to eternal misery in Hell -14414294 26 n 01 separation 0 008 @ 00024720 n 0000 ! 14418395 n 0101 = 02109678 a 0000 ~ 14414503 n 0000 ~ 14414715 n 0000 ~ 14417551 n 0000 ~ 14417697 n 0000 ~ 14421373 n 0000 | the state of lacking unity -14414503 26 n 04 discreteness 0 distinctness 0 separateness 2 severalty 0 005 @ 14414294 n 0000 + 01327371 a 0301 + 02109678 a 0301 + 02110778 a 0202 + 02110778 a 0101 | the state of being several and distinct -14414715 26 n 01 isolation 0 010 @ 14414294 n 0000 + 00494269 v 0101 ~ 14414980 n 0000 ~ 14415072 n 0000 ~ 14415163 n 0000 ~ 14415335 n 0000 ~ 14415518 n 0000 ~ 14415773 n 0000 ~ 14415898 n 0000 ~ 14416089 n 0000 | a state of separation between persons or groups -14414980 26 n 01 solitude 1 001 @ 14414715 n 0000 | the state or situation of being alone -14415072 26 n 02 solitude 0 purdah 0 001 @ 14414715 n 0000 | a state of social isolation -14415163 26 n 02 loneliness 0 solitariness 0 004 @ 14414715 n 0000 + 02253205 a 0203 + 02251212 a 0204 + 02251212 a 0103 | the state of being alone in solitary isolation -14415335 26 n 01 quarantine 0 002 @ 14414715 n 0000 + 00496266 v 0101 | enforced isolation of patients suffering from a contagious disease in order to prevent the spread of disease -14415518 26 n 04 insulation 0 insularity 0 insularism 0 detachment 0 004 @ 14414715 n 0000 + 01859970 a 0201 + 02750483 a 0201 + 00494269 v 0102 | the state of being isolated or detached; "the insulation of England was preserved by the English Channel" -14415773 26 n 02 alienation 0 estrangement 0 002 @ 14414715 n 0000 + 01823528 v 0201 | separation resulting from hostility -14415898 26 n 02 anomie 0 anomy 0 003 @ 14414715 n 0000 + 01683908 a 0202 + 01683908 a 0102 | personal state of isolation and anxiety resulting from a lack of social control and regulation -14416089 26 n 04 privacy 2 privateness 0 secrecy 0 concealment 0 008 @ 14414715 n 0000 + 02144835 v 0402 + 01769378 a 0201 + 00952181 a 0202 ~ 14416349 n 0000 ~ 14416473 n 0000 ~ 14416668 n 0000 ~ 14575952 n 0000 | the condition of being concealed or hidden -14416349 26 n 02 hiddenness 0 covertness 0 002 @ 14416089 n 0000 + 01705655 a 0201 | the state of being covert and hidden -14416473 26 n 01 bosom 0 003 @ 14416089 n 0000 ;u 07073447 n 0000 + 02147313 v 0101 | the chest considered as the place where secret thoughts are kept; "his bosom was bursting with the secret" -14416668 26 n 01 confidentiality 0 002 @ 14416089 n 0000 + 00415696 a 0101 | the state of being secret; "you must respect the confidentiality of your client's communications" -14416845 26 n 02 dissociation 0 disassociation 0 006 @ 14373582 n 0000 + 02430580 v 0201 + 02430580 v 0102 + 00714273 v 0102 ~ 14417146 n 0000 ~ 14417300 n 0000 | a state in which some integrated part of a person's life becomes separated from the rest of the personality and functions independently -14417146 26 n 02 compartmentalization 0 compartmentalisation 0 003 @ 14416845 n 0000 + 00483801 v 0202 + 00483801 v 0101 | a mild state of dissociation -14417300 26 n 01 dissociative_disorder 0 005 @ 14416845 n 0000 @ 14083790 n 0000 ~ 14394094 n 0000 ~ 14394479 n 0000 ~ 14394783 n 0000 | dissociation so severe that the usually integrated functions of consciousness and perception of self break down -14417551 26 n 01 discontinuity 0 004 @ 14414294 n 0000 + 00597599 a 0101 + 00596769 a 0101 ! 14422035 n 0101 | lack of connection or continuity -14417697 26 n 04 disjunction 0 disjuncture 0 disconnection 0 disconnectedness 0 010 @ 14414294 n 0000 + 00465221 a 0402 + 02481012 a 0401 + 02293856 a 0402 ! 14419164 n 0403 + 01294396 v 0201 + 01294182 v 0201 + 01294182 v 0101 ~ 14417993 n 0000 ~ 14418103 n 0000 | state of being disconnected -14417993 26 n 01 separability 0 002 @ 14417697 n 0000 + 00785002 a 0102 | the capability of being separated -14418103 26 n 02 incoherence 0 incoherency 0 005 @ 14417697 n 0000 + 00464962 a 0201 + 00464962 a 0101 ! 14420464 n 0101 ~ 14418290 n 0000 | lack of cohesion or clarity or organization -14418290 26 n 01 disjointedness 0 002 @ 14418103 n 0000 + 00465221 a 0103 | lacking order or coherence -14418395 26 n 02 union 0 unification 0 008 @ 00024720 n 0000 ! 14414294 n 0101 ~ 14418662 n 0000 ~ 14419164 n 0000 ~ 14420954 n 0000 ~ 14421139 n 0000 ~ 14421585 n 0000 ~ 14421724 n 0000 | the state of being joined or united or linked; "there is strength in union" -14418662 26 n 02 coalition 0 fusion 0 004 @ 14418395 n 0000 + 00394813 v 0108 ~ 14418822 n 0000 ~ 14418970 n 0000 | the state of being combined into one body -14418822 26 n 02 alliance 0 confederation 0 003 @ 14418662 n 0000 + 02434541 v 0201 + 02470685 v 0202 | the state of being allied or confederated -14418970 26 n 02 federalization 0 federalisation 0 003 @ 14418662 n 0000 + 00504464 v 0202 + 00504464 v 0101 | the state of being under federal control; "the federalization of postal service" -14419164 26 n 03 connection 0 link 0 connectedness 0 011 @ 14418395 n 0000 + 01973311 a 0303 + 00566099 a 0301 ! 14417697 n 0304 + 01492052 v 0202 + 02622234 v 0202 + 00713167 v 0204 ~ 14419510 n 0000 ~ 14419737 n 0000 ~ 14420240 n 0000 ~ 14420464 n 0000 | the state of being connected; "the connection between church and state is inescapable" -14419510 26 n 01 contact 0 004 @ 14419164 n 0000 + 01205696 v 0104 ~ 14419889 n 0000 ~ 14420074 n 0000 | the state or condition of touching or of being in immediate proximity; "litmus paper turns red on contact with an acid" -14419737 26 n 01 concatenation 0 002 @ 14419164 n 0000 + 01465054 v 0101 | the state of being linked together as in a chain; union in a linked series -14419889 26 n 01 osculation 0 003 @ 14419510 n 0000 ;c 06000644 n 0000 + 02751055 v 0101 | (mathematics) a contact of two curves (or two surfaces) at which they have a common tangent -14420074 26 n 01 tangency 0 002 @ 14419510 n 0000 + 13871134 n 0101 | the state of being tangent; having contact at a single point or along a line without crossing -14420240 26 n 02 interconnection 0 interconnectedness 0 004 @ 14419164 n 0000 + 02006933 a 0201 + 01328229 a 0203 + 02622969 v 0102 | a state of being connected reciprocally; "an interconnection between the two buildings" -14420464 26 n 04 coherence 0 coherency 0 cohesion 0 cohesiveness 0 011 @ 14419164 n 0000 + 02477047 a 0401 + 00053564 a 0401 + 01220885 v 0305 + 00053384 a 0201 + 01220885 v 0205 + 00053384 a 0101 + 01220885 v 0105 ! 14418103 n 0101 ~ 14420780 n 0000 ~ 14422035 n 0000 | the state of cohering or sticking together -14420780 26 n 01 consistency 0 002 @ 14420464 n 0000 + 00576680 a 0101 | logical coherence and accordance with the facts; "a rambling argument that lacked any consistency" -14420954 26 n 04 junction 0 conjunction 0 conjugation 0 colligation 0 004 @ 14418395 n 0000 + 00713167 v 0405 ~ 05249420 n 0000 ~ 05473928 n 0000 | the state of being joined together -14421139 26 n 01 association 2 003 @ 14418395 n 0000 + 00713167 v 0101 ! 14421373 n 0101 | the state of being connected together as in memory or imagination; "his association of his father with being beaten was too strong to break" -14421373 26 n 01 disassociation 1 003 @ 14414294 n 0000 + 02430580 v 0101 ! 14421139 n 0101 | the state of being unconnected in memory or imagination; "I could not think of him in disassociation from his wife" -14421585 26 n 01 marriage 1 001 @ 14418395 n 0000 | a close and intimate union; "the marriage of music and dance"; "a marriage of ideas" -14421724 26 n 01 syncretism 0 006 @ 14418395 n 0000 + 02807478 a 0103 + 02807478 a 0101 + 02807478 a 0102 + 02807478 a 0104 + 00368522 v 0101 | the union (or attempted fusion) of different systems of thought or belief (especially in religion or philosophy); "a syncretism of material and immaterial theories" -14422035 26 n 01 continuity 0 004 @ 14420464 n 0000 + 00597424 a 0101 + 00594413 a 0101 ! 14417551 n 0101 | uninterrupted connection or union -14422179 26 n 02 improvement 0 melioration 0 009 @ 13920835 n 0000 + 00205885 v 0205 + 00205046 v 0204 + 00205046 v 0102 ! 14422488 n 0101 ~ 14422751 n 0000 ~ 14422871 n 0000 ~ 14424087 n 0000 ~ 14424517 n 0000 | a condition superior to an earlier condition; "the new school represents a great improvement" -14422488 26 n 02 decline 0 declination 0 007 @ 13920835 n 0000 + 00203866 v 0202 + 00203866 v 0102 ! 14422179 n 0101 ~ 14423428 n 0000 ~ 14423740 n 0000 ~ 14423870 n 0000 | a condition inferior to an earlier condition; a gradual falling off from a better state -14422751 26 n 01 betterment 0 001 @ 14422179 n 0000 | an improvement that adds to the value of a property or facility -14422871 26 n 01 development 0 005 @ 14422179 n 0000 ;c 00503237 n 0000 + 01074701 v 0101 + 01074509 v 0101 ~ 14423268 n 0000 | a state in which things are improving; the result of developing (as in the early part of a game of chess); "after he saw the latest development he changed his mind and became a supporter"; "in chess your should take care of your development before moving your queen" -14423268 26 n 01 underdevelopment 0 001 @ 14422871 n 0000 | state of inadequate development; "much poverty can be traced to the underdevelopment of industry" -14423428 26 n 02 neglect 0 disuse 0 002 @ 14422488 n 0000 ~ 14423614 n 0000 | the state of something that has been unused and neglected; "the house was in a terrible state of neglect" -14423614 26 n 01 omission 0 001 @ 14423428 n 0000 | something that has been omitted; "she searched the table for omissions" -14423740 26 n 01 twilight 1 001 @ 14422488 n 0000 | a condition of decline following successes; "in the twilight of the empire" -14423870 26 n 01 wreck 0 002 @ 14422488 n 0000 + 01566185 v 0102 | something or someone that has suffered ruin or dilapidation; "the house was a wreck when they bought it"; "thanks to that quack I am a human wreck" -14424087 26 n 01 reformation 0 003 @ 14422179 n 0000 + 00265673 v 0101 ~ 14424384 n 0000 | improvement (or an intended improvement) in the existing form or condition of institutions or practices etc.; intended to make a striking change for the better in social or political or religious affairs -14424384 26 n 01 counterreformation 0 001 @ 14424087 n 0000 | a reformation intended to counter the results of a prior reformation -14424517 26 n 03 renovation 0 restoration 0 refurbishment 0 005 @ 14422179 n 0000 + 00163441 v 0301 + 02552449 v 0201 + 00163441 v 0102 + 00164201 v 0101 | the state of being restored to its former good condition; "the inn was a renovation of a Colonial house" -14424780 26 n 02 maturity 0 matureness 0 013 @ 00024720 n 0000 + 01493173 a 0202 + 01095914 a 0202 + 01488245 a 0201 + 01095914 a 0102 + 01488245 a 0101 ! 14425974 n 0101 = 01488245 a 0000 = 01489722 a 0000 ~ 14425103 n 0000 ~ 14425601 n 0000 ~ 14425853 n 0000 ~ 14426325 n 0000 | state of being mature; full development -14425103 26 n 01 adulthood 0 006 @ 14424780 n 0000 + 09605289 n 0101 + 01321456 n 0101 ~ 14425319 n 0000 ~ 14425414 n 0000 ~ 14425715 n 0000 | the state (and responsibilities) of a person who has attained maturity -14425319 26 n 01 manhood 0 001 @ 14425103 n 0000 | the state of being a man; manly qualities -14425414 26 n 02 parenthood 0 parentage 0 003 @ 14425103 n 0000 + 02539788 v 0205 + 10399491 n 0101 | the state of being a parent; "to everyone's surprise, parenthood reformed the man" -14425601 26 n 01 ripeness 0 003 @ 14424780 n 0000 + 01493173 a 0101 ! 14426449 n 0101 | the state of being ripe -14425715 26 n 02 womanhood 0 muliebrity 0 003 @ 14425103 n 0000 + 10787470 n 0101 + 08477634 n 0102 | the state of being an adult woman -14425853 26 n 01 youth 0 001 @ 14424780 n 0000 | early maturity; the state of being young or immature or inexperienced -14425974 26 n 02 immaturity 0 immatureness 0 015 @ 00024720 n 0000 + 01493897 a 0204 + 01646941 a 0202 + 01492394 a 0201 + 01489722 a 0201 + 01493897 a 0104 + 01492394 a 0101 + 01489722 a 0101 ! 14424780 n 0101 ~ 14426449 n 0000 ~ 14426568 n 0000 ~ 14426736 n 0000 ~ 14426910 n 0000 ~ 14427065 n 0000 ~ 14427239 n 0000 | not having reached maturity -14426325 26 n 02 post-maturity 0 post-menopause 0 001 @ 14424780 n 0000 | the state in which women have stopped ovulating -14426449 26 n 01 greenness 0 003 @ 14425974 n 0000 + 01493897 a 0101 ! 14425601 n 0101 | the state of not being ripe -14426568 26 n 03 callowness 0 jejuneness 0 juvenility 0 003 @ 14425974 n 0000 + 01492596 a 0303 + 01492596 a 0202 | lacking and evidencing lack of experience of life -14426736 26 n 02 prematureness 0 prematurity 0 005 @ 14425974 n 0000 + 01495535 a 0201 + 00815227 a 0102 + 00815000 a 0101 + 01495535 a 0101 | the state of being premature -14426910 26 n 01 adolescence 0 003 @ 14425974 n 0000 + 02602261 a 0101 + 00252710 v 0101 | in the state that someone is in between puberty and adulthood -14427065 26 n 02 childhood 0 puerility 0 004 @ 14425974 n 0000 + 01492596 a 0204 + 09918554 n 0101 + 09917593 n 0101 | the state of a child between infancy and adolescence -14427239 26 n 02 infancy 0 babyhood 0 005 @ 14425974 n 0000 + 09918554 n 0202 + 09827683 n 0201 + 01322221 n 0201 + 09827683 n 0103 | the earliest state of immaturity -14427408 26 n 01 embrace 0 001 @ 13936304 n 0000 | the state of taking in or encircling; "an island in the embrace of the sea" -14427537 26 n 01 encompassment 0 002 @ 13936304 n 0000 + 02629793 v 0102 | including entirely -14427633 26 n 03 banishment 0 ostracism 0 Coventry 0 006 @ 13935227 n 0000 + 02504017 v 0203 + 02465658 v 0201 + 02504017 v 0204 + 02465658 v 0202 + 02504017 v 0101 | the state of being banished or ostracized (excluded from society by general consent); "the association should get rid of its elderly members--not by euthanasia, of course, but by Coventry" -14427991 26 n 01 debarment 0 002 @ 13935227 n 0000 + 00796588 v 0102 | the state of being debarred (excluded from enjoying certain possessions or rights or practices) -14428160 26 n 03 grade 0 level 1 tier 0 006 @ 14429985 n 0000 + 00658052 v 0105 ~ 14428404 n 0000 ~ 14431015 n 0000 ~ 14431169 n 0000 ~ 14431338 n 0000 | a relative position or degree of value in a graded group; "lumber of the highest grade" -14428404 26 n 01 biosafety_level 0 005 @ 14428160 n 0000 ~ 14428655 n 0000 ~ 14428796 n 0000 ~ 14428970 n 0000 ~ 14429150 n 0000 | the level of safety from exposure to infectious agents; depends on work practices and safety equipment and facilities -14428655 26 n 01 biosafety_level_1 0 001 @ 14428404 n 0000 | exposure only to infectious agents that do not ordinarily cause human disease -14428796 26 n 01 biosafety_level_2 0 001 @ 14428404 n 0000 | exposure to infectious agents that can cause disease in humans but whose potential for transmission is limited -14428970 26 n 01 biosafety_level_3 0 001 @ 14428404 n 0000 | exposure to infectious agents that can be transmitted by the respiratory route and which can cause serious infection -14429150 26 n 01 biosafety_level_4 0 001 @ 14428404 n 0000 | exposure to exotic infectious agents that pose a high risk of life-threatening disease and can be transmitted as an aerosol and for which there is no vaccine or therapy -14429382 26 n 01 rating 0 002 @ 13948136 n 0000 + 02646227 v 0101 | standing or position on a scale -14429484 26 n 01 ranking 0 002 @ 13948136 n 0000 + 00660102 v 0101 | position on a scale in relation to others in a sport -14429608 26 n 02 gradation 0 step 0 006 @ 14429985 n 0000 + 01143138 a 0101 + 01614079 v 0101 + 00658052 v 0105 + 00657550 v 0101 ~ 14429885 n 0000 | relative position in a graded series; "always a step behind"; "subtle gradations in color"; "keep in step with the fashions" -14429885 26 n 01 cut 1 001 @ 14429608 n 0000 | a step on some scale; "he is a cut above the rest" -14429985 26 n 01 rank 0 046 @ 13945919 n 0000 + 00658052 v 0102 + 00660102 v 0101 ~ 13846199 n 0000 ~ 13846546 n 0000 ~ 13846900 n 0000 ~ 13847124 n 0000 ~ 13847240 n 0000 ~ 13847402 n 0000 ~ 13847498 n 0000 ~ 13847616 n 0000 ~ 13847715 n 0000 ~ 13847858 n 0000 ~ 13847954 n 0000 ~ 13848052 n 0000 ~ 13848149 n 0000 ~ 13848249 n 0000 ~ 13848349 n 0000 ~ 13848466 n 0000 ~ 13848565 n 0000 ~ 13848684 n 0000 ~ 13848784 n 0000 ~ 13848884 n 0000 ~ 13848983 n 0000 ~ 13849082 n 0000 ~ 13849180 n 0000 ~ 13849296 n 0000 ~ 13849394 n 0000 ~ 13849512 n 0000 ~ 13849611 n 0000 ~ 13849710 n 0000 ~ 13849810 n 0000 ~ 13849913 n 0000 ~ 13850019 n 0000 ~ 13850148 n 0000 ~ 14428160 n 0000 ~ 14429608 n 0000 ~ 14430916 n 0000 ~ 14431471 n 0000 ~ 14432527 n 0000 ~ 14432623 n 0000 ~ 14432744 n 0000 ~ 14432875 n 0000 ~ 14433001 n 0000 ~ 14433115 n 0000 ~ 14433232 n 0000 | relative status; "his salary was determined by his rank and seniority" -14430916 26 n 01 second_class 0 001 @ 14429985 n 0000 | not the highest rank in a classification -14431015 26 n 01 A_level 0 002 @ 14428160 n 0000 ;r 08871007 n 0000 | the advanced level of a subject taken in school (usually two years after O level) -14431169 26 n 03 General_Certificate_of_Secondary_Education 0 GCSE 0 O_level 0 002 @ 14428160 n 0000 ;r 08871007 n 0000 | the basic level of a subject taken in school -14431338 26 n 01 college_level 0 001 @ 14428160 n 0000 | the level of education that college students are assumed to have attained -14431471 26 n 04 military_rank 0 military_rating 0 paygrade 0 rating 2 003 @ 14429985 n 0000 ;c 08199025 n 0000 ~ 14431637 n 0000 | rank in a military organization -14431637 26 n 01 flag_rank 0 002 @ 14431471 n 0000 ;c 08199025 n 0000 | the rank of a flag officer -14431738 26 n 01 caste 0 001 @ 13945919 n 0000 | social status or position conferred by a system based on class; "lose caste by doing work beneath one's station" -14431902 26 n 01 dignity 0 001 @ 13945919 n 0000 | high office or rank or station; "he respected the dignity of the emissaries" -14432032 26 n 02 nobility 0 noblesse 0 003 @ 13945919 n 0000 + 01590115 a 0101 ~ 14432271 n 0000 | the state of being of noble birth -14432167 26 n 01 ordination 0 001 @ 13945919 n 0000 | the status of being ordained to a sacred office -14432271 26 n 01 purple 0 002 @ 14432032 n 0000 + 01591394 a 0103 | of imperial status; "he was born to the purple" -14432389 26 n 01 pedestal 0 001 @ 13945919 n 0000 | a position of great esteem (and supposed superiority); "they put him on a pedestal" -14432527 26 n 01 archidiaconate 0 001 @ 14429985 n 0000 | office or position of an archdeacon -14432623 26 n 02 baronetcy 0 barony 0 001 @ 14429985 n 0000 | the rank or dignity or position of a baronet or baroness -14432744 26 n 01 dukedom 0 003 @ 14429985 n 0000 + 10038778 n 0101 + 10038620 n 0101 | the dignity or rank or position of a duke -14432875 26 n 01 earldom 0 002 @ 14429985 n 0000 + 10041373 n 0101 | the dignity or rank or position of an earl or countess -14433001 26 n 01 kingship 0 002 @ 14429985 n 0000 + 10231515 n 0101 | the dignity or rank or position of a king -14433115 26 n 01 princedom 0 002 @ 14429985 n 0000 + 10472799 n 0101 | the dignity or rank or position of a prince -14433232 26 n 02 viscountcy 0 viscounty 0 001 @ 14429985 n 0000 | the dignity or rank or position of a viscount or viscountess -14433361 26 n 01 leadership 0 002 @ 13945919 n 0000 + 09623038 n 0101 | the status of a leader; "they challenged his leadership of the union" -14433505 26 n 01 ennoblement 0 001 @ 13920835 n 0000 | the state of being noble -14433587 26 n 01 prominence 0 005 @ 13948136 n 0000 + 00579622 a 0103 ! 14436029 n 0101 ~ 14433769 n 0000 ~ 14434022 n 0000 | the state of being prominent: widely known or eminent -14433769 26 n 04 limelight 0 spotlight 0 glare 0 public_eye 0 002 @ 14433587 n 0000 + 00514069 v 0203 | a focus of public attention; "he enjoyed being in the limelight"; "when Congress investigates it brings the full glare of publicity to the agency" -14434022 26 n 03 salience 0 saliency 0 strikingness 0 006 @ 14433587 n 0000 + 00580805 a 0305 + 00580805 a 0203 + 00580805 a 0103 ~ 14434219 n 0000 ~ 14434329 n 0000 | the state of being salient -14434219 26 n 01 conspicuousness 0 002 @ 14434022 n 0000 + 02090567 a 0103 | the state of being conspicuous -14434329 26 n 02 visibility 0 profile 0 002 @ 14434022 n 0000 ~ 14434522 n 0000 | degree of exposure to public notice; "that candidate does not have sufficient visibility to win an election" -14434522 26 n 01 low_profile 0 001 @ 14434329 n 0000 | a state of low visibility in which public notice is avoided; "he was never one to keep a low profile" -14434681 26 n 02 importance 0 grandness 0 005 @ 13948136 n 0000 + 01830403 a 0202 + 01830403 a 0102 ~ 14434866 n 0000 ~ 14435353 n 0000 | a prominent status; "a person of importance" -14434866 26 n 02 emphasis 0 accent 0 006 @ 14434681 n 0000 + 01013367 v 0206 + 01013367 v 0205 + 00156575 a 0101 + 01013367 v 0102 ~ 14435187 n 0000 | special importance or significance; "the red light gave the central figure increased emphasis"; "the room was decorated in shades of grey with distinctive red accents" -14435187 26 n 02 stress 3 focus 1 002 @ 14434866 n 0000 + 01013367 v 0101 | special emphasis attached to something; "the stress was more on accuracy than on speed" -14435353 26 n 01 primacy 0 001 @ 14434681 n 0000 | the state of being first in importance -14435445 26 n 04 eminence 0 distinction 0 preeminence 0 note 0 004 @ 13948441 n 0000 + 02339341 a 0302 + 02339120 a 0101 ~ 14435670 n 0000 | high status importance owing to marked superiority; "a scholar of great eminence" -14435670 26 n 01 king 0 001 @ 14435445 n 0000 | preeminence in a particular category or group or field; "the lion is the king of beasts" -14435809 26 n 02 prestige 0 prestigiousness 0 003 @ 13948136 n 0000 + 01982957 a 0203 + 01982957 a 0103 | a high standing achieved through success or influence or wealth etc.; "he wanted to achieve power and prestige" -14436029 26 n 01 obscurity 0 007 @ 13948136 n 0000 + 01122595 a 0101 ! 14433587 n 0101 ~ 14436285 n 0000 ~ 14436438 n 0000 ~ 14436667 n 0000 ~ 14436769 n 0000 | an obscure and unimportant standing; not well known; "he worked in obscurity for many years" -14436285 26 n 02 anonymity 0 namelessness 0 004 @ 14436029 n 0000 + 00236652 a 0201 + 00236652 a 0101 + 00120574 a 0101 | the state of being anonymous -14436438 26 n 04 humbleness 0 unimportance 0 obscureness 0 lowliness 1 006 @ 14436029 n 0000 + 01122595 a 0301 + 02164402 a 0202 + 01279978 a 0201 + 01592857 a 0103 + 02340458 a 0101 | the state of being humble and unimportant -14436667 26 n 01 nowhere 0 001 @ 14436029 n 0000 | an insignificant place; "he came out of nowhere" -14436769 26 n 02 oblivion 0 limbo 1 001 @ 14436029 n 0000 | the state of being disregarded or forgotten -14436875 26 n 03 honor 0 honour 0 laurels 0 010 @ 13948136 n 0000 + 02546075 v 0202 + 00821959 a 0101 + 02237631 v 0101 + 02546075 v 0101 ! 14439447 n 0101 ~ 14437134 n 0000 ~ 14437386 n 0000 ~ 14437552 n 0000 ~ 14438125 n 0000 | the state of being honored -14437134 26 n 02 glory 0 glorification 0 008 @ 14436875 n 0000 + 00860620 v 0204 + 00489299 v 0201 + 01120925 a 0101 + 00858341 v 0101 + 00860620 v 0104 + 00489496 v 0101 + 00489299 v 0101 | a state of high honor; "he valued glory above life itself" -14437386 26 n 03 fame 1 celebrity 0 renown 0 003 @ 14436875 n 0000 + 01375831 a 0104 ! 14441230 n 0101 | the state or quality of being widely honored and acclaimed -14437552 26 n 03 esteem 0 regard 0 respect 0 006 @ 14436875 n 0000 + 02457233 v 0301 + 00694068 v 0301 + 00694068 v 0102 ! 14437845 n 0101 ~ 14437976 n 0000 | the condition of being honored (esteemed or respected or well regarded); "it is held in esteem"; "a man who has earned high regard" -14437845 26 n 01 disesteem 0 003 @ 14439447 n 0000 + 00694641 v 0102 ! 14437552 n 0101 | the state in which esteem has been lost -14437976 26 n 01 stature 0 001 @ 14437552 n 0000 | high level of respect gained by impressive development or achievement; "a man of great stature" -14438125 26 n 02 repute 0 reputation 0 011 @ 14436875 n 0000 + 00689950 v 0202 + 00689950 v 0102 ! 14439745 n 0101 = 01982646 a 0000 = 01983797 a 0000 ~ 14438419 n 0000 ~ 14438541 n 0000 ~ 14438693 n 0000 ~ 14438788 n 0000 ~ 14438898 n 0000 | the state of being held in high esteem and honor -14438419 26 n 01 black_eye 1 001 @ 14438125 n 0000 | a bad reputation; "his behavior gave the whole family a black eye" -14438541 26 n 01 stock 0 001 @ 14438125 n 0000 | the reputation and popularity a person has; "his stock was so high he could have been elected mayor" -14438693 26 n 01 character 0 001 @ 14438125 n 0000 | good repute; "he is a man of character" -14438788 26 n 01 name 0 001 @ 14438125 n 0000 | a person's reputation; "he wanted to protect his good name" -14438898 26 n 01 fame 2 003 @ 14438125 n 0000 + 01375831 a 0104 ! 14439012 n 0101 | favorable public reputation -14439012 26 n 01 infamy 2 004 @ 14439745 n 0000 + 01984411 a 0102 ! 14438898 n 0101 ~ 14439149 n 0000 | evil fame or public reputation -14439149 26 n 02 notoriety 0 ill_fame 0 002 @ 14439012 n 0000 ~ 14439294 n 0000 | the state of being known for some unfavorable act or quality -14439294 26 n 01 reputation 1 002 @ 14439149 n 0000 + 00689950 v 0102 | notoriety for some particular characteristic; "his reputation for promiscuity" -14439447 26 n 02 dishonor 0 dishonour 0 010 @ 13948136 n 0000 + 02547225 v 0203 + 02567519 v 0105 + 02547225 v 0101 ! 14436875 n 0101 ~ 14437845 n 0000 ~ 14439745 n 0000 ~ 14440035 n 0000 ~ 14440137 n 0000 ~ 14441230 n 0000 | a state of shame or disgrace; "he was resigned to a life of dishonor" -14439745 26 n 02 disrepute 0 discredit 0 005 @ 14439447 n 0000 + 00687738 v 0201 + 00847478 v 0201 ! 14438125 n 0101 ~ 14439012 n 0000 | the state of being held in low esteem; "your actions will bring discredit to your name"; "because of the scandal the school has fallen into disrepute" -14440035 26 n 01 corruptness 0 002 @ 14439447 n 0000 + 00620731 a 0101 | the state of being corrupt -14440137 26 n 03 shame 0 disgrace 0 ignominy 0 010 @ 14439447 n 0000 + 01227546 a 0303 + 00847478 v 0202 + 02547225 v 0202 + 02508078 v 0101 + 02547225 v 0105 ~ 14440488 n 0000 ~ 14441498 n 0000 ~ 14441610 n 0000 ~ 14441714 n 0000 | a state of dishonor; "one mistake brought shame to all his family"; "suffered the ignominy of being sent to prison" -14440488 26 n 01 humiliation 0 003 @ 14440137 n 0000 + 01799794 v 0101 ~ 14440623 n 0000 | state of disgrace or loss of self-respect -14440623 26 n 03 abasement 0 degradation 0 abjection 1 005 @ 14440488 n 0000 + 01800422 v 0202 + 00207728 v 0201 ~ 14440875 n 0000 ~ 14441083 n 0000 | a low or downcast state; "each confession brought her into an attitude of abasement"- H.L.Menchken -14440875 26 n 04 degeneracy 0 degeneration 0 decadence 0 decadency 0 004 @ 14440623 n 0000 + 01297658 a 0401 + 01297658 a 0301 + 00092293 v 0204 | the state of being degenerate in mental or moral qualities -14441083 26 n 01 depth 0 002 @ 14440623 n 0000 ;u 06295235 n 0000 | (usually plural) a low moral state; "he had sunk to the depths of addiction" -14441230 26 n 02 infamy 1 opprobrium 0 004 @ 14439447 n 0000 + 01227546 a 0205 + 01984411 a 0102 ! 14437386 n 0101 | a state of extreme dishonor; "a date which will live in infamy"- F.D.Roosevelt; "the name was a by-word of scorn and opprobrium throughout the city" -14441498 26 n 02 obloquy 0 opprobrium 1 001 @ 14440137 n 0000 | state of disgrace resulting from public abuse -14441610 26 n 01 odium 0 001 @ 14440137 n 0000 | state of disgrace resulting from detestable behavior -14441714 26 n 01 reproach 0 001 @ 14440137 n 0000 | disgrace or shame; "he brought reproach upon his family" -14441825 26 n 06 dominance 0 ascendance 0 ascendence 0 ascendancy 0 ascendency 0 control 0 015 @ 13920835 n 0000 + 00791631 a 0502 + 00791631 a 0401 + 02381571 v 0401 + 00791631 a 0302 + 00791631 a 0201 + 00791227 a 0101 + 02646931 v 0101 ~ 14442361 n 0000 ~ 14442530 n 0000 ~ 14442749 n 0000 ~ 14442933 n 0000 ~ 14443434 n 0000 ~ 14443912 n 0000 ~ 14444114 n 0000 | the state that exists when one person or group has power over another; "her apparent dominance of her husband was really her attempt to make him pay attention to her" -14442361 26 n 02 ascendant 0 ascendent 0 002 @ 14441825 n 0000 + 00791631 a 0101 | position or state of being dominant or in control; "that idea was in the ascendant" -14442530 26 n 03 domination 0 mastery 0 supremacy 0 006 @ 14441825 n 0000 + 10678662 n 0301 + 02539334 v 0202 + 02646931 v 0101 + 02539334 v 0101 ~ 13950440 n 0000 | power to dominate or defeat; "mastery of the seas" -14442749 26 n 03 predominance 0 predomination 0 prepotency 0 004 @ 14441825 n 0000 + 02644234 v 0201 + 00792202 a 0103 + 02644234 v 0101 | the state of being predominant over others -14442933 26 n 02 dominion 0 rule 0 007 @ 14441825 n 0000 + 02586619 v 0202 + 02646931 v 0101 ~ 14443228 n 0000 ~ 14443345 n 0000 ~ 14443532 n 0000 ~ 14443786 n 0000 | dominance or power through legal authority; "France held undisputed dominion over vast areas of Africa"; "the rule of Caesar" -14443228 26 n 01 paramountcy 0 001 @ 14442933 n 0000 | the state of being paramount; the highest rank or authority -14443345 26 n 01 raj 0 001 @ 14442933 n 0000 | British dominion over India (1757-1947) -14443434 26 n 01 regulation 0 001 @ 14441825 n 0000 | the state of being controlled or governed -14443532 26 n 02 reign 0 sovereignty 2 003 @ 14442933 n 0000 + 02587375 v 0101 ~ 14443676 n 0000 | royal authority; the dominion of a monarch -14443676 26 n 02 scepter 0 sceptre 0 001 @ 14443532 n 0000 | the imperial authority symbolized by a scepter -14443786 26 n 01 suzerainty 0 001 @ 14442933 n 0000 | the position or authority of a suzerain; "under the suzerainty of..." -14443912 26 n 03 absolutism 0 tyranny 0 despotism 0 005 @ 14441825 n 0000 + 00788474 a 0202 + 09755398 n 0101 + 00717684 a 0206 + 00717684 a 0205 | dominance through threat of punishment and violence -14444114 26 n 01 monopoly 2 005 @ 14441825 n 0000 + 10329337 n 0101 + 02442546 v 0101 + 02204242 v 0101 + 02204242 v 0102 | exclusive control or possession of something; "They have no monopoly on intelligence" -14444326 26 n 01 monopoly 1 007 @ 01097292 n 0000 ;c 06149484 n 0000 + 00513559 a 0101 + 02442546 v 0101 + 02204242 v 0101 + 02204242 v 0102 ~ 14445072 n 0000 | (economics) a market in which there are many buyers but only one seller; "a monopoly on silver"; "when you have a monopoly you can ask any price you like" -14444644 26 n 01 monopsony 0 002 @ 01097292 n 0000 ;c 06149484 n 0000 | (economics) a market in which goods or services are offered by several sellers but there is only one buyer -14444825 26 n 01 oligopoly 0 002 @ 01097292 n 0000 ;c 06149484 n 0000 | (economics) a market in which control over the supply of a commodity is in the hands of a small number of producers and each one can influence prices and affect competitors -14445072 26 n 01 corner 0 002 @ 14444326 n 0000 + 02442924 v 0101 | a temporary monopoly on a kind of commercial trade; "a corner on the silver market" -14445226 26 n 04 bane 0 curse 1 scourge 0 nemesis 0 002 @ 07305234 n 0000 + 00388635 v 0306 | something causing misery or death; "the bane of my life" -14445379 26 n 02 comfort 0 comfortableness 0 010 @ 13920835 n 0000 + 00476819 a 0201 + 00082308 v 0101 ! 14446652 n 0101 = 00476819 a 0000 = 00478015 a 0000 ~ 14445749 n 0000 ~ 14446161 n 0000 ~ 14446298 n 0000 ~ 14446493 n 0000 | a state of being relaxed and feeling no pain; "he is a man who enjoys his comfort"; "she longed for the comfortableness of her armchair" -14445749 26 n 02 relief 0 ease 2 003 @ 14445379 n 0000 + 01815185 v 0204 ~ 14446034 n 0000 | the condition of being comfortable or relieved (especially after being relieved of distress); "he enjoyed his relief from responsibility"; "getting it off his conscience gave him some ease" -14446034 26 n 02 reprieve 0 respite 0 002 @ 14445749 n 0000 + 02551390 v 0101 | a (temporary) relief from harm or discomfort -14446161 26 n 02 solace 0 solacement 0 003 @ 14445379 n 0000 + 01814815 v 0204 + 01814815 v 0104 | comfort in disappointment or misery -14446298 26 n 03 coziness 0 cosiness 0 snugness 0 006 @ 14445379 n 0000 + 01885991 a 0301 + 00477284 a 0303 + 00477284 a 0202 + 01076145 a 0101 + 00477284 a 0101 | a state of warm snug comfort -14446493 26 n 01 convenience 0 002 @ 14445379 n 0000 + 00604617 a 0101 | the state of being suitable or opportune; "chairs arranged for his own convenience" -14446652 26 n 02 discomfort 0 uncomfortableness 0 007 @ 13920835 n 0000 + 00479933 a 0201 ! 14445379 n 0101 ~ 14446878 n 0000 ~ 14447019 n 0000 ~ 14447165 n 0000 ~ 14447303 n 0000 | the state of being tense and feeling pain -14446878 26 n 02 inconvenience 0 incommodiousness 0 003 @ 14446652 n 0000 + 00476494 a 0201 + 02507736 v 0103 | an inconvenient discomfort -14447019 26 n 03 malaise 0 unease 0 uneasiness 0 002 @ 14446652 n 0000 + 00479073 a 0301 | physical discomfort (as mild sickness or depression) -14447165 26 n 02 hangover 0 katzenjammer 0 001 @ 14446652 n 0000 | disagreeable aftereffects from the use of drugs (especially alcohol) -14447303 26 n 01 wretchedness 1 002 @ 14446652 n 0000 + 00478872 a 0102 | the character of being uncomfortable and unpleasant; "the wretchedness for which these prisons became known"; "the grey wretchedness of the rain" -14447525 26 n 06 wellbeing 0 well-being 0 welfare 0 upbeat 0 eudaemonia 0 eudaimonia 0 004 @ 14474052 n 0000 ! 14448200 n 0201 ~ 14447816 n 0000 ~ 14447908 n 0000 | a contented state of being happy and healthy and prosperous; "the town was finally on the upbeat after our recent troubles" -14447816 26 n 01 fool's_paradise 0 001 @ 14447525 n 0000 | an illusory state of wellbeing -14447908 26 n 02 health 0 wellness 0 007 @ 14447525 n 0000 + 02540578 a 0201 ! 14061805 n 0201 ! 14061805 n 0202 + 01170243 a 0101 = 01170243 a 0000 = 01172889 a 0000 | a healthy state of wellbeing free from disease; "physicians should be held responsible for the health of their patients" -14448200 26 n 01 ill-being 0 003 @ 14475661 n 0000 ! 14447525 n 0102 ~ 14448333 n 0000 | lack of prosperity or happiness or health -14448333 26 n 03 misery 0 wretchedness 0 miserableness 0 010 @ 14448200 n 0000 + 01150205 a 0301 + 01050890 a 0302 + 00478872 a 0301 + 02347086 a 0303 + 01150205 a 0203 + 01050890 a 0209 ~ 14448692 n 0000 ~ 14448825 n 0000 ~ 14448910 n 0000 | a state of ill-being due to affliction or misfortune; "the misery and wretchedness of those slums is intolerable" -14448692 26 n 01 concentration_camp 0 001 @ 14448333 n 0000 | a situation characterized by crowding and extremely harsh conditions -14448825 26 n 01 living_death 0 001 @ 14448333 n 0000 | a state of constant misery -14448910 26 n 02 suffering 1 woe 0 002 @ 14448333 n 0000 + 01794668 v 0101 | misery resulting from affliction -14449022 26 n 01 anguish 0 002 @ 14476852 n 0000 + 01792567 v 0102 | extreme distress of body or mind -14449126 26 n 02 need 0 demand 0 005 @ 13920835 n 0000 + 02627934 v 0209 + 01188725 v 0102 ~ 14449405 n 0000 ~ 14450691 n 0000 | a condition requiring relief; "she satisfied his need for affection"; "God has no need of men to accomplish His work"; "there is a demand for jobs" -14449405 26 n 03 lack 0 deficiency 0 want 1 011 @ 14449126 n 0000 + 02632567 v 0301 + 01188725 v 0301 + 02297409 a 0201 + 02632353 v 0102 ~ 13960974 n 0000 ~ 14449865 n 0000 ~ 14449960 n 0000 ~ 14450172 n 0000 ~ 14450339 n 0000 ~ 14450540 n 0000 | the state of needing something that is absent or unavailable; "there is a serious lack of insight into the problem"; "water is the critical deficiency in desert regions"; "for want of a nail the shoe was lost" -14449865 26 n 03 dearth 0 famine 0 shortage 0 001 @ 14449405 n 0000 | an acute insufficiency -14449960 26 n 01 deficit 0 001 @ 14449405 n 0000 | a deficiency or failure in neurological or mental functioning; "the people concerned have a deficit in verbal memory"; "they have serious linguistic deficits" -14450172 26 n 01 mineral_deficiency 0 002 @ 14449405 n 0000 ~ 14168653 n 0000 | lack of a mineral micronutrient that is essential for normal nutrition or metabolism -14450339 26 n 01 shortness 0 003 @ 14449405 n 0000 + 02336904 a 0103 + 02006031 a 0103 | the condition of being short of something; "there was no shortness of money"; "can cause shortness of breath" -14450540 26 n 02 stringency 0 tightness 0 002 @ 14449405 n 0000 + 00017186 a 0201 | a state occasioned by scarcity of money and a shortage of credit -14450691 26 n 01 necessity 0 007 @ 14449126 n 0000 + 01580050 a 0101 + 02627934 v 0101 = 01580050 a 0000 = 01581115 a 0000 ~ 14450904 n 0000 ~ 14451020 n 0000 | the condition of being essential or indispensable -14450904 26 n 01 requisiteness 0 002 @ 14450691 n 0000 + 01580775 a 0104 | the state of being absolutely required -14451020 26 n 01 urgency 0 004 @ 14450691 n 0000 ~ 14451189 n 0000 ~ 14451349 n 0000 ~ 14451672 n 0000 | the state of being urgent; an earnest and insistent necessity -14451189 26 n 02 hurry 0 haste 0 002 @ 14451020 n 0000 + 00459296 v 0102 | a condition of urgency making it necessary to hurry; "in a hurry to lock the door" -14451349 26 n 05 imperativeness 0 insistence 0 insistency 0 press 0 pressure 0 007 @ 14451020 n 0000 + 02581073 v 0503 + 02504562 v 0504 + 02722782 v 0501 + 00712877 a 0304 + 00592539 a 0201 + 00712419 a 0101 | the state of demanding notice or attention; "the insistence of their hunger"; "the press of business matters" -14451672 26 n 03 criticality 0 criticalness 0 cruciality 0 008 @ 14451020 n 0000 + 01276150 a 0303 + 00655779 a 0301 + 00903894 a 0201 + 00656132 a 0201 + 00650577 a 0201 + 00903894 a 0101 + 00650577 a 0101 | a state of critical urgency -14451911 26 n 01 fullness 0 009 @ 13920835 n 0000 + 01083157 a 0101 ! 14455206 n 0101 = 01083157 a 0000 = 01086545 a 0000 ~ 14452151 n 0000 ~ 14452294 n 0000 ~ 14452442 n 0000 ~ 14452616 n 0000 | the condition of being filled to capacity -14452151 26 n 03 repletion 0 satiety 0 satiation 0 001 @ 14451911 n 0000 | the state of being satisfactorily full and unable to take on more -14452294 26 n 03 surfeit 1 excess 0 overabundance 0 003 @ 14451911 n 0000 + 01191838 v 0101 + 02333225 v 0101 | the state of being more than full -14452442 26 n 01 solidity 0 005 @ 14451911 n 0000 + 02263680 a 0101 ! 14455552 n 0101 = 02263680 a 0000 = 02263982 a 0000 | state of having the interior filled with matter -14452616 26 n 01 infestation 0 020 @ 14451911 n 0000 + 02654686 v 0103 + 02020413 v 0101 ~ 14175727 n 0000 ~ 14175903 n 0000 ~ 14176051 n 0000 ~ 14176372 n 0000 ~ 14180565 n 0000 ~ 14350536 n 0000 ~ 14453066 n 0000 ~ 14453175 n 0000 ~ 14453290 n 0000 ~ 14453414 n 0000 ~ 14453554 n 0000 ~ 14453840 n 0000 ~ 14454030 n 0000 ~ 14454311 n 0000 ~ 14454450 n 0000 ~ 14454988 n 0000 ~ 14455074 n 0000 | the state of being invaded or overrun by parasites -14453066 26 n 03 acariasis 0 acariosis 0 acaridiasis 0 001 @ 14452616 n 0000 | infestation with itch mites -14453175 26 n 01 ascariasis 0 001 @ 14452616 n 0000 | infestation of the human intestine with Ascaris roundworms -14453290 26 n 01 coccidiosis 0 002 @ 14452616 n 0000 ;c 06065423 n 0000 | (veterinary medicine) infestation with coccidia -14453414 26 n 03 echinococcosis 0 hydatid_disease 0 hydatidosis 0 001 @ 14452616 n 0000 | infestation with larval echinococci (tapeworms) -14453554 26 n 01 helminthiasis 0 002 @ 14452616 n 0000 ~ 14453676 n 0000 | infestation of the body with parasitic worms -14453676 26 n 02 hookworm 0 hookworm_disease 0 001 @ 14453554 n 0000 | infestation of the intestines by hookworms which enter the body (usually) through the skin -14453840 26 n 01 myiasis 0 001 @ 14452616 n 0000 | infestation of the body by the larvae of flies (usually through a wound or other opening) or any disease resulting from such infestation -14454030 26 n 02 onchocerciasis 0 river_blindness 0 001 @ 14452616 n 0000 | infestation with slender threadlike roundworms (filaria) deposited under the skin by the bite of black fleas; when the eyes are involved it can result in blindness; common in Africa and tropical America -14454311 26 n 01 opisthorchiasis 0 001 @ 14452616 n 0000 | infestation with flukes obtained from eating raw fish; common in eastern Asia -14454450 26 n 02 pediculosis 0 lousiness 0 005 @ 14452616 n 0000 + 00422374 a 0201 ~ 14454661 n 0000 ~ 14454773 n 0000 ~ 14454874 n 0000 | infestation with lice (Pediculus humanus) resulting in severe itching -14454661 26 n 02 pediculosis_capitis 0 head_lice 0 001 @ 14454450 n 0000 | infestation of the scalp with lice -14454773 26 n 01 pediculosis_corporis 0 001 @ 14454450 n 0000 | infestation of body skin with lice -14454874 26 n 02 pediculosis_pubis 0 crabs 0 001 @ 14454450 n 0000 | infestation of the pubic hair by crab lice -14454988 26 n 01 trombiculiasis 0 001 @ 14452616 n 0000 | infestation with chiggers -14455074 26 n 01 trichuriasis 0 001 @ 14452616 n 0000 | infestation by a roundworm; common in tropical areas with poor sanitation -14455206 26 n 01 emptiness 0 008 @ 13920835 n 0000 + 01088749 a 0101 + 01086545 a 0101 ! 14451911 n 0101 ~ 14455419 n 0000 ~ 14455552 n 0000 ~ 14455966 n 0000 ~ 14456054 n 0000 | the state of containing nothing -14455419 26 n 01 blankness 0 003 @ 14455206 n 0000 + 00500889 a 0101 + 01087093 a 0101 | the state of being blank; void; emptiness -14455552 26 n 01 hollowness 0 003 @ 14455206 n 0000 + 02263982 a 0101 ! 14452442 n 0101 | the state of being hollow: having an empty space within -14455700 26 n 04 nothingness 0 void 0 nullity 0 nihility 0 003 @ 13959931 n 0000 + 02478059 v 0204 ~ 14455847 n 0000 | the state of nonexistence -14455847 26 n 01 thin_air 0 001 @ 14455700 n 0000 | nowhere to be found in a giant void; "it vanished into thin air" -14455966 26 n 01 vacancy 0 002 @ 14455206 n 0000 + 01087977 a 0101 | being unoccupied -14456054 26 n 02 vacuum 0 vacuity 2 001 @ 14455206 n 0000 | the absence of matter -14456138 26 n 03 nakedness 0 nudity 0 nudeness 0 010 @ 13920835 n 0000 + 00457998 a 0304 + 00457998 a 0204 + 01886783 a 0101 + 00457998 a 0103 + 01698760 a 0101 ~ 14456435 n 0000 ~ 14456586 n 0000 ~ 14456752 n 0000 ~ 14456893 n 0000 | the state of being without clothing or covering of any kind -14456435 26 n 01 nude 0 002 @ 14456138 n 0000 + 00457998 a 0104 | without clothing (especially in the phrase `in the nude'); "they swam in the nude" -14456586 26 n 03 raw 0 altogether 0 birthday_suit 0 001 @ 14456138 n 0000 | informal terms for nakedness; "in the raw"; "in the altogether"; "in his birthday suit" -14456752 26 n 01 undress 0 003 @ 14456138 n 0000 + 00177243 v 0102 + 00049900 v 0101 | partial or complete nakedness; "a state of undress" -14456893 26 n 01 bareness 0 002 @ 14456138 n 0000 + 00457998 a 0101 | the state of being unclothed and exposed (especially of a part of the body) -14457041 26 n 02 baldness 0 phalacrosis 0 004 @ 14457218 n 0000 + 00210848 a 0101 ~ 14457361 n 0000 ~ 14457707 n 0000 | the condition of having no hair on the top of the head -14457218 26 n 02 hairlessness 0 depilation 0 003 @ 13920835 n 0000 + 00210446 a 0101 ~ 14457041 n 0000 | the condition of being void of hair -14457361 26 n 01 alopecia 0 002 @ 14457041 n 0000 ~ 14457630 n 0000 | loss of hair (especially on the head) or loss of wool or feathers; in humans it can result from heredity or hormonal imbalance or certain diseases or drugs and treatments (chemotherapy for cancer) -14457630 26 n 01 alopecia_areata 0 001 @ 14457361 n 0000 | patchy baldness -14457707 26 n 02 male-patterned_baldness 0 male_pattern_baldness 0 001 @ 14457041 n 0000 | loss of hair on the crown of the head -14457838 26 n 02 dishabille 0 deshabille 0 002 @ 13920835 n 0000 ~ 14457976 n 0000 | the state of being carelessly or partially dressed -14457976 26 n 01 shirtsleeves 0 001 @ 14457838 n 0000 | not wearing a jacket; "in your shirtsleeves" means you are not wearing anything over your shirt; "in hot weather they dined in their shirtsleeves" -14458181 26 n 03 grace 0 saving_grace 0 state_of_grace 0 002 @ 00024720 n 0000 ;c 06184270 n 0000 | (Christian theology) a state of sanctification by God; the state of one who is under such divine influence; "the conception of grace developed alongside the conception of sin"; "it was debated whether saving grace could be obtained outside the membership of the church"; "the Virgin lived in a state of grace" -14458593 26 n 02 damnation 0 eternal_damnation 0 003 @ 00024720 n 0000 + 00865958 v 0103 ~ 14458763 n 0000 | the state of being condemned to eternal punishment in Hell -14458763 26 n 01 fire_and_brimstone 0 002 @ 14458593 n 0000 ;c 06449735 n 0000 | (Old Testament) God's means of destroying sinners; "his sermons were full of fire and brimstone" -14458943 26 n 01 omniscience 0 003 @ 00024720 n 0000 + 02569454 a 0102 ~ 14459093 n 0000 | the state of being omniscient; having infinite knowledge -14459093 26 n 01 God's_Wisdom 0 001 @ 14458943 n 0000 | the omniscience of a divine being -14459185 26 n 01 omnipotence 0 003 @ 00024720 n 0000 + 01826186 a 0103 ~ 14459332 n 0000 | the state of being omnipotent; having unlimited power -14459332 26 n 01 God's_Will 0 001 @ 14459185 n 0000 | the omnipotence of a divine being -14459422 26 n 03 perfection 0 flawlessness 0 ne_plus_ultra 0 010 @ 00024720 n 0000 + 01751080 a 0201 + 10415230 n 0101 ! 14462666 n 0101 = 01749320 a 0000 = 01752167 a 0000 ~ 14459715 n 0000 ~ 14459824 n 0000 ~ 14460257 n 0000 ~ 14460407 n 0000 | the state of being without a flaw or defect -14459715 26 n 01 dream 0 001 @ 14459422 n 0000 | someone or something wonderful; "this dessert is a dream" -14459824 26 n 05 polish 0 refinement 0 culture 0 cultivation 0 finish 0 005 @ 14459422 n 0000 + 02388403 v 0404 + 00474017 v 0202 + 00474017 v 0101 + 00473799 v 0101 | a highly developed state of perfection; having a flawless or impeccable quality; "they performed with great polish"; "I admired the exquisite refinement of his prose"; "almost an inspiration which gives to all work that finish which is almost art"--Joseph Conrad -14460257 26 n 01 fare-thee-well 0 001 @ 14459422 n 0000 | state of perfection; the utmost degree; "they polished the furniture to a fare-thee-well" -14460407 26 n 01 intactness 0 005 @ 14459422 n 0000 + 00515870 a 0103 + 01319434 a 0101 + 00681268 a 0101 + 02137394 a 0102 | the state of being unimpaired -14460565 26 n 03 integrity 0 unity 0 wholeness 0 008 @ 00024720 n 0000 + 00784215 a 0303 = 00289082 a 0000 = 00289365 a 0000 = 00514884 a 0000 = 00516539 a 0000 ~ 14460974 n 0000 ~ 14462193 n 0000 | an undivided or unbroken completeness or totality with nothing wanting; "the integrity of the nervous system is required for normal development"; "he took measures to insure the territorial unity of Croatia" -14460974 26 n 01 completeness 0 008 @ 14460565 n 0000 + 01750386 a 0101 + 00520214 a 0101 ! 14462193 n 0101 = 00520214 a 0000 = 00523978 a 0000 ~ 14461231 n 0000 ~ 14461519 n 0000 | the state of being complete and entire; having everything that is needed -14461231 26 n 04 entirety 0 entireness 0 integrality 0 totality 0 005 @ 14460974 n 0000 + 00515870 a 0301 + 00515870 a 0202 + 00515380 a 0201 ~ 14461679 n 0000 | the state of being total and complete; "he read the article in its entirety"; "appalled by the totality of the destruction" -14461519 26 n 02 comprehensiveness 0 fullness 1 004 @ 14460974 n 0000 + 00522885 a 0201 + 00525453 a 0101 = 00525453 a 0000 | completeness over a broad scope -14461679 26 n 0a whole_shebang 0 whole_kit_and_caboodle 0 kit_and_caboodle 0 whole_kit_and_boodle 0 kit_and_boodle 0 whole_kit 0 whole_caboodle 0 whole_works 0 works 0 full_treatment 0 001 @ 14461231 n 0000 | everything available; usually preceded by `the'; "we saw the whole shebang"; "a hotdog with the works"; "we took on the whole caboodle"; "for $10 you get the full treatment" -14462064 26 n 01 partialness 0 002 @ 14462193 n 0000 + 00524693 a 0101 | the state of being only a part; not total; incomplete -14462193 26 n 02 incompleteness 0 rawness 0 007 @ 14460565 n 0000 + 00417204 a 0202 + 01004541 a 0101 + 00523978 a 0101 ! 14460974 n 0101 ~ 14462064 n 0000 ~ 14462565 n 0000 | the state of being crude and incomplete and imperfect; "the study was criticized for incompleteness of data but it stimulated further research"; "the rawness of his diary made it unpublishable" -14462565 26 n 01 sketchiness 0 002 @ 14462193 n 0000 + 00525105 a 0101 | incompleteness of details -14462666 26 n 02 imperfection 0 imperfectness 0 010 @ 00024720 n 0000 + 01259391 a 0203 + 01752167 a 0201 ! 14459422 n 0101 ~ 14462946 n 0000 ~ 14463170 n 0000 ~ 14464005 n 0000 ~ 14464203 n 0000 ~ 14464883 n 0000 ~ 14472299 n 0000 | the state or an instance of being imperfect -14462946 26 n 02 failing 0 weakness 0 006 @ 14462666 n 0000 + 00964768 a 0201 + 02522319 v 0101 ~ 14463471 n 0000 ~ 14463676 n 0000 ~ 14463826 n 0000 | a flaw or weak point; "he was quick to point out his wife's failings" -14463170 26 n 01 flaw 2 001 @ 14462666 n 0000 | an imperfection in a plan or theory or legal document that causes it to fail or that reduces its effectiveness -14463331 26 n 02 tragic_flaw 0 hamartia 0 001 @ 14463826 n 0000 | the character flaw or error of a tragic hero that leads to his downfall -14463471 26 n 02 insufficiency 1 inadequacy 0 001 @ 14462946 n 0000 | a lack of competence; "pointed out the insufficiencies in my report"; "juvenile offenses often reflect an inadequacy in the parents" -14463676 26 n 01 fatigue 2 001 @ 14462946 n 0000 | used of materials (especially metals) in a weakened state caused by long stress; "metal fatigue" -14463826 26 n 01 flaw 1 003 @ 14462946 n 0000 + 00263044 v 0101 ~ 14463331 n 0000 | defect or weakness in a person's character; "he had his flaws, but he was great nonetheless" -14464005 26 n 01 defect 1 003 @ 14462666 n 0000 ~ 14350106 n 0000 ~ 14465048 n 0000 | an imperfection in a bodily system; "visual defects"; "this device permits detection of defects in the lungs" -14464203 26 n 03 defect 0 fault 0 flaw 0 006 @ 14462666 n 0000 + 00263044 v 0301 + 01752953 a 0202 ~ 14464512 n 0000 ~ 14464675 n 0000 ~ 14464793 n 0000 | an imperfection in an object or machine; "a flaw caused the crystal to shatter"; "if there are any defects you should send it back to the manufacturer" -14464512 26 n 01 blister 0 001 @ 14464203 n 0000 | a flaw on a surface resulting when an applied substance does not adhere (as an air bubble in a coat of paint) -14464675 26 n 02 bug 0 glitch 0 001 @ 14464203 n 0000 | a fault or defect in a computer program, system, or machine -14464793 26 n 01 hole 1 001 @ 14464203 n 0000 | a fault; "he shot holes in my argument" -14464883 26 n 01 wart 0 001 @ 14462666 n 0000 | an imperfection in someone or something that is suggestive of a wart (especially in smallness or unattractiveness) -14465048 26 n 05 birth_defect 0 congenital_anomaly 0 congenital_defect 0 congenital_disorder 0 congenital_abnormality 0 031 @ 14464005 n 0000 @ 14505821 n 0000 ~ 14152169 n 0000 ~ 14152279 n 0000 ~ 14152617 n 0000 ~ 14152924 n 0000 ~ 14153010 n 0000 ~ 14153468 n 0000 ~ 14159153 n 0000 ~ 14159318 n 0000 ~ 14159459 n 0000 ~ 14159623 n 0000 ~ 14164190 n 0000 ~ 14214355 n 0000 ~ 14214486 n 0000 ~ 14466344 n 0000 ~ 14466432 n 0000 ~ 14466846 n 0000 ~ 14467172 n 0000 ~ 14467395 n 0000 ~ 14467685 n 0000 ~ 14467846 n 0000 ~ 14467975 n 0000 ~ 14468167 n 0000 ~ 14468508 n 0000 ~ 14469014 n 0000 ~ 14471224 n 0000 ~ 14471507 n 0000 ~ 14471724 n 0000 ~ 14471926 n 0000 ~ 14472111 n 0000 | a defect that is present at birth -14465768 26 n 02 hydrocephalus 0 hydrocephaly 0 003 @ 14501726 n 0000 + 02744565 a 0201 + 02744565 a 0101 | an abnormal condition in which cerebrospinal fluid collects in the ventricles of the brain; in infants it can cause abnormally rapid growth of the head and bulging fontanelles and a small face; in adults the symptoms are primarily neurological -14466122 26 n 01 hydronephrosis 0 001 @ 14204950 n 0000 | accumulation of urine in the kidney because of an obstruction in the ureter -14466258 26 n 01 abrachia 0 001 @ 14501726 n 0000 | the condition of having no arms -14466344 26 n 01 amelia 0 001 @ 14465048 n 0000 | congenital absence of an arm or leg -14466432 26 n 01 meromelia 0 003 @ 14465048 n 0000 ~ 14152803 n 0000 ~ 14466567 n 0000 | congenital absence of part of an arm or leg -14466567 26 n 02 phocomelia 0 seal_limbs 0 001 @ 14466432 n 0000 | an abnormality of development in which the upper part of an arm or leg is missing so the hands or feet are attached to the body like stumps; rare condition that results from taking thalidomide during pregnancy -14466846 26 n 01 encephalocele 0 001 @ 14465048 n 0000 | protrusion of brain tissue through a congenital fissure in the skull -14466974 26 n 01 familial_hypercholesterolemia 0 002 @ 14269319 n 0000 @ 14074877 n 0000 | congenital disorder characterized by high levels of cholesterol and early development of atherosclerosis -14467172 26 n 01 meningocele 0 001 @ 14465048 n 0000 | a congenital anomaly of the central nervous system in which a sac protruding from the brain or the spinal meninges contains cerebrospinal fluid (but no nerve tissue) -14467395 26 n 01 myelomeningocele 0 001 @ 14465048 n 0000 | a congenital defect of the central nervous system in which a sac containing part of the spinal cord and its meninges protrude through a gap in the vertebral column; frequently accompanied by hydrocephalus and mental retardation -14467685 26 n 01 plagiocephaly 0 002 @ 14213512 n 0000 @ 14465048 n 0000 | congenital malformation of the skull in which the main axis of the skull is oblique -14467846 26 n 01 polysomy 0 001 @ 14465048 n 0000 | congenital defect of having one or more extra chromosomes in somatic cells -14467975 26 n 02 hermaphroditism 0 hermaphrodism 0 001 @ 14465048 n 0000 | congenital condition in which external genitalia and internal sex organs have both male and female characteristics -14468167 26 n 01 pseudohermaphroditism 0 001 @ 14465048 n 0000 | congenital condition in which a person has external genitalia of one sex and internal sex organs of the other sex -14468348 26 n 01 progeria 0 001 @ 14501726 n 0000 | a rare abnormality marked by premature aging (grey hair and wrinkled skin and stooped posture) in a child -14468508 26 n 01 scaphocephaly 0 002 @ 14213512 n 0000 @ 14465048 n 0000 | congenital malformation of the skull which is long and narrow; frequently accompanied by mental retardation -14468693 26 n 01 valgus 0 002 @ 14213512 n 0000 ! 14468870 n 0101 | a deformity in which there is an abnormal displacement of part of a limb away from the midline of the body -14468870 26 n 01 varus 0 002 @ 14213512 n 0000 ! 14468693 n 0101 | a deformity in which part of a limb is turned inward to an abnormal degree -14469014 26 n 01 congenital_heart_defect 0 003 @ 14465048 n 0000 ~ 14469154 n 0000 ~ 14469766 n 0000 | a birth defect involving the heart -14469154 26 n 01 septal_defect 0 003 @ 14469014 n 0000 ~ 14469334 n 0000 ~ 14469466 n 0000 | a congenital abnormality in the septum between the left and right sides of the heart -14469334 26 n 01 atrial_septal_defect 0 001 @ 14469154 n 0000 | an abnormal opening between the left and right atria of the heart -14469466 26 n 01 ventricular_septal_defect 0 002 @ 14469154 n 0000 #p 14469766 n 0000 | a common congenital heart defect; an abnormal opening in the septum dividing the ventricles allows blood to pass directly from the left to the right ventricle; large openings may cause congestive heart failure -14469766 26 n 03 tetralogy_of_Fallot 0 Fallot's_tetralogy 0 Fallot's_syndrome 0 004 @ 14469014 n 0000 @ 14304060 n 0000 %p 14106917 n 0000 %p 14469466 n 0000 | a congenital heart defect producing cyanosis; characterized by four symptoms: pulmonary stenosis and ventricular septal defect and malposition of the aorta over both ventricles and hypertrophy of the right ventricle -14470144 26 n 03 toxic_shock 0 toxic_shock_syndrome 0 TSS 0 001 @ 14304060 n 0000 | syndrome resulting from a serious acute (sometimes fatal) infection associated with the presence of staphylococcus; characterized by fever and diarrhea and nausea and diffuse erythema and shock; occurs especially in menstruating women using highly absorbent tampons -14470496 26 n 01 Waterhouse-Friderichsen_syndrome 0 001 @ 14304060 n 0000 | syndrome associated with bacterial meningitis; marked by sudden high fever and skin discoloration and petechiae with hemorrhage into the adrenal glands and cardiovascular collapse -14470754 26 n 01 Williams_syndrome 0 001 @ 14304060 n 0000 | a rare congenital disorder associated with deletion of genetic material in chromosome 7; characterized by mental deficiency and some growth deficiency and elfin faces but an overly social personality and a remarkable gift for vocabulary -14471054 26 n 01 Zollinger-Ellison_syndrome 0 001 @ 14304060 n 0000 | syndrome consisting of intractable peptic ulceration with gastric hypersecretion and hyperacidity -14471224 26 n 03 spina_bifida 0 rachischisis 0 schistorrhachis 0 001 @ 14465048 n 0000 | a not uncommon congenital defect in which a vertebra is malformed; unless several vertebrae are affected or there is myelomeningocele there are few symptoms; can be diagnosed by amniocentesis -14471507 26 n 01 spinocerebellar_disorder 0 002 @ 14465048 n 0000 %p 14091254 n 0000 | any of several congenital disorders marked by degeneration of the cerebellum and spinal cord resulting in spasticity and ataxia -14471724 26 n 02 polydactyly 0 hyperdactyly 0 003 @ 14465048 n 0000 ;c 02472293 n 0000 + 02781885 a 0102 | birth defect characterized by the presence of more than the normal number of fingers or toes -14471926 26 n 02 syndactyly 0 syndactylism 0 002 @ 14465048 n 0000 ;c 02472293 n 0000 | birth defect in which there is partial or total webbing connecting two or more fingers or toes -14472111 26 n 02 tongue_tie 0 ankyloglossia 0 001 @ 14465048 n 0000 | a congenital anomaly in which the mucous membrane under the tongue is too short limiting the mobility of the tongue -14472299 26 n 02 defectiveness 0 faultiness 0 008 @ 14462666 n 0000 + 00023854 a 0201 + 01752953 a 0202 + 01092572 a 0102 + 01752953 a 0101 ~ 14472526 n 0000 ~ 14472900 n 0000 ~ 14473054 n 0000 | the state of being defective -14472526 26 n 01 bugginess 0 002 @ 14472299 n 0000 + 00421202 a 0101 | the state of having bugs -14472624 26 n 05 crudeness 0 crudity 0 primitiveness 0 primitivism 0 rudeness 0 009 @ 13939353 n 0000 + 00818175 a 0503 + 00818175 a 0302 + 00817731 a 0302 + 00413432 a 0301 + 00417204 a 0201 + 00818175 a 0201 + 01953467 a 0203 + 00818175 a 0101 | a wild or unrefined state -14472900 26 n 01 lameness 1 002 @ 14472299 n 0000 + 02325304 a 0102 | an imperfection or defectiveness; "a stylist noted for the lameness of his plots" -14473054 26 n 01 sickness 2 001 @ 14472299 n 0000 | defectiveness or unsoundness; "drugs have become a sickness they cannot cure"; "a great sickness of his judgment" -14473222 26 n 07 fortune 0 destiny 0 fate 0 luck 0 lot 0 circumstances 2 portion 0 005 @ 13920429 n 0000 ~ 14473655 n 0000 ~ 14473917 n 0000 ~ 14475405 n 0000 ~ 14477877 n 0000 | your overall circumstances or condition in life (including everything that happens to you); "whatever my fortune may be"; "deserved a better fate"; "has a happy lot"; "the luck of the Irish"; "a victim of circumstances"; "success that was her portion" -14473655 26 n 03 good_fortune 0 luckiness 0 good_luck 0 008 @ 14473222 n 0000 ! 14475405 n 0302 + 00177547 a 0204 + 01049210 a 0201 + 01468097 a 0201 ! 14475405 n 0101 ~ 14474052 n 0000 ~ 14474264 n 0000 | an auspicious state resulting from favorable outcomes -14473917 26 n 01 providence 0 002 @ 14473222 n 0000 + 01180363 a 0101 | a manifestation of God's foresightful care for his creatures -14474052 26 n 02 prosperity 0 successfulness 0 006 @ 14473655 n 0000 + 02331262 a 0201 + 02022556 a 0103 ~ 14447525 n 0000 ~ 14474556 n 0000 ~ 14474894 n 0000 | the condition of prospering; having good fortune -14474264 26 n 02 blessing 0 boon 0 002 @ 14473655 n 0000 ~ 14474435 n 0000 | a desirable state; "enjoy the blessings of peace"; "a spanking breeze is a boon to sailors" -14474435 26 n 01 mercy 0 001 @ 14474264 n 0000 | something for which to be thankful; "it was a mercy we got out alive" -14474556 26 n 01 strength 1 002 @ 14474052 n 0000 ! 14474718 n 0101 | the condition of financial success; "the strength of the company's stock in recent weeks" -14474718 26 n 01 weakness 1 003 @ 14475405 n 0000 + 02493574 a 0101 ! 14474556 n 0101 | the condition of being financially weak; "the weakness of the dollar against the yen" -14474894 26 n 01 success 0 006 @ 14474052 n 0000 ! 14477877 n 0101 = 02331262 a 0000 = 02333453 a 0000 ~ 14475154 n 0000 ~ 14475273 n 0000 | a state of prosperity or fame; "he is enjoying great success"; "he does not consider wealth synonymous with success" -14475154 26 n 01 big_time 0 001 @ 14474894 n 0000 | the highest level of an occupation (especially in entertainment) -14475273 26 n 01 pay_dirt 0 001 @ 14474894 n 0000 | a profitable success; "the inventor worked for years before hitting pay dirt" -14475405 26 n 04 misfortune 0 bad_luck 0 tough_luck 0 ill_luck 0 007 @ 14473222 n 0000 ! 14473655 n 0203 ! 14473655 n 0101 ~ 14474718 n 0000 ~ 14475661 n 0000 ~ 14475992 n 0000 ~ 14476205 n 0000 | an unfortunate state resulting from unfavorable outcomes -14475661 26 n 03 adversity 0 hardship 1 hard_knocks 0 009 @ 14475405 n 0000 + 00997036 a 0101 ~ 14448200 n 0000 ~ 14476290 n 0000 ~ 14476521 n 0000 ~ 14476852 n 0000 ~ 14477342 n 0000 ~ 14477509 n 0000 ~ 14486639 n 0000 | a state of misfortune or affliction; "debt-ridden farmers struggling with adversity"; "a life of hardship" -14475992 26 n 03 gutter 0 sewer 0 toilet 0 001 @ 14475405 n 0000 | misfortune resulting in lost effort or money; "his career was in the gutter"; "all that work went down the sewer"; "pensions are in the toilet" -14476205 26 n 01 hard_cheese 0 002 @ 14475405 n 0000 ;r 08860123 n 0000 | bad luck -14476290 26 n 02 catastrophe 0 disaster 0 001 @ 14475661 n 0000 | a state of extreme (usually irremediable) ruin and misfortune; "lack of funds has resulted in a catastrophe for our school system"; "his policies were a disaster" -14476521 26 n 01 extremity 2 004 @ 14475661 n 0000 + 01511520 a 0101 + 01534858 a 0101 ~ 14476697 n 0000 | an extreme condition or state (especially of adversity or disease) -14476697 26 n 01 bitter_end 0 001 @ 14476521 n 0000 | the final extremity (however unpleasant it may be); "he was determined to fight to the bitter end" -14476852 26 n 01 distress 1 004 @ 14475661 n 0000 ~ 14449022 n 0000 ~ 14477076 n 0000 ~ 14477207 n 0000 | a state of adversity (danger or affliction or need); "a ship in distress"; "she was the classic maiden in distress" -14477076 26 n 01 pressure 1 001 @ 14476852 n 0000 | an oppressive condition of physical or mental or social or economic distress -14477207 26 n 01 throe 2 001 @ 14476852 n 0000 | hard or painful trouble or struggle; "a country in the throes of economic collapse" -14477342 26 n 01 affliction 2 004 @ 14475661 n 0000 + 01797730 v 0101 + 00259927 v 0101 ~ 14477667 n 0000 | a state of great suffering and distress due to adversity -14477509 26 n 01 victimization 0 002 @ 14475661 n 0000 + 02574205 v 0101 | adversity resulting from being made a victim; "his victimization infuriated him" -14477667 26 n 02 cross 0 crown_of_thorns 0 002 @ 14477342 n 0000 + 02558172 v 0106 | any affliction that causes great suffering; "that is his cross to bear"; "he bears his afflictions like a crown of thorns" -14477877 26 n 01 failure 0 007 @ 14473222 n 0000 + 02528380 v 0101 ! 14474894 n 0101 ~ 14478684 n 0000 ~ 14478862 n 0000 ~ 14478975 n 0000 ~ 14479086 n 0000 | lack of success; "he felt that his entire life had been a failure"; "that year there was a crop failure" -14478143 26 n 01 solvency 0 003 @ 14488317 n 0000 + 02026312 a 0101 ! 14478291 n 0101 | the ability to meet maturing obligations as they come due -14478291 26 n 01 insolvency 0 004 @ 14488317 n 0000 + 02026442 a 0101 ! 14478143 n 0101 ~ 14478433 n 0000 | the lack of financial resources -14478433 26 n 02 bankruptcy 0 failure 2 003 @ 14478291 n 0000 + 02318403 v 0201 + 02318165 v 0101 | inability to discharge all your debts as they come due; "the company had to declare bankruptcy"; "fraudulent loans led to the failure of many banks" -14478684 26 n 01 bankruptcy 1 001 @ 14477877 n 0000 | a state of complete lack of some abstract property; "spiritual bankruptcy"; "moral bankruptcy"; "intellectual bankruptcy" -14478862 26 n 01 bank_failure 0 001 @ 14477877 n 0000 | the inability of a bank to meet its credit obligations -14478975 26 n 01 crop_failure 0 001 @ 14477877 n 0000 | the failure of crops to produce a marketable surplus -14479086 26 n 01 dead_duck 0 001 @ 14477877 n 0000 | something doomed to failure; "he finally admitted that the legislation was a dead duck"; "the idea of another TV channel is now a dead duck"; "as theories go, that's a dead duck" -14479320 26 n 01 receivership 0 002 @ 00024720 n 0000 + 10265532 n 0102 | the state of property that is in the hands of a receiver; "the business is in receivership" -14479488 26 n 01 ownership 0 003 @ 00024720 n 0000 + 10389398 n 0101 + 10388924 n 0101 | the state or fact of being an owner -14479615 26 n 02 state_of_matter 0 state 2 010 @ 11409059 n 0000 ;c 06084469 n 0000 = 02260035 a 0000 = 02261386 a 0000 = 02262542 a 0000 ~ 14480065 n 0000 ~ 14480420 n 0000 ~ 14480772 n 0000 ~ 14481080 n 0000 ~ 14481511 n 0000 | (chemistry) the three traditional states of matter are solids (fixed shape and volume) and liquids (fixed volume and shaped by the container) and gases (filling the container); "the solid state of water is called ice" -14480065 26 n 02 phase 0 form 0 004 @ 14479615 n 0000 ;c 06089447 n 0000 ~ 14588646 n 0000 ~ 14588797 n 0000 | (physical chemistry) a distinct state of matter in a system; matter that is identical in chemical composition and physical state and separated from other material by the phase boundary; "the reaction occurs in the liquid phase of the system" -14480420 26 n 04 liquid 0 liquidness 0 liquidity 0 liquid_state 0 007 @ 14479615 n 0000 + 02473371 a 0301 + 02473371 a 0201 + 01505991 a 0202 + 02261386 a 0201 + 00444309 v 0102 + 00443984 v 0103 | the state in which a substance exhibits a characteristic readiness to flow with little or no tendency to disperse and relatively high incompressibility -14480772 26 n 03 solid 0 solidness 0 solid_state 0 004 @ 14479615 n 0000 + 02260035 a 0201 + 00445467 v 0101 + 00445169 v 0101 | the state in which a substance has no tendency to flow under moderate stress; resists forces (such as compression) that tend to deform it; and retains a definite size and shape -14481080 26 n 02 gas 0 gaseous_state 0 004 @ 14479615 n 0000 + 02263407 a 0101 + 02262542 a 0101 + 00442267 v 0101 | the state of matter distinguished from the solid and liquid states by: relatively low density and viscosity; relatively great expansion and contraction with changes in pressure and temperature; the ability to diffuse readily; and the spontaneous tendency to become distributed uniformly throughout any container -14481511 26 n 01 plasma 0 003 @ 14479615 n 0000 ;c 06089447 n 0000 ~ 09314398 n 0000 | (physical chemistry) a fourth state of matter distinct from solid or liquid or gas and present in stars and fusion reactors; a gas becomes a plasma when it is heated until the atoms lose all their electrons, leaving a highly electrified collection of nuclei and free electrons; "particles in space exist in the form of a plasma" -14481929 26 n 02 possibility 0 possibleness 0 011 @ 13954253 n 0000 + 00044353 a 0202 + 01821266 a 0201 + 01821266 a 0101 ! 14483126 n 0101 = 01821266 a 0000 = 01823092 a 0000 ~ 14482299 n 0000 ~ 14482444 n 0000 ~ 14482620 n 0000 ~ 14483917 n 0000 | capability of existing or happening or being true; "there is a possibility that his sense of smell has been impaired" -14482299 26 n 02 conceivableness 0 conceivability 0 003 @ 14481929 n 0000 + 02418249 a 0201 + 02418249 a 0101 | the state of being conceivable -14482444 26 n 03 achievability 0 attainability 0 attainableness 0 004 @ 14481929 n 0000 + 01822153 a 0301 + 01822153 a 0201 + 01821690 a 0102 | the state of being achievable -14482620 26 n 03 potential 0 potentiality 0 potency 2 007 @ 14481929 n 0000 + 01884176 a 0302 + 00044353 a 0301 + 01884176 a 0202 = 00044353 a 0000 ~ 14482852 n 0000 ~ 14482968 n 0000 | the inherent capacity for coming into being -14482852 26 n 01 latency 0 002 @ 14482620 n 0000 + 00038462 a 0101 | the state of being not yet evident or active -14482968 26 n 02 prospect 0 chance 1 002 @ 14482620 n 0000 + 02154180 v 0101 | the possibility of future success; "his prospects as a writer are excellent" -14483126 26 n 02 impossibility 0 impossibleness 0 007 @ 13959931 n 0000 + 02418692 a 0201 + 01823092 a 0201 + 01823092 a 0101 ! 14481929 n 0101 ~ 14483348 n 0000 ~ 14483508 n 0000 | incapability of existing or occurring -14483348 26 n 02 inconceivability 0 inconceivableness 0 003 @ 14483126 n 0000 + 02418692 a 0202 + 02418692 a 0102 | the state of being impossible to conceive -14483508 26 n 01 unattainableness 0 002 @ 14483126 n 0000 + 01824081 a 0102 | the state of being unattainable -14483620 26 n 01 hopefulness 0 004 @ 13920835 n 0000 + 00176387 a 0102 ~ 14483744 n 0000 ~ 14486122 n 0000 | full of hope -14483744 26 n 01 confidence 2 002 @ 14483620 n 0000 + 00338817 a 0101 | a state of confident hopefulness that events will be favorable; "public confidence in the economy" -14483917 26 n 02 opportunity 0 chance 0 015 @ 14481929 n 0000 + 02594102 v 0201 + 01660994 a 0101 ~ 14484378 n 0000 ~ 14484516 n 0000 ~ 14484646 n 0000 ~ 14484778 n 0000 ~ 14484969 n 0000 ~ 14485064 n 0000 ~ 14485249 n 0000 ~ 14485436 n 0000 ~ 14485526 n 0000 ~ 14485673 n 0000 ~ 14485811 n 0000 ~ 14485990 n 0000 | a possibility due to a favorable combination of circumstances; "the holiday gave us the opportunity to visit Washington"; "now is your chance" -14484378 26 n 01 brass_ring 0 001 @ 14483917 n 0000 | a rich opportunity or a prize; "he missed the brass ring at the Miami convention" -14484516 26 n 01 day 0 001 @ 14483917 n 0000 | a period of opportunity; "he deserves his day in court"; "every dog has his day" -14484646 26 n 03 fresh_start 0 clean_slate 0 tabula_rasa 0 001 @ 14483917 n 0000 | an opportunity to start over without prejudice -14484778 26 n 02 hearing 0 audience 0 001 @ 14483917 n 0000 | an opportunity to state your case and be heard; "they condemned him without a hearing"; "he saw that he had lost his audience" -14484969 26 n 01 hunting_ground 0 001 @ 14483917 n 0000 | a place where opportunities abound -14485064 26 n 01 occasion 0 003 @ 14483917 n 0000 + 01646528 v 0101 ~ 01117723 n 0000 | an opportunity to do something; "there was never an occasion for her to demonstrate her skill" -14485249 26 n 01 opening 0 003 @ 14483917 n 0000 + 00540101 v 0101 + 00539936 v 0101 | opportunity especially for employment or promotion; "there is an opening in the sales department" -14485436 26 n 01 room 0 001 @ 14483917 n 0000 | opportunity for; "room for improvement" -14485526 26 n 01 say 0 004 @ 14483917 n 0000 + 01009821 v 0101 + 01016002 v 0103 + 01009240 v 0102 | the chance to speak; "let him have his say" -14485673 26 n 02 shot 0 crack 0 002 @ 14483917 n 0000 ;u 07075172 n 0000 | a chance to do something; "he wanted a shot at the champion" -14485811 26 n 01 street 1 002 @ 14483917 n 0000 ;u 07075172 n 0000 | a situation offering opportunities; "he worked both sides of the street"; "cooperation is a two-way street" -14485990 26 n 01 throw 0 002 @ 14483917 n 0000 ;u 07075172 n 0000 | a single chance or instance; "he couldn't afford $50 a throw" -14486122 26 n 02 anticipation 0 expectation 0 003 @ 14483620 n 0000 + 00720063 v 0201 + 00059376 v 0201 | anticipating with confidence of fulfillment -14486274 26 n 02 despair 0 desperation 1 003 @ 13920835 n 0000 + 01810933 v 0201 + 01810933 v 0101 | a state in which all hope is lost or absent; "in the depths of despair"; "they were rescued from despair at the last minute"; "courage born of desperation" -14486533 26 n 01 dejection 0 002 @ 14404160 n 0000 + 01814396 v 0102 | a state of melancholy depression -14486639 26 n 02 nadir 0 low-water_mark 0 001 @ 14475661 n 0000 | an extreme state of adversity; the lowest point of anything -14486767 26 n 02 purity 0 pureness 0 009 @ 13920835 n 0000 + 00393508 a 0202 + 01905653 a 0201 + 01905653 a 0101 + 00475183 v 0101 ! 14487184 n 0101 = 01905653 a 0000 = 01908039 a 0000 ~ 14487026 n 0000 | being undiluted or unmixed with extraneous material -14487026 26 n 01 plainness 0 002 @ 14486767 n 0000 + 01907103 a 0101 | the state of being unmixed with other material; "the plainness of vanilla ice cream" -14487184 26 n 02 impurity 0 impureness 0 010 @ 13920835 n 0000 + 00427786 a 0202 + 01908039 a 0201 ! 14486767 n 0101 ~ 14487443 n 0000 ~ 14487598 n 0000 ~ 14487731 n 0000 ~ 14488004 n 0000 ~ 14488200 n 0000 ~ 14516743 n 0000 | the condition of being impure -14487443 26 n 02 adulteration 0 debasement 0 002 @ 14487184 n 0000 + 00487748 v 0205 | being mixed with extraneous material; the product of adulterating -14487598 26 n 02 admixture 0 alloy 0 001 @ 14487184 n 0000 | the state of impairing the quality or reducing the value of something -14487731 26 n 02 contamination 0 taint 0 005 @ 14487184 n 0000 + 00088713 v 0202 + 00493259 v 0101 + 00492706 v 0103 ~ 14487902 n 0000 | the state of being contaminated -14487902 26 n 01 dust_contamination 0 001 @ 14487731 n 0000 | state of being contaminated with dust -14488004 26 n 01 dirtiness 1 002 @ 14487184 n 0000 + 00426608 a 0101 | the state of containing dirty impurities -14488118 26 n 01 feculence 0 001 @ 14497763 n 0000 | something that is feculent -14488200 26 n 01 putridity 0 003 @ 14487184 n 0000 + 01070844 a 0101 + 02786315 a 0101 | the state of being putrid -14488317 26 n 01 financial_condition 0 010 @ 13920835 n 0000 = 02021905 a 0000 = 02022953 a 0000 ~ 13256303 n 0000 ~ 13256434 n 0000 ~ 14478143 n 0000 ~ 14478291 n 0000 ~ 14488912 n 0000 ~ 14491271 n 0000 ~ 14493145 n 0000 | the condition of (corporate or personal) finances -14488594 26 n 01 economic_condition 0 008 @ 13920835 n 0000 ~ 14013368 n 0000 ~ 14489113 n 0000 ~ 14489523 n 0000 ~ 14489699 n 0000 ~ 14489859 n 0000 ~ 14494358 n 0000 ~ 14494594 n 0000 | the condition of the economy -14488813 26 n 01 boom 0 002 @ 14489699 n 0000 + 00310386 v 0101 | a state of economic prosperity -14488912 26 n 03 credit_crunch 0 liquidity_crisis 0 squeeze 0 001 @ 14488317 n 0000 | a state in which there is a short supply of cash to lend to businesses and consumers and interest rates are high -14489113 26 n 03 depression 2 slump 0 economic_crisis 0 004 @ 14488594 n 0000 @ 13933560 n 0000 + 00432839 v 0201 ~i 14489361 n 0000 | a long-term economic state characterized by unemployment and low prices and low levels of trade and investment -14489361 26 n 01 Great_Depression 0 001 @i 14489113 n 0000 | the economic crisis beginning with the stock market crash in 1929 and continuing through the 1930s -14489523 26 n 01 full_employment 0 001 @ 14488594 n 0000 | the economic condition when everyone who wishes to work at the going wage rate for their type of labor is employed -14489699 26 n 01 prosperity 2 003 @ 14488594 n 0000 + 02331857 a 0105 ~ 14488813 n 0000 | an economic state of growth with rising profits and full employment -14489859 26 n 01 softness 0 002 @ 14488594 n 0000 + 02487540 a 0101 | a state of declining economic condition; "orders have recently picked up after a period of extreme softness"; "he attributes the disappointing results to softness in the economy" -14490110 26 n 01 obligation 0 004 @ 00024720 n 0000 + 02348182 v 0101 + 00885217 v 0104 ~ 14490319 n 0000 | the state of being obligated to do or pay something; "he is under an obligation to finish the job" -14490319 26 n 03 indebtedness 0 liability 0 financial_obligation 0 007 @ 14490110 n 0000 + 01617144 a 0101 ~ 13397018 n 0000 ~ 14490564 n 0000 ~ 14490685 n 0000 ~ 14490801 n 0000 ~ 14491171 n 0000 | an obligation to pay money to another party -14490564 26 n 01 debt 0 001 @ 14490319 n 0000 | the state of owing something (especially money); "he is badly in debt" -14490685 26 n 01 arrears 0 001 @ 14490319 n 0000 | the state of being behind in payments; "an account in arrears" -14490801 26 n 02 account_payable 0 payable 0 001 @ 14490319 n 0000 | a liability account showing how much is owed for goods and services purchased on credit; "the problem was to match receivables and payables in the same currency" -14491034 26 n 01 score 0 001 @ 13397174 n 0000 | an amount due (as at a restaurant or bar); "add it to my score and I'll settle later" -14491171 26 n 01 scot_and_lot 0 001 @ 14490319 n 0000 | obligations of all kinds taken as a whole -14491271 26 n 02 wealth 0 wealthiness 0 009 @ 14488317 n 0000 + 02022167 a 0205 + 02022167 a 0105 ! 14493145 n 0101 ~ 14491625 n 0000 ~ 14492249 n 0000 ~ 14492373 n 0000 ~ 14492634 n 0000 ~ 14492953 n 0000 | the state of being rich and affluent; having a plentiful supply of material goods and money; "great wealth is not a sign of great intelligence" -14491625 26 n 02 affluence 0 richness 0 004 @ 14491271 n 0000 + 02021905 a 0201 + 02022167 a 0101 ~ 14491889 n 0000 | abundant wealth; "they studied forerunners of richness or poverty"; "the richness all around unsettled him for he had expected to find poverty" -14491889 26 n 02 ease 1 comfort 1 002 @ 14491625 n 0000 ~ 14492116 n 0000 | a freedom from financial difficulty that promotes a comfortable state; "a life of luxury and ease"; "he had all the material comforts of this world" -14492116 26 n 01 lap_of_luxury 0 001 @ 14491889 n 0000 | in conditions of wealth and comfort; "he was raised in the lap of luxury" -14492249 26 n 01 inherited_wealth 0 002 @ 14491271 n 0000 ~ 14492723 n 0000 | wealth that is inherited rather than earned -14492373 26 n 04 luxury 0 luxuriousness 0 opulence 0 sumptuousness 0 008 @ 14491271 n 0000 + 02024928 a 0407 + 02024928 a 0305 + 02024928 a 0204 + 01298239 a 0202 + 02024928 a 0104 + 01191645 v 0102 + 01204803 v 0101 | wealth as evidenced by sumptuous living -14492634 26 n 01 mammon 0 001 @ 14491271 n 0000 | wealth regarded as an evil influence -14492723 26 n 02 silver_spoon 0 old_money 0 001 @ 14492249 n 0000 | the inherited wealth of established upper-class families; "he was born with a silver spoon in his mouth"; "she is the daughter of old money from Massachusetts" -14492953 26 n 01 sufficiency 0 002 @ 14491271 n 0000 + 02669789 v 0101 | sufficient resources to provide comfort and meet obligations; "her father questioned the young suitor's sufficiency" -14493145 26 n 03 poverty 0 poorness 0 impoverishment 0 008 @ 14488317 n 0000 + 02025498 a 0201 + 02022953 a 0201 ! 14491271 n 0101 ~ 14493426 n 0000 ~ 14493613 n 0000 ~ 14493716 n 0000 ~ 14494186 n 0000 | the state of having little or no money and few or no material possessions -14493426 26 n 04 privation 0 want 0 deprivation 0 neediness 0 005 @ 14493145 n 0000 + 02023430 a 0405 + 02314275 v 0301 + 00172732 v 0301 + 02632567 v 0201 | a state of extreme poverty -14493613 26 n 01 destitution 1 001 @ 14493145 n 0000 | a state without friends or money or prospects -14493716 26 n 05 indigence 0 need 1 penury 0 pauperism 0 pauperization 0 006 @ 14493145 n 0000 + 02317970 v 0502 + 02023661 a 0305 + 02023430 a 0205 + 02023430 a 0103 ~ 14494032 n 0000 | a state of extreme poverty or destitution; "their indigence appalled him"; "a general state of need exists among the homeless" -14494032 26 n 03 beggary 0 mendicancy 0 mendicity 0 001 @ 14493716 n 0000 | the state of being a beggar or mendicant; "they were reduced to mendicancy" -14494186 26 n 03 impecuniousness 0 pennilessness 0 penuriousness 0 004 @ 14493145 n 0000 + 02023661 a 0305 + 02023661 a 0204 + 02023661 a 0102 | a state of lacking money -14494358 26 n 01 shakeout 0 001 @ 14488594 n 0000 | an economic condition that results in the elimination of marginally financed participants in an industry; "they glutted the market in order to cause a shakeout of their competitors" -14494594 26 n 01 wage_setter 0 001 @ 14488594 n 0000 | any economic condition or variable that serves to set wage rates -14494716 26 n 01 sanitary_condition 0 005 @ 13920835 n 0000 ~ 14494893 n 0000 ~ 14495589 n 0000 ~ 14496193 n 0000 ~ 14497763 n 0000 | the state of sanitation (clean or dirty) -14494893 26 n 01 sanitariness 0 006 @ 14494716 n 0000 + 02112976 a 0101 ! 14495589 n 0101 ~ 14495080 n 0000 ~ 14495230 n 0000 ~ 14495466 n 0000 | the state of being conducive to health -14495080 26 n 01 hygiene 0 003 @ 14494893 n 0000 + 02113191 a 0101 + 02113191 a 0102 | a condition promoting sanitary practices; "personal hygiene" -14495230 26 n 04 asepsis 0 antisepsis 0 sterility 1 sterileness 0 005 @ 14494893 n 0000 + 02115759 a 0402 + 02115759 a 0302 + 02115324 a 0201 + 02115759 a 0101 | (of non-living objects) the state of being free of pathogenic organisms -14495466 26 n 01 sanitation 0 002 @ 14494893 n 0000 + 02361981 v 0101 | the state of being clean and conducive to health -14495589 26 n 01 unsanitariness 0 005 @ 14494716 n 0000 + 02113449 a 0101 ! 14494893 n 0101 ~ 14495761 n 0000 ~ 14495980 n 0000 | a state that is not conducive to health -14495761 26 n 04 filth 0 filthiness 0 foulness 0 nastiness 0 005 @ 14495589 n 0000 + 00421590 a 0403 + 00421590 a 0302 + 00421590 a 0201 + 00421590 a 0101 | a state characterized by foul or disgusting dirt and refuse -14495980 26 n 01 dunghill 0 001 @ 14495589 n 0000 | a foul or degraded condition -14496063 26 n 01 tilth 0 001 @ 13920835 n 0000 | the state of aggregation of soil and its condition for supporting plant growth -14496193 26 n 01 cleanness 0 009 @ 14494716 n 0000 + 01906320 a 0101 + 02116473 a 0102 + 00426347 a 0101 + 00417413 a 0101 ! 14497763 n 0101 = 00417413 a 0000 = 00419289 a 0000 ~ 14496563 n 0000 | the state of being clean; without dirt or other impurities -14496451 26 n 01 cleanliness 0 001 @ 00414179 n 0000 | the habit of keeping free of superficial imperfections -14496563 26 n 02 spotlessness 0 immaculateness 0 003 @ 14496193 n 0000 + 00418364 a 0201 + 00418364 a 0107 | the state of being spotlessly clean -14496710 26 n 02 orderliness 0 order 2 006 @ 13920835 n 0000 ! 14499262 n 0202 ! 14499262 n 0101 ~ 14496977 n 0000 ~ 14497120 n 0000 ~ 14497233 n 0000 | a condition of regular or proper arrangement; "he put his desk in order"; "the machine is now in working order" -14496977 26 n 01 spit_and_polish 0 002 @ 14496710 n 0000 ;c 08199025 n 0000 | careful attention to order and appearance (as in the military) -14497120 26 n 02 kilter 0 kelter 0 001 @ 14496710 n 0000 | in working order; "out of kilter"; "in good kilter" -14497233 26 n 01 tidiness 0 004 @ 14496710 n 0000 + 02422685 a 0101 ! 14499594 n 0101 ~ 14497365 n 0000 | the habit of being tidy -14497365 26 n 02 neatness 0 spruceness 0 003 @ 14497233 n 0000 + 00971933 a 0209 ~ 14497511 n 0000 | the state of being neat and smart and trim -14497511 26 n 02 trim 0 trimness 0 004 @ 14497365 n 0000 + 02423073 a 0203 + 02423649 a 0202 + 00991301 a 0202 | a state of arrangement or appearance; "in good trim" -14497679 26 n 01 shambles 0 001 @ 14499262 n 0000 | a condition of great disorder -14497763 26 n 02 dirtiness 0 uncleanness 0 014 @ 14494716 n 0000 + 00419289 a 0203 + 00427786 a 0201 + 02114296 a 0101 + 00419289 a 0101 ! 14496193 n 0101 ~ 14488118 n 0000 ~ 14498096 n 0000 ~ 14498404 n 0000 ~ 14498567 n 0000 ~ 14498733 n 0000 ~ 14498843 n 0000 ~ 14498972 n 0000 ~ 14499111 n 0000 | the state of being unsanitary -14498096 26 n 07 dirt 0 filth 1 grime 0 soil 0 stain 0 grease 0 grunge 0 010 @ 14497763 n 0000 + 00420650 a 0705 + 01269379 v 0601 + 00286605 v 0501 + 01534147 v 0402 + 00420650 a 0303 + 01534147 v 0304 + 00421590 a 0201 + 00426608 a 0101 + 00419289 a 0101 | the state of being covered with unclean things -14498404 26 n 03 befoulment 0 defilement 0 pollution 2 004 @ 14497763 n 0000 + 00492706 v 0301 + 00492410 v 0203 + 00492410 v 0102 | the state of being polluted -14498567 26 n 02 dinginess 0 dinge 0 005 @ 14497763 n 0000 + 01909077 a 0202 + 00420650 a 0202 + 01909077 a 0102 + 00420650 a 0102 | discoloration due to dirtiness -14498733 26 n 01 dustiness 0 002 @ 14497763 n 0000 + 01696346 a 0101 | the state of being covered with dust -14498843 26 n 02 griminess 0 grubbiness 0 003 @ 14497763 n 0000 + 00420650 a 0204 + 00420650 a 0103 | the state of being grimy -14498972 26 n 02 smuttiness 0 sootiness 0 003 @ 14497763 n 0000 + 00423431 a 0201 + 00421002 a 0102 | the state of being dirty with soot -14499111 26 n 03 sordidness 0 squalor 0 squalidness 0 004 @ 14497763 n 0000 + 01984806 a 0305 + 00421875 a 0302 + 00421875 a 0103 | sordid dirtiness -14499262 26 n 02 disorderliness 0 disorder 2 010 @ 13920835 n 0000 + 00276373 v 0201 ! 14496710 n 0202 + 02390569 a 0102 ! 14496710 n 0101 ~ 14497679 n 0000 ~ 14499594 n 0000 ~ 14500047 n 0000 ~ 14500341 n 0000 ~ 14500567 n 0000 | a condition in which things are not in their expected places; "the files are in complete disorder" -14499594 26 n 01 untidiness 0 004 @ 14499262 n 0000 + 02424254 a 0101 ! 14497233 n 0101 ~ 14499734 n 0000 | the condition of being untidy -14499734 26 n 03 sloppiness 0 slovenliness 0 unkemptness 0 006 @ 14499594 n 0000 + 02426890 a 0301 + 02429461 a 0301 + 02425749 a 0203 + 02426420 a 0101 ~ 14499953 n 0000 | a lack of order and tidiness; not cared for -14499953 26 n 01 shagginess 0 002 @ 14499734 n 0000 + 02428610 a 0102 | unkemptness of hair -14500047 26 n 04 mess 0 messiness 1 muss 0 mussiness 0 007 @ 14499262 n 0000 + 02426042 a 0402 + 02426042 a 0302 + 01473886 v 0301 + 02426042 a 0201 + 02426042 a 0101 + 00276214 v 0101 | a state of confusion and disorderliness; "the house was a mess"; "she smoothed the mussiness of the bed" -14500341 26 n 03 disorganization 0 disorganisation 0 disarrangement 0 005 @ 14499262 n 0000 + 01466733 v 0301 + 00278117 v 0301 + 02436140 v 0202 + 02436140 v 0101 | a condition in which an orderly system has been disrupted -14500567 26 n 07 clutter 0 jumble 0 muddle 0 fuddle 0 mare's_nest 0 welter 0 smother 0 007 @ 14499262 n 0000 + 00620532 v 0302 + 01472807 v 0202 + 01657254 v 0201 + 02739861 v 0201 + 00181875 v 0101 ~ 14500819 n 0000 | a confused multitude of things -14500819 26 n 01 rummage 0 001 @ 14500567 n 0000 | a jumble of things to be given away -14500908 26 n 02 normality 0 normalcy 0 008 @ 13920835 n 0000 + 01598319 a 0101 ! 14501726 n 0101 = 01593649 a 0000 = 01595596 a 0000 ~ 14501172 n 0000 ~ 14501375 n 0000 ~ 14501545 n 0000 | being within certain limits that define the range of normal functioning -14501172 26 n 01 averageness 0 004 @ 14500908 n 0000 + 01594146 a 0101 + 00486290 a 0101 + 01673061 a 0101 | the state of being that is average; indicates normality but with connotations of mediocrity -14501375 26 n 02 commonness 0 expectedness 0 004 @ 14500908 n 0000 + 00929567 a 0201 + 01673815 a 0101 + 00970610 a 0101 | the state of being that is commonly observed -14501545 26 n 01 typicality 0 006 @ 14500908 n 0000 + 01595440 a 0101 + 02468635 a 0101 ! 14503060 n 0101 = 02468635 a 0000 = 02469928 a 0000 | the state of being that is typical -14501726 26 n 02 abnormality 0 abnormalcy 0 057 @ 14034177 n 0000 + 01595596 a 0101 ! 14500908 n 0101 ~ 14019296 n 0000 ~ 14019441 n 0000 ~ 14021853 n 0000 ~ 14021936 n 0000 ~ 14022068 n 0000 ~ 14022369 n 0000 ~ 14022661 n 0000 ~ 14022849 n 0000 ~ 14049098 n 0000 ~ 14049262 n 0000 ~ 14092114 n 0000 ~ 14092247 n 0000 ~ 14092925 n 0000 ~ 14093325 n 0000 ~ 14093464 n 0000 ~ 14093723 n 0000 ~ 14093874 n 0000 ~ 14103180 n 0000 ~ 14103785 n 0000 ~ 14103998 n 0000 ~ 14149536 n 0000 ~ 14152492 n 0000 ~ 14192942 n 0000 ~ 14193202 n 0000 ~ 14198829 n 0000 ~ 14198997 n 0000 ~ 14199146 n 0000 ~ 14200301 n 0000 ~ 14200418 n 0000 ~ 14331271 n 0000 ~ 14365950 n 0000 ~ 14465768 n 0000 ~ 14466258 n 0000 ~ 14468348 n 0000 ~ 14503060 n 0000 ~ 14503354 n 0000 ~ 14503665 n 0000 ~ 14503990 n 0000 ~ 14504889 n 0000 ~ 14505667 n 0000 ~ 14505821 n 0000 ~ 14506020 n 0000 ~ 14507787 n 0000 ~ 14508974 n 0000 ~ 14509219 n 0000 ~ 14509299 n 0000 ~ 14509491 n 0000 ~ 14509583 n 0000 ~ 14531392 n 0000 ~ 14531598 n 0000 ~ 14550614 n 0000 ~ 14557415 n 0000 ~ 14557719 n 0000 ~ 14573713 n 0000 | an abnormal physical condition resulting from defective genes or developmental deficiencies -14502896 26 n 01 atelectasis 0 001 @ 14204950 n 0000 | collapse of an expanded lung (especially in infants); also failure of pulmonary alveoli to expand at birth -14503060 26 n 02 atypicality 0 untypicality 0 005 @ 14501726 n 0000 + 02469928 a 0202 + 01596809 a 0101 + 02469928 a 0101 ! 14501545 n 0101 | any state that is not typical -14503234 26 n 01 anoxemia 0 002 @ 14204950 n 0000 + 02627787 a 0101 | abnormally low oxygen content in arterial blood -14503354 26 n 04 arrested_development 0 fixation 0 infantile_fixation 0 regression 0 001 @ 14501726 n 0000 | an abnormal state in which development has stopped prematurely -14503528 26 n 01 coprolalia 0 001 @ 14204950 n 0000 | an uncontrollable use of obscene language; often accompanied by mental disorders -14503665 26 n 04 aberrance 0 aberrancy 0 aberration 1 deviance 0 011 @ 14501726 n 0000 + 01596122 a 0402 + 02662076 v 0301 + 02661769 v 0301 + 01596122 a 0201 + 01596122 a 0101 + 02662076 v 0101 + 02661769 v 0101 + 01596122 a 0403 ~ 14504103 n 0000 ~ 14504726 n 0000 | a state or condition markedly different from the norm -14503990 26 n 01 cyclopia 0 001 @ 14501726 n 0000 | a developmental abnormality in which there is only one eye -14504103 26 n 04 chromosomal_aberration 0 chromosomal_anomaly 0 chrosomal_abnormality 0 chromosonal_disorder 0 004 @ 14503665 n 0000 ~ 14504405 n 0000 ~ 14504558 n 0000 ~ 14565696 n 0000 | any change in the normal structure or number of chromosomes; often results in physical or mental abnormalities -14504405 26 n 01 monosomy 0 001 @ 14504103 n 0000 | chromosomal abnormality consisting of the absence of one chromosome from the normal diploid number -14504558 26 n 01 trisomy 0 002 @ 14504103 n 0000 ~ 14159623 n 0000 | chrosomal abnormality in which there is one more than the normal number of chromosomes in a cell -14504726 26 n 02 deflection 0 warp 0 002 @ 14503665 n 0000 + 00835903 v 0204 | a twist or aberration; especially a perverse or abnormal way of judging or acting -14504889 26 n 01 spinal_curvature 0 005 @ 14501726 n 0000 ~ 14505069 n 0000 ~ 14505215 n 0000 ~ 14505364 n 0000 ~ 14505469 n 0000 | an abnormal curvature of the vertebral column -14505069 26 n 03 kyphosis 0 humpback 0 hunchback 0 002 @ 14504889 n 0000 + 01019000 a 0107 | an abnormal backward curve to the vertebral column -14505215 26 n 02 lordosis 0 hollow-back 0 002 @ 14504889 n 0000 + 01020117 a 0102 | an abnormal inward (forward) curvature of the vertebral column -14505364 26 n 01 scoliosis 0 001 @ 14504889 n 0000 | an abnormal lateral curve to the vertebral column -14505469 26 n 01 dowager's_hump 0 002 @ 14504889 n 0000 @ 14210354 n 0000 | abnormal spinal curvature that results when osteoporosis causes the spine to collapse; seen most often in elderly women -14505667 26 n 01 subnormality 0 002 @ 14501726 n 0000 + 01597702 a 0101 | the state of being less than normal (especially with respect to intelligence) -14505821 26 n 02 anomaly 0 anomalousness 0 005 @ 14501726 n 0000 + 01596455 a 0201 + 01596455 a 0101 + 09606380 n 0101 ~ 14465048 n 0000 | deviation from the normal or common order or form or rule -14506020 26 n 01 gynecomastia 0 001 @ 14501726 n 0000 | excessive development of the breasts in males; usually the result of hormonal imbalance or treatment with certain drugs (including some antihypertensives) -14506233 26 n 04 cross-eye 0 crossed_eye 0 convergent_strabismus 0 esotropia 0 001 @ 14557415 n 0000 | strabismus in which one or both eyes turn inward toward the nose -14506403 26 n 02 dwarfism 0 nanism 0 002 @ 14151139 n 0000 ~ 14506533 n 0000 | a genetic abnormality resulting in short stature -14506533 26 n 01 pycnodysostosis 0 001 @ 14506403 n 0000 | a form of dwarfism accompanied by fragile bones and bad teeth -14506656 26 n 03 lactose_intolerance 0 lactase_deficiency 0 milk_intolerance 0 001 @ 14151139 n 0000 | congenital disorder consisting of an inability to digest milk and milk products; absence or deficiency of lactase results in an inability to hydrolyze lactose -14506920 26 n 01 lactosuria 0 001 @ 13920835 n 0000 | presence of lactose in the urine; can occur during pregnancy or lactation -14507050 26 n 01 myoglobinuria 0 001 @ 14299637 n 0000 | the presence of myoglobin in the urine -14507148 26 n 01 oliguria 0 001 @ 14299637 n 0000 | abnormally small production of urine; can be a symptom of kidney disease or obstruction of the urinary tract or edema or an imbalance of fluids and electrolytes in the body -14507375 26 n 02 phenylketonuria 0 PKU 0 001 @ 14155834 n 0000 | a genetic disorder of metabolism; lack of the enzyme needed to turn phenylalanine into tyrosine results in an accumulation of phenylalanine in the body fluids which causes various degrees of mental deficiency -14507651 26 n 01 porphyria 0 001 @ 14151139 n 0000 | a genetic abnormality of metabolism causing abdominal pains and mental confusion -14507787 26 n 01 infantilism 0 002 @ 14501726 n 0000 ~ 14508799 n 0000 | an abnormal condition in which an older child or adult retains infantile characteristics -14507951 26 n 02 obstruction 0 blockage 0 004 @ 14034177 n 0000 + 02557199 v 0203 ~ 14508149 n 0000 ~ 14508368 n 0000 | the physical condition of blocking or filling a passage with an obstruction -14508149 26 n 02 intestinal_obstruction 0 ileus 0 002 @ 14507951 n 0000 @ 14074606 n 0000 | blockage of the intestine (especially the ileum) that prevents the contents of the intestine from passing to the lower bowel -14508368 26 n 02 tamponade 0 tamponage 0 003 @ 14507951 n 0000 + 01423167 v 0201 ~ 14508578 n 0000 | blockage or closure (as of a wound or body cavity) by (or as if by) a tampon (especially to stop bleeding) -14508578 26 n 01 cardiac_tamponade 0 001 @ 14508368 n 0000 | mechanical compression of the heart resulting from large amounts of fluid collecting in the pericardial space and limiting the heart's normal range of motion -14508799 26 n 02 ateleiosis 0 ateliosis 0 002 @ 14507787 n 0000 + 02899383 a 0101 | a form of infantilism characterized by physical underdevelopment but normal intelligence -14508974 26 n 03 macrocephaly 0 megacephaly 0 megalocephaly 0 002 @ 14501726 n 0000 + 02901649 a 0101 | an abnormally large head; differs from hydrocephalus because there is no increased intracranial pressure and the overgrowth is symmetrical -14509219 26 n 01 microbrachia 0 001 @ 14501726 n 0000 | abnormally small arms -14509299 26 n 03 microcephaly 0 microcephalus 0 nanocephaly 0 004 @ 14501726 n 0000 + 02901806 a 0303 + 02901806 a 0101 + 02901806 a 0102 | an abnormally small head and underdeveloped brain -14509491 26 n 01 pachycheilia 0 001 @ 14501726 n 0000 | an abnormal thickness of the lips -14509583 26 n 01 phimosis 0 001 @ 14501726 n 0000 | an abnormal tightness of the foreskin preventing retraction over the glans -14509712 26 n 03 poisoning 0 toxic_condition 0 intoxication 1 014 @ 14034177 n 0000 + 00088532 v 0301 ~ 14510104 n 0000 ~ 14510247 n 0000 ~ 14510401 n 0000 ~ 14510648 n 0000 ~ 14510955 n 0000 ~ 14511234 n 0000 ~ 14511730 n 0000 ~ 14511862 n 0000 ~ 14512009 n 0000 ~ 14512088 n 0000 ~ 14512508 n 0000 ~ 14512674 n 0000 | the physiological state produced by a poison or other toxic substance -14510104 26 n 01 alkali_poisoning 0 001 @ 14509712 n 0000 | poisoning resulting from the ingestion of an alkali compound (as lye or ammonia) -14510247 26 n 02 caffeinism 0 caffeine_intoxication 0 001 @ 14509712 n 0000 | poisoning resulting from excessive intake of caffeine containing products -14510401 26 n 01 carbon_monoxide_poisoning 0 002 @ 14509712 n 0000 %p 14303009 n 0000 | a toxic condition that results from inhaling and absorbing carbon monoxide gas; "carbon monoxide combines with hemoglobin and displaces oxygen in the blood" -14510648 26 n 01 cyanide_poisoning 0 001 @ 14509712 n 0000 | poisoning due to ingesting or inhaling cyanide; common in smoke from fires and in industrial chemicals -14510814 26 n 01 malathion_poisoning 0 001 @ 14512508 n 0000 | a toxic condition caused by inhaling or ingesting the insecticide Malathion -14510955 26 n 01 ergotism 0 001 @ 14509712 n 0000 | poisoning by ingestion of ergot-infected grain products; characterized by thirst and diarrhea and nausea and cramping and vomiting and abnormal cardiac rhythms; in severe cases it can cause seizures and gangrene of the limbs -14511234 26 n 01 mercury_poisoning 0 002 @ 14509712 n 0000 ~ 14511491 n 0000 | a toxic condition caused by ingesting or inhaling mercury; acute mercury poisoning causes a metallic taste and vomiting and diarrhea and kidney problems that may lead to death -14511491 26 n 01 Minamata_disease 0 001 @ 14511234 n 0000 | a form of mercury poisoning among people who ate fish from mercury-contaminated waters of Minamata Bay off Japan in the 1950s; characterized by severe neurological degeneration -14511730 26 n 01 naphthalene_poisoning 0 001 @ 14509712 n 0000 | toxic condition resulting from inhaling or ingesting naphthalene -14511862 26 n 01 nicotine_poisoning 0 001 @ 14509712 n 0000 | toxic condition caused by the ingestion or inhalation of large amounts of nicotine -14512009 26 n 01 ophidism 0 001 @ 14509712 n 0000 | poisoning by snake venom -14512088 26 n 01 paraquat_poisoning 0 001 @ 14509712 n 0000 | poisoning caused by ingestion of paraquat; characterized by progressive damage to the esophagus and liver and kidneys -14512270 26 n 01 parathion_poisoning 0 001 @ 14512508 n 0000 | a toxic condition resulting from inhalation or ingestion of the insecticide parathion; characterized by nausea and abdominal pains and headache and convulsions and sweating -14512508 26 n 01 pesticide_poisoning 0 003 @ 14509712 n 0000 ~ 14510814 n 0000 ~ 14512270 n 0000 | toxic condition resulting from ingesting or inhaling a pesticide -14512674 26 n 01 salicylate_poisoning 0 001 @ 14509712 n 0000 | poisoning caused by the excessive ingestion of salicylates (usually aspirin) -14512817 26 n 03 context 0 circumstance 2 setting 1 005 @ 13934596 n 0000 + 01103676 a 0201 + 03002190 a 0101 ~ 13923030 n 0000 ~ 13923219 n 0000 | the set of facts or circumstances that surround a situation or event; "the historical context" -14513062 26 n 01 ecology 0 004 @ 13934596 n 0000 + 02906778 a 0102 + 02906778 a 0101 + 10043163 n 0101 | the environment as it relates to living organisms; "it changed the ecology of the island" -14513259 26 n 03 setting 0 background 0 scope 0 004 @ 13934596 n 0000 + 02992070 a 0301 ~ 14513489 n 0000 ~ 14516082 n 0000 | the state of the environment in which a situation exists; "you can't do that in a university setting" -14513489 26 n 02 canvas 0 canvass 0 001 @ 14513259 n 0000 | the setting for a narrative or fictional or dramatic account; "the crowded canvas of history"; "the movie demanded a dramatic canvas of sound" -14513694 26 n 01 home 0 004 @ 13934596 n 0000 + 00477661 a 0104 + 00477661 a 0103 + 02459633 v 0101 | an environment offering affection and security; "home is where the heart is"; "he grew up in a good Christian home"; "there's no place like home" -14513944 26 n 02 milieu 0 surroundings 0 001 @ 13934596 n 0000 | the environmental condition -14514039 26 n 06 sphere 0 domain 0 area 0 orbit 0 field 0 arena 0 008 @ 13934596 n 0000 ~ 14514392 n 0000 ~ 14514491 n 0000 ~ 14514805 n 0000 ~ 14515041 n 0000 ~ 14515344 n 0000 ~ 14515463 n 0000 ~ 14515633 n 0000 | a particular environment or walk of life; "his social sphere is limited"; "it was a closed area of employment"; "he's out of my orbit" -14514392 26 n 01 distaff 0 002 @ 14514039 n 0000 + 01484451 a 0102 | the sphere of work by women -14514491 26 n 01 front 0 001 @ 14514039 n 0000 | a sphere of activity involving effort; "the Japanese were active last week on the diplomatic front"; "they advertise on many different fronts" -14514685 26 n 02 lotusland 0 lotus_land 0 001 @ 14514805 n 0000 | an idyllic realm of contentment and self-indulgence -14514805 26 n 03 kingdom 0 land 0 realm 1 002 @ 14514039 n 0000 ~ 14514685 n 0000 | a domain in which something is dominant; "the untroubled kingdom of reason"; "a land of make-believe"; "the rise of the realm of cotton in the south" -14515041 26 n 01 lap 0 002 @ 14514039 n 0000 ~ 14515177 n 0000 | an area of control or responsibility; "the job fell right in my lap" -14515177 26 n 01 lap_of_the_gods 0 001 @ 14515041 n 0000 | beyond human control or responsibility; "there is nothing more I can do; it's in the lap of the gods now" -14515344 26 n 02 political_arena 0 political_sphere 0 001 @ 14514039 n 0000 | a sphere of intense political activity -14515463 26 n 01 preserve 0 002 @ 14514039 n 0000 + 02225492 v 0102 | a domain that seems to be specially reserved for someone; "medicine is no longer a male preserve" -14515633 26 n 02 province 0 responsibility 0 002 @ 14514039 n 0000 ~ 14515816 n 0000 | the proper sphere or extent of your activities; "it was his province to take care of himself" -14515816 26 n 01 ecclesiastical_province 0 001 @ 14515633 n 0000 | the district within the jurisdiction of an archbishop or a metropolitan or one of the territorial divisions of an ecclesiastical order; "the general of the Jesuits has several provinces under him" -14516082 26 n 02 showcase 0 show_window 0 001 @ 14513259 n 0000 | a setting in which something can be displayed to best effect; "it was a showcase for democracy in Africa" -14516256 26 n 01 street 0 002 @ 13934596 n 0000 #p 08509251 n 0000 | the streets of a city viewed as a depressed environment in which there is poverty and crime and prostitution and dereliction; "she tried to keep her children off the street" -14516501 26 n 01 environmental_condition 0 009 @ 13920835 n 0000 ~ 14516743 n 0000 ~ 14518924 n 0000 ~ 14519097 n 0000 ~ 14519208 n 0000 ~ 14519366 n 0000 ~ 14519673 n 0000 ~ 14519942 n 0000 ~ 14520123 n 0000 | the state of the environment -14516743 26 n 01 pollution 0 009 @ 14516501 n 0000 @ 14487184 n 0000 + 00492706 v 0101 ~ 14517067 n 0000 ~ 14517243 n 0000 ~ 14517412 n 0000 ~ 14518539 n 0000 ~ 14518671 n 0000 ~ 14518820 n 0000 | undesirable state of the natural environment being contaminated with harmful substances as a consequence of human activities -14517067 26 n 01 biodegradable_pollution 0 002 @ 14516743 n 0000 ! 14517243 n 0101 | pollution that is rendered harmless by natural processes and so causes no permanent harm -14517243 26 n 01 nonbiodegradable_pollution 0 002 @ 14516743 n 0000 ! 14517067 n 0101 | pollution that accumulates in the environment and may appear in the food chain -14517412 26 n 01 air_pollution 0 006 @ 14516743 n 0000 ~ 14517629 n 0000 ~ 14517852 n 0000 ~ 14518010 n 0000 ~ 14518219 n 0000 ~ 14518377 n 0000 | pollution of the atmosphere; "air pollution reduced the visibility" -14517629 26 n 02 acid_rain 0 acid_precipitation 0 001 @ 14517412 n 0000 | rain containing acids that form in the atmosphere when industrial gas emissions (especially sulfur dioxide and nitrogen oxides) combine with water -14517852 26 n 01 industrial_air_pollution 0 001 @ 14517412 n 0000 | pollution resulting from an industrial plant discharging pollutants into the atmosphere -14518010 26 n 02 miasma 0 miasm 0 003 @ 14517412 n 0000 + 00462546 a 0102 + 00462546 a 0101 | unhealthy vapors rising from the ground or other sources; "the miasma of the marshes"; "a miasma of cigar smoke" -14518219 26 n 01 small-particle_pollution 0 001 @ 14517412 n 0000 | air pollution caused by fine particles of soot (as from power plants or diesel engines) -14518377 26 n 02 smog 0 smogginess 0 004 @ 14517412 n 0000 ;u 06288527 n 0000 + 00462741 a 0201 + 00462741 a 0101 | air pollution by a mixture of smoke and fog -14518539 26 n 02 noise_pollution 0 sound_pollution 0 001 @ 14516743 n 0000 | annoying and potentially harmful environmental noise -14518671 26 n 01 thermal_pollution 0 001 @ 14516743 n 0000 | harm to lakes and rivers resulting from the release of excessive waste heat into them -14518820 26 n 01 water_pollution 0 001 @ 14516743 n 0000 | pollution of the water in rivers and lakes -14518924 26 n 01 erosion 0 003 @ 14516501 n 0000 + 00275253 v 0101 + 00274724 v 0101 | condition in which the earth's surface is worn away by the action of water and wind -14519097 26 n 01 deforestation 0 002 @ 14516501 n 0000 + 00196024 v 0101 | the state of being clear of trees -14519208 26 n 01 depopulation 0 002 @ 14516501 n 0000 + 00531302 v 0101 | the condition of having reduced numbers of inhabitants (or no inhabitants at all) -14519366 26 n 02 climate 0 clime 0 006 @ 14516501 n 0000 + 03055374 a 0101 + 03055374 a 0102 + 00393677 v 0103 + 00393677 v 0101 + 00393677 v 0102 | the weather in some location averaged over some long period of time; "the dank climate of southern Wales"; "plants from a cold clime travel best in winter" -14519673 26 n 01 glaciation 0 004 @ 14516501 n 0000 + 02736015 a 0101 + 01208708 v 0101 + 00374375 v 0101 | the condition of being covered with glaciers or masses of ice; the result of glacial action; "Agassiz recognized marks of glaciation all over northern Europe" -14519942 26 n 01 inhospitableness 0 002 @ 14516501 n 0000 + 01242489 a 0101 | the environmental condition in a region that lacks a favorable climate or terrain for life or growth -14520123 26 n 01 meteorological_conditions 0 001 @ 14516501 n 0000 | the prevailing environmental conditions as they influence the prediction of weather -14520278 26 n 02 atmosphere 0 atmospheric_state 0 006 @ 11524662 n 0000 + 02831736 a 0101 ~ 14520518 n 0000 ~ 14521021 n 0000 ~ 14521302 n 0000 ~ 14521648 n 0000 | the weather or climate at some place; "the atmosphere was thick with fog" -14520518 26 n 01 air_mass 0 003 @ 14520278 n 0000 ~ 14520670 n 0000 ~ 14520829 n 0000 | a large body of air with uniform characteristics horizontally -14520670 26 n 01 high 0 002 @ 14520518 n 0000 #p 14521021 n 0000 | an air mass of higher than normal pressure; "the east coast benefits from a Bermuda high" -14520829 26 n 02 low 0 depression 1 002 @ 14520518 n 0000 #p 14521302 n 0000 | an air mass of lower pressure; often brings precipitation; "a low moved in over night bringing sleet and snow" -14521021 26 n 01 anticyclone 0 005 @ 14520278 n 0000 ;c 06118563 n 0000 + 02629942 a 0101 ! 14521302 n 0101 %p 14520670 n 0000 | (meteorology) winds spiraling outward from a high pressure center; circling clockwise in the northern hemisphere and counterclockwise in the southern -14521302 26 n 01 cyclone 0 008 @ 14520278 n 0000 ;c 06118563 n 0000 + 03058223 a 0101 + 03057949 a 0101 + 03058223 a 0102 + 03058223 a 0103 ! 14521021 n 0101 %p 14520829 n 0000 | (meteorology) rapid inward circulation of air masses about a low pressure center; circling counterclockwise in the northern hemisphere and clockwise in the southern -14521648 26 n 04 fog 1 fogginess 0 murk 0 murkiness 0 009 @ 14520278 n 0000 + 00276689 a 0401 + 00276689 a 0301 + 00433529 a 0304 + 00312060 v 0301 + 00461609 a 0202 + 00433811 a 0102 + 02157731 v 0106 ~ 14521954 n 0000 | an atmosphere in which visibility is reduced because of a cloud of some substance -14521954 26 n 01 fug 0 004 @ 14521648 n 0000 ;r 08860123 n 0000 ;u 07075172 n 0000 + 02509710 a 0101 | (British informal) an airless smoky smelly atmosphere -14522113 26 n 01 good_weather 0 004 @ 11524662 n 0000 ! 14523090 n 0101 ~ 14522265 n 0000 ~ 14522408 n 0000 | weather suitable for outdoor activities -14522265 26 n 01 calmness 0 004 @ 14522113 n 0000 + 00302761 a 0101 ~ 14522809 n 0000 ~ 14522956 n 0000 | an absence of strong winds or rain -14522408 26 n 02 mildness 0 clemency 0 004 @ 14522113 n 0000 + 00438166 a 0201 + 00438332 a 0102 ~ 14522570 n 0000 | good weather with comfortable temperatures -14522570 26 n 02 balminess 0 softness 2 002 @ 14522408 n 0000 + 00438332 a 0203 | the quality of weather that is deliciously mild and soothing; "the day's heat faded into balminess"; "the climate had the softness of the south of France" -14522809 26 n 02 stillness 0 windlessness 0 004 @ 14522265 n 0000 + 00303579 a 0201 + 01241600 a 0101 + 00302951 a 0103 | calmness without winds -14522956 26 n 02 lull 0 quiet 0 002 @ 14522265 n 0000 + 01763643 v 0101 | a period of calm weather; "there was a lull in the storm" -14523090 26 n 03 bad_weather 0 inclemency 0 inclementness 0 008 @ 11524662 n 0000 + 00438567 a 0301 + 00438567 a 0201 ! 14522113 n 0101 ~ 14523344 n 0000 ~ 14523436 n 0000 ~ 14524198 n 0000 ~ 14524383 n 0000 | weather unsuitable for outdoor activities -14523344 26 n 01 raw_weather 0 001 @ 14523090 n 0000 | unpleasantly cold and damp weather -14523436 26 n 01 storminess 0 006 @ 14523090 n 0000 + 00303727 a 0101 ~ 14523669 n 0000 ~ 14523787 n 0000 ~ 14523923 n 0000 ~ 14524029 n 0000 | the state of being stormy; "he dreaded the storminess of the North Atlantic in winter" -14523669 26 n 01 boisterousness 0 002 @ 14523436 n 0000 + 00304949 a 0101 | a turbulent and stormy state of the sea -14523787 26 n 02 breeziness 0 windiness 0 003 @ 14523436 n 0000 + 00305225 a 0203 + 00305225 a 0102 | a mildly windy state of the air -14523923 26 n 01 tempestuousness 0 002 @ 14523436 n 0000 + 00304144 a 0104 | a state of wild storminess -14524029 26 n 03 choppiness 1 roughness 1 rough_water 0 003 @ 14523436 n 0000 + 00304949 a 0203 + 00305464 a 0101 | used of the sea during inclement or stormy weather -14524198 26 n 03 cloudiness 0 cloud_cover 0 overcast 0 004 @ 14523090 n 0000 + 00461971 a 0303 + 02770717 v 0301 + 00461311 a 0101 | the state of the sky when it is covered by clouds -14524383 26 n 01 turbulence 1 002 @ 14523090 n 0000 ~ 14524487 n 0000 | instability in the atmosphere -14524487 26 n 01 clear-air_turbulence 0 001 @ 14524383 n 0000 | strong turbulence in an otherwise cloudless region that subjects aircraft to violent updrafts or downdrafts -14524661 26 n 02 climate 1 mood 0 001 @ 13920835 n 0000 | the prevailing psychological state; "the climate of opinion"; "the national mood had changed radically since the last election" -14524849 26 n 03 atmosphere 1 ambiance 0 ambience 0 006 @ 13920835 n 0000 + 00447753 a 0301 ~ 14525274 n 0000 ~ 14525365 n 0000 ~ 14526032 n 0000 ~ 14526182 n 0000 | a particular environment or surrounding influence; "there was an atmosphere of excitement" -14525108 26 n 01 cloud 2 001 @ 14525365 n 0000 | a cause of worry or gloom or trouble; "the only cloud on the horizon was the possibility of dissent by the French" -14525274 26 n 01 genius_loci 0 001 @ 14524849 n 0000 | the special atmosphere of a place -14525365 26 n 03 gloom 2 gloominess 2 glumness 0 003 @ 14524849 n 0000 ~ 14525108 n 0000 ~ 14525548 n 0000 | an atmosphere of depression and melancholy; "gloom pervaded the office" -14525548 26 n 04 bleakness 1 desolation 1 bareness 1 nakedness 1 005 @ 14525365 n 0000 + 00388635 v 0204 + 01242750 a 0103 + 01229561 a 0102 + 01252399 a 0101 | a bleak and desolate atmosphere; "the nakedness of the landscape" -14525777 26 n 01 Hollywood 0 001 @ 14526182 n 0000 | a flashy vulgar tone or atmosphere believed to be characteristic of the American film industry; "some people in publishing think of theirs as a glamorous medium so they copy the glitter of Hollywood" -14526032 26 n 02 miasma 1 miasm 1 002 @ 14524849 n 0000 + 01054204 a 0101 | an unwholesome atmosphere; "the novel spun a miasma of death and decay" -14526182 26 n 08 spirit 0 tone 1 feel 0 feeling 0 flavor 0 flavour 0 look 0 smell 0 009 @ 14524849 n 0000 + 02133435 v 0701 + 02110552 v 0401 + 02134350 v 0301 + 02730471 v 0301 + 00193130 v 0101 + 01229631 v 0101 ~ 14525777 n 0000 ~ 14526635 n 0000 | the general atmosphere of a place or situation and the effect that it has on people; "the feel of the city excited him"; "a clergyman improved the tone of the meeting"; "it had the smell of treason" -14526635 26 n 01 Zeitgeist 0 001 @ 14526182 n 0000 | the spirit of the time; the spirit characteristic of an age or generation -14526764 26 n 02 unsusceptibility 0 immunity 0 004 @ 13920835 n 0000 + 02363358 a 0101 ! 14530061 n 0101 ~ 14528873 n 0000 | the state of not being susceptible; "unsusceptibility to rust" -14526954 26 n 01 resistance 1 001 @ 14530836 n 0000 | the capacity of an organism to defend itself against harmful environmental agents; "these trees are widely planted because of their resistance to salt and smog" -14527171 26 n 02 immunity 1 resistance 0 008 @ 13920835 n 0000 ;c 06043075 n 0000 + 02363614 a 0202 + 02745862 a 0101 + 02363614 a 0101 ~ 14527430 n 0000 ~ 14528193 n 0000 ~ 14528571 n 0000 | (medicine) the condition in which an organism can resist disease -14527430 26 n 01 immunogenicity 0 002 @ 14527171 n 0000 + 02363939 a 0101 | the property of eliciting an immune response -14527553 26 n 01 active_immunity 0 001 @ 14528193 n 0000 | a form of acquired immunity in which the body produces its own antibodies against disease-causing antigens -14527721 26 n 01 passive_immunity 0 001 @ 14528193 n 0000 | an impermanent form of acquired immunity in which antibodies against a disease are acquired naturally (as through the placenta to an unborn child) or artificially (as by injection of antiserum) -14527977 26 n 01 autoimmunity 0 003 @ 14204950 n 0000 #p 14187378 n 0000 + 02649399 a 0101 | production of antibodies against the tissues of your own body; produces autoimmune disease or hypersensitivity reactions -14528193 26 n 01 acquired_immunity 0 003 @ 14527171 n 0000 ~ 14527553 n 0000 ~ 14527721 n 0000 | immunity to a particular disease that is not innate but has been acquired during life; immunity can be acquired by the development of antibodies after an attack of an infectious disease or by a pregnant mother passing antibodies through the placenta to a fetus or by vaccination -14528571 26 n 02 natural_immunity 0 innate_immunity 0 002 @ 14527171 n 0000 ~ 14528752 n 0000 | immunity to disease that occurs as part of an individual's natural biologic makeup -14528752 26 n 01 racial_immunity 0 001 @ 14528571 n 0000 | natural immunity shared by all members of a particular race -14528873 26 n 02 exemption 0 freedom 1 007 @ 14526764 n 0000 + 02564146 v 0101 ~ 14529082 n 0000 ~ 14529212 n 0000 ~ 14529408 n 0000 ~ 14529524 n 0000 ~ 14529612 n 0000 | immunity from an obligation or duty -14529082 26 n 01 amnesty 0 002 @ 14528873 n 0000 + 00905677 v 0101 | a period during which offenders are exempt from punishment -14529212 26 n 01 diplomatic_immunity 0 002 @ 14528873 n 0000 ;c 08441203 n 0000 | exemption from taxation or normal processes of law that is offered to diplomatic personnel in a foreign country -14529408 26 n 01 indemnity 0 002 @ 14528873 n 0000 + 02251247 v 0101 | legal exemption from liability for damages -14529524 26 n 01 impunity 0 001 @ 14528873 n 0000 | exemption from punishment or loss -14529612 26 n 01 grandfather_clause 0 001 @ 14528873 n 0000 | an exemption based on circumstances existing prior to the adoption of some policy; used to enfranchise illiterate whites in south after the American Civil War -14529835 26 n 01 subservience 0 002 @ 13920835 n 0000 + 02548588 v 0101 | the condition of being something that is useful in reaching an end or carrying out a plan; "all his actions were in subservience to the general plan" -14530061 26 n 02 susceptibility 0 susceptibleness 0 013 @ 13920835 n 0000 + 02365142 a 0201 + 02360448 a 0201 + 02365142 a 0101 + 02360448 a 0101 ! 14526764 n 0101 = 02360448 a 0000 = 02363358 a 0000 ~ 14530403 n 0000 ~ 14530836 n 0000 ~ 14531772 n 0000 ~ 14534457 n 0000 ~ 14534571 n 0000 | the state of being susceptible; easily affected -14530403 26 n 01 liability 1 004 @ 14530061 n 0000 + 01997583 a 0101 ~ 14530563 n 0000 ~ 14530659 n 0000 | the state of being legally obliged and responsible -14530563 26 n 01 taxability 0 002 @ 14530403 n 0000 + 02400218 a 0101 | liability to taxation -14530659 26 n 02 ratability 0 rateability 0 004 @ 14530403 n 0000 ;r 08860123 n 0000 + 02400724 a 0202 + 02400724 a 0101 | the state of being liable to assessment or taxation -14530836 26 n 02 capability 0 capacity 0 004 @ 14530061 n 0000 + 02361540 a 0101 ~ 14526954 n 0000 ~ 14531203 n 0000 | the susceptibility of something to a particular treatment; "the capability of a metal to be fused" -14531056 26 n 01 habitus 0 001 @ 14531772 n 0000 | person's predisposition to be affected by something (as a disease); "the consumptive habitus" -14531203 26 n 01 activity 1 003 @ 14530836 n 0000 ;c 06084469 n 0000 + 00042457 a 0101 | (chemistry) the capacity of a substance to take part in a chemical reaction; "catalytic activity" -14531392 26 n 01 irritation 2 004 @ 14501726 n 0000 @ 14531983 n 0000 ;c 06060845 n 0000 + 00063291 v 0101 | (pathology) abnormal sensitivity to stimulation; "any food produced irritation of the stomach" -14531598 26 n 03 retroversion 0 retroflection 0 retroflexion 0 001 @ 14501726 n 0000 | a turning or tilting backward of an organ or body part; "retroversion of the uterus" -14531772 26 n 02 sensitivity 0 predisposition 0 007 @ 14530061 n 0000 = 02108198 a 0000 = 02108359 a 0000 ~ 14531056 n 0000 ~ 14531983 n 0000 ~ 14533796 n 0000 ~ 14534333 n 0000 | susceptibility to a pathogen -14531983 26 n 02 sensitization 0 sensitisation 0 003 @ 14531772 n 0000 + 00573932 v 0202 ~ 14531392 n 0000 | the state of being sensitive (as to an antigen) -14532142 26 n 01 food_allergy 0 001 @ 14532816 n 0000 | allergic reaction to a substance ingested in food -14532250 26 n 04 immediate_allergy 0 atopy 0 atopic_allergy 0 type_I_allergic_reaction 0 001 @ 14532816 n 0000 | an allergic reaction that becomes apparent in a sensitized person only minutes after contact -14532458 26 n 02 serum_sickness 0 serum_disease 0 001 @ 14532816 n 0000 | a delayed allergic reaction to the injection of an antiserum caused by an antibody reaction to an antigen in the donor serum -14532659 26 n 02 delayed_allergy 0 type_IV_allergic_reaction 0 001 @ 14532816 n 0000 | an allergic reaction that becomes apparent only hours after contact -14532816 26 n 02 allergy 0 allergic_reaction 0 008 @ 14533203 n 0000 + 02360944 a 0101 + 02612653 a 0101 + 09784306 n 0101 ~ 14532142 n 0000 ~ 14532250 n 0000 ~ 14532458 n 0000 ~ 14532659 n 0000 | hypersensitivity reaction to a particular allergen; symptoms can vary greatly in intensity -14533106 26 n 02 cryesthesia 0 cryaesthesia 0 001 @ 14533796 n 0000 | hypersensitivity to cold -14533203 26 n 01 hypersensitivity_reaction 0 005 @ 14533796 n 0000 ~ 14322248 n 0000 ~ 14532816 n 0000 ~ 14533547 n 0000 ~ 14533937 n 0000 | an inappropriate and excessive reaction to an allergen (as pollen or dust or animal hair or certain foods); severity ranges from mild allergy to severe systemic reactions leading to anaphylactic shock -14533547 26 n 01 anaphylaxis 0 004 @ 14533203 n 0000 ;c 03247620 n 0000 + 03140875 a 0101 ~ 14067902 n 0000 | hypersensitivity reaction to the ingestion or injection of a substance (a protein or drug) resulting from prior contact with a substance -14533796 26 n 01 hypersensitivity 0 004 @ 14531772 n 0000 + 02360944 a 0102 ~ 14533106 n 0000 ~ 14533203 n 0000 | pathological sensitivity -14533937 26 n 01 allergic_rhinitis 0 003 @ 14355060 n 0000 @ 14533203 n 0000 ~ 14534199 n 0000 | rhinitis caused by an allergic reaction -14534076 26 n 01 eosinophilia 0 001 @ 14299637 n 0000 | a symptom of allergic states; increased eosinophils in the blood -14534199 26 n 02 hay_fever 0 pollinosis 0 001 @ 14533937 n 0000 | a seasonal rhinitis resulting from an allergic reaction to pollen -14534333 26 n 01 diathesis 0 001 @ 14531772 n 0000 | constitutional predisposition to a particular disease or abnormality -14534457 26 n 01 reactivity 0 002 @ 14530061 n 0000 + 01928608 a 0101 | ready susceptibility to chemical change -14534571 26 n 01 suggestibility 0 002 @ 14530061 n 0000 + 02362708 a 0101 | susceptibility or responsiveness to suggestion -14534696 26 n 01 wetness 0 011 @ 13920835 n 0000 + 02555126 a 0101 + 02547317 a 0101 ! 14536438 n 0101 = 02547317 a 0000 = 02551380 a 0000 ~ 14535056 n 0000 ~ 14535431 n 0000 ~ 14535643 n 0000 ~ 14535905 n 0000 ~ 14536331 n 0000 | the condition of containing or being covered by a liquid (especially water); "he confirmed the wetness of the swimming trunks" -14535056 26 n 03 wateriness 0 muddiness 0 sloppiness 1 005 @ 14534696 n 0000 + 02550170 a 0301 + 02548066 a 0307 + 02548066 a 0205 + 02551259 a 0101 | the wetness of ground that is covered or soaked with water; "the baseball game was canceled because of the wateriness of the outfield"; "the water's muddiness made it undrinkable"; "the sloppiness of a rainy November day" -14535431 26 n 02 moisture 0 wet 0 006 @ 14534696 n 0000 + 02555126 a 0201 + 00214951 v 0201 + 00217956 v 0101 + 00215800 v 0102 + 00215800 v 0103 | wetness caused by water; "drops of wet gleamed on the window" -14535643 26 n 02 humidity 0 humidness 0 005 @ 14534696 n 0000 + 02549393 a 0201 + 02549393 a 0101 + 00215800 v 0101 ~ 14535807 n 0000 | wetness in the atmosphere -14535807 26 n 01 mugginess 0 002 @ 14535643 n 0000 + 02549691 a 0101 | a state of warm humidity -14535905 26 n 03 damp 0 dampness 0 moistness 0 006 @ 14534696 n 0000 + 02548820 a 0303 + 02548820 a 0201 + 02548820 a 0101 ~ 14536085 n 0000 ~ 14536207 n 0000 | a slight wetness -14536085 26 n 02 dankness 0 clamminess 0 003 @ 14535905 n 0000 + 02548619 a 0201 + 02548619 a 0102 | unpleasant wetness -14536207 26 n 01 rawness 2 002 @ 14535905 n 0000 + 01252399 a 0103 | a chilly dampness; "the rawness of the midnight air" -14536331 26 n 01 sogginess 0 003 @ 14534696 n 0000 + 02548066 a 0109 + 01185417 a 0102 | a heavy wetness -14536438 26 n 03 dryness 0 waterlessness 0 xerotes 0 014 @ 13920835 n 0000 + 02552415 a 0202 + 02474076 a 0101 + 01178669 a 0101 + 02555267 a 0101 + 02554546 a 0101 + 02551380 a 0101 ! 14534696 n 0101 ~ 14536831 n 0000 ~ 14537054 n 0000 ~ 14537250 n 0000 ~ 14537472 n 0000 ~ 14538113 n 0000 ~ 14538329 n 0000 | the condition of not containing or being covered by a liquid (especially water) -14536831 26 n 02 dehydration 0 desiccation 0 007 @ 14536438 n 0000 + 00211396 v 0202 + 00212790 v 0202 + 00211108 v 0204 + 00212790 v 0101 + 00211396 v 0101 + 00211108 v 0102 | dryness resulting from the removal of water -14537054 26 n 02 drought 0 drouth 0 001 @ 14536438 n 0000 | a shortage of rainfall; "farmers most affected by the drought hope that there may yet be sufficient rain early in the growing season" -14537250 26 n 03 aridity 0 aridness 0 thirstiness 1 004 @ 14536438 n 0000 + 02554140 a 0301 + 02552415 a 0201 + 02552415 a 0101 | a deficiency of moisture (especially when resulting from a permanent absence of rainfall) -14537472 26 n 01 sereness 0 002 @ 14536438 n 0000 + 02553234 a 0102 | a withered dryness -14537563 26 n 02 xeroderma 0 xerodermia 0 002 @ 14158997 n 0000 ~ 14537735 n 0000 | a mild form of ichthyosis characterized by abnormal dryness and roughness of the skin -14537735 26 n 01 xeroderma_pigmentosum 0 001 @ 14537563 n 0000 | a rare genetic condition characterized by an eruption of exposed skin occurring in childhood and photosensitivity with severe sunburn; inherited as a recessive autosomal trait in which DNA repair processes are defective so they are more likely to chromosome breaks and cancers when exposed to ultraviolet light -14538113 26 n 04 xerophthalmia 0 xerophthalmus 0 xeroma 0 conjunctivitis_arida 0 001 @ 14536438 n 0000 | abnormal dryness of the conjunctiva and cornea of the eyes; may be due to a systemic deficiency of vitamin A -14538329 26 n 02 xerostomia 0 dry_mouth 0 001 @ 14536438 n 0000 | abnormal dryness of the mouth resulting from decreased secretion of saliva -14538472 26 n 01 safety 0 007 @ 13920835 n 0000 ! 14540765 n 0101 ~ 14538811 n 0000 ~ 14538908 n 0000 ~ 14539029 n 0000 ~ 14539165 n 0000 ~ 14539268 n 0000 | the state of being certain that adverse effects will not be caused by some agent under defined conditions; "insure the safety of the children"; "the reciprocal of safety is risk" -14538811 26 n 01 biosafety 0 001 @ 14538472 n 0000 | safety from exposure to infectious agents -14538908 26 n 01 risklessness 0 002 @ 14538472 n 0000 + 02058529 a 0102 | safety as a consequence of entailing no risk -14539029 26 n 02 invulnerability 0 impregnability 0 002 @ 14538472 n 0000 + 02526124 a 0201 | having the strength to withstand attack -14539165 26 n 01 salvation 0 001 @ 14538472 n 0000 | the state of being saved or preserved from harm -14539268 26 n 01 security 0 006 @ 14538472 n 0000 + 02093888 a 0101 ! 14541677 n 0101 ~ 14539524 n 0000 ~ 14539693 n 0000 ~ 14539960 n 0000 | the state of being free from danger or injury; "we support the armed services in the name of national security" -14539524 26 n 02 peace 2 public_security 0 002 @ 14539268 n 0000 + 01647867 v 0101 | the general security of public places; "he was arrested for disturbing the peace" -14539693 26 n 01 secureness 0 003 @ 14539268 n 0000 + 02526124 a 0103 ! 14544159 n 0101 | the state of freedom from fear or danger -14539826 26 n 02 indemnity 1 insurance 0 003 @ 14539960 n 0000 + 02251065 v 0201 + 02251247 v 0101 | protection against future loss -14539960 26 n 02 protection 0 shelter 0 004 @ 14539268 n 0000 + 02656390 v 0201 ~ 14539826 n 0000 ~ 14540455 n 0000 | the condition of being protected; "they were huddled together for protection"; "he enjoyed a sense of peace and protection in his new home" -14540220 26 n 01 collective_security 0 001 @ 13970236 n 0000 | a system for international peace -14540318 26 n 01 Pax_Romana 0 001 @ 13970236 n 0000 | the Roman peace; the long period of peace enforced on states in the Roman Empire -14540455 26 n 01 radioprotection 0 001 @ 14539960 n 0000 | protection against harmful effects of radiation -14540564 26 n 02 cause_of_death 0 killer 0 003 @ 00007347 n 0000 + 01323958 v 0201 + 01325536 v 0201 | the causal agent resulting in death; "heart disease is the biggest killer in the United States" -14540765 26 n 01 danger 0 007 @ 13920835 n 0000 ! 14538472 n 0101 ~ 14541247 n 0000 ~ 14541538 n 0000 ~ 14541677 n 0000 ~ 14543552 n 0000 ~ 14543931 n 0000 | the condition of being susceptible to harm or injury; "you are in no danger"; "there was widespread danger of disease" -14541044 26 n 01 danger 1 005 @ 00007347 n 0000 + 02058794 a 0101 ~ 14541852 n 0000 ~ 14543145 n 0000 ~ 14543231 n 0000 | a cause of pain or injury or loss; "he feared the dangers of traveling by air" -14541247 26 n 01 clear_and_present_danger 0 001 @ 14540765 n 0000 | a standard for judging when freedom of speech can be abridged; "no one has a right to shout `fire' in a crowded theater when there is no fire because such an action would pose a clear and present danger to public safety" -14541538 26 n 02 hazardousness 0 perilousness 0 003 @ 14540765 n 0000 + 02060496 a 0202 + 02059811 a 0101 | the state of being dangerous -14541677 26 n 01 insecurity 0 005 @ 14540765 n 0000 + 02524443 a 0101 + 02094755 a 0101 ! 14539268 n 0101 ~ 14544159 n 0000 | the state of being subject to danger or injury -14541852 26 n 05 hazard 0 jeopardy 0 peril 0 risk 0 endangerment 0 016 @ 14541044 n 0000 + 02059811 a 0402 + 02545578 v 0401 + 02060496 a 0302 + 01036319 v 0305 + 02697120 v 0307 + 02697120 v 0202 + 02545272 v 0205 + 02697120 v 0203 + 02059811 a 0101 + 02545272 v 0102 + 02544348 v 0104 ~ 14542320 n 0000 ~ 14542579 n 0000 ~ 14542858 n 0000 ~ 14542983 n 0000 | a source of danger; a possibility of incurring loss or misfortune; "drinking alcohol is a health hazard" -14542320 26 n 01 health_hazard 0 002 @ 14541852 n 0000 ~ 14542441 n 0000 | hazard to the health of those exposed to it -14542441 26 n 01 biohazard 0 001 @ 14542320 n 0000 | hazard to humans or the environment resulting from biological agents or conditions -14542579 26 n 01 moral_hazard 0 002 @ 14541852 n 0000 ;c 06149484 n 0000 | (economics) the lack of any incentive to guard against a risk when you are protected against it (as by insurance); "insurance companies are exposed to a moral hazard if the insured party is not honest" -14542858 26 n 01 occupational_hazard 0 001 @ 14541852 n 0000 | any condition of a job that can result in illness or injury -14542983 26 n 01 sword_of_Damocles 0 001 @ 14541852 n 0000 | a constant and imminent peril; "the possibility hangs over their heads like the sword of Damocles" -14543145 26 n 01 powder_keg 0 001 @ 14541044 n 0000 | a potentially explosive state -14543231 26 n 02 menace 0 threat 0 003 @ 14541044 n 0000 + 02697120 v 0104 ~ 14543411 n 0000 | something that is a source of danger; "earthquakes are a constant threat in Japan" -14543411 26 n 01 yellow_peril 0 001 @ 14543231 n 0000 | the threat to Western civilization said to arise from the power of Asiatic peoples -14543552 26 n 02 riskiness 0 peril 1 007 @ 14540765 n 0000 + 02060496 a 0202 + 01036319 v 0205 + 02697120 v 0207 + 02274537 a 0102 + 02059811 a 0102 ~ 14543756 n 0000 | a state of danger involving risk -14543756 26 n 01 speculativeness 0 002 @ 14543552 n 0000 + 02274537 a 0104 | financial risk; "he rejected stocks that didn't pay dividends because of their speculativeness" -14543931 26 n 02 vulnerability 0 exposure 1 004 @ 14540765 n 0000 + 01036319 v 0202 + 02326482 a 0101 + 02363166 a 0101 | the state of being vulnerable or exposed; "his vulnerability to litigation"; "his exposure to ridicule" -14544159 26 n 01 insecureness 0 005 @ 14541677 n 0000 + 02524443 a 0101 + 02094755 a 0101 + 02093493 a 0101 ! 14539693 n 0101 | the state of being exposed to risk or anxiety -14544335 26 n 04 tension 1 tensity 1 tenseness 1 tautness 0 007 @ 13920835 n 0000 + 02405959 a 0401 + 02403206 a 0301 + 02403206 a 0201 + 00026153 v 0101 + 00025203 v 0101 ~ 14544672 n 0000 | the physical condition of being stretched or strained; "it places great tension on the leg muscles"; "he could feel the tenseness of her body" -14544672 26 n 03 tonicity 0 tonus 0 tone 2 011 @ 14544335 n 0000 ;c 05289057 n 0000 + 02816888 a 0301 + 00101277 v 0301 + 02816888 a 0101 ! 14545845 n 0101 ~ 14545045 n 0000 ~ 14545215 n 0000 ~ 14545353 n 0000 ~ 14576242 n 0000 ~ 14576468 n 0000 | the elastic tension of living muscles, arteries, etc. that facilitate response to stimuli; "the doctor tested my tonicity" -14545045 26 n 01 catatonia 1 003 @ 14544672 n 0000 #p 14399116 n 0000 + 03054551 a 0101 | extreme tonus; muscular rigidity; a common symptom in catatonic schizophrenia -14545215 26 n 02 muscular_tonus 0 muscle_tone 0 001 @ 14544672 n 0000 | normal tonicity of the muscles; "exercise improves muscle tone" -14545353 26 n 01 myotonia 0 004 @ 14544672 n 0000 + 03013300 a 0101 ~ 14545548 n 0000 ~ 14545685 n 0000 | abnormally long muscular contractions; slow relaxation of a muscle after a contraction -14545548 26 n 01 acromyotonia 0 001 @ 14545353 n 0000 | myotonia of the extremities only; causes spastic deformity of the hand or foot -14545685 26 n 02 myotonia_congenita 0 Thomsen's_disease 0 001 @ 14545353 n 0000 | a mild, rare, congenital form of myotonia characterized by muscle stiffness -14545845 26 n 04 atonicity 0 atony 0 atonia 0 amyotonia 0 005 @ 13920835 n 0000 + 02647358 a 0301 + 02647358 a 0201 + 02647358 a 0101 ! 14544672 n 0101 | lack of normal muscular tension or tonus -14546042 26 n 02 laxness 0 laxity 0 003 @ 13920835 n 0000 + 00638841 a 0101 + 02403671 a 0101 | the condition of being physiologically lax; "baths can help the laxness of the bowels" -14546227 26 n 02 condition 2 shape 0 002 @ 14049711 n 0000 ~ 14546432 n 0000 | the state of (good) health (especially in the phrases `in condition' or `in shape' or `out of condition' or `out of shape') -14546432 26 n 02 fitness 0 physical_fitness 0 003 @ 14546227 n 0000 ! 14547369 n 0101 ~ 14546596 n 0000 | good physical condition; being in shape or in condition -14546596 26 n 01 fettle 0 001 @ 14546432 n 0000 | a state of fitness and good health; "in fine fettle" -14546701 26 n 01 repair 0 001 @ 13920835 n 0000 | a formal way of referring to the condition of something; "the building was in good repair" -14546844 26 n 01 soundness 0 006 @ 13920835 n 0000 + 02275209 a 0101 + 02273326 a 0101 ! 14560360 n 0101 ~ 14547036 n 0000 ~ 14547188 n 0000 | a state or condition free from damage or decay -14547036 26 n 02 seaworthiness 0 fitness 2 004 @ 14546844 n 0000 + 02087956 a 0101 = 02087956 a 0000 = 02088086 a 0000 | fitness to traverse the seas -14547188 26 n 01 airworthiness 0 004 @ 14546844 n 0000 + 02088198 a 0101 = 02088198 a 0000 = 02088314 a 0000 | fitness to fly; "the plane received a certificate of airworthiness" -14547369 26 n 02 unfitness 0 softness 1 007 @ 14052046 n 0000 + 01019713 a 0201 + 01174222 a 0102 + 01017738 a 0101 ! 14546432 n 0101 ~ 14547643 n 0000 ~ 14548343 n 0000 | poor physical condition; being out of shape or out of condition (as from a life of ease and luxury) -14547643 26 n 06 infirmity 0 frailty 0 debility 0 feebleness 0 frailness 0 valetudinarianism 0 009 @ 14547369 n 0000 + 02040049 a 0501 + 01827766 a 0401 + 02040233 a 0403 + 02040233 a 0302 + 00389638 v 0302 + 02040233 a 0104 ~ 14547976 n 0000 ~ 14548105 n 0000 | the state of being weak in health or body (especially from old age) -14547976 26 n 02 asthenia 0 astheny 0 003 @ 14547643 n 0000 + 02324944 a 0202 + 02324944 a 0102 | an abnormal loss of strength -14548105 26 n 03 cachexia 0 cachexy 0 wasting 1 004 @ 14547643 n 0000 + 00389406 v 0301 + 02672591 a 0201 + 02672591 a 0101 | any general reduction in vitality and strength of body and mind resulting from a debilitating chronic disease -14548343 26 n 04 disability 0 disablement 0 handicap 0 impairment 0 020 @ 14547369 n 0000 + 00091968 v 0304 + 00512186 v 0201 + 00091968 v 0201 + 01019283 a 0101 ~ 05561834 n 0000 ~ 14056588 n 0000 ~ 14099785 n 0000 ~ 14548913 n 0000 ~ 14550366 n 0000 ~ 14550469 n 0000 ~ 14550797 n 0000 ~ 14552355 n 0000 ~ 14552802 n 0000 ~ 14559208 n 0000 ~ 14559852 n 0000 ~ 14559983 n 0000 ~ 14560115 n 0000 ~ 14560253 n 0000 ~ 14561461 n 0000 | the condition of being unable to perform as a consequence of physical or mental unfitness; "reading disability"; "hearing impairment" -14548913 26 n 01 disability_of_walking 0 003 @ 14548343 n 0000 ~ 14549070 n 0000 ~ 14549937 n 0000 | a disability that interferes with or prevents walking -14549070 26 n 01 abasia 0 009 @ 14548913 n 0000 + 02598608 a 0102 + 02598608 a 0101 ~ 14549284 n 0000 ~ 14549382 n 0000 ~ 14549491 n 0000 ~ 14549600 n 0000 ~ 14549709 n 0000 ~ 14549823 n 0000 | inability to walk -14549284 26 n 01 abasia_trepidans 0 001 @ 14549070 n 0000 | abasia due to trembling of the legs -14549382 26 n 02 atactic_abasia 0 ataxic_abasia 0 001 @ 14549070 n 0000 | abasia due to ataxia of the legs -14549491 26 n 01 choreic_abasia 0 001 @ 14549070 n 0000 | abasia related to abnormal movements of the legs -14549600 26 n 01 paralytic_abasia 0 001 @ 14549070 n 0000 | abasia related to paralysis of the leg muscles -14549709 26 n 01 paroxysmal_trepidant_abasia 0 001 @ 14549070 n 0000 | abasia related to spasticity of the legs -14549823 26 n 01 spastic_abasia 0 001 @ 14549070 n 0000 | abasia due to spastic contractions of the leg muscles -14549937 26 n 06 lameness 0 limping 0 gimp 0 gimpiness 0 gameness 0 claudication 0 006 @ 14548913 n 0000 + 01018788 a 0506 + 01018788 a 0405 + 01917244 v 0302 + 01018788 a 0104 ~ 14550195 n 0000 | disability of walking due to crippling of the legs or feet -14550195 26 n 01 intermittent_claudication 0 001 @ 14549937 n 0000 | lameness due to pain in leg muscles because the blood supply is inadequate; pain subsides with rest -14550366 26 n 01 astasia 0 001 @ 14548343 n 0000 | inability to stand due to muscular incoordination -14550469 26 n 01 amputation 0 002 @ 14548343 n 0000 + 01254692 v 0101 | a condition of disability resulting from the loss of one or more limbs -14550614 26 n 01 sequela 0 001 @ 14501726 n 0000 | any abnormality following or resulting from a disease or injury or treatment; "paralysis is one of the sequelae of poliomyelitis" -14550797 26 n 02 hearing_impairment 0 hearing_disorder 0 005 @ 14548343 n 0000 ~ 14550987 n 0000 ~ 14551146 n 0000 ~ 14551321 n 0000 ~ 14551565 n 0000 | impairment of the sense of hearing -14550987 26 n 02 deafness 0 hearing_loss 0 004 @ 14550797 n 0000 + 00681930 a 0101 ~ 14551704 n 0000 ~ 14551822 n 0000 | partial or complete loss of hearing -14551146 26 n 03 conductive_hearing_loss 0 conduction_deafness 0 middle-ear_deafness 0 001 @ 14550797 n 0000 | hearing loss due to problems with the bones of the middle ear -14551321 26 n 03 hyperacusis 0 hyperacusia 0 auditory_hyperesthesia 0 001 @ 14550797 n 0000 | abnormal acuteness of hearing due to increased irritability of the sensory neural mechanism; characterized by intolerance for ordinary sound levels -14551565 26 n 02 sensorineural_hearing_loss 0 nerve_deafness 0 001 @ 14550797 n 0000 | hearing loss due to failure of the auditory nerve -14551704 26 n 02 tone_deafness 0 tin_ear 0 001 @ 14550987 n 0000 | an inability to distinguish differences in pitch -14551822 26 n 02 deaf-mutism 0 deaf-muteness 0 003 @ 14550987 n 0000 @ 14551986 n 0000 + 00682168 a 0202 | congenital deafness that results in inability to speak -14551986 26 n 02 mutism 0 muteness 0 004 @ 13920835 n 0000 + 00151855 a 0202 + 00152285 a 0201 ~ 14551822 n 0000 | the condition of being unable or unwilling to speak; "her muteness was a consequence of her deafness" -14552205 26 n 01 analgesia 0 003 @ 14034177 n 0000 + 01341490 a 0102 + 01341490 a 0101 | absence of the sense of pain without loss of consciousness -14552355 26 n 01 dysomia 0 003 @ 14548343 n 0000 ~ 14552477 n 0000 ~ 14552718 n 0000 | impairment of the sense of smell -14552477 26 n 01 anosmia 0 004 @ 14552355 n 0000 + 01274524 a 0101 + 02627612 a 0101 + 02627612 a 0102 | absence of the sense of smell (as by damage to olfactory nasal tissue or the olfactory nerve or by obstruction of the nasal passages) -14552718 26 n 01 hyposmia 0 001 @ 14552355 n 0000 | lessened sensitivity to odors -14552802 26 n 04 visual_impairment 0 visual_defect 0 vision_defect 0 visual_disorder 0 020 @ 14548343 n 0000 ~ 14096412 n 0000 ~ 14096598 n 0000 ~ 14096724 n 0000 ~ 14097162 n 0000 ~ 14097321 n 0000 ~ 14097432 n 0000 ~ 14126660 n 0000 ~ 14153010 n 0000 ~ 14153285 n 0000 ~ 14554345 n 0000 ~ 14554459 n 0000 ~ 14554591 n 0000 ~ 14554695 n 0000 ~ 14554853 n 0000 ~ 14555059 n 0000 ~ 14555962 n 0000 ~ 14556203 n 0000 ~ 14557091 n 0000 ~ 14574192 n 0000 | impairment of the sense of sight -14553290 26 n 03 myopia 0 nearsightedness 0 shortsightedness 0 006 @ 14096724 n 0000 ;c 06054446 n 0000 + 02157226 a 0302 + 02157226 a 0201 + 02157226 a 0103 ! 14554011 n 0101 | (ophthalmology) eyesight abnormality resulting from the eye's faulty refractive ability; distant objects appear blurred -14553590 26 n 02 astigmatism 2 astigmia 2 006 @ 14096724 n 0000 ;c 06054446 n 0000 + 00108698 a 0201 + 00108698 a 0101 ~ 14104118 n 0000 ~ 14104218 n 0000 | (ophthalmology) impaired eyesight resulting usually from irregular conformation of the cornea; common in nearsighted people -14553873 26 n 01 anopia 0 001 @ 14126660 n 0000 | sightlessness (especially because of a structural defect in or the absence of an eye) -14554011 26 n 05 hyperopia 0 hypermetropia 0 hypermetropy 0 farsightedness 0 longsightedness 0 008 @ 14096724 n 0000 + 02157594 a 0504 + 02157399 a 0401 + 02157747 a 0302 + 02157747 a 0202 + 02157747 a 0101 ! 14553290 n 0101 ~ 14555214 n 0000 | abnormal condition in which vision for distant objects is better than for near objects -14554345 26 n 02 hemeralopia 0 day_blindness 0 001 @ 14552802 n 0000 | inability to see clearly in bright light -14554459 26 n 02 hemianopia 0 hemianopsia 0 001 @ 14552802 n 0000 | blindness in one half of the visual field of one or both eyes -14554591 26 n 01 quadrantanopia 0 001 @ 14552802 n 0000 | blindness in one fourth of the visual field -14554695 26 n 01 metamorphopsia 0 001 @ 14552802 n 0000 | a defect of vision in which objects appear to be distorted; usually due to a defect in the retina -14554853 26 n 03 nyctalopia 0 night_blindness 0 moon_blindness 1 002 @ 14552802 n 0000 @ 14198576 n 0000 | inability to see clearly in dim light; due to a deficiency of vitamin A or to a retinal disorder -14555059 26 n 01 photoretinitis 0 001 @ 14552802 n 0000 | damage to the retina resulting from exposure of the eye to the sun without adequate protection -14555214 26 n 02 presbyopia 0 farsightedness 1 002 @ 14554011 n 0000 + 02157399 a 0102 | a reduced ability to focus on near objects caused by loss of elasticity of the crystalline lens after age 45 -14555414 26 n 01 eye_condition 0 003 @ 13920835 n 0000 ~ 14555560 n 0000 ~ 14555688 n 0000 | the condition of the optical properties of the eye -14555560 26 n 01 anisometropia 0 002 @ 14555414 n 0000 + 02625007 a 0101 | difference in the refractive power of the two eyes -14555688 26 n 01 isometropia 0 001 @ 14555414 n 0000 | equality of refractive power in the two eyes -14555790 26 n 02 snowblindness 0 snow-blindness 0 002 @ 14126660 n 0000 + 02160465 a 0101 | temporary blindness caused by exposure to sunlight reflected from snow or ice -14555962 26 n 03 retinal_detachment 0 detachment_of_the_retina 0 detached_retina 0 001 @ 14552802 n 0000 | visual impairment resulting from the retina becoming separated from the choroid in the back of the eye; treated by photocoagulation -14556203 26 n 01 scotoma 0 007 @ 14552802 n 0000 + 03115598 a 0101 ~ 14556426 n 0000 ~ 14556552 n 0000 ~ 14556656 n 0000 ~ 14556765 n 0000 ~ 14556879 n 0000 | an isolated area of diminished vision within the visual field -14556426 26 n 01 annular_scotoma 0 001 @ 14556203 n 0000 | a circular scotoma surrounding the center of the field of vision -14556552 26 n 01 central_scotoma 0 001 @ 14556203 n 0000 | a scotoma that involves the fixation point -14556656 26 n 01 hemianopic_scotoma 0 001 @ 14556203 n 0000 | a scotoma involving half of the visual field -14556765 26 n 01 paracentral_scotoma 0 001 @ 14556203 n 0000 | a scotoma that is adjacent to the fixation point -14556879 26 n 02 scintillating_scotoma 0 flittering_scotoma 0 001 @ 14556203 n 0000 | a localized area of diminished vision edged by shimmering colored lights; in many people it indicates the onset of migraine -14557091 26 n 01 tunnel_vision 0 001 @ 14552802 n 0000 | visual impairment involving a loss of peripheral vision -14557206 26 n 01 eyelessness 0 002 @ 14126660 n 0000 + 02160135 a 0101 | blindness due to loss of the eyes -14557315 26 n 01 figural_blindness 0 001 @ 14126660 n 0000 | inability to see shapes and contours -14557415 26 n 02 strabismus 0 squint 0 004 @ 14501726 n 0000 + 02168070 v 0201 ~ 14506233 n 0000 ~ 14557573 n 0000 | abnormal alignment of one or both eyes -14557573 26 n 03 walleye 0 divergent_strabismus 0 exotropia 0 001 @ 14557415 n 0000 | strabismus in which one or both eyes are directed outward -14557719 26 n 02 torticollis 0 wryneck 0 001 @ 14501726 n 0000 | an unnatural condition in which the head leans to one side because the neck muscles on that side are contracted -14557898 26 n 02 dysfunction 0 disfunction 0 005 @ 14204950 n 0000 ;c 06043075 n 0000 + 01275057 a 0101 ~ 14045141 n 0000 ~ 14558226 n 0000 | (medicine) any disturbance in the functioning of an organ or body part or a disturbance in the functioning of a social group; "erectile dysfunction"; "sexual relationship dysfunction" -14558226 26 n 02 paralysis 0 palsy 0 016 @ 14557898 n 0000 + 00268680 v 0201 + 02545989 a 0101 + 03096448 a 0101 + 03096448 a 0102 ~ 14085474 n 0000 ~ 14085592 n 0000 ~ 14086036 n 0000 ~ 14087208 n 0000 ~ 14090842 n 0000 ~ 14350023 n 0000 ~ 14351219 n 0000 ~ 14558599 n 0000 ~ 14559495 n 0000 ~ 14559644 n 0000 ~ 14559757 n 0000 | loss of the ability to move a body part -14558599 26 n 01 paresis 0 002 @ 14558226 n 0000 ~ 14558700 n 0000 | a slight or partial paralysis -14558700 26 n 01 paraparesis 0 001 @ 14558599 n 0000 | a slight paralysis or weakness of both legs -14558801 26 n 02 metroptosis 0 descensus_uteri 0 001 @ 14559208 n 0000 | prolapse of the uterus -14558899 26 n 02 nephroptosis 0 nephroptosia 0 001 @ 14559208 n 0000 | prolapse of the kidney -14558995 26 n 01 ptosis 0 002 @ 14559208 n 0000 ~ 14559134 n 0000 | drooping of the upper eyelid caused by muscle paralysis and weakness -14559134 26 n 01 brow_ptosis 0 001 @ 14558995 n 0000 | sagging eyebrows -14559208 26 n 03 prolapse 0 prolapsus 0 descensus 0 009 @ 14548343 n 0000 + 01833906 v 0101 ~ 14093591 n 0000 ~ 14174208 n 0000 ~ 14558801 n 0000 ~ 14558899 n 0000 ~ 14558995 n 0000 ~ 14572637 n 0000 ~ 14572854 n 0000 | the slipping or falling out of place of an organ (as the uterus) -14559495 26 n 01 paraplegia 0 002 @ 14558226 n 0000 + 02546116 a 0101 | paralysis of the lower half of the body (most often as a result of trauma) -14559644 26 n 02 hemiplegia 0 unilateral_paralysis 0 001 @ 14558226 n 0000 | paralysis of one side of the body -14559757 26 n 01 quadriplegia 0 001 @ 14558226 n 0000 | paralysis of both arms and both legs -14559852 26 n 02 hypoesthesia 0 hypesthesia 0 001 @ 14548343 n 0000 | impairment of tactile sensitivity; decrease of sensitivity -14559983 26 n 03 knock-knee 0 genu_valgum 0 tibia_valga 0 002 #p 05560787 n 0000 @ 14548343 n 0000 | an inward slant of the thigh -14560115 26 n 01 pigeon_toes 0 001 @ 14548343 n 0000 | disability in which the toes are turned inward; often associated with knock-knee -14560253 26 n 03 bow_leg 0 bow_legs 0 bandy_legs 0 001 @ 14548343 n 0000 | outward curvature of the legs -14560360 26 n 01 unsoundness 0 006 @ 13920835 n 0000 + 02275629 a 0101 + 02274253 a 0101 ! 14546844 n 0101 ~ 14560538 n 0000 ~ 14560612 n 0000 | a condition of damage or decay -14560538 26 n 01 disrepair 0 001 @ 14560360 n 0000 | in need of repairs -14560612 26 n 01 decay 0 006 @ 14560360 n 0000 + 00208836 v 0101 ~ 14560926 n 0000 ~ 14561327 n 0000 ~ 14561618 n 0000 ~ 14561839 n 0000 | an inferior state resulting from the process of decaying; "the corpse was in an advanced state of decay"; "the house had fallen into a serious state of decay and disrepair" -14560926 26 n 02 putrefaction 0 rot 0 004 @ 14560612 n 0000 + 00209837 v 0202 + 00399553 v 0101 ~ 14561102 n 0000 | a state of decay usually accompanied by an offensive odor -14561102 26 n 04 putrescence 0 putridness 0 rottenness 0 corruption 0 006 @ 14560926 n 0000 + 02275892 a 0302 + 01070538 a 0301 + 01070844 a 0201 + 01071049 a 0101 + 02786315 a 0201 | in a state of progressive putrefaction -14561327 26 n 02 decomposition 0 disintegration 0 003 @ 14560612 n 0000 + 00397576 v 0201 ~ 13993517 n 0000 | in a decomposed state -14561461 26 n 01 disintegration 1 001 @ 14548343 n 0000 | a loss (or serious disruption) of organization in some system; "a disintegration of personality" -14561618 26 n 02 deterioration 0 impairment 1 007 @ 14560612 n 0000 + 00208497 v 0101 + 00092293 v 0102 ~ 14561995 n 0000 ~ 14562142 n 0000 ~ 14562541 n 0000 ~ 14562683 n 0000 | a symptom of reduced quality or strength -14561839 26 n 01 rancidity 0 002 @ 14560612 n 0000 + 01054922 a 0102 | the state of being rancid; having a rancid scent or flavor (as of old cooking oil) -14561995 26 n 01 corrosion 0 002 @ 14561618 n 0000 + 00273963 v 0101 | a state of deterioration in metals caused by oxidation or chemical action -14562142 26 n 02 devastation 0 desolation 0 005 @ 14561618 n 0000 + 00388635 v 0204 + 00388635 v 0103 ~ 14562324 n 0000 ~ 14562854 n 0000 | the state of being decayed or destroyed -14562324 26 n 02 ruin 0 ruination 0 004 @ 14562142 n 0000 + 01566490 v 0201 + 01161635 a 0102 + 01564144 v 0102 | an irrecoverable state of devastation and destruction; "you have brought ruin on this entire family" -14562541 26 n 02 decrepitude 0 dilapidation 0 002 @ 14561618 n 0000 + 01662434 v 0201 | a state of deterioration due to old age or long use -14562683 26 n 01 wear 0 004 @ 14561618 n 0000 + 01369346 v 0102 + 00469382 v 0101 + 00075021 v 0104 | impairment resulting from long use; "the tires showed uneven wear" -14562854 26 n 01 blight 0 002 @ 14562142 n 0000 + 02771320 v 0101 | a state or condition being blighted -14562960 26 n 03 end 0 destruction 0 death 1 006 @ 00024720 n 0000 + 00354845 v 0301 + 01620854 v 0101 + 02735418 v 0101 + 00352826 v 0101 + 02609764 v 0101 | a final state; "he came to a bad end"; "the so-called glorious experiment came to an inglorious end" -14563222 26 n 01 foulness 1 002 @ 14563564 n 0000 + 00957743 a 0103 | disgusting wickedness and immorality; "he understood the foulness of sin"; "his display of foulness deserved severe punishment"; "mouths which speak such foulness must be cleansed" -14563475 26 n 01 impropriety 0 001 @ 13920835 n 0000 | the condition of being improper -14563564 26 n 04 iniquity 0 wickedness 0 darkness 1 dark 1 005 @ 13920835 n 0000 + 01131935 a 0402 + 01131935 a 0302 + 02513740 a 0201 ~ 14563222 n 0000 | absence of moral or spiritual values; "the powers of darkness" -14563784 26 n 02 light 1 illumination 1 001 @ 13920835 n 0000 | a condition of spiritual awareness; divine illumination; "follow God's light" -14563928 26 n 01 malady 1 001 @ 13920835 n 0000 | any unwholesome or desperate condition; "what maladies afflict our nation?" -14564056 26 n 02 revocation 0 annulment 0 001 @ 00024720 n 0000 | the state of being cancelled or annulled -14564165 26 n 01 merchantability 0 002 @ 00024720 n 0000 ~ 14564306 n 0000 | the state of being fit for market; ready to be bought or sold -14564306 26 n 01 sale 0 001 @ 14564165 n 0000 | the state of being purchasable; offered or exhibited for selling; "you'll find vitamin C for sale at most pharmacies"; "the new line of cars will soon be on sale" -14564519 26 n 01 urinary_hesitancy 0 001 @ 14408086 n 0000 | difficulty in beginning the flow of urine; associated with prostate enlargement in men and with narrowing of the urethral opening in women; may be caused by emotional stress in either men or women -14564779 26 n 01 wall 0 001 @ 14408086 n 0000 | a difficult or awkward situation; "his back was to the wall"; "competition was pushing them to the wall" -14564934 26 n 01 sarcoidosis 0 001 @ 14204950 n 0000 | a chronic disease of unknown cause marked by the formation of nodules in the lungs and liver and lymph glands and salivary glands -14565121 26 n 01 morphea 0 001 @ 14565196 n 0000 | localized scleroderma -14565196 26 n 02 scleroderma 0 dermatosclerosis 0 002 @ 14187378 n 0000 ~ 14565121 n 0000 | an autoimmune disease that affects the blood vessels and connective tissue; fibrous connective tissue is deposited in the skin -14565417 26 n 04 thrombocytopenic_purpura 0 idiopathic_thrombocytopenic_purpura 0 purpura_hemorrhagica 0 Werlhof's_disease 0 002 @ 14197468 n 0000 @ 14187378 n 0000 | purpura associated with a reduction in circulating blood platelets which can result from a variety of factors -14565696 26 n 01 sex-linked_disorder 0 003 @ 14504103 n 0000 ~ 14170337 n 0000 ~ 14565927 n 0000 | any disease or abnormality that is determined by the sex hormones; "hemophilia is determined by a gene defect on an X chromosome" -14565927 26 n 01 Turner's_syndrome 0 001 @ 14565696 n 0000 | a chromosomal disorder in females who have only one X chromosome; marked by dwarfism and heart abnormalities and underdeveloped sex organs -14566129 26 n 01 urinary_tract_infection 0 004 @ 14171682 n 0000 ~ 14188702 n 0000 ~ 14566308 n 0000 ~ 14567421 n 0000 | any infection of any of the organs of the urinary tract -14566308 26 n 01 pyelonephritis 0 003 @ 14566129 n 0000 ~ 14566476 n 0000 ~ 14566766 n 0000 | inflammation of the kidney and its pelvis caused by bacterial infection -14566476 26 n 01 acute_pyelonephritis 0 001 @ 14566308 n 0000 | pyelonephritis resulting from the spread of a bladder infection -14566606 26 n 02 carotenemia 0 xanthemia 0 001 @ 14204950 n 0000 | excess carotene in the blood stream; can cause the skin to turn a pale yellow or red color -14566766 26 n 01 chronic_pyelonephritis 0 001 @ 14566308 n 0000 | pyelonephritis that develops slowly and can lead to renal failure if untreated; often associated with a kidney stone or with narrowing of the urinary passageways -14566996 26 n 02 nongonococcal_urethritis 0 NGU 0 001 @ 14567421 n 0000 | sexually transmitted urethritis (usually caused by chlamydia) -14567134 26 n 01 rhinorrhea 0 002 @ 14299637 n 0000 #p 14145501 n 0000 | persistent watery mucus discharge from the nose (as in the common cold) -14567281 26 n 01 rhinosporidiosis 0 002 @ 14176895 n 0000 @ 14396890 n 0000 | fungal infection of the nose; often acquired while swimming -14567421 26 n 01 urethritis 0 003 @ 14566129 n 0000 ~ 14566996 n 0000 ~ 14567571 n 0000 | inflammation of the urethra; results in painful urination -14567571 26 n 02 nonspecific_urethritis 0 NSU 0 001 @ 14567421 n 0000 | inflammation of the urethra of unknown cause -14567690 26 n 02 sodoku 0 spirillum_fever 0 001 @ 14140533 n 0000 | the form of ratbite fever occurring in the Far East -14567812 26 n 01 stasis 1 001 @ 14204950 n 0000 | an abnormal state in which the normal flow of a liquid (such as blood) is slowed or stopped -14567956 26 n 01 steatorrhea 0 001 @ 14299637 n 0000 | the presence of greater than normal amounts of fat in the feces which are frothy and foul smelling and floating; a symptom of disorders of fat metabolism and malabsorption syndrome -14568194 26 n 01 stridor 0 001 @ 14299637 n 0000 | a whistling sound when breathing (usually heard on inspiration); indicates obstruction of the trachea or larynx -14568359 26 n 01 tinnitus 0 001 @ 14299637 n 0000 | a ringing or booming sensation in one or both ears; a symptom of an ear infection or Meniere's disease -14568516 26 n 01 climax 0 002 @ 13939892 n 0000 + 02487718 a 0101 | the most severe stage of a disease -14568621 26 n 01 serration 0 002 @ 13920835 n 0000 + 01255807 v 0101 | the condition of being serrated; "the serrations of a city skyline" -14568762 26 n 01 turgor 0 002 @ 00024720 n 0000 ;c 06037666 n 0000 | (biology) the normal rigid state of fullness of a cell or blood vessel or capillary resulting from pressure of the contents against the wall or membrane -14568986 26 n 01 shin_splints 0 001 @ 14336539 n 0000 | painful inflammation of the muscles around the shins; frequent among runners -14569121 26 n 02 hepatolenticular_degeneration 0 Wilson's_disease 0 001 @ 14151139 n 0000 | a rare inherited disorder of copper metabolism; copper accumulates in the liver and then in the red blood cells and brain -14569337 26 n 01 homozygosity 0 003 @ 00024720 n 0000 + 01200705 a 0101 ! 14569508 n 0101 | the state of being homozygous; having two identical alleles of the same gene -14569508 26 n 01 heterozygosity 0 003 @ 00024720 n 0000 + 01200915 a 0101 ! 14569337 n 0101 | the state of being heterozygous; having two different alleles of the same gene -14569683 26 n 01 neotony 0 002 @ 00024720 n 0000 + 02768421 a 0102 | the state resulting when juvenile characteristics are retained by the adults of a species -14569844 26 n 01 plurality 0 002 @ 00024720 n 0000 + 02182979 a 0101 | the state of being plural; "to mark plurality, one language may add an extra syllable to the word whereas another may simply change the vowel in the existing final syllable" -14570091 26 n 02 polyvalence 1 polyvalency 1 004 @ 00024720 n 0000 ;c 06064462 n 0000 + 01547961 a 0201 + 01547961 a 0101 | (toxicology) the state of being capable of counteracting more than one toxin or antigen or kind of microorganism -14570330 26 n 04 polyvalence 0 polyvalency 0 multivalence 0 multivalency 0 006 @ 00024720 n 0000 ;c 06084469 n 0000 + 01546349 a 0402 + 01546349 a 0302 + 01546349 a 0201 + 01546349 a 0101 | (chemistry) the state of having a valence greater than two -14570581 26 n 01 amphidiploidy 0 001 @ 13920429 n 0000 | the condition of being amphidiploid -14570676 26 n 01 diploidy 0 001 @ 13920429 n 0000 | the condition of being diploid -14570761 26 n 01 haploidy 0 001 @ 13920429 n 0000 | the condition of being haploid -14570846 26 n 01 heteroploidy 0 001 @ 13920429 n 0000 | the condition of being heteroploid -14570939 26 n 01 polyploidy 0 001 @ 13920429 n 0000 | the condition of being polyploid -14571028 26 n 01 mosaicism 0 001 @ 13920429 n 0000 | the condition in which an organism has two or more cell populations that differ in genetic makeup -14571181 26 n 02 orphanage 0 orphanhood 0 002 @ 13920429 n 0000 + 02315277 v 0101 | the condition of being a child without living parents; "his early orphanage shaped his character as an adult" -14571377 26 n 01 kraurosis 0 002 @ 14365741 n 0000 ~ 14571504 n 0000 | atrophy and shriveling of the skin or mucous membrane -14571504 26 n 01 kraurosis_vulvae 0 001 @ 14571377 n 0000 | kraurosis of the vulva; often a precancerous lesion -14571618 26 n 01 oligospermia 0 001 @ 14034177 n 0000 | insufficient spermatozoa in the semen -14571714 26 n 01 tenesmus 0 001 @ 14360459 n 0000 | painful spasm of the anal sphincter along with an urgent desire to defecate without the significant production of feces; associated with irritable bowel syndrome -14571930 26 n 01 stigmatism 1 003 @ 13920429 n 0000 + 03120454 a 0101 + 10656488 n 0102 | the condition of having or being marked by stigmata -14572074 26 n 01 transsexualism 0 001 @ 13920429 n 0000 | condition in which a person assumes the identity and permanently acts the part of the gender opposite to his or her biological sex -14572265 26 n 01 trismus 0 001 @ 14360459 n 0000 | prolonged spasm of the jaw muscles -14572353 26 n 01 uratemia 0 002 @ 14189204 n 0000 @ 14299637 n 0000 | presence of abnormal amounts of uric acid salts in the blood; symptom of gout -14572503 26 n 01 uraturia 0 001 @ 14299637 n 0000 | presence of abnormally large amounts of uric acid in the urine; symptom of gout -14572637 26 n 01 ureterocele 0 001 @ 14559208 n 0000 | prolapse of the end of the ureter into the bladder; may obstruct urine flow -14572770 26 n 01 ureterostenosis 0 001 @ 14107374 n 0000 | stenosis of the ureter -14572854 26 n 01 urethrocele 0 001 @ 14559208 n 0000 | prolapse of the urethra into the vagina -14572951 26 n 01 uricaciduria 0 002 @ 14189204 n 0000 @ 14299637 n 0000 | presence of abnormal amounts of uric acid in the urine; symptom of gout -14573099 26 n 01 urocele 0 001 @ 13478813 n 0000 | extravasation of urine into the scrotal sac -14573196 26 n 01 uropathy 0 002 @ 14204950 n 0000 ~ 14113228 n 0000 | any pathology of the urinary tract -14573303 26 n 01 varicocele 0 001 @ 14063633 n 0000 | dilatation of the veins associated with the spermatic cord in the testes -14573432 26 n 01 varicosis 0 001 @ 14204950 n 0000 | pathological condition of being varicose or having varicose veins -14573553 26 n 01 varicosity 0 003 @ 14573713 n 0000 + 01178458 a 0101 ~ 05421586 n 0000 | varix or varicose condition in which a vein is swollen and tortuous -14573713 26 n 01 varix 0 002 @ 14501726 n 0000 ~ 14573553 n 0000 | abnormally enlarged or twisted blood vessel or lymphatic vessel -14573846 26 n 02 viremia 0 viraemia 0 001 @ 14204950 n 0000 | the presence of a virus in the blood stream; "viremia spread the smallpox virus to the internal organs" -14574014 26 n 01 volvulus 0 001 @ 14204950 n 0000 | abnormal twisting of the intestines (usually in the area of the ileum or sigmoid colon) resulting in intestinal obstruction -14574192 26 n 01 xanthopsia 0 001 @ 14552802 n 0000 | visual defect in which objects appear to have a yellowish hue; sometimes occurs in cases of jaundice -14574349 26 n 01 absolution 0 002 @ 13920835 n 0000 + 00903711 v 0102 | the condition of being formally forgiven by a priest in the sacrament of penance -14574504 26 n 01 automation 0 002 @ 13920835 n 0000 + 00479932 v 0103 | the condition of being automatically operated or controlled; "automation increases productivity" -14574675 26 n 02 brutalization 0 brutalisation 0 003 @ 13920835 n 0000 + 02515934 v 0202 + 02515934 v 0101 | the condition of being treated in a cruel and savage manner -14574846 26 n 01 condemnation 0 005 @ 13920835 n 0000 + 02149302 v 0101 + 00856578 v 0101 + 00906735 v 0102 + 00864159 v 0101 | the condition of being strongly disapproved of; "he deserved nothing but condemnation" -14575063 26 n 01 deification 0 002 @ 13920835 n 0000 + 00693401 v 0101 | the condition of being treated like a god -14575180 26 n 01 diversification 0 004 @ 13920835 n 0000 + 00436668 v 0101 + 00437125 v 0101 + 00436404 v 0101 | the condition of being varied; "that restaurant's menu lacks diversification; every day it is the same" -14575399 26 n 01 exoneration 0 002 @ 13920835 n 0000 + 00904046 v 0105 | the condition of being relieved from blame or obligation -14575531 26 n 01 facilitation 0 002 @ 13920835 n 0000 + 00518395 v 0101 | the condition of being made easy (or easier); "social facilitation is an adaptive condition" -14575700 26 n 01 frizz 0 002 @ 13920835 n 0000 + 01030372 a 0103 | the condition of being formed into small tight curls; "her hair was in a frizz" -14575849 26 n 01 fruition 0 002 @ 13920835 n 0000 + 01652731 v 0101 | the condition of bearing fruit -14575952 26 n 01 hiding 0 001 @ 14416089 n 0000 | the state of being hidden; "he went into hiding" -14576053 26 n 01 hospitalization 0 002 @ 13920835 n 0000 + 02348927 v 0101 | the condition of being treated as a patient in a hospital; "he hoped to avoid the expense of hospitalization" -14576242 26 n 03 hypertonia 0 hypertonus 0 hypertonicity 0 006 @ 14544672 n 0000 ! 14576468 n 0303 + 02408293 a 0201 ! 14576468 n 0202 + 02408293 a 0101 ! 14576468 n 0101 | (of muscular tissue) the state of being hypertonic -14576468 26 n 03 hypotonia 0 hypotonus 0 hypotonicity 0 006 @ 14544672 n 0000 + 02408470 a 0301 ! 14576242 n 0303 ! 14576242 n 0202 + 02408470 a 0101 ! 14576242 n 0101 | (of muscular tissue) the state of being hypotonic -14576690 26 n 01 hypertonicity 1 002 @ 11496881 n 0000 ! 14576860 n 0101 | (of a solution) the extent to which a solution has a higher osmotic pressure than some other -14576860 26 n 01 hypotonicity 1 003 @ 11496881 n 0000 + 00895276 a 0101 ! 14576690 n 0101 | (of a solution) the extent to which a solution has a lower osmotic pressure than some other -14577046 26 n 01 identification 0 003 @ 13920835 n 0000 + 01026095 v 0102 + 00618878 v 0101 | the condition of having the identity (of a person or object) established; "the thief's identification was followed quickly by his arrest"; "identification of the gun was an important clue" -14577331 26 n 01 impaction 2 002 @ 13920835 n 0000 + 01343482 v 0101 | the condition of being pressed closely together and firmly fixed -14577469 26 n 02 ionization 0 ionisation 0 005 @ 13920835 n 0000 + 00267041 v 0202 + 00266798 v 0202 + 00267041 v 0101 + 00266798 v 0101 | the condition of being dissociated into ions (as by heat or radiation or chemical reaction or electrical discharge); "the ionization of a gas" -14577753 26 n 01 irradiation 0 002 @ 13920835 n 0000 + 00291444 v 0101 | the condition of being exposed to radiation -14577872 26 n 01 leakiness 0 002 @ 13920835 n 0000 + 01397385 a 0101 | the condition of permitting leaks or leakage; "the leakiness of the roof"; "the heart valve's leakiness"; "the leakiness of the boat made it dangerous to use" -14578104 26 n 01 lubrication 0 004 @ 13920835 n 0000 + 02751597 v 0101 + 01484982 v 0101 + 00219012 v 0101 | the condition of having been made smooth or slippery by the application of a lubricant -14578302 26 n 02 mechanization 0 mechanisation 0 003 @ 13920835 n 0000 + 00479598 v 0202 + 00479598 v 0101 | the condition of having a highly technical implementation -14578471 26 n 01 motivation 0 003 @ 13920835 n 0000 + 02766328 a 0101 + 01649999 v 0101 | the condition of being motivated; "his motivation was at a high level" -14578634 26 n 01 mummification 0 002 @ 13920835 n 0000 + 02680358 v 0101 | a condition resembling that of a mummy; "bureaucratic mummification in red tape" -14578792 26 n 01 paternity 0 002 @ 00024720 n 0000 + 01734436 a 0101 | the state of being a father; "tests were conducted to determine paternity" -14578940 26 n 01 preservation 0 002 @ 13920835 n 0000 + 02679899 v 0105 | the condition of being (well or ill) preserved -14579063 26 n 01 prognathism 0 002 @ 13920835 n 0000 + 01875560 a 0102 | the condition of being prognathous; the condition of having a projecting jaw -14579215 26 n 01 rustication 0 003 @ 13920835 n 0000 + 02616542 v 0101 + 00535669 v 0101 | the condition naturally attaching to life in the country -14579365 26 n 01 rustiness 0 002 @ 13920835 n 0000 + 02053094 a 0101 | the condition of being coated or clogged with rust -14579489 26 n 02 scandalization 0 scandalisation 0 001 @ 13920835 n 0000 | the condition of being shocked (as by improper behavior) -14579623 26 n 01 slot 0 001 @ 13945919 n 0000 | a position in a hierarchy or organization; "Bob Dylan occupied the top slot for several weeks"; "she beat some tough competition for the number one slot" -14579827 26 n 01 toehold 0 001 @ 13945919 n 0000 | a relatively insignificant position from which future progress might be made; "American diplomacy provided a toehold on which to proceed toward peace talks"; "his father gave him a toehold in the oil business" -14580090 26 n 01 submission 0 003 @ 13920835 n 0000 + 01118081 v 0101 + 00878348 v 0101 | the condition of having submitted to control by someone or something else; "the union was brought into submission"; "his submission to the will of God" -14580334 26 n 02 urbanization 0 urbanisation 0 003 @ 13920835 n 0000 + 00500055 v 0202 + 00500055 v 0101 | the condition of being urbanized -14580476 26 n 01 utilization 0 001 @ 00024720 n 0000 | the state of having been made use of; "the rate of utilization" -14580597 27 n 01 substance 0 001 @ 00001930 n 0000 | material of a particular kind or constitution; "the immune response recognizes invading substances" -14580752 27 n 01 chemistry 0 001 @ 00019613 n 0000 | the chemical composition and properties of a substance or object; "the chemistry of soil" -14580897 27 n 02 material 0 stuff 0 052 @ 00019613 n 0000 ~ 02779845 n 0000 ~ 02820432 n 0000 ~ 07670731 n 0000 ~ 14583066 n 0000 ~ 14585519 n 0000 ~ 14585808 n 0000 ~ 14585960 n 0000 ~ 14586119 n 0000 ~ 14594925 n 0000 ~ 14596700 n 0000 ~ 14596956 n 0000 ~ 14597158 n 0000 ~ 14604763 n 0000 ~ 14662574 n 0000 ~ 14696793 n 0000 ~ 14702416 n 0000 ~ 14705533 n 0000 ~ 14755804 n 0000 ~ 14757754 n 0000 ~ 14776237 n 0000 ~ 14799244 n 0000 ~ 14806838 n 0000 ~ 14817783 n 0000 ~ 14821043 n 0000 ~ 14821590 n 0000 ~ 14821984 n 0000 ~ 14839439 n 0000 ~ 14840092 n 0000 ~ 14840583 n 0000 ~ 14842992 n 0000 ~ 14852450 n 0000 ~ 14856134 n 0000 ~ 14856263 n 0000 ~ 14866889 n 0000 ~ 14868243 n 0000 ~ 14872697 n 0000 ~ 14908422 n 0000 ~ 14908977 n 0000 ~ 14916796 n 0000 ~ 14974264 n 0000 ~ 14976448 n 0000 ~ 14984973 n 0000 ~ 14991712 n 0000 ~ 15002233 n 0000 ~ 15069820 n 0000 ~ 15075867 n 0000 ~ 15078550 n 0000 ~ 15083974 n 0000 ~ 15097209 n 0000 ~ 15112425 n 0000 ~ 15112702 n 0000 | the tangible substance that goes into the makeup of a physical object; "coal is a hard black material"; "wheat is the stuff they use to make bread" -14582025 27 n 01 ylem 0 002 @ 00020827 n 0000 ;c 06098195 n 0000 | (cosmology) the original matter that (according to the big bang theory) existed before the formation of the chemical elements -14582220 27 n 01 dark_matter 0 003 @ 00020827 n 0000 ;c 06098195 n 0000 %p 09476717 n 0000 | (cosmology) a hypothetical form of matter that is believed to make up 90 percent of the universe; it is invisible (does not absorb or emit light) and does not collide with atomic particles but exerts gravitational force -14582535 27 n 01 antimatter 0 002 @ 00020827 n 0000 %s 09199904 n 0000 | matter consisting of elementary particles that are the antiparticles of those making up normal substances -14582716 27 n 01 micronutrient 0 001 @ 00021265 n 0000 | a substance needed only in small amounts for normal body function (e.g., vitamins or minerals) -14582870 27 n 03 philosopher's_stone 0 philosophers'_stone 0 elixir 1 001 @ 00020090 n 0000 | hypothetical substance that the alchemists believed to be capable of changing base metals into gold -14583066 27 n 01 precursor 0 002 @ 14580897 n 0000 ;c 06079620 n 0000 | a substance from which another substance is formed (especially by a metabolic reaction) -14583228 27 n 01 phlogiston 0 001 @ 00019613 n 0000 | a hypothetical substance once believed to be present in all combustible materials and to be released during burning -14583400 27 n 01 chyme 0 001 @ 00021265 n 0000 | a semiliquid mass of partially digested food that passes from the stomach through the pyloric sphincter into the duodenum -14583573 27 n 01 glop 0 001 @ 00020827 n 0000 | any gummy shapeless matter; usually unpleasant -14583670 27 n 02 impurity 0 dross 1 002 @ 14856263 n 0000 + 01908039 a 0101 | worthless or dangerous material that should be removed; "there were impurities in the water" -14583843 27 n 01 acceptor 0 002 @ 14818238 n 0000 ;c 06084469 n 0000 | (chemistry) in the formation of a coordinate bond it is the compound to which electrons are donated -14584016 27 n 01 adduct 0 001 @ 14818238 n 0000 | a compound formed by an addition reaction -14584110 27 n 03 actinoid 0 actinide 0 actinon 0 001 @ 00031264 n 0000 | any of a series of radioactive elements with atomic numbers 89 through 103 -14584260 27 n 01 allergen 0 003 @ 00020090 n 0000 + 02612531 a 0101 ~ 14585392 n 0000 | any substance that can cause an allergy -14584390 27 n 01 assay 0 001 @ 00020090 n 0000 | a substance that is undergoing an analysis of its components -14584502 27 n 02 pyrogen 0 pyrectic 0 003 @ 00020090 n 0000 + 03105742 a 0201 + 03106279 a 0102 | any substance that can cause a rise in body temperature -14584658 27 n 01 pyrogen 1 001 @ 00020090 n 0000 | any substance characterized by its great flammability -14584765 27 n 01 aldehyde 0 008 @ 14727670 n 0000 ~ 14689325 n 0000 ~ 14711008 n 0000 ~ 14873196 n 0000 ~ 14876473 n 0000 ~ 14884820 n 0000 ~ 14998042 n 0000 ~ 14998290 n 0000 | any of a class of highly reactive chemical compounds; used in making resins and dyes and organic acids -14585048 27 n 03 alkapton 0 alcapton 0 homogentisic_acid 0 001 @ 14607521 n 0000 | an acid formed as an intermediate product of the metabolism of tyrosine and phenylalanine -14585223 27 n 01 antiknock 0 003 @ 14818238 n 0000 + 01396931 a 0101 ~ 14600357 n 0000 | any of various compounds that are added to gasoline to reduce engine knocking -14585392 27 n 01 ragweed_pollen 0 002 @ 11675537 n 0000 @ 14584260 n 0000 | pollen of the ragweed plant is a common allergen -14585519 27 n 06 atom 1 molecule 1 particle 1 corpuscle 0 mote 0 speck 0 009 @ 14580897 n 0000 + 01542252 a 0201 + 00330144 v 0102 + 01392071 a 0101 ~ 09290777 n 0000 ~ 09294716 n 0000 ~ 14812359 n 0000 ~ 14869975 n 0000 ~ 14916185 n 0000 | (nontechnical usage) a tiny piece of anything -14585808 27 n 01 ammunition 0 001 @ 14580897 n 0000 | any nuclear or chemical or biological material that can be used as a weapon of mass destruction -14585960 27 n 02 floccule 0 floc 0 001 @ 14580897 n 0000 | a small loosely aggregated mass of flocculent material suspended in or precipitated from a liquid -14586119 27 n 01 HAZMAT 0 001 @ 14580897 n 0000 | an abbreviation for `hazardous material' used on warning signs; "NO HAZMATS IN TUNNEL" -14586258 27 n 01 mixture 0 019 @ 00019613 n 0000 ;c 06084469 n 0000 + 00394813 v 0103 ~ 14586769 n 0000 ~ 14588219 n 0000 ~ 14588492 n 0000 ~ 14588986 n 0000 ~ 14589114 n 0000 ~ 14589223 n 0000 ~ 14591091 n 0000 ~ 14874564 n 0000 ~ 14891255 n 0000 ~ 14904052 n 0000 ~ 14929662 n 0000 ~ 14949384 n 0000 ~ 14972184 n 0000 ~ 14980910 n 0000 ~ 14992287 n 0000 ~ 15044523 n 0000 | (chemistry) a substance consisting of two or more substances mixed together (not in fixed proportions and not with chemical bonding) -14586769 27 n 02 alloy 0 metal 1 038 @ 14586258 n 0000 + 01527420 a 0201 + 01603303 v 0201 + 00493517 v 0102 ~ 14612077 n 0000 ~ 14639269 n 0000 ~ 14639368 n 0000 ~ 14688705 n 0000 ~ 14716358 n 0000 ~ 14716550 n 0000 ~ 14716845 n 0000 ~ 14718017 n 0000 ~ 14718099 n 0000 ~ 14718233 n 0000 ~ 14718362 n 0000 ~ 14718822 n 0000 ~ 14719169 n 0000 ~ 14719458 n 0000 ~ 14719597 n 0000 ~ 14772007 n 0000 ~ 14785436 n 0000 ~ 14793223 n 0000 ~ 14802450 n 0000 ~ 14809521 n 0000 ~ 14822563 n 0000 ~ 14833618 n 0000 ~ 14839322 n 0000 ~ 14916369 n 0000 ~ 14921414 n 0000 ~ 14962117 n 0000 ~ 14962387 n 0000 ~ 15000149 n 0000 ~ 15039703 n 0000 %s 15051705 n 0000 ~ 15057212 n 0000 ~ 15057433 n 0000 ~ 15075691 n 0000 ~ 15103911 n 0000 | a mixture containing two or more metallic elements or metallic and nonmetallic elements usually fused together or dissolving into each other when molten; "brass is an alloy of zinc and copper" -14587688 27 n 01 botulinum_toxin 0 002 @ 15036321 n 0000 ~ 14587886 n 0000 | any of several neurotoxins that are produced by the anaerobic bacterium Clostridium botulinum; causes muscle paralysis -14587886 27 n 02 botulinum_toxin_A 0 Botox 0 001 @ 14587688 n 0000 | a neurotoxin (trade name Botox) that is used clinically in small quantities to treat strabismus and facial spasms and other neurological disorders characterized by abnormal muscle contractions; is also used by cosmetic surgeons to smooth frown lines temporarily -14588219 27 n 01 colloid 0 009 @ 14586258 n 0000 + 02903946 a 0101 ~ 04221241 n 0000 -c 14588646 n 0000 -c 14588797 n 0000 ~ 14590542 n 0000 ~ 14590795 n 0000 ~ 14674584 n 0000 ~ 15041688 n 0000 | a mixture with properties between those of a solution and fine suspension -14588492 27 n 01 composition 0 005 @ 14586258 n 0000 ~ 14705287 n 0000 ~ 14774090 n 0000 ~ 14818101 n 0000 ~ 15048623 n 0000 | a mixture of ingredients -14588646 27 n 02 dispersed_phase 0 dispersed_particles 0 002 @ 14480065 n 0000 ;c 14588219 n 0000 | (of colloids) a substance in the colloidal state -14588797 27 n 03 dispersing_phase 0 dispersion_medium 0 dispersing_medium 0 002 @ 14480065 n 0000 ;c 14588219 n 0000 | (of colloids) a substance in which another is colloidally dispersed -14588986 27 n 01 mechanical_mixture 0 001 @ 14586258 n 0000 | a mixture whose components can be separated by mechanical means -14589114 27 n 01 eutectic 0 001 @ 14586258 n 0000 | a mixture of substances having a minimum melting point -14589223 27 n 01 solution 0 028 @ 14586258 n 0000 -c 04993413 n 0000 ~ 07937203 n 0000 -c 13580909 n 0000 -c 13583272 n 0000 ~ 14589912 n 0000 -c 14770631 n 0000 ~ 14781062 n 0000 ~ 14786110 n 0000 ~ 14795263 n 0000 ~ 14810032 n 0000 ~ 14820425 n 0000 ~ 14835478 n 0000 ~ 14847929 n 0000 ~ 14848149 n 0000 ~ 14848245 n 0000 ~ 14848479 n 0000 ~ 14848642 n 0000 ~ 14848785 n 0000 ~ 14849215 n 0000 ~ 14849367 n 0000 ~ 14940952 n 0000 -c 14987695 n 0000 ~ 15038127 n 0000 ~ 15051705 n 0000 ~ 15052063 n 0000 ~ 15053373 n 0000 ~ 15076011 n 0000 | a homogeneous mixture of two or more substances; frequently (but not necessarily) a liquid solution; "he used a solution of peroxide and water" -14589912 27 n 01 aqueous_solution 0 001 @ 14589223 n 0000 | a solution in water -14589994 27 n 02 Ringer's_solution 0 Ringer_solution 0 001 @ 14849367 n 0000 | an aqueous solution containing the chlorides of sodium and potassium and calcium that is isotonic to animal tissues; used to correct dehydration and (in physiological experiments) as a medium for in vitro preparations -14590293 27 n 02 saline_solution 0 saline 0 002 @ 14849367 n 0000 + 00531769 v 0201 | an isotonic solution of sodium chloride and distilled water -14590441 27 n 01 polyelectrolyte 0 001 @ 14847929 n 0000 | an electrolyte of high molecular weight -14590542 27 n 02 gel 0 colloidal_gel 0 003 @ 14588219 n 0000 + 00113728 v 0101 ~ 14590685 n 0000 | a colloid in a more solid form than a sol -14590685 27 n 01 hydrogel 0 001 @ 14590542 n 0000 | a colloidal gel in which water is the dispersion medium -14590795 27 n 03 sol 0 colloidal_solution 0 colloidal_suspension 0 001 @ 14588219 n 0000 | a colloid that has a continuous liquid phase in which a solid is suspended in a liquid -14590975 27 n 01 hydrocolloid 0 002 @ 00020090 n 0000 ~ 07613815 n 0000 | a substance that forms a gel with water -14591091 27 n 01 suspension 0 006 @ 14586258 n 0000 + 00148763 v 0101 ~ 14591333 n 0000 ~ 14591481 n 0000 ~ 14948645 n 0000 ~ 15055633 n 0000 | a mixture in which fine particles are suspended in a fluid where they are supported by buoyancy -14591333 27 n 01 slurry 0 001 @ 14591091 n 0000 | a suspension of insoluble particles (as plaster of Paris or lime or clay etc.) usually in water -14591481 27 n 01 resuspension 0 002 @ 14591091 n 0000 + 00148967 v 0101 | a renewed suspension of insoluble particles after they have been precipitated -14591635 27 n 01 precipitate 0 003 @ 15046900 n 0000 + 00474994 v 0101 ~ 14591804 n 0000 | a precipitated solid substance in suspension or after settling or filtering -14591804 27 n 01 sludge 1 001 @ 14591635 n 0000 | the precipitate produced by sewage treatment -14591901 27 n 01 domoic_acid 0 001 @ 15036321 n 0000 | a neurotoxin that is deadly for humans; found in various marine algae -14592028 27 n 02 acrylonitrile-butadiene-styrene 0 ABS 0 001 @ 14592610 n 0000 | any of a class of composite plastics used to make car bodies and cases for computers and other appliances -14592217 27 n 01 Mylar 0 002 @ 14592610 n 0000 ;u 06851742 n 0000 | a thin polyester film -14592309 27 n 01 pina_cloth 0 001 @ 03309808 n 0000 | a fine cloth made from pineapple fibers -14592405 27 n 01 Plasticine 0 002 @ 14901959 n 0000 ;u 06851742 n 0000 | a synthetic material resembling clay but remaining soft; used as a substitute for clay or wax in modeling (especially in schools) -14592610 27 n 01 plastic 0 019 @ 15046900 n 0000 ~ 14592028 n 0000 ~ 14592217 n 0000 ~ 14593344 n 0000 ~ 14596063 n 0000 ~ 14596216 n 0000 ~ 14596398 n 0000 ~ 14596599 n 0000 ~ 14695953 n 0000 ~ 14743381 n 0000 ~ 14804039 n 0000 ~ 14824702 n 0000 ~ 14872226 n 0000 ~ 14981461 n 0000 ~ 14993559 n 0000 ~ 14996158 n 0000 ~ 14996295 n 0000 ~ 15040809 n 0000 ~ 15088183 n 0000 | generic name for certain synthetic or semisynthetic materials that can be molded or extruded into objects or films or filaments or used for making e.g. coatings and adhesives -14593162 27 n 02 plasticizer 0 plasticiser 0 003 @ 15055936 n 0000 + 00569556 v 0202 + 00569556 v 0101 | a substance added to plastics or other materials to make them more pliable -14593344 27 n 02 thermoplastic 0 thermoplastic_resin 0 004 @ 14592610 n 0000 + 02409849 a 0101 ~ 14593545 n 0000 ~ 14965501 n 0000 | a material that softens when heated and hardens again when cooled -14593545 27 n 01 saran 0 002 @ 14593344 n 0000 #s 04135710 n 0000 | any of various thermoplastic resins used to make things -14593671 27 n 03 acrylic 0 acrylic_resin 0 acrylate_resin 0 003 @ 14902141 n 0000 ~ 03979847 n 0000 ~ 14593874 n 0000 | a glassy thermoplastic; can be cast and molded or used in coatings and adhesives -14593874 27 n 01 polymethyl_methacrylate 0 003 @ 14593671 n 0000 ~ 14594032 n 0000 ~ 14594174 n 0000 | a transparent plastic used as a substitute for glass -14594032 27 n 02 Lucite 0 Perspex 0 003 @ 14593874 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | a transparent thermoplastic acrylic resin -14594174 27 n 02 Plexiglas 0 plexiglass 0 002 @ 14593874 n 0000 ;u 06851742 n 0101 | a light transparent weather resistant thermoplastic -14594313 27 n 02 polyethylene 0 polythene 0 001 @ 14902141 n 0000 | a lightweight thermoplastic; used especially in packaging and insulation -14594456 27 n 05 acetyl 0 acetyl_group 0 acetyl_radical 0 ethanoyl_group 0 ethanoyl_radical 0 006 @ 14594708 n 0000 + 02600792 a 0101 + 00524083 v 0101 + 00524299 v 0101 + 00524083 v 0102 + 00524299 v 0102 | the organic group of acetic acid (CH3CO-) -14594708 27 n 02 acyl 0 acyl_group 0 003 @ 14621446 n 0000 ~ 14594456 n 0000 ~ 14860455 n 0000 | any group or radical of the form RCO- where R is an organic group; "an example of the acyl group is the acetyl group" -14594925 27 n 01 aggregate 0 001 @ 14580897 n 0000 | material such as sand or gravel used with cement and water to make concrete, mortar, or plaster -14595076 27 n 02 alcohol_group 0 alcohol_radical 0 001 @ 14621446 n 0000 | the chemical group -OH -14595176 27 n 02 aldehyde_group 0 aldehyde_radical 0 001 @ 14621446 n 0000 | the chemical group -CHO -14595279 27 n 02 polyvinyl_acetate 0 PVA 0 001 @ 15088440 n 0000 | a vinyl polymer used especially in paints or adhesives -14595403 27 n 02 polyvinyl_chloride 0 PVC 0 001 @ 15088440 n 0000 | a polymer of vinyl chloride used instead of rubber in electric cables -14595543 27 n 04 styrene 0 cinnamene 0 phenylethylene 0 vinylbenzene 0 002 @ 15088440 n 0000 ~ 14595711 n 0000 | a colorless oily liquid; the monomer for polystyrene -14595711 27 n 01 polystyrene 0 002 @ 14595543 n 0000 ~ 14595933 n 0000 | a polymer of styrene; a rigid transparent thermoplastic; "expanded polystyrene looks like a rigid white foam and is used as packing or insulation" -14595933 27 n 01 Styrofoam 0 003 @ 14595711 n 0000 @ 14872697 n 0000 ;u 06851742 n 0000 | a light resilient foam of polystyrene -14596063 27 n 02 thermosetting_compositions 0 thermosetting_resin 0 001 @ 14592610 n 0000 | a material that hardens when heated and cannot be remolded -14596216 27 n 01 Bakelite 0 002 @ 14592610 n 0000 ;u 06851742 n 0000 | a thermosetting plastic used as electric insulators and for making plastic ware and telephone receivers etc. -14596398 27 n 02 Teflon 0 polytetrafluoroethylene 0 002 @ 14592610 n 0000 ;u 06851742 n 0101 | a material used to coat cooking utensils and in industrial applications where sticking is to be avoided -14596599 27 n 01 Vinylite 0 002 @ 14592610 n 0000 ;u 06851742 n 0000 | any of various vinyl resins -14596700 27 n 02 raw_material 0 staple 0 002 @ 14580897 n 0000 ~ 14596839 n 0000 | material suitable for manufacture or use or finishing -14596839 27 n 01 feedstock 0 001 @ 14596700 n 0000 | the raw material that is required for some industrial process -14596956 27 n 01 sorbate 0 003 @ 14580897 n 0000 ~ 14597628 n 0000 ~ 14598704 n 0000 | a material that has been or is capable of being taken up by another substance by either absorption or adsorption -14597158 27 n 02 sorbent 0 sorbent_material 0 004 @ 14580897 n 0000 + 01540449 v 0101 ~ 14597413 n 0000 ~ 14598525 n 0000 | a material that sorbs another substance; i.e. that has the capacity or tendency to take it up by either absorption or adsorption -14597413 27 n 02 absorbent_material 0 absorbent 0 005 @ 14597158 n 0000 + 01539633 v 0201 ~ 14597758 n 0000 ~ 14598079 n 0000 ~ 14598251 n 0000 | a material having capacity or tendency to absorb another substance -14597628 27 n 01 absorbate 0 002 @ 14596956 n 0000 + 01539633 v 0101 | a material that has been or is capable of being absorbed -14597758 27 n 01 sponge 0 006 @ 14597413 n 0000 + 00007516 a 0101 + 01393611 v 0101 + 01549057 v 0101 + 01392663 v 0101 + 01383646 v 0101 | a porous mass of interlacing fibers that forms the internal skeleton of various marine animals and usable to absorb water or any porous rubber or cellulose product similarly used -14598079 27 n 01 absorber 0 004 @ 14597413 n 0000 ;c 06090869 n 0000 + 01539063 v 0101 + 01539633 v 0101 | (physics) material in a nuclear reactor that absorbs radiation -14598251 27 n 01 absorbent_cotton 0 002 @ 14870078 n 0000 @ 14597413 n 0000 | cotton made absorbent by removal of the natural wax -14598383 27 n 01 absorption_indicator 0 002 @ 14917208 n 0000 ~ 14987695 n 0000 | an indicator used in reactions that involve precipitation -14598525 27 n 02 adsorbent 0 adsorbent_material 0 003 @ 14597158 n 0000 + 00008206 a 0101 + 01540232 v 0101 | a material having capacity or tendency to adsorb another substance -14598704 27 n 01 adsorbate 0 002 @ 14596956 n 0000 + 00008877 a 0102 | a material that has been or is capable of being adsorbed -14598834 27 n 02 acaricide 0 acaracide 0 001 @ 14980215 n 0000 | a chemical agent used to kill mites -14598937 27 n 06 acaroid_resin 0 accaroid_resin 0 accroides 0 accroides_resin 0 accroides_gum 0 gum_accroides 0 001 @ 14894481 n 0000 | an alcohol-soluble resin from Australian trees; used in varnishes and in manufacturing paper -14599168 27 n 02 acetic_acid 0 ethanoic_acid 0 010 @ 14739360 n 0000 #s 03192142 n 0000 #s 03191967 n 0000 #s 03300907 n 0000 #s 03568653 n 0000 #s 03612559 n 0000 #s 03612378 n 0000 ~ 14599641 n 0000 ~ 15079310 n 0000 ~ 15088111 n 0000 | a colorless pungent liquid widely used in manufacturing plastics and pharmaceuticals -14599494 27 n 01 acetin 0 001 @ 14599806 n 0000 | any of three liquid acetates that are formed when acetic acid and glycerin are heated together -14599641 27 n 01 acetum 0 003 @ 14599168 n 0000 + 02196690 v 0104 + 00264875 v 0102 | a dilute solution of acetic acid that is used as a solvent (e.g. for a drug) -14599806 27 n 02 acetate 0 ethanoate 0 003 @ 15010703 n 0000 ~ 14599494 n 0000 ~ 14989243 n 0000 | a salt or ester of acetic acid -14599938 27 n 02 dichlorodiphenyltrichloroethane 0 DDT 0 002 @ 14919948 n 0000 @ 14857278 n 0000 | an insecticide that is also toxic to animals and humans; banned in the United States since 1972 -14600135 27 n 01 larvacide 0 001 @ 14919948 n 0000 | an insecticide that kills the larvae of insects -14600238 27 n 01 lead_arsenate 0 001 @ 14919948 n 0000 | a poisonous white solid (Pb3[AsO4]2) used as an insecticide -14600357 27 n 02 tetraethyl_lead 0 lead_tetraethyl 0 001 @ 14585223 n 0000 | a clear oily poisonous liquid added to gasoline to prevent knocking -14600504 27 n 03 acetone 0 propanone 0 dimethyl_ketone 0 003 @ 14926294 n 0000 @ 15047313 n 0000 + 02600593 a 0101 | the simplest ketone; a highly inflammable liquid widely used as an organic solvent and as material for making plastics -14600742 27 n 03 acetylene 0 ethyne 0 alkyne 0 003 @ 14601294 n 0000 #s 14972184 n 0000 + 02600691 a 0101 | a colorless flammable gas used chiefly in welding and in organic synthesis -14600927 27 n 01 adobe 0 002 @ 14813182 n 0000 #s 02681392 n 0000 | the clay from which adobe bricks are made -14601039 27 n 01 Agent_Orange 0 002 @ 14906850 n 0000 %s 14836308 n 0000 | a herbicide used in the Vietnam War to defoliate forest areas -14601178 27 n 01 alicyclic_compound 0 001 @ 14601294 n 0000 | an aliphatic compound that contains a ring of atoms -14601294 27 n 01 aliphatic_compound 0 005 @ 14727670 n 0000 ~ 14600742 n 0000 ~ 14601178 n 0000 ~ 14713120 n 0000 ~ 14951377 n 0000 | organic compound that is an alkane or alkene or alkyne or their derivative -14601505 27 n 01 alkylbenzene 0 002 @ 14727670 n 0000 ~ 15075378 n 0000 | organic compound that has an alkyl group bound to a benzene ring -14601646 27 n 02 alkyl_halide 0 haloalkane 0 002 @ 14727670 n 0000 ~ 14620895 n 0000 | organic compound in which halogen atoms have been substituted for hydrogen atoms in an alkane -14601829 27 n 02 amino_acid 0 aminoalkanoic_acid 0 025 @ 14727670 n 0000 #s 14728724 n 0000 ~ 14602490 n 0000 ~ 14602851 n 0000 ~ 14602987 n 0000 ~ 14603143 n 0000 ~ 14604286 n 0000 ~ 14604454 n 0000 ~ 14604616 n 0000 ~ 14604959 n 0000 ~ 14605787 n 0000 ~ 14606290 n 0000 ~ 14606482 n 0000 ~ 14606704 n 0000 ~ 14606993 n 0000 ~ 14607131 n 0000 ~ 14607250 n 0000 ~ 14607378 n 0000 ~ 14684798 n 0000 ~ 14825243 n 0000 ~ 15019645 n 0000 ~ 15022035 n 0000 ~ 15074456 n 0000 ~ 15082524 n 0000 ~ 15082766 n 0000 | organic compounds containing an amino group and a carboxylic acid group; "proteins are composed of various proportions of about 20 common amino acids" -14602490 27 n 01 alanine 0 001 @ 14601829 n 0000 | a crystalline amino acid that occurs in many proteins -14602597 27 n 01 argil 0 002 @ 14813182 n 0000 + 00142270 a 0101 | a white clay (especially a white clay used by potters) -14602721 27 n 01 arsenical 0 003 @ 14980215 n 0000 @ 03247620 n 0000 + 02641571 a 0101 | a pesticide or drug containing arsenic -14602851 27 n 01 asparagine 0 001 @ 14601829 n 0000 | a crystalline amino acid found in proteins and in many plants (e.g., asparagus) -14602987 27 n 01 aspartic_acid 0 001 @ 14601829 n 0000 | a crystalline amino acid found in proteins and occurring naturally in sugar beets and sugar cane -14603143 27 n 01 canavanine 0 001 @ 14601829 n 0000 | an amino acid found in the jack bean -14603236 27 n 01 chlorobenzene 0 002 @ 14911057 n 0000 @ 15047313 n 0000 | a colorless volatile flammable liquid with an almond odor that is made from chlorine and benzene; used as a solvent and in the production of phenol and DDT and other organic compounds -14603497 27 n 02 chlorofluorocarbon 0 CFC 0 005 @ 14871968 n 0000 @ 14857278 n 0000 @ 14877234 n 0000 ~ 14613130 n 0000 ~ 14874731 n 0000 | a fluorocarbon with chlorine; formerly used as a refrigerant and as a propellant in aerosol cans; "the chlorine in CFCs causes depletion of atmospheric ozone" -14603798 27 n 02 chlorobenzylidenemalononitrile 0 CS_gas 0 001 @ 15067877 n 0000 | a tear gas that is stronger than CN gas but wears off faster; can be deployed by grenades or cluster bombs; can cause skin burns and fatal pulmonary edema -14604038 27 n 02 chloroacetophenone 0 CN_gas 0 002 @ 15067877 n 0000 ~ 14944617 n 0000 | a tear gas that is weaker than CS gas but lasts longer -14604184 27 n 01 citrate 0 002 @ 15010703 n 0000 @ 14850483 n 0000 | a salt or ester of citric acid -14604286 27 n 01 citrulline 0 001 @ 14601829 n 0000 | an amino acid that does not occur in proteins but is an intermediate in the conversion of ornithine to arginine -14604454 27 n 01 cysteine 0 001 @ 14601829 n 0000 | an amino acid containing sulfur that is found in most proteins; oxidizes on exposure to air to form cystine -14604616 27 n 01 cystine 0 001 @ 14601829 n 0000 | a crystalline amino acid found in proteins (especially keratin); discovered in bladder stones -14604763 27 n 01 diamagnet 0 001 @ 14580897 n 0000 | a substance that exhibits diamagnetism -14604857 27 n 01 diamine 0 001 @ 14727670 n 0000 | any organic compound containing two amino groups -14604959 27 n 02 dopa 0 dihydroxyphenylalanine 0 002 @ 14601829 n 0000 ~ 14605132 n 0000 | amino acid that is formed in the liver and converted into dopamine in the brain -14605132 27 n 05 L-dopa 0 levodopa 0 Bendopa 0 Brocadopa 0 Larodopa 0 004 @ 14604959 n 0000 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 | the levorotatory form of dopa (trade names Bendopa and Brocadopa and Larodopa); as a drug it is used to treat Parkinson's disease -14605415 27 n 01 endonuclease 0 002 @ 14963916 n 0000 ~ 15005071 n 0000 | a nuclease that cleaves nucleic acids at interior bonds and so produces fragments of various sizes -14605590 27 n 01 enol 0 002 @ 14727670 n 0000 + 02915271 a 0101 | an organic compound that contains a hydroxyl group bonded to a carbon atom which in turn is doubly bonded to another carbon atom -14605787 27 n 01 essential_amino_acid 0 011 @ 14601829 n 0000 ~ 14767796 n 0000 ~ 14908146 n 0000 ~ 14924067 n 0000 ~ 14935128 n 0000 ~ 14944182 n 0000 ~ 14952290 n 0000 ~ 14981579 n 0000 ~ 15070699 n 0000 ~ 15081417 n 0000 ~ 15086088 n 0000 | an amino acid that is required by animals but that they cannot synthesize; must be supplied in the diet -14606137 27 n 01 exonuclease 0 001 @ 14963916 n 0000 | a nuclease that releases one nucleotide at a time (serially) beginning at one of a nucleic acid -14606290 27 n 02 gamma_aminobutyric_acid 0 GABA 0 002 @ 14601829 n 0000 @ 14807558 n 0000 | an amino acid that is found in the central nervous system; acts as an inhibitory neurotransmitter -14606482 27 n 02 glutamic_acid 0 glutaminic_acid 0 001 @ 14601829 n 0000 | an amino acid occurring in proteins; important in the nitrogen metabolism of plants; used in monosodium glutamate to enhance the flavor of meats -14606704 27 n 01 glutamine 0 001 @ 14601829 n 0000 | a crystalline amino acid occurring in proteins; important in protein metabolism -14606839 27 n 01 glutathione_peroxidase 0 002 @ 14979730 n 0000 @ 14724645 n 0000 | an enzyme in the body that is a powerful scavenger of free radicals -14606993 27 n 01 glycine 0 001 @ 14601829 n 0000 | the simplest amino acid found in proteins and the principal amino acid in sugar cane -14607131 27 n 01 hydroxyproline 0 001 @ 14601829 n 0000 | a crystalline amino acid obtained from gelatin or collagen -14607250 27 n 01 iodoamino_acid 0 003 @ 14601829 n 0000 ~ 14835004 n 0000 ~ 14835125 n 0000 | an amino acid with iodine added -14607378 27 n 01 ornithine 0 001 @ 14601829 n 0000 | an amino acid that does not occur in proteins but is important in the formation of urea -14607521 27 n 01 acid 0 084 @ 14818238 n 0000 + 00025470 a 0101 + 02196690 v 0103 + 02196690 v 0102 + 00264875 v 0101 ~ 14585048 n 0000 ~ 14610347 n 0000 ~ 14610548 n 0000 ~ 14610782 n 0000 ~ 14610914 n 0000 ~ 14611031 n 0000 ~ 14611158 n 0000 ~ 14611397 n 0000 ~ 14611679 n 0000 ~ 14611804 n 0000 ~ 14611980 n 0000 ~ 14612972 n 0000 ~ 14613643 n 0000 ~ 14613922 n 0000 ~ 14614378 n 0000 ~ 14614864 n 0000 ~ 14615006 n 0000 ~ 14615822 n 0000 ~ 14616073 n 0000 ~ 14616508 n 0000 ~ 14616620 n 0000 ~ 14684690 n 0000 ~ 14739360 n 0000 ~ 14743289 n 0000 ~ 14766532 n 0000 ~ 14766725 n 0000 ~ 14767477 n 0000 ~ 14772716 n 0000 ~ 14777277 n 0000 ~ 14783670 n 0000 ~ 14783808 n 0000 ~ 14785524 n 0000 ~ 14792389 n 0000 ~ 14796073 n 0000 ~ 14799084 n 0000 ~ 14811706 n 0000 ~ 14812872 n 0000 ~ 14826482 n 0000 ~ 14826613 n 0000 ~ 14827680 n 0000 ~ 14865934 n 0000 ~ 14866490 n 0000 ~ 14871791 n 0000 ~ 14872408 n 0000 ~ 14873344 n 0000 ~ 14876066 n 0000 ~ 14876993 n 0000 ~ 14884963 n 0000 ~ 14888124 n 0000 ~ 14910926 n 0000 ~ 14912387 n 0000 ~ 14912840 n 0000 ~ 14913136 n 0000 ~ 14913403 n 0000 ~ 14914014 n 0000 ~ 14922252 n 0000 ~ 14923962 n 0000 ~ 14924473 n 0000 ~ 14946424 n 0000 ~ 14970752 n 0000 ~ 14971022 n 0000 ~ 14972359 n 0000 ~ 14973585 n 0000 ~ 14973965 n 0000 ~ 14978114 n 0000 ~ 14979588 n 0000 ~ 14983036 n 0000 ~ 14983326 n 0000 ~ 15000334 n 0000 ~ 15013577 n 0000 ~ 15039935 n 0000 ~ 15063358 n 0000 ~ 15070234 n 0000 ~ 15075596 n 0000 ~ 15080382 n 0000 ~ 15083713 n 0000 ~ 15085682 n 0000 ~ 15093482 n 0000 ~ 15112932 n 0000 | any of various water-soluble compounds having a sour taste and capable of turning litmus red and reacting with a base to form a salt -14609198 27 n 01 acid-base_indicator 0 007 @ 14917208 n 0000 ~ 03922109 n 0000 ~ 14770631 n 0000 ~ 14771482 n 0000 ~ 14941407 n 0000 ~ 14986719 n 0000 ~ 14986890 n 0000 | an indicator that changes color on going from acidic to basic solutions -14609443 27 n 01 alpha-linolenic_acid 0 001 @ 14742028 n 0000 | a polyunsaturated fatty acid with 18 carbon atoms; the only omega-3 fatty acid found in vegetable products; it is most abundant in canola oil; a fatty acid essential for nutrition -14609689 27 n 01 alpha-naphthol 0 001 @ 14958800 n 0000 | an isomer of naphthol used in dyes -14609784 27 n 04 alpha-naphthol_test 0 Molisch's_test 0 Molisch_test 0 Molisch_reaction 0 001 @ 14917208 n 0000 | biochemical indicator of the presence of carbohydrates in a solution; if carbohydrates are present a violet ring is formed by reaction with alpha-naphthol in the presence of sulfuric acid -14610088 27 n 01 aromatic_compound 0 001 @ 14911057 n 0000 | a hydrocarbon containing one or more benzene rings that are characteristic of the benzene series of compounds -14610261 27 n 01 arsenate 0 001 @ 15010703 n 0000 | a salt or ester of arsenic acid -14610347 27 n 01 arsenic_acid 0 001 @ 14607521 n 0000 | an acid formed from arsenic pentoxide -14610443 27 n 01 arsenide 0 001 @ 14818238 n 0000 | a compound of arsenic with a more positive element -14610548 27 n 02 cerotic_acid 0 hexacosanoic_acid 0 002 @ 14607521 n 0000 #s 15094824 n 0000 | a white solid fatty acid found in waxes (such as beeswax) -14610703 27 n 01 chlorate 0 001 @ 15010703 n 0000 | any salt of chloric acid -14610782 27 n 01 chloric_acid 0 001 @ 14607521 n 0000 | (HClO3) a strong unstable acid with an acrid odor found in chlorate salts -14610914 27 n 01 chlorous_acid 0 001 @ 14607521 n 0000 | (HClO2) a strongly oxidizing acid; known only in solution -14611031 27 n 01 monobasic_acid 0 001 @ 14607521 n 0000 | an acid containing only one replaceable hydrogen atom per molecule -14611158 27 n 01 dibasic_acid 0 001 @ 14607521 n 0000 | an acid containing two replaceable hydrogen atoms per molecule -14611279 27 n 01 dibasic_salt 0 001 @ 15010703 n 0000 | a salt derived by replacing two hydrogen atoms per molecule -14611397 27 n 01 tribasic_acid 0 001 @ 14607521 n 0000 | an acid containing three replaceable hydrogen atoms per molecule -14611521 27 n 01 tritium 0 001 @ 14640434 n 0000 | a radioactive isotope of hydrogen; atoms of tritium have three times the mass of ordinary hydrogen atoms -14611679 27 n 01 tetrabasic_acid 0 001 @ 14607521 n 0000 | an acid containing four replaceable hydrogen atoms per molecule -14611804 27 n 01 fulminic_acid 0 001 @ 14607521 n 0000 | (CNOH) an unstable acid occurring mainly in the form of explosive salts and esters that is isomeric with cyanic acid -14611980 27 n 01 gamma_acid 0 001 @ 14607521 n 0000 | a crystalline acid used to make azo dyes -14612077 27 n 01 heavy_metal 0 002 @ 14625458 n 0000 @ 14586769 n 0000 | a metal of relatively high density (specific gravity greater than about 5) or of high relative atomic weight (especially one that is poisonous like mercury or lead) -14612317 27 n 02 hexanedioic_acid 0 adipic_acid 0 001 @ 14739360 n 0000 | a carboxylic acid used in the manufacture of nylon -14612444 27 n 02 HMG-CoA_reductase 0 5-hydroxy-3-methylglutaryl-coenzyme_A_reductase 0 001 @ 15003645 n 0000 | a liver enzyme that is responsible for producing cholesterol -14612618 27 n 01 horseradish_peroxidase 0 001 @ 14979730 n 0000 | an enzyme used in immunohistochemistry to label antigens and their antibodies -14612764 27 n 04 hydrazoic_acid 0 azoimide 0 hydrogen_azide 0 HN 3 003 @ 14910748 n 0000 @ 03304730 n 0000 %s 14770400 n 0000 | a colorless explosive liquid that is volatile and poisonous and foul-smelling -14612972 27 n 01 hydriodic_acid 0 001 @ 14607521 n 0000 | (HI) a colorless or yellow aqueous solution of hydrogen iodide; "hydriodic acid is a strong acid" -14613130 27 n 02 hydrochlorofluorocarbon 0 HCFC 0 001 @ 14603497 n 0000 | a fluorocarbon that is replacing chlorofluorocarbon as a refrigerant and propellant in aerosol cans; considered to be somewhat less destructive to the atmosphere -14613368 27 n 01 hydrogen_cyanide 0 001 @ 14818238 n 0000 | a highly poisonous gas or volatile liquid that smells like bitter almonds; becomes a gas at around 90 degree Fahrenheit and is most dangerous when inhaled; the anhydride of hydrocyanic acid; used in manufacturing -14613643 27 n 02 hydrocyanic_acid 0 prussic_acid 0 001 @ 14607521 n 0000 | a solution of hydrogen cyanide in water; weak solutions are used in fumigating and in the synthesis of organic compounds -14613841 27 n 01 hydrolysate 0 001 @ 14997699 n 0000 | a product of hydrolysis -14613922 27 n 01 hydroxy_acid 0 005 @ 14607521 n 0000 ~ 14614139 n 0000 ~ 14614744 n 0000 ~ 15010038 n 0000 ~ 15067576 n 0000 | any acid that has hydroxyl groups in addition to the hydroxyl group in the acid itself -14614139 27 n 01 hydroxybenzoic_acid 0 001 @ 14613922 n 0000 | a crystalline derivative of benzoic acid -14614245 27 n 01 hypochlorite 0 003 @ 15010703 n 0000 ~ 14789365 n 0000 ~ 15045490 n 0000 | any salt or ester of hypochlorous acid -14614378 27 n 01 hyponitrous_acid 0 001 @ 14607521 n 0000 | an explosive white crystalline weak acid (H2N2O2) -14614490 27 n 01 hypophosphoric_acid 0 001 @ 14972359 n 0000 | a crystalline tetrabasic acid (H4P2O6) -14614594 27 n 03 hypophosphorous_acid 0 phosphorous_acid 0 orthophosphorous_acid 0 001 @ 14972359 n 0000 | a clear or yellow monobasic acid (H3PO2) -14614744 27 n 01 juniperic_acid 0 001 @ 14613922 n 0000 | a crystalline acid found in the exudations of some conifers -14614864 27 n 01 lysergic_acid 0 001 @ 14607521 n 0000 | a crystalline acid often used in medical research; obtained from ergotic alkaloids -14615006 27 n 01 manganic_acid 0 001 @ 14607521 n 0000 | a dibasic acid (H2MnO4) found only in solution and in manganate salts -14615135 27 n 01 metaphosphoric_acid 0 001 @ 14615264 n 0000 | a glassy solid acid ([HPO3]n) often used as a dehydrating agent -14615264 27 n 01 polyphosphoric_acid 0 003 @ 14972359 n 0000 ~ 14615135 n 0000 ~ 14615602 n 0000 | a series of oxyacids of phosphorus -14615400 27 n 02 pyrogallol 0 pyrogallic_acid 0 002 @ 14989545 n 0000 + 03106176 a 0101 | a toxic white lustrous crystalline phenol used to treat certain skin diseases and as a photographic developer -14615602 27 n 01 pyrophosphoric_acid 0 001 @ 14615264 n 0000 | a solid acid formed by reactions of orthophosphoric acid -14615724 27 n 01 pyrophosphate 0 001 @ 15010703 n 0000 | a salt or ester of pyrophosphoric acid -14615822 27 n 02 methacrylic_acid 0 2-methylpropenoic_acid 0 001 @ 14607521 n 0000 | an unsaturated acid (C4H6O2) used to make resins and plastics -14615971 27 n 01 mucic_acid 0 001 @ 14739360 n 0000 | a solid acid (C6H10O8) found in milk or sugar -14616073 27 n 01 selenic_acid 0 001 @ 14607521 n 0000 | a strong acid (H2SeO4) analogous to sulfuric acid -14616181 27 n 02 suberic_acid 0 octanedioic_acid 0 001 @ 14739360 n 0000 | a dicarboxylic acid found in cork -14616292 27 n 01 succinic_acid 0 001 @ 14739360 n 0000 | a dicarboxylic acid (C4H6O4) active in metabolic processes -14616410 27 n 01 sulfonate 0 002 @ 15010703 n 0000 ~ 14713247 n 0000 | a salt of sulphonic acid -14616508 27 n 02 sulfonic_acid 0 sulphonic_acid 0 001 @ 14607521 n 0000 | an acid derived from sulphuric acid -14616620 27 n 01 titanic_acid 0 001 @ 14607521 n 0000 | a white weak acid that is a hydrated form of titanium dioxide -14616740 27 n 04 titanium_dioxide 0 titanium_oxide 0 titanic_oxide 0 titania 0 002 @ 14989820 n 0000 @ 14971519 n 0000 | a white powder used as a pigment for its high covering power and durability -14616939 27 n 02 adulterant 0 adulterator 0 004 @ 00020090 n 0000 + 00487748 v 0202 + 02117232 a 0102 + 00487748 v 0102 | any substance that lessens the purity or effectiveness of a substance; "it is necessary to remove the adulterants before use" -14617189 27 n 03 alkyl 0 alkyl_group 0 alkyl_radical 0 004 @ 14621446 n 0000 + 02612184 a 0101 ~ 14710325 n 0000 ~ 14952122 n 0000 | any of a series of univalent groups of the general formula CnH2n+1 derived from aliphatic hydrocarbons -14617427 27 n 03 allyl 0 allyl_group 0 allyl_radical 0 002 @ 14621446 n 0000 + 02613965 a 0101 | the univalent unsaturated organic radical C3H5; derived from propylene -14617597 27 n 02 amino 0 amino_group 0 003 @ 14621446 n 0000 + 02617146 a 0101 ~ 14752323 n 0000 | the radical -NH2 -14617715 27 n 01 aminomethane 0 001 @ 14952122 n 0000 | a methyl with the hydrogen atom replaced by an amino radical -14617834 27 n 01 amyl 0 001 @ 14621446 n 0000 | a hydrocarbon radical that occurs in many organic compounds -14617944 27 n 01 anionic_compound 0 001 @ 14818238 n 0000 | a compound characterized by an active anion -14618050 27 n 03 anionic_detergent 0 anionic 0 non-ionic_detergent 0 002 @ 15097017 n 0000 + 02930255 a 0201 | a class of synthetic detergents in which the molecules do not ionize in aqueous solutions -14618253 27 n 02 base 0 alkali 0 011 @ 14818238 n 0000 + 00265094 v 0201 + 00265094 v 0203 + 01200068 v 0102 + 00265094 v 0104 ~ 14692510 n 0000 ~ 14706574 n 0000 ~ 14706749 n 0000 ~ 14916670 n 0000 ~ 14949746 n 0000 ~ 14999913 n 0000 | any of various water-soluble compounds capable of turning litmus blue and reacting with an acid to form a salt and water; "bases include oxides and hydroxides of metals and ammonia" -14618674 27 n 01 base_metal 0 001 @ 14625458 n 0000 | a metal that is common and not considered precious; "lead, iron, copper, tin, and zinc are base metals" -14618834 27 n 01 binary_compound 0 006 @ 14818238 n 0000 ~ 14672023 n 0000 ~ 14743582 n 0000 ~ 14789087 n 0000 ~ 14845743 n 0000 ~ 14910748 n 0000 | chemical compound composed of only two elements -14619033 27 n 02 chelate 0 chelate_compound 0 002 @ 15025397 n 0000 + 02621706 v 0101 | a heterocyclic compound having a metal ion attached by coordinate bonds to at least two nonmetal ions -14619225 27 n 01 atom 0 016 @ 00019613 n 0000 #p 14622893 n 0000 #p 14682133 n 0000 ;c 06090869 n 0000 ;c 06084469 n 0000 + 02884619 a 0101 + 00330144 v 0101 + 01373138 v 0102 + 00330144 v 0102 %p 09272085 n 0000 %p 09375085 n 0000 ~ 14619658 n 0000 ~ 14621080 n 0000 ~ 14633781 n 0000 ~ 14640756 n 0000 ~ 14874196 n 0000 | (physics and chemistry) the smallest component of an element having the chemical properties of the element -14619658 27 n 01 isotope 0 004 @ 14619225 n 0000 + 02902531 a 0101 ~ 14619857 n 0000 ~ 14641046 n 0000 | one of two or more atoms with the same atomic number but with different numbers of neutrons -14619857 27 n 01 radioisotope 0 005 @ 14619658 n 0000 ~ 04462835 n 0000 ~ 14620066 n 0000 ~ 14641797 n 0000 ~ 14642005 n 0000 | a radioactive isotope of an element; produced either naturally or artificially -14620066 27 n 01 label 0 003 @ 14619857 n 0000 + 00650932 v 0101 + 00651480 v 0101 | a radioactive isotope that is used in a compound in order to trace the mechanism of a chemical reaction -14620257 27 n 01 halon 0 002 @ 14727670 n 0000 @ 14857278 n 0000 | a compound in which the hydrogen atoms of a hydrocarbon have been replaced by bromine and other halogen atoms; very stable; used in fire extinguishers although it is thought to release bromine that depletes the ozone layer -14620549 27 n 02 bromoform 0 tribromomethane 0 001 @ 14620895 n 0000 | colorless liquid haloform CHBr3 -14620654 27 n 02 fluoroform 0 trifluoromethane 0 001 @ 14620895 n 0000 | colorless gas haloform CHF3 (similar to chloroform) -14620781 27 n 02 iodoform 0 tri-iodomethane 0 001 @ 14620895 n 0000 | sweet smelling yellow solid haloform CHI3 -14620895 27 n 01 haloform 0 005 @ 14601646 n 0000 ~ 03022406 n 0000 ~ 14620549 n 0000 ~ 14620654 n 0000 ~ 14620781 n 0000 | compounds with the formula CHX3, where X is a halogen atom -14621080 27 n 01 monad 0 002 @ 14619225 n 0000 ;c 06084469 n 0000 | (chemistry) an atom having a valence of one -14621194 27 n 02 azido_group 0 azido_radical 0 001 @ 14621446 n 0000 | the univalent group N3- derived from hydrazoic acid -14621319 27 n 02 azo_group 0 azo_radical 0 001 @ 14621446 n 0000 | the bivalent group -N=N- united to two hydrocarbon groups -14621446 27 n 03 group 0 radical 0 chemical_group 0 030 @ 09465459 n 0000 #p 14682133 n 0000 ;c 06084469 n 0000 ~ 14594708 n 0000 ~ 14595076 n 0000 ~ 14595176 n 0000 ~ 14617189 n 0000 ~ 14617427 n 0000 ~ 14617597 n 0000 ~ 14617834 n 0000 ~ 14621194 n 0000 ~ 14621319 n 0000 ~ 14622623 n 0000 ~ 14622768 n 0000 ~ 14788714 n 0000 ~ 14790693 n 0000 ~ 14790796 n 0000 ~ 14808147 n 0000 ~ 14827191 n 0000 ~ 14886443 n 0000 ~ 14914544 n 0000 ~ 14914775 n 0000 ~ 14926937 n 0000 ~ 14951983 n 0000 ~ 14998965 n 0000 ~ 15008025 n 0000 ~ 15015872 n 0000 ~ 15015963 n 0000 ~ 15084999 n 0000 ~ 15088308 n 0000 | (chemistry) two or more atoms bound together as a single unit and forming part of a molecule -14622141 27 n 01 fullerene 0 004 @ 14633206 n 0000 ;c 06084469 n 0000 ~ 14622350 n 0000 ~ 14622491 n 0000 | a form of carbon having a large molecule consisting of an empty cage of sixty or more carbon atoms -14622350 27 n 02 buckminsterfullerene 0 buckyball 0 001 @ 14622141 n 0000 | a spheroidal fullerene; the first known example of a fullerene -14622491 27 n 02 carbon_nanotube 0 nanotube 0 001 @ 14622141 n 0000 | a fullerene molecule having a cylindrical or toroidal shape -14622623 27 n 03 benzyl 0 benzyl_group 0 benzyl_radical 0 002 @ 14621446 n 0000 + 02662142 a 0101 | the univalent radical derived from toluene -14622768 27 n 02 benzoyl_group 0 benzoyl_radical 0 001 @ 14621446 n 0000 | the univalent radical derived from benzoic acid -14622893 27 n 02 chemical_element 0 element 0 050 @ 00019613 n 0000 %p 14619225 n 0000 ~ 14624025 n 0000 ~ 14624191 n 0000 ~ 14624369 n 0000 ~ 14625458 n 0000 ~ 14627246 n 0000 ~ 14627373 n 0000 ~ 14627655 n 0000 ~ 14628920 n 0000 ~ 14629149 n 0000 ~ 14629561 n 0000 ~ 14631757 n 0000 ~ 14631871 n 0000 ~ 14632129 n 0000 ~ 14633206 n 0000 ~ 14634591 n 0000 ~ 14636392 n 0000 ~ 14636523 n 0000 ~ 14637507 n 0000 ~ 14638517 n 0000 ~ 14639795 n 0000 ~ 14639921 n 0000 ~ 14640434 n 0000 ~ 14641397 n 0000 ~ 14642916 n 0000 ~ 14643323 n 0000 ~ 14644963 n 0000 ~ 14645092 n 0000 ~ 14646152 n 0000 ~ 14647235 n 0000 ~ 14647722 n 0000 ~ 14648100 n 0000 ~ 14649197 n 0000 ~ 14649775 n 0000 ~ 14652104 n 0000 ~ 14652824 n 0000 ~ 14653416 n 0000 ~ 14654058 n 0000 ~ 14654175 n 0000 ~ 14654541 n 0000 ~ 14656219 n 0000 ~ 14657228 n 0000 ~ 14659794 n 0000 ~ 14659922 n 0000 ~ 14660052 n 0000 ~ 14660183 n 0000 ~ 14660314 n 0000 ~ 14661274 n 0000 ~ 15076931 n 0000 | any of the more than 100 known substances (of which 92 occur naturally) that cannot be separated into simpler substances and that singly or in combination constitute all matter -14624025 27 n 01 allotrope 0 002 @ 14622893 n 0000 + 02613683 a 0101 | a structurally different form of an element; "graphite and diamond are allotropes of carbon" -14624191 27 n 01 transuranic_element 0 001 @ 14622893 n 0000 | any element having an atomic number greater than 92 (which is the atomic number of uranium); all are radioactive -14624369 27 n 03 noble_gas 0 inert_gas 0 argonon 0 008 @ 14622893 n 0000 @ 14877585 n 0000 ~ 14628920 n 0000 ~ 14639921 n 0000 ~ 14642916 n 0000 ~ 14646152 n 0000 ~ 14652104 n 0000 ~ 14661274 n 0000 | any of the chemically inert gaseous elements of the helium group in the periodic table -14624659 27 n 01 helium_group 0 001 @ 08457976 n 0000 | the series of inert gases -14624743 27 n 05 rare_earth 0 rare-earth_element 0 lanthanoid 0 lanthanide 0 lanthanon 0 002 @ 00031264 n 0000 ~ 14624944 n 0000 | any element of the lanthanide series (atomic numbers 57 through 71) -14624944 27 n 01 terbium_metal 0 001 @ 14624743 n 0000 | a separate group of related lanthanides, including terbium, europium, gadolinium, and sometimes dysprosium -14625110 27 n 01 actinide_series 0 002 @ 08457976 n 0000 ;c 06084469 n 0000 | (chemistry) a series of 15 radioactive elements with increasing atomic numbers from actinium to lawrencium -14625297 27 n 01 lanthanide_series 0 001 @ 08457976 n 0000 | the rare-earth elements with atomic numbers 57 through 71; having properties similar to lanthanum -14625458 27 n 02 metallic_element 0 metal 0 080 @ 14622893 n 0000 + 01527420 a 0201 + 01603303 v 0201 ~ 14612077 n 0000 ~ 14618674 n 0000 ~ 14627081 n 0000 ~ 14627820 n 0000 ~ 14628494 n 0000 ~ 14628668 n 0000 ~ 14629998 n 0000 ~ 14631134 n 0000 ~ 14631295 n 0000 ~ 14631502 n 0000 ~ 14632444 n 0000 ~ 14632648 n 0000 ~ 14633037 n 0000 ~ 14633957 n 0000 ~ 14634232 n 0000 ~ 14635092 n 0000 ~ 14635290 n 0000 ~ 14635722 n 0000 ~ 14636220 n 0000 ~ 14636647 n 0000 ~ 14636822 n 0000 ~ 14636988 n 0000 ~ 14637176 n 0000 ~ 14637339 n 0000 ~ 14637864 n 0000 ~ 14638041 n 0000 ~ 14638256 n 0000 ~ 14639556 n 0000 ~ 14640222 n 0000 ~ 14641223 n 0000 ~ 14642219 n 0000 ~ 14642417 n 0000 ~ 14643118 n 0000 ~ 14643467 n 0000 ~ 14643793 n 0000 ~ 14644063 n 0000 ~ 14644249 n 0000 ~ 14644654 n 0000 ~ 14645346 n 0000 ~ 14645661 n 0000 ~ 14645882 n 0000 ~ 14646403 n 0000 ~ 14646610 n 0000 ~ 14646942 n 0000 ~ 14647907 n 0000 ~ 14648754 n 0000 ~ 14650556 n 0000 ~ 14650807 n 0000 ~ 14651212 n 0000 ~ 14651479 n 0000 ~ 14651708 n 0000 ~ 14651921 n 0000 ~ 14652390 n 0000 ~ 14652623 n 0000 ~ 14652954 n 0000 ~ 14653242 n 0000 ~ 14653596 n 0000 ~ 14653831 n 0000 ~ 14655371 n 0000 ~ 14655731 n 0000 ~ 14656666 n 0000 ~ 14657047 n 0000 ~ 14657566 n 0000 ~ 14657818 n 0000 ~ 14658109 n 0000 ~ 14658546 n 0000 ~ 14658855 n 0000 ~ 14659211 n 0000 ~ 14659512 n 0000 ~ 14660443 n 0000 ~ 14661020 n 0000 ~ 14661482 n 0000 ~ 14661740 n 0000 ~ 14661977 n 0000 ~ 14662281 n 0000 ~ 14712224 n 0000 ~ 14712489 n 0000 | any of several chemical elements that are usually shiny solids that conduct heat or electricity and can be formed into sheets etc. -14627081 27 n 01 noble_metal 0 004 @ 14625458 n 0000 ~ 14638799 n 0000 ~ 14649543 n 0000 ~ 14654954 n 0000 | any metal that is resistant to corrosion or oxidation -14627246 27 n 01 nonmetal 0 002 @ 14622893 n 0000 + 01529293 a 0102 | a chemical element lacking typical metallic properties -14627373 27 n 01 transactinide 0 002 @ 14622893 n 0000 + 02873213 a 0101 | any of the artificially produced elements with atomic numbers greater than 103 -14627529 27 n 01 metallized_dye 0 001 @ 14754378 n 0000 | acid dye in which the negative ion contains a chelated metal atom -14627655 27 n 03 actinium 0 Ac 0 atomic_number_89 0 002 @ 14622893 n 0000 #s 15084824 n 0000 | a radioactive element of the actinide series; found in uranium ores -14627820 27 n 04 aluminum 0 aluminium 0 Al 0 atomic_number_13 0 009 @ 14625458 n 0000 #s 02700767 n 0000 #s 14668277 n 0000 #s 14839322 n 0000 + 02615207 a 0101 + 01338113 v 0101 + 01338113 v 0102 ~ 14628119 n 0000 ~ 14628307 n 0000 | a silvery ductile metallic element found primarily in bauxite -14628119 27 n 03 alum 1 potassium_alum 0 potash_alum 0 002 @ 14627820 n 0000 @ 15011987 n 0000 | a white crystalline double sulfate of aluminum: the potassium double sulfate of aluminum -14628307 27 n 03 alum 2 ammonia_alum 0 ammonium_alum 0 002 @ 14627820 n 0000 @ 15011987 n 0000 | a white crystalline double sulfate of aluminum: the ammonium double sulfate of aluminum -14628494 27 n 03 americium 0 Am 0 atomic_number_95 0 001 @ 14625458 n 0000 | a radioactive transuranic metallic element; discovered by bombarding uranium with helium atoms -14628668 27 n 03 antimony 0 Sb 0 atomic_number_51 0 005 @ 14625458 n 0000 #s 15060449 n 0000 + 01528126 a 0101 + 02630221 a 0101 + 02630221 a 0102 | a metallic element having four allotropic forms; used in a wide variety of alloys; found in stibnite -14628920 27 n 03 argon 0 Ar 0 atomic_number_18 0 003 @ 14622893 n 0000 @ 14624369 n 0000 #s 14841267 n 0000 | a colorless and odorless inert gas; one of the six inert gases; comprises approximately 1% of the earth's atmosphere -14629149 27 n 03 arsenic 0 As 0 atomic_number_33 0 008 @ 14622893 n 0000 #s 14906850 n 0000 #s 14919948 n 0000 #s 14667328 n 0000 #s 14688831 n 0000 #s 14694910 n 0000 + 02641731 a 0101 + 02641571 a 0101 | a very poisonous metallic element that has three allotropic forms; arsenic and arsenic compounds are used as herbicides and insecticides and various alloys; found in arsenopyrite and orpiment and realgar -14629561 27 n 03 astatine 0 At 0 atomic_number_85 0 002 @ 14622893 n 0000 @ 14904661 n 0000 | a highly unstable radioactive element (the heaviest of the halogen series); a decay product of uranium and thorium -14629772 27 n 01 atrazine 0 001 @ 14906850 n 0000 | a synthetic compound derived from triazine that is widely used as an agricultural herbicide; "atrazine is thought to cause cancer and is banned in some European countries" -14629998 27 n 03 barium 0 Ba 0 atomic_number_56 0 004 @ 14625458 n 0000 #s 14678230 n 0000 + 02658629 a 0101 ~ 14630204 n 0000 | a soft silvery metallic element of the alkali earth group; found in barite -14630204 27 n 01 baryta 0 005 @ 14629998 n 0000 + 02659044 a 0101 ~ 14630363 n 0000 ~ 14630492 n 0000 ~ 14630630 n 0000 | any of several compounds of barium -14630363 27 n 01 barium_hydroxide 0 001 @ 14630204 n 0000 | white poisonous crystals; made by dissolving barium oxide in water -14630492 27 n 03 barium_monoxide 0 barium_oxide 0 barium_protoxide 0 001 @ 14630204 n 0000 | an oxide of barium; a whitish toxic powder -14630630 27 n 02 barium_dioxide 0 barium_peroxide 0 001 @ 14630204 n 0000 | a white toxic powder obtained by heating barium oxide in air -14630769 27 n 01 base_pair 0 002 @ 14964590 n 0000 #p 14830364 n 0000 | one of the pairs of chemical bases joined by hydrogen bonds that connect the complementary strands of a DNA molecule or of an RNA molecule that has two strands; the base pairs are adenine with thymine and guanine with cytosine in DNA and adenine with uracil and guanine with cytosine in RNA -14631134 27 n 03 berkelium 0 Bk 0 atomic_number_97 0 001 @ 14625458 n 0000 | a radioactive transuranic element; discovered by bombarding americium with helium -14631295 27 n 04 beryllium 0 Be 0 glucinium 0 atomic_number_4 0 004 @ 14625458 n 0000 #s 14668539 n 0000 #s 14671372 n 0000 #s 14675569 n 0000 | a light strong brittle grey toxic bivalent metallic element -14631502 27 n 03 bismuth 0 Bi 0 atomic_number_83 0 002 @ 14625458 n 0000 + 02837489 a 0101 | a heavy brittle diamagnetic trivalent metallic element (resembles arsenic and antimony chemically); usually recovered as a by-product from ores of other metals -14631757 27 n 04 bohrium 0 Bh 0 element_107 0 atomic_number_107 0 001 @ 14622893 n 0000 | a transuranic element -14631871 27 n 03 boron 0 B 0 atomic_number_5 0 005 @ 14622893 n 0000 #s 14679267 n 0000 #s 14669084 n 0000 + 02668058 a 0101 + 03050870 a 0101 | a trivalent metalloid element; occurs both in a hard black crystal and in the form of a yellow or brown powder -14632129 27 n 03 bromine 0 Br 0 atomic_number_35 0 008 @ 14622893 n 0000 @ 14904661 n 0000 #s 15008847 n 0000 + 02671577 a 0101 + 00525674 v 0102 + 00187016 v 0102 + 00525674 v 0101 + 00187016 v 0101 | a nonmetallic heavy volatile corrosive dark brown liquid element belonging to the halogens; found in sea water -14632444 27 n 03 cadmium 0 Cd 0 atomic_number_48 0 002 @ 14625458 n 0000 #s 14678406 n 0000 | a soft bluish-white ductile malleable toxic bivalent metallic element; occurs in association with zinc ores -14632648 27 n 03 calcium 0 Ca 0 atomic_number_20 0 009 @ 14625458 n 0000 #s 14789885 n 0000 #s 14936226 n 0000 #s 14677778 n 0000 #s 14675356 n 0000 + 00498988 v 0101 + 00498530 v 0101 + 00498662 v 0101 ~ 15071229 n 0000 | a white metallic element that burns with a brilliant light; the fifth most abundant element in the earth's crust; an important component of most plants and animals -14633037 27 n 03 californium 0 Cf 0 atomic_number_98 0 001 @ 14625458 n 0000 | a radioactive transuranic element; discovered by bombarding curium with alpha particles -14633206 27 n 03 carbon 0 C 0 atomic_number_6 0 020 @ 14622893 n 0000 #s 14814616 n 0000 #s 14980579 n 0000 #s 14936226 n 0000 + 02863724 a 0103 + 02627221 v 0101 + 00373520 v 0103 + 00373520 v 0104 + 00373520 v 0101 + 00369628 v 0101 + 00373520 v 0102 + 00369628 v 0102 ~ 14622141 n 0000 ~ 14633856 n 0000 ~ 14685172 n 0000 ~ 14685296 n 0000 ~ 14793533 n 0000 ~ 14796359 n 0000 ~ 14796575 n 0000 ~ 14834563 n 0000 | an abundant nonmetallic tetravalent element occurring in three allotropic forms: amorphous carbon and graphite and diamond; occurs in all organic compounds -14633781 27 n 01 carbon_atom 0 001 @ 14619225 n 0000 | an atom of carbon -14633856 27 n 02 radiocarbon 0 carbon_14 0 001 @ 14633206 n 0000 | a radioactive isotope of carbon -14633957 27 n 03 cerium 0 Ce 0 atomic_number_58 0 005 @ 14625458 n 0000 #s 14682642 n 0000 #s 14668065 n 0000 #s 14675569 n 0000 + 02689658 a 0101 | a ductile grey metallic element of the lanthanide series; used in lighter flints; the most abundant of the rare-earth group -14634232 27 n 04 cesium 0 caesium 0 Cs 0 atomic_number_55 0 003 @ 14625458 n 0000 #s 14691085 n 0000 ~ 14634477 n 0000 | a soft silver-white ductile metallic element (liquid at normal temperatures); the most electropositive and alkaline metal -14634477 27 n 01 cesium_137 0 001 @ 14634232 n 0000 | a radioactive isotope of cesium used in radiation therapy -14634591 27 n 03 chlorine 0 Cl 0 atomic_number_17 0 007 @ 14622893 n 0000 @ 14877585 n 0000 @ 14904661 n 0000 #s 14672023 n 0000 + 00186567 v 0101 + 00089602 v 0101 ~ 14634999 n 0000 | a common nonmetallic element belonging to the halogens; best known as a heavy yellow irritating toxic gas; used to purify water and as a bleaching agent and disinfectant; occurs naturally only as a salt (as in sea water) -14634999 27 n 01 radiochlorine 0 001 @ 14634591 n 0000 | a radioactive isotope of chlorine -14635092 27 n 03 chromium 0 Cr 0 atomic_number_24 0 003 @ 14625458 n 0000 #s 14671125 n 0000 ~ 14810704 n 0000 | a hard brittle multivalent metallic element; resistant to corrosion and tarnishing -14635290 27 n 03 cobalt 0 Co 1 atomic_number_27 0 004 @ 14625458 n 0000 #s 15043118 n 0000 #s 14671895 n 0000 ~ 14635542 n 0000 | a hard ferromagnetic silver-white bivalent or trivalent metallic element; a trace element in plant and animal nutrition -14635542 27 n 01 cobalt_60 0 001 @ 14635290 n 0000 | a radioactive isotope of cobalt with mass number 60; a source of exceptionally intense gamma rays; used in radiation therapy -14635722 27 n 03 copper 0 Cu 0 atomic_number_29 0 012 @ 14625458 n 0000 #s 14716997 n 0000 #s 14717275 n 0000 @ 14821043 n 0000 #s 14669242 n 0000 #s 14670344 n 0000 #s 14670481 n 0000 #s 14673325 n 0000 #s 14680661 n 0000 + 02707889 a 0101 + 01265880 v 0101 ~ 14781513 n 0000 | a ductile malleable reddish-brown corrosion-resistant diamagnetic metallic element; occurs in various minerals but is the only metal that occurs abundantly in large masses; used as an electrical and thermal conductor -14636220 27 n 03 curium 0 Cm 0 atomic_number_96 0 001 @ 14625458 n 0000 | a radioactive transuranic metallic element; produced by bombarding plutonium with helium nuclei -14636392 27 n 04 darmstadtium 0 Ds 0 element_110 0 atomic_number_110 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14636523 27 n 05 dubnium 0 Db 0 hahnium 0 element_105 0 atomic_number_105 0 001 @ 14622893 n 0000 | a transuranic element -14636647 27 n 03 dysprosium 0 Dy 0 atomic_number_66 0 001 @ 14625458 n 0000 | a trivalent metallic element of the rare earth group; forms compounds that are highly magnetic -14636822 27 n 04 einsteinium 0 Es 0 E 0 atomic_number_99 0 001 @ 14625458 n 0000 | a radioactive transuranic element produced by bombarding plutonium with neutrons -14636988 27 n 03 erbium 0 Er 0 atomic_number_68 0 003 @ 14625458 n 0000 #s 14675569 n 0000 #s 14675012 n 0000 | a trivalent metallic element of the rare earth group; occurs with yttrium -14637176 27 n 03 europium 0 Eu 0 atomic_number_63 0 002 @ 14625458 n 0000 #s 14682642 n 0000 | a bivalent and trivalent metallic element of the rare earth group -14637339 27 n 03 fermium 0 Fm 0 atomic_number_100 0 001 @ 14625458 n 0000 | a radioactive transuranic metallic element produced by bombarding plutonium with neutrons -14637507 27 n 03 fluorine 0 F 0 atomic_number_9 0 006 @ 14622893 n 0000 @ 14877585 n 0000 @ 14904661 n 0000 #s 14675356 n 0000 #s 14675216 n 0000 #s 14673150 n 0000 | a nonmetallic univalent element belonging to the halogens; usually a yellow irritating toxic flammable gas; a powerful oxidizing agent; recovered from fluorite or cryolite or fluorapatite -14637864 27 n 03 francium 0 Fr 0 atomic_number_87 0 001 @ 14625458 n 0000 | a radioactive element of the alkali-metal group discovered as a disintegration product of actinium -14638041 27 n 03 gadolinium 0 Gd 0 atomic_number_64 0 003 @ 14625458 n 0000 #s 14675569 n 0000 #s 15012668 n 0000 | a ductile silvery-white ductile ferromagnetic trivalent metallic element of the rare earth group -14638256 27 n 03 gallium 0 Ga 0 atomic_number_31 0 002 @ 14625458 n 0000 #s 14668277 n 0000 | a rare silvery (usually trivalent) metallic element; brittle at low temperatures but liquid above room temperature; occurs in trace amounts in bauxite and zinc ores -14638517 27 n 03 germanium 0 Ge 0 atomic_number_32 0 004 @ 14622893 n 0000 @ 14821248 n 0000 #s 14676608 n 0000 #s 14667181 n 0000 | a brittle grey crystalline element that is a semiconducting metalloid (resembling silicon) used in transistors; occurs in germanite and argyrodite -14638799 27 n 03 gold 0 Au 0 atomic_number_79 0 011 @ 14627081 n 0000 #s 14833618 n 0000 #s 15065713 n 0000 #s 03444728 n 0000 #s 03444838 n 0000 #s 13371760 n 0000 + 01528730 a 0101 ~ 14639467 n 0000 ~ 14719025 n 0000 ~ 14891425 n 0000 ~ 14892405 n 0000 | a soft yellow malleable ductile (trivalent and univalent) metallic element; occurs mainly as nuggets in rocks and alluvial deposits; does not react with most chemicals but is attacked by chlorine and aqua regia -14639269 27 n 01 18-karat_gold 0 001 @ 14586769 n 0000 | an alloy that contains 75 per cent gold -14639368 27 n 01 22-karat_gold 0 001 @ 14586769 n 0000 | an alloy that contains 87 per cent gold -14639467 27 n 02 24-karat_gold 0 pure_gold 0 001 @ 14638799 n 0000 | 100 per cent gold -14639556 27 n 03 hafnium 0 Hf 0 atomic_number_72 0 001 @ 14625458 n 0000 | a grey tetravalent metallic element that resembles zirconium chemically and is found in zirconium minerals; used in filaments for its ready emission of electrons -14639795 27 n 04 hassium 0 Hs 0 element_108 0 atomic_number_108 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14639921 27 n 03 helium 0 He 0 atomic_number_2 0 002 @ 14622893 n 0000 @ 14624369 n 0000 | a very light colorless element that is one of the six inert gasses; the most difficult gas to liquefy; occurs in economically extractable amounts in certain natural gases (as those found in Texas and Kansas) -14640222 27 n 03 holmium 0 Ho 0 atomic_number_67 0 002 @ 14625458 n 0000 #s 14675569 n 0000 | a trivalent metallic element of the rare earth group; occurs together with yttrium; forms highly magnetic compounds -14640434 27 n 03 hydrogen 0 H 0 atomic_number_1 0 005 @ 14622893 n 0000 @ 14877585 n 0000 #s 14845743 n 0000 + 00308534 v 0101 ~ 14611521 n 0000 | a nonmetallic univalent element that is normally a colorless and odorless highly flammable diatomic gas; the simplest and lightest and most abundant element in the universe -14640756 27 n 01 hydrogen_atom 0 004 @ 14619225 n 0000 %p 09307719 n 0000 ~ 14640890 n 0000 ~ 14641046 n 0000 | an atom of hydrogen -14640890 27 n 02 acidic_hydrogen 0 acid_hydrogen 0 001 @ 14640756 n 0000 | a hydrogen atom in an acid that forms a positive ion when the acid dissociates -14641046 27 n 02 deuterium 0 heavy_hydrogen 0 002 @ 14640756 n 0000 @ 14619658 n 0000 | an isotope of hydrogen which has one neutron (as opposed to zero neutrons in hydrogen) -14641223 27 n 03 indium 0 In 0 atomic_number_49 0 002 @ 14625458 n 0000 #s 15107876 n 0000 | a rare soft silvery metallic element; occurs in small quantities in sphalerite -14641397 27 n 04 iodine 0 iodin 0 I 0 atomic_number_53 0 008 @ 14622893 n 0000 @ 14904661 n 0000 #s 15008847 n 0000 + 00520881 v 0101 + 00184907 v 0101 + 00184907 v 0102 ~ 14641797 n 0000 ~ 14642005 n 0000 | a nonmetallic element belonging to the halogens; used especially in medicine and photography and in dyes; occurs naturally only in combination in small quantities (as in sea water or rocks) -14641797 27 n 01 iodine-131 0 002 @ 14641397 n 0000 @ 14619857 n 0000 | heavy radioactive isotope of iodine with a half-life of 8 days; used in a sodium salt to diagnose thyroid disease and to treat goiter -14642005 27 n 01 iodine-125 0 002 @ 14641397 n 0000 @ 14619857 n 0000 | light radioactive isotope of iodine with a half-life of 60 days; used as a tracer in thyroid studies and as a treatment for hyperthyroidism -14642219 27 n 03 iridium 0 Ir 0 atomic_number_77 0 001 @ 14625458 n 0000 | a heavy brittle metallic element of the platinum group; used in alloys; occurs in natural alloys with platinum or osmium -14642417 27 n 03 iron 0 Fe 0 atomic_number_26 0 014 @ 14625458 n 0000 #s 14802450 n 0000 #s 14923458 n 0000 ~ 14720692 n 0000 ~ 14722056 n 0000 ~ 14722240 n 0000 ~ 14722426 n 0000 ~ 14801845 n 0000 ~ 14801921 n 0000 ~ 14802262 n 0000 ~ 14877100 n 0000 ~ 14983491 n 0000 ~ 15020974 n 0000 ~ 15063108 n 0000 | a heavy ductile magnetic metallic element; is silver-white in pure form but readily rusts; used in construction and tools and armament; plays a role in the transport of oxygen by the blood -14642916 27 n 03 krypton 0 Kr 0 atomic_number_36 0 003 @ 14622893 n 0000 @ 14624369 n 0000 #s 14841267 n 0000 | a colorless element that is one of the six inert gasses; occurs in trace amounts in air -14643118 27 n 03 lanthanum 0 La 0 atomic_number_57 0 001 @ 14625458 n 0000 | a white soft metallic element that tarnishes readily; occurs in rare earth minerals and is usually classified as a rare earth -14643323 27 n 03 lawrencium 0 Lr 0 atomic_number_103 0 001 @ 14622893 n 0000 | a radioactive transuranic element synthesized from californium -14643467 27 n 03 lead 0 Pb 0 atomic_number_82 0 006 @ 14625458 n 0000 #s 14675910 n 0000 #s 14670178 n 0000 ~ 14905076 n 0000 ~ 14905197 n 0000 ~ 14983694 n 0000 | a soft heavy toxic malleable metallic element; bluish white when freshly cut but tarnishes readily to dull grey; "the children were playing with lead soldiers" -14643793 27 n 03 lithium 0 Li 0 atomic_number_3 0 005 @ 14625458 n 0000 #s 14680261 n 0000 #s 14665605 n 0000 #s 15052223 n 0000 #s 15109016 n 0000 | a soft silver-white univalent element of the alkali metal group; the lightest metal known; occurs in several minerals -14644063 27 n 04 lutetium 0 lutecium 0 Lu 0 atomic_number_71 0 001 @ 14625458 n 0000 | a trivalent metallic element of the rare earth group; usually occurs in association with yttrium -14644249 27 n 03 magnesium 0 Mg 0 atomic_number_12 0 007 @ 14625458 n 0000 #s 14669413 n 0000 #s 14673747 n 0000 #s 14680514 n 0000 #s 14684111 n 0000 #s 14690607 n 0000 #s 15050898 n 0000 | a light silver-white ductile bivalent metallic element; in pure form it burns with brilliant white flame; occurs naturally only in combination (as in magnesite and dolomite and carnallite and spinel and olivine) -14644654 27 n 03 manganese 0 Mn 0 atomic_number_25 0 006 @ 14625458 n 0000 #s 14678068 n 0000 #s 14681100 n 0000 #s 14692342 n 0000 #s 14692973 n 0000 #s 14696035 n 0000 | a hard brittle grey polyvalent metallic element that resembles iron but is not magnetic; used in making steel; occurs in many minerals -14644963 27 n 04 meitnerium 0 Mt 0 element_109 0 atomic_number_109 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14645092 27 n 04 mendelevium 0 Md 0 Mv 0 atomic_number_101 0 001 @ 14622893 n 0000 | a radioactive transuranic element synthesized by bombarding einsteinium with alpha particles (Md is the current symbol for mendelevium but Mv was formerly the symbol) -14645346 27 n 05 mercury 0 quicksilver 0 hydrargyrum 0 Hg 0 atomic_number_80 0 006 @ 14625458 n 0000 #s 14671587 n 0000 #s 14950937 n 0000 + 02866278 a 0101 + 02763520 a 0101 + 02763520 a 0102 | a heavy silvery toxic univalent and bivalent metallic element; the only metal that is liquid at ordinary temperatures -14645661 27 n 03 molybdenum 0 Mo 0 atomic_number_42 0 002 @ 14625458 n 0000 #s 14682469 n 0000 | a polyvalent metallic element that resembles chromium and tungsten in its properties; used to strengthen and harden steel -14645882 27 n 03 neodymium 0 Nd 0 atomic_number_60 0 003 @ 14625458 n 0000 #s 14682642 n 0000 #s 14668065 n 0000 | a yellow trivalent metallic element of the rare earth group; occurs in monazite and bastnasite in association with cerium and lanthanum and praseodymium -14646152 27 n 03 neon 0 Ne 0 atomic_number_10 0 003 @ 14622893 n 0000 @ 14624369 n 0000 #s 14841267 n 0000 | a colorless odorless gaseous element that give a red glow in a vacuum tube; one of the six inert gasses; occurs in the air in small amounts -14646403 27 n 03 neptunium 0 Np 0 atomic_number_93 0 001 @ 14625458 n 0000 | a radioactive transuranic metallic element; found in trace amounts in uranium ores; a by-product of the production of plutonium -14646610 27 n 03 nickel 0 Ni 0 atomic_number_28 0 006 @ 14625458 n 0000 #s 14676326 n 0000 #s 14681987 n 0000 #s 14689672 n 0000 #s 15043118 n 0000 + 01395663 v 0101 | a hard malleable ductile silvery metallic element that is resistant to corrosion; used in alloys; occurs in pentlandite and smaltite and garnierite and millerite -14646942 27 n 03 niobium 0 Nb 0 atomic_number_41 0 003 @ 14625458 n 0000 #s 14683859 n 0000 ~ 14647154 n 0000 | a soft grey ductile metallic element used in alloys; occurs in niobite; formerly called columbium -14647154 27 n 01 columbium 0 001 @ 14646942 n 0000 | a former name for niobium -14647235 27 n 03 nitrogen 0 N 0 atomic_number_7 0 008 @ 14622893 n 0000 @ 14877585 n 0000 #s 14841267 n 0000 + 03091861 a 0101 + 00504676 v 0102 + 00504676 v 0101 ~ 14647623 n 0000 ~ 14940750 n 0000 | a common nonmetallic element that is normally a colorless odorless tasteless inert diatomic gas; constitutes 78 percent of the atmosphere by volume; a constituent of all living tissues -14647623 27 n 01 azote 0 002 @ 14647235 n 0000 + 03091996 a 0101 | an obsolete name for nitrogen -14647722 27 n 03 nobelium 0 No 0 atomic_number_102 0 001 @ 14622893 n 0000 | a radioactive transuranic element synthesized by bombarding curium with carbon ions; 7 isotopes are known -14647907 27 n 03 osmium 0 Os 0 atomic_number_76 0 001 @ 14625458 n 0000 | a hard brittle blue-grey or blue-black metallic element that is one of the platinum metals; the heaviest metal known -14648100 27 n 03 oxygen 0 O 0 atomic_number_8 0 009 @ 14622893 n 0000 @ 14877585 n 0000 #s 14845743 n 0000 #s 14841267 n 0000 #s 14972807 n 0000 + 00185465 v 0101 + 00308269 v 0101 + 00185465 v 0102 ~ 14648526 n 0000 | a nonmetallic bivalent element that is normally a colorless odorless tasteless nonflammable diatomic gas; constitutes 21 percent of the atmosphere by volume; the most abundant element in the earth's crust -14648526 27 n 02 liquid_oxygen 0 LOX 0 001 @ 14648100 n 0000 | a bluish translucent magnetic liquid obtained by compressing gaseous oxygen and then cooling it below its boiling point; used as an oxidizer in rocket propellants -14648754 27 n 03 palladium 0 Pd 0 atomic_number_46 0 001 @ 14625458 n 0000 | a silver-white metallic element of the platinum group that resembles platinum; occurs in some copper and nickel ores; does not tarnish at ordinary temperatures and is used (alloyed with gold) in jewelry -14649036 27 n 01 phosphor 0 001 @ 14901959 n 0000 | a synthetic substance that is fluorescent or phosphorescent; used to coat the screens of cathode ray tubes -14649197 27 n 03 phosphorus 0 P 0 atomic_number_15 0 004 @ 14622893 n 0000 #s 14666510 n 0000 + 03099742 a 0102 + 03099742 a 0101 | a multivalent nonmetallic element of the nitrogen family that occurs commonly in inorganic phosphate rocks and as organic phosphates in all living cells; is highly reactive and occurs in several allotropic forms -14649543 27 n 03 platinum 0 Pt 0 atomic_number_78 0 001 @ 14627081 n 0000 | a heavy precious metallic element; grey-white and resistant to corroding; occurs in some nickel and copper ores and is also found native in some deposits -14649775 27 n 03 plutonium 0 Pu 0 atomic_number_94 0 002 @ 14622893 n 0000 ~ 14650137 n 0000 | a solid silvery grey radioactive transuranic element whose atoms can be split when bombarded with neutrons; found in minute quantities in uranium ores but is usually synthesized in nuclear reactors; 13 isotopes are known with the most important being plutonium 239 -14650137 27 n 01 plutonium_239 0 002 @ 14649775 n 0000 ~ 14650366 n 0000 | a highly fissionable isotope of plutonium that is used in atomic weapons and as a reactor fuel; produced by irradiating uranium 238 with slow electrons -14650366 27 n 02 weapons_plutonium 0 weapon-grade_plutonium 0 001 @ 14650137 n 0000 | plutonium 239 that is recovered when nuclear weapons are disassembled; it is stored in plutonium pits -14650556 27 n 03 polonium 0 Po 0 atomic_number_84 0 001 @ 14625458 n 0000 | a radioactive metallic element that is similar to tellurium and bismuth; occurs in uranium ores but can be produced by bombarding bismuth with neutrons in a nuclear reactor -14650807 27 n 03 potassium 0 K 0 atomic_number_19 0 006 @ 14625458 n 0000 #s 15008847 n 0000 #s 14669413 n 0000 #s 14678952 n 0000 #s 14679882 n 0000 #s 15065928 n 0000 | a light soft silver-white metallic element of the alkali metal group; oxidizes rapidly in air and reacts violently with water; is abundant in nature in combined forms occurring in sea water and in carnallite and kainite and sylvite -14651212 27 n 03 praseodymium 0 Pr 0 atomic_number_59 0 003 @ 14625458 n 0000 #s 14668065 n 0000 #s 14682642 n 0000 | a soft yellowish-white trivalent metallic element of the rare earth group; can be recovered from bastnasite or monazite by an ion-exchange process -14651479 27 n 03 promethium 0 Pm 0 atomic_number_61 0 001 @ 14625458 n 0000 | a soft silvery metallic element of the rare earth group having no stable isotope; was discovered in radioactive form as a fission product of uranium -14651708 27 n 04 protactinium 0 protoactinium 0 Pa 0 atomic_number_91 0 001 @ 14625458 n 0000 | a short-lived radioactive metallic element formed from uranium and disintegrating into actinium and then into lead -14651921 27 n 03 radium 0 Ra 0 atomic_number_88 0 002 @ 14625458 n 0000 #s 15084824 n 0000 | an intensely radioactive metallic element that occurs in minute amounts in uranium ores -14652104 27 n 03 radon 0 Rn 0 atomic_number_86 0 002 @ 14622893 n 0000 @ 14624369 n 0000 | a radioactive gaseous element formed by the disintegration of radium; the heaviest of the inert gasses; occurs naturally (especially in areas over granite) and is considered a hazard to health -14652390 27 n 03 rhenium 0 Re 0 atomic_number_75 0 001 @ 14625458 n 0000 | a rare heavy polyvalent metallic element that resembles manganese chemically and is used in some alloys; is obtained as a by-product in refining molybdenum -14652623 27 n 03 rhodium 0 Rh 0 atomic_number_45 0 001 @ 14625458 n 0000 | a white hard metallic element that is one of the platinum group and is found in platinum ores; used in alloys with platinum -14652824 27 n 04 roentgenium 0 Rg 0 element_111 0 atomic_number_111 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14652954 27 n 03 rubidium 0 Rb 0 atomic_number_37 0 004 @ 14625458 n 0000 #s 14669413 n 0000 #s 14680261 n 0000 #s 14691085 n 0000 | a soft silvery metallic element of the alkali metal group; burns in air and reacts violently in water; occurs in carnallite and lepidolite and pollucite -14653242 27 n 03 ruthenium 0 Ru 0 atomic_number_44 0 001 @ 14625458 n 0000 | a rare polyvalent metallic element of the platinum group; it is found associated with platinum -14653416 27 n 06 rutherfordium 0 Rf 0 unnilquadium 0 Unq 0 element_104 0 atomic_number_104 0 001 @ 14622893 n 0000 | a radioactive transuranic element which has been synthesized -14653596 27 n 03 samarium 0 Sm 0 atomic_number_62 0 003 @ 14625458 n 0000 #s 14668065 n 0000 #s 14682642 n 0000 | a grey lustrous metallic element of the rare earth group; is used in special alloys; occurs in monazite and bastnasite -14653831 27 n 03 scandium 0 Sc 0 atomic_number_21 0 002 @ 14625458 n 0000 #s 15070550 n 0000 | a white trivalent metallic element; sometimes classified in the rare earth group; occurs in the Scandinavian mineral thortveitite -14654058 27 n 04 seaborgium 0 Sg 0 element_106 0 atomic_number_106 0 001 @ 14622893 n 0000 | a transuranic element -14654175 27 n 03 selenium 0 Se 0 atomic_number_34 0 003 @ 14622893 n 0000 @ 14724645 n 0000 #s 14692682 n 0000 | a toxic nonmetallic element related to sulfur and tellurium; occurs in several allotropic forms; a stable grey metallike allotrope conducts electricity better in the light than in the dark and is used in photocells; occurs in sulfide ores (as pyrite) -14654541 27 n 03 silicon 0 Si 0 atomic_number_14 0 008 @ 14622893 n 0000 @ 14821248 n 0000 #s 15040493 n 0000 #s 14813182 n 0000 #s 14864961 n 0000 #s 14890286 n 0000 #s 14693733 n 0000 #s 15019030 n 0000 | a tetravalent nonmetallic element; next to oxygen it is the most abundant element in the earth's crust; occurs in clay and feldspar and granite and quartz and sand; used as a semiconductor in transistors -14654954 27 n 03 silver 0 Ag 0 atomic_number_47 0 008 @ 14627081 n 0000 @ 14821043 n 0000 #s 15057433 n 0000 #s 14666885 n 0000 #s 13371866 n 0000 + 00283327 a 0103 + 01395493 v 0101 ~ 14816613 n 0000 | a soft white precious univalent metallic element having the highest electrical and thermal conductivity of any metal; occurs in argentite and in free form; used in coins and jewelry and tableware and photography -14655371 27 n 03 sodium 0 Na 0 atomic_number_11 0 003 @ 14625458 n 0000 #s 15008847 n 0000 #s 14672224 n 0000 | a silvery soft waxy metallic element of the alkali metal group; occurs abundantly in natural compounds (especially in salt water); burns with a yellow flame and reacts violently in water; occurs in sea water and in the mineral halite (rock salt) -14655731 27 n 03 strontium 0 Sr 0 atomic_number_38 0 004 @ 14625458 n 0000 #s 14670061 n 0000 #s 15061936 n 0000 ~ 14656001 n 0000 | a soft silver-white or yellowish metallic element of the alkali metal group; turns yellow in air; occurs in celestite and strontianite -14656001 27 n 01 strontium_90 0 001 @ 14655731 n 0000 | a radioactive isotope of strontium (with the mass number 90) that is present in the fallout from nuclear explosions; can be assimilated like calcium into bones -14656219 27 n 04 sulfur 0 S 0 sulphur 0 atomic_number_16 0 010 @ 14622893 n 0000 #s 15063699 n 0000 #s 15093482 n 0000 + 03121394 a 0301 + 02805148 a 0302 + 00516747 v 0301 + 03121394 a 0102 + 02805148 a 0101 + 00516747 v 0102 ~ 14785325 n 0000 | an abundant tasteless odorless multivalent nonmetallic element; best known in yellow crystals; occurs in many sulphide and sulphate minerals and even in native form (especially in volcanic regions) -14656666 27 n 03 tantalum 0 Ta 0 atomic_number_73 0 004 @ 14625458 n 0000 #s 14675012 n 0000 #s 14683859 n 0000 #s 15067375 n 0000 | a hard grey lustrous metallic element that is highly resistant to corrosion; occurs in niobite and fergusonite and tantalite -14656926 27 n 01 taurine 0 001 @ 14818238 n 0000 | a colorless crystalline substance obtained from the bile of mammals -14657047 27 n 03 technetium 0 Tc 0 atomic_number_43 0 001 @ 14625458 n 0000 | a crystalline metallic element not found in nature; occurs as one of the fission products of uranium -14657228 27 n 03 tellurium 0 Te 0 atomic_number_52 0 004 @ 14622893 n 0000 #s 15068134 n 0000 #s 15065713 n 0000 + 02810417 a 0101 | a brittle silver-white metalloid element that is related to selenium and sulfur; it is used in alloys and as a semiconductor; occurs mainly as tellurides in ores of copper and nickel and silver and gold -14657566 27 n 03 terbium 0 Tb 0 atomic_number_65 0 004 @ 14625458 n 0000 #s 14666510 n 0000 #s 14682642 n 0000 #s 14675569 n 0000 | a metallic element of the rare earth group; used in lasers; occurs in apatite and monazite and xenotime and ytterbite -14657818 27 n 03 thallium 0 Tl 0 atomic_number_81 0 002 @ 14625458 n 0000 #s 15107876 n 0000 | a soft grey malleable metallic element that resembles tin but discolors on exposure to air; it is highly toxic and is used in rodent and insect poisons; occurs in zinc blende and some iron ores -14658109 27 n 03 thorium 0 Th 0 atomic_number_90 0 005 @ 14625458 n 0000 #s 14682642 n 0000 #s 15070366 n 0000 + 00497391 v 0101 ~ 14658422 n 0000 | a soft silvery-white tetravalent radioactive metallic element; isotope 232 is used as a power source in nuclear reactors; occurs in thorite and in monazite sands -14658422 27 n 02 thorium-228 0 radiothorium 0 001 @ 14658109 n 0000 | radioactive isotope of thorium with mass number 228 -14658546 27 n 03 thulium 0 Tm 0 atomic_number_69 0 004 @ 14625458 n 0000 #s 14666510 n 0000 #s 14682642 n 0000 #s 15105955 n 0000 | a soft silvery metallic element of the rare earth group; isotope 170 emits X-rays and is used in small portable X-ray machines; it occurs in monazite and apatite and xenotime -14658855 27 n 03 tin 0 Sn 0 atomic_number_50 0 006 @ 14625458 n 0000 #s 14669927 n 0000 #s 04439712 n 0000 + 02815753 a 0101 + 00213034 v 0101 + 01395382 v 0101 | a silvery malleable metallic element that resists corrosion; used in many alloys and to coat other metals to prevent corrosion; obtained chiefly from cassiterite where it occurs as tin oxide -14659211 27 n 03 titanium 0 Ti 0 atomic_number_22 0 004 @ 14625458 n 0000 #s 15008399 n 0000 #s 14678551 n 0000 ;c 02691156 n 0000 | a light strong grey lustrous corrosion-resistant metallic element used in strong lightweight alloys (as for airplane parts); the main sources are rutile and ilmenite -14659512 27 n 04 tungsten 0 wolfram 0 W 0 atomic_number_74 0 003 @ 14625458 n 0000 #s 15020794 n 0000 #s 15103226 n 0000 | a heavy grey-white metallic element; the pure form is used mainly in electrical applications; it is found in several ores including wolframite and scheelite -14659794 27 n 04 ununbium 0 Uub 0 element_112 0 atomic_number_112 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14659922 27 n 04 ununhexium 0 Uuh 0 element_116 0 atomic_number_116 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14660052 27 n 04 ununpentium 0 Uup 0 element_115 0 atomic_number_115 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14660183 27 n 04 ununquadium 0 Uuq 0 element_114 0 atomic_number_114 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14660314 27 n 04 ununtrium 0 Uut 0 element_113 0 atomic_number_113 0 001 @ 14622893 n 0000 | a radioactive transuranic element -14660443 27 n 03 uranium 0 U 0 atomic_number_92 0 004 @ 14625458 n 0000 #s 15084545 n 0000 ~ 14660700 n 0000 ~ 14660835 n 0000 | a heavy toxic silvery-white radioactive metallic element; occurs in many isotopes; used for nuclear fuels and nuclear weapons -14660700 27 n 01 uranium_235 0 001 @ 14660443 n 0000 | a uranium isotope with mass number 235; capable of sustaining chain reactions -14660835 27 n 01 uranium_238 0 001 @ 14660443 n 0000 | the commonest isotope of uranium; it is not fissionable but when irradiated with neutrons it produces fissionable plutonium 239 -14661020 27 n 03 vanadium 0 V 0 atomic_number_23 0 003 @ 14625458 n 0000 #s 14669677 n 0000 #s 15086939 n 0000 | a soft silvery white toxic metallic element used in steel alloys; it occurs in several complex minerals including carnotite and vanadinite -14661274 27 n 03 xenon 0 Xe 0 atomic_number_54 0 003 @ 14622893 n 0000 @ 14624369 n 0000 #s 14841267 n 0000 | a colorless odorless inert gaseous element occurring in the earth's atmosphere in trace amounts -14661482 27 n 03 ytterbium 0 Yb 0 atomic_number_70 0 004 @ 14625458 n 0000 #s 14675569 n 0000 #s 14682642 n 0000 #s 15105955 n 0000 | a soft silvery metallic element; a rare earth of the lanthanide series; it occurs in gadolinite and monazite and xenotime -14661740 27 n 03 yttrium 0 Y 0 atomic_number_39 0 004 @ 14625458 n 0000 #s 14675569 n 0000 #s 14675012 n 0000 #s 15105955 n 0000 | a silvery metallic element that is common in rare-earth minerals; used in magnesium and aluminum alloys -14661977 27 n 03 zinc 0 Zn 0 atomic_number_30 0 002 @ 14625458 n 0000 ~ 15049745 n 0000 | a bluish-white lustrous metallic element; brittle at ordinary temperatures but malleable when heated; used in a wide variety of alloys and in galvanizing iron; it occurs naturally as zinc sulphide in zinc blende -14662281 27 n 03 zirconium 0 Zr 0 atomic_number_40 0 003 @ 14625458 n 0000 #s 14667949 n 0000 #s 15109127 n 0000 | a lustrous grey strong metallic element resembling titanium; it is used in nuclear reactors as a neutron absorber; it occurs in baddeleyite but is obtained chiefly from zircon -14662574 27 n 01 mineral 0 133 @ 14580897 n 0000 #s 14696793 n 0000 ~ 14665102 n 0000 ~ 14665605 n 0000 ~ 14665767 n 0000 ~ 14666012 n 0000 ~ 14666510 n 0000 ~ 14666758 n 0000 ~ 14666885 n 0000 ~ 14667181 n 0000 ~ 14667328 n 0000 ~ 14667455 n 0000 ~ 14667668 n 0000 ~ 14667949 n 0000 ~ 14668065 n 0000 ~ 14668277 n 0000 ~ 14668539 n 0000 ~ 14669084 n 0000 ~ 14669242 n 0000 ~ 14669413 n 0000 ~ 14669927 n 0000 ~ 14670061 n 0000 ~ 14670178 n 0000 ~ 14670344 n 0000 ~ 14670481 n 0000 ~ 14670954 n 0000 ~ 14671125 n 0000 ~ 14671372 n 0000 ~ 14671587 n 0000 ~ 14671895 n 0000 ~ 14672224 n 0000 ~ 14672373 n 0000 ~ 14672544 n 0000 ~ 14672717 n 0000 ~ 14672893 n 0000 ~ 14673032 n 0000 ~ 14673150 n 0000 ~ 14673325 n 0000 ~ 14673747 n 0000 ~ 14673978 n 0000 ~ 14674143 n 0000 ~ 14674776 n 0000 ~ 14675012 n 0000 ~ 14675356 n 0000 ~ 14675569 n 0000 ~ 14675910 n 0000 ~ 14676042 n 0000 ~ 14676326 n 0000 ~ 14676608 n 0000 ~ 14676943 n 0000 ~ 14677144 n 0000 ~ 14677610 n 0000 ~ 14677778 n 0000 ~ 14678068 n 0000 ~ 14678230 n 0000 ~ 14678406 n 0000 ~ 14678551 n 0000 ~ 14678762 n 0000 ~ 14678952 n 0000 ~ 14679147 n 0000 ~ 14679267 n 0000 ~ 14679447 n 0000 ~ 14679584 n 0000 ~ 14679882 n 0000 ~ 14680514 n 0000 ~ 14680661 n 0000 ~ 14680836 n 0000 ~ 14681100 n 0000 ~ 14681445 n 0000 ~ 14681555 n 0000 ~ 14681987 n 0000 ~ 14682469 n 0000 ~ 14682642 n 0000 ~ 14683204 n 0000 ~ 14683447 n 0000 ~ 14683859 n 0000 ~ 14684017 n 0000 ~ 14684111 n 0000 ~ 14684272 n 0000 ~ 14688234 n 0000 ~ 14688500 n 0000 ~ 14688831 n 0000 ~ 14688978 n 0000 ~ 14689672 n 0000 ~ 14690607 n 0000 ~ 14690938 n 0000 ~ 14691085 n 0000 ~ 14692342 n 0000 ~ 14692682 n 0000 ~ 14692973 n 0000 ~ 14693124 n 0000 ~ 14693275 n 0000 ~ 14693396 n 0000 ~ 14693575 n 0000 ~ 14693733 n 0000 ~ 14694910 n 0000 ~ 14695069 n 0000 ~ 14696035 n 0000 ~ 14696180 n 0000 ~ 15008399 n 0000 ~ 15012668 n 0000 ~ 15012810 n 0000 ~ 15020794 n 0000 ~ 15043118 n 0000 ~ 15044648 n 0000 ~ 15049096 n 0000 ~ 15050898 n 0000 ~ 15052223 n 0000 ~ 15053568 n 0000 ~ 15060449 n 0000 ~ 15061936 n 0000 ~ 15065713 n 0000 ~ 15065928 n 0000 ~ 15066367 n 0000 ~ 15067375 n 0000 ~ 15070366 n 0000 ~ 15070550 n 0000 ~ 15076349 n 0000 ~ 15076619 n 0000 ~ 15079557 n 0000 ~ 15082198 n 0000 ~ 15086939 n 0000 ~ 15087486 n 0000 ~ 15087904 n 0000 ~ 15103226 n 0000 ~ 15103485 n 0000 ~ 15105733 n 0000 ~ 15105849 n 0000 ~ 15105955 n 0000 ~ 15106867 n 0000 ~ 15107876 n 0000 ~ 15108897 n 0000 ~ 15109127 n 0000 | solid homogeneous inorganic substances occurring in nature having a definite chemical composition -14665102 27 n 05 ader_wax 0 earth_wax 0 mineral_wax 0 ozokerite 0 ozocerite 0 001 @ 14662574 n 0000 | a waxy mineral that is a mixture of hydrocarbons and occurs in association with petroleum; some varieties are used in making ceresin and candles -14665351 27 n 01 alabaster 0 001 @ 14677778 n 0000 | a compact fine-textured, usually white gypsum used for carving -14665469 27 n 04 alabaster 1 oriental_alabaster 0 onyx_marble 0 Mexican_onyx 0 001 @ 14935751 n 0000 | a hard compact kind of calcite -14665605 27 n 01 amblygonite 0 002 @ 14662574 n 0000 %s 14643793 n 0000 | a white or grey mineral consisting of lithium aluminum phosphate; a source of lithium -14665767 27 n 01 amphibole 0 008 @ 14662574 n 0000 #s 14666369 n 0000 #m 14666012 n 0000 ~ 14683595 n 0000 ~ 14725217 n 0000 ~ 14725444 n 0000 ~ 14725591 n 0000 ~ 14726124 n 0000 | a mineral or mineral variety belonging to the amphibole group -14666012 27 n 01 amphibole_group 0 008 @ 14662574 n 0000 %m 14665767 n 0000 %m 14683595 n 0000 %m 14725217 n 0000 %m 14725444 n 0000 %m 14725591 n 0000 %m 14725941 n 0000 %m 14726124 n 0000 | a group of minerals with similar crystal structures containing a silicate chain and combinations of chiefly sodium and calcium and magnesium and iron and aluminum -14666369 27 n 01 amphibolite 0 002 @ 14698698 n 0000 %s 14665767 n 0000 | a metamorphic rock composed chiefly of amphibole and plagioclase -14666510 27 n 01 apatite 0 005 @ 14662574 n 0000 %s 14649197 n 0000 %s 14657566 n 0000 %s 14658546 n 0000 ~ 14675216 n 0000 | a common complex mineral consisting of calcium fluoride phosphate or calcium chloride phosphate; a source of phosphorus -14666758 27 n 01 aragonite 0 001 @ 14662574 n 0000 | a mineral form of crystalline calcium carbonate; dimorphic with calcite -14666885 27 n 01 argentite 0 002 @ 14662574 n 0000 %s 14654954 n 0000 | a valuable silver ore consisting of silver sulfide (Ag2S) -14667017 27 n 01 argillite 0 001 @ 14698000 n 0000 | a sedimentary rock differing from shale in being bound by silica and from slate in having no slate cleavages -14667181 27 n 01 argyrodite 0 002 @ 14662574 n 0000 %s 14638517 n 0000 | a rare steel-grey mineral consisting of silver and germanium and sulfur -14667328 27 n 02 arsenopyrite 0 mispickel 0 002 @ 14662574 n 0000 %s 14629149 n 0000 | a silver-white or grey ore of arsenic -14667455 27 n 02 asphalt 1 mineral_pitch 0 002 @ 14662574 n 0000 + 02598494 a 0101 | a dark bituminous substance found in natural beds and as residue from petroleum distillation; consists mainly of hydrocarbons -14667668 27 n 01 augite 0 002 @ 14662574 n 0000 + 02648576 a 0101 | dark-green to black glassy mineral of the pyroxene group containing large amounts of aluminum and iron and magnesium -14667855 27 n 01 azurite 0 001 @ 14680661 n 0000 | blue carbonate of copper; blue malachite -14667949 27 n 01 baddeleyite 0 002 @ 14662574 n 0000 %s 14662281 n 0000 | a mineral consisting of zirconium oxide -14668065 27 n 02 bastnasite 0 bastnaesite 0 005 @ 14662574 n 0000 %s 14633957 n 0000 %s 14645882 n 0000 %s 14651212 n 0000 %s 14653596 n 0000 | a yellow-to-brown mineral that is a source of rare earth elements -14668277 27 n 01 bauxite 0 005 @ 14662574 n 0000 + 02660546 a 0101 %s 14627820 n 0000 %s 14638256 n 0000 %s 14676943 n 0000 | a clay-like mineral; the chief ore of aluminum; composed of aluminum oxides and aluminum hydroxides; used as an abrasive and catalyst -14668539 27 n 01 beryl 0 005 @ 14662574 n 0000 %s 14631295 n 0000 ~ 14767663 n 0000 ~ 14849655 n 0000 ~ 14955776 n 0000 | the chief source of beryllium; colored transparent varieties are valued as gems -14668743 27 n 01 biotite 0 003 @ 14681555 n 0000 + 02666747 a 0101 ~ 14680415 n 0000 | dark brown to black mica found in igneous and metamorphic rock -14668895 27 n 04 bone_black 0 bone_char 0 animal_black 0 animal_charcoal 0 001 @ 14685172 n 0000 | black substance containing char in the form of carbonized bone; used as a black pigment -14669084 27 n 01 borax 0 002 @ 14662574 n 0000 %s 14631871 n 0000 | an ore of boron consisting of hydrated sodium borate; used as a flux or cleansing agent -14669242 27 n 02 bornite 0 peacock_ore 0 002 @ 14662574 n 0000 %s 14635722 n 0000 | a mineral consisting of sulfides of copper and iron that is found in copper deposits -14669413 27 n 01 carnallite 0 004 @ 14662574 n 0000 %s 14644249 n 0000 %s 14650807 n 0000 %s 14652954 n 0000 | a white or reddish mineral consisting of hydrous chlorides of potassium and magnesium; used as a fertilizer and as a source of potassium and magnesium -14669677 27 n 01 carnotite 0 002 @ 15084824 n 0000 %s 14661020 n 0000 | a yellow radioactive mineral; an ore of uranium and radium and vanadium -14669823 27 n 01 caspase 0 001 @ 14999106 n 0000 | any of a group of proteases that mediate apoptosis -14669927 27 n 01 cassiterite 0 002 @ 14662574 n 0000 %s 14658855 n 0000 | a hard heavy dark mineral that is the chief source of tin -14670061 27 n 01 celestite 0 002 @ 14662574 n 0000 %s 14655731 n 0000 | a mineral consisting of strontium sulphate -14670178 27 n 02 cerussite 0 white_lead_ore 0 002 @ 14662574 n 0000 %s 14643467 n 0000 | a mineral consisting of lead carbonate that is an important source of lead -14670344 27 n 02 chalcocite 0 copper_glance 0 002 @ 14662574 n 0000 %s 14635722 n 0000 | a heavy grey mineral that is an ore of copper -14670481 27 n 02 chalcopyrite 0 copper_pyrites 0 002 @ 14662574 n 0000 %s 14635722 n 0000 | a yellow copper ore (CuFeS2) made up of copper and iron sulfide -14670639 27 n 06 china_clay 0 china_stone 0 kaolin 0 kaoline 0 porcelain_clay 0 terra_alba 2 003 @ 14813182 n 0000 #s 03608661 n 0000 -c 14768854 n 0000 | a fine usually white clay formed by the weathering of aluminous minerals (as feldspar); used in ceramics and as an absorbent and as a filler (e.g., in paper) -14670954 27 n 01 chlorite 0 001 @ 14662574 n 0000 | a generally green or black mineral; it occurs as a constituent of many rocks typically in the form of a flat crystal -14671125 27 n 01 chromite 0 002 @ 14662574 n 0000 %s 14635092 n 0000 | a brownish-black mineral; the major source of chromium -14671253 27 n 01 chromogen 0 002 @ 14818238 n 0000 ~ 14756754 n 0000 | a compound that can be converted to a pigment -14671372 27 n 01 chrysoberyl 0 004 @ 14662574 n 0000 @ 14969666 n 0000 %s 14631295 n 0000 ~ 14715679 n 0000 | a rare hard yellow green mineral consisting of beryllium aluminate in crystal form; used as a gemstone -14671587 27 n 01 cinnabar 0 002 @ 14662574 n 0000 %s 14645346 n 0000 | a heavy reddish mineral consisting of mercuric sulfide; the chief source of mercury -14671744 27 n 02 cobalt_blue 0 cobalt_ultramarine 0 001 @ 14989820 n 0000 | greenish-blue pigment consisting essentially of cobalt oxide and alumina -14671895 27 n 01 cobaltite 0 002 @ 14662574 n 0000 %s 14635290 n 0000 | a rare silvery-white mineral; important ore of cobalt -14672023 27 n 02 sodium_chloride 0 common_salt 0 004 @ 14618834 n 0000 #s 15008847 n 0000 %s 14634591 n 0000 ~ 14672224 n 0000 | a white crystalline solid consisting mainly of sodium chloride (NaCl) -14672224 27 n 02 halite 0 rock_salt 0 003 @ 14672023 n 0000 @ 14662574 n 0000 %s 14655371 n 0000 | naturally occurring crystalline sodium chloride -14672373 27 n 02 columbite-tantalite 0 coltan 0 001 @ 14662574 n 0000 | a valuable black mineral combining niobite and tantalite; used in cell phones and computer chips -14672544 27 n 01 cordierite 0 002 @ 14662574 n 0000 ~ 15019357 n 0000 | a blue mineral of magnesium and iron and aluminum and silicon and oxygen; often used as a gemstone -14672717 27 n 02 corundom 0 corundum 0 005 @ 14662574 n 0000 #s 14674143 n 0000 ~ 14823944 n 0000 ~ 15008142 n 0000 ~ 15019483 n 0000 | very hard mineral used as an abrasive -14672893 27 n 01 cristobalite 0 002 @ 14662574 n 0000 %s 15041277 n 0000 | a white mineral consisting of silica; found in volcanic rocks -14673032 27 n 01 crocolite 0 001 @ 14662574 n 0000 | a rare lead chromite mineral that forms bright orange crystals -14673150 27 n 02 cryolite 0 Greenland_spar 0 002 @ 14662574 n 0000 %s 14637507 n 0000 | a white mineral consisting of fluorides of aluminum and sodium; a source of fluorine -14673325 27 n 01 cuprite 0 002 @ 14662574 n 0000 %s 14635722 n 0000 | a mineral consisting of cuprous oxide that is a source of copper -14673462 27 n 01 cutin 0 002 @ 14991712 n 0000 ;c 06079620 n 0000 | (biochemistry) a waxy transparent material that occurs in the cuticle of plants and consists of highly polymerized esters of fatty acids -14673669 27 n 01 damourite 0 001 @ 14683085 n 0000 | a variety of muscovite -14673747 27 n 02 dolomite 1 bitter_spar 0 003 @ 14662574 n 0000 + 03062151 a 0101 %s 14644249 n 0000 | a light colored mineral consisting of calcium magnesium carbonate; a source of magnesium; used as a ceramic and as fertilizer -14673978 27 n 01 earth_color 0 005 @ 14662574 n 0000 @ 14989820 n 0000 ~ 14843493 n 0000 ~ 14843986 n 0000 ~ 15083429 n 0000 | a colored mineral used as a pigment -14674143 27 n 01 emery 0 005 @ 14662574 n 0000 #s 14849880 n 0000 %s 14672717 n 0000 %s 14905720 n 0000 %s 14945914 n 0000 | a hard grey-black mineral consisting of corundum and either hematite or magnetite; used as an abrasive (especially as a coating on paper) -14674408 27 n 01 emulsifier 0 004 @ 15096783 n 0000 + 00500834 v 0101 + 00500638 v 0101 ~ 14680040 n 0000 | a surface-active agent that promotes the formation of an emulsion -14674584 27 n 01 emulsion 0 004 @ 14588219 n 0000 ;c 06084469 n 0000 + 00500834 v 0101 + 00500638 v 0101 | (chemistry) a colloid in which both phases are liquids; "an oil-in-water emulsion" -14674776 27 n 02 erythrite 0 cobalt_bloom 0 001 @ 14662574 n 0000 | a reddish mineral consisting of hydrated cobalt arsenate in monoclinic crystalline form and used in coloring glass; usually found in veins bearing cobalt and arsenic -14675012 27 n 01 fergusonite 0 004 @ 14662574 n 0000 %s 14636988 n 0000 %s 14656666 n 0000 %s 14661740 n 0000 | a dark mineral consisting of oxides of yttrium and erbium and tantalum and other minerals -14675216 27 n 01 fluorapatite 0 002 @ 14666510 n 0000 %s 14637507 n 0000 | a form of apatite in which fluorine predominates over chlorine -14675356 27 n 03 fluorite 0 fluorspar 0 fluor 0 003 @ 14662574 n 0000 %s 14632648 n 0000 %s 14637507 n 0000 | a soft mineral (calcium fluoride) that is fluorescent in ultraviolet light; chief source of fluorine -14675569 27 n 02 gadolinite 0 ytterbite 0 009 @ 14662574 n 0000 %s 14631295 n 0000 %s 14633957 n 0000 %s 14636988 n 0000 %s 14638041 n 0000 %s 14640222 n 0000 %s 14657566 n 0000 %s 14661482 n 0000 %s 14661740 n 0000 | a mineral that is a source of rare earths; consists of silicates of iron and beryllium and cerium and yttrium and erbium -14675910 27 n 01 galena 0 002 @ 14662574 n 0000 %s 14643467 n 0000 | soft blue-grey mineral; lead sulfide; a major source of lead -14676042 27 n 01 garnet 0 008 @ 14662574 n 0000 @ 15078050 n 0000 ~ 14676486 n 0000 ~ 14829264 n 0000 ~ 14877486 n 0000 ~ 14903466 n 0000 ~ 15000060 n 0000 ~ 15001394 n 0000 | any of a group of hard glassy minerals (silicates of various metals) used as gemstones and as an abrasive -14676326 27 n 01 garnierite 0 002 @ 14662574 n 0000 %s 14646610 n 0000 | a green mineral consisting of hydrated nickel magnesium silicate; a source of nickel -14676486 27 n 02 almandite 0 almandine 1 001 @ 14676042 n 0000 | a deep red garnet consisting of iron aluminum silicate -14676608 27 n 01 germanite 0 002 @ 14662574 n 0000 %s 14638517 n 0000 | a rare reddish-grey mineral consisting of a copper iron germanium sulfide -14676756 27 n 01 gesso 0 002 @ 14677778 n 0000 @ 14992613 n 0000 | gypsum or plaster of Paris spread on a surface to make it suitable for painting or gilding (or a surface so prepared) -14676943 27 n 01 gibbsite 0 003 @ 14662574 n 0000 #s 14668277 n 0000 %s 14824238 n 0000 | white crystalline mineral consisting of aluminum hydroxide; a constituent of bauxite and a source of alumina -14677144 27 n 01 glauconite 0 001 @ 14662574 n 0000 | a green mineral consisting of hydrated silicate of potassium or iron or magnesium or aluminum; found in greensand -14677314 27 n 02 goethite 0 gothite 0 002 @ 14923458 n 0000 #s 14889479 n 0000 | a red or yellow or brown mineral; an oxide of iron that is a common constituent of rust -14677485 27 n 02 greaves 0 crackling 0 001 @ 15004501 n 0000 | the residue that remains after animal fat has been rendered -14677610 27 n 02 greenockite 0 cadmium_sulphide 0 001 @ 14662574 n 0000 | ore of cadmium; a rare yellowish mineral consisting of cadmium sulphide in crystalline form -14677778 27 n 01 gypsum 0 007 @ 14662574 n 0000 @ 14937521 n 0000 #s 14992613 n 0000 %s 14632648 n 0000 ~ 14665351 n 0000 ~ 14676756 n 0000 ~ 14903942 n 0000 | a common white or colorless mineral (hydrated calcium sulphate) used to make cements and plasters (especially plaster of Paris) -14678068 27 n 01 hausmannite 0 003 @ 14662574 n 0000 %s 14644654 n 0000 %s 14680963 n 0000 | a mineral consisting of manganese tetroxide; a source of manganese -14678230 27 n 04 heavy_spar 0 barite 0 barytes 0 barium_sulphate 1 002 @ 14662574 n 0000 %s 14629998 n 0000 | a white or colorless mineral (BaSO4); the main source of barium -14678406 27 n 02 hemimorphite 0 calamine 0 003 @ 14662574 n 0000 #s 02937766 n 0000 %s 14632444 n 0000 | a white mineral; a common ore of zinc -14678551 27 n 01 ilmenite 0 002 @ 14662574 n 0000 %s 14659211 n 0000 | a weakly magnetic black mineral found in metamorphic and plutonic rocks; an iron titanium oxide in crystalline form; a source of titanium -14678762 27 n 01 jadeite 0 001 @ 14662574 n 0000 | a hard green mineral consisting of sodium aluminum silicate in monoclinic crystalline form; a source of jade; found principally in Burma -14678952 27 n 01 kainite 0 002 @ 14662574 n 0000 %s 14650807 n 0000 | a white mineral consisting of magnesium sulphate and potassium chloride; a source of potassium salts; used as a fertilizer -14679147 27 n 01 kaolinite 0 001 @ 14662574 n 0000 | a mineral consisting of aluminum silicate; main source of kaolin -14679267 27 n 01 kernite 0 002 @ 14662574 n 0000 %s 14631871 n 0000 | a light soft mineral consisting of hydrated sodium borate in crystalline form; an important source of boron -14679447 27 n 01 kieserite 0 001 @ 14662574 n 0000 | a white mineral consisting of hydrous magnesium sulfate often found in salt mines -14679584 27 n 02 kyanite 0 cyanite 0 001 @ 14662574 n 0000 | a grey or greenish-blue mineral consisting of aluminum silicate in crystalline form; occurs in metaphoric rock, used as a refractory -14679780 27 n 01 lactate 0 002 @ 15010703 n 0000 @ 14850483 n 0000 | a salt or ester of lactic acid -14679882 27 n 01 langbeinite 0 002 @ 14662574 n 0000 %s 14650807 n 0000 | a mineral consisting of potassium magnesium double sulphate; used as a fertilizer -14680040 27 n 01 lecithin 0 002 @ 14982681 n 0000 @ 14674408 n 0000 | a yellow phospholipid essential for the metabolism of fats; found in egg yolk and in many plant and animal cells; used commercially as an emulsifier -14680261 27 n 01 lepidolite 0 003 @ 14681555 n 0000 %s 14643793 n 0000 %s 14652954 n 0000 | a mineral of the mica group; an important source of lithium -14680415 27 n 01 lepidomelane 0 001 @ 14668743 n 0000 | a mica that is a biotite containing iron -14680514 27 n 01 magnesite 0 002 @ 14662574 n 0000 %s 14644249 n 0000 | a white mineral consisting of magnesium carbonate; a source of magnesium -14680661 27 n 01 malachite 0 003 @ 14662574 n 0000 %s 14635722 n 0000 ~ 14667855 n 0000 | a green or blue mineral used as an ore of copper and for making ornamental objects -14680836 27 n 02 maltha 0 mineral_tar 0 001 @ 14662574 n 0000 | a thick black tar intermediate between petroleum and asphalt -14680963 27 n 01 manganese_tetroxide 0 002 @ 14818238 n 0000 #s 14678068 n 0000 | an oxide of manganese found naturally as hausmannite -14681100 27 n 01 manganite 0 002 @ 14662574 n 0000 %s 14644654 n 0000 | a black mineral consisting of basic manganese oxide; a source of manganese -14681249 27 n 01 marl 0 002 @ 14844693 n 0000 + 02995039 a 0101 | a loose and crumbling earthy deposit consisting mainly of calcite or dolomite; used as a fertilizer for soils deficient in lime -14681445 27 n 02 meerschaum 0 sepiolite 0 002 @ 14662574 n 0000 #s 03742416 n 0000 | a white clayey mineral -14681555 27 n 02 mica 0 isinglass 0 009 @ 14662574 n 0000 @ 15078550 n 0000 + 02764031 a 0101 ~ 14668743 n 0000 ~ 14680261 n 0000 ~ 14683085 n 0000 ~ 14689226 n 0000 ~ 14690790 n 0000 ~ 15109016 n 0000 | any of various minerals consisting of hydrous silicates of aluminum or potassium etc. that crystallize in forms that allow perfect cleavage into very thin leaves; used as dielectrics because of their resistance to electricity -14681987 27 n 01 millerite 0 002 @ 14662574 n 0000 %s 14646610 n 0000 | a yellow mineral consisting of nickel sulfide; a minor source of nickel -14682133 27 n 01 molecule 0 012 @ 09465459 n 0000 ;c 06090869 n 0000 ;c 06084469 n 0000 + 02900700 a 0101 %p 09240621 n 0000 ~ 09267128 n 0000 ~ 09399899 n 0000 %p 14619225 n 0000 %p 14621446 n 0000 ~ 14800277 n 0000 ~ 14851668 n 0000 ~ 14944888 n 0000 | (physics and chemistry) the simplest structural unit of an element or compound -14682469 27 n 01 molybdenite 0 002 @ 14662574 n 0000 %s 14645661 n 0000 | a mineral resembling graphite that is valued as the chief source of molybdenum and its compounds -14682642 27 n 01 monazite 0 010 @ 14662574 n 0000 %s 14633957 n 0000 %s 14637176 n 0000 %s 14645882 n 0000 %s 14651212 n 0000 %s 14653596 n 0000 %s 14657566 n 0000 %s 14658109 n 0000 %s 14658546 n 0000 %s 14661482 n 0000 | a reddish-brown mineral containing rare earth metals; an important source of thorium and cerium -14682963 27 n 01 monomer 0 001 @ 14818238 n 0000 | a simple compound whose molecules can join together to form polymers -14683085 27 n 01 muscovite 0 002 @ 14681555 n 0000 ~ 14673669 n 0000 | a colorless or pale brown mica with potassium -14683204 27 n 02 nepheline 0 nephelite 0 002 @ 14662574 n 0000 #s 14683447 n 0000 | a whitish mineral consisting of sodium aluminum silicate or potassium aluminum silicate in crystalline form; used in the manufacture of ceramics and enamels -14683447 27 n 01 nephelinite 0 003 @ 14662574 n 0000 %s 14683204 n 0000 %s 14693396 n 0000 | an igneous rock consisting of nepheline and pyroxene -14683595 27 n 01 nephrite 0 002 @ 14665767 n 0000 #m 14666012 n 0000 | an amphibole mineral consisting of calcium magnesium silicate in monoclinic crystalline form; a source of jade that is less valuable than from jadeite; once believed to cure kidney disorders -14683859 27 n 02 niobite 0 columbite 0 003 @ 14662574 n 0000 %s 14646942 n 0000 %s 14656666 n 0000 | a black mineral that is an ore of niobium and tantalum -14684017 27 n 01 nitrocalcite 0 001 @ 14662574 n 0000 | the mineral form of calcium nitrate -14684111 27 n 01 olivine 0 003 @ 14662574 n 0000 %s 14644249 n 0000 ~ 14812047 n 0000 | a mineral consisting of magnesium iron silicate; a source of magnesium -14684272 27 n 01 olivenite 0 001 @ 14662574 n 0000 | rare green to black mineral consisting of hydrated copper arsenate that is found in copper deposits -14684427 27 n 01 ozonide 0 001 @ 14818238 n 0000 | any of a class of unstable chemical compounds resulting from the addition of ozone to a double bond in an unsaturated compound -14684607 27 n 01 perchlorate 0 001 @ 15010703 n 0000 | a salt of perchloric acid -14684690 27 n 01 perchloric_acid 0 001 @ 14607521 n 0000 | a powerful oxidizing agent; forms perchlorates -14684798 27 n 01 proline 0 001 @ 14601829 n 0000 | an amino acid that is found in many proteins (especially collagen) -14684918 27 n 01 biomass 0 001 @ 14875077 n 0000 | plant materials and animal waste used as fuel -14685017 27 n 01 butane 0 003 @ 14951377 n 0000 @ 14877585 n 0000 @ 14875077 n 0000 | occurs in natural gas; used in the manufacture of rubber and fuels -14685172 27 n 01 char 0 004 @ 14633206 n 0000 + 02771997 v 0101 ~ 14668895 n 0000 ~ 15044016 n 0000 | a charred substance -14685296 27 n 02 charcoal 0 wood_coal 1 002 @ 14875077 n 0000 @ 14633206 n 0000 | a carbonaceous material obtained by heating wood or other organic matter in the absence of air -14685475 27 n 01 coal_gas 0 002 @ 14875077 n 0000 ~ 14685641 n 0000 | gaseous mixture produced by distillation of bituminous coal and used for heating and lighting -14685641 27 n 01 town_gas 0 002 @ 14685475 n 0000 ;r 08860123 n 0000 | coal gas manufactured for domestic and industrial use -14685768 27 n 01 coke 0 002 @ 14875077 n 0000 + 00498836 v 0101 | carbon fuel produced by distillation of coal -14685881 27 n 02 diesel_oil 0 diesel_fuel 0 002 @ 14875077 n 0000 ~ 14686020 n 0000 | a heavy mineral oil used as fuel in diesel engines -14686020 27 n 01 derv 0 002 @ 14685881 n 0000 ;r 08860123 n 0000 | diesel oil used in cars and lorries with diesel engines; from d(iesel) e(ngine) r(oad) v(ehicle) -14686186 27 n 01 fire 0 001 @ 14875077 n 0000 | fuel that is burning and is used as a means for cooking; "put the kettle on the fire"; "barbecue over an open fire" -14686352 27 n 01 fossil_fuel 0 004 @ 14875077 n 0000 ~ 14814616 n 0000 ~ 14960090 n 0000 ~ 14980579 n 0000 | fuel consisting of the remains of organisms preserved in rocks in the earth's crust with high carbon and hydrogen content -14686585 27 n 02 fuel_oil 0 heating_oil 0 003 @ 14966667 n 0000 @ 14875077 n 0000 ~ 14967730 n 0000 | a petroleum product used for fuel -14686723 27 n 01 gasohol 0 004 @ 14875077 n 0000 @ 14911057 n 0000 %s 14686913 n 0000 %s 14709265 n 0000 | a gasoline substitute consisting of 90% gasoline and 10% grain alcohol from corn -14686913 27 n 04 gasoline 0 gasolene 0 gas 2 petrol 0 007 @ 14875077 n 0000 @ 14911057 n 0000 #s 14686723 n 0000 + 00442267 v 0301 ~ 14687261 n 0000 ~ 14958254 n 0000 ~ 15083819 n 0000 | a volatile flammable mixture of hydrocarbons (hexane and heptane and octane etc.) derived from petroleum; used mainly as a fuel in internal-combustion engines -14687261 27 n 02 leaded_gasoline 0 leaded_petrol 0 002 @ 14686913 n 0000 ! 15083819 n 0101 | gasoline treated with a lead compound to reduce motor knocks; "combustion of leaded gasoline released lead into the air where it could cause lead poisoning" -14687513 27 n 01 illuminant 0 002 @ 14875077 n 0000 + 00291873 v 0105 | something that can serve as a source of light -14687633 27 n 04 kerosene 0 kerosine 0 lamp_oil 0 coal_oil 0 003 @ 14875077 n 0000 @ 14911057 n 0000 ~ 14926086 n 0000 | a flammable hydrocarbon oil used as fuel in lamps and heaters -14687818 27 n 04 methanol 0 methyl_alcohol 0 wood_alcohol 0 wood_spirit 0 003 @ 14708720 n 0000 @ 14875077 n 0000 %s 14719893 n 0000 | a light volatile flammable poisonous liquid alcohol; used as an antifreeze and solvent and fuel and as a denaturant for ethyl alcohol -14688089 27 n 01 nuclear_fuel 0 001 @ 14875077 n 0000 | fuel (such as uranium) that can be used in nuclear reactors as a source of electricity -14688234 27 n 01 opal 0 007 @ 14662574 n 0000 @ 14969666 n 0000 + 00117230 v 0101 + 00117085 v 0101 ~ 14776686 n 0000 ~ 14868916 n 0000 ~ 14905607 n 0000 | a translucent mineral consisting of hydrated silica of variable color; some varieties are used as gemstones -14688500 27 n 01 ore 0 006 @ 14662574 n 0000 ~ 14837506 n 0000 ~ 14923458 n 0000 ~ 14933663 n 0000 ~ 14977741 n 0000 ~ 15084824 n 0000 | a mineral that contains metal that is valuable enough to be mined -14688705 27 n 02 oroide 0 oreide 0 001 @ 14586769 n 0000 | alloy of copper and tin and zinc; used in imitation gold jewelry -14688831 27 n 01 orpiment 0 002 @ 14662574 n 0000 %s 14629149 n 0000 | a yellow mineral occurring in conjunction with realgar; an ore of arsenic -14688978 27 n 02 osmiridium 0 iridosmine 0 001 @ 14662574 n 0000 | a hard and corrosion resistant mineral that is a natural alloy of osmium and iridium (usually containing small amounts of rhodium and platinum); used in needles and pen nibs etc. -14689226 27 n 01 paragonite 0 001 @ 14681555 n 0000 | a colorless or pale brown mica with sodium -14689325 27 n 02 paraldehyde 0 ethanal_trimer 0 001 @ 14584765 n 0000 | a colorless liquid (a cyclic trimer of acetaldehyde) that is used as a sedative and a solvent -14689493 27 n 01 peat 0 003 @ 15110956 n 0000 @ 14908977 n 0000 + 02775599 a 0101 | partially carbonized vegetable matter saturated with water; can be used as a fuel when dried -14689672 27 n 01 pentlandite 0 002 @ 14662574 n 0000 %s 14646610 n 0000 | a mineral (iron and nickel sulphide) that is the chief ore of nickel -14689817 27 n 01 triose 0 001 @ 14954284 n 0000 | any monosaccharide sugar containing three atoms of carbon per molecule -14689940 27 n 01 tetrose 0 001 @ 14954284 n 0000 | any monosaccharide sugar containing four atoms of carbon per molecule -14690063 27 n 01 pentose 0 001 @ 14954284 n 0000 | any monosaccharide sugar containing five atoms of carbon per molecule -14690186 27 n 01 hexose 0 003 @ 14954284 n 0000 ~ 14710501 n 0000 ~ 14927587 n 0000 | a monosaccharide that contains six carbon atoms per molecule -14690335 27 n 01 pentoxide 0 001 @ 14971519 n 0000 | an oxide containing five atoms of oxygen in the molecule -14690447 27 n 01 peptone 0 001 @ 14727670 n 0000 | any of various water-soluble compounds that form by hydrolysis in the digestion of proteins to amino acids -14690607 27 n 03 periclase 0 magnesia 0 magnesium_oxide 0 002 @ 14662574 n 0000 %s 14644249 n 0000 | a white solid mineral that occurs naturally as periclase; a source of magnesium -14690790 27 n 01 phlogopite 0 001 @ 14681555 n 0000 | a brown form of mica consisting of hydrous silicate of potassium and magnesium and aluminum -14690938 27 n 01 pinite 0 001 @ 14662574 n 0000 | grey or green or brown mineral similar to mica and containing aluminum and potassium sulphates -14691085 27 n 01 pollucite 0 003 @ 14662574 n 0000 %s 14634232 n 0000 %s 14652954 n 0000 | a rare mineral that is an important source of cesium -14691231 27 n 01 quaternary_ammonium_compound 0 001 @ 14727670 n 0000 | a compound derived from ammonium with hydrogen atoms replaced by organic groups; used as surface-active agents, disinfectants, and in drugs -14691445 27 n 02 proenzyme 0 zymogen 0 001 @ 14727670 n 0000 | any of a group of compounds that are inactive precursors of enzymes and require some change (such as the hydrolysis of a fragment that masks an active enzyme) to become active -14691686 27 n 01 propane 0 002 @ 14877585 n 0000 @ 14875077 n 0000 | colorless gas found in natural gas and petroleum; used as a fuel -14691822 27 n 02 propellant 0 propellent 0 007 @ 00020090 n 0000 + 00809790 a 0202 + 01511706 v 0201 + 00809790 a 0101 + 01511706 v 0101 ~ 14692026 n 0000 ~ 14842226 n 0000 | any substance that propels -14692026 27 n 03 rocket_fuel 0 rocket_propellant 0 rocket_propellent 0 003 @ 03008275 n 0000 @ 14691822 n 0000 %p 14910581 n 0000 | an explosive charge that propels a rocket -14692202 27 n 01 propylthiouracil 0 001 @ 14727670 n 0000 | a crystalline compound used as an antithyroid drug in the treatment of goiter -14692342 27 n 01 psilomelane 0 002 @ 14662574 n 0000 %s 14644654 n 0000 | a mineral consisting of hydrated basic oxide of manganese and barium; a source of manganese -14692510 27 n 01 pyridine 0 002 @ 14618253 n 0000 ~ 15080168 n 0000 | a toxic colorless flammable liquid organic base with a disagreeable odor; usually derived from coal -14692682 27 n 03 pyrite 0 iron_pyrite 0 fool's_gold 0 002 @ 14662574 n 0000 %s 14654175 n 0000 | a common mineral (iron disulfide) that has a pale yellow color -14692844 27 n 01 pyrites 0 001 @ 15063699 n 0000 | any of various metallic-looking sulfides (of which pyrite is the commonest) -14692973 27 n 01 pyrolusite 0 002 @ 14662574 n 0000 %s 14644654 n 0000 | a mineral consisting of manganese dioxide; an important source of manganese -14693124 27 n 02 pyromorphite 0 green_lead_ore 0 001 @ 14662574 n 0000 | a mineral consisting of lead chloride and phosphate; a minor source of lead -14693275 27 n 01 pyrophyllite 0 001 @ 14662574 n 0000 | a white or greenish aluminum silicate mineral (resembles talc) -14693396 27 n 01 pyroxene 0 003 @ 14662574 n 0000 #s 14773022 n 0000 #s 14683447 n 0000 | any of a group of crystalline silicate mineral common in igneous and metamorphic rocks -14693575 27 n 03 pyrrhotite 0 pyrrhotine 0 magnetic_pyrites 0 001 @ 14662574 n 0000 | a brownish iron sulfide mineral (FeS) having weak magnetic properties -14693733 27 n 01 quartz 0 012 @ 14662574 n 0000 ~ 04032710 n 0000 %s 14654541 n 0000 ~ 14694293 n 0000 ~ 14694571 n 0000 ~ 14722589 n 0000 ~ 14806333 n 0000 ~ 14813067 n 0000 ~ 15005895 n 0000 %s 15041277 n 0000 ~ 15064560 n 0000 ~ 15076523 n 0000 | a hard glossy mineral consisting of silicon dioxide in crystal form; present in most rocks (especially sandstone and granite); yellow sand is quartz with iron oxide impurities -14694161 27 n 01 quartzite 0 001 @ 14696793 n 0000 | hard metamorphic rock consisting essentially of interlocking quartz crystals -14694293 27 n 02 rock_crystal 0 transparent_quartz 0 002 @ 14693733 n 0000 ~ 14694453 n 0000 | a clear quartz used in making electronic and optical equipment -14694453 27 n 01 rhinestone 0 001 @ 14694293 n 0000 | an imitation diamond made from rock crystal or glass or paste -14694571 27 n 02 cairngorm 0 smoky_quartz 0 001 @ 14693733 n 0000 | a smoky yellow or brown quartz -14694672 27 n 01 rag_paper 0 001 @ 15105268 n 0000 | paper made partly or wholly from rags -14694765 27 n 01 reactant 0 002 @ 14806838 n 0000 + 00446885 v 0101 | a chemical substance that is present at the start of a chemical reaction -14694910 27 n 01 realgar 0 002 @ 14662574 n 0000 %s 14629149 n 0000 | a rare soft orange mineral consisting of arsenic sulphide; an important ore of arsenic -14695069 27 n 01 red_clay 0 002 @ 14813182 n 0000 @ 14662574 n 0000 | clay whose redness results from iron oxide -14695184 27 n 01 red_fire 0 001 @ 14875077 n 0000 | combustible material (usually salts of lithium or strontium) that burns bright red; used in flares and fireworks -14695351 27 n 01 regosol 0 001 @ 14844693 n 0000 | a type of soil consisting of unconsolidated material from freshly deposited alluvium or sand -14695497 27 n 02 regur 0 regur_soil 0 001 @ 14942223 n 0000 | a rich black loam of India -14695588 27 n 02 residual_soil 0 residual_clay 0 001 @ 14844693 n 0000 | the soil that is remaining after the soluble elements have been dissolved -14695737 27 n 02 topsoil 0 surface_soil 0 001 @ 14844693 n 0000 | the layer of soil on the surface -14695838 27 n 02 subsoil 0 undersoil 0 001 @ 14844693 n 0000 | the layer of soil between the topsoil and bedrock -14695953 27 n 01 resinoid 0 001 @ 14592610 n 0000 | a plastic containing resins -14696035 27 n 01 rhodochrosite 0 002 @ 14662574 n 0000 %s 14644654 n 0000 | a mineral consisting of manganese carbonate; a source of manganese -14696180 27 n 01 rhodonite 0 001 @ 14662574 n 0000 | a pink or red mineral consisting of crystalline manganese silicate; used as an ornamental stone -14696331 27 n 01 ribose 0 002 @ 14792703 n 0000 #s 14832193 n 0000 | a pentose sugar important as a component of ribonucleic acid -14696463 27 n 02 ricin 0 ricin_toxin 0 002 @ 14731509 n 0000 @ 15034074 n 0000 | a toxic protein extracted from castor beans; used as a chemical reagent; can be used as a bioweapon; "one milligram of ricin can kill an adult" -14696690 27 n 01 road_metal 0 001 @ 14696793 n 0000 | broken rock used for repairing or making roads -14696793 27 n 02 rock 0 stone 0 026 @ 14580897 n 0000 + 01323518 v 0201 %s 14662574 n 0000 ~ 14694161 n 0000 ~ 14696690 n 0000 ~ 14698000 n 0000 ~ 14698233 n 0000 ~ 14698405 n 0000 ~ 14698698 n 0000 ~ 14698884 n 0000 ~ 14699441 n 0000 ~ 14700280 n 0000 ~ 14700438 n 0000 ~ 14726315 n 0000 ~ 14814419 n 0000 ~ 14838055 n 0000 ~ 14850051 n 0000 ~ 14863031 n 0000 ~ 14868116 n 0000 ~ 14891581 n 0000 ~ 14931323 n 0000 ~ 14931795 n 0000 ~ 14931879 n 0000 ~ 14936226 n 0000 ~ 14947807 n 0000 ~ 14949227 n 0000 | material consisting of the aggregate of minerals like those making up the Earth's crust; "that mountain is solid rock"; "stone is abundant in New England and there are many quarries" -14697485 27 n 01 arenaceous_rock 0 002 @ 14698000 n 0000 ~ 14995541 n 0000 | a sedimentary rock composed of sand -14697600 27 n 01 argillaceous_rock 0 001 @ 14698000 n 0000 | a sedimentary rock formed from clay deposits -14697708 27 n 01 rudaceous_rock 0 002 @ 14698000 n 0000 ~ 14697839 n 0000 | a sedimentary rock formed of coarse-grained material -14697839 27 n 01 breccia 0 003 @ 14697708 n 0000 + 01585021 v 0101 + 00338964 v 0101 | a rudaceous rock consisting of sharp fragments embedded in clay or sand -14698000 27 n 01 sedimentary_rock 0 008 @ 14696793 n 0000 ~ 14667017 n 0000 ~ 14697485 n 0000 ~ 14697600 n 0000 ~ 14697708 n 0000 ~ 14700162 n 0000 ~ 14936226 n 0000 ~ 15038520 n 0000 | rock formed from consolidated clay sediments -14698233 27 n 01 sial 0 002 @ 14696793 n 0000 #s 09260010 n 0000 | the granitelike rocks that form the outermost layer of the earth's crust; rich in silicon and aluminum -14698405 27 n 01 sima 0 002 @ 14696793 n 0000 #s 09260010 n 0000 | rock that form the continuous lower layer of the earth's crust; rich in silicon and magnesium -14698568 27 n 02 marlite 0 marlstone 0 001 @ 14698698 n 0000 | metamorphic rock with approximately the same composition as marl -14698698 27 n 01 metamorphic_rock 0 006 @ 14696793 n 0000 ~ 14666369 n 0000 ~ 14698568 n 0000 ~ 14699068 n 0000 ~ 14889271 n 0000 ~ 14889371 n 0000 | rock altered by pressure and heat -14698884 27 n 02 gravel 0 crushed_rock 0 006 @ 14696793 n 0000 + 01603175 v 0101 + 02242223 a 0101 ~ 14699209 n 0000 ~ 14699321 n 0000 ~ 14699574 n 0000 | rock fragments and pebbles -14699068 27 n 02 hornfels 0 hornstone 0 001 @ 14698698 n 0000 | a fine-grained metamorphic rock formed by the action of heat on clay rocks -14699209 27 n 01 ballast 0 001 @ 14698884 n 0000 | coarse gravel laid to form a bed for streets and railroads -14699321 27 n 03 bank_gravel 0 pit-run_gravel 0 pit_run 0 001 @ 14698884 n 0000 | gravel as found in natural deposits -14699441 27 n 01 caliche 1 001 @ 14696793 n 0000 | nitrate-bearing rock or gravel of the sodium nitrate deposits of Chile and Peru -14699574 27 n 01 shingle 2 002 @ 14698884 n 0000 + 02242223 a 0103 | coarse beach gravel of small waterworn stones and pebbles (or a stretch of shore covered with such gravel) -14699752 27 n 03 gem 0 gemstone 0 stone 1 005 @ 14883206 n 0000 #p 03597469 n 0000 ~ 14700046 n 0000 ~ 14969666 n 0000 ~ 15078050 n 0000 | a crystalline rock that can be cut and polished for jewelry; "he had the gem set in a ring for his wife"; "she had jewels made of all the rarest stones" -14700046 27 n 01 cabochon 0 001 @ 14699752 n 0000 | a highly polished gem that is cut convexly but without facets -14700162 27 n 01 slate 0 001 @ 14698000 n 0000 | a fine-grained metamorphic rock that can be split into thin layers -14700280 27 n 01 shingling 0 002 @ 14696793 n 0000 ;c 06115701 n 0000 | (geology) sediment in which flat pebbles are uniformly tilted in the same direction -14700438 27 n 02 pumice 0 pumice_stone 0 002 @ 14696793 n 0000 + 01250243 v 0101 | a light glass formed on the surface of some lavas; used as an abrasive -14700594 27 n 03 grit 0 gritrock 0 gritstone 0 003 @ 14995541 n 0000 + 02231502 a 0106 + 01394938 v 0101 | a hard coarse-grained siliceous sandstone -14700745 27 n 01 animal_product 0 009 @ 14755804 n 0000 ~ 14700985 n 0000 ~ 14701143 n 0000 ~ 14702256 n 0000 ~ 14703190 n 0000 ~ 14703566 n 0000 ~ 14758842 n 0000 ~ 14959472 n 0000 ~ 15094824 n 0000 | a product made from animal material -14700985 27 n 01 ambergris 0 001 @ 14700745 n 0000 | waxy substance secreted by the sperm whale and found floating at sea or washed ashore; used in perfume -14701143 27 n 01 lac 0 008 @ 14700745 n 0000 #s 04160036 n 0000 #s 04191150 n 0000 ~ 14701412 n 0000 ~ 14701521 n 0000 ~ 14701628 n 0000 ~ 14701949 n 0000 ~ 14702117 n 0000 | resinlike substance secreted by certain lac insects; used in e.g. varnishes and sealing wax -14701412 27 n 01 garnet_lac 0 001 @ 14701143 n 0000 | lac refined by treating with solvent; garnet-colored -14701521 27 n 01 gum-lac 0 001 @ 14701143 n 0000 | an inferior lac produced by lac insects in Madagascar -14701628 27 n 01 shellac 0 003 @ 14701143 n 0000 + 01270589 v 0101 %s 14701949 n 0000 | lac purified by heating and filtering; usually in thin orange or yellow flakes but sometimes bleached white -14701826 27 n 02 mosaic_gold 0 stannic_sulfide 0 001 @ 14989820 n 0000 | a yellow pigment sometimes suspended in lacquer -14701949 27 n 01 stick_lac 0 004 @ 14701143 n 0000 #s 14989106 n 0000 #s 14701628 n 0000 #s 14702117 n 0000 | lac in its natural state as scraped off twigs and dried -14702117 27 n 01 seed_lac 0 002 @ 14701143 n 0000 %s 14701949 n 0000 | granular material obtained from stick lac by crushing and washing -14702256 27 n 01 Sonora_lac 0 001 @ 14700745 n 0000 | resembling lac; secreted by a scale living on twigs of certain Mexican shrubs; used locally as medicine -14702416 27 n 03 adhesive_material 0 adhesive_agent 0 adhesive 0 009 @ 14580897 n 0000 + 00052672 a 0301 ~ 14702703 n 0000 ~ 14704328 n 0000 ~ 14704465 n 0000 ~ 14704640 n 0000 ~ 14704966 n 0000 ~ 14705386 n 0000 %s 14902733 n 0000 | a substance that unites or bonds surfaces together -14702703 27 n 02 birdlime 0 lime 2 003 @ 14702416 n 0000 + 02083237 v 0202 + 02083237 v 0101 | a sticky adhesive that is smeared on small branches to capture small birds -14702875 27 n 03 glue 0 gum 1 mucilage 1 011 @ 14704640 n 0000 + 00053691 a 0304 + 00053691 a 0203 + 00053691 a 0101 + 00486850 v 0101 + 01332205 v 0101 ~ 14703190 n 0000 ~ 14703345 n 0000 ~ 14703566 n 0000 ~ 14703709 n 0000 + 01364019 v 0201 | cement consisting of a sticky substance that is used as an adhesive -14703190 27 n 01 animal_glue 0 002 @ 14702875 n 0000 @ 14700745 n 0000 | a protein gelatin obtained by boiling e.g. skins and hoofs of cattle and horses -14703345 27 n 01 casein_glue 0 001 @ 14702875 n 0000 | made from casein; used for e.g. plywood and cabinetwork -14703458 27 n 01 Crazy_Glue 0 002 @ 14902733 n 0000 ;u 06851742 n 0000 | a commercial brand of epoxy glue -14703566 27 n 01 fish_glue 0 002 @ 14702875 n 0000 @ 14700745 n 0000 | gelatinous substance obtained by boiling skins fins and bones of fish -14703709 27 n 01 marine_glue 0 001 @ 14702875 n 0000 | glue that is not water soluble -14703797 27 n 01 putty 0 003 @ 14704640 n 0000 @ 14706026 n 0000 + 01364733 v 0101 | a dough-like mixture of whiting and boiled linseed oil; used especially to patch woodwork or secure panes of glass -14703999 27 n 01 iron_putty 0 001 @ 14704640 n 0000 | a cement resembling putty; made by mixing ferric oxide and boiled linseed oil; is acid resistant -14704152 27 n 01 red-lead_putty 0 001 @ 14704640 n 0000 | a cement resembling putty; made by mixing white and red lead in boiled linseed oil; used as luting on pipe fittings -14704328 27 n 01 spirit_gum 0 001 @ 14702416 n 0000 | an adhesive solution made of gum and ether and used to attach false hair to skin -14704465 27 n 01 binder 1 003 @ 14702416 n 0000 + 01356750 v 0104 + 00567291 v 0101 | something used to bind separate particles together or facilitate adhesion to a surface -14704640 27 n 01 cement 1 007 @ 14702416 n 0000 + 02686439 a 0101 ~ 14702875 n 0000 ~ 14703797 n 0000 ~ 14703999 n 0000 ~ 14704152 n 0000 ~ 14704851 n 0000 | something that hardens to act as adhesive material -14704851 27 n 01 mastic 1 002 @ 14704640 n 0000 @ 14706026 n 0000 | a pasty cement used as an adhesive or filler -14704966 27 n 02 paste 0 library_paste 0 005 @ 14702416 n 0000 + 00406140 a 0101 + 00053691 a 0105 + 01332205 v 0102 ~ 14705183 n 0000 | an adhesive made from water and flour or starch; used on paper and paperboard -14705183 27 n 01 wafer 0 001 @ 14704966 n 0000 | a small adhesive disk of paste; used to seal letters -14705287 27 n 01 paste 1 001 @ 14588492 n 0000 | any mixture of a soft and malleable consistency -14705386 27 n 01 rubber_cement 0 001 @ 14702416 n 0000 | an adhesive made by dissolving unvulcanized rubber in a solvent like benzene or naphtha -14705533 27 n 01 sealing_material 0 004 @ 14580897 n 0000 ~ 14705718 n 0000 ~ 14706026 n 0000 ~ 14706214 n 0000 | any substance used to seal joints or fill cracks in a porous surface -14705718 27 n 02 sealant 0 sealer 0 007 @ 14705533 n 0000 + 01269008 v 0202 + 01354006 v 0201 + 01353405 v 0101 + 01269008 v 0102 + 01354006 v 0101 ~ 15014696 n 0000 | a kind of sealing material that is used to form a hard coating on a porous surface (as a coat of paint or varnish used to size a surface) -14706026 27 n 01 filler 0 006 @ 14705533 n 0000 + 00261533 v 0101 ~ 14703797 n 0000 ~ 14704851 n 0000 ~ 14706372 n 0000 ~ 15060825 n 0000 | used for filling cracks or holes in a surface -14706214 27 n 02 lute 0 luting 0 001 @ 14705533 n 0000 | a substance for packing a joint or coating a porous surface to make it impervious to gas or liquid -14706372 27 n 02 size 0 sizing 0 003 @ 14706026 n 0000 + 01610278 v 0201 + 01610278 v 0101 | any glutinous material used to fill pores in surfaces or to stiffen fabrics; "size gives body to a fabric" -14706574 27 n 01 purine 0 001 @ 14618253 n 0000 | a colorless crystalline organic base containing nitrogen; the parent compound of various biologically important substances -14706749 27 n 01 purine 1 003 @ 14618253 n 0000 ~ 14706889 n 0000 ~ 14892138 n 0000 | any of several bases that are derivatives of purine -14706889 27 n 02 adenine 0 A 2 004 @ 14706749 n 0000 #s 14830364 n 0000 #s 14832193 n 0000 ;c 06079620 n 0000 | (biochemistry) purine base found in DNA and RNA; pairs with thymine in DNA and with uracil in RNA -14707101 27 n 01 adenosine 0 002 @ 14964367 n 0000 ;c 06079620 n 0000 | (biochemistry) a nucleoside that is a structural component of nucleic acids; it is present in all living cells in a combined form as a constituent of DNA and RNA and ADP and ATP and AMP -14707361 27 n 02 adenosine_deaminase 0 ADA 0 001 @ 14732946 n 0000 | an enzyme found in mammals that can catalyze the deamination of adenosine into inosine and ammonia; "ADA deficiency can lead to one form of severe combined immunodeficiency disease"; "the gene encoding ADA was one of the earlier human genes to be isolated and cloned for study" -14707710 27 n 03 adenosine_monophosphate 0 AMP 0 adenylic_acid 0 001 @ 14964590 n 0000 | a nucleotide found in muscle cells and important in metabolism; reversibly convertible to ADP and ATP -14707903 27 n 02 adenosine_diphosphate 0 ADP 0 001 @ 14964590 n 0000 | an ester of adenosine that is converted to ATP for energy storage -14708042 27 n 02 adenosine_triphosphate 0 ATP 0 001 @ 14964590 n 0000 | a nucleotide derived from adenosine that occurs in muscle tissue; the major source of energy for cellular reactions -14708232 27 n 01 agate 0 002 @ 14806333 n 0000 ~ 14708413 n 0000 | an impure form of quartz consisting of banded chalcedony; used as a gemstone and for making mortars and pestles -14708413 27 n 01 moss_agate 0 001 @ 14708232 n 0000 | an agate resembling moss with brown, black, or green markings -14708531 27 n 02 Alar 0 daminozide 0 002 @ 14806838 n 0000 ;u 06851742 n 0101 | a chemical sprayed on fruit trees to regulate their growth so the entire crop can be harvested at one time -14708720 27 n 01 alcohol 0 014 @ 14940386 n 0000 + 01158596 a 0101 ~ 14687818 n 0000 ~ 14709265 n 0000 ~ 14709907 n 0000 ~ 14719893 n 0000 ~ 14744698 n 0000 ~ 14788200 n 0000 ~ 14827763 n 0000 ~ 14835980 n 0000 ~ 14885684 n 0000 ~ 14930670 n 0000 ~ 14998142 n 0000 ~ 15058310 n 0000 | any of a series of volatile hydroxyl compounds that are made from hydrocarbons by distillation -14709102 27 n 01 ether 0 002 @ 14727670 n 0000 + 02871060 a 0101 | any of a class of organic compounds that have two hydrocarbon groups linked by an oxygen atom -14709265 27 n 04 ethyl_alcohol 0 ethanol 0 fermentation_alcohol 0 grain_alcohol 0 007 @ 14708720 n 0000 @ 14991927 n 0000 #s 07902121 n 0000 #s 14686723 n 0000 ~ 14709706 n 0000 ~ 14709791 n 0000 ~ 14710164 n 0000 | the intoxicating agent in fermented and distilled liquors; used pure or denatured as a solvent or in medicines and colognes and cleaning solutions and rocket fuel; proposed as a renewable clean-burning additive to gasoline -14709706 27 n 01 spirits_of_wine 0 001 @ 14709265 n 0000 | rectified ethyl alcohol -14709791 27 n 01 absolute_alcohol 0 001 @ 14709265 n 0000 | pure ethyl alcohol (containing no more than 1% water) -14709907 27 n 02 isopropyl_alcohol 0 isopropanol 0 001 @ 14708720 n 0000 | alcohol used as antifreeze or a solvent -14710024 27 n 01 denaturant 0 003 @ 00020090 n 0000 + 00554110 v 0101 + 00553874 v 0101 | any substance that serves as a denaturing agent -14710164 27 n 01 denatured_alcohol 0 002 @ 14709265 n 0000 ~ 14951814 n 0000 | ethyl alcohol that is unfit for drinking but is still useful for other purposes -14710325 27 n 03 ethyl 0 ethyl_group 0 ethyl_radical 0 001 @ 14617189 n 0000 | the univalent hydrocarbon radical C2H5 derived from ethane by the removal of one hydrogen atom -14710501 27 n 01 aldohexose 0 003 @ 14710662 n 0000 @ 14690186 n 0000 ~ 14884120 n 0000 | a monosaccharide sugar having six carbon atoms and an aldehyde group -14710662 27 n 01 aldose 0 002 @ 14954284 n 0000 ~ 14710501 n 0000 | a monosaccharide sugar that contains the aldehyde group or is hemiacetal -14710805 27 n 01 acetal 0 001 @ 14727670 n 0000 | any organic compound formed by adding alcohol molecules to aldehyde molecules -14710935 27 n 01 acetaldol 0 001 @ 14711799 n 0000 | unsaturated aldol -14711008 27 n 02 acetaldehyde 0 ethanal 0 001 @ 14584765 n 0000 | a colorless volatile water-soluble liquid aldehyde used chiefly in the manufacture of acetic acid and perfumes and drugs -14711197 27 n 02 acetamide 0 ethanamide 0 001 @ 14724264 n 0000 | a colorless solid amide of acetic acid used as a solvent and in the synthesis of organic compounds -14711364 27 n 01 acrylamide 0 001 @ 14724264 n 0000 | a white crystalline amide of propenoic acid can damage the nervous system and is carcinogenic in laboratory animals; "they claimed that acrylamide is produced when certain carbohydrates are baked or fried at high temperatures" -14711647 27 n 01 agglomerate 0 003 @ 14933314 n 0000 + 00467019 a 0101 + 01484714 v 0101 | volcanic rock consisting of large fragments fused together -14711799 27 n 02 aldol 0 aldehyde-alcohol 0 002 @ 14727670 n 0000 ~ 14710935 n 0000 | an oily colorless liquid obtained by the condensation of two molecules of acetaldehyde; contains an alcohol group (-OH) and an aldehyde group (-CHO) -14712036 27 n 01 alkali 1 003 @ 15010703 n 0000 + 00025728 a 0102 + 00265094 v 0103 | a mixture of soluble salts found in arid soils and some bodies of water; detrimental to agriculture -14712224 27 n 02 alkali_metal 0 alkaline_metal 0 001 @ 14625458 n 0000 | any of the monovalent metals of group I of the periodic table (lithium or sodium or potassium or rubidium or cesium or francium); "the hydroxides of the alkali metals are strongly alkaline" -14712489 27 n 02 alkaline_earth 0 alkaline-earth_metal 0 001 @ 14625458 n 0000 | any of the bivalent metals of group II of the periodic table (calcium or strontium or barium or magnesium or beryllium) -14712692 27 n 01 alkaloid 0 019 @ 14727670 n 0000 + 02611943 a 0101 ~ 02754756 n 0000 ~ 03554795 n 0000 ~ 03938838 n 0000 ~ 04149490 n 0000 ~ 12487262 n 0000 ~ 14713341 n 0000 ~ 14713487 n 0000 ~ 14713748 n 0000 ~ 14714028 n 0000 ~ 14714213 n 0000 ~ 14714817 n 0000 ~ 14715008 n 0000 ~ 14715189 n 0000 ~ 14721951 n 0000 ~ 14761122 n 0000 ~ 15002814 n 0000 ~ 15111609 n 0000 | natural bases containing nitrogen found in plants -14713120 27 n 03 alkene 0 olefine 0 olefin 0 002 @ 14601294 n 0000 ~ 14851157 n 0000 | any unsaturated aliphatic hydrocarbon -14713247 27 n 01 alkylbenzenesulfonate 0 001 @ 14616410 n 0000 | sulfonate of alkyl benzene -14713341 27 n 01 cinchonine 0 001 @ 14712692 n 0000 | an alkaloid derivative of the bark of cinchona trees that is used as an antimalarial drug -14713487 27 n 01 ephedrine 0 002 @ 14712692 n 0000 @ 02905612 n 0000 | white odorless powdered or crystalline alkaloid from plants of the genus Ephedra (especially Ephedra sinica) or made synthetically; used as a bronchodilator to treat bronchitis and asthma -14713748 27 n 02 ergonovine 0 Ergotrate_Maleate 0 002 @ 14712692 n 0000 ;u 06845599 n 0201 | an alkaloid derived from ergot (trade name Ergotrate Maleate) that is less toxic than ergot; induces muscular contraction of the uterus and is administered after childbirth or abortion -14714028 27 n 01 ergotamine 0 001 @ 14712692 n 0000 | an alkaloid derived from ergot that is less toxic than ergot; causes constriction of blood vessels and is used to treat migraine -14714213 27 n 01 pseudoephedrine 0 001 @ 14712692 n 0000 | poisonous crystalline alkaloid occurring with ephedrine and isomorphic with it -14714353 27 n 02 epsilon_toxin 0 Clostridium_perfringens_epsilon_toxin 0 001 @ 15034939 n 0000 | a bacterial toxin produced by clostridium perfringens; causes intense abdominal cramps and diarrhea that begins 8-22 hours after consumption of foods containing large numbers of these bacteria -14714645 27 n 01 aflatoxin 0 002 @ 15036536 n 0000 @ 02842303 n 0000 | a potent carcinogen from the fungus Aspergillus; can be produced and stored for use as a bioweapon -14714817 27 n 01 nicotine 0 004 @ 15036638 n 0000 @ 14712692 n 0000 @ 04522421 n 0000 #s 04442831 n 0000 | an alkaloid poison that occurs in tobacco; used in medicine and as an insecticide -14715008 27 n 01 strychnine 0 003 @ 15036638 n 0000 @ 14712692 n 0000 #s 03836699 n 0000 | an alkaloid plant toxin extracted chiefly from nux vomica; formerly used as a stimulant -14715189 27 n 01 brucine 0 003 @ 15036638 n 0000 @ 14712692 n 0000 #s 03836699 n 0000 | a bitter alkaloid poison resembling strychnine and extracted from nux vomica -14715356 27 n 01 shag 0 001 @ 04442831 n 0000 | a strong coarse tobacco that has been shredded -14715453 27 n 01 Turkish_tobacco 0 002 @ 04442831 n 0000 ~ 14715601 n 0000 | a dark aromatic tobacco of eastern Europe that is used in cigarettes -14715601 27 n 01 latakia 0 001 @ 14715453 n 0000 | aromatic Turkish tobacco -14715679 27 n 01 alexandrite 0 001 @ 14671372 n 0000 | a green variety of chrysoberyl used as a gemstone -14715786 27 n 02 alloy_iron 0 alloy_cast_iron 0 003 @ 14801921 n 0000 ~ 14963051 n 0000 ~ 14963187 n 0000 | cast iron containing alloying elements (usually nickel or chromium or copper or molybdenum) to increase the strength or facilitate heat treatment -14716042 27 n 01 alloy_steel 0 010 @ 14802450 n 0000 ~ 14802921 n 0000 ~ 14810854 n 0000 ~ 14811083 n 0000 ~ 14947255 n 0000 ~ 14953674 n 0000 ~ 14962521 n 0000 ~ 15076180 n 0000 ~ 15081828 n 0000 ~ 15087244 n 0000 | steel who characteristics are determined by the addition of other elements in addition to carbon -14716358 27 n 01 Alnico 0 001 @ 14586769 n 0000 | trade name for an alloy used to make high-energy permanent magnets; contains aluminum and iron and nickel plus cobalt or copper or titanium -14716550 27 n 02 amalgam 0 dental_amalgam 0 001 @ 14586769 n 0000 | an alloy of mercury with another metal (usually silver) used by dentists to fill cavities in teeth; except for iron and platinum all metals dissolve in mercury and chemists refer to the resulting mercury mixtures as amalgams -14716845 27 n 01 fusible_metal 0 001 @ 14586769 n 0000 | an alloy with a low melting point and used as solder and in safety plugs and sprinkler fuses -14716997 27 n 01 brass 0 012 @ 14822563 n 0000 %s 14635722 n 0000 ~ 14720238 n 0000 ~ 14720474 n 0000 ~ 14773989 n 0000 ~ 14794534 n 0000 ~ 14879356 n 0000 ~ 14907273 n 0000 ~ 14930824 n 0000 ~ 14942924 n 0000 ~ 14970538 n 0000 ~ 15003139 n 0000 | an alloy of copper and zinc -14717275 27 n 01 bronze 0 011 @ 14822563 n 0000 + 00281913 v 0101 %s 14635722 n 0000 ~ 14717634 n 0000 ~ 14717785 n 0000 ~ 14720588 n 0000 ~ 14774575 n 0000 ~ 14775626 n 0000 ~ 14933569 n 0000 ~ 14962291 n 0000 ~ 15041793 n 0000 | an alloy of copper and tin and sometimes other elements; also any copper-base alloy containing other elements in place of tin -14717634 27 n 01 gunmetal 0 001 @ 14717275 n 0000 | a type of bronze used for parts subject to wear or corrosion (especially corrosion by sea water) -14717785 27 n 01 phosphor_bronze 0 001 @ 14717275 n 0000 | a corrosion-resistant bronze containing phosphorus; used in bearings and gears -14717925 27 n 01 cupronickel 0 001 @ 14822563 n 0000 | a 60/40 alloy of copper and nickel -14718017 27 n 01 electrum 0 001 @ 14586769 n 0000 | an alloy of gold and silver -14718099 27 n 01 pewter 0 001 @ 14586769 n 0000 | any of various alloys of tin with small amounts of other metals (especially lead) -14718233 27 n 01 pinchbeck 0 001 @ 14586769 n 0000 | an alloy of copper and zinc that is used in cheap jewelry to imitate gold -14718362 27 n 01 pot_metal 0 001 @ 14586769 n 0000 | an alloy of copper and lead used especially for making large pots -14718483 27 n 01 hard_solder 0 001 @ 14718822 n 0000 | solder that contains copper; melts at a relatively high temperature; used for brazing -14718626 27 n 01 silver_solder 0 001 @ 14718822 n 0000 | a solder that contains silver -14718715 27 n 01 soft_solder 0 001 @ 14718822 n 0000 | solder that melts at a relatively low temperature -14718822 27 n 01 solder 0 005 @ 14586769 n 0000 + 01595260 v 0101 ~ 14718483 n 0000 ~ 14718626 n 0000 ~ 14718715 n 0000 | an alloy (usually of lead and tin) used when melted to join two metal surfaces -14719025 27 n 01 gold_dust 0 001 @ 14638799 n 0000 | the particles and flakes (and sometimes small nuggets) of gold obtained in placer mining -14719169 27 n 01 white_gold 0 001 @ 14586769 n 0000 | a pale alloy of gold usually with platinum or nickel or palladium -14719291 27 n 02 Monel_metal 0 Monell_metal 0 001 @ 14962117 n 0000 | an alloy of nickel and copper and other metals (such as iron and/or manganese and/or aluminum) -14719458 27 n 01 type_metal 0 002 @ 14586769 n 0000 ~ 04504935 n 0000 | an alloy of tin and lead and antimony used to make printing type -14719597 27 n 02 white_metal 0 bearing_metal 0 001 @ 14586769 n 0000 | an alloy (often of lead or tin base) used for bearings -14719725 27 n 01 alluvial_soil 0 002 @ 14844693 n 0000 #s 09193282 n 0000 | a fine-grained fertile soil deposited by water flowing over flood plains or in river beds -14719893 27 n 02 allyl_alcohol 0 propenyl_alcohol 0 002 @ 14708720 n 0000 #s 14687818 n 0000 | an unsaturated primary alcohol present in wood spirit; use to make resins and plasticizers and pharmaceuticals -14720101 27 n 01 allyl_resin 0 001 @ 14902141 n 0000 | a resin derived from allyl alcohol that hardens when cured; used as an adhesive -14720238 27 n 03 alpha-beta_brass 0 Muntz_metal 0 yellow_metal 0 003 @ 14716997 n 0000 ~ 14947125 n 0000 ~ 14960261 n 0000 | a brass that has more zinc and is stronger than alpha brass; used in making castings and hot-worked products -14720474 27 n 01 alpha_brass 0 001 @ 14716997 n 0000 | an alloy of brass and zinc; used mainly for cold working -14720588 27 n 01 alpha_bronze 0 001 @ 14717275 n 0000 | an alloy of copper and tin that can be worked -14720692 27 n 01 alpha_iron 0 002 @ 14642417 n 0000 #s 14859201 n 0000 | a magnetic allotrope of iron; stable below 906 degrees centigrade -14720833 27 n 01 alpha-tocopheral 0 001 @ 15092409 n 0000 | a potent form of vitamin E obtained from germ oils or by synthesis -14720962 27 n 01 carotenoid 0 008 @ 14983143 n 0000 @ 14989820 n 0000 @ 14724645 n 0000 ~ 14721236 n 0000 ~ 14721342 n 0000 ~ 14721470 n 0000 ~ 14721635 n 0000 ~ 14721781 n 0000 | any of a class of highly unsaturated yellow to red pigments occurring in plants and animals -14721236 27 n 01 carotene 2 001 @ 14720962 n 0000 | yellow or orange-red fat-soluble pigments in plants -14721342 27 n 01 lycopene 0 001 @ 14720962 n 0000 | carotenoid that makes tomatoes red; may lower the risk of prostate cancer -14721470 27 n 01 beta-carotene 0 002 @ 15090535 n 0000 @ 14720962 n 0000 | an isomer of carotene that is found in dark green and dark yellow fruits and vegetables -14721635 27 n 03 xanthophyll 0 xanthophyl 0 lutein 0 001 @ 14720962 n 0000 | yellow carotenoid pigments in plants and animal fats and egg yolks -14721781 27 n 01 zeaxanthin 0 001 @ 14720962 n 0000 | yellow carotenoid (isomeric with lutein and occurs widely with it) that is the main pigment in yellow Indian corn -14721951 27 n 01 betaine 0 001 @ 14712692 n 0000 | a sweet tasting alkaloid that occurs in sugar beets -14722056 27 n 01 beta_iron 0 001 @ 14642417 n 0000 | an allotrope of iron that is the same as alpha iron except that it is nonmagnetic; stable between 768 and 906 degrees centigrade -14722240 27 n 01 gamma_iron 0 002 @ 14642417 n 0000 #s 14769760 n 0000 | a nonmagnetic allotrope of iron that is the basis of austenite; stable between 906 and 1403 degrees centigrade -14722426 27 n 01 delta_iron 0 001 @ 14642417 n 0000 | an allotrope of iron that is stable between 1403 degrees centigrade and the melting point (= 1532 degrees) -14722589 27 n 01 amethyst 0 003 @ 14693733 n 0000 @ 15078050 n 0000 + 00369732 a 0101 | a transparent purple variety of quartz; used as a gemstone -14722738 27 n 01 amygdaloid 0 001 @ 14933314 n 0000 | volcanic rock in which rounded cavities formed by expanding gas have subsequently become filled with mineral deposits -14722912 27 n 02 aluminum_bronze 0 aluminium_bronze 0 001 @ 14822563 n 0000 | an alloy of copper and aluminum with high tensile strength and resistance to corrosion -14723079 27 n 01 activator 0 007 @ 00019613 n 0000 ;c 06037666 n 0000 + 00190682 v 0101 ! 14724436 n 0101 ~ 14723425 n 0000 ~ 14723628 n 0000 ~ 14724025 n 0000 | (biology) any agency bringing about activation; a molecule that increases the activity of an enzyme or a protein that increases the production of a gene product in DNA transcription -14723425 27 n 01 activating_agent 0 002 @ 14723079 n 0000 ;c 13516312 n 0000 | (mineral extraction) a surface-active chemical used in flotation process to increase the attraction to a specific mineral -14723628 27 n 02 catalyst 0 accelerator 0 007 @ 14723079 n 0000 ;c 06084469 n 0000 + 00267519 v 0101 ! 14725024 n 0101 ~ 14723909 n 0000 ~ 14732946 n 0000 ~ 14984244 n 0000 | (chemistry) a substance that initiates or accelerates a chemical reaction without itself being affected -14723909 27 n 01 biocatalyst 0 002 @ 14723628 n 0000 + 02664825 a 0101 | a biochemical catalyst such as an enzyme -14724025 27 n 02 sensitizer 0 sensitiser 0 005 @ 14723079 n 0000 ;c 06084469 n 0000 + 00573932 v 0202 + 00573671 v 0202 + 00573932 v 0101 | (chemistry) a substance other than a catalyst that facilitates the start of a catalytic reaction -14724264 27 n 01 amide 0 005 @ 14727670 n 0000 ~ 14711197 n 0000 ~ 14711364 n 0000 ~ 14743046 n 0000 ~ 14862640 n 0000 | any organic compound containing the group -CONH2 -14724436 27 n 01 inhibitor 0 007 @ 00020090 n 0000 + 00462689 v 0101 ! 14723079 n 0101 ~ 02712393 n 0000 ~ 14724645 n 0000 ~ 14725024 n 0000 ~ 14727355 n 0000 | a substance that retards or stops an activity -14724645 27 n 01 antioxidant 0 008 @ 14724436 n 0000 ~ 14606839 n 0000 ~ 14654175 n 0000 ~ 14720962 n 0000 ~ 14724916 n 0000 ~ 14730421 n 0000 ~ 15092409 n 0000 ~ 15093298 n 0000 | substance that inhibits oxidation or inhibits reactions promoted by oxygen or peroxides -14724916 27 n 01 rust_inhibitor 0 001 @ 14724645 n 0000 | antioxidant that inhibits the formation of rust -14725024 27 n 01 anticatalyst 0 003 @ 14724436 n 0000 ;c 06084469 n 0000 ! 14723628 n 0101 | (chemistry) a substance that retards a chemical reaction or diminishes the activity of a catalyst -14725217 27 n 01 actinolite 0 002 @ 14665767 n 0000 #m 14666012 n 0000 | a green mineral of the amphibole group; calcium magnesium iron silicate -14725364 27 n 01 andesite 0 001 @ 14931879 n 0000 | a dark grey volcanic rock -14725444 27 n 01 anthophyllite 0 002 @ 14665767 n 0000 #m 14666012 n 0000 | a dark brown mineral of the amphibole group; magnesium iron silicate -14725591 27 n 01 asbestos 0 004 @ 14665767 n 0000 #m 14666012 n 0000 ~ 14725809 n 0000 ~ 14725941 n 0000 | a fibrous amphibole; used for making fireproof articles; inhaling fibers can cause asbestosis or lung cancer -14725809 27 n 01 chrysotile 0 001 @ 14725591 n 0000 | a grey or green fibrous mineral; an important source of commercial asbestos -14725941 27 n 01 tremolite 0 002 @ 14725591 n 0000 #m 14666012 n 0000 | a white or pale green mineral (calcium magnesium silicate) of the amphibole group used as a form of asbestos -14726124 27 n 01 hornblende 0 002 @ 14665767 n 0000 #m 14666012 n 0000 | a green to black mineral of the amphibole group; consists of silicates of calcium and sodium and magnesium and iron -14726315 27 n 01 aphanite 0 002 @ 14696793 n 0000 + 02632263 a 0101 | fine-grained homogeneous rock (such as basalt) containing minerals undetectable by the naked eye -14726484 27 n 01 aplite 0 002 @ 14931879 n 0000 + 02632916 a 0101 | light-colored and fine-grained granitic rock consisting chiefly of quartz and feldspars -14726642 27 n 01 afterdamp 0 001 @ 14877585 n 0000 | a toxic mixture of gases (including carbon dioxide and carbon monoxide and nitrogen) after an explosion of firedamp in a mine -14726823 27 n 01 dacite 0 003 @ 14933314 n 0000 + 03059198 a 0101 %s 14865316 n 0000 | a grey volcanic rock containing plagioclase and quartz and other crystalline minerals -14726998 27 n 01 firedamp 0 001 @ 14877585 n 0000 | a mixture of gases (mostly methane) that form in coal mines and become explosive when mixed with air -14727153 27 n 01 carrier 0 001 @ 14806838 n 0000 | an inactive substance that is a vehicle for a radioactive tracer of the same substance and that assists in its recovery after some chemical reaction -14727355 27 n 01 moderator 0 003 @ 14724436 n 0000 #p 03834040 n 0000 ~ 14727508 n 0000 | any substance used to slow down neutrons in nuclear reactors -14727508 27 n 02 heavy_water 0 deuterium_oxide 0 001 @ 14727355 n 0000 | water containing a substantial proportion of deuterium atoms, used in nuclear reactors -14727670 27 n 01 organic_compound 0 053 @ 14818238 n 0000 ~ 14584765 n 0000 ~ 14601294 n 0000 ~ 14601505 n 0000 ~ 14601646 n 0000 ~ 14601829 n 0000 ~ 14604857 n 0000 ~ 14605590 n 0000 ~ 14620257 n 0000 ~ 14690447 n 0000 ~ 14691231 n 0000 ~ 14691445 n 0000 ~ 14692202 n 0000 ~ 14709102 n 0000 ~ 14710805 n 0000 ~ 14711799 n 0000 ~ 14712692 n 0000 ~ 14724264 n 0000 ~ 14738623 n 0000 ~ 14739271 n 0000 ~ 14771088 n 0000 ~ 14788875 n 0000 ~ 14807410 n 0000 ~ 14808617 n 0000 ~ 14808752 n 0000 ~ 14825631 n 0000 ~ 14825812 n 0000 ~ 14827346 n 0000 ~ 14827505 n 0000 ~ 14850483 n 0000 ~ 14876318 n 0000 ~ 14887305 n 0000 ~ 14894140 n 0000 ~ 14904528 n 0000 ~ 14905911 n 0000 ~ 14906261 n 0000 ~ 14909319 n 0000 ~ 14911057 n 0000 ~ 14926294 n 0000 ~ 14944888 n 0000 ~ 14963486 n 0000 ~ 14972092 n 0000 ~ 14980468 n 0000 ~ 14982421 n 0000 ~ 14989545 n 0000 ~ 14999801 n 0000 ~ 15000475 n 0000 ~ 15057744 n 0000 ~ 15058023 n 0000 ~ 15069998 n 0000 ~ 15085472 n 0000 ~ 15110666 n 0000 ~ 15113050 n 0000 | any compound of carbon and another element or a radical -14728724 27 n 01 protein 0 032 @ 14944888 n 0000 #s 07649854 n 0000 #s 07840804 n 0000 #s 07844042 n 0000 #s 07708798 n 0000 + 02785757 a 0101 ~ 01329794 n 0000 ~ 07570237 n 0000 %s 14601829 n 0000 ~ 14729633 n 0000 ~ 14729737 n 0000 ~ 14729953 n 0000 ~ 14730105 n 0000 ~ 14730301 n 0000 ~ 14731135 n 0000 ~ 14732946 n 0000 ~ 14733941 n 0000 ~ 14734164 n 0000 ~ 14734348 n 0000 ~ 14734625 n 0000 ~ 14734761 n 0000 ~ 14734905 n 0000 ~ 14735077 n 0000 ~ 14735225 n 0000 ~ 14736359 n 0000 ~ 14736510 n 0000 ~ 14736854 n 0000 ~ 14736972 n 0000 %s 14742917 n 0000 ~ 14828193 n 0000 ~ 14866166 n 0000 ~ 15027189 n 0000 | any of a large group of nitrogenous organic compounds that are essential constituents of living cells; consist of polymers of amino acids; essential in the diet of animals for growth and for repair of tissues; can be obtained from meat and eggs and milk and legumes; "a diet high in protein" -14729633 27 n 01 recombinant_protein 0 001 @ 14728724 n 0000 | a protein derived from recombinant DNA -14729737 27 n 01 actomyosin 0 003 @ 14728724 n 0000 %s 14731334 n 0000 %s 15022617 n 0000 | a protein complex in muscle fibers; composed of myosin and actin; shortens when stimulated and causes muscle contractions -14729953 27 n 01 aleurone 0 002 @ 14728724 n 0000 + 02611013 a 0101 | granular protein in outermost layer of endosperm of many seeds or cereal grains -14730105 27 n 01 amyloid 1 003 @ 14728724 n 0000 ;c 06060845 n 0000 + 02299189 a 0104 | (pathology) a waxy translucent complex protein resembling starch that results from degeneration of tissue -14730301 27 n 01 apoenzyme 0 001 @ 14728724 n 0000 | a protein that combines with a coenzyme to form an active enzyme -14730421 27 n 01 beta-naphthol 0 002 @ 14958800 n 0000 @ 14724645 n 0000 | an isomer of naphthol used in rubber as an antioxidant -14730553 27 n 02 gelatin 0 gelatine 0 006 @ 15026716 n 0000 + 02416610 a 0201 + 02416610 a 0101 + 00565481 v 0101 + 00565081 v 0101 + 00565279 v 0101 | a colorless water-soluble glutinous protein obtained from animal tissues such as bone and skin -14730802 27 n 01 chondrin 0 002 @ 15026716 n 0000 + 00499512 v 0101 | a substance that resembles gelatin and is obtained by boiling cartilage in water -14730955 27 n 01 mucin 0 003 @ 14888310 n 0000 #s 05415395 n 0000 + 02903177 a 0101 | a nitrogenous substance found in mucous secretions; a lubricant that protects body surfaces -14731135 27 n 02 conjugated_protein 0 compound_protein 0 004 @ 14728724 n 0000 ~ 14888310 n 0000 ~ 14888884 n 0000 ~ 14939230 n 0000 | a protein complex combining amino acids with other substances -14731334 27 n 01 actin 0 002 @ 14736972 n 0000 #s 14729737 n 0000 | one of the proteins into which actomyosin can be split; can exist in either a globular or a fibrous form -14731509 27 n 02 albumin 0 albumen 0 005 @ 14736972 n 0000 + 02610364 a 0101 ~ 14696463 n 0000 ~ 14731716 n 0000 ~ 14731799 n 0000 | a simple water-soluble protein found in many animal tissues and liquids -14731716 27 n 01 lactalbumin 0 001 @ 14731509 n 0000 | albumin occurring in milk -14731799 27 n 01 serum_albumin 0 002 @ 14731509 n 0000 #s 05403149 n 0000 | albumin occurring in blood serum; serves to maintain the somatic pressure of the blood -14731964 27 n 01 alpha_globulin 0 001 @ 15022171 n 0000 | a globulin in blood plasma or serum that is alkaline and has great electrophoretic mobility -14732116 27 n 01 serum_globulin 0 003 @ 15022171 n 0000 #s 05403149 n 0000 ~ 14732299 n 0000 | globulins occurring in blood serum and containing most of the antibodies of the blood -14732299 27 n 02 C-reactive_protein 0 CRP 0 001 @ 14732116 n 0000 | a byproduct of inflammation; a globulin that is found in the blood in some cases of acute inflammation -14732472 27 n 02 keratin 0 ceratin 0 004 @ 15026716 n 0000 #s 14758027 n 0000 #s 05254795 n 0000 #s 01896031 n 0000 | a fibrous scleroprotein that occurs in the outer layer of the skin and in horny tissues such as hair, feathers, nails, and hooves -14732722 27 n 01 chitin 0 003 @ 14994004 n 0000 + 02694948 a 0101 %s 14752323 n 0000 | a tough semitransparent horny substance; the principal component of the exoskeletons of arthropods and the cell walls of certain fungi -14732946 27 n 01 enzyme 0 047 @ 14728724 n 0000 @ 14723628 n 0000 + 03005039 a 0101 %p 08623260 n 0000 ~ 14707361 n 0000 ~ 14735457 n 0000 ~ 14735822 n 0000 ~ 14735953 n 0000 ~ 14736079 n 0000 ~ 14736201 n 0000 ~ 14737639 n 0000 ~ 14737847 n 0000 ~ 14828815 n 0000 ~ 14829073 n 0000 ~ 14836468 n 0000 ~ 14849540 n 0000 ~ 14850190 n 0000 ~ 14908297 n 0000 ~ 14910165 n 0000 ~ 14924359 n 0000 ~ 14927881 n 0000 ~ 14938687 n 0000 ~ 14944455 n 0000 ~ 14953968 n 0000 ~ 14963762 n 0000 ~ 14963916 n 0000 ~ 14971234 n 0000 ~ 14971969 n 0000 ~ 14973833 n 0000 ~ 14978544 n 0000 ~ 14978729 n 0000 ~ 14978887 n 0000 ~ 14981983 n 0000 ~ 14983774 n 0000 ~ 14984378 n 0000 ~ 14999106 n 0000 ~ 15003645 n 0000 ~ 15004317 n 0000 ~ 15021560 n 0000 ~ 15060937 n 0000 ~ 15061171 n 0000 ~ 15065025 n 0000 ~ 15068282 n 0000 ~ 15077571 n 0000 ~ 15081052 n 0000 ~ 15084110 n 0000 ~ 15109586 n 0000 | any of several complex proteins that are produced by cells and act as catalysts in specific biochemical reactions -14733941 27 n 01 fibrin 0 002 @ 14728724 n 0000 + 02727369 a 0101 | a white insoluble fibrous protein formed by the action of thrombin on fibrinogen when blood clots; it forms a network that traps red cells and platelets -14734164 27 n 01 filaggrin 0 001 @ 14728724 n 0000 | the main protein of the keratohyalin granules; "the specific target of the immune response in rheumatoid arthritis is filaggrin" -14734348 27 n 01 growth_factor 0 002 @ 14728724 n 0000 ~ 14734487 n 0000 | a protein that is involved in cell differentiation and growth -14734487 27 n 02 nerve_growth_factor 0 NGF 0 001 @ 14734348 n 0000 | a protein that is involved in the growth of peripheral nerve cells -14734625 27 n 01 haptoglobin 0 001 @ 14728724 n 0000 | a protein in plasma that binds free hemoglobin and removes it (as from wounds) -14734761 27 n 02 iodoprotein 0 iodinated_protein 0 003 @ 14728724 n 0000 ~ 14922637 n 0000 ~ 14922779 n 0000 | a protein that contains iodine -14734905 27 n 01 nucleoprotein 0 001 @ 14728724 n 0000 | any of several substances found in the nuclei of all living cells; consists of a protein bound to a nucleic acid -14735077 27 n 01 opsin 0 003 @ 14728724 n 0000 #s 15088869 n 0000 #s 15088669 n 0000 | retinal protein formed by the action of light on rhodopsin -14735225 27 n 01 phosphoprotein 0 002 @ 14728724 n 0000 ~ 14735347 n 0000 | containing chemically bound phosphoric acid -14735347 27 n 01 casein 0 001 @ 14735225 n 0000 | a milk protein used in making e.g. plastics and adhesives -14735457 27 n 01 amylase 0 002 @ 14732946 n 0000 ~ 14738521 n 0000 | any of a group of proteins found in saliva and pancreatic juice and parts of plants; help convert starch to sugar -14735642 27 n 03 angiotensin_converting_enzyme 0 angiotensin-converting_enzyme 0 ACE 0 001 @ 14999106 n 0000 | proteolytic enzyme that converts angiotensin I into angiotensin II -14735822 27 n 01 cholinesterase 0 001 @ 14732946 n 0000 | an enzyme that hydrolyses acetylcholine (into choline and acetic acid) -14735953 27 n 01 coagulase 0 003 @ 14732946 n 0000 ~ 14737249 n 0000 ~ 15004317 n 0000 | an enzyme that induces coagulation -14736079 27 n 01 collagenase 0 001 @ 14732946 n 0000 | any enzyme that catalyzes the hydrolysis of collagen and gelatin -14736201 27 n 01 complement 0 002 @ 14732946 n 0000 #p 00860434 n 0000 | one of a series of enzymes in the blood serum that are part of the immune response -14736359 27 n 01 plasma_protein 0 004 @ 14728724 n 0000 #s 05403427 n 0000 ~ 15022389 n 0000 ~ 15022776 n 0000 | any of the proteins in blood plasma -14736510 27 n 02 prostate_specific_antigen 0 PSA 0 001 @ 14728724 n 0000 | a protein manufactured exclusively by the prostate gland; PSA is produced for the ejaculate where it liquifies the semen and allows sperm cells to swim freely; elevated levels of PSA in blood serum are associated with benign prostatic hyperplasia and prostate cancer -14736854 27 n 01 proteome 0 001 @ 14728724 n 0000 | the full complement of proteins produced by a particular genome -14736972 27 n 01 simple_protein 0 010 @ 14728724 n 0000 ~ 14731334 n 0000 ~ 14731509 n 0000 ~ 15022171 n 0000 ~ 15025942 n 0000 ~ 15026155 n 0000 ~ 15026256 n 0000 ~ 15026420 n 0000 ~ 15026508 n 0000 ~ 15026716 n 0000 | a protein that yields only amino acids when hydrolyzed -14737249 27 n 01 thrombin 0 001 @ 14735953 n 0000 | an enzyme that acts on fibrinogen in blood causing it to clot -14737365 27 n 03 tumor_necrosis_factor 0 tumour_necrosis_factor 0 TNF 0 001 @ 14828193 n 0000 | a proinflammatory cytokine that is produced by white blood cells (monocytes and macrophages); has an antineoplastic effect but causes inflammation (as in rheumatoid arthritis) -14737639 27 n 01 catalase 0 002 @ 14732946 n 0000 + 02683049 a 0101 | enzyme found in most plant and animal cells that functions as an oxidative catalyst; decomposes hydrogen peroxide into oxygen and water -14737847 27 n 02 cyclooxygenase 0 Cox 0 003 @ 14732946 n 0000 ~ 14738052 n 0000 ~ 14738295 n 0000 | either of two related enzymes that control the production of prostaglandins and are blocked by aspirin -14738052 27 n 02 cyclooxygenase-1 0 Cox-1 0 001 @ 14737847 n 0000 | an enzyme that regulates prostaglandins that are important for the health of the stomach lining and kidneys; "an unfortunate side effect of NSAIDs is that they block Cox-1" -14738295 27 n 02 cyclooxygenase-2 0 Cox-2 0 001 @ 14737847 n 0000 | an enzyme that makes prostaglandins that cause inflammation and pain and fever; "the beneficial effects of NSAIDs result from their ability to block Cox-2" -14738521 27 n 01 ptyalin 0 002 @ 14735457 n 0000 #s 05416198 n 0000 | an amylase secreted in saliva -14738623 27 n 01 rennet 0 002 @ 14727670 n 0000 %s 15004317 n 0000 | a substance that curdles milk in making cheese and junket -14738752 27 n 01 ferment 0 003 @ 00020090 n 0000 + 00458754 v 0101 + 00458471 v 0103 | a substance capable of bringing about fermentation -14738892 27 n 01 substrate 0 001 @ 00019613 n 0000 | the substance that is acted upon by an enzyme or ferment -14739004 27 n 02 amine 0 aminoalkane 0 007 @ 14951377 n 0000 + 02617146 a 0102 ~ 05414724 n 0000 ~ 14754505 n 0000 ~ 14883661 n 0000 ~ 14953813 n 0000 ~ 14999411 n 0000 | a compound derived from ammonia by replacing hydrogen atoms by univalent hydrocarbon radicals -14739271 27 n 01 azadirachtin 0 002 @ 14727670 n 0000 #s 12696830 n 0000 | insecticide -14739360 27 n 01 carboxylic_acid 0 015 @ 14607521 n 0000 ~ 14599168 n 0000 ~ 14612317 n 0000 ~ 14615971 n 0000 ~ 14616181 n 0000 ~ 14616292 n 0000 ~ 14739734 n 0000 ~ 14739861 n 0000 ~ 14739978 n 0000 ~ 14740094 n 0000 ~ 14740227 n 0000 ~ 14775321 n 0000 ~ 14862753 n 0000 ~ 14929062 n 0000 ~ 14998522 n 0000 | an organic acid characterized by one or more carboxyl groups -14739734 27 n 01 saccharic_acid 0 001 @ 14739360 n 0000 | a white dicarboxylic acid formed from oxidation of sugar or starch -14739861 27 n 02 sebacic_acid 0 decanedioic_acid 0 001 @ 14739360 n 0000 | a dicarboxylic acid used to make resins -14739978 27 n 01 sorbic_acid 0 001 @ 14739360 n 0000 | a white crystalline carboxylic acid used as a preservative -14740094 27 n 02 valeric_acid 0 pentanoic_acid 0 001 @ 14739360 n 0000 | a clear liquid carboxylic acid used in perfumes and drugs -14740227 27 n 01 fatty_acid 0 004 @ 14739360 n 0000 ~ 14740587 n 0000 ~ 14740915 n 0000 ~ 14741124 n 0000 | any of a class of aliphatic monocarboxylic acids that form part of a lipid molecule and can be derived from fat by hydrolysis; fatty acids are simple molecules built around a series of carbon atoms linked together in a chain of 12 to 22 carbon atoms -14740587 27 n 01 saturated_fatty_acid 0 010 @ 14740227 n 0000 ~ 14742476 n 0000 ~ 14788332 n 0000 ~ 14791830 n 0000 ~ 14791988 n 0000 ~ 14792146 n 0000 ~ 14930476 n 0000 ~ 14958102 n 0000 ~ 14973303 n 0000 ~ 15056938 n 0000 | a fatty acid whose carbon chain cannot absorb any more hydrogen atoms; found chiefly in animal fats -14740915 27 n 01 unsaturated_fatty_acid 0 005 @ 14740227 n 0000 ~ 14741474 n 0000 ~ 14741730 n 0000 ~ 14742601 n 0000 ~ 14847810 n 0000 | a fatty acid whose carbon chain can absorb additional hydrogen atoms -14741124 27 n 01 trans_fatty_acid 0 003 @ 14740227 n 0000 #s 07672914 n 0000 ~ 14840342 n 0000 | a fatty acid that has been produced by hydrogenating an unsaturated fatty acid (and so changing its shape); found in processed foods such as margarine and fried foods and puddings and commercially baked goods and partially hydrogenated vegetable oils -14741474 27 n 01 monounsaturated_fatty_acid 0 003 @ 14740915 n 0000 ~ 14840342 n 0000 ~ 14968526 n 0000 | an unsaturated fatty acid whose carbon chain has one double or triple valence bond per molecule; found chiefly in olive oil and chicken and almonds -14741730 27 n 01 polyunsaturated_fatty_acid 0 004 @ 14740915 n 0000 ~ 14742028 n 0000 ~ 14742271 n 0000 ~ 14937943 n 0000 | an unsaturated fatty acid whose carbon chain has more than one double or triple valence bond per molecule; found chiefly in fish and corn and soybean oil and safflower oil -14742028 27 n 02 omega-3_fatty_acid 0 omega-3 0 004 @ 14741730 n 0000 ~ 14609443 n 0000 ~ 14837900 n 0000 ~ 14847654 n 0000 | a polyunsaturated fatty acid whose carbon chain has its first double valence bond three carbons from the beginning -14742271 27 n 02 omega-6_fatty_acid 0 omega-6 0 002 @ 14741730 n 0000 ~ 14938199 n 0000 | a polyunsaturated fatty acid whose carbon chain has its first double valence bond six carbons from the beginning -14742476 27 n 02 margaric_acid 0 heptadecanoic_acid 0 001 @ 14740587 n 0000 | a colorless crystalline synthetic fatty acid -14742601 27 n 01 ricinoleic_acid 0 002 @ 14740915 n 0000 #s 02980841 n 0000 | an oily fatty acid found in castor oil and used in soap -14742737 27 n 01 fibrinopeptide 0 001 @ 14743046 n 0000 | peptide released from the amino end of fibrinogen by the action of thrombin to form fibrin during clotting of the blood -14742917 27 n 01 polypeptide 0 002 @ 14743046 n 0000 #s 14728724 n 0000 | a peptide containing 10 to more than 100 amino acids -14743046 27 n 01 peptide 0 004 @ 14724264 n 0000 ~ 14742737 n 0000 ~ 14742917 n 0000 ~ 14809057 n 0000 | amide combining the amino group of one amino acid with the carboxyl group of another; usually obtained by partial hydrolysis of protein -14743289 27 n 01 aminobenzoic_acid 0 001 @ 14607521 n 0000 | a derivative of benzoic acid -14743381 27 n 03 amino_plastic 0 aminoplast 0 amino_resin 0 001 @ 14592610 n 0000 | a plastic (synthetic resin) made from amino compounds; used as an adhesive and as a coating for paper and textiles -14743582 27 n 01 ammonia 0 003 @ 14618834 n 0000 + 00187147 v 0101 ~ 14744120 n 0000 | a pungent gas compounded of nitrogen and hydrogen (NH3) -14743727 27 n 01 ammine 0 001 @ 14818238 n 0000 | a complex inorganic compound that contains ammonia molecules -14743840 27 n 03 ammonia_water 0 ammonia 1 ammonium_hydroxide 0 002 @ 14940386 n 0000 + 00187147 v 0201 | a water solution of ammonia -14743976 27 n 02 ammoniac 0 gum_ammoniac 0 003 @ 14898470 n 0000 + 02617641 a 0101 + 02617641 a 0102 | the aromatic gum of the ammoniac plant -14744120 27 n 02 ammonium 0 ammonium_ion 0 002 @ 14743582 n 0000 + 00497219 v 0101 | the ion NH4 derived from ammonia; behaves in many respects like an alkali metal ion -14744291 27 n 01 ammonium_carbamate 0 001 @ 14792281 n 0000 | a salt of carbamic acid that is used as a nitrogen fertilizer -14744417 27 n 01 ammonium_carbonate 0 001 @ 14798450 n 0000 | a carbonate of ammonium; used in the manufacture of smelling salts and baking powder and ammonium compounds -14744589 27 n 02 ammonium_chloride 0 sal_ammoniac 0 001 @ 15010703 n 0000 | a white salt used in dry cells -14744698 27 n 01 amyl_alcohol 0 001 @ 14708720 n 0000 | a mixture of 2 or more isomeric alcohols; used as a solvent and in organic synthesis -14744841 27 n 03 phytohormone 0 plant_hormone 0 growth_regulator 0 005 @ 14991927 n 0000 ;c 06066555 n 0000 ~ 14745057 n 0000 ~ 14745222 n 0000 ~ 14745477 n 0000 | (botany) a plant product that acts like a hormone -14745057 27 n 01 auxin 0 004 @ 14744841 n 0000 + 02653281 a 0101 ~ 14918529 n 0000 ~ 14918654 n 0000 | a plant hormone that promotes root formation and bud growth -14745222 27 n 01 gibberellin 0 002 @ 14744841 n 0000 ~ 14745368 n 0000 | a plant hormone isolated from a fungus; used in promoting plant growth -14745368 27 n 01 gibberellic_acid 0 001 @ 14745222 n 0000 | a crystalline acid associated with gibberellin -14745477 27 n 02 kinin 0 cytokinin 0 001 @ 14744841 n 0000 | any of a class of plant hormones that promote cell division and delay the senescence of leaves -14745635 27 n 03 steroid_hormone 0 steroid 2 sex_hormone 0 007 @ 05407119 n 0000 + 02803579 a 0201 ~ 14747338 n 0000 ~ 14747587 n 0000 ~ 14749794 n 0000 ~ 14751417 n 0000 ~ 15111116 n 0000 | any hormone affecting the development and growth of sex organs -14745891 27 n 01 corticosterone 0 001 @ 14752057 n 0000 | secreted by the adrenal cortex; involved in regulating water and electrolyte balance in the body -14746048 27 n 02 progesterone 0 Lipo-Lutin 0 003 @ 14747338 n 0000 #s 03936895 n 0000 ;u 06845599 n 0201 | a steroid hormone (trade name Lipo-Lutin) produced in the ovary; prepares and maintains the uterus for pregnancy -14746270 27 n 02 megestrol 0 megestrol_acetate 0 001 @ 14747338 n 0000 | a synthetic progestational compound used to treat endometrial carcinoma -14746417 27 n 04 norethindrone 0 norethindrone_acetate 0 norethandrolone 0 Norlutin 0 009 @ 14747338 n 0000 #s 03685962 n 0000 #s 03759795 n 0000 #s 03778135 n 0000 #s 03830278 n 0000 #s 03830111 n 0000 #s 03830448 n 0000 #s 03866555 n 0000 ;u 06845599 n 0401 | a synthetic progestational hormone (trade name Norlutin) used in oral contraceptives and to treat endometriosis -14746793 27 n 01 norethynodrel 0 002 @ 14747338 n 0000 #s 03289819 n 0000 | a progesterone derivative used in oral contraceptives and in the control of menstruation and the treatment of abnormal uterine bleeding -14747007 27 n 01 norgestrel 0 004 @ 14747338 n 0000 #s 03689840 n 0000 #s 03866908 n 0000 #s 03867070 n 0000 | synthetic progestin used in oral contraceptives -14747168 27 n 02 medroxyprogesterone 0 Provera 0 002 @ 14747338 n 0000 ;u 06845599 n 0201 | a progestin compound (trade name Provera) used to treat menstrual disorders -14747338 27 n 02 progestin 0 progestogen 0 007 @ 14745635 n 0000 ~ 14746048 n 0000 ~ 14746270 n 0000 ~ 14746417 n 0000 ~ 14746793 n 0000 ~ 14747007 n 0000 ~ 14747168 n 0000 | any of a group of steroid hormones that have the effect of progesterone -14747587 27 n 02 androgen 0 androgenic_hormone 0 005 @ 14745635 n 0000 ~ 14747981 n 0000 ~ 14748117 n 0000 ~ 14748335 n 0000 ~ 14748577 n 0000 | male sex hormone that is produced in the testes and responsible for typical male sexual characteristics -14747838 27 n 01 adrenosterone 0 001 @ 05407119 n 0000 | a steroid having androgenic activity; obtained from the cortex of the adrenal gland -14747981 27 n 01 androsterone 0 002 @ 14747587 n 0000 @ 15058163 n 0000 | an androgenic hormone that is less active than testosterone -14748117 27 n 01 methyltestosterone 0 001 @ 14747587 n 0000 | an androgenic compound contained in drugs that are used to treat testosterone deficiency and female breast cancer and to stimulate growth and weight gain -14748335 27 n 03 nandrolone 0 Durabolin 0 Kabolin 0 003 @ 14747587 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | an androgen (trade names Durabolin or Kabolin) that is used to treat testosterone deficiency or breast cancer or osteoporosis -14748577 27 n 01 testosterone 0 001 @ 14747587 n 0000 | a potent androgenic hormone produced chiefly by the testes; responsible for the development of male secondary sex characteristics -14748765 27 n 02 follicle-stimulating_hormone 0 FSH 0 001 @ 05410315 n 0000 | a gonadotropic hormone that is secreted by the anterior pituitary and stimulates growth of Graafian follicles in female mammals, and activates the cells in male mammals that form sperm -14749030 27 n 03 human_chorionic_gonadotropin 0 human_chorionic_gonadotrophin 0 HCG 0 001 @ 05410315 n 0000 | hormone produced early in pregnancy by the placenta; detection in the urine and serum is the basis for one kind of pregnancy test -14749272 27 n 04 luteinizing_hormone 0 LH 0 interstitial_cell-stimulating_hormone 0 ICSH 0 001 @ 05410315 n 0000 | a gonadotropic hormone that is secreted by the anterior pituitary; stimulates ovulation in female mammals and stimulates androgen release in male mammals -14749543 27 n 03 prolactin 0 lactogenic_hormone 0 luteotropin 0 002 @ 14929350 n 0000 @ 05410315 n 0000 | gonadotropic hormone secreted by the anterior pituitary; in females it stimulates growth of the mammary glands and lactation after parturition -14749794 27 n 02 estrogen 0 oestrogen 0 008 @ 14745635 n 0000 + 02723312 a 0101 ~ 14750122 n 0000 ~ 14750316 n 0000 ~ 14750622 n 0000 ~ 14750782 n 0000 ~ 14751055 n 0000 ~ 14751216 n 0000 | a general term for female steroid sex hormones that are secreted by the ovary and responsible for typical female sexual characteristics -14750122 27 n 05 diethylstilbestrol 0 diethylstilboestrol 0 stilbestrol 0 stilboestrol 0 DES 0 001 @ 14749794 n 0000 | a potent estrogen used in medicine and in feed for livestock and poultry -14750316 27 n 02 estradiol 0 oestradiol 0 007 @ 14749794 n 0000 #s 03685962 n 0000 #s 03689840 n 0000 #s 03778135 n 0000 #s 03830278 n 0000 #s 03866555 n 0000 #s 03866908 n 0000 | the most powerful female hormone that occurs naturally; synthesized and used to treat estrogen deficiency and breast cancer -14750622 27 n 02 estriol 0 oestriol 0 001 @ 14749794 n 0000 | a naturally occurring estrogenic hormone; a synthetic form is used to treat estrogen deficiency -14750782 27 n 04 estrone 0 oestrone 0 theelin 0 Estronol 0 003 @ 14749794 n 0000 @ 15058163 n 0000 ;u 06845599 n 0401 | a naturally occurring weak estrogenic hormone secreted by the mammalian ovary; synthesized (trade name Estronol) and used to treat estrogen deficiency -14751055 27 n 01 hexestrol 0 001 @ 14749794 n 0000 | estrogen compound used to treat menstrual irregularities and menopausal symptoms and to prevent pregnancy -14751216 27 n 01 mestranol 0 004 @ 14749794 n 0000 #s 03289819 n 0000 #s 03830111 n 0000 #s 03867201 n 0000 | a synthetic form of estrogen used in combination with a progestin in oral contraceptives -14751417 27 n 03 corticosteroid 0 corticoid 0 adrenal_cortical_steroid 0 008 @ 14745635 n 0000 ~ 14751863 n 0000 ~ 14752057 n 0000 ~ 14752702 n 0000 ~ 14752952 n 0000 ~ 14753808 n 0000 ~ 14754192 n 0000 ~ 15078768 n 0000 | a steroid hormone produced by the adrenal cortex or synthesized; administered as drugs they reduce swelling and decrease the body's immune response; "adrenal cortical steroids are used to treat many different conditions" -14751863 27 n 01 mineralocorticoid 0 002 @ 14751417 n 0000 ~ 14752511 n 0000 | hormone that is one of the steroids of the adrenal cortex that influences the metabolism of sodium and potassium -14752057 27 n 01 glucocorticoid 0 005 @ 05407119 n 0000 @ 14751417 n 0000 ~ 14745891 n 0000 ~ 14753188 n 0000 ~ 14753414 n 0000 | a steroid hormone that is produced by the adrenal cortex of animals; affects functioning of gonads and has anti-inflammatory activity -14752323 27 n 01 glucosamine 0 004 @ 14617597 n 0000 @ 14884120 n 0000 #s 14994004 n 0000 #s 14732722 n 0000 | an amino derivative of glucose that is a component of many polysaccharides -14752511 27 n 01 aldosterone 0 001 @ 14751863 n 0000 | a corticosteroid hormone that is secreted by the cortex of the adrenal gland; regulates salt (sodium and potassium) and water balance -14752702 27 n 04 hydrocortisone 0 cortisol 0 Hydrocortone 0 Cortef 0 003 @ 14751417 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 | an adrenal-cortex hormone (trade names Hydrocortone or Cortef) that is active in carbohydrate and protein metabolism -14752952 27 n 02 cortisone 0 Cortone_Acetate 0 003 @ 14751417 n 0000 @ 15058163 n 0000 ;u 06845599 n 0201 | a corticosteroid hormone (trade name Cortone Acetate) normally produced by the adrenal cortex; is converted to hydrocortisone -14753188 27 n 03 prednisolone 0 Pediapred 0 Prelone 0 004 @ 14752057 n 0000 @ 02721538 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | a glucocorticoid (trade names Pediapred or Prelone) used to treat inflammatory conditions -14753414 27 n 05 prednisone 0 Orasone 0 Deltasone 0 Liquid_Pred 0 Meticorten 0 006 @ 14752057 n 0000 @ 02721538 n 0000 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | a dehydrogenated analogue of cortisol (trade names Orasone or Deltasone or Liquid Pred or Meticorten); used as an anti-inflammatory drug in the treatment of arthritis and as an immunosuppressant -14753808 27 n 06 dexamethasone 0 Decadron 0 Dexamethasone_Intensol 0 Dexone 0 Hexadrol 0 Oradexon 0 007 @ 14751417 n 0000 @ 02721538 n 0000 ;u 06845599 n 0601 ;u 06845599 n 0501 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | a corticosteroid drug (trade names Decadron or Dexamethasone Intensol or Dexone or Hexadrol or Oradexon) used to treat allergies or inflammation -14754192 27 n 02 spironolactone 0 Aldactone 0 003 @ 14751417 n 0000 @ 02721160 n 0000 ;u 06845599 n 0201 | a synthetic corticosteroid (trade name Aldactone) used to treat hypertension -14754378 27 n 01 acid_dye 0 002 @ 14985383 n 0000 ~ 14627529 n 0000 | dye in which the chromophore is part of a negative ion -14754505 27 n 04 aniline 0 aniline_oil 0 aminobenzine 0 phenylamine 0 001 @ 14739004 n 0000 | oily poisonous liquid amine obtained from nitrobenzene and used to make dyes and plastics and medicines -14754705 27 n 01 alizarin_yellow 0 001 @ 14985383 n 0000 | any of various yellow dyes; not related chemically to alizarin but applied in the same manner -14754860 27 n 03 anil 0 indigo 0 indigotin 0 001 @ 14985383 n 0000 | a blue dye obtained from plants or made synthetically -14754985 27 n 01 aniline_dye 0 001 @ 14985383 n 0000 | any of many dyes made from aniline -14755077 27 n 01 animal_oil 0 027 @ 14966667 n 0000 @ 14755804 n 0000 ~ 14755641 n 0000 ~ 14781989 n 0000 ~ 14783251 n 0000 ~ 14783436 n 0000 ~ 14815867 n 0000 ~ 14816181 n 0000 ~ 14869035 n 0000 ~ 14885088 n 0000 ~ 14890099 n 0000 ~ 14904226 n 0000 ~ 14929897 n 0000 ~ 14950129 n 0000 ~ 14960457 n 0000 ~ 14968795 n 0000 ~ 14996579 n 0000 ~ 14996709 n 0000 ~ 15010277 n 0000 ~ 15019844 n 0000 ~ 15021381 n 0000 ~ 15038987 n 0000 ~ 15049902 n 0000 ~ 15062468 n 0000 ~ 15066906 n 0000 ~ 15097430 n 0000 ~ 15105638 n 0000 | any oil obtained from animal substances -14755641 27 n 01 drying_oil 0 002 @ 14755077 n 0000 @ 07673397 n 0000 | an oil that hardens in air due to oxidation and is often used as a paint or varnish base -14755804 27 n 01 animal_material 0 009 @ 14580897 n 0000 ~ 01896031 n 0000 ~ 14700745 n 0000 ~ 14755077 n 0000 ~ 14757382 n 0000 ~ 14757848 n 0000 ~ 14758027 n 0000 ~ 14758536 n 0000 ~ 14787520 n 0000 | material derived from animals -14756039 27 n 01 animal_pigment 0 005 @ 14989820 n 0000 ~ 14756369 n 0000 ~ 14756606 n 0000 ~ 14757011 n 0000 ~ 14757172 n 0000 | pigment occurring in animals -14756200 27 n 01 arsine 0 001 @ 14877585 n 0000 | a poisonous colorless flammable gas used in organic synthesis and to dope transistors and as a poison gas in warfare -14756369 27 n 03 bilirubin 0 hematoidin 0 haematoidin 0 001 @ 14756039 n 0000 | an orange-yellow pigment in the bile that forms as a product of hemoglobin; excess amounts in the blood produce the yellow appearance observed in jaundice -14756606 27 n 01 urobilin 0 001 @ 14756039 n 0000 | brown bile pigment formed from urobilinogens and found in feces and in small amounts in urine -14756754 27 n 02 urobilinogen 0 stercobilinogen 0 001 @ 14671253 n 0000 | a chromogen formed in the intestine from the breakdown of bilirubin; yields urobilins on oxidation; some is excreted in the feces and some is resorbed and excreted in bile or urine -14757011 27 n 01 luciferin 0 001 @ 14756039 n 0000 | pigment occurring in luminescent organisms (as fireflies); emits heatless light when undergoing oxidation -14757172 27 n 01 melanin 0 005 @ 14756039 n 0000 #s 05238282 n 0000 #s 01896031 n 0000 + 00280787 v 0101 + 00280532 v 0102 | insoluble pigments that account for the color of e.g. skin and scales and feathers -14757382 27 n 02 dentine 0 dentin 0 002 @ 14755804 n 0000 ~ 14757547 n 0000 | a calcareous material harder and denser than bone that comprises the bulk of a tooth -14757547 27 n 02 ivory 0 tusk 0 004 @ 14757382 n 0000 #s 01465713 n 0000 + 00198213 v 0201 + 01445027 v 0202 | a hard smooth ivory colored dentine that makes up most of the tusks of elephants and walruses -14757754 27 n 01 fluff 0 002 @ 14580897 n 0000 + 01154030 a 0104 | any light downy material -14757848 27 n 02 bone 0 osseous_tissue 0 004 @ 14755804 n 0000 #s 05269901 n 0000 + 05277728 n 0102 + 00197423 v 0101 | the porous calcified substance from which bones are made -14758027 27 n 01 horn 0 005 @ 14755804 n 0000 + 01151452 a 0103 %s 14732472 n 0000 ~ 14758252 n 0000 ~ 14758420 n 0000 | the material (mostly keratin) that covers the horns of ungulates and forms hooves and claws and nails -14758252 27 n 02 whalebone 0 baleen 0 001 @ 14758027 n 0000 | a horny material from the upper jaws of certain whales; used as the ribs of fans or as stays in corsets -14758420 27 n 01 tortoiseshell 0 001 @ 14758027 n 0000 | the mottled horny substance of the shell of some turtles -14758536 27 n 01 shell 0 004 @ 14755804 n 0000 #s 01903756 n 0000 + 01316813 v 0101 ~ 14758706 n 0000 | the material that forms the hard outer covering of many animals -14758706 27 n 02 mother-of-pearl 0 nacre 0 002 @ 14758536 n 0000 + 02996123 a 0201 | the iridescent internal layer of a mollusk shell -14758842 27 n 01 animal_skin 0 005 @ 14700745 n 0000 ~ 14759003 n 0000 ~ 14759275 n 0000 ~ 14759722 n 0000 ~ 14764061 n 0000 | the outer covering of an animal -14759003 27 n 03 parchment 0 sheepskin 1 lambskin 1 002 @ 14758842 n 0000 ~ 14759147 n 0000 | skin of a sheep or goat prepared for writing on -14759147 27 n 01 vellum 0 001 @ 14759003 n 0000 | fine parchment prepared from the skin of a young animal e.g. a calf or lamb -14759275 27 n 02 hide 0 fell 0 004 @ 14758842 n 0000 ~ 14759444 n 0000 ~ 14759515 n 0000 ~ 14759588 n 0000 | the dressed skin of an animal (especially a large animal) -14759444 27 n 01 cowhide 1 001 @ 14759275 n 0000 | the hide of a cow -14759515 27 n 01 goatskin 0 001 @ 14759275 n 0000 | the hide of a goat -14759588 27 n 01 rawhide 0 001 @ 14759275 n 0000 | untanned hide especially of cattle; cut in strips it is used for whips and ropes -14759722 27 n 01 leather 0 028 @ 14758842 n 0000 + 02446070 a 0104 ~ 03933183 n 0000 ~ 14760339 n 0000 ~ 14760447 n 0000 ~ 14760555 n 0000 ~ 14760696 n 0000 ~ 14760813 n 0000 ~ 14760965 n 0000 ~ 14761334 n 0000 ~ 14761450 n 0000 ~ 14761806 n 0000 ~ 14762145 n 0000 ~ 14762248 n 0000 ~ 14762366 n 0000 ~ 14762486 n 0000 ~ 14762572 n 0000 ~ 14762664 n 0000 ~ 14762758 n 0000 ~ 14762846 n 0000 ~ 14762969 n 0000 ~ 14763059 n 0000 ~ 14763329 n 0000 ~ 14763424 n 0000 ~ 14763508 n 0000 ~ 14763879 n 0000 ~ 14763964 n 0000 ~ 15014845 n 0000 | an animal skin made smooth and flexible by removing the hair and then tanning -14760339 27 n 01 grain 0 001 @ 14759722 n 0000 | the side of leather from which the hair has been removed -14760447 27 n 01 alligator 0 002 @ 14759722 n 0000 + 00337700 v 0101 | leather made from alligator's hide -14760555 27 n 01 buckskin 0 001 @ 14759722 n 0000 | a soft yellowish suede leather originally from deerskin but now usually from sheepskin -14760696 27 n 01 buff 0 001 @ 14759722 n 0000 | a soft thick undyed leather from the skins of e.g. buffalo or oxen -14760813 27 n 01 ooze_leather 0 001 @ 14759722 n 0000 | a very soft leather made from the skins of calves and having a suede finish on the flesh side -14760965 27 n 01 Russia_leather 0 001 @ 14759722 n 0000 | a smooth leather tanned with willow, birch, or oak, and scented on the flesh side with birch oil -14761122 27 n 02 caffeine 0 caffein 0 004 @ 14712692 n 0000 #s 07929519 n 0000 #s 07933274 n 0000 + 02673712 a 0201 | a bitter alkaloid found in coffee and tea that is responsible for their stimulating effects -14761334 27 n 02 calf 0 calfskin 0 002 @ 14759722 n 0000 ~ 14784601 n 0000 | fine leather from the skin of a calf -14761450 27 n 02 white_leather 0 whit_leather 0 001 @ 14759722 n 0000 | a leather that has been treated with alum and/or salt -14761578 27 n 04 cassava 0 cassava_starch 0 manioc 0 manioca 0 002 @ 15053867 n 0000 #s 07619881 n 0000 | a starch made by leaching and drying the root of the cassava plant; the source of tapioca; a staple food in the tropics -14761806 27 n 06 chamois 0 chamois_leather 0 chammy 0 chammy_leather 0 shammy 0 shammy_leather 0 002 @ 14759722 n 0000 ~ 14762038 n 0000 | a soft suede leather formerly from the skin of the chamois antelope but now from sheepskin -14762038 27 n 01 wash_leather 0 001 @ 14761806 n 0000 | piece of chamois used for cleaning and polishing -14762145 27 n 01 cordovan 0 001 @ 14759722 n 0000 | a fine leather originally made in Cordoba, Spain -14762248 27 n 02 cowhide 0 cowskin 0 002 @ 14759722 n 0000 #s 03124313 n 0000 | leather made from the hide of a cow -14762366 27 n 02 crushed_leather 0 crush 0 001 @ 14759722 n 0000 | leather that has had its grain pattern accentuated -14762486 27 n 01 deerskin 0 001 @ 14759722 n 0000 | leather from the hide of a deer -14762572 27 n 01 doeskin 0 001 @ 14759722 n 0000 | soft leather from deerskin or lambskin -14762664 27 n 01 glove_leather 0 001 @ 14759722 n 0000 | leather suitable for making gloves -14762758 27 n 01 horsehide 0 001 @ 14759722 n 0000 | leather from the hide of a horse -14762846 27 n 02 kid 0 kidskin 0 001 @ 14759722 n 0000 | soft smooth leather from the hide of a young goat; "kid gloves" -14762969 27 n 01 mocha 0 001 @ 14759722 n 0000 | soft suede glove leather from goatskin -14763059 27 n 01 morocco 0 002 @ 14759722 n 0000 ~ 14763218 n 0000 | a soft pebble-grained leather made from goatskin; used for shoes and book bindings etc. -14763218 27 n 02 Levant 0 Levant_morocco 0 001 @ 14763059 n 0000 | a heavy morocco often used in bookbinding -14763329 27 n 01 patent_leather 0 001 @ 14759722 n 0000 | leather with a hard glossy surface -14763424 27 n 01 pigskin 0 001 @ 14759722 n 0000 | leather from the skin of swine -14763508 27 n 02 sheepskin 0 fleece 1 003 @ 14759722 n 0000 + 01560369 v 0201 ~ 14763674 n 0000 | tanned skin of a sheep with the fleece left on; used for clothing -14763674 27 n 01 Golden_Fleece 0 001 @ 14763508 n 0000 | in Greek mythology, a fleece of gold owned by the king of Colchis and guarded in a sacred grove by a dragon; recovered by Jason and the Argonauts -14763879 27 n 01 shoe_leather 0 001 @ 14759722 n 0000 | leather used to make shoes -14763964 27 n 02 suede 0 suede_leather 0 001 @ 14759722 n 0000 | leather with a napped surface -14764061 27 n 02 fur 0 pelt 0 017 @ 14758842 n 0000 ~ 14764440 n 0000 ~ 14764518 n 0000 ~ 14764617 n 0000 ~ 14764715 n 0000 ~ 14764820 n 0000 ~ 14764910 n 0000 ~ 14765016 n 0000 ~ 14765324 n 0000 ~ 14765422 n 0000 ~ 14765497 n 0000 ~ 14765575 n 0000 ~ 14765785 n 0000 ~ 14765856 n 0000 ~ 14765946 n 0000 ~ 14766040 n 0000 ~ 14766189 n 0000 | the dressed hairy coat of a mammal -14764440 27 n 01 astrakhan 0 001 @ 14764061 n 0000 | the fur of young lambs -14764518 27 n 01 bearskin 0 001 @ 14764061 n 0000 | the pelt of a bear (sometimes used as a rug) -14764617 27 n 02 beaver 0 beaver_fur 0 001 @ 14764061 n 0000 | the soft brown fur of the beaver -14764715 27 n 01 chinchilla 1 001 @ 14764061 n 0000 | the expensive silvery grey fur of the chinchilla -14764820 27 n 01 ermine 0 001 @ 14764061 n 0000 | the expensive white fur of the ermine -14764910 27 n 01 fox 0 002 @ 14764061 n 0000 + 00510234 v 0101 | the grey or reddish-brown fur of a fox -14765016 27 n 01 lambskin 0 003 @ 14764061 n 0000 ~ 14765148 n 0000 ~ 14765240 n 0000 | the skin of a lamb with the wool still on -14765148 27 n 01 broadtail 0 001 @ 14765016 n 0000 | the fur of a very young karakul lamb -14765240 27 n 01 Persian_lamb 0 001 @ 14765016 n 0000 | the fur of a karakul lamb -14765324 27 n 02 lapin 0 rabbit 0 002 @ 14764061 n 0000 + 01142761 v 0201 | the fur of a rabbit -14765422 27 n 01 leopard 0 001 @ 14764061 n 0000 | the pelt of a leopard -14765497 27 n 01 mink 0 001 @ 14764061 n 0000 | the expensive fur of a mink -14765575 27 n 02 muskrat 0 muskrat_fur 0 002 @ 14764061 n 0000 ~ 14765687 n 0000 | the brown fur of a muskrat -14765687 27 n 01 hudson_seal 0 001 @ 14765575 n 0000 | muskrat fur dressed to simulate sealskin -14765785 27 n 01 otter 0 001 @ 14764061 n 0000 | the fur of an otter -14765856 27 n 01 raccoon 0 001 @ 14764061 n 0000 | the fur of the North American racoon -14765946 27 n 01 sable 0 001 @ 14764061 n 0000 | the expensive dark brown fur of the marten -14766040 27 n 02 seal 0 sealskin 0 002 @ 14764061 n 0000 + 01143498 v 0101 | the pelt or fur (especially the underfur) of a seal; "a coat of seal" -14766189 27 n 01 squirrel 0 001 @ 14764061 n 0000 | the fur of a squirrel -14766265 27 n 02 anime 1 gum_anime 0 001 @ 14894481 n 0000 | any of various resins or oleoresins -14766364 27 n 01 antifreeze 0 003 @ 14940386 n 0000 ~ 14851850 n 0000 ~ 14852003 n 0000 | a liquid added to the water in a cooling system to lower its freezing point -14766532 27 n 02 nitric_acid 0 aqua_fortis 0 003 @ 14607521 n 0000 + 00185103 v 0101 + 00504901 v 0101 | acid used especially in the production of fertilizers and explosives and rocket fuels -14766725 27 n 01 nitrous_acid 0 003 @ 14607521 n 0000 + 00504901 v 0101 + 00504676 v 0101 | an unstable inorganic acid known only in solution and as nitrite salts -14766890 27 n 01 nitrogen_oxide 0 002 @ 14971519 n 0000 @ 14857278 n 0000 | any of several oxides of nitrogen formed by the action of nitric acid on oxidizable materials; present in car exhausts -14767087 27 n 01 nitrogen_dioxide 0 002 @ 14836127 n 0000 @ 14877585 n 0000 | a highly poisonous brown gas (NO2) -14767202 27 n 01 nitric_oxide 0 001 @ 14877585 n 0000 | a poisonous red-brown gas (NO) -14767291 27 n 01 anhydride 0 003 @ 14818238 n 0000 ~ 14768640 n 0000 ~ 14768765 n 0000 | a compound formed from one or more other compounds in a reaction resulting in removal of water -14767477 27 n 02 aqua_regia 0 nitrohydrochloric_acid 0 001 @ 14607521 n 0000 | a yellow fuming corrosive mixture of nitric and hydrochloric acid that dissolves metals (including gold) -14767663 27 n 01 aquamarine 0 002 @ 15078050 n 0000 @ 14668539 n 0000 | a transparent variety of beryl that is blue green in color -14767796 27 n 01 arginine 0 001 @ 14605787 n 0000 | a bitter tasting amino acid found in proteins and necessary for nutrition; its absence from the diet leads to a reduced production of spermatozoa -14767996 27 n 01 aromatic_hydrocarbon 0 002 @ 14911057 n 0000 ~ 14774699 n 0000 | a hydrocarbon that contains one or more benzene rings that are characteristic of the benzene series of organic compounds -14768201 27 n 06 arsenic 1 arsenic_trioxide 0 arsenous_anhydride 0 arsenous_oxide 0 white_arsenic 0 ratsbane 0 002 @ 15079925 n 0000 + 02641571 a 0101 | a white powdered poisonous trioxide of arsenic; used in manufacturing glass and as a pesticide (rat poison) and weed killer -14768480 27 n 01 artificial_blood 0 001 @ 14940100 n 0000 | a liquid that can carry large amounts of oxygen and can serve as a temporary substitute for blood -14768640 27 n 01 acetic_anhydride 0 001 @ 14767291 n 0000 | a compound that is needed in order to refine opium into heroin -14768765 27 n 01 phthalic_anhydride 0 001 @ 14767291 n 0000 | a white cyclic anhydride -14768854 27 n 01 art_paper 0 002 @ 14974264 n 0000 ;c 14670639 n 0000 | a high-quality paper (usually having a filler of china clay) -14768989 27 n 02 asafetida 0 asafoetida 0 001 @ 14894481 n 0000 | the brownish gum resin of various plants; has strong taste and odor; formerly used as an antispasmodic -14769160 27 n 01 ash 1 005 @ 15004501 n 0000 + 00387593 a 0103 + 00383437 v 0101 ~ 14769331 n 0000 ~ 14782689 n 0000 | the residue that remains when something is burned -14769331 27 n 01 fly_ash 0 001 @ 14769160 n 0000 | fine solid particles of ash that are carried into the air when fuel is combusted -14769465 27 n 01 asphalt 2 003 @ 14977504 n 0000 + 01267866 v 0101 + 02598494 a 0101 | mixed asphalt and crushed gravel or sand; used especially for paving but also for roofing -14769644 27 n 02 mineral_wool 0 rock_wool 0 001 @ 14821590 n 0000 | a light fibrous material used as an insulator -14769760 27 n 01 austenite 0 004 @ 15051705 n 0000 #s 14769962 n 0000 + 02650303 a 0101 %s 14722240 n 0000 | a solid solution of ferric carbide or carbon in iron; cools to form pearlite or martensite -14769962 27 n 01 austenitic_steel 0 002 @ 14802450 n 0000 %s 14769760 n 0000 | steel that has enough nickel and chromium or manganese to retain austenite at atmospheric temperatures -14770146 27 n 01 axle_grease 0 001 @ 14890945 n 0000 | a thick heavy grease used to lubricate axles -14770248 27 n 01 azide 0 002 @ 14818238 n 0000 ~ 14770400 n 0000 | a chemical compound containing the azido group combined with an element or radical -14770400 27 n 01 hydrazoite 0 002 @ 14770248 n 0000 #s 14612764 n 0000 | a salt of hydrazoic acid -14770500 27 n 01 azo_dye 0 003 @ 14985383 n 0000 ~ 14770631 n 0000 ~ 14771482 n 0000 | any dye containing one or more azo groups -14770631 27 n 01 congo_red 0 003 @ 14770500 n 0000 @ 14609198 n 0000 ;c 14589223 n 0000 | a red-brown azo dye especially as a chemical pH indicator (congo red is red in basic and blue in acidic solutions) -14770838 27 n 02 gentian_violet 0 crystal_violet 0 004 @ 15052970 n 0000 @ 02716205 n 0000 @ 02720201 n 0000 @ 04528630 n 0000 | a green crystal (violet in water) used as a dye or stain or bactericide or fungicide or anthelmintic or burn treatment -14771088 27 n 01 thiazine 0 003 @ 14727670 n 0000 ~ 14771270 n 0000 ~ 14771643 n 0000 | a compound made up of a ring of four carbon atoms and one sulfur atom and one nitrogen atom -14771270 27 n 02 methylene_blue 0 methylthionine_chloride 0 002 @ 15052970 n 0000 @ 14771088 n 0000 | a dark green dye used as a stain, an antiseptic, a chemical indicator, and an antidote in cyanide poisoning -14771482 27 n 01 methyl_orange 0 002 @ 14770500 n 0000 @ 14609198 n 0000 | an azo dye used as an acid-base indicator; used for titrations involving weak bases -14771643 27 n 02 phenothiazine 0 thiodiphenylamine 0 002 @ 14771088 n 0000 ~ 03023175 n 0000 | a compound used primarily in veterinary medicine to rid farm animals of internal parasites -14771831 27 n 01 diazonium 0 001 @ 09238294 n 0000 | the univalent cation R-N:N- (where R is an aromatic hydrocarbon); found in salts that are used in manufacturing azo dyes -14772007 27 n 02 Babbitt_metal 0 babbitt 0 002 @ 14586769 n 0000 + 01272349 v 0201 | an alloy of tin with some copper and antimony; a lining for bearings that reduces friction -14772185 27 n 02 bactericide 0 bacteriacide 0 002 @ 14806838 n 0000 + 02116054 a 0101 | any chemical agent that destroys bacteria -14772317 27 n 01 bagasse 0 001 @ 14794418 n 0000 | the dry dusty pulp that remains after juice is extracted from sugar cane or similar plants -14772461 27 n 01 baking_powder 0 001 @ 14934031 n 0000 | any of various powdered mixtures used in baking as a substitute for yeast -14772594 27 n 01 banana_oil 0 001 @ 14850483 n 0000 | a liquid ester derived from amyl alcohol; has the odor of bananas -14772716 27 n 02 barbituric_acid 0 malonylurea 0 001 @ 14607521 n 0000 | a white crystalline acid derived from pyrimidine; used in preparing barbiturate drugs -14772877 27 n 03 barium_sulphate 0 barium_sulfate 0 blanc_fixe 0 001 @ 15063493 n 0000 | a white insoluble radiopaque powder used as a pigment -14773022 27 n 01 basalt 0 004 @ 14933314 n 0000 + 02659154 a 0101 %s 14693396 n 0000 %s 14865316 n 0000 | the commonest type of solidified lava; a dense dark grey fine-grained igneous rock that is composed chiefly of plagioclase feldspar and pyroxene -14773275 27 n 03 basic_dye 0 basic_color 0 basic_colour 0 001 @ 14985383 n 0000 | a dye that is considered to be a base because the chromophore is part of a positive ion -14773447 27 n 01 basic_iron 0 001 @ 14983491 n 0000 | pig iron containing a high percentage of phosphorus; used in making steel by a process that removes the phosphorus -14773618 27 n 01 basic_slag 0 001 @ 15042856 n 0000 | slag produced in making steel; low in silica but having large amounts of calcium phosphate; useful as fertilizer -14773787 27 n 01 bath_water 0 001 @ 14845743 n 0000 | water used for a bath -14773865 27 n 02 battery_acid 0 electrolyte_acid 0 001 @ 15093482 n 0000 | dilute sulfuric acid used in storage batteries -14773989 27 n 01 bearing_brass 0 001 @ 14716997 n 0000 | a brass bushing or a lining for a bearing -14774090 27 n 02 beebread 0 ambrosia 0 001 @ 14588492 n 0000 | a mixture of nectar and pollen prepared by worker bees and fed to larvae -14774228 27 n 01 royal_jelly 0 001 @ 05404728 n 0000 | a secretion of the pharyngeal glands of bees that is fed to very young larvae and to bees destined to be queens -14774397 27 n 01 beef_tallow 0 001 @ 15062468 n 0000 | tallow obtained from a bovine animal -14774491 27 n 01 beet_sugar 0 001 @ 14792703 n 0000 | sugar made from sugar beets -14774575 27 n 01 bell_metal 0 001 @ 14717275 n 0000 | bronze with 3 or 4 parts copper to 1 part tin; used in making bells -14774699 27 n 03 benzene 0 benzine 0 benzol 0 002 @ 14767996 n 0000 ~ 14774894 n 0000 | a colorless liquid hydrocarbon; highly inflammable; carcinogenic; the simplest of the aromatic compounds -14774894 27 n 04 benzene_formula 0 benzene_ring 0 benzene_nucleus 0 Kekule_formula 0 001 @ 14774699 n 0000 | a closed chain of 6 carbon atoms with hydrogen atoms attached -14775067 27 n 01 benzoate 0 002 @ 15010703 n 0000 ~ 14775173 n 0000 | any salt or ester of benzoic acid -14775173 27 n 02 benzoate_of_soda 0 sodium_benzoate 0 001 @ 14775067 n 0000 | a white crystalline salt used as a food preservative and antiseptic -14775321 27 n 01 benzoic_acid 0 001 @ 14739360 n 0000 | a white crystalline solid occurring in many resins -14775430 27 n 01 benzoyl_peroxide 0 002 @ 14980087 n 0000 @ 14779205 n 0000 | a white crystalline peroxide used in bleaching (flour or oils or fats) and as a catalyst for free radical reactions -14775626 27 n 01 beryllium_bronze 0 001 @ 14717275 n 0000 | a copper-base alloy containing beryllium -14775729 27 n 02 bicarbonate 0 hydrogen_carbonate 0 005 @ 14798450 n 0000 ~ 14775995 n 0000 ~ 14860842 n 0000 ~ 14936790 n 0000 ~ 14945137 n 0000 | a salt of carbonic acid (containing the anion HCO3) in which one hydrogen atom has been replaced; an acid carbonate -14775995 27 n 05 bicarbonate_of_soda 0 sodium_hydrogen_carbonate 0 sodium_bicarbonate 0 baking_soda 0 saleratus 0 001 @ 14775729 n 0000 | a white soluble compound (NaHCO3) used in effervescent drinks and in baking powders and as an antacid -14776237 27 n 01 bimetal 0 003 @ 14580897 n 0000 + 01528463 a 0101 + 01528463 a 0102 | material made by bonding together sheets of two different metals -14776391 27 n 02 binder's_board 0 binder_board 0 001 @ 14799601 n 0000 | a cardboard used by bookbinders to make covers for books -14776523 27 n 01 bitter_principle 0 001 @ 14818238 n 0000 | any one of several hundred compounds having a bitter taste; not admitting of chemical classification -14776686 27 n 01 black_opal 0 001 @ 14688234 n 0000 | a dark colored opal with internal reflections of green or red -14776804 27 n 02 active_agent 0 active 0 002 @ 14779550 n 0000 + 00042457 a 0201 | chemical agent capable of activity -14776924 27 n 01 Alka-seltzer 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | a commercial antacid that contains aspirin; tablets dissolve in water to give an effervescent solution -14777104 27 n 01 Brioschi 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777188 27 n 01 Bromo-seltzer 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777277 27 n 02 lansoprazole 0 Prevacid 0 002 @ 14607521 n 0000 ;u 06845599 n 0201 | antacid (trade name Prevacid) that suppresses acid secretion in the stomach -14777441 27 n 01 Maalox 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777523 27 n 01 Mylanta 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777606 27 n 02 omeprazole 0 Prilosec 0 002 @ 14778019 n 0000 ;u 06845599 n 0201 | antacid (trade name Prilosec) that suppresses acid secretion in the stomach -14777768 27 n 01 Pepto-bismal 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777856 27 n 01 Rolaids 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14777939 27 n 01 Tums 0 002 @ 14778019 n 0000 ;u 06851742 n 0000 | an antacid -14778019 27 n 05 antacid 0 gastric_antacid 0 alkalizer 0 alkaliser 0 antiacid 0 014 @ 14778436 n 0000 + 00265094 v 0301 + 00623814 a 0101 ~ 03031553 n 0000 ~ 04053995 n 0000 ~ 14776924 n 0000 ~ 14777104 n 0000 ~ 14777188 n 0000 ~ 14777441 n 0000 ~ 14777523 n 0000 ~ 14777606 n 0000 ~ 14777768 n 0000 ~ 14777856 n 0000 ~ 14777939 n 0000 | an agent that counteracts or neutralizes acidity (especially in the stomach) -14778436 27 n 01 agent 0 026 @ 00007347 n 0000 @ 00020090 n 0000 ~ 02719951 n 0000 ~ 02720201 n 0000 ~ 03208229 n 0000 ~ 03247620 n 0000 ~ 04528354 n 0000 ~ 14778019 n 0000 ~ 14779082 n 0000 ~ 14779205 n 0000 ~ 14779550 n 0000 ~ 14815728 n 0000 ~ 14822141 n 0000 ~ 14835333 n 0000 ~ 14852646 n 0000 ~ 14876679 n 0000 ~ 14913744 n 0000 ~ 14914301 n 0000 ~ 14918784 n 0000 ~ 14929209 n 0000 ~ 14929350 n 0000 ~ 14953357 n 0000 ~ 14960721 n 0000 ~ 14997393 n 0000 ~ 15048184 n 0000 ~ 15048293 n 0000 | a substance that exerts some force or effect -14778982 27 n 01 reagent 0 001 @ 14779550 n 0000 | a chemical agent for use in chemical reactions -14779082 27 n 01 bacteriostat 0 001 @ 14778436 n 0000 | a chemical or biological material that inhibits bacterial growth -14779205 27 n 04 bleaching_agent 0 bleach 0 blanching_agent 0 whitener 0 012 @ 14778436 n 0000 #s 14781062 n 0000 #s 14940952 n 0000 + 00280301 v 0401 + 00279465 v 0201 ~ 14775430 n 0000 ~ 14780850 n 0000 ~ 14789365 n 0000 ~ 14809843 n 0000 ~ 14810032 n 0000 ~ 14815628 n 0000 ~ 15045490 n 0000 | an agent that makes things white or colorless -14779550 27 n 01 chemical_agent 0 009 @ 14778436 n 0000 ~ 14776804 n 0000 ~ 14778982 n 0000 ~ 14779796 n 0000 ~ 14780040 n 0000 ~ 14780267 n 0000 ~ 15020628 n 0000 ~ 15096783 n 0000 ~ 15112239 n 0000 | an agent that produces chemical reactions -14779796 27 n 04 desiccant 0 drying_agent 0 drier 0 siccative 0 004 @ 14779550 n 0000 + 00218475 v 0301 + 00219403 v 0301 + 00211108 v 0104 | a substance that promotes drying (e.g., calcium oxide absorbs water and is used to remove moisture) -14780040 27 n 04 oxidant 0 oxidizer 0 oxidiser 0 oxidizing_agent 0 006 @ 14779550 n 0000 + 00238867 v 0302 + 00238867 v 0201 + 00238867 v 0101 + 00238867 v 0102 ~ 14781225 n 0000 | a substance that oxidizes another substance -14780267 27 n 03 reducing_agent 0 reducer 0 reductant 0 004 @ 14779550 n 0000 + 00237877 v 0303 + 00237877 v 0203 ~ 14910581 n 0000 | a substance capable of bringing about the reduction of another substance as it itself is oxidized; used in photography to lessen the density of a negative or print by oxidizing some of the loose silver -14780605 27 n 02 bleaching_clay 0 bleaching_earth 0 001 @ 14956325 n 0000 | an adsorbent clay that will remove coloring from oils -14780737 27 n 01 mud_pie 0 001 @ 14956325 n 0000 | a mass of mud that a child has molded into the shape of pie -14780850 27 n 03 bleaching_powder 0 chlorinated_lime 0 chloride_of_lime 0 001 @ 14779205 n 0000 | a white powder comprised of calcium hydroxide and chloride and hypochlorite and used to bleach and/or disinfect -14781062 27 n 01 bleach_liquor 0 002 @ 14589223 n 0000 %s 14779205 n 0000 | a solution containing bleaching agents that is used to bleach textiles or paper pulp -14781225 27 n 02 hydrogen_peroxide 0 peroxide 0 002 @ 14780040 n 0000 + 00279661 v 0201 | a viscous liquid with strong oxidizing properties; a powerful bleaching agent; also used (in aqueous solutions) as a mild disinfectant and (in strong concentrations) as an oxidant in rocket fuels -14781513 27 n 01 blister_copper 0 001 @ 14635722 n 0000 | an impure form of copper having a black blistered surface -14781631 27 n 02 bloodstone 0 heliotrope 0 001 @ 14806333 n 0000 | green chalcedony with red spots that resemble blood -14781752 27 n 02 blotting_paper 0 blotter 0 002 @ 14974264 n 0000 + 01538928 v 0201 | absorbent paper used to dry ink -14781872 27 n 02 blow_gas 0 blowing_gas 0 001 @ 14877585 n 0000 | the gas leaving a generator during a blow period -14781989 27 n 01 blubber 0 001 @ 14755077 n 0000 | an insulating layer of fat under the skin of whales and other large marine mammals; used as a source of oil -14782150 27 n 01 blueprint_paper 0 001 @ 14974264 n 0000 | sensitized paper used to make blueprints -14782252 27 n 04 blue_vitriol 0 blue_copperas 0 blue_stone 0 chalcanthite 0 001 @ 14822839 n 0000 | hydrated blue crystalline form of copper sulfate -14782403 27 n 01 bog_soil 0 001 @ 14844693 n 0000 | poorly drained soils on top of peat and under marsh or swamp vegetation -14782529 27 n 02 bond 0 bond_paper 0 001 @ 15105268 n 0000 | a superior quality of strong durable white writing paper; originally made for printing documents -14782689 27 n 01 bone_ash 0 001 @ 14769160 n 0000 | ash left when bones burn; high in calcium phosphate; used as fertilizer and in bone china -14782833 27 n 01 bonemeal 0 001 @ 14859838 n 0000 | fertilizer made of ground bones -14782919 27 n 01 neem_cake 0 002 @ 14859838 n 0000 #s 12696830 n 0000 | residue after oil is pressed from neem seeds -14783038 27 n 01 bone_fat 0 002 @ 14787520 n 0000 %p 14783436 n 0000 | fatty matter in bones extracted with solvents or by boiling or steaming; used chiefly in candles and cheap soaps and in lubricating greases -14783251 27 n 02 bone_oil 1 Dippel's_oil 0 001 @ 14755077 n 0000 | dark-colored ill-smelling oil obtained by carbonizing bone; used especially in sheep dips and in denaturing alcohol -14783436 27 n 01 bone_oil 2 002 @ 14755077 n 0000 #p 14783038 n 0000 | the liquid portion of bone fat; used as a lubricant and in leather manufacture -14783588 27 n 01 borate 0 001 @ 15010703 n 0000 | a salt or ester of boric acid -14783670 27 n 02 boric_acid 0 boracic_acid 0 002 @ 14607521 n 0000 ~ 14979052 n 0000 | any of various acids containing boron and oxygen -14783808 27 n 02 boric_acid 1 orthoboric_acid 0 001 @ 14607521 n 0000 | a white or colorless slightly acid solid that is soluble in water and ethanol; used in the manufacture of glass and paper and adhesives and in detergents and as a flux in welding; also used as an antiseptic and food preservative -14784111 27 n 01 boron_trifluoride 0 001 @ 14871601 n 0000 | a pungent colorless gas -14784198 27 n 01 borosilicate 0 001 @ 15010703 n 0000 | a salt of boric and silicic acids -14784290 27 n 01 bouncing_putty 0 001 @ 15040493 n 0000 | a soft elastic silicone polymer that increases in elasticity with the application of force; used in the center of golf balls and as shock-absorbent padding -14784506 27 n 01 bowstring_hemp 0 001 @ 14906500 n 0000 | hemp obtained from the sansevieria -14784601 27 n 01 box_calf 0 001 @ 14761334 n 0000 | black calfskin leather tanned with chromium salts -14784705 27 n 01 brewer's_yeast 0 003 @ 15106271 n 0000 ~ 14784831 n 0000 ~ 14784952 n 0000 | yeast used in fermenting beer -14784831 27 n 01 bottom_fermenting_yeast 0 001 @ 14784705 n 0000 | brewer's yeast used in bottom fermentation of lager -14784952 27 n 01 top_fermenting_yeast 0 001 @ 14784705 n 0000 | brewer's yeast used in top fermentation of ale -14785065 27 n 01 bricks_and_mortar 0 001 @ 14786479 n 0000 | building material consisting of bricks laid with mortar between them -14785197 27 n 01 brushwood 0 001 @ 15098161 n 0000 | the wood from bushes or small branches; "they built a fire of brushwood" -14785325 27 n 03 brimstone 0 native_sulfur 0 native_sulphur 0 001 @ 14656219 n 0000 | an old name for sulfur -14785436 27 n 01 Britannia_metal 0 001 @ 14586769 n 0000 | an alloy similar to pewter -14785524 27 n 01 bromic_acid 0 001 @ 14607521 n 0000 | an unstable acid used as an oxidizing agent -14785625 27 n 01 bromide 0 004 @ 14904359 n 0000 ~ 14912710 n 0000 ~ 14951682 n 0000 ~ 15015192 n 0000 | any of the salts of hydrobromic acid; formerly used as a sedative but now generally replaced by safer drugs -14785840 27 n 01 brownstone 0 001 @ 14995541 n 0000 | a reddish brown sandstone; used in buildings -14785941 27 n 01 buffer 0 004 @ 14818238 n 0000 #s 14786110 n 0000 ;c 06084469 n 0000 + 00513344 v 0101 | (chemistry) an ionic compound that resists changes in its pH -14786110 27 n 01 buffer_solution 0 004 @ 14589223 n 0000 %s 14785941 n 0000 ~ 14786257 n 0000 ~ 14786361 n 0000 | a solution containing a buffer -14786257 27 n 01 starting_buffer 0 001 @ 14786110 n 0000 | buffer solution at the start of a reaction -14786361 27 n 02 phosphate_buffer_solution 0 PBS 0 001 @ 14786110 n 0000 | a solution containing a phosphate buffer -14786479 27 n 01 building_material 0 021 @ 00021939 n 0000 ~ 02897820 n 0000 ~ 02914813 n 0000 ~ 04326084 n 0000 ~ 14785065 n 0000 ~ 14804175 n 0000 ~ 14820180 n 0000 ~ 14825062 n 0000 ~ 14859100 n 0000 ~ 14871370 n 0000 ~ 14892510 n 0000 ~ 14920844 n 0000 ~ 14930312 n 0000 ~ 14943580 n 0000 ~ 14955889 n 0000 ~ 15005716 n 0000 ~ 15039445 n 0000 ~ 15041050 n 0000 ~ 15050320 n 0000 ~ 15060569 n 0000 ~ 15060688 n 0000 | material used for constructing buildings -14786943 27 n 01 lagging 0 002 @ 14920844 n 0000 + 01339050 v 0101 | used to wrap around pipes or boilers or laid in attics to prevent loss of heat -14787093 27 n 02 butylene 0 butene 0 003 @ 14877585 n 0000 ~ 14787270 n 0000 ~ 14787386 n 0000 | any of three isomeric hydrocarbons C4H8; all used in making synthetic rubbers -14787270 27 n 01 isobutylene 0 002 @ 14787093 n 0000 #s 15008025 n 0000 | used also in making gasoline components -14787386 27 n 02 polybutylene 0 polybutene 0 001 @ 14787093 n 0000 | a polymer of butylene; used in lubricants and synthetic rubber -14787520 27 n 01 animal_fat 0 004 @ 14864360 n 0000 @ 14755804 n 0000 ~ 14783038 n 0000 ~ 14787707 n 0000 | any fat obtained from animals; "animal fat is high in saturated fatty acids" -14787707 27 n 01 butterfat 0 001 @ 14787520 n 0000 | the fatty substance of milk from which butter is made -14787816 27 n 01 cabinet_wood 0 001 @ 15098161 n 0000 | moderately dense wood used for cabinetwork; "teak and other heavy cabinet wood" -14787954 27 n 02 butanone 0 methyl_ethyl_ketone 0 001 @ 14926294 n 0000 | colorless soluble flammable liquid ketone used as a solvent for resins and as a paint remover and in lacquers and cements and adhesives and cleaning fluids and celluloid -14788200 27 n 02 butyl_alcohol 0 butanol 0 001 @ 14708720 n 0000 | a flammable alcohol derived from butanes and used for solvents -14788332 27 n 02 butyric_acid 0 butanoic_acid 0 002 @ 14740587 n 0000 ~ 14927451 n 0000 | an unpleasant smelling fatty acid found especially in butter -14788485 27 n 01 butyrin 0 002 @ 14887026 n 0000 ~ 14788596 n 0000 | any of three glycerides of butyric acid -14788596 27 n 01 tributyrin 0 001 @ 14788485 n 0000 | a bitter oily triglyceride of butyric acid; a form of butyrin -14788714 27 n 04 cacodyl 1 cacodyl_group 0 cacodyl_radical 0 arsenic_group 0 002 @ 14621446 n 0000 + 02672886 a 0101 | the univalent group derived from arsine -14788875 27 n 02 cacodyl 2 tetramethyldiarsine 0 002 @ 14727670 n 0000 + 02672886 a 0101 | a poisonous oily liquid with a garlicky odor composed of 2 cacodyl groups; undergoes spontaneous combustion in dry air -14789087 27 n 01 calcium_carbide 0 002 @ 14618834 n 0000 @ 14792550 n 0000 | a grey salt of calcium (CaC) used in making acetylene -14789220 27 n 02 calcium-cyanamide 0 cyanamide 1 001 @ 14818238 n 0000 | a compound used as a fertilizer and as a source of nitrogen compounds -14789365 27 n 01 calcium_hypochlorite 0 002 @ 14614245 n 0000 @ 14779205 n 0000 | any hypochlorite of calcium; used as a bleaching agent -14789504 27 n 01 calcium_lactate 0 001 @ 15010703 n 0000 | a white crystalline salt made by the action of lactic acid on calcium carbonate; used in foods (as a baking powder) and given medically as a source of calcium -14789724 27 n 01 calcium_nitrate 0 001 @ 15015501 n 0000 | a deliquescent salt that is soluble in water; sometimes used as a source of nitrogen in fertilizers -14789885 27 n 08 calcium_oxide 0 quicklime 0 lime 1 calx 0 calcined_lime 0 fluxing_lime 0 unslaked_lime 0 burnt_lime 0 003 @ 14971519 n 0000 + 01603732 v 0301 %s 14632648 n 0000 | a white crystalline oxide used in the production of calcium hydroxide -14790137 27 n 01 calcium_phosphate 0 001 @ 14982265 n 0000 | a phosphate of calcium; a main constituent of animal bones -14790259 27 n 02 calcium_stearate 0 calcium_octadecanoate 0 001 @ 15010703 n 0000 | an insoluble calcium salt of stearic acid and palmitic acid; it is formed when soap is mixed with water that contains calcium ions and is the scum produced in regions of hard water -14790526 27 n 01 carbonyl 0 004 @ 14818238 n 0000 + 02679468 a 0101 + 02679468 a 0102 %s 14790693 n 0000 | a compound containing metal combined with carbon monoxide -14790693 27 n 01 carbonyl_group 0 002 @ 14621446 n 0000 #s 14790526 n 0000 | the bivalent radical CO -14790796 27 n 02 carboxyl 0 carboxyl_group 0 003 @ 14621446 n 0000 + 02679653 a 0101 + 02679653 a 0102 | the univalent radical -COOH; present in and characteristic of organic acids -14790979 27 n 01 camphor 0 006 @ 14894481 n 0000 #s 03788703 n 0000 #s 14965501 n 0000 + 02676966 a 0101 + 02676825 a 0101 + 00186912 v 0101 | a resin obtained from the camphor tree; used in making celluloid and liniment -14791202 27 n 01 camphor_oil 0 001 @ 14966667 n 0000 | oil distilled from camphor resin -14791292 27 n 01 candelilla_wax 0 003 @ 15094294 n 0000 #s 12921126 n 0000 #s 12928307 n 0000 | a hard brown wax that occurs as a coating on candelilla shrubs -14791453 27 n 01 cane_sugar 0 002 @ 14792703 n 0000 ~ 14829470 n 0000 | sucrose obtained from sugar cane -14791560 27 n 02 cannabin 0 cannabis_resin 0 001 @ 14894481 n 0000 | a resin obtained from the hemp plant; thought to be the active narcotic agent in marijuana -14791722 27 n 01 cannel_coal 0 001 @ 14815086 n 0000 | a bituminous coal that burns with a luminous flame -14791830 27 n 02 capric_acid 0 decanoic_acid 0 001 @ 14740587 n 0000 | a fatty acid found in animal oils and fats; has an unpleasant smell resembling goats -14791988 27 n 02 caproic_acid 0 hexanoic_acid 0 001 @ 14740587 n 0000 | a fatty acid found in animal oils and fats or made synthetically; smells like goats -14792146 27 n 01 caprylic_acid 0 001 @ 14740587 n 0000 | a fatty acid having a rancid taste; found in butter and other fats and oils -14792281 27 n 01 carbamate 0 002 @ 15010703 n 0000 ~ 14744291 n 0000 | a salt (or ester) of carbamic acid -14792389 27 n 01 carbamic_acid 0 001 @ 14607521 n 0000 | an acid that is known only by virtue of its salts (as ammonium carbamate) or its esters (as urethane) -14792550 27 n 01 carbide 0 003 @ 14919511 n 0000 ~ 14789087 n 0000 ~ 15040266 n 0000 | a binary compound of carbon with a more electropositive element -14792703 27 n 03 carbohydrate 0 saccharide 0 sugar 0 012 @ 14944888 n 0000 ~ 14696331 n 0000 ~ 14774491 n 0000 ~ 14791453 n 0000 ~ 14833514 n 0000 ~ 14921777 n 0000 ~ 14947702 n 0000 ~ 14954284 n 0000 ~ 14969044 n 0000 ~ 14994004 n 0000 ~ 15062955 n 0000 ~ 15103780 n 0000 | an essential structural component of living cells and source of energy for animals; includes simple sugars with small molecules as well as macromolecular substances; are classified according to the number of monosaccharide groups they contain -14793223 27 n 01 Carboloy 0 002 @ 14586769 n 0000 ;u 06851742 n 0000 | an alloy based on tungsten with cobalt or nickel as a binder; used in making metal-cutting tools -14793393 27 n 02 carbonado 0 black_diamond 1 001 @ 14834563 n 0000 | an inferior dark diamond used in industry for drilling and polishing -14793533 27 n 05 carbon_black 0 lampblack 0 soot 0 smut 0 crock 0 005 @ 14633206 n 0000 + 00286798 v 0401 + 00423431 a 0301 + 00388849 a 0305 + 01262470 v 0301 | a black colloidal substance consisting wholly or principally of amorphous carbon and used to make pigments and ink -14793812 27 n 01 carcinogen 0 002 @ 00020090 n 0000 + 02679858 a 0101 | any substance that produces cancer -14793921 27 n 01 cellulose 0 009 @ 14994004 n 0000 #s 14794823 n 0000 #s 14866889 n 0000 #s 14974264 n 0000 #s 14804039 n 0000 ~ 14794203 n 0000 ~ 14794304 n 0000 ~ 14794418 n 0000 ~ 14978232 n 0000 | a polysaccharide that is the chief constituent of all plant tissues and fibers -14794203 27 n 01 carboxymethyl_cellulose 0 001 @ 14793921 n 0000 | an acid derivative of cellulose -14794304 27 n 02 diethylaminoethyl_cellulose 0 DEAE_cellulose 0 001 @ 14793921 n 0000 | used for chromatography -14794418 27 n 01 pulp 0 003 @ 14793921 n 0000 ~ 14772317 n 0000 ~ 15103634 n 0000 | a mixture of cellulose fibers -14794534 27 n 01 cartridge_brass 0 001 @ 14716997 n 0000 | an alloy of copper and zinc (containing about 30% zinc) that is wrought into cartridges or tubing -14794693 27 n 01 case-hardened_steel 0 001 @ 14802450 n 0000 | steel with a surface that is much harder than the interior metal -14794823 27 n 01 cellulose_ester 0 005 @ 14850483 n 0000 %s 14793921 n 0000 ~ 14794993 n 0000 ~ 14965135 n 0000 ~ 14965780 n 0000 | any ester of cellulose with an acid -14794993 27 n 04 cellulose_nitrate 0 nitrocellulose 0 guncotton 0 nitrocotton 0 007 @ 14794823 n 0000 @ 15015501 n 0000 #s 14965501 n 0000 #s 02850218 n 0000 #s 03107152 n 0000 ~ 14795432 n 0000 ~ 14795598 n 0000 | a nitric acid ester; used in lacquers and explosives -14795263 27 n 01 collodion 0 001 @ 14589223 n 0000 | a colorless syrupy solution of pyroxylin in ether and alcohol; used as a coating for wounds or photographic films -14795432 27 n 01 pyrocellulose 0 002 @ 14794993 n 0000 #s 15016503 n 0000 | nitrocellulose containing less nitrogen than guncotton; used in making smokeless powder -14795598 27 n 02 pyroxylin 0 pyroxyline 0 001 @ 14794993 n 0000 | highly flammable nitrocellulose used in making collodion and plastics and lacquers -14795749 27 n 02 glycogen 0 animal_starch 0 002 @ 14994004 n 0000 + 02736393 a 0101 | one form in which body fuel is stored; stored primarily in the liver and broken down into glucose when needed by the body -14795959 27 n 01 inulin 0 001 @ 14994004 n 0000 | used to manufacture fructose and in assessing kidney function -14796073 27 n 05 carbolic_acid 0 phenol 1 hydroxybenzene 0 oxybenzene 0 phenylic_acid 0 002 @ 14607521 n 0000 @ 15047313 n 0000 | a toxic white soluble crystalline acidic derivative of benzene; used in manufacturing and as a disinfectant and antiseptic; poisonous if taken internally -14796359 27 n 02 activated_carbon 0 activated_charcoal 0 001 @ 14633206 n 0000 | powdered or granular carbon used for purifying by adsorption; given orally (as a slurry) it is an antidote for some kinds of poisons -14796575 27 n 03 graphite 0 black_lead 0 plumbago 0 003 @ 14633206 n 0000 ~ 03651084 n 0000 ~ 14796748 n 0000 | used as a lubricant and as a moderator in nuclear reactors -14796748 27 n 01 pencil 0 001 @ 14796575 n 0000 | graphite (or a similar substance) used in such a way as to be a medium of communication; "the words were scribbled in pencil"; "this artist's favorite medium is pencil" -14796969 27 n 03 carbon_dioxide 0 CO2 0 carbonic_acid_gas 0 004 @ 14836127 n 0000 @ 14877234 n 0000 + 00186740 v 0101 ~ 14797264 n 0000 | a heavy odorless colorless gas formed during respiration and by the decomposition of organic substances; absorbed from the air by plants in photosynthesis -14797264 27 n 02 chokedamp 0 blackdamp 0 001 @ 14796969 n 0000 | the atmosphere in a mine following an explosion; high in carbon dioxide and incapable of supporting life -14797436 27 n 01 carbon_disulfide 0 001 @ 14818238 n 0000 | a toxic colorless flammable liquid (CS2); used in the manufacture of rayon and cellophane and carbon tetrachloride and as a solvent for rubber -14797641 27 n 03 carbon_monoxide 0 carbon_monoxide_gas 0 CO 0 001 @ 14954601 n 0000 | an odorless very poisonous gas that is a product of incomplete combustion of carbon -14797813 27 n 02 carbon_paper 0 carbon 1 001 @ 14974264 n 0000 | a thin paper coated on one side with a dark waxy substance (often containing carbon); used to transfer characters from the original to an under sheet of paper -14798039 27 n 04 carbon_tetrachloride 0 carbon_tet 0 tetrachloromethane 0 perchloromethane 0 002 @ 15047313 n 0000 @ 15068754 n 0000 | a colorless nonflammable liquid used as a solvent for fats and oils; because of its toxicity its use as a cleaning fluid or fire extinguisher has declined -14798331 27 n 01 carbon_tetrahalide 0 001 @ 14806838 n 0000 | compounds composed of 1 carbon and 4 halogen molecules -14798450 27 n 01 carbonate 0 009 @ 15010703 n 0000 + 02627221 v 0101 + 00186740 v 0101 ~ 14744417 n 0000 ~ 14775729 n 0000 ~ 14861716 n 0000 ~ 14936905 n 0000 ~ 14941884 n 0000 ~ 14945254 n 0000 | a salt or ester of carbonic acid (containing the anion CO3) -14798709 27 n 01 fulminate 0 002 @ 15010703 n 0000 ~ 14798815 n 0000 | a salt or ester of fulminic acid -14798815 27 n 03 mercury_fulminate 0 fulminate_of_mercury 0 fulminating_mercury 0 003 @ 14798709 n 0000 #p 02850060 n 0000 #p 03915320 n 0000 | a fulminate that when dry explodes violently if struck or heated; used in detonators and blasting caps and percussion caps -14799084 27 n 01 carbonic_acid 0 002 @ 14607521 n 0000 + 02627221 v 0101 | a weak acid known only in solution; formed when carbon dioxide combines with water -14799244 27 n 03 abrasive 0 abradant 0 abrasive_material 0 007 @ 14580897 n 0000 + 01254013 v 0201 + 02239289 a 0101 ~ 14799476 n 0000 ~ 14803578 n 0000 ~ 14849789 n 0000 ~ 14849880 n 0000 | a substance that abrades or wears down -14799476 27 n 01 carborundum 0 002 @ 14799244 n 0000 ;u 06851742 n 0000 | an abrasive composed of silicon carbide crystals -14799601 27 n 02 cardboard 0 composition_board 0 008 @ 14974264 n 0000 @ 14976448 n 0000 ~ 14776391 n 0000 ~ 14800034 n 0000 ~ 14800979 n 0000 ~ 14801146 n 0000 ~ 14801271 n 0000 ~ 14801493 n 0000 | a stiff moderately thick paper -14799833 27 n 01 cartridge_paper 0 001 @ 14974264 n 0000 | paper for making cartridge cases -14799927 27 n 01 cartridge_paper 1 001 @ 14838821 n 0000 | thick white paper for pencil and ink drawings -14800034 27 n 01 card 0 002 @ 14799601 n 0000 ~ 04437131 n 0000 | thin cardboard, usually rectangular -14800138 27 n 02 cocarboxylase 0 thiamine_pyrophosphate 0 001 @ 14800277 n 0000 | a coenzyme important in respiration in the Krebs cycle -14800277 27 n 01 coenzyme 0 007 @ 14682133 n 0000 ~ 14800138 n 0000 ~ 14800539 n 0000 ~ 14962612 n 0000 ~ 14962837 n 0000 ~ 15080277 n 0000 ~ 15082890 n 0000 | a small molecule (not a protein but sometimes a vitamin) essential for the activity of some enzymes -14800539 27 n 01 coenzyme_A 0 001 @ 14800277 n 0000 | a coenzyme present in all living cells; essential to metabolism of carbohydrates and fats and some amino acids -14800706 27 n 01 cofactor 0 001 @ 14818238 n 0000 | a substance (as a coenzyme) that must join with another to produce a given result -14800842 27 n 01 congener 0 001 @ 14806838 n 0000 | a minor chemical constituent that gives a wine or liquor its distinctive character -14800979 27 n 02 corrugated_board 0 corrugated_cardboard 0 001 @ 14799601 n 0000 | cardboard with corrugations (can be glued to flat cardboard on one or both sides) -14801146 27 n 03 paperboard 0 poster_board 0 posterboard 0 001 @ 14799601 n 0000 | a cardboard suitable for making posters -14801271 27 n 01 pasteboard 0 002 @ 14799601 n 0000 ~ 14801402 n 0000 | stiff cardboard made by pasting together layers of paper -14801402 27 n 01 millboard 0 001 @ 14801271 n 0000 | stout pasteboard used to bind books -14801493 27 n 01 strawboard 0 001 @ 14799601 n 0000 | a coarse yellow cardboard made of straw pulp -14801594 27 n 02 carnelian 0 cornelian 0 001 @ 14806333 n 0000 | a translucent red or orange variety of chalcedony -14801711 27 n 02 carrageenin 0 carrageenan 0 001 @ 14898470 n 0000 | a colloidal extract from carrageen seaweed and other red algae -14801845 27 n 01 ingot_iron 0 001 @ 14642417 n 0000 | iron of high purity -14801921 27 n 01 cast_iron 0 005 @ 14642417 n 0000 ~ 14715786 n 0000 ~ 14802167 n 0000 %s 14977845 n 0000 %s 14983491 n 0000 | an alloy of iron containing so much carbon that it is brittle and so cannot be wrought but must be shaped by casting -14802167 27 n 01 pot_metal 1 001 @ 14801921 n 0000 | cast iron used for making cooking wares -14802262 27 n 01 wrought_iron 0 003 @ 14642417 n 0000 %s 14983491 n 0000 ~ 15065483 n 0000 | iron having a low carbon content that is tough and malleable and so can be forged and welded -14802450 27 n 01 steel 0 017 @ 14586769 n 0000 + 01152521 a 0101 + 01614907 v 0101 %s 14642417 n 0000 ~ 14716042 n 0000 ~ 14769962 n 0000 ~ 14794693 n 0000 ~ 14803074 n 0000 ~ 14803283 n 0000 ~ 14803438 n 0000 ~ 14809756 n 0000 ~ 14905333 n 0000 ~ 14949522 n 0000 ~ 14952878 n 0000 %s 14977845 n 0000 ~ 15000689 n 0000 ~ 15063224 n 0000 | an alloy of iron with small amounts of carbon; widely used in construction; mechanical properties can be varied over a wide range -14802921 27 n 03 stainless_steel 0 stainless 0 chromium_steel 0 001 @ 14716042 n 0000 | steel containing chromium that makes it resistant to corrosion -14803074 27 n 01 carbon_steel 0 005 @ 14802450 n 0000 ~ 14837786 n 0000 ~ 14852747 n 0000 ~ 14913633 n 0000 ~ 14914191 n 0000 | steel whose characteristics are determined by the amount of carbon it contains -14803283 27 n 01 crucible_steel 0 001 @ 14802450 n 0000 | steel made by the mixture of molten wrought iron, charcoal, and other substances in a crucible -14803438 27 n 02 Damascus_steel 0 Damask_steel 0 001 @ 14802450 n 0000 | a hard resilient steel often decorated and used for sword blades -14803578 27 n 02 steel_wool 0 wire_wool 0 001 @ 14799244 n 0000 | a mass of woven steel fibers used as an abrasive -14803695 27 n 02 cationic_detergent 0 invert_soap 0 002 @ 15097017 n 0000 ~ 14805550 n 0000 | a class of synthetic detergents in which the surface-active part of the molecule is the cation -14803886 27 n 01 cat's_eye 0 001 @ 14969666 n 0000 | any of various gems (as chrysoberyl or chalcedony) that reflect light when cut in a rounded shape -14804039 27 n 01 cellulosic 0 002 @ 14592610 n 0000 %s 14793921 n 0000 | a plastic made from cellulose (or a derivative of cellulose) -14804175 27 n 01 cement 0 007 @ 14786479 n 0000 #s 14820180 n 0000 #s 14955889 n 0000 + 02686439 a 0101 + 01366926 v 0101 + 01366653 v 0101 ~ 14804958 n 0000 | a building material that is a powder made of a mixture of calcined limestone and clay; used with water and sand or gravel to make concrete and mortar -14804487 27 n 01 cement 3 001 @ 14820180 n 0000 | concrete pavement is sometimes referred to as cement; "they stood on the grey cement beside the pool" -14804641 27 n 01 cement 4 003 @ 14868243 n 0000 + 01366926 v 0101 + 01366653 v 0101 | any of various materials used by dentists to fill cavities in teeth -14804797 27 n 02 reinforced_concrete 0 ferroconcrete 0 001 @ 14820180 n 0000 | concrete with metal and/or mesh added to provide extra support against stresses -14804958 27 n 02 hydraulic_cement 0 Portland_cement 0 001 @ 14804175 n 0000 | a cement that hardens under water; made by heating limestone and clay in a kiln and pulverizing the result -14805145 27 n 02 cementite 0 iron_carbide 0 002 @ 14818238 n 0000 #s 14977845 n 0000 | a chemical compound that is a constituent of steel and cast iron; very hard and brittle -14805322 27 n 01 ceresin 0 001 @ 15094294 n 0000 | a white wax extracted from ozokerite -14805412 27 n 01 cerulean_blue 0 001 @ 14989820 n 0000 | light greenish-blue pigment consisting essentially of oxides of cobalt and tin -14805550 27 n 01 cetrimide 0 002 @ 14803695 n 0000 @ 03208229 n 0000 | a cationic detergent that is a powerful disinfectant -14805676 27 n 01 chad 0 005 @ 14974264 n 0000 ~ 14835817 n 0000 ~ 14904956 n 0000 ~ 15065584 n 0000 ~ 15079184 n 0000 | a small piece of paper that is supposed to be removed when a hole is punched in a card or paper tape -14805899 27 n 06 chaff 0 husk 0 shuck 0 stalk 0 straw 1 stubble 0 005 @ 14991712 n 0000 + 00179959 v 0301 + 00181258 v 0201 + 02690429 a 0101 ~ 14806176 n 0000 | material consisting of seed coverings and small pieces of stem or leaves that have been separated from the seeds -14806176 27 n 01 bran 0 002 @ 14805899 n 0000 #s 07568991 n 0000 | broken husks of the seeds of cereal grains that are separated from the flour by sifting -14806333 27 n 02 chalcedony 0 calcedony 0 009 @ 14693733 n 0000 @ 15078050 n 0000 ~ 14708232 n 0000 ~ 14781631 n 0000 ~ 14801594 n 0000 ~ 14812233 n 0000 ~ 14969523 n 0000 ~ 14992165 n 0000 ~ 15019734 n 0000 | a milky or greyish translucent to transparent quartz -14806598 27 n 01 chalk 0 004 @ 14935751 n 0000 #s 03003091 n 0000 + 00388571 a 0101 %s 14936905 n 0000 | a soft whitish calcite -14806728 27 n 01 chamosite 0 001 @ 14923458 n 0000 | a greenish grey or black silicate of iron and aluminum -14806838 27 n 02 chemical 0 chemical_substance 0 024 @ 14580897 n 0000 + 02692966 a 0101 ~ 03304730 n 0000 ~ 14694765 n 0000 ~ 14708531 n 0000 ~ 14727153 n 0000 ~ 14772185 n 0000 ~ 14798331 n 0000 ~ 14800842 n 0000 ~ 14818238 n 0000 ~ 14845383 n 0000 ~ 14859344 n 0000 ~ 14860102 n 0000 ~ 14876206 n 0000 ~ 14906850 n 0000 ~ 14921272 n 0000 ~ 14922107 n 0000 ~ 14930073 n 0000 ~ 14980215 n 0000 ~ 14983143 n 0000 ~ 14997699 n 0000 ~ 15004874 n 0000 ~ 15052667 n 0000 ~ 15055936 n 0000 | material produced by or used in a reaction involving changes in atoms or molecules -14807410 27 n 01 neurochemical 0 003 @ 14727670 n 0000 ~ 14807558 n 0000 ~ 14809057 n 0000 | any organic substance that occurs in neural activity -14807558 27 n 01 neurotransmitter 0 004 @ 14807410 n 0000 ~ 05408388 n 0000 ~ 14606290 n 0000 ~ 14808418 n 0000 | a neurochemical that transmits nerve impulses across a synapse -14807737 27 n 01 monoamine_neurotransmitter 0 004 @ 14953813 n 0000 ~ 05407890 n 0000 ~ 14808273 n 0000 ~ 14838217 n 0000 | a monoamine that is functionally important in neural transmission -14807929 27 n 01 catecholamine 0 003 @ 05407119 n 0000 ~ 05407890 n 0000 ~ 05408388 n 0000 | any of a group of chemicals including epinephrine and norepinephrine that are produced in the medulla of the adrenal gland -14808147 27 n 01 chromophore 0 002 @ 14621446 n 0000 #p 14985383 n 0000 | the chemical group that gives color to a molecule -14808273 27 n 02 serotonin 0 5-hydroxytryptamine 0 001 @ 14807737 n 0000 | a neurotransmitter involved in e.g. sleep and depression and memory -14808418 27 n 01 acetylcholine 0 001 @ 14807558 n 0000 | a neurotransmitter that is a derivative of choline; released at the ends of nerve fibers in the somatic and parasympathetic nervous systems -14808617 27 n 02 acyl_anhydrides 0 acid_anhydrides 0 001 @ 14727670 n 0000 | organic compounds that react with water to form an acid -14808752 27 n 02 acyl_halide 0 acid_halide 0 002 @ 14727670 n 0000 ~ 14808911 n 0000 | organic compounds containing the group -COX where X is a halogen atom -14808911 27 n 02 acetyl_chloride 0 ethanoyl_chloride 0 001 @ 14808752 n 0000 | colorless liquid acyl chloride (CH3COCl) that has a pungent odor -14809057 27 n 01 endorphin 0 004 @ 14807410 n 0000 @ 14743046 n 0000 ~ 14809247 n 0000 ~ 14809373 n 0000 | a neurochemical occurring naturally in the brain and having analgesic properties -14809247 27 n 01 beta_endorphin 0 001 @ 14809057 n 0000 | an endorphin produced by the pituitary gland that suppresses pain -14809373 27 n 01 enkephalin 0 001 @ 14809057 n 0000 | an endorphin having opiate qualities that occurs in the brain and spinal cord and elsewhere -14809521 27 n 01 cheoplastic_metal 0 001 @ 14586769 n 0000 | any alloy that fuses at low temperatures and can be used molding artificial teeth -14809666 27 n 01 chernozemic_soil 0 001 @ 14942223 n 0000 | a rich black loam of Russia -14809756 27 n 01 chisel_steel 0 001 @ 14802450 n 0000 | steel used in making chisels -14809843 27 n 01 chlorine_dioxide 0 002 @ 14836127 n 0000 @ 14779205 n 0000 | an explosive gas (ClO2) used chiefly in bleaching paper or starch or soap or flour and in water purification -14810032 27 n 01 chlorine_water 0 002 @ 14589223 n 0000 @ 14779205 n 0000 | an aqueous solution of chlorine used as a bleaching agent -14810168 27 n 02 chloropicrin 0 nitrochloroform 0 001 @ 14818238 n 0000 | a heavy colorless insoluble liquid compound that causes tears and vomiting; used as a pesticide and as tear gas -14810356 27 n 01 nitrochloromethane 0 001 @ 15067877 n 0000 | gaseous form of chloropicrin used as tear gas -14810466 27 n 01 chlorpyrifos 0 001 @ 14969994 n 0000 | a common organophosphate insecticide -14810561 27 n 01 choline 0 001 @ 15090742 n 0000 | a B-complex vitamin that is a constituent of lecithin; essential in the metabolism of fat -14810704 27 n 01 chrome 0 003 @ 14635092 n 0000 + 01395945 v 0101 + 00517128 v 0101 | another word for chromium when it is used in dyes or pigments -14810854 27 n 02 chrome-nickel_steel 0 Elinvar 0 002 @ 14716042 n 0000 ;u 06851742 n 0201 | Elinvar is a trademark for a kind of steel used for watch springs because its elasticity is constant over a wide range of temperatures -14811083 27 n 01 chrome-tungsten_steel 0 001 @ 14716042 n 0000 | a steel alloy made with chromium and tungsten -14811196 27 n 01 chrome_green 0 002 @ 14989820 n 0000 ~ 14811347 n 0000 | any of a class of green pigments consisting of chrome yellow and iron blue -14811347 27 n 01 Windsor_green 0 001 @ 14811196 n 0000 | a light chrome green pigment -14811435 27 n 01 Hooker's_green 0 001 @ 14989820 n 0000 | green pigment consisting of Prussian blue mixed with gamboge -14811556 27 n 01 chrome_yellow 0 001 @ 14989820 n 0000 | any of several yellow pigments consisting of normal lead chromate and other lead compounds -14811706 27 n 01 chromic_acid 0 001 @ 14607521 n 0000 | an unstable acid known only in solution and as chromate salts -14811826 27 n 01 chromate 0 002 @ 15010703 n 0000 ~ 14811932 n 0000 | any salt or ester of chromic acid -14811932 27 n 01 lead_chromate 0 001 @ 14811826 n 0000 | a poisonous chromate of lead used as a pigment in paint -14812047 27 n 01 chrysolite 0 003 @ 14684111 n 0000 @ 15078050 n 0000 ~ 14979961 n 0000 | a brown or yellow-green olivine found in igneous and metamorphic rocks and used as a gemstone -14812233 27 n 01 chrysoprase 0 002 @ 15078050 n 0000 @ 14806333 n 0000 | a green variety of chalcedony valued as a gemstone -14812359 27 n 01 chylomicron 0 001 @ 14585519 n 0000 | a microscopic particle of triglycerides produced in the intestines during digestion; in the bloodstream they release their fatty acids into the blood -14812566 27 n 02 cigarette_paper 0 rolling_paper 0 001 @ 15074962 n 0000 | a strong tissue paper that burns evenly and is sufficiently porous to control the burning of the tobacco in a cigarette -14812763 27 n 01 cinder_pig 0 001 @ 14983491 n 0000 | pig iron containing a substantial proportion of slag -14812872 27 n 01 citric_acid 0 003 @ 14607521 n 0000 #s 07813717 n 0000 + 00136673 v 0101 | a weak water-soluble acid found in many fruits (especially citrus fruits); used as a flavoring agent -14813067 27 n 01 citrine 0 002 @ 14693733 n 0000 @ 15078050 n 0000 | semiprecious yellow quartz resembling topaz -14813182 27 n 01 clay 0 015 @ 14844693 n 0000 #s 02897820 n 0000 #s 15074568 n 0000 #s 03992703 n 0000 ~ 14600927 n 0000 ~ 14602597 n 0000 %s 14654541 n 0000 ~ 14670639 n 0000 ~ 14695069 n 0000 ~ 14813560 n 0000 ~ 14813709 n 0000 ~ 14813843 n 0000 ~ 14813957 n 0000 ~ 14814125 n 0000 ~ 14828683 n 0000 | a very fine-grained soil that is plastic when moist but hard when fired -14813560 27 n 02 pipeclay 0 terra_alba 3 001 @ 14813182 n 0000 | fine white clay used in making tobacco pipes and pottery and in whitening leather -14813709 27 n 01 bentonite 0 002 @ 14813182 n 0000 + 02661806 a 0101 | an absorbent aluminum silicate clay formed from volcanic ash -14813843 27 n 01 fireclay 0 003 @ 14813182 n 0000 #s 03344642 n 0000 #s 03404900 n 0000 | a heat-resistant clay -14813957 27 n 01 Kitty_Litter 0 002 @ 14813182 n 0000 ;u 06851742 n 0000 | granulated clay; placed in a container where it absorbs the waste products of a cat or dog -14814125 27 n 02 potter's_clay 0 potter's_earth 0 002 @ 14813182 n 0000 ~ 14814295 n 0000 | clay that does not contain any iron; used in making pottery or for modeling -14814295 27 n 01 slip 0 001 @ 14814125 n 0000 | potter's clay that is thinned and used for coating or decorating ceramics -14814419 27 n 01 claystone 0 001 @ 14696793 n 0000 | fine-grained rock consisting of compacted clay particles -14814531 27 n 01 clunch 0 002 @ 14844693 n 0000 ;r 08860123 n 0000 | hardened clay -14814616 27 n 01 coal 0 010 @ 14686352 n 0000 @ 15110956 n 0000 + 02771997 v 0102 + 02352704 v 0101 + 01599983 v 0101 %s 14633206 n 0000 ~ 14814921 n 0000 ~ 14815086 n 0000 ~ 14815263 n 0000 ~ 14815530 n 0000 | fossil fuel consisting of carbonized vegetable matter deposited in the Carboniferous period -14814921 27 n 03 anthracite 0 anthracite_coal 0 hard_coal 0 002 @ 14814616 n 0000 + 02628550 a 0101 | a hard natural coal that burns slowly and gives intense heat -14815086 27 n 02 bituminous_coal 0 soft_coal 0 003 @ 14814616 n 0000 ~ 14791722 n 0000 ~ 14815423 n 0000 | rich in tarry hydrocarbons; burns readily with a smoky yellow flame -14815263 27 n 03 lignite 0 brown_coal 0 wood_coal 0 003 @ 14814616 n 0000 @ 14908977 n 0000 ~ 14925378 n 0000 | intermediate between peat and bituminous coal -14815423 27 n 01 sea_coal 0 001 @ 14815086 n 0000 | pulverized bituminous coal; used as a foundry facing -14815530 27 n 01 steam_coal 0 001 @ 14814616 n 0000 | coal suitable for use under steam boilers -14815628 27 n 01 Clorox 0 002 @ 14779205 n 0000 ;u 06851742 n 0000 | a commercial bleaching agent -14815728 27 n 02 coagulant 0 coagulator 0 003 @ 14778436 n 0000 + 00457998 v 0202 + 00457998 v 0102 | an agent that produces coagulation -14815867 27 n 02 cod-liver_oil 0 cod_liver_oil 0 002 @ 14755077 n 0000 ~ 14816064 n 0000 | an oil obtained from the livers of cod and similar fishes; taken orally as a source of vitamins A and D -14816064 27 n 01 cod_oil 0 001 @ 14815867 n 0000 | an inferior cod-liver oil that is used in leather manufacturing -14816181 27 n 03 lanolin 0 wool_fat 0 wool_grease 0 002 @ 14755077 n 0000 #s 03845550 n 0000 | a yellow viscous animal oil extracted from wool; a mixture of fatty acids and esters; used in some ointments and cosmetics -14816401 27 n 01 codon 0 001 @ 08459252 n 0000 | a specific sequence of three adjacent nucleotides on a strand of DNA or RNA that specifies the genetic code information for synthesizing a particular amino acid -14816613 27 n 01 coin_silver 0 001 @ 14654954 n 0000 | a silver of the degree of purity established for making legal silver coins -14816745 27 n 02 combustible 0 combustible_material 0 002 @ 14875077 n 0000 + 00472992 a 0101 | a substance that can be burned to provide heat or power -14816899 27 n 02 complementary_DNA 0 cDNA 0 003 @ 14830364 n 0000 ~ 14817141 n 0000 ~ 14817346 n 0000 | single-stranded DNA that is complementary to messenger RNA or DNA that has been synthesized from messenger RNA by reverse transcriptase -14817141 27 n 01 provirus 0 001 @ 14816899 n 0000 | cDNA copy of the RNA genome of a retrovirus; the genetic material of a virus as incorporated into and able to replicate with the genome of a host cell -14817346 27 n 01 dscDNA 0 001 @ 14816899 n 0000 | double-stranded cDNA -14817419 27 n 01 episome 0 001 @ 14830364 n 0000 | DNA that is not incorporated into the genome but is replicated together with the genome (especially in bacterial cells) -14817592 27 n 02 complex 0 coordination_compound 0 002 @ 14818238 n 0000 ~ 14817964 n 0000 | a compound described in terms of the central atom to which other atoms are bound or coordinated -14817783 27 n 01 composite_material 0 001 @ 14580897 n 0000 | strong lightweight material developed in the laboratory; fibers of more than one kind are bonded together chemically -14817964 27 n 01 hydrochloride 0 001 @ 14817592 n 0000 | a complex consisting of an organic base in association with hydrogen chloride -14818101 27 n 01 compost 0 002 @ 14588492 n 0000 + 00527232 v 0101 | a mixture of decaying vegetation and manure; used as a fertilizer -14818238 27 n 02 compound 0 chemical_compound 0 080 @ 14806838 n 0000 ;c 06084469 n 0000 + 01657828 v 0101 ~ 12087032 n 0000 ~ 14583843 n 0000 ~ 14584016 n 0000 ~ 14585223 n 0000 ~ 14607521 n 0000 ~ 14610443 n 0000 ~ 14613368 n 0000 ~ 14617944 n 0000 ~ 14618253 n 0000 ~ 14618834 n 0000 ~ 14656926 n 0000 ~ 14671253 n 0000 ~ 14680963 n 0000 ~ 14682963 n 0000 ~ 14684427 n 0000 ~ 14727670 n 0000 ~ 14743727 n 0000 ~ 14767291 n 0000 ~ 14770248 n 0000 ~ 14776523 n 0000 ~ 14785941 n 0000 ~ 14789220 n 0000 ~ 14790526 n 0000 ~ 14797436 n 0000 ~ 14800706 n 0000 ~ 14805145 n 0000 ~ 14810168 n 0000 ~ 14817592 n 0000 ~ 14819856 n 0000 ~ 14823788 n 0000 ~ 14824140 n 0000 ~ 14828927 n 0000 ~ 14833729 n 0000 ~ 14833885 n 0000 ~ 14835569 n 0000 ~ 14869327 n 0000 ~ 14869513 n 0000 ~ 14873641 n 0000 ~ 14883766 n 0000 ~ 14883954 n 0000 ~ 14889728 n 0000 ~ 14898101 n 0000 ~ 14901959 n 0000 ~ 14910440 n 0000 ~ 14914670 n 0000 ~ 14918994 n 0000 ~ 14919511 n 0000 ~ 14920388 n 0000 ~ 14920586 n 0000 ~ 14922529 n 0000 ~ 14924188 n 0000 ~ 14935555 n 0000 ~ 14950394 n 0000 ~ 14957649 n 0000 ~ 14963317 n 0000 ~ 14971519 n 0000 ~ 14994328 n 0000 ~ 14997529 n 0000 ~ 15000973 n 0000 ~ 15010703 n 0000 ~ 15014529 n 0000 ~ 15015501 n 0000 ~ 15017604 n 0000 ~ 15025397 n 0000 ~ 15040129 n 0000 ~ 15040899 n 0000 ~ 15047988 n 0000 ~ 15057558 n 0000 ~ 15061550 n 0000 ~ 15063699 n 0000 ~ 15068134 n 0000 ~ 15068436 n 0000 ~ 15068754 n 0000 ~ 15079030 n 0000 ~ 15106529 n 0000 ~ 15110454 n 0000 ~ 15111437 n 0000 | (chemistry) a substance formed by chemical union of two or more elements or ingredients in definite proportion by weight -14819856 27 n 01 allomorph 0 001 @ 14818238 n 0000 | any of several different crystalline forms of the same chemical compound; "calcium carbonate occurs in the allomorphs calcite and aragonite" -14820052 27 n 01 computer_paper 0 001 @ 14974264 n 0000 | paper folded to permit continuous printing controlled by a computer -14820180 27 n 01 concrete 0 007 @ 14786479 n 0000 @ 14977504 n 0000 + 01600355 v 0101 %s 14804175 n 0000 ~ 14804487 n 0000 ~ 14804797 n 0000 %s 15019030 n 0000 | a strong hard building material composed of sand and gravel and cement and water -14820425 27 n 02 conjugate_solution 0 conjugate 0 002 @ 14589223 n 0000 + 00396513 v 0201 | a mixture of two partially miscible liquids A and B produces two conjugate solutions: one of A in B and another of B in A -14820641 27 n 01 conima 0 001 @ 14898470 n 0000 | a gum resin from the poison hemlock, Conium maculatum -14820747 27 n 02 constantan 0 Eureka 0 001 @ 14822563 n 0000 | an alloy of copper and nickel with high electrical resistance and a low temperature coefficient; used as resistance wire -14820933 27 n 01 construction_paper 0 001 @ 14974264 n 0000 | paper suitable for drawing and making cutouts -14821043 27 n 01 conductor 0 006 @ 14580897 n 0000 + 02079933 v 0102 ! 14821590 n 0101 ~ 14635722 n 0000 ~ 14654954 n 0000 ~ 14821248 n 0000 | a substance that readily conducts e.g. electricity and heat -14821248 27 n 02 semiconductor 0 semiconducting_material 0 004 @ 14821043 n 0000 #s 04171831 n 0000 ~ 14638517 n 0000 ~ 14654541 n 0000 | a substance as germanium or silicon whose electrical conductivity is intermediate between that of a metal and an insulator; its conductivity increases with temperature and in the presence of impurities -14821590 27 n 03 insulator 0 dielectric 0 nonconductor 0 006 @ 14580897 n 0000 + 00495038 v 0101 ! 14821043 n 0101 ~ 02925250 n 0000 ~ 14769644 n 0000 ~ 14821852 n 0000 | a material such as glass or porcelain with negligible electrical or thermal conductivity -14821852 27 n 01 glass_wool 0 002 @ 14821590 n 0000 @ 03339643 n 0000 | glass fibers spun and massed into bundles resembling wool -14821984 27 n 02 contaminant 0 contamination 0 004 @ 14580897 n 0000 + 00493259 v 0201 + 00492706 v 0203 + 00492706 v 0103 | a substance that contaminates -14822141 27 n 01 coolant 0 004 @ 14939900 n 0000 @ 14778436 n 0000 + 00370412 v 0101 + 00369864 v 0101 | a fluid agent (gas or liquid) that produces cooling; especially one used to cool a system by transferring heat away from one part to another; "he added more coolant to the car's radiator"; "the atomic reactor used a gas coolant"; "lathe operators use an emulsion of oil and water as a coolant for the cutting tool" -14822563 27 n 01 copper-base_alloy 0 006 @ 14586769 n 0000 ~ 14716997 n 0000 ~ 14717275 n 0000 ~ 14717925 n 0000 ~ 14722912 n 0000 ~ 14820747 n 0000 | any alloy whose principal component is copper -14822762 27 n 01 copper_oxide 0 001 @ 14971519 n 0000 | an oxide of copper -14822839 27 n 04 copper_sulfate 0 copper_sulphate 0 cupric_sulfate 0 cupric_sulphate 0 002 @ 15063493 n 0000 ~ 14782252 n 0000 | a copper salt made by the action of sulfuric acid on copper oxide -14823036 27 n 03 coral 0 red_coral 0 precious_coral 0 001 @ 14969666 n 0000 | the hard stony skeleton of a Mediterranean coral that has a delicate red or pink color and is used for jewelry -14823227 27 n 01 cork 0 003 @ 13162297 n 0000 @ 14991712 n 0000 + 01423623 v 0101 | outer bark of the cork oak; used for stoppers for bottles etc. -14823376 27 n 01 corkboard 0 001 @ 14920844 n 0000 | a heat-insulating building material consisting of cork granules that are made into sheets by compressing and baking -14823547 27 n 02 phellem 0 cork 1 002 @ 13162297 n 0000 ;c 06066555 n 0000 | (botany) outer tissue of bark; a protective layer of dead cells -14823690 27 n 01 corn_sugar 0 001 @ 14884120 n 0000 | dextrose made by hydrolysis of cornstarch -14823788 27 n 01 corrosive 0 002 @ 14818238 n 0000 + 00587376 a 0102 | a substance having the tendency to cause corrosion (such a strong acids or alkali) -14823944 27 n 03 alumina 0 aluminum_oxide 0 aluminium_oxide 0 003 @ 14672717 n 0000 #s 03404900 n 0000 ~ 14824469 n 0000 | any of various forms of aluminum oxide occurring naturally as corundum -14824140 27 n 01 aluminate 0 001 @ 14818238 n 0000 | a compound of alumina and a metallic oxide -14824238 27 n 04 aluminum_hydroxide 0 aluminium_hydroxide 0 hydrated_aluminum_oxide 0 hydrated_aluminium_oxide 0 002 @ 14935555 n 0000 #s 14676943 n 0000 | white crystalline compound that occurs naturally as the mineral gibbsite -14824469 27 n 01 alundum 0 001 @ 14823944 n 0000 | a substance made of fused alumina -14824556 27 n 02 cottonseed_cake 0 cotton_cake 0 001 @ 15004501 n 0000 | the solid matter remaining after oil has been pressed from cottonseeds -14824702 27 n 02 coumarone-indene_resin 0 coumarone_resin 0 001 @ 14592610 n 0000 | a thermoplastic resin obtained by polymerization of indene and coumarone; used in coatings and paint and asphalt tile -14824906 27 n 01 indene 0 001 @ 14911057 n 0000 | a colorless liquid hydrocarbon extracted from petroleum or coal tar and used in making synthetic resins -14825062 27 n 01 covering_material 0 005 @ 14786479 n 0000 ~ 14866769 n 0000 ~ 14938389 n 0000 ~ 14992287 n 0000 ~ 14992945 n 0000 | a material used by builders to cover surfaces -14825243 27 n 02 creatine 0 creatin 0 001 @ 14601829 n 0000 | an amino acid that does not occur in proteins but is found in the muscle tissue of vertebrates both in the free form and as phosphocreatine; supplies energy for muscle contraction -14825487 27 n 01 creosol 0 002 @ 14989545 n 0000 #s 14825812 n 0000 | a colorless to yellow aromatic liquid that is a constituent of creosote -14825631 27 n 02 creosote 1 coal-tar_creosote 0 002 @ 14727670 n 0000 + 00186446 v 0101 | a dark oily liquid obtained by distillation of coal tar; used as a preservative for wood -14825812 27 n 01 creosote 0 002 @ 14727670 n 0000 %s 14825487 n 0000 | a colorless or yellowish oily liquid obtained by distillation of wood tar; used as an antiseptic -14825982 27 n 02 cresol 0 methyl_phenol 0 002 @ 14989545 n 0000 ~ 14944317 n 0000 | any of three poisonous colorless isomeric phenols; derived from coal or wood tar; used as a disinfectant -14826173 27 n 02 crepe 2 crepe_paper 0 002 @ 14974264 n 0000 + 01599805 v 0102 | paper with a crinkled texture; usually colored and used for decorations -14826328 27 n 01 cryogen 0 003 @ 15003797 n 0000 ~ 14940750 n 0000 ~ 14940856 n 0000 | a liquid that boils at below -160 C and is used as a refrigerant -14826482 27 n 02 cyanamide 0 cyanamid 0 001 @ 14607521 n 0000 | a weak soluble dibasic acid (the parent acid of cyanamide salts) -14826613 27 n 01 cyanic_acid 0 001 @ 14607521 n 0000 | a colorless poisonous volatile liquid acid that hydrolyzes readily to ammonia and carbon dioxide -14826767 27 n 01 cyanide 0 003 @ 15010703 n 0000 ~ 14826904 n 0000 ~ 14862064 n 0000 | an extremely poisonous salt of hydrocyanic acid -14826904 27 n 01 sodium_cyanide 0 001 @ 14826767 n 0000 | a white poisonous salt (NaCN) used in electroplating -14827017 27 n 01 cyanogen 0 003 @ 14877585 n 0000 + 02449775 a 0102 + 02449775 a 0101 | a colorless toxic gas with a pungent almond odor; has been used in chemical warfare -14827191 27 n 04 cyano_group 0 cyano_radical 0 cyanide_group 0 cyanide_radical 0 001 @ 14621446 n 0000 | the monovalent group -CN in a chemical compound -14827346 27 n 03 nitrile 0 nitril 0 cyanide 1 002 @ 14727670 n 0000 ~ 14998677 n 0000 | any of a class of organic compounds containing the cyano radical -CN -14827505 27 n 01 cyanohydrin 0 001 @ 14727670 n 0000 | any organic compound in which the cyano radical -CN and the hydroxyl radical -OH are attached to the same carbon atom -14827680 27 n 01 cyanuric_acid 0 001 @ 14607521 n 0000 | a trimer of cyanic acid -14827763 27 n 01 cyclohexanol 0 001 @ 14708720 n 0000 | a colorless oily alcohol that smells like camphor -14827871 27 n 01 cyclohexanol_phthalate 0 001 @ 14850483 n 0000 | the cyclohexanol ester of phthalic acid -14827979 27 n 01 cymene 0 001 @ 14911057 n 0000 | any of three isotopes of a colorless aromatic liquid hydrocarbon occurring in the volatile oil of cumin and thyme and used in the manufacture of synthetic resins -14828193 27 n 01 cytokine 0 003 @ 14728724 n 0000 ~ 14737365 n 0000 ~ 14943950 n 0000 | any of various protein molecules secreted by cells of the immune system that serve to regulate the immune system -14828396 27 n 01 cytolysin 0 001 @ 15029646 n 0000 | a substance that partly or completely destroys animal cells -14828511 27 n 02 cytosine 0 C 2 003 @ 14999913 n 0000 #s 14830364 n 0000 #s 14832193 n 0000 | a base found in DNA and RNA and derived from pyrimidine; pairs with guanine -14828683 27 n 01 daub 0 004 @ 14813182 n 0000 + 01313249 v 0101 + 01233387 v 0101 + 01360899 v 0102 | material used to daub walls -14828815 27 n 01 decarboxylase 0 001 @ 14732946 n 0000 | any of the enzymes that hydrolize the carboxyl group -14828927 27 n 01 defoliant 0 002 @ 14818238 n 0000 + 00195813 v 0101 | a chemical that is sprayed on plants and causes their leaves to fall off -14829073 27 n 01 de-iodinase 0 001 @ 14732946 n 0000 | an enzyme that removes the iodine radical -14829172 27 n 01 demantoid 0 001 @ 14829264 n 0000 | a green andradite used as a gemstone -14829264 27 n 01 andradite 0 002 @ 14676042 n 0000 ~ 14829172 n 0000 | a garnet consisting of calcium iron silicate and having any color ranging from yellow and green to brown and black; used as gemstone -14829470 27 n 01 demerara 0 001 @ 14791453 n 0000 | a light brown raw cane sugar from Guyana -14829565 27 n 02 deoxyadenosine_monophosphate 0 A 1 001 @ 14964590 n 0000 | one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose) -14829765 27 n 02 deoxycytidine_monophosphate 0 C 1 001 @ 14964590 n 0000 | one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose) -14829964 27 n 02 deoxyguanosine_monophosphate 0 G 0 001 @ 14964590 n 0000 | one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose) -14830164 27 n 02 deoxythymidine_monophosphate 0 T 0 001 @ 14964590 n 0000 | one of the four nucleotides used in building DNA; all four nucleotides have a common phosphate group and a sugar (ribose) -14830364 27 n 03 deoxyribonucleic_acid 0 desoxyribonucleic_acid 0 DNA 0 018 @ 14994328 n 0000 ;c 06079620 n 0000 %p 05436752 n 0000 ~ 05440207 n 0000 %p 14630769 n 0000 %s 14706889 n 0000 ~ 14816899 n 0000 ~ 14817419 n 0000 %s 14828511 n 0000 ~ 14830992 n 0000 ~ 14831178 n 0000 ~ 14831338 n 0000 ~ 14831479 n 0000 ~ 14831665 n 0000 ~ 14831812 n 0000 %s 14892138 n 0000 %p 14964129 n 0000 %s 15072857 n 0000 | (biochemistry) a long linear polymer found in the nucleus of a cell and formed from nucleotides and shaped like a double helix; associated with the transmission of genetic information; "DNA is the king of molecules" -14830992 27 n 02 exon 0 coding_DNA 0 002 @ 14830364 n 0000 ! 14831178 n 0101 | sequence of a gene's DNA that transcribes into protein structures; "exons are interspersed with introns" -14831178 27 n 02 intron 0 noncoding_DNA 0 002 @ 14830364 n 0000 ! 14830992 n 0101 | sequence of a eukaryotic gene's DNA that is not translated into a protein -14831338 27 n 01 junk_DNA 0 001 @ 14830364 n 0000 | stretches of DNA that do not code for genes; "most of the genome consists of junk DNA" -14831479 27 n 02 recombinant_deoxyribonucleic_acid 0 recombinant_DNA 0 001 @ 14830364 n 0000 | genetically engineered DNA made by recombining fragments of DNA from different organisms -14831665 27 n 01 sticky_end 0 001 @ 14830364 n 0000 | an end of DNA in which one strand of the double helix extends a few units beyond the other -14831812 27 n 02 transposon 0 jumping_gene 0 001 @ 14830364 n 0000 | a segment of DNA that can become integrated at many different sites along a chromosome (especially a segment of bacterial DNA that can be translocated as a whole) -14832046 27 n 03 ribonuclease 0 ribonucleinase 0 RNase 0 001 @ 15077571 n 0000 | a transferase that catalyzes the hydrolysis of ribonucleic acid -14832193 27 n 02 ribonucleic_acid 0 RNA 0 011 @ 14994328 n 0000 ;c 06079620 n 0000 %s 14696331 n 0000 %s 14706889 n 0000 %s 14828511 n 0000 ~ 14832770 n 0000 ~ 14833027 n 0000 ~ 14833143 n 0000 %s 14892138 n 0000 %p 14964129 n 0000 %s 15084357 n 0000 | (biochemistry) a long linear polymer of nucleotides found in the nucleus but mainly in the cytoplasm of a cell where it is associated with microsomes; it transmits genetic information from DNA to the cytoplasm and controls certain chemical processes in the cell; "ribonucleic acid is the genetic material of some viruses" -14832770 27 n 04 messenger_RNA 0 mRNA 0 template_RNA 0 informational_RNA 0 001 @ 14832193 n 0000 | the template for protein synthesis; the form of RNA that carries information from DNA in the nucleus to the ribosome sites of protein synthesis in the cell -14833027 27 n 02 nuclear_RNA 0 nRNA 0 001 @ 14832193 n 0000 | ribonucleic acid found in the nucleolus of the cell -14833143 27 n 04 transfer_RNA 0 tRNA 0 acceptor_RNA 0 soluble_RNA 0 001 @ 14832193 n 0000 | RNA molecules present in the cell (in at least 20 varieties, each variety capable of combining with a specific amino acid) that attach the correct amino acid to the protein chain that is being synthesized at the ribosome of the cell (according to directions coded in the mRNA) -14833514 27 n 01 deoxyribose 0 001 @ 14792703 n 0000 | a sugar that is a constituent of nucleic acids -14833618 27 n 01 dental_gold 0 002 @ 14586769 n 0000 %s 14638799 n 0000 | an alloy of gold used in dentistry -14833729 27 n 01 depilatory 0 002 @ 14818238 n 0000 + 00211221 a 0101 | a chemical (usually a sulfide) used to remove hair or wool or bristles from hides -14833885 27 n 01 derivative 0 001 @ 14818238 n 0000 | a compound obtained from, or regarded as derived from, another compound -14834013 27 n 02 desert_soil 0 desertic_soil 0 001 @ 14844693 n 0000 | a type of soil that develops in arid climates -14834132 27 n 01 dew 0 002 @ 11446242 n 0000 + 02547862 a 0102 | water that has condensed on a cool surface overnight from water vapor in the air; "in the morning the grass was wet with dew" -14834325 27 n 01 dextrin 0 001 @ 14994004 n 0000 | any of various polysaccharides obtained by hydrolysis of starch; a tasteless and odorless gummy substance that is used as a thickening agent and in adhesives and in dietary supplements -14834563 27 n 02 diamond 0 adamant 0 003 @ 14633206 n 0000 @ 15078050 n 0000 ~ 14793393 n 0000 | very hard native crystalline carbon valued as a gem -14834714 27 n 01 digestive 0 001 @ 00020090 n 0000 | any substance that promotes digestion -14834807 27 n 01 mono-iodotyrosine 0 001 @ 14835004 n 0000 | tyrosine with one iodine atom added -14834906 27 n 01 di-iodotyrosine 0 001 @ 14835004 n 0000 | tyrosine with two iodine atoms added -14835004 27 n 01 iodotyrosine 0 003 @ 14607250 n 0000 ~ 14834807 n 0000 ~ 14834906 n 0000 | tyrosine with iodine added -14835125 27 n 01 iodothyronine 0 002 @ 14607250 n 0000 ~ 14835230 n 0000 | thyronine with iodine added -14835230 27 n 01 tri-iodothyronine 0 001 @ 14835125 n 0000 | thyronine with three iodine atoms added -14835333 27 n 03 dilutant 0 diluent 0 thinner 0 004 @ 14778436 n 0000 + 00226071 v 0302 + 00430625 v 0301 + 00226071 v 0101 | a diluting agent -14835478 27 n 01 dilution 0 002 @ 14589223 n 0000 + 00226071 v 0101 | a diluted solution -14835569 27 n 01 dimer 0 001 @ 14818238 n 0000 | a compound whose molecules are composed of two identical monomers -14835686 27 n 01 dimethylglyoxime 0 001 @ 14997393 n 0000 | a compound used in analysis as a precipitant for palladium or nickel -14835817 27 n 03 dimpled_chad 0 pregnant_chad 0 dimple 0 001 @ 14805676 n 0000 | a chad that has been punched or dimpled but all four corners are still attached -14835980 27 n 03 diol 0 glycol 1 dihydric_alcohol 0 001 @ 14708720 n 0000 | any of a class of alcohols having 2 hydroxyl groups in each molecule -14836127 27 n 01 dioxide 0 005 @ 14971519 n 0000 ~ 14767087 n 0000 ~ 14796969 n 0000 ~ 14809843 n 0000 ~ 15064053 n 0000 | an oxide containing two atoms of oxygen in the molecule -14836308 27 n 01 dioxin 0 002 @ 14911057 n 0000 #s 14601039 n 0000 | any of several toxic or carcinogenic hydrocarbons that occur as impurities in herbicides -14836468 27 n 01 disaccharidase 0 003 @ 14732946 n 0000 ~ 14921622 n 0000 ~ 14928885 n 0000 | an enzyme that catalyzes the hydrolysis of disaccharides into monosaccharides -14836642 27 n 01 disaccharide 0 004 @ 14969044 n 0000 ~ 14929462 n 0000 ~ 14946618 n 0000 ~ 15062778 n 0000 | any of a variety of carbohydrates that yield two monosaccharide molecules on complete hydrolysis -14836851 27 n 01 dishwater 0 001 @ 14845743 n 0000 | water in which dishes and cooking utensils are washed -14836960 27 n 02 distillate 0 distillation 0 008 @ 14940386 n 0000 + 00475183 v 0204 + 00229280 v 0201 + 00229026 v 0201 + 00364868 v 0102 + 00475183 v 0104 + 00229280 v 0101 + 00229026 v 0101 | a purified liquid produced by condensation from a vapor during distilling; the product of distilling -14837258 27 n 01 distilled_water 0 001 @ 14845743 n 0000 | water that has been purified by distillation -14837364 27 n 03 exhaust 0 exhaust_fumes 0 fumes 0 002 @ 14877585 n 0000 @ 14856263 n 0000 | gases ejected from an engine as waste products -14837506 27 n 02 dressed_ore 0 concentrate 0 002 @ 14688500 n 0000 + 00237511 v 0201 | the desired mineral that is left after impurities have been removed from mined ore -14837678 27 n 01 driftwood 0 001 @ 15098161 n 0000 | wood that is floating or that has been washed ashore -14837786 27 n 02 drill_steel 0 drill_rod 0 001 @ 14803074 n 0000 | carbon steel used for rock drills and dowels -14837900 27 n 01 docosahexaenoic_acid 0 001 @ 14742028 n 0000 | an omega-3 fatty acid with 22 carbon atoms; found in fish (especially tuna and bluefish) -14838055 27 n 01 dolomite 0 002 @ 14696793 n 0000 + 03062151 a 0101 | a kind of sedimentary rock resembling marble or limestone but rich in magnesium carbonate -14838217 27 n 03 dopamine 0 Dopastat 0 Intropin 0 003 @ 14807737 n 0000 ;u 06845599 n 0301 ;u 06845599 n 0201 | a monoamine neurotransmitter found in the brain and essential for the normal functioning of the central nervous system; as a drug (trade names Dopastat and Intropin) it is used to treat shock and hypotension -14838539 27 n 01 dottle 0 001 @ 15004501 n 0000 | the residue of partially burnt tobacco left caked in the bowl of a pipe after smoking -14838677 27 n 01 dragon's_blood 0 001 @ 14898470 n 0000 | a dark red resinous substance derived from various trees and used in photoengraving -14838821 27 n 01 drawing_paper 0 002 @ 14974264 n 0000 ~ 14799927 n 0000 | paper that is specially prepared for use in drafting -14838951 27 n 02 drilling_mud 0 drilling_fluid 0 001 @ 14890659 n 0000 | a mixture of clays and chemicals and water; pumped down the drill pipe to lubricate and cool the drilling bit and to flush out the cuttings and to strengthen the sides of the hole -14839206 27 n 01 dubbin 0 001 @ 15062468 n 0000 | tallow mixed with oil; used to make leather soft and waterproof -14839322 27 n 01 Duralumin 0 003 @ 14586769 n 0000 ;u 06851742 n 0000 %s 14627820 n 0000 | an aluminum-based alloy -14839439 27 n 02 particulate 0 particulate_matter 0 002 @ 14580897 n 0000 ~ 14839846 n 0000 | a small discrete mass of solid or liquid matter that remains individually dispersed in gas or liquid emissions (usually considered to be an atmospheric pollutant) -14839698 27 n 01 chalk_dust 0 001 @ 14839846 n 0000 | dust resulting from writing with a piece of chalk; "chalk dust covered the teacher's hands" -14839846 27 n 01 dust 0 005 @ 14839439 n 0000 + 01244351 v 0101 + 01696346 a 0101 ~ 14839698 n 0000 ~ 14858950 n 0000 | fine powdery material such as dry earth or pollen that can be blown about in the air; "the furniture was covered with dust" -14840092 27 n 01 dust 2 004 @ 14580897 n 0000 + 01376245 v 0104 + 01612660 v 0101 ~ 09314263 n 0000 | free microscopic particles of solid material; "astronomers say that the empty space between planets actually contains measurable amounts of dust" -14840342 27 n 01 elaidic_acid 0 002 @ 14741474 n 0000 @ 14741124 n 0000 | a monounsaturated fatty acid that has the same structure as oleic acid except that it is a trans fatty acid; the major trans fatty acid in margarine and fried foods -14840583 27 n 01 elastomer 0 001 @ 14580897 n 0000 | any of various elastic materials that resemble rubber (resumes its original shape when a deforming force is removed) -14840755 27 n 01 element 1 006 @ 00019613 n 0000 ~ 14842703 n 0000 ~ 14842847 n 0000 ~ 14844414 n 0000 ~ 14847103 n 0000 ~ 14847357 n 0000 | one of four substances thought in ancient and medieval cosmology to constitute the physical universe; "the alchemists believed that there were four elements" -14841056 27 n 01 elixir 0 001 @ 14940100 n 0000 | a sweet flavored liquid (usually containing a small amount of alcohol) used in compounding medicines to be taken by mouth in order to mask an unpleasant taste -14841267 27 n 01 air 0 014 @ 14877585 n 0000 #s 11525955 n 0000 + 02112891 v 0103 + 00190999 v 0102 + 00442267 v 0104 %s 14628920 n 0000 %s 14642916 n 0000 %s 14646152 n 0000 %s 14647235 n 0000 %s 14648100 n 0000 %s 14661274 n 0000 ~ 14841770 n 0000 ~ 14841923 n 0000 ~ 14940856 n 0000 | a mixture of gases (especially oxygen) required for breathing; the stuff that the wind consists of; "air pollution"; "a smell of chemicals in the air"; "open a window and let in some air"; "I need some fresh air" -14841770 27 n 01 breath 0 002 @ 14841267 n 0000 ~ 14842091 n 0000 | the air that is inhaled and exhaled in respiration; "his sour breath offended her" -14841923 27 n 01 hot_air 0 001 @ 14841267 n 0000 | air that has been heated and tends to rise -14842019 27 n 01 halitosis 0 001 @ 14842091 n 0000 | offensive breath -14842091 27 n 02 halitus 0 exhalation 0 004 @ 14841770 n 0000 + 00004605 v 0201 + 00004227 v 0201 ~ 14842019 n 0000 | exhaled breath -14842226 27 n 01 compressed_gas 0 003 @ 14877585 n 0000 @ 14691822 n 0000 ~ 14842378 n 0000 | gas at a high pressure that can be used as a propellant -14842378 27 n 01 compressed_air 0 002 @ 14842226 n 0000 ~ 14842560 n 0000 | air at a pressure greater than that of the atmosphere; "compressed air is often used to power machines" -14842560 27 n 01 air_cushion 0 001 @ 14842378 n 0000 | the trapped air that supports a hovercraft a short distance above the water or ground -14842703 27 n 01 air 1 002 @ 14840755 n 0000 ;u 07073447 n 0000 | once thought to be one of four elements composing the universe (Empedocles) -14842847 27 n 01 fire 1 002 @ 14840755 n 0000 ;u 07073447 n 0000 | once thought to be one of four elements composing the universe (Empedocles) -14842992 27 n 02 earth 0 ground 0 008 @ 14580897 n 0000 + 02905151 a 0101 + 01292727 v 0101 + 02146990 v 0101 ~ 09358907 n 0000 ~ 14843295 n 0000 ~ 14844560 n 0000 ~ 14844693 n 0000 | the loose soft material that makes up a large part of the land surface; "they dug into the earth outside the church" -14843295 27 n 03 diatomaceous_earth 0 diatomite 0 kieselguhr 0 002 @ 14842992 n 0000 @ 03339643 n 0000 | a light soil consisting of siliceous diatom remains and often used as a filtering material -14843493 27 n 01 sienna 0 003 @ 14673978 n 0000 ~ 14843767 n 0000 ~ 14843877 n 0000 | an earth color containing ferric oxides; used as a pigment -14843640 27 n 02 bister 0 bistre 0 001 @ 14989820 n 0000 | a water-soluble brownish-yellow pigment made by boiling wood soot -14843767 27 n 01 burnt_sienna 0 001 @ 14843493 n 0000 | a reddish-brown pigment produced by roasting sienna -14843877 27 n 01 raw_sienna 0 001 @ 14843493 n 0000 | a yellowish-brown pigment made from untreated sienna -14843986 27 n 02 ocher 0 ochre 0 003 @ 14673978 n 0000 ~ 14844169 n 0000 ~ 14844281 n 0000 | any of various earths containing silica and alumina and ferric oxide; used as a pigment -14844169 27 n 03 sinopis 0 sinopia 0 sinoper 0 001 @ 14843986 n 0000 | a red ocher formerly used as a pigment -14844281 27 n 02 yellow_ocher 0 yellow_ochre 0 001 @ 14843986 n 0000 | pigment consisting of a limonite mixed with clay and silica -14844414 27 n 01 earth 1 002 @ 14840755 n 0000 ;u 07073447 n 0000 | once thought to be one of four elements composing the universe (Empedocles) -14844560 27 n 01 saprolite 0 001 @ 14842992 n 0000 | a deposit of clay and disintegrating rock that is found in its original place -14844693 27 n 02 soil 1 dirt 1 032 @ 14842992 n 0000 ~ 14681249 n 0000 ~ 14695351 n 0000 ~ 14695588 n 0000 ~ 14695737 n 0000 ~ 14695838 n 0000 ~ 14719725 n 0000 ~ 14782403 n 0000 ~ 14813182 n 0000 ~ 14814531 n 0000 ~ 14834013 n 0000 ~ 14845578 n 0000 ~ 14875707 n 0000 ~ 14879492 n 0000 ~ 14903596 n 0000 ~ 14908822 n 0000 ~ 14917561 n 0000 ~ 14918264 n 0000 ~ 14930165 n 0000 ~ 14942223 n 0000 ~ 14942631 n 0000 ~ 14953564 n 0000 ~ 14956325 n 0000 ~ 14990864 n 0000 ~ 14993137 n 0000 ~ 14997274 n 0000 ~ 15019030 n 0000 ~ 15021824 n 0000 ~ 15042052 n 0000 ~ 15074772 n 0000 ~ 15081675 n 0000 ~ 15097994 n 0000 | the part of the earth's surface consisting of humus and disintegrated rock -14845383 27 n 01 soil_conditioner 0 001 @ 14806838 n 0000 | a chemical substance used to improve the structure of the soil and increase its porosity; "gypsum can be used as a soil conditioner" -14845578 27 n 02 caliche 2 hardpan 0 001 @ 14844693 n 0000 | crust or layer of hard subsoil encrusted with calcium-carbonate occurring in arid or semiarid regions -14845743 27 n 02 water 0 H2O 0 029 @ 14618834 n 0000 @ 14940100 n 0000 #s 05405324 n 0000 #s 05405751 n 0000 #s 11509066 n 0000 #s 14915184 n 0000 #s 11509377 n 0000 + 02551259 a 0101 + 02262365 a 0101 + 02357873 v 0101 + 00228236 v 0101 ~ 07936177 n 0000 #s 09225146 n 0000 %s 14640434 n 0000 %s 14648100 n 0000 ~ 14773787 n 0000 ~ 14836851 n 0000 ~ 14837258 n 0000 ~ 14846517 n 0000 ~ 14847503 n 0000 ~ 14905422 n 0000 ~ 14937093 n 0000 ~ 14950055 n 0000 ~ 15008847 n 0000 ~ 15009326 n 0000 ~ 15043308 n 0000 ~ 15046716 n 0000 ~ 15059797 n 0000 ~ 15094136 n 0000 | binary compound that occurs at room temperature as a clear colorless odorless tasteless liquid; freezes into ice below 0 degrees centigrade and boils above 100 degrees centigrade; widely used as a solvent -14846517 27 n 01 holy_water 0 001 @ 14845743 n 0000 | water that has been blessed by a priest for use in symbolic purification -14846646 27 n 01 musk 0 001 @ 05404728 n 0000 | an odorous glandular secretion from the male musk deer; used as a perfume fixative -14846779 27 n 01 nectar 0 001 @ 05404728 n 0000 | a sweet liquid secretion that is attractive to pollinators -14846890 27 n 01 pheromone 0 001 @ 05404728 n 0000 | a chemical substance secreted externally by some animals (especially insects) that influences the physiology or behavior of other animals of the same species -14847103 27 n 02 quintessence 0 ether 1 004 @ 14840755 n 0000 ;u 07073447 n 0000 + 01179345 a 0202 + 02998269 a 0101 | the fifth and highest element after air and earth and fire and water; was believed to be the substance composing all heavenly bodies -14847357 27 n 01 water 2 002 @ 14840755 n 0000 ;u 07073447 n 0000 | once thought to be one of four elements composing the universe (Empedocles) -14847503 27 n 03 ground_water 0 spring_water 0 well_water 0 001 @ 14845743 n 0000 | underground water that is held in the soil and in pervious rocks -14847654 27 n 01 eicosapentaenoic_acid 0 001 @ 14742028 n 0000 | an omega-3 fatty acid with 20 carbon atoms; found in fish (especially tuna and bluefish) -14847810 27 n 02 eleostearic_acid 0 elaeostearic_acid 0 001 @ 14740915 n 0000 | a crystalline unsaturated fatty acid -14847929 27 n 01 electrolyte 0 003 @ 14589223 n 0000 + 02718008 a 0101 ~ 14590441 n 0000 | a solution that conducts electricity; "the proper amount and distribution of electrolytes in the body is essential for health" -14848149 27 n 01 eluate 0 001 @ 14589223 n 0000 | a liquid solution that results from elution -14848245 27 n 01 Fehling's_solution 0 001 @ 14589223 n 0000 | a liquid solution of copper sulfate and potassium tartrate and sodium hydroxide that is used to test for sugar in the urine; solution turns reddish when sugar is present -14848479 27 n 02 formalin 0 formol 0 001 @ 14589223 n 0000 | a 10% solution of formaldehyde in water; used as a disinfectant or to preserve biological specimens -14848642 27 n 02 gargle 0 mouthwash 0 002 @ 14589223 n 0000 + 00037138 v 0101 | a medicated solution used for gargling and rinsing the mouth -14848785 27 n 02 infusion 0 extract 0 005 @ 14589223 n 0000 + 01351754 v 0203 ~ 07810633 n 0000 ~ 11757433 n 0000 ~ 14848995 n 0000 | a solution obtained by steeping or soaking a substance (usually in water) -14848995 27 n 01 pancreatin 0 001 @ 14848785 n 0000 | extract from the pancreas of animals that contains pancreatic enzymes; used to treat pancreatitis and other conditions involving insufficient pancreatic secretions -14849215 27 n 02 injection 0 injectant 0 003 @ 14589223 n 0000 + 01199213 v 0201 + 00086320 v 0201 | any solution that is injected (as into the skin) -14849367 27 n 02 isotonic_solution 0 isosmotic_solution 0 003 @ 14589223 n 0000 ~ 14589994 n 0000 ~ 14590293 n 0000 | a solution having the same osmotic pressure as blood -14849540 27 n 01 elastase 0 001 @ 14732946 n 0000 | a pancreatic enzyme that catalyzes the hydrolysis of elastin -14849655 27 n 01 emerald 0 002 @ 15078050 n 0000 @ 14668539 n 0000 | a green transparent form of beryl; highly valued as a gemstone -14849789 27 n 01 emery_cloth 0 001 @ 14799244 n 0000 | cloth covered with powdered emery -14849880 27 n 02 emery_paper 0 sandpaper 0 004 @ 14799244 n 0000 + 02242582 a 0201 + 01386433 v 0201 %s 14674143 n 0000 | stiff paper coated with powdered emery or sand -14850051 27 n 02 emery_stone 0 emery_rock 0 001 @ 14696793 n 0000 | a mixture of emery dust and a binder; can be molded into grindstones -14850190 27 n 01 enterokinase 0 001 @ 14732946 n 0000 | enzyme in the intestinal juice that converts inactive trypsinogen into active trypsin -14850334 27 n 01 erythropoietin 0 001 @ 14888310 n 0000 | a glycoprotein secreted by the kidneys that stimulates the production of red blood cells -14850483 27 n 01 ester 0 013 @ 14727670 n 0000 + 00506225 v 0101 ~ 14604184 n 0000 ~ 14679780 n 0000 ~ 14772594 n 0000 ~ 14794823 n 0000 ~ 14827871 n 0000 ~ 14850948 n 0000 ~ 14887026 n 0000 ~ 14946251 n 0000 ~ 14964590 n 0000 ~ 14993559 n 0000 ~ 15084277 n 0000 | formed by reaction between an acid and an alcohol with elimination of water -14850826 27 n 02 ethane 0 C2H6 0 002 @ 14951377 n 0000 @ 14911057 n 0000 | a colorless odorless alkane gas used as fuel -14850948 27 n 01 ethyl_acetate 0 001 @ 14850483 n 0000 | a fragrant colorless flammable volatile liquid ester made from ethanol and acetic acid; used in flavorings and perfumes and as a solvent for plastics -14851157 27 n 02 ethylene 0 ethene 0 003 @ 14713120 n 0000 @ 14877585 n 0000 ~ 14851414 n 0000 | a flammable colorless gaseous alkene; obtained from petroleum and natural gas and used in manufacturing many other chemicals; sometimes used as an anesthetic -14851414 27 n 03 trichloroethylene 0 trichloroethane 0 TCE 0 001 @ 14851157 n 0000 | a heavy colorless highly toxic liquid used as a solvent to clean electronic components and for dry cleaning and as a fumigant; causes cancer and liver and lung damage -14851668 27 n 02 ethylenediaminetetraacetic_acid 0 EDTA 0 001 @ 14682133 n 0000 | a complex molecule used medically to chelate metal ions in cases of lead or heavy metal poisoning -14851850 27 n 03 ethylene_glycol 0 glycol 2 ethanediol 0 001 @ 14766364 n 0000 | a sweet but poisonous syrupy liquid used as an antifreeze and solvent -14852003 27 n 02 propylene_glycol 0 propanediol 0 002 @ 14766364 n 0000 @ 14908683 n 0000 | a sweet colorless, viscous, hygroscopic liquid used as an antifreeze and in brake fluid and also as a humectant in cosmetics and personal care items although it can be absorbed through the skin with harmful effects -14852312 27 n 02 euphorbium 0 gum_eurphorbium 0 001 @ 14898470 n 0000 | an acrid brown gum resin now used mainly in veterinary medicine -14852450 27 n 02 discharge 0 emission 0 006 @ 14580897 n 0000 ~ 14852913 n 0000 ~ 14853112 n 0000 ~ 14853530 n 0000 ~ 14853647 n 0000 ~ 14853796 n 0000 | a substance that is emitted or released -14852646 27 n 01 emmenagogue 0 001 @ 14778436 n 0000 | any agent that promotes menstrual discharge -14852747 27 n 01 eutectoid_steel 0 001 @ 14803074 n 0000 | a steel that contains 0.9% carbon (the eutectic point); a carbon steel with 0.9% carbon is pure pearlite -14852913 27 n 02 exudate 0 exudation 0 006 @ 14852450 n 0000 + 00067999 v 0201 + 00067999 v 0102 + 00067999 v 0101 ~ 14898470 n 0000 ~ 15006118 n 0000 | a substance that oozes out from plant pores -14853112 27 n 02 transudate 0 transudation 0 001 @ 14852450 n 0000 | a substance that transudes -14853210 27 n 01 high_explosive 0 004 @ 03304730 n 0000 @ 04565963 n 0000 ! 14853392 n 0101 ~ 03212247 n 0000 | a powerful chemical explosive that produces gas at a very high rate -14853392 27 n 01 low_explosive 0 003 @ 03304730 n 0000 ! 14853210 n 0101 ~ 03348454 n 0000 | an explosive with a low rate of combustion -14853530 27 n 01 effluvium 0 001 @ 14852450 n 0000 | a foul-smelling outflow or vapor (especially a gaseous waste) -14853647 27 n 01 rheum 0 002 @ 14852450 n 0000 + 02550023 a 0101 | a watery discharge from the mucous membranes (especially from the eyes or nose) -14853796 27 n 01 vaginal_discharge 0 001 @ 14852450 n 0000 | discharge of secretions from the cervical glands of the vagina; normally clear or white -14853947 27 n 05 body_waste 0 excretion 0 excreta 0 excrement 0 excretory_product 0 008 @ 14856263 n 0000 ~ 14854262 n 0000 ~ 14855428 n 0000 ~ 14855512 n 0000 ~ 14855635 n 0000 ~ 14855724 n 0000 ~ 14855992 n 0000 ~ 14892289 n 0000 | waste matter (as urine or sweat but especially feces) discharged from the body -14854262 27 n 08 fecal_matter 0 faecal_matter 0 feces 0 faeces 0 BM 0 stool 0 ordure 0 dejection 0 009 @ 14853947 n 0000 + 00074038 v 0601 + 03065685 a 0402 + 03065685 a 0301 ~ 09268480 n 0000 ~ 14854581 n 0000 ~ 14854847 n 0000 ~ 14855150 n 0000 ~ 14855280 n 0000 | solid excretory product evacuated from the bowels -14854581 27 n 06 crap 0 dirt 2 shit 0 shite 0 poop 0 turd 0 005 @ 14854262 n 0000 ;u 07124340 n 0000 + 00074038 v 0303 + 00841986 v 0307 + 00074038 v 0107 | obscene terms for feces -14854764 27 n 01 pigeon_droppings 0 001 @ 14854847 n 0000 | droppings of pigeons -14854847 27 n 03 droppings 0 dung 0 muck 1 008 @ 14854262 n 0000 + 02083087 v 0302 + 00074453 v 0201 + 00502623 v 0201 ~ 09243906 n 0000 ~ 09256272 n 0000 ~ 14854764 n 0000 ~ 14855066 n 0000 | fecal matter of animals -14855066 27 n 02 cow_pie 0 cowpie 0 001 @ 14854847 n 0000 | fecal matter of a cow -14855150 27 n 01 meconium 0 001 @ 14854262 n 0000 | thick dark green mucoid material that is the first feces of a newborn child -14855280 27 n 02 melena 0 melaena 0 001 @ 14854262 n 0000 | abnormally dark tarry feces containing blood (usually from gastrointestinal bleeding) -14855428 27 n 01 fecula 0 001 @ 14853947 n 0000 | excreta (especially of insects) -14855512 27 n 01 wormcast 0 001 @ 14853947 n 0000 | cylindrical mass of earth voided by a burrowing earthworm or lugworm -14855635 27 n 01 human_waste 0 001 @ 14853947 n 0000 | the body wastes of human beings -14855724 27 n 06 urine 0 piss 0 pee 0 piddle 0 weewee 0 water 1 006 @ 14853947 n 0000 + 00072012 v 0403 + 00072012 v 0307 + 00072012 v 0206 + 03008207 a 0101 + 00072012 v 0102 | liquid excretory product; "there was blood in his urine"; "the child had to make water" -14855992 27 n 04 vomit 0 vomitus 0 puke 0 barf 0 003 @ 14853947 n 0000 + 00076400 v 030b + 00076400 v 0101 | the matter ejected in vomiting -14856134 27 n 01 detritus 2 001 @ 14580897 n 0000 | loose material (stone fragments and silt etc) that is worn away from rocks -14856263 27 n 04 waste 0 waste_material 0 waste_matter 0 waste_product 0 014 @ 14580897 n 0000 + 02223479 v 0101 + 02067889 v 0101 ~ 14583670 n 0000 ~ 14837364 n 0000 ~ 14853947 n 0000 ~ 14856752 n 0000 ~ 14856893 n 0000 ~ 14857021 n 0000 ~ 14857151 n 0000 ~ 14857278 n 0000 ~ 14857497 n 0000 ~ 14858451 n 0000 ~ 14858637 n 0000 | any materials unused and rejected as worthless or unwanted; "they collect the waste once a week"; "much of the waste material is carried off in the sewers" -14856752 27 n 03 filth 0 crud 0 skank 0 002 @ 14856263 n 0000 + 01625893 a 030b | any substance considered disgustingly foul or unpleasant -14856893 27 n 02 sewage 0 sewerage 0 002 @ 14856263 n 0000 %s 14857021 n 0000 | waste matter carried away in sewers or drains -14857021 27 n 03 effluent 0 wastewater 0 sewer_water 0 002 @ 14856263 n 0000 #s 14856893 n 0000 | water mixed with waste matter -14857151 27 n 04 garbage 0 refuse 0 food_waste 0 scraps 0 001 @ 14856263 n 0000 | food that is discarded (as from a kitchen) -14857278 27 n 01 pollutant 0 007 @ 14856263 n 0000 + 00492706 v 0101 ~ 14599938 n 0000 ~ 14603497 n 0000 ~ 14620257 n 0000 ~ 14766890 n 0000 ~ 15064053 n 0000 | waste matter that contaminates the water or air or soil -14857497 27 n 03 rubbish 0 trash 0 scrap 0 008 @ 14856263 n 0000 + 02223238 v 0303 + 02503656 a 0202 + 02223238 v 0201 + 02503656 a 0101 ~ 14857737 n 0000 ~ 14857897 n 0000 ~ 14858292 n 0000 | worthless material that is to be disposed of -14857737 27 n 01 scrap_metal 0 002 @ 14857497 n 0000 ~ 15020974 n 0000 | discarded metal suitable for reprocessing; "he finally sold the car for scrap metal" -14857897 27 n 05 debris 0 dust 1 junk 0 rubble 0 detritus 1 004 @ 14857497 n 0000 + 02223238 v 0302 + 01252216 v 0201 ~ 14858099 n 0000 | the remains of something that has been destroyed or broken up -14858099 27 n 01 slack 0 002 @ 14857897 n 0000 + 00214624 v 0101 | dust consisting of a mixture of small coal fragments and coal dust and dirt that sifts out when coal is passed over a sieve -14858292 27 n 01 litter 0 003 @ 14857497 n 0000 + 01378421 v 0101 + 02735142 v 0101 | rubbish carelessly dropped or left about (especially in public places) -14858451 27 n 01 slop 1 001 @ 14856263 n 0000 | (usually plural) waste water from a kitchen or bathroom or chamber pot that has to be emptied by hand; "she carried out the sink slops" -14858637 27 n 02 toxic_waste 0 toxic_industrial_waste 0 001 @ 14856263 n 0000 | poisonous waste materials; can cause injury (especially by chemical means) -14858794 27 n 01 extravasation 0 002 @ 14940100 n 0000 + 01375909 v 0101 | an extravasated liquid (blood or lymph or urine); the product of extravasation -14858950 27 n 02 fallout 0 radioactive_dust 0 001 @ 14839846 n 0000 | the radioactive particles that settle to the ground after a nuclear explosion -14859100 27 n 02 fencing_material 0 fencing 0 001 @ 14786479 n 0000 | material for building fences -14859201 27 n 01 ferrite 0 003 @ 15051705 n 0000 #s 14977845 n 0000 %s 14720692 n 0000 | a solid solution in which alpha iron is the solvent -14859344 27 n 03 fertilizer 0 fertiliser 0 plant_food 0 007 @ 14806838 n 0000 + 00504270 v 0101 + 00502757 v 0101 ~ 14859838 n 0000 %s 14860603 n 0000 %s 14861355 n 0000 %s 15014012 n 0000 | any substance such as manure or a mixture of nitrates used to make soil more fertile -14859622 27 n 02 gallamine 0 Flaxedil 0 003 @ 14961512 n 0000 @ 03800001 n 0000 ;u 06845599 n 0201 | neuromuscular blocking agent (trade name Flaxedil) used as a muscle relaxant in the administration of anesthesia -14859838 27 n 03 organic 0 organic_fertilizer 0 organic_fertiliser 0 007 @ 14859344 n 0000 + 01679459 a 0101 ~ 14782833 n 0000 ~ 14782919 n 0000 ~ 14863521 n 0000 ~ 14867545 n 0000 ~ 14892289 n 0000 | a fertilizer that is derived from animal or vegetable matter -14860102 27 n 01 flux 0 003 @ 14806838 n 0000 + 00394813 v 0102 ~ 14860280 n 0000 | a substance added to molten metals to bond with impurities that can then be readily removed -14860280 27 n 01 soldering_flux 0 001 @ 14860102 n 0000 | flux applied to surfaces that are to be joined by soldering; flux cleans the surfaces and results in a better bond -14860455 27 n 01 foryml 0 002 @ 14594708 n 0000 ;c 06084469 n 0000 | (chemistry) the negative univalent acyl radical CHO that occurs in aldehydes -14860603 27 n 02 sodium_nitrate 0 soda_niter 0 002 @ 15015501 n 0000 #s 14859344 n 0000 | (NaNO3) used especially as a fertilizer and explosive -14860749 27 n 01 pearl_ash 0 001 @ 14861716 n 0000 | an impure form of potassium carbonate -14860842 27 n 03 potassium_bicarbonate 0 potassium_acid_carbonate 0 potassium_hydrogen_carbonate 0 001 @ 14775729 n 0000 | a crystalline salt (KHCO3) that is used in baking powder and as an antacid -14861042 27 n 08 potassium_chloride 0 potassium_muriate 0 potash_muriate 0 K-Dur_20 0 Kaochlor 0 K-lor 0 Klorvess 0 K-lyte 0 002 @ 15016852 n 0000 ;u 06845599 n 0000 | salt of potassium (KCl) (trade names K-Dur 20, Kaochlor and K-lor and Klorvess and K-lyte); taken in tablet form to treat potassium deficiency -14861355 27 n 05 potassium_nitrate 0 saltpeter 0 saltpetre 0 niter 0 nitre 0 004 @ 15015501 n 0000 #s 14859344 n 0000 + 03091996 a 0502 + 03091996 a 0503 | (KNO3) used especially as a fertilizer and explosive -14861566 27 n 01 potassium_bromide 0 002 @ 15010703 n 0000 @ 15004874 n 0000 | a white crystalline salt (KBr) used as a sedative and in photography -14861716 27 n 01 potassium_carbonate 0 002 @ 14798450 n 0000 ~ 14860749 n 0000 | a white salt (K2CO3) that is basic in solution; used to make glass and cleansing agents -14861887 27 n 01 potassium_chlorate 0 001 @ 15010703 n 0000 | a white salt (KClO3) used in matches, fireworks, and explosives; also used as a disinfectant and bleaching agent -14862064 27 n 01 potassium_cyanide 0 001 @ 14826767 n 0000 | a poisonous salt (KCN) used in electroplating and in photography -14862192 27 n 01 potassium_dichromate 0 001 @ 15010703 n 0000 | an orange-red salt used in making dyes and in photography -14862316 27 n 01 potassium_iodide 0 001 @ 14922371 n 0000 | a crystalline salt in organic synthesis and in making photographic emulsions and in iodized table salt -14862481 27 n 02 producer_gas 0 air_gas 0 001 @ 14877585 n 0000 | a gas made of carbon monoxide and hydrogen and nitrogen; made by passing air over hot coke -14862640 27 n 02 proprionamide 0 propanamide 0 001 @ 14724264 n 0000 | the amide of propionic acid (C2H5CONH2) -14862753 27 n 02 propionic_acid 0 propanoic_acid 0 008 @ 14739360 n 0000 #s 03328392 n 0000 #s 03371532 n 0000 #s 03556281 n 0000 #s 03612134 n 0000 #s 03807895 n 0000 #s 03808144 n 0000 #s 03867515 n 0000 | a liquid fatty acid found in milk and sweat and in fuel distillates -14863031 27 n 02 pudding_stone 0 conglomerate 0 002 @ 14696793 n 0000 + 01330114 a 0201 | a composite rock made up of particles of varying size -14863177 27 n 01 putrescine 0 001 @ 14999411 n 0000 | a colorless crystalline ptomaine with a foul odor that is produced in decaying animal matter -14863326 27 n 02 pyroligneous_acid 0 wood_vinegar 0 001 @ 14940386 n 0000 | a red-brown liquid formed in distillation of wood which contains acetic acid, methanol, acetone, wood oils, and tars -14863521 27 n 01 manure 0 007 @ 14859838 n 0000 + 02083087 v 0101 ~ 14863788 n 0000 ~ 14863883 n 0000 ~ 14863970 n 0000 ~ 14864079 n 0000 ~ 14864170 n 0000 | any animal or plant material used to fertilize land especially animal excreta usually with litter material -14863788 27 n 01 chicken_manure 0 001 @ 14863521 n 0000 | chicken excreta used as fertilizer -14863883 27 n 01 cow_manure 0 001 @ 14863521 n 0000 | cow excreta used as fertilizer -14863970 27 n 01 green_manure 0 001 @ 14863521 n 0000 | a growing crop that is plowed under to enrich soil -14864079 27 n 01 horse_manure 0 001 @ 14863521 n 0000 | horse excreta used as fertilizer -14864170 27 n 01 night_soil 0 001 @ 14863521 n 0000 | human excreta used as fertilizer -14864259 27 n 01 facial_tissue 0 001 @ 15074962 n 0000 | tissue paper suitable for use on the face -14864360 27 n 01 fat 0 011 @ 14938907 n 0000 #s 05456622 n 0000 + 00991838 a 0102 ~ 07672135 n 0000 ~ 14787520 n 0000 ~ 14864731 n 0000 ~ 14864825 n 0000 %p 14885088 n 0000 %s 14885369 n 0000 ~ 14957893 n 0000 ~ 14994824 n 0000 | a soft greasy substance occurring in organic tissue and consisting of a mixture of lipids (mostly triglycerides); "pizza has too much fat" -14864731 27 n 01 cocoa_butter 0 001 @ 14864360 n 0000 | a yellow-white fat from cocoa beans -14864825 27 n 02 leaf_fat 0 leaf_lard 0 001 @ 14864360 n 0000 | fat lining the abdomen and kidneys in hogs which is used to make lard -14864961 27 n 02 feldspar 0 felspar 0 005 @ 15049096 n 0000 %s 14654541 n 0000 ~ 14865221 n 0000 ~ 14865316 n 0000 ~ 14954822 n 0000 | any of a group of hard crystalline minerals that consist of aluminum silicates of potassium or sodium or calcium or barium -14865221 27 n 01 orthoclase 0 001 @ 14864961 n 0000 | a white or colored monoclinic feldspar -14865316 27 n 02 plagioclase 0 oligoclase 0 006 @ 14864961 n 0000 #s 14773022 n 0000 #s 14726823 n 0000 + 02778332 a 0101 ~ 14865533 n 0000 ~ 14865667 n 0000 | any of a series of triclinic feldspars that form rocks -14865533 27 n 02 albite 0 white_feldspar 0 002 @ 14865316 n 0000 + 02610260 a 0101 | a widely distributed feldspar that forms rocks -14865667 27 n 01 anorthite 0 002 @ 14865316 n 0000 + 02627510 a 0101 | rare plagioclastic feldspar occurring in many igneous rocks -14865800 27 n 01 ferric_oxide 0 004 @ 14971519 n 0000 #s 13552270 n 0000 #s 15026963 n 0000 ~ 14889479 n 0000 | a red oxide of iron -14865934 27 n 01 ferricyanic_acid 0 001 @ 14607521 n 0000 | a brown unstable acid formed from ferricyanide -14866043 27 n 01 ferricyanide 0 001 @ 15010703 n 0000 | salt of ferricyanic acid obtained by oxidation of a ferrocyanide -14866166 27 n 01 ferritin 0 001 @ 14728724 n 0000 | a protein containing 20% iron that is found in the intestines and liver and spleen; it is one of the chief forms in which iron is stored in the body -14866369 27 n 01 ferrocerium 0 001 @ 15000149 n 0000 | a pyrophoric alloy of iron with cerium; used for lighter flints -14866490 27 n 01 ferrocyanic_acid 0 001 @ 14607521 n 0000 | a white unstable acid formed from ferrocyanide salts -14866605 27 n 01 ferrocyanide 0 002 @ 15010703 n 0000 ~ 14995061 n 0000 | salt of ferrocyanic acid usually obtained by a reaction of a cyanide with iron sulphate -14866769 27 n 02 fiberglass 0 fibreglass 0 001 @ 14825062 n 0000 | a covering material made of glass fibers in resins -14866889 27 n 02 fiber 0 fibre 0 020 @ 14580897 n 0000 + 02446380 a 0102 ~ 01955318 n 0000 ~ 02902535 n 0000 ~ 03852031 n 0000 ~ 05464104 n 0000 ~ 05605498 n 0000 ~ 12167075 n 0000 ~ 12478131 n 0000 ~ 12585967 n 0000 ~ 12588054 n 0000 ~ 12595305 n 0000 %s 14793921 n 0000 ~ 14867365 n 0000 ~ 14867858 n 0000 ~ 14938467 n 0000 ~ 14959058 n 0000 ~ 14959234 n 0000 ~ 14966334 n 0000 ~ 15002959 n 0000 | a slender and greatly elongated substance capable of being spun into yarn -14867365 27 n 01 string 0 001 @ 14866889 n 0000 | a tough piece of fiber in vegetables, meat, or other food (especially the tough fibers connecting the two halves of a bean pod) -14867545 27 n 01 fish_meal 0 002 @ 14859838 n 0000 @ 07800091 n 0000 | ground dried fish used as fertilizer and as feed for domestic livestock -14867690 27 n 01 buntal 0 002 @ 14959644 n 0000 #p 12589841 n 0000 | fine white Philippine fiber from stalks of unopened leaves of talipot palms; used in making hats -14867858 27 n 03 fibril 0 filament 0 strand 0 009 @ 14866889 n 0000 + 02413851 a 0201 ~ 01898185 n 0000 ~ 03059806 n 0000 ~ 05444175 n 0000 ~ 05459953 n 0000 ~ 12974826 n 0000 ~ 13022538 n 0000 ~ 13092836 n 0000 | a very slender natural or synthetic fiber -14868116 27 n 01 fieldstone 0 001 @ 14696793 n 0000 | stone that occurs naturally in fields; often used as building material -14868243 27 n 02 filling 0 fill 0 005 @ 14580897 n 0000 + 00261533 v 0201 + 00452512 v 0201 + 00451838 v 0201 ~ 14804641 n 0000 | any material that fills a space or container; "there was not enough fill for the trench" -14868464 27 n 01 filter_paper 0 001 @ 14974264 n 0000 | a porous unsized paper used for filtering -14868564 27 n 01 filtrate 0 005 @ 14997699 n 0000 @ 14939900 n 0000 + 01458664 v 0101 + 01458664 v 0102 ~ 14997888 n 0000 | the product of filtration; a gas or liquid that has been passed through a filter -14868771 27 n 01 firelighter 0 001 @ 15101361 n 0000 | (a piece of) a substance that burns easily and can be used to start a coal or coke fire -14868916 27 n 02 fire_opal 0 girasol 0 001 @ 14688234 n 0000 | an opal with flaming orange and yellow and red colors -14869035 27 n 02 fish-liver_oil 0 fish_oil 0 002 @ 14755077 n 0000 ~ 15081595 n 0000 | a fatty oil obtained from the livers of various fish -14869177 27 n 01 fixative 0 001 @ 14869327 n 0000 | a compound (such as ethanol or formaldehyde) that fixes tissues and cells for microscopic study -14869327 27 n 02 fixing_agent 0 fixer 0 003 @ 14818238 n 0000 ~ 14869177 n 0000 ~ 14913860 n 0000 | a chemical compound that sets or fixes something (as a dye or a photographic image) -14869513 27 n 01 flavone 0 001 @ 14818238 n 0000 | a colorless crystalline compound that is part of a number of white or yellow plant pigments -14869658 27 n 01 flavonoid 0 002 @ 14983143 n 0000 @ 14989820 n 0000 | any of a large class of plant pigments having a chemical structure based on or similar to flavone -14869829 27 n 01 flax 0 002 @ 14959644 n 0000 #s 03672521 n 0000 | fiber of the flax plant that is made into thread and woven into linen fabric -14869975 27 n 01 flyspeck 0 001 @ 14585519 n 0000 | a tiny dark speck made by the excrement of a fly -14870078 27 n 03 cotton 1 cotton_fiber 0 cotton_wool 1 007 @ 14959644 n 0000 #s 03873064 n 0000 #s 03115180 n 0000 + 01153595 a 0101 ~ 14598251 n 0000 ~ 14870325 n 0000 ~ 14870424 n 0000 | soft silky fibers from cotton plants in their raw state -14870325 27 n 01 long-staple_cotton 0 001 @ 14870078 n 0000 | cotton with relatively long fibers -14870424 27 n 01 short-staple_cotton 0 001 @ 14870078 n 0000 | cotton with relatively short fibers -14870525 27 n 01 chert 0 003 @ 15041277 n 0000 + 02693701 a 0101 ~ 14870665 n 0000 | variety of silica containing microcrystalline quartz -14870665 27 n 01 taconite 0 002 @ 14870525 n 0000 @ 14923458 n 0000 | a variety of chert containing magnetite and hematite; mined as a low-grade iron ore -14870821 27 n 01 firestone 1 001 @ 14871078 n 0000 | a piece of flint that is struck to light a fire -14870924 27 n 01 flavin 0 002 @ 14926294 n 0000 #s 15091473 n 0000 | a ketone that forms the nucleus of certain natural yellow pigments like riboflavin -14871078 27 n 01 flint 0 005 @ 15041277 n 0000 + 02729457 a 0101 ~ 03469346 n 0000 ~ 14870821 n 0000 ~ 14871268 n 0000 | a hard kind of stone; a form of silica more opaque than chalcedony -14871268 27 n 01 flintstone 0 001 @ 14871078 n 0000 | pebbles of flint used in masonry construction -14871370 27 n 01 flooring 0 001 @ 14786479 n 0000 | building material used in laying floors -14871464 27 n 01 floor_wax 0 001 @ 15094294 n 0000 | a preparation containing wax and used to polish and preserve the finish of floors -14871601 27 n 01 fluoride 0 007 @ 14904359 n 0000 + 00186161 v 0101 + 00186161 v 0102 ~ 14784111 n 0000 ~ 14912935 n 0000 ~ 15018572 n 0000 ~ 15064327 n 0000 | a salt of hydrofluoric acid -14871791 27 n 01 fluoroboric_acid 0 001 @ 14607521 n 0000 | an acid of fluorine and boron -14871883 27 n 01 fluoroboride 0 001 @ 15010703 n 0000 | a salt of fluoroboric acid -14871968 27 n 01 fluorocarbon 0 006 @ 14904528 n 0000 ;c 06084469 n 0000 ~ 14603497 n 0000 ~ 14912556 n 0000 ~ 14979132 n 0000 ~ 15068891 n 0000 | a halocarbon in which some hydrogen atoms have been replaced by fluorine; used in refrigerators and aerosols -14872226 27 n 01 fluorocarbon_plastic 0 001 @ 14592610 n 0000 | a plastic made with fluorocarbon -14872325 27 n 01 fluosilicate 0 001 @ 15010703 n 0000 | salt of fluosilicic acid -14872408 27 n 02 fluosilicic_acid 0 hydrofluosilicic_acid 0 001 @ 14607521 n 0000 | an unstable poisonous corrosive acid known primarily in the form of its salts -14872572 27 n 01 flypaper 0 001 @ 14974264 n 0000 | paper that is poisoned or coated with a sticky substance to kill flies -14872697 27 n 01 foam 0 003 @ 14580897 n 0000 ~ 14595933 n 0000 ~ 14872875 n 0000 | a lightweight material in cellular form; made by introducing gas bubbles during manufacture -14872875 27 n 01 foam_rubber 0 002 @ 15006258 n 0000 @ 14872697 n 0000 | spongy rubber; made by introducing air bubbles before vulcanization and used for cushioning or upholstery -14873056 27 n 01 fomentation 0 002 @ 00020090 n 0000 #s 03082450 n 0000 | a substance used as a warm moist medicinal compress or poultice -14873196 27 n 02 formaldehyde 0 methanal 0 002 @ 14584765 n 0000 @ 14877585 n 0000 | a colorless poisonous gas; made by the oxidation of methanol -14873344 27 n 01 formic_acid 0 001 @ 14607521 n 0000 | a colorless pungent fuming vesicatory liquid acid HCOOH found naturally in ants and many plants or made catalytically from carbon monoxide and steam; used in finishing textiles and paper and in the manufacture of insecticides and fumigants -14873641 27 n 02 formulation 0 preparation 0 008 @ 14818238 n 0000 + 01633173 v 0101 ~ 03040587 n 0000 ~ 14885857 n 0000 ~ 14960606 n 0000 ~ 14996020 n 0000 ~ 15018889 n 0000 ~ 15043399 n 0000 | a substance prepared according to a formula; "the physician prescribed a commercial preparation of the medicine" -14873951 27 n 04 frankincense 0 olibanum 0 gum_olibanum 0 thus 0 002 @ 14898470 n 0000 + 02126686 v 0403 | an aromatic gum resin obtained from various Arabian or East African trees; formerly valued for worship and for embalming and fumigation -14874196 27 n 02 free_radical 0 radical 2 001 @ 14619225 n 0000 | an atom or group of atoms with at least one unpaired electron; in the body it is usually an oxygen molecule that has lost an electron and will stabilize itself by stealing an electron from a nearby molecule; "in the body free radicals are high-energy particles that ricochet wildly and damage cells" -14874564 27 n 01 freezing_mixture 0 001 @ 14586258 n 0000 | a mixture of substances (usually salt and ice) to obtain a temperature below the freezing point of water -14874731 27 n 01 Freon 0 002 @ 14603497 n 0000 ;u 06851742 n 0000 | any one or more chlorofluorocarbons (or related compounds) that are used as an aerosol propellant, organic solvent, or refrigerant -14874932 27 n 04 fructose 0 fruit_sugar 0 levulose 0 laevulose 0 001 @ 14927587 n 0000 | a simple sugar found in honey and in many ripe fruits -14875077 27 n 01 fuel 0 025 @ 00020090 n 0000 + 02237024 v 0101 + 02356420 v 0101 + 02338386 v 0101 ~ 14684918 n 0000 ~ 14685017 n 0000 ~ 14685296 n 0000 ~ 14685475 n 0000 ~ 14685768 n 0000 ~ 14685881 n 0000 ~ 14686186 n 0000 ~ 14686352 n 0000 ~ 14686585 n 0000 ~ 14686723 n 0000 ~ 14686913 n 0000 ~ 14687513 n 0000 ~ 14687633 n 0000 ~ 14687818 n 0000 ~ 14688089 n 0000 ~ 14691686 n 0000 ~ 14695184 n 0000 ~ 14816745 n 0000 ~ 14878650 n 0000 ~ 15100644 n 0000 ~ 15101361 n 0000 | a substance that can be consumed to produce energy; "more fuel is needed during the winter months"; "they developed alternative fuels for aircraft" -14875707 27 n 01 fuller's_earth 0 001 @ 14844693 n 0000 | an absorbent soil resembling clay; used in fulling (shrinking and thickening) woolen cloth and as an adsorbent -14875878 27 n 01 fulvic_acid 0 001 @ 14909319 n 0000 | a yellow to yellow-brown humic substance that is soluble in water under all pH conditions; "they measured the fluvial fulvic acid" -14876066 27 n 01 fumaric_acid 0 001 @ 14607521 n 0000 | a colorless crystalline acid with a fruity taste; used in making polyester resins -14876206 27 n 01 fumigant 0 002 @ 14806838 n 0000 + 02127100 v 0101 | a chemical substance used in fumigation -14876318 27 n 03 furan 0 furane 0 furfuran 0 002 @ 14727670 n 0000 ~ 14963634 n 0000 | a colorless toxic flammable liquid used in the synthesis of nylon -14876473 27 n 02 furfural 0 furfuraldehyde 0 002 @ 14584765 n 0000 @ 14991927 n 0000 | a liquid aldehyde with a penetrating odor; made from plant hulls and corncobs; used in making furan and as a solvent -14876679 27 n 01 galactagogue 0 001 @ 14778436 n 0000 | agent that induces milk secretion -14876771 27 n 02 galactose 0 brain_sugar 0 001 @ 15062778 n 0000 | a simple sugar found in lactose -14876872 27 n 02 galbanum 0 gum_albanum 0 001 @ 14898470 n 0000 | a bitter aromatic gum resin that resembles asafetida -14876993 27 n 01 gallic_acid 0 001 @ 14607521 n 0000 | a colorless crystalline acid obtained from tannin -14877100 27 n 01 galvanized_iron 0 002 @ 14642417 n 0000 #s 03112431 n 0000 | iron that is coated with zinc to protect it from rust -14877234 27 n 02 greenhouse_gas 0 greenhouse_emission 0 006 @ 14877585 n 0000 ~ 14603497 n 0000 ~ 14796969 n 0000 ~ 14912556 n 0000 ~ 14979132 n 0000 ~ 15064327 n 0000 | a gas that contributes to the greenhouse effect by absorbing infrared radiation -14877486 27 n 01 carbuncle 0 001 @ 14676042 n 0000 | deep-red cabochon garnet cut without facets -14877585 27 n 01 gas 0 042 @ 14939445 n 0000 + 02262542 a 0101 + 00442267 v 0101 ~ 09210604 n 0000 ~ 14624369 n 0000 ~ 14634591 n 0000 ~ 14637507 n 0000 ~ 14640434 n 0000 ~ 14647235 n 0000 ~ 14648100 n 0000 ~ 14685017 n 0000 ~ 14691686 n 0000 ~ 14726642 n 0000 ~ 14726998 n 0000 ~ 14756200 n 0000 ~ 14767087 n 0000 ~ 14767202 n 0000 ~ 14781872 n 0000 ~ 14787093 n 0000 ~ 14827017 n 0000 ~ 14837364 n 0000 ~ 14841267 n 0000 ~ 14842226 n 0000 ~ 14851157 n 0000 ~ 14862481 n 0000 ~ 14873196 n 0000 ~ 14877234 n 0000 ~ 14878483 n 0000 ~ 14878650 n 0000 ~ 14916512 n 0000 ~ 14919156 n 0000 ~ 14951229 n 0000 ~ 14972807 n 0000 ~ 14981847 n 0000 ~ 14982129 n 0000 ~ 14993378 n 0000 ~ 14998826 n 0000 ~ 15035975 n 0000 ~ 15038426 n 0000 ~ 15062284 n 0000 ~ 15064053 n 0000 ~ 15067877 n 0000 | a fluid in the gaseous state having neither independent shape nor volume and being able to expand indefinitely -14878483 27 n 02 liquefied_petroleum_gas 0 bottled_gas 0 002 @ 14877585 n 0000 @ 14911057 n 0000 | hydrocarbon gases, usually propane or butane, kept under pressure -14878650 27 n 01 water_gas 0 002 @ 14875077 n 0000 @ 14877585 n 0000 | a mixture of hydrogen and carbon monoxide with small amounts of other gases; made by blowing steam over hot coke or coal -14878844 27 n 02 ghatti 0 ghatti_gum 0 001 @ 14898470 n 0000 | an Indian gum from the dhawa tree; used as a substitute for gum arabic -14878980 27 n 02 kraft 0 kraft_paper 0 001 @ 15105122 n 0000 | strong wrapping paper made from pulp processed with a sulfur solution -14879115 27 n 01 butcher_paper 0 001 @ 15105122 n 0000 | a strong wrapping paper that resists penetration by blood or meat fluids -14879247 27 n 01 gift_wrap 0 001 @ 15105122 n 0000 | attractive wrapping paper suitable for wrapping gifts -14879356 27 n 01 gilding_metal 0 001 @ 14716997 n 0000 | a brass that is rich in copper; used to make articles that were to be gilded -14879492 27 n 01 gilgai_soil 0 002 @ 14844693 n 0000 ;r 08831004 n 0000 | soil in the melon holes of Australia -14879605 27 n 01 natural_glass 0 003 @ 14881303 n 0000 ~ 14879750 n 0000 ~ 14880690 n 0000 | magma of any composition that cooled very rapidly -14879750 27 n 05 quartz_glass 0 quartz 1 vitreous_silica 0 lechatelierite 0 crystal 1 006 @ 14879605 n 0000 + 00445940 v 0501 + 00443670 v 0501 + 00445940 v 0503 + 00443670 v 0502 %s 15041277 n 0000 | colorless glass made of almost pure silica -14879996 27 n 02 opal_glass 0 milk_glass 0 001 @ 14881303 n 0000 | a milky white translucent or opaque glass -14880107 27 n 01 optical_glass 0 003 @ 14881303 n 0000 ~ 14880273 n 0000 ~ 14880425 n 0000 | clear homogeneous glass of known refractive index; used to make lenses -14880273 27 n 03 optical_crown 0 crown_glass 0 optical_crown_glass 0 001 @ 14880107 n 0000 | optical glass of low dispersion and low refractive index -14880425 27 n 02 optical_flint 0 flint_glass 0 001 @ 14880107 n 0000 | optical glass of high dispersion and high refractive index -14880557 27 n 01 crown_glass 2 001 @ 14881303 n 0000 | a glass blown into a globe which is later flattened and spun to form a disk -14880690 27 n 01 tektite 0 001 @ 14879605 n 0000 | thought to derive from meteorites -14880777 27 n 01 volcanic_glass 0 004 @ 14933314 n 0000 ~ 14880960 n 0000 ~ 14881143 n 0000 ~ 14881224 n 0000 | a kind of natural glass produced when molten lava cools very rapidly -14880960 27 n 01 obsidian 0 001 @ 14880777 n 0000 | acid or granitic glass formed by the rapid cooling of lava without crystallization; usually dark, but transparent in thin pieces -14881143 27 n 01 pitchstone 0 001 @ 14880777 n 0000 | dark acid granitic glass -14881224 27 n 01 tachylite 0 001 @ 14880777 n 0000 | a basic or basalt glass -14881303 27 n 01 glass 0 020 @ 15046900 n 0000 #s 03439064 n 0000 #p 03438257 n 0000 + 02237761 a 0101 + 01587575 v 0101 + 02335363 v 0101 #s 03961070 n 0000 ~ 14879605 n 0000 ~ 14879996 n 0000 ~ 14880107 n 0000 ~ 14880557 n 0000 ~ 14881759 n 0000 ~ 14881861 n 0000 ~ 14882000 n 0000 ~ 14882117 n 0000 ~ 14882370 n 0000 ~ 14882578 n 0000 ~ 14882793 n 0000 ~ 14883098 n 0000 ~ 14999614 n 0000 | a brittle transparent solid with irregular atomic structure -14881759 27 n 01 soft_glass 0 001 @ 14881303 n 0000 | glass having a relatively low softening point -14881861 27 n 01 ground_glass 0 001 @ 14881303 n 0000 | glass that diffuses light due to a rough surface produced by abrasion or etching -14882000 27 n 01 ground_glass 1 001 @ 14881303 n 0000 | particulate glass made by grinding and used as an abrasive -14882117 27 n 01 lead_glass 0 002 @ 14881303 n 0000 ~ 14882248 n 0000 | glass containing lead oxide; has a high refractive index -14882248 27 n 01 paste 2 001 @ 14882117 n 0000 | a hard, brilliant lead glass that is used in making artificial jewelry -14882370 27 n 03 safety_glass 0 laminated_glass 0 shatterproof_glass 0 001 @ 14881303 n 0000 | glass made with plates of plastic or resin or other material between two sheets of glass to prevent shattering -14882578 27 n 03 soluble_glass 0 water_glass 0 sodium_silicate 0 001 @ 14881303 n 0000 | a viscous glass consisting of sodium silicate in solution; used as a cement or as a protective coating and to preserve eggs -14882793 27 n 01 stained_glass 0 002 @ 14881303 n 0000 ~ 14882935 n 0000 | glass that has been colored in some way; used for church windows -14882935 27 n 01 Tiffany_glass 0 001 @ 14882793 n 0000 | a kind of opalescent colored glass that was used in the early 1900s for stained-glass windows and lamps -14883098 27 n 01 wire_glass 0 001 @ 14881303 n 0000 | a glass that contains a layer of wire netting in it -14883206 27 n 01 crystal 0 010 @ 15046900 n 0000 + 00445940 v 0101 + 00443670 v 0101 + 00445940 v 0103 + 00443670 v 0102 ~ 11509066 n 0000 ~ 11509377 n 0000 ~ 14699752 n 0000 ~ 14883517 n 0000 ~ 14915184 n 0000 | a solid formed by the solidification of a chemical and having a highly regular atomic structure -14883517 27 n 01 twins 0 002 @ 14883206 n 0000 ;c 06121113 n 0000 | (mineralogy) two interwoven crystals that are mirror images on each other -14883661 27 n 01 enamine 0 001 @ 14739004 n 0000 | an amine containing the double bond linkage -C=C-N- -14883766 27 n 02 enantiomorph 0 enantiomer 0 001 @ 14818238 n 0000 | either one of a pair of compounds (crystals or molecules) that are mirror images on each other but are not identical -14883954 27 n 01 exotherm 0 002 @ 14818238 n 0000 + 00872906 a 0101 | a compound that gives off heat during its formation and absorbs heat during its decomposition -14884120 27 n 01 glucose 0 005 @ 14710501 n 0000 ~ 14752323 n 0000 ~ 14823690 n 0000 ~ 14884336 n 0000 ~ 14884481 n 0000 | a monosaccharide sugar that has several forms; an important source of physiological energy -14884336 27 n 03 dextrose 0 dextroglucose 0 grape_sugar 0 001 @ 14884120 n 0000 | an isomer of glucose that is found in honey and sweet fruits -14884481 27 n 02 blood_sugar 0 blood_glucose 0 001 @ 14884120 n 0000 | glucose in the bloodstream -14884581 27 n 01 glutamate 0 001 @ 15010703 n 0000 | a salt or ester of glutamic acid -14884669 27 n 02 glutamic_oxalacetic_transaminase 0 glutamic_oxaloacetic_transaminase 0 001 @ 15077338 n 0000 | an enzyme involved in transamination -14884820 27 n 02 glyceraldehyde 0 glyceric_aldehyde 0 001 @ 14584765 n 0000 | a sweet crystalline aldehyde formed by the breakdown of sugars -14884963 27 n 01 glyceric_acid 0 001 @ 14607521 n 0000 | a syrupy acid obtained by oxidation of glycerol or glyceraldehyde -14885088 27 n 02 glyceride 0 acylglycerol 0 004 @ 14887026 n 0000 @ 14755077 n 0000 #p 14864360 n 0000 ~ 14885369 n 0000 | an ester of glycerol and fatty acids that occurs naturally as fats and fatty oils; "fresh fats contain glycerides of fatty acids and very little free acid" -14885369 27 n 01 triglyceride 0 003 @ 14938907 n 0000 @ 14885088 n 0000 #s 14864360 n 0000 | glyceride occurring naturally in animal and vegetable tissues; it consists of three individual fatty acids bound together in a single large molecule; an important energy source forming much of the fat stored by the body -14885684 27 n 03 glycerol 0 glycerin 0 glycerine 0 002 @ 14708720 n 0000 + 01987781 v 0101 | a sweet syrupy trihydroxy alcohol obtained by saponification of fats and oils -14885857 27 n 01 glycerinated_gelatin 0 001 @ 14873641 n 0000 | a gelatinous preparation made from gelatin and glycerin and water; used as a base for ointments and suppositories -14886037 27 n 01 glycerin_jelly 0 001 @ 14887026 n 0000 | a mixture of glycerin and gelatin that is used in histology for mounting specimens -14886180 27 n 02 glycerite 0 glycerole 0 001 @ 14887026 n 0000 | a medicine made by mixing a substance in glycerin -14886297 27 n 02 glycerogelatin 0 glycerogel 0 001 @ 14887026 n 0000 | a medicated skin preparation made from glycerin and glycerinated gelatin -14886443 27 n 01 glyceryl 0 001 @ 14621446 n 0000 | a trivalent radical derived from glycerol by removing the three hydroxyl radicals -14886579 27 n 06 nitroglycerin 0 nitroglycerine 0 trinitroglycerin 0 glyceryl_trinitrate 0 Nitrospan 0 Nitrostat 0 008 @ 15015501 n 0000 @ 04522904 n 0000 #s 02850218 n 0000 #s 03107152 n 0000 #s 03260293 n 0000 #s 03826762 n 0000 ;u 06845599 n 0601 ;u 06845599 n 0501 | a heavy yellow poisonous oily explosive liquid obtained by nitrating glycerol; used in making explosives and medically as a vasodilator (trade names Nitrospan and Nitrostat) -14887026 27 n 01 glyceryl_ester 0 012 @ 14850483 n 0000 ~ 14788485 n 0000 ~ 14885088 n 0000 ~ 14886037 n 0000 ~ 14886180 n 0000 ~ 14886297 n 0000 ~ 14973492 n 0000 ~ 15057103 n 0000 ~ 15079445 n 0000 ~ 15079656 n 0000 ~ 15080055 n 0000 ~ 15080942 n 0000 | an ester of glycerol -14887305 27 n 01 glycoside 0 004 @ 14727670 n 0000 ~ 14887801 n 0000 ~ 14964367 n 0000 ~ 15061674 n 0000 | a group of compounds derived from monosaccharides -14887464 27 n 01 amygdalin 0 002 @ 14887801 n 0000 ~ 14887633 n 0000 | a bitter cyanogenic glucoside extracted from the seeds of apricots and plums and bitter almonds -14887633 27 n 01 laetrile 0 001 @ 14887464 n 0000 | a substance derived from amygdalin; publicized as an antineoplastic drug although there is no supporting evidence -14887801 27 n 01 glucoside 0 003 @ 14887305 n 0000 ~ 14887464 n 0000 ~ 14887925 n 0000 | a glycoside derived from glucose -14887925 27 n 01 saponin 0 001 @ 14887801 n 0000 | any of various plant glucosides that form soapy lathers when mixed and agitated with water; used in detergents and foaming agents and emulsifiers -14888124 27 n 03 glycolic_acid 0 glycollic_acid 0 hydroxyacetic_acid 0 001 @ 14607521 n 0000 | a translucent crystalline compound found in sugar cane and sugar beets and unripe grapes -14888310 27 n 01 glycoprotein 0 007 @ 14731135 n 0000 ~ 14730955 n 0000 ~ 14850334 n 0000 ~ 14888529 n 0000 ~ 14888720 n 0000 ~ 14889074 n 0000 ~ 14956027 n 0000 | a conjugated protein having a carbohydrate component -14888529 27 n 02 cluster_of_differentiation_4 0 CD4 0 001 @ 14888310 n 0000 | a glycoprotein that is found primarily on the surface of helper T cells; "CD4 is a receptor for HIV in humans" -14888720 27 n 02 cluster_of_differentiation_8 0 CD8 0 001 @ 14888310 n 0000 | a membrane glycoprotein that is found primarily on the surface of cytotoxic T cells -14888884 27 n 02 hemoprotein 0 haemoprotein 0 004 @ 14731135 n 0000 ~ 15024240 n 0000 ~ 15024606 n 0000 ~ 15025571 n 0000 | a conjugated protein linked to a compound of iron and porphyrin -14889074 27 n 01 lectin 0 001 @ 14888310 n 0000 | any of several plant glycoproteins that act like specific antibodies but are not antibodies in that they are not evoked by an antigenic stimulus -14889271 27 n 01 gneiss 0 001 @ 14698698 n 0000 | a laminated metamorphic rock similar to granite -14889371 27 n 01 schist 0 001 @ 14698698 n 0000 | any metamorphic rock that can be split into thin layers -14889479 27 n 01 rust 0 007 @ 14865800 n 0000 + 02053094 a 0101 + 00382874 a 0102 + 00239614 v 0101 + 00274283 v 0103 + 00273963 v 0102 %s 14677314 n 0000 | a red or brown oxide coating on iron or steel caused by the action of oxygen and moisture -14889728 27 n 01 goitrogen 0 001 @ 14818238 n 0000 | any substance (such as thiouracil) that induces the formation of a goiter -14889857 27 n 01 goldstone 0 001 @ 15064560 n 0000 | aventurine spangled densely with fine gold-colored particles -14889973 27 n 02 gondang_wax 0 fig_wax 0 001 @ 15094294 n 0000 | a hard cream-colored wax obtained from a Javanese fig tree -14890099 27 n 01 goose_grease 0 001 @ 14755077 n 0000 | grease derived from geese -14890183 27 n 01 graph_paper 0 001 @ 14974264 n 0000 | paper that has lines to permit drawing graphs -14890286 27 n 01 granite 0 003 @ 14932303 n 0000 + 01151951 a 0101 %s 14654541 n 0000 | plutonic igneous rock having visibly crystalline texture; generally composed of feldspar and mica and quartz -14890485 27 n 02 granular_pearlite 0 globular_pearlite 0 001 @ 14977845 n 0000 | if steel or iron cool very slowly the cementite may occur in globules instead of in layers -14890659 27 n 04 lubricant 0 lubricator 0 lubricating_substance 0 lube 0 007 @ 00020090 n 0000 + 02751597 v 0201 + 01484982 v 0101 + 00219012 v 0101 + 02751597 v 0101 ~ 14838951 n 0000 ~ 14953441 n 0000 | a substance capable of reducing friction by making surfaces smooth or slippery -14890945 27 n 02 grease 0 lubricating_oil 0 004 @ 14966667 n 0000 + 00422168 a 0101 + 01269379 v 0101 ~ 14770146 n 0000 | a thick fatty oil (especially one used to lubricate machinery) -14891132 27 n 01 greaseproof_paper 0 001 @ 14974264 n 0000 | paper that is impermeable to oil or grease; used in cooking -14891255 27 n 01 Greek_fire 0 002 @ 14586258 n 0000 @ 04565375 n 0000 | a mixture used by Byzantine Greeks that was often shot at adversaries; catches fire when wetted -14891425 27 n 01 green_gold 0 001 @ 14638799 n 0000 | a gold alloy (at least 14 karat gold with silver or silver and cadmium) that has a green appearance -14891581 27 n 01 greisen 0 001 @ 14696793 n 0000 | a granitic rock composed of quartz and mica -14891678 27 n 01 groundmass 0 003 @ 14931879 n 0000 #s 14996395 n 0000 ;c 06115701 n 0000 | (geology) the matrix of fine-grained crystalline material in which larger crystals are embedded -14891868 27 n 01 grid_metal 0 001 @ 14905197 n 0000 | a kind of hard lead that is used for grids in storage batteries -14891988 27 n 01 grout 0 002 @ 14992287 n 0000 + 01366809 v 0101 | a thin mortar that can be poured and used to fill cracks in masonry or brickwork -14892138 27 n 02 guanine 0 G 1 003 @ 14706749 n 0000 #s 14830364 n 0000 #s 14832193 n 0000 | a purine base found in DNA and RNA; pairs with cytosine -14892289 27 n 01 guano 0 002 @ 14853947 n 0000 @ 14859838 n 0000 | the excrement of sea birds; used as fertilizer -14892405 27 n 01 guinea_gold 1 001 @ 14638799 n 0000 | 22-karat gold from which guinea coins were made -14892510 27 n 01 gunite 0 001 @ 14786479 n 0000 | a mixture of cement and sand and water that is sprayed on a surface under pneumatic pressure -14892655 27 n 02 essential_oil 0 volatile_oil 0 010 @ 14966667 n 0000 ~ 11696211 n 0000 ~ 12645913 n 0000 ~ 14892989 n 0000 ~ 14893271 n 0000 ~ 14893406 n 0000 ~ 14893537 n 0000 ~ 14893652 n 0000 ~ 14893881 n 0000 ~ 14894029 n 0000 | an oil having the odor or flavor of the plant from which it comes; used in perfume and flavorings -14892989 27 n 04 attar 0 atar 0 athar 0 ottar 0 002 @ 14892655 n 0000 ~ 14893128 n 0000 | essential oil or perfume obtained from flowers -14893128 27 n 02 attar_of_roses 0 rose_oil 0 001 @ 14892989 n 0000 | a volatile fragrant oil obtained from fresh roses by steam distillation -14893271 27 n 02 clove_oil 0 oil_of_cloves 0 001 @ 14892655 n 0000 | essential oil obtained from cloves and used to flavor medicines -14893406 27 n 01 costus_oil 0 001 @ 14892655 n 0000 | a yellow volatile essential oil obtained from costusroot; used in perfumes -14893537 27 n 01 eucalyptus_oil 0 001 @ 14892655 n 0000 | an essential oil obtained from the leaves of eucalypts -14893652 27 n 04 turpentine 1 oil_of_turpentine 0 spirit_of_turpentine 0 turps 0 002 @ 14892655 n 0000 %s 14897369 n 0000 | volatile liquid distilled from turpentine oleoresin; used as paint thinner and solvent and medicinally -14893881 27 n 02 wormwood_oil 0 absinthe_oil 0 001 @ 14892655 n 0000 | a dark bitter oil obtained from wormwood leaves; flavors absinthe liqueurs -14894029 27 n 01 linalool 0 001 @ 14892655 n 0000 | a colorless fragrant liquid found in many essential oils -14894140 27 n 02 resin 0 rosin 0 008 @ 14727670 n 0000 + 01250676 v 0201 + 00054364 a 0103 + 00054364 a 0102 + 02192383 v 0101 ~ 12566112 n 0000 ~ 14894481 n 0000 ~ 14902141 n 0000 | any of a class of solid or semisolid viscous substances obtained either as exudations from certain plants or prepared by polymerization of simple molecules -14894481 27 n 01 natural_resin 0 019 @ 14894140 n 0000 @ 14991927 n 0000 ~ 11643354 n 0000 ~ 12722768 n 0000 ~ 12777179 n 0000 ~ 12824482 n 0000 ~ 14598937 n 0000 ~ 14766265 n 0000 ~ 14768989 n 0000 ~ 14790979 n 0000 ~ 14791560 n 0000 ~ 14894880 n 0000 ~ 14895189 n 0000 ~ 14895807 n 0000 ~ 14896128 n 0000 ~ 14896321 n 0000 ~ 14896441 n 0000 ~ 14897751 n 0000 ~ 15104088 n 0000 | a plant exudate -14894880 27 n 01 amber 0 001 @ 14894481 n 0000 | a hard yellowish to brownish translucent fossil resin; used for jewelry -14895003 27 n 01 urea-formaldehyde_resin 0 001 @ 14902141 n 0000 | a clear thermosetting resin made from urea and formaldehyde and used in electrical fittings, adhesives, and finishes -14895189 27 n 01 copal 0 006 @ 14894481 n 0000 ~ 11750745 n 0000 ~ 14895373 n 0000 ~ 14895498 n 0000 ~ 14895599 n 0000 ~ 14896018 n 0000 | a brittle aromatic resin used in varnishes -14895373 27 n 03 copalite 0 copaline 0 fossil_copal 0 001 @ 14895189 n 0000 | partly mineralized copal dug from the ground -14895498 27 n 02 congo_copal 0 congo_gum 0 001 @ 14895189 n 0000 | copal found usually as a fossil -14895599 27 n 04 kauri 2 kauri_copal 0 kauri_resin 0 kauri_gum 0 001 @ 14895189 n 0000 | resin of the kauri trees of New Zealand; found usually as a fossil; also collected for making varnishes and linoleum -14895807 27 n 04 dammar 0 gum_dammar 0 damar 0 dammar_resin 0 001 @ 14894481 n 0000 | any of various hard resins from trees of the family Dipterocarpaceae and of the genus Agathis; especially the amboyna pine -14896018 27 n 02 Zanzibar_copal 0 anime 0 001 @ 14895189 n 0000 | a hard copal derived from an African tree -14896128 27 n 01 colophony 0 001 @ 14894481 n 0000 | translucent brittle substance produced from pine oleoresin; used especially in varnishes and inks and on the bows of stringed instruments -14896321 27 n 01 mastic 0 001 @ 14894481 n 0000 | an aromatic exudate from the mastic tree; used chiefly in varnishes -14896441 27 n 01 oleoresin 0 008 @ 14894481 n 0000 ~ 12375107 n 0000 ~ 14896714 n 0000 ~ 14897164 n 0000 ~ 14897369 n 0000 ~ 14897620 n 0000 ~ 14928518 n 0000 ~ 14968926 n 0000 | a naturally occurring mixture of a resin and an essential oil; obtained from certain plants -14896714 27 n 01 balsam 0 006 @ 14896441 n 0000 #s 11552686 n 0000 + 02658412 a 0102 + 02658412 a 0101 ~ 12551669 n 0000 ~ 14896923 n 0000 | any of various fragrant oleoresins used in medicines and perfumes -14896923 27 n 01 balm 1 003 @ 14896714 n 0000 + 00438332 a 0101 ~ 14897083 n 0000 | any of various aromatic resinous substances used for healing and soothing -14897083 27 n 01 balm_of_Gilead 0 001 @ 14896923 n 0000 | a fragrant oleoresin -14897164 27 n 01 Canada_balsam 0 001 @ 14896441 n 0000 | yellow transparent exudate of the balsam fir; used as a transparent cement in optical devices (especially in microscopy) and as a mounting medium -14897369 27 n 02 turpentine 0 gum_terpentine 0 003 @ 14896441 n 0000 #s 14893652 n 0000 ~ 14897521 n 0000 | obtained from conifers (especially pines) -14897521 27 n 01 Chian_turpentine 0 001 @ 14897369 n 0000 | a turpentine exuded by the terebinth -14897620 27 n 03 copaiba 0 copaiba_balsam 0 balsam_capivi 0 001 @ 14896441 n 0000 | an oleoresin used in varnishes and ointments -14897751 27 n 01 gum_resin 0 007 @ 14894481 n 0000 ~ 12691028 n 0000 ~ 12692875 n 0000 ~ 12723330 n 0000 ~ 14897941 n 0000 ~ 14898273 n 0000 ~ 14898364 n 0000 | a mixture of resin and gum -14897941 27 n 05 benzoin 0 gum_benzoin 0 benjamin 0 gum_benjamin 0 asa_dulcis 0 001 @ 14897751 n 0000 | gum resin used especially in treating skin irritation -14898101 27 n 03 benzofuran 0 coumarone 0 cumarone 0 001 @ 14818238 n 0000 | a colorless oily compound extracted from coal tar and used in manufacturing synthetic resins -14898273 27 n 01 bdellium 0 001 @ 14897751 n 0000 | aromatic gum resin; similar to myrrh -14898364 27 n 01 gamboge 0 001 @ 14897751 n 0000 | a gum resin used as a yellow pigment and a purgative -14898470 27 n 01 gum 0 029 @ 14852913 n 0000 + 00069166 v 0101 ~ 12316853 n 0000 ~ 12339090 n 0000 ~ 12774496 n 0000 ~ 14743976 n 0000 ~ 14801711 n 0000 ~ 14820641 n 0000 ~ 14838677 n 0000 ~ 14852312 n 0000 ~ 14873951 n 0000 ~ 14876872 n 0000 ~ 14878844 n 0000 ~ 14900008 n 0000 ~ 14900454 n 0000 ~ 14900571 n 0000 ~ 14900695 n 0000 ~ 14900817 n 0000 ~ 14900963 n 0000 ~ 14901265 n 0000 ~ 14901411 n 0000 ~ 14901565 n 0000 ~ 14901679 n 0000 ~ 14901793 n 0000 ~ 14903763 n 0000 ~ 14928729 n 0000 ~ 14969892 n 0000 ~ 15019267 n 0000 ~ 15077226 n 0000 | any of various substances (soluble in water) that exude from certain plants; they are gelatinous when moist but harden on drying -14899152 27 n 01 medium 3 002 @ 00019613 n 0000 ~ 15047313 n 0000 | an intervening substance through which something is achieved; "the dissolving medium is called a solvent" -14899328 27 n 02 culture_medium 0 medium 0 003 @ 00021265 n 0000 ;c 06046692 n 0000 ~ 14900184 n 0000 | (bacteriology) a nutrient substance (solid or liquid) that is used to cultivate micro-organisms -14899530 27 n 01 medium 1 003 @ 00019613 n 0000 ;c 06037666 n 0000 ~ 14899687 n 0000 | (biology) a substance in which specimens are preserved or displayed -14899687 27 n 02 contrast_medium 0 contrast_material 0 001 @ 14899530 n 0000 | a substance that is opaque to x-rays; when administered it allows a radiologist to examine the organ or tissue it fills -14899888 27 n 01 medium 2 002 @ 14940386 n 0000 ~ 14949608 n 0000 | a liquid with which pigment is mixed by a painter -14900008 27 n 02 agar 0 agar-agar 0 002 @ 14898470 n 0000 #s 14900184 n 0000 | a colloidal extract of algae; used especially in culture media and as a gelling agent in foods -14900184 27 n 02 agar 2 nutrient_agar 0 003 @ 14899328 n 0000 %s 14900008 n 0000 ~ 14900342 n 0000 | any culture medium that uses agar as the gelling agent -14900342 27 n 01 blood_agar 0 001 @ 14900184 n 0000 | a culture medium containing whole blood as the nutrient -14900454 27 n 02 algin 0 alginic_acid 0 001 @ 14898470 n 0000 | a gum used especially as a thickener or emulsifier -14900571 27 n 01 cherry-tree_gum 0 001 @ 14898470 n 0000 | exudation from trees of the Prunus genus; resembles gum arabic -14900695 27 n 02 chicle 0 chicle_gum 0 002 @ 14898470 n 0000 #s 07599998 n 0000 | gum-like substance from the sapodilla -14900817 27 n 01 guar_gum 0 001 @ 14898470 n 0000 | a gum from seeds of the guar plant; used to thicken foods and as sizing for paper and cloth -14900963 27 n 02 gum_arabic 0 gum_acacia 0 003 @ 14898470 n 0000 #s 11756092 n 0000 ~ 14901158 n 0000 | gum from an acacia tree; used as a thickener (especially in candies and pharmaceuticals) -14901158 27 n 01 Senegal_gum 0 001 @ 14900963 n 0000 | gum arabic from the vicinity of the Senegal river -14901265 27 n 04 gum_butea 0 butea_gum 0 butea_kino 0 Bengal_kino 0 001 @ 14898470 n 0000 | dried juice of the dhak tree; used as an astringent -14901411 27 n 03 kino 0 gum_kino 0 kino_gum 0 001 @ 14898470 n 0000 | a gum obtained from various tropical plants; used as an astringent and in tanning -14901565 27 n 01 mesquite_gum 0 001 @ 14898470 n 0000 | a gum obtained from mesquite pods; resembles gum arabic -14901679 27 n 01 mucilage 0 002 @ 14898470 n 0000 + 00053691 a 0104 | a gelatinous substance secreted by plants -14901793 27 n 02 sterculia_gum 0 karaya_gum 0 001 @ 14898470 n 0000 | exudate of an Asian tree; used for finishing textiles and to thicken foodstuffs and cosmetics -14901959 27 n 02 synthetic 0 synthetic_substance 0 004 @ 14818238 n 0000 ~ 14592405 n 0000 ~ 14649036 n 0000 ~ 15006789 n 0000 | a compound made artificially by chemical reactions -14902141 27 n 01 synthetic_resin 0 012 @ 14894140 n 0000 @ 14994328 n 0000 ~ 14593671 n 0000 ~ 14594313 n 0000 ~ 14720101 n 0000 ~ 14895003 n 0000 ~ 14902500 n 0000 ~ 14902627 n 0000 ~ 14902733 n 0000 ~ 14949886 n 0000 ~ 14993713 n 0000 ~ 15088440 n 0000 | a resin having a polymeric structure; especially a resin in the raw state; used chiefly in plastics -14902500 27 n 02 alkyd 0 alkyd_resin 0 001 @ 14902141 n 0000 | a durable synthetic resin widely used in adhesives and paints -14902627 27 n 03 phenolic_resin 0 phenolic 0 phenoplast 0 001 @ 14902141 n 0000 | a thermosetting resin -14902733 27 n 03 epoxy 0 epoxy_resin 0 epoxy_glue 0 004 @ 14902141 n 0000 #s 14702416 n 0000 + 01332483 v 0101 ~ 14703458 n 0000 | a thermosetting resin; used chiefly in strong adhesives and coatings and laminates -14902949 27 n 01 copolymer 0 003 @ 14994328 n 0000 + 00266391 v 0101 + 00266391 v 0102 | a polymer consisting of two or more different monomers -14903095 27 n 02 polyurethane 0 polyurethan 0 002 @ 14994328 n 0000 ~ 14903339 n 0000 | any of various polymers containing the urethane radical; a wide variety of synthetic forms are made and used as adhesives or plastics or paints or rubber -14903339 27 n 02 polyfoam 0 polyurethane_foam 0 001 @ 14903095 n 0000 | a foam made by adding water to polyurethane plastics -14903466 27 n 03 cinnamon_stone 0 essonite 0 hessonite 0 001 @ 14676042 n 0000 | a garnet ranging in color from yellow to brown -14903596 27 n 02 gumbo 0 gumbo_soil 0 001 @ 14844693 n 0000 | any of various fine-grained silty soils that become waxy and very sticky mud when saturated with water -14903763 27 n 01 gutta-percha 0 001 @ 14898470 n 0000 | a whitish rubber derived from the coagulated milky latex of gutta-percha trees; used for insulation of electrical cables -14903942 27 n 01 terra_alba 1 001 @ 14677778 n 0000 | finely pulverized gypsum used especially as a pigment -14904052 27 n 01 gummite 0 001 @ 14586258 n 0000 | a gummy orange mixture of uranium oxides and silicates occurring naturally in the hydration and oxidation of pitchblende -14904226 27 n 01 halibut-liver_oil 0 001 @ 14755077 n 0000 | a fatty oil from halibut livers that is used as a source of vitamin A -14904359 27 n 01 halide 0 006 @ 15010703 n 0000 ~ 14785625 n 0000 ~ 14871601 n 0000 ~ 14922371 n 0000 ~ 15016852 n 0000 ~ 15069046 n 0000 | a salt of any halogen acid -14904528 27 n 01 halocarbon 0 002 @ 14727670 n 0000 ~ 14871968 n 0000 | one of various compounds of carbon and any of the halogens -14904661 27 n 01 halogen 0 006 @ 00031264 n 0000 ~ 14629561 n 0000 ~ 14632129 n 0000 ~ 14634591 n 0000 ~ 14637507 n 0000 ~ 14641397 n 0000 | any of five related nonmetallic elements (fluorine or chlorine or bromine or iodine or astatine) that are all monovalent and readily form negative ions -14904956 27 n 01 hanging_chad 0 001 @ 14805676 n 0000 | a chad that is incompletely removed and hanging by one corner -14905076 27 n 01 hard_lead 1 001 @ 14643467 n 0000 | unrefined lead that is hard because of the impurities it contains -14905197 27 n 02 hard_lead 0 antimonial_lead 0 002 @ 14643467 n 0000 ~ 14891868 n 0000 | a lead alloy that contains about 5% antimony -14905333 27 n 01 hard_steel 0 001 @ 14802450 n 0000 | steel with more than 0.3% carbon -14905422 27 n 01 hard_water 0 002 @ 14845743 n 0000 ! 15046716 n 0101 | water that contains mineral salts (as calcium and magnesium ions) that limit the formation of lather with soap -14905607 27 n 01 harlequin_opal 0 001 @ 14688234 n 0000 | a reddish opal with small patches of brilliant color -14905720 27 n 02 hematite 0 haematite 0 002 @ 14923458 n 0000 #s 14674143 n 0000 | the principal form of iron ore; consists of ferric oxide in crystalline form; occurs in a red earthy form -14905911 27 n 01 hemiacetal 0 001 @ 14727670 n 0000 | an organic compound usually formed as an intermediate product in the preparation of acetals from aldehydes or ketones -14906085 27 n 01 hemlock 0 001 @ 15036638 n 0000 | poisonous drug derived from an Eurasian plant of the genus Conium; "Socrates refused to flee and died by drinking hemlock" -14906261 27 n 04 hemolysin 0 haemolysin 0 erythrolysin 0 erythrocytolysin 0 002 @ 14727670 n 0000 ~ 15061428 n 0000 | any substance that can cause lysis (destruction) of erythrocytes (red blood cells) and the release of their hemoglobin -14906500 27 n 01 hemp 0 006 @ 14959644 n 0000 #s 02953673 n 0000 #s 04108268 n 0000 ~ 12178358 n 0000 ~ 14784506 n 0000 ~ 14947558 n 0000 | a plant fiber -14906656 27 n 01 heptane 0 001 @ 14951377 n 0000 | a colorless volatile highly flammable liquid obtained from petroleum and used as an anesthetic or a solvent or in determining octane ratings -14906850 27 n 03 herbicide 0 weedkiller 0 weed_killer 0 008 @ 14806838 n 0000 ~ 14601039 n 0000 %s 14629149 n 0000 ~ 14629772 n 0000 ~ 14938578 n 0000 ~ 14974153 n 0000 ~ 15042295 n 0000 ~ 15042429 n 0000 | a chemical agent that destroys plants or inhibits their growth -14907122 27 n 01 hexane 0 002 @ 14951377 n 0000 @ 15047313 n 0000 | a colorless flammable liquid alkane derived from petroleum and used as a solvent -14907273 27 n 01 high_brass 0 001 @ 14716997 n 0000 | brass with 35% zinc -14907349 27 n 03 high-density_lipoprotein 0 HDL 0 alpha-lipoprotein 0 002 @ 14939230 n 0000 %s 15058755 n 0000 | a lipoprotein that transports cholesterol in the blood; composed of a high proportion of protein and relatively little cholesterol; high levels are thought to be associated with decreased risk of coronary heart disease and atherosclerosis -14907703 27 n 01 high-level_radioactive_waste 0 001 @ 15002346 n 0000 | radioactive waste that left in a nuclear reactor after the nuclear fuel has been consumed -14907867 27 n 02 high-speed_steel 0 hot-work_steel 0 001 @ 15076180 n 0000 | an alloy steel that remains hard at a red heat; used to make metal-cutting tools -14908027 27 n 02 hip_tile 0 hipped_tile 0 001 @ 15074568 n 0000 | a tile shaped so as to cover the hip of a hip roof -14908146 27 n 01 histidine 0 001 @ 14605787 n 0000 | an essential amino acid found in proteins that is important for the growth and repair of tissue -14908297 27 n 01 histaminase 0 001 @ 14732946 n 0000 | enzyme that acts as a catalyst in converting histidine to histamine -14908422 27 n 01 homogenate 0 001 @ 14580897 n 0000 | material that has been homogenized (especially tissue that has been ground and mixed); "liver homogenate" -14908584 27 n 01 horsehair 1 001 @ 14959472 n 0000 | hair taken from the mane or tail of a horse -14908683 27 n 01 humectant 0 002 @ 00020090 n 0000 ~ 14852003 n 0000 | any substance that is added to another substance to keep it moist -14908822 27 n 01 humus 0 003 @ 14844693 n 0000 #s 08658469 n 0000 + 02744247 a 0101 | partially decomposed organic matter; the organic component of soil -14908977 27 n 01 humate 0 004 @ 14580897 n 0000 ~ 14689493 n 0000 ~ 14815263 n 0000 ~ 15038680 n 0000 | material that is high in humic acids -14909120 27 n 01 humic_acid 0 001 @ 14909319 n 0000 | a dark brown humic substance that is soluble in water only at pH values greater than 2; "the half-life of humic acid is measured in centuries" -14909319 27 n 01 humic_substance 0 004 @ 14727670 n 0000 ~ 14875878 n 0000 ~ 14909120 n 0000 ~ 14909480 n 0000 | an organic residue of decaying organic matter -14909480 27 n 01 humin 0 001 @ 14909319 n 0000 | a black humic substance that is not soluble in water -14909584 27 n 02 hyacinth 0 jacinth 0 001 @ 15109127 n 0000 | a red transparent variety of zircon used as a gemstone -14909703 27 n 02 hyaline 0 hyalin 0 003 @ 15078550 n 0000 + 00432251 a 0101 ~ 14926180 n 0000 | a glassy translucent substance that occurs in hyaline cartilage or in certain skin conditions -14909895 27 n 01 hyaluronic_acid 0 003 @ 14956143 n 0000 #s 05415200 n 0000 #s 05318407 n 0000 | a viscous mucopolysaccharide found in the connective tissue space and the synovial fluid of movable joints and the humors of the eye; a cementing and protective substance -14910165 27 n 03 hyaluronidase 0 spreading_factor 0 Hyazyme 0 002 @ 14732946 n 0000 ;u 06845599 n 0301 | an enzyme (trade name Hyazyme) that splits hyaluronic acid and so lowers its viscosity and increases the permeability of connective tissue and the absorption of fluids -14910440 27 n 01 hydrate 0 003 @ 14818238 n 0000 + 00214020 v 0101 ~ 14954152 n 0000 | any compound that contains water of crystallization -14910581 27 n 01 hydrazine 0 002 @ 14780267 n 0000 #p 14692026 n 0000 | a colorless fuming corrosive liquid; a powerful reducing agent; used chiefly in rocket fuels -14910748 27 n 01 hydride 0 004 @ 14618834 n 0000 ~ 14612764 n 0000 ~ 14937366 n 0000 ~ 15045379 n 0000 | any binary compound formed by the union of hydrogen and other elements -14910926 27 n 01 hydrobromic_acid 0 001 @ 14607521 n 0000 | an aqueous solution of hydrogen bromide that is a strong liquid acid -14911057 27 n 01 hydrocarbon 0 021 @ 14727670 n 0000 ~ 14603236 n 0000 ~ 14610088 n 0000 ~ 14686723 n 0000 ~ 14686913 n 0000 ~ 14687633 n 0000 ~ 14767996 n 0000 ~ 14824906 n 0000 ~ 14827979 n 0000 ~ 14836308 n 0000 ~ 14850826 n 0000 ~ 14878483 n 0000 ~ 14911530 n 0000 ~ 14912092 n 0000 ~ 14958405 n 0000 ~ 14958564 n 0000 ~ 14958937 n 0000 ~ 14966530 n 0000 ~ 14967730 n 0000 ~ 15068635 n 0000 ~ 15090379 n 0000 | an organic compound containing only carbon and hydrogen -14911530 27 n 01 bitumen 0 004 @ 14911057 n 0000 + 03048845 a 0101 + 00517240 v 0101 ~ 14911704 n 0000 | any of various naturally occurring impure mixtures of hydrocarbons -14911704 27 n 02 pitch 0 tar 0 005 @ 14911530 n 0000 + 01272457 v 0201 + 00054364 a 0101 + 00388849 a 0104 ~ 14911899 n 0000 | any of various dark heavy viscid substances obtained as a residue -14911899 27 n 01 coal_tar 0 002 @ 14911704 n 0000 %s 14958564 n 0000 | a tar formed from distillation of bituminous coal; coal tar can be further distilled to give various aromatic compounds -14912092 27 n 01 butadiene 0 003 @ 14911057 n 0000 #s 15007803 n 0000 ~ 14912245 n 0000 | a gaseous hydrocarbon C4H6; used in making synthetic rubbers -14912245 27 n 01 chloroprene 0 002 @ 14912092 n 0000 #s 15007377 n 0000 | derivative of butadiene used in making neoprene by polymerization -14912387 27 n 02 hydrochloric_acid 0 chlorohydric_acid 0 002 @ 14607521 n 0000 ~ 14957057 n 0000 | an aqueous solution of hydrogen chloride; a strongly corrosive acid -14912556 27 n 02 hydrofluorocarbon 0 HFC 0 002 @ 14871968 n 0000 @ 14877234 n 0000 | a fluorocarbon emitted as a by-product of industrial manufacturing -14912710 27 n 01 hydrogen_bromide 0 001 @ 14785625 n 0000 | a colorless gas that yields hydrobromic acid in solution with water -14912840 27 n 01 hydrogen_chloride 0 001 @ 14607521 n 0000 | a colorless corrosive gas (HCl) -14912935 27 n 01 hydrogen_fluoride 0 001 @ 14871601 n 0000 | a colorless poisonous corrosive liquid made by the action of sulphuric acid on calcium fluoride; solutions in water are hydrofluoric acid -14913136 27 n 01 hydrofluoric_acid 0 001 @ 14607521 n 0000 | a weak poisonous liquid acid; formed by solution of hydrogen fluoride in water -14913278 27 n 01 hydrogen_iodide 0 001 @ 14922371 n 0000 | a colorless gas that yields hydroiodic acid in aqueous solution -14913403 27 n 01 hydroiodic_acid 0 001 @ 14607521 n 0000 | an acid formed by aqueous solution of hydrogen iodide -14913518 27 n 01 hydrogen_sulfide 0 001 @ 15063699 n 0000 | a sulfide having the unpleasant smell of rotten eggs -14913633 27 n 01 hyper-eutectoid_steel 0 001 @ 14803074 n 0000 | a steel that contains more than 0.9% carbon -14913744 27 n 01 hypnagogue 0 002 @ 14778436 n 0000 ~ 04260934 n 0000 | an agent that induces drowsiness or sleep -14913860 27 n 03 hypo 0 sodium_thiosulphate 0 sodium_thiosulfate 0 001 @ 14869327 n 0000 | a compound used as a fixing agent in photographic developing -14914014 27 n 01 hypochlorous_acid 0 001 @ 14607521 n 0000 | a weak unstable acid known only in solution and in its salts; used as a bleaching agent and as an oxidizing agent -14914191 27 n 01 hypo-eutectoid_steel 0 001 @ 14803074 n 0000 | a steel that contains less that 0.9% carbon -14914301 27 n 02 hypoglycemic_agent 0 hypoglycaemic_agent 0 003 @ 14778436 n 0000 ~ 04448826 n 0000 ~ 05410646 n 0000 | any of various agents that decrease the level of glucose in the blood and are used in the treatment of diabetes mellitus -14914544 27 n 02 hydrazo_group 0 hydrazo_radical 0 001 @ 14621446 n 0000 | the bivalent group -HNNH- derived from hydrazine -14914670 27 n 01 hydroxide 1 001 @ 14818238 n 0000 | a chemical compound containing the hydroxyl group -14914775 27 n 03 hydroxyl 0 hydroxyl_group 0 hydroxyl_radical 0 001 @ 14621446 n 0000 | the monovalent group -OH in such compounds as bases and some acids and alcohols -14914945 27 n 02 hydroxide_ion 0 hydroxyl_ion 0 001 @ 09197815 n 0000 | the anion OH having one oxygen and one hydrogen atom -14915072 27 n 01 hydroxymethyl 0 001 @ 14952122 n 0000 | a methyl with hydroxide replacing the hydrogen atoms -14915184 27 n 02 ice 0 water_ice 0 009 @ 14883206 n 0000 #s 09289331 n 0000 #s 03557141 n 0000 + 00370921 v 0101 %s 14845743 n 0000 ~ 14915462 n 0000 ~ 14915622 n 0000 ~ 14915804 n 0000 ~ 14915928 n 0000 | water frozen in the solid state; "Americans like ice in their drinks" -14915462 27 n 01 black_ice 0 001 @ 14915184 n 0000 | a thin coating of ice (as from freezing mist) on a road or sidewalk; nearly invisible but very hazardous -14915622 27 n 04 frost 0 hoar 0 hoarfrost 0 rime 0 003 @ 14915184 n 0000 + 01253254 a 0101 + 01208400 v 0101 | ice crystals forming a white deposit (especially on objects outside) -14915804 27 n 01 hailstone 0 002 @ 14915184 n 0000 #p 11465530 n 0000 | small pellet of ice that falls during a hailstorm -14915928 27 n 01 icicle 0 001 @ 14915184 n 0000 | ice resembling a pendent spear, formed by the freezing of dripping water -14916053 27 n 01 Iceland_spar 0 001 @ 14935751 n 0000 | a transparent calcite found in Iceland and used in polarizing microscopes -14916185 27 n 01 identification_particle 0 002 @ 14585519 n 0000 ~ 14952654 n 0000 | a tiny particle of material that can be added to a product to indicate the source of manufacture -14916369 27 n 01 Inconel 0 002 @ 14586769 n 0000 ;u 06851742 n 0000 | a nickel-base alloy with chromium and iron; used in gas-turbine blades -14916512 27 n 02 ideal_gas 0 perfect_gas 0 001 @ 14877585 n 0000 | a hypothetical gas with molecules of negligible size that exert no intermolecular forces -14916670 27 n 03 imidazole 0 iminazole 0 glyoxaline 0 001 @ 14618253 n 0000 | an organic base C3H4N2; a histamine inhibitor -14916796 27 n 01 impregnation 0 001 @ 14580897 n 0000 | material with which something is impregnated; "the impregnation, whatever it was, had turned the rock blue" -14916962 27 n 01 indelible_ink 0 002 @ 14917635 n 0000 ~ 14948156 n 0000 | ink that cannot be erased or washed away -14917080 27 n 02 India_ink 0 drawing_ink 0 001 @ 14917635 n 0000 | a black liquid ink used for printing or writing or drawing -14917208 27 n 01 indicator 0 006 @ 14984973 n 0000 ;c 06084469 n 0000 ~ 14598383 n 0000 ~ 14609198 n 0000 ~ 14609784 n 0000 ~ 14971359 n 0000 | (chemistry) a substance that changes color to indicate the presence of some ion or substance; can be used to indicate the completion of a chemical reaction or (in medicine) to test for a particular reaction -14917561 27 n 01 indurated_clay 0 001 @ 14844693 n 0000 | hardened clay -14917635 27 n 01 ink 1 008 @ 14940386 n 0000 + 00390195 a 0102 + 00453680 v 0101 ~ 14916962 n 0000 ~ 14917080 n 0000 ~ 14917859 n 0000 ~ 14918023 n 0000 ~ 14918162 n 0000 | a liquid used for printing or writing or drawing -14917859 27 n 01 magnetic_ink 0 001 @ 14917635 n 0000 | an ink that contains particles of a magnetic substance whose presence can be detected by magnetic sensors -14918023 27 n 02 printer's_ink 0 printing_ink 0 001 @ 14917635 n 0000 | a semisolid quick drying ink made especially for use in printing -14918162 27 n 01 writing_ink 0 001 @ 14917635 n 0000 | any permanent or washable ink used with pens -14918264 27 n 01 Indian_red 0 001 @ 14844693 n 0000 | a red soil containing ferric oxide; often used as a pigment -14918380 27 n 01 Indian_red 1 001 @ 14989820 n 0000 | a red pigment composed in part from ferric oxide which is often used in paints and cosmetics -14918529 27 n 02 indoleacetic_acid 0 IAA 0 001 @ 14745057 n 0000 | a plant hormone promoting elongation of stems and roots -14918654 27 n 01 indolebutyric_acid 0 001 @ 14745057 n 0000 | a synthetic plant hormone promoting elongation of stems and roots -14918784 27 n 01 inducer 0 001 @ 14778436 n 0000 | an agent capable of activating specific genes -14918883 27 n 01 ivory_black 0 001 @ 14989820 n 0000 | a black pigment made from grinding burnt ivory in oil -14918994 27 n 01 incense 0 004 @ 14818238 n 0000 + 02126686 v 0102 ~ 14925526 n 0000 %s 15050161 n 0000 | a substance that produces a fragrant odor when burned -14919156 27 n 01 inhalant 0 003 @ 14877585 n 0000 + 00005041 v 0101 + 01198779 v 0101 | something that is inhaled -14919272 27 n 02 inoculant 0 inoculum 0 003 @ 00020090 n 0000 ;c 01328702 n 0000 + 00086835 v 0103 | a substance (a virus or toxin or immune serum) that is introduced into the body to produce or increase immunity to a particular disease -14919511 27 n 01 inorganic_compound 0 002 @ 14818238 n 0000 ~ 14792550 n 0000 | any compound that does not contain carbon -14919635 27 n 01 inosine 0 001 @ 14964367 n 0000 | a nucleoside that is formed by the deamination of adenosine; used in kidney transplantation to provide a temporary source of sugar -14919819 27 n 01 inositol 0 001 @ 15090742 n 0000 | an optically inactive alcohol that is a component of the vitamin B complex -14919948 27 n 02 insecticide 0 insect_powder 0 012 @ 14980215 n 0000 ~ 12022719 n 0000 ~ 14599938 n 0000 ~ 14600135 n 0000 ~ 14600238 n 0000 %s 14629149 n 0000 ~ 14934864 n 0000 ~ 14946082 n 0000 ~ 14969994 n 0000 ~ 15012214 n 0000 ~ 15012327 n 0000 ~ 15012478 n 0000 | a chemical used to kill insects -14920252 27 n 03 insectifuge 0 insect_repellent 0 insect_repellant 0 001 @ 14920388 n 0000 | a chemical substance that repels insects -14920388 27 n 02 repellent 0 repellant 0 006 @ 14818238 n 0000 + 01804422 a 0203 + 01808769 v 0201 + 01804422 a 0102 + 01808769 v 0101 ~ 14920252 n 0000 | a chemical substance that repels animals -14920586 27 n 02 repellent 1 repellant 1 002 @ 14818238 n 0000 + 01804422 a 0102 | a compound with which fabrics are treated to repel water -14920728 27 n 01 instillation 0 002 @ 14940100 n 0000 + 01422662 v 0101 | a liquid that is instilled drop by drop -14920844 27 n 03 insulating_material 0 insulant 0 insulation 0 005 @ 14786479 n 0000 + 00495038 v 0301 + 00495038 v 0201 ~ 14786943 n 0000 ~ 14823376 n 0000 | a material that reduces or prevents the transmission of heat or sound or electricity -14921090 27 n 01 interleukin 0 001 @ 14943950 n 0000 | any of several lymphokines that promote macrophages and killer T cells and B cells and other components of the immune system -14921272 27 n 01 intermediate 0 001 @ 14806838 n 0000 | a substance formed during a chemical process before the desired product is obtained -14921414 27 n 01 Invar 0 002 @ 14586769 n 0000 ;u 06851742 n 0000 | an alloy of iron and nickel having a low coefficient of thermal expansion; used in tuning forks and measuring tapes and other instruments -14921622 27 n 03 invertase 0 saccharase 0 sucrase 0 001 @ 14836468 n 0000 | an enzyme that catalyzes the hydrolysis of sucrose into glucose and fructose -14921777 27 n 01 invert_sugar 0 001 @ 14792703 n 0000 | a mixture of equal parts of glucose and fructose resulting from the hydrolysis of sucrose; found naturally in fruits; sweeter than glucose -14921974 27 n 03 Javelle_water 0 Javel_water 0 eau_de_Javelle 0 001 @ 15045490 n 0000 | an aqueous solution of sodium hypochlorite -14922107 27 n 01 fraction 0 002 @ 14806838 n 0000 + 01459542 v 0101 | a component of a mixture that has been separated by a fractional process -14922252 27 n 01 iodic_acid 0 001 @ 14607521 n 0000 | a soluble crystalline acid; used as a reagent and disinfectant -14922371 27 n 01 iodide 0 005 @ 14904359 n 0000 ~ 14862316 n 0000 ~ 14913278 n 0000 ~ 15015355 n 0000 ~ 15045677 n 0000 | a salt or ester of hydriodic acid -14922529 27 n 01 iodocompound 0 001 @ 14818238 n 0000 | a compound containing the covalent iodine radical -14922637 27 n 01 thyroprotein 0 001 @ 14734761 n 0000 | a preparation made from iodinated protein and having an action similar to thyroxine -14922779 27 n 01 thyroglobulin 0 001 @ 14734761 n 0000 | an iodine containing protein that is obtained from the thyroid gland and exhibits the general properties of the globulins -14922960 27 n 02 iron_blue 1 Prussian_blue 0 001 @ 14989820 n 0000 | any of various blue pigments -14923060 27 n 05 iron_blue 2 steel_grey 0 steel_gray 0 Davy's_grey 0 Davy's_gray 0 001 @ 04961691 n 0000 | slightly purplish or bluish dark grey -14923207 27 n 02 Payne's_grey 0 Payne's_gray 0 001 @ 14989820 n 0000 | any pigment that produces a greyish to dark greyish blue -14923337 27 n 01 iron_disulfide 0 001 @ 15063699 n 0000 | a compound containing two atoms of sulfur combined with iron -14923458 27 n 01 iron_ore 0 011 @ 14688500 n 0000 %s 14642417 n 0000 ~ 14677314 n 0000 ~ 14806728 n 0000 ~ 14870665 n 0000 ~ 14905720 n 0000 ~ 14934353 n 0000 ~ 14937801 n 0000 ~ 14945914 n 0000 ~ 15008287 n 0000 ~ 15039827 n 0000 | an ore from which iron can be extracted -14923733 27 n 01 iron_perchloride 0 001 @ 15017466 n 0000 | a highly toxic chemical used to engrave metal plates and electronic circuits -14923872 27 n 01 isocyanate 0 001 @ 15010703 n 0000 | a salt or ester of isocyanic acid -14923962 27 n 01 isocyanic_acid 0 001 @ 14607521 n 0000 | an acid known only in the form of its esters -14924067 27 n 01 isoleucine 0 001 @ 14605787 n 0000 | an essential amino acid found in proteins; isomeric with leucine -14924188 27 n 01 isomer 0 002 @ 14818238 n 0000 + 02828688 a 0101 | a compound that exists in forms having different arrangements of atoms but the same molecular weight -14924359 27 n 01 isomerase 0 001 @ 14732946 n 0000 | an enzyme that catalyzes its substrate to an isomeric form -14924473 27 n 01 itaconic_acid 0 001 @ 14607521 n 0000 | a crystalline carboxylic acid; occurs in some fermentations of sugars -14924602 27 n 02 jade 0 jadestone 0 001 @ 14969666 n 0000 | a semiprecious gemstone that takes a high polish; is usually green but sometimes whitish; consists of jadeite or nephrite -14924786 27 n 02 Japan_wax 0 Japan_tallow 0 001 @ 15094294 n 0000 | a yellow wax obtained from sumac berries; used in polishes -14924915 27 n 02 jargoon 0 jargon 0 001 @ 15109127 n 0000 | a colorless (or pale yellow or smoky) variety of zircon -14925033 27 n 01 jasper 0 001 @ 14969666 n 0000 | an opaque form of quartz; red or yellow or brown or dark green in color; used for ornamentation or as a gemstone -14925198 27 n 01 jelly 0 005 @ 00020090 n 0000 + 00507143 v 0102 + 00507143 v 0101 + 00507331 v 0101 ~ 14980910 n 0000 | any substance having the consistency of jelly or gelatin -14925378 27 n 01 jet 0 001 @ 14815263 n 0000 | a hard black form of lignite that takes a brilliant polish and is used in jewelry or ornamentation -14925526 27 n 01 joss_stick 0 001 @ 14918994 n 0000 | a slender stick of incense burned before a joss by the Chinese -14925645 27 n 01 jute 0 003 @ 14959644 n 0000 #s 04108268 n 0000 #s 04123567 n 0000 | a plant fiber used in making rope or sacks -14925776 27 n 03 kapok 0 silk_cotton 0 vegetable_silk 0 002 @ 14959644 n 0000 #s 03873064 n 0000 | a plant fiber from the kapok tree; used for stuffing and insulation -14925945 27 n 01 red_silk_cotton 0 001 @ 14959644 n 0000 | a plant fiber from the red silk-cotton tree of eastern India; inferior to kapok -14926086 27 n 02 paraffin 1 paraffin_oil 0 001 @ 14687633 n 0000 | (British usage) kerosine -14926180 27 n 01 keratohyalin 0 001 @ 14909703 n 0000 | hyaline in the large granules of the stratum granulosum -14926294 27 n 01 ketone 0 008 @ 14727670 n 0000 #s 03804048 n 0000 #s 04353410 n 0000 #s 04449796 n 0000 ~ 14600504 n 0000 ~ 14787954 n 0000 ~ 14870924 n 0000 ~ 14926595 n 0000 | any of a class of organic compounds having a carbonyl group linked to a carbon atom in each of two hydrocarbon radicals -14926595 27 n 02 ketone_body 0 acetone_body 0 003 @ 14926294 n 0000 ~ 14927051 n 0000 ~ 14927250 n 0000 | a ketone that is an intermediate product of the breakdown of fats in the body; any of three compounds (acetoacetic acid, acetone, and/or beta-hydroxybutyric acid) found in excess in blood and urine of persons with metabolic disorders -14926937 27 n 01 ketone_group 0 001 @ 14621446 n 0000 | a group having the characteristic properties of ketones -14927051 27 n 01 acetoacetic_acid 0 001 @ 14926595 n 0000 | unstable acid found in abnormal amounts in the blood and urine in some cases of impaired metabolism (as diabetes mellitus or starvation) -14927250 27 n 01 beta-hydroxybutyric_acid 0 002 @ 14926595 n 0000 @ 14927451 n 0000 | beta derivative of hydroxybutyric acid that is found in the blood and urine in some cases of impaired metabolism -14927451 27 n 02 hydroxybutyric_acid 0 oxybutyric_acid 0 002 @ 14788332 n 0000 ~ 14927250 n 0000 | hydroxy derivative of butyric acid -14927587 27 n 01 ketohexose 0 003 @ 14927739 n 0000 @ 14690186 n 0000 ~ 14874932 n 0000 | a monosaccharide having six carbon atoms and a ketone group -14927739 27 n 01 ketose 0 002 @ 14954284 n 0000 ~ 14927587 n 0000 | any monosaccharide sugar that contains a ketone group or its hemiacetal -14927881 27 n 01 kinase 0 001 @ 14732946 n 0000 | an enzyme that catalyzes the conversion of a proenzyme to an active enzyme -14928008 27 n 01 Kleenex 0 002 @ 15074962 n 0000 ;u 06851742 n 0000 | a piece of soft absorbent paper (usually two or more thin layers) used as a disposable handkerchief -14928180 27 n 01 kunzite 0 002 @ 15052223 n 0000 @ 15078050 n 0000 | a pinkish lilac crystal form of the mineral spodumene that is used as a gemstone -14928332 27 n 01 Kwell 0 002 @ 14934864 n 0000 ;u 06851742 n 0000 | a preparation of lindane (trade name Kwell) that is used to kill lice and itch mites; available in cream or shampoo -14928518 27 n 02 labdanum 0 gum_labdanum 0 001 @ 14896441 n 0000 | a dark brown to greenish oleoresin that has a fragrant odor and is used as a fixative in perfumes; obtained as a juice from certain rockroses -14928729 27 n 01 lacquer 0 002 @ 14898470 n 0000 + 01682761 v 0101 | a black resinous substance obtained from certain trees and used as a natural varnish -14928885 27 n 02 lactase 0 Lactaid 0 002 @ 14836468 n 0000 ;u 06845599 n 0201 | any of a group of enzymes (trade name Lactaid) that hydrolyze lactose to glucose and galactose -14929062 27 n 01 lactic_acid 0 001 @ 14739360 n 0000 | a clear odorless hygroscopic syrupy carboxylic acid found in sour milk and in many fruits -14929209 27 n 01 lactifuge 0 001 @ 14778436 n 0000 | any agent that reduces milk secretion (as given to a woman who is not breast feeding) -14929350 27 n 01 lactogen 0 002 @ 14778436 n 0000 ~ 14749543 n 0000 | any agent that enhances milk production -14929462 27 n 02 lactose 0 milk_sugar 0 001 @ 14836642 n 0000 | a sugar comprising one glucose molecule linked to a galactose molecule; occurs only in milk; "cow's milk contains about 4.7% lactose" -14929662 27 n 01 lamellar_mixture 0 002 @ 14586258 n 0000 ~ 14977845 n 0000 | a mixture in which substances occur in distinct layers -14929797 27 n 02 lapis_lazuli 0 lazuli 0 001 @ 14969666 n 0000 | an azure blue semiprecious stone -14929897 27 n 01 lard_oil 0 001 @ 14755077 n 0000 | oil consisting chiefly of olein that is expressed from lard and used especially as a lubricant, cutting oil or illuminant -14930073 27 n 01 larvicide 0 001 @ 14806838 n 0000 | a chemical used to kill larval pests -14930165 27 n 01 laterite 0 001 @ 14844693 n 0000 | a red soil produced by rock decay; contains insoluble deposits of ferric and aluminum oxides -14930312 27 n 01 lath_and_plaster 0 001 @ 14786479 n 0000 | a building material consisting of thin strips of wood that provide a foundation for a coat of plaster -14930476 27 n 02 lauric_acid 0 dodecanoic_acid 0 001 @ 14740587 n 0000 | a crystalline fatty acid occurring as glycerides in natural fats and oils (especially coconut oil and palm-kernel oil) -14930670 27 n 02 lauryl_alcohol 0 1-dodecanol 0 001 @ 14708720 n 0000 | a colorless insoluble solid alcohol used to make detergents and pharmaceuticals -14930824 27 n 01 latten 0 001 @ 14716997 n 0000 | brass (or a yellow alloy resembling brass) that was hammered into thin sheets; formerly used for church utensils -14930989 27 n 01 lava 0 004 @ 14933314 n 0000 ~ 14931472 n 0000 ~ 14931559 n 0000 ~ 14931633 n 0000 | rock that in its molten form (as magma) issues from volcanos; lava is what magma is called when it reaches the surface -14931212 27 n 02 tuff 0 tufa 1 001 @ 14933314 n 0000 | hard volcanic rock composed of compacted volcanic ash -14931323 27 n 02 tufa 0 calc-tufa 0 001 @ 14696793 n 0000 | a soft porous rock consisting of calcium carbonate deposited from springs rich in lime -14931472 27 n 01 aa 0 001 @ 14930989 n 0000 | a dry form of lava resembling clinkers -14931559 27 n 01 pahoehoe 0 001 @ 14930989 n 0000 | freely flowing lava -14931633 27 n 01 pillow_lava 0 001 @ 14930989 n 0000 | lava that hardened in rounded shapes suggestive of pillows; believed to result from underwater eruptions -14931795 27 n 01 magma 0 001 @ 14696793 n 0000 | molten rock in the earth's crust -14931879 27 n 01 igneous_rock 0 014 @ 14696793 n 0000 ~ 14725364 n 0000 ~ 14726484 n 0000 ~ 14891678 n 0000 ~ 14932222 n 0000 ~ 14932303 n 0000 ~ 14932554 n 0000 ~ 14932645 n 0000 ~ 14932741 n 0000 ~ 14932943 n 0000 ~ 14933236 n 0000 ~ 14933314 n 0000 ~ 14996395 n 0000 %s 15044648 n 0000 | rock formed by the solidification of molten magma -14932222 27 n 01 adesite 0 001 @ 14931879 n 0000 | dark greyish extrusive rock -14932303 27 n 04 batholith 0 batholite 0 pluton 0 plutonic_rock 0 005 @ 14931879 n 0000 + 01355378 a 0302 + 02660164 a 0202 + 02660164 a 0101 ~ 14890286 n 0000 | large mass of intrusive igneous rock believed to have solidified deep within the earth -14932554 27 n 01 diorite 0 001 @ 14931879 n 0000 | a granular crystalline intrusive rock -14932645 27 n 01 gabbro 0 001 @ 14931879 n 0000 | one of a family of granular intrusive rocks -14932741 27 n 01 pegmatite 0 002 @ 14931879 n 0000 %s 15012668 n 0000 | a form of igneous rock consisting of extremely coarse granite resulting from the crystallization of magma rich in rare elements -14932943 27 n 01 peridotite 0 002 @ 14931879 n 0000 ~ 14933086 n 0000 | a dark coarse-grained igneous rock consisting principally of olivine -14933086 27 n 01 kimberlite 0 001 @ 14932943 n 0000 | a rare type of peridotite that sometimes contains diamonds; found in South Africa and Siberia -14933236 27 n 01 rhyolite 0 001 @ 14931879 n 0000 | very acid volcanic rock -14933314 27 n 01 volcanic_rock 0 008 @ 14931879 n 0000 ~ 14711647 n 0000 ~ 14722738 n 0000 ~ 14726823 n 0000 ~ 14773022 n 0000 ~ 14880777 n 0000 ~ 14930989 n 0000 ~ 14931212 n 0000 | extrusive igneous rock solidified near or on the surface of the Earth -14933569 27 n 01 leaded_bronze 0 001 @ 14717275 n 0000 | bronze to which 1-4% lead is added -14933663 27 n 01 lead_ore 0 002 @ 14688500 n 0000 ~ 14933755 n 0000 | ore containing lead -14933755 27 n 02 massicot 0 massicotite 0 001 @ 14933663 n 0000 | the mineral form of lead monoxide; in the form of yellow powder it is used as a pigment -14933911 27 n 03 leaf_mold 0 leaf_mould 0 leaf_soil 0 001 @ 14953564 n 0000 | soil composed mainly of decaying leaves -14934031 27 n 02 leaven 0 leavening 0 005 @ 00020090 n 0000 + 01975587 v 0102 ~ 14772461 n 0000 ~ 15048748 n 0000 ~ 15106271 n 0000 | a substance used to produce fermentation in dough or a liquid -14934229 27 n 01 ledger_paper 0 001 @ 15105268 n 0000 | a durable writing paper used in record books and business ledgers -14934353 27 n 01 lepidocrocite 0 001 @ 14923458 n 0000 | a red to reddish brown mineral consisting of iron oxide hydroxide; often found in iron ores together with goethite -14934527 27 n 01 laid_paper 0 001 @ 15105268 n 0000 | writing paper having a watermark of fine lines running across the grain -14934655 27 n 01 wove_paper 0 001 @ 15105268 n 0000 | writing paper having a very faint mesh pattern -14934758 27 n 01 letter_paper 0 001 @ 15105268 n 0000 | writing paper for use in writing correspondence -14934864 27 n 01 lindane 0 002 @ 14919948 n 0000 ~ 14928332 n 0000 | a white crystalline powder used as an agricultural insecticide -14934998 27 n 02 linen 0 linen_paper 0 001 @ 14974264 n 0000 | a high-quality paper made of linen fibers or with a linen finish -14935128 27 n 01 leucine 0 001 @ 14605787 n 0000 | a white crystalline amino acid occurring in proteins that is essential for nutrition; obtained by the hydrolysis of most dietary proteins -14935319 27 n 01 lignin 0 003 @ 14994328 n 0000 #s 15098161 n 0000 + 02576058 a 0101 | a complex polymer; the chief constituent of wood other than carbohydrates; binds to cellulose fibers to harden and strengthen cell walls of plants -14935555 27 n 02 hydroxide 0 hydrated_oxide 0 006 @ 14818238 n 0000 ~ 14824238 n 0000 ~ 14936010 n 0000 ~ 14945399 n 0000 ~ 14996843 n 0000 ~ 15014990 n 0000 | a compound of an oxide with water -14935751 27 n 01 calcite 0 007 @ 15049096 n 0000 #s 14936226 n 0000 + 02674530 a 0101 ~ 14665469 n 0000 ~ 14806598 n 0000 ~ 14916053 n 0000 %s 14936905 n 0000 | a common mineral consisting of crystallized calcium carbonate; a major constituent of limestone -14936010 27 n 07 calcium_hydroxide 0 lime 0 slaked_lime 0 hydrated_lime 0 calcium_hydrate 0 caustic_lime 0 lime_hydrate 0 002 @ 14935555 n 0000 + 01603732 v 0201 | a caustic substance produced by heating limestone -14936226 27 n 01 limestone 0 006 @ 14696793 n 0000 @ 14698000 n 0000 %s 14632648 n 0000 %s 14633206 n 0000 %s 14935751 n 0000 ~ 14936474 n 0000 | a sedimentary rock consisting mainly of calcium that was deposited by the remains of marine animals -14936474 27 n 02 rottenstone 0 tripoli 0 001 @ 14936226 n 0000 | a weathered and decomposed siliceous limestone; in powdered form it is used in polishing -14936630 27 n 01 dripstone 0 003 @ 14936905 n 0000 #s 09443753 n 0000 #s 09443921 n 0000 | the form of calcium carbonate found in stalactites and stalagmites -14936790 27 n 01 calcium_bicarbonate 0 001 @ 14775729 n 0000 | a bicarbonate that is a major cause of hard water -14936905 27 n 01 calcium_carbonate 0 004 @ 14798450 n 0000 #s 14806598 n 0000 #s 14935751 n 0000 ~ 14936630 n 0000 | a salt found in nature as chalk or calcite or aragonite or limestone -14937093 27 n 01 limewater 0 002 @ 14845743 n 0000 #s 02847942 n 0000 | solution of calcium hydroxide in water used as an antacid -14937225 27 n 01 calcium_chloride 0 002 @ 15010703 n 0000 #s 15008847 n 0000 | a deliquescent salt; used in de-icing and as a drying agent -14937366 27 n 02 calcium_hydride 0 hydrolith 0 001 @ 14910748 n 0000 | a saltlike binary compound (CaH2) used as a reducing agent and source of hydrogen -14937521 27 n 02 calcium_sulphate 0 calcium_sulfate 0 003 @ 15010703 n 0000 ~ 14677778 n 0000 ~ 14992613 n 0000 | a white salt (CaSO4) -14937658 27 n 01 limonene 0 001 @ 15068635 n 0000 | a liquid terpene with a lemon odor; found in lemons and oranges and other essential oils -14937801 27 n 01 limonite 0 001 @ 14923458 n 0000 | a widely occurring iron oxide ore; a mixture of goethite and hematite and lepidocrocite -14937943 27 n 02 linoleic_acid 0 linolic_acid 0 004 @ 14741730 n 0000 #s 15086352 n 0000 #s 07674267 n 0000 #s 07675262 n 0000 | a liquid polyunsaturated fatty acid abundant in plant fats and oils; a fatty acid essential for nutrition; used to make soap -14938199 27 n 01 linolenic_acid 0 003 @ 14742271 n 0000 #s 15086352 n 0000 #s 07675262 n 0000 | a liquid polyunsaturated fatty acid that occurs in some plant oils; an essential fatty acid -14938389 27 n 02 linoleum 0 lino 0 001 @ 14825062 n 0000 | a floor covering -14938467 27 n 01 lint 2 002 @ 14866889 n 0000 %s 15002959 n 0000 | fine ravellings of cotton or linen fibers -14938578 27 n 01 linuron 0 001 @ 14906850 n 0000 | a herbicide that kills weeds without harming vegetables -14938687 27 n 01 lipase 0 002 @ 14732946 n 0000 #s 05406128 n 0000 | an enzyme secreted in the digestive tract that catalyzes the breakdown of fats into individual fatty acids that can be absorbed into the bloodstream -14938907 27 n 03 lipid 0 lipide 0 lipoid 0 006 @ 14944888 n 0000 ~ 14864360 n 0000 ~ 14885369 n 0000 ~ 14966667 n 0000 ~ 14982681 n 0000 ~ 15094294 n 0000 | an oily organic compound insoluble in water but soluble in organic solvents; essential structural component of living cells (along with proteins and carbohydrates) -14939230 27 n 01 lipoprotein 0 004 @ 14731135 n 0000 ~ 14907349 n 0000 ~ 14943009 n 0000 ~ 15087632 n 0000 | a conjugated protein having a lipid component; the principal means for transporting lipids in the blood -14939445 27 n 01 fluid 0 004 @ 00020827 n 0000 + 02261746 a 0101 ~ 14877585 n 0000 ~ 14940100 n 0000 | continuous amorphous matter that tends to flow and to conform to the outline of its container: a liquid or a gas -14939663 27 n 01 grume 0 002 @ 14940386 n 0000 + 02416036 a 0104 | a thick viscous liquid -14939755 27 n 01 ichor 0 002 @ 14939900 n 0000 ;c 07979425 n 0000 | (Greek mythology) the rarified fluid said to flow in the veins of the Gods -14939900 27 n 01 fluid 2 006 @ 00019613 n 0000 + 02261746 a 0101 ~ 14822141 n 0000 ~ 14868564 n 0000 ~ 14939755 n 0000 ~ 14940386 n 0000 | a substance that is fluid at room temperature and pressure -14940100 27 n 01 liquid 0 011 @ 14939445 n 0000 + 00444309 v 0102 + 00443984 v 0103 ~ 14768480 n 0000 ~ 14841056 n 0000 ~ 14845743 n 0000 ~ 14858794 n 0000 ~ 14920728 n 0000 ~ 14941087 n 0000 ~ 15049594 n 0000 ~ 15111903 n 0000 | fluid matter having no fixed shape but a fixed volume -14940386 27 n 01 liquid 4 015 @ 14939900 n 0000 ~ 07881800 n 0000 ~ 07935504 n 0000 ~ 09451103 n 0000 ~ 14708720 n 0000 ~ 14743840 n 0000 ~ 14766364 n 0000 ~ 14836960 n 0000 ~ 14863326 n 0000 ~ 14899888 n 0000 ~ 14917635 n 0000 ~ 14939663 n 0000 ~ 14941230 n 0000 ~ 15039179 n 0000 ~ 15043579 n 0000 | a substance that is liquid at room temperature and pressure -14940750 27 n 01 liquid_nitrogen 0 002 @ 14647235 n 0000 @ 14826328 n 0000 | nitrogen in a liquid state -14940856 27 n 01 liquid_air 0 002 @ 14841267 n 0000 @ 14826328 n 0000 | air in a liquid state -14940952 27 n 01 liquid_bleach 0 002 @ 14589223 n 0000 %s 14779205 n 0000 | a solution containing bleaching agents; used for laundry -14941087 27 n 01 liquid_crystal 0 001 @ 14940100 n 0000 | a liquid exhibiting properties of a crystal that are not shown by ordinary liquids -14941230 27 n 01 liquor 0 001 @ 14940386 n 0000 | a liquid substance that is a solution (or emulsion or suspension) used or obtained in an industrial process; "waste liquors" -14941407 27 n 02 litmus 0 litmus_test 0 002 @ 14609198 n 0000 #s 14941642 n 0000 | a coloring material (obtained from lichens) that turns red in acid solutions and blue in alkaline solutions; used as a very rough acid-base indicator -14941642 27 n 01 litmus_paper 0 002 @ 14974264 n 0000 %s 14941407 n 0000 | unsized paper treated with litmus for use as an acid-base indicator -14941787 27 n 01 lithia_water 0 001 @ 07936745 n 0000 | mineral water containing lithium salts -14941884 27 n 04 lithium_carbonate 0 Lithane 0 Lithonate 0 Eskalith 0 002 @ 14798450 n 0000 @ 03713736 n 0000 | a white powder (LiCO3) used in manufacturing glass and ceramics and as a drug; the drug (trade names Lithane or Lithonate or Eskalith) is used to treat some forms of depression and manic episodes of manic-depressive disorder -14942223 27 n 01 loam 0 004 @ 14844693 n 0000 + 01425300 a 0101 ~ 14695497 n 0000 ~ 14809666 n 0000 | a rich soil consisting of a mixture of sand and clay and decaying organic materials -14942411 27 n 02 lodestone 0 loadstone 0 002 @ 03917622 n 0000 %s 14945914 n 0000 | a permanent magnet consisting of magnetite that possess polarity and has the power to attract as well as to be attracted magnetically -14942631 27 n 01 loess 0 001 @ 14844693 n 0000 | a fine-grained unstratified accumulation of clay and silt deposited by the wind -14942762 27 n 01 log 1 004 @ 15098161 n 0000 + 01258828 v 0101 ~ 14964925 n 0000 ~ 15020203 n 0000 | a segment of the trunk of a tree when stripped of branches -14942924 27 n 01 low_brass 0 001 @ 14716997 n 0000 | brass with 30% (or less) zinc -14943009 27 n 03 low-density_lipoprotein 0 LDL 0 beta-lipoprotein 0 002 @ 14939230 n 0000 %s 15058987 n 0000 | a lipoprotein that transports cholesterol in the blood; composed of moderate amount of protein and a large amount of cholesterol; high levels are thought to be associated with increased risk of coronary heart disease and atherosclerosis -14943359 27 n 01 low-level_radioactive_waste 0 002 @ 15002346 n 0000 ;c 06043075 n 0000 | (medicine) radioactive waste consisting of objects that have been briefly exposed to radioactivity (as in certain medical tests) -14943580 27 n 02 lumber 0 timber 0 007 @ 14786479 n 0000 + 01258828 v 0102 ~ 04322387 n 0000 ~ 04339638 n 0000 %s 15098161 n 0000 ~ 15101854 n 0000 ~ 15102359 n 0000 | the wood of trees cut and prepared for use as building material -14943814 27 n 01 lye 0 003 @ 15014529 n 0000 ~ 14996843 n 0000 ~ 15014990 n 0000 | a strong solution of sodium or potassium hydroxide -14943950 27 n 01 lymphokine 0 002 @ 14828193 n 0000 ~ 14921090 n 0000 | a cytokine secreted by helper T cells in response to stimulation by antigens and that acts on other cells of the immune system (as by activating macrophages) -14944182 27 n 01 lysine 0 001 @ 14605787 n 0000 | an essential amino acid found in proteins; occurs especially in gelatin and casein -14944317 27 n 01 Lysol 0 001 @ 14825982 n 0000 | a clear oily brown solution of cresols in soap; used as an antiseptic and disinfectant -14944455 27 n 02 lysozyme 0 muramidase 0 001 @ 14732946 n 0000 | an enzyme found in saliva and sweat and tears that destroys the cell walls of certain bacteria -14944617 27 n 02 Mace 0 Chemical_Mace 0 003 @ 14604038 n 0000 ;u 06851742 n 0201 ;u 06851742 n 0101 | (trademark) a liquid that temporarily disables a person; prepared as an aerosol and sprayed in the face, it irritates the eyes and causes dizziness and immobilization -14944888 27 n 02 macromolecule 0 supermolecule 0 007 @ 14682133 n 0000 @ 14727670 n 0000 + 02902361 a 0101 ~ 14728724 n 0000 ~ 14792703 n 0000 ~ 14938907 n 0000 ~ 14964129 n 0000 | any very large complex molecule; found only in plants and animals -14945137 27 n 01 magnesium_bicarbonate 0 001 @ 14775729 n 0000 | a bicarbonate that is a major cause of hard water -14945254 27 n 01 magnesium_carbonate 0 001 @ 14798450 n 0000 | a very white crystalline salt that occurs naturally as magnesite or as dolomite -14945399 27 n 01 magnesium_hydroxide 0 001 @ 14935555 n 0000 | a white crystalline powder used chiefly in medicines -14945517 27 n 01 magnesium_nitride 0 001 @ 14963317 n 0000 | a nitride containing nitrogen and magnesium -14945624 27 n 01 magnesium_sulfate 0 002 @ 15063493 n 0000 ~ 14945725 n 0000 | a salt of magnesium -14945725 27 n 02 Epsom_salts 0 bitter_salts 0 001 @ 14945624 n 0000 | hydrated magnesium sulfate that is taken orally to treat heartburn and constipation and injected to prevent seizures -14945914 27 n 02 magnetite 0 magnetic_iron-ore 0 003 @ 14923458 n 0000 #s 14942411 n 0000 #s 14674143 n 0000 | an oxide of iron that is strongly attracted by magnets -14946082 27 n 01 Malathion 0 002 @ 14919948 n 0000 ;u 06851742 n 0000 | a yellow insecticide used as a dust or spray to control garden pests and house flies and mites -14946251 27 n 01 maleate 0 002 @ 14850483 n 0000 @ 02718811 n 0000 | a salt or ester of maleic acid; used as a nontricyclic antidepressant drug for psychomotor activation -14946424 27 n 01 maleic_acid 0 001 @ 14607521 n 0000 | a colorless crystalline compound found in unripe fruit (such as apples or tomatoes or cherries) and used mainly to make polyester resins -14946618 27 n 02 maltose 0 malt_sugar 0 001 @ 14836642 n 0000 | a white crystalline sugar formed during the digestion of starches -14946750 27 n 02 manifold_paper 0 manifold 0 002 @ 14974264 n 0000 + 00247702 v 0201 | a lightweight paper used with carbon paper to make multiple copies; "an original and two manifolds" -14946939 27 n 04 manila 0 manila_paper 0 manilla 0 manilla_paper 0 001 @ 14974264 n 0000 | a strong paper or thin cardboard with a smooth light brown finish made from e.g. Manila hemp -14947125 27 n 02 manganese_bronze 0 high-strength_brass 0 001 @ 14720238 n 0000 | a brass with from 1-4% manganese to harden it -14947255 27 n 02 manganese_steel 0 austenitic_manganese_steel 0 001 @ 14716042 n 0000 | a steel with a relatively large component (10-14%) of manganese; highly resistant to wear and shock -14947445 27 n 01 manganate 0 001 @ 15010703 n 0000 | a salt of manganic acid containing manganese as its anion -14947558 27 n 03 Manila_hemp 0 Manilla_hemp 0 abaca 0 001 @ 14906500 n 0000 | a kind of hemp obtained from the abaca plant in the Philippines -14947702 27 n 01 maple_sugar 0 001 @ 14792703 n 0000 | sugar made from the sap of the sugar maple tree -14947807 27 n 01 marble 0 006 @ 14696793 n 0000 + 02994872 a 0102 + 02994872 a 0101 + 01681492 v 0101 + 00523436 v 0101 ~ 14948055 n 0000 | a hard crystalline metamorphic rock that takes a high polish; used for sculpture and as building material -14948055 27 n 02 verd_antique 0 verde_antique 0 001 @ 14947807 n 0000 | a dark green impure marble -14948156 27 n 01 marking_ink 0 001 @ 14916962 n 0000 | an indelible ink for marking clothes or linens etc. -14948265 27 n 01 marsh_gas 0 001 @ 14951229 n 0000 | methane gas produced when vegetation decomposes in water -14948377 27 n 01 martensite 0 002 @ 15051705 n 0000 #s 15000689 n 0000 | a solid solution of carbon in alpha-iron that is formed when steel is cooled so rapidly that the change from austenite to pearlite is suppressed; responsible for the hardness of quenched steel -14948645 27 n 01 mash 0 004 @ 14591091 n 0000 + 00331082 v 0102 + 01593937 v 0104 ~ 14948812 n 0000 | a mixture of mashed malt grains and hot water; used in brewing -14948812 27 n 01 sour_mash 0 001 @ 14948645 n 0000 | a mash with optimum acidity for yeast fermentation; a mixture of old and new mash; used in distilling some whiskeys -14948983 27 n 01 matchwood 1 001 @ 15098161 n 0000 | wood suitable for making matchsticks -14949075 27 n 02 matchwood 2 splinters 0 001 @ 15098161 n 0000 | wood in small pieces or splinters; "the vessel was beaten to matchwood on the rocks" -14949227 27 n 01 matrix 0 002 @ 14696793 n 0000 ;c 06115701 n 0000 | (geology) amass of fine-grained rock in which fossils, crystals, or gems are embedded -14949384 27 n 01 matte 0 002 @ 14586258 n 0000 ~ 15049309 n 0000 | a mixture of sulfides that forms when sulfide metal ores are smelted -14949522 27 n 01 medium_steel 0 001 @ 14802450 n 0000 | steel with 0.15-0.3% carbon -14949608 27 n 02 megilp 0 magilp 0 001 @ 14899888 n 0000 | a medium for oil-paints; linseed oil mixed with mastic varnish or turpentine -14949746 27 n 02 melamine 0 cyanuramide 0 001 @ 14618253 n 0000 | a white crystalline organic base; used mainly in making melamine resins -14949886 27 n 01 melamine_resin 0 001 @ 14902141 n 0000 | a thermosetting resin formed from melamine and an aldehyde; used in molded products, adhesives, and coatings -14950055 27 n 01 meltwater 0 001 @ 14845743 n 0000 | melted snow or ice -14950129 27 n 01 menhaden_oil 0 002 @ 14755077 n 0000 #s 02531625 n 0000 | a fatty oil obtained from the menhaden fish and used in paint and ink and in treating leather -14950300 27 n 01 menstruum 0 002 @ 15047313 n 0000 ;u 07073447 n 0000 | (archaic) a solvent -14950394 27 n 01 menthol 0 004 @ 14818238 n 0000 #s 07812497 n 0000 #s 03746861 n 0000 #s 03746994 n 0000 | a crystalline compound that has the cool and minty taste and odor that occurs naturally in peppermint oil; used as a flavoring and in medicine to relieve itching, pain, and nasal congestion -14950694 27 n 04 mercuric_chloride 0 mercury_chloride 0 bichloride_of_mercury 0 corrosive_sublimate 0 001 @ 15062284 n 0000 | a white poisonous soluble crystalline sublimate of mercury; used as a pesticide or antiseptic or wood preservative -14950937 27 n 02 calomel 0 mercurous_chloride 0 003 @ 15017604 n 0000 #s 02847942 n 0000 %s 14645346 n 0000 | a tasteless colorless powder used medicinally as a cathartic -14951110 27 n 02 message_pad 0 writing_pad 0 001 @ 14973133 n 0000 | a pad of paper on which messages can be written -14951229 27 n 01 methane 0 004 @ 14951377 n 0000 @ 14877585 n 0000 #s 14960090 n 0000 ~ 14948265 n 0000 | a colorless odorless gas used as a fuel -14951377 27 n 05 methane_series 0 alkane_series 0 alkane 0 paraffin_series 0 paraffin 2 007 @ 14601294 n 0000 ~ 14685017 n 0000 ~ 14739004 n 0000 ~ 14850826 n 0000 ~ 14906656 n 0000 ~ 14907122 n 0000 ~ 14951229 n 0000 | a series of non-aromatic saturated hydrocarbons with the general formula CnH(2n+2) -14951682 27 n 01 methyl_bromide 0 001 @ 14785625 n 0000 | a poisonous gas or liquid (CH3Br) used to fumigate rodents, worms, etc. -14951814 27 n 01 methylated_spirit 0 002 @ 14710164 n 0000 ~ 15065280 n 0000 | ethyl alcohol denatured with methyl alcohol to prevent its use as an alcoholic beverage -14951983 27 n 03 methylene_group 0 methylene_radical 0 methylene 0 001 @ 14621446 n 0000 | the bivalent radical CH2 derived from methane -14952122 27 n 03 methyl 0 methyl_group 0 methyl_radical 0 003 @ 14617189 n 0000 ~ 14617715 n 0000 ~ 14915072 n 0000 | the univalent radical CH3- derived from methane -14952290 27 n 01 methionine 0 001 @ 14605787 n 0000 | a crystalline amino acid containing sulfur; found in most proteins and essential for nutrition -14952441 27 n 03 methyl_salicylate 0 birch_oil 0 sweet-birch_oil 0 002 @ 15009843 n 0000 #s 07812913 n 0000 | a liquid ester with a strong odor of wintergreen; applied externally for minor muscle and joint pain -14952654 27 n 01 Microtaggant 0 002 @ 14916185 n 0000 ;u 06851742 n 0000 | (trademark) a microscopic and traceable identification particle used to trace explosives or other hazardous materials or to prevent counterfeiting -14952878 27 n 03 mild_steel 0 low-carbon_steel 0 soft-cast_steel 0 001 @ 14802450 n 0000 | steel with less than 0.15% carbon -14953005 27 n 01 mine_pig 0 001 @ 14983491 n 0000 | pig iron made entirely from ore -14953091 27 n 01 mineral_oil 0 001 @ 14966667 n 0000 | a distillate of petroleum (especially one used medicinally as a laxative or stool softener) -14953240 27 n 01 misch_metal 0 001 @ 15000149 n 0000 | a pyrophoric alloy made from a mixture of rare-earth metals -14953357 27 n 01 mitogen 0 001 @ 14778436 n 0000 | an agent that triggers mitosis -14953441 27 n 01 motor_oil 0 002 @ 14966667 n 0000 @ 14890659 n 0000 | oil used to lubricate the moving parts of a motor -14953564 27 n 02 mold 0 mould 0 002 @ 14844693 n 0000 ~ 14933911 n 0000 | loose soil rich in organic matter -14953674 27 n 01 molybdenum_steel 0 001 @ 14716042 n 0000 | steel containing 10-15% molybdenum; properties are similar to tungsten steel -14953813 27 n 01 monoamine 0 002 @ 14739004 n 0000 ~ 14807737 n 0000 | a molecule containing one amine group (especially one that is a neurotransmitter) -14953968 27 n 02 monoamine_oxidase 0 MAO 0 001 @ 14732946 n 0000 | an enzyme that catalyzes the oxidation of many body compounds (e.g., epinephrine and norepinephrine and serotonin) -14954152 27 n 01 monohydrate 0 001 @ 14910440 n 0000 | a hydrate that contains one molecule of water per molecule of the compound -14954284 27 n 03 monosaccharide 0 monosaccharose 0 simple_sugar 0 007 @ 14792703 n 0000 ~ 14689817 n 0000 ~ 14689940 n 0000 ~ 14690063 n 0000 ~ 14690186 n 0000 ~ 14710662 n 0000 ~ 14927739 n 0000 | a sugar (like sucrose or fructose) that does not hydrolyse to give other sugars; the simplest group of carbohydrates -14954601 27 n 01 monoxide 0 002 @ 14971519 n 0000 ~ 14797641 n 0000 | an oxide containing just one atom of oxygen in the molecule -14954733 27 n 01 montan_wax 0 001 @ 15094294 n 0000 | a hard wax obtained from lignite -14954822 27 n 01 moonstone 0 002 @ 15078050 n 0000 @ 14864961 n 0000 | a transparent or translucent gemstone with a pearly luster; some specimens are orthoclase feldspar and others are plagioclase feldspar -14955030 27 n 01 mordant 0 005 @ 14984973 n 0000 + 00587376 a 0105 ~ 14955246 n 0000 ~ 14955391 n 0000 ~ 15013875 n 0000 | a substance used to treat leather or other materials before dyeing; aids in dyeing process -14955246 27 n 01 chrome_alum 0 002 @ 14955030 n 0000 @ 15010703 n 0000 | a violet-colored salt used in hide tanning and as a mordant in dyeing -14955391 27 n 02 tartar_emetic 0 antimony_potassium_tartrate 0 002 @ 14955030 n 0000 @ 14955559 n 0000 | a poisonous colorless salt used as a mordant and in medicine -14955559 27 n 01 tartrate 0 003 @ 15010703 n 0000 ~ 14955391 n 0000 ~ 14955682 n 0000 | a salt or ester of tartaric acid -14955682 27 n 01 bitartrate 0 001 @ 14955559 n 0000 | an acid tartrate; a hydrogen tartrate -14955776 27 n 01 morganite 0 002 @ 15078050 n 0000 @ 14668539 n 0000 | a kind of pink beryl used as a gemstone -14955889 27 n 01 mortar 0 003 @ 14786479 n 0000 + 01362291 v 0101 %s 14804175 n 0000 | used as a bond in masonry or for covering a wall -14956027 27 n 01 mucoid 0 002 @ 14888310 n 0000 + 02903793 a 0101 | any of several glycoproteins similar to mucin -14956143 27 n 01 mucopolysaccharide 0 002 @ 14994004 n 0000 ~ 14909895 n 0000 | complex polysaccharides containing an amino group; occur chiefly as components of connective tissue -14956325 27 n 02 mud 0 clay 2 007 @ 14844693 n 0000 + 02548066 a 0105 + 01361884 v 0101 + 01534745 v 0103 ~ 14780605 n 0000 ~ 14780737 n 0000 ~ 14956523 n 0000 | water soaked soil; soft wet earth -14956523 27 n 02 slop 0 mire 0 002 @ 14956325 n 0000 + 02548066 a 0107 | deep soft mud in water or slush; "they waded through the slop" -14956661 27 n 09 sludge 0 slime 0 goo 0 goop 0 gook 0 guck 0 gunk 0 muck 0 ooze 0 008 @ 00020827 n 0000 + 00422620 a 0801 + 01534745 v 0802 + 00178380 v 0801 + 00054109 a 0301 + 02235826 a 0202 + 01252730 v 0201 ~ 14956921 n 0000 | any thick, viscous matter -14956921 27 n 01 sapropel 0 001 @ 14956661 n 0000 | sludge (rich in organic matter) that accumulates at the bottom of lakes or oceans -14957057 27 n 01 muriatic_acid 0 001 @ 14912387 n 0000 | a former name for hydrochloric acid -14957152 27 n 02 music_paper 0 score_paper 0 001 @ 14974264 n 0000 | paper with lines appropriate for writing music -14957270 27 n 05 mustard_gas 0 mustard_agent 0 blistering_agent 0 dichloroethyl_sulfide 0 sulfur_mustard 0 002 @ 14993378 n 0000 @ 15112239 n 0000 | a toxic war gas with sulfide based compounds that raises blisters and attacks the eyes and lungs; there is no known antidote -14957546 27 n 01 muton 0 001 @ 14964590 n 0000 | the smallest unit of DNA where a mutation can occur -14957649 27 n 01 nitrogen_mustard 0 001 @ 14818238 n 0000 | a toxic compound resembling mustard gas in structure; important in cancer treatment -14957795 27 n 01 mutton_tallow 0 001 @ 15062468 n 0000 | tallow from the body of a mature sheep -14957893 27 n 03 myelin 0 myeline 0 medulla 0 003 @ 14864360 n 0000 #s 05464685 n 0000 + 03012793 a 0101 | a white fatty substance that forms a medullary sheath around the axis cylinder of some nerve fibers -14958102 27 n 02 myristic_acid 0 tetradecanoic_acid 0 001 @ 14740587 n 0000 | a saturated fatty acid occurring naturally in animal and vegetable fats -14958254 27 n 01 napalm 0 001 @ 14686913 n 0000 | gasoline jelled with aluminum soaps; highly incendiary liquid used in fire bombs and flamethrowers -14958405 27 n 01 naphtha 0 002 @ 14911057 n 0000 @ 15047313 n 0000 | any of various volatile flammable liquid hydrocarbon mixtures; used chiefly as solvents -14958564 27 n 01 naphthalene 0 003 @ 14911057 n 0000 #s 14911899 n 0000 #s 03788703 n 0000 | a white crystalline strong-smelling hydrocarbon made from coal tar or petroleum and used in organic synthesis and as a fumigant in mothballs -14958800 27 n 01 naphthol 0 003 @ 14989545 n 0000 ~ 14609689 n 0000 ~ 14730421 n 0000 | either of two phenols derived from naphthalene -14958937 27 n 01 pyrene 0 001 @ 14911057 n 0000 | a pale yellow crystalline hydrocarbon C16H10 extracted from coal tar -14959058 27 n 02 man-made_fiber 0 synthetic_fiber 0 003 @ 14866889 n 0000 ~ 14965958 n 0000 ~ 14966192 n 0000 | fiber created from natural materials or by chemical processes -14959234 27 n 02 natural_fiber 0 natural_fibre 0 008 @ 14866889 n 0000 ~ 12155126 n 0000 ~ 12185526 n 0000 ~ 12481641 n 0000 ~ 13099444 n 0000 ~ 14959472 n 0000 ~ 14959644 n 0000 ~ 15018688 n 0000 | fiber derived from plants or animals -14959472 27 n 02 animal_fiber 0 animal_fibre 0 005 @ 14959234 n 0000 @ 14700745 n 0000 ~ 14908584 n 0000 ~ 15041911 n 0000 ~ 15104217 n 0000 | fiber derived from animals -14959644 27 n 02 plant_fiber 0 plant_fibre 0 012 @ 14959234 n 0000 @ 14991927 n 0000 ~ 14867690 n 0000 ~ 14869829 n 0000 ~ 14870078 n 0000 ~ 14906500 n 0000 ~ 14925645 n 0000 ~ 14925776 n 0000 ~ 14925945 n 0000 ~ 14959939 n 0000 ~ 15002546 n 0000 ~ 15042654 n 0000 | fiber derived from plants -14959939 27 n 01 straw 0 003 @ 14959644 n 0000 #s 03873064 n 0000 + 01608340 v 0101 | plant fiber used e.g. for making baskets and hats or as fodder -14960090 27 n 02 natural_gas 0 gas 3 003 @ 14686352 n 0000 + 00442267 v 0201 %s 14951229 n 0000 | a fossil fuel in the gaseous state; used for cooking and heating homes -14960261 27 n 04 naval_brass 0 Admiralty_brass 0 Admiralty_Metal 0 Tobin_bronze 0 001 @ 14720238 n 0000 | alpha-beta brass containing tin; resistant to sea water; Admiralty Metal is a trademark -14960457 27 n 01 neat's-foot_oil 0 001 @ 14755077 n 0000 | a pale yellow oil made from the feet and legs of cattle; used as a dressing for leather -14960606 27 n 01 nebula 0 001 @ 14873641 n 0000 | a medicinal liquid preparation intended for use in an atomizer -14960721 27 n 02 nerve_gas 0 nerve_agent 0 004 @ 14993378 n 0000 @ 14778436 n 0000 ~ 14960963 n 0000 ~ 14970136 n 0000 | a toxic gas that is inhaled or absorbed through the skin and has harmful effects on the nervous and respiratory system -14960963 27 n 01 VX_gas 0 001 @ 14960721 n 0000 | a highly lethal nerve agent used in chemical warfare; a toxic liquid that penetrates the skin or lungs to disrupt the nervous system and stop respiration; in combat VX gas is deployed by detonating a container over the target area and can persist in the environment up to several weeks after release; "VX gas is one of those things we wish we could disinvent" -14961375 27 n 02 sarin 0 GB 0 001 @ 14970136 n 0000 | a highly toxic chemical nerve agent that inhibits the activity of cholinesterase -14961512 27 n 01 neuromuscular_blocking_agent 0 003 @ 02854156 n 0000 ~ 14859622 n 0000 ~ 15111609 n 0000 | a substance that interferes with the neural transmission between motor neurons and skeletal muscles -14961722 27 n 02 newspaper 0 newsprint 0 001 @ 14974264 n 0000 | cheap paper made from wood pulp and used for printing newspapers; "they used bales of newspaper every day" -14961896 27 n 01 Nichrome 0 002 @ 14962117 n 0000 ;u 06851742 n 0000 | an alloy of nickel and chromium with high electrical resistance and an ability to withstand high temperatures; used for resistance heating elements -14962117 27 n 02 nickel-base_alloy 0 nickel_alloy 0 004 @ 14586769 n 0000 ~ 14719291 n 0000 ~ 14961896 n 0000 ~ 14979285 n 0000 | an alloy whose main constituent is nickel -14962291 27 n 01 nickel_bronze 0 001 @ 14717275 n 0000 | a bronze containing up to 30% nickel -14962387 27 n 02 nickel_silver 0 German_silver 0 001 @ 14586769 n 0000 | a silver-white alloy containing copper and zinc and nickel -14962521 27 n 01 nickel_steel 0 001 @ 14716042 n 0000 | an alloy steel containing nickel -14962612 27 n 02 nicotinamide_adenine_dinucleotide 0 NAD 0 001 @ 14800277 n 0000 | a coenzyme present in most living cells and derived from the B vitamin nicotinic acid; serves as a reductant in various metabolic processes -14962837 27 n 02 nicotinamide_adenine_dinucleotide_phosphate 0 NADP 0 001 @ 14800277 n 0000 | a coenzyme similar to NAD and present in most living cells but serves as a reductant in different metabolic processes -14963051 27 n 02 Ni-hard 0 Ni-hard_iron 0 001 @ 14715786 n 0000 | cast iron to which nickel has been added to make it resist abrasion -14963187 27 n 02 Ni-resist 0 Ni-resist_iron 0 001 @ 14715786 n 0000 | cast iron consisting of graphite in a matrix of austenite -14963317 27 n 01 nitride 0 002 @ 14818238 n 0000 ~ 14945517 n 0000 | a compound containing nitrogen and a more electropositive element (such as phosphorus or a metal) -14963486 27 n 01 nitrobenzene 0 001 @ 14727670 n 0000 | a poisonous oily water-soluble liquid used as a solvent and in the manufacture of aniline -14963634 27 n 01 nitrofuran 0 002 @ 14876318 n 0000 #s 03826443 n 0000 | derivative of furan used to inhibit bacterial growth -14963762 27 n 01 nitrogenase 0 001 @ 14732946 n 0000 | an enzyme of nitrogen-fixing microorganisms that catalyzes the conversion of nitrogen to ammonia -14963916 27 n 01 nuclease 0 003 @ 14732946 n 0000 ~ 14605415 n 0000 ~ 14606137 n 0000 | general term for enzymes that catalyze the hydrolysis of nucleic acid by cleaving chains of nucleotides into smaller units -14964129 27 n 01 nucleic_acid 0 004 @ 14944888 n 0000 #p 14830364 n 0000 #p 14832193 n 0000 ;c 06079620 n 0000 | (biochemistry) any of various macromolecules composed of nucleotide chains that are vital constituents of all living cells -14964367 27 n 01 nucleoside 0 007 @ 14887305 n 0000 ~ 14707101 n 0000 ~ 14919635 n 0000 ~ 15073018 n 0000 ~ 15073147 n 0000 ~ 15073285 n 0000 ~ 15073424 n 0000 | a glycoside formed by partial hydrolysis of a nucleic acid -14964590 27 n 02 nucleotide 0 base 1 011 @ 14850483 n 0000 ~ 14630769 n 0000 ~ 14707710 n 0000 ~ 14707903 n 0000 ~ 14708042 n 0000 ~ 14829565 n 0000 ~ 14829765 n 0000 ~ 14829964 n 0000 ~ 14830164 n 0000 ~ 14957546 n 0000 ~ 15084357 n 0000 | a phosphoric ester of a nucleoside; the basic structural unit of nucleic acids (DNA or RNA) -14964925 27 n 01 nurse_log 0 001 @ 14942762 n 0000 | a large decomposing tree trunk that has fallen, usually in a forest; the decaying wood provides moisture and nutrients for a variety of insects and plants -14965135 27 n 01 cellulose_acetate 0 003 @ 14794823 n 0000 #s 02675219 n 0000 ~ 14965321 n 0000 | an ester of acetic acid; used in fibers and fabrics; photographic films and varnishes -14965321 27 n 02 cellulose_triacetate 0 triacetate 0 001 @ 14965135 n 0000 | cellulose acetate that is relatively slow to burn; used instead of celluloid for motion-picture film -14965501 27 n 01 celluloid 0 003 @ 14593344 n 0000 %s 14790979 n 0000 %s 14794993 n 0000 | highly flammable substance made from cellulose nitrate and camphor; used in e.g. motion-picture and X-ray film; its use has decreased with the development of nonflammable thermoplastics -14965780 27 n 02 cellulose_xanthate 0 viscose 0 003 @ 14794823 n 0000 @ 15112828 n 0000 #s 04538403 n 0000 | a cellulose ester obtained by treating cellulose with caustic soda -14965958 27 n 02 acrylic_fiber 0 acrylic 1 001 @ 14959058 n 0000 | polymerized from acrylonitrile -14966058 27 n 02 polyamide 0 polymeric_amide 0 002 @ 14994328 n 0000 ~ 14966192 n 0000 | a polymer containing repeated amide groups -14966192 27 n 01 nylon 0 002 @ 14959058 n 0000 @ 14966058 n 0000 | a thermoplastic polyamide; a family of strong resilient synthetic fibers -14966334 27 n 01 oakum 0 001 @ 14866889 n 0000 | loose hemp or jute fiber obtained by unravelling old ropes; when impregnated with tar it was used to caulk seams and pack joints in wooden ships -14966530 27 n 01 octane 0 001 @ 14911057 n 0000 | any isomeric saturated hydrocarbon found in petroleum and used as a fuel and solvent -14966667 27 n 01 oil 0 039 @ 14938907 n 0000 + 01699838 a 0101 + 10374415 n 0101 + 03845360 n 0102 + 03845190 n 0102 + 00085626 v 0103 + 01268571 v 0101 ~ 11707511 n 0000 ~ 11781301 n 0000 ~ 11878520 n 0000 ~ 11880032 n 0000 ~ 11946433 n 0000 ~ 12380029 n 0000 ~ 12592971 n 0000 ~ 12593508 n 0000 ~ 12645754 n 0000 ~ 12848212 n 0000 ~ 12848770 n 0000 ~ 12850531 n 0000 ~ 12856868 n 0000 ~ 12922933 n 0000 ~ 14686585 n 0000 ~ 14755077 n 0000 ~ 14791202 n 0000 ~ 14890945 n 0000 ~ 14892655 n 0000 ~ 14953091 n 0000 ~ 14953441 n 0000 ~ 14967478 n 0000 ~ 14967577 n 0000 ~ 14967893 n 0000 ~ 14968038 n 0000 ~ 14968185 n 0000 ~ 14980579 n 0000 ~ 15038892 n 0000 ~ 15086352 n 0000 ~ 15086545 n 0000 ~ 15086672 n 0000 ~ 15102167 n 0000 | a slippery or viscous liquid or liquefiable substance not miscible with water -14967478 27 n 02 fixed_oil 0 fatty_oil 0 001 @ 14966667 n 0000 | nonvolatile animal or plant oil -14967577 27 n 01 fusel_oil 0 001 @ 14966667 n 0000 | a mixture of amyl alcohols and propanol and butanol formed from distillation of fermented liquors -14967730 27 n 01 gas_oil 0 002 @ 14686585 n 0000 @ 14911057 n 0000 | an oil formed through distillation of petroleum of intermediate boiling range and viscosity -14967893 27 n 01 stand_oil 0 001 @ 14966667 n 0000 | a thick oil comprised of linseed, tung, or soya oils which have been heated to over 300 C -14968038 27 n 01 neroli_oil 0 001 @ 14966667 n 0000 | an odoriferous yellow oil found in orange flowers and used in perfumery and as a flavoring -14968185 27 n 01 tall_oil 0 001 @ 14966667 n 0000 | an oil derived from wood pulp and used in making soaps or lubricants -14968308 27 n 01 oil-hardened_steel 0 001 @ 15000689 n 0000 | steel that is quenched in oil -14968402 27 n 01 oilpaper 0 001 @ 14974264 n 0000 | paper that has been made translucent and waterproof by soaking in oil -14968526 27 n 01 oleic_acid 0 003 @ 14741474 n 0000 #s 07674508 n 0000 #s 07674001 n 0000 | a colorless oily liquid occurring as a glyceride; it is the major fatty acid in olive oil and canola oil; used in making soap and cosmetics and ointments and lubricating oils -14968795 27 n 01 oleo_oil 0 001 @ 14755077 n 0000 | obtained from beef fat; used in making margarine and soap and in lubrication -14968926 27 n 01 oleoresin_capiscum 0 001 @ 14896441 n 0000 | an oleoresin extracted from the capsicum pepper plant -14969044 27 n 01 oligosaccharide 0 004 @ 14792703 n 0000 ~ 14836642 n 0000 ~ 15069161 n 0000 ~ 15080571 n 0000 | any of the carbohydrates that yield only a few monosaccharide molecules on complete hydrolysis -14969254 27 n 02 onionskin 0 flimsy 0 002 @ 15082382 n 0000 + 02325484 a 0201 | a thin strong lightweight translucent paper used especially for making carbon copies -14969421 27 n 01 india_paper 0 001 @ 14974264 n 0000 | a thin tough opaque paper used in fine books -14969523 27 n 01 onyx 0 002 @ 14806333 n 0000 ~ 15019972 n 0000 | a chalcedony with alternating black and white bands; used in making cameos -14969666 27 n 01 opaque_gem 0 009 @ 14699752 n 0000 ~ 14671372 n 0000 ~ 14688234 n 0000 ~ 14803886 n 0000 ~ 14823036 n 0000 ~ 14924602 n 0000 ~ 14925033 n 0000 ~ 14929797 n 0000 ~ 15082198 n 0000 | a gemstone that is opaque -14969892 27 n 01 opopanax 0 001 @ 14898470 n 0000 | an odorous gum resin formerly used in medicines -14969994 27 n 01 organophosphate 0 002 @ 14919948 n 0000 ~ 14810466 n 0000 | an insecticide that interferes with an insect's nervous system -14970136 27 n 01 organophosphate_nerve_agent 0 004 @ 14960721 n 0000 ~ 14961375 n 0000 ~ 15056372 n 0000 ~ 15066125 n 0000 | any of a series of nerve agents containing organophosphate compounds first synthesized by German chemists in 1936; in World War II the Germans tested them in concentration camps but not on the battlefield; Iraq is alleged to have used them against Iran and against the Kurds -14970538 27 n 01 ormolu 0 001 @ 14716997 n 0000 | brass that looks like gold; used to decorate furniture -14970645 27 n 02 oxalacetate 0 oxaloacetate 0 001 @ 15010703 n 0000 | a salt or ester of oxalacetic acid -14970752 27 n 02 oxalacetic_acid 0 oxaloacetic_acid 0 001 @ 14607521 n 0000 | an acid formed by oxidation of maleic acid (as in metabolism of fats and carbohydrates) -14970920 27 n 01 oxalate 0 002 @ 15010703 n 0000 ~ 15085327 n 0000 | a salt or ester of oxalic acid -14971022 27 n 02 oxalic_acid 0 ethanedioic_acid 0 001 @ 14607521 n 0000 | a toxic colorless crystalline organic acid found in oxalis and other plants; used as a bleach and rust remover and in chemical analysis -14971234 27 n 01 oxidase 0 002 @ 14732946 n 0000 ~ 14979730 n 0000 | any of the enzymes that catalyze biological oxidation -14971359 27 n 01 oxidation-reduction_indicator 0 001 @ 14917208 n 0000 | an indicator that shows a reversible color change between oxidized and reduced forms -14971519 27 n 01 oxide 0 020 @ 14818238 n 0000 + 00238867 v 0101 + 00238867 v 0102 ~ 14616740 n 0000 ~ 14690335 n 0000 ~ 14766890 n 0000 ~ 14789885 n 0000 ~ 14822762 n 0000 ~ 14836127 n 0000 ~ 14865800 n 0000 ~ 14954601 n 0000 ~ 14980087 n 0000 ~ 15003329 n 0000 ~ 15041277 n 0000 ~ 15063946 n 0000 ~ 15064917 n 0000 ~ 15069472 n 0000 ~ 15079925 n 0000 ~ 15108087 n 0000 ~ 15109391 n 0000 | any compound of oxygen with another element or a radical -14971969 27 n 01 oxidoreductase 0 002 @ 14732946 n 0000 ~ 14972681 n 0000 | an enzyme that catalyzes oxidation-reduction -14972092 27 n 01 oxime 0 001 @ 14727670 n 0000 | any compound containing the group -C=NOH -14972184 27 n 01 oxyacetylene 0 002 @ 14586258 n 0000 %s 14600742 n 0000 | a mixture of oxygen and acetylene; used to create high temperatures for cutting or welding metals -14972359 27 n 02 oxyacid 0 oxygen_acid 0 008 @ 14607521 n 0000 ~ 14614490 n 0000 ~ 14614594 n 0000 ~ 14615264 n 0000 ~ 14972582 n 0000 ~ 14982907 n 0000 ~ 15082036 n 0000 ~ 15087090 n 0000 | any acid that contains oxygen -14972582 27 n 01 periodic_acid 0 001 @ 14972359 n 0000 | any acid of iodine that contains oxygen -14972681 27 n 01 oxygenase 0 001 @ 14971969 n 0000 | an oxidoreductase that catalyzes the incorporation of molecular oxygen -14972807 27 n 01 ozone 0 002 @ 14877585 n 0000 %s 14648100 n 0000 | a colorless gas (O3) soluble in alkalis and cold water; a strong oxidizing agent; can be produced by electric discharge in oxygen or by the action of ultraviolet radiation on oxygen in the stratosphere (where it acts as a screen for ultraviolet radiation) -14973133 27 n 03 pad 1 pad_of_paper 0 tablet 0 003 @ 14974264 n 0000 ~ 14951110 n 0000 ~ 15021085 n 0000 | a number of sheets of paper fastened together along one edge -14973303 27 n 02 palmitic_acid 0 hexadecanoic_acid 0 003 @ 14740587 n 0000 #s 07649854 n 0000 #s 07843775 n 0000 | a saturated fatty acid that is the major fat in meat and dairy products -14973492 27 n 01 palmitin 0 001 @ 14887026 n 0000 | an ester of glycerol and palmitic acid -14973585 27 n 02 pantothenic_acid 0 pantothen 0 002 @ 15090742 n 0000 @ 14607521 n 0000 | a vitamin of the vitamin B complex that performs an important role in the oxidation of fats and carbohydrates and certain amino acids; occurs in many foods -14973833 27 n 01 papain 0 001 @ 14732946 n 0000 | a proteolytic enzyme obtained from the unripe papaya; used as a meat tenderizer -14973965 27 n 02 para_aminobenzoic_acid 0 PABA 0 002 @ 14607521 n 0000 #s 04357314 n 0000 | a metabolic acid found in yeast and liver cells; used to make dyes and drugs and sun blockers -14974153 27 n 01 paraquat 0 001 @ 14906850 n 0000 | a poisonous yellow solid used in solution as a herbicide -14974264 27 n 01 paper 0 049 @ 14580897 n 0000 + 02414599 a 0101 + 02691531 a 0102 + 01268112 v 0102 + 01268457 v 0101 ~ 02962545 n 0000 ~ 03090278 n 0000 ~ 06255777 n 0000 ~ 14768854 n 0000 ~ 14781752 n 0000 ~ 14782150 n 0000 %s 14793921 n 0000 ~ 14797813 n 0000 ~ 14799601 n 0000 ~ 14799833 n 0000 ~ 14805676 n 0000 ~ 14820052 n 0000 ~ 14820933 n 0000 ~ 14826173 n 0000 ~ 14838821 n 0000 ~ 14868464 n 0000 ~ 14872572 n 0000 ~ 14890183 n 0000 ~ 14891132 n 0000 ~ 14934998 n 0000 ~ 14941642 n 0000 ~ 14946750 n 0000 ~ 14946939 n 0000 ~ 14957152 n 0000 ~ 14961722 n 0000 ~ 14968402 n 0000 ~ 14969421 n 0000 ~ 14973133 n 0000 ~ 14975266 n 0000 ~ 14975351 n 0000 ~ 14975444 n 0000 ~ 14975598 n 0000 ~ 14975779 n 0000 ~ 14975872 n 0000 ~ 14976001 n 0000 ~ 14976323 n 0000 ~ 15074962 n 0000 ~ 15077109 n 0000 ~ 15077752 n 0000 ~ 15093938 n 0000 ~ 15094053 n 0000 ~ 15096661 n 0000 ~ 15105122 n 0000 ~ 15105268 n 0000 | a material made of cellulose pulp derived mainly from wood or rags or certain grasses -14975266 27 n 01 paper_tape 0 001 @ 14974264 n 0000 | a long narrow strip of paper -14975351 27 n 01 paper_toweling 0 001 @ 14974264 n 0000 | absorbent paper used as toweling -14975444 27 n 02 papier-mache 0 paper-mache 0 001 @ 14974264 n 0000 | a substance made from paper pulp that can be molded when wet and painted when dry -14975598 27 n 01 papyrus 0 001 @ 14974264 n 0000 | paper made from the papyrus plant by cutting it in strips and pressing it flat; used by ancient Egyptians and Greeks and Romans -14975779 27 n 01 parchment 1 001 @ 14974264 n 0000 | a superior paper resembling sheepskin -14975872 27 n 01 rice_paper 0 001 @ 14974264 n 0000 | a thin delicate material resembling paper; made from the rice-paper tree -14976001 27 n 02 roofing_paper 0 tar_paper 0 002 @ 14974264 n 0000 @ 15005716 n 0000 | a heavy paper impregnated with tar and used as part of a roof for waterproofing -14976170 27 n 02 ola 0 olla 0 002 @ 15105268 n 0000 #p 12589841 n 0000 | leaf or strip from a leaf of the talipot palm used in India for writing paper -14976323 27 n 01 ticker_tape 0 001 @ 14974264 n 0000 | a continuous thin ribbon of paper on which stock quotes are written -14976448 27 n 03 packing_material 0 packing 0 wadding 0 004 @ 14580897 n 0000 + 01483779 v 0201 ~ 14799601 n 0000 ~ 14976634 n 0000 | any material used especially to protect something -14976634 27 n 02 excelsior 0 wood_shavings 0 001 @ 14976448 n 0000 | thin curly wood shavings used for packing or stuffing -14976759 27 n 01 pantile 0 001 @ 15074568 n 0000 | a roofing tile with a S-shape; laid so that curves overlap -14976871 27 n 02 blacktop 0 blacktopping 0 003 @ 14977504 n 0000 + 01266604 v 0201 + 01266604 v 0101 | a black bituminous material used for paving roads or other areas; usually spread over crushed rock -14977075 27 n 01 macadam 0 002 @ 14977504 n 0000 + 01603418 v 0101 | broken stone used in macadamized roadways -14977188 27 n 02 tarmacadam 0 tarmac 0 002 @ 14977504 n 0000 + 01603418 v 0203 | a paving material of tar and broken stone; mixed in a factory and shaped during paving -14977358 27 n 03 parget 0 pargeting 0 pargetting 0 002 @ 14992287 n 0000 + 01361561 v 0101 | plaster used to coat outer walls and line chimneys -14977504 27 n 03 paving 0 pavement 0 paving_material 0 008 @ 00021939 n 0000 + 01267098 v 0201 + 01267098 v 0101 ~ 14769465 n 0000 ~ 14820180 n 0000 ~ 14976871 n 0000 ~ 14977075 n 0000 ~ 14977188 n 0000 | material used to pave an area -14977741 27 n 01 pay_dirt 0 001 @ 14688500 n 0000 | ore that yields a substantial profit to the miner -14977845 27 n 01 pearlite 0 006 @ 14929662 n 0000 #s 14802450 n 0000 #s 14801921 n 0000 %s 14805145 n 0000 %s 14859201 n 0000 ~ 14890485 n 0000 | a lamellar mixture of cementite and ferrite formed during the cooling of austenite; a constituent of steel and cast iron -14978114 27 n 01 pectic_acid 0 001 @ 14607521 n 0000 | a complex acid that occurs in ripe fruit and some vegetables -14978232 27 n 01 pectin 0 003 @ 14793921 n 0000 #s 03608661 n 0000 + 03097826 a 0101 | any of various water-soluble colloidal carbohydrates that occur in ripe fruit and vegetables; used in making fruit jellies and jams -14978453 27 n 01 pediculicide 0 001 @ 14980215 n 0000 | a chemical agent that kills lice -14978544 27 n 02 penicillinase 0 beta-lactamase 0 001 @ 14732946 n 0000 | enzyme produced by certain bacteria that inactivates penicillin and results in resistance to that antibiotic -14978729 27 n 01 pepsin 0 003 @ 14732946 n 0000 #s 05406128 n 0000 + 02908525 a 0101 | an enzyme produced in the stomach that splits proteins into peptones -14978887 27 n 01 pepsinogen 0 001 @ 14732946 n 0000 | precursor of pepsin; stored in the stomach walls and converted to pepsin by hydrochloric acid in the stomach -14979052 27 n 01 perboric_acid 0 001 @ 14783670 n 0000 | a form of boric acid -14979132 27 n 02 perfluorocarbon 0 PFC 0 002 @ 14871968 n 0000 @ 14877234 n 0000 | a powerful greenhouse gas emitted during the production of aluminum -14979285 27 n 01 Permalloy 0 001 @ 14962117 n 0000 | an 80/20 alloy of nickel and iron; easily magnetized and demagnetized -14979410 27 n 01 permanganate 0 002 @ 15010703 n 0000 ~ 14995278 n 0000 | a dark purple salt of permanganic acid; in water solution it is used as a disinfectant and antiseptic -14979588 27 n 01 permanganic_acid 0 001 @ 14607521 n 0000 | an unstable purple acid (HMnO4) known only in solution or of permanganate salts -14979730 27 n 01 peroxidase 0 004 @ 14971234 n 0000 ;c 00017222 n 0000 ~ 14606839 n 0000 ~ 14612618 n 0000 | any of a group of enzymes (occurring especially in plant cells) that catalyze the oxidation of a compound by a peroxide -14979961 27 n 01 peridot 0 002 @ 15078050 n 0000 @ 14812047 n 0000 | a pale green variety of chrysolite; used as a gemstone -14980087 27 n 01 peroxide 1 002 @ 14971519 n 0000 ~ 14775430 n 0000 | an inorganic compound containing the divalent ion -O-O- -14980215 27 n 01 pesticide 0 009 @ 14806838 n 0000 ~ 14598834 n 0000 ~ 14602721 n 0000 ~ 14919948 n 0000 ~ 14978453 n 0000 ~ 14982129 n 0000 ~ 15038316 n 0000 ~ 15039179 n 0000 ~ 15052555 n 0000 | a chemical used to kill pests (as rodents or insects) -14980468 27 n 01 petrochemical 0 001 @ 14727670 n 0000 | any compound obtained from petroleum or natural gas -14980579 27 n 06 petroleum 0 crude_oil 0 crude 0 rock_oil 0 fossil_oil 0 oil 1 004 @ 14966667 n 0000 @ 14686352 n 0000 %s 14633206 n 0000 ~ 14980784 n 0000 | a dark oil consisting mainly of hydrocarbons -14980784 27 n 02 residual_oil 0 resid 0 001 @ 14980579 n 0000 | oil products that remain after petroleum has been distilled -14980910 27 n 03 petrolatum 0 petroleum_jelly 0 mineral_jelly 0 005 @ 14925198 n 0000 @ 14586258 n 0000 #s 03920384 n 0000 #s 03107152 n 0000 ~ 04522309 n 0000 | a semisolid mixture of hydrocarbons obtained from petroleum; used in medicinal ointments and for lubrication -14981183 27 n 01 system 0 002 @ 00020827 n 0000 ;c 06089447 n 0000 | (physical chemistry) a sample of matter in which substances in different phases are in equilibrium; "in a static system oil cannot be replaced by water on a surface"; "a system generating hydrogen peroxide" -14981461 27 n 02 phenolic_plastic 0 phenolic_urea 0 001 @ 14592610 n 0000 | a plastic consisting of phenolic resins -14981579 27 n 01 phenylalanine 0 001 @ 14605787 n 0000 | an essential amino acid found in proteins and needed for growth of children and for protein metabolism in children and adults; abundant in milk and eggs; it is normally converted to tyrosine in the human body -14981847 27 n 01 phosgene 0 001 @ 14877585 n 0000 | a colorless poisonous gas that smells like new-mown hay; used in chemical warfare -14981983 27 n 01 phosphatase 0 001 @ 14732946 n 0000 | any of a group of enzymes that act as a catalyst in the hydrolysis of organic phosphates -14982129 27 n 01 phosphine 0 002 @ 14877585 n 0000 @ 14980215 n 0000 | a colorless gas with a strong fishy smell; used as a pesticide -14982265 27 n 03 phosphate 0 orthophosphate 0 inorganic_phosphate 0 003 @ 15010703 n 0000 ~ 14790137 n 0000 ~ 15046568 n 0000 | a salt of phosphoric acid -14982421 27 n 03 phosphocreatine 0 creatine_phosphate 0 creatine_phosphoric_acid 0 001 @ 14727670 n 0000 | an organic compound of creatine and phosphoric acid; found in the muscles of vertebrates where its hydrolysis releases energy for muscular contraction -14982681 27 n 01 phospholipid 0 003 @ 14938907 n 0000 #s 05426243 n 0000 ~ 14680040 n 0000 | any of various compounds composed of fatty acids and phosphoric acid and a nitrogenous base; an important constituent of membranes -14982907 27 n 02 phosphoric_acid 0 orthophosphoric_acid 0 001 @ 14972359 n 0000 | an acid used in fertilizers and soaps: H3PO4 -14983036 27 n 01 phthalic_acid 0 001 @ 14607521 n 0000 | a colorless acid used to make dyes and perfumes -14983143 27 n 01 phytochemical 0 003 @ 14806838 n 0000 ~ 14720962 n 0000 ~ 14869658 n 0000 | a chemical substance obtained from plants that is biologically active but not nutritive -14983326 27 n 01 picric_acid 0 001 @ 14607521 n 0000 | a yellow toxic highly explosive strong acid; used in high explosives and as a dye and in chemical reactions -14983491 27 n 01 pig_iron 0 007 @ 14642417 n 0000 #s 14802262 n 0000 #s 14801921 n 0000 ~ 14773447 n 0000 ~ 14812763 n 0000 ~ 14953005 n 0000 ~ 15049401 n 0000 | crude iron tapped from a blast furnace -14983694 27 n 01 pig_lead 0 001 @ 14643467 n 0000 | lead that is cast in pigs -14983774 27 n 02 plasmin 0 fibrinolysin 0 002 @ 14732946 n 0000 ~ 14983911 n 0000 | an enzyme that dissolves the fibrin of blood clots -14983911 27 n 01 plasminogen 0 001 @ 14983774 n 0000 | an inactive form of plasmin that occurs in plasma and is converted to plasmin by organic solvents -14984066 27 n 02 plasminogen_activator 0 urokinase 0 001 @ 14999106 n 0000 | protease produced in the kidney that converts plasminogen to plasmin and so initiates fibrinolysis -14984244 27 n 01 platinum_black 0 001 @ 14723628 n 0000 | a fine black powder of platinum; used as a catalyst in chemical reactions -14984378 27 n 01 polymerase 0 004 @ 14732946 n 0000 ~ 14984584 n 0000 ~ 14984687 n 0000 ~ 14984799 n 0000 | an enzyme that catalyzes the formation of new DNA and RNA from an existing strand of DNA or RNA -14984584 27 n 01 DNA_polymerase 0 001 @ 14984378 n 0000 | the enzyme responsible for DNA replication -14984687 27 n 02 transcriptase 0 RNA_polymerase 0 001 @ 14984378 n 0000 | the enzyme that copies DNA into RNA -14984799 27 n 01 reverse_transcriptase 0 001 @ 14984378 n 0000 | a polymerase that catalyzes the formation of DNA using RNA as a template; found especially in retroviruses -14984973 27 n 04 coloring_material 0 colouring_material 0 color 0 colour 0 014 @ 14580897 n 0000 + 02537092 v 0402 + 01696648 v 0402 + 00281101 v 0403 + 09938672 n 0301 ~ 03875218 n 0000 ~ 14917208 n 0000 ~ 14955030 n 0000 ~ 14985383 n 0000 ~ 14986004 n 0000 ~ 14988635 n 0000 ~ 14989820 n 0000 ~ 14990723 n 0000 ~ 15052970 n 0000 | any material used for its color; "she used a different color for the trim" -14985383 27 n 02 dye 0 dyestuff 0 028 @ 14984973 n 0000 + 00283090 v 0101 ~ 14754378 n 0000 ~ 14754705 n 0000 ~ 14754860 n 0000 ~ 14754985 n 0000 ~ 14770500 n 0000 ~ 14773275 n 0000 %p 14808147 n 0000 ~ 14986593 n 0000 ~ 14986719 n 0000 ~ 14986890 n 0000 ~ 14987025 n 0000 ~ 14987150 n 0000 ~ 14987341 n 0000 ~ 14987695 n 0000 ~ 14988337 n 0000 ~ 14988502 n 0000 ~ 14988961 n 0000 ~ 14989106 n 0000 ~ 14989243 n 0000 ~ 14989430 n 0000 ~ 15000858 n 0000 ~ 15001212 n 0000 ~ 15001500 n 0000 ~ 15001753 n 0000 ~ 15001887 n 0000 ~ 15002138 n 0000 | a usually soluble substance for staining or coloring e.g. fabrics or hair -14986004 27 n 01 tincture 0 004 @ 14984973 n 0000 + 00287560 v 0101 + 00286928 v 0103 ~ 14986144 n 0000 | a substances that colors metals -14986144 27 n 01 argent 0 002 @ 14986004 n 0000 + 00387392 a 0101 | a metal tincture used in heraldry to give a silvery appearance -14986277 27 n 02 alizarin 0 alizarine 0 002 @ 14989820 n 0000 ~ 14986438 n 0000 | an orange-red crystalline compound used in making red pigments and in dyeing -14986438 27 n 03 alizarin_carmine 0 alizarin_crimson 0 alizarin_red 0 001 @ 14986277 n 0000 | any of various acid dyes; used for dyeing wool scarlet red -14986593 27 n 03 bluing 0 blueing 0 blue 0 001 @ 14985383 n 0000 | used to whiten laundry or hair or give it a bluish tinge -14986719 27 n 03 bromophenol_blue 0 bromphenol_blue 0 tetrabromo-phenolsulfonephthalein 0 002 @ 14985383 n 0000 @ 14609198 n 0000 | a dye used as an acid-base indicator -14986890 27 n 02 bromothymol_blue 0 bromthymol_blue 0 002 @ 14985383 n 0000 @ 14609198 n 0000 | a dye used as an acid-base indicator -14987025 27 n 01 cochineal 0 001 @ 14985383 n 0000 | a red dyestuff consisting of dried bodies of female cochineal insects -14987150 27 n 01 cyanine_dye 0 001 @ 14985383 n 0000 | any of a class of dyes containing a -CH= group linking two heterocyclic rings containing nitrogen; used as sensitizers in photography -14987341 27 n 02 direct_dye 0 substantive_dye 0 001 @ 14985383 n 0000 | dye with a high affinity for cellulose fibers (cotton or rayon etc.) -14987484 27 n 02 eosin 0 bromeosin 0 001 @ 14987695 n 0000 | a red fluorescent dye resulting from the action of bromine on fluorescein; used in cosmetics and as a biological stain for studying cell structures -14987695 27 n 04 fluorescein 0 fluoresceine 0 fluorescent_dye 0 resorcinolphthalein 0 004 @ 14985383 n 0000 @ 14598383 n 0000 ;c 14589223 n 0000 ~ 14987484 n 0000 | a yellow dye that is visible even when highly diluted; used as an absorption indicator when silver nitrate solution is added to sodium chloride in order to precipitate silver chloride (turns pink when no chloride ions are left in solution and negative fluorescein ions are then absorbed) -14988150 27 n 02 fluorescein_isothiocyanate 0 fluorescein_isocyanate 0 001 @ 14988337 n 0000 | a fluorochrome commonly conjugated with antibodies for use in indirect immunofluorescence -14988337 27 n 01 fluorochrome 0 002 @ 14985383 n 0000 ~ 14988150 n 0000 | any of various fluorescent substances used in fluorescence microscopy to stain specimens -14988502 27 n 02 hair_dye 0 hair_coloring 0 003 @ 14985383 n 0000 ~ 14988741 n 0000 ~ 14988854 n 0000 | a dye or tint for the hair -14988635 27 n 01 hematochrome 0 001 @ 14984973 n 0000 | a reddish coloring material found in some algae -14988741 27 n 01 henna 0 002 @ 14988502 n 0000 + 00283664 v 0101 | a reddish brown dye used especially on hair -14988854 27 n 01 rinse 0 001 @ 14988502 n 0000 | a liquid preparation used on wet hair to give it a tint -14988961 27 n 02 Kendal_green 0 Kendal 0 001 @ 14985383 n 0000 | a green dye, often used to color cloth, which is obtained from the woad plant -14989106 27 n 01 lac_dye 0 002 @ 14985383 n 0000 %s 14701949 n 0000 | scarlet dye like cochineal; extracted with alkali from stick lac -14989243 27 n 02 lead_acetate 0 sugar_of_lead 0 002 @ 14599806 n 0000 @ 14985383 n 0000 | a poisonous white solid (Pb[CH3CO]2) used in dyeing cotton and in making enamels and varnishes -14989430 27 n 03 orchil 0 archil 0 cudbear 0 001 @ 14985383 n 0000 | a purplish dye obtained from orchil lichens -14989545 27 n 01 phenol 0 008 @ 14727670 n 0000 ~ 14615400 n 0000 ~ 14825487 n 0000 ~ 14825982 n 0000 ~ 14958800 n 0000 ~ 15004715 n 0000 ~ 15067025 n 0000 ~ 15073563 n 0000 | any of a class of weakly acidic organic compounds; molecule contains one or more hydroxyl groups -14989820 27 n 01 pigment 0 043 @ 14984973 n 0000 #s 03875218 n 0000 + 00287392 v 0101 + 00287258 v 0101 ~ 01398212 n 0000 ~ 01399065 n 0000 ~ 01399236 n 0000 ~ 01399366 n 0000 ~ 01399450 n 0000 ~ 14616740 n 0000 ~ 14671744 n 0000 ~ 14673978 n 0000 ~ 14701826 n 0000 ~ 14720962 n 0000 ~ 14756039 n 0000 ~ 14805412 n 0000 ~ 14811196 n 0000 ~ 14811435 n 0000 ~ 14811556 n 0000 ~ 14843640 n 0000 ~ 14869658 n 0000 ~ 14918380 n 0000 ~ 14918883 n 0000 ~ 14922960 n 0000 ~ 14923207 n 0000 ~ 14986277 n 0000 ~ 14990864 n 0000 ~ 14991004 n 0000 ~ 14991106 n 0000 ~ 14991210 n 0000 ~ 14991319 n 0000 ~ 15005386 n 0000 ~ 15012327 n 0000 ~ 15021927 n 0000 ~ 15024124 n 0000 ~ 15024997 n 0000 ~ 15026963 n 0000 ~ 15083146 n 0000 ~ 15089104 n 0000 ~ 15096048 n 0000 ~ 15096524 n 0000 ~ 15097722 n 0000 ~ 15108745 n 0000 | dry coloring material (especially a powder to be mixed with a liquid to produce paint, etc.) -14990723 27 n 01 pigment 1 001 @ 14984973 n 0000 | any substance whose presence in plant or animal tissues produces a characteristic color -14990864 27 n 01 bole 0 002 @ 14989820 n 0000 @ 14844693 n 0000 | a soft oily clay used as a pigment (especially a reddish brown pigment) -14991004 27 n 01 lake 0 001 @ 14989820 n 0000 | any of numerous bright translucent organic pigments -14991106 27 n 01 lake 1 001 @ 14989820 n 0000 | a purplish red pigment prepared from lac or cochineal -14991210 27 n 01 orange 0 002 @ 14989820 n 0000 + 00378892 a 0101 | any pigment producing the orange color -14991319 27 n 04 watercolor 0 water-color 0 watercolour 0 water-colour 0 003 @ 14989820 n 0000 + 10770545 n 0302 + 01696435 v 0102 | water-soluble pigment -14991476 27 n 01 pine_tar 0 001 @ 15104088 n 0000 | a dark viscous substance obtained from the destructive distillation of pine wood -14991611 27 n 01 pisang_wax 0 001 @ 15094294 n 0000 | a wax obtained from the leaves of a plantain -14991712 27 n 02 plant_material 0 plant_substance 0 007 @ 14580897 n 0000 ~ 14673462 n 0000 ~ 14805899 n 0000 ~ 14823227 n 0000 ~ 14991927 n 0000 ~ 15062641 n 0000 ~ 15098161 n 0000 | material derived from plants -14991927 27 n 01 plant_product 0 009 @ 14991712 n 0000 ~ 03060074 n 0000 ~ 04442831 n 0000 ~ 14709265 n 0000 ~ 14744841 n 0000 ~ 14876473 n 0000 ~ 14894481 n 0000 ~ 14959644 n 0000 ~ 15062778 n 0000 | a product made from plant material -14992165 27 n 01 plasma 1 001 @ 14806333 n 0000 | a green slightly translucent variety of chalcedony used as a gemstone -14992287 27 n 01 plaster 0 010 @ 14586258 n 0000 @ 14825062 n 0000 + 01360899 v 0101 + 01362568 v 0101 ~ 03342657 n 0000 ~ 14891988 n 0000 ~ 14977358 n 0000 ~ 15006012 n 0000 ~ 15048888 n 0000 ~ 15062057 n 0000 | a mixture of lime or gypsum with sand and water; hardens into a smooth solid; used to cover walls and ceilings -14992613 27 n 02 plaster_of_Paris 0 plaster 1 004 @ 14937521 n 0000 + 01362568 v 0201 ~ 14676756 n 0000 %s 14677778 n 0000 | any of several gypsum cements; a white powder (a form of calcium sulphate) that forms a paste when mixed with water and hardens into a solid; used in making molds and sculptures and casts for broken limbs -14992945 27 n 01 puddle 0 003 @ 14825062 n 0000 + 01484267 v 0101 + 01624743 v 0101 | a mixture of wet clay and sand that can be used to line a pond and that is impervious to water when dry -14993137 27 n 05 podzol 0 podzol_soil 0 podsol 0 podsol_soil 0 podsolic_soil 0 001 @ 14844693 n 0000 | a soil that develops in temperate to cold moist climates under coniferous or heath vegetation; an organic mat over a grey leached layer -14993378 27 n 01 poison_gas 0 004 @ 14877585 n 0000 @ 03013162 n 0000 ~ 14957270 n 0000 ~ 14960721 n 0000 | a gas that is poisonous to breath or contact; used in chemical warfare -14993559 27 n 01 polyester 2 002 @ 14850483 n 0000 @ 14592610 n 0000 | a complex ester used for making fibers or resins or plastics or as a plasticizer -14993713 27 n 01 polyester 0 002 @ 14902141 n 0000 ~ 14993868 n 0000 | any of numerous synthetic resins; they are light and strong and weather resistant -14993868 27 n 01 polyester_fiber 0 001 @ 14993713 n 0000 | a quick-drying resilient synthetic fiber consisting primarily of polyester -14994004 27 n 02 polysaccharide 0 polyose 0 010 @ 14792703 n 0000 ~ 03514974 n 0000 ~ 14732722 n 0000 %s 14752323 n 0000 ~ 14793921 n 0000 ~ 14795749 n 0000 ~ 14795959 n 0000 ~ 14834325 n 0000 ~ 14956143 n 0000 ~ 15053867 n 0000 | any of a class of carbohydrates whose molecules contain chains of monosaccharide molecules -14994328 27 n 01 polymer 0 013 @ 14818238 n 0000 + 02782225 a 0101 + 00266586 v 0101 + 00266197 v 0101 ~ 14830364 n 0000 ~ 14832193 n 0000 ~ 14902141 n 0000 ~ 14902949 n 0000 ~ 14903095 n 0000 ~ 14935319 n 0000 ~ 14966058 n 0000 ~ 15040493 n 0000 ~ 15079795 n 0000 | a naturally occurring or synthetic compound consisting of large molecules made up of a linked series of repeated simple monomers -14994726 27 n 01 polyphosphate 0 001 @ 15010703 n 0000 | a salt or ester of polyphosphoric acid -14994824 27 n 01 polyunsaturated_fat 0 001 @ 14864360 n 0000 | a class of fats having long carbon chains with many double bonds unsaturated with hydrogen atoms; used in some margarines; supposedly associated with low blood cholesterol -14995061 27 n 02 potassium_ferrocyanide 0 yellow_prussiate_of_potash 0 001 @ 14866605 n 0000 | a cyanide compound that is prepared by the reaction of potassium cyanide with ferrous salts; commonly used by gardeners -14995278 27 n 02 potassium_permanganate 0 permanganate_of_potash 0 001 @ 14979410 n 0000 | a poisonous salt that forms dark purple crystals and is purple-red when dissolved in water; used as an oxidizing and bleaching agent and as a disinfectant and antiseptic -14995541 27 n 01 sandstone 0 008 @ 14697485 n 0000 ~ 09280236 n 0000 ~ 09305229 n 0000 ~ 14700594 n 0000 ~ 14785840 n 0000 ~ 14995812 n 0000 ~ 14995918 n 0000 ~ 15042194 n 0000 | a sedimentary rock consisting of sand consolidated with some cement (clay or quartz etc.) -14995812 27 n 01 bluestone 0 001 @ 14995541 n 0000 | bluish-grey sandstone used for paving and building -14995918 27 n 01 greensand 0 001 @ 14995541 n 0000 | an olive-green sandstone containing glauconite -14996020 27 n 01 polish 0 004 @ 14873641 n 0000 + 01245637 v 0101 ~ 15039568 n 0000 ~ 15042542 n 0000 | a preparation used in polishing -14996158 27 n 02 polypropylene 0 polypropene 0 001 @ 14592610 n 0000 | a polymer of propylene used as a thermoplastic molding material -14996295 27 n 01 polyvinyl-formaldehyde 0 001 @ 14592610 n 0000 | a polymer of vinyl formaldehyde -14996395 27 n 02 porphyry 0 porphyritic_rock 0 003 @ 14931879 n 0000 + 03101056 a 0101 %s 14891678 n 0000 | any igneous rock with crystals embedded in a finer groundmass of minerals -14996579 27 n 01 porpoise_oil 0 001 @ 14755077 n 0000 | a yellow fatty oil obtained from porpoises and used as a fine lubricant -14996709 27 n 01 dolphin_oil 0 001 @ 14755077 n 0000 | an unsaturated fatty oil obtained from dolphins and used as a fine lubricant -14996843 27 n 03 potash 0 caustic_potash 0 potassium_hydroxide 0 002 @ 14935555 n 0000 @ 14943814 n 0000 | a potassium compound often used in agriculture and industry -14997012 27 n 03 powder 0 pulverization 0 pulverisation 0 006 @ 15046900 n 0000 + 00332445 v 0303 + 00332445 v 0202 + 02233390 a 0102 + 00332154 v 0103 + 00332154 v 0101 | a solid substance in the form of tiny loose particles; a solid that has been pulverized -14997274 27 n 01 prairie_soil 0 001 @ 14844693 n 0000 | a type of soil occurring under grasses in temperate climates -14997393 27 n 01 precipitant 0 003 @ 14778436 n 0000 + 00474994 v 0101 ~ 14835686 n 0000 | an agent that causes a precipitate to form -14997529 27 n 01 preservative 0 003 @ 14818238 n 0000 + 01888554 a 0101 ~ 15050011 n 0000 | a chemical compound that is added to protect against decay or decomposition -14997699 27 n 01 product 0 003 @ 14806838 n 0000 ~ 14613841 n 0000 ~ 14868564 n 0000 | a chemical substance formed as a result of a chemical reaction; "a product of lime and nitric acid" -14997888 27 n 01 percolate 0 005 @ 14868564 n 0000 + 01458228 v 0101 + 01458464 v 0101 + 02060437 v 0101 + 02071627 v 0102 | the product of percolation -14998042 27 n 02 propanal 0 propionaldehyde 0 001 @ 14584765 n 0000 | a colorless liquid aldehyde -14998142 27 n 02 propanol 0 propyl_alcohol 0 001 @ 14708720 n 0000 | a clear colorless volatile liquid (alcohol) used as a solvent and antiseptic -14998290 27 n 02 propenal 0 acrolein 0 001 @ 14584765 n 0000 | a pungent colorless unsaturated liquid aldehyde made from propene -14998421 27 n 02 propenoate 0 acrylate 0 001 @ 15010703 n 0000 | a salt or ester of propenoic acid -14998522 27 n 02 propenoic_acid 0 acrylic_acid 0 001 @ 14739360 n 0000 | an unsaturated liquid carboxylic acid used in the manufacture of acrylic resins -14998677 27 n 03 propenonitrile 0 acrylonitrile 0 vinyl_cyanide 0 001 @ 14827346 n 0000 | a colorless liquid unsaturated nitrile made from propene -14998826 27 n 02 propylene 0 propene 0 001 @ 14877585 n 0000 | a flammable gas obtained by cracking petroleum; used in organic synthesis -14998965 27 n 03 propyl 0 propyl_group 0 propyl_radical 0 001 @ 14621446 n 0000 | the monovalent organic group C3H7- obtained from propane -14999106 27 n 04 protease 0 peptidase 0 proteinase 0 proteolytic_enzyme 0 005 @ 14732946 n 0000 ~ 14669823 n 0000 ~ 14735642 n 0000 ~ 14984066 n 0000 ~ 15004149 n 0000 | any enzyme that catalyzes the splitting of proteins into smaller peptide fractions and amino acids by a process known as proteolysis -14999411 27 n 02 ptomaine 0 ptomain 0 003 @ 14739004 n 0000 ~ 14863177 n 0000 ~ 15095771 n 0000 | any of various amines (such as putrescine or cadaverine) formed by the action of putrefactive bacteria -14999614 27 n 01 Pyrex 0 002 @ 14881303 n 0000 ;u 06851742 n 0000 | a borosilicate glass with a low coefficient of expansion; used for heat-resistant glassware in cooking and chemistry -14999801 27 n 01 pyrimidine 0 001 @ 14727670 n 0000 | a heterocyclic organic compound with a penetrating odor -14999913 27 n 01 pyrimidine 1 003 @ 14618253 n 0000 ~ 14828511 n 0000 ~ 15072857 n 0000 | any of several basic compounds derived from pyrimidine -15000060 27 n 01 pyrope 0 001 @ 14676042 n 0000 | a deep red garnet used as a gemstone -15000149 27 n 01 pyrophoric_alloy 0 003 @ 14586769 n 0000 ~ 14866369 n 0000 ~ 14953240 n 0000 | an alloy that emits sparks when struck or scratched with steel; used in lighter flints -15000334 27 n 01 pyruvic_acid 0 001 @ 14607521 n 0000 | a colorless acid formed as an important intermediate in metabolism or fermentation -15000475 27 n 01 quassia 0 002 @ 14727670 n 0000 ~ 12718685 n 0000 | a bitter compound used as an insecticide and tonic and vermifuge; extracted from the wood and bark of trees of the genera Quassia and Picrasma -15000689 27 n 01 quenched_steel 0 003 @ 14802450 n 0000 %s 14948377 n 0000 ~ 14968308 n 0000 | steel that has been hardened by immersing it in water or oil to cool it -15000858 27 n 01 quercitron 0 001 @ 14985383 n 0000 | a yellow dye made from the bark of the quercitron oak tree -15000973 27 n 02 quinone 0 benzoquinone 0 002 @ 14818238 n 0000 ~ 15082890 n 0000 | any of a class of aromatic yellow compounds including several that are biologically important as coenzymes or acceptors or vitamins; used in making dyes -15001212 27 n 01 radiopaque_dye 0 001 @ 14985383 n 0000 | dye that does not allow the passage of X rays or other radiation; used to outline certain organs during X-ray examination -15001394 27 n 01 rhodolite 0 001 @ 14676042 n 0000 | a red or pink variety of garnet used as a gemstone -15001500 27 n 03 safranine 0 safranin 0 saffranine 0 002 @ 14985383 n 0000 ~ 15001640 n 0000 | any of a class of chiefly red organic dyes -15001640 27 n 01 pheno-safranine 0 001 @ 15001500 n 0000 | a purplish red water-soluble dye used in microscopy -15001753 27 n 01 Tyrian_purple 0 001 @ 14985383 n 0000 | a red-purple to deep purple dye obtained from snails or made synthetically -15001887 27 n 02 vat_dye 0 vat_color 0 001 @ 14985383 n 0000 | a water-insoluble dye that is applied by reducing the dye to an alkaline form, applying the dye, then regenerating the insoluble dye by oxidation in the material; used for dyeing cotton -15002138 27 n 01 woad 0 001 @ 14985383 n 0000 | a blue dyestuff obtained from the woad plant -15002233 27 n 01 radioactive_material 0 002 @ 14580897 n 0000 ~ 15002346 n 0000 | material that is radioactive -15002346 27 n 01 radioactive_waste 0 003 @ 15002233 n 0000 ~ 14907703 n 0000 ~ 14943359 n 0000 | useless radioactive materials that are left after some laboratory or commercial process is completed -15002546 27 n 02 raffia 0 raphia 0 001 @ 14959644 n 0000 | leaf fibers of the raffia palm tree; used to make baskets and mats etc. -15002679 27 n 01 raffinose 0 001 @ 15080571 n 0000 | a trisaccharide that occurs in sugar beets and cotton seeds and certain cereals -15002814 27 n 01 rauwolfia 0 002 @ 14712692 n 0000 #s 04078236 n 0000 | any of several alkaloids extracted from the shrub Rauwolfia serpentina -15002959 27 n 02 raveling 0 ravelling 0 004 @ 14866889 n 0000 #s 14938467 n 0000 + 01521367 v 0201 + 01521367 v 0101 | a bit of fiber that has become separated from woven fabric -15003139 27 n 02 red_brass 0 guinea_gold 0 001 @ 14716997 n 0000 | brass with enough copper to give it a reddish tint; used for plumbing pipe and other brass hardware and in cheap jewelry -15003329 27 n 02 red_lead 0 minium 0 002 @ 14971519 n 0000 + 01696893 v 0201 | a reddish oxide of lead (Pb3O4) used as a pigment in paints and in glass and ceramics -15003496 27 n 01 red_tide 0 001 @ 15008847 n 0000 | seawater that is discolored by large numbers of certain dinoflagellates that produce saxitoxin -15003645 27 n 01 reductase 0 002 @ 14732946 n 0000 ~ 14612444 n 0000 | an enzyme that catalyses the biochemical reduction of some specified substance -15003797 27 n 01 refrigerant 0 004 @ 00020090 n 0000 + 01253661 a 0101 + 00371051 v 0101 ~ 14826328 n 0000 | any substance used to provide cooling (as in a refrigerator) -15003969 27 n 01 remover 0 002 @ 15047313 n 0000 + 00173338 v 0101 | a solvent that removes a substance (usually from a surface); "paint remover"; "rust remover"; "hair remover" -15004149 27 n 01 renin 0 001 @ 14999106 n 0000 | a proteolytic enzyme secreted by the kidneys; catalyzes the formation of angiotensin and thus affects blood pressure -15004317 27 n 02 rennin 0 chymosin 0 004 @ 14732946 n 0000 @ 14735953 n 0000 #s 05406128 n 0000 #s 14738623 n 0000 | an enzyme that occurs in gastric juice; causes milk to coagulate -15004501 27 n 01 residue 0 007 @ 00020827 n 0000 + 02835654 a 0102 + 02835654 a 0101 ~ 14677485 n 0000 ~ 14769160 n 0000 ~ 14824556 n 0000 ~ 14838539 n 0000 | matter that remains after something has been removed -15004715 27 n 01 resorcinol 0 001 @ 14989545 n 0000 | a crystalline phenol obtained from various resins; used in ointments for acne and in dandruff shampoos -15004874 27 n 01 restrainer 0 002 @ 14806838 n 0000 ~ 14861566 n 0000 | a chemical that is added to a photographic developer in order to retard development and reduce the amount of fog on a film -15005071 27 n 03 restriction_endonuclease 0 restriction_nuclease 0 restriction_enzyme 0 001 @ 14605415 n 0000 | any of the enzymes that cut nucleic acid at specific restriction sites and produce restriction fragments; obtained from bacteria (where they cripple viral invaders); used in recombinant DNA technology -15005386 27 n 02 retinene 0 retinal 0 003 @ 14989820 n 0000 #s 15088869 n 0000 + 02979139 a 0201 | either of two yellow to red retinal pigments formed from rhodopsin by the action of light -15005577 27 n 01 ridge_tile 0 001 @ 15074568 n 0000 | a decorative tile that is bent in cross section; used to cover the ridge of a roof -15005716 27 n 01 roofing_material 0 005 @ 14786479 n 0000 ~ 14976001 n 0000 ~ 15043002 n 0000 ~ 15069712 n 0000 ~ 15074568 n 0000 | building material used in constructing roofs -15005895 27 n 01 rose_quartz 0 001 @ 14693733 n 0000 | a translucent rose-red variety of quartz used for ornaments -15006012 27 n 01 roughcast 0 001 @ 14992287 n 0000 | a coarse plaster for the surface of external walls -15006118 27 n 01 latex 0 002 @ 14852913 n 0000 ~ 15006258 n 0000 | a milky exudate from certain plants that coagulates on exposure to air -15006258 27 n 05 rubber 0 natural_rubber 0 India_rubber 0 gum_elastic 0 caoutchouc 0 009 @ 15006118 n 0000 + 00844869 a 0101 + 00136254 v 0103 + 00136254 v 0101 ~ 14872875 n 0000 ~ 15006682 n 0000 ~ 15007190 n 0000 ~ 15007534 n 0000 ~ 15007677 n 0000 | an elastic material obtained from the latex sap of trees (especially trees of the genera Hevea and Ficus) that can be vulcanized and finished into a variety of products -15006682 27 n 01 crepe_rubber 0 001 @ 15006258 n 0000 | crude natural rubber; used mainly for shoe soles -15006789 27 n 02 rubber 1 synthetic_rubber 0 005 @ 14901959 n 0000 ~ 15007016 n 0000 ~ 15007377 n 0000 ~ 15007803 n 0000 ~ 15007917 n 0000 | any of various synthetic elastic materials whose properties resemble natural rubber -15007016 27 n 01 silicone_rubber 0 001 @ 15006789 n 0000 | made from silicone elastomers; retains flexibility resilience and tensile strength over a wide temperature range -15007190 27 n 01 cold_rubber 0 001 @ 15006258 n 0000 | a rubber made at low temperatures (5 degrees Centigrade) which is tougher than conventional rubber and is often used in car tires -15007377 27 n 01 neoprene 0 002 @ 15006789 n 0000 %s 14912245 n 0000 | a synthetic rubber that is resistant to oils and aging; used in waterproof products -15007534 27 n 03 hard_rubber 0 vulcanite 0 ebonite 0 001 @ 15006258 n 0000 | a hard nonresilient rubber formed by vulcanizing natural rubber -15007677 27 n 01 Para_rubber 0 001 @ 15006258 n 0000 | a type of natural rubber obtained from tropical South American trees -15007803 27 n 02 buna 0 buna_rubber 0 002 @ 15006789 n 0000 %s 14912092 n 0000 | made by polymerizing butadiene -15007917 27 n 01 butyl_rubber 0 001 @ 15006789 n 0000 | synthetic rubber made by polymerizing isobutylene -15008025 27 n 01 butyl 0 003 @ 14621446 n 0000 + 00184633 v 0101 %s 14787270 n 0000 | a hydrocarbon radical (C4H9) -15008142 27 n 01 ruby 0 002 @ 15078050 n 0000 @ 14672717 n 0000 | a transparent deep red variety of corundum; used as a gemstone and in lasers -15008287 27 n 03 ruddle 0 reddle 0 raddle 0 001 @ 14923458 n 0000 | a red iron ore used in dyeing and marking -15008399 27 n 01 rutile 0 002 @ 14662574 n 0000 %s 14659211 n 0000 | a mineral consisting of titanium dioxide in crystalline form; occurs in metamorphic and plutonic rocks and is a major source of titanium -15008607 27 n 02 rain 0 rainwater 0 003 @ 15009326 n 0000 + 02550333 a 0102 + 02756558 v 0101 | drops of fresh water that fall as precipitation from clouds -15008765 27 n 01 condensate 0 001 @ 15009326 n 0000 | a product of condensation -15008847 27 n 03 seawater 0 saltwater 0 brine 0 012 @ 14845743 n 0000 + 01074062 a 0302 + 00216561 v 0301 ! 15009326 n 0201 %s 14632129 n 0000 %s 14641397 n 0000 %s 14650807 n 0000 %s 14655371 n 0000 %s 14672023 n 0000 %s 14937225 n 0000 ~ 15003496 n 0000 %s 15009192 n 0000 | water containing salts; "the water in the ocean is all saltwater" -15009192 27 n 01 evaporite 0 002 @ 09428967 n 0000 #s 15008847 n 0000 | the sediment that is left after the evaporation of seawater -15009326 27 n 02 fresh_water 0 freshwater 0 004 @ 14845743 n 0000 ! 15008847 n 0102 ~ 15008607 n 0000 ~ 15008765 n 0000 | water that is not salty -15009474 27 n 03 Rochelle_salt 0 Rochelle_salts 0 potassium_sodium_tartrate 0 001 @ 15011987 n 0000 | a double salt used in Seidlitz powder; acts as a cathartic -15009637 27 n 03 Seidlitz_powder 0 Seidlitz_powders 0 Rochelle_powder 0 001 @ 04025748 n 0000 | an effervescing salt containing sodium bicarbonate and Rochelle salt and tartaric acid; used as a cathartic -15009843 27 n 01 salicylate 0 005 @ 15010703 n 0000 @ 03828465 n 0000 ~ 02748618 n 0000 ~ 14952441 n 0000 ~ 15010430 n 0000 | a salt of salicylic acid (included in several commonly used drugs) -15010038 27 n 02 salicylic_acid 0 2-hydroxybenzoic_acid 0 003 @ 14613922 n 0000 #s 02748618 n 0000 #s 03195118 n 0000 | a white crystalline substance with a bitter aftertaste; used as a fungicide or in making aspirin or dyes or perfumes -15010277 27 n 01 salmon_oil 0 001 @ 14755077 n 0000 | a fatty oil obtained from the wastes in canning salmon; used in making soap and dressing leather -15010430 27 n 02 salol 0 phenyl_salicylate 0 001 @ 15009843 n 0000 | a white powder with a pleasant taste and odor; used to absorb light in sun tan lotions or as a preservative or an antiseptic or a coating for pills in which the medicine is intended for enteric release -15010703 27 n 01 salt 0 064 @ 14818238 n 0000 + 01073822 a 0101 ~ 14599806 n 0000 ~ 14604184 n 0000 ~ 14610261 n 0000 ~ 14610703 n 0000 ~ 14611279 n 0000 ~ 14614245 n 0000 ~ 14615724 n 0000 ~ 14616410 n 0000 ~ 14679780 n 0000 ~ 14684607 n 0000 ~ 14712036 n 0000 ~ 14744589 n 0000 ~ 14775067 n 0000 ~ 14783588 n 0000 ~ 14784198 n 0000 ~ 14789504 n 0000 ~ 14790259 n 0000 ~ 14792281 n 0000 ~ 14798450 n 0000 ~ 14798709 n 0000 ~ 14811826 n 0000 ~ 14826767 n 0000 ~ 14861566 n 0000 ~ 14861887 n 0000 ~ 14862192 n 0000 ~ 14866043 n 0000 ~ 14866605 n 0000 ~ 14871883 n 0000 ~ 14872325 n 0000 ~ 14884581 n 0000 ~ 14904359 n 0000 ~ 14923872 n 0000 ~ 14937225 n 0000 ~ 14937521 n 0000 ~ 14947445 n 0000 ~ 14955246 n 0000 ~ 14955559 n 0000 ~ 14970645 n 0000 ~ 14970920 n 0000 ~ 14979410 n 0000 ~ 14982265 n 0000 ~ 14994726 n 0000 ~ 14998421 n 0000 ~ 15009843 n 0000 ~ 15011987 n 0000 ~ 15012999 n 0000 ~ 15013139 n 0000 ~ 15013269 n 0000 ~ 15013450 n 0000 ~ 15013764 n 0000 ~ 15013875 n 0000 ~ 15016726 n 0000 ~ 15040033 n 0000 ~ 15044844 n 0000 ~ 15045030 n 0000 ~ 15045216 n 0000 ~ 15063493 n 0000 ~ 15070098 n 0000 ~ 15081957 n 0000 ~ 15085836 n 0000 ~ 15086811 n 0000 ~ 15112828 n 0000 | a compound formed by replacing hydrogen in an acid by a metal (or a radical that acts like a metal) -15011987 27 n 01 double_salt 0 006 @ 15010703 n 0000 @ 15051705 n 0000 ~ 14628119 n 0000 ~ 14628307 n 0000 ~ 15009474 n 0000 ~ 15012327 n 0000 | a solution of two simple salts that forms a single substance on crystallization -15012214 27 n 01 parathion 0 001 @ 14919948 n 0000 | a colorless and odorless toxic oil used as an insecticide -15012327 27 n 01 Paris_green 0 003 @ 15011987 n 0000 @ 14989820 n 0000 @ 14919948 n 0000 | a toxic double salt of copper arsenate and copper acetate -15012478 27 n 01 rotenone 0 001 @ 14919948 n 0000 | a white crystalline insecticide that has low toxicity for mammals; is used in home gardens; extracted from the roots of derris and cube -15012668 27 n 01 samarskite 0 003 @ 14662574 n 0000 #s 14932741 n 0000 %s 14638041 n 0000 | a complex black mineral occurring in pegmatites -15012810 27 n 01 sapphirine 0 001 @ 14662574 n 0000 | a rare light blue or green mineral; consists of aluminum and magnesium silicate and occurs as small grains in some metamorphic rocks -15012999 27 n 01 bile_salt 0 001 @ 15010703 n 0000 | a salt of bile acid and a base; functions as an emulsifier of lipids and fatty acids -15013139 27 n 02 Glauber's_salt 0 Glauber's_salts 0 001 @ 15010703 n 0000 | (Na2SO4.10H2O) a colorless salt used as a cathartic -15013269 27 n 04 cream_of_tartar 0 tartar 0 potassium_bitartrate 0 potassium_hydrogen_tartrate 0 002 @ 15010703 n 0000 + 03123296 a 0201 | a salt used especially in baking powder -15013450 27 n 01 sodium_chlorate 0 001 @ 15010703 n 0000 | a colorless salt (NaClO3) used as a weed killer and an antiseptic -15013577 27 n 01 dichromic_acid 0 001 @ 14607521 n 0000 | the hypothetical acid (H2Cr2O7) from which dichromates are derived; known only in solution and in the form of dichromate salts -15013764 27 n 02 bichromate 0 dichromate 0 001 @ 15010703 n 0000 | a salt of the hypothetical dichromic acid -15013875 27 n 02 sodium_dichromate 0 sodium_bichromate 0 002 @ 14955030 n 0000 @ 15010703 n 0000 | a red-orange salt used as a mordant -15014012 27 n 01 ammonium_nitrate 0 003 @ 15015501 n 0000 #s 14859344 n 0000 #s 03826945 n 0000 | used as an explosive and fertilizer and rocket propellant -15014170 27 n 01 silver_nitrate 0 004 @ 15015501 n 0000 @ 15014529 n 0000 #s 03284482 n 0000 ~ 15014406 n 0000 | a nitrate used in making photographic emulsions; also used in medicine as a cautery and as a topical antibacterial agent -15014406 27 n 01 lunar_caustic 0 001 @ 15014170 n 0000 | silver nitrate fused into sticks and formerly used as a caustic -15014529 27 n 01 caustic 0 004 @ 14818238 n 0000 + 00587376 a 0101 ~ 14943814 n 0000 ~ 15014170 n 0000 | any chemical substance that burns or destroys living tissue -15014696 27 n 02 caulk 0 caulking 0 001 @ 14705718 n 0000 | a waterproof filler and sealant that is used in building and repair to make watertight -15014845 27 n 01 roan 0 001 @ 14759722 n 0000 | a soft sheepskin leather that is colored and finished to resemble morocco; used in bookbinding -15014990 27 n 02 sodium_hydroxide 0 caustic_soda 0 002 @ 14935555 n 0000 @ 14943814 n 0000 | a strongly alkaline caustic used in manufacturing soap and paper and aluminum and various sodium compounds -15015192 27 n 01 silver_bromide 0 002 @ 14785625 n 0000 #s 03284482 n 0000 | a bromide that darkens when exposed to light; used in making photographic emulsions -15015355 27 n 01 silver_iodide 0 001 @ 14922371 n 0000 | an iodide that is used in photography, in seeding clouds to make rain, and in medicine -15015501 27 n 01 nitrate 0 014 @ 14818238 n 0000 + 00504901 v 0101 + 00504676 v 0101 + 00502478 v 0101 + 00185103 v 0101 ~ 14789724 n 0000 ~ 14794993 n 0000 ~ 14860603 n 0000 ~ 14861355 n 0000 ~ 14886579 n 0000 ~ 15014012 n 0000 ~ 15014170 n 0000 %s 15015872 n 0000 ~ 15085175 n 0000 | any compound containing the nitrate group (such as a salt or ester of nitric acid) -15015872 27 n 01 nitro_group 0 002 @ 14621446 n 0000 #s 15015501 n 0000 | the group -NO3 -15015963 27 n 01 nitrite 0 002 @ 14621446 n 0000 ~ 15016123 n 0000 | the radical -NO2 or any compound containing it (such as a salt or ester of nitrous acid) -15016123 27 n 01 sodium_nitrite 0 001 @ 15015963 n 0000 | nitrite used to preserve and color food especially in meat and fish products; implicated in the formation of suspected carcinogens -15016314 27 n 02 gunpowder 0 powder 1 001 @ 03304730 n 0000 | a mixture of potassium nitrate, charcoal, and sulfur in a 75:15:10 ratio which is used in gunnery, time fuses, and fireworks -15016503 27 n 02 smokeless_powder 0 Ballistite 0 002 @ 03304730 n 0000 %s 14795432 n 0000 | an explosive (trade name Ballistite) that burns with relatively little smoke; contains pyrocellulose and is used as a propellant -15016726 27 n 01 microcosmic_salt 0 001 @ 15010703 n 0000 | a white salt present in urine and used to test for metal oxides -15016852 27 n 01 chloride 1 002 @ 14904359 n 0000 ~ 14861042 n 0000 | any salt of hydrochloric acid (containing the chloride ion) -15016984 27 n 01 trichloride 0 002 @ 15017604 n 0000 ~ 15017121 n 0000 | any compound containing three chlorine atoms in each molecule -15017121 27 n 02 nitrogen_trichloride 0 Agene 0 004 @ 15016984 n 0000 + 00517365 v 0201 + 00517365 v 0202 ;u 06845599 n 0201 | a yellow pungent volatile oil (trade name Agene) formerly used for bleaching and aging flour -15017343 27 n 02 dichloride 0 bichloride 0 001 @ 15017604 n 0000 | a compound containing two chlorine atoms per molecule -15017466 27 n 01 perchloride 0 002 @ 15017604 n 0000 ~ 14923733 n 0000 | a chloride containing an unusually high proportion of chlorine -15017604 27 n 01 chloride 0 011 @ 14818238 n 0000 ~ 14950937 n 0000 ~ 15016984 n 0000 ~ 15017343 n 0000 ~ 15017466 n 0000 ~ 15017878 n 0000 ~ 15018013 n 0000 ~ 15018169 n 0000 ~ 15018318 n 0000 ~ 15018448 n 0000 ~ 15025228 n 0000 | any compound containing a chlorine atom -15017878 27 n 02 aluminum_chloride 0 aluminium_chloride 0 001 @ 15017604 n 0000 | a chloride used as a wood preservative or catalyst -15018013 27 n 02 methylene_chloride 0 dichloromethane 0 001 @ 15017604 n 0000 | a nonflammable liquid used as a solvent and paint remover and refrigerant -15018169 27 n 01 obidoxime_chloride 0 002 @ 15017604 n 0000 @ 02719588 n 0000 | a chloride used as an antidote for nerve gases such as sarin or VX -15018318 27 n 01 silver_chloride 0 001 @ 15017604 n 0000 | a chloride used chiefly in the manufacture of photographic emulsions -15018448 27 n 01 stannic_chloride 0 001 @ 15017604 n 0000 | a colorless caustic liquid made by treating tin with chlorine -15018572 27 n 01 stannous_fluoride 0 001 @ 14871601 n 0000 | a white powder that is used to fluoridate toothpaste -15018688 27 n 03 staple 1 staple_fiber 0 staple_fibre 0 001 @ 14959234 n 0000 | a natural fiber (raw cotton, wool, hemp, flax) that can be twisted to form yarn; "staple fibers vary widely in length" -15018889 27 n 01 starch 1 001 @ 14873641 n 0000 | a commercial preparation of starch that is used to stiffen textile fabrics in laundering -15019030 27 n 01 sand 0 008 @ 14844693 n 0000 #s 14820180 n 0000 #s 09217230 n 0000 #s 09421951 n 0000 #s 09442595 n 0000 #s 09402944 n 0000 + 00142040 a 0102 %s 14654541 n 0000 | a loose material consisting of grains of rock or coral -15019267 27 n 02 sangapenum 0 gum_sangapenum 0 001 @ 14898470 n 0000 | a variety of gum -15019357 27 n 01 water_sapphire 0 002 @ 14672544 n 0000 @ 15078050 n 0000 | a deep blue cordierite often used as a gemstone -15019483 27 n 01 sapphire 0 003 @ 15078050 n 0000 @ 14672717 n 0000 ~ 15053703 n 0000 | a precious transparent stone of rich blue corundum valued as a gemstone -15019645 27 n 01 sarcosine 0 001 @ 14601829 n 0000 | a sweetish crystalline amino acid -15019734 27 n 03 sard 0 sardine 0 sardius 0 001 @ 14806333 n 0000 | a deep orange-red variety of chalcedony -15019844 27 n 01 sardine_oil 0 001 @ 14755077 n 0000 | oil obtained from sardines and used chiefly as a lubricant and in soap -15019972 27 n 01 sardonyx 0 001 @ 14969523 n 0000 | an onyx characterized by parallel layers of sard and a different colored mineral -15020107 27 n 01 sawdust 0 001 @ 15098161 n 0000 | fine particles of wood made by sawing wood -15020203 27 n 01 saw_log 0 001 @ 14942762 n 0000 | log large enough to be sawed into boards -15020297 27 n 01 saxitoxin 0 001 @ 15036321 n 0000 | a powerful neurotoxin produced by certain dinoflagellates found in red tides; it can accumulate in mollusks that feed on the dinoflagellates and cause food poisoning to humans -15020528 27 n 02 scale_wax 0 paraffin_scale 0 001 @ 15094294 n 0000 | partly refined paraffin wax -15020628 27 n 01 scavenger 0 002 @ 14779550 n 0000 + 00180837 v 0101 | a chemical agent that is added to a chemical mixture to counteract the effects of impurities -15020794 27 n 01 scheelite 0 002 @ 14662574 n 0000 %s 14659512 n 0000 | a mineral used as an ore of tungsten -15020905 27 n 01 schorl 0 001 @ 15076619 n 0000 | black tourmaline -15020974 27 n 01 scrap_iron 0 002 @ 14642417 n 0000 @ 14857737 n 0000 | iron to be melted again and reworked -15021085 27 n 01 notepad 0 002 @ 14973133 n 0000 ~ 15021189 n 0000 | a pad of paper for keeping notes -15021189 27 n 03 scratch_pad 0 scratch_paper 0 scribbling_block 0 001 @ 15021085 n 0000 | pad for preliminary or hasty writing or notes or sketches etc; "scribbling block" is a British term -15021381 27 n 01 seal_oil 0 001 @ 14755077 n 0000 | a pale yellow to red-brown fatty oil obtained from seal blubber; used in making soap and dressing leather and as a lubricant -15021560 27 n 01 secretase 0 001 @ 14732946 n 0000 | a set of enzymes believed to snip pieces off a longer protein producing fragments of amyloid protein that bunch up and create amyloid protein plaques in brain tissue (the pathological hallmark of Alzheimer's) -15021824 27 n 01 sedimentary_clay 0 001 @ 14844693 n 0000 | clay soil formed by sedimentary deposits -15021927 27 n 01 sepia 0 001 @ 14989820 n 0000 | rich brown pigment prepared from the ink of cuttlefishes -15022035 27 n 01 serine 0 001 @ 14601829 n 0000 | a sweetish crystalline amino acid involved in the synthesis by the body of cysteine -15022171 27 n 01 globulin 0 006 @ 14736972 n 0000 ~ 14731964 n 0000 ~ 14732116 n 0000 ~ 15022389 n 0000 ~ 15022617 n 0000 ~ 15077917 n 0000 | a family of proteins found in blood and milk and muscle and in plant seed -15022389 27 n 02 gamma_globulin 0 human_gamma_globulin 0 004 @ 14736359 n 0000 @ 15022171 n 0000 #s 05403427 n 0000 ~ 15030481 n 0000 | a plasma protein containing the immunoglobulins that are responsible for immune responses -15022617 27 n 01 myosin 0 002 @ 15022171 n 0000 #s 14729737 n 0000 | the commonest protein in muscle; a globulin that combines with actin to form actomyosin -15022776 27 n 02 coagulation_factor 0 clotting_factor 0 013 @ 14736359 n 0000 ~ 15023156 n 0000 ~ 15070897 n 0000 ~ 15071035 n 0000 ~ 15071229 n 0000 ~ 15071366 n 0000 ~ 15071503 n 0000 ~ 15071684 n 0000 ~ 15071960 n 0000 ~ 15072099 n 0000 ~ 15072331 n 0000 ~ 15072491 n 0000 ~ 15072657 n 0000 | any of the factors in the blood whose actions are essential for blood coagulation -15023156 27 n 02 fibrinogen 0 factor_I 0 001 @ 15022776 n 0000 | a protein present in blood plasma; converts to fibrin when blood clots -15023294 27 n 03 releasing_factor 0 releasing_hormone 0 RF 1 002 @ 07327805 n 0000 ~ 15023537 n 0000 | a substance produced by the hypothalamus that is capable of accelerating the secretion of a given hormone by the anterior pituitary gland -15023537 27 n 02 growth_hormone-releasing_factor 0 GHRF 0 001 @ 15023294 n 0000 | a releasing factor that accelerates the secretion of growth hormone by the anterior pituitary body -15023720 27 n 01 intrinsic_factor 0 001 @ 07327805 n 0000 | a substance produced by the mucosa of the stomach and intestines that is essential for the absorption of vitamin B12; "lack of intrinsic factor can result in pernicious anemia" -15023959 27 n 03 platelet 0 blood_platelet 0 thrombocyte 0 001 @ 05432736 n 0000 | tiny bits of protoplasm found in vertebrate blood; essential for blood clotting -15024124 27 n 01 porphyrin 0 001 @ 14989820 n 0000 | any of various pigments distributed widely in living tissues -15024240 27 n 03 hemoglobin 0 haemoglobin 0 Hb 0 005 @ 14888884 n 0000 #s 05454070 n 0000 ~ 15024773 n 0000 %s 15024997 n 0000 %s 15025942 n 0000 | a hemoprotein composed of globin and heme that gives red blood cells their characteristic color; function primarily to transport oxygen from the lungs to the body tissues; "fish have simpler hemoglobin than mammals" -15024606 27 n 01 myoglobin 0 002 @ 14888884 n 0000 %s 15024997 n 0000 | a hemoprotein that receives oxygen from hemoglobin and stores it in the tissues until needed -15024773 27 n 02 oxyhemoglobin 0 oxyhaemoglobin 0 001 @ 15024240 n 0000 | the bright red hemoglobin that is a combination of hemoglobin and oxygen from the lungs; "oxyhemoglobin transports oxygen to the cells of the body" -15024997 27 n 05 heme 0 haem 0 hematin 0 haemitin 0 protoheme 0 004 @ 14989820 n 0000 #s 15024240 n 0000 #s 15024606 n 0000 #s 15025571 n 0000 | a complex red organic pigment containing iron and other atoms to which oxygen binds -15025228 27 n 02 hemin 0 protohemin 0 001 @ 15017604 n 0000 | a reddish-brown chloride of heme; produced from hemoglobin in laboratory tests for the presence of blood -15025397 27 n 03 heterocyclic_compound 0 heterocyclic 0 heterocycle 0 003 @ 14818238 n 0000 + 00676999 a 0301 ~ 14619033 n 0000 | a compound containing a heterocyclic ring -15025571 27 n 01 cytochrome 0 004 @ 14888884 n 0000 ;c 06079620 n 0000 %s 15024997 n 0000 ~ 15025815 n 0000 | (biochemistry) a class of hemoprotein whose principal biological function is electron transfer (especially in cellular respiration) -15025815 27 n 01 cytochrome_c 0 001 @ 15025571 n 0000 | the most abundant and stable cytochrome; involved in energy transfer -15025942 27 n 03 globin 0 hematohiston 0 haematohiston 0 002 @ 14736972 n 0000 #s 15024240 n 0000 | a colorless protein obtained by removing heme from hemoglobin; the oxygen carrying compound in red blood cells -15026155 27 n 01 glutelin 0 001 @ 14736972 n 0000 | a simple protein found in the seeds of cereals -15026256 27 n 01 histone 0 001 @ 14736972 n 0000 | a simple protein containing mainly basic amino acids; present in cell nuclei in association with nucleic acids -15026420 27 n 01 prolamine 0 001 @ 14736972 n 0000 | a simple protein found in plants -15026508 27 n 01 protamine 0 001 @ 14736972 n 0000 | a simple protein found in fish sperm; rich in arginine; simpler in composition than globulin or albumin; counteracts the anticoagulant effect of heparin -15026716 27 n 02 scleroprotein 0 albuminoid 0 006 @ 14736972 n 0000 ~ 05287090 n 0000 ~ 05287731 n 0000 ~ 14730553 n 0000 ~ 14730802 n 0000 ~ 14732472 n 0000 | a simple protein found in horny and cartilaginous tissues and in the lens of the eye -15026963 27 n 02 hemosiderin 0 haemosiderin 0 002 @ 14989820 n 0000 %s 14865800 n 0000 | a granular brown substance composed of ferric oxide; left from the breakdown of hemoglobin; can be a sign of disturbed iron metabolism -15027189 27 n 01 antibody 0 013 @ 14728724 n 0000 %p 08623260 n 0000 ~ 15027618 n 0000 ~ 15027762 n 0000 ~ 15027888 n 0000 ~ 15027970 n 0000 ~ 15028050 n 0000 ~ 15028684 n 0000 ~ 15029292 n 0000 ~ 15029482 n 0000 ~ 15029781 n 0000 ~ 15030264 n 0000 ~ 15030481 n 0000 | any of a large variety of proteins normally present in the body or produced in response to an antigen which it neutralizes, thus producing an immune response -15027618 27 n 01 autoantibody 0 002 @ 15027189 n 0000 ~ 14187229 n 0000 | an antibody acting against tissues of the organism that produces it -15027762 27 n 01 precipitin 0 001 @ 15027189 n 0000 | an antibody that causes precipitation when it unites with its antigen -15027888 27 n 01 ABO_antibodies 0 001 @ 15027189 n 0000 | blood type antibodies -15027970 27 n 01 Rh_antibody 0 001 @ 15027189 n 0000 | rhesus factor antibody -15028050 27 n 01 antitoxin 0 004 @ 15027189 n 0000 + 02450814 a 0101 ~ 15028208 n 0000 ~ 15028378 n 0000 | an antibody that can neutralize a specific toxin -15028208 27 n 02 antivenin 0 antivenene 0 001 @ 15028050 n 0000 | an antitoxin that counteracts the effects of venom from the bite of a snake or insect or other animal -15028378 27 n 01 tetanus_antitoxin 0 001 @ 15028050 n 0000 | antitoxin given for short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus -15028555 27 n 01 toxin_antitoxin 0 001 @ 03562739 n 0000 | a mixture of toxin and antitoxin used to immunize against a disease -15028684 27 n 01 agglutinin 0 002 @ 15027189 n 0000 ~ 15028818 n 0000 | an antibody that causes agglutination of a specific antigen -15028818 27 n 01 isoagglutinin 0 001 @ 15028684 n 0000 | an antibody produced by one individual that causes agglutination of red blood cells in other individuals of the same species -15029002 27 n 01 agglutinogen 0 002 @ 15037339 n 0000 ~ 15029147 n 0000 | any substance that acts as an antigen to cause agglutinin production -15029147 27 n 01 isoagglutinogen 0 001 @ 15029002 n 0000 | an antigen capable of causing the production of (or reacting with) an isoagglutinin -15029292 27 n 03 heterophil_antibody 0 heterophile_antibody 0 Forssman_antibody 0 001 @ 15027189 n 0000 | an antibody found in the blood of someone suffering from infectious mononucleosis -15029482 27 n 02 isoantibody 0 alloantibody 0 001 @ 15027189 n 0000 | an antibody that occurs naturally against foreign tissues from a person of the same species -15029646 27 n 01 lysin 0 002 @ 00020090 n 0000 ~ 14828396 n 0000 | any substance (such as an antibody) or agent that can cause lysis -15029781 27 n 02 monoclonal_antibody 0 monoclonal 0 002 @ 15027189 n 0000 ~ 15030022 n 0000 | any of a class of antibodies produced in the laboratory by a single clone of cells or a cell line and consisting of identical antibody molecules -15030022 27 n 02 infliximab 0 Remicade 0 001 @ 15029781 n 0000 | a monoclonal antibody (trade name Remicade) used to treat Crohn's disease and rheumatoid arthritis; administered by infusion; use and dosage must be determined by a physician -15030264 27 n 01 opsonin 0 002 @ 15027189 n 0000 #s 05403149 n 0000 | an antibody in blood serum that attaches to invading microorganisms and other antigens to make them more susceptible to the action of phagocytes -15030481 27 n 05 immunoglobulin 0 Ig 0 immune_serum_globulin 0 immune_gamma_globulin 0 immune_globulin 0 008 @ 15022389 n 0000 @ 15027189 n 0000 ~ 15030853 n 0000 ~ 15031073 n 0000 ~ 15031231 n 0000 ~ 15031705 n 0000 ~ 15031866 n 0000 ~ 15032071 n 0000 | a class of proteins produced in lymph tissue in vertebrates and that function as antibodies in the immune response -15030853 27 n 02 immunoglobulin_A 0 IgA 0 001 @ 15030481 n 0000 | one of the most common of the five major classes of immunoglobulins; the chief antibody in the membranes of the gastrointestinal and respiratory tracts -15031073 27 n 02 immunoglobulin_D 0 IgD 0 001 @ 15030481 n 0000 | one of the five major classes of immunoglobulins; present in blood serum in small amounts -15031231 27 n 02 immunoglobulin_E 0 IgE 0 002 @ 15030481 n 0000 ~ 15031418 n 0000 | one of the five major classes of immunoglobulins; present primarily in the skin and mucous membranes -15031418 27 n 01 reagin 0 001 @ 15031231 n 0000 | an immunoglobulin E that is formed as an antibody against allergens (such as pollen); attaches to cell membranes causing the release of histamine and other substances responsible for the local inflammation characteristic of an allergy -15031705 27 n 02 immunoglobulin_G 0 IgG 0 001 @ 15030481 n 0000 | one of the five major classes of immunoglobulins; the main antibody defense against bacteria -15031866 27 n 02 immunoglobulin_M 0 IgM 0 001 @ 15030481 n 0000 | one of the five major classes of immunoglobulins; involved in fighting blood infections and in triggering production of immunoglobulin G -15032071 27 n 02 tetanus_immunoglobulin 0 tetanus_immune_globulin 0 001 @ 15030481 n 0000 | sterile solution of globulins derived from the blood plasma of a person who has been immunized for tetanus; provides short-term immunization against tetanus in cases of possible exposure to the tetanus bacillus -15032376 27 n 03 poison 0 toxicant 0 poisonous_substance 0 008 @ 00020090 n 0000 + 00829656 a 0101 + 00532429 v 0101 + 01323338 v 0101 + 01323793 v 0101 ~ 02754756 n 0000 ~ 03554795 n 0000 ~ 15034074 n 0000 | any substance that causes injury or illness or death of a living organism -15032661 27 n 01 chemical_irritant 0 005 @ 00020090 n 0000 ~ 15032829 n 0000 ~ 15033063 n 0000 ~ 15033189 n 0000 ~ 15033367 n 0000 | a substance producing irritation -15032829 27 n 01 capsaicin 0 002 @ 15032661 n 0000 #s 12900462 n 0000 | colorless pungent crystalline compound derived from capsicum; source of the hotness of hot peppers of the genus Capsicum such as chili and cayenne and jalapeno -15033063 27 n 01 gingerol 0 002 @ 15032661 n 0000 #s 12355760 n 0000 | derived from ginger; source of the hotness of ginger -15033189 27 n 02 piperin 0 piperine 0 002 @ 15032661 n 0000 #s 13149506 n 0000 | derived from pepper (especially black pepper); source of the hotness of black and white pepper -15033367 27 n 01 isothiocyanate 0 006 @ 15032661 n 0000 #s 11894770 n 0000 #s 11873182 n 0000 #s 12432808 n 0000 #s 11878283 n 0000 #s 07819480 n 0000 | a family of compounds derived from horseradish and radishes and onions and mustards; source of the hotness of those plants and preparations -15033662 27 n 02 fetoprotein 0 foetoprotein 0 002 @ 15037339 n 0000 ~ 15033846 n 0000 | any of several antigens that occur naturally in the fetus and sometimes in adults with cancer -15033846 27 n 03 alpha_fetoprotein 0 alpha_foetoprotein 0 AFP 0 001 @ 15033662 n 0000 | an abnormally large amount of this fetoprotein in the fetus can signal an abnormality of the neural tube (as spina bifida or anencephaly) -15034074 27 n 01 toxin 0 012 @ 15032376 n 0000 + 02449430 a 0101 ~ 14696463 n 0000 ~ 15034741 n 0000 ~ 15034939 n 0000 ~ 15035367 n 0000 ~ 15035505 n 0000 ~ 15035832 n 0000 ~ 15036103 n 0000 ~ 15036211 n 0000 ~ 15036321 n 0000 ~ 15036638 n 0000 | a poisonous substance produced during the metabolism and growth of certain microorganisms and some higher plant and animal species -15034454 27 n 02 anatoxin 0 toxoid 0 002 @ 15034939 n 0000 @ 15037339 n 0000 | a bacterial toxin that has been weakened until it is no longer toxic but is strong enough to induce the formation of antibodies and immunity to the specific disease caused by the toxin; "diphtheria toxoid" -15034741 27 n 02 animal_toxin 0 zootoxin 0 002 @ 15034074 n 0000 ~ 15036916 n 0000 | a toxin resembling bacterial toxins in its antigenic properties that is found in the fluids of certain animals -15034939 27 n 01 bacterial_toxin 0 004 @ 15034074 n 0000 ~ 14714353 n 0000 ~ 15034454 n 0000 ~ 15035123 n 0000 | any endotoxin or exotoxin formed in or elaborated by bacterial cells -15035123 27 n 03 botulin 0 botulinus_toxin 0 botulismotoxin 0 003 @ 15034939 n 0000 @ 02842303 n 0000 + 02986098 a 0101 | potent bacterial toxin produced by the bacterium Clostridium botulinum that causes botulism; can be used as a bioweapon -15035367 27 n 01 cytotoxin 0 003 @ 15034074 n 0000 + 02709917 a 0101 ~ 15035697 n 0000 | any substance that has a toxic effect on cells -15035505 27 n 01 endotoxin 0 002 @ 15034074 n 0000 ! 15035832 n 0101 | a toxin that is confined inside the microorganisms and is released only when the microorganisms are broken down or die -15035697 27 n 01 enterotoxin 0 002 @ 15035367 n 0000 ~ 15050516 n 0000 | a cytotoxin specific for the cells of the intestinal mucosa -15035832 27 n 01 exotoxin 0 002 @ 15034074 n 0000 ! 15035505 n 0101 | a toxin that is secreted by microorganisms into the surrounding medium -15035975 27 n 01 mephitis 0 002 @ 14877585 n 0000 + 01054204 a 0102 | a poisonous or foul smelling gas emitted from the earth -15036103 27 n 01 hepatotoxin 0 002 @ 15034074 n 0000 + 02450175 a 0101 | any toxin that affects the liver -15036211 27 n 01 nephrotoxin 0 002 @ 15034074 n 0000 + 02450269 a 0101 | any toxin that affects the kidneys -15036321 27 n 02 neurotoxin 0 neurolysin 0 007 @ 15034074 n 0000 + 02883805 a 0101 ~ 14587688 n 0000 ~ 14591901 n 0000 ~ 15020297 n 0000 ~ 15037127 n 0000 ~ 15069338 n 0000 | any toxin that affects neural tissues -15036536 27 n 01 mycotoxin 0 002 @ 15036638 n 0000 ~ 14714645 n 0000 | a toxin produced by a fungus -15036638 27 n 02 plant_toxin 0 phytotoxin 0 007 @ 15034074 n 0000 ~ 14714817 n 0000 ~ 14715008 n 0000 ~ 14715189 n 0000 ~ 14906085 n 0000 ~ 15036536 n 0000 ~ 15111609 n 0000 | any substance produced by plants that is similar in its properties to extracellular bacterial toxin -15036916 27 n 01 venom 0 004 @ 15034741 n 0000 + 02449952 a 0102 ~ 15037127 n 0000 ~ 15037249 n 0000 | toxin secreted by animals; secreted by certain snakes and poisonous insects (e.g., spiders and scorpions) -15037127 27 n 01 kokoi_venom 0 002 @ 15036916 n 0000 @ 15036321 n 0000 | a potent neurotoxin found in a particular frog -15037249 27 n 01 snake_venom 0 001 @ 15036916 n 0000 | venom secreted by certain snakes -15037339 27 n 01 antigen 0 009 @ 00020090 n 0000 ;c 06051542 n 0000 + 02630121 a 0101 ~ 03562739 n 0000 ~ 15029002 n 0000 ~ 15033662 n 0000 ~ 15034454 n 0000 %p 15037664 n 0000 ~ 15037877 n 0000 | any substance (as a toxin or enzyme) that stimulates an immune response in the body (especially the production of antibodies) -15037664 27 n 03 antigenic_determinant 0 determinant 0 epitope 0 003 @ 08622950 n 0000 #p 15037339 n 0000 ;c 06051542 n 0000 | the site on the surface of an antigen molecule to which an antibody attaches itself -15037877 27 n 03 rhesus_factor 0 Rh_factor 0 Rh 1 001 @ 15037339 n 0000 | a blood group antigen possessed by Rh-positive people; if an Rh-negative person receives a blood transfusion from an Rh-positive person it can result in hemolysis and anemia -15038127 27 n 01 sap 0 003 @ 14589223 n 0000 + 01369274 a 0101 ~ 12311800 n 0000 | a watery solution of sugars, salts, and minerals that circulates through the vascular system of a plant -15038316 27 n 01 scabicide 0 001 @ 14980215 n 0000 | a drug that destroys the itch mite that causes scabies -15038426 27 n 01 sewer_gas 0 001 @ 14877585 n 0000 | foul-smelling gas that forms in sewers -15038520 27 n 01 shale 0 003 @ 14698000 n 0000 ~ 15038680 n 0000 ~ 15038789 n 0000 | a sedimentary rock formed by the deposition of successive layers of clay -15038680 27 n 01 humic_shale 0 002 @ 15038520 n 0000 @ 14908977 n 0000 | shale that is rich in humic acids -15038789 27 n 01 oil_shale 0 001 @ 15038520 n 0000 | shale from which oil can be obtained by heating -15038892 27 n 01 shale_oil 0 001 @ 14966667 n 0000 | oil extracted from oil shale by heating -15038987 27 n 02 shark_oil 0 shark-liver_oil 0 001 @ 14755077 n 0000 | a fatty yellow to brown oil obtained from the livers of sharks; used for dressing leather and as a source of vitamin A -15039179 27 n 01 sheep_dip 0 002 @ 14980215 n 0000 @ 14940386 n 0000 | a liquid mixture containing pesticides in which sheep are dipped to kill parasites -15039335 27 n 01 Shetland_wool 0 001 @ 15104217 n 0000 | a wool obtained from sheep of the Shetland islands -15039445 27 n 02 shingle 0 shake 0 002 @ 14786479 n 0000 + 01234223 v 0101 | building material used as siding or roofing -15039568 27 n 02 shoe_polish 0 blacking 0 001 @ 14996020 n 0000 | a substance used to produce a shiny protective surface on footwear -15039703 27 n 01 shot_metal 0 001 @ 14586769 n 0000 | an alloy that is 98% lead and 2% arsenic; used in making small shot -15039827 27 n 02 siderite 0 chalybite 0 001 @ 14923458 n 0000 | iron ore in the form of ferrous carbonate -15039935 27 n 01 silicic_acid 0 001 @ 14607521 n 0000 | a jellylike substance (hydrated silica) -15040033 27 n 01 silicate 0 001 @ 15010703 n 0000 | a salt or ester derived from silicic acid -15040129 27 n 01 silicide 0 001 @ 14818238 n 0000 | any of various compounds of silicon with a more electropositive element or radical -15040266 27 n 01 silicon_carbide 0 001 @ 14792550 n 0000 | an extremely hard blue-black crystalline compound (SiC) used as an abrasive and a heat refractory material; crystals of silicon carbide can be used as semiconductors -15040493 27 n 02 silicone 0 silicone_polymer 0 004 @ 15040899 n 0000 @ 14994328 n 0000 %s 14654541 n 0000 ~ 14784290 n 0000 | any of a large class of siloxanes that are unusually stable over a wide range of temperatures; used in lubricants and adhesives and coatings and synthetic rubber and electrical insulation -15040809 27 n 01 silicone_resin 0 001 @ 14592610 n 0000 | a polymeric silicone compound -15040899 27 n 01 siloxane 0 002 @ 14818238 n 0000 ~ 15040493 n 0000 | any of a large class of compounds that have alternate silicon and oxygen atoms -15041050 27 n 01 siding 0 002 @ 14786479 n 0000 ~ 15103007 n 0000 | material applied to the outside of a building to make it weatherproof -15041190 27 n 01 silex 0 001 @ 15041277 n 0000 | a pure form of finely ground silica -15041277 27 n 03 silica 0 silicon_oxide 0 silicon_dioxide 0 010 @ 14971519 n 0000 #s 14693733 n 0000 #s 14672893 n 0000 #s 15079557 n 0000 #s 14879750 n 0000 + 02797704 a 0102 + 02797704 a 0101 ~ 14870525 n 0000 ~ 14871078 n 0000 ~ 15041190 n 0000 | a white or colorless vitreous insoluble solid (SiO2); various forms occur widely in the earth's crust as quartz or cristobalite or tridymite or lechatelierite -15041688 27 n 01 silica_gel 0 001 @ 14588219 n 0000 | a porous form of silica that is highly absorbent -15041793 27 n 01 silicon_bronze 0 001 @ 14717275 n 0000 | a bronze with 2-3% silicon that is resistant to corrosion -15041911 27 n 01 silk 0 001 @ 14959472 n 0000 | animal fibers produced by silkworms and other larvae that spin cocoons and by most spiders -15042052 27 n 01 silt 0 003 @ 14844693 n 0000 + 00503780 a 0101 + 01479545 v 0102 | mud or clay or small rocks deposited by a river or lake -15042194 27 n 01 siltstone 0 001 @ 14995541 n 0000 | a fine-grained sandstone of consolidated silt -15042295 27 n 01 silvex 0 001 @ 14906850 n 0000 | a herbicide that is effective in controlling woody plants but is toxic to animals -15042429 27 n 01 simazine 0 001 @ 14906850 n 0000 | a herbicide used to control weeds (especially among crops) -15042542 27 n 01 Simoniz 0 003 @ 14996020 n 0000 ;u 06845599 n 0000 + 01245490 v 0101 | a brand of car polish -15042654 27 n 02 sisal 0 sisal_hemp 0 002 @ 14959644 n 0000 #s 04108268 n 0000 | a plant fiber used for making rope -15042772 27 n 01 ski_wax 0 001 @ 15094294 n 0000 | wax used on the bottom of skis -15042856 27 n 03 slag 0 scoria 0 dross 0 002 @ 04157703 n 0000 ~ 14773618 n 0000 | the scum formed by oxidation at the surface of molten metals -15043002 27 n 02 slate 1 slating 0 002 @ 15005716 n 0000 + 01338368 v 0101 | thin layers of rock used for roofing -15043118 27 n 01 smaltite 0 003 @ 14662574 n 0000 %s 14635290 n 0000 %s 14646610 n 0000 | a grey mineral consisting of cobalt arsenide and nickel; an important source of cobalt and nickel -15043308 27 n 01 slush 0 002 @ 14845743 n 0000 + 01080060 a 0101 | partially melted snow -15043399 27 n 01 smelling_salts 0 002 @ 14873641 n 0000 %s 15052063 n 0000 | a pungent preparation of ammonium carbonate and perfume; sniffed as a stimulant to relieve faintness -15043579 27 n 01 snake_oil 0 002 @ 14940386 n 0000 ;c 06043075 n 0000 | (medicine) any of various liquids sold as medicine (as by a travelling medicine show) but medically worthless -15043763 27 n 01 snow 0 008 @ 08591680 n 0000 #s 04251560 n 0000 + 01698231 a 0102 + 01697592 a 0103 + 02758977 v 0101 %s 11509066 n 0000 ~ 15044122 n 0000 ~ 15044232 n 0000 | a layer of snowflakes (white crystals of frozen water) covering the ground -15044016 27 n 01 snuff 0 002 @ 14685172 n 0000 #p 02948719 n 0000 | the charred portion of a candlewick -15044122 27 n 01 corn_snow 0 001 @ 15043763 n 0000 | granular snow formed by alternate thawing and freezing -15044232 27 n 01 crud 1 001 @ 15043763 n 0000 | heavy wet snow that is unsuitable for skiing -15044327 27 n 04 soapstone 0 soaprock 0 soap-rock 0 steatite 0 001 @ 15066367 n 0000 | a soft heavy compact variety of talc having a soapy feel; used to make hearths and tabletops and ornaments -15044523 27 n 01 soda_lime 0 001 @ 14586258 n 0000 | a mixture of sodium and calcium hydroxides; absorbs liquids and gases -15044648 27 n 01 sodalite 0 002 @ 14662574 n 0000 #s 14931879 n 0000 | a vitreous mineral consisting of sodium aluminum silicate and sodium chloride in crystalline form; occurs in igneous rocks -15044844 27 n 05 sodium_carbonate 0 washing_soda 0 sal_soda 0 soda_ash 0 soda 0 001 @ 15010703 n 0000 | a sodium salt of carbonic acid; used in making soap powders and glass and paper -15045030 27 n 01 sodium_carboxymethyl_cellulose 0 001 @ 15010703 n 0000 | a gummy substance that is a sodium salt of carboxymethyl cellulose; used as a thickening or emulsifying agent -15045216 27 n 01 sodium_fluoride 0 001 @ 15010703 n 0000 | a colorless crystalline salt of sodium (NaF) used in fluoridation of water and to prevent tooth decay -15045379 27 n 01 sodium_hydride 0 001 @ 14910748 n 0000 | a flammable grey crystalline binary compound (NaH) -15045490 27 n 01 sodium_hypochlorite 0 004 @ 14614245 n 0000 @ 14779205 n 0000 @ 03208229 n 0000 ~ 14921974 n 0000 | an unstable salt (NaOCl) used as a bleaching agent and disinfectant -15045677 27 n 01 sodium_iodide 0 001 @ 14922371 n 0000 | a crystalline salt used like potassium iodide -15045782 27 n 03 sodium_lauryl_sulphate 0 sodium_lauryl_sulfate 0 SLS 0 002 @ 15063493 n 0000 @ 15097017 n 0000 | a caustic detergent useful for removing grease; although commonly included in personal care items (shampoos and toothpastes etc.) it can irritate skin and should not be swallowed -15046077 27 n 02 sodium_pyrophosphate 0 tetrasodium_pyrophosphate 0 001 @ 15097209 n 0000 | a sodium salt of pyrophosphoric acid used as a builder in soaps and detergents -15046250 27 n 02 sodium_sulphate 0 sodium_sulfate 0 001 @ 15063493 n 0000 | a solid white bitter salt used in manufacturing glass and paper and dyes and pharmaceuticals -15046421 27 n 01 sodium_tripolyphosphate 0 001 @ 15097209 n 0000 | a sodium salt of triphosphoric acid used as a builder in soaps and detergents -15046568 27 n 02 sodium_phosphate 0 sodium_orthophosphate 0 001 @ 14982265 n 0000 | phosphate of sodium; used as a laxative to cleanse the bowels -15046716 27 n 01 soft_water 0 002 @ 14845743 n 0000 ! 14905422 n 0101 | water that is not hard (does not contain mineral salts that interfere with the formation of lather with soap) -15046900 27 n 01 solid 4 010 @ 00020827 n 0000 + 00445169 v 0101 ~ 07555863 n 0000 ~ 14591635 n 0000 ~ 14592610 n 0000 ~ 14881303 n 0000 ~ 14883206 n 0000 ~ 14997012 n 0000 ~ 15047167 n 0000 ~ 15112565 n 0000 | matter that is solid at room temperature and pressure -15047167 27 n 01 dry_ice 0 001 @ 15046900 n 0000 | solidified carbon dioxide; dry ice sublimates at -78.5 C and is used mainly as a refrigerant -15047313 27 n 05 solvent 0 dissolvent 0 dissolver 0 dissolving_agent 0 resolvent 0 018 @ 14899152 n 0000 + 00447309 v 0502 + 00447309 v 0301 + 00446329 v 0301 + 00447309 v 0201 + 00446695 v 0101 + 00446514 v 0101 ~ 14600504 n 0000 ~ 14603236 n 0000 ~ 14796073 n 0000 ~ 14798039 n 0000 ~ 14907122 n 0000 ~ 14950300 n 0000 ~ 14958405 n 0000 ~ 15003969 n 0000 ~ 15048463 n 0000 ~ 15075378 n 0000 ~ 15106143 n 0000 | a liquid substance capable of dissolving other substances; "the solvent does not change its state in forming a solution" -15047849 27 n 01 solute 0 001 @ 00020827 n 0000 | the dissolved matter in a solution; the component of a solution that changes its state -15047988 27 n 01 solvate 0 003 @ 14818238 n 0000 + 00446514 v 0101 + 00446695 v 0101 | a compound formed by solvation (the combination of solvent molecules with molecules or ions of the solute) -15048184 27 n 01 solvating_agent 0 001 @ 14778436 n 0000 | an agent that converts something into a solvate -15048293 27 n 02 viricide 0 virucide 0 003 @ 14778436 n 0000 + 03144004 a 0202 + 03144004 a 0101 | an agent (physical or chemical) that inactivates or destroys viruses -15048463 27 n 03 alkahest 0 alcahest 0 universal_solvent 0 002 @ 15047313 n 0000 + 02611803 a 0101 | hypothetical universal solvent once sought by alchemists -15048623 27 n 01 soup 0 002 @ 14588492 n 0000 ;u 07075172 n 0000 | any composition having a consistency suggestive of soup -15048748 27 n 01 sourdough 0 001 @ 14934031 n 0000 | a leaven of dough in which fermentation is active; used by pioneers for making bread -15048888 27 n 02 spackle 0 spackling_compound 0 001 @ 14992287 n 0000 | powder (containing gypsum plaster and glue) that when mixed with water forms a plastic paste used to fill cracks and holes in plaster -15049096 27 n 01 spar 0 003 @ 14662574 n 0000 ~ 14864961 n 0000 ~ 14935751 n 0000 | any of various nonmetallic minerals (calcite or feldspar) that are light in color and transparent or translucent and cleavable -15049309 27 n 01 sparkle_metal 0 001 @ 14949384 n 0000 | matte that has 74 percent copper -15049401 27 n 03 spiegeleisen 0 spiegel 0 spiegel_iron 0 001 @ 14983491 n 0000 | pig iron containing manganese; used as a deoxidizing agent and to raise the manganese content in making steel -15049594 27 n 01 spill 0 004 @ 14940100 n 0000 + 01541803 v 0101 + 02069888 v 0101 + 01542207 v 0101 | liquid that is spilled; "clean up the spills" -15049745 27 n 01 spelter 0 001 @ 14661977 n 0000 | impure zinc containing about three percent lead and other impurities (especially in the form of ingots) -15049902 27 n 01 sperm_oil 0 001 @ 14755077 n 0000 | an animal oil found in the blubber of the sperm whale -15050011 27 n 01 spice 0 003 @ 14997529 n 0000 + 02192570 v 0102 ~ 15050161 n 0000 | aromatic substances of vegetable origin used as a preservative -15050161 27 n 01 stacte 0 003 @ 15050011 n 0000 #s 14918994 n 0000 ;c 06449735 n 0000 | (Old Testament) one of several sweet-smelling spices used in incense -15050320 27 n 01 staff 0 001 @ 14786479 n 0000 | building material consisting of plaster and hair; used to cover external surfaces of temporary structure (as at an exposition) or for decoration -15050516 27 n 01 staphylococcal_enterotoxin 0 002 @ 15035697 n 0000 ~ 15050695 n 0000 | a soluble exotoxin produced by some strains of staphylococcus; a cause of food poisoning -15050695 27 n 02 staphylococcal_enterotoxin_B 0 SEB 0 002 @ 15050516 n 0000 @ 02842303 n 0000 | a form of staphylococcal enterotoxin that has been used as an incapacitating agent in biological warfare -15050898 27 n 01 spinel 0 004 @ 14662574 n 0000 %s 14644249 n 0000 ~ 15051129 n 0000 ~ 15051503 n 0000 | a hard glassy mineral consisting of an oxide of magnesium and aluminum; occurs in various colors that are used as gemstones -15051129 27 n 02 spinel_ruby 0 ruby_spinel 0 004 @ 15050898 n 0000 ~ 15051301 n 0000 ~ 15051392 n 0000 ~ 15051608 n 0000 | a spinel used as a gemstone (usually dark red) -15051301 27 n 01 almandine 0 001 @ 15051129 n 0000 | a purple variety of the ruby spinel -15051392 27 n 02 balas 0 balas_ruby 0 001 @ 15051129 n 0000 | a pale rose-colored variety of the ruby spinel -15051503 27 n 02 Ceylonite 0 pleonaste 0 001 @ 15050898 n 0000 | a dark-colored spinel containing iron -15051608 27 n 01 rubicelle 0 001 @ 15051129 n 0000 | a yellow or orange variety of ruby spinel -15051705 27 n 02 solid_solution 0 primary_solid_solution 0 006 @ 14589223 n 0000 #s 14586769 n 0000 ~ 14769760 n 0000 ~ 14859201 n 0000 ~ 14948377 n 0000 ~ 15011987 n 0000 | a homogeneous solid that can exist over a range of component chemicals; a constituent of alloys that is formed when atoms of an element are incorporated into the crystals of a metal -15052063 27 n 02 spirits_of_ammonia 0 sal_volatile 0 002 @ 14589223 n 0000 #s 15043399 n 0000 | a solution of ammonium carbonate in ammonia water and alcohol -15052223 27 n 01 spodumene 0 004 @ 14662574 n 0000 %s 14643793 n 0000 ~ 14928180 n 0000 ~ 15052413 n 0000 | a pyroxene mineral consisting of lithium aluminum silicate; a source of lithium -15052413 27 n 01 hiddenite 0 002 @ 15052223 n 0000 @ 15078050 n 0000 | a green transparent form of the mineral spodumene used as a gemstone -15052555 27 n 01 spray 1 001 @ 14980215 n 0000 | a pesticide in suspension or solution; intended for spraying -15052667 27 n 01 stabilizer 0 002 @ 14806838 n 0000 + 00270826 v 0101 | a chemical that is added to a solution or mixture or suspension to maintain it in a stable or unchanging state -15052852 27 n 01 stachyose 0 001 @ 15069161 n 0000 | a tetrasaccharide found in the tubers of the Chinese artichoke -15052970 27 n 01 stain 0 006 @ 14984973 n 0000 ;c 00640889 n 0000 + 00283415 v 0101 ~ 14770838 n 0000 ~ 14771270 n 0000 ~ 15053212 n 0000 | (microscopy) a dye or other coloring material that is used in microscopy to make structures visible -15053212 27 n 01 counterstain 0 001 @ 15052970 n 0000 | a stain of contrasting color that is used when the principal stain does not show the structure clearly -15053373 27 n 01 Gram's_solution 0 001 @ 14589223 n 0000 | a solution used in staining bacteria by Gram's method; consists of one part iodine and two parts potassium iodide and 300 parts water -15053568 27 n 02 stannite 0 tin_pyrites 0 001 @ 14662574 n 0000 | a dark grey mineral with a metallic luster that is a source of tin -15053703 27 n 01 star_sapphire 0 001 @ 15019483 n 0000 | a sapphire that when cut shows a starlike figure in reflected light because of its crystalline structure -15053867 27 n 02 starch 0 amylum 0 010 @ 14994004 n 0000 + 02299048 a 0101 + 00417856 v 0101 ~ 11780018 n 0000 ~ 14761578 n 0000 ~ 15054347 n 0000 ~ 15054467 n 0000 ~ 15054607 n 0000 ~ 15054862 n 0000 ~ 15055046 n 0000 | a complex carbohydrate found chiefly in seeds, fruits, tubers, roots and stem pith of plants, notably in corn, potatoes, wheat, and rice; an important foodstuff and used otherwise especially in adhesives and as fillers and stiffeners for paper and textiles -15054347 27 n 01 arrowroot 0 001 @ 15053867 n 0000 | a nutritive starch obtained from the root of the arrowroot plant -15054467 27 n 02 cornstarch 0 cornflour 0 001 @ 15053867 n 0000 | starch prepared from the grains of corn; used in cooking as a thickener -15054607 27 n 01 sago 0 002 @ 15053867 n 0000 ~ 15054770 n 0000 | powdery starch from certain sago palms; used in Asia as a food thickener and textile stiffener -15054770 27 n 01 pearl_sago 0 001 @ 15054607 n 0000 | sago ground into small round grains -15054862 27 n 01 amyloid 2 003 @ 15053867 n 0000 + 02299189 a 0103 + 02299189 a 0104 | a non-nitrogenous food substance consisting chiefly of starch; any substance resembling starch -15055046 27 n 02 Otaheite_arrowroot 0 Otaheite_arrowroot_starch 0 001 @ 15053867 n 0000 | a starch obtained from the root of the pia -15055181 27 n 01 steam 0 004 @ 15055633 n 0000 + 00327145 v 0101 + 01245325 v 0101 ~ 15055342 n 0000 | water at boiling temperature diffused in the atmosphere -15055342 27 n 01 live_steam 0 001 @ 15055181 n 0000 | steam coming from a boiler at full pressure -15055442 27 n 02 water_vapor 0 water_vapour 0 003 @ 15055633 n 0000 #s 09247410 n 0000 ~ 15056541 n 0000 | water in a vaporous form diffused in the atmosphere but below boiling temperature -15055633 27 n 02 vapor 1 vapour 1 011 @ 14591091 n 0000 + 02263491 a 0105 + 00462546 a 0103 + 00575970 v 0101 + 00575720 v 0101 + 00366858 v 0102 + 00442267 v 0102 + 00366858 v 0103 + 00442267 v 0103 ~ 15055181 n 0000 ~ 15055442 n 0000 | a visible suspension in the air of particles of some substance -15055936 27 n 01 softener 0 005 @ 14806838 n 0000 + 00255389 v 0101 ~ 03088020 n 0000 ~ 14593162 n 0000 ~ 15056112 n 0000 | a substance added to another to make it less hard -15056112 27 n 01 water_softener 0 002 @ 15055936 n 0000 ~ 15106867 n 0000 | a substance (such as sodium chloride) that lessens the hardness of water by replacing calcium and magnesium ions with sodium ions and so gives the water more efficient sudsing power -15056372 27 n 02 soman 0 GD 1 001 @ 14970136 n 0000 | a nerve agent easily absorbed into the body; a lethal cholinesterase inhibitor that is highly toxic when inhaled -15056541 27 n 01 spray 0 005 @ 15055442 n 0000 + 01372682 v 0101 + 01373844 v 0101 ~ 15056749 n 0000 ~ 15056827 n 0000 | water in small drops in the atmosphere; blown from waves or thrown up by a waterfall -15056749 27 n 01 sea_spray 0 001 @ 15056541 n 0000 | spray from ocean waves -15056827 27 n 02 spindrift 0 spoondrift 0 001 @ 15056541 n 0000 | spray blown up from the surface of the sea -15056938 27 n 02 stearic_acid 0 octadecanoic_acid 0 001 @ 14740587 n 0000 | a waxy saturated fatty acid; occurs widely as a glyceride in animal and vegetable fats -15057103 27 n 01 stearin 0 002 @ 14887026 n 0000 + 02853905 a 0101 | an ester of glycerol and stearic acid -15057212 27 n 01 Stellite 0 002 @ 14586769 n 0000 ;u 06851742 n 0101 | a very hard alloy of cobalt and chromium with cobalt as the principal ingredient; used to make cutting tools and for surfaces subject to heavy wear -15057433 27 n 01 sterling_silver 0 002 @ 14586769 n 0000 %s 14654954 n 0000 | a silver alloy with no more than 7.5% copper -15057558 27 n 02 sternutator 0 sternutatory 0 001 @ 14818238 n 0000 | a chemical substance that causes sneezing and coughing and crying; "police used a sternutatory to subdue the mob" -15057744 27 n 01 steroid 0 006 @ 14727670 n 0000 + 02803579 a 0101 ~ 15058163 n 0000 ~ 15058310 n 0000 ~ 15059552 n 0000 ~ 15059939 n 0000 | any of several fat-soluble organic compounds having as a basis 17 carbon atoms in four rings; many have important physiological effects -15058023 27 n 02 nonsteroid 0 nonsteroidal 0 002 @ 14727670 n 0000 ~ 03193882 n 0000 | an organic compound that does no contain a steroid -15058163 27 n 01 ketosteroid 0 004 @ 15057744 n 0000 ~ 14747981 n 0000 ~ 14750782 n 0000 ~ 14752952 n 0000 | a steroid containing a ketone group -15058310 27 n 02 sterol 0 steroid_alcohol 0 004 @ 14708720 n 0000 @ 15057744 n 0000 ~ 15058544 n 0000 ~ 15059404 n 0000 | any of a group of natural steroid alcohols derived from plants or animals; they are waxy insoluble substances -15058544 27 n 02 cholesterol 0 cholesterin 0 003 @ 15058310 n 0000 ~ 15058755 n 0000 ~ 15058987 n 0000 | an animal sterol that is normally synthesized by the liver; the most abundant steroid in animal tissues -15058755 27 n 01 HDL_cholesterol 0 002 @ 15058544 n 0000 #s 14907349 n 0000 | the cholesterol in high-density lipoproteins; the `good' cholesterol; a high level in the blood is thought to lower the risk of coronary artery disease -15058987 27 n 01 LDL_cholesterol 0 003 @ 15058544 n 0000 #s 14943009 n 0000 ~ 15059237 n 0000 | the cholesterol in low-density lipoproteins; the `bad' cholesterol; a high level in the blood is thought to be related to various pathogenic conditions -15059237 27 n 01 oxidized_LDL_cholesterol 0 001 @ 15058987 n 0000 | LDL cholesterol that has been bombarded by free radicals; it is thought to cause atherosclerosis -15059404 27 n 01 ergosterol 0 002 @ 15058310 n 0000 #s 15092227 n 0000 | a plant sterol that is converted into vitamin D by ultraviolet radiation -15059552 27 n 01 bile_acid 0 002 @ 15057744 n 0000 ~ 15059694 n 0000 | any of the steroid acids generated in the liver and stored with bile -15059694 27 n 01 cholic_acid 0 001 @ 15059552 n 0000 | an insoluble crystalline acid present in bile -15059797 27 n 02 bilge 0 bilge_water 0 003 @ 14845743 n 0000 + 01053539 a 0101 + 00257947 v 0101 | water accumulated in the bilge of a ship -15059939 27 n 02 cardiac_glycoside 0 cardiac_glucoside 0 002 @ 15057744 n 0000 ~ 15060131 n 0000 | obtained from a number of plants and used to stimulate the heart in cases of heart failure -15060131 27 n 03 digitalis 0 digitalis_glycoside 0 digitalin 0 004 @ 15059939 n 0000 + 00081509 v 0101 ~ 03197666 n 0000 ~ 03197804 n 0000 | a powerful cardiac stimulant obtained from foxglove -15060326 27 n 01 render 0 001 @ 15062057 n 0000 | a substance similar to stucco but exclusively applied to masonry walls -15060449 27 n 01 stibnite 0 002 @ 14662574 n 0000 %s 14628668 n 0000 | a soft grey mineral; the chief ore of antimony -15060569 27 n 01 sticks_and_stone 0 002 @ 14786479 n 0000 ;u 07075172 n 0000 | a general term for building materials -15060688 27 n 01 wattle_and_daub 0 001 @ 14786479 n 0000 | building material consisting of interwoven rods and twigs covered with clay -15060825 27 n 01 stiffener 0 002 @ 14706026 n 0000 + 00417596 v 0101 | material used for stiffening something -15060937 27 n 01 streptodornase 0 001 @ 14732946 n 0000 | an enzyme produced by some hemolytic strains of streptococcus that dissolves fibrinous secretions from infections; used medicinally (often in combination with streptokinase) -15061171 27 n 01 streptokinase 0 001 @ 14732946 n 0000 | an enzyme produced by some strains of streptococcus that can liquefy blood clots by converting plasminogen to plasmin; used medicinally in some cases of myocardial infarction and pulmonary embolism -15061428 27 n 01 streptolysin 0 001 @ 14906261 n 0000 | any of several hemolysins derived from strains of streptococcus -15061550 27 n 01 stripper 0 002 @ 14818238 n 0000 + 00194534 v 0101 | a chemical compound used to remove paint or varnish -15061674 27 n 01 strophanthin 0 001 @ 14887305 n 0000 | a bitter and very toxic glycoside derived from plants of the genus Strophanthus; in moderate doses it is a cardiac stimulant but in larger doses it is a powerful poison; used in Africa as an arrow poison -15061936 27 n 01 strontianite 0 002 @ 14662574 n 0000 %s 14655731 n 0000 | a mineral consisting of strontium carbonate -15062057 27 n 01 stucco 0 004 @ 14992287 n 0000 + 01261371 v 0101 + 01678279 v 0101 ~ 15060326 n 0000 | a plaster now made mostly from Portland cement and sand and lime; applied while soft to cover exterior walls or surfaces -15062284 27 n 01 sublimate 0 006 @ 14877585 n 0000 + 00366020 v 0102 + 00475183 v 0102 + 00365810 v 0102 + 00365810 v 0101 ~ 14950694 n 0000 | the product of vaporization of a solid -15062468 27 n 01 tallow 0 004 @ 14755077 n 0000 ~ 14774397 n 0000 ~ 14839206 n 0000 ~ 14957795 n 0000 | obtained from suet and used in making soap, candles and lubricants -15062641 27 n 01 vegetable_tallow 0 001 @ 14991712 n 0000 | a waxy fat obtained from certain plants (e.g. bayberry) and used as tallow -15062778 27 n 02 sucrose 0 saccharose 0 003 @ 14836642 n 0000 @ 14991927 n 0000 ~ 14876771 n 0000 | a complex carbohydrate found in many plants and used as a sweetening agent -15062955 27 n 03 jaggery 0 jagghery 0 jaggary 0 003 @ 14792703 n 0000 #s 11601177 n 0000 #s 12584715 n 0000 | unrefined brown sugar made from palm sap -15063108 27 n 01 structural_iron 0 001 @ 14642417 n 0000 | iron that has been cast or worked in structural shapes -15063224 27 n 01 structural_steel 0 001 @ 14802450 n 0000 | a strong steel that is rolled into shapes that are used in construction -15063358 27 n 02 sulfanilic_acid 0 sulphanilic_acid 0 001 @ 14607521 n 0000 | a crystalline acid made from aniline and used as a dye -15063493 27 n 02 sulfate 0 sulphate 0 007 @ 15010703 n 0000 ~ 14772877 n 0000 ~ 14822839 n 0000 ~ 14945624 n 0000 ~ 15045782 n 0000 ~ 15046250 n 0000 ~ 15108324 n 0000 | a salt or ester of sulphuric acid -15063699 27 n 02 sulfide 0 sulphide 0 007 @ 14818238 n 0000 %s 14656219 n 0000 ~ 14692844 n 0000 ~ 14913518 n 0000 ~ 14923337 n 0000 ~ 15095926 n 0000 ~ 15108538 n 0000 | a compound of sulphur and some other element that is more electropositive -15063946 27 n 02 sulfur_oxide 0 sulphur_oxide 0 001 @ 14971519 n 0000 | any of several oxides of sulphur -15064053 27 n 02 sulfur_dioxide 0 sulphur_dioxide 0 003 @ 14836127 n 0000 @ 14877585 n 0000 @ 14857278 n 0000 | a colorless toxic gas (SO2) that occurs in the gases from volcanoes; used in many manufacturing processes and present in industrial emissions; causes acid rain -15064327 27 n 02 sulfur_hexafluoride 0 sulphur_hexafluoride 0 002 @ 14871601 n 0000 @ 14877234 n 0000 | a colorless gas that is soluble in alcohol and ether; a powerful greenhouse gas widely used in the electrical utility industry -15064560 27 n 02 sunstone 0 aventurine 0 003 @ 14693733 n 0000 @ 15078050 n 0000 ~ 14889857 n 0000 | a translucent quartz spangled with bits of mica or other minerals -15064729 27 n 02 superoxide 0 superoxide_anion 0 001 @ 09197815 n 0000 | the univalent anion O2-; "much of the O2 supporting cellular respiration is reduced to the superoxide anion O2-" -15064917 27 n 01 superoxide 1 001 @ 14971519 n 0000 | a metallic oxide containing the univalent anion O2- -15065025 27 n 02 superoxide_dismutase 0 SOD 0 001 @ 14732946 n 0000 | an enzyme that catalyzes the conversion of superoxide into hydrogen peroxide and oxygen; "oxygen free radicals are normally removed in our bodies by the superoxide dismutase enzymes" -15065280 27 n 01 surgical_spirit 0 002 @ 14951814 n 0000 ;r 08860123 n 0000 | methylated spirit used in the practice of medicine (especially for cleansing the skin before injections or before surgery) -15065483 27 n 01 Swedish_iron 0 001 @ 14802262 n 0000 | wrought iron of high purity made in Sweden -15065584 27 n 01 swinging_chad 0 001 @ 14805676 n 0000 | a chad that is incompletely removed and still attached at two corners -15065713 27 n 02 sylvanite 0 graphic_tellurium 0 003 @ 14662574 n 0000 %s 14638799 n 0000 %s 14657228 n 0000 | a silver-white mineral consisting of silver gold telluride; a source of gold in Australia and America -15065928 27 n 02 sylvite 0 sylvine 0 002 @ 14662574 n 0000 %s 14650807 n 0000 | a mineral consisting of native potassium chloride; an important ore of potassium that is found in sedimentary beds -15066125 27 n 02 tabun 0 GA 1 001 @ 14970136 n 0000 | the first known nerve agent, synthesized by German chemists in 1936; a highly toxic combustible liquid that is soluble in organic solvents and is used as a nerve gas in chemical warfare -15066367 27 n 02 talc 0 talcum 0 006 @ 14662574 n 0000 #s 04386792 n 0000 + 00042364 v 0101 ~ 15044327 n 0000 ~ 15066666 n 0000 ~ 15066796 n 0000 | a fine grained mineral having a soft soapy feel and consisting of hydrated magnesium silicate; used in a variety of products including talcum powder -15066666 27 n 01 French_chalk 0 001 @ 15066367 n 0000 | a soft white compact talc used to mark cloth or to remove grease stains -15066796 27 n 01 rensselaerite 0 001 @ 15066367 n 0000 | a kind of soft talc; sometimes used as wood filler -15066906 27 n 01 tallow_oil 0 001 @ 14755077 n 0000 | an animal oil obtained by pressing tallow; used as a lubricant -15067025 27 n 02 tannin 0 tannic_acid 0 004 @ 14989545 n 0000 + 03122923 a 0101 ~ 12951331 n 0000 ~ 15067237 n 0000 | any of various complex phenolic substances of plant origin; used in tanning and in medicine -15067237 27 n 01 catechin 0 001 @ 15067025 n 0000 | a tannic acid that is extracted from black catechu as a white crystalline substance -15067375 27 n 01 tantalite 0 002 @ 14662574 n 0000 %s 14656666 n 0000 | a mineral consisting of tantalum oxide of iron and manganese that occurs with niobite or in coarse granite; an ore of tantalum -15067576 27 n 01 tartaric_acid 0 002 @ 14613922 n 0000 ~ 15067739 n 0000 | an acid found in many fruits; used in soft drinks and confectionery and baking powder -15067739 27 n 01 racemic_acid 0 001 @ 15067576 n 0000 | the optically inactive form of tartaric acid that is often found in grape juice -15067877 27 n 04 tear_gas 0 teargas 0 lacrimator 0 lachrymator 0 005 @ 14877585 n 0000 @ 03013162 n 0000 ~ 14603798 n 0000 ~ 14604038 n 0000 ~ 14810356 n 0000 | a gas that makes the eyes fill with tears but does not damage them; used in dispersing crowds -15068134 27 n 01 telluride 0 002 @ 14818238 n 0000 %s 14657228 n 0000 | any binary compound of tellurium with other more electropositive elements -15068282 27 n 01 telomerase 0 001 @ 14732946 n 0000 | an enzyme in eukaryotic cells that can add telomeres to the ends of chromosomes after they divide -15068436 27 n 02 tenderizer 0 tenderiser 0 004 @ 14818238 n 0000 ;c 00017222 n 0000 + 00514871 v 0203 + 00514871 v 0102 | a substance (as the plant enzyme papain) applied to meat to make it tender -15068635 27 n 01 terpene 0 002 @ 14911057 n 0000 ~ 14937658 n 0000 | an unsaturated hydrocarbon obtained from plants -15068754 27 n 01 tetrachloride 0 002 @ 14818238 n 0000 ~ 14798039 n 0000 | any compound that contains four chlorine atoms per molecule -15068891 27 n 01 tetrafluoroethylene 0 001 @ 14871968 n 0000 | a flammable gaseous fluorocarbon used in making plastics (polytetrafluoroethylene resins) -15069046 27 n 01 tetrahalide 0 001 @ 14904359 n 0000 | any halide containing four halogen atoms in its molecules -15069161 27 n 01 tetrasaccharide 0 002 @ 14969044 n 0000 ~ 15052852 n 0000 | any of a variety of carbohydrates that yield four monosaccharide molecules on complete hydrolysis -15069338 27 n 01 tetrodotoxin 0 002 @ 15036321 n 0000 #s 07781972 n 0000 | a powerful neurotoxin found in the ovaries of pufferfish -15069472 27 n 01 tetroxide 0 001 @ 14971519 n 0000 | an oxide containing four atoms of oxygen in the molecule -15069584 27 n 02 tetryl 0 nitramine 0 001 @ 03304730 n 0000 | a yellow crystalline explosive solid that is used in detonators -15069712 27 n 01 thatch 0 002 @ 15005716 n 0000 + 01233838 v 0101 | plant stalks used as roofing material -15069820 27 n 02 thickening 0 thickener 0 003 @ 14580897 n 0000 + 00431610 v 0201 + 00431327 v 0201 | any material used to thicken; "starch is used in cooking as a thickening" -15069998 27 n 01 thiouracil 0 001 @ 14727670 n 0000 | depresses the function of the thyroid gland -15070098 27 n 01 thiocyanate 0 001 @ 15010703 n 0000 | a salt of thiocyanic acid; formed when alkaline cyanides are fused with sulfur -15070234 27 n 01 thiocyanic_acid 0 001 @ 14607521 n 0000 | an unstable acid that can be obtained by distilling a thiocyanate salt -15070366 27 n 01 thorite 0 002 @ 14662574 n 0000 %s 14658109 n 0000 | a radioactive mineral consisting of thorium silicate; it is a source of thorium that is found in coarse granite -15070550 27 n 01 thortveitite 0 002 @ 14662574 n 0000 %s 14653831 n 0000 | a mineral consisting of scandium yttrium silicate; a source of scandium -15070699 27 n 01 threonine 0 001 @ 14605787 n 0000 | a colorless crystalline amino acid found in protein; occurs in the hydrolysates of certain proteins; an essential component of human nutrition -15070897 27 n 02 prothrombin 0 factor_II 0 001 @ 15022776 n 0000 | a protein in blood plasma that is the inactive precursor of thrombin -15071035 27 n 03 thromboplastin 0 thrombokinase 0 factor_III 0 001 @ 15022776 n 0000 | an enzyme liberated from blood platelets that converts prothrombin into thrombin as blood starts to clot -15071229 27 n 02 calcium_ion 0 factor_IV 0 002 @ 14632648 n 0000 @ 15022776 n 0000 | ion of calcium; a factor in the clotting of blood -15071366 27 n 04 proaccelerin 0 prothrombin_accelerator 0 accelerator_factor 0 factor_V 0 001 @ 15022776 n 0000 | a coagulation factor -15071503 27 n 04 proconvertin 0 cothromboplastin 0 stable_factor 0 factor_VII 0 001 @ 15022776 n 0000 | a coagulation factor formed in the kidney under the influence of vitamin K -15071684 27 n 06 antihemophilic_factor 0 antihaemophilic_factor 0 antihemophilic_globulin 0 antihaemophilic_globulin 0 factor_VIII 0 Hemofil 0 002 @ 15022776 n 0000 ;u 06845599 n 0601 | a coagulation factor (trade name Hemofil) whose absence is associated with hemophilia A -15071960 27 n 02 Christmas_factor 0 factor_IX 0 001 @ 15022776 n 0000 | coagulation factor whose absence is associated with hemophilia B -15072099 27 n 02 prothrombinase 0 factor_X 0 001 @ 15022776 n 0000 | coagulation factor that is converted to an enzyme that converts prothrombin to thrombin in a reaction that depends on calcium ions and other coagulation factors -15072331 27 n 02 plasma_thromboplastin_antecedent 0 factor_XI 0 001 @ 15022776 n 0000 | coagulation factor whose deficiency results in a hemorrhagic tendency -15072491 27 n 02 Hageman_factor 0 factor_XII 0 001 @ 15022776 n 0000 | coagulation factor whose deficiency results in prolongation of clotting time of venous blood -15072657 27 n 02 fibrinase 0 factor_XIII 0 001 @ 15022776 n 0000 | in the clotting of blood thrombin catalyzes factor XIII into its active form (fibrinase) which causes fibrin to form a stable clot -15072857 27 n 02 thymine 0 T 1 002 @ 14999913 n 0000 #s 14830364 n 0000 | a base found in DNA (but not in RNA) and derived from pyrimidine; pairs with adenine -15073018 27 n 01 deoxyadenosine 0 001 @ 14964367 n 0000 | a nucleoside component of DNA; composed of adenosine and deoxyribose -15073147 27 n 02 deoxycytidine 0 cytidine 0 001 @ 14964367 n 0000 | a nucleoside component of DNA; composed of cytosine and deoxyribose -15073285 27 n 02 deoxyguanosine 0 guanosine 0 001 @ 14964367 n 0000 | a nucleoside component of DNA; composed of guanine and deoxyribose -15073424 27 n 02 deoxythymidine 0 thymidine 0 001 @ 14964367 n 0000 | a nucleoside component of DNA; composed of thymine and deoxyribose -15073563 27 n 03 thymol 0 thyme_camphor 0 thymic_acid 0 001 @ 14989545 n 0000 | a colorless crystalline solid used in perfume or preserving biological specimens or in embalming or medically as a fungicide or antiseptic -15073784 27 n 02 melanocyte-stimulating_hormone 0 MSH 0 001 @ 05407119 n 0000 | a hormone secreted by the anterior pituitary gland that controls the degree of pigmentation in melanocytes -15073973 27 n 06 thyrotropin 0 thyrotropic_hormone 0 thyrotrophin 0 thyrotrophic_hormone 0 thyroid-stimulating_hormone 0 TSH 0 001 @ 05407119 n 0000 | anterior pituitary hormone that stimulates the function of the thyroid gland -15074203 27 n 05 thyrotropin-releasing_hormone 0 TRH 0 thyrotropin-releasing_factor 0 TRF 0 protirelin 0 001 @ 05407119 n 0000 | hormone released by the hypothalamus that controls the release of thyroid-stimulating hormone from the anterior pituitary -15074456 27 n 01 thyronine 0 001 @ 14601829 n 0000 | a phenolic amino acid of which thyroxine is a derivative -15074568 27 n 02 tile 0 roofing_tile 0 006 @ 15005716 n 0000 + 01338663 v 0101 %s 14813182 n 0000 ~ 14908027 n 0000 ~ 14976759 n 0000 ~ 15005577 n 0000 | a thin flat slab of fired clay used for roofing -15074772 27 n 02 till 0 boulder_clay 0 002 @ 14844693 n 0000 + 01740608 v 0101 | unstratified soil deposited by a glacier; consists of sand and clay and gravel and boulders mixed together -15074962 27 n 02 tissue 2 tissue_paper 0 005 @ 14974264 n 0000 ~ 14812566 n 0000 ~ 14864259 n 0000 ~ 14928008 n 0000 ~ 15075141 n 0000 | a soft thin (usually translucent) paper -15075141 27 n 03 toilet_tissue 0 toilet_paper 0 bathroom_tissue 0 002 @ 15074962 n 0000 ~ 15075298 n 0000 | a soft thin absorbent paper for use in toilets -15075298 27 n 01 toilet_roll 0 001 @ 15075141 n 0000 | a roll of toilet paper -15075378 27 n 02 toluene 0 methylbenzene 0 002 @ 14601505 n 0000 @ 15047313 n 0000 | a colorless flammable liquid obtained from petroleum or coal tar; used as a solvent for gums and lacquers and in high-octane fuels -15075596 27 n 01 toluic_acid 0 001 @ 14607521 n 0000 | an isomeric acid derived from toluene -15075691 27 n 03 tombac 0 tombak 0 tambac 0 001 @ 14586769 n 0000 | an alloy of copper and zinc (and sometimes arsenic) used to imitate gold in cheap jewelry and for gilding -15075867 27 n 01 toner 0 002 @ 14580897 n 0000 + 00290132 v 0101 | a black or colored powder used in a printer to develop a xerographic image -15076011 27 n 01 toner 1 003 @ 14589223 n 0000 + 00290132 v 0101 + 00289974 v 0101 | a solution containing chemicals that can change the color of a photographic print -15076180 27 n 01 tool_steel 0 002 @ 14716042 n 0000 ~ 14907867 n 0000 | alloy steel that is suitable for making tools; is hard and tough and can retain a cutting edge -15076349 27 n 01 topaz 0 002 @ 15078050 n 0000 @ 14662574 n 0000 | a mineral (fluosilicate of aluminum) that occurs in crystals of various colors and is used as a gemstone -15076523 27 n 03 topaz 1 false_topaz 0 common_topaz 0 001 @ 14693733 n 0000 | a yellow quartz -15076619 27 n 01 tourmaline 0 003 @ 15078050 n 0000 @ 14662574 n 0000 ~ 15020905 n 0000 | a mineral that is a complex borosilicate and hydroxide of aluminum containing iron and magnesium and calcium and lithium and sodium; it is usually black but occurs in transparent colored forms that are used as gemstones -15076931 27 n 01 trace_element 0 001 @ 14622893 n 0000 | an element that occurs at very small quantities in the body but is nonetheless important for many biological processes -15077109 27 n 01 tracing_paper 0 001 @ 14974264 n 0000 | a semitransparent paper that is used for tracing drawings -15077226 27 n 01 tragacanth 0 001 @ 14898470 n 0000 | a gum used in pharmacy, adhesives, and textile printing -15077338 27 n 03 transaminase 0 aminotransferase 0 aminopherase 0 002 @ 15077571 n 0000 ~ 14884669 n 0000 | a class of transferases that catalyze transamination (that transfer an amino group from an amino acid to another compound) -15077571 27 n 01 transferase 0 003 @ 14732946 n 0000 ~ 14832046 n 0000 ~ 15077338 n 0000 | any of various enzymes that move a chemical group from one compound to another compound -15077752 27 n 01 transfer_paper 0 002 @ 14974264 n 0000 ~ 03167464 n 0000 | a paper that is coated with a preparation for transferring a design to another surface -15077917 27 n 03 transferrin 0 beta_globulin 0 siderophilin 0 001 @ 15022171 n 0000 | a globulin in blood plasma that carries iron -15078050 27 n 01 transparent_gem 0 021 @ 14699752 n 0000 ~ 14676042 n 0000 ~ 14722589 n 0000 ~ 14767663 n 0000 ~ 14806333 n 0000 ~ 14812047 n 0000 ~ 14812233 n 0000 ~ 14813067 n 0000 ~ 14834563 n 0000 ~ 14849655 n 0000 ~ 14928180 n 0000 ~ 14954822 n 0000 ~ 14955776 n 0000 ~ 14979961 n 0000 ~ 15008142 n 0000 ~ 15019357 n 0000 ~ 15019483 n 0000 ~ 15052413 n 0000 ~ 15064560 n 0000 ~ 15076349 n 0000 ~ 15076619 n 0000 | a gemstone having the property of transmitting light without serious diffusion -15078550 27 n 02 transparent_substance 0 translucent_substance 0 003 @ 14580897 n 0000 ~ 14681555 n 0000 ~ 14909703 n 0000 | a material having the property of admitting light diffusely; a partly transparent material -15078768 27 n 04 triamcinolone 0 Aristocort 0 Aristopak 0 Kenalog 0 004 @ 14751417 n 0000 ;u 06845599 n 0401 ;u 06845599 n 0301 ;u 06845599 n 0201 | a synthetic corticosteroid (trade names Aristocort or Aristopak or Kenalog) used as an anti-inflammatory agent -15079030 27 n 01 triazine 0 001 @ 14818238 n 0000 | any of three isomeric compounds having three carbon and three nitrogen atoms in a six-membered ring -15079184 27 n 01 tri-chad 0 001 @ 14805676 n 0000 | a chad that is incompletely removed and still attached at three corners -15079310 27 n 02 trichloroacetic_acid 0 trichloracetic_acid 0 001 @ 14599168 n 0000 | a strong acid made by chlorinating acetic acid -15079445 27 n 02 margarin 0 glycerol_trimargarate 0 001 @ 14887026 n 0000 | a glyceryl ester of margaric acid -15079557 27 n 01 tridymite 0 002 @ 14662574 n 0000 %s 15041277 n 0000 | a mineral form of silica -15079656 27 n 02 triolein 0 olein 0 001 @ 14887026 n 0000 | a naturally occurring glyceride of oleic acid that is found in fats and oils -15079795 27 n 01 trimer 0 001 @ 14994328 n 0000 | a polymer (or a molecule of a polymer) consisting of three identical monomers -15079925 27 n 01 trioxide 0 002 @ 14971519 n 0000 ~ 14768201 n 0000 | an oxide containing three atoms of oxygen in the molecule -15080055 27 n 02 tripalmitin 0 glycerol_tripalmitate 0 001 @ 14887026 n 0000 | a triglyceride of palmitic acid -15080168 27 n 01 triphosphopyridine 0 001 @ 14692510 n 0000 | a pyridine ring with three phosphorus groups -15080277 27 n 01 triphosphopyridine_nucleotide 0 001 @ 14800277 n 0000 | a coenzyme of several enzymes -15080382 27 n 01 triphosphoric_acid 0 001 @ 14607521 n 0000 | an acid that is a partial anhydride of three molecules of phosphoric acid; known chiefly in the form of its salts and esters -15080571 27 n 01 trisaccharide 0 002 @ 14969044 n 0000 ~ 15002679 n 0000 | any of a variety of carbohydrates that yield three monosaccharide molecules on complete hydrolysis -15080747 27 n 03 trisodium_phosphate 0 trisodium_orthophosphate 0 tribasic_sodium_phosphate 0 001 @ 15097209 n 0000 | the tertiary phosphate of sodium used as a builder in soaps and detergents -15080942 27 n 02 tristearin 0 glycerol_tristearate 0 001 @ 14887026 n 0000 | a triglyceride of stearic acid -15081052 27 n 01 trypsin 0 002 @ 14732946 n 0000 ~ 15081221 n 0000 | an enzyme of pancreatic origin; catalyzes the hydrolysis of proteins to smaller polypeptide units -15081221 27 n 01 trypsinogen 0 001 @ 15081052 n 0000 | inactive precursor of trypsin; a substance secreted by the pancreas and converted to active trypsin by enterokinase in the small intestine -15081417 27 n 02 tryptophan 0 tryptophane 0 001 @ 14605787 n 0000 | an amino acid that occurs in proteins; is essential for growth and normal metabolism; a precursor of niacin -15081595 27 n 01 tuna_oil 0 001 @ 14869035 n 0000 | an oil obtained from tuna -15081675 27 n 01 tundra_soil 0 001 @ 14844693 n 0000 | a black mucky soil with a frozen subsoil that is characteristic of Arctic and subarctic regions -15081828 27 n 02 tungsten_steel 0 wolfram_steel 0 001 @ 14716042 n 0000 | a very hard heat-resistant steel containing tungsten -15081957 27 n 01 tungstate 0 001 @ 15010703 n 0000 | a salt of tungstic acid -15082036 27 n 01 tungstic_acid 0 001 @ 14972359 n 0000 | an oxyacid of tungsten (often polymeric in nature) formed by neutralizing alkaline tungstate solutions -15082198 27 n 01 turquoise 0 002 @ 14662574 n 0000 @ 14969666 n 0000 | a blue to grey green mineral consisting of copper aluminum phosphate; "blue turquoise is valued as a gemstone" -15082382 27 n 02 typewriter_paper 0 typing_paper 0 002 @ 15105268 n 0000 ~ 14969254 n 0000 | writing paper suitable for use in a typewriter -15082524 27 n 01 tyramine 0 001 @ 14601829 n 0000 | amino acid derived from tyrosine; has a sympathomimetic action; found in chocolate and cola drinks and ripe cheese and beer; "patients taking MAOIs should avoid foods containing tyramine" -15082766 27 n 01 tyrosine 0 001 @ 14601829 n 0000 | an amino acid found in most proteins; a precursor of several hormones -15082890 27 n 02 ubiquinone 0 coenzyme_Q 0 003 @ 15000973 n 0000 @ 14800277 n 0000 ;c 06079620 n 0000 | any of several quinones found in living cells and that function as coenzymes that transfer electrons from one molecule to another in cell respiration -15083146 27 n 02 ultramarine 0 ultramarine_blue 0 002 @ 14989820 n 0000 ~ 15083283 n 0000 | blue pigment made of powdered lapis lazuli -15083283 27 n 03 French_blue 0 French_ultramarine 0 French_ultramarine_blue 0 001 @ 15083146 n 0000 | ultramarine pigment prepared artificially -15083429 27 n 01 umber 0 003 @ 14673978 n 0000 ~ 15083533 n 0000 ~ 15083611 n 0000 | an earth pigment -15083533 27 n 01 raw_umber 0 001 @ 15083429 n 0000 | greenish brown pigment -15083611 27 n 01 burnt_umber 0 001 @ 15083429 n 0000 | dark brown pigment obtained by heating umber -15083713 27 n 01 undecylenic_acid 0 001 @ 14607521 n 0000 | an acid that is a component of perspiration -15083819 27 n 02 unleaded_gasoline 0 unleaded_petrol 0 002 @ 14686913 n 0000 ! 14687261 n 0101 | gasoline that has not been treated with a lead compound -15083974 27 n 01 undercut 0 003 @ 14580897 n 0000 + 01554165 v 0101 + 01554318 v 0101 | the material removed by a cut made underneath -15084110 27 n 01 urease 0 001 @ 14732946 n 0000 | an enzyme that catalyzes the hydrolysis of urea into carbon dioxide and ammonia; is present in intestinal bacteria -15084277 27 n 01 urethane 0 001 @ 14850483 n 0000 | an ester of carbamic acid -15084357 27 n 02 uracil 0 U 1 002 @ 14964590 n 0000 #s 14832193 n 0000 | a base containing nitrogen that is found in RNA (but not in DNA) and derived from pyrimidine; pairs with adenine -15084545 27 n 02 uraninite 0 pitchblende 0 002 @ 15084824 n 0000 %s 14660443 n 0000 | a mineral consisting of uranium oxide and trace amounts of radium and thorium and polonium and lead and helium; uraninite in massive form is called pitchblende which is the chief uranium ore -15084824 27 n 01 uranium_ore 0 005 @ 14688500 n 0000 %s 14627655 n 0000 %s 14651921 n 0000 ~ 14669677 n 0000 ~ 15084545 n 0000 | any ore from which uranium can be extracted -15084999 27 n 03 uranyl 0 uranyl_group 0 uranyl_radical 0 003 @ 14621446 n 0000 #s 15085327 n 0000 #s 15085175 n 0000 | the bivalent radical UO2 which forms salts with acids -15085175 27 n 01 uranyl_nitrate 0 002 @ 15015501 n 0000 %s 15084999 n 0000 | a yellow salt obtained by the reaction of uranium salts with nitric acid -15085327 27 n 01 uranyl_oxalate 0 002 @ 14970920 n 0000 %s 15084999 n 0000 | a salt obtained by the reaction of uranium salts with oxalic acid -15085472 27 n 02 urea 0 carbamide 0 001 @ 14727670 n 0000 | the chief solid component of mammalian urine; synthesized from ammonia and carbon dioxide and used as fertilizer and in animal feed and in plastics -15085682 27 n 01 uric_acid 0 001 @ 14607521 n 0000 | a white tasteless odorless crystalline product of protein metabolism; found in the blood and urine -15085836 27 n 01 urate 0 002 @ 15010703 n 0000 ~ 15085925 n 0000 | a salt of uric acid -15085925 27 n 02 tophus 0 chalkstone 0 001 @ 15085836 n 0000 | a deposit of urates around a joint or in the external ear; diagnostic of advanced or chronic gout -15086088 27 n 01 valine 0 001 @ 14605787 n 0000 | an essential amino acid found in proteins; important for growth in children and nitrogen balance in adults -15086247 27 n 02 linseed 0 flaxseed 0 001 @ 11689483 n 0000 | the seed of flax used as a source of oil -15086352 27 n 02 linseed_oil 0 flaxseed_oil 0 003 @ 14966667 n 0000 %s 14937943 n 0000 %s 14938199 n 0000 | a drying oil extracted from flax seed and used in making such things as oil paints -15086545 27 n 02 tung_oil 0 Chinese_wood_oil 0 001 @ 14966667 n 0000 | a yellow oil obtained from the seeds of the tung tree -15086672 27 n 01 chaulmoogra_oil 0 001 @ 14966667 n 0000 | an oil from chaulmoogra trees; used in treatment of skin diseases and leprosy -15086811 27 n 01 vanadate 0 001 @ 15010703 n 0000 | a salt or ester of vanadic acid; an anion containing pentavalent vanadium -15086939 27 n 01 vanadinite 0 002 @ 14662574 n 0000 %s 14661020 n 0000 | a mineral consisting of chloride and vanadate of lead; a source of vanadium -15087090 27 n 02 vanadium_pentoxide 0 vanadic_acid 0 001 @ 14972359 n 0000 | any of various oxyacids of vanadium; known mostly in the form of its salts -15087244 27 n 01 vanadium_steel 0 001 @ 14716042 n 0000 | steel alloyed with vanadium for greater strength and high-temperature stability -15087384 27 n 01 vellum 1 001 @ 15105268 n 0000 | a heavy creamy-colored paper resembling parchment -15087486 27 n 01 vermiculite 0 001 @ 14662574 n 0000 | any of a group of yellow or brown hydrous silicate minerals having a micaceous structure -15087632 27 n 02 very_low_density_lipoprotein 0 VLDL 0 001 @ 14939230 n 0000 | large lipoproteins rich in triglycerides; VLDLs circulate through the blood giving up their triglycerides to fat and muscle tissue until the VLDL remnants are modified and converted into LDL -15087904 27 n 03 vesuvianite 0 vesuvian 0 idocrase 0 001 @ 14662574 n 0000 | a green or yellow or brown mineral consisting of a hydrated silicate; it occurs as crystals in limestone and is used a gemstone -15088111 27 n 01 vinegar 0 001 @ 14599168 n 0000 | dilute acetic acid -15088183 27 n 01 vinyl 1 001 @ 14592610 n 0000 | shiny and tough and flexible plastic; used especially for floor coverings -15088308 27 n 03 vinyl 0 vinyl_group 0 vinyl_radical 0 001 @ 14621446 n 0000 | a univalent chemical radical derived from ethylene -15088440 27 n 03 vinyl_polymer 0 vinyl_resin 0 polyvinyl_resin 0 004 @ 14902141 n 0000 ~ 14595279 n 0000 ~ 14595403 n 0000 ~ 14595543 n 0000 | a thermoplastic derived by polymerization from compounds containing the vinyl group -15088669 27 n 01 iodopsin 0 003 @ 15089104 n 0000 #p 05456257 n 0000 %s 14735077 n 0000 | a violet photopigment in the retinal cones of the eyes of most vertebrates; plays a role in daylight vision -15088869 27 n 03 visual_purple 0 rhodopsin 0 retinal_purple 0 004 @ 15089104 n 0000 #p 05456456 n 0000 %s 14735077 n 0000 %s 15005386 n 0000 | a red photopigment in the retinal rods of vertebrates; dissociates into retinene by light -15089104 27 n 01 photopigment 0 003 @ 14989820 n 0000 ~ 15088669 n 0000 ~ 15088869 n 0000 | a special pigment found in the rods and cones of the retina -15089258 27 n 01 vitamin 0 005 @ 07570720 n 0000 #s 07938007 n 0000 + 02342422 v 0101 ~ 15089472 n 0000 ~ 15089645 n 0000 | any of a group of organic substances essential in small quantities to normal metabolism -15089472 27 n 01 fat-soluble_vitamin 0 005 @ 15089258 n 0000 ~ 15089803 n 0000 ~ 15092227 n 0000 ~ 15092409 n 0000 ~ 15092751 n 0000 | any vitamin that is soluble in fats -15089645 27 n 01 water-soluble_vitamin 0 004 @ 15089258 n 0000 ~ 15090742 n 0000 ~ 15093137 n 0000 ~ 15093298 n 0000 | any vitamin that is soluble in water -15089803 27 n 04 vitamin_A 0 antiophthalmic_factor 0 axerophthol 0 A 0 003 @ 15089472 n 0000 ~ 15090065 n 0000 ~ 15090238 n 0000 | any of several fat-soluble vitamins essential for normal vision; prevents night blindness or inflammation or dryness of the eyes -15090065 27 n 02 vitamin_A1 0 retinol 0 001 @ 15089803 n 0000 | an unsaturated alcohol that occurs in marine fish-liver oils and is synthesized biologically from carotene -15090238 27 n 02 vitamin_A2 0 dehydroretinol 0 001 @ 15089803 n 0000 | a viscous alcohol that is less active in mammals than is vitamin A1 -15090379 27 n 01 provitamin 0 002 @ 14911057 n 0000 ~ 15090535 n 0000 | vitamin precursor; a substance that is converted into a vitamin in animal tissues -15090535 27 n 03 provitamin_A 0 carotene 0 carotin 0 002 @ 15090379 n 0000 ~ 14721470 n 0000 | an orange isomer of an unsaturated hydrocarbon found in many plants; is converted into vitamin A in the liver -15090742 27 n 06 B-complex_vitamin 0 B_complex 0 vitamin_B_complex 0 vitamin_B 0 B_vitamin 0 B 1 011 @ 15089645 n 0000 ~ 14810561 n 0000 ~ 14919819 n 0000 ~ 14973585 n 0000 ~ 15091129 n 0000 ~ 15091304 n 0000 ~ 15091473 n 0000 ~ 15091669 n 0000 ~ 15091846 n 0000 ~ 15092059 n 0000 ~ 15092650 n 0000 | originally thought to be a single vitamin but now separated into several B vitamins -15091129 27 n 05 vitamin_B1 0 thiamine 0 thiamin 0 aneurin 0 antiberiberi_factor 0 001 @ 15090742 n 0000 | a B vitamin that prevents beriberi; maintains appetite and growth -15091304 27 n 04 vitamin_B12 0 cobalamin 0 cyanocobalamin 0 antipernicious_anemia_factor 0 001 @ 15090742 n 0000 | a B vitamin that is used to treat pernicious anemia -15091473 27 n 06 vitamin_B2 0 vitamin_G 0 riboflavin 0 lactoflavin 0 ovoflavin 0 hepatoflavin 0 002 @ 15090742 n 0000 %s 14870924 n 0000 | a B vitamin that prevents skin lesions and weight loss -15091669 27 n 05 vitamin_B6 0 pyridoxine 0 pyridoxal 0 pyridoxamine 0 adermin 0 001 @ 15090742 n 0000 | a B vitamin that is essential for metabolism of amino acids and starch -15091846 27 n 07 vitamin_Bc 0 vitamin_M 0 folate 0 folic_acid 0 folacin 0 pteroylglutamic_acid 0 pteroylmonoglutamic_acid 0 001 @ 15090742 n 0000 | a B vitamin that is essential for cell growth and reproduction -15092059 27 n 02 niacin 0 nicotinic_acid 0 001 @ 15090742 n 0000 | a B vitamin essential for the normal function of the nervous system and the gastrointestinal tract -15092227 27 n 06 vitamin_D 0 calciferol 0 viosterol 0 ergocalciferol 0 cholecalciferol 0 D 0 002 @ 15089472 n 0000 %s 15059404 n 0000 | a fat-soluble vitamin that prevents rickets -15092409 27 n 03 vitamin_E 0 tocopherol 0 E 1 003 @ 15089472 n 0000 @ 14724645 n 0000 ~ 14720833 n 0000 | a fat-soluble vitamin that is essential for normal reproduction; an important antioxidant that neutralizes free radicals in the body -15092650 27 n 02 biotin 0 vitamin_H 0 001 @ 15090742 n 0000 | a B vitamin that aids in body growth -15092751 27 n 03 vitamin_K 0 naphthoquinone 0 antihemorrhagic_factor 0 003 @ 15089472 n 0000 ~ 15092942 n 0000 ~ 15093049 n 0000 | a fat-soluble vitamin that helps in the clotting of blood -15092942 27 n 03 vitamin_K1 0 phylloquinone 0 phytonadione 0 001 @ 15092751 n 0000 | a form of vitamin K -15093049 27 n 02 vitamin_K3 0 menadione 0 001 @ 15092751 n 0000 | a form of vitamin K -15093137 27 n 03 vitamin_P 0 bioflavinoid 0 citrin 0 001 @ 15089645 n 0000 | a vitamin that maintains the resistance of cell and capillary walls to permeation -15093298 27 n 03 vitamin_C 0 C 3 ascorbic_acid 0 002 @ 15089645 n 0000 @ 14724645 n 0000 | a vitamin found in fresh fruits (especially citrus fruits) and vegetables; prevents scurvy -15093482 27 n 04 vitriol 0 oil_of_vitriol 0 sulfuric_acid 0 sulphuric_acid 0 004 @ 14607521 n 0000 + 00587376 a 0104 %s 14656219 n 0000 ~ 14773865 n 0000 | (H2SO4) a highly corrosive acid made from sulfur dioxide; widely used in the chemical industry -15093735 27 n 01 volatile 0 002 @ 00019613 n 0000 + 02519555 a 0101 | a volatile substance; a substance that changes readily from solid or liquid to a vapor; "it was heated to evaporate the volatiles" -15093938 27 n 01 wallpaper 0 002 @ 14974264 n 0000 + 01268112 v 0101 | a decorative paper for the walls of rooms -15094053 27 n 01 waste_paper 0 001 @ 14974264 n 0000 | paper discarded after use -15094136 27 n 03 water_of_crystallization 0 water_of_crystallisation 0 water_of_hydration 0 001 @ 14845743 n 0000 | the water present in hydrated compounds -15094294 27 n 01 wax 0 020 @ 14938907 n 0000 + 03004852 a 0102 + 01268726 v 0101 ~ 11742003 n 0000 ~ 12588584 n 0000 ~ 14791292 n 0000 ~ 14805322 n 0000 ~ 14871464 n 0000 ~ 14889973 n 0000 ~ 14924786 n 0000 ~ 14954733 n 0000 ~ 14991611 n 0000 ~ 15020528 n 0000 ~ 15042772 n 0000 ~ 15094824 n 0000 ~ 15095103 n 0000 ~ 15095237 n 0000 ~ 15095389 n 0000 ~ 15095496 n 0000 ~ 15095639 n 0000 | any of various substances of either mineral origin or plant or animal origin; they are solid at normal temperatures and insoluble in water -15094824 27 n 01 beeswax 0 005 @ 15094294 n 0000 @ 14700745 n 0000 + 01268870 v 0101 %s 14610548 n 0000 ~ 15095014 n 0000 | a yellow to brown wax secreted by honeybees to build honeycombs -15095014 27 n 01 Ghedda_wax 0 001 @ 15094824 n 0000 | wax from Indian and African bees -15095103 27 n 02 cerumen 0 earwax 0 002 @ 15094294 n 0000 + 02689782 a 0101 | a soft yellow wax secreted by glands in the ear canal -15095237 27 n 02 paraffin 0 paraffin_wax 0 001 @ 15094294 n 0000 | from crude petroleum; used for candles and for preservative or waterproof coatings -15095389 27 n 01 spermaceti 0 001 @ 15094294 n 0000 | a white waxy substance from oil of the sperm whale -15095496 27 n 01 vegetable_wax 0 001 @ 15094294 n 0000 | a waxy substance obtained from plants (especially from the trunks of certain palms) -15095639 27 n 02 shellac_wax 0 lac_wax 0 001 @ 15094294 n 0000 | a hard wax separated from shellac by its insolubility in alcohol -15095771 27 n 01 cadaverine 0 001 @ 14999411 n 0000 | a colorless toxic ptomaine with an unpleasant odor formed during the putrefaction of animal tissue -15095926 27 n 01 cadmium_sulfide 0 002 @ 15063699 n 0000 ~ 15096426 n 0000 | a yellow sulfide used chiefly as a pigment -15096048 27 n 01 cadmium_yellow 0 003 @ 14989820 n 0000 ~ 15096233 n 0000 ~ 15096331 n 0000 | pigment of cadmium sulfide and barium sulfate varying in hue from lemon yellow to orange -15096233 27 n 01 cadmium_yellow_pale 0 001 @ 15096048 n 0000 | pale-hued cadmium yellow pigment -15096331 27 n 01 cadmium_orange 0 001 @ 15096048 n 0000 | orange-hued cadmium yellow pigment -15096426 27 n 01 zinc_cadmium_sulfide 0 001 @ 15095926 n 0000 | cadmium sulfide containing zinc -15096524 27 n 02 verdigris 0 cupric_acetate 0 002 @ 14989820 n 0000 + 00285314 v 0101 | a blue or green powder used as a paint pigment -15096661 27 n 01 wax_paper 0 001 @ 14974264 n 0000 | paper that has been waterproofed by treatment with wax or paraffin -15096783 27 n 04 wetting_agent 0 wetter 0 surfactant 0 surface-active_agent 0 003 @ 14779550 n 0000 ~ 14674408 n 0000 ~ 15097017 n 0000 | a chemical agent capable of reducing the surface tension of a liquid in which it is dissolved -15097017 27 n 01 detergent 0 005 @ 15096783 n 0000 + 02118181 a 0101 ~ 14618050 n 0000 ~ 14803695 n 0000 ~ 15045782 n 0000 | a surface-active chemical widely used in industry and laundering -15097209 27 n 02 builder 0 detergent_builder 0 005 @ 14580897 n 0000 + 00447158 v 0101 ~ 15046077 n 0000 ~ 15046421 n 0000 ~ 15080747 n 0000 | a substance added to soaps or detergents to increase their cleansing action -15097430 27 n 02 whale_oil 0 train_oil 0 001 @ 14755077 n 0000 | a white to brown oil obtained from whale blubber; formerly used as an illuminant -15097578 27 n 02 whey 0 milk_whey 0 001 @ 05403149 n 0000 | the serum or watery part of milk that is separated from the curd in making cheese -15097722 27 n 03 white_lead 0 ceruse 0 lead_carbonate 0 001 @ 14989820 n 0000 | a poisonous white pigment that contains lead -15097849 27 n 01 wicker 0 001 @ 15098161 n 0000 | slender flexible branches or twigs (especially of willow or some canes); used for wickerwork -15097994 27 n 01 wiesenboden 0 001 @ 14844693 n 0000 | a dark meadow soil rich in organic material; developed through poor drainage in humid grassy or sedge regions -15098161 27 n 01 wood 0 098 @ 14991712 n 0000 #s 14943580 n 0000 #s 02815950 n 0000 #s 03025357 n 0000 #s 04277669 n 0000 + 02575330 a 0101 ~ 02830430 n 0000 ~ 11608885 n 0000 ~ 11619136 n 0000 ~ 11620912 n 0000 ~ 11623304 n 0000 ~ 11624840 n 0000 ~ 11627364 n 0000 ~ 11630890 n 0000 ~ 11640898 n 0000 ~ 11643506 n 0000 ~ 11647548 n 0000 ~ 11651133 n 0000 ~ 11661707 n 0000 ~ 11696606 n 0000 ~ 11712621 n 0000 ~ 11746060 n 0000 ~ 11749273 n 0000 ~ 11756522 n 0000 ~ 11763340 n 0000 ~ 12147539 n 0000 ~ 12188484 n 0000 ~ 12191813 n 0000 ~ 12193205 n 0000 ~ 12202234 n 0000 ~ 12203331 n 0000 ~ 12225769 n 0000 ~ 12228045 n 0000 ~ 12261179 n 0000 ~ 12262905 n 0000 ~ 12268918 n 0000 ~ 12281600 n 0000 ~ 12284665 n 0000 ~ 12289115 n 0000 ~ 12301038 n 0000 ~ 12303921 n 0000 ~ 12317487 n 0000 ~ 12318615 n 0000 ~ 12320285 n 0000 ~ 12321304 n 0000 ~ 12329744 n 0000 ~ 12334520 n 0000 ~ 12335351 n 0000 ~ 12340998 n 0000 ~ 12364823 n 0000 ~ 12377658 n 0000 ~ 12406155 n 0000 ~ 12489524 n 0000 ~ 12495396 n 0000 ~ 12497322 n 0000 ~ 12522493 n 0000 ~ 12523319 n 0000 ~ 12524010 n 0000 ~ 12524395 n 0000 ~ 12563281 n 0000 ~ 12566627 n 0000 ~ 12568506 n 0000 ~ 12641796 n 0000 ~ 12652876 n 0000 ~ 12670013 n 0000 ~ 12693457 n 0000 ~ 12695572 n 0000 ~ 12697709 n 0000 ~ 12708520 n 0000 ~ 12709591 n 0000 ~ 12721705 n 0000 ~ 12722382 n 0000 ~ 12731714 n 0000 ~ 12735452 n 0000 ~ 12746474 n 0000 ~ 12752666 n 0000 ~ 12763205 n 0000 ~ 12770736 n 0000 ~ 12807082 n 0000 ~ 12916723 n 0000 ~ 12947171 n 0000 ~ 13097536 n 0000 ~ 13097752 n 0000 ~ 13166191 n 0000 ~ 14785197 n 0000 ~ 14787816 n 0000 ~ 14837678 n 0000 %s 14935319 n 0000 ~ 14942762 n 0000 ~ 14948983 n 0000 ~ 14949075 n 0000 ~ 15020107 n 0000 ~ 15097849 n 0000 ~ 15100023 n 0000 ~ 15100112 n 0000 ~ 15100257 n 0000 ~ 15100479 n 0000 ~ 15102712 n 0000 | the hard fibrous lignified substance under the bark of trees -15100023 27 n 01 dyewood 0 001 @ 15098161 n 0000 | any wood from which dye is obtained -15100112 27 n 01 hardwood 0 001 @ 15098161 n 0000 | the wood of broad-leaved dicotyledonous trees (as distinguished from the wood of conifers) -15100257 27 n 02 softwood 0 deal 1 002 @ 15098161 n 0000 ~ 15100397 n 0000 | wood that is easy to saw (from conifers such as pine or fir) -15100397 27 n 01 pulpwood 0 001 @ 15100257 n 0000 | softwood used to make paper -15100479 27 n 01 raw_wood 0 001 @ 15098161 n 0000 | wood that is not finished or painted -15100570 27 n 01 hardtack 0 001 @ 12695144 n 0000 | a mountain mahogany -15100644 27 n 01 firewood 0 005 @ 14875077 n 0000 ~ 15100834 n 0000 ~ 15100945 n 0000 ~ 15101157 n 0000 ~ 15101271 n 0000 | wood used for fuel; "they collected and cut their own firewood" -15100834 27 n 01 cordwood 0 001 @ 15100644 n 0000 | firewood cut and stacked in cords; wood sold by the cord -15100945 27 n 01 backlog 0 002 @ 15100644 n 0000 ~ 15101059 n 0000 | the large log at the back of a hearth fire -15101059 27 n 01 Yule_log 0 001 @ 15100945 n 0000 | large log traditionally burned at Christmas -15101157 27 n 02 brand 0 firebrand 0 001 @ 15100644 n 0000 | a piece of wood that has been burned or is burning -15101271 27 n 01 pine_knot 0 001 @ 15100644 n 0000 | a joint of pine wood used for fuel -15101361 27 n 03 igniter 0 ignitor 0 lighter 0 007 @ 14875077 n 0000 + 02759614 v 0302 + 02759614 v 0201 + 02759614 v 0101 ~ 14868771 n 0000 ~ 15101586 n 0000 ~ 15101723 n 0000 | a substance used to ignite or kindle a fire -15101586 27 n 05 kindling 0 tinder 0 touchwood 0 spunk 0 punk 2 002 @ 15101361 n 0000 + 02761685 v 0101 | material for starting a fire -15101723 27 n 01 punk 1 001 @ 15101361 n 0000 | substance that smolders when ignited; used to light fuses (especially fireworks) -15101854 27 n 02 board 0 plank 0 010 @ 14943580 n 0000 + 01180701 v 0201 + 01336159 v 0201 ~ 03729131 n 0000 ~ 04228844 n 0000 ~ 04544805 n 0000 ~ 15102455 n 0000 ~ 15102622 n 0000 %p 15102712 n 0000 %p 15102894 n 0000 | a stout length of sawn timber; made in a wide variety of sizes and used for many purposes -15102167 27 n 03 lemongrass 0 lemon_grass 0 lemongrass_oil 0 001 @ 14966667 n 0000 | an aromatic oil that smells like lemon and is widely used in Asian cooking and in perfumes and medicines -15102359 27 n 01 planking 0 001 @ 14943580 n 0000 | planks collectively; a quantity of planks -15102455 27 n 02 chipboard 0 hardboard 0 001 @ 15101854 n 0000 | a cheap hard material made from wood chips that are pressed together and bound with synthetic resin -15102622 27 n 01 deal 0 001 @ 15101854 n 0000 | a plank of softwood (fir or pine board) -15102712 27 n 01 knot 0 002 @ 15098161 n 0000 #p 15101854 n 0000 | a hard cross-grained round piece of wood in a board where a branch emerged; "the saw buckled when it hit a knot" -15102894 27 n 01 knothole 0 002 @ 09304465 n 0000 #p 15101854 n 0000 | a hole in a board where a knot came out -15103007 27 n 03 clapboard 0 weatherboard 0 weatherboarding 0 002 @ 15041050 n 0000 + 01337412 v 0101 | a long thin board with one edge thicker than the other; used as siding by lapping one board over the board below -15103226 27 n 02 wolframite 0 iron_manganese_tungsten 0 002 @ 14662574 n 0000 %s 14659512 n 0000 | a mineral consisting of iron and manganese tungstate in crystalline form; the principal ore of tungsten; found in quartz veins associated with granitic rocks -15103485 27 n 01 wollastonite 0 001 @ 14662574 n 0000 | a white or greyish mineral typically found in metamorphic limestone; a silicate of calcium -15103634 27 n 01 wood_pulp 0 001 @ 14794418 n 0000 | wood that has been ground to a pulp; used in making cellulose products (as rayon or paper) -15103780 27 n 02 wood_sugar 0 xylose 0 001 @ 14792703 n 0000 | a sugar extracted from wood or straw; used in foods for diabetics -15103911 27 n 02 Wood's_metal 0 Wood's_alloy 0 001 @ 14586769 n 0000 | a fusible alloy that is half bismuth plus lead, tin, and cadmium; melts at about 160 degrees Fahrenheit -15104088 27 n 01 wood_tar 0 002 @ 14894481 n 0000 ~ 14991476 n 0000 | any tar obtained by the destructive distillation of wood -15104217 27 n 01 wool 0 009 @ 14959472 n 0000 ~ 15039335 n 0000 ~ 15104488 n 0000 ~ 15104598 n 0000 ~ 15104669 n 0000 ~ 15104752 n 0000 ~ 15104860 n 0000 ~ 15104933 n 0000 ~ 15105008 n 0000 | fiber sheared from animals (such as sheep) and twisted into yarn for weaving -15104488 27 n 01 raw_wool 0 001 @ 15104217 n 0000 | wool in its natural condition; not refined or processed -15104598 27 n 01 alpaca 0 001 @ 15104217 n 0000 | wool of the alpaca -15104669 27 n 01 cashmere 0 001 @ 15104217 n 0000 | the wool of the Kashmir goat -15104752 27 n 01 fleece 0 002 @ 15104217 n 0000 + 01560369 v 0101 | the wool of a sheep or similar animal -15104860 27 n 01 shoddy 0 001 @ 15104217 n 0000 | reclaimed wool fiber -15104933 27 n 01 vicuna 0 001 @ 15104217 n 0000 | the wool of the vicuna -15105008 27 n 01 virgin_wool 0 001 @ 15104217 n 0000 | wool not used before; wool not processed or woven before -15105122 27 n 01 wrapping_paper 0 004 @ 14974264 n 0000 ~ 14878980 n 0000 ~ 14879115 n 0000 ~ 14879247 n 0000 | a tough paper used for wrapping -15105268 27 n 01 writing_paper 0 012 @ 14974264 n 0000 ~ 06258852 n 0000 ~ 06259166 n 0000 ~ 14694672 n 0000 ~ 14782529 n 0000 ~ 14934229 n 0000 ~ 14934527 n 0000 ~ 14934655 n 0000 ~ 14934758 n 0000 ~ 14976170 n 0000 ~ 15082382 n 0000 ~ 15087384 n 0000 | paper material made into thin sheets that are sized to take ink; used for writing correspondence and manuscripts -15105638 27 n 01 wool_oil 0 001 @ 14755077 n 0000 | any oil used to oil wool before spinning -15105733 27 n 01 wulfenite 0 001 @ 14662574 n 0000 | a yellow to orange or brown mineral used as a molybdenum ore -15105849 27 n 01 wurtzite 0 001 @ 14662574 n 0000 | a brownish-black mineral consisting of zinc sulfide -15105955 27 n 01 xenotime 0 004 @ 14662574 n 0000 %s 14658546 n 0000 %s 14661482 n 0000 %s 14661740 n 0000 | a brown-to-yellow mineral that is a phosphate of yttrium in crystalline form -15106143 27 n 02 xylene 0 xylol 0 001 @ 15047313 n 0000 | a colorless flammable volatile liquid hydrocarbon used as a solvent -15106271 27 n 02 yeast 0 barm 0 005 @ 14934031 n 0000 + 03145467 a 0101 ~ 07640560 n 0000 ~ 14784705 n 0000 ~ 15106674 n 0000 | a commercial leavening agent containing yeast cells; used to raise the dough in making bread and for fermenting beer or whiskey -15106529 27 n 02 yellowcake 0 U308 0 001 @ 14818238 n 0000 | an impure mixture of uranium oxides obtained during the processing of uranium ore -15106674 27 n 01 mother 0 001 @ 15106271 n 0000 | a stringy slimy substance consisting of yeast cells and bacteria; forms during fermentation and is added to cider or wine to produce vinegar -15106867 27 n 01 zeolite 0 006 @ 14662574 n 0000 @ 15056112 n 0000 ~ 15107196 n 0000 ~ 15107362 n 0000 ~ 15107524 n 0000 ~ 15107677 n 0000 | any of a family of glassy minerals analogous to feldspar containing hydrated aluminum silicates of calcium or sodium or potassium; formed in cavities in lava flows and in plutonic rocks -15107196 27 n 02 chabazite 0 chabasite 0 001 @ 15106867 n 0000 | a group of minerals of the zeolite family consisting of a hydrous silicate of calcium and aluminum -15107362 27 n 01 heulandite 0 001 @ 15106867 n 0000 | a group of minerals of the zeolite family consisting of a hydrous aluminum silicate of sodium and calcium -15107524 27 n 01 natrolite 0 001 @ 15106867 n 0000 | a group of minerals of the zeolite family consisting of a hydrous silicate of sodium and aluminum -15107677 27 n 01 phillipsite 0 001 @ 15106867 n 0000 | a group of white or reddish crystalline minerals of the zeolite family consisting of a hydrous silicate of calcium and potassium and aluminum -15107876 27 n 03 zinc_blende 0 blende 0 sphalerite 0 003 @ 14662574 n 0000 %s 14641223 n 0000 %s 14657818 n 0000 | an ore that is the chief source of zinc; consists largely of zinc sulfide in crystalline form -15108087 27 n 04 zinc_oxide 0 flowers_of_zinc 0 philosopher's_wool 0 philosophers'_wool 0 002 @ 14971519 n 0000 #s 15108745 n 0000 | oxide of zinc; a white powder used as a pigment or in cosmetics or glass or inks and in zinc ointment -15108324 27 n 04 zinc_sulfate 0 zinc_sulphate 0 white_vitriol 0 zinc_vitriol 0 001 @ 15063493 n 0000 | a colorless water-soluble powder; used as a mordant or to preserve wood or for the electrodeposition of zinc -15108538 27 n 02 zinc_sulfide 0 zinc_sulphide 0 001 @ 15063699 n 0000 | a yellow to white crystalline fluorescent compound that occurs naturally as sphalerite or wurtzite and is used as a luminous pigment -15108745 27 n 02 zinc_white 0 Chinese_white 0 002 @ 14989820 n 0000 %s 15108087 n 0000 | a white pigment used in house paints; consists of zinc oxide -15108897 27 n 01 zinkenite 0 001 @ 14662574 n 0000 | a steel grey metallic mineral (a sulphide of lead and antimony) -15109016 27 n 01 zinnwaldite 0 002 @ 14681555 n 0000 %s 14643793 n 0000 | a mica containing iron and lithium -15109127 27 n 02 zircon 0 zirconium_silicate 0 004 @ 14662574 n 0000 %s 14662281 n 0000 ~ 14909584 n 0000 ~ 14924915 n 0000 | a common mineral occurring in small crystals; chief source of zirconium; used as a refractory when opaque and as a gem when transparent -15109391 27 n 03 zirconium_oxide 0 zirconia 0 zirconium_dioxide 0 001 @ 14971519 n 0000 | a white crystalline oxide; used in refractories and in insulation and abrasives and enamels and glazes -15109586 27 n 01 zymase 0 001 @ 14732946 n 0000 | a complex of enzymes that cause glycolysis; originally found in yeast but also present in higher organisms -15109745 27 n 01 emanation 0 004 @ 00020827 n 0000 + 00546192 v 0101 + 00004605 v 0103 ~ 15109931 n 0000 | something that is emitted or radiated (as a gas or an odor or a light, etc.) -15109931 27 n 01 ectoplasm 0 002 @ 15109745 n 0000 ;c 05951969 n 0000 | (spiritualism) a substance supposed to emanate from the body of the medium during a trance -15110096 27 n 01 essence 0 002 @ 00019613 n 0000 + 02722988 a 0101 | any substance possessing to a high degree the predominant properties of a plant or drug or other natural product from which it is extracted -15110307 27 n 01 ligand 0 001 @ 00020090 n 0000 | a substance (an atom or molecule or radical or ion) that forms a complex around a central atom -15110454 27 n 01 enamel 0 002 @ 14818238 n 0000 + 01681723 v 0101 | a colored glassy compound (opaque or partially opaque) that is fused to the surface of metal or glass or pottery for decoration or protection -15110666 27 n 01 imide 0 001 @ 14727670 n 0000 | any of a class of organic compounds that contain the divalent radical -CONHCO- -15110796 27 n 01 metabolite 0 001 @ 00020090 n 0000 | any substance involved in metabolism (either as a product of metabolism or as necessary for metabolism) -15110956 27 n 01 vegetable_matter 0 003 @ 00020827 n 0000 ~ 14689493 n 0000 ~ 14814616 n 0000 | matter produced by plants or growing in the manner of a plant -15111116 27 n 01 anabolic_steroid 0 001 @ 14745635 n 0000 | any of a group of synthetic steroid hormones used to stimulate muscle and bone growth; more than 100 have been developed and each requires a prescription to be used legally in the United States; sometimes used illicitly by athletes to increase their strength -15111437 27 n 01 pregnanediol 0 001 @ 14818238 n 0000 | a compound found in women's urine during certain phases of the menstrual cycle and in the urine of pregnant women -15111609 27 n 02 tubocurarine 0 curare 0 003 @ 14712692 n 0000 @ 14961512 n 0000 @ 15036638 n 0000 | a toxic alkaloid found in certain tropical South American trees that is a powerful relaxant for striated muscles; "curare acts by blocking cholinergic transmission at the myoneural junction" -15111903 27 n 01 tuberculin 0 001 @ 14940100 n 0000 | a sterile liquid containing a purified protein derivative of the tuberculosis bacterium; used in the diagnosis of tuberculosis -15112086 27 n 01 vehicle 0 001 @ 00020090 n 0000 | any substance that facilitates the use of a drug or pigment or other material that is mixed with it -15112239 27 n 02 vesicant 0 vesicatory 0 004 @ 14779550 n 0000 + 01611683 a 0201 + 01611683 a 0102 ~ 14957270 n 0000 | a chemical agent that causes blistering (especially mustard gas) -15112425 27 n 02 vernix 0 vernix_caseosa 0 001 @ 14580897 n 0000 | a white cheeselike protective material that covers the skin of a fetus -15112565 27 n 01 vitrification 0 002 @ 15046900 n 0000 + 00537892 v 0101 | a vitrified substance; the glassy result of being vitrified -15112702 27 n 01 wad 0 001 @ 14580897 n 0000 | a small mass of soft material; "he used a wad of cotton to wipe the counter" -15112828 27 n 01 xanthate 0 002 @ 15010703 n 0000 ~ 14965780 n 0000 | a salt or ester of xanthic acid -15112932 27 n 01 xanthic_acid 0 001 @ 14607521 n 0000 | any of a class of unstable organic acids containing sulphur -15113050 27 n 01 xanthine 0 001 @ 14727670 n 0000 | crystalline oxidation product of the metabolism of nucleoproteins; precursor of uric acid; found in many organs and in urine -15113229 28 n 03 time_period 0 period_of_time 0 period 0 139 @ 13575869 n 0000 ~ 15115926 n 0000 ~ 15116095 n 0000 ~ 15117516 n 0000 ~ 15117621 n 0000 ~ 15117809 n 0000 ~ 15118228 n 0000 ~ 15118453 n 0000 ~ 15119072 n 0000 ~ 15119185 n 0000 ~ 15119374 n 0000 ~ 15120346 n 0000 ~ 15122231 n 0000 ~ 15131123 n 0000 ~ 15133621 n 0000 ~ 15136147 n 0000 ~ 15136342 n 0000 ~ 15138809 n 0000 ~ 15140405 n 0000 ~ 15140744 n 0000 ~ 15140892 n 0000 ~ 15141213 n 0000 ~ 15141375 n 0000 ~ 15141486 n 0000 ~ 15141693 n 0000 ~ 15141894 n 0000 ~ 15142568 n 0000 ~ 15142836 n 0000 ~ 15144371 n 0000 ~ 15157041 n 0000 ~ 15162388 n 0000 ~ 15164957 n 0000 ~ 15165289 n 0000 ~ 15167027 n 0000 ~ 15167349 n 0000 ~ 15167474 n 0000 ~ 15167577 n 0000 ~ 15167778 n 0000 ~ 15167906 n 0000 ~ 15169873 n 0000 ~ 15170331 n 0000 ~ 15170504 n 0000 ~ 15185996 n 0000 ~ 15201505 n 0000 ~ 15203229 n 0000 ~ 15203791 n 0000 ~ 15204297 n 0000 ~ 15204485 n 0000 ~ 15204609 n 0000 ~ 15204720 n 0000 ~ 15204907 n 0000 ~ 15204983 n 0000 ~ 15205532 n 0000 ~ 15205719 n 0000 ~ 15205799 n 0000 ~ 15206097 n 0000 ~ 15206195 n 0000 ~ 15206590 n 0000 ~ 15206744 n 0000 ~ 15208540 n 0000 ~ 15209413 n 0000 ~ 15210383 n 0000 ~ 15210765 n 0000 ~ 15211090 n 0000 ~ 15211385 n 0000 ~ 15211711 n 0000 ~ 15212070 n 0000 ~ 15212358 n 0000 ~ 15212638 n 0000 ~ 15213008 n 0000 ~ 15213303 n 0000 ~ 15213669 n 0000 ~ 15213963 n 0000 ~ 15224156 n 0000 ~ 15224486 n 0000 ~ 15226732 n 0000 ~ 15228910 n 0000 ~ 15230617 n 0000 ~ 15230790 n 0000 ~ 15231031 n 0000 ~ 15231263 n 0000 ~i 15231415 n 0000 ~ 15231634 n 0000 ~i 15231765 n 0000 ~i 15231964 n 0000 ~i 15232236 n 0000 ~i 15232406 n 0000 ~i 15232712 n 0000 ~i 15232899 n 0000 ~i 15233047 n 0000 ~i 15233239 n 0000 ~i 15233411 n 0000 ~ 15233614 n 0000 ~ 15233778 n 0000 ~ 15233989 n 0000 ~ 15236475 n 0000 ~ 15237567 n 0000 ~ 15238074 n 0000 ~ 15239292 n 0000 ~ 15239579 n 0000 ~ 15242955 n 0000 ~ 15243351 n 0000 ~ 15244505 n 0000 ~ 15248564 n 0000 ~ 15249636 n 0000 ~ 15254550 n 0000 ~ 15260964 n 0000 ~ 15262120 n 0000 ~ 15266034 n 0000 ~ 15267945 n 0000 ~ 15268094 n 0000 ~ 15270431 n 0000 ~ 15273626 n 0000 ~ 15274863 n 0000 ~ 15275094 n 0000 ~ 15275727 n 0000 ~ 15290337 n 0000 ~ 15291110 n 0000 ~ 15292502 n 0000 ~ 15293227 n 0000 ~ 15293328 n 0000 ~ 15293590 n 0000 ~ 15293788 n 0000 ~ 15293931 n 0000 ~ 15294382 n 0000 ~ 15294607 n 0000 ~ 15294745 n 0000 ~ 15294884 n 0000 ~ 15295045 n 0000 ~ 15295778 n 0000 ~ 15296920 n 0000 ~ 15297859 n 0000 ~i 15298283 n 0000 ~ 15298507 n 0000 ~ 15298695 n 0000 ~ 15298852 n 0000 ~ 15299225 n 0000 ~ 15299585 n 0000 ~ 15299783 n 0000 | an amount of time; "a time period of 30 years"; "hastened the period of time of his recovery"; "Picasso's blue period" -15115926 28 n 02 trial_period 0 test_period 0 003 @ 15113229 n 0000 ~ 15297303 n 0000 ~ 15297472 n 0000 | a period of time during which someone or something is tested -15116095 28 n 01 time_frame 0 001 @ 15113229 n 0000 | a time period during which something occurs or is expected to occur; "an agreement can be reached in a reasonably short time frame" -15116283 28 n 02 geological_time 0 geologic_time 0 005 @ 00028270 n 0000 ~ 15243730 n 0000 ~ 15247518 n 0000 ~ 15248020 n 0000 ~ 15248269 n 0000 | the time of the physical formation and development of the earth (especially prior to human history) -15116532 28 n 01 biological_time 0 006 @ 00028270 n 0000 ~ 15135700 n 0000 ~ 15154462 n 0000 ~ 15154646 n 0000 ~ 15226214 n 0000 ~ 15227391 n 0000 | the time of various biological processes -15116724 28 n 01 cosmic_time 0 004 @ 00028270 n 0000 ~ 15208162 n 0000 ~ 15221818 n 0000 ~ 15223343 n 0000 | the time covered by the physical formation and development of the universe -15116910 28 n 03 civil_time 0 standard_time 0 local_time 0 009 @ 00028270 n 0000 ~ 15131734 n 0000 ~ 15131994 n 0000 ~ 15132201 n 0000 ~ 15132408 n 0000 ~ 15132638 n 0000 ~ 15132865 n 0000 ~ 15133069 n 0000 ~ 15133289 n 0000 | the official time in a local region (adjusted for location around the Earth); established by law or custom -15117246 28 n 04 daylight-saving_time 0 daylight-savings_time 0 daylight_saving 0 daylight_savings 0 001 @ 00028270 n 0000 | time during which clocks are set one hour ahead of local standard time; widely adopted during summer to provide extra daylight in the evenings -15117516 28 n 01 hours 1 001 @ 15113229 n 0000 | an indefinite period of time; "they talked for hours" -15117621 28 n 01 downtime 0 002 @ 15113229 n 0000 ! 15117809 n 0101 | a period of time when something (as a machine or factory) is not operating (especially as a result of malfunctions) -15117809 28 n 01 uptime 0 004 @ 15113229 n 0000 ;c 03316406 n 0000 ! 15117621 n 0101 ~ 15118011 n 0000 | a period of time when something (as a machine or factory) is functioning and available for use -15118011 28 n 01 24/7 0 001 @ 15117809 n 0000 | uptime is 24 hours a day 7 days a week -15118100 28 n 01 hours 0 002 @ 15118228 n 0000 ~ 15291801 n 0000 | a period of time assigned for work; "they work long hours" -15118228 28 n 01 work_time 0 008 @ 15113229 n 0000 ! 15118453 n 0101 ~ 15118100 n 0000 ~ 15118724 n 0000 ~ 15135996 n 0000 ~ 15136453 n 0000 ~ 15137194 n 0000 ~ 15137295 n 0000 | a time period when you are required to work -15118453 28 n 01 time_off 0 007 @ 15113229 n 0000 ! 15118228 n 0101 ~ 15118935 n 0000 ~ 15137425 n 0000 ~ 15137556 n 0000 ~ 15137676 n 0000 ~ 15139130 n 0000 | a time period when you are not required to work; "he requested time off to attend his grandmother's funeral" -15118724 28 n 01 face_time 0 001 @ 15118228 n 0000 | work time spent at the location of or in the presence of other people; "instead of working on the problem at home he devoted face time to it at the office" -15118935 28 n 01 compensatory_time 0 001 @ 15118453 n 0000 | time off that is granted to a worker as compensation for working overtime -15119072 28 n 01 bout 1 001 @ 15113229 n 0000 | a period of illness; "a bout of fever"; "a bout of depression" -15119185 28 n 01 hospitalization 0 002 @ 15113229 n 0000 + 02348927 v 0101 | a period of time when you are confined to a hospital; "now they try to shorten the patient's hospitalization" -15119374 28 n 01 travel_time 0 001 @ 15113229 n 0000 | a period of time spent traveling; "workers were not paid for their travel time between home and factory" -15119536 28 n 02 present 0 nowadays 0 008 @ 00028270 n 0000 + 01731351 a 0101 ~ 15119919 n 0000 ~ 15120050 n 0000 ~ 15120223 n 0000 ~ 15135434 n 0000 ~ 15262921 n 0000 ~ 15263045 n 0000 | the period of time that is happening now; any continuous stretch of time including the moment of speech; "that is enough for the present"; "he lives in the present with no thought of tomorrow" -15119919 28 n 01 now 0 001 @ 15119536 n 0000 | the momentary present; "Now is a good time to do it"; "it worked up to right now" -15120050 28 n 03 here_and_now 0 present_moment 0 moment 2 001 @ 15119536 n 0000 | at this time; "the disappointments of the here and now"; "she is studying at the moment" -15120223 28 n 01 date 2 001 @ 15119536 n 0000 | the present; "they are up to date"; "we haven't heard from them to date" -15120346 28 n 01 times 1 003 @ 15113229 n 0000 ~ 15120528 n 0000 ~ 15120715 n 0000 | a more or less definite period of time now or previously present; "it was a sign of the times" -15120528 28 n 04 modern_times 0 present_times 0 modern_world 0 contemporary_world 0 001 @ 15120346 n 0000 | the circumstances and ideas of the present age; "in modern times like these" -15120715 28 n 01 Roman_times 0 001 @ 15120346 n 0000 | the time period during which Rome dominated Europe -15120823 28 n 03 past 0 past_times 0 yesteryear 0 009 @ 00028270 n 0000 ! 15121625 n 0101 ~ 15121088 n 0000 ~ 15121153 n 0000 ~ 15121302 n 0000 ~ 15121406 n 0000 ~ 15252524 n 0000 ~ 15252635 n 0000 ~ 15263138 n 0000 | the time that has elapsed; "forget the past" -15121088 28 n 01 yore 0 001 @ 15120823 n 0000 | time long past -15121153 28 n 02 bygone 0 water_under_the_bridge 0 002 @ 15120823 n 0000 + 01728919 a 0101 | past events to be put aside; "let bygones be bygones" -15121302 28 n 01 old 0 001 @ 15120823 n 0000 | past times (especially in the phrase `in days of old') -15121406 28 n 01 history 0 006 @ 15120823 n 0000 + 01730060 a 0101 %p 15253139 n 0000 %p 15254028 n 0000 %p 15259284 n 0000 %p 15259812 n 0000 | the aggregate of past events; "a critical time in the school's history" -15121625 28 n 04 future 0 hereafter 0 futurity 0 time_to_come 0 009 @ 00028270 n 0000 + 01884353 a 0301 + 01732270 a 0301 ! 15120823 n 0101 ~ 15121880 n 0000 ~ 15252770 n 0000 ~ 15263675 n 0000 ~ 15263795 n 0000 ~ 15263925 n 0000 | the time yet to come -15121880 28 n 01 kingdom_come 0 001 @ 15121625 n 0000 | the end of time; "you can wet the bed till kingdom come, for all I care" -15122011 28 n 01 musical_time 0 008 @ 00028270 n 0000 ;c 07020895 n 0000 ~ 07086518 n 0000 ~ 15264010 n 0000 ~ 15264168 n 0000 ~ 15264264 n 0000 ~ 15264363 n 0000 ~ 15264607 n 0000 | (music) the beat of musical rhythm -15122231 28 n 01 time 0 012 @ 15113229 n 0000 + 00297906 v 0101 + 00490968 v 0102 ~ 15123115 n 0000 ~ 15123362 n 0000 ~ 15123512 n 0000 ~ 15123589 n 0000 ~ 15246258 n 0000 ~ 15246353 n 0000 ~ 15246853 n 0000 ~ 15247410 n 0000 ~ 15262794 n 0000 | an indefinite period (usually marked by specific attributes or activities); "he waited a long time"; "the time of year for planting"; "he was a great actor in his time" -15122648 28 n 01 Elizabethan_age 0 001 @i 15254028 n 0000 | a period in British history during the reign of Elizabeth I in the 16th century; an age marked by literary achievement and domestic prosperity -15122853 28 n 01 Victorian_age 0 001 @i 15254028 n 0000 | a period in British history during the reign of Queen Victoria in the 19th century; her character and moral standards restored the prestige of the British monarchy but gave the era a prudish reputation -15123115 28 n 01 day 3 003 @ 15122231 n 0000 ~ 15171307 n 0000 ~ 15171738 n 0000 | some point or period in time; "it should arrive any day now"; "after that day she never trusted him again"; "those were the days"; "these days it is not unusual" -15123362 28 n 01 dead 0 001 @ 15122231 n 0000 | a time when coldness (or some other quality associated with death) is intense; "the dead of winter" -15123512 28 n 01 hard_times 0 001 @ 15122231 n 0000 | a time of difficulty -15123589 28 n 01 incarnation 0 001 @ 15122231 n 0000 | time passed in a particular bodily form; "he believes that his life will be better in his next incarnation" -15123754 28 n 01 continuum 0 004 @ 00028270 n 0000 + 00597424 a 0101 + 00594413 a 0101 ~ 15123996 n 0000 | a continuous nonspatial whole or extent or succession in which no part or portion is distinct or distinguishable from adjacent parts -15123996 28 n 01 history 2 001 @ 15123754 n 0000 | the continuum of events occurring in succession leading from the past to the present and even into the future; "all of human history" -15124183 28 n 03 Phanerozoic 0 Phanerozoic_eon 0 Phanerozoic_aeon 0 002 @i 15243730 n 0000 %p 15124361 n 0000 | the period from about 5,400 million years ago until the present -15124361 28 n 03 Cenozoic 0 Cenozoic_era 0 Age_of_Mammals 0 004 @i 15248020 n 0000 #p 15124183 n 0000 %p 15124545 n 0000 %p 15125097 n 0000 | approximately the last 63 million years -15124545 28 n 03 Quaternary 0 Quaternary_period 0 Age_of_Man 0 004 @i 15247518 n 0000 #p 15124361 n 0000 %p 15124713 n 0000 %p 15124864 n 0000 | last 2 million years -15124713 28 n 04 Holocene 0 Holocene_epoch 0 Recent 0 Recent_epoch 0 002 @i 15248269 n 0000 #p 15124545 n 0000 | approximately the last 10,000 years -15124864 28 n 03 Pleistocene 0 Pleistocene_epoch 0 Glacial_epoch 0 002 @i 15248269 n 0000 #p 15124545 n 0000 | from two million to 11 thousand years ago; extensive glaciation of the northern hemisphere; the time of human evolution -15125097 28 n 02 Tertiary 0 Tertiary_period 0 007 @i 15247518 n 0000 #p 15124361 n 0000 %p 15125323 n 0000 %p 15125519 n 0000 %p 15125679 n 0000 %p 15125845 n 0000 %p 15126000 n 0000 | from 63 million to 2 million years ago -15125323 28 n 02 Pliocene 0 Pliocene_epoch 0 002 @i 15248269 n 0000 #p 15125097 n 0000 | from 13 million to 2 million years ago; growth of mountains; cooling of climate; more and larger mammals -15125519 28 n 02 Miocene 0 Miocene_epoch 0 002 @i 15248269 n 0000 #p 15125097 n 0000 | from 25 million to 13 million years ago; appearance of grazing mammals -15125679 28 n 02 Oligocene 0 Oligocene_epoch 0 002 @i 15248269 n 0000 #p 15125097 n 0000 | from 40 million to 25 million years ago; appearance of sabertoothed cats -15125845 28 n 02 Eocene 0 Eocene_epoch 0 002 @i 15248269 n 0000 #p 15125097 n 0000 | from 58 million to 40 million years ago; presence of modern mammals -15126000 28 n 02 Paleocene 0 Paleocene_epoch 0 002 @i 15248269 n 0000 #p 15125097 n 0000 | from 63 million to 58 million years ago; appearance of birds and earliest mammals -15126175 28 n 03 Mesozoic 0 Mesozoic_era 0 Age_of_Reptiles 0 004 @i 15248020 n 0000 %p 15126361 n 0000 %p 15126595 n 0000 %p 15126750 n 0000 | from 230 million to 63 million years ago -15126361 28 n 02 Cretaceous 0 Cretaceous_period 0 003 @i 15247518 n 0000 #p 15126175 n 0000 + 03057591 a 0101 | from 135 million to 63 million years ago; end of the age of reptiles; appearance of modern insects and flowering plants -15126595 28 n 02 Jurassic 0 Jurassic_period 0 002 @i 15247518 n 0000 #p 15126175 n 0000 | from 190 million to 135 million years ago; dinosaurs; conifers -15126750 28 n 02 Triassic 0 Triassic_period 0 002 @i 15247518 n 0000 #p 15126175 n 0000 | from 230 million to 190 million years ago; dinosaurs, marine reptiles; volcanic activity -15126931 28 n 02 Paleozoic 0 Paleozoic_era 0 007 @i 15248020 n 0000 %p 15127165 n 0000 %p 15127307 n 0000 %p 15127982 n 0000 %p 15128200 n 0000 %p 15128363 n 0000 %p 15128549 n 0000 | from 544 million to about 230 million years ago -15127165 28 n 02 Permian 0 Permian_period 0 002 @i 15247518 n 0000 #p 15126931 n 0000 | from 280 million to 230 million years ago; reptiles -15127307 28 n 02 Carboniferous 0 Carboniferous_period 0 005 @i 15247518 n 0000 #p 15126931 n 0000 + 03053044 a 0101 %p 15127507 n 0000 %p 15127729 n 0000 | from 345 million to 280 million years ago -15127507 28 n 04 Pennsylvanian 0 Pennsylvanian_period 0 Upper_Carboniferous 0 Upper_Carboniferous_period 0 002 @i 15247518 n 0000 #p 15127307 n 0000 | from 310 million to 280 million years ago; warm climate; swampy land -15127729 28 n 04 Mississippian 0 Missippian_period 0 Lower_Carboniferous 0 Lower_Carboniferous_period 0 002 @i 15247518 n 0000 #p 15127307 n 0000 | from 345 million to 310 million years ago; increase of land areas; primitive ammonites; winged insects -15127982 28 n 03 Devonian 0 Devonian_period 0 Age_of_Fishes 0 002 @i 15247518 n 0000 #p 15126931 n 0000 | from 405 million to 345 million years ago; preponderance of fishes and appearance of amphibians and ammonites -15128200 28 n 02 Silurian 0 Silurian_period 0 002 @i 15247518 n 0000 #p 15126931 n 0000 | from 425 million to 405 million years ago; first air-breathing animals -15128363 28 n 02 Ordovician 0 Ordovician_period 0 002 @i 15247518 n 0000 #p 15126931 n 0000 | from 500 million to 425 million years ago; conodonts and ostracods and algae and seaweeds -15128549 28 n 02 Cambrian 0 Cambrian_period 0 002 @i 15247518 n 0000 #p 15126931 n 0000 | from 544 million to about 500 million years ago; marine invertebrates -15128711 28 n 04 Precambrian 0 Precambrian_eon 0 Precambrian_aeon 0 Precambrian_period 0 003 @i 15243730 n 0000 %p 15128997 n 0000 %p 15129220 n 0000 | the eon following the Hadean time and preceding the Phanerozoic eon; from about 3,800 million years ago until 544 million years ago -15128997 28 n 03 Proterozoic 0 Proterozoic_eon 0 Proterozoic_aeon 0 003 @i 15243730 n 0000 #p 15128711 n 0000 + 00815406 a 0101 | from 2,500 to 544 million years ago; bacteria and fungi; primitive multicellular organisms -15129220 28 n 07 Archean 0 Archean_eon 0 Archean_aeon 0 Archeozoic 0 Archaeozoic 0 Archeozoic_eon 0 Archaeozoic_aeon 0 005 @i 15243730 n 0000 #p 15128711 n 0000 + 00814251 a 0502 + 00814251 a 0401 + 00814073 a 0101 | the time from 3,800 million years to 2,500 million years ago; earth's crust formed; unicellular organisms are earliest forms of life -15129572 28 n 07 Hadean 0 Hadean_time 0 Hadean_eon 0 Hadean_aeon 0 Priscoan 0 Priscoan_eon 0 Priscoan_aeon 0 001 @i 15243730 n 0000 | the earliest eon in the history of the Earth from the first accretion of planetary material (around 4,600 million years ago) until the date of the oldest known rocks (about 3,800 million years ago); no evidence of life -15129927 28 n 02 clock_time 0 time 3 007 @ 05816790 n 0000 + 00297906 v 0201 = 00130412 a 0000 = 00130596 a 0000 ~ 15131598 n 0000 ~ 15166897 n 0000 ~ 15228378 n 0000 | a reading of a point in time as given by a clock; "do you know what time it is?"; "the time is 10 o'clock" -15130205 28 n 06 Greenwich_Mean_Time 0 Greenwich_Time 0 GMT 0 universal_time 0 UT 0 UT1 0 002 @ 00028270 n 0000 ~ 15130434 n 0000 | the local time at the 0 meridian passing through Greenwich, England; it is the same everywhere -15130434 28 n 02 coordinated_universal_time 0 UTC 0 004 @ 15130205 n 0000 ~ 15130612 n 0000 ~ 15131269 n 0000 ~ 15131448 n 0000 | Greenwich Mean Time updated with leap seconds -15130612 28 n 02 Earth-received_time 0 ERT 0 001 @ 15130434 n 0000 | the coordinated universal time when an event is received on Earth -15130749 28 n 02 one-way_light_time 0 OWLT 0 001 @ 15131123 n 0000 | the elapsed time it takes for light (or radio signals) to travel between the Earth and a celestial object -15130926 28 n 02 round-trip_light_time 0 RTLT 0 001 @ 15131123 n 0000 | the elapsed time it takes for a signal to travel from Earth to a spacecraft (or other body) and back to the starting point -15131123 28 n 01 elapsed_time 0 003 @ 15113229 n 0000 ~ 15130749 n 0000 ~ 15130926 n 0000 | the time that elapses while some event is occurring -15131269 28 n 02 transmission_time 0 TRM 0 001 @ 15130434 n 0000 | the coordinated universal time when a transmission is sent from Earth to a spacecraft or other celestial body -15131448 28 n 02 spacecraft_event_time 0 SCET 0 001 @ 15130434 n 0000 | the coordinated universal time on board the spacecraft; "SCET = TRM + OWLT" -15131598 28 n 02 spacecraft_clock_time 0 SCLK 0 001 @ 15129927 n 0000 | the clock time given by a clock carried on board a spacecraft -15131734 28 n 02 Atlantic_Time 0 Atlantic_Standard_Time 0 001 @ 15116910 n 0000 | standard time in the 4th time zone west of Greenwich, reckoned at the 60th meridian; used in Puerto Rico and the Virgin Islands and Bermuda and the Canadian Maritime Provinces -15131994 28 n 03 Eastern_Time 0 Eastern_Standard_Time 0 EST 0 001 @ 15116910 n 0000 | standard time in the 5th time zone west of Greenwich, reckoned at the 75th meridian; used in the eastern United States -15132201 28 n 03 Central_Time 0 Central_Standard_Time 0 CST 0 001 @ 15116910 n 0000 | standard time in the 6th time zone west of Greenwich, reckoned at the 90th meridian; used in the central United States -15132408 28 n 03 Mountain_Time 0 Mountain_Standard_Time 0 MST 0 001 @ 15116910 n 0000 | standard time in the 7th time zone west of Greenwich, reckoned at the 105th meridian west; used in the mountain states of the United States -15132638 28 n 03 Pacific_Time 0 Pacific_Standard_Time 0 PST 0 001 @ 15116910 n 0000 | standard time in the 8th time zone west of Greenwich, reckoned at the 120th meridian west; used in far western states of the United States -15132865 28 n 02 Alaska_Standard_Time 0 Yukon_Time 0 001 @ 15116910 n 0000 | standard time in the 9th time zone west of Greenwich, reckoned at the 135th meridian west; used in Hawaii and most of Alaska -15133069 28 n 02 Hawaii_Time 0 Hawaii_Standard_Time 0 001 @ 15116910 n 0000 | standard time in the 10th time zone west of Greenwich, reckoned at the 150th meridian west; used in Hawaii and the western Aleutian Islands -15133289 28 n 02 Bering_Time 0 Bering_Standard_Time 0 001 @ 15116910 n 0000 | standard time in the 11th time zone west of Greenwich, reckoned at the 165th meridian west; used in the Midway Islands -15133488 28 n 02 duration 0 continuance 0 002 @ 00028270 n 0000 + 01157179 a 0202 | the property of enduring or continuing in time -15133621 28 n 02 duration 2 continuance 2 010 @ 15113229 n 0000 + 00118523 v 0201 ~ 15133903 n 0000 ~ 15134054 n 0000 ~ 15134233 n 0000 ~ 15134340 n 0000 ~ 15134490 n 0000 ~ 15134691 n 0000 ~ 15134913 n 0000 ~ 15295416 n 0000 | the period of time during which something continues -15133903 28 n 01 clocking 0 002 @ 15133621 n 0000 + 00490968 v 0101 | the time taken to traverse a measured course; "it was a world record clocking" -15134054 28 n 01 longueur 0 003 @ 15133621 n 0000 ;c 06364641 n 0000 ;c 00933420 n 0000 | a period of dullness or boredom (especially in a work of literature or performing art) -15134233 28 n 01 residence_time 0 001 @ 15133621 n 0000 | the period of time spent in a particular place -15134340 28 n 01 span 0 002 @ 15133621 n 0000 ~ 05702602 n 0000 | the complete duration of something; "the job was finished in the span of an hour" -15134490 28 n 02 stretch 0 stint 0 001 @ 15133621 n 0000 | an unbroken period of time during which you do something; "there were stretches of boredom"; "he did a stretch in the federal penitentiary" -15134691 28 n 01 time_scale 0 003 @ 15133621 n 0000 ~ 15135057 n 0000 ~ 15135258 n 0000 | an arrangement of events used as a measure of duration; "on the geological time scale mankind has existed but for a brief moment" -15134913 28 n 03 value 0 time_value 0 note_value 0 002 @ 15133621 n 0000 ;c 07020895 n 0000 | (music) the relative duration of a musical note -15135057 28 n 02 extended_time_scale 0 slow_time_scale 0 002 @ 15134691 n 0000 ;c 05666700 n 0000 | (simulation) the time scale used in data processing when the time-scale factor is greater than one -15135258 28 n 01 fast_time_scale 0 002 @ 15134691 n 0000 ;c 05666700 n 0000 | (simulation) the time scale used in data processing when the time-scale factor is less than one -15135434 28 n 02 time_being 0 nonce 0 001 @ 15119536 n 0000 | the present occasion; "for the nonce" -15135536 28 n 01 biological_clock 0 001 @ 09349797 n 0000 | an innate mechanism in living organisms that controls the periodicity of many physiological functions -15135700 28 n 01 circadian_rhythm 0 001 @ 15116532 n 0000 | a daily cycle of activity observed in many living organisms -15135822 28 n 02 fourth_dimension 0 time 4 001 @ 05093581 n 0000 | the fourth coordinate that is required (along with three spatial dimensions) to specify a physical event -15135996 28 n 02 workweek 0 week 1 002 @ 15118228 n 0000 #p 15136147 n 0000 | hours or days of work in a calendar week; "they worked a 40-hour week" -15136147 28 n 02 week 2 calendar_week 0 005 @ 15113229 n 0000 #p 15209413 n 0000 + 01968503 a 0101 %p 15135996 n 0000 %p 15136342 n 0000 | a period of seven consecutive days starting on Sunday -15136342 28 n 01 midweek 0 003 @ 15113229 n 0000 #p 15136147 n 0000 + 01970322 a 0101 | the middle of a week -15136453 28 n 01 day 4 002 @ 15118228 n 0000 ~ 15136723 n 0000 | the recurring hours when you are not sleeping (especially those when you are working); "my day began early this morning"; "it was a busy day on the stock exchange"; "she called it a day and went to bed" -15136723 28 n 02 workday 0 working_day 0 003 @ 15136453 n 0000 %p 15230482 n 0000 %p 15291801 n 0000 | the amount of time that a worker must work for an agreed daily wage; "they work an 8-hour day" -15136923 28 n 03 workday 1 working_day 1 work_day 1 002 @ 15163157 n 0000 ! 15137047 n 0101 | a day on which work is done -15137047 28 n 02 rest_day 0 day_of_rest 0 004 @ 15163005 n 0000 ! 15136923 n 0101 ~ 15163797 n 0000 ~ 15164750 n 0000 | a day set aside for rest -15137194 28 n 01 overtime 1 001 @ 15118228 n 0000 | work done in addition to regular working hours -15137295 28 n 02 turnaround 0 turnaround_time 0 001 @ 15118228 n 0000 | time need to prepare a vessel or ship for a return trip -15137425 28 n 02 spare_time 0 free_time 0 001 @ 15118453 n 0000 | time available for hobbies and other activities that you enjoy -15137556 28 n 01 day_off 0 001 @ 15118453 n 0000 | a day when you are not required to work; "Thursday is his day off" -15137676 28 n 02 leisure 0 leisure_time 0 005 @ 15118453 n 0000 + 01272176 a 0103 ~ 01065687 n 0000 ~ 15137890 n 0000 ~ 15138600 n 0000 | time available for ease and relaxation; "his job left him little leisure" -15137890 28 n 02 vacation 0 holiday 0 009 @ 15137676 n 0000 + 02708707 v 0202 + 10744164 n 0102 + 02708707 v 0101 ~ 15138241 n 0000 ~ 15138401 n 0000 ~ 15138691 n 0000 ~ 15138903 n 0000 ~ 15139018 n 0000 | leisure time away from work devoted to rest or pleasure; "we get two weeks of vacation every summer"; "we took a short holiday in Puerto Rico" -15138241 28 n 01 half-term 0 002 @ 15137890 n 0000 ;r 08860123 n 0000 | a short vacation about halfway through a school term; "he came to visit at half-term" -15138401 28 n 01 vac 0 002 @ 15137890 n 0000 ;r 08860123 n 0000 | informal term for vacation -15138496 28 n 01 half-holiday 0 001 @ 15183428 n 0000 | a day on which half is free from work or duty -15138600 28 n 02 playtime 0 playday 0 001 @ 15137676 n 0000 | time for play or diversion -15138691 28 n 03 field_day 1 outing 0 picnic 0 001 @ 15137890 n 0000 | a day devoted to an outdoor social gathering -15138809 28 n 01 field_day 3 001 @ 15113229 n 0000 | a time of unusual pleasure and success -15138903 28 n 01 honeymoon 0 002 @ 15137890 n 0000 + 02708923 v 0101 | a holiday taken by a newly married couple -15139018 28 n 01 paid_vacation 0 001 @ 15137890 n 0000 | a vacation from work by an employee with pay granted -15139130 28 n 02 leave 0 leave_of_absence 0 008 @ 15118453 n 0000 ~ 15139432 n 0000 ~ 15139552 n 0000 ~ 15139691 n 0000 ~ 15139849 n 0000 ~ 15140080 n 0000 ~ 15140190 n 0000 ~ 15140294 n 0000 | the period of time during which you are absent from work or duty; "a ten day's leave to visit his mother" -15139432 28 n 01 furlough 0 002 @ 15139130 n 0000 + 00748803 v 0101 | a temporary leave of absence from military duty -15139552 28 n 01 pass 0 002 @ 15139130 n 0000 ;c 08199025 n 0000 | (military) a written leave of absence; "he had a pass for three days" -15139691 28 n 01 compassionate_leave 0 002 @ 15139130 n 0000 ;c 08199025 n 0000 | (military) leave granted in an emergency such as family sickness or death -15139849 28 n 02 sabbatical 0 sabbatical_leave 0 002 @ 15139130 n 0000 ~ 15139983 n 0000 | a leave usually taken every seventh year -15139983 28 n 01 sabbatical_year 0 001 @ 15139849 n 0000 | a sabbatical leave lasting one year -15140080 28 n 02 shore_leave 0 liberty 0 001 @ 15139130 n 0000 | leave granted to a sailor or naval officer -15140190 28 n 01 sick_leave 0 001 @ 15139130 n 0000 | a leave of absence from work because of illness -15140294 28 n 01 terminal_leave 0 001 @ 15139130 n 0000 | final leave before discharge from military service -15140405 28 n 04 life 0 lifetime 0 life-time 0 lifespan 0 007 @ 15113229 n 0000 + 10261041 n 0101 %p 15142167 n 0000 %p 15143477 n 0000 ~ 15143864 n 0000 %p 15144371 n 0000 %p 15145171 n 0000 | the period during which something is functional (as between birth and death); "the battery had a short life"; "he lived a long and happy life" -15140744 28 n 01 life 1 002 @ 15113229 n 0000 %p 15141693 n 0000 | the period between birth and the present time; "I have known him all his life" -15140892 28 n 01 life 2 003 @ 15113229 n 0000 + 10261041 n 0101 ~ 15141059 n 0000 | the period from the present until death; "he appointed himself emperor for life" -15141059 28 n 02 days 0 years 2 001 @ 15140892 n 0000 | the time during which someone's life continues; "the monarch's last days"; "in his final years" -15141213 28 n 02 millennium 0 millenary 0 005 @ 15113229 n 0000 + 02864824 a 0101 + 02864699 a 0101 + 02864824 a 0102 %p 15205532 n 0000 | a span of 1000 years -15141375 28 n 02 bimillennium 0 bimillenary 0 002 @ 15113229 n 0000 + 02664592 a 0101 | a span of 2000 years -15141486 28 n 01 occupation 0 003 @ 15113229 n 0000 + 02649042 v 0101 + 02267989 v 0102 | the period of time during which a place or position or nation is occupied; "during the German occupation of Paris" -15141693 28 n 01 past 1 002 @ 15113229 n 0000 #p 15140744 n 0000 | a earlier period in someone's life (especially one that they have reason to keep secret); "reporters dug into the candidate's past" -15141894 28 n 01 shelf_life 0 001 @ 15113229 n 0000 | the length of time a packaged food or drug will last without deteriorating -15142025 28 n 01 life_expectancy 0 001 @ 05951323 n 0000 | an expected time to live as calculated on the basis of statistical probabilities -15142167 28 n 01 birth 0 006 @ 15265518 n 0000 #p 15140405 n 0000 + 00056930 v 0104 ! 15143477 n 0101 ~ 15142452 n 0000 + 00360932 v 0101 | the time when something begins (especially life); "they divorced after the birth of the child"; "his election signaled the birth of a new age" -15142452 28 n 01 cradle 0 001 @ 15142167 n 0000 | birth of a person; "he was taught from the cradle never to cry" -15142568 28 n 01 puerperium 0 002 @ 15113229 n 0000 + 03039648 a 0101 | time period following childbirth when the mother's uterus shrinks and the other functional and anatomic changes of pregnancy are resolved; "a perinatologist cared for her during the puerperium" -15142836 28 n 01 lactation 0 002 @ 15113229 n 0000 + 01186428 v 0106 | the period following birth during which milk is secreted; "lactation normally continues until weaning" -15143012 28 n 02 incipiency 0 incipience 0 003 @ 15265518 n 0000 + 00818829 a 0201 + 00818829 a 0101 | beginning to exist or to be apparent; "he placed the incipience of democratic faith at around 1850"; "it is designed to arrest monopolies in their incipiency" -15143276 28 n 02 death 1 last 1 003 @ 15266911 n 0000 + 00358431 v 0101 + 02109818 v 0101 | the time at which life ends; continuing until dead; "she stayed until his death"; "a struggle to the last" -15143477 28 n 03 death 0 dying 0 demise 0 006 @ 15266911 n 0000 #p 15140405 n 0000 + 00354845 v 0201 ! 15142167 n 0101 + 00354845 v 0101 ~ 15143726 n 0000 | the time when something ends; "it was the death of all his plans"; "a dying of old hopes" -15143726 28 n 01 grave 0 001 @ 15143477 n 0000 | death of a person; "he went to his grave without forgiving me"; "from cradle to grave" -15143864 28 n 02 afterlife 0 hereafter 1 003 @ 15140405 n 0000 ~ 15143984 n 0000 ~ 15144094 n 0000 | life after death -15143984 28 n 01 kingdom_come 1 001 @ 15143864 n 0000 | the next world; "he nearly blew us to kingdom come" -15144094 28 n 01 immortality 1 001 @ 15143864 n 0000 | perpetual life after death -15144178 28 n 01 period 4 002 @ 15266911 n 0000 ;u 07105475 n 0000 | the end or completion of something; "death put a period to his endeavors"; "a change soon put a period to my tranquility" -15144371 28 n 01 time_of_life 0 029 @ 15113229 n 0000 #p 15140405 n 0000 ~ 15145012 n 0000 ~ 15145171 n 0000 ~ 15145499 n 0000 ~ 15145586 n 0000 ~ 15147097 n 0000 ~ 15147598 n 0000 ~ 15147713 n 0000 ~ 15147850 n 0000 ~ 15148081 n 0000 ~ 15148295 n 0000 ~ 15148467 n 0000 ~ 15148584 n 0000 ~ 15149038 n 0000 ~ 15149351 n 0000 ~ 15149642 n 0000 ~ 15150013 n 0000 ~ 15150384 n 0000 ~ 15150493 n 0000 ~ 15150870 n 0000 ~ 15151255 n 0000 ~ 15151641 n 0000 ~ 15152817 n 0000 ~ 15153353 n 0000 ~ 15153472 n 0000 ~ 15153667 n 0000 ~ 15153787 n 0000 ~ 15154376 n 0000 | a period of time during which a person is normally in a particular life state -15145012 28 n 01 summer 1 002 @ 15144371 n 0000 ;u 07105475 n 0000 | the period of finest development, happiness, or beauty; "the golden summer of his life" -15145171 28 n 02 age 0 eld 1 008 @ 15144371 n 0000 #p 15140405 n 0000 + 00248026 v 0102 ~ 15151764 n 0000 ~ 15152062 n 0000 ~ 15152261 n 0000 ~ 15152531 n 0000 ~ 15152674 n 0000 | a time of life (usually defined in years) at which some particular qualification or power arises; "she was now of school age"; "tall for his eld" -15145499 28 n 01 neonatal_period 0 001 @ 15144371 n 0000 | the first 28 days of life -15145586 28 n 03 infancy 0 babyhood 0 early_childhood 0 005 @ 15144371 n 0000 + 09827683 n 0201 + 01322221 n 0201 + 09827683 n 0103 %p 15146545 n 0000 | the early stage of growth or development -15145782 28 n 02 anal_stage 0 anal_phase 0 003 @ 15290337 n 0000 #p 15147097 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the second sexual and social stage of a child's development during which bowel control is learned -15146004 28 n 02 genital_stage 0 genital_phase 0 003 @ 15290337 n 0000 #p 15147850 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the fifth sexual and social stage in a person's development occurring during adolescence; interest focuses on sexual activity -15146260 28 n 03 latency_stage 0 latency_phase 0 latency_period 0 003 @ 15290337 n 0000 #p 15147097 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the fourth period (from about age 5 or 6 until puberty) during which sexual interests are supposed to be sublimated into other activities -15146545 28 n 02 oral_stage 0 oral_phase 0 003 @ 15290337 n 0000 #p 15145586 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the first sexual and social stage of an infant's development; the mouth is the focus of the libido and satisfaction comes from suckling and chewing and biting -15146828 28 n 02 phallic_stage 0 phallic_phase 0 003 @ 15290337 n 0000 #p 15147097 n 0000 ;c 00704305 n 0000 | (psychoanalysis) the third stage in a child's development when awareness of and manipulation of the genitals is supposed to be a primary source of pleasure -15147097 28 n 01 childhood 0 008 @ 15144371 n 0000 + 09917593 n 0101 %p 15145782 n 0000 %p 15146260 n 0000 %p 15146828 n 0000 ~ 15147330 n 0000 ~ 15147504 n 0000 %p 15148081 n 0000 | the time of person's life when they are a child -15147330 28 n 03 girlhood 0 maidenhood 0 maidhood 0 005 @ 15147097 n 0000 + 10282482 n 0301 + 10282482 n 0202 + 10084295 n 0102 + 10129825 n 0101 | the childhood of a girl -15147504 28 n 01 boyhood 0 002 @ 15147097 n 0000 + 10285313 n 0102 | the childhood of a boy -15147598 28 n 02 schooldays 0 schooltime 2 001 @ 15144371 n 0000 | the time of life when you are going to school -15147713 28 n 01 youth 0 003 @ 15144371 n 0000 %p 15147850 n 0000 %p 15151641 n 0000 | the time of life between childhood and maturity -15147850 28 n 01 adolescence 0 007 #p 15147713 n 0000 @ 15144371 n 0000 + 01647983 a 0101 + 01490061 a 0101 + 00252710 v 0101 %p 15146004 n 0000 %p 15148295 n 0000 | the time period between the beginning of puberty and adulthood -15148081 28 n 01 prepuberty 0 003 @ 15144371 n 0000 #p 15147097 n 0000 + 01490855 a 0102 | a period of two years immediately prior to the onset of puberty when growth and changes leading to sexual maturity occur -15148295 28 n 02 puberty 0 pubescence 0 004 @ 15144371 n 0000 #p 15147850 n 0000 + 01491240 a 0201 + 02786006 a 0101 | the time of life when sex glands become functional -15148467 28 n 01 teens 0 002 @ 15144371 n 0000 #p 15152817 n 0000 | the time of life between the ages of 12 and 20 -15148584 28 n 02 twenties 0 mid-twenties 0 002 @ 15144371 n 0000 #p 15152817 n 0000 | the time of life between 20 and 30 -15148707 28 n 01 1900s 0 001 @ 15204983 n 0000 | the decade from 1900 to 1909 -15148787 28 n 01 1530s 0 001 @ 15204983 n 0000 | the decade from 1530 to 1539 -15148867 28 n 02 twenties 1 1920s 0 001 @ 15204983 n 0000 | the decade from 1920 to 1929 -15148958 28 n 01 1820s 0 001 @ 15204983 n 0000 | the decade from 1820 to 1829 -15149038 28 n 03 thirties 0 mid-thirties 0 thirty-something 0 002 @ 15144371 n 0000 #p 15152817 n 0000 | the time of life between 30 and 40 -15149180 28 n 02 thirties 1 1930s 0 001 @ 15204983 n 0000 | the decade from 1930 to 1939 -15149271 28 n 01 1830s 0 001 @ 15204983 n 0000 | the decade from 1830 to 1839 -15149351 28 n 02 forties 0 mid-forties 0 002 @ 15144371 n 0000 #p 15152817 n 0000 | the time of life between 40 and 50 -15149472 28 n 02 forties 1 1940s 0 001 @ 15204983 n 0000 | the decade from 1940 to 1949 -15149562 28 n 01 1840s 0 001 @ 15204983 n 0000 | the decade from 1840 to 1849 -15149642 28 n 02 fifties 0 mid-fifties 0 002 @ 15144371 n 0000 #p 15152817 n 0000 | the time of life between 50 and 60 -15149763 28 n 02 fifties 1 1950s 0 001 @ 15204983 n 0000 | the decade from 1950 to 1959 -15149853 28 n 01 1850s 0 001 @ 15204983 n 0000 | the decade from 1850 to 1859 -15149933 28 n 01 1750s 0 001 @ 15204983 n 0000 | the decade from 1750 to 1759 -15150013 28 n 02 sixties 0 mid-sixties 0 002 @ 15144371 n 0000 #p 15153787 n 0000 | the time of life between 60 and 70 -15150134 28 n 02 sixties 1 1960s 0 001 @ 15204983 n 0000 | the decade from 1960 to 1969 -15150224 28 n 01 1860s 0 001 @ 15204983 n 0000 | the decade from 1860 to 1869 -15150304 28 n 01 1760s 0 001 @ 15204983 n 0000 | the decade from 1760 to 1769 -15150384 28 n 01 golden_years 0 001 @ 15144371 n 0000 | the time of life after retirement from active work -15150493 28 n 02 seventies 0 mid-seventies 0 002 @ 15144371 n 0000 #p 15153787 n 0000 | the time of life between 70 and 80 -15150618 28 n 02 seventies 1 1970s 0 001 @ 15204983 n 0000 | the decade from 1970 to 1979 -15150710 28 n 01 1870s 0 001 @ 15204983 n 0000 | the decade from 1870 to 1879 -15150790 28 n 01 1770s 0 001 @ 15204983 n 0000 | the decade from 1770 to 1779 -15150870 28 n 02 eighties 0 mid-eighties 0 002 @ 15144371 n 0000 #p 15153787 n 0000 | the time of life between 80 and 90 -15150993 28 n 02 eighties 1 1980s 0 001 @ 15204983 n 0000 | the decade from 1980 to 1989 -15151084 28 n 02 eighties 2 1880s 0 001 @ 15204983 n 0000 | the decade from 1880 to 1889 -15151175 28 n 01 1780s 0 001 @ 15204983 n 0000 | the decade from 1780 to 1789 -15151255 28 n 02 nineties 0 mid-nineties 0 002 @ 15144371 n 0000 #p 15153787 n 0000 | the time of life between 90 and 100 -15151379 28 n 02 nineties 1 1990s 0 001 @ 15204983 n 0000 | the decade from 1990 to 1999 -15151470 28 n 02 nineties 2 1890s 0 001 @ 15204983 n 0000 | the decade from 1890 to 1899 -15151561 28 n 01 1790s 0 001 @ 15204983 n 0000 | the decade from 1790 to 1799 -15151641 28 n 03 bloom 0 bloom_of_youth 0 salad_days 0 002 @ 15144371 n 0000 #p 15147713 n 0000 | the best time of youth -15151764 28 n 01 age_of_consent 0 001 @ 15145171 n 0000 | the minimum age for marrying without parental consent or the minimum age for consensual sexual relations; intercourse at an earlier age can result in a charge of assault or statutory rape; the age differs in different states of the Union -15152062 28 n 02 majority 0 legal_age 0 004 @ 15145171 n 0000 #p 15152817 n 0000 + 01471848 a 0101 ! 15152261 n 0101 | the age at which persons are considered competent to manage their own affairs -15152261 28 n 02 minority 0 nonage 0 004 @ 15145171 n 0000 @ 13952601 n 0000 + 01471954 a 0101 ! 15152062 n 0101 | any age prior to the legal age -15152409 28 n 02 prime 0 prime_of_life 0 001 @ 15152817 n 0000 | the time of maturity when power and vigor are greatest -15152531 28 n 01 drinking_age 0 002 @ 15145171 n 0000 #p 15152817 n 0000 | the age at which is legal for a person to buy alcoholic beverages -15152674 28 n 01 voting_age 0 002 @ 15145171 n 0000 #p 15152817 n 0000 | the age at which a person is old enough to vote in public elections -15152817 28 n 02 adulthood 0 maturity 0 014 @ 15144371 n 0000 + 01488245 a 0201 + 09605289 n 0101 + 01321456 n 0101 %p 15148467 n 0000 %p 15148584 n 0000 %p 15149038 n 0000 %p 15149351 n 0000 %p 15149642 n 0000 %p 15152062 n 0000 ~ 15152409 n 0000 %p 15152531 n 0000 %p 15152674 n 0000 %p 15153472 n 0000 | the period of time in your life after your physical growth has stopped and you are fully developed -15153225 28 n 03 maturity 1 maturity_date 0 due_date 0 001 @ 15159583 n 0000 | the date on which an obligation must be repaid -15153353 28 n 01 bachelorhood 0 002 @ 15144371 n 0000 + 09829923 n 0101 | the time of a man's life prior to marriage -15153472 28 n 01 middle_age 0 004 @ 15144371 n 0000 #p 15152817 n 0000 %p 15154462 n 0000 %p 15154646 n 0000 | the time of life between youth and old age (e.g., between 40 and 60 years of age) -15153667 28 n 01 widowhood 0 002 @ 15144371 n 0000 + 10780284 n 0101 | the time of a woman's life when she is a widow -15153787 28 n 05 old_age 0 years 0 age 1 eld 0 geezerhood 0 009 @ 15144371 n 0000 + 10123711 n 0501 + 00249679 v 0301 + 00248026 v 0302 %p 15150013 n 0000 %p 15150493 n 0000 %p 15150870 n 0000 %p 15151255 n 0000 ~ 15154190 n 0000 | a late time of life; "old age is not for sissies"; "he's showing his years"; "age hasn't slowed him down at all"; "a beard white with eld"; "on the brink of geezerhood" -15154190 28 n 03 dotage 0 second_childhood 0 senility 0 002 @ 15153787 n 0000 + 01645296 a 0304 | mental infirmity as a consequence of old age; sometimes shown by foolish infatuations -15154376 28 n 01 deathbed 0 001 @ 15144371 n 0000 | the last few hours before death -15154462 28 n 03 menopause 0 climacteric 1 change_of_life 0 003 @ 15116532 n 0000 #p 15153472 n 0000 + 02761349 a 0101 | the time in a woman's life in which the menstrual cycle ends -15154646 28 n 01 climacteric 2 002 @ 15116532 n 0000 #p 15153472 n 0000 | a period in a man's life corresponding to menopause -15154774 28 n 02 time_unit 0 unit_of_time 0 020 @ 00033615 n 0000 ~ 15155220 n 0000 ~ 15155747 n 0000 ~ 15156537 n 0000 ~ 15156746 n 0000 ~ 15206296 n 0000 ~ 15208333 n 0000 ~ 15227593 n 0000 ~ 15227846 n 0000 ~ 15228162 n 0000 ~ 15228267 n 0000 ~ 15234764 n 0000 ~ 15234942 n 0000 ~ 15235126 n 0000 ~ 15235540 n 0000 ~ 15235687 n 0000 ~ 15235853 n 0000 ~ 15236015 n 0000 ~ 15236176 n 0000 ~ 15236338 n 0000 | a unit for measuring time periods -15155220 28 n 06 day 0 twenty-four_hours 0 twenty-four_hour_period 0 24-hour_interval 0 solar_day 0 mean_solar_day 0 013 @ 15154774 n 0000 + 01968165 a 0101 ~ 15155891 n 0000 ~ 15156001 n 0000 ~ 15156187 n 0000 ~ 15156311 n 0000 ~ 15156424 n 0000 ~ 15159583 n 0000 ~ 15159819 n 0000 %p 15164957 n 0000 %p 15165490 n 0000 %p 15167027 n 0000 %p 15227846 n 0000 | time for Earth to make a complete rotation on its axis; "two days later they left"; "they put on two performances every day"; "there are 30,000 passengers per day" -15155747 28 n 01 night 2 001 @ 15154774 n 0000 | the dark part of the diurnal cycle considered a time unit; "three nights later he collapsed" -15155891 28 n 01 tomorrow 1 001 @ 15155220 n 0000 | the day after today; "what are our tasks for tomorrow?" -15156001 28 n 01 today 1 001 @ 15155220 n 0000 | the day that includes the present moment (as opposed to yesterday or tomorrow); "Today is beautiful"; "did you see today's newspaper?" -15156187 28 n 01 yesterday 1 001 @ 15155220 n 0000 | the day immediately before today; "it was in yesterday's newspapers" -15156311 28 n 01 morrow 0 001 @ 15155220 n 0000 | the next day; "whenever he arrives she leaves on the morrow" -15156424 28 n 01 eve 1 001 @ 15155220 n 0000 | the day before; "he always arrives on the eve of her departure" -15156537 28 n 02 mean_time 0 mean_solar_time 0 002 @ 15154774 n 0000 ;c 06095022 n 0000 | (astronomy) time based on the motion of the mean sun (an imaginary sun moving uniformly along the celestial equator) -15156746 28 n 05 terrestrial_time 0 TT 0 terrestrial_dynamical_time 0 TDT 0 ephemeris_time 0 002 @ 15154774 n 0000 ;c 06095022 n 0000 | (astronomy) a measure of time defined by Earth's orbital motion; terrestrial time is mean solar time corrected for the irregularities of the Earth's motions -15157041 28 n 02 calendar_day 0 civil_day 0 005 @ 15113229 n 0000 #p 15169873 n 0000 ~ 15157225 n 0000 ~ 15160579 n 0000 ~ 15163005 n 0000 | a day reckoned from midnight to midnight -15157225 28 n 01 day 1 048 @ 15157041 n 0000 ~ 15158189 n 0000 ~ 15158359 n 0000 ~ 15158450 n 0000 ~ 15158691 n 0000 ~ 15158816 n 0000 ~ 15159265 n 0000 ~ 15159426 n 0000 ~ 15162640 n 0000 ~ 15171008 n 0000 ~ 15171145 n 0000 ~ 15172782 n 0000 ~ 15172881 n 0000 ~ 15173259 n 0000 ~ 15173353 n 0000 ~ 15173974 n 0000 ~ 15174122 n 0000 ~ 15181977 n 0000 ~ 15182053 n 0000 ~ 15182569 n 0000 ~ 15183266 n 0000 ~ 15183428 n 0000 ~ 15186871 n 0000 ~ 15187077 n 0000 ~ 15187250 n 0000 ~ 15187451 n 0000 ~ 15187800 n 0000 ~ 15187988 n 0000 ~ 15188505 n 0000 ~ 15188688 n 0000 ~ 15188852 n 0000 ~ 15189033 n 0000 ~ 15189249 n 0000 ~ 15189347 n 0000 ~ 15189684 n 0000 ~ 15189838 n 0000 ~ 15189982 n 0000 ~ 15190652 n 0000 ~ 15190779 n 0000 ~ 15191080 n 0000 ~ 15191233 n 0000 ~ 15221596 n 0000 ~ 15222369 n 0000 ~ 15222540 n 0000 ~ 15222686 n 0000 ~ 15222840 n 0000 ~ 15222951 n 0000 ~ 15249799 n 0000 | a day assigned to a particular purpose or observance; "Mother's Day" -15158189 28 n 01 Admission_Day 0 001 @ 15157225 n 0000 | in some states of the United States: a legal holiday commemorating the day the state was admitted to the Union -15158359 28 n 01 Arbor_Day 0 001 @ 15157225 n 0000 | a day designated for planting trees -15158450 28 n 01 Cinco_de_Mayo 0 001 @ 15157225 n 0000 | the fifth of May which is observed in Mexico and Mexican-American communities in the United States to commemorate the Mexican victory over the French in the Battle of Puebla in 1862 -15158691 28 n 02 commencement_day 0 degree_day 0 001 @ 15157225 n 0000 | the day on which university degrees are conferred -15158816 28 n 01 November_5 0 005 @ 15157225 n 0000 #p 15213406 n 0000 ;r 08860123 n 0000 ~ 15158997 n 0000 ~ 15159139 n 0000 | anniversary of the discovery of the Gunpowder Plot -15158997 28 n 01 Guy_Fawkes_Day 0 002 @ 15158816 n 0000 ;r 08860123 n 0000 | day for the celebration of the discovery of the Gunpowder Plot -15159139 28 n 02 Bonfire_Night 0 Guy_Fawkes_Night 0 001 @ 15158816 n 0000 | effigies of Guy Fawkes are burned on this night -15159265 28 n 02 Inauguration_Day 0 January_20 0 002 @ 15157225 n 0000 #p 15210045 n 0000 | the day designated for inauguration of the United States President -15159426 28 n 03 leap_day 0 bissextile_day 0 February_29 0 002 @ 15157225 n 0000 #p 15210486 n 0000 | the name of the day that is added during a leap year -15159583 28 n 02 date 0 day_of_the_month 0 007 @ 15155220 n 0000 + 00734927 v 0101 + 00619183 v 0101 + 00735389 v 0101 ~ 15153225 n 0000 ~i 15162523 n 0000 ~ 15252422 n 0000 | the specified day of the month; "what is the date today?" -15159819 28 n 01 date 5 007 @ 15155220 n 0000 + 00734927 v 0101 + 00619183 v 0101 + 00735389 v 0101 ~ 15160076 n 0000 ~ 15160216 n 0000 ~ 15160418 n 0000 | a particular day specified as the time something happens; "the date of the election is set by law" -15160076 28 n 01 future_date 0 001 @ 15159819 n 0000 | a particular day in the future that is specified as the time something will happen -15160216 28 n 01 rain_date 0 001 @ 15159819 n 0000 | an alternative date set for some outdoor event in case it rains on the appointed date; "the rain date for the picnic will be the following Sunday" -15160418 28 n 01 sell-by_date 0 002 @ 15159819 n 0000 ;r 08860123 n 0000 | a date stamped on perishable produce indicating the date by which it should be sold -15160579 28 n 01 date 3 005 @ 15157041 n 0000 @ 15209413 n 0000 @ 15202634 n 0000 + 00619183 v 0101 ~ 15296687 n 0000 | the particular day, month, or year (usually according to the Gregorian calendar) that an event occurred; "he tried to memorizes all the dates for his history class" -15160866 28 n 01 quarter_day 0 010 @ 15184170 n 0000 ;r 08860123 n 0000 ~ 15185837 n 0000 ~ 15186147 n 0000 ~ 15186412 n 0000 ~ 15186681 n 0000 ~ 15190228 n 0000 ~ 15196186 n 0000 ~ 15222202 n 0000 ~ 15242209 n 0000 | a Christian holy day; one of four specified days when certain payments are due -15161165 28 n 01 fast_day 0 003 @ 15183802 n 0000 ~ 15161284 n 0000 ~ 15161430 n 0000 | a day designated for fasting -15161284 28 n 01 major_fast_day 0 003 @ 15161165 n 0000 ~ 15185471 n 0000 ~ 15197658 n 0000 | one of two major fast days on the Jewish calendar -15161430 28 n 01 minor_fast_day 0 006 @ 15161165 n 0000 ~ 15197954 n 0000 ~ 15198136 n 0000 ~ 15198401 n 0000 ~ 15198662 n 0000 ~ 15198872 n 0000 | one of five minor fast days on the Jewish calendar -15161631 28 n 02 feast_day 0 fete_day 0 009 @ 15183428 n 0000 #p 15162210 n 0000 ~ 15182805 n 0000 ~ 15185290 n 0000 ~ 15193271 n 0000 ~ 15196186 n 0000 ~ 15201116 n 0000 ~ 15218448 n 0000 ~ 15219022 n 0000 | a day designated for feasting -15161872 28 n 06 Succoth 0 Sukkoth 0 Succos 0 Feast_of_Booths 0 Feast_of_Tabernacles 0 Tabernacles 0 004 @ 15162210 n 0000 @ 15184755 n 0000 #p 15214419 n 0000 ;c 06232880 n 0000 | a major Jewish festival beginning on the eve of the 15th of Tishri and commemorating the shelter of the Israelites during their 40 years in the wilderness -15162210 28 n 02 religious_festival 0 church_festival 0 004 @ 15162388 n 0000 %p 15161631 n 0000 ~ 15161872 n 0000 ~ 15296258 n 0000 | a festival having religious significance -15162388 28 n 01 festival 0 002 @ 15113229 n 0000 ~ 15162210 n 0000 | a day or period of time set aside for feasting and celebration -15162523 28 n 02 D-day 0 6_June_1944 0 001 @i 15159583 n 0000 | date of the Allied landing in France, World War II -15162640 28 n 02 V-day 0 Victory_Day 0 003 @ 15157225 n 0000 ~i 15162764 n 0000 ~i 15162882 n 0000 | the day of a victory -15162764 28 n 02 V-E_Day 0 8_May_1945 0 001 @i 15162640 n 0000 | the date of Allied victory in Europe, World War II -15162882 28 n 02 V-J_Day 0 15_August_1945 0 001 @i 15162640 n 0000 | the date of Allied victory over Japan, World War II -15163005 28 n 01 day_of_the_week 0 004 @ 15157041 n 0000 #p 15169873 n 0000 ~ 15137047 n 0000 ~ 15163157 n 0000 | any one of the seven days in a week -15163157 28 n 01 weekday 0 009 @ 15163005 n 0000 ~ 15136923 n 0000 ~ 15163408 n 0000 ~ 15163979 n 0000 ~ 15164105 n 0000 ~ 15164233 n 0000 ~ 15164354 n 0000 ~ 15164463 n 0000 ~ 15164570 n 0000 | any day except Sunday (and sometimes except Saturday) -15163408 28 n 01 feria 0 002 @ 15163157 n 0000 + 02992691 a 0101 | a weekday on which no festival or holiday is celebrated; "in the middle ages feria was used with a prefixed ordinal number to designate the day of the week, so `secunda feria' meant Monday, but Sunday and Saturday were always called by their names, Dominicus and Sabbatum, and so feria came to mean an ordinary weekday" -15163797 28 n 04 Sunday 0 Lord's_Day 0 Dominicus 0 Sun 0 002 @ 15137047 n 0000 #p 15170504 n 0000 | first day of the week; observed as a day of rest and worship by most Christians -15163979 28 n 02 Monday 0 Mon 0 002 @ 15163157 n 0000 ~ 15242432 n 0000 | the second day of the week; the first working day -15164105 28 n 02 Tuesday 0 Tues 0 002 @ 15163157 n 0000 ~ 15242599 n 0000 | the third day of the week; the second working day -15164233 28 n 03 Wednesday 0 Midweek 1 Wed 0 001 @ 15163157 n 0000 | the fourth day of the week; the third working day -15164354 28 n 02 Thursday 0 Th 0 001 @ 15163157 n 0000 | the fifth day of the week; the fourth working day -15164463 28 n 02 Friday 0 Fri 0 001 @ 15163157 n 0000 | the sixth day of the week; the fifth working day -15164570 28 n 03 Saturday 0 Sabbatum 0 Sat 0 002 @ 15163157 n 0000 #p 15170504 n 0000 | the seventh and last day of the week; observed as the Sabbath by Jews and some Christians -15164750 28 n 01 Sabbath 0 003 @ 15137047 n 0000 + 03112989 a 0101 + 03112747 a 0101 | a day of rest and worship: Sunday for most Christians; Saturday for the Jews and a few Christians; Friday for Muslims -15164957 28 n 03 day 2 daytime 0 daylight 0 007 @ 15113229 n 0000 #p 15155220 n 0000 ! 15167027 n 0101 %p 15165289 n 0000 ~ 15166191 n 0000 ~ 15166352 n 0000 ~ 15166462 n 0000 | the time after sunrise and before sunset while it is light outside; "the dawn turned night into day"; "it is easier to make the repairs in the daytime" -15165289 28 n 04 morning 0 morn 0 morning_time 0 forenoon 0 003 @ 15113229 n 0000 #p 15164957 n 0000 %p 15169136 n 0000 | the time period between dawn and noon; "I spent the morning running errands" -15165490 28 n 06 noon 0 twelve_noon 0 high_noon 0 midday 0 noonday 0 noontide 0 002 @ 15228378 n 0000 #p 15155220 n 0000 | the middle of the day -15165637 28 n 01 mealtime 0 004 @ 15228378 n 0000 ~ 15165805 n 0000 ~ 15165917 n 0000 ~ 15166070 n 0000 | the hour at which a meal is habitually or customarily eaten -15165805 28 n 01 breakfast_time 0 001 @ 15165637 n 0000 | the customary or habitual hour for eating breakfast -15165917 28 n 02 lunchtime 0 lunch_period 0 001 @ 15165637 n 0000 | the customary or habitual hour for eating lunch; "he observed a regular lunchtime" -15166070 28 n 02 dinnertime 0 suppertime 0 001 @ 15165637 n 0000 | the customary or habitual hour for the evening meal -15166191 28 n 01 afternoon 0 002 @ 15164957 n 0000 %p 15166352 n 0000 | the part of the day between noon and evening; "he spent a quiet afternoon in the park" -15166352 28 n 01 midafternoon 0 002 @ 15164957 n 0000 #p 15166191 n 0000 | the middle part of the afternoon -15166462 28 n 04 evening 0 eve 0 even 0 eventide 0 004 @ 15164957 n 0000 ~ 15166742 n 0000 %p 15169248 n 0000 %p 15169421 n 0000 | the latter part of the day (the period of decreasing daylight from late afternoon until nightfall); "he enjoyed the evening light across the lake" -15166742 28 n 01 guest_night 0 002 @ 15166462 n 0000 ;r 08860123 n 0000 | an evening when members of a club or college can bring their friends as guests -15166897 28 n 01 prime_time 0 001 @ 15129927 n 0000 | the hours between 7 and 11 p.m. when the largest tv audience is available -15167027 28 n 03 night 0 nighttime 0 dark 0 011 @ 15113229 n 0000 #p 15155220 n 0000 + 01968352 a 0101 ! 15164957 n 0101 ~ 15167675 n 0000 %p 15167906 n 0000 %p 15168080 n 0000 %p 15168185 n 0000 %p 15168369 n 0000 %p 15168569 n 0000 ~ 15223048 n 0000 | the time after sunset and before sunrise while it is dark outside -15167349 28 n 01 night 3 001 @ 15113229 n 0000 | the time between sunset and midnight; "he watched television every night" -15167474 28 n 01 night 4 001 @ 15113229 n 0000 | the period spent sleeping; "I had a restless night" -15167577 28 n 01 night 1 001 @ 15113229 n 0000 | a period of ignorance or backwardness or gloom -15167675 28 n 01 weeknight 0 001 @ 15167027 n 0000 | any night of the week except Saturday or Sunday -15167778 28 n 01 eve 2 001 @ 15113229 n 0000 | the period immediately before something; "on the eve of the French Revolution" -15167906 28 n 01 evening 2 002 @ 15113229 n 0000 #p 15167027 n 0000 | the early part of night (from dinner until bedtime) spent in a special way; "an evening at the opera" -15168080 28 n 01 late-night_hour 0 002 @ 15228378 n 0000 #p 15167027 n 0000 | the latter part of night -15168185 28 n 01 midnight 0 002 @ 15228378 n 0000 #p 15167027 n 0000 | 12 o'clock at night; the middle of the night; "young children should not be allowed to stay up until midnight" -15168369 28 n 01 small_hours 0 002 @ 15228378 n 0000 #p 15167027 n 0000 | the hours just after midnight -15168475 28 n 01 bedtime 0 002 @ 15228378 n 0000 ~ 15168569 n 0000 | the time you go to bed -15168569 28 n 01 lights-out 0 002 @ 15168475 n 0000 #p 15167027 n 0000 | a prescribed bedtime -15168665 28 n 01 closing_time 0 001 @ 15228378 n 0000 | the regular time of day when an establishment closes to the public -15168790 28 n 0c dawn 0 dawning 0 morning 1 aurora 0 first_light 0 daybreak 0 break_of_day 0 break_of_the_day 0 dayspring 0 sunrise 0 sunup 0 cockcrow 0 006 @ 15228378 n 0000 ! 15169248 n 0a01 + 02649706 a 0401 + 02649706 a 0402 + 00528836 v 0201 + 00528836 v 0101 | the first light of day; "we got up before dawn"; "they talked until morning" -15169136 28 n 01 early-morning_hour 0 002 @ 15228378 n 0000 #p 15165289 n 0000 | an hour early in the morning -15169248 28 n 02 sunset 0 sundown 0 003 @ 15228378 n 0000 #p 15166462 n 0000 ! 15168790 n 010a | the time in the evening at which the sun begins to fall below the horizon -15169421 28 n 09 twilight 0 dusk 0 gloaming 0 gloam 0 nightfall 0 evenfall 0 fall 1 crepuscule 0 crepuscle 0 006 @ 15228378 n 0000 #p 15166462 n 0000 + 00274551 a 0901 + 00274551 a 0801 + 00275486 a 0201 ~ 15169759 n 0000 | the time of day immediately following sunset; "he loved the twilight"; "they finished before the fall of night" -15169759 28 n 01 night 5 001 @ 15169421 n 0000 | a shortening of nightfall; "they worked from morning to night" -15169873 28 n 02 week 0 hebdomad 0 011 @ 15113229 n 0000 + 01968503 a 0203 + 01968503 a 0202 + 01968503 a 0101 %p 15157041 n 0000 %p 15163005 n 0000 ~ 15170178 n 0000 %p 15170504 n 0000 ~ 15170786 n 0000 ~ 15181444 n 0000 ~ 15296489 n 0000 | any period of seven consecutive days; "it rained for a week" -15170178 28 n 01 week_from_Monday 0 002 @ 15169873 n 0000 ;u 07075172 n 0000 | a time period of a week or more; "a week from Monday will be too soon!" -15170331 28 n 02 fortnight 0 two_weeks 0 002 @ 15113229 n 0000 + 01969038 a 0101 | a period of fourteen consecutive days; "most major tennis tournaments last a fortnight" -15170504 28 n 01 weekend 0 005 @ 15113229 n 0000 #p 15169873 n 0000 + 02707987 v 0101 %p 15163797 n 0000 %p 15164570 n 0000 | a time period usually extending from Friday night through Sunday; more loosely defined as any period of successive days including one and only one Sunday -15170786 28 n 02 rag 0 rag_week 0 003 @ 15169873 n 0000 ;r 08860123 n 0000 %p 15171008 n 0000 | a week at British universities during which side-shows and processions of floats are organized to raise money for charities -15171008 28 n 01 rag_day 0 003 @ 15157225 n 0000 #p 15170786 n 0000 ;r 08860123 n 0000 | a day on which university students hold a rag -15171145 28 n 01 red-letter_day 0 001 @ 15157225 n 0000 | a memorably happy or noteworthy day (from the custom of marking holy days in red on church calendars) -15171307 28 n 0d Judgment_Day 0 Judgement_Day 0 Day_of_Judgment 0 Day_of_Judgement 0 Doomsday 0 Last_Judgment 0 Last_Judgement 0 Last_Day 0 eschaton 0 day_of_reckoning 0 doomsday 0 crack_of_doom 0 end_of_the_world 0 002 @ 15123115 n 0000 ;c 06453849 n 0000 | (New Testament) day at the end of time following Armageddon when God will decree the fates of all individual humans according to the good and evil of their earthly lives -15171738 28 n 01 off-day 0 001 @ 15123115 n 0000 | a day when things go poorly; "I guess this is one of my off-days" -15171857 28 n 01 access_time 0 005 @ 15269513 n 0000 ;c 06128570 n 0000 %p 15269128 n 0000 %p 15297069 n 0000 %p 15298011 n 0000 | (computer science) the interval between the time data is requested by the system and the time the data is provided by the drive; "access time is the sum of seek time and rotational latency and command processing overhead" -15172212 28 n 02 distance 0 space 0 003 @ 15269513 n 0000 + 01988080 v 0201 + 00443075 a 0101 | the interval between two times; "the distance from birth to death"; "it all happened in the space of 10 minutes" -15172423 28 n 01 distance 1 003 @ 15180528 n 0000 + 00445548 a 0101 + 00443075 a 0101 | a remote point in time; "if that happens it will be at some distance in the future"; "at a distance of ten years he had forgotten many of the details" -15172664 28 n 02 embolism 0 intercalation 0 002 @ 15269513 n 0000 #p 15173479 n 0000 | an insertion into a calendar -15172782 28 n 01 payday 0 001 @ 15157225 n 0000 | the day on which you receive pay for your work -15172881 28 n 02 polling_day 0 election_day 0 001 @ 15157225 n 0000 | the day appointed for an election; in the United States it is the 1st Tuesday after the 1st Monday in November -15173064 28 n 02 church_year 0 Christian_year 0 003 @ 15203791 n 0000 %p 15183802 n 0000 %p 15221596 n 0000 | the year in the ecclesiastical calendar; especially feast days and special seasons -15173259 28 n 01 field_day 0 001 @ 15157225 n 0000 | a day for outdoor athletic competition -15173353 28 n 01 field_day 2 002 @ 15157225 n 0000 ;c 08199025 n 0000 | (military) a day for military exercises and display -15173479 28 n 01 calendar 0 006 @ 05726596 n 0000 + 02674772 a 0101 %p 15172664 n 0000 ~ 15178417 n 0000 ~ 15178546 n 0000 ~ 15178694 n 0000 | a system of timekeeping that defines the beginning and length and divisions of the year -15173712 28 n 01 timekeeping 0 002 @ 00407535 n 0000 ~ 15180304 n 0000 | the act or process of determining the time -15173830 28 n 01 Roman_calendar 0 001 @ 15178417 n 0000 | the lunar calendar in use in ancient Rome; replaced by the Julian calendar in 46 BC -15173974 28 n 01 ides 0 001 @ 15157225 n 0000 | in the Roman calendar: the 15th of March or May or July or October or the 13th of any other month -15174122 28 n 01 market_day 0 001 @ 15157225 n 0000 | a fixed day for holding a public market -15174218 28 n 02 Gregorian_calendar 0 New_Style_calendar 0 015 @ 15178694 n 0000 ~ 15181718 n 0000 %p 15209706 n 0000 %p 15210045 n 0000 %p 15210486 n 0000 %p 15210870 n 0000 %p 15211189 n 0000 %p 15211484 n 0000 %p 15211806 n 0000 %p 15212167 n 0000 %p 15212455 n 0000 %p 15212739 n 0000 %p 15213115 n 0000 %p 15213406 n 0000 %p 15213774 n 0000 | the solar calendar now in general use, introduced by Gregory XIII in 1582 to correct an error in the Julian calendar by suppressing 10 days, making Oct 5 be called Oct 15, and providing that only centenary years divisible by 400 should be leap years; it was adopted by Great Britain and the American colonies in 1752 -15174885 28 n 02 Julian_calendar 0 Old_Style_calendar 0 001 @ 15178694 n 0000 | the solar calendar introduced in Rome in 46 b.c. by Julius Caesar and slightly modified by Augustus, establishing the 12-month year of 365 days with each 4th year having 366 days and the months having 31 or 30 days except for February -15175202 28 n 01 Revolutionary_calendar 0 014 @ 15178694 n 0000 %p 15175640 n 0000 %p 15175987 n 0000 %p 15176161 n 0000 %p 15176319 n 0000 %p 15176476 n 0000 %p 15176630 n 0000 %p 15176785 n 0000 %p 15176937 n 0000 %p 15177091 n 0000 %p 15177244 n 0000 %p 15177396 n 0000 %p 15177549 n 0000 %p 15177705 n 0000 | the calendar adopted by the first French Republic in 1793 and abandoned in 1805; dates were calculated from Sept. 22, 1792 -15175640 28 n 01 Revolutionary_calendar_month 0 014 @ 15209413 n 0000 #p 15175202 n 0000 ~ 15175987 n 0000 ~ 15176161 n 0000 ~ 15176319 n 0000 ~ 15176476 n 0000 ~ 15176630 n 0000 ~ 15176785 n 0000 ~ 15176937 n 0000 ~ 15177091 n 0000 ~ 15177244 n 0000 ~ 15177396 n 0000 ~ 15177549 n 0000 ~ 15177705 n 0000 | a month in the Revolutionary calendar -15175987 28 n 01 Vendemiaire 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | first month of the Revolutionary calendar (September and October); the month of the grape harvest -15176161 28 n 01 Brumaire 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | second month of the Revolutionary calendar (October and November); the month of mist -15176319 28 n 01 Frimaire 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | third month of the Revolutionary calendar (November and December); the frosty month -15176476 28 n 01 Nivose 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | fourth month of the Revolutionary calendar (December and January); the snowy month -15176630 28 n 01 Pluviose 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | fifth month of the Revolutionary calendar (January and February); the rainy month -15176785 28 n 01 Ventose 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | sixth month of the Revolutionary calendar (February and March); the windy month -15176937 28 n 01 Germinal 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | seventh month of the Revolutionary calendar (March and April); the month of buds -15177091 28 n 01 Floreal 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | eighth month of the Revolutionary calendar (April and May); the month of flowers -15177244 28 n 01 Prairial 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | ninth month of the Revolutionary calendar (May and June); the month of meadows -15177396 28 n 01 Messidor 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | tenth month of the Revolutionary calendar (June and July); the month of harvest -15177549 28 n 01 Thermidor 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | eleventh month of the Revolutionary calendar (July and August); the month of heat -15177705 28 n 01 Fructidor 0 002 @ 15175640 n 0000 #p 15175202 n 0000 | twelfth month of the Revolutionary calendar (August and September); the month of fruit -15177866 28 n 02 Jewish_calendar 0 Hebrew_calendar 0 016 @ 15178546 n 0000 ;c 06232880 n 0000 %p 15214068 n 0000 %p 15214419 n 0000 %p 15214639 n 0000 %p 15214840 n 0000 %p 15215068 n 0000 %p 15215270 n 0000 %p 15215480 n 0000 %p 15215693 n 0000 %p 15215816 n 0000 %p 15215994 n 0000 %p 15216189 n 0000 %p 15216386 n 0000 %p 15216563 n 0000 %p 15216760 n 0000 | (Judaism) the calendar used by the Jews; dates from 3761 BC (the assumed date of the Creation of the world); a lunar year of 354 days is adjusted to the solar year by periodic leap years -15178417 28 n 01 lunar_calendar 0 003 @ 15173479 n 0000 ~ 15173830 n 0000 ~ 15178841 n 0000 | a calendar based on lunar cycles -15178546 28 n 01 lunisolar_calendar 0 003 @ 15173479 n 0000 ~ 15177866 n 0000 ~ 15179415 n 0000 | a calendar based on both lunar and solar cycles -15178694 28 n 01 solar_calendar 0 004 @ 15173479 n 0000 ~ 15174218 n 0000 ~ 15174885 n 0000 ~ 15175202 n 0000 | a calendar based on solar cycles -15178841 28 n 05 Islamic_calendar 0 Muhammadan_calendar 0 Mohammedan_calendar 0 Moslem_calendar 0 Muslim_calendar 0 014 @ 15178417 n 0000 %p 15216966 n 0000 %p 15217308 n 0000 %p 15217443 n 0000 %p 15217563 n 0000 %p 15217674 n 0000 %p 15217787 n 0000 %p 15217911 n 0000 %p 15218037 n 0000 %p 15218149 n 0000 %p 15218272 n 0000 %p 15218551 n 0000 %p 15218663 n 0000 %p 15218798 n 0000 | the lunar calendar used by Muslims; dates from 622 AD (the year of the Hegira); the beginning of the Muslim year retrogresses through the solar year completing the cycle every 32 years -15179415 28 n 01 Hindu_calendar 0 014 @ 15178546 n 0000 %p 15219351 n 0000 %p 15219694 n 0000 %p 15220027 n 0000 %p 15220149 n 0000 %p 15220267 n 0000 %p 15220385 n 0000 %p 15220503 n 0000 %p 15220625 n 0000 %p 15220743 n 0000 %p 15220864 n 0000 %p 15220985 n 0000 %p 15221099 n 0000 %p 15221474 n 0000 | the lunisolar calendar governing the religious life of Hindus; an extra month is inserted after every month in which there are two new moons (once every three years) -15179888 28 n 02 date 4 particular_date 0 003 @ 15180528 n 0000 + 00734927 v 0101 + 00619183 v 0101 | a particular but unspecified point in time; "they hoped to get together at an early date" -15180082 28 n 01 deadline 0 002 @ 15180528 n 0000 ~ 15180209 n 0000 | the point in time at which something must be completed -15180209 28 n 01 curfew 0 001 @ 15180082 n 0000 | the time that the curfew signal is sounded -15180304 28 n 03 anachronism 0 mistiming 0 misdating 0 005 @ 15173712 n 0000 + 00619503 v 0301 + 00491313 v 0201 + 02379925 a 0103 + 02379925 a 0101 | something located at a time when it could not have existed or occurred -15180528 28 n 02 point 0 point_in_time 0 017 @ 00033615 n 0000 ~ 15172423 n 0000 ~ 15179888 n 0000 ~ 15180082 n 0000 ~ 15180934 n 0000 ~ 15181094 n 0000 ~ 15225668 n 0000 ~ 15226451 n 0000 ~ 15226625 n 0000 ~ 15244650 n 0000 ~ 15262510 n 0000 ~ 15265518 n 0000 ~ 15266685 n 0000 ~ 15266911 n 0000 ~ 15290132 n 0000 ~ 15295884 n 0000 ~ 15296354 n 0000 | an instant of time; "at that point I had to leave" -15180934 28 n 02 arrival_time 0 time_of_arrival 0 001 @ 15180528 n 0000 | the time at which a public conveyance is scheduled to arrive at a given destination -15181094 28 n 02 departure_time 0 time_of_departure 0 002 @ 15180528 n 0000 ~ 15181282 n 0000 | the time at which a public conveyance is scheduled to depart from a given point of origin -15181282 28 n 02 checkout 0 checkout_time 0 002 @ 15181094 n 0000 + 00966492 v 0101 | the latest time for vacating a hotel room; "the checkout here is 12 noon" -15181444 28 n 02 Holy_Week 0 Passion_Week 0 002 @ 15169873 n 0000 #p 15181718 n 0000 | the week before Easter -15181556 28 n 01 Holy_Year 0 002 @ 15203791 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a period of remission from sin (usually granted every 25 years) -15181718 28 n 02 church_calendar 0 ecclesiastical_calendar 0 006 @ 15174218 n 0000 %p 15181444 n 0000 %p 15241507 n 0000 %p 15241777 n 0000 %p 15242029 n 0000 %p 15242719 n 0000 | a calendar of the Christian year indicating the dates of fasts and festivals -15181977 28 n 01 Walpurgis_Night 0 001 @ 15157225 n 0000 | eve of May Day -15182053 28 n 02 New_Year's_Eve 0 December_31 0 003 @ 15157225 n 0000 #p 15213774 n 0000 ~ 15182724 n 0000 | the last day of the year -15182189 28 n 03 New_Year's_Day 0 New_Year's 0 January_1 0 002 @ 15199592 n 0000 #p 15210045 n 0000 | the first day of the year -15182319 28 n 01 New_Year 0 001 @ 15203791 n 0000 | the calendar year just begun -15182402 28 n 02 Martin_Luther_King_Jr's_Birthday 0 Martin_Luther_King_Day 0 002 @ 15199592 n 0000 #p 15210045 n 0000 | observed on the Monday closest to January 15 -15182569 28 n 04 Robert_E_Lee's_Birthday 0 Robert_E_Lee_Day 0 Lee's_Birthday 0 January_19 0 001 @ 15157225 n 0000 | celebrated in southern United States -15182724 28 n 01 Hogmanay 0 001 @ 15182053 n 0000 | New Year's Eve in Scotland -15182805 28 n 05 Rosh_Hashanah 0 Rosh_Hashana 0 Rosh_Hashonah 0 Rosh_Hashona 0 Jewish_New_Year 0 003 @ 15184008 n 0000 @ 15161631 n 0000 ;c 06232880 n 0000 | (Judaism) a solemn Jewish feast day celebrated on the 1st or 1st and 2nd of Tishri; noted for the blowing of the shofar -15183085 28 n 02 Rosh_Hodesh 0 Rosh_Chodesh 0 002 @ 15184755 n 0000 ;c 06232880 n 0000 | (Judaism) the beginning of each month in the Jewish calendar; marked by a special liturgy -15183266 28 n 01 Tet 0 002 @ 15157225 n 0000 #p 15210045 n 0000 | the New Year in Vietnam; observed for three days after the first full moon after January 20th -15183428 28 n 01 holiday 1 009 @ 15157225 n 0000 ~ 15138496 n 0000 ~ 15161631 n 0000 ~ 15183802 n 0000 ~ 15196444 n 0000 ~ 15199592 n 0000 ~ 15200661 n 0000 ~ 15219874 n 0000 ~ 15221286 n 0000 | a day on which work is suspended by law or custom; "no mail is delivered on federal holidays"; "it's a good thing that New Year's was a holiday because everyone had a hangover" -15183802 28 n 02 religious_holiday 0 holy_day 1 006 @ 15183428 n 0000 #p 15173064 n 0000 ~ 15161165 n 0000 ~ 15184170 n 0000 ~ 15184755 n 0000 ~ 15194194 n 0000 | a day specified for religious observance -15184008 28 n 02 High_Holy_Day 0 High_Holiday 0 003 @ 15184755 n 0000 ~ 15182805 n 0000 ~ 15185471 n 0000 | Jewish holy days observed with particular solemnity -15184170 28 n 01 Christian_holy_day 0 028 @ 15183802 n 0000 ~ 15160866 n 0000 ~ 15185007 n 0000 ~ 15185721 n 0000 ~ 15188359 n 0000 ~ 15191661 n 0000 ~ 15191739 n 0000 ~ 15191827 n 0000 ~ 15191924 n 0000 ~ 15192008 n 0000 ~ 15192116 n 0000 ~ 15192272 n 0000 ~ 15192406 n 0000 ~ 15192544 n 0000 ~ 15192649 n 0000 ~ 15192736 n 0000 ~ 15193526 n 0000 ~ 15193660 n 0000 ~ 15193776 n 0000 ~ 15194506 n 0000 ~ 15194739 n 0000 ~ 15194940 n 0000 ~ 15195477 n 0000 ~ 15195622 n 0000 ~ 15195834 n 0000 ~ 15241655 n 0000 ~ 15241898 n 0000 ~ 15299367 n 0000 | a religious holiday for Christians -15184755 28 n 01 Jewish_holy_day 0 010 @ 15183802 n 0000 ~ 15161872 n 0000 ~ 15183085 n 0000 ~ 15184008 n 0000 ~ 15196870 n 0000 ~ 15197042 n 0000 ~ 15197302 n 0000 ~ 15197658 n 0000 ~ 15199033 n 0000 ~ 15199406 n 0000 | a religious holiday for Jews -15185007 28 n 01 holy_day_of_obligation 0 007 @ 15184170 n 0000 ~ 15192890 n 0000 ~ 15193052 n 0000 ~ 15193908 n 0000 ~ 15195059 n 0000 ~ 15195259 n 0000 ~ 15196186 n 0000 | a day when Catholics must attend Mass and refrain from servile work, and Episcopalians must take Communion -15185290 28 n 02 movable_feast 0 moveable_feast 0 003 @ 15161631 n 0000 ~ 15188154 n 0000 ~ 15195928 n 0000 | a religious holiday that falls on different dates in different years -15185471 28 n 02 Yom_Kippur 0 Day_of_Atonement 0 003 @ 15184008 n 0000 @ 15161284 n 0000 ;c 06232880 n 0000 | (Judaism) a solemn and major fast day on the Jewish calendar; 10th of Tishri; its observance is one of the requirements of the Mosaic law -15185721 28 n 02 Saint_Agnes's_Eve 0 January_20 1 002 @ 15184170 n 0000 #p 15210045 n 0000 | a Christian holy day -15185837 28 n 03 Martinmas 0 St_Martin's_Day 0 11_November 0 002 @ 15160866 n 0000 #p 15213406 n 0000 | the feast of Saint Martin; a quarter day in Scotland -15185996 28 n 02 Indian_summer 0 Saint_Martin's_summer 0 002 @ 15113229 n 0000 #p 15236859 n 0000 | a period of unusually warm weather in the autumn -15186147 28 n 04 Annunciation 0 Lady_Day 0 Annunciation_Day 0 March_25 0 002 @ 15160866 n 0000 #p 15210870 n 0000 | a festival commemorating the announcement of the Incarnation by the angel Gabriel to the Virgin Mary; a quarter day in England, Wales, and Ireland -15186412 28 n 03 Michaelmas 0 Michaelmas_Day 0 September_29 0 002 @ 15160866 n 0000 #p 15212739 n 0000 | honoring the archangel Michael; a quarter day in England, Wales, and Ireland -15186596 28 n 01 Michaelmastide 0 001 @ 15239292 n 0000 | the season of Michaelmas -15186681 28 n 03 Candlemas 0 Candlemas_Day 0 Feb_2 0 002 @ 15160866 n 0000 #p 15210486 n 0000 | feast day commemorating the presentation of Christ in the temple; a quarter day in Scotland -15186871 28 n 02 Groundhog_Day 0 February_2 0 003 @ 15157225 n 0000 #p 15210486 n 0000 ;r 09044862 n 0000 | if the ground hog emerges and sees his shadow on this day, there will be 6 more weeks of winter -15187077 28 n 02 Lincoln's_Birthday 0 February_12 0 003 @ 15157225 n 0000 #p 15210486 n 0000 ;r 09044862 n 0000 | the day on which President Abraham Lincoln is remembered -15187250 28 n 05 Valentine_Day 0 Valentine's_Day 0 Saint_Valentine's_Day 0 St_Valentine's_Day 0 February_14 0 002 @ 15157225 n 0000 #p 15210486 n 0000 | a day for the exchange of tokens of affection -15187451 28 n 02 Washington's_Birthday 0 February_22 0 003 @ 15157225 n 0000 #p 15210486 n 0000 ;r 09044862 n 0000 | the day on which George Washington is remembered -15187619 28 n 01 Presidents'_Day 0 003 @ 15199592 n 0000 #p 15210486 n 0000 ;r 09044862 n 0000 | the third Monday in February; commemorates both presidents Lincoln and Washington -15187800 28 n 02 Texas_Independence_Day 0 March_2 0 002 @ 15157225 n 0000 #p 15210870 n 0000 | Texans celebrate the anniversary of Texas' declaration of independence from Mexico in 1836 -15187988 28 n 03 St_Patrick's_Day 0 Saint_Patrick's_Day 0 March_17 0 001 @ 15157225 n 0000 | a day observed by the Irish to commemorate the patron saint of Ireland -15188154 28 n 01 Easter 0 002 @ 15185290 n 0000 ~ 15191401 n 0000 | a Christian celebration of the Resurrection of Christ; celebrated on the Sunday following the first full moon after the vernal equinox -15188359 28 n 02 Easter_Sunday 0 Easter_Day 0 001 @ 15184170 n 0000 | the day (in March or April) on which the festival of Easter is celebrated -15188505 28 n 03 April_Fools' 0 April_Fools'_day 0 All_Fools'_day 0 002 @ 15157225 n 0000 #p 15211189 n 0000 | the first day of April which is celebrated by playing practical jokes -15188688 28 n 02 Pan_American_Day 0 April_14 0 002 @ 15157225 n 0000 #p 15211189 n 0000 | a day celebrating political and economic unity among American countries -15188852 28 n 01 Patriot's_Day 0 002 @ 15157225 n 0000 #p 15211189 n 0000 | the 3rd Monday in April; Massachusetts and Maine celebrate the battle of Lexington and Concord in 1775 -15189033 28 n 03 May_Day 0 First_of_May 0 May_1 0 002 @ 15157225 n 0000 #p 15211484 n 0000 | observed in many countries to celebrate the coming of spring; observed in Russia and related countries in honor of labor -15189249 28 n 01 Mother's_Day 0 002 @ 15157225 n 0000 #p 15211484 n 0000 | second Sunday in May -15189347 28 n 01 Armed_Forces_Day 0 002 @ 15157225 n 0000 #p 15211484 n 0000 | the 3rd Saturday in May -15189452 28 n 02 Memorial_Day 0 Decoration_Day 0 002 @ 15199592 n 0000 #p 15211484 n 0000 | legal holiday in the United States, last Monday in May; commemorates the members of the United States armed forces who were killed in war -15189684 28 n 03 Jefferson_Davis'_Birthday 0 Davis'_Birthday 0 June_3 0 002 @ 15157225 n 0000 #p 15211806 n 0000 | celebrated in southern United States -15189838 28 n 02 Flag_Day 0 June_14 0 002 @ 15157225 n 0000 #p 15211806 n 0000 | commemorating the adoption of the United States flag in 1777 -15189982 28 n 01 Father's_Day 0 002 @ 15157225 n 0000 #p 15211806 n 0000 | US: third Sunday in June -15190084 28 n 03 Independence_Day 0 Fourth_of_July 0 July_4 0 002 @ 15199592 n 0000 #p 15212167 n 0000 | a legal holiday in the United States -15190228 28 n 03 Lammas 0 Lammas_Day 0 August_1 0 001 @ 15160866 n 0000 | commemorates Saint Peter's miraculous deliverance from prison; a quarter day in Scotland; a harvest festival in England -15190424 28 n 01 Lammastide 0 002 @ 15239292 n 0000 ;r 08890097 n 0000 | the season of Lammas -15190520 28 n 01 Labor_Day 0 002 @ 15199592 n 0000 #p 15212739 n 0000 | first Monday in September in the United States and Canada -15190652 28 n 02 Citizenship_Day 0 September_17 0 002 @ 15157225 n 0000 #p 15212739 n 0000 | celebrated in the United States -15190779 28 n 01 American_Indian_Day 0 002 @ 15157225 n 0000 #p 15212739 n 0000 | US: the 4th Friday in September -15190895 28 n 03 Columbus_Day 0 Discovery_Day 0 October_12 0 002 @ 15199592 n 0000 #p 15213115 n 0000 | a legal holiday commemorating the discovery of America by Christopher Columbus -15191080 28 n 02 United_Nations_Day 0 October_24 0 002 @ 15157225 n 0000 #p 15213115 n 0000 | a day for celebrating the founding of the United Nations -15191233 28 n 03 Halloween 0 Hallowe'en 0 Allhallows_Eve 0 001 @ 15157225 n 0000 | the evening before All Saints' Day; often devoted to pranks played by young people -15191401 28 n 02 Pasch 0 Pascha 0 001 @ 15188154 n 0000 | the Christian festival of Easter -15191494 28 n 02 Pasch 1 Pascha 1 001 @ 15195928 n 0000 | the Jewish feast of the Passover -15191587 28 n 01 Eastertide 0 001 @ 15239292 n 0000 | the Easter season -15191661 28 n 01 Palm_Sunday 0 001 @ 15184170 n 0000 | Sunday before Easter -15191739 28 n 01 Passion_Sunday 0 001 @ 15184170 n 0000 | second Sunday before Easter -15191827 28 n 01 Good_Friday 0 002 @ 15184170 n 0000 #p 15242029 n 0000 | Friday before Easter -15191924 28 n 01 Low_Sunday 0 001 @ 15184170 n 0000 | the Sunday following Easter -15192008 28 n 01 Holy_Saturday 0 001 @ 15184170 n 0000 | the Saturday before Easter; the last day of Lent -15192116 28 n 02 Holy_Innocents'_Day 0 Innocents'_Day 0 001 @ 15184170 n 0000 | December 28, commemorating Herod's slaughter of the children of Bethlehem -15192272 28 n 02 Septuagesima 0 Septuagesima_Sunday 0 001 @ 15184170 n 0000 | the 3rd Sunday before Lent (or the 9th before Easter) -15192406 28 n 02 Quinquagesima 0 Quinquagesima_Sunday 0 001 @ 15184170 n 0000 | the Sunday before Ash Wednesday (the beginning of Lent) -15192544 28 n 02 Quadragesima 0 Quadrigesima_Sunday 0 001 @ 15184170 n 0000 | the first Sunday in Lent -15192649 28 n 01 Trinity_Sunday 0 001 @ 15184170 n 0000 | eighth Sunday after Easter -15192736 28 n 01 Rogation_Day 0 001 @ 15184170 n 0000 | one of the three days before Ascension Day; observed by some Christians as days of supplication -15192890 28 n 02 Solemnity_of_Mary 0 January_1 1 003 @ 15185007 n 0000 #p 15210045 n 0000 ;c 08083599 n 0000 | (Roman Catholic Church) a holy day of obligation -15193052 28 n 03 Ascension 0 Ascension_Day 0 Ascension_of_the_Lord 0 002 @ 15185007 n 0000 ;c 06226057 n 0000 | (Christianity) celebration of the Ascension of Christ into heaven; observed on the 40th day after Easter -15193271 28 n 03 Circumcision 0 Feast_of_the_Circumcision 0 January_1 2 003 @ 15161631 n 0000 ;c 08083599 n 0000 ;c 08087981 n 0000 | (Roman Catholic Church and Anglican Church) feast day celebrating the circumcision of Jesus; celebrated on January 1st -15193526 28 n 02 Maundy_Thursday 0 Holy_Thursday 0 001 @ 15184170 n 0000 | the Thursday before Easter; commemorates the Last Supper -15193660 28 n 01 Corpus_Christi 0 001 @ 15184170 n 0000 | Thursday after Trinity Sunday; first celebrated in 1246 -15193776 28 n 02 Saints_Peter_and_Paul 0 June_29 0 002 @ 15184170 n 0000 #p 15211806 n 0000 | first celebrated in the 3rd century -15193908 28 n 03 Assumption 0 Assumption_of_Mary 0 August_15 0 002 @ 15185007 n 0000 #p 15212455 n 0000 | celebration in the Roman Catholic Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Dormition in the Eastern Orthodox Church -15194194 28 n 02 Dormition 0 Feast_of_Dormition 0 002 @ 15183802 n 0000 #p 15212455 n 0000 | celebration in the Eastern Orthodox Church of the Virgin Mary's being taken up into heaven when her earthly life ended; corresponds to the Assumption in the Roman Catholic Church and is also celebrated on August 15th -15194506 28 n 05 Epiphany 0 Epiphany_of_Our_Lord 0 Twelfth_day 0 Three_Kings'_Day 0 January_6 0 002 @ 15184170 n 0000 #p 15210045 n 0000 | twelve days after Christmas; celebrates the visit of the three wise men to the infant Jesus -15194739 28 n 03 Saint_Joseph 0 St_Joseph 0 March_19 0 002 @ 15184170 n 0000 #p 15210870 n 0000 | a Christian holy day -15194860 28 n 01 Twelfthtide 0 001 @ 15239292 n 0000 | the season of Epiphany -15194940 28 n 01 Twelfth_night 0 002 @ 15184170 n 0000 #p 15210045 n 0000 | eve of Twelfth day; evening of January 5 -15195059 28 n 05 All_Saints'_Day 0 Allhallows 0 November_1 0 Hallowmas 0 Hallowmass 0 002 @ 15185007 n 0000 #p 15213406 n 0000 | a Christian feast day honoring all the saints; first observed in 835 -15195259 28 n 02 Immaculate_Conception 0 December_8 0 001 @ 15185007 n 0000 | Roman Catholic holy day first celebrated in 1854 -15195388 28 n 01 Allhallowtide 0 001 @ 15239292 n 0000 | the season of All Saints' Day -15195477 28 n 02 All_Souls'_Day 0 November_2 0 002 @ 15184170 n 0000 #p 15213406 n 0000 | a day of supplication for all the souls in purgatory -15195622 28 n 01 Ash_Wednesday 0 002 @ 15184170 n 0000 #p 15242029 n 0000 | the 7th Wednesday before Easter; the first day of Lent; the day following Mardi Gras (`Fat Tuesday'); a day of fasting and repentance -15195834 28 n 01 Ember_Day 0 001 @ 15184170 n 0000 | a day set aside for fasting and prayer -15195928 28 n 04 Passover 0 Pesach 0 Pesah 0 Feast_of_the_Unleavened_Bread 0 003 @ 15185290 n 0000 ;c 06232880 n 0000 ~ 15191494 n 0000 | (Judaism) a Jewish festival (traditionally 8 days from Nissan 15) celebrating the exodus of the Israelites from Egypt -15196186 28 n 04 Christmas 0 Christmas_Day 0 Xmas 0 Dec_25 0 005 @ 15199592 n 0000 @ 15185007 n 0000 @ 15160866 n 0000 @ 15161631 n 0000 #p 15213774 n 0000 | a Christian holiday celebrating the birth of Christ; a quarter day in England, Wales, and Ireland -15196444 28 n 02 Christmas_Eve 0 Dec_24 0 001 @ 15183428 n 0000 | the day before Christmas -15196537 28 n 06 Christmas 1 Christmastide 0 Christmastime 0 Yule 0 Yuletide 0 Noel 0 004 @ 15239292 n 0000 #p 15213774 n 0000 #p 15210045 n 0000 %p 15196746 n 0000 | period extending from Dec. 24 to Jan. 6 -15196746 28 n 01 Boxing_Day 0 003 @ 15199592 n 0000 #p 15196537 n 0000 ;r 08860123 n 0000 | first weekday after Christmas -15196870 28 n 01 Purim 0 003 @ 15184755 n 0000 #p 15215480 n 0000 ;c 06232880 n 0000 | (Judaism) a Jewish holy day commemorating their deliverance from massacre by Haman -15197042 28 n 06 Shavous 0 Shabuoth 0 Shavuoth 0 Shavuot 0 Pentecost 2 Feast_of_Weeks 0 003 @ 15184755 n 0000 ;c 06232880 n 0000 + 03098491 a 0501 | (Judaism) Jewish holy day celebrated on the sixth of Sivan to celebrate Moses receiving the Ten Commandments -15197302 28 n 08 Shimchath_Torah 0 Simchat_Torah 0 Simhath_Torah 0 Simhat_Torah 0 Simchas_Torah 0 Rejoicing_over_the_Law 0 Rejoicing_of_the_Law 0 Rejoicing_in_the_Law 0 002 @ 15184755 n 0000 ;c 06232880 n 0000 | (Judaism) a Jewish holy day celebrated on the 22nd or 23rd of Tishri to celebrate the completion of the annual cycle of readings of the Torah -15197658 28 n 08 Tishah_b'Av 0 Tishah_b'Ab 0 Tisha_b'Av 0 Tisha_b'Ab 0 Ninth_of_Av 0 Ninth_of_Ab 0 Fast_of_Av 0 Fast_of_Ab 0 003 @ 15184755 n 0000 @ 15161284 n 0000 ;c 06232880 n 0000 | (Judaism) a major fast day on the Jewish calendar commemorating the destruction of the temples in Jerusalem -15197954 28 n 01 Fast_of_Gedaliah 0 002 @ 15161430 n 0000 ;c 06232880 n 0000 | (Judaism) a minor fast day on Tishri 3 that commemorates the killing of the Jewish governor of Judah -15198136 28 n 01 Fast_of_Tevet 0 002 @ 15161430 n 0000 ;c 06232880 n 0000 | (Judaism) a minor fast day on Tevet 10 commemorates the beginning of the siege of Jerusalem and has also been proclaimed a memorial day for the six million Jews who died in the Holocaust -15198401 28 n 01 Fast_of_Esther 0 002 @ 15161430 n 0000 ;c 06232880 n 0000 | (Judaism) a minor fast day on Adar 13 commemorates three days that Esther fasted before approaching the Persian king on behalf of the Jewish people; the fast is connected with Purim -15198662 28 n 01 Fast_of_the_Firstborn 0 002 @ 15161430 n 0000 ;c 06232880 n 0000 | (Judaism) a minor fast day on Nissan 14 that is observed only by firstborn males; it is observed on the day before Passover -15198872 28 n 01 Fast_of_Tammuz 0 002 @ 15161430 n 0000 ;c 06232880 n 0000 | (Judaism) a minor fast day on Tammuz 17 when the walls of Jerusalem were breached -15199033 28 n 0b Hanukkah 0 Hanukah 0 Hannukah 0 Chanukah 0 Chanukkah 0 Channukah 0 Channukkah 0 Festival_of_Lights 0 Feast_of_Lights 0 Feast_of_Dedication 0 Feast_of_the_Dedication 0 004 @ 15184755 n 0000 #p 15214840 n 0000 #p 15215068 n 0000 ;c 06232880 n 0000 | (Judaism) an eight-day Jewish holiday commemorating the rededication of the Temple of Jerusalem in 165 BC -15199406 28 n 01 Lag_b'Omer 0 003 @ 15184755 n 0000 #p 15215994 n 0000 ;c 06232880 n 0000 | (Judaism) Jewish holy day; the 33rd day after the 2nd day of Passover; the 18th day of Iyar -15199592 28 n 03 legal_holiday 0 national_holiday 0 public_holiday 0 017 @ 15183428 n 0000 ~ 15182189 n 0000 ~ 15182402 n 0000 ~ 15187619 n 0000 ~ 15189452 n 0000 ~ 15190084 n 0000 ~ 15190520 n 0000 ~ 15190895 n 0000 ~ 15196186 n 0000 ~ 15196746 n 0000 ~ 15200032 n 0000 ~ 15200164 n 0000 ~ 15200314 n 0000 ~ 15200493 n 0000 ~ 15200896 n 0000 ~ 15201116 n 0000 ~ 15201384 n 0000 | authorized by law and limiting work or official business -15200032 28 n 01 bank_holiday 0 001 @ 15199592 n 0000 | any of several weekdays when banks are closed; a legal holiday in Britain -15200164 28 n 03 Commonwealth_Day 0 Empire_day 0 May_24 0 002 @ 15199592 n 0000 #p 15211484 n 0000 | British, anniversary of Queen Victoria's birth -15200314 28 n 02 Dominion_Day 0 July_1 0 003 @ 15199592 n 0000 #p 15212167 n 0000 ;r 08820121 n 0000 | a legal holiday in Canada commemorating receiving Dominion status in 1867 -15200493 28 n 02 Bastille_Day 0 14_July 0 002 @ 15199592 n 0000 #p 15212167 n 0000 | a legal holiday in France celebrating the storming of the Paris bastille in 1789 -15200661 28 n 03 Remembrance_Day 0 Remembrance_Sunday 0 Poppy_Day 0 003 @ 15183428 n 0000 ;r 08860123 n 0000 ;r 08820121 n 0000 | the Sunday nearest to November 11 when those who died in World War I and World War II are commemorated -15200896 28 n 04 Veterans_Day 0 Veterans'_Day 0 Armistice_Day 0 November_11 0 002 @ 15199592 n 0000 #p 15213406 n 0000 | a legal holiday in the United States; formerly Armistice Day but called Veterans' Day since 1954 -15201116 28 n 02 Thanksgiving 0 Thanksgiving_Day 0 003 @ 15199592 n 0000 @ 15161631 n 0000 #p 15213406 n 0000 | fourth Thursday in November in the United States; second Monday in October in Canada; commemorates a feast held in 1621 by the Pilgrims and the Wampanoag -15201384 28 n 01 Victoria_Day 0 001 @ 15199592 n 0000 | a public holiday in Canada on the Monday on or before May 24th -15201505 28 n 01 year 0 007 @ 15113229 n 0000 ~ 15201822 n 0000 ~ 15202806 n 0000 ~ 15203017 n 0000 %p 15206296 n 0000 ~ 15208898 n 0000 %p 15236475 n 0000 | the period of time that it takes for a planet (as, e.g., Earth or Mars) to make a complete revolution around the sun; "a Martian year takes 687 of our days" -15201822 28 n 01 anomalistic_year 0 001 @ 15201505 n 0000 | time of the earth's revolution from perihelion to perihelion again; 365 days and 6 hr and 13 min and 53.1 sec -15201994 28 n 01 year-end 0 001 @ 15266911 n 0000 | the end of a calendar year; "he had to unload the merchandise before the year-end" -15202131 28 n 02 common_year 0 365_days 0 001 @ 15203791 n 0000 | a year that is not a leap year -15202230 28 n 04 leap_year 0 intercalary_year 0 366_days 0 bissextile_year 0 001 @ 15203791 n 0000 | in the Gregorian calendar: any year divisible by 4 except centenary years divisible by 400 -15202424 28 n 01 off_year 0 001 @ 15203791 n 0000 | a year in which no major political elections are held -15202532 28 n 01 off_year 1 001 @ 15203791 n 0000 | a year in which productivity is low or inferior -15202634 28 n 02 calendar_year 0 civil_year 0 002 @ 15203791 n 0000 ~ 15160579 n 0000 | the year (reckoned from January 1 to December 31) according to Gregorian calendar -15202806 28 n 04 solar_year 0 tropical_year 0 astronomical_year 0 equinoctial_year 0 001 @ 15201505 n 0000 | the time for the earth to make one revolution around the sun, measured between two vernal equinoxes -15203017 28 n 01 lunar_year 0 002 @ 15201505 n 0000 %p 15207872 n 0000 | a period of 12 lunar months -15203120 28 n 02 fiscal_year 0 financial_year 0 001 @ 15203791 n 0000 | any accounting period of 12 months -15203229 28 n 03 school 0 schooltime 0 school_day 1 004 @ 15113229 n 0000 + 02792903 a 0101 + 02387910 v 0101 %p 15299225 n 0000 | the period of instruction in a school; the time period when school is in session; "stay after school"; "he didn't miss a single day of school"; "when the school day was done we would walk home together" -15203565 28 n 02 school_year 0 academic_year 0 005 @ 15204297 n 0000 %p 15225249 n 0000 %p 15225797 n 0000 %p 15225929 n 0000 %p 15226046 n 0000 | the period of time each year when the school is open and people are studying -15203791 28 n 03 year 1 twelvemonth 0 yr 0 015 @ 15113229 n 0000 #p 15204983 n 0000 + 01969150 a 0102 ~ 15173064 n 0000 ~ 15181556 n 0000 ~ 15182319 n 0000 ~ 15202131 n 0000 ~ 15202230 n 0000 ~ 15202424 n 0000 ~ 15202532 n 0000 ~ 15202634 n 0000 ~ 15203120 n 0000 ~ 15204201 n 0000 ~ 15249458 n 0000 ~ 15249547 n 0000 | a period of time containing 365 (or 366) days; "she is 4 years old"; "in the year 1920" -15204201 28 n 01 annum 0 002 @ 15203791 n 0000 ;c 06962600 n 0000 | (Latin) year; "per annum" -15204297 28 n 01 year 2 002 @ 15113229 n 0000 ~ 15203565 n 0000 | a period of time occupying a regular part of a calendar year that is used for some particular activity; "a school year" -15204485 28 n 01 semester 2 003 @ 15113229 n 0000 + 01970136 a 0102 + 01970136 a 0101 | half a year; a period of 6 months -15204609 28 n 01 bimester 0 003 @ 15113229 n 0000 + 01438853 a 0101 + 01969881 a 0102 | a period of 2 months -15204720 28 n 01 Olympiad 0 001 @ 15113229 n 0000 | one of the four-year intervals between Olympic Games; used to reckon time in ancient Greece for twelve centuries beginning in 776 BC -15204907 28 n 01 lustrum 0 001 @ 15113229 n 0000 | a period of five years -15204983 28 n 03 decade 0 decennary 0 decennium 0 026 @ 15113229 n 0000 #p 15205532 n 0000 ~ 15148707 n 0000 ~ 15148787 n 0000 ~ 15148867 n 0000 ~ 15148958 n 0000 ~ 15149180 n 0000 ~ 15149271 n 0000 ~ 15149472 n 0000 ~ 15149562 n 0000 ~ 15149763 n 0000 ~ 15149853 n 0000 ~ 15149933 n 0000 ~ 15150134 n 0000 ~ 15150224 n 0000 ~ 15150304 n 0000 ~ 15150618 n 0000 ~ 15150710 n 0000 ~ 15150790 n 0000 ~ 15150993 n 0000 ~ 15151084 n 0000 ~ 15151175 n 0000 ~ 15151379 n 0000 ~ 15151470 n 0000 ~ 15151561 n 0000 %p 15203791 n 0000 | a period of 10 years -15205532 28 n 01 century 0 007 @ 15113229 n 0000 #p 15141213 n 0000 %p 15204983 n 0000 ~ 15205880 n 0000 ~ 15206004 n 0000 %p 15206097 n 0000 %p 15206195 n 0000 | a period of 100 years -15205719 28 n 01 quadrennium 0 001 @ 15113229 n 0000 | a period of four years -15205799 28 n 01 quinquennium 0 001 @ 15113229 n 0000 | a period of five years -15205880 28 n 01 quattrocento 0 002 @ 15205532 n 0000 #p 15259812 n 0000 | the 15th century in Italian art and literature -15206004 28 n 01 twentieth_century 0 001 @ 15205532 n 0000 | the century from 1901 to 2000 -15206097 28 n 01 half-century 0 002 @ 15113229 n 0000 #p 15205532 n 0000 | a period of 50 years -15206195 28 n 01 quarter-century 0 002 @ 15113229 n 0000 #p 15205532 n 0000 | a period of 25 years -15206296 28 n 01 month 0 010 @ 15154774 n 0000 #p 15201505 n 0000 + 01969707 a 0101 %p 15206943 n 0000 %p 15207103 n 0000 %p 15207556 n 0000 ~ 15207872 n 0000 ~ 15208036 n 0000 ~ 15209174 n 0000 ~ 15209316 n 0000 | a time unit of approximately 30 days; "he was given a month to pay the bill" -15206590 28 n 01 quarter 2 002 @ 15113229 n 0000 + 02998046 a 0101 | a fourth part of a year; three months; "unemployment fell during the last quarter" -15206744 28 n 01 phase_of_the_moon 0 005 @ 15113229 n 0000 @ 04676540 n 0000 ~ 15206943 n 0000 ~ 15207103 n 0000 ~ 15207556 n 0000 | a time when the Moon presents a particular recurring appearance -15206943 28 n 02 new_moon 0 new_phase_of_the_moon 0 002 @ 15206744 n 0000 #p 15206296 n 0000 | the time at which the Moon appears as a narrow waxing crescent -15207103 28 n 01 half-moon 0 004 @ 15206744 n 0000 #p 15206296 n 0000 ~ 15207302 n 0000 ~ 15207430 n 0000 | the time at which the Moon is at first or last quarter when half its face is illuminated -15207302 28 n 01 first_quarter 0 001 @ 15207103 n 0000 | the first fourth of the Moon's period of revolution around the Earth -15207430 28 n 01 last_quarter 0 001 @ 15207103 n 0000 | the last fourth of the Moon's period of revolution around the Earth -15207556 28 n 04 full_moon 0 full-of-the-moon 0 full_phase_of_the_moon 0 full 0 003 @ 15206744 n 0000 #p 15206296 n 0000 ~ 15207770 n 0000 | the time when the Moon is fully illuminated; "the moon is at the full" -15207770 28 n 01 harvest_moon 0 001 @ 15207556 n 0000 | the full moon nearest the September equinox -15207872 28 n 04 lunar_month 0 moon 0 lunation 0 synodic_month 0 002 @ 15206296 n 0000 #p 15203017 n 0000 | the period between successive new moons (29.531 days) -15208036 28 n 01 anomalistic_month 0 001 @ 15206296 n 0000 | period between successive perigees; approximately 27.5546 days -15208162 28 n 01 sidereal_time 0 005 @ 15116724 n 0000 ~ 15208333 n 0000 ~ 15208898 n 0000 ~ 15209074 n 0000 ~ 15209174 n 0000 | measured by the diurnal motion of stars -15208333 28 n 02 sidereal_day 0 day 6 002 @ 15154774 n 0000 @ 15208162 n 0000 | the time for one complete rotation of the earth relative to a particular star, about 4 minutes shorter than a mean solar day -15208540 28 n 01 day 7 002 @ 15113229 n 0000 ~ 15208740 n 0000 | the period of time taken by a particular planet (e.g. Mars) to make a complete rotation on its axis; "how long is a day on Jupiter?" -15208740 28 n 01 lunar_day 0 001 @ 15208540 n 0000 | the period of time taken for the moon to make one full rotation on its axis (about 27.3 sidereal days) -15208898 28 n 01 sidereal_year 0 002 @ 15201505 n 0000 @ 15208162 n 0000 | the time for the earth to make one complete revolution around the sun, relative to the fixed stars -15209074 28 n 01 sidereal_hour 0 002 @ 15227846 n 0000 @ 15208162 n 0000 | 1/24 of a sidereal day -15209174 28 n 01 sidereal_month 0 002 @ 15206296 n 0000 @ 15208162 n 0000 | period between successive conjunctions with a star, 27.322 days -15209316 28 n 01 solar_month 0 001 @ 15206296 n 0000 | one-twelfth of a solar or tropical year -15209413 28 n 02 calendar_month 0 month 1 009 @ 15113229 n 0000 + 01969707 a 0201 %p 15136147 n 0000 ~ 15160579 n 0000 ~ 15175640 n 0000 ~ 15209706 n 0000 ~ 15214068 n 0000 ~ 15216966 n 0000 ~ 15219351 n 0000 | one of the twelve divisions of the calendar year; "he paid the bill last month" -15209706 28 n 01 Gregorian_calendar_month 0 014 @ 15209413 n 0000 #p 15174218 n 0000 ~ 15210045 n 0000 ~ 15210486 n 0000 ~ 15210870 n 0000 ~ 15211189 n 0000 ~ 15211484 n 0000 ~ 15211806 n 0000 ~ 15212167 n 0000 ~ 15212455 n 0000 ~ 15212739 n 0000 ~ 15213115 n 0000 ~ 15213406 n 0000 ~ 15213774 n 0000 | a month in the Gregorian calendar -15210045 28 n 02 January 0 Jan 0 012 @ 15209706 n 0000 #p 15174218 n 0000 %p 15159265 n 0000 %p 15182189 n 0000 %p 15182402 n 0000 %p 15183266 n 0000 %p 15185721 n 0000 %p 15192890 n 0000 %p 15194506 n 0000 %p 15194940 n 0000 %p 15196537 n 0000 %p 15210383 n 0000 | the first month of the year; begins 10 days after the winter solstice -15210383 28 n 01 mid-January 0 002 @ 15113229 n 0000 #p 15210045 n 0000 | the middle part of January -15210486 28 n 02 February 0 Feb 0 010 @ 15209706 n 0000 #p 15174218 n 0000 %p 15159426 n 0000 %p 15186681 n 0000 %p 15186871 n 0000 %p 15187077 n 0000 %p 15187250 n 0000 %p 15187451 n 0000 %p 15187619 n 0000 %p 15210765 n 0000 | the month following January and preceding March -15210765 28 n 01 mid-February 0 002 @ 15113229 n 0000 #p 15210486 n 0000 | the middle part of February -15210870 28 n 02 March 0 Mar 0 007 @ 15209706 n 0000 #p 15174218 n 0000 %p 15186147 n 0000 %p 15187800 n 0000 %p 15194739 n 0000 %p 15211090 n 0000 %p 15223574 n 0000 | the month following February and preceding April -15211090 28 n 01 mid-March 0 002 @ 15113229 n 0000 #p 15210870 n 0000 | the middle part of March -15211189 28 n 02 April 0 Apr 0 006 @ 15209706 n 0000 #p 15174218 n 0000 %p 15188505 n 0000 %p 15188688 n 0000 %p 15188852 n 0000 %p 15211385 n 0000 | the month following March and preceding May -15211385 28 n 01 mid-April 0 002 @ 15113229 n 0000 #p 15211189 n 0000 | the middle part of April -15211484 28 n 01 May 0 008 @ 15209706 n 0000 #p 15174218 n 0000 %p 15189033 n 0000 %p 15189249 n 0000 %p 15189347 n 0000 %p 15189452 n 0000 %p 15200164 n 0000 %p 15211711 n 0000 | the month following April and preceding June -15211711 28 n 01 mid-May 0 002 @ 15113229 n 0000 #p 15211484 n 0000 | the middle part of May -15211806 28 n 01 June 0 010 @ 15209706 n 0000 #p 15174218 n 0000 %p 15189684 n 0000 %p 15189838 n 0000 %p 15189982 n 0000 %p 15193776 n 0000 %p 15212070 n 0000 %p 15222012 n 0000 %p 15222202 n 0000 %p 15222369 n 0000 | the month following May and preceding July -15212070 28 n 01 mid-June 0 002 @ 15113229 n 0000 #p 15211806 n 0000 | the middle part of June -15212167 28 n 01 July 0 006 @ 15209706 n 0000 #p 15174218 n 0000 %p 15190084 n 0000 %p 15200314 n 0000 %p 15200493 n 0000 %p 15212358 n 0000 | the month following June and preceding August -15212358 28 n 01 mid-July 0 002 @ 15113229 n 0000 #p 15212167 n 0000 | the middle part of July -15212455 28 n 02 August 0 Aug 0 005 @ 15209706 n 0000 #p 15174218 n 0000 %p 15193908 n 0000 %p 15194194 n 0000 %p 15212638 n 0000 | the month following July and preceding September -15212638 28 n 01 mid-August 0 002 @ 15113229 n 0000 #p 15212455 n 0000 | the middle part of August -15212739 28 n 03 September 0 Sep 0 Sept 0 009 @ 15209706 n 0000 #p 15174218 n 0000 %p 15186412 n 0000 %p 15190520 n 0000 %p 15190652 n 0000 %p 15190779 n 0000 %p 15213008 n 0000 %p 15223750 n 0000 %p 15300051 n 0000 | the month following August and preceding October -15213008 28 n 01 mid-September 0 002 @ 15113229 n 0000 #p 15212739 n 0000 | the middle part of September -15213115 28 n 02 October 0 Oct 0 005 @ 15209706 n 0000 #p 15174218 n 0000 %p 15190895 n 0000 %p 15191080 n 0000 %p 15213303 n 0000 | the month following September and preceding November -15213303 28 n 01 mid-October 0 002 @ 15113229 n 0000 #p 15213115 n 0000 | the middle part of October -15213406 28 n 02 November 0 Nov 0 009 @ 15209706 n 0000 #p 15174218 n 0000 %p 15158816 n 0000 %p 15185837 n 0000 %p 15195059 n 0000 %p 15195477 n 0000 %p 15200896 n 0000 %p 15201116 n 0000 %p 15213669 n 0000 | the month following October and preceding December -15213669 28 n 01 mid-November 0 002 @ 15113229 n 0000 #p 15213406 n 0000 | the middle part of November -15213774 28 n 02 December 0 Dec 0 006 @ 15209706 n 0000 #p 15174218 n 0000 %p 15182053 n 0000 %p 15196186 n 0000 %p 15196537 n 0000 %p 15213963 n 0000 | the last (12th) month of the year -15213963 28 n 01 mid-December 0 002 @ 15113229 n 0000 #p 15213774 n 0000 | the middle part of December -15214068 28 n 01 Jewish_calendar_month 0 015 @ 15209413 n 0000 #p 15177866 n 0000 ~ 15214419 n 0000 ~ 15214639 n 0000 ~ 15214840 n 0000 ~ 15215068 n 0000 ~ 15215270 n 0000 ~ 15215480 n 0000 ~ 15215693 n 0000 ~ 15215816 n 0000 ~ 15215994 n 0000 ~ 15216189 n 0000 ~ 15216386 n 0000 ~ 15216563 n 0000 ~ 15216760 n 0000 | a month in the Jewish calendar -15214419 28 n 01 Tishri 0 003 @ 15214068 n 0000 #p 15177866 n 0000 %p 15161872 n 0000 | the first month of the civil year; the seventh month of the ecclesiastical year in the Jewish calendar (in September and October) -15214639 28 n 01 Heshvan 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the second month of the civil year; the eighth month of the ecclesiastical year in the Jewish calendar (in October and November) -15214840 28 n 02 Kislev 0 Chislev 0 003 @ 15214068 n 0000 #p 15177866 n 0000 %p 15199033 n 0000 | the third month of the civil year; the ninth month of the ecclesiastical year in the Jewish calendar (in November and December) -15215068 28 n 02 Tebet 0 Tevet 0 003 @ 15214068 n 0000 #p 15177866 n 0000 %p 15199033 n 0000 | the fourth month of the civil year; the tenth month of the ecclesiastical year (in December and January) -15215270 28 n 02 Shebat 0 Shevat 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the fifth month of the civil year: the eleventh month of the ecclesiastical year in the Jewish calendar (in January and February) -15215480 28 n 01 Adar 0 003 @ 15214068 n 0000 #p 15177866 n 0000 %p 15196870 n 0000 | the sixth month of the civil year; the twelfth month of the ecclesiastic year in the Jewish calendar (in February and March) -15215693 28 n 02 Veadar 0 Adar_Sheni 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | included seven times in every 19 years -15215816 28 n 02 Nisan 0 Nissan 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the seventh month of the civil year; the first month of the ecclesiastic year (in March and April) -15215994 28 n 02 Iyar 0 Iyyar 0 003 @ 15214068 n 0000 #p 15177866 n 0000 %p 15199406 n 0000 | the eighth month of the civil year; the second month of the ecclesiastical year (in April and May) -15216189 28 n 02 Sivan 0 Siwan 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the ninth month of the civil year; the third month of the ecclesiastical year in the Jewish calendar (in May and June) -15216386 28 n 02 Tammuz 0 Thammuz 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the tenth month of the civil year; the fourth month of the ecclesiastic year (in June and July) -15216563 28 n 02 Ab 0 Av 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the eleventh month of the civil year; the fifth month of the ecclesiastical year in the Jewish calendar (in July and August) -15216760 28 n 02 Elul 0 Ellul 0 002 @ 15214068 n 0000 #p 15177866 n 0000 | the twelfth month of the civil year; the sixth month of the ecclesiastical year in the Jewish calendar (in August and September) -15216966 28 n 01 Islamic_calendar_month 0 014 @ 15209413 n 0000 #p 15178841 n 0000 ~ 15217308 n 0000 ~ 15217443 n 0000 ~ 15217563 n 0000 ~ 15217674 n 0000 ~ 15217787 n 0000 ~ 15217911 n 0000 ~ 15218037 n 0000 ~ 15218149 n 0000 ~ 15218272 n 0000 ~ 15218551 n 0000 ~ 15218663 n 0000 ~ 15218798 n 0000 | any lunar month in the Muslim calendar -15217308 28 n 03 Muharram 0 Moharram 0 Muharrum 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the first month of the Islamic calendar -15217443 28 n 02 Safar 0 Saphar 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the second month of the Islamic calendar -15217563 28 n 01 Rabi_I 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the third month of the Islamic calendar -15217674 28 n 01 Rabi_II 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the fourth month of the Islamic calendar -15217787 28 n 02 Jumada_I 0 Jomada_I 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the fifth month of the Islamic calendar -15217911 28 n 02 Jumada_II 0 Jomada_II 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the sixth month of the Islamic calendar -15218037 28 n 01 Rajab 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the seventh month of the Islamic calendar -15218149 28 n 02 Sha'ban 0 Shaaban 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the eighth month of the Islamic calendar -15218272 28 n 01 Ramadan 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the ninth month of the Islamic calendar; the month of fasting; the holiest period for the Islamic faith -15218448 28 n 01 Id_al-Fitr 0 001 @ 15161631 n 0000 | a Muslim day of feasting at the end of Ramadan -15218551 28 n 01 Shawwal 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the tenth month of the Islamic calendar -15218663 28 n 02 Dhu'l-Qa'dah 0 Dhu_al-Qadah 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the eleventh month of the Islamic calendar -15218798 28 n 04 Dhu'l-Hijja 0 Dhu'l-Hijjah 0 Dhu_al-Hijja 0 Dhu_al-Hijjah 0 002 @ 15216966 n 0000 #p 15178841 n 0000 | the twelfth month of the Islamic calendar and the season of the hajj; has one extra day in leap years -15219022 28 n 02 Id_al-Adha 0 Feast_of_Sacrifice 0 001 @ 15161631 n 0000 | the 10th day of Dhu'l-Hijja; all Muslims attend a service in the mosques and those who are not pilgrims perform a ritual slaughter of a sheep (commemorating God's ransom of Abraham's son from sacrifice) and give at least a third of the meat to charity -15219351 28 n 01 Hindu_calendar_month 0 014 @ 15209413 n 0000 #p 15179415 n 0000 ~ 15219694 n 0000 ~ 15220027 n 0000 ~ 15220149 n 0000 ~ 15220267 n 0000 ~ 15220385 n 0000 ~ 15220503 n 0000 ~ 15220625 n 0000 ~ 15220743 n 0000 ~ 15220864 n 0000 ~ 15220985 n 0000 ~ 15221099 n 0000 ~ 15221474 n 0000 | any lunisolar month in the Hindu calendar -15219694 28 n 02 Chait 0 Caitra 0 003 @ 15219351 n 0000 #p 15179415 n 0000 %p 15219874 n 0000 | the first Hindu calendar month (corresponding to March in the Gregorian calendar) -15219874 28 n 01 Ramanavami 0 002 @ 15183428 n 0000 #p 15219694 n 0000 | Hindu lunar holiday (on the 9th day of Caitra) to celebrate the birth of Rama -15220027 28 n 02 Baisakh 0 Vaisakha 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the second month of the Hindu calendar -15220149 28 n 02 Jeth 0 Jyaistha 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the third month of the Hindu calendar -15220267 28 n 02 Asarh 0 Asadha 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the fourth month of the Hindu calendar -15220385 28 n 02 Sawan 0 Sravana 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the fifth month of the Hindu calendar -15220503 28 n 02 Bhadon 0 Bhadrapada 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the sixth month of the Hindu calendar -15220625 28 n 02 Asin 0 Asvina 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the seventh month of the Hindu calendar -15220743 28 n 02 Kartik 0 Karttika 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the eighth month of the Hindu calendar -15220864 28 n 02 Aghan 0 Margasivsa 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the ninth month of the Hindu calendar -15220985 28 n 02 Pus 0 Pansa 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the tenth month of the Hindu calendar -15221099 28 n 02 Magh 0 Magha 0 003 @ 15219351 n 0000 #p 15179415 n 0000 %p 15221286 n 0000 | the eleventh month of the Hindu calendar; corresponds to January in the Gregorian calendar -15221286 28 n 01 Mesasamkranti 0 002 @ 15183428 n 0000 #p 15221099 n 0000 | Hindu solar holiday at the beginning of the new astrological year when the sun enters the constellation Aries -15221474 28 n 02 Phagun 0 Phalguna 0 002 @ 15219351 n 0000 #p 15179415 n 0000 | the twelfth month of the Hindu calendar -15221596 28 n 01 saint's_day 0 003 @ 15157225 n 0000 #p 15173064 n 0000 ~ 15221718 n 0000 | a day commemorating a saint -15221718 28 n 01 name_day 0 001 @ 15221596 n 0000 | the feast day of a saint whose name one bears -15221818 28 n 01 solstice 0 003 @ 15116724 n 0000 ~ 15222012 n 0000 ~ 15223190 n 0000 | either of the two times of the year when the sun is at its greatest distance from the celestial equator -15222012 28 n 03 summer_solstice 0 June_21 0 midsummer 0 004 @ 15221818 n 0000 #p 15211806 n 0000 #p 15237250 n 0000 ! 15223190 n 0101 | June 21, when the sun is at its northernmost point -15222202 28 n 04 Midsummer_Day 0 Midsummer's_Day 0 St_John's_Day 0 June_24 0 002 @ 15160866 n 0000 #p 15211806 n 0000 | a quarter day in England, Wales, and Ireland -15222369 28 n 05 Midsummer_Eve 0 Midsummer_Night 0 St_John's_Eve 0 St_John's_Night 0 June_23 0 002 @ 15157225 n 0000 #p 15211806 n 0000 | the night before Midsummer Day -15222540 28 n 01 school_day 0 001 @ 15157225 n 0000 | any day on which school is in session; "go to bed early because tomorrow is a school day" -15222686 28 n 01 speech_day 0 002 @ 15157225 n 0000 ;r 08860123 n 0000 | an annual day in the schools when speeches are made and prizes are distributed -15222840 28 n 02 washday 0 washing_day 0 001 @ 15157225 n 0000 | a day set aside for doing household laundry -15222951 28 n 01 wedding_day 0 002 @ 15157225 n 0000 %p 15223048 n 0000 | the day of a wedding -15223048 28 n 01 wedding_night 0 002 @ 15167027 n 0000 #p 15222951 n 0000 | the night after the wedding when bride and groom sleep together -15223190 28 n 01 winter_solstice 0 003 @ 15221818 n 0000 #p 15237782 n 0000 ! 15222012 n 0101 | December 22, when the sun is at its southernmost point -15223343 28 n 01 equinox 0 004 @ 15116724 n 0000 + 02721618 a 0101 ~ 15223574 n 0000 ~ 15223750 n 0000 | either of two times of the year when the sun crosses the plane of the earth's equator and day and night are of equal length -15223574 28 n 03 vernal_equinox 0 March_equinox 0 spring_equinox 0 005 @ 15223343 n 0000 #p 15237044 n 0000 #p 15210870 n 0000 ! 15223750 n 0101 ~ 15223916 n 0000 | March 21 -15223750 28 n 03 autumnal_equinox 0 September_equinox 0 fall_equinox 0 004 @ 15223343 n 0000 #p 15236859 n 0000 #p 15212739 n 0000 ! 15223574 n 0101 | September 22 -15223916 28 n 03 Noruz 0 Nowruz 0 Nowrooz 0 002 @ 15223574 n 0000 ;c 06974127 n 0000 | (Persian) the new year holiday in Iran and Azerbaijan and Afghanistan and Pakistan and parts of India and among the Kurds; comes at the vernal equinox -15224156 28 n 01 time_limit 0 002 @ 15113229 n 0000 ~ 15224293 n 0000 | a time period within which something must be done or completed -15224293 28 n 01 limitation 0 004 @ 15224156 n 0000 ;c 08441203 n 0000 + 00233335 v 0104 + 00235368 v 0101 | (law) a time period after which suits cannot be brought; "statute of limitations" -15224486 28 n 01 term 0 005 @ 15113229 n 0000 ~ 15224692 n 0000 ~ 15225249 n 0000 %p 15225668 n 0000 ~ 15291498 n 0000 | a limited period of time; "a prison term"; "he left school before the end of term" -15224692 28 n 03 prison_term 0 sentence 0 time 1 004 @ 15224486 n 0000 + 00906735 v 0201 ~ 15224978 n 0000 ~ 15225076 n 0000 | the period of time a prisoner is imprisoned; "he served a prison term of 15 months"; "his sentence was 5 to 10 years"; "he is doing time in the county jail" -15224978 28 n 01 hard_time 0 001 @ 15224692 n 0000 | a term served in a maximum security prison -15225076 28 n 02 life_sentence 0 life 3 002 @ 15224692 n 0000 + 10261041 n 0201 | a prison term lasting as long as the prisoner lives; "he got life for killing the guard" -15225249 28 n 04 school_term 0 academic_term 0 academic_session 0 session 0 006 @ 15224486 n 0000 #p 15203565 n 0000 ~ 15225526 n 0000 ~ 15225797 n 0000 ~ 15225929 n 0000 ~ 15226046 n 0000 | the time during which a school holds classes; "they had to shorten the school term" -15225526 28 n 01 summer_school 0 001 @ 15225249 n 0000 | an academic session during the summer; usually for remedial or supplementary study -15225668 28 n 01 midterm 0 002 @ 15180528 n 0000 #p 15224486 n 0000 | middle of an academic term or a political term in office -15225797 28 n 01 semester 1 003 @ 15225249 n 0000 #p 15203565 n 0000 + 01970136 a 0101 | one of two divisions of an academic year -15225929 28 n 01 trimester 1 002 @ 15225249 n 0000 #p 15203565 n 0000 | one of three divisions of an academic year -15226046 28 n 01 quarter 0 002 @ 15225249 n 0000 #p 15203565 n 0000 | one of four periods into which the school year is divided; "the fall quarter ends at Christmas" -15226214 28 n 02 gestation 0 gestation_period 0 006 @ 15116532 n 0000 + 02983097 a 0101 + 00059019 v 0104 %p 15226451 n 0000 %p 15226625 n 0000 %p 15226732 n 0000 | the period during which an embryo develops (about 266 days in humans) -15226451 28 n 02 term 1 full_term 0 002 @ 15180528 n 0000 #p 15226214 n 0000 | the end of gestation or point at which birth is imminent; "a healthy baby born at full term" -15226625 28 n 01 midterm 1 002 @ 15180528 n 0000 #p 15226214 n 0000 | the middle of the gestation period -15226732 28 n 01 trimester 0 005 @ 15113229 n 0000 #p 15226214 n 0000 ~ 15226972 n 0000 ~ 15227133 n 0000 ~ 15227261 n 0000 | a period of three months; especially one of the three three-month periods into which human pregnancy is divided -15226972 28 n 01 first_trimester 0 001 @ 15226732 n 0000 | time period extending from the first day of the last menstrual period through 12 weeks of gestation -15227133 28 n 01 second_trimester 0 001 @ 15226732 n 0000 | time period extending from the 13th to the 27th week of gestation -15227261 28 n 01 third_trimester 0 001 @ 15226732 n 0000 | time period extending from the 28th week of gestation until delivery -15227391 28 n 01 refractory_period 0 002 @ 15116532 n 0000 ;c 06078978 n 0000 | (neurology) the time after a neuron fires or a muscle fiber contracts during which a stimulus will not evoke a response -15227593 28 n 02 bell 0 ship's_bell 0 002 @ 15154774 n 0000 ;c 00314469 n 0000 | (nautical) each of the eight half-hour units of nautical time signaled by strokes of a ship's bell; eight bells signals 4:00, 8:00, or 12:00 o'clock, either a.m. or p.m. -15227846 28 n 03 hour 0 hr 0 60_minutes 0 010 @ 15154774 n 0000 #p 15155220 n 0000 + 01968811 a 0101 + 02743112 a 0101 ~ 15209074 n 0000 %p 15228162 n 0000 %p 15228267 n 0000 ~ 15230482 n 0000 %p 15234764 n 0000 %p 15234942 n 0000 | a period of time equal to 1/24th of a day; "the job will take more than an hour" -15228162 28 n 02 half-hour 0 30_minutes 0 002 @ 15154774 n 0000 #p 15227846 n 0000 | a half of an hour -15228267 28 n 02 quarter-hour 0 15_minutes 0 002 @ 15154774 n 0000 #p 15227846 n 0000 | a quarter of an hour -15228378 28 n 02 hour 1 time_of_day 0 018 @ 15129927 n 0000 + 02743112 a 0101 ~ 15165490 n 0000 ~ 15165637 n 0000 ~ 15168080 n 0000 ~ 15168185 n 0000 ~ 15168369 n 0000 ~ 15168475 n 0000 ~ 15168665 n 0000 ~ 15168790 n 0000 ~ 15169136 n 0000 ~ 15169248 n 0000 ~ 15169421 n 0000 ~ 15228787 n 0000 ~ 15229019 n 0000 ~ 15229144 n 0000 ~ 15229300 n 0000 ~ 15229408 n 0000 | clock time; "the hour is getting late" -15228787 28 n 01 none 0 001 @ 15228378 n 0000 | a canonical hour that is the ninth hour of the day counting from sunrise -15228910 28 n 01 hour 2 001 @ 15113229 n 0000 | a special and memorable period; "it was their finest hour" -15229019 28 n 01 happy_hour 0 001 @ 15228378 n 0000 | the time of day when a bar sells alcoholic drinks at a reduced price -15229144 28 n 01 rush_hour 0 001 @ 15228378 n 0000 | the times at the beginning and end of the working day when many people are traveling to or from work -15229300 28 n 01 zero_hour 0 001 @ 15228378 n 0000 | the time set for the start of an action or operation -15229408 28 n 01 canonical_hour 0 009 @ 15228378 n 0000 ;c 08083599 n 0000 ~ 15229677 n 0000 ~ 15229784 n 0000 ~ 15229875 n 0000 ~ 15229974 n 0000 ~ 15230076 n 0000 ~ 15230180 n 0000 ~ 15230363 n 0000 | (Roman Catholic Church) one of seven specified times for prayer -15229677 28 n 02 matins 0 morning_prayer 0 001 @ 15229408 n 0000 | the first canonical hour; at daybreak -15229784 28 n 01 prime 1 001 @ 15229408 n 0000 | the second canonical hour; about 6 a.m. -15229875 28 n 02 terce 0 tierce 0 001 @ 15229408 n 0000 | the third canonical hour; about 9 a.m. -15229974 28 n 01 sext 0 001 @ 15229408 n 0000 | the fourth of the seven canonical hours; about noon -15230076 28 n 01 nones 0 001 @ 15229408 n 0000 | the fifth of the seven canonical hours; about 3 p.m. -15230180 28 n 02 vespers 0 evensong 0 001 @ 15229408 n 0000 | the sixth of the seven canonical hours of the divine office; early evening; now often made a public service on Sundays -15230363 28 n 02 compline 0 complin 0 001 @ 15229408 n 0000 | last of the seven canonical hours just before retiring -15230482 28 n 02 man_hour 0 person_hour 0 002 @ 15227846 n 0000 #p 15136723 n 0000 | a time unit used in industry for measuring work -15230617 28 n 01 silly_season 0 001 @ 15113229 n 0000 | a time usually late summer characterized by exaggerated news stories about frivolous matters for want of real news -15230790 28 n 01 Golden_Age 0 002 @ 15113229 n 0000 ;c 07978924 n 0000 | (classical mythology) the first and best age of the world, a time of ideal happiness, prosperity, and innocence; by extension, any flourishing and outstanding period -15231031 28 n 01 silver_age 0 002 @ 15113229 n 0000 ;c 07978924 n 0000 | (classical mythology) the second age of the world, characterized by opulence and irreligion; by extension, a period secondary in achievement to a golden age -15231263 28 n 01 bronze_age 0 002 @ 15113229 n 0000 ;c 07978924 n 0000 | (classical mythology) the third age of the world, marked by war and violence -15231415 28 n 01 Bronze_Age 1 003 @i 15113229 n 0000 #p 15254550 n 0000 ;c 06144081 n 0000 | (archeology) a period between the Stone and Iron Ages, characterized by the manufacture and use of bronze tools and weapons -15231634 28 n 01 iron_age 0 002 @ 15113229 n 0000 ;c 07978924 n 0000 | (classical mythology) the last and worst age of the world -15231765 28 n 01 Iron_Age 1 003 @i 15113229 n 0000 #p 15254550 n 0000 ;c 06144081 n 0000 | (archeology) the period following the Bronze Age; characterized by rapid spread of iron tools and weapons -15231964 28 n 01 Stone_Age 0 007 @i 15113229 n 0000 #p 15254550 n 0000 ;c 06144081 n 0000 %p 15232236 n 0000 %p 15232406 n 0000 %p 15233239 n 0000 %p 15233411 n 0000 | (archeology) the earliest known period of human culture, characterized by the use of stone implements -15232236 28 n 02 Eolithic_Age 0 Eolithic 0 002 @i 15113229 n 0000 #p 15231964 n 0000 | the earliest part of the Stone Age marked by the earliest signs of human culture -15232406 28 n 03 Paleolithic_Age 0 Paleolithic 0 Palaeolithic 0 005 @i 15113229 n 0000 #p 15231964 n 0000 %p 15232712 n 0000 %p 15232899 n 0000 %p 15233047 n 0000 | second part of the Stone Age beginning about 750,00 to 500,000 years BC and lasting until the end of the last ice age about 8,500 years BC -15232712 28 n 01 Lower_Paleolithic 0 002 @i 15113229 n 0000 #p 15232406 n 0000 | the oldest part of the Paleolithic Age with the emergence of the hand ax; ended about 120,000 years ago -15232899 28 n 01 Middle_Paleolithic 0 002 @i 15113229 n 0000 #p 15232406 n 0000 | the time period of Neanderthal man; ended about 35,000 years BC -15233047 28 n 01 Upper_Paleolithic 0 002 @i 15113229 n 0000 #p 15232406 n 0000 | the time period during which only modern Homo sapiens was known to have existed; ended about 10,000 years BC -15233239 28 n 03 Mesolithic_Age 0 Mesolithic 0 Epipaleolithic 0 002 @i 15113229 n 0000 #p 15231964 n 0000 | middle part of the Stone Age beginning about 15,000 years ago -15233411 28 n 03 Neolithic_Age 0 Neolithic 0 New_Stone_Age 0 002 @i 15113229 n 0000 #p 15231964 n 0000 | latest part of the Stone Age beginning about 10,000 BC in the Middle East (but later elsewhere) -15233614 28 n 02 great_year 0 Platonic_year 0 001 @ 15113229 n 0000 | time required for one complete cycle of the precession of the equinoxes, about 25,800 years -15233778 28 n 01 regulation_time 0 004 @ 15113229 n 0000 #p 00463246 n 0000 ;c 00523513 n 0000 ! 15233989 n 0101 | (sports) the normal prescribed duration of a game; "the game was finished in regulation time" -15233989 28 n 02 overtime 0 extra_time 0 007 @ 15113229 n 0000 #p 00463246 n 0000 ! 15233778 n 0101 ~ 15234212 n 0000 ~ 15234348 n 0000 ~ 15234469 n 0000 ~ 15234587 n 0000 | playing time beyond regulation, to break a tie -15234212 28 n 01 extra_innings 0 001 @ 15233989 n 0000 | overtime play until one team is ahead at the end of an inning; e.g. baseball -15234348 28 n 01 overtime_period 0 001 @ 15233989 n 0000 | a period of overtime play to resolve a tie; e.g. basketball -15234469 28 n 01 tiebreaker 0 001 @ 15233989 n 0000 | overtime play in order to break a tie; e.g. tennis and soccer -15234587 28 n 01 sudden_death 0 002 @ 15233989 n 0000 ;c 00523513 n 0000 | (sports) overtime in which play is stopped as soon as one contestant scores; e.g. football and golf -15234764 28 n 02 minute 0 min 0 003 @ 15154774 n 0000 #p 15227846 n 0000 %p 15235126 n 0000 | a unit of time equal to 60 seconds or 1/60th of an hour; "he ran a 4 minute mile" -15234942 28 n 01 quarter 3 002 @ 15154774 n 0000 #p 15227846 n 0000 | a unit of time equal to 15 minutes or a quarter of an hour; "it's a quarter til 4"; "a quarter after 4 o'clock" -15235126 28 n 03 second 0 sec 0 s 0 004 @ 15154774 n 0000 #p 15234764 n 0000 ~ 15235334 n 0000 %p 15236338 n 0000 | 1/60 of a minute; the basic unit of time adopted under the Systeme International d'Unites -15235334 28 n 01 leap_second 0 001 @ 15235126 n 0000 | a second (as measured by an atomic clock) added to or subtracted from Greenwich Mean Time in order to compensate for slowing in the Earth's rotation -15235540 28 n 01 attosecond 0 002 @ 15154774 n 0000 #p 15235687 n 0000 | one quintillionth (10^-18) of a second; one thousandth of a femtosecond -15235687 28 n 01 femtosecond 0 003 @ 15154774 n 0000 #p 15235853 n 0000 %p 15235540 n 0000 | one quadrillionth (10^-15) of a second; one thousandth of a picosecond -15235853 28 n 01 picosecond 0 003 @ 15154774 n 0000 #p 15236015 n 0000 %p 15235687 n 0000 | one trillionth (10^-12) of a second; one thousandth of a nanosecond -15236015 28 n 01 nanosecond 0 003 @ 15154774 n 0000 #p 15236176 n 0000 %p 15235853 n 0000 | one billionth (10^-9) of a second; one thousandth of a microsecond -15236176 28 n 01 microsecond 0 003 @ 15154774 n 0000 #p 15236338 n 0000 %p 15236015 n 0000 | one millionth (10^-6) of a second; one thousandth of a millisecond -15236338 28 n 02 millisecond 0 msec 0 003 @ 15154774 n 0000 #p 15235126 n 0000 %p 15236176 n 0000 | one thousandth (10^-3) of a second -15236475 28 n 02 season 0 time_of_year 0 010 @ 15113229 n 0000 #p 15201505 n 0000 ~ 00921790 n 0000 ~ 00921926 n 0000 ~ 15236859 n 0000 ~ 15237044 n 0000 ~ 15237250 n 0000 ~ 15237782 n 0000 ~ 15238895 n 0000 ~ 15239174 n 0000 | one of the natural periods into which the year is divided by the equinoxes and solstices or atmospheric conditions; "the regular sequence of the seasons" -15236859 28 n 02 fall 0 autumn 0 004 @ 15236475 n 0000 + 01255296 a 0201 %p 15185996 n 0000 %p 15223750 n 0000 | the season when the leaves fall from the trees; "in the fall of 1973" -15237044 28 n 02 spring 0 springtime 0 002 @ 15236475 n 0000 %p 15223574 n 0000 | the season of growth; "the emerging buds were a sure sign of spring"; "he will hold office until the spring of next year" -15237250 28 n 02 summer 0 summertime 0 006 @ 15236475 n 0000 + 01254784 a 0101 + 00408448 v 0101 + 02709774 v 0101 %p 15222012 n 0000 %p 15237567 n 0000 | the warmest season of the year; in the northern hemisphere it extends from the summer solstice to the autumnal equinox; "they spent a lazy summer at the shore" -15237567 28 n 03 dog_days 0 canicule 0 canicular_days 0 004 @ 15113229 n 0000 #p 15237250 n 0000 + 02677549 a 0201 + 02677332 a 0201 | the hot period between early July and early September; a period of inactivity -15237782 28 n 02 winter 0 wintertime 0 007 @ 15236475 n 0000 + 01255807 a 0101 + 01255807 a 0102 + 02709573 v 0101 + 00408272 v 0101 %p 15223190 n 0000 %p 15238074 n 0000 | the coldest season of the year; in the northern hemisphere it extends from the winter solstice to the vernal equinox -15238074 28 n 01 midwinter 0 002 @ 15113229 n 0000 #p 15237782 n 0000 | the middle of winter -15238169 28 n 01 growing_season 0 001 @ 15239579 n 0000 | the season during which a crop grows best -15238271 28 n 01 seedtime 0 001 @ 15239579 n 0000 | the time during which seeds should be planted -15238371 28 n 01 sheepshearing 0 001 @ 15239579 n 0000 | the time or season when sheep are sheared -15238472 28 n 01 holiday_season 0 001 @ 15239579 n 0000 | a time when many people take holidays -15238570 28 n 02 high_season 0 peak_season 0 002 @ 15239579 n 0000 ! 15238761 n 0101 | the season when travel is most active and rates are highest; "they traveled to Europe in high season" -15238761 28 n 01 off-season 0 002 @ 15239579 n 0000 ! 15238570 n 0101 | the season when travel is least active and rates are lowest -15238895 28 n 01 rainy_season 0 003 @ 15236475 n 0000 ! 15239174 n 0101 ~ 15239033 n 0000 | one of the two seasons in tropical climates -15239033 28 n 01 monsoon 0 001 @ 15238895 n 0000 | rainy season in southern Asia when the southwestern monsoon blows, bringing heavy rains -15239174 28 n 01 dry_season 0 002 @ 15236475 n 0000 ! 15238895 n 0101 | one of the two seasons in tropical climates -15239292 28 n 01 season 1 010 @ 15113229 n 0000 ~ 15186596 n 0000 ~ 15190424 n 0000 ~ 15191587 n 0000 ~ 15194860 n 0000 ~ 15195388 n 0000 ~ 15196537 n 0000 ~ 15241507 n 0000 ~ 15241777 n 0000 ~ 15242029 n 0000 | a recurrent time marked by major holidays; "it was the Christmas season" -15239579 28 n 01 season 2 018 @ 15113229 n 0000 ~ 15238169 n 0000 ~ 15238271 n 0000 ~ 15238371 n 0000 ~ 15238472 n 0000 ~ 15238570 n 0000 ~ 15238761 n 0000 ~ 15240119 n 0000 ~ 15240389 n 0000 ~ 15240633 n 0000 ~ 15240733 n 0000 ~ 15240888 n 0000 ~ 15240998 n 0000 ~ 15241094 n 0000 ~ 15241186 n 0000 ~ 15241311 n 0000 ~ 15241405 n 0000 ~ 15242719 n 0000 | a period of the year marked by special events or activities in some field; "he celebrated his 10th season with the ballet company"; "she always looked forward to the avocado season" -15240119 28 n 01 preseason 0 002 @ 15239579 n 0000 ~ 15240291 n 0000 | a period prior to the beginning of the regular season which is devoted to training and preparation -15240291 28 n 01 spring_training 0 001 @ 15240119 n 0000 | preseason training during the spring -15240389 28 n 01 baseball_season 0 002 @ 15239579 n 0000 ~ 15240503 n 0000 | the season when baseball is played -15240503 28 n 01 triple-crown_season 0 001 @ 15240389 n 0000 | a season of baseball during which a player wins the triple crown -15240633 28 n 01 basketball_season 0 001 @ 15239579 n 0000 | the season when basketball is played -15240733 28 n 01 exhibition_season 0 001 @ 15239579 n 0000 | the time before the regular games begin when football or baseball teams play practice games -15240888 28 n 01 fishing_season 0 001 @ 15239579 n 0000 | the season during which it is legal to catch fish -15240998 28 n 01 football_season 0 001 @ 15239579 n 0000 | the season when football is played -15241094 28 n 01 hockey_season 0 001 @ 15239579 n 0000 | the season when hockey is played -15241186 28 n 01 hunting_season 0 001 @ 15239579 n 0000 | the season during which it is legal to kill a particular species -15241311 28 n 01 social_season 0 001 @ 15239579 n 0000 | the season for major social events -15241405 28 n 01 theatrical_season 0 001 @ 15239579 n 0000 | the season when new plays are produced -15241507 28 n 01 Advent 1 003 @ 15239292 n 0000 #p 15181718 n 0000 %p 15241655 n 0000 | the season including the four Sundays preceding Christmas -15241655 28 n 01 Advent_Sunday 0 002 @ 15184170 n 0000 #p 15241507 n 0000 | the first of the four Sundays during Advent -15241777 28 n 01 Shrovetide 0 003 @ 15239292 n 0000 #p 15181718 n 0000 %p 15241898 n 0000 | immediately preceding Lent -15241898 28 n 03 Mardi_Gras 0 Shrove_Tuesday 0 pancake_day 0 002 @ 15184170 n 0000 #p 15241777 n 0000 | the last day before Lent -15242029 28 n 02 Lent 0 Lententide 0 004 @ 15239292 n 0000 #p 15181718 n 0000 %p 15191827 n 0000 %p 15195622 n 0000 | a period of 40 weekdays from Ash Wednesday to Holy Saturday -15242209 28 n 02 Pentecost 1 Whitsunday 0 003 @ 15160866 n 0000 #p 15242719 n 0000 + 03098491 a 0101 | seventh Sunday after Easter; commemorates the emanation of the Holy Spirit to the Apostles; a quarter day in Scotland -15242432 28 n 02 Whitmonday 0 Whitsun_Monday 0 002 @ 15163979 n 0000 #p 15242719 n 0000 | the day after Whitsunday; a legal holiday in England and Wales and Ireland -15242599 28 n 02 Whit-Tuesday 0 Whitsun_Tuesday 0 002 @ 15164105 n 0000 #p 15242719 n 0000 | the day after Whitmonday -15242719 28 n 03 Whitsun 0 Whitsuntide 0 Whitweek 0 005 @ 15239579 n 0000 #p 15181718 n 0000 %p 15242209 n 0000 %p 15242432 n 0000 %p 15242599 n 0000 | Christian holiday; the week beginning on Whitsunday (especially the first 3 days) -15242955 28 n 03 long_time 0 age 3 years 1 005 @ 15113229 n 0000 ~ 15243202 n 0000 ~ 15243590 n 0000 ~ 15244200 n 0000 ~ 15244351 n 0000 | a prolonged period of time; "we've known each other for ages"; "I haven't been there for years and years" -15243202 28 n 01 month_of_Sundays 0 002 @ 15242955 n 0000 ;u 07075172 n 0000 | a time perceived as long; "I hadn't seen him in a month of Sundays" -15243351 28 n 02 long_run 0 long_haul 0 001 @ 15113229 n 0000 | a period of time sufficient for factors to work themselves out; "in the long run we will win"; "in the long run we will all be dead"; "he performed well over the long haul" -15243590 28 n 02 eon 0 aeon 0 002 @ 15242955 n 0000 + 01755024 a 0103 | an immeasurably long period of time; "oh, that happened eons ago" -15243730 28 n 02 eon 1 aeon 1 009 @ 15116283 n 0000 + 02720312 a 0202 + 02720312 a 0101 ~i 15124183 n 0000 ~i 15128711 n 0000 ~i 15128997 n 0000 ~i 15129220 n 0000 ~i 15129572 n 0000 %p 15248020 n 0000 | the longest division of geological time -15243976 28 n 02 eternity 0 infinity 0 003 @ 00028270 n 0000 + 01007354 a 0201 ~ 15244094 n 0000 | time without end -15244094 28 n 01 alpha_and_omega 0 001 @ 15243976 n 0000 | the first and last; signifies God's eternity -15244200 28 n 01 blue_moon 0 002 @ 15242955 n 0000 ;u 07075172 n 0000 | a long time; "something that happens once in blue moon almost never happens" -15244351 28 n 01 year_dot 0 002 @ 15242955 n 0000 ;r 08860123 n 0000 | as long ago as anyone can remember; "he has been a conductor since the year dot" -15244505 28 n 02 drought 0 drouth 0 001 @ 15113229 n 0000 | a prolonged shortage; "when England defeated Pakistan it ended a ten-year drought" -15244650 28 n 04 moment 0 minute 2 second 2 instant 0 009 @ 15180528 n 0000 + 00979031 a 0401 ~ 06373747 n 0000 ~ 15244942 n 0000 ~ 15245144 n 0000 ~ 15245244 n 0000 ~ 15245382 n 0000 ~ 15245515 n 0000 ~ 15246135 n 0000 | a particular point in time; "the moment he arrived the party began" -15244942 28 n 02 eleventh_hour 0 last_minute 0 001 @ 15244650 n 0000 | the latest possible moment; "money became available at the eleventh hour"; "at the last minute the government changed the rules" -15245144 28 n 01 moment_of_truth 0 001 @ 15244650 n 0000 | a crucial moment on which much depends -15245244 28 n 01 moment_of_truth 1 002 @ 15244650 n 0000 #p 00452034 n 0000 | the moment in a bullfight when the matador kills the bull -15245382 28 n 01 pinpoint 0 001 @ 15244650 n 0000 | a very brief moment; "they were strangers sharing a pinpoint of time together" -15245515 28 n 01 time 6 007 @ 15244650 n 0000 + 01661529 a 0101 + 00296973 v 0101 + 00702226 v 0101 + 00678547 v 0101 ~ 15245711 n 0000 ~ 15245829 n 0000 | a suitable moment; "it is time to go" -15245711 28 n 01 high_time 0 001 @ 15245515 n 0000 | the latest possible moment; "it is high time you went to work" -15245829 28 n 01 occasion 0 003 @ 15245515 n 0000 + 01646528 v 0101 ~ 15245990 n 0000 | the time of a particular event; "on the occasion of his 60th birthday" -15245990 28 n 01 meal 0 001 @ 15245829 n 0000 | any of the occasions for eating food that occur by custom or habit at more or less fixed times -15246135 28 n 01 psychological_moment 0 001 @ 15244650 n 0000 | the most appropriate time for achieving a desired effect -15246258 28 n 01 wee 0 002 @ 15122231 n 0000 ;r 08890097 n 0000 | a short time; "bide a wee" -15246353 28 n 04 while 0 piece 0 spell 1 patch 0 004 @ 15122231 n 0000 ~ 15246683 n 0000 ~ 15246775 n 0000 ~ 15299097 n 0000 | a period of indeterminate length (usually short) marked by some action or condition; "he was here for a little while"; "I need to rest for a piece"; "a spell of good weather"; "a patch of bad weather" -15246683 28 n 02 cold_spell 0 cold_snap 0 001 @ 15246353 n 0000 | a spell of cold weather -15246775 28 n 01 hot_spell 0 001 @ 15246353 n 0000 | a spell of hot weather -15246853 28 n 05 moment 1 mo 0 minute 1 second 1 bit 0 005 @ 15122231 n 0000 ;u 08860123 n 0204 + 01443097 a 0104 + 01443097 a 0103 ~ 15247110 n 0000 | an indefinitely short time; "wait just a moment"; "in a mo"; "it only takes a minute"; "in just a bit" -15247110 28 n 0a blink_of_an_eye 0 flash 0 heartbeat 0 instant 1 jiffy 0 split_second 0 trice 0 twinkling 0 wink 0 New_York_minute 0 002 @ 15246853 n 0000 + 02138611 v 0201 | a very short time (as the time it takes the eye to blink or the heart to beat); "if I had the chance I'd do it in a flash" -15247410 28 n 01 ephemera 0 002 @ 15122231 n 0000 + 01756292 a 0101 | something transitory; lasting a day -15247518 28 n 02 period 3 geological_period 0 017 @ 15116283 n 0000 #p 15248020 n 0000 ~i 15124545 n 0000 ~i 15125097 n 0000 ~i 15126361 n 0000 ~i 15126595 n 0000 ~i 15126750 n 0000 ~i 15127165 n 0000 ~i 15127307 n 0000 ~i 15127507 n 0000 ~i 15127729 n 0000 ~i 15127982 n 0000 ~i 15128200 n 0000 ~i 15128363 n 0000 ~i 15128549 n 0000 %p 15248269 n 0000 ~ 15255195 n 0000 | a unit of geological time during which a system of rocks formed; "ganoid fishes swarmed during the earlier geological periods" -15248020 28 n 02 era 1 geological_era 0 006 @ 15116283 n 0000 #p 15243730 n 0000 ~i 15124361 n 0000 ~i 15126175 n 0000 ~i 15126931 n 0000 %p 15247518 n 0000 | a major division of geological time; an era is usually divided into two or more periods -15248269 28 n 01 epoch 1 009 @ 15116283 n 0000 #p 15247518 n 0000 ~i 15124713 n 0000 ~i 15124864 n 0000 ~i 15125323 n 0000 ~i 15125519 n 0000 ~i 15125679 n 0000 ~i 15125845 n 0000 ~i 15126000 n 0000 | a unit of geological time that is a subdivision of a period and is itself divided into ages -15248564 28 n 02 era 0 epoch 0 007 @ 15113229 n 0000 + 02162179 a 0201 ~i 15248812 n 0000 ~i 15249096 n 0000 ~ 15249236 n 0000 ~ 15254028 n 0000 ~ 15254831 n 0000 | a period marked by distinctive character or reckoned from a fixed point or event -15248812 28 n 01 Caliphate 0 001 @i 15248564 n 0000 | the era of Islam's ascendancy from the death of Mohammed until the 13th century; some Moslems still maintain that the Moslem world must always have a calif as head of the community; "their goal was to reestablish the Caliphate" -15249096 28 n 02 Christian_era 0 Common_era 0 001 @i 15248564 n 0000 | the time period beginning with the supposed year of Christ's birth -15249236 28 n 01 day 5 001 @ 15248564 n 0000 | an era of existence or influence; "in the day of the dinosaurs"; "in the days of the Roman Empire"; "in the days of sailing ships"; "he was a successful pianist in his day" -15249458 28 n 01 year_of_grace 0 001 @ 15203791 n 0000 | any year of the Christian era -15249547 28 n 01 Y2K 0 001 @ 15203791 n 0000 | the year 2000 in the Gregorian calendar -15249636 28 n 01 generation 0 001 @ 15113229 n 0000 | the normal time between successive generations; "they had to wait a generation for that prejudice to fade" -15249799 28 n 02 anniversary 0 day_of_remembrance 0 013 @ 15157225 n 0000 ~ 15250178 n 0000 ~ 15250312 n 0000 ~ 15250691 n 0000 ~ 15251212 n 0000 ~ 15251336 n 0000 ~ 15251489 n 0000 ~ 15251600 n 0000 ~ 15251757 n 0000 ~ 15251892 n 0000 ~ 15252021 n 0000 ~ 15252146 n 0000 ~ 15252300 n 0000 | the date on which an event occurred in some previous year (or the celebration of it) -15250178 28 n 01 birthday 0 001 @ 15249799 n 0000 | an anniversary of the day on which a person was born (or the celebration of it) -15250312 28 n 01 jubilee 0 004 @ 15249799 n 0000 + 02491262 v 0101 ~ 15250468 n 0000 ~ 15250580 n 0000 | a special anniversary (or the celebration of it) -15250468 28 n 01 diamond_jubilee 0 001 @ 15250312 n 0000 | an anniversary celebrating the passage of 60 years -15250580 28 n 01 silver_jubilee 0 001 @ 15250312 n 0000 | an anniversary celebrating the passage of 25 years -15250691 28 n 01 wedding_anniversary 0 004 @ 15249799 n 0000 ~ 15250890 n 0000 ~ 15250991 n 0000 ~ 15251092 n 0000 | the anniversary of the day on which you were married (or the celebration of it) -15250890 28 n 01 silver_wedding_anniversary 0 001 @ 15250691 n 0000 | the 25th wedding anniversary -15250991 28 n 01 golden_wedding_anniversary 0 001 @ 15250691 n 0000 | the 50th wedding anniversary -15251092 28 n 02 diamond_wedding_anniversary 0 diamond_wedding 0 001 @ 15250691 n 0000 | the 60th wedding anniversary -15251212 28 n 02 semicentennial 0 semicentenary 0 001 @ 15249799 n 0000 | the 50th anniversary (or the celebration of it) -15251336 28 n 02 centennial 0 centenary 0 003 @ 15249799 n 0000 + 02998988 a 0202 + 02998988 a 0101 | the 100th anniversary (or the celebration of it) -15251489 28 n 01 sesquicentennial 0 001 @ 15249799 n 0000 | the 150th anniversary (or the celebration of it) -15251600 28 n 02 bicentennial 0 bicentenary 0 003 @ 15249799 n 0000 + 02999190 a 0202 + 02999190 a 0101 | the 200th anniversary (or the celebration of it) -15251757 28 n 03 tercentennial 0 tercentenary 0 triennial 0 001 @ 15249799 n 0000 | the 300th anniversary (or the celebration of it) -15251892 28 n 02 quatercentennial 0 quatercentenary 0 001 @ 15249799 n 0000 | the 400th anniversary (or the celebration of it) -15252021 28 n 02 quincentennial 0 quincentenary 0 001 @ 15249799 n 0000 | the 500th anniversary (or the celebration of it) -15252146 28 n 02 millennium 2 millenary 2 003 @ 15249799 n 0000 + 02864824 a 0101 + 02864699 a 0101 | the 1000th anniversary (or the celebration of it) -15252300 28 n 02 bimillennium 1 bimillenary 1 001 @ 15249799 n 0000 | the 2000th anniversary (or the celebration of it) -15252422 28 n 02 birthday 1 natal_day 0 001 @ 15159583 n 0000 | the date on which a person was born -15252524 28 n 02 time_immemorial 0 time_out_of_mind 0 001 @ 15120823 n 0000 | the distant past beyond memory -15252635 28 n 04 auld_langsyne 0 langsyne 0 old_times 0 good_old_days 0 001 @ 15120823 n 0000 | past times remembered with nostalgia -15252770 28 n 01 by-and-by 0 001 @ 15121625 n 0000 | an indefinite time in the future; "he'll get around to it in the sweet by-and-by" -15252907 28 n 01 chapter 0 001 @ 15290337 n 0000 | any distinct period in history or in a person's life; "the industrial revolution opened a new chapter in British history"; "the divorce was an ugly chapter in their relationship" -15253139 28 n 01 antiquity 0 035 @ 15254028 n 0000 #p 15121406 n 0000 + 01638962 a 0102 -c 02921325 a 0000 -c 01027662 n 0000 -c 02981024 n 0000 -c 03035089 n 0000 -c 03412511 n 0000 -c 03648804 n 0000 -c 03884778 n 0000 -c 04445154 n 0000 -c 05604535 n 0000 -c 06379094 n 0000 -c 07036862 n 0000 -c 07464402 n 0000 -c 09507756 n 0000 -c 09510305 n 0000 -c 09510904 n 0000 -c 09513216 n 0000 -c 09513902 n 0000 -c 09531630 n 0000 -c 09533048 n 0000 -c 09551356 n 0000 -c 09552681 n 0000 -c 09559404 n 0000 -c 09578465 n 0000 -c 09593937 n 0000 -c 09823287 n 0000 -c 09905050 n 0000 -c 09920106 n 0000 -c 10131815 n 0000 -c 10452892 n 0000 -c 10479135 n 0000 -c 10595361 n 0000 -c 10728828 n 0000 | the historic period preceding the Middle Ages in Europe -15253895 28 n 01 golden_age 1 001 @ 15254028 n 0000 | any period (sometimes imaginary) of great peace and prosperity and happiness -15254028 28 n 02 historic_period 0 age 2 021 @ 15248564 n 0000 #p 15121406 n 0000 ~i 08472590 n 0000 ~i 15122648 n 0000 ~i 15122853 n 0000 ~ 15253139 n 0000 ~ 15253895 n 0000 ~ 15255439 n 0000 ~i 15259076 n 0000 ~i 15259284 n 0000 ~i 15259812 n 0000 ~i 15260130 n 0000 ~i 15260277 n 0000 ~i 15260436 n 0000 ~ 15260814 n 0000 ~ 15261169 n 0000 ~i 15261306 n 0000 ~i 15261471 n 0000 ~i 15261658 n 0000 ~i 15261868 n 0000 ~i 15294211 n 0000 | an era of history having some distinctive feature; "we live in a litigious age" -15254550 28 n 02 prehistory 0 prehistoric_culture 0 007 @ 15113229 n 0000 + 01730909 a 0101 + 02946359 a 0101 %p 15231415 n 0000 %p 15231765 n 0000 %p 15231964 n 0000 %p 15255195 n 0000 | the time during the development of human culture before the appearance of the written word -15254831 28 n 01 modern_era 0 002 @ 15248564 n 0000 ~ 15254933 n 0000 | the present or recent times -15254933 28 n 01 information_age 0 001 @ 15254831 n 0000 | a period beginning in the last quarter of the 20th century when information became easily accessible through publications and through the manipulation of information by computers and computer networks -15255195 28 n 03 ice_age 0 glacial_period 0 glacial_epoch 1 002 @ 15247518 n 0000 #p 15254550 n 0000 | any period of time during which glaciers covered a large part of the earth's surface; "the most recent ice age was during the Pleistocene" -15255439 28 n 01 Jazz_Age 0 001 @ 15254028 n 0000 | the 1920s in the United States characterized in the novels of F. Scott Fitzgerald as a period of wealth, youthful exuberance, and carefree hedonism -15255641 28 n 02 chukker 0 chukka 0 003 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00477639 n 0000 | (polo) one of six divisions into which a polo match is divided -15255804 28 n 02 inning 0 frame 0 005 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00471613 n 0000 %p 15256022 n 0000 %p 15256245 n 0000 | (baseball) one of nine divisions of play during which each team has a turn at bat -15256022 28 n 02 top 0 top_of_the_inning 0 003 @ 15256714 n 0000 #p 15255804 n 0000 ! 15256245 n 0101 | the first half of an inning; while the visiting team is at bat; "a relief pitcher took over in the top of the fifth" -15256245 28 n 02 bottom 0 bottom_of_the_inning 0 003 @ 15256714 n 0000 #p 15255804 n 0000 ! 15256022 n 0101 | the second half of an inning; while the home team is at bat -15256417 28 n 01 set 0 002 @ 15256915 n 0000 %p 15256567 n 0000 | a unit of play in tennis or squash; "they played two sets of tennis after dinner" -15256567 28 n 01 game 0 003 @ 05867413 n 0000 #p 15256417 n 0000 ;c 00482298 n 0000 | (tennis) a division of play during which one player serves -15256714 28 n 03 turn 0 bout 0 round 0 005 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00523513 n 0000 ~ 15256022 n 0000 ~ 15256245 n 0000 | (sports) a division during which one team is on the offensive -15256915 28 n 03 playing_period 0 period_of_play 0 play 0 017 @ 00033615 n 0000 #p 00463246 n 0000 ;c 00455599 n 0000 + 01079480 v 0303 + 01072949 v 0301 ~ 03526805 n 0000 %p 15255641 n 0000 %p 15255804 n 0000 ~ 15256417 n 0000 %p 15256714 n 0000 %p 15257416 n 0000 %p 15257553 n 0000 %p 15257692 n 0000 %p 15257829 n 0000 %p 15258281 n 0000 %p 15258450 n 0000 %p 15258694 n 0000 | (in games or plays or other performances) the time during which play proceeds; "rain stopped play in the 4th inning" -15257416 28 n 01 first_period 0 002 @ 05867413 n 0000 #p 15256915 n 0000 | the first division into which the play of a game is divided -15257553 28 n 01 second_period 0 002 @ 05867413 n 0000 #p 15256915 n 0000 | the second division into which the play of a game is divided -15257692 28 n 01 final_period 0 002 @ 05867413 n 0000 #p 15256915 n 0000 | the final division into which the play of a game is divided -15257829 28 n 01 half 0 006 @ 05867413 n 0000 #p 15256915 n 0000 #p 00468480 n 0000 #p 00480993 n 0000 ~ 15258091 n 0000 ~ 15258179 n 0000 | one of two divisions into which some games or performances are divided: the two divisions are separated by an interval -15258091 28 n 01 first_half 0 001 @ 15257829 n 0000 | the first of two halves of play -15258179 28 n 02 second_half 0 last_half 0 001 @ 15257829 n 0000 | the second of two halves of play -15258281 28 n 01 period 7 003 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00463543 n 0000 | (ice hockey) one of three divisions into which play is divided in hockey games -15258450 28 n 01 quarter 1 004 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00468480 n 0000 ;c 00481803 n 0000 | (football, professional basketball) one of four divisions into which some games are divided; "both teams scored in the first quarter" -15258694 28 n 01 over 0 004 @ 05867413 n 0000 #p 15256915 n 0000 ;c 00476389 n 0000 ~ 15258945 n 0000 | (cricket) the division of play during which six balls are bowled at the batsman by one player from the other team from the same end of the pitch -15258945 28 n 02 maiden_over 0 maiden 0 002 @ 15258694 n 0000 ;c 00476389 n 0000 | (cricket) an over in which no runs are scored -15259076 28 n 03 Baroque 0 Baroque_era 0 Baroque_period 0 001 @i 15254028 n 0000 | the historic period from about 1600 until 1750 when the baroque style of art, architecture, and music flourished in Europe -15259284 28 n 02 Middle_Ages 0 Dark_Ages 0 021 @i 15254028 n 0000 #p 15121406 n 0000 -c 00698004 n 0000 -c 02950632 n 0000 -c 03000247 n 0000 -c 03473817 n 0000 -c 03769397 n 0000 -c 03901338 n 0000 -c 05604535 n 0000 -c 05627385 n 0000 -c 05668581 n 0000 -c 05668725 n 0000 -c 06172071 n 0000 -c 06172294 n 0000 -c 09546280 n 0000 -c 09546453 n 0000 -c 10064229 n 0000 -c 10394141 n 0000 -c 10550951 n 0000 -c 10551265 n 0000 -c 10580535 n 0000 | the period of history between classical antiquity and the Italian Renaissance -15259812 28 n 02 Renaissance 0 Renascence 0 005 @i 15254028 n 0000 #p 15121406 n 0000 %p 04929742 n 0000 %p 15205880 n 0000 %p 15260130 n 0000 | the period of European history at the close of the Middle Ages and the rise of the modern world; a cultural rebirth from the 14th through the middle of the 17th centuries -15260130 28 n 01 Italian_Renaissance 0 002 @i 15254028 n 0000 #p 15259812 n 0000 | the early period when Italy was the center of the Renaissance -15260277 28 n 02 Industrial_Revolution 0 technological_revolution 0 001 @i 15254028 n 0000 | the transformation from an agricultural to an industrial nation -15260436 28 n 01 Reign_of_Terror 0 001 @i 15254028 n 0000 | the historic period (1793-94) during the French Revolution when thousands were executed; "the Reign of the Bourbons ended and the Reign of Terror began" -15260651 28 n 01 reign_of_terror 1 002 @ 15260964 n 0000 ;c 00759694 n 0000 | any period of brutal suppression thought to resemble the Reign of Terror in France -15260814 28 n 01 reign 0 002 @ 15254028 n 0000 + 02587375 v 0101 | the period during which a monarch is sovereign; "during the reign of Henry VIII" -15260964 28 n 01 reign 1 003 @ 15113229 n 0000 + 02644234 v 0104 ~ 15260651 n 0000 | a period during which something or somebody is dominant or powerful; "he was helpless under the reign of his egotism" -15261169 28 n 01 turn_of_the_century 0 001 @ 15254028 n 0000 | the period from about ten years before to ten years after a new century -15261306 28 n 01 Harlem_Renaissance 0 001 @i 15254028 n 0000 | a period in the 1920s when African-American achievements in art and music and literature flourished -15261471 28 n 01 New_Deal 0 001 @i 15254028 n 0000 | the historic period (1933-1940) in the United States during which President Franklin Roosevelt's economic policies were implemented -15261658 28 n 02 Reconstruction 0 Reconstruction_Period 0 001 @i 15254028 n 0000 | the period after the American Civil War when the southern states were reorganized and reintegrated into the Union; 1865-1877 -15261868 28 n 01 Restoration 0 001 @i 15254028 n 0000 | the reign of Charles II in England; 1660-1685 -15261972 28 n 02 print_run 0 press_run 0 002 @ 15262120 n 0000 ~ 15262624 n 0000 | the period that presses run to produce an issue of a newspaper -15262120 28 n 01 run 0 003 @ 15113229 n 0000 ~ 15261972 n 0000 ~ 15262360 n 0000 | the continuous period of time during which something (a machine or a factory) operates or continues in operation; "the assembly line was on a 12-hour run" -15262360 28 n 01 run-time 0 002 @ 15262120 n 0000 ;c 06128570 n 0000 | (computer science) the length of time it takes to execute a software program -15262510 28 n 01 run-time 1 001 @ 15180528 n 0000 | the time at which a (software or multimedia) program is run -15262624 28 n 01 split_run 0 001 @ 15261972 n 0000 | a print run of a newspaper during which some articles or advertisements are changed to produce a different edition -15262794 28 n 01 space_age 0 001 @ 15122231 n 0000 | the age beginning with the first space travel; from 1957 to the present -15262921 28 n 01 today 0 001 @ 15119536 n 0000 | the present time or age; "the world of today"; "today we have computers" -15263045 28 n 01 tonight 0 001 @ 15119536 n 0000 | the present or immediately coming night -15263138 28 n 01 yesterday 0 001 @ 15120823 n 0000 | the recent past; "yesterday's solutions are not good enough"; "we shared many yesterdays" -15263283 28 n 01 millennium 1 003 @ 05943300 n 0000 ;c 06453849 n 0000 + 03086852 a 0101 | (New Testament) in Revelations it is foretold that those faithful to Jesus will reign with Jesus over the earth for a thousand years; the meaning of these words have been much debated; some denominations (e.g. Jehovah's Witnesses) expect it to be a thousand years of justice and peace and happiness -15263675 28 n 01 offing 0 001 @ 15121625 n 0000 | the near or foreseeable future; "there was a wedding in the offing" -15263795 28 n 01 tomorrow 0 001 @ 15121625 n 0000 | the near future; "tomorrow's world"; "everyone hopes for a better tomorrow" -15263925 28 n 01 manana 0 001 @ 15121625 n 0000 | an indefinite time in the future -15264010 28 n 04 common_time 0 four-four_time 0 quadruple_time 0 common_measure 0 001 @ 15122011 n 0000 | a time signature indicating four beats to the bar -15264168 28 n 01 duple_time 0 001 @ 15122011 n 0000 | musical time with two beats in each bar -15264264 28 n 01 triple_time 0 001 @ 15122011 n 0000 | musical time with three beats in each bar -15264363 28 n 02 tempo 1 pacing 0 008 @ 15122011 n 0000 ;c 07020895 n 0000 ~ 15264726 n 0000 ~ 15264891 n 0000 ~ 15265021 n 0000 ~ 15265219 n 0000 ~ 15265331 n 0000 ~ 15265423 n 0000 | (music) the speed at which a composition is to be played -15264607 28 n 01 in_time 0 001 @ 15122011 n 0000 | in the correct rhythm; "the dancers moved in time with the music" -15264726 28 n 01 accelerando 0 002 @ 15264363 n 0000 + 02537841 a 0101 | a gradually increasing tempo of music; "my ear will not accept such violent accelerandos" -15264891 28 n 01 allegretto 0 002 @ 15264363 n 0000 + 00982170 a 0101 | a quicker tempo than andante but not as fast as allegro -15265021 28 n 01 allegro 0 003 @ 15264363 n 0000 + 00982065 a 0101 ~ 15265135 n 0000 | a brisk and lively tempo -15265135 28 n 01 allegro_con_spirito 0 001 @ 15265021 n 0000 | lively with spirit -15265219 28 n 01 andante 0 002 @ 15264363 n 0000 + 00982954 a 0101 | a moderately slow tempo (a walking pace) -15265331 28 n 01 meno_mosso 0 001 @ 15264363 n 0000 | played at reduced speed; less rapid -15265423 28 n 01 rubato 0 001 @ 15264363 n 0000 | a flexible tempo; not strictly on the beat -15265518 28 n 0a beginning 0 commencement 0 first 0 outset 0 get-go 0 start 0 kickoff 0 starting_time 0 showtime 0 offset 0 014 @ 15180528 n 0000 + 02395782 v 0702 + 02379528 v 0601 + 01650610 v 0601 + 01628449 v 0603 + 02608347 v 0602 + 00348746 v 0603 + 00345761 v 0605 ! 15266685 n 0101 ! 15266911 n 0101 ~ 15142167 n 0000 ~ 15143012 n 0000 ~ 15266164 n 0000 ~ 15268993 n 0000 | the time at which something is supposed to begin; "they got an early start"; "she knew from the get-go that he was the man for her" -15266034 28 n 02 youth 1 early_days 0 001 @ 15113229 n 0000 | an early period of development; "during the youth of the project" -15266164 28 n 02 terminus_a_quo 0 starting_point 0 001 @ 15265518 n 0000 | earliest limiting point -15266265 28 n 03 presidency 0 presidential_term 0 administration 0 008 @ 15291498 n 0000 + 02431971 v 0301 + 10467395 n 0103 + 00597265 n 0102 + 10468962 n 0101 + 10468750 n 0101 + 10468559 n 0101 + 10467179 n 0101 | the tenure of a president; "things were quiet during the Eisenhower administration" -15266568 28 n 02 vice-presidency 0 vice-presidential_term 0 001 @ 15291498 n 0000 | the tenure of a vice president -15266685 28 n 01 middle 0 004 @ 15180528 n 0000 ! 15266911 n 0101 ! 15265518 n 0101 ~ 15267373 n 0000 | time between the beginning and the end of a temporal period; "the middle of the war"; "rain during the middle of April" -15266911 28 n 02 end 0 ending 0 018 @ 15180528 n 0000 + 02735418 v 0201 + 01620854 v 0101 + 02735418 v 0101 + 00352826 v 0101 + 02609764 v 0101 ! 15265518 n 0101 ! 15266685 n 0101 ~ 15143276 n 0000 ~ 15143477 n 0000 ~ 15144178 n 0000 ~ 15201994 n 0000 ~ 15267536 n 0000 ~ 15268239 n 0000 ~ 15268367 n 0000 ~ 15268547 n 0000 ~ 15268682 n 0000 ~ 15268857 n 0000 | the point in time at which something ends; "the end of the year"; "the ending of warranty period" -15267373 28 n 01 deep 0 002 @ 15266685 n 0000 + 01513776 a 0102 | the central and most intense or profound part; "in the deep of night"; "in the deep of winter" -15267536 28 n 07 stopping_point 0 finale 0 finis 0 finish 0 last 0 conclusion 0 close 0 007 @ 15266911 n 0000 + 02610628 v 0702 + 02425913 v 0701 + 02426395 v 0702 + 00351963 v 0401 + 02609764 v 0403 + 00484166 v 0402 | the temporal end; the concluding time; "the stopping point of each round was signaled by a bell"; "the market was up at the finish"; "they were playing better at the close of the season" -15267945 28 n 01 dawn 1 003 @ 15113229 n 0000 ;u 07105475 n 0000 + 02609614 v 0101 | an opening time period; "it was the dawn of the Roman Empire" -15268094 28 n 01 evening 1 002 @ 15113229 n 0000 ;u 07105475 n 0000 | a later concluding time period; "it was the evening of the Roman Empire" -15268239 28 n 01 cease 0 002 @ 15266911 n 0000 + 02680814 v 0103 | (`cease' is a noun only in the phrase `without cease') end -15268367 28 n 03 fag_end 0 tail 0 tail_end 0 001 @ 15266911 n 0000 | the time of the last part of something; "the fag end of this crisis-ridden century"; "the tail of the storm" -15268547 28 n 01 last_gasp 0 001 @ 15266911 n 0000 | the point of death or exhaustion or completion; "the last gasp of the cold war" -15268682 28 n 03 termination 0 expiration 0 expiry 0 002 @ 15266911 n 0000 + 02684784 v 0202 | a coming to an end of a contract period; "the expiry of his driver's license" -15268857 28 n 03 terminus_ad_quem 0 terminal_point 0 limit 0 002 @ 15266911 n 0000 + 00947077 v 0306 | final or latest limiting point -15268993 28 n 01 threshold 0 001 @ 15265518 n 0000 | the starting point for a new state or experience; "on the threshold of manhood" -15269128 28 n 01 seek_time 0 004 @ 15269513 n 0000 #p 15171857 n 0000 ;c 06128570 n 0000 ~ 15269331 n 0000 | (computer science) the time it takes for a read/write head to move to a specific data track -15269331 28 n 01 track-to-track_seek_time 0 002 @ 15269128 n 0000 ;c 06128570 n 0000 | (computer science) the time it takes for a read/write head to move to an adjacent data track -15269513 28 n 02 time_interval 0 interval 0 021 @ 00033615 n 0000 ~ 15171857 n 0000 ~ 15172212 n 0000 ~ 15172664 n 0000 ~ 15269128 n 0000 ~ 15269996 n 0000 ~ 15270245 n 0000 ~ 15270697 n 0000 ~ 15270862 n 0000 ~ 15271008 n 0000 ~ 15272685 n 0000 ~ 15272887 n 0000 ~ 15273101 n 0000 ~ 15273241 n 0000 ~ 15273406 n 0000 ~ 15287830 n 0000 ~ 15289524 n 0000 ~ 15289779 n 0000 ~ 15294085 n 0000 ~ 15297069 n 0000 ~ 15297672 n 0000 | a definite length of time marked off by two instants -15269996 28 n 01 time_constant 0 003 @ 15269513 n 0000 ;c 06099269 n 0000 ~ 15275315 n 0000 | (electronics) the time required for the current or voltage in a circuit to rise or fall exponentially through approximately 63 per cent of its amplitude -15270245 28 n 02 time_slot 0 slot 0 002 @ 15269513 n 0000 + 00679112 v 0201 | a time assigned on a schedule or agenda; "the TV program has a new time slot"; "an aircraft landing slot" -15270431 28 n 01 time 5 002 @ 15113229 n 0000 + 00490968 v 0102 | a period of time considered as a resource under your control and sufficient to accomplish something; "take time to smell the roses"; "I didn't have time to finish"; "it took more than half my time" -15270697 28 n 01 lunitidal_interval 0 001 @ 15269513 n 0000 | interval between the moon's transit of a particular meridian and the next high tide at that meridian -15270862 28 n 01 absence 0 001 @ 15269513 n 0000 | the time interval during which something or somebody is away; "he visited during my absence" -15271008 28 n 05 pause 0 intermission 0 break 0 interruption 0 suspension 0 014 @ 15269513 n 0000 + 00363493 v 0502 + 02535716 v 0301 + 00779061 v 0101 + 02641035 v 0102 ~ 15271417 n 0000 ~ 15271619 n 0000 ~ 15271732 n 0000 ~ 15271901 n 0000 ~ 15272029 n 0000 ~ 15272571 n 0000 ~ 15274074 n 0000 ~ 15274305 n 0000 ~ 15274441 n 0000 | a time interval during which there is a temporary cessation of something -15271417 28 n 01 lapse 0 004 @ 15271008 n 0000 + 02072849 v 0102 + 02303761 v 0101 + 00351824 v 0101 | a break or intermission in the occurrence of something; "a lapse of three weeks between letters" -15271619 28 n 01 blackout 0 002 @ 15271008 n 0000 + 00201906 v 0101 | a suspension of radio or tv broadcasting -15271732 28 n 01 caesura 0 002 @ 15271008 n 0000 + 02673594 a 0101 | a pause or interruption (as in a conversation); "after an ominous caesura the preacher continued" -15271901 28 n 01 dead_air 0 001 @ 15271008 n 0000 | an inadvertent interruption in a broadcast during which there is no sound -15272029 28 n 05 delay 0 hold 0 time_lag 0 postponement 0 wait 0 009 @ 15271008 n 0000 + 02641463 v 0501 + 02643574 v 0201 + 01859586 v 0202 + 00440286 v 0103 + 02641957 v 0101 ~ 15272382 n 0000 ~ 15275466 n 0000 ~ 15275598 n 0000 | time during which some action is awaited; "instant replay caused too long a delay"; "he ordered a hold in the action" -15272382 28 n 01 extension 0 001 @ 15272029 n 0000 | a mutually agreed delay in the date set for the completion of a job or payment of a debt; "they applied for an extension of the loan" -15272571 28 n 01 halftime 0 001 @ 15271008 n 0000 | an intermission between the first and second half of a game -15272685 28 n 01 interlude 0 002 @ 15269513 n 0000 ~ 15272791 n 0000 | an intervening period or episode -15272791 28 n 01 entr'acte 0 001 @ 15272685 n 0000 | the interlude between two acts of a play -15272887 28 n 04 interim 0 meantime 0 meanwhile 0 lag 0 002 @ 15269513 n 0000 ~ 15273522 n 0000 | the time between one event, process, or period and another; "meanwhile the socialists are running the government" -15273101 28 n 01 latent_period 0 001 @ 15269513 n 0000 | the time that elapses before the presence of a disease is manifested by symptoms -15273241 28 n 04 reaction_time 0 response_time 0 latency 0 latent_period 1 001 @ 15269513 n 0000 | the time that elapses between a stimulus and the response to it -15273406 28 n 01 eternity 1 002 @ 15269513 n 0000 + 01439784 a 0102 | a seemingly endless time interval (waiting) -15273522 28 n 01 interregnum 0 001 @ 15272887 n 0000 | the time between two reigns, governments, etc. -15273626 28 n 02 sleep 0 nap 0 006 @ 15113229 n 0000 + 00015498 v 0201 + 02701445 v 0101 + 00014742 v 0101 ~ 15273875 n 0000 ~ 15273955 n 0000 | a period of time spent sleeping; "he felt better after a little sleep"; "there wasn't time for a nap" -15273875 28 n 01 beauty_sleep 0 001 @ 15273626 n 0000 | sleep before midnight -15273955 28 n 01 kip 0 003 @ 15273626 n 0000 ;r 08860123 n 0000 + 00014742 v 0102 | sleep; "roused him from his kip" -15274074 28 n 04 respite 0 rest 0 relief 0 rest_period 0 004 @ 15271008 n 0000 + 00779601 v 0201 + 00779360 v 0201 ~ 15274695 n 0000 | a pause for relaxation; "people actually accomplish more when they take time for short rests" -15274305 28 n 01 time-out 0 002 @ 15271008 n 0000 #p 00463246 n 0000 | a brief suspension of play; "each team has two time-outs left" -15274441 28 n 02 letup 0 lull 0 006 @ 15271008 n 0000 + 01764800 v 0208 + 00558061 v 0201 + 01763643 v 0201 + 00245059 v 0102 + 00156276 v 0103 | a pause during which things are calm or activities are diminished; "there was never a letup in the noise" -15274695 28 n 06 breath 0 breather 0 breathing_place 0 breathing_space 0 breathing_spell 0 breathing_time 0 002 @ 15274074 n 0000 + 00779360 v 0202 | a short respite -15274863 28 n 02 lease 0 term_of_a_contract 0 005 @ 15113229 n 0000 + 02208537 v 0101 + 02208903 v 0101 + 02460619 v 0104 + 02460199 v 0102 | the period of time during which a contract conveying property to a person is in effect -15275094 28 n 02 half_life 0 half-life 0 001 @ 15113229 n 0000 | the time required for something to fall to half its initial value (in particular, the time for half the atoms in a radioactive substance to disintegrate) -15275315 28 n 01 relaxation_time 0 001 @ 15269996 n 0000 | the time constant of an exponential return of a system to equilibrium after a disturbance -15275466 28 n 01 moratorium 0 001 @ 15272029 n 0000 | a legally authorized postponement before some obligation must be discharged -15275598 28 n 01 retardation 0 002 @ 15272029 n 0000 + 02752567 v 0101 | the extent to which something is delayed or held back -15275727 28 n 02 tide 0 lunar_time_period 0 001 @ 15113229 n 0000 | there are usually two high and two low tides each day -15275851 28 n 01 acceleration 0 005 @ 15286249 n 0000 ;c 06090869 n 0000 ! 15276171 n 0101 ~ 11469108 n 0000 ~ 15276023 n 0000 | (physics) a rate of increase of velocity -15276023 28 n 01 centripetal_acceleration 0 001 @ 15275851 n 0000 | the acceleration toward the center that holds a satellite in elliptical orbit -15276171 28 n 01 deceleration 0 003 @ 15286249 n 0000 ;c 06090869 n 0000 ! 15275851 n 0101 | (physics) a rate of decrease in velocity -15276307 28 n 02 attrition_rate 0 rate_of_attrition 0 001 @ 15286249 n 0000 | the rate of shrinkage in size or number -15276427 28 n 05 birthrate 0 birth_rate 0 fertility 0 fertility_rate 0 natality 0 001 @ 15286249 n 0000 | the ratio of live births in an area to the population of that area; expressed per 1000 population per year -15276642 28 n 02 bits_per_second 0 bps 0 002 @ 15286249 n 0000 ;c 06128570 n 0000 | (computer science) the rate at which data is transferred (as by a modem) -15276801 28 n 01 crime_rate 0 001 @ 15286249 n 0000 | the ratio of crimes in an area to the population of that area; expressed per 1000 population per year -15276959 28 n 01 data_rate 0 002 @ 15286249 n 0000 ~ 15287073 n 0000 | the rate at which circuits or other devices operate when handling digital information -15277118 28 n 05 deathrate 0 death_rate 0 mortality 0 mortality_rate 0 fatality_rate 0 003 @ 15286249 n 0000 ~ 15285622 n 0000 ~ 15285772 n 0000 | the ratio of deaths in an area to the population of that area; expressed per 1000 per year -15277358 28 n 01 dose_rate 0 001 @ 15286249 n 0000 | the quantity of radiation absorbed per unit time -15277462 28 n 04 erythrocyte_sedimentation_rate 0 ESR 0 sedimentation_rate 0 sed_rate 0 001 @ 15286249 n 0000 | the rate at which red blood cells settle out in a tube of blood under standardized conditions; a high rate usually indicates the presence of inflammation -15277730 28 n 03 flow 0 flow_rate 0 rate_of_flow 0 005 @ 15286249 n 0000 + 02743727 v 0101 + 02067689 v 0101 + 02066939 v 0102 ~ 15277926 n 0000 | the amount of fluid that flows in a given time -15277926 28 n 01 cardiac_output 0 001 @ 15277730 n 0000 | the amount of blood pumped out by the ventricles in a given period of time; "a resting adult has a cardiac output of about three quarts a minute" -15278132 28 n 01 flux 0 003 @ 15286249 n 0000 ~ 15287199 n 0000 ~ 15287351 n 0000 | the rate of flow of energy or particles across a given surface -15278281 28 n 03 frequency 0 frequence 0 oftenness 0 010 @ 15286249 n 0000 + 00486990 a 0201 + 01066542 a 0201 ~ 05056386 n 0000 ~ 05056490 n 0000 ~ 05056811 n 0000 ~ 13644047 n 0000 ~ 15284999 n 0000 ~ 15285180 n 0000 ~ 15285279 n 0000 | the number of occurrences within a given time period; "the frequency of modulation was 40 cycles per second"; "the frequency of his seizures increased as he grew older" -15278691 28 n 05 gigahertz 0 GHz 0 gigacycle_per_second 0 gigacycle 0 Gc 0 001 @ 15286249 n 0000 | 1,000,000,000 periods per second -15278825 28 n 02 growth_rate 0 rate_of_growth 0 002 @ 15286249 n 0000 ~ 15278960 n 0000 | the rate of increase in size per unit time -15278960 28 n 01 isometry 0 002 @ 15278825 n 0000 ;c 13489037 n 0000 | the growth rates in different parts of a growing organism are the same -15279104 28 n 06 hertz 0 Hz 0 cycle_per_second 0 cycles/second 0 cps 0 cycle 2 002 @ 15286249 n 0000 #p 15279596 n 0000 | the unit of frequency; one hertz has a periodic interval of one second -15279299 28 n 02 inflation_rate 0 rate_of_inflation 0 001 @ 15286249 n 0000 | the rate of change of prices (as indicated by a price index) calculated on a monthly or annual basis -15279480 28 n 01 jerk 0 002 @ 15286249 n 0000 ;c 06100236 n 0000 | (mechanics) the rate of change of acceleration -15279596 28 n 05 kilohertz 0 kHz 0 kilocycle_per_second 0 kilocycle 0 kc 0 003 @ 15286249 n 0000 #p 15279957 n 0000 %p 15279104 n 0000 | one thousand periods per second -15279767 28 n 04 kilometers_per_hour 0 kilometres_per_hour 0 kph 0 km/h 0 001 @ 15286249 n 0000 | the ratio of the distance traveled (in kilometers) to the time spent traveling (in hours) -15279957 28 n 05 megahertz 0 MHz 0 megacycle_per_second 0 megacycle 0 Mc 0 002 @ 15286249 n 0000 %p 15279596 n 0000 | one million periods per second -15280108 28 n 02 terahertz 0 THz 0 001 @ 15286249 n 0000 | one trillion periods per second -15280201 28 n 01 metabolic_rate 0 002 @ 15286249 n 0000 ~ 13437610 n 0000 | rate of metabolism; the amount of energy expended in a give period -15280346 28 n 02 miles_per_hour 1 mph 1 001 @ 15286249 n 0000 | the ratio of the distance traveled (in miles) to the time spent traveling (in hours) -15280497 28 n 02 pace 0 gait 0 006 @ 15286249 n 0000 + 00490722 v 0101 + 02091165 v 0101 + 01929254 v 0101 ~ 15283224 n 0000 ~ 15283327 n 0000 | the rate of moving (especially walking or running) -15280695 28 n 03 pulse 0 pulse_rate 0 heart_rate 0 006 @ 14302005 n 0000 @ 15286249 n 0000 + 01879251 v 0103 + 01879251 v 0101 ~ 15280964 n 0000 ~ 15281071 n 0000 | the rate at which the heart beats; usually measured to obtain a quick evaluation of a person's health -15280964 28 n 01 femoral_pulse 0 001 @ 15280695 n 0000 | pulse of the femoral artery (felt in the groin) -15281071 28 n 01 radial_pulse 0 001 @ 15280695 n 0000 | pulse of the radial artery (felt in the wrist) -15281176 28 n 01 rate_of_return 0 002 @ 15286249 n 0000 ~ 15281329 n 0000 | the amount returned per unit of time expressed as a percentage of the cost -15281329 28 n 03 return_on_invested_capital 0 return_on_investment 0 ROI 0 002 @ 15281176 n 0000 ;c 01098968 n 0000 | (corporate finance) the amount, expressed as a percentage, that is earned on a company's total capital calculated by dividing the total capital into earnings before interest, taxes, or dividends are paid -15281653 28 n 02 respiratory_rate 0 rate_of_respiration 0 002 @ 14302005 n 0000 @ 15286249 n 0000 | the rate at which a person inhales and exhales; usually measured to obtain a quick evaluation of a person's health -15281870 28 n 03 revolutions_per_minute 0 rpm 0 rev 0 002 @ 15286249 n 0000 + 00439698 v 0302 | rate of revolution of a motor; "the engine was doing 6000 revs" -15282032 28 n 01 sampling_rate 0 003 @ 15286249 n 0000 ;c 06271778 n 0000 ~ 15282188 n 0000 | (telecommunication) the frequency of sampling per unit time -15282188 28 n 01 Nyquist_rate 0 002 @ 15282032 n 0000 ;c 06271778 n 0000 | (telecommunication) the lowest sampling rate that will permit accurate reconstruction of a sampled analog signal -15282378 28 n 01 solar_constant 0 001 @ 15286249 n 0000 | the rate at which radiant solar energy is received at the outer layer of the earth's atmosphere -15282534 28 n 01 spacing 0 001 @ 15286249 n 0000 | the time between occurrences of a repeating event; "some women do not control the spacing of their children" -15282696 28 n 02 speed 0 velocity 0 018 @ 15286249 n 0000 + 00979862 a 0102 + 02055975 v 0101 + 02055649 v 0102 + 00439343 v 0102 + 02058994 v 0105 + 00438178 v 0103 ~ 11469265 n 0000 ~ 15283433 n 0000 ~ 15283554 n 0000 ~ 15283675 n 0000 ~ 15283780 n 0000 ~ 15283920 n 0000 ~ 15284043 n 0000 ~ 15284158 n 0000 ~ 15284285 n 0000 ~ 15284553 n 0000 ~ 15284704 n 0000 | distance travelled per unit time -15283097 28 n 02 tempo 0 pace 1 003 @ 15286249 n 0000 + 00702601 v 0201 ~ 15286042 n 0000 | the rate of some repeating event -15283224 28 n 01 quick_time 0 001 @ 15280497 n 0000 | a normal marching pace of 120 steps per minute -15283327 28 n 01 double_time 0 001 @ 15280497 n 0000 | a fast marching pace (180 steps/min) or slow jog -15283433 28 n 01 airspeed 0 001 @ 15282696 n 0000 | the speed of an aircraft relative to the air in which it is flying -15283554 28 n 01 escape_velocity 0 001 @ 15282696 n 0000 | the minimum velocity needed to escape a gravitational field -15283675 28 n 01 groundspeed 0 001 @ 15282696 n 0000 | the speed of an aircraft relative to the ground -15283780 28 n 01 hypervelocity 0 001 @ 15282696 n 0000 | excessive velocity; "the meteorites struck the earth with hypervelocity impacts" -15283920 28 n 01 muzzle_velocity 0 001 @ 15282696 n 0000 | the velocity of a projectile as it leaves the muzzle of a gun -15284043 28 n 01 peculiar_velocity 0 001 @ 15282696 n 0000 | velocity with respect to the local standard of rest -15284158 28 n 01 radial_velocity 0 001 @ 15282696 n 0000 | velocity along the line of sight toward or away from the observer -15284285 28 n 03 speed_of_light 0 light_speed 0 c 0 002 @ 15282696 n 0000 @ 13585429 n 0000 | the speed at which light travels in a vacuum; the constancy and universality of the speed of light is recognized by defining it to be exactly 299,792,458 meters per second -15284553 28 n 01 steerageway 0 002 @ 15282696 n 0000 ;c 00314469 n 0000 | (nautical) the minimum rate of motion needed for a vessel to be maneuvered -15284704 28 n 01 terminal_velocity 0 001 @ 15282696 n 0000 | the constant maximum velocity reached by a body falling through the atmosphere under the attraction of gravity -15284878 28 n 02 miles_per_hour 0 mph 0 001 @ 05816790 n 0000 | a speedometer reading for the momentary rate of travel -15284999 28 n 01 attendance 0 002 @ 15278281 n 0000 + 01846815 a 0101 | the frequency with which a person is present; "a student's attendance is an important factor in her grade" -15285180 28 n 02 count_per_minute 0 counts/minute 0 001 @ 15278281 n 0000 | frequency per minute -15285279 28 n 01 sampling_frequency 0 003 @ 15278281 n 0000 ;c 06271778 n 0000 ~ 15285456 n 0000 | (telecommunication) the frequency of sampling a continuously varying signal -15285456 28 n 01 Nyquist_frequency 0 002 @ 15285279 n 0000 ;c 06271778 n 0000 | (telecommunication) twice the maximum frequency occurring in the transmitted signal -15285622 28 n 03 infant_deathrate 0 infant_mortality 0 infant_mortality_rate 0 001 @ 15277118 n 0000 | the death rate during the first year of life -15285772 28 n 02 neonatal_mortality 0 neonatal_mortality_rate 0 001 @ 15277118 n 0000 | the death rate during the first 28 days of life -15285910 28 n 02 words_per_minute 0 wpm 0 001 @ 15286249 n 0000 | the rate at which words are produced (as in speaking or typing) -15286042 28 n 04 beats_per_minute 0 bpm 0 metronome_marking 0 M.M. 0 003 @ 15283097 n 0000 #p 00543233 n 0000 ;c 07020895 n 0000 | the pace of music measured by the number of beats occurring in 60 seconds -15286249 28 n 01 rate 0 036 @ 13815152 n 0000 ~ 15275851 n 0000 ~ 15276171 n 0000 ~ 15276307 n 0000 ~ 15276427 n 0000 ~ 15276642 n 0000 ~ 15276801 n 0000 ~ 15276959 n 0000 ~ 15277118 n 0000 ~ 15277358 n 0000 ~ 15277462 n 0000 ~ 15277730 n 0000 ~ 15278132 n 0000 ~ 15278281 n 0000 ~ 15278691 n 0000 ~ 15278825 n 0000 ~ 15279104 n 0000 ~ 15279299 n 0000 ~ 15279480 n 0000 ~ 15279596 n 0000 ~ 15279767 n 0000 ~ 15279957 n 0000 ~ 15280108 n 0000 ~ 15280201 n 0000 ~ 15280346 n 0000 ~ 15280497 n 0000 ~ 15280695 n 0000 ~ 15281176 n 0000 ~ 15281653 n 0000 ~ 15281870 n 0000 ~ 15282032 n 0000 ~ 15282378 n 0000 ~ 15282534 n 0000 ~ 15282696 n 0000 ~ 15283097 n 0000 ~ 15285910 n 0000 | a magnitude or frequency relative to a time unit; "they traveled at a rate of 55 miles per hour"; "the rate of change was faster than expected" -15287073 28 n 01 channel_capacity 0 001 @ 15276959 n 0000 | the maximum data rate that can be attained over a given channel -15287199 28 n 01 neutron_flux 0 001 @ 15278132 n 0000 | the rate of flow of neutrons; the number of neutrons passing through a unit area in unit time -15287351 28 n 01 radiant_flux 0 002 @ 15278132 n 0000 ~ 15287486 n 0000 | the rate of flow of radiant energy (electromagnetic waves) -15287486 28 n 01 luminous_flux 0 001 @ 15287351 n 0000 | the rate of flow of light energy -15287578 28 n 01 incubation 0 004 @ 15290337 n 0000 #p 14174549 n 0000 ;c 06060845 n 0000 + 00254150 v 0101 | (pathology) the phase in the development of an infection between the time a pathogen enters the body and the time the first symptoms appear -15287830 28 n 03 cycle 0 rhythm 0 round 1 007 @ 15269513 n 0000 + 02019021 a 0202 + 00675701 a 0101 + 00343771 v 0101 + 02051270 v 0101 + 02052675 v 0101 %p 15290132 n 0000 | an interval during which a recurring sequence of events occurs; "the never-ending cycle of the seasons" -15288111 28 n 01 menstrual_cycle 0 005 @ 07341038 n 0000 %p 15288489 n 0000 %p 15288707 n 0000 %p 15289208 n 0000 %p 15296039 n 0000 | a recurring cycle (beginning at menarche and ending at menopause) in which the endometrial lining of the uterus prepares for pregnancy; if pregnancy does not occur the lining is shed at menstruation; "the average menstrual cycle is 28 days" -15288489 28 n 02 fertile_period 0 fertile_phase 0 002 @ 15290337 n 0000 #p 15288111 n 0000 | the time in the menstrual cycle when fertilization is most likely to be possible (7 days before to 7 days after ovulation) -15288707 28 n 01 menstrual_phase 0 002 @ 15290337 n 0000 #p 15288111 n 0000 | the phase of the menstrual cycle during which the lining of the uterus is shed (the first day of menstrual flow is considered day 1 of the menstrual cycle) -15288943 28 n 01 musth 0 001 @ 15290337 n 0000 | an annual phase of heightened sexual excitement in the males of certain large mammals (especially elephants); is associated with discharge from a gland between the eye and ear; "the frenzied elephant was in musth" -15289208 28 n 02 secretory_phase 0 luteal_phase 0 002 @ 15290337 n 0000 #p 15288111 n 0000 | the second half of the menstrual cycle after ovulation; the corpus luteum secretes progesterone which prepares the endometrium for the implantation of an embryo; if fertilization does not occur then menstrual flow begins -15289524 28 n 01 lead_time 0 001 @ 15269513 n 0000 | the time interval between the initiation and the completion of a production process; "the lead times for many publications can vary tremendously"; "planning is an area where lead time can be reduced" -15289779 28 n 01 period 2 003 @ 15269513 n 0000 + 01967240 a 0102 ~ 15289944 n 0000 | the interval taken to complete one cycle of a regularly repeating phenomenon -15289944 28 n 01 orbit_period 0 001 @ 15289779 n 0000 | the time it takes to complete one full orbit around a celestial body; "the orbit period depends on the altitude of the satellite" -15290132 28 n 02 phase 1 phase_angle 0 003 @ 15180528 n 0000 #p 15287830 n 0000 + 00394381 v 0101 | a particular point in the time of a cycle; measured from some arbitrary zero and expressed as an angle -15290337 28 n 02 phase 0 stage 0 023 @ 15113229 n 0000 + 01648894 v 0101 ~ 13465264 n 0000 ~ 13466449 n 0000 ~ 13507336 n 0000 ~ 13531318 n 0000 ~ 13536299 n 0000 ~ 13575109 n 0000 ~ 15145782 n 0000 ~ 15146004 n 0000 ~ 15146260 n 0000 ~ 15146545 n 0000 ~ 15146828 n 0000 ~ 15252907 n 0000 ~ 15287578 n 0000 ~ 15288489 n 0000 ~ 15288707 n 0000 ~ 15288943 n 0000 ~ 15289208 n 0000 ~ 15290930 n 0000 ~ 15291199 n 0000 ~ 15291416 n 0000 ~ 15296039 n 0000 | any distinct time period in a sequence of events; "we are in a transitional stage in which many former ideas must be revised or rejected" -15290930 28 n 01 generation 1 003 @ 15290337 n 0000 + 02733873 a 0101 + 01627355 v 0101 | a stage of technological development or innovation; "the third generation of computers" -15291110 28 n 01 multistage 0 001 @ 15113229 n 0000 | occurring in more than one stage -15291199 28 n 02 apogee 0 culmination 0 004 @ 15290337 n 0000 + 02526934 v 0201 + 00354030 v 0201 + 00485609 v 0201 | a final climactic stage; "their achievements stand as a culmination of centuries of development" -15291416 28 n 01 seedtime 1 001 @ 15290337 n 0000 | any time of new development -15291498 28 n 03 tenure 0 term_of_office 0 incumbency 0 006 @ 15224486 n 0000 + 00667208 a 0301 + 02397460 v 0101 ~ 15266265 n 0000 ~ 15266568 n 0000 ~ 15291714 n 0000 | the term during which some position is held -15291714 28 n 01 episcopate 0 001 @ 15291498 n 0000 | the term of office of a bishop -15291801 28 n 03 shift 0 work_shift 0 duty_period 0 009 @ 15118100 n 0000 #p 15136723 n 0000 ~ 15292069 n 0000 ~ 15292260 n 0000 ~ 15292336 n 0000 ~ 15292722 n 0000 ~ 15292829 n 0000 ~ 15292960 n 0000 ~ 15293091 n 0000 | the time period during which you are at work -15292069 28 n 04 go 0 spell 0 tour 0 turn 1 002 @ 15291801 n 0000 + 01076615 v 0102 | a time for working (after which you will be relieved by someone else); "it's my go"; "a spell of work" -15292260 28 n 01 trick 0 001 @ 15291801 n 0000 | a period of work or duty -15292336 28 n 01 watch 0 003 @ 15291801 n 0000 ~ 15292617 n 0000 ~ 15293435 n 0000 | a period of time (4 or 2 hours) during which some of a ship's crew are on duty -15292502 28 n 01 watch 1 001 @ 15113229 n 0000 | the period during which someone (especially a guard) is on duty -15292617 28 n 01 dogwatch 0 001 @ 15292336 n 0000 | either of two short watches: from 4-6 pm or 6-8 pm -15292722 28 n 01 day_shift 0 001 @ 15291801 n 0000 | the work shift during the day (as 8 a.m. to 4 p.m.) -15292829 28 n 02 evening_shift 0 swing_shift 0 001 @ 15291801 n 0000 | the work shift during the evening (as 4 p.m. to midnight) -15292960 28 n 02 night_shift 0 graveyard_shift 0 001 @ 15291801 n 0000 | the work shift during the night (as midnight to 8 a.m.) -15293091 28 n 01 split_shift 0 001 @ 15291801 n 0000 | a working shift divided into two periods of time with several hours in between -15293227 28 n 01 peacetime 0 001 @ 15113229 n 0000 | a period of time during which there is no war -15293328 28 n 01 wartime 0 001 @ 15113229 n 0000 | a period of time during which there is armed conflict -15293435 28 n 04 graveyard_watch 0 middle_watch 0 midwatch 0 night_watch 0 001 @ 15292336 n 0000 | a watch during the night (as from midnight to 8 a.m.) -15293590 28 n 06 enlistment 0 hitch 0 term_of_enlistment 0 tour_of_duty 0 duty_tour 0 tour 1 003 @ 15113229 n 0000 + 01097500 v 0101 + 01097192 v 0101 | a period of time spent in military service -15293788 28 n 01 honeymoon 1 001 @ 15113229 n 0000 | the early (usually calm and harmonious) period of a relationship; business or political -15293931 28 n 01 indiction 0 001 @ 15113229 n 0000 | a 15-year cycle used as a chronological unit in ancient Rome and adopted in some medieval kingdoms -15294085 28 n 01 float 0 001 @ 15269513 n 0000 | the time interval between the deposit of a check in a bank and its payment -15294211 28 n 02 Depression 0 Great_Depression 0 001 @i 15254028 n 0000 | a period during the 1930s when there was a worldwide economic depression and mass unemployment -15294382 28 n 02 prohibition 0 prohibition_era 0 002 @ 15113229 n 0000 + 10037922 n 0102 | the period from 1920 to 1933 when the sale of alcoholic beverages was prohibited in the United States by a constitutional amendment -15294607 28 n 01 incubation_period 0 001 @ 15113229 n 0000 | the period between infection and the appearance of symptoms of the disease -15294745 28 n 01 rainy_day 0 002 @ 15113229 n 0000 ;u 07105475 n 0000 | a (future) time of financial need; "I am saving for a rainy day" -15294884 28 n 02 novitiate 0 noviciate 0 002 @ 15113229 n 0000 ;c 05946687 n 0000 | the period during which you are a novice (especially in a religious order) -15295045 28 n 08 flower 0 prime 2 peak 0 heyday 0 bloom 1 blossom 0 efflorescence 0 flush 0 004 @ 15113229 n 0000 + 02022167 a 0802 + 00293760 v 0601 ~ 15295267 n 0000 | the period of greatest prosperity or productivity -15295267 28 n 01 golden_age 2 001 @ 15295045 n 0000 | a time period when some activity or skill was at its peak; "it was the golden age of cinema" -15295416 28 n 01 rule 0 004 @ 15133621 n 0000 + 02586619 v 0102 ~i 15295603 n 0000 ~ 15298995 n 0000 | the duration of a monarch's or government's power; "during the rule of Elizabeth" -15295603 28 n 01 Regency 0 002 @i 15295416 n 0000 ;r 08871007 n 0000 | the period from 1811-1820 when the Prince of Wales was regent during George III's periods of insanity -15295778 28 n 01 running_time 0 001 @ 15113229 n 0000 | the length of time that a movie or tv show runs -15295884 28 n 01 show_time 1 001 @ 15180528 n 0000 | the point in time at which an entertainment (a movie or television show etc.) is scheduled to begin -15296039 28 n 01 safe_period 0 002 @ 15290337 n 0000 #p 15288111 n 0000 | that time during a woman's menstrual cycle during which conception is least likely to occur (usually immediately before of after menstruation) -15296258 28 n 01 octave 0 001 @ 15162210 n 0000 | a feast day and the seven days following it -15296354 28 n 01 then 0 001 @ 15180528 n 0000 | that time; that moment; "we will arrive before then"; "we were friends from then on" -15296489 28 n 03 shiva 0 shivah 0 shibah 0 002 @ 15169873 n 0000 ;c 06232880 n 0000 | (Judaism) a period of seven days of mourning after the death of close relative; "the family is sitting shiva" -15296687 28 n 02 epoch 2 date_of_reference 0 002 @ 15160579 n 0000 ;c 06095022 n 0000 | (astronomy) an arbitrarily fixed date that is the point in time relative to which information (as coordinates of a celestial body) is recorded -15296920 28 n 01 clotting_time 0 001 @ 15113229 n 0000 | the time it takes for a sample of blood to clot; used to diagnose some clotting disorders -15297069 28 n 02 rotational_latency 0 latency 1 003 @ 15269513 n 0000 #p 15171857 n 0000 ;c 06128570 n 0000 | (computer science) the time it takes for a specific block of data on a data track to rotate around to the read/write head -15297303 28 n 01 probation 0 003 @ 15115926 n 0000 + 00556318 a 0101 + 02643872 v 0101 | a trial period during which an offender has time to redeem himself or herself -15297472 28 n 01 probation 1 002 @ 15115926 n 0000 + 00556318 a 0101 | a trial period during which your character and abilities are tested to see whether you are suitable for work or for membership -15297672 28 n 01 processing_time 0 002 @ 15269513 n 0000 ~ 15298011 n 0000 | the time it takes to complete a prescribed procedure; "they increased output by decreasing processing time" -15297859 28 n 01 air_alert 0 001 @ 15113229 n 0000 | the time period during which military and civilian agencies are prepared for an enemy air attack -15298011 28 n 04 command_processing_overhead_time 0 command_processing_overhead 0 command_overhead 0 overhead 0 003 @ 15297672 n 0000 #p 15171857 n 0000 ;c 06128570 n 0000 | (computer science) the processing time required by a device prior to the execution of a command -15298283 28 n 01 Great_Schism 0 003 @i 15113229 n 0000 @i 07314078 n 0000 ;c 08083599 n 0000 | the period from 1378 to 1417 during which there were two papacies in the Roman Catholic Church, one in Rome and one in Avignon -15298507 28 n 01 question_time 0 002 @ 15113229 n 0000 ;r 08860123 n 0000 | a period during a parliamentary session when members of British Parliament may ask questions of the ministers -15298695 28 n 01 real_time 0 002 @ 15113229 n 0000 ;c 06128570 n 0000 | (computer science) the time it takes for a process under computer control to occur -15298852 28 n 01 real_time 1 001 @ 15113229 n 0000 | the actual time that it takes a process to occur; "information is updated in real time" -15298995 28 n 01 regency 1 001 @ 15295416 n 0000 | the period of time during which a regent governs -15299097 28 n 01 snap 0 002 @ 15246353 n 0000 + 01252714 a 0105 | a spell of cold weather; "a cold snap in the middle of May" -15299225 28 n 01 study_hall 0 002 @ 15113229 n 0000 #p 15203229 n 0000 | a period of time during the school day that is set aside for study -15299367 28 n 03 Transfiguration 0 Transfiguration_Day 0 August_6 0 003 @ 15184170 n 0000 ;c 06226057 n 0000 + 00580512 v 0101 | (Christianity) a church festival held in commemoration of the Transfiguration of Jesus -15299585 28 n 01 usance 0 002 @ 15113229 n 0000 ;c 01090446 n 0000 | the period of time permitted by commercial usage for the payment of a bill of exchange (especially a foreign bill of exchange) -15299783 28 n 01 window 0 001 @ 15113229 n 0000 | the time period that is considered best for starting or finishing something; "the expanded window will give us time to catch the thieves"; "they had a window of less than an hour when an attack would have succeeded" -15300051 28 n 05 9/11 0 9-11 0 September_11 0 Sept._11 0 Sep_11 0 003 #p 15212739 n 0000 @i 01246697 n 0000 ;c 00759694 n 0000 | the day in 2001 when Arab suicide bombers hijacked United States airliners and used them as bombs diff --git a/corpora/en/wordnet/dict/data.verb b/corpora/en/wordnet/dict/data.verb deleted file mode 100644 index 021ab93f5..000000000 --- a/corpora/en/wordnet/dict/data.verb +++ /dev/null @@ -1,13796 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -00001740 29 v 04 breathe 0 take_a_breath 0 respire 0 suspire 3 021 * 00005041 v 0000 * 00004227 v 0000 + 03110322 a 0301 + 00831191 n 0303 + 04080833 n 0301 + 04250850 n 0105 + 00831191 n 0101 ^ 00004227 v 0103 ^ 00005041 v 0103 $ 00002325 v 0000 $ 00002573 v 0000 ~ 00002573 v 0000 ~ 00002724 v 0000 ~ 00002942 v 0000 ~ 00003826 v 0000 ~ 00004032 v 0000 ~ 00004227 v 0000 ~ 00005041 v 0000 ~ 00006697 v 0000 ~ 00007328 v 0000 ~ 00017031 v 0000 02 + 02 00 + 08 00 | draw air into, and expel out of, the lungs; "I can breathe better when the air is clean"; "The patient is respiring" -00002325 29 v 01 respire 1 005 $ 00001740 v 0000 @ 02108377 v 0000 + 03110322 a 0101 + 00831191 n 0103 + 00830811 n 0101 01 + 02 00 | undergo the biomedical and metabolic processes of respiration by taking up oxygen and producing carbon monoxide -00002573 29 v 01 respire 2 003 $ 00001740 v 0000 @ 00001740 v 0000 + 03110322 a 0101 01 + 02 00 | breathe easily again, as after exertion or anxiety -00002724 29 v 01 choke 0 002 @ 00001740 v 0000 + 14058252 n 0101 01 + 02 00 | breathe with great difficulty, as when experiencing a strong emotion; "She choked with emotion when she spoke about her deceased husband" -00002942 29 v 01 hyperventilate 0 003 @ 00001740 v 0000 + 00833870 n 0101 $ 00003133 v 0000 01 + 02 00 | breathe excessively hard and fast; "The mountain climber started to hyperventilate" -00003133 29 v 01 hyperventilate 1 003 $ 00002942 v 0000 @ 00078760 v 0000 + 00833870 n 0101 01 + 09 00 | produce hyperventilation in; "The nurses had to hyperventilate the patient" -00003316 29 v 01 aspirate 0 003 @ 00005041 v 0000 + 00836788 n 0103 + 02748491 n 0101 01 + 08 00 | suck in (air) -00003431 29 v 04 burp 0 bubble 0 belch 0 eruct 0 005 @ 00105333 v 0000 + 00117578 n 0405 + 00117578 n 0301 + 09229709 n 0201 + 00117578 n 0103 01 + 02 00 | expel gas from the stomach; "In China it is polite to burp at the table" -00003662 29 v 01 force_out 0 001 @ 00105333 v 0000 02 + 08 00 + 11 00 | emit or cause to move with force of effort; "force out the air"; "force out the splinter" -00003826 29 v 02 hiccup 0 hiccough 0 003 @ 00001740 v 0000 + 14359459 n 0202 + 14359459 n 0101 01 + 02 00 | breathe spasmodically, and make a sound; "When you have to hiccup, drink a glass of cold water" -00004032 29 v 02 sigh 0 suspire 4 004 @ 00001740 v 0000 + 07129602 n 0202 + 07393756 n 0101 + 07129602 n 0101 01 + 02 00 | heave or utter a sigh; breathe deeply and heavily; "She sighed sadly" -00004227 29 v 03 exhale 0 expire 0 breathe_out 0 008 @ 00001740 v 0000 + 03110610 a 0201 + 00835267 n 0202 + 14842091 n 0102 + 00835267 n 0101 ! 00005041 v 0101 ~ 00006523 v 0000 ~ 00007012 v 0000 02 + 02 00 + 08 00 | expel air; "Exhale when you lift the weight" -00004492 29 v 01 hold 4 001 @ 02422663 v 0000 01 + 08 00 | keep from exhaling or expelling; "hold your breath" -00004605 29 v 03 exhale 1 give_forth 0 emanate 0 004 @ 00105333 v 0000 + 15109745 n 0301 + 01253060 n 0302 + 14842091 n 0102 02 + 08 00 + 11 00 | give out (breath or an odor); "The chimney exhales a thick smoke" -00004819 29 v 01 sneeze 0 005 * 00004227 v 0000 @ 00010241 v 0000 + 10616578 n 0101 + 14314850 n 0102 + 14314850 n 0101 01 + 02 00 | exhale spasmodically, as when an irritant entered one's nose; "Pepper makes me sneeze" -00005041 29 v 03 inhale 0 inspire 0 breathe_in 0 014 @ 00001740 v 0000 + 03110485 a 0201 + 00836788 n 0202 + 02749365 a 0101 + 14919156 n 0101 + 00836788 n 0101 + 04080833 n 0102 ! 00004227 v 0101 ~ 00003316 v 0000 ~ 00007549 v 0000 ~ 00101779 v 0000 ~ 00109263 v 0000 ~ 01199009 v 0000 ~ 01200245 v 0000 02 + 02 00 + 08 00 | draw in (air); "Inhale deeply"; "inhale the fresh mountain air"; "The patient has trouble inspiring"; "The lung cancer patient cannot inspire air very well" -00005526 29 v 04 pant 0 puff 0 gasp 0 heave 1 007 @ 00007012 v 0000 + 00834135 n 0402 + 00837098 n 0301 + 00835501 n 0202 + 00834460 n 0201 + 00837098 n 0102 + 00834135 n 0101 01 + 02 00 | breathe noisily, as when one is exhausted; "The runners reached the finish line, panting heavily" -00005815 29 v 01 cough 0 008 @ 00006238 v 0000 + 14359174 n 0101 + 14359174 n 0102 ^ 00006238 v 0103 ^ 00006238 v 0102 ^ 02200341 v 0101 ~ 00006100 v 0000 ~ 00035089 v 0000 02 + 02 00 + 08 00 | exhale abruptly, as when one has a chest cold or congestion; "The smoker coughs all day" -00006100 29 v 02 hack 0 whoop 0 001 @ 00005815 v 0000 01 + 02 00 | cough spasmodically; "The patient with emphysema is hacking all day" -00006238 29 v 05 expectorate 0 cough_up 0 cough_out 0 spit_up 0 spit_out 1 007 @ 00104868 v 0000 + 13477934 n 0101 + 00118552 n 0103 + 10636874 n 0102 ~ 00005815 v 0000 ~ 00101956 v 0000 ~ 00102303 v 0000 01 + 02 00 | discharge (phlegm or sputum) from the lungs and out of the mouth -00006523 29 v 01 snort 0 003 @ 00004227 v 0000 + 10617501 n 0101 + 00834460 n 0103 01 + 02 00 | make a snorting sound by exhaling hard; "The critic snorted contemptuously" -00006697 29 v 01 wheeze 0 002 @ 00001740 v 0000 + 00836407 n 0101 01 + 02 00 | breathe with difficulty -00006802 29 v 03 puff 1 huff 0 chuff 0 004 @ 00007012 v 0000 + 00834460 n 0202 + 00835501 n 0102 + 00834460 n 0101 01 + 02 00 | blow hard and loudly; "he huffed and puffed as he made his way up the mountain" -00007012 29 v 01 blow 0 005 @ 00004227 v 0000 + 00835501 n 0101 ~ 00005526 v 0000 ~ 00006802 v 0000 ~ 00007193 v 0000 01 + 02 00 | exhale hard; "blow on the soup to cool it down" -00007193 29 v 01 insufflate 0 003 @ 00007012 v 0000 + 00835830 n 0101 $ 00079629 v 0000 01 + 08 00 | blow or breathe hard on or into -00007328 29 v 01 yawn 0 004 @ 00001740 v 0000 + 00837293 n 0101 + 10803193 n 0101 + 00837293 n 0102 01 + 02 00 | utter a yawn, as from lack of oxygen or when one is tired; "The child yawned during the long performance" -00007549 29 v 02 sniff 0 sniffle 0 003 @ 00005041 v 0000 + 00836149 n 0202 + 10616670 n 0101 01 + 02 00 | inhale audibly through the nose; "the sick student was sniffling in the back row" -00007739 29 v 04 blink 0 wink 0 nictitate 0 nictate 0 010 @ 00010241 v 0000 + 00117959 n 0407 + 00117959 n 0306 + 00117959 n 0204 + 10783539 n 0201 + 00117959 n 0205 + 00117959 n 0101 + 00117959 n 0103 ~ 00008055 v 0000 ~ 00008195 v 0000 01 + 02 00 | briefly shut the eyes; "The TV announcer never seems to blink" -00008055 29 v 01 palpebrate 0 003 @ 00007739 v 0000 + 05313822 n 0103 + 01265176 n 0101 01 + 02 00 | wink or blink, especially repeatedly -00008195 29 v 02 bat 0 flutter 0 001 @ 00007739 v 0000 01 + 08 00 | wink briefly; "bat one's eyelids" -00008299 29 v 01 wink 2 003 @ 00992041 v 0000 + 06878934 n 0101 + 10783539 n 0101 01 + 22 00 | signal by winking; "She winked at him" -00008435 29 v 03 wink 1 blink 1 blink_away 0 003 @ 00462092 v 0000 + 00117959 n 0201 + 06878934 n 0101 01 + 08 00 | force to go away by blinking; "blink away tears" -00008602 29 v 02 squint 0 squinch 0 003 @ 00034288 v 0000 + 10643727 n 0101 + 00878328 n 0101 01 + 02 00 | cross one's eyes as if in strabismus; "The children squinted so as to scare each other" -00008799 29 v 01 squint 2 001 @ 00033599 v 0000 01 + 02 00 | partly close one's eyes, as when hit by direct blinding light; "The driver squinted as the sun hit his windshield" -00008977 29 v 01 wince 0 002 @ 00034288 v 0000 + 06879056 n 0101 01 + 02 00 | make a face indicating disgust or dislike; "She winced when she heard his pompous speech" -00009147 29 v 05 shed 0 molt 0 exuviate 0 moult 0 slough 0 011 @ 01513430 v 0000 + 09438055 n 0501 + 13555599 n 0502 + 01318660 n 0402 + 13516842 n 0404 + 13516842 n 0403 + 01318660 n 0201 + 13516842 n 0202 + 13516842 n 0201 + 13555599 n 0101 ~ 00009492 v 0000 01 + 01 00 | cast off hair, skin, horn, or feathers; "our dog sheds every Spring" -00009492 29 v 02 desquamate 0 peel_off 0 002 @ 00009147 v 0000 + 11445564 n 0101 01 + 01 00 | peel off in scales; "dry skin desquamates" -00009631 29 v 02 twitch 0 jerk 0 007 @ 00010054 v 0000 + 00335988 n 0201 + 00335988 n 0202 + 14361664 n 0101 + 14361664 n 0102 ~ 00009884 v 0000 $ 01891817 v 0000 02 + 02 00 + 23 00 | make an uncontrolled, short, jerky motion; "his face is twitching" -00009884 29 v 01 fibrillate 0 002 @ 00009631 v 0000 + 14362179 n 0101 01 + 01 00 | make fine, irregular, rapid twitching movements; "His heart fibrillated and he died" -00010054 29 v 02 move_involuntarily 0 move_reflexively 0 004 @ 01831531 v 0000 ~ 00009631 v 0000 ~ 00014034 v 0000 ~ 00014201 v 0000 02 + 02 00 + 23 00 | move in an uncontrolled manner -00010241 29 v 02 act_involuntarily 0 act_reflexively 0 005 @ 00010435 v 0000 ~ 00004819 v 0000 ~ 00007739 v 0000 ~ 00101629 v 0000 ~ 00102791 v 0000 01 + 02 00 | act in an uncontrolled manner -00010435 29 v 03 act 0 behave 0 do 9 035 $ 00013615 v 0000 ^ 02122522 v 0101 ~ 00010241 v 0000 ~ 00011361 v 0000 ~ 00011551 v 0000 ~ 00011698 v 0000 ~ 00011852 v 0000 ~ 00011982 v 0000 ~ 00012137 v 0000 ~ 00012267 v 0000 ~ 00012434 v 0000 ~ 00012613 v 0000 ~ 00012753 v 0000 ~ 00012854 v 0000 ~ 00012944 v 0000 ~ 00013172 v 0000 ~ 00013328 v 0000 ~ 00013615 v 0000 ~ 00013858 v 0000 ~ 00105554 v 0000 ~ 00106843 v 0000 ~ 00107369 v 0000 ~ 00107468 v 0000 $ 01721556 v 0000 ~ 01784295 v 0000 ~ 02011685 v 0000 ~ 02374572 v 0000 ~ 02518043 v 0000 ~ 02518956 v 0000 ~ 02519890 v 0000 ~ 02592895 v 0000 ~ 02596908 v 0000 ~ 02600255 v 0000 ~ 02602212 v 0000 ~ 02723016 v 0000 02 + 02 00 + 07 00 | behave in a certain manner; show a certain behavior; conduct or comport oneself; "You should act like an adult"; "Don't behave like a fool"; "What makes her do this way?"; "The dog acts ferocious, but he is really afraid of people" -00011361 29 v 02 fall_over_backwards 0 bend_over_backwards 0 001 @ 00010435 v 0000 01 + 02 00 | try very hard to please someone; "She falls over backwards when she sees her mother-in-law" -00011551 29 v 01 presume 0 003 @ 00010435 v 0000 + 04838727 n 0101 + 01225562 n 0101 01 + 02 00 | take liberties or act with too much confidence -00011698 29 v 02 vulgarize 0 vulgarise 0 002 @ 00010435 v 0000 + 01950198 a 0105 01 + 02 00 | act in a vulgar manner; "The drunkard tends to vulgarize" -00011852 29 v 02 optimize 0 optimise 0 001 @ 00010435 v 0000 01 + 02 00 | act as an optimist and take a sunny view of the world -00011982 29 v 01 quack 0 004 @ 00010435 v 0000 ;c 00612160 n 0000 + 10497202 n 0101 + 00633108 n 0101 01 + 02 00 | act as a medical quack or a charlatan -00012137 29 v 01 menace 0 002 @ 00010435 v 0000 + 06733782 n 0101 01 + 02 00 | act in a threatening manner; "A menacing person" -00012267 29 v 01 make 8 003 $ 02289295 v 0000 $ 02355596 v 0000 @ 00010435 v 0000 01 + 09 00 | act in a certain way so as to acquire; "make friends"; "make enemies" -00012434 29 v 03 swagger 0 bluster 0 swash 0 003 @ 00010435 v 0000 + 10274318 n 0202 + 10682038 n 0101 01 + 02 00 | act in an arrogant, overly self-assured, or conceited manner -00012613 29 v 01 freeze 2 001 @ 00010435 v 0000 01 + 02 00 | suddenly behave coldly and formally; "She froze when she saw her ex-husband" -00012753 29 v 01 wanton 0 001 @ 00010435 v 0000 01 + 02 00 | behave extremely cruelly and brutally -00012854 29 v 01 romanticize 0 001 @ 00010435 v 0000 01 + 02 00 | act in a romantic way -00012944 29 v 04 sentimentalise 0 sentimentalize 0 sentimentize 0 sentimentise 0 003 @ 00010435 v 0000 + 01219306 n 0201 + 01219306 n 0102 01 + 02 00 | act in a sentimental way or indulge in sentimental thoughts or expression -00013172 29 v 01 bungle 0 003 @ 00010435 v 0000 + 00074790 n 0104 + 09879744 n 0101 01 + 02 00 | spoil by behaving clumsily or foolishly; "I bungled it!" -00013328 29 v 02 play 0 toy 0 003 @ 00010435 v 0000 + 03964744 n 0202 + 00041188 n 0101 01 + 08 00 | engage in an activity as if it were a game rather than take it seriously; "They played games on their opponents"; "play the stock market"; "play with her feelings"; "toy with an idea" -00013615 29 v 03 act 1 play 1 act_as 0 004 @ 00010435 v 0000 + 07014029 n 0101 $ 00010435 v 0000 $ 01719302 v 0000 01 + 09 00 | pretend to have certain qualities or state of mind; "He acted the idiot"; "She plays deaf when the news are bad" -00013858 29 v 01 stooge 0 002 @ 00010435 v 0000 + 10098092 n 0103 01 + 02 00 | act as a stooge, in a compliant or subordinate manner; "He stooged for the flamboyant Senator" -00014034 29 v 02 shake 0 didder 0 003 @ 00010054 v 0000 + 00867983 n 0103 + 14004572 n 0101 02 + 01 00 + 02 00 | move with or as if with a tremor; "his hands shook" -00014201 29 v 02 shiver 0 shudder 0 004 @ 00010054 v 0000 + 00348801 n 0202 + 00867983 n 0102 + 14340287 n 0102 02 + 01 00 + 02 00 | shake, as from cold; "The children are shivering--turn on the heat!" -00014405 29 v 01 rest 0 005 @ 01547390 v 0000 + 10524973 n 0101 ! 00014549 v 0101 ~ 00014742 v 0000 ~ 00016380 v 0000 01 + 02 00 | be at rest -00014549 29 v 02 be_active 0 move 6 005 + 14004317 n 0201 + 00165942 n 0201 + 10484526 n 0202 ! 00014405 v 0101 ~ 02083806 v 0000 01 + 02 00 | be in a state of action; "she is always moving" -00014742 29 v 05 sleep 0 kip 0 slumber 0 log_Z's 0 catch_some_Z's 0 018 @ 00014405 v 0000 + 14024882 n 0302 + 10610465 n 0302 + 15273955 n 0201 + 15273626 n 0101 + 14024882 n 0101 + 10610465 n 0101 + 05681117 n 0101 ! 00020133 v 0101 ^ 00015806 v 0102 ^ 00015806 v 0101 ^ 01177314 v 0102 ^ 01177505 v 0102 ~ 00015163 v 0000 ~ 00015498 v 0000 ~ 00015806 v 0000 ~ 00015946 v 0000 ~ 00016183 v 0000 01 + 02 00 | be asleep -00015163 29 v 02 bundle 0 practice_bundling 0 001 @ 00014742 v 0000 01 + 02 00 | sleep fully clothed in the same bed with one's betrothed -00015303 29 v 03 snooze 0 drowse 1 doze 0 005 @ 00015498 v 0000 + 00858849 n 0301 ^ 00017282 v 0307 + 00858849 n 0202 + 00858377 n 0106 01 + 02 00 | sleep lightly or for a short period of time -00015498 29 v 03 nap 0 catnap 0 catch_a_wink 0 005 @ 00014742 v 0000 + 00858377 n 0202 + 00858377 n 0101 + 15273626 n 0102 ~ 00015303 v 0000 01 + 02 00 | take a siesta; "She naps everyday after lunch for an hour" -00015713 29 v 01 oversleep 0 001 * 00014742 v 0000 01 + 02 00 | sleep longer than intended -00015806 29 v 02 sleep_late 0 sleep_in 0 001 @ 00014742 v 0000 01 + 02 00 | sleep later than usual or customary; "On Sundays, I sleep in" -00015946 29 v 02 hibernate 0 hole_up 0 005 @ 00014742 v 0000 + 14013981 n 0101 + 14014849 n 0101 ! 00016183 v 0101 ! 00016183 v 0102 01 + 01 00 | sleep during winter; "Bears must eat a lot of food before they hibernate in their caves" -00016183 29 v 02 estivate 0 aestivate 0 005 @ 00014742 v 0000 + 14014162 n 0202 ! 00015946 v 0201 + 14014162 n 0101 ! 00015946 v 0101 01 + 01 00 | sleep during summer; "certain animals estivate" -00016380 29 v 01 drowse 0 004 @ 00014405 v 0000 + 00858849 n 0102 ^ 00017282 v 0108 ~ 00016573 v 0000 01 + 02 00 | be on the verge of sleeping; "The students were drowsing in the 8 AM class" -00016573 29 v 01 nod 2 001 @ 00016380 v 0000 02 + 01 00 + 02 00 | be almost asleep; "The old man sat nodding by the fireplace" -00016702 29 v 01 nod 3 001 + 00336430 n 0101 02 + 01 00 + 02 00 | let the head fall forward through drowsiness; "The old man was nodding in his chair" -00016855 29 v 01 zonk_out 0 001 @ 00017282 v 0000 01 + 02 00 | fall asleep fast, as when one is extremely tired; "after the long drive, we zonked out and slept for 10 hours" -00017031 29 v 03 snore 0 saw_wood 0 saw_logs 0 006 * 00014742 v 0000 @ 00001740 v 0000 + 00835976 n 0101 + 07394478 n 0101 + 10617397 n 0101 + 00835976 n 0102 01 + 02 00 | breathe noisily during one's sleep; "she complained that her husband snores" -00017282 29 v 08 fall_asleep 0 dope_off 0 flake_out 0 drift_off 0 nod_off 0 drop_off 0 doze_off 0 drowse_off 0 002 ! 00018526 v 0101 ~ 00016855 v 0000 01 + 02 00 | change from a waking to a sleeping state; "he always falls asleep during lectures" -00017531 29 v 02 bed_down 0 bunk_down 0 002 @ 00017865 v 0000 ~ 00017674 v 0000 02 + 02 00 + 22 00 | go to bed; "We bedded down at midnight" -00017674 29 v 03 doss 0 doss_down 0 crash 0 002 @ 00017531 v 0000 + 10026976 n 0101 02 + 02 00 + 22 00 | sleep in a convenient place; "You can crash here, though it's not very comfortable" -00017865 29 v 0a go_to_bed 0 turn_in 0 bed 0 crawl_in 0 kip_down 0 hit_the_hay 0 hit_the_sack 0 sack_out 0 go_to_sleep 1 retire 0 003 ! 00018158 v 0202 ! 00018158 v 0101 ~ 00017531 v 0000 01 + 02 00 | prepare for sleep; "I usually turn in at midnight"; "He goes to bed at the crack of dawn" -00018158 29 v 05 get_up 0 turn_out 0 arise 0 uprise 0 rise 8 004 + 00324384 n 0501 + 10532576 n 0501 ! 00017865 v 0202 ! 00017865 v 0101 01 + 02 00 | get up and out of bed; "I get up at 7 A.M. every day"; "They rose early"; "He uprose at night" -00018405 29 v 01 get_up 1 001 @ 01974062 v 0000 02 + 09 00 + 10 00 | cause to rise; "The sergeant got us up at 2 A.M." -00018526 29 v 07 wake_up 0 awake 0 arouse 5 awaken 1 wake 1 come_alive 0 waken 0 007 * 00014742 v 0000 @ 00146138 v 0000 + 01259773 n 0702 + 10763878 n 0501 + 01259773 n 0401 + 05678745 n 0301 ! 00017282 v 0101 01 + 02 00 | stop sleeping; "She woke up to the sound of the alarm clock" -00018813 29 v 06 awaken 0 wake 2 waken 1 rouse 2 wake_up 1 arouse 1 009 @ 00126264 v 0000 + 10763985 n 0603 + 05678745 n 0601 + 10763985 n 0402 + 01259773 n 0101 ! 00019273 v 0101 ~ 00019182 v 0000 ~ 00022099 v 0000 ~ 00107231 v 0000 02 + 09 00 + 10 00 | cause to become awake or conscious; "He was roused by the drunken men in the street"; "Please wake me at 6 AM." -00019182 29 v 01 reawaken 0 001 @ 00018813 v 0000 02 + 09 00 + 10 00 | awaken once again -00019273 29 v 01 cause_to_sleep 0 003 > 00014742 v 0000 @ 00126264 v 0000 ! 00018813 v 0101 02 + 09 00 + 10 00 | make fall asleep; "The soft music caused us to fall asleep" -00019448 29 v 01 affect 0 011 @ 00126264 v 0000 ~ 00019792 v 0000 ~ 00019982 v 0000 ~ 00022316 v 0000 ~ 00022686 v 0000 ~ 00025203 v 0000 ~ 00025654 v 0000 ~ 00031181 v 0000 ~ 00106723 v 0000 ~ 00728224 v 0000 ~ 01190494 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | act physically on; have an effect upon; "the medicine affects my heart rate" -00019792 29 v 01 attack 0 003 @ 00019448 v 0000 + 13435548 n 0101 + 09821253 n 0101 01 + 11 00 | begin to injure; "The cancer cells are attacking his liver"; "Rust is attacking the metal" -00019982 29 v 01 ulcerate 0 003 @ 00019448 v 0000 + 03142636 a 0101 + 14211609 n 0101 01 + 11 00 | affect with an ulcer; "Her stomach was ulcerated" -00020133 29 v 01 wake 0 003 + 05678300 n 0101 ! 00014742 v 0101 ~ 00020259 v 0000 01 + 02 00 | be awake, be alert, be there -00020259 29 v 02 stay_up 0 sit_up 0 001 @ 00020133 v 0000 01 + 02 00 | not go to bed; "Don't stay up so late--you have to go to work tomorrow"; "We sat up all night to watch the election" -00020449 29 v 01 keep_up 0 001 > 00020259 v 0000 02 + 09 00 + 10 00 | prevent from going to bed at night; "The anticipation of the trip kept the children up all night"; "I kept myself up all night studying for the exam" -00020671 29 v 04 hypnotize 0 hypnotise 0 mesmerize 0 mesmerise 0 008 @ 00022316 v 0000 + 11176932 n 0401 + 11176932 n 0301 + 10195261 n 0203 + 14026592 n 0201 + 10195261 n 0102 + 14026592 n 0101 ~ 00020926 v 0000 02 + 09 00 + 10 00 | induce hypnosis in -00020926 29 v 02 entrance 0 spellbind 0 003 @ 00020671 v 0000 + 10634990 n 0201 + 07491286 n 0101 02 + 09 00 + 10 00 | put into a trance -00021065 29 v 06 anesthetize 0 anaesthetize 0 anesthetise 0 anaesthetise 0 put_under 0 put_out 0 012 @ 00084738 v 0000 + 02710766 n 0402 + 02710766 n 0301 + 03041491 a 0201 + 02710766 n 0202 + 02710766 n 0101 ! 00022099 v 0101 ~ 00021554 v 0000 ~ 00021679 v 0000 ~ 00021826 v 0000 ~ 00021997 v 0000 ~ 02198423 v 0000 03 + 08 00 + 09 00 + 10 00 | administer an anesthetic drug to; "The patient must be anesthetized before the operation"; "anesthetize the gum before extracting the teeth" -00021554 29 v 02 etherize 0 etherise 0 002 @ 00021065 v 0000 + 03299929 n 0101 02 + 09 00 + 10 00 | anesthetize with ether -00021679 29 v 02 cocainize 0 cocainise 0 003 @ 00021065 v 0000 + 03060294 n 0202 + 03060294 n 0102 02 + 09 00 + 10 00 | anesthetize with cocaine -00021826 29 v 01 chloroform 0 002 @ 00021065 v 0000 + 03022406 n 0101 01 + 09 00 | anesthetize with chloroform; "Doctors used to put people under by chloroforming them" -00021997 29 v 01 freeze 1 002 @ 00021065 v 0000 ;c 00671351 n 0000 01 + 09 00 | anesthetize by cold -00022099 29 v 04 bring_to 0 bring_back 0 bring_round 0 bring_around 0 003 @ 00018813 v 0000 ! 00021065 v 0101 ~ 00098083 v 0000 02 + 09 00 + 10 00 | return to consciousness; "These pictures bring back sad memories" -00022316 29 v 05 sedate 0 calm 0 tranquilize 0 tranquillize 0 tranquillise 0 009 @ 00019448 v 0000 + 04470232 n 0503 + 04470232 n 0402 + 04470232 n 0301 + 04903813 n 0202 + 02308472 a 0103 + 00695300 n 0101 ! 00022686 v 0101 ~ 00020671 v 0000 01 + 09 00 | cause to be calm or quiet as by administering a sedative to; "The patient must be sedated before the operation" -00022686 29 v 06 stimulate 0 arouse 0 brace 0 energize 0 energise 0 perk_up 1 018 @ 00019448 v 0000 + 10056103 n 0502 ! 00023244 v 0502 + 10056103 n 0401 + 04836683 n 0401 + 05035961 n 0401 + 14050143 n 0401 + 11452218 n 0401 + 01046984 n 0401 ! 00023244 v 0401 + 02888133 n 0301 + 02309341 a 0101 + 04320126 n 0101 ! 00022316 v 0101 ~ 00023380 v 0000 ~ 00024279 v 0000 ~ 00028362 v 0000 ~ 00192836 v 0000 05 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | cause to be alert and energetic; "Coffee and tea stimulate me"; "This herbal infusion doesn't stimulate" -00023244 29 v 02 de-energize 0 de-energise 0 003 @ 00224901 v 0000 ! 00022686 v 0205 ! 00022686 v 0104 01 + 10 00 | deprive of energy -00023380 29 v 01 cathect 0 001 @ 00022686 v 0000 01 + 10 00 | inject with libidinal energy -00023473 29 v 05 perk_up 0 perk 0 percolate 0 pick_up 0 gain_vigor 0 002 @ 00092690 v 0000 + 03930777 n 0401 01 + 02 00 | gain or regain energy; "I picked up after a nap" -00023646 29 v 04 faint 0 conk 0 swoon 0 pass_out 0 003 @ 00023868 v 0000 + 07478318 n 0302 + 07478318 n 0101 01 + 02 00 | pass out from weakness, physical or emotional distress due to a loss of blood supply to the brain -00023868 29 v 03 zonk_out 1 pass_out 1 black_out 0 003 @ 00146138 v 0000 + 05679800 n 0301 ~ 00023646 v 0000 01 + 02 00 | lose consciousness due to a sudden trauma, for example -00024047 29 v 03 come_to 0 revive 2 resuscitate 1 003 $ 00024279 v 0000 $ 00098083 v 0000 @ 00146138 v 0000 01 + 02 00 | return to consciousness; "The patient came to quickly"; "She revived after the doctor gave her an injection" -00024279 29 v 09 animate 0 recreate 2 reanimate 0 revive 0 renovate 0 repair 3 quicken 0 vivify 0 revivify 0 006 @ 00022686 v 0000 + 01047338 n 0905 + 01048466 n 0801 + 09402704 n 0701 + 00401783 n 0202 $ 00024047 v 0000 02 + 09 00 + 10 00 | give new life or energy to; "A hot soup will revive me"; "This will renovate my spirits"; "This treatment repaired my health" -00024649 29 v 03 refresh 0 freshen 0 refreshen 1 004 @ 00126264 v 0000 + 03395745 n 0201 ^ 00024814 v 0204 ! 00075021 v 0101 02 + 09 00 + 10 00 | make fresh again -00024814 29 v 04 freshen 2 refresh 2 refreshen 0 freshen_up 2 003 @ 00109660 v 0000 + 00401783 n 0201 ~ 00025034 v 0000 02 + 01 00 + 02 00 | become or make oneself fresh again; "She freshened up after the tennis game" -00025034 29 v 02 wash_up 0 lave 2 003 @ 00024814 v 0000 + 00255710 n 0203 + 00255214 n 0101 01 + 02 00 | wash one's face and hands; "She freshened up in the bathroom" -00025203 29 v 03 tense 0 strain 0 tense_up 0 007 > 00026153 v 0000 @ 00019448 v 0000 + 11515325 n 0201 ! 00025654 v 0202 + 14544335 n 0101 ! 00025654 v 0101 ~ 00027268 v 0000 02 + 08 00 + 10 00 | cause to be tense and uneasy or nervous or anxious; "he got a phone call from his lawyer that tensed him up" -00025510 29 v 01 crick 0 002 @ 01222645 v 0000 + 14361182 n 0101 01 + 08 00 | twist (a body part) into a strained position; "crick your neck" -00025654 29 v 06 relax 1 unstrain 0 unlax 1 loosen_up 1 unwind 1 make_relaxed 0 009 > 00026385 v 0000 @ 00019448 v 0000 ! 00025203 v 0202 + 02309004 a 0101 + 07515974 n 0102 + 09407043 n 0101 + 04072811 n 0101 ! 00025203 v 0101 ~ 00025985 v 0000 03 + 08 00 + 09 00 + 10 00 | cause to feel relaxed; "A hot bath always relaxes me" -00025985 29 v 01 unbend 0 001 @ 00025654 v 0000 01 + 08 00 | release from mental strain, tension, or formality; "unbend the mind from absorbing too much information" -00026153 29 v 02 tense 1 tense_up 1 004 @ 00146138 v 0000 + 14544335 n 0101 + 05573306 n 0101 ! 00026385 v 0101 03 + 01 00 + 02 00 + 23 00 | become tense, nervous, or uneasy; "He tensed up when he saw his opponent enter the room" -00026385 29 v 06 relax 0 loosen_up 0 unbend 1 unwind 0 decompress 0 slow_down 0 007 @ 00146138 v 0000 + 02309004 a 0101 + 13549488 n 0101 + 01064148 n 0104 ! 00026153 v 0101 ~ 00026734 v 0000 ~ 00026941 v 0000 02 + 02 00 + 23 00 | become less tense, rest, or take one's ease; "He relaxed in the hot tub"; "Let's all relax after a hard day's work" -00026734 29 v 02 vege_out 0 vegetate 0 003 @ 00026385 v 0000 + 02833331 a 0201 + 01065057 n 0201 01 + 02 00 | engage in passive relaxation; "After a hard day's work, I vegetate in front of the television" -00026941 29 v 02 sit_back 0 take_it_easy 0 001 @ 00026385 v 0000 01 + 02 00 | settle into a comfortable sitting position -00027064 29 v 03 limber_up 0 warm_up 0 loosen_up 3 002 @ 00099721 v 0000 + 01144716 n 0201 01 + 02 00 | make one's body limber or suppler by stretching, as if to prepare for strenuous physical activity -00027268 29 v 02 stretch 1 extend 0 007 @ 00025203 v 0000 + 00369532 n 0201 + 05294606 n 0202 + 00628692 n 0101 + 00628692 n 0102 ~ 00027570 v 0000 ~ 00028167 v 0000 02 + 08 00 + 02 01 | extend one's limbs or muscles, or the entire body; "Stretch your legs!"; "Extend your right arm above your head" -00027570 29 v 01 spread-eagle 0 001 @ 00027268 v 0000 01 + 09 00 | stretch out completely; "They spread-eagled him across the floor" -00027705 29 v 06 exsert 0 stretch_out 1 put_out 1 extend 1 hold_out 0 stretch_forth 0 005 @ 00992041 v 0000 + 00944449 a 0402 + 01434530 a 0401 + 05294606 n 0402 ~ 00028010 v 0000 01 + 08 00 | thrust or extend out; "He held out his hand"; "point a finger"; "extend a hand"; "the bee exserted its sting" -00028010 29 v 01 hyperextend 0 002 @ 00027705 v 0000 + 00369694 n 0101 01 + 08 00 | extend a joint beyond its normal range; "Don't hyperextend your elbow" -00028167 29 v 02 crane 0 stretch_out 0 002 @ 00027268 v 0000 + 02012849 n 0101 01 + 08 00 | stretch (the neck) so as to see better; "The women craned their necks to see the President drive by" -00028362 29 v 02 invigorate 0 reinvigorate 0 004 @ 00022686 v 0000 + 04631700 n 0103 + 01048466 n 0102 + 09402704 n 0102 01 + 10 00 | impart vigor, strength, or vitality to; "Exercise is invigorating" -00028565 29 v 01 smile 0 010 @ 00034288 v 0000 + 06878071 n 0101 + 05601357 n 0106 + 10614363 n 0101 + 06878071 n 0102 ~ 00028876 v 0000 ~ 00029025 v 0000 ~ 00029214 v 0000 ~ 00029336 v 0000 ~ 00032539 v 0000 02 + 02 00 + 22 00 | change one's facial expression by spreading the lips, often to signal pleasure -00028876 29 v 01 dimple 0 002 @ 00028565 v 0000 + 05599874 n 0101 01 + 02 00 | produce dimples while smiling; "The child dimpled up to the adults" -00029025 29 v 01 grin 0 004 @ 00028565 v 0000 + 10147262 n 0101 + 06878071 n 0104 + 06878071 n 0103 01 + 02 00 | to draw back the lips and reveal the teeth, in a smile, grimace, or snarl -00029214 29 v 01 beam 0 001 @ 00028565 v 0000 01 + 02 00 | smile radiantly; express joy through one's facial expression -00029336 29 v 02 smirk 0 simper 0 005 @ 00028565 v 0000 + 10599215 n 0201 + 10614507 n 0101 + 06878580 n 0101 ~ 00029518 v 0000 02 + 02 00 + 22 00 | smile affectedly or derisively -00029518 29 v 01 fleer 0 002 @ 00029336 v 0000 + 06716117 n 0101 02 + 02 00 + 22 00 | to smirk contemptuously -00029630 29 v 01 bray 0 002 @ 00031820 v 0000 + 07378059 n 0101 02 + 02 00 + 22 00 | laugh loudly and harshly -00029742 29 v 01 bellylaugh 0 001 @ 00031820 v 0000 01 + 02 00 | laugh a deep, hearty laugh -00029836 29 v 02 roar 0 howl 0 005 @ 00031820 v 0000 + 07126734 n 0201 + 06778925 n 0203 + 07126734 n 0202 + 07121361 n 0108 01 + 02 00 | laugh unrestrainedly and heartily -00030010 29 v 02 snicker 0 snigger 0 003 @ 00031820 v 0000 + 07128060 n 0203 + 07128060 n 0101 02 + 02 00 + 22 00 | laugh quietly -00030142 29 v 02 giggle 0 titter 0 005 @ 00031820 v 0000 + 10713124 n 0201 + 07128225 n 0201 + 10713124 n 0102 + 07127693 n 0101 01 + 02 00 | laugh nervously; "The girls giggled when the rock star came into the classroom" -00030366 29 v 02 break_up 0 crack_up 0 001 @ 00031820 v 0000 01 + 02 00 | laugh unrestrainedly -00030463 29 v 01 break a 001 @ 00224901 v 0000 01 + 10 00 | weaken or destroy in spirit or body; "His resistance was broken"; "a man broken by the terrible experience of near-death" -00030647 29 v 02 break_down 0 collapse 0 005 @ 00065639 v 0000 + 14066203 n 0201 + 14066492 n 0101 ~ 00030853 v 0000 ~ 00031277 v 0000 01 + 02 00 | collapse due to fatigue, an illness, or a sudden attack -00030853 29 v 01 drop_like_flies 0 001 @ 00030647 v 0000 02 + 01 00 + 02 00 | rapidly collapse, die, or drop out in large numbers; "the contestants dropped like flies when the thermometer hit one hundred degrees" -00031068 29 v 01 cramp 0 001 @ 00065639 v 0000 01 + 02 00 | suffer from sudden painful contraction of a muscle -00031181 29 v 01 cramp 1 001 @ 00019448 v 0000 01 + 10 00 | affect with or as if with a cramp -00031277 29 v 02 fall_over 0 go_over 0 001 @ 00030647 v 0000 01 + 02 00 | fall forward and down; "The old woman went over without a sound" -00031418 29 v 01 cackle 0 002 @ 00031820 v 0000 + 07127451 n 0101 01 + 02 00 | emit a loud, unpleasant kind of laughing -00031540 29 v 02 guffaw 0 laugh_loudly 1 002 @ 00031820 v 0000 + 07127790 n 0101 02 + 02 00 + 22 00 | laugh boisterously -00031663 29 v 03 chuckle 0 chortle 0 laugh_softly 0 003 @ 00031820 v 0000 + 07127563 n 0201 + 07127563 n 0102 01 + 02 00 | laugh quietly or with restraint -00031820 29 v 03 laugh 0 express_joy 0 express_mirth 0 021 @ 01802494 v 0000 + 01265308 a 0105 + 06778102 n 0103 + 06878404 n 0101 + 07127006 n 0101 + 10248876 n 0101 ! 00066191 v 0101 ^ 00802136 v 0101 ^ 00802136 v 0102 ^ 00851933 v 0105 ~ 00029630 v 0000 ~ 00029742 v 0000 ~ 00029836 v 0000 ~ 00030010 v 0000 ~ 00030142 v 0000 ~ 00030366 v 0000 ~ 00031418 v 0000 ~ 00031540 v 0000 ~ 00031663 v 0000 ~ 00032297 v 0000 ~ 00032414 v 0000 02 + 02 00 + 22 00 | produce laughter -00032297 29 v 01 convulse 0 002 @ 00031820 v 0000 + 02511340 a 0101 02 + 02 00 + 22 00 | be overcome with laughter -00032414 29 v 01 cachinnate 0 002 @ 00031820 v 0000 + 07127350 n 0101 01 + 02 00 | laugh loudly and in an unrestrained way -00032539 29 v 01 sneer 0 005 @ 00028565 v 0000 + 06716675 n 0101 + 06716483 n 0101 + 10616379 n 0101 $ 00032778 v 0000 02 + 02 00 + 22 00 | smile contemptuously; "she sneered at her little sister's efforts to play the song on the piano" -00032778 29 v 01 sneer 1 005 $ 00032539 v 0000 @ 00943837 v 0000 + 06716675 n 0101 + 06716483 n 0101 + 10616379 n 0101 02 + 02 00 + 22 00 | express through a scornful smile; "she sneered her contempt" -00032981 29 v 04 frown 0 glower 0 lour 0 lower 0 004 @ 00034288 v 0000 + 00878797 n 0202 + 06877849 n 0101 ~ 00033852 v 0000 02 + 02 00 + 22 00 | look angry or sullen, wrinkle one's forehead, as if to signal disapproval -00033203 29 v 02 glower 1 glare 0 003 @ 00033406 v 0000 + 00878797 n 0201 + 00878797 n 0102 02 + 02 00 + 22 00 | look at with a fixed gaze; "The girl glared at the man who tried to make a pass at her" -00033406 29 v 01 stare 0 004 @ 02130524 v 0000 + 00878456 n 0101 + 10648909 n 0101 ~ 00033203 v 0000 01 + 02 00 | fixate one's eyes; "The ancestor in the painting is staring down menacingly" -00033599 29 v 01 look 0 004 @ 02604760 v 0000 + 04679738 n 0102 + 04674715 n 0101 ~ 00008799 v 0000 02 + 06 00 + 07 00 | have a certain outward or facial expression; "How does she look?"; "The child looks unhappy"; "She looked pale after the surgery" -00033852 29 v 01 scowl 0 002 @ 00032981 v 0000 + 06877849 n 0102 01 + 02 00 | frown with displeasure -00033955 29 v 01 shrug 0 003 @ 00992041 v 0000 + 07273924 n 0101 ^ 00742149 v 0101 01 + 02 00 | raise one's shoulders to indicate indifference or resignation -00034115 29 v 02 clap 0 spat 0 003 @ 00992041 v 0000 + 09926088 n 0101 + 06691989 n 0103 01 + 02 00 | clap one's hands together; "The children were clapping to the music" -00034288 29 v 03 grimace 0 make_a_face 0 pull_a_face 0 008 @ 00740577 v 0000 + 06877578 n 0101 ~ 00008602 v 0000 ~ 00008977 v 0000 ~ 00028565 v 0000 ~ 00032981 v 0000 ~ 00034634 v 0000 ~ 00034758 v 0000 01 + 02 00 | contort the face to indicate a certain mental or emotional state; "He grimaced when he saw the amount of homework he had to do" -00034634 29 v 01 screw_up 0 001 @ 00034288 v 0000 01 + 08 00 | twist into a strained configuration; "screw up one's face" -00034758 29 v 03 pout 0 mop 0 mow 0 003 @ 00034288 v 0000 + 06877742 n 0101 + 10627899 n 0104 01 + 02 00 | make a sad face and thrust out one's lower lip; "mop and mow"; "The girl pouted" -00034948 29 v 01 blow 1 002 @ 00104868 v 0000 + 00835501 n 0101 01 + 02 00 | free of obstruction by blowing air through; "blow one's nose" -00035089 29 v 02 clear_the_throat 0 hawk 1 001 @ 00005815 v 0000 01 + 02 00 | clear mucus or food from one's throat; "he cleared his throat before he started to speak" -00035259 29 v 01 shower 0 003 @ 00035603 v 0000 + 04208936 n 0101 + 00257580 n 0101 01 + 02 00 | take a shower; wash one's body in the shower; "You should shower after vigorous exercise" -00035448 29 v 01 foment 0 002 @ 00037919 v 0000 + 00708168 n 0101 01 + 08 00 | bathe with warm water or medicated lotions; "His legs should be fomented" -00035603 29 v 01 bathe 0 004 @ 00035758 v 0000 + 09843602 n 0101 + 00255214 n 0102 ~ 00035259 v 0000 01 + 02 00 | cleanse the entire body; "bathe daily" -00035758 29 v 02 cleanse 0 clean 0 012 @ 00040353 v 0000 + 00251013 n 0201 + 03040587 n 0102 + 00251013 n 0102 ~ 00035603 v 0000 ~ 00036178 v 0000 ~ 00036362 v 0000 ~ 00036932 v 0000 ~ 00037919 v 0000 ~ 00038199 v 0000 ~ 00041866 v 0000 ~ 00493052 v 0000 03 + 02 00 + 08 00 + 09 00 | clean one's body or parts thereof, as by washing; "clean up before you see your grandparents"; "clean your fingernails before dinner" -00036178 29 v 01 wash 2 003 @ 00035758 v 0000 + 00255710 n 0101 $ 00036362 v 0000 01 + 01 00 | to cleanse (itself or another animal) by licking; "The cat washes several times a day" -00036362 29 v 02 wash 0 lave 0 012 $ 00036178 v 0000 @ 00035758 v 0000 + 00255710 n 0203 + 00696487 n 0201 + 00255710 n 0101 + 00255710 n 0102 ^ 00025034 v 0101 ~ 00036685 v 0000 ~ 00036780 v 0000 ~ 00037138 v 0000 ~ 00042017 v 0000 ~ 00461234 v 0000 03 + 02 00 + 08 00 + 09 00 | cleanse (one's body) with soap and water -00036685 29 v 01 sponge_down 0 001 @ 00036362 v 0000 02 + 02 00 + 09 00 | wash with a sponge -00036780 29 v 02 scrub 0 scrub_up 0 002 @ 00036362 v 0000 + 00251780 n 0101 01 + 02 00 | wash thoroughly; "surgeons must scrub prior to an operation" -00036932 29 v 02 soap 0 lather 0 005 * 00036362 v 0000 @ 00035758 v 0000 + 09336555 n 0201 + 09439213 n 0203 + 04253437 n 0101 02 + 08 00 + 09 00 | rub soap all over, usually with the purpose of cleaning -00037138 29 v 02 gargle 0 rinse 0 002 @ 00036362 v 0000 + 14848642 n 0101 01 + 02 00 | rinse one's mouth and throat with mouthwash; "gargle with this liquid" -00037298 29 v 01 shave 0 007 @ 00040353 v 0000 + 00254769 n 0101 + 10586903 n 0101 + 04185804 n 0101 + 00254769 n 0102 ~ 00037680 v 0000 ~ 00037779 v 0000 03 + 02 00 + 08 00 + 09 00 | remove body hair with a razor -00037514 29 v 02 epilate 0 depilate 0 004 @ 00173338 v 0000 + 00211221 a 0201 + 03177165 n 0202 + 00254597 n 0201 01 + 08 00 | remove body hair; "epilate her legs" -00037680 29 v 01 razor 0 002 @ 00037298 v 0000 + 04057047 n 0101 01 + 08 00 | shave with a razor -00037779 29 v 01 tonsure 0 003 @ 00037298 v 0000 + 00254922 n 0101 + 05539717 n 0101 01 + 09 00 | shave the head of a newly inducted monk -00037919 29 v 02 bathe 1 bath 0 008 @ 00035758 v 0000 + 02807731 n 0202 + 02808440 n 0203 + 00257770 n 0201 + 00442437 n 0101 + 09843602 n 0101 + 00427853 n 0101 ~ 00035448 v 0000 02 + 02 00 + 09 00 | clean one's body by immersion into water; "The child should bathe every day" -00038199 29 v 01 douche 0 003 @ 00035758 v 0000 + 00695717 n 0101 + 03228533 n 0101 02 + 02 00 + 09 00 | direct a spray of water into a bodily cavity, for cleaning -00038365 29 v 03 comb 0 comb_out 0 disentangle 0 009 @ 00040353 v 0000 + 01244593 n 0303 + 00256961 n 0201 + 03075097 n 0101 + 03074855 n 0101 + 00256746 n 0101 + 00256746 n 0102 ~ 00038687 v 0000 ~ 00040188 v 0000 01 + 08 00 | smoothen and neaten with or as with a comb; "comb your hair before dinner"; "comb the wool" -00038687 29 v 03 slick 0 slick_down 0 sleek_down 0 002 @ 00038365 v 0000 + 04947628 n 0102 01 + 08 00 | give a smooth and glossy appearance; "slick one's hair" -00038849 29 v 07 dress 4 arrange 0 set 5 do 4 coif 0 coiffe 0 coiffure 0 007 @ 00040353 v 0000 + 05256862 n 0704 + 05256862 n 0504 + 07938773 n 0201 ~ 00039121 v 0000 ~ 00039488 v 0000 $ 00045639 v 0000 01 + 08 00 | arrange attractively; "dress my hair for the wedding" -00039121 29 v 01 bob 0 002 @ 00038849 v 0000 + 05259109 n 0101 01 + 08 00 | cut hair in the style of a bob; "Bernice bobs her hair these days!" -00039267 29 v 01 pompadour 0 002 @ 01666894 v 0000 + 05260240 n 0101 01 + 08 00 | style women's hair in a pompadour -00039385 29 v 01 marcel 0 001 @ 00039488 v 0000 02 + 02 00 + 08 00 | make a marcel in a woman's hair -00039488 29 v 01 wave 0 005 @ 00038849 v 0000 + 05259240 n 0101 ~ 00039385 v 0000 ~ 00039680 v 0000 ~ 00039824 v 0000 01 + 08 00 | set waves in; "she asked the hairdresser to wave her hair" -00039680 29 v 02 gauffer 0 goffer 0 001 @ 00039488 v 0000 01 + 08 00 | make wavy with a heated goffering iron; "goffer the trim of the dress" -00039824 29 v 01 perm 0 002 @ 00039488 v 0000 + 05260533 n 0103 01 + 08 00 | give a permanent wave to; "She perms her hair" -00039950 29 v 02 mousse 0 gel 0 002 @ 00040353 v 0000 + 03794136 n 0101 01 + 08 00 | apply a styling gel to; "she mousses her hair" -00040084 29 v 01 pomade 0 002 @ 00040353 v 0000 + 03980026 n 0101 01 + 08 00 | apply pomade to (hair) -00040188 29 v 02 tease 0 fluff 0 002 @ 00038365 v 0000 + 00256961 n 0102 01 + 08 00 | ruffle (one's hair) by combing the ends towards the scalp, for a full effect -00040353 29 v 02 groom 0 neaten 0 016 @ 00293141 v 0000 + 00828237 n 0102 ~ 00035758 v 0000 ~ 00037298 v 0000 ~ 00038365 v 0000 ~ 00038849 v 0000 ~ 00039950 v 0000 ~ 00040084 v 0000 ~ 00040766 v 0000 ~ 00040928 v 0000 ~ 00042479 v 0000 ~ 00042792 v 0000 ~ 00042936 v 0000 ~ 00043078 v 0000 ~ 00043278 v 0000 ~ 00043480 v 0000 02 + 02 00 + 09 00 | care for one's external appearance; "He is always well-groomed" -00040766 29 v 01 clean_up 0 002 @ 00040353 v 0000 + 00251013 n 0103 01 + 02 00 | make oneself clean, presentable or neat; "Clean up before you go to the party" -00040928 29 v 01 make_up 0 007 @ 00040353 v 0000 + 03714235 n 0101 + 03714235 n 0102 ~ 00041206 v 0000 ~ 00041417 v 0000 ~ 00041554 v 0000 ~ 00042173 v 0000 02 + 02 00 + 09 00 | apply make-up or cosmetics to one's face to appear prettier; "She makes herself up every morning" -00041206 29 v 01 highlight 0 002 @ 00040928 v 0000 + 03519081 n 0101 01 + 08 00 | apply a highlighter to one's cheeks or eyebrows in order to make them more prominent; "highlight the area above your eyebrows" -00041417 29 v 01 lipstick 0 002 @ 00040928 v 0000 + 03676483 n 0101 02 + 02 00 + 08 00 | apply lipstick to; "She lipsticked her mouth" -00041554 29 v 01 rouge 0 002 @ 00040928 v 0000 + 04112752 n 0101 01 + 08 00 | redden by applying rouge to; "she rouged her cheeks" -00041687 29 v 01 condition 0 002 @ 00042017 v 0000 + 03088020 n 0101 01 + 08 00 | apply conditioner to in order to make smooth and shiny; "I condition my hair after washing it" -00041866 29 v 01 floss 0 002 @ 00035758 v 0000 + 03175843 n 0102 02 + 02 00 + 08 00 | use dental floss to clean; "floss your teeth after every meal" -00042017 29 v 01 shampoo 0 004 @ 00036362 v 0000 + 00257115 n 0101 + 04183516 n 0101 ~ 00041687 v 0000 03 + 02 00 + 08 00 + 09 00 | use shampoo on (hair) -00042173 29 v 01 powder 0 004 @ 00040928 v 0000 + 03994008 n 0101 + 10461169 n 0101 ~ 00042364 v 0000 01 + 08 00 | apply powder to; "She powdered her nose"; "The King wears a powdered wig" -00042364 29 v 01 talc 0 002 @ 00042173 v 0000 + 15066367 n 0101 01 + 08 00 | apply talcum powder to (one's body) -00042479 29 v 01 manicure 0 003 @ 00040353 v 0000 + 00660783 n 0101 + 10290919 n 0101 01 + 08 00 | care for (one's hand) by cutting and shaping the nails, etc. -00042641 29 v 01 manicure 1 003 @ 01552519 v 0000 + 00660783 n 0101 + 10290919 n 0101 01 + 08 00 | trim carefully and neatly; "manicure fingernails" -00042792 29 v 01 barber 0 002 @ 00040353 v 0000 + 09838895 n 0101 01 + 01 00 | perform the services of a barber: cut the hair and/or beard of -00042936 29 v 01 pedicure 0 002 @ 00040353 v 0000 + 00660957 n 0101 01 + 08 00 | care for one's feet by cutting and shaping the nails, etc. -00043078 29 v 04 doll_up 0 do_up 0 pretty_up 0 glam_up 0 001 @ 00040353 v 0000 01 + 09 00 | use special care in dressing, making-up, etc.; "She dolled herself up for the night out with her friends" -00043278 29 v 04 spruce_up 0 spruce 0 slick_up 0 smarten_up 0 001 @ 00040353 v 0000 02 + 02 00 + 09 00 | dress and groom with particular care, as for a special occasion; "He spruced up for the party" -00043480 29 v 02 perfume 0 scent 0 005 @ 00040353 v 0000 + 05714466 n 0204 + 05714466 n 0103 + 03916031 n 0101 + 03916470 n 0101 02 + 08 00 + 09 00 | apply perfume to; "She perfumes herself every day" -00043683 29 v 04 preen 0 primp 0 plume 0 dress 5 004 @ 00044149 v 0000 + 02728440 n 0403 + 00828559 n 0201 $ 00046534 v 0000 02 + 02 00 + 09 00 | dress or groom with elaborate care; "She likes to dress when going to the opera" -00043912 29 v 01 prank 0 001 @ 00044149 v 0000 01 + 09 00 | dress up showily; "He pranked himself out in his best clothes" -00044037 29 v 01 tart_up 0 001 @ 00044149 v 0000 02 + 02 00 + 09 00 | dress up in a cheap and provocative way -00044149 29 v 10 overdress 0 dress_up 0 fig_out 0 fig_up 0 deck_up 0 gussy_up 0 fancy_up 0 trick_up 0 deck_out 0 trick_out 0 prink 0 attire 0 get_up 2 rig_out 0 tog_up 0 tog_out 0 014 $ 00044797 v 0000 $ 00051761 v 0000 @ 00046534 v 0000 + 04092168 n 0e01 + 03859958 n 0d02 + 02756098 n 0c01 ^ 00046534 v 0201 ! 00045346 v 0201 ! 00045346 v 0102 ~ 00043683 v 0000 ~ 00043912 v 0000 ~ 00044037 v 0000 ~ 00045064 v 0000 ~ 00045240 v 0000 03 + 09 00 + 02 02 + 02 01 | put on special clothes to appear particularly appealing and attractive; "She never dresses up, even when she goes to the opera"; "The young girls were all fancied up for the party" -00044797 29 v 02 dress 7 dress_up 6 006 @ 00046534 v 0000 + 02756098 n 0103 + 10033225 n 0101 $ 00044149 v 0000 $ 00046534 v 0000 ~ 00052253 v 0000 01 + 22 00 | dress in a certain manner; "She dresses in the latest Paris fashion"; "he dressed up in a suit and tie" -00045064 29 v 01 enrobe 0 001 @ 00044149 v 0000 01 + 08 00 | adorn with a robe -00045145 29 v 03 prim 0 prim_up 0 prim_out 0 001 @ 00047945 v 0000 01 + 02 00 | dress primly -00045240 29 v 02 bedizen 0 dizen 0 001 @ 00044149 v 0000 01 + 09 00 | dress up garishly and tastelessly -00045346 29 v 02 dress_down 0 underdress 0 003 @ 00046534 v 0000 ! 00044149 v 0201 ! 00044149 v 0102 01 + 02 00 | dress informally and casually; "On Fridays, employees can underdress" -00045532 29 v 01 prink 1 001 @ 00046534 v 0000 01 + 02 00 | dress very carefully and in a finicky manner -00045639 29 v 03 dress 6 groom 3 curry 0 003 $ 00038849 v 0000 @ 00293141 v 0000 + 10644301 n 0203 01 + 08 00 | give a neat appearance to; "groom the dogs"; "dress the horses" -00045817 29 v 07 reduce 0 melt_off 0 lose_weight 0 slim 0 slenderize 0 thin 0 slim_down 0 004 @ 00146138 v 0000 + 13547513 n 0101 ! 00046151 v 0101 ~ 00046022 v 0000 02 + 02 00 + 08 02 | take off weight -00046022 29 v 01 sweat_off 0 001 @ 00045817 v 0000 01 + 08 00 | lose weight by sweating; "I sweated off 3 pounds in the sauna" -00046151 29 v 02 gain 0 put_on 3 005 @ 00146138 v 0000 + 10117739 n 0101 ! 00045817 v 0101 ~ 00046382 v 0000 ~ 00107110 v 0000 02 + 02 00 + 08 01 | increase (one's body weight); "She gained 20 pounds when she stopped exercising" -00046382 29 v 03 round 0 flesh_out 0 fill_out 0 001 @ 00046151 v 0000 01 + 02 00 | become round, plump, or shapely; "The young woman is fleshing out" -00046534 29 v 02 dress 0 get_dressed 0 019 $ 00047945 v 0000 $ 00044797 v 0000 $ 00043683 v 0000 @ 00109660 v 0000 + 02728440 n 0103 + 10033082 n 0101 + 00828237 n 0101 ! 00049900 v 0101 ^ 00044149 v 0102 ^ 00045346 v 0101 ~ 00044149 v 0000 ~ 00044797 v 0000 ~ 00045346 v 0000 ~ 00045532 v 0000 ~ 00047032 v 0000 ~ 00050652 v 0000 ~ 00051637 v 0000 ~ 00051942 v 0000 ~ 00169458 v 0000 01 + 02 00 | put on clothes; "we had to dress quickly"; "dress the patient"; "Can the child dress by herself?" -00047032 29 v 01 bundle_up 0 001 @ 00046534 v 0000 01 + 09 00 | dress warmly; "Mother bundled up the children for the long way to school" -00047172 29 v 01 hat 0 003 @ 00050652 v 0000 + 03497657 n 0101 ~ 00047511 v 0000 01 + 02 00 | put on or wear a hat; "He was unsuitably hatted" -00047317 29 v 02 try_on 0 try 0 002 @ 00050652 v 0000 + 00795008 n 0102 01 + 08 00 | put on a garment in order to see whether it fits and looks nice; "Try on this sweater to see how it looks" -00047511 29 v 01 bonnet 0 002 @ 00047172 v 0000 + 02869837 n 0101 01 + 09 00 | dress in a bonnet -00047610 29 v 01 wear 2 001 @ 02630189 v 0000 02 + 05 00 + 08 00 | have or show an appearance of; "wear one's hair in a certain way" -00047745 29 v 02 wear 4 bear 2 005 @ 02630189 v 0000 + 02539359 a 0101 + 03051540 n 0104 + 00830257 n 0101 + 00830257 n 0102 01 + 08 00 | have on one's person; "He wore a red ribbon"; "bear a scar" -00047945 29 v 0a dress 1 clothe 0 enclothe 0 garb 0 raiment 0 tog 0 garment 0 habilitate 0 fit_out 0 apparel 0 026 @ 00146138 v 0000 + 02728440 n 0a01 + 03419014 n 0701 + 02742322 n 0502 + 02756098 n 0402 + 03051540 n 0201 + 02728440 n 0103 + 10033082 n 0101 + 00828237 n 0101 ~ 00045145 v 0000 $ 00046534 v 0000 ~ 00048633 v 0000 ~ 00048790 v 0000 ~ 00048912 v 0000 ~ 00049007 v 0000 ~ 00049102 v 0000 ~ 00049197 v 0000 ~ 00049309 v 0000 ~ 00049483 v 0000 ~ 00049669 v 0000 ~ 00049770 v 0000 ! 00049900 v 0101 ~ 00051511 v 0000 ~ 00051761 v 0000 ~ 00052043 v 0000 ~ 00106592 v 0000 02 + 08 00 + 09 00 | provide with clothes or put clothes on; "Parents must feed and dress their child" -00048633 29 v 02 cover f wrap_up 0 002 @ 00047945 v 0000 + 00828082 n 0101 01 + 08 00 | clothe, as if for protection from the elements; "cover your head!" -00048790 29 v 01 jacket 0 002 @ 00047945 v 0000 + 03589791 n 0101 01 + 09 00 | put a jacket on; "The men were jacketed" -00048912 29 v 01 frock 0 002 @ 00047945 v 0000 + 03236735 n 0102 01 + 09 00 | put a frock on -00049007 29 v 01 shirt 0 002 @ 00047945 v 0000 + 04197391 n 0101 01 + 09 00 | put a shirt on -00049102 29 v 01 habit 0 002 @ 00047945 v 0000 + 03473966 n 0101 01 + 09 00 | put a habit on -00049197 29 v 01 vesture 0 002 @ 00047945 v 0000 + 03051540 n 0103 01 + 09 00 | provide or cover with a cloak -00049309 29 v 02 overdress 1 overclothe 0 002 @ 00047945 v 0000 ! 00049483 v 0101 01 + 09 00 | dress too warmly; "You should not overclothe the child--she will be too hot" -00049483 29 v 01 underdress 1 002 @ 00047945 v 0000 ! 00049309 v 0101 01 + 09 00 | dress without sufficient warmth; "She was underdressed for the hiking trip and suffered hypothermia" -00049669 29 v 01 corset 0 002 @ 00047945 v 0000 + 03112869 n 0101 01 + 09 00 | dress with a corset -00049770 29 v 01 shoe 0 002 @ 00047945 v 0000 + 04199027 n 0101 01 + 09 00 | furnish with shoes; "the children were well shoed" -00049900 29 v 08 undress 0 discase 0 uncase 0 unclothe 0 strip 1 strip_down 0 disrobe 1 peel 2 009 @ 00179060 v 0000 + 10664340 n 0807 + 00531490 n 0501 + 10664340 n 0501 + 14456752 n 0101 ! 00047945 v 0101 ! 00046534 v 0101 ~ 00050454 v 0000 $ 00177243 v 0000 03 + 02 00 + 08 00 + 09 00 | get undressed; "please don't undress in front of everybody!"; "She strips in front of strangers every night for a living" -00050315 29 v 01 peel_off 1 001 @ 00050454 v 0000 01 + 08 00 | take off, as with some difficulty; "He peeled off his blood-soaked shirt" -00050454 29 v 01 take_off 3 005 @ 00049900 v 0000 ~ 00050315 v 0000 ~ 00051370 v 0000 ~ 00179227 v 0000 ~ 01590658 v 0000 01 + 08 00 | remove clothes; "take off your shirt--it's very hot in here" -00050652 29 v 05 wear 1 put_on 0 get_into 0 don 0 assume 0 007 @ 00046534 v 0000 + 02539359 a 0101 + 03051540 n 0104 ~ 00047172 v 0000 ~ 00047317 v 0000 ~ 00051060 v 0000 ~ 00051170 v 0000 01 + 08 00 | put clothing on one's body; "What should I wear today?"; "He put on his best suit for the wedding"; "The princess donned a long blue dress"; "The queen assumed the stately robes"; "He got into his jeans" -00051060 29 v 01 scarf 0 002 @ 00050652 v 0000 + 04143897 n 0101 01 + 08 00 | wrap in or adorn with a scarf -00051170 29 v 01 slip_on 0 003 @ 00050652 v 0000 + 04241249 n 0101 ! 00051370 v 0101 01 + 08 00 | put on with ease or speed; "slip into something more comfortable after work"; "slip on one's shoes" -00051370 29 v 01 slip_off 0 002 @ 00050454 v 0000 ! 00051170 v 0101 01 + 08 00 | take off with ease or speed; "She slipped off her jacket" -00051511 29 v 01 coat 0 003 @ 00047945 v 0000 + 03057021 n 0101 + 03058603 n 0101 01 + 09 00 | cover or provide with a coat -00051637 29 v 01 cross-dress 0 002 @ 00046534 v 0000 + 10726031 n 0102 01 + 02 00 | dress in the clothes of the other sex -00051761 29 v 02 costume 0 dress_up 4 003 @ 00047945 v 0000 + 03113835 n 0101 $ 00044149 v 0000 02 + 02 00 + 09 00 | dress in a costume; "We dressed up for Halloween as pumpkins" -00051942 29 v 01 dandify 0 002 @ 00046534 v 0000 + 09991026 n 0101 01 + 02 00 | dress like a dandy -00052043 29 v 02 vest 0 robe 0 006 @ 00047945 v 0000 + 03450516 n 0202 + 04097866 n 0201 + 03051540 n 0103 + 04532106 n 0101 $ 00052253 v 0000 01 + 09 00 | clothe formally; especially in ecclesiastical robes -00052253 29 v 01 vest 1 002 $ 00052043 v 0000 @ 00044797 v 0000 01 + 02 00 | clothe oneself in ecclesiastical garments -00052374 29 v 02 wear 0 have_on 0 004 * 00046534 v 0000 + 02539359 a 0101 + 03051540 n 0104 + 10771809 n 0101 01 + 08 00 | be dressed in; "She was wearing yellow that day" -00052548 29 v 04 inseminate 0 fecundate 0 fertilize 0 fertilise 0 010 @ 00126264 v 0000 + 07436986 n 0301 + 07436986 n 0203 + 00845178 n 0101 + 05404336 n 0101 ~ 00052845 v 0000 ~ 00053159 v 0000 ~ 00053341 v 0000 ~ 00053656 v 0000 ~ 00054059 v 0000 01 + 09 00 | introduce semen into (a female) -00052845 29 v 01 stratify 0 003 $ 01308681 v 0000 @ 00052548 v 0000 + 00919877 n 0101 01 + 11 00 | render fertile and preserve by placing between layers of earth or sand; "stratify seeds" -00053035 29 v 01 quicken 2 002 @ 01831531 v 0000 + 14048134 n 0101 01 + 02 00 | show signs of life; "the fetus quickened" -00053159 29 v 04 impregnate 0 knock_up 0 bang_up 0 prang_up 0 003 @ 00052548 v 0000 + 07436986 n 0104 $ 00053341 v 0000 01 + 09 00 | make pregnant; "He impregnated his wife again" -00053341 29 v 01 impregnate 1 004 $ 00053159 v 0000 @ 00052548 v 0000 + 07436986 n 0104 ~ 00053517 v 0000 01 + 08 00 | fertilize and cause to grow; "the egg was impregnated" -00053517 29 v 01 inoculate 4 001 @ 00053341 v 0000 01 + 08 00 | impregnate with the virus or germ of a disease in order to render immune -00053656 29 v 02 cross-fertilize 0 cross-fertilise 0 004 > 00053889 v 0000 @ 00052548 v 0000 + 07437575 n 0202 + 07437575 n 0101 01 + 08 00 | cause to undergo cross-fertilization; "Mendel cross-fertilized different kinds of beans" -00053889 29 v 02 cross-fertilize 1 cross-fertilise 1 003 @ 00146138 v 0000 + 07437575 n 0202 + 07437575 n 0101 01 + 01 00 | undergo cross-fertilization; become fertile -00054059 29 v 03 pollinate 0 pollenate 0 cross-pollinate 0 006 @ 00052548 v 0000 + 07438792 n 0301 + 07437372 n 0202 + 11675537 n 0101 + 07437372 n 0101 + 02161457 n 0101 02 + 08 00 + 11 00 | fertilize by transfering pollen -00054285 29 v 01 conceive 0 005 * 01428853 v 0000 @ 00146138 v 0000 + 01001945 a 0101 + 00844847 n 0101 ~ 00067850 v 0000 02 + 02 00 + 08 00 | become pregnant; undergo conception; "She cannot conceive"; "My daughter was conceived in Christmas Day" -00054535 29 v 01 nick 0 001 @ 01428853 v 0000 01 + 01 00 | mate successfully; of livestock -00054628 29 v 08 beget 0 get 8 engender 0 father 0 mother 0 sire 0 generate 0 bring_forth 0 010 @ 01617192 v 0000 + 01081592 a 0701 + 08368907 n 0701 + 07324380 n 0702 + 00849982 n 0701 + 01323355 n 0601 + 10102800 n 0603 + 10332385 n 0501 + 10080869 n 0401 + 10080869 n 0103 01 + 09 00 | make children; "Abraham begot Isaac"; "Men often father children but don't recognize them" -00055010 29 v 01 ejaculate 0 004 @ 00104868 v 0000 + 13471815 n 0101 + 05404336 n 0104 + 10048117 n 0101 01 + 02 00 | eject semen -00055142 29 v 03 reproduce 0 procreate 0 multiply 1 012 @ 01617192 v 0000 ;c 06037666 n 0000 + 00849982 n 0302 + 01081592 a 0202 + 00849523 n 0202 + 01081592 a 0103 + 13550318 n 0101 + 00849523 n 0101 ~ 00055539 v 0000 ~ 00056188 v 0000 ~ 00056334 v 0000 ~ 00060185 v 0000 01 + 02 00 | have offspring or produce more individuals of a given animal or plant; "The Bible tells people to procreate" -00055539 29 v 01 propagate 0 005 @ 00055142 v 0000 ;c 06037666 n 0000 + 02785130 a 0101 + 00849982 n 0103 ~ 00055709 v 0000 01 + 01 00 | multiply sexually or asexually -00055709 29 v 01 vegetate 1 003 @ 00055539 v 0000 ;c 06037666 n 0000 + 02136665 a 0102 01 + 01 00 | propagate asexually; "The bacterial growth vegetated along" -00055871 29 v 01 propagate 1 007 > 00055539 v 0000 @ 00515154 v 0000 ;c 00017222 n 0000 + 02785130 a 0101 + 00849982 n 0103 + 10483274 n 0101 ~ 00056093 v 0000 01 + 08 00 | cause to propagate, as by grafting or layering -00056093 29 v 01 inoculate 2 001 @ 00055871 v 0000 01 + 08 00 | insert a bud for propagation -00056188 29 v 02 fructify 0 set 6 003 @ 00055142 v 0000 + 13485408 n 0101 + 13134947 n 0101 01 + 01 00 | bear fruit; "the apple trees fructify" -00056334 29 v 02 breed 0 multiply 0 005 @ 00055142 v 0000 + 00849982 n 0202 + 08101410 n 0101 + 00849523 n 0103 ~ 00056589 v 0000 01 + 01 00 | have young (animals) or reproduce (organisms); "pandas rarely breed in captivity"; "These bacteria reproduce" -00056589 29 v 01 pullulate 0 001 @ 00056334 v 0000 01 + 01 00 | breed freely and abundantly -00056683 29 v 01 spawn 0 003 @ 01545079 v 0000 + 02513939 n 0101 ~ 00056829 v 0000 01 + 01 00 | lay spawn; "The salmon swims upstream to spawn" -00056829 29 v 01 spat 1 002 @ 00056683 v 0000 + 01956344 n 0101 01 + 01 00 | spawn; "oysters spat" -00056930 29 v 05 give_birth 0 deliver 1 bear 1 birth 0 have 0 019 * 00054285 v 0000 @ 01752495 v 0000 + 15142167 n 0401 + 13532886 n 0402 + 07320302 n 0401 + 00042541 n 0201 ~ 00057665 v 0000 ~ 00057764 v 0000 ~ 00057895 v 0000 ~ 00058014 v 0000 ~ 00058135 v 0000 ~ 00058265 v 0000 ~ 00058401 v 0000 ~ 00058516 v 0000 ~ 00058645 v 0000 ~ 00058794 v 0000 ~ 00058897 v 0000 $ 00059019 v 0000 ~ 00059019 v 0000 02 + 09 00 + 02 01 | cause to be born; "My wife had twins yesterday!" -00057410 29 v 01 lie_in 0 001 * 00056930 v 0000 01 + 02 00 | be in confinement for childbirth -00057506 29 v 02 labor 0 labour 0 004 * 00056930 v 0000 @ 02108377 v 0000 + 14048441 n 0203 + 14048441 n 0102 01 + 02 00 | undergo the efforts of childbirth -00057665 29 v 01 twin 0 002 @ 00056930 v 0000 + 10734394 n 0101 01 + 02 00 | give birth to twins -00057764 29 v 01 drop 0 001 @ 00056930 v 0000 01 + 11 00 | give birth; used for animals; "The cow dropped her calf this morning" -00057895 29 v 01 foal 0 002 @ 00056930 v 0000 + 02376542 n 0101 01 + 01 00 | give birth to a foal; "the mare foaled" -00058014 29 v 01 cub 0 002 @ 00056930 v 0000 + 01322685 n 0101 01 + 01 00 | give birth to cubs; "bears cub every year" -00058135 29 v 01 kitten 0 002 @ 00056930 v 0000 + 02122948 n 0101 01 + 01 00 | have kittens; "our cat kittened again this year" -00058265 29 v 01 lamb 0 003 @ 00056930 v 0000 + 07667151 n 0101 + 02412440 n 0101 01 + 01 00 | give birth to a lamb; "the ewe lambed" -00058401 29 v 01 litter 0 002 @ 00056930 v 0000 + 08400331 n 0101 01 + 01 00 | give birth to a litter of animals -00058516 29 v 02 whelp 0 pup 0 003 @ 00056930 v 0000 + 01322343 n 0201 + 01322343 n 0102 01 + 01 00 | birth; "the dog whelped" -00058645 29 v 02 farrow 0 pig 0 004 @ 00056930 v 0000 + 02395406 n 0202 + 13479034 n 0101 + 13479034 n 0102 01 + 01 00 | give birth; "sows farrow" -00058794 29 v 01 fawn 0 002 @ 00056930 v 0000 + 02430830 n 0101 01 + 01 00 | have fawns; "deer fawn" -00058897 29 v 02 calve 0 have_young 0 001 @ 00056930 v 0000 01 + 01 00 | birth; "the whales calve at this time of year" -00059019 29 v 05 have_a_bun_in_the_oven 0 bear 0 carry 0 gestate 0 expect 0 008 $ 00056930 v 0000 * 00054285 v 0000 @ 00056930 v 0000 + 00173391 a 0503 + 07510923 n 0501 + 15226214 n 0401 + 14046202 n 0402 $ 00059376 v 0000 01 + 09 00 | be pregnant with; "She is bearing his child"; "The are expecting another child in January"; "I am carrying his child" -00059376 29 v 01 expect 2 004 $ 00059019 v 0000 @ 00720063 v 0000 + 00173391 a 0103 + 14486122 n 0102 01 + 02 00 | look forward to the birth of a child; "She is expecting in March" -00059559 29 v 01 carry_to_term 0 002 * 00059019 v 0000 ! 00059769 v 0101 02 + 02 00 + 09 00 | carry out a pregnancy; "She decided to carry the child to term, even though the foetus was shown to be defective" -00059769 29 v 01 miscarry 0 003 @ 00059899 v 0000 + 00230475 n 0102 ! 00059559 v 0101 02 + 02 00 + 09 00 | suffer a miscarriage -00059899 29 v 01 abort 0 004 * 00054285 v 0000 @ 00104868 v 0000 + 00230324 n 0101 ~ 00059769 v 0000 01 + 02 00 | terminate a pregnancy by undergoing an abortion -00060063 29 v 01 abort 1 001 @ 00358431 v 0000 01 + 01 00 | cease development, die, and be aborted; "an aborting fetus" -00060185 29 v 04 brood 0 hatch 0 cover 2 incubate 0 009 $ 01430447 v 0000 $ 00063095 v 0000 * 01984902 v 0000 @ 00055142 v 0000 + 13441812 n 0402 + 03567066 n 0401 + 13491464 n 0201 + 07990824 n 0101 + 03567066 n 0102 01 + 02 00 | sit on (eggs); "Birds brood"; "The female covers the eggs" -00060477 29 v 04 alter 0 neuter 0 spay 0 castrate 2 006 @ 00061595 v 0000 + 00667847 n 0401 + 00692506 n 0401 + 06329313 n 0401 + 00692726 n 0301 ~ 00060701 v 0000 01 + 09 00 | remove the ovaries of; "Is your cat spayed?" -00060701 29 v 02 defeminize 0 defeminise 0 001 @ 00060477 v 0000 01 + 08 00 | remove the ovaries of (female mammals such as cats) -00060833 29 v 04 emasculate 0 castrate 0 demasculinize 0 demasculinise 0 006 @ 00061595 v 0000 + 00692349 n 0201 + 10066452 n 0202 + 00692349 n 0102 ~ 00061079 v 0000 ~ 00061219 v 0000 02 + 08 00 + 09 00 | remove the testicles of a male animal -00061079 29 v 02 caponize 0 caponise 0 003 @ 00060833 v 0000 + 01792530 n 0201 + 01792530 n 0101 01 + 08 00 | convert a cock into a capon -00061219 29 v 02 geld 0 cut 0 002 @ 00060833 v 0000 + 02377388 n 0101 02 + 08 00 + 09 00 | cut off the testicles (of male animals such as horses); "the vet gelded the young horse" -00061401 29 v 02 vasectomize 0 vasectomise 0 002 @ 00061595 v 0000 + 00716179 n 0101 01 + 09 00 | remove the vas deferens; "many men choose to be vasectomized as a form of safe birth control" -00061595 29 v 07 sterilize 0 sterilise 0 desex 0 unsex 0 desexualize 0 desexualise 0 fix 0 007 @ 00083809 v 0000 + 00692506 n 0702 + 00692130 n 0202 + 00692130 n 0101 ~ 00060477 v 0000 ~ 00060833 v 0000 ~ 00061401 v 0000 01 + 09 00 | make infertile; "in some countries, people with genetically transmissible disabilites are sterilized" -00061933 29 v 02 face-lift 0 lift 0 002 @ 00083809 v 0000 + 00674158 n 0104 01 + 08 00 | perform cosmetic surgery on someone's face -00062067 29 v 01 trephine 0 003 @ 00083809 v 0000 + 00694276 n 0101 + 04479526 n 0102 02 + 08 00 + 09 00 | operate on with a trephine -00062203 29 v 02 menstruate 0 flow 0 004 * 00062397 v 0000 @ 00074834 v 0000 + 13513747 n 0206 + 13513747 n 0101 01 + 02 00 | undergo menstruation; "She started menstruating at the age of 11" -00062397 29 v 01 ovulate 0 004 @ 00104868 v 0000 + 05457973 n 0101 + 05458300 n 0101 + 13530237 n 0101 01 + 02 00 | produce and discharge eggs; "women ovulate about once every month" -00062582 29 v 02 sterilize 1 sterilise 1 006 @ 00089324 v 0000 + 00253919 n 0202 + 02758960 n 0203 + 00253919 n 0101 + 02758960 n 0102 ~ 00062973 v 0000 01 + 08 00 | make free from bacteria -00062774 29 v 01 antisepticize 0 001 @ 00089324 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | disinfect with an antiseptic; "The animals were antisepticized by the veterinarian before the operation" -00062973 29 v 01 autoclave 0 002 @ 00062582 v 0000 + 02758960 n 0101 01 + 08 00 | subject to the action of an autoclave -00063095 29 v 01 hatch 1 005 @ 00360932 v 0000 + 13491464 n 0101 + 13491464 n 0102 + 08581299 n 0101 $ 00060185 v 0000 01 + 02 00 | emerge from the eggs; "young birds, fish, and reptiles hatch" -00063291 29 v 01 irritate 0 007 @ 00208210 v 0000 + 02310185 a 0102 + 14531392 n 0101 + 07495973 n 0103 ! 00063916 v 0101 ~ 02119659 v 0000 ~ 02119874 v 0000 02 + 10 00 + 11 00 | excite to an abnormal condition, or chafe or inflame; "Aspirin irritates my stomach" -00063557 29 v 01 inflame 0 004 $ 00063724 v 0000 @ 00203866 v 0000 + 01177246 a 0101 + 14336539 n 0101 01 + 01 00 | become inflamed; get sore; "His throat inflamed" -00063724 29 v 01 inflame 1 004 @ 00208210 v 0000 + 01177246 a 0101 + 14336539 n 0101 $ 00063557 v 0000 02 + 10 00 + 11 00 | cause inflammation in; "The repetitive motion inflamed her joint" -00063916 29 v 01 soothe 0 002 @ 00064095 v 0000 ! 00063291 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to feel better; "the medicine soothes the pain of the inflammation" -00064095 29 v 04 relieve 0 alleviate 0 palliate 0 assuage 0 013 @ 00205885 v 0000 + 07493280 n 0403 + 01341153 a 0306 + 00355547 n 0301 + 01341153 a 0202 + 01341153 a 0201 + 07493280 n 0202 + 00354884 n 0203 + 09784443 n 0201 + 03879854 n 0203 + 03879854 n 0202 ~ 00063916 v 0000 ~ 00082308 v 0000 01 + 11 00 | provide physical relief, as from pain; "This pill will relieve your headaches" -00064487 29 v 01 massage 0 003 @ 00078760 v 0000 + 00659048 n 0101 + 10297983 n 0101 02 + 08 00 + 09 00 | give a massage to; "She massaged his sore back" -00064643 29 v 01 hurt 1 007 > 02122164 v 0000 @ 00064889 v 0000 + 07496463 n 0102 + 07495327 n 0102 ~ 00069879 v 0000 ~ 00070816 v 0000 ~ 00071037 v 0000 03 + 09 00 + 10 00 + 11 00 | give trouble or pain to; "This exercise will hurt your back" -00064889 29 v 01 indispose 0 005 @ 00126264 v 0000 + 14174455 n 0101 ~ 00064643 v 0000 ~ 00074558 v 0000 ~ 00075021 v 0000 01 + 10 00 | cause to feel unwell; "She was indisposed" -00065070 29 v 02 suffer 0 hurt 2 012 @ 02604760 v 0000 + 14285662 n 0202 + 14322699 n 0202 + 10595647 n 0103 + 14324274 n 0102 + 07495327 n 0101 + 05032795 n 0101 ! 00065495 v 0101 ~ 00065370 v 0000 ~ 00077698 v 0000 ~ 00078665 v 0000 ~ 01188144 v 0000 02 + 01 00 + 02 00 | feel pain or be in pain -00065370 29 v 01 have 2 002 $ 00065639 v 0000 @ 00065070 v 0000 01 + 08 00 | suffer from; be ill with; "She has arthritis" -00065495 29 v 01 be_well 0 002 @ 02604760 v 0000 ! 00065070 v 0101 02 + 01 00 + 02 00 | be healthy; feel good; "She has not been well lately" -00065639 29 v 04 suffer 1 sustain 0 have 5 get b 006 @ 02108026 v 0000 + 10595647 n 0103 ~ 00030647 v 0000 ~ 00031068 v 0000 $ 00065370 v 0000 ~ 01785579 v 0000 01 + 08 00 | undergo (as of injuries and illnesses); "She suffered a fracture in the accident"; "He had an insulin shock after eating three candy bars"; "She got a bruise on her leg"; "He got his arm broken in the scuffle" -00066025 29 v 04 wail 0 whimper 0 mewl 0 pule 0 003 @ 00066191 v 0000 + 07211752 n 0201 + 07211950 n 0104 01 + 02 00 | cry weakly or softly; "she wailed with pain" -00066191 29 v 02 cry 0 weep 0 014 @ 01802494 v 0000 + 10773040 n 0201 + 10773126 n 0201 + 00868196 n 0202 + 07014752 n 0101 + 10773126 n 0102 + 00868196 n 0101 ! 00031820 v 0101 ~ 00066025 v 0000 $ 00066685 v 0000 ~ 00066862 v 0000 ~ 00066977 v 0000 ~ 00067129 v 0000 ~ 00067274 v 0000 01 + 02 00 | shed tears because of sadness, rage, or pain; "She cried bitterly when she heard the news of his death"; "The girl in the wheelchair wept with frustration when she could not get up the stairs" -00066685 29 v 01 cry 2 003 $ 00066191 v 0000 @ 00126264 v 0000 + 00868196 n 0101 01 + 20 00 | bring into a particular state by crying; "The little boy cried himself to sleep" -00066862 29 v 01 bawl 0 002 @ 00066191 v 0000 + 09844566 n 0101 01 + 02 00 | cry loudly; "Don't bawl in public!" -00066977 29 v 01 tear 0 003 @ 00066191 v 0000 + 05405324 n 0101 + 13505843 n 0103 01 + 01 00 | fill with tears or shed tears; "Her eyes were tearing" -00067129 29 v 01 sob 0 003 @ 00066191 v 0000 + 00868669 n 0101 + 00868669 n 0102 01 + 02 00 | weep convulsively; "He was sobbing inconsolably" -00067274 29 v 05 snivel 1 sniffle 1 blubber 0 blub 0 snuffle 1 006 @ 00066191 v 0000 + 00836149 n 0501 + 09860940 n 0301 + 00868523 n 0101 + 10776339 n 0104 + 00868523 n 0102 01 + 02 00 | cry or whine with snuffling; "Stop snivelling--you got yourself into this mess!" -00067545 29 v 03 sweat 0 sudate 0 perspire 0 009 @ 00072989 v 0000 + 13535261 n 0301 + 05405751 n 0301 + 13535261 n 0204 + 05405751 n 0102 + 10418735 n 0102 + 13535261 n 0102 ^ 00046022 v 0101 ~ 00069747 v 0000 01 + 02 00 | excrete perspiration through the pores in the skin; "Exercise makes one sweat" -00067850 29 v 01 superfetate 0 002 @ 00054285 v 0000 + 07438396 n 0101 02 + 01 00 + 02 00 | conceive when a fetus is already present in the uterus -00067999 29 v 05 exude 0 exudate 0 transude 0 ooze_out 0 ooze 0 016 @ 00072989 v 0000 + 07432119 n 0502 + 07432119 n 0503 + 07432337 n 0302 + 14852913 n 0201 + 14852913 n 0102 + 07432337 n 0101 + 14852913 n 0101 ~ 00068467 v 0000 ~ 00068627 v 0000 ~ 00068740 v 0000 ~ 00068858 v 0000 ~ 00069012 v 0000 ~ 00069166 v 0000 ~ 00069295 v 0000 ~ 00109389 v 0000 03 + 01 00 + 08 00 + 11 00 | release (a liquid) in drops or small quantities; "exude sweat through the pores" -00068467 29 v 02 distill 0 distil 0 001 @ 00067999 v 0000 01 + 11 00 | give off (a liquid); "The doctor distilled a few drops of disinfectant onto the wound" -00068627 29 v 02 reek 0 fume 0 001 @ 00067999 v 0000 01 + 01 00 | be wet with sweat or blood, as of one's face -00068740 29 v 01 transpire 0 002 @ 00067999 v 0000 + 13570072 n 0101 01 + 02 00 | give off (water) through the skin -00068858 29 v 01 extravasate 0 002 @ 00067999 v 0000 + 14008567 n 0103 02 + 01 00 + 11 00 | geology: cause molten material, such as lava, to pour forth -00069012 29 v 01 stream 0 001 @ 00067999 v 0000 03 + 08 00 + 11 00 + 22 00 | exude profusely; "She was streaming with sweat"; "His nose streamed blood" -00069166 29 v 01 gum 0 002 @ 00067999 v 0000 + 14898470 n 0101 01 + 01 00 | exude or form gum; "these trees gum in the Spring" -00069295 29 v 02 secrete 0 release 0 005 @ 00067999 v 0000 + 13549672 n 0201 + 13553916 n 0101 + 05327767 n 0103 ~ 00069570 v 0000 02 + 08 00 + 11 00 | generate and separate from cells or bodily fluids; "secrete digestive juices"; "release a hormone into the blood stream" -00069570 29 v 01 water 0 001 @ 00069295 v 0000 01 + 01 00 | secrete or form water, as tears or saliva; "My mouth watered at the prospect of a good dinner"; "His eyes watered" -00069747 29 v 01 swelter 0 001 @ 00067545 v 0000 02 + 02 00 + 22 00 | suffer from intense heat; "we were sweltering at the beach" -00069879 29 v 02 injure 0 wound 0 025 @ 00064643 v 0000 + 07340249 n 0201 + 00403783 n 0201 + 00403783 n 0202 + 14285662 n 0101 + 07313636 n 0101 + 00744443 n 0101 ~ 00070439 v 0000 ~ 00070633 v 0000 ~ 00070736 v 0000 ~ 00071178 v 0000 ~ 00071803 v 0000 ~ 00090186 v 0000 ~ 00090888 v 0000 ~ 00091124 v 0000 ~ 00091513 v 0000 ~ 00091968 v 0000 ~ 00102586 v 0000 ~ 00106960 v 0000 ~ 00107739 v 0000 ~ 01137138 v 0000 ~ 01231652 v 0000 ~ 01309478 v 0000 ~ 01492725 v 0000 ~ 01608508 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause injuries or bodily harm to -00070439 29 v 01 trample 0 003 @ 00069879 v 0000 + 07398659 n 0101 + 10723474 n 0101 02 + 10 00 + 11 00 | injure by trampling or as if by trampling; "The passerby was trampled by an elephant" -00070633 29 v 01 concuss 0 001 @ 00069879 v 0000 01 + 08 00 | injure the brain; sustain a concussion -00070736 29 v 01 calk 0 001 @ 00069879 v 0000 01 + 08 00 | injure with a calk -00070816 29 v 03 trouble 0 ail 1 pain 0 006 @ 00064643 v 0000 + 05724694 n 0301 + 14322699 n 0301 + 14055408 n 0201 + 07289014 n 0101 ~ 00309074 v 0000 01 + 10 00 | cause bodily suffering to and make sick or indisposed -00071037 29 v 01 disagree_with 0 001 @ 00064643 v 0000 01 + 10 00 | not be very easily digestible; "Spicy food disagrees with some people" -00071178 29 v 03 torture 0 excruciate 0 torment 0 012 @ 00069879 v 0000 + 14333433 n 0302 + 10716005 n 0302 + 04456276 n 0301 + 14324274 n 0203 + 00422551 n 0202 + 00421437 n 0101 + 14333433 n 0101 + 10716389 n 0101 + 00421437 n 0102 ~ 00071547 v 0000 ~ 00071646 v 0000 01 + 09 00 | subject to torture; "The sinners will be tormented in Hell, according to the Bible" -00071547 29 v 01 rack 0 002 @ 00071178 v 0000 + 04039041 n 0101 01 + 09 00 | torture on the rack -00071646 29 v 03 martyr 0 martyrize 0 martyrise 0 003 @ 00071178 v 0000 + 10296832 n 0201 + 10296618 n 0201 01 + 09 00 | torture and torment like a martyr -00071803 29 v 02 pull 0 overstretch 0 002 @ 00069879 v 0000 + 14299070 n 0103 01 + 08 00 | strain abnormally; "I pulled a muscle in my leg when I jumped up"; "The athlete pulled a tendon in the competition" -00072012 29 v 0f make 1 urinate 0 piddle 0 puddle 0 micturate 0 piss 0 pee 0 pee-pee 0 make_water 0 relieve_oneself 0 take_a_leak 0 spend_a_penny 0 wee 0 wee-wee 0 pass_water 0 017 $ 00074038 v 0000 @ 00072989 v 0000 + 13533886 n 0702 + 14855724 n 0703 + 13533886 n 0701 + 13533886 n 0604 + 14855724 n 0602 + 10435716 n 0601 + 13533886 n 0603 + 13515958 n 0501 + 14855724 n 0304 + 13515958 n 0202 + 14855724 n 0201 + 10435716 n 0202 $ 00072586 v 0000 ~ 00072730 v 0000 ~ 00072897 v 0000 02 + 01 00 + 02 00 | eliminate urine; "Again, the cat had made on the expensive rug" -00072586 29 v 01 urinate 1 002 $ 00072012 v 0000 @ 00072989 v 0000 01 + 08 00 | pass after the manner of urine; "The sick men urinated blood" -00072730 29 v 01 wet 0 002 @ 00072012 v 0000 + 09846586 n 0103 01 + 08 00 | make one's bed or clothes wet by urinating; "This eight year old boy still wets his bed" -00072897 29 v 01 stale 0 001 @ 00072012 v 0000 01 + 01 00 | urinate, of cattle and horses -00072989 29 v 04 excrete 0 egest 0 eliminate 0 pass 0 013 @ 00104868 v 0000 + 00865600 n 0402 + 02724050 a 0101 + 13473097 n 0103 + 13473097 n 0104 + 13473097 n 0301 ~ 00067545 v 0000 ~ 00067999 v 0000 ~ 00072012 v 0000 ~ 00072586 v 0000 ~ 00073343 v 0000 ~ 00074038 v 0000 ~ 00076400 v 0000 01 + 08 00 | eliminate from the body; "Pass a kidney stone" -00073343 29 v 03 evacuate 0 void 0 empty 0 008 @ 00072989 v 0000 + 10000007 n 0202 + 13473097 n 0205 + 00395797 n 0202 + 00638067 a 0102 + 13473097 n 0102 + 00395797 n 0103 ~ 00073584 v 0000 01 + 08 00 | excrete or discharge from the body -00073584 29 v 01 suction 0 005 @ 00073343 v 0000 ;c 00671351 n 0000 + 00842692 n 0103 + 11517494 n 0101 $ 01854679 v 0000 01 + 08 00 | empty or clean (a body cavity) by the force of suction; "suction the uterus in an abortion" -00073813 29 v 01 purge 0 004 > 00073343 v 0000 @ 00078760 v 0000 + 00638067 a 0103 + 00253577 n 0103 02 + 02 00 + 09 00 | excrete or evacuate (someone's bowels or body); "The doctor decided that the patient must be purged" -00074038 29 v 08 stool 0 defecate 0 shit 0 take_a_shit 0 take_a_crap 0 ca-ca 0 crap 0 make 0 013 @ 00072989 v 0000 + 14854581 n 0701 + 04446521 n 0704 + 13555775 n 0301 + 14854581 n 0303 + 10000007 n 0303 + 13459088 n 0303 + 13459088 n 0201 + 10000007 n 0201 + 04446521 n 0107 + 14854262 n 0106 $ 00072012 v 0000 ~ 00074453 v 0000 02 + 01 00 + 02 00 | have a bowel movement; "The dog had made in the flower beds" -00074453 29 v 01 dung 0 002 @ 00074038 v 0000 + 14854847 n 0102 01 + 01 00 | defecate; used of animals -00074558 29 v 02 constipate 0 bind 0 003 @ 00064889 v 0000 + 14371161 n 0101 ~ 00074730 v 0000 01 + 10 00 | cause to be constipated; "These foods tend to constipate you" -00074730 29 v 01 obstipate 0 002 @ 00074558 v 0000 + 14371770 n 0101 01 + 10 00 | constipate severely -00074834 29 v 03 shed_blood 0 bleed 0 hemorrhage 0 005 @ 00104868 v 0000 + 14288235 n 0302 + 10170989 n 0203 + 14288235 n 0201 ~ 00062203 v 0000 01 + 02 00 | lose blood from one's body -00075021 29 v 0c tire 1 wear_upon 0 tire_out 0 wear 3 weary 0 jade 1 wear_out 0 outwear 0 wear_down 0 fag_out 0 fag 0 fatigue 0 008 > 00076114 v 0000 @ 00064889 v 0000 + 14016361 n 0c01 + 02382204 n 0602 + 14562683 n 0401 ! 00024649 v 0101 ~ 00075421 v 0000 ~ 00075998 v 0000 02 + 09 00 + 10 00 | exhaust or get tired through overuse or great strain or stress; "We wore ourselves out on this hike" -00075421 29 v 05 exhaust 0 wash_up 1 beat 0 tucker 0 tucker_out 0 005 @ 00075021 v 0000 + 00356621 n 0101 ~ 00075708 v 0000 ~ 00075875 v 0000 ~ 00355524 v 0000 02 + 09 00 + 10 00 | wear out completely; "This kind of work exhausts me"; "I'm beat"; "He was all washed up after the exam" -00075708 29 v 01 frazzle 0 002 @ 00075421 v 0000 + 14018055 n 0101 01 + 10 00 | exhaust physically or emotionally; "She was frazzled after the visit of her in-laws" -00075875 29 v 01 play 4 001 @ 00075421 v 0000 01 + 08 00 | exhaust by allowing to pull on the line; "play a hooked fish" -00075998 29 v 03 overtire 0 overweary 0 overfatigue 0 001 @ 00075021 v 0000 02 + 09 00 + 10 00 | tire excessively -00076114 29 v 05 tire 0 pall 0 weary 1 fatigue 1 jade 0 005 @ 00092293 v 0000 + 02382204 n 0502 + 07540081 n 0401 ~ 00099517 v 0000 ~ 01766952 v 0000 01 + 02 00 | lose interest or become bored with something or somebody; "I'm so tired of your mother and her complaints about my food" -00076400 29 v 13 vomit 0 vomit_up 0 purge 4 cast 0 sick 0 cat 0 be_sick 1 disgorge 0 regorge 0 retch 0 puke 0 barf 0 spew 0 spue 0 chuck 0 upchuck 0 honk 0 regurgitate 0 throw_up 0 014 @ 00072989 v 0000 + 00118733 n 1204 + 10759702 n 0d02 + 14855992 n 0b03 + 00118733 n 0b06 + 00226951 n 0a02 + 00118733 n 0805 + 07950418 n 0501 + 00118733 n 0101 + 03283519 n 0102 + 14855992 n 0101 + 10759702 n 0101 + 00118733 n 0102 ! 00077369 v 0101 05 + 02 00 + 08 13 + 08 12 + 08 0a + 08 02 | eject the contents of the stomach through the mouth; "After drinking too much, the students vomited"; "He purged continuously"; "The patient regurgitated the food we gave him last night" -00077071 29 v 03 spew 2 spew_out 0 eruct 4 002 @ 00104868 v 0000 + 14008567 n 0302 02 + 08 00 + 11 00 | eject or send out in large quantities, also metaphorical; "the volcano spews out molten rocks every day"; "The editors of the paper spew out hostile articles about the Presidential candidate" -00077369 29 v 01 keep_down 0 001 ! 00076400 v 0101 01 + 08 00 | manage not to throw up -00077458 29 v 03 gag 1 heave 0 retch 1 002 + 00226951 n 0302 + 00226951 n 0201 01 + 02 00 | make an unsuccessful effort to vomit; strain to vomit -00077606 29 v 02 gag 2 choke 1 001 @ 00088209 v 0000 01 + 10 00 | cause to retch or choke -00077698 29 v 04 gag 0 choke 3 strangle 3 suffocate 1 004 @ 00065070 v 0000 + 00268383 a 0403 + 14043882 n 0401 + 14058252 n 0201 03 + 02 00 + 13 00 + 22 00 | struggle for breath; have insufficient oxygen intake; "he swallowed a fishbone and gagged" -00077950 29 v 02 choke 4 strangle 2 004 > 00002724 v 0000 @ 01387786 v 0000 + 14298247 n 0201 + 00225786 n 0101 02 + 09 00 + 10 00 | constrict (someone's) throat and keep from breathing -00078138 29 v 01 freeze 0 002 @ 00078401 v 0000 + 11440521 n 0101 02 + 02 00 + 23 00 | be cold; "I could freeze to death in this office when the air conditioning is turned on" -00078316 29 v 01 swelter 1 001 @ 00078401 v 0000 01 + 02 00 | be uncomfortably hot -00078401 29 v 01 suffer 3 003 @ 02604760 v 0000 ~ 00078138 v 0000 ~ 00078316 v 0000 02 + 02 00 + 22 00 | feel unwell or uncomfortable; "She is suffering from the hot weather" -00078578 29 v 01 gnash 0 001 @ 01394464 v 0000 01 + 08 00 | grind together, of teeth -00078665 29 v 01 ail 0 002 @ 00065070 v 0000 + 14055408 n 0101 01 + 02 00 | be ill or unwell -00078760 29 v 02 treat 0 care_for 0 025 + 00658082 n 0101 ~ 00003133 v 0000 ~ 00064487 v 0000 ~ 00073813 v 0000 ~ 00079470 v 0000 ~ 00079629 v 0000 ~ 00079788 v 0000 ~ 00079951 v 0000 ~ 00080169 v 0000 ~ 00080304 v 0000 ~ 00080589 v 0000 ~ 00080705 v 0000 ~ 00080929 v 0000 ~ 00081072 v 0000 ~ 00082563 v 0000 ~ 00082714 v 0000 ~ 00083661 v 0000 ~ 00083809 v 0000 ~ 00084230 v 0000 ~ 00086077 v 0000 ~ 00087290 v 0000 ~ 00090386 v 0000 ~ 00108909 v 0000 ~ 00373766 v 0000 ~ 00643197 v 0000 02 + 08 00 + 09 00 | provide treatment for; "The doctor treated my broken leg"; "The nurses cared for the bomb victims"; "The patient must be treated right away or she will die"; "Treat the infection with antibiotics" -00079470 29 v 01 correct 4 002 @ 00078760 v 0000 + 00232754 a 0101 02 + 04 00 + 11 00 | treat a defect; "The new contact lenses will correct for his myopia" -00079629 29 v 01 insufflate 1 003 $ 00007193 v 0000 @ 00078760 v 0000 + 13500674 n 0101 01 + 08 00 | treat by blowing a powder or vapor into a bodily cavity -00079788 29 v 02 detox 0 detoxify 0 002 @ 00078760 v 0000 + 00699320 n 0201 01 + 09 00 | treat for alcohol or drug dependence; "He was detoxified in the clinic" -00079951 29 v 01 irrigate 0 002 @ 00078760 v 0000 + 00695448 n 0101 01 + 08 00 | supply with a constant flow or sprinkling of some liquid, for the purpose of cooling, cleansing, or disinfecting; "irrigate the wound" -00080169 29 v 02 iodize 0 iodise 0 001 @ 00078760 v 0000 01 + 08 00 | treat with iodine so as to prevent infection; "iodize a wound" -00080304 29 v 01 doctor 0 004 @ 00078760 v 0000 ;c 00612160 n 0000 + 10020890 n 0101 ~ 00080456 v 0000 02 + 08 00 + 09 00 | give medical treatment to -00080456 29 v 01 vet 0 003 @ 00080304 v 0000 ;c 00612160 n 0000 + 10749715 n 0104 02 + 08 00 + 09 00 | provide veterinary care for -00080589 29 v 01 vet 1 002 @ 00078760 v 0000 ;c 00612160 n 0000 01 + 09 00 | provide (a person) with medical care -00080705 29 v 01 nurse 0 004 @ 00078760 v 0000 ;c 00612160 n 0000 + 10366966 n 0101 + 00665079 n 0101 01 + 08 00 | try to cure by special care of treatment, of an illness or injury; "He nursed his cold with Chinese herbs" -00080929 29 v 01 manipulate 0 002 @ 00078760 v 0000 + 00140652 n 0102 01 + 08 00 | treat manually, as with massage, for therapeutic purposed -00081072 29 v 02 administer 0 dispense 0 011 * 02309165 v 0000 @ 00078760 v 0000 ;c 00612160 n 0000 + 03210552 n 0201 + 13285714 n 0201 + 01083504 n 0201 + 00694990 n 0101 ~ 00081367 v 0000 ~ 00081509 v 0000 ~ 00086320 v 0000 ~ 02309374 v 0000 02 + 08 00 + 15 00 | give or apply (medications) -00081367 29 v 01 transfuse 1 003 @ 00081072 v 0000 ;c 00612160 n 0000 + 00324056 n 0101 01 + 09 00 | give a transfusion (e.g., of blood) to -00081509 29 v 01 digitalize 0 004 @ 00081072 v 0000 ;c 00612160 n 0000 + 00709843 n 0101 + 15060131 n 0101 01 + 09 00 | administer digitalis such that the patient benefits maximally without getting adverse effects -00081725 29 v 03 bring_around 1 cure 0 heal 1 008 * 00078760 v 0000 @ 00082081 v 0000 ;c 00612160 n 0000 + 10707233 n 0302 + 00994410 a 0201 + 01165943 a 0201 + 04074482 n 0203 ~ 00093163 v 0000 02 + 08 00 + 09 00 | provide a cure for, make healthy again; "The treatment cured the boy's acne"; "The quack pretended to heal patients but never managed to" -00082081 29 v 02 help 0 aid 0 006 @ 00205885 v 0000 + 00654885 n 0203 + 05154908 n 0103 + 01207609 n 0104 ~ 00081725 v 0000 ~ 02290956 v 0000 02 + 09 00 + 10 00 | improve the condition of; "These pills will help the patient" -00082308 29 v 02 comfort 0 ease 0 007 @ 00064095 v 0000 + 00354884 n 0202 + 00354884 n 0201 + 14445379 n 0101 + 03075768 n 0101 + 04033995 n 0102 + 04033995 n 0103 02 + 08 00 + 09 00 | lessen pain or discomfort; alleviate; "ease the pain in your legs" -00082563 29 v 02 remedy 0 relieve 2 003 @ 00078760 v 0000 ;c 00612160 n 0000 + 04074482 n 0101 01 + 08 00 | provide relief for; "remedy his illness" -00082714 29 v 01 dress 2 006 @ 00078760 v 0000 ;c 00612160 n 0000 + 03237639 n 0101 + 00696882 n 0101 ~ 00082929 v 0000 ~ 00083124 v 0000 01 + 08 00 | apply a bandage or medication to; "dress the victim's wounds" -00082929 29 v 02 poultice 0 plaster 0 005 @ 00082714 v 0000 ;c 00612160 n 0000 + 03993403 n 0203 + 00718815 n 0201 + 03993403 n 0101 01 + 08 00 | dress by covering with a therapeutic substance -00083124 29 v 01 bandage 0 004 @ 00082714 v 0000 ;c 00612160 n 0000 + 02785648 n 0101 ~ 00083334 v 0000 01 + 08 00 | dress by covering or binding; "The nurse bandaged a sprained ankle"; "bandage an incision" -00083334 29 v 01 ligate 0 005 @ 00083124 v 0000 ;c 06063588 n 0000 + 00149084 n 0102 + 00148242 n 0101 + 03665083 n 0101 01 + 08 00 | bind with a bandage or ligature; "ligate the artery" -00083523 29 v 01 strap 0 003 @ 01340439 v 0000 ;c 00612160 n 0000 + 04333129 n 0101 01 + 08 00 | secure (a sprained joint) with a strap -00083661 29 v 01 splint 0 003 @ 00078760 v 0000 ;c 00612160 n 0000 + 04282494 n 0101 01 + 08 00 | support with a splint; "splint a broken finger" -00083809 29 v 02 operate_on 0 operate 0 008 @ 00078760 v 0000 ;c 00612160 n 0000 + 01169194 a 0202 + 00671351 n 0201 ~ 00061595 v 0000 ~ 00061933 v 0000 ~ 00062067 v 0000 ~ 00084107 v 0000 02 + 08 00 + 09 00 | perform surgery on; "The doctors operated on the patient but failed to save his life" -00084107 29 v 01 venesect 0 003 @ 00083809 v 0000 ;c 00612160 n 0000 + 00698609 n 0101 01 + 02 00 | practice venesection -00084230 29 v 02 medicate 0 medicine 0 013 ;c 00612160 n 0000 @ 00078760 v 0000 + 00612160 n 0201 + 03740161 n 0201 + 06043075 n 0201 + 01166656 a 0101 + 06043075 n 0101 + 03740161 n 0101 + 00612160 n 0101 + 03740161 n 0102 + 00664110 n 0101 ~ 00084738 v 0000 ~ 00085907 v 0000 01 + 09 00 | treat medicinally, treat with medicine -00084562 29 v 01 medicate 1 005 @ 00497705 v 0000 ;c 00612160 n 0000 + 01166656 a 0101 + 03740161 n 0101 + 00664110 n 0101 01 + 08 00 | impregnate with a medicinal substance -00084738 29 v 02 drug 0 dose 0 011 @ 00084230 v 0000 ;c 00612160 n 0000 + 13772106 n 0202 + 03225238 n 0201 + 03247620 n 0101 + 00695300 n 0102 ~ 00021065 v 0000 ~ 00085046 v 0000 ~ 00085353 v 0000 ~ 00085506 v 0000 ~ 00088339 v 0000 01 + 09 00 | administer a drug to; "They drugged the kidnapped tourist" -00085046 29 v 02 dope 0 dope_up 0 004 @ 00084738 v 0000 ;c 00612160 n 0000 + 03990834 n 0104 ~ 00085246 v 0000 01 + 09 00 | give a narcotic to; "The athletes were dope by the coach before the race" -00085246 29 v 01 soup 0 002 @ 00085046 v 0000 ;c 00612160 n 0000 02 + 08 00 + 09 00 | dope (a racehorse) -00085353 29 v 02 overdose 0 o.d. 0 001 @ 00084738 v 0000 01 + 02 00 | dose too heavily; "The rock star overdosed and was found dead in his hotel room" -00085506 29 v 02 narcotize 0 narcotise 0 002 @ 00084738 v 0000 + 03808564 n 0101 01 + 09 00 | administer narcotics to -00085626 29 v 05 anoint 0 inunct 0 oil 0 anele 0 embrocate 0 006 @ 00866505 v 0000 + 03673594 n 0502 + 14966667 n 0301 + 01041674 n 0202 + 00712833 n 0102 + 09795639 n 0101 03 + 08 00 + 09 00 + 17 00 | administer an oil or ointment to ; often in a religious ceremony of blessing -00085907 29 v 01 salve 0 004 @ 00084230 v 0000 ;c 00612160 n 0000 + 00259392 n 0101 + 03845550 n 0105 01 + 08 00 | apply a salve to, usually for the purpose of healing -00086077 29 v 04 bleed 1 leech 0 phlebotomize 0 phlebotomise 0 004 @ 00078760 v 0000 ;c 00612160 n 0000 + 00698609 n 0302 + 01937909 n 0201 01 + 09 00 | draw blood; "In the old days, doctors routinely bled patients as part of the treatment" -00086320 29 v 02 inject 0 shoot 0 008 @ 00081072 v 0000 ;c 00612160 n 0000 + 01317678 a 0101 + 00697365 n 0101 + 14849215 n 0102 ~ 00086598 v 0000 ~ 00086835 v 0000 $ 01585523 v 0000 02 + 09 00 + 17 00 | give an injection to; "We injected the glucose into the patient's vein" -00086598 29 v 01 infuse 0 003 @ 00086320 v 0000 ;c 00612160 n 0000 + 00323532 n 0101 01 + 08 00 | introduce into the body through a vein, for therapeutic purposes; "Some physiologists infuses sugar solutions into the veins of animals" -00086835 29 v 04 immunize 0 immunise 0 inoculate 0 vaccinate 0 012 @ 00086320 v 0000 ;c 00612160 n 0000 + 14364306 n 0401 + 00823884 n 0402 + 04517535 n 0401 + 10207514 n 0402 + 00824054 n 0402 + 00823884 n 0301 + 14919272 n 0301 + 10207514 n 0301 + 00824054 n 0301 + 00828990 n 0101 02 + 02 00 + 09 00 | perform vaccinations or produce immunity in by inoculation; "We vaccinate against scarlet fever"; "The nurse vaccinated the children in the school" -00087290 29 v 02 cup 0 transfuse 0 003 @ 00078760 v 0000 ;c 00612160 n 0000 + 00698794 n 0101 01 + 09 00 | treat by applying evacuated cups to the patient's skin -00087454 29 v 02 sicken 0 come_down 0 004 @ 00203866 v 0000 ~ 00087653 v 0000 ~ 00087736 v 0000 ~ 00090075 v 0000 01 + 02 00 | get sick; "She fell sick last Friday, and now she is in the hospital" -00087653 29 v 01 wan 0 001 @ 00087454 v 0000 01 + 02 00 | become pale and sickly -00087736 29 v 03 contract 0 take 8 get 0 004 $ 00087988 v 0000 @ 00087454 v 0000 + 00077981 n 0102 ~ 00087988 v 0000 01 + 08 00 | be stricken by an illness, fall victim to an illness; "He got AIDS"; "She came down with pneumonia"; "She took a chill" -00087988 29 v 01 catch a 003 @ 00087736 v 0000 $ 00087736 v 0000 ~ 00088120 v 0000 01 + 08 00 | contract; "did you catch a cold?" -00088120 29 v 01 catch_cold 0 001 @ 00087988 v 0000 01 + 02 00 | come down with a cold -00088209 29 v 01 sicken 1 002 @ 00102586 v 0000 ~ 00077606 v 0000 01 + 10 00 | make sick or ill; "This kind of food sickens me" -00088339 29 v 01 poison 0 004 @ 00084738 v 0000 + 00224738 n 0101 ~ 00088532 v 0000 $ 01323793 v 0000 02 + 09 00 + 10 00 | administer poison to; "She poisoned her husband but he did not die" -00088532 29 v 01 intoxicate 0 005 @ 00088339 v 0000 + 01159119 a 0101 + 14509712 n 0103 + 14018567 n 0104 + 03581634 n 0101 01 + 10 00 | have an intoxicating effect on, of a drug -00088713 29 v 02 infect 0 taint 0 009 @ 00492706 v 0000 + 14487731 n 0202 + 01168434 a 0101 + 02114746 a 0102 + 13498404 n 0101 + 14174549 n 0101 ! 00089324 v 0101 ~ 00088972 v 0000 ~ 00089154 v 0000 01 + 09 00 | contaminate with a disease or microorganism -00088972 29 v 01 superinfect 0 002 @ 00088713 v 0000 + 14185353 n 0101 02 + 08 00 + 11 00 | infect (an infected cell) further or infect a cell already containing similar organisms -00089154 29 v 01 smut 0 004 @ 00088713 v 0000 ;c 00916464 n 0000 + 13066129 n 0101 + 14283632 n 0101 01 + 11 00 | affect with smut or mildew, as of a crop such as corn -00089324 29 v 01 disinfect 0 008 @ 01532589 v 0000 + 02116054 a 0102 + 00709521 n 0101 + 03208229 n 0101 ! 00088713 v 0101 ~ 00062582 v 0000 ~ 00062774 v 0000 ~ 00089602 v 0000 03 + 08 00 + 09 00 + 10 00 | destroy microorganisms or pathogens by cleansing; "disinfect a wound" -00089602 29 v 01 chlorinate 0 003 @ 00089324 v 0000 + 14634591 n 0101 + 00709659 n 0101 01 + 08 00 | disinfect with chlorine; "chlorinate a pool" -00089750 29 v 01 infect 1 005 @ 02316868 v 0000 + 01168434 a 0101 + 02114746 a 0102 + 07360647 n 0101 ~ 00089973 v 0000 02 + 09 00 + 17 00 | communicate a disease to; "Your children have infected you with this head cold" -00089973 29 v 01 canker 0 002 @ 00089750 v 0000 + 14212759 n 0101 01 + 11 00 | infect with a canker -00090075 29 v 01 canker 1 002 @ 00087454 v 0000 + 14212759 n 0101 01 + 01 00 | become infected with a canker -00090186 29 v 03 traumatize 0 traumatise 0 shock 0 006 @ 00069879 v 0000 + 07298982 n 0301 + 07510625 n 0302 + 14285662 n 0204 + 14285662 n 0104 + 14285276 n 0101 01 + 10 00 | inflict a trauma upon -00090386 29 v 01 shock 1 003 @ 00078760 v 0000 + 00839292 n 0103 ~ 00090513 v 0000 01 + 09 00 | subject to electrical shocks -00090513 29 v 02 galvanize 2 galvanise 2 005 @ 00090386 v 0000 + 13485968 n 0202 + 00662681 n 0202 + 13485968 n 0101 + 00662681 n 0102 01 + 08 00 | stimulate (muscles) by administering a shock -00090708 29 v 02 mutilate 0 mar 0 004 @ 00090888 v 0000 + 07433662 n 0101 + 10341955 n 0101 ~ 01281611 v 0000 02 + 09 00 + 10 00 | destroy or injure severely; "mutilated bodies" -00090888 29 v 01 maim 0 004 @ 00069879 v 0000 + 10341955 n 0102 ~ 00090708 v 0000 ~ 00091647 v 0000 02 + 09 00 + 10 00 | injure or wound seriously and leave permanent disfiguration or mutilation; "people were maimed by the explosion" -00091124 29 v 06 twist 0 sprain 0 wrench 0 turn 0 wrick 0 rick 0 006 @ 00069879 v 0000 + 14361182 n 0603 + 14361182 n 0504 + 14299070 n 0301 + 14299336 n 0201 + 14299070 n 0102 01 + 08 00 | twist suddenly so as to sprain; "wrench one's ankle"; "The wrestler twisted his shoulder"; "the hikers sprained their ankles when they fell"; "I turned my ankle and couldn't walk for several days" -00091513 29 v 01 subluxate 0 002 @ 00069879 v 0000 + 07445149 n 0101 01 + 08 00 | sprain or dislocate slightly; "subluxate the hip" -00091647 29 v 02 cripple 0 lame 0 003 @ 00090888 v 0000 + 09978889 n 0101 ~ 00091851 v 0000 02 + 09 00 + 10 00 | deprive of the use of a limb, especially a leg; "The accident has crippled her for life" -00091851 29 v 01 hamstring 0 002 @ 00091647 v 0000 + 05570704 n 0101 01 + 09 00 | cripple by cutting the hamstring -00091968 29 v 04 disable 0 invalid 0 incapacitate 0 handicap 0 005 @ 00069879 v 0000 + 14548343 n 0403 + 10214230 n 0201 + 14548343 n 0102 ~ 00092204 v 0000 02 + 09 00 + 10 00 | injure permanently; "He was disabled in a car accident" -00092204 29 v 01 hock 0 001 @ 00091968 v 0000 01 + 08 00 | disable by cutting the hock -00092293 29 v 04 devolve 0 deteriorate 0 drop 1 degenerate 0 010 @ 00203866 v 0000 + 00045356 a 0401 + 14440875 n 0402 + 13460299 n 0401 + 14561618 n 0201 + 13464204 n 0201 ! 00092690 v 0201 ~ 00076114 v 0000 ~ 00093593 v 0000 ~ 00093775 v 0000 02 + 01 00 + 02 00 | grow worse; "Her condition deteriorated"; "Conditions in the slums degenerated"; "The discussion devolved into a shouting match" -00092690 29 v 03 recuperate 0 recover 0 convalesce 0 011 @ 00205046 v 0000 + 02543598 a 0301 + 09961605 n 0301 + 13452347 n 0301 + 13452347 n 0203 + 01167540 a 0101 + 13452347 n 0102 ! 00092293 v 0102 ~ 00023473 v 0000 ~ 00093020 v 0000 $ 00093163 v 0000 01 + 02 00 | get over an illness or shock; "The patient is recuperating" -00093020 29 v 01 snap_back 0 001 @ 00092690 v 0000 01 + 02 00 | recover quickly; "After the surgery, the patient snapped back in a few days" -00093163 29 v 01 recuperate 1 004 $ 00092690 v 0000 @ 00081725 v 0000 + 01167540 a 0101 + 13452347 n 0102 02 + 09 00 + 10 00 | restore to good health or strength -00093327 29 v 06 relapse 0 lapse 0 recidivate 0 regress 0 retrogress 0 fall_back 0 005 @ 00387310 v 0000 + 00068617 n 0301 + 00068333 n 0202 + 00068333 n 0104 + 00068333 n 0105 01 + 02 00 | go back to bad behavior; "Those who recidivate are often minor criminals" -00093593 29 v 02 languish 0 fade 0 003 @ 00092293 v 0000 + 07427534 n 0202 + 10246395 n 0101 01 + 22 00 | become feeble; "The prisoner has be languishing for years in the dungeon" -00093775 29 v 02 waste 0 rot 0 003 @ 00092293 v 0000 + 13574452 n 0101 ~ 00097394 v 0000 01 + 01 00 | become physically weaker; "Political prisoners are wasting away in many prisons all over the world" -00093979 29 v 01 atrophy 0 003 @ 00241689 v 0000 + 14365741 n 0101 + 07427060 n 0101 03 + 01 00 + 02 00 + 23 00 | undergo atrophy; "Muscles that are not used will atrophy" -00094153 29 v 01 hypertrophy 0 002 @ 00230746 v 0000 + 14366759 n 0101 01 + 01 00 | undergo hypertrophy; "muscles can hypertrophy when people take steroids" -00094312 29 v 02 fledge 0 feather 0 002 @ 00094460 v 0000 + 01896031 n 0201 01 + 01 00 | grow feathers; "The young sparrows are fledging already" -00094460 29 v 05 grow 0 develop 0 produce 0 get 1 acquire 0 015 @ 00109660 v 0000 + 00041899 n 0402 + 13489037 n 0204 ~ 00094312 v 0000 ~ 00095012 v 0000 ~ 00095271 v 0000 ~ 00095377 v 0000 ~ 00095595 v 0000 ~ 00095747 v 0000 ~ 00095870 v 0000 ~ 00095990 v 0000 ~ 00096520 v 0000 ~ 00096648 v 0000 ~ 00108475 v 0000 $ 00545557 v 0000 02 + 08 00 + 11 00 | come to have or undergo a change of (physical features and attributes); "He grew a beard"; "The patient developed abdominal pains"; "I got funny spots all over my body"; "Well-developed breasts" -00095012 29 v 01 regrow 0 001 @ 00094460 v 0000 01 + 11 00 | grow anew or continue growth after an injury or interruption; "parts of the trunk of this tree can regrow"; "some invertebrates can regrow limbs or their tail after they lost it due to an injury" -00095271 29 v 01 spring 0 001 @ 00094460 v 0000 01 + 11 00 | develop suddenly; "The tire sprang a leak" -00095377 29 v 02 sprout 1 stock 3 005 @ 00094460 v 0000 + 13127091 n 0201 + 13164583 n 0101 + 07719437 n 0101 + 13487207 n 0102 01 + 01 00 | put forth and grow sprouts or shoots; "the plant sprouted early this year" -00095595 29 v 02 stool 1 tiller 0 003 @ 00094460 v 0000 + 13164970 n 0201 + 13111700 n 0101 01 + 01 00 | grow shoots in the form of stools or tillers -00095747 29 v 01 leaf 0 003 @ 00094460 v 0000 + 13152742 n 0101 + 13152742 n 0102 01 + 01 00 | produce leaves, of plants -00095870 29 v 01 pod 0 003 @ 00094460 v 0000 + 13139055 n 0101 + 13140049 n 0101 01 + 01 00 | produce pods, of plants -00095990 29 v 01 teethe 0 002 @ 00094460 v 0000 + 13565781 n 0101 01 + 02 00 | grow teeth; cut the baby teeth; "The little one is teething now" -00096136 29 v 01 cut e 002 $ 00108475 v 0000 @ 00231557 v 0000 01 + 01 00 | grow through the gums; "The new tooth is cutting" -00096264 29 v 02 ankylose 0 ancylose 0 002 @ 00231557 v 0000 ;c 00612160 n 0000 01 + 01 00 | undergo ankylosis; "joints ankylose" -00096396 29 v 02 ankylose 1 ancylose 1 002 @ 01295275 v 0000 ;c 00612160 n 0000 01 + 08 00 | produce ankylosis by surgery -00096520 29 v 01 pupate 0 002 @ 00094460 v 0000 + 02312427 n 0101 01 + 01 00 | develop into a pupa; "the insect larva pupate" -00096648 29 v 02 work_up 0 get_up 3 001 @ 00094460 v 0000 01 + 08 00 | develop; "we worked up an as of an appetite" -00096766 29 v 03 fester 0 maturate 0 suppurate 0 008 @ 00104868 v 0000 + 02805735 a 0301 + 13479889 n 0302 + 05417472 n 0303 + 13479889 n 0203 + 13479889 n 0101 + 14184254 n 0101 $ 00097179 v 0000 01 + 23 00 | ripen and generate pus; "her wounds are festering" -00097029 29 v 01 draw 0 003 @ 02509919 v 0000 ~ 00097179 v 0000 $ 02097800 v 0000 01 + 01 00 | cause to localize at one point; "Draw blood and pus" -00097179 29 v 02 suppurate 1 mature 4 005 $ 00096766 v 0000 @ 00097029 v 0000 + 13479889 n 0203 + 13479889 n 0102 + 05417472 n 0103 01 + 08 00 | cause to ripen and discharge pus; "The oil suppurates the pustules" -00097394 29 v 04 necrose 0 gangrene 0 mortify 0 sphacelate 0 005 @ 00093775 v 0000 + 14313440 n 0402 + 11486708 n 0404 + 11486708 n 0302 + 14313440 n 0201 01 + 23 00 | undergo necrosis; "the tissue around the wound necrosed" -00097621 29 v 02 regenerate 0 revitalize 0 002 @ 00205885 v 0000 ~ 00250877 v 0000 02 + 10 00 + 11 00 | restore strength; "This food revitalized the patient" -00097781 29 v 01 rejuvenate 0 002 @ 00097941 v 0000 + 11505546 n 0101 01 + 02 00 | become young again; "The old man rejuvenated when he became a grandfather" -00097941 29 v 01 regenerate 1 004 @ 00109660 v 0000 + 13548734 n 0101 + 00269963 n 0102 ~ 00097781 v 0000 01 + 01 00 | undergo regeneration -00098083 29 v 02 resuscitate 0 revive 1 007 > 00024047 v 0000 @ 00022099 v 0000 + 01048210 n 0101 + 04082344 n 0101 $ 00024047 v 0000 ~ 00098346 v 0000 ~ 00098517 v 0000 02 + 09 00 + 10 00 | cause to regain consciousness; "The doctors revived the comatose man" -00098346 29 v 03 boot 0 reboot 0 bring_up 0 001 @ 00098083 v 0000 01 + 08 00 | cause to load (an operating system) and start the initial processes; "boot your computer" -00098517 29 v 03 resurrect 0 raise 0 upraise 0 003 @ 00098083 v 0000 + 01048059 n 0101 $ 00098770 v 0000 02 + 09 00 + 10 00 | cause to become alive again; "raise from the dead"; "Slavery is already dead, and cannot be resurrected"; "Upraising ghosts" -00098770 29 v 03 resurrect 1 rise 0 uprise 5 003 $ 00098517 v 0000 @ 02004874 v 0000 + 07327288 n 0202 02 + 01 00 + 02 00 | return from the dead; "Christ is risen!"; "The dead are to uprise" -00098963 29 v 01 scab 0 002 @ 00099184 v 0000 + 05264247 n 0101 01 + 23 00 | form a scab; "the wounds will eventually scab" -00099089 29 v 01 skin_over 0 001 @ 00099184 v 0000 01 + 23 00 | grow new skin over an injury -00099184 29 v 01 heal 0 005 @ 00205046 v 0000 + 13491616 n 0101 ~ 00098963 v 0000 ~ 00099089 v 0000 ~ 00099374 v 0000 02 + 01 00 + 23 00 | get healthy again; "The wound is healing slowly" -00099374 29 v 01 granulate 0 002 @ 00099184 v 0000 + 14237818 n 0101 01 + 23 00 | form granulating tissue; "wounds and ulcers can granulate" -00099517 29 v 05 poop_out 0 peter_out 0 run_down 0 run_out 0 conk_out 0 001 @ 00076114 v 0000 01 + 02 00 | use up all one's strength and energy and stop working; "At the end of the march, I pooped out" -00099721 29 v 02 exercise 0 work_out 0 011 $ 00100551 v 0000 * 01831531 v 0000 + 00624738 n 0205 + 00624738 n 0101 + 03472232 n 0102 + 00624738 n 0102 ~ 00027064 v 0000 ~ 00100044 v 0000 ~ 00100235 v 0000 ~ 00101277 v 0000 ~ 01150370 v 0000 02 + 02 00 + 08 00 | do physical exercise; "She works out in the gym every day" -00100044 29 v 01 train 0 003 @ 00099721 v 0000 + 00893955 n 0101 $ 00833702 v 0000 01 + 02 00 | exercise in order to prepare for an event or competition; "She is training for the Olympics" -00100235 29 v 01 tumble 0 005 @ 00099721 v 0000 + 00437788 n 0101 + 10732967 n 0101 + 00434075 n 0102 ~ 00100410 v 0000 01 + 02 00 | do gymnastics, roll and turn skillfully -00100410 29 v 01 roll 6 002 @ 00100235 v 0000 + 07441619 n 0103 01 + 02 00 | execute a roll, in tumbling; "The gymnasts rolled and jumped" -00100551 29 v 03 exercise 1 work 0 work_out 1 007 > 00099721 v 0000 @ 02407987 v 0000 + 00624738 n 0305 + 00624738 n 0101 + 03472232 n 0102 $ 00099721 v 0000 ~ 00100905 v 0000 02 + 08 00 + 09 00 | give a workout to; "Some parents exercise their infants"; "My personal trainer works me hard"; "work one's muscles"; "this puzzle will exercise your mind" -00100905 29 v 01 warm_up 1 004 @ 00100551 v 0000 @ 02407987 v 0000 + 01144716 n 0101 ~ 00101137 v 0000 01 + 09 00 | cause to do preliminary exercises so as to stretch the muscles; "The coach warmed up the players before the game" -00101137 29 v 01 limber 0 001 @ 00100905 v 0000 01 + 08 00 | cause to become limber; "The violist limbered her wrists before the concert" -00101277 29 v 03 tone 0 tone_up 0 strengthen 0 002 @ 00099721 v 0000 + 14544672 n 0103 01 + 08 00 | give a healthy elasticity to; "Let's tone our muscles" -00101434 29 v 02 stretch 2 stretch_out 2 002 @ 01831531 v 0000 + 00341243 n 0103 01 + 02 00 | extend one's body or limbs; "Let's stretch for a minute--we've been sitting here for over 3 hours" -00101629 29 v 02 fart 0 break_wind 0 003 @ 00010241 v 0000 + 00839597 n 0101 + 00839597 n 0102 01 + 02 00 | expel intestinal gases through the anus -00101779 29 v 02 snuffle 0 snivel 0 005 @ 00005041 v 0000 + 00836149 n 0203 + 10776339 n 0204 + 00836149 n 0101 + 10618007 n 0101 01 + 02 00 | snuff up mucus through the nose -00101956 29 v 05 spit 0 ptyalize 0 ptyalise 0 spew 1 spue 1 008 @ 00006238 v 0000 + 13543871 n 0201 + 00118552 n 0101 + 05416198 n 0102 + 10636874 n 0101 + 00118552 n 0102 ^ 00006238 v 0104 ^ 02200341 v 0103 02 + 02 00 + 08 00 | expel or eject (saliva or phlegm or sputum) from the mouth; "The father of the victim spat at the alleged murderer" -00102303 29 v 03 splutter 0 sputter 0 spit_out 0 001 @ 00006238 v 0000 01 + 08 00 | spit up in an explosive manner -00102420 29 v 01 stub 0 001 @ 01236164 v 0000 01 + 08 00 | strike (one's toe) accidentally against an object; "She stubbed her toe in the dark and now it's broken" -00102586 29 v 01 harm 0 004 @ 00069879 v 0000 + 00403092 n 0102 + 07420770 n 0102 ~ 00088209 v 0000 05 + 01 00 + 02 00 + 09 00 + 10 00 + 12 00 | cause or do harm to; "These pills won't harm your system" -00102791 29 v 01 salivate 0 004 @ 00010241 v 0000 + 13552528 n 0101 + 05416198 n 0101 ~ 00102974 v 0000 01 + 02 00 | produce saliva; "We salivated when he described the great meal" -00102974 29 v 06 drivel 0 drool 0 slabber 0 slaver 0 slobber 0 dribble 0 011 @ 00102791 v 0000 + 05416678 n 0602 + 10033663 n 0601 + 10033663 n 0503 + 05416678 n 0504 ^ 01827745 v 0502 + 05416678 n 0201 + 10033663 n 0204 ^ 01827745 v 0201 + 05416678 n 0103 + 10033663 n 0102 01 + 02 00 | let saliva drivel from the mouth; "The baby drooled" -00103317 29 v 04 blush 0 crimson 0 flush 0 redden 0 007 @ 00281101 v 0000 + 14050871 n 0303 + 00118268 n 0302 + 04963588 n 0201 + 00118268 n 0101 + 13003522 n 0102 + 04112752 n 0103 01 + 02 00 | turn red, as if in embarrassment or shame; "The girl blushed when a young man whistled as she walked by" -00103619 29 v 03 pale 0 blanch 0 blench 0 002 @ 00281101 v 0000 + 04977561 n 0106 01 + 02 00 | turn pale, as if in fear -00103741 29 v 01 etiolate 0 002 @ 00126264 v 0000 + 04700496 n 0101 01 + 11 00 | make pale or sickly; "alcohol etiolates your skin" -00103875 29 v 02 tan 0 bronze 0 004 @ 00281101 v 0000 + 14290534 n 0101 + 13565622 n 0101 ~ 00104026 v 0000 01 + 02 00 | get a tan, from wind or sun -00104026 29 v 01 suntan 0 002 @ 00103875 v 0000 + 14290534 n 0102 01 + 02 00 | get a tan from being exposed to the sun -00104147 29 v 02 sun 0 sunbathe 0 003 @ 01547001 v 0000 + 10675010 n 0201 + 11485367 n 0103 03 + 02 00 + 22 00 + 09 01 | expose one's body to the sun -00104299 29 v 02 sunburn 0 burn 0 004 @ 00281101 v 0000 + 14290534 n 0204 + 14290365 n 0101 + 14290534 n 0103 01 + 02 00 | get a sunburn by overexposure to the sun -00104465 29 v 02 generalize 0 generalise 0 001 @ 01378556 v 0000 02 + 01 00 + 04 00 | become systemic and spread throughout the body; "this kind of infection generalizes throughout the immune system" -00104667 29 v 02 metastasize 0 metastasise 0 002 @ 01378556 v 0000 + 13515353 n 0101 02 + 01 00 + 04 00 | spread throughout the body; "the cancer had metastasized and the patient could not be saved" -00104868 29 v 05 exhaust 2 discharge 0 expel 0 eject 0 release 1 015 + 13549672 n 0501 + 00116687 n 0403 + 00116687 n 0301 + 13466586 n 0303 + 13466586 n 0201 ~ 00006238 v 0000 ~ 00034948 v 0000 ~ 00055010 v 0000 ~ 00059899 v 0000 ~ 00062397 v 0000 ~ 00072989 v 0000 ~ 00074834 v 0000 ~ 00077071 v 0000 ~ 00096766 v 0000 ~ 00105333 v 0000 02 + 08 00 + 11 00 | eliminate (a substance); "combustion products are exhausted in the engine"; "the plant releases a gas" -00105333 29 v 03 emit 0 breathe 1 pass_off 0 007 @ 00104868 v 0000 + 01253060 n 0101 ~ 00003431 v 0000 ~ 00003662 v 0000 ~ 00004605 v 0000 ~ 00291163 v 0000 ~ 00519056 v 0000 02 + 08 00 + 11 00 | expel (gases or odors) -00105554 29 v 02 joke 0 jest 0 008 @ 00010435 v 0000 + 00431005 n 0201 + 06778102 n 0204 + 10221312 n 0201 + 10224098 n 0101 + 00431005 n 0102 + 06778102 n 0101 ~ 00105778 v 0000 01 + 02 00 | act in a funny or teasing way -00105778 29 v 03 clown 0 clown_around 0 antic 0 005 @ 00105554 v 0000 + 00427580 n 0301 + 09930876 n 0101 + 06781383 n 0102 + 00513401 n 0102 01 + 02 00 | act as or like a clown -00105958 29 v 01 feel 0 003 @ 02604760 v 0000 ~ 00106217 v 0000 ~ 00106412 v 0000 01 + 07 00 | be conscious of a physical, mental, or emotional state; "My cold is gone--I feel fine today"; "She felt tired after the long hike"; "She felt sad after her loss" -00106217 29 v 02 feel_like_a_million 0 feel_like_a_million_dollars 0 001 @ 00105958 v 0000 01 + 02 00 | be in excellent health and spirits; "he feels like a million after he got the promotion" -00106412 29 v 01 suffocate 3 002 @ 00105958 v 0000 + 00268383 a 0103 01 + 08 00 | feel uncomfortable for lack of fresh air; "The room was hot and stuffy and we were suffocating" -00106592 29 v 01 gown 0 004 @ 00047945 v 0000 + 03450734 n 0101 + 03450516 n 0101 + 03450230 n 0101 01 + 09 00 | dress in a gown -00106723 29 v 01 jaundice 0 002 @ 00019448 v 0000 + 14319684 n 0101 01 + 10 00 | affect with, or as if with, jaundice -00106843 29 v 01 piffle 0 002 @ 00010435 v 0000 + 06608143 n 0103 01 + 02 00 | act in a trivial or ineffective way -00106960 29 v 02 run_down 1 run_over 0 001 @ 00069879 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | injure or kill by running over, as with a vehicle -00107110 29 v 01 pack_on 0 001 @ 00046151 v 0000 01 + 08 00 | gain (weight); "He packed on two pounds over the summer" -00107231 29 v 01 call 5 001 @ 00018813 v 0000 01 + 09 00 | rouse somebody from sleep with a call; "I was called at 5 A.M. this morning" -00107369 29 v 01 make 6 001 @ 00010435 v 0000 01 + 07 00 | behave in a certain way; "make merry" -00107468 29 v 01 make_as_if 0 001 @ 00010435 v 0000 01 + 28 00 | begin or appear to begin an action; "He made as if to shake my hand" -00107604 29 v 01 break b 001 @ 00151689 v 0000 01 + 01 00 | diminish or discontinue abruptly; "The patient's fever broke last night" -00107739 29 v 02 fracture 0 break 4 005 @ 00069879 v 0000 + 14292090 n 0202 + 00376994 n 0101 + 14292090 n 0101 $ 00107943 v 0000 01 + 08 00 | fracture a bone of; "I broke my foot while playing hockey" -00107943 29 v 01 fracture 1 005 $ 00107739 v 0000 + 00376994 n 0101 + 14292090 n 0101 ~ 00108121 v 0000 $ 00108303 v 0000 01 + 08 00 | break (a bone); "She broke her clavicle" -00108121 29 v 01 refracture 0 001 @ 00107943 v 0000 01 + 08 00 | break (a bone) that was previously broken but mended in an abnormal way; "The surgeon had to refracture her wrist" -00108303 29 v 01 fracture 2 003 $ 00107943 v 0000 @ 00362348 v 0000 + 14292090 n 0101 01 + 01 00 | become fractured; "The tibia fractured from the blow of the iron pipe" -00108475 29 v 01 cut 4 002 @ 00094460 v 0000 $ 00096136 v 0000 01 + 08 00 | have grow through the gums; "The baby cut a tooth" -00108604 29 v 01 give a 002 @ 02297142 v 0000 $ 00108747 v 0000 01 + 15 00 | proffer (a body part); "She gave her hand to her little sister" -00108747 29 v 01 give b 002 $ 00108604 v 0000 @ 00797697 v 0000 01 + 15 00 | consent to engage in sexual intercourse with a man; "She gave herself to many men" -00108909 29 v 01 pack 0 002 @ 00078760 v 0000 + 03870822 n 0101 01 + 11 00 | treat the body or any part of it by wrapping it, as with blankets or sheets, and applying compresses to it, or stuffing it to provide cover, containment, or therapy, or to absorb blood; "The nurse packed gauze in the wound"; "You had better pack your swollen ankle with ice" -00109263 29 v 01 snuff 2 002 @ 00005041 v 0000 + 00883139 n 0102 01 + 08 00 | inhale audibly through the nose; "snuff coke" -00109389 29 v 01 froth 0 002 @ 00067999 v 0000 ~ 00109540 v 0000 02 + 01 00 + 02 00 | exude or expel foam; "the angry man was frothing at the mouth" -00109540 29 v 01 lather 1 001 @ 00109389 v 0000 01 + 01 00 | exude sweat or lather; "this unfit horse lathers easily" -00109660 30 v 01 change 0 197 + 11412727 n 0101 + 07296428 n 0101 + 03005920 n 0101 ! 00117985 v 0101 ~ 00024814 v 0000 ~ 00046534 v 0000 ~ 00094460 v 0000 ~ 00097941 v 0000 ~ 00113420 v 0000 ~ 00113728 v 0000 ~ 00113853 v 0000 ~ 00114837 v 0000 ~ 00116365 v 0000 ~ 00119873 v 0000 ~ 00121046 v 0000 ~ 00122485 v 0000 ~ 00123018 v 0000 ~ 00125078 v 0000 ~ 00125447 v 0000 ~ 00125841 v 0000 ~ 00134564 v 0000 ~ 00134898 v 0000 ~ 00138508 v 0000 ~ 00140123 v 0000 ~ 00140967 v 0000 ~ 00144850 v 0000 ~ 00146138 v 0000 ~ 00150287 v 0000 ~ 00155547 v 0000 ~ 00160447 v 0000 ~ 00160653 v 0000 ~ 00161012 v 0000 ~ 00169651 v 0000 ~ 00169806 v 0000 ~ 00193328 v 0000 ~ 00202784 v 0000 ~ 00208836 v 0000 ~ 00210738 v 0000 ~ 00214268 v 0000 ~ 00219403 v 0000 ~ 00220461 v 0000 ~ 00229026 v 0000 ~ 00237877 v 0000 ~ 00238372 v 0000 ~ 00238867 v 0000 ~ 00239321 v 0000 ~ 00250539 v 0000 ~ 00254486 v 0000 ~ 00254867 v 0000 ~ 00267041 v 0000 ~ 00271946 v 0000 ~ 00272177 v 0000 ~ 00280930 v 0000 ~ 00281101 v 0000 ~ 00282933 v 0000 ~ 00305109 v 0000 ~ 00312380 v 0000 ~ 00313585 v 0000 ~ 00328128 v 0000 ~ 00336260 v 0000 ~ 00343180 v 0000 ~ 00350283 v 0000 ~ 00356258 v 0000 ~ 00365810 v 0000 ~ 00370126 v 0000 ~ 00373112 v 0000 ~ 00373250 v 0000 ~ 00381601 v 0000 ~ 00384411 v 0000 ~ 00391971 v 0000 ~ 00401373 v 0000 ~ 00409643 v 0000 ~ 00411020 v 0000 ~ 00418563 v 0000 ~ 00419950 v 0000 ~ 00434374 v 0000 ~ 00435103 v 0000 ~ 00443116 v 0000 ~ 00443384 v 0000 ~ 00454651 v 0000 ~ 00461354 v 0000 ~ 00468583 v 0000 ~ 00468791 v 0000 ~ 00476133 v 0000 ~ 00481555 v 0000 ~ 00491456 v 0000 ~ 00492225 v 0000 ~ 00499304 v 0000 ~ 00500356 v 0000 ~ 00501718 v 0000 ~ 00509958 v 0000 ~ 00522751 v 0000 ~ 00524299 v 0000 ~ 00524682 v 0000 ~ 00525164 v 0000 ~ 00525932 v 0000 ~ 00526229 v 0000 ~ 00526339 v 0000 ~ 00526749 v 0000 ~ 00527801 v 0000 ~ 00528836 v 0000 ~ 00531769 v 0000 ~ 00531904 v 0000 ~ 00535988 v 0000 ~ 00536807 v 0000 ~ 00537050 v 0000 ~ 00537153 v 0000 ~ 00537759 v 0000 ~ 00538043 v 0000 ~ 00538199 v 0000 ~ 00538323 v 0000 ~ 00538852 v 0000 ~ 00539110 v 0000 ~ 00542120 v 0000 ~ 00543016 v 0000 ~ 00543287 v 0000 ~ 00543410 v 0000 ~ 00545292 v 0000 ~ 00545557 v 0000 ~ 00547022 v 0000 ~ 00547221 v 0000 ~ 00548479 v 0000 ~ 00548616 v 0000 ~ 00549396 v 0000 ~ 00551210 v 0000 ~ 00552006 v 0000 ~ 00552815 v 0000 ~ 00553407 v 0000 ~ 00554894 v 0000 ~ 00555654 v 0000 ~ 00557216 v 0000 ~ 00561266 v 0000 ~ 00561375 v 0000 ~ 00563360 v 0000 ~ 00564151 v 0000 ~ 00564695 v 0000 ~ 00565279 v 0000 ~ 00565592 v 0000 ~ 00566024 v 0000 ~ 00567099 v 0000 ~ 00567775 v 0000 ~ 00569741 v 0000 ~ 00570694 v 0000 ~ 00571901 v 0000 ~ 00572021 v 0000 ~ 00572362 v 0000 ~ 00572502 v 0000 ~ 00572788 v 0000 ~ 00574218 v 0000 ~ 00574996 v 0000 ~ 00575720 v 0000 ~ 00576384 v 0000 ~ 00576498 v 0000 ~ 00576684 v 0000 ~ 00577500 v 0000 ~ 00577998 v 0000 ~ 00578862 v 0000 ~ 00579367 v 0000 ~ 00580142 v 0000 ~ 00581038 v 0000 ~ 00581355 v 0000 ~ 00581671 v 0000 ~ 00583064 v 0000 ~ 00583523 v 0000 ~ 00584410 v 0000 ~ 00584810 v 0000 ~ 00586387 v 0000 ~ 00586598 v 0000 ~ 00587124 v 0000 ~ 00588084 v 0000 ~ 00644430 v 0000 ~ 00654446 v 0000 ~ 01080523 v 0000 ~ 01557774 v 0000 ~ 01745141 v 0000 ~ 01775914 v 0000 ~ 01969779 v 0000 ~ 01983771 v 0000 ~ 01986715 v 0000 ~ 01989053 v 0000 ~ 02108377 v 0000 ~ 02114056 v 0000 ~ 02149611 v 0000 ~ 02221635 v 0000 ~ 02383440 v 0000 ~ 02467203 v 0000 ~ 02513048 v 0000 ~ 02533907 v 0000 ~ 02601808 v 0000 ~ 02625659 v 0000 ~ 02625916 v 0000 ~ 02627221 v 0000 ~ 02667419 v 0000 ~ 02667558 v 0000 ~ 02725067 v 0000 ~ 02748759 v 0000 ~ 02758581 v 0000 02 + 01 00 + 02 00 | undergo a change; become different in essence; losing one's or its original nature; "She changed completely as she grew older"; "The weather changed last night" -00113420 30 v 01 shade 0 002 @ 00109660 v 0000 $ 00113605 v 0000 01 + 04 00 | pass from one quality such as color to another by a slight degree; "the butterfly wings shade to yellow" -00113605 30 v 01 shade 1 002 $ 00113420 v 0000 @ 00126264 v 0000 02 + 08 00 + 11 00 | vary slightly; "shade the meaning" -00113728 30 v 01 gel 0 002 @ 00109660 v 0000 + 14590542 n 0101 01 + 01 00 | become a gel; "The solid, when heated, gelled" -00113853 30 v 04 brutalize 0 brutalise 0 animalize 0 animalise 0 004 @ 00109660 v 0000 + 00271879 n 0202 + 01263445 a 0105 + 00271879 n 0101 01 + 02 00 | become brutal or insensitive and unfeeling -00114052 30 v 04 brutalize 1 brutalise 1 animalize 1 animalise 1 004 @ 00126264 v 0000 + 00271879 n 0202 + 01263445 a 0105 + 00271879 n 0101 02 + 09 00 + 10 00 | make brutal, unfeeling, or inhuman; "Life in the camps had brutalized him" -00114291 30 v 02 caramelize 0 caramelise 0 006 @ 00115157 v 0000 ;c 00243918 n 0000 + 07595180 n 0201 + 07601809 n 0201 + 07595180 n 0101 + 07601809 n 0101 01 + 08 00 | convert to caramel -00114481 30 v 01 rasterize 0 003 @ 00115157 v 0000 ;c 06128570 n 0000 + 04054795 n 0101 01 + 08 00 | convert (an image) into pixels -00114615 30 v 02 caramelize 1 caramelise 1 006 @ 00114837 v 0000 ;c 00243918 n 0000 + 07595180 n 0201 + 07601809 n 0201 + 07595180 n 0101 + 07601809 n 0101 01 + 01 00 | be converted into caramel; "The sugar caramelized" -00114837 30 v 01 convert 4 009 $ 00115157 v 0000 @ 00109660 v 0000 ;c 06084469 n 0000 + 00348537 a 0101 + 03099945 n 0101 ~ 00114615 v 0000 ~ 00117878 v 0000 ~ 00269889 v 0000 ~ 00280787 v 0000 02 + 01 00 + 04 00 | change in nature, purpose, or function; undergo a chemical change; "The substance converts to an acid" -00115157 30 v 01 convert 3 041 @ 00126264 v 0000 + 01027988 a 0101 + 00400083 n 0101 + 03099945 n 0102 ~ 00114291 v 0000 ~ 00114481 v 0000 $ 00114837 v 0000 ~ 00116079 v 0000 ~ 00116203 v 0000 ~ 00116496 v 0000 ~ 00116619 v 0000 ~ 00116888 v 0000 ~ 00117085 v 0000 ~ 00117346 v 0000 ~ 00117498 v 0000 ~ 00117624 v 0000 ~ 00117757 v 0000 ~ 00321020 v 0000 ~ 00381496 v 0000 ~ 00383871 v 0000 ~ 00458754 v 0000 ~ 00504901 v 0000 ~ 00507664 v 0000 ~ 00511430 v 0000 ~ 00511636 v 0000 ~ 00527232 v 0000 ~ 00550823 v 0000 ~ 00556389 v 0000 ~ 00569870 v 0000 ~ 00576860 v 0000 ~ 00585298 v 0000 ~ 00585405 v 0000 ~ 00585499 v 0000 ~ 00585606 v 0000 ~ 00585705 v 0000 ~ 00585805 v 0000 ~ 00585907 v 0000 ~ 00585986 v 0000 ~ 00586073 v 0000 ~ 00586157 v 0000 ~ 00993892 v 0000 01 + 08 00 | change the nature, purpose, or function of something; "convert lead into gold"; "convert hotels into jails"; "convert slaves to laborers" -00116079 30 v 01 humify 0 002 @ 00115157 v 0000 + 13494192 n 0101 02 + 08 00 + 11 00 | convert (plant remains) into humus -00116203 30 v 02 verbalize 0 verbalise 0 002 @ 00115157 v 0000 ;c 05650820 n 0000 01 + 08 00 | convert into a verb; "many English nouns have become verbalized" -00116365 30 v 01 creolize 0 002 @ 00109660 v 0000 + 06905358 n 0101 01 + 01 00 | develop into a creole; "pidgins often creolize" -00116496 30 v 01 sporulate 0 003 $ 01752728 v 0000 @ 00115157 v 0000 ;c 06066555 n 0000 01 + 11 00 | convert into spores -00116619 30 v 04 novelize 0 novelise 0 fictionalize 0 fictionalise 0 005 @ 00115157 v 0000 + 06367373 n 0402 + 00931040 n 0403 + 00931453 n 0202 + 00931453 n 0101 01 + 08 00 | convert into the form or the style of a novel; "The author novelized the historical event" -00116888 30 v 01 deaden 4 002 @ 00115157 v 0000 ;c 06084469 n 0000 01 + 08 00 | convert (metallic mercury) into a grey powder consisting of minute globules, as by shaking with chalk or fatty oil -00117085 30 v 02 opalize 0 opalise 0 002 @ 00115157 v 0000 + 14688234 n 0101 01 + 11 00 | replace or convert into opal; "opalized tree trunks" -00117230 30 v 02 opalize 1 opalise 1 002 @ 00126264 v 0000 + 14688234 n 0101 02 + 08 00 + 11 00 | make opalescent -00117346 30 v 01 receive 0 002 @ 00115157 v 0000 + 04060647 n 0101 01 + 08 00 | convert into sounds or pictures; "receive the incoming radio signals" -00117498 30 v 01 reconvert 0 001 @ 00115157 v 0000 02 + 08 00 + 11 00 | convert back; "Hollywood is reconverting old films" -00117624 30 v 01 malt 0 004 $ 00117757 v 0000 $ 00186001 v 0000 @ 00115157 v 0000 + 07889274 n 0101 01 + 08 00 | convert into malt -00117757 30 v 01 malt 2 003 @ 00115157 v 0000 + 07888909 n 0101 $ 00117624 v 0000 01 + 08 00 | convert grain into malt -00117878 30 v 01 malt 1 002 @ 00114837 v 0000 + 07889274 n 0101 01 + 01 00 | turn into malt, become malt -00117985 30 v 03 stay 0 remain 0 rest 0 009 @ 02604760 v 0000 + 01053617 n 0101 ! 00109660 v 0101 ~ 00118435 v 0000 ~ 00118922 v 0000 ~ 02487368 v 0000 ~ 02707125 v 0000 ~ 02734800 v 0000 ~ 02744820 v 0000 03 + 04 00 + 06 00 + 07 00 | stay the same; remain in a certain state; "The dress remained wet after repeated attempts to dry it"; "rest assured"; "stay alone"; "He remained unmoved by her tears"; "The bad weather continued for another week" -00118435 30 v 01 keep_out 0 001 @ 00117985 v 0000 02 + 01 00 + 02 00 | remain outside -00118523 30 v 01 continue a 006 @ 02604760 v 0000 + 05051896 n 0103 + 15133621 n 0102 ~ 00235110 v 0000 ~ 02647497 v 0000 ~ 02703018 v 0000 01 + 01 00 | exist over a prolonged period of time; "The bad weather continued for two more weeks" -00118764 30 v 03 keep_up 0 keep_abreast 2 follow 1 001 $ 00729109 v 0000 02 + 02 00 + 22 00 | keep informed; "He kept up on his country's foreign policies" -00118922 30 v 01 sit_tight 0 001 @ 00117985 v 0000 01 + 02 00 | maintain the same position; wait it out; "Let's not make a decision--let's sit tight" -00119074 30 v 01 differentiate 0 005 @ 00160653 v 0000 + 13859307 n 0101 + 07366289 n 0104 + 04748836 n 0101 + 05748285 n 0101 01 + 01 00 | become distinct and acquire a different character -00119266 30 v 04 speciate 0 differentiate 5 specialize 7 specialise 7 004 @ 00251064 v 0000 + 13559782 n 0402 + 13559782 n 0301 + 13560079 n 0101 02 + 01 00 + 02 00 | evolve so as to lead to a new species or develop in a way most suited to the environment -00119524 30 v 01 differentiate 1 005 @ 00252019 v 0000 + 13859307 n 0101 + 04748836 n 0101 + 13559782 n 0103 ! 00119725 v 0101 01 + 01 00 | become different during development; "cells differentiate" -00119725 30 v 01 dedifferentiate 0 003 @ 00252019 v 0000 + 13458840 n 0101 ! 00119524 v 0101 01 + 01 00 | lose specialization in form or function -00119873 30 v 01 mutate 0 008 @ 00109660 v 0000 + 02987332 a 0101 + 02987454 a 0101 + 10341660 n 0102 + 07425011 n 0101 + 10341660 n 0101 + 01324305 n 0101 ~ 00120217 v 0000 01 + 01 00 | undergo mutation; "cells mutate" -00120095 30 v 02 arterialize 0 arterialise 0 001 @ 00126264 v 0000 01 + 11 00 | change venous blood into arterial blood -00120217 30 v 01 revert d 001 @ 00119873 v 0000 01 + 01 00 | undergo reversion, as in a mutation -00120316 30 v 02 make 0 get 1 004 @ 00126264 v 0000 ~ 00120675 v 0000 ~ 00120796 v 0000 ~ 02729414 v 0000 02 + 05 00 + 25 00 | give certain properties to something; "get someone mad"; "She made us look silly"; "He made a fool of himself at the meeting"; "Don't make this into a big deal"; "This invention will make you a millionaire"; "Make yourself clear" -00120675 30 v 01 render 0 001 @ 00120316 v 0000 02 + 05 00 + 25 00 | cause to become; "The shot rendered her immobile" -00120796 30 v 03 get 2 let 1 have 0 001 @ 00120316 v 0000 03 + 20 00 + 21 00 + 24 00 | cause to move; cause to be in a certain position or condition; "He got his squad on the ball"; "This let me in for a big surprise"; "He got a girl into trouble" -00121046 30 v 02 have 1 experience 0 004 @ 00109660 v 0000 + 07285403 n 0201 + 05984584 n 0201 ~ 02739480 v 0000 01 + 11 00 | undergo; "The stocks had a fast run-up" -00121214 30 v 02 alternate 0 take_turns 0 003 @ 02367363 v 0000 + 01010684 n 0101 ~ 00121387 v 0000 01 + 02 00 | do something in turns; "We take turns on the night shift" -00121387 30 v 01 spell 0 001 @ 00121214 v 0000 01 + 02 00 | take turns working; "the workers spell every four hours" -00121506 30 v 02 alternate 1 jump 3 002 @ 00123170 v 0000 + 01010684 n 0101 02 + 04 00 + 22 00 | go back and forth; swing back and forth between two states or conditions -00121678 30 v 06 interchange 0 tack 2 switch 0 alternate 2 flip 0 flip-flop 0 005 @ 00138508 v 0000 + 05789808 n 0603 + 07443761 n 0305 + 00196084 n 0301 + 00351334 n 0201 02 + 01 00 + 08 00 | reverse (a direction, attitude, or course of action) -00121926 30 v 03 counterchange 0 transpose 2 interchange 1 001 @ 00126264 v 0000 01 + 08 00 | cause to change places; "interchange this screw for one of a smaller size" -00122097 30 v 02 vascularize 0 vascularise 0 004 @ 00126264 v 0000 + 02873811 a 0101 + 13572860 n 0101 $ 00581671 v 0000 01 + 11 00 | make vascular; "the yolk sac is gradually vascularized" -00122289 30 v 01 decrepitate 0 003 $ 00122485 v 0000 @ 00126264 v 0000 + 07383092 n 0101 01 + 08 00 | to roast or calcine so as to cause to crackle or until crackling stops; "decrepitate salts" -00122485 30 v 01 decrepitate 1 003 @ 00109660 v 0000 + 07383092 n 0101 $ 00122289 v 0000 01 + 01 00 | undergo decrepitation and crackle; "The salt decrepitated" -00122648 30 v 01 crackle 0 001 @ 00123170 v 0000 04 + 01 00 + 03 00 + 08 00 + 11 00 | to become, or to cause to become, covered with a network of small cracks; "The blazing sun crackled the desert sand" -00122853 30 v 02 suburbanize 0 suburbanise 0 002 @ 00126264 v 0000 + 02804590 a 0101 02 + 08 00 + 11 00 | make suburban in character; "highly suburbanized cities" -00123018 30 v 02 suburbanize 1 suburbanise 1 002 @ 00109660 v 0000 + 02804590 a 0101 01 + 01 00 | take on suburban character; "the city suburbanized" -00123170 30 v 03 change 2 alter 0 vary 1 023 + 02507515 a 0302 + 02504131 a 0301 + 02068277 a 0301 + 05840650 n 0303 + 05840650 n 0302 + 13859043 n 0101 + 11412727 n 0101 + 07296428 n 0101 + 03005920 n 0101 + 00191142 n 0101 ~ 00121506 v 0000 ~ 00122648 v 0000 ~ 00123894 v 0000 ~ 00124074 v 0000 ~ 00124442 v 0000 ~ 00299580 v 0000 ~ 00303940 v 0000 ~ 00304100 v 0000 ~ 00436404 v 0000 ~ 00436668 v 0000 ~ 00437449 v 0000 ~ 00533773 v 0000 ~ 02746449 v 0000 02 + 01 00 + 02 00 | become different in some particular way, without permanently losing one's or its former characteristics or essence; "her mood changes in accordance with the weather"; "The supermarket's selection of vegetables varies according to the season" -00123894 30 v 01 modulate 5 002 @ 00123170 v 0000 + 06281295 n 0101 02 + 08 00 + 11 00 | vary the frequency, amplitude, phase, or other characteristic of (electromagnetic waves) -00124074 30 v 02 avianize 0 avianise 0 001 @ 00123170 v 0000 01 + 08 00 | to modify microorganisms by repeated culture in the developing chick embryo -00124226 30 v 02 optimize 1 optimise 1 003 @ 00169806 v 0000 + 00260051 n 0202 + 00260051 n 0101 01 + 08 00 | modify to achieve maximum efficiency in storage capacity or time or cost; "optimize a computer program" -00124442 30 v 01 move 0 004 @ 00123170 v 0000 ~ 00124659 v 0000 ~ 00124854 v 0000 ~ 01972131 v 0000 02 + 01 00 + 04 00 | go or proceed from one point to another; "the debate moved from family values to the economy" -00124659 30 v 01 step 1 001 @ 00124442 v 0000 01 + 21 00 | move or proceed as if by steps into a new situation; "She stepped into a life of luxury"; "he won't step into his father's footsteps" -00124854 30 v 01 scroll 0 003 @ 00124442 v 0000 ;c 06128570 n 0000 + 06407733 n 0101 01 + 22 00 | move through text or graphics in order to display parts that do not fit on the screen; "Scroll down to see the entire text" -00125078 30 v 02 roll 7 roll_up 2 003 $ 00435688 v 0000 $ 00435853 v 0000 @ 00109660 v 0000 01 + 07 00 | show certain properties when being rolled; "The carpet rolls unevenly"; "dried-out tobacco rolls badly" -00125289 30 v 01 roll 6 001 @ 00140967 v 0000 03 + 01 00 + 04 00 + 07 00 | take the shape of a roll or cylinder; "the carpet rolled out"; "Yarn rolls well" -00125447 30 v 04 glaze 0 glass 0 glass_over 0 glaze_over 0 001 @ 00109660 v 0000 01 + 01 00 | become glassy or take on a glass-like appearance; "Her eyes glaze over when she is bored" -00125633 30 v 03 revolutionize 0 revolutionise 0 overturn 0 003 @ 00126264 v 0000 + 07424109 n 0201 + 07424109 n 0101 02 + 08 00 + 11 00 | change radically; "E-mail revolutionized communication in academe" -00125841 30 v 02 turn 3 grow 3 006 $ 00146138 v 0000 @ 00109660 v 0000 + 07324673 n 0203 + 07423365 n 0101 ~ 00126143 v 0000 ~ 00282523 v 0000 03 + 04 00 + 05 00 + 06 00 | pass into a condition gradually, take on a specific property or attribute; become; "The weather turned nasty"; "She grew angry" -00126143 30 v 01 bald 0 001 @ 00125841 v 0000 01 + 02 00 | grow bald; lose hair on one's head; "He is balding already" -00126264 30 v 03 change 1 alter 1 modify a 413 > 00109660 v 0000 + 00350069 a 0301 + 00199707 n 0302 + 00349295 a 0201 + 00199707 n 0201 + 07296428 n 0202 + 09609871 n 0101 + 13859043 n 0101 + 11412727 n 0101 + 07296428 n 0101 + 03005920 n 0101 + 00191142 n 0101 ~ 00018813 v 0000 ~ 00019273 v 0000 ~ 00019448 v 0000 ~ 00024649 v 0000 ~ 00052548 v 0000 ~ 00064889 v 0000 ~ 00066685 v 0000 ~ 00103741 v 0000 ~ 00113605 v 0000 ~ 00114052 v 0000 ~ 00115157 v 0000 ~ 00117230 v 0000 ~ 00120095 v 0000 ~ 00120316 v 0000 ~ 00121926 v 0000 ~ 00122097 v 0000 ~ 00122289 v 0000 ~ 00122853 v 0000 ~ 00125633 v 0000 ~ 00134136 v 0000 ~ 00134328 v 0000 ~ 00134737 v 0000 ~ 00135013 v 0000 ~ 00135285 v 0000 ~ 00135578 v 0000 ~ 00135857 v 0000 ~ 00136443 v 0000 ~ 00137313 v 0000 ~ 00139586 v 0000 ~ 00139729 v 0000 ~ 00142191 v 0000 ~ 00145623 v 0000 ~ 00148763 v 0000 ~ 00149469 v 0000 ~ 00151448 v 0000 ~ 00153263 v 0000 ~ 00156276 v 0000 ~ 00160261 v 0000 ~ 00160880 v 0000 ~ 00161987 v 0000 ~ 00165103 v 0000 ~ 00181664 v 0000 ~ 00190682 v 0000 ~ 00190886 v 0000 ~ 00190999 v 0000 ~ 00191385 v 0000 ~ 00191517 v 0000 ~ 00192051 v 0000 ~ 00199490 v 0000 ~ 00200397 v 0000 ~ 00201722 v 0000 ~ 00202445 v 0000 ~ 00202934 v 0000 ~ 00205885 v 0000 ~ 00208210 v 0000 ~ 00214951 v 0000 ~ 00218475 v 0000 ~ 00219012 v 0000 ~ 00220869 v 0000 ~ 00222135 v 0000 ~ 00224901 v 0000 ~ 00227913 v 0000 ~ 00238867 v 0000 ~ 00243124 v 0000 ~ 00249679 v 0000 ~ 00249969 v 0000 ~ 00253501 v 0000 ~ 00253664 v 0000 ~ 00253761 v 0000 ~ 00255389 v 0000 ~ 00258857 v 0000 ~ 00267365 v 0000 ~ 00270440 v 0000 ~ 00270826 v 0000 ~ 00271711 v 0000 ~ 00272391 v 0000 ~ 00272683 v 0000 ~ 00273445 v 0000 ~ 00276373 v 0000 ~ 00282076 v 0000 ~ 00283911 v 0000 ~ 00286605 v 0000 ~ 00288017 v 0000 ~ 00293429 v 0000 ~ 00295563 v 0000 ~ 00296178 v 0000 ~ 00298896 v 0000 ~ 00301338 v 0000 ~ 00302130 v 0000 ~ 00303661 v 0000 ~ 00308399 v 0000 ~ 00308534 v 0000 ~ 00308775 v 0000 ~ 00311559 v 0000 ~ 00312815 v 0000 ~ 00312990 v 0000 ~ 00313712 v 0000 ~ 00313987 v 0000 ~ 00323377 v 0000 ~ 00326170 v 0000 ~ 00336718 v 0000 ~ 00338559 v 0000 ~ 00352826 v 0000 ~ 00361641 v 0000 ~ 00365188 v 0000 ~ 00370412 v 0000 ~ 00371264 v 0000 ~ 00372958 v 0000 ~ 00374668 v 0000 ~ 00375865 v 0000 ~ 00379996 v 0000 ~ 00380159 v 0000 ~ 00380872 v 0000 ~ 00381013 v 0000 ~ 00381850 v 0000 ~ 00382010 v 0000 ~ 00382256 v 0000 ~ 00382493 v 0000 ~ 00382635 v 0000 ~ 00383437 v 0000 ~ 00383542 v 0000 ~ 00384620 v 0000 ~ 00385385 v 0000 ~ 00386252 v 0000 ~ 00386715 v 0000 ~ 00387153 v 0000 ~ 00387919 v 0000 ~ 00388065 v 0000 ~ 00388296 v 0000 ~ 00393398 v 0000 ~ 00393534 v 0000 ~ 00399368 v 0000 ~ 00399788 v 0000 ~ 00400101 v 0000 ~ 00400427 v 0000 ~ 00400883 v 0000 ~ 00401688 v 0000 ~ 00402539 v 0000 ~ 00403609 v 0000 ~ 00405236 v 0000 ~ 00405540 v 0000 ~ 00405853 v 0000 ~ 00406243 v 0000 ~ 00409119 v 0000 ~ 00409281 v 0000 ~ 00409869 v 0000 ~ 00410055 v 0000 ~ 00410244 v 0000 ~ 00410406 v 0000 ~ 00410817 v 0000 ~ 00411312 v 0000 ~ 00411547 v 0000 ~ 00411792 v 0000 ~ 00412292 v 0000 ~ 00412511 v 0000 ~ 00412696 v 0000 ~ 00412860 v 0000 ~ 00416880 v 0000 ~ 00417001 v 0000 ~ 00417596 v 0000 ~ 00419375 v 0000 ~ 00420132 v 0000 ~ 00420716 v 0000 ~ 00420909 v 0000 ~ 00431327 v 0000 ~ 00433668 v 0000 ~ 00437125 v 0000 ~ 00438495 v 0000 ~ 00439087 v 0000 ~ 00439343 v 0000 ~ 00440286 v 0000 ~ 00441445 v 0000 ~ 00444309 v 0000 ~ 00446695 v 0000 ~ 00447950 v 0000 ~ 00448290 v 0000 ~ 00448440 v 0000 ~ 00449692 v 0000 ~ 00452512 v 0000 ~ 00456357 v 0000 ~ 00458276 v 0000 ~ 00461956 v 0000 ~ 00468236 v 0000 ~ 00469187 v 0000 ~ 00469904 v 0000 ~ 00470386 v 0000 ~ 00475819 v 0000 ~ 00479598 v 0000 ~ 00479932 v 0000 ~ 00480221 v 0000 ~ 00480569 v 0000 ~ 00482180 v 0000 ~ 00487554 v 0000 ~ 00489299 v 0000 ~ 00493259 v 0000 ~ 00493703 v 0000 ~ 00495038 v 0000 ~ 00498530 v 0000 ~ 00499812 v 0000 ~ 00500055 v 0000 ~ 00500834 v 0000 ~ 00501159 v 0000 ~ 00501534 v 0000 ~ 00502085 v 0000 ~ 00504270 v 0000 ~ 00505151 v 0000 ~ 00505620 v 0000 ~ 00508032 v 0000 ~ 00511318 v 0000 ~ 00512186 v 0000 ~ 00512877 v 0000 ~ 00514730 v 0000 ~ 00514871 v 0000 ~ 00518115 v 0000 ~ 00519229 v 0000 ~ 00519854 v 0000 ~ 00520881 v 0000 ~ 00521185 v 0000 ~ 00522068 v 0000 ~ 00522613 v 0000 ~ 00523304 v 0000 ~ 00523645 v 0000 ~ 00523895 v 0000 ~ 00524083 v 0000 ~ 00524530 v 0000 ~ 00525281 v 0000 ~ 00525805 v 0000 ~ 00526643 v 0000 ~ 00527367 v 0000 ~ 00530829 v 0000 ~ 00532328 v 0000 ~ 00532429 v 0000 ~ 00532607 v 0000 ~ 00532886 v 0000 ~ 00533897 v 0000 ~ 00534094 v 0000 ~ 00534222 v 0000 ~ 00534369 v 0000 ~ 00534545 v 0000 ~ 00534680 v 0000 ~ 00535669 v 0000 ~ 00535844 v 0000 ~ 00536143 v 0000 ~ 00536304 v 0000 ~ 00536678 v 0000 ~ 00537316 v 0000 ~ 00537494 v 0000 ~ 00537632 v 0000 ~ 00537892 v 0000 ~ 00538454 v 0000 ~ 00538571 v 0000 ~ 00540946 v 0000 ~ 00542668 v 0000 ~ 00543918 v 0000 ~ 00544011 v 0000 ~ 00544549 v 0000 ~ 00545422 v 0000 ~ 00546528 v 0000 ~ 00547300 v 0000 ~ 00547493 v 0000 ~ 00547706 v 0000 ~ 00547802 v 0000 ~ 00547995 v 0000 ~ 00549217 v 0000 ~ 00551718 v 0000 ~ 00551840 v 0000 ~ 00552138 v 0000 ~ 00552253 v 0000 ~ 00552458 v 0000 ~ 00552619 v 0000 ~ 00553208 v 0000 ~ 00553727 v 0000 ~ 00553874 v 0000 ~ 00554110 v 0000 ~ 00554468 v 0000 ~ 00554729 v 0000 ~ 00555447 v 0000 ~ 00556001 v 0000 ~ 00556593 v 0000 ~ 00556855 v 0000 ~ 00557022 v 0000 ~ 00558219 v 0000 ~ 00558963 v 0000 ~ 00559102 v 0000 ~ 00559556 v 0000 ~ 00559754 v 0000 ~ 00559919 v 0000 ~ 00560893 v 0000 ~ 00561887 v 0000 ~ 00562182 v 0000 ~ 00562720 v 0000 ~ 00562882 v 0000 ~ 00563100 v 0000 ~ 00563824 v 0000 ~ 00565081 v 0000 ~ 00565858 v 0000 ~ 00566322 v 0000 ~ 00566569 v 0000 ~ 00566895 v 0000 ~ 00567604 v 0000 ~ 00567971 v 0000 ~ 00568234 v 0000 ~ 00568483 v 0000 ~ 00568661 v 0000 ~ 00568879 v 0000 ~ 00569556 v 0000 ~ 00570383 v 0000 ~ 00571738 v 0000 ~ 00572186 v 0000 ~ 00573247 v 0000 ~ 00573457 v 0000 ~ 00573571 v 0000 ~ 00573671 v 0000 ~ 00573932 v 0000 ~ 00574341 v 0000 ~ 00574735 v 0000 ~ 00575169 v 0000 ~ 00575359 v 0000 ~ 00575970 v 0000 ~ 00576979 v 0000 ~ 00577689 v 0000 ~ 00577839 v 0000 ~ 00578116 v 0000 ~ 00578295 v 0000 ~ 00578733 v 0000 ~ 00579105 v 0000 ~ 00579565 v 0000 ~ 00579952 v 0000 ~ 00580345 v 0000 ~ 00580512 v 0000 ~ 00580720 v 0000 ~ 00580865 v 0000 ~ 00581205 v 0000 ~ 00581509 v 0000 ~ 00581891 v 0000 ~ 00582145 v 0000 ~ 00582318 v 0000 ~ 00582917 v 0000 ~ 00583242 v 0000 ~ 00583759 v 0000 ~ 00583905 v 0000 ~ 00584954 v 0000 ~ 00586241 v 0000 ~ 00586461 v 0000 ~ 00587268 v 0000 ~ 00587849 v 0000 ~ 00587962 v 0000 ~ 00620673 v 0000 ~ 00933566 v 0000 ~ 00940214 v 0000 ~ 00960734 v 0000 ~ 01058036 v 0000 ~ 01098869 v 0000 ~ 01103836 v 0000 ~ 01194938 v 0000 ~ 01207527 v 0000 ~ 01246321 v 0000 ~ 01246444 v 0000 ~ 01246601 v 0000 ~ 01253468 v 0000 ~ 01275516 v 0000 ~ 01284908 v 0000 ~ 01339181 v 0000 ~ 01359145 v 0000 ~ 01368597 v 0000 ~ 01438902 v 0000 ~ 01462005 v 0000 ~ 01488956 v 0000 ~ 01493741 v 0000 ~ 01532589 v 0000 ~ 01534147 v 0000 ~ 01574923 v 0000 ~ 01584875 v 0000 ~ 01610463 v 0000 ~ 01667132 v 0000 ~ 01675963 v 0000 ~ 01801498 v 0000 ~ 01801697 v 0000 ~ 01823528 v 0000 ~ 01984734 v 0000 ~ 02114924 v 0000 ~ 02126863 v 0000 ~ 02138766 v 0000 ~ 02161758 v 0000 ~ 02168194 v 0000 ~ 02191106 v 0000 ~ 02196948 v 0000 ~ 02257767 v 0000 ~ 02304241 v 0000 ~ 02324478 v 0000 ~ 02426799 v 0000 ~ 02467003 v 0000 ~ 02519991 v 0000 ~ 02533748 v 0000 ~ 02535896 v 0000 ~ 02579447 v 0000 ~ 02601996 v 0000 ~ 02603056 v 0000 ~ 02626095 v 0000 ~ 02626934 v 0000 ~ 02753642 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to change; make different; cause a transformation; "The advent of the automobile may have altered the growth pattern of the city"; "The discussion has changed my thinking about the issue" -00133978 30 v 04 sensualize 0 sensualise 0 carnalize 0 carnalise 0 002 @ 02579447 v 0000 + 01778572 a 0302 01 + 09 00 | debase through carnal gratification -00134136 30 v 01 etiolate 0 003 @ 00126264 v 0000 ;c 00017222 n 0000 + 00274206 n 0101 02 + 08 00 + 11 00 | bleach and alter the natural development of (a green plant) by excluding sunlight -00134328 30 v 02 barbarize 0 barbarise 0 004 @ 00126264 v 0000 + 00272123 n 0202 + 00272123 n 0101 $ 00134564 v 0000 02 + 09 00 + 10 00 | make crude or savage in behavior or speech; "his years in prison have barbarized the young man" -00134564 30 v 02 barbarize 1 barbarise 1 003 $ 00134328 v 0000 @ 00109660 v 0000 + 00272123 n 0202 01 + 02 00 | become crude or savage or barbaric in behavior or language -00134737 30 v 02 alkalinize 0 alkalinise 0 002 @ 00126264 v 0000 ;c 06084469 n 0000 02 + 08 00 + 11 00 | make (a substance) alkaline; "The oxide is alkalized" -00134898 30 v 02 alkalinize 1 alkalinise 1 002 @ 00109660 v 0000 ;c 06084469 n 0000 01 + 01 00 | become alkaline -00135013 30 v 04 mythologize 0 mythologise 0 mythicize 0 mythicise 0 007 @ 00126264 v 0000 + 06769238 n 0202 + 06769238 n 0101 + 06147873 n 0101 + 07978423 n 0101 + 06372680 n 0101 ! 00135578 v 0101 01 + 08 00 | make into a myth; "The Europeans have mythicized Rte. 66" -00135285 30 v 02 allegorize 0 allegorise 0 009 @ 00126264 v 0000 + 09784160 n 0202 + 06880664 n 0202 + 06366581 n 0201 + 06372095 n 0203 + 09784160 n 0101 + 06880664 n 0102 + 06366581 n 0101 + 06372095 n 0103 02 + 08 00 + 11 00 | make into an allegory; "The story was allegorized over time" -00135578 30 v 02 demythologize 0 demythologise 0 005 @ 00126264 v 0000 ;c 06431740 n 0000 + 06769032 n 0202 + 06769032 n 0101 ! 00135013 v 0101 01 + 08 00 | remove the mythical element from (writings); "the Bible should be demythologized and examined for its historical value" -00135857 30 v 02 bring 0 land 0 003 @ 00126264 v 0000 ^ 00429060 v 0108 ^ 02539788 v 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring into a different state; "this may land you in jail" -00136044 30 v 02 secularize 0 secularise 0 003 @ 00146138 v 0000 + 01155465 n 0202 + 01155465 n 0101 02 + 08 00 + 11 00 | make secular and draw away from a religious orientation; "Ataturk secularized Turkey" -00136254 30 v 03 rubberize 0 rubberise 0 rubber 0 003 @ 01264283 v 0000 + 15006258 n 0301 + 15006258 n 0101 01 + 08 00 | coat or impregnate with rubber; "rubberize fabric for rain coats" -00136443 30 v 01 coarsen 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make less subtle or refined; "coarsen one's ideals" -00136567 30 v 02 anodize 0 anodise 0 001 @ 01264283 v 0000 01 + 08 00 | coat a metal with an oxide coat -00136673 30 v 01 citrate 0 002 @ 00146138 v 0000 + 14812872 n 0101 01 + 08 00 | cause to form a salt or ester of citric acid -00136800 30 v 01 equilibrate 0 005 @ 00146138 v 0000 ;c 06084469 n 0000 + 13934900 n 0101 + 13897996 n 0102 + 13446197 n 0102 02 + 08 00 + 11 00 | bring to a chemical stasis or equilibrium -00136991 30 v 03 leave 2 leave_alone 0 leave_behind 3 003 $ 02730135 v 0000 @ 02725714 v 0000 ~ 00496673 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 | leave unchanged or undisturbed or refrain from taking; "leave it as is"; "leave the young fawn alone"; "leave the flowers that you see in the park behind" -00137313 30 v 06 affect 0 impact 0 bear_upon 0 bear_on 0 touch_on 1 touch 0 017 @ 00126264 v 0000 + 11414411 n 0201 + 00157957 n 0203 ~ 00137791 v 0000 ~ 00137940 v 0000 ~ 00138069 v 0000 ~ 00138217 v 0000 ~ 00503164 v 0000 ~ 00515154 v 0000 ~ 00564300 v 0000 ~ 00836926 v 0000 ~ 01036319 v 0000 ~ 01209135 v 0000 ~ 02110927 v 0000 ~ 02507736 v 0000 ~ 02536557 v 0000 ~ 02602685 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | have an effect upon; "Will the new rules affect me?" -00137791 30 v 01 strike_a_blow 0 001 @ 00137313 v 0000 01 + 22 00 | affect adversely; "The court ruling struck a blow at the old segregation laws" -00137940 30 v 01 repercuss 0 002 @ 00137313 v 0000 + 11416722 n 0101 01 + 01 00 | cause repercussions; have an unwanted effect -00138069 30 v 01 tell_on 0 001 @ 00137313 v 0000 02 + 10 00 + 11 00 | produce an effect or strain on somebody; "Each step told on his tired legs" -00138217 30 v 01 redound 1 001 @ 00137313 v 0000 01 + 04 00 | have an effect for good or ill; "Her efforts will redound to the general good" -00138360 30 v 02 bacterize 0 bacterise 0 003 @ 02110927 v 0000 + 01348530 n 0202 + 01348530 n 0102 01 + 08 00 | subject to the action of bacteria -00138508 30 v 03 change_by_reversal 0 turn 0 reverse 0 020 @ 00109660 v 0000 + 01760488 a 0301 + 13858604 n 0301 + 00346693 n 0302 + 00234892 n 0301 + 07351612 n 0202 ^ 01510399 v 0202 ^ 01510576 v 0203 ~ 00121678 v 0000 ~ 00139160 v 0000 ~ 00139367 v 0000 ~ 00140751 v 0000 ~ 00199659 v 0000 ~ 00202236 v 0000 ~ 00380424 v 0000 ~ 00384055 v 0000 ~ 00387310 v 0000 ~ 00394563 v 0000 ~ 00867062 v 0000 ~ 01519977 v 0000 05 + 01 00 + 02 00 + 08 00 + 10 00 + 11 00 | change to the contrary; "The trend was reversed"; "the tides turned against him"; "public opinion turned when it was revealed that the president had an affair with a White House intern" -00139160 30 v 02 turn_the_tables 0 turn_the_tide 0 001 @ 00138508 v 0000 02 + 01 00 + 02 00 | cause a complete reversal of the circumstances; "The tables are turned now that the Republicans are in power!" -00139367 30 v 01 commutate 0 003 @ 00138508 v 0000 + 00728826 a 0101 + 03078670 n 0101 01 + 08 00 | reverse the direction of (an alternating electric current) each half cycle so as to produce a unidirectional current -00139586 30 v 02 alchemize 0 alchemise 0 003 @ 00126264 v 0000 ;c 06084469 n 0000 + 05778749 n 0101 01 + 08 00 | alter (elements) by alchemy -00139729 30 v 02 alcoholize 0 alcoholise 0 003 @ 00126264 v 0000 ;c 00243918 n 0000 + 07884567 n 0101 02 + 08 00 + 11 00 | make alcoholic, as by fermenting; "alcoholize prunes" -00139908 30 v 02 alcoholize 1 alcoholise 1 003 @ 00497705 v 0000 ;c 00243918 n 0000 + 07884567 n 0101 02 + 08 00 + 11 00 | treat or infuse with alcohol; "alcoholize the fruit and let them sit in the refrigerator" -00140123 30 v 01 change_integrity 0 029 @ 00109660 v 0000 ~ 00265941 v 0000 ~ 00266197 v 0000 ~ 00266586 v 0000 ~ 00306017 v 0000 ~ 00306723 v 0000 ~ 00322847 v 0000 ~ 00330565 v 0000 ~ 00334186 v 0000 ~ 00364629 v 0000 ~ 00366275 v 0000 ~ 00366858 v 0000 ~ 00378042 v 0000 ~ 00394813 v 0000 ~ 00397576 v 0000 ~ 00399074 v 0000 ~ 00431610 v 0000 ~ 00442267 v 0000 ~ 00443984 v 0000 ~ 00445169 v 0000 ~ 00445467 v 0000 ~ 00445940 v 0000 ~ 00447309 v 0000 ~ 00501048 v 0000 ~ 00507143 v 0000 ~ 00507331 v 0000 ~ 01458973 v 0000 ~ 02041877 v 0000 ~ 02467662 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | change in physical make-up -00140751 30 v 03 switch_over 0 switch 3 exchange 1 004 @ 00138508 v 0000 + 00196485 n 0302 + 07443761 n 0205 + 00196084 n 0201 03 + 02 00 + 21 00 + 22 00 | change over, change around, as to a new order or sequence -00140967 30 v 03 change_shape 0 change_form 0 deform 2 016 @ 00109660 v 0000 + 07358060 n 0301 ~ 00125289 v 0000 ~ 00141524 v 0000 ~ 00263231 v 0000 ~ 00392960 v 0000 ~ 00435853 v 0000 ~ 00463469 v 0000 ~ 00476965 v 0000 ~ 00477665 v 0000 ~ 00546609 v 0000 ~ 01223182 v 0000 ~ 01280014 v 0000 ~ 02035919 v 0000 ~ 02054989 v 0000 ~ 02081946 v 0000 01 + 01 00 | assume a different shape or form -00141362 30 v 01 individuate 0 002 @ 00142191 v 0000 + 04763293 n 0103 01 + 11 00 | give individual shape or form to; "Language that individuates his memories" -00141524 30 v 02 granulate 1 grain 1 002 @ 00140967 v 0000 + 09290777 n 0201 01 + 01 00 | become granular -00141632 30 v 01 tie 0 002 @ 00142191 v 0000 + 03815615 n 0102 01 + 08 00 | form a knot or bow in; "tie a necktie" -00141749 30 v 01 terrace 0 002 @ 00142191 v 0000 + 09456207 n 0101 01 + 08 00 | make into terraces as for cultivation; "The Incas terraced their mountainous land" -00141914 30 v 01 fork 1 003 @ 00142191 v 0000 + 13914265 n 0101 + 03383948 n 0101 01 + 08 00 | shape like a fork; "She forked her fingers" -00142055 30 v 01 constellate 0 003 @ 00144850 v 0000 + 09252970 n 0101 + 05731779 n 0102 01 + 01 00 | form a constellation or cluster -00142191 30 v 02 shape 0 form 1 036 @ 00126264 v 0000 + 03384535 n 0201 + 05930736 n 0201 + 03385117 n 0201 + 00925207 n 0201 + 05064037 n 0101 + 04677514 n 0102 + 10284064 n 0102 + 04184435 n 0101 ~ 00141362 v 0000 ~ 00141632 v 0000 ~ 00141749 v 0000 ~ 00141914 v 0000 ~ 00142967 v 0000 ~ 00143065 v 0000 ~ 00143204 v 0000 ~ 00143338 v 0000 ~ 00143540 v 0000 ~ 00143704 v 0000 ~ 00143914 v 0000 ~ 00144314 v 0000 ~ 00144446 v 0000 ~ 00144544 v 0000 ~ 00145147 v 0000 ~ 00145299 v 0000 ~ 00145448 v 0000 ~ 00263471 v 0000 ~ 00300537 v 0000 ~ 00463778 v 0000 ~ 00476744 v 0000 ~ 00477247 v 0000 ~ 00477382 v 0000 ~ 00477528 v 0000 ~ 00477828 v 0000 ~ 01522716 v 0000 ~ 01584450 v 0000 01 + 08 00 | give shape or form to; "shape the dough"; "form the young child's character" -00142967 30 v 01 tabulate 1 001 @ 00142191 v 0000 01 + 08 00 | shape or cut with a flat surface -00143065 30 v 01 dimension 0 003 @ 00142191 v 0000 + 06011446 n 0101 + 05093581 n 0101 01 + 08 00 | shape or form to required dimensions -00143204 30 v 01 roll a 003 @ 00142191 v 0000 + 13875970 n 0103 + 07441619 n 0103 01 + 08 00 | shape by rolling; "roll a cigarette" -00143338 30 v 01 draw 4 002 @ 00142191 v 0000 $ 00430808 v 0000 02 + 08 00 + 11 00 | flatten, stretch, or mold metal or glass, by rolling or by pulling it through a die or by stretching; "draw steel" -00143540 30 v 01 strike 0 002 $ 01675073 v 0000 @ 00142191 v 0000 01 + 11 00 | cause to form (an electric arc) between electrodes of an arc lamp; "strike an arc" -00143704 30 v 04 crystallize 2 crystallise 2 crystalise 2 crystalize 2 002 @ 00142191 v 0000 + 05772044 n 0101 01 + 08 00 | cause to take on a definite and clear shape; "He tried to crystallize his thoughts" -00143914 30 v 01 twist 0 002 @ 00142191 v 0000 + 05259512 n 0104 01 + 08 00 | form into twists; "Twist the strips of dough" -00144040 30 v 01 culminate 2 001 @ 00144850 v 0000 01 + 04 00 | rise to, or form, a summit; "The helmet culminated in a crest" -00144169 30 v 02 granulate 0 grain 0 004 > 00141524 v 0000 @ 00144850 v 0000 + 09290777 n 0201 + 00925866 n 0101 01 + 08 00 | form into grains -00144314 30 v 01 sliver 1 003 @ 00142191 v 0000 + 09442838 n 0102 + 09385137 n 0102 01 + 08 00 | form into slivers; "sliver wood" -00144446 30 v 01 ridge 0 002 @ 00142191 v 0000 + 13902048 n 0101 01 + 08 00 | form into a ridge -00144544 30 v 01 plume 0 001 @ 00142191 v 0000 01 + 11 00 | form a plume; "The chimneys were pluming the sky"; "The engine was pluming black smoke" -00144694 30 v 02 conglobate 0 conglobe 0 004 @ 00144850 v 0000 + 07375214 n 0202 + 13899404 n 0102 + 13865786 n 0102 01 + 01 00 | assume a globular shape -00144850 30 v 01 form 5 011 @ 00109660 v 0000 ~ 00142055 v 0000 ~ 00144040 v 0000 ~ 00144169 v 0000 ~ 00144694 v 0000 ~ 01484392 v 0000 ~ 01585021 v 0000 ~ 01585142 v 0000 ~ 01585276 v 0000 ~ 02624128 v 0000 ~ 02625521 v 0000 01 + 01 00 | assume a form or shape; "the water formed little beads" -00145147 30 v 03 round 0 round_out 1 round_off 1 003 @ 00142191 v 0000 + 04114193 n 0101 ~ 00145902 v 0000 01 + 08 00 | make round; "round the edges" -00145299 30 v 02 scallop 0 scollop 0 002 @ 00142191 v 0000 + 13874558 n 0101 01 + 08 00 | shape or cut in scallops; "scallop the hem of the dress" -00145448 30 v 02 square 0 square_up 0 003 @ 00142191 v 0000 + 04291511 n 0101 + 13878634 n 0101 01 + 08 00 | make square; "Square the circle"; "square the wood with a file" -00145623 30 v 04 round_off 0 round_down 0 round_out 2 round 3 001 @ 00126264 v 0000 01 + 08 00 | express as a round number; "round off the amount" -00145772 30 v 01 prim 0 001 @ 01387786 v 0000 01 + 08 00 | contract one's lips; "She primmed her lips after every bite of food" -00145902 30 v 01 purse 0 002 @ 00145147 v 0000 ~ 00146023 v 0000 01 + 08 00 | contract one's lips into a rounded shape -00146023 30 v 02 pooch 0 pooch_out 0 001 @ 00145902 v 0000 01 + 08 00 | round one's lips as if intending to kiss -00146138 30 v 02 change_state 0 turn 4 080 $ 02626604 v 0000 @ 00109660 v 0000 + 07423365 n 0201 + 00195415 n 0201 ^ 00205598 v 0201 ^ 01808626 v 0201 ~ 00018526 v 0000 ~ 00023868 v 0000 ~ 00024047 v 0000 ~ 00026153 v 0000 ~ 00026385 v 0000 ~ 00045817 v 0000 ~ 00046151 v 0000 ~ 00047945 v 0000 ~ 00053889 v 0000 ~ 00054285 v 0000 $ 00125841 v 0000 ~ 00136044 v 0000 ~ 00136673 v 0000 ~ 00136800 v 0000 ~ 00147815 v 0000 ~ 00149583 v 0000 ~ 00203866 v 0000 ~ 00205046 v 0000 ~ 00220276 v 0000 ~ 00232843 v 0000 ~ 00237511 v 0000 ~ 00258366 v 0000 ~ 00264875 v 0000 ~ 00265094 v 0000 ~ 00266798 v 0000 ~ 00267249 v 0000 ~ 00267519 v 0000 ~ 00268165 v 0000 ~ 00270699 v 0000 ~ 00306539 v 0000 ~ 00358431 v 0000 ~ 00360932 v 0000 ~ 00361388 v 0000 ~ 00369628 v 0000 ~ 00369864 v 0000 ~ 00372665 v 0000 ~ 00373520 v 0000 ~ 00374135 v 0000 ~ 00375021 v 0000 ~ 00377002 v 0000 ~ 00389238 v 0000 ~ 00410649 v 0000 ~ 00430999 v 0000 ~ 00431117 v 0000 ~ 00446514 v 0000 ~ 00446885 v 0000 ~ 00447771 v 0000 ~ 00448680 v 0000 ~ 00451838 v 0000 ~ 00457327 v 0000 ~ 00457569 v 0000 ~ 00457770 v 0000 ~ 00457998 v 0000 ~ 00458471 v 0000 ~ 00467451 v 0000 ~ 00474994 v 0000 ~ 00498662 v 0000 ~ 00498836 v 0000 ~ 00499422 v 0000 ~ 00499512 v 0000 ~ 00500638 v 0000 ~ 00502332 v 0000 ~ 00506225 v 0000 ~ 00506377 v 0000 ~ 00521748 v 0000 ~ 01346804 v 0000 ~ 01346978 v 0000 ~ 01540449 v 0000 ~ 01763829 v 0000 ~ 02342800 v 0000 ~ 02497400 v 0000 ~ 02636810 v 0000 ~ 02757304 v 0000 ~ 02760622 v 0000 02 + 01 00 + 02 00 | undergo a transformation or a change of position or action; "We turned from Socialism to Capitalism"; "The people turned against the President when he stole the election" -00147815 30 v 01 fall 8 010 ^ 02537642 v 0000 ^ 02530003 v 0000 ^ 01997862 v 0000 ^ 00334186 v 0000 ^ 00397405 v 0000 ^ 00204391 v 0000 ^ 01113806 v 0000 @ 00146138 v 0000 ~ 00148341 v 0000 ~ 00148597 v 0000 06 + 04 00 + 06 00 + 07 00 + 08 00 + 11 00 + 22 00 | pass suddenly and passively into a state of body or mind; "fall into a trap"; "She fell ill"; "They fell out of favor"; "Fall in love"; "fall asleep"; "fall prey to an imposter"; "fall into a strange way of thinking"; "she fell to pieces after she lost her work" -00148341 30 v 01 drop 9 001 @ 00147815 v 0000 01 + 02 00 | fall or sink into a state of exhaustion or death; "shop til you drop" -00148472 30 v 02 fall_off 1 fall_away 1 002 @ 00426958 v 0000 + 13556509 n 0104 01 + 01 00 | diminish in size or intensity -00148597 30 v 01 fall_in_love 0 001 @ 00147815 v 0000 02 + 02 00 + 22 00 | begin to experience feelings of love towards; "She fell in love with her former student" -00148763 30 v 01 suspend 1 005 @ 00126264 v 0000 ;c 06084469 n 0000 + 14591091 n 0101 + 01017701 n 0101 ~ 00148967 v 0000 01 + 08 00 | cause to be held in suspension in a fluid; "suspend the particles" -00148967 30 v 01 resuspend 0 003 @ 00148763 v 0000 ;c 06084469 n 0000 + 14591481 n 0101 01 + 08 00 | put back into suspension; "resuspend particles" -00149118 30 v 02 sober_up 0 sober 0 002 * 01171183 v 0000 @ 00149583 v 0000 01 + 02 00 | become sober after excessive alcohol consumption; "Keep him in bed until he sobers up" -00149296 30 v 02 sober_up 1 sober 1 001 @ 00149583 v 0000 01 + 02 00 | become more realistic; "After thinking about the potential consequences of his plan, he sobered up" -00149469 30 v 01 sober 2 001 @ 00126264 v 0000 02 + 10 00 + 11 00 | cause to become sober; "A sobering thought" -00149583 30 v 03 become 0 go 4 get 0 013 @ 00146138 v 0000 ^ 00248659 v 0305 ^ 00248659 v 0306 ^ 01108627 v 0302 ^ 01111028 v 0306 ~ 00149118 v 0000 ~ 00149296 v 0000 ~ 00150096 v 0000 ~ 00522282 v 0000 ~ 00549063 v 0000 ~ 00557404 v 0000 ~ 00558536 v 0000 ~ 00558673 v 0000 04 + 04 00 + 06 00 + 07 00 + 22 00 | enter or assume a certain state or condition; "He became annoyed when he heard the bad news"; "It must be getting more serious"; "her face went red with anger"; "She went into ecstasy"; "Get going!" -00150096 30 v 01 work a 001 @ 00149583 v 0000 01 + 06 00 | arrive at a certain condition through repeated motion; "The stitches of the hem worked loose after she wore the skirt many times" -00150287 30 v 03 adjust 1 conform 1 adapt 2 017 @ 00109660 v 0000 + 00046109 a 0301 + 01027263 a 0301 + 13427078 n 0301 + 13427078 n 0302 + 09957614 n 0201 + 00046558 a 0101 + 13427078 n 0103 + 07369604 n 0101 ~ 00151114 v 0000 ~ 00151574 v 0000 ~ 00159642 v 0000 ~ 00314782 v 0000 ~ 00393677 v 0000 ~ 00456596 v 0000 ~ 02542795 v 0000 ~ 02659656 v 0000 03 + 01 00 + 02 00 + 22 00 | adapt or conform oneself to new or different conditions; "We must adjust to the bad economic situation" -00150776 30 v 02 follow 0 conform_to 0 002 @ 01742886 v 0000 ~ 00150977 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | behave in accordance or in agreement with; "Follow a pattern"; "Follow my example" -00150977 30 v 01 go_by 0 001 @ 00150776 v 0000 02 + 08 00 + 11 00 | be or act in accordance with; "Go by this rule and you'll be safe" -00151114 30 v 02 readjust 0 readapt 3 002 @ 00150287 v 0000 + 00194127 n 0101 02 + 02 00 + 22 00 | adjust anew; "After moving back to America, he had to readjust" -00151279 30 v 01 proportion 0 004 @ 00296178 v 0000 + 13815742 n 0101 ~ 00428247 v 0000 ~ 00428418 v 0000 02 + 08 00 + 21 00 | adjust in size relative to other things -00151448 30 v 01 reconstruct 1 001 @ 00126264 v 0000 01 + 09 00 | cause somebody to adapt or reform socially or politically -00151574 30 v 01 readapt 0 001 @ 00150287 v 0000 03 + 02 00 + 09 00 + 22 00 | adapt anew; "He readapted himself" -00151689 30 v 04 decrease 0 diminish 0 lessen 0 fall 6 032 @ 00169651 v 0000 + 05111835 n 0403 + 13457378 n 0202 + 00351638 n 0101 + 05109808 n 0101 + 13458571 n 0101 + 07355887 n 0101 ! 00156601 v 0101 ~ 00107604 v 0000 ~ 00152558 v 0000 ~ 00152762 v 0000 ~ 00152887 v 0000 ~ 00153061 v 0000 ~ 00155046 v 0000 ~ 00156485 v 0000 ~ 00223500 v 0000 ~ 00237259 v 0000 ~ 00240571 v 0000 ~ 00241689 v 0000 ~ 00245059 v 0000 ~ 00264705 v 0000 ~ 00267681 v 0000 ~ 00268314 v 0000 ~ 00290983 v 0000 ~ 00315020 v 0000 ~ 00316494 v 0000 ~ 00430494 v 0000 ~ 00431826 v 0000 ~ 00433778 v 0000 ~ 00433933 v 0000 ~ 00439958 v 0000 ~ 00546873 v 0000 01 + 01 00 | decrease in size, extent, or range; "The amount of homework decreased towards the end of the semester"; "The cabin pressure fell dramatically"; "her weight fell to under a hundred pounds"; "his voice fell to a whisper" -00152558 30 v 02 shrink b shrivel b 002 @ 00151689 v 0000 + 00360485 n 0101 01 + 01 00 | decrease in size, range, or extent; "His earnings shrank"; "My courage shrivelled when I saw the task before me" -00152762 30 v 01 taper 2 002 @ 00151689 v 0000 + 00353611 n 0101 01 + 01 00 | diminish gradually; "Interested tapered off" -00152887 30 v 01 drop_off 1 002 @ 00151689 v 0000 + 07355887 n 0103 01 + 01 00 | fall or diminish; "The number of students in this course dropped off after the first test" -00153061 30 v 03 vanish 1 fly 0 vaporize 4 002 @ 00151689 v 0000 $ 02073065 v 0000 01 + 01 00 | decrease rapidly and disappear; "the money vanished in las Vegas"; "all my stock assets have vaporized" -00153263 30 v 01 increase 2 029 @ 00126264 v 0000 + 00363260 n 0101 + 05108947 n 0101 + 13497135 n 0101 + 07356676 n 0101 + 13754293 n 0102 ! 00441445 v 0101 ~ 00154141 v 0000 ~ 00154388 v 0000 ~ 00154608 v 0000 ~ 00154778 v 0000 ~ 00154966 v 0000 ~ 00158503 v 0000 ~ 00240293 v 0000 ~ 00247390 v 0000 ~ 00253277 v 0000 ~ 00264386 v 0000 ~ 00290302 v 0000 ~ 00310937 v 0000 ~ 00317700 v 0000 ~ 00385189 v 0000 ~ 00428583 v 0000 ~ 00432281 v 0000 ~ 00432436 v 0000 ~ 00439698 v 0000 ~ 00439849 v 0000 ~ 00497061 v 0000 ~ 00540235 v 0000 ~ 02206313 v 0000 02 + 08 00 + 11 00 | make bigger or more; "The boss finally increased her salary"; "The university increased the number of students it admitted" -00153964 30 v 01 suppress c 001 @ 00441445 v 0000 02 + 08 00 + 11 00 | reduce the incidence or severity of or stop; "suppress a yawn"; "this drug can suppress the hemorrhage" -00154141 30 v 02 extend c stretch d 002 $ 00487748 v 0000 @ 00153263 v 0000 02 + 08 00 + 11 00 | increase in quantity or bulk by adding a cheaper substance; "stretch the soup by adding some more cream"; "extend the casserole with a little rice" -00154388 30 v 01 augment 1 004 @ 00153263 v 0000 + 01340522 a 0101 + 07369470 n 0101 + 00365231 n 0101 02 + 08 00 + 11 00 | enlarge or increase; "The recent speech of the president augmented tensions in the Near East" -00154608 30 v 01 build_up 2 002 @ 00153263 v 0000 + 00372226 n 0101 02 + 08 00 + 11 00 | enlarge, develop, or increase by degrees or in stages; "build up your savings" -00154778 30 v 01 enlarge 3 005 @ 00153263 v 0000 + 00365709 n 0102 ~ 00541163 v 0000 ~ 00541417 v 0000 ~ 00570524 v 0000 02 + 08 00 + 11 00 | make larger; "She enlarged the flower beds" -00154966 30 v 01 up 0 001 @ 00153263 v 0000 01 + 08 00 | raise; "up the ante" -00155046 30 v 01 break 8 001 @ 00151689 v 0000 01 + 01 00 | fall sharply; "stock prices broke" -00155143 30 v 03 rise 0 go_up 0 climb 1 005 @ 00230746 v 0000 + 07370410 n 0302 + 00364260 n 0102 ~ 00155406 v 0000 ~ 00156139 v 0000 01 + 01 00 | increase in value or to a higher point; "prices climbed steeply"; "the value of our house rose sharply last year" -00155406 30 v 01 soar 0 001 @ 00155143 v 0000 01 + 01 00 | go or move upward; "The stock market soared after the cease-fire was announced" -00155547 30 v 03 rise 9 jump 1 climb_up 2 002 @ 00109660 v 0000 + 07358985 n 0202 02 + 01 00 + 04 00 | rise in rank or status; "Her new novel jumped high on the bestseller list" -00155727 30 v 01 jump 0 002 @ 00433232 v 0000 + 07414222 n 0101 01 + 01 00 | increase suddenly and significantly; "Prices jumped overnight" -00155869 30 v 01 accrue 0 004 @ 00156601 v 0000 + 00372013 n 0103 + 00372013 n 0102 ~ 00156027 v 0000 01 + 01 00 | grow by addition; "The interest accrues" -00156027 30 v 01 redound 0 001 @ 00155869 v 0000 01 + 01 00 | contribute; "Everything redounded to his glory" -00156139 30 v 01 bull 0 003 $ 02272373 v 0000 @ 00155143 v 0000 + 09878921 n 0101 01 + 01 00 | advance in price; "stocks were bulling" -00156276 30 v 03 ease_up 2 ease_off 2 let_up 1 002 @ 00126264 v 0000 + 15274441 n 0301 04 + 08 00 + 09 00 + 10 00 + 11 00 | reduce pressure or intensity; "he eased off the gas pedal and the car slowed down" -00156485 30 v 04 ease_up 0 ease_off 0 slacken_off 0 flag 1 001 @ 00151689 v 0000 01 + 01 00 | become less intense -00156601 30 v 01 increase 0 028 @ 00169651 v 0000 + 00363260 n 0101 + 05108947 n 0101 + 13497135 n 0101 + 07356676 n 0101 + 13754293 n 0102 ! 00151689 v 0101 ~ 00155869 v 0000 ~ 00157219 v 0000 ~ 00157347 v 0000 ~ 00157462 v 0000 ~ 00157623 v 0000 ~ 00158094 v 0000 ~ 00158384 v 0000 ~ 00158804 v 0000 ~ 00182406 v 0000 ~ 00226566 v 0000 ~ 00227165 v 0000 ~ 00230746 v 0000 ~ 00246930 v 0000 ~ 00303465 v 0000 ~ 00316195 v 0000 ~ 00317468 v 0000 ~ 00432572 v 0000 ~ 00433232 v 0000 ~ 00433525 v 0000 ~ 00546729 v 0000 ~ 00555084 v 0000 01 + 01 00 | become bigger or greater in amount; "The amount of work increased" -00157219 30 v 01 spike 4 002 @ 00156601 v 0000 + 07308450 n 0101 01 + 01 00 | manifest a sharp increase; "the voltage spiked" -00157347 30 v 01 add_to 0 001 @ 00156601 v 0000 01 + 11 00 | have an increased effect; "This adds to my worries" -00157462 30 v 02 gain 1 gather 1 001 @ 00156601 v 0000 02 + 08 00 + 11 00 | increase or develop; "the peace movement gained momentum"; "the car gathers speed" -00157623 30 v 02 explode 2 irrupt 0 002 @ 00156601 v 0000 + 07414068 n 0101 01 + 01 00 | increase rapidly and in an uncontrolled manner; "The population of India is exploding"; "The island's rodent population irrupted" -00157844 30 v 01 enlarge 0 002 @ 00230746 v 0000 ~ 00434077 v 0000 01 + 01 00 | become larger or bigger -00157950 30 v 01 augment 0 003 @ 00230746 v 0000 + 01340522 a 0101 + 07369470 n 0101 01 + 01 00 | grow or intensify; "The pressure augmented" -00158094 30 v 01 pyramid 0 001 @ 00156601 v 0000 01 + 01 00 | increase rapidly and progressively step by step on a broad base -00158222 30 v 02 advance 1 gain 0 002 @ 00433232 v 0000 + 00364260 n 0101 02 + 01 00 + 11 00 | rise in rate or price; "The stock market gained 24 points today" -00158384 30 v 01 snowball 0 001 @ 00156601 v 0000 01 + 01 00 | increase or accumulate at a rapidly accelerating rate -00158503 30 v 01 raise 1 003 @ 00153263 v 0000 + 05110185 n 0101 ~ 00158687 v 0000 01 + 08 00 | raise the level or amount of something; "raise my salary"; "raise the price of bread" -00158687 30 v 01 bump_up 0 001 @ 00158503 v 0000 01 + 08 00 | increase or raise; "OPEC bumped up the price of oil" -00158804 30 v 06 accumulate 0 cumulate 0 conglomerate 0 pile_up 0 gather 0 amass 0 013 @ 00156601 v 0000 + 01014990 n 0502 + 08418103 n 0303 + 07375214 n 0301 + 00048460 a 0202 + 07961480 n 0206 + 07961480 n 0205 + 00048460 a 0101 + 00029769 a 0101 + 00372013 n 0101 ~ 00159236 v 0000 ~ 00159368 v 0000 ~ 00571390 v 0000 02 + 01 00 + 04 00 | collect or gather; "Journals are accumulating in my office"; "The work keeps piling up" -00159236 30 v 01 backlog 0 003 @ 00158804 v 0000 + 13368052 n 0102 + 07953603 n 0101 01 + 01 00 | accumulate and create a backlog -00159368 30 v 01 accrete 1 004 @ 00158804 v 0000 + 02535533 a 0101 + 13425245 n 0101 + 13424865 n 0101 01 + 11 00 | grow or become attached by accretion; "The story accreted emotion" -00159553 30 v 01 run_up 0 001 @ 02304982 v 0000 01 + 08 00 | pile up (debts or scores) -00159642 30 v 01 assimilate 0 005 @ 00150287 v 0000 + 13930928 n 0101 + 13434878 n 0101 ! 00160653 v 0101 ~ 00159880 v 0000 03 + 02 00 + 12 00 + 22 00 | become similar to one's environment; "Immigrants often want to assimilate quickly" -00159880 30 v 01 acculturate 0 007 @ 00159642 v 0000 + 03139749 a 0102 + 08287844 n 0101 + 05984936 n 0102 + 05751794 n 0101 + 01128984 n 0103 ~ 00160086 v 0000 02 + 02 00 + 22 00 | assimilate culturally -00160086 30 v 02 detribalize 0 detribalise 0 003 @ 00159880 v 0000 + 01152583 n 0202 + 01152583 n 0101 01 + 09 00 | cause members of a tribe to lose their cultural identity -00160261 30 v 01 assimilate 1 004 @ 00126264 v 0000 + 13930928 n 0101 + 13434878 n 0101 ! 00160880 v 0101 01 + 21 00 | make similar; "This country assimilates immigrants very quickly" -00160447 30 v 01 assimilate 2 004 @ 00109660 v 0000 ;c 06177033 n 0000 + 13434537 n 0101 ! 00161012 v 0101 02 + 01 00 + 04 00 | become similar in sound; "The nasal assimilates to the following consonant" -00160653 30 v 01 dissimilate 0 004 @ 00109660 v 0000 + 13467443 n 0101 ! 00159642 v 0101 ~ 00119074 v 0000 01 + 01 00 | become dissimilar or less similar; "These two related tribes of people gradually dissimilated over time" -00160880 30 v 01 dissimilate 1 002 @ 00126264 v 0000 ! 00160261 v 0101 01 + 21 00 | make dissimilar; cause to become less similar -00161012 30 v 01 dissimilate 2 004 @ 00109660 v 0000 ;c 06177033 n 0000 + 13467443 n 0101 ! 00160447 v 0101 02 + 01 00 + 04 00 | become dissimilar by changing the sound qualities; "These consonants dissimilate" -00161225 30 v 04 change 4 exchange 0 commute 2 convert 2 012 @ 00162688 v 0000 + 00916706 a 0401 + 01093380 n 0401 + 06548498 n 0301 + 01093085 n 0201 + 10069120 n 0201 ~ 00161731 v 0000 ~ 00161872 v 0000 ~ 00162167 v 0000 ~ 00188949 v 0000 $ 00550117 v 0000 ~ 01610666 v 0000 02 + 08 00 + 09 00 | exchange or replace with another, usually of the same kind or category; "Could you convert my dollars into pounds?"; "He changed his name"; "convert centimeters into inches"; "convert holdings into shares" -00161731 30 v 01 rectify 6 002 @ 00161225 v 0000 + 07416308 n 0101 01 + 08 00 | convert into direct current; "rectify alternating current" -00161872 30 v 01 utilize c 001 @ 00161225 v 0000 01 + 08 00 | convert (from an investment trust to a unit trust) -00161987 30 v 03 commute 1 convert 9 exchange 2 004 @ 00126264 v 0000 + 01166258 n 0301 + 06548498 n 0101 + 01165919 n 0101 01 + 08 00 | exchange a penalty for a less severe one -00162167 30 v 02 capitalize 0 capitalise 0 004 @ 00161225 v 0000 + 13354420 n 0201 + 13354420 n 0101 ~ 00162350 v 0000 01 + 08 00 | convert (a company's reserve funds) into capital -00162350 30 v 02 overcapitalize 0 overcapitalise 0 003 @ 00162167 v 0000 + 00093127 n 0202 + 00093127 n 0101 01 + 02 00 | capitalize beyond what the business or the profit-making prospects warrant -00162549 30 v 01 transduce 0 003 @ 00381013 v 0000 + 13568524 n 0101 + 04470953 n 0101 01 + 11 00 | cause transduction (of energy forms) -00162688 30 v 01 replace 0 010 @ 01631072 v 0000 + 10680153 n 0103 + 07443761 n 0104 + 05696425 n 0102 + 00197772 n 0101 + 00197772 n 0102 ~ 00161225 v 0000 ~ 00163251 v 0000 ~ 00577330 v 0000 $ 02405390 v 0000 04 + 08 00 + 09 00 + 20 00 + 31 00 | substitute a person or thing for (another that is broken or inefficient or lost or no longer working or yielding what is expected); "He replaced the old razor blade"; "We need to replace the secretary that left a month ago"; "the insurance will replace the lost income"; "This antique vase can never be replaced" -00163251 30 v 01 change 6 001 @ 00162688 v 0000 01 + 08 00 | remove or replace the coverings of; "Father had to learn how to change the baby"; "After each guest we changed the bed linens" -00163441 30 v 03 refurbish 0 renovate 1 freshen_up 0 005 @ 01631072 v 0000 + 14424517 n 0201 + 00265119 n 0201 + 14424517 n 0103 ~ 00163703 v 0000 02 + 08 00 + 02 02 | make brighter and prettier; "we refurbished the guest wing"; "My wife wants us to renovate" -00163703 30 v 01 gentrify 0 002 @ 00163441 v 0000 + 00268824 n 0101 01 + 08 00 | renovate so as to make it conform to middle-class aspirations; "gentrify a row of old houses"; "gentrify the old center of town" -00163915 30 v 01 revamp 0 001 @ 01631072 v 0000 01 + 08 00 | to patch up or renovate; repair or restore; "They revamped their old house before selling it" -00164072 30 v 03 retread 0 remold 0 remould 0 002 @ 01631072 v 0000 + 04083942 n 0101 01 + 08 00 | give new treads to (a tire) -00164201 30 v 02 renovate 0 restitute 0 005 @ 01631072 v 0000 + 00270275 n 0201 + 14424517 n 0101 + 00265119 n 0101 + 10514962 n 0102 01 + 08 00 | restore to a previous or better condition; "They renovated the ceiling of the Sistine Chapel" -00164444 30 v 02 refresh 0 freshen 0 005 @ 01631072 v 0000 + 03395745 n 0201 + 00401783 n 0101 + 07914128 n 0101 ~ 00488770 v 0000 03 + 08 00 + 10 00 + 11 00 | make (to feel) fresh; "The cool water refreshed us" -00164658 30 v 02 revitalize 0 revitalise 0 003 @ 01631072 v 0000 + 01047338 n 0204 + 01047338 n 0103 03 + 08 00 + 10 00 + 11 00 | give new life or vigor to -00164816 30 v 02 vitalize 0 vitalise 0 007 @ 00220869 v 0000 + 14049552 n 0202 + 10056103 n 0204 + 00119006 a 0103 + 14049552 n 0101 + 10056103 n 0103 ! 00166952 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | make more lively or vigorous; "The treatment at the spa vitalized the old man" -00165103 30 v 02 vitalize 1 vitalise 1 002 @ 00126264 v 0000 + 00095094 a 0101 02 + 08 00 + 11 00 | give life to; "The eggs are vitalized" -00165244 30 v 02 ruggedize 0 ruggedise 0 003 @ 00220869 v 0000 + 00829721 n 0202 + 00829721 n 0101 01 + 11 00 | produce in a version designed to withstand rough usage; "Detroit ruggedized the family car" -00165450 30 v 01 consolidate 2 001 @ 00220461 v 0000 01 + 08 00 | make firm or secure; strengthen; "consolidate one's gains"; "consolidate one's hold on first place" -00165618 30 v 01 consolidate 3 002 @ 00445467 v 0000 + 07374633 n 0101 02 + 08 00 + 11 00 | make or form into a solid or hardened mass; "consolidate fibers into boards" -00165789 30 v 01 consolidate 4 003 @ 00445169 v 0000 + 07374633 n 0101 + 09252586 n 0101 02 + 01 00 + 04 00 | form into a solid mass or whole; "The mud had consolidated overnight" -00165971 30 v 01 proof 0 007 @ 00220461 v 0000 ~ 00166220 v 0000 ~ 00166331 v 0000 ~ 00166457 v 0000 ~ 00166593 v 0000 ~ 00166748 v 0000 ~ 00166845 v 0000 01 + 08 00 | make resistant (to harm); "proof the materials against shrinking in the dryer" -00166220 30 v 01 bombproof 0 002 @ 00165971 v 0000 + 02868638 n 0103 01 + 08 00 | make safe against bombings -00166331 30 v 01 bulletproof 0 002 @ 00165971 v 0000 + 00144102 a 0101 01 + 08 00 | make bulletproof; "bulletproof the car" -00166457 30 v 02 child-proof 0 childproof 0 001 @ 00165971 v 0000 01 + 08 00 | make safe against children; "childproof the apartment" -00166593 30 v 03 goofproof 0 goof-proof 0 foolproof 0 001 @ 00165971 v 0000 01 + 08 00 | proof against human misuse or error; "foolproof this appliance" -00166748 30 v 01 fireproof 0 001 @ 00165971 v 0000 02 + 08 00 + 11 00 | make resistant to fire -00166845 30 v 01 weatherproof 0 001 @ 00165971 v 0000 02 + 08 00 + 11 00 | make resistant to bad weather -00166952 30 v 02 devitalize 0 devitalise 0 005 @ 00224901 v 0000 + 00354183 n 0202 + 00354183 n 0101 ! 00164816 v 0101 ~ 00167191 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | sap of life or energy; "The recession devitalized the economy" -00167191 30 v 01 eviscerate 3 001 @ 00166952 v 0000 02 + 08 00 + 11 00 | take away a vital or essential part of; "the compromise among the parties eviscerated the bill that had been proposed" -00167385 30 v 01 shake 0 001 @ 00224901 v 0000 01 + 11 00 | undermine or cause to waver; "my faith has been shaken"; "The bad news shook her hopes" -00167535 30 v 01 regenerate 0 001 @ 01617192 v 0000 02 + 08 00 + 11 00 | form or produce anew; "regenerate hatred" -00167652 30 v 02 reincarnate 0 renew 0 001 @ 00168588 v 0000 01 + 11 00 | cause to appear in a new form; "the old product was reincarnated to appeal to a younger market" -00167824 30 v 01 regenerate 4 002 @ 02623906 v 0000 + 00269963 n 0102 01 + 01 00 | be formed or shaped anew -00167934 30 v 03 reform 3 straighten_out 2 see_the_light 0 005 @ 00205046 v 0000 + 01197386 a 0102 + 00261405 n 0101 + 00095971 n 0102 $ 00384620 v 0000 02 + 01 00 + 02 00 | change for the better; "The lazy student promised to reform"; "the habitual cheater finally saw the light" -00168217 30 v 01 surge 3 003 @ 00205046 v 0000 ;c 00523513 n 0000 + 00364787 n 0101 01 + 02 00 | see one's performance improve; "He levelled the score and then surged ahead" -00168393 30 v 01 regenerate 2 002 @ 01619354 v 0000 + 13548734 n 0101 02 + 08 00 + 11 00 | replace (tissue or a body part) through the formation of new tissue; "The snake regenerated its tail" -00168588 30 v 03 regenerate 1 restore 0 rejuvenate 4 008 @ 01631072 v 0000 + 11505546 n 0301 + 01357742 a 0202 + 01167540 a 0202 + 00268557 n 0201 + 01047937 n 0101 ~ 00167652 v 0000 ~ 00168910 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | return to life; get or give new life or energy; "The week at the spa restored me" -00168910 30 v 02 revive 1 resurrect 0 003 @ 00168588 v 0000 + 01047338 n 0101 ~ 00169176 v 0000 02 + 08 00 + 11 00 | restore from a depressed, inactive, or unused state; "He revived this style of opera"; "He resurrected the tango in this remote part of Argentina" -00169176 30 v 01 republish 0 002 @ 00168910 v 0000 ;c 08441203 n 0000 01 + 08 00 | revive (a cancelled will or a libel) -00169298 30 v 01 revive 0 002 @ 00310386 v 0000 + 01047338 n 0101 01 + 01 00 | be brought back to life, consciousness, or strength; "Interest in ESP revived" -00169458 30 v 01 change 3 003 @ 00046534 v 0000 + 03005769 n 0101 $ 00550117 v 0000 03 + 02 00 + 09 00 + 22 00 | change clothes; put on different clothes; "Change before you go to the opera" -00169651 30 v 01 change_magnitude 0 004 @ 00109660 v 0000 ~ 00151689 v 0000 ~ 00156601 v 0000 ~ 00319214 v 0000 01 + 01 00 | change in size or magnitude -00169806 30 v 01 modify 0 020 @ 00109660 v 0000 + 00350069 a 0101 + 09609871 n 0102 + 07296428 n 0103 + 03778302 n 0101 + 00199707 n 0102 ~ 00124226 v 0000 ~ 00170381 v 0000 ~ 00170500 v 0000 ~ 00170695 v 0000 ~ 00170857 v 0000 ~ 00170997 v 0000 ~ 00171339 v 0000 ~ 00199309 v 0000 ~ 00203081 v 0000 ~ 00302875 v 0000 ~ 00437732 v 0000 ~ 00513344 v 0000 ~ 00982514 v 0000 ~ 01576917 v 0000 05 + 01 00 + 02 00 + 08 00 + 10 00 + 11 00 | make less severe or harsh or extreme; "please modify this letter to make it more polite"; "he modified his views on same-gender marriage" -00170381 30 v 01 attemper 0 001 @ 00169806 v 0000 02 + 08 00 + 11 00 | modify the temperature of; "attemper the air" -00170500 30 v 01 syncopate 0 005 @ 00169806 v 0000 ;c 05718935 n 0000 + 07057385 n 0101 + 07087223 n 0101 + 10686694 n 0101 01 + 08 00 | modify the rhythm by stressing or accenting a weak beat -00170695 30 v 01 update 0 002 @ 00169806 v 0000 + 00404170 n 0101 02 + 08 00 + 11 00 | modernize or bring up to date; "We updated the kitchen in the old house" -00170857 30 v 01 update 1 003 @ 00169806 v 0000 ;c 00950705 n 0000 + 00404170 n 0101 01 + 08 00 | bring to the latest state of technology -00170997 30 v 03 soup_up 0 hop_up 0 hot_up 0 001 @ 00169806 v 0000 01 + 08 00 | make more powerful; "he souped up the old cars" -00171127 30 v 02 modify 1 qualify 1 006 @ 00182406 v 0000 ;c 06174404 n 0000 + 06320801 n 0202 + 13800801 n 0202 + 06320801 n 0101 + 13800801 n 0101 03 + 08 00 + 11 00 + 31 00 | add a modifier to a constituent -00171339 30 v 01 cream 0 002 @ 00169806 v 0000 + 07847198 n 0101 01 + 08 00 | add cream to one's coffee, for example -00171458 30 v 01 modulate 0 002 @ 00296178 v 0000 + 07083958 n 0101 02 + 08 00 + 11 00 | adjust the pitch, tone, or volume of -00171586 30 v 01 enrich 0 006 @ 00205885 v 0000 + 00264366 n 0101 ! 00172732 v 0101 ~ 00172381 v 0000 ~ 00173159 v 0000 ~ 00502757 v 0000 03 + 08 00 + 10 00 + 11 00 | make better or improve in quality; "The experience enriched her understanding"; "enriched foods" -00171852 30 v 02 build_up 3 develop 4 010 $ 00603298 v 0000 $ 00411020 v 0000 $ 00253761 v 0000 $ 01627947 v 0000 @ 00205885 v 0000 + 08549070 n 0201 + 00948206 n 0202 + 10010062 n 0201 ~ 00172258 v 0000 ~ 00539338 v 0000 01 + 08 00 | change the use of and make available or usable; "develop land"; "The country developed its natural resources"; "The remote areas of the country were gradually built up" -00172258 30 v 01 redevelop 0 002 @ 00171852 v 0000 + 00265119 n 0102 01 + 08 00 | change the plans for the use of (land) -00172381 30 v 02 round_out 0 fill_out 0 001 @ 00171586 v 0000 02 + 08 00 + 11 00 | make bigger or better or more complete -00172505 30 v 02 optimize 0 optimise 0 005 @ 00473572 v 0000 + 00260051 n 0202 + 05143864 n 0201 + 00260051 n 0101 + 05143864 n 0101 02 + 08 00 + 11 00 | make optimal; get the most out of; use best; "optimize your resources" -00172732 30 v 02 deprive 0 impoverish 0 006 @ 00203866 v 0000 + 01150467 n 0203 + 14493426 n 0103 + 01150200 n 0102 ! 00171586 v 0101 ~ 00173007 v 0000 01 + 18 00 | take away -00172909 30 v 01 fail 4 001 @ 00203866 v 0000 01 + 01 00 | get worse; "Her health is declining" -00173007 30 v 01 disestablish 0 003 @ 00172732 v 0000 ;c 01032368 n 0000 + 01082886 n 0101 01 + 08 00 | deprive (an established church) of its status -00173159 30 v 02 choke 0 throttle 0 004 @ 00171586 v 0000 + 02670683 n 0205 + 02670186 n 0202 + 03024333 n 0101 02 + 08 00 + 11 00 | reduce the air supply; "choke a carburetor" -00173338 30 v 04 remove 0 take 0 take_away 1 withdraw 1 117 + 00053913 n 0401 ^ 00641252 v 0203 + 00391599 n 0102 + 15003969 n 0101 + 00391599 n 0101 ~ 00037514 v 0000 ~ 00175804 v 0000 ~ 00176021 v 0000 ~ 00176137 v 0000 ~ 00176327 v 0000 ~ 00176459 v 0000 ~ 00176618 v 0000 ~ 00176756 v 0000 ~ 00176874 v 0000 ~ 00177011 v 0000 ~ 00177243 v 0000 ~ 00177578 v 0000 ~ 00177714 v 0000 ~ 00177861 v 0000 ~ 00177984 v 0000 ~ 00178102 v 0000 ~ 00178235 v 0000 ~ 00178380 v 0000 ~ 00178502 v 0000 ~ 00178652 v 0000 ~ 00178773 v 0000 ~ 00178898 v 0000 ~ 00179060 v 0000 ~ 00179311 v 0000 ~ 00179567 v 0000 ~ 00179718 v 0000 ~ 00179852 v 0000 ~ 00179959 v 0000 ~ 00180076 v 0000 ~ 00180197 v 0000 ~ 00180315 v 0000 ~ 00180495 v 0000 ~ 00180602 v 0000 ~ 00180837 v 0000 ~ 00181005 v 0000 ~ 00181180 v 0000 ~ 00181258 v 0000 ~ 00181434 v 0000 ~ 00181559 v 0000 ~ 00190586 v 0000 ~ 00194534 v 0000 ~ 00194696 v 0000 ~ 00195342 v 0000 ~ 00197091 v 0000 ~ 00197423 v 0000 ~ 00197590 v 0000 ~ 00197744 v 0000 ~ 00197956 v 0000 ~ 00198213 v 0000 ~ 00198367 v 0000 ~ 00198477 v 0000 ~ 00313171 v 0000 ~ 00366547 v 0000 ~ 00449426 v 0000 ~ 00488617 v 0000 ~ 00499162 v 0000 ~ 00505349 v 0000 ~ 00520760 v 0000 ~ 00521033 v 0000 ~ 00530442 v 0000 ~ 00531163 v 0000 ~ 00541551 v 0000 ~ 00555780 v 0000 ~ 00557686 v 0000 ~ 00570003 v 0000 ~ 00571596 v 0000 ~ 00574514 v 0000 ~ 00575561 v 0000 ~ 00576228 v 0000 ~ 00587675 v 0000 ~ 01137696 v 0000 ~ 01244516 v 0000 ~ 01254324 v 0000 ~ 01254692 v 0000 ~ 01255057 v 0000 ~ 01261018 v 0000 ~ 01263479 v 0000 ~ 01263659 v 0000 ~ 01264148 v 0000 ~ 01274341 v 0000 ~ 01306047 v 0000 ~ 01309701 v 0000 ~ 01310660 v 0000 ~ 01312371 v 0000 ~ 01351170 v 0000 ~ 01352390 v 0000 ~ 01359303 v 0000 ~ 01360316 v 0000 ~ 01392918 v 0000 ~ 01434278 v 0000 ~ 01483655 v 0000 ~ 01485513 v 0000 ~ 01487927 v 0000 ~ 01488313 v 0000 ~ 01489332 v 0000 ~ 01492576 v 0000 ~ 01513430 v 0000 ~ 01528522 v 0000 ~ 01532434 v 0000 ~ 01540693 v 0000 ~ 01549187 v 0000 ~ 01578821 v 0000 ~ 01579622 v 0000 ~ 01590747 v 0000 ~ 01590915 v 0000 ~ 01592774 v 0000 ~ 01608706 v 0000 ~ 01854132 v 0000 ~ 01995211 v 0000 ~ 02071837 v 0000 ~ 02097800 v 0000 ~ 02311387 v 0000 04 + 08 00 + 11 00 + 16 00 + 20 00 | remove something concrete, as by lifting, pushing, or taking off, or remove something abstract; "remove a threat"; "remove a wrapper"; "Remove the dirty dishes from the table"; "take the gun from your pocket"; "This machine withdraws heat from the environment" -00175804 30 v 01 harvest 0 001 @ 00173338 v 0000 01 + 08 00 | remove from a culture or a living or dead body, as for the purposes of transplantation; "The Chinese are said to harvest organs from executed criminals" -00176021 30 v 01 tip 4 002 @ 00173338 v 0000 + 08663156 n 0101 01 + 08 00 | remove the tip from; "tip artichokes" -00176137 30 v 01 stem 1 003 @ 00173338 v 0000 + 05847753 n 0101 + 06300193 n 0104 01 + 08 00 | remove the stem from; "for automatic natural language processing, the words must be stemmed" -00176327 30 v 01 extirpate 0 003 @ 00173338 v 0000 ;c 06063588 n 0000 + 00393369 n 0102 01 + 08 00 | surgically remove (an organ) -00176459 30 v 01 enucleate 0 003 @ 00173338 v 0000 ;c 06063588 n 0000 + 00671190 n 0101 01 + 08 00 | remove (a tumor or eye) from an enveloping sac or cover -00176618 30 v 01 exenterate 0 003 @ 00173338 v 0000 ;c 06063588 n 0000 + 00673710 n 0101 01 + 08 00 | remove the contents of (an organ) -00176756 30 v 01 enucleate 1 002 @ 00173338 v 0000 ;c 06037666 n 0000 01 + 08 00 | remove the nucleus from (a cell) -00176874 30 v 01 decorticate 1 003 @ 00173338 v 0000 ;c 00671351 n 0000 + 00670105 n 0101 01 + 08 00 | remove the cortex of (an organ) -00177011 30 v 01 bail 1 002 @ 00173338 v 0000 $ 00177136 v 0000 01 + 08 00 | remove (water) from a vessel with a container -00177136 30 v 01 bail 2 002 $ 00177011 v 0000 @ 00449692 v 0000 01 + 08 00 | empty (a vessel) by bailing -00177243 30 v 04 strip c undress 0 divest d disinvest 0 004 $ 00049900 v 0000 @ 00173338 v 0000 + 14456752 n 0201 + 00531490 n 0101 02 + 08 00 + 09 00 | remove (someone's or one's own) clothes; "The nurse quickly undressed the accident victim"; "She divested herself of her outdoor clothes"; "He disinvested himself of his garments" -00177578 30 v 01 ablate a 003 @ 00173338 v 0000 ;c 00671351 n 0000 + 00393369 n 0101 01 + 08 00 | remove an organ or bodily structure -00177714 30 v 02 clean 1 pick 1 001 @ 00173338 v 0000 01 + 08 00 | remove unwanted substances from, such as feathers or pits; "Clean the turkey" -00177861 30 v 01 clean 2 001 @ 00173338 v 0000 01 + 08 00 | remove shells or husks from; "clean grain before milling it" -00177984 30 v 01 winnow 0 001 @ 00173338 v 0000 01 + 08 00 | blow away or off with a current of air; "winnow chaff" -00178102 30 v 01 pick 0 002 @ 00173338 v 0000 + 03929443 n 0101 02 + 08 00 + 21 00 | remove in small bits; "pick meat from a bone" -00178235 30 v 02 clear 8 clear_up 0 001 @ 00173338 v 0000 02 + 08 00 + 11 00 | free (the throat) by making a rasping sound; "Clear the throat" -00178380 30 v 01 muck 1 002 @ 00173338 v 0000 + 14956661 n 0108 01 + 22 00 | remove muck, clear away muck, as in a mine -00178502 30 v 01 lift 0 001 @ 00173338 v 0000 01 + 08 00 | remove from a surface; "the detective carefully lifted some fingerprints from the table" -00178652 30 v 01 lift 9 001 @ 00173338 v 0000 02 + 08 00 + 11 00 | take off or away by decreasing; "lift the pressure" -00178773 30 v 01 lift 8 001 @ 00173338 v 0000 01 + 08 00 | remove from a seedbed or from a nursery; "lift the tulip bulbs" -00178898 30 v 02 tear_away 0 tear_off 0 001 @ 00173338 v 0000 02 + 08 00 + 11 00 | rip off violently and forcefully; "The passing bus tore off her side mirror" -00179060 30 v 01 take_off 0 004 @ 00173338 v 0000 ~ 00049900 v 0000 ~ 00196990 v 0000 ~ 00197206 v 0000 01 + 08 00 | take away or remove; "Take that weight off me!" -00179227 30 v 01 uncloak 0 001 @ 00050454 v 0000 01 + 09 00 | remove a cloak from -00179311 30 v 02 take_away 0 take_out 0 007 @ 00173338 v 0000 ! 00182406 v 0101 ~ 00180728 v 0000 ~ 00478830 v 0000 ~ 00800750 v 0000 ~ 00999815 v 0000 ~ 01451665 v 0000 01 + 08 00 | take out or remove; "take out the chicken after adding the vegetables" -00179567 30 v 02 pit 0 stone 0 003 @ 00173338 v 0000 + 11684739 n 0201 + 11684739 n 0102 01 + 08 00 | remove the pits from; "pit plums and cherries" -00179718 30 v 01 seed 1 003 @ 00173338 v 0000 + 13135832 n 0101 + 04167228 n 0101 01 + 08 00 | remove the seeds from; "seed grapes" -00179852 30 v 01 unhinge 0 001 @ 00173338 v 0000 01 + 08 00 | remove the hinges from; "unhinge the door" -00179959 30 v 01 shuck 0 002 @ 00173338 v 0000 + 14805899 n 0103 01 + 08 00 | remove the shucks from; "shuck corn" -00180076 30 v 01 hull 0 002 @ 00173338 v 0000 + 13139918 n 0101 01 + 08 00 | remove the hulls from; "hull the berries" -00180197 30 v 01 crumb 0 002 @ 00173338 v 0000 + 07622261 n 0101 01 + 08 00 | remove crumbs from; "crumb the table" -00180315 30 v 02 chip_away 0 chip_away_at 0 001 @ 00173338 v 0000 02 + 08 00 + 11 00 | remove or withdraw gradually: "These new customs are chipping away at the quality of life" -00180495 30 v 01 burl 0 002 @ 00173338 v 0000 + 04948905 n 0103 01 + 08 00 | remove the burls from cloth -00180602 30 v 01 knock_out 0 001 @ 00173338 v 0000 01 + 08 00 | destroy or break forcefully; "The windows were knocked out" -00180728 30 v 01 bus 0 001 @ 00179311 v 0000 01 + 08 00 | remove used dishes from the table in restaurants -00180837 30 v 02 scavenge 0 clean 0 004 @ 00173338 v 0000 ;c 06084469 n 0000 + 00251013 n 0201 + 15020628 n 0101 02 + 08 00 + 11 00 | remove unwanted substances from -00181005 30 v 02 hypophysectomize 0 hypophysectomise 0 004 ;c 00671351 n 0000 @ 00173338 v 0000 + 00677038 n 0201 + 00677038 n 0101 01 + 09 00 | remove the pituitary glands -00181180 30 v 01 degas 0 001 @ 00173338 v 0000 01 + 08 00 | remove gas from -00181258 30 v 02 husk 0 shell 6 005 @ 00173338 v 0000 + 11683556 n 0201 + 14805899 n 0102 + 13139647 n 0101 + 00394803 n 0105 01 + 08 00 | remove the husks from; "husk corn" -00181434 30 v 02 bur 0 burr 0 003 @ 00173338 v 0000 + 12036368 n 0202 + 12036368 n 0101 01 + 08 00 | remove the burrs from -00181559 30 v 02 clear_off 0 clear_away 0 001 @ 00173338 v 0000 02 + 08 00 + 21 00 | remove from sight -00181664 30 v 02 unclutter 0 clear 2 006 @ 00126264 v 0000 + 08632423 n 0202 ^ 00181559 v 0201 ^ 00181559 v 0202 ! 00181875 v 0101 $ 00195342 v 0000 02 + 08 00 + 11 00 | rid of obstructions; "Clear your desk" -00181875 30 v 02 clutter 0 clutter_up 0 003 @ 00452512 v 0000 + 14500567 n 0101 ! 00181664 v 0101 03 + 08 00 + 11 00 + 31 00 | fill a space in a disorderly way -00182037 30 v 02 clog 2 overload 0 003 @ 00452512 v 0000 + 03864994 n 0201 + 03047553 n 0101 02 + 08 00 + 11 00 | fill to excess so that function is impaired; "Fear clogged her mind"; "The story was clogged with too many details" -00182269 30 v 01 brim 0 002 @ 00452512 v 0000 + 02902250 n 0101 01 + 08 00 | fill as much as possible; "brim a cup to good fellowship" -00182406 30 v 01 add 0 028 @ 00156601 v 0000 + 01417451 a 0102 + 00363788 n 0101 ! 00179311 v 0101 ~ 00171127 v 0000 ~ 00183241 v 0000 ~ 00183383 v 0000 ~ 00183506 v 0000 ~ 00183757 v 0000 ~ 00183879 v 0000 ~ 00184117 v 0000 ~ 00184511 v 0000 ~ 00184633 v 0000 ~ 00184786 v 0000 ~ 00187268 v 0000 ~ 00187415 v 0000 ~ 00189927 v 0000 ~ 00190023 v 0000 ~ 00190180 v 0000 ~ 00190389 v 0000 ~ 00193486 v 0000 ~ 00194373 v 0000 ~ 00222328 v 0000 ~ 01358023 v 0000 ~ 01368126 v 0000 ~ 02318648 v 0000 ~ 02342132 v 0000 $ 02745172 v 0000 04 + 08 00 + 11 00 + 20 00 + 21 00 | make an addition (to); join or combine or unite with others; increase the quality, quantity, size or scope of; "We added two students to that dorm room"; "She added a personal note to her letter"; "Add insult to injury"; "Add some extra plates to the dinner table" -00183241 30 v 02 gild_the_lily 0 paint_the_lily 0 001 @ 00182406 v 0000 01 + 02 00 | make unnecessary additions to what is already complete -00183383 30 v 01 adjoin 1 001 @ 00182406 v 0000 01 + 08 00 | attach or add; "I adjoin a copy of your my lawyer's letter" -00183506 30 v 01 work_in 0 001 @ 00182406 v 0000 01 + 08 00 | add by mixing or blending on or attaching; "work in the butter and the dough will get the right consistency"; "In his speech, the presidential candidate worked in a lot of learned words" -00183757 30 v 01 add_on 0 002 @ 00182406 v 0000 + 02679415 n 0102 01 + 08 00 | make an addition; "Let's add on to this" -00183879 30 v 01 include 0 003 @ 00182406 v 0000 ;c 06084469 n 0000 + 00373130 n 0101 02 + 08 00 + 11 00 | add as part of something else; put in as part of a set, group, or category; "We must include this chemical element in the group" -00184117 30 v 02 mix 1 mix_in 1 008 @ 00182406 v 0000 + 00509377 a 0102 + 00380083 n 0101 + 07374756 n 0101 + 07374756 n 0102 + 00380083 n 0104 + 00380083 n 0106 ~ 00184377 v 0000 01 + 08 00 | add as an additional element or part; "mix water into the drink" -00184377 30 v 01 dash 1 001 @ 00184117 v 0000 01 + 08 00 | add an enlivening or altering element to; "blue paint dashed with white" -00184511 30 v 01 put_on 0 001 @ 00182406 v 0000 02 + 08 00 + 21 00 | add to something existing; "She put on a sun room" -00184633 30 v 01 butylate 0 003 @ 00182406 v 0000 ;c 06084469 n 0000 + 15008025 n 0101 01 + 08 00 | introduce the butyl group into a chemical compound -00184786 30 v 01 put_on 1 001 @ 00182406 v 0000 01 + 08 00 | add to the odometer; "He put on 1,000 miles on this trip" -00184907 30 v 02 iodize 0 iodise 0 006 @ 00515154 v 0000 ;c 06084469 n 0000 + 13502556 n 0201 + 14641397 n 0201 + 13502556 n 0101 + 14641397 n 0101 01 + 08 00 | treat with iodine; "iodize salt" -00185103 30 v 01 nitrate a 004 @ 00515154 v 0000 ;c 06084469 n 0000 + 14766532 n 0101 + 15015501 n 0101 01 + 08 00 | treat with nitric acid, so as to change an organic compound into a nitrate; "nitroglycerin is obtained by nitrating glycerol" -00185348 30 v 01 tank 0 002 @ 00515154 v 0000 + 04388743 n 0101 01 + 08 00 | treat in a tank; "tank animal refuse" -00185465 30 v 04 oxygenate 0 oxygenize 0 oxygenise 0 aerate 1 005 @ 00515154 v 0000 + 00200244 n 0401 + 14648100 n 0201 + 14648100 n 0101 + 13531149 n 0101 01 + 08 00 | impregnate, combine, or supply with oxygen; "oxygenate blood" -00185698 30 v 02 mercerize 0 mercerise 0 002 @ 00515154 v 0000 + 11175445 n 0101 01 + 08 00 | treat to strengthen and improve the luster; "mercerize cotton" -00185857 30 v 01 back 1 003 @ 00220461 v 0000 + 02840619 n 0104 + 02769460 n 0101 01 + 08 00 | strengthen by providing with a back or backing -00186001 30 v 01 malt 3 004 @ 00515154 v 0000 + 07888909 n 0101 + 07926642 n 0102 $ 00117624 v 0000 01 + 08 00 | treat with malt or malt extract; "malt beer" -00186161 30 v 03 fluoridate 0 fluoridize 0 fluoridise 0 006 @ 00515154 v 0000 + 00365012 n 0303 + 00365012 n 0202 + 14871601 n 0201 + 14871601 n 0101 + 00365012 n 0101 01 + 08 00 | subject to fluoridation; treat with fluoride; "fluoridized water"; "fluoridize the teeth of children" -00186446 30 v 01 creosote 0 002 @ 00515154 v 0000 + 14825631 n 0101 01 + 08 00 | treat with creosote; "creosoted wood" -00186567 30 v 01 chlorinate 0 004 @ 00515154 v 0000 + 14634591 n 0101 + 13448622 n 0101 + 00709659 n 0101 01 + 08 00 | treat or combine with chlorine; "chlorinated water" -00186740 30 v 01 carbonate 0 004 @ 00515154 v 0000 + 14796969 n 0101 + 13442998 n 0101 + 14798450 n 0101 01 + 08 00 | treat with carbon dioxide; "Carbonated soft drinks" -00186912 30 v 01 camphorate 0 002 @ 00515154 v 0000 + 14790979 n 0101 01 + 08 00 | treat with camphor -00187016 30 v 02 bromate 0 brominate 0 003 @ 00515154 v 0000 + 14632129 n 0201 + 14632129 n 0101 01 + 08 00 | treat with bromine -00187147 30 v 01 ammoniate 0 003 @ 00515154 v 0000 + 14743840 n 0102 + 14743582 n 0101 01 + 08 00 | treat with ammonia -00187268 30 v 01 inject 0 001 @ 00182406 v 0000 01 + 21 00 | to introduce (a new aspect or element); "He injected new life into the performance" -00187415 30 v 01 welt 0 002 @ 00182406 v 0000 + 04573281 n 0101 01 + 08 00 | put a welt on; "welt the shoes" -00187526 30 v 06 insert 0 enclose 0 inclose 0 stick_in 0 put_in 0 introduce 3 018 @ 01494310 v 0000 + 00320852 n 0602 + 00321956 n 0304 + 06473381 n 0201 + 00320852 n 0101 + 03573282 n 0101 ~ 00188000 v 0000 ~ 00188137 v 0000 ~ 00188252 v 0000 ~ 00188466 v 0000 ~ 00188580 v 0000 ~ 00188721 v 0000 ~ 00189062 v 0000 ~ 00189189 v 0000 ~ 00189511 v 0000 ~ 00189669 v 0000 ~ 00189823 v 0000 ~ 01585523 v 0000 03 + 08 00 + 11 00 + 21 00 | introduce; "Insert your ticket here" -00188000 30 v 01 plug 2 002 @ 00187526 v 0000 $ 00188137 v 0000 01 + 21 00 | insert as a plug; "She plugged a cork in the wine bottle" -00188137 30 v 01 plug 3 002 $ 00188000 v 0000 @ 00187526 v 0000 01 + 08 00 | insert a plug into; "plug the wall" -00188252 30 v 01 inoculate 0 002 @ 00187526 v 0000 ~ 00188375 v 0000 02 + 08 00 + 21 00 | introduce a microorganism into -00188375 30 v 01 seed 0 001 @ 00188252 v 0000 01 + 08 00 | inoculate with microorganisms -00188466 30 v 01 inset 0 003 @ 00187526 v 0000 + 03573282 n 0102 + 03471190 n 0102 01 + 21 00 | set or place in -00188580 30 v 01 glass 1 004 @ 00187526 v 0000 + 13767239 n 0101 + 03438661 n 0101 + 03438257 n 0101 01 + 08 00 | put in a glass container -00188721 30 v 02 catheterize 0 catheterise 0 005 @ 00187526 v 0000 + 00321562 n 0201 + 02984469 n 0201 + 02984469 n 0101 + 00321562 n 0202 01 + 08 00 | insert a catheter into (a body part); "catheterize the patient's bladder" -00188949 30 v 01 launder 0 001 @ 00161225 v 0000 01 + 08 00 | convert illegally obtained funds into legal ones -00189062 30 v 01 cup 1 003 @ 00187526 v 0000 + 13766733 n 0101 + 03147509 n 0101 01 + 08 00 | put into a cup; "cup the milk" -00189189 30 v 02 intersperse 0 interlard 0 003 @ 00187526 v 0000 + 00381326 n 0101 ~ 00189364 v 0000 01 + 21 00 | introduce one's writing or speech with certain expressions -00189364 30 v 01 interleave 0 001 @ 00189189 v 0000 02 + 08 00 + 21 00 | intersperse alternately, as of protective covers for book illustrations -00189511 30 v 02 feed 1 feed_in 0 002 @ 00187526 v 0000 + 04169707 n 0102 02 + 21 00 + 31 00 | introduce continuously; "feed carrots into a food processor" -00189669 30 v 01 slip 4 001 @ 00187526 v 0000 01 + 21 00 | insert inconspicuously or quickly or quietly; "He slipped some money into the waiter's hand" -00189823 30 v 01 foist 1 001 @ 00187526 v 0000 01 + 21 00 | insert surreptitiously or without warrant -00189927 30 v 01 intercalate 0 001 @ 00182406 v 0000 01 + 08 00 | insert (days) in a calendar -00190023 30 v 02 punctuate 0 mark 8 004 @ 00182406 v 0000 + 06841365 n 0101 + 00390198 n 0101 ~ 01004403 v 0000 01 + 08 00 | insert punctuation marks into -00190180 30 v 01 concatenate 0 003 @ 00182406 v 0000 + 00146443 n 0101 $ 01465054 v 0000 01 + 08 00 | add by linking or joining so as to form a chain or series; "concatenate terms"; "concatenate characters" -00190389 30 v 02 string 0 string_up 0 002 @ 00182406 v 0000 + 08459648 n 0101 01 + 08 00 | add as if on a string; "string these ideas together"; "string up these songs and you'll have a musical" -00190586 30 v 01 flick 0 001 @ 00173338 v 0000 01 + 21 00 | remove with a flick (of the hand) -00190682 30 v 01 activate 0 005 @ 00126264 v 0000 + 14723079 n 0101 + 00236821 n 0101 ! 00191517 v 0101 ~ 00191940 v 0000 03 + 08 00 + 10 00 + 11 00 | make active or more active; "activate an old file" -00190886 30 v 01 activate 1 002 @ 00126264 v 0000 + 13426376 n 0101 01 + 11 00 | make (substances) radioactive -00190999 30 v 02 activate 2 aerate 0 004 @ 00126264 v 0000 + 14841267 n 0201 + 02682569 n 0201 + 13426376 n 0101 02 + 08 00 + 11 00 | aerate (sewage) so as to favor the growth of organisms that decompose organic matter -00191220 30 v 01 biodegrade 0 001 @ 00209837 v 0000 01 + 01 00 | break down naturally through the action of biological agents; "Plastic bottles do not biodegrade" -00191385 30 v 01 activate 3 002 @ 00126264 v 0000 + 13426376 n 0101 02 + 08 00 + 11 00 | make more adsorptive; "activate a metal" -00191517 30 v 02 inactivate 0 deactivate 0 005 @ 00126264 v 0000 + 00233614 n 0201 + 13496771 n 0101 ! 00190682 v 0101 ~ 00268796 v 0000 03 + 08 00 + 10 00 + 11 00 | make inactive; "they deactivated the file" -00191728 30 v 01 deactivate 1 002 @ 01097743 v 0000 + 00233795 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | remove from active military status or reassign; "The men were deactivated after five years of service" -00191940 30 v 01 reactivate 0 001 @ 00190682 v 0000 03 + 08 00 + 10 00 + 11 00 | activate (an old file) anew -00192051 30 v 02 deaden 1 blunt 2 006 @ 00126264 v 0000 + 00272878 n 0104 ! 00192836 v 0101 ~ 00192356 v 0000 ~ 00192471 v 0000 ~ 00390215 v 0000 02 + 08 00 + 11 00 | make less lively, intense, or vigorous; impair in vigor, force, activity, or sensation; "Terror blunted her feelings"; "deaden a sound" -00192356 30 v 01 obtund 0 001 @ 00192051 v 0000 01 + 11 00 | reduce the edge or violence of; "obtunded reflexes" -00192471 30 v 01 petrify 1 001 @ 00192051 v 0000 01 + 11 00 | cause to become stonelike or stiff or dazed and stunned; "The horror petrified his feelings"; "Fear petrified her thinking" -00192659 30 v 04 jazz_up 0 juice_up 0 pep_up 0 ginger_up 0 001 @ 00192836 v 0000 02 + 08 00 + 11 00 | make more interesting or lively; "juice up a party"; "pep up your paper" -00192836 30 v 05 enliven 0 liven 0 liven_up 0 invigorate 0 animate 0 008 @ 00022686 v 0000 + 10056103 n 0505 + 04631700 n 0403 + 01048466 n 0402 + 09402704 n 0103 ! 00192051 v 0101 ~ 00192659 v 0000 ~ 00193130 v 0000 03 + 08 00 + 10 00 + 11 00 | make lively; "let's liven up this room a bit" -00193130 30 v 03 spirit 0 spirit_up 0 inspirit 0 004 @ 00192836 v 0000 + 04632157 n 0103 + 13985818 n 0102 + 14526182 n 0101 02 + 09 00 + 10 00 | infuse with spirit; "The company spirited him up" -00193328 30 v 01 deaden 0 002 @ 00109660 v 0000 + 00272878 n 0104 01 + 01 00 | become lifeless, less lively, intense, or active; lose life, force, or vigor -00193486 30 v 02 compound 0 combine 2 011 @ 00182406 v 0000 + 07963711 n 0201 + 00870453 n 0201 + 07373803 n 0202 + 00378985 n 0202 + 05870180 n 0101 + 00378985 n 0103 ~ 00193790 v 0000 ~ 00193954 v 0000 ~ 00556193 v 0000 ~ 00644066 v 0000 02 + 08 00 + 11 00 | put or add together; "combine resources" -00193790 30 v 02 totalize 0 totalise 0 001 @ 00193486 v 0000 02 + 08 00 + 11 00 | make into a total; "Can we totalize these different ideas into one philosophy?" -00193954 30 v 01 recombine 3 002 @ 00193486 v 0000 + 07374357 n 0101 02 + 08 00 + 11 00 | to combine or put together again -00194079 30 v 01 strip 1 001 @ 00194170 v 0000 01 + 08 00 | draw the last milk (of cows) -00194170 30 v 01 milk 0 005 @ 01854132 v 0000 + 05399034 n 0101 + 07844042 n 0101 ~ 00194079 v 0000 $ 00194373 v 0000 01 + 08 00 | take milk from female mammals; "Cows need to be milked every morning" -00194373 30 v 01 milk 1 005 $ 00194170 v 0000 @ 00182406 v 0000 + 07844604 n 0101 + 05399034 n 0101 + 07844042 n 0101 01 + 08 00 | add milk to; "milk the tea" -00194534 30 v 02 strip 2 dismantle 0 003 @ 00173338 v 0000 + 15061550 n 0101 + 00394803 n 0102 01 + 08 00 | take off or remove; "strip a wall of its wallpaper" -00194696 30 v 01 strip 3 002 @ 00173338 v 0000 ;c 06084469 n 0000 01 + 08 00 | remove a constituent from a liquid -00194812 30 v 01 strip 4 001 @ 01252971 v 0000 02 + 08 00 + 11 00 | remove the thread (of screws) -00194912 30 v 04 denude 0 bare 0 denudate 0 strip 5 004 @ 00195342 v 0000 + 00394803 n 0101 ~ 00195813 v 0000 ~ 00196252 v 0000 02 + 08 00 + 11 00 | lay bare; "denude a forest" -00195091 30 v 01 clear-cut 0 001 @ 00195342 v 0000 01 + 08 00 | remove all the trees at one time; "clear-cut an acre of forest" -00195221 30 v 01 stump 0 002 @ 00195342 v 0000 + 13111504 n 0101 01 + 08 00 | remove tree stumps from; "stump a field" -00195342 30 v 01 clear 1 009 $ 00181664 v 0000 @ 00173338 v 0000 + 08632423 n 0102 + 08541288 n 0101 ~ 00194912 v 0000 ~ 00195091 v 0000 ~ 00195221 v 0000 $ 00195617 v 0000 ~ 00196024 v 0000 01 + 08 00 | remove; "clear the leaves from the lawn"; "Clear snow from the road" -00195617 30 v 01 clear 9 004 $ 00195342 v 0000 @ 01617192 v 0000 + 08632423 n 0102 + 08541288 n 0101 01 + 08 00 | make a way or path by removing objects; "Clear a path through the dense forest" -00195813 30 v 01 defoliate 0 005 @ 00194912 v 0000 + 13460034 n 0101 + 00279674 n 0101 + 14828927 n 0101 + 02161338 n 0101 01 + 08 00 | strip the leaves or branches from; "defoliate the trees with pesticides" -00196024 30 v 03 deforest 0 disforest 0 disafforest 0 004 @ 00195342 v 0000 + 01262441 n 0202 + 14519097 n 0101 + 01262441 n 0101 02 + 08 00 + 11 00 | remove the trees from; "The landscape was deforested by the enemy attacks" -00196252 30 v 01 burn_off 0 001 @ 00194912 v 0000 01 + 08 00 | clear land of its vegetation by burning it off -00196364 30 v 01 burn 3 006 @ 00258857 v 0000 + 00473243 a 0101 + 04694090 n 0101 + 00403911 n 0101 ~ 00196758 v 0000 ~ 00379440 v 0000 02 + 09 00 + 10 00 | burn with heat, fire, or radiation; "The iron burnt a hole in my dress" -00196595 30 v 01 frost 0 002 @ 00258857 v 0000 + 11440521 n 0102 01 + 11 00 | damage by frost; "The icy precipitation frosted the flowers and they turned brown" -00196758 30 v 01 scald 0 003 @ 00196364 v 0000 + 00404058 n 0101 + 14290107 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | burn with a hot liquid or steam; "She scalded her hands when she turned on the faucet and hot water came out" -00196990 30 v 01 declaw 0 001 @ 00179060 v 0000 01 + 08 00 | remove the claws from; "declaw a cat" -00197091 30 v 01 defang 0 001 @ 00173338 v 0000 01 + 08 00 | remove the fangs from; "defang the poisonous snake" -00197206 30 v 01 dehorn 0 002 @ 00179060 v 0000 ~ 00197318 v 0000 01 + 08 00 | take the horns off (an animal) -00197318 30 v 01 disbud 0 001 @ 00197206 v 0000 01 + 08 00 | destroy undeveloped horn buds (of cattle) -00197423 30 v 02 bone 0 debone 0 003 @ 00173338 v 0000 ;c 00015388 n 0000 + 14757848 n 0101 01 + 08 00 | remove the bones from; "bone the turkey before roasting it" -00197590 30 v 03 disembowel 0 eviscerate 0 draw 5 002 @ 00173338 v 0000 + 00670703 n 0202 02 + 08 00 + 09 00 | remove the entrails of; "draw a chicken" -00197744 30 v 01 shell 0 005 @ 00173338 v 0000 + 01904182 n 0101 + 11683556 n 0101 + 10588601 n 0101 ~ 00198057 v 0000 01 + 08 00 | remove from its shell or outer covering; "shell the legumes"; "shell mussels" -00197956 30 v 01 shuck 3 001 @ 00173338 v 0000 01 + 08 00 | remove from the shell; "shuck oysters" -00198057 30 v 01 pod 0 003 @ 00197744 v 0000 + 13139055 n 0101 + 13140049 n 0101 01 + 08 00 | take something out of its shell or pod; "pod peas or beans" -00198213 30 v 02 tusk 0 detusk 0 003 @ 00173338 v 0000 + 14757547 n 0102 + 01465713 n 0101 01 + 08 00 | remove the tusks of animals; "tusk an elephant" -00198367 30 v 01 dehorn 1 001 @ 00173338 v 0000 01 + 08 00 | prevent the growth of horns of certain animals -00198477 30 v 01 scalp 0 003 @ 00173338 v 0000 + 05539947 n 0101 ~ 00198623 v 0000 01 + 09 00 | remove the scalp of; "The enemies were scalped" -00198623 30 v 01 lift 3 001 @ 00198477 v 0000 01 + 08 00 | remove (hair) by scalping -00198710 30 v 01 moderate 3 002 @ 00438495 v 0000 + 05117660 n 0101 02 + 08 00 + 11 00 | make less fast or intense; "moderate your speed" -00198850 30 v 01 mitigate 4 006 @ 00441445 v 0000 + 01341153 a 0104 + 01341153 a 0105 + 01785079 a 0101 + 06741728 n 0102 ~ 00199067 v 0000 02 + 08 00 + 11 00 | make less severe or harsh; "mitigating circumstances" -00199067 30 v 02 relieve 5 lighten 3 001 @ 00198850 v 0000 02 + 08 00 + 11 00 | alleviate or remove (pressure or stress) or make less oppressive; "relieve the pressure and the stress"; "lighten the burden of caring for her elderly parents" -00199309 30 v 02 qualify 2 restrict 1 004 @ 00169806 v 0000 + 00200563 n 0101 + 06762380 n 0102 + 05849284 n 0101 02 + 08 00 + 11 00 | make more specific; "qualify these remarks" -00199490 30 v 03 remodel 0 reconstruct 0 redo 0 002 @ 00126264 v 0000 + 00269258 n 0201 01 + 08 00 | do over, as of (part of) a house; "We are remodeling these rooms" -00199659 30 v 03 correct 0 rectify 2 right 0 006 @ 00138508 v 0000 + 00258854 n 0202 + 00258854 n 0101 ! 00202236 v 0101 ~ 00199912 v 0000 ~ 00200242 v 0000 02 + 08 00 + 11 00 | make right or correct; "Correct the mistakes"; "rectify the calculation" -00199912 30 v 05 rectify 0 remediate 0 remedy 0 repair 2 amend 1 007 @ 00199659 v 0000 + 00635078 a 0501 + 00095329 n 0401 + 00259177 n 0302 + 00259177 n 0203 + 00258854 n 0102 + 10512982 n 0101 02 + 08 00 + 11 00 | set straight or right; "remedy these deficiencies"; "rectify the inequities in salaries"; "repair an oversight" -00200242 30 v 01 debug 0 002 @ 00199659 v 0000 + 06574334 n 0101 01 + 08 00 | locate and correct errors in a computer program code; "debug this program" -00200397 30 v 02 edit 0 redact 0 012 @ 00126264 v 0000 + 10513120 n 0201 + 06427831 n 0202 + 10513120 n 0202 + 10044879 n 0101 + 06427831 n 0101 ~ 00201407 v 0000 ~ 00201618 v 0000 ~ 00201906 v 0000 ~ 00202089 v 0000 ~ 00628125 v 0000 ~ 00800586 v 0000 01 + 08 00 | prepare for publication or presentation by correcting, revising, or adapting; "Edit a book on lexical semantics"; "she edited the letters of the politician so as to omit the most personal passages" -00200863 30 v 03 edit 2 blue-pencil 0 delete 0 003 @ 00682928 v 0000 + 00394610 n 0301 + 06428216 n 0301 01 + 08 00 | cut or eliminate; "she edited the juiciest scenes" -00201034 30 v 05 bowdlerize 0 bowdlerise 0 expurgate 0 castrate 3 shorten 7 011 @ 00243900 v 0000 + 00397010 n 0402 + 00397010 n 0301 + 10073992 n 0301 + 00397191 n 0202 + 00396825 n 0202 + 10859669 n 0201 + 10073992 n 0203 + 00397191 n 0101 + 00396825 n 0101 + 10073992 n 0102 01 + 08 00 | edit by omitting or modifying parts considered indelicate; "bowdlerize a novel" -00201407 30 v 03 interpolate 0 alter 4 falsify 3 005 @ 00200397 v 0000 + 00751145 n 0301 + 10076957 n 0301 + 06722186 n 0101 + 01068184 n 0103 01 + 08 00 | insert words into texts, often falsifying it thereby -00201618 30 v 02 hack 0 cut_up 0 001 @ 00200397 v 0000 01 + 08 00 | significantly cut up a manuscript -00201722 30 v 03 edit 1 cut 7 edit_out 0 003 $ 00243900 v 0000 @ 00126264 v 0000 + 00945205 n 0202 01 + 08 00 | cut and assemble the components of; "edit film"; "cut recording tape" -00201906 30 v 01 black_out 0 002 @ 00200397 v 0000 + 15271619 n 0101 01 + 08 00 | suppress by censorship as for political reasons; "parts of the newspaper article were blacked out" -00202089 30 v 01 blank_out 0 001 @ 00200397 v 0000 01 + 08 00 | cut out, as for political reasons; "several line in the report were blanked out" -00202236 30 v 01 falsify 0 006 @ 00138508 v 0000 + 00751145 n 0101 + 13960464 n 0101 + 06756407 n 0102 + 10076957 n 0101 ! 00199659 v 0101 02 + 08 00 + 11 00 | falsify knowingly; "She falsified the records" -00202445 30 v 03 tame 0 chasten 1 subdue 0 001 @ 00126264 v 0000 02 + 09 00 + 10 00 | correct by punishment or discipline -00202569 30 v 02 break_in 0 break b 003 $ 00202784 v 0000 > 00202784 v 0000 @ 00302130 v 0000 02 + 08 00 + 09 00 | make submissive, obedient, or useful; "The horse was tough to break"; "I broke in the new intern" -00202784 30 v 01 break c 002 @ 00109660 v 0000 $ 00202569 v 0000 01 + 02 00 | be broken in; "If the new teacher won't break, we'll add some stress" -00202934 30 v 03 chasten 0 moderate 1 temper 3 004 @ 00126264 v 0000 + 07518468 n 0302 + 04642258 n 0301 + 10326087 n 0201 01 + 09 00 | restrain -00203081 30 v 02 corrupt 0 spoil 1 003 @ 00169806 v 0000 + 01249616 n 0201 ~ 00487748 v 0000 01 + 08 00 | alter from the original -00203213 30 v 03 pervert 0 misuse 0 abuse 0 006 @ 01158572 v 0000 + 00947719 n 0302 + 00947719 n 0201 + 00742474 n 0101 ~ 00203739 v 0000 ~ 01161830 v 0000 01 + 08 00 | change the inherent purpose or function of something; "Don't abuse the system"; "The director of the factory misused the funds intended for the health care of his workers" -00203556 30 v 01 abuse 2 001 @ 01158572 v 0000 01 + 08 00 | use wrongly or improperly or excessively; "Her husband often abuses alcohol"; "while she was pregnant, she abused drugs" -00203739 30 v 01 fracture 1 001 @ 00203213 v 0000 01 + 08 00 | violate or abuse; "This writer really fractures the language" -00203866 30 v 02 worsen 0 decline 1 017 @ 00146138 v 0000 + 14422488 n 0201 + 13464204 n 0203 + 14422488 n 0202 + 13464204 n 0104 ! 00205046 v 0101 ~ 00063557 v 0000 ~ 00087454 v 0000 ~ 00092293 v 0000 ~ 00172732 v 0000 ~ 00172909 v 0000 ~ 00204281 v 0000 ~ 00204391 v 0000 ~ 00204750 v 0000 ~ 00204872 v 0000 ~ 00249313 v 0000 ~ 00572940 v 0000 02 + 01 00 + 02 00 | grow worse; "Conditions in the slum worsened" -00204281 30 v 01 tumble 1 001 @ 00203866 v 0000 01 + 01 00 | suffer a sudden downfall, overthrow, or defeat -00204391 30 v 04 slip 0 drop_off 0 drop_away 0 fall_away 0 004 @ 00203866 v 0000 + 13556509 n 0203 + 13556377 n 0101 ~ 00204585 v 0000 02 + 01 00 + 02 00 | get worse; "My grades are slipping" -00204585 30 v 02 lapse 0 backslide 0 003 @ 00204391 v 0000 + 10511239 n 0202 + 00068333 n 0102 01 + 01 00 | drop to a lower level, as in one's morals or standards -00204750 30 v 01 suffer 0 002 @ 00203866 v 0000 $ 00204872 v 0000 02 + 01 00 + 04 00 | get worse; "His grades suffered" -00204872 30 v 02 suffer 2 lose 3 002 $ 00204750 v 0000 @ 00203866 v 0000 03 + 01 00 + 02 00 + 04 00 | be set at a disadvantage; "This author really suffers in translation" -00205046 30 v 04 better 0 improve 0 ameliorate 0 meliorate 0 023 $ 00205885 v 0000 @ 00146138 v 0000 + 00232385 a 0404 + 14422179 n 0402 + 13470193 n 0401 + 00261029 n 0402 + 00232385 a 0302 + 00232385 a 0303 + 00261029 n 0301 + 14422179 n 0201 + 07357388 n 0201 + 07357388 n 0102 + 05143690 n 0101 ! 00203866 v 0101 ~ 00092690 v 0000 ~ 00099184 v 0000 ~ 00167934 v 0000 ~ 00168217 v 0000 ~ 00205598 v 0000 ~ 00268011 v 0000 ~ 00270561 v 0000 ~ 00506672 v 0000 ~ 00584220 v 0000 02 + 01 00 + 02 00 | get better; "The weather improved toward evening" -00205598 30 v 02 turn_around 0 pick_up 0 001 @ 00205046 v 0000 02 + 01 00 + 02 00 | improve significantly; go from bad to good; "Her performance in school picked up" -00205766 30 v 03 brisk 0 brisk_up 0 brisken 0 001 @ 00438178 v 0000 01 + 01 00 | become brisk; "business brisked up" -00205885 30 v 05 better 1 improve 1 amend 0 ameliorate 1 meliorate 1 041 > 00205046 v 0000 @ 00126264 v 0000 + 00232385 a 0504 + 14422179 n 0502 + 00261029 n 0502 + 00232385 a 0402 + 00232385 a 0403 + 00261029 n 0401 + 00635078 a 0301 + 00248977 n 0201 + 10191613 n 0203 + 02679415 n 0203 + 00261029 n 0103 + 05143690 n 0101 ! 00208210 v 0101 ~ 00064095 v 0000 ~ 00082081 v 0000 ~ 00097621 v 0000 ~ 00171586 v 0000 ~ 00171852 v 0000 $ 00205046 v 0000 ~ 00206797 v 0000 ~ 00206998 v 0000 ~ 00207184 v 0000 ~ 00207418 v 0000 ~ 00207911 v 0000 ~ 00208055 v 0000 ~ 00230033 v 0000 ~ 00260648 v 0000 ~ 00265386 v 0000 ~ 00265673 v 0000 ~ 00293141 v 0000 ~ 00447158 v 0000 ~ 00473572 v 0000 ~ 00474017 v 0000 ~ 00475183 v 0000 ~ 00506539 v 0000 ~ 00549982 v 0000 ~ 00558371 v 0000 ~ 00583991 v 0000 ~ 02387486 v 0000 03 + 08 00 + 10 00 + 11 00 | to make better; "The editor improved the manuscript with his changes" -00206797 30 v 01 turn_around c 001 @ 00205885 v 0000 03 + 08 00 + 10 00 + 11 00 | improve dramatically; "The new strategy turned around sales"; "The tutor turned around my son's performance in math" -00206998 30 v 01 help d 003 @ 00205885 v 0000 + 05154908 n 0103 + 01207609 n 0104 01 + 11 00 | improve; change for the better; "New slipcovers will help the old living room furniture" -00207184 30 v 01 upgrade 0 003 @ 00205885 v 0000 + 04513686 n 0101 + 06903255 n 0101 01 + 08 00 | to improve what was old or outdated; "I've upgraded my computer so I can run better software"; "The company upgraded their personnel" -00207418 30 v 01 condition 0 004 @ 00205885 v 0000 + 13920835 n 0101 + 00625551 n 0101 ~ 00207588 v 0000 01 + 08 00 | put into a better state; "he conditions old cars" -00207588 30 v 01 recondition 0 001 @ 00207418 v 0000 01 + 08 00 | bring into an improved condition; "He reconditioned the old appliances" -00207728 30 v 02 degrade 0 cheapen 0 004 @ 00208210 v 0000 + 14440623 n 0102 + 00271263 n 0101 ~ 00493929 v 0000 02 + 08 00 + 11 00 | lower the grade of something; reduce its worth -00207911 30 v 01 emend 0 001 @ 00205885 v 0000 01 + 08 00 | make improvements or corrections to; "the text was emended in the second edition" -00208055 30 v 03 iron_out 0 straighten_out 1 put_right 0 001 @ 00205885 v 0000 01 + 08 00 | settle or put right; "we need to iron out our disagreements" -00208210 30 v 04 worsen 1 aggravate 0 exacerbate 0 exasperate 0 008 @ 00126264 v 0000 + 00374835 n 0302 + 00374835 n 0201 + 00266253 n 0101 ! 00205885 v 0101 ~ 00063291 v 0000 ~ 00063724 v 0000 ~ 00207728 v 0000 03 + 08 00 + 10 00 + 11 00 | make worse; "This drug aggravates the pain" -00208497 30 v 01 deteriorate 0 005 @ 00208836 v 0000 + 14561618 n 0101 + 13464204 n 0101 ~ 00208691 v 0000 ~ 00469382 v 0000 01 + 01 00 | become worse or disintegrate; "His mind deteriorated" -00208691 30 v 02 go_to_pot 0 go_to_the_dogs 0 001 @ 00208497 v 0000 01 + 01 00 | become ruined; "His business went to pot when economy soured" -00208836 30 v 03 decay 0 crumble d dilapidate 0 011 @ 00109660 v 0000 + 14560612 n 0101 + 11444643 n 0101 + 09997939 n 0101 ~ 00208497 v 0000 ~ 00273963 v 0000 ~ 00275088 v 0000 ~ 00275253 v 0000 ~ 00469637 v 0000 ~ 00578993 v 0000 ~ 01369346 v 0000 02 + 01 00 + 02 00 | fall into decay or ruin; "The unoccupied house started to decay" -00209174 30 v 03 decompose 0 break_up 2 break_down 9 006 @ 01458973 v 0000 ;c 06084469 n 0000 + 13458268 n 0101 ~ 00209420 v 0000 ~ 00209598 v 0000 ~ 00238542 v 0000 02 + 09 00 + 11 00 | separate (substances) into constituent elements or parts -00209420 30 v 01 digest 4 003 @ 00209174 v 0000 + 13465998 n 0101 $ 00397987 v 0000 02 + 08 00 + 11 00 | soften or disintegrate by means of chemical action, heat, or moisture -00209598 30 v 01 dissociate a 003 @ 00209174 v 0000 ;c 06084469 n 0000 + 13467700 n 0101 01 + 01 00 | to undergo a reversible or temporary breakdown of a molecule into simpler molecules or atoms; "acids dissociate to give hydrogen ions" -00209837 30 v 04 decompose 1 rot 0 molder 0 moulder 0 008 @ 00552815 v 0000 + 13458019 n 0202 + 14560926 n 0202 + 13458019 n 0203 + 13458019 n 0101 + 11444643 n 0102 ~ 00191220 v 0000 ~ 00210110 v 0000 02 + 01 00 + 11 00 | break down; "The bodies decomposed in the heat" -00210110 30 v 01 hang 0 001 @ 00209837 v 0000 02 + 01 00 + 11 00 | suspend (meat) in order to get a gamey taste; "hang the venison for a few days" -00210259 30 v 02 spoil 0 go_bad 0 005 @ 00552815 v 0000 + 13560417 n 0101 + 13560417 n 0102 ~ 00210647 v 0000 ~ 00443000 v 0000 01 + 01 00 | become unfit for consumption or use; "the meat must be eaten before it spoils" -00210481 30 v 01 smut 1 003 @ 00210738 v 0000 + 13066129 n 0101 + 14283632 n 0101 01 + 01 00 | become affected with smut; "the corn smutted and could not be eaten" -00210647 30 v 01 addle 0 001 @ 00210259 v 0000 01 + 01 00 | become rotten; "addled eggs" -00210738 30 v 02 mold 0 mildew 0 007 @ 00109660 v 0000 + 13077295 n 0201 + 13516176 n 0201 + 13077033 n 0101 + 13516176 n 0102 ~ 00210481 v 0000 ~ 00211001 v 0000 02 + 01 00 + 11 00 | become moldy; spoil due to humidity; "The furniture molded in the old house" -00211001 30 v 01 dry-rot 0 001 @ 00210738 v 0000 02 + 01 00 + 11 00 | affect or be affected with dry rot -00211108 30 v 04 exsiccate 0 dehydrate 0 dry_up 0 desiccate 0 007 @ 00218475 v 0000 + 14536831 n 0402 + 14779796 n 0401 + 14040846 n 0201 + 14536831 n 0201 + 13460568 n 0201 ! 00214020 v 0201 02 + 01 00 + 02 00 | lose water or moisture; "In the desert, you get dehydrated very quickly" -00211396 30 v 02 dehydrate 1 desiccate 5 006 @ 00218475 v 0000 + 14536831 n 0202 + 13460568 n 0202 + 14040846 n 0101 + 14536831 n 0101 + 13460568 n 0101 02 + 08 00 + 11 00 | remove water from; "All this exercise and sweating has dehydrated me" -00211642 30 v 01 tumble 3 001 @ 01418536 v 0000 01 + 08 00 | put clothes in a tumbling barrel, where they are whirled about in hot air, usually with the purpose of drying; "Wash in warm water and tumble dry" -00211852 30 v 01 freeze-dry 0 003 * 00211108 v 0000 @ 00212414 v 0000 ~ 00212236 v 0000 01 + 08 00 | preserve by rapid freezing and subsequently drying in a vacuum; "freeze-dry the strawberries" -00212049 30 v 01 conserve 0 003 @ 00212414 v 0000 ;c 00243918 n 0000 + 07642471 n 0101 01 + 08 00 | preserve with sugar; "Mom always conserved the strawberries we grew in the backyard" -00212236 30 v 02 lyophilize 0 lyophilise 0 003 @ 00211852 v 0000 + 13484937 n 0203 + 13484937 n 0102 01 + 08 00 | to dry (blood, serum, or tissue) by freezing in a high vacuum -00212414 30 v 02 preserve 0 keep a 014 $ 02734800 v 0000 @ 01664172 v 0000 + 01888554 a 0101 + 07642471 n 0102 + 10467052 n 0101 ~ 00211852 v 0000 ~ 00212049 v 0000 ~ 00212790 v 0000 ~ 00213223 v 0000 ~ 00213353 v 0000 ~ 00213794 v 0000 ~ 00371955 v 0000 ~ 00527572 v 0000 ~ 00528225 v 0000 01 + 08 00 | prevent (food) from rotting; "preserved meats"; "keep potatoes fresh" -00212790 30 v 02 dehydrate 2 desiccate 4 005 @ 00212414 v 0000 + 14536831 n 0202 + 13460568 n 0202 + 14536831 n 0101 + 13460568 n 0101 01 + 08 00 | preserve by removing all water and liquids from; "carry dehydrated food on your camping trip" -00213034 30 v 01 tin 2 003 @ 01395049 v 0000 + 14658855 n 0101 + 00718325 n 0101 01 + 08 00 | prepare (a metal) for soldering or brazing by applying a thin layer of solder to the surface -00213223 30 v 01 pickle 0 003 @ 00212414 v 0000 ;c 00243918 n 0000 + 07824988 n 0101 01 + 08 00 | preserve in a pickling liquid -00213353 30 v 01 salt 0 005 @ 00212414 v 0000 ;c 00243918 n 0000 + 05717342 n 0101 + 07813107 n 0101 + 10549165 n 0101 01 + 08 00 | preserve with salt; "people used to salt meats on ships" -00213544 30 v 02 marinade 0 marinate 0 004 @ 00327362 v 0000 ;c 00243918 n 0000 + 07824502 n 0201 + 07824502 n 0101 01 + 08 00 | soak in marinade; "marinade herring" -00213712 30 v 01 decoct 1 001 @ 00327362 v 0000 01 + 08 00 | steep in hot water -00213794 30 v 03 can 0 tin 0 put_up 0 006 @ 00212414 v 0000 ;c 00243918 n 0000 + 02946921 n 0202 + 02949542 n 0203 + 02946921 n 0101 + 02950018 n 0101 01 + 08 00 | preserve in a can or tin; "tinned foods are not very tasty" -00214020 30 v 01 hydrate 0 007 @ 00215800 v 0000 + 13494325 n 0101 + 14910440 n 0101 ! 00211108 v 0102 $ 00214268 v 0000 $ 00214407 v 0000 ~ 00214624 v 0000 02 + 08 00 + 11 00 | cause to be hydrated; add water or moisture to; "hydrate your skin" -00214268 30 v 01 hydrate 2 003 $ 00214020 v 0000 @ 00109660 v 0000 + 13494325 n 0101 01 + 01 00 | become hydrated and combine with water -00214407 30 v 01 hydrate 3 002 $ 00214020 v 0000 @ 02327200 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | supply water or liquid to in order to maintain a healthy balance; "the bicyclists must be hydrated frequently" -00214624 30 v 02 slack 6 slake 3 003 @ 00214020 v 0000 + 14858099 n 0101 ~ 00214794 v 0000 01 + 08 00 | cause to heat and crumble by treatment with water; "slack lime" -00214794 30 v 01 air-slake 0 001 @ 00214624 v 0000 01 + 08 00 | alter by exposure to air with conversion at least in part to a carbonate; "air-slake lime" -00214951 30 v 01 wet 0 012 @ 00126264 v 0000 + 14535431 n 0102 + 10775003 n 0101 + 00277376 n 0101 ! 00218475 v 0101 ~ 00215254 v 0000 ~ 00216216 v 0000 ~ 00217956 v 0000 ~ 00228236 v 0000 ~ 00228655 v 0000 ~ 01313411 v 0000 ~ 02649220 v 0000 02 + 08 00 + 11 00 | cause to become wet; "Wet your face" -00215254 30 v 01 bedew 0 001 @ 00214951 v 0000 02 + 08 00 + 11 00 | cover with drops of dew or as with dew -00215363 30 v 01 spin-dry 0 001 @ 00218475 v 0000 01 + 08 00 | dry (clothes) by spinning and making use of centrifugal forces -00215491 30 v 01 tumble_dry 0 001 @ 00218475 v 0000 01 + 08 00 | dry by spinning with hot air inside a cylinder; "These fabrics are delicate and cannot be tumbled dry" -00215661 30 v 01 spray-dry 0 001 @ 00218475 v 0000 01 + 08 00 | dry by bringing into the form of a spray, through contact with a hot gas -00215800 30 v 03 humidify 0 moisturize 0 moisturise 0 006 @ 00217956 v 0000 + 14535431 n 0301 + 14535431 n 0201 + 14535643 n 0101 ! 00216057 v 0101 ~ 00214020 v 0000 01 + 11 00 | make (more) humid; "We have a machine that humidifies the air in the house" -00216057 30 v 01 dehumidify 0 002 @ 00218475 v 0000 ! 00215800 v 0101 01 + 11 00 | make less humid; "The air conditioner dehumidifies the air in the summer" -00216216 30 v 06 drench 0 douse 0 dowse 0 soak 1 sop 1 souse 1 010 @ 00214951 v 0000 + 00277811 n 0603 + 00277811 n 0604 + 11502102 n 0407 + 00277811 n 0402 ~ 00216561 v 0000 ~ 00216692 v 0000 ~ 00216801 v 0000 ~ 00216991 v 0000 ~ 00455368 v 0000 03 + 08 00 + 10 00 + 11 00 | cover with liquid; pour liquid onto; "souse water on his hot face" -00216561 30 v 01 brine 0 004 @ 00216216 v 0000 ;c 00243918 n 0000 + 15008847 n 0103 + 07937203 n 0101 01 + 08 00 | soak in brine -00216692 30 v 02 bedraggle 0 draggle 0 001 @ 00216216 v 0000 01 + 10 00 | make wet and dirty, as from rain -00216801 30 v 01 bate 0 002 @ 00216216 v 0000 ;c 06084469 n 0000 01 + 08 00 | soak in a special solution to soften and remove chemicals used in previous treatments; "bate hides and skins" -00216991 30 v 01 ret 0 001 @ 00216216 v 0000 01 + 08 00 | place (flax, hemp, or jute) in liquid so as to promote loosening of the fibers from the woody tissue -00217152 30 v 01 flood 0 006 @ 01207951 v 0000 + 11454591 n 0101 ^ 00751131 v 0103 ~ 00217427 v 0000 ~ 00217700 v 0000 ~ 02771564 v 0000 01 + 11 00 | cover with liquid, usually water; "The swollen river flooded the village"; "The broken vein had flooded blood in her eyes" -00217427 30 v 01 flow 0 004 @ 00217152 v 0000 + 09282534 n 0101 + 01257542 n 0102 ~ 00217576 v 0000 02 + 08 00 + 11 00 | cover or swamp with water -00217576 30 v 03 lave 1 lap 2 wash 8 001 @ 00217427 v 0000 01 + 11 00 | wash or flow against; "the waves laved the shore" -00217700 30 v 03 inundate 0 deluge 0 submerge 2 008 @ 00217152 v 0000 + 02472693 a 0301 + 02472693 a 0302 + 07364115 n 0302 + 07364115 n 0301 + 11454591 n 0203 + 11502102 n 0203 + 11454591 n 0102 01 + 11 00 | fill or cover completely, usually with water -00217956 30 v 03 moisten 0 wash 6 dampen 1 008 @ 00214951 v 0000 + 03161016 n 0301 + 00278040 n 0302 + 03161016 n 0102 + 14535431 n 0101 + 00278040 n 0101 ~ 00215800 v 0000 ~ 00321652 v 0000 02 + 08 00 + 11 00 | make moist; "The dew moistened the meadows" -00218214 30 v 01 moil 0 001 @ 01252425 v 0000 02 + 08 00 + 11 00 | moisten or soil; "Her tears moiled the letter" -00218330 30 v 02 parch 0 sear 2 001 @ 00218475 v 0000 01 + 11 00 | cause to wither or parch from exposure to heat; "The sun parched the earth" -00218475 30 v 02 dry 1 dry_out 5 016 > 00219403 v 0000 @ 00126264 v 0000 + 14779796 n 0103 + 03251766 n 0102 ! 00214951 v 0101 ~ 00211108 v 0000 ~ 00211396 v 0000 ~ 00215363 v 0000 ~ 00215491 v 0000 ~ 00215661 v 0000 ~ 00216057 v 0000 ~ 00218330 v 0000 ~ 00218888 v 0000 ~ 00219224 v 0000 ~ 00219316 v 0000 ~ 00489029 v 0000 02 + 08 00 + 11 00 | remove the moisture from and make dry; "dry clothes"; "dry hair" -00218888 30 v 01 rough-dry 0 001 @ 00218475 v 0000 01 + 08 00 | dry without smoothing or ironing; "rough-dry the laundry" -00219012 30 v 01 lubricate 2 004 @ 00126264 v 0000 + 14578104 n 0101 + 00716945 n 0101 + 14890659 n 0101 02 + 08 00 + 11 00 | make slippery or smooth through the application of a lubricant; "lubricate the key" -00219224 30 v 01 blow-dry 0 001 @ 00218475 v 0000 01 + 01 00 | dry hair with a hair dryer -00219316 30 v 01 drip-dry 0 001 @ 00218475 v 0000 01 + 08 00 | dry by hanging up wet -00219403 30 v 02 dry 0 dry_out 0 005 @ 00109660 v 0000 + 14779796 n 0103 + 03251766 n 0102 ~ 00219597 v 0000 ~ 02771756 v 0000 01 + 01 00 | become dry or drier; "The laundry dries in the sun" -00219597 30 v 01 scorch 4 001 @ 00219403 v 0000 02 + 01 00 + 04 00 | become scorched or singed under intense heat or dry conditions; "The exposed tree scorched in the hot sun" -00219775 30 v 01 lock 0 002 @ 00220115 v 0000 ! 00219963 v 0101 01 + 01 00 | become rigid or immoveable; "The therapist noticed that the patient's knees tended to lock in this exercise" -00219963 30 v 01 unlock 0 003 @ 00220276 v 0000 ! 01348174 v 0101 ! 00219775 v 0101 01 + 01 00 | become unlocked; "The door unlocked from the inside" -00220115 30 v 01 engage 0 004 @ 01206218 v 0000 + 07338114 n 0101 ! 00220276 v 0101 ~ 00219775 v 0000 01 + 01 00 | get caught; "make sure the gear is engaged" -00220276 30 v 01 disengage 0 005 @ 00146138 v 0000 + 00390906 n 0102 ! 00220115 v 0101 ~ 00219963 v 0000 ~ 00531068 v 0000 01 + 01 00 | become free; "in neutral, the gears disengage" -00220461 30 v 01 strengthen 0 008 @ 00109660 v 0000 + 07427224 n 0101 ! 00223500 v 0101 ~ 00165450 v 0000 ~ 00165971 v 0000 ~ 00185857 v 0000 ~ 00221964 v 0000 ~ 00303309 v 0000 02 + 01 00 + 02 00 | gain strength; "His body strengthened" -00220701 30 v 01 attenuate 0 004 @ 00223500 v 0000 + 07427534 n 0101 + 02755675 n 0101 ~ 00401906 v 0000 01 + 01 00 | become weaker, in strength, value, or magnitude -00220869 30 v 03 strengthen 1 beef_up 0 fortify 1 018 > 00220461 v 0000 @ 00126264 v 0000 + 05635624 n 0301 + 00264529 n 0301 + 04336034 n 0101 + 00374063 n 0101 ! 00224901 v 0101 ~ 00164816 v 0000 ~ 00165244 v 0000 ~ 00221413 v 0000 ~ 00221607 v 0000 ~ 00221718 v 0000 ~ 00221840 v 0000 ~ 00222472 v 0000 ~ 00222728 v 0000 ~ 01219993 v 0000 ~ 01306292 v 0000 ~ 01306425 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make strong or stronger; "This exercise will strengthen your upper body"; "strengthen the relations between the two countries" -00221413 30 v 01 substantiate 2 001 @ 00220869 v 0000 02 + 08 00 + 11 00 | solidify, firm, or strengthen; "The president's trip will substantiate good relations with the former enemy country" -00221607 30 v 01 restrengthen 0 001 @ 00220869 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make strong again -00221718 30 v 02 undergird 0 brace_up 0 001 @ 00220869 v 0000 01 + 11 00 | make secure underneath; "undergird the ship" -00221840 30 v 01 confirm 0 001 @ 00220869 v 0000 02 + 08 00 + 11 00 | make more firm; "Confirm thy soul in self-control!" -00221964 30 v 01 sandbag 0 002 @ 00220461 v 0000 + 04134008 n 0101 01 + 08 00 | protect or strengthen with sandbags; stop up; "The residents sandbagged the beach front" -00222135 30 v 03 spike 0 lace 0 fortify 0 004 @ 00126264 v 0000 ;c 00243918 n 0000 + 00264529 n 0301 + 07926127 n 0201 02 + 08 00 + 11 00 | add alcohol to (beverages); "the punch is spiked!" -00222328 30 v 01 fortify 2 003 @ 00182406 v 0000 ;c 00243918 n 0000 + 00264529 n 0101 02 + 08 00 + 11 00 | add nutrients to; "fortified milk" -00222472 30 v 02 reinforce 0 reenforce 0 008 @ 00220869 v 0000 + 00971463 n 0203 + 04336034 n 0102 + 00971463 n 0102 ~ 00222861 v 0000 ~ 00222993 v 0000 ~ 00223374 v 0000 ~ 01125724 v 0000 02 + 08 00 + 11 00 | make stronger; "he reinforced the concrete" -00222728 30 v 01 buttress 0 001 @ 00220869 v 0000 03 + 08 00 + 10 00 + 11 00 | make stronger or defensible; "buttress your thesis" -00222861 30 v 01 buttress 1 002 @ 00222472 v 0000 + 02929289 n 0101 01 + 08 00 | reinforce with a buttress; "Buttress the church" -00222993 30 v 01 line 1 001 @ 00222472 v 0000 01 + 08 00 | reinforce with fabric; "lined books are more enduring" -00223109 30 v 02 back 0 back_up 0 001 @ 00665886 v 0000 02 + 08 00 + 11 00 | establish as valid or genuine; "Can you back up your claims?" -00223250 30 v 01 vouch 0 001 @ 00665886 v 0000 01 + 08 00 | give supporting evidence; "He vouched his words by his deeds" -00223374 30 v 02 bolster 1 bolster_up 0 001 @ 00222472 v 0000 02 + 08 00 + 11 00 | support and strengthen; "bolster morale" -00223500 30 v 01 weaken 0 017 @ 00151689 v 0000 + 07427337 n 0101 ! 00220461 v 0101 ~ 00220701 v 0000 ~ 00223928 v 0000 ~ 00224168 v 0000 ~ 00224460 v 0000 ~ 00224651 v 0000 ~ 00232956 v 0000 ~ 00311113 v 0000 ~ 00389992 v 0000 ~ 00391672 v 0000 ~ 00392142 v 0000 ~ 00419137 v 0000 ~ 00421408 v 0000 ~ 00440580 v 0000 ~ 00469794 v 0000 02 + 01 00 + 02 00 | become weaker; "The prisoner's resistance weakened after seven days" -00223928 30 v 03 melt a disappear a evaporate 3 001 @ 00223500 v 0000 02 + 01 00 + 04 00 | become less intense and fade away gradually; "her resistance melted under his charm"; "her hopes evaporated after years of waiting for her fiance" -00224168 30 v 01 die_down 2 001 @ 00223500 v 0000 02 + 01 00 + 02 00 | become progressively weaker; "the laughter died down" -00224295 30 v 01 die 2 001 ;c 05946687 n 0000 01 + 02 00 | suffer spiritual death; be damned (in the religious sense); "Whosoever..believes in me shall never die" -00224460 30 v 01 collapse 0 002 @ 00223500 v 0000 + 07477945 n 0102 01 + 01 00 | lose significance, effectiveness, or value; "The school system is collapsing"; "The stock market collapsed" -00224651 30 v 02 fade 2 melt 5 002 @ 00223500 v 0000 + 00230172 n 0101 01 + 01 00 | become less clearly visible or distinguishable; disappear gradually or seemingly; "The scene begins to fade"; "The tree trunks are melting into the forest at dusk" -00224901 30 v 01 weaken 1 023 > 00223500 v 0000 @ 00126264 v 0000 + 09476521 n 0101 + 00362355 n 0101 ! 00220869 v 0101 ~ 00023244 v 0000 ~ 00030463 v 0000 ~ 00166952 v 0000 ~ 00167385 v 0000 ~ 00225438 v 0000 ~ 00225580 v 0000 ~ 00225690 v 0000 ~ 00225832 v 0000 ~ 00226071 v 0000 ~ 00226379 v 0000 ~ 00228019 v 0000 ~ 00294884 v 0000 ~ 00389638 v 0000 ~ 00389856 v 0000 ~ 00391553 v 0000 ~ 00470084 v 0000 ~ 00541953 v 0000 ~ 00542533 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | lessen the strength of; "The fever weakened his body" -00225438 30 v 01 depress 0 001 @ 00224901 v 0000 01 + 11 00 | lessen the activity or force of; "The rising inflation depressed the economy" -00225580 30 v 01 unbrace 0 001 @ 00224901 v 0000 03 + 08 00 + 10 00 + 11 00 | remove a brace or braces from -00225690 30 v 01 etiolate 1 002 @ 00224901 v 0000 + 00362862 n 0101 02 + 10 00 + 11 00 | make weak by stunting the growth or development of -00225832 30 v 02 cripple 0 stultify 0 001 @ 00224901 v 0000 03 + 08 00 + 10 00 + 11 00 | deprive of strength or efficiency; make useless or worthless; "This measure crippled our efforts"; "Their behavior stultified the boss's hard work" -00226071 30 v 05 dilute 0 thin 2 thin_out 2 reduce 9 cut 5 008 @ 00224901 v 0000 + 00363052 n 0501 + 14835333 n 0203 + 00363052 n 0202 + 14835478 n 0101 + 00362659 n 0101 + 14835333 n 0101 ~ 00488301 v 0000 03 + 01 00 + 08 00 + 11 00 | lessen the strength or flavor of a solution or mixture; "cut bourbon" -00226379 30 v 02 rarefy 0 attenuate 1 004 @ 00224901 v 0000 ;c 06084469 n 0000 + 05041712 n 0201 + 07419408 n 0101 02 + 08 00 + 11 00 | weaken the consistency of (a chemical substance) -00226566 30 v 02 intensify 0 deepen 0 009 @ 00156601 v 0000 + 05036394 n 0101 + 00374224 n 0101 ~ 00226882 v 0000 ~ 00227042 v 0000 ~ 00307785 v 0000 ~ 00365647 v 0000 ~ 00392314 v 0000 ~ 00438178 v 0000 01 + 01 00 | become more intense; "The debate intensified"; "His dislike for raw fish only deepened in Japan" -00226882 30 v 01 build a 002 @ 00226566 v 0000 $ 00252990 v 0000 01 + 01 00 | develop and grow; "Suspense was building right from the beginning of the opera" -00227042 30 v 01 redouble 1 001 @ 00226566 v 0000 01 + 01 00 | make twice as great or intense; "The screaming redoubled" -00227165 30 v 04 intensify 1 compound 1 heighten 4 deepen 1 011 > 00226566 v 0000 @ 00156601 v 0000 + 05036394 n 0101 + 00374224 n 0101 + 06321054 n 0101 ~ 00227667 v 0000 ~ 00227805 v 0000 ~ 00229605 v 0000 ~ 00263904 v 0000 ~ 00392426 v 0000 ~ 00392588 v 0000 02 + 08 00 + 11 00 | make more intense, stronger, or more marked; "The efforts were intensified", "Her rudeness intensified his dislike for her"; "Pot smokers claim it heightens their awareness"; "This event only deepened my convictions" -00227667 30 v 03 heat_up 4 hot_up 1 screw_up 0 001 @ 00227165 v 0000 02 + 08 00 + 11 00 | make more intense; "Emotions were screwed up" -00227805 30 v 01 fan 0 001 @ 00227165 v 0000 02 + 08 00 + 11 00 | make (an emotion) fiercer; "fan hatred" -00227913 30 v 01 blunt 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make less sharp; "blunt the knives" -00228019 30 v 01 blunt 1 001 @ 00224901 v 0000 02 + 08 00 + 11 00 | make less intense; "blunted emotions" -00228127 30 v 01 bloody 0 001 @ 01207951 v 0000 02 + 08 00 + 11 00 | cover with blood; "bloody your hands" -00228236 30 v 02 water 0 irrigate 0 008 @ 00214951 v 0000 + 01057631 n 0201 + 14845743 n 0101 + 10770767 n 0101 + 00278403 n 0101 ~ 00228521 v 0000 ~ 00454868 v 0000 ~ 00461057 v 0000 02 + 08 00 + 11 00 | supply with water, as with channels or ditches or streams; "Water the fields" -00228521 30 v 02 hose 0 hose_down 0 002 @ 00228236 v 0000 + 03539875 n 0101 02 + 08 00 + 09 00 | water with a hose; "hose the lawn" -00228655 30 v 03 sprinkle 0 sparge 0 besprinkle 0 004 @ 00214951 v 0000 + 00278555 n 0101 + 04289027 n 0101 + 00278555 n 0102 02 + 08 00 + 11 00 | scatter with liquid; wet lightly; "Sprinkle the lawn" -00228858 30 v 01 moonshine 0 004 @ 00229280 v 0000 ;c 06084469 n 0000 + 07902520 n 0101 + 09866922 n 0102 01 + 02 00 | distill (alcohol) illegally; produce moonshine -00229026 30 v 02 distill 1 distil 1 009 $ 00229280 v 0000 $ 00475183 v 0000 @ 00109660 v 0000 ;c 06084469 n 0000 + 14836960 n 0101 + 13468306 n 0102 + 14836960 n 0102 + 13468306 n 0101 + 03212811 n 0101 01 + 01 00 | undergo the process of distillation -00229280 30 v 03 distill 2 extract 0 distil 2 010 @ 01617192 v 0000 ;c 06084469 n 0000 + 01526905 a 0202 + 13478525 n 0201 + 14836960 n 0101 + 14836960 n 0102 + 13468306 n 0101 + 03212811 n 0101 ~ 00228858 v 0000 $ 00229026 v 0000 01 + 08 00 | extract by the process of distillation; "distill the essence of this compound" -00229605 30 v 03 enhance 0 heighten 0 raise 0 003 @ 00227165 v 0000 + 01340522 a 0102 ~ 00229801 v 0000 02 + 08 00 + 11 00 | increase; "This will enhance your enjoyment"; "heighten the tension" -00229801 30 v 01 potentiate 0 003 @ 00229605 v 0000 ;c 03247620 n 0000 + 13539422 n 0101 01 + 11 00 | increase the effect of or act synergistically with (a drug or a physiological or biochemical phenomenon); "potentiate the drug" -00230033 30 v 01 enhance 1 006 @ 00205885 v 0000 + 00070111 a 0102 + 00265992 n 0101 + 05853924 n 0102 ~ 00230276 v 0000 ~ 00230562 v 0000 02 + 08 00 + 11 00 | make better or more attractive; "This sauce will enhance the flavor of the meat" -00230276 30 v 01 follow_up 1 007 @ 00230033 v 0000 + 00143251 n 0101 + 00143251 n 0102 + 00455348 n 0101 + 00455348 n 0102 + 03377582 n 0102 + 03377582 n 0101 01 + 08 00 | increase the effectiveness or success of by further action; "The doctor followed up the surgery with radiation" -00230562 30 v 02 touch_up 0 retouch 0 002 @ 00230033 v 0000 ;c 00903559 n 0000 01 + 08 00 | alter so as to produce a more desirable appearance; "This photograph has been retouched!" -00230746 30 v 01 grow 0 021 @ 00156601 v 0000 + 13497135 n 0103 ^ 02540347 v 0101 ~ 00094153 v 0000 ~ 00155143 v 0000 ~ 00157844 v 0000 ~ 00157950 v 0000 ~ 00231288 v 0000 ~ 00231445 v 0000 ~ 00232714 v 0000 ~ 00240810 v 0000 ~ 00252019 v 0000 ~ 00257269 v 0000 ~ 00310386 v 0000 ~ 00310635 v 0000 ~ 00316631 v 0000 ~ 00329244 v 0000 ~ 00357854 v 0000 ~ 00358135 v 0000 ~ 01983134 v 0000 ~ 02077148 v 0000 02 + 01 00 + 02 00 | become larger, greater, or bigger; expand or gain; "The problem grew too large for me"; "Her business grew fast" -00231288 30 v 01 vegetate 4 002 @ 00230746 v 0000 + 05603854 n 0101 01 + 01 00 | grow or spread abnormally; "warts and polyps can vegetate if not removed" -00231445 30 v 01 mushroom 0 001 @ 00230746 v 0000 01 + 01 00 | grow and spread fast; "The problem mushroomed" -00231557 30 v 01 grow 2 012 $ 00245457 v 0000 @ 00252019 v 0000 + 13489037 n 0101 + 13489037 n 0102 ~ 00096136 v 0000 ~ 00096264 v 0000 ~ 00231976 v 0000 ~ 00232101 v 0000 ~ 00232225 v 0000 ~ 00232388 v 0000 ~ 00246125 v 0000 ~ 00357332 v 0000 02 + 01 00 + 04 00 | increase in size by natural process; "Corn doesn't grow here"; "In these forests, mushrooms grow under the trees"; "her hair doesn't grow much anymore" -00231976 30 v 01 undergrow 0 001 @ 00231557 v 0000 01 + 11 00 | grow below something; "The moss undergrew the stone patio" -00232101 30 v 01 exfoliate 0 001 @ 00231557 v 0000 01 + 01 00 | grow by producing or unfolding leaves; "plants exfoliate" -00232225 30 v 01 vegetate 0 003 @ 00231557 v 0000 + 13573057 n 0101 + 02598211 a 0103 01 + 01 00 | grow like a plant; "This fungus usually vegetates vigorously" -00232388 30 v 01 vegetate 1 003 @ 00231557 v 0000 + 13573057 n 0101 + 02598211 a 0103 01 + 01 00 | produce vegetation; "The fields vegetate vigorously" -00232542 30 v 01 vegetate 2 003 @ 00245457 v 0000 + 08436759 n 0101 + 02598211 a 0103 01 + 08 00 | establish vegetation on; "They vegetated the hills behind their house" -00232714 30 v 02 overgrow 1 grow_over 0 001 @ 00230746 v 0000 01 + 11 00 | grow beyond or across; "The ivy overgrew the patio" -00232843 30 v 01 overgrow 2 001 @ 00146138 v 0000 01 + 01 00 | become overgrown; "The patio overgrew with ivy" -00232956 30 v 02 subside 0 lessen 1 002 @ 00223500 v 0000 + 07419960 n 0103 01 + 01 00 | wear off or die down; "The pain subsided" -00233089 30 v 02 pare 0 pare_down 0 001 @ 00441445 v 0000 02 + 08 00 + 11 00 | decrease gradually or bit by bit -00233203 30 v 02 reduce 1 tighten 3 001 @ 00233335 v 0000 02 + 08 00 + 11 00 | narrow or limit; "reduce the influx of foreigners" -00233335 30 v 07 restrict 0 restrain 0 trammel 0 limit 1 bound 0 confine 0 throttle 1 026 @ 02510337 v 0000 + 13903079 n 0503 + 08512259 n 0502 + 03669886 n 0401 + 05124057 n 0401 + 15224293 n 0401 + 05846355 n 0402 + 05162455 n 0401 + 00808182 n 0401 + 04181228 n 0304 + 10525134 n 0201 + 02003725 a 0101 + 01148614 n 0101 + 00808182 n 0102 ~ 00233203 v 0000 ~ 00234217 v 0000 ~ 00234390 v 0000 ~ 00234536 v 0000 ~ 00234725 v 0000 ~ 00234857 v 0000 ~ 00234988 v 0000 ~ 00236289 v 0000 ~ 00418765 v 0000 ~ 00418921 v 0000 ~ 00462689 v 0000 ~ 01301051 v 0000 04 + 08 00 + 11 00 + 20 00 + 21 00 | place limits on (extent or access); "restrict the use of this parking lot"; "limit the time you can spend with your friends" -00234057 30 v 01 develop c 002 @ 00541163 v 0000 ;c 06000644 n 0000 01 + 08 00 | expand in the form of a series; "Develop the function in the following form" -00234217 30 v 01 tie 1 002 @ 00233335 v 0000 + 13930385 n 0103 02 + 20 00 + 21 00 | limit or restrict to; "I am tied to UNIX"; "These big jets are tied to large airports" -00234390 30 v 01 gate 0 001 @ 00233335 v 0000 01 + 09 00 | restrict (school boys') movement to the dormitory or campus as a means of punishment -00234536 30 v 02 draw_the_line 0 draw_a_line 0 001 @ 00233335 v 0000 01 + 02 00 | reasonably object (to) or set a limit (on); "I draw the line when it comes to lending money to friends!" -00234725 30 v 02 mark_off 0 mark_out 0 001 @ 00233335 v 0000 01 + 08 00 | set boundaries to and delimit; "mark out the territory" -00234857 30 v 03 rule 0 harness 0 rein 0 002 @ 00233335 v 0000 + 05197574 n 0301 01 + 11 00 | keep in check; "rule one's temper" -00234988 30 v 02 baffle 0 regulate 1 002 @ 00233335 v 0000 + 02772868 n 0101 01 + 08 00 | check the emission of (sound) -00235110 30 v 02 carry 5 extend 6 004 $ 00317888 v 0000 @ 00118523 v 0000 + 00318735 n 0101 $ 00318326 v 0000 01 + 04 00 | continue or extend; "The civil war carried into the neighboring province"; "The disease extended into the remote mountain provinces" -00235368 30 v 03 limit 0 circumscribe 0 confine 1 014 @ 00441445 v 0000 + 01149480 n 0201 + 05124057 n 0101 + 15224293 n 0101 + 05846355 n 0102 + 05162455 n 0101 + 00808182 n 0101 ~ 00235763 v 0000 ~ 00235918 v 0000 ~ 00236104 v 0000 ~ 00236592 v 0000 ~ 00730301 v 0000 ~ 01194238 v 0000 ~ 02234988 v 0000 02 + 08 00 + 11 00 | restrict or confine, "I limit you to two visits to the pub a day" -00235763 30 v 01 hold_down 0 002 @ 00235368 v 0000 + 00808614 n 0101 01 + 08 00 | restrain; "please hold down the noise so that the neighbors can sleep" -00235918 30 v 02 number 0 keep_down 0 005 @ 00235368 v 0000 + 06807198 n 0102 + 06425065 n 0101 + 13582013 n 0101 + 05121418 n 0101 02 + 08 00 + 11 00 | place a limit on the number of -00236104 30 v 01 cap 0 002 @ 00235368 v 0000 + 06657646 n 0103 02 + 08 00 + 11 00 | restrict the number or amount of; "We had to cap the number of people we can accept into our club" -00236289 30 v 04 hamper 0 halter 0 cramp 0 strangle 0 002 @ 00233335 v 0000 + 04181228 n 0103 02 + 10 00 + 11 00 | prevent the progress or free movement of; "He was hampered in his efforts by the bad weather"; "the imperialist nation wanted to strangle the free trade between the two small countries" -00236592 30 v 04 restrict 2 curtail 0 curb 0 cut_back 0 006 @ 00235368 v 0000 + 01146039 n 0303 + 02003725 a 0101 + 00808182 n 0102 ~ 00236843 v 0000 ~ 00269140 v 0000 03 + 08 00 + 10 00 + 11 00 | place restrictions on; "curtail drinking in school" -00236843 30 v 01 abridge 1 001 @ 00236592 v 0000 02 + 08 00 + 11 00 | lessen, diminish, or curtail; "the new law might abridge our freedom of expression" -00236999 30 v 03 reduce 2 boil_down 0 concentrate 0 005 @ 00441445 v 0000 ;c 00243918 n 0000 + 07413899 n 0301 + 00375071 n 0301 + 07567390 n 0301 01 + 08 00 | cook until very little liquid is left; "The cook reduced the sauce by boiling it for a long time" -00237259 30 v 04 boil_down 1 reduce a decoct 2 concentrate 3 005 @ 00151689 v 0000 ;c 00243918 n 0000 + 07413899 n 0401 + 00375071 n 0401 + 07567390 n 0401 01 + 01 00 | be cooked until very little liquid is left; "The sauce should reduce to one cup" -00237511 30 v 01 concentrate 1 005 @ 00146138 v 0000 + 07413899 n 0101 + 05038593 n 0101 + 00375071 n 0101 + 14837506 n 0102 01 + 08 00 | make denser, stronger, or purer; "concentrate juice" -00237704 30 v 03 reduce b come_down 0 boil_down 3 002 @ 02626604 v 0000 + 00883611 a 0101 01 + 04 00 | be the essential element; "The proposal boils down to a compromise" -00237877 30 v 03 deoxidize 0 deoxidise 0 reduce 3 009 @ 00109660 v 0000 ;c 06084469 n 0000 + 14780267 n 0302 + 14780267 n 0303 + 13547677 n 0302 ! 00238867 v 0101 ~ 00238255 v 0000 ! 00238867 v 0202 ~ 00239973 v 0000 02 + 08 00 + 11 00 | to remove oxygen from a compound, or cause to react with hydrogen or form a hydride, or to undergo an increase in the number of electrons -00238255 30 v 01 benficiate 0 001 @ 00237877 v 0000 01 + 08 00 | subject to a reduction process; "benficiate ores" -00238372 30 v 01 crack 8 003 @ 00109660 v 0000 ;c 06084469 n 0000 + 13453861 n 0101 01 + 01 00 | break into simpler molecules by means of heat; "The petroleum cracked" -00238542 30 v 01 crack 7 004 > 00238372 v 0000 @ 00209174 v 0000 ;c 06084469 n 0000 + 13453861 n 0101 02 + 08 00 + 11 00 | reduce (petroleum) to a simpler compound by cracking -00238720 30 v 02 catabolize 0 catabolise 0 003 @ 00238867 v 0000 ;c 06084469 n 0000 + 13443787 n 0101 02 + 08 00 + 11 00 | subject to catabolism -00238867 30 v 03 oxidize 0 oxidise 0 oxidate 0 019 @ 00126264 v 0000 @ 00109660 v 0000 ;c 06084469 n 0000 + 00068883 a 0301 + 13530408 n 0301 + 13530408 n 0203 + 14780040 n 0203 + 14780040 n 0201 + 14971519 n 0201 ! 00237877 v 0202 + 13530408 n 0102 + 14780040 n 0102 + 14780040 n 0101 + 14971519 n 0101 ! 00237877 v 0101 ~ 00238720 v 0000 $ 00239321 v 0000 $ 00239614 v 0000 ~ 00239754 v 0000 02 + 08 00 + 11 00 | add oxygen to or combine with oxygen -00239321 30 v 03 oxidise 1 oxidize 1 oxidate 1 007 $ 00238867 v 0000 @ 00109660 v 0000 + 00068883 a 0301 + 13530408 n 0301 + 13530408 n 0202 + 13530408 n 0103 ~ 00239614 v 0000 01 + 01 00 | enter into a combination with oxygen or become converted into an oxide; "This metal oxidizes easily" -00239614 30 v 01 rust 2 004 $ 00238867 v 0000 @ 00239321 v 0000 + 13552270 n 0101 + 14889479 n 0101 01 + 01 00 | become coated with oxide -00239754 30 v 01 breathe 3 001 @ 00238867 v 0000 01 + 01 00 | reach full flavor by absorbing air and being let to stand after having been uncorked; "This rare Bordeaux must be allowed to breathe for at least 2 hours" -00239973 30 v 01 pole 0 003 @ 00237877 v 0000 ;c 06125698 n 0000 + 03976657 n 0101 01 + 08 00 | deoxidize molten metals by stirring them with a wooden pole -00240131 30 v 02 reduce 4 scale_down 1 004 @ 00241038 v 0000 + 00883611 a 0101 + 00351638 n 0103 ! 00240293 v 0101 01 + 08 00 | make smaller; "reduce an image" -00240293 30 v 03 blow_up 0 enlarge 1 magnify 1 010 @ 00153263 v 0000 ;c 00903559 n 0000 + 05090441 n 0301 + 13822995 n 0301 + 03289462 n 0303 + 03709206 n 0301 + 03289462 n 0201 + 03289660 n 0201 + 03289462 n 0102 ! 00240131 v 0101 01 + 08 00 | make large; "blow up an image" -00240571 30 v 02 shrink 0 contract 4 006 @ 00151689 v 0000 + 00365471 n 0201 ! 02077148 v 0201 + 07313004 n 0102 ! 00240810 v 0101 ~ 02036977 v 0000 01 + 01 00 | become smaller or draw together; "The fabric shrank"; "The balloon shrank" -00240810 30 v 01 stretch 0 005 @ 00230746 v 0000 + 00371059 n 0101 + 05021345 n 0101 ! 00240571 v 0101 ~ 01449796 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | become longer by being stretched and pulled; "The fabric stretches" -00241038 30 v 02 shrink 1 reduce 5 011 > 00240571 v 0000 @ 00441445 v 0000 + 00351638 n 0203 + 07313004 n 0102 + 07313004 n 0101 ~ 00240131 v 0000 ~ 00241399 v 0000 ~ 00241496 v 0000 ~ 00531302 v 0000 ~ 00586816 v 0000 ~ 01279474 v 0000 02 + 08 00 + 11 00 | reduce in size; reduce physically; "Hot water will shrink the sweater"; "Can you shrink this image?" -00241399 30 v 01 reef 1 001 @ 00241038 v 0000 01 + 02 00 | reduce (a sail) by taking in a reef -00241496 30 v 02 miniaturize 0 miniaturise 0 005 @ 00241038 v 0000 + 00360601 n 0202 + 03769235 n 0201 + 00360601 n 0101 + 03769235 n 0101 01 + 08 00 | design or construct on a smaller scale -00241689 30 v 04 shrivel 0 shrivel_up 0 shrink 2 wither 0 005 @ 00151689 v 0000 ~ 00093979 v 0000 ~ 00241924 v 0000 ~ 00242026 v 0000 ~ 00242205 v 0000 01 + 01 00 | wither, as with a loss of moisture; "The fruit dried and shriveled" -00241924 30 v 01 blast 3 001 @ 00241689 v 0000 01 + 01 00 | shrivel or wither or mature imperfectly -00242026 30 v 02 die_back 0 die_down 0 002 @ 00241689 v 0000 + 14280298 n 0101 01 + 01 00 | suffer from a disease that kills shoots; "The plants near the garage are dying back" -00242205 30 v 02 mummify 0 dry_up 3 003 @ 00241689 v 0000 + 05218630 n 0101 $ 02227127 v 0000 01 + 01 00 | dry up and shrivel due to complete loss of moisture; "a mummified body was found" -00242396 30 v 01 reduce 6 004 @ 00400427 v 0000 + 00883611 a 0101 + 00192300 n 0101 ~ 00243749 v 0000 02 + 08 00 + 11 00 | make less complex; "reduce a problem to a single question" -00242580 30 v 01 consolidate 0 004 @ 00367685 v 0000 + 01331540 a 0101 + 00334940 a 0101 + 01237415 n 0101 01 + 01 00 | unite into one; "The companies consolidated" -00242747 30 v 01 consolidate 1 004 @ 00243124 v 0000 + 01331540 a 0101 + 00334940 a 0101 + 01237415 n 0101 02 + 08 00 + 11 00 | bring together into a single whole or system; "The town and county schools are being consolidated" -00242976 30 v 01 weld 0 001 @ 00243124 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | unite closely or intimately; "Her gratitude welded her to him" -00243124 30 v 03 unite 2 unify 1 merge 2 008 @ 00126264 v 0000 + 07373602 n 0302 + 01238424 n 0302 + 07373602 n 0203 + 01238424 n 0103 ~ 00242747 v 0000 ~ 00242976 v 0000 ~ 00243379 v 0000 02 + 08 00 + 11 00 | join or combine; "We merged our resources" -00243379 30 v 01 consubstantiate 1 003 @ 00243124 v 0000 + 06188292 n 0101 $ 00243572 v 0000 02 + 08 00 + 11 00 | unite in one common substance; "Thought is consubstantiated with the object" -00243572 30 v 01 consubstantiate 0 003 $ 00243379 v 0000 @ 00367685 v 0000 + 06188292 n 0101 01 + 01 00 | become united in substance; "thought and the object consubstantiate" -00243749 30 v 01 abbreviate 0 003 @ 00242396 v 0000 + 07091587 n 0101 + 09754907 n 0102 01 + 08 00 | shorten; "Abbreviate `New York' and write `NY'" -00243900 30 v 07 abridge 0 foreshorten 0 abbreviate 1 shorten 2 cut 8 contract 5 reduce 8 010 @ 00441445 v 0000 + 00365471 n 0601 ! 00955601 v 0607 + 09433952 n 0401 + 09754907 n 0302 + 06468123 n 0102 + 09754907 n 0101 ~ 00201034 v 0000 $ 00201722 v 0000 ~ 00244625 v 0000 02 + 08 00 + 11 00 | reduce in scope while retaining essential elements; "The manuscript must be shortened" -00244284 30 v 01 foreshorten 1 001 @ 00316768 v 0000 01 + 08 00 | shorten lines in a drawing so as to create an illusion of depth -00244416 30 v 04 encapsulate 0 capsule 0 capsulize 0 capsulise 0 003 @ 00244625 v 0000 + 06468123 n 0404 + 06468123 n 0304 01 + 21 00 | put in a short or concise form; reduce in volume; "capsulize the news" -00244625 30 v 03 digest 0 condense 0 concentrate 7 008 @ 00243900 v 0000 + 00375071 n 0301 + 03087366 n 0201 + 06468123 n 0201 + 06593099 n 0102 + 06593542 n 0101 ~ 00244416 v 0000 ~ 00244923 v 0000 03 + 01 00 + 08 00 + 11 00 | make more concise; "condense the contents of a book into a summary" -00244923 30 v 01 telescope 3 001 @ 00244625 v 0000 01 + 08 00 | make smaller or shorter; "the novel was telescoped into a short play" -00245059 30 v 05 abate 0 let_up 0 slack_off 1 slack 7 die_away 0 003 @ 00151689 v 0000 + 15274441 n 0201 + 07368256 n 0105 01 + 01 00 | become less in amount or intensity; "The storm abated"; "The rain let up after a few hours" -00245289 30 v 03 slake 0 abate 1 slack 4 004 @ 00441445 v 0000 + 13556509 n 0302 + 02288022 a 0201 + 09754051 n 0201 02 + 08 00 + 11 00 | make less active or intense -00245457 30 v 01 grow 1 012 > 00231557 v 0000 @ 00253761 v 0000 + 13489037 n 0101 + 09779790 n 0104 + 13489037 n 0102 $ 00231557 v 0000 ~ 00232542 v 0000 ~ 00245780 v 0000 ~ 00245913 v 0000 ~ 00257650 v 0000 ~ 00357667 v 0000 ~ 00358314 v 0000 01 + 08 00 | cause to grow or develop; "He grows vegetables in his backyard" -00245780 30 v 01 culture 0 001 @ 00245457 v 0000 01 + 08 00 | grow in a special preparation; "the biologist grows microorganisms" -00245913 30 v 01 rotate 4 003 $ 02393894 v 0000 @ 00245457 v 0000 + 05045381 n 0101 01 + 08 00 | plant or grow in a fixed cyclic order of succession; "We rotate the crops so as to maximize the use of the soil" -00246125 30 v 01 twin 0 001 @ 00231557 v 0000 01 + 01 00 | grow as twins; "twin crystals" -00246217 30 v 02 double 0 duplicate 0 007 @ 00247390 v 0000 + 05860200 n 0101 + 13469526 n 0101 + 00803394 n 0101 ^ 01139623 v 0102 ~ 00246475 v 0000 ~ 00246588 v 0000 03 + 01 00 + 08 00 + 11 00 | increase twofold; "The population doubled within 50 years" -00246475 30 v 01 redouble 2 001 @ 00246217 v 0000 01 + 01 00 | double again; "The noise doubled and redoubled" -00246588 30 v 01 geminate 0 002 @ 00246217 v 0000 + 07100253 n 0101 01 + 08 00 | arrange or combine in pairs; "The consonants are geminated in these words" -00246746 30 v 02 triple 0 treble 0 004 @ 00247390 v 0000 + 05860377 n 0101 + 04484780 n 0101 + 13570472 n 0101 03 + 01 00 + 08 00 + 11 00 | increase threefold; "Triple your income!" -00246930 30 v 01 pullulate 1 002 @ 00156601 v 0000 + 13543968 n 0101 01 + 01 00 | become abundant; increase rapidly -00247048 30 v 01 quadruple 0 004 @ 00247390 v 0000 + 04031166 n 0101 + 13544433 n 0101 + 05860498 n 0101 03 + 01 00 + 08 00 + 11 00 | increase fourfold; "His stock earning quadrupled" -00247234 30 v 01 quintuple 0 002 @ 00247390 v 0000 + 13544930 n 0101 03 + 01 00 + 08 00 + 11 00 | increase fivefold; "The population of China quintupled" -00247390 30 v 02 multiply 0 manifold 1 009 @ 00153263 v 0000 + 02536123 a 0101 + 13517843 n 0101 + 00871576 n 0101 ~ 00246217 v 0000 ~ 00246746 v 0000 ~ 00247048 v 0000 ~ 00247234 v 0000 ~ 00247830 v 0000 03 + 01 00 + 08 00 + 11 00 | combine or increase by multiplication; "He managed to multiply his profits" -00247702 30 v 01 manifold 0 002 @ 01693881 v 0000 + 14946750 n 0102 01 + 08 00 | make multiple copies of; "multiply a letter" -00247830 30 v 01 proliferate 1 004 $ 00310635 v 0000 @ 00247390 v 0000 + 13542114 n 0101 + 13541975 n 0101 01 + 01 00 | cause to grow or increase rapidly; "We must not proliferate nuclear arms" -00248026 30 v 05 senesce 0 age 0 get_on 3 mature 1 maturate 1 009 @ 00252019 v 0000 + 13489037 n 0503 + 13489037 n 0403 + 15145171 n 0201 + 15153787 n 0203 + 01644709 a 0103 ~ 00248387 v 0000 ~ 00249556 v 0000 ~ 02697610 v 0000 02 + 01 00 + 02 00 | grow old or older; "She aged gracefully"; "we age every day--what a depressing thought!"; "Young men senesce" -00248387 30 v 01 turn e 001 @ 00248026 v 0000 01 + 02 00 | become officially one year older; "She is turning 50 this year" -00248512 30 v 01 age 1 001 @ 00252019 v 0000 02 + 01 00 + 02 00 | begin to seem older; get older; "The death of his wife caused him to age fast" -00248659 30 v 07 progress 0 come_on 2 come_along 1 advance 0 get_on 0 get_along 0 shape_up 0 007 @ 00252019 v 0000 + 07357388 n 0403 + 00282050 n 0404 + 00249501 n 0102 ! 00249313 v 0101 ~ 00249017 v 0000 ~ 00249188 v 0000 02 + 01 00 + 02 00 | develop in a positive way; "He progressed well in school"; "My plants are coming along"; "Plans are shaping up" -00249017 30 v 01 climb 3 002 @ 00248659 v 0000 + 10618685 n 0102 02 + 02 00 + 08 00 | improve one's social status; "This young man knows how to climb the social ladder" -00249188 30 v 01 leapfrog 0 001 @ 00248659 v 0000 02 + 01 00 + 02 00 | progress by large jumps instead of small increments -00249313 30 v 03 regress 0 retrograde 0 retrogress 0 006 @ 00203866 v 0000 + 01877299 a 0302 + 00235208 n 0304 + 01876957 a 0101 ! 00248659 v 0101 ~ 01113806 v 0000 03 + 01 00 + 02 00 + 22 00 | get worse or fall back to a previous condition -00249556 30 v 02 fossilize 2 fossilise 2 002 @ 00248026 v 0000 + 00201269 n 0202 01 + 02 00 | become mentally inflexible -00249679 30 v 01 age 2 004 > 00248026 v 0000 @ 00126264 v 0000 + 15153787 n 0103 ! 00250877 v 0101 01 + 10 00 | make older; "The death of his child aged him tremendously" -00249852 30 v 01 ripen 0 002 @ 00250181 v 0000 + 13512238 n 0102 01 + 01 00 | grow ripe; "The plums ripen in July" -00249969 30 v 02 ripen 1 mature 4 004 > 00249852 v 0000 @ 00126264 v 0000 + 13512238 n 0203 + 13512238 n 0102 01 + 11 00 | cause to ripen or develop fully; "The sun ripens the fruit"; "Age matures a good wine" -00250181 30 v 03 mature 0 maturate 0 grow 4 011 * 00248026 v 0000 @ 00252019 v 0000 + 13490343 n 0301 + 13489037 n 0301 + 13489037 n 0302 + 13512238 n 0201 + 13512238 n 0103 + 13512238 n 0101 ~ 00249852 v 0000 ~ 00250691 v 0000 ~ 02540347 v 0000 02 + 01 00 + 02 00 | develop and reach maturity; undergo maturation; "He matured fast"; "The child grew fast" -00250539 30 v 01 grow e 001 @ 00109660 v 0000 01 + 02 00 | become attached by or as if by the process of growth; "The tree trunks had grown together" -00250691 30 v 02 find_oneself 0 find d 001 @ 00250181 v 0000 01 + 02 00 | accept and make use of one's personality, abilities, and situation; "My son went to Berkeley to find himself" -00250877 30 v 01 rejuvenate 0 003 @ 00097621 v 0000 + 00401639 n 0101 ! 00249679 v 0101 01 + 10 00 | make younger or more youthful; "The contact with his grandchildren rejuvenated him" -00251064 30 v 01 evolve 0 005 @ 00252019 v 0000 + 13464820 n 0102 + 13477023 n 0101 ~ 00119266 v 0000 ~ 00251791 v 0000 01 + 01 00 | undergo development or evolution; "Modern man evolved a long time ago" -00251270 30 v 02 work_out 0 work_up 3 002 $ 00251463 v 0000 @ 00253761 v 0000 01 + 08 00 | come up with; "His colleagues worked out his interesting idea"; "We worked up an ad for our client" -00251463 30 v 02 elaborate 1 work_out 1 003 @ 00253761 v 0000 + 00250710 n 0101 $ 00251270 v 0000 01 + 08 00 | work out in detail; "elaborate a plan" -00251615 30 v 02 derive 0 educe 0 004 @ 01617192 v 0000 + 00698586 a 0101 + 08508105 n 0101 ~ 01070455 v 0000 01 + 08 00 | develop or evolve from a latent or potential state -00251791 30 v 01 derive 1 007 $ 02737187 v 0000 @ 00251064 v 0000 + 00698586 a 0101 + 13462387 n 0101 + 08508105 n 0101 + 06744154 n 0102 + 06744154 n 0101 01 + 11 00 | come from; "The present name derives from an older form" -00252019 30 v 01 develop 0 018 @ 00230746 v 0000 + 13489037 n 0104 ~ 00119524 v 0000 ~ 00119725 v 0000 ~ 00231557 v 0000 ~ 00248026 v 0000 ~ 00248512 v 0000 ~ 00248659 v 0000 ~ 00250181 v 0000 ~ 00251064 v 0000 ~ 00252710 v 0000 ~ 00252990 v 0000 ~ 00254150 v 0000 ~ 00293760 v 0000 ~ 00294245 v 0000 ~ 00294718 v 0000 $ 00342980 v 0000 ~ 00357998 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | grow, progress, unfold, or evolve through a process of evolution, natural growth, differentiation, or a conducive environment; "A flower developed on the branch"; "The country developed into a mighty superpower"; "The embryo develops into a fetus"; "This situation has developed over a long time" -00252710 30 v 01 adolesce 0 007 @ 00252019 v 0000 + 01647983 a 0101 + 01490061 a 0101 + 02602261 a 0101 + 09772029 n 0101 + 15147850 n 0101 + 14426910 n 0101 01 + 02 00 | become adolescent; pass through adolescence; "The children are beginning to adolesce around the age of 12" -00252990 30 v 04 build_up 0 work_up 0 build 0 progress 1 004 $ 00226882 v 0000 @ 00252019 v 0000 + 00249501 n 0402 $ 00253277 v 0000 01 + 01 00 | form or accumulate steadily; "Resistance to the manager's plan built up quickly"; "Pressure is building up at the Indian-Pakistani border" -00253277 30 v 04 build_up 6 work_up 6 build 5 ramp_up 0 002 $ 00252990 v 0000 @ 00153263 v 0000 02 + 08 00 + 11 00 | bolster or strengthen; "We worked up courage"; "build up confidence"; "ramp up security in the airports" -00253501 30 v 02 antique 0 antiquate 0 003 @ 00126264 v 0000 + 02723754 n 0201 + 02723754 n 0101 01 + 08 00 | give an antique appearance to; "antique furniture" -00253664 30 v 01 antiquate 1 001 @ 00126264 v 0000 01 + 08 00 | make obsolete or old-fashioned -00253761 30 v 02 develop 1 make_grow 0 009 > 00252019 v 0000 > 00230746 v 0000 @ 00126264 v 0000 $ 00171852 v 0000 ~ 00245457 v 0000 ~ 00251270 v 0000 ~ 00251463 v 0000 ~ 00282790 v 0000 ~ 02553697 v 0000 02 + 08 00 + 11 00 | cause to grow and differentiate in ways conforming to its natural development; "The perfect climate here develops the grain"; "He developed a new kind of apple" -00254150 30 v 01 incubate 2 003 @ 00252019 v 0000 + 15287578 n 0101 + 00658796 n 0101 01 + 01 00 | grow under conditions that promote development -00254298 30 v 01 mellow 0 002 @ 00254867 v 0000 + 13513222 n 0101 02 + 01 00 + 11 00 | make or grow (more) mellow; "These apples need to mellow a bit more"; "The sun mellowed the fruit" -00254486 30 v 03 mellow 3 melt 4 mellow_out 0 003 $ 00254672 v 0000 @ 00109660 v 0000 + 13513222 n 0101 01 + 01 00 | become more relaxed, easygoing, or genial; "With age, he mellowed" -00254672 30 v 01 mellow 1 004 > 00254298 v 0000 @ 00255389 v 0000 + 13513222 n 0101 $ 00254486 v 0000 02 + 10 00 + 11 00 | soften, make mellow; "Age and experience mellowed him over the years" -00254867 30 v 01 soften 0 005 @ 00109660 v 0000 + 13557766 n 0101 ! 00443116 v 0101 ~ 00254298 v 0000 ~ 00398741 v 0000 01 + 01 00 | become soft or softer; "The bread will soften if you pour some liquid on it" -00255079 30 v 02 encrust 0 incrust 0 006 @ 00443116 v 0000 + 13497650 n 0201 + 09260218 n 0202 + 13497650 n 0102 + 09260218 n 0103 ~ 00255272 v 0000 01 + 01 00 | form a crust or a hard layer -00255272 30 v 01 effloresce 2 001 @ 00255079 v 0000 01 + 01 00 | become encrusted with crystals due to evaporation -00255389 30 v 01 soften 1 008 > 00254867 v 0000 @ 00126264 v 0000 + 15055936 n 0101 + 13557766 n 0101 ! 00443384 v 0101 ~ 00254672 v 0000 ~ 00256027 v 0000 ~ 00398484 v 0000 03 + 08 00 + 10 00 + 11 00 | make soft or softer; "This liquid will soften your laundry" -00255654 30 v 01 face-harden 0 001 @ 00443384 v 0000 01 + 08 00 | harden steel by adding carbon -00255752 30 v 01 callus 0 002 @ 00443116 v 0000 + 14364566 n 0102 01 + 01 00 | form a callus or calluses; "His foot callused" -00255880 30 v 01 callus 1 002 @ 00443384 v 0000 + 14364566 n 0102 01 + 11 00 | cause a callus to form on; "The long march had callused his feet" -00256027 30 v 01 mollify 0 001 @ 00255389 v 0000 01 + 08 00 | make less rigid or softer -00256117 30 v 03 balloon 0 inflate 2 billow 0 003 @ 00257269 v 0000 + 00367280 n 0201 ~ 00256283 v 0000 02 + 01 00 + 04 00 | become inflated; "The sails ballooned" -00256283 30 v 01 reflate 0 001 @ 00256117 v 0000 01 + 01 00 | become inflated again -00256369 30 v 02 bulge 1 bulk 0 003 > 00263231 v 0000 @ 00257650 v 0000 + 13894434 n 0101 01 + 11 00 | cause to bulge or swell outwards -00256507 30 v 05 swell 0 swell_up 0 intumesce 0 tumefy 0 tumesce 0 011 @ 00257269 v 0000 + 01174565 a 0503 + 13570574 n 0401 + 14317720 n 0302 + 14317720 n 0301 + 14315192 n 0101 ~ 00256862 v 0000 ~ 00257535 v 0000 ~ 00263682 v 0000 ~ 00361797 v 0000 ~ 00379774 v 0000 01 + 01 00 | expand abnormally; "The bellies of the starving children are swelling" -00256862 30 v 01 distend 1 005 @ 00256507 v 0000 + 14063633 n 0102 + 00366317 n 0102 + 00366317 n 0101 $ 00257087 v 0000 01 + 01 00 | swell from or as if from internal pressure; "The distended bellies of the starving cows" -00257087 30 v 01 distend 3 003 $ 00256862 v 0000 @ 00361952 v 0000 + 00366317 n 0101 01 + 11 00 | cause to expand as it by internal pressure; "The gas distended the animal's body" -00257269 30 v 01 expand 7 008 @ 00230746 v 0000 + 00947264 a 0103 + 00844263 a 0103 + 00947264 a 0102 + 00844263 a 0102 + 00946499 a 0101 ~ 00256117 v 0000 ~ 00256507 v 0000 01 + 01 00 | become larger in size or volume or quantity; "his business expanded rapidly" -00257535 30 v 02 belly 0 belly_out 0 002 @ 00256507 v 0000 + 05555917 n 0101 01 + 01 00 | swell out or bulge out -00257650 30 v 01 swell 1 005 > 00256507 v 0000 @ 00245457 v 0000 ~ 00256369 v 0000 ~ 00257837 v 0000 ~ 00361952 v 0000 01 + 11 00 | cause to become swollen; "The water swells the wood" -00257837 30 v 01 tumefy 1 002 @ 00257650 v 0000 + 13570574 n 0101 01 + 11 00 | cause to become very swollen -00257947 30 v 02 bilge 0 take_in_water 0 003 @ 00258109 v 0000 + 15059797 n 0101 + 02838014 n 0101 01 + 01 00 | take in water at the bilge; "the tanker bilged" -00258109 30 v 01 leak 0 005 * 01369346 v 0000 + 09337048 n 0101 + 07436661 n 0102 + 07436661 n 0103 ~ 00257947 v 0000 01 + 01 00 | have an opening that allows light or substances to enter or go out; "The container leaked gasoline"; "the roof leaks badly" -00258366 30 v 01 break 7 001 @ 00146138 v 0000 01 + 01 00 | crack; of the male voice in puberty; "his voice is breaking--he should no longer sing in the choir" -00258528 30 v 01 bilge 1 002 > 00257947 v 0000 @ 00258857 v 0000 02 + 08 00 + 11 00 | cause to leak; "the collision bilged the vessel" -00258665 30 v 01 break 6 003 @ 00258857 v 0000 + 00376400 n 0101 $ 00434374 v 0000 02 + 08 00 + 11 00 | render inoperable or ineffective; "You broke the alarm clock when you took it apart!" -00258857 30 v 01 damage 0 021 @ 00126264 v 0000 + 07420770 n 0101 + 00403092 n 0101 ~ 00196364 v 0000 ~ 00196595 v 0000 ~ 00258528 v 0000 ~ 00258665 v 0000 ~ 00259382 v 0000 ~ 00259560 v 0000 ~ 00259755 v 0000 ~ 00259927 v 0000 ~ 00260470 v 0000 ~ 00262881 v 0000 ~ 00263044 v 0000 ~ 00274283 v 0000 ~ 00274724 v 0000 ~ 00292672 v 0000 ~ 00334050 v 0000 ~ 00477941 v 0000 ~ 01552390 v 0000 ~ 01566705 v 0000 02 + 08 00 + 11 00 | inflict damage upon; "The snow damaged the roof"; "She damaged the car when she hit the tree" -00259382 30 v 01 total 0 001 @ 00258857 v 0000 01 + 08 00 | damage beyond the point of repair; "My son totaled our new car"; "the rock star totals his guitar at every concert" -00259560 30 v 01 bruise 0 002 @ 00258857 v 0000 ;c 00017222 n 0000 02 + 08 00 + 11 00 | damage (plant tissue) by abrasion or pressure; "The customer bruised the strawberries by squeezing them" -00259755 30 v 01 disturb 4 001 @ 00258857 v 0000 02 + 08 00 + 11 00 | damage as if by shaking or jarring; "Don't disturb the patient's wounds by moving him too rapidly!" -00259927 30 v 02 afflict 0 smite 0 005 @ 00258857 v 0000 + 01804175 a 0101 + 14477342 n 0101 ~ 00260142 v 0000 ~ 02771320 v 0000 02 + 08 00 + 11 00 | cause physical pain or suffering in; "afflict with the plague" -00260142 30 v 01 visit 0 002 @ 00259927 v 0000 + 07316724 n 0101 03 + 08 00 + 10 00 + 11 00 | assail; "He was visited with a terrible illness that killed him quickly" -00260311 30 v 01 devastate 1 002 @ 01809321 v 0000 + 07509827 n 0101 01 + 10 00 | overwhelm or overpower; "He was devastated by his grief when his son died" -00260470 30 v 02 hurt 4 injure 4 002 @ 00258857 v 0000 + 07420538 n 0102 02 + 08 00 + 11 00 | cause damage or affect negatively; "Our business was hurt by the new competition" -00260648 30 v 08 repair 0 mend 0 fix 1 bushel 0 doctor 1 furbish_up 0 restore 1 touch_on 0 024 @ 00205885 v 0000 + 04083468 n 0701 + 00266806 n 0302 + 00266806 n 0304 + 10308732 n 0303 + 00266806 n 0303 + 00266806 n 0205 + 10308732 n 0201 + 00266806 n 0206 + 00266806 n 0101 + 00266806 n 0107 + 10308732 n 0102 ! 01369758 v 0101 ~ 00261314 v 0000 ~ 00261533 v 0000 ~ 00261705 v 0000 ~ 00261845 v 0000 ~ 00261957 v 0000 ~ 00262549 v 0000 ~ 00262703 v 0000 ~ 00533403 v 0000 ~ 00533527 v 0000 ~ 00533671 v 0000 ~ 01330676 v 0000 01 + 08 00 | restore by replacing a part or putting together what is torn or broken; "She repaired her TV set"; "Repair my shoes please" -00261314 30 v 02 tinker 0 fiddle 0 002 @ 00260648 v 0000 + 10712229 n 0202 01 + 22 00 | try to fix or mend; "Can you tinker with the T.V. set--it's not working right"; "She always fiddles with her van on the weekend" -00261533 30 v 01 fill 2 005 @ 00260648 v 0000 + 14868243 n 0102 + 14706026 n 0101 + 03338287 n 0101 ~ 01423285 v 0000 01 + 08 00 | plug with a substance; "fill a cavity" -00261705 30 v 02 piece 0 patch 1 002 @ 00260648 v 0000 + 03932203 n 0101 01 + 08 00 | repair by adding pieces; "She pieced the china cup" -00261845 30 v 01 cobble 0 002 @ 00260648 v 0000 + 00617865 n 0103 01 + 08 00 | repair or mend; "cobble shoes" -00261957 30 v 02 point 9 repoint 0 001 @ 00260648 v 0000 01 + 08 00 | repair the joints of bricks; "point a chimney" -00262076 30 v 03 overhaul 0 modernize 0 modernise 0 004 @ 01631072 v 0000 * 00260648 v 0000 + 00268112 n 0101 ~ 00262348 v 0000 01 + 08 00 | make repairs, renovations, revisions or adjustments to; "You should overhaul your car engine"; "overhaul the health care system" -00262348 30 v 01 retrofit 0 002 $ 01569896 v 0000 @ 00262076 v 0000 01 + 02 00 | substitute new or modernized parts or equipment for older ones; "The laboratory retrofitted to meet the safety codes" -00262549 30 v 02 trouble-shoot 0 troubleshoot 0 001 @ 00260648 v 0000 02 + 02 00 + 08 00 | solve problems; "He is known to be good at trouble-shooting" -00262703 30 v 02 patch 0 patch_up 0 004 @ 00260648 v 0000 + 03745285 n 0102 + 00267349 n 0101 ^ 00764902 v 0102 02 + 08 00 + 31 00 | mend by putting a patch on; "patch a hole" -00262881 30 v 01 impair 0 003 @ 00258857 v 0000 + 07420770 n 0103 + 09310460 n 0101 02 + 08 00 + 11 00 | make worse or less effective; "His vision was impaired" -00263044 30 v 02 flaw 0 blemish 0 004 @ 00258857 v 0000 + 04692157 n 0201 + 14463826 n 0101 + 14464203 n 0103 02 + 08 00 + 11 00 | add a flaw or blemish to; make imperfect or defective -00263231 30 v 03 bulge 0 pouch 0 protrude 0 006 @ 00140967 v 0000 + 00944848 a 0302 + 01353226 a 0301 + 13894434 n 030a + 13894434 n 0101 ~ 00263564 v 0000 01 + 01 00 | swell or protrude outwards; "His stomach bulged after the huge meal" -00263471 30 v 01 dish 0 001 @ 00142191 v 0000 01 + 08 00 | make concave; shape like a dish -00263564 30 v 01 bulk 1 001 @ 00263231 v 0000 02 + 01 00 + 04 00 | stick out or up; "The parcel bulked in the sack" -00263682 30 v 04 puff 0 puff_up 1 blow_up 2 puff_out 0 002 @ 00256507 v 0000 + 02655020 n 0101 04 + 01 00 + 02 00 + 08 00 + 11 00 | to swell or cause to enlarge, "Her faced puffed up from the drugs"; "puffed out chests" -00263904 30 v 01 amplify 1 002 @ 00227165 v 0000 + 02705944 n 0101 02 + 08 00 + 11 00 | increase the volume of; "amplify sound" -00264034 30 v 02 inflate 0 blow_up 4 008 @ 00541163 v 0000 + 00947520 a 0101 + 00367280 n 0101 + 03569494 n 0101 + 03569494 n 0102 ! 00264705 v 0101 ~ 00264285 v 0000 ~ 02041206 v 0000 02 + 08 00 + 11 00 | fill with gas or air; "inflate a balloons" -00264285 30 v 01 reflate 1 001 @ 00264034 v 0000 01 + 08 00 | inflate again; "reflate the balloon" -00264386 30 v 04 inflate 1 blow_up 1 expand 2 amplify 2 003 @ 00153263 v 0000 + 00946499 a 0301 ~ 00264578 v 0000 02 + 08 00 + 11 00 | exaggerate or make bigger; "The charges were inflated" -00264578 30 v 01 puff_up 0 001 @ 00264386 v 0000 02 + 08 00 + 11 00 | make larger or distend; "The estimates were puffed up" -00264705 30 v 01 deflate 0 003 @ 00151689 v 0000 + 00361932 n 0101 ! 00264034 v 0101 01 + 01 00 | become deflated or flaccid, as by losing air; "The balloons deflated" -00264875 30 v 02 acidify 0 acetify 0 006 @ 00146138 v 0000 ;c 06084469 n 0000 + 14599641 n 0201 + 13426238 n 0101 + 14607521 n 0101 ! 00265094 v 0101 03 + 01 00 + 08 00 + 11 00 | turn acidic; "the solution acetified" -00265094 30 v 04 alkalize 0 alkalise 0 alkalify 0 basify 0 008 @ 00146138 v 0000 ;c 06084469 n 0000 + 14618253 n 0401 + 14712036 n 0301 + 14618253 n 0302 + 14778019 n 0103 + 14618253 n 0102 ! 00264875 v 0101 03 + 01 00 + 08 00 + 11 00 | turn basic and less acidic; "the solution alkalized" -00265386 30 v 01 reform 0 008 @ 00205885 v 0000 + 01197386 a 0101 + 00800940 n 0101 + 00260622 n 0101 + 10515194 n 0102 + 00095971 n 0102 + 10515194 n 0101 $ 00265673 v 0000 01 + 08 00 | make changes for improvement in order to remove abuse and injustices; "reform a political system" -00265673 30 v 01 reform 8 005 $ 00265386 v 0000 @ 00205885 v 0000 + 00260622 n 0101 + 10515194 n 0102 + 14424087 n 0101 01 + 08 00 | improve by alteration or correction of errors or defects and put into a better condition; "reform the health system in this country" -00265941 30 v 01 reform 1 003 @ 00140123 v 0000 ;c 06084469 n 0000 + 04070003 n 0101 01 + 08 00 | break up the molecules of; "reform oil" -00266081 30 v 01 reform 2 002 @ 01653013 v 0000 ;c 06084469 n 0000 01 + 08 00 | produce by cracking; "reform gas" -00266197 30 v 02 polymerize 0 polymerise 0 006 @ 00140123 v 0000 ;c 06084469 n 0000 + 13538757 n 0202 + 13538757 n 0101 + 14994328 n 0101 ~ 00266391 v 0000 01 + 01 00 | undergo polymerization -00266391 30 v 02 copolymerize 0 copolymerise 0 004 @ 00266197 v 0000 ;c 06084469 n 0000 + 14902949 n 0201 + 14902949 n 0101 01 + 01 00 | polymerize together; "the two substances copolymerized" -00266586 30 v 02 polymerize 2 polymerise 2 006 > 00266197 v 0000 @ 00140123 v 0000 ;c 06084469 n 0000 + 13538757 n 0202 + 13538757 n 0101 + 14994328 n 0101 02 + 08 00 + 11 00 | cause (a compound) to polymerize -00266798 30 v 02 ionize 0 ionise 0 009 @ 00146138 v 0000 ;c 06089447 n 0000 + 14577469 n 0202 + 13502909 n 0202 + 09315159 n 0201 + 14577469 n 0101 + 13502909 n 0101 + 09315159 n 0101 $ 00267041 v 0000 02 + 08 00 + 11 00 | convert into ions -00267041 30 v 02 ionize 1 ionise 1 007 $ 00266798 v 0000 @ 00109660 v 0000 ;c 06089447 n 0000 + 14577469 n 0202 + 13502909 n 0202 + 14577469 n 0101 + 13502909 n 0101 01 + 01 00 | become converted into ions -00267249 30 v 01 ossify 0 002 @ 00146138 v 0000 + 13529015 n 0101 01 + 01 00 | become bony; "The tissue ossified" -00267365 30 v 01 ossify 1 002 @ 00126264 v 0000 + 13529015 n 0101 02 + 08 00 + 11 00 | cause to become hard and bony; "The disease ossified the tissue" -00267519 30 v 02 catalyze 0 catalyse 0 003 @ 00146138 v 0000 ;c 06084469 n 0000 + 14723628 n 0101 02 + 08 00 + 11 00 | change by catalysis or cause to catalyze -00267681 30 v 03 dwindle 0 dwindle_away 0 dwindle_down 0 002 @ 00151689 v 0000 + 07422800 n 0101 01 + 01 00 | become smaller or lose substance; "Her savings dwindled down" -00267855 30 v 03 turn_down 0 lower 0 lour 0 002 @ 00441445 v 0000 + 00353469 n 0201 01 + 08 00 | make lower or quieter; "turn down the volume of a radio" -00268011 30 v 03 get_well 0 get_over 0 bounce_back 0 002 @ 00205046 v 0000 ! 00268165 v 0101 02 + 02 00 + 08 02 | improve in health; "He got well fast" -00268165 30 v 02 get_worse 0 relapse 0 003 @ 00146138 v 0000 + 00068333 n 0204 ! 00268011 v 0101 01 + 02 00 | deteriorate in health; "he relapsed" -00268314 30 v 01 remit 2 004 @ 00151689 v 0000 + 00883188 a 0101 + 07419960 n 0101 + 07419960 n 0102 01 + 01 00 | diminish or abate; "The pain finally remitted" -00268477 30 v 02 paralyze 0 paralyse 0 002 @ 00269140 v 0000 ~ 00268680 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to be paralyzed and immobile; "The poison paralyzed him"; "Fear paralyzed her" -00268680 30 v 01 palsy 0 003 @ 00268477 v 0000 + 14316470 n 0101 + 14558226 n 0102 01 + 10 00 | affect with palsy -00268796 30 v 02 paralyze 1 paralyse 1 001 @ 00191517 v 0000 02 + 08 00 + 11 00 | make powerless and unable to function; "The bureaucracy paralyzes the entire operation" -00268968 30 v 02 stun 0 stupefy 0 002 @ 00269140 v 0000 + 01267135 n 0201 04 + 08 00 + 09 00 + 10 00 + 11 00 | make senseless or dizzy by or as if by a blow; "stun fish" -00269140 30 v 02 immobilize 0 immobilise 0 007 @ 00236592 v 0000 + 01146288 n 0202 + 01525116 a 0101 + 01146288 n 0101 + 01146288 n 0103 ~ 00268477 v 0000 ~ 00268968 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to be unable to move; "The sudden storm immobilized the traffic" -00269423 30 v 04 freeze 3 block 2 immobilize 1 immobilise 1 004 @ 02213690 v 0000 ! 00269682 v 0201 + 00808767 n 0101 ! 00269682 v 0102 01 + 08 00 | prohibit the conversion or use of (assets); "Blocked funds"; "Freeze the assets of this hostile government" -00269682 30 v 04 unblock 0 unfreeze 1 free 1 release 0 003 @ 02479323 v 0000 ! 00269423 v 0201 ! 00269423 v 0102 01 + 08 00 | make (assets) available; "release the holdings in the dictator's bank account" -00269889 30 v 02 immobilize 3 immobilise 3 001 @ 00114837 v 0000 01 + 08 00 | convert (assets) into fixed capital -00270005 30 v 03 mobilize 0 mobilise 0 circulate 0 005 > 01831531 v 0000 @ 01850315 v 0000 + 11439031 n 0301 + 07312221 n 0301 + 00368302 n 0301 02 + 08 00 + 11 00 | cause to move around; "circulate a rumor" -00270215 30 v 04 mobilize 2 mobilise 2 marshal 0 summon 0 005 @ 01380638 v 0000 + 01156438 n 0202 + 01230283 n 0202 + 01156438 n 0101 + 01230283 n 0101 02 + 08 00 + 09 00 | make ready for action or use; "marshal resources" -00270440 30 v 01 acerbate 0 003 @ 00126264 v 0000 + 04995009 n 0101 + 04994126 n 0101 01 + 11 00 | make sour or bitter -00270561 30 v 02 mend 1 heal 0 002 @ 00205046 v 0000 + 13491616 n 0201 02 + 01 00 + 02 00 | heal or recover; "My broken leg is mending" -00270699 30 v 01 fluctuate 0 002 @ 00146138 v 0000 + 04770911 n 0101 01 + 01 00 | be unstable; "The stock market fluctuates" -00270826 30 v 02 stabilize 1 stabilise 1 010 @ 00126264 v 0000 + 01159025 n 0202 ! 00271711 v 0202 + 01159025 n 0101 + 15052667 n 0101 + 04294426 n 0101 + 04294212 n 0101 ! 00271711 v 0101 + 04294212 n 0202 ~ 00271201 v 0000 02 + 08 00 + 11 00 | make stable and keep from fluctuating or put into an equilibrium; "The drug stabilized her blood pressure"; "stabilize prices" -00271201 30 v 01 peg 3 001 @ 00270826 v 0000 01 + 08 00 | stabilize (the price of a commodity or an exchange rate) by legislation or market operations; "The weak currency was pegged to the US Dollar" -00271403 30 v 01 ballast 0 002 @ 01219993 v 0000 + 02779845 n 0101 02 + 08 00 + 11 00 | make steady with a ballast -00271520 30 v 01 guy 0 002 @ 01219993 v 0000 + 03471779 n 0101 01 + 08 00 | steady or support with a guy wire or cable; "The Italians guyed the Tower of Pisa to prevent it from collapsing" -00271711 30 v 02 destabilize 0 destabilise 0 006 @ 00126264 v 0000 + 01159461 n 0202 ! 00270826 v 0202 + 07356489 n 0101 + 01159461 n 0101 ! 00270826 v 0101 02 + 08 00 + 11 00 | make unstable; "Terrorism destabilized the government" -00271946 30 v 02 stabilize 0 stabilise 0 006 @ 00109660 v 0000 + 01159025 n 0202 ! 00272177 v 0101 ! 00272177 v 0102 ~ 00415398 v 0000 ~ 00416571 v 0000 02 + 01 00 + 02 00 | become stable or more stable; "The economy stabilized" -00272177 30 v 02 destabilize 1 destabilise 1 005 @ 00109660 v 0000 + 01159461 n 0202 ! 00271946 v 0201 + 01159461 n 0101 ! 00271946 v 0101 02 + 01 00 + 02 00 | become unstable; "The economy destabilized rapidly" -00272391 30 v 05 sensitize 0 sensitise 0 sensify 0 sensibilize 0 sensibilise 0 005 @ 00126264 v 0000 + 05677504 n 0301 + 05651971 n 0301 + 13554343 n 0101 ! 00272683 v 0101 05 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 | make sensitive or aware; "He was not sensitized to her emotional needs" -00272683 30 v 02 desensitize 0 desensitise 0 004 @ 00126264 v 0000 + 13463255 n 0202 + 13463255 n 0101 ! 00272391 v 0101 05 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 | make insensitive; "His military training desensitized him" -00272910 30 v 03 inure 0 harden 3 indurate 4 003 @ 00273445 v 0000 ~ 00273114 v 0000 ~ 00273257 v 0000 02 + 09 00 + 20 00 | cause to accept or become hardened to; habituate; "He was inured to the cold" -00273114 30 v 03 callous 0 cauterize 1 cauterise 1 001 @ 00272910 v 0000 01 + 10 00 | make insensitive or callous; deaden feelings or morals -00273257 30 v 04 steel_oneself_against 0 steel_onself_for 0 brace_oneself_for 0 prepare_for 0 001 @ 00272910 v 0000 01 + 08 00 | prepare mentally or emotionally for something unpleasant -00273445 30 v 02 habituate 0 accustom 0 007 @ 00126264 v 0000 + 14062725 n 0105 + 00194831 n 0101 + 00947923 n 0103 ~ 00272910 v 0000 ~ 00273734 v 0000 ~ 01165290 v 0000 01 + 20 00 | make psychologically or physically used (to something); "She became habituated to the background music" -00273734 30 v 01 teach 0 004 @ 00273445 v 0000 + 02451634 a 0102 + 10694258 n 0101 + 05854812 n 0101 04 + 08 00 + 09 00 + 11 00 + 24 00 | accustom gradually to some action or attitude; "The child is taught to obey her parents" -00273963 30 v 02 corrode 0 rust 0 009 $ 00274283 v 0000 @ 00208836 v 0000 + 13552270 n 0201 + 14889479 n 0201 + 00587376 a 0102 + 14561995 n 0101 + 13453428 n 0101 + 13453428 n 0102 ~ 00274633 v 0000 01 + 01 00 | become destroyed by water, air, or a corrosive such as an acid; "The metal corroded"; "The pipes rusted" -00274283 30 v 03 corrode 1 eat 0 rust 1 007 @ 00258857 v 0000 + 14889479 n 0301 + 13552270 n 0301 + 00587376 a 0102 + 13453428 n 0101 + 13453428 n 0102 $ 00273963 v 0000 01 + 11 00 | cause to deteriorate due to the action of water, air, or an acid; "The acid corroded the metal"; "The steady dripping of water rusted the metal stopper in the sink" -00274633 30 v 02 fret 0 eat_away 1 001 @ 00273963 v 0000 01 + 11 00 | wear away or erode -00274724 30 v 03 erode 0 eat_away 0 fret 1 006 @ 00258857 v 0000 + 00588062 a 0101 + 14518924 n 0101 + 13475538 n 0101 + 13475538 n 0102 ~ 00274942 v 0000 01 + 11 00 | remove soil or rock; "Rain eroded the terraces" -00274942 30 v 01 wash 9 002 $ 02098179 v 0000 @ 00274724 v 0000 01 + 11 00 | form by erosion; "The river washed a ravine into the mountainside" -00275088 30 v 01 weather 0 002 @ 00208836 v 0000 + 11524662 n 0101 02 + 01 00 + 11 00 | change under the action or influence of the weather; "A weathered old hut" -00275253 30 v 05 erode 1 gnaw 0 gnaw_at 0 eat_at 0 wear_away 0 004 @ 00208836 v 0000 + 13475538 n 0505 + 00587376 a 0103 + 14518924 n 0101 01 + 01 00 | become ground down or deteriorate; "Her confidence eroded" -00275466 30 v 01 ablate 0 003 @ 00469382 v 0000 + 00050260 a 0101 + 13423489 n 0101 01 + 11 00 | wear away through erosion or vaporization -00275607 30 v 02 regularize 0 regularise 0 005 @ 01463963 v 0000 + 13925015 n 0202 + 00806902 n 0203 + 13925015 n 0101 ~ 00416705 v 0000 02 + 08 00 + 11 00 | make regular or more regular; "regularize the heart beat with a pace maker" -00275843 30 v 07 tidy 0 tidy_up 0 clean_up 3 neaten 0 straighten 0 straighten_out 0 square_away 0 003 @ 00277659 v 0000 ~ 00276068 v 0000 ~ 01533442 v 0000 01 + 08 00 | put (things or places) in order; "Tidy up your room!" -00276068 30 v 02 make 2 make_up 0 002 @ 00275843 v 0000 $ 01755504 v 0000 01 + 08 00 | put in order or neaten; "make the bed"; "make up a room" -00276214 30 v 02 mess 0 mess_up 0 002 @ 00276373 v 0000 + 14500047 n 0101 02 + 08 00 + 11 00 | make a mess of or create disorder in; "He messed up his room" -00276373 30 v 02 disorder 0 disarray 0 008 @ 00126264 v 0000 + 04897604 n 0201 + 14499262 n 0102 ! 00277659 v 0101 ~ 00276214 v 0000 ~ 00276601 v 0000 ~ 00278117 v 0000 ~ 01472807 v 0000 02 + 08 00 + 11 00 | bring disorder to -00276601 30 v 03 perturb 0 derange 0 throw_out_of_kilter 0 004 @ 00276373 v 0000 + 00554850 n 0202 + 04904996 n 0101 + 00553173 n 0102 02 + 08 00 + 11 00 | throw into great confusion or disorder; "Fundamental Islamicists threaten to perturb the social order in Algeria and Egypt" -00276883 30 v 01 order 1 005 @ 01463963 v 0000 + 08456993 n 0102 + 01009871 n 0101 + 10381369 n 0101 + 01009871 n 0102 02 + 08 00 + 09 00 | place in a certain order; "order the photos chronologically" -00277086 30 v 03 predate 0 antedate 0 foredate 0 002 @ 00277399 v 0000 ! 00277254 v 0101 01 + 08 00 | establish something as being earlier relative to something else -00277254 30 v 01 postdate 0 002 @ 00277399 v 0000 ! 00277086 v 0101 01 + 09 00 | establish something as being later relative to something else -00277399 30 v 02 chronologize 0 chronologise 0 006 @ 00619183 v 0000 + 13845114 n 0101 + 06503224 n 0101 + 06156346 n 0101 ~ 00277086 v 0000 ~ 00277254 v 0000 01 + 01 00 | establish the order in time of something; "The archivist chronologized the documents" -00277659 30 v 01 order 0 010 @ 01463963 v 0000 + 08456993 n 0102 + 01009871 n 0101 + 10381369 n 0101 + 01009871 n 0102 ! 00276373 v 0101 ~ 00275843 v 0000 ~ 00480969 v 0000 ~ 01385759 v 0000 ~ 01463520 v 0000 02 + 08 00 + 11 00 | bring order to or into; "Order these files" -00277935 30 v 01 straighten 2 003 @ 01463963 v 0000 ^ 01463520 v 0103 ^ 00621058 v 0108 02 + 08 00 + 11 00 | make straight or straighter; "Straighten this post"; "straighten hair" -00278117 30 v 01 disarrange 0 003 @ 00276373 v 0000 + 14500341 n 0103 ~ 00278899 v 0000 02 + 08 00 + 11 00 | disturb the arrangement of; "disarrange the papers" -00278280 30 v 01 rearrange 0 004 @ 01463963 v 0000 + 00338821 n 0101 ~ 00278514 v 0000 ~ 00278710 v 0000 02 + 08 00 + 11 00 | put into a new order or arrangement; "Please rearrange these files"; "rearrange the furniture in my room" -00278514 30 v 01 recode 0 002 @ 00278280 v 0000 + 00616951 n 0101 01 + 08 00 | put into a different code; rearrange mentally; "People recode and restructure information in order to remember it" -00278710 30 v 01 reshuffle 1 002 @ 00278280 v 0000 + 01084489 n 0101 02 + 08 00 + 09 00 | reorganize and assign posts to different people; "The new Prime Minister reshuffled his cabinet" -00278899 30 v 02 randomize 0 randomise 0 003 @ 00278117 v 0000 + 01009001 n 0202 + 01009001 n 0101 01 + 08 00 | arrange in random order; "Randomize the order of the numbers" -00279075 30 v 02 serialize 0 serialise 0 003 @ 01463963 v 0000 + 01102862 n 0202 + 01102862 n 0101 02 + 08 00 + 11 00 | arrange serially; "Serialize the numbers" -00279239 30 v 02 alphabetize 0 alphabetise 0 006 @ 01463963 v 0000 + 09785409 n 0202 + 06497459 n 0201 + 01011028 n 0101 + 09785409 n 0101 + 06497459 n 0101 01 + 08 00 | arrange in alphabetical order; "Alphabetize the list" -00279465 30 v 01 bleach 0 005 @ 00280301 v 0000 + 14779205 n 0102 + 00274009 n 0101 + 09859684 n 0101 ~ 00279661 v 0000 03 + 01 00 + 08 00 + 11 00 | make whiter or lighter; "bleach the laundry" -00279661 30 v 01 peroxide 0 002 @ 00279465 v 0000 + 14781225 n 0102 01 + 08 00 | bleach with peroxide; "She must peroxide her hair-it looks unnaturally blond" -00279822 30 v 0b bleach 1 bleach_out 0 decolor 0 decolour 0 decolorize 0 decolourize 0 decolorise 0 decolourise 0 discolorize 0 discolourise 0 discolorise 0 003 @ 00282076 v 0000 + 04961136 n 0101 + 09859684 n 0101 02 + 08 00 + 11 00 | remove color from; "The sun bleached the red shirt" -00280112 30 v 01 wash_out 2 002 @ 00282933 v 0000 $ 00282343 v 0000 01 + 01 00 | lose color in the process of being washed; "The expensive shirt washed out in the German washing machine" -00280301 30 v 02 whiten 0 white 0 006 @ 00281101 v 0000 + 04960729 n 0201 + 14779205 n 0104 + 00273877 n 0101 ! 00280532 v 0101 ~ 00279465 v 0000 03 + 01 00 + 08 00 + 11 00 | turn white; "This detergent will whiten your laundry" -00280532 30 v 05 blacken 0 melanize 0 melanise 0 nigrify 0 black 0 004 @ 00281101 v 0000 + 04960277 n 0501 + 14757172 n 0201 ! 00280301 v 0101 03 + 01 00 + 08 00 + 11 00 | make or become black; "The smoke blackened the ceiling"; "The ceiling blackened" -00280787 30 v 02 melanize 1 melanise 1 002 @ 00114837 v 0000 + 14757172 n 0101 02 + 08 00 + 11 00 | convert into, or infiltrate with melanin -00280930 30 v 02 lighten 2 lighten_up 1 004 @ 00109660 v 0000 ~ 00291757 v 0000 ~ 00291873 v 0000 ! 00312380 v 0101 01 + 01 00 | become lighter; "The room lightened up" -00281101 30 v 04 discolor 0 discolour 0 colour 0 color 1 025 @ 00109660 v 0000 + 04956594 n 0401 + 00274941 n 0401 + 14984973 n 0304 + 00274941 n 0302 + 04695176 n 0203 + 00274707 n 0202 + 04695176 n 0102 + 00274707 n 0101 ~ 00103317 v 0000 ~ 00103619 v 0000 ~ 00103875 v 0000 ~ 00104299 v 0000 ~ 00280301 v 0000 ~ 00280532 v 0000 ~ 00282523 v 0000 ~ 00282652 v 0000 ~ 00283090 v 0000 ~ 00289031 v 0000 ~ 00289297 v 0000 ~ 00289392 v 0000 ~ 00289840 v 0000 ~ 00290132 v 0000 ~ 00521478 v 0000 ~ 00521641 v 0000 02 + 01 00 + 02 00 | change color, often in an undesired manner; "The shirts discolored" -00281703 30 v 01 blackwash 0 001 @ 00283911 v 0000 01 + 08 00 | color with blackwash -00281790 30 v 01 sallow 0 001 @ 00282076 v 0000 01 + 11 00 | cause to become sallow; "The illness has sallowed her face" -00281913 30 v 01 bronze 0 002 @ 00283090 v 0000 + 14717275 n 0101 02 + 08 00 + 11 00 | give the color and appearance of bronze to something; "bronze baby shoes" -00282076 30 v 01 discolor 2 008 > 00281101 v 0000 @ 00126264 v 0000 + 04695176 n 0102 + 00274707 n 0101 ~ 00279822 v 0000 ~ 00281790 v 0000 ~ 00282343 v 0000 ~ 00311865 v 0000 02 + 08 00 + 11 00 | cause to lose or change color; "The detergent discolored my shirts" -00282343 30 v 01 wash_out 3 002 $ 00280112 v 0000 @ 00282076 v 0000 01 + 11 00 | drain off the color in the course of laundering; "The harsh soap washed out the delicate blouse" -00282523 30 v 01 turn 9 002 @ 00125841 v 0000 @ 00281101 v 0000 01 + 01 00 | change color; "In Vermont, the leaves turn early" -00282652 30 v 01 silver 1 002 @ 00281101 v 0000 + 04962062 n 0103 01 + 01 00 | turn silver; "The man's hair silvered very attractively" -00282790 30 v 01 foliate 0 003 @ 00253761 v 0000 + 13152742 n 0103 + 13483190 n 0101 01 + 01 00 | grow leaves; "the tree foliated in Spring" -00282933 30 v 01 discolor 1 003 @ 00109660 v 0000 ! 00283911 v 0101 ~ 00280112 v 0000 01 + 01 00 | lose color or turn colorless; "The painting discolored" -00283090 30 v 01 dye 0 013 @ 00281101 v 0000 + 10040515 n 0101 + 00275424 n 0101 + 14985383 n 0101 ~ 00281913 v 0000 ~ 00283415 v 0000 ~ 00283584 v 0000 ~ 00283805 v 0000 ~ 00286008 v 0000 ~ 00288192 v 0000 ~ 00288314 v 0000 ~ 00288673 v 0000 ~ 00288947 v 0000 02 + 08 00 + 11 00 | color with dye; "Please dye these shoes" -00283415 30 v 01 stain 4 003 @ 00283090 v 0000 + 15052970 n 0101 + 00275572 n 0101 01 + 08 00 | color for microscopic study; "The laboratory worker dyed the specimen" -00283584 30 v 01 deep-dye 0 001 @ 00283090 v 0000 01 + 08 00 | dye thoroughly -00283664 30 v 01 henna 0 002 @ 00286928 v 0000 + 14988741 n 0101 01 + 08 00 | apply henna to one's hair; "She hennas her hair every month" -00283805 30 v 02 impress 8 yarn-dye 0 001 @ 00283090 v 0000 01 + 08 00 | dye (fabric) before it is spun -00283911 30 v 08 color 0 colorize 3 colorise 3 colourise 3 colourize 3 colour 9 color_in 0 colour_in 0 029 @ 00126264 v 0000 + 07567139 n 0602 + 04956594 n 0604 + 04956594 n 0201 + 00161739 n 0101 + 04956594 n 0101 + 07567139 n 0101 + 04956594 n 0103 ! 00282933 v 0101 ~ 00281703 v 0000 ~ 00284669 v 0000 ~ 00284813 v 0000 ~ 00284958 v 0000 ~ 00285088 v 0000 ~ 00285231 v 0000 ~ 00285314 v 0000 ~ 00285414 v 0000 ~ 00285506 v 0000 ~ 00285705 v 0000 ~ 00285856 v 0000 ~ 00286928 v 0000 ~ 00287258 v 0000 ~ 00287735 v 0000 ~ 00288563 v 0000 ~ 00289532 v 0000 ~ 00289679 v 0000 ~ 00289974 v 0000 ~ 00534837 v 0000 ~ 01696135 v 0000 02 + 08 00 + 11 00 | add color to; "The child colored the drawings"; "Fall colored the trees"; "colorize black and white film" -00284669 30 v 02 motley 0 parti-color 0 002 @ 00283911 v 0000 + 03789603 n 0101 02 + 08 00 + 11 00 | make motley; color with different colors -00284813 30 v 03 polychrome 0 polychromize 0 polychromise 0 001 @ 00283911 v 0000 02 + 08 00 + 11 00 | color with many colors; make polychrome -00284958 30 v 01 azure 0 002 @ 00283911 v 0000 + 04969242 n 0101 02 + 08 00 + 11 00 | color azure; "Morning azured the village" -00285088 30 v 03 purple 0 empurple 0 purpurate 0 003 @ 00283911 v 0000 + 04970059 n 0301 + 04970059 n 0101 02 + 08 00 + 11 00 | color purple -00285231 30 v 01 aurify 0 001 @ 00283911 v 0000 02 + 08 00 + 11 00 | turn golden -00285314 30 v 01 verdigris 0 002 @ 00283911 v 0000 + 15096524 n 0101 01 + 08 00 | color verdigris -00285414 30 v 01 pinkify 0 002 @ 00283911 v 0000 + 04970916 n 0101 01 + 08 00 | make pink -00285506 30 v 01 incarnadine 0 001 @ 00283911 v 0000 01 + 08 00 | make flesh-colored -00285593 30 v 01 madder 0 002 @ 00534837 v 0000 + 12661227 n 0101 01 + 08 00 | color a moderate to strong red -00285705 30 v 02 embrown 0 brown 1 001 @ 00283911 v 0000 01 + 08 00 | make brown in color; "the draught browned the leaves on the trees in the yard" -00285856 30 v 02 handcolor 0 handcolour 0 002 @ 00283911 v 0000 ;c 00903559 n 0000 01 + 08 00 | color by hand; "Some old photographs are handcolored" -00286008 30 v 01 stain 1 007 @ 00283090 v 0000 + 10646032 n 0101 ~ 00286333 v 0000 ~ 00286483 v 0000 ~ 01681333 v 0000 ~ 01681492 v 0000 ~ 01696350 v 0000 02 + 08 00 + 11 00 | color with a liquid dye or tint; "Stain this table a beautiful walnut color"; "people knew how to stain glass a beautiful blue in the middle ages" -00286333 30 v 02 ebonize 0 ebonise 0 003 @ 00286008 v 0000 ;c 03405725 n 0000 + 04960582 n 0102 01 + 08 00 | stain black to make it look like ebony -00286483 30 v 01 dip 0 002 @ 00286008 v 0000 + 07364434 n 0101 01 + 08 00 | stain an object by immersing it in a liquid -00286605 30 v 01 stain 0 005 @ 00126264 v 0000 + 14498096 n 0105 + 04695176 n 0101 ~ 00286798 v 0000 $ 01531998 v 0000 01 + 01 00 | produce or leave stains; "Red wine stains the table cloth" -00286798 30 v 01 smut 0 002 @ 00286605 v 0000 + 14793533 n 0104 02 + 08 00 + 11 00 | stain with a dirty substance, such as soot -00286928 30 v 04 tint 0 tinct 0 tinge 0 touch 1 009 @ 00283911 v 0000 + 04959567 n 0302 + 14986004 n 0301 + 10712474 n 0101 + 00275151 n 0101 + 04959230 n 0102 ~ 00283664 v 0000 ~ 00287560 v 0000 ~ 00287848 v 0000 02 + 08 00 + 11 00 | color lightly; "her greying hair was tinged blond"; "the leaves were tinged red in November" -00287258 30 v 01 pigment 0 002 @ 00283911 v 0000 + 14989820 n 0101 01 + 08 00 | color or dye with a pigment; "pigment a photograph" -00287392 30 v 01 pigment 1 004 @ 00288017 v 0000 + 14989820 n 0101 + 13537622 n 0101 + 04976319 n 0101 02 + 01 00 + 02 00 | acquire pigment; become colored or imbued -00287560 30 v 01 tincture 0 003 @ 00286928 v 0000 + 14986004 n 0101 + 04959230 n 0103 01 + 08 00 | stain or tint with a color; "The leaves were tinctured with a bright red" -00287735 30 v 02 imbue 0 hue 0 002 @ 00283911 v 0000 + 04975122 n 0201 02 + 08 00 + 11 00 | suffuse with color -00287848 30 v 01 complexion 0 003 @ 00286928 v 0000 + 04675193 n 0101 + 04976952 n 0101 01 + 11 00 | give a certain color to; "The setting sun complexioned the hills" -00288017 30 v 01 hue 1 003 @ 00126264 v 0000 + 04975122 n 0101 ~ 00287392 v 0000 01 + 01 00 | take on color or become colored; "In highlights it hued to a dull silver-grey" -00288192 30 v 01 fast_dye 0 001 @ 00283090 v 0000 01 + 08 00 | dye with fast colors; "These shirts should be fast-dyed" -00288314 30 v 01 double_dye 0 001 @ 00283090 v 0000 01 + 08 00 | dye twice -00288391 30 v 01 tie-dye 0 001 @ 00288673 v 0000 01 + 08 00 | dye after knotting the fabric to produce an irregular pattern; "The flower children tie-dye their T-shirts" -00288563 30 v 01 retouch 1 001 @ 00283911 v 0000 01 + 08 00 | give retouches to (hair); "retouch the roots" -00288673 30 v 01 hand-dye 0 003 @ 00283090 v 0000 ~ 00288391 v 0000 ~ 00288814 v 0000 01 + 08 00 | dye by hand; "This fabric is hand-dyed" -00288814 30 v 01 batik 0 002 @ 00288673 v 0000 + 02809105 n 0101 01 + 08 00 | dye with wax; "Indonesian fabrics are often batiked" -00288947 30 v 01 piece-dye 0 001 @ 00283090 v 0000 01 + 08 00 | dye after weaving -00289031 30 v 01 redden 0 002 @ 00281101 v 0000 ~ 00289159 v 0000 02 + 01 00 + 02 00 | turn red or redder; "The sky reddened" -00289159 30 v 01 blush 1 001 @ 00289031 v 0000 02 + 01 00 + 02 00 | become rosy or reddish; "her cheeks blushed in the cold winter air" -00289297 30 v 01 purple 1 002 @ 00281101 v 0000 + 04970059 n 0101 01 + 01 00 | become purple -00289392 30 v 02 grey 0 gray 0 003 @ 00281101 v 0000 + 04961691 n 0201 + 04961691 n 0103 01 + 01 00 | turn grey; "Her hair began to grey" -00289532 30 v 01 silver 0 002 @ 00283911 v 0000 + 04962062 n 0103 02 + 08 00 + 11 00 | make silver in color; "Her worries had silvered her hair" -00289679 30 v 02 grey 1 gray 1 003 @ 00283911 v 0000 + 04961691 n 0201 + 04961691 n 0103 02 + 08 00 + 11 00 | make grey; "The painter decided to grey the sky" -00289840 30 v 01 yellow 0 002 @ 00281101 v 0000 + 04965661 n 0101 01 + 01 00 | turn yellow; "The pages of the book began to yellow" -00289974 30 v 01 tone 1 003 @ 00283911 v 0000 + 04959230 n 0104 + 15076011 n 0101 02 + 08 00 + 11 00 | change to a color image; "tone a photographic image" -00290132 30 v 01 tone 2 004 @ 00281101 v 0000 + 04959230 n 0104 + 15076011 n 0101 + 15075867 n 0101 02 + 08 00 + 11 00 | change the color or tone of; "tone a negative" -00290302 30 v 03 escalate 0 intensify 2 step_up 0 007 @ 00153263 v 0000 + 00363260 n 0302 + 05036394 n 0201 + 00374224 n 0201 + 00366846 n 0101 ! 00290740 v 0101 ~ 00290581 v 0000 03 + 02 00 + 08 00 + 11 00 | increase in extent or intensity; "The Allies escalated the bombing" -00290581 30 v 01 redouble 0 001 @ 00290302 v 0000 01 + 08 00 | double in magnitude, extent, or intensity; "The enemy redoubled their screaming on the radio" -00290740 30 v 03 de-escalate 0 weaken 3 step_down 4 005 @ 00441445 v 0000 + 00351638 n 0304 + 09476521 n 0201 + 00355252 n 0101 ! 00290302 v 0101 02 + 08 00 + 11 00 | reduce the level or intensity or size or scope of; "de-escalate a crisis" -00290983 30 v 01 de-escalate 1 002 @ 00151689 v 0000 + 00355252 n 0101 01 + 01 00 | diminish in size, scope, or intensity; "The war of words between them de-escalated with time" -00291163 30 v 01 radiate 0 001 @ 00105333 v 0000 01 + 02 00 | send out real or metaphoric rays; "She radiates happiness" -00291286 30 v 01 effuse 0 002 @ 02767308 v 0000 + 07014320 n 0101 02 + 08 00 + 11 00 | give out or emit (also metaphorically); "The room effuses happiness" -00291444 30 v 02 irradiate 0 ray 1 004 @ 00515154 v 0000 + 11428379 n 0202 + 14577753 n 0101 ~ 00291624 v 0000 03 + 08 00 + 09 00 + 11 00 | expose to radiation; "irradiate food" -00291624 30 v 01 bombard 0 002 @ 00291444 v 0000 ;c 06090869 n 0000 01 + 08 00 | direct high energy particles or radiation against -00291757 30 v 01 irradiate 1 002 @ 00280930 v 0000 + 11428023 n 0108 02 + 08 00 + 11 00 | cast rays of light upon -00291873 30 v 05 light 0 illume 0 illumine 0 light_up 0 illuminate 3 012 @ 00280930 v 0000 + 13983147 n 0501 + 05018542 n 0502 + 14687513 n 0501 + 13983304 n 0101 + 04951373 n 0101 + 08646188 n 0101 + 05018103 n 0106 + 03665366 n 0101 + 11473954 n 0101 ~ 00292247 v 0000 ~ 00292368 v 0000 02 + 08 00 + 11 00 | make lighter or brighter; "This lamp lightens the room a bit" -00292247 30 v 01 floodlight 0 002 @ 00291873 v 0000 + 03365374 n 0102 02 + 08 00 + 11 00 | illuminate with floodlights -00292368 30 v 01 spotlight 0 002 @ 00291873 v 0000 + 04286575 n 0101 02 + 08 00 + 11 00 | illuminate with a spotlight, as in the theater -00292507 30 v 02 cut 0 cut_off 0 002 @ 00778275 v 0000 ^ 00778275 v 0104 02 + 08 00 + 11 00 | cease, stop; "cut the noise"; "We had to cut short the conversation" -00292672 30 v 03 mutilate 0 mangle 0 cut_up 2 004 @ 00258857 v 0000 + 10341955 n 0203 + 07433662 n 0101 + 10341955 n 0101 02 + 08 00 + 11 00 | destroy or injure severely; "The madman mutilates art work" -00292877 30 v 03 clip 0 curtail 1 cut_short 0 002 @ 00316768 v 0000 + 05134122 n 0201 02 + 08 00 + 11 00 | terminate or abbreviate before its intended or proper end or its full extent; "My speech was cut short"; "Personal freedom is curtailed in many countries" -00293141 30 v 04 fancify 0 beautify 0 embellish 0 prettify 0 010 @ 00205885 v 0000 + 00261604 n 0201 + 04683814 n 0201 ! 00293429 v 0201 ~ 00040353 v 0000 ~ 00045639 v 0000 ~ 00293528 v 0000 ~ 00293977 v 0000 ~ 01245637 v 0000 ~ 02724258 v 0000 02 + 08 00 + 11 00 | make more beautiful -00293429 30 v 01 uglify 0 002 @ 00126264 v 0000 ! 00293141 v 0102 02 + 08 00 + 11 00 | make ugly -00293528 30 v 02 dress_up 0 window-dress 0 001 @ 00293141 v 0000 01 + 08 00 | make something appear superficially attractive; "The researcher tried to dress up the uninteresting data"; "Don't try to dress up the unpleasant truth" -00293760 30 v 04 blossom 0 blossom_out 0 blossom_forth 0 unfold 0 003 @ 00252019 v 0000 + 13571217 n 0401 + 15295045 n 0106 02 + 01 00 + 02 00 | develop or come to a promising stage; "Youth blossomed into maturity" -00293977 30 v 07 spruce_up 0 spruce 0 titivate 0 tittivate 0 smarten_up 0 slick_up 0 spiff_up 0 003 @ 00293141 v 0000 + 00263492 n 0402 + 00263492 n 0301 03 + 08 00 + 10 00 + 11 00 | make neat, smart, or trim; "Spruce up your house for Spring"; "titivate the child" -00294245 30 v 03 bloom 0 blossom 1 flower 0 009 @ 00252019 v 0000 + 11669921 n 0301 + 11669335 n 0301 + 13439570 n 0302 + 11669335 n 0203 + 13439390 n 0102 + 11669335 n 0102 + 11672269 n 0101 ~ 00294522 v 0000 01 + 01 00 | produce or yield flowers; "The cherry tree bloomed" -00294522 30 v 02 effloresce 0 burst_forth 1 003 @ 00294245 v 0000 + 01488856 a 0102 + 13439570 n 0106 01 + 01 00 | come into or as if into flower; "These manifestations effloresced in the past" -00294718 30 v 02 spike 1 spike_out 0 002 @ 00252019 v 0000 + 13133613 n 0102 01 + 01 00 | bring forth a spike or spikes; "my hyacinths and orchids are spiking now" -00294884 30 v 03 temper 0 season 1 mollify 1 003 @ 00224901 v 0000 + 13970764 n 0301 + 01151097 n 0302 02 + 08 00 + 11 00 | make more temperate, acceptable, or suitable by adding something else; moderate; "she tempered her criticism" -00295120 30 v 02 season 0 harden 2 001 @ 00303309 v 0000 01 + 10 00 | make fit; "This trip will season even the hardiest traveller" -00295254 30 v 01 temper 1 001 @ 00296178 v 0000 01 + 08 00 | adjust the pitch (of pianos) -00295346 30 v 02 tune 0 tune_up 0 005 @ 00296178 v 0000 + 04987169 n 0101 + 10733117 n 0101 + 00999588 n 0101 ! 00295563 v 0101 01 + 08 00 | adjust the pitches of (musical instruments); "My piano needs to be tuned" -00295563 30 v 01 untune 0 002 @ 00126264 v 0000 ! 00295346 v 0101 01 + 08 00 | cause to be out of tune; "Don't untune that string!" -00295697 30 v 03 calibrate 0 graduate 0 fine-tune 2 004 @ 00296178 v 0000 + 06801965 n 0201 + 03451473 n 0201 + 00999245 n 0101 01 + 08 00 | make fine adjustments or divide into marked intervals for optimal measuring; "calibrate an instrument"; "graduate a cylinder" -00295966 30 v 02 tune 1 tune_up 1 006 @ 00296178 v 0000 + 01000969 n 0201 + 00999588 n 0101 ~ 00302763 v 0000 ~ 00456937 v 0000 ~ 02171514 v 0000 01 + 08 00 | adjust for (better) functioning; "tune the engine" -00296178 30 v 03 adjust 0 set 0 correct 9 032 @ 00126264 v 0000 + 00232754 a 0301 + 00046558 a 0101 + 00344686 a 0101 + 00999787 n 0101 + 09769929 n 0101 ~ 00151279 v 0000 ~ 00171458 v 0000 ~ 00295254 v 0000 ~ 00295346 v 0000 ~ 00295697 v 0000 ~ 00295966 v 0000 ~ 00296973 v 0000 ~ 00297193 v 0000 ~ 00297333 v 0000 ~ 00297507 v 0000 ~ 00297669 v 0000 ~ 00297780 v 0000 ~ 00297906 v 0000 ~ 00298556 v 0000 ~ 00299341 v 0000 ~ 00314272 v 0000 ~ 00393953 v 0000 ~ 00403149 v 0000 ~ 00403967 v 0000 ~ 00456740 v 0000 ~ 00465634 v 0000 ~ 00466053 v 0000 ~ 00482473 v 0000 ~ 00489145 v 0000 ~ 00489699 v 0000 ~ 00499642 v 0000 03 + 08 00 + 11 00 + 21 00 | alter or regulate so as to achieve accuracy or conform to a standard; "Adjust the clock, please"; "correct the alignment of the front wheels" -00296973 30 v 01 time 6 002 @ 00296178 v 0000 + 15245515 n 0101 01 + 08 00 | adjust so that a force is applied and an action occurs at the desired time; "The good player times his swing so as to hit the ball squarely" -00297193 30 v 01 trim 4 002 @ 00296178 v 0000 ;c 04194289 n 0000 01 + 08 00 | adjust (sails on a ship) so that the wind is optimally used -00297333 30 v 02 zero 0 zero_in 0 001 @ 00296178 v 0000 01 + 08 00 | adjust (as by firing under test conditions) the zero of (a gun); "He zeroed in his rifle at 200 yards" -00297507 30 v 01 zero 1 004 @ 00296178 v 0000 + 13740168 n 010b + 13742358 n 0101 + 05856217 n 0101 01 + 08 00 | adjust (an instrument or device) to zero value -00297669 30 v 02 readjust 1 reset 1 001 @ 00296178 v 0000 01 + 08 00 | adjust again after an initial failure -00297780 30 v 01 attune 0 001 @ 00296178 v 0000 03 + 08 00 + 11 00 + 21 00 | adjust or accustom to; bring into harmony with -00297906 30 v 01 time 1 004 @ 00296178 v 0000 + 15129927 n 0102 + 15122231 n 0101 + 04438507 n 0101 01 + 08 00 | regulate or set the time of; "time the clock" -00298067 30 v 01 adjust 3 003 @ 00299580 v 0000 + 01027686 a 0101 + 00199707 n 0103 02 + 08 00 + 15 00 | make correspondent or conformable; "Adjust your eyes to the darkness" -00298244 30 v 02 gear 0 pitch 2 002 @ 00299580 v 0000 ~ 00578508 v 0000 01 + 15 00 | set the level or character of; "She pitched her speech to the teenagers in the audience" -00298420 30 v 01 pitch 0 002 @ 00298896 v 0000 + 04985198 n 0101 01 + 08 00 | set to a certain pitch; "He pitched his voice very low" -00298556 30 v 01 set 2 005 @ 00296178 v 0000 + 08623927 n 0101 ^ 01994288 v 0102 ~ 00298773 v 0000 ~ 01994288 v 0000 01 + 08 00 | set to a certain position or cause to operate correctly; "set clocks or instruments" -00298773 30 v 01 reset 0 002 @ 00298556 v 0000 + 04078955 n 0101 01 + 08 00 | set to zero; "reset instruments and dials" -00298896 30 v 01 set 1 009 @ 00126264 v 0000 ^ 02717831 v 0103 ^ 00407848 v 0101 ^ 01643657 v 0105 ^ 00677683 v 0103 ^ 00724150 v 0104 ^ 00851239 v 0103 ~ 00298420 v 0000 ~ 00299188 v 0000 02 + 05 00 + 21 00 | put into a certain state; cause to be in a certain state; "set the house afire" -00299188 30 v 01 keynote 0 002 @ 00298896 v 0000 + 05926049 n 0101 01 + 11 00 | set the keynote of; "Comfort keynotes this designer's Fall collection" -00299341 30 v 02 regulate 0 modulate 1 004 @ 00296178 v 0000 + 00200379 n 0201 + 02004685 a 0102 + 04072193 n 0101 02 + 08 00 + 11 00 | fix or adjust the time, amount, degree, or rate of; "regulate the temperature"; "modulate the pitch" -00299580 30 v 02 adapt 1 accommodate 0 019 @ 00123170 v 0000 + 07369604 n 0202 + 05755486 n 0201 + 00046109 a 0102 + 01027263 a 0101 + 02678897 n 0102 + 02678897 n 0101 ~ 00298067 v 0000 ~ 00298244 v 0000 ~ 00300113 v 0000 ~ 00300317 v 0000 ~ 00301544 v 0000 ~ 00301662 v 0000 ~ 00301856 v 0000 ~ 00302464 v 0000 ~ 00386085 v 0000 ~ 00412993 v 0000 ~ 00505802 v 0000 ~ 01708113 v 0000 02 + 08 00 + 11 00 | make fit for, or change to suit a new purpose; "Adapt our native cuisine to the available food resources of the new country" -00300113 30 v 01 fit 2 001 @ 00299580 v 0000 02 + 20 00 + 21 00 | insert or adjust several objects or people; "Can you fit the toy into the box?"; "This man can't fit himself into our work environment" -00300317 30 v 02 anglicise 0 anglicize 0 004 @ 00299580 v 0000 + 03003344 a 0201 + 13432085 n 0201 + 13432085 n 0102 01 + 08 00 | make English in appearance; "She anglicised her name after moving from Paris to London" -00300537 30 v 01 fit 1 006 > 02659763 v 0000 @ 00142191 v 0000 + 04930307 n 0101 + 10093908 n 0101 + 07369604 n 0103 ~ 02660290 v 0000 01 + 21 00 | make fit; "fit a dress"; "He fitted other pieces of paper to his cut-out" -00300761 30 v 02 qualify 0 dispose 0 005 @ 02387034 v 0000 + 04728068 n 0101 ! 00301338 v 0101 ~ 00300989 v 0000 ~ 00301179 v 0000 03 + 10 00 + 11 00 + 24 00 | make fit or prepared; "Your education qualifies you for this job" -00300989 30 v 01 habilitate 0 001 @ 00300761 v 0000 01 + 02 00 | qualify for teaching at a university in Europe; "He habilitated after his sabbatical at a prestigious American university" -00301179 30 v 01 capacitate 0 002 @ 00300761 v 0000 + 05203397 n 0101 01 + 10 00 | make capable; "This instruction capacitates us to understand the problem" -00301338 30 v 03 disqualify 0 unfit 0 indispose 0 004 @ 00126264 v 0000 + 04722574 n 0101 + 01078086 n 0101 ! 00300761 v 0101 02 + 10 00 + 11 00 | make unfit or unsuitable; "Your income disqualifies you" -00301544 30 v 01 shoehorn 0 001 @ 00299580 v 0000 01 + 08 00 | fit for a specific purpose even when not well suited -00301662 30 v 02 tailor 0 orient 0 001 @ 00299580 v 0000 01 + 08 00 | adjust to a specific need or market; "a magazine oriented towards young people"; "tailor your needs to your surroundings" -00301856 30 v 02 domesticate 2 tame 2 003 @ 00299580 v 0000 ;c 00015388 n 0000 $ 00302130 v 0000 01 + 08 00 | make fit for cultivation, domestic life, and service to humans; "The horse was domesticated a long time ago"; "The wolf was tamed and evolved into the house dog" -00302130 30 v 05 domesticate 0 domesticize 0 domesticise 0 reclaim 4 tame 4 007 $ 00301856 v 0000 @ 00126264 v 0000 ;c 00015388 n 0000 + 02451828 a 0502 + 02451828 a 0501 + 10690538 n 0501 ~ 00202569 v 0000 02 + 08 00 + 09 00 | overcome the wildness of; make docile and tractable; "He tames lions for the circus"; "reclaim falcons" -00302464 30 v 05 domesticate 1 cultivate 1 naturalize 3 naturalise 3 tame 1 006 @ 00299580 v 0000 ;c 00017222 n 0000 + 04787324 n 0402 + 00920956 n 0402 + 04787324 n 0301 + 00920956 n 0301 01 + 08 00 | adapt (a wild plant or unclaimed land) to the environment; "domesticate oats"; "tame the soil" -00302763 30 v 02 fine-tune 0 tweak 0 001 @ 00295966 v 0000 01 + 08 00 | adjust finely; "fine-tune the engine" -00302875 30 v 02 temper 2 harden 4 004 @ 00169806 v 0000 + 05021535 n 0101 + 00402951 n 0102 + 00381567 n 0101 01 + 08 00 | harden by reheating and cooling in oil; "temper steel" -00303056 30 v 03 anneal 0 temper 4 normalize 3 004 @ 00443384 v 0000 + 05021535 n 0201 + 00402951 n 0202 + 00381567 n 0201 01 + 08 00 | bring to a desired consistency, texture, or hardness by a process of gradually heating and cooling; "temper glass" -00303309 30 v 01 toughen 0 002 @ 00220461 v 0000 ~ 00295120 v 0000 03 + 08 00 + 10 00 + 11 00 | make tough or tougher; "This experience will toughen her" -00303465 30 v 01 widen 0 005 @ 00156601 v 0000 + 13574804 n 0101 ! 00305109 v 0101 ~ 00304252 v 0000 ~ 00305537 v 0000 01 + 01 00 | become broader or wider or more extensive; "The road widened" -00303661 30 v 01 widen 3 004 > 00303465 v 0000 @ 00126264 v 0000 + 00407270 n 0101 ~ 00303806 v 0000 01 + 08 00 | make wider; "widen the road" -00303806 30 v 01 white_out 0 002 @ 00303661 v 0000 ;c 06677302 n 0000 01 + 08 00 | widen the interlinear spacing by inserting leads -00303940 30 v 02 let_out 0 widen 5 002 @ 00123170 v 0000 ! 00304100 v 0101 01 + 08 00 | make (clothes) larger; "Let out that dress--I gained a lot of weight" -00304100 30 v 01 take_in 0 002 @ 00123170 v 0000 ! 00303940 v 0101 01 + 08 00 | make (clothes) smaller; "Please take in this skirt--I've lost weight" -00304252 30 v 02 flare_out 0 flare 0 002 @ 00303465 v 0000 + 13862644 n 0201 01 + 01 00 | become flared and widen, usually at one end; "The bellbottom pants flare out" -00304422 30 v 03 constrict 0 constringe 0 narrow 1 006 @ 00419950 v 0000 + 05071027 n 0301 + 13912992 n 0101 + 07313518 n 0101 ~ 00304662 v 0000 ~ 00304828 v 0000 02 + 01 00 + 08 00 | become tight or as if tight; "Her throat constricted" -00304662 30 v 01 astringe 0 003 @ 00304422 v 0000 + 00189580 a 0101 + 02750835 n 0101 01 + 01 00 | become constricted or compressed; "The cold substance astringes" -00304828 30 v 01 strangulate 0 001 @ 00304422 v 0000 01 + 01 00 | become constricted; "The hernia will strangulate" -00304946 30 v 01 bottleneck 0 002 @ 00305109 v 0000 + 13912992 n 0102 01 + 01 00 | become narrow, like a bottleneck; "Right by the bridge, the road bottlenecks" -00305109 30 v 02 narrow 0 contract 0 008 @ 00109660 v 0000 + 00365471 n 0201 + 09365863 n 0101 + 00407407 n 0101 ! 00303465 v 0101 ^ 00437449 v 0104 ~ 00304946 v 0000 ~ 00305417 v 0000 03 + 01 00 + 08 00 + 11 00 | make or become more narrow or restricted; "The selection was narrowed"; "The road narrowed" -00305417 30 v 01 taper_off 0 001 @ 00305109 v 0000 01 + 01 00 | become smaller or less active; "Business tapered off" -00305537 30 v 02 dilate 1 distend 0 011 @ 00303465 v 0000 + 00946844 a 0201 + 00366317 n 0201 + 14063633 n 0202 + 00366317 n 0202 + 05222467 n 0101 + 03198383 n 0101 + 03198223 n 0101 + 00365995 n 0101 + 14063633 n 0101 + 00365995 n 0102 03 + 01 00 + 08 00 + 11 00 | become wider; "His pupils were dilated" -00305846 30 v 02 implode 0 go_off 2 004 @ 01989053 v 0000 + 07365524 n 0101 + 07116304 n 0101 ! 00306017 v 0101 02 + 01 00 + 08 01 | burst inward; "The bottle imploded" -00306017 30 v 02 explode 0 burst 9 008 @ 00140123 v 0000 + 00377364 n 0202 + 03008275 n 0202 + 00377364 n 0101 ! 00305846 v 0101 ~ 00307191 v 0000 ~ 00307295 v 0000 ~ 00307568 v 0000 03 + 01 00 + 08 00 + 11 00 | burst outward, usually with noise; "The champagne bottle exploded" -00306298 30 v 03 detonate 1 explode 4 blow_up 5 002 + 00474883 a 0101 + 07308563 n 0102 01 + 01 00 | burst and release energy as through a violent chemical or physical reaction;"the bomb detonated at noon"; "The Molotov cocktail exploded" -00306539 30 v 03 explode 3 burst_forth 0 break_loose 0 002 @ 00146138 v 0000 + 07014854 n 0101 02 + 01 00 + 02 00 | be unleashed; emerge with violence or noise; "His anger exploded" -00306723 30 v 04 explode 1 detonate 0 blow_up 3 set_off 0 010 > 00306298 v 0000 @ 00140123 v 0000 + 07308563 n 0303 + 00474883 a 0201 + 00377686 n 0201 + 03182232 n 0201 + 00377364 n 0101 + 07308563 n 0101 ~ 00307060 v 0000 ~ 00307419 v 0000 01 + 08 00 | cause to burst with a violent release of energy; "We exploded the nuclear bomb" -00307060 30 v 01 fulminate 0 002 @ 00306723 v 0000 + 00377907 n 0101 01 + 08 00 | cause to explode violently and with loud noise -00307191 30 v 01 crump 0 001 @ 00306017 v 0000 01 + 01 00 | explode heavily or with a loud dull noise -00307295 30 v 01 go_off 0 001 @ 00306017 v 0000 01 + 01 00 | be discharged or activated; "the explosive devices went off" -00307419 30 v 01 dynamite 0 003 @ 00306723 v 0000 + 10040789 n 0101 + 03260293 n 0101 01 + 08 00 | blow up with dynamite; "The rock was dynamited" -00307568 30 v 03 erupt 0 belch 0 extravasate 0 004 @ 00306017 v 0000 + 14008567 n 0303 + 14008567 n 0101 + 07436475 n 0102 01 + 01 00 | become active and spew forth lava and rocks; "Vesuvius erupts once in a while" -00307785 30 v 06 erupt 2 irrupt 3 flare_up 0 flare 1 break_open 0 burst_out 0 004 @ 00226566 v 0000 + 07434942 n 0303 + 07435273 n 0203 + 07435273 n 0102 02 + 01 00 + 02 00 | erupt or intensify suddenly; "Unrest erupted in the country"; "Tempers flared at the meeting"; "The crowd irrupted into a burst of patriotism" -00308105 30 v 01 dehisce 0 003 @ 00548266 v 0000 + 00702773 a 0101 + 11444816 n 0101 01 + 01 00 | burst or split open; "flowers dehisce when they release pollen" -00308269 30 v 02 oxygenize 1 oxygenise 1 002 @ 00308399 v 0000 + 14648100 n 0101 02 + 08 00 + 11 00 | dehydrogenate with oxygen -00308399 30 v 01 dehydrogenate 0 003 @ 00126264 v 0000 ! 00308534 v 0101 ~ 00308269 v 0000 02 + 08 00 + 11 00 | remove hydrogen from -00308534 30 v 01 hydrogenate 0 004 @ 00126264 v 0000 + 14640434 n 0101 + 13494707 n 0101 ! 00308399 v 0101 02 + 08 00 + 11 00 | combine or treat with or expose to hydrogen; add hydrogen to the molecule of (an unsaturated organic compound) -00308775 30 v 02 oxygenize 2 oxygenise 2 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | change (a compound) by increasing the proportion of the electronegative part; or change (an element or ion) from a lower to a higher positive valence: remove one or more electrons from (an atom, ion, or molecule) -00309074 30 v 03 erupt 3 recrudesce 0 break_out 0 002 @ 00070816 v 0000 + 00040534 a 0101 02 + 01 00 + 02 00 | become raw or open; "He broke out in hives"; "My skin breaks out when I eat strawberries"; "Such boils tend to recrudesce" -00309310 30 v 03 burst 0 split 1 break_open 1 006 @ 00334186 v 0000 + 09443136 n 0201 + 00377364 n 0102 ~ 00309582 v 0000 ~ 00310155 v 0000 ~ 00310274 v 0000 03 + 01 00 + 08 00 + 11 00 | come open suddenly and violently, as if from internal pressure; "The bubble burst" -00309582 30 v 01 pop 3 003 @ 00309310 v 0000 + 07390400 n 0101 $ 00309792 v 0000 01 + 01 00 | burst open with a sharp, explosive sound; "The balloon popped"; "This popcorn pops quickly in the microwave oven" -00309792 30 v 01 pop 4 004 $ 00309582 v 0000 @ 01989562 v 0000 + 07390400 n 0101 + 03983712 n 0101 02 + 08 00 + 11 00 | cause to burst with a loud, explosive sound; "The child popped the balloon" -00309990 30 v 01 puncture 3 004 @ 00334186 v 0000 + 07314658 n 0101 + 00942988 n 0101 + 04024396 n 0101 01 + 01 00 | be pierced or punctured; "The tire punctured" -00310155 30 v 01 blow 7 001 @ 00309310 v 0000 02 + 01 00 + 08 00 | burst suddenly; "The tire blew"; "We blew a tire" -00310274 30 v 02 stave 0 stave_in 0 001 @ 00309310 v 0000 01 + 08 00 | burst or force (a hole) into something -00310386 30 v 04 boom 0 thrive 0 flourish 1 expand 1 005 @ 00230746 v 0000 + 00947264 a 0403 + 14488813 n 0101 ~ 00169298 v 0000 ~ 00310812 v 0000 01 + 01 00 | grow vigorously; "The deer population in this town is thriving"; "business is booming" -00310635 30 v 01 proliferate 0 004 @ 00230746 v 0000 + 13542114 n 0101 + 13541975 n 0101 $ 00247830 v 0000 01 + 01 00 | grow rapidly; "Pizza parlors proliferate in this area" -00310812 30 v 01 luxuriate 0 002 @ 00310386 v 0000 + 00015247 a 0103 01 + 01 00 | thrive profusely or flourish extensively -00310937 30 v 01 boost 2 002 @ 00153263 v 0000 + 01211019 n 0101 04 + 08 00 + 11 00 + 20 00 + 21 00 | give a boost to; be beneficial to; "The tax cut will boost the economy" -00311113 30 v 03 blur 0 dim 4 slur 0 005 @ 00223500 v 0000 ^ 02516255 v 0304 + 05940414 n 0101 ! 00314782 v 0101 ~ 00311338 v 0000 01 + 01 00 | become vague or indistinct; "The distinction between the two theories blurred" -00311338 30 v 02 obliterate 0 efface 0 004 $ 00313987 v 0000 @ 00311113 v 0000 + 07331013 n 0102 + 00218208 n 0102 01 + 08 00 | remove completely from recognition or memory; "efface the memory of the time in the camps" -00311559 30 v 01 darken 1 012 > 00312380 v 0000 @ 00126264 v 0000 + 00274437 n 0102 ! 00312815 v 0101 ~ 00311980 v 0000 ~ 00312060 v 0000 ~ 00312165 v 0000 ~ 00312278 v 0000 ~ 00313464 v 0000 ~ 00313860 v 0000 ~ 02768702 v 0000 ~ 02770717 v 0000 02 + 08 00 + 11 00 | make dark or darker; "darken a room" -00311865 30 v 01 infuscate 0 001 @ 00282076 v 0000 01 + 01 00 | darken with a brownish tinge, as of insect wings -00311980 30 v 01 embrown 1 001 @ 00311559 v 0000 01 + 08 00 | cause to darken -00312060 30 v 01 murk 0 002 @ 00311559 v 0000 + 14521648 n 0103 01 + 08 00 | make dark, dim, or gloomy -00312165 30 v 01 dun 0 003 @ 00311559 v 0000 + 04973110 n 0101 + 02381261 n 0101 01 + 08 00 | make a dun color -00312278 30 v 02 blind 1 dim 3 001 @ 00311559 v 0000 01 + 11 00 | make dim by comparison or conceal -00312380 30 v 01 darken 0 006 @ 00109660 v 0000 + 00274437 n 0102 ! 00280930 v 0101 ~ 00312575 v 0000 ~ 00312648 v 0000 ~ 02771020 v 0000 01 + 01 00 | become dark or darker; "The sky darkened" -00312575 30 v 01 dusk 0 001 @ 00312380 v 0000 01 + 01 00 | become dusk -00312648 30 v 02 black_out 1 blacken_out 0 003 @ 00312380 v 0000 + 07422506 n 0101 + 13984082 n 0101 01 + 01 00 | darken completely; "The dining room blackened out" -00312815 30 v 03 brighten 1 lighten_up 0 lighten 1 002 @ 00126264 v 0000 ! 00311559 v 0101 02 + 08 00 + 11 00 | make lighter or brighter; "The paint will brighten the room" -00312990 30 v 02 blur 1 blear 0 004 > 00311113 v 0000 @ 00126264 v 0000 + 05940414 n 0101 ! 00314272 v 0101 02 + 08 00 + 11 00 | make dim or indistinct; "The fog blurs my vision" -00313171 30 v 01 weed 0 005 @ 00173338 v 0000 + 13085113 n 0101 + 10772937 n 0101 + 04570416 n 0101 ~ 00313354 v 0000 03 + 02 00 + 08 00 + 22 00 | clear of weeds; "weed the garden" -00313354 30 v 01 stub 0 001 @ 00313171 v 0000 01 + 08 00 | clear of weeds by uprooting them; "stub a field" -00313464 30 v 01 dim 0 001 @ 00311559 v 0000 02 + 08 00 + 11 00 | make dim or lusterless; "Time had dimmed the silver" -00313585 30 v 01 dim 1 001 @ 00109660 v 0000 01 + 01 00 | become dim or lusterless; "the lights dimmed and the curtain rose" -00313712 30 v 03 obscure 0 bedim 1 overcloud 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make obscure or unclear; "The distinction was obscured" -00313860 30 v 02 benight 0 bedim 0 001 @ 00311559 v 0000 02 + 08 00 + 11 00 | make darker and difficult to perceive by sight -00313987 30 v 05 obscure 2 blot_out 0 obliterate 1 veil 0 hide 0 005 @ 00126264 v 0000 + 01048912 n 0503 + 00898132 a 0301 $ 00311338 v 0000 ~ 00518653 v 0000 02 + 08 00 + 11 00 | make undecipherable or imperceptible by obscuring or concealing; "a hidden message"; "a veiled threat" -00314272 30 v 04 focus 1 focalize 1 focalise 1 sharpen 3 009 > 00314782 v 0000 @ 00296178 v 0000 + 00375625 n 0302 + 00375625 n 0201 + 04703235 n 0101 + 00375625 n 0103 ^ 02676496 v 0101 ! 00312990 v 0101 ~ 00314605 v 0000 03 + 08 00 + 11 00 + 21 00 | put (an image) into focus; "Please focus the image; we cannot enjoy the movie" -00314605 30 v 01 refocus 1 002 @ 00314272 v 0000 + 00375938 n 0101 02 + 08 00 + 11 00 | put again into focus or focus more sharply; "refocus the image until it is very sharp" -00314782 30 v 03 focus 0 focalize 0 focalise 0 006 @ 00150287 v 0000 + 00375625 n 0302 + 00375625 n 0201 + 11455695 n 0101 + 00375625 n 0103 ! 00311113 v 0101 02 + 01 00 + 22 00 | become focussed or come into focus; "The light focused" -00315020 30 v 04 depreciate 0 undervalue 0 devaluate 0 devalue 1 010 @ 00151689 v 0000 + 00805524 n 0401 + 00805524 n 0301 + 00353992 n 0301 + 02536911 a 0102 + 02536911 a 0103 + 13328357 n 0101 + 00364600 n 0101 ! 00316195 v 0101 $ 00315330 v 0000 01 + 01 00 | lose in value; "The dollar depreciated again" -00315330 30 v 01 depreciate 1 008 $ 00315020 v 0000 @ 00493703 v 0000 + 02536911 a 0102 + 02536911 a 0103 + 13328357 n 0101 + 00364600 n 0101 ! 00315605 v 0101 ~ 00315956 v 0000 02 + 08 00 + 11 00 | lower the value of something; "The Fed depreciated the dollar once again" -00315605 30 v 03 appreciate 1 apprize 0 apprise 0 003 $ 00316195 v 0000 @ 00315810 v 0000 ! 00315330 v 0101 02 + 08 00 + 11 00 | increase the value of; "The Germans want to appreciate the Deutsche Mark" -00315810 30 v 01 revalue 1 003 @ 00660971 v 0000 + 05747582 n 0102 ~ 00315605 v 0000 02 + 08 00 + 11 00 | value anew; "revalue the German Mark" -00315956 30 v 03 expense 0 write_off 0 write_down a 004 @ 00315330 v 0000 + 13328853 n 0302 + 13328853 n 0201 + 00232604 n 0201 01 + 08 00 | reduce the estimated value of something; "For tax purposes you can write off the laser printer" -00316195 30 v 04 appreciate 0 apprize 1 apprise 1 revalue 0 004 $ 00315605 v 0000 @ 00156601 v 0000 + 05747582 n 0402 ! 00315020 v 0101 01 + 01 00 | gain in value; "The yen appreciated again!" -00316390 30 v 01 deafen 1 001 @ 00390215 v 0000 02 + 08 00 + 11 00 | make soundproof; "deafen a room" -00316494 30 v 01 shorten 0 002 @ 00151689 v 0000 ! 00316631 v 0101 01 + 01 00 | become short or shorter; "In winter, the days shorten" -00316631 30 v 01 lengthen 0 002 @ 00230746 v 0000 ! 00316494 v 0101 01 + 01 00 | become long or longer; "In Spring, the days lengthen" -00316768 30 v 01 shorten 1 008 > 00316494 v 0000 @ 00429060 v 0000 + 09433952 n 0101 ! 00317700 v 0101 ~ 00244284 v 0000 ~ 00292877 v 0000 ~ 00317086 v 0000 ~ 00317241 v 0000 02 + 08 00 + 11 00 | make shorter than originally intended; reduce or retrench in length or duration; "He shortened his trip due to illness" -00317086 30 v 01 syncopate 1 003 @ 00316768 v 0000 + 07132729 n 0102 + 07132729 n 0101 01 + 08 00 | omit a sound or letter in a word; "syncopate a word" -00317241 30 v 02 truncate 0 cut_short 3 003 * 01299268 v 0000 @ 00316768 v 0000 + 00370261 n 0101 02 + 08 00 + 11 00 | make shorter as if by cutting off; "truncate a word"; "Erosion has truncated the ridges of the mountains" -00317468 30 v 01 broaden 0 001 @ 00156601 v 0000 01 + 01 00 | become broader; "The road broadened" -00317569 30 v 01 broaden 1 002 > 00317468 v 0000 @ 00540235 v 0000 03 + 08 00 + 10 00 + 11 00 | make broader; "broaden the road" -00317700 30 v 01 lengthen 1 005 > 00316631 v 0000 @ 00153263 v 0000 ! 00316768 v 0101 ~ 00317888 v 0000 ~ 00318816 v 0000 02 + 08 00 + 11 00 | make longer; "Lengthen this skirt, please" -00317888 30 v 04 prolong 0 protract 0 extend 2 draw_out 0 011 @ 00317700 v 0000 + 01434530 a 0301 + 05051896 n 0204 + 01018366 n 0202 + 05051896 n 0102 + 05133535 n 0103 + 01018366 n 0101 $ 00235110 v 0000 ~ 00318326 v 0000 ~ 00318484 v 0000 ~ 00318706 v 0000 02 + 08 00 + 11 00 | lengthen in time; cause to be or last longer; "We prolonged our stay"; "She extended her visit by another day"; "The meeting was drawn out until midnight" -00318326 30 v 01 extend f 003 $ 00235110 v 0000 @ 00317888 v 0000 + 01434530 a 0101 01 + 08 00 | prolong the time allowed for payment of; "extend the loan" -00318484 30 v 02 temporize 0 temporise 0 003 @ 00317888 v 0000 + 10699558 n 0202 + 10699558 n 0101 01 + 02 00 | draw out a discussion or process in order to gain time; "The speaker temporized in order to delay the vote" -00318706 30 v 02 spin 0 spin_out 0 001 @ 00317888 v 0000 01 + 02 00 | prolong or extend; "spin out a visit" -00318816 30 v 02 elongate 0 stretch 4 009 > 00240810 v 0000 @ 00317700 v 0000 + 00371059 n 0201 + 04336996 n 0201 + 00366521 n 0201 + 05133839 n 0101 + 03281935 n 0101 + 00406007 n 0101 ~ 00319111 v 0000 02 + 08 00 + 11 00 | make long or longer by pulling and stretching; "stretch the fabric" -00319111 30 v 02 tree 0 shoetree 0 001 @ 00318816 v 0000 01 + 08 00 | stretch (a shoe) on a shoetree -00319214 30 v 01 size 0 006 @ 00169651 v 0000 + 05095691 n 0101 + 05098942 n 0101 ^ 02153387 v 0101 ~ 00319406 v 0000 ~ 00319629 v 0000 01 + 08 00 | make to a size; bring to a suitable size -00319406 30 v 01 scale 1 006 @ 00319214 v 0000 + 04141838 n 0101 + 13816862 n 0101 + 13850304 n 0101 + 01005814 n 0101 + 01005284 n 0101 01 + 08 00 | size or measure according to a scale; "This model must be scaled down" -00319629 30 v 01 resize 0 002 @ 00319214 v 0000 ~ 00319761 v 0000 01 + 08 00 | change the size of; make the size more appropriate -00319761 30 v 01 rescale 0 003 @ 00319629 v 0000 ~ 00428247 v 0000 ~ 00428418 v 0000 01 + 08 00 | establish on a new scale -00319886 30 v 01 bake 0 006 @ 00322847 v 0000 ;c 00243918 n 0000 + 00246341 n 0101 ~ 00320121 v 0000 ~ 00320536 v 0000 ~ 00322395 v 0000 03 + 01 00 + 08 00 + 11 00 | cook and make edible by putting in a hot oven; "bake the potatoes" -00320121 30 v 01 ovenbake 0 002 @ 00319886 v 0000 ;c 00243918 n 0000 01 + 08 00 | bake in an oven; "ovenbake this chicken" -00320246 30 v 01 brown 0 003 @ 00322847 v 0000 ;c 00243918 n 0000 + 04971928 n 0101 01 + 08 00 | fry in a pan until it changes color; "brown the meat in the pan" -00320410 30 v 01 coddle 0 002 @ 00322847 v 0000 ;c 00243918 n 0000 01 + 08 00 | cook in nearly boiling water; "coddle eggs" -00320536 30 v 01 fire 0 003 @ 00319886 v 0000 ;c 00243918 n 0000 + 13480848 n 0101 01 + 08 00 | bake in a kiln so as to harden; "fire pottery" -00320681 30 v 02 farce 0 stuff 0 005 @ 00452512 v 0000 ;c 00243918 n 0000 + 07678729 n 0201 + 07679140 n 0102 $ 00321148 v 0000 03 + 08 00 + 21 00 + 31 00 | fill with a stuffing while cooking; "Have you stuffed the turkey yet?" -00320911 30 v 01 fetishize 0 002 @ 01777817 v 0000 + 01207342 n 0101 02 + 08 00 + 09 00 | make a fetish of -00321020 30 v 01 feudalize 0 002 @ 00115157 v 0000 + 07972425 n 0101 01 + 08 00 | bring (a country or people) under feudalism -00321148 30 v 01 stuff 2 004 $ 00320681 v 0000 @ 00452512 v 0000 + 10693459 n 0103 ~ 00321341 v 0000 03 + 08 00 + 21 00 + 31 00 | fill tightly with a material; "stuff a pillow with feathers" -00321341 30 v 01 cork 0 001 @ 00321148 v 0000 01 + 08 00 | stuff with cork; "The baseball player stuffed his bat with cork to make it lighter" -00321486 30 v 02 pad 0 bolster 0 003 @ 00452512 v 0000 + 03872495 n 0101 + 03873064 n 0101 03 + 08 00 + 21 00 + 31 00 | add padding to; "pad the seat of the chair" -00321652 30 v 01 baste 0 003 @ 00217956 v 0000 * 00322847 v 0000 ;c 00243918 n 0000 01 + 08 00 | cover with liquid before cooking; "baste a roast" -00321801 30 v 01 souse 0 003 @ 00322847 v 0000 ;c 00243918 n 0000 + 07678313 n 0101 01 + 08 00 | cook in a marinade; "souse herring" -00321936 30 v 04 microwave 0 micro-cook 0 zap 0 nuke 4 004 @ 00322847 v 0000 ;c 00243918 n 0000 + 03761084 n 0101 + 11482312 n 0101 01 + 08 00 | cook or heat in a microwave oven; "You can microwave the leftovers" -00322151 30 v 03 crispen 0 toast 0 crisp 0 006 @ 00371264 v 0000 ;c 00243918 n 0000 + 07712559 n 0302 + 07686873 n 0201 + 04442312 n 0201 + 00246552 n 0201 02 + 08 00 + 11 00 | make brown and crisp by heating; "toast bread"; "crisp potatoes" -00322395 30 v 01 shirr 0 003 @ 00319886 v 0000 ;c 00243918 n 0000 + 00246460 n 0101 01 + 08 00 | bake (eggs) in their shells until they are set; "shirr the eggs" -00322559 30 v 02 blanch 0 parboil 0 002 @ 00322847 v 0000 ;c 00243918 n 0000 01 + 08 00 | cook (vegetables) briefly; "Parboil the beans before freezing them" -00322719 30 v 01 overboil 1 002 @ 00328128 v 0000 ;c 00243918 n 0000 01 + 08 00 | boil excessively; "The peas are overboiled" -00322847 30 v 01 cook 0 021 @ 00140123 v 0000 + 09963320 n 0101 + 00243918 n 0101 + 00243918 n 0102 ~ 00319886 v 0000 ~ 00320246 v 0000 ~ 00320410 v 0000 ~ 00321801 v 0000 ~ 00321936 v 0000 ~ 00322559 v 0000 $ 00323377 v 0000 ~ 00323571 v 0000 ~ 00323703 v 0000 ~ 00323856 v 0000 ~ 00324560 v 0000 ~ 00325208 v 0000 ~ 00325328 v 0000 ~ 00326773 v 0000 ~ 00327145 v 0000 ~ 00328679 v 0000 ~ 00544404 v 0000 02 + 01 00 + 08 00 | transform and make suitable for consumption by heating; "These potatoes have to cook for 20 minutes" -00323377 30 v 01 cook 3 003 $ 00322847 v 0000 @ 00126264 v 0000 + 03101156 n 0101 02 + 08 00 + 11 00 | transform by heating; "The apothecary cooked the medicinal mixture in a big iron kettle" -00323571 30 v 01 overcook 0 001 @ 00322847 v 0000 02 + 01 00 + 08 00 | cook too long; "The vegetables were completely overcooked" -00323703 30 v 01 fricassee 0 003 @ 00322847 v 0000 ;c 00243918 n 0000 + 07592094 n 0101 01 + 08 00 | make a fricassee of by cooking; "fricassee meats" -00323856 30 v 01 stew 0 005 @ 00322847 v 0000 ;c 00243918 n 0000 + 07588947 n 0101 + 00247792 n 0102 ~ 00324071 v 0000 02 + 01 00 + 08 00 | cook slowly and for a long time in liquid; "Stew the vegetables in wine" -00324071 30 v 01 jug 0 004 @ 00323856 v 0000 ;c 00243918 n 0000 + 13767956 n 0101 + 03603722 n 0101 01 + 08 00 | stew in an earthenware jug; "jug the rabbit" -00324231 30 v 01 simmer 0 004 @ 00328128 v 0000 ;c 00243918 n 0000 + 00247792 n 0103 + 05014556 n 0101 02 + 01 00 + 08 00 | boil slowly at low temperature; "simmer the sauce"; "simmering water" -00324427 30 v 02 seethe 0 roll 8 001 @ 01885430 v 0000 01 + 01 00 | boil vigorously; "The liquid was seething"; "The water rolled" -00324560 30 v 01 roast 0 007 @ 00322847 v 0000 ;c 00243918 n 0000 + 07580782 n 0101 + 04097760 n 0101 + 10534277 n 0101 + 00247442 n 0101 ~ 00325085 v 0000 03 + 01 00 + 02 00 + 08 00 | cook with dry heat, usually in an oven; "roast the turkey" -00324806 30 v 03 barbeque 0 barbecue 0 cook_out 0 006 @ 00326773 v 0000 ;c 00243918 n 0000 + 07576577 n 0301 + 07654148 n 0201 + 07576781 n 0201 + 02790669 n 0201 02 + 02 00 + 08 00 | cook outdoors on a barbecue grill; "let's barbecue that meat"; "We cooked out in the forest" -00325085 30 v 01 pan_roast 0 002 @ 00324560 v 0000 ;c 00243918 n 0000 01 + 08 00 | roast in a pan; "pan-roast that meat" -00325208 30 v 01 braise 0 002 @ 00322847 v 0000 ;c 00243918 n 0000 02 + 01 00 + 08 00 | cook in liquid; "braise beef" -00325328 30 v 01 fry 0 012 @ 00322847 v 0000 ;c 00243918 n 0000 + 07645469 n 0101 + 07645469 n 0102 + 00246940 n 0101 ~ 00325647 v 0000 ~ 00325777 v 0000 ~ 00325910 v 0000 ~ 00326049 v 0000 ~ 00326310 v 0000 ~ 00326459 v 0000 ~ 00326619 v 0000 02 + 01 00 + 08 00 | cook on a hot surface using fat; "fry the pancakes" -00325647 30 v 01 frizzle 0 002 @ 00325328 v 0000 ;c 00243918 n 0000 01 + 08 00 | fry something until it curls and becomes crisp -00325777 30 v 01 deep-fat-fry 0 002 @ 00325328 v 0000 ;c 00243918 n 0000 01 + 08 00 | fry in deep fat; "deep-fry the potato chips" -00325910 30 v 01 griddle 0 003 @ 00325328 v 0000 ;c 00243918 n 0000 + 03459328 n 0101 01 + 08 00 | cook on a griddle; "griddle pancakes" -00326049 30 v 01 pan-fry 0 002 @ 00325328 v 0000 ;c 00243918 n 0000 01 + 08 00 | fry in a pan; "pan-fry the dumplings" -00326170 30 v 02 slenderize 0 slenderise 0 001 @ 00126264 v 0000 01 + 08 00 | make slender or appear to be slender; "slenderizing skirts" -00326310 30 v 02 french-fry 0 deep-fry 0 002 @ 00325328 v 0000 ;c 00243918 n 0000 01 + 08 00 | cook by immersing in fat; "french-fry the potatoes" -00326459 30 v 01 stir_fry 0 002 @ 00325328 v 0000 ;c 00243918 n 0000 02 + 01 00 + 08 00 | fry very quickly over high heat; "stir-fry the vegetables in a wok" -00326619 30 v 01 saute 0 003 @ 00325328 v 0000 ;c 00243918 n 0000 + 00246940 n 0102 02 + 01 00 + 08 00 | fry briefly over high heat; "saute the onions" -00326773 30 v 01 grill 0 008 @ 00322847 v 0000 ;c 00243918 n 0000 + 03459914 n 0102 + 03459591 n 0101 + 00246754 n 0103 ~ 00324806 v 0000 ~ 00327010 v 0000 ~ 00328370 v 0000 02 + 01 00 + 08 00 | cook over a grill; "grill the sausages" -00327010 30 v 01 hibachi 0 003 @ 00326773 v 0000 ;c 00243918 n 0000 + 03517509 n 0101 02 + 02 00 + 08 00 | cook over a hibachi grill -00327145 30 v 01 steam 0 005 @ 00322847 v 0000 ;c 00243918 n 0000 + 15055181 n 0101 + 07787429 n 0102 + 04309548 n 0101 02 + 01 00 + 08 00 | cook something by letting steam pass over it; "just steam the vegetables" -00327362 30 v 02 steep 0 infuse 0 007 @ 00456151 v 0000 + 04312311 n 0101 ~ 00213544 v 0000 ~ 00213712 v 0000 $ 00327654 v 0000 ~ 00327654 v 0000 ~ 00327982 v 0000 01 + 08 00 | let sit in a liquid to extract a flavor or to cleanse; "steep the blossoms in oil"; "steep the fruit in alcohol" -00327654 30 v 01 infuse 2 003 $ 00327362 v 0000 @ 00327362 v 0000 + 13500023 n 0101 01 + 01 00 | undergo the process of infusion; "the mint tea is infusing" -00327813 30 v 01 brew 0 002 @ 00456151 v 0000 + 07886572 n 0101 02 + 01 00 + 08 00 | sit or let sit in boiling water so as to extract the flavor; "the tea is brewing" -00327982 30 v 01 draw f 002 @ 00327362 v 0000 $ 00430808 v 0000 02 + 01 00 + 08 00 | steep; pass through a strainer; "draw pulp from the fruit" -00328128 30 v 01 boil 0 005 @ 00109660 v 0000 + 05014099 n 0102 + 03612814 n 0102 ~ 00322719 v 0000 ~ 00324231 v 0000 02 + 01 00 + 08 00 | immerse or be immersed in a boiling liquid, often for cooking purposes; "boil potatoes"; "boil wool" -00328370 30 v 02 broil 0 oven_broil 0 006 @ 00326773 v 0000 ;c 00243918 n 0000 + 00246754 n 0101 + 07645242 n 0101 + 02905036 n 0101 ~ 00328579 v 0000 02 + 01 00 + 08 00 | cook under a broiler; "broil fish" -00328579 30 v 01 pan-broil 0 002 @ 00328370 v 0000 ;c 00243918 n 0000 01 + 08 00 | broil in a pan -00328679 30 v 01 pressure-cook 0 002 @ 00322847 v 0000 ;c 00243918 n 0000 02 + 02 00 + 08 00 | cook in a pressure cooker -00328802 30 v 05 branch 0 ramify 0 fork 0 furcate 0 separate 4 016 @ 02032415 v 0000 + 13886724 n 0401 + 00388392 n 0303 + 13886724 n 0302 + 00388392 n 0304 + 13913849 n 0203 + 05083200 n 0201 + 00388392 n 0202 + 13913849 n 0101 + 09228324 n 0101 ^ 00436404 v 0102 $ 00329244 v 0000 ~ 00329495 v 0000 ~ 00329654 v 0000 ~ 00329817 v 0000 ~ 00330003 v 0000 01 + 01 00 | divide into two or more branches so as to form a fork; "The road forks" -00329244 30 v 02 ramify 1 branch 1 005 $ 00328802 v 0000 @ 00230746 v 0000 + 13913849 n 0103 + 05083200 n 0101 + 00388392 n 0102 01 + 01 00 | grow and send out branches or branch-like structures; "these plants ramify early and get to be very large" -00329495 30 v 02 arborize 0 arborise 0 003 @ 00328802 v 0000 + 13107891 n 0201 + 13107891 n 0101 01 + 01 00 | branch out like trees; "nerve fibers arborize" -00329654 30 v 01 twig 0 002 @ 00328802 v 0000 + 13163991 n 0102 01 + 01 00 | branch out in a twiglike manner; "The lightning bolt twigged in several directions" -00329817 30 v 01 bifurcate 0 005 @ 00328802 v 0000 + 00388392 n 0103 + 13887056 n 0101 + 13886910 n 0101 + 00388710 n 0101 01 + 01 00 | divide into two branches; "The road bifurcated" -00330003 30 v 01 trifurcate 0 002 @ 00328802 v 0000 + 00388842 n 0101 01 + 01 00 | divide into three; "The road trifurcates at the bridge" -00330144 30 v 02 atomize 0 atomise 0 008 @ 00338071 v 0000 + 00388210 n 0202 + 02754103 n 0202 + 14585519 n 0201 + 14619225 n 0201 + 00388210 n 0101 + 02754103 n 0101 + 14619225 n 0101 02 + 08 00 + 11 00 | break up into small particles; "the fine powder had been atomized by air" -00330426 30 v 02 dialyse 0 dialyze 0 003 @ 01458973 v 0000 + 00649760 n 0201 + 03187751 n 0201 02 + 08 00 + 11 00 | separate by dialysis -00330565 30 v 03 break_up 4 disperse 0 scatter 0 002 @ 00140123 v 0000 ~ 00330751 v 0000 03 + 01 00 + 08 00 + 11 00 | cause to separate; "break up kidney stones"; "disperse particles" -00330751 30 v 01 backscatter 0 002 @ 00330565 v 0000 ;c 06090869 n 0000 01 + 01 00 | scatter (radiation) by the atoms of the medium through which it passes -00330909 30 v 02 peptize 0 peptise 0 004 @ 01458973 v 0000 ;c 06084469 n 0000 + 13534098 n 0202 + 13534098 n 0101 01 + 11 00 | disperse in a medium into a colloidal state -00331082 30 v 05 grind 0 mash 0 crunch 0 bray 0 comminute 0 013 @ 00338071 v 0000 + 00358089 n 0302 + 07805254 n 0201 + 14948645 n 0201 + 03724417 n 0201 + 00358290 n 0101 + 05307773 n 0102 + 03765561 n 0102 + 11460063 n 0101 + 09294716 n 0101 ~ 00331713 v 0000 ~ 00331842 v 0000 ~ 00332017 v 0000 02 + 08 00 + 11 00 | reduce to small pieces or particles by pounding or abrading; "grind the spices in a mortar"; "mash the garlic" -00331514 30 v 01 pound 3 003 @ 00338071 v 0000 + 01175316 n 0102 + 03919430 n 0103 02 + 08 00 + 11 00 | break down and crush by beating, as with a pestle; "pound the roots with a heavy flat stone" -00331713 30 v 01 pulp 0 002 @ 00331082 v 0000 + 09400826 n 0101 02 + 08 00 + 11 00 | reduce to pulp; "pulp fruit"; "pulp wood" -00331842 30 v 01 pestle 0 004 @ 00331082 v 0000 + 04300080 n 0102 + 03919430 n 0101 + 03919289 n 0101 01 + 08 00 | grind, mash or pulverize in a mortar; "pestle the garlic" -00332017 30 v 01 mill 0 003 @ 00331082 v 0000 + 00358290 n 0102 + 03765561 n 0101 02 + 08 00 + 11 00 | grind with a mill; "mill grain" -00332154 30 v 05 powderize 0 powderise 0 powder 0 pulverize 0 pulverise 0 006 @ 00397576 v 0000 + 00358290 n 0504 + 00358290 n 0403 + 14997012 n 0301 + 14997012 n 0101 $ 00332445 v 0000 02 + 08 00 + 11 00 | make into a powder by breaking up or cause to become dust; "pulverize the grains" -00332445 30 v 04 powderize 1 pulverize 1 pulverise 1 powderise 1 004 $ 00332154 v 0000 @ 00397576 v 0000 + 14997012 n 0303 + 14997012 n 0202 01 + 01 00 | become powder or dust; "When it was blown up, the building powderized" -00332672 30 v 02 run 4 unravel 1 004 $ 00334803 v 0000 @ 00397576 v 0000 + 10016954 n 0203 + 00309011 n 0101 01 + 01 00 | become undone; "the sweater unraveled" -00332835 30 v 02 partition 0 zone 0 006 @ 02031158 v 0000 + 08509442 n 0201 + 03894379 n 0101 + 00397953 n 0102 + 00397953 n 0103 ~ 00333426 v 0000 02 + 08 00 + 11 00 | separate or apportion into sections; "partition a room off" -00333066 30 v 01 subdivide 0 004 @ 02467662 v 0000 + 00398427 n 0101 + 10668280 n 0101 $ 00333277 v 0000 01 + 08 00 | divide into smaller and smaller pieces; "This apartment cannot be subdivided any further!" -00333277 30 v 01 subdivide 1 003 $ 00333066 v 0000 @ 01557774 v 0000 + 00398427 n 0101 01 + 01 00 | form into subdivisions; "The cells subdivided" -00333426 30 v 02 screen_off 0 separate_off 0 001 @ 00332835 v 0000 01 + 08 00 | partition by means of a divider, such as a screen; "screen off this part of the room" -00333594 30 v 02 burst 1 bust 0 002 @ 00334186 v 0000 ~ 00333758 v 0000 03 + 01 00 + 08 00 + 11 00 | break open or apart suddenly and forcefully; "The dam burst" -00333758 30 v 01 shatter 0 002 @ 00333594 v 0000 + 00376825 n 0102 03 + 01 00 + 08 00 + 11 00 | break into many pieces; "The wine glass shattered" -00333907 30 v 01 shatter 1 002 @ 00334996 v 0000 + 00376825 n 0102 02 + 08 00 + 11 00 | cause to break into many pieces; "shatter the plate" -00334050 30 v 01 shatter 2 001 @ 00258857 v 0000 01 + 11 00 | damage or destroy; "The news of her husband's death shattered her life" -00334186 30 v 05 break 0 separate 3 split_up 0 fall_apart 3 come_apart 0 015 @ 00140123 v 0000 + 00708017 a 0101 + 09278537 n 0106 + 07367548 n 0101 + 00376400 n 0102 ^ 00209174 v 0102 ~ 00309310 v 0000 ~ 00309990 v 0000 ~ 00333594 v 0000 ~ 00334649 v 0000 ~ 00334803 v 0000 $ 00334996 v 0000 ~ 00337065 v 0000 ~ 00338071 v 0000 ~ 00559390 v 0000 01 + 01 00 | become separated into pieces or fragments; "The figurine broke"; "The freshly baked loaf fell apart" -00334649 30 v 01 smash a 002 $ 00335923 v 0000 @ 00334186 v 0000 01 + 01 00 | break suddenly into pieces, as from a violent blow; "The window smashed" -00334803 30 v 02 ladder 0 run 1 004 @ 00334186 v 0000 + 07443010 n 0201 + 07443010 n 0102 $ 00332672 v 0000 01 + 01 00 | come unraveled or undone as if by snagging; "Her nylons were running" -00334996 30 v 01 break a 010 $ 00334186 v 0000 @ 02031158 v 0000 + 00708017 a 0101 + 00376400 n 0102 + 00376400 n 0101 + 09873604 n 0101 ~ 00333907 v 0000 ~ 00335366 v 0000 ~ 00335555 v 0000 ~ 00335923 v 0000 02 + 08 00 + 11 00 | destroy the integrity of; usually by force; cause to separate into pieces or fragments; "He broke the glass plate"; "She broke the match" -00335366 30 v 01 fracture a 004 @ 00334996 v 0000 + 00376994 n 0101 + 14292090 n 0101 + 09278537 n 0105 02 + 08 00 + 11 00 | break into pieces; "The pothole fractured a bolt on the axle" -00335555 30 v 01 break_in 1 002 @ 00334996 v 0000 ~ 00335697 v 0000 02 + 08 00 + 11 00 | break so as to fall inward; "He broke in the door" -00335697 30 v 01 stave_in 1 001 @ 00335555 v 0000 02 + 08 00 + 11 00 | break in the staves (of); "stave in a cask" -00335814 30 v 01 sunder 0 001 @ 00338071 v 0000 02 + 08 00 + 11 00 | break apart or in two, using violence -00335923 30 v 02 smash 0 dash 0 006 @ 00334996 v 0000 + 07410207 n 0104 + 10614225 n 0101 + 00376825 n 0101 $ 00334649 v 0000 ~ 00336158 v 0000 02 + 08 00 + 11 00 | break into pieces, as by striking or knocking over; "Smash a plate" -00336158 30 v 02 blast 2 knock_down 0 001 @ 00335923 v 0000 01 + 08 00 | shatter as if by explosion -00336260 30 v 03 crack 1 check 3 break f 007 @ 00109660 v 0000 + 00708017 a 0301 + 14292090 n 0302 + 04692908 n 0201 $ 00336539 v 0000 $ 00336718 v 0000 ~ 00337234 v 0000 01 + 01 00 | become fractured; break or crack on the surface only; "The glass cracked when it was heated" -00336539 30 v 02 check 9 chink 0 004 $ 00336260 v 0000 @ 00336718 v 0000 + 09243769 n 0201 + 04692908 n 0101 01 + 11 00 | make cracks or chinks in; "The heat checked the paint" -00336718 30 v 01 crack 5 004 $ 00336260 v 0000 @ 00126264 v 0000 ~ 00336539 v 0000 ~ 00336922 v 0000 02 + 08 00 + 11 00 | cause to become cracked; "heat and light cracked the back of the leather chair" -00336922 30 v 01 fissure 0 003 @ 00336718 v 0000 + 09258715 n 0104 + 13907272 n 0104 02 + 08 00 + 11 00 | break into fissures or fine cracks -00337065 30 v 02 snap 0 crack 0 002 @ 00334186 v 0000 + 07367708 n 0101 03 + 01 00 + 08 00 + 11 00 | break suddenly and abruptly, as under tension; "The pipe snapped" -00337234 30 v 01 crack 2 005 @ 00336260 v 0000 + 09258715 n 0101 ~ 00337428 v 0000 ~ 00337568 v 0000 ~ 00337700 v 0000 01 + 01 00 | break partially but keep its integrity; "The glass cracked" -00337428 30 v 01 chap 0 002 @ 00337234 v 0000 + 09241929 n 0101 01 + 01 00 | crack due to dehydration; "My lips chap in this dry weather" -00337568 30 v 01 craze 0 002 @ 00337234 v 0000 + 04693274 n 0101 01 + 01 00 | develop a fine network of cracks; "Crazed ceramics" -00337700 30 v 01 alligator 0 002 @ 00337234 v 0000 + 14760447 n 0101 01 + 01 00 | crack and acquire the appearance of alligator hide, as from weathering or improper application; of paint and varnishes -00337903 30 v 02 splinter 0 sliver 0 003 @ 00338071 v 0000 + 09442838 n 0202 + 09442838 n 0101 01 + 01 00 | break up into splinters or slivers; "The wood splintered" -00338071 30 v 04 break_up 0 fragment 0 fragmentize 0 fragmentise 0 019 @ 00334186 v 0000 + 09285254 n 0301 + 09285254 n 0201 + 07008680 n 0201 + 04184701 n 0203 + 13993517 n 0201 + 13484303 n 0201 + 07409121 n 0201 + 00388210 n 0203 ~ 00330144 v 0000 ~ 00331082 v 0000 ~ 00331514 v 0000 ~ 00335814 v 0000 ~ 00337903 v 0000 ~ 00338736 v 0000 ~ 00338866 v 0000 ~ 00338964 v 0000 ~ 00339085 v 0000 ~ 01394464 v 0000 01 + 18 00 | break or cause to break into pieces; "The plate fragmented" -00338559 30 v 02 dissolve 9 dismiss 9 002 @ 00126264 v 0000 $ 00355955 v 0000 01 + 08 00 | declare void; "The President dissolved the parliament and called for new elections" -00338736 30 v 01 rag 0 002 @ 00338071 v 0000 ;c 00922327 n 0000 02 + 08 00 + 11 00 | break into lumps before sorting; "rag ore" -00338866 30 v 01 crumb 1 002 @ 00338071 v 0000 + 07622261 n 0101 01 + 08 00 | break into crumbs -00338964 30 v 01 brecciate 0 002 @ 00338071 v 0000 + 14697839 n 0101 01 + 01 00 | break into breccia; "brecciate rock" -00339085 30 v 01 crush 0 004 @ 00338071 v 0000 + 00358089 n 0101 + 03141702 n 0101 ~ 00339268 v 0000 03 + 01 00 + 08 00 + 11 00 | break into small pieces; "The car crushed the toy" -00339268 30 v 01 bruise 1 002 @ 00339085 v 0000 ;c 00243918 n 0000 02 + 08 00 + 11 00 | break up into small pieces for food preparation; "bruise the berries with a wooden spoon and strain them" -00339464 30 v 03 break 1 recrudesce 1 develop 3 006 @ 00339934 v 0000 + 07423560 n 0301 + 07435891 n 0201 ^ 00345508 v 0102 ^ 00426749 v 0101 $ 00342980 v 0000 01 + 01 00 | happen; "Report the news as it develops"; "These political movements recrudesce from time to time" -00339738 30 v 02 arise 0 come_up 0 004 @ 00339934 v 0000 ~ 00365446 v 0000 ~ 00540101 v 0000 ~ 02721840 v 0000 01 + 01 00 | result or issue; "A slight unpleasantness arose from this discussion" -00339934 30 v 09 happen 0 hap 0 go_on 0 pass_off 0 occur 0 pass 0 fall_out 0 come_about 0 take_place 0 028 + 07314277 n 0201 + 07283608 n 0101 ~ 00339464 v 0000 ~ 00339738 v 0000 ~ 00340704 v 0000 ~ 00340846 v 0000 ~ 00341040 v 0000 ~ 00341184 v 0000 ~ 00341285 v 0000 ~ 00341422 v 0000 ~ 00341560 v 0000 ~ 00341917 v 0000 ~ 00342443 v 0000 ~ 00342640 v 0000 ~ 00342980 v 0000 ~ 00343334 v 0000 ~ 00343898 v 0000 ~ 00344042 v 0000 ~ 00344174 v 0000 ~ 00344643 v 0000 ~ 00345000 v 0000 ~ 00345312 v 0000 ~ 02378950 v 0000 ~ 02594102 v 0000 ~ 02600082 v 0000 ~ 02611976 v 0000 ~ 02634133 v 0000 ~ 02739254 v 0000 03 + 01 00 + 04 00 + 34 00 | come to pass; "What is happening?"; "The meeting took place off without an incidence"; "Nothing occurred that seemed important" -00340704 30 v 01 result 0 001 @ 00339934 v 0000 01 + 01 00 | come about or follow as a consequence; "nothing will result from this meeting" -00340846 30 v 01 intervene 0 001 @ 00339934 v 0000 02 + 01 00 + 04 00 | occur between other event or between certain points of time; "the war intervened between the birth of her two children" -00341040 30 v 01 transpire 9 001 @ 00339934 v 0000 01 + 04 00 | come about, happen, or occur; "Several important events transpired last week" -00341184 30 v 01 give d 002 @ 00339934 v 0000 ;u 07157273 n 0000 01 + 01 00 | occur; "what gives?" -00341285 30 v 01 operate 0 002 @ 00339934 v 0000 + 05701363 n 0104 01 + 04 00 | happen; "What is going on in the minds of the people?" -00341422 30 v 01 supervene 0 002 @ 00339934 v 0000 + 07479525 n 0101 01 + 01 00 | take place as an additional or unexpected development -00341560 30 v 02 proceed 0 go 1 003 @ 00339934 v 0000 ~ 00341757 v 0000 ~ 02617567 v 0000 02 + 01 00 + 06 00 | follow a certain course; "The inauguration went well"; "how did your interview go?" -00341757 30 v 03 drag 3 drag_on 0 drag_out 0 001 @ 00341560 v 0000 01 + 01 00 | proceed for an extended period of time; "The speech dragged on for two hours" -00341917 30 v 01 come 1 004 @ 00339934 v 0000 + 05046471 n 0103 ~ 00342164 v 0000 $ 00542120 v 0000 01 + 01 00 | come to pass; arrive, as in due course; "The first success came three days later"; "It came as a shock"; "Dawn comes early in June" -00342164 30 v 03 fall d descend d settle d 002 @ 00341917 v 0000 $ 00342314 v 0000 01 + 01 00 | come as if by falling; "Night fell"; "Silence fell" -00342314 30 v 01 fall f 002 $ 00342164 v 0000 @ 00426958 v 0000 01 + 04 00 | go as if by falling; "Grief fell from our hearts" -00342443 30 v 01 fall 0 002 $ 02661015 v 0000 @ 00339934 v 0000 01 + 04 00 | occur at a specified time or place; "Christmas falls on a Monday this year"; "The accent falls on the first syllable" -00342640 30 v 01 anticipate 0 002 @ 00339934 v 0000 + 00122245 a 0101 01 + 08 00 | be a forerunner of or occur earlier than; "This composition anticipates Impressionism" -00342812 30 v 01 come 2 001 @ 02603699 v 0000 03 + 04 00 + 06 00 + 07 00 | be found or available; "These shoes come in three colors; The furniture comes unassembled" -00342980 30 v 01 develop 5 004 $ 02624263 v 0000 $ 00252019 v 0000 $ 00339464 v 0000 @ 00339934 v 0000 01 + 34 00 | be gradually disclosed or unfolded; become manifest; "The plot developed slowly"; -00343180 30 v 01 transpire 1 001 @ 00109660 v 0000 01 + 34 00 | come to light; become known; "It transpired that she had worked as spy in East Germany" -00343334 30 v 02 recur 0 repeat 0 009 @ 00339934 v 0000 + 00592539 a 0202 + 01964367 a 0201 + 07342049 n 0201 + 07342049 n 0202 + 00592880 a 0102 + 07343363 n 0101 ~ 00343600 v 0000 ~ 00343771 v 0000 01 + 01 00 | happen or occur again; "This is a recurring story" -00343600 30 v 01 iterate 1 004 @ 00343334 v 0000 ;c 06128570 n 0000 ;c 06000644 n 0000 + 01964632 a 0101 01 + 01 00 | run or be performed again; "the function iterates" -00343771 30 v 01 cycle 0 003 @ 00343334 v 0000 + 15287830 n 0101 + 07342495 n 0101 01 + 01 00 | recur in repeating sequences -00343898 30 v 03 go_off 1 come_off 0 go_over 0 001 @ 00339934 v 0000 01 + 07 00 | happen in a particular manner; "how did your talk go over?" -00344042 30 v 02 come_around 6 roll_around 0 001 @ 00339934 v 0000 01 + 01 00 | happen regularly; "Christmas rolled around again" -00344174 30 v 03 happen 1 materialize 0 materialise 0 010 @ 00339934 v 0000 + 07323024 n 0302 + 13512036 n 0302 + 07295047 n 0303 ! 00344492 v 0302 + 13512036 n 0201 + 07295047 n 0202 + 07323024 n 0201 ! 00344492 v 0201 ~ 00425967 v 0000 01 + 01 00 | come into being; become reality; "Her dream really materialized" -00344492 30 v 02 dematerialize 0 dematerialise 0 003 @ 02156546 v 0000 ! 00344174 v 0203 ! 00344174 v 0102 01 + 01 00 | become immaterial; disappear -00344643 30 v 03 happen 2 befall 0 bechance 0 002 $ 02593912 v 0000 @ 00339934 v 0000 01 + 01 00 | happen, occur, or be the case in the course of events or by chance; "It happens that today is my birthday"; "These things befell" (Santayana) -00344886 30 v 01 come d 001 @ 02634265 v 0000 01 + 01 00 | happen as a result; "Nothing good will come of this" -00345000 30 v 03 befall 1 bechance 1 betide 0 001 @ 00339934 v 0000 01 + 10 00 | become of; happen to; "He promised that no harm would befall her"; "What has become of my children?" -00345184 30 v 01 spin_off 0 002 @ 01652139 v 0000 + 02930492 n 0103 01 + 11 00 | produce as a consequence of something larger -00345312 30 v 02 concur 0 coincide 0 005 @ 00339934 v 0000 + 02378496 a 0201 + 05048301 n 0202 + 02378496 a 0104 + 05048301 n 0101 01 + 01 00 | happen simultaneously; "The two events coincided" -00345508 30 v 02 erupt 1 break_out 4 001 @ 02608347 v 0000 01 + 01 00 | start abruptly; "After 1989, peace broke out in the former East Bloc" -00345652 30 v 01 bud 2 001 @ 02608347 v 0000 01 + 01 00 | start to grow or develop; "a budding friendship" -00345761 30 v 08 get_down 0 begin 0 get c start_out 0 start 0 set_about 0 set_out 0 commence 0 021 + 00235435 n 0803 + 00235435 n 0502 + 15265518 n 0506 + 07325190 n 0501 + 10355449 n 0504 + 10363913 n 0202 + 00235435 n 0201 ! 00352826 v 0201 ~ 00346537 v 0000 ~ 00346714 v 0000 ~ 00346839 v 0000 ~ 00347104 v 0000 ~ 00347276 v 0000 ~ 00347420 v 0000 ~ 00347610 v 0000 ~ 00347804 v 0000 ~ 00347918 v 0000 ~ 00348103 v 0000 ~ 00348252 v 0000 ~ 00348541 v 0000 $ 01070777 v 0000 05 + 01 00 + 02 00 + 08 00 + 28 00 + 33 00 | take the first step or steps in carrying out an action; "We began working at dawn"; "Who will start?"; "Get working as soon as the sun rises!"; "The first tourists began to arrive in Cambodia"; "He began early in the day"; "Let's get down to work now" -00346537 30 v 01 recommence 0 002 @ 00345761 v 0000 + 00242003 n 0102 05 + 01 00 + 02 00 + 08 00 + 28 00 + 33 00 | begin again; "we recommenced his reading after a short nap" -00346714 30 v 01 strike_out 3 001 @ 00345761 v 0000 01 + 02 00 | set out on a course of action; "He struck out on his own" -00346839 30 v 01 fall c 001 @ 00345761 v 0000 01 + 22 00 | begin vigorously; "The prisoners fell to work right away" -00346958 30 v 01 break_out 3 001 @ 02608347 v 0000 03 + 01 00 + 02 00 + 33 00 | begin suddenly and sometimes violently; "He broke out shouting" -00347104 30 v 01 jump_off 0 001 @ 00345761 v 0000 02 + 01 00 + 02 00 | set off quickly, usually with success; "The freshman jumped off to a good start in his math class" -00347276 30 v 01 get_to 0 001 @ 00345761 v 0000 01 + 32 00 | arrive at the point of; "She gets to fretting if I stay away from home too long" -00347420 30 v 01 auspicate 0 002 @ 00345761 v 0000 + 07286799 n 0101 01 + 08 00 | commence in a manner calculated to bring good luck; "They auspicated the trip with a bottle of champagne" -00347610 30 v 01 attack 0 002 @ 00345761 v 0000 + 09821253 n 0101 01 + 08 00 | set to work upon; turn one's energies vigorously to a task; "I attacked the problem as soon as I got out of bed" -00347804 30 v 01 break_in 3 001 @ 00345761 v 0000 01 + 02 00 | start in a certain activity, enterprise, or role -00347918 30 v 02 plunge a launch a 002 @ 00345761 v 0000 $ 01834053 v 0000 01 + 22 00 | begin with vigor; "He launched into a long diatribe"; "She plunged into a dangerous adventure" -00348103 30 v 01 come_on 0 001 @ 00345761 v 0000 01 + 01 00 | occur or become available; "water or electricity came on again after the earthquake" -00348252 30 v 02 embark a enter a 002 @ 00345761 v 0000 ~ 00348422 v 0000 01 + 22 00 | set out on (an enterprise or subject of study); "she embarked upon a new career" -00348422 30 v 01 take_up 0 001 @ 00348252 v 0000 01 + 08 00 | pursue or resume; "take up a matter for consideration" -00348541 30 v 07 get_cracking 0 bestir_oneself 0 get_going 0 get_moving 0 get_weaving 0 get_started 0 get_rolling 0 001 @ 00345761 v 0000 02 + 01 00 + 02 00 | start to be active; "Get cracking, please!" -00348746 30 v 04 begin 1 lead_off 0 start 1 commence 1 014 > 02608347 v 0000 + 00235435 n 0403 + 00235435 n 0302 + 15265518 n 0306 + 07325190 n 0301 + 10107303 n 0102 + 07290905 n 0101 ! 00352826 v 0101 ~ 00349223 v 0000 ~ 00349416 v 0000 ~ 00349592 v 0000 ~ 00349785 v 0000 ~ 01650610 v 0000 $ 02609203 v 0000 02 + 08 00 + 11 00 | set in motion, cause to start; "The U.S. started a war in the Middle East"; "The Iraqis began hostilities"; "begin a new chapter in your life" -00349223 30 v 02 jumpstart 0 jump-start 0 001 @ 00348746 v 0000 02 + 08 00 + 11 00 | start or re-start vigorously; "The Secretary of State intends to jumpstart the Middle East Peace Process" -00349416 30 v 01 recommence 1 002 @ 00348746 v 0000 + 00242003 n 0102 02 + 08 00 + 11 00 | cause to start anew; "The enemy recommenced hostilities after a few days of quiet" -00349592 30 v 03 inaugurate 0 usher_in 0 introduce 0 002 @ 00348746 v 0000 + 07286014 n 0101 01 + 11 00 | be a precursor of; "The fall of the Berlin Wall ushered in the post-Cold War period" -00349785 30 v 01 set_off 1 001 @ 00348746 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | set in motion or cause to begin; "The guide set the tour off to a good start" -00349951 30 v 01 carry_over 0 002 @ 02647497 v 0000 + 05756203 n 0103 01 + 01 00 | transfer or persist from one stage or sphere of activity to another -00350104 30 v 03 resume 0 restart 0 re-start 0 002 @ 02679899 v 0000 + 00242003 n 0101 04 + 01 00 + 02 00 + 08 00 + 28 00 | take up or begin anew; "We resumed the negotiations" -00350283 30 v 02 resume 1 take_up 1 001 @ 00109660 v 0000 01 + 11 00 | return to a previous location or condition; "The painting resumed its old condition when we restored it" -00350461 30 v 05 persevere 0 persist 1 hang_in 0 hang_on 0 hold_on 0 011 @ 02679899 v 0000 + 00593071 a 0201 + 04864515 n 0204 + 01021579 n 0202 + 06200010 n 0101 + 01021579 n 0103 + 01021579 n 0101 ~ 00350889 v 0000 ~ 00351048 v 0000 ~ 00351266 v 0000 ~ 00351406 v 0000 04 + 01 00 + 02 00 + 04 00 + 28 02 | be persistent, refuse to stop; "he persisted to call me every night"; "The child persisted and kept asking questions" -00350889 30 v 01 obstinate 0 002 @ 00350461 v 0000 + 04863074 n 0104 01 + 02 00 | persist stubbornly; "he obstinates himself against all rational arguments" -00351048 30 v 02 ask_for_it 0 ask_for_trouble 0 001 @ 00350461 v 0000 01 + 02 00 | persist with actions or an attitude despite the probability that it will cause trouble; "He is asking for trouble with his behavior" -00351266 30 v 02 plug 0 plug_away 0 001 @ 00350461 v 0000 01 + 01 00 | persist in working hard; "Students must plug away at this problem" -00351406 30 v 03 stick_to 0 stick_with 0 follow c 002 $ 02542280 v 0000 @ 00350461 v 0000 02 + 08 00 + 33 00 | keep to; "Stick to your principles"; "stick to the diet" -00351576 30 v 01 pass_away 1 001 @ 02609764 v 0000 01 + 01 00 | go out of existence; "She hoped that the problem would eventually pass away" -00351719 30 v 01 close_out 0 001 @ 00352826 v 0000 01 + 08 00 | terminate; "We closed out our account" -00351824 30 v 01 lapse 1 002 @ 02609764 v 0000 + 15271417 n 0101 01 + 01 00 | end, at least for a long time; "The correspondence lapsed" -00351963 30 v 01 finish 3 003 @ 00352826 v 0000 + 07291312 n 0103 + 15267536 n 0104 01 + 10 00 | cause to finish a relationship with somebody; "That finished me with Mary" -00352137 30 v 01 close 8 001 @ 00484166 v 0000 01 + 02 00 | finish a game in baseball by protecting a lead; "The relief pitcher closed with two runs in the second inning" -00352310 30 v 01 cut_out 1 001 @ 02609764 v 0000 01 + 01 00 | cease operating; "The pump suddenly cut out" -00352419 30 v 01 go_out 0 001 @ 02609764 v 0000 01 + 01 00 | become extinguished; "The lights suddenly went out and we were in the dark" -00352558 30 v 06 finish_up 2 land_up 0 fetch_up 0 end_up 1 wind_up 2 finish 1 002 @ 02367363 v 0000 + 00211110 n 0504 01 + 33 00 | finally be or do something; "He ended up marrying his high school sweetheart"; "he wound up being unemployed and living at home again" -00352826 30 v 02 end 1 terminate 1 031 > 02609764 v 0000 @ 00126264 v 0000 + 01010569 a 0201 + 00209943 n 0201 + 14562960 n 0101 + 05868477 n 0101 + 07291794 n 0101 + 15266911 n 0101 + 00209943 n 0102 ! 00348746 v 0101 ! 00345761 v 0102 ~ 00351719 v 0000 ~ 00351963 v 0000 ~ 00353839 v 0000 ~ 00354030 v 0000 ~ 00354195 v 0000 ~ 00354317 v 0000 ~ 00355038 v 0000 ~ 00355803 v 0000 ~ 00355955 v 0000 ~ 00362348 v 0000 ~ 00364064 v 0000 ~ 00478682 v 0000 ~ 00481941 v 0000 ~ 00484166 v 0000 ~ 00527034 v 0000 ~ 00698855 v 0000 ~ 00715074 v 0000 ~ 00763831 v 0000 ~ 01642820 v 0000 ~ 02425913 v 0000 02 + 08 00 + 11 00 | bring to an end or halt; "She ended their friendship when she found out that he had once been convicted of a crime"; "The attack on Poland terminated the relatively peaceful period after WW I" -00353639 30 v 03 give_the_axe 0 give_the_bounce 0 give_the_gate 0 001 @ 02431320 v 0000 01 + 14 00 | terminate a relationship abruptly; "Mary gave John the axe after she saw him with another woman" -00353839 30 v 01 abort 0 003 @ 00352826 v 0000 + 01082714 a 0101 + 07319652 n 0102 01 + 08 00 | terminate before completion; "abort the mission"; "abort the process running on my computer" -00354030 30 v 01 culminate 3 002 @ 00352826 v 0000 + 15291199 n 0102 02 + 08 00 + 10 00 | bring to a head or to the highest point; "Seurat culminated pointillism" -00354195 30 v 02 lift 2 raise d 001 @ 00352826 v 0000 02 + 08 00 + 11 00 | put an end to; "lift a ban"; "raise a siege" -00354317 30 v 02 ax 0 axe 0 001 @ 00352826 v 0000 01 + 08 00 | terminate; "The NSF axed the research program and stopped funding it" -00354452 30 v 04 stem 0 stanch 0 staunch 0 halt 2 002 @ 00354634 v 0000 + 07365849 n 0402 02 + 08 00 + 11 00 | stop the flow of a liquid; "staunch the blood flow"; "stem the tide" -00354634 30 v 01 check a 003 @ 01859221 v 0000 + 14010927 n 0102 ~ 00354452 v 0000 02 + 08 00 + 11 00 | arrest the motion (of something) abruptly; "He checked the flow of water by shutting off the main valve" -00354845 30 v 01 die 1 004 @ 00426958 v 0000 + 15143477 n 0101 + 14562960 n 0103 + 15143477 n 0102 01 + 01 00 | disappear or come to an end; "Their anger died"; "My secret will die with me!" -00355038 30 v 02 stamp_out 0 kill 8 001 @ 00352826 v 0000 02 + 08 00 + 11 00 | end or extinguish by forceful means; "Stamp out poverty!" -00355177 30 v 01 kill 2 002 @ 01619929 v 0000 $ 00355365 v 0000 02 + 08 00 + 11 00 | destroy a vitally essential quality of or in; "Eating artichokes kills the taste of all other foods" -00355365 30 v 01 kill 3 004 $ 00355177 v 0000 @ 01510576 v 0000 + 00217593 n 0101 $ 00355524 v 0000 01 + 08 00 | cause to cease operating; "kill the engine" -00355524 30 v 01 kill 4 002 $ 00355365 v 0000 @ 00075421 v 0000 01 + 10 00 | tire out completely; "The daily stress of her work is killing her" -00355670 30 v 01 snap 1 002 @ 01345109 v 0000 + 07381423 n 0103 01 + 01 00 | close with a snapping motion; "The lock snapped shut" -00355803 30 v 02 dissolve 2 break_up 1 001 @ 00352826 v 0000 01 + 01 00 | come to an end; "Their marriage dissolved"; "The tobacco monopoly broke up" -00355955 30 v 02 dissolve 8 break_up 9 005 $ 00338559 v 0000 @ 00352826 v 0000 + 13467916 n 0101 + 00216038 n 0102 + 00215314 n 0101 02 + 08 00 + 11 00 | bring the association of to an end or cause to break up; "The decree officially dissolved the marriage"; "the judge dissolved the tobacco company" -00356258 30 v 01 change_surface 0 015 @ 00109660 v 0000 ~ 00356649 v 0000 ~ 00356789 v 0000 ~ 00356954 v 0000 ~ 00362128 v 0000 ~ 00435481 v 0000 ~ 00435688 v 0000 ~ 00523436 v 0000 ~ 01252971 v 0000 ~ 01253621 v 0000 ~ 01277974 v 0000 ~ 01307142 v 0000 ~ 01531635 v 0000 ~ 01531742 v 0000 ~ 01531998 v 0000 03 + 01 00 + 08 00 + 11 00 | undergo or cause to undergo a change in the surface -00356649 30 v 02 level 0 level_off 0 002 @ 00356258 v 0000 + 03658858 n 0101 01 + 01 00 | become level or even; "The ground levelled off" -00356789 30 v 01 crust 0 003 * 00219403 v 0000 @ 00356258 v 0000 + 09260218 n 0101 01 + 01 00 | form a crust or form into a crust; "The bread crusted in the oven" -00356954 30 v 03 heave 0 buckle 0 warp 0 005 @ 00356258 v 0000 + 13885700 n 0301 + 13885700 n 0202 + 07350069 n 0101 ~ 00357198 v 0000 01 + 01 00 | bend out of shape, as under pressure or from heat; "The highway buckled during the heat wave" -00357198 30 v 01 lift 4 001 @ 00356954 v 0000 01 + 08 00 | rise upward, as from pressure or moisture; "The floor is lifting slowly" -00357332 30 v 07 shoot 0 spud 0 germinate 0 pullulate 0 bourgeon 0 burgeon_forth 0 sprout 0 009 @ 00231557 v 0000 + 07719437 n 0701 + 13164583 n 0701 + 13487207 n 0702 + 13544073 n 0401 + 05229805 n 0301 + 13487207 n 0301 + 13164763 n 0101 $ 00357667 v 0000 01 + 01 00 | produce buds, branches, or germinate; "the potatoes sprouted" -00357667 30 v 01 germinate 1 004 $ 00357332 v 0000 @ 00245457 v 0000 + 13487207 n 0101 + 07324235 n 0101 01 + 08 00 | cause to grow or sprout; "the plentiful rain germinated my plants" -00357854 30 v 01 burgeon 1 001 @ 00230746 v 0000 01 + 01 00 | grow and flourish; "The burgeoning administration"; "The burgeoning population" -00357998 30 v 01 bud 0 003 @ 00252019 v 0000 + 11674914 n 0101 + 13165086 n 0101 01 + 01 00 | develop buds; "The hibiscus is budding!" -00358135 30 v 01 root 0 004 @ 00230746 v 0000 + 13125117 n 0101 + 13552124 n 0101 $ 00358314 v 0000 02 + 01 00 + 04 00 | take root and begin to grow; "this plant roots quickly" -00358314 30 v 01 root 1 003 $ 00358135 v 0000 @ 00245457 v 0000 + 13552124 n 0101 01 + 08 00 | cause to take roots -00358431 30 v 12 die 0 decease 0 perish 0 go 0 exit 0 pass_away 0 expire 0 pass b kick_the_bucket 0 cash_in_one's_chips 0 buy_the_farm 0 conk 0 give-up_the_ghost 0 drop_dead 0 pop_off 0 choke 1 croak 0 snuff_it 0 028 $ 02109818 v 0000 @ 00146138 v 0000 + 07333649 n 0801 + 07333649 n 0705 + 07333649 n 0504 + 07333649 n 0406 + 09994943 n 0205 + 07355491 n 0202 + 07355491 n 0101 + 11444117 n 0101 + 15143276 n 0101 + 09488259 n 0101 + 13962498 n 0101 + 00219575 n 0101 ^ 00427683 v 0101 ^ 00427683 v 0102 ^ 00242026 v 0102 ^ 00224168 v 0101 ! 00360932 v 0101 ~ 00060063 v 0000 ~ 00359511 v 0000 ~ 00359806 v 0000 ~ 00360501 v 0000 ~ 00360805 v 0000 $ 00434374 v 0000 ~ 01187537 v 0000 ~ 02620213 v 0000 ~ 02620466 v 0000 01 + 02 00 | pass from physical life and lose all bodily attributes and functions necessary to sustain life; "She died from cancer"; "The children perished in the fire"; "The patient went peacefully"; "The old guy kicked the bucket at the age of 102" -00359405 30 v 01 strangle 6 002 @ 00359511 v 0000 + 14298247 n 0101 01 + 02 00 | die from strangulation -00359511 30 v 03 suffocate 2 stifle 3 asphyxiate 0 008 $ 01569181 v 0000 @ 00358431 v 0000 + 14043882 n 0302 + 00225593 n 0302 + 14042423 n 0301 + 00268383 a 0103 + 00225593 n 0101 ~ 00359405 v 0000 01 + 02 00 | be asphyxiated; die from lack of oxygen; "The child suffocated under the pillow" -00359806 30 v 02 buy_it 0 pip_out 0 002 @ 00358431 v 0000 ;u 07157273 n 0000 01 + 02 00 | be killed or die; -00359916 30 v 01 go 8 001 @ 00426958 v 0000 01 + 01 00 | be abolished or discarded; "These ugly billboards have to go!"; "These luxuries all had to go under the Khmer Rouge" -00360092 30 v 02 leave 3 leave_behind 0 004 $ 02229055 v 0000 * 00358431 v 0000 ~ 00360337 v 0000 $ 02081578 v 0000 01 + 09 00 | be survived by after one's death; "He left six children"; "At her death, she left behind her husband and 11 cats" -00360337 30 v 01 widow 0 002 @ 00360092 v 0000 + 10780284 n 0101 01 + 09 00 | cause to be without a spouse; "The war widowed many women in the former Yugoslavia" -00360501 30 v 01 drown 0 001 @ 00358431 v 0000 01 + 02 00 | die from being submerged in water, getting water into the lungs, and asphyxiating; "The child drowned in the lake" -00360678 30 v 01 fall 9 001 @ 00360932 v 0000 01 + 01 00 | be born, used chiefly of lambs; "The lambs fell in the afternoon" -00360805 30 v 01 predecease 0 001 @ 00358431 v 0000 01 + 09 00 | die before; die earlier than; "She predeceased her husband" -00360932 30 v 01 be_born 0 009 @ 00146138 v 0000 ! 00358431 v 0101 + 15142167 n 0101 + 07320302 n 0101 + 13532886 n 0102 ~ 00063095 v 0000 ~ 00360678 v 0000 ~ 00361208 v 0000 ~ 02698726 v 0000 02 + 01 00 + 02 00 | come into existence through birth; "She was born on a farm" -00361208 30 v 02 come_to_life 0 come_into_being 1 001 @ 00360932 v 0000 02 + 01 00 + 02 00 | be born or come into existence; "All these flowers come to life when the rains come" -00361388 30 v 01 cloud_over 0 001 @ 00146138 v 0000 01 + 01 00 | become overcast; "the sky clouded over" -00361495 30 v 02 mist 0 mist_over 0 002 @ 01207951 v 0000 + 11482706 n 0101 01 + 01 00 | become covered with mist; "The windshield misted over" -00361641 30 v 02 demist 0 defog 0 003 * 00371264 v 0000 @ 00126264 v 0000 + 03174605 n 0101 02 + 08 00 + 11 00 | free from mist; "demist the car windows" -00361797 30 v 01 bloat 0 002 @ 00256507 v 0000 + 14315549 n 0101 01 + 01 00 | become bloated or swollen or puff up; "The dead man's stomach was bloated" -00361952 30 v 01 bloat 1 004 > 00361797 v 0000 @ 00257650 v 0000 + 14315549 n 0101 ~ 00257087 v 0000 01 + 11 00 | make bloated or swollen; "Hunger bloated the child's belly" -00362128 30 v 03 curl 0 curve 0 kink 0 005 * 01280014 v 0000 @ 00356258 v 0000 + 13877918 n 0301 + 02829696 n 0202 + 13875970 n 0104 01 + 01 00 | form a curl, curve, or kink; "the cigar smoke curled up at the ceiling" -00362348 30 v 04 break 2 break_off 0 discontinue 0 stop 5 006 @ 00352826 v 0000 + 01076046 n 0401 + 01022483 n 0302 ~ 00108303 v 0000 ~ 00363742 v 0000 ~ 00778275 v 0000 02 + 08 00 + 11 00 | prevent completion; "stop the project"; "break off the negotiations" -00362610 30 v 02 hold_on 5 stop c 003 @ 00364064 v 0000 + 14010927 n 0206 + 14010927 n 0207 01 + 02 00 | stop and wait, as if awaiting further instructions or developments; "Hold on a moment!" -00362805 30 v 03 cut_short 2 break_short 0 break_off 3 002 @ 00364064 v 0000 ~ 00363003 v 0000 02 + 08 00 + 11 00 | interrupt before its natural or planned end; "We had to cut short our vacation" -00363003 30 v 01 hang_up 0 001 @ 00362805 v 0000 02 + 02 00 + 22 00 | interrupt a telephone conversation -00363110 30 v 02 drop 1 knock_off 0 002 @ 02680814 v 0000 ~ 00363268 v 0000 02 + 08 00 + 02 02 | stop pursuing or acting; "drop a lawsuit"; "knock it off!" -00363268 30 v 03 nolle_pros 0 nolle_prosequi 0 nol.pros. 0 002 @ 00363110 v 0000 + 06505252 n 0201 02 + 08 00 + 09 00 | drop prosecution of by entering a nolle prosequi in the court records; "They nolle prossed the charge" -00363493 30 v 02 freeze 1 suspend 0 005 @ 00364064 v 0000 + 15271008 n 0205 + 14010636 n 0202 + 07368256 n 0201 + 01063697 n 0101 02 + 08 00 + 11 00 | stop a process or a habit by imposing a freeze on it; "Suspend the aid to the war-torn country" -00363742 30 v 02 bog_down 1 bog 1 001 @ 00362348 v 0000 02 + 01 00 + 02 00 | get stuck while doing something; "She bogged down many times while she wrote her dissertation" -00363916 30 v 02 bog_down 0 bog 0 001 @ 00440786 v 0000 02 + 10 00 + 11 00 | cause to slow down or get stuck; "The vote would bog down the house" -00364064 30 v 02 interrupt 0 break 3 004 @ 00352826 v 0000 ~ 00362610 v 0000 ~ 00362805 v 0000 ~ 00363493 v 0000 02 + 08 00 + 11 00 | terminate; "She interrupted her pregnancy"; "break a lucky streak"; "break the cycle of poverty" -00364297 30 v 03 adjourn 0 recess 0 break_up 8 003 @ 02609764 v 0000 + 01062997 n 0202 + 00216038 n 0101 02 + 02 00 + 08 00 | close at the end of a session; "The court adjourned" -00364478 30 v 01 punctuate 1 001 @ 00778275 v 0000 02 + 08 00 + 11 00 | interrupt periodically; "Her sharp questions punctuated the speaker's drone" -00364629 30 v 02 pasteurize 0 pasteurise 0 006 > 00364868 v 0000 @ 00140123 v 0000 + 00254166 n 0202 + 11224877 n 0201 + 00254166 n 0101 + 11224877 n 0101 01 + 08 00 | heat food in order to kill harmful microorganisms; "pasteurize milk" -00364868 30 v 03 condense 1 distill 4 distil 4 006 $ 00365446 v 0000 $ 00366547 v 0000 @ 00443984 v 0000 + 14836960 n 0201 + 13451348 n 0101 + 11446242 n 0102 01 + 01 00 | undergo condensation; change from a gaseous to a liquid state and fall in drops; "water condenses"; "The acid distills at a specific temperature" -00365188 30 v 03 condense 4 concentrate c contract 7 005 @ 00126264 v 0000 + 00365471 n 0301 + 00375071 n 0201 + 07313241 n 0102 $ 00365647 v 0000 02 + 08 00 + 11 00 | compress or concentrate; "Congress condensed the three-year plan into a six-month plan" -00365446 30 v 01 condense 7 004 @ 00339738 v 0000 + 00357680 n 0102 + 00357680 n 0101 $ 00364868 v 0000 01 + 01 00 | develop due to condensation; "All our planets condensed out of the same material" -00365647 30 v 01 condense 6 003 $ 00365188 v 0000 @ 00226566 v 0000 + 07313241 n 0102 01 + 01 00 | become more compact or concentrated; "Her feelings condensed" -00365810 30 v 02 sublime 0 sublimate 0 006 * 00366275 v 0000 * 00366858 v 0000 @ 00109660 v 0000 + 15062284 n 0201 + 15062284 n 0101 ~ 00366741 v 0000 01 + 01 00 | vaporize and then condense right back again -00366020 30 v 02 sublime 5 sublimate 5 003 @ 00442267 v 0000 + 15062284 n 0201 + 07360293 n 0201 02 + 01 00 + 11 00 | change or cause to change directly from a solid into a vapor without first melting; "sublime iodine"; "some salts sublime when heated" -00366275 30 v 01 condense 3 008 @ 00140123 v 0000 + 03087521 n 0101 + 03087643 n 0101 + 13451348 n 0101 + 11446242 n 0101 + 11446242 n 0102 + 00357680 n 0101 $ 00366547 v 0000 01 + 08 00 | cause a gas or vapor to change into a liquid; "The cold air condensed the steam" -00366547 30 v 01 condense 5 006 $ 00366275 v 0000 @ 00173338 v 0000 + 07313241 n 0102 + 00357680 n 0102 + 00357680 n 0101 $ 00364868 v 0000 01 + 08 00 | remove water from; "condense the milk" -00366741 30 v 01 resublime 0 002 @ 00365810 v 0000 ;c 06084469 n 0000 01 + 01 00 | sublime (a compound) once again -00366858 30 v 03 evaporate 0 vaporize 1 vaporise 1 011 @ 00140123 v 0000 + 13572436 n 0302 + 15055633 n 0301 + 13572436 n 0303 + 02519813 a 0204 + 13572436 n 0201 + 15055633 n 0201 + 13572436 n 0203 + 13572436 n 0103 + 13460568 n 0104 ~ 00367563 v 0000 03 + 01 00 + 08 00 + 11 00 | lose or cause to lose liquid by vaporization leaving a more concentrated residue; "evaporate milk" -00367241 30 v 01 pervaporate 0 003 @ 00575970 v 0000 + 00375348 n 0101 $ 00367416 v 0000 02 + 08 00 + 11 00 | cause (a liquid) to evaporate through a semipermeable membrane -00367416 30 v 01 pervaporate 1 003 $ 00367241 v 0000 @ 00575720 v 0000 + 00375348 n 0101 01 + 01 00 | evaporate through a semipermeable membrane -00367563 30 v 01 transpire 2 002 @ 00366858 v 0000 + 13569774 n 0101 01 + 01 00 | exude water vapor; "plants transpire" -00367685 30 v 03 unify 0 unite 0 merge 0 016 @ 00467451 v 0000 + 01238424 n 0302 + 00146856 n 0301 + 00381680 n 0201 + 00381680 n 0203 + 07373602 n 0103 + 00381680 n 0102 + 05869857 n 0101 + 00003553 n 0102 ! 00368662 v 0101 ~ 00242580 v 0000 ~ 00243572 v 0000 ~ 00368522 v 0000 ~ 00368847 v 0000 ~ 00369442 v 0000 ~ 01461152 v 0000 02 + 01 00 + 02 00 | become one; "Germany unified officially in 1990"; "the cells merge" -00368109 30 v 02 unitize 0 unitise 0 007 @ 00654625 v 0000 + 13810323 n 0101 + 13583724 n 0102 + 09465459 n 0101 + 08189659 n 0101 + 05869857 n 0101 + 00003553 n 0102 01 + 08 00 | separate or classify into units; "The hospital was unitized for efficiency" -00368367 30 v 02 clog 3 clot 4 003 @ 01461152 v 0000 + 05402091 n 0201 + 13454479 n 0202 02 + 01 00 + 02 00 | coalesce or unite in a mass; "Blood clots" -00368522 30 v 02 syncretize 1 syncretise 1 002 @ 00367685 v 0000 + 14421724 n 0101 01 + 08 00 | unite (beliefs or conflicting principles) -00368662 30 v 02 disunify 0 break_apart 1 002 @ 02431320 v 0000 ! 00367685 v 0101 01 + 01 00 | break up or separate; "The country is disunifying"; "Yugoslavia broke apart after 1989" -00368847 30 v 01 converge 0 003 @ 00367685 v 0000 + 00612114 a 0101 + 00146572 n 0102 02 + 01 00 + 04 00 | come together so as to form a single product; "Social forces converged to bring the Fascists back to power" -00369064 30 v 01 league 0 003 @ 02469835 v 0000 + 08305114 n 0101 + 08231184 n 0101 02 + 01 00 + 02 00 | unite to form a league -00369194 30 v 03 federate 0 federalize 0 federalise 0 004 @ 02469835 v 0000 + 08303504 n 0101 + 08303275 n 0103 + 01153305 n 0101 01 + 08 00 | unite on a federal basis or band together as a league; "The country was federated after the civil war" -00369442 30 v 03 federate 1 federalize 2 federalise 2 001 @ 00367685 v 0000 01 + 01 00 | enter into a league for a common purpose; "The republics federated to become the Soviet Union" -00369628 30 v 02 carbonize 0 carbonise 0 007 * 00372665 v 0000 @ 00146138 v 0000 + 13443370 n 0202 + 14633206 n 0201 + 02863724 a 0103 + 13443370 n 0101 + 14633206 n 0101 01 + 01 00 | turn into carbon, as by burning; "carbonize coal" -00369864 30 v 03 cool 0 chill 0 cool_down 1 007 @ 00146138 v 0000 + 05015463 n 0201 + 13453160 n 0202 + 05016001 n 0101 + 14822141 n 0101 + 13453160 n 0101 ! 00372665 v 0101 02 + 01 00 + 02 00 | loose heat; "The air cooled considerably after the thunderstorm" -00370126 30 v 03 cool 2 cool_off 0 cool_down 2 001 @ 00109660 v 0000 01 + 01 00 | lose intensity; "His enthusiasm cooled considerably" -00370263 30 v 01 overheat 0 002 @ 00372665 v 0000 + 13530108 n 0101 01 + 01 00 | get excessively and undesirably hot; "The car engines overheated" -00370412 30 v 03 cool 1 chill 1 cool_down 0 014 > 00369864 v 0000 @ 00126264 v 0000 + 05015463 n 0201 + 13453160 n 0202 + 05016001 n 0101 + 07914006 n 0101 + 03102654 n 0101 + 14822141 n 0101 + 13453160 n 0101 + 03102859 n 0102 ! 00371264 v 0101 ~ 00370773 v 0000 ~ 00370921 v 0000 ~ 00371051 v 0000 02 + 08 00 + 11 00 | make cool or cooler; "Chill the food" -00370773 30 v 01 quench 2 001 @ 00370412 v 0000 02 + 08 00 + 11 00 | cool (hot metal) by plunging into cold water or other liquid; "quench steel" -00370921 30 v 01 ice 0 002 @ 00370412 v 0000 + 14915184 n 0101 01 + 08 00 | put ice on or put on ice; "Ice your sprained limbs" -00371051 30 v 01 refrigerate 0 005 @ 00370412 v 0000 + 01253661 a 0101 + 13548531 n 0101 + 15003797 n 0101 + 04070727 n 0101 01 + 08 00 | cool or chill in or as if in a refrigerator; "refrigerate this medicine" -00371264 30 v 02 heat 1 heat_up 0 017 > 00372665 v 0000 @ 00126264 v 0000 + 01249137 a 0101 + 05725527 n 0101 + 05016171 n 0102 + 11466043 n 0101 + 03508101 n 0101 ! 00370412 v 0101 ~ 00322151 v 0000 ~ 00371717 v 0000 ~ 00372157 v 0000 ~ 00372251 v 0000 ~ 00372400 v 0000 ~ 00372501 v 0000 ~ 00377715 v 0000 ~ 00544136 v 0000 ~ 00544280 v 0000 03 + 08 00 + 10 00 + 11 00 | make hot or hotter; "the sun heats the oceans"; "heat the water on the stove" -00371717 30 v 01 scald 1 001 @ 00371264 v 0000 01 + 08 00 | heat to the boiling point; "scald the milk" -00371823 30 v 01 scald 2 001 @ 00515154 v 0000 01 + 08 00 | treat with boiling water; "scald tomatoes so that they can be peeled" -00371955 30 v 01 refrigerate 1 004 @ 00212414 v 0000 + 01253661 a 0101 + 13548531 n 0101 + 04070727 n 0101 01 + 08 00 | preserve by chilling; "many foods must be refrigerated or else they will spoil" -00372157 30 v 01 soak 2 001 @ 00371264 v 0000 01 + 08 00 | heat a metal prior to working it -00372251 30 v 01 calcine 0 003 @ 00371264 v 0000 ;c 06084469 n 0000 + 13442476 n 0101 01 + 08 00 | heat a substance so that it oxidizes or reduces -00372400 30 v 01 preheat 0 001 @ 00371264 v 0000 01 + 08 00 | heat beforehand; "Preheat the oven!" -00372501 30 v 01 overheat 1 003 > 00370263 v 0000 @ 00371264 v 0000 + 13530108 n 0101 01 + 11 00 | make excessively or undesirably hot; "The room was overheated" -00372665 30 v 03 heat 0 hot_up 2 heat_up 1 010 @ 00146138 v 0000 + 01249137 a 0101 + 03509025 n 0104 + 05725527 n 0101 + 05016171 n 0102 + 11466043 n 0101 + 13491876 n 0101 ! 00369864 v 0101 ~ 00370263 v 0000 ~ 02738241 v 0000 01 + 01 00 | gain heat or get hot; "The room heated up quickly" -00372958 30 v 01 warm 1 003 @ 00126264 v 0000 + 03508101 n 0102 ~ 00373397 v 0000 02 + 08 00 + 11 00 | make warm or warmer; "The blanket will warm you" -00373112 30 v 01 warm_up 1 001 @ 00109660 v 0000 01 + 02 00 | become more friendly or open; "She warmed up after we had lunch together" -00373250 30 v 02 warm 0 warm_up 0 002 @ 00109660 v 0000 + 13491876 n 0102 01 + 01 00 | get warm or warmer; "The soup warmed slowly on the stove" -00373397 30 v 01 chafe 0 002 @ 00372958 v 0000 + 14333136 n 0101 02 + 08 00 + 11 00 | warm by rubbing, as with the hands -00373520 30 v 04 carbonize 1 carbonise 1 carburize 0 carburise 0 006 @ 00146138 v 0000 ;c 06084469 n 0000 + 14633206 n 0401 + 14633206 n 0301 + 14633206 n 0201 + 14633206 n 0101 03 + 01 00 + 08 00 + 11 00 | unite with carbon; "carburize metal" -00373766 30 v 03 cauterize 0 cauterise 0 burn 8 010 * 00377715 v 0000 @ 00078760 v 0000 + 14289590 n 0301 + 00668112 n 0203 + 02987047 n 0201 + 00668112 n 0201 + 00668112 n 0102 + 02987047 n 0102 + 02987047 n 0101 + 00668112 n 0101 01 + 08 00 | burn, sear, or freeze (tissue) using a hot iron or electric current or a caustic agent; "The surgeon cauterized the wart" -00374135 30 v 01 freeze 0 007 $ 00445711 v 0000 * 00445169 v 0000 @ 00146138 v 0000 + 13484644 n 0101 + 13484644 n 0102 ! 00375021 v 0101 ~ 00374375 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | change to ice; "The water in the bowl froze" -00374375 30 v 01 glaciate 0 004 @ 00374135 v 0000 + 14519673 n 0101 + 13487409 n 0101 + 09289331 n 0101 01 + 01 00 | become frozen and covered with glaciers -00374534 30 v 01 concrete 0 003 @ 00445467 v 0000 + 07419233 n 0103 + 00382109 n 0104 01 + 08 00 | form into a solid mass; coalesce -00374668 30 v 01 boil 2 005 > 00375021 v 0000 @ 00126264 v 0000 + 05014099 n 0102 + 02863750 n 0101 ~ 00374893 v 0000 02 + 08 00 + 11 00 | bring to, or maintain at, the boiling point; "boil this liquid until it evaporates" -00374893 30 v 01 decoct 0 002 @ 00374668 v 0000 + 13457665 n 0101 01 + 08 00 | extract the essence of something by boiling it -00375021 30 v 01 boil 1 005 @ 00146138 v 0000 + 05014099 n 0102 + 02863750 n 0101 ! 00374135 v 0101 ~ 00375268 v 0000 03 + 01 00 + 02 00 + 08 00 | come to the boiling point and change from a liquid to vapor; "Water boils at 100 degrees Celsius" -00375268 30 v 02 boil_over 0 overboil 0 001 @ 00375021 v 0000 01 + 01 00 | overflow or cause to overflow while boiling; "The milk is boiling over" -00375417 30 v 01 deep_freeze 0 002 @ 00375865 v 0000 + 03170635 n 0101 02 + 08 00 + 11 00 | store in a deep-freeze, as for conservation; "deep-freeze the food" -00375579 30 v 01 ice 3 001 @ 00375865 v 0000 01 + 08 00 | cause to become ice or icy; "an iced summer drink" -00375690 30 v 02 quick-freeze 0 flash-freeze 0 001 @ 00375865 v 0000 01 + 08 00 | freeze rapidly so as to preserve the natural juices and flavors; "quick-freeze the shrimp" -00375865 30 v 01 freeze 2 008 > 00374135 v 0000 @ 00126264 v 0000 + 13484644 n 0101 + 03170635 n 0104 + 13484644 n 0102 ~ 00375417 v 0000 ~ 00375579 v 0000 ~ 00375690 v 0000 02 + 08 00 + 11 00 | cause to freeze; "Freeze the leftover food" -00376106 30 v 06 dissolve 7 thaw 0 unfreeze 0 unthaw 0 dethaw 0 melt 0 010 @ 00443984 v 0000 + 02265594 a 0601 + 13566535 n 0602 + 10307114 n 0601 + 13566535 n 0604 + 11482140 n 0201 + 13566535 n 0201 + 13566535 n 0203 ~ 00376625 v 0000 ~ 00376807 v 0000 03 + 01 00 + 08 00 + 11 00 | become or cause to become soft or liquid; "The sun melted the ice"; "the ice thawed"; "the ice cream melted"; "The heat melted the wax"; "The giant iceberg dissolved over the years during the global warming phase"; "dethaw the meat" -00376625 30 v 01 deliquesce 0 002 @ 00376106 v 0000 + 00492157 a 0101 01 + 01 00 | melt or become liquid by absorbing moisture from the air; "this type of salt deliquesces easily" -00376807 30 v 03 defrost 0 deice 0 de-ice 0 003 @ 00376106 v 0000 + 03172211 n 0202 + 03172211 n 0101 03 + 01 00 + 08 00 + 11 00 | make or become free of frost or ice; "Defrost the car window" -00377002 30 v 02 burn 0 combust 0 014 @ 00146138 v 0000 + 00472992 a 0201 + 00473502 a 0203 + 13450206 n 0201 + 00473243 a 0101 + 00403911 n 0101 ~ 00377351 v 0000 ~ 00377569 v 0000 $ 00378664 v 0000 ~ 00582743 v 0000 ~ 00585148 v 0000 ~ 02759443 v 0000 ~ 02762806 v 0000 ~ 02764438 v 0000 01 + 01 00 | undergo combustion; "Maple wood burns well" -00377351 30 v 03 burn_down 0 burn_up 3 go_up 4 002 @ 00377002 v 0000 ~ 00378361 v 0000 01 + 01 00 | burn completely; be consumed or destroyed by fire; "The hut burned down"; "The mountain of paper went up in flames" -00377569 30 v 02 smolder 0 smoulder 0 002 @ 00377002 v 0000 + 07304096 n 0201 01 + 01 00 | burn slowly and without a flame; "a smoldering fire" -00377715 30 v 02 sear 0 scorch 3 004 @ 00371264 v 0000 + 14289942 n 0201 + 04695504 n 0201 ~ 00377906 v 0000 02 + 08 00 + 11 00 | make very hot and dry; "The heat scorched the countryside" -00377906 30 v 01 sizzle 0 001 @ 00377715 v 0000 02 + 08 00 + 11 00 | burn or sear with a sizzling sound; "The fat sizzled in the pan" -00378042 30 v 02 burn 1 incinerate 0 009 @ 00140123 v 0000 + 00378706 n 0201 + 03566193 n 0201 + 00473243 a 0101 + 04694090 n 0101 + 00403911 n 0101 + 02923129 n 0101 $ 00378361 v 0000 $ 00378664 v 0000 04 + 01 00 + 08 00 + 10 00 + 11 00 | cause to undergo combustion; "burn garbage"; "The car burns only Diesel oil" -00378361 30 v 01 incinerate 1 003 $ 00378042 v 0000 @ 00377351 v 0000 + 00378706 n 0101 01 + 01 00 | become reduced to ashes; "The paper incinerated quickly" -00378521 30 v 02 singe 0 swinge 0 002 @ 00379440 v 0000 + 14289942 n 0102 01 + 08 00 | burn superficially or lightly; "I singed my eyebrows" -00378664 30 v 03 burn 2 fire 1 burn_down 2 012 $ 00377002 v 0000 $ 00378042 v 0000 @ 01564144 v 0000 + 03343560 n 0201 + 13480848 n 0201 + 07302836 n 0201 + 00473243 a 0101 + 04694090 n 0101 ~ 00379023 v 0000 ~ 00379154 v 0000 ~ 00379280 v 0000 ~ 00582527 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | destroy by fire; "They burned the house and his diaries" -00379023 30 v 01 backfire 0 001 @ 00378664 v 0000 01 + 02 00 | set a controlled fire to halt an advancing forest to prairie fire -00379154 30 v 01 cremate 0 002 @ 00378664 v 0000 + 00378880 n 0101 02 + 08 00 + 09 00 | reduce to ashes; "Cremate a corpse" -00379280 30 v 01 torch 0 003 @ 00378664 v 0000 + 04456115 n 0101 + 02855390 n 0102 01 + 08 00 | burn maliciously, as by arson; "The madman torched the barns" -00379440 30 v 04 char 0 blacken 1 sear 1 scorch 2 004 @ 00196364 v 0000 ;c 00243918 n 0000 + 14289942 n 0401 ~ 00378521 v 0000 02 + 08 00 + 11 00 | burn slightly and superficially so as to affect color; "The cook blackened the chicken breast"; "The fire charred the ceiling above the mantelpiece"; "the flames scorched the ceiling" -00379774 30 v 02 blister 0 vesicate 0 006 @ 00256507 v 0000 + 01611683 a 0201 + 01611683 a 0202 + 13573181 n 0202 + 05517837 n 0101 $ 00379996 v 0000 01 + 01 00 | get blistered; "Her feet blistered during the long hike" -00379996 30 v 01 blister 1 002 $ 00379774 v 0000 @ 00126264 v 0000 01 + 08 00 | cause blisters to form on; "the tight shoes and perspiration blistered her feet" -00380159 30 v 03 switch 1 change_over 1 shift 0 006 @ 00126264 v 0000 + 07444668 n 0301 + 00196084 n 0101 + 00196084 n 0102 ~ 00560628 v 0000 ~ 00560764 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | make a shift in or exchange of; "First Joe led; then we switched" -00380424 30 v 03 permute 0 commute 0 transpose 0 006 @ 00138508 v 0000 + 00339776 n 0301 + 00196485 n 0203 + 00339646 n 0101 + 00870312 n 0101 ~ 00380698 v 0000 03 + 01 00 + 08 00 + 11 00 | change the order or arrangement of; "Dyslexics often transpose letters in a word" -00380698 30 v 02 map 0 represent 6 003 @ 00380424 v 0000 + 13783816 n 0104 + 13783816 n 0105 02 + 04 00 + 21 00 | to establish a mapping (of mathematical elements or sets) -00380872 30 v 01 transpose 1 002 @ 00126264 v 0000 + 00102162 n 0101 01 + 08 00 | change key; "Can you transpose this fugue into G major?" -00381013 30 v 02 convert 0 change_over 2 008 @ 00126264 v 0000 + 07415730 n 0203 + 07415730 n 0101 + 03099945 n 0101 ~ 00162549 v 0000 ~ 00381331 v 0000 ~ 00530592 v 0000 ~ 00566181 v 0000 03 + 01 00 + 08 00 + 11 00 | change from one system to another or to a new plan or policy; "We converted from 220 to 110 Volt" -00381331 30 v 04 metricize 0 metricise 0 metrify 0 metricate 0 002 @ 00381013 v 0000 + 00194645 n 0402 01 + 08 00 | convert from a non-metric to the metric system -00381496 30 v 01 flour 0 002 @ 00115157 v 0000 + 07569106 n 0101 01 + 08 00 | convert grain into flour -00381601 30 v 03 transform 3 transmute 0 metamorphose 2 003 @ 00109660 v 0000 ~ 00382410 v 0000 ~ 02626604 v 0000 01 + 01 00 | change in outward structure or looks; "He transformed into a monster"; "The salesman metamorphosed into an ugly beetle" -00381850 30 v 01 transform 4 003 @ 00126264 v 0000 ;c 06090869 n 0000 + 04471315 n 0101 01 + 08 00 | increase or decrease (an alternating current or voltage) -00382010 30 v 01 transform 5 003 @ 00126264 v 0000 ;c 06037666 n 0000 + 00399030 n 0101 01 + 08 00 | change (a bacterial cell) into a genetically distinct cell by the introduction of DNA from another cell of the same or closely related species -00382256 30 v 01 transform 6 002 @ 00126264 v 0000 ;c 06090869 n 0000 01 + 08 00 | convert (one form of energy) to another; "transform energy to light" -00382410 30 v 01 aurify 1 001 @ 00381601 v 0000 01 + 08 00 | transform into gold -00382493 30 v 01 transmute 1 003 @ 00126264 v 0000 ;c 06084469 n 0000 + 07416441 n 0101 02 + 08 00 + 11 00 | alter the nature of (elements) -00382635 30 v 03 transform 0 transmute 2 transubstantiate 0 009 @ 00126264 v 0000 + 01250826 n 0302 + 01250826 n 0201 + 00398704 n 0101 ~ 00383093 v 0000 ~ 00383275 v 0000 ~ 00569087 v 0000 ~ 00569318 v 0000 ~ 01668603 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | change or alter in form, appearance, or nature; "This experience transformed her completely"; "She transformed the clay into a beautiful sculpture"; "transubstantiate one element into another" -00383093 30 v 01 transubstantiate 1 003 @ 00382635 v 0000 ;c 06226057 n 0000 + 06192411 n 0101 01 + 08 00 | change (the Eucharist bread and wine) into the body and blood of Christ -00383275 30 v 02 sorcerize 0 sorcerise 0 003 @ 00382635 v 0000 + 05978812 n 0201 + 05978812 n 0101 02 + 08 00 + 09 00 | transform or change by means of sorcery -00383437 30 v 01 ash 0 002 @ 00126264 v 0000 + 14769160 n 0101 02 + 08 00 + 11 00 | convert into ashes -00383542 30 v 02 translate 1 transform 1 004 @ 00126264 v 0000 + 00398704 n 0102 ~ 00383764 v 0000 ~ 00521874 v 0000 02 + 08 00 + 21 00 | change from one form or medium into another; "Braque translated collage into oil" -00383764 30 v 02 metricize 1 metricise 1 001 @ 00383542 v 0000 01 + 08 00 | express in the metric system -00383871 30 v 01 reclaim 0 002 @ 00115157 v 0000 + 00269018 n 0101 01 + 08 00 | make useful again; transform from a useless or uncultivated state; "The people reclaimed the marshes" -00384055 30 v 03 metamorphose 0 transfigure 0 transmogrify 0 003 @ 00138508 v 0000 + 00399846 n 0301 + 00402308 n 0201 01 + 01 00 | change completely the nature or appearance of; "In Kafka's story, a person metamorphoses into a bug"; "The treatment and diet transfigured her into a beautiful young woman"; "Jesus was transfigured after his resurrection" -00384411 30 v 01 convert 1 004 $ 00385385 v 0000 @ 00109660 v 0000 + 07355194 n 0101 + 09962414 n 0101 02 + 02 00 + 22 00 | change religious beliefs, or adopt a religious belief; "She converted to Buddhism" -00384620 30 v 04 reform 4 reclaim 8 regenerate 5 rectify 8 010 $ 00167934 v 0000 @ 00126264 v 0000 + 00258854 n 0402 + 00095971 n 0201 + 01197386 a 0101 + 01197386 a 0102 + 00261405 n 0101 + 10515194 n 0102 + 00095971 n 0102 ~ 00385047 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring, lead, or force to abandon a wrong or evil course of life, conduct, and adopt a right one; "The Church reformed me"; "reform your conduct" -00385047 30 v 02 moralize 0 moralise 0 003 @ 00384620 v 0000 + 00265773 n 0202 + 00265773 n 0101 02 + 09 00 + 10 00 | improve the morals of -00385189 30 v 01 regenerate 6 002 @ 00153263 v 0000 + 13539262 n 0102 01 + 08 00 | amplify (an electron current) by causing part of the power in the output circuit to act upon the input circuit -00385385 30 v 01 convert 7 009 > 00384411 v 0000 @ 00126264 v 0000 + 09962414 n 0101 $ 00384411 v 0000 ~ 00385685 v 0000 ~ 00385865 v 0000 ~ 00386390 v 0000 ~ 00386566 v 0000 ~ 00769834 v 0000 01 + 09 00 | cause to adopt a new or different faith; "The missionaries converted the Indian population" -00385685 30 v 02 Islamize 0 Islamise 0 002 > 00384411 v 0000 @ 00385385 v 0000 01 + 09 00 | convert to Islam; "The Mughals Islamized much of Northern India in the 16th century" -00385865 30 v 02 Christianize 0 Christianise 0 003 @ 00385385 v 0000 + 07355347 n 0202 + 07355347 n 0101 01 + 09 00 | convert to Christianity; "missionaries have tried to Christianize native people all over the world" -00386085 30 v 01 Christianize 1 001 @ 00299580 v 0000 02 + 08 00 + 11 00 | adapt in the name of Christianity; "some people want to Christianize ancient pagan sites" -00386252 30 v 02 Islamize 1 Islamise 1 001 @ 00126264 v 0000 01 + 08 00 | cause to conform to Islamic law; "Islamize the dietary laws" -00386390 30 v 02 evangelize 0 evangelise 0 002 @ 00385385 v 0000 + 07244613 n 0201 01 + 09 00 | convert to Christianity; "The missionaries evangelized the Pacific Islanders" -00386566 30 v 04 catholicize 0 catholicise 0 latinize 0 latinise 0 002 @ 00385385 v 0000 + 06227263 n 0101 01 + 09 00 | cause to adopt Catholicism -00386715 30 v 03 turn_back 9 invert 0 reverse 1 008 @ 00126264 v 0000 + 01759676 a 0301 + 00346693 n 0302 + 07411160 n 0301 + 00346693 n 0303 + 00335653 n 0201 + 00335814 n 0201 + 03582959 n 0201 02 + 08 00 + 11 00 | turn inside out or upside down -00386965 30 v 02 invert 3 reverse 3 001 @ 00659112 v 0000 01 + 08 00 | reverse the position, order, relation, or condition of; "when forming a question, invert the subject and the verb" -00387153 30 v 01 invert 1 002 @ 00126264 v 0000 ;c 07020895 n 0000 01 + 08 00 | make an inversion (in a musical composition); "here the theme is inverted" -00387310 30 v 05 revert 0 return 0 retrovert 0 regress 1 turn_back 0 011 @ 00138508 v 0000 + 00235208 n 0402 + 00235208 n 0401 + 00235208 n 0305 + 07447022 n 0201 + 00203123 a 0102 + 00235208 n 0103 + 00068333 n 0107 ~ 00093327 v 0000 ~ 00387680 v 0000 ~ 00528339 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | go back to a previous state; "We reverted to the old rules" -00387680 30 v 01 resile 2 005 @ 00387310 v 0000 + 00843595 a 0104 + 05020697 n 0102 + 07350567 n 0101 + 05020697 n 0101 01 + 01 00 | return to the original position or state after being stretched or compressed; "The rubber tubes resile" -00387919 30 v 02 customize 0 customise 0 002 @ 01654628 v 0000 @ 00126264 v 0000 01 + 08 00 | make according to requirements; "customize a car" -00388065 30 v 04 personalize 0 personalise 0 individualize 0 individualise 0 004 @ 00126264 v 0000 + 00007846 n 0302 ! 00388296 v 0202 ! 00388296 v 0101 02 + 08 00 + 11 00 | make personal or more personal; "personalized service" -00388296 30 v 03 depersonalize 0 depersonalise 0 objectify 0 007 @ 00126264 v 0000 + 14394094 n 0202 + 00932298 n 0202 ! 00388065 v 0202 + 14394094 n 0101 + 00932298 n 0101 ! 00388065 v 0101 02 + 08 00 + 11 00 | make impersonal or present as an object; "Will computers depersonalize human interactions?"; "Pornography objectifies women" -00388635 30 v 06 lay_waste_to 0 waste 0 devastate 0 desolate 1 ravage 1 scourge 2 013 @ 01564144 v 0000 + 14445226 n 0603 + 07334876 n 0501 + 00967157 n 0501 + 14525548 n 0402 + 14562142 n 0402 + 07335414 n 0402 + 14562142 n 0301 + 07335414 n 0301 + 00967157 n 0302 + 00217014 n 0302 + 10008716 n 0204 ~ 01566490 v 0000 02 + 08 00 + 11 00 | cause extensive destruction or ruin utterly; "The enemy lay waste to the countryside after the invasion" -00389083 30 v 02 harry 0 ravage 0 002 @ 01564144 v 0000 + 07334876 n 0201 01 + 08 00 | make a pillaging or destructive raid on (a place), as in wartimes -00389238 30 v 01 emaciate 0 002 @ 00146138 v 0000 + 05001867 n 0103 01 + 02 00 | grow weak and thin or waste away physically; "She emaciated during the chemotherapy" -00389406 30 v 03 waste 1 emaciate 1 macerate 3 006 > 00389238 v 0000 @ 00389638 v 0000 + 05001867 n 0305 + 05001867 n 0203 + 13574452 n 0101 + 14548105 n 0103 01 + 10 00 | cause to grow thin or weak; "The treatment emaciated him" -00389638 30 v 03 enfeeble 0 debilitate 0 drain 4 006 @ 00224901 v 0000 + 01358096 a 0201 + 14547643 n 0203 + 07331210 n 0201 + 07331210 n 0103 ~ 00389406 v 0000 01 + 10 00 | make weak; "Life in the camp drained him" -00389856 30 v 01 enervate 0 003 @ 00224901 v 0000 + 07331210 n 0102 + 05041871 n 0101 02 + 09 00 + 10 00 | weaken mentally or morally -00389992 30 v 03 pine_away 0 waste 2 languish 0 003 @ 00223500 v 0000 + 10246395 n 0301 + 13574452 n 0201 02 + 01 00 + 02 00 | lose vigor, health, or flesh, as through grief; "After her husband died, she just pined away" -00390215 30 v 05 dampen 0 damp 0 soften 2 weaken 4 break 9 005 @ 00192051 v 0000 + 09476521 n 0401 + 03161725 n 0201 ~ 00316390 v 0000 ~ 00390560 v 0000 03 + 01 00 + 08 00 + 11 00 | lessen in force or effect; "soften a shock"; "break a fall" -00390459 30 v 01 dampen 2 001 @ 00440286 v 0000 02 + 08 00 + 11 00 | check; keep in check (a fire) -00390560 30 v 03 dampen 3 deaden 6 damp 1 002 @ 00390215 v 0000 + 03161450 n 0301 02 + 08 00 + 11 00 | make vague or obscure or make (an image) less visible; "muffle the message" -00390741 30 v 01 shush 0 001 @ 00461493 v 0000 01 + 09 00 | silence (someone) by uttering `shush!' -00390842 30 v 02 stifle 0 dampen 5 004 @ 00462092 v 0000 + 10656223 n 0101 ! 00503164 v 0101 ~ 00391021 v 0000 02 + 08 00 + 11 00 | smother or suppress; "Stifle your curiosity" -00391021 30 v 02 suffocate 3 choke 6 002 @ 00390842 v 0000 $ 00391203 v 0000 02 + 10 00 + 11 00 | suppress the development, creativity, or imagination of; "His job suffocated him" -00391203 30 v 02 suffocate 8 choke 8 002 $ 00391021 v 0000 @ 02626604 v 0000 01 + 02 00 | become stultified, suppressed, or stifled; "He is suffocating--living at home with his aged parents in the small village" -00391417 30 v 03 choke_off 0 choke_down 0 choke_back 0 001 @ 00462092 v 0000 02 + 08 00 + 11 00 | suppress; "He choked down his rage" -00391553 30 v 01 dampen 4 001 @ 00224901 v 0000 02 + 08 00 + 11 00 | reduce the amplitude (of oscillations or waves) -00391672 30 v 01 dull 1 002 @ 00223500 v 0000 ~ 00391833 v 0000 02 + 08 00 + 11 00 | make less lively or vigorous; "Middle age dulled her appetite for travel" -00391833 30 v 01 cloud 3 001 @ 00391672 v 0000 01 + 11 00 | make milky or dull; "The chemical clouded the liquid to which it was added" -00391971 30 v 01 dull 0 001 @ 00109660 v 0000 01 + 01 00 | become dull or lusterless in appearance; lose shine or brightness; "the varnished table top dulled with time" -00392142 30 v 01 pall 0 001 @ 00223500 v 0000 01 + 01 00 | lose strength or effectiveness; become or appear boring, insipid, or tiresome (to); "the course palled on her" -00392314 30 v 01 sharpen 0 001 @ 00226566 v 0000 01 + 01 00 | become sharp or sharper; "The debate sharpened" -00392426 30 v 01 sharpen 1 002 > 00392314 v 0000 @ 00227165 v 0000 02 + 08 00 + 11 00 | make crisp or more crisp and precise; "We had to sharpen our arguments" -00392588 30 v 02 sharpen 5 heighten 5 002 @ 00227165 v 0000 ~ 00392758 v 0000 02 + 08 00 + 11 00 | make (one's senses) more acute; "This drug will sharpen your vision" -00392758 30 v 02 subtilize 1 subtilise 1 001 @ 00392588 v 0000 01 + 08 00 | make (senses) more keen -00392860 30 v 01 strap 0 001 @ 01246601 v 0000 01 + 08 00 | sharpen with a strap; "strap a razor" -00392960 30 v 03 sharpen 8 taper 0 point 0 009 @ 00140967 v 0000 + 13902482 n 0301 + 03974215 n 0301 + 05071556 n 0301 + 05071368 n 0201 + 13902793 n 0201 ^ 00305417 v 0201 ^ 02683671 v 0201 ~ 00393227 v 0000 01 + 08 00 | give a point to; "The candles are tapered" -00393227 30 v 01 acuminate 0 003 @ 00392960 v 0000 + 13089526 n 0101 + 05621808 n 0102 02 + 08 00 + 11 00 | make sharp or acute; taper; make (something) come to a point -00393398 30 v 01 sharpen 2 003 @ 00126264 v 0000 ;c 07020895 n 0000 ! 00393534 v 0101 01 + 08 00 | raise the pitch of (musical notes) -00393534 30 v 02 flatten 3 drop 5 003 @ 00126264 v 0000 ;c 07020895 n 0000 ! 00393398 v 0101 01 + 08 00 | lower the pitch of (musical notes) -00393677 30 v 03 acclimatize 0 acclimatise 0 acclimate 0 007 @ 00150287 v 0000 + 14519366 n 0301 + 13424643 n 0303 + 13424643 n 0202 + 14519366 n 0201 + 13424643 n 0101 + 14519366 n 0101 02 + 02 00 + 22 00 | get used to a certain climate; "They never acclimatized in Egypt" -00393953 30 v 03 synchronize 0 synchronise 0 sync 0 015 @ 00296178 v 0000 + 01001097 n 0202 + 00807500 n 0202 + 04375926 n 0204 + 13845239 n 0202 + 01001097 n 0204 ! 00394563 v 0202 + 01001097 n 0101 + 00807500 n 0101 + 04375926 n 0103 + 13845239 n 0102 + 01001097 n 0103 + 00807500 n 0103 ! 00394563 v 0101 ~ 00394381 v 0000 02 + 08 00 + 11 00 | make synchronous and adjust in time or manner; "Let's synchronize our efforts" -00394381 30 v 01 phase 0 002 @ 00393953 v 0000 + 15290132 n 0101 01 + 08 00 | adjust so as to be in a synchronized condition; "he phased the intake with the output of the machine" -00394563 30 v 02 desynchronize 0 desynchronise 0 006 @ 00138508 v 0000 + 13845838 n 0204 ! 00393953 v 0202 + 13845838 n 0103 + 13845838 n 0105 ! 00393953 v 0101 02 + 08 00 + 11 00 | cause to become desynchronized; cause to occur at unrelated times -00394813 30 v 0b blend 0 flux 0 mix 0 conflate 0 commingle 0 immix 0 fuse 0 coalesce 0 meld 0 combine 0 merge 1 031 @ 00140123 v 0000 + 07963711 n 0a01 + 07373803 n 0a02 + 00378985 n 0a02 + 00382109 n 0803 + 14418662 n 0801 + 00382109 n 0802 + 01506385 a 0701 + 07373602 n 0701 + 00380568 n 0701 + 00509377 a 0302 + 03775199 n 0301 + 00380083 n 0301 + 07374756 n 0301 + 14586258 n 0301 + 08398773 n 0302 + 07882497 n 0302 + 00380083 n 0304 ^ 00620379 v 0302 + 14860102 n 0201 + 07375405 n 0101 + 00380696 n 0101 ~ 00395583 v 0000 ~ 00395698 v 0000 ~ 00395841 v 0000 ~ 00396035 v 0000 ~ 00396325 v 0000 ~ 00396513 v 0000 ~ 00396703 v 0000 ~ 00396880 v 0000 ~ 00553616 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | mix together different elements; "The colors blend well" -00395583 30 v 01 gauge 3 001 @ 00394813 v 0000 02 + 08 00 + 11 00 | mix in specific proportions; "gauge plaster" -00395698 30 v 01 absorb 0 001 @ 00394813 v 0000 01 + 11 00 | cause to become one with; "The sales tax is absorbed into the state income tax" -00395841 30 v 02 melt 2 meld 6 001 @ 00394813 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | lose its distinct outline or shape; blend gradually; "Hundreds of actors were melting into the scene" -00396035 30 v 02 blend_in 0 mix_in 0 002 @ 00394813 v 0000 ~ 00396234 v 0000 01 + 08 00 | cause (something) to be mixed with (something else); "At this stage of making the cake, blend in the nuts" -00396234 30 v 01 cut_in 1 001 @ 00396035 v 0000 01 + 08 00 | mix in with cutting motions -00396325 30 v 01 accrete 0 003 @ 00394813 v 0000 ;c 00017222 n 0000 + 02535533 a 0101 01 + 01 00 | grow together (of plants and organs); "After many years the rose bushes grew together" -00396513 30 v 01 conjugate 0 003 @ 00394813 v 0000 ;c 06084469 n 0000 + 14820425 n 0102 01 + 08 00 | unite chemically so that the product is easily broken down into the original compounds -00396703 30 v 01 admix 0 004 @ 00394813 v 0000 ;c 06084469 n 0000 + 02681084 n 0101 + 00380083 n 0103 01 + 08 00 | mix or blend; "Hyaline casts were admixed with neutrophils" -00396880 30 v 01 alloy 2 003 @ 00394813 v 0000 ;c 06084469 n 0000 ;c 06125698 n 0000 01 + 08 00 | make an alloy of -00396997 30 v 01 fuse 2 004 $ 00397192 v 0000 @ 00444629 v 0000 + 01506385 a 0101 + 00380568 n 0101 02 + 08 00 + 11 00 | make liquid or plastic by heating; "The storm fused the electric mains" -00397192 30 v 01 fuse 3 004 @ 00443984 v 0000 * 00372665 v 0000 + 01506385 a 0101 $ 00396997 v 0000 01 + 01 00 | become plastic or fluid or liquefied from heat; "The substances fused at a very high temperature" -00397405 30 v 02 crumble 0 fall_apart 4 001 @ 00397576 v 0000 02 + 01 00 + 04 00 | break or fall apart into fragments; "The cookies crumbled"; "The Sphinx is crumbling" -00397576 30 v 01 disintegrate 0 012 @ 00140123 v 0000 + 01331878 a 0101 + 14561327 n 0102 + 13467916 n 0102 ! 00466651 v 0101 ~ 00332154 v 0000 ~ 00332445 v 0000 ~ 00332672 v 0000 ~ 00397405 v 0000 ~ 00397987 v 0000 ~ 00446329 v 0000 ~ 01562061 v 0000 02 + 01 00 + 11 00 | break into parts or components or lose cohesion or unity; "The material disintegrated"; "the group disintegrated after the leader died" -00397987 30 v 01 digest 7 002 $ 00209420 v 0000 @ 00397576 v 0000 01 + 01 00 | soften or disintegrate, as by undergoing exposure to heat or moisture -00398138 30 v 01 fold 0 001 @ 00466651 v 0000 02 + 08 00 + 21 00 | incorporate a food ingredient into a mixture by repeatedly turning it over without stirring or beating; "Fold the egg whites into the batter" -00398349 30 v 01 reintegrate 0 001 @ 00466651 v 0000 02 + 08 00 + 11 00 | integrate again; "Russia must be reintegrated into Europe" -00398484 30 v 01 macerate 1 003 * 00216216 v 0000 @ 00255389 v 0000 + 13510152 n 0101 01 + 11 00 | soften, usually by steeping in liquid, and cause to disintegrate as a result; "macerate peaches"; "the gizzards macerates the food in the digestive system" -00398741 30 v 01 macerate 2 003 @ 00254867 v 0000 + 02901331 a 0101 $ 00398953 v 0000 01 + 01 00 | become soft or separate and disintegrate as a result of excessive soaking; "the tissue macerated in the water" -00398953 30 v 01 macerate 4 002 $ 00398741 v 0000 @ 01458973 v 0000 01 + 11 00 | separate into constituents by soaking -00399074 30 v 03 disintegrate 1 decay 1 decompose 2 006 @ 00140123 v 0000 ;c 06090869 n 0000 + 13456899 n 0201 + 13456567 n 0201 + 13456899 n 0103 $ 00399368 v 0000 01 + 01 00 | lose a stored charge, magnetic flux, or current; "the particles disintegrated during the nuclear fission process" -00399368 30 v 01 disintegrate 3 005 $ 00399074 v 0000 @ 00126264 v 0000 ;c 06090869 n 0000 + 01331878 a 0101 + 13456899 n 0103 01 + 11 00 | cause to undergo fission or lose particles -00399553 30 v 01 putrefy 0 006 @ 00552815 v 0000 * 02123672 v 0000 + 02115034 a 0101 + 02115034 a 0102 + 14560926 n 0101 + 13458019 n 0104 02 + 01 00 + 04 00 | become putrid; decay with an offensive smell; "organic matter putrefies" -00399788 30 v 02 magnetize 0 magnetise 0 010 @ 00126264 v 0000 ;c 06090869 n 0000 + 13510433 n 0202 + 03705379 n 0201 ! 00400101 v 0202 + 13599547 n 0101 + 13510433 n 0101 + 05020225 n 0101 + 03705379 n 0101 ! 00400101 v 0101 02 + 08 00 + 11 00 | make magnetic; "The strong magnet magnetized the iron shavings" -00400101 30 v 03 demagnetize 0 demagnetise 0 degauss 0 007 @ 00126264 v 0000 ;c 06090869 n 0000 + 13460129 n 0301 + 13460991 n 0202 ! 00399788 v 0202 + 13460991 n 0101 ! 00399788 v 0101 02 + 08 00 + 11 00 | make nonmagnetic; take away the magnetic properties (of); "demagnetize the iron shavings"; "they degaussed the ship" -00400427 30 v 01 simplify 0 007 @ 00126264 v 0000 + 06739180 n 0101 + 00192300 n 0102 + 01211888 n 0101 ! 00402539 v 0101 ~ 00242396 v 0000 ~ 00400741 v 0000 02 + 08 00 + 11 00 | make simpler or easier or reduce in complexity or extent; "We had to simplify the instructions"; "this move will simplify our lives" -00400741 30 v 01 oversimplify 0 002 @ 00400427 v 0000 + 06739345 n 0101 01 + 08 00 | make too simple; "Don't oversimplify the instructions" -00400883 30 v 04 complicate 1 refine 6 rarify 0 elaborate 0 009 @ 00126264 v 0000 + 07357679 n 0402 + 04766852 n 0402 + 00250710 n 0401 + 04766620 n 0102 + 01076359 n 0101 ~ 00401538 v 0000 ~ 00402130 v 0000 ~ 00402389 v 0000 02 + 08 00 + 11 00 | make more complex, intricate, or richer; "refine a design or pattern" -00401202 30 v 01 complexify 0 003 @ 00402539 v 0000 + 04766275 n 0101 + 09947127 n 0101 02 + 08 00 + 10 00 | make complex; "he unnecessarily complexified every problem" -00401373 30 v 02 complexify 1 ramify 4 002 @ 00109660 v 0000 + 07423899 n 0202 01 + 01 00 | have or develop complicating consequences; "These actions will ramify" -00401538 30 v 01 involve 0 001 @ 00400883 v 0000 02 + 08 00 + 11 00 | make complex or intricate or complicated; "The situation was rather involved" -00401688 30 v 01 refine 5 002 @ 00126264 v 0000 + 06606191 n 0105 02 + 08 00 + 11 00 | make more precise or increase the discriminatory powers of; "refine a method of analysis"; "refine the constant in the equation" -00401906 30 v 01 refine 3 001 @ 00220701 v 0000 02 + 08 00 + 11 00 | attenuate or reduce in vigor, strength, or validity by polishing or purifying; "many valuable nutrients are refined out of the foods in our modern diet" -00402130 30 v 01 develop d 003 $ 00925873 v 0000 @ 00400883 v 0000 $ 00545557 v 0000 01 + 08 00 | elaborate by the unfolding of a musical idea and by the working out of the rhythmic and harmonic changes in the theme; "develop the melody and change the key" -00402389 30 v 01 sophisticate 0 002 @ 00400883 v 0000 + 05641205 n 0101 02 + 08 00 + 11 00 | make more complex or refined; "a sophisticated design" -00402539 30 v 02 complicate 0 perplex 0 008 @ 00126264 v 0000 + 14074041 n 0101 + 13933221 n 0101 + 07423899 n 0101 + 01076359 n 0101 ! 00400427 v 0101 ~ 00401202 v 0000 ~ 00402831 v 0000 02 + 08 00 + 11 00 | make more complicated; "There was a new development that complicated the matter" -00402831 30 v 03 snarl 0 snarl_up 0 embrangle 0 003 @ 00402539 v 0000 + 05685879 n 0102 ~ 00403016 v 0000 02 + 08 00 + 11 00 | make more complicated or confused through entanglements -00403016 30 v 01 snafu 0 002 @ 00402831 v 0000 + 00075283 n 0101 02 + 08 00 + 11 00 | cause to be in a state of complete confusion -00403149 30 v 02 pressurize 0 pressurise 0 005 @ 00296178 v 0000 + 11495041 n 0201 ! 00403967 v 0202 + 11495041 n 0101 ! 00403967 v 0101 01 + 08 00 | increase the pressure in or of; "The captain will pressurize the cabin for the passengers' comfort" -00403401 30 v 02 pressurize 1 pressurise 1 003 @ 02681795 v 0000 + 11495041 n 0201 + 11495041 n 0101 01 + 08 00 | maintain a certain pressure; "the airplane cabin is pressurized"; "pressurize a space suit" -00403609 30 v 03 supercharge 0 pressurize 2 pressurise 2 004 @ 00126264 v 0000 + 11495041 n 0301 + 11495041 n 0201 + 04357930 n 0101 01 + 08 00 | increase the pressure on a gas or liquid -00403798 30 v 01 puncture 0 002 @ 00403967 v 0000 + 07314658 n 0101 02 + 08 00 + 11 00 | cause to lose air pressure or collapse by piercing; "puncture an air balloon" -00403967 30 v 03 depressurize 0 depressurise 0 decompress 0 006 @ 00296178 v 0000 + 00357451 n 0301 + 00357451 n 0302 ! 00403149 v 0202 ! 00403149 v 0101 ~ 00403798 v 0000 01 + 08 00 | decrease the pressure of; "depressurize the cabin in the air plane" -00404222 30 v 01 structure 0 004 @ 00404642 v 0000 + 05726345 n 0101 + 04931965 n 0101 ~ 00404401 v 0000 02 + 08 00 + 11 00 | give a structure to; "I need to structure my days" -00404401 30 v 02 restructure 2 reconstitute 2 001 @ 00404222 v 0000 02 + 08 00 + 11 00 | construct or form anew or provide with a new structure; "After his accident, he had to restructure his life"; "The governing board was reconstituted" -00404642 30 v 03 organize 0 organise 0 coordinate 0 016 @ 01463963 v 0000 + 09963914 n 0301 + 05726596 n 0203 + 04768657 n 0202 + 01008378 n 0202 + 01136519 n 0202 + 10383237 n 0101 + 03918737 n 0105 + 08164585 n 0106 + 05726596 n 0102 + 04768657 n 0101 + 00237078 n 0104 + 01008378 n 0101 + 01136519 n 0101 ~ 00404222 v 0000 ~ 00405079 v 0000 02 + 08 00 + 11 00 | bring order and organization to; "Can you help me organize my files?" -00405079 30 v 02 interlock 0 mesh 0 002 @ 00404642 v 0000 + 00140393 n 0103 01 + 08 00 | coordinate in such a way that all parts work together effectively -00405236 30 v 03 centralize 0 centralise 0 concentrate 2 008 @ 00126264 v 0000 ! 00405540 v 0302 + 01015175 n 0202 + 01237872 n 0202 ! 00405540 v 0203 + 01015175 n 0101 + 01237872 n 0101 ! 00405540 v 0101 02 + 01 00 + 08 00 | make central; "The Russian government centralized the distribution of food" -00405540 30 v 03 decentralize 0 deconcentrate 0 decentralise 0 008 @ 00126264 v 0000 + 01238058 n 0302 ! 00405236 v 0203 + 13457181 n 0101 + 01238058 n 0101 ! 00405236 v 0101 ! 00405236 v 0102 ~ 00504464 v 0000 02 + 01 00 + 08 00 | make less central; "After the revolution, food distribution was decentralized" -00405853 30 v 02 socialize 0 socialise 0 003 @ 00126264 v 0000 + 01266745 n 0202 + 01266745 n 0101 01 + 08 00 | make conform to socialist ideas and philosophies; "Health care should be socialized!" -00406053 30 v 02 socialize 1 socialise 1 003 @ 00406243 v 0000 + 01128984 n 0202 + 01128984 n 0101 02 + 09 00 + 10 00 | prepare for social life; "Children have to be socialized in school" -00406243 30 v 06 fix 3 prepare 0 set_up 2 ready 0 gear_up 0 set 9 020 @ 00126264 v 0000 + 05674584 n 0601 + 14031523 n 0401 + 01143040 n 0402 + 00126830 a 0202 + 00126830 a 0201 + 14031108 n 0203 + 01143040 n 0201 ~ 00406053 v 0000 ~ 00406963 v 0000 ~ 00407146 v 0000 ~ 00407328 v 0000 ~ 00407458 v 0000 ~ 00407633 v 0000 ~ 00407848 v 0000 ~ 00408272 v 0000 ~ 00408448 v 0000 ~ 00408624 v 0000 ~ 01741446 v 0000 ~ 01806109 v 0000 09 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 + 28 00 + 02 05 + 02 02 | make ready or suitable or equip in advance for a particular purpose or for some use, event, etc; "Get the children ready for school!"; "prepare for war"; "I was fixing to leave town after I paid the hotel bill" -00406963 30 v 01 provide 5 002 @ 00406243 v 0000 + 01894758 a 0101 01 + 22 00 | take measures in preparation for; "provide for the proper care of the passengers on the cruise ship" -00407146 30 v 01 cram 0 005 $ 00605783 v 0000 @ 00406243 v 0000 + 09975806 n 0101 + 08278707 n 0101 + 06414727 n 0101 01 + 09 00 | prepare (students) hastily for an impending exam -00407328 30 v 01 precondition 0 002 @ 00406243 v 0000 + 05892880 n 0101 01 + 11 00 | put into the required condition beforehand -00407458 30 v 01 fix 2 003 @ 00406243 v 0000 ;c 06070503 n 0000 + 00276342 n 0102 01 + 08 00 | kill, preserve, and harden (tissue) in order to prepare for microscopic study -00407633 30 v 01 mount 1 005 @ 00406243 v 0000 + 03792526 n 0101 + 02769460 n 0102 + 10335123 n 0101 + 03793186 n 0101 01 + 08 00 | fix onto a backing, setting, or support; "mount slides for macroscopic analysis" -00407848 30 v 03 set_up 0 lay_out 0 set c 003 @ 00406243 v 0000 + 05674584 n 0301 + 03953743 n 0302 01 + 08 00 | get ready for a particular purpose or event; "set up an experiment"; "set the table"; "lay out the tools for the surgery" -00408085 30 v 03 rig 0 set 6 set_up 3 005 @ 02339413 v 0000 + 04091247 n 0101 + 10530769 n 0101 + 04091247 n 0102 + 04091693 n 0101 01 + 08 00 | equip with sails or masts; "rig a ship" -00408272 30 v 02 winterize 0 winterise 0 003 @ 00406243 v 0000 + 15237782 n 0101 ! 00408448 v 0101 01 + 08 00 | prepare for winter; "winterize cars"; "winterize your houses" -00408448 30 v 02 summerize 0 summerise 0 003 @ 00406243 v 0000 + 15237250 n 0101 ! 00408272 v 0101 01 + 08 00 | prepare for summer; "summerize your car"; "summerize a house" -00408624 30 v 01 prime 0 002 @ 00406243 v 0000 + 03407122 n 0105 05 + 08 00 + 09 00 + 10 00 + 11 00 + 21 00 | insert a primer into (a gun, mine, or charge) preparatory to detonation or firing; "prime a cannon"; "prime a mine" -00408852 30 v 02 communize 0 communise 0 007 @ 00411547 v 0000 + 01153139 n 0202 + 08541609 n 0201 + 08375369 n 0201 + 01151788 n 0103 + 08365855 n 0101 + 06214744 n 0101 01 + 08 00 | make into property owned by the state; "The new government communized all banks" -00409119 30 v 02 internationalize 0 internationalise 0 001 @ 00126264 v 0000 01 + 08 00 | make international in character; "We internationalized the committee" -00409281 30 v 04 communize 1 communise 1 bolshevize 0 bolshevise 0 010 @ 00126264 v 0000 + 09863936 n 0401 + 09863749 n 0401 + 09863936 n 0301 + 01152973 n 0202 + 08541609 n 0201 + 08375369 n 0201 + 01152973 n 0101 + 08365855 n 0101 + 06214744 n 0101 02 + 08 00 + 11 00 | make Communist or bring in accord with Communist principles; "communize the government" -00409643 30 v 02 Americanize 0 Americanise 0 004 @ 00109660 v 0000 + 13429888 n 0202 + 02927512 a 0101 + 13429888 n 0101 02 + 01 00 + 02 00 | become American in character; "After a year in Iowa, he has totally Americanized" -00409869 30 v 02 Europeanize 1 Europeanise 1 003 @ 00126264 v 0000 + 13476440 n 0202 + 13476440 n 0101 02 + 10 00 + 11 00 | make (continental) European in customs, character, or ideas -00410055 30 v 02 Europeanize 0 Europeanise 0 001 @ 00126264 v 0000 01 + 08 00 | denationalize and subject (a territory) to the supervision of an agency of a European community of nations -00410244 30 v 02 bestialize 0 bestialise 0 002 @ 00126264 v 0000 + 01263445 a 0102 02 + 10 00 + 11 00 | make brutal and depraved; give animal-like qualities to -00410406 30 v 02 Americanize 1 Americanise 1 005 @ 00126264 v 0000 + 13429888 n 0202 + 02927512 a 0101 + 13429888 n 0101 + 09738708 n 0101 02 + 08 00 + 09 00 | make American in character; "The year in the US has completely Americanized him" -00410649 30 v 01 Frenchify 0 002 @ 00146138 v 0000 + 09732903 n 0101 02 + 01 00 + 02 00 | become French in appearance or character; "This restaurant has Frenchified" -00410817 30 v 01 Frenchify 1 002 @ 00126264 v 0000 + 09732903 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | make French in appearance or character; "let's Frenchify the restaurant and charge more money" -00411020 30 v 03 modernize 2 modernise 2 develop 9 005 @ 00109660 v 0000 + 00250259 n 0301 + 00264913 n 0202 + 00264913 n 0101 $ 00171852 v 0000 01 + 09 00 | become technologically advanced; "Many countries in Asia are now developing at a very fast pace"; "Viet Nam is modernizing rapidly" -00411312 30 v 02 civilize 1 civilise 1 003 @ 00126264 v 0000 + 13448970 n 0202 + 08111783 n 0101 02 + 09 00 + 10 00 | raise from a barbaric to a civilized state; "The wild child found wandering in the forest was gradually civilized" -00411547 30 v 02 nationalize 0 nationalise 0 006 @ 00126264 v 0000 + 01151788 n 0202 ! 00411792 v 0202 + 01151788 n 0101 ! 00411792 v 0101 ~ 00408852 v 0000 01 + 08 00 | put under state control or ownership; "Mitterand nationalized the banks" -00411792 30 v 02 denationalize 0 denationalise 0 006 @ 00126264 v 0000 + 01152033 n 0202 ! 00411547 v 0202 + 01152033 n 0101 ! 00411547 v 0101 ~ 00412048 v 0000 01 + 08 00 | put under private control or ownership; "The steel industry was denationalized" -00412048 30 v 02 privatize 0 privatise 0 005 @ 00411792 v 0000 ;c 00923444 n 0000 ;c 01094725 n 0000 + 01152033 n 0204 + 01152033 n 0103 01 + 08 00 | change from governmental to private control or ownership; "The oil industry was privatized" -00412292 30 v 02 naturalize 0 naturalise 0 005 @ 00126264 v 0000 * 00413432 v 0000 + 01187620 n 0202 + 01187620 n 0101 ! 00412511 v 0101 01 + 09 00 | make into a citizen; "The French family was naturalized last year" -00412511 30 v 02 denaturalize 0 denaturalise 0 002 @ 00126264 v 0000 ! 00412292 v 0101 01 + 09 00 | strip of the rights and duties of citizenship; "The former Nazi was denaturalized" -00412696 30 v 02 naturalize 1 naturalise 1 004 @ 00126264 v 0000 + 04787324 n 0202 + 04787324 n 0101 ! 00412860 v 0101 01 + 08 00 | make more natural or lifelike -00412860 30 v 02 denaturalize 1 denaturalise 1 002 @ 00126264 v 0000 ! 00412696 v 0101 01 + 08 00 | make less natural or unnatural -00412993 30 v 02 naturalize 2 naturalise 2 003 @ 00299580 v 0000 + 00084642 n 0202 + 00084642 n 0101 01 + 08 00 | adopt to another place; "The stories had become naturalized into an American setting" -00413195 30 v 02 adopt 0 take_in 3 006 @ 02205272 v 0000 + 00055765 a 0101 + 01406263 a 0101 + 09772330 n 0101 + 01185292 n 0101 + 09772448 n 0102 02 + 09 00 + 20 00 | take into one's family; "They adopted two children from Nicaragua" -00413432 30 v 01 immigrate 0 006 @ 01856626 v 0000 * 02005948 v 0000 + 08413834 n 0101 + 00056311 n 0101 + 10199489 n 0101 ! 00416135 v 0101 02 + 02 00 + 22 00 | come into a new country and change residency; "Many people immigrated at the beginning of the 20th century" -00413704 30 v 01 immigrate 2 002 @ 02078591 v 0000 + 08413834 n 0101 02 + 09 00 + 20 00 | introduce or send as immigrants; "Britain immigrated many colonists to America" -00413876 30 v 02 settle 0 locate 0 009 * 01855606 v 0000 + 01051331 n 0202 + 00027167 n 0201 + 08672562 n 0101 + 08374049 n 0102 + 01252280 n 0103 + 10583387 n 0101 ~ 00414174 v 0000 ~ 00415828 v 0000 01 + 22 00 | take up residence and become established; "The immigrants settled in the Midwest" -00414174 30 v 02 colonize 0 colonise 0 005 @ 00413876 v 0000 + 01252280 n 0202 + 08374049 n 0201 + 01252280 n 0101 + 08374049 n 0101 01 + 08 00 | settle as colonists or establish a colony (in); "The British colonized the East Coast" -00414409 30 v 01 relocate 1 004 $ 00414627 v 0000 @ 01850315 v 0000 + 01252566 n 0102 + 00168658 n 0102 01 + 08 00 | move or establish in a new location; "We had to relocate the office because the rent was too high" -00414627 30 v 01 relocate 0 004 @ 01855606 v 0000 + 01252566 n 0102 + 00168658 n 0102 $ 00414409 v 0000 01 + 02 00 | become established in a new location; "Our company relocated to the Midwest" -00414823 30 v 01 dislocate 1 004 @ 02013571 v 0000 + 14291561 n 0101 + 07367385 n 0101 + 00553362 n 0101 02 + 09 00 + 10 00 | put out of its usual place, position, or relationship; "The colonists displaced the natives" -00415044 30 v 01 settle 1 005 * 01856626 v 0000 + 08672562 n 0101 + 08374049 n 0102 + 10583387 n 0101 ~ 00415231 v 0000 01 + 22 00 | form a community; "The Swedes settled in Minnesota" -00415231 30 v 01 homestead 0 003 @ 00415044 v 0000 + 13249400 n 0101 + 10643218 n 0102 01 + 08 00 | settle land given by the government and occupy it as a homestead -00415398 30 v 05 settle 2 root 2 take_root 1 steady_down 0 settle_down 0 002 @ 00271946 v 0000 ~ 00415635 v 0000 02 + 02 00 + 22 00 | become settled or established and stable in one's residence or life style; "He finally settled down" -00415635 30 v 01 roost 0 001 @ 00415398 v 0000 02 + 02 00 + 22 00 | settle down or stay, as if on a roost -00415743 30 v 01 set_in 0 000 01 + 01 00 | become established; "winter has set in" -00415828 30 v 01 resettle 0 002 @ 00413876 v 0000 + 01252566 n 0101 01 + 22 00 | settle in a new place; "The immigrants had to resettle" -00415967 30 v 01 immigrate 1 002 @ 01856626 v 0000 + 00056311 n 0101 02 + 01 00 + 04 00 | migrate to a new environment; "only few plants can immigrate to the island" -00416135 30 v 01 emigrate 0 006 * 02009433 v 0000 @ 01856626 v 0000 + 00056087 n 0101 + 10051975 n 0101 ! 00413432 v 0101 ~ 00416399 v 0000 02 + 02 00 + 22 00 | leave one's country of residence for a new one; "Many people had to emigrate during the Nazi period" -00416399 30 v 01 expatriate 1 003 @ 00416135 v 0000 + 00056087 n 0103 + 10071332 n 0102 01 + 02 00 | move away from one's native country and adopt a new residence abroad -00416571 30 v 03 steady 0 calm 0 becalm 0 001 @ 00271946 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make steady; "steady yourself" -00416705 30 v 02 even 1 even_out 0 005 > 00416880 v 0000 @ 00275607 v 0000 ^ 02672540 v 0105 ^ 02672540 v 0106 ^ 02672540 v 0107 02 + 08 00 + 11 00 | make even or more even -00416880 30 v 02 even 0 even_out 1 001 @ 00126264 v 0000 01 + 01 00 | become even or more even; "even out the surface" -00417001 30 v 05 equal 0 match 7 equalize 0 equalise 0 equate 0 012 $ 02672187 v 0000 @ 00126264 v 0000 + 09626238 n 0502 + 13946760 n 0503 + 13874073 n 0501 + 00044673 n 0402 + 03118539 n 0406 + 00044673 n 0301 + 03118539 n 0305 ~ 00417482 v 0000 ~ 00457100 v 0000 ~ 01115190 v 0000 02 + 08 00 + 11 00 | make equal, uniform, corresponding, or matching; "let's equalize the duties among all employees in this office"; "The company matched the discount policy of its competitors" -00417482 30 v 02 homologize 0 homologise 0 002 @ 00417001 v 0000 + 04744319 n 0101 01 + 08 00 | make homologous -00417596 30 v 01 stiffen 1 008 > 00418563 v 0000 @ 00126264 v 0000 + 15060825 n 0101 + 13561521 n 0101 ! 00419375 v 0101 ~ 00417856 v 0000 ~ 00417975 v 0000 ~ 00418110 v 0000 02 + 08 00 + 11 00 | make stiff or stiffer; "Stiffen the cream by adding gelatine" -00417856 30 v 01 starch 0 002 @ 00417596 v 0000 + 15053867 n 0101 01 + 08 00 | stiffen with starch; "starch clothes" -00417975 30 v 01 buckram 0 002 @ 00417596 v 0000 + 02910542 n 0101 01 + 08 00 | stiffen with or as with buckram; "buckram the skirt" -00418110 30 v 03 rigidify 1 ossify 2 petrify 2 005 @ 00417596 v 0000 + 13528852 n 0201 + 04801763 n 0201 + 05023741 n 0101 + 04660261 n 0102 01 + 11 00 | make rigid and set into a conventional pattern; "rigidify the training schedule"; "ossified teaching methods"; "slogans petrify our thinking" -00418408 30 v 01 rigidify 0 004 @ 00418563 v 0000 + 13561521 n 0103 + 05023741 n 0101 + 13561521 n 0102 01 + 01 00 | become rigid; "The body rigidified" -00418563 30 v 01 stiffen 0 004 @ 00109660 v 0000 + 01025411 n 0101 ! 00419137 v 0101 ~ 00418408 v 0000 02 + 01 00 + 02 00 | become stiff or stiffer; "He stiffened when he saw his boss enter the room" -00418765 30 v 04 stiffen 2 tighten 2 tighten_up 0 constrain 0 001 @ 00233335 v 0000 01 + 08 00 | restrict; "Tighten the rules"; "stiffen the regulations" -00418921 30 v 02 clamp_down a crack_down a 003 @ 00233335 v 0000 + 01148182 n 0201 + 00808967 n 0101 01 + 08 00 | repress or suppress (something regarded as undesirable); "The police clamped down on illegal drugs" -00419137 30 v 03 loosen 0 relax 2 loose 1 005 @ 00223500 v 0000 + 07443210 n 0201 + 07443210 n 0102 + 00147862 n 0101 ! 00418563 v 0101 02 + 01 00 + 02 00 | become loose or looser or less tight; "The noose loosened"; "the rope relaxed" -00419375 30 v 02 loosen 1 loose 2 010 > 00419137 v 0000 @ 00126264 v 0000 + 07443210 n 0102 + 00147862 n 0101 ! 00417596 v 0101 ~ 00419685 v 0000 ~ 00421125 v 0000 ~ 00536535 v 0000 ~ 01352528 v 0000 ~ 01352680 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make loose or looser; "loosen the tension on a rope" -00419685 30 v 02 relax 1 unbend 0 004 @ 00419375 v 0000 + 13549488 n 0101 + 09407043 n 0101 ~ 00419866 v 0000 02 + 08 00 + 11 00 | make less taut; "relax the tension on the rope" -00419866 30 v 01 unbrace 1 001 @ 00419685 v 0000 01 + 08 00 | remove from tension -00419950 30 v 01 tighten 0 005 @ 00109660 v 0000 ~ 00304422 v 0000 ~ 00420549 v 0000 ~ 01387786 v 0000 ~ 01572728 v 0000 01 + 01 00 | become tight or tighter; "The rope tightened" -00420132 30 v 02 tighten 1 fasten 0 006 @ 00126264 v 0000 + 00148057 n 0101 ~ 00420337 v 0000 ~ 00420434 v 0000 ~ 01352806 v 0000 ~ 01522052 v 0000 01 + 08 00 | make tight or tighter; "Tighten the wire" -00420337 30 v 01 frap 0 001 @ 00420132 v 0000 01 + 08 00 | take up the slack of; "frap a rope" -00420434 30 v 02 tauten 1 firm 1 001 @ 00420132 v 0000 02 + 08 00 + 11 00 | make taut or tauter; "tauten a rope" -00420549 30 v 02 tauten 0 firm 0 001 @ 00419950 v 0000 01 + 01 00 | become taut or tauter; "Your muscles will firm when you exercise regularly"; "the rope tautened" -00420716 30 v 02 transitivize 0 transitivise 0 003 @ 00126264 v 0000 + 02488705 a 0101 ! 00420909 v 0101 02 + 08 00 + 11 00 | make transitive; "adding `out' to many verbs transitivizes them" -00420909 30 v 04 detransitivize 0 detransitivise 0 intransitivize 0 intransitivise 0 002 @ 00126264 v 0000 ! 00420716 v 0101 02 + 08 00 + 11 00 | intransitivize; "removing the object will intransitivize the verbs" -00421125 30 v 02 slacken 1 remit 0 004 > 00421408 v 0000 @ 00419375 v 0000 + 07443210 n 0103 ~ 00421306 v 0000 02 + 08 00 + 11 00 | make slack as by lessening tension or firmness -00421306 30 v 02 douse 1 dowse 1 001 @ 00421125 v 0000 02 + 08 00 + 11 00 | slacken; "douse a rope" -00421408 30 v 01 slacken 0 002 @ 00223500 v 0000 ^ 00156485 v 0103 01 + 01 00 | become looser or slack; "the rope slackened" -00421535 30 v 02 absent 0 remove 1 003 @ 00426958 v 0000 + 09757653 n 0101 + 01234345 n 0101 02 + 09 00 + 20 00 | go away or leave; "He absented himself" -00421691 30 v 06 evanesce 0 fade 0 blow_over 0 pass_off 1 fleet 0 pass 1 004 @ 00426958 v 0000 + 07292577 n 0601 + 01756940 a 0101 + 07335917 n 0101 02 + 01 00 + 04 00 | disappear gradually; "The pain eventually passed off" -00421917 30 v 02 fade 1 wither 1 003 @ 00426958 v 0000 + 07427060 n 0202 + 07427534 n 0102 02 + 01 00 + 02 00 | lose freshness, vigor, or vitality; "Her bloom was fading" -00422090 30 v 01 appear 0 028 + 01618376 a 0101 + 00050484 n 0101 + 07321772 n 0101 + 04673965 n 0101 ! 00426958 v 0101 ~ 00422764 v 0000 ~ 00422899 v 0000 ~ 00423075 v 0000 ~ 00423257 v 0000 ~ 00423430 v 0000 ~ 00423702 v 0000 ~ 00423971 v 0000 ~ 00424499 v 0000 ~ 00424691 v 0000 ~ 00424869 v 0000 ~ 00425522 v 0000 ~ 00425845 v 0000 ~ 00426156 v 0000 ~ 00426301 v 0000 ~ 00426581 v 0000 ~ 00426749 v 0000 ~ 00548266 v 0000 ~ 00584604 v 0000 ~ 00609352 v 0000 ~ 01966501 v 0000 ~ 01991347 v 0000 ~ 02139544 v 0000 ~ 02157519 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | come into sight or view; "He suddenly appeared at the wedding"; "A new star appeared on the horizon" -00422764 30 v 01 peep 0 001 @ 00422090 v 0000 01 + 04 00 | appear as though from hiding; "the new moon peeped through the tree tops" -00422899 30 v 01 erupt 6 002 $ 00548266 v 0000 @ 00422090 v 0000 02 + 01 00 + 04 00 | appear on the skin; "A rash erupted on her arms after she had touched the exotic plant" -00423075 30 v 01 manifest 0 002 @ 00422090 v 0000 + 07323024 n 0103 02 + 01 00 + 02 00 | reveal its presence or make an appearance; "the ghost manifests each year on the same day" -00423257 30 v 01 wash_up 0 002 @ 00422090 v 0000 $ 02080482 v 0000 02 + 01 00 + 04 00 | be carried somewhere by water or as if by water; "The body washed up on the beach" -00423430 30 v 02 come_to_light 0 come_to_hand 0 001 @ 00422090 v 0000 01 + 01 00 | be revealed or disclosed; "The truth finally came to light" -00423575 30 v 01 gleam 0 001 @ 00425071 v 0000 02 + 01 00 + 04 00 | appear briefly; "A terrible thought gleamed in her mind" -00423702 30 v 05 come_on 1 come_out 0 turn_up 0 surface 0 show_up 0 002 @ 00422090 v 0000 + 05612809 n 0402 04 + 01 00 + 02 00 + 04 00 + 22 00 | appear or become visible; make a showing; "She turned up at the funeral"; "I hope the list key is going to surface again" -00423971 30 v 01 emerge 0 006 @ 00422090 v 0000 + 00050693 n 0102 + 07319909 n 0101 + 00044455 n 0103 ~ 00424224 v 0000 ~ 01513710 v 0000 02 + 04 00 + 22 00 | come out into view, as from concealment; "Suddenly, the proprietor emerged from his office" -00424224 30 v 01 burst 2 001 @ 00423971 v 0000 02 + 04 00 + 22 00 | emerge suddenly; "The sun burst into view" -00424337 30 v 02 get_on 1 be_on 0 001 @ 00973728 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | appear in a show, on T.V. or radio; "The news won't be on tonight" -00424499 30 v 01 outcrop 0 003 @ 00422090 v 0000 + 09381242 n 0102 + 09381242 n 0101 02 + 01 00 + 04 00 | appear on the surface, come to the surface on the ground; "Big boulders outcropped" -00424691 30 v 01 flash 3 004 @ 00422090 v 0000 + 06682494 n 0103 + 07287088 n 0101 + 07287088 n 0102 02 + 04 00 + 22 00 | appear briefly; "The headlines flashed on the screen" -00424869 30 v 01 flash 4 005 @ 00422090 v 0000 + 04953186 n 0101 + 07412092 n 0101 + 02852173 n 0102 + 03358841 n 0101 01 + 01 00 | emit a brief burst of light; "A shooting star flashed and was gone" -00425071 30 v 02 appear 2 come_along 0 005 + 00050484 n 0101 ! 00427397 v 0102 ~ 00423575 v 0000 ~ 00425381 v 0000 ~ 02612368 v 0000 02 + 01 00 + 02 00 | come into being or existence, or appear on the scene; "Then the computer came along and changed our lives"; "Homo sapiens appeared millions of years ago" -00425381 30 v 01 fulminate 1 002 @ 00425071 v 0000 + 01144102 a 0101 01 + 01 00 | come on suddenly and intensely; "the disease fulminated" -00425522 30 v 01 turn_out 0 001 @ 00422090 v 0000 02 + 01 00 + 02 00 | come, usually in answer to an invitation or summons; "How many people turned out that evening?" -00425691 30 v 01 resurface 0 001 @ 00426301 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | appear again; "The missing man suddenly resurfaced in New York" -00425845 30 v 02 basset 0 crop_out 0 001 @ 00422090 v 0000 01 + 04 00 | appear at the surface; "A seam of coal bassets" -00425967 30 v 02 appear 1 come_out 1 001 @ 00344174 v 0000 02 + 01 00 + 04 00 | be issued or published; "Did your latest book appear yet?"; "The new Woody Allen film hasn't come out yet" -00426156 30 v 02 pop_out 1 burst_out 1 001 @ 00422090 v 0000 02 + 01 00 + 04 00 | appear suddenly; "Spring popped up everywhere in the valley" -00426301 30 v 02 reappear 0 re-emerge 0 005 @ 00422090 v 0000 + 07321967 n 0101 + 00050887 n 0101 ~ 00425691 v 0000 ~ 00548153 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | appear again; "The sores reappeared on her body"; "Her husband reappeared after having left her years ago" -00426581 30 v 01 emerge 1 003 @ 00422090 v 0000 + 00050693 n 0102 + 07324673 n 0101 01 + 34 00 | become known or apparent; "Some nice results emerged from the study" -00426749 30 v 02 break_through 0 come_through 0 002 @ 00422090 v 0000 + 00975955 n 0101 01 + 01 00 | penetrate; "The sun broke through the clouds"; "The rescue team broke through the wall in the mine shaft" -00426958 30 v 03 disappear 0 vanish 0 go_away 0 015 + 10746346 n 0201 + 07336104 n 0201 + 00053609 n 0101 + 00053609 n 0102 ! 00422090 v 0101 ~ 00148472 v 0000 ~ 00342314 v 0000 ~ 00354845 v 0000 ~ 00359916 v 0000 ~ 00421535 v 0000 ~ 00421691 v 0000 ~ 00421917 v 0000 ~ 00427558 v 0000 ~ 00427683 v 0000 ~ 00570205 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | get lost, as without warning or explanation; "He disappeared without a trace" -00427397 30 v 02 vanish 2 disappear 2 003 @ 02609764 v 0000 + 00230172 n 0202 ! 00425071 v 0201 01 + 01 00 | cease to exist; "An entire civilization vanished" -00427558 30 v 02 skip_town 0 take_a_powder 0 001 @ 00426958 v 0000 01 + 02 00 | disappear without notifying anyone (idiom) -00427683 30 v 02 die_out 0 die_off 0 001 @ 00426958 v 0000 02 + 01 00 + 02 00 | become extinct; "Dinosaurs died out" -00427802 30 v 02 minimize 0 minimise 0 008 @ 00441445 v 0000 + 00355919 n 0202 + 13763384 n 0201 ! 00428583 v 0202 + 00355919 n 0101 + 13763384 n 0101 ! 00428583 v 0101 ~ 00428067 v 0000 02 + 08 00 + 11 00 | make small or insignificant; "Let's minimize the risk" -00428067 30 v 01 hedge 0 002 @ 00427802 v 0000 + 10167838 n 0101 01 + 08 00 | minimize loss or risk; "diversify your financial portfolio to hedge price risks"; "hedge your bets" -00428247 30 v 01 scale_down 0 004 * 00151689 v 0000 @ 00319761 v 0000 @ 00151279 v 0000 ! 00428418 v 0101 01 + 08 00 | reduce proportionally; "The model is scaled down" -00428418 30 v 01 scale_up 0 004 * 00156601 v 0000 @ 00151279 v 0000 @ 00319761 v 0000 ! 00428247 v 0101 01 + 08 00 | increase proportionally; "scale up the model" -00428583 30 v 02 maximize 0 maximise 0 009 @ 00153263 v 0000 + 00367066 n 0202 + 13776137 n 0201 + 05124928 n 0203 ! 00427802 v 0202 + 00367066 n 0101 + 13776137 n 0101 + 05124928 n 0103 ! 00427802 v 0101 02 + 08 00 + 11 00 | make as big or large as possible; "Maximize your profits!" -00428870 30 v 02 maximize 1 maximise 1 005 @ 01164273 v 0000 + 13776137 n 0201 + 05124928 n 0203 + 13776137 n 0101 + 05124928 n 0103 01 + 08 00 | make the most of; "He maximized his role" -00429060 30 v 08 reduce 0 cut_down 0 cut_back 1 trim 0 trim_down 0 trim_back 0 cut 6 bring_down 0 019 @ 00441445 v 0000 + 00359903 n 0401 + 00353782 n 0301 + 00050446 a 0101 + 00351638 n 0103 ~ 00316768 v 0000 ~ 00429642 v 0000 ~ 00429763 v 0000 $ 00429968 v 0000 ~ 00430099 v 0000 ~ 00430261 v 0000 ~ 00430370 v 0000 ~ 00430625 v 0000 ~ 00532115 v 0000 ~ 00562303 v 0000 ~ 00562523 v 0000 ~ 00586682 v 0000 ~ 00586973 v 0000 ~ 02349597 v 0000 02 + 08 00 + 11 00 | cut down on; make a reduction in; "reduce your daily fat intake"; "The employer wants to cut back health benefits" -00429642 30 v 01 spill 4 002 @ 00429060 v 0000 ;c 00313806 n 0000 01 + 08 00 | reduce the pressure of wind on (a sail) -00429763 30 v 01 quench 4 002 @ 00429060 v 0000 ;c 06090869 n 0000 01 + 08 00 | reduce the degree of (luminescence or phosphorescence) in (excited molecules or a material) by adding a suitable substance -00429968 30 v 01 cut c 002 $ 00429060 v 0000 @ 00441445 v 0000 01 + 04 00 | have a reducing effect; "This cuts into my earnings" -00430099 30 v 01 retrench 0 002 @ 00429060 v 0000 + 00192910 n 0101 02 + 01 00 + 02 00 | make a reduction, as in one's workforce; "The company had to retrench" -00430261 30 v 01 slash 0 001 @ 00429060 v 0000 02 + 08 00 + 11 00 | cut drastically; "Prices were slashed" -00430370 30 v 01 thin_out 0 002 @ 00429060 v 0000 ~ 01321002 v 0000 01 + 08 00 | make sparse; "thin out the young plants" -00430494 30 v 01 thin_out 1 001 @ 00151689 v 0000 01 + 01 00 | become sparser; "Towards the end of town, the houses thinned out" -00430625 30 v 01 thin 1 005 > 00430999 v 0000 @ 00429060 v 0000 + 14835333 n 0103 ! 00431327 v 0101 ~ 00430808 v 0000 02 + 08 00 + 11 00 | make thin or thinner; "Thin the solution" -00430808 30 v 01 draw 8 003 $ 00327982 v 0000 $ 00143338 v 0000 @ 00430625 v 0000 02 + 08 00 + 11 00 | reduce the diameter of (a wire or metal rod) by pulling it through a die; "draw wire" -00430999 30 v 01 thin 0 002 @ 00146138 v 0000 ! 00431117 v 0101 01 + 01 00 | lose thickness; become thin or thinner -00431117 30 v 02 thicken 0 inspissate 0 004 @ 00146138 v 0000 + 00357906 n 0202 ! 00430999 v 0101 $ 00431327 v 0000 01 + 01 00 | become thick or thicker; "The sauce thickened"; "The egg yolk will inspissate" -00431327 30 v 02 thicken 1 inspissate 1 007 $ 00431117 v 0000 > 00431117 v 0000 @ 00126264 v 0000 + 00357906 n 0202 + 15069820 n 0102 + 00357906 n 0101 ! 00430625 v 0101 02 + 08 00 + 11 00 | make thick or thicker; "Thicken the sauce"; "inspissate the tar so that it becomes pitch" -00431610 30 v 02 thicken 2 inspissate 3 005 @ 00140123 v 0000 + 13500557 n 0201 + 00357906 n 0202 + 15069820 n 0102 + 00357906 n 0101 02 + 08 00 + 11 00 | make viscous or dense; "thicken the sauce by adding flour" -00431826 30 v 03 decline 0 go_down 0 wane 2 007 @ 00151689 v 0000 + 13470491 n 0303 + 07423001 n 0301 + 13457378 n 0101 ~ 00432061 v 0000 ~ 00432176 v 0000 ~ 00432683 v 0000 01 + 01 00 | grow smaller; "Interest in the project waned" -00432061 30 v 01 dip 1 002 @ 00431826 v 0000 + 13904506 n 0101 01 + 01 00 | go down momentarily; "Prices dipped" -00432176 30 v 01 wear_on 0 001 @ 00431826 v 0000 01 + 01 00 | pass slowly (of time); "The day wore on" -00432281 30 v 01 heighten 2 001 @ 00153263 v 0000 02 + 08 00 + 11 00 | make more extreme; raise in quantity, degree, or intensity; "heightened interest" -00432436 30 v 02 heighten 1 rise 2 002 @ 00153263 v 0000 + 07324917 n 0201 01 + 01 00 | become more extreme; "The tension heightened" -00432572 30 v 01 shoot_up 0 001 @ 00156601 v 0000 01 + 01 00 | rise dramatically; "Prices shot up overnight" -00432683 30 v 01 drop 0 004 @ 00431826 v 0000 + 05111835 n 0101 ~ 00432839 v 0000 ~ 00433069 v 0000 01 + 01 00 | go down in value; "Stock prices dropped" -00432839 30 v 03 slump 0 fall_off 0 sink 0 005 @ 00432683 v 0000 + 13556509 n 0204 + 14489113 n 0102 + 13556509 n 0101 $ 01985923 v 0000 01 + 01 00 | fall heavily or suddenly; decline markedly; "The real estate market fell off" -00433069 30 v 01 tumble 0 002 @ 00432683 v 0000 + 00076884 n 0102 01 + 01 00 | fall suddenly and sharply; "Prices tumbled after the devaluation of the currency" -00433232 30 v 04 wax 0 mount 0 climb 0 rise 3 009 @ 00156601 v 0000 + 05068918 n 0402 + 07370410 n 0301 + 00325110 n 0202 + 07370410 n 0203 + 07414566 n 0101 ! 00433933 v 0101 ~ 00155727 v 0000 ~ 00158222 v 0000 01 + 01 00 | go up or advance; "Sales were climbing after prices were lowered" -00433525 30 v 02 wax 1 full 0 003 @ 00156601 v 0000 + 07414566 n 0101 ! 00433778 v 0101 01 + 01 00 | increase in phase; "the moon is waxing" -00433668 30 v 01 full 1 001 @ 00126264 v 0000 01 + 08 00 | make (a garment) fuller by pleating or gathering -00433778 30 v 01 wane 1 004 @ 00151689 v 0000 + 13470491 n 0103 + 07423001 n 0101 ! 00433525 v 0101 01 + 01 00 | decrease in phase; "the moon is waning" -00433933 30 v 01 wane 0 003 @ 00151689 v 0000 + 07423001 n 0101 ! 00433232 v 0101 01 + 01 00 | become smaller; "Interest in his novels waned" -00434077 30 v 02 magnify 0 amplify 0 008 @ 00157844 v 0000 + 02705944 n 0201 + 05168890 n 0101 + 05090441 n 0101 + 13822995 n 0101 + 06758835 n 0103 + 03289462 n 0103 + 00367427 n 0101 03 + 01 00 + 08 00 + 11 00 | increase in size, volume or significance; "Her terror was magnified in her mind" -00434374 30 v 09 fail 0 go_bad 1 give_way 0 die 4 give_out 0 conk_out 0 go 3 break 5 break_down 0 010 $ 00358431 v 0000 $ 00258665 v 0000 @ 00109660 v 0000 + 07421316 n 0901 + 00708017 a 0801 + 14059663 n 0101 ~ 00434919 v 0000 ~ 00435294 v 0000 ~ 01134653 v 0000 ~ 01525295 v 0000 01 + 01 00 | stop operating or functioning; "The engine finally went"; "The car died on the road"; "The bus we travelled in broke down on the way to town"; "The coffee maker broke"; "The engine failed on the way to town"; "her eyesight went after the accident" -00434919 30 v 02 crash a go_down e 002 @ 00434374 v 0000 + 07478874 n 0101 01 + 01 00 | stop operating; "My computer crashed last night"; "The system goes down at least once a week" -00435103 30 v 02 give_way 1 yield 0 001 @ 00109660 v 0000 03 + 01 00 + 02 00 + 22 00 | end resistance, as under pressure or force; "The door yielded to repeated blows with a battering ram" -00435294 30 v 03 blow_out 0 burn_out 0 blow 4 002 @ 00434374 v 0000 + 07318618 n 0101 01 + 01 00 | melt, break, or become otherwise unusable; "The lightbulbs blew out"; "The fuse blew" -00435481 30 v 02 unfurl 0 unroll 0 002 @ 00356258 v 0000 ! 00435688 v 0101 02 + 01 00 + 08 00 | unroll, unfold, or spread out or be unrolled, unfolded, or spread out from a furled state; "unfurl a banner" -00435688 30 v 02 roll_up 0 wrap_up 0 003 @ 00356258 v 0000 ! 00435481 v 0101 $ 00125078 v 0000 02 + 01 00 + 08 00 | form a cylinder by rolling; "roll up a banner" -00435853 30 v 02 roll_up 1 furl 0 007 @ 00140967 v 0000 $ 00125078 v 0000 ~ 00436093 v 0000 ~ 00436185 v 0000 ~ 00436304 v 0000 ~ 01214786 v 0000 ~ 01214927 v 0000 02 + 01 00 + 08 00 | form into a cylinder by rolling; "Roll up the cloth" -00436093 30 v 01 douse 2 001 @ 00435853 v 0000 01 + 08 00 | lower quickly; "douse a sail" -00436185 30 v 01 reef 0 001 @ 00435853 v 0000 01 + 08 00 | roll up (a portion of a sail) in order to reduce its area -00436304 30 v 01 bolt 0 001 @ 00435853 v 0000 01 + 01 00 | make or roll into bolts; "bolt fabric" -00436404 30 v 03 diversify 0 branch_out 0 broaden 5 006 @ 00123170 v 0000 + 04735711 n 0101 + 14575180 n 0101 + 00195569 n 0101 ! 00437449 v 0101 ! 00437449 v 0102 03 + 01 00 + 02 00 + 08 00 | vary in order to spread risk or to expand; "The company diversified" -00436668 30 v 02 diversify 3 radiate 5 003 @ 00123170 v 0000 + 07439883 n 0201 + 14575180 n 0101 01 + 01 00 | spread into new habitats and produce variety or variegate; "The plants on this island diversified" -00436879 30 v 03 vary 4 variegate 0 motley 1 007 @ 00437125 v 0000 + 08398773 n 030a + 00195569 n 0202 + 02507515 a 0102 + 02505415 a 0101 + 00195194 n 0101 ~ 00437322 v 0000 01 + 08 00 | make something more diverse and varied; "Vary the menu" -00437125 30 v 01 diversify 2 005 @ 00126264 v 0000 + 04751305 n 0102 + 14575180 n 0101 + 00195569 n 0101 ~ 00436879 v 0000 02 + 08 00 + 11 00 | make (more) diverse; "diversify a course of study" -00437322 30 v 02 checker 0 chequer 0 001 @ 00436879 v 0000 01 + 08 00 | variegate with different colors, shades, or patterns -00437449 30 v 04 specialize 0 specialise 0 narrow 5 narrow_down 1 004 @ 00123170 v 0000 ! 00436404 v 0201 ! 00436404 v 0101 ~ 00437976 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | become more focus on an area of activity or field of study; "She specializes in Near Eastern history" -00437732 30 v 02 specialize 1 specialise 1 003 @ 00169806 v 0000 + 00583747 n 0202 + 00583747 n 0101 01 + 08 00 | suit to a special purpose; "specialize one's research"; "this kind of beak has become specialized in certain Galapagos finches" -00437976 30 v 02 overspecialize 0 overspecialise 0 001 @ 00437449 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | become overly specialized; "She overspecialized when she concentrated on verbs in Fijian" -00438178 30 v 04 accelerate 0 speed_up 0 speed 0 quicken 1 010 @ 00226566 v 0000 + 00330457 n 0402 + 00330160 n 0301 + 15282696 n 0301 + 05058140 n 0301 + 00330457 n 0203 + 02535161 a 0102 + 02535161 a 0101 ! 00439958 v 0101 ~ 00205766 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | move faster; "The car accelerated" -00438495 30 v 02 decelerate 1 slow_down 2 007 @ 00126264 v 0000 + 01067577 n 0201 + 05061345 n 0101 ! 00439343 v 0101 ~ 00198710 v 0000 ~ 00438752 v 0000 ~ 00439199 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | reduce the speed of; "He slowed down the car" -00438752 30 v 01 retard 1 003 @ 00438495 v 0000 + 09408250 n 0103 ~ 00438954 v 0000 02 + 08 00 + 10 00 | cause to move more slowly or operate at a slower rate; "This drug will retard your heart rate" -00438954 30 v 01 deaden 2 001 @ 00438752 v 0000 02 + 08 00 + 11 00 | lessen the momentum or velocity of; "deaden a ship's headway" -00439087 30 v 01 deaden 3 001 @ 00126264 v 0000 01 + 11 00 | make vapid or deprive of spirit; "deadened wine" -00439199 30 v 01 fishtail 0 001 @ 00438495 v 0000 01 + 08 00 | slow down by moving the tail sideways; "The airplane fishtailed on the runway" -00439343 30 v 03 accelerate 1 speed 2 speed_up 1 012 @ 00126264 v 0000 + 00330457 n 0303 + 00330160 n 0201 + 15282696 n 0201 + 05058140 n 0201 + 02535161 a 0102 + 02535161 a 0101 + 05060783 n 0101 + 00330457 n 0101 + 02670683 n 0101 + 02670186 n 0101 ! 00438495 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to move faster; "He accelerated the car" -00439698 30 v 02 rev_up 0 rev 0 002 @ 00153263 v 0000 + 15281870 n 0203 01 + 08 00 | increase the number of rotations per minute; "rev up an engine" -00439849 30 v 02 rev_up 1 step_up 1 001 @ 00153263 v 0000 01 + 08 00 | speed up; "let's rev up production" -00439958 30 v 05 decelerate 0 slow 0 slow_down 0 slow_up 1 retard 0 009 @ 00151689 v 0000 + 05061345 n 0503 + 01067577 n 0503 + 01067577 n 0301 + 05061345 n 0202 + 05061345 n 0101 ! 00438178 v 0101 ~ 00440786 v 0000 ~ 00459776 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | lose velocity; move more slowly; "The car decelerated" -00440286 30 v 03 check 2 retard 7 delay 5 007 @ 00126264 v 0000 + 15272029 n 0301 + 01066163 n 0301 + 10197525 n 0207 + 05646218 n 0201 ~ 00390459 v 0000 ~ 00460900 v 0000 02 + 08 00 + 11 00 | slow the growth or development of; "The brain damage will retard the child's language development" -00440580 30 v 05 slow 1 slow_down 1 slow_up 3 slack 5 slacken 2 004 @ 00223500 v 0000 + 13556509 n 0402 + 01067577 n 0201 + 05061345 n 0102 02 + 01 00 + 02 00 | become slow or slower; "Production slowed" -00440786 30 v 03 slow 5 slow_down 4 slow_up 2 004 @ 00439958 v 0000 + 01067577 n 0201 ~ 00363916 v 0000 ~ 00441007 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to proceed more slowly; "The illness slowed him down" -00441007 30 v 02 clog 0 constipate 1 001 @ 00440786 v 0000 02 + 10 00 + 11 00 | impede with a clog or as if with a clog; "The market is being clogged by these operations"; "My mind is constipated today" -00441212 30 v 04 slack 3 slacken 3 slack_up 0 relax 5 003 @ 00441445 v 0000 + 07443210 n 0401 + 13556509 n 0102 02 + 08 00 + 11 00 | make less active or fast; "He slackened his pace as he got tired"; "Don't relax your efforts now" -00441445 30 v 03 decrease 1 lessen 2 minify 0 018 @ 00126264 v 0000 + 07355887 n 0101 ! 00153263 v 0101 ~ 00153964 v 0000 ~ 00198850 v 0000 ~ 00233089 v 0000 ~ 00235368 v 0000 ~ 00236999 v 0000 ~ 00241038 v 0000 ~ 00243900 v 0000 ~ 00245289 v 0000 ~ 00267855 v 0000 ~ 00290740 v 0000 ~ 00427802 v 0000 ~ 00429060 v 0000 ~ 00429968 v 0000 ~ 00441212 v 0000 ~ 00441881 v 0000 02 + 08 00 + 11 00 | make smaller; "He decreased his staff" -00441881 30 v 02 diminish 4 belittle 0 001 @ 00441445 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | lessen the authority, dignity, or reputation of; "don't belittle your colleagues" -00442063 30 v 02 quicken 0 invigorate 1 004 @ 00503164 v 0000 + 04631700 n 0203 + 01048466 n 0202 + 09402704 n 0101 03 + 08 00 + 10 00 + 11 00 | give life or energy to; "The cold water invigorated him" -00442267 30 v 04 gasify 0 vaporize 0 vaporise 0 aerify 0 015 @ 00140123 v 0000 + 14841267 n 0401 + 13572436 n 0302 + 15055633 n 0301 + 13572436 n 0303 + 02519813 a 0204 + 13572436 n 0201 + 15055633 n 0201 + 13572436 n 0203 + 13486270 n 0101 + 14960090 n 0102 + 14686913 n 0103 + 14877585 n 0101 + 14481080 n 0101 ~ 00366020 v 0000 03 + 01 00 + 08 00 + 11 00 | turn into gas; "The substance gasified" -00442669 30 v 03 jell 0 set 7 congeal 0 003 @ 00445169 v 0000 + 13451508 n 0302 + 13491060 n 0204 01 + 01 00 | become gelatinous; "the liquid jelled after we added the enzyme" -00442847 30 v 01 curdle 1 002 @ 00457998 v 0000 + 13454479 n 0101 03 + 01 00 + 08 00 + 11 00 | turn from a liquid to a solid mass; "his blood curdled" -00443000 30 v 01 curdle 2 002 @ 00210259 v 0000 + 13454479 n 0101 01 + 01 00 | go bad or sour; "The milk curdled" -00443116 30 v 02 harden 0 indurate 0 009 $ 00443384 v 0000 @ 00109660 v 0000 + 14110411 n 0202 + 13491060 n 0101 ! 00254867 v 0101 ~ 00255079 v 0000 ~ 00255752 v 0000 ~ 00498988 v 0000 ~ 00527935 v 0000 02 + 01 00 + 02 00 | become hard or harder; "The wax hardened" -00443384 30 v 02 harden 1 indurate 1 009 > 00443116 v 0000 @ 00109660 v 0000 + 14110411 n 0202 + 00402789 n 0101 ! 00255389 v 0101 ~ 00255654 v 0000 ~ 00255880 v 0000 ~ 00303056 v 0000 $ 00443116 v 0000 03 + 08 00 + 10 00 + 11 00 | make hard or harder; "The cold hardened the butter" -00443670 30 v 04 crystallize 0 crystalize 0 crystalise 0 effloresce 1 010 @ 00445169 v 0000 + 14879750 n 0205 + 14883206 n 0201 + 09260466 n 0201 + 11410298 n 0101 + 09260466 n 0102 + 11410298 n 0103 + 14879750 n 0105 + 14883206 n 0101 ~ 00505717 v 0000 01 + 01 00 | assume crystalline form; become crystallized -00443984 30 v 03 liquefy 0 flux 1 liquify 0 011 @ 00140123 v 0000 ;c 06090869 n 0000 + 02261985 a 0302 + 14940100 n 0301 + 14480420 n 0301 + 07407970 n 0201 + 02261985 a 0101 + 13508651 n 0101 ~ 00364868 v 0000 ~ 00376106 v 0000 ~ 00397192 v 0000 01 + 01 00 | become liquid or fluid when heated; "the frozen fat liquefied" -00444309 30 v 04 liquefy 1 liquify 1 liquidize 0 liquidise 0 009 @ 00126264 v 0000 ;c 06090869 n 0000 + 02850732 n 0402 + 02850732 n 0302 + 02261985 a 0202 + 14940100 n 0201 + 14480420 n 0201 + 02261985 a 0101 + 13508651 n 0101 02 + 08 00 + 11 00 | make (a solid substance) liquid, as by heating; "liquefy the silver" -00444629 30 v 03 melt 1 run 0 melt_down 0 007 @ 00447309 v 0000 + 02265594 a 0101 + 13566535 n 0102 + 13566535 n 0104 ~ 00396997 v 0000 ~ 00444975 v 0000 $ 02060792 v 0000 03 + 01 00 + 08 00 + 11 00 | reduce or cause to be reduced from a solid to a liquid state, usually by heating; "melt butter"; "melt down gold"; "The wax melted in the sun" -00444975 30 v 02 try 0 render 4 002 @ 00444629 v 0000 ;c 00243918 n 0000 01 + 08 00 | melt (fat or lard) in order to separate out impurities; "try the yak butter"; "render fat in a casserole" -00445169 30 v 01 solidify 0 011 @ 00140123 v 0000 ;c 06090869 n 0000 + 13491060 n 0103 + 15046900 n 0101 + 14480772 n 0101 + 13860793 n 0101 + 13491060 n 0102 ~ 00165789 v 0000 ~ 00442669 v 0000 ~ 00443670 v 0000 ~ 00445711 v 0000 01 + 01 00 | become solid; "The metal solidified when it cooled" -00445467 30 v 01 solidify 1 008 > 00445169 v 0000 @ 00140123 v 0000 ;c 06090869 n 0000 + 13491060 n 0103 + 14480772 n 0101 + 13491060 n 0102 ~ 00165618 v 0000 ~ 00374534 v 0000 02 + 08 00 + 11 00 | make solid or more solid; cause to solidify -00445711 30 v 03 freeze 4 freeze_out 0 freeze_down 0 004 @ 00445169 v 0000 ;c 06090869 n 0000 + 13484644 n 0102 $ 00374135 v 0000 01 + 08 00 | change from a liquid to a solid when cold; "Water freezes at 32 degrees Fahrenheit" -00445940 30 v 04 crystallize 1 crystallise 1 crystalize 1 crystalise 1 012 > 00443670 v 0000 @ 00140123 v 0000 ;c 06090869 n 0000 + 14879750 n 0305 + 14883206 n 0301 + 09260466 n 0301 + 11410298 n 0202 + 11410298 n 0101 + 09260466 n 0102 + 11410298 n 0103 + 14879750 n 0105 + 14883206 n 0101 02 + 08 00 + 11 00 | cause to form crystals or assume crystalline form; "crystallize minerals" -00446329 30 v 01 dissolve 0 004 @ 00397576 v 0000 + 13468094 n 0102 + 15047313 n 0103 + 13468094 n 0101 01 + 01 00 | pass into a solution; "The sugar quickly dissolved in the coffee" -00446514 30 v 01 solvate 0 005 @ 00146138 v 0000 ;c 06084469 n 0000 + 15047988 n 0101 + 15047313 n 0101 + 13558125 n 0101 01 + 01 00 | undergo solvation or convert into a solvate -00446695 30 v 01 solvate 1 006 > 00446514 v 0000 @ 00126264 v 0000 ;c 06084469 n 0000 + 15047988 n 0101 + 15047313 n 0101 + 13558125 n 0101 01 + 11 00 | cause a solvation in (a substance) -00446885 30 v 01 react 0 006 @ 00146138 v 0000 ;c 06084469 n 0000 + 01928608 a 0101 + 13447361 n 0102 + 14694765 n 0101 ~ 00525674 v 0000 01 + 01 00 | undergo a chemical reaction; react with another substance under certain conditions; "The hydrogen and the oxygen react" -00447158 30 v 01 build 2 003 @ 00205885 v 0000 ;c 06084469 n 0000 + 15097209 n 0101 01 + 11 00 | improve the cleansing action of; "build detergents" -00447309 30 v 03 dissolve 1 resolve 7 break_up 3 009 > 00446329 v 0000 @ 00140123 v 0000 + 15047313 n 0205 + 13468094 n 0102 + 15047313 n 0102 + 15047313 n 0103 + 13468094 n 0101 ~ 00444629 v 0000 ~ 00447654 v 0000 02 + 08 00 + 11 00 | cause to go into a solution; "The recipe says that we should dissolve a cup of sugar in two cups of water" -00447654 30 v 01 cut f 001 @ 00447309 v 0000 01 + 11 00 | dissolve by breaking down the fat of; "soap cuts grease" -00447771 30 v 03 dissolve 3 fade_out 0 fade_away 0 004 @ 00146138 v 0000 + 07336214 n 0202 + 06618035 n 0101 $ 00447950 v 0000 01 + 01 00 | become weaker; "The sound faded out" -00447950 30 v 01 dissolve b 003 $ 00447771 v 0000 @ 00126264 v 0000 ~ 00448110 v 0000 02 + 08 00 + 11 00 | cause to fade away; "dissolve a shot or a picture" -00448110 30 v 01 etch 3 001 @ 00447950 v 0000 01 + 11 00 | selectively dissolve the surface of (a semiconductor or printed circuit) with a solvent, laser, or stream of electrons -00448290 30 v 01 validate 0 002 @ 00126264 v 0000 ! 00448440 v 0101 02 + 08 00 + 11 00 | make valid or confirm the validity of; "validate a ticket" -00448440 30 v 03 invalidate 0 void 0 vitiate 0 005 @ 00126264 v 0000 + 00233212 n 0301 + 01760293 a 0202 + 01240979 n 0102 ! 00448290 v 0101 02 + 08 00 + 11 00 | take away the legal force of or render ineffective; "invalidate a contract" -00448680 30 v 02 empty 0 discharge 0 004 @ 00146138 v 0000 + 03284308 n 0101 ! 00451838 v 0101 ~ 00449011 v 0000 01 + 01 00 | become empty or void of its content; "The room emptied" -00448864 30 v 02 clean_out 0 clear_out 0 002 @ 00449692 v 0000 ~ 00526895 v 0000 01 + 08 00 | empty completely; "We cleaned out all the drawers" -00449011 30 v 02 flow_away 0 flow_off 0 001 @ 00448680 v 0000 01 + 01 00 | flow off or away gradually; "The water flowed off from the pipe" -00449153 30 v 01 bleed 0 001 @ 00449692 v 0000 01 + 08 00 | drain of liquid or steam; "bleed the radiators"; "the mechanic bled the engine" -00449295 30 v 01 evacuate 0 002 @ 00449692 v 0000 + 00395797 n 0103 02 + 08 00 + 11 00 | empty completely; "evacuate the bottle" -00449426 30 v 02 bail_out 0 bale_out 0 001 @ 00173338 v 0000 01 + 08 00 | remove (water) from a boat by dipping and throwing over the side -00449567 30 v 01 evacuate 1 001 @ 00449692 v 0000 02 + 08 00 + 11 00 | create a vacuum in (a bulb, flask, reaction vessel) -00449692 30 v 01 empty 1 019 > 00448680 v 0000 @ 00126264 v 0000 + 03284308 n 0101 + 00395797 n 0101 ! 00452512 v 0101 ~ 00177136 v 0000 ~ 00448864 v 0000 ~ 00449153 v 0000 ~ 00449295 v 0000 ~ 00449567 v 0000 ~ 00450168 v 0000 ~ 00450303 v 0000 ~ 00450565 v 0000 ~ 00450863 v 0000 ~ 00450997 v 0000 ~ 00451153 v 0000 ~ 00451648 v 0000 ~ 01282545 v 0000 ~ 01591012 v 0000 02 + 08 00 + 11 00 | make void or empty of contents; "Empty the box"; "The alarm emptied the building" -00450168 30 v 01 eviscerate 2 002 @ 00449692 v 0000 ;c 00612160 n 0000 01 + 08 00 | remove the contents of; "eviscerate the stomach" -00450303 30 v 01 void 4 002 @ 00449692 v 0000 + 13910116 n 0101 01 + 08 00 | clear (a room, house, place) of occupants or empty or clear (a place or receptacle) of something; "The chemist voided the glass bottle"; "The concert hall was voided of the audience" -00450565 30 v 01 clear a 002 @ 00449692 v 0000 $ 00450691 v 0000 01 + 08 00 | remove the occupants of; "Clear the building" -00450691 30 v 01 clear b 002 $ 00450565 v 0000 @ 02404904 v 0000 01 + 09 00 | remove (people) from a building; "clear the patrons from the theater after the bomb threat" -00450863 30 v 01 clear c 002 @ 00449692 v 0000 ;c 06128570 n 0000 01 + 08 00 | rid of instructions or data; "clear a memory buffer" -00450997 30 v 01 exhaust 0 002 @ 00449692 v 0000 + 00356621 n 0101 02 + 08 00 + 11 00 | use up the whole supply of; "We have exhausted the food supplies" -00451153 30 v 01 knock_out 2 001 @ 00449692 v 0000 01 + 08 00 | empty (as of tobacco) by knocking out; "knocked out a pipe" -00451279 30 v 01 populate 2 003 @ 00452512 v 0000 + 01257969 n 0101 ~ 00451461 v 0000 01 + 08 00 | fill with inhabitants; "populate the forest with deer and wild boar for hunting" -00451461 30 v 01 people 0 004 @ 00451279 v 0000 + 08180190 n 0105 + 08160276 n 0102 + 07942152 n 0101 02 + 09 00 + 10 00 | fill with people; "Stalin wanted to people the empty steppes" -00451648 30 v 01 drain 1 004 @ 00449692 v 0000 + 00396029 n 0102 + 03231912 n 0101 + 00396029 n 0101 02 + 08 00 + 11 00 | empty of liquid; drain the liquid from; "We drained the oil tank" -00451838 30 v 02 fill 0 fill_up 1 007 @ 00146138 v 0000 + 14868243 n 0102 + 13480541 n 0101 ! 00448680 v 0101 ~ 00452098 v 0000 ~ 00452220 v 0000 ~ 00452394 v 0000 01 + 01 00 | become full; "The pool slowly filled with water"; "The theater filled up slowly" -00452098 30 v 01 water 4 002 @ 00451838 v 0000 + 13505843 n 0104 01 + 01 00 | fill with tears; "His eyes were watering" -00452220 30 v 01 flood 1 003 @ 00451838 v 0000 + 01257542 n 0101 + 11454591 n 0101 01 + 01 00 | become filled to overflowing; "Our basement flooded during the heavy rains" -00452394 30 v 01 rack_up 0 001 @ 00451838 v 0000 01 + 08 00 | supply a rack with feed for (horses or other animals) -00452512 30 v 03 fill 1 fill_up 0 make_full 0 034 > 00451838 v 0000 @ 00126264 v 0000 + 14868243 n 0102 + 06676254 n 0101 + 03714721 n 0102 + 03338009 n 0101 + 00402535 n 0101 ! 00449692 v 0101 ^ 01695567 v 0102 ^ 01194938 v 0104 ~ 00181875 v 0000 ~ 00182037 v 0000 ~ 00182269 v 0000 ~ 00320681 v 0000 ~ 00321148 v 0000 ~ 00321486 v 0000 ~ 00451279 v 0000 ~ 00453294 v 0000 ~ 00453424 v 0000 ~ 00453554 v 0000 ~ 00453680 v 0000 ~ 00453803 v 0000 ~ 00454018 v 0000 ~ 00454135 v 0000 ~ 00455750 v 0000 ~ 00497705 v 0000 ~ 00498299 v 0000 ~ 00506040 v 0000 ~ 01484982 v 0000 ~ 01488714 v 0000 ~ 01489989 v 0000 ~ 01490336 v 0000 ~ 01524523 v 0000 ~ 02086963 v 0000 03 + 08 00 + 11 00 + 31 00 | make full, also in a metaphorical sense; "fill a container"; "fill the child with pride" -00453294 30 v 01 top_off c 001 @ 00452512 v 0000 01 + 08 00 | fill to the point of almost overflowing; "She topped off the cup" -00453424 30 v 01 heap 0 002 @ 00452512 v 0000 + 13774404 n 0107 01 + 08 00 | fill to overflow; "heap the platter with potatoes" -00453554 30 v 01 overfill 0 001 @ 00452512 v 0000 03 + 08 00 + 11 00 + 31 00 | fill beyond capacity; "overfill the baskets" -00453680 30 v 01 ink 0 003 @ 00452512 v 0000 + 14917635 n 0101 ~ 00509228 v 0000 01 + 08 00 | fill with ink; "ink a pen" -00453803 30 v 03 replenish 0 refill 0 fill_again 0 003 @ 00452512 v 0000 + 13547925 n 0201 + 13547925 n 0102 03 + 08 00 + 11 00 + 31 00 | fill something that had previously been emptied; "refill my glass, please" -00454018 30 v 01 prime 1 001 @ 00452512 v 0000 02 + 08 00 + 11 00 | fill with priming liquid; "prime a car engine" -00454135 30 v 01 line 0 001 @ 00452512 v 0000 03 + 08 00 + 11 00 + 21 00 | fill plentifully; "line one's pockets" -00454251 30 v 02 suffuse 1 perfuse 0 003 @ 00454868 v 0000 + 00469468 a 0101 + 13534954 n 0103 02 + 11 00 + 21 00 | cause to spread or flush or flood through, over, or across; "The sky was suffused with a warm pink color" -00454475 30 v 01 perfuse 1 002 @ 00454868 v 0000 + 00324233 n 0101 02 + 08 00 + 11 00 | force a fluid through (a body part or tissue); "perfuse a liver with a salt solution" -00454651 30 v 01 suffuse 0 003 @ 00109660 v 0000 + 00469468 a 0101 + 13534954 n 0103 02 + 01 00 + 04 00 | to become overspread as with a fluid, a colour, a gleam of light; "His whole frame suffused with a cold dew" -00454868 30 v 01 flush 3 005 > 02066939 v 0000 @ 00228236 v 0000 + 07439570 n 0101 ~ 00454251 v 0000 ~ 00454475 v 0000 02 + 08 00 + 11 00 | cause to flow or flood with or as if with water; "flush the meadows" -00455079 30 v 02 wash_down 0 flush_down 0 001 @ 00455212 v 0000 02 + 01 00 + 04 00 | flow freely; "The body washed down the river" -00455212 30 v 01 flush 0 003 @ 02066939 v 0000 + 07439570 n 0101 ~ 00455079 v 0000 02 + 01 00 + 04 00 | flow freely; "The garbage flushed down the river" -00455368 30 v 02 sluice 1 flush 2 003 @ 00216216 v 0000 + 07439570 n 0201 + 04244379 n 0101 01 + 08 00 | irrigate with water from a sluice; "sluice the earth" -00455529 30 v 03 flush 1 scour 0 purge 3 003 @ 01536168 v 0000 + 00252430 n 0301 + 08647457 n 0201 02 + 08 00 + 21 00 | rinse, clean, or empty with a liquid; "flush the wound with antibiotics"; "purge the old gas tank" -00455750 30 v 01 complete 0 001 @ 00452512 v 0000 02 + 08 00 + 11 00 | bring to a whole, with all the necessary parts or elements; "A child would complete the family" -00455919 30 v 01 complement 2 002 @ 02673134 v 0000 + 05109511 n 0101 02 + 08 00 + 11 00 | make complete or perfect; supply what is wanting or form the complement to; "I need some pepper to complement the sweet touch in the soup" -00456151 30 v 02 soak 0 imbue 1 004 @ 00497705 v 0000 + 13557158 n 0101 ~ 00327362 v 0000 ~ 00327813 v 0000 03 + 08 00 + 11 00 + 21 00 | fill, soak, or imbue totally; "soak the bandage with disinfectant" -00456357 30 v 01 saturate 1 003 @ 00126264 v 0000 ;c 06084469 n 0000 + 00402671 n 0101 02 + 08 00 + 11 00 | cause (a chemical compound, vapour, solution, magnetic material) to unite with the greatest possible amount of another substance -00456596 30 v 01 match 0 003 $ 00456740 v 0000 @ 00150287 v 0000 + 05696020 n 0101 01 + 01 00 | be equal or harmonize; "The two pieces match" -00456740 30 v 02 match 1 fit 0 005 @ 00296178 v 0000 + 07369604 n 0203 + 05696020 n 0101 $ 00456596 v 0000 ~ 02673134 v 0000 02 + 08 00 + 11 00 | make correspond or harmonize; "Match my sweater" -00456937 30 v 01 service 0 002 @ 00295966 v 0000 + 00268112 n 0103 01 + 08 00 | make fit for use; "service my truck"; "the washing machine needs to be serviced" -00457100 30 v 02 homogenize 1 homogenise 1 004 $ 00457327 v 0000 @ 00417001 v 0000 + 00380994 n 0202 + 00380994 n 0101 02 + 08 00 + 11 00 | cause to become equal or homogeneous as by mixing; "homogenize the main ingredients" -00457327 30 v 02 homogenize 0 homogenise 0 005 @ 00146138 v 0000 + 00380994 n 0202 + 00380994 n 0101 $ 00457100 v 0000 ! 00457770 v 0201 01 + 01 00 | become homogeneous or similar, as by mixing; "The two liquids homogenized in the blender" -00457569 30 v 02 homogenize 2 homogenise 2 005 @ 00146138 v 0000 + 00380994 n 0202 ! 00457770 v 0201 + 00380994 n 0101 ! 00457770 v 0101 01 + 08 00 | break up the fat globules of; "homogenized milk" -00457770 30 v 03 curdle 0 clabber 0 clot 0 007 @ 00146138 v 0000 + 13454479 n 0302 + 07850219 n 0201 + 13454479 n 0101 ! 00457569 v 0101 ! 00457327 v 0102 ! 00457569 v 0102 02 + 01 00 + 11 00 | turn into curds; "curdled milk" -00457998 30 v 02 clot 1 coagulate 0 008 @ 00146138 v 0000 + 05402091 n 0202 + 13454479 n 0203 + 14815728 n 0201 + 14815728 n 0202 + 05402091 n 0101 + 13454479 n 0102 ~ 00442847 v 0000 02 + 01 00 + 11 00 | change from a liquid to a thickened or solid state; "coagulated blood" -00458276 30 v 02 clot 2 coagulate 1 004 @ 00126264 v 0000 + 05402091 n 0202 + 13454479 n 0203 + 05402091 n 0101 02 + 08 00 + 11 00 | cause to change from a liquid to a solid or thickened state -00458471 30 v 04 sour 1 turn 1 ferment 0 work d 006 $ 00458754 v 0000 @ 00146138 v 0000 + 13575433 n 0303 + 14738752 n 0301 + 13575433 n 0305 + 13559409 n 0101 01 + 01 00 | go sour or spoil; "The milk has soured"; "The wine worked"; "The cream has turned--we have to throw it out" -00458754 30 v 02 ferment 1 work e 008 > 00458471 v 0000 @ 00115157 v 0000 + 13575433 n 0103 + 14738752 n 0101 + 13575433 n 0105 + 13575433 n 0104 $ 00458471 v 0000 ~ 00459114 v 0000 02 + 08 00 + 11 00 | cause to undergo fermentation; "We ferment the grapes for a very long time to achieve high alcohol content"; "The vintner worked the wine in big oak vats" -00459114 30 v 01 vinify 0 004 @ 00458754 v 0000 ;c 01126564 n 0000 + 13573666 n 0101 + 07891726 n 0101 01 + 08 00 | convert a juice into wine by fermentation; "vinify grape juice" -00459296 30 v 02 rush 1 hurry 1 005 > 00459498 v 0000 @ 00765649 v 0000 + 14451189 n 0201 + 00555648 n 0103 ! 00459776 v 0101 02 + 08 00 + 09 00 | urge to an unnatural speed; "Don't rush me, please!" -00459498 30 v 05 rush 0 hasten 0 hurry 0 look_sharp 0 festinate 0 007 @ 02367363 v 0000 + 14313154 n 0501 + 05060189 n 0303 + 07436352 n 0101 + 00555648 n 0103 + 10543795 n 0101 + 00555648 n 0104 01 + 02 00 | act or move at high speed; "We have to rush!"; "hurry--it's late!" -00459776 30 v 03 delay 0 detain 0 hold_up 0 008 @ 00439958 v 0000 + 01066163 n 0302 + 01066163 n 0101 ! 00459296 v 0101 ~ 00460132 v 0000 ~ 00460357 v 0000 ~ 00460555 v 0000 ~ 00460759 v 0000 03 + 08 00 + 10 00 + 11 00 | cause to be slowed down or delayed; "Traffic was delayed by the bad weather"; "she delayed the work that she didn't want to perform" -00460132 30 v 01 stonewall 0 002 @ 00459776 v 0000 + 10659571 n 0101 01 + 02 00 | engage in delaying tactics or refuse to cooperate; "The President stonewalled when he realized the plot was being uncovered by a journalist" -00460357 30 v 01 catch d 002 @ 00459776 v 0000 $ 01328012 v 0000 01 + 10 00 | delay or hold up; prevent from proceeding on schedule or as planned; "I was caught in traffic and missed the meeting" -00460555 30 v 01 stall 0 003 @ 00459776 v 0000 + 01075725 n 0101 + 01075725 n 0102 02 + 02 00 + 08 00 | deliberately delay an event or action; "she doesn't want to write the report, so she is stalling" -00460759 30 v 01 buy_time 0 001 @ 00459776 v 0000 02 + 01 00 + 02 00 | act so as to delay an event or action in order to gain an advantage -00460900 30 v 03 stay 1 detain 1 delay 1 003 @ 00440286 v 0000 + 01066163 n 0301 + 06542267 n 0101 01 + 08 00 | stop or halt; "Please stay the bloodshed!" -00461057 30 v 01 hush 2 002 @ 00228236 v 0000 ;c 00922327 n 0000 01 + 08 00 | run water over the ground to erode (soil), revealing the underlying strata and valuable minerals -00461234 30 v 01 hush 3 002 @ 00036362 v 0000 ;c 00922327 n 0000 01 + 08 00 | wash by removing particles; "Wash ores" -00461354 30 v 01 hush 0 002 @ 00109660 v 0000 + 04982478 n 0101 02 + 01 00 + 02 00 | become quiet or still; fall silent; "hush my baby!" -00461493 30 v 06 hush 1 quieten 0 silence 0 still 0 shut_up 0 hush_up 0 016 > 00461354 v 0000 $ 02190188 v 0000 @ 00462092 v 0000 + 04982478 n 0403 + 04651974 n 0302 + 04982207 n 0301 + 13925550 n 0301 + 04218773 n 0301 + 04218564 n 0301 ! 00461956 v 0201 + 04982478 n 0101 ^ 02148109 v 0104 ~ 00390741 v 0000 ~ 00558061 v 0000 ~ 01809784 v 0000 ~ 02190943 v 0000 02 + 09 00 + 10 00 | cause to be quiet or not talk; "Please silence the children in the church!" -00461956 30 v 01 louden 0 003 @ 00126264 v 0000 ! 00461493 v 0102 $ 02190477 v 0000 03 + 09 00 + 10 00 + 11 00 | cause to become loud -00462092 30 v 06 suppress 0 stamp_down 0 inhibit 0 subdue 1 conquer 0 curb 1 020 @ 02510337 v 0000 + 09956578 n 0501 + 00089027 n 0502 + 10668450 n 0401 + 00201923 n 0302 + 01070892 n 0301 + 02005065 a 0101 + 01079604 n 0101 + 01147950 n 0101 + 04361641 n 0102 + 10678472 n 0102 + 10678472 n 0101 ~ 00008435 v 0000 ~ 00390842 v 0000 ~ 00391417 v 0000 ~ 00461493 v 0000 ~ 00462894 v 0000 ~ 00463007 v 0000 ~ 00463234 v 0000 ~ 01568630 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to put down by force or authority; "suppress a nascent uprising"; "stamp down on littering"; "conquer one's desires" -00462689 30 v 01 inhibit 1 003 @ 00233335 v 0000 + 02004176 a 0101 + 14724436 n 0101 02 + 08 00 + 11 00 | limit the range or extent of; "Contact between the young was inhibited by strict social customs" -00462894 30 v 01 burke 0 001 @ 00462092 v 0000 01 + 08 00 | get rid of, silence, or suppress; "burke an issue" -00463007 30 v 01 silence 2 002 @ 00462092 v 0000 + 04652177 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | keep from expression, for example by threats or pressure; "All dissenters were silenced when the dictator assumed power" -00463234 30 v 03 squelch 0 quell 0 quench 1 005 @ 00462092 v 0000 + 01079604 n 0203 + 06716796 n 0102 + 06716796 n 0103 + 04293258 n 0103 01 + 08 00 | suppress or crush completely; "squelch any sign of dissent"; "quench a rebellion" -00463469 30 v 02 flatten 0 flatten_out 0 003 @ 00140967 v 0000 ~ 00463633 v 0000 ~ 01390616 v 0000 01 + 01 00 | become flat or flatter; "The landscape flattened" -00463633 30 v 01 splat 1 002 @ 00463469 v 0000 + 07395303 n 0101 02 + 01 00 + 04 00 | flatten on impact; "The snowballs splatted on the trees" -00463778 30 v 01 flatten 1 005 @ 00142191 v 0000 ~ 00464006 v 0000 ~ 00464173 v 0000 ~ 01391280 v 0000 ~ 01391538 v 0000 02 + 08 00 + 11 00 | make flat or flatter; "flatten a road"; "flatten your stomach with these exercises" -00464006 30 v 02 steamroll 0 steamroller 0 002 @ 00463778 v 0000 + 04310157 n 0201 02 + 08 00 + 11 00 | make level or flat with a steamroller; "steamroll the roads" -00464173 30 v 01 splat 0 002 @ 00463778 v 0000 ;c 00243918 n 0000 01 + 08 00 | split open and flatten for cooking; "splat fish over an open fire" -00464321 30 v 04 align 0 aline 0 line_up 0 adjust 5 009 @ 00468791 v 0000 + 05077146 n 0101 ! 00466484 v 0101 ~ 00464687 v 0000 ~ 00464828 v 0000 ~ 00465145 v 0000 ~ 00465291 v 0000 ~ 00465461 v 0000 ~ 00731789 v 0000 01 + 08 00 | place in a line or arrange so as to be parallel or straight; "align the car with the curb"; "align the sheets of paper on the table" -00464687 30 v 01 address 0 002 @ 00464321 v 0000 ;c 00464894 n 0000 01 + 08 00 | adjust and aim (a golf ball) at in preparation of hitting -00464828 30 v 02 synchronize 3 synchronise 3 002 @ 00464321 v 0000 $ 00464996 v 0000 01 + 08 00 | cause to indicate the same time or rate; "synchronize your watches" -00464996 30 v 02 synchronize 1 synchronise 1 002 $ 00464828 v 0000 @ 01224744 v 0000 01 + 01 00 | operate simultaneously; "The clocks synchronize" -00465145 30 v 02 realign 0 realine 0 001 @ 00464321 v 0000 01 + 08 00 | align anew or better; "The surgeon realigned my jaw after the accident" -00465291 30 v 02 true 0 true_up 0 002 @ 00464321 v 0000 + 05077348 n 0101 01 + 08 00 | make level, square, balanced, or concentric; "true up the cylinder of an engine" -00465461 30 v 01 collimate 0 004 @ 00464321 v 0000 ;c 06100778 n 0000 + 01000276 n 0101 + 03070854 n 0101 01 + 08 00 | adjust the line of sight of (an optical instrument) -00465634 30 v 01 plumb 0 002 @ 00296178 v 0000 + 03968728 n 0102 01 + 08 00 | adjust with a plumb line so as to make vertical -00465762 30 v 04 dislocate 0 luxate 0 splay 0 slip 3 006 @ 01850315 v 0000 + 00329031 n 0402 + 00328885 n 0401 + 07445010 n 0201 + 14291561 n 0101 + 07367385 n 0101 01 + 08 00 | move out of position; "dislocate joints"; "the artificial hip joint luxated and had to be put back surgically" -00466053 30 v 03 align 1 ordinate 0 coordinate 1 004 @ 00296178 v 0000 + 00807273 n 0301 + 01000068 n 0101 ~ 00466327 v 0000 01 + 08 00 | bring (components or parts) into proper or desirable coordination correlation; "align the wheels of my car"; "ordinate similar parts" -00466327 30 v 01 misalign 0 002 @ 00466053 v 0000 + 05077524 n 0101 01 + 08 00 | align imperfectly or badly; "the elements of the turbine were misaligned" -00466484 30 v 01 skew 0 002 @ 00468791 v 0000 ! 00464321 v 0101 03 + 01 00 + 08 00 + 11 00 | turn or place at an angle; "the lines on the sheet of paper are skewed" -00466651 30 v 02 integrate 0 incorporate 0 011 @ 01461328 v 0000 + 01238267 n 0201 + 00373278 n 0201 + 00334940 a 0102 + 01330986 a 0101 + 01237415 n 0102 ! 00397576 v 0101 ~ 00398138 v 0000 ~ 00398349 v 0000 ~ 00467151 v 0000 ~ 00467346 v 0000 02 + 08 00 + 21 00 | make into a whole or make part of a whole; "She incorporated his suggestions into her proposal" -00467015 30 v 01 lysogenize 0 002 @ 00467451 v 0000 + 13509967 n 0101 01 + 11 00 | become integrated into the genome of (a bacterium) -00467151 30 v 01 build_in 0 001 @ 00466651 v 0000 02 + 08 00 + 21 00 | make something an integral part of something else; "we can build in a special clause to make the contract better for you" -00467346 30 v 01 re-incorporate 0 001 @ 00466651 v 0000 02 + 08 00 + 11 00 | incorporate again or anew -00467451 30 v 01 integrate 1 005 @ 00146138 v 0000 + 01237415 n 0102 + 01202415 n 0102 ~ 00367685 v 0000 ~ 00467015 v 0000 02 + 01 00 + 02 00 | become one; become integrated; "The students at this school integrate immediately, despite their different backgrounds" -00467717 30 v 02 standardize 0 standardise 0 014 @ 02511551 v 0000 + 01158690 n 0202 + 10647582 n 0202 + 13617952 n 0201 + 13373214 n 0201 + 07260623 n 0201 + 05924920 n 0202 + 00999245 n 0102 + 10647582 n 0101 + 13617952 n 0101 + 13373214 n 0101 + 07260623 n 0101 + 05924920 n 0102 ~ 00468116 v 0000 01 + 08 00 | cause to conform to standard or norm; "The weights and measures were standardized" -00468116 30 v 01 gauge 2 001 @ 00467717 v 0000 01 + 08 00 | adapt to a specified measurement; "gauge the instruments" -00468236 30 v 04 normalize 1 normalise 1 renormalize 0 renormalise 0 006 @ 00126264 v 0000 + 01158690 n 0204 + 10362428 n 0202 + 01158690 n 0103 + 10362428 n 0101 $ 00468583 v 0000 02 + 08 00 + 11 00 | make normal or cause to conform to a norm or standard; "normalize relations with China"; "normalize the temperature"; "normalize the spelling" -00468583 30 v 02 normalize 6 normalise 3 002 $ 00468236 v 0000 @ 00109660 v 0000 01 + 01 00 | become normal or return to its normal state; "Let us hope that relations with this country will normalize soon" -00468791 30 v 01 reorient 0 004 @ 00109660 v 0000 + 00346296 n 0102 ~ 00464321 v 0000 ~ 00466484 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | set or arrange in a new or different determinate position; "Orient the house towards the South" -00469030 30 v 01 morph 0 001 @ 01350699 v 0000 01 + 01 00 | change shape as via computer animation; "In the video, Michael Jackson morphed into a panther" -00469187 30 v 01 morph 1 002 > 00469030 v 0000 @ 00126264 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to change shape in a computer animation; "The computer programmer morphed the image" -00469382 30 v 05 wear 0 wear_off 0 wear_out 0 wear_down 0 wear_thin 0 004 @ 00208497 v 0000 + 14562683 n 0101 ~ 00275466 v 0000 ~ 01370439 v 0000 03 + 01 00 + 08 00 + 11 00 | deteriorate through use or stress; "The constant friction wore out the cloth" -00469637 30 v 02 wilt 0 droop 0 004 @ 00208836 v 0000 + 13905572 n 0202 + 14283178 n 0101 + 00362546 n 0102 01 + 01 00 | become limp; "The flowers wilted" -00469794 30 v 01 wilt 1 001 @ 00223500 v 0000 02 + 01 00 + 02 00 | lose strength; "My opponent was wilting" -00469904 30 v 02 neutralize 0 neutralise 0 003 @ 00126264 v 0000 + 13521072 n 0202 + 13521072 n 0101 02 + 08 00 + 11 00 | make chemically neutral; "She neutralized the solution" -00470084 30 v 04 neutralize 1 neutralise 1 nullify 0 negate 3 004 @ 00224901 v 0000 + 00231567 n 0301 + 00233386 n 0202 + 00233386 n 0101 02 + 08 00 + 11 00 | make ineffective by counterbalancing the effect of; "Her optimism neutralizes his gloom"; "This action will negate the effect of my efforts" -00470386 30 v 03 commercialize 0 commercialise 0 market 0 009 @ 00126264 v 0000 ;c 01090446 n 0000 + 02062133 a 0301 + 02061998 a 0301 + 00877119 a 0301 + 01097292 n 0301 + 01112420 n 0301 + 00951781 n 0202 + 00951781 n 0101 01 + 08 00 | make commercial; "Some Amish people have commercialized their way of life" -00470701 30 v 07 eliminate 0 annihilate 0 extinguish 1 eradicate 0 wipe_out 0 decimate 0 carry_off 0 009 @ 01323958 v 0000 + 00218427 n 0601 + 07334490 n 0503 + 07332691 n 0301 + 00586617 a 0201 + 07330828 n 0201 + 00218208 n 0201 + 09794917 n 0201 $ 00471058 v 0000 02 + 09 00 + 10 00 | kill in large numbers; "the plague wiped out an entire population" -00471058 30 v 01 decimate 1 002 $ 00470701 v 0000 @ 01323958 v 0000 01 + 09 00 | kill one in every ten, as of mutineers in Roman armies -00471196 30 v 02 cancel_out 0 wipe_out 4 002 @ 00471711 v 0000 + 07334490 n 0203 01 + 11 00 | wipe out the effect of something; "The new tax effectively cancels out my raise"; "The `A' will cancel out the `C' on your record" -00471423 30 v 01 decouple 0 002 @ 00471711 v 0000 ;c 06099269 n 0000 01 + 08 00 | reduce or eliminate the coupling of (one circuit or part to another) -00471576 30 v 01 decouple 1 002 @ 00471711 v 0000 ;c 06090869 n 0000 01 + 08 00 | eliminate airborne shock waves from (an explosive) -00471711 30 v 04 extinguish 3 eliminate 1 get_rid_of 0 do_away_with 0 014 @ 01619929 v 0000 + 00395333 n 0201 + 00223720 n 0201 + 09272468 n 0201 ~ 00471196 v 0000 ~ 00471423 v 0000 ~ 00471576 v 0000 ~ 00472230 v 0000 ~ 00472426 v 0000 ~ 00472532 v 0000 ~ 00472671 v 0000 ~ 00473322 v 0000 ~ 00478217 v 0000 ~ 00615774 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | terminate, end, or take out; "Let's eliminate the course on Akkadian hieroglyphics"; "Socialism extinguished these archaic customs"; "eliminate my debts" -00472230 30 v 01 obliterate 3 005 @ 00471711 v 0000 + 00898132 a 0101 + 07331013 n 0102 + 00218208 n 0102 + 09376078 n 0101 02 + 08 00 + 11 00 | do away with completely, without leaving a trace -00472426 30 v 01 knock_out 1 001 @ 00471711 v 0000 02 + 08 00 + 11 00 | eliminate; "knock out a target" -00472532 30 v 01 drown 2 001 @ 00471711 v 0000 02 + 08 00 + 21 00 | get rid of as if by submerging; "She drowned her trouble in alcohol" -00472671 30 v 01 cut_out 0 003 @ 00471711 v 0000 + 03153681 n 0101 ~ 00472871 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | delete or remove; "Cut out the extra text"; "cut out the newspaper article" -00472871 30 v 01 excise 2 002 @ 00472671 v 0000 + 00393369 n 0104 01 + 08 00 | remove by cutting; "The surgeon excised the tumor" -00473003 30 v 03 sparkle 1 scintillate 0 coruscate 0 004 @ 02604760 v 0000 + 05619903 n 0301 + 05620190 n 0201 + 04953380 n 0101 02 + 01 00 + 02 00 | be lively or brilliant or exhibit virtuosity; "The musical performance sparkled"; "A scintillating conversation"; "his playing coruscated throughout the concert hall" -00473322 30 v 04 cut 2 prune 0 rationalize 0 rationalise 0 004 @ 00471711 v 0000 ^ 00236592 v 0104 ^ 00429060 v 0103 ^ 00472671 v 0101 01 + 08 00 | weed out unwanted or unnecessary things; "We had to lose weight, so we cut the sugar from our diet" -00473572 30 v 02 perfect 0 hone 0 006 @ 00205885 v 0000 + 01751693 a 0101 + 00260494 n 0101 + 10415439 n 0101 ~ 00172505 v 0000 ~ 00473799 v 0000 02 + 08 00 + 11 00 | make perfect or complete; "perfect your French in Paris!" -00473799 30 v 05 polish 0 round 1 round_off 2 polish_up 0 brush_up 0 002 @ 00473572 v 0000 + 14459824 n 0101 02 + 08 00 + 11 00 | bring to a highly developed, finished, or refined state; "polish your social manners" -00474017 30 v 04 polish 1 refine 1 fine-tune 1 down 0 007 @ 00205885 v 0000 + 14459824 n 0202 + 07357679 n 0201 + 10514784 n 0201 + 14459824 n 0101 ~ 00474308 v 0000 ~ 02388403 v 0000 03 + 08 00 + 09 00 + 10 00 | improve or perfect by pruning or polishing; "refine one's style of writing" -00474308 30 v 02 overrefine 0 over-refine 0 002 @ 00474017 v 0000 + 00751529 n 0102 02 + 08 00 + 11 00 | refine too much or with excess of subtlety; "He is overrefining this matter" -00474492 30 v 02 refine 0 rectify 5 005 @ 00475183 v 0000 + 13547199 n 0201 + 13548105 n 0102 + 10514784 n 0101 + 13548105 n 0101 02 + 08 00 + 11 00 | reduce to a fine, unmixed, or pure state; separate from extraneous matter or cleanse from impurities; "refine sugar" -00474762 30 v 01 refine 2 004 @ 00515154 v 0000 + 13548105 n 0102 + 10514784 n 0101 + 04068441 n 0101 02 + 08 00 + 11 00 | treat or prepare so as to put in a usable condition; "refine paper stock"; "refine pig iron"; "refine oil" -00474994 30 v 01 precipitate 0 005 @ 00146138 v 0000 + 14591635 n 0101 + 13540199 n 0101 + 14997393 n 0101 + 03998673 n 0101 01 + 01 00 | separate as a fine suspension of solid particles -00475183 30 v 04 purify 0 sublimate 1 make_pure 0 distill 3 014 @ 00205885 v 0000 ;c 06084469 n 0000 + 14836960 n 0401 + 13468306 n 0402 + 14836960 n 0402 + 13468306 n 0401 + 15062284 n 0201 + 13548105 n 0103 + 00253270 n 0101 + 14486767 n 0101 + 04026053 n 0101 $ 00229026 v 0000 ~ 00474492 v 0000 ~ 00475647 v 0000 02 + 08 00 + 11 00 | remove impurities from, increase the concentration of, and separate through the process of distillation; "purify the water" -00475647 30 v 01 purge 0 004 @ 00475183 v 0000 + 00252430 n 0101 + 00252662 n 0102 + 00252430 n 0102 01 + 08 00 | rid of impurities; "purge the water"; "purge your mind" -00475819 30 v 03 purify 1 purge 4 sanctify 0 010 @ 00126264 v 0000 + 01039925 n 0301 + 10325243 n 0304 + 10546850 n 0301 + 00252662 n 0201 + 00253070 n 0202 + 00253070 n 0101 + 13990064 n 0101 ~ 00476313 v 0000 ~ 00476538 v 0000 01 + 08 00 | make pure or free from sin or guilt; "he left the monastery purified" -00476133 30 v 01 purify 2 002 @ 00109660 v 0000 + 00252894 n 0101 01 + 02 00 | become clean or pure or free of guilt and sin; "The hippies came to the ashram in order to purify" -00476313 30 v 02 spiritualize 0 spiritualise 0 003 @ 00475819 v 0000 + 00583933 n 0202 + 00583933 n 0101 01 + 08 00 | purify from the corrupting influences of the world; "During his stay at the ashram he was spiritualized" -00476538 30 v 01 lustrate 0 002 @ 00475819 v 0000 + 01027662 n 0101 01 + 09 00 | purify by means of a ritual; also used in post-Communist countries to refer to the political cleansing of former officials -00476744 30 v 03 deform 1 distort 1 strain 0 004 @ 00142191 v 0000 + 14298102 n 0301 + 07358060 n 0101 ~ 00477107 v 0000 02 + 08 00 + 11 00 | alter the shape of (something) by stress; "His body was deformed by leprosy" -00476965 30 v 01 draw 0 002 @ 00140967 v 0000 $ 01278817 v 0000 01 + 01 00 | contract; "The material drew after it was washed in hot water" -00477107 30 v 01 jaundice 0 002 @ 00476744 v 0000 + 04643397 n 0104 01 + 11 00 | distort adversely; "Jealousy had jaundiced his judgment" -00477247 30 v 01 blow 8 003 @ 00142191 v 0000 + 00835501 n 0101 + 13439807 n 0101 01 + 08 00 | shape by blowing; "Blow a glass vase" -00477382 30 v 01 block 0 001 @ 00142191 v 0000 01 + 08 00 | shape into a block or blocks; "block the graphs so one can see the results clearly" -00477528 30 v 01 block 1 002 @ 00142191 v 0000 + 13914608 n 0101 01 + 08 00 | shape by using a block; "Block a hat"; "block a garment" -00477665 30 v 01 deform 0 003 @ 00140967 v 0000 + 07358060 n 0101 + 07433973 n 0102 01 + 01 00 | become misshapen; "The sidewalk deformed during the earthquake" -00477828 30 v 01 cup 0 001 @ 00142191 v 0000 01 + 08 00 | form into the shape of a cup; "She cupped her hands" -00477941 30 v 05 mar 0 impair 1 spoil 2 deflower 0 vitiate 1 008 @ 00258857 v 0000 + 00966718 n 0401 + 01263018 n 0301 + 00403334 n 0201 + 09310460 n 0201 + 04692157 n 0103 ~ 01537959 v 0000 ~ 01549905 v 0000 02 + 08 00 + 11 00 | make imperfect; "nothing marred her beauty" -00478217 30 v 02 snuff_out 0 extinguish 0 006 @ 00471711 v 0000 + 00229934 n 0201 + 10617904 n 0101 + 04253168 n 0101 ~ 00478488 v 0000 ~ 01569017 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | put an end to; kill; "The Nazis snuffed out the life of many Jewish children" -00478488 30 v 01 stamp 0 001 @ 00478217 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | destroy or extinguish as if by stamping with the foot; "Stamp fascism into submission"; "stamp out tyranny" -00478682 30 v 04 stub_out 0 crush_out 0 extinguish 5 press_out 0 001 @ 00352826 v 0000 01 + 08 00 | extinguish by crushing; "stub out your cigar" -00478830 30 v 03 kill 0 obliterate 2 wipe_out 2 004 @ 00179311 v 0000 + 07334490 n 0303 + 00898132 a 0201 + 07331013 n 0202 02 + 08 00 + 11 00 | mark for deletion, rub off, or erase; "kill these lines in the President's speech" -00479060 30 v 01 drown 1 001 @ 01323958 v 0000 01 + 09 00 | kill by submerging in water; "He drowned the kittens" -00479176 30 v 03 massacre 0 slaughter 0 mow_down 0 003 @ 01323958 v 0000 + 00223983 n 0201 + 00223983 n 0102 01 + 09 00 | kill a large number of people indiscriminately; "The Hutus massacred the Tutsis in Rwanda" -00479391 30 v 02 erase 0 wipe_out 3 003 @ 01323958 v 0000 + 07334490 n 0203 + 00397760 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | remove from memory or existence; "The Turks erased the Armenians in 1915" -00479598 30 v 02 mechanize 0 mechanise 0 006 @ 00126264 v 0000 + 14578302 n 0202 + 00102457 n 0203 + 14578302 n 0101 + 00102457 n 0102 ~ 00479817 v 0000 02 + 08 00 + 11 00 | make mechanical; "mechanize the procedure" -00479817 30 v 02 dehumanize 0 dehumanise 0 001 @ 00479598 v 0000 02 + 08 00 + 11 00 | make mechanical or routine -00479932 30 v 03 automatize 0 automatise 0 automate 0 005 @ 00126264 v 0000 + 00102457 n 0301 + 14574504 n 0301 + 00181476 a 0101 ~ 00480396 v 0000 02 + 08 00 + 11 00 | make automatic or control or operate automatically; "automatize the production"; "automate the movement of the robot" -00480221 30 v 02 automatize 5 automatise 5 005 @ 00126264 v 0000 + 09825519 n 0201 + 01499999 a 0101 + 09825519 n 0101 + 02761392 n 0101 01 + 08 00 | turn into an automaton -00480396 30 v 02 semi-automatize 0 semi-automatise 0 001 @ 00479932 v 0000 02 + 08 00 + 11 00 | make semiautomatic; "Can we semi-automatize the semantic tagging process?" -00480569 30 v 02 mechanize 1 mechanise 1 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make monotonous; make automatic or routine; "If your work becomes too mechanized, change jobs!" -00480751 30 v 04 mechanize 2 mechanise 2 motorize 0 motorise 0 004 @ 02339413 v 0000 + 00102927 n 0402 + 00102927 n 0301 + 03789946 n 0301 01 + 08 00 | equip with armed and armored motor vehicles; "mechanize armies" -00480969 30 v 04 systematize 0 systematise 0 systemize 0 systemise 0 013 @ 00277659 v 0000 + 10381369 n 0405 + 05726596 n 0404 + 04768657 n 0403 + 10381369 n 0304 + 05726596 n 0304 + 04768657 n 0303 + 01009190 n 0202 + 10381369 n 0203 + 01009190 n 0101 + 10381369 n 0102 ~ 00481391 v 0000 ~ 00481739 v 0000 02 + 08 00 + 11 00 | arrange according to a system or reduce to a system; "systematize our scientific knowledge" -00481391 30 v 01 digest 1 001 @ 00480969 v 0000 01 + 08 00 | systematize, as by classifying and summarizing; "the government digested the entire law into a code" -00481555 30 v 01 digest 2 004 $ 01197338 v 0000 @ 00109660 v 0000 + 01182024 a 0101 + 03060385 a 0101 01 + 01 00 | become assimilated into the body; "Protein digests in a few hours" -00481739 30 v 01 codify 1 004 @ 00480969 v 0000 + 06667317 n 0102 + 01009507 n 0101 + 06667317 n 0101 01 + 08 00 | organize into a code or system, such as a body of law; "Hammurabi codified the laws" -00481941 30 v 04 finalize 0 finalise 0 settle 4 nail_down 0 004 @ 00352826 v 0000 ^ 00486703 v 0302 + 00211462 n 0202 + 00211462 n 0101 01 + 08 00 | make final; put the last touches on; put into final form; "let's finalize the proposal" -00482180 30 v 03 harmonize 1 harmonise 1 chord 0 008 @ 00126264 v 0000 ;c 05718935 n 0000 + 06869951 n 0301 + 07027458 n 0202 + 01253778 n 0202 + 07027458 n 0101 + 01253778 n 0101 ~ 00483656 v 0000 02 + 08 00 + 11 00 | bring into consonance, harmony, or accord while making music or singing -00482473 30 v 03 harmonize 2 harmonise 2 reconcile 0 007 @ 00296178 v 0000 + 00185104 n 0301 + 09952163 n 0305 + 10160412 n 0101 + 13969243 n 0101 + 10160412 n 0202 ~ 00482749 v 0000 01 + 08 00 | bring into consonance or accord; "harmonize one's goals with one's abilities" -00482749 30 v 01 key 0 001 @ 00482473 v 0000 01 + 20 00 | harmonize with or adjust to; "key one's actions to the voters' prevailing attitude" -00482893 30 v 03 accommodate 1 reconcile 1 conciliate 0 005 @ 00483181 v 0000 + 00185104 n 0201 + 07369604 n 0102 + 07177437 n 0101 + 05755486 n 0101 01 + 21 00 | make (one thing) compatible with (another); "The scientists had to accommodate the new results with the existing theories" -00483181 30 v 02 harmonize 3 harmonise 3 007 @ 02458103 v 0000 + 10160412 n 0202 + 13969243 n 0201 + 10160412 n 0101 + 13969243 n 0101 ~ 00482893 v 0000 ~ 00483466 v 0000 01 + 08 00 | bring (several things) into consonance or relate harmoniously; "harmonize the different interests" -00483466 30 v 01 proportion 1 003 @ 00483181 v 0000 + 13898315 n 0102 + 05076827 n 0101 02 + 08 00 + 11 00 | give pleasant proportions to; "harmonize a building with those surrounding it" -00483656 30 v 01 key a 004 @ 00482180 v 0000 ;c 05718935 n 0000 + 04986147 n 0101 + 06863751 n 0101 01 + 21 00 | regulate the musical pitch of -00483801 30 v 03 compartmentalize 0 compartmentalise 0 cut_up 1 010 @ 01556921 v 0000 + 14417146 n 0202 + 01012712 n 0205 + 03080309 n 0201 + 03079741 n 0201 + 00329034 a 0101 + 14417146 n 0101 + 01012712 n 0104 + 03080309 n 0101 + 03079741 n 0101 01 + 08 00 | separate into isolated compartments or categories; "You cannot compartmentalize your life like this!" -00484166 30 v 02 complete 2 finish 2 014 @ 00352826 v 0000 + 09930257 n 0202 + 07291312 n 0203 + 15267536 n 0204 + 00210518 n 0201 + 00210518 n 0202 + 00211110 n 0101 ~ 00352137 v 0000 ~ 00484712 v 0000 ~ 00484892 v 0000 ~ 00485147 v 0000 ~ 00485274 v 0000 ~ 00486018 v 0000 ~ 01640855 v 0000 04 + 02 00 + 33 00 + 08 01 + 11 01 | come or bring to a finish or an end; "He finished the dishes"; "She completed the requirements for her Master's Degree"; "The fastest runner finished the race in just over 2 hours; others finished in over 4 hours" -00484712 30 v 02 top 3 top_off 3 001 @ 00484166 v 0000 02 + 08 00 + 11 00 | finish up or conclude; "They topped off their dinner with a cognac"; "top the evening with champagne" -00484892 30 v 07 get_through 0 wrap_up 4 finish_off 0 mop_up 0 polish_off 0 clear_up 2 finish_up 0 003 @ 00484166 v 0000 + 00211110 n 0405 ~ 00485435 v 0000 02 + 08 00 + 11 00 | finish a task completely; "I finally got through this homework assignment" -00485147 30 v 01 see_through 0 001 @ 00484166 v 0000 01 + 08 00 | remain with until completion; "I must see the job through" -00485274 30 v 02 round_out 3 finish_out 0 001 @ 00484166 v 0000 02 + 08 00 + 11 00 | fill out; "These studies round out the results of many years of research" -00485435 30 v 01 cap_off 0 001 @ 00484892 v 0000 02 + 08 00 + 31 00 | finish or complete, as with some decisive action; "he capped off the meeting with a radical proposal" -00485609 30 v 02 culminate 0 climax 0 007 @ 02609764 v 0000 + 07417043 n 0201 + 06373747 n 0201 + 15291199 n 0102 + 06373747 n 0102 + 00211110 n 0102 ~ 00485891 v 0000 01 + 04 00 | end, especially to reach a final or climactic stage; "The meeting culminated in a tearful embrace" -00485891 30 v 02 crown 1 top 1 001 @ 00485609 v 0000 01 + 11 00 | be the culminating event; "The speech crowned the meeting" -00486018 30 v 07 follow_through 0 follow_up 0 follow_out 0 carry_out 0 implement 0 put_through 0 go_through 0 011 @ 00484166 v 0000 + 01127379 n 0502 + 03377582 n 0202 + 00211593 n 0101 + 00143251 n 0202 + 00143251 n 0201 + 00455348 n 0202 + 00455348 n 0201 + 03377582 n 0201 ~ 00486557 v 0000 $ 01640855 v 0000 03 + 08 00 + 22 07 + 22 01 | pursue to a conclusion or bring to a successful issue; "Did he go through with the treatment?"; "He implemented a new economic plan"; "She followed up his recommendations with a written proposal" -00486557 30 v 01 adhere 0 001 @ 00486018 v 0000 01 + 22 00 | follow through or carry out a plan without deviation; "They adhered to their plan" -00486703 30 v 02 fixate 0 settle_on 0 001 @ 01834730 v 0000 02 + 01 00 + 04 00 | become fixed (on); "Her eyes fixated on a point on the horizon" -00486850 30 v 01 glue 0 002 @ 01343892 v 0000 + 14702875 n 0101 03 + 08 00 + 11 00 + 22 00 | be fixed as if by glue; "His eyes were glued on her" -00486998 30 v 02 fixate 1 fix 0 003 @ 01296462 v 0000 + 01260182 n 0101 + 00276342 n 0101 02 + 08 00 + 11 00 | make fixed, stable or stationary; "let's fix the picture to the frame" -00487182 30 v 02 polarize 0 polarise 0 003 @ 01557774 v 0000 + 14002109 n 0202 + 11492014 n 0101 01 + 01 00 | become polarized in a conflict or contrasting situation -00487350 30 v 02 polarize 1 polarise 1 003 @ 01556921 v 0000 + 14002109 n 0202 + 11492014 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to concentrate about two conflicting or contrasting positions -00487554 30 v 02 polarize 2 polarise 2 004 @ 00126264 v 0000 ;c 06090869 n 0000 + 11492014 n 0202 + 14002109 n 0101 01 + 11 00 | cause to vibrate in a definite pattern; "polarize light waves" -00487748 30 v 05 load c adulterate 0 stretch f dilute 2 debase 1 010 @ 00203081 v 0000 + 14487443 n 0502 + 00362659 n 0401 + 02117232 a 0202 + 14616939 n 0201 + 14616939 n 0202 + 09772606 n 0201 $ 00154141 v 0000 ~ 00488175 v 0000 ~ 00488430 v 0000 02 + 08 00 + 11 00 | corrupt, debase, or make impure by adding a foreign or inferior substance; often by replacing valuable ingredients with inferior ones; "adulterate liquor" -00488175 30 v 01 water_down 4 001 @ 00487748 v 0000 01 + 08 00 | thin by adding water to; "They watered down the moonshine" -00488301 30 v 01 water_down 0 001 @ 00226071 v 0000 02 + 08 00 + 11 00 | make less strong or intense; "water down the mixture" -00488430 30 v 03 sophisticate 1 doctor 0 doctor_up 0 001 @ 00487748 v 0000 01 + 08 00 | alter and make impure, as with the intention to deceive; "Sophisticate rose water with geraniol" -00488617 30 v 02 leach 0 strip 6 002 @ 00173338 v 0000 + 13506587 n 0101 01 + 11 00 | remove substances from by a percolating liquid; "leach the soil" -00488770 30 v 04 vent 0 ventilate 0 air_out 0 air 0 004 @ 00164444 v 0000 + 04526241 n 0201 + 04526964 n 0201 + 01253277 n 0102 01 + 08 00 | expose to cool or cold air so as to cool or freshen; "air the old winter clothes"; "air out the smoke-filled rooms" -00489029 30 v 01 air 1 001 @ 00218475 v 0000 01 + 08 00 | expose to warm or heated air, so as to dry; "Air linen" -00489145 30 v 02 linearize 0 linearise 0 001 @ 00296178 v 0000 01 + 08 00 | make linear or get into a linear form; "a catalyst linearizes polyethylene" -00489299 30 v 01 glorify 0 004 @ 00126264 v 0000 + 14437134 n 0102 + 14437134 n 0101 + 04684358 n 0101 02 + 08 00 + 11 00 | bestow glory upon; "The victory over the enemy glorified the Republic" -00489496 30 v 01 glorify 1 004 @ 00956405 v 0000 + 01219075 n 0103 + 14437134 n 0101 + 04684358 n 0101 02 + 08 00 + 11 00 | cause to seem more splendid; "You are glorifying a rather mediocre building" -00489699 30 v 01 justify 0 002 @ 00296178 v 0000 ;c 01103159 n 0000 01 + 08 00 | adjust the spaces between words; "justify the margins" -00489837 30 v 02 quantify 0 measure 0 017 @ 01061017 v 0000 + 01498769 a 0201 + 03735637 n 0202 + 00033615 n 0201 + 00996969 n 0203 + 00996969 n 0201 + 05855125 n 0101 + 01003570 n 0101 ~ 00490285 v 0000 ~ 00490428 v 0000 ~ 00490586 v 0000 ~ 00490722 v 0000 ~ 00490968 v 0000 ~ 00491689 v 0000 ~ 00491910 v 0000 ~ 00730647 v 0000 ~ 02704617 v 0000 02 + 08 00 + 11 00 | express as a number or measure or quantity; "Can you quantify your results?" -00490285 30 v 01 gauge 0 002 @ 00489837 v 0000 + 13854101 n 0101 01 + 08 00 | measure precisely and against a standard; "the wire is gauged" -00490428 30 v 01 scale 0 003 @ 00489837 v 0000 + 04141975 n 0101 + 01005284 n 0101 02 + 08 00 + 11 00 | measure with or as if with scales; "scale the gold" -00490586 30 v 01 meter 0 002 @ 00489837 v 0000 + 03753077 n 0101 02 + 08 00 + 11 00 | measure with a meter; "meter the flow of water" -00490722 30 v 02 pace 0 step 0 008 @ 00489837 v 0000 + 13762579 n 0201 + 00285557 n 0201 + 13757249 n 0203 + 13650447 n 0102 + 00285889 n 0101 + 13757249 n 0102 + 15280497 n 0101 01 + 08 00 | measure (distances) by pacing; "step off ten yards" -00490968 30 v 02 clock 0 time 0 008 @ 00489837 v 0000 + 15270431 n 0201 + 15122231 n 0201 + 10711483 n 0202 + 04438304 n 0201 + 03046257 n 0101 + 15133903 n 0101 ~ 00491313 v 0000 02 + 08 00 + 09 00 | measure the time or duration of an event or action or the person who performs an action in a certain period of time; "he clocked the runners" -00491313 30 v 01 mistime 0 002 @ 00490968 v 0000 + 15180304 n 0102 02 + 08 00 + 09 00 | time incorrectly; "She mistimed the marathon runner" -00491456 30 v 01 regress 6 001 @ 00109660 v 0000 01 + 01 00 | go back to a statistical means -00491551 30 v 01 click_off 0 001 @ 01712704 v 0000 01 + 08 00 | perform or finish an action rapidly; "The game was clicked off in 1:48" -00491689 30 v 02 fathom 0 sound 0 006 @ 00489837 v 0000 + 09440186 n 0201 + 04261767 n 0201 + 05135451 n 0201 + 01004961 n 0201 + 13660178 n 0101 01 + 08 00 | measure the depth of (a body of water) with a sounding line -00491910 30 v 01 titrate 0 004 @ 00489837 v 0000 + 05038823 n 0102 + 00648237 n 0101 + 04441790 n 0101 01 + 08 00 | measure by (the volume or concentration of solutions) by titration -00492095 30 v 01 quantify 1 003 @ 00947077 v 0000 ;c 06163751 n 0000 + 06165623 n 0101 02 + 08 00 + 11 00 | use as a quantifier -00492225 30 v 01 foul 0 001 @ 00109660 v 0000 01 + 01 00 | become soiled and dirty -00492310 30 v 01 foul 1 001 @ 01534147 v 0000 02 + 08 00 + 11 00 | make unclean; "foul the water" -00492410 30 v 04 foul 2 befoul 0 defile 0 maculate 0 006 @ 02547225 v 0000 + 05244934 n 0402 + 00276813 n 0403 + 14498404 n 0302 + 10451858 n 0302 + 14498404 n 0201 04 + 08 00 + 09 00 + 10 00 + 11 00 | spot, stain, or pollute; "The townspeople defiled the river by emptying raw sewage into it" -00492706 30 v 03 pollute 0 foul 3 contaminate 0 012 @ 01534147 v 0000 + 02114483 a 0301 + 14821984 n 0302 + 14487731 n 0301 + 00276987 n 0301 + 14821984 n 0301 + 14498404 n 0103 + 14516743 n 0101 + 00276987 n 0102 + 10451858 n 0101 + 14857278 n 0101 ~ 00088713 v 0000 02 + 08 00 + 11 00 | make impure; "The industrial wastes polluted the lake" -00493052 30 v 01 decontaminate 0 003 @ 00035758 v 0000 + 00394485 n 0101 ! 00493259 v 0101 01 + 08 00 | rid of contamination; "The soil around the housing development had to be decontaminated by the city" -00493259 30 v 01 contaminate 1 006 @ 00126264 v 0000 + 02114483 a 0101 + 14821984 n 0102 + 14487731 n 0101 + 00276987 n 0101 ! 00493052 v 0101 02 + 08 00 + 11 00 | make radioactive by adding radioactive material; "Don't drink the water--it's contaminated" -00493517 30 v 02 debase 0 alloy 0 004 @ 00493703 v 0000 ;c 06125698 n 0000 + 14586769 n 0201 + 09997212 n 0101 02 + 08 00 + 11 00 | lower in value by increasing the base-metal content -00493703 30 v 01 devalue 0 006 @ 00126264 v 0000 + 00805524 n 0101 + 00353992 n 0101 ~ 00315330 v 0000 ~ 00493517 v 0000 ~ 00531489 v 0000 02 + 08 00 + 11 00 | lower the value or quality of; "The tear devalues the painting" -00493929 30 v 02 devalue 2 devaluate 1 004 @ 00207728 v 0000 + 00353992 n 0201 + 00353992 n 0101 ~ 00494103 v 0000 01 + 08 00 | remove the value from; deprive of its value -00494103 30 v 02 demonetize 0 demonetise 0 003 @ 00493929 v 0000 + 00155085 n 0202 + 00155085 n 0101 01 + 08 00 | deprive of value for payment; "demonetize a coin" -00494269 30 v 02 isolate 0 insulate 0 010 @ 02512305 v 0000 + 14415518 n 0201 + 02111339 a 0101 + 14414715 n 0101 ~ 00494613 v 0000 ~ 00494880 v 0000 ~ 00495636 v 0000 ~ 00495998 v 0000 ~ 00496266 v 0000 ~ 00496489 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | place or set apart; "They isolated the political prisoners from the other inmates" -00494613 30 v 01 segregate 0 002 @ 00494269 v 0000 + 01202184 n 0101 02 + 08 00 + 11 00 | separate or isolate (one thing) from another and place in a group apart from others; "the sun segregates the carbon"; "large mining claims are segregated into smaller claims" -00494880 30 v 02 ghettoize 0 ghettoise 0 002 @ 00494269 v 0000 + 08578951 n 0101 01 + 09 00 | put in a ghetto; "The Jews in Eastern Europe were ghettoized" -00495038 30 v 01 insulate 1 007 @ 00126264 v 0000 + 14920844 n 0103 + 00827010 n 0101 + 14920844 n 0102 + 14821590 n 0101 ~ 00495336 v 0000 ~ 00495505 v 0000 01 + 08 00 | protect from heat, cold, or noise by surrounding with insulating material; "We had his bedroom insulated before winter came" -00495336 30 v 01 weatherstrip 0 001 @ 00495038 v 0000 01 + 08 00 | provide with weatherstripping; "The window must be weatherstripped before the cold weather sets in" -00495505 30 v 01 soundproof 0 001 @ 00495038 v 0000 01 + 08 00 | insulate against noise; "Proust had his apartment soundproofed" -00495636 30 v 01 cloister 0 002 @ 00494269 v 0000 + 04073948 n 0102 01 + 09 00 | seclude from the world in or as if in a cloister; "She cloistered herself in the office" -00495808 30 v 05 sequester 1 sequestrate 0 keep_apart 0 set_apart 1 isolate 2 001 @ 01556921 v 0000 01 + 08 00 | set apart from others; "The dentist sequesters the tooth he is working on" -00495998 30 v 04 seclude 0 sequester 0 sequestrate 1 withdraw 0 006 @ 00494269 v 0000 + 10785333 n 0401 + 00053913 n 0401 + 01202184 n 0202 + 01201773 n 0101 $ 02428487 v 0000 01 + 09 00 | keep away from others; "He sequestered himself in his study to write a book" -00496266 30 v 01 quarantine 0 003 @ 00494269 v 0000 + 01201645 n 0101 + 14415335 n 0101 02 + 08 00 + 09 00 | place into enforced isolation, as for medical reasons; "My dog was quarantined before he could live in England" -00496489 30 v 01 maroon 0 002 @ 00494269 v 0000 + 10295190 n 0101 01 + 09 00 | leave stranded on a desert island without resources; "The mutinous sailors were marooned on an island" -00496673 30 v 01 let 0 001 @ 00136991 v 0000 02 + 08 00 + 09 00 | leave unchanged; "let it be" -00496770 30 v 01 isolate 1 004 @ 02210855 v 0000 ;c 06084469 n 0000 + 02111339 a 0101 ~ 00496956 v 0000 01 + 08 00 | obtain in pure form; "The chemist managed to isolate the compound" -00496956 30 v 01 preisolate 0 002 @ 00496770 v 0000 ;c 06084469 n 0000 01 + 08 00 | isolate beforehand -00497061 30 v 03 boost 0 advance 8 supercharge 3 001 @ 00153263 v 0000 02 + 08 00 + 11 00 | increase or raise; "boost the voltage in an electrical circuit" -00497219 30 v 01 ammonify 0 004 @ 00497705 v 0000 ;c 06084469 n 0000 + 13430262 n 0101 + 14744120 n 0101 01 + 08 00 | treat with ammonia; cause to undergo ammonification -00497391 30 v 01 thoriate 0 003 @ 00497705 v 0000 ;c 06084469 n 0000 + 14658109 n 0101 01 + 08 00 | impregnate with thorium oxide to increase thermionic emission -00497555 30 v 01 stuff c 002 @ 00497705 v 0000 * 00511430 v 0000 01 + 08 00 | treat with grease, fill, and prepare for mounting; "stuff a bearskin" -00497705 30 v 02 impregnate 0 saturate 4 010 @ 00452512 v 0000 + 13496517 n 0101 ~ 00084562 v 0000 ~ 00139908 v 0000 ~ 00456151 v 0000 ~ 00497219 v 0000 ~ 00497391 v 0000 ~ 00497555 v 0000 ~ 00498016 v 0000 ~ 00498163 v 0000 02 + 08 00 + 21 00 | infuse or fill completely; "Impregnate the cloth with alcohol" -00498016 30 v 01 charge d 002 $ 01488956 v 0000 @ 00497705 v 0000 02 + 08 00 + 11 00 | saturate; "The room was charged with tension and anxiety" -00498163 30 v 02 imbrue 0 drench 1 001 @ 00497705 v 0000 01 + 17 00 | permeate or impregnate; "The war drenched the country in blood" -00498299 30 v 04 impregnate 1 infuse 1 instill 0 tincture 1 002 @ 00452512 v 0000 + 00248748 n 0201 04 + 08 00 + 09 00 + 10 00 + 11 00 | fill, as with a certain quality; "The heavy traffic tinctures the air with carbon monoxide" -00498530 30 v 01 calcify 1 002 @ 00126264 v 0000 + 14632648 n 0101 01 + 11 00 | convert into lime; "the salts calcified the rock" -00498662 30 v 01 calcify 0 003 @ 00146138 v 0000 + 14364980 n 0101 + 14632648 n 0101 01 + 01 00 | turn into lime; become calcified; "The rock calcified over the centuries" -00498836 30 v 01 coke 0 003 @ 00146138 v 0000 ;c 06084469 n 0000 + 14685768 n 0101 01 + 01 00 | become coke; "petroleum oils coke after distillation" -00498988 30 v 01 calcify 2 005 @ 00443116 v 0000 + 14364980 n 0101 + 13442312 n 0101 + 14632648 n 0101 ! 00499162 v 0101 01 + 01 00 | become impregnated with calcium salts -00499162 30 v 01 decalcify 0 002 @ 00173338 v 0000 ! 00498988 v 0101 02 + 08 00 + 11 00 | remove calcium or lime from; "decalcify the rock" -00499304 30 v 01 decalcify 1 002 @ 00109660 v 0000 + 13456252 n 0101 01 + 01 00 | lose calcium or calcium compounds -00499422 30 v 01 carnify 0 001 @ 00146138 v 0000 01 + 01 00 | become muscular or fleshy -00499512 30 v 01 chondrify 0 002 @ 00146138 v 0000 + 14730802 n 0101 01 + 01 00 | turn into cartilage; "The tissue chondrifies" -00499642 30 v 01 citify 0 003 @ 00296178 v 0000 + 08524735 n 0101 + 08226335 n 0101 02 + 08 00 + 09 00 | accustom to urban ways; "Immigration will citify the country?" -00499812 30 v 02 urbanize 0 urbanise 0 005 @ 00126264 v 0000 + 13571763 n 0202 + 02052333 a 0101 + 13571763 n 0101 $ 00500055 v 0000 02 + 08 00 + 11 00 | make more industrial or city-like; "The area was urbanized after many people moved in" -00500055 30 v 02 urbanize 1 urbanise 1 005 $ 00499812 v 0000 @ 00126264 v 0000 + 14580334 n 0202 + 02052333 a 0101 + 14580334 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | impart urban habits, ways of life, or responsibilities upon; "Birds are being urbanized by people in outdoor cafes feeding them" -00500356 30 v 02 industrialize 0 industrialise 0 005 @ 00109660 v 0000 + 00923802 n 0202 + 08364757 n 0201 + 00923802 n 0101 + 08364757 n 0101 01 + 01 00 | develop industry; become industrial; "The nations of South East Asia will quickly industrialize and catch up with the West" -00500638 30 v 01 emulsify 0 005 @ 00146138 v 0000 + 14674408 n 0101 + 14674584 n 0101 + 03284482 n 0101 ! 00501048 v 0101 01 + 01 00 | form into or become an emulsion; "The solution emulsified" -00500834 30 v 01 emulsify 1 006 > 00500638 v 0000 @ 00126264 v 0000 + 14674408 n 0101 + 14674584 n 0101 + 03284482 n 0101 ! 00501159 v 0101 02 + 08 00 + 11 00 | cause to become an emulsion; make into an emulsion -00501048 30 v 01 demulsify 0 002 @ 00140123 v 0000 ! 00500638 v 0101 01 + 01 00 | break down into components -00501159 30 v 01 demulsify 1 003 > 00501048 v 0000 @ 00126264 v 0000 ! 00500834 v 0101 02 + 08 00 + 11 00 | cause to demulsify -00501288 30 v 01 denazify 0 003 @ 00501896 v 0000 + 13461722 n 0101 ! 00502085 v 0101 02 + 08 00 + 09 00 | free from Nazi ideology or detach from Nazi allegiance; "Germany was denazified after WW II"; "The highest judges were never denazified" -00501534 30 v 01 decarboxylate 1 004 @ 00126264 v 0000 ;c 06084469 n 0000 + 13456367 n 0101 $ 00501718 v 0000 02 + 08 00 + 11 00 | remove a carboxyl group from (a chemical compound) -00501718 30 v 01 decarboxylate 0 004 $ 00501534 v 0000 @ 00109660 v 0000 ;c 06084469 n 0000 + 13456367 n 0101 01 + 01 00 | lose a carboxyl group; "the compound decarboxylated" -00501896 30 v 01 cleanse 5 002 @ 02350175 v 0000 ~ 00501288 v 0000 02 + 09 00 + 10 00 | purge of an ideology, bad thoughts, or sins; "Purgatory is supposed to cleanse you from your sins" -00502085 30 v 01 nazify 0 003 @ 00126264 v 0000 + 08366440 n 0101 ! 00501288 v 0101 02 + 08 00 + 09 00 | cause or force to adopt Nazism or a Nazi character; "Hitler nazified Germany in the 1930's"; "The arts were nazified everywhere in Germany" -00502332 30 v 01 denitrify 0 003 @ 00146138 v 0000 ;c 06084469 n 0000 ! 00502478 v 0101 01 + 08 00 | remove nitrogen from; "Denitrify the soil" -00502478 30 v 01 nitrify 0 004 @ 00502757 v 0000 + 13521616 n 0101 + 15015501 n 0101 ! 00502332 v 0101 01 + 08 00 | treat (soil) with nitrates -00502623 30 v 01 dung 0 002 @ 00502757 v 0000 + 14854847 n 0102 01 + 08 00 | fertilize or dress with dung; "you must dung the land" -00502757 30 v 03 fertilize 0 fertilise 0 feed 0 007 @ 00171586 v 0000 ;c 00916464 n 0000 + 07434473 n 0101 + 14859344 n 0101 ~ 00502478 v 0000 ~ 00502623 v 0000 ~ 00503058 v 0000 01 + 08 00 | provide with fertilizers or add nutrients to; "We should fertilize soil if we want to grow healthy plants" -00503058 30 v 01 topdress 0 001 @ 00502757 v 0000 01 + 08 00 | scatter manure or fertilizer over (land) -00503164 30 v 02 stimulate 0 excite 0 013 @ 00137313 v 0000 + 02309971 a 0203 + 02309971 a 0201 + 01260867 n 0202 + 01260867 n 0201 + 02309341 a 0101 + 02310371 a 0101 + 05827684 n 0102 + 05827684 n 0103 ! 00390842 v 0101 ~ 00442063 v 0000 ~ 00503569 v 0000 ~ 00503715 v 0000 05 + 01 00 + 08 00 + 09 00 + 10 00 + 11 00 | act as a stimulant; "The book stimulated her imagination"; "This play stimulates" -00503569 30 v 01 innervate 0 002 @ 00503164 v 0000 ;c 06080522 n 0000 02 + 08 00 + 11 00 | stimulate to action; "innervate a muscle or a nerve" -00503715 30 v 01 irritate 0 005 @ 00503164 v 0000 ;c 06080522 n 0000 + 02310185 a 0102 + 14036356 n 0103 ~ 00504019 v 0000 01 + 11 00 | excite to some characteristic action or condition, such as motion, contraction, or nervous impulse, by the application of a stimulus; "irritate the glands of a leaf" -00504019 30 v 02 pinch 0 vellicate 0 003 @ 00503715 v 0000 + 00357275 n 0101 + 00842281 n 0102 02 + 01 00 + 11 00 | irritate as if by a nip, pinch, or tear; "smooth surfaces can vellicate the teeth"; "the pain is as if sharp points pinch your back" -00504270 30 v 03 fertilize 1 fecundate 0 fertilise 1 003 @ 00126264 v 0000 + 07434473 n 0203 + 14859344 n 0101 01 + 08 00 | make fertile or productive; "The course fertilized her imagination" -00504464 30 v 02 federalize 1 federalise 1 005 @ 00405540 v 0000 + 14418970 n 0202 + 00804379 n 0202 + 14418970 n 0101 + 00804379 n 0101 01 + 08 00 | put under the control and authority of a federal government -00504676 30 v 03 nitrify 1 nitrogenize 0 nitrogenise 0 006 @ 00515154 v 0000 + 14647235 n 0201 + 13521873 n 0101 + 14766725 n 0101 + 14647235 n 0101 + 15015501 n 0101 01 + 08 00 | treat with nitrogen or a nitrogen compound -00504901 30 v 01 nitrify 2 006 * 00238867 v 0000 @ 00115157 v 0000 + 13521616 n 0101 + 14766725 n 0101 + 14766532 n 0101 + 15015501 n 0101 01 + 08 00 | convert into nitric acid, nitrous acid, or nitrate, especially with the action of nitrobacteria -00505151 30 v 01 clarify 2 003 @ 00126264 v 0000 ;c 00243918 n 0000 + 00264192 n 0102 01 + 08 00 | make clear by removing impurities or solids, as by heating; "clarify the butter"; "clarify beer" -00505349 30 v 02 detoxify 0 detoxicate 0 003 @ 00173338 v 0000 ;c 06084469 n 0000 + 00699146 n 0101 02 + 08 00 + 11 00 | remove poison from; "detoxify the soil" -00505512 30 v 01 devitrify 1 001 @ 00505620 v 0000 01 + 08 00 | make (glassy materials) brittle or opaque -00505620 30 v 01 embrittle 0 002 @ 00126264 v 0000 ~ 00505512 v 0000 01 + 08 00 | make brittle -00505717 30 v 01 devitrify 0 001 @ 00443670 v 0000 01 + 01 00 | become crystalline -00505802 30 v 02 electrify 0 wire 0 007 @ 00299580 v 0000 + 04594489 n 0201 + 10783734 n 0202 + 00714806 n 0201 + 11450566 n 0101 + 11449907 n 0101 + 00952615 n 0101 01 + 08 00 | equip for use with electricity; "electrify an appliance" -00506040 30 v 01 electrify 1 005 @ 00452512 v 0000 ;c 06090869 n 0000 + 11450566 n 0101 + 11449907 n 0101 + 00952615 n 0101 02 + 08 00 + 11 00 | charge (a conductor) with electricity -00506225 30 v 01 esterify 0 003 @ 00146138 v 0000 ;c 06084469 n 0000 + 14850483 n 0101 03 + 01 00 + 08 00 + 11 00 | change (a compound) into an ester -00506377 30 v 01 etherify 0 003 @ 00146138 v 0000 ;c 06084469 n 0000 + 03299929 n 0101 03 + 01 00 + 08 00 + 11 00 | change into an ether; "etherify an alcohol" -00506539 30 v 01 fructify 1 001 @ 00205885 v 0000 02 + 08 00 + 11 00 | make productive or fruitful; "The earth that he fructified" -00506672 30 v 01 fructify 0 003 @ 00205046 v 0000 + 13134947 n 0101 + 13485408 n 0101 01 + 01 00 | become productive or fruitful; "The seeds fructified" -00506827 30 v 01 interstratify 0 002 @ 01308681 v 0000 ;c 06115701 n 0000 01 + 11 00 | arrange rocks in alternating strata -00506952 30 v 01 stratify 0 005 $ 01308681 v 0000 @ 01463963 v 0000 ;c 06115701 n 0000 + 13562328 n 0101 + 08657249 n 0101 02 + 01 00 + 11 00 | form layers or strata; "The rock stratifies" -00507143 30 v 02 jellify 1 jelly 0 005 @ 00140123 v 0000 + 14925198 n 0201 + 14925198 n 0101 + 07643981 n 0102 + 07643306 n 0101 02 + 08 00 + 11 00 | make into jelly; "jellify a liquid" -00507331 30 v 01 jellify 0 004 @ 00140123 v 0000 + 14925198 n 0101 + 07643981 n 0102 + 07643306 n 0101 01 + 01 00 | become jelly; "The sauce jellified" -00507485 30 v 02 lapidify 0 petrify 0 004 @ 00507664 v 0000 + 13535583 n 0201 + 09390680 n 0201 + 13535583 n 0202 01 + 11 00 | change into stone; "the wood petrified with time" -00507664 30 v 02 fossilize 0 fossilise 0 005 @ 00115157 v 0000 + 13483726 n 0202 + 13483726 n 0101 + 09284589 n 0101 ~ 00507485 v 0000 02 + 01 00 + 11 00 | convert to a fossil; "The little animals fossilized and are now embedded in the limestone" -00507913 30 v 01 dot 0 002 @ 00508032 v 0000 + 13911872 n 0102 02 + 08 00 + 11 00 | mark with a dot; "dot your `i's" -00508032 30 v 01 mark 0 026 $ 01588493 v 0000 @ 00126264 v 0000 + 06798750 n 0101 + 07270179 n 0103 + 03722007 n 0101 + 00263642 n 0101 ^ 00234725 v 0101 ^ 00234725 v 0102 ~ 00507913 v 0000 ~ 00508645 v 0000 ~ 00508844 v 0000 ~ 00508933 v 0000 ~ 00509100 v 0000 ~ 00509449 v 0000 ~ 00509607 v 0000 ~ 00510713 v 0000 ~ 00510869 v 0000 ~ 00511040 v 0000 ~ 00511178 v 0000 ~ 01004235 v 0000 ~ 01273263 v 0000 ~ 01273406 v 0000 ~ 01273529 v 0000 ~ 01582645 v 0000 ~ 01591476 v 0000 ~ 02508663 v 0000 02 + 08 00 + 11 00 | make or leave a mark on; "the scouts marked the trail"; "ash marked the believers' foreheads" -00508645 30 v 02 stigmatize 0 stigmatise 0 003 @ 00508032 v 0000 + 01223488 n 0202 + 01223488 n 0101 02 + 08 00 + 09 00 | mark with a stigma or stigmata; "They wanted to stigmatize the adulteress" -00508844 30 v 01 raddle 0 001 @ 00508032 v 0000 01 + 08 00 | mark or paint with raddle -00508933 30 v 01 striate 0 005 @ 00508032 v 0000 + 13908348 n 0102 + 04680465 n 0104 + 13908348 n 0101 + 04680465 n 0103 01 + 11 00 | mark with striae or striations -00509100 30 v 01 ink 3 001 @ 00508032 v 0000 02 + 08 00 + 11 00 | mark, coat, cover, or stain with ink; "he inked his finger" -00509228 30 v 01 red-ink 0 001 @ 00453680 v 0000 01 + 08 00 | mark with red ink; "red-ink the area that is restricted" -00509349 30 v 01 reline 0 001 @ 01276361 v 0000 01 + 08 00 | put new lines on; "reline the paper" -00509449 30 v 01 dimple 0 002 @ 00508032 v 0000 + 13896695 n 0101 02 + 08 00 + 11 00 | mark with, or as if with, dimples; "drops dimpled the smooth stream" -00509607 30 v 01 spot 0 005 @ 00508032 v 0000 + 04682462 n 0101 + 10640195 n 0101 ~ 00509857 v 0000 ~ 00510364 v 0000 02 + 08 00 + 11 00 | mark with a spot or spots so as to allow easy recognition; "spot the areas that one should clearly identify" -00509857 30 v 01 freckle 0 002 @ 00509607 v 0000 + 05245192 n 0101 01 + 10 00 | mark with freckles -00509958 30 v 01 spot 1 004 @ 00109660 v 0000 + 04694441 n 0102 ~ 00510116 v 0000 ~ 00510234 v 0000 01 + 01 00 | become spotted; "This dress spots quickly" -00510116 30 v 01 freckle 1 002 @ 00509958 v 0000 + 05245192 n 0101 01 + 02 00 | become freckled; "I freckle easily" -00510234 30 v 01 fox 0 002 @ 00509958 v 0000 + 14764910 n 0101 01 + 01 00 | become discolored with, or as if with, mildew spots -00510364 30 v 03 mottle 0 dapple 0 cloud 2 005 @ 00509607 v 0000 + 04682462 n 0203 + 00263947 n 0101 ~ 00510576 v 0000 ~ 01538469 v 0000 02 + 08 00 + 11 00 | colour with streaks or blotches of different shades -00510576 30 v 01 harlequin 0 001 @ 00510364 v 0000 01 + 11 00 | variegate with spots or marks; "His face was harlequined with patches" -00510713 30 v 01 crisscross 0 002 @ 00508032 v 0000 + 04681387 n 0101 01 + 08 00 | mark with a pattern of crossing lines; "crisscross the sheet of paper" -00510869 30 v 02 star 0 asterisk 0 003 @ 00508032 v 0000 + 06828389 n 0201 + 06828389 n 0102 01 + 08 00 | mark with an asterisk; "Linguists star unacceptable sentences" -00511040 30 v 01 flag 0 001 @ 00508032 v 0000 01 + 08 00 | provide with a flag; "Flag this file so that I can recognize it immediately" -00511178 30 v 01 tip 0 002 @ 00508032 v 0000 + 08663156 n 0101 02 + 08 00 + 11 00 | mark with a tip; "tip the arrow with the small stone" -00511318 30 v 01 nick 0 001 @ 00126264 v 0000 01 + 08 00 | divide or reset the tail muscles of; "nick horses" -00511430 30 v 01 tan 0 005 @ 00115157 v 0000 + 10690742 n 0101 + 00927062 n 0101 + 04390759 n 0101 ~ 00511763 v 0000 01 + 08 00 | treat skins and hides with tannic acid so as to convert them into leather -00511636 30 v 01 dress 8 002 @ 00115157 v 0000 + 00828862 n 0101 01 + 08 00 | convert into leather; "dress the tanned skins" -00511763 30 v 01 bark 0 001 @ 00511430 v 0000 01 + 08 00 | tan (a skin) with bark tannins -00511855 30 v 03 froth 1 spume 0 suds 0 004 @ 01617192 v 0000 + 09439213 n 0302 + 09443641 n 0201 + 09282724 n 0102 01 + 01 00 | make froth or foam and become bubbly; "The river foamed" -00512043 30 v 01 lather 0 003 @ 00519363 v 0000 + 09336555 n 0101 + 09439213 n 0103 01 + 01 00 | form a lather; "The shaving cream lathered" -00512186 30 v 03 disable 0 disenable 0 incapacitate 0 007 @ 00126264 v 0000 + 14548343 n 0102 ! 00512877 v 0101 ~ 00512482 v 0000 ~ 00512640 v 0000 ~ 00512749 v 0000 ~ 01301410 v 0000 03 + 08 00 + 09 00 + 10 00 | make unable to perform a certain action; "disable this command on your computer" -00512482 30 v 01 lay_up 0 001 @ 00512186 v 0000 02 + 10 00 + 11 00 | disable or confine, as with an illness; "She was laid up with pneumonia for six weeks" -00512640 30 v 01 nobble 0 001 @ 00512186 v 0000 01 + 08 00 | disable by drugging; "nobble the race horses" -00512749 30 v 01 pinion 0 003 @ 00512186 v 0000 + 02152446 n 0102 + 02468864 n 0102 01 + 08 00 | cut the wings off (of birds) -00512877 30 v 01 enable 0 004 @ 00126264 v 0000 ! 00512186 v 0101 ~ 00513177 v 0000 ~ 02474239 v 0000 03 + 08 00 + 09 00 + 10 00 | render capable or able for some task; "This skill will enable you to find a job on Wall Street"; "The rope enables you to secure yourself when you climb the mountain" -00513177 30 v 01 equip 0 001 @ 00512877 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | provide with abilities or understanding; "She was never equipped to be a dancer" -00513344 30 v 01 buffer 0 002 @ 00169806 v 0000 + 14785941 n 0101 01 + 08 00 | add a buffer (a solution); "buffered saline solution for the eyes" -00513492 30 v 03 background 0 play_down 0 downplay 0 006 @ 01013367 v 0000 ! 00514069 v 0204 + 07285191 n 0101 ! 00514069 v 0101 ~ 00513936 v 0000 ~ 00840264 v 0000 02 + 08 00 + 11 00 | understate the importance or quality of; "he played down his royal ancestry" -00513757 30 v 01 pick_up 1 001 @ 00514463 v 0000 01 + 11 00 | lift out or reflect from a background; "The scarf picks up the color of the skirt"; "His eyes picked up his smile" -00513936 30 v 01 wave_off 0 001 @ 00513492 v 0000 01 + 08 00 | dismiss as insignificant; "He waved off suggestions of impropriety" -00514069 30 v 04 foreground 0 highlight 0 spotlight 1 play_up 0 009 @ 00514463 v 0000 ! 00513492 v 0402 + 14433769 n 0302 + 03518943 n 0201 + 13810141 n 0201 + 04952120 n 0202 + 05934278 n 0101 ! 00513492 v 0101 + 03519081 n 0201 02 + 08 00 + 11 00 | move into the foreground to make more visible or prominent; "The introduction highlighted the speaker's distinguished career in linguistics" -00514463 30 v 02 bring_out 0 set_off 2 004 @ 01013367 v 0000 ~ 00513757 v 0000 ~ 00514069 v 0000 ~ 00557537 v 0000 02 + 08 00 + 11 00 | direct attention to, as if by means of contrast; "This dress accentuates your nice figure!"; "I set off these words by brackets" -00514730 30 v 03 de-emphasize 0 de-emphasise 0 destress 0 002 @ 00126264 v 0000 ~ 00587522 v 0000 02 + 08 00 + 11 00 | reduce the emphasis -00514871 30 v 03 tender 0 tenderize 0 tenderise 0 006 @ 00126264 v 0000 + 00248063 n 0302 + 15068436 n 0302 + 02446651 a 0201 + 00248063 n 0201 + 15068436 n 0201 02 + 08 00 + 11 00 | make tender or more tender as by marinating, pounding, or applying a tenderizer; "tenderize meat" -00515154 30 v 02 process 0 treat 1 038 @ 00137313 v 0000 + 01134861 n 0201 + 10477955 n 0101 + 08065937 n 0101 + 13541167 n 0101 ~ 00055871 v 0000 ~ 00184907 v 0000 ~ 00185103 v 0000 ~ 00185348 v 0000 ~ 00185465 v 0000 ~ 00185698 v 0000 ~ 00186001 v 0000 ~ 00186161 v 0000 ~ 00186446 v 0000 ~ 00186567 v 0000 ~ 00186740 v 0000 ~ 00186912 v 0000 ~ 00187016 v 0000 ~ 00187147 v 0000 ~ 00291444 v 0000 ~ 00371823 v 0000 ~ 00474762 v 0000 ~ 00504676 v 0000 ~ 00516142 v 0000 ~ 00516294 v 0000 ~ 00516425 v 0000 ~ 00516584 v 0000 ~ 00516747 v 0000 ~ 00516932 v 0000 ~ 00517128 v 0000 ~ 00517240 v 0000 ~ 00517365 v 0000 ~ 00517529 v 0000 ~ 00526081 v 0000 ~ 00577170 v 0000 ~ 01197338 v 0000 ~ 02127100 v 0000 ~ 02331575 v 0000 02 + 08 00 + 11 00 | subject to a process or treatment, with the aim of readying for some purpose, improving, or remedying a condition; "process cheese"; "process hair"; "treat the water so it can be drunk"; "treat the lawn with chemicals" ; "treat an oil spill" -00516142 30 v 01 reverberate 2 001 @ 00515154 v 0000 01 + 08 00 | treat, process, heat, melt, or refine in a reverberatory furnace; "reverberate ore" -00516294 30 v 01 curry 2 002 @ 00515154 v 0000 + 09984187 n 0101 01 + 08 00 | treat by incorporating fat; "curry tanned leather" -00516425 30 v 01 seed 2 002 @ 00515154 v 0000 + 10575594 n 0101 01 + 08 00 | sprinkle with silver iodide particles to disperse and cause rain; "seed clouds" -00516584 30 v 01 dose 0 003 @ 00515154 v 0000 + 13772106 n 0102 + 13772106 n 0101 01 + 08 00 | treat with an agent; add (an agent) to; "The ray dosed the paint" -00516747 30 v 02 sulphur 0 sulfur 0 003 @ 00515154 v 0000 + 14656219 n 0201 + 14656219 n 0103 01 + 08 00 | treat with sulphur in order to preserve; "These dried fruits are sulphured" -00516932 30 v 02 vulcanize 1 vulcanise 1 005 @ 00515154 v 0000 + 13573915 n 0202 + 10761519 n 0202 + 13573915 n 0101 + 10761519 n 0101 01 + 08 00 | subject to vulcanization; "vulcanized rubber" -00517128 30 v 01 chrome 0 002 @ 00515154 v 0000 + 14810704 n 0101 01 + 08 00 | treat with a chromium compound -00517240 30 v 02 bituminize 0 bituminise 0 002 @ 00515154 v 0000 + 14911530 n 0101 02 + 08 00 + 11 00 | treat with bitumen -00517365 30 v 02 Agenize 0 Agenise 0 003 @ 00515154 v 0000 + 15017121 n 0202 + 15017121 n 0102 01 + 08 00 | age or bleach flour with Agene (nitrogen trichloride) -00517529 30 v 01 run 7 003 @ 00515154 v 0000 ~ 00517684 v 0000 $ 01717169 v 0000 02 + 08 00 + 09 00 | cause to perform; "run a subject"; "run a process" -00517684 30 v 01 rerun 0 001 @ 00517529 v 0000 02 + 08 00 + 09 00 | cause to perform again; "We have to rerun the subjects--they misunderstood the instructions" -00517847 30 v 01 charge 0 005 @ 02327200 v 0000 + 03008976 n 0101 + 11435028 n 0101 $ 00518115 v 0000 ~ 00518288 v 0000 02 + 08 00 + 11 00 | energize a battery by passing a current through it in the direction opposite to discharge; "I need to charge my car battery" -00518115 30 v 01 charge 3 003 $ 00517847 v 0000 @ 00126264 v 0000 + 11435028 n 0101 01 + 08 00 | cause formation of a net electrical charge in or on; "charge a conductor" -00518288 30 v 01 recharge 0 001 @ 00517847 v 0000 02 + 08 00 + 11 00 | charge anew; "recharge a battery" -00518395 30 v 03 facilitate 0 ease 0 alleviate 0 006 @ 02547586 v 0000 + 07357101 n 0201 + 01196484 a 0101 + 14575531 n 0101 + 01208291 n 0101 + 10075693 n 0101 02 + 08 00 + 11 00 | make easier; "you could facilitate the process by sharing your knowledge" -00518653 30 v 01 mystify 0 006 @ 00313987 v 0000 + 05685030 n 0105 + 03803911 n 0101 + 01266152 n 0101 + 05685538 n 0101 ! 00518852 v 0101 02 + 08 00 + 11 00 | make mysterious; "mystify the story" -00518852 30 v 01 demystify 0 002 @ 00939857 v 0000 ! 00518653 v 0101 02 + 08 00 + 11 00 | make less mysterious or remove the mystery from; "let's demystify the event by explaining what it is all about" -00519056 30 v 01 bubble 0 004 @ 00105333 v 0000 + 09229709 n 0101 ^ 01763101 v 0101 ~ 00519363 v 0000 01 + 01 00 | form, produce, or emit bubbles; "The soup was bubbling" -00519229 30 v 01 bubble 1 002 > 00519056 v 0000 @ 00126264 v 0000 01 + 11 00 | cause to form bubbles; "bubble gas through a liquid" -00519363 30 v 06 foam 5 froth 0 fizz 0 effervesce 0 sparkle 0 form_bubbles 0 010 @ 00519056 v 0000 + 02276088 a 0401 + 13471681 n 0401 + 04733347 n 0402 + 07919310 n 0301 + 09282724 n 0202 + 09282724 n 0101 + 02277279 a 0402 ~ 00512043 v 0000 ~ 00519751 v 0000 01 + 01 00 | become bubbly or frothy or foaming; "The boiling soup was frothing"; "The river was foaming"; "Sparkling water" -00519751 30 v 01 seethe 3 001 @ 00519363 v 0000 01 + 01 00 | foam as if boiling; "a seething liquid" -00519854 30 v 01 sweeten 0 003 @ 00126264 v 0000 + 05695232 n 0105 + 00265992 n 0102 01 + 08 00 | make sweeter, more pleasant, or more agreeable; "sweeten a deal" -00520019 30 v 02 interrupt 3 disturb 0 001 @ 02367363 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | destroy the peace or tranquility of; "Don't interrupt me when I'm reading" -00520194 30 v 01 cut_in 0 001 @ 00520357 v 0000 01 + 02 00 | interrupt a dancing couple in order to take one of them as one's own partner; "Jim always cuts in!" -00520357 30 v 02 interrupt 4 disrupt 0 005 @ 00780191 v 0000 + 00383952 n 0203 + 00383952 n 0102 ~ 00520194 v 0000 ~ 00520602 v 0000 02 + 08 00 + 09 00 | interfere in someone else's activity; "Please don't interrupt me while I'm on the phone" -00520602 30 v 01 cut_short 4 001 @ 00520357 v 0000 02 + 09 00 + 10 00 | cause to end earlier than intended; "The spontaneous applause cut the singer short" -00520760 30 v 01 de-ionate 0 002 @ 00173338 v 0000 ! 00521185 v 0101 01 + 08 00 | remove ions from; "ionate thyroxine" -00520881 30 v 01 iodinate 0 003 @ 00126264 v 0000 + 14641397 n 0101 ! 00521033 v 0101 01 + 08 00 | cause to combine with iodine; "iodinate thyroxine" -00521033 30 v 01 de-iodinate 0 003 @ 00173338 v 0000 + 13460863 n 0101 ! 00520881 v 0101 01 + 08 00 | remove iodine from; "de-iodinate the thyroxine" -00521185 30 v 01 ionate 0 003 @ 00126264 v 0000 + 09315159 n 0101 ! 00520760 v 0101 01 + 08 00 | add ions to -00521296 30 v 01 upset 0 001 @ 01207527 v 0000 02 + 08 00 + 11 00 | disturb the balance or stability of; "The hostile talks upset the peaceful relations between the two countries" -00521478 30 v 01 green 0 004 @ 00281101 v 0000 + 04967191 n 0101 + 11505546 n 0102 + 13153633 n 0101 01 + 01 00 | turn or become green; "The trees are greening" -00521641 30 v 01 blue 0 003 @ 00281101 v 0000 + 04968895 n 0101 + 13439935 n 0101 01 + 01 00 | turn blue -00521748 30 v 01 thrombose 0 001 @ 00146138 v 0000 01 + 01 00 | become blocked by a thrombus; "the blood vessel thrombosed" -00521874 30 v 02 diagonalize 0 diagonalise 0 005 @ 00383542 v 0000 + 05783357 n 0202 + 08268321 n 0201 + 05783357 n 0101 + 08268321 n 0101 01 + 08 00 | transform a matrix to a diagonal matrix -00522068 30 v 02 archaize 0 archaise 0 005 @ 00126264 v 0000 + 07073447 n 0201 + 09804230 n 0201 + 07073447 n 0101 + 09804230 n 0101 01 + 08 00 | give an archaic appearance of character to; "archaized craftwork" -00522282 30 v 01 take_effect 0 001 @ 00149583 v 0000 01 + 01 00 | go into effect or become effective or operative; "The new law will take effect next month" -00522441 30 v 01 translate 0 003 @ 01850315 v 0000 ;c 06004685 n 0000 + 07446404 n 0101 01 + 08 00 | change the position of (figures or bodies) in space without rotation -00522613 30 v 01 inform 0 001 @ 00126264 v 0000 01 + 08 00 | give character or essence to; "The principles that inform modern teaching" -00522751 30 v 05 receive 1 get 3 find 0 obtain 0 incur 0 003 $ 02210855 v 0000 @ 00109660 v 0000 ~ 00523095 v 0000 01 + 01 00 | receive a specified treatment (abstract); "These aspects of civilization do not find expression or receive an interpretation"; "His movie received a good review"; "I got nothing but trouble for my good intentions" -00523095 30 v 01 take 8 001 @ 00522751 v 0000 02 + 08 00 + 11 00 | ascertain or determine by measuring, computing or take a reading from a dial; "take a pulse"; "A reading was taken of the earth's tremors" -00523304 30 v 02 officialize 0 officialise 0 001 @ 00126264 v 0000 01 + 08 00 | make official; "We officialized our relationship" -00523436 30 v 02 marbleize 0 marbleise 0 005 @ 00356258 v 0000 + 04951186 n 0202 + 04951186 n 0101 + 04951186 n 0103 + 14947807 n 0101 01 + 08 00 | make something look like marble; "marbleize the fireplace" -00523645 30 v 04 occidentalize 0 occidentalise 0 westernize 0 westernise 0 004 @ 00126264 v 0000 + 00825089 a 0301 ! 00523895 v 0202 ! 00523895 v 0101 02 + 09 00 + 10 00 | make western in character; "The country was Westernized after it opened up" -00523895 30 v 02 orientalize 0 orientalise 0 003 @ 00126264 v 0000 ! 00523645 v 0202 ! 00523645 v 0101 03 + 08 00 + 09 00 + 10 00 | make oriental in character; "orientalize your garden" -00524083 30 v 03 acetylate 1 acetylize 1 acetylise 1 005 @ 00126264 v 0000 ;c 06084469 n 0000 + 14594456 n 0201 + 14594456 n 0101 + 13425637 n 0101 01 + 08 00 | introduce an acetyl group into (a chemical compound) -00524299 30 v 03 acetylate 0 acetylize 0 acetylise 0 005 @ 00109660 v 0000 ;c 06084469 n 0000 + 14594456 n 0201 + 14594456 n 0101 + 13425637 n 0101 01 + 01 00 | receive substitution of an acetyl group; "the compounds acetylated" -00524530 30 v 02 achromatize 0 achromatise 0 002 @ 00126264 v 0000 + 00386392 a 0101 02 + 08 00 + 11 00 | remove color from; "achromatize the lenses" -00524682 30 v 05 assume 0 acquire 0 adopt 1 take_on 0 take 1 002 @ 00109660 v 0000 ~ 00525027 v 0000 01 + 11 00 | take on a certain form, attribute, or aspect; "His voice took on a sad tone"; "The story took a new turn"; "he adopted an air of superiority"; "She assumed strange manners"; "The gods assume human or animal form in these fables" -00525027 30 v 01 re-assume 0 001 @ 00524682 v 0000 01 + 08 00 | take on again, as after a time lapse; "He re-assumed his old behavior" -00525164 30 v 01 prim 1 001 @ 00109660 v 0000 02 + 01 00 + 02 00 | assume a prim appearance; "They mince and prim" -00525281 30 v 02 parallel 0 collimate 1 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make or place parallel to something; "They paralleled the ditch to the highway" -00525446 30 v 02 ritualize 0 ritualise 0 003 @ 02478936 v 0000 + 01030820 n 0101 + 01027859 n 0101 03 + 01 00 + 08 00 + 11 00 | make or evolve into a ritual; "The growing up of children has become ritualized in many cultures" -00525674 30 v 02 bromate 1 brominate 1 003 @ 00446885 v 0000 + 14632129 n 0201 + 14632129 n 0101 01 + 01 00 | react with bromine -00525805 30 v 01 camp 0 002 @ 00126264 v 0000 + 05649960 n 0101 01 + 08 00 | give an artificially banal or sexual quality to -00525932 30 v 01 capacitate 2 001 @ 00109660 v 0000 01 + 11 00 | cause (spermatozoa) to undergo the physical changes necessary to fertilize an egg -00526081 30 v 01 carboxylate 0 002 @ 00515154 v 0000 ;c 06084469 n 0000 01 + 08 00 | treat (a chemical compound) with carboxyl or carboxylic acid -00526229 30 v 01 caseate 0 001 @ 00109660 v 0000 01 + 01 00 | become cheeselike; "necrotic tissue caseates" -00526339 30 v 01 caseate 1 001 @ 00109660 v 0000 01 + 01 00 | turn into cheese; "The milk caseated" -00526441 30 v 02 hack 1 hack_on 0 002 @ 01747717 v 0000 + 10154871 n 0101 02 + 08 00 + 02 01 | fix a computer program piecemeal until it works; "I'm not very good at hacking but I'll give it my best" -00526643 30 v 02 classicize 0 classicise 0 001 @ 00126264 v 0000 01 + 08 00 | make classic or classical -00526749 30 v 01 clinker 0 002 @ 00109660 v 0000 + 09245212 n 0102 01 + 01 00 | turn to clinker or form clinker under excessive heat in burning -00526895 30 v 01 clinker 1 001 @ 00448864 v 0000 01 + 08 00 | clear out the cinders and clinker from; "we clinkered the fire frequently" -00527034 30 v 02 closure 0 cloture 0 003 @ 00352826 v 0000 + 06666829 n 0202 + 06666829 n 0101 01 + 08 00 | terminate debate by calling for a vote; "debate was closured"; "cloture the discussion" -00527232 30 v 01 compost 0 002 @ 00115157 v 0000 + 14818101 n 0101 02 + 01 00 + 08 00 | convert to compost; "compost organic debris" -00527367 30 v 02 conventionalize 0 conventionalise 0 003 @ 00126264 v 0000 + 01159964 n 0202 + 01159964 n 0101 02 + 08 00 + 11 00 | make conventional or adapt to conventions; "conventionalized behavior" -00527572 30 v 01 cure 0 004 @ 00212414 v 0000 + 13491060 n 0105 $ 00527801 v 0000 ~ 00528115 v 0000 01 + 08 00 | prepare by drying, salting, or chemical processing in order to preserve; "cure meats"; "cure pickles"; "cure hay" -00527801 30 v 01 cure 1 002 $ 00527572 v 0000 @ 00109660 v 0000 01 + 01 00 | be or become preserved; "the apricots cure in the sun" -00527935 30 v 01 cure 2 002 @ 00443116 v 0000 + 01521776 a 0101 02 + 08 00 + 11 00 | make (substances) hard and improve their usability; "cure resin"; "cure cement"; "cure soap" -00528115 30 v 01 dun 1 002 @ 00527572 v 0000 ;c 00243918 n 0000 01 + 08 00 | cure by salting; "dun codfish" -00528225 30 v 01 corn 0 002 @ 00212414 v 0000 ;c 00243918 n 0000 01 + 08 00 | preserve with salt; "corned beef" -00528339 30 v 03 recover 0 go_back 0 recuperate 2 003 @ 00387310 v 0000 + 07419792 n 0101 ~ 00528608 v 0000 03 + 01 00 + 02 00 + 04 00 | regain a former condition after a financial loss; "We expect the stocks to recover to $2.90"; "The company managed to recuperate" -00528608 30 v 02 rally 0 rebound 0 003 @ 00528339 v 0000 + 00859691 n 0201 + 13545845 n 0101 02 + 01 00 + 02 00 | return to a former condition; "The jilted lover soon rallied and found new friends"; "The stock market rallied" -00528836 30 v 01 dawn 0 003 @ 00109660 v 0000 + 15168790 n 0101 + 15168790 n 0102 01 + 01 00 | become light; "It started to dawn, and we had to get up" -00528990 30 v 06 issue 0 emerge 2 come_out 4 come_forth 0 go_forth 0 egress 0 012 + 00044455 n 0602 + 07319909 n 0602 + 00044455 n 0601 + 00050693 n 0202 + 03303965 n 0102 ~ 00529411 v 0000 ~ 00529582 v 0000 ~ 00529759 v 0000 ~ 00530017 v 0000 ~ 00530177 v 0000 ~ 00530291 v 0000 ~ 02097925 v 0000 02 + 04 00 + 22 00 | come out of; "Water issued from the hole in the wall"; "The words seemed to come out by themselves" -00529411 30 v 01 pop_out 0 001 @ 00528990 v 0000 02 + 01 00 + 04 00 | come out suddenly or forcefully; "you stick a bill in the vending machine and the change pops out" -00529582 30 v 01 radiate 2 003 @ 00528990 v 0000 + 00280463 a 0104 + 09403211 n 0101 02 + 04 00 + 22 00 | issue or emerge in rays or waves; "Heat radiated from the metal box" -00529759 30 v 01 leak 4 004 @ 00528990 v 0000 + 07436661 n 0102 + 09337048 n 0101 + 07436661 n 0103 02 + 01 00 + 04 00 | enter or escape as through a hole or crack or fissure; "Water leaked out of the can into the backpack"; "Gas leaked into the basement" -00530017 30 v 01 escape 4 002 @ 00528990 v 0000 + 07436661 n 0101 02 + 01 00 + 04 00 | issue or leak, as from a small opening; "Gas escaped into the bedroom" -00530177 30 v 01 fall a 001 @ 00528990 v 0000 01 + 04 00 | come out; issue; "silly phrases fell from her mouth" -00530291 30 v 01 debouch 0 001 @ 00528990 v 0000 01 + 01 00 | pass out or emerge; especially of rivers; "The tributary debouched into the big river" -00530442 30 v 05 decarbonize 0 decarbonise 0 decarburize 0 decarburise 0 decoke 0 001 @ 00173338 v 0000 01 + 08 00 | remove carbon from (an engine) -00530592 30 v 02 decimalize 0 decimalise 0 005 @ 00381013 v 0000 + 00194414 n 0202 + 13585309 n 0201 + 00194414 n 0101 + 13585309 n 0101 02 + 08 00 + 11 00 | change to the decimal system; "The country decimalized the currency in 1975" -00530829 30 v 02 decimalize 1 decimalise 1 005 @ 00126264 v 0000 + 00194414 n 0202 + 13736197 n 0202 + 00194414 n 0101 + 13736197 n 0102 01 + 11 00 | change from fractions to decimals; "Stock prices will be decimalized in the year 2000" -00531068 30 v 01 declutch 0 001 @ 00220276 v 0000 01 + 02 00 | disengage the clutch of a car -00531163 30 v 01 delouse 0 001 @ 00173338 v 0000 01 + 09 00 | free of lice; "They deloused the prisoners after they liberated the camps" -00531302 30 v 02 depopulate 0 desolate 0 003 @ 00241038 v 0000 + 07335414 n 0202 + 14519208 n 0101 02 + 08 00 + 11 00 | reduce in population; "The epidemic depopulated the countryside" -00531489 30 v 02 lower 1 lour 1 003 @ 00493703 v 0000 ~ 00531644 v 0000 ~ 00579712 v 0000 01 + 08 00 | set lower; "lower a rating"; "lower expectations" -00531644 30 v 01 derate 0 001 @ 00531489 v 0000 01 + 08 00 | lower the rated electrical capability of electrical apparatus -00531769 30 v 01 salinate 0 003 @ 00109660 v 0000 + 14590293 n 0102 ! 00531904 v 0101 01 + 08 00 | add salt to; "salinated solution" -00531904 30 v 04 desalinate 0 desalt 0 desalinize 0 desalinise 0 005 @ 00109660 v 0000 + 13462795 n 0403 + 13462795 n 0302 + 13462795 n 0101 ! 00531769 v 0101 01 + 08 00 | remove salt from; "desalinate water" -00532115 30 v 02 take_away 3 detract 4 004 @ 00429060 v 0000 + 02537181 a 0201 + 01220754 n 0201 + 10009671 n 0201 01 + 11 00 | take away a part from; diminish; "His bad manners detract from his good character" -00532328 30 v 01 dizzy 0 001 @ 00126264 v 0000 01 + 10 00 | make dizzy or giddy; "a dizzying pace" -00532429 30 v 02 poison 0 envenom 0 003 @ 00126264 v 0000 + 15032376 n 0101 + 00224738 n 0101 01 + 08 00 | add poison to; "Her husband poisoned her drink in order to kill her" -00532607 30 v 05 exteriorize 0 exteriorise 0 externalize 0 externalise 0 objectify 1 005 @ 00126264 v 0000 + 03838160 n 0501 + 00932088 n 0501 + 00002684 n 0501 + 00932624 n 0204 01 + 08 00 | make external or objective, or give reality to; "language externalizes our thoughts" -00532886 30 v 04 glamorize 0 glamourise 0 glamourize 0 glamorise 0 007 @ 00126264 v 0000 + 00261972 n 0402 + 00261972 n 0303 + 00261972 n 0204 + 04685195 n 0202 + 00261972 n 0101 + 04685195 n 0101 01 + 08 00 | make glamorous and attractive; "This new wallpaper really glamorizes the living room!" -00533185 30 v 02 sentimentalize 0 sentimentalise 0 002 @ 00836705 v 0000 + 01219306 n 0202 02 + 08 00 + 11 00 | look at with sentimentality or turn into an object of sentiment; "Don't sentimentalize the past events" -00533403 30 v 02 sole 0 resole 0 002 @ 00260648 v 0000 + 04258982 n 0101 01 + 08 00 | put a new sole on; "sole the shoes" -00533527 30 v 02 vamp 0 revamp 1 002 @ 00260648 v 0000 + 04520020 n 0101 01 + 08 00 | provide (a shoe) with a new vamp; "revamp my old boots" -00533671 30 v 02 heel 0 reheel 0 001 @ 00260648 v 0000 01 + 08 00 | put a new heel on; "heel shoes" -00533773 30 v 01 honeycomb 0 002 @ 00123170 v 0000 + 03530642 n 0101 01 + 11 00 | make full of cavities, like a honeycomb -00533897 30 v 01 introvert 0 005 @ 00126264 v 0000 + 01351021 a 0102 + 01351021 a 0101 + 10213429 n 0101 + 04621963 n 0101 03 + 08 00 + 10 00 + 11 00 | turn inside; "He introverted his feelings" -00534094 30 v 02 laicize 0 laicise 0 001 @ 00126264 v 0000 01 + 08 00 | reduce to lay status; "laicize the parochial schools" -00534222 30 v 02 politicize 0 politicise 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | give a political character to; "politicize the discussion" -00534369 30 v 01 radicalize 0 001 @ 00126264 v 0000 02 + 09 00 + 10 00 | make more radical in social or political outlook; "Her work in the developing world radicalized her" -00534545 30 v 01 proof 1 001 @ 00126264 v 0000 01 + 08 00 | activate by mixing with water and sometimes sugar or milk; "proof yeast" -00534680 30 v 02 romanticize 0 romanticise 0 001 @ 00126264 v 0000 01 + 08 00 | make romantic in style; "The designer romanticized the little black dress" -00534837 30 v 01 redden 1 007 @ 00283911 v 0000 ~ 00285593 v 0000 ~ 00535061 v 0000 ~ 00535148 v 0000 ~ 00535256 v 0000 ~ 00535360 v 0000 ~ 00535570 v 0000 02 + 08 00 + 11 00 | make red; "The setting sun reddened the sky" -00535061 30 v 01 encrimson 0 001 @ 00534837 v 0000 02 + 08 00 + 11 00 | make crimson -00535148 30 v 01 vermilion 0 002 @ 00534837 v 0000 + 04964977 n 0102 02 + 08 00 + 11 00 | color vermilion -00535256 30 v 01 carmine 0 002 @ 00534837 v 0000 + 04963449 n 0102 02 + 08 00 + 11 00 | color carmine -00535360 30 v 01 rubify 0 003 @ 00534837 v 0000 + 04963588 n 0102 ~ 00535481 v 0000 02 + 08 00 + 11 00 | make ruby red -00535481 30 v 01 rubric 0 001 @ 00535360 v 0000 01 + 08 00 | adorn with ruby red color -00535570 30 v 01 ruddle 0 001 @ 00534837 v 0000 01 + 08 00 | redden as if with a red ocher color -00535669 30 v 01 rusticate 0 003 @ 00126264 v 0000 + 14579215 n 0101 + 00913274 n 0101 02 + 08 00 + 10 00 | lend a rustic character to; "rusticate the house in the country" -00535844 30 v 01 sauce 0 002 @ 00126264 v 0000 + 07829412 n 0101 01 + 08 00 | add zest or flavor to, make more interesting; "sauce the roast" -00535988 30 v 02 shallow 0 shoal 0 003 @ 00109660 v 0000 + 09433134 n 0201 + 09433134 n 0102 01 + 01 00 | become shallow; "the lake shallowed over time" -00536143 30 v 02 shallow 1 shoal 1 003 @ 00126264 v 0000 + 09433134 n 0201 + 09433134 n 0102 02 + 08 00 + 11 00 | make shallow; "The silt shallowed the canal" -00536304 30 v 01 tense 0 003 @ 00126264 v 0000 + 11515051 n 0101 + 00366675 n 0101 02 + 08 00 + 11 00 | increase the tension on; "alternately relax and tense your calf muscle"; "tense the rope manually before tensing the spring" -00536535 30 v 01 slack 0 003 @ 00419375 v 0000 + 04233556 n 0101 + 04775357 n 0101 02 + 08 00 + 11 00 | release tension on; "slack the rope" -00536678 30 v 01 steepen 0 001 @ 00126264 v 0000 01 + 11 00 | make steeper; "The landslides have steepened the mountain sides" -00536807 30 v 01 steepen 1 001 @ 00109660 v 0000 01 + 01 00 | become steeper; "The mountain side has steepened" -00536921 30 v 01 superannuate 0 001 @ 02379753 v 0000 01 + 09 00 | retire or become ineligible because of old age or infirmity -00537050 30 v 01 superannuate 1 002 @ 00109660 v 0000 + 04925577 n 0102 01 + 01 00 | become obsolete -00537153 30 v 01 ulcerate 0 004 @ 00109660 v 0000 + 03142636 a 0101 + 13570783 n 0101 + 14211609 n 0101 01 + 01 00 | undergo ulceration; "Her stomach ulcerated" -00537316 30 v 01 scramble 0 003 @ 00126264 v 0000 + 04150474 n 0101 ! 00537494 v 0101 01 + 08 00 | make unintelligible; "scramble the message so that nobody can understand it" -00537494 30 v 01 unscramble 0 002 @ 00126264 v 0000 ! 00537316 v 0101 01 + 08 00 | make intelligible; "Can you unscramble the message?" -00537632 30 v 01 unsex 0 001 @ 00126264 v 0000 01 + 09 00 | remove the qualities typical of one's sex; "She unsexed herself" -00537759 30 v 01 vitrify 0 002 @ 00109660 v 0000 + 13573805 n 0101 01 + 01 00 | undergo vitrification; become glassy or glass-like -00537892 30 v 01 vitrify 1 002 @ 00126264 v 0000 + 15112565 n 0101 02 + 08 00 + 11 00 | change into glass or a glass-like substance by applying heat -00538043 30 v 02 vulcanize 0 vulcanise 0 003 @ 00109660 v 0000 + 13573915 n 0202 + 13573915 n 0101 01 + 01 00 | undergo vulcanization; "vulcanize rubber" -00538199 30 v 02 pall 1 dull 2 002 @ 00109660 v 0000 + 09867437 n 0202 01 + 01 00 | become less interesting or attractive -00538323 30 v 03 die 5 pall 2 become_flat 1 001 @ 00109660 v 0000 01 + 01 00 | lose sparkle or bouquet; "wine and beer can pall" -00538454 30 v 01 pall 3 002 > 00538323 v 0000 @ 00126264 v 0000 01 + 11 00 | cause to become flat; "pall the beer" -00538571 30 v 01 saponify 0 005 @ 00126264 v 0000 ;c 06084469 n 0000 + 13552858 n 0101 + 04253437 n 0101 $ 00538852 v 0000 02 + 08 00 + 11 00 | convert into soap by hydrolizing an ester into an acid and alcohol as a result of treating it with an alkali; "saponify oils and fats" -00538852 30 v 01 saponify 1 004 $ 00538571 v 0000 @ 00109660 v 0000 ;c 06084469 n 0000 + 13552858 n 0101 01 + 01 00 | become converted into soap by being hydrolized into an acid and alcohol as a result of being treated with an alkali; "the oil saponified" -00539110 30 v 03 move 1 go 2 run 2 002 @ 00109660 v 0000 + 00791078 n 0303 02 + 04 00 + 22 00 | progress by being changed; "The speech has to go through several more drafts"; "run through your presentation before the meeting" -00539338 30 v 01 settle 3 003 @ 00171852 v 0000 + 08672562 n 0101 + 08374049 n 0102 01 + 08 00 | establish or develop as a residence; "He settled the farm 200 years ago"; "This land was settled by Germans" -00539546 30 v 02 lead_up 0 initiate 0 003 @ 01628449 v 0000 + 01009343 a 0202 + 00156390 n 0203 02 + 08 00 + 11 00 | set in motion, start an event or prepare the way for; "Hitler's attack on Poland led up to World War II" -00539770 30 v 02 break_through 2 crack 9 001 @ 02050132 v 0000 01 + 11 00 | pass through (a barrier); "Registrations cracked through the 30,000 mark in the county" -00539936 30 v 02 open 0 open_up 0 003 > 00540101 v 0000 @ 02339171 v 0000 + 14485249 n 0101 02 + 08 00 + 11 00 | make available; "This opens up new possibilities" -00540101 30 v 02 open 1 open_up 1 002 @ 00339738 v 0000 + 14485249 n 0101 01 + 01 00 | become available; "an opportunity opened up" -00540235 30 v 03 widen 1 broaden 2 extend 1 009 @ 00153263 v 0000 + 01386234 a 0301 + 00367768 n 0301 + 13941125 n 0301 ~ 00317569 v 0000 ~ 00540624 v 0000 ~ 00540739 v 0000 $ 00540946 v 0000 ~ 00541746 v 0000 02 + 08 00 + 11 00 | extend in scope or range or area; "The law was extended to all citizens"; "widen the range of applications"; "broaden your horizon"; "Extend your backyard" -00540624 30 v 02 territorialize 0 territorialise 0 001 @ 00540235 v 0000 01 + 08 00 | extend by adding territory -00540739 30 v 02 globalize 0 globalise 0 003 @ 00540235 v 0000 + 13488110 n 0202 + 13488110 n 0101 02 + 08 00 + 11 00 | make world-wide in scope or application; "Markets are being increasingly globalized" -00540946 30 v 02 extend 9 expand 9 004 $ 00540235 v 0000 @ 00126264 v 0000 + 00947264 a 0202 + 00946499 a 0201 01 + 08 00 | expand the influence of; "The King extended his rule to the Eastern part of the continent" -00541163 30 v 01 expand c 006 @ 00154778 v 0000 + 00947264 a 0103 + 00947264 a 0102 + 00946499 a 0101 ~ 00234057 v 0000 ~ 00264034 v 0000 02 + 08 00 + 11 00 | make bigger or wider in size, volume, or quantity; "expand the house by adding another wing" -00541417 30 v 01 ream 0 003 @ 00154778 v 0000 + 04059399 n 0101 $ 00541551 v 0000 01 + 08 00 | enlarge with a reamer; "ream a hole" -00541551 30 v 01 ream 1 002 $ 00541417 v 0000 @ 00173338 v 0000 01 + 08 00 | remove by making a hole or by boring; "the dentist reamed out the debris in the course of the root canal treatment" -00541746 30 v 01 stretch 5 002 @ 00540235 v 0000 + 00371059 n 0101 02 + 08 00 + 11 00 | extend the scope or meaning of; often unduly; "Stretch the limits"; "stretch my patience"; "stretch the imagination" -00541953 30 v 02 emasculate 0 castrate 2 002 @ 00224901 v 0000 + 04668713 n 0101 02 + 08 00 + 11 00 | deprive of strength or vigor; "The Senate emasculated the law" -00542120 30 v 01 come 3 002 $ 00341917 v 0000 @ 00109660 v 0000 01 + 28 00 | reach or enter a state, relation, condition, use, or position; "The water came to a boil"; "We came to understand the true meaning of life"; "Their anger came to a boil"; "I came to realize the true meaning of life"; "The shoes came untied"; "come into contact with a terrorist group"; "his face went red"; "your wish will come true" -00542533 30 v 01 wash_out 0 001 @ 00224901 v 0000 02 + 10 00 + 11 00 | deplete of strength or vitality; "The illness washed her out" -00542668 30 v 02 suspend 2 set_aside 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make inoperative or stop; "suspend payments on the loan" -00542809 30 v 02 dress 0 dress_out 0 005 $ 01679433 v 0000 $ 01364184 v 0000 * 01323958 v 0000 @ 01664172 v 0000 + 07678729 n 0102 01 + 08 00 | kill and prepare for market or consumption; "dress a turkey" -00543016 30 v 01 catch 0 002 @ 00109660 v 0000 $ 02109645 v 0000 02 + 08 00 + 11 00 | be struck or affected by; "catch fire"; "catch the mood" -00543161 30 v 01 bring_home 0 001 @ 02148788 v 0000 01 + 11 00 | make understandable and clear; "This brings home my point" -00543287 30 v 01 catch_on 0 001 @ 00109660 v 0000 02 + 01 00 + 04 00 | become popular; "This fashion caught on in Paris" -00543410 30 v 02 develop a grow a 004 @ 00109660 v 0000 + 13464820 n 0101 ~ 00543745 v 0000 ~ 00545953 v 0000 02 + 01 00 + 02 00 | grow emotionally or mature; "The child developed beautifully in her new kindergarten"; "When he spent a summer at camp, the boy grew noticeably and no longer showed some of his old adolescent behavior" -00543745 30 v 01 outgrow 1 001 @ 00543410 v 0000 02 + 08 00 + 11 00 | grow too large or too mature for; "I have outgrown these clothes"; "She outgrew her childish habits" -00543918 30 v 01 muddy 0 001 @ 00126264 v 0000 01 + 11 00 | make turbid; "muddy the water" -00544011 30 v 01 transform 2 002 @ 00126264 v 0000 + 13785136 n 0101 01 + 08 00 | subject to a mathematical transformation -00544136 30 v 02 broil 1 bake 2 001 @ 00371264 v 0000 02 + 10 00 + 11 00 | heat by a natural force; "The sun broils the valley in the summer" -00544280 30 v 01 reheat 0 001 @ 00371264 v 0000 02 + 08 00 + 10 00 | heat again; "Please reheat the food from last night" -00544404 30 v 01 poach 0 003 @ 00322847 v 0000 + 03972372 n 0101 + 00247342 n 0101 01 + 08 00 | cook in a simmering liquid; "poached apricots" -00544549 30 v 03 lift 7 raise 2 elevate 0 005 @ 00126264 v 0000 + 13940456 n 0303 + 00373544 n 0303 ~ 00544790 v 0000 ~ 00544936 v 0000 03 + 08 00 + 09 00 + 10 00 | raise in rank or condition; "The new law lifted many people from poverty" -00544790 30 v 01 dignify 1 001 @ 00544549 v 0000 01 + 08 00 | raise the status of; "I shall not dignify this insensitive remark with an answer" -00544936 30 v 01 exalt 0 003 @ 00544549 v 0000 + 01029114 n 0102 ~ 00545140 v 0000 02 + 20 00 + 21 00 | raise in rank, character, or status; "exalted the humble shoemaker to the rank of King's adviser" -00545140 30 v 01 deify 1 002 @ 00544936 v 0000 + 01029114 n 0101 02 + 08 00 + 09 00 | exalt to the position of a God; "the people deified their King" -00545292 30 v 01 fly 1 001 @ 00109660 v 0000 01 + 22 00 | change quickly from one emotional state to another; "fly into a rage" -00545422 30 v 01 harshen 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make harsh or harsher; "Winter harshened the look of the city" -00545557 30 v 03 develop 6 acquire 5 evolve 3 006 $ 00094460 v 0000 $ 00925873 v 0000 $ 01627947 v 0000 $ 00402130 v 0000 @ 00109660 v 0000 + 13477023 n 0301 02 + 08 00 + 11 00 | gain through experience; "I acquired a strong aversion to television"; "Children must develop a sense of right and wrong"; "Dave developed leadership qualities in his new position"; "develop a passion for painting" -00545953 30 v 01 make c 002 @ 00543410 v 0000 + 04717139 n 0102 01 + 10 00 | develop into; "He will make a splendid father!" -00546080 30 v 02 flow_out 0 effuse 1 002 @ 00546192 v 0000 + 00329943 n 0201 01 + 04 00 | flow or spill forth -00546192 30 v 01 emanate 0 004 @ 01849221 v 0000 + 15109745 n 0101 + 01253060 n 0102 ~ 00546080 v 0000 01 + 04 00 | proceed or issue forth, as from a source; "Water emanates from this hole in the ground" -00546398 30 v 02 white-out 1 whiteout 0 001 @ 02287789 v 0000 01 + 08 00 | lose daylight visibility in heavy fog, snow, or rain -00546528 30 v 01 dinge 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make dingy -00546609 30 v 02 dinge 1 batter 0 001 @ 00140967 v 0000 01 + 08 00 | make a dent or impression in; "dinge a soft hat" -00546729 30 v 01 crescendo 0 003 @ 00156601 v 0000 + 04990525 n 0101 ! 00546873 v 0101 01 + 01 00 | grow louder; "The music crescendoes here" -00546873 30 v 01 decrescendo 0 003 @ 00151689 v 0000 + 04991225 n 0101 ! 00546729 v 0101 01 + 01 00 | grow quieter; "The music decrescendoes here" -00547022 30 v 01 assibilate 0 004 @ 00109660 v 0000 + 07118747 n 0101 + 13434406 n 0101 + 07129202 n 0102 01 + 01 00 | change into a sibilant; "In the syllable /si/, the /s/ sibilates in Japanese" -00547221 30 v 01 smoothen 0 001 @ 00109660 v 0000 01 + 01 00 | become smooth -00547300 30 v 02 demonize 0 demonise 0 005 @ 00126264 v 0000 + 06710152 n 0202 + 06710152 n 0101 + 10329945 n 0104 + 09542339 n 0103 01 + 10 00 | make into a demon; "Power had demonized him" -00547493 30 v 04 devilize 0 devilise 0 diabolize 0 diabolise 0 004 @ 00126264 v 0000 + 09543353 n 0103 + 10329945 n 0103 + 09542339 n 0101 01 + 19 00 | turn into a devil or make devilish; "Man devilized by war" -00547706 30 v 02 etherealize 0 etherialise 0 001 @ 00126264 v 0000 01 + 11 00 | make ethereal -00547802 30 v 04 immaterialize 0 immaterialise 0 unsubstantialize 0 unsubstantialise 0 003 @ 00126264 v 0000 + 00625774 a 0302 ~ 01645290 v 0000 01 + 11 00 | render immaterial or incorporeal -00547995 30 v 03 animize 0 animise 0 animate 1 002 @ 00126264 v 0000 + 09794550 n 0301 02 + 10 00 + 11 00 | give lifelike qualities to; "animated cartoons" -00548153 30 v 02 come_back 0 return 1 001 @ 00426301 v 0000 01 + 01 00 | be restored; "Her old vigor returned" -00548266 30 v 04 erupt 4 come_out 3 break_through 1 push_through 0 004 @ 00422090 v 0000 + 07320176 n 0101 ~ 00308105 v 0000 $ 00422899 v 0000 01 + 01 00 | break out; "The tooth erupted and had to be extracted" -00548479 30 v 01 turn_on 0 001 @ 00109660 v 0000 02 + 04 00 + 22 00 | become hostile towards; "The dog suddenly turned on the mailman" -00548616 30 v 01 drop 2 001 @ 00109660 v 0000 02 + 04 00 + 22 00 | change from one level to another; "She dropped into army jargon" -00548750 30 v 03 mangle 1 mutilate 1 murder 0 001 @ 00835903 v 0000 01 + 08 00 | alter so as to make unrecognizable; "The tourists murdered the French language" -00548913 30 v 01 shift 1 002 @ 02257767 v 0000 + 07444668 n 0101 01 + 08 00 | move and exchange for another; "shift the date for our class reunion" -00549063 30 v 01 run 3 001 @ 00149583 v 0000 04 + 06 00 + 07 00 + 08 00 + 11 00 | change from one state to another; "run amok"; "run rogue"; "run riot" -00549217 30 v 01 clear 3 002 @ 00126264 v 0000 + 00264192 n 0101 02 + 08 00 + 11 00 | make clear, bright, light, or translucent; "The water had to be cleared through filtering" -00549396 30 v 01 break_into 0 001 @ 00109660 v 0000 02 + 04 00 + 22 00 | change pace; "The dancers broke into a cha-cha"; "The horse broke into a gallop" -00549552 30 v 02 save 0 make_unnecessary 0 001 @ 02452885 v 0000 02 + 11 00 + 14 00 | make unnecessary an expenditure or effort; "This will save money"; "I'll save you the trouble"; "This will save you a lot of time" -00549771 30 v 01 turn_to 0 000 02 + 08 00 + 09 00 | direct one's interest or attention towards; go into; "The pedophile turned to boys for satisfaction"; "People turn to mysticism at the turn of a millennium" -00549982 30 v 02 raise 3 lift 5 001 @ 00205885 v 0000 02 + 08 00 + 11 00 | invigorate or heighten; "lift my spirits"; "lift his ego" -00550117 30 v 03 switch 2 shift 2 change 5 012 $ 00169458 v 0000 $ 00161225 v 0000 + 07444668 n 0201 + 00196084 n 0101 ~ 00550546 v 0000 ~ 00551065 v 0000 ~ 00551412 v 0000 ~ 00551611 v 0000 ~ 00560391 v 0000 ~ 00744237 v 0000 ~ 01860107 v 0000 ~ 02101373 v 0000 03 + 02 00 + 08 00 + 09 00 | lay aside, abandon, or leave for another; "switch to a different brand of beer"; "She switched psychiatrists"; "The car changed lanes" -00550546 30 v 01 transition 0 003 @ 00550117 v 0000 + 00201058 n 0102 + 07358576 n 0101 02 + 12 00 + 22 00 | make or undergo a transition (from one state or system to another); "The airline transitioned to more fuel-efficient jets"; "The adagio transitioned into an allegro" -00550823 30 v 01 transition 1 004 > 00550546 v 0000 @ 00115157 v 0000 + 07358576 n 0101 + 07415730 n 0102 02 + 01 00 + 02 00 | cause to convert or undergo a transition; "the company had to transition the old practices to modern technology" -00551065 30 v 01 shift b 002 @ 00550117 v 0000 + 03432129 n 0103 01 + 02 00 | change gears; "you have to shift when you go down a steep hill" -00551210 30 v 02 deepen 2 change 8 001 @ 00109660 v 0000 01 + 01 00 | become deeper in tone; "His voice began to change when he was 12 years old"; "Her voice deepened when she whispered the password" -00551412 30 v 01 break e 001 @ 00550117 v 0000 01 + 01 00 | change suddenly from one tone quality or register to another; "Her voice broke to a whisper when she started to talk about her children" -00551611 30 v 02 surf 0 channel-surf 0 001 @ 00550117 v 0000 01 + 02 00 | switch channels, on television -00551718 30 v 02 dynamize 0 dynamise 0 001 @ 00126264 v 0000 01 + 08 00 | make (a drug) effective; "dynamized medicine" -00551840 30 v 02 dynamize 1 dynamise 1 001 @ 00126264 v 0000 03 + 08 00 + 10 00 + 11 00 | make more dynamic; "She was dynamized by her desire to go to grad school" -00552006 30 v 02 concretize 0 concretise 0 001 @ 00109660 v 0000 01 + 01 00 | become specific; "the idea concretized in her mind" -00552138 30 v 03 rarefy 1 sublimate 2 subtilize 0 001 @ 00126264 v 0000 01 + 08 00 | make more subtle or refined -00552253 30 v 02 volatilize 0 volatilise 0 005 @ 00126264 v 0000 ;c 06084469 n 0000 + 02519813 a 0207 + 02519555 a 0101 + 02519813 a 0106 02 + 08 00 + 11 00 | make volatile; cause to pass off in a vapor -00552458 30 v 02 uniformize 0 uniformise 0 002 @ 00126264 v 0000 + 00744506 a 0102 03 + 08 00 + 10 00 + 11 00 | make uniform; "the data have been uniformized" -00552619 30 v 02 symmetrize 0 symmetrise 0 005 @ 00126264 v 0000 + 13898315 n 0201 + 05064827 n 0201 + 13898315 n 0101 + 05064827 n 0101 02 + 08 00 + 11 00 | make symmetric; "symmetrized waves" -00552815 30 v 01 decay 2 006 @ 00109660 v 0000 + 11444643 n 0101 ~ 00209837 v 0000 ~ 00210259 v 0000 ~ 00399553 v 0000 ~ 00553053 v 0000 01 + 01 00 | undergo decay or decomposition; "The body started to decay and needed to be cremated" -00553053 30 v 01 deliquesce 1 002 @ 00552815 v 0000 + 00492157 a 0101 01 + 02 00 | melt away in the process of decay; "The fungi eventually deliquesced" -00553208 30 v 06 immortalize 0 immortalise 0 eternize 0 eternise 0 eternalize 0 eternalise 0 001 @ 00126264 v 0000 02 + 08 00 + 10 00 | make famous forever; "This melody immortalized its composer" -00553407 30 v 02 commute 4 transpose 3 003 ;c 06000644 n 0000 @ 00109660 v 0000 + 00196485 n 0103 02 + 01 00 + 04 00 | exchange positions without a change in value; "These operators commute with each other" -00553616 30 v 02 syncretize 0 syncretise 0 002 @ 00394813 v 0000 + 13564215 n 0101 01 + 01 00 | become fused -00553727 30 v 01 denature 0 001 @ 00126264 v 0000 01 + 08 00 | make (alcohol) unfit for drinking without impairing usefulness for other purposes -00553874 30 v 01 denature 1 002 @ 00126264 v 0000 + 14710024 n 0101 01 + 08 00 | modify (as a native protein) especially by heat, acid, alkali, or ultraviolet radiation so that all of the original properties are removed or diminished -00554110 30 v 01 denature 2 002 @ 00126264 v 0000 + 14710024 n 0101 01 + 08 00 | add nonfissionable material to (fissionable material) so as to make unsuitable for use in an atomic bomb -00554298 30 v 01 disrupt 1 002 + 01923720 a 0101 + 00553173 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | throw into disorder; "This event disrupted the orderly process" -00554468 30 v 02 sanitize 0 sanitise 0 001 @ 00126264 v 0000 01 + 08 00 | make less offensive or more acceptable by removing objectionable features; "sanitize a document before releasing it to the press"; "sanitize history"; "sanitize the language in a book" -00554729 30 v 01 verbify 0 003 @ 00126264 v 0000 + 06318062 n 0101 + 06320569 n 0101 01 + 08 00 | make into a verb; "'mouse' has been verbified by computer users" -00554894 30 v 01 introject 0 004 @ 00109660 v 0000 + 05754197 n 0101 + 05754519 n 0101 + 05924165 n 0101 01 + 02 00 | incorporate (attitudes or ideas) into one's personality unconsciously -00555084 30 v 01 swell 2 001 @ 00156601 v 0000 02 + 01 00 + 04 00 | increase in size, magnitude, number, or intensity; "The music swelled to a crescendo" -00555240 30 v 03 transfer 0 transpose 5 transplant 0 001 @ 00555447 v 0000 02 + 08 00 + 09 00 | transfer from one place or period to another; "The ancient Greek story was transplanted into Modern America" -00555447 30 v 01 shift 3 004 @ 00126264 v 0000 + 00196084 n 0103 + 07359599 n 0103 ~ 00555240 v 0000 01 + 08 00 | move from one setting or context to another; "shift the emphasis"; "shift one's attention" -00555654 30 v 01 shift 4 002 @ 00109660 v 0000 + 07359599 n 0103 02 + 01 00 + 04 00 | change in quality; "His tone shifted" -00555780 30 v 01 brush 0 003 @ 00173338 v 0000 + 02908217 n 0101 $ 01243982 v 0000 01 + 08 00 | remove with or as if with a brush; "brush away the crumbs"; "brush the dust from the jacket"; "brush aside the objections" -00556001 30 v 01 sputter 0 001 @ 00126264 v 0000 01 + 11 00 | cause to undergo a process in which atoms are removed; "The solar wind protons must sputter away the surface atoms of the dust" -00556193 30 v 01 mix 2 006 @ 00193486 v 0000 + 00509377 a 0102 + 03775388 n 0101 + 07374756 n 0101 + 00380083 n 0101 + 00380083 n 0106 01 + 08 00 | combine (electronic signals); "mixing sounds" -00556389 30 v 01 transcribe 0 003 @ 00115157 v 0000 ;c 06079620 n 0000 + 13568238 n 0101 01 + 11 00 | convert the genetic information in (a strand of DNA) into a strand of RNA, especially messenger RNA -00556593 30 v 01 draw e 001 @ 00126264 v 0000 03 + 11 00 + 20 00 + 21 00 | bring or lead someone to a certain action or condition; "She was drawn to despair"; "The President refused to be drawn into delivering an ultimatum"; "The session was drawn to a close" -00556855 30 v 01 make f 001 @ 00126264 v 0000 01 + 21 00 | change from one form into another; "make water into wine"; "make lead into gold"; "make clay into bricks" -00557022 30 v 01 dope 0 002 @ 00126264 v 0000 ;c 06099269 n 0000 01 + 08 00 | add impurities to (a semiconductor) in order to produce or modify its properties; "The resistors have been doped" -00557216 30 v 01 swing 8 002 @ 00109660 v 0000 ~ 01876907 v 0000 01 + 01 00 | alternate dramatically between high and low values; "his mood swings"; "the market is swinging up and down" -00557404 30 v 01 take 9 001 @ 00149583 v 0000 01 + 07 00 | be seized or affected in a specified way; "take sick"; "be taken drunk" -00557537 30 v 01 raise e 001 @ 00514463 v 0000 02 + 08 00 + 11 00 | bring (a surface or a design) into relief and cause to project; "raised edges" -00557686 30 v 04 wash 5 wash_out 4 wash_off 0 wash_away 0 003 @ 00173338 v 0000 $ 01270199 v 0000 $ 01535742 v 0000 01 + 08 00 | remove by the application of water or other liquid and soap or some other cleaning agent; "he washed the dirt from his coat"; "The nurse washed away the blood"; "Can you wash away the spots on the windows?"; "he managed to wash out the stains" -00558061 30 v 02 lull 0 calm_down 3 002 @ 00461493 v 0000 + 15274441 n 0102 01 + 01 00 | become quiet or less intensive; "the fighting lulled for a moment" -00558219 30 v 01 prostrate 0 002 @ 00126264 v 0000 + 01167548 n 0101 02 + 08 00 + 09 00 | render helpless or defenseless; "They prostrated the enemy" -00558371 30 v 01 advance 9 003 @ 00205885 v 0000 + 00249501 n 0101 + 00282050 n 0105 02 + 08 00 + 11 00 | develop further; "We are advancing technology every day" -00558536 30 v 01 break 4 001 @ 00149583 v 0000 01 + 01 00 | come into being; "light broke over the horizon"; "Voices broke in the air" -00558673 30 v 01 settle 5 001 @ 00149583 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | become resolved, fixed, established, or quiet; "The roar settled to a thunder"; "The wind settled in the West"; "it is settling to rain"; "A cough settled in her chest"; "Her mood settled into lethargy" -00558963 30 v 01 excite 1 002 @ 00126264 v 0000 + 14036356 n 0101 02 + 08 00 + 11 00 | produce a magnetic field in; "excite the neurons" -00559102 30 v 03 excite 2 energize 0 energise 0 009 @ 00126264 v 0000 + 10056103 n 0302 + 10056103 n 0201 + 04633197 n 0201 + 05035961 n 0201 + 14050143 n 0201 + 11452218 n 0201 + 01046984 n 0201 + 02309971 a 0103 02 + 08 00 + 11 00 | raise to a higher energy level; "excite the atoms" -00559390 30 v 01 crush 8 001 @ 00334186 v 0000 02 + 01 00 + 04 00 | become injured, broken, or distorted by pressure; "The plastic bottle crushed against the wall" -00559556 30 v 01 shake 1 001 @ 00126264 v 0000 02 + 09 00 + 10 00 | bring to a specified condition by or as if by shaking; "He was shaken from his dreams"; "shake the salt out of the salt shaker" -00559754 30 v 01 outmode 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make unfashionable, outdated, or obsolete; "Modern ways of cooking have outmoded the hearth" -00559919 30 v 02 spice 0 spice_up 0 003 @ 00126264 v 0000 + 04992570 n 0103 ~ 00560122 v 0000 02 + 08 00 + 11 00 | make more interesting or flavorful; "Spice up the evening by inviting a belly dancer" -00560122 30 v 01 salt 1 001 @ 00559919 v 0000 01 + 08 00 | add zest or liveliness to; "She salts her lectures with jokes" -00560247 30 v 03 fail 7 run_out 2 give_out 3 000 01 + 01 00 | prove insufficient; "The water supply for the town failed after a long drought" -00560391 30 v 02 leap 0 jump 5 003 @ 00550117 v 0000 + 06618427 n 0201 + 07358985 n 0101 02 + 04 00 + 22 00 | pass abruptly from one state or topic to another; "leap into fame"; "jump to a conclusion"; "jump from one thing to another" -00560628 30 v 01 back 3 002 @ 00380159 v 0000 ! 00560764 v 0101 01 + 01 00 | shift to a counterclockwise direction; "the wind backed" -00560764 30 v 01 veer 3 002 @ 00380159 v 0000 ! 00560628 v 0101 01 + 01 00 | shift to a clockwise direction; "the wind veered" -00560893 30 v 01 shorten 9 004 @ 00126264 v 0000 + 09433952 n 0101 + 00358931 n 0101 ~ 00561090 v 0000 01 + 08 00 | make short or shorter; "shorten the skirt"; "shorten the rope by a few inches" -00561090 30 v 01 cut e 004 @ 00560893 v 0000 ~ 01248782 v 0000 ~ 01299127 v 0000 ~ 01553761 v 0000 01 + 08 00 | shorten as if by severing the edges or ends of; "cut my hair" -00561266 30 v 01 fall e 002 @ 00109660 v 0000 $ 00561375 v 0000 01 + 01 00 | be cast down; "his eyes fell" -00561375 30 v 01 fall b 002 $ 00561266 v 0000 @ 00109660 v 0000 01 + 01 00 | assume a disappointed or sad expression; "Her face fell when she heard that she would be laid off"; "his crest fell" -00561571 30 v 01 run_out c 002 @ 02609764 v 0000 $ 00561714 v 0000 01 + 01 00 | become used up; be exhausted; "Our supplies finally ran out" -00561714 30 v 01 run_out 3 002 $ 00561571 v 0000 @ 01157517 v 0000 01 + 22 00 | exhaust the supply of; "We ran out of time just as the discussion was getting interesting" -00561887 30 v 01 think 0 001 @ 00126264 v 0000 01 + 09 00 | bring into a given condition by mental preoccupation; "She thought herself into a state of panic over the final exam" -00562067 30 v 01 make e 001 @ 01627947 v 0000 01 + 10 00 | favor the development of; "Practice makes the winner" -00562182 30 v 01 make a 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | cause to be enjoyable or pleasurable; "make my day" -00562303 30 v 01 deflate a 003 @ 00429060 v 0000 + 13459821 n 0101 ! 00562523 v 0101 02 + 08 00 + 10 00 | reduce or cut back the amount or availability of, creating a decline in value or prices; "deflate the currency" -00562523 30 v 01 inflate a 003 @ 00429060 v 0000 + 13498828 n 0101 ! 00562303 v 0101 02 + 08 00 + 10 00 | increase the amount or availability of, creating a rise in value; "inflate the currency" -00562720 30 v 01 deflate b 003 @ 00126264 v 0000 + 13459821 n 0101 ! 00562882 v 0101 01 + 11 00 | produce deflation in; "The new measures deflated the economy" -00562882 30 v 01 inflate b 004 @ 00126264 v 0000 + 13498828 n 0101 ! 00562720 v 0101 ~ 00563100 v 0000 01 + 11 00 | cause prices to rise by increasing the available currency or credit; "The war inflated the economy" -00563100 30 v 01 reflate 4 004 @ 00562882 v 0000 @ 00126264 v 0000 + 13548350 n 0101 $ 00563360 v 0000 02 + 08 00 + 11 00 | economics: raise demand, expand the money supply, or raise prices, after a period of deflation; "These measures reflated the economy" -00563360 30 v 01 reflate 5 003 $ 00563100 v 0000 @ 00109660 v 0000 + 13548350 n 0101 01 + 01 00 | economics: experience reflation; "The economy reflated after the Fed took extreme measures" -00563552 30 v 03 format 9 initialize a initialise a 005 @ 02467662 v 0000 + 06637350 n 0303 + 06637350 n 0202 + 06636806 n 0101 + 06636806 n 0102 01 + 01 00 | divide (a disk) into marked sectors so that it may store data; "Please format this disk before entering data!" -00563824 30 v 04 digitize 0 digitise 0 digitalize 0 digitalise 0 008 @ 00126264 v 0000 + 13741022 n 0301 + 05803212 n 0202 + 03197446 n 0202 + 13741022 n 0201 + 05803212 n 0101 + 03197446 n 0101 + 13741022 n 0101 02 + 08 00 + 11 00 | put into digital form, as for use in a computer; "he bought a device to digitize the data" -00564151 30 v 02 hydrolyze 0 hydrolyse 0 002 @ 00109660 v 0000 + 02744876 a 0101 01 + 01 00 | undergo hydrolysis; decompose by reacting with water -00564300 30 v 02 hydrolize 1 hydrolise 1 005 > 00564151 v 0000 @ 00137313 v 0000 + 13494919 n 0201 + 13494919 n 0101 ~ 00564514 v 0000 02 + 08 00 + 11 00 | make a compound react with water and undergo hydrolysis -00564514 30 v 01 saccharify 0 001 @ 00564300 v 0000 02 + 08 00 + 11 00 | convert into a simple soluble fermentable sugar by hydrolyzing a sugar derivative or complex carbohydrate -00564695 30 v 02 fold a fold_up a 003 @ 00109660 v 0000 + 00406612 n 0101 ~ 00564857 v 0000 01 + 01 00 | become folded or folded up; "The bed folds in a jiffy" -00564857 30 v 05 rumple a crumple a wrinkle a crease a crinkle a 004 @ 00564695 v 0000 + 13905792 n 0504 + 13905792 n 0403 + 13905792 n 0301 01 + 01 00 | become wrinkled or crumpled or creased; "This fabric won't wrinkle" -00565081 30 v 02 gelatinize 1 gelatinise 1 003 @ 00126264 v 0000 + 14730553 n 0101 $ 00565279 v 0000 02 + 08 00 + 11 00 | convert into gelatinous form or jelly; "hot water will gelatinize starch" -00565279 30 v 02 gelatinize 0 gelatinise 0 003 $ 00565081 v 0000 @ 00109660 v 0000 + 14730553 n 0101 01 + 01 00 | become gelatinous or change into a jelly; "the starch gelatinized when it was heated" -00565481 30 v 01 gelatinize 2 002 @ 01264283 v 0000 + 14730553 n 0101 02 + 08 00 + 11 00 | coat with gelatin -00565592 30 v 07 felt 0 felt_up 0 mat_up 0 matt-up 0 matte_up 0 matte 0 mat 0 004 @ 00109660 v 0000 + 04956110 n 0704 + 03730893 n 0701 + 03326795 n 0101 01 + 01 00 | change texture so as to become matted and felt-like; "The fabric felted up after several washes" -00565858 30 v 01 recombine 1 003 $ 00566024 v 0000 @ 00126264 v 0000 + 07374152 n 0101 01 + 08 00 | cause genetic recombination; "should scientists recombine DNA?" -00566024 30 v 01 recombine 0 003 @ 00109660 v 0000 + 07374152 n 0101 $ 00565858 v 0000 01 + 01 00 | undergo genetic recombination; "The DNA can recombine" -00566181 30 v 01 float 3 001 @ 00381013 v 0000 01 + 08 00 | convert from a fixed point notation to a floating point notation; "float data" -00566322 30 v 05 feminize 0 feminise 0 effeminize 0 effeminise 0 womanize 0 002 @ 00126264 v 0000 + 10787470 n 0501 02 + 08 00 + 09 00 | to give a (more) feminine, effeminate, or womanly quality or appearance to; "This hairdo feminizes the man" -00566569 30 v 04 masculinize 0 masculinise 0 virilize 0 virilise 0 004 @ 00126264 v 0000 + 13511755 n 0303 + 13511755 n 0101 $ 00566895 v 0000 02 + 09 00 + 10 00 | produce virilism in or cause to assume masculine characteristics, as through a hormonal imbalance or hormone therapy; "the drugs masculinized the teenage girl" -00566895 30 v 01 masculinize 1 002 $ 00566569 v 0000 @ 00126264 v 0000 02 + 09 00 + 10 00 | give a masculine appearance or character to; "Fashion designers have masculinized women's looks in the 1990s" -00567099 30 v 02 feminize 1 feminise 1 003 @ 00109660 v 0000 + 13479605 n 0202 + 13479605 n 0101 01 + 02 00 | assume (more) feminine characteristics; "feminized language"; "feminized frogs" -00567291 30 v 01 bind 9 005 @ 01356750 v 0000 ;c 06084469 n 0000 + 14704465 n 0101 + 04689198 n 0101 ~ 00567484 v 0000 01 + 11 00 | form a chemical bond with; "The hydrogen binds the oxygen" -00567484 30 v 01 ligate 0 002 @ 00567291 v 0000 ;c 06084469 n 0000 01 + 01 00 | bind chemically; "The enzyme ligated" -00567604 30 v 02 disharmonize 0 dissonate 0 004 @ 00126264 v 0000 + 01164561 a 0202 + 05720248 n 0202 + 04984514 n 0201 01 + 08 00 | cause to sound harsh and unpleasant -00567775 30 v 01 obsolesce 0 003 @ 00109660 v 0000 + 00669367 a 0101 + 13523983 n 0101 01 + 01 00 | become obsolete, fall into disuse; "This word has not obsolesced, although it is rarely used" -00567971 30 v 02 sexualize 0 sexualise 0 001 @ 00126264 v 0000 03 + 08 00 + 09 00 + 10 00 | make sexual, endow with sex, attribute sex to; "The god was sexualized and married to another god"; "Some languages sexualize all nouns and do not have a neuter gender" -00568234 30 v 02 schematize 1 schematise 1 005 @ 00126264 v 0000 + 00192457 n 0202 + 00192457 n 0101 + 05927813 n 0102 + 05927813 n 0101 02 + 08 00 + 11 00 | give conventional form to; "some art forms schematise designs into geometrical patterns" -00568483 30 v 01 patent 0 002 @ 00126264 v 0000 + 04706290 n 0104 02 + 08 00 + 11 00 | make open to sight or notice; "His behavior has patented an embarrassing fact about him" -00568661 30 v 02 constitutionalize 0 constitutionalise 0 001 @ 00126264 v 0000 01 + 08 00 | incorporate into a constitution, make constitutional; "A woman's right to an abortion was constitutionalized in the 1970's" -00568879 30 v 02 rationalize 1 rationalise 1 004 @ 00126264 v 0000 ;c 06000644 n 0000 + 01212225 n 0202 + 01212225 n 0101 01 + 08 00 | remove irrational quantities from; "This function can be rationalized" -00569087 30 v 02 stalinize 0 stalinise 0 004 @ 00382635 v 0000 + 13560911 n 0202 + 13560911 n 0101 ! 00569318 v 0101 01 + 08 00 | transform in accordance with Stalin's policies; "Russia was slowly stalinized after Lenin's death" -00569318 30 v 02 destalinize 0 destalinise 0 004 @ 00382635 v 0000 + 13463656 n 0203 + 13463656 n 0101 ! 00569087 v 0101 01 + 08 00 | counteract the effects and policies of Stalinism; "Russia was slowly destalinized in the late 1950's" -00569556 30 v 02 plasticize 0 plasticise 0 003 @ 00126264 v 0000 + 14593162 n 0202 + 14593162 n 0101 01 + 08 00 | make plastic, as by the addition of a plasticizer; "plasticized PVC" -00569741 30 v 02 plasticize 1 plasticise 1 001 @ 00109660 v 0000 01 + 01 00 | become plastic, as by having a plasticizer added -00569870 30 v 01 scrap 0 001 @ 00115157 v 0000 01 + 08 00 | make into scrap or refuse; "scrap the old airplane and sell the parts" -00570003 30 v 01 desorb 1 004 @ 00173338 v 0000 ;c 06084469 n 0000 + 13463490 n 0101 $ 00570205 v 0000 02 + 08 00 + 09 00 | remove from a surface on which it is adsorbed; "the substance was desorbed" -00570205 30 v 01 desorb 0 004 $ 00570003 v 0000 @ 00426958 v 0000 ;c 06084469 n 0000 + 13463490 n 0101 01 + 01 00 | go away from the surface to which (a substance) is adsorbed -00570383 30 v 01 rarefy 3 002 @ 00126264 v 0000 + 07419408 n 0101 01 + 11 00 | lessen the density or solidity of; "The bones are rarefied" -00570524 30 v 01 deepen 3 002 @ 00154778 v 0000 + 13458968 n 0101 02 + 08 00 + 11 00 | make deeper; "They deepened the lake so that bigger pleasure boats could use it" -00570694 30 v 01 recede 0 004 @ 00109660 v 0000 + 00057486 n 0102 + 07336214 n 0101 ~ 00570907 v 0000 01 + 01 00 | become faint or more distant; "the unhappy memories of her childhood receded as she grew older" -00570907 30 v 01 ebb 1 003 @ 00570694 v 0000 + 13470491 n 0101 + 13470491 n 0102 01 + 01 00 | fall away or decline; "The patient's strength ebbed away" -00571061 30 v 02 remove 2 take_away 2 001 ~ 00571273 v 0000 02 + 08 00 + 11 00 | get rid of something abstract; "The death of her mother removed the last obstacle to their marriage"; "God takes away your sins" -00571273 30 v 01 wash_away 1 001 @ 00571061 v 0000 02 + 08 00 + 11 00 | eliminate; "wash away all the differences" -00571390 30 v 01 drift 0 002 @ 00158804 v 0000 + 09270233 n 0101 01 + 01 00 | be piled up in banks or heaps by the force of wind or a current; "snow drifting several feet high"; "sand drifting like snow" -00571596 30 v 01 pull b 002 @ 00173338 v 0000 $ 01995211 v 0000 01 + 08 00 | take away; "pull the old soup cans from the supermarket shelf" -00571738 30 v 02 paganize 0 paganise 0 002 @ 00126264 v 0000 + 10166394 n 0102 02 + 08 00 + 11 00 | make pagan in character; "The Church paganized Christianity" -00571901 30 v 01 defervesce 0 002 @ 00109660 v 0000 + 07368482 n 0101 01 + 02 00 | experience an abatement of a fever -00572021 30 v 01 incandesce 0 003 @ 00109660 v 0000 + 11467786 n 0101 + 05018674 n 0101 01 + 01 00 | become incandescent or glow with heat; "an incandescing body" -00572186 30 v 01 incandesce 1 003 @ 00126264 v 0000 + 11467786 n 0101 + 05018674 n 0101 02 + 08 00 + 11 00 | cause to become incandescent or glow; "the lamp was incandesced" -00572362 30 v 01 calcify 4 002 @ 00109660 v 0000 + 14011408 n 0101 01 + 02 00 | become inflexible and unchanging; "Old folks can calcify" -00572502 30 v 01 drift a 003 @ 00109660 v 0000 + 06197664 n 0101 $ 02662821 v 0000 01 + 01 00 | be subject to fluctuation; "The stock market drifted upward" -00572661 30 v 01 leave_off 0 001 @ 02680814 v 0000 01 + 08 00 | stop using; "leave off your jacket--no need to wear it here" -00572788 30 v 01 play_out 0 002 $ 02280869 v 0000 @ 00109660 v 0000 01 + 01 00 | become spent or exhausted; "The champion's strength played out fast" -00572940 30 v 01 turn_down 3 001 @ 00203866 v 0000 01 + 01 00 | take a downward direction; "The economy finally turned down after a long boom" -00573085 30 v 01 damp 4 002 @ 02510337 v 0000 + 01145905 n 0101 02 + 08 00 + 10 00 | restrain or discourage; "the sudden bad news damped the joyous atmosphere" -00573247 30 v 02 deaminate 0 deaminize 0 003 @ 00126264 v 0000 + 13456071 n 0202 + 13456071 n 0101 01 + 08 00 | remove the amino radical (usually by hydrolysis) from an amino compound; to perform deamination -00573457 30 v 01 angulate 0 002 @ 00126264 v 0000 + 13887509 n 0101 02 + 01 00 + 08 00 | make or become angular -00573571 30 v 01 circularize 0 002 @ 00126264 v 0000 + 02040652 a 0102 01 + 08 00 | make circular -00573671 30 v 02 sensitize 1 sensitise 1 003 @ 00126264 v 0000 ;c 00903559 n 0000 + 14724025 n 0202 01 + 08 00 | make (a material) sensitive to light, often of a particular colour, by coating it with a photographic emulsion; "sensitize the photographic film" -00573932 30 v 02 sensitize 2 sensitise 2 006 @ 00126264 v 0000 + 14724025 n 0202 + 14531983 n 0202 + 00829170 n 0204 + 14724025 n 0101 + 00829170 n 0103 02 + 09 00 + 10 00 | make sensitive to a drug or allergen; "Long-term exposure to this medicine may sensitize you to the allergen" -00574218 30 v 01 conjugate 4 003 @ 00109660 v 0000 ;c 06037666 n 0000 + 00847340 n 0104 01 + 01 00 | undergo conjugation -00574341 30 v 02 depolarize 0 depolarise 0 004 @ 00126264 v 0000 ;c 06090869 n 0000 + 11492240 n 0202 + 11492240 n 0101 02 + 08 00 + 11 00 | eliminate the polarization of -00574514 30 v 02 demineralize 0 demineralise 0 005 @ 00173338 v 0000 ;c 06084469 n 0000 + 13461525 n 0202 + 14210716 n 0202 + 13461525 n 0101 02 + 08 00 + 11 00 | remove the minerals or salts from; "demineralize water" -00574735 30 v 01 intensify a 004 @ 00126264 v 0000 ;c 00620554 n 0000 + 04975340 n 0103 + 00374677 n 0101 02 + 08 00 + 11 00 | make the chemically affected part of (a negative) denser or more opaque in order produce a stronger contrast between light and dark -00574996 30 v 02 isomerize 0 isomerise 0 005 @ 00109660 v 0000 ;c 06084469 n 0000 + 07416107 n 0202 + 07416107 n 0101 $ 00575169 v 0000 01 + 01 00 | change into an isomer -00575169 30 v 02 isomerize 1 isomerise 1 005 $ 00574996 v 0000 @ 00126264 v 0000 ;c 06084469 n 0000 + 07416107 n 0202 + 07416107 n 0101 02 + 08 00 + 11 00 | cause to change into an isomer -00575359 30 v 01 legitimate 0 002 @ 00126264 v 0000 + 01195584 n 0101 01 + 09 00 | make (an illegitimate child) legitimate; declare the legitimacy of (someone); "They legitimized their natural child" -00575561 30 v 01 eliminate 6 003 @ 00173338 v 0000 ;c 06000644 n 0000 + 00395503 n 0101 01 + 08 00 | remove (an unknown variable) from two or more equations -00575720 30 v 02 evaporate 1 vaporise 4 007 @ 00109660 v 0000 + 02924428 a 0101 + 15055633 n 0101 + 13572436 n 0103 + 13572436 n 0105 ~ 00367416 v 0000 $ 00575970 v 0000 01 + 01 00 | change into a vapor; "The water evaporated in front of our eyes" -00575970 30 v 02 evaporate 2 vaporise 5 007 $ 00575720 v 0000 @ 00126264 v 0000 + 02924428 a 0101 + 15055633 n 0101 + 13572436 n 0103 + 13572436 n 0105 ~ 00367241 v 0000 02 + 08 00 + 11 00 | cause to change into a vapor; "The chemist evaporated the water" -00576228 30 v 03 expectorate 3 clear_out 3 drive_out 3 001 @ 00173338 v 0000 01 + 11 00 | clear out the chest and lungs; "This drug expectorates quickly" -00576384 30 v 01 indurate 2 001 @ 00109660 v 0000 01 + 01 00 | become fixed or established; "indurated customs" -00576498 30 v 01 gradate 0 001 @ 00109660 v 0000 01 + 01 00 | pass imperceptibly from one degree, shade, or tone into another; "The paint on these walls gradates but you don't see it" -00576684 30 v 02 keratinize 0 keratinise 0 004 @ 00109660 v 0000 + 13505249 n 0202 + 13505249 n 0101 $ 00576860 v 0000 01 + 01 00 | become horny and impregnated with keratin -00576860 30 v 02 keratinize 1 keratinise 1 002 $ 00576684 v 0000 @ 00115157 v 0000 01 + 11 00 | convert into keratin -00576979 30 v 02 industrialize 1 industrialise 1 001 @ 00126264 v 0000 01 + 08 00 | organize (the production of something) into an industry; "The Chinese industrialized textile production" -00577170 30 v 01 beneficiate 0 003 @ 00515154 v 0000 ;c 06125698 n 0000 + 13516312 n 0106 01 + 08 00 | process (ores or other raw materials), as by reduction -00577330 30 v 01 novate 0 003 @ 00162688 v 0000 ;c 06534659 n 0000 + 00196848 n 0101 01 + 08 00 | replace with something new, especially an old obligation by a new one -00577500 30 v 01 opacify 0 003 @ 00109660 v 0000 + 13524686 n 0101 $ 00577689 v 0000 01 + 01 00 | become opaque; "the tissue in the eye's cornea may opacify and the patient may go blind" -00577689 30 v 01 opacify 1 002 $ 00577500 v 0000 @ 00126264 v 0000 02 + 08 00 + 11 00 | make opaque; "The glass was opacified more greater privacy" -00577839 30 v 01 opsonize 0 003 @ 00126264 v 0000 + 13525912 n 0102 + 13525912 n 0101 01 + 11 00 | make (cells) more susceptible to the action of phagocytes -00577998 30 v 01 mature 3 001 @ 00109660 v 0000 01 + 01 00 | become due for repayment; "These bonds mature in 2005" -00578116 30 v 02 militarize 0 militarise 0 003 @ 00126264 v 0000 + 01156438 n 0204 + 01156438 n 0103 02 + 08 00 + 11 00 | adopt for military use; "militarize the Civil Service" -00578295 30 v 02 nationalize 1 nationalise 1 003 @ 00126264 v 0000 + 01152300 n 0202 + 01152300 n 0101 02 + 08 00 + 11 00 | make national in character or scope; "His heroic deeds were nationalized by the press" -00578508 30 v 02 popularize 0 popularise 0 004 $ 00970215 v 0000 @ 00298244 v 0000 + 07174260 n 0202 + 07174260 n 0101 01 + 08 00 | make understandable to the general public; "Carl Sagan popularized cosmology in his books" -00578733 30 v 01 recommend 0 001 @ 00126264 v 0000 01 + 11 00 | make attractive or acceptable; "Honesty recommends any person" -00578862 30 v 01 rejuvenate 3 001 @ 00109660 v 0000 01 + 01 00 | develop youthful topographical features; "the land rejuvenated" -00578993 30 v 01 ruin 0 003 @ 00208836 v 0000 + 04118635 n 0101 + 13466312 n 0102 01 + 01 00 | fall into ruin -00579105 30 v 02 sentimentalize 3 sentimentalise 3 001 @ 00126264 v 0000 02 + 10 00 + 11 00 | make (someone or something) sentimental or imbue with sentimental qualities; "Too much poetry sentimentalizes the mind"; "These experiences have sentimentalized her" -00579367 30 v 01 sequester 6 003 @ 00109660 v 0000 ;c 06084469 n 0000 + 13554586 n 0101 01 + 01 00 | undergo sequestration by forming a stable compound with an ion; "The cations were sequestered" -00579565 30 v 02 solemnize 0 solemnise 0 001 @ 00126264 v 0000 02 + 10 00 + 11 00 | make solemn and grave; "This ceremony solemnized our hearts" -00579712 30 v 02 subordinate 3 subdue 3 003 @ 00531489 v 0000 + 10669991 n 0101 + 01128655 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | make subordinate, dependent, or subservient; "Our wishes have to be subordinated to that of our ruler" -00579952 30 v 02 territorialize 1 territorialise 1 003 @ 00126264 v 0000 + 01016973 n 0202 + 01016973 n 0101 01 + 08 00 | place on a territorial basis; "The railways were territorialized" -00580142 30 v 01 transaminate 0 004 @ 00109660 v 0000 ;c 06084469 n 0000 + 13567960 n 0101 $ 00580345 v 0000 01 + 01 00 | undergo transfer from one compound to another; "amino groups can transaminate" -00580345 30 v 01 transaminate 1 002 $ 00580142 v 0000 @ 00126264 v 0000 02 + 08 00 + 11 00 | change (an amino group) by transferring it from one compound to another -00580512 30 v 03 transfigure 2 glorify 3 spiritualize 3 004 @ 00126264 v 0000 + 15299367 n 0101 + 07358377 n 0101 + 00399717 n 0101 01 + 09 00 | elevate or idealize, in allusion to Christ's transfiguration -00580720 30 v 01 unsanctify 0 002 @ 00126264 v 0000 + 04856014 n 0102 02 + 08 00 + 11 00 | remove the sanctification from or make unsanctified -00580865 30 v 01 vesiculate 0 003 @ 00126264 v 0000 + 13573181 n 0101 $ 00581038 v 0000 01 + 11 00 | cause to become vesicular or full of air cells; "vesiculate an organ" -00581038 30 v 01 vesiculate 1 003 $ 00580865 v 0000 @ 00109660 v 0000 + 13573181 n 0101 01 + 01 00 | become vesicular or full of air cells; "The organs vesiculated" -00581205 30 v 02 visualize 0 visualise 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make visible; "With this machine, ultrasound can be visualized" -00581355 30 v 01 undulate 0 001 @ 00109660 v 0000 01 + 01 00 | increase and decrease in volume or pitch, as if in waves; "The singer's voice undulated" -00581509 30 v 01 variegate 1 002 @ 00126264 v 0000 + 04735828 n 0101 02 + 08 00 + 11 00 | change the appearance of, especially by marking with different colors -00581671 30 v 02 vascularize 1 vascularise 1 004 $ 00122097 v 0000 @ 00109660 v 0000 + 02873811 a 0101 + 13572860 n 0101 01 + 01 00 | become vascular and have vessels that circulate fluids; "The egg yolk vascularized" -00581891 30 v 01 ventilate 1 004 @ 00126264 v 0000 + 02823423 a 0101 + 04526964 n 0101 + 00266645 n 0101 01 + 08 00 | furnish with an opening to allow air to circulate or gas to escape; "The architect did not think about ventilating the storage space" -00582145 30 v 01 vivify 1 002 @ 00126264 v 0000 + 04631700 n 0105 02 + 08 00 + 11 00 | make more striking or animated; "his remarks always vivify an otherwise dull story" -00582318 30 v 02 vulgarise 1 vulgarize 1 004 @ 00126264 v 0000 + 01950198 a 0205 + 01268020 n 0201 + 01268020 n 0102 02 + 08 00 + 11 00 | debase and make vulgar; "The Press has vulgarized Love and Marriage" -00582527 30 v 01 scorch 5 002 @ 00378664 v 0000 + 14289942 n 0101 02 + 08 00 + 11 00 | destroy completely by or as if by fire; "The wildfire scorched the forest and several homes"; "the invaders scorched the land" -00582743 30 v 03 scorch 7 sear 7 singe 7 002 @ 00377002 v 0000 + 14289942 n 0101 01 + 01 00 | become superficially burned; "my eyebrows singed when I bent over the flames" -00582917 30 v 01 supple 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make pliant and flexible; "These boots are not yet suppled by frequent use" -00583064 30 v 01 crash b 002 @ 00109660 v 0000 + 07477945 n 0101 01 + 01 00 | undergo a sudden and severe downturn; "the economy crashed"; "will the stock market crash again?" -00583242 30 v 02 professionalize 0 professionalise 0 003 @ 00126264 v 0000 + 13541491 n 0101 $ 00583523 v 0000 01 + 08 00 | make professional or give a professional character to; "Philosophy has not always been professionalized and used to be a subject pursued only by amateurs" -00583523 30 v 02 professionalize 1 professionalise 1 003 $ 00583242 v 0000 @ 00109660 v 0000 + 13541491 n 0101 01 + 01 00 | become professional or proceed in a professional manner or in an activity for pay or as a means of livelihood -00583759 30 v 01 smut 2 002 @ 00126264 v 0000 + 00747215 n 0105 02 + 08 00 + 11 00 | make obscene; "This line in the play smuts the entire act" -00583905 30 v 01 still 5 001 @ 00126264 v 0000 02 + 08 00 + 09 00 | make motionless -00583991 30 v 01 upgrade 4 003 @ 00205885 v 0000 + 05795654 n 0101 $ 00584220 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | give better travel conditions to; "The airline upgraded me when I arrived late and Coach Class was full" -00584220 30 v 01 upgrade 5 003 $ 00583991 v 0000 @ 00205046 v 0000 + 05795654 n 0101 01 + 02 00 | get better travel conditions; "I upgraded to First Class when Coach Class was overbooked" -00584410 30 v 01 shift c 002 @ 00109660 v 0000 ;c 06177033 n 0000 02 + 01 00 + 04 00 | change phonetically as part of a systematic historical change; "Grimm showed how the consonants shifted" -00584604 30 v 01 roll_in 0 001 @ 00422090 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | pour or flow in a steady stream; "mist rolled in from the sea"; "tourists rolled in from the neighboring countryside" -00584810 30 v 02 flip d flip_out 0 001 @ 00109660 v 0000 01 + 02 00 | go mad, go crazy; "He flipped when he heard that he was being laid off" -00584954 30 v 01 weaponize 0 002 @ 00126264 v 0000 + 04565375 n 0101 02 + 08 00 + 11 00 | make into or use as a weapon or a potential weapon; "Will modern physicists weaponize String Theory?" -00585148 30 v 01 deflagrate 0 002 @ 00377002 v 0000 + 13450417 n 0101 01 + 01 00 | burn with great heat and intense light; "the powder deflagrated" -00585298 30 v 01 diazotize 0 001 @ 00115157 v 0000 01 + 08 00 | convert (an amine) into a diazo compound -00585405 30 v 01 hay 0 001 @ 00115157 v 0000 01 + 08 00 | convert (plant material) into hay -00585499 30 v 01 lignify 0 001 @ 00115157 v 0000 01 + 08 00 | convert into wood or cause to become woody -00585606 30 v 01 mineralize 0 001 @ 00115157 v 0000 01 + 08 00 | transform (a metal) into an ore -00585705 30 v 01 mineralize 1 001 @ 00115157 v 0000 01 + 08 00 | convert into a mineral substance -00585805 30 v 02 ozonize 0 ozonise 0 001 @ 00115157 v 0000 01 + 08 00 | convert (oxygen) into ozone -00585907 30 v 01 slag 0 001 @ 00115157 v 0000 01 + 08 00 | convert into slag -00585986 30 v 01 sulfate 0 001 @ 00115157 v 0000 01 + 08 00 | convert into a sulfate -00586073 30 v 01 cutinize 0 001 @ 00115157 v 0000 01 + 08 00 | convert into cutin -00586157 30 v 01 duplex 0 001 @ 00115157 v 0000 01 + 08 00 | change into a duplex -00586241 30 v 02 eroticize 0 sex_up 0 001 @ 00126264 v 0000 01 + 08 00 | give erotic character to or make more interesting; "eroticize the ads" -00586387 30 v 01 gum 0 001 @ 00109660 v 0000 01 + 01 00 | become sticky -00586461 30 v 01 piggyback 0 001 @ 00126264 v 0000 01 + 08 00 | bring into alignment with; "an amendment to piggyback the current law" -00586598 30 v 01 repress 0 001 @ 00109660 v 0000 01 + 08 00 | block the action of -00586682 30 v 01 downsize 0 001 @ 00429060 v 0000 01 + 08 00 | reduce in size or number; "the company downsized its research staff" -00586816 30 v 01 downsize 1 001 @ 00241038 v 0000 01 + 08 00 | make in a smaller size; "the car makers downsized the SUVs when fuel became very expensive" -00586973 30 v 01 subtract 0 001 @ 00429060 v 0000 01 + 08 00 | take off or away; "this prefix was subtracted when the word was borrowed from French" -00587124 30 v 01 shear 2 002 @ 00109660 v 0000 ;c 06090869 n 0000 01 + 01 00 | become deformed by forces tending to produce a shearing strain -00587268 30 v 01 port 0 001 @ 00126264 v 0000 01 + 08 00 | modify (software) for use on a different machine or platform -00587390 30 v 01 obscure 3 002 @ 00587522 v 0000 ;c 06172789 n 0000 01 + 08 00 | reduce a vowel to a neutral one, such as a schwa -00587522 30 v 01 reduce c 003 @ 00514730 v 0000 ;c 06172789 n 0000 ~ 00587390 v 0000 01 + 08 00 | destress and thus weaken a sound when pronouncing it -00587675 30 v 01 carve_out 0 001 @ 00173338 v 0000 01 + 08 00 | remove from a larger whole; "the new start-up company carved out a large chunk of the market within a year" -00587849 30 v 01 lifehack 0 001 @ 00126264 v 0000 01 + 02 00 | make one's day-to-day activities more efficient -00587962 30 v 01 cloud 4 001 @ 00126264 v 0000 01 + 11 00 | make less clear; "the stroke clouded memories of her youth" -00588084 30 v 01 damage 1 001 @ 00109660 v 0000 01 + 01 00 | suffer or be susceptible to damage; "These fine china cups damage easily" -00588221 31 v 08 grok 0 get_the_picture 0 comprehend 0 savvy 0 dig 0 grasp 0 compass 0 apprehend 0 015 @ 00588888 v 0000 + 00533452 a 0801 + 01745027 a 0801 + 05805475 n 0802 + 10240082 n 0802 + 05806623 n 0602 + 05806855 n 0601 + 05805475 n 0404 + 00532892 a 0301 + 00532892 a 0302 + 05805902 n 0301 ~ 00590241 v 0000 ~ 00590366 v 0000 ~ 00590761 v 0000 ~ 00590924 v 0000 03 + 08 00 + 26 00 + 02 02 | get the meaning of something; "Do you comprehend the meaning of this letter?" -00588703 31 v 01 lie_low 0 001 @ 02145814 v 0000 01 + 02 00 | to try to avoid detection especially by police; "After we knock off that liquor store we'll have to lay low for a while" -00588888 31 v 01 understand 0 013 + 00533452 a 0105 + 05805475 n 0101 ~ 00588221 v 0000 ~ 00589309 v 0000 ~ 00589738 v 0000 ~ 00589904 v 0000 ~ 00590642 v 0000 ~ 00593852 v 0000 ~ 00620239 v 0000 ~ 00623151 v 0000 ~ 00626300 v 0000 ~ 00634906 v 0000 ~ 00728954 v 0000 04 + 02 00 + 08 00 + 09 00 + 26 00 | know and comprehend the nature or meaning of; "She did not understand her husband"; "I understand what she means" -00589309 31 v 01 sense 2 003 @ 00588888 v 0000 + 02105990 a 0101 + 05614657 n 0105 02 + 08 00 + 26 00 | comprehend; "I sensed the real meaning of his letter" -00589469 31 v 03 smell 0 smell_out 0 sense 3 004 @ 00591519 v 0000 + 00191265 a 0301 + 02105990 a 0301 + 05677504 n 0301 02 + 08 00 + 26 00 | become aware of not through the senses but instinctively; "I sense his hostility"; "i smell trouble"; "smell out corruption" -00589738 31 v 01 follow e 001 @ 00588888 v 0000 03 + 02 00 + 08 00 + 09 00 | grasp the meaning; "Can you follow her argument?"; "When he lectures, I cannot follow" -00589904 31 v 02 catch 3 get 9 003 @ 00588888 v 0000 $ 01738107 v 0000 $ 02359340 v 0000 01 + 01 00 | grasp with the mind or develop an understanding of; "did you catch that allusion?"; "We caught something of his theory in the lecture"; "don't catch your meaning"; "did you get it?"; "She didn't get the joke"; "I just don't get him" -00590241 31 v 01 figure 2 002 @ 00588221 v 0000 ;u 07075172 n 0000 02 + 08 00 + 09 00 | understand; "He didn't figure her" -00590366 31 v 08 catch_on 0 get_wise 0 get_onto 0 tumble 0 latch_on 0 cotton_on 0 twig 0 get_it 0 001 @ 00588221 v 0000 03 + 02 00 + 22 00 + 08 03 | understand, usually after some initial difficulty; "She didn't know what her classmates were plotting but finally caught on" -00590642 31 v 01 touch 0 001 @ 00588888 v 0000 01 + 08 00 | comprehend; "He could not touch the meaning of the poem" -00590761 31 v 01 intuit 0 004 @ 00588221 v 0000 + 01431471 a 0101 + 05919034 n 0101 + 05707495 n 0101 02 + 08 00 + 26 00 | know or grasp by intuition or feeling -00590924 31 v 01 digest 0 004 @ 00588221 v 0000 + 05753379 n 0101 + 06593099 n 0102 + 06593542 n 0101 01 + 08 00 | arrange and integrate in the mind; "I cannot digest all this information" -00591115 31 v 04 understand 1 realize 0 realise 0 see 1 008 $ 01635432 v 0000 $ 02129709 v 0000 + 05807540 n 0302 + 05807540 n 0201 + 00533452 a 0105 + 05805475 n 0101 ~ 00591519 v 0000 ~ 00592341 v 0000 03 + 02 00 + 08 00 + 26 00 | perceive (an idea or situation) mentally; "Now I see!"; "I just can't see your point"; "Does she realize how important this decision is?"; "I don't understand the idea" -00591519 31 v 01 perceive 0 006 @ 00591115 v 0000 + 01746605 a 0101 + 01744111 a 0101 + 00771616 a 0102 + 05708432 n 0101 ~ 00589469 v 0000 02 + 08 00 + 26 00 | become conscious of; "She finally perceived the futility of her protest" -00591755 31 v 08 click d get_through 0 dawn d come_home d get_across 0 sink_in 0 penetrate 1 fall_into_place 0 001 > 00588888 v 0000 01 + 01 00 | become clear or enter one's consciousness or emotions; "It dawned on him that she had betrayed him"; "she was penetrated with sorrow" -00592037 31 v 02 resonate 0 come_across 0 003 > 00588888 v 0000 + 13811740 n 0102 ~ 00592186 v 0000 02 + 01 00 + 07 00 | be received or understood -00592186 31 v 01 strike_a_chord 0 001 @ 00592037 v 0000 02 + 02 00 + 04 00 | create an emotional response; "The music struck a chord with the listeners" -00592341 31 v 02 appreciate 0 take_account c 002 @ 00591115 v 0000 + 09802445 n 0101 03 + 08 00 + 26 00 + 22 02 | be fully aware of; realize fully; "Do you appreciate the full meaning of this letter?" -00592544 31 v 01 do_justice 0 001 @ 02256109 v 0000 03 + 08 00 + 09 00 + 12 00 | show due and full appreciation; "The diners did the food and wine justice" -00592702 31 v 01 expect 5 002 @ 00690614 v 0000 + 05944958 n 0101 01 + 08 00 | consider reasonable or due; "I'm expecting a full explanation as to why these files were destroyed" -00592883 31 v 04 acknowledge 9 recognize 2 recognise 2 know 6 003 @ 00686447 v 0000 + 14411981 n 0102 + 06628861 n 0101 02 + 08 00 + 09 00 | accept (someone) to be what is claimed or accept his power and authority; "The Crown Prince was acknowledged as the true heir to the throne"; "We do not recognize your gods" -00593200 31 v 01 attorn 0 002 @ 00817311 v 0000 ;c 08441203 n 0000 01 + 02 00 | acknowledge a new land owner as one's landlord; "he was attorned by the tenants" -00593363 31 v 01 write_off 0 001 @ 00817311 v 0000 02 + 08 00 + 09 00 | concede the loss or worthlessness of something or somebody; "write it off as a loss" -00593522 31 v 02 understand 2 infer 1 001 @ 00683280 v 0000 01 + 26 00 | believe to be the case; "I understand you have no previous experience?" -00593669 31 v 01 extrapolate 1 003 @ 00636574 v 0000 ;c 05664069 n 0000 + 05781145 n 0101 02 + 08 00 + 26 00 | gain knowledge of (an area not known or experienced) by extrapolating -00593852 31 v 04 understand 3 read 4 interpret 2 translate 0 002 @ 00588888 v 0000 + 00533452 a 0105 03 + 08 00 + 09 00 + 26 00 | make sense of a language; "She understands French"; "Can you read Greek?" -00594058 31 v 05 sympathize 0 sympathise 0 empathize 0 empathise 0 understand 4 006 + 00533452 a 0505 + 06199142 n 0502 + 07554856 n 0401 + 07554856 n 0301 + 06199142 n 0201 + 06199142 n 0101 02 + 08 00 + 09 00 | be understanding of; "You don't need to explain--I understand!" -00594337 31 v 01 know 0 001 $ 00608372 v 0000 02 + 08 00 + 09 00 | be familiar or acquainted with a person or an object; "She doesn't know this composer"; "Do you know my sister?"; "We know this movie"; "I know him under a different name"; "This flower is known as a Peruvian Lily" -00594621 31 v 03 know 1 cognize 0 cognise 0 012 $ 00595630 v 0000 + 00190115 a 0303 + 05675905 n 0304 + 02898584 a 0201 + 00190115 a 0202 + 05675905 n 0203 + 01374582 a 0101 + 10240082 n 0101 + 05804793 n 0101 ! 00595505 v 0101 ~ 00595134 v 0000 ~ 00728617 v 0000 03 + 02 00 + 08 00 + 26 00 | be cognizant or aware of a fact or a specific piece of information; possess knowledge or information about; "I know that the President lied to the people"; "I want to know who is winning the game!"; "I know it's time" -00595134 31 v 01 keep_track 0 002 @ 00594621 v 0000 ! 00595306 v 0101 02 + 02 00 + 22 00 | keep informed of fully aware; "I keep track of the stock market developments" -00595306 31 v 01 lose_track 0 002 @ 02529284 v 0000 ! 00595134 v 0101 02 + 02 00 + 22 00 | fail to keep informed or aware; "She has so many books, she just lost track and cannot find this volume" -00595505 31 v 01 ignore 1 002 + 05988282 n 0101 ! 00594621 v 0101 02 + 08 00 + 26 00 | be ignorant of or in the dark about -00595630 31 v 01 know 2 003 + 01374582 a 0101 $ 00594621 v 0000 ~ 00720808 v 0000 02 + 08 00 + 26 00 | be aware of the truth of something; have a belief or faith in something; regard as true beyond any doubt; "I know that I left the key on the table"; "Galileo knew that the earth moves around the sun" -00595935 31 v 01 know 3 003 ~ 00596484 v 0000 ~ 00597385 v 0000 ~ 00597634 v 0000 01 + 28 00 | know how to do or perform something; "She knows how to knit"; "Does your husband know how to cook?" -00596132 31 v 01 know f 002 + 01374582 a 0101 ~ 00596342 v 0000 01 + 08 00 | have fixed in the mind; "I know Latin"; "This student knows her irregular verbs"; "Do you know the poem well enough to recite it?" -00596342 31 v 01 have_down 0 001 @ 00596132 v 0000 01 + 08 00 | have (something) mastered; "She has the names of the fifty states down pat" -00596484 31 v 05 know_the_score 0 be_with_it 0 be_on_the_ball 0 know_what's_going_on 0 know_what's_what 0 001 @ 00595935 v 0000 01 + 02 00 | be well-informed -00596644 31 v 03 know 4 experience 0 live 0 005 @ 02110220 v 0000 + 05984584 n 0201 + 01374582 a 0101 ~ 00597061 v 0000 ~ 00597216 v 0000 01 + 08 00 | have firsthand knowledge of states, situations, emotions, or sensations; "I know the feeling!"; "have you ever known hunger?"; "I have lived a kind of hell when I was a drug addict"; "The holocaust survivors have lived a nightmare"; "I lived through two divorces" -00597061 31 v 01 taste 5 002 @ 00596644 v 0000 + 07288024 n 0101 01 + 08 00 | experience briefly; "The ex-slave tasted freedom shortly before she died" -00597216 31 v 02 relive 0 live_over 0 002 @ 00596644 v 0000 + 05810768 n 0101 01 + 08 00 | experience again, often in the imagination; "He relived the horrors of war" -00597385 31 v 02 master 0 control 0 006 * 00588888 v 0000 @ 00595935 v 0000 + 05641959 n 0202 + 10280130 n 0102 ~ 00635794 v 0000 $ 01224744 v 0000 01 + 08 00 | have a firm understanding or knowledge of; be on top of; "Do you control these data?" -00597634 31 v 02 master 1 get_the_hang 0 006 * 00606093 v 0000 * 00597915 v 0000 @ 00595935 v 0000 + 10280130 n 0102 + 05641959 n 0103 + 05757234 n 0101 03 + 08 00 + 02 02 + 22 02 | be or become completely proficient or skilled in; "She mastered Japanese in less than two years" -00597915 31 v 03 learn 0 larn 0 acquire 0 008 + 05752544 n 0302 + 05637558 n 0304 + 09801864 n 0102 + 10251779 n 0101 ~ 00598278 v 0000 ~ 00598753 v 0000 ~ 00602255 v 0000 ~ 00607114 v 0000 04 + 02 00 + 08 00 + 22 00 + 28 00 | gain knowledge or skills; "She learned dancing from her sister"; "I learned Sanskrit"; "Children acquire language at an amazing rate" -00598278 31 v 01 relearn 0 001 @ 00597915 v 0000 01 + 08 00 | learn something again, as after having forgotten or neglected it; "After the accident, he could not walk for months and had to relearn how to walk down stairs" -00598502 31 v 01 unlearn 0 001 @ 02222318 v 0000 02 + 08 00 + 28 00 | discard something previously learnt, like an old habit -00598629 31 v 01 unlearn 1 001 @ 00610167 v 0000 02 + 08 00 + 28 00 | try to forget; put out of one's memory or knowledge -00598753 31 v 01 catch_up 0 001 @ 00597915 v 0000 01 + 02 00 | learn belatedly; find out about something after it happened; "I'm trying to catch up with the latest developments in molecular biology" -00598954 31 v 09 learn 1 hear 0 get_word 0 get_wind 1 pick_up 0 find_out 0 get_a_line 0 discover 1 see 2 009 + 07214432 n 0801 + 05808218 n 0801 + 00043195 n 0801 ~ 00599434 v 0000 ~ 00599613 v 0000 ~ 00599835 v 0000 ~ 00721302 v 0000 ~ 00721437 v 0000 $ 02128873 v 0000 08 + 08 00 + 26 09 + 26 08 + 22 07 + 22 04 + 02 03 + 26 02 + 26 01 | get to know or become aware of, usually accidentally; "I learned that she has two grown-up children"; "I see that you have been promoted" -00599434 31 v 01 get_the_goods 0 001 @ 00598954 v 0000 01 + 22 00 | discover some bad or hidden information about; "She got the goods on her co-worker after reading his e-mail" -00599613 31 v 01 wise_up 0 001 @ 00598954 v 0000 02 + 02 00 + 22 00 | get wise to; "They wised up to it" -00599720 31 v 01 wise_up 1 001 @ 00831651 v 0000 02 + 09 00 + 20 00 | cause someone to become aware of something -00599835 31 v 02 trip_up 0 catch 0 002 @ 00598954 v 0000 + 00076563 n 0102 01 + 09 00 | detect a blunder or misstep; "The reporter tripped up the senator" -00599992 31 v 04 learn 2 study 0 read 5 take 2 006 + 05996646 n 0207 + 05755883 n 0201 + 06598445 n 0204 ~ 00600235 v 0000 ~ 00602805 v 0000 ~ 00606093 v 0000 01 + 08 00 | be a student of a certain subject; "She is reading for the bar exam" -00600235 31 v 01 audit 0 002 @ 00599992 v 0000 + 09823153 n 0101 02 + 02 00 + 08 00 | attend academic courses without getting credit -00600370 31 v 04 absorb 3 engross 0 engage 0 occupy 0 010 @ 01821423 v 0000 + 00582868 n 0401 + 00582388 n 0401 + 05704266 n 0202 + 05700087 n 0204 + 04865722 n 0202 + 05700087 n 0103 ~ 00600724 v 0000 ~ 00600903 v 0000 ~ 00722675 v 0000 02 + 09 00 + 10 00 | consume all of one's attention or time; "Her interest in butterflies absorbs her completely" -00600724 31 v 01 involve 0 002 @ 00600370 v 0000 + 05682950 n 0102 01 + 10 00 | occupy or engage the interest of; "His story completely involved me during the entire afternoon" -00600903 31 v 01 consume 0 001 @ 00600370 v 0000 02 + 10 00 + 11 00 | engage fully; "The effort to pass the exam consumed all his energy" -00601043 31 v 07 steep 0 immerse 0 engulf 0 plunge 0 engross 2 absorb 6 soak_up 0 008 @ 00722232 v 0000 + 05704266 n 0603 + 05704266 n 0502 + 05700087 n 0504 + 04865722 n 0502 + 05704266 n 0204 $ 00601378 v 0000 ~ 00737005 v 0000 04 + 09 00 + 20 00 + 08 07 + 08 06 | devote (oneself) fully to; "He immersed himself into his studies" -00601378 31 v 02 plunge 1 immerse 1 003 $ 00601043 v 0000 > 00601043 v 0000 + 00277569 n 0202 01 + 09 00 | cause to be immersed; "The professor plunged his students into the study of the Italian text" -00601581 31 v 01 welter 0 000 01 + 22 00 | be immersed in; "welter in work" -00601659 31 v 01 swallow 0 001 @ 00683280 v 0000 02 + 08 00 + 26 00 | believe or accept without questioning or challenge; "Am I supposed to swallow that story?" -00601822 31 v 04 espouse 0 embrace 0 adopt 4 sweep_up 0 004 @ 00686447 v 0000 + 00084371 n 0302 + 00180770 n 0201 ~ 00602112 v 0000 01 + 08 00 | take up the cause, ideology, practice, method, of someone and use it as one's own; "She embraced Catholicism"; "They adopted the Jewish faith" -00602112 31 v 05 take_up 0 latch_on 3 fasten_on 0 hook_on 0 seize_on 0 001 @ 00601822 v 0000 02 + 22 00 + 08 01 | adopt; "take up new ideas" -00602255 31 v 04 absorb 0 assimilate 0 ingest 0 take_in 0 006 @ 00597915 v 0000 + 05757049 n 0202 + 05755714 n 0201 + 10251779 n 0203 + 13434878 n 0102 ~ 00602510 v 0000 01 + 08 00 | take up mentally; "he absorbed the knowledge or beliefs of his tribe" -00602510 31 v 01 imbibe 0 001 @ 00602255 v 0000 01 + 08 00 | receive into the mind and retain; "Imbibe ethical principles" -00602635 31 v 01 apprentice 0 002 @ 00602805 v 0000 + 09801864 n 0101 03 + 02 00 + 08 00 + 22 00 | be or work as an apprentice; "She apprenticed with the great master" -00602805 31 v 02 train 0 prepare 0 009 @ 00599992 v 0000 + 00126830 a 0201 + 00729108 n 0203 + 10722385 n 0101 ~ 00602635 v 0000 ~ 00603179 v 0000 $ 00603298 v 0000 ~ 00604094 v 0000 $ 02387034 v 0000 01 + 27 00 | undergo training or instruction in preparation for a particular role, function, or profession; "She is training to be a teacher"; "He trained as a legal aid" -00603179 31 v 01 retrain 0 001 @ 00602805 v 0000 01 + 02 00 | train again; "He is retraining to become an IT worker" -00603298 31 v 04 train 1 develop 0 prepare 1 educate 0 018 $ 00602805 v 0000 $ 02387034 v 0000 @ 00829107 v 0000 + 01324424 a 0401 + 05753564 n 0401 + 05984287 n 0401 + 00611433 n 0401 + 00883297 n 0401 + 00126830 a 0301 + 00893955 n 0302 + 10722385 n 0101 + 10722575 n 0101 + 00893955 n 0101 $ 00171852 v 0000 ~ 00603822 v 0000 ~ 00603981 v 0000 ~ 00604225 v 0000 ~ 00604449 v 0000 01 + 09 00 | create by training and teaching; "The old master is training world-class violinists"; "we develop the leaders for the future" -00603822 31 v 01 retrain 1 002 @ 00603298 v 0000 + 00895879 n 0101 01 + 09 00 | teach new skills; "We must retrain the linguists who cannot find employment" -00603981 31 v 01 drill 3 001 @ 00603298 v 0000 01 + 09 00 | train in the military, e.g., in the use of weapons -00604094 31 v 01 drill 4 002 @ 00602805 v 0000 + 00894359 n 0101 01 + 02 00 | undergo military training or do military exercises -00604225 31 v 02 housebreak 0 house-train 0 001 @ 00603298 v 0000 01 + 08 00 | train (a pet) to live cleanly in a house -00604347 31 v 01 roughhouse 0 001 @ 02418686 v 0000 01 + 02 00 | engage in rough or disorderly play -00604449 31 v 01 toilet-train 0 002 @ 00603298 v 0000 + 00896228 n 0101 01 + 09 00 | train (a small child) to use the toilet -00604576 31 v 04 memorize 0 memorise 0 con 0 learn 3 011 @ 00607114 v 0000 + 05755156 n 0202 + 10308504 n 0202 + 05935060 n 0201 + 05760202 n 0201 + 05755156 n 0101 + 10308504 n 0101 + 05935060 n 0101 + 05760202 n 0101 + 05651399 n 0101 ~ 00604930 v 0000 01 + 08 00 | commit to memory; learn by heart; "Have you memorized your lines for the play yet?" -00604930 31 v 02 understudy 0 alternate 0 003 @ 00604576 v 0000 + 10680153 n 0202 + 10737103 n 0101 01 + 02 00 | be an understudy or alternate for a role -00605086 31 v 01 indoctrinate 0 005 @ 00829107 v 0000 + 05943300 n 0101 + 00888796 n 0101 ~ 00605310 v 0000 ~ 00605671 v 0000 01 + 09 00 | teach doctrines to; teach uncritically; "The Moonies indoctrinate their disciples" -00605310 31 v 03 revolutionize 0 revolutionise 0 inspire 0 004 @ 00605086 v 0000 + 10118382 n 0303 + 07424109 n 0201 + 07424109 n 0101 02 + 09 00 + 10 00 | fill with revolutionary ideas -00605498 31 v 01 infect 1 002 @ 01767949 v 0000 + 06282383 n 0102 02 + 09 00 + 10 00 | affect in a contagious way; "His laughter infects everyone who is in the same room" -00605671 31 v 01 brainwash 0 001 @ 00605086 v 0000 01 + 09 00 | submit to brainwashing; indoctrinate forcibly -00605783 31 v 09 cram 0 grind_away 0 drum 0 bone_up 0 swot 0 get_up 0 mug_up 0 swot_up 0 bone 0 005 @ 00607114 v 0000 + 10684630 n 0501 + 09975933 n 0101 + 06414727 n 0101 $ 00407146 v 0000 02 + 02 00 + 21 00 | study intensively, as before an exam; "I had to bone up on my Latin verbs before the final exam" -00606093 31 v 04 drill 0 exercise 0 practice 0 practise 0 004 @ 00599992 v 0000 + 00894552 n 0302 + 00894552 n 0201 + 00894552 n 0103 02 + 02 00 + 08 00 | learn by repetition; "We drilled French verbs every day"; "Pianists practice scales" -00606335 31 v 01 drill 1 004 @ 00829107 v 0000 + 00894552 n 0103 ~ 00606471 v 0000 ~ 00606600 v 0000 01 + 09 00 | teach by repetition -00606471 31 v 04 hammer_in 0 drill_in 0 ram_down 0 beat_in 0 001 @ 00606335 v 0000 01 + 08 00 | teach by drills and repetition -00606600 31 v 03 inculcate 0 instill 1 infuse 0 004 @ 00606335 v 0000 + 00889082 n 0203 + 00889082 n 0101 ~ 00606850 v 0000 02 + 08 00 + 21 00 | teach and impress by frequent repetitions or admonitions; "inculcate values into the young generation" -00606850 31 v 01 din 0 001 @ 00606600 v 0000 01 + 08 00 | instill (into a person) by constant repetition; "he dinned the lessons into his students" -00607000 31 v 01 hold a 001 @ 00689344 v 0000 02 + 08 00 + 22 01 | remain committed to; "I hold to these ideas" -00607114 31 v 02 study 1 hit_the_books 0 006 * 00625119 v 0000 @ 00597915 v 0000 + 05755883 n 0101 + 06598445 n 0104 ~ 00604576 v 0000 ~ 00605783 v 0000 02 + 02 00 + 08 00 | learn by reading books; "He is studying geology in his room"; "I have an exam next week; I must hit the books now" -00607405 31 v 01 study 3 004 + 05996646 n 0107 + 05755883 n 0101 + 10665698 n 0101 ~ 00607609 v 0000 02 + 02 00 + 08 00 | be a student; follow a course of study; be enrolled at an institute of learning -00607609 31 v 01 major 9 003 @ 00607405 v 0000 + 10283366 n 0101 + 05997659 n 0101 01 + 22 00 | have as one's principal field of study; "She is majoring in linguistics" -00607780 31 v 07 remember 0 retrieve 0 recall 0 call_back 0 call_up 4 recollect 0 think 2 013 + 05833840 n 0702 + 05786372 n 0701 ^ 00611256 v 0702 + 02005756 a 0602 + 05761559 n 0602 + 05761559 n 0301 + 05761380 n 0201 + 05761918 n 0101 + 05760202 n 0102 ! 00609100 v 0101 ~ 00608372 v 0000 ~ 00610374 v 0000 ~ 00696852 v 0000 03 + 08 00 + 26 00 + 33 00 | recall knowledge from memory; have a recollection; "I can't remember saying any such thing"; "I can't think what her last name was"; "can you remember her phone number?"; "Do you remember that he once loved you?"; "call up memories" -00608372 31 v 01 know e 002 $ 00594337 v 0000 @ 00607780 v 0000 02 + 08 00 + 09 00 | perceive as familiar; "I know this voice!" -00608502 31 v 01 know c 002 @ 00650353 v 0000 + 01374582 a 0101 01 + 08 00 | be able to distinguish, recognize as being different; "The child knows right from wrong" -00608670 31 v 01 know b 001 @ 00728617 v 0000 02 + 08 00 + 09 00 | know the nature or character of; "we all knew her as a big show-off" -00608808 31 v 01 think 8 003 + 05786372 n 0101 + 05833840 n 0102 + 05770926 n 0102 01 + 02 00 | be capable of conscious thought; "Man is the only creature that thinks" -00608978 31 v 02 slip 1 slip_one's_mind 0 002 @ 00609100 v 0000 + 00073828 n 0101 01 + 01 00 | pass out of one's memory -00609100 31 v 04 forget 0 block 0 blank_out 0 draw_a_blank 0 003 + 05645199 n 0201 ! 00607780 v 0101 ~ 00608978 v 0000 04 + 02 00 + 08 02 + 09 02 + 26 02 | be unable to remember; "I'm drawing a blank"; "You are blocking the name of your first wife!" -00609352 31 v 02 come_to_mind 0 spring_to_mind 0 001 @ 00422090 v 0000 01 + 01 00 | be remembered; "His name comes to mind when you mention the strike" -00609506 31 v 02 mind 0 bear_in_mind 0 005 @ 00609683 v 0000 + 05762149 n 0101 + 05611302 n 0101 ! 00614829 v 0101 ~ 00616670 v 0000 03 + 08 00 + 09 00 + 26 00 | keep in mind -00609683 31 v 02 remember 1 think_of 0 006 + 05761918 n 0101 ! 00610167 v 0101 ~ 00609506 v 0000 ~ 00610010 v 0000 ~ 00737193 v 0000 ~ 00956687 v 0000 02 + 08 00 + 26 00 | keep in mind for attention or consideration; "Remember the Alamo"; "Remember to call your mother every day!"; "Think of the starving children in India!" -00610010 31 v 01 retain 0 003 @ 00609683 v 0000 + 02005756 a 0101 + 05651399 n 0102 01 + 08 00 | keep in one's mind; "I cannot retain so much information" -00610167 31 v 02 forget 1 bury 0 003 ! 00609683 v 0101 ~ 00598629 v 0000 ~ 00612841 v 0000 03 + 08 00 + 09 00 + 26 00 | dismiss from the mind; stop remembering; "I tried to bury these unpleasant memories" -00610374 31 v 02 recognize 0 recognise 0 004 * 00594337 v 0000 @ 00607780 v 0000 + 05762998 n 0101 ~ 00618451 v 0000 02 + 08 00 + 09 00 | perceive to be the same -00610538 31 v 01 remind 0 006 > 00607780 v 0000 + 05813626 n 0101 + 06506757 n 0101 ~ 00610770 v 0000 ~ 00610928 v 0000 ~ 00612042 v 0000 04 + 09 00 + 10 00 + 18 00 + 24 00 | put in the mind of someone; "Remind me to call Mother" -00610770 31 v 01 take_back 0 001 @ 00610538 v 0000 02 + 10 00 + 20 00 | cause someone to remember the past; "This photo takes me back to the good old days" -00610928 31 v 01 nag 0 001 @ 00610538 v 0000 02 + 09 00 + 24 00 | remind or urge constantly; "she nagged to take a vacation" -00611055 31 v 01 reminisce 0 004 @ 00611256 v 0000 + 01977669 a 0104 + 05762848 n 0101 + 05761559 n 0103 02 + 02 00 + 22 00 | recall the past; "The grandparents sat there, reminiscing all afternoon" -00611256 31 v 02 remember 2 think_back 0 004 + 05761918 n 0101 + 05760202 n 0102 ~ 00611055 v 0000 ~ 00696414 v 0000 02 + 02 00 + 08 00 | recapture the past; indulge in memories; "he remembered how he used to pick flowers" -00611481 31 v 02 commemorate 0 remember 9 003 + 05761918 n 0201 + 03055809 a 0101 + 07452841 n 0101 02 + 08 00 + 09 00 | call to remembrance; keep alive the memory of someone or something, as in a ceremony; "We remembered the 50th anniversary of the liberation of Auschwitz"; "Remember the dead of the First World War" -00611802 31 v 01 remember 8 003 @ 00713167 v 0000 + 05761918 n 0101 + 05760202 n 0102 01 + 02 00 | exercise, or have the power of, memory; "After the shelling, many people lost the ability to remember"; "some remember better than others" -00612042 31 v 06 commemorate 1 memorialize 0 memorialise 0 immortalize 0 immortalise 0 record 0 007 @ 00610538 v 0000 + 06647206 n 0601 + 06688522 n 0201 + 03743902 n 0201 + 03055809 a 0101 + 06688522 n 0102 ~ 00612454 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | be or provide a memorial to a person or an event; "This sculpture commemorates the victims of the concentration camps"; "We memorialized the Dead" -00612454 31 v 02 monumentalize 0 monumentalise 0 001 @ 00612042 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | record or memorialize lastingly with a monument -00612612 31 v 02 commemorate 2 mark 1 003 @ 02578510 v 0000 + 03055809 a 0101 + 07452841 n 0101 01 + 08 00 | mark by some ceremony or observation; "The citizens mark the anniversary of the revolution with a march and a parade" -00612841 31 v 02 suppress 0 repress 0 004 @ 00610167 v 0000 ;c 06055946 n 0000 + 01070892 n 0102 ~ 00737352 v 0000 03 + 08 00 + 09 00 + 26 00 | put out of one's consciousness -00613018 31 v 02 forget 2 leave 2 002 @ 02287618 v 0000 $ 00613683 v 0000 03 + 08 00 + 09 00 + 21 00 | leave behind unintentionally; "I forgot my umbrella in the restaurant"; "I left my keys inside the car and locked the doors" -00613248 31 v 01 jilt 0 002 @ 00613683 v 0000 + 10222259 n 0101 01 + 09 00 | cast aside capriciously or unfeelingly; "jilt a lover or a bride" -00613393 31 v 02 abandon 1 give_up 0 003 $ 01989053 v 0000 $ 01848465 v 0000 + 00204439 n 0101 01 + 08 00 | stop maintaining or insisting on; of ideas or claims; "He abandoned the thought of asking for her hand in marriage"; "Both sides have to give up some claims in these negotiations" -00613683 31 v 01 leave 5 004 $ 00613018 v 0000 + 00053097 n 0102 ~ 00613248 v 0000 ~ 00614057 v 0000 03 + 08 00 + 09 00 + 10 00 | go and leave behind, either intentionally or by neglect or forgetfulness; "She left a mess when she moved out"; "His good luck finally left him"; "her husband left her after 20 years of marriage"; "she wept thinking she had been left behind" -00614057 31 v 04 abandon 0 forsake 0 desolate 0 desert 0 011 @ 00613683 v 0000 + 00055315 n 0401 + 10007109 n 0401 + 10006842 n 0401 + 07534108 n 0303 + 00205543 n 0201 + 00055315 n 0102 ~ 00614444 v 0000 ~ 00614664 v 0000 ~ 02228268 v 0000 ~ 02228355 v 0000 03 + 08 00 + 09 00 + 10 00 | leave someone who needs or counts on you; leave in the lurch; "The mother deserted her children" -00614444 31 v 01 expose 3 002 @ 00614057 v 0000 + 00204659 n 0101 02 + 09 00 + 10 00 | abandon by leaving out in the open air; "The infant was exposed by the teenage mother"; "After Christmas, many pets get abandoned" -00614664 31 v 01 walk_out 3 001 @ 00614057 v 0000 01 + 22 00 | leave suddenly, often as an expression of disapproval; "She walked out on her husband and children" -00614829 31 v 01 forget 3 002 @ 00614999 v 0000 ! 00609506 v 0101 01 + 28 00 | forget to do something; "Don't forget to call the chairman of the board to the meeting!" -00614999 31 v 08 neglect 0 pretermit 0 omit 0 drop 0 miss 0 leave_out 0 overlook 0 overleap 0 010 + 01857410 a 0301 + 02765190 a 0301 + 05706954 n 0301 + 00074624 n 0301 + 05707146 n 0201 + 00739270 n 0103 + 10351625 n 0101 ! 00616670 v 0101 ~ 00614829 v 0000 ~ 00616498 v 0000 03 + 08 00 + 09 00 + 28 00 | leave undone or leave out; "How could I miss that typo?"; "The workers on the conveyor belt miss one out of ten" -00615421 31 v 01 elide 0 004 @ 00615774 v 0000 + 13473536 n 0101 + 05707269 n 0103 ~ 00615615 v 0000 01 + 08 00 | leave or strike out; "This vowel is usually elided before a single consonant" -00615615 31 v 01 drop 6 001 @ 00615421 v 0000 01 + 08 00 | omit (a letter or syllable) in speaking or writing; " New Englanders drop their post-vocalic r's" -00615774 31 v 06 exclude 1 except 0 leave_out 1 leave_off 0 omit 1 take_out 0 008 @ 00471711 v 0000 + 01857410 a 0501 + 00074624 n 0501 + 05707269 n 0201 + 02152985 a 0101 + 05707269 n 0102 ! 00684838 v 0101 ~ 00615421 v 0000 02 + 08 00 + 10 00 | prevent from being included or considered or accepted; "The bad results were excluded from the report"; "Leave off the top piece" -00616153 31 v 01 neglect 5 006 + 00754873 a 0101 + 04665813 n 0102 + 00418615 n 0102 + 05706629 n 0102 + 10351625 n 0101 ~ 00616361 v 0000 02 + 08 00 + 09 00 | fail to attend to; "he neglects his children" -00616361 31 v 01 slack 0 002 @ 00616153 v 0000 + 00741478 n 0102 01 + 08 00 | be inattentive to, or neglect; "He slacks his attention" -00616498 31 v 04 jump 0 pass_over 0 skip 1 skip_over 0 001 @ 00614999 v 0000 01 + 08 00 | bypass; "He skipped a row in the text and so the sentence was incomprehensible" -00616670 31 v 02 attend_to 0 take_to_heart 0 002 @ 00609506 v 0000 ! 00614999 v 0101 02 + 08 00 + 09 00 | get down to; pay attention to; take seriously; "Attend to your duties, please" -00616857 31 v 03 neglect 1 ignore 3 disregard 0 006 + 00418615 n 0301 + 05706629 n 0301 + 00754873 a 0101 + 05706629 n 0102 + 10351625 n 0101 ~ 00617293 v 0000 02 + 08 00 + 09 00 | give little or no attention to; "Disregard the errors" -00617095 31 v 01 receive 8 003 @ 00690614 v 0000 + 01773420 a 0101 + 01985247 a 0101 02 + 08 00 + 09 00 | regard favorably or with disapproval; "Her new collection of poems was not well received" -00617293 31 v 01 pretermit 1 002 @ 00616857 v 0000 + 05707146 n 0101 01 + 08 00 | disregard intentionally or let pass -00617413 31 v 02 slight 0 cold-shoulder 0 003 @ 00800930 v 0000 + 01225997 n 0203 + 01225783 n 0102 02 + 08 00 + 09 00 | pay no attention to, disrespect; "She cold-shouldered her ex-fiance" -00617605 31 v 01 misremember 0 002 * 00611256 v 0000 @ 00617748 v 0000 02 + 08 00 + 09 00 | remember incorrectly; "I misremembered the date" -00617748 31 v 03 err 0 mistake 1 slip 0 012 + 00073828 n 0301 ^ 00618057 v 0302 + 06769392 n 0202 + 05895723 n 0201 + 00070965 n 0201 + 04805472 n 0101 + 04802629 n 0102 + 00070965 n 0102 ~ 00617605 v 0000 ~ 00618057 v 0000 ~ 00671190 v 0000 ~ 02537642 v 0000 01 + 02 00 | to make a mistake or be incorrect -00618057 31 v 03 stumble 0 slip_up 0 trip_up 1 005 @ 00617748 v 0000 + 00076563 n 0302 + 00073828 n 0202 + 00076563 n 0103 + 09879744 n 0105 01 + 02 00 | make an error; "She slipped up and revealed the name" -00618267 31 v 02 mistake 2 misidentify 0 003 @ 00618451 v 0000 + 07174433 n 0103 ~ 00619610 v 0000 02 + 08 00 + 09 00 | identify incorrectly; "Don't mistake her for her twin sister" -00618451 31 v 01 identify 2 005 @ 00610374 v 0000 + 04743024 n 0101 ~ 00618267 v 0000 ~ 00618682 v 0000 ~ 02192992 v 0000 02 + 08 00 + 09 00 | consider to be equal or the same; "He identified his brother as one of the fugitives" -00618682 31 v 02 type 0 typecast 0 003 @ 00618451 v 0000 + 09909060 n 0103 + 05840188 n 0101 02 + 08 00 + 09 00 | identify as belonging to a certain type; "Such people can practically be typed" -00618878 31 v 02 identify 0 place 0 007 @ 00699815 v 0000 + 01272397 a 0101 + 14577046 n 0101 + 05762998 n 0102 + 05763412 n 0101 + 04618070 n 0101 ~ 00650353 v 0000 02 + 08 00 + 09 00 | recognize as being; establish the identity of someone or something; "She identified the man on the 'wanted' poster" -00619183 31 v 01 date 0 008 @ 00699815 v 0000 + 15160579 n 0101 + 15179888 n 0101 + 15159819 n 0101 + 15159583 n 0101 + 00992331 n 0101 ~ 00277399 v 0000 ~ 00619503 v 0000 01 + 08 00 | assign a date to; determine the (probable) date of; "Scientists often cannot date precisely archeological or prehistorical findings" -00619503 31 v 01 misdate 0 002 @ 00619183 v 0000 + 15180304 n 0103 01 + 08 00 | assign the wrong date to -00619610 31 v 02 confuse 2 confound 1 004 $ 00620673 v 0000 @ 00618267 v 0000 + 00072473 n 0101 $ 01657254 v 0000 03 + 08 00 + 09 00 + 21 00 | mistake one thing for another; "you are confusing me with the other candidate"; "I mistook her for the secretary" -00619869 31 v 06 misconstrue 1 misinterpret 2 misconceive 1 misunderstand 1 misapprehend 1 be_amiss 1 008 @ 00623151 v 0000 + 05895723 n 0503 + 07174433 n 0402 + 05895723 n 0402 + 05893653 n 0301 + 07174433 n 0201 + 07174877 n 0102 + 07174877 n 0101 01 + 08 00 | interpret in the wrong way; "Don't misinterpret my comments as criticism"; "She misconstrued my remarks" -00620239 31 v 01 read 8 002 @ 00588888 v 0000 $ 00624476 v 0000 02 + 08 00 + 09 00 | to hear and understand; "I read you loud and clear!" -00620379 31 v 02 stump 0 mix_up 0 002 @ 00622384 v 0000 + 06785367 n 0102 01 + 10 00 | cause to be perplexed or confounded; "This problem stumped her" -00620532 31 v 03 addle 0 muddle 0 puddle 0 002 @ 01657254 v 0000 + 14500567 n 0203 01 + 08 00 | mix up or confuse; "He muddled the issues" -00620673 31 v 04 confuse 1 blur 0 obscure 0 obnubilate 0 003 $ 00619610 v 0000 @ 00126264 v 0000 ~ 00620926 v 0000 02 + 08 00 + 11 00 | make unclear, indistinct, or blurred; "Her remarks confused the debate"; "Their words obnubilate their intentions" -00620926 31 v 01 muddy 0 001 @ 00620673 v 0000 01 + 11 00 | cause to become muddy; "These data would have muddied the prediction" -00621058 31 v 0c clear 0 clear_up 0 shed_light_on 0 crystallize 0 crystallise 0 crystalize 0 crystalise 0 straighten_out 0 sort_out 1 enlighten 0 illuminate 0 elucidate 0 007 @ 00939857 v 0000 + 01323815 a 0c02 + 14379703 n 0c01 + 04820258 n 0c02 + 07232655 n 0c01 + 07171206 n 0c02 + 07171206 n 0b03 01 + 08 00 | make free from confusion or ambiguity; make clear; "Could you clarify these remarks?"; "Clear up the question of who is at fault" -00621504 31 v 01 read_between_the_lines 0 001 @ 00623151 v 0000 03 + 02 00 + 08 00 + 26 00 | read what is implied but not expressed on the surface -00621653 31 v 01 puzzle_over 0 001 @ 00628491 v 0000 01 + 08 00 | try to solve -00621734 31 v 08 confuse 3 throw 0 fox 0 befuddle 0 fuddle 0 bedevil 0 confound 2 discombobulate 0 008 @ 02604760 v 0000 + 07507912 n 0802 + 05685030 n 0404 + 05683582 n 0101 ~ 00622204 v 0000 ~ 00622384 v 0000 $ 01790739 v 0000 ~ 02159741 v 0000 03 + 09 00 + 10 00 + 11 00 | be confusing or perplexing to; cause to be unable to think clearly; "These questions confuse even the experts"; "This question completely threw me"; "This question befuddled even the teacher" -00622204 31 v 01 demoralize 0 002 @ 00621734 v 0000 + 13975988 n 0101 02 + 09 00 + 10 00 | confuse or put into disorder; "the boss's behavior demoralized everyone in the office" -00622384 31 v 10 perplex 0 vex 2 stick 0 get a puzzle 0 mystify 0 baffle 0 beat 0 pose 9 bewilder 0 flummox 0 stupefy 0 nonplus 0 gravel 0 amaze 1 dumbfound 0 017 @ 00621734 v 0000 + 07510495 n 0c01 + 05685030 n 0a01 + 06785367 n 0901 + 05685030 n 0706 + 03803911 n 0601 + 01266152 n 0601 + 06784639 n 0603 + 05685538 n 0601 + 06784639 n 0501 + 05685030 n 0503 + 06784639 n 0502 ^ 00621653 v 0501 ^ 00634906 v 0504 ~ 00620379 v 0000 ~ 00623006 v 0000 ~ 02723232 v 0000 01 + 10 00 | be a mystery or bewildering to; "This beats me!"; "Got me--I don't know the answer!"; "a vexing problem"; "This question really stuck me" -00623006 31 v 01 riddle 1 002 @ 00622384 v 0000 + 06785223 n 0101 02 + 01 00 + 10 00 | set a difficult problem or riddle; "riddle me a riddle" -00623151 31 v 03 interpret 0 construe 0 see d 018 @ 00588888 v 0000 + 06742630 n 0201 ^ 02660819 v 0202 + 07170753 n 0101 + 05928513 n 0101 + 05766247 n 0101 ~ 00619869 v 0000 ~ 00621504 v 0000 ~ 00623656 v 0000 ~ 00623812 v 0000 ~ 00623947 v 0000 ~ 00624140 v 0000 ~ 00624263 v 0000 ~ 00624476 v 0000 ~ 00625119 v 0000 ~ 00627520 v 0000 $ 00690614 v 0000 ~ 01630532 v 0000 01 + 08 00 | make sense of; assign a meaning to; "What message do you see in this letter?"; "How do you interpret his behavior?" -00623656 31 v 02 mythicize 0 mythicise 0 001 @ 00623151 v 0000 01 + 08 00 | interpret as a myth or in terms of mythology; "mythicize the ancient stories" -00623812 31 v 02 literalize 0 literalise 0 002 @ 00623151 v 0000 ! 00623947 v 0101 01 + 08 00 | make literal; "literalize metaphors" -00623947 31 v 02 spiritualize 0 spiritualise 0 004 @ 00623151 v 0000 + 00583933 n 0202 + 00583933 n 0101 ! 00623812 v 0101 01 + 08 00 | give a spiritual meaning to; read in a spiritual sense -00624140 31 v 01 reinterpret 0 002 @ 00623151 v 0000 + 05928733 n 0101 01 + 08 00 | assign a new or different meaning to -00624263 31 v 02 allegorize 0 allegorise 0 007 @ 00623151 v 0000 + 06880664 n 0202 + 06366581 n 0201 + 06372095 n 0203 + 06880664 n 0102 + 06366581 n 0101 + 06372095 n 0103 01 + 08 00 | interpret as an allegory -00624476 31 v 02 take 7 read 9 005 $ 00620239 v 0000 $ 00627091 v 0000 @ 00623151 v 0000 + 07173766 n 0201 ~ 00624801 v 0000 01 + 21 00 | interpret something in a certain way; convey a particular meaning or impression; "I read this address as a satire"; "How should I take this message?"; "You can't take credit for this!" -00624801 31 v 02 misread 0 misinterpret 1 003 @ 00624476 v 0000 + 07174433 n 0201 + 07175102 n 0101 01 + 08 00 | interpret wrongly; "I misread Hamlet all my life!" -00624967 31 v 02 idealize 1 idealise 1 003 @ 01634142 v 0000 + 05923696 n 0201 + 05923696 n 0101 01 + 02 00 | form ideals; "Man has always idealized" -00625119 31 v 01 read 0 013 $ 00626428 v 0000 $ 02730813 v 0000 @ 00623151 v 0000 + 06590065 n 0101 + 10508862 n 0101 + 10508710 n 0101 + 05808794 n 0101 ~ 00625518 v 0000 ~ 00625723 v 0000 ~ 00625841 v 0000 ~ 00626130 v 0000 ~ 00627824 v 0000 ~ 00627970 v 0000 03 + 02 00 + 08 00 + 26 00 | interpret something that is written or printed; "read the advertisement"; "Have you read Salman Rushdie?" -00625518 31 v 03 anagram 0 anagrammatize 0 anagrammatise 0 004 @ 00625119 v 0000 + 06287620 n 0301 + 06287620 n 0201 + 06287620 n 0101 01 + 02 00 | read letters out of order to discover a hidden meaning -00625723 31 v 01 reread 0 001 @ 00625119 v 0000 01 + 08 00 | read anew; read again; "He re-read her letters to him" -00625841 31 v 01 dip_into 0 001 @ 00625119 v 0000 01 + 08 00 | read selectively; read only certain passages from a text -00625963 31 v 03 empanel 0 impanel 0 panel 0 003 @ 00674607 v 0000 + 08414381 n 0301 + 08414807 n 0302 01 + 09 00 | select from a list; "empanel prospective jurors" -00626130 31 v 02 decipher 0 trace 4 001 @ 00625119 v 0000 01 + 08 00 | read with difficulty; "Can you decipher this letter?"; "The archeologist traced the hieroglyphs" -00626300 31 v 01 make_out 0 001 @ 00588888 v 0000 01 + 08 00 | comprehend; "I cannot make out what this politician is saying" -00626428 31 v 01 read 1 008 @ 00941990 v 0000 + 10508862 n 0101 + 10508710 n 0101 + 07234881 n 0103 $ 00625119 v 0000 ~ 00626768 v 0000 ~ 00626890 v 0000 ~ 01067995 v 0000 05 + 02 00 + 08 00 + 14 00 + 15 00 + 27 00 | look at, interpret, and say out loud something that is written or printed; "The King will read the proclamation at noon" -00626768 31 v 01 numerate 0 002 @ 00626428 v 0000 + 07230959 n 0101 01 + 08 00 | read out loud as words written numbers -00626890 31 v 01 dictate 0 004 @ 00626428 v 0000 + 10012244 n 0101 + 06387332 n 0101 + 07160635 n 0101 01 + 08 00 | say out loud for the purpose of recording; "He dictated a report to his secretary" -00627091 31 v 01 read 2 003 $ 00624476 v 0000 @ 00917772 v 0000 ~ 00627420 v 0000 01 + 08 00 | interpret the significance of, as of palms, tea leaves, intestines, the sky; also of human behavior; "She read the sky and predicted rain"; "I can't read his strange behavior"; "The fortune teller read his fate in the crystal ball" -00627420 31 v 01 scry 0 001 @ 00627091 v 0000 02 + 02 00 + 08 00 | divine by gazing into crystals -00627520 31 v 02 read 6 scan 0 002 @ 00623151 v 0000 ~ 00627693 v 0000 02 + 08 00 + 11 00 | obtain data from magnetic tapes; "This dictionary can be read by the computer" -00627693 31 v 01 misread 2 002 @ 00627520 v 0000 + 07175102 n 0101 01 + 08 00 | read or interpret wrongly; "He misread the data" -00627824 31 v 02 skim 0 skim_over 0 004 @ 00625119 v 0000 + 06598746 n 0101 + 10605510 n 0101 + 06598746 n 0102 01 + 08 00 | read superficially -00627970 31 v 03 lipread 0 lip-read 0 speech-read 0 002 @ 00625119 v 0000 + 00882554 n 0101 02 + 02 00 + 08 00 | interpret by lipreading; of deaf people -00628125 31 v 03 copyread 0 subedit 0 copyedit 0 003 @ 00200397 v 0000 + 10045361 n 0201 + 09964659 n 0102 02 + 02 00 + 08 00 | edit and correct (written or printed material) -00628302 31 v 02 proofread 0 proof 0 004 * 00625119 v 0000 @ 00662589 v 0000 + 06590885 n 0201 + 10482768 n 0101 02 + 02 00 + 08 00 | read for errors; "I should proofread my manuscripts" -00628491 31 v 03 think 0 cogitate 0 cerebrate 0 029 + 05770926 n 0304 + 02419933 a 0201 + 02898433 a 0201 + 05784242 n 0201 + 05770926 n 0102 + 05786372 n 0101 + 10708292 n 0101 + 10708454 n 0101 + 05770926 n 0101 ^ 00630380 v 0102 ^ 00629889 v 0101 ^ 01634142 v 0101 ~ 00621653 v 0000 ~ 00629257 v 0000 ~ 00629738 v 0000 ~ 00630026 v 0000 ~ 00630223 v 0000 ~ 00630380 v 0000 ~ 00632627 v 0000 ~ 00634472 v 0000 ~ 00670261 v 0000 ~ 00704388 v 0000 ~ 00704690 v 0000 ~ 00713167 v 0000 ~ 00722232 v 0000 ~ 00732224 v 0000 ~ 00734348 v 0000 ~ 00739082 v 0000 ~ 00739340 v 0000 01 + 02 00 | use or exercise the mind or one's power of reason in order to make inferences, decisions, or arrive at a solution or judgments; "I've been thinking all day and getting nowhere" -00629257 31 v 02 rationalize 0 rationalise 0 003 @ 00628491 v 0000 + 01009190 n 0204 + 01009190 n 0103 01 + 02 00 | think rationally; employ logic or reason; "When one wonders why one is doing certain things, one should rationalize" -00629492 31 v 02 rationalize_away 0 rationalise_away 0 001 @ 00632627 v 0000 01 + 08 00 | substitute a natural for a supernatural explanation of; "you can rationalize away all the strange noises you hear--there is no poltergeist in the house!" -00629738 31 v 01 think e 003 @ 00628491 v 0000 + 05786372 n 0101 + 05833840 n 0102 01 + 08 00 | have or formulate in the mind; "think good thoughts" -00629889 31 v 01 think_out 0 001 @ 00705227 v 0000 01 + 08 00 | consider carefully and rationally; "Every detail has been thought out" -00630026 31 v 02 philosophize 0 philosophise 0 006 @ 00628491 v 0000 + 10426184 n 0202 + 06158346 n 0201 + 10426184 n 0101 + 06158346 n 0101 + 06742772 n 0101 01 + 02 00 | reason philosophically -00630223 31 v 01 brainstorm 0 003 @ 00628491 v 0000 + 01203277 n 0101 + 05807306 n 0102 01 + 02 00 | try to solve a problem by thinking intensely about it -00630380 31 v 0c chew_over 0 think_over 0 meditate 0 ponder 0 excogitate 0 contemplate 1 muse 0 reflect 0 mull 0 mull_over 0 ruminate 0 speculate 0 026 @ 00628491 v 0000 + 00664879 a 0c02 + 05785885 n 0c02 + 02419434 a 0b09 + 05785508 n 0b04 + 10339504 n 0b04 + 10339504 n 0902 + 02419434 a 0808 + 01333331 a 0801 + 05835162 n 0701 + 10339504 n 0701 + 05785508 n 0705 + 02419434 a 0603 + 05785508 n 0601 + 02420390 a 0501 + 10339504 n 0403 + 02419434 a 0304 + 05785885 n 0301 ~ 00631244 v 0000 ~ 00631398 v 0000 ~ 00631591 v 0000 ~ 00683127 v 0000 ~ 00703512 v 0000 ~ 00925110 v 0000 ~ 01831308 v 0000 ~ 02166460 v 0000 03 + 22 00 + 08 02 + 08 01 | reflect deeply on a subject; "I mulled over the events of the afternoon"; "philosophers have speculated on the question of God for thousands of years"; "The scientist must stop to observe and start to excogitate" -00631244 31 v 01 premeditate 1 001 @ 00630380 v 0000 01 + 02 00 | think or reflect beforehand or in advance; "I rarely premeditate, which is a mistake" -00631398 31 v 02 theologize 0 theologise 0 003 @ 00630380 v 0000 + 10705615 n 0204 + 10705615 n 0103 01 + 02 00 | make theoretical speculations about theology or discuss theological subjects -00631591 31 v 01 introspect 0 003 @ 00630380 v 0000 + 01350674 a 0101 + 05786655 n 0101 01 + 02 00 | reflect on one's own thoughts and feelings -00631737 31 v 06 think 3 opine 2 suppose 0 imagine 1 reckon 2 guess 0 010 @ 00719734 v 0000 + 06782680 n 0601 + 05803938 n 0601 + 10150794 n 0601 + 05779712 n 0301 + 05779712 n 0302 + 05945642 n 0201 + 05945642 n 0105 + 05833840 n 0102 ~ 00924873 v 0000 02 + 24 00 + 26 00 | expect, believe, or suppose; "I imagine she earned a lot of money with her new novel"; "I thought to find her in a bad state"; "he didn't think to find her in the kitchen"; "I guess she is angry at me for standing her up" -00632236 31 v 03 assume 0 presume 0 take_for_granted 0 011 @ 00719734 v 0000 + 01413576 a 0201 + 00645281 a 0201 + 05781347 n 0201 + 05893356 n 0202 + 01225562 n 0201 + 00028008 a 0101 + 06753800 n 0103 + 05892096 n 0101 + 00083260 n 0101 ~ 00716531 v 0000 03 + 08 00 + 11 00 + 26 00 | take to be the case or to be true; accept without verification or proof; "I assume his train was late" -00632627 31 v 01 reason 0 011 @ 00628491 v 0000 + 05651680 n 0101 + 10510339 n 0101 + 05772356 n 0101 ~ 00629492 v 0000 ~ 00632931 v 0000 ~ 00633094 v 0000 ~ 00633265 v 0000 ~ 00637259 v 0000 ~ 00657260 v 0000 ~ 00927049 v 0000 02 + 02 00 + 26 00 | think logically; "The children must learn to reason" -00632931 31 v 01 theorize 1 003 @ 00632627 v 0000 + 05779371 n 0101 $ 00633094 v 0000 01 + 02 00 | form or construct theories; "he thinks and theorizes all day" -00633094 31 v 01 theorize 2 003 $ 00632931 v 0000 @ 00632627 v 0000 + 05779371 n 0101 01 + 08 00 | construct a theory about; "Galileo theorized the motion of the stars" -00633265 31 v 01 ratiocinate 0 005 @ 00632627 v 0000 + 01430716 a 0101 + 05783658 n 0101 + 05793210 n 0101 + 10510339 n 0102 01 + 02 00 | reason methodologically and logically -00633443 31 v 08 speculate 1 theorize 0 theorise 0 conjecture 0 hypothesize 0 hypothesise 0 hypothecate 0 suppose 1 022 @ 00719734 v 0000 + 05779712 n 0801 + 05779712 n 0802 + 06782680 n 0707 + 05888929 n 0701 + 06782680 n 0507 + 07162545 n 0501 + 05888929 n 0501 + 05773923 n 0401 + 05891783 n 0402 + 10706812 n 0304 + 05779371 n 0302 + 05952979 n 0301 + 05888929 n 0303 + 10706812 n 0203 + 05952979 n 0201 + 05888929 n 0203 + 00861818 a 0102 + 05891783 n 0101 + 10634316 n 0101 ~ 00634090 v 0000 ~ 00925873 v 0000 01 + 26 00 | to believe especially on uncertain or tentative grounds; "Scientists supposed that large dinosaurs lived in swamps" -00634090 31 v 03 reconstruct 0 construct 0 retrace 0 003 @ 00633443 v 0000 + 05762258 n 0101 ~ 00634286 v 0000 02 + 08 00 + 26 00 | reassemble mentally; "reconstruct the events of 20 years ago" -00634286 31 v 02 etymologize 0 etymologise 0 005 @ 00634090 v 0000 ;c 06172789 n 0000 + 06514621 n 0101 + 06168855 n 0101 + 06744154 n 0103 01 + 02 00 | construct the history of words -00634472 31 v 03 reason 1 reason_out 0 conclude 0 014 @ 00628491 v 0000 + 00550282 a 0301 + 00162632 n 0303 + 14379829 n 0102 + 05651680 n 0101 + 09178999 n 0101 + 10510339 n 0101 ~ 00636441 v 0000 ~ 00636574 v 0000 ~ 00653449 v 0000 ~ 00715239 v 0000 ~ 00944924 v 0000 ~ 00945125 v 0000 ~ 01022420 v 0000 01 + 26 00 | decide by reasoning; draw or come to a conclusion; "We reasoned that it was cheaper to rent than to buy a house" -00634906 31 v 06 solve 0 work_out 4 figure_out 0 puzzle_out 0 lick 0 work d 013 @ 00588888 v 0000 * 00632627 v 0000 + 01822563 a 0605 + 00190783 n 0101 + 10458111 n 0102 + 06743506 n 0105 + 00153809 n 0102 ~ 00635523 v 0000 ~ 00635714 v 0000 ~ 00635904 v 0000 ~ 00636061 v 0000 ~ 00636279 v 0000 ~ 00738314 v 0000 01 + 08 00 | find the solution to (a problem or question) or understand the meaning of; "did you solve the problem?"; "Work out your problems with the boss"; "this unpleasant situation isn't going to work itself out"; "did you get it?"; "Did you get my meaning?"; "He could not work the math problem" -00635523 31 v 02 answer 3 resolve 4 002 @ 00634906 v 0000 + 02266351 a 0101 02 + 08 00 + 11 00 | understand the meaning of; "The question concerning the meaning of life cannot be answered" -00635714 31 v 01 riddle 0 001 @ 00634906 v 0000 01 + 08 00 | explain a riddle -00635794 31 v 01 cinch 0 002 @ 00597385 v 0000 + 00575365 n 0101 01 + 08 00 | get a grip on; get mastery of -00635904 31 v 01 strike 0 001 @ 00634906 v 0000 01 + 08 00 | arrive at after reckoning, deliberating, and weighing; "strike a balance"; "strike a bargain" -00636061 31 v 02 guess 2 infer 2 003 @ 00634906 v 0000 + 10150794 n 0101 ~ 00720961 v 0000 02 + 08 00 + 26 00 | guess correctly; solve by guessing; "He guessed the right number of beans in the jar and won the prize" -00636279 31 v 01 answer 0 002 @ 00634906 v 0000 + 06743506 n 0102 01 + 08 00 | give the correct answer or solution to; "answer a question"; "answer the riddle" -00636441 31 v 01 induce 0 003 @ 00634472 v 0000 ;c 05664069 n 0000 + 05774415 n 0103 01 + 26 00 | reason or establish by induction -00636574 31 v 04 deduce 0 infer 0 deduct 0 derive 0 011 @ 00634472 v 0000 ;c 05664069 n 0000 + 05780718 n 0401 + 05774129 n 0301 + 05774614 n 0201 + 01296474 a 0101 + 05774129 n 0101 + 02710294 a 0101 ~ 00593669 v 0000 ~ 00689205 v 0000 ~ 00728826 v 0000 01 + 26 00 | reason by deduction; establish by deduction -00636888 31 v 04 establish 3 base 0 ground 0 found 0 005 + 13790712 n 0401 + 05793554 n 0403 + 09178999 n 0302 + 05793554 n 0202 ~ 00637115 v 0000 01 + 21 00 | use as a basis for; found on; "base a claim on some observation" -00637115 31 v 01 build 3 001 @ 00636888 v 0000 01 + 08 00 | found or ground; "build a defense on nothing but the accused person's reputation" -00637259 31 v 07 calculate 0 cipher 0 cypher 0 compute 0 work_out 6 reckon 1 figure 0 043 ;c 06000644 n 0000 @ 00632627 v 0000 + 05121418 n 0702 + 13331634 n 0701 + 09887034 n 0703 + 05802185 n 0703 ^ 00634906 v 0703 + 09887034 n 0602 + 05802185 n 0604 ^ 00712708 v 0606 + 05802185 n 0402 + 00868910 n 0402 + 09887034 n 0405 + 03082979 n 0401 + 13742358 n 0305 + 13742358 n 0204 + 00301187 a 0101 + 06013741 n 0101 + 05802185 n 0101 + 00868910 n 0101 + 09887034 n 0101 + 02938886 n 0101 ~ 00638194 v 0000 $ 00638585 v 0000 ~ 00638723 v 0000 ~ 00638837 v 0000 ~ 00639148 v 0000 ~ 00639478 v 0000 ~ 00639693 v 0000 ~ 00639998 v 0000 ~ 00640385 v 0000 ~ 00640828 v 0000 ~ 00641252 v 0000 ~ 00641672 v 0000 ~ 00642098 v 0000 ~ 00642644 v 0000 ~ 00642803 v 0000 ~ 00642980 v 0000 ~ 00646738 v 0000 ~ 00672433 v 0000 ~ 00724029 v 0000 ~ 00731159 v 0000 ~ 00733044 v 0000 02 + 08 00 + 26 00 | make a mathematical calculation or computation -00638194 31 v 02 quantize 0 quantise 0 004 @ 00637259 v 0000 ;c 06090869 n 0000 + 00389308 n 0202 + 00389308 n 0101 01 + 08 00 | apply quantum theory to; restrict the number of possible values of (a quantity) or states of (a physical entity or system) so that certain variables can assume only certain discrete magnitudes that are integral multiples of a common factor; "Quantize gravity" -00638585 31 v 01 work_out 7 002 $ 00637259 v 0000 @ 02645007 v 0000 01 + 01 00 | be calculated; "The fees work out to less than $1,000" -00638723 31 v 01 extract 2 002 @ 00637259 v 0000 ;c 06000644 n 0000 01 + 08 00 | calculate the root of a number -00638837 31 v 01 process 0 002 @ 00637259 v 0000 + 02995345 n 0105 01 + 08 00 | perform mathematical and logical operations on (data) according to programmed instructions in order to obtain the required information; "The results of the elections were still being processed when he gave his acceptance speech" -00639148 31 v 01 prorate 0 003 @ 00637259 v 0000 + 00807925 n 0101 $ 00639331 v 0000 01 + 08 00 | divide or assess proportionally; "The rent was prorated for the rest of the month" -00639331 31 v 01 prorate 1 003 $ 00639148 v 0000 @ 02254258 v 0000 + 00807925 n 0101 01 + 02 00 | make a proportional settlement or distribution -00639478 31 v 02 miscalculate 0 misestimate 0 004 @ 00637259 v 0000 ;c 06004067 n 0000 + 00072808 n 0203 + 00072808 n 0101 01 + 02 00 | calculate incorrectly; "I miscalculated the number of guests at the wedding" -00639693 31 v 01 recalculate 0 003 @ 00637259 v 0000 ;c 06004067 n 0000 + 00870101 n 0101 01 + 08 00 | calculate anew; "The costs had to be recalculated" -00639849 31 v 01 get 3 002 * 00637259 v 0000 $ 02359340 v 0000 01 + 08 00 | reach by calculation; "What do you get when you add up these numbers?" -00639998 31 v 02 average 0 average_out 0 003 ;c 06004067 n 0000 @ 00637259 v 0000 + 06021761 n 0101 01 + 08 00 | compute the average of -00640136 31 v 01 square 0 003 @ 00641672 v 0000 ;c 06004067 n 0000 + 13731021 n 0101 01 + 08 00 | raise to the second power -00640262 31 v 01 cube 0 003 @ 00641672 v 0000 ;c 06004067 n 0000 + 13731241 n 0101 01 + 08 00 | raise to the third power -00640385 31 v 03 factor 0 factor_in 0 factor_out 0 007 @ 00637259 v 0000 ;c 06004067 n 0000 + 13733402 n 0102 + 13593219 n 0101 + 05783041 n 0101 + 05783041 n 0102 + 05783041 n 0103 01 + 08 00 | resolve into factors; "a quantum computer can factor the number 15" -00640650 31 v 03 factor 1 factor_in 1 factor_out 1 001 @ 02166460 v 0000 01 + 08 00 | consider as relevant when making a decision; "You must factor in the recent developments" -00640828 31 v 02 add 0 add_together 0 010 $ 00949288 v 0000 @ 00637259 v 0000 ;c 06004067 n 0000 + 00048129 a 0101 + 00048706 a 0101 + 00872107 n 0102 + 02679142 n 0101 ! 00641252 v 0101 ^ 02645007 v 0103 ~ 00641138 v 0000 02 + 02 00 + 08 00 | make an addition by combining numbers; "Add 27 and 49, please!" -00641138 31 v 02 foot 0 foot_up 0 002 @ 00640828 v 0000 ;c 06004067 n 0000 01 + 08 00 | add a column of numbers -00641252 31 v 03 subtract 0 deduct 1 take_off 0 008 @ 00637259 v 0000 ;c 06004067 n 0000 + 00360757 n 0202 + 00050083 a 0101 + 00871862 n 0101 + 00360757 n 0101 ! 00640828 v 0101 ~ 00641532 v 0000 02 + 02 00 + 08 00 | make a subtraction; "subtract this amount from my paycheck" -00641532 31 v 01 carry_back 0 001 @ 00641252 v 0000 01 + 08 00 | deduct a loss or an unused credit from taxable income for a prior period -00641672 31 v 01 multiply 0 009 @ 00637259 v 0000 ;c 06004067 n 0000 + 02536123 a 0101 + 00871576 n 0101 + 13733818 n 0101 ! 00642098 v 0101 ~ 00640136 v 0000 ~ 00640262 v 0000 ~ 00641929 v 0000 01 + 08 00 | combine by multiplication; "multiply 10 by 15" -00641929 31 v 01 raise 0 002 @ 00641672 v 0000 ;c 06004067 n 0000 01 + 08 00 | multiply (a number) by itself a specified number of times: 8 is 2 raised to the power 3 -00642098 31 v 02 divide 0 fraction 0 008 @ 00637259 v 0000 ;c 06004067 n 0000 + 13732078 n 0201 + 00784533 a 0101 + 00870912 n 0101 ! 00641672 v 0101 ~ 00642357 v 0000 ~ 00642498 v 0000 02 + 02 00 + 08 01 | perform a division; "Can you divide 49 by seven?" -00642357 31 v 01 halve 0 002 @ 00642098 v 0000 ;c 06004067 n 0000 02 + 08 00 + 11 00 | divide by two; divide into halves; "Halve the cake" -00642498 31 v 01 quarter 0 003 @ 00642098 v 0000 ;c 06004067 n 0000 + 00386553 n 0101 02 + 08 00 + 11 00 | divide by four; divide into quarters -00642644 31 v 02 interpolate 0 extrapolate 0 004 @ 00637259 v 0000 ;c 06000644 n 0000 + 05802547 n 0201 + 05802730 n 0101 01 + 08 00 | estimate the value of -00642803 31 v 01 differentiate 0 004 @ 00637259 v 0000 ;c 06000644 n 0000 + 00870640 n 0101 ! 00642980 v 0101 02 + 08 00 + 02 01 | calculate a derivative; take the derivative -00642980 31 v 01 integrate 0 006 @ 00637259 v 0000 ;c 06000644 n 0000 + 06015505 n 0101 + 00871418 n 0101 + 03577312 n 0101 ! 00642803 v 0101 02 + 08 00 + 02 01 | calculate the integral of; calculate by integration -00643197 31 v 04 analyze 3 analyse 2 psychoanalyze 0 psychoanalyse 0 005 @ 00078760 v 0000 ;c 06055946 n 0000 + 09790278 n 0302 + 09790278 n 0101 + 00704305 n 0102 02 + 08 00 + 09 00 | subject to psychoanalytic treatment; "I was analyzed in Vienna by a famous psychiatrist" -00643473 31 v 05 analyze 1 analyse 1 break_down 0 dissect 0 take_apart 0 009 + 05782140 n 0401 + 00648931 n 0401 + 05781800 n 0301 + 02708711 n 0202 + 09790482 n 0101 + 02708711 n 0101 ! 00644066 v 0101 ~ 00643910 v 0000 ~ 00645415 v 0000 01 + 08 00 | make a mathematical, chemical, or grammatical analysis of; break down into components or essential features; "analyze a specimen"; "analyze a sentence"; "analyze a chemical compound" -00643910 31 v 01 parse 0 002 @ 00643473 v 0000 ;c 06174404 n 0000 01 + 08 00 | analyze syntactically by assigning a constituent structure to (a sentence) -00644066 31 v 02 synthesize 0 synthesise 0 009 @ 00193486 v 0000 + 10687231 n 0203 + 04376400 n 0202 + 13565379 n 0201 + 05774129 n 0203 + 05783940 n 0201 + 10687231 n 0102 + 04376400 n 0101 ! 00643473 v 0101 01 + 08 00 | combine so as to form a more complex, product; "his operas synthesize music and drama in perfect harmony"; "The liver synthesizes vitamins" -00644430 31 v 01 synthesize 1 001 @ 00109660 v 0000 01 + 01 00 | combine and form a synthesis; "Vitamin D only synthesizes when sunlight is available" -00644583 31 v 06 analyze 0 analyse 0 study 2 examine 0 canvass 2 canvas 2 020 + 05787005 n 0402 + 00644503 n 0302 + 02708711 n 0202 + 09790482 n 0101 + 05772667 n 0101 ~ 00645241 v 0000 ~ 00645552 v 0000 ~ 00645771 v 0000 ~ 00646542 v 0000 ~ 00647929 v 0000 ~ 00652900 v 0000 ~ 00661824 v 0000 ~ 00694974 v 0000 ~ 00696189 v 0000 ~ 00697062 v 0000 ~ 00697419 v 0000 ~ 00729109 v 0000 ~ 00789138 v 0000 ~ 01460594 v 0000 ~ 02130300 v 0000 01 + 08 00 | consider in detail and subject to an analysis in order to discover essential features or meaning; "analyze a sonnet by Shakespeare"; "analyze the evidence in a criminal trial"; "analyze your real motives" -00645241 31 v 01 anatomize 0 002 @ 00644583 v 0000 + 00646187 n 0101 01 + 08 00 | analyze down to the smallest detail; "This writer anatomized the depth of human behavior" -00645415 31 v 02 botanize 0 botanise 0 003 @ 00643473 v 0000 + 06066555 n 0201 + 06066555 n 0101 01 + 02 00 | collect and study plants -00645552 31 v 02 diagnose 0 name 0 004 @ 00644583 v 0000 + 00152727 n 0101 + 00152727 n 0102 ~ 00646271 v 0000 01 + 08 00 | determine or distinguish the nature of a problem or an illness through a diagnostic analysis -00645771 31 v 01 diagnose 1 005 @ 00644583 v 0000 ;c 00612160 n 0000 + 00152727 n 0101 + 00152727 n 0102 ~ 00645939 v 0000 01 + 09 00 | subject to a medical analysis -00645939 31 v 01 explore 3 006 @ 00645771 v 0000 ;c 00612160 n 0000 + 00877345 a 0101 + 00945777 n 0101 ~ 00646135 v 0000 $ 00646271 v 0000 01 + 08 00 | examine (organs) for diagnostic purposes -00646135 31 v 01 put_out_feelers 0 001 @ 00645939 v 0000 02 + 01 00 + 02 00 | make some preliminary investigations or test the waters -00646271 31 v 01 explore 2 006 $ 00645939 v 0000 @ 00645552 v 0000 + 00877345 a 0101 + 05785311 n 0101 + 00945777 n 0101 ~ 00646442 v 0000 01 + 08 00 | examine minutely -00646442 31 v 01 plumb 2 001 @ 00646271 v 0000 01 + 08 00 | examine thoroughly and in great depth -00646542 31 v 02 survey 0 appraise 0 003 @ 00644583 v 0000 + 06469694 n 0102 + 00644503 n 0101 01 + 08 00 | consider in a comprehensive way; "He appraised the situation carefully before acting" -00646738 31 v 01 survey 1 006 * 00489837 v 0000 @ 00637259 v 0000 + 00881649 n 0102 + 10680609 n 0101 + 01005579 n 0101 ~ 00646912 v 0000 01 + 08 00 | plot a map of (land) -00646912 31 v 01 triangulate 0 003 @ 00646738 v 0000 + 00617337 n 0101 + 13879320 n 0101 01 + 08 00 | survey by triangulation; "The land surveyor worked by triangulating the plot" -00647094 31 v 03 measure 0 mensurate 0 measure_out 0 013 @ 00697589 v 0000 + 00996969 n 0204 + 01498769 a 0101 + 03735637 n 0102 + 00033615 n 0101 + 00996969 n 0103 + 00996969 n 0101 + 10304383 n 0101 + 00996969 n 0102 ~ 00647508 v 0000 ~ 00647629 v 0000 ~ 00647770 v 0000 ~ 00739536 v 0000 01 + 08 00 | determine the measurements of something or somebody, take measurements of; "Measure the length of the wall" -00647508 31 v 01 shoot 0 001 @ 00647094 v 0000 01 + 08 00 | measure the altitude of by using a sextant; "shoot a star" -00647629 31 v 01 triangulate 1 002 @ 00647094 v 0000 + 06008148 n 0101 01 + 08 00 | measure by using trigonometry; "triangulate the angle" -00647770 31 v 02 caliper 0 calliper 0 003 @ 00647094 v 0000 + 02939866 n 0202 + 02939866 n 0101 01 + 08 00 | measure the diameter of something with calipers -00647929 31 v 01 survey 2 003 @ 00644583 v 0000 + 10680796 n 0101 ~ 02454312 v 0000 01 + 08 00 | make a survey of; for statistical purposes -00648071 31 v 01 prospect 0 002 @ 00648224 v 0000 + 10485298 n 0101 01 + 02 00 | explore for useful or valuable things or substances, such as minerals -00648224 31 v 03 research 0 search 0 explore 0 014 @ 00789138 v 0000 + 00877345 a 0302 + 00877345 a 0301 + 05785311 n 0301 + 00637354 n 0201 + 10575787 n 0202 + 05797597 n 0103 + 00636921 n 0101 + 10523076 n 0102 ~ 00648071 v 0000 ~ 00648764 v 0000 ~ 00649033 v 0000 ~ 00649245 v 0000 ~ 00649362 v 0000 01 + 08 00 | inquire into; "the students had to research the history of the Second World War for their history project"; "He searched for information on his relatives on the web"; "Scientists are exploring the nature of consciousness" -00648764 31 v 01 google 0 003 @ 00648224 v 0000 ;c 06128570 n 0000 + 06578905 n 0101 03 + 02 00 + 08 00 + 09 00 | search the internet (for information) using the Google search engine; "He googled the woman he had met at the party"; "My children are googling all day" -00649033 31 v 01 mapquest 0 003 @ 00648224 v 0000 ;c 06128570 n 0000 + 06578527 n 0101 01 + 08 00 | search for a location and directions by means of the MapQuest program; "you can just mapquest the restaurant" -00649245 31 v 01 re-explore 0 001 @ 00648224 v 0000 01 + 08 00 | explore anew; "We need to re-explore Colonialism" -00649362 31 v 03 cast_about 0 beat_about 0 cast_around 0 001 @ 00648224 v 0000 02 + 02 00 + 22 00 | search anxiously -00649481 31 v 01 explore 1 009 @ 00789138 v 0000 + 00877345 a 0102 + 00877345 a 0101 + 05785311 n 0101 + 00310063 n 0101 + 10072708 n 0101 ~ 00649757 v 0000 ~ 00649887 v 0000 ~ 00710606 v 0000 01 + 08 00 | travel to or penetrate into; "explore unknown territory in biology" -00649757 31 v 01 pioneer 0 002 @ 00649481 v 0000 + 10434424 n 0101 01 + 08 00 | open up and explore a new area; "pioneer space" -00649887 31 v 02 cave 0 spelunk 0 003 @ 00649481 v 0000 + 10460286 n 0202 + 09238926 n 0101 01 + 02 00 | explore natural caves -00650016 31 v 02 discriminate 0 know_apart 0 006 @ 00650353 v 0000 + 00775301 a 0101 + 00775301 a 0102 + 05748054 n 0101 + 10012815 n 0102 ~ 00650233 v 0000 02 + 08 00 + 21 00 | recognize or perceive the difference -00650233 31 v 01 subtilize 0 001 @ 00650016 v 0000 01 + 08 00 | mark fine distinctions and subtleties, as among words -00650353 31 v 09 distinguish 0 separate 1 differentiate 1 secern 1 secernate 0 severalize 0 severalise 0 tell 1 tell_apart 0 020 * 00652900 v 0000 @ 00618878 v 0000 + 07366289 n 0304 + 04748836 n 0301 + 05748285 n 0301 + 10012815 n 0301 + 05748285 n 0102 ~ 00608502 v 0000 ~ 00650016 v 0000 ~ 00650932 v 0000 ~ 00651480 v 0000 ~ 00651630 v 0000 ~ 00651759 v 0000 ~ 00661213 v 0000 ~ 00661480 v 0000 ~ 00661584 v 0000 ~ 00714273 v 0000 ~ 00730499 v 0000 ~ 02512305 v 0000 ~ 02512808 v 0000 03 + 08 00 + 09 00 + 16 00 | mark as different; "We distinguish several kinds of maple" -00650932 31 v 01 label 0 002 @ 00650353 v 0000 + 14620066 n 0101 01 + 08 00 | distinguish (an element or atom) by using a radioactive isotope or an isotope of unusual mass for tracing through chemical reactions -00651145 31 v 01 treat 0 002 @ 00717358 v 0000 $ 02514187 v 0000 01 + 21 00 | regard or consider in a specific way; "I treated his advances as a joke" -00651298 31 v 01 bristle 0 001 @ 00717358 v 0000 01 + 22 00 | react in an offended or angry manner; "He bristled at her suggestion that he should teach her how to use the program" -00651480 31 v 01 label 1 002 @ 00650353 v 0000 + 14620066 n 0101 01 + 08 00 | distinguish (as a compound or molecule) by introducing a labeled atom -00651630 31 v 01 sex 0 003 @ 00650353 v 0000 + 07999291 n 0101 + 05006898 n 0101 01 + 08 00 | tell the sex (of young chickens) -00651759 31 v 02 individualize 0 individualise 0 004 @ 00650353 v 0000 + 05749402 n 0202 + 05749402 n 0101 + 10203839 n 0101 01 + 08 00 | make or mark or treat as individual; "The sounds were individualized by sharpness and tone" -00651991 31 v 03 distinguish 2 mark 9 differentiate 2 008 $ 00921738 v 0000 @ 00956687 v 0000 + 07366289 n 0304 + 04748836 n 0301 + 05748285 n 0301 + 07270179 n 0203 + 07270179 n 0201 ~ 02697950 v 0000 02 + 10 00 + 11 00 | be a distinctive feature, attribute, or trait; sometimes in a very positive sense; "His modesty distinguishes him from his peers" -00652346 31 v 07 identify 1 discover 3 key 0 key_out 0 distinguish 1 describe 0 name 1 006 * 00654625 v 0000 + 06333653 n 0701 + 07230502 n 0701 + 01272397 a 0101 + 00152018 n 0102 + 05763412 n 0101 03 + 08 00 + 09 00 + 11 00 | identify as in botany or biology, for example -00652622 31 v 02 catalogue 0 catalog 0 007 @ 00654625 v 0000 + 06487897 n 0201 + 06416206 n 0201 + 06487897 n 0102 + 06416206 n 0102 + 09900499 n 0102 + 09900499 n 0101 01 + 08 00 | make an itemized list or catalog of; classify; "He is cataloguing his photographic negatives" -00652900 31 v 01 compare 0 009 $ 02729632 v 0000 @ 00644583 v 0000 + 04746842 n 0102 + 13853808 n 0101 + 00142665 n 0101 + 00142665 n 0102 + 00006032 a 0102 ~ 00653283 v 0000 ~ 00661713 v 0000 04 + 08 00 + 09 00 + 11 00 + 21 00 | examine and note the similarities or differences of; "John compared his haircut to his friend's"; "We compared notes after we had both seen the movie" -00653283 31 v 02 analogize 0 analogise 0 005 @ 00652900 v 0000 + 05780339 n 0201 + 00651176 n 0201 + 05780339 n 0101 + 00651176 n 0101 01 + 02 00 | make an analogy -00653449 31 v 02 syllogize 0 syllogise 0 005 @ 00634472 v 0000 + 10685123 n 0203 + 05779116 n 0201 + 10685123 n 0102 + 05779116 n 0101 01 + 02 00 | reason by syllogisms -00653620 31 v 03 compare 1 liken 0 equate 0 009 @ 02166460 v 0000 + 09626238 n 0302 + 00185307 n 0301 + 00185307 n 0302 + 02990954 a 0101 + 04746842 n 0102 + 04746842 n 0101 + 00142665 n 0102 + 00006032 a 0102 02 + 20 00 + 21 00 | consider or describe as similar, equal, or analogous; "We can compare the Han dynasty to the Romans"; "You cannot equate success in financial matters with greed" -00654015 31 v 01 reconsider 0 004 @ 00690614 v 0000 + 07139532 n 0101 + 05790012 n 0101 $ 00654258 v 0000 02 + 08 00 + 33 00 | consider again; give new consideration to; usually with a view to changing; "Won't you reconsider your decision?" -00654258 31 v 01 reconsider 1 003 $ 00654015 v 0000 ;c 01125693 n 0000 @ 00690614 v 0000 01 + 08 00 | consider again (a bill) that had been voted upon before, with a view to altering it -00654446 31 v 02 come_round 0 come_around 0 002 * 00654015 v 0000 @ 00109660 v 0000 02 + 02 00 + 22 00 | change one's position or opinion; "He came around to our point of view" -00654625 31 v 06 classify 0 class 0 sort 0 assort 0 sort_out 0 separate 0 030 @ 00657260 v 0000 * 00652900 v 0000 + 01012712 n 0406 + 05839024 n 0302 + 13558696 n 0301 + 10626867 n 0301 + 04261116 n 0301 + 13558696 n 0302 + 01016832 n 0301 + 07997703 n 0201 + 03018802 a 0101 + 08239808 n 0101 + 08103777 n 0101 + 07974025 n 0101 + 07939638 n 0101 + 05732756 n 0101 + 01012712 n 0103 + 09926862 n 0101 + 07997703 n 0101 ~ 00368109 v 0000 ~ 00652622 v 0000 ~ 00655378 v 0000 ~ 00655555 v 0000 ~ 00655792 v 0000 ~ 00655987 v 0000 ~ 00656107 v 0000 ~ 00656292 v 0000 ~ 00656576 v 0000 ~ 00657550 v 0000 ~ 02731632 v 0000 02 + 08 00 + 09 00 | arrange or order by classes or categories; "How would you classify these pottery shards--are they prehistoric?" -00655378 31 v 01 isolate 5 004 @ 00654625 v 0000 ;c 06136258 n 0000 + 02111339 a 0101 + 13503673 n 0101 01 + 08 00 | separate (experiences) from the emotions relating to them -00655555 31 v 01 refer 0 002 @ 00654625 v 0000 + 05923314 n 0101 01 + 21 00 | think of, regard, or classify under a subsuming principle or with a general group or in relation to another; "This plant can be referred to a known species" -00655792 31 v 01 reclassify 0 001 @ 00654625 v 0000 01 + 08 00 | classify anew, change the previous classification; "The zoologists had to reclassify the mollusks after they found new species" -00655987 31 v 01 size 0 003 @ 00654625 v 0000 + 05095691 n 0101 + 05098942 n 0101 01 + 08 00 | sort according to size -00656107 31 v 02 dichotomize 0 dichotomise 0 004 @ 00654625 v 0000 + 00389135 n 0202 + 00389135 n 0101 + 07939880 n 0101 02 + 08 00 + 11 00 | divide into two opposing groups or kinds -00656292 31 v 03 pigeonhole 0 stereotype 0 stamp 0 005 @ 00654625 v 0000 + 07998573 n 0301 + 05927586 n 0201 + 05839663 n 0101 + 05733090 n 0102 04 + 08 00 + 09 00 + 20 00 + 21 00 | treat or classify according to a mental stereotype; "I was stereotyped as a lazy Southern European" -00656576 31 v 01 group 0 007 @ 00654625 v 0000 + 00031264 n 0101 + 01012360 n 0101 ~ 00656825 v 0000 ~ 00656916 v 0000 ~ 00657016 v 0000 ~ 01386073 v 0000 02 + 08 00 + 09 00 | arrange into a group or groups; "Can you group these shapes together?" -00656825 31 v 01 regroup 0 001 @ 00656576 v 0000 01 + 08 00 | reorganize into new groups -00656916 31 v 01 bracket 0 002 @ 00656576 v 0000 + 08006094 n 0101 01 + 31 00 | classify or group -00657016 31 v 03 collocate 0 lump d chunk d 006 @ 00656576 v 0000 + 07961016 n 0306 + 05731568 n 0303 + 10276477 n 0201 + 09307300 n 0202 + 01051801 n 0103 02 + 08 00 + 09 00 | group or chunk together in a certain order or place side by side -00657260 31 v 02 categorize 0 categorise 0 008 * 00652900 v 0000 @ 00632627 v 0000 + 07939638 n 0102 + 05732756 n 0102 + 01012712 n 0101 + 07997703 n 0102 + 05838765 n 0101 ~ 00654625 v 0000 02 + 08 00 + 09 00 | place into or assign to a category; "Children learn early on to categorize" -00657550 31 v 01 grade 0 005 @ 00654625 v 0000 + 05737153 n 0102 + 14429608 n 0101 + 01003729 n 0101 + 00874977 n 0102 01 + 08 00 | determine the grade of or assign a grade to -00657728 31 v 03 grade 5 score 5 mark 0 008 @ 00681429 v 0000 + 00874977 n 0301 + 05737153 n 0203 + 10562135 n 0202 + 00874977 n 0203 + 01003729 n 0101 + 10140783 n 0101 + 00874977 n 0102 02 + 02 00 + 08 00 | assign a grade or rank to, according to one's evaluation; "grade tests"; "score the SAT essays"; "mark homework" -00658052 31 v 06 rate 0 rank 0 range 0 order 0 grade 3 place 1 020 @ 00670261 v 0000 + 06483454 n 0601 + 05737153 n 0502 + 14428160 n 0501 + 14429608 n 0501 + 01003729 n 0501 + 10140783 n 0501 + 01010334 n 0502 + 05091316 n 0401 + 01009871 n 0402 + 14429985 n 0201 ~ 00658619 v 0000 ~ 00658798 v 0000 ~ 00658913 v 0000 ~ 00659112 v 0000 ~ 00659535 v 0000 ~ 00660381 v 0000 ~ 00660571 v 0000 ~ 00660730 v 0000 ~ 00660851 v 0000 02 + 08 00 + 09 00 | assign a rank or rating to; "how would you rank these students?"; "The restaurant is rated highly in the food guide" -00658619 31 v 01 superordinate 0 001 @ 00658052 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | place in a superior order or rank; "These two notions are superordinated to a third" -00658798 31 v 01 shortlist 0 001 @ 00658052 v 0000 02 + 08 00 + 09 00 | put someone or something on a short list -00658913 31 v 01 seed 0 003 @ 00658052 v 0000 ;c 00523513 n 0000 + 10575463 n 0102 01 + 09 00 | distribute (players or teams) so that outstanding teams or players will not meet in the early rounds -00659112 31 v 01 reorder 0 004 @ 00658052 v 0000 + 00339463 n 0101 ~ 00386965 v 0000 ~ 00659260 v 0000 02 + 08 00 + 09 00 | assign a new order to -00659260 31 v 01 countermarch 0 001 @ 00659112 v 0000 01 + 02 00 | change the order of soldiers during a march -00659373 31 v 01 outclass 0 002 @ 00659535 v 0000 ;c 00523513 n 0000 02 + 08 00 + 09 00 | cause to appear in a lower class; "The Yankees outclassed Cincinnati" -00659535 31 v 01 subordinate 0 004 @ 00658052 v 0000 + 10669991 n 0101 + 14001852 n 0101 ~ 00659373 v 0000 01 + 08 00 | rank or order as less important or consider of less value; "Art is sometimes subordinated to Science in these schools" -00659776 31 v 03 place 3 come_in 0 come_out 0 002 @ 00660102 v 0000 + 06483454 n 0101 02 + 06 00 + 07 00 | take a place in a competition; often followed by an ordinal; "Jerry came in third in the Marathon" -00659984 31 v 01 come d 001 @ 00660102 v 0000 02 + 04 00 + 22 00 | have a certain priority; "My family comes first" -00660102 31 v 01 rank d 007 @ 02604760 v 0000 + 14429985 n 0101 + 10506915 n 0101 + 10506762 n 0101 + 14429484 n 0101 ~ 00659776 v 0000 ~ 00659984 v 0000 02 + 08 00 + 11 00 | take or have a position relative to others; "This painting ranks among the best in the Western World" -00660381 31 v 02 prioritize 0 prioritise 0 003 @ 00658052 v 0000 + 13949802 n 0103 + 05047279 n 0101 01 + 08 00 | assign a priority to; "we have too many things to do and must prioritize" -00660571 31 v 01 sequence 0 005 @ 00658052 v 0000 + 01010458 n 0102 + 08459252 n 0101 + 05044822 n 0101 + 04173344 n 0101 01 + 08 00 | arrange in a sequence -00660730 31 v 01 downgrade 0 002 @ 00658052 v 0000 ! 00660851 v 0101 01 + 08 00 | rate lower; lower in value or esteem -00660851 31 v 01 upgrade 0 002 @ 00658052 v 0000 ! 00660730 v 0101 01 + 08 00 | rate higher; raise in value or esteem -00660971 31 v 02 rate 1 value 2 004 @ 00681429 v 0000 + 05736149 n 0103 + 00874806 n 0102 ~ 00315810 v 0000 01 + 08 00 | estimate the value of; "How would you rate his chances to become President?"; "Gold was rated highly among the Romans" -00661213 31 v 01 contrast 0 004 @ 00650353 v 0000 + 13855627 n 0101 + 05748786 n 0104 + 00651813 n 0101 01 + 08 00 | put in opposition to show or emphasize differences; "The middle school teacher contrasted her best student's work with that of her weakest student" -00661480 31 v 02 severalize 1 severalise 1 001 @ 00650353 v 0000 01 + 08 00 | distinguish or separate -00661584 31 v 01 contradistinguish 0 002 @ 00650353 v 0000 + 05748614 n 0101 01 + 08 00 | distinguish by contrasting qualities -00661713 31 v 01 collate 0 002 @ 00652900 v 0000 + 00651531 n 0101 01 + 08 00 | compare critically; of texts -00661824 31 v 08 check 0 check_up_on 0 look_into 0 check_out 0 suss_out 0 check_over 0 go_over 1 check_into 0 007 @ 00644583 v 0000 + 00141806 n 0402 + 05738625 n 0102 + 00141806 n 0101 + 09912995 n 0101 $ 00662182 v 0000 ~ 02455407 v 0000 01 + 08 00 | examine so as to determine accuracy, quality, or condition; "check the brakes"; "Check out the engine" -00662182 31 v 06 check 1 check_off 0 mark 8 mark_off 0 tick_off 0 tick 0 005 $ 00661824 v 0000 $ 00662589 v 0000 @ 00664483 v 0000 + 06818747 n 0102 ~ 00662485 v 0000 01 + 08 00 | put a check mark on or near or next to; "Please check each name on the list"; "tick off the items"; "mark off the units" -00662485 31 v 01 receipt 0 002 @ 00662182 v 0000 + 06520222 n 0101 01 + 08 00 | mark or stamp as paid -00662589 31 v 08 see 3 check 2 insure 0 see_to_it 0 ensure 0 control 1 ascertain 0 assure 0 015 $ 00920336 v 0000 @ 00664483 v 0000 + 05825245 n 0203 + 00141806 n 0201 ~ 00628302 v 0000 $ 00662182 v 0000 ~ 00663160 v 0000 $ 00663353 v 0000 ~ 00663549 v 0000 ~ 00663682 v 0000 ~ 00663819 v 0000 ~ 00663894 v 0000 ~ 00664111 v 0000 ~ 00967455 v 0000 $ 02520997 v 0000 02 + 26 00 + 28 01 | be careful or certain to do something; make certain of something; "He verified that the valves were closed"; "See that the curtains are closed"; "control the quality of the product" -00663160 31 v 01 control b 004 ;c 07073447 n 0000 @ 00662589 v 0000 + 09761403 n 0103 + 05798569 n 0102 01 + 08 00 | verify by using a duplicate register for comparison; "control an account" -00663353 31 v 01 check c 003 $ 00662589 v 0000 @ 00664483 v 0000 + 00141806 n 0101 01 + 08 00 | verify by consulting a source or authority; "check the spelling of this word"; "check your facts" -00663549 31 v 01 double-check 0 002 @ 00662589 v 0000 + 05738894 n 0102 02 + 02 00 + 08 00 | check once more to be absolutely sure -00663682 31 v 01 cross-check 0 001 @ 00662589 v 0000 02 + 08 00 + 26 00 | check out conflicting sources; crosscheck facts, for example -00663819 31 v 01 cinch 1 001 @ 00662589 v 0000 01 + 08 00 | make sure of -00663894 31 v 01 card 0 002 @ 00662589 v 0000 + 06477371 n 0101 01 + 09 00 | ask someone for identification to determine whether he or she is old enough to consume liquor; "I was carded when I tried to buy a beer!" -00664111 31 v 01 spot-check 0 002 @ 00662589 v 0000 + 00142140 n 0101 02 + 02 00 + 08 00 | pick out random samples for examination in order to ensure high quality -00664276 31 v 01 authenticate 0 006 * 00664483 v 0000 @ 00820976 v 0000 + 06855035 n 0101 + 00154233 n 0101 + 09802239 n 0102 ~ 00665771 v 0000 02 + 08 00 + 11 00 | establish the authenticity of something -00664483 31 v 01 verify 1 009 @ 00665886 v 0000 + 02355521 a 010b + 01615785 a 0101 + 00859453 a 0102 + 05825245 n 0102 + 10760763 n 0102 ~ 00662182 v 0000 ~ 00662589 v 0000 ~ 00663353 v 0000 03 + 08 00 + 11 00 + 26 00 | confirm the truth of; "Please verify that the doors are closed"; "verify a claim" -00664788 31 v 05 prove 0 demonstrate 0 establish 0 show 0 shew 0 008 @ 00665886 v 0000 + 05826291 n 0301 + 01323962 a 0201 ! 00667424 v 0101 ~ 00665235 v 0000 ~ 00665630 v 0000 ~ 00666886 v 0000 ~ 01801080 v 0000 03 + 08 00 + 11 00 + 26 00 | establish the validity of something, as by an example, explanation or experiment; "The experiment demonstrated the instability of the compound"; "The mathematician showed the validity of the conjecture" -00665235 31 v 01 prove_oneself 0 001 @ 00664788 v 0000 01 + 02 00 | show one's ability or courage -00665335 31 v 01 explode 1 001 @ 00667424 v 0000 02 + 08 00 + 11 00 | show (a theory or claim) to be baseless, or refute and make obsolete -00665476 31 v 03 lay_down 0 establish 2 make d 002 @ 01617192 v 0000 ~ 01062395 v 0000 02 + 08 00 + 26 00 | institute, enact, or establish; "make laws" -00665630 31 v 01 prove 2 002 @ 00664788 v 0000 ;c 06000644 n 0000 01 + 08 00 | prove formally; demonstrate by a mathematical, formal proof -00665771 31 v 01 prove 1 002 @ 00664276 v 0000 ;c 08441203 n 0000 01 + 08 00 | obtain probate of; "prove a will" -00665886 31 v 06 confirm 0 corroborate 0 sustain 0 substantiate 0 support 0 affirm 0 021 + 01821920 a 0601 + 01186192 n 0601 ! 00666886 v 0601 + 00154433 n 0502 + 02355521 a 0408 + 05825245 n 0404 + 00153961 n 0403 + 02806261 a 0301 + 02355521 a 0205 + 02355521 a 0206 + 06650431 n 0203 + 02355521 a 0102 + 02355521 a 0104 + 06650070 n 0101 + 05825245 n 0101 ~ 00223109 v 0000 ~ 00223250 v 0000 ~ 00664483 v 0000 ~ 00664788 v 0000 ~ 00666510 v 0000 ~ 00667224 v 0000 03 + 08 00 + 11 00 + 26 00 | establish or strengthen as with new evidence or facts; "his story confirmed my doubts"; "The evidence supports the defendant" -00666510 31 v 01 document 0 005 @ 00665886 v 0000 + 06470073 n 0101 + 06650431 n 0101 + 00154433 n 0101 ~ 00666722 v 0000 02 + 08 00 + 11 00 | support or supply with references; "Can you document your claims?" -00666722 31 v 01 source 0 003 @ 00666510 v 0000 + 07258664 n 0102 + 06675122 n 0101 01 + 08 00 | specify the origin of; "The writer carefully sourced her report" -00666886 31 v 02 negate 0 contradict 0 006 @ 00664788 v 0000 ;c 05664069 n 0000 + 00075515 a 0101 ! 00665886 v 0106 ~ 00667102 v 0000 ~ 00667424 v 0000 03 + 08 00 + 11 00 + 26 00 | prove negative; show to be false -00667102 31 v 02 invalidate 0 nullify 0 002 @ 00666886 v 0000 ! 00667224 v 0101 02 + 08 00 + 11 00 | show to be invalid -00667224 31 v 01 validate 0 005 @ 00665886 v 0000 + 02355521 a 010a + 05826291 n 0102 + 00153961 n 0101 ! 00667102 v 0101 02 + 08 00 + 11 00 | prove valid; show or confirm the validity of something -00667424 31 v 02 disprove 0 confute 0 010 @ 00666886 v 0000 + 00721371 a 0204 + 10510546 n 0204 + 07201105 n 0201 + 05826722 n 0201 + 10510546 n 0102 ! 00664788 v 0101 ~ 00665335 v 0000 ~ 00667747 v 0000 ~ 00667942 v 0000 03 + 08 00 + 11 00 + 26 00 | prove to be false; "The physicist disproved his colleagues' theories" -00667747 31 v 03 refute 0 rebut 0 controvert 0 005 @ 00667424 v 0000 + 10510546 n 0201 + 05826469 n 0103 + 00155298 n 0104 + 10510546 n 0103 02 + 08 00 + 11 00 | prove to be false or incorrect -00667942 31 v 01 falsify 0 004 @ 00667424 v 0000 + 05826469 n 0102 + 13960464 n 0101 + 00155298 n 0102 02 + 08 00 + 11 00 | prove false; "Falsify a claim" -00668099 31 v 0c digest 3 endure 0 stick_out 0 stomach 0 bear 0 stand 0 tolerate 0 support 4 brook 0 abide 0 suffer 0 put_up 0 017 @ 00802318 v 0000 + 04638175 n 0b03 + 01021889 n 0a01 + 01736883 a 0701 + 01041209 a 0702 + 04638175 n 0701 + 01071090 n 0701 + 02435206 a 0501 + 05032565 n 0201 ~ 00668805 v 0000 ~ 00669099 v 0000 ~ 00669243 v 0000 ~ 00669366 v 0000 ~ 00669630 v 0000 ~ 00670179 v 0000 ~ 00737884 v 0000 $ 01794668 v 0000 03 + 08 00 + 09 00 + 22 0c | put up with something or somebody unpleasant; "I cannot bear his constant criticism"; "The new secretary had to endure a lot of unprofessional remarks"; "he learned to tolerate the heat"; "She stuck out two years in a miserable marriage" -00668805 31 v 03 accept 3 live_with 0 swallow 3 002 @ 00668099 v 0000 + 04638175 n 0102 01 + 08 00 | tolerate or accommodate oneself to; "I shall have to accept these unpleasant working conditions"; "I swallowed the insult"; "She has learned to live with her husband's little idiosyncrasies" -00669099 31 v 02 stand_for 0 hold_still_for 0 001 @ 00668099 v 0000 01 + 08 00 | tolerate or bear; "I won't stand for this kind of behavior!" -00669243 31 v 01 bear_up 0 001 @ 00668099 v 0000 01 + 02 00 | endure cheerfully; "She bore up under the enormous strain" -00669366 31 v 01 take_lying_down 0 001 @ 00668099 v 0000 01 + 08 00 | suffer without protest; suffer or endure passively; "I won't take this insult lying down" -00669528 31 v 01 take_it_on_the_chin 0 001 @ 02528380 v 0000 01 + 02 00 | undergo failure or defeat -00669630 31 v 01 take_a_joke 0 001 @ 00668099 v 0000 01 + 02 00 | listen to a joke at one's own expense; "Can't you take a joke?" -00669762 31 v 02 take 9 submit c 005 $ 02109045 v 0000 @ 02108377 v 0000 + 01166926 n 0201 + 09852081 n 0101 ~ 00669970 v 0000 02 + 08 00 + 22 02 | accept or undergo, often unwillingly; "We took a pay cut" -00669970 31 v 01 test 6 007 $ 01112584 v 0000 $ 00786458 v 0000 @ 00669762 v 0000 + 07197021 n 0103 + 00794367 n 0101 + 01006675 n 0101 + 10703692 n 0101 01 + 07 00 | undergo a test; "She doesn't test well" -00670179 31 v 01 sit_out 0 001 @ 00668099 v 0000 01 + 08 00 | endure to the end -00670261 31 v 03 evaluate 1 pass_judgment 0 judge 0 026 @ 00628491 v 0000 + 10066732 n 0302 + 00874067 n 0301 + 05789432 n 0303 + 00649892 a 0102 ~ 00658052 v 0000 ~ 00670991 v 0000 ~ 00673983 v 0000 ~ 00674340 v 0000 ~ 00679937 v 0000 ~ 00681281 v 0000 ~ 00681429 v 0000 ~ 00682592 v 0000 ~ 00685683 v 0000 ~ 00686447 v 0000 ~ 00689344 v 0000 ~ 00712135 v 0000 ~ 00719734 v 0000 ~ 00726300 v 0000 ~ 00740053 v 0000 ~ 00807178 v 0000 ~ 00822367 v 0000 ~ 00855512 v 0000 ~ 02523784 v 0000 ~ 02523953 v 0000 ~ 02531625 v 0000 05 + 05 00 + 08 00 + 09 00 + 24 00 + 26 00 | form a critical opinion of; "I cannot judge some works of modern art"; "How do you evaluate this grant proposal?" "We shouldn't pass judgment on other people" -00670991 31 v 01 stand 1 004 @ 00670261 v 0000 + 06210363 n 0103 + 06196284 n 0102 ~ 00733632 v 0000 01 + 22 00 | have or maintain a position or stand on an issue; "Where do you stand on the War?" -00671190 31 v 01 misjudge 0 004 @ 00617748 v 0000 ~ 00671335 v 0000 ~ 00672017 v 0000 ~ 00712389 v 0000 02 + 08 00 + 09 00 | judge incorrectly -00671335 31 v 02 underestimate 1 underrate 0 005 @ 00671190 v 0000 + 05804491 n 0203 + 05804491 n 0102 ! 00672017 v 0101 ~ 00671653 v 0000 02 + 08 00 + 09 00 | make too low an estimate of; "he underestimated the work that went into the renovation"; "Don't underestimate the danger of such a raft trip on this river" -00671653 31 v 01 sell_short 0 001 @ 00671335 v 0000 02 + 08 00 + 09 00 | underestimate the real value or ability of; "Don't sell your students short--they are just shy and don't show off their knowledge" -00671859 31 v 02 overcapitalize 0 overcapitalise 0 001 @ 00672017 v 0000 02 + 08 00 + 11 00 | overestimate the market value of; "overcapitalize a property" -00672017 31 v 02 overestimate 0 overrate 0 007 @ 00671190 v 0000 + 05804274 n 0203 + 06528992 n 0101 + 06528992 n 0102 + 05804274 n 0102 ! 00671335 v 0101 ~ 00671859 v 0000 02 + 08 00 + 09 00 | make too high an estimate of; "He overestimated his own powers" -00672277 31 v 01 judge 2 004 @ 00698855 v 0000 + 10066732 n 0102 + 00874067 n 0101 ~ 01085237 v 0000 01 + 08 00 | determine the result of (a competition) -00672433 31 v 05 estimate 0 gauge 0 approximate 0 guess 1 judge 1 025 @ 00637259 v 0000 + 10066732 n 0502 + 05789432 n 0501 + 05789432 n 0503 + 06782680 n 0401 + 10150794 n 0401 + 00915976 a 0302 + 06783598 n 0101 + 06528783 n 0102 + 05803379 n 0101 + 06528783 n 0103 + 05803379 n 0102 + 00875246 n 0102 ^ 00672017 v 0101 ^ 00673766 v 0102 ~ 00673095 v 0000 ~ 00673341 v 0000 ~ 00673448 v 0000 ~ 00673571 v 0000 ~ 00673766 v 0000 ~ 00682230 v 0000 ~ 00698104 v 0000 ~ 00712556 v 0000 ~ 00740290 v 0000 ~ 00918746 v 0000 03 + 08 00 + 22 00 + 26 00 | judge tentatively or form an estimate of (quantities or time); "I estimate this chicken to weigh three pounds" -00673095 31 v 02 quantize 1 quantise 1 003 @ 00672433 v 0000 ;c 06128307 n 0000 + 00389308 n 0101 01 + 08 00 | approximate (a signal varying continuously in amplitude) by one whose amplitude is restricted to a prescribed set of discrete values -00673341 31 v 01 misgauge 0 001 @ 00672433 v 0000 01 + 08 00 | gauge something incorrectly or improperly -00673448 31 v 03 place d put d set d 001 @ 00672433 v 0000 01 + 08 00 | estimate; "We put the time of arrival at 8 P.M." -00673571 31 v 01 give 0 001 @ 00672433 v 0000 01 + 14 00 | estimate the duration or outcome of something; "He gave the patient three months to live"; "I gave him a very good chance at success" -00673766 31 v 02 lowball 0 underestimate 0 003 @ 00672433 v 0000 + 05804491 n 0201 + 05804491 n 0202 01 + 08 00 | make a deliberately low estimate; "The construction company wanted the contract badly and lowballed" -00673983 31 v 01 approve 0 008 @ 00670261 v 0000 + 00996089 a 0103 + 00996089 a 0104 + 07500612 n 0101 + 06687178 n 0101 + 07500159 n 0101 ! 00674340 v 0101 ~ 00674517 v 0000 03 + 02 00 + 08 00 + 09 00 | judge to be right or commendable; think well of -00674237 31 v 02 frown_on 0 frown_upon 0 001 @ 00674340 v 0000 01 + 08 00 | look disapprovingly upon -00674340 31 v 01 disapprove 0 005 @ 00670261 v 0000 + 07502829 n 0101 ! 00673983 v 0101 ~ 00674237 v 0000 ~ 00732837 v 0000 03 + 02 00 + 08 00 + 09 00 | consider bad or wrong -00674517 31 v 01 rubberstamp 0 001 @ 00673983 v 0000 01 + 08 00 | approve automatically -00674607 31 v 04 choose 0 take 1 select 0 pick_out 0 028 @ 00697589 v 0000 + 01863246 a 0301 + 00775693 a 0301 + 00161243 n 0302 + 10431625 n 0303 ~ 00625963 v 0000 ~ 00675412 v 0000 ~ 00675592 v 0000 ~ 00675768 v 0000 ~ 00675901 v 0000 ~ 00676135 v 0000 ~ 00676267 v 0000 ~ 00676450 v 0000 ~ 00676864 v 0000 ~ 00677021 v 0000 ~ 00677203 v 0000 ~ 00677445 v 0000 ~ 00677544 v 0000 ~ 00677683 v 0000 ~ 00679239 v 0000 ~ 00723222 v 0000 ~ 00947077 v 0000 ~ 02346895 v 0000 ~ 02400378 v 0000 ~ 02400637 v 0000 ~ 02400760 v 0000 ~ 02401523 v 0000 ~ 02461314 v 0000 03 + 08 00 + 09 00 + 02 01 | pick out, select, or choose from a number of alternatives; "Take any one of these cards"; "Choose a good husband for your daughter"; "She selected a pair of shoes from among the dozen the salesgirl had shown her" -00675412 31 v 01 anoint 0 001 @ 00674607 v 0000 02 + 09 00 + 10 00 | choose by or as if by divine intervention; "She was anointed the head of the Christian fundamentalist group" -00675592 31 v 01 field 0 001 @ 00674607 v 0000 01 + 09 00 | select (a team or individual player) for a game; "The Buckeyes fielded a young new quarterback for the Rose Bowl" -00675768 31 v 02 sieve 0 sift 0 001 @ 00674607 v 0000 01 + 09 00 | distinguish and separate out; "sift through the job candidates" -00675901 31 v 01 draw d 003 @ 00674607 v 0000 + 03233246 n 0101 + 03233423 n 0101 02 + 20 00 + 21 00 | select or take in from a given group or region; "The participants in the experiment were drawn from a representative population" -00676135 31 v 01 dial 0 002 @ 00674607 v 0000 + 03186818 n 0101 01 + 08 00 | choose by means of a dial; "dial a telephone number" -00676267 31 v 02 plump c go c 001 @ 00674607 v 0000 02 + 08 00 + 09 00 | give support (to) or make a choice (of) one out of a group or number; "I plumped for the losing candidates" -00676450 31 v 01 pick 0 006 @ 00674607 v 0000 + 00161243 n 0104 + 08387035 n 0102 + 05790242 n 0102 + 10431625 n 0101 ~ 00676714 v 0000 03 + 08 00 + 09 00 + 22 00 | select carefully from a group; "She finally picked her successor"; "He picked his way carefully" -00676714 31 v 01 hand-pick 0 001 @ 00676450 v 0000 02 + 08 00 + 09 00 | pick personally and very carefully; "the director hand-picked his new team" -00676864 31 v 01 elect 0 002 @ 00674607 v 0000 + 00847577 a 0101 03 + 08 00 + 09 00 + 28 00 | choose; "I elected to have my funds deposited automatically" -00677021 31 v 03 excerpt 0 extract 0 take_out 1 003 @ 00674607 v 0000 + 06400510 n 0203 + 06400510 n 0101 02 + 08 00 + 21 00 | take out of a literary work in order to cite or copy -00677203 31 v 02 cull_out 0 winnow 0 001 @ 00674607 v 0000 01 + 11 00 | select desirable parts from a group or list; "cull out the interesting letters from the poet's correspondence"; "winnow the finalists from the long list of applicants" -00677445 31 v 02 cream_off 0 skim_off 0 001 @ 00674607 v 0000 02 + 08 00 + 09 00 | pick the best -00677544 31 v 02 sieve_out 0 pick_over 0 001 @ 00674607 v 0000 01 + 08 00 | separate or remove; "The customer picked over the selection" -00677683 31 v 03 assign 0 specify 5 set_apart 0 005 @ 00674607 v 0000 + 07231199 n 0201 + 00796586 n 0101 ~ 00677966 v 0000 ~ 00678105 v 0000 02 + 20 00 + 21 00 | select something or someone for a specific purpose; "The teacher assigned him to lead his classmates in the exercise" -00677966 31 v 01 dedicate 0 002 @ 00677683 v 0000 + 07452348 n 0101 01 + 08 00 | set apart to sacred uses with solemn rites, of a church -00678105 31 v 01 detail 0 003 @ 00677683 v 0000 + 08404549 n 0102 + 08243081 n 0101 01 + 21 00 | assign to a specific task; "The ambulances were detailed to the fire station" -00678282 31 v 01 schedule 0 007 @ 00704690 v 0000 + 05910940 n 0103 + 01144355 n 0101 ~ 00678547 v 0000 ~ 00678777 v 0000 ~ 00678981 v 0000 ~ 00679112 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | plan for an activity or event; "I've scheduled a concert next week" -00678547 31 v 01 time 0 003 @ 00678282 v 0000 + 15245515 n 0101 + 05046009 n 0101 04 + 08 00 + 09 00 + 20 00 + 21 00 | assign a time for an activity or event; "The candidate carefully timed his appearance at the disaster scene" -00678777 31 v 01 book 0 003 @ 00678282 v 0000 + 09865954 n 0101 + 00270919 n 0102 04 + 08 00 + 09 00 + 20 00 + 21 00 | engage for a performance; "Her agent had booked her for several concerts in Tokyo" -00678981 31 v 01 calendar 0 003 @ 00678282 v 0000 + 08266849 n 0101 + 06487395 n 0101 02 + 08 00 + 09 00 | enter into a calendar -00679112 31 v 01 slot 0 002 @ 00678282 v 0000 + 15270245 n 0102 01 + 08 00 | assign a time slot; "slot a television program" -00679239 31 v 01 single_out 0 001 @ 00674607 v 0000 02 + 08 00 + 09 00 | select from a group; "She was singled out for her outstanding performance" -00679389 31 v 03 choose 2 prefer 0 opt 0 006 * 00652900 v 0000 + 03094006 a 0301 + 00161243 n 0303 + 00198631 n 0201 + 06200344 n 0202 ~ 00679715 v 0000 02 + 08 00 + 26 00 | select as an alternative over another; "I always choose the fish over the meat courses in this restaurant"; "She opted for the job on the East coast" -00679715 31 v 02 opt_out 0 cop_out 0 002 @ 00679389 v 0000 + 00069060 n 0201 02 + 02 00 + 22 00 | choose not to do something, as out of fear of failing; "She copped out when she was supposed to get into the hang glider" -00679937 31 v 01 choose 1 001 @ 00670261 v 0000 02 + 26 00 + 28 00 | see fit or proper to act in a certain way; decide to act in a certain way; "She chose not to attend classes and now she failed the exam" -00680145 31 v 02 prejudice 0 prepossess 0 005 @ 02536557 v 0000 + 05949937 n 0202 + 06201908 n 0102 ~ 00680346 v 0000 ~ 01085677 v 0000 02 + 09 00 + 10 00 | influence (somebody's) opinion in advance -00680346 31 v 02 bias 0 predetermine 1 003 @ 00680145 v 0000 + 06201908 n 0101 ~ 00680485 v 0000 02 + 09 00 + 10 00 | cause to be biased -00680485 31 v 03 slant 0 angle 0 weight 0 003 @ 00680346 v 0000 + 13589321 n 0301 + 06211078 n 0101 02 + 08 00 + 09 00 | present with a bias; "He biased his presentation so as to please the share holders" -00680692 31 v 01 predispose 0 002 @ 00680841 v 0000 + 06200178 n 0101 01 + 10 00 | make susceptible; "This illness predisposes you to gain weight" -00680841 31 v 02 dispose 0 incline 3 006 @ 00701040 v 0000 + 07498854 n 0201 + 06196584 n 0201 + 06196584 n 0102 ! 00681125 v 0101 ~ 00680692 v 0000 02 + 10 00 + 24 00 | make receptive or willing towards an action or attitude or belief; "Their language inclines us to believe them" -00681125 31 v 02 indispose 0 disincline 0 004 @ 00701040 v 0000 + 04645943 n 0204 + 04645943 n 0105 ! 00680841 v 0101 02 + 10 00 + 24 00 | make unwilling -00681281 31 v 01 prejudge 0 002 @ 00670261 v 0000 + 05789666 n 0102 02 + 08 00 + 09 00 | judge beforehand, especially without sufficient evidence -00681429 31 v 06 measure 1 evaluate 0 valuate 0 assess 0 appraise 1 value 0 029 @ 00670261 v 0000 + 13413493 n 0601 + 10745894 n 0601 + 09802239 n 0501 + 09802050 n 0501 + 05733583 n 0501 + 02400471 a 0401 + 05733583 n 0402 + 10692883 n 0402 + 05736149 n 0302 + 13413493 n 0301 + 05138488 n 0301 + 09802050 n 0302 + 00649892 a 0202 + 13413493 n 0201 + 05138488 n 0201 + 05736149 n 0201 + 00874806 n 0201 + 10066732 n 0201 + 03735637 n 0102 + 00996969 n 0103 + 00033615 n 0101 ~ 00657728 v 0000 ~ 00660971 v 0000 $ 00682230 v 0000 ~ 00682436 v 0000 ~ 00682781 v 0000 ~ 00682928 v 0000 ~ 00856824 v 0000 01 + 08 00 | evaluate or estimate the nature, quality, ability, extent, or significance of; "I will have the family jewels appraised by a professional"; "access all the factors when taking a risk" -00682230 31 v 01 assess 1 004 $ 00681429 v 0000 @ 00672433 v 0000 + 02400471 a 0101 + 05146055 n 0101 01 + 08 00 | estimate the value of (property) for taxation; "Our house hasn't been assessed in years" -00682436 31 v 02 standardize 0 standardise 0 003 @ 00681429 v 0000 + 00999245 n 0203 + 01158690 n 0101 01 + 08 00 | evaluate by comparing with a standard -00682592 31 v 01 reappraise 0 002 @ 00670261 v 0000 + 05747582 n 0101 01 + 08 00 | appraise anew; "Homes in our town are reappraised every five years and taxes are increased accordingly" -00682781 31 v 02 reassess 0 reevaluate 0 003 @ 00681429 v 0000 + 05737025 n 0201 + 05747582 n 0104 01 + 08 00 | revise or renew one's assessment -00682928 31 v 01 censor 0 003 @ 00681429 v 0000 + 09903639 n 0101 ~ 00200863 v 0000 01 + 08 00 | subject to political, religious, or moral censorship; "This magazine is censored by the government" -00683127 31 v 01 bethink 0 001 @ 00630380 v 0000 02 + 08 00 + 29 00 | consider or ponder something carefully; "She bethought her of their predicament" -00683280 31 v 01 believe 0 011 @ 00686447 v 0000 + 00644839 a 0102 + 05941423 n 0101 + 09848489 n 0101 ! 00684645 v 0101 ~ 00593522 v 0000 ~ 00601659 v 0000 ~ 00683670 v 0000 ~ 00684273 v 0000 ~ 00688377 v 0000 ~ 00733895 v 0000 03 + 08 00 + 09 00 + 26 00 | accept as true; take to be true; "I believed his report"; "We didn't believe his stories from the War"; "She believes in spirits" -00683670 31 v 01 buy 9 001 @ 00683280 v 0000 01 + 08 00 | accept as true; "I can't buy this story" -00683771 31 v 01 hold 8 002 @ 01011031 v 0000 $ 00693780 v 0000 01 + 26 00 | assert or affirm; "Rousseau's philosophy holds that people are inherently good" -00683930 31 v 01 credit 0 002 @ 00688377 v 0000 ~ 00684068 v 0000 02 + 08 00 + 09 00 | have trust in; trust in the truth or veracity of -00684068 31 v 01 believe 2 002 @ 00683930 v 0000 + 00644839 a 0102 02 + 08 00 + 09 00 | credit with veracity; "You cannot believe this man"; "Should we believe a publication like the National Enquirer?" -00684273 31 v 01 believe 1 004 @ 00683280 v 0000 ;c 05946687 n 0000 + 09847727 n 0101 ~ 00684507 v 0000 02 + 02 00 + 22 00 | follow a credo; have a faith; be a believer; "When you hear his sermons, you will be able to believe, too" -00684507 31 v 01 misbelieve 0 003 @ 00684273 v 0000 ;c 05946687 n 0000 + 10171755 n 0102 01 + 02 00 | hold a false or unorthodox belief -00684645 31 v 02 disbelieve 0 discredit 0 005 @ 00685683 v 0000 + 10015897 n 0101 ! 00683280 v 0101 ~ 00687295 v 0000 ~ 00687926 v 0000 02 + 08 00 + 09 00 | reject as false; refuse to accept -00684838 31 v 01 include 0 007 @ 00690614 v 0000 + 01863680 a 0101 + 00373130 n 0101 ! 00615774 v 0101 ~ 00685081 v 0000 ~ 00685224 v 0000 ~ 00738951 v 0000 01 + 08 00 | consider as part of something; "I include you in the list of culprits" -00685081 31 v 01 count 0 001 @ 00684838 v 0000 02 + 20 00 + 21 00 | include as if by counting; "I can count my colleagues in the opposition" -00685224 31 v 02 subsume 1 colligate 0 003 @ 00684838 v 0000 + 05764197 n 0201 + 05736002 n 0101 02 + 08 00 + 21 00 | consider (an instance of something) as part of a general rule or principle -00685419 31 v 04 rule_out 0 eliminate 0 winnow_out 0 reject 2 000 02 + 08 00 + 09 00 | dismiss from consideration or a contest; "John was ruled out as a possible suspect because he had a strong alibi"; "This possibility can be eliminated from our consideration" -00685683 31 v 01 reject 0 010 @ 00670261 v 0000 + 00076341 a 0101 + 00203342 n 0101 ! 00686447 v 0101 ~ 00684645 v 0000 ~ 00686039 v 0000 ~ 00686249 v 0000 ~ 00687181 v 0000 ~ 00757544 v 0000 ~ 00800930 v 0000 03 + 08 00 + 09 00 + 26 00 | refuse to accept or acknowledge; "I reject the idea of starting a war"; "The journal rejected the student's paper" -00686039 31 v 01 repudiate 0 003 @ 00685683 v 0000 + 00076739 a 0101 + 07205718 n 0101 02 + 08 00 + 11 00 | refuse to acknowledge, ratify, or recognize as valid; "The woman repudiated the divorce settlement" -00686249 31 v 01 recuse 0 003 @ 00685683 v 0000 ;c 08441203 n 0000 + 01026020 n 0101 02 + 09 00 + 10 00 | challenge or except to a judge as being incompetent or interested, in canon and civil law -00686447 31 v 01 accept 0 016 $ 00719231 v 0000 @ 00670261 v 0000 + 01985557 a 0102 + 14412725 n 0101 + 06602801 n 0103 + 06193727 n 0102 ! 00685683 v 0101 ~ 00592883 v 0000 ~ 00601822 v 0000 ~ 00683280 v 0000 ~ 00686879 v 0000 ~ 00687033 v 0000 ~ 00732394 v 0000 ~ 00740449 v 0000 ~ 00899204 v 0000 ~ 02457233 v 0000 02 + 08 00 + 26 00 | consider or hold as true; "I cannot accept the dogma of this church"; "accept an argument" -00686879 31 v 01 receive 0 003 @ 00686447 v 0000 + 01773420 a 0101 + 01985247 a 0101 02 + 08 00 + 09 00 | accept as true or valid; "He received Christ" -00687033 31 v 01 approbate 0 004 @ 00686447 v 0000 + 07500612 n 0101 + 06687178 n 0101 ! 00687181 v 0101 01 + 08 00 | accept (documents) as valid -00687181 31 v 01 reprobate 0 002 @ 00685683 v 0000 ! 00687033 v 0101 01 + 08 00 | reject (documents) as invalid -00687295 31 v 01 doubt 0 004 @ 00684645 v 0000 + 05698247 n 0101 + 09779124 n 0102 + 10604634 n 0103 03 + 08 00 + 09 00 + 26 01 | consider unlikely or have doubts about; "I doubt that she will accept his proposal of marriage" -00687523 31 v 01 doubt 1 002 @ 00687926 v 0000 + 04757522 n 0101 02 + 08 00 + 09 00 | lack confidence in or have doubts about; "I doubt these reports"; "I suspect her true motives"; "she distrusts her stepmother" -00687738 31 v 01 discredit 1 002 @ 00800930 v 0000 + 14439745 n 0102 01 + 08 00 | cause to be distrusted or disbelieved; "The paper discredited the politician with its nasty commentary" -00687926 31 v 03 distrust 0 mistrust 0 suspect 0 010 @ 00684645 v 0000 + 10681383 n 0301 + 05698791 n 0304 + 04895773 n 0203 + 05698791 n 0202 ! 00688377 v 0201 + 04895773 n 0101 + 05698791 n 0103 ! 00688377 v 0101 ~ 00687523 v 0000 02 + 08 00 + 09 00 | regard as untrustworthy; regard with suspicion; have no faith or confidence in -00688261 31 v 01 lean a 001 @ 00688377 v 0000 02 + 09 00 + 10 00 | rely on for support; "We can lean on this man" -00688377 31 v 04 trust 0 swear a rely b bank 2 010 @ 00683280 v 0000 + 00727113 a 0301 + 14001728 n 0301 + 05697976 n 0301 + 05943066 n 0102 ! 00687926 v 0102 ! 00687926 v 0101 ~ 00683930 v 0000 ~ 00688261 v 0000 ~ 00712708 v 0000 01 + 22 00 | have confidence or faith in; "We can trust in God"; "Rely on your friends"; "bank on your good education"; "I swear by my grandmother's recipes" -00688768 31 v 01 rethink 0 004 @ 00689344 v 0000 + 05790012 n 0104 ~ 00688960 v 0000 ~ 00689068 v 0000 02 + 02 00 + 08 01 | change one's mind; "He rethought his decision to take a vacation" -00688960 31 v 01 backpedal 0 001 @ 00688768 v 0000 01 + 02 00 | modify one's opinion, make it less strong -00689068 31 v 01 about-face 0 002 @ 00688768 v 0000 + 00163406 n 0101 01 + 02 00 | change one's mind and assume the opposite viewpoint -00689205 31 v 01 surmise 0 003 @ 00636574 v 0000 + 06782680 n 0104 + 06782680 n 0105 02 + 08 00 + 26 00 | infer from incomplete evidence -00689344 31 v 04 think 1 believe 4 consider 8 conceive 0 011 @ 00670261 v 0000 + 07138915 n 0301 + 05784831 n 0301 + 05945642 n 0105 + 05833840 n 0102 ~ 00607000 v 0000 ~ 00688768 v 0000 ~ 00689809 v 0000 ~ 00689950 v 0000 ~ 00690305 v 0000 ~ 00690614 v 0000 02 + 05 00 + 09 00 | judge or regard; look upon; judge; "I think he is very smart"; "I believe her to be very smart"; "I think that he is her boyfriend"; "The racist conceives such people to be inferior" -00689809 31 v 01 think f 002 @ 00689344 v 0000 + 05954481 n 0101 01 + 02 00 | dispose the mind in a certain way; "Do you really think so?" -00689950 31 v 07 think_of 1 repute 0 regard_as 0 look_upon 0 look_on 0 esteem 0 take_to_be 0 005 @ 00689344 v 0000 + 14439294 n 0201 + 14438125 n 0202 + 06207199 n 0201 + 14438125 n 0201 02 + 08 00 + 09 00 | look on as or consider; "she looked on this affair as a joke"; "He thinks of himself as a brilliant musician"; "He is reputed to be intelligent" -00690305 31 v 01 feel 1 002 @ 00689344 v 0000 + 07513035 n 0101 04 + 05 00 + 20 00 + 21 00 + 24 00 | have a feeling or perception about oneself in reaction to someone's behavior or attitude; "She felt small and insignificant"; "You make me feel naked"; "I made the students feel different about themselves" -00690614 31 v 05 see 0 consider 0 reckon 0 view 0 regard 0 025 $ 00623151 v 0000 @ 00689344 v 0000 + 06782019 n 0402 + 05945642 n 0404 + 06208751 n 0402 ~ 00592702 v 0000 ~ 00617095 v 0000 ~ 00654015 v 0000 ~ 00654258 v 0000 ~ 00684838 v 0000 ~ 00691312 v 0000 ~ 00691516 v 0000 ~ 00691665 v 0000 ~ 00691834 v 0000 ~ 00691944 v 0000 ~ 00692143 v 0000 ~ 00692329 v 0000 ~ 00692580 v 0000 ~ 00692907 v 0000 ~ 00693780 v 0000 ~ 00694068 v 0000 ~ 00694641 v 0000 ~ 00698256 v 0000 ~ 00731000 v 0000 ~ 02256109 v 0000 04 + 05 00 + 08 00 + 20 00 + 21 00 | deem to be; "She views this quite differently from me"; "I consider her to be shallow"; "I don't see the situation quite as negatively as you do" -00691312 31 v 01 consider 5 003 @ 00690614 v 0000 + 04841358 n 0101 + 01229793 n 0101 03 + 05 00 + 20 00 + 21 00 | regard or treat with consideration, respect, and esteem; "Please consider your family" -00691516 31 v 01 call 5 002 @ 00690614 v 0000 $ 00971015 v 0000 02 + 08 00 + 09 00 | consider or regard as being; "I would not call her beautiful" -00691665 31 v 01 like 0 001 @ 00690614 v 0000 01 + 08 00 | feel about or towards; consider, evaluate, or regard; "How did you like the President's speech last night?" -00691834 31 v 02 relativize 0 relativise 0 001 @ 00690614 v 0000 01 + 08 00 | consider or treat as relative -00691944 31 v 01 identify 4 003 @ 00690614 v 0000 + 04618581 n 0101 + 04743024 n 0101 03 + 02 00 + 17 00 + 22 00 | consider (oneself) as similar to somebody else; "He identified with the refugees" -00692143 31 v 02 favor 0 favour 0 003 @ 00690614 v 0000 + 07500414 n 0101 + 05156319 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | consider as the favorite; "The local team was favored" -00692329 31 v 01 abstract 0 006 @ 00690614 v 0000 + 00860932 a 0101 + 05854150 n 0101 + 00002137 n 0101 + 05780104 n 0101 + 05854150 n 0102 01 + 08 00 | consider a concept without thinking of a specific example; consider abstractly or theoretically -00692580 31 v 01 reify 0 003 @ 00690614 v 0000 + 00932804 n 0103 ~ 00692718 v 0000 01 + 08 00 | consider an abstract concept to be real -00692718 31 v 02 hypostatize 0 hypostatise 0 004 @ 00692580 v 0000 + 00932804 n 0202 + 00932804 n 0101 + 05921868 n 0101 01 + 08 00 | construe as a real existence, of a conceptual entity -00692907 31 v 02 idealize 0 idealise 0 007 @ 00690614 v 0000 + 13495636 n 0202 + 05923696 n 0201 + 01219075 n 0101 + 05923696 n 0101 ~ 00693172 v 0000 ~ 00693401 v 0000 02 + 08 00 + 09 00 | consider or render as ideal; "She idealized her husband after his death" -00693172 31 v 04 romanticize 0 romanticise 0 glamorize 1 glamourise 1 003 @ 00692907 v 0000 + 01219306 n 0204 + 01219306 n 0103 02 + 08 00 + 09 00 | interpret romantically; "Don't romanticize this uninteresting and hard work!" -00693401 31 v 01 deify 0 006 @ 00692907 v 0000 + 10418577 n 0101 + 14575063 n 0101 + 01029114 n 0101 + 09505418 n 0101 ~ 00693633 v 0000 02 + 08 00 + 09 00 | consider as a god or godlike; "These young men deify financial success" -00693633 31 v 03 apotheosize 0 apotheosise 0 apotheose 0 003 @ 00693401 v 0000 + 10325243 n 0205 + 10325243 n 0105 01 + 09 00 | deify or glorify -00693780 31 v 04 deem 0 hold 1 view_as 0 take_for 0 002 $ 00683771 v 0000 @ 00690614 v 0000 03 + 05 00 + 14 00 + 26 00 | keep in mind or convey as a conviction or view; "take for granted"; "view as important"; "hold these truths to be self-evident"; "I hold him personally responsible" -00694068 31 v 05 respect 0 esteem 1 value 1 prize 0 prise 0 015 @ 00690614 v 0000 + 02587738 a 0301 + 05923983 n 0301 + 06206800 n 0202 + 07500741 n 0202 + 14437552 n 0201 ! 00694641 v 0202 + 01228877 n 0102 + 06206800 n 0101 + 14437552 n 0103 + 10524223 n 0101 ! 00694641 v 0101 ~ 00694508 v 0000 ~ 01778568 v 0000 ~ 01827858 v 0000 02 + 08 00 + 09 00 | regard highly; think much of; "I respect his judgement"; "We prize his creativity" -00694508 31 v 01 think_the_world_of 0 001 @ 00694068 v 0000 01 + 09 00 | esteem very highly; "She thinks the world of her adviser" -00694641 31 v 02 disrespect 0 disesteem 0 006 @ 00690614 v 0000 + 14437845 n 0201 ! 00694068 v 0202 + 04915687 n 0102 ! 00694068 v 0101 ~ 00694866 v 0000 02 + 08 00 + 09 00 | have little or no respect for; hold in contempt -00694866 31 v 01 undervalue 1 002 @ 00694641 v 0000 + 05736593 n 0101 02 + 08 00 + 09 00 | esteem lightly -00694974 31 v 01 assay 0 004 @ 00644583 v 0000 + 00791527 n 0101 + 09814252 n 0101 ~ 00695120 v 0000 01 + 08 00 | analyze (chemical substances) -00695120 31 v 01 bioassay 0 002 @ 00694974 v 0000 + 05740300 n 0101 01 + 08 00 | subject to a bio-assay -00695226 31 v 01 value 3 006 @ 00699815 v 0000 + 13413493 n 0101 + 10745894 n 0101 ~ 00695475 v 0000 ~ 00695761 v 0000 ~ 00696042 v 0000 01 + 21 00 | fix or determine the value of; assign a value to; "value the jewelry and art work in the estate" -00695475 31 v 02 overvalue 0 overestimate 2 008 @ 00695226 v 0000 + 06528992 n 0201 + 05804274 n 0201 + 06528992 n 0202 ! 00695761 v 0202 + 06528992 n 0103 + 05736468 n 0101 ! 00695761 v 0101 01 + 08 00 | assign too high a value to; "You are overestimating the value of your old car" -00695761 31 v 02 undervalue 0 underestimate 2 006 @ 00695226 v 0000 + 05804491 n 0201 + 05804491 n 0202 ! 00695475 v 0202 + 05736593 n 0101 ! 00695475 v 0101 01 + 08 00 | assign too low a value to; "Don't underestimate the value of this heirloom-you may sell it at a good price" -00696042 31 v 01 float 0 001 @ 00695226 v 0000 01 + 08 00 | allow (currencies) to fluctuate; "The government floated the ruble for a few months" -00696189 31 v 02 review 0 reexamine 0 006 @ 00644583 v 0000 + 00143251 n 0203 + 01197258 n 0101 + 00143251 n 0104 + 05747582 n 0103 + 09942431 n 0102 01 + 08 00 | look at again; examine again; "let's review your situation" -00696414 31 v 03 review 1 look_back 0 retrospect 0 006 @ 00611256 v 0000 + 01884539 a 0301 + 06766654 n 0301 + 05764973 n 0301 + 05788029 n 0301 + 06469377 n 0103 01 + 08 00 | look back upon (a period of time, sequence of events); remember; "she reviewed her achievements with pride" -00696700 31 v 03 review 2 go_over 0 survey 3 003 @ 02165543 v 0000 + 00644503 n 0301 + 00879271 n 0102 02 + 08 00 + 09 00 | hold a review (of troops) -00696852 31 v 03 review 4 brush_up 0 refresh 0 004 @ 00607780 v 0000 + 00891850 n 0302 + 00897811 n 0202 + 00897811 n 0101 02 + 08 00 + 22 02 | refresh one's memory; "I reviewed the material before the test" -00697062 31 v 04 audit 1 scrutinize 0 scrutinise 0 inspect 0 010 @ 00644583 v 0000 + 10067968 n 0402 + 10565302 n 0302 + 00878052 n 0301 + 00635850 n 0302 + 10565302 n 0201 + 00878052 n 0201 + 00635850 n 0202 + 09822955 n 0101 + 13411157 n 0102 01 + 08 00 | examine carefully for accuracy with the intent of verification; "audit accounts and tax returns" -00697419 31 v 01 screen 0 004 * 00471711 v 0000 @ 00644583 v 0000 + 10564224 n 0101 + 00644967 n 0101 02 + 08 00 + 09 00 | examine methodically; "screen the suitcases" -00697589 31 v 03 decide 0 make_up_one's_mind 0 determine 0 016 * 00812580 v 0000 + 00684782 a 0302 + 05838176 n 0302 + 00162632 n 0302 + 00685638 a 0101 + 00162632 n 0101 + 05788149 n 0102 ~ 00647094 v 0000 ~ 00674607 v 0000 ~ 00698398 v 0000 ~ 00698732 v 0000 ~ 00699626 v 0000 ~ 00715868 v 0000 ~ 02159197 v 0000 ~ 02501278 v 0000 ~ 02511551 v 0000 07 + 08 00 + 26 03 + 29 03 + 02 02 + 02 01 + 26 01 + 29 01 | reach, make, or come to a decision about something; "We finally decided after lengthy deliberations" -00698104 31 v 01 make c 003 $ 00730758 v 0000 @ 00672433 v 0000 $ 00698256 v 0000 01 + 05 00 | calculate as being; "I make the height about 100 feet" -00698256 31 v 01 make a 002 $ 00698104 v 0000 @ 00690614 v 0000 01 + 05 00 | consider as being; "It wasn't the problem some people made it" -00698398 31 v 01 will 1 004 @ 00697589 v 0000 + 05983654 n 0101 + 05652593 n 0102 + 00163047 n 0102 01 + 08 00 | determine by choice; "This action was willed and intended" -00698572 31 v 01 design 6 002 @ 00708538 v 0000 + 05982152 n 0105 01 + 28 00 | intend or have as a purpose; "She designed to go far in the world of business" -00698732 31 v 01 seal 0 002 @ 00697589 v 0000 + 06705984 n 0102 02 + 08 00 + 26 00 | decide irrevocably; "sealing dooms" -00698855 31 v 04 decide 1 settle 0 resolve 1 adjudicate 0 011 @ 00352826 v 0000 + 02603926 a 0401 + 02603926 a 0402 + 10225219 n 0401 + 06511874 n 0303 + 07177924 n 0201 + 10583916 n 0201 + 00685638 a 0101 + 05788149 n 0102 ~ 00672277 v 0000 ~ 00699334 v 0000 02 + 08 00 + 11 00 | bring to an end; settle conclusively; "The case was decided"; "The judge decided the case in favor of the plaintiff"; "The father adjudicated when the sons were quarreling over their inheritance" -00699334 31 v 01 adjust 0 003 @ 00698855 v 0000 + 13274092 n 0102 + 09769929 n 0102 01 + 08 00 | decide how much is to be paid on an insurance claim -00699485 31 v 01 decide 2 002 > 00697589 v 0000 @ 00770437 v 0000 01 + 10 00 | cause to decide; "This new development finally decided me!" -00699626 31 v 02 purpose 0 resolve 2 004 @ 00697589 v 0000 + 06511874 n 0203 + 00180228 n 0201 + 04864200 n 0102 02 + 26 00 + 28 00 | reach a decision; "he resolved never to drink again" -00699815 31 v 02 determine 1 set 4 012 + 06199702 n 0202 + 05838176 n 0102 + 00162632 n 0102 ~ 00618878 v 0000 ~ 00619183 v 0000 ~ 00695226 v 0000 ~ 00700162 v 0000 ~ 00700336 v 0000 ~ 00700517 v 0000 ~ 00700896 v 0000 ~ 02308389 v 0000 ~ 02351010 v 0000 04 + 08 00 + 11 00 + 26 00 + 27 00 | fix conclusively or authoritatively; "set the rules" -00700162 31 v 01 filiate 0 003 @ 00699815 v 0000 ;c 08441203 n 0000 + 13813042 n 0104 01 + 08 00 | fix the paternity of; "The court filiated the child born out of wedlock" -00700336 31 v 01 format a 003 @ 00699815 v 0000 + 06636806 n 0101 + 06636806 n 0102 01 + 08 00 | determine the arrangement of (data) for storage and display (in computer science) -00700517 31 v 01 charge c 002 @ 00699815 v 0000 + 13306870 n 0101 01 + 08 00 | set or ask for a certain price; "How much do you charge for lunch?"; "This fellow charges $100 for a massage" -00700708 31 v 01 determine 3 003 @ 02611630 v 0000 + 00151497 n 0101 ~ 00715541 v 0000 01 + 11 00 | fix in scope; fix the boundaries of; "the tree determines the border of the property" -00700896 31 v 02 initialize 0 initialise 0 002 @ 00699815 v 0000 + 06637350 n 0102 01 + 08 00 | assign an initial value to a computer program -00701040 31 v 05 determine 2 shape 0 mold 0 influence 0 regulate 0 019 @ 01645601 v 0000 + 00805034 n 0501 + 11414608 n 0401 + 10461747 n 0401 + 00157081 n 0401 + 05930736 n 0202 + 05941210 n 0201 + 13555446 n 0201 + 05692419 n 0101 ~ 00680841 v 0000 ~ 00681125 v 0000 ~ 00701576 v 0000 ~ 00701724 v 0000 ~ 00701877 v 0000 ~ 00702065 v 0000 ~ 00702226 v 0000 ~ 00702434 v 0000 ~ 00702601 v 0000 ~ 00702773 v 0000 02 + 11 00 + 29 00 | shape or influence; give direction to; "experience often determines ability"; "mold public opinion" -00701576 31 v 01 miscreate 0 002 @ 00701040 v 0000 + 07367091 n 0102 02 + 08 00 + 11 00 | shape or form or make badly; "Our miscreated fantasies" -00701724 31 v 01 carry_weight 0 001 @ 00701040 v 0000 02 + 01 00 + 02 00 | have influence to a specified degree; "Her opinion carries a lot of weight" -00701877 31 v 01 decide 6 002 @ 00701040 v 0000 + 00684480 a 0101 01 + 11 00 | influence or determine; "The vote in New Hampshire often decides the outcome of the Presidential election" -00702065 31 v 01 reshape 0 001 @ 00701040 v 0000 01 + 08 00 | shape anew or differently; "The new foreign minister reshaped the foreign policy of his country" -00702226 31 v 01 time 1 003 @ 00701040 v 0000 + 15245515 n 0101 + 04438304 n 0101 02 + 08 00 + 11 00 | set the speed, duration, or execution of; "we time the process to manufacture our cars very precisely" -00702434 31 v 01 index 0 003 @ 00701040 v 0000 + 13851067 n 0101 + 00805868 n 0101 01 + 08 00 | adjust through indexation; "The government indexes wages and prices" -00702601 31 v 01 pace 0 004 @ 00701040 v 0000 + 15283097 n 0102 + 05058580 n 0101 + 02388143 n 0101 02 + 08 00 + 09 00 | regulate or set the pace of; "Pace your efforts" -00702773 31 v 01 predetermine 0 006 @ 00701040 v 0000 + 05838530 n 0101 + 00155970 n 0101 + 05966129 n 0104 ~ 00702969 v 0000 ~ 00703310 v 0000 03 + 11 00 + 26 00 + 29 00 | determine beforehand -00702969 31 v 03 predestine 0 foreordain 0 preordain 0 005 @ 00702773 v 0000 + 05966129 n 0303 + 05966129 n 0202 + 07330666 n 0101 ~ 00703184 v 0000 03 + 11 00 + 26 00 + 29 00 | foreordain or determine beforehand -00703184 31 v 01 jinx 0 002 @ 00702969 v 0000 + 10224446 n 0102 01 + 10 00 | foredoom to failure; "This project is jinxed!" -00703310 31 v 03 predestine 1 predestinate 0 foreordain 1 004 @ 00702773 v 0000 ;c 06183899 n 0000 + 05966129 n 0302 + 05966129 n 0101 03 + 09 00 + 10 00 + 26 00 | foreordain by divine will or decree -00703512 31 v 01 cogitate 1 004 @ 00630380 v 0000 + 02419933 a 0101 + 05835568 n 0101 + 05784242 n 0101 02 + 08 00 + 29 00 | consider carefully and deeply; reflect upon; turn over in one's mind -00703708 31 v 01 see 8 001 @ 00813044 v 0000 01 + 29 00 | deliberate or decide; "See whether you can come tomorrow"; "let's see--which movie should we see tonight?" -00703875 31 v 01 contemplate 2 003 @ 00734054 v 0000 + 05785508 n 0101 ~ 00711715 v 0000 02 + 08 00 + 33 00 | consider as a possibility; "I contemplated leaving school and taking a full-time job" -00704073 31 v 01 premeditate 0 003 @ 00813044 v 0000 + 05796222 n 0101 + 05796617 n 0101 01 + 08 00 | consider, ponder, or plan (an action) beforehand; "premeditated murder" -00704249 31 v 02 brood 0 dwell 0 002 @ 01766748 v 0000 ^ 02640226 v 0201 02 + 22 00 + 02 01 | think moodily or anxiously about something -00704388 31 v 03 study 4 meditate 2 contemplate 0 008 @ 00628491 v 0000 + 02419434 a 0303 + 05785508 n 0301 + 02419434 a 0204 + 05786184 n 0201 + 05785885 n 0201 + 05784242 n 0102 + 05705355 n 0101 01 + 02 00 | think intently and at length, as for spiritual purposes; "He is meditating in his study" -00704690 31 v 01 plan 0 016 @ 00628491 v 0000 + 05728678 n 0102 + 05898568 n 0101 + 03956785 n 0101 + 10438172 n 0101 + 01144133 n 0101 ~ 00678282 v 0000 ~ 00705095 v 0000 ~ 00706243 v 0000 ~ 00706804 v 0000 ~ 00708128 v 0000 ~ 00708376 v 0000 ~ 00709379 v 0000 ~ 00710005 v 0000 ~ 00711040 v 0000 ~ 00794981 v 0000 02 + 08 00 + 33 00 | make plans for something; "He is planning a trip with his family" -00705095 31 v 01 chart 0 001 @ 00704690 v 0000 01 + 08 00 | plan in detail; "Bush is charting a course to destroy Saddam Hussein" -00705227 31 v 02 plan 1 be_after 0 004 @ 00708538 v 0000 ~ 00629889 v 0000 ~ 00705517 v 0000 ~ 00706047 v 0000 03 + 08 00 + 28 00 + 33 00 | have the will and intention to carry out some action; "He plans to be in graduate school next year"; "The rebels had planned turmoil and confusion" -00705517 31 v 04 draw_a_bead_on 0 aspire 0 aim 0 shoot_for 0 007 @ 00705227 v 0000 + 00104533 a 0201 + 07484547 n 0202 + 04836491 n 0201 + 09801533 n 0201 + 09801533 n 0202 ~ 00705778 v 0000 03 + 28 00 + 08 04 + 08 01 | have an ambitious plan or a lofty goal -00705778 31 v 01 overshoot 0 003 @ 00705517 v 0000 + 00281898 n 0101 ~ 00705924 v 0000 01 + 08 00 | aim too high; "The plan overshoots its aim" -00705924 31 v 01 overrun 3 001 @ 00705778 v 0000 02 + 01 00 + 11 00 | run beyond or past; "The plane overran the runway" -00706047 31 v 02 hope 0 go_for 0 002 @ 00705227 v 0000 + 10185148 n 0101 02 + 08 00 + 33 00 | intend with some possibility of fulfilment; "I hope to have finished this work by tomorrow evening" -00706243 31 v 02 project 0 propose 0 005 @ 00704690 v 0000 + 10484526 n 0201 + 07162680 n 0202 ~ 00706557 v 0000 ~ 00706693 v 0000 03 + 08 00 + 28 00 + 33 00 | present for consideration, examination, criticism, etc.; "He proposed a new plan for dealing with terrorism"; "She proposed a new theory of relativity" -00706557 31 v 01 offer 0 002 @ 00706243 v 0000 + 07164546 n 0102 01 + 08 00 | put forward for consideration; "He offered his opinion" -00706693 31 v 01 introduce 0 001 @ 00706243 v 0000 01 + 08 00 | put before (a body); "introduce legislation" -00706804 31 v 03 frame 0 compose 0 draw_up 0 003 @ 00704690 v 0000 + 10108464 n 0101 + 00941451 n 0101 01 + 08 00 | make up plans or basic details for; "frame a policy" -00706975 31 v 05 conspire 0 cabal 0 complot 0 conjure 0 machinate 0 008 @ 00708128 v 0000 + 05908520 n 0502 + 09958892 n 0504 + 05908882 n 0202 + 02919275 a 0102 + 09958892 n 0101 + 05908882 n 0101 ~ 00707322 v 0000 02 + 02 00 + 22 00 | engage in plotting or enter into a conspiracy, swear together; "They conspired to overthrow the government" -00707322 31 v 01 coconspire 0 002 @ 00706975 v 0000 + 09958892 n 0102 01 + 02 00 | conspire together; "The two men coconspired to cover up the Federal investigation" -00707490 31 v 01 counterplot 0 002 @ 00708128 v 0000 + 05908391 n 0101 02 + 02 00 + 08 00 | make a plot in response to another plot -00707624 31 v 02 conspire 1 collude 0 006 @ 02376958 v 0000 + 01707084 a 0201 + 07176962 n 0202 + 05795244 n 0201 + 02919275 a 0102 + 06524935 n 0101 03 + 01 00 + 02 00 + 28 00 | act in unison or agreement and in secret towards a deceitful or illegal purpose; "The two companies conspired to cause the value of the stock to fall" -00707956 31 v 03 scheme 0 intrigue 0 connive 0 003 @ 00708128 v 0000 + 07176962 n 0301 + 05908520 n 0201 02 + 02 00 + 22 00 | form intrigues (for) in an underhand manner -00708128 31 v 01 plot 0 006 @ 00704690 v 0000 + 10556518 n 0102 + 05907682 n 0101 ~ 00706975 v 0000 ~ 00707490 v 0000 ~ 00707956 v 0000 02 + 02 00 + 08 00 | plan secretly, usually something illegal; "They plotted the overthrow of the government" -00708376 31 v 01 scheme 1 004 @ 00704690 v 0000 + 05891572 n 0103 + 05927813 n 0102 + 10556518 n 0101 02 + 08 00 + 33 00 | devise a system or form a scheme for -00708538 31 v 03 intend 0 mean 0 think 6 005 + 00163233 n 0101 + 05982152 n 0102 ~ 00698572 v 0000 ~ 00705227 v 0000 ~ 00708980 v 0000 02 + 08 00 + 28 00 | have in mind as a purpose; "I mean no harm"; "I only meant to help you"; "She didn't think to harm me"; "We thought to return early that night" -00708840 31 v 01 mean 5 001 @ 00709379 v 0000 01 + 21 00 | destine or designate for a certain purpose; "These flowers were meant for you" -00708980 31 v 04 aim 1 purpose 1 purport 0 propose 1 006 @ 00708538 v 0000 + 06605897 n 0302 + 04864200 n 0202 + 05982152 n 0201 + 05981230 n 0101 + 05982152 n 0104 01 + 28 00 | propose or intend; "I aim to arrive at noon" -00709205 31 v 01 want 1 004 $ 01317064 v 0000 @ 00754942 v 0000 + 10766025 n 0101 + 07486229 n 0103 01 + 09 00 | wish or demand the presence of; "I want you here at noon!" -00709379 31 v 04 intend 1 destine 0 designate 0 specify 0 006 @ 00704690 v 0000 + 05981768 n 0201 ~ 00708840 v 0000 ~ 00709625 v 0000 ~ 00709844 v 0000 ~ 00713015 v 0000 01 + 24 00 | design or destine; "She was intended to become the director" -00709625 31 v 01 design 0 004 @ 00709379 v 0000 + 03179318 n 0101 + 05728678 n 0101 + 00928077 n 0101 02 + 08 00 + 21 00 | plan something for a specific role or purpose or effect; "This room is not designed for work" -00709844 31 v 01 slate 0 001 @ 00709379 v 0000 02 + 09 00 + 24 00 | designate or schedule; "He slated his talk for 9 AM"; "She was slated to be his successor" -00710005 31 v 06 mastermind 0 engineer 0 direct 0 organize 0 organise 0 orchestrate 0 013 @ 00704690 v 0000 + 01008801 n 0601 + 01008378 n 0502 + 08164585 n 0507 + 01136519 n 0502 + 10383505 n 0401 + 08164585 n 0406 + 01008378 n 0401 + 01136519 n 0401 + 00199114 a 0303 + 09615807 n 0201 + 10383816 n 0103 ~ 00710415 v 0000 01 + 08 00 | plan and direct (a complex undertaking); "he masterminded the robbery" -00710415 31 v 01 choreograph 0 001 @ 00710005 v 0000 01 + 08 00 | plan and oversee the development and details of; "The meeting between the two Presidents had been carefully choreographed" -00710606 31 v 01 map 1 002 @ 00649481 v 0000 + 03720163 n 0101 01 + 08 00 | explore or survey for the purpose of making a map; "We haven't even begun to map the many galaxies that we know exist" -00710803 31 v 01 chart d 002 @ 01687876 v 0000 + 03009920 n 0101 01 + 08 00 | make a chart of; "chart the territory" -00710922 31 v 02 plat 0 plot 1 002 @ 01687876 v 0000 + 07000065 n 0201 01 + 08 00 | make a plat of; "Plat the town" -00711040 31 v 01 lay_out 0 004 @ 00704690 v 0000 + 01010901 n 0101 ~ 00711236 v 0000 ~ 00711420 v 0000 01 + 08 00 | provide a detailed plan or design; "She laid out her plans for the new house" -00711236 31 v 01 block_out 0 001 @ 00711040 v 0000 01 + 08 00 | plan where and when songs should be inserted into a theatrical production, or plan a theatrical production in general -00711420 31 v 01 loft 0 001 @ 00711040 v 0000 01 + 02 00 | lay out a full-scale working drawing of the lines of a vessel's hull -00711550 31 v 01 engineer 1 003 @ 01639714 v 0000 + 09615807 n 0101 + 00949619 n 0102 01 + 08 00 | design as an engineer; "He engineered the water supply project" -00711715 31 v 05 entertain 0 think_of 3 toy_with 0 flirt_with 0 think_about 3 001 @ 00703875 v 0000 02 + 08 00 + 33 00 | take into consideration, have in view; "He entertained the notion of moving to South America" -00711932 31 v 03 dally 1 trifle 1 play 1 002 @ 00734054 v 0000 $ 02437465 v 0000 01 + 22 00 | consider not very seriously; "He is trifling with her"; "She plays with the thought of moving to Tasmania" -00712135 31 v 06 calculate 3 estimate 1 reckon 3 count_on 1 figure 1 forecast 0 007 @ 00670261 v 0000 + 06749881 n 0602 + 10102506 n 0601 + 09887034 n 0204 + 00301187 a 0101 + 00868910 n 0101 ~ 00723545 v 0000 02 + 08 00 + 26 00 | judge to be probable -00712389 31 v 02 miscalculate 1 misestimate 1 002 @ 00671190 v 0000 + 00072808 n 0101 02 + 02 00 + 08 00 | judge incorrectly; "I had misestimated his determination" -00712556 31 v 02 reckon d count c 001 @ 00672433 v 0000 01 + 22 00 | take account of; "You have to reckon with our opponents"; "Count on the monsoon" -00712708 31 v 06 count 2 bet 0 depend 0 look 2 calculate 5 reckon 5 002 @ 00688377 v 0000 + 14001348 n 0303 02 + 08 00 + 09 00 | have faith or confidence in; "you can count on me to help you any time"; "Look to your friends for support"; "You can bet on that!"; "Depend on your family in times of crisis" -00713015 31 v 03 calculate 2 aim 2 direct 1 001 @ 00709379 v 0000 01 + 08 00 | specifically design a product, event, or activity for a certain public -00713167 31 v 07 associate 0 tie_in 0 relate 0 link 0 colligate 2 link_up 0 connect 0 021 @ 00628491 v 0000 + 00563980 a 0701 + 05763916 n 0702 + 05763916 n 0703 + 14420954 n 0504 + 05764197 n 0501 + 14419164 n 0402 + 13792579 n 0401 + 00031921 n 0301 + 00157389 a 0101 + 00157659 a 0101 + 00157389 a 0102 + 14421139 n 0101 + 05763916 n 0101 ! 00714273 v 0102 ~ 00611802 v 0000 ~ 00713818 v 0000 ~ 00713996 v 0000 ~ 00714531 v 0000 ~ 00714718 v 0000 ~ 00730052 v 0000 02 + 17 00 + 31 00 | make a logical or causal connection; "I cannot connect these two pieces of evidence in my mind"; "colligate these facts"; "I cannot relate these events at all" -00713818 31 v 01 interrelate 0 003 $ 02724417 v 0000 @ 00713167 v 0000 + 13844212 n 0101 01 + 08 00 | place into a mutual relationship; "I cannot interrelate these two events" -00713996 31 v 01 correlate 0 006 $ 02658979 v 0000 @ 00713167 v 0000 + 01974298 a 0101 + 13841651 n 0101 + 06031248 n 0101 + 06032246 n 0103 02 + 08 00 + 11 00 | bring into a mutual, complementary, or reciprocal relation; "I cannot correlate these two pieces of information" -00714273 31 v 02 decouple 0 dissociate 0 005 @ 00650353 v 0000 + 00785298 a 0201 + 14416845 n 0201 + 00384802 n 0201 ! 00713167 v 0201 01 + 08 00 | regard as unconnected; "you must dissociate these two events!"; "decouple our foreign policy from ideology" -00714531 31 v 01 identify 3 002 @ 00713167 v 0000 + 00152018 n 0102 02 + 17 00 + 31 00 | conceive of as united or associated; "Sex activity is closely identified with the hypothalamus" -00714718 31 v 01 free-associate 0 002 @ 00713167 v 0000 ;c 00700652 n 0000 02 + 17 00 + 31 00 | associate freely; "Let's associate freely to bring up old memories" -00714884 31 v 01 debate 0 003 @ 00813044 v 0000 + 07140978 n 0103 + 09997404 n 0101 02 + 02 00 + 09 00 | argue with one another; "We debated the question of abortion"; "John debated Mary" -00715074 31 v 01 conclude 1 003 @ 00352826 v 0000 + 00209943 n 0103 ~ 01051698 v 0000 02 + 08 00 + 11 00 | bring to a close; "The committee concluded the meeting" -00715239 31 v 02 find a feel 0 004 $ 00971999 v 0000 @ 00634472 v 0000 + 05677340 n 0201 + 05916739 n 0202 01 + 26 00 | come to believe on the basis of emotion, intuitions, or indefinite grounds; "I feel that he doesn't like me"; "I find him to be obnoxious"; "I found the movie rather entertaining" -00715541 31 v 06 pin_down 0 peg_down 0 nail_down 0 narrow_down 0 narrow 0 specify 2 003 @ 00700708 v 0000 + 10633298 n 0601 ~ 00715769 v 0000 02 + 08 00 + 21 00 | define clearly; "I cannot narrow down the rules for this game" -00715769 31 v 01 concretize 0 001 @ 00715541 v 0000 02 + 08 00 + 11 00 | make something concrete -00715868 31 v 02 rule 0 decree 0 007 @ 00697589 v 0000 + 06539770 n 0201 + 06652242 n 0101 + 10541229 n 0101 ^ 02629390 v 0102 ~ 00716130 v 0000 ~ 01147562 v 0000 01 + 26 00 | decide with authority; "The King decreed that all firstborn males should be killed" -00716130 31 v 05 overrule 0 overturn 0 override 0 overthrow 0 reverse 0 002 @ 00715868 v 0000 + 01185981 n 0501 02 + 08 00 + 11 00 | rule against; "The Republicans were overruled when the House voted on the bill" -00716345 31 v 02 presuppose 0 suppose 5 002 @ 00930599 v 0000 ;c 06163751 n 0000 01 + 11 00 | require as a necessary antecedent or precondition; "This step presupposes two prior ones" -00716531 31 v 02 presuppose 1 suppose 6 004 @ 00632236 v 0000 + 05779923 n 0101 ~ 00716758 v 0000 ~ 00717208 v 0000 01 + 26 00 | take for granted or as a given; suppose beforehand; "I presuppose that you have done your work" -00716758 31 v 02 postulate 0 posit 0 007 @ 00716531 v 0000 + 06753299 n 0202 + 00083448 n 0201 + 06753299 n 0101 + 06733227 n 0101 + 10457444 n 0101 ~ 00717045 v 0000 03 + 08 00 + 11 00 + 26 00 | take as a given; assume as a postulate or axiom; "He posited three basic laws of nature" -00717045 31 v 02 insist 0 assert 0 003 @ 00716758 v 0000 + 01821920 a 0202 + 07203126 n 0202 01 + 08 00 | assert to be true; "The letter asserts a free society" -00717208 31 v 02 premise 0 premiss 0 003 @ 00716531 v 0000 + 06753800 n 0202 + 06753800 n 0101 01 + 08 00 | take something as preexisting and given -00717358 31 v 02 react 0 respond 0 025 @ 02367363 v 0000 + 01999306 a 0201 + 01999608 a 0202 + 10524413 n 0202 + 10524413 n 0201 + 02105176 a 0101 + 11417129 n 0101 + 00859001 n 0101 ~ 00651145 v 0000 ~ 00651298 v 0000 ~ 00717921 v 0000 ~ 00718117 v 0000 ~ 00718308 v 0000 ~ 00718489 v 0000 ~ 00718645 v 0000 ~ 00718737 v 0000 ~ 00718907 v 0000 ~ 00719062 v 0000 ~ 00719231 v 0000 ~ 00719590 v 0000 ~ 00797430 v 0000 ~ 00797697 v 0000 ~ 00925490 v 0000 ~ 01059123 v 0000 ~ 02755017 v 0000 03 + 02 00 + 12 00 + 22 00 | show a response or a reaction to something -00717921 31 v 02 flip 0 flip_out 0 001 @ 00717358 v 0000 01 + 02 00 | react in an excited, delighted, or surprised way; "he flipped when he heard that he was accepted into Princeton University" -00718117 31 v 01 overreact 0 002 @ 00717358 v 0000 + 00859863 n 0101 03 + 02 00 + 12 00 + 22 00 | show an exaggerated response to something; "Don't overreact to the bad news--take it easy" -00718308 31 v 01 answer 5 002 @ 00717358 v 0000 + 01234952 n 0101 02 + 01 00 + 04 00 | react to a stimulus or command; "The steering of my new car answers to the slightest touch" -00718489 31 v 01 accept 8 001 @ 00717358 v 0000 01 + 11 00 | be sexually responsive to, used of a female domesticated mammal; "The cow accepted the bull" -00718645 31 v 01 stool 0 001 @ 00717358 v 0000 01 + 01 00 | react to a decoy, of wildfowl -00718737 31 v 01 respond 1 002 @ 00717358 v 0000 + 10524413 n 0102 02 + 01 00 + 02 00 | respond favorably or as hoped; "The cancer responded to the aggressive therapy" -00718907 31 v 01 greet 0 001 @ 00717358 v 0000 04 + 05 00 + 17 00 + 20 00 + 21 00 | react to in a certain way; "The President was greeted with catcalls" -00719062 31 v 01 explode 0 001 @ 00717358 v 0000 01 + 02 00 | show a violent emotional reaction; "The boss exploded when he heard of the resignation of the secretary" -00719231 31 v 01 accept 1 009 @ 00717358 v 0000 + 01985557 a 0101 + 00075952 a 0101 + 01985557 a 0102 + 14412725 n 0101 + 00180413 n 0103 + 13932421 n 0101 + 00180413 n 0102 $ 00686447 v 0000 02 + 08 00 + 09 00 | react favorably to; consider right and proper; "People did not accept atonal music at that time"; "We accept the idea of universal health care" -00719590 31 v 01 answer 2 002 @ 00717358 v 0000 + 01234952 n 0101 01 + 08 00 | respond to a signal; "answer the door"; "answer the telephone" -00719734 31 v 02 expect 0 anticipate 0 009 @ 00670261 v 0000 + 01228797 a 0103 + 07510923 n 0101 + 05944958 n 0101 ~ 00631737 v 0000 ~ 00632236 v 0000 ~ 00633443 v 0000 $ 00720063 v 0000 ~ 00721098 v 0000 03 + 08 00 + 26 00 + 28 00 | regard something as probable or likely; "The meteorologists are expecting rain for tomorrow" -00720063 31 v 04 expect 1 look 0 await 0 wait 0 010 $ 00719734 v 0000 + 10763725 n 0401 + 01228797 a 0103 + 14486122 n 0102 + 05951323 n 0102 ~ 00059376 v 0000 ~ 00720497 v 0000 ~ 00720617 v 0000 ~ 00790509 v 0000 ~ 01804961 v 0000 05 + 08 00 + 09 00 + 33 00 + 28 04 + 28 02 | look forward to the probable occurrence of; "We were expecting a visit from our relatives"; "She is looking to a promotion"; "he is waiting to be drafted" -00720497 31 v 01 look_forward 0 001 @ 00720063 v 0000 01 + 22 00 | expect or hope for; "I look to hear from you soon" -00720617 31 v 01 look_to 1 001 @ 00720063 v 0000 03 + 08 00 + 09 00 + 11 00 | turn one's interests or expectations towards; "look to the future"; "this method looks to significant wavings" -00720808 31 v 04 anticipate 1 previse 0 foreknow 0 foresee 0 003 @ 00595630 v 0000 + 05805277 n 0201 + 09797113 n 0101 01 + 26 00 | realize beforehand -00720961 31 v 01 tell 0 001 @ 00636061 v 0000 03 + 02 00 + 08 00 + 26 00 | discern or comprehend; "He could tell that she was unhappy" -00721098 31 v 02 believe 3 trust 2 004 @ 00719734 v 0000 + 05697976 n 0202 + 09848489 n 0202 + 05916739 n 0103 01 + 26 00 | be confident about something; "I believe that he will come back from the war" -00721302 31 v 01 ascertain 1 003 @ 00598954 v 0000 + 00738829 a 0101 ~ 00721889 v 0000 01 + 26 00 | learn or discover with certainty -00721437 31 v 02 discover 0 find 9 009 @ 00598954 v 0000 + 00043195 n 0202 ^ 00598954 v 0206 + 07214432 n 0101 + 05808218 n 0101 + 00043195 n 0101 ~ 00721755 v 0000 ~ 00722065 v 0000 $ 01637982 v 0000 01 + 26 00 | make a discovery; "She found that he had lied to her"; "The story is false, so far as I can discover" -00721755 31 v 01 rake_up 0 001 @ 00721437 v 0000 02 + 08 00 + 26 00 | bring to light; "He raked up the misdeeds of his predecessor" -00721889 31 v 01 price 0 003 @ 00721302 v 0000 + 13303315 n 0101 + 05736736 n 0101 01 + 08 00 | ascertain or learn the price of; "Have you priced personal computers lately?" -00722065 31 v 02 ferret_out 0 ferret 0 001 @ 00721437 v 0000 02 + 08 00 + 26 00 | search and discover through persistent investigation; "She ferreted out the truth" -00722232 31 v 06 concentrate 0 focus 0 center 0 centre 0 pore 0 rivet 0 014 @ 00628491 v 0000 + 05812038 n 0301 + 05704694 n 0306 + 05704694 n 0201 + 05704694 n 0203 + 05704694 n 0202 + 05704266 n 0101 + 04865502 n 0103 ~ 00601043 v 0000 $ 00722675 v 0000 ~ 00722848 v 0000 ~ 00723056 v 0000 ~ 02153253 v 0000 ~ 02171039 v 0000 02 + 13 00 + 02 01 | direct one's attention on something; "Please focus on your studies and not on your hobbies" -00722675 31 v 01 rivet 1 002 $ 00722232 v 0000 @ 00600370 v 0000 02 + 10 00 + 11 00 | hold (someone's attention); "The discovery of the skull riveted the paleontologists" -00722848 31 v 01 recall 6 001 @ 00722232 v 0000 03 + 02 00 + 09 00 + 10 00 | cause one's (or someone else's) thoughts or attention to return from a reverie or digression; "She was recalled by a loud laugh" -00723056 31 v 01 think 9 003 @ 00722232 v 0000 + 05833840 n 0102 + 05786372 n 0101 01 + 07 00 | focus one's attention on a certain state; "Think big"; "think thin" -00723222 31 v 01 think_of 4 001 @ 00674607 v 0000 01 + 08 00 | choose in one's mind; "Think of any integer between 1 and 25" -00723349 31 v 02 occur 0 come e 001 @ 02623529 v 0000 01 + 04 00 | come to one's mind; suggest itself; "It occurred to me that we should hire another secretary"; "A great idea then came to her" -00723545 31 v 02 allow 0 take_into_account 0 003 @ 00712135 v 0000 + 01762257 a 0101 ~ 00723851 v 0000 02 + 08 00 + 24 00 | allow or plan for a certain possibility; concede the truth or validity of something; "I allow for this possibility"; "The seamstress planned for 5% shrinkage after the first wash" -00723851 31 v 01 budget_for 0 001 @ 00723545 v 0000 02 + 08 00 + 09 00 | calculate enough money for; provide for in the budget; "I have not budgeted for these expensive meals" -00724029 31 v 01 budget 0 003 @ 00637259 v 0000 + 13421462 n 0101 + 13421832 n 0101 02 + 02 00 + 22 00 | make a budget -00724150 31 v 05 allow 1 appropriate 0 earmark 0 set_aside 0 reserve 0 005 @ 02228698 v 0000 + 13368052 n 0501 + 04732543 n 0303 + 00093433 a 0201 + 13286254 n 0101 02 + 08 00 + 15 00 | give or assign a resource to a particular person or cause; "I will earmark this money for your research"; "She sets aside time for meditation every day" -00724492 31 v 01 mind 2 004 @ 00734348 v 0000 + 05703956 n 0101 + 05982915 n 0101 ~ 01766748 v 0000 02 + 08 00 + 09 00 | be concerned with or about something or somebody -00724664 31 v 02 beware 0 mind 3 001 @ 02151966 v 0000 02 + 08 00 + 02 01 | be on one's guard; be cautious or wary about; be alert to; "Beware of telephone salesmen" -00724832 31 v 03 amaze 0 astonish 0 astound 0 004 @ 00725274 v 0000 + 07509572 n 0201 + 07509572 n 0102 ~ 00725046 v 0000 02 + 09 00 + 10 00 | affect with wonder; "Your ability to speak six languages amazes me!" -00725046 31 v 01 dazzle 0 001 @ 00724832 v 0000 02 + 09 00 + 10 00 | amaze or bewilder, as with brilliant wit or intellect or skill; "Her arguments dazzled everyone"; "The dancer dazzled the audience with his turns and jumps" -00725274 31 v 01 surprise 0 010 @ 01767949 v 0000 + 00553655 n 0101 + 07298154 n 0101 + 07510348 n 0101 + 00553655 n 0102 ~ 00724832 v 0000 ~ 00725563 v 0000 ~ 00725748 v 0000 ~ 00726153 v 0000 ~ 01809064 v 0000 02 + 09 00 + 10 00 | cause to be surprised; "The news really surprised me" -00725563 31 v 01 explode_a_bombshell 0 001 @ 00725274 v 0000 02 + 09 00 + 10 00 | utter or do something surprising; "Father exploded a bombshell when he forbade us to go to the prom" -00725748 31 v 01 catch 1 002 @ 00725274 v 0000 $ 00726009 v 0000 01 + 09 00 | discover or come upon accidentally, suddenly, or unexpectedly; catch somebody doing something or in a certain state; "She caught her son eating candy"; "She was caught shoplifting" -00726009 31 v 01 catch a 002 $ 00725748 v 0000 @ 02128873 v 0000 02 + 08 00 + 09 00 | become aware of; "he caught her staring out the window" -00726153 31 v 03 flabbergast 0 boggle 0 bowl_over 0 001 @ 00725274 v 0000 02 + 09 00 + 10 00 | overcome with amazement; "This boggles the mind!" -00726300 31 v 04 impute 0 ascribe 0 assign 2 attribute 0 016 @ 00670261 v 0000 + 00171590 a 0401 + 00171872 a 0201 + 05734559 n 0202 + 05735478 n 0101 $ 00726784 v 0000 ~ 00726784 v 0000 ~ 00727012 v 0000 ~ 00727143 v 0000 ~ 00727305 v 0000 ~ 00727409 v 0000 ~ 00727573 v 0000 ~ 00727791 v 0000 ~ 00727991 v 0000 ~ 00729642 v 0000 ~ 00729781 v 0000 02 + 15 00 + 21 00 | attribute or credit to; "We attributed this quotation to Shakespeare"; "People impute great cleverness to cats" -00726784 31 v 01 impute 1 003 $ 00726300 v 0000 @ 00726300 v 0000 + 07237038 n 0101 02 + 15 00 + 21 00 | attribute (responsibility or fault) to a cause or source; "The teacher imputed the student's failure to his nervousness" -00727012 31 v 02 sensualize 0 carnalize 0 002 @ 00726300 v 0000 + 02976040 a 0201 01 + 08 00 | ascribe to an origin in sensation -00727143 31 v 01 credit 1 002 @ 00726300 v 0000 + 06688274 n 0102 02 + 15 00 + 17 00 | give someone credit for something; "We credited her for saving our jobs" -00727305 31 v 01 reattribute 0 001 @ 00726300 v 0000 02 + 08 00 + 15 00 | attribute to another source -00727409 31 v 02 anthropomorphize 0 anthropomorphise 0 003 @ 00726300 v 0000 + 05767386 n 0201 + 05767386 n 0101 01 + 15 00 | ascribe human features to something -00727573 31 v 02 personify 0 personate 0 004 @ 00726300 v 0000 + 00933259 n 0101 + 05217688 n 0101 + 00007846 n 0101 01 + 08 00 | attribute human qualities to something; "The Greeks personated their gods ridiculous" -00727791 31 v 02 accredit 0 credit c 003 @ 00726300 v 0000 + 06763681 n 0204 + 06346681 n 0201 03 + 09 00 + 10 00 + 22 02 | ascribe an achievement to; "She was not properly credited in the program" -00727991 31 v 02 blame 0 charge a 004 @ 00726300 v 0000 + 01321529 a 0103 + 01321529 a 0102 + 07237758 n 0103 01 + 08 00 | attribute responsibility to; "We blamed the accident on her"; "The tragedy was charged to her inexperience" -00728224 31 v 01 register 0 002 $ 02105810 v 0000 @ 00019448 v 0000 01 + 01 00 | enter into someone's consciousness; "Did this event register in your parents' minds?" -00728393 31 v 03 impress 0 ingrain 0 instill 0 003 @ 01767949 v 0000 + 00889082 n 0303 + 00835292 a 0101 01 + 21 00 | produce or try to produce a vivid impression of; "Mother tried to ingrain respect for our elders in us" -00728617 31 v 06 recognize 1 recognise 1 realize 1 realise 1 agnize 0 agnise 0 004 @ 00594621 v 0000 + 05807540 n 0402 + 05807540 n 0301 ~ 00608670 v 0000 02 + 08 00 + 26 00 | be fully aware or cognizant of -00728826 31 v 01 elicit 0 002 @ 00636574 v 0000 ;c 05664069 n 0000 02 + 08 00 + 26 00 | derive by reason; "elicit a solution" -00728954 31 v 03 penetrate 0 fathom 0 bottom 0 003 @ 00588888 v 0000 + 01744515 a 0107 + 05710356 n 0101 03 + 08 00 + 09 00 + 26 00 | come to understand -00729109 31 v 02 trace 0 follow 0 003 $ 02455407 v 0000 $ 00118764 v 0000 @ 00644583 v 0000 01 + 08 00 | follow, discover, or ascertain the course of development of something; "We must follow closely the economic development is Cuba" ; "trace the student's progress" -00729378 31 v 03 wonder 0 inquire 0 enquire 2 006 @ 00785008 v 0000 + 00879259 a 0201 + 00664879 a 0201 + 05682570 n 0102 + 10789709 n 0101 ~ 01069809 v 0000 01 + 29 00 | have a wish or desire to know something; "He wondered who had built this beautiful church" -00729642 31 v 03 project 1 externalize 0 externalise 0 002 @ 00726300 v 0000 ;c 06136258 n 0000 02 + 08 00 + 21 00 | regard as objective -00729781 31 v 04 internalize 0 internalise 0 interiorize 0 interiorise 0 005 @ 00726300 v 0000 ;c 06136258 n 0000 + 08588294 n 0302 + 05753954 n 0202 + 05753954 n 0101 02 + 08 00 + 21 00 | incorporate within oneself; make subjective or personal; "internalize a belief" -00730052 31 v 03 think_of 2 have_in_mind 1 mean 1 002 @ 00713167 v 0000 ~ 01024190 v 0000 02 + 08 00 + 09 00 | intend to refer to; "I'm thinking of good food when I talk about France"; "Yes, I meant you when I complained about people who gossip!" -00730301 31 v 03 demarcate 0 delimit 0 delimitate 0 004 @ 00235368 v 0000 + 08512736 n 0304 + 08512736 n 0204 + 08592656 n 0102 02 + 08 00 + 11 00 | set, mark, or draw the boundaries of something -00730499 31 v 01 demarcate 1 003 @ 00650353 v 0000 + 08592656 n 0102 + 05748786 n 0103 02 + 08 00 + 11 00 | separate clearly, as if by boundaries -00730647 31 v 01 plumb 0 002 @ 00489837 v 0000 + 00999089 n 0102 01 + 08 00 | measure the depth of something -00730758 31 v 02 draw 0 make 0 002 @ 01631534 v 0000 $ 00698104 v 0000 01 + 08 00 | make, formulate, or derive in the mind; "I draw a line here"; "draw a conclusion"; "draw parallels"; "make an estimate"; "What do you make of his remarks?" -00731000 31 v 02 capitalize 0 capitalise 0 002 @ 00690614 v 0000 + 13354420 n 0201 01 + 08 00 | consider expenditures as capital assets rather than expenses -00731159 31 v 02 capitalize 1 capitalise 1 007 @ 00637259 v 0000 + 00952214 n 0202 + 13354420 n 0201 + 13353607 n 0201 + 00952214 n 0101 + 13354420 n 0101 ~ 00731400 v 0000 01 + 08 00 | compute the present value of a business or an income -00731400 31 v 02 overcapitalize 1 overcapitalise 1 001 @ 00731159 v 0000 01 + 08 00 | estimate the capital value of (a company) at an unreasonably or unlawfully high level -00731574 31 v 02 find_out 1 catch_out 0 001 @ 02154508 v 0000 01 + 09 00 | trap; especially in an error or in a reprehensible act; "He was caught out"; "She was found out when she tried to cash the stolen checks" -00731789 31 v 05 concenter 0 concentre 0 focalize 0 focalise 0 focus 1 007 @ 00464321 v 0000 + 04821084 n 0501 + 05704694 n 0501 + 00375625 n 0503 + 00375625 n 0402 + 00375625 n 0301 ~ 00732091 v 0000 01 + 08 00 | bring into focus or alignment; to converge or cause to converge; of ideas or emotions -00732091 31 v 01 refocus 0 002 @ 00731789 v 0000 + 00375938 n 0101 01 + 08 00 | focus anew; "The group needs to refocus its goals" -00732224 31 v 03 give 2 pay 0 devote 0 002 @ 00628491 v 0000 $ 02343595 v 0000 02 + 15 00 + 21 00 | dedicate; "give thought to"; "give priority to"; "pay attention to" -00732394 31 v 03 resign 0 reconcile 0 submit 0 002 @ 00686447 v 0000 + 07542433 n 0101 01 + 20 00 | accept as inevitable; "He resigned himself to his fate" -00732552 31 v 03 observe 0 keep 0 maintain 0 005 + 06767035 n 0101 + 05818741 n 0101 + 05703429 n 0102 + 01002956 n 0101 + 00879759 n 0101 01 + 08 00 | stick to correctly or closely; "The pianist kept time with the metronome"; "keep count"; "I cannot keep track of all my employees" -00732837 31 v 01 discountenance 0 001 @ 00674340 v 0000 01 + 08 00 | show disapproval by discouraging; "any measure tending to fuse invalids into a class with special privileges should be discountenanced" -00733044 31 v 02 resolve 3 solve 1 005 @ 00637259 v 0000 + 10458111 n 0202 + 00153809 n 0202 + 00153809 n 0101 ~ 00733250 v 0000 02 + 08 00 + 22 02 | find the solution; "solve an equation"; "solve for x" -00733250 31 v 02 factorize 0 factorise 0 006 @ 00733044 v 0000 + 05783041 n 0202 + 05783041 n 0101 + 13593219 n 0101 + 13733402 n 0102 + 05868954 n 0104 01 + 08 00 | resolve (a polynomial) into factors -00733454 31 v 01 misgive 0 003 @ 01765908 v 0000 + 07525555 n 0103 + 05951566 n 0102 01 + 10 00 | suggest fear or doubt; "Her heart misgave her that she had acted inexcusably" -00733632 31 v 02 align 0 array 0 004 @ 00670991 v 0000 + 08293982 n 0103 ~ 00733804 v 0000 ~ 01148961 v 0000 01 + 09 00 | align oneself with a group or a way of thinking -00733804 31 v 01 fall_in_line c 001 @ 00733632 v 0000 01 + 22 00 | agree on (a position) -00733895 31 v 01 believe_in 1 001 @ 00683280 v 0000 02 + 08 00 + 33 00 | have a firm conviction as to the goodness of something; "John believes in oat bran" -00734054 31 v 04 consider 1 take 3 deal a look_at 0 006 @ 00734348 v 0000 + 05822746 n 0103 ~ 00703875 v 0000 ~ 00711932 v 0000 ~ 00734587 v 0000 ~ 01805113 v 0000 02 + 08 00 + 22 03 | take into consideration for exemplifying purposes; "Take the case of China"; "Consider the following case" -00734348 31 v 01 think_about 5 003 @ 00628491 v 0000 ~ 00724492 v 0000 ~ 00734054 v 0000 02 + 08 00 + 09 00 | have on one's mind, think about actively; "I'm thinking about my friends abroad"; "She always thinks about her children first" -00734587 31 v 01 abstract 1 003 @ 00734054 v 0000 + 00860932 a 0101 + 05854150 n 0102 01 + 22 00 | consider apart from a particular case or instance; "Let's abstract away from this particular example" -00734790 31 v 02 plant 0 implant 0 001 @ 00742320 v 0000 01 + 21 00 | put firmly in the mind; "Plant a thought in the students' minds" -00734927 31 v 01 date 1 006 @ 02327200 v 0000 + 15179888 n 0101 + 15159819 n 0101 + 15159583 n 0101 ~ 00735224 v 0000 ~ 00735389 v 0000 01 + 08 00 | provide with a dateline; mark with a date; "She wrote the letter on Monday but she dated it Saturday so as not to reveal that she procrastinated" -00735224 31 v 03 dateline 0 datemark 0 date-mark 0 002 @ 00734927 v 0000 + 06349030 n 0101 01 + 08 00 | mark with a date and place; "dateline a newspaper article" -00735389 31 v 02 date 2 date_stamp 0 004 @ 00734927 v 0000 @ 01273016 v 0000 + 15159819 n 0101 + 15159583 n 0101 01 + 08 00 | stamp with a date; "The package is dated November 24" -00735571 31 v 04 arrange 0 set_up 0 put 0 order 1 005 @ 02432530 v 0000 + 08456993 n 0402 + 08456993 n 0401 ~ 00735866 v 0000 ~ 00961114 v 0000 01 + 08 00 | arrange thoughts, ideas, temporal events; "arrange my schedule"; "set up one's life"; "I put these memories with those of bygone times" -00735866 31 v 04 synchronize 0 synchronise 0 contemporize 0 contemporise 0 003 @ 00735571 v 0000 + 13845239 n 0202 + 13845239 n 0102 01 + 08 00 | arrange or represent events so that they co-occur; "synchronize biblical events" -00736095 31 v 01 awaken 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | make aware; "They were awakened to the sad facts" -00736216 31 v 02 analyze 4 analyse 4 004 + 09791530 n 0101 + 00634276 n 0101 + 02708711 n 0101 ~ 00736429 v 0000 01 + 08 00 | break down into components or essential features; "analyze today's financial market" -00736429 31 v 02 factor_analyse 0 factor_analyze 0 002 @ 00736216 v 0000 + 06030196 n 0201 01 + 08 00 | to perform a factor analysis of correlational data -00736586 31 v 01 hold 4 002 @ 01806505 v 0000 + 05197232 n 0101 02 + 09 00 + 11 00 | hold the attention of; "The soprano held the audience"; "This story held our interest"; "She can hold an audience spellbound" -00736799 31 v 01 re-create 0 003 @ 01631534 v 0000 + 00908772 n 0101 ~ 01737141 v 0000 01 + 08 00 | form anew in the imagination; recollect and re-form in the mind; "His mind re-creates the entire world" -00737005 31 v 02 drink_in 0 drink 0 001 @ 00601043 v 0000 01 + 08 00 | be fascinated or spell-bound by; pay close attention to; "The mother drinks in every word of her son on the stage" -00737193 31 v 01 keep_note 0 001 @ 00609683 v 0000 01 + 22 00 | maintain in the forefront of one's awareness; "He kept note of the location of the soldiers" -00737352 31 v 01 swallow 1 001 @ 00612841 v 0000 01 + 08 00 | keep from expressing; "I swallowed my anger and kept quiet" -00737476 31 v 02 grab 0 seize 0 001 @ 02678839 v 0000 02 + 10 00 + 11 00 | capture the attention or imagination of; "This story will grab you"; "The movie seized my imagination" -00737656 31 v 03 seize 4 clutch 4 get_hold_of 0 002 @ 01809321 v 0000 + 14032737 n 0201 01 + 10 00 | affect; "Fear seized the prisoners"; "The patient was seized with unbearable pains"; "He was seized with a dreadful disease" -00737884 31 v 01 pay 3 003 @ 00668099 v 0000 + 10409752 n 0101 ~ 00738159 v 0000 02 + 08 00 + 22 00 | bear (a cost or penalty), in recompense for some action; "You'll pay for this!"; "She had to pay the penalty for speaking out rashly"; "You'll pay for this opinion later" -00738159 31 v 02 take_one's_lumps 0 get_one's_lumps 0 001 @ 00737884 v 0000 01 + 02 00 | suffer the results or consequences of one's behavior or actions -00738314 31 v 01 break 5 002 @ 00634906 v 0000 $ 00738440 v 0000 01 + 08 00 | find the solution or key to; "break the code" -00738440 31 v 01 break 6 002 $ 00738314 v 0000 @ 01564144 v 0000 02 + 08 00 + 11 00 | find a flaw in; "break an alibi"; "break down a proof" -00738583 31 v 01 call 0 002 @ 00869126 v 0000 $ 00869393 v 0000 01 + 09 00 | challenge the sincerity or truthfulness of; "call the speaker on a question of fact" -00738747 31 v 01 call d 004 $ 00913065 v 0000 @ 00983824 v 0000 + 09888429 n 0101 + 07120524 n 0103 01 + 08 00 | utter in a loud voice or announce; "He called my name"; "The auctioneer called the bids" -00738951 31 v 01 carry c 001 @ 00684838 v 0000 01 + 10 00 | include, as on a list; "How many people are carried on the payroll?" -00739082 31 v 01 think d 005 @ 00628491 v 0000 + 05786372 n 0101 + 05770926 n 0102 + 05833840 n 0102 $ 00739340 v 0000 02 + 08 00 + 29 00 | ponder; reflect on, or reason about; "Think the matter through"; "Think how hard life in Russia must be these days" -00739340 31 v 01 think c 004 $ 00739082 v 0000 @ 00628491 v 0000 + 05786372 n 0101 + 05770926 n 0101 01 + 08 00 | decide by pondering, reasoning, or reflecting; "Can you think what to do next?" -00739536 31 v 01 calibrate 2 002 @ 00647094 v 0000 + 05103283 n 0103 01 + 08 00 | measure the caliber of; "calibrate a gun" -00739662 31 v 02 relegate 2 classify 1 012 @ 00740053 v 0000 + 03018802 a 0201 + 08239808 n 0201 + 07974025 n 0201 + 07997703 n 0201 + 07939638 n 0201 + 05732756 n 0201 + 01012712 n 0203 + 06308436 n 0201 + 09926862 n 0201 + 08103777 n 0201 + 01013434 n 0101 01 + 21 00 | assign to a class or kind; "How should algae be classified?"; "People argue about how to relegate certain mushrooms" -00740053 31 v 02 assign 3 attribute 1 004 @ 00670261 v 0000 + 05734559 n 0201 + 00164345 n 0101 ~ 00739662 v 0000 01 + 21 00 | decide as to where something belongs in a scheme; "The biologist assigned the mushroom to the proper class" -00740290 31 v 01 truncate 0 002 @ 00672433 v 0000 ;c 06000644 n 0000 01 + 08 00 | approximate by ignoring all terms beyond a chosen one; "truncate a series" -00740449 31 v 01 acknowledge 2 001 @ 00686447 v 0000 01 + 08 00 | accept as legally binding and valid; "acknowledge the deed" -00740577 32 v 02 communicate 0 intercommunicate 0 046 @ 02376958 v 0000 + 06252743 n 0201 + 00494907 a 0101 + 00494907 a 0102 + 06252138 n 0101 + 00033020 n 0101 + 09610660 n 0101 + 06252138 n 0102 ~ 00034288 v 0000 ~ 00741573 v 0000 ~ 00741702 v 0000 ~ 00741911 v 0000 ~ 00742051 v 0000 ~ 00743223 v 0000 ~ 00743344 v 0000 ~ 00748282 v 0000 ~ 00760187 v 0000 ~ 00784342 v 0000 ~ 00790703 v 0000 ~ 00831651 v 0000 ~ 00853633 v 0000 ~ 00865280 v 0000 ~ 00897125 v 0000 ~ 00897564 v 0000 ~ 00898210 v 0000 ~ 00929160 v 0000 ~ 00941990 v 0000 ~ 00962447 v 0000 ~ 00963570 v 0000 ~ 00992041 v 0000 ~ 00992804 v 0000 ~ 00993014 v 0000 ~ 01007495 v 0000 ~ 01031966 v 0000 ~ 01032840 v 0000 ~ 01039330 v 0000 ~ 01040158 v 0000 ~ 01043441 v 0000 ~ 01060317 v 0000 ~ 01060494 v 0000 ~ 01060746 v 0000 ~ 01061017 v 0000 ~ 01063049 v 0000 ~ 01063529 v 0000 ~ 01063930 v 0000 ~ 01066036 v 0000 03 + 02 00 + 08 00 + 15 00 | transmit thoughts or feelings; "He communicated his anxieties to the psychiatrist" -00741573 32 v 02 yak 0 gab 0 001 @ 00740577 v 0000 01 + 02 00 | talk profusely; "she was yakking away about her grandchildren" -00741702 32 v 02 fingerspell 0 finger-spell 0 002 @ 00740577 v 0000 + 06875883 n 0102 01 + 02 00 | communicate by means of specific gestures, as an alternative to sign language; "The Deaf often fingerspell" -00741911 32 v 02 aphorize 0 aphorise 0 003 @ 00740577 v 0000 + 07153130 n 0201 + 07153130 n 0101 01 + 02 00 | speak or write in aphorisms -00742051 32 v 01 riddle 0 002 @ 00740577 v 0000 + 06785223 n 0101 01 + 02 00 | speak in riddles -00742149 32 v 01 shrug_off 0 001 @ 00800930 v 0000 01 + 08 00 | minimize the importance of, brush aside; "Jane shrugged off the news that her stock had fallen 3 points" -00742320 32 v 05 communicate 1 pass_on 0 pass 1 pass_along 0 put_across 0 019 @ 02231661 v 0000 + 02956371 a 0101 + 00494907 a 0101 + 00494907 a 0102 + 13792842 n 0101 + 06252138 n 0101 + 00033020 n 0101 + 09610660 n 0101 + 06252138 n 0102 ~ 00734790 v 0000 ~ 00742865 v 0000 ~ 00743082 v 0000 ~ 00744904 v 0000 ~ 00752764 v 0000 ~ 00892698 v 0000 ~ 01061320 v 0000 ~ 01062253 v 0000 ~ 01071474 v 0000 ~ 01071632 v 0000 02 + 08 00 + 15 00 | transmit information ; "Please communicate this message to all employees"; "pass along the good news" -00742865 32 v 01 send_a_message 0 001 @ 00742320 v 0000 02 + 01 00 + 02 00 | give or constitute a signal, not necessarily verbally; "The lack of good teachers sends a strong message to all parents in the community" -00743082 32 v 01 relay 0 002 @ 00742320 v 0000 + 00318567 n 0101 02 + 08 00 + 15 00 | pass along; "Please relay the news to the villagers" -00743223 32 v 01 project 0 001 @ 00740577 v 0000 02 + 02 00 + 08 00 | communicate vividly; "He projected his feelings" -00743344 32 v 04 reach 0 get_through 0 get_hold_of 0 contact 0 006 @ 00740577 v 0000 + 06261260 n 0403 + 00039297 n 0401 ~ 00743692 v 0000 ~ 00743911 v 0000 ~ 00744070 v 0000 03 + 09 00 + 10 00 + 02 02 | be in or establish communication with; "Our advertisements reach millions"; "He never contacted his children after he emigrated to Australia" -00743692 32 v 01 ping 0 002 @ 00743344 v 0000 ;c 06128570 n 0000 03 + 08 00 + 09 00 + 11 00 | send a message from one computer to another to check whether it is reachable and active; "ping your machine in the office" -00743911 32 v 01 ping 1 001 @ 00743344 v 0000 01 + 09 00 | contact, usually in order to remind of something; "I'll ping my accountant--April 15 is nearing" -00744070 32 v 01 raise e 002 @ 00743344 v 0000 ;c 06277135 n 0000 02 + 08 00 + 09 00 | establish radio communications with; "They managed to raise Hanoi last night" -00744237 32 v 02 diphthongize 0 diphthongise 0 003 @ 00550117 v 0000 + 07112364 n 0101 ~ 00744439 v 0000 01 + 01 00 | change from a simple vowel to a diphthong; "This vowel diphthongized in Germanic" -00744439 32 v 01 break 7 001 @ 00744237 v 0000 01 + 01 00 | undergo breaking; "The simple vowels broke in many Germanic languages" -00744572 32 v 01 reach_out 0 002 @ 02376958 v 0000 ~ 00744776 v 0000 02 + 02 00 + 22 00 | attempt to communicate; "I try to reach out to my daughter but she doesn't want to have anything to do with me" -00744776 32 v 01 draw_out 0 001 @ 00744572 v 0000 01 + 09 00 | cause to speak, "Can you draw her out--she is always so quiet" -00744904 32 v 02 get_across 0 put_over 0 001 @ 00742320 v 0000 01 + 08 00 | communicate successfully; "I couldn't get across the message"; "He put over the idea very well" -00745078 32 v 01 twang 0 002 @ 00978549 v 0000 + 04989512 n 0101 01 + 08 00 | pronounce with a nasal twang -00745187 32 v 03 vocalize 4 vocalise 5 phonate 0 006 @ 00941990 v 0000 + 07111047 n 0301 + 07110615 n 0305 + 02825355 a 0101 + 07109847 n 0102 + 10743675 n 0102 01 + 02 00 | utter speech sounds -00745383 32 v 01 troll 2 001 @ 00941990 v 0000 02 + 02 00 + 08 00 | speak or recite rapidly or in a rolling voice -00745499 32 v 01 order 0 010 @ 00752764 v 0000 + 06529219 n 0101 + 01009871 n 0101 + 07279687 n 0101 + 10381698 n 0101 ~ 00745810 v 0000 ~ 00745970 v 0000 ~ 00754156 v 0000 ~ 00903098 v 0000 ~ 02480803 v 0000 02 + 08 00 + 16 00 | make a request for something; "Order me some flowers"; "order a work stoppage" -00745810 32 v 01 reorder 0 001 @ 00745499 v 0000 01 + 08 00 | make a new request to be supplied with; "The store had to reorder the popular CD several times" -00745970 32 v 01 place 1 001 @ 00745499 v 0000 01 + 08 00 | to arrange for; "place a phone call"; "place a bet" -00746084 32 v 01 ordain 0 005 @ 01027508 v 0000 + 06565788 n 0101 ~ 00746242 v 0000 ~ 00746366 v 0000 ~ 00746479 v 0000 02 + 08 00 + 26 00 | issue an order -00746242 32 v 01 predestine 0 002 @ 00746084 v 0000 + 07330666 n 0101 02 + 08 00 + 26 00 | decree or determine beforehand -00746366 32 v 01 will 0 001 @ 00746084 v 0000 02 + 08 00 + 26 00 | decree or ordain; "God wills our existence" -00746479 32 v 04 destine 0 fate 0 doom 1 designate 1 005 @ 00746084 v 0000 + 09504915 n 0202 + 07330007 n 0202 + 08567877 n 0102 + 05981768 n 0101 01 + 24 00 | decree or designate beforehand; "She was destined to become a great pianist" -00746718 32 v 04 order 1 tell 2 enjoin 0 say 4 009 @ 00753428 v 0000 + 07170467 n 0301 + 06539770 n 0104 + 07168623 n 0101 ~ 00749205 v 0000 ~ 00749963 v 0000 ~ 00751567 v 0000 ~ 00792471 v 0000 ~ 00833071 v 0000 02 + 24 00 + 26 00 | give instructions to or direct somebody to do something with authority; "I said to him to go home"; "She ordered him to do the shopping"; "The mother told the child to get dressed" -00747135 32 v 03 order 2 prescribe 0 dictate 0 010 @ 00748282 v 0000 + 09824135 n 0302 + 05871245 n 0301 + 06663940 n 0301 + 07168131 n 0304 + 00732456 a 0201 + 06788565 n 0201 + 06539770 n 0104 + 07168623 n 0101 ~ 00751389 v 0000 02 + 08 00 + 27 03 | issue commands or orders for -00747418 32 v 02 force 0 thrust 0 004 @ 02506546 v 0000 + 05194578 n 0101 + 10461424 n 0102 ~ 00748084 v 0000 03 + 19 00 + 24 00 + 30 00 | impose urgently, importunately, or inexorably; "She forced her diet fads on him" -00747640 32 v 01 begin 3 001 @ 00941990 v 0000 01 + 02 00 | begin to speak or say; "Now listen, friends," he began -00747757 32 v 02 intrude 0 obtrude 0 002 @ 00748282 v 0000 + 01352067 a 0101 02 + 04 00 + 22 00 | thrust oneself in as if by force; "The colors don't intrude on the viewer" -00747932 32 v 01 clamp 0 001 @ 00748282 v 0000 01 + 19 00 | impose or inflict forcefully; "The military government clamped a curfew onto the capital" -00748084 32 v 02 stick 0 sting 0 001 @ 00747418 v 0000 01 + 17 00 | saddle with something disagreeable or disadvantageous; "They stuck me with the dinner bill"; "I was stung with a huge tax bill" -00748282 32 v 04 inflict 0 bring_down 0 visit 1 impose 0 010 @ 00740577 v 0000 + 05833371 n 0401 + 01127623 n 0401 + 07372959 n 0303 + 00744758 n 0101 ~ 00747135 v 0000 ~ 00747757 v 0000 ~ 00747932 v 0000 ~ 00748616 v 0000 ~ 00749092 v 0000 01 + 19 00 | impose something unpleasant; "The principal visited his rage on the students" -00748616 32 v 01 give a 003 $ 02309374 v 0000 @ 00748282 v 0000 $ 01069638 v 0000 01 + 15 00 | inflict as a punishment; "She gave the boy a good spanking"; "The judge gave me 10 years" -00748803 32 v 01 furlough 0 002 @ 00802318 v 0000 + 15139432 n 0101 01 + 09 00 | grant a leave to; "The prisoner was furloughed for the weekend to visit her children" -00748972 32 v 01 give 7 001 @ 00802318 v 0000 01 + 15 00 | allow to have or take; "I give you two minutes to respond" -00749092 32 v 01 foist 0 001 @ 00748282 v 0000 01 + 19 00 | to force onto another; "He foisted his work on me" -00749205 32 v 01 direct 0 003 @ 00746718 v 0000 + 07170080 n 0101 ~ 01070968 v 0000 01 + 24 00 | command with authority; "He directed the children to do their homework" -00749376 32 v 01 direct 1 003 @ 00831074 v 0000 ~ 00749584 v 0000 ~ 00749794 v 0000 02 + 09 00 + 20 00 | give directions to; point somebody into a certain direction; "I directed them towards the town hall" -00749584 32 v 01 talk_down 2 001 @ 00749376 v 0000 02 + 09 00 + 10 00 | direct and control (the flight of an airplane during landing) via radio; "the control tower talked down the plane whose pilot fell ill" -00749794 32 v 01 point_the_way 0 001 @ 00749376 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | indicate the right path or direction; "The sign pointed the way to London" -00749963 32 v 01 instruct 1 003 @ 00746718 v 0000 ~ 00750172 v 0000 ~ 00750345 v 0000 01 + 24 00 | give instructions or directions for some task; "She instructed the students to work on their pronunciation" -00750172 32 v 01 charge b 002 @ 00749963 v 0000 + 00731222 n 0102 01 + 24 00 | instruct or command with authority; "The teacher charged the children to memorize the poem" -00750345 32 v 01 charge c 003 @ 00749963 v 0000 ;c 08441203 n 0000 + 07169480 n 0102 02 + 08 00 + 09 00 | instruct (a jury) about the law, its application, and the weighing of evidence -00750532 32 v 03 charge 1 saddle 0 burden 0 007 @ 00751567 v 0000 + 05832745 n 0301 + 00731222 n 0102 ~ 00750842 v 0000 ~ 00750979 v 0000 ~ 00751131 v 0000 ~ 00755331 v 0000 02 + 17 00 + 24 01 | impose a task upon, assign a responsibility to; "He charged her with cleaning up all the files over the weekend" -00750842 32 v 01 overburden 0 002 @ 00750532 v 0000 + 03864994 n 0102 02 + 09 00 + 17 00 | burden with too much work or responsibility -00750979 32 v 01 bear_down 1 001 @ 00750532 v 0000 01 + 04 00 | exert a force or cause a strain upon; "This tax bears down on the lower middle class" -00751131 32 v 03 overwhelm 0 deluge 0 flood_out 0 002 @ 00750532 v 0000 + 13775706 n 0203 02 + 09 00 + 17 00 | charge someone with too many tasks -00751279 32 v 01 mandate 0 002 @ 02391803 v 0000 + 10290099 n 0101 02 + 09 00 + 15 01 | assign authority to -00751389 32 v 01 mandate 2 003 @ 00747135 v 0000 + 00848466 a 0102 + 06556481 n 0101 01 + 08 00 | make mandatory; "the new director of the school board mandated regular tests" -00751567 32 v 02 command 0 require 0 007 @ 00746718 v 0000 + 07192240 n 0201 + 07169848 n 0101 + 07168131 n 0101 ~ 00750532 v 0000 ~ 00754430 v 0000 ~ 00795863 v 0000 01 + 24 00 | make someone do something -00751775 32 v 01 featherbed 0 001 @ 02409412 v 0000 02 + 01 00 + 02 00 | hire more workers than are necessary -00751887 32 v 01 command 1 011 @ 02539334 v 0000 + 13953608 n 0101 + 08190292 n 0101 + 05197797 n 0101 + 09941964 n 0102 + 09941383 n 0101 + 09780828 n 0102 + 09941571 n 0101 + 09941964 n 0103 ~ 00752193 v 0000 ~ 00752335 v 0000 02 + 08 00 + 09 00 | be in command of; "The general commanded a huge army" -00752193 32 v 01 general 0 002 @ 00751887 v 0000 + 10123844 n 0101 01 + 09 00 | command as a general; "We are generaled by an incompetent!" -00752335 32 v 01 officer 0 004 @ 00751887 v 0000 + 10371741 n 0101 + 10448983 n 0103 + 10317007 n 0102 02 + 08 00 + 09 00 | direct or command as an officer -00752493 32 v 01 ask 1 007 @ 00752764 v 0000 ^ 01469770 v 0102 ^ 02384686 v 0102 ^ 02384686 v 0103 ^ 02486693 v 0101 ~ 00753428 v 0000 ~ 00753734 v 0000 04 + 16 00 + 24 00 + 26 00 + 28 01 | make a request or demand for something to somebody; "She asked him for a loan" -00752764 32 v 04 request 1 bespeak 0 call_for 4 quest 1 026 $ 01063695 v 0000 @ 00742320 v 0000 + 07185325 n 0101 ~ 00745499 v 0000 ~ 00752493 v 0000 ~ 00754313 v 0000 ~ 00754731 v 0000 ~ 00754942 v 0000 ~ 00755447 v 0000 ~ 00758887 v 0000 ~ 00765396 v 0000 ~ 00782057 v 0000 ~ 00795632 v 0000 ~ 00808343 v 0000 ~ 00894221 v 0000 ~ 01018065 v 0000 ~ 01018352 v 0000 ~ 01063695 v 0000 ~ 01469770 v 0000 ~ 01826378 v 0000 ~ 02270815 v 0000 ~ 02275365 v 0000 ~ 02384686 v 0000 ~ 02429810 v 0000 ~ 02486693 v 0000 ~ 02498320 v 0000 02 + 08 00 + 09 00 | express the need or desire for; ask for; "She requested an extra bed in her room"; "She called for room service" -00753428 32 v 01 request 2 007 @ 00752493 v 0000 + 06513366 n 0101 + 07185325 n 0101 ~ 00746718 v 0000 ~ 00753881 v 0000 ~ 00793580 v 0000 ~ 00879764 v 0000 03 + 24 00 + 25 00 + 26 00 | ask (a person) to do something; "She asked him to be here at noon"; "I requested that she type the entire manuscript" -00753734 32 v 01 solicit 5 001 @ 00752493 v 0000 01 + 02 00 | make a solicitation or petition for something desired; "She is too shy to solicit" -00753881 32 v 01 call e 004 $ 00792471 v 0000 @ 00753428 v 0000 + 06198505 n 0101 + 00583246 n 0102 01 + 09 00 | order, summon, or request for a specific duty or activity, work, role; "He was already called 4 times for jury duty"; "They called him to active military duty" -00754156 32 v 01 call f 001 @ 00745499 v 0000 02 + 08 00 + 11 00 | order or request or give a command for; "The unions called a general strike for Sunday" -00754313 32 v 01 encore 0 002 @ 00752764 v 0000 + 00099439 n 0101 01 + 09 00 | request an encore, from a performer -00754430 32 v 01 requisition 0 002 @ 00751567 v 0000 + 06476200 n 0101 01 + 24 00 | make a formal request for official services -00754560 32 v 01 page 0 003 @ 01041762 v 0000 + 02823124 n 0102 + 07128322 n 0101 01 + 09 00 | contact, as with a pager or by calling somebody's name over a P.A. system -00754731 32 v 01 petition 0 004 @ 00752764 v 0000 + 06513366 n 0102 + 10672192 n 0102 ~ 00759087 v 0000 03 + 09 00 + 24 00 + 26 00 | write a petition for something to somebody; request formally and in writing -00754942 32 v 01 demand 0 009 @ 00752764 v 0000 + 01061333 n 0101 + 07191279 n 0101 + 10001647 n 0101 ~ 00709205 v 0000 ~ 00755745 v 0000 ~ 00774641 v 0000 ~ 00845144 v 0000 ~ 01068565 v 0000 03 + 08 00 + 26 00 + 28 00 | request urgently and forcefully; "The victim's family is demanding compensation"; "The boss demanded that he be fired immediately"; "She demanded to see the manager" -00755331 32 v 01 adjure 0 003 @ 00750532 v 0000 + 00712765 a 0101 + 07187150 n 0101 01 + 24 00 | command solemnly -00755447 32 v 02 appeal 0 invoke 4 006 @ 00752764 v 0000 + 07190290 n 0201 + 00097244 n 0201 + 07186828 n 0103 ~ 00759501 v 0000 ~ 00794640 v 0000 01 + 12 00 | request earnestly (something from somebody); ask for aid or protection; "appeal to somebody for help"; "Invoke God in times of trouble" -00755745 32 v 03 ask 5 require 1 expect 0 004 @ 00754942 v 0000 + 05944958 n 0301 + 05892651 n 0201 ~ 00874002 v 0000 02 + 16 00 + 24 00 | consider obligatory; request and expect; "We require our secretary to be on time"; "Aren't we asking too much of these children?"; "I expect my students to arrive in time for their lessons" -00756076 32 v 03 claim 1 take 0 exact 1 002 @ 02627934 v 0000 $ 02627934 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take as an undesirable consequence of some event or state of affairs; "the accident claimed three lives"; "The hard work took its toll on her" -00756338 32 v 01 claim 0 009 @ 01011725 v 0000 + 06730563 n 0101 ! 00757375 v 0101 ~ 00756649 v 0000 ~ 00756898 v 0000 ~ 00757056 v 0000 ~ 00757192 v 0000 ~ 00819756 v 0000 ~ 00843959 v 0000 02 + 08 00 + 26 00 | assert or affirm strongly; state to be true or existing; "He claimed that he killed the burglar" -00756649 32 v 02 profess 4 pretend 6 001 @ 00756338 v 0000 02 + 08 00 + 26 00 | state insincerely; "He professed innocence but later admitted his guilt"; "She pretended not to have known the suicide bomber"; "She pretends to be an expert on wine" -00756898 32 v 02 contend 2 postulate 0 002 @ 00756338 v 0000 + 06731378 n 0101 01 + 26 00 | maintain or assert; "He contended that Communism had no future" -00757056 32 v 01 make_out 6 001 @ 00756338 v 0000 01 + 34 00 | try to establish; "She made out that she know nothing about the crime" -00757192 32 v 01 purport 0 001 @ 00756338 v 0000 01 + 28 00 | have the often specious appearance of being, intending, or claiming; "The letter purports to express people's opinion" -00757375 32 v 01 disclaim 0 003 @ 00816556 v 0000 + 07207680 n 0101 ! 00756338 v 0101 02 + 08 00 + 11 00 | make a disclaimer about; "He disclaimed any responsibility" -00757544 32 v 03 disown 0 renounce 0 repudiate 0 009 @ 00685683 v 0000 + 07207410 n 0301 + 07207410 n 0202 + 07254594 n 0202 ~ 00757856 v 0000 ~ 00798717 v 0000 ~ 00799076 v 0000 ~ 00814850 v 0000 ~ 00817003 v 0000 02 + 08 00 + 09 00 | cast off; "She renounced her husband"; "The parents repudiated their son" -00757856 32 v 03 apostatize 0 apostatise 0 tergiversate 0 004 @ 00757544 v 0000 + 00204814 n 0302 + 10007109 n 0202 + 10007109 n 0102 01 + 08 00 | abandon one's beliefs or allegiances -00758042 32 v 01 abnegate 0 003 @ 00817003 v 0000 + 07204665 n 0101 + 09754633 n 0101 02 + 08 00 + 09 00 | deny or renounce; "They abnegated their gods" -00758197 32 v 01 disclaim 1 003 @ 02227487 v 0000 + 07207680 n 0101 ! 00758333 v 0101 01 + 08 00 | renounce a legal claim or title to -00758333 32 v 02 claim 3 take 9 004 $ 02275365 v 0000 @ 01011031 v 0000 + 05175904 n 0101 ! 00758197 v 0101 03 + 08 00 + 09 00 + 11 00 | lay claim to; as of an idea; "She took credit for the whole idea" -00758538 32 v 01 crave 0 001 @ 00759269 v 0000 01 + 08 00 | plead or ask for earnestly -00758627 32 v 01 supplicate 0 008 @ 00759269 v 0000 + 00714889 a 0103 + 00714889 a 0102 + 07187638 n 0101 + 10420031 n 0103 + 10420031 n 0102 $ 00758887 v 0000 $ 00759087 v 0000 01 + 09 00 | ask humbly (for something); "He supplicated the King for clemency" -00758887 32 v 01 supplicate 1 004 $ 00758627 v 0000 @ 00752764 v 0000 + 00714889 a 0103 + 00714889 a 0102 02 + 08 00 + 33 00 | ask for humbly or earnestly, as in prayer; "supplicate God's blessing" -00759087 32 v 01 supplicate 2 004 $ 00758627 v 0000 @ 00754731 v 0000 + 00714889 a 0103 + 00714889 a 0102 01 + 02 00 | make a humble, earnest petition; "supplicate for permission" -00759269 32 v 03 beg 0 implore 0 pray 1 006 @ 00759501 v 0000 + 07187996 n 0101 ^ 00894221 v 0102 ~ 00758538 v 0000 ~ 00758627 v 0000 ~ 00777931 v 0000 02 + 22 00 + 24 00 | call upon in supplication; entreat; "I beg you to stop!" -00759501 32 v 01 plead 0 003 @ 00755447 v 0000 ~ 00759269 v 0000 ~ 00759657 v 0000 01 + 22 00 | appeal or request earnestly; "I pleaded with him to stop" -00759657 32 v 06 bid 2 beseech 0 entreat 0 adjure 1 press 1 conjure 3 006 @ 00759501 v 0000 + 00714190 a 0401 + 07187150 n 0401 + 01612627 a 0102 + 07168131 n 0102 + 07168131 n 0103 02 + 09 00 + 24 00 | ask for or request earnestly; "The prophet bid all people to become good persons" -00759944 32 v 01 pray 0 005 @ 00760187 v 0000 + 10464052 n 0101 + 07189130 n 0101 + 06455990 n 0101 + 01041968 n 0101 03 + 02 00 + 26 00 + 27 00 | address a deity, a prophet, a saint or an object of worship; say a prayer; "pray to the Lord" -00760187 32 v 01 commune 2 003 @ 00740577 v 0000 + 07134575 n 0101 ~ 00759944 v 0000 01 + 09 00 | communicate intimately with; be in a state of heightened, intimate receptivity; "He seemed to commune with nature" -00760402 32 v 02 commune 1 communicate 7 004 @ 01030832 v 0000 + 00033020 n 0201 + 01036333 n 0101 $ 01030678 v 0000 01 + 02 00 | receive Communion, in the Catholic church -00760576 32 v 01 plead 1 003 @ 01010118 v 0000 ;c 08441203 n 0000 + 06559365 n 0101 01 + 07 00 | enter a plea, as in courts of law; "She pleaded not guilty" -00760735 32 v 01 profess 3 002 @ 01010118 v 0000 + 06732925 n 0102 02 + 08 00 + 26 00 | confess one's faith in, or allegiance to; "The terrorists professed allegiance to their country"; "he professes to be a Communist" -00760956 32 v 05 intercede 0 mediate 0 intermediate 0 liaise 0 arbitrate 0 015 @ 00761713 v 0000 + 02637973 a 0501 + 00140233 a 0501 + 01190884 n 0503 + 01190884 n 0502 + 09803429 n 0501 + 07150850 n 0501 + 01190884 n 0501 + 09803429 n 0502 + 01240432 n 0302 + 09624559 n 0303 + 07150644 n 0201 + 01240432 n 0201 + 09624559 n 0201 + 01240210 n 0102 02 + 02 00 + 22 00 | act between parties with a view to reconciling differences; "He interceded in the family dispute"; "He mediated a settlement" -00761454 32 v 02 clear 9 solve a 002 @ 00763399 v 0000 + 02026312 a 0201 01 + 08 00 | settle, as of a debt; "clear a debt"; "solve an old debt" -00761600 32 v 01 concert 0 001 @ 00763399 v 0000 01 + 08 00 | settle by agreement; "concert one's differences" -00761713 32 v 03 negociate 0 negotiate 0 talk_terms 0 010 @ 00813978 v 0000 + 01024400 a 0201 + 00093556 a 0203 + 07148192 n 0201 + 10351874 n 0202 + 10351874 n 0201 ~ 00760956 v 0000 ~ 00762043 v 0000 ~ 02259829 v 0000 ~ 02261464 v 0000 01 + 08 00 | discuss the terms of an arrangement; "They negotiated the sale of the house" -00762043 32 v 02 renegociate 0 renegotiate 0 003 @ 00761713 v 0000 ;c 06520944 n 0000 ~ 02271667 v 0000 01 + 08 00 | revise the terms of in order to limit or regain excess profits gained by the contractor; "We renegociated our old mortgage now that the interest rates have come down" -00762329 32 v 02 renegociate 1 renegotiate 1 001 @ 00762478 v 0000 01 + 02 00 | negociate anew; "The two warring parties will have to renegociate" -00762478 32 v 01 negociate 1 005 @ 00813978 v 0000 ~ 00762329 v 0000 ~ 00762720 v 0000 ~ 00762889 v 0000 ~ 00763009 v 0000 01 + 02 00 | confer with another in order to come to terms or reach an agreement; "The parties negociated all night" -00762720 32 v 01 treat 3 002 @ 00762478 v 0000 + 10351874 n 0103 01 + 22 00 | engage in negotiations in order to reach an agreement; "they had to treat with the King" -00762889 32 v 01 horse-trade 0 002 @ 00762478 v 0000 + 07150499 n 0101 01 + 02 00 | negotiate with much give and take -00763009 32 v 01 parley 0 003 @ 00762478 v 0000 + 07141437 n 0101 ~ 00763260 v 0000 01 + 02 00 | discuss, as between enemies -00763136 32 v 01 powwow 0 002 @ 00813978 v 0000 + 07144416 n 0102 01 + 02 00 | hold a powwow, talk, conference or meeting -00763260 32 v 01 palaver 0 001 @ 00763009 v 0000 01 + 02 00 | have a lengthy discussion, usually between people of different backgrounds -00763399 32 v 04 settle 0 square_off 0 square_up 0 determine 5 009 @ 01021420 v 0000 + 06649567 n 0402 + 05838176 n 0402 + 00162632 n 0402 + 07177924 n 0101 ~ 00761454 v 0000 ~ 00761600 v 0000 ~ 00763713 v 0000 ~ 01035380 v 0000 01 + 08 00 | settle conclusively; come to terms; "We finally settled the argument" -00763713 32 v 01 clinch 0 002 @ 00763399 v 0000 + 05692758 n 0101 01 + 08 00 | settle conclusively; "clinch a deal" -00763831 32 v 01 close 5 001 @ 00352826 v 0000 02 + 02 00 + 08 00 | complete a business deal, negotiation, or an agreement; "We closed on the house on Friday"; "They closed the deal on the building" -00764032 32 v 01 settle 1 003 @ 00805376 v 0000 + 07177924 n 0101 + 05789089 n 0101 02 + 02 00 + 22 00 | end a legal dispute by arriving at a settlement; "The two parties finally settled" -00764222 32 v 01 agree 1 007 @ 00797697 v 0000 + 00553279 a 0101 + 06770275 n 0101 + 07175241 n 0101 ~ 00764526 v 0000 ~ 00764782 v 0000 ~ 00804139 v 0000 02 + 02 00 + 28 00 | consent or assent to a condition, or agree to do something; "She agreed to all my conditions"; "He agreed to leave her alone" -00764526 32 v 01 plea-bargain 0 004 @ 00764222 v 0000 ;c 08441203 n 0000 + 06563950 n 0101 + 06563950 n 0102 01 + 02 00 | agree to plead guilty in return for a lesser charge; "If he plea-bargains, he will be sent to a medium-security prison for 8 years" -00764782 32 v 01 bargain 0 002 @ 00764222 v 0000 + 09839167 n 0101 01 + 02 00 | come to terms; arrive at an agreement -00764902 32 v 05 reconcile 0 patch_up 0 make_up 0 conciliate 0 settle 2 009 @ 00805376 v 0000 + 00759551 a 0402 + 01026262 a 0402 + 00759551 a 0401 + 13971561 n 0401 + 07151122 n 0401 + 01205827 n 0101 ~ 00765213 v 0000 ~ 01093587 v 0000 01 + 02 00 | come to terms; "After some discussion we finally made up" -00765213 32 v 02 propitiate 0 appease 0 006 @ 00764902 v 0000 + 01784946 a 0201 + 09800249 n 0201 + 00760289 a 0101 + 00760289 a 0102 + 01151407 n 0103 01 + 09 00 | make peace with -00765396 32 v 01 apply 0 005 @ 00752764 v 0000 + 06512580 n 0101 + 09607280 n 0101 + 09607280 n 0102 ~ 01072641 v 0000 03 + 02 00 + 22 00 + 27 00 | ask (for something); "He applied for a leave of absence"; "She applied for college"; "apply for a job" -00765649 32 v 04 urge 0 urge_on 0 press 0 exhort 0 010 @ 00872886 v 0000 + 00866735 a 0402 + 07139700 n 0401 + 07246036 n 0401 + 05195362 n 0301 + 00713558 a 0102 + 07252378 n 0105 ~ 00459296 v 0000 ~ 00765977 v 0000 ~ 00827730 v 0000 01 + 24 00 | force or impel in an indicated direction; "I urged him to finish his studies" -00765977 32 v 02 push 1 bear_on 0 006 $ 02406916 v 0000 @ 00765649 v 0000 + 04836683 n 0102 + 00282485 n 0101 ~ 00766289 v 0000 ~ 02374449 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 24 00 + 02 01 | press, drive, or impel (someone) to action or completion of an action; "He pushed her to finish her doctorate" -00766289 32 v 01 nudge 0 002 @ 00765977 v 0000 + 10365514 n 0101 01 + 24 00 | push into action by pestering or annoying gently -00766418 32 v 01 persuade 0 022 @ 00770437 v 0000 + 02361848 a 0103 + 01769843 a 0101 + 07245125 n 0101 + 10418841 n 0101 ! 00770141 v 0101 ~ 00767019 v 0000 ~ 00767122 v 0000 ~ 00767530 v 0000 ~ 00767635 v 0000 ~ 00767807 v 0000 ~ 00768512 v 0000 ~ 00768630 v 0000 ~ 00768778 v 0000 ~ 00769553 v 0000 ~ 00769989 v 0000 ~ 00776268 v 0000 ~ 00776523 v 0000 ~ 00777793 v 0000 ~ 00783689 v 0000 ~ 00784184 v 0000 ~ 01428578 v 0000 03 + 30 00 + 09 01 + 24 01 | cause somebody to adopt a certain position, belief, or course of action; twist somebody's arm; "You can't persuade me to buy this ugly vase!" -00767019 32 v 01 hustle 0 001 @ 00766418 v 0000 01 + 02 00 | pressure or urge someone into an action -00767122 32 v 02 bring_round 0 bring_around 0 001 @ 00766418 v 0000 02 + 09 00 + 10 00 | cause to adopt an opinion or course of action; "His urgent letter finally brought me around to give money to the school" -00767334 32 v 01 bring 3 002 @ 00770437 v 0000 $ 01808218 v 0000 02 + 09 00 + 10 00 | induce or persuade; "The confession of one of the accused brought the others to admit to the crime as well" -00767530 32 v 01 badger 0 001 @ 00766418 v 0000 02 + 09 00 + 24 00 | persuade through constant efforts -00767635 32 v 01 sell 0 001 @ 00766418 v 0000 03 + 11 00 + 14 00 + 15 00 | persuade somebody to accept something; "The French try to sell us their image as great lovers" -00767807 32 v 01 chat_up 1 001 @ 00766418 v 0000 01 + 09 00 | talk to someone with the aim of persuading him -00767918 32 v 01 blaze_away 0 001 @ 00989201 v 0000 01 + 22 00 | speak with fire and passion; "He blazed away at his opponents in the Senate" -00768062 32 v 02 memorialize 0 memorialise 0 003 @ 00989201 v 0000 + 07452841 n 0203 + 07452841 n 0102 02 + 08 00 + 09 00 | address in a memorial; "The President memorialized the heroes of the battle" -00768265 32 v 01 keynote 0 002 @ 00989201 v 0000 + 07240278 n 0101 01 + 08 00 | give the keynote address to (an audience) -00768389 32 v 01 talk_out_of 0 002 @ 00770141 v 0000 ! 00768512 v 0101 01 + 30 00 | persuade someone not to do something -00768512 32 v 01 talk_into 0 002 @ 00766418 v 0000 ! 00768389 v 0101 01 + 30 00 | persuade somebody to do something -00768630 32 v 01 rope_in 0 001 @ 00766418 v 0000 02 + 09 00 + 24 00 | draw in as if with a rope; lure; "The agent had roped in several customers" -00768778 32 v 07 wheedle 0 cajole 0 palaver 1 blarney 0 coax 0 sweet-talk 0 inveigle 0 011 @ 00766418 v 0000 + 10775379 n 0502 + 06696025 n 0502 + 03059366 n 0502 + 06696025 n 0401 + 06695862 n 0303 + 06695862 n 0202 + 10775379 n 0101 + 00159899 n 0102 ~ 00769453 v 0000 ~ 01035199 v 0000 01 + 30 00 | influence or urge by gentle urging, caressing, or flattering; "He palavered her into going along" -00769180 32 v 01 elocute 0 003 @ 01051364 v 0000 + 00150505 a 0101 + 07083246 n 0101 02 + 02 00 + 08 00 | declaim in an elocutionary manner; "The poet elocuted beautifully" -00769355 32 v 01 soft-soap 0 001 @ 00880227 v 0000 01 + 09 00 | use flattering talk on somebody -00769453 32 v 01 soft-soap 1 001 @ 00768778 v 0000 01 + 09 00 | persuade someone through flattery -00769553 32 v 03 convert 0 win_over 0 convince 0 003 @ 00766418 v 0000 + 02361848 a 0301 ~ 01830445 v 0000 01 + 09 00 | make (someone) agree, understand, or realize the truth or validity of something; "He had finally convinced several customers of the advantages of his product" -00769834 32 v 02 proselytize 0 proselytise 0 003 * 00827730 v 0000 @ 00385385 v 0000 + 10485168 n 0101 01 + 02 00 | convert to another faith or religion -00769989 32 v 01 brainwash 0 001 @ 00766418 v 0000 01 + 09 00 | persuade completely, often through coercion; "The propaganda brainwashed many people" -00770141 32 v 02 dissuade 0 deter 0 009 @ 00872886 v 0000 + 01764543 a 0201 + 07254057 n 0201 + 07254057 n 0202 + 01770903 a 0101 + 07253948 n 0101 + 07245686 n 0101 ! 00766418 v 0101 ~ 00768389 v 0000 01 + 09 00 | turn away from by persuasion; "Negative campaigning will only dissuade people" -00770437 32 v 06 induce 0 stimulate 1 cause 0 have 0 get 0 make 0 023 + 00322457 a 0301 + 00042311 n 0302 + 07326557 n 0301 + 06740402 n 0301 + 00007347 n 0302 + 05827684 n 0201 + 01261974 n 0201 + 05827684 n 0202 + 00324013 a 0102 + 09179776 n 0102 + 00156390 n 0102 + 10418841 n 0102 + 00159177 n 0102 ~ 00699485 v 0000 ~ 00766418 v 0000 ~ 00767334 v 0000 ~ 00771133 v 0000 ~ 00771341 v 0000 ~ 00771490 v 0000 ~ 00771632 v 0000 ~ 00771961 v 0000 ~ 00834943 v 0000 ~ 02506546 v 0000 05 + 25 00 + 24 05 + 24 03 + 24 02 + 24 01 | cause to do; cause to act in a specified manner; "The ads induced me to buy a VCR"; "My children finally got me to buy a computer"; "My wife made me buy a new sofa" -00771133 32 v 01 solicit 4 001 @ 00770437 v 0000 01 + 09 00 | incite, move, or persuade to some act of lawlessness or insubordination; "He was accused of soliciting his colleagues to destroy the documents" -00771341 32 v 01 encourage 0 001 @ 00770437 v 0000 03 + 09 00 + 10 00 + 24 00 | spur on; "His financial success encouraged him to look for a wife" -00771490 32 v 01 let 0 001 @ 00770437 v 0000 01 + 25 00 | actively cause something to happen; "I let it be known that I was not interested" -00771632 32 v 01 lead 0 003 @ 00770437 v 0000 + 09623038 n 0101 ~ 00771806 v 0000 01 + 24 00 | cause to undertake a certain action; "Her greed led her to forge the checks" -00771806 32 v 01 give 9 001 @ 00771632 v 0000 01 + 24 00 | guide or direct, as by behavior of persuasion; "You gave me to think that you agreed with me" -00771961 32 v 03 prompt 0 inspire 0 instigate 1 005 @ 00770437 v 0000 + 07251619 n 0303 + 00156625 n 0302 + 10209082 n 0301 + 07246582 n 0102 01 + 24 00 | serve as the inciting cause of; "She prompted me to call my relatives" -00772189 32 v 02 argue 2 reason 0 012 @ 00772967 v 0000 + 14379829 n 0202 + 05651680 n 0201 + 10510339 n 0201 + 01799670 a 0101 + 07140978 n 0101 + 07140978 n 0102 + 05773049 n 0101 + 09997404 n 0102 ~ 00772488 v 0000 ~ 00773285 v 0000 ~ 00895304 v 0000 01 + 26 00 | present reasons and arguments -00772488 32 v 01 re-argue 0 001 @ 00772189 v 0000 01 + 08 00 | argue again; "This politician will be forced into re-arguing an old national campaign" -00772640 32 v 02 argue 1 indicate 2 009 @ 00772967 v 0000 + 02091300 a 0201 + 06671818 n 0201 + 06797169 n 0201 + 05816790 n 0203 + 06797169 n 0202 + 06648724 n 0101 + 07140978 n 0102 + 05773049 n 0101 02 + 08 00 + 11 00 | give evidence of; "The evidence argues for your claim"; "The results indicate the need for more work" -00772967 32 v 03 present 0 represent b lay_out 0 006 @ 01009240 v 0000 + 05926676 n 0201 + 06891022 n 0101 ~ 00772189 v 0000 ~ 00772640 v 0000 ~ 00953700 v 0000 02 + 08 00 + 15 00 | bring forward and present to the mind; "We presented the arguments to him"; "We cannot represent this knowledge to our formal reason" -00773285 32 v 01 expostulate 0 002 @ 00772189 v 0000 + 07246742 n 0101 02 + 02 00 + 26 00 | reason with (somebody) for the purpose of dissuasion -00773432 32 v 04 argue 0 contend 1 debate 1 fence 0 013 @ 00964694 v 0000 * 00804802 v 0000 + 00602117 a 0302 + 07140978 n 0303 + 07183151 n 0202 + 00603367 a 0101 + 07183151 n 0107 + 09997404 n 0102 ~ 00773786 v 0000 ~ 00773922 v 0000 ~ 00774056 v 0000 ~ 00775156 v 0000 ~ 00775831 v 0000 03 + 02 00 + 08 00 + 22 00 | have an argument about something -00773786 32 v 01 stickle 0 002 @ 00773432 v 0000 + 10655986 n 0101 01 + 02 00 | dispute or argue stubbornly (especially minor points) -00773922 32 v 01 spar 0 002 @ 00773432 v 0000 + 07182744 n 0101 02 + 02 00 + 22 00 | fight verbally; "They were sparring all night" -00774056 32 v 06 quibble 0 niggle 0 pettifog 0 bicker 0 squabble 0 brabble 0 007 @ 00773432 v 0000 + 07184735 n 0505 + 07184735 n 0401 + 10501203 n 0304 + 07184735 n 0306 + 09896826 n 0202 + 10501203 n 0101 02 + 02 00 + 22 00 | argue over petty things; "Let's not quibble over pennies" -00774344 32 v 02 brawl 0 wrangle 0 006 @ 00775156 v 0000 + 07184149 n 0202 + 10792746 n 0201 + 07150138 n 0204 + 01176431 n 0101 + 09873348 n 0101 02 + 02 00 + 22 00 | to quarrel noisily, angrily or disruptively; "The bar keeper threw them out, but they continued to wrangle on down the street" -00774641 32 v 02 clamor 3 clamour 3 003 @ 00754942 v 0000 + 07122118 n 0203 + 07122118 n 0102 02 + 02 00 + 22 00 | make loud demands; "he clamored for justice and tolerance" -00774817 32 v 01 spat 0 002 @ 00775156 v 0000 + 07184735 n 0103 01 + 02 00 | engage in a brief and petty quarrel -00774932 32 v 04 polemize 0 polemise 0 polemicize 0 polemicise 0 004 @ 00775156 v 0000 + 07183660 n 0401 + 07183660 n 0301 + 07183660 n 0101 01 + 02 00 | engage in a controversy; "The two historians polemicized for years" -00775156 32 v 05 quarrel 0 dispute 1 scrap 0 argufy 0 altercate 0 016 @ 00773432 v 0000 + 01170962 n 0304 + 09939313 n 0305 + 00603804 a 0204 + 01170813 n 0201 + 07181935 n 0201 + 07183151 n 0204 + 07242104 n 0202 + 09615465 n 0201 + 07184149 n 0101 + 10498422 n 0102 + 10498422 n 0101 ~ 00774344 v 0000 ~ 00774817 v 0000 ~ 00774932 v 0000 ~ 00775692 v 0000 02 + 02 00 + 22 00 | have a disagreement over something; "We quarreled over the question as to who discovered America"; "These two fellows are always scrapping over something" -00775692 32 v 01 fall_out 0 001 @ 00775156 v 0000 02 + 02 00 + 22 00 | have a breach in relations; "We fell out over a trivial question" -00775831 32 v 01 oppose 1 006 @ 00773432 v 0000 + 01246148 a 0101 + 00202284 n 0102 + 09773245 n 0104 + 09773245 n 0103 ~ 00869596 v 0000 02 + 08 00 + 09 00 | be against; express opposition to; "We oppose the ban on abortion" -00776059 32 v 03 oppose 0 controvert 0 contradict 1 005 @ 00814850 v 0000 + 01246148 a 0101 + 09773245 n 0104 ~ 02473431 v 0000 ~ 02521410 v 0000 01 + 08 00 | be resistant to; "The board opposed his motion" -00776268 32 v 01 assure 1 003 @ 00766418 v 0000 + 07227406 n 0101 ~ 01019808 v 0000 02 + 18 00 + 24 00 | assure somebody of the truth of something with the intention of giving the listener confidence; "I assured him that traveling to Cambodia was safe" -00776523 32 v 03 charm 0 influence 0 tempt 0 009 @ 00766418 v 0000 + 02362904 a 0301 + 00159620 n 0302 + 10699752 n 0301 + 10461747 n 0201 + 11414608 n 0201 + 05194151 n 0201 + 04687333 n 0103 ~ 00777522 v 0000 02 + 09 00 + 30 00 | induce into action by using one's charm; "She charmed him into giving her all his money" -00776846 32 v 01 gibber 1 003 @ 00983824 v 0000 + 06608728 n 0102 + 06608728 n 0101 02 + 02 00 + 08 00 | chatter inarticulately; of monkeys -00776988 32 v 06 hex 0 bewitch 1 glamour 0 witch 0 enchant 1 jinx 2 013 @ 02586458 v 0000 + 07160424 n 0602 + 14407536 n 0501 + 05979454 n 0501 + 10055085 n 0501 + 09503282 n 0401 + 10055297 n 0402 + 05979350 n 0402 + 04685195 n 0302 + 05979454 n 0202 + 07160424 n 0101 ~ 00777391 v 0000 ~ 01064560 v 0000 02 + 08 00 + 09 00 | cast a spell over someone or something; put a hex on someone or something -00777391 32 v 01 voodoo 0 003 @ 00776988 v 0000 + 06245816 n 0101 + 03603958 n 0102 01 + 09 00 | bewitch by or as if by a voodoo -00777522 32 v 06 magnetize 0 mesmerize 0 mesmerise 0 magnetise 0 bewitch 0 spellbind 0 004 @ 00776523 v 0000 + 10634990 n 0601 + 13599547 n 0101 + 03705379 n 0101 02 + 09 00 + 10 00 | attract strongly, as if with a magnet; "She magnetized the audience with her tricks" -00777793 32 v 01 prevail 2 001 @ 00766418 v 0000 01 + 22 00 | use persuasion successfully; "He prevailed upon her to visit his parents" -00777931 32 v 02 importune 0 insist 3 004 @ 00759269 v 0000 + 07191777 n 0202 + 01214557 n 0201 ~ 00778122 v 0000 01 + 09 00 | beg persistently and urgently; "I importune you to help them" -00778122 32 v 01 besiege 0 001 @ 00777931 v 0000 01 + 09 00 | harass, as with questions or requests; "The press photographers besieged the movie star" -00778275 32 v 04 interrupt 0 disrupt 0 break_up 0 cut_off 0 016 @ 00362348 v 0000 + 00383952 n 0203 + 00383952 n 0102 + 03580990 n 0101 ~ 00292507 v 0000 ~ 00364478 v 0000 ~ 00778745 v 0000 ~ 00778885 v 0000 ~ 00779061 v 0000 ~ 00780191 v 0000 ~ 00780444 v 0000 ~ 00907800 v 0000 ~ 00914769 v 0000 ~ 01057034 v 0000 ~ 01862918 v 0000 ~ 02411950 v 0000 05 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | make a break in; "We interrupt the program for the following messages" -00778745 32 v 01 break d 002 @ 00778275 v 0000 + 03034244 n 0102 02 + 08 00 + 11 00 | interrupt the flow of current in; "break a circuit" -00778885 32 v 02 put_away 0 put_aside 0 001 @ 00778275 v 0000 01 + 08 00 | turn away from and put aside, perhaps temporarily; "it's time for you to put away childish things" -00779061 32 v 03 pause 1 intermit 0 break 4 008 @ 00778275 v 0000 + 01062997 n 0303 + 01063578 n 0201 + 15271008 n 0101 + 01062817 n 0101 ~ 00779360 v 0000 ~ 00779908 v 0000 ~ 00780052 v 0000 01 + 02 00 | cease an action temporarily; "We pause for station identification"; "let's break for lunch" -00779360 32 v 04 rest 0 breathe 0 catch_one's_breath 0 take_a_breather 0 005 @ 00779061 v 0000 + 15274695 n 0202 + 00831191 n 0201 + 15274074 n 0102 + 10524973 n 0101 01 + 02 00 | take a short break from one's activities in order to relax -00779601 32 v 01 rest 1 005 + 14012501 n 0101 + 15274074 n 0102 + 10524973 n 0101 ^ 00779360 v 0101 ~ 00779804 v 0000 01 + 08 00 | give a rest to; "He rested his bad leg"; "Rest the dogs for a moment" -00779804 32 v 01 blow c 001 @ 00779601 v 0000 01 + 08 00 | allow to regain its breath; "blow a horse" -00779908 32 v 01 take_five 0 001 @ 00779061 v 0000 01 + 02 00 | take a break for five minutes; "The musicians took five during the rehearsal" -00780052 32 v 01 take_ten 0 001 @ 00779061 v 0000 01 + 02 00 | take a ten minute break; "The players took ten during the long rehearsal" -00780191 32 v 07 chime_in 0 cut_in 0 put_in 0 butt_in 0 chisel_in 0 barge_in 0 break_in 0 002 @ 00778275 v 0000 ~ 00520357 v 0000 01 + 02 00 | break into a conversation; "her husband always chimes in, even when he is not involved in the conversation" -00780444 32 v 02 burst_in_on 0 burst_upon 0 001 @ 00778275 v 0000 01 + 08 00 | spring suddenly; "He burst upon our conversation" -00780575 32 v 04 digress 0 stray 0 divagate 0 wander 0 006 @ 00952524 v 0000 + 06600684 n 0304 + 00350380 n 0306 + 00768397 a 0101 + 06600684 n 0101 + 00350380 n 0103 02 + 02 00 + 22 00 | lose clarity or turn aside especially from the main subject of attention or course of argument in writing, thinking, or speaking; "She always digresses when telling a story"; "her mind wanders"; "Don't digress when you give a lecture" -00781000 32 v 04 continue 0 go_on 0 carry_on 0 proceed 0 005 @ 00962447 v 0000 + 05051896 n 0103 + 01017987 n 0102 ~ 00781491 v 0000 ~ 02684453 v 0000 03 + 02 00 + 28 00 + 33 00 | continue talking; "I know it's hard," he continued, "but there is no choice"; "carry on--pretend we are not in the room" -00781303 32 v 02 go_ahead 0 plow_ahead 0 003 @ 02367363 v 0000 + 06874391 n 0102 + 04836074 n 0104 02 + 01 00 + 02 00 | proceed (with a plan of action); "He went ahead with the project" -00781491 32 v 01 segue 0 001 @ 00781000 v 0000 03 + 01 00 + 02 00 + 22 00 | proceed without interruption; in music or talk; "He segued into another discourse" -00781652 32 v 03 hook 0 solicit 1 accost 0 003 $ 00783042 v 0000 @ 02296726 v 0000 + 00161044 n 0201 02 + 02 00 + 09 00 | approach with an offer of sexual favors; "he was solicited by a prostitute"; "The young man was caught soliciting in the park" -00781903 32 v 01 hit c 001 @ 00990392 v 0000 01 + 22 00 | pay unsolicited and usually unwanted sexual attention to; "He tries to hit on women in bars" -00782057 32 v 03 solicit 0 beg 1 tap 0 007 @ 00752764 v 0000 + 07187996 n 0201 + 07187773 n 0101 + 10623354 n 0101 ~ 00782428 v 0000 ~ 02458747 v 0000 ~ 02458943 v 0000 01 + 16 00 | make a solicitation or entreaty for something; request urgently or persistently; "Henry IV solicited the Pope for a divorce"; "My neighbor keeps soliciting money for different charities" -00782428 32 v 01 quest 0 001 @ 00782057 v 0000 01 + 02 00 | seek alms, as for religious purposes -00782527 32 v 03 entice 0 lure 0 tempt 4 018 @ 00794079 v 0000 + 02362904 a 0301 + 00159620 n 0302 + 10699752 n 0301 + 02776205 n 0203 + 05695232 n 0204 + 04689660 n 0201 + 05694791 n 0102 + 04689660 n 0102 + 00159620 n 0101 ~ 00783042 v 0000 ~ 00783246 v 0000 ~ 00783523 v 0000 ~ 00783859 v 0000 ~ 00783956 v 0000 ~ 00784080 v 0000 ~ 02577755 v 0000 ~ 02577877 v 0000 02 + 09 00 + 30 00 | provoke someone to do something through (often false or exaggerated) promises or persuasion; "He lured me into temptation" -00783042 32 v 02 hook 9 snare 0 004 @ 00782527 v 0000 + 05837370 n 0202 + 05695232 n 0103 $ 00781652 v 0000 02 + 09 00 + 10 00 | entice and trap; "The car salesman had snared three potential customers" -00783246 32 v 01 seduce 0 004 $ 01428578 v 0000 @ 00782527 v 0000 + 00160415 n 0101 + 10575241 n 0101 02 + 09 00 + 10 00 | lure or entice away from duty, principles, or proper conduct; "She was seduced by the temptation of easy money and started to work in a massage parlor" -00783523 32 v 01 call b 003 $ 00975036 v 0000 @ 00782527 v 0000 + 06796642 n 0102 01 + 08 00 | lure by imitating the characteristic call of an animal; "Call ducks" -00783689 32 v 01 drag 0 001 @ 00766418 v 0000 01 + 20 00 | persuade to come away from something attractive or interesting; "He dragged me away from the television set" -00783859 32 v 01 stool 0 001 @ 00782527 v 0000 01 + 08 00 | lure with a stool, as of wild fowl -00783956 32 v 01 lead_on 0 001 @ 00782527 v 0000 02 + 09 00 + 10 00 | entice or induce especially when unwise or mistaken -00784080 32 v 01 tweedle 0 001 @ 00782527 v 0000 02 + 09 00 + 30 00 | entice through the use of music -00784184 32 v 01 tempt 3 003 @ 00766418 v 0000 + 02362904 a 0101 + 10699752 n 0101 01 + 09 00 | try presumptuously; "St. Anthony was tempted in the desert" -00784342 32 v 03 ask 0 inquire 1 enquire 0 011 $ 00784727 v 0000 $ 00897746 v 0000 @ 00740577 v 0000 + 10207831 n 0302 + 07193596 n 0303 + 10207831 n 0201 + 07193596 n 0202 + 07193184 n 0202 + 10207831 n 0105 ~ 00784874 v 0000 ~ 00877559 v 0000 05 + 02 00 + 14 00 + 20 00 + 22 00 + 29 00 | inquire about; "I asked about their special today"; "He had to ask directions several times" -00784727 32 v 01 ask 2 003 @ 00980453 v 0000 + 10207831 n 0105 $ 00784342 v 0000 01 + 08 00 | direct or put; seek an answer to; "ask a question" -00784874 32 v 01 pry 0 002 @ 00784342 v 0000 + 05683390 n 0102 02 + 02 00 + 22 00 | be nosey; "Don't pry into my personal matters!" -00785008 32 v 02 question 0 query 0 013 @ 00897746 v 0000 + 10207831 n 0204 + 07193596 n 0204 + 07196682 n 0101 + 07193596 n 0101 + 10207831 n 0103 + 07193184 n 0101 ~ 00729378 v 0000 ~ 00785329 v 0000 ~ 00786816 v 0000 ~ 00788057 v 0000 ~ 00809071 v 0000 ~ 00831476 v 0000 03 + 08 00 + 09 00 + 29 00 | pose a question -00785329 32 v 01 interpellate 0 002 @ 00785008 v 0000 + 06653160 n 0101 01 + 09 00 | question formally about policy or government business -00785470 32 v 01 spy 0 004 @ 00785962 v 0000 + 10642151 n 0101 + 10641755 n 0101 + 00654234 n 0101 02 + 02 00 + 22 00 | secretly collect sensitive or classified information; engage in espionage; "spy for the Russians" -00785690 32 v 04 spy 1 stag 1 snoop 0 sleuth 0 009 * 00785962 v 0000 @ 02163301 v 0000 + 00635205 n 0404 + 10611613 n 0401 + 10617193 n 0302 + 10617193 n 0301 + 10641755 n 0101 + 10642151 n 0101 + 00881441 n 0101 02 + 02 00 + 22 00 | watch, observe, or inquire secretly -00785962 32 v 03 investigate 1 inquire 2 enquire 2 013 @ 00788564 v 0000 + 10207831 n 0302 + 00636728 n 0302 + 00879259 a 0201 + 00636728 n 0201 + 07193184 n 0202 + 00879030 a 0102 + 00879030 a 0103 + 05800611 n 0102 + 00633864 n 0101 + 10009276 n 0102 + 00633864 n 0102 ~ 00785470 v 0000 03 + 02 00 + 08 00 + 09 00 | conduct an inquiry or investigation of; "The district attorney's office investigated reports of possible irregularities"; "inquire into the disappearance of the rich old lady" -00786458 32 v 02 quiz 0 test 0 010 @ 00786816 v 0000 + 07197021 n 0203 + 00794367 n 0201 + 01006675 n 0201 + 10703692 n 0201 + 10068234 n 0202 + 00636461 n 0202 + 10068234 n 0103 + 07199191 n 0101 $ 00669970 v 0000 02 + 09 00 + 20 00 | examine someone's knowledge of something; "The teacher tests us every week"; "We got quizzed on French irregular verbs" -00786816 32 v 01 examine 0 009 @ 00785008 v 0000 + 10703692 n 0102 + 07193958 n 0102 + 07197021 n 0101 + 00636461 n 0101 ~ 00786458 v 0000 ~ 00787049 v 0000 ~ 00787359 v 0000 ~ 00788821 v 0000 02 + 09 00 + 20 00 | question closely -00787049 32 v 02 cross_examine 0 cross_question 0 005 @ 00786816 v 0000 + 07195630 n 0201 + 09980458 n 0202 + 07194950 n 0101 + 09980458 n 0101 02 + 09 00 + 20 00 | question closely, or question a witness that has already been questioned by the opposing side; "The witness was cross-examined by the defense" -00787359 32 v 02 catechize 0 catechise 0 003 @ 00786816 v 0000 + 07194293 n 0201 + 07194293 n 0101 01 + 09 00 | examine through questioning and answering -00787515 32 v 02 catechize 1 catechise 1 003 @ 00829107 v 0000 + 06412771 n 0201 + 06412771 n 0101 01 + 09 00 | give religious instructions to -00787660 32 v 02 reinforce 0 reward 0 005 @ 00829107 v 0000 + 01219551 n 0201 + 05828552 n 0103 + 01219551 n 0102 + 05828552 n 0102 01 + 08 00 | strengthen and support with rewards; "Let's reinforce good behavior" -00787876 32 v 01 spoonfeed 0 002 @ 00829107 v 0000 + 00892711 n 0101 03 + 09 00 + 14 00 + 15 00 | teach without challenging the students; "This professor spoonfeeds his students" -00788057 32 v 01 pump 0 001 @ 00785008 v 0000 01 + 09 00 | question persistently; "She pumped the witnesses for information" -00788184 32 v 02 interrogate 0 question 3 010 @ 00897746 v 0000 + 07196682 n 0201 + 07193596 n 0201 + 07193184 n 0201 + 00687163 a 0101 + 00687163 a 0102 + 07193596 n 0105 + 07196682 n 0102 + 07193958 n 0101 + 10208287 n 0102 01 + 09 00 | pose a series of questions to; "The suspect was questioned by the police"; "We questioned the survivor about the details of the explosion" -00788564 32 v 02 probe 0 examine 1 008 @ 00789138 v 0000 + 07193958 n 0202 + 07197021 n 0201 + 00636461 n 0201 + 05800611 n 0101 ~ 00785962 v 0000 ~ 00788971 v 0000 ~ 02500902 v 0000 03 + 02 00 + 08 00 + 22 00 | question or examine thoroughly and closely -00788821 32 v 01 grill 0 001 @ 00786816 v 0000 01 + 09 00 | examine thoroughly; "the student was grilled for two hours on the subject of phonology" -00788971 32 v 01 re-examine 0 002 @ 00788564 v 0000 ;c 08441203 n 0000 01 + 09 00 | question after cross-examination by opposing counsel; "re-examine one's witness" -00789138 32 v 02 investigate 0 look_into 0 009 @ 00644583 v 0000 + 00633864 n 0101 + 10523076 n 0103 + 00633864 n 0102 ~ 00648224 v 0000 ~ 00649481 v 0000 ~ 00788564 v 0000 ~ 00877327 v 0000 ~ 02532595 v 0000 03 + 08 00 + 09 00 + 29 00 | investigate scientifically; "Let's investigate the syntax of Chinese" -00789448 32 v 05 call 1 telephone 0 call_up 0 phone 0 ring 0 014 * 00790308 v 0000 @ 00790703 v 0000 ;c 06272290 n 0000 + 07391863 n 0501 + 04401088 n 0402 + 09888017 n 0403 + 06272290 n 0201 + 04401088 n 0201 + 09888017 n 0204 + 09888017 n 0101 + 06272803 n 0101 ~ 00789934 v 0000 ~ 00790135 v 0000 $ 01062739 v 0000 02 + 02 00 + 09 00 | get or try to get into communication (with someone) by telephone; "I tried to call you all night"; "Take two aspirin and call me in the morning" -00789934 32 v 01 cell_phone 0 003 @ 00789448 v 0000 ;c 06272290 n 0000 + 02992529 n 0103 03 + 02 00 + 08 00 + 09 00 | call up by using a cellular phone; "If the train is late, I will cell phone you" -00790135 32 v 01 call_in 0 003 @ 00789448 v 0000 ;c 06272290 n 0000 + 06273555 n 0101 02 + 02 00 + 07 00 | make a phone call; "call in to a radio station"; "call in sick" -00790308 32 v 01 dial 0 003 @ 01224744 v 0000 ;c 06272290 n 0000 + 03186818 n 0101 01 + 02 00 | operate a dial to select a telephone number; "You must take the receiver off the hook before you dial" -00790509 32 v 03 hang_on 0 hold_the_line 0 hold_on 0 003 * 00789448 v 0000 @ 00720063 v 0000 ;c 06272290 n 0000 01 + 02 00 | hold the phone line open; "Please hang on while I get your folder" -00790703 32 v 01 telecommunicate 0 008 @ 00740577 v 0000 + 06271778 n 0101 ~ 00789448 v 0000 ~ 00790965 v 0000 ~ 01007222 v 0000 ~ 01007676 v 0000 ~ 01032451 v 0000 ~ 01062739 v 0000 01 + 02 00 | communicate over long distances, as via the telephone or e-mail -00790965 32 v 01 telex 0 002 @ 00790703 v 0000 + 04404200 n 0104 03 + 08 00 + 14 00 + 15 00 | communicate by telex; "We telexed the information to our sister company" -00791134 32 v 03 summon 0 summons 0 cite 7 006 @ 00792471 v 0000 + 06558277 n 0301 + 07169098 n 0201 + 06556692 n 0201 ~ 00792165 v 0000 ~ 01068985 v 0000 03 + 08 00 + 09 00 + 20 00 | call in an official matter, such as to attend court -00791372 32 v 01 beep 1 003 @ 00792471 v 0000 + 07377082 n 0101 + 02823124 n 0101 01 + 09 00 | call, summon, or alert with a beeper -00791506 32 v 02 recall 2 call_back 8 003 @ 00792471 v 0000 + 01218213 n 0201 + 01258719 n 0101 01 + 09 00 | summon to return; "The ambassador was recalled to his country"; "The company called back many of the workers it had laid off during the recession" -00791764 32 v 01 call_back 9 002 @ 00815686 v 0000 + 06273207 n 0101 03 + 02 00 + 08 00 + 09 00 | return or repeat a telephone call; "I am busy right now--can you call back in an hour?"; "She left a message but the contractor never called back" -00792011 32 v 01 call_in 2 002 $ 01469960 v 0000 @ 00792471 v 0000 01 + 09 00 | summon to a particular activity or employment; "Experts were called in" -00792165 32 v 01 vouch 0 002 @ 00791134 v 0000 + 10760622 n 0101 01 + 09 00 | summon (a vouchee) into court to warrant or defend a title -00792304 32 v 01 buzz 0 004 @ 01041762 v 0000 + 07378234 n 0101 + 02930080 n 0101 + 03222516 n 0103 02 + 09 00 + 10 00 | call with a buzzer; "he buzzed the servant" -00792471 32 v 02 call 5 send_for 0 016 $ 02429810 v 0000 @ 00746718 v 0000 + 09888429 n 0101 ^ 01629958 v 010b ^ 01646866 v 0103 ^ 01097960 v 0101 $ 00753881 v 0000 ~ 00791134 v 0000 ~ 00791372 v 0000 ~ 00791506 v 0000 ~ 00792011 v 0000 ~ 00792921 v 0000 ~ 00793271 v 0000 ~ 00900499 v 0000 ~ 01041762 v 0000 ~ 01097960 v 0000 02 + 09 00 + 20 00 | order, request, or command to come; "She was called into the director's office"; "Call the police!" -00792921 32 v 01 lift 1 001 @ 00792471 v 0000 01 + 08 00 | call to stop the hunt or to retire, as of hunting dogs -00793037 32 v 02 convoke 0 convene 0 006 @ 01041762 v 0000 + 01231819 n 0201 + 09961739 n 0201 + 01231819 n 0202 + 08402222 n 0101 + 01230850 n 0101 02 + 09 00 + 20 00 | call together; "The students were convened in the auditorium" -00793271 32 v 01 muster 0 003 @ 00792471 v 0000 + 01157850 n 0102 + 08479615 n 0101 01 + 09 00 | call to duty, military service, jury duty, etc. -00793418 32 v 01 subpoena 0 002 @ 01438681 v 0000 + 06557047 n 0101 01 + 09 00 | serve or summon with a subpoena; "The witness and her records were subpoenaed" -00793580 32 v 02 invite 0 bid 0 006 @ 00753428 v 0000 + 01612627 a 0202 + 07186528 n 0201 + 07186148 n 0101 ~ 00793785 v 0000 ~ 00868591 v 0000 01 + 25 00 | ask someone in a friendly way to do something -00793785 32 v 02 tempt 1 allure 0 008 @ 00793580 v 0000 * 01807882 v 0000 + 04688842 n 0202 + 00161044 n 0202 + 04688842 n 0201 + 02362904 a 0101 + 07485281 n 0101 + 10699752 n 0101 03 + 09 00 + 10 00 + 24 00 | dispose or incline or entice to; "We were tempted by the delicious-looking food" -00794079 32 v 02 provoke 0 stimulate 0 011 @ 00868591 v 0000 + 02310371 a 0201 + 05827684 n 0202 + 01896478 a 0101 + 09184975 n 0103 + 07252764 n 0101 ~ 00782527 v 0000 ~ 00794383 v 0000 ~ 00794533 v 0000 ~ 00851239 v 0000 ~ 02585050 v 0000 03 + 09 00 + 10 00 + 24 00 | provide the needed stimulus for -00794383 32 v 01 rejuvenate 2 002 @ 00794079 v 0000 ;c 09411430 n 0000 01 + 11 00 | cause (a stream or river) to erode, as by an uplift of the land -00794533 32 v 01 jog 0 001 @ 00794079 v 0000 02 + 08 00 + 10 00 | stimulate to remember; "jog my memory" -00794640 32 v 02 call_on 0 turn e 001 @ 00755447 v 0000 02 + 09 00 + 24 00 | have recourse to or make an appeal or request for help or information to; "She called on her Representative to help her"; "She turned to her relatives for help" -00794880 32 v 01 book_up 0 001 @ 00795632 v 0000 01 + 08 00 | book all available places or tickets -00794981 32 v 01 schedule 0 007 @ 00704690 v 0000 + 06495328 n 0101 + 05910940 n 0103 + 04145417 n 0101 + 01144355 n 0101 ~ 00795264 v 0000 ~ 00795475 v 0000 03 + 08 00 + 09 00 + 24 00 | make a schedule; plan the time and place for events; "I scheduled an exam for this afternoon" -00795264 32 v 02 program 0 programme 0 005 @ 00794981 v 0000 + 05898568 n 0203 + 01144355 n 0202 + 05898568 n 0102 + 01144355 n 0103 01 + 08 00 | arrange a program of or for; "program the 80th birthday party" -00795475 32 v 01 reschedule 0 001 @ 00794981 v 0000 01 + 08 00 | assign a new time and place for an event; "We had to reschedule the doctor's appointment" -00795632 32 v 01 reserve 0 005 $ 02498320 v 0000 @ 00752764 v 0000 + 05795460 n 0101 + 01218327 n 0102 ~ 00794880 v 0000 02 + 08 00 + 14 00 | obtain or arrange (for oneself) in advance; "We managed to reserve a table at Maxim's" -00795863 32 v 07 forbid 0 prohibit 0 interdict 0 proscribe 0 veto 0 disallow 0 nix 0 016 @ 00751567 v 0000 ! 00802318 v 0602 + 00209546 n 0501 + 06542047 n 0403 + 00206302 n 0402 + 06558088 n 0301 + 07255299 n 0301 + 00201923 n 0201 + 07255401 n 0104 + 07255401 n 0103 + 00201923 n 0103 ! 00802318 v 0101 ~ 00796392 v 0000 ~ 00796588 v 0000 ~ 00796839 v 0000 ~ 02480923 v 0000 02 + 08 00 + 24 00 | command against; "I forbid you to call me late at night"; "Mother vetoed the trip to the chocolate store"; "Dad nixed our plans" -00796392 32 v 01 ban 0 003 @ 00795863 v 0000 + 07255401 n 0101 + 06542047 n 0102 02 + 08 00 + 33 00 | prohibit especially by legal means or social pressure; "Smoking is banned in this building" -00796588 32 v 03 bar 0 debar 0 exclude 1 005 @ 00795863 v 0000 + 01862386 a 0301 + 13935227 n 0301 + 14427991 n 0201 + 01077350 n 0102 04 + 08 00 + 09 00 + 20 00 + 21 00 | prevent from entering; keep out; "He was barred from membership in the club" -00796839 32 v 01 enjoin 1 004 @ 00795863 v 0000 + 06542830 n 0101 + 06542830 n 0103 + 06542830 n 0102 01 + 20 00 | issue an injunction -00796976 32 v 07 reject 2 spurn 0 freeze_off 0 scorn 0 pooh-pooh 0 disdain 0 turn_down 0 009 $ 02237338 v 0000 $ 02502916 v 0000 @ 00797430 v 0000 + 00205349 n 0702 + 10616379 n 0402 + 10641551 n 0201 + 00076341 a 0101 + 05790572 n 0102 ~ 00798539 v 0000 02 + 08 00 + 09 00 | reject with contempt; "She spurned his advances" -00797303 32 v 01 puff 0 001 @ 00883226 v 0000 01 + 02 00 | speak in a blustering or scornful manner; "A puffing kind of man" -00797430 32 v 02 refuse 0 decline 0 007 @ 00717358 v 0000 ! 00797697 v 0101 ~ 00796976 v 0000 ~ 00798402 v 0000 ~ 00911761 v 0000 ~ 00911917 v 0000 ~ 02543181 v 0000 03 + 08 00 + 09 00 + 28 00 | show unwillingness towards; "he declined to join the group on a hike" -00797697 32 v 03 accept 0 consent 0 go_for 0 012 @ 00717358 v 0000 + 06689667 n 0201 + 14412725 n 0101 + 00180413 n 0103 ! 00797430 v 0101 ~ 00108747 v 0000 ~ 00764222 v 0000 ~ 00798091 v 0000 ~ 00798249 v 0000 ~ 00802318 v 0000 ~ 00804476 v 0000 ~ 02539686 v 0000 01 + 08 00 | give an affirmative reply to; respond favorably to; "I cannot accept your invitation"; "I go for this resolution" -00798091 32 v 01 settle 4 002 @ 00797697 v 0000 + 00228535 n 0102 01 + 22 00 | accept despite lack of complete satisfaction; "We settled for a lower price" -00798249 32 v 01 contract_in 0 002 @ 00797697 v 0000 ! 00798402 v 0101 01 + 02 00 | consent in writing to pay money to a trade union for political use -00798402 32 v 01 contract_out 0 002 @ 00797430 v 0000 ! 00798249 v 0101 01 + 02 00 | refuse to pay a levy to a union for political use -00798539 32 v 03 rebuff 0 snub 0 repel 0 003 @ 00796976 v 0000 + 07208000 n 0202 + 01225783 n 0101 02 + 08 00 + 09 00 | reject outright and bluntly; "She snubbed his proposal" -00798717 32 v 05 abjure 0 recant 0 forswear 0 retract 0 resile 0 006 @ 00757544 v 0000 + 07206096 n 0401 + 00205079 n 0303 + 07206096 n 0203 + 07206096 n 0102 + 09754541 n 0101 02 + 02 00 + 08 00 | formally reject or disavow a formerly held belief, usually under pressure; "He retracted his earlier statements about his religion"; "She abjured her beliefs" -00799076 32 v 04 swallow 0 take_back 0 unsay 0 withdraw 1 002 @ 00757544 v 0000 + 07206302 n 0401 01 + 08 00 | take back what one has said; "He swallowed his words" -00799243 32 v 01 misstate 0 002 @ 01009240 v 0000 + 06768735 n 0101 01 + 08 00 | state something incorrectly; "You misstated my position" -00799383 32 v 08 retreat 0 pull_back c back_out 0 back_away 0 crawfish 0 crawfish_out 0 pull_in_one's_horns 0 withdraw 0 004 + 10785085 n 0801 + 10784922 n 0801 + 00053913 n 0801 $ 01994442 v 0000 01 + 02 00 | make a retreat from an earlier commitment or activity; "We'll have to crawfish out from meeting with him"; "He backed out of his earlier promise"; "The aggressive investment company pulled in its horns" -00799798 32 v 09 revoke 0 annul 0 lift 0 countermand 0 reverse 0 repeal 0 overturn 0 rescind 0 vacate 0 012 @ 02477334 v 0000 + 01253665 n 0901 + 00232863 n 0801 + 00232863 n 0802 + 00231887 n 0602 + 01760488 a 0501 + 13858604 n 0501 + 05789808 n 0501 + 07168486 n 0401 + 00231887 n 0203 + 01258852 n 0101 ~ 00800242 v 0000 02 + 08 00 + 11 00 | cancel officially; "He revoked the ban on smoking"; "lift an embargo"; "vacate a death sentence" -00800242 32 v 04 renege 0 renege_on 0 renegue_on 0 go_back_on 0 003 * 00884011 v 0000 @ 00799798 v 0000 + 01259211 n 0102 02 + 08 00 + 02 01 | fail to fulfill a promise or obligation; "She backed out of her promise" -00800460 32 v 02 cancel 1 invalidate 0 001 @ 01004062 v 0000 01 + 08 00 | make invalid for use; "cancel cheques or tickets" -00800586 32 v 02 bracket 0 bracket_out 0 003 @ 00200397 v 0000 + 06842452 n 0101 + 06842290 n 0101 01 + 08 00 | place into brackets; "Please bracket this remark" -00800750 32 v 05 cross_off 0 cross_out 0 strike_out 0 strike_off 0 mark 1 001 @ 00179311 v 0000 01 + 08 00 | remove from a list; "Cross the name of the dead person off the list" -00800930 32 v 07 dismiss 0 disregard 0 brush_aside 0 brush_off 1 discount 0 push_aside 0 ignore 0 013 @ 00685683 v 0000 + 00203649 n 0401 + 05706629 n 0201 + 00418615 n 0201 + 01343411 a 0101 ~ 00617413 v 0000 ~ 00687738 v 0000 ~ 00742149 v 0000 ~ 00801522 v 0000 ~ 00801782 v 0000 ~ 00801977 v 0000 ~ 00802136 v 0000 ~ 00886173 v 0000 02 + 08 00 + 09 00 | bar from attention or consideration; "She dismissed his advances" -00801355 32 v 01 recount 2 002 @ 00948071 v 0000 + 00653958 n 0101 01 + 08 00 | count again; "We had to recount all the votes after an accusation of fraud was made" -00801522 32 v 01 pass_off 0 001 @ 00800930 v 0000 01 + 08 00 | disregard; "She passed off the insult" -00801626 32 v 02 dismiss 2 throw_out 1 001 + 01190172 n 0103 01 + 08 00 | cease to consider; put out of judicial consideration; "This case is dismissed!" -00801782 32 v 02 scoff 1 flout 1 005 @ 00800930 v 0000 + 10561320 n 0202 + 06716234 n 0104 + 10561320 n 0101 + 06716234 n 0105 01 + 08 00 | treat with contemptuous disregard; "flout the rules" -00801977 32 v 01 turn_a_blind_eye 2 001 @ 00800930 v 0000 02 + 02 00 + 22 00 | refuse to acknowledge; "He turns a blind eye to the injustices in his office" -00802136 32 v 02 laugh_off 0 laugh_away 0 001 @ 00800930 v 0000 01 + 08 00 | deal with a problem by laughing or pretending to be amused by it; "She laughs away all these problems" -00802318 32 v 04 permit 0 allow 0 let 2 countenance 0 021 $ 02255462 v 0000 @ 00797697 v 0000 + 06687358 n 0402 + 01762257 a 0201 ! 00795863 v 0206 + 01760944 a 0101 + 01762839 a 0101 + 01139194 n 0103 + 06549661 n 0103 + 01139194 n 0102 ! 00795863 v 0101 ~ 00668099 v 0000 ~ 00748803 v 0000 ~ 00748972 v 0000 ~ 00802946 v 0000 ~ 00803325 v 0000 ~ 02449847 v 0000 ~ 02453692 v 0000 ~ 02481436 v 0000 ~ 02481819 v 0000 ~ 02502536 v 0000 02 + 08 00 + 24 00 | consent to, give permission; "She permitted her son to visit her estranged husband"; "I won't let the police search her basement"; "I cannot allow you to see your exam" -00802946 32 v 03 allow 6 permit 6 tolerate 1 006 @ 00802318 v 0000 + 01762839 a 0201 + 01139194 n 0203 + 06549661 n 0203 + 04749991 n 0101 + 01141841 n 0101 02 + 08 00 + 09 00 | allow the presence of or allow (an activity) without opposing or prohibiting; "We don't allow dogs here"; "Children are not permitted beyond this point"; "We cannot tolerate smoking in the hospital" -00803325 32 v 04 authorize 0 authorise 0 pass 0 clear 1 015 @ 00802318 v 0000 + 01141593 n 0401 + 06691083 n 0301 + 05176607 n 0203 + 01138670 n 0202 + 09825096 n 0202 + 05176607 n 0102 + 09825096 n 0101 ~ 00803815 v 0000 ~ 00804002 v 0000 ~ 00806502 v 0000 ~ 02444555 v 0000 ~ 02444662 v 0000 ~ 02475261 v 0000 ~ 02478701 v 0000 02 + 08 00 + 24 00 | grant authorization or clearance for; "Clear the manuscript for publication"; "The rock star never authorized this slanderous biography" -00803815 32 v 01 approbate 0 006 @ 00803325 v 0000 + 14412374 n 0101 + 06686736 n 0101 + 01215392 n 0102 + 07500612 n 0101 + 06687178 n 0101 01 + 08 00 | approve or sanction officially -00804002 32 v 01 certificate 0 003 @ 00803325 v 0000 + 13416345 n 0102 + 06471345 n 0101 02 + 08 00 + 26 00 | authorize by certificate -00804139 32 v 03 assent 0 accede 1 acquiesce 0 010 @ 00764222 v 0000 + 01612627 a 0301 + 14413162 n 0301 + 07175575 n 0302 + 07177192 n 0201 + 00075389 a 0101 + 07175575 n 0101 ! 00804653 v 0101 + 09814567 n 0101 ~ 02585360 v 0000 02 + 02 00 + 22 00 | to agree or express agreement; "The Maestro assented to the request for an encore" -00804476 32 v 05 yield 0 give_in 1 succumb 0 knuckle_under 0 buckle_under 0 003 @ 00797697 v 0000 + 07255027 n 0102 ~ 00878348 v 0000 02 + 02 00 + 27 00 | consent reluctantly -00804653 32 v 01 dissent 0 003 @ 00804802 v 0000 + 00075737 a 0101 ! 00804139 v 0101 01 + 02 00 | withhold assent; "Several Republicans dissented" -00804802 32 v 04 disagree 0 differ 0 dissent 1 take_issue 0 013 + 00075737 a 0301 + 07181358 n 0301 + 07209305 n 0301 + 13982357 n 0302 + 07181546 n 0302 + 10018021 n 0301 + 07181935 n 0202 + 13982357 n 0101 + 07180787 n 0101 ! 00805376 v 0101 ~ 00804653 v 0000 ~ 00805228 v 0000 ~ 00823436 v 0000 03 + 01 00 + 02 00 + 13 01 | be of different opinions; "I beg to differ!"; "She disagrees with her husband on many questions" -00805228 32 v 01 clash 0 002 @ 00804802 v 0000 + 13981137 n 0101 02 + 02 00 + 13 00 | disagree violently; "We clashed over the new farm policies" -00805376 32 v 04 agree 0 hold f concur 0 concord 0 014 $ 01035530 v 0000 + 07180183 n 0402 + 07180183 n 0403 + 07176682 n 0301 + 00553279 a 0101 + 07175241 n 0101 ! 00804802 v 0101 ~ 00764032 v 0000 ~ 00764902 v 0000 ~ 00805910 v 0000 ~ 00806049 v 0000 ~ 00806314 v 0000 ~ 01021420 v 0000 ~ 01021629 v 0000 04 + 02 00 + 13 00 + 26 00 + 28 00 | be in accord; be in agreement; "We agreed on the terms of the settlement"; "I can't agree with you!"; "I hold with those who say life is sacred"; "Both philosophers concord on this point" -00805910 32 v 01 see_eye_to_eye 0 001 @ 00805376 v 0000 02 + 02 00 + 22 00 | be in agreement; "We never saw eye to eye on this question" -00806049 32 v 03 concede 1 yield 1 grant 0 006 @ 00805376 v 0000 + 07176243 n 0203 + 03056010 a 0101 + 07176243 n 0101 + 07176243 n 0102 ~ 00903385 v 0000 07 + 08 00 + 14 00 + 15 00 + 26 00 + 27 00 + 02 02 + 02 01 | be willing to concede; "I grant you this much" -00806314 32 v 02 subscribe 3 support 0 004 * 00806502 v 0000 @ 00805376 v 0000 + 01212519 n 0201 + 10670668 n 0101 01 + 22 00 | adopt as a belief; "I subscribe to your view on abortion" -00806502 32 v 04 approve 0 O.K. 0 okay 0 sanction 1 014 @ 00803325 v 0000 + 06687358 n 0401 + 06687701 n 0303 + 06687701 n 0202 + 00996089 a 0103 + 06687178 n 0101 + 09802844 n 0101 + 01215392 n 0102 ! 00807178 v 0101 + 06687701 n 0201 ~ 00806891 v 0000 ~ 00807059 v 0000 ~ 02453889 v 0000 ~ 02476518 v 0000 02 + 08 00 + 22 00 | give sanction to; "I approve of his educational policies" -00806891 32 v 01 sanction 2 002 @ 00806502 v 0000 + 01124246 n 0101 02 + 08 00 + 11 00 | give religious sanction to, such as through on oath; "sanctify the marriage" -00807059 32 v 01 visa 1 001 @ 00806502 v 0000 01 + 08 00 | approve officially; "The list of speakers must be visaed" -00807178 32 v 02 disapprove 0 reject 0 008 @ 00670261 v 0000 + 00076341 a 0201 + 00203342 n 0201 + 00874621 n 0101 ! 00806502 v 0101 ~ 00807461 v 0000 ~ 00856429 v 0000 ~ 00908099 v 0000 02 + 02 00 + 22 00 | deem wrong or inappropriate; "I disapprove of her child rearing methods" -00807461 32 v 01 object 0 010 @ 00807178 v 0000 + 07246742 n 0104 + 01177033 n 0102 + 10018021 n 0104 ~ 00807941 v 0000 ~ 00808162 v 0000 ~ 00808671 v 0000 ~ 00848707 v 0000 ~ 00910555 v 0000 ~ 00910654 v 0000 04 + 12 00 + 22 00 + 26 00 + 02 01 | express or raise an objection or protest or criticism or express dissent; "She never objected to the amount of work her boss charged her with"; "When asked to drive the truck, she objected that she did not have a driver's license" -00807941 32 v 02 demur 0 except 0 005 @ 00807461 v 0000 + 07209533 n 0201 + 07209089 n 0101 + 06562802 n 0101 + 07209089 n 0103 02 + 02 00 + 22 00 | take exception to; "he demurred at my suggestion to work on Saturday" -00808162 32 v 02 challenge 2 take_exception 3 004 @ 00807461 v 0000 ;c 08441203 n 0000 + 07208565 n 0101 ~ 02497824 v 0000 01 + 22 00 | raise a formal objection in a court of law -00808343 32 v 01 challenge 3 003 * 01860795 v 0000 @ 00752764 v 0000 + 07191569 n 0101 01 + 09 00 | ask for identification; "The illegal immigrant was challenged by the border guard" -00808528 32 v 01 counterchallenge 0 001 @ 00868591 v 0000 02 + 08 00 + 11 00 | challenge in turn; "The authentication was counterchallenged" -00808671 32 v 03 cavil 0 carp 0 chicane 0 005 @ 00807461 v 0000 + 09896826 n 0201 + 10501203 n 0102 + 10501203 n 0103 + 06761798 n 0103 02 + 02 00 + 22 00 | raise trivial objections -00808855 32 v 02 interview 0 question 9 005 @ 00964694 v 0000 + 07193596 n 0201 + 07196075 n 0101 + 10213180 n 0101 + 10213319 n 0101 01 + 09 00 | conduct an interview in television, newspaper, and radio reporting -00809071 32 v 03 check_out 1 sound_out 0 feel_out 0 001 @ 00785008 v 0000 01 + 09 00 | try to learn someone's opinions and intentions; "I have to sound out the new professor" -00809248 32 v 01 interview 1 003 @ 00964694 v 0000 + 07196075 n 0101 + 10213180 n 0101 01 + 09 00 | discuss formally with (somebody) for the purpose of an evaluation; "We interviewed the job candidates" -00809453 32 v 01 interview 2 003 * 00765396 v 0000 @ 00964694 v 0000 + 07196075 n 0101 02 + 02 00 + 22 00 | go for an interview in the hope of being hired; "The job candidate interviewed everywhere" -00809654 32 v 0b hedge 0 fudge 0 evade 0 put_off 3 circumvent 0 parry 0 elude 0 skirt 0 dodge 0 duck 0 sidestep 0 012 @ 00811375 v 0000 + 06756680 n 0901 + 10022759 n 0901 + 00203753 n 0904 + 00740712 n 0903 + 00741685 n 0501 + 00740712 n 0301 + 06761603 n 0101 + 10168012 n 0101 + 06761603 n 0102 ~ 00810226 v 0000 ~ 00810385 v 0000 01 + 08 00 | avoid or try to avoid fulfilling, answering, or performing (duties, questions, or issues); "He dodged the issue"; "she skirted the problem"; "They tend to evade their responsibilities"; "he evaded the questions skillfully" -00810226 32 v 01 beg 2 001 @ 00809654 v 0000 01 + 08 00 | dodge, avoid answering, or take for granted; "beg the question"; "beg the point in the discussion" -00810385 32 v 01 quibble 1 003 @ 00809654 v 0000 + 06761798 n 0101 + 10501203 n 0101 01 + 02 00 | evade the truth of a point or question by raising irrelevant objections -00810557 32 v 02 miss 0 escape 0 003 @ 00811375 v 0000 + 00204199 n 0201 + 00740712 n 0202 02 + 08 00 + 09 00 | fail to experience; "Fortunately, I missed the hurricane" -00810729 32 v 05 get_off 0 get_away 0 get_by 0 get_out 3 escape 4 003 @ 00811375 v 0000 + 00740712 n 0502 ~ 00811039 v 0000 02 + 02 00 + 22 00 | escape potentially unpleasant consequences; get away with a forbidden action; "She gets away with murder!"; "I couldn't get out from under these responsibilities" -00811039 32 v 01 evade 3 001 @ 00810729 v 0000 01 + 02 00 | use cunning or deceit to escape or avoid; "The con man always evades" -00811171 32 v 04 bypass 0 short-circuit 0 go_around 1 get_around 1 002 @ 00811375 v 0000 + 02828648 n 0102 02 + 08 00 + 09 00 | avoid something unpleasant or laborious; "You cannot bypass these rules!" -00811375 32 v 01 avoid 0 010 + 00203753 n 0101 ! 00812298 v 0101 ~ 00809654 v 0000 ~ 00810557 v 0000 ~ 00810729 v 0000 ~ 00811171 v 0000 ~ 00811720 v 0000 ~ 00811881 v 0000 ~ 00811995 v 0000 ~ 00812149 v 0000 02 + 08 00 + 09 00 | stay clear from; keep away from; keep out of the way of someone or something; "Her former friends now avoid her" -00811720 32 v 02 keep_off 0 stay_off 0 001 @ 00811375 v 0000 01 + 09 00 | refrain from entering or walking onto; "keep off the grass"; "stay off the premises" -00811881 32 v 01 shirk 0 001 @ 00811375 v 0000 02 + 08 00 + 09 00 | avoid dealing with; "She shirks her duties" -00811995 32 v 01 shy_away_from 0 001 @ 00811375 v 0000 02 + 08 00 + 33 00 | avoid having to deal with some unpleasant task; "I shy away from this task" -00812149 32 v 02 shun 0 eschew 0 002 @ 00811375 v 0000 + 00203753 n 0103 02 + 08 00 + 09 00 | avoid and stay away from deliberately; stay clear of -00812298 32 v 03 confront 0 face_up 3 face 0 004 @ 02439281 v 0000 ! 00811375 v 0101 $ 01066433 v 0000 ~ 02569630 v 0000 03 + 08 00 + 09 00 + 22 02 | deal with (something unpleasant) head on; "You must confront your problems"; "He faced the terrible consequences of his mistakes" -00812580 32 v 02 debate 0 deliberate 0 011 @ 00813978 v 0000 + 02420215 a 0201 + 07142365 n 0201 + 05785067 n 0201 + 04661151 n 0201 + 00602117 a 0102 + 00590669 a 0101 + 07140978 n 0103 + 07242104 n 0101 + 09997404 n 0101 ~ 00812882 v 0000 02 + 02 00 + 08 00 | discuss the pros and cons of an issue -00812882 32 v 01 vex 4 001 @ 00812580 v 0000 01 + 08 00 | subject to prolonged examination, discussion, or deliberation; "vex the subject of the death penalty" -00813044 32 v 05 consider 2 debate 2 moot 0 turn_over 0 deliberate 1 012 $ 02166460 v 0000 @ 00813978 v 0000 + 07142365 n 0501 + 05785067 n 0501 + 04661151 n 0501 + 07138915 n 0101 + 05784831 n 0101 ~ 00703708 v 0000 ~ 00704073 v 0000 ~ 00714884 v 0000 ~ 00813495 v 0000 ~ 01066292 v 0000 05 + 02 00 + 21 00 + 26 00 + 29 00 + 08 04 | think about carefully; weigh; "They considered the possibility of a strike"; "Turn the proposal over in your mind" -00813495 32 v 01 wrestle 0 001 @ 00813044 v 0000 01 + 22 00 | engage in deep thought, consideration, or debate; "I wrestled with this decision for years" -00813651 32 v 02 bandy 0 kick_around 0 001 @ 00813978 v 0000 01 + 08 00 | discuss lightly; "We bandied around these difficult questions" -00813790 32 v 03 moderate 0 chair 0 lead 1 004 @ 00813978 v 0000 + 01256743 n 0301 + 10468962 n 0204 + 10326257 n 0101 02 + 02 00 + 08 00 | preside over; "John moderated the discussion" -00813978 32 v 03 hash_out 0 discuss 0 talk_over 0 015 @ 00943563 v 0000 + 07140659 n 0201 + 09615336 n 0201 ~ 00761713 v 0000 ~ 00762478 v 0000 ~ 00763136 v 0000 ~ 00812580 v 0000 ~ 00813044 v 0000 ~ 00813651 v 0000 ~ 00813790 v 0000 ~ 00872886 v 0000 ~ 00876665 v 0000 ~ 00964911 v 0000 ~ 00970107 v 0000 ~ 01064151 v 0000 03 + 02 00 + 08 00 + 09 00 | speak with others about (something); talk (something) over in detail; have a discussion; "We discussed our household budget" -00814458 32 v 01 blaspheme 1 003 $ 00865387 v 0000 @ 00943563 v 0000 + 09859412 n 0101 01 + 09 00 | speak of in an irreverent or impious manner; "blaspheme God" -00814621 32 v 03 hold_forth 0 discourse 0 dissertate 0 002 @ 00962447 v 0000 + 06409085 n 0301 01 + 13 00 | talk at length and formally about a topic; "The speaker dissertated about the social politics in 18th century England" -00814850 32 v 02 refute 0 rebut 0 009 @ 00757544 v 0000 + 06562993 n 0201 + 10510546 n 0201 + 07201220 n 0201 + 07200813 n 0101 + 05826469 n 0103 + 10510546 n 0103 ~ 00776059 v 0000 ~ 00815171 v 0000 03 + 08 00 + 09 00 + 11 00 | overthrow by argument, evidence, or proof; "The speaker refuted his opponent's arguments" -00815171 32 v 01 answer 6 002 @ 00814850 v 0000 + 06560254 n 0101 01 + 08 00 | give a defence or refutation of (a charge) or in (an argument); "The defendant answered to all the charges of the prosecution" -00815379 32 v 01 counter 0 002 @ 00815686 v 0000 + 07199922 n 0107 02 + 02 00 + 26 00 | speak in response; "He countered with some very persuasive arguments" -00815539 32 v 01 field 0 001 @ 00815686 v 0000 01 + 08 00 | answer adequately or successfully; "The lawyer fielded all questions from the press" -00815686 32 v 03 answer 0 reply 0 respond 0 014 @ 01009240 v 0000 + 10524413 n 0302 + 10524413 n 0301 + 07199565 n 0201 + 06746005 n 0202 + 06746005 n 0101 + 07200527 n 0101 + 10524413 n 0103 ~ 00791764 v 0000 ~ 00815379 v 0000 ~ 00815539 v 0000 ~ 00816143 v 0000 ~ 00816353 v 0000 ~ 01056918 v 0000 04 + 02 00 + 09 00 + 26 00 + 27 00 | react verbally; "She didn't want to answer"; "answer the question"; "We answered that we would accept the invitation" -00816143 32 v 01 sass 0 002 @ 00815686 v 0000 + 06721949 n 0102 01 + 02 00 | answer back in an impudent or insolent manner; "don't sass me!"; "The teacher punished the students who were sassing all morning"; -00816353 32 v 06 retort 0 come_back 1 repay 0 return 1 riposte 0 rejoin 0 005 @ 00815686 v 0000 + 07199922 n 0504 + 07199922 n 0403 + 07199922 n 0206 + 07199922 n 0102 02 + 02 00 + 26 00 | answer back -00816556 32 v 01 deny 0 007 @ 00823436 v 0000 + 10003283 n 0101 + 07204240 n 0101 ! 00817311 v 0101 ~ 00757375 v 0000 ~ 00816828 v 0000 ~ 00820075 v 0000 02 + 08 00 + 26 00 | declare untrue; contradict; "He denied the allegations"; "She denied that she had taken money" -00816828 32 v 01 repudiate 4 003 @ 00816556 v 0000 + 00076739 a 0101 + 00522338 n 0101 01 + 08 00 | reject as untrue, unfounded, or unjust; "She repudiated the accusations" -00817003 32 v 01 deny 1 003 @ 00757544 v 0000 + 10003283 n 0101 ~ 00758042 v 0000 02 + 08 00 + 26 00 | refuse to accept or believe; "He denied his fatal illness" -00817167 32 v 01 deny 4 002 @ 00820075 v 0000 + 10003283 n 0101 02 + 08 00 + 09 00 | refuse to recognize or acknowledge; "Peter denied Jesus" -00817311 32 v 02 admit 0 acknowledge 0 013 @ 00822367 v 0000 + 01272609 a 0201 + 14411981 n 0202 + 07215948 n 0101 ! 00816556 v 0101 ~ 00593200 v 0000 ~ 00593363 v 0000 ~ 00817752 v 0000 ~ 00818422 v 0000 ~ 00818553 v 0000 ~ 00818805 v 0000 ~ 00819508 v 0000 ~ 00819923 v 0000 02 + 08 00 + 26 00 | declare to be true or admit the existence or reality or truth of; "He admitted his errors"; "She acknowledged that she might have forgotten" -00817752 32 v 01 make_no_bones_about 0 001 @ 00817311 v 0000 01 + 22 00 | acknowledge freely and openly; "He makes no bones about the fact that he is gay" -00817909 32 v 03 make_a_clean_breast_of 0 own_up 0 fess_up 0 001 @ 00818553 v 0000 01 + 02 00 | admit or acknowledge a wrongdoing or error; "the writer of the anonymous letter owned up after they identified his handwriting" -00818135 32 v 01 superannuate 0 002 @ 00822367 v 0000 + 04925577 n 0102 02 + 08 00 + 09 00 | declare to be obsolete -00818253 32 v 02 bastardize 0 bastardise 0 004 @ 00822367 v 0000 + 09842823 n 0201 + 06726478 n 0101 + 09842823 n 0101 01 + 09 00 | declare a child to be illegitimate -00818422 32 v 01 sustain 0 002 @ 00817311 v 0000 + 02806261 a 0101 01 + 08 00 | admit as valid; "The court sustained the motion" -00818553 32 v 03 concede 0 profess 2 confess 1 006 @ 00817311 v 0000 + 06472242 n 0301 + 07216083 n 0301 + 09954479 n 0301 + 06732925 n 0201 ~ 00817909 v 0000 02 + 08 00 + 26 00 | admit (to a wrongdoing); "She confessed that she had taken the money" -00818805 32 v 01 confess 3 003 @ 00817311 v 0000 + 01039307 n 0101 + 09954355 n 0101 01 + 02 00 | confess to God in the presence of a priest, as in the Catholic faith -00818974 32 v 02 insist 0 take_a_firm_stand 0 003 + 07191777 n 0101 ~ 00819163 v 0000 ~ 01016778 v 0000 02 + 02 00 + 13 00 | be emphatic or resolute and refuse to budge; "I must insist!" -00819163 32 v 04 stand_pat 0 stand_firm 0 hold_firm 0 stand_fast 0 002 @ 00818974 v 0000 ~ 00819335 v 0000 02 + 02 00 + 13 00 | refuse to abandon one's opinion or belief -00819335 32 v 01 hunker_down 0 001 @ 00819163 v 0000 01 + 02 00 | hold stubbornly to a position; "The wife hunkered down and the husband's resistance began to break down" -00819508 32 v 03 confess 0 squeal 0 fink 0 006 @ 00817311 v 0000 + 10091012 n 0301 + 10206173 n 0204 + 06472242 n 0101 + 07216083 n 0101 + 09954479 n 0101 02 + 02 00 + 22 00 | confess to a punishable or reprehensible deed, usually under pressure -00819756 32 v 01 profess 0 001 @ 00756338 v 0000 01 + 08 00 | practice as a profession, teach, or claim to be knowledgeable about; "She professes organic chemistry" -00819923 32 v 02 avow 1 avouch 0 003 @ 00817311 v 0000 + 09826698 n 0101 ! 00820075 v 0101 01 + 08 00 | admit openly and bluntly; make no bones about -00820075 32 v 01 disavow 0 004 @ 00816556 v 0000 + 07205946 n 0101 ! 00819923 v 0101 ~ 00817167 v 0000 01 + 08 00 | refuse to acknowledge; disclaim knowledge of; responsibility for, or association with; "Her husband disavowed her after 30 years of marriage and six children" -00820352 32 v 01 attest 0 005 $ 00820611 v 0000 @ 01011031 v 0000 + 06649915 n 0101 + 09822640 n 0102 + 09822640 n 0101 03 + 08 00 + 22 00 + 26 00 | authenticate, affirm to be true, genuine, or correct, as in an official capacity; "I attest this signature" -00820611 32 v 01 attest 4 004 $ 00820976 v 0000 @ 00923307 v 0000 + 06649915 n 0101 $ 00820352 v 0000 01 + 11 00 | establish or verify the usage of; "This word is not attested until 1993" -00820801 32 v 01 declare 1 004 @ 01011031 v 0000 + 00686890 a 0101 + 00686890 a 0102 + 09814660 n 0102 02 + 08 00 + 26 00 | state firmly; "He declared that he was innocent" -00820976 32 v 05 attest 1 certify 0 manifest 0 demonstrate 0 evidence 0 013 @ 01015244 v 0000 + 06643408 n 0501 + 01323962 a 0401 + 06880249 n 0302 + 06798558 n 0301 + 06650431 n 0202 + 06649915 n 0101 ~ 00664276 v 0000 $ 00820611 v 0000 ~ 00821580 v 0000 ~ 00821765 v 0000 ~ 00822101 v 0000 ~ 02149302 v 0000 02 + 08 00 + 11 00 | provide evidence for; stand as proof of; show by one's behavior, attitude, or external attributes; "His high fever attested to his illness"; "The buildings in Rome manifest a high level of architectural sophistication"; "This decision demonstrates his sense of fairness" -00821580 32 v 01 reflect 0 003 @ 00820976 v 0000 $ 00821765 v 0000 ~ 00821944 v 0000 01 + 04 00 | give evidence of the quality of; "The mess in his dorm room reflects on the student" -00821765 32 v 01 reflect 1 002 $ 00821580 v 0000 @ 00820976 v 0000 01 + 04 00 | give evidence of a certain behavior; "His lack of interest in the project reflects badly on him" -00821944 32 v 01 mirror 0 001 @ 00821580 v 0000 01 + 11 00 | reflect or resemble; "The plane crash in Milan mirrored the attack in the World Trade Center" -00822101 32 v 02 notarize 0 notarise 0 002 @ 00820976 v 0000 + 10363149 n 0101 01 + 08 00 | authenticate as a notary; "We had to have the signature notarized" -00822262 32 v 01 certify 1 002 @ 00822367 v 0000 + 02075594 a 0101 01 + 09 00 | declare legally insane -00822367 32 v 03 declare 4 adjudge 0 hold b 012 @ 00670261 v 0000 + 00686890 a 0101 ~ 00817311 v 0000 ~ 00818135 v 0000 ~ 00818253 v 0000 ~ 00822262 v 0000 ~ 00822746 v 0000 ~ 00822912 v 0000 ~ 00823129 v 0000 ~ 00971650 v 0000 ~ 02477334 v 0000 ~ 02478936 v 0000 02 + 05 00 + 14 00 | declare to be; "She was declared incompetent"; "judge held that the defendant was innocent" -00822746 32 v 01 call 8 003 $ 01068793 v 0000 @ 00822367 v 0000 + 00164801 n 0101 01 + 14 00 | declare in the capacity of an umpire or referee; "call a runner out" -00822912 32 v 01 beatify 0 002 @ 00822367 v 0000 + 01040128 n 0101 01 + 09 00 | declare (a dead person) to be blessed; the first step of achieving sainthood; "On Sunday, the martyr will be beatified by the Vatican" -00823129 32 v 03 canonize 0 canonise 0 saint 0 007 @ 00822367 v 0000 ;c 08081668 n 0000 + 10547145 n 0301 + 01040390 n 0202 + 06487729 n 0201 + 01040390 n 0101 + 06487729 n 0101 01 + 09 00 | declare (a dead person) to be a saint; "After he was shown to have performed a miracle, the priest was canonized" -00823436 32 v 03 contradict 0 negate 0 contravene 0 008 @ 00804802 v 0000 + 00075515 a 0201 + 07280941 n 0201 + 07206461 n 0201 + 00508750 a 0101 + 02382144 a 0101 + 07206596 n 0101 ~ 00816556 v 0000 01 + 08 00 | deny the truth of -00823669 32 v 03 reprimand 0 censure 0 criminate 1 004 @ 00826509 v 0000 + 06709998 n 0201 + 06711855 n 0105 ~ 00827158 v 0000 01 + 09 00 | rebuke formally -00823827 32 v 04 savage 0 blast 2 pillory 2 crucify 3 001 @ 00826509 v 0000 02 + 08 00 + 09 00 | criticize harshly or violently; "The press savaged the new President"; "The critics crucified the author for plagiarizing a famous passage" -00824066 32 v 02 admonish 0 reprove 0 006 @ 00826509 v 0000 + 10740017 n 0202 + 06711855 n 0203 + 00996864 a 0101 + 06714420 n 0102 + 06714420 n 0101 01 + 09 00 | take to task; "He admonished the child for his bad behavior" -00824292 32 v 05 chastise 0 castigate 0 objurgate 1 chasten 0 correct 0 008 @ 00824767 v 0000 + 01300661 a 0501 + 06712833 n 0303 + 06713187 n 0201 + 01161017 n 0201 + 06714288 n 0103 + 01161017 n 0102 ~ 00824593 v 0000 01 + 09 00 | censure severely; "She chastised him for his insensitive remarks" -00824593 32 v 01 flame 0 001 @ 00824292 v 0000 01 + 09 00 | criticize harshly, usually via an electronic medium; "the person who posted an inflammatory message got flamed" -00824767 32 v 15 call_on_the_carpet 0 take_to_task 0 rebuke 0 rag 0 trounce 0 reproof 0 lecture 0 reprimand 1 jaw 1 dress_down 0 call_down 0 scold 0 chide 0 berate 0 bawl_out 0 remonstrate 4 chew_out 0 chew_up 0 have_words 0 lambaste 0 lambast 0 011 @ 00826509 v 0000 + 06712833 n 0d01 + 10561861 n 0c02 + 06712833 n 0c02 + 06711855 n 0805 + 06713930 n 0701 + 06711855 n 0602 + 10740017 n 0304 + 06711855 n 0301 ~ 00824292 v 0000 ~ 00825648 v 0000 04 + 09 00 + 22 13 + 22 10 + 22 09 | censure severely or angrily; "The mother scolded the child for entering a stranger's car"; "The deputy ragged the Prime Minister"; "The customer dressed down the waiter for bringing cold soup" -00825447 32 v 01 represent a 002 @ 01013230 v 0000 + 06739782 n 0101 01 + 08 00 | point out or draw attention to in protest or remonstrance; "our parents represented to us the need for more caution" -00825648 32 v 02 tell_off 0 brush_down 0 001 @ 00824767 v 0000 01 + 09 00 | reprimand; "She told the misbehaving student off" -00825776 32 v 02 lip_off 0 shoot_one's_mouth_off 0 001 @ 00941990 v 0000 01 + 02 00 | speak spontaneously and without restraint; "She always shoots her mouth off and says things she later regrets" -00825975 32 v 02 reproach 0 upbraid 0 004 @ 00842989 v 0000 + 10740017 n 0201 + 06713187 n 0205 + 10740017 n 0103 01 + 09 00 | express criticism towards; "The president reproached the general for his irresponsible behavior" -00826201 32 v 01 reprehend 0 003 @ 00826509 v 0000 + 02035765 a 0104 + 06711855 n 0104 01 + 09 00 | express strong disapproval of -00826333 32 v 01 deplore 0 002 @ 00826509 v 0000 ~ 00864910 v 0000 01 + 08 00 | express strong disapproval of; "We deplore the government's treatment of political prisoners" -00826509 32 v 04 knock 2 criticize 0 criticise 0 pick_apart 0 023 * 00670261 v 0000 @ 01058574 v 0000 + 06374587 n 0301 + 06710546 n 0301 + 05734018 n 0301 + 09979072 n 0201 + 09979321 n 0201 + 09979589 n 0201 ! 00856824 v 0201 ~ 00823669 v 0000 ~ 00823827 v 0000 ~ 00824066 v 0000 ~ 00824767 v 0000 ~ 00826201 v 0000 ~ 00826333 v 0000 ~ 00827302 v 0000 ~ 00827458 v 0000 ~ 00841580 v 0000 ~ 00842772 v 0000 ~ 00845909 v 0000 ~ 00846218 v 0000 ~ 00862683 v 0000 ~ 01072133 v 0000 02 + 08 00 + 09 00 | find fault with; express criticism of; point out real or perceived flaws; "The paper criticized the new movie"; "Don't knock the food--it's free" -00827158 32 v 01 animadvert 1 002 @ 00823669 v 0000 + 06709998 n 0102 01 + 02 00 | express blame or censure or make a harshly critical remark -00827302 32 v 02 belabor 2 belabour 2 001 @ 00826509 v 0000 01 + 09 00 | attack verbally with harsh criticism; "She was belabored by her fellow students" -00827458 32 v 01 come_down c 001 @ 00826509 v 0000 01 + 22 00 | criticize or reprimand harshly; "The critics came down hard on the new play" -00827601 32 v 01 troll 1 001 @ 00856824 v 0000 02 + 08 00 + 09 00 | praise or celebrate in song; "All tongues shall troll you" -00827730 32 v 02 preach 0 advocate 1 006 @ 00765649 v 0000 + 09774783 n 0202 + 09774783 n 0201 + 01214171 n 0201 + 06712325 n 0102 ~ 00828374 v 0000 03 + 24 00 + 26 00 + 27 00 | speak, plead, or argue in favor of; "The doctor advocated a smoking ban in the entire house" -00828003 32 v 02 preach 2 prophesy 1 005 @ 00830761 v 0000 + 07244949 n 0102 + 10464178 n 0101 + 07243837 n 0103 ~ 00828227 v 0000 03 + 02 00 + 12 00 + 13 00 | deliver a sermon; "The minister is not preaching this Sunday" -00828227 32 v 02 evangelize 0 evangelise 0 003 @ 00828003 v 0000 + 07244613 n 0201 + 07244613 n 0101 02 + 02 00 + 09 00 | preach the gospel (to) -00828374 32 v 05 sermonize 0 sermonise 0 preachify 0 moralize 0 moralise 0 011 @ 00827730 v 0000 + 06742932 n 0503 + 06742932 n 0402 + 06742932 n 0401 + 06743230 n 0301 + 10464178 n 0204 + 06712325 n 0201 + 07243837 n 0201 + 10464178 n 0103 + 06712325 n 0101 + 07243837 n 0101 01 + 02 00 | speak as if delivering a sermon; express moral judgements; "This man always sermonizes" -00828754 32 v 01 pontificate 0 001 @ 00962447 v 0000 01 + 02 00 | talk in a dogmatic and pompous manner; "The new professor always pontificates" -00828901 32 v 01 orate 0 003 @ 00962447 v 0000 + 10380672 n 0101 ~ 00829014 v 0000 01 + 02 00 | talk pompously -00829014 32 v 01 bloviate 0 001 @ 00828901 v 0000 01 + 02 00 | orate verbosely and windily -00829107 32 v 03 teach 0 learn 0 instruct 0 025 > 00597915 v 0000 @ 00831651 v 0000 + 01323449 a 0301 + 00883297 n 0302 + 10694258 n 0302 + 02451634 a 0102 + 10694258 n 0101 + 05854812 n 0101 + 00883297 n 0103 ~ 00603298 v 0000 ~ 00605086 v 0000 ~ 00606335 v 0000 ~ 00787515 v 0000 ~ 00787660 v 0000 ~ 00787876 v 0000 ~ 00829761 v 0000 ~ 00829947 v 0000 ~ 00830188 v 0000 ~ 00830348 v 0000 ~ 00830498 v 0000 ~ 00830648 v 0000 ~ 00830761 v 0000 ~ 00833702 v 0000 ~ 00991385 v 0000 ~ 02571768 v 0000 07 + 09 00 + 10 00 + 24 00 + 26 00 + 02 01 + 14 01 + 15 01 | impart skills or knowledge to; "I taught them French"; "He instructed me in building a boat" -00829761 32 v 01 induct 0 003 @ 00829107 v 0000 + 00156390 n 0102 + 00238527 n 0101 01 + 09 00 | introduce or initiate; "The young geisha was inducted into the ways of her profession" -00829947 32 v 01 mentor 0 001 @ 00829107 v 0000 02 + 02 00 + 09 00 | serve as a teacher or trusted counselor; "The famous professor mentored him during his years in graduate school"; "She is a fine lecturer but she doesn't like mentoring" -00830188 32 v 01 tutor 0 002 @ 00829107 v 0000 + 00889294 n 0101 01 + 09 00 | be a tutor to someone; give individual instruction; "She tutored me in Spanish" -00830348 32 v 01 unteach 0 001 @ 00829107 v 0000 01 + 14 00 | cause to disbelieve; teach someone the contrary of what he or she had learned earlier -00830498 32 v 01 unteach 1 002 > 00598502 v 0000 @ 00829107 v 0000 01 + 24 00 | cause to unlearn; "teach somebody to unlearn old habits or methods" -00830648 32 v 01 ground 0 001 @ 00829107 v 0000 01 + 09 00 | instruct someone in the fundamentals of a subject -00830761 32 v 02 lecture 1 talk 5 008 @ 00829107 v 0000 + 07240549 n 0203 + 10630188 n 0202 + 00892861 n 0101 + 07240549 n 0101 + 10252222 n 0102 + 10252547 n 0101 ~ 00828003 v 0000 03 + 02 00 + 12 00 + 13 00 | deliver a lecture or talk; "She will talk at Rutgers next week"; "Did you ever lecture at Harvard?" -00831074 32 v 03 instruct 2 apprise 1 apprize 0 003 @ 00831651 v 0000 ~ 00749376 v 0000 ~ 00831273 v 0000 02 + 09 00 + 24 00 | make aware of; "Have the students been apprised of the tuition hike?" -00831273 32 v 01 brief 0 003 @ 00831074 v 0000 + 06468640 n 0101 + 07217782 n 0101 01 + 09 00 | give essential information to someone; "The reporters were briefed about the President's plan to invade" -00831476 32 v 01 debrief 0 002 @ 00785008 v 0000 + 07220466 n 0101 01 + 09 00 | put someone through a debriefing and make him report; "The released hostages were debriefed" -00831651 32 v 01 inform 0 046 @ 00740577 v 0000 + 01323449 a 0102 + 01325777 a 0102 + 01304570 a 0101 + 01304570 a 0102 + 08462320 n 0102 + 06634376 n 0101 + 05816287 n 0101 + 10786033 n 0103 + 10205985 n 0101 + 07212190 n 0101 ~ 00599720 v 0000 ~ 00829107 v 0000 ~ 00831074 v 0000 ~ 00832617 v 0000 ~ 00832778 v 0000 ~ 00832907 v 0000 ~ 00833199 v 0000 ~ 00833392 v 0000 ~ 00833546 v 0000 ~ 00834009 v 0000 ~ 00841125 v 0000 ~ 00841986 v 0000 ~ 00854788 v 0000 ~ 00870213 v 0000 ~ 00873682 v 0000 ~ 00874175 v 0000 ~ 00877848 v 0000 ~ 00880102 v 0000 ~ 00901103 v 0000 ~ 00911562 v 0000 ~ 00923793 v 0000 ~ 00928015 v 0000 ~ 00928232 v 0000 ~ 00936913 v 0000 ~ 00939277 v 0000 ~ 00952524 v 0000 ~ 00953216 v 0000 ~ 00954271 v 0000 ~ 00965035 v 0000 ~ 00965390 v 0000 ~ 00967098 v 0000 ~ 00974367 v 0000 ~ 00991577 v 0000 ~ 01013230 v 0000 ~ 01015244 v 0000 01 + 22 00 | impart knowledge of some fact, state or affairs, or event to; "I informed him of his rights" -00832617 32 v 01 inoculate 0 001 @ 00831651 v 0000 01 + 09 00 | introduce an idea or attitude into the mind of; "My teachers inoculated me with their beliefs" -00832778 32 v 01 acquaint 2 001 @ 00831651 v 0000 01 + 20 00 | inform; "Please acquaint your colleagues of your plans to move" -00832907 32 v 01 warn 2 002 @ 00831651 v 0000 + 10768022 n 0101 01 + 09 00 | notify, usually in advance; "I warned you that I would ask some difficult questions" -00833071 32 v 01 warn 3 001 @ 00746718 v 0000 01 + 20 00 | ask to go away; "The old man warned the children off his property" -00833199 32 v 01 inform a 004 @ 00831651 v 0000 + 10206173 n 0101 + 07214994 n 0101 ~ 00954422 v 0000 02 + 02 00 + 22 00 | act as an informer; "She had informed on her own parents for years" -00833392 32 v 01 fill_in 0 001 @ 00831651 v 0000 01 + 09 00 | supply with information on a specific topic; "He filled me in on the latest developments" -00833546 32 v 01 update 0 003 @ 00831651 v 0000 + 06643303 n 0101 + 00404170 n 0101 02 + 09 00 + 10 00 | bring up to date; supply with recent information -00833702 32 v 02 coach 0 train 0 006 $ 00100044 v 0000 @ 00829107 v 0000 + 10722575 n 0201 + 00893955 n 0201 + 09931640 n 0101 + 00270800 n 0101 02 + 09 00 + 24 00 | teach and supervise (someone); act as a trainer or coach (to), as in sports; "He is training our Olympic team"; "She is coaching the crew" -00834009 32 v 02 misinform 0 mislead 0 008 @ 00831651 v 0000 + 10322391 n 0201 + 06634960 n 0101 ~ 00834259 v 0000 ~ 00835506 v 0000 ~ 00839834 v 0000 ~ 00841394 v 0000 ~ 00854420 v 0000 02 + 09 00 + 10 00 | give false or misleading information to -00834259 32 v 01 lie 0 007 @ 00834009 v 0000 + 06756831 n 0101 + 10256537 n 0101 + 00751944 n 0101 ~ 00834557 v 0000 ~ 00834745 v 0000 ~ 00835294 v 0000 02 + 02 00 + 27 00 | tell an untruth; pretend with intent to deceive; "Don't lie to your parents"; "She lied when she told me she was only 29" -00834557 32 v 01 romance 0 003 @ 00834259 v 0000 + 06369216 n 0101 + 05208422 n 0102 01 + 02 00 | tell romantic or exaggerated lies; "This author romanced his trip to an exotic country" -00834745 32 v 01 perjure 0 004 @ 00834259 v 0000 * 01013040 v 0000 + 10416909 n 0101 + 00772381 n 0101 01 + 09 00 | knowingly tell an untruth in a legal court and render oneself guilty of perjury -00834943 32 v 01 suborn 0 004 > 00834745 v 0000 @ 00770437 v 0000 + 06736946 n 0101 $ 00835158 v 0000 01 + 09 00 | induce to commit perjury or give false testimony; "The President tried to suborn false witnesses" -00835158 32 v 01 suborn 1 003 $ 00834943 v 0000 @ 02238770 v 0000 + 06736946 n 0101 01 + 08 00 | procure (false testimony or perjury) -00835294 32 v 01 fib 0 004 @ 00834259 v 0000 + 10660333 n 0102 + 00752144 n 0101 + 06757057 n 0101 01 + 02 00 | tell a relatively insignificant lie; "Fibbing is not acceptable, even if you don't call it lying" -00835506 32 v 05 beat_around_the_bush 0 equivocate 0 tergiversate 1 prevaricate 0 palter 0 011 @ 00834009 v 0000 + 00752144 n 0502 + 06756831 n 0402 + 04825383 n 0402 + 00751944 n 0402 + 10256537 n 0402 + 00751779 n 0302 + 06761099 n 0202 + 04825383 n 0201 + 00751779 n 0201 + 10168012 n 0202 02 + 02 00 + 22 00 | be deliberately ambiguous or unclear in order to mislead or withhold information -00835903 32 v 04 falsify 0 distort 0 garble 0 warp 0 011 @ 00836705 v 0000 + 14504726 n 0402 + 07434102 n 0402 + 11511765 n 0201 + 00073713 n 0201 + 00751529 n 0201 + 00751145 n 0101 + 13960464 n 0101 + 06756407 n 0102 + 10076957 n 0101 ~ 00548750 v 0000 01 + 08 00 | make false by mutilation or addition; as of a message or story -00836236 32 v 05 typify 0 symbolize 0 symbolise 0 stand_for 1 represent 2 015 @ 00955148 v 0000 + 01981699 a 0501 + 05926676 n 0501 + 05765415 n 0303 + 10685853 n 0303 + 06806469 n 0301 + 05765415 n 0301 + 05765415 n 0202 + 10685853 n 0202 + 00900070 n 0201 + 06806469 n 0201 + 05765415 n 0201 + 00900581 n 0101 ~ 02697725 v 0000 ~ 02699141 v 0000 01 + 11 00 | express indirectly by an image, form, or model; be a symbol; "What does the Statue of Liberty symbolize?" -00836705 32 v 02 misrepresent 0 belie 0 005 @ 00988028 v 0000 + 06758225 n 0101 ~ 00533185 v 0000 ~ 00835903 v 0000 ~ 00838043 v 0000 02 + 08 00 + 11 00 | represent falsely; "This statement misrepresents my intentions" -00836926 32 v 04 tinge d color 0 colour 3 distort 1 001 @ 00137313 v 0000 01 + 11 00 | affect as in thought or feeling; "My personal feelings color my judgment in this case"; "The sadness tinged his life" -00837133 32 v 03 color 1 colour 4 gloss 2 002 @ 00894738 v 0000 + 04677952 n 0302 01 + 08 00 | give a deceptive explanation or excuse for; "color a lie" -00837288 32 v 03 pose d impersonate 0 personate 0 008 @ 00854420 v 0000 + 00548802 n 0304 + 00549284 n 0302 + 00756331 n 0202 + 00549284 n 0201 + 10200365 n 0201 + 10455915 n 0102 ~ 00837617 v 0000 02 + 09 00 + 22 01 | pretend to be someone you are not; sometimes with fraudulent intentions; "She posed as the Czar's daughter" -00837617 32 v 01 masquerade 0 002 @ 00837288 v 0000 + 00756194 n 0101 01 + 22 00 | pretend to be someone or something that you are not; "he is masquerading as an expert on the internet"; "This silly novel is masquerading as a serious historical treaty" -00837872 32 v 01 bluff 0 003 @ 01779165 v 0000 + 06759602 n 0101 + 09861718 n 0101 02 + 02 00 + 30 00 | frighten someone by pretending to be stronger than one really is -00838043 32 v 05 feign 0 sham 0 pretend 0 affect 0 dissemble 0 016 @ 00836705 v 0000 + 10195593 n 0502 + 06759349 n 0504 + 10201535 n 0303 + 06759349 n 0301 + 00754956 n 0301 + 00754956 n 0303 + 03318438 n 0202 + 10286539 n 0203 + 10201535 n 0208 + 06759349 n 0103 $ 00838524 v 0000 ~ 00838995 v 0000 ~ 00839085 v 0000 ~ 00839526 v 0000 ~ 01040707 v 0000 03 + 08 00 + 26 00 + 28 00 | make believe with the intent to deceive; "He feigned that he was ill"; "He shammed a headache" -00838524 32 v 03 make 9 pretend 1 make_believe 1 005 $ 00838043 v 0000 @ 01719302 v 0000 + 00755500 n 0301 + 00755500 n 0202 ~ 00838786 v 0000 02 + 26 00 + 22 01 | represent fictitiously, as in a play, or pretend to be or act like; "She makes like an actress" -00838786 32 v 01 go_through_the_motions 0 001 @ 00838524 v 0000 01 + 02 00 | pretend to do something by acting as if one was really doing it; "She isn't really working--she's just going through the motions" -00838995 32 v 01 play_possum 0 001 @ 00838043 v 0000 01 + 02 00 | to pretend to be dead -00839085 32 v 01 take_a_dive 0 001 @ 00838043 v 0000 01 + 02 00 | pretend to be knocked out, as of a boxer -00839194 32 v 06 bamboozle 0 snow 0 hoodwink 0 pull_the_wool_over_someone's_eyes 0 lead_by_the_nose 0 play_false 0 001 @ 00854420 v 0000 01 + 09 00 | conceal one's true motives from especially by elaborately feigning good intentions so as to gain an end; "He bamboozled his professors into thinking that he knew the subject well" -00839526 32 v 04 talk_through_one's_hat 0 bullshit 0 bull 0 fake 0 005 @ 00838043 v 0000 + 03318438 n 0401 + 10201535 n 0405 + 06611376 n 0302 + 06611376 n 0201 02 + 02 00 + 13 00 | speak insincerely or without regard for facts or truths; "The politician was not well prepared for the debate and faked it" -00839834 32 v 07 overstate 0 exaggerate 0 overdraw 0 hyperbolize 0 hyperbolise 0 magnify 0 amplify 0 011 @ 00834009 v 0000 + 06758835 n 0603 + 07106502 n 0401 + 07106502 n 0202 + 06758835 n 0201 + 00367552 n 0201 + 06758835 n 0102 ! 00841125 v 0101 ~ 00840609 v 0000 ~ 00883226 v 0000 ~ 00956405 v 0000 01 + 08 00 | to enlarge beyond bounds or the truth; "tended to romanticize and exaggerate this `gracious Old South' imagery" -00840264 32 v 01 soft-pedal 0 001 @ 00513492 v 0000 02 + 08 00 + 11 00 | play down or obscure; "His advisers soft-pedaled the president's blunder" -00840413 32 v 02 trivialize 0 trivialise 0 003 @ 00841125 v 0000 + 01280908 a 010a + 02165432 a 0102 01 + 08 00 | make trivial or insignificant; "Don't trivialize the seriousness of the issue!" -00840609 32 v 03 overemphasize 0 overemphasise 0 overstress 0 001 @ 00839834 v 0000 02 + 08 00 + 26 00 | place special or excessive emphasis on; "I cannot overemphasize the importance of this book" -00840809 32 v 02 re-emphasise 0 re-emphasize 0 001 @ 01013367 v 0000 02 + 08 00 + 26 00 | emphasize anew; "The director re-emphasized the need for greater productivity" -00840980 32 v 01 bear_down c 001 @ 01013367 v 0000 01 + 22 00 | pay special attention to; "The lectures bore down on the political background" -00841125 32 v 04 understate 0 minimize 1 minimise 1 downplay 0 008 @ 00831651 v 0000 + 00355919 n 0302 + 13763384 n 0301 + 00355919 n 0201 + 13763384 n 0201 + 06759063 n 0101 ! 00839834 v 0101 ~ 00840413 v 0000 01 + 08 00 | represent as less significant or important -00841394 32 v 01 sandbag 2 003 * 00841125 v 0000 @ 00834009 v 0000 + 10549925 n 0101 01 + 09 00 | downplay one's ability (towards others) in a game in order to deceive, as in gambling -00841580 32 v 01 denounce 0 004 @ 00826509 v 0000 + 07232988 n 0102 ~ 00841767 v 0000 ~ 00864159 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | speak out against; "He denounced the Nazis" -00841767 32 v 02 fulminate 0 rail 4 002 @ 00841580 v 0000 + 07233304 n 0101 01 + 22 00 | criticize severely; "He fulminated against the Republicans' plan to cut Medicare"; "She railed against the bad social policies" -00841986 32 v 0a denounce 1 tell_on 0 betray 0 give_away 1 rat 9 grass 9 shit 9 shop 9 snitch 9 stag 9 010 @ 00831651 v 0000 + 10091012 n 0902 + 10091012 n 0903 + 13555775 n 0701 + 14854581 n 0703 + 10206173 n 0503 + 10007109 n 0506 + 07214994 n 0502 + 10206173 n 0302 ~ 00936763 v 0000 07 + 09 00 + 22 0a + 22 09 + 22 08 + 22 07 + 22 06 + 22 05 | give away information about somebody; "He told on his classmate who had cheated on the exam" -00842429 32 v 01 denounce 2 001 @ 00974367 v 0000 01 + 08 00 | announce the termination of, as of treaties -00842538 32 v 02 blame 0 fault 0 007 @ 00843468 v 0000 + 04669692 n 0201 + 00070965 n 0203 + 01321529 a 0103 + 01321529 a 0102 + 07237758 n 0103 ! 00902424 v 0101 05 + 08 00 + 09 00 + 10 00 + 11 00 + 17 00 | put or pin the blame on -00842772 32 v 03 blame 1 find_fault a pick 9 003 @ 00826509 v 0000 + 09986532 n 0202 + 06713752 n 0101 04 + 08 00 + 09 00 + 22 03 + 22 02 | harass with constant criticism; "Don't always pick on your little brother" -00842989 32 v 04 accuse 0 impeach 0 incriminate 0 criminate 0 016 @ 00843468 v 0000 + 00924952 a 0401 + 00924952 a 0402 + 00766234 n 0401 + 07237758 n 0301 + 00766234 n 0301 + 00924257 a 0104 + 00924257 a 0101 + 00924257 a 0102 + 07234230 n 0101 + 09762385 n 0101 + 07234230 n 0102 ~ 00825975 v 0000 ~ 00843852 v 0000 ~ 00844553 v 0000 ~ 00869931 v 0000 02 + 09 00 + 18 00 | bring an accusation against; level a charge against; "The neighbors accused the man of spousal abuse" -00843468 32 v 02 charge 2 accuse 1 012 + 00924257 a 0204 + 00924257 a 0201 + 00924257 a 0202 + 06730780 n 0201 + 09762385 n 0201 + 07234230 n 0202 + 06730780 n 0102 + 06561942 n 0101 ~ 00842538 v 0000 ~ 00842989 v 0000 ~ 00846509 v 0000 ~ 02521284 v 0000 02 + 09 00 + 17 01 | blame for, make a claim of wrongdoing or misbehavior against; "he charged the director with indifference" -00843852 32 v 01 arraign 0 001 @ 00842989 v 0000 02 + 09 00 + 10 00 | accuse of a wrong or an inadequacy -00843959 32 v 01 charge 3 004 @ 00756338 v 0000 + 06730780 n 0102 ~ 00844161 v 0000 ~ 00844298 v 0000 01 + 26 00 | make an accusatory claim; "The defense attorney charged that the jurors were biased" -00844161 32 v 01 tax 0 001 @ 00843959 v 0000 01 + 17 00 | make a charge against or accuse; "They taxed him failure to appear in court" -00844298 32 v 01 complain 1 004 @ 00843959 v 0000 + 06561942 n 0102 + 06562217 n 0101 + 10437852 n 0102 01 + 26 00 | make a formal accusation; bring a formal charge; "The plaintiff's lawyer complained that he defendant had physically abused his client" -00844553 32 v 01 recriminate 0 003 @ 00842989 v 0000 + 00925287 a 0101 + 00925287 a 0102 01 + 09 00 | return an accusation against someone or engage in mutual accusations; charge in return -00844744 32 v 01 impeach 1 002 @ 00869931 v 0000 + 07235790 n 0101 01 + 09 00 | charge (a public official) with an offense or misdemeanor committed while in office; "The President was impeached" -00844941 32 v 03 nag 0 peck 0 hen-peck 0 003 @ 00907147 v 0000 + 10561861 n 0103 + 10561861 n 0104 02 + 02 00 + 09 00 | bother persistently with trivial complaints; "She nags her husband all day long" -00845144 32 v 01 dun 0 001 @ 00754942 v 0000 01 + 09 00 | persistently ask for overdue payment; "The grocer dunned his customers every day by telephone" -00845299 32 v 04 abuse 0 clapperclaw 0 blackguard 0 shout c 007 @ 00862683 v 0000 + 01628531 a 0101 + 06715223 n 0101 + 09758643 n 0101 ~ 00845658 v 0000 ~ 00847870 v 0000 ~ 00866314 v 0000 02 + 09 00 + 22 04 | use foul or abusive language towards; "The actress abused the policeman who gave her a parking ticket"; "The angry mother shouted at the teacher" -00845658 32 v 01 slang 0 002 @ 00845299 v 0000 + 07159467 n 0101 01 + 09 00 | abuse with coarse language -00845765 32 v 01 claw 0 001 @ 00862683 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | attack as if with claws; "The politician clawed his rival" -00845909 32 v 03 disparage 0 belittle 0 pick_at 0 009 @ 00826509 v 0000 + 06717170 n 0101 + 01219893 n 0101 + 10009671 n 0102 ! 00880227 v 0101 ~ 00846344 v 0000 ~ 00847478 v 0000 ~ 00855933 v 0000 ~ 00864475 v 0000 02 + 08 00 + 09 00 | express a negative opinion of; "She disparaged her student's efforts" -00846218 32 v 01 nitpick 0 002 @ 00826509 v 0000 + 10359422 n 0101 01 + 02 00 | be overly critical; criticize minor details -00846344 32 v 03 pan 0 tear_apart 0 trash 0 001 @ 00845909 v 0000 02 + 08 00 + 09 00 | express a totally negative opinion of; "The critics panned the performance" -00846509 32 v 09 defame 0 slander 0 smirch 0 asperse 0 denigrate 1 calumniate 0 smear 0 sully 0 besmirch 0 019 @ 00843468 v 0000 + 06720216 n 0701 + 06719579 n 0602 + 01220336 n 0602 + 01161233 a 0506 + 01220336 n 0505 + 06718543 n 0401 + 01220336 n 0401 + 00072261 n 0303 + 01220336 n 0203 + 06720600 n 0201 + 09999135 n 0203 + 01161233 a 0103 + 06719579 n 0101 + 01220336 n 0104 + 09999135 n 0101 ~ 00847158 v 0000 ~ 00847683 v 0000 ~ 00848169 v 0000 02 + 09 00 + 10 00 | charge falsely or with malicious intent; attack the good name and reputation of someone; "The journalists have defamed me!" "The article in the paper sullied my reputation" -00847158 32 v 01 assassinate 0 002 @ 00846509 v 0000 + 06719974 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | destroy or damage seriously, as of someone's reputation; "He assassinated his enemy's character" -00847365 32 v 01 blackwash 0 001 @ 00933821 v 0000 02 + 09 00 + 10 00 | bring (information) out of concealment -00847478 32 v 02 discredit 0 disgrace 0 003 @ 00845909 v 0000 + 14440137 n 0202 + 14439745 n 0102 03 + 08 00 + 09 00 + 10 00 | damage the reputation of; "This newspaper story discredits the politicians" -00847683 32 v 01 libel 0 003 @ 00846509 v 0000 + 09999135 n 0105 + 06720371 n 0101 02 + 09 00 + 10 00 | print slanderous statements against; "The newspaper was accused of libeling him" -00847870 32 v 04 vilify 0 revile 0 vituperate 0 rail 1 007 @ 00845299 v 0000 + 00648614 a 0302 + 06721604 n 0301 + 06715223 n 0203 + 06715223 n 0105 + 06720216 n 0102 + 09999135 n 0104 04 + 08 00 + 09 00 + 02 04 + 02 03 | spread negative information about; "The Nazi propaganda vilified the Jews" -00848169 32 v 04 badmouth 0 malign 0 traduce 0 drag_through_the_mud 0 005 @ 00846509 v 0000 + 06719579 n 0305 + 09999135 n 0307 + 06720216 n 0203 + 09999135 n 0202 02 + 08 00 + 09 00 | speak unfavorably about; "She badmouths her husband everywhere" -00848420 32 v 03 diss 0 insult 0 affront 0 004 @ 01793177 v 0000 + 01225027 n 0302 + 01225027 n 0201 + 06715223 n 0202 02 + 09 00 + 10 00 | treat, mention, or speak to rudely; "He insulted her with his rude remarks"; "the student who had betrayed his classmate was dissed by everyone" -00848707 32 v 01 mind 0 002 @ 00807461 v 0000 ~ 00848894 v 0000 03 + 08 00 + 26 00 + 02 01 | be offended or bothered by; take offense with, be bothered by; "I don't mind your behavior" -00848894 32 v 04 bristle_at 0 bridle_at 0 bridle_up 0 bristle_up 0 001 @ 00848707 v 0000 03 + 08 00 + 02 04 + 02 03 | show anger or indignation; "She bristled at his insolent remarks" -00849080 32 v 02 mock 0 bemock 0 006 @ 02514187 v 0000 + 10561320 n 0103 + 06716234 n 0103 ~ 00850501 v 0000 ~ 00851933 v 0000 ~ 00852922 v 0000 03 + 08 00 + 09 00 + 10 00 | treat with contempt; "The new constitution mocks all democratic principles" -00849332 32 v 01 mock 1 006 @ 01742886 v 0000 + 10561320 n 0103 + 01224700 n 0101 ~ 00849592 v 0000 ~ 00849788 v 0000 ~ 00849939 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | imitate with mockery and derision; "The children mocked their handicapped classmate" -00849592 32 v 02 caricature 0 ape 0 002 @ 00849332 v 0000 + 06780069 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | represent in or produce a caricature of; "The drawing caricatured the President" -00849788 32 v 01 impersonate 1 003 @ 00849332 v 0000 + 05929008 n 0105 + 06780069 n 0103 01 + 09 00 | represent another person with comic intentions -00849939 32 v 03 spoof 0 burlesque 0 parody 0 007 @ 00849332 v 0000 + 10400998 n 0301 + 06780309 n 0301 + 07017999 n 0201 + 06780309 n 0207 + 06780309 n 0103 ~ 01724083 v 0000 02 + 08 00 + 09 00 | make a parody of; "The students spoofed the teachers" -00850192 32 v 05 jeer 0 scoff 0 flout 0 barrack 0 gibe 0 009 @ 00850501 v 0000 + 06767922 n 0507 + 10561320 n 0302 + 06716234 n 0204 + 10561320 n 0201 + 06716234 n 0205 + 10561320 n 0104 + 06716234 n 0101 + 06716234 n 0102 01 + 22 00 | laugh at with contempt and derision; "The crowd jeered at the speaker" -00850501 32 v 0b tease 0 razz 0 rag 1 cod 0 tantalize 0 tantalise 0 bait 0 taunt 0 twit 0 rally 0 ride 0 016 @ 00849080 v 0000 + 01222859 n 0901 + 01222859 n 0803 + 01222859 n 0802 + 10690849 n 0602 + 09593651 n 0601 + 10690849 n 0501 + 09593651 n 0501 + 00425905 n 0504 + 07123870 n 0206 + 00425905 n 0101 + 10695555 n 0101 + 10695555 n 0102 + 00425905 n 0102 ~ 00850192 v 0000 ~ 00855295 v 0000 01 + 09 00 | harass with persistent criticism or carping; "The children teased the new teacher"; "Don't ride me so hard over my failure"; "His fellow workers razzed him when he wore a jacket and tie" -00851100 32 v 02 pull_the_leg_of 0 kid 1 001 @ 00854904 v 0000 01 + 09 00 | tell false information to for fun; "Are you pulling my leg?" -00851239 32 v 04 incite 0 instigate 0 set_off 0 stir_up 0 012 > 02367363 v 0000 @ 00794079 v 0000 + 01897378 a 0204 + 00156625 n 0202 + 10209246 n 0204 + 10209246 n 0201 + 01897378 a 0102 + 01261490 n 0102 + 09184975 n 0102 + 01261490 n 0101 + 10209246 n 0103 ~ 00851625 v 0000 03 + 08 00 + 09 00 + 24 00 | provoke or stir up; "incite a riot"; "set off great unrest among the people" -00851625 32 v 01 raise 6 001 @ 00851239 v 0000 02 + 08 00 + 11 00 | activate or stir up; "raise a mutiny" -00851733 32 v 02 needle 0 goad 1 003 @ 01789514 v 0000 + 07252378 n 0201 + 07252378 n 0202 02 + 09 00 + 10 00 | goad or provoke,as by constant criticism; "He needled her with his sarcastic remarks" -00851933 32 v 09 ridicule 0 roast 0 guy 0 blackguard 1 laugh_at 0 jest_at 0 rib 0 make_fun 0 poke_fun 0 011 @ 00849080 v 0000 + 06767693 n 0701 + 00425905 n 0703 + 05734381 n 0202 + 01224517 n 0102 + 06715786 n 0101 + 10552742 n 0103 ~ 00852506 v 0000 ~ 00852685 v 0000 ~ 00853195 v 0000 ~ 00853445 v 0000 06 + 08 00 + 09 00 + 21 09 + 22 09 + 21 08 + 22 08 | subject to laughter or ridicule; "The satirists ridiculed the plans for a new opera house"; "The students poked fun at the inexperienced teacher"; "His former students roasted the professor at his 60th birthday" -00852506 32 v 01 tease 9 003 @ 00851933 v 0000 + 09965134 n 0106 + 10695555 n 0102 02 + 02 00 + 09 00 | mock or make fun of playfully; "the flirting man teased the young woman" -00852685 32 v 03 satirize 0 satirise 0 lampoon 0 005 @ 00851933 v 0000 + 10400998 n 0302 + 06780309 n 0302 + 06777164 n 0203 + 06777164 n 0103 02 + 08 00 + 09 00 | ridicule with satire; "The writer satirized the politician's proposal" -00852922 32 v 01 deride 0 006 @ 00849080 v 0000 + 02570643 a 0103 + 01995596 a 0101 + 06715638 n 0101 + 01224517 n 0101 ~ 01060909 v 0000 02 + 08 00 + 09 00 | treat or speak of with contempt; "He derided his student's attempt to solve the biggest problem in mathematics" -00853195 32 v 02 debunk 0 expose 0 004 @ 00851933 v 0000 + 07215568 n 0201 + 00522338 n 0102 ~ 00935631 v 0000 01 + 08 00 | expose while ridiculing; especially of pretentious or false claims and ideas; "The physicist debunked the psychic's claims" -00853445 32 v 01 stultify 0 002 @ 00851933 v 0000 + 06716992 n 0101 02 + 08 00 + 11 00 | cause to appear foolish; "He stultified himself by contradicting himself and being inconsistent" -00853633 32 v 02 joke 0 jest 0 011 @ 00740577 v 0000 + 00431005 n 0201 + 06778102 n 0204 + 10221312 n 0201 ^ 00851933 v 0206 + 10224098 n 0101 + 00431005 n 0102 + 06778102 n 0101 ~ 00853958 v 0000 ~ 00854150 v 0000 ~ 01702331 v 0000 01 + 02 00 | tell a joke; speak humorously; "He often jokes even when he appears serious" -00853958 32 v 02 gag 0 quip 0 004 @ 00853633 v 0000 + 06767777 n 0204 + 07153727 n 0202 + 06778102 n 0102 02 + 02 00 + 26 00 | make jokes or quips; "The students were gagging during dinner" -00854150 32 v 04 horse_around 0 arse_around 0 fool_around 0 fool 0 004 @ 02418686 v 0000 @ 00853633 v 0000 + 10221312 n 0402 + 00512843 n 0402 01 + 02 00 | indulge in horseplay; "Enough horsing around--let's get back to work!"; "The bored children were fooling about" -00854420 32 v 03 deceive 0 betray 3 lead_astray 0 010 @ 00834009 v 0000 + 10027590 n 0204 + 01938975 a 0101 + 01224253 a 0101 + 00752431 n 0101 + 09998101 n 0101 ! 00854788 v 0101 ~ 00837288 v 0000 ~ 00839194 v 0000 ~ 00854904 v 0000 01 + 09 00 | cause someone to believe an untruth; "The insurance company deceived me when they told me they were covering my house" -00854788 32 v 01 undeceive 0 002 @ 00831651 v 0000 ! 00854420 v 0101 01 + 09 00 | free from deception or illusion -00854904 32 v 0a gull 0 dupe 0 slang 1 befool 0 cod 1 fool 1 put_on 0 take_in 0 put_one_over 3 put_one_across 0 009 @ 00854420 v 0000 + 00756780 n 0801 + 00753685 n 0706 + 10100761 n 0601 + 09921409 n 0602 + 10752480 n 0202 + 00753685 n 0203 + 09921409 n 0103 ~ 00851100 v 0000 02 + 09 00 + 22 09 | fool or hoax; "The immigrant was duped because he trusted everyone"; "You can't fool me!" -00855295 32 v 05 kid 0 chaff 0 jolly 0 josh 0 banter 0 003 @ 00850501 v 0000 + 06777794 n 0501 + 07450343 n 0301 03 + 02 00 + 09 02 + 09 01 | be silly or tease one another; "After we relaxed, we just kidded around" -00855512 32 v 02 review 0 critique 0 007 @ 00670261 v 0000 + 05734018 n 0202 + 06410391 n 0202 + 06597758 n 0101 + 06410391 n 0101 + 10526927 n 0101 ~ 00855794 v 0000 01 + 08 00 | appraise critically; "She reviews books for the New York Times"; "Please critique this performance" -00855794 32 v 02 referee 0 peer_review 0 002 @ 00855512 v 0000 + 10526927 n 0102 01 + 08 00 | evaluate professionally a colleague's work -00855933 32 v 03 deprecate 0 depreciate 0 vilipend 0 009 @ 00845909 v 0000 + 00906655 a 0205 + 00906655 a 0206 + 06717170 n 0202 + 10009671 n 0203 + 00906655 a 0103 + 00906655 a 0104 + 01220152 n 0101 ~ 00856234 v 0000 01 + 08 00 | belittle; "The teacher should not deprecate his student's efforts" -00856234 32 v 02 deflate 0 puncture 0 002 @ 00855933 v 0000 + 13257792 n 0101 01 + 08 00 | reduce or lessen the size or importance of; "The bad review of his work deflated his self-confidence" -00856429 32 v 01 deprecate 1 003 @ 00807178 v 0000 + 00648238 a 0101 + 01220152 n 0101 02 + 08 00 + 09 00 | express strong disapproval of; deplore -00856578 32 v 01 condemn 2 006 * 00670261 v 0000 @ 01010118 v 0000 + 14574846 n 0101 + 01223257 n 0101 ~ 00862225 v 0000 ~ 00862467 v 0000 01 + 08 00 | declare or judge unfit for use or habitation; "The building was condemned by the inspector" -00856824 32 v 01 praise 0 016 @ 00681429 v 0000 + 06693198 n 0101 ! 00826509 v 0102 ~ 00827601 v 0000 ~ 00857270 v 0000 ~ 00860292 v 0000 ~ 00860620 v 0000 ~ 00880227 v 0000 ~ 00880780 v 0000 ~ 00881661 v 0000 ~ 00882220 v 0000 ~ 00882395 v 0000 ~ 00882948 v 0000 ~ 00976653 v 0000 ~ 01065272 v 0000 ~ 01703730 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | express approval of; "The parents praised their children for their academic performance" -00857270 32 v 01 salute 3 001 @ 00856824 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | express commendation of; "I salute your courage!" -00857407 32 v 01 overpraise 0 001 @ 02568999 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | praise excessively -00857517 32 v 01 crow 1 002 @ 00983824 v 0000 + 07229747 n 0104 02 + 22 00 + 26 00 | express pleasure verbally; "She crowed with joy" -00857653 32 v 01 crow 2 002 @ 00983824 v 0000 + 07382286 n 0101 01 + 01 00 | utter shrill sounds; "The cocks crowed all morning" -00857784 32 v 01 trumpet 2 002 @ 00983824 v 0000 + 10171219 n 0102 01 + 01 00 | utter in trumpet-like sounds; "Elephants are trumpeting" -00857923 32 v 05 exuberate 0 exult 0 rejoice 0 triumph 1 jubilate 0 015 @ 00859153 v 0000 + 01367211 a 0504 + 00704898 a 0503 + 07527817 n 0504 + 07129422 n 0503 + 07527817 n 0503 + 07527817 n 0502 + 00704898 a 0407 + 07129422 n 0302 + 00704898 a 0201 + 07129422 n 0201 + 02279723 a 0102 + 07555647 n 0101 + 04634540 n 0101 ~ 00858341 v 0000 02 + 02 00 + 22 00 | to express great joy; "Who cannot exult in Spring?" -00858341 32 v 01 glory 0 002 @ 00857923 v 0000 + 14437134 n 0101 01 + 02 00 | rejoice proudly -00858437 32 v 01 cheerlead 0 002 @ 00858781 v 0000 + 09913455 n 0101 02 + 02 00 + 09 00 | act as a cheerleader in a sports event -00858568 32 v 01 cheer 2 005 @ 00860292 v 0000 + 06692572 n 0101 + 09913329 n 0101 + 07251779 n 0101 ~ 01814074 v 0000 01 + 09 00 | show approval or good wishes by shouting; "everybody cheered the birthday boy" -00858781 32 v 08 cheer 1 root_on 0 inspire 1 urge 1 barrack 1 urge_on 1 exhort 1 pep_up 0 009 @ 01818235 v 0000 + 00866735 a 0702 + 07139700 n 0701 + 07246036 n 0701 + 00713558 a 0402 + 01214746 n 0401 + 09913329 n 0101 + 07251779 n 0101 ~ 00858437 v 0000 01 + 09 00 | spur on or encourage especially by cheers and shouts; "The crowd cheered the demonstrating strikers" -00859153 32 v 03 cheer 0 cheer_up 0 chirk_up 0 005 @ 01813884 v 0000 + 04630689 n 0102 ! 00907147 v 0101 ~ 00857923 v 0000 ~ 00860136 v 0000 01 + 02 00 | become cheerful -00859325 32 v 04 cheer 3 cheer_up 1 jolly_along 0 jolly_up 0 003 > 00859153 v 0000 + 04630689 n 0102 ~ 00859758 v 0000 02 + 09 00 + 10 00 | cause (somebody) to feel happier or more cheerful; "She tried to cheer up the disappointed child when he failed to win the spelling bee" -00859604 32 v 02 humor 0 humour 0 004 @ 01182293 v 0000 + 07551052 n 0204 + 07551052 n 0103 + 01073241 n 0104 02 + 09 00 + 10 00 | put into a good mood -00859758 32 v 01 amuse 0 004 @ 00859325 v 0000 + 01344485 a 0102 + 07491476 n 0101 ~ 00859937 v 0000 02 + 09 00 + 10 00 | make (somebody) laugh; "The clown amused the children" -00859937 32 v 01 convulse 0 004 > 00032297 v 0000 @ 00859758 v 0000 + 02511340 a 0101 + 14082595 n 0101 02 + 09 00 + 10 00 | make someone convulse with laughter; "The comedian convulsed the crowd" -00860136 32 v 03 lighten 0 lighten_up 0 buoy_up 0 001 @ 00859153 v 0000 01 + 02 00 | become more cheerful; "after a glass of wine, he lightened up a bit" -00860292 32 v 01 applaud 0 005 @ 00856824 v 0000 + 02585545 a 0101 + 09926088 n 0102 ~ 00858568 v 0000 ~ 00861725 v 0000 02 + 08 00 + 09 00 | express approval of; "I applaud your efforts" -00860482 32 v 01 bravo 0 002 @ 00861929 v 0000 + 06692834 n 0101 03 + 02 00 + 08 00 + 09 00 | applaud with shouts of `bravo' or `brava' -00860620 32 v 05 laud 0 extol 0 exalt 0 glorify 0 proclaim 1 015 @ 00856824 v 0000 + 14437134 n 0402 + 01218932 n 0401 + 14437134 n 0401 + 04684358 n 0401 + 01029114 n 0302 + 10248711 n 0203 + 06693198 n 0204 + 00906312 a 0101 + 02585545 a 0103 + 10248711 n 0102 ~ 00861077 v 0000 ~ 00861200 v 0000 ~ 00861333 v 0000 ~ 00861423 v 0000 02 + 08 00 + 09 00 | praise, glorify, or honor; "extol the virtues of one's children"; "glorify one's spouse's cooking" -00861077 32 v 02 canonize 2 canonise 2 001 @ 00860620 v 0000 01 + 09 00 | treat as a sacred person; "He canonizes women" -00861200 32 v 01 ensky 0 001 @ 00860620 v 0000 02 + 08 00 + 09 00 | exalt to the skies; lift to the skies or to heaven with praise -00861333 32 v 01 crack_up 0 001 @ 00860620 v 0000 02 + 08 00 + 09 00 | rhapsodize about -00861423 32 v 01 hymn 0 002 @ 00860620 v 0000 + 07035870 n 0101 01 + 08 00 | praise by singing a hymn; "They hymned their love of God" -00861560 32 v 01 promulgate 1 004 @ 00965871 v 0000 + 06726939 n 0101 + 01266491 n 0102 + 10482587 n 0101 01 + 08 00 | put a law into effect by formal declaration -00861725 32 v 03 acclaim 0 hail 2 herald 1 003 @ 00860292 v 0000 + 06691684 n 0102 + 06691684 n 0101 02 + 08 00 + 09 00 | praise vociferously; "The critics hailed the young pianist as a new Rubinstein" -00861929 32 v 04 applaud 1 clap 0 spat 1 acclaim 1 008 * 00806502 v 0000 @ 00992041 v 0000 + 06691684 n 0401 + 09926088 n 0201 + 06691989 n 0203 + 09926088 n 0102 ! 00862225 v 0101 ~ 00860482 v 0000 03 + 02 00 + 08 00 + 09 00 | clap one's hands or shout after performances to indicate approval -00862225 32 v 02 boo 0 hiss 2 007 @ 00856578 v 0000 + 07384898 n 0201 + 07123870 n 0204 + 10177014 n 0201 + 07384898 n 0202 + 07123870 n 0101 ! 00861929 v 0101 03 + 02 00 + 09 00 + 22 00 | show displeasure, as after a performance or speech -00862467 32 v 01 explode 0 002 * 00862225 v 0000 @ 00856578 v 0000 01 + 09 00 | drive from the stage by noisy disapproval -00862591 32 v 01 sizzle 0 001 @ 02172888 v 0000 01 + 01 00 | make a sound like frying fat -00862683 32 v 06 attack 0 round b assail 0 lash_out b snipe b assault 0 014 @ 00826509 v 0000 + 01629349 a 0601 + 09821253 n 0604 + 09821253 n 0303 + 06711159 n 0102 + 09821253 n 0101 ~ 00845299 v 0000 ~ 00845765 v 0000 ~ 00863174 v 0000 ~ 00863277 v 0000 ~ 00863433 v 0000 ~ 00863579 v 0000 ~ 00863906 v 0000 ~ 01062165 v 0000 07 + 08 00 + 09 00 + 10 00 + 11 00 + 22 05 + 22 04 + 22 02 | attack in speech or writing; "The editors of the left-leaning paper attacked the new House Speaker" -00863174 32 v 01 vitriol 0 001 @ 00862683 v 0000 02 + 09 00 + 10 00 | subject to bitter verbal abuse -00863277 32 v 01 rip 0 001 @ 00862683 v 0000 01 + 22 00 | criticize or abuse strongly and violently; "The candidate ripped into his opponent mercilessly" -00863433 32 v 01 whang 0 002 @ 00862683 v 0000 + 00133338 n 0105 02 + 08 00 + 09 00 | attack forcefully; "whang away at the school reform plan" -00863579 32 v 02 bombard 0 barrage 0 004 @ 00862683 v 0000 + 07083441 n 0201 + 07083441 n 0101 + 07083441 n 0102 01 + 09 00 | address with continuously or persistently, as if with a barrage; "The speaker was barraged by an angry audience"; "The governor was bombarded with requests to grant a pardon to the convicted killer" -00863906 32 v 03 blister 0 scald 0 whip 0 001 @ 00862683 v 0000 01 + 09 00 | subject to harsh criticism; "The Senator blistered the administration in his speech on Friday"; "the professor scaled the students"; "your invectives scorched the community" -00864159 32 v 05 condemn 0 reprobate 0 decry 0 objurgate 0 excoriate 0 006 @ 00841580 v 0000 + 07233214 n 0501 + 06201042 n 0201 + 00924791 a 0101 + 14574846 n 0101 + 06709692 n 0102 03 + 08 00 + 09 00 + 11 00 | express strong disapproval of; "We condemn the racism in South Africa"; "These ideas were reprobated" -00864475 32 v 04 minimize 0 belittle 1 denigrate 0 derogate 0 010 @ 00845909 v 0000 + 00907032 a 0401 + 00907032 a 0402 + 06717170 n 0403 + 01161233 a 0304 + 06718434 n 0301 + 01220152 n 0302 + 00355919 n 0101 + 13763384 n 0101 ~ 00864814 v 0000 02 + 08 00 + 11 00 | cause to seem less serious; play down; "Don't belittle his influence" -00864814 32 v 01 talk_down 0 001 @ 00864475 v 0000 02 + 08 00 + 09 00 | belittle through talk -00864910 32 v 07 accurse 0 execrate 0 anathemize 1 comminate 0 anathemise 0 anathematize 0 anathematise 0 009 @ 00826333 v 0000 + 00206600 n 0701 + 07233863 n 0701 + 00206600 n 0601 + 07233863 n 0601 + 00924635 a 0401 + 07233634 n 0201 + 05811884 n 0201 + 00206600 n 0702 02 + 08 00 + 09 00 | curse or declare to be evil or anathema or threaten with divine punishment -00865280 32 v 01 blog 0 001 @ 00740577 v 0000 01 + 08 00 | read, write, or edit a shared on-line journal -00865387 32 v 05 curse 0 cuss 0 blaspheme 0 swear 1 imprecate 0 006 @ 00940384 v 0000 + 10682501 n 0401 + 07125096 n 0405 + 07125096 n 0207 + 07125096 n 0101 $ 00814458 v 0000 01 + 02 00 | utter obscenities or profanities; "The drunken men were cursing loudly in the street" -00865664 32 v 01 gee 0 001 @ 00912048 v 0000 01 + 02 00 | give a command to a horse to turn to the right side -00865776 32 v 02 ooh 0 aah 0 001 @ 00912048 v 0000 01 + 02 00 | express admiration and pleasure by uttering `ooh' or `aah'; "They oohed and aahed when they unwrapped the presents" -00865958 32 v 08 curse 1 beshrew 0 damn 0 bedamn 0 anathemize 0 anathemise 1 imprecate 1 maledict 0 009 @ 01629958 v 0000 + 07233996 n 0802 + 07233996 n 0701 + 00925177 a 0301 + 14458593 n 0301 + 07233542 n 0301 + 07160424 n 0103 + 07233634 n 0103 ! 00866505 v 0101 02 + 08 00 + 09 00 | wish harm upon; invoke evil upon; "The bad witch cursed the child" -00866314 32 v 01 curse 2 002 @ 00845299 v 0000 + 07125096 n 0101 02 + 08 00 + 09 00 | heap obscenities upon; "The taxi driver who felt he didn't get a high enough tip cursed the passenger" -00866505 32 v 01 bless 0 005 @ 01629958 v 0000 + 07189411 n 0102 + 01043693 n 0101 ! 00865958 v 0101 ~ 00085626 v 0000 02 + 08 00 + 09 00 | give a benediction to; "The dying man blessed his son" -00866702 32 v 04 consecrate 0 bless 1 hallow 0 sanctify 0 007 @ 01010118 v 0000 + 01039925 n 0401 + 10547145 n 0401 + 10546850 n 0401 + 01040646 n 0101 ! 00867062 v 0101 ~ 00866953 v 0000 02 + 08 00 + 09 00 | render holy by means of religious rites -00866953 32 v 01 reconsecrate 0 001 @ 00866702 v 0000 01 + 08 00 | consecrate anew, as after a desecration -00867062 32 v 03 desecrate 0 unhallow 0 deconsecrate 0 002 @ 00138508 v 0000 ! 00866702 v 0101 02 + 08 00 + 09 00 | remove the consecration from a person or an object -00867231 32 v 02 bless 2 sign 3 002 @ 00992041 v 0000 + 06791372 n 0203 01 + 09 00 | make the sign of the cross over someone in order to call on God for protection; consecrate -00867409 32 v 03 question 1 oppugn 0 call_into_question 0 002 @ 00868591 v 0000 + 04757522 n 0104 04 + 08 00 + 09 00 + 10 00 + 26 00 | challenge the accuracy, probity, or propriety of; "We must question your judgment in this matter" -00867644 32 v 02 account 0 answer_for 0 003 @ 01010118 v 0000 + 01996875 a 0101 + 06738281 n 0102 01 + 08 00 | furnish a justifying analysis or explanation; "I can't account for the missing money" -00867843 32 v 01 impeach 3 001 @ 00868591 v 0000 01 + 09 00 | challenge the honesty or veracity of; "the lawyers tried to impeach the credibility of the witnesses" -00868009 32 v 01 impugn 0 001 @ 00868591 v 0000 01 + 08 00 | attack as false or wrong -00868097 32 v 02 defy 0 dare 0 005 @ 00868591 v 0000 + 07231532 n 0201 + 07231532 n 0202 + 07231943 n 0101 ~ 00868471 v 0000 02 + 09 00 + 24 00 | challenge; "I dare you!" -00868270 32 v 01 call_one's_bluff 0 001 @ 00868591 v 0000 01 + 02 00 | ask to prove what someone is claiming; "John called Mary's bluff when she claimed she could prove the theorem in under an hour" -00868471 32 v 01 brazen 0 001 @ 00868097 v 0000 02 + 08 00 + 09 00 | face with defiance or impudence; "brazen it out" -00868591 32 v 01 challenge 0 015 @ 00793580 v 0000 + 10533013 n 0102 + 07231294 n 0101 ~ 00794079 v 0000 ~ 00808528 v 0000 ~ 00867409 v 0000 ~ 00867843 v 0000 ~ 00868009 v 0000 ~ 00868097 v 0000 ~ 00868270 v 0000 ~ 00868979 v 0000 ~ 00949974 v 0000 ~ 02497586 v 0000 ~ 02582042 v 0000 ~ 02582450 v 0000 02 + 08 00 + 09 00 | issue a challenge to; "Fischer challenged Spassky to a match" -00868979 32 v 01 call_out c 002 @ 00868591 v 0000 + 07231840 n 0101 01 + 09 00 | challenge to a duel; "Aaron Burr called out Alexander Hamilton" -00869126 32 v 03 challenge 1 dispute 0 gainsay 0 008 * 00867409 v 0000 @ 00869596 v 0000 + 07181935 n 0201 + 07183151 n 0204 + 00590564 a 0101 + 07193405 n 0101 ~ 00738583 v 0000 ~ 00869393 v 0000 02 + 08 00 + 09 00 | take exception to; "She challenged his claims" -00869393 32 v 01 call 7 002 $ 00738583 v 0000 @ 00869126 v 0000 01 + 09 00 | challenge (somebody) to make good on a statement; charge with or censure for an offense; "He deserves to be called on that" -00869596 32 v 03 contest 0 contend 0 repugn 0 009 @ 00775831 v 0000 + 13858045 n 0304 + 07183151 n 0202 + 00590390 a 0101 + 01168961 n 0101 + 07183151 n 0103 + 09612131 n 0101 + 09612291 n 0101 ~ 00869126 v 0000 02 + 08 00 + 26 00 | to make the subject of dispute, contention, or litigation; "They contested the outcome of the race" -00869931 32 v 03 charge 0 lodge 0 file 1 007 @ 00842989 v 0000 + 03337140 n 0301 + 06508816 n 0301 + 10087736 n 0301 + 07236627 n 0202 + 06561942 n 0101 ~ 00844744 v 0000 03 + 09 00 + 17 00 + 26 00 | file a formal charge against; "The suspect was charged with murdering his wife" -00870213 32 v 01 warn 0 008 $ 00870577 v 0000 @ 00831651 v 0000 + 10768022 n 0101 + 07224151 n 0101 ~ 00870942 v 0000 ~ 00871195 v 0000 ~ 00871405 v 0000 ~ 00872414 v 0000 05 + 02 00 + 09 00 + 10 00 + 18 00 + 26 00 | notify of danger, potential harm, or risk; "The director warned him that he might be fired"; "The doctor warned me about the dangers of smoking" -00870577 32 v 04 warn 1 discourage 2 admonish 2 monish 0 007 @ 00872886 v 0000 + 06672297 n 0402 + 01771124 a 0301 + 06672297 n 0301 + 09771855 n 0301 + 06672297 n 0103 $ 00870213 v 0000 02 + 09 00 + 22 00 | admonish or counsel in terms of someone's behavior; "I warned him not to go too far"; "I warn you against false assumptions"; "She warned him to be quiet" -00870942 32 v 02 forewarn 0 previse 0 002 @ 00870213 v 0000 + 07225450 n 0101 03 + 09 00 + 10 00 + 18 00 | warn in advance or beforehand; give an early warning; "I forewarned him of the trouble that would arise if he showed up at his ex-wife's house" -00871195 32 v 03 caution 0 admonish 1 monish 1 006 @ 00870213 v 0000 + 06672297 n 0302 + 01771124 a 0201 + 06672297 n 0201 + 09771855 n 0201 + 07225167 n 0101 02 + 09 00 + 10 00 | warn strongly; put on guard -00871405 32 v 01 threaten 0 002 @ 00870213 v 0000 ~ 00871623 v 0000 05 + 09 00 + 10 00 + 11 00 + 17 00 + 24 00 | to utter intentions of injury or punishment against:"He threatened me when I tried to call the police" -00871623 32 v 01 offer 6 001 @ 00871405 v 0000 01 + 27 00 | threaten to do something; "I offered to leave the committee if they did not accept my proposal" -00871781 32 v 01 threaten 1 001 @ 00871942 v 0000 02 + 01 00 + 11 00 | to be a menacing indication of something:"The clouds threaten rain"; "Danger threatens" -00871942 32 v 0d bode 0 portend 0 auspicate 0 prognosticate 1 omen 0 presage 0 betoken 0 foreshadow 0 augur 0 foretell 1 prefigure 0 forecast 1 predict 1 014 @ 00921300 v 0000 + 01883325 a 0d01 + 06749881 n 0c02 + 01882162 a 0b03 + 09823287 n 0901 + 05776015 n 0802 + 07286368 n 0603 + 07286368 n 0501 + 07286368 n 0405 + 06749881 n 0401 + 07286799 n 0301 + 07286368 n 0202 ~ 00871781 v 0000 ~ 00924777 v 0000 01 + 11 00 | indicate by signs; "These signs bode bad news" -00872414 32 v 02 alarm 0 alert 0 006 @ 00870213 v 0000 + 14031660 n 0201 + 06803157 n 0202 + 07224774 n 0201 + 07519773 n 0101 ~ 00872747 v 0000 02 + 09 00 + 10 00 | warn or arouse to a sense of danger or call to a state of preparedness; "The empty house alarmed him"; "We alerted the new neighbors to the high rate of burglaries" -00872747 32 v 01 wake 2 001 @ 00872414 v 0000 02 + 09 00 + 10 00 | make aware of; "His words woke us to terrible facts of the situation" -00872886 32 v 03 rede 0 advise 0 counsel 0 022 @ 00813978 v 0000 + 09775663 n 0302 + 06650701 n 0302 + 09968845 n 0301 + 09968845 n 0302 + 06650701 n 0304 + 06650701 n 0303 + 00067038 a 0201 + 01304802 a 0201 + 06747008 n 0201 + 05785067 n 0203 + 09774167 n 0201 + 09774266 n 0202 + 09774266 n 0201 ~ 00765649 v 0000 ~ 00770141 v 0000 ~ 00870577 v 0000 ~ 00873469 v 0000 ~ 00876104 v 0000 ~ 00876332 v 0000 ~ 00876442 v 0000 ~ 00928476 v 0000 02 + 09 00 + 24 00 | give advice to; "The teacher counsels troubled students"; "The lawyer counselled me when I was accused of tax fraud" -00873469 32 v 02 tip_off 1 tip 4 003 @ 00872886 v 0000 + 06651577 n 0201 + 05827129 n 0101 03 + 09 00 + 10 00 + 24 00 | give insider information or advise to; "He tipped off the police about the terrorist plot" -00873682 32 v 06 advise 1 notify 0 give_notice 0 send_word 0 apprise 0 apprize 1 007 @ 00831651 v 0000 + 07212424 n 0502 + 07185668 n 0201 + 07212424 n 0203 + 07185668 n 0202 + 06747670 n 0201 + 00471698 a 0201 04 + 09 00 + 10 00 + 18 00 + 26 00 | inform (somebody) of something; "I advised him that the rent was due" -00874002 32 v 01 call c 003 $ 02359061 v 0000 @ 00755745 v 0000 + 00080743 n 0102 01 + 08 00 | require the presentation of for redemption before maturation; "Call a bond" -00874175 32 v 03 familiarize 0 familiarise 0 acquaint 1 008 $ 00901103 v 0000 @ 00831651 v 0000 + 05758382 n 0202 + 05758382 n 0101 ~ 00874537 v 0000 ~ 00874714 v 0000 ~ 00874867 v 0000 ~ 00875000 v 0000 01 + 17 00 | make familiar or conversant with; "you should acquaint yourself with your new computer"; "We familiarized ourselves with the new surroundings" -00874537 32 v 01 orient 1 001 @ 00874175 v 0000 01 + 09 00 | familiarize (someone) with new surroundings or circumstances; "The dean of students tries to orient the freshmen" -00874714 32 v 01 verse 0 001 @ 00874175 v 0000 01 + 17 00 | familiarize through thorough study or experience; "She versed herself in Roman archeology" -00874867 32 v 01 reacquaint 0 001 @ 00874175 v 0000 01 + 17 00 | familiarize anew; "We reacquainted ourselves with this technique" -00875000 32 v 01 get_into 0 001 @ 00874175 v 0000 02 + 08 00 + 33 00 | familiarize oneself thoroughly with; "He really got into semantics" -00875141 32 v 03 recommend 1 urge 3 advocate 0 004 @ 00875394 v 0000 + 00713558 a 0202 + 07188385 n 0202 + 06671637 n 0101 03 + 08 00 + 11 00 + 26 00 | push for something; "The travel agent recommended strongly that we not travel on Thanksgiving Day" -00875394 32 v 03 propose 0 suggest 0 advise 2 014 @ 01010118 v 0000 + 02362708 a 0201 + 07246582 n 0201 + 07162680 n 0201 + 10673451 n 0201 + 07161429 n 0102 + 10673451 n 0102 + 07161429 n 0101 ~ 00875141 v 0000 ~ 00875806 v 0000 ~ 00875951 v 0000 ~ 00876200 v 0000 ~ 00878136 v 0000 ~ 00879356 v 0000 01 + 08 00 | make a proposal, declare a plan for something; "the senator proposed to abolish the sales tax" -00875806 32 v 02 advance 0 throw_out 0 001 @ 00875394 v 0000 01 + 08 00 | bring forward for consideration or acceptance; "advance an argument" -00875951 32 v 01 proposition 0 002 @ 00875394 v 0000 + 07161912 n 0101 01 + 09 00 | suggest sex to; "She was propositioned by a stranger at the party" -00876104 32 v 02 misadvise 0 misguide 0 001 @ 00872886 v 0000 01 + 09 00 | give bad advice to -00876200 32 v 01 feed_back 0 003 * 00815686 v 0000 @ 00875394 v 0000 + 06746471 n 0101 01 + 15 00 | respond to a query or outcome -00876332 32 v 01 propound 0 002 @ 00872886 v 0000 + 09774783 n 0103 01 + 08 00 | put forward, as of an idea -00876442 32 v 01 consult 0 006 @ 00872886 v 0000 + 01304802 a 0104 + 01304802 a 0102 + 01304802 a 0103 + 07143137 n 0101 + 09774266 n 0103 02 + 02 00 + 09 00 | advise professionally; "The professor consults for industry" -00876665 32 v 04 confer 0 confabulate 1 confab 1 consult 5 009 @ 00813978 v 0000 + 07143137 n 0401 + 07143624 n 0401 + 07134850 n 0302 + 07134850 n 0203 + 09953965 n 0101 + 08308497 n 0101 + 07142566 n 0101 ~ 00876994 v 0000 01 + 02 00 | have a conference in order to talk something over; "We conferred about a plan of action" -00876994 32 v 01 collogue 0 001 @ 00876665 v 0000 02 + 22 00 + 02 01 | confer secretly -00877083 32 v 03 consult 1 refer c look_up 0 005 @ 00877327 v 0000 + 07258664 n 0201 + 06417598 n 0202 + 07143137 n 0101 + 01264050 n 0102 02 + 08 00 + 22 02 | seek information from; "You should consult the dictionary"; "refer to your notes" -00877327 32 v 01 research 0 004 @ 00789138 v 0000 + 05797597 n 0103 + 10523076 n 0102 ~ 00877083 v 0000 01 + 08 00 | attempt to find out in a systematically and scientific manner; "The student researched the history of that word" -00877559 32 v 02 consult 2 confer_with 0 006 @ 00784342 v 0000 + 01304802 a 0104 + 01304802 a 0102 + 01304802 a 0103 + 07143137 n 0101 + 07143624 n 0101 03 + 08 00 + 09 00 + 02 01 | get or ask advice from; "Consult your local broker"; "They had to consult before arriving at a decision" -00877848 32 v 03 prompt 1 remind 0 cue 0 006 @ 00831651 v 0000 + 07011209 n 0301 + 07011803 n 0101 + 10482414 n 0101 + 04010779 n 0101 + 07011803 n 0102 02 + 09 00 + 10 00 | assist (somebody acting or reciting) by suggesting the next words of something forgotten or imperfectly learned -00878136 32 v 04 submit 0 state 1 put_forward 0 posit 2 004 @ 00875394 v 0000 + 07203126 n 0203 + 06648724 n 0202 + 06731510 n 0101 02 + 08 00 + 15 00 | put before; "I submit to you that the accused is guilty" -00878348 32 v 05 submit 2 bow 1 defer 0 accede 0 give_in 2 007 @ 00804476 v 0000 + 01994180 a 0301 + 04913839 n 0301 + 00788821 a 0101 + 14580090 n 0101 + 01166926 n 0101 + 10669727 n 0101 01 + 27 00 | yield to another's wish or opinion; "The government bowed to the military pressure" -00878636 32 v 02 submit 1 subject 4 005 @ 01952898 v 0000 + 07167578 n 0101 ~ 00878876 v 0000 ~ 00879028 v 0000 ~ 02589013 v 0000 02 + 08 00 + 15 00 | refer for judgment or consideration; "The lawyers submitted the material to the court" -00878876 32 v 01 give e 001 @ 00878636 v 0000 02 + 08 00 + 15 00 | submit for consideration, judgment, or use; "give one's opinion"; "give an excuse" -00879028 32 v 01 return 2 002 @ 00878636 v 0000 ~ 00879212 v 0000 03 + 08 00 + 11 00 + 15 00 | submit (a report, etc.) to someone in authority; "submit a bill to a legislative body" -00879212 32 v 01 report_out 0 001 @ 00879028 v 0000 02 + 08 00 + 11 00 | return a bill after consideration and revision to a legislative body -00879356 32 v 02 move 0 make_a_motion 0 003 @ 00875394 v 0000 + 10484526 n 0102 $ 01076615 v 0000 03 + 13 00 + 26 00 + 28 00 | propose formally; in a debate or parliamentary meeting -00879540 32 v 03 nominate 0 put_up 0 put_forward 1 006 @ 02401523 v 0000 + 00846625 a 0102 + 13926535 n 0101 + 07240925 n 0103 + 00164152 n 0101 + 10360101 n 0101 02 + 09 00 + 22 00 | propose as a candidate for some honor -00879764 32 v 04 propose 1 declare_oneself 0 offer c pop_the_question 0 002 @ 00753428 v 0000 + 07161741 n 0104 02 + 02 00 + 27 00 | ask (someone) to marry you; "he popped the question on Sunday night"; "she proposed marriage to the man she had known for only two months"; "The old bachelor finally declared himself to the young woman" -00880102 32 v 01 volunteer 0 001 @ 00831651 v 0000 02 + 08 00 + 26 00 | tell voluntarily; "He volunteered the information" -00880227 32 v 02 flatter 0 blandish 0 011 @ 00856824 v 0000 + 06695862 n 0201 + 00159899 n 0201 + 10095869 n 0101 + 06695579 n 0101 ! 00845909 v 0101 ~ 00769355 v 0000 ~ 00880518 v 0000 ~ 00880658 v 0000 ~ 00880978 v 0000 ~ 00881534 v 0000 02 + 09 00 + 10 00 | praise somewhat dishonestly -00880518 32 v 01 adulate 0 003 @ 00880227 v 0000 + 00907830 a 0101 + 10095869 n 0102 02 + 08 00 + 09 00 | flatter in an obsequious manner -00880658 32 v 01 stroke 0 001 @ 00880227 v 0000 01 + 09 00 | treat gingerly or carefully; "You have to stroke the boss" -00880780 32 v 02 eulogize 0 eulogise 0 003 @ 00856824 v 0000 + 06694359 n 0201 + 06694359 n 0101 02 + 09 00 + 10 00 | praise formally and eloquently; "The dead woman was eulogized at the funeral" -00880978 32 v 07 fawn 0 toady 0 truckle 0 bootlick 0 kowtow 0 kotow 0 suck_up 0 009 @ 00880227 v 0000 + 07275275 n 0602 + 07275275 n 0501 + 09800631 n 0402 + 09800631 n 0306 + 01167385 n 0301 + 10684827 n 0202 + 09800631 n 0103 ~ 00881329 v 0000 02 + 22 00 + 02 01 | try to gain favor by cringing or flattering; "He is always kowtowing to his boss" -00881329 32 v 04 curry_favor 0 curry_favour 0 court_favor 0 court_favour 0 001 @ 00880978 v 0000 01 + 02 00 | seek favor by fawning or flattery; "This employee is currying favor with his superordinates" -00881534 32 v 02 butter_up 0 brown-nose 0 001 @ 00880227 v 0000 01 + 09 00 | flatter with the intention of getting something -00881661 32 v 02 compliment 0 congratulate 0 004 @ 00856824 v 0000 + 01000093 a 0201 + 07140348 n 0201 + 06695227 n 0101 02 + 09 00 + 20 00 | say something to someone that expresses praise; "He complimented her on her last physics paper" -00881901 32 v 01 compliment 1 001 @ 00897125 v 0000 01 + 09 00 | express respect or esteem for -00881998 32 v 02 congratulate 1 felicitate 0 007 @ 00902932 v 0000 + 04716210 n 0201 + 07140348 n 0202 + 06633896 n 0202 + 01000093 a 0101 + 07140348 n 0101 + 06633896 n 0101 02 + 09 00 + 20 00 | express congratulations -00882220 32 v 02 rave 0 gush 0 003 @ 00856824 v 0000 + 07014320 n 0202 + 06693744 n 0101 02 + 02 00 + 22 00 | praise enthusiastically; "She raved about that new restaurant" -00882395 32 v 01 commend 0 003 @ 00856824 v 0000 + 06686736 n 0102 + 06706125 n 0102 02 + 09 00 + 22 00 | express approval of -00882523 32 v 02 commend 1 remember 0 001 @ 01024190 v 0000 01 + 20 00 | mention as by way of greeting or to indicate friendship; "Remember me to your wife" -00882682 32 v 01 speak_of_the_devil 0 001 @ 01024190 v 0000 01 + 02 00 | mention someone's name who just then appears -00882802 32 v 01 remember 7 002 @ 01024190 v 0000 + 06688522 n 0103 01 + 09 00 | mention favorably, as in prayer; "remember me in your prayers" -00882948 32 v 02 commend 2 recommend 0 004 @ 00856824 v 0000 + 06694540 n 0201 + 06671637 n 0201 + 06686736 n 0102 02 + 09 00 + 26 00 | express a good opinion of -00883112 32 v 01 commend 3 001 @ 02349212 v 0000 01 + 15 00 | give to in charge; "I commend my children to you" -00883226 32 v 0a boast 0 tout 0 swash 0 shoot_a_line 0 brag 0 gas 0 blow 3 bluster 0 vaunt 0 gasconade 0 014 @ 00839834 v 0000 + 07229747 n 0a07 + 09872066 n 0906 + 07230227 n 0901 + 07230089 n 0802 + 06889591 n 0802 + 10274318 n 0802 + 09872066 n 0501 + 09872066 n 0502 + 07229747 n 0501 + 07229530 n 0101 + 09872066 n 0103 ~ 00797303 v 0000 ~ 00883635 v 0000 04 + 02 00 + 22 00 + 26 00 + 27 00 | show off -00883635 32 v 03 gloat 0 triumph 0 crow 0 006 @ 00883226 v 0000 + 07229747 n 0303 + 07229747 n 0304 + 07532276 n 0101 + 07532276 n 0102 ~ 00883847 v 0000 03 + 02 00 + 22 00 + 26 00 | dwell on with satisfaction -00883847 32 v 02 preen 0 congratulate b 003 @ 00883635 v 0000 + 01000093 a 0201 + 06633896 n 0201 01 + 02 00 | pride or congratulate (oneself) for an achievement -00884011 32 v 02 promise 0 assure 2 011 @ 01010118 v 0000 + 07227772 n 0201 + 02997740 a 0101 + 10482054 n 0101 + 07226545 n 0101 + 10481929 n 0101 + 10482054 n 0102 ~ 00884540 v 0000 ~ 00884814 v 0000 ~ 00888786 v 0000 ~ 00889555 v 0000 04 + 26 00 + 28 00 + 08 01 + 24 01 | make a promise or commitment -00884317 32 v 01 promise 1 006 @ 01010118 v 0000 + 02997740 a 0101 + 07226545 n 0101 + 05950733 n 0101 + 10481929 n 0101 + 10482054 n 0102 02 + 14 00 + 15 00 | promise to undertake or give; "I promise you my best effort" -00884540 32 v 02 pledge 0 plight 0 008 @ 00884011 v 0000 + 07228105 n 0201 + 10441694 n 0101 + 07227772 n 0102 ~ 00886759 v 0000 ~ 00890100 v 0000 ~ 01030832 v 0000 ~ 02474780 v 0000 02 + 08 00 + 26 00 | promise solemnly and formally; "I pledge that I will honor my wife" -00884814 32 v 01 swear_off 0 001 @ 00884011 v 0000 01 + 08 00 | promise to abstain from; "I have sworn off cigarettes altogether" -00884946 32 v 01 pledge 1 002 @ 00885217 v 0000 + 07227772 n 0102 01 + 20 00 | bind or secure by a pledge; "I was pledged to silence" -00885082 32 v 01 article 0 002 @ 00885217 v 0000 + 06392935 n 0101 01 + 09 00 | bind by a contract; especially for a training period -00885217 32 v 04 oblige 0 bind 0 hold d obligate 0 009 @ 02458103 v 0000 + 14490110 n 0401 + 06773150 n 0401 + 05689801 n 0201 + 06773150 n 0101 ~ 00884946 v 0000 ~ 00885082 v 0000 ~ 00885569 v 0000 ~ 00885768 v 0000 03 + 09 00 + 10 00 + 24 00 | bind by an obligation; cause to be indebted; "He's held by a contract"; "I'll hold you by your promise" -00885569 32 v 02 indenture 0 indent 2 003 @ 00885217 v 0000 + 06772837 n 0201 + 06772837 n 0101 01 + 09 00 | bind by or as if by indentures, as of an apprentice or servant; "an indentured servant" -00885768 32 v 01 tie_down 0 001 @ 00885217 v 0000 03 + 09 00 + 10 00 + 24 00 | restrain from independence by an obligation; "He was tied down by his work" -00885925 32 v 02 oblige 1 accommodate 0 007 @ 02542280 v 0000 + 00020787 a 0202 + 01210816 n 0201 + 10369166 n 0202 + 13782033 n 0101 + 10369166 n 0101 ! 00886173 v 0101 01 + 09 00 | provide a service or favor for someone; "We had to oblige him" -00886173 32 v 01 disoblige 0 002 @ 00800930 v 0000 ! 00885925 v 0101 01 + 09 00 | ignore someone's wishes -00886281 32 v 01 pledge 2 005 @ 02347637 v 0000 + 13350702 n 0101 ~ 00886457 v 0000 ~ 00888009 v 0000 ~ 01062050 v 0000 01 + 08 00 | give as a guarantee; "I pledge my honor" -00886457 32 v 01 collateralize 0 001 @ 00886281 v 0000 01 + 08 00 | pledge as a collateral; "The loan was collateralized by government bonds" -00886602 32 v 04 betroth 0 engage 0 affiance 0 plight 1 003 @ 00886759 v 0000 + 07228211 n 0203 + 01036778 n 0101 02 + 09 00 + 20 00 | give to in marriage -00886759 32 v 01 vow 0 006 @ 00884540 v 0000 + 07228751 n 0101 + 10760951 n 0101 ~ 00886602 v 0000 ~ 00888326 v 0000 ~ 00889947 v 0000 02 + 26 00 + 28 00 | make a vow; promise; "He vowed never to drink alcohol again" -00886978 32 v 02 vow 1 consecrate 1 004 @ 00887463 v 0000 + 01041111 n 0201 + 01040646 n 0201 + 07228751 n 0101 02 + 08 00 + 15 00 | dedicate to a deity by a vow -00887142 32 v 01 dedicate 1 003 @ 01060746 v 0000 + 06406317 n 0101 ~ 00887325 v 0000 01 + 15 00 | inscribe or address by way of compliment; "She dedicated her book to her parents" -00887325 32 v 01 inscribe 2 001 @ 00887142 v 0000 01 + 15 00 | address, (a work of literature) in a style less formal than a dedication -00887463 32 v 05 give 3 dedicate 0 consecrate 4 commit 1 devote 0 015 @ 01158872 v 0000 + 01044448 n 0502 + 01206553 n 0501 + 10077593 n 0503 + 01206153 n 0401 + 01041111 n 0301 + 07452348 n 0201 + 06684383 n 0202 + 04877421 n 0201 + 01206153 n 0204 ~ 00886978 v 0000 $ 00888009 v 0000 ~ 00888150 v 0000 $ 02343595 v 0000 ~ 02595523 v 0000 03 + 14 00 + 15 00 + 24 00 | give entirely to a specific person, activity, or cause; "She committed herself to the work of God"; "give one's talents to a good cause"; "consecrate your life to the church" -00888009 32 v 01 give f 003 $ 00887463 v 0000 @ 00886281 v 0000 + 06685198 n 0101 01 + 08 00 | offer in good faith; "He gave her his word" -00888150 32 v 01 rededicate 0 002 @ 00887463 v 0000 + 07452559 n 0101 03 + 14 00 + 15 00 + 24 00 | dedicate anew; "They were asked to rededicate themselves to their country" -00888326 32 v 01 profess 1 004 @ 00886759 v 0000 + 06685040 n 0101 ~ 00888519 v 0000 $ 00888657 v 0000 02 + 02 00 + 09 00 | take vows, as in religious order; "she professed herself as a nun" -00888519 32 v 01 take_the_veil 0 001 @ 00888326 v 0000 01 + 02 00 | become a nun; "The young woman took the veil after her fiance died" -00888657 32 v 01 profess 8 002 $ 00888326 v 0000 @ 02236624 v 0000 01 + 09 00 | receive into a religious order or congregation -00888786 32 v 02 contract 0 undertake 1 008 @ 00884011 v 0000 + 06520944 n 0101 + 09960688 n 0101 ~ 00889026 v 0000 ~ 00889229 v 0000 ~ 01018928 v 0000 ~ 02460199 v 0000 ~ 02460619 v 0000 01 + 28 00 | enter into a contractual arrangement -00889026 32 v 01 stipulate 6 002 @ 00888786 v 0000 ;c 06534659 n 0000 01 + 02 00 | make an oral contract or agreement in the verbal form of question and answer that is necessary to give it legal force -00889229 32 v 01 sign 0 009 @ 00888786 v 0000 + 10597234 n 0101 ~ 00996919 v 0000 ~ 00997020 v 0000 ~ 00997133 v 0000 ~ 00997307 v 0000 ~ 00997432 v 0000 ~ 00997659 v 0000 ~ 00997794 v 0000 01 + 28 00 | be engaged by a written agreement; "He signed to play the casino on Dec. 18"; "The soprano signed to sing the new opera" -00889555 32 v 02 undertake 0 guarantee 1 003 @ 00884011 v 0000 + 06686174 n 0201 ~ 00889740 v 0000 02 + 08 00 + 28 00 | promise to do or accomplish; "guarantee to free the prisoners" -00889740 32 v 03 underwrite 1 subvention 0 subvent 0 003 @ 00889555 v 0000 + 13267263 n 0301 + 01061203 n 0301 02 + 08 00 + 11 00 | guarantee financial support of; "The opera tour was subvented by a bank" -00889947 32 v 01 swear 2 003 @ 00886759 v 0000 + 10682380 n 0101 ^ 00884814 v 0101 04 + 02 00 + 15 00 + 26 00 + 28 00 | promise solemnly; take an oath -00890100 32 v 02 guarantee 0 vouch c 008 @ 00884540 v 0000 + 10760763 n 0201 + 06685456 n 0101 + 06686174 n 0101 ~ 00890403 v 0000 $ 00890590 v 0000 ~ 01019472 v 0000 ~ 02349706 v 0000 04 + 08 00 + 11 00 + 26 00 + 22 02 | give surety or assume responsibility; "I vouch for the quality of my products" -00890403 32 v 01 bail 0 005 @ 00890100 v 0000 + 01763683 a 0101 + 09833275 n 0101 + 05903445 n 0101 $ 02421749 v 0000 01 + 09 00 | secure the release of (someone) by providing security -00890590 32 v 05 guarantee 3 ensure 0 insure 4 assure 3 secure 0 004 $ 00890100 v 0000 + 06686174 n 0101 ~ 00890855 v 0000 ~ 00891038 v 0000 01 + 11 00 | make certain of; "This nest egg will ensure a nice retirement for us"; "Preparation will guarantee success!" -00890855 32 v 01 doom 4 002 @ 00890590 v 0000 + 07334206 n 0101 02 + 08 00 + 11 00 | make certain of the failure or destruction of; "This decision will doom me to lose my position" -00891038 32 v 01 make e 002 @ 00890590 v 0000 ! 02559395 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | assure the success of; "A good review by this critic will make your play!" -00891216 32 v 03 cover 0 insure 0 underwrite 0 010 $ 02395000 v 0000 @ 00891936 v 0000 + 10209731 n 0304 + 08070465 n 0305 + 08070465 n 0203 + 13344804 n 0201 + 13344664 n 0101 ~ 00891541 v 0000 ~ 02251247 v 0000 $ 02672859 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | protect by insurance; "The insurance won't cover this" -00891541 32 v 01 reinsure 1 001 @ 00891216 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | insure again by assuming all or a part of the liability of an insurance company already covering a risk -00891734 32 v 01 reinsure 0 002 @ 02251065 v 0000 + 13348456 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | insure again by transferring to another insurance company all or a part of a liability assumed -00891936 32 v 02 guarantee 2 warrant 1 010 @ 02453889 v 0000 + 06685456 n 0202 + 10768148 n 0201 + 10149527 n 0203 + 10149527 n 0204 + 06686174 n 0101 + 06685456 n 0101 + 10149527 n 0101 ~ 00891216 v 0000 ~ 02447793 v 0000 01 + 08 00 | stand behind and guarantee the quality, accuracy, or condition of; "The dealer warrants all the cars he sells"; "I warrant this information" -00892315 32 v 02 thank 0 give_thanks 4 002 @ 00928630 v 0000 ~ 00892467 v 0000 03 + 09 00 + 20 00 + 22 02 | express gratitude or show appreciation to -00892467 32 v 03 acknowledge 1 recognize 0 recognise 0 003 @ 00892315 v 0000 + 06628861 n 0101 ~ 01805982 v 0000 01 + 08 00 | express obligation, thanks, or gratitude for; "We must acknowledge the kindness she showed towards us" -00892698 32 v 02 acknowledge 4 receipt 0 003 @ 00742320 v 0000 + 06520222 n 0201 + 00090253 n 0202 02 + 08 00 + 15 00 | report the receipt of; "The program committee acknowledged the submission of the authors of the paper" -00892923 32 v 02 apologize 0 apologise 0 003 * 00817311 v 0000 + 06633363 n 0201 + 06633363 n 0101 03 + 02 00 + 26 00 + 27 00 | acknowledge faults or shortcomings or failing; "I apologized for being late"; "He apologized for the many typoes" -00893167 32 v 02 excuse 2 condone 0 004 @ 00903385 v 0000 + 01227351 n 0201 + 06741305 n 0101 + 10399299 n 0103 01 + 08 00 | excuse, overlook, or make allowances for; be lenient with; "excuse someone's behavior"; "She condoned her husband's occasional infidelities" -00893435 32 v 02 excuse 3 explain 2 004 @ 00896141 v 0000 + 07232421 n 0201 + 06741305 n 0101 ~ 00893741 v 0000 01 + 11 00 | serve as a reason or cause or justification of; "Your need to sleep late does not excuse your late arrival at work"; "Her recent divorce may explain her reluctance to date again" -00893741 32 v 01 alibi 0 003 @ 00893435 v 0000 + 06741305 n 0102 + 06741099 n 0101 02 + 09 00 + 11 00 | exonerate by means of an alibi -00893878 32 v 04 excuse 4 relieve 1 let_off 0 exempt 0 003 @ 00902424 v 0000 + 06626446 n 0101 ~ 00894080 v 0000 02 + 09 00 + 20 00 | grant exemption or release to; "Please excuse me from this class" -00894080 32 v 01 frank 0 001 @ 00893878 v 0000 01 + 09 00 | exempt by means of an official pass or letter, as from customs or other checks -00894221 32 v 02 excuse 5 beg_off 0 002 @ 00752764 v 0000 + 06626446 n 0101 01 + 09 00 | ask for permission to be released from an engagement -00894365 32 v 01 plead 2 001 @ 00894738 v 0000 03 + 07 00 + 08 00 + 26 00 | offer as an excuse or plea; "She was pleading insanity" -00894499 32 v 02 take_the_Fifth 0 take_the_Fifth_Amendment 0 001 @ 01010118 v 0000 01 + 02 00 | refuse to testify by invoking the Fifth Amendment, which states that nobody may be forced to testify as a witness against himself or herself -00894738 32 v 06 apologize 1 apologise 1 excuse 1 justify 2 rationalize 0 rationalise 0 017 @ 00895304 v 0000 + 05794403 n 0602 + 05794403 n 0501 + 01632066 a 0402 + 01632066 a 0403 + 01722140 a 0401 + 06740183 n 0401 + 05823054 n 0401 + 01241767 n 0401 + 09798534 n 0403 + 01631830 a 0302 + 06741305 n 0301 + 06740919 n 0201 + 06633363 n 0201 ~ 00837133 v 0000 ~ 00894365 v 0000 ~ 00906037 v 0000 01 + 08 00 | defend, explain, clear away, or make excuses for by reasoning; "rationalize the child's seemingly crazy behavior"; "he rationalized his lack of success" -00895304 32 v 03 defend 0 support 1 fend_for 0 010 @ 00772189 v 0000 + 02354537 a 0201 + 01212519 n 0201 + 10407954 n 0203 + 10677713 n 0201 + 09614684 n 0101 + 06740644 n 0102 ~ 00894738 v 0000 ~ 00895641 v 0000 ~ 00896017 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | argue or speak in defense of; "She supported the motion to strike" -00895641 32 v 02 stand_up 0 stick_up 0 001 @ 00895304 v 0000 01 + 22 00 | defend against attack or criticism; "He stood up for his friend"; "She stuck up for the teacher who was accused of harassing the student" -00895855 32 v 01 cover_for 1 001 @ 01128193 v 0000 01 + 09 00 | provide an excuse or alibi for someone so as to cover up guilt; "I won't lie and cover for you" -00896017 32 v 01 uphold 0 001 @ 00895304 v 0000 01 + 08 00 | stand up for; stick up for; of causes, principles, or ideals -00896141 32 v 02 justify 0 vindicate 0 012 @ 00896497 v 0000 + 00923790 a 0203 + 06740644 n 0203 + 09798534 n 0202 + 00923790 a 0101 + 01632066 a 0102 + 00923790 a 0102 + 06740183 n 0101 + 05823054 n 0101 + 09798534 n 0103 ~ 00893435 v 0000 ~ 00896677 v 0000 02 + 08 00 + 11 00 | show to be right by providing justification or proof; "vindicate a claim" -00896497 32 v 02 uphold 2 maintain 3 003 @ 01012073 v 0000 + 10740219 n 0101 ~ 00896141 v 0000 01 + 08 00 | support against an opponent; "The appellate court upheld the verdict" -00896677 32 v 01 legitimate 2 002 @ 00896141 v 0000 + 01195380 n 0103 01 + 08 00 | show or affirm to be just and legitimate -00896803 32 v 02 justify 1 warrant 0 007 @ 01012073 v 0000 + 00923790 a 0101 + 00923790 a 0102 + 01722140 a 0101 + 06740183 n 0101 + 05823054 n 0101 + 01241767 n 0101 01 + 11 00 | show to be reasonable or provide adequate ground for; "The emergency does not warrant all of us buying guns"; "The end justifies the means" -00897125 32 v 01 greet 1 003 @ 00740577 v 0000 + 06630017 n 0101 ~ 00881901 v 0000 01 + 09 00 | send greetings to -00897241 32 v 03 greet 0 recognize 1 recognise 1 012 @ 00990655 v 0000 + 10146927 n 0101 + 06630017 n 0101 ~ 00898019 v 0000 ~ 00899352 v 0000 ~ 00899597 v 0000 ~ 00899956 v 0000 ~ 00900214 v 0000 ~ 00900376 v 0000 ~ 00900583 v 0000 ~ 00900961 v 0000 ~ 00902932 v 0000 01 + 09 00 | express greetings upon meeting someone -00897564 32 v 02 address 0 turn_to 1 004 @ 00740577 v 0000 + 09769345 n 0101 ~ 00897746 v 0000 ~ 02601456 v 0000 01 + 09 00 | speak to; "He addressed the crowd outside the window" -00897746 32 v 01 ask 4 005 @ 00897564 v 0000 + 10207831 n 0105 $ 00784342 v 0000 ~ 00785008 v 0000 ~ 00788184 v 0000 01 + 09 00 | address a question to and expect an answer from; "Ask your teacher about trigonometry"; "The children asked me about their dead grandmother" -00898019 32 v 01 shake_hands 0 003 @ 00897241 v 0000 + 06632097 n 0101 + 06632097 n 0103 02 + 02 00 + 21 00 | take someone's hands and shake them as a gesture of greeting or congratulation -00898210 32 v 01 nod 0 002 @ 00740577 v 0000 + 00336430 n 0101 02 + 02 00 + 27 00 | lower and raise the head, as to indicate assent or agreement or confirmation; "The teacher nodded when the student gave the right answer" -00898434 32 v 01 nod 1 002 @ 00992041 v 0000 + 07274316 n 0101 01 + 08 00 | express or signify by nodding; "He nodded his approval" -00898568 32 v 01 cross_oneself 0 001 @ 00992041 v 0000 01 + 02 00 | make the sign of the cross; in the Catholic religion -00898691 32 v 02 bow 0 bow_down 0 003 @ 00992041 v 0000 + 07274425 n 0101 ~ 00898918 v 0000 03 + 08 00 + 22 00 + 27 00 | bend one's knee or body, or lower one's head; "He bowed before the King"; "She bowed her head in shame" -00898918 32 v 02 congee 0 conge 0 002 @ 00898691 v 0000 + 00216607 n 0201 02 + 02 00 + 22 00 | perform a ceremonious bow -00899041 32 v 01 take_a_bow 0 001 @ 02040273 v 0000 03 + 02 00 + 22 00 + 27 00 | acknowledge applause by inclining the head, as of an artist after a performance -00899204 32 v 01 take_a_bow 1 001 @ 00686447 v 0000 01 + 02 00 | acknowledge praise or accept credit; "They finally took a bow for what they did" -00899352 32 v 02 curtsy 0 bob 0 004 @ 00897241 v 0000 * 00898691 v 0000 + 00336274 n 0201 + 07274890 n 0101 01 + 02 00 | make a curtsy; usually done only by girls and women; as a sign of respect; "She curtsied when she shook the Queen's hand" -00899597 32 v 01 salute 0 006 @ 00897241 v 0000 + 06632358 n 0101 + 06397789 n 0101 + 06630017 n 0102 + 10146927 n 0102 ~ 00899847 v 0000 02 + 08 00 + 09 00 | greet in a friendly way; "I meet this men every day on my way to work and he salutes me" -00899847 32 v 01 salaam 0 002 @ 00899597 v 0000 + 07275713 n 0101 02 + 02 00 + 09 00 | greet with a salaam -00899956 32 v 02 salute 1 present 3 003 * 00992041 v 0000 @ 00897241 v 0000 + 06633041 n 0101 01 + 02 00 | recognize with a gesture prescribed by a military regulation; assume a prescribed position; "When the officers show up, the soldiers have to salute" -00900214 32 v 01 salute 2 003 @ 00897241 v 0000 + 06633041 n 0101 + 06688913 n 0102 01 + 09 00 | honor with a military ceremony, as when honoring dead soldiers -00900376 32 v 02 hail 0 herald 2 002 @ 00897241 v 0000 + 06631050 n 0101 01 + 09 00 | greet enthusiastically or joyfully -00900499 32 v 01 hail 1 001 @ 00792471 v 0000 01 + 08 00 | call for; "hail a cab" -00900583 32 v 02 welcome 0 receive 0 003 @ 00897241 v 0000 + 10146927 n 0103 ! 00900961 v 0101 01 + 09 00 | bid welcome to; greet upon arrival -00900728 32 v 02 dismiss 1 usher_out 0 003 @ 00900961 v 0000 + 06689829 n 0101 + 00076580 a 0101 01 + 09 00 | end one's encounter with somebody by causing or permitting the person to leave; "I was dismissed after I gave my report" -00900961 32 v 01 say_farewell 0 003 @ 00897241 v 0000 ! 00900583 v 0101 ~ 00900728 v 0000 02 + 02 00 + 27 00 | say good-bye or bid farewell -00901103 32 v 03 introduce 0 present 1 acquaint 0 009 @ 00831651 v 0000 + 05817145 n 0301 + 07217349 n 0201 + 10466198 n 0201 + 07217349 n 0102 $ 00874175 v 0000 ~ 00901464 v 0000 ~ 00901651 v 0000 ~ 01065115 v 0000 02 + 09 00 + 28 00 | cause to come to know personally; "permit me to acquaint you with my son"; "introduce the new neighbors to the community" -00901464 32 v 02 reintroduce 0 re-introduce 0 002 @ 00901103 v 0000 + 07217673 n 0101 02 + 09 00 + 28 00 | introduce anew; "We haven't met in a long time, so let me reintroduce myself" -00901651 32 v 01 present 4 002 @ 00901103 v 0000 + 07217349 n 0101 01 + 09 00 | formally present a debutante, a representative of a country, etc. -00901799 32 v 04 precede 3 preface 0 premise 1 introduce 1 006 @ 01009240 v 0000 + 00126339 a 0401 + 01009709 a 0401 + 06397903 n 0202 ~ 00902144 v 0000 ~ 00902289 v 0000 01 + 08 00 | furnish with a preface or introduction; "She always precedes her lectures with a joke"; "He prefaced his lecture with a critical remark about the institution" -00902144 32 v 01 preamble 0 002 @ 00901799 v 0000 + 06398090 n 0101 01 + 02 00 | make a preliminary introduction, usually to a formal document -00902289 32 v 03 prologize 0 prologuize 0 prologise 0 002 @ 00901799 v 0000 + 07009421 n 0101 01 + 02 00 | write or speak a prologue -00902424 32 v 03 absolve 0 justify 3 free 0 006 @ 00903385 v 0000 + 06740183 n 0201 + 00923495 a 0101 ! 00842538 v 0101 ~ 00893878 v 0000 ~ 00902654 v 0000 01 + 18 00 | let off the hook; "I absolve you from this responsibility" -00902654 32 v 01 wash_one's_hands 0 001 @ 00902424 v 0000 01 + 22 00 | to absolve oneself of responsibility or future blame; "I wash my hands of this" -00902807 32 v 01 meld 0 002 @ 00974367 v 0000 + 00497060 n 0103 01 + 08 00 | announce for a score; of cards in a card game -00902932 32 v 02 wish 0 bid 1 003 @ 00897241 v 0000 + 06630627 n 0102 ~ 00881998 v 0000 02 + 14 00 + 15 00 | invoke upon; "wish you a nice evening"; "bid farewell" -00903098 32 v 01 wish 1 002 $ 00903212 v 0000 @ 00745499 v 0000 01 + 08 00 | order politely; express a wish for -00903212 32 v 01 wish 2 004 @ 00940384 v 0000 + 07486229 n 0101 + 07185870 n 0101 $ 00903098 v 0000 01 + 26 00 | make or express a wish; "I wish that Christmas were over" -00903385 32 v 01 forgive 0 008 @ 00806049 v 0000 + 10399299 n 0102 ~ 00893167 v 0000 ~ 00902424 v 0000 ~ 00903711 v 0000 ~ 00903947 v 0000 ~ 00905399 v 0000 ~ 00905852 v 0000 03 + 08 00 + 09 00 + 14 00 | stop blaming or grant forgiveness; "I forgave him his infidelity"; "She cannot forgive him for forgetting her birthday" -00903711 32 v 02 shrive 0 absolve 2 005 @ 00903385 v 0000 + 00923495 a 0201 + 14574349 n 0201 + 00094240 n 0201 + 09755555 n 0201 01 + 09 00 | grant remission of a sin to; "The priest absolved him and told him to say ten Hail Mary's" -00903947 32 v 01 remit 4 001 @ 00903385 v 0000 01 + 08 00 | forgive; "God will remit their sins" -00904046 32 v 06 acquit 0 assoil 1 clear 0 discharge 0 exonerate 0 exculpate 0 014 * 00670261 v 0000 @ 00971650 v 0000 + 00923321 a 0601 + 01227691 n 0601 + 00923495 a 0502 + 14575399 n 0501 + 01241331 n 0502 + 13990502 n 0301 + 01247647 n 0301 + 01193886 n 0101 ! 00906367 v 0101 ~ 00904494 v 0000 ~ 00904878 v 0000 ~ 00905283 v 0000 02 + 09 00 + 18 00 | pronounce not guilty of criminal charges; "The suspect was cleared of the murder charges" -00904494 32 v 01 vindicate 1 001 @ 00904046 v 0000 02 + 09 00 + 10 00 | clear of accusation, blame, suspicion, or doubt with supporting proof; "You must vindicate yourself and fight this libel" -00904690 32 v 01 vindicate 2 004 @ 01017643 v 0000 + 09798534 n 0102 + 06740644 n 0103 + 01241331 n 0101 01 + 08 00 | maintain, uphold, or defend; "vindicate the rights of the citizens" -00904878 32 v 01 whitewash 0 002 @ 00904046 v 0000 + 01241594 n 0101 02 + 09 00 + 10 00 | exonerate by means of a perfunctory investigation or through biased presentation of data -00905059 32 v 01 get_off 1 001 ;c 08441203 n 0000 01 + 09 00 | cause to be acquitted; get off the hook; in a legal case; "The lawyer got him off, even though there was no doubt in everybody's mind that he killed his wife" -00905283 32 v 01 purge 0 003 @ 00904046 v 0000 + 00252662 n 0101 + 00252662 n 0103 01 + 09 00 | clear of a charge -00905399 32 v 01 pardon 0 007 @ 00903385 v 0000 ;c 08441203 n 0000 + 01249315 n 0102 + 06552639 n 0101 + 10399299 n 0101 + 10399130 n 0101 ~ 00905677 v 0000 02 + 09 00 + 14 00 | grant a pardon to; "Ford pardoned Nixon"; "The Thanksgiving turkey was pardoned by the President" -00905677 32 v 01 amnesty 0 005 @ 00905399 v 0000 ;c 08441203 n 0000 + 14529082 n 0101 + 06552639 n 0102 + 01249315 n 0101 01 + 09 00 | grant a pardon to (a group of people) -00905852 32 v 02 excuse 0 pardon 1 003 @ 00903385 v 0000 + 01227190 n 0202 + 06741305 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | accept an excuse for; "Please excuse my dirty hands" -00906037 32 v 03 extenuate 0 palliate 0 mitigate 0 009 @ 00894738 v 0000 ;c 08441203 n 0000 + 01341153 a 0304 + 01341153 a 0305 + 06741728 n 0302 + 00354583 n 0302 + 00354583 n 0203 + 06741728 n 0101 + 00354583 n 0101 01 + 11 00 | lessen or to try to lessen the seriousness or extent of; "The circumstances extenuate the crime" -00906367 32 v 01 convict 0 008 * 00670261 v 0000 @ 00971650 v 0000 ;c 08441203 n 0000 + 01189282 n 0101 + 09963159 n 0101 + 09962966 n 0101 ! 00904046 v 0101 ~ 00906637 v 0000 02 + 09 00 + 18 00 | find or declare guilty; "The man was convicted of fraud and sentenced" -00906637 32 v 01 reconvict 0 002 @ 00906367 v 0000 ;c 08441203 n 0000 01 + 09 00 | convict anew -00906735 32 v 03 sentence 0 condemn 1 doom 0 009 * 00906367 v 0000 @ 01010118 v 0000 ;c 08441203 n 0000 + 14574846 n 0201 + 06709692 n 0202 + 15224692 n 0102 + 01189282 n 0104 ~ 00907066 v 0000 ~ 01071155 v 0000 02 + 09 00 + 24 00 | pronounce a sentence on (somebody) in a court of law; "He was condemned to ten years in prison" -00907066 32 v 01 foredoom 0 001 @ 00906735 v 0000 01 + 09 00 | doom beforehand -00907147 32 v 06 complain 0 kick 0 plain 0 sound_off 0 quetch 0 kvetch 0 016 + 07209965 n 0202 + 07208708 n 0101 + 10776339 n 0102 ! 00859153 v 0101 ~ 00844941 v 0000 ~ 00907657 v 0000 ~ 00907930 v 0000 ~ 00909219 v 0000 ~ 00909573 v 0000 ~ 00910135 v 0000 ~ 00910891 v 0000 ~ 00910973 v 0000 ~ 00911261 v 0000 ~ 00911350 v 0000 ~ 00965542 v 0000 ~ 01048492 v 0000 02 + 02 00 + 26 00 | express complaints, discontent, displeasure, or unhappiness; "My mother complains all day"; "She has a lot to kick about" -00907657 32 v 02 backbite 0 bitch 0 004 @ 00907147 v 0000 + 07209965 n 0204 + 01222333 n 0201 + 09999135 n 0106 01 + 02 00 | say mean things -00907800 32 v 01 heckle 0 003 @ 00778275 v 0000 + 10167565 n 0101 + 01068633 n 0101 02 + 02 00 + 09 00 | challenge aggressively -00907930 32 v 04 whine 0 grizzle 0 yammer 0 yawp 0 004 $ 01042531 v 0000 @ 00907147 v 0000 + 07211752 n 0102 + 10776339 n 0101 02 + 02 00 + 26 00 | complain whiningly -00908099 32 v 02 deter 1 discourage 1 005 @ 00807178 v 0000 + 01076724 n 0201 + 01764543 a 0101 + 05689249 n 0103 + 01076488 n 0101 03 + 09 00 + 10 00 + 11 00 | try to prevent; show opposition to; "We should discourage this practice among our youth" -00908351 32 v 02 foster 0 nurture 0 008 @ 01818235 v 0000 + 01129532 n 0205 + 04922113 n 0203 + 01129532 n 0104 + 07252206 n 0101 + 01129532 n 0103 ~ 00908621 v 0000 ~ 02670578 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | help develop, help grow; "nurture his talents" -00908621 32 v 05 patronize 0 patronise 0 patronage 0 support 2 keep_going 0 007 @ 00908351 v 0000 + 10407954 n 0403 + 01096454 n 0302 + 08401554 n 0302 + 10407726 n 0201 + 10407726 n 0101 $ 02684254 v 0000 02 + 08 00 + 09 00 | be a regular customer or client of; "We patronize this store"; "Our sponsor kept our art studio going for as long as he could" -00908977 32 v 03 patronize 1 patronise 1 condescend a 003 @ 02376958 v 0000 + 06719404 n 0301 ~ 00909134 v 0000 02 + 09 00 + 22 03 | treat condescendingly -00909134 32 v 01 stoop_to 0 001 @ 00908977 v 0000 01 + 22 00 | make concessions to -00909219 32 v 05 murmur 1 mutter 0 grumble 0 croak 0 gnarl 0 009 @ 00907147 v 0000 + 07211092 n 0301 + 10776339 n 0307 + 07211092 n 0302 + 07211092 n 0205 + 07211092 n 0206 + 07211092 n 0103 + 07211092 n 0104 + 10342543 n 0103 03 + 02 00 + 22 00 + 26 00 | make complaining remarks or noises under one's breath; "she grumbles when she feels overworked" -00909573 32 v 03 grouch 0 grumble 1 scold 1 006 @ 00907147 v 0000 + 10561861 n 0301 + 10561861 n 0302 + 07211092 n 0201 + 10776339 n 0207 + 10148305 n 0101 02 + 02 00 + 22 00 | show one's unhappiness or critical attitude; "He scolded about anything that he thought was wrong"; "We grumbled about the increased work load" -00909896 32 v 01 coo 0 002 @ 00983824 v 0000 + 07381329 n 0101 01 + 01 00 | cry softly, as of pigeons -00910000 32 v 01 coo 1 001 @ 01044114 v 0000 01 + 02 00 | speak softly or lovingly; "The mother who held her baby was cooing softly" -00910135 32 v 01 protest 0 008 @ 00907147 v 0000 + 00514175 a 0101 + 07210553 n 0101 + 07210225 n 0101 + 06733119 n 0101 + 10018021 n 0103 + 10002760 n 0102 ~ 00910364 v 0000 03 + 02 00 + 22 00 + 26 00 | utter words of protest -00910364 32 v 02 declaim 2 inveigh 1 002 @ 00910135 v 0000 + 07242324 n 0101 01 + 20 00 | speak against in an impassioned manner; "he declaimed against the wasteful ways of modern society" -00910555 32 v 01 remonstrate 0 001 @ 00807461 v 0000 01 + 22 00 | argue in protest or opposition -00910654 32 v 03 raise_hell 0 make_a_stink 0 raise_a_stink 0 001 @ 00807461 v 0000 01 + 02 00 | take strong and forceful action, as to object or express discontent; "She raised hell when she found out that she wold not be hired again" -00910891 32 v 01 repine 0 001 @ 00907147 v 0000 01 + 02 00 | express discontent -00910973 32 v 08 gripe 0 bitch 1 grouse 0 crab 0 beef 0 squawk 0 bellyache 0 holler 0 007 @ 00907147 v 0000 + 10776339 n 0706 + 07209965 n 0605 + 10776339 n 0608 + 07209965 n 0503 + 09974054 n 0401 + 07209965 n 0101 03 + 02 00 + 22 00 + 26 00 | complain; "What was he hollering about?" -00911261 32 v 02 rail 0 inveigh 0 001 @ 00907147 v 0000 01 + 22 00 | complain bitterly -00911350 32 v 04 deplore 1 lament 0 bewail 0 bemoan 0 003 @ 00907147 v 0000 + 01126841 a 0203 + 10335246 n 0204 01 + 08 00 | regret strongly; "I deplore this hostile action"; "we lamented the loss of benefits" -00911562 32 v 01 regret 2 004 @ 00831651 v 0000 + 07535670 n 0102 $ 00911761 v 0000 ~ 01780568 v 0000 01 + 28 00 | express with regret; "I regret to say that you did not gain admission to Harvard" -00911761 32 v 01 regret 0 002 $ 00911562 v 0000 @ 00797430 v 0000 02 + 26 00 + 28 00 | decline formally or politely; "I regret I can't come to the party" -00911917 32 v 01 repudiate 6 002 @ 00797430 v 0000 + 07205718 n 0101 01 + 08 00 | refuse to recognize or pay; "repudiate a debt" -00912048 32 v 06 exclaim 0 cry 7 cry_out 0 outcry 0 call_out 1 shout 8 009 $ 00975584 v 0000 $ 00913065 v 0000 @ 00940384 v 0000 + 07120524 n 0605 + 00842041 a 0102 + 07125523 n 0101 + 07125523 n 0102 ~ 00865664 v 0000 ~ 00865776 v 0000 02 + 08 00 + 26 00 | utter aloud; often with surprise, horror, or joy; "`I won!' he exclaimed"; "`Help!' she cried"; "`I'm here,' the mother shouted when she saw her child looking lost" -00912473 32 v 01 shout 0 008 @ 00941990 v 0000 + 07120524 n 0105 + 10533983 n 0106 ! 00915830 v 0101 ~ 00912833 v 0000 ~ 00915423 v 0000 ~ 00915605 v 0000 ~ 01048569 v 0000 03 + 02 00 + 08 00 + 26 00 | utter in a loud voice; talk in a loud voice (usually denoting characteristic manner of speaking); "My grandmother is hard of hearing--you'll have to shout" -00912833 32 v 02 yell 0 scream 8 005 @ 00912473 v 0000 + 06345773 n 0201 + 01860497 n 0201 + 07120524 n 0104 + 10533983 n 0107 01 + 02 00 | utter or declare in a very loud voice; "You don't have to yell--I can hear you just fine" -00913065 32 v 09 shout 1 shout_out 0 cry 1 call 9 yell 1 scream 1 holler 5 hollo 0 squall 0 026 $ 00738747 v 0000 @ 00983824 v 0000 + 07121361 n 0806 + 07121361 n 0704 + 07121361 n 0705 + 07123012 n 0601 + 01860497 n 0601 + 07123012 n 0602 + 07121157 n 0502 + 07120524 n 0504 + 07123552 n 0501 + 07120524 n 0403 ^ 00975584 v 0401 + 07121157 n 0301 + 07120524 n 0301 ^ 00912048 v 0303 + 07120524 n 0105 + 07123552 n 0102 $ 00912048 v 0000 ~ 00913795 v 0000 ~ 00913982 v 0000 ~ 00914061 v 0000 ~ 00914215 v 0000 ~ 00914420 v 0000 ~ 01046932 v 0000 ~ 01048939 v 0000 02 + 01 00 + 02 00 | utter a sudden loud cry; "she cried with pain when the doctor inserted the needle"; "I yelled to her from the window but she couldn't hear me" -00913795 32 v 01 hollo 1 002 @ 00913065 v 0000 + 07121361 n 0106 01 + 02 00 | cry hollo -00913885 32 v 01 hollo 2 001 @ 01818235 v 0000 01 + 09 00 | encourage somebody by crying hollo -00913982 32 v 01 hurrah 0 001 @ 00913065 v 0000 01 + 02 00 | shout `hurrah!' -00914061 32 v 01 halloo 0 002 @ 00913065 v 0000 + 07122409 n 0101 02 + 02 00 + 15 00 | shout `halloo', as when greeting someone or attracting attention -00914215 32 v 01 whoop 0 003 @ 00913065 v 0000 + 07123288 n 0101 + 01859325 n 0101 02 + 02 00 + 08 00 | shout, as if with joy or enthusiasm; "The children whooped when they were led to the picnic table" -00914420 32 v 04 shriek 0 shrill 0 pipe_up 1 pipe 0 006 @ 00913065 v 0000 + 07393589 n 0201 + 07393161 n 0103 + 07123012 n 0103 + 07123012 n 0104 ~ 00914634 v 0000 03 + 02 00 + 08 00 + 26 00 | utter a shrill cry -00914634 32 v 02 yowl 0 caterwaul 0 003 @ 00914420 v 0000 + 07378569 n 0201 + 07121361 n 010a 01 + 01 00 | utter shrieks, as of cats -00914769 32 v 06 interject 0 come_in 0 interpose 0 put_in 2 throw_in 0 inject 0 005 @ 00778275 v 0000 + 01052215 n 0301 + 01068184 n 0302 + 07125958 n 0102 + 01068184 n 0101 03 + 08 00 + 26 00 + 02 02 | to insert between other elements; "She interjected clever remarks" -00915041 32 v 02 clamor 0 clamour 0 004 @ 00940384 v 0000 + 07122118 n 0203 + 07122118 n 0101 + 07122118 n 0102 02 + 02 00 + 08 00 | utter or proclaim insistently and noisily; "The delegates clamored their disappointment" -00915265 32 v 02 vociferate 1 shout_out 3 002 @ 00940384 v 0000 + 10758589 n 0101 01 + 08 00 | utter in a very loud voice; "They vociferated their demands" -00915423 32 v 02 holler 6 holler_out 0 003 @ 00912473 v 0000 + 07121361 n 0104 + 07121361 n 0105 03 + 08 00 + 26 00 + 28 00 | shout out; "He hollered out to surrender our weapons" -00915605 32 v 02 thunder 0 roar 3 005 @ 00912473 v 0000 + 07121361 n 0208 + 10533983 n 0201 + 07121361 n 0209 + 07377682 n 0104 03 + 02 00 + 22 00 + 26 00 | utter words loudly and forcefully; "`Get out of here,' he roared" -00915830 32 v 01 whisper 0 005 @ 00941990 v 0000 + 07130341 n 0101 + 10777299 n 0101 + 07130341 n 0102 ! 00912473 v 0101 03 + 02 00 + 08 00 + 26 00 | speak softly; in a low voice -00916011 32 v 01 peep 1 001 @ 00941990 v 0000 01 + 02 00 | speak in a hesitant and high-pitched tone of voice -00916123 32 v 01 speak_up 3 001 @ 00941990 v 0000 01 + 02 00 | speak louder; raise one's voice; "The audience asked the lecturer to please speak up" -00916274 32 v 02 snap 0 snarl 0 003 @ 00941990 v 0000 + 06878706 n 0201 + 07129758 n 0201 03 + 02 00 + 22 00 + 26 00 | utter in an angry, sharp, or abrupt tone; "The sales clerk snapped a reply at the angry customer"; "The guard snarled at us" -00916520 32 v 01 snarl 1 002 @ 02176268 v 0000 + 07129758 n 0101 01 + 02 00 | make a snarling noise or move with a snarling noise; "Bullets snarled past us" -00916679 32 v 01 enthuse 0 002 @ 00941990 v 0000 ~ 00916783 v 0000 01 + 26 00 | utter with enthusiasm -00916783 32 v 02 rhapsodize 0 rhapsodise 0 001 @ 00916679 v 0000 02 + 08 00 + 26 00 | say (something) with great enthusiasm -00916909 32 v 04 guess 0 venture 0 pretend 2 hazard 0 008 @ 00927049 v 0000 + 11418138 n 0404 + 05803938 n 0101 + 06782680 n 0101 + 10150794 n 0101 + 05803938 n 0103 ~ 00917772 v 0000 ~ 00921072 v 0000 02 + 08 00 + 26 00 | put forward, of a guess, in spite of possible refutation; "I am guessing that the price of real estate will rise again"; "I cannot pretend to say that you are wrong" -00917300 32 v 02 suppose 0 say 3 003 @ 00927049 v 0000 + 06782680 n 0103 + 05892096 n 0103 02 + 08 00 + 26 00 | express a supposition; "Let us say that he did not tell the truth"; "Let's say you had a lot of money--what would you do?" -00917537 32 v 01 second-guess 0 001 @ 01033189 v 0000 02 + 08 00 + 09 00 | evaluate or criticize with hindsight -00917651 32 v 02 second-guess 1 outguess 0 001 @ 00917772 v 0000 02 + 08 00 + 09 00 | attempt to anticipate or predict -00917772 32 v 07 predict 0 foretell 0 prognosticate 0 call a forebode 0 anticipate 0 promise 2 019 @ 00916909 v 0000 + 00122245 a 0601 + 07522128 n 0501 + 07286905 n 0501 + 01883325 a 0303 + 06748969 n 0304 + 05775407 n 0302 + 06749881 n 0301 + 10102506 n 0303 + 06748969 n 0202 + 01883325 a 0101 + 05775081 n 0101 + 10102506 n 0102 ~ 00627091 v 0000 ~ 00917651 v 0000 ~ 00918471 v 0000 ~ 00918580 v 0000 ~ 00926472 v 0000 ~ 00926702 v 0000 02 + 08 00 + 26 00 | make a prediction about; tell in advance; "Call the outcome of an election" -00918312 32 v 01 vaticinate 1 003 @ 00926702 v 0000 + 05775407 n 0103 + 10483530 n 0105 01 + 08 00 | foretell through or as if through the power of prophecy -00918471 32 v 01 augur 1 002 @ 00917772 v 0000 + 09823287 n 0101 02 + 08 00 + 26 00 | predict from an omen -00918580 32 v 02 bet 0 wager 0 003 @ 00917772 v 0000 + 00506658 n 0202 ^ 01139104 v 0101 01 + 26 00 | maintain with or as if with a bet; "I bet she will be there!" -00918746 32 v 01 guesstimate 0 002 @ 00672433 v 0000 + 05804136 n 0101 02 + 08 00 + 26 00 | estimate based on a calculation -00918872 32 v 04 determine 0 find 0 find_out 0 ascertain 1 016 $ 00920336 v 0000 $ 01637982 v 0000 + 00738829 a 0401 + 05808218 n 0203 + 09279458 n 0201 + 00162632 n 0102 + 00151497 n 0101 ~ 00919424 v 0000 ~ 00919608 v 0000 ~ 00919829 v 0000 ~ 00919960 v 0000 ~ 00920125 v 0000 ~ 00920929 v 0000 ~ 00948071 v 0000 ~ 02295082 v 0000 ~ 02694933 v 0000 02 + 08 00 + 29 00 | establish after a calculation, investigation, experiment, survey, or study; "find the product of two numbers"; "The physicist who found the elusive particle won the Nobel Prize" -00919424 32 v 01 gauge 0 002 @ 00918872 v 0000 + 03429288 n 0101 01 + 08 00 | determine the capacity, volume, or contents of by measurement and calculation; "gauge the wine barrels" -00919608 32 v 01 translate 5 003 @ 00918872 v 0000 ;c 06075527 n 0000 + 13568983 n 0101 02 + 01 00 + 08 00 | determine the amino-acid sequence of a protein during its synthesis by using information on the messenger RNA -00919829 32 v 01 rectify 2 002 @ 00918872 v 0000 + 00156119 n 0101 01 + 08 00 | math: determine the length of; "rectify a curve" -00919960 32 v 01 redetermine 0 002 @ 00918872 v 0000 + 00156293 n 0101 01 + 08 00 | fix, find, or establish again; "the physicists redetermined Planck's constant" -00920125 32 v 01 sequence 0 005 @ 00918872 v 0000 + 05044822 n 0101 + 08459252 n 0101 + 04173511 n 0101 + 04173344 n 0101 01 + 08 00 | determine the order of constituents in; "They sequenced the human genome" -00920336 32 v 07 determine 1 check a find_out 1 see 0 ascertain 0 watch 9 learn 2 006 + 00738829 a 0501 + 00141806 n 0201 + 00151497 n 0101 $ 00662589 v 0000 $ 00918872 v 0000 ~ 00920778 v 0000 01 + 29 00 | find out, learn, or determine with certainty, usually by making an inquiry or other effort; "I want to see whether she speaks French"; "See whether it works"; "find out if he speaks Russian"; "Check whether the train leaves on time" -00920778 32 v 01 test 8 003 @ 00920336 v 0000 + 00791078 n 0101 + 00644702 n 0101 01 + 08 00 | determine the presence or properties of (a substance) -00920929 32 v 01 refract 0 003 @ 00918872 v 0000 + 02312918 a 0102 + 02788005 a 0101 01 + 08 00 | determine the refracting power of (a lens) -00921072 32 v 02 suspect 0 surmise 0 003 @ 00916909 v 0000 + 06782680 n 0204 + 05919034 n 0103 02 + 08 00 + 26 00 | imagine to be the case or true or probable; "I suspect he is a fugitive"; "I surmised that the butler did it" -00921300 32 v 05 bespeak 1 betoken 1 indicate 1 point c signal 1 009 @ 00952524 v 0000 + 06791372 n 0501 + 02091300 a 0301 + 06797671 n 0301 + 06797169 n 0301 + 06797169 n 0302 + 07262579 n 0301 ~ 00871942 v 0000 ~ 00921738 v 0000 02 + 11 00 + 04 04 | be a signal for or a symptom of; "These symptoms indicate a serious illness"; "Her behavior points to a severe neurosis"; "The economic indicators signal that the euro is undervalued" -00921738 32 v 01 mark 2 010 @ 00921300 v 0000 + 06798750 n 0101 + 03722007 n 0101 + 03721797 n 0101 $ 00651991 v 0000 ~ 00922025 v 0000 ~ 00922142 v 0000 ~ 00922320 v 0000 ~ 00922438 v 0000 ~ 00922771 v 0000 02 + 08 00 + 11 00 | designate as if by a mark; "This sign marks the border" -00922025 32 v 01 blaze 0 001 @ 00921738 v 0000 01 + 08 00 | indicate by marking trees with blazes; "blaze a trail" -00922142 32 v 01 dimension 0 002 @ 00921738 v 0000 + 05093581 n 0101 02 + 08 00 + 11 00 | indicate the dimensions on; "These techniques permit us to dimension the human heart" -00922320 32 v 01 signpost 0 002 @ 00921738 v 0000 + 06794374 n 0101 01 + 08 00 | mark with a signpost, as of a path -00922438 32 v 03 signalize 0 signalise 0 distinguish 0 005 @ 00921738 v 0000 + 06798336 n 0202 + 06798336 n 0101 + 06791372 n 0101 ~ 00922641 v 0000 02 + 08 00 + 11 00 | make conspicuous or noteworthy -00922641 32 v 02 singularize 0 singularise 0 001 @ 00922438 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | distinguish as singular -00922771 32 v 01 buoy 0 002 @ 00921738 v 0000 + 07266178 n 0101 01 + 08 00 | mark with a buoy -00922867 32 v 04 read 2 register 0 show 4 record 3 007 @ 00928015 v 0000 + 00999787 n 0202 + 05816790 n 0101 + 01004582 n 0101 ~ 00923197 v 0000 ~ 00923307 v 0000 ~ 00923622 v 0000 01 + 11 00 | indicate a certain reading; of gauges and instruments; "The thermometer showed thirteen degrees below zero"; "The gauge read `empty'" -00923197 32 v 01 say 9 002 @ 00922867 v 0000 $ 00928959 v 0000 01 + 11 00 | indicate; "The clock says noon" -00923307 32 v 01 show 3 003 @ 00922867 v 0000 ~ 00820611 v 0000 ~ 00923481 v 0000 01 + 11 00 | give evidence of, as of records; "The diary shows his distress that evening" -00923481 32 v 01 surcharge 0 001 @ 00923307 v 0000 01 + 11 00 | show an omission in (an account) for which credit ought to have been given -00923622 32 v 01 strike 0 001 @ 00922867 v 0000 01 + 11 00 | indicate (a certain time) by striking; "The clock struck midnight"; "Just when I entered, the clock struck" -00923793 32 v 04 indicate 3 point 0 designate 3 show 1 009 @ 00831651 v 0000 + 06818121 n 0202 + 03150795 n 0202 + 03975232 n 0201 + 07231048 n 0101 ~ 00924255 v 0000 ~ 00924431 v 0000 ~ 00924612 v 0000 ~ 02136892 v 0000 05 + 08 00 + 11 00 + 14 00 + 15 00 + 26 00 | indicate a place, direction, person, or thing; either spatially or figuratively; "I showed the customer the glove section"; "He pointed to the empty parking space"; "he indicated his opponents" -00924255 32 v 01 point b 001 @ 00923793 v 0000 02 + 04 00 + 11 00 | indicate the presence of (game) by standing and pointing with the muzzle; "the dog pointed the dead duck" -00924431 32 v 01 finger 0 003 @ 00923793 v 0000 + 05566504 n 0101 + 01053207 n 0101 01 + 08 00 | indicate the fingering for the playing of musical scores for keyboard instruments -00924612 32 v 04 signalize 2 signalise 2 point_out 3 call_attention 0 002 @ 00923793 v 0000 + 06791372 n 0101 02 + 08 00 + 11 00 | point out carefully and clearly -00924777 32 v 01 foreshow 0 001 @ 00871942 v 0000 01 + 11 00 | foretell by divine inspiration -00924873 32 v 01 suspect 2 004 @ 00631737 v 0000 + 09762101 n 0102 + 10681383 n 0101 + 13982839 n 0101 01 + 09 00 | hold in suspicion; believe to be guilty; "The U.S. suspected Bin Laden as the mastermind behind the terrorist attacks" -00925110 32 v 02 wonder 1 question 2 003 @ 00630380 v 0000 + 04757522 n 0204 ~ 00925372 v 0000 02 + 29 00 + 02 01 | place in doubt or express doubtful speculation; "I wonder whether this was the right thing to do"; "she wondered whether it would snow tonight" -00925372 32 v 01 scruple 0 003 @ 00925110 v 0000 + 05957737 n 0101 + 07525555 n 0101 01 + 08 00 | have doubts about -00925490 32 v 02 wonder c marvel c 007 @ 00717358 v 0000 + 07289588 n 0202 + 10789534 n 0202 + 07509996 n 0102 + 07509996 n 0101 + 07289588 n 0101 + 10789534 n 0101 01 + 08 00 | be amazed at; "We marvelled at the child's linguistic abilities" -00925735 32 v 01 marvel 0 002 @ 00940384 v 0000 + 07289588 n 0102 02 + 22 00 + 26 00 | express astonishment or surprise about something -00925873 32 v 03 explicate 1 formulate 3 develop 0 007 @ 00633443 v 0000 + 00940842 n 0203 + 06743362 n 0101 $ 00402130 v 0000 $ 00545557 v 0000 ~ 00926156 v 0000 ~ 00926310 v 0000 01 + 08 00 | elaborate, as of theories and hypotheses; "Could you develop the ideas in your thesis" -00926156 32 v 01 mature 0 002 @ 00925873 v 0000 + 13512238 n 0103 01 + 08 00 | develop and work out fully in one's mind; "I need to mature my thoughts" -00926310 32 v 02 redevelop 0 reformulate 0 002 @ 00925873 v 0000 + 00265119 n 0102 01 + 08 00 | formulate or develop again, of an improved theory or hypothesis -00926472 32 v 02 forecast 0 calculate 1 008 @ 00917772 v 0000 + 00301187 a 0201 + 01155603 a 0202 + 05796423 n 0201 + 00868910 n 0201 + 06749881 n 0102 + 10102506 n 0101 + 06748969 n 0103 02 + 08 00 + 26 00 | predict in advance -00926702 32 v 02 prophesy 0 vaticinate 0 005 @ 00917772 v 0000 + 05775407 n 0203 + 10483530 n 0205 ~ 00918312 v 0000 ~ 00926932 v 0000 03 + 08 00 + 11 00 + 26 00 | predict or reveal through, or as if through, divine inspiration -00926932 32 v 02 enlighten 1 irradiate 0 001 @ 00926702 v 0000 01 + 08 00 | give spiritual insight to; in religion -00927049 32 v 01 speculate 0 006 @ 00632627 v 0000 + 00861818 a 0102 + 06782680 n 0106 + 10634316 n 0101 ~ 00916909 v 0000 ~ 00917300 v 0000 02 + 02 00 + 26 00 | talk over conjecturally, or review in an idle or casual way and with an element of doubt or without sufficient reason to reach a conclusion; "We were speculating whether the President had to resign after the scandal" -00927430 32 v 02 hint 0 suggest 4 010 @ 00928630 v 0000 + 02362708 a 0201 + 07162680 n 0201 + 10673451 n 0201 + 06651577 n 0106 + 06802785 n 0101 + 07163988 n 0101 ~ 00927711 v 0000 ~ 00927900 v 0000 ~ 01026728 v 0000 03 + 02 00 + 22 00 + 26 00 | drop a hint; intimate by a hint -00927711 32 v 03 intimate 0 adumbrate 1 insinuate 0 003 @ 00927430 v 0000 + 07238455 n 0301 + 05916306 n 0102 01 + 26 00 | give to understand; "I insinuated that I did not like his wife" -00927900 32 v 01 clue_in 0 001 @ 00927430 v 0000 01 + 09 00 | provide someone with a clue; "Can you clue me in?" -00928015 32 v 01 indicate 0 005 @ 00831651 v 0000 ~ 00922867 v 0000 ! 00928476 v 0101 ~ 01039854 v 0000 ~ 01068793 v 0000 03 + 08 00 + 11 00 + 26 00 | to state or express briefly; "indicated his wishes in a letter" -00928232 32 v 02 indicate 4 suggest 3 005 @ 00831651 v 0000 + 02091300 a 0101 + 06671818 n 0101 + 06797671 n 0101 ! 00928476 v 0101 01 + 11 00 | suggest the necessity of an intervention; in medicine; "Tetracycline is indicated in such cases" -00928476 32 v 01 contraindicate 0 004 @ 00872886 v 0000 + 06797947 n 0101 ! 00928015 v 0101 ! 00928232 v 0101 01 + 11 00 | make a treatment inadvisable -00928630 32 v 01 convey 0 011 @ 02296153 v 0000 + 09962789 n 0102 + 06252954 n 0101 ~ 00892315 v 0000 ~ 00927430 v 0000 ~ 00928959 v 0000 ~ 00929362 v 0000 ~ 00929509 v 0000 ~ 00929703 v 0000 ~ 00943837 v 0000 ~ 00955148 v 0000 03 + 08 00 + 11 00 + 15 00 | make known; pass on, of information; "She conveyed the message to me" -00928959 32 v 01 say 7 002 $ 00923197 v 0000 @ 00928630 v 0000 02 + 08 00 + 11 00 | communicate or express nonverbally; "What does this painting say?"; "Did his face say anything about how he felt?" -00929160 32 v 01 sign 4 003 @ 00740577 v 0000 + 06876144 n 0101 + 10597505 n 0101 01 + 26 00 | communicate in sign language; "I don't know how to sign, so I could not communicate with my deaf cousin" -00929362 32 v 01 look 0 002 @ 00928630 v 0000 + 04679738 n 0102 02 + 08 00 + 15 00 | convey by one's expression; "She looked her devotion to me" -00929509 32 v 01 flash 0 002 @ 00928630 v 0000 + 06682494 n 0103 02 + 08 00 + 11 00 | make known or cause to appear with great speed; "The latest intelligence is flashed to all command posts" -00929703 32 v 01 breathe 3 001 @ 00928630 v 0000 03 + 08 00 + 11 00 + 15 00 | manifest or evince; "She breathes the Christian spirit" -00929839 32 v 02 imply 0 connote 1 004 @ 00943837 v 0000 + 05923566 n 0201 + 00723542 a 0101 + 05920791 n 0103 03 + 08 00 + 11 00 + 26 00 | express or state indirectly -00930009 32 v 01 burst_out 0 002 @ 00943837 v 0000 ~ 00930194 v 0000 02 + 02 00 + 33 00 | give sudden release to an expression; "We burst out laughing"; "'I hate you,' she burst out" -00930194 32 v 01 rip_out 0 001 @ 00930009 v 0000 02 + 08 00 + 22 00 | burst out with a violent or profane utterance; "ripped out a vicious oath"; "ripped out with an oath" -00930368 32 v 03 suggest 1 evoke 1 paint_a_picture 0 006 @ 00943837 v 0000 + 01977669 a 0201 + 05769833 n 0201 + 05771679 n 0101 ~ 02194723 v 0000 ~ 02636921 v 0000 02 + 11 00 + 02 03 | call to mind; "this remark evoked sadness" -00930599 32 v 01 imply 1 006 @ 00943837 v 0000 + 00723542 a 0101 + 13860281 n 0101 ~ 00716345 v 0000 ~ 00930806 v 0000 ~ 00931232 v 0000 01 + 11 00 | suggest as a logically necessary consequence; in logic -00930806 32 v 02 suggest 2 intimate 1 008 @ 00930599 v 0000 + 07163988 n 0202 + 05916306 n 0202 + 02362708 a 0101 + 02091300 a 0105 + 00723542 a 0102 + 07246582 n 0101 ~ 00931085 v 0000 01 + 11 00 | imply as a possibility; "The evidence suggests a need for more clarification" -00931085 32 v 01 make_out 3 001 @ 00930806 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | imply or suggest; "Your remarks make me out to be stupid" -00931232 32 v 02 connote 0 predicate 1 003 @ 00930599 v 0000 + 06733227 n 0202 + 06602935 n 0102 01 + 11 00 | involve as a necessary condition of consequence; as in logic; "solving the problem is predicated on understanding it well" -00931467 32 v 02 denote 0 refer 0 015 @ 00931852 v 0000 + 05923314 n 0201 + 05922949 n 0201 + 00722110 a 0102 + 01418989 a 0101 + 00722110 a 0101 + 05922949 n 0102 $ 00932161 v 0000 ~ 00932798 v 0000 ~ 00933107 v 0000 ~ 00959524 v 0000 ~ 01026095 v 0000 ~ 01026558 v 0000 ~ 01044891 v 0000 ~ 01061481 v 0000 03 + 11 00 + 04 02 + 22 02 | have as a meaning; "`multi-' denotes `many' " -00931852 32 v 04 mean 3 intend 2 signify 2 stand_for 0 007 + 06601327 n 0303 + 06811625 n 0301 + 06290637 n 0303 + 06601327 n 0101 + 05919866 n 0101 ~ 00931467 v 0000 $ 00932324 v 0000 01 + 11 00 | denote or connote; "`maison' means `house' in French"; "An example sentence would show what this word means" -00932161 32 v 01 denote 1 003 $ 00931467 v 0000 @ 01030132 v 0000 + 07231048 n 0102 01 + 11 00 | be a sign or indication of; "Her smile denoted that she agreed" -00932324 32 v 01 signify 0 008 $ 00931852 v 0000 @ 00955148 v 0000 + 01497387 a 0103 + 06811625 n 0101 + 06791372 n 0103 + 06876144 n 0101 + 06646243 n 0101 + 06601327 n 0102 03 + 11 00 + 15 00 + 21 00 | convey or express a meaning; "These words mean nothing to me!"; "What does his strange behavior signify?" -00932636 32 v 02 spell 1 import 0 003 @ 00955148 v 0000 + 06601327 n 0204 + 05920791 n 0202 01 + 11 00 | indicate or signify; "I'm afraid this spells trouble!" -00932798 32 v 05 twist 0 twist_around 0 pervert 0 convolute 0 sophisticate 0 005 @ 00931467 v 0000 + 05895138 n 0503 + 00753472 n 0501 + 07173959 n 0102 + 00751529 n 0105 02 + 08 00 + 11 00 | practice sophistry; change the meaning of or be vague about in order to mislead or deceive; "Don't twist my words" -00933107 32 v 02 euphemize 0 euphemise 0 002 @ 00931467 v 0000 + 06605046 n 0101 01 + 02 00 | refer to something with a euphemism -00933239 32 v 01 speak_in_tongues 0 001 @ 00941990 v 0000 01 + 02 00 | speak unintelligibly in or as if in religious ecstasy; "The parishioners spoke in tongues" -00933403 32 v 01 voice 0 004 @ 00940384 v 0000 + 00179683 n 0101 + 07073208 n 0102 + 10758847 n 0101 02 + 08 00 + 11 00 | give voice to; "He voiced his concern" -00933566 32 v 03 tone_down 0 moderate 1 tame 0 002 @ 00126264 v 0000 + 05117660 n 0201 02 + 08 00 + 11 00 | make less strong or intense; soften; "Tone down that aggressive letter"; "The author finally tamed some of his potentially offensive statements" -00933821 32 v 0b unwrap 0 disclose 0 let_on 0 bring_out 6 reveal 0 discover 4 expose 1 divulge 0 break 0 give_away 0 let_out 0 023 > 00935987 v 0000 $ 00935987 v 0000 @ 00952524 v 0000 + 07214894 n 0a01 + 07214267 n 0802 + 07214267 n 0801 + 07215377 n 0701 + 07215568 n 0701 + 07214432 n 0601 + 05808102 n 0501 + 07213395 n 0503 + 07213395 n 0201 ~ 00847365 v 0000 ~ 00934744 v 0000 ~ 00934965 v 0000 ~ 00935264 v 0000 ~ 00935456 v 0000 ~ 00935827 v 0000 ~ 00936330 v 0000 ~ 00936465 v 0000 ~ 00937023 v 0000 ~ 00937208 v 0000 ~ 02144243 v 0000 04 + 08 00 + 11 00 + 15 00 + 26 00 | make known to the public information that was previously known only to a few people or that was meant to be kept a secret; "The auction house would not disclose the price at which the van Gogh had sold"; "The actress won't reveal how old she is"; "bring out the truth"; "he broke the news to her"; "unwrap the evidence in the murder case" -00934744 32 v 01 muckrake 0 003 @ 00933821 v 0000 + 10336537 n 0101 + 07215816 n 0101 01 + 01 00 | explore and expose misconduct and scandals concerning public figures; "This reporter was well-known for his muckraking" -00934965 32 v 01 blow 9 001 @ 00933821 v 0000 01 + 08 00 | cause to be revealed and jeopardized; "The story blew their cover"; "The double agent was blown by the other side" -00935141 32 v 02 out 0 come_out 0 000 02 + 01 00 + 02 00 | be made known; be disclosed or revealed; "The truth will out" -00935264 32 v 01 out 1 001 @ 00933821 v 0000 02 + 09 00 + 10 00 | reveal (something) about somebody's identity or lifestyle; "The gay actor was outed last week"; "Someone outed a CIA agent" -00935456 32 v 03 come_out_of_the_closet 0 out 2 come_out 1 001 @ 00933821 v 0000 01 + 02 00 | to state openly and publicly one's homosexuality; "This actor outed last year" -00935631 32 v 02 unmask 0 uncloak 0 002 @ 00853195 v 0000 + 07215568 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | reveal the true nature of; "The journal article unmasked the corrupt politician" -00935827 32 v 01 spring 0 001 @ 00933821 v 0000 01 + 19 00 | produce or disclose suddenly or unexpectedly; "He sprang these news on me just as I was leaving" -00935987 32 v 03 break 5 get_out 0 get_around 0 002 $ 00933821 v 0000 ~ 00936169 v 0000 01 + 01 00 | be released or become known; of news; "News of her death broke in the morning" -00936169 32 v 02 leak 1 leak_out 0 003 @ 00935987 v 0000 + 07215185 n 0101 + 10251612 n 0101 01 + 01 00 | be leaked; "The news leaked out despite his secrecy" -00936330 32 v 02 betray 1 bewray 0 001 @ 00933821 v 0000 01 + 11 00 | reveal unintentionally; "Her smile betrayed her true feelings" -00936465 32 v 01 confide 0 005 * 00688377 v 0000 @ 00933821 v 0000 + 09954639 n 0101 + 06673435 n 0101 ~ 00936648 v 0000 02 + 15 00 + 22 00 | reveal in private; tell confidentially -00936648 32 v 02 unbosom 0 relieve 0 001 @ 00936465 v 0000 01 + 09 00 | relieve oneself of troubling information -00936763 32 v 01 sell_out a 003 * 00933821 v 0000 @ 00841986 v 0000 + 00750216 n 0101 02 + 09 00 + 22 01 | give information that compromises others -00936913 32 v 01 nark 0 002 @ 00831651 v 0000 + 10345659 n 0101 01 + 02 00 | inform or spy (for the police) -00937023 32 v 01 leak 0 004 > 00935987 v 0000 @ 00933821 v 0000 + 07215185 n 0101 + 10251612 n 0101 03 + 08 00 + 14 00 + 15 00 | tell anonymously; "The news were leaked to the paper" -00937208 32 v 0a spill_the_beans 0 let_the_cat_out_of_the_bag 0 talk 6 tattle 1 blab 0 peach 0 babble 1 sing 1 babble_out 0 blab_out 0 009 @ 00933821 v 0000 + 06805297 n 0802 + 10206173 n 0505 + 06805297 n 0401 + 10692696 n 0402 + 00773299 a 0304 + 07223985 n 0301 ! 00937619 v 0301 $ 00952841 v 0000 03 + 02 00 + 08 0a + 08 09 | divulge confidential information or secrets; "Be careful--his secretary talks" -00937619 32 v 03 keep_quiet 0 shut_one's_mouth 0 keep_one's_mouth_shut 0 001 ! 00937208 v 0103 01 + 02 00 | refrain from divulging sensitive information; keep quiet about confidential information; "Don't tell him any secrets--he cannot keep his mouth shut!" -00937879 32 v 02 spell 0 spell_out 1 004 @ 00945255 v 0000 + 10635149 n 0101 + 06353445 n 0101 ~ 00938146 v 0000 01 + 08 00 | orally recite the letters of or give the spelling of; "How do you spell this word?" "We had to spell out our names for the police officer" -00938146 32 v 01 misspell 0 002 @ 00937879 v 0000 + 06353653 n 0101 01 + 08 00 | spell incorrectly -00938247 32 v 02 rede 1 interpret 0 015 @ 00939277 v 0000 + 01325017 a 0202 + 01325017 a 0201 + 07170753 n 0201 + 05928513 n 0201 + 05766247 n 0201 + 00100543 n 0203 + 05766247 n 0202 ~ 00938621 v 0000 ~ 00938748 v 0000 ~ 00938899 v 0000 ~ 00939035 v 0000 ~ 00939182 v 0000 ~ 00961329 v 0000 ~ 00961586 v 0000 02 + 08 00 + 11 00 | give an interpretation or explanation to -00938621 32 v 02 moralize 1 moralise 1 001 @ 00938247 v 0000 01 + 08 00 | interpret the moral meaning of; "moralize a story" -00938748 32 v 01 deconstruct 0 002 @ 00938247 v 0000 + 05970012 n 0101 01 + 08 00 | interpret (a text or an artwork) by the method of deconstructing -00938899 32 v 02 reinterpret 0 re-explain 0 002 @ 00938247 v 0000 + 00100889 n 0101 01 + 08 00 | interpret from a different viewpoint -00939035 32 v 01 commentate 0 003 @ 00938247 v 0000 + 06765044 n 0102 + 10369528 n 0102 01 + 02 00 | serve as a commentator, as in sportscasting -00939182 32 v 01 misinterpret 0 001 @ 00938247 v 0000 02 + 08 00 + 11 00 | interpret falsely -00939277 32 v 02 explain 0 explicate 0 010 @ 00831651 v 0000 + 07232811 n 0201 + 06743362 n 0201 + 01324683 a 0101 + 07232421 n 0101 ~ 00938247 v 0000 ~ 00939621 v 0000 ~ 00939757 v 0000 ~ 00939857 v 0000 ~ 01033189 v 0000 04 + 08 00 + 09 00 + 11 00 + 26 00 | make plain and comprehensible; "He explained the laws of physics to his students" -00939621 32 v 01 account_for 0 001 @ 00939277 v 0000 02 + 08 00 + 11 00 | give reasons for; "Can you account for all these absences?" -00939757 32 v 01 naturalize 0 001 @ 00939277 v 0000 01 + 08 00 | explain with reference to nature -00939857 32 v 03 clarify 0 clear_up 0 elucidate 0 011 @ 00939277 v 0000 + 01323815 a 0302 + 04820258 n 0302 + 07232655 n 0301 + 07171206 n 0302 + 07171206 n 0101 ! 00940214 v 0101 ~ 00518852 v 0000 ~ 00621058 v 0000 ~ 00955601 v 0000 ~ 00957178 v 0000 02 + 08 00 + 11 00 | make clear and (more) comprehensible; "clarify the mystery surrounding her death" -00940214 32 v 01 obfuscate 0 005 @ 00126264 v 0000 + 05685030 n 0102 + 00274586 n 0101 + 01266152 n 0102 ! 00939857 v 0101 02 + 08 00 + 11 00 | make obscure or unclear -00940384 32 v 05 express 0 verbalize 3 verbalise 3 utter 1 give_tongue_to 0 025 + 00943831 a 0402 + 10743675 n 0401 + 07109847 n 0401 + 07080868 n 0302 + 00943363 a 0101 + 00497148 a 0101 + 07139873 n 0101 ~ 00865387 v 0000 ~ 00903212 v 0000 ~ 00912048 v 0000 ~ 00915041 v 0000 ~ 00915265 v 0000 ~ 00925735 v 0000 ~ 00933403 v 0000 ~ 00941166 v 0000 ~ 00941346 v 0000 ~ 00941446 v 0000 ~ 00941565 v 0000 ~ 00941855 v 0000 ~ 00951769 v 0000 ~ 00979870 v 0000 ~ 00988028 v 0000 ~ 01009240 v 0000 ~ 01064062 v 0000 ~ 01067664 v 0000 01 + 08 00 | articulate; either verbally or with a cry, shout, or noise; "She expressed her anger"; "He uttered a curse" -00941037 32 v 01 swallow 1 001 @ 00941990 v 0000 01 + 08 00 | utter indistinctly; "She swallowed the last words of her speech" -00941166 32 v 01 raise 0 002 @ 00940384 v 0000 ~ 01025455 v 0000 01 + 08 00 | cause to be heard or known; express or utter; "raise a shout"; "raise a protest"; "raise a sad cry" -00941346 32 v 01 breathe 1 001 @ 00940384 v 0000 01 + 08 00 | utter or tell; "not breathe a word" -00941446 32 v 01 drop 0 001 @ 00940384 v 0000 01 + 08 00 | utter with seeming casualness; "drop a hint"; drop names" -00941565 32 v 01 pour_out 0 001 @ 00940384 v 0000 01 + 08 00 | express without restraint; "The woman poured out her frustrations as the judge listened" -00941719 32 v 02 miaou 0 miaow 0 003 @ 00983824 v 0000 + 07386614 n 0204 + 07386614 n 0103 02 + 01 00 + 02 00 | make a cat-like sound -00941855 32 v 01 get_off 4 001 @ 00940384 v 0000 01 + 08 00 | deliver verbally; "He got off the best line I've heard in a long time" -00941990 32 v 06 talk 0 speak 0 utter 0 mouth 0 verbalize 0 verbalise 0 061 @ 00740577 v 0000 + 07080868 n 0602 + 07080868 n 0501 + 10630188 n 0504 + 06721949 n 0406 + 10335801 n 0402 + 05301908 n 0401 + 05302499 n 0401 ^ 01051956 v 0402 + 00943831 a 0302 + 10630188 n 0303 + 07109847 n 0301 + 07130050 n 0201 + 10630188 n 0201 + 07129867 n 0201 ^ 00916123 v 0201 + 07139316 n 0101 + 07135734 n 0101 + 10630188 n 0102 ~ 00626428 v 0000 ~ 00745187 v 0000 ~ 00745383 v 0000 ~ 00747640 v 0000 ~ 00825776 v 0000 ~ 00912473 v 0000 ~ 00915830 v 0000 ~ 00916011 v 0000 ~ 00916123 v 0000 ~ 00916274 v 0000 ~ 00916679 v 0000 ~ 00933239 v 0000 ~ 00941037 v 0000 $ 00943281 v 0000 ~ 00943281 v 0000 ~ 00943436 v 0000 ~ 00943563 v 0000 ~ 00943732 v 0000 ~ 00944788 v 0000 ~ 00981544 v 0000 ~ 00981814 v 0000 ~ 00981944 v 0000 ~ 00982293 v 0000 ~ 00989602 v 0000 ~ 01022906 v 0000 ~ 01036804 v 0000 ~ 01037303 v 0000 ~ 01037498 v 0000 ~ 01041298 v 0000 ~ 01042531 v 0000 ~ 01044114 v 0000 ~ 01044533 v 0000 ~ 01044811 v 0000 ~ 01047596 v 0000 ~ 01048073 v 0000 ~ 01051956 v 0000 ~ 01054186 v 0000 ~ 01056554 v 0000 ~ 01065630 v 0000 ~ 01066775 v 0000 ~ 01067002 v 0000 ~ 01729431 v 0000 02 + 02 00 + 22 00 | express in speech; "She talks a lot of nonsense"; "This depressed patient does not verbalize" -00943281 32 v 02 verbalize 1 verbalise 1 002 $ 00941990 v 0000 @ 00941990 v 0000 01 + 02 00 | be verbose; "This lawyer verbalizes and is rather tedious" -00943436 32 v 01 whiff 0 002 @ 00941990 v 0000 + 11497888 n 0103 01 + 08 00 | utter with a puff of air; "whiff out a prayer" -00943563 32 v 02 talk_of 0 talk_about 1 003 @ 00941990 v 0000 ~ 00813978 v 0000 ~ 00814458 v 0000 02 + 08 00 + 11 00 | discuss or mention; "They spoke of many things" -00943732 32 v 02 blubber 0 blubber_out 0 001 @ 00941990 v 0000 02 + 08 00 + 26 00 | utter while crying -00943837 32 v 03 express 1 show 2 evince 0 016 @ 00928630 v 0000 + 00943363 a 0101 + 00497148 a 0101 ~ 00032778 v 0000 ~ 00929839 v 0000 ~ 00930009 v 0000 ~ 00930368 v 0000 ~ 00930599 v 0000 ~ 00944247 v 0000 ~ 00944415 v 0000 ~ 00944548 v 0000 ~ 00980453 v 0000 ~ 01013367 v 0000 ~ 01067194 v 0000 ~ 01067380 v 0000 ~ 01067512 v 0000 02 + 08 00 + 11 00 | give expression to; "She showed her disappointment" -00944247 32 v 01 give 8 001 @ 00943837 v 0000 01 + 08 00 | manifest or show; "This student gives promise of real creativity"; "The office gave evidence of tampering" -00944415 32 v 01 exude 0 001 @ 00943837 v 0000 01 + 08 00 | make apparent by one's mood or behavior; "She exudes great confidence" -00944548 32 v 03 vent 0 ventilate 0 give_vent 0 004 @ 00943837 v 0000 + 07144190 n 0202 + 01264447 n 0103 + 10747672 n 0101 02 + 08 00 + 22 03 | give expression or utterance to; "She vented her anger"; "The graduates gave vent to cheers" -00944788 32 v 02 drone 0 drone_on 0 003 @ 00941990 v 0000 + 07084560 n 0102 + 07084560 n 0103 01 + 02 00 | talk in a monotonous voice -00944924 32 v 02 deduce 0 infer 0 006 @ 00634472 v 0000 + 05774614 n 0201 + 01296718 a 0101 + 01296474 a 0101 + 05774129 n 0101 + 02710294 a 0101 02 + 08 00 + 26 00 | conclude by reasoning; in logic -00945125 32 v 01 gather 0 001 @ 00634472 v 0000 01 + 26 00 | conclude from evidence; "I gather you have not done your homework" -00945255 32 v 01 recite 0 006 @ 00957679 v 0000 + 07235218 n 0101 ~ 00937879 v 0000 ~ 00945499 v 0000 ~ 00945648 v 0000 ~ 00947857 v 0000 01 + 08 00 | repeat aloud from memory; "she recited a poem"; "The pupil recited his lesson for the day" -00945499 32 v 01 say 8 002 @ 00945255 v 0000 + 07151380 n 0101 01 + 08 00 | recite or repeat a fixed text; "Say grace"; "She said her `Hail Mary'" -00945648 32 v 05 rattle_down 0 rattle_off 0 reel_off 0 spiel_off 0 roll_off 0 001 @ 00945255 v 0000 01 + 08 00 | recite volubly or extravagantly; "He could recite the names of all the chemical elements" -00945853 32 v 02 list 0 name 9 005 @ 00946105 v 0000 + 06481320 n 0101 + 10265891 n 0101 + 06481320 n 0102 + 01011166 n 0101 02 + 08 00 + 11 00 | give or make a list of; name individually; give the names of; "List the states west of the Mississippi" -00946105 32 v 04 enumerate 0 recite 3 itemize 0 itemise 0 014 @ 01026095 v 0000 + 01011166 n 0403 + 06795746 n 0402 + 06482401 n 0401 + 05817845 n 0402 + 03588414 n 0401 + 01011166 n 0302 + 13809920 n 0303 + 06795746 n 0302 + 06482401 n 0301 + 05817845 n 0302 + 03588414 n 0301 + 06490887 n 0101 ~ 00945853 v 0000 02 + 08 00 + 11 00 | specify individually; "She enumerated the many obstacles she had encountered"; "The doctor recited the list of possible side effects of the drug" -00946588 32 v 02 itemize 1 itemise 1 003 @ 00946755 v 0000 + 01011166 n 0203 + 01011166 n 0102 01 + 08 00 | place on a list of items; "itemize one's tax deductions" -00946755 32 v 02 number 1 list 1 010 @ 01026095 v 0000 + 06481320 n 0201 + 06481320 n 0202 + 01011166 n 0201 + 06807198 n 0102 + 06425065 n 0101 + 13582013 n 0101 + 05121418 n 0101 + 06490887 n 0102 ~ 00946588 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | enumerate; "We must number the names of the great mathematicians" -00947077 32 v 06 specify 2 set 0 determine 3 define 1 fix 3 limit 0 011 @ 00674607 v 0000 + 15268857 n 0603 + 05124057 n 0601 + 00684782 a 0302 + 06324475 n 0301 + 05692419 n 0302 + 06199702 n 0202 ~ 00492095 v 0000 ~ 00947439 v 0000 ~ 00947591 v 0000 ~ 00957378 v 0000 01 + 08 00 | decide upon or fix definitely; "fix the variables"; "specify the parameters" -00947439 32 v 01 name 7 003 @ 00947077 v 0000 + 06333653 n 0101 + 07230502 n 0101 01 + 08 00 | mention and identify by name; "name your accomplices!" -00947591 32 v 01 reset 0 002 @ 00947077 v 0000 + 04078955 n 0101 01 + 08 00 | set anew; "They re-set the date on the clock" -00947717 32 v 01 count_down 0 002 @ 00947857 v 0000 + 00653518 n 0101 01 + 02 00 | count backwards; before detonating a bomb, for example -00947857 32 v 01 count 1 005 @ 00945255 v 0000 + 00634586 n 0102 ^ 00947717 v 0101 ^ 01101313 v 0101 ~ 00947717 v 0000 01 + 02 00 | name or recite the numbers in ascending order; "The toddler could count to 100" -00948071 32 v 04 count 0 number 0 enumerate 1 numerate 0 019 @ 00918872 v 0000 + 00301589 a 0404 + 00634586 n 0403 + 00634586 n 0304 + 09904057 n 0302 + 06807198 n 0202 + 06425065 n 0201 + 13582013 n 0201 + 05121418 n 0201 + 00301589 a 0101 + 03117420 n 0101 + 03117199 n 0101 + 03116767 n 0101 + 00634586 n 0102 + 09969491 n 0101 ~ 00801355 v 0000 ~ 00948602 v 0000 ~ 00948707 v 0000 ~ 00949288 v 0000 03 + 08 00 + 09 00 + 11 00 | determine the number or amount of; "Can you count the books on your shelf?"; "Count your change" -00948602 32 v 01 miscount 0 002 @ 00948071 v 0000 + 00653719 n 0101 02 + 02 00 + 08 00 | count wrongly -00948707 32 v 01 census 0 002 @ 00948071 v 0000 + 00653388 n 0101 02 + 08 00 + 09 00 | conduct a census; "They censused the deer in the forest" -00948853 32 v 01 number 3 007 @ 01030132 v 0000 + 06807198 n 0102 + 06425065 n 0101 + 13582013 n 0101 + 05121418 n 0101 + 06490887 n 0102 ~ 00949093 v 0000 02 + 08 00 + 09 00 | give numbers to; "You should number the pages of the thesis" -00949093 32 v 03 foliate 0 paginate 0 page 1 005 @ 00948853 v 0000 + 06256697 n 0301 + 06258680 n 0304 + 06258680 n 0201 + 06256697 n 0201 01 + 08 00 | number the pages of a book or manuscript -00949288 32 v 0b total 0 tot 0 tot_up 0 sum 0 sum_up 3 summate 0 tote_up 0 add 0 add_together 0 tally 0 add_up 0 018 @ 00948071 v 0000 + 00634586 n 0a06 + 00048706 a 0802 + 01417451 a 0802 + 00048129 a 0801 + 00048706 a 0801 + 00872107 n 0802 + 02679142 n 0801 + 07959016 n 0601 + 05861067 n 0601 + 04353803 n 0601 + 04353803 n 0401 + 07959016 n 0401 + 05861067 n 0401 + 00872107 n 0401 + 04353803 n 0102 + 05861067 n 0103 $ 00640828 v 0000 02 + 08 00 + 11 00 | determine the sum of; "Add all the people in this town to those of the neighboring town" -00949841 32 v 02 tally 1 chalk_up 0 003 * 00948071 v 0000 @ 01000214 v 0000 + 00189565 n 0102 01 + 02 00 | keep score, as in games -00949974 32 v 03 remit 1 remand 0 send_back 0 004 @ 00868591 v 0000 + 00122106 n 0103 + 00122106 n 0101 + 00122106 n 0102 02 + 08 00 + 15 00 | refer (a matter or legal case) to another committee or authority or court for decision -00950206 32 v 02 take_a_dare 0 pick_up_the_gauntlet 0 001 @ 02530167 v 0000 01 + 02 00 | be dared to do something and attempt it -00950337 32 v 01 take_a_dare 1 000 01 + 02 00 | be dared to do something and not attempt it -00950431 32 v 03 consider 0 count 3 weigh 0 002 + 05785067 n 0302 + 05822746 n 0103 02 + 08 00 + 26 00 | show consideration for; take into account; "You must consider her age"; "The judge considered the offender's youth and was lenient" -00950670 32 v 01 devoice 0 002 @ 00978549 v 0000 ! 00952182 v 0101 01 + 08 00 | utter with tense vocal chords -00950782 32 v 01 raise f 001 @ 00978549 v 0000 01 + 08 00 | pronounce (vowels) by bringing the tongue closer to the roof of the mouth; "raise your `o'" -00950936 32 v 01 lilt 0 002 @ 00978549 v 0000 + 04992008 n 0101 02 + 02 00 + 26 00 | articulate in a very careful and rhythmic way -00951069 32 v 02 palatalize 0 palatalise 0 001 @ 00978549 v 0000 01 + 08 00 | pronounce a consonant with the tongue against the palate -00951206 32 v 02 nasalize 0 nasalise 0 004 @ 00978549 v 0000 + 07118002 n 0202 + 07118002 n 0101 $ 00951399 v 0000 01 + 08 00 | pronounce with a lowered velum; "She nasalizes all her vowels" -00951399 32 v 02 nasalize 1 nasalise 1 003 $ 00951206 v 0000 @ 00978549 v 0000 + 07118002 n 0101 01 + 02 00 | speak nasally or through the nose; "In this part of the country, people tend to nasalize" -00951601 32 v 02 mispronounce 0 misspeak 0 002 @ 00978549 v 0000 + 07130918 n 0101 01 + 08 00 | pronounce a word incorrectly; "She mispronounces many Latinate words" -00951769 32 v 01 platitudinize 0 001 @ 00940384 v 0000 01 + 02 00 | utter platitudes; "The candidate platitudinized and bored the audience" -00951911 32 v 03 tsk 0 tut 0 tut-tut 0 001 @ 00983824 v 0000 01 + 02 00 | utter `tsk,' `tut,' or `tut-tut,' as in disapproval -00952039 32 v 01 aspirate 0 003 @ 00978549 v 0000 + 07116869 n 0101 + 07116758 n 0101 01 + 08 00 | pronounce with aspiration; of stop sounds -00952182 32 v 04 voice 1 sound 0 vocalize 2 vocalise 2 013 @ 00978549 v 0000 + 07110615 n 0403 + 10743675 n 0403 + 07110615 n 0302 + 10743675 n 0302 + 10599806 n 0303 + 07111047 n 0203 + 07120364 n 0201 + 05202284 n 0101 + 07110615 n 0101 ! 00950670 v 0101 ~ 01049140 v 0000 ~ 01051118 v 0000 01 + 08 00 | utter with vibrating vocal chords -00952524 32 v 01 tell 0 012 @ 00831651 v 0000 ^ 00825648 v 0101 + 07221094 n 0104 ~ 00780575 v 0000 ~ 00921300 v 0000 ~ 00933821 v 0000 ~ 00952841 v 0000 ~ 00954608 v 0000 ~ 00958334 v 0000 ~ 00970873 v 0000 ~ 00974173 v 0000 ~ 02296153 v 0000 01 + 26 00 | let something be known; "Tell them that you will be late" -00952841 32 v 02 spill 0 talk 2 003 $ 00937208 v 0000 @ 00952524 v 0000 + 07135734 n 0201 02 + 02 00 + 08 01 | reveal information; "If you don't oblige me, I'll talk!"; "The former employee spilled all the details" -00953058 32 v 01 relate 0 002 @ 00953216 v 0000 + 07222823 n 0101 04 + 08 00 + 11 00 + 15 00 + 26 00 | give an account of; "The witness related the events" -00953216 32 v 04 tell 1 narrate 0 recount 0 recite 1 016 @ 00831651 v 0000 + 07221756 n 0401 + 07220773 n 0402 + 07222823 n 0303 + 00498912 a 0201 + 06397307 n 0201 + 07221094 n 0202 + 07220773 n 0201 + 10345804 n 0201 + 07221094 n 0104 + 10345804 n 0103 + 07222823 n 0102 ~ 00953058 v 0000 ~ 00953923 v 0000 ~ 00954038 v 0000 ~ 00954137 v 0000 04 + 08 00 + 11 00 + 15 00 + 14 01 | narrate or give a detailed account of; "Tell what happened"; "The father told a story to his child" -00953700 32 v 01 spin 0 002 @ 00772967 v 0000 ~ 01033942 v 0000 02 + 08 00 + 11 00 | twist and turn so as to give an intended interpretation; "The President's spokesmen had to spin the story to make it less embarrassing" -00953923 32 v 01 crack 0 002 @ 00953216 v 0000 + 06767777 n 0102 01 + 08 00 | tell spontaneously; "crack a joke" -00954038 32 v 01 yarn 0 002 @ 00953216 v 0000 + 07220773 n 0103 01 + 02 00 | tell or spin a yarn -00954137 32 v 02 rhapsodize 1 rhapsodise 1 003 @ 00953216 v 0000 + 06382590 n 0201 + 06382590 n 0101 01 + 02 00 | recite a rhapsody -00954271 32 v 01 narrate 1 003 @ 00831651 v 0000 + 07221094 n 0102 + 07220773 n 0101 02 + 02 00 + 08 00 | provide commentary for a film, for example -00954422 32 v 02 tell 3 evidence 2 004 @ 00833199 v 0000 + 06733939 n 0201 + 06805297 n 0103 ^ 02193194 v 0108 01 + 02 00 | give evidence; "he was telling on all his former colleague" -00954608 32 v 04 publicize 0 publicise 0 air 0 bare 0 009 @ 00952524 v 0000 + 10490699 n 0203 + 10490699 n 0102 + 01101329 n 0102 ~ 00954908 v 0000 ~ 00955033 v 0000 ~ 00967625 v 0000 ~ 00968211 v 0000 ~ 00973056 v 0000 03 + 08 00 + 11 00 + 26 00 | make public; "She aired her opinions on welfare" -00954908 32 v 01 hype 0 001 @ 00954608 v 0000 02 + 08 00 + 11 00 | publicize in an exaggerated and often misleading manner -00955033 32 v 01 bulletin 0 002 @ 00954608 v 0000 + 06682290 n 0101 02 + 08 00 + 26 00 | make public by bulletin -00955148 32 v 02 mean 1 intend 0 009 @ 00928630 v 0000 + 06605897 n 0201 + 06601327 n 0101 + 05919866 n 0101 ~ 00836236 v 0000 ~ 00932324 v 0000 ~ 00932636 v 0000 ~ 00955472 v 0000 ~ 01026975 v 0000 02 + 08 00 + 09 00 | mean or intend to express or convey; "You never understand what I mean!"; "what do his words intend?" -00955472 32 v 01 aim 0 001 @ 00955148 v 0000 01 + 08 00 | direct (a remark) toward an intended goal; "She wanted to aim a pun" -00955601 32 v 09 elaborate 0 lucubrate 0 expatiate 0 exposit 1 enlarge 4 flesh_out 0 expand a expound 0 dilate a 018 @ 00939857 v 0000 + 07137950 n 0901 + 01324870 a 0801 + 09618760 n 0801 + 06742426 n 0802 + 07172756 n 0701 + 00371314 n 0701 ! 00243900 v 0706 + 07172756 n 0502 + 06742173 n 0401 + 07139151 n 0301 + 06377133 n 0201 + 07172756 n 0103 + 00371487 n 0102 ~ 00956250 v 0000 ~ 01001294 v 0000 ~ 01021128 v 0000 ~ 01021973 v 0000 04 + 02 00 + 08 00 + 11 00 + 22 00 | add details, as to an account or idea; clarify the meaning of and discourse in a learned way, usually in writing; "She elaborated on the main ideas in her dissertation" -00956250 32 v 01 detail 0 005 @ 00955601 v 0000 + 07137807 n 0101 + 13809920 n 0101 + 05817845 n 0101 + 07202812 n 0103 01 + 08 00 | provide details for -00956405 32 v 09 embroider 0 pad 0 lard 0 embellish 0 aggrandize 0 aggrandise 0 blow_up 0 dramatize 0 dramatise 0 007 @ 00839834 v 0000 + 07290278 n 0801 + 00373544 n 0602 + 00373544 n 0501 + 07172979 n 0401 + 07172979 n 0102 ~ 00489496 v 0000 02 + 08 00 + 31 00 | add details to -00956687 32 v 03 qualify 1 characterize 0 characterise 0 011 @ 00609683 v 0000 + 07201562 n 0302 + 07201804 n 0307 + 06694796 n 0301 + 05849284 n 0302 + 07201562 n 0201 + 05849284 n 0202 + 05849284 n 0101 + 04723816 n 0101 ~ 00651991 v 0000 ~ 02144644 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | describe or portray the character or the qualities or peculiarities of; "You can characterize his behavior as that of an egotist"; "This poem can be characterized as a lament for a dead lover" -00957178 32 v 01 disambiguate 0 003 @ 00939857 v 0000 + 07171513 n 0101 + 06572204 n 0101 02 + 08 00 + 11 00 | state unambiguously or remove ambiguities from; "Can you disambiguate this statement?" -00957378 32 v 01 define 0 003 @ 00947077 v 0000 + 06744396 n 0101 ~ 00957549 v 0000 02 + 08 00 + 11 00 | give a definition for the meaning of a word; "Define `sadness'" -00957549 32 v 01 redefine 0 002 @ 00957378 v 0000 + 06745628 n 0101 01 + 08 00 | give a new or different definition of (a word) -00957679 32 v 02 repeat 1 echo 0 007 @ 00983824 v 0000 + 07200290 n 0201 ~ 00945255 v 0000 ~ 00957945 v 0000 ~ 00958078 v 0000 ~ 00958174 v 0000 ~ 00959178 v 0000 03 + 08 00 + 11 00 + 26 00 | to say again or imitate; "followers echoing the cries of their leaders" -00957945 32 v 01 cuckoo 0 002 @ 00957679 v 0000 + 01823013 n 0101 01 + 08 00 | repeat monotonously, like a cuckoo repeats his call -00958078 32 v 01 reecho 0 001 @ 00957679 v 0000 02 + 08 00 + 11 00 | repeat back like an echo -00958174 32 v 01 parrot 0 002 @ 00957679 v 0000 + 10401331 n 0101 03 + 08 00 + 11 00 + 26 00 | repeat mindlessly; "The students parroted the teacher's words" -00958334 32 v 06 repeat 0 reiterate 0 ingeminate 0 iterate 0 restate 0 retell 0 017 @ 00952524 v 0000 + 06768901 n 0501 + 01964632 a 0401 + 13504173 n 0401 + 13503908 n 0401 + 01019129 n 0401 + 01964632 a 0202 + 01019372 n 0202 + 07342049 n 0101 + 01018630 n 0101 ~ 00958823 v 0000 ~ 00959027 v 0000 ~ 00959367 v 0000 ~ 00959827 v 0000 ~ 00961736 v 0000 ~ 01007924 v 0000 ~ 01023259 v 0000 03 + 08 00 + 11 00 + 26 00 | to say, state, or perform again; "She kept reiterating her request" -00958823 32 v 01 perseverate 0 002 @ 00958334 v 0000 + 01021579 n 0103 01 + 02 00 | psychology: repeat a response after the cessation of the original stimulus; "The subjects in this study perseverated" -00959027 32 v 01 ditto 0 002 @ 00958334 v 0000 + 06821279 n 0102 01 + 08 00 | repeat an action or statement; "The next speaker dittoed her argument" -00959178 32 v 02 regurgitate 0 reproduce 0 002 @ 00957679 v 0000 + 05762671 n 0101 01 + 08 00 | repeat after memorization; "For the exam, you must be able to regurgitate the information" -00959367 32 v 02 harp 0 dwell 0 001 @ 00958334 v 0000 01 + 22 00 | come back to; "Don't dwell on the past"; "She is always harping on the same old things" -00959524 32 v 04 hark_back 0 return 0 come_back 0 recall 0 002 @ 00931467 v 0000 ~ 00959714 v 0000 01 + 22 00 | go back to something earlier; "This harks back to a previous remark of his" -00959714 32 v 02 recur 0 go_back 0 001 @ 00959524 v 0000 01 + 22 00 | return in thought or speech to something -00959827 32 v 03 translate 0 interpret 1 render 4 011 @ 00958334 v 0000 + 10212501 n 0201 + 06575932 n 0201 + 06536389 n 0101 + 10725280 n 0101 + 10212501 n 0102 ~ 00960369 v 0000 ~ 00960453 v 0000 ~ 00960961 v 0000 ~ 00961243 v 0000 $ 02728142 v 0000 03 + 02 00 + 08 00 + 09 00 | restate (words) from one language into another language; "I have to translate when my in-laws from Austria visit the U.S."; "Can you interpret the speech of the visiting dignitaries?"; "She rendered the French poem into English"; "He translates for the U.N." -00960369 32 v 01 retranslate 0 001 @ 00959827 v 0000 01 + 08 00 | translate again -00960453 32 v 01 mistranslate 0 002 @ 00959827 v 0000 + 06347122 n 0101 01 + 08 00 | translate incorrectly -00960562 32 v 01 dub 1 004 * 00959827 v 0000 @ 00960734 v 0000 ;c 06613686 n 0000 + 03252959 n 0101 01 + 08 00 | provide (movies) with a soundtrack of a foreign language -00960734 32 v 02 synchronize 0 synchronise 0 004 @ 00126264 v 0000 ;c 06613686 n 0000 + 13845239 n 0102 ~ 00960562 v 0000 01 + 08 00 | make (motion picture sound) exactly simultaneous with the action; "synchronize this film" -00960961 32 v 01 gloss 0 003 @ 00959827 v 0000 + 06420781 n 0102 + 06744000 n 0101 01 + 08 00 | provide an interlinear translation of a word or phrase -00961114 32 v 01 phrase 1 001 @ 00735571 v 0000 01 + 08 00 | divide, combine, or mark into phrases; "phrase a musical passage" -00961243 32 v 01 Latinize 0 001 @ 00959827 v 0000 01 + 08 00 | translate into Latin -00961329 32 v 03 gloss 1 comment 1 annotate 0 005 @ 00938247 v 0000 + 06763273 n 0301 + 06762711 n 0201 + 06420781 n 0102 + 06744000 n 0101 01 + 08 00 | provide interlinear explanations for words or phrases; "He annotated on what his teacher had written" -00961586 32 v 01 commentate b 004 @ 00938247 v 0000 + 06762711 n 0102 + 06762711 n 0101 + 09942431 n 0101 02 + 02 00 + 22 00 | make a commentary on -00961736 32 v 03 paraphrase 0 rephrase 0 reword 0 005 @ 00958334 v 0000 + 06429145 n 0301 + 06429145 n 0203 + 06429316 n 0101 ~ 00961947 v 0000 02 + 08 00 + 09 00 | express the same message in different words -00961947 32 v 01 translate 6 001 @ 00961736 v 0000 01 + 08 00 | express, as in simple and less technical language; "Can you translate the instructions in this manual for a layman?"; "Is there a need to translate the psychiatrist's remarks?" -00962190 32 v 02 lexicalize 0 lexicalise 0 002 @ 00980453 v 0000 + 13507472 n 0101 01 + 08 00 | make or coin into a word or accept a new word into the lexicon of a language; "The concept expressed by German `Gemuetlichkeit' is not lexicalized in English" -00962447 32 v 02 talk 1 speak 1 022 @ 00740577 v 0000 + 07110457 n 0201 ^ 02542141 v 0201 + 00496938 a 0102 + 07139316 n 0101 + 07135734 n 0101 + 07135734 n 0102 ~ 00781000 v 0000 ~ 00814621 v 0000 ~ 00828754 v 0000 ~ 00828901 v 0000 ~ 00963015 v 0000 ~ 00963155 v 0000 ~ 00963283 v 0000 ~ 00963452 v 0000 ~ 00964237 v 0000 ~ 00964365 v 0000 ~ 00964478 v 0000 ~ 00964694 v 0000 ~ 01037910 v 0000 ~ 01041954 v 0000 ~ 01042432 v 0000 05 + 01 00 + 02 00 + 04 00 + 22 00 + 27 00 | exchange thoughts; talk with; "We often talk business"; "Actions talk louder than words" -00963015 32 v 01 talk_down 1 001 @ 00962447 v 0000 01 + 12 00 | speak in a condescending manner, as if to a child; "He talks down to her" -00963155 32 v 01 spiel 0 002 @ 00962447 v 0000 + 07013400 n 0101 02 + 02 00 + 22 00 | speak at great length (about something) -00963283 32 v 02 dogmatize 1 dogmatise 1 005 @ 00962447 v 0000 + 10023656 n 0201 + 10023656 n 0101 + 06790042 n 0101 + 05960464 n 0101 01 + 02 00 | speak dogmatically -00963452 32 v 01 cheek 0 003 @ 00962447 v 0000 + 06721813 n 0102 + 04838210 n 0105 01 + 09 00 | speak impudently to -00963570 32 v 02 speak 2 talk 3 008 @ 00740577 v 0000 + 07135734 n 0201 + 10630188 n 0202 + 05650820 n 0102 + 07129867 n 0101 ~ 00963872 v 0000 ~ 00963961 v 0000 ~ 00964110 v 0000 02 + 02 00 + 08 00 | use language; "the baby talks already"; "the prisoner won't speak"; "they speak a strange dialect" -00963872 32 v 01 run_on 0 001 @ 00963570 v 0000 01 + 02 00 | talk or narrate at length -00963961 32 v 01 smatter 0 002 @ 00963570 v 0000 + 05806498 n 0101 01 + 08 00 | speak with spotty or superficial knowledge; "She smatters Russian" -00964110 32 v 01 slang 2 003 @ 00963570 v 0000 + 07157273 n 0101 + 07159467 n 0101 01 + 02 00 | use slang or vulgar language -00964237 32 v 01 level 1 001 @ 00962447 v 0000 01 + 22 00 | talk frankly with; lay it on the line; "I have to level with you" -00964365 32 v 01 talk_turkey 0 001 @ 00962447 v 0000 01 + 02 00 | discuss frankly, often in a business context -00964478 32 v 04 monologuize 0 monologuise 0 soliloquize 0 soliloquise 0 006 @ 00962447 v 0000 + 07011529 n 0301 + 07160752 n 0301 + 07156819 n 0101 + 07011387 n 0101 + 07160752 n 0102 01 + 02 00 | talk to oneself -00964694 32 v 02 converse 0 discourse 1 007 @ 00962447 v 0000 + 07133701 n 0101 ~ 00773432 v 0000 ~ 00808855 v 0000 ~ 00809248 v 0000 ~ 00809453 v 0000 ~ 01038666 v 0000 02 + 02 00 + 22 00 | carry on a conversation -00964911 32 v 02 broach 0 initiate 0 002 @ 00813978 v 0000 ~ 01033527 v 0000 01 + 08 00 | bring up a topic for discussion -00965035 32 v 03 report 0 describe 1 account 2 007 @ 00831651 v 0000 + 06738281 n 0302 + 00732682 a 0201 + 07201365 n 0201 + 07218470 n 0101 + 07217924 n 0101 + 06681551 n 0101 06 + 02 00 + 09 00 + 11 00 + 15 00 + 22 00 + 26 00 | to give an account or representation of in words; "Discreet Italian police described it in a manner typically continental" -00965390 32 v 01 report 1 001 @ 00831651 v 0000 02 + 09 00 + 15 00 | make known to the authorities; "One student reported the other to the principal" -00965542 32 v 01 report 2 001 @ 00907147 v 0000 02 + 09 00 + 15 00 | complain about; make a charge against; "I reported her to the supervisor" -00965687 32 v 01 report 3 004 @ 00974367 v 0000 ~ 00966152 v 0000 ~ 00966492 v 0000 ~ 00966640 v 0000 01 + 02 00 | announce one's presence; "I report to work every day at 9 o'clock" -00965871 32 v 02 announce 2 declare 5 009 @ 01009240 v 0000 + 00686890 a 0201 + 06726158 n 0204 + 02626487 a 0101 + 06726158 n 0101 + 06746580 n 0101 + 09795124 n 0101 + 09795334 n 0101 ~ 00861560 v 0000 01 + 08 00 | announce publicly or officially; "The President declared war" -00966152 32 v 02 check_in 0 sign_in 0 003 @ 00965687 v 0000 + 00141669 n 0101 ! 00966492 v 0101 03 + 02 00 + 09 00 + 22 00 | announce one's arrival, e.g. at hotels or airports -00966330 32 v 03 clock_in 0 punch_in 0 clock_on 0 003 @ 01000214 v 0000 ! 00966640 v 0202 ! 00966640 v 0101 02 + 02 00 + 22 00 | register one's arrival at work -00966492 32 v 01 check_out 0 003 @ 00965687 v 0000 ! 00966152 v 0101 + 15181282 n 0101 02 + 02 00 + 22 00 | announce one's departure from a hotel -00966640 32 v 03 clock_out 0 punch_out 0 clock_off 0 003 @ 00965687 v 0000 ! 00966330 v 0202 ! 00966330 v 0101 02 + 02 00 + 22 00 | register one's departure from work -00966809 32 v 01 report 4 002 @ 00974367 v 0000 + 07218470 n 0101 02 + 08 00 + 26 00 | announce as the result of an investigation or experience or finding; "Dozens of incidents of wife beatings are reported daily in this city"; "The team reported significant advances in their research" -00967098 32 v 02 report d cover 2 008 @ 00831651 v 0000 + 06683784 n 0201 + 07217924 n 0101 + 06681551 n 0101 + 10521662 n 0101 + 06683784 n 0103 + 06683784 n 0102 $ 00967455 v 0000 03 + 08 00 + 09 00 + 22 01 | be responsible for reporting the details of, as in journalism; "Snow reported on China in the 1950's"; "The cub reporter covered New York City" -00967455 32 v 01 cover c 002 $ 00967098 v 0000 @ 00662589 v 0000 01 + 08 00 | maintain a check on; especially by patrolling; "The second officer covered the top floor" -00967625 32 v 05 publish 0 bring_out 0 put_out 0 issue 0 release 0 013 @ 00954608 v 0000 + 04073208 n 0501 + 01103614 n 0401 + 06596978 n 0401 + 08055150 n 0401 + 06589574 n 0101 + 01103614 n 0102 + 01101958 n 0101 + 10491575 n 0101 + 10491309 n 0101 + 08062623 n 0101 + 01101958 n 0102 ~ 00968038 v 0000 02 + 08 00 + 11 00 | prepare and issue for public distribution or sale; "publish a magazine or newspaper" -00968038 32 v 01 edit 0 001 @ 00967625 v 0000 01 + 08 00 | supervise the publication of; "The same family has been editing the influential newspaper for almost 100 years" -00968211 32 v 0b circulate 0 circularize 0 circularise 0 distribute 0 disseminate 0 propagate 0 broadcast 0 spread 0 diffuse 0 disperse 0 pass_around 0 027 > 00969873 v 0000 @ 00954608 v 0000 + 00468362 a 0a03 + 00368592 n 0a01 + 00368592 n 0a02 + 00468362 a 0902 + 00368592 n 0904 + 00367976 n 0801 + 05088324 n 0802 + 07445896 n 0801 + 06253140 n 0804 + 06619428 n 0701 + 06254007 n 0701 + 06253518 n 0601 + 10483138 n 0601 + 00468362 a 0504 + 06253140 n 0501 + 05088056 n 0501 + 00368592 n 0503 + 10483138 n 0502 + 07250339 n 0301 + 00368302 n 0101 ~ 00968962 v 0000 ~ 00969370 v 0000 $ 00969873 v 0000 ~ 00970215 v 0000 ~ 01746359 v 0000 01 + 08 00 | cause to become widely known; "spread information"; "circulate a rumor"; "broadcast the news" -00968962 32 v 01 podcast 0 001 @ 00968211 v 0000 02 + 02 00 + 08 00 | distribute (multimedia files) over the internet for playback on a mobile device or a personal computer -00969137 32 v 01 satellite 0 002 @ 00973056 v 0000 + 04137444 n 0101 01 + 08 00 | broadcast or disseminate via satellite -00969260 32 v 01 sportscast 0 002 @ 00973056 v 0000 + 10639637 n 0102 01 + 02 00 | broadcast a sports event -00969370 32 v 01 sow 0 002 @ 00968211 v 0000 + 10629020 n 0101 01 + 08 00 | introduce into an environment; "sow suspicion or beliefs" -00969506 32 v 02 telecast 0 televise 0 008 @ 00973056 v 0000 ;c 06277280 n 0000 + 06277280 n 0201 + 04404412 n 0201 + 10697420 n 0101 + 06277280 n 0102 + 06622595 n 0101 ~ 00969769 v 0000 01 + 08 00 | broadcast via television; "The Royal wedding was televised" -00969769 32 v 01 colorcast 0 002 @ 00969506 v 0000 ;c 06277280 n 0000 01 + 08 00 | broadcast in color -00969873 32 v 03 go_around 0 spread 2 circulate 1 004 $ 00968211 v 0000 @ 01835496 v 0000 + 05088324 n 0202 + 07445896 n 0201 01 + 01 00 | become widely known and passed on; "the rumor spread"; "the story went around in the office" -00970107 32 v 01 bandy_about 0 001 @ 00813978 v 0000 01 + 08 00 | discuss casually; "bandy about an idea" -00970215 32 v 06 popularize 0 popularise 0 vulgarize 0 vulgarise 0 generalize 4 generalise 4 011 @ 00968211 v 0000 + 00273077 n 0404 + 10454752 n 0404 + 01593079 a 0303 + 00273077 n 0303 + 10454752 n 0303 + 00273077 n 0202 + 10454752 n 0202 + 00273077 n 0101 + 10454752 n 0101 $ 00578508 v 0000 01 + 08 00 | cater to popular taste to make popular and present to the general public; bring into general or common use; "They popularized coffee in Washington State"; "Relativity Theory was vulgarized by these authors" -00970732 32 v 02 propagandize 0 propagandise 0 003 @ 00976653 v 0000 + 06674542 n 0201 + 06674542 n 0101 01 + 08 00 | spread by propaganda -00970873 32 v 02 propagandize 1 propagandise 1 003 @ 00952524 v 0000 + 06674542 n 0201 + 06674542 n 0101 01 + 09 00 | subject to propaganda -00971015 32 v 01 call 0 006 $ 00691516 v 0000 @ 01029852 v 0000 ~ 00971324 v 0000 $ 01028748 v 0000 ~ 01031109 v 0000 $ 01067995 v 0000 02 + 05 00 + 14 00 | ascribe a quality to or give a name of a common noun that reflects a quality; "He called me a bastard"; "She called her children lazy and ungrateful" -00971324 32 v 02 misname 0 miscall 0 001 @ 00971015 v 0000 01 + 09 00 | assign in incorrect name to; "These misnamed philanthropists" -00971460 32 v 01 tout 2 003 @ 00971650 v 0000 + 10718349 n 0101 + 10718349 n 0102 01 + 05 00 | advertize in strongly positive terms; "This product was touted as a revolutionary invention" -00971650 32 v 03 pronounce 0 label 1 judge 0 012 @ 00822367 v 0000 + 00874067 n 0301 + 07202579 n 0201 + 07272172 n 0201 + 06727616 n 0101 ~ 00904046 v 0000 ~ 00906367 v 0000 ~ 00971460 v 0000 ~ 00971999 v 0000 ~ 00972191 v 0000 ~ 00972608 v 0000 ~ 01050313 v 0000 02 + 05 00 + 14 00 | pronounce judgment on; "They labeled him unfit to work here" -00971999 32 v 02 rule 0 find 1 004 @ 00971650 v 0000 + 01191975 n 0201 + 01191158 n 0102 $ 00715239 v 0000 02 + 05 00 + 22 00 | decide on and make a declaration about; "find someone guilty" -00972191 32 v 01 qualify 2 005 @ 00971650 v 0000 + 04717139 n 0101 + 04728068 n 0101 ! 00972608 v 0101 ~ 00972457 v 0000 02 + 09 00 + 24 00 | pronounce fit or able; "She was qualified to run the marathon"; "They nurses were qualified to administer the injections" -00972457 32 v 01 capacitate 2 003 @ 00972191 v 0000 ;c 08441203 n 0000 + 05203397 n 0101 02 + 09 00 + 10 00 | make legally capable or qualify in law -00972608 32 v 01 disqualify 0 006 @ 00971650 v 0000 + 04722574 n 0101 + 01078086 n 0101 ! 00972191 v 0101 ~ 00972867 v 0000 ~ 02480588 v 0000 02 + 09 00 + 24 00 | declare unfit; "She was disqualified for the Olympics because she was a professional athlete" -00972867 32 v 01 recuse 0 005 @ 00972608 v 0000 ;c 08441203 n 0000 + 01614558 a 0101 + 01080062 n 0101 + 01080062 n 0102 01 + 09 00 | disqualify oneself (as a judge) in a particular case -00973056 32 v 05 air 1 send 3 broadcast 1 beam 0 transmit 0 016 > 00973728 v 0000 @ 00954608 v 0000 ;c 06264176 n 0000 + 06251781 n 0501 + 04472726 n 0501 + 06792645 n 0402 + 06619428 n 0301 + 06254007 n 0301 + 09875786 n 0301 + 04472726 n 0202 + 06255354 n 0101 ~ 00969137 v 0000 ~ 00969260 v 0000 ~ 00969506 v 0000 ~ 00973530 v 0000 ~ 00973888 v 0000 03 + 08 00 + 11 00 + 21 00 | broadcast over the airwaves, as in radio or television; "We cannot air this X-rated song" -00973530 32 v 01 interrogate 9 003 @ 00973056 v 0000 ;c 06264176 n 0000 + 07280599 n 0101 02 + 08 00 + 11 00 | transmit (a signal) for setting off an appropriate response, as in telecommunication -00973728 32 v 01 air 2 003 ;c 06264176 n 0000 + 06255354 n 0101 ~ 00424337 v 0000 02 + 01 00 + 04 00 | be broadcast; "This show will air Saturdays at 2 P.M." -00973888 32 v 02 rerun 0 rebroadcast 0 003 @ 00973056 v 0000 ;c 06264176 n 0000 + 06620063 n 0101 01 + 08 00 | broadcast again, as of a film -00974031 32 v 01 sign_off 0 002 @ 02680814 v 0000 ;c 06264176 n 0000 01 + 02 00 | cease broadcasting; get off the air; as of radio stations -00974173 32 v 05 announce 1 annunciate 0 harbinger 0 foretell 2 herald 0 004 @ 00952524 v 0000 + 06802571 n 0504 + 06802571 n 0301 + 02714139 n 0201 02 + 08 00 + 11 00 | foreshadow or presage -00974367 32 v 02 announce 0 denote 2 015 @ 00831651 v 0000 + 02626487 a 0101 + 09795124 n 0101 + 09795334 n 0101 ~ 00842429 v 0000 ~ 00902807 v 0000 ~ 00965687 v 0000 ~ 00966809 v 0000 ~ 00974786 v 0000 ~ 00975202 v 0000 ~ 00975334 v 0000 ~ 00975584 v 0000 ~ 00975902 v 0000 ~ 00991683 v 0000 ~ 02180529 v 0000 04 + 08 00 + 10 00 + 11 00 + 26 00 | make known; make an announcement; "She denoted her feelings clearly" -00974786 32 v 02 cry 2 blazon_out 0 003 @ 00974367 v 0000 + 09977520 n 0101 + 10719132 n 0102 01 + 08 00 | proclaim or announce in public; "before we had newspapers, a town crier would cry the news"; "He cried his merchandise in the market square" -00975036 32 v 01 call 3 003 @ 00983824 v 0000 + 06796642 n 0102 $ 00783523 v 0000 01 + 01 00 | utter a characteristic note or cry; "bluejays called to one another" -00975202 32 v 02 trump 0 trump_out 0 001 @ 00974367 v 0000 02 + 08 00 + 26 00 | proclaim or announce with or as if with a fanfare -00975334 32 v 02 blare_out 0 blat_out 0 001 @ 00974367 v 0000 01 + 08 00 | announce loudly -00975427 32 v 01 announce 7 002 @ 01026095 v 0000 + 09795334 n 0101 02 + 09 00 + 10 00 | give the names of; "He announced the winners of the spelling bee" -00975584 32 v 01 call_out 0 003 @ 00974367 v 0000 $ 00912048 v 0000 ~ 00975733 v 0000 02 + 08 00 + 09 00 | call out loudly, as of names or numbers -00975733 32 v 01 count_off 0 001 @ 00975584 v 0000 01 + 08 00 | call in turn from right to left or from back to front numbers that determine some position or function -00975902 32 v 04 advertise 1 publicize 1 advertize 1 publicise 1 008 @ 00974367 v 0000 + 10490699 n 0401 + 10490699 n 0403 + 10490699 n 0201 + 10490699 n 0202 + 01101329 n 0202 ~ 00976224 v 0000 ~ 00976365 v 0000 04 + 08 00 + 11 00 + 26 02 + 26 01 | call attention to; "Please don't advertise the fact that he has AIDS" -00976224 32 v 01 headline 0 002 @ 00975902 v 0000 + 06344461 n 0101 02 + 08 00 + 11 00 | publicize widely or highly, as if with a headline -00976365 32 v 01 ballyhoo 0 002 @ 00975902 v 0000 + 07248507 n 0101 02 + 08 00 + 26 00 | advertize noisily or blatantly -00976487 32 v 01 plug 0 003 @ 00976653 v 0000 + 10482220 n 0103 + 07248507 n 0104 01 + 08 00 | make a plug for; praise the qualities or in order to sell or promote -00976653 32 v 04 advertise 0 advertize 0 promote 0 push 0 014 $ 02589576 v 0000 @ 00856824 v 0000 + 10482220 n 0301 + 07247071 n 0301 + 07248801 n 0203 + 09773962 n 0202 + 07248801 n 0102 + 09773962 n 0101 + 07248801 n 0104 + 01101329 n 0101 ~ 00970732 v 0000 ~ 00976487 v 0000 ~ 00977153 v 0000 ~ 02589576 v 0000 02 + 08 00 + 11 00 | make publicity for; try to sell (a product); "The salesman is aggressively pushing the new computer model"; "The company is heavily advertizing their new laptops" -00977153 32 v 01 bill 0 002 @ 00976653 v 0000 + 06793426 n 0105 02 + 08 00 + 09 00 | advertise especially by posters or placards; "He was billed as the greatest tenor since Caruso" -00977336 32 v 03 proclaim 0 exclaim 1 promulgate 0 010 @ 01010118 v 0000 + 06726939 n 0301 + 06746580 n 0302 + 01266491 n 0302 + 00842041 a 0202 + 07102802 n 0202 + 01266491 n 0101 ~ 00977689 v 0000 ~ 00977871 v 0000 ~ 00978055 v 0000 02 + 08 00 + 26 00 | state or announce; "`I am not a Communist,' he exclaimed"; "The King will proclaim an amnesty" -00977689 32 v 01 declare 6 001 @ 00977336 v 0000 01 + 02 00 | proclaim one's support, sympathy, or opinion for or against; "His wife declared at once for moving to the West Coast" -00977871 32 v 01 trumpet 0 002 @ 00977336 v 0000 + 10171219 n 0102 01 + 08 00 | proclaim on, or as if on, a trumpet; "Liberals like to trumpet their opposition to the death penalty" -00978055 32 v 01 clarion 0 002 @ 00977336 v 0000 + 03037899 n 0101 01 + 08 00 | proclaim on, or as if on, a clarion -00978173 32 v 01 proclaim 2 003 @ 01029500 v 0000 + 06726158 n 0102 + 01266491 n 0101 02 + 05 00 + 14 00 | declare formally; declare someone to be something; of titles; "He was proclaimed King" -00978369 32 v 04 articulate 1 enunciate 0 vocalize 1 vocalise 1 004 @ 01009240 v 0000 + 07132415 n 0201 + 02643446 a 0102 + 07073208 n 0101 01 + 08 00 | express or state clearly -00978549 32 v 06 pronounce 1 articulate 0 enounce 0 sound_out 1 enunciate 1 say 2 033 * 00941990 v 0000 + 07132415 n 0501 + 02643446 a 0202 + 02643446 a 0201 + 07073208 n 0201 + 07131854 n 0201 + 09811712 n 0201 + 07128692 n 0101 + 07128946 n 0101 ~ 00745078 v 0000 ~ 00950670 v 0000 ~ 00950782 v 0000 ~ 00950936 v 0000 ~ 00951069 v 0000 ~ 00951206 v 0000 ~ 00951399 v 0000 ~ 00951601 v 0000 ~ 00952039 v 0000 ~ 00952182 v 0000 ~ 00979411 v 0000 ~ 00979667 v 0000 ~ 00979988 v 0000 ~ 00980176 v 0000 ~ 00980339 v 0000 ~ 00982178 v 0000 ~ 00983333 v 0000 ~ 00983635 v 0000 ~ 01055146 v 0000 ~ 01055266 v 0000 ~ 01055404 v 0000 ~ 01055558 v 0000 ~ 01055661 v 0000 ~ 01055978 v 0000 01 + 08 00 | speak, pronounce, or utter in a certain way; "She pronounces French words in a funny way"; "I cannot say `zip wire'"; "Can the child sound out this complicated word?" -00979411 32 v 01 retroflex 0 002 @ 00978549 v 0000 + 07132226 n 0102 02 + 02 00 + 08 00 | articulate (a consonant) with the tongue curled back against the palate; "Indian accents can be characterized by the fact that speakers retroflex their consonants" -00979667 32 v 02 subvocalize 0 subvocalise 0 002 @ 00978549 v 0000 + 10671467 n 0101 02 + 02 00 + 08 00 | articulate without making audible sounds; "she was reading to herself and merely subvocalized" -00979870 32 v 01 say f 001 @ 00940384 v 0000 01 + 08 00 | utter aloud; "She said `Hello' to everyone in the office" -00979988 32 v 02 syllabize 0 syllabise 0 002 @ 00978549 v 0000 + 06304671 n 0101 01 + 08 00 | utter with distinct articulation of each syllable; "The poet syllabized the verses he read" -00980176 32 v 01 drawl 0 003 @ 00978549 v 0000 + 10032884 n 0101 + 07131741 n 0101 02 + 02 00 + 08 00 | lengthen and slow down or draw out; "drawl one's vowels" -00980339 32 v 03 round 0 labialize 0 labialise 0 001 @ 00978549 v 0000 01 + 08 00 | pronounce with rounded lips -00980453 32 v 05 give_voice 0 formulate 0 word 0 phrase 0 articulate 2 015 @ 00943837 v 0000 + 07073208 n 0501 + 07154330 n 0405 + 06316048 n 0401 + 07081739 n 0403 + 06738162 n 0301 + 06286395 n 0301 + 07081739 n 0301 + 07069948 n 0201 + 00940842 n 0203 ~ 00784727 v 0000 ~ 00962190 v 0000 ~ 00980908 v 0000 ~ 00981083 v 0000 ~ 00981276 v 0000 02 + 08 00 + 04 01 | put into words or an expression; "He formulated his concerns to the board of trustees" -00980908 32 v 02 dogmatize 0 dogmatise 0 005 @ 00980453 v 0000 + 10023656 n 0201 + 10023656 n 0101 + 06790042 n 0101 + 05960464 n 0101 02 + 08 00 + 26 00 | state as a dogma -00981083 32 v 02 formularize 0 formularise 0 006 @ 00980453 v 0000 + 06816935 n 0101 + 06732013 n 0101 + 06731802 n 0101 + 05846932 n 0102 + 05667613 n 0105 01 + 08 00 | express as a formula -00981276 32 v 05 frame 0 redact 0 cast 0 put 0 couch 0 004 @ 00980453 v 0000 + 13913566 n 0301 + 00931608 n 0201 + 03391301 n 0101 01 + 21 00 | formulate in a particular style or language; "I wouldn't put it that way"; "She cast her request in very polite language" -00981544 32 v 04 bumble 0 stutter 0 stammer 0 falter 0 006 @ 00941990 v 0000 + 01063350 n 0403 + 10646780 n 0301 + 14402922 n 0301 + 10646780 n 0202 + 14402922 n 0202 02 + 02 00 + 08 00 | speak haltingly; "The speaker faltered when he saw his opponent enter the room" -00981814 32 v 01 rasp 0 003 @ 00941990 v 0000 + 07130774 n 0101 + 07130774 n 0102 02 + 02 00 + 26 00 | utter in a grating voice -00981944 32 v 05 blurt_out 0 blurt 0 blunder_out 0 blunder 0 ejaculate 0 003 @ 00941990 v 0000 + 07125958 n 0501 + 10048001 n 0501 02 + 08 00 + 26 00 | utter impulsively; "He blurted out the secret"; "He blundered his stupid ideas" -00982178 32 v 01 lisp 0 003 @ 00978549 v 0000 + 14402763 n 0101 + 10265801 n 0101 01 + 02 00 | speak with a lisp -00982293 32 v 03 tone 2 inflect 0 modulate 0 007 @ 00941990 v 0000 + 07083958 n 0301 + 07084166 n 0302 + 07083958 n 0202 + 07083732 n 0202 + 04987620 n 0104 + 04986883 n 0101 01 + 08 00 | vary the pitch of one's speech -00982514 32 v 01 inflect 1 007 @ 00169806 v 0000 + 13803782 n 0102 + 13803782 n 0101 ~ 00982779 v 0000 ~ 00982913 v 0000 ~ 00983123 v 0000 ~ 01071916 v 0000 01 + 08 00 | change the form of a word in accordance as required by the grammatical rules of the language -00982779 32 v 01 compare 0 001 @ 00982514 v 0000 01 + 08 00 | to form the comparative or superlative form on an adjective or adverb -00982913 32 v 01 decline 1 003 @ 00982514 v 0000 + 13804203 n 0101 + 08006511 n 0101 01 + 08 00 | inflect for number, gender, case, etc., "in many languages, speakers decline nouns, pronouns, and adjectives" -00983123 32 v 01 conjugate 0 004 @ 00982514 v 0000 + 13804085 n 0101 + 08006868 n 0101 + 08006741 n 0101 01 + 08 00 | add inflections showing person, number, gender, tense, aspect, etc.; "conjugate the verb" -00983333 32 v 03 stress 1 accent 0 accentuate 1 008 @ 00978549 v 0000 + 07155661 n 0303 + 06822198 n 0301 + 07131511 n 0301 + 07085375 n 0303 + 07085786 n 0301 + 07085375 n 0203 + 07085375 n 0101 01 + 08 00 | put stress on; utter with an accent; "In Farsi, you accent the last syllable of each word" -00983635 32 v 04 vocalize 0 vocalise 0 vowelize 0 vowelise 0 002 @ 00978549 v 0000 + 07112550 n 0301 01 + 08 00 | pronounce as a vowel; "between two consonants, this liquid is vowelized" -00983824 32 v 04 utter 2 emit 0 let_out 2 let_loose 0 065 + 00943831 a 0102 + 10743675 n 0101 + 07109847 n 0101 ~ 00738747 v 0000 ~ 00776846 v 0000 ~ 00857517 v 0000 ~ 00857653 v 0000 ~ 00857784 v 0000 ~ 00909896 v 0000 ~ 00913065 v 0000 ~ 00941719 v 0000 ~ 00951911 v 0000 ~ 00957679 v 0000 ~ 00975036 v 0000 ~ 00985219 v 0000 ~ 00985334 v 0000 ~ 00985464 v 0000 ~ 00985593 v 0000 ~ 00985706 v 0000 ~ 00985800 v 0000 ~ 00985923 v 0000 ~ 00986074 v 0000 ~ 00986173 v 0000 ~ 00986311 v 0000 ~ 00986417 v 0000 ~ 00986586 v 0000 ~ 00986750 v 0000 ~ 00986897 v 0000 ~ 00989869 v 0000 ~ 01042725 v 0000 ~ 01043231 v 0000 ~ 01043768 v 0000 ~ 01045073 v 0000 ~ 01045318 v 0000 ~ 01045419 v 0000 ~ 01045719 v 0000 ~ 01047381 v 0000 ~ 01047745 v 0000 ~ 01048330 v 0000 ~ 01048718 v 0000 ~ 01052301 v 0000 ~ 01052562 v 0000 ~ 01052671 v 0000 ~ 01052782 v 0000 ~ 01053098 v 0000 ~ 01053221 v 0000 ~ 01053339 v 0000 ~ 01053771 v 0000 ~ 01054399 v 0000 ~ 01054553 v 0000 ~ 01054694 v 0000 ~ 01054849 v 0000 ~ 01055018 v 0000 ~ 01056369 v 0000 ~ 01058426 v 0000 ~ 01059743 v 0000 ~ 01059945 v 0000 ~ 01060065 v 0000 ~ 01060198 v 0000 ~ 01061704 v 0000 ~ 01061799 v 0000 ~ 01064401 v 0000 ~ 01067816 v 0000 ~ 01197208 v 0000 ~ 02562901 v 0000 02 + 08 00 + 11 00 | express audibly; utter sounds (not necessarily words); "She let out a big heavy sigh"; "He uttered strange sounds that nobody could understand" -00985219 32 v 01 shoot 5 001 @ 00983824 v 0000 01 + 08 00 | utter fast and forcefully; "She shot back an answer" -00985334 32 v 01 gurgle 0 001 @ 00983824 v 0000 01 + 08 00 | utter with a gurgling sound; "`Help,' the stabbing victim gurgled" -00985464 32 v 01 cry 3 002 @ 00983824 v 0000 + 07382572 n 0101 01 + 01 00 | utter a characteristic sound; "The cat was crying" -00985593 32 v 01 nasale 0 001 @ 00983824 v 0000 01 + 08 00 | speak in a nasal voice; "`Come here,' he nasaled" -00985706 32 v 01 bite_out 0 001 @ 00983824 v 0000 01 + 08 00 | utter; "She bit out a curse" -00985800 32 v 01 sigh 1 003 @ 00983824 v 0000 + 07393756 n 0101 + 07129602 n 0101 02 + 08 00 + 26 00 | utter with a sigh -00985923 32 v 01 troat 0 001 @ 00983824 v 0000 01 + 01 00 | emit a cry intended to attract other animals; used especially of animals at rutting time -00986074 32 v 01 lift 2 001 @ 00983824 v 0000 01 + 08 00 | make audible; "He lifted a war whoop" -00986173 32 v 01 pant 0 003 @ 00983824 v 0000 + 00837098 n 0102 + 00834135 n 0101 01 + 08 00 | utter while panting, as if out of breath -00986311 32 v 01 volley 0 001 @ 00983824 v 0000 01 + 08 00 | utter rapidly; "volley a string of curses" -00986417 32 v 01 break_into 0 001 @ 00983824 v 0000 02 + 08 00 + 11 00 | express or utter spontaneously; "break into a yodel"; "break into a song"; "break into tears" -00986586 32 v 01 heave 0 001 @ 00983824 v 0000 01 + 08 00 | utter a sound, as with obvious effort; "She heaved a deep sigh when she saw the list of things to do" -00986750 32 v 01 chorus 0 003 @ 00983824 v 0000 + 08187988 n 0101 + 07379695 n 0101 01 + 08 00 | utter in unison; "`yes,' the children chorused" -00986897 32 v 02 sputter 0 splutter 0 004 @ 00983824 v 0000 + 07130183 n 0202 + 07394814 n 0206 + 07130183 n 0101 01 + 08 00 | utter with a spitting sound, as if in a rage -00987071 32 v 03 describe 0 depict 1 draw 0 007 @ 01001294 v 0000 + 07201804 n 0204 + 07201804 n 0205 + 07201365 n 0101 ~ 00987345 v 0000 ~ 00989084 v 0000 ~ 01006421 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | give a description of; "He drew an elaborate plan of attack" -00987345 32 v 01 represent c 003 @ 00987071 v 0000 ~ 00987597 v 0000 ~ 00987870 v 0000 02 + 08 00 + 09 00 | describe or present, usually with respect to a particular quality; "He represented this book as an example of the Russian 19th century novel" -00987597 32 v 02 symbolize 1 symbolise 1 003 @ 00987345 v 0000 + 06602324 n 0202 + 06602324 n 0101 02 + 02 00 + 08 00 | represent or identify by using a symbol; use symbols; "The poet symbolizes love in this poem"; "These painters believed that artists should symbolize" -00987870 32 v 02 actualize 0 actualise 0 003 @ 00987345 v 0000 + 01933731 a 0101 + 00043765 a 0101 02 + 08 00 + 11 00 | represent or describe realistically -00988028 32 v 01 represent 0 006 @ 00940384 v 0000 + 01981699 a 0101 ~ 00836705 v 0000 ~ 00988287 v 0000 ~ 00988890 v 0000 ~ 02740352 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | serve as a means of expressing something; "The flower represents a young girl" -00988287 32 v 02 dramatize 1 dramatise 1 012 @ 00988028 v 0000 + 00899292 n 0202 + 07290278 n 0201 + 07007945 n 0202 + 06376154 n 0201 + 04626705 n 0201 + 00899292 n 0101 + 07290278 n 0101 + 07007945 n 0102 + 06376154 n 0101 + 04626705 n 0101 ~ 00988692 v 0000 02 + 08 00 + 11 00 | represent something in a dramatic manner; "These events dramatize the lack of social responsibility among today's youth" -00988692 32 v 02 overdramatize 0 overdramatise 0 001 @ 00988287 v 0000 02 + 08 00 + 11 00 | present in an overly dramatic manner; "She is overdramatizing her child's failure in the physics class" -00988890 32 v 01 portray 0 004 @ 00988028 v 0000 + 07202391 n 0102 + 07202391 n 0103 + 07202391 n 0101 02 + 09 00 + 10 00 | portray in words; "The book portrays the actor as a selfish person" -00989084 32 v 01 delineate 0 002 @ 00987071 v 0000 + 07201804 n 0103 02 + 08 00 + 11 00 | describe in vivid detail -00989201 32 v 02 address 2 speak 3 009 * 00963570 v 0000 + 07238694 n 0202 + 07241837 n 0203 + 09769345 n 0101 + 07238694 n 0101 ~ 00767918 v 0000 ~ 00768062 v 0000 ~ 00768265 v 0000 ~ 00990249 v 0000 02 + 09 00 + 02 02 | give a speech to; "The chairman addressed the board of trustees" -00989490 32 v 01 take_the_floor 0 001 * 00989201 v 0000 01 + 02 00 | rise in order to make a speech or motion -00989602 32 v 02 deliver 0 present 2 005 @ 00941990 v 0000 + 07167415 n 0201 + 06891022 n 0201 + 07071483 n 0103 ~ 00990008 v 0000 01 + 08 00 | deliver (a speech, oration, or idea); "The commencement speaker presented a forceful speech that impressed the students" -00989869 32 v 01 deliver 2 001 @ 00983824 v 0000 01 + 08 00 | utter (an exclamation, noise, etc.); "The students delivered a cry of joy" -00990008 32 v 01 speechify 0 004 @ 00989602 v 0000 + 10380672 n 0105 + 06713930 n 0102 + 07238694 n 0102 01 + 02 00 | make speeches; hold forth, or harangue with a certain degree of formality; "These ministers speechify on every occasion" -00990249 32 v 01 harangue 0 003 @ 00989201 v 0000 + 10159714 n 0101 + 07242912 n 0101 01 + 09 00 | deliver a harangue to; address forcefully -00990392 32 v 01 approach 0 004 @ 00990655 v 0000 + 00134060 a 0101 + 07164349 n 0103 ~ 00781903 v 0000 01 + 09 00 | make advances to someone, usually with a proposal or suggestion; "I was approached by the President to serve as his adviser in foreign matters" -00990655 32 v 03 address 1 accost 1 come_up_to 0 004 @ 01849221 v 0000 + 09769345 n 0101 ~ 00897241 v 0000 ~ 00990392 v 0000 01 + 09 00 | speak to someone -00990812 32 v 02 address 3 direct 2 007 @ 01029852 v 0000 + 09769345 n 0101 + 08491027 n 0101 + 06787150 n 0101 ~ 00991025 v 0000 ~ 00991151 v 0000 ~ 00991264 v 0000 01 + 21 00 | put an address on (an envelope) -00991025 32 v 02 misdirect 0 misaddress 0 001 @ 00990812 v 0000 01 + 08 00 | put a wrong address on; "misdirect the letter" -00991151 32 v 01 instrument 0 002 @ 00990812 v 0000 + 06479665 n 0104 01 + 09 00 | address a legal document to -00991264 32 v 01 re-address 0 001 @ 00990812 v 0000 01 + 08 00 | put a new address on (an envelope), as for forwarding -00991385 32 v 02 enlighten 0 edify 0 003 @ 00829107 v 0000 + 05987835 n 0201 + 05986395 n 0101 02 + 09 00 + 10 00 | make understand; "Can you enlighten me--I don't understand this proposal" -00991577 32 v 01 disabuse 0 001 @ 00831651 v 0000 01 + 18 00 | free somebody (from an erroneous belief) -00991683 32 v 01 post 3 005 @ 00974367 v 0000 + 09854510 n 0102 + 06793426 n 0101 + 06793426 n 0102 ~ 00991900 v 0000 01 + 08 00 | publicize with, or as if with, a poster; "I'll post the news on the bulletin board" -00991900 32 v 02 placard 0 bill 1 003 @ 00991683 v 0000 + 06793426 n 0205 + 06793426 n 0103 01 + 08 00 | publicize or announce by placards -00992041 32 v 03 gesticulate 0 gesture 0 motion 0 018 @ 00740577 v 0000 + 06876309 n 0302 + 06876309 n 0201 + 00334509 n 0201 + 06876309 n 0101 + 00334509 n 0101 + 06876771 n 0101 ~ 00008299 v 0000 ~ 00027705 v 0000 ~ 00033955 v 0000 ~ 00034115 v 0000 ~ 00861929 v 0000 ~ 00867231 v 0000 ~ 00898434 v 0000 ~ 00898568 v 0000 ~ 00898691 v 0000 ~ 00992518 v 0000 ~ 01041415 v 0000 02 + 02 00 + 27 00 | show, express or direct through movement; "He gestured his desire to leave" -00992518 32 v 01 shake 0 002 @ 00992041 v 0000 + 06632097 n 0102 01 + 08 00 | shake (a body part) to communicate a greeting, feeling, or cognitive state; "shake one's head"; "She shook her finger at the naughty students"; "The old enemies shook hands"; "Don't shake your fist at me!" -00992804 32 v 02 telepathize 0 telepathise 0 002 @ 00740577 v 0000 + 07255998 n 0101 01 + 02 00 | communicate nonverbally by telepathy; "some people believe they can telepathize with others around the world" -00993014 32 v 01 write 0 016 $ 01007027 v 0000 @ 00740577 v 0000 + 10801291 n 0101 + 00614224 n 0101 ~ 00993453 v 0000 ~ 00993608 v 0000 ~ 00993754 v 0000 ~ 00995838 v 0000 ~ 00996485 v 0000 ~ 01004692 v 0000 ~ 01005209 v 0000 ~ 01006056 v 0000 ~ 01006239 v 0000 ~ 01020356 v 0000 ~ 01064799 v 0000 ~ 01068134 v 0000 06 + 08 00 + 09 00 + 15 00 + 26 00 + 02 01 + 14 01 | communicate or express by writing; "Please write to me every week" -00993453 32 v 01 write_in 0 001 @ 00993014 v 0000 01 + 02 00 | write to an organization; "Many listeners wrote in after the controversial radio program" -00993608 32 v 01 style 4 002 @ 00993014 v 0000 + 06789215 n 0101 01 + 08 00 | make consistent with certain rules of style; "style a manuscript" -00993754 32 v 02 apostrophize 0 apostrophise 0 003 @ 00993014 v 0000 + 06841987 n 0201 + 06841987 n 0101 01 + 08 00 | use an apostrophe -00993892 32 v 01 encode 0 004 @ 00115157 v 0000 + 00615887 n 0101 ! 00994454 v 0101 ~ 00994076 v 0000 02 + 08 00 + 11 00 | convert information into code; "encode pictures digitally" -00994076 32 v 07 code 0 encipher 0 cipher 0 cypher 0 encrypt 0 inscribe 4 write_in_code 0 010 @ 00993892 v 0000 + 00615887 n 0502 + 06355307 n 0402 + 06254239 n 0402 + 06254239 n 0301 + 06355307 n 0301 + 06355894 n 0101 + 06353934 n 0101 + 10481268 n 0103 + 00614489 n 0102 01 + 08 00 | convert ordinary language into code; "We should encode the message for security reasons" -00994454 32 v 03 decode 0 decrypt 0 decipher 1 007 @ 00995838 v 0000 + 00617059 n 0303 + 09995398 n 0302 + 09995253 n 0301 + 00617059 n 0202 + 00617059 n 0101 ! 00993892 v 0101 01 + 08 00 | convert code into ordinary language -00994682 32 v 02 transliterate 0 transcribe 0 004 @ 00995838 v 0000 + 06349828 n 0101 ~ 00995525 v 0000 ~ 00995716 v 0000 01 + 08 00 | rewrite in a different script; "The Sanskrit text had to be transliterated" -00994895 32 v 01 transcribe 2 003 @ 00995838 v 0000 + 10724132 n 0101 + 10723984 n 0101 01 + 08 00 | make a phonetic transcription of; "The anthropologist transcribed the sentences of the native informant" -00995103 32 v 01 transcribe 1 003 @ 01020356 v 0000 + 06349597 n 0101 + 10723984 n 0101 01 + 08 00 | write out from speech, notes, etc.; "Transcribe the oral history of this tribe" -00995286 32 v 01 notate 0 003 @ 01020356 v 0000 + 06808493 n 0101 + 00615182 n 0101 01 + 08 00 | put into notation, as of music or choreography; "Nowadays, you can notate an entire ballet; in the old days, the steps had to be memorized" -00995525 32 v 04 Romanize 0 Romanise 0 Latinize 1 Latinise 0 001 @ 00994682 v 0000 01 + 08 00 | write in the Latin alphabet; "many shops in Japan now carry neon signs with Romanized names" -00995716 32 v 01 braille 0 003 @ 00994682 v 0000 + 10862281 n 0101 + 06362792 n 0101 01 + 08 00 | transcribe in braille -00995838 32 v 01 rewrite 0 008 @ 00993014 v 0000 + 06364149 n 0101 + 10513120 n 0104 + 06428792 n 0101 ~ 00994454 v 0000 ~ 00994682 v 0000 ~ 00994895 v 0000 ~ 00996102 v 0000 01 + 08 00 | write differently; alter the writing of; "The student rewrote his thesis" -00996102 32 v 01 revise 0 008 @ 00995838 v 0000 + 06428976 n 0103 + 06428976 n 0101 + 00399393 n 0101 + 10513120 n 0103 + 06428792 n 0102 + 06428976 n 0102 ~ 00996328 v 0000 01 + 08 00 | make revisions in; "revise a thesis" -00996328 32 v 01 amend 0 004 @ 00996102 v 0000 + 00232620 a 0101 + 06723635 n 0101 + 01250101 n 0101 01 + 08 00 | make amendments to; "amend the document" -00996485 32 v 02 sign 2 subscribe 2 008 @ 00993014 v 0000 + 00615659 n 0201 + 06404582 n 0101 + 10597234 n 0101 ^ 00966152 v 0102 ^ 02343816 v 0101 ^ 02343816 v 0102 ~ 00996810 v 0000 03 + 02 00 + 08 00 + 22 00 | mark with one's signature; write one's name (on); "She signed the letter and sent it off"; "Please sign here" -00996810 32 v 01 rubricate 0 001 @ 00996485 v 0000 02 + 02 00 + 08 00 | sign with a mark instead of a name -00996919 32 v 01 undersign 0 001 @ 00889229 v 0000 01 + 08 00 | sign at the bottom of (a document) -00997020 32 v 01 ink 0 001 @ 00889229 v 0000 01 + 08 00 | append one's signature to; "They inked the contract" -00997133 32 v 02 autograph 0 inscribe 0 003 @ 00889229 v 0000 + 06404907 n 0101 + 06407094 n 0101 01 + 08 00 | mark with one's signature; "The author autographed his book" -00997307 32 v 01 initial 0 003 * 00806502 v 0000 @ 00889229 v 0000 + 06830997 n 0101 01 + 08 00 | mark with one's initials -00997432 32 v 01 countersign 0 003 @ 00889229 v 0000 + 06405020 n 0102 + 06405020 n 0101 02 + 02 00 + 08 00 | add one's signature to after another's to attest authenticity; "You must countersign on this line of the contract" -00997659 32 v 01 execute 0 001 @ 00889229 v 0000 01 + 08 00 | sign in the presence of witnesses; "The President executed the treaty" -00997794 32 v 02 endorse 0 indorse 0 007 @ 00889229 v 0000 + 10057271 n 0202 + 06405198 n 0202 + 06405198 n 0101 + 10057271 n 0101 ~ 00998030 v 0000 ~ 00998182 v 0000 01 + 08 00 | sign as evidence of legal transfer; "endorse cheques" -00998030 32 v 02 cosign 0 co-sign 0 002 @ 00997794 v 0000 + 09613853 n 0101 01 + 08 00 | sign and endorse (another person's signature), as for a loan -00998182 32 v 01 visa 0 002 @ 00997794 v 0000 + 06687883 n 0101 01 + 08 00 | provide (a passport) with a visa -00998294 32 v 01 dot 0 002 @ 01691057 v 0000 + 13911872 n 0102 02 + 02 00 + 22 00 | make a dot or dots -00998399 32 v 02 record 1 tape 0 013 @ 01000214 v 0000 + 04391838 n 0201 + 03708036 n 0203 + 04391838 n 0203 + 03924069 n 0103 + 04063373 n 0101 + 00910203 n 0101 ! 00999815 v 0101 ~ 00998886 v 0000 ~ 00999270 v 0000 ~ 00999429 v 0000 ~ 01756416 v 0000 ~ 01756563 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | register electronically; "They recorded her singing" -00998762 32 v 02 demagnetize 0 demagnetise 0 001 @ 00999815 v 0000 02 + 08 00 + 11 00 | erase (a magnetic storage device) -00998886 32 v 02 write 3 save 4 003 @ 00998399 v 0000 ;c 06128570 n 0000 ~ 00999079 v 0000 02 + 08 00 + 11 00 | record data on a computer; "boot-up instructions are written on the hard disk" -00999079 32 v 01 overwrite 0 002 @ 00998886 v 0000 ;c 06128570 n 0000 01 + 08 00 | write new data on top of existing data and thus erase the previously existing data; "overwrite that file" -00999270 32 v 01 tape_record 0 004 @ 00998399 v 0000 ;c 00910203 n 0000 + 04393095 n 0101 + 04391838 n 0102 02 + 02 00 + 08 00 | record with a tape recorder -00999429 32 v 01 prerecord 0 002 @ 00998399 v 0000 ;c 00910203 n 0000 02 + 08 00 + 09 00 | record before presentation, as of a broadcast -00999568 32 v 01 accession 0 002 @ 01000214 v 0000 ;c 00910203 n 0000 01 + 08 00 | make a record of additions to a collection, such as a library -00999715 32 v 01 post 0 001 @ 01000214 v 0000 01 + 08 00 | display, as of records in sports games -00999815 32 v 02 erase 0 delete 0 005 @ 00179311 v 0000 ;c 00910203 n 0000 + 03294833 n 0101 ! 00998399 v 0101 ~ 00998762 v 0000 01 + 08 00 | wipe out digitally or magnetically recorded information; "Who erased the files form my hard disk?" -01000058 32 v 01 ring_up 0 001 @ 01000214 v 0000 01 + 08 00 | to perform and record a sale on a cash register; "Sally rang up Eve's purchase of tomatoes" -01000214 32 v 03 record 0 enter 4 put_down 5 029 @ 02225492 v 0000 ;c 00910203 n 0000 + 06503724 n 0201 + 13403643 n 0101 + 06647206 n 0101 + 10516874 n 0103 + 04063373 n 0101 ~ 00949841 v 0000 ~ 00966330 v 0000 ~ 00998399 v 0000 ~ 00999568 v 0000 ~ 00999715 v 0000 ~ 01000058 v 0000 ~ 01000878 v 0000 ~ 01001008 v 0000 ~ 01001136 v 0000 ~ 01001643 v 0000 ~ 01002297 v 0000 ~ 01002481 v 0000 ~ 01002618 v 0000 ~ 01002740 v 0000 ~ 01003049 v 0000 ~ 01003249 v 0000 ~ 01004062 v 0000 ~ 01004550 v 0000 ~ 01065877 v 0000 ~ 01711965 v 0000 ~ 02471690 v 0000 ~ 02498136 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 26 00 | make a record of; set down in permanent form -01000878 32 v 01 manifest 1 001 @ 01000214 v 0000 01 + 08 00 | record in a ship's manifest; "each passenger must be manifested" -01001008 32 v 01 inscribe 3 002 @ 01000214 v 0000 + 00615011 n 0101 01 + 08 00 | write, engrave, or print as a lasting record -01001136 32 v 01 chronicle 0 003 @ 01000214 v 0000 + 09921168 n 0101 + 06514093 n 0103 01 + 08 00 | record in chronological order; make a historical record -01001294 32 v 03 set_forth 0 expound 1 exposit 0 004 @ 00955601 v 0000 + 06742426 n 0301 ~ 00987071 v 0000 ~ 01001467 v 0000 01 + 08 00 | state; "set forth one's reasons" -01001467 32 v 01 premise 0 001 @ 01001294 v 0000 01 + 08 00 | set forth beforehand, often as an explanation; "He premised these remarks so that his readers might understand" -01001643 32 v 02 file 0 file_away 0 005 @ 01000214 v 0000 + 06508816 n 0101 + 03337140 n 0101 + 10087574 n 0103 + 00811491 n 0101 01 + 08 00 | place in a container for keeping records; "File these bills, please" -01001857 32 v 02 file 2 register 3 009 @ 02471690 v 0000 ;c 08441203 n 0000 + 13412321 n 0201 + 06507041 n 0201 + 06507041 n 0202 + 03337140 n 0101 + 06508816 n 0101 + 07167954 n 0101 ~ 01002161 v 0000 01 + 08 00 | record in a public office or in a court of law; "file for divorce"; "file a complaint" -01002161 32 v 01 trademark 0 001 @ 01001857 v 0000 01 + 08 00 | register the trademark of; "The company trademarked their new gadget" -01002297 32 v 01 document 0 003 @ 01000214 v 0000 + 06616806 n 0101 + 06588326 n 0102 01 + 08 00 | record in detail; "The parents documented every step of their child's development" -01002481 32 v 01 log 0 003 @ 01000214 v 0000 + 06503884 n 0101 ^ 01002618 v 0101 01 + 08 00 | enter into a log, as on ships and planes -01002618 32 v 02 log_up 0 clock_up 1 001 @ 01000214 v 0000 01 + 11 00 | record a distance travelled; on planes and cars -01002740 32 v 03 film 0 shoot 1 take 2 009 @ 01000214 v 0000 ;c 06613686 n 0000 + 00908133 n 0301 + 03338821 n 0101 + 06262567 n 0101 + 06613686 n 0102 + 00907919 n 0101 $ 01003249 v 0000 ~ 01003741 v 0000 03 + 08 00 + 09 00 + 02 01 | make a film or photograph of something; "take a scene"; "shoot a movie" -01003049 32 v 02 videotape 0 tape 3 006 @ 01000214 v 0000 ;c 06613686 n 0000 + 03708036 n 0203 + 04391838 n 0201 + 04534520 n 0101 + 04534359 n 0101 03 + 02 00 + 08 00 + 09 00 | record on videotape -01003249 32 v 03 photograph 0 snap 1 shoot 0 008 $ 01002740 v 0000 @ 01000214 v 0000 ;c 00903559 n 0000 + 04248607 n 0202 + 03925226 n 0101 + 10426749 n 0101 ~ 01003588 v 0000 ~ 01003885 v 0000 03 + 02 00 + 08 00 + 09 00 | record on photographic film; "I photographed the scene of the accident"; "She snapped a picture of the President" -01003588 32 v 01 retake 0 003 @ 01003249 v 0000 ;c 00903559 n 0000 + 00908292 n 0101 02 + 08 00 + 09 00 | photograph again; "Please retake that scene" -01003741 32 v 01 reshoot 0 002 @ 01002740 v 0000 ;c 06613686 n 0000 02 + 08 00 + 09 00 | shoot again; "We had to reshoot that scene 24 times" -01003885 32 v 01 x-ray 0 003 @ 01003249 v 0000 ;c 00903559 n 0000 + 00901316 n 0101 02 + 08 00 + 09 00 | take an x-ray of something or somebody; "The doctor x-rayed my chest" -01004062 32 v 02 score 0 mark 0 005 @ 01000214 v 0000 + 06817782 n 0201 + 04681387 n 0203 + 03722007 n 0201 ~ 00800460 v 0000 02 + 08 00 + 11 00 | make underscoring marks -01004235 32 v 02 underline 3 underscore 3 003 @ 00508032 v 0000 + 06801418 n 0201 + 06801418 n 0102 01 + 08 00 | draw a line or lines underneath to call attention to -01004403 32 v 01 quote 7 002 @ 00190023 v 0000 + 06844199 n 0102 01 + 08 00 | put quote marks around; "Here the author is quoting his colleague" -01004550 32 v 01 notch 0 003 @ 01000214 v 0000 + 00387897 n 0101 + 03832405 n 0101 02 + 08 00 + 11 00 | notch a surface to record something -01004692 32 v 02 type 0 typewrite 0 012 @ 00993014 v 0000 + 04505036 n 0201 + 06402565 n 0202 + 04504486 n 0101 + 06825120 n 0101 + 10735173 n 0101 + 06402565 n 0101 ~ 01005049 v 0000 ~ 01005373 v 0000 ~ 01005548 v 0000 ~ 01005654 v 0000 ~ 01005782 v 0000 02 + 02 00 + 08 00 | write by means of a keyboard with types; "type the acceptance letter, please" -01005049 32 v 01 shift 4 001 @ 01004692 v 0000 01 + 02 00 | use a shift key on a keyboard; "She could not shift so all her letters are written in lower case" -01005209 32 v 01 handwrite 0 003 @ 00993014 v 0000 + 06403393 n 0101 + 00614730 n 0101 01 + 08 00 | write by hand; "You should handwrite the note to your guests" -01005373 32 v 01 backspace 0 002 @ 01004692 v 0000 + 02771004 n 0103 01 + 02 00 | hit the backspace key on a computer or typewriter keyboard; "To erase, you must backspace" -01005548 32 v 01 double-space 0 001 @ 01004692 v 0000 01 + 08 00 | type with a full space between lines -01005654 32 v 01 triple-space 0 002 @ 01004692 v 0000 + 06402970 n 0101 01 + 08 00 | type with two empty spaces between lines -01005782 32 v 01 touch-type 0 002 @ 01004692 v 0000 + 10717772 n 0101 01 + 02 00 | type without looking at the keyboard -01005904 32 v 01 spell_out 0 001 @ 01021973 v 0000 03 + 08 00 + 11 00 + 26 00 | make explicit; specify in detail; "You should spell out your demands" -01006056 32 v 02 jot_down 0 jot 0 004 @ 00993014 v 0000 + 06505799 n 0202 + 06415688 n 0201 + 06505799 n 0201 02 + 08 00 + 21 00 | write briefly or hurriedly; write a short note of -01006239 32 v 02 scribble 0 scrabble 0 004 @ 00993014 v 0000 + 04155310 n 0202 + 04155310 n 0101 + 10564660 n 0102 01 + 08 00 | write down quickly without much attention to detail -01006421 32 v 03 sketch 0 outline 0 adumbrate 0 005 @ 00987071 v 0000 + 06468951 n 0201 + 06469694 n 0101 + 07203016 n 0101 ~ 01006699 v 0000 01 + 08 00 | describe roughly or briefly or give the main points or summary of; "sketch the outline of the book"; "outline his ideas" -01006699 32 v 01 block_out 0 001 @ 01006421 v 0000 01 + 08 00 | indicate roughly; "We sketched out our plan" -01006810 32 v 01 correspond 0 004 * 00993014 v 0000 + 09966554 n 0101 + 06623614 n 0101 ~ 01007027 v 0000 02 + 02 00 + 22 00 | exchange messages; "My Russian pen pal and I have been corresponding for several years" -01007027 32 v 02 write 8 drop_a_line 0 004 $ 00993014 v 0000 $ 01031966 v 0000 @ 01006810 v 0000 + 10801291 n 0101 02 + 09 00 + 27 00 | communicate (with) in writing; "Write her soon, please!" -01007222 32 v 03 cable 0 telegraph 0 wire 0 008 @ 00790703 v 0000 ;c 06274921 n 0000 + 06622709 n 0302 + 10784015 n 0301 + 10697519 n 0202 + 10697519 n 0201 + 04400499 n 0201 + 06275095 n 0101 05 + 02 00 + 09 00 + 14 00 + 15 00 + 26 00 | send cables, wires, or telegrams -01007495 32 v 01 radio 0 004 @ 00740577 v 0000 + 04041544 n 0101 + 04043733 n 0104 + 06277135 n 0101 02 + 14 00 + 15 00 | transmit messages via radio waves; "he radioed for help" -01007676 32 v 03 fax 0 telefax 0 facsimile 0 004 @ 00790703 v 0000 + 03316274 n 0301 + 03316105 n 0301 + 03316105 n 0103 05 + 02 00 + 08 00 + 09 00 + 14 00 + 15 00 | send something via a facsimile machine; "Can you fax me the report right away?" -01007924 32 v 04 sum_up 0 summarize 0 summarise 0 resume 0 011 @ 00958334 v 0000 + 06469694 n 0403 + 06467445 n 0302 + 06467007 n 0301 + 06467445 n 0201 + 06467007 n 0201 ~ 01008288 v 0000 ~ 01008437 v 0000 ~ 01008546 v 0000 ~ 01008903 v 0000 $ 02752695 v 0000 03 + 02 00 + 08 00 + 11 00 | give a summary (of); "he summed up his results"; "I will now summarize" -01008288 32 v 01 abstract 0 004 @ 01007924 v 0000 + 09755086 n 0101 + 06468951 n 0103 + 09755086 n 0102 02 + 08 00 + 11 00 | give an abstract (of) -01008437 32 v 01 precis 0 002 @ 01007924 v 0000 + 06468951 n 0104 02 + 08 00 + 11 00 | make a summary (of) -01008546 32 v 01 docket 0 003 @ 01007924 v 0000 ;c 08441203 n 0000 + 06485593 n 0101 01 + 08 00 | make a summary or abstract of a legal document and inscribe it in a list -01008719 32 v 01 docket 1 003 @ 01494310 v 0000 ;c 08441203 n 0000 + 06485593 n 0101 01 + 08 00 | place on the docket for legal action; "Only 5 of the 120 cases docketed were tried" -01008903 32 v 02 recapitulate 0 recap 0 004 @ 01007924 v 0000 + 06469377 n 0202 + 06469377 n 0101 ~ 01009097 v 0000 02 + 02 00 + 08 00 | summarize briefly; "Let's recapitulate the main ideas" -01009097 32 v 03 retrograde 0 rehash 0 hash_over 0 002 @ 01008903 v 0000 + 06635759 n 0201 01 + 08 00 | go back over; "retrograde arguments" -01009240 32 v 03 state 0 say 0 tell 4 021 @ 00940384 v 0000 + 10345804 n 0303 + 07212424 n 0301 + 14485526 n 0201 + 07203126 n 0103 + 06722453 n 0101 ~ 00772967 v 0000 ~ 00799243 v 0000 ~ 00815686 v 0000 ~ 00901799 v 0000 ~ 00965871 v 0000 ~ 00978369 v 0000 $ 01009821 v 0000 ~ 01009986 v 0000 ~ 01010118 v 0000 ~ 01010852 v 0000 ~ 01020005 v 0000 ~ 01027174 v 0000 ~ 01065456 v 0000 ~ 02235842 v 0000 ~ 02752695 v 0000 03 + 08 00 + 11 00 + 26 00 | express in words; "He said that he wanted to marry her"; "tell me what is bothering you"; "state your opinion"; "state your name" -01009821 32 v 01 say d 002 $ 01009240 v 0000 + 14485526 n 0101 01 + 26 00 | state as one's opinion or judgement; declare; "I say let's forget this whole business" -01009986 32 v 01 get_out 1 001 @ 01009240 v 0000 02 + 08 00 + 26 00 | express with difficulty; "I managed to get out a few words" -01010118 32 v 01 declare 0 022 @ 01009240 v 0000 + 00686890 a 0101 + 00686890 a 0102 + 06725877 n 0101 ~ 00760576 v 0000 ~ 00760735 v 0000 ~ 00856578 v 0000 ~ 00866702 v 0000 ~ 00867644 v 0000 ~ 00875394 v 0000 ~ 00884011 v 0000 ~ 00884317 v 0000 ~ 00894499 v 0000 ~ 00906735 v 0000 ~ 00977336 v 0000 ~ 01010690 v 0000 ~ 01011031 v 0000 ~ 01013040 v 0000 ~ 01014821 v 0000 ~ 01027508 v 0000 ~ 01027668 v 0000 ~ 01101313 v 0000 02 + 08 00 + 26 00 | state emphatically and authoritatively; "He declared that he needed more money to carry out the task he was charged with" -01010690 32 v 01 profess a 001 @ 01010118 v 0000 01 + 26 00 | state freely; "The teacher professed that he was not generous when it came to giving good grades" -01010852 32 v 01 declare 3 002 @ 01009240 v 0000 + 07204110 n 0101 01 + 08 00 | make a declaration (of dutiable goods) to a customs official; "Do you have anything to declare?" -01011031 32 v 07 affirm 0 verify 3 assert 0 avow 0 aver 0 swan 0 swear 3 018 @ 01010118 v 0000 + 10682380 n 0701 + 06684572 n 0702 + 06729499 n 0502 + 09814660 n 0405 + 06732350 n 0401 + 01821920 a 0302 + 07203126 n 0302 + 09814660 n 0301 + 07203126 n 0101 + 06732350 n 0103 + 09814660 n 0103 ~ 00683771 v 0000 ~ 00758333 v 0000 ~ 00820352 v 0000 ~ 00820801 v 0000 ~ 01011542 v 0000 ~ 01019643 v 0000 02 + 08 00 + 26 00 | to declare or affirm solemnly and formally as true; "Before God I swear I am innocent" -01011542 32 v 01 protest 1 003 @ 01011031 v 0000 + 07210225 n 0101 + 07210225 n 0102 02 + 08 00 + 26 00 | affirm or avow formally or solemnly; "The suspect protested his innocence" -01011725 32 v 01 affirm 1 007 + 00075135 a 0101 + 00075135 a 0102 + 07203126 n 0101 ~ 00756338 v 0000 ~ 01011923 v 0000 ~ 01012073 v 0000 ~ 01017643 v 0000 03 + 08 00 + 11 00 + 26 00 | say yes to -01011923 32 v 01 reaffirm 0 002 @ 01011725 v 0000 + 06732581 n 0102 02 + 08 00 + 26 00 | affirm once again; "He reaffirmed his faith in the church" -01012073 32 v 02 confirm 0 reassert 0 010 @ 01011725 v 0000 + 06732581 n 0201 + 02355521 a 0104 + 06650070 n 0101 + 05825245 n 0101 ~ 00896497 v 0000 ~ 00896803 v 0000 ~ 01012395 v 0000 ~ 01012561 v 0000 ~ 01012905 v 0000 02 + 08 00 + 26 00 | strengthen or make more firm; "The witnesses confirmed the victim's account" -01012395 32 v 01 verify 4 003 @ 01012073 v 0000 ;c 08441203 n 0000 + 06736769 n 0101 01 + 08 00 | attach or append a legal verification to (a pleading or petition) -01012561 32 v 02 validate 0 corroborate 0 008 @ 01012073 v 0000 + 02355521 a 0205 + 02355521 a 0206 + 06650431 n 0203 + 02355521 a 010a + 05826291 n 0102 + 00153961 n 0101 ~ 01012792 v 0000 02 + 08 00 + 11 00 | give evidence for -01012792 32 v 01 circumstantiate 0 001 @ 01012561 v 0000 02 + 08 00 + 11 00 | give circumstantial evidence for -01012905 32 v 01 reconfirm 0 001 @ 01012073 v 0000 02 + 08 00 + 26 00 | confirm again; "You must reconfirm your flight reservations" -01013040 32 v 03 swear 0 depose 0 depone 0 005 @ 01010118 v 0000 + 10703905 n 0302 + 10703905 n 0203 + 07194499 n 0201 + 06684572 n 0102 01 + 26 00 | make a deposition; declare under oath -01013230 32 v 02 remonstrate 1 point_out 2 002 @ 00831651 v 0000 ~ 00825447 v 0000 01 + 22 00 | present and urge reasons in opposition -01013367 32 v 06 stress 0 emphasize 0 emphasise 0 punctuate 0 accent 1 accentuate 0 015 @ 00943837 v 0000 + 14434866 n 0602 + 01264243 n 0603 + 14434866 n 0502 + 01264243 n 0201 + 14434866 n 0201 + 14435187 n 0101 ~ 00513492 v 0000 ~ 00514463 v 0000 ~ 00840809 v 0000 ~ 00840980 v 0000 ~ 01013856 v 0000 ~ 01014186 v 0000 ~ 01014362 v 0000 ~ 01014609 v 0000 03 + 08 00 + 11 00 + 26 00 | to stress, single out as important; "Dr. Jones emphasizes exercise in addition to a change in diet" -01013856 32 v 01 topicalize 0 003 @ 01013367 v 0000 ;c 06172789 n 0000 + 06484279 n 0101 02 + 02 00 + 08 00 | emphasize by putting heavy stress on or by moving to the front of the sentence; "Speakers topicalize more often than they realize"; "The object of the sentence is topicalized in what linguists call `Yiddish Movement'" -01014186 32 v 01 point_up 0 001 @ 01013367 v 0000 03 + 08 00 + 11 00 + 26 00 | emphasize, especially by identification; "This novel points up the racial problems in England" -01014362 32 v 03 drive_home 0 ram_home 0 press_home 0 001 @ 01013367 v 0000 01 + 08 00 | make clear by special emphasis and try to convince somebody of something; "drive home a point or an argument"; "I'm trying to drive home these basic ideas" -01014609 32 v 04 underscore 0 underline 0 emphasize 3 emphasise 3 002 @ 01013367 v 0000 + 01264243 n 0301 03 + 08 00 + 11 00 + 26 00 | give extra weight to (a communication); "Her gesture emphasized her words" -01014821 32 v 04 testify 1 attest 2 take_the_stand 0 bear_witness 0 009 @ 01010118 v 0000 ;c 08441203 n 0000 + 06736405 n 0201 + 10786270 n 0202 + 06648207 n 0101 + 06732710 n 0101 + 10703905 n 0101 + 06734467 n 0101 ~ 01015104 v 0000 01 + 02 00 | give testimony in a court of law -01015104 32 v 01 vouch 1 002 @ 01014821 v 0000 + 10760763 n 0101 01 + 22 00 | give personal assurance; guarantee; "Will he vouch for me?" -01015244 32 v 05 testify 2 bear_witness 2 prove 0 evidence 1 show 0 011 @ 00831651 v 0000 ;c 08441203 n 0000 + 06643408 n 0401 + 05823932 n 0401 + 06733939 n 0401 + 06648207 n 0101 + 06732710 n 0101 + 10703905 n 0101 ~ 00820976 v 0000 ~ 01015677 v 0000 ~ 01015866 v 0000 05 + 08 00 + 11 00 + 26 00 + 22 02 + 22 01 | provide evidence for; "The blood test showed that he was the father"; "Her behavior testified to her incompetence" -01015677 32 v 01 presume 0 003 @ 01015244 v 0000 + 01413576 a 0101 + 00645281 a 0101 01 + 11 00 | constitute reasonable evidence for; "A restaurant bill presumes the consumption of food" -01015866 32 v 03 adduce 0 abduce 0 cite 6 003 @ 01015244 v 0000 + 06613056 n 0303 + 06763681 n 0301 01 + 08 00 | advance evidence for -01016002 32 v 03 allege 0 aver 1 say 1 004 @ 01016778 v 0000 + 14485526 n 0301 + 06731186 n 0102 ~ 01016316 v 0000 03 + 08 00 + 11 00 + 26 00 | report or maintain; "He alleged that he was the victim of a crime"; "He said it was too late to intervene in the war"; "The registrar says that I owe the school money" -01016316 32 v 01 plead 3 005 @ 01016002 v 0000 ;c 08441203 n 0000 + 09775663 n 0106 + 06559365 n 0101 ~ 01016626 v 0000 01 + 26 00 | make an allegation in an action or other legal proceeding, especially answer the previous pleading of the other party by denying facts therein stated or by alleging new facts -01016626 32 v 01 demur 2 005 @ 01016316 v 0000 ;c 08441203 n 0000 + 06562802 n 0101 + 07209089 n 0103 + 07209089 n 0102 01 + 02 00 | enter a demurrer -01016778 32 v 03 assert 1 asseverate 0 maintain 0 007 @ 00818974 v 0000 + 06729499 n 0203 + 09814660 n 0204 + 01821920 a 0102 + 06729499 n 0101 ~ 01016002 v 0000 ~ 01017001 v 0000 02 + 08 00 + 26 00 | state categorically -01017001 32 v 02 predicate 0 proclaim 3 002 @ 01016778 v 0000 + 06733227 n 0102 02 + 08 00 + 26 00 | affirm or declare as an attribute or quality of; "The speech predicated the fitness of the candidate to be President" -01017222 32 v 01 predicate 2 005 @ 02724417 v 0000 + 00172993 a 0101 + 06316626 n 0101 + 06316813 n 0101 + 06316376 n 0101 01 + 08 00 | make the (grammatical) predicate in a proposition; "The predicate `dog' is predicated of the subject `Fido' in the sentence `Fido is a dog'" -01017501 32 v 01 swear_in 0 001 @ 02395782 v 0000 01 + 09 00 | administer on oath to; "The speaker of the House swore in the new President" -01017643 32 v 02 maintain 1 defend 1 004 @ 01011725 v 0000 + 02525876 a 0202 + 01632066 a 0201 ~ 00904690 v 0000 02 + 08 00 + 26 00 | state or assert; "He maintained his innocence" -01017826 32 v 02 demand 2 exact 0 006 @ 01018352 v 0000 + 01061526 n 0201 + 01061333 n 0101 + 10001647 n 0101 ~ 01018177 v 0000 ~ 02359061 v 0000 03 + 08 00 + 16 00 + 26 00 | claim as due or just; "The bank demanded payment of the loan" -01018065 32 v 01 demand 6 001 @ 00752764 v 0000 01 + 08 00 | ask to be informed of; "I demand an explanation" -01018177 32 v 01 command 2 001 @ 01017826 v 0000 01 + 08 00 | demand as one's due; "This speaker commands a high fee"; "The author commands a fair hearing from his readers" -01018352 32 v 01 claim 2 007 @ 00752764 v 0000 + 05175904 n 0101 + 01061945 n 0101 + 09925592 n 0101 ~ 01017826 v 0000 ~ 01018645 v 0000 ~ 01069090 v 0000 02 + 08 00 + 22 00 | ask for legally or make a legal claim to, as of debts, for example; "They claimed on the maximum allowable amount" -01018645 32 v 01 counterclaim 0 003 @ 01018352 v 0000 ;c 08441203 n 0000 + 01184407 n 0101 01 + 02 00 | set up a claim in opposition to a previous claim -01018800 32 v 01 remit 0 001 @ 02477334 v 0000 01 + 08 00 | release from (claims, debts, or taxes); "The taxes were remitted" -01018928 32 v 04 stipulate 0 qualify 0 condition 0 specify 3 011 @ 00888786 v 0000 + 06725067 n 0401 + 01149303 n 0402 + 06755568 n 0301 + 06770875 n 0301 + 05822746 n 0302 + 04717139 n 0201 + 00603194 a 0102 + 01149303 n 0101 $ 01019472 v 0000 ~ 01063188 v 0000 03 + 02 00 + 08 00 + 26 00 | specify as a condition or requirement in a contract or agreement; make an express demand or provision in an agreement; "The will stipulates that she can live in the house for the rest of her life"; "The contract stipulates the dates of the payments" -01019472 32 v 01 stipulate 1 002 $ 01018928 v 0000 @ 00890100 v 0000 02 + 08 00 + 26 00 | give a guarantee or promise of; "They stipulated to release all the prisoners" -01019643 32 v 02 assure 0 tell 8 001 @ 01011031 v 0000 02 + 18 00 + 26 00 | inform positively and with certainty and confidence; "I tell you that man is a crook!" -01019808 32 v 01 reassure 0 002 @ 00776268 v 0000 + 01215719 n 0101 03 + 09 00 + 18 00 + 26 00 | give or restore confidence in; cause to feel sure or certain; "I reassured him that we were safe" -01020005 32 v 04 note 0 observe 0 mention 0 remark 0 008 @ 01009240 v 0000 + 06765044 n 0401 + 06766190 n 0301 + 10309347 n 0301 + 10369528 n 0201 + 05703429 n 0202 + 06763273 n 0101 ~ 01058574 v 0000 02 + 08 00 + 26 00 | make mention of; "She observed that his presentation took up too much time"; "They noted that it was a fine day to go sailing" -01020356 32 v 04 write_down 1 set_down 0 get_down 0 put_down 0 005 @ 00993014 v 0000 ~ 00995103 v 0000 ~ 00995286 v 0000 ~ 01020594 v 0000 ~ 01020934 v 0000 02 + 08 00 + 26 00 | put down in writing; of texts, musical compositions, etc. -01020594 32 v 02 dash_down 0 dash_off 0 001 @ 01020356 v 0000 01 + 09 00 | write down hastily; "She dashed off a letter to her lawyer" -01020731 32 v 04 complete 0 fill_out 0 fill_in 2 make_out 2 001 * 01020356 v 0000 01 + 08 00 | write all the required information onto a form; "fill out this questionnaire, please!"; "make out a form" -01020934 32 v 02 note 1 take_down 0 003 @ 01020356 v 0000 + 06504462 n 0101 + 06763273 n 0103 02 + 08 00 + 26 00 | make a written note of; "she noted everything the teacher said that morning" -01021128 32 v 03 exemplify 0 illustrate 0 instance 0 010 @ 00955601 v 0000 + 05820620 n 0303 + 01305123 a 0202 + 06880533 n 0202 + 05820620 n 0202 + 06880533 n 0101 + 07308889 n 0103 + 05937112 n 0102 + 05925366 n 0102 + 05820620 n 0101 02 + 08 00 + 11 00 | clarify by giving an example of -01021420 32 v 02 conclude 1 resolve 0 005 @ 00805376 v 0000 + 06511874 n 0203 + 00550282 a 0101 + 00162632 n 0103 ~ 00763399 v 0000 02 + 08 00 + 26 00 | reach a conclusion after a discussion or deliberation -01021629 32 v 02 arrange 4 fix_up 0 006 @ 00805376 v 0000 + 05795044 n 0102 + 10383237 n 0103 ~ 01021871 v 0000 ~ 01648488 v 0000 ~ 02254258 v 0000 02 + 08 00 + 26 01 | make arrangements for; "Can you arrange a meeting with the President?" -01021871 32 v 01 firm_up 0 001 @ 01021629 v 0000 01 + 08 00 | arrange firmly; "firm up one's plans" -01021973 32 v 05 specify 0 particularize 0 particularise 0 specialize 0 specialise 0 005 @ 00955601 v 0000 + 07202812 n 0302 + 07202812 n 0201 ! 01022906 v 0101 ~ 01005904 v 0000 03 + 08 00 + 11 00 + 26 00 | be specific about; "Could you please specify your criticism of my paper?" -01022257 32 v 02 overgeneralize 0 overgeneralise 0 001 @ 01022420 v 0000 02 + 02 00 + 08 00 | draw too general a conclusion; "It is dangerous to overgeneralize" -01022420 32 v 04 generalize 1 generalise 1 extrapolate 0 infer 1 010 @ 00634472 v 0000 + 05774614 n 0401 + 05781145 n 0301 + 05780104 n 0203 + 05756414 n 0202 + 05780104 n 0102 + 05756414 n 0101 + 05774415 n 0101 ~ 01022257 v 0000 ~ 01022740 v 0000 02 + 08 00 + 26 00 | draw from specific cases for more general cases -01022740 32 v 02 universalize 0 universalise 0 002 @ 01022420 v 0000 + 00527188 a 0105 01 + 08 00 | make universal; "This author's stories universalize old themes" -01022906 32 v 02 generalize 0 generalise 0 004 @ 00941990 v 0000 + 05913275 n 0202 + 05913275 n 0101 ! 01021973 v 0101 01 + 02 00 | speak or write in generalities -01023071 32 v 02 mention 1 cite 1 003 @ 01059123 v 0000 + 06706125 n 0201 + 06706317 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | commend; "he was cited for his outstanding achievements" -01023259 32 v 02 quote 0 cite 2 010 @ 00958334 v 0000 + 07180570 n 0201 + 06613056 n 0203 + 06763681 n 0201 + 06613056 n 0102 + 06613056 n 0101 + 01030642 n 0101 + 10502204 n 0101 $ 01023574 v 0000 ~ 01023781 v 0000 05 + 02 00 + 08 00 + 09 00 + 14 00 + 15 00 | repeat a passage from; "He quoted the Bible to her" -01023574 32 v 02 quote 2 cite 5 002 $ 01023259 v 0000 @ 01024190 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | refer to for illustration or proof; "He said he could quote several instances of this behavior" -01023781 32 v 01 misquote 0 002 @ 01023259 v 0000 + 06613576 n 0101 02 + 08 00 + 09 00 | quote incorrectly; "He had misquoted the politician" -01023925 32 v 01 quote d 003 @ 02235842 v 0000 + 06756267 n 0101 ~ 01024066 v 0000 01 + 08 00 | name the price of; "quote prices for cars" -01024066 32 v 01 underquote 0 001 @ 01023925 v 0000 01 + 09 00 | quote a price lower than that quoted by (another seller) -01024190 32 v 06 mention 2 advert c bring_up 0 cite 0 name 4 refer 1 020 @ 00730052 v 0000 + 06766190 n 0602 + 06333653 n 0501 + 07230502 n 0501 + 07180570 n 0401 + 06613056 n 0403 + 06763681 n 0401 + 06763681 n 0106 + 06766190 n 0101 + 10309347 n 0101 ~ 00882523 v 0000 ~ 00882682 v 0000 ~ 00882802 v 0000 ~ 01023574 v 0000 ~ 01024763 v 0000 ~ 01024864 v 0000 ~ 01025089 v 0000 ~ 01025246 v 0000 ~ 01025785 v 0000 ~ 01025935 v 0000 07 + 08 00 + 09 00 + 10 00 + 11 00 + 04 06 + 22 06 + 22 02 | make reference to; "His name was mentioned in connection with the invention" -01024763 32 v 01 touch_on 1 001 @ 01024190 v 0000 02 + 08 00 + 11 00 | refer to or discuss briefly -01024864 32 v 02 invoke 1 appeal c 001 @ 01024190 v 0000 03 + 08 00 + 11 00 + 22 02 | cite as an authority; resort to; "He invoked the law that would save him"; "I appealed to the law of 1900"; "She invoked an ancient law" -01025089 32 v 01 namedrop 0 001 @ 01024190 v 0000 01 + 02 00 | refer to people that one assumes one's interlocutors admire in order to try to impress them -01025246 32 v 02 raise 1 bring_up 6 001 @ 01024190 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | put forward for consideration or discussion; "raise the question of promotions"; "bring up an unpleasant topic" -01025455 32 v 02 call_up 3 bring_forward 0 001 @ 00941166 v 0000 01 + 08 00 | bring forward for consideration; "The case was called up in court" -01025602 32 v 04 slip_in 0 stick_in 0 sneak_in 0 insert 0 002 @ 01027174 v 0000 ~ 01639592 v 0000 02 + 08 00 + 26 00 | insert casually; "She slipped in a reference to her own work" -01025785 32 v 02 drag_up 0 dredge_up 0 001 @ 01024190 v 0000 02 + 08 00 + 26 00 | mention something unpleasant from the past; "Drag up old stories" -01025935 32 v 01 cross-refer 0 001 @ 01024190 v 0000 04 + 01 00 + 02 00 + 04 00 + 12 00 | refer from one entry to another, as in catalogues, books, and lists -01026095 32 v 02 name 2 identify 0 009 @ 00931467 v 0000 + 14577046 n 0201 + 06885083 n 0201 + 00152018 n 0202 + 05763412 n 0201 + 07230502 n 0101 ~ 00946105 v 0000 ~ 00946755 v 0000 ~ 00975427 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | give the name or identifying characteristics of; refer to by name or some other identifying characteristic property; "Many senators were named in connection with the scandal"; "The almanac identifies the auspicious months" -01026558 32 v 01 apply 1 002 @ 00931467 v 0000 + 00949134 n 0101 02 + 15 00 + 21 00 | refer (a word or name) to a person or thing; "He applied this racial slur to me!" -01026728 32 v 03 allude 0 touch 9 advert 1 005 * 00931467 v 0000 @ 00927430 v 0000 + 00766957 a 0101 + 06766544 n 0101 $ 02676054 v 0000 01 + 22 00 | make a more or less disguised reference to; "He alluded to the problem but did not mention it" -01026975 32 v 03 drive 0 get 8 aim 9 004 @ 00955148 v 0000 + 06197664 n 0101 + 05922651 n 0101 + 00798245 n 0104 01 + 22 00 | move into a desired direction of discourse; "What are you driving at?" -01027174 32 v 03 add 1 append 0 supply 0 003 @ 01009240 v 0000 ~ 01025602 v 0000 ~ 01027361 v 0000 03 + 08 00 + 11 00 + 26 00 | state or say further; "`It doesn't matter,' he supplied" -01027361 32 v 01 toss_in 0 001 @ 01027174 v 0000 02 + 08 00 + 26 00 | add casually to a conversation; "`I don't agree with this,' she tossed in" -01027508 32 v 01 decree 0 004 @ 01010118 v 0000 + 06539770 n 0101 ~ 00746084 v 0000 ~ 02427916 v 0000 01 + 02 00 | issue a decree; "The King only can decree" -01027668 32 v 05 opine 0 speak_up 0 speak_out 0 animadvert 0 sound_off 1 004 @ 01010118 v 0000 + 00288362 a 0102 + 06782019 n 0101 ~ 01027924 v 0000 01 + 26 00 | express one's opinion openly and without fear or hesitation; "John spoke up at the meeting" -01027924 32 v 02 editorialize 0 editorialise 0 002 @ 01027668 v 0000 + 06268567 n 0102 01 + 02 00 | insert personal opinions into an objective statement -01028079 32 v 03 baptize 0 baptise 0 christen 0 004 @ 01028748 v 0000 + 01038375 n 0301 + 01037819 n 0201 + 01037819 n 0101 03 + 08 00 + 09 00 + 14 00 | administer baptism to; "The parents had the child baptized" -01028294 32 v 01 refer 4 001 @ 01028748 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | use a name to designate; "Christians refer to the mother of Jesus as the Virgin Mary" -01028466 32 v 02 style 0 title 2 002 @ 01028748 v 0000 + 06346461 n 0201 01 + 08 00 | designate by an identifying term; "They styled their nation `The Confederate States'" -01028640 32 v 02 dub 0 nickname 0 002 @ 01028748 v 0000 + 06337693 n 0201 01 + 14 00 | give a nickname to -01028748 32 v 02 name 3 call 2 014 $ 00971015 v 0000 @ 01029852 v 0000 + 10344774 n 0101 + 06333653 n 0101 + 07230502 n 0101 ~ 01028079 v 0000 ~ 01028294 v 0000 ~ 01028466 v 0000 ~ 01028640 v 0000 ~ 01029212 v 0000 ~ 01029500 v 0000 ~ 01029642 v 0000 ~ 01029760 v 0000 $ 02601456 v 0000 03 + 08 00 + 09 00 + 14 00 | assign a specified (usually proper) proper name to; "They named their son David"; "The new school was named after the famous Civil Rights leader" -01029212 32 v 01 rename 0 001 @ 01028748 v 0000 02 + 08 00 + 09 00 | assign a new name to; "Many streets in the former East Germany were renamed in 1990" -01029368 32 v 02 go_by 0 go_under 0 000 02 + 08 00 + 11 00 | be called; go by a certain name; "She goes by her maiden name again" -01029500 32 v 02 entitle 0 title 0 004 @ 01028748 v 0000 + 06343520 n 0201 + 05181199 n 0201 ~ 00978173 v 0000 01 + 08 00 | give a title to -01029642 32 v 01 term 0 002 @ 01028748 v 0000 + 06303888 n 0101 01 + 08 00 | name formally or designate with a term -01029760 32 v 01 tag 0 001 @ 01028748 v 0000 01 + 08 00 | provide with a name or nickname -01029852 32 v 01 label 0 007 @ 01030132 v 0000 + 07272172 n 0101 + 07202579 n 0101 ~ 00971015 v 0000 ~ 00990812 v 0000 ~ 01028748 v 0000 ~ 02508245 v 0000 03 + 08 00 + 09 00 + 10 00 | assign a label to; designate with a label; "These students were labelled `learning disabled'" -01030132 32 v 02 designate 0 denominate 0 009 + 08006989 n 0201 + 08146782 n 0201 + 06338908 n 0202 + 00722611 a 0101 + 06338908 n 0103 + 00152018 n 0101 ~ 00932161 v 0000 ~ 00948853 v 0000 ~ 01029852 v 0000 03 + 08 00 + 09 00 + 11 00 | assign a name or title to -01030397 32 v 03 excommunicate 0 unchurch 0 curse 3 005 @ 02449340 v 0000 + 14413993 n 0101 + 00208277 n 0101 ! 01030678 v 0101 $ 02402112 v 0000 02 + 09 00 + 10 00 | exclude from a church or a religious community; "The gay priest was excommunicated when he married his partner" -01030678 32 v 01 communicate 8 004 $ 00760402 v 0000 @ 01030832 v 0000 + 00033020 n 0101 ! 01030397 v 0101 01 + 02 00 | administer Communion; in church -01030832 32 v 01 covenant 0 004 @ 00884540 v 0000 + 06772260 n 0101 ~ 00760402 v 0000 ~ 01030678 v 0000 01 + 02 00 | enter into a covenant or formal agreement; "They covenanted with Judas for 30 pieces of silver"; "The nations covenanted to fight terrorism around the world" -01031109 32 v 02 post 1 brand 0 002 @ 00971015 v 0000 + 06794666 n 0203 01 + 14 00 | mark or expose as infamous; "She was branded a loose woman" -01031256 32 v 03 mail 0 post 2 send 0 017 @ 02232190 v 0000 + 10578656 n 0301 + 10578762 n 0301 + 00121166 n 0301 + 00318186 n 0201 + 06264398 n 0204 + 06796119 n 0201 + 00122338 n 0202 + 10282920 n 0101 + 03709644 n 0101 + 06264398 n 0101 + 08463647 n 0101 + 00122338 n 0101 ~ 01031756 v 0000 ~ 01032127 v 0000 ~ 01032326 v 0000 ~ 01033030 v 0000 02 + 08 00 + 15 00 | cause to be directed or transmitted to another place; "send me your latest results"; "I'll mail you the paper when it's written" -01031756 32 v 01 express 9 004 @ 01031256 v 0000 + 06265475 n 0101 + 01106460 n 0101 + 01106460 n 0102 01 + 08 00 | send by rapid transport or special messenger service; "She expressed the letter to Florida" -01031966 32 v 01 write 1 003 @ 00740577 v 0000 + 10801291 n 0101 $ 01007027 v 0000 01 + 26 00 | communicate by letter; "He wrote that he would be coming soon" -01032127 32 v 01 airmail 0 003 @ 01031256 v 0000 + 06264812 n 0101 + 02690715 n 0101 03 + 08 00 + 14 00 + 15 00 | send or transport by airmail; "Letters to Europe from the U.S. are best airmailed" -01032326 32 v 01 register 5 001 @ 01031256 v 0000 01 + 08 00 | send by registered mail; "I'd like to register this letter" -01032451 32 v 03 e-mail 0 email 0 netmail 0 006 * 01031256 v 0000 @ 00790703 v 0000 ;c 06128570 n 0000 + 06279326 n 0203 + 06279326 n 0102 ~ 01032715 v 0000 03 + 08 00 + 14 00 + 15 00 | communicate electronically on the computer; "she e-mailed me the good news" -01032715 32 v 01 spam 0 002 @ 01032451 v 0000 ;c 06128570 n 0000 03 + 08 00 + 14 00 + 15 00 | send unwanted or junk e-mail -01032840 32 v 01 network 0 003 @ 00740577 v 0000 ;c 06128570 n 0000 + 08434259 n 0101 01 + 02 00 | communicate with and within a group; "You have to network if you want to get a good job" -01033030 32 v 01 express-mail 0 001 @ 01031256 v 0000 03 + 08 00 + 14 00 + 15 00 | send by express mail or courier; "Express-mail the documents immediately" -01033189 32 v 01 comment a 004 @ 00939277 v 0000 + 06762711 n 0101 ~ 00917537 v 0000 ~ 01033346 v 0000 02 + 08 00 + 11 00 | explain or interpret something -01033346 32 v 03 disk-jockey 0 disc-jockey 0 DJ 0 002 @ 01033189 v 0000 + 10017272 n 0303 01 + 02 00 | comment on music to be played; "He has a job disk-jockeying on the weekend" -01033527 32 v 06 cover 1 treat 0 handle 0 plow 0 deal 8 address 4 007 @ 00964911 v 0000 + 07138085 n 0202 + 05123760 n 0101 ~ 01034118 v 0000 ~ 01034312 v 0000 $ 02514187 v 0000 $ 02629793 v 0000 04 + 08 00 + 09 00 + 11 00 + 22 05 | act on verbally or in some form of artistic expression; "This book deals with incest"; "The course covered all of Western Civilization"; "The new book treats the history of China" -01033942 32 v 01 sugarcoat 0 001 @ 00953700 v 0000 02 + 08 00 + 11 00 | cause to appear more pleasant or appealing; "The mayor did not sugarcoat the reality of the tax cuts" -01034118 32 v 02 theologize 0 theologise 0 003 @ 01033527 v 0000 + 10705615 n 0204 + 10705615 n 0103 02 + 08 00 + 11 00 | treat from a theological viewpoint or render theological in character -01034312 32 v 03 discourse 2 talk_about 0 discuss 1 005 @ 01033527 v 0000 + 07138085 n 0301 + 07138085 n 0103 ~ 01034647 v 0000 ~ 01034766 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to consider or examine in speech or writing; "The author talks about the different aspects of this question"; "The class discussed Dante's `Inferno'" -01034647 32 v 01 descant 1 001 @ 01034312 v 0000 01 + 02 00 | talk at great length about something of one's interest -01034766 32 v 01 talk_shop 0 001 @ 01034312 v 0000 01 + 08 00 | discuss matters that are related to work; "As soon as they met, the linguists started to talk shop" -01034932 32 v 01 stonewall 0 003 @ 02557199 v 0000 + 10659571 n 0101 + 01075893 n 0101 03 + 02 00 + 08 00 + 09 00 | obstruct or hinder any discussion; "Nixon stonewalled the Watergate investigation"; "When she doesn't like to face a problem, she simply stonewalls" -01035199 32 v 03 browbeat 0 bully 0 swagger 1 002 @ 00768778 v 0000 + 09879297 n 0201 02 + 09 00 + 30 00 | discourage or frighten with threats or a domineering manner; intimidate -01035380 32 v 01 compromise 0 004 * 00805376 v 0000 @ 00763399 v 0000 + 07179342 n 0101 + 01205564 n 0101 02 + 02 00 + 22 00 | settle by concession -01035530 32 v 01 agree 4 006 + 00553279 a 0101 + 13971065 n 0101 + 07175241 n 0101 $ 00805376 v 0000 ~ 01035803 v 0000 ~ 01071762 v 0000 02 + 02 00 + 22 00 | achieve harmony of opinion, feeling, or purpose; "No two of my colleagues would agree on whom to elect chairman" -01035803 32 v 01 compromise 1 005 @ 01035530 v 0000 + 07179342 n 0101 + 01205564 n 0101 ~ 01036047 v 0000 ~ 01036188 v 0000 01 + 02 00 | make a compromise; arrive at a compromise; "nobody will get everything he wants; we all must compromise" -01036047 32 v 01 whore 1 001 @ 01035803 v 0000 01 + 02 00 | compromise oneself for money or other gains; "She whored herself to Hollywood" -01036188 32 v 01 give_and_take 0 001 @ 01035803 v 0000 01 + 02 00 | make mutual concessions; "In life you have to give and take" -01036319 32 v 05 queer 0 expose 2 scupper 0 endanger 0 peril 0 006 @ 00137313 v 0000 + 14543552 n 0502 + 14541852 n 0503 + 00802238 n 0502 + 14543931 n 0202 ~ 01036592 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | put in a dangerous, disadvantageous, or difficult position -01036592 32 v 01 compromise 3 001 @ 01036319 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | expose or make liable to danger, suspicion, or disrepute; "The nuclear secrets of the state were compromised by the spy" -01036804 32 v 0e chatter 0 piffle 0 palaver 2 prate 0 tittle-tattle 0 twaddle 0 clack 0 maunder 1 prattle 0 blab 2 gibber 0 tattle 0 blabber 0 gabble 0 015 @ 00941990 v 0000 + 06610992 n 0e03 + 10206173 n 0d05 + 10463943 n 0901 + 07137129 n 0902 + 10733999 n 0601 + 06611147 n 060b + 07135080 n 0508 + 09911570 n 0403 + 07137129 n 0401 + 06609503 n 0301 + 06608143 n 0203 + 07136940 n 0104 + 09911570 n 0101 ~ 01037650 v 0000 01 + 02 00 | speak (about unimportant matters) rapidly and incessantly -01037303 32 v 01 chatter 2 004 @ 00941990 v 0000 + 07378781 n 0101 + 09911570 n 0101 + 07378781 n 0102 01 + 01 00 | make noise as if chattering away; "The magpies were chattering in the trees" -01037498 32 v 05 yack 0 jaw 2 yack_away 0 rattle_on 0 yap_away 0 002 @ 00941990 v 0000 + 07136940 n 0102 01 + 02 00 | talk incessantly and tiresomely -01037650 32 v 05 babble 0 blather 0 smatter 1 blether 0 blither 0 006 @ 01036804 v 0000 + 07137129 n 0404 + 06610332 n 0201 + 09911570 n 0102 + 06610143 n 0101 + 06610143 n 0102 01 + 02 00 | to talk foolishly; "The two women babbled and crooned at the baby" -01037910 32 v 09 chat_up 0 flirt 0 dally 0 butterfly 0 coquet 0 coquette 0 romance 1 philander 0 mash 0 013 @ 00962447 v 0000 + 10787197 n 0904 + 06371267 n 0702 + 13931436 n 0702 + 09965134 n 0601 + 00512522 n 0504 + 00512522 n 0305 + 00512522 n 0201 + 09965134 n 0202 + 00512522 n 0203 + 00512522 n 0202 ~ 01038434 v 0000 ~ 01038538 v 0000 03 + 02 00 + 22 00 + 09 01 | talk or behave amorously, without serious intentions; "The guys always try to chat up the new secretaries"; "My husband never flirts with other women" -01038434 32 v 01 wanton 0 002 @ 01037910 v 0000 + 10766260 n 0101 01 + 02 00 | engage in amorous play -01038538 32 v 01 vamp 0 003 @ 01037910 v 0000 + 09965134 n 0103 + 09965134 n 0104 01 + 09 00 | act seductively with (someone) -01038666 32 v 0e chew_the_fat 0 shoot_the_breeze 0 chat 0 confabulate 0 confab 0 chitchat 0 chit-chat 0 chatter 1 chaffer 0 natter 0 gossip 1 jaw 0 claver 0 visit 0 011 @ 00964694 v 0000 + 10757193 n 0e01 + 07135080 n 0b07 + 07136940 n 0804 + 09911570 n 0801 + 07135080 n 0601 + 07134850 n 0403 + 07134850 n 0301 + 07135080 n 0603 + 07135080 n 0602 ~ 01039162 v 0000 01 + 02 00 | talk socially without exchanging too much information; "the men were sitting in the cafe and shooting the breeze" -01039162 32 v 05 shmooze 0 shmoose 0 schmooze 0 schmoose 0 jawbone 0 002 @ 01038666 v 0000 + 09961999 n 0303 01 + 02 00 | talk idly or casually and in a friendly way -01039330 32 v 04 sign 1 signal 0 signalize 1 signalise 1 015 @ 00740577 v 0000 + 06791372 n 0301 + 06791372 n 0201 + 10596899 n 0202 + 10596899 n 0201 + 06791372 n 0202 + 06791372 n 0103 + 06876144 n 0101 + 10597505 n 0101 + 06875697 n 0102 ~ 01040031 v 0000 ~ 01040278 v 0000 ~ 01040400 v 0000 ~ 01040550 v 0000 ~ 01043612 v 0000 02 + 02 00 + 09 00 | communicate silently and non-verbally by signals or signs; "He signed his disapproval with a dismissive hand gesture"; "The diner signaled the waiters to bring the menu" -01039854 32 v 01 signify 1 002 @ 00928015 v 0000 + 01497387 a 0103 02 + 08 00 + 26 00 | make known with a word or signal; "He signified his wish to pay the bill for our meal" -01040031 32 v 01 wigwag 0 001 @ 01039330 v 0000 01 + 01 00 | signal by or as if by a flag or light waved according to a code -01040158 32 v 01 semaphore 0 002 @ 00740577 v 0000 + 04171208 n 0101 01 + 08 00 | convey by semaphore, of information -01040278 32 v 01 semaphore 1 002 @ 01039330 v 0000 + 04171208 n 0101 01 + 02 00 | send signals by or as if by semaphore -01040400 32 v 01 heliograph 0 002 @ 01039330 v 0000 + 03512452 n 0101 02 + 08 00 + 26 00 | signal by means of a mirror and the using the sun's rays -01040550 32 v 01 flag 0 004 @ 01039330 v 0000 + 06875094 n 0101 + 03354903 n 0101 ^ 01860620 v 0101 02 + 02 00 + 08 00 | communicate or signal with a flag -01040707 32 v 01 mouth 1 005 @ 00838043 v 0000 + 06721949 n 0106 + 05301908 n 0101 + 05302499 n 0101 ~ 01040920 v 0000 01 + 02 00 | articulate silently; form words with the lips only; "She mouthed a swear word" -01040920 32 v 02 lip-synch 0 lip-sync 0 001 @ 01040707 v 0000 01 + 02 00 | move the lips in synchronization (with recorded speech or song) -01041061 32 v 08 close_up 0 clam_up 0 dummy_up 0 shut_up 0 belt_up 0 button_up 0 be_quiet 0 keep_mum 0 001 ! 01041298 v 0101 01 + 02 00 | refuse to talk or stop talking; fall silent; "The children shut up when their father approached" -01041298 32 v 01 open_up 0 002 @ 00941990 v 0000 ! 01041061 v 0101 01 + 02 00 | talk freely and without inhibition -01041415 32 v 02 beckon 0 wave 0 004 @ 00992041 v 0000 + 07274027 n 0201 + 10771270 n 0201 + 07274027 n 0202 03 + 02 00 + 08 00 + 27 00 | signal with the hands or nod; "She waved to her friends"; "He waved his hand hospitably" -01041644 32 v 01 beckon 1 001 @ 01041762 v 0000 02 + 01 00 + 02 00 | summon with a wave, nod, or some other gesture -01041762 32 v 01 summon 5 006 @ 00792471 v 0000 + 05978623 n 0102 ~ 00754560 v 0000 ~ 00792304 v 0000 ~ 00793037 v 0000 ~ 01041644 v 0000 02 + 09 00 + 10 00 | ask to come; "summon a lawyer" -01041954 32 v 02 dish_the_dirt 0 gossip 0 006 @ 00962447 v 0000 + 10139347 n 0202 + 10139347 n 0201 + 07223170 n 0201 + 07135450 n 0201 ~ 01042228 v 0000 02 + 02 00 + 22 00 | wag one's tongue; speak about others and reveal secrets or intimacies; "She won't dish the dirt" -01042228 32 v 03 rumor 0 rumour 0 bruit 0 003 @ 01041954 v 0000 + 07223450 n 0202 + 07223450 n 0101 02 + 02 00 + 26 00 | tell or spread rumors; "It was rumored that the next president would be a woman" -01042432 32 v 01 rap 0 002 @ 00962447 v 0000 + 07141537 n 0101 02 + 02 00 + 22 00 | talk volubly -01042531 32 v 02 snivel 0 whine 1 006 @ 00941990 v 0000 + 07211752 n 0202 + 10776339 n 0201 + 00868523 n 0101 + 10776339 n 0104 $ 00907930 v 0000 02 + 02 00 + 26 00 | talk in a tearful manner -01042725 32 v 01 hoot 0 005 @ 00983824 v 0000 + 07123870 n 0102 + 02761834 n 0105 ~ 01042995 v 0000 ~ 01043112 v 0000 02 + 01 00 + 02 00 | to utter a loud clamorous shout; "the toughs and blades of the city hoot and bang their drums, drink arak, play dice, and dance" -01042995 32 v 01 pant-hoot 0 001 @ 01042725 v 0000 01 + 01 00 | communicate by hooting and panting, as of primates -01043112 32 v 01 grunt-hoot 0 001 @ 01042725 v 0000 01 + 01 00 | communicate by hooting and grunting, as of primates -01043231 32 v 01 grunt 0 004 @ 00983824 v 0000 + 07384614 n 0101 + 10149436 n 0101 + 02395406 n 0103 03 + 01 00 + 02 00 + 26 00 | issue a grunting, low, animal-like noise; "He grunted his reluctant approval" -01043441 32 v 01 whistle 0 003 @ 00740577 v 0000 + 10777768 n 0101 + 00547454 n 0101 03 + 01 00 + 02 00 + 08 00 | utter or express by whistling; "She whistled a melody" -01043612 32 v 01 whistle 2 003 @ 01039330 v 0000 + 06806098 n 0101 + 06806098 n 0102 01 + 22 00 | give a signal by whistling; "She whistled for her maid" -01043768 32 v 01 wolf-whistle 0 001 @ 00983824 v 0000 01 + 02 00 | whistle or howl approvingly at a female, of males -01043887 32 v 02 whistle 1 sing 0 004 @ 02176268 v 0000 + 07394588 n 0201 + 07400156 n 0101 + 07400156 n 0102 01 + 01 00 | make a whining, ringing, or whistling sound; "the kettle was singing"; "the bullet sang past his ear" -01044114 32 v 01 murmur 0 007 @ 00941990 v 0000 + 07386920 n 0103 + 07386920 n 0105 + 07386920 n 0104 + 10342543 n 0103 ~ 00910000 v 0000 ~ 01044377 v 0000 03 + 02 00 + 08 00 + 26 00 | speak softly or indistinctly; "She murmured softly to the baby in her arms" -01044377 32 v 01 susurrate 0 005 @ 01044114 v 0000 + 01456038 a 0102 + 07396233 n 0102 + 07396233 n 0101 + 07130341 n 0103 01 + 02 00 | issue soft noises -01044533 32 v 04 mumble 0 mutter 1 maunder 0 mussitate 0 008 @ 00941990 v 0000 + 07386920 n 0406 + 07386920 n 0201 + 10342543 n 0201 + 07386920 n 0202 + 10342543 n 0102 + 07132634 n 0101 + 07127252 n 0101 03 + 02 00 + 08 00 + 26 00 | talk indistinctly; usually in a low voice -01044811 32 v 01 slur 0 001 @ 00941990 v 0000 01 + 08 00 | utter indistinctly -01044891 32 v 01 slur 1 002 @ 00931467 v 0000 + 06718543 n 0102 02 + 08 00 + 09 00 | speak disparagingly of; e.g., make a racial slur; "your comments are slurring your co-workers" -01045073 32 v 01 snort 0 004 @ 00983824 v 0000 + 07128060 n 0102 + 07123870 n 0108 + 10617501 n 0101 01 + 02 00 | indicate contempt by breathing noisily and forcefully through the nose; "she snorted her disapproval of the proposed bridegroom" -01045318 32 v 02 spit 0 spit_out 0 001 @ 00983824 v 0000 01 + 08 00 | utter with anger or contempt -01045419 32 v 02 groan 0 moan 0 005 @ 00983824 v 0000 + 10776339 n 0203 + 07126383 n 0202 + 10147619 n 0101 + 07126383 n 0101 02 + 02 00 + 26 00 | indicate pain, discomfort, or displeasure; "The students groaned when the professor got out the exam booklets"; "The ancient door soughed when opened" -01045719 32 v 03 grumble 2 growl 0 rumble 0 009 @ 00983824 v 0000 + 07392483 n 0301 + 07392483 n 0302 + 10149128 n 0201 + 07384473 n 0202 + 07210951 n 0201 + 07384473 n 0201 + 07392483 n 0103 + 07392483 n 0104 02 + 01 00 + 02 00 | to utter or emit low dull rumbling sounds; "he grumbled a rude response"; "Stones grumbled down the cliff" -01046059 32 v 02 roar 1 howl 1 007 @ 02172888 v 0000 + 07385367 n 0201 + 07377682 n 0102 + 07377682 n 0103 ~ 01046357 v 0000 ~ 01046480 v 0000 ~ 01046587 v 0000 01 + 01 00 | make a loud noise, as of wind, water, or vehicles; "The wind was howling in the trees"; "The water roared down the chute" -01046357 32 v 01 vroom 0 001 @ 01046059 v 0000 01 + 01 00 | make a loud, roaring sound, as of a car engine, while moving -01046480 32 v 02 yawp 1 bawl 1 002 @ 01046059 v 0000 + 10533983 n 0202 01 + 01 00 | make a raucous noise -01046587 32 v 01 thunder 1 003 @ 01046059 v 0000 + 07377682 n 0104 + 04431925 n 0101 01 + 01 00 | to make or produce a loud noise; "The river thundered below"; "The engine roared as the driver pushed the car to full throttle" -01046815 32 v 02 sough 3 purl 0 001 @ 02172888 v 0000 01 + 01 00 | make a murmuring sound; "the water was purling" -01046932 32 v 06 howl 2 ululate 0 wail 0 roar 2 yawl 0 yaup 0 010 @ 00913065 v 0000 + 07121361 n 0408 + 07121361 n 0409 + 07211950 n 0304 + 10763245 n 0301 + 00868799 n 0301 + 07126734 n 0203 + 07126734 n 0101 + 07126734 n 0102 ~ 01047263 v 0000 02 + 01 00 + 02 00 | emit long loud cries; "wail in self-pity"; "howl with sorrow" -01047263 32 v 03 squall 1 waul 0 wawl 0 001 @ 01046932 v 0000 02 + 01 00 + 02 00 | make high-pitched, whiney noises -01047381 32 v 04 howl 3 wrawl 0 yammer 1 yowl 1 004 @ 00983824 v 0000 + 07121361 n 040a + 07385548 n 0101 + 02492660 n 0102 02 + 01 00 + 02 00 | cry loudly, as of animals; "The coyotes were howling in the desert" -01047596 32 v 01 bark 1 002 @ 00941990 v 0000 + 07376731 n 0101 02 + 02 00 + 26 00 | speak in an unfriendly tone; "She barked into the dictaphone" -01047745 32 v 01 bark 0 006 @ 00983824 v 0000 + 07376621 n 0101 + 09839515 n 0101 + 02084732 n 0104 ~ 01047951 v 0000 ~ 01048171 v 0000 01 + 01 00 | make barking sounds; "The dogs barked at the stranger" -01047951 32 v 02 bay 0 quest 2 002 @ 01047745 v 0000 + 07376836 n 0101 01 + 01 00 | bark with prolonged noises, of dogs -01048073 32 v 01 bay 1 001 @ 00941990 v 0000 02 + 08 00 + 22 00 | utter in deep prolonged tones -01048171 32 v 03 yelp 0 yip 0 yap 0 003 @ 01047745 v 0000 + 07400552 n 0102 + 07400552 n 0103 01 + 01 00 | bark in a high-pitched tone; "the puppies yelped" -01048330 32 v 04 bleat 0 blate 0 blat 0 baa 0 003 @ 00983824 v 0000 + 07376168 n 0401 + 07377931 n 0101 01 + 01 00 | cry plaintively; "The lambs were bleating" -01048492 32 v 01 bleat 1 001 @ 00907147 v 0000 01 + 02 00 | talk whiningly -01048569 32 v 02 bawl 0 bellow 0 003 @ 00912473 v 0000 + 07121361 n 0201 + 07121361 n 0202 02 + 02 00 + 08 00 | shout loudly and without restraint -01048718 32 v 02 bellow 1 roar 5 006 @ 00983824 v 0000 + 07392280 n 0201 + 10533983 n 0201 + 07121361 n 0209 + 07121361 n 0101 + 07121361 n 0102 02 + 01 00 + 02 00 | make a loud noise, as of animal; "The bull bellowed" -01048939 32 v 05 squawk 1 screak 0 skreak 0 skreigh 0 screech 1 005 @ 00913065 v 0000 + 07123012 n 0505 + 10533983 n 0505 + 07395446 n 0101 + 10776339 n 0108 01 + 02 00 | utter a harsh abrupt scream -01049140 32 v 01 chirk 0 001 @ 00952182 v 0000 01 + 01 00 | make a shrill creaking, squeaking, or noise, as of a door, mouse, or bird -01049276 32 v 01 place 0 001 @ 01729431 v 0000 01 + 08 00 | sing a note with the correct pitch -01049373 32 v 01 troll 0 001 @ 01729431 v 0000 01 + 02 00 | sing loudly and without inhibition -01049470 32 v 01 croon 0 004 @ 01729431 v 0000 + 09980090 n 0101 + 00547101 n 0101 + 00546972 n 0101 02 + 02 00 + 08 00 | sing softly -01049606 32 v 01 carry 0 001 @ 01712704 v 0000 01 + 08 00 | sing or play against other voices or parts; "He cannot carry a tune" -01049737 32 v 04 chant 0 intone 0 intonate 0 cantillate 0 014 @ 01729431 v 0000 + 01254882 n 0401 + 07084166 n 0301 + 00544842 n 0301 + 01254978 n 0301 + 01254685 n 0301 + 07084166 n 0201 + 00544842 n 0201 + 01254978 n 0201 + 01254685 n 0201 + 07034634 n 0101 + 03006626 n 0101 + 01254685 n 0102 ~ 01050165 v 0000 02 + 02 00 + 08 00 | recite with musical intonation; recite as a chant or a psalm; "The rabbi chanted a prayer" -01050165 32 v 01 singsong 0 003 @ 01049737 v 0000 + 01255648 n 0102 + 07084927 n 0101 02 + 02 00 + 08 00 | speak, chant, or declaim in a singsong -01050313 32 v 02 intonate 1 intone 1 005 @ 00971650 v 0000 + 07084166 n 0201 + 07082573 n 0101 + 04986883 n 0101 + 07084166 n 0101 01 + 08 00 | speak carefully, as with rising and falling pitch or in a particular tone; "please intonate with sadness" -01050565 32 v 01 pipe_up 0 001 @ 01712704 v 0000 01 + 02 00 | begin to play or sing -01050651 32 v 03 yodel 0 warble 1 descant 0 005 @ 01729431 v 0000 + 07032026 n 0301 + 10803838 n 0101 + 01256124 n 0101 + 07123710 n 0101 01 + 02 00 | sing by changing register; sing by yodeling; "The Austrians were yodeling in the mountains" -01050896 32 v 03 warble 0 trill 0 quaver 0 004 @ 01729431 v 0000 + 06871384 n 0302 + 06860177 n 0201 + 10766492 n 0101 03 + 01 00 + 02 00 + 08 00 | sing or play with trills, alternating with the half note above or below -01051118 32 v 02 quaver 1 waver 0 002 @ 00952182 v 0000 + 07390857 n 0101 01 + 01 00 | give off unsteady sounds, alternating in amplitude or frequency -01051271 32 v 01 treble 0 002 @ 01729431 v 0000 + 04985930 n 0102 01 + 02 00 | sing treble -01051364 32 v 02 declaim 0 recite 2 007 * 00941990 v 0000 @ 01712704 v 0000 + 07234881 n 0201 + 07242470 n 0101 ~ 00769180 v 0000 ~ 01051573 v 0000 ~ 01051828 v 0000 02 + 02 00 + 08 00 | recite in elocution -01051573 32 v 01 perorate 0 002 @ 01051364 v 0000 + 07241723 n 0101 01 + 02 00 | deliver an oration in grandiloquent style -01051698 32 v 01 perorate 1 002 @ 00715074 v 0000 + 06399126 n 0101 01 + 02 00 | conclude a speech with a formal recapitulation -01051828 32 v 01 scan 0 003 @ 01051364 v 0000 + 07094508 n 0101 + 10555156 n 0101 01 + 08 00 | read metrically; "scan verses" -01051956 32 v 06 rant 0 mouth_off 0 jabber 0 spout 0 rabbit_on 0 rave 1 011 @ 00941990 v 0000 + 10507070 n 0602 + 07243193 n 0601 + 09911570 n 0406 + 10034785 n 0302 + 06610992 n 0302 + 06610992 n 0301 + 07087777 n 0103 + 07242912 n 0102 + 10507070 n 0101 + 07242912 n 0103 02 + 02 00 + 22 00 | talk in a noisy, excited, or declamatory manner -01052301 32 v 04 peep 0 cheep 0 chirp 0 chirrup 0 007 @ 00983824 v 0000 + 07379577 n 0401 + 07379409 n 0301 + 07379094 n 0201 + 01315213 n 0101 + 07379094 n 0102 ~ 01053623 v 0000 01 + 01 00 | make high-pitched sounds; "the birds were chirping in the bushes" -01052562 32 v 02 churr 0 whirr 0 001 @ 00983824 v 0000 01 + 01 00 | make a vibrant sound, as of some birds -01052671 32 v 01 chirr 0 001 @ 00983824 v 0000 01 + 01 00 | make a vibrant noise, of grasshoppers or cicadas -01052782 32 v 02 meow 0 mew 0 004 @ 00983824 v 0000 + 07386614 n 0202 + 02041678 n 0201 + 07386614 n 0101 01 + 01 00 | cry like a cat; "the cat meowed" -01052936 32 v 02 purr 0 make_vibrant_sounds 0 002 @ 02175958 v 0000 + 07390645 n 0101 02 + 01 00 + 02 00 | indicate pleasure by purring; characteristic of cats -01053098 32 v 01 quack 0 002 @ 00983824 v 0000 + 07390762 n 0101 01 + 01 00 | utter quacking noises; "The ducks quacked" -01053221 32 v 01 hoot 1 002 @ 00983824 v 0000 + 01621127 n 0104 01 + 01 00 | utter the characteristic sound of owls -01053339 32 v 02 honk 0 cronk 1 003 @ 00983824 v 0000 + 07385249 n 0101 + 01857632 n 0101 02 + 01 00 + 02 00 | cry like a goose; "The geese were honking" -01053495 32 v 02 honk 1 claxon 0 003 @ 02172888 v 0000 + 03622058 n 0202 + 10183556 n 0101 01 + 02 00 | use the horn of a car -01053623 32 v 02 chitter 0 twitter 0 003 @ 01052301 v 0000 + 02511730 n 0201 + 07379577 n 0202 01 + 01 00 | make high-pitched sounds, as of birds -01053771 32 v 04 hiss 0 siss 0 sizz 0 sibilate 0 007 @ 00983824 v 0000 + 01157179 a 0403 + 07384898 n 0405 + 07384898 n 0101 + 07123870 n 0104 + 10177014 n 0101 + 07384898 n 0102 02 + 01 00 + 02 00 | make a sharp hissing sound, as if to show disapproval -01054027 32 v 01 assibilate 0 003 @ 01054399 v 0000 + 07118747 n 0101 + 07129202 n 0102 01 + 08 00 | insert a sibilant sound before or after (another sound) -01054186 32 v 04 hiss 1 sizz 1 siss 1 sibilate 1 006 @ 00941990 v 0000 + 07129202 n 0401 + 07118747 n 0401 + 07384898 n 0101 + 07123870 n 0104 + 07384898 n 0102 02 + 08 00 + 26 00 | express or utter with a hiss -01054399 32 v 01 sibilate 2 005 @ 00983824 v 0000 + 01157179 a 0103 + 07129202 n 0101 + 07118747 n 0101 ~ 01054027 v 0000 01 + 02 00 | utter a sibilant -01054553 32 v 02 hee-haw 0 bray 0 003 @ 00983824 v 0000 + 07378059 n 0201 + 07127911 n 0101 01 + 01 00 | braying characteristic of donkeys -01054694 32 v 02 squeal 1 oink 0 003 @ 00983824 v 0000 + 07395777 n 0101 + 02395406 n 0104 01 + 01 00 | utter a high-pitched cry, characteristic of pigs -01054849 32 v 03 cluck 0 click 0 clack 1 003 @ 00983824 v 0000 + 07379963 n 0301 + 07381100 n 0101 02 + 01 00 + 02 00 | make a clucking sounds, characteristic of hens -01055018 32 v 02 moo 0 low 0 002 @ 00983824 v 0000 + 07386821 n 0101 01 + 01 00 | make a low noise, characteristic of bovines -01055146 32 v 01 click 1 002 @ 00978549 v 0000 + 07118210 n 0102 01 + 02 00 | produce a click; "Xhosa speakers click" -01055266 32 v 01 trill 1 001 @ 00978549 v 0000 01 + 08 00 | pronounce with a trill, of the phoneme `r'; "Some speakers trill their r's" -01055404 32 v 01 sibilate 3 004 @ 00978549 v 0000 + 01157179 a 0103 + 07129202 n 0101 + 07118747 n 0101 01 + 08 00 | pronounce with an initial sibilant -01055558 32 v 01 flap 0 001 @ 00978549 v 0000 01 + 08 00 | pronounce with a flap, of alveolar sounds -01055661 32 v 01 explode 2 002 @ 00978549 v 0000 + 07116443 n 0102 01 + 08 00 | cause to burst as a result of air pressure; of stop consonants like /p/, /t/, and /k/ -01055829 32 v 01 hum 0 003 @ 01729431 v 0000 + 10191802 n 0101 + 01253944 n 0101 02 + 02 00 + 08 00 | sing with closed lips; "She hummed a melody" -01055978 32 v 01 roll 0 001 @ 00978549 v 0000 01 + 08 00 | pronounce with a roll, of the phoneme /r/; "She rolls her r's" -01056102 32 v 01 cackel 2 001 @ 02135048 v 0000 01 + 01 00 | make a cackling sound; "The fire cackled cozily" -01056214 32 v 01 hum 1 003 @ 02172888 v 0000 + 07385803 n 0101 + 07385803 n 0102 01 + 01 00 | make a low continuous sound; "The refrigerator is humming" -01056369 32 v 01 cackle 0 005 @ 00983824 v 0000 + 07378437 n 0101 + 01566645 n 0102 + 01792808 n 0101 ~ 01056780 v 0000 01 + 02 00 | squawk shrilly and loudly, characteristic of hens -01056554 32 v 01 cackle 1 003 @ 00941990 v 0000 + 07136940 n 0105 + 01792808 n 0101 03 + 02 00 + 08 00 + 26 00 | talk or utter in a cackling manner; "The women cackled when they saw the movie star step out of the limousine" -01056780 32 v 01 gaggle 0 002 @ 01056369 v 0000 + 07992116 n 0101 01 + 01 00 | make a noise characteristic of a goose; "Cackling geese" -01056918 32 v 01 bridle 0 002 @ 00815686 v 0000 + 02900160 n 0101 01 + 02 00 | respond to the reins, as of horses -01057034 32 v 02 jam 0 block 0 007 @ 00778275 v 0000 + 01253379 n 0103 + 01253379 n 0101 ~ 01057342 v 0000 ~ 01057558 v 0000 ~ 01057709 v 0000 ~ 01057837 v 0000 02 + 08 00 + 11 00 | interfere with or prevent the reception of signals; "Jam the Voice of America"; "block the signals emitted by this station" -01057342 32 v 01 barrage_jam 0 001 @ 01057034 v 0000 02 + 02 00 + 08 00 | jam an entire frequency spectrum; "During the Cold War, the Soviets routinely barrage jammed to interfere with transmissions from the West" -01057558 32 v 01 point_jam 0 001 @ 01057034 v 0000 02 + 02 00 + 08 00 | jam a narrow band of frequencies; "We can counter point-jamming effectively" -01057709 32 v 01 spot_jam 0 001 @ 01057034 v 0000 02 + 02 00 + 08 00 | jam a single frequency; "This operator is spot-jammed" -01057837 32 v 01 blanket_jam 0 001 @ 01057034 v 0000 02 + 02 00 + 08 00 | jam a broad spectrum of frequencies to affect all communications in the area except for directional antenna communications -01058036 32 v 03 mince 0 soften 0 moderate 6 002 @ 00126264 v 0000 + 00353249 n 0301 01 + 08 00 | make less severe or harsh; "He moderated his tone when the students burst out in tears" -01058224 32 v 04 crunch 0 scranch 0 scraunch 0 crackle 0 003 @ 02172888 v 0000 + 07382414 n 0101 ~ 02184797 v 0000 02 + 01 00 + 02 00 | make a crushing noise; "his shoes were crunching on the gravel" -01058426 32 v 01 gobble 0 003 @ 00983824 v 0000 + 07384127 n 0101 + 01794344 n 0102 01 + 01 00 | make a gurgling sound, characteristic of turkeys -01058574 32 v 04 comment 0 notice 0 remark 1 point_out 1 008 @ 01020005 v 0000 + 05710573 n 0301 + 06410776 n 0201 + 06762711 n 0102 + 06765044 n 0102 ~ 00826509 v 0000 ~ 01058880 v 0000 ~ 01058995 v 0000 03 + 08 00 + 02 01 + 26 01 | make or write a comment on; "he commented the paper of his colleague" -01058880 32 v 01 wisecrack 0 002 @ 01058574 v 0000 + 06767777 n 0101 01 + 02 00 | make a comment, usually ironic -01058995 32 v 02 kibitz 0 kibbitz 0 002 @ 01058574 v 0000 + 10230432 n 0101 01 + 02 00 | make unwanted and intrusive comments -01059123 32 v 02 notice 1 acknowledge 7 006 @ 00717358 v 0000 + 06763681 n 0203 + 06628861 n 0201 + 05703803 n 0101 + 05703429 n 0101 ~ 01023071 v 0000 01 + 09 00 | express recognition of the presence or existence of, or acquaintance with; "He never acknowledges his colleagues when they run into him in the hallway"; "She acknowledged his complement with a smile"; "it is important to acknowledge the work of others in one's own writing" -01059564 32 v 04 ignore 2 disregard 2 snub 1 cut 5 002 @ 02514187 v 0000 + 01225997 n 0301 03 + 08 00 + 09 00 + 26 00 | refuse to acknowledge; "She cut him dead at the meeting" -01059743 32 v 04 neigh 0 nicker 0 whicker 0 whinny 0 005 @ 00983824 v 0000 + 07387316 n 0404 + 07387316 n 0303 + 07387316 n 0202 + 07387316 n 0101 01 + 01 00 | make a characteristic sound, of a horse -01059945 32 v 01 gargle 0 002 @ 00983824 v 0000 + 07384023 n 0101 01 + 08 00 | utter with gargling or burbling sounds -01060065 32 v 01 caw 0 002 @ 00983824 v 0000 + 07378682 n 0101 01 + 01 00 | utter a cry, characteristic of crows, rooks, or ravens -01060198 32 v 01 mew 3 002 @ 00983824 v 0000 + 02041678 n 0101 01 + 01 00 | utter a high-pitched cry, as of seagulls -01060317 32 v 02 give 0 throw 0 001 @ 00740577 v 0000 01 + 14 00 | convey or communicate; of a smile, a look, a physical gesture; "Throw a glance"; "She gave me a dirty look" -01060494 32 v 02 give 1 pay 0 002 @ 00740577 v 0000 ~ 02297742 v 0000 03 + 08 00 + 14 00 + 15 00 | convey, as of a compliment, regards, attention, etc.; bestow; "Don't pay him any mind"; "give the orders"; "Give him my best regards"; "pay attention" -01060746 32 v 02 give 2 render 0 004 $ 01069638 v 0000 @ 00740577 v 0000 + 01122037 n 0201 ~ 00887142 v 0000 01 + 15 00 | bestow; "give homage"; "render thanks" -01060909 32 v 01 catcall 0 002 @ 00852922 v 0000 + 07122018 n 0101 02 + 09 00 + 10 00 | utter catcalls at -01061017 32 v 03 carry 2 convey 1 express 2 006 $ 02079933 v 0000 @ 00740577 v 0000 + 00943363 a 0301 + 00497148 a 0301 + 00318735 n 0101 ~ 00489837 v 0000 02 + 08 00 + 11 00 | serve as a means for expressing something; "The painting of Mary carries motherly love"; "His voice carried a lot of anger" -01061320 32 v 01 carry 7 002 $ 01449974 v 0000 @ 00742320 v 0000 01 + 11 00 | pass on a communication; "The news was carried to every village in the province" -01061481 32 v 02 express 3 state 2 004 @ 00931467 v 0000 + 00943363 a 0101 ~ 02462386 v 0000 ~ 02462580 v 0000 02 + 11 00 + 21 00 | indicate through a symbol, formula, etc.; "Can you express this distance in kilometers?" -01061704 32 v 01 haw 0 001 @ 00983824 v 0000 01 + 02 00 | utter `haw'; "he hemmed and hawed" -01061799 32 v 01 hem 0 001 @ 00983824 v 0000 01 + 02 00 | utter `hem' or `ahem' -01061881 32 v 01 hem_and_haw 0 001 @ 02641035 v 0000 01 + 02 00 | utter `hems' and `haws'; indicated hesitation; "He hemmed and hawed when asked to address the crowd" -01062050 32 v 01 hypothecate 0 001 @ 00886281 v 0000 01 + 08 00 | pledge without delivery or title of possession -01062165 32 v 01 rubbish 0 001 @ 00862683 v 0000 02 + 08 00 + 09 00 | attack strongly -01062253 32 v 03 render 1 deliver 1 return 3 001 @ 00742320 v 0000 02 + 08 00 + 11 00 | pass down; "render a verdict"; "deliver a judgment" -01062395 32 v 02 set 1 mark 3 002 @ 00665476 v 0000 + 00064789 n 0203 02 + 08 00 + 11 00 | establish as the highest level or best performance; "set a record" -01062555 32 v 03 send 2 get_off 5 send_off 0 003 @ 02232190 v 0000 + 06629858 n 0302 + 00121166 n 0101 01 + 08 00 | transfer; "The spy sent the classified information off to Russia" -01062739 32 v 01 call 4 003 $ 00789448 v 0000 @ 00790703 v 0000 ;c 06271778 n 0000 05 + 01 00 + 02 00 + 08 00 + 09 00 + 11 00 | send a message or attempt to reach someone by radio, phone, etc.; make a signal to in order to transmit a message; "Hawaii is calling!"; "A transmitter in Samoa was heard calling" -01063049 32 v 01 issue 1 002 @ 00740577 v 0000 + 01103614 n 0101 02 + 08 00 + 11 00 | bring out an official document (such as a warrant) -01063188 32 v 01 provide 0 002 @ 01018928 v 0000 + 06755947 n 0101 03 + 04 00 + 26 00 + 34 00 | determine (what is to happen in certain contingencies), especially by including a proviso condition or stipulation; "The will provides that each child should receive half of the money"; "The Constitution provides for the right to free speech" -01063529 32 v 02 come_across 0 come_over 0 001 @ 00740577 v 0000 02 + 01 00 + 02 00 | communicate the intended meaning or impression; "He came across very clearly" -01063695 32 v 02 invite 1 call_for 3 004 @ 00752764 v 0000 + 01358534 a 0101 + 07186148 n 0101 $ 00752764 v 0000 01 + 08 00 | request the participation or presence of; "The organizers invite submissions of papers for the conference" -01063930 32 v 01 share 0 002 @ 00740577 v 0000 + 07134575 n 0102 01 + 08 00 | communicate; "I'd like to share this idea with you" -01064062 32 v 01 pooh-pooh 1 001 @ 00940384 v 0000 01 + 08 00 | express contempt about -01064151 32 v 02 thrash_out 0 hammer_out 0 001 @ 00813978 v 0000 02 + 08 00 + 11 00 | discuss vehemently in order to reach a solution or an agreement; "The leaders of the various Middle Eastern countries are trying to hammer out a peace agreement" -01064401 32 v 02 croak 1 cronk 0 004 @ 00983824 v 0000 + 07125367 n 0101 + 02596381 n 0101 + 07125367 n 0102 01 + 01 00 | utter a hoarse sound, like a raven -01064560 32 v 01 spell 2 004 @ 00776988 v 0000 + 07159791 n 0101 + 14407536 n 0102 ! 01064696 v 0101 01 + 09 00 | place under a spell -01064696 32 v 01 unspell 0 002 @ 02421374 v 0000 ! 01064560 v 0101 01 + 09 00 | release from a spell -01064799 32 v 04 write_out 0 issue 2 make_out 0 cut 0 002 @ 00993014 v 0000 ~ 01064999 v 0000 01 + 08 00 | make out and issue; "write out a check"; "cut a ticket"; "Please make the check out to me" -01064999 32 v 01 check 7 002 @ 01064799 v 0000 + 13381734 n 0101 01 + 02 00 | write out a check on a bank account -01065115 32 v 02 introduce 2 bring_out 1 001 @ 00901103 v 0000 02 + 08 00 + 09 00 | bring before the public for the first time, as of an actor, song, etc. -01065272 32 v 02 puff 1 puff_up 0 002 @ 00856824 v 0000 + 06695110 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | praise extravagantly; "The critics puffed up this Broadway production" -01065456 32 v 01 explain 1 003 @ 01009240 v 0000 + 01324683 a 0101 + 06738281 n 0101 01 + 26 00 | define; "The committee explained their plan for fund-raising to the Dean" -01065630 32 v 01 babble 2 004 @ 00941990 v 0000 + 09911570 n 0102 + 06610143 n 0101 + 06610143 n 0102 02 + 02 00 + 08 00 | utter meaningless sounds, like a baby, or utter in an incoherent way; "The old man is only babbling--don't pay attention" -01065877 32 v 02 keep 0 maintain 4 001 @ 01000214 v 0000 01 + 08 00 | maintain by writing regular records; "keep a diary"; "maintain a record"; "keep notes" -01066036 32 v 01 get 3 001 @ 00740577 v 0000 02 + 08 00 + 09 00 | communicate with a place or person; establish communication with, as if by telephone; "Bill called this number and he got Mary"; "The operator couldn't get Kobe because of the earthquake" -01066292 32 v 01 think_twice 0 001 @ 00813044 v 0000 01 + 02 00 | consider and reconsider carefully; "Think twice before you have a child" -01066433 32 v 03 confront 3 face 3 present 6 002 $ 00812298 v 0000 + 00651670 n 0101 05 + 08 00 + 09 00 + 10 00 + 11 00 + 17 03 | present somebody with something, usually to accuse or criticize; "We confronted him with the evidence"; "He was faced with all the evidence and could no longer deny his actions"; "An enormous dilemma faces us" -01066775 32 v 03 tone 0 chant 1 intone 4 003 @ 00941990 v 0000 + 01254685 n 0301 + 07034634 n 0201 01 + 08 00 | utter monotonously and repetitively and rhythmically; "The students chanted the same slogan over and over again" -01067002 32 v 01 gulp 0 002 @ 00941990 v 0000 + 00840363 n 0102 01 + 08 00 | utter or make a noise, as when swallowing too quickly; "He gulped for help after choking on a big piece of meat" -01067194 32 v 01 menace 0 002 @ 00943837 v 0000 + 06733782 n 0101 02 + 09 00 + 10 00 | express a threat either by an utterance or a gesture; "he menaced the bank manager with a stick" -01067380 32 v 01 beam 1 001 @ 00943837 v 0000 02 + 08 00 + 15 00 | express with a beaming face or smile; "he beamed his approval" -01067512 32 v 01 smile 0 003 @ 00943837 v 0000 + 06878071 n 0101 + 10614363 n 0101 02 + 08 00 + 15 00 | express with a smile; "She smiled her thanks" -01067664 32 v 02 hurl 0 throw 3 001 @ 00940384 v 0000 01 + 08 00 | utter with force; utter vehemently; "hurl insults"; "throw accusations at someone" -01067816 32 v 01 sing 8 004 @ 00983824 v 0000 + 06796642 n 0104 + 10599806 n 0101 $ 01731031 v 0000 02 + 01 00 + 11 00 | to make melodious sounds; "The nightingale was singing" -01067995 32 v 01 call d 002 $ 00971015 v 0000 @ 00626428 v 0000 01 + 08 00 | read aloud to check for omissions or absentees; "Call roll" -01068134 32 v 01 write_up 2 002 @ 00993014 v 0000 + 06681551 n 0105 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring to public notice by writing, with praise or condemnation; "The New York Times wrote him up last week"; "Did your boss write you up?" -01068380 32 v 02 traverse 0 deny 5 003 ;c 00611143 n 0000 + 10003283 n 0201 + 01198750 n 0203 01 + 08 00 | deny formally (an allegation of fact by the opposing party) in a legal suit -01068565 32 v 01 ask 9 001 @ 00754942 v 0000 01 + 08 00 | require or ask for as a price or condition; "He is asking $200 for the table"; "The kidnappers are asking a million dollars in return for the release of their hostage" -01068793 32 v 01 call 6 004 @ 00928015 v 0000 ;c 00523513 n 0000 + 00164801 n 0101 $ 00822746 v 0000 01 + 08 00 | indicate a decision in regard to; "call balls and strikes behind the plate" -01068985 32 v 01 demand 5 002 $ 01069090 v 0000 @ 00791134 v 0000 02 + 09 00 + 10 00 | summon to court -01069090 32 v 01 demand 9 002 @ 01018352 v 0000 $ 01068985 v 0000 01 + 08 00 | lay legal claim to -01069190 32 v 01 connect 0 003 @ 01295275 v 0000 + 00145218 n 0102 $ 01069391 v 0000 01 + 20 00 | join for the purpose of communication; "Operator, could you connect me to the Raffles in Singapore?" -01069391 32 v 01 connect c 004 $ 01069190 v 0000 @ 01295275 v 0000 + 00145218 n 0102 + 00145218 n 0103 02 + 08 00 + 11 00 | join by means of communication equipment; "The telephone company finally put in lines to connect the towns in this area" -01069638 32 v 01 give b 004 $ 00748616 v 0000 @ 02255268 v 0000 ;c 08441203 n 0000 $ 01060746 v 0000 01 + 08 00 | accord by verdict; "give a decision for the plaintiff" -01069809 32 v 01 request d 003 @ 00729378 v 0000 + 07185325 n 0101 ~ 01069989 v 0000 02 + 08 00 + 16 00 | inquire for (information); "I requested information from the secretary" -01069989 32 v 01 seek 0 001 @ 01069809 v 0000 02 + 08 00 + 16 00 | inquire for; "seek directions from a local" -01070102 32 v 01 communicate 2 008 @ 02376958 v 0000 + 00494907 a 0101 + 00494907 a 0102 + 06252138 n 0101 + 00033020 n 0101 + 09610660 n 0101 + 06252138 n 0102 ~ 01071328 v 0000 02 + 01 00 + 02 00 | be in verbal contact; interchange information or ideas; "He and his sons haven't communicated for years"; "Do you communicate well with your advisor?" -01070455 32 v 02 etymologize 0 etymologise 0 003 @ 00251615 v 0000 + 06514621 n 0101 + 06168855 n 0101 02 + 02 00 + 08 00 | give the etymology or derivation or suggest an etymology (for a word); "The linguist probably etymologized the words incorrectly"; "Although he is not trained in this, his hobby is etymologizing" -01070777 32 v 01 begin 4 001 $ 00345761 v 0000 01 + 08 00 | begin to speak, understand, read, and write a language; "She began Russian at an early age"; "We started French in fourth grade" -01070968 32 v 01 stet 0 002 @ 00749205 v 0000 $ 02601680 v 0000 01 + 02 00 | printing: direct that a matter marked for omission or correction is to be retained (used in the imperative) -01071155 32 v 01 reprobate 1 003 @ 00906735 v 0000 ;c 06183899 n 0000 + 14414146 n 0101 01 + 09 00 | abandon to eternal damnation; "God reprobated the unrepenting sinner" -01071328 32 v 01 message 0 002 @ 01070102 v 0000 $ 01071474 v 0000 01 + 02 00 | send a message; "There is no messaging service at this company" -01071474 32 v 01 message 1 003 $ 01071328 v 0000 @ 00742320 v 0000 $ 01071632 v 0000 01 + 08 00 | send as a message; "She messaged the final report by fax" -01071632 32 v 01 message 2 002 $ 01071474 v 0000 @ 00742320 v 0000 01 + 08 00 | send a message to; "She messaged the committee" -01071762 32 v 01 conclude 6 001 @ 01035530 v 0000 01 + 08 00 | reach agreement on; "They concluded an economic agreement"; "We concluded a cease-fire" -01071916 32 v 02 pluralize 0 pluralise 0 003 @ 00982514 v 0000 + 13804507 n 0202 + 13804507 n 0101 01 + 08 00 | mark with a grammatical morpheme that indicates plural; "How do speakers pluralize nouns in Japanese?" -01072133 32 v 01 harsh_on 0 001 @ 00826509 v 0000 01 + 09 00 | criticize harshly; "the teacher keeps harshing on the same kid" -01072262 33 v 03 compete 0 vie 0 contend 0 013 + 01168569 n 0302 + 10533013 n 0305 + 00512487 a 0101 + 00512487 a 0102 + 01168569 n 0101 + 10533013 n 0103 ~ 01072807 v 0000 ~ 01072949 v 0000 ~ 01081505 v 0000 ~ 01086103 v 0000 ~ 01122194 v 0000 ~ 01122405 v 0000 ~ 02672187 v 0000 02 + 22 00 + 02 01 | compete for something; engage in a contest; measure oneself against others -01072641 33 v 02 put_in 0 submit 2 002 @ 00765396 v 0000 + 10669486 n 0201 01 + 02 00 | make an application as for a job or funding; "We put in a grant to the NSF" -01072807 33 v 02 try_for 0 go_for 0 001 @ 01072262 v 0000 01 + 08 00 | make an attempt at achieving something; "She tried for the Olympics" -01072949 33 v 01 play 0 045 @ 01072262 v 0000 + 15256915 n 0103 + 00557588 n 0101 + 10440387 n 0101 + 10439851 n 0101 + 00041188 n 0101 ^ 01081652 v 0101 ~ 01073953 v 0000 ~ 01074074 v 0000 ~ 01074206 v 0000 ~ 01074357 v 0000 ~ 01074509 v 0000 ~ 01074701 v 0000 ~ 01074914 v 0000 ~ 01075044 v 0000 ~ 01075164 v 0000 ~ 01075327 v 0000 ~ 01075498 v 0000 ~ 01075612 v 0000 ~ 01075883 v 0000 ~ 01076017 v 0000 ~ 01076130 v 0000 ~ 01076250 v 0000 ~ 01076370 v 0000 ~ 01076514 v 0000 ~ 01078689 v 0000 $ 01079480 v 0000 ~ 01081652 v 0000 ~ 01081852 v 0000 ~ 01082454 v 0000 ~ 01084048 v 0000 ~ 01084170 v 0000 ~ 01085130 v 0000 ~ 01117484 v 0000 ~ 01138523 v 0000 ~ 01140654 v 0000 ~ 01146507 v 0000 ~ 01146793 v 0000 ~ 01147296 v 0000 ~ 01147709 v 0000 ~ 01154382 v 0000 ~ 01154669 v 0000 ~ 01403785 v 0000 ~ 01992375 v 0000 ~ 02300060 v 0000 02 + 02 00 + 08 00 | participate in games or sport; "We played hockey all afternoon"; "play cards"; "Pele played for the Brazilian teams in many important matches" -01073953 33 v 01 line_up 0 002 @ 01072949 v 0000 ;c 00468480 n 0000 01 + 02 00 | take one's position before a kick-off -01074074 33 v 01 curl 0 003 @ 01072949 v 0000 ;c 00523513 n 0000 + 00461611 n 0101 01 + 02 00 | play the Scottish game of curling -01074206 33 v 01 snooker 0 003 @ 01072949 v 0000 ;c 00501304 n 0000 + 00501304 n 0101 01 + 02 00 | leave one's opponent unable to take a direct shot -01074357 33 v 01 revoke 4 003 @ 01072949 v 0000 ;c 00488225 n 0000 + 01259211 n 0101 01 + 02 00 | fail to follow suit when able and required to do so -01074509 33 v 01 develop 2 004 $ 01074701 v 0000 @ 01072949 v 0000 ;c 00503237 n 0000 + 14422871 n 0101 01 + 08 00 | move into a strategically more advantageous position; "develop the rook" -01074701 33 v 01 develop 3 004 @ 01072949 v 0000 ;c 00503237 n 0000 + 14422871 n 0101 $ 01074509 v 0000 01 + 02 00 | move one's pieces into strategically more advantageous positions; "Spassky developed quickly" -01074914 33 v 01 die 0 002 @ 01072949 v 0000 ;c 00471613 n 0000 01 + 02 00 | to be on base at the end of an inning, of a player -01075044 33 v 01 misplay 0 002 @ 01072949 v 0000 + 00072068 n 0102 01 + 02 00 | play wrong or in an unskillful manner -01075164 33 v 01 start 0 005 @ 01072949 v 0000 ;c 00523513 n 0000 + 00235435 n 0102 + 00241699 n 0101 + 00241699 n 0102 01 + 02 00 | play in the starting lineup -01075327 33 v 01 fumble 0 003 @ 01072949 v 0000 ;c 00471613 n 0000 + 00075912 n 0101 01 + 08 00 | drop or juggle or fail to play cleanly a grounder; "fumble a grounder" -01075498 33 v 01 volley 0 003 @ 01072949 v 0000 ;c 00479076 n 0000 + 00569733 n 0101 01 + 02 00 | make a volley -01075612 33 v 01 unblock 0 002 @ 01072949 v 0000 ;c 00488225 n 0000 01 + 08 00 | play the cards of (a suit) so that the last trick on which a hand can follow suit will be taken by a higher card in the hand of a partner who has the remaining cards of a combined holding -01075883 33 v 01 replay 0 002 @ 01072949 v 0000 + 07343195 n 0101 01 + 08 00 | play again; "We replayed the game"; "replay a point" -01076017 33 v 01 cricket 0 003 @ 01072949 v 0000 + 00476389 n 0101 + 09977326 n 0101 01 + 02 00 | play cricket -01076130 33 v 01 backstop 0 003 @ 01072949 v 0000 ;c 00471613 n 0000 + 02771547 n 0101 01 + 02 00 | act as a backstop -01076250 33 v 01 fullback 0 003 @ 01072949 v 0000 ;c 00468480 n 0000 + 10115430 n 0101 01 + 02 00 | play the fullback -01076370 33 v 01 quarterback 0 004 @ 01072949 v 0000 ;c 00468480 n 0000 + 00726567 n 0101 + 10498816 n 0101 01 + 02 00 | play the quarterback -01076514 33 v 01 cradle 0 002 @ 01072949 v 0000 ;c 00477392 n 0000 01 + 02 00 | run with the stick -01076615 33 v 02 move 0 go 0 013 $ 00879356 v 0000 * 01072949 v 0000 + 15292069 n 0201 + 00166172 n 0101 ~ 01076953 v 0000 ~ 01077203 v 0000 ~ 01077329 v 0000 ~ 01077568 v 0000 ~ 01077887 v 0000 ~ 01078050 v 0000 ~ 01078235 v 0000 ~ 01109863 v 0000 ~ 01139756 v 0000 01 + 02 00 | have a turn; make one's move in a game; "Can I go now?" -01076953 33 v 02 bluff 0 bluff_out 0 004 @ 01076615 v 0000 ;c 00488225 n 0000 + 00756598 n 0101 + 09861718 n 0101 02 + 02 00 + 09 00 | deceive an opponent by a bold bet on an inferior hand with the result that the opponent withdraws a winning hand -01077203 33 v 01 stalemate 0 003 @ 01076615 v 0000 ;c 00503237 n 0000 + 07354080 n 0101 01 + 09 00 | subject to a stalemate -01077329 33 v 01 castle 0 005 @ 01076615 v 0000 ;c 00503237 n 0000 + 02980625 n 0101 + 00166552 n 0101 + 00166552 n 0102 01 + 08 00 | move the king two squares toward a rook and in the same move the rook to the square next past the king -01077568 33 v 01 serve 1 005 @ 01076615 v 0000 ;c 00479076 n 0000 + 00568430 n 0101 + 10582604 n 0101 ~ 01077759 v 0000 01 + 02 00 | put the ball into play; "It was Agassi's turn to serve" -01077759 33 v 01 ace 1 003 @ 01077568 v 0000 ;c 00482298 n 0000 + 00568701 n 0101 01 + 09 00 | serve an ace against (someone) -01077887 33 v 01 open 0 003 @ 01076615 v 0000 ;c 00503237 n 0000 + 00239230 n 0104 01 + 02 00 | make the opening move; "Kasparov opened with a standard opening" -01078050 33 v 02 draw 1 cast 0 005 @ 01076615 v 0000 + 01245813 n 0201 + 03233246 n 0101 + 03233423 n 0101 + 00508091 n 0102 01 + 02 00 | choose at random; "draw a card"; "cast lots" -01078235 33 v 02 trump 1 ruff 0 007 @ 01076615 v 0000 ;c 00488225 n 0000 + 01259380 n 0201 + 04491135 n 0101 + 01259380 n 0102 ~ 01078426 v 0000 ~ 01078573 v 0000 01 + 02 00 | play a trump -01078426 33 v 01 overtrump 0 002 @ 01078235 v 0000 ;c 00488225 n 0000 01 + 02 00 | play a trump higher than (one previously played) to the trick -01078573 33 v 01 crossruff 0 002 @ 01078235 v 0000 ;c 00488225 n 0000 01 + 02 00 | trump alternately in two hands -01078689 33 v 01 exit 0 002 @ 01072949 v 0000 ;c 00488225 n 0000 01 + 02 00 | lose the lead -01078783 33 v 02 confront 0 face 0 008 @ 01079480 v 0000 + 04838210 n 0204 ^ 01084048 v 0201 + 07231728 n 0101 + 01169744 n 0101 ~ 01079172 v 0000 ~ 01079339 v 0000 ~ 01081152 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | oppose, as in hostility or a competition; "You must confront your opponent"; "Jackson faced Smith in the boxing ring"; "The two enemies finally confronted each other" -01079172 33 v 02 front 0 breast 0 003 @ 01078783 v 0000 + 08573472 n 0101 + 03398467 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | confront bodily; "breast the storm" -01079339 33 v 01 take_the_bull_by_the_horns 0 001 @ 01078783 v 0000 01 + 02 00 | face a difficulty and grapple with it without avoiding it -01079480 33 v 04 meet 0 encounter 0 play 2 take_on 1 011 $ 01072949 v 0000 * 01072262 v 0000 + 15256915 n 0303 + 00041188 n 0301 + 00959376 n 0203 + 07467846 n 0101 ~ 01078783 v 0000 $ 01079873 v 0000 $ 01080064 v 0000 $ 01080691 v 0000 ~ 01081001 v 0000 01 + 09 00 | contend against an opponent in a sport, game, or battle; "Princeton plays Yale this weekend"; "Charlie likes to play Mary" -01079873 33 v 01 play c 004 $ 01079480 v 0000 @ 01158872 v 0000 + 00557588 n 0101 $ 01149470 v 0000 01 + 09 00 | employ in a game or in a specific position; "They played him on first base" -01080064 33 v 01 play d 005 $ 01079480 v 0000 @ 01158872 v 0000 + 00557588 n 0101 ~ 01080235 v 0000 $ 01149470 v 0000 01 + 08 00 | use or move; "I had to play my queen" -01080235 33 v 01 promote 0 004 @ 01080064 v 0000 ;c 00503237 n 0000 $ 01080523 v 0000 ~ 02593790 v 0000 01 + 08 00 | change a pawn for a better piece by advancing it to the eighth row, or change a checker piece for a more valuable piece by moving it to the row closest to your opponent -01080523 33 v 01 promote 1 004 $ 01080235 v 0000 @ 00109660 v 0000 ;c 00502415 n 0000 ~ 01969991 v 0000 01 + 01 00 | be changed for a superior chess or checker piece -01080691 33 v 01 play 9 004 $ 01079480 v 0000 @ 01405044 v 0000 + 00556313 n 0103 ~ 01080883 v 0000 01 + 08 00 | shoot or hit in a particular manner; "She played a good backhand last night" -01080883 33 v 01 hook 0 002 @ 01080691 v 0000 ;c 00470966 n 0000 01 + 08 00 | secure with the foot; "hook the ball" -01081001 33 v 01 replay 1 002 @ 01079480 v 0000 + 07343195 n 0101 01 + 09 00 | repeat a game against the same opponent; "Princeton replayed Harvard" -01081152 33 v 04 pit 0 oppose 0 match 0 play_off 0 005 @ 01078783 v 0000 + 07465290 n 0401 + 07470671 n 0301 + 01246148 a 0201 + 10379620 n 0202 02 + 09 00 + 10 00 | set into opposition or rivalry; "let them match their best athletes against ours"; "pit a chess player against the Russian champion"; "He plays his two children off against each other" -01081505 33 v 01 run_off 0 003 @ 01072262 v 0000 ;c 00455599 n 0000 + 00183357 n 0101 01 + 08 00 | decide (a contest or competition) by a runoff -01081652 33 v 01 play_out 0 003 @ 01072949 v 0000 ;c 00455599 n 0000 $ 01715185 v 0000 01 + 08 00 | play to a finish; "We have got to play this game out, even thought it is clear that we have last" -01081852 33 v 01 field 0 006 @ 01072949 v 0000 ;c 00523513 n 0000 + 08570758 n 0104 + 10086383 n 0101 + 10086568 n 0101 + 00126721 n 0101 01 + 02 00 | play as a fielder -01082023 33 v 01 bear_down 0 002 @ 01090335 v 0000 ;c 00471613 n 0000 01 + 02 00 | exert full strength; "The pitcher bore down" -01082153 33 v 01 fistfight 0 002 @ 01090335 v 0000 + 01173826 n 0101 01 + 02 00 | fight with the fists; "The man wanted to fist-fight" -01082290 33 v 01 field 1 004 @ 01210737 v 0000 + 10086383 n 0101 + 08570758 n 0104 + 00126721 n 0101 01 + 08 00 | catch or pick up (balls) in baseball or cricket -01082454 33 v 01 catch 0 004 @ 01072949 v 0000 ;c 00471613 n 0000 + 09901143 n 0101 $ 01439190 v 0000 01 + 02 00 | be the catcher; "Who is catching?" -01082606 33 v 02 enter 0 participate 0 007 + 00716211 a 0201 + 13924659 n 0201 + 01239064 n 0202 + 10401829 n 0201 + 10060075 n 0101 ! 01083044 v 0101 ~ 01082937 v 0000 03 + 02 00 + 08 00 + 22 00 | become a participant; be involved in; "enter a race"; "enter an agreement"; "enter a drug treatment program"; "enter negotiations" -01082937 33 v 01 jump 3 001 @ 01082606 v 0000 01 + 22 00 | enter eagerly into; "He jumped into the game" -01083044 33 v 08 drop_out 0 give_up 0 fall_by_the_wayside 0 drop_by_the_wayside 0 throw_in 0 throw_in_the_towel 0 quit 5 chuck_up_the_sponge 0 002 + 10502046 n 0701 ! 01082606 v 0101 04 + 02 00 + 22 00 + 08 07 + 08 02 | give up in the face of defeat of lacking hope; admit defeat; "In the second round, the challenger gave up" -01083373 33 v 02 demolish 0 destroy 0 005 @ 01108148 v 0000 + 01249483 n 0101 ~ 01083576 v 0000 ~ 01083769 v 0000 ~ 01083920 v 0000 01 + 09 00 | defeat soundly; "The home team demolished the visitors" -01083576 33 v 01 smash 0 001 @ 01083373 v 0000 02 + 08 00 + 09 00 | overthrow or destroy (something considered evil or harmful); "The police smashed the drug ring after they were tipped off" -01083769 33 v 01 swallow 0 001 @ 01083373 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | engulf and destroy; "The Nazis swallowed the Baltic countries" -01083920 33 v 01 cut_to_ribbons 0 001 @ 01083373 v 0000 01 + 09 00 | defeat totally; "We must cut the other team to ribbons!" -01084048 33 v 02 face_off 0 bully_off 0 002 @ 01072949 v 0000 + 00239024 n 0101 01 + 02 00 | start a game by a face-off -01084170 33 v 01 tee_off 0 003 @ 01072949 v 0000 ;c 00464894 n 0000 + 00574077 n 0101 01 + 02 00 | strike a ball from the teeing ground at the start of a hole -01084331 33 v 01 par 0 003 @ 01111816 v 0000 ;c 00464894 n 0000 + 13596756 n 0101 01 + 08 00 | make a score (on a hole) equal to par -01084466 33 v 01 shoot 6 002 @ 01111816 v 0000 ;c 00523513 n 0000 01 + 08 00 | score; "shoot a basket"; "shoot a goal" -01084588 33 v 01 convert 0 004 @ 01111816 v 0000 ;c 00461782 n 0000 $ 01084724 v 0000 $ 01084866 v 0000 01 + 08 00 | score (a spare) -01084724 33 v 01 convert 1 002 $ 01084588 v 0000 @ 01111816 v 0000 01 + 08 00 | complete successfully; "score a penalty shot or free throw" -01084866 33 v 01 convert 2 003 $ 01084588 v 0000 @ 01111816 v 0000 + 00189106 n 0101 01 + 02 00 | score an extra point or points after touchdown by kicking the ball through the uprights or advancing the ball into the end zone; "Smith converted and his team won" -01085130 33 v 01 ace 2 002 @ 01072949 v 0000 ;c 00464894 n 0000 01 + 08 00 | play (a hole) in one stroke -01085237 33 v 02 referee 0 umpire 0 007 @ 00672277 v 0000 ;c 00523513 n 0000 + 07151285 n 0201 + 01191755 n 0201 + 10735984 n 0201 + 10514429 n 0101 + 01191755 n 0104 02 + 02 00 + 08 00 | be a referee or umpire in a sports competition -01085474 33 v 03 handicap 0 hinder 0 hamper 0 003 @ 02513460 v 0000 + 04181228 n 0303 + 05689249 n 0108 02 + 08 00 + 09 00 | put at a disadvantage; "The brace I have to wear is hindering my movements" -01085677 33 v 01 bias 0 003 @ 00680145 v 0000 + 06201908 n 0101 ~ 01085874 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | influence in an unfair way; "you are biasing my choice by telling me yours" -01085874 33 v 01 handicap 1 003 @ 01085677 v 0000 + 05156822 n 0101 + 10370683 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | attempt to forecast the winner (especially in a horse race) and assign odds for or against a contestant -01086103 33 v 02 race 0 run 1 016 @ 01072262 v 0000 + 07460104 n 0203 + 10542888 n 0201 + 00440039 n 0202 ^ 01081505 v 0201 + 07458453 n 0101 + 07472657 n 0101 + 04037443 n 0101 + 02384858 n 0101 + 00449295 n 0101 ~ 01086549 v 0000 ~ 01086691 v 0000 ~ 01086854 v 0000 ~ 01086965 v 0000 ~ 01094086 v 0000 ~ 01938288 v 0000 02 + 02 00 + 22 00 | compete in a race; "he is running the Marathon this year"; "let's race and see who gets there first" -01086549 33 v 01 show 0 001 @ 01086103 v 0000 01 + 01 00 | finish third or better in a horse or dog race; "he bet $2 on number six to show" -01086691 33 v 01 place 2 002 @ 01086103 v 0000 + 06483454 n 0101 01 + 01 00 | finish second or better in a horse or dog race; "he bet $2 on number six to place" -01086854 33 v 01 boat-race 0 002 * 01944692 v 0000 @ 01086103 v 0000 01 + 02 00 | participate in a boat race -01086965 33 v 01 horse-race 0 002 @ 01086103 v 0000 ~ 01087074 v 0000 01 + 02 00 | compete in a horse race -01087074 33 v 01 jockey 3 002 @ 01086965 v 0000 + 10223177 n 0101 01 + 02 00 | ride a racehorse as a professional jockey -01087197 33 v 04 arm 0 build_up 0 fortify 0 gird 0 008 + 05635624 n 0301 + 03420559 n 0302 + 08197742 n 0101 + 01156899 n 0102 + 04565375 n 0102 ! 01087835 v 0101 ~ 01087559 v 0000 ~ 01087729 v 0000 01 + 02 00 | prepare oneself for a military confrontation; "The U.S. is girding for a conflict in the Middle East"; "troops are building up on the Iraqi border" -01087559 33 v 02 rearm 0 re-arm 0 002 @ 01087197 v 0000 + 01157384 n 0101 02 + 01 00 + 02 00 | arm anew; "After the war, the defeated country was not allowed to rearm" -01087729 33 v 01 forearm 0 001 @ 01087197 v 0000 02 + 02 00 + 09 00 | arm in advance of a confrontation -01087835 33 v 03 disarm 0 demilitarize 2 demilitarise 2 003 + 01157557 n 0102 + 01157557 n 0101 ! 01087197 v 0101 02 + 08 00 + 09 00 | remove offensive capability from -01088005 33 v 02 disarm 1 unarm 0 005 @ 02314275 v 0000 + 01157557 n 0102 + 10390199 n 0103 + 01157557 n 0101 ~ 01099390 v 0000 01 + 09 00 | take away the weapons from; render harmless -01088192 33 v 03 demobilize 0 demobilise 0 demob 0 005 @ 01097743 v 0000 + 01158190 n 0202 ! 01088381 v 0202 + 01158190 n 0101 ! 01088381 v 0101 01 + 02 00 | retire from military service -01088381 33 v 02 mobilize 0 mobilise 0 005 @ 01098869 v 0000 + 01156438 n 0202 ! 01088192 v 0202 + 01156438 n 0101 ! 01088192 v 0101 01 + 02 00 | get ready for war -01088547 33 v 01 man 0 004 @ 01088749 v 0000 + 10745332 n 0105 ~ 01089614 v 0000 $ 02420991 v 0000 01 + 08 00 | provide with workers; "We cannot man all the desks"; "Students were manning the booths" -01088749 33 v 01 staff 0 004 @ 01182709 v 0000 + 08287586 n 0101 + 08439955 n 0101 ~ 01088547 v 0000 01 + 08 00 | provide with staff; "This position is not always staffed" -01088923 33 v 04 station 0 post 0 send 0 place 0 007 @ 01850315 v 0000 + 00586262 n 0407 + 08624385 n 0102 + 08656590 n 0101 ~ 01089137 v 0000 ~ 01155421 v 0000 ~ 02333689 v 0000 01 + 20 00 | assign to a station -01089137 33 v 01 garrison 0 003 @ 01088923 v 0000 + 08398036 n 0101 + 03420559 n 0101 02 + 08 00 + 09 00 | station (troops) in a fort or garrison -01089285 33 v 02 team 0 team_up 0 002 @ 01089878 v 0000 + 08208560 n 0101 01 + 22 00 | form a team; "We teamed up for this new project" -01089423 33 v 01 embed 0 001 @ 01089878 v 0000 01 + 22 00 | attach to, as a journalist to a military unit when reporting on a war; "The young reporter was embedded with the Third Division" -01089614 33 v 01 crew 0 003 @ 01088547 v 0000 + 08273736 n 0101 + 08273167 n 0101 01 + 08 00 | serve as a crew member on -01089737 33 v 02 gang 0 gang_up 0 003 @ 01089878 v 0000 + 08242799 n 0101 + 08273843 n 0103 02 + 09 00 + 22 00 | act as an organized group -01089878 33 v 02 group 0 aggroup 0 008 @ 02428924 v 0000 + 00031264 n 0101 + 01012360 n 0101 ~ 01089285 v 0000 ~ 01089423 v 0000 ~ 01089737 v 0000 ~ 01090107 v 0000 ~ 01090216 v 0000 01 + 08 00 | form a group or group together -01090107 33 v 01 pool 0 002 @ 01089878 v 0000 + 08481369 n 0101 01 + 02 00 | join or form a pool of people -01090216 33 v 01 brigade 0 002 @ 01089878 v 0000 + 08213978 n 0101 02 + 02 00 + 09 00 | form or unite into a brigade -01090335 33 v 03 contend 1 fight 0 struggle 0 032 * 01072262 v 0000 + 00958896 n 0302 + 00446493 n 0201 + 00953559 n 0203 + 01170962 n 0201 + 09939313 n 0204 + 03335030 n 0201 + 01170962 n 0202 ^ 01131197 v 0203 ~ 01082023 v 0000 ~ 01082153 v 0000 ~ 01091160 v 0000 ~ 01091298 v 0000 ~ 01091427 v 0000 ~ 01092128 v 0000 ~ 01092284 v 0000 ~ 01092366 v 0000 ~ 01093172 v 0000 ~ 01119169 v 0000 ~ 01121948 v 0000 ~ 01122736 v 0000 ~ 01123030 v 0000 ~ 01123159 v 0000 ~ 01123261 v 0000 ~ 01123765 v 0000 ~ 01138446 v 0000 ~ 01146918 v 0000 ~ 01419982 v 0000 ~ 01420304 v 0000 ~ 01504480 v 0000 ~ 01504699 v 0000 ~ 02376089 v 0000 03 + 02 00 + 09 00 + 22 00 | be engaged in a fight; carry on a fight; "the tribesmen fought each other"; "Siblings are always fighting"; "Militant groups are contending for control of the country" -01091160 33 v 01 join_battle 0 001 @ 01090335 v 0000 01 + 02 00 | engage in a conflict; "The battle over health care reform was joined" -01091298 33 v 01 tug 0 001 @ 01090335 v 0000 01 + 02 00 | struggle in opposition; "She tugged and wrestled with her conflicts" -01091427 33 v 05 fight 1 oppose 1 fight_back 0 fight_down 0 defend 5 012 @ 01090335 v 0000 + 01632066 a 0501 + 01246148 a 0201 + 01169744 n 0202 + 09773245 n 0204 + 07184391 n 0101 + 09939313 n 0104 + 03335030 n 0101 ~ 01091844 v 0000 ~ 01115916 v 0000 ~ 01116585 v 0000 ~ 01131197 v 0000 03 + 02 00 + 08 00 + 09 00 | fight against or resist strongly; "The senator said he would oppose the bill"; "Don't fight it!" -01091844 33 v 01 recalcitrate 0 002 @ 01091427 v 0000 + 04907575 n 0103 01 + 22 00 | show strong objection or repugnance; manifest vigorous opposition or resistance; be obstinately disobedient; "The Democratic senators recalcitrated against every proposal from the Republican side" -01092128 33 v 02 settle a get_back d 001 @ 01090335 v 0000 01 + 09 00 | get one's revenge for a wrong or an injury; "I finally settled with my old enemy" -01092284 33 v 01 fight_back 1 001 @ 01090335 v 0000 01 + 02 00 | defend oneself -01092366 33 v 02 battle 0 combat 0 011 @ 01090335 v 0000 + 00082766 a 0203 + 01517632 a 0201 + 01170962 n 0203 + 00964343 n 0201 + 09939313 n 0201 + 00958896 n 0103 + 00953559 n 0101 + 09939313 n 0102 ~ 01092826 v 0000 ~ 01092981 v 0000 03 + 02 00 + 08 00 + 09 00 | battle or contend against in or as if in a battle; "The Kurds are combating Iraqi troops in Northern Iraq"; "We must combat the prejudices against other races"; "they battled over the budget" -01092826 33 v 01 dogfight 0 003 @ 01092366 v 0000 + 00971802 n 0101 + 00974224 n 0101 01 + 02 00 | engage in an aerial battle with another fighter plane -01092981 33 v 01 wrestle 1 002 @ 01092366 v 0000 + 10793168 n 0101 01 + 22 00 | combat to overcome an opposing tendency or force; "He wrestled all his life with his feeling of inferiority" -01093172 33 v 01 war 0 007 @ 01090335 v 0000 + 13981403 n 0101 + 00973077 n 0101 + 10768585 n 0101 ! 01093587 v 0101 ~ 01093365 v 0000 ~ 01093465 v 0000 02 + 02 00 + 22 00 | make or wage war -01093365 33 v 01 blitzkrieg 0 001 @ 01093172 v 0000 01 + 02 00 | fight a quick and surprising war -01093465 33 v 03 go_to_war 0 take_arms 0 take_up_arms 0 001 @ 01093172 v 0000 02 + 02 00 + 22 00 | commence hostilities -01093587 33 v 01 make_peace 0 003 @ 00764902 v 0000 + 09952163 n 0102 ! 01093172 v 0101 01 + 02 00 | end hostilities; "The brothers who had been fighting over their inheritance finally made peace" -01093786 33 v 02 campaign 0 take_the_field 1 003 * 01093172 v 0000 + 00968155 n 0101 ~ 01093944 v 0000 02 + 02 00 + 22 00 | go on a campaign; go off to war -01093944 33 v 01 crusade 0 003 @ 01093786 v 0000 + 00968715 n 0101 + 09981365 n 0101 02 + 02 00 + 22 00 | go on a crusade; fight a holy war -01094086 33 v 02 campaign 1 run 6 008 @ 01086103 v 0000 + 07472929 n 0203 + 07472929 n 0102 + 09889691 n 0101 ~ 01094384 v 0000 ~ 01094539 v 0000 ~ 01095083 v 0000 ~ 02472033 v 0000 02 + 02 00 + 22 00 | run, stand, or compete for an office or a position; "Who's running for treasurer this year?" -01094384 33 v 01 stump 0 001 @ 01094086 v 0000 01 + 08 00 | travel through a district and make political speeches; "the candidate stumped the Northeast" -01094539 33 v 01 rerun 0 001 @ 01094086 v 0000 02 + 02 00 + 22 00 | run again for office; "Bush wants to rerun in 1996" -01094661 33 v 01 barnstorm 0 002 @ 01714208 v 0000 $ 01094898 v 0000 02 + 02 00 + 22 00 | tour the country making political speeches, giving lectures, or presenting plays; "The presidential candidates are busy barnstorming this month" -01094898 33 v 01 barnstorm 1 003 $ 01094661 v 0000 @ 01714208 v 0000 + 09839860 n 0101 02 + 02 00 + 22 00 | appear at county fairs and carnivals as a stunt flier and parachute jumper -01095083 33 v 01 whistlestop 0 001 @ 01094086 v 0000 02 + 02 00 + 22 00 | tour the country in order to solicit votes for an election -01095218 33 v 01 serve 0 009 @ 02410855 v 0000 ~ 01095581 v 0000 ~ 01095739 v 0000 ~ 01095899 v 0000 ~ 01096305 v 0000 ~ 01096497 v 0000 ~ 01096860 v 0000 $ 02411621 v 0000 ~ 02541509 v 0000 02 + 02 00 + 22 00 | do duty or hold offices; serve in a specific function; "He served as head of the department for three years"; "She served in Congress for two terms" -01095581 33 v 01 sit 0 001 @ 01095218 v 0000 01 + 02 00 | serve in a specific professional capacity; "the priest sat for confession"; "she sat on the jury" -01095739 33 v 01 staff 1 003 @ 01095218 v 0000 + 08287586 n 0101 + 08439955 n 0101 01 + 08 00 | serve on the staff of; "The two men staff the reception desk" -01095899 33 v 01 act 0 004 @ 01095218 v 0000 + 09767197 n 0101 ~ 01096097 v 0000 ~ 02343252 v 0000 01 + 22 00 | discharge one's duties; "She acts as the chair"; "In what capacity are you acting?" -01096097 33 v 02 criticize 0 criticise 0 004 @ 01095899 v 0000 + 09979072 n 0101 + 09979321 n 0101 + 09979589 n 0101 01 + 02 00 | act as a critic; "Those who criticize others often are not perfect, either" -01096305 33 v 01 rotate 0 003 $ 02393894 v 0000 @ 01095218 v 0000 + 05045381 n 0101 02 + 02 00 + 22 00 | perform a job or duty on a rotating basis; "Interns have to rotate for a few months" -01096497 33 v 02 officiate 0 function 0 010 @ 01095218 v 0000 + 00720565 n 0201 + 10372373 n 0202 + 00548173 n 0101 + 01191755 n 0102 + 13945102 n 0101 + 00586262 n 0104 + 00720565 n 0102 + 01033458 n 0101 + 01191755 n 0103 02 + 02 00 + 22 00 | perform duties attached to a particular office or place or function; "His wife officiated as his private secretary" -01096860 33 v 02 caddie 0 caddy 0 004 @ 01095218 v 0000 ;c 00464894 n 0000 + 02935387 n 0201 + 09886403 n 0101 01 + 02 00 | act as a caddie and carry clubs for a player -01097031 33 v 01 soldier 0 004 @ 02708420 v 0000 + 10622053 n 0101 + 08397255 n 0102 + 05640184 n 0101 02 + 02 00 + 22 00 | serve as a soldier in the military -01097192 33 v 01 enlist 0 003 @ 01097309 v 0000 + 15293590 n 0101 ~ 01098706 v 0000 01 + 02 00 | join the military -01097309 33 v 01 sign_up 0 002 @ 02434976 v 0000 ~ 01097192 v 0000 02 + 02 00 + 22 00 | join a club, an activity, etc. with the intention to join or participate, "Sign up for yoga classes" -01097500 33 v 03 enlist 1 draft 0 muster_in 0 008 @ 02471327 v 0000 + 01157850 n 0203 + 10028765 n 0201 + 15293590 n 0101 + 10512201 n 0102 + 01263711 n 0102 ! 01097743 v 0101 ~ 01098452 v 0000 01 + 09 00 | engage somebody to enter the army -01097743 33 v 02 discharge 0 muster_out 0 007 @ 01474550 v 0000 + 00213694 n 0103 ! 01097500 v 0101 ~ 00191728 v 0000 ~ 01088192 v 0000 ~ 01098206 v 0000 ~ 01134522 v 0000 01 + 09 00 | release from military service -01097960 33 v 04 call_up 0 mobilize 1 mobilise 1 rally 0 007 @ 00792471 v 0000 + 00045646 n 0402 + 01156438 n 0302 + 01230283 n 0302 + 01156438 n 0201 ! 01098206 v 0201 + 07169353 n 0101 02 + 08 00 + 09 00 | call to arms; of military personnel -01098206 33 v 03 demobilize 3 inactivate 0 demobilise 3 005 @ 01097743 v 0000 + 01158190 n 0302 + 00233795 n 0202 + 01158190 n 0101 ! 01097960 v 0102 01 + 09 00 | release from military service or remove from the active list of military service -01098452 33 v 03 recruit 0 levy 0 raise 0 006 @ 01097500 v 0000 + 01158064 n 0201 + 10512201 n 0101 + 10512372 n 0101 + 01263711 n 0101 + 10512562 n 0101 01 + 09 00 | cause to assemble or enlist in the military; "raise an army"; "recruit new soldiers" -01098706 33 v 01 conscript 0 003 @ 01097192 v 0000 + 01157850 n 0101 + 10028765 n 0102 01 + 09 00 | enroll into service compulsorily; "The men were conscripted" -01098869 33 v 02 militarize 0 militarise 0 009 @ 00126264 v 0000 + 01156438 n 0204 + 08199025 n 0201 ! 01099390 v 0202 + 01156438 n 0103 + 08199025 n 0101 ! 01099390 v 0101 ~ 01088381 v 0000 ~ 01099220 v 0000 02 + 08 00 + 11 00 | lend a military character to (a country), as by building up a military force; "militarize Germany again after the war" -01099220 33 v 02 remilitarize 0 remilitarise 0 003 @ 01098869 v 0000 + 01158543 n 0202 + 01158543 n 0101 01 + 08 00 | militarize anew; "Should Japan be remilitarized?" -01099390 33 v 02 demilitarize 0 demilitarise 0 004 @ 01088005 v 0000 ! 01098869 v 0202 ! 01098869 v 0101 ~ 01117931 v 0000 02 + 08 00 + 11 00 | do away with the military organization and potential of -01099592 33 v 01 lose 0 009 * 01072262 v 0000 + 10273064 n 0102 + 10272913 n 0101 + 10272782 n 0101 ! 01100145 v 0101 ~ 01099866 v 0000 ~ 01100008 v 0000 ~ 01125209 v 0000 ~ 01156706 v 0000 03 + 02 00 + 08 00 + 27 00 | fail to win; "We lost the battle but we won the war" -01099866 33 v 01 go_down 0 001 @ 01099592 v 0000 02 + 01 00 + 02 00 | be defeated; "If America goes down, the free world will go down, too" -01100008 33 v 01 drop 0 002 @ 01099592 v 0000 ;c 00523513 n 0000 01 + 08 00 | lose (a game); "The Giants dropped 11 of their first 13" -01100145 33 v 01 win 0 013 * 01072262 v 0000 + 07354731 n 0101 + 10782791 n 0101 + 10782940 n 0101 + 13259917 n 0101 ! 01099592 v 0101 ~ 01100567 v 0000 ~ 01100672 v 0000 ~ 01100830 v 0000 ~ 01100952 v 0000 ~ 01101416 v 0000 ~ 01101734 v 0000 ~ 01107895 v 0000 03 + 02 00 + 08 00 + 22 00 | be the winner in a contest or competition; be victorious; "He won the Gold Medal in skating"; "Our home team won"; "Win the game" -01100567 33 v 01 romp 0 002 @ 01100145 v 0000 + 07475107 n 0103 01 + 02 00 | win easily; "romp a race" -01100672 33 v 01 carry c 003 $ 01101416 v 0000 $ 01101571 v 0000 @ 01100145 v 0000 01 + 08 00 | be successful in; "She lost the game but carried the match" -01100830 33 v 01 take 8 001 @ 01100145 v 0000 01 + 08 00 | obtain by winning; "Winner takes all"; "He took first prize" -01100952 33 v 01 sweep 0 001 @ 01100145 v 0000 02 + 08 00 + 11 00 | win an overwhelming victory in or on; "Her new show dog swept all championships" -01101103 33 v 02 outpoint 0 outscore 0 001 @ 01101913 v 0000 01 + 09 00 | score more points than one's opponents -01101218 33 v 01 homer 0 002 @ 01111816 v 0000 + 00132355 n 0101 01 + 02 00 | hit a home run -01101313 33 v 01 count_out 0 002 @ 01010118 v 0000 ;c 00445802 n 0000 01 + 09 00 | declare the loser -01101416 33 v 01 carry 1 003 @ 01100145 v 0000 $ 01100672 v 0000 $ 02586121 v 0000 01 + 08 00 | win in an election; "The senator carried his home state" -01101571 33 v 01 carry 2 002 @ 02238085 v 0000 $ 01100672 v 0000 01 + 08 00 | secure the passage or adoption (of bills and motions); "The motion carried easily" -01101734 33 v 02 prevail 0 triumph 0 003 @ 01100145 v 0000 + 00695209 a 0201 + 07473441 n 0202 01 + 02 00 | prove superior; "The champion prevailed, though it was a hard fight" -01101913 33 v 06 beat 0 beat_out 0 crush 0 shell 3 trounce 0 vanquish 0 026 * 01100145 v 0000 @ 01108148 v 0000 + 00569304 a 0602 + 09956578 n 0602 + 07476623 n 0506 + 00569304 a 0101 + 01176219 n 0101 ~ 01101103 v 0000 ~ 01102667 v 0000 ~ 01102839 v 0000 ~ 01102997 v 0000 ~ 01103603 v 0000 ~ 01104018 v 0000 ~ 01104248 v 0000 ~ 01104376 v 0000 ~ 01104624 v 0000 $ 01104852 v 0000 ~ 01105639 v 0000 ~ 01108627 v 0000 ~ 01109259 v 0000 ~ 01109431 v 0000 ~ 01110517 v 0000 ~ 01114475 v 0000 ~ 01121508 v 0000 ~ 01154957 v 0000 ~ 01412912 v 0000 03 + 08 00 + 09 00 + 10 00 | come out better in a competition, race, or conflict; "Agassi beat Becker in the tennis championship"; "We beat the competition"; "Harvard defeated Yale in the last football game" -01102667 33 v 01 walk_over 0 002 @ 01101913 v 0000 + 00575365 n 0108 02 + 08 00 + 09 00 | beat easily; "The local team walked over their old rivals for the championship" -01102839 33 v 01 eliminate 0 001 @ 01101913 v 0000 01 + 09 00 | remove from a contest or race; "The cyclist has eliminated all the competitors in the race" -01102997 33 v 05 worst 0 pip 0 mop_up 0 whip 0 rack_up 0 002 @ 01101913 v 0000 + 07476623 n 0407 02 + 08 00 + 09 00 | defeat thoroughly; "He mopped up the floor with his opponents" -01103180 33 v 01 wallop 0 003 @ 01108148 v 0000 + 10765000 n 0101 + 07476623 n 0102 02 + 08 00 + 09 00 | defeat soundly and utterly; "We'll wallop them!" -01103336 33 v 01 down 0 002 @ 01108148 v 0000 ;c 00523513 n 0000 02 + 08 00 + 09 00 | bring down or defeat (an opponent) -01103459 33 v 01 overrun 4 001 @ 01108148 v 0000 01 + 08 00 | seize the position of and defeat; "the Crusaders overran much of the Holy Land" -01103603 33 v 01 whomp 0 001 @ 01101913 v 0000 02 + 08 00 + 09 00 | beat overwhelmingly -01103693 33 v 02 lurch 0 skunk 0 004 @ 01108148 v 0000 ;c 00488225 n 0000 + 07476495 n 0202 + 07476282 n 0101 01 + 09 00 | defeat by a lurch -01103836 33 v 02 break_down 0 crush 1 002 @ 00126264 v 0000 + 00553362 n 0102 02 + 08 00 + 11 00 | make ineffective; "Martin Luther King tried to break down racial discrimination" -01104018 33 v 03 get_the_best 2 have_the_best 2 overcome 2 001 @ 01101913 v 0000 03 + 10 00 + 22 02 + 22 01 | overcome, usually through no fault or weakness of the person that is overcome; "Heart disease can get the best of us" -01104248 33 v 03 spread-eagle 0 spreadeagle 0 rout 1 002 @ 01101913 v 0000 + 07476404 n 0301 01 + 09 00 | defeat disastrously -01104376 33 v 01 get_the_jump 0 001 @ 01101913 v 0000 01 + 22 00 | be there first; "They had gotten the jump on their competitors" -01104509 33 v 02 cut_down 0 cut_out 0 002 @ 01131473 v 0000 ;c 00471613 n 0000 01 + 09 00 | intercept (a player) -01104624 33 v 06 cheat 0 chouse 0 shaft 0 screw 0 chicane 0 jockey 1 005 @ 01101913 v 0000 + 00752954 n 0502 + 00752954 n 0503 + 00780148 n 0102 + 09998101 n 0103 02 + 09 00 + 11 00 | defeat someone through trickery or deceit -01104852 33 v 06 outwit 0 overreach 0 outsmart 0 outfox 1 beat e circumvent 0 003 $ 01101913 v 0000 @ 01105639 v 0000 + 00569304 a 0501 02 + 08 00 + 09 00 | beat through cleverness and wit; "I beat the traffic"; "She outfoxed her competitors" -01105097 33 v 01 outgrow 0 001 @ 01105639 v 0000 02 + 09 00 + 11 00 | grow faster than -01105186 33 v 02 outshout 0 outcry 0 002 @ 01105639 v 0000 + 07120524 n 0202 01 + 09 00 | shout louder than -01105296 33 v 01 outroar 0 001 @ 01105639 v 0000 02 + 09 00 + 11 00 | roar louder than -01105385 33 v 01 outsail 0 001 @ 01105639 v 0000 03 + 08 00 + 09 00 + 11 00 | sail faster or better than; "They outsailed the Roman fleet" -01105526 33 v 01 outdraw 0 001 @ 01105639 v 0000 01 + 08 00 | draw a gun faster, or best someone in a gunfight -01105639 33 v 08 surpass 0 outstrip 0 outmatch 0 outgo 0 exceed 0 outdo 0 surmount 1 outperform 0 021 @ 01101913 v 0000 + 01533974 a 0501 ~ 01104852 v 0000 ~ 01105097 v 0000 ~ 01105186 v 0000 ~ 01105296 v 0000 ~ 01105385 v 0000 ~ 01105526 v 0000 ~ 01106377 v 0000 ~ 01106504 v 0000 ~ 01106670 v 0000 ~ 01106864 v 0000 ~ 01107254 v 0000 ~ 01107439 v 0000 ~ 01107544 v 0000 ~ 01107625 v 0000 ~ 01107705 v 0000 ~ 01107806 v 0000 ~ 01108053 v 0000 ~ 01110880 v 0000 ~ 02705303 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | be or do something to a greater degree; "her performance surpasses that of any other student I know"; "She outdoes all other athletes"; "This exceeds all my expectations"; "This car outperforms all others in its class" -01106377 33 v 01 outsell 0 001 @ 01105639 v 0000 01 + 09 00 | sell more than others; "This salesman outsells his colleagues" -01106504 33 v 01 outsell 1 001 @ 01105639 v 0000 01 + 11 00 | be sold more often than other, similar products; "The new Toyota outsells the Honda by a wide margin" -01106670 33 v 01 outpace 0 001 @ 01105639 v 0000 03 + 08 00 + 09 00 + 11 00 | surpass in speed; "Malthus believed that population increase would outpace increases in the means of subsistence" -01106864 33 v 02 better 0 break 0 002 @ 01105639 v 0000 + 05143690 n 0101 01 + 08 00 | surpass in excellence; "She bettered her own record"; "break a record" -01107024 33 v 01 upstage 0 002 @ 01107254 v 0000 + 10740732 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | steal the show, draw attention to oneself away from someone else; "When the dog entered the stage, he upstaged the actress" -01107254 33 v 01 outshine 0 002 @ 01105639 v 0000 ~ 01107024 v 0000 02 + 09 00 + 11 00 | attract more attention and praise than others; "This film outshone all the others in quality" -01107439 33 v 01 outrange 0 001 @ 01105639 v 0000 01 + 11 00 | have a greater range than (another gun) -01107544 33 v 01 outweigh 0 001 @ 01105639 v 0000 01 + 08 00 | be heavier than -01107625 33 v 01 outbrave 0 001 @ 01105639 v 0000 01 + 09 00 | be braver than -01107705 33 v 01 out-herod 0 001 @ 01105639 v 0000 01 + 09 00 | surpass someone in cruelty or evil -01107806 33 v 01 outfox 0 001 @ 01105639 v 0000 01 + 09 00 | outdo someone in trickery -01107895 33 v 01 take_the_cake 0 001 @ 01100145 v 0000 02 + 01 00 + 02 00 | rank first; used often in a negative context; "He takes the cake for chutzpah!" -01108053 33 v 01 shame 0 001 @ 01105639 v 0000 01 + 09 00 | surpass or beat by a wide margin -01108148 33 v 03 get_the_better_of 0 overcome 3 defeat 0 012 + 10668450 n 0203 ~ 01083373 v 0000 ~ 01101913 v 0000 ~ 01103180 v 0000 ~ 01103336 v 0000 ~ 01103459 v 0000 ~ 01103693 v 0000 ~ 01108951 v 0000 ~ 01109087 v 0000 ~ 01109644 v 0000 ~ 01114303 v 0000 ~ 02619924 v 0000 01 + 08 00 | win a victory over; "You must overcome all difficulties"; "defeat your enemies"; "He overcame his shyness"; "He overcame his infirmity"; "Her anger got the better of her and she blew up" -01108627 33 v 05 overcome 1 get_over 0 subdue 0 surmount 0 master 0 002 @ 01101913 v 0000 ~ 01108815 v 0000 01 + 08 00 | get on top of; deal with successfully; "He overcame his shyness" -01108815 33 v 01 bulldog 1 001 @ 01108627 v 0000 01 + 08 00 | throw a steer by seizing the horns and twisting the neck, as in a rodeo -01108951 33 v 03 rout 0 rout_out 0 expel 0 001 @ 01108148 v 0000 01 + 09 00 | cause to flee; "rout out the fighters from their caves" -01109087 33 v 01 upset 0 003 @ 01108148 v 0000 + 00068170 n 0102 + 10740594 n 0101 01 + 09 00 | defeat suddenly and unexpectedly; "The foreign team upset the local team" -01109259 33 v 05 outdo 1 outflank 0 trump 0 best 0 scoop 0 002 @ 01101913 v 0000 ~ 01110247 v 0000 01 + 09 00 | get the better of; "the goal was to best the competition" -01109431 33 v 01 outfight 0 001 @ 01101913 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to fight better than; get the better of; "the Rangers outfought the Maple Leafs"; "The French forces outfought the Germans" -01109644 33 v 01 nose 0 002 @ 01108148 v 0000 + 13762458 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | defeat by a narrow margin -01109773 33 v 01 outgeneral 0 001 @ 01110247 v 0000 01 + 09 00 | surpass in generalship -01109863 33 v 04 manoeuver 0 maneuver 0 manoeuvre 0 operate 0 005 @ 01076615 v 0000 + 00955060 n 0401 + 00959992 n 0302 + 00959992 n 0201 ~ 01110143 v 0000 02 + 21 00 + 22 00 | perform a movement in military or naval tactics in order to secure an advantage in attack or defense -01110143 33 v 01 jockey d 001 @ 01109863 v 0000 01 + 22 00 | compete (for an advantage or a position) -01110247 33 v 03 outmaneuver 0 outmanoeuvre 0 outsmart 1 002 @ 01109259 v 0000 ~ 01109773 v 0000 01 + 09 00 | defeat by more skillful maneuvering; "The English troops outmaneuvered the Germans"; "My new supervisor knows how to outmaneuver the boss in most situations" -01110517 33 v 03 overpower 0 overmaster 0 overwhelm 0 002 @ 01101913 v 0000 ~ 01110661 v 0000 02 + 09 00 + 10 00 | overcome by superior force -01110661 33 v 02 steamroller 0 steamroll 0 004 $ 02505807 v 0000 @ 01110517 v 0000 + 10226556 n 0202 + 10226556 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | overwhelm by using great force; "steamroller the opposition" -01110880 33 v 01 outmarch 0 001 @ 01105639 v 0000 01 + 09 00 | march longer distances and for a longer time than; "This guy can outmarch anyone!" -01111028 33 v 07 gain 0 advance 0 win 1 pull_ahead 0 make_headway 0 get_ahead 0 gain_ground 0 005 + 07354731 n 0301 + 10117511 n 0101 ! 01113806 v 0101 ~ 01111458 v 0000 ~ 01111816 v 0000 02 + 01 00 + 02 00 | obtain advantages, such as points, etc.; "The home team was gaining ground"; "After defeating the Knicks, the Blazers pulled ahead of the Lakers in the battle for the number-one playoff berth in the Western Conference" -01111458 33 v 01 steal 0 003 @ 01111028 v 0000 ;c 00471613 n 0000 + 00725152 n 0101 01 + 08 00 | steal a base -01111570 33 v 02 win_back 0 get_back 1 001 @ 02210855 v 0000 02 + 08 00 + 09 00 | recover something or somebody that appeared to be lost; "We got back the money after we threatened to sue the company"; "He got back his son from the kidnappers" -01111816 33 v 04 score 0 hit 2 tally 0 rack_up 1 020 * 01072262 v 0000 @ 01111028 v 0000 + 00189565 n 0302 + 00043902 n 0201 + 00186634 n 0101 + 13594585 n 0101 + 10562391 n 0101 ~ 01084331 v 0000 ~ 01084466 v 0000 ~ 01084588 v 0000 ~ 01084724 v 0000 ~ 01084866 v 0000 ~ 01101218 v 0000 ~ 01112979 v 0000 ~ 01113134 v 0000 ~ 01113264 v 0000 ~ 01113367 v 0000 ~ 01113473 v 0000 ~ 01115411 v 0000 ~ 02355596 v 0000 02 + 02 00 + 08 00 | gain points in a game; "The home team scored many times"; "He hit a home run"; "He hit .300 in the past season" -01112364 33 v 01 score 1 003 @ 02526085 v 0000 + 05737153 n 0103 ~ 01112584 v 0000 02 + 07 00 + 08 00 | get a certain number or letter indicating quality or performance; "She scored high on the SAT"; "He scored a 200" -01112584 33 v 01 test 0 005 @ 01112364 v 0000 + 00794367 n 0101 + 01006675 n 0101 + 07197021 n 0103 $ 00669970 v 0000 01 + 07 00 | achieve a certain score or rating on a test; "She tested high on the LSAT and was admitted to all the good law schools" -01112837 33 v 01 place-kick 0 003 @ 01112979 v 0000 ;c 00468480 n 0000 + 00137279 n 0102 01 + 08 00 | score (a goal) by making a place kick -01112979 33 v 01 kick 5 003 @ 01111816 v 0000 ;c 00468480 n 0000 ~ 01112837 v 0000 01 + 08 00 | make a goal; "He kicked the extra point after touchdown" -01113134 33 v 01 eagle 0 003 @ 01111816 v 0000 ;c 00464894 n 0000 + 13595968 n 0101 01 + 08 00 | shoot in two strokes under par -01113264 33 v 01 hole_up 0 002 @ 01111816 v 0000 ;c 00464894 n 0000 01 + 02 00 | score a hole in one -01113367 33 v 01 ace 0 001 @ 01111816 v 0000 01 + 09 00 | score an ace against; "He aced his opponents" -01113473 33 v 01 walk 0 004 $ 01140654 v 0000 @ 01111816 v 0000 ;c 00471613 n 0000 + 00127286 n 0102 02 + 02 00 + 09 00 | obtain a base on balls -01113620 33 v 01 drive_in 0 002 > 01111816 v 0000 ;c 00471613 n 0000 02 + 08 00 + 09 00 | cause a run or runner to be scored; "His line double drove in Jim Lemon with the winning run" -01113806 33 v 05 fall_back 0 lose 1 drop_off 0 fall_behind 0 recede 0 004 @ 00249313 v 0000 + 01249991 n 0501 + 00057486 n 0501 ! 01111028 v 0101 01 + 02 00 | retreat -01113975 33 v 01 keep_up 0 002 * 01072262 v 0000 ~ 01114143 v 0000 01 + 02 00 | maintain a required pace or level; "He could not keep up and dropped out of the race" -01114143 33 v 02 keep_step 0 keep_pace 0 001 @ 01113975 v 0000 02 + 02 00 + 22 00 | maintain the same pace; "The child cannot keep step with his big brother" -01114303 33 v 01 conquer 0 003 @ 01108148 v 0000 + 09956578 n 0101 + 00089027 n 0102 02 + 08 00 + 09 00 | overcome by conquest; "conquer your fears"; "conquer a country" -01114475 33 v 02 checkmate 0 mate 0 004 @ 01101913 v 0000 ;c 00503237 n 0000 + 00167764 n 0202 + 00167764 n 0101 02 + 08 00 + 09 00 | place an opponent's king under an attack from which it cannot escape and thus ending the game; "Kasparov checkmated his opponent after only a few moves" -01114764 33 v 01 check 0 003 * 01076615 v 0000 @ 01118449 v 0000 ;c 00503237 n 0000 02 + 08 00 + 09 00 | place into check; "He checked my kings" -01114911 33 v 01 bait 0 001 @ 01120069 v 0000 01 + 09 00 | attack with dogs or set dogs upon -01115006 33 v 02 sic 0 set 0 001 @ 01120069 v 0000 01 + 19 00 | urge to attack someone; "The owner sicked his dogs on the intruders"; "the shaman sics sorcerers on the evil spirits" -01115190 33 v 02 tie 0 draw 0 005 @ 00417001 v 0000 * 01072949 v 0000 + 07353716 n 0201 + 07353716 n 0103 + 10710509 n 0101 01 + 02 00 | finish a game with an equal number of points, goals, etc.; "The teams drew a tie" -01115411 33 v 03 equalize 0 equalise 0 get_even 0 004 @ 01111816 v 0000 + 00044673 n 0202 + 00044673 n 0101 + 00483098 n 0101 01 + 02 00 | compensate; make the score equal -01115585 33 v 02 surrender 0 give_up 1 008 @ 01116447 v 0000 + 00067707 n 0103 + 07255027 n 0103 + 10679998 n 0101 ! 01116585 v 0101 ~ 01116275 v 0000 ~ 01117609 v 0000 ~ 01117812 v 0000 03 + 02 00 + 08 00 + 15 00 | give up or agree to forgo to the power or possession of another; "The last Taleban fighters finally surrendered" -01115916 33 v 03 resist 1 stand 0 fend 0 008 @ 01091427 v 0000 + 03328201 n 0301 + 03328076 n 0301 + 03327841 n 0301 + 02911158 n 0302 + 00960851 n 0201 + 00007990 a 0102 $ 02702120 v 0000 02 + 08 00 + 11 00 | withstand the force of something; "The trees resisted her"; "stand the test of time"; "The mountain climbers had to fend against the ice and snow" -01116275 33 v 01 abnegate 0 002 @ 01115585 v 0000 + 09754633 n 0101 02 + 08 00 + 15 00 | surrender (power or a position); "The King abnegated his power to the ministers" -01116447 33 v 01 yield 0 003 + 10679998 n 0102 ~ 01115585 v 0000 ~ 02304507 v 0000 02 + 02 00 + 27 00 | cease opposition; stop fighting -01116585 33 v 04 resist 0 hold_out 0 withstand 0 stand_firm 0 014 @ 01091427 v 0000 + 09615211 n 0302 + 10180580 n 0201 + 07150328 n 0201 + 00695938 a 0103 + 00695938 a 0102 + 00955987 n 0101 ! 01115585 v 0101 ~ 01116980 v 0000 ~ 01117086 v 0000 ~ 01117219 v 0000 ~ 01117325 v 0000 ~ 02702120 v 0000 ~ 02706816 v 0000 02 + 08 00 + 09 00 | stand up or offer resistance to somebody or something -01116980 33 v 01 stand_out 1 001 @ 01116585 v 0000 01 + 02 00 | be stubborn in resolution or resistance -01117086 33 v 01 stand_up 0 001 @ 01116585 v 0000 02 + 04 00 + 22 00 | refuse to back down; remain solid under criticism or attack -01117219 33 v 01 outbrave 1 001 @ 01116585 v 0000 01 + 09 00 | resist bravely; "He outbraved the enemy" -01117325 33 v 01 hold_off 0 001 @ 01116585 v 0000 02 + 08 00 + 09 00 | resist and fight to a standoff; "Dallas had enough of a lead to hold the Broncos off" -01117484 33 v 02 complete 0 nail 0 003 @ 01072949 v 0000 ;c 00468480 n 0000 + 00557419 n 0101 01 + 08 00 | complete a pass -01117609 33 v 01 concede 0 003 @ 01115585 v 0000 + 07176243 n 0101 + 07176243 n 0102 01 + 02 00 | acknowledge defeat; "The candidate conceded after enough votes had come in to show that he would lose" -01117812 33 v 01 capitulate 0 002 @ 01115585 v 0000 + 00067707 n 0101 01 + 02 00 | surrender under agreed conditions -01117931 33 v 02 neutralize 0 neutralise 0 003 @ 01099390 v 0000 + 00234423 n 0202 + 00234423 n 0101 01 + 08 00 | make incapable of military action -01118081 33 v 01 submit 0 007 * 01115585 v 0000 + 00790691 a 0103 + 00788821 a 0101 + 14580090 n 0101 + 01166926 n 0101 + 10669727 n 0101 ~ 01118292 v 0000 02 + 02 00 + 22 00 | yield to the control of another -01118292 33 v 01 subject 0 001 @ 01118081 v 0000 01 + 09 00 | make accountable for; "He did not want to subject himself to the judgments of his superiors" -01118449 33 v 02 attack 1 aggress 0 013 @ 02367363 v 0000 + 01244846 a 0201 + 01237167 n 0201 + 00964569 n 0201 + 09821253 n 0202 + 00972621 n 0101 + 09821253 n 0101 ~ 01114764 v 0000 ~ 01118888 v 0000 $ 01119169 v 0000 ~ 01120759 v 0000 ~ 01121621 v 0000 ~ 01150164 v 0000 04 + 01 00 + 02 00 + 08 01 + 09 01 | take the initiative and go on the offensive; "The Serbs attacked the village at night"; "The visiting team started to attack" -01118888 33 v 01 fork 0 002 @ 01118449 v 0000 ;c 00503237 n 0000 01 + 08 00 | place under attack with one's own pieces, of two enemy pieces -01119030 33 v 01 bulldog 0 002 @ 01120069 v 0000 + 02108672 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | attack viciously and ferociously -01119169 33 v 02 attack 0 assail 1 021 $ 01118449 v 0000 @ 01090335 v 0000 + 02523664 a 0201 + 09821253 n 0203 + 00972621 n 0101 + 09821253 n 0101 ! 01127795 v 0101 ~ 01119803 v 0000 ~ 01121320 v 0000 ~ 01123887 v 0000 ~ 01125084 v 0000 ~ 01125373 v 0000 ~ 01126051 v 0000 ~ 01126219 v 0000 ~ 01126360 v 0000 ~ 01127411 v 0000 ~ 01131902 v 0000 ~ 01136142 v 0000 ~ 01136481 v 0000 ~ 01137983 v 0000 ~ 02494850 v 0000 02 + 08 00 + 09 00 | launch an attack or assault on; begin hostilities or start warfare with; "Hitler attacked Poland on September 1, 1939 and started World War II"; "Serbian forces assailed Bosnian towns all week" -01119803 33 v 01 submarine 0 001 @ 01119169 v 0000 04 + 02 00 + 08 00 + 09 00 + 11 00 | attack by submarine; "The Germans submarined the Allies" -01119950 33 v 01 rush 0 002 @ 01120069 v 0000 ~ 01121719 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | attack suddenly -01120069 33 v 04 assail 0 assault 0 set_on 0 attack 2 019 + 00773814 n 0401 + 09821253 n 0401 + 01629349 a 0201 + 00773402 n 0203 + 00767826 n 0201 + 09821253 n 0204 + 09821253 n 0103 ~ 01114911 v 0000 ~ 01115006 v 0000 ~ 01119030 v 0000 ~ 01119950 v 0000 ~ 01120612 v 0000 ~ 01120900 v 0000 ~ 01121052 v 0000 ~ 01121178 v 0000 ~ 01126700 v 0000 ~ 02567519 v 0000 ~ 02568065 v 0000 ~ 02569495 v 0000 03 + 08 00 + 09 00 + 10 00 | attack someone physically or emotionally; "The mugger assaulted the woman"; "Nightmares assailed him regularly" -01120612 33 v 01 blindside 0 001 @ 01120069 v 0000 01 + 09 00 | attack or hit on or from the side where the attacked person's view is obstructed -01120759 33 v 01 harass 0 002 @ 01118449 v 0000 + 10160012 n 0101 02 + 08 00 + 09 00 | exhaust by attacking repeatedly; "harass the enemy" -01120900 33 v 01 savage 0 003 @ 01120069 v 0000 + 09845589 n 0103 + 00424934 n 0104 04 + 08 00 + 09 00 + 10 00 + 11 00 | attack brutally and fiercely -01121052 33 v 01 reassail 0 001 @ 01120069 v 0000 03 + 08 00 + 09 00 + 10 00 | assail again; "Her old fears reassailed her" -01121178 33 v 01 jump 0 001 @ 01120069 v 0000 01 + 09 00 | make a sudden physical attack on; "The muggers jumped the woman in the fur coat" -01121320 33 v 02 pepper 0 pelt 0 003 * 01508368 v 0000 @ 01119169 v 0000 + 10413429 n 0201 01 + 17 00 | attack and bombard with or as if with missiles; "pelt the speaker with questions" -01121508 33 v 02 immobilize 0 immobilise 0 001 @ 01101913 v 0000 03 + 09 00 + 10 00 + 11 00 | make defenseless -01121621 33 v 01 pin 0 002 @ 01118449 v 0000 ;c 00503237 n 0000 01 + 08 00 | immobilize a piece -01121719 33 v 02 charge 0 bear_down 3 003 @ 01119950 v 0000 + 02378625 n 0101 + 00974762 n 0101 03 + 08 00 + 09 00 + 02 01 | to make a rush at or sudden attack upon, as in battle; "he saw Jess charging at him with a pitchfork" -01121948 33 v 01 duel 0 005 @ 01090335 v 0000 + 10038929 n 0103 + 01172784 n 0101 + 10038929 n 0102 + 10038929 n 0101 02 + 02 00 + 09 00 | fight a duel, as over one's honor or a woman; "In the 19th century, men often dueled over small matters" -01122194 33 v 01 rival 0 004 @ 01072262 v 0000 + 10533013 n 0101 + 01168569 n 0103 ~ 01122630 v 0000 02 + 09 00 + 11 00 | be the rival of, be in competition with; "we are rivaling for first place in the race" -01122405 33 v 01 emulate 0 003 @ 01072262 v 0000 + 07484929 n 0101 + 01021270 n 0101 02 + 09 00 + 11 00 | compete with successfully; approach or reach equality with; "This artist's drawings cannot emulate his water colors" -01122630 33 v 02 outrival 0 outvie 0 001 @ 01122194 v 0000 02 + 09 00 + 11 00 | be more of a rival than -01122736 33 v 01 joust 0 003 @ 01090335 v 0000 + 07472460 n 0101 ~ 01122906 v 0000 02 + 02 00 + 22 00 | joust against somebody in a tournament by fighting on horseback -01122906 33 v 01 tilt 0 003 @ 01122736 v 0000 + 07472460 n 0102 + 10711144 n 0101 02 + 02 00 + 22 00 | charge with a tilt -01123030 33 v 02 chicken-fight 0 chickenfight 0 001 @ 01090335 v 0000 01 + 02 00 | fight while sitting on somebody's shoulders -01123159 33 v 01 tourney 0 002 @ 01090335 v 0000 + 07464725 n 0102 01 + 02 00 | engage in a tourney -01123261 33 v 01 feud 0 002 @ 01090335 v 0000 + 01236173 n 0101 02 + 02 00 + 22 00 | carry out a feud; "The two professors have been feuding for years" -01123415 33 v 01 carry 3 004 $ 01123609 v 0000 @ 01835496 v 0000 ;c 00464894 n 0000 + 00318735 n 0101 01 + 01 00 | cover a certain distance or advance beyond; "The drive carried to the green" -01123609 33 v 01 carry 4 003 @ 02630189 v 0000 + 00318735 n 0101 $ 01123415 v 0000 01 + 01 00 | have a certain range; "This rifle carries for 3,000 feet" -01123765 33 v 01 skirmish 0 003 @ 01090335 v 0000 + 10605848 n 0101 + 00959376 n 0104 01 + 02 00 | engage in a skirmish -01123887 33 v 02 strike 0 hit 0 009 $ 01137138 v 0000 @ 01119169 v 0000 + 00109414 n 0101 + 00977301 n 0101 ~ 01124389 v 0000 ~ 01124535 v 0000 ~ 01124608 v 0000 ~ 01153165 v 0000 $ 01209135 v 0000 05 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | make a strategic, offensive, assault against an enemy, opponent, or a target; "The Germans struck Poland on Sept. 1, 1939"; "We must strike the enemy's oil fields"; "in the fifth inning, the Giants struck, sending three runners home to win the game 5 to 2" -01124389 33 v 01 slice 0 003 @ 01123887 v 0000 + 00572043 n 0101 + 00572043 n 0103 02 + 02 00 + 08 00 | hit a ball so that it causes a backspin -01124535 33 v 01 chop 0 001 @ 01123887 v 0000 01 + 08 00 | hit sharply -01124608 33 v 01 stroke 0 002 @ 01123887 v 0000 + 00565302 n 0101 01 + 08 00 | strike a ball with a smooth blow -01124722 33 v 01 stroke 1 002 @ 01946996 v 0000 + 10664850 n 0101 01 + 02 00 | row at a particular rate -01124828 33 v 02 feather 0 square 0 003 @ 01946996 v 0000 + 00342565 n 0101 + 00342565 n 0102 01 + 02 00 | turn the oar, while rowing -01124964 33 v 02 feather 2 square 1 002 @ 01947887 v 0000 + 00342565 n 0101 01 + 02 00 | turn the paddle; in canoeing -01125084 33 v 02 counterattack 0 counterstrike 0 002 @ 01119169 v 0000 + 00978173 n 0101 01 + 02 00 | make a counterattack -01125209 33 v 02 take_the_count 0 remain_down 0 002 ;c 00445802 n 0000 @ 01099592 v 0000 01 + 02 00 | be counted out; remain down while the referee counts to ten -01125373 33 v 01 gas 0 003 @ 01119169 v 0000 + 00224936 n 0101 ~ 01125558 v 0000 02 + 08 00 + 09 00 | attack with gas; subject to gas fumes; "The despot gassed the rebellious tribes" -01125558 33 v 01 teargas 0 001 @ 01125373 v 0000 02 + 08 00 + 09 00 | attack with teargas; subject to teargas fumes; "The students were teargassed during the riot" -01125724 33 v 01 mine 0 004 @ 00222472 v 0000 + 03768132 n 0101 + 00961962 n 0101 ~ 01125882 v 0000 01 + 08 00 | lay mines; "The Vietnamese mined Cambodia" -01125882 33 v 01 countermine 0 002 @ 01125724 v 0000 + 01077190 n 0101 01 + 08 00 | destroy enemy mines with one's own mines; "We countermined the banks of the river" -01126051 33 v 02 storm 0 surprise 0 004 @ 01119169 v 0000 + 07298154 n 0201 + 10679723 n 0201 + 00974630 n 0101 02 + 08 00 + 09 00 | attack by storm; attack suddenly -01126219 33 v 01 blitz 0 002 @ 01119169 v 0000 + 00975781 n 0101 01 + 08 00 | attack suddenly and without warning; "Hitler blitzed Poland" -01126360 33 v 02 invade 0 occupy 0 007 @ 01119169 v 0000 + 10369955 n 0201 + 01133106 n 0201 + 01629681 a 0103 + 00976531 n 0101 + 10214062 n 0101 ~ 02020413 v 0000 02 + 08 00 + 11 00 | march aggressively into another's territory by military force for the purposes of conquest and occupation; "Hitler invaded Poland on September 1, 1939" -01126700 33 v 02 beset 0 set_upon 0 001 @ 01120069 v 0000 02 + 09 00 + 10 00 | assail or attack on all sides: "The zebra was beset by leopards" -01126846 33 v 02 blockade 0 seal_off 0 002 @ 01127411 v 0000 + 00954086 n 0101 01 + 08 00 | impose a blockade on -01126961 33 v 02 blockade 1 block_off 0 002 @ 01476483 v 0000 + 02853218 n 0101 01 + 08 00 | obstruct access to -01127075 33 v 02 barricade 0 barricado 0 003 @ 01476483 v 0000 + 04096848 n 0102 + 02796412 n 0101 01 + 08 00 | block off with barricades -01127215 33 v 01 barricade 1 003 @ 01476483 v 0000 + 04096848 n 0102 + 02796412 n 0101 01 + 08 00 | prevent access to by barricading; "The street where the President lives is always barricaded" -01127411 33 v 05 besiege 0 beleaguer 0 surround 0 hem_in 0 circumvent 1 004 @ 01119169 v 0000 + 09850974 n 0101 ~ 01126846 v 0000 ~ 01127638 v 0000 01 + 08 00 | surround so as to force to give up; "The Turks besieged Vienna" -01127638 33 v 01 ebb 0 001 @ 01127411 v 0000 01 + 08 00 | hem in fish with stakes and nets so as to prevent them from going back into the sea with the ebb -01127795 33 v 01 defend 0 010 * 01090335 v 0000 @ 02450505 v 0000 + 02525876 a 0102 + 01630117 a 0101 + 08081403 n 0102 ! 01119169 v 0101 ~ 01128071 v 0000 ~ 01128193 v 0000 ~ 01129591 v 0000 ~ 01131473 v 0000 02 + 08 00 + 09 00 | be on the defensive; act against an attack -01128071 33 v 01 bulwark 0 003 @ 01127795 v 0000 + 04051825 n 0102 + 02894605 n 0105 01 + 08 00 | defend with a bulwark -01128193 33 v 01 protect 0 023 @ 01127795 v 0000 + 01887076 a 0101 + 04014297 n 0103 + 00817680 n 0101 + 09614684 n 0103 ~ 00895855 v 0000 ~ 01128778 v 0000 ~ 01128899 v 0000 ~ 01129064 v 0000 ~ 01129201 v 0000 ~ 01129337 v 0000 ~ 01129876 v 0000 ~ 01130169 v 0000 ~ 01130455 v 0000 ~ 01130607 v 0000 ~ 01138102 v 0000 ~ 01148296 v 0000 ~ 01148580 v 0000 ~ 01154825 v 0000 ~ 02026868 v 0000 ~ 02251065 v 0000 ~ 02395000 v 0000 ~ 02733122 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | shield from danger, injury, destruction, or damage; "Weatherbeater protects your roof from the rain" -01128778 33 v 02 immunize 0 immunise 0 001 @ 01128193 v 0000 02 + 09 00 + 10 00 | law: grant immunity from prosecution -01128899 33 v 01 overprotect 0 002 @ 01128193 v 0000 + 00820721 n 0102 02 + 08 00 + 09 00 | protect excessively; "Don't overprotect your son--he is an adult now!" -01129064 33 v 01 look_out a 001 @ 01128193 v 0000 01 + 09 00 | to protect someone's interests; "A man's gotta look out for his family" -01129201 33 v 01 cover 1 003 @ 01128193 v 0000 + 00988893 n 0101 $ 02687916 v 0000 01 + 08 00 | hold within range of an aimed firearm -01129337 33 v 02 guard 0 ward 0 005 @ 01128193 v 0000 + 10767020 n 0201 + 10767265 n 0201 + 08215603 n 0101 ~ 02550168 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | watch over or shield from danger or harm; protect; "guard my possessions while I'm away" -01129591 33 v 01 ward_off 0 001 @ 01127795 v 0000 02 + 08 00 + 09 00 | avert, turn away, or repel; "Ward off danger" -01129710 33 v 01 protect 1 004 @ 02414710 v 0000 ;c 01091905 n 0000 + 01887076 a 0101 + 01127874 n 0101 02 + 08 00 + 09 00 | use tariffs to favor domestic industry -01129876 33 v 03 defend 2 guard 3 hold 5 006 @ 01128193 v 0000 + 02525876 a 0102 + 01630117 a 0101 + 09614684 n 0101 + 08064130 n 0102 $ 02441897 v 0000 01 + 08 00 | protect against a challenge or attack; "Hold that position behind the trees!"; "Hold the bridge against the enemy's attacks" -01130169 33 v 02 shield 0 screen 0 009 @ 01128193 v 0000 + 02851099 n 0202 + 04153025 n 0202 + 04152387 n 0201 + 01049685 n 0203 + 04192698 n 0101 + 04192858 n 0101 + 09614684 n 0104 + 00818362 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | protect, hide, or conceal from danger or harm -01130455 33 v 01 charm 0 003 @ 01128193 v 0000 + 07159791 n 0104 + 03009633 n 0101 02 + 09 00 + 10 00 | protect through supernatural powers or charms -01130607 33 v 05 wall 0 palisade 0 fence 0 fence_in 0 surround 1 011 @ 01128193 v 0000 + 08567235 n 0504 + 03327234 n 0301 + 03878963 n 0201 + 04547592 n 0101 + 04051825 n 0103 + 04546855 n 0101 ^ 01389942 v 0101 ^ 01389942 v 0102 ~ 01130930 v 0000 ~ 01131058 v 0000 01 + 08 00 | surround with a wall in order to fortify -01130930 33 v 01 stockade 0 002 @ 01130607 v 0000 + 04322531 n 0101 01 + 08 00 | surround with a stockade in order to fortify -01131058 33 v 01 circumvallate 0 001 @ 01130607 v 0000 02 + 08 00 + 11 00 | surround with or as if with a rampart or other fortification -01131197 33 v 05 repel 0 repulse 0 fight_off 0 rebuff 0 drive_back 0 005 @ 01091427 v 0000 + 07208000 n 0401 + 07208000 n 0203 + 00961001 n 0201 + 00170156 a 0101 02 + 08 00 + 09 00 | force or drive back; "repel the attacker"; "fight off the onslaught"; "rebuff the attack" -01131473 33 v 06 check 6 turn_back 0 arrest 0 stop 0 contain 0 hold_back 0 005 @ 01127795 v 0000 + 05986948 n 0501 + 01147451 n 0501 + 02982790 n 0402 ~ 01104509 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hold back, as of a danger or an enemy; check the expansion or influence of; "Arrest the downward trend"; "Check the growth of communism in South East Asia"; "Contain the rebel movement"; "Turn back the tide of communism" -01131902 33 v 02 bombard 0 bomb 0 018 @ 01119169 v 0000 + 09864536 n 0201 + 02867715 n 0201 + 02866578 n 0201 + 00978413 n 0201 + 00978413 n 0102 ~ 01132355 v 0000 ~ 01132541 v 0000 ~ 01132667 v 0000 ~ 01132797 v 0000 ~ 01132880 v 0000 ~ 01132980 v 0000 ~ 01133096 v 0000 ~ 01133194 v 0000 ~ 01133288 v 0000 ~ 01133488 v 0000 ~ 01133667 v 0000 ~ 01135922 v 0000 02 + 08 00 + 09 00 | throw bombs at or attack with bombs; "The Americans bombed Dresden" -01132355 33 v 01 carpet_bomb 0 002 @ 01131902 v 0000 + 00978993 n 0101 02 + 08 00 + 09 00 | bomb a large area systematically and extensively; "The U.S. decided to carpet bomb Vietnam" -01132541 33 v 01 bomb_out 0 001 @ 01131902 v 0000 01 + 09 00 | make somebody homeless by destroying their houses with bombs -01132667 33 v 01 dive-bomb 0 003 @ 01131902 v 0000 + 03215191 n 0101 + 00979180 n 0101 01 + 08 00 | bomb from a diving airplane -01132797 33 v 01 glide-bomb 0 001 @ 01131902 v 0000 01 + 09 00 | bomb by gliding -01132880 33 v 01 skip-bomb 0 001 @ 01131902 v 0000 01 + 08 00 | attack with delayed release bombs -01132980 33 v 02 atom-bomb 0 nuke 1 002 @ 01131902 v 0000 + 02753881 n 0204 01 + 08 00 | bomb with atomic weapons -01133096 33 v 01 hydrogen-bomb 0 001 @ 01131902 v 0000 01 + 08 00 | attack with a hydrogen bomb -01133194 33 v 01 pattern-bomb 0 001 @ 01131902 v 0000 01 + 08 00 | bomb in certain patterns -01133288 33 v 04 nuke 0 atomize 0 atomise 0 zap 0 004 @ 01131902 v 0000 + 00218602 n 0302 + 00218602 n 0201 + 02753881 n 0104 02 + 08 00 + 09 00 | strike at with firepower or bombs; "zap the enemy" -01133488 33 v 01 letter_bomb 0 002 @ 01131902 v 0000 + 03657918 n 0101 01 + 09 00 | send an explosive to; "The Unabomber letter bombed a number of individuals and institutions" -01133667 33 v 01 firebomb 0 002 @ 01131902 v 0000 + 03565991 n 0103 02 + 08 00 + 09 00 | attack with incendiary bombs; "The rioters fire-bombed the stores" -01133825 33 v 02 fire 0 discharge 1 008 > 01134238 v 0000 + 00123234 n 0201 + 00986938 n 0101 + 00123234 n 0102 ~ 01134071 v 0000 ~ 01134375 v 0000 ~ 01134781 v 0000 ~ 01137582 v 0000 01 + 08 00 | cause to go off; "fire a gun"; "fire a bullet" -01134071 33 v 01 pop 0 003 @ 01133825 v 0000 + 07390400 n 0101 + 07390400 n 0102 01 + 02 00 | fire a weapon with a loud explosive noise; "The soldiers were popping" -01134238 33 v 03 fire 2 discharge 2 go_off 0 002 + 00123234 n 0201 + 00986938 n 0101 01 + 01 00 | go off or discharge; "The gun fired" -01134375 33 v 03 loose_off 0 let_fly 0 let_drive 0 001 @ 01133825 v 0000 01 + 08 00 | fire as from a gun; "The soldiers let drive their bullets" -01134522 33 v 01 cannon 0 004 @ 01097743 v 0000 + 02950482 n 0101 + 02950256 n 0101 + 09811852 n 0102 01 + 02 00 | fire a cannon -01134653 33 v 01 misfire 0 002 @ 00434374 v 0000 + 07421749 n 0101 01 + 01 00 | fail to fire or detonate; "The guns misfired" -01134781 33 v 02 blast 1 shoot 0 011 @ 01133825 v 0000 + 10593115 n 0202 + 00122954 n 0201 + 00122661 n 0201 ~ 01135086 v 0000 ~ 01135219 v 0000 ~ 01135501 v 0000 ~ 01135783 v 0000 ~ 01136614 v 0000 $ 01137138 v 0000 ~ 01155307 v 0000 03 + 02 00 + 08 00 + 22 00 | fire a shot; "the gunman blasted away" -01135086 33 v 02 blaze_away 0 blaze 0 001 @ 01134781 v 0000 01 + 02 00 | shoot rapidly and repeatedly; "He blazed away at the men" -01135219 33 v 01 overshoot 0 004 * 01151110 v 0000 @ 01237901 v 0000 @ 01134781 v 0000 ! 01152532 v 0101 01 + 08 00 | shoot beyond or over (a target) -01135371 33 v 01 trigger 0 002 * 01133825 v 0000 + 03470629 n 0102 01 + 08 00 | release or pull the trigger on; "Trigger a gun" -01135501 33 v 02 sharpshoot 0 snipe 0 005 @ 01134781 v 0000 + 00124151 n 0201 + 10616899 n 0201 + 10586793 n 0101 + 10294953 n 0102 01 + 02 00 | aim and shoot with great precision -01135683 33 v 01 snipe 1 002 @ 01143838 v 0000 + 02031934 n 0101 01 + 02 00 | hunt or shoot snipe -01135783 33 v 02 open_fire 0 fire 1 003 @ 01134781 v 0000 + 00986938 n 0201 + 00986938 n 0202 02 + 02 00 + 22 00 | start firing a weapon -01135922 33 v 02 blast 0 shell 0 006 @ 01131902 v 0000 + 04190464 n 0201 + 00987863 n 0205 + 07408171 n 0101 + 09859557 n 0101 ~ 01136393 v 0000 01 + 08 00 | use explosives on; "The enemy has been shelling us all day" -01136142 33 v 01 strafe 0 003 @ 01119169 v 0000 + 10660621 n 0101 + 01246334 n 0101 03 + 09 00 + 10 00 + 11 00 | attack with machine guns or cannon fire from a low-flying plane; "civilians were strafed in an effort to force the country's surrender" -01136393 33 v 01 crump 0 001 @ 01135922 v 0000 01 + 08 00 | bombard with heavy shells -01136481 33 v 01 cannonade 0 002 @ 01119169 v 0000 + 00994623 n 0101 03 + 02 00 + 08 00 + 09 00 | attack with cannons or artillery -01136614 33 v 01 gun 0 009 @ 01134781 v 0000 + 00123430 n 0101 + 10152083 n 0104 + 10593392 n 0102 + 02746365 n 0103 + 03467984 n 0101 + 09811852 n 0103 ^ 01136964 v 0101 ~ 01136835 v 0000 01 + 02 00 | shoot with a gun -01136835 33 v 01 machine_gun 0 003 * 01137138 v 0000 @ 01136614 v 0000 + 03701391 n 0101 01 + 09 00 | shoot with a machine gun -01136964 33 v 01 gun_down 0 001 @ 01137138 v 0000 01 + 09 00 | strike down or shoot down -01137055 33 v 01 grass 0 001 @ 01137138 v 0000 01 + 08 00 | shoot down, of birds -01137138 33 v 03 shoot 1 hit 1 pip 1 010 $ 01134781 v 0000 $ 02484570 v 0000 @ 00069879 v 0000 + 00125629 n 0202 + 00122954 n 0101 + 10593115 n 0102 $ 01123887 v 0000 ~ 01136964 v 0000 ~ 01137055 v 0000 ~ 01137415 v 0000 02 + 08 00 + 09 00 | hit with a missile from a weapon -01137415 33 v 01 kneecap 0 001 @ 01137138 v 0000 01 + 09 00 | shoot in the kneecap, often done by terrorist groups as a warning; "They kneecapped the industrialist" -01137582 33 v 01 fusillade 0 002 @ 01133825 v 0000 + 00988320 n 0101 02 + 08 00 + 09 00 | attack with fusillade -01137696 33 v 01 defuse 0 003 @ 00173338 v 0000 + 00233614 n 0102 ! 01137829 v 0101 01 + 08 00 | remove the triggering device from -01137829 33 v 01 fuse 0 004 @ 02339413 v 0000 + 03407122 n 0101 + 03407369 n 0101 ! 01137696 v 0101 01 + 08 00 | equip with a fuse; provide with a fuse -01137983 33 v 01 torpedo 0 002 @ 01119169 v 0000 + 04456472 n 0101 02 + 08 00 + 09 00 | attack or hit with torpedoes -01138102 33 v 01 safeguard 0 002 @ 01128193 v 0000 + 00822970 n 0102 02 + 08 00 + 09 00 | make safe -01138204 33 v 07 ambush 0 scupper 0 bushwhack 0 waylay 0 lurk 0 ambuscade 0 lie_in_wait 0 006 @ 02637938 v 0000 + 01246926 n 0602 + 10277352 n 0501 + 09881748 n 0301 + 01246926 n 0101 + 09788073 n 0101 01 + 09 00 | wait in hiding to attack -01138446 33 v 01 bandy 0 001 @ 01090335 v 0000 01 + 02 00 | exchange blows -01138523 33 v 01 gamble 0 008 @ 01072949 v 0000 + 13342987 n 0101 + 10118844 n 0101 + 00430140 n 0101 ~ 01138733 v 0000 ~ 01138822 v 0000 ~ 01138911 v 0000 ~ 01155687 v 0000 01 + 02 00 | play games for money -01138733 33 v 01 dice 0 002 @ 01138523 v 0000 + 03191029 n 0102 01 + 02 00 | play dice -01138822 33 v 01 shoot_craps 0 001 @ 01138523 v 0000 01 + 02 00 | play a game of craps -01138911 33 v 01 play 1 004 $ 01156115 v 0000 @ 01138523 v 0000 + 00430140 n 0103 ~ 01139496 v 0000 01 + 08 00 | bet or wager (money); "He played $20 on the new horse"; "She plays the races" -01139104 33 v 06 bet_on 0 back 0 gage 0 stake 0 game 0 punt 0 006 @ 01155687 v 0000 + 09851876 n 0604 + 00430140 n 0502 + 13343526 n 0401 ~ 01139380 v 0000 ~ 01139623 v 0000 02 + 08 00 + 13 00 | place a bet on; "Which horse are you backing?"; "I'm betting on the new horse" -01139380 33 v 01 ante 0 003 @ 01139104 v 0000 ;c 00488225 n 0000 + 13343917 n 0101 01 + 08 00 | place one's stake -01139496 33 v 01 underplay 0 002 @ 01138911 v 0000 ;c 00488225 n 0000 01 + 08 00 | play a card lower than (a held high card) -01139623 33 v 02 parlay 0 double_up 0 001 @ 01139104 v 0000 02 + 08 00 + 13 00 | stake winnings from one bet on a subsequent wager -01139756 33 v 01 check 2 002 @ 01076615 v 0000 ;c 00488225 n 0000 01 + 02 00 | decline to initiate betting -01139865 33 v 02 bird 0 birdwatch 0 005 @ 02169352 v 0000 + 09856500 n 0201 + 10384214 n 0202 + 09856500 n 0102 + 01503061 n 0101 02 + 02 00 + 22 00 | watch and study birds in their natural habitat -01140065 33 v 01 crab 0 003 @ 01140794 v 0000 + 01976957 n 0101 + 07787715 n 0101 02 + 02 00 + 22 00 | fish for crab -01140184 33 v 01 seine 0 002 @ 01140794 v 0000 + 04168541 n 0101 02 + 02 00 + 08 00 | fish with a seine; catch fish with a seine -01140315 33 v 02 scallop 0 scollop 0 007 @ 01140794 v 0000 + 07654886 n 0203 + 01965889 n 0202 + 07797641 n 0202 + 01965889 n 0101 + 07654886 n 0102 + 07797641 n 0101 01 + 02 00 | fish for scallops -01140515 33 v 01 harpoon 0 003 @ 01439190 v 0000 + 10160913 n 0101 + 03495671 n 0101 01 + 08 00 | spear with a harpoon; "harpoon whales" -01140654 33 v 01 walk 1 004 @ 01072949 v 0000 ;c 00471613 n 0000 + 00127286 n 0102 $ 01113473 v 0000 01 + 09 00 | give a base on balls to -01140794 33 v 01 fish 0 019 @ 01439190 v 0000 + 07775375 n 0101 + 02512053 n 0101 + 10093658 n 0102 + 00454121 n 0101 + 00453935 n 0101 + 03350880 n 0101 ~ 01140065 v 0000 ~ 01140184 v 0000 ~ 01140315 v 0000 ~ 01141271 v 0000 ~ 01141413 v 0000 ~ 01141612 v 0000 ~ 01142070 v 0000 ~ 01143410 v 0000 ~ 01143614 v 0000 ~ 01143713 v 0000 ~ 01145468 v 0000 ~ 01382606 v 0000 03 + 02 00 + 08 00 + 22 00 | catch or try to catch fish or shellfish; "I like to go fishing on weekends" -01141271 33 v 01 rail 0 001 @ 01140794 v 0000 01 + 02 00 | fish with a handline over the rails of a boat; "They are railing for fresh fish" -01141413 33 v 01 brail 0 001 @ 01140794 v 0000 01 + 08 00 | haul fish aboard with brails -01141504 33 v 02 fly-fish 0 flyfish 0 001 @ 01141612 v 0000 02 + 02 00 + 22 00 | fish with flies as lures -01141612 33 v 01 angle 0 005 @ 01140794 v 0000 + 02548247 n 0102 + 09793946 n 0101 ~ 01141504 v 0000 ~ 01141763 v 0000 01 + 02 00 | fish with a hook -01141763 33 v 01 troll 0 004 @ 01141612 v 0000 + 04486934 n 0101 + 00454493 n 0101 + 09793946 n 0102 02 + 02 00 + 08 00 | angle with a hook and line drawn through the water -01141938 33 v 01 whale 0 004 @ 01143838 v 0000 + 02062744 n 0101 + 10775128 n 0101 + 04574471 n 0101 01 + 02 00 | hunt for whales -01142070 33 v 01 shrimp 0 004 @ 01140794 v 0000 + 07794159 n 0102 + 01986806 n 0101 + 04210288 n 0101 01 + 02 00 | fish for shrimp -01142203 33 v 02 still-hunt 0 ambush 1 003 @ 01143838 v 0000 + 01246926 n 0201 + 09788073 n 0201 02 + 02 00 + 08 00 | hunt (quarry) by stalking and ambushing -01142363 33 v 01 turtle 0 002 @ 01143838 v 0000 + 10733705 n 0101 01 + 02 00 | hunt for turtles, especially as an occupation -01142490 33 v 01 drive 0 002 @ 01143838 v 0000 $ 01142636 v 0000 01 + 08 00 | hunting: chase from cover into more open ground; "drive the game" -01142636 33 v 01 drive 1 002 $ 01142490 v 0000 @ 01143838 v 0000 01 + 08 00 | hunting: search for game; "drive the forest" -01142761 33 v 01 rabbit 0 004 @ 01143838 v 0000 + 07666521 n 0101 + 14765324 n 0102 + 02324045 n 0101 02 + 02 00 + 22 00 | hunt rabbits -01142899 33 v 01 fowl 0 003 @ 01143838 v 0000 + 01789740 n 0102 ~ 01143028 v 0000 02 + 02 00 + 22 00 | hunt fowl in the forest -01143028 33 v 01 grouse 0 003 @ 01142899 v 0000 + 01795088 n 0101 + 07647115 n 0101 02 + 02 00 + 22 00 | hunt grouse -01143147 33 v 01 whelk 0 003 @ 01382917 v 0000 + 07782804 n 0101 + 01947396 n 0101 02 + 02 00 + 22 00 | gather whelk -01143266 33 v 01 poach 0 002 @ 01143838 v 0000 + 10444058 n 0101 01 + 02 00 | hunt illegally; "people are poaching elephants for their ivory" -01143410 33 v 01 net_fish 0 001 @ 01140794 v 0000 02 + 02 00 + 08 00 | fish with nets -01143498 33 v 01 seal 0 003 @ 01143838 v 0000 + 02076196 n 0101 + 14766040 n 0101 02 + 02 00 + 22 00 | hunt seals -01143614 33 v 01 shark 0 002 @ 01140794 v 0000 + 01482330 n 0101 02 + 02 00 + 22 00 | hunt shark -01143713 33 v 01 trawl 0 003 @ 01140794 v 0000 + 04475900 n 0101 + 04475749 n 0101 02 + 02 00 + 22 00 | fish with trawlers -01143838 33 v 04 hunt 0 run 2 hunt_down 0 track_down 0 026 $ 02092309 v 0000 @ 01480149 v 0000 + 00452293 n 0101 + 00622584 n 0101 + 10193026 n 0101 + 00452293 n 0102 + 00622584 n 0102 ~ 01135683 v 0000 ~ 01141938 v 0000 ~ 01142203 v 0000 ~ 01142363 v 0000 ~ 01142490 v 0000 ~ 01142636 v 0000 ~ 01142761 v 0000 ~ 01142899 v 0000 ~ 01143266 v 0000 ~ 01143498 v 0000 ~ 01144550 v 0000 $ 01144657 v 0000 ~ 01144873 v 0000 ~ 01145024 v 0000 ~ 01145365 v 0000 ~ 01145612 v 0000 ~ 01145766 v 0000 ~ 01145944 v 0000 ~ 02269894 v 0000 03 + 02 00 + 08 00 + 09 00 | pursue for food or sport (as of wild animals); "Goering often hunted wild boars in Poland"; "The dogs are running deer"; "The Duke hunted in these woods" -01144550 33 v 01 ferret 0 002 @ 01143838 v 0000 + 02443484 n 0102 02 + 02 00 + 08 00 | hunt with ferrets -01144657 33 v 01 hunt 2 006 $ 01143838 v 0000 @ 02153709 v 0000 + 00452293 n 0101 + 00622584 n 0101 + 10193026 n 0101 + 00452293 n 0102 01 + 08 00 | search (an area) for prey; "The King used to hunt these forests" -01144873 33 v 01 course 0 003 @ 01143838 v 0000 ;c 00455599 n 0000 + 00453126 n 0101 02 + 02 00 + 08 00 | hunt with hounds; "He often courses hares" -01145024 33 v 01 foxhunt 0 003 @ 01143838 v 0000 + 00453478 n 0102 + 00453478 n 0101 01 + 02 00 | hunt foxes, on horseback and with dogs -01145163 33 v 01 tree 0 002 @ 02001858 v 0000 + 13104059 n 0101 02 + 08 00 + 11 00 | chase an animal up a tree; "the hunters treed the bear with dogs and killed it"; "her dog likes to tree squirrels" -01145365 33 v 02 jacklight 0 jack 0 001 @ 01143838 v 0000 02 + 02 00 + 08 00 | hunt with a jacklight -01145468 33 v 01 still-fish 0 001 @ 01140794 v 0000 02 + 02 00 + 08 00 | fish with the line and bait resting still or stationary in the water -01145612 33 v 01 hawk 0 003 @ 01143838 v 0000 + 01605630 n 0101 + 10076604 n 0102 01 + 02 00 | hunt with hawks; "the tribes like to hawk in the desert" -01145766 33 v 01 falcon 0 004 @ 01143838 v 0000 + 01610955 n 0101 + 10076604 n 0101 + 05635448 n 0101 01 + 02 00 | hunt with falcons; "The tribes like to falcon in the desert" -01145944 33 v 01 fowl 1 003 @ 01143838 v 0000 + 10108240 n 0101 + 01789740 n 0102 01 + 02 00 | hunt fowl -01146051 33 v 03 strive 0 reach 0 strain 0 006 @ 02406916 v 0000 + 00624553 n 0301 + 00788766 n 0304 ~ 01146290 v 0000 ~ 01146382 v 0000 ~ 02507464 v 0000 02 + 02 00 + 22 00 | to exert much effort or energy; "straining our ears to hear" -01146290 33 v 01 extend_oneself 0 001 @ 01146051 v 0000 01 + 02 00 | strain to the utmost -01146382 33 v 02 kill_oneself 0 overexert_oneself 0 001 @ 01146051 v 0000 01 + 02 00 | strain oneself more than is healthy -01146507 33 v 01 bowl 0 004 @ 01072949 v 0000 + 02881546 n 0101 + 09869961 n 0101 ~ 01146697 v 0000 01 + 02 00 | engage in the sport of bowling; "My parents like to bowl on Friday nights" -01146697 33 v 01 skittle 0 002 @ 01146507 v 0000 + 03825271 n 0102 01 + 02 00 | play skittles -01146793 33 v 01 golf 0 004 @ 01072949 v 0000 + 10136959 n 0101 + 00127021 n 0101 + 00464894 n 0101 01 + 02 00 | play golf -01146918 33 v 01 fence 1 004 @ 01090335 v 0000 + 10085217 n 0101 + 01171644 n 0101 ~ 01147060 v 0000 01 + 02 00 | fight with fencing swords -01147060 33 v 03 parry 0 block 0 deflect 0 006 @ 01146918 v 0000 + 09860248 n 0201 + 00562398 n 0202 + 01074694 n 0201 + 00562398 n 0201 + 00135504 n 0102 01 + 08 00 | impede the movement of (an opponent or a ball); "block an attack" -01147296 33 v 01 bandy 1 003 @ 01072949 v 0000 ;c 00523513 n 0000 ~ 01147432 v 0000 01 + 02 00 | toss or strike a ball back and forth -01147432 33 v 01 shuttlecock 0 002 @ 01147296 v 0000 + 04212282 n 0101 01 + 08 00 | send or toss to and fro, like a shuttlecock -01147562 33 v 02 rule_out 0 rule_in 0 001 @ 00715868 v 0000 01 + 08 00 | include or exclude by determining judicially or in agreement with rules -01147709 33 v 01 foul 0 004 @ 01072949 v 0000 + 00770997 n 0101 ~ 01148101 v 0000 ~ 01148199 v 0000 01 + 02 00 | commit a foul; break the rules -01147855 33 v 01 foul 1 004 @ 01405044 v 0000 ;c 00471613 n 0000 + 00770997 n 0101 ~ 01404774 v 0000 01 + 02 00 | hit a foul ball -01147987 33 v 01 cannon 1 003 @ 01405044 v 0000 ;c 00499924 n 0000 + 00500449 n 0102 01 + 02 00 | make a cannon -01148101 33 v 01 hack 0 002 @ 01147709 v 0000 ;c 00470966 n 0000 01 + 09 00 | kick on the shins -01148199 33 v 01 hack 1 002 @ 01147709 v 0000 ;c 00480993 n 0000 01 + 09 00 | kick on the arms -01148296 33 v 01 cover 0 003 @ 01128193 v 0000 ~ 01148460 v 0000 $ 01148580 v 0000 01 + 08 00 | protect or defend (a position in a game); "he covered left field" -01148460 33 v 01 double-team 0 002 @ 01148296 v 0000 ;c 00523513 n 0000 01 + 09 00 | cover with two defensive players -01148580 33 v 01 cover d 002 $ 01148296 v 0000 @ 01128193 v 0000 01 + 08 00 | be responsible for guarding an opponent in a game -01148710 33 v 02 pull d root_for 0 001 @ 01148961 v 0000 01 + 22 00 | take sides with; align oneself with; show strong sympathy for; "We all rooted for the home team"; "I'm pulling for the underdog"; "Are you siding with the defender of the title?" -01148961 33 v 01 side 0 002 @ 00733632 v 0000 ~ 01148710 v 0000 01 + 22 00 | take sides for or against; "Who are you widing with?"; "I"m siding against the current candidate" -01149138 33 v 02 champion 0 defend 4 005 @ 02453889 v 0000 + 02525876 a 0202 + 09614684 n 0201 + 10677713 n 0103 + 09906538 n 0101 02 + 08 00 + 09 00 | protect or fight for as a champion -01149327 33 v 01 deploy 0 003 @ 01987160 v 0000 + 01143409 n 0101 ~ 01149470 v 0000 01 + 08 00 | place troops or weapons in battle formation -01149470 33 v 01 play 3 007 $ 01079873 v 0000 $ 01080064 v 0000 @ 01149327 v 0000 + 00430140 n 0103 ~ 01149868 v 0000 ~ 01150010 v 0000 ~ 02300549 v 0000 01 + 08 00 | put (a card or piece) into play during a game, or act strategically as if in a card game; "He is playing his cards close to his chest"; "The Democrats still have some cards to play before they will concede the electoral victory" -01149868 33 v 01 pitch 4 003 @ 01149470 v 0000 ;c 00488225 n 0000 + 00498558 n 0101 01 + 08 00 | lead (a card) and establish the trump suit -01150010 33 v 01 cover 7 002 @ 01149470 v 0000 ;c 00488225 n 0000 01 + 02 00 | play a higher card than the one previously played; "Smith covered again" -01150164 33 v 01 tackle 1 005 @ 01118449 v 0000 ;c 00468480 n 0000 + 10688070 n 0101 + 00561985 n 0101 + 10688238 n 0101 01 + 09 00 | seize and throw down an opponent player, who usually carries the ball -01150370 33 v 03 weight-lift 0 weightlift 0 press 0 004 @ 00099721 v 0000 + 00627013 n 0301 + 10773394 n 0201 + 00626188 n 0202 01 + 02 00 | lift weights; "This guy can press 300 pounds" -01150559 33 v 05 target 0 aim a place 3 direct 1 point a 007 @ 01151110 v 0000 + 08664443 n 0302 + 00815644 n 0201 + 05981230 n 0104 + 10470460 n 0103 ~ 01150981 v 0000 ~ 01153007 v 0000 04 + 08 00 + 09 00 + 22 05 + 22 02 | intend (something) to move towards a certain goal; "He aimed his fists towards his opponent's face"; "criticism directed at her superior"; "direct your anger towards others, not towards yourself" -01150981 33 v 01 address 0 003 @ 01150559 v 0000 + 09769345 n 0101 + 07067591 n 0101 01 + 21 00 | direct a question at someone -01151110 33 v 05 aim 0 take 9 train 0 take_aim 0 direct 0 010 @ 01987160 v 0000 + 00815644 n 0101 ~ 01150559 v 0000 ~ 01151627 v 0000 ~ 01151753 v 0000 ~ 01151889 v 0000 ~ 01152040 v 0000 ~ 01152214 v 0000 ~ 01152896 v 0000 ~ 02199307 v 0000 03 + 02 00 + 21 00 + 22 00 | point or cause to go (blows, weapons, or objects such as photographic equipment) towards; "Please don't aim at your little brother!"; "He trained his gun on the burglar"; "Don't train your camera on the women"; "Take a swipe at one's opponent" -01151627 33 v 01 draw_a_bead_on 0 001 @ 01151110 v 0000 01 + 08 00 | aim with a gun; "The hunter drew a bead on the rabbit" -01151753 33 v 01 hold 0 001 @ 01151110 v 0000 01 + 20 00 | aim, point, or direct; "Hold the fire extinguisher directly on the flames" -01151889 33 v 01 turn d 001 @ 01151110 v 0000 01 + 08 00 | direct at someone; "She turned a smile on me"; "They turned their flashlights on the car" -01152040 33 v 01 swing 0 002 @ 01151110 v 0000 + 01173660 n 0101 01 + 22 00 | hit or aim at with a sweeping arm movement; "The soccer player began to swing at the referee" -01152214 33 v 03 charge 1 level 1 point 0 002 $ 01152670 v 0000 @ 01151110 v 0000 02 + 02 00 + 22 00 | direct into a position for use; "point a gun"; "He charged his weapon at me" -01152396 33 v 01 hit 3 003 * 01151110 v 0000 @ 02524171 v 0000 + 00125629 n 0102 02 + 08 00 + 11 00 | hit the intended target or goal -01152532 33 v 01 undershoot 0 003 * 01134781 v 0000 @ 01237901 v 0000 ! 01135219 v 0101 01 + 08 00 | shoot short of or below (a target) -01152670 33 v 01 point 2 006 @ 02604760 v 0000 + 03974769 n 0101 + 06818121 n 0102 + 03150795 n 0102 + 03975232 n 0101 $ 01152214 v 0000 02 + 04 00 + 06 00 | be positionable in a specified manner; "The gun points with ease" -01152896 33 v 01 level 2 001 @ 01151110 v 0000 01 + 21 00 | aim at; "level criticism or charges at somebody" -01153007 33 v 03 range_in c home_in c zero_in c 001 @ 01150559 v 0000 01 + 22 00 | direct onto a point or target, especially by automatic navigational aids -01153165 33 v 02 retaliate 0 strike_back 4 003 @ 01123887 v 0000 + 01903160 a 0101 + 01235258 n 0101 02 + 02 00 + 22 00 | make a counterattack and return like for like, especially evil for evil; "The Empire strikes back"; "The Giants struck back and won the opener"; "The Israeli army retaliated for the Hamas bombing" -01153486 33 v 03 revenge 0 avenge 0 retaliate 1 007 @ 02499629 v 0000 + 01903160 a 0301 + 01235258 n 0301 + 09826074 n 0302 + 09826074 n 0201 + 01235258 n 0102 ~ 01153762 v 0000 01 + 08 00 | take revenge for a perceived wrong; "He wants to avenge the murder of his brother" -01153762 33 v 02 get_even 1 get_back 0 002 @ 01153486 v 0000 ~ 01153947 v 0000 02 + 02 00 + 22 00 | take revenge or even out a score; "I cannot accept the defeat--I want to get even" -01153947 33 v 04 pay_back 0 pay_off 0 get 0 fix 0 003 @ 01153762 v 0000 + 01235463 n 0103 $ 02344243 v 0000 02 + 09 00 + 20 00 | take vengeance on or get even; "We'll get them!"; "That'll fix him good!"; "This time I got him" -01154175 33 v 02 retire 0 strike_out 0 003 > 01848465 v 0000 ;c 00471613 n 0000 + 00130347 n 0201 01 + 09 00 | cause to get out; "The pitcher retired three batters"; "the runner was put out at third base" -01154382 33 v 01 put_out 0 003 @ 01072949 v 0000 ;c 00471613 n 0000 + 00130093 n 0101 01 + 02 00 | retire; "he was put out at third base on a long throw from left field" -01154554 33 v 01 take_the_field 0 001 @ 02016523 v 0000 01 + 02 00 | go on the playing field, of a football team -01154669 33 v 01 croquet 0 002 @ 01072949 v 0000 + 00466880 n 0101 01 + 02 00 | play a game in which players hit a wooden ball through a series of hoops -01154825 33 v 01 mothproof 0 001 @ 01128193 v 0000 01 + 08 00 | protect from moths; "mothproof woollen clothes during the summer" -01154957 33 v 01 outplay 0 001 @ 01101913 v 0000 02 + 09 00 + 11 00 | excel or defeat in a game; "The Knicks outplayed the Lakers" -01155090 33 v 03 overtake 0 catch a catch_up_with 0 003 * 01072262 v 0000 + 00340192 n 0102 $ 02018372 v 0000 02 + 09 00 + 11 00 | catch up with and possibly overtake; "The Rolls Royce caught us near the exit ramp" -01155307 33 v 01 pump 0 001 @ 01134781 v 0000 02 + 08 00 + 21 00 | deliver forth; "pump bullets into the dummy" -01155421 33 v 01 fort 0 003 @ 01088923 v 0000 + 03420559 n 0102 + 03386011 n 0102 01 + 09 00 | station (troops) in a fort -01155545 33 v 01 rise 0 001 @ 02569630 v 0000 01 + 22 00 | exert oneself to meet a challenge; "rise to a challenge"; "rise to the occasion" -01155687 33 v 03 bet 0 wager 0 play 8 014 @ 01138523 v 0000 + 00430140 n 0303 + 13343526 n 0204 + 00506658 n 0202 + 09851876 n 0203 + 09851876 n 0101 + 13343526 n 0103 + 00506658 n 0101 + 09851876 n 0102 ~ 01139104 v 0000 $ 01156115 v 0000 ~ 01156115 v 0000 ~ 01156291 v 0000 ~ 01156568 v 0000 02 + 02 00 + 08 00 | stake on the outcome of an issue; "I bet $100 on that new horse"; "She played all her money on the dark horse" -01156115 33 v 01 play 7 004 $ 01155687 v 0000 @ 01155687 v 0000 + 00430140 n 0103 $ 01138911 v 0000 01 + 08 00 | make bets; "Play the races"; "play the casinos in Trouville" -01156291 33 v 01 raise 8 002 @ 01155687 v 0000 ;c 00488225 n 0000 01 + 09 00 | bet more than the previous player -01156406 33 v 01 raise 9 004 @ 02300060 v 0000 ;c 00490569 n 0000 + 00803208 n 0101 + 10505613 n 0101 01 + 08 00 | bid (one's partner's suit) at a higher level -01156568 33 v 01 see 0 002 @ 01155687 v 0000 ;c 00488225 n 0000 01 + 09 00 | match or meet; "I saw the bet of one of my fellow players" -01156706 33 v 01 drop_one's_serve 0 002 @ 01099592 v 0000 ;c 00482298 n 0000 01 + 02 00 | lose a game in which one is serving -01156834 34 v 05 consume 0 ingest 0 take_in 0 take 0 have 0 022 ^ 01197980 v 0404 + 00838098 n 0202 + 01867502 a 0101 + 00838098 n 0101 + 09612848 n 0101 ! 01196037 v 0101 ~ 01157421 v 0000 ~ 01162291 v 0000 ~ 01165043 v 0000 ~ 01166351 v 0000 ~ 01168468 v 0000 ~ 01170052 v 0000 ~ 01171183 v 0000 ~ 01172701 v 0000 ~ 01179865 v 0000 ~ 01193721 v 0000 ~ 01195299 v 0000 ~ 01197980 v 0000 ~ 01198101 v 0000 ~ 01200440 v 0000 ~ 01201856 v 0000 ~ 01205459 v 0000 01 + 08 00 | serve oneself to, or consume regularly; "Have another bowl of chicken soup!"; "I don't take sugar in my coffee" -01157421 34 v 01 hit 0 001 @ 01156834 v 0000 01 + 08 00 | consume to excess; "hit the bottle" -01157517 34 v 08 consume 1 eat_up 3 use_up 0 eat d deplete 0 exhaust 0 run_through 0 wipe_out 0 013 @ 02267060 v 0000 + 00356621 n 0601 + 14017332 n 0501 + 00356199 n 0501 + 01867502 a 0101 + 00932829 a 0101 ~ 00561714 v 0000 ~ 01158022 v 0000 ~ 01191645 v 0000 ~ 01205000 v 0000 ~ 02267529 v 0000 $ 02267989 v 0000 ~ 02280869 v 0000 03 + 08 00 + 11 00 + 22 04 | use up (resources or materials); "this car consumes a lot of gas"; "We exhausted our savings"; "They run through 20 bottles of wine a week" -01158022 34 v 01 drain 0 002 @ 01157517 v 0000 + 01062255 n 0101 03 + 08 00 + 10 00 + 11 00 | deplete of resources; "The exercise class drains me of energy" -01158181 34 v 04 consume 2 squander 0 waste 0 ware 0 010 @ 02267060 v 0000 + 00742645 n 0301 + 10769459 n 0302 + 10479561 n 0203 + 00743822 n 0201 ~ 01195804 v 0000 ~ 01204803 v 0000 ~ 02264601 v 0000 ~ 02266317 v 0000 ~ 02269003 v 0000 02 + 08 00 + 02 03 | spend extravagantly; "waste not, want not" -01158484 34 v 01 spare 0 001 @ 01158572 v 0000 01 + 08 00 | use frugally or carefully -01158572 34 v 02 use 0 expend 0 009 * 01157517 v 0000 + 00356367 n 0203 + 13451804 n 0104 ^ 01157517 v 0103 ~ 00203213 v 0000 ~ 00203556 v 0000 ~ 01158484 v 0000 ~ 02267989 v 0000 ~ 02268351 v 0000 02 + 08 00 + 11 00 | use up, consume fully; "The legislature expended its time on school questions" -01158872 34 v 05 use 1 utilize 0 utilise 0 apply 0 employ 0 044 $ 02561332 v 0000 > 02676789 v 0000 + 00947128 n 0505 + 01834812 a 0401 + 01834812 a 0402 + 00949134 n 0401 + 00947128 n 0304 + 05148699 n 0301 + 02497013 a 0201 + 00947128 n 0203 + 10743124 n 0201 + 05148699 n 0201 + 02496674 a 0101 + 02124253 a 0103 + 00777650 a 0103 + 02496674 a 0102 + 02124253 a 0102 + 00777650 a 0102 + 00947128 n 0101 + 10741590 n 0101 + 00947128 n 0102 ~ 00887463 v 0000 ~ 01079873 v 0000 ~ 01080064 v 0000 ~ 01160193 v 0000 ~ 01160370 v 0000 ~ 01160806 v 0000 ~ 01160899 v 0000 ~ 01161087 v 0000 ~ 01161290 v 0000 ~ 01161561 v 0000 ~ 01161695 v 0000 ~ 01162143 v 0000 ~ 01162425 v 0000 ~ 01162754 v 0000 ~ 01164273 v 0000 ~ 01165579 v 0000 ~ 01166093 v 0000 ~ 01192510 v 0000 ~ 01842690 v 0000 ~ 02295550 v 0000 ~ 02407987 v 0000 ~ 02408965 v 0000 ~ 02590072 v 0000 06 + 08 00 + 09 00 + 11 00 + 15 00 + 21 00 + 24 00 | put into service; make work or employ for a particular purpose or for its inherent or natural purpose; "use your head!"; "we only use Spanish at home"; "I can't use this tool"; "Apply a magnetic field here"; "This thinking was applied to many projects"; "How do you utilize this tool?"; "I apply this rule to get good results"; "use the plastic bags to store the food"; "He doesn't know how to use a computer" -01160193 34 v 01 pull_out_all_the_stops 0 001 @ 01158872 v 0000 01 + 02 00 | use all resources available; "The organizers pulled out all the stops for the centennial meeting" -01160370 34 v 02 put 0 assign 0 002 @ 01158872 v 0000 ~ 01160645 v 0000 01 + 21 00 | attribute or give; "She put too much emphasis on her the last statement"; "He put all his efforts into this job"; "The teacher put an interesting twist to the interpretation of the story" -01160645 34 v 01 repose 0 001 @ 01160370 v 0000 01 + 21 00 | put or confide something in a person or thing; "These philosophers reposed the law in the people" -01160806 34 v 01 ply 1 001 @ 01158872 v 0000 01 + 08 00 | use diligently; "ply your wits!" -01160899 34 v 01 address 0 002 @ 01158872 v 0000 + 00183932 a 0101 02 + 15 00 + 20 00 | address or apply oneself to something, direct one's efforts towards something, such as a question -01161087 34 v 01 waste 5 003 @ 01158872 v 0000 + 04894964 n 0102 + 00742645 n 0101 02 + 08 00 + 11 00 | use inefficiently or inappropriately; "waste heat"; "waste a joke on an unappreciative audience" -01161290 34 v 02 misapply 0 misuse 0 003 @ 01158872 v 0000 + 00947719 n 0201 + 00949516 n 0101 01 + 08 00 | apply to a wrong thing or person; apply badly or incorrectly; "The words are misapplied in this context"; "You are misapplying the name of this religious group" -01161561 34 v 01 avail 0 001 @ 01158872 v 0000 01 + 20 00 | use to one's advantage; "He availed himself of the available resources" -01161695 34 v 02 overuse 0 overdrive 0 002 @ 01158872 v 0000 + 00951433 n 0102 01 + 08 00 | make use of too often or too extensively -01161830 34 v 01 take_in_vain 0 001 @ 00203213 v 0000 01 + 08 00 | use a name, such as God, without proper respect -01161947 34 v 03 work_through 0 run_through 1 go_through 1 003 @ 02413480 v 0000 + 00897506 n 0201 ~ 02374282 v 0000 01 + 08 00 | apply thoroughly; think through; "We worked through an example" -01162143 34 v 02 cannibalize 1 cannibalise 1 002 * 01657977 v 0000 @ 01158872 v 0000 01 + 08 00 | use parts of something to repair something else -01162291 34 v 02 cannibalize 0 cannibalise 0 003 @ 01156834 v 0000 + 09891079 n 0201 + 09891079 n 0101 01 + 02 00 | eat human flesh -01162425 34 v 03 recycle 0 reprocess 0 reuse 0 004 @ 01158872 v 0000 + 00948868 n 0101 ~ 01162629 v 0000 ~ 02226833 v 0000 01 + 08 00 | use again after processing; "We must recycle the cardboard boxes" -01162629 34 v 01 rehash 0 002 @ 01162425 v 0000 + 06635759 n 0101 01 + 08 00 | present or use over, with no or few changes -01162754 34 v 02 exploit 0 work a 013 @ 01158872 v 0000 + 01867768 a 0103 + 01867768 a 0101 + 01867768 a 0102 + 00418903 n 0101 + 00948206 n 0101 + 10072546 n 0101 ~ 01163197 v 0000 ~ 01163355 v 0000 ~ 01193569 v 0000 ~ 01203715 v 0000 $ 02116980 v 0000 ~ 02600490 v 0000 02 + 08 00 + 09 00 | use or manipulate to one's advantage; "He exploit the new taxation system"; "She knows how to work the system"; "he works his parents for sympathy" -01163197 34 v 01 make_hay 0 001 @ 01162754 v 0000 01 + 22 00 | turn to one's advantage; "The environmentalist lobby made hay of the nuclear plant accident" -01163355 34 v 01 play d 002 @ 01162754 v 0000 + 00556313 n 0103 01 + 22 00 | use to one's advantage; "She plays on her clients' emotions" -01163495 34 v 01 harness 0 001 @ 01164273 v 0000 01 + 08 00 | exploit the power of; "harness natural forces and resources" -01163620 34 v 01 mine 0 007 * 01309701 v 0000 @ 01164273 v 0000 ;c 00922327 n 0000 + 03768346 n 0101 + 10319796 n 0101 + 00922327 n 0101 ~ 01164081 v 0000 01 + 08 00 | get from the earth by excavation; "mine ores and metals" -01163847 34 v 01 quarry 0 006 * 01309701 v 0000 @ 01164273 v 0000 ;c 00922968 n 0000 + 03949442 n 0102 + 10498551 n 0102 + 00922968 n 0101 01 + 08 00 | extract (something such as stones) from or as if from a quarry; "quarry marble" -01164081 34 v 03 strip_mine 0 surface_mine 0 surface-mine 0 004 @ 01163620 v 0000 ;c 00922327 n 0000 + 10664235 n 0101 + 04340231 n 0101 02 + 02 00 + 08 00 | extract (ore) from a strip-mine -01164273 34 v 02 exploit 1 tap 0 009 @ 01158872 v 0000 + 00948206 n 0101 ~ 00428870 v 0000 ~ 01163495 v 0000 ~ 01163620 v 0000 ~ 01163847 v 0000 ~ 01164568 v 0000 ~ 01164725 v 0000 ~ 01164906 v 0000 01 + 08 00 | draw from; make good use of; "we must exploit the resources we are given wisely" -01164568 34 v 01 overexploit 0 002 @ 01164273 v 0000 + 00951433 n 0101 01 + 08 00 | exploit excessively; "We should not overexploit our natural resources" -01164725 34 v 01 commercialize 0 001 @ 01164273 v 0000 01 + 08 00 | exploit for maximal profit, usually by sacrificing quality; "The hotel owners are commercializing the beaches" -01164906 34 v 01 milk 0 001 @ 01164273 v 0000 02 + 08 00 + 09 00 | exploit as much as possible; "I am milking this for all it's worth" -01165043 34 v 02 use 2 habituate 0 007 @ 01156834 v 0000 + 05669034 n 0201 + 00414179 n 0201 + 00947128 n 0101 + 10036266 n 0103 ~ 01172275 v 0000 ~ 01177118 v 0000 01 + 08 00 | take or consume (regularly or habitually); "She uses drugs rarely" -01165290 34 v 02 addict 0 hook 0 008 @ 00273445 v 0000 * 01165043 v 0000 + 05695232 n 0203 + 00047786 a 0101 + 00087849 n 0101 + 14062725 n 0101 + 09769076 n 0101 + 09768830 n 0101 01 + 20 00 | to cause (someone or oneself) to become dependent (on something, especially a narcotic drug) -01165579 34 v 02 strain 0 extend 0 006 @ 01158872 v 0000 + 00788766 n 0104 + 00624553 n 0101 + 00624553 n 0102 ~ 01165898 v 0000 ~ 01166237 v 0000 02 + 08 00 + 11 00 | use to the utmost; exert vigorously or to full capacity; "He really extended himself when he climbed Kilimanjaro"; "Don't strain your mind too much" -01165898 34 v 02 overstrain 0 overextend 0 002 @ 01165579 v 0000 + 11515644 n 0101 02 + 08 00 + 11 00 | strain excessively; "He overextended himself when he accepted the additional assignment" -01166093 34 v 02 exert 0 exercise 0 002 @ 01158872 v 0000 + 00947128 n 0206 02 + 08 00 + 11 00 | put to use; "exert one's power or influence" -01166237 34 v 02 tax 0 task 0 001 @ 01165579 v 0000 01 + 08 00 | use to the limit; "you are taxing my patience" -01166351 34 v 01 eat 1 022 @ 01156834 v 0000 + 10042300 n 0101 + 00838367 n 0101 ^ 01167537 v 0101 ^ 01167640 v 0101 ^ 01196802 v 0101 ~ 01166940 v 0000 ~ 01167188 v 0000 ~ 01167537 v 0000 ~ 01167640 v 0000 ~ 01167981 v 0000 ~ 01168259 v 0000 $ 01168468 v 0000 ~ 01168468 v 0000 ~ 01172545 v 0000 ~ 01173405 v 0000 ~ 01176079 v 0000 ~ 01185304 v 0000 ~ 01185604 v 0000 ~ 01185740 v 0000 ~ 01185981 v 0000 ~ 01193099 v 0000 01 + 02 00 | eat a meal; take a meal; "We did not eat until 10 P.M. because there were so many phone calls"; "I didn't eat yet, so I gladly accept your invitation" -01166940 34 v 02 take_out 0 take_away 0 003 @ 01166351 v 0000 + 07594511 n 0203 + 07594511 n 0101 01 + 08 00 | buy and consume food from a restaurant or establishment that sells prepared food; "We'll take out pizza, since I am too tired to cook" -01167188 34 v 01 victual 0 002 @ 01166351 v 0000 + 07556637 n 0105 01 + 02 00 | take in nourishment -01167290 34 v 01 wash_down 0 001 @ 01168468 v 0000 01 + 08 00 | eat food accompanied by lots of liquid; also use metaphorically; "She washed down her dinner with a bottle of red wine"; "He washes down his worries with a nightly glass of whisky" -01167537 34 v 02 eat_in 0 dine_in 0 002 @ 01166351 v 0000 ! 01167640 v 0101 01 + 02 00 | eat at home -01167640 34 v 02 eat_out 0 dine_out 0 002 @ 01166351 v 0000 ! 01167537 v 0101 01 + 02 00 | eat at a restaurant or at somebody else's home -01167780 34 v 01 dine 2 005 @ 01178565 v 0000 + 08253815 n 0101 + 07575726 n 0101 + 03199647 n 0101 + 03200357 n 0102 01 + 09 00 | give dinner to; host for dinner; "I'm wining and dining my friends" -01167981 34 v 01 dine 1 009 @ 01166351 v 0000 + 08253815 n 0101 + 07575726 n 0101 + 10013242 n 0101 + 03199647 n 0101 + 03200357 n 0102 + 00840517 n 0101 ^ 01167537 v 0102 ^ 01167640 v 0102 01 + 02 00 | have supper; eat dinner; "We often dine with friends in this restaurant" -01168259 34 v 01 picnic 0 004 @ 01166351 v 0000 + 07576438 n 0101 + 10432189 n 0101 + 10432189 n 0102 02 + 02 00 + 22 00 | eat alfresco, in the open air; "We picnicked near the lake on this gorgeous Sunday" -01168468 34 v 01 eat 0 026 $ 01166351 v 0000 $ 01179865 v 0000 @ 01166351 v 0000 * 01201089 v 0000 * 01201856 v 0000 @ 01156834 v 0000 + 10042300 n 0101 + 07708260 n 0101 + 00838367 n 0101 ~ 01167290 v 0000 ~ 01169067 v 0000 ~ 01169205 v 0000 ~ 01169328 v 0000 ~ 01172969 v 0000 ~ 01173057 v 0000 ~ 01173656 v 0000 ~ 01173813 v 0000 ~ 01173933 v 0000 ~ 01174099 v 0000 ~ 01174294 v 0000 ~ 01174555 v 0000 ~ 01192312 v 0000 ~ 01196653 v 0000 ~ 01196802 v 0000 ~ 01197014 v 0000 ~ 01203893 v 0000 01 + 08 00 | take in solid food; "She was eating a banana"; "What did you eat for dinner last night?" -01169067 34 v 03 gluttonize 0 gluttonise 0 fress 0 002 @ 01168468 v 0000 + 10132988 n 0101 01 + 02 00 | eat a lot and without restraint -01169205 34 v 02 wolf 0 wolf_down 0 001 @ 01168468 v 0000 01 + 08 00 | eat hastily; "The teenager wolfed down the pizza" -01169328 34 v 01 slurp 0 001 @ 01168468 v 0000 02 + 02 00 + 08 00 | eat noisily; "He slurped his soup" -01169433 34 v 02 swill 0 swill_down 0 002 @ 01170052 v 0000 + 00843325 n 0102 01 + 08 00 | drink large quantities of (liquid, especially alcoholic drink) -01169589 34 v 01 drench 0 003 > 01170052 v 0000 @ 01182709 v 0000 ;c 00015388 n 0000 01 + 08 00 | force to drink -01169704 34 v 01 suck 4 007 @ 01170052 v 0000 + 00842692 n 0102 + 00842692 n 0103 + 10672066 n 0101 + 00842692 n 0101 ^ 01197980 v 0103 $ 01186428 v 0000 01 + 08 00 | draw into the mouth by creating a practical vacuum in the mouth; "suck the poison from the place where the snake bit"; "suck on a straw"; "the baby sucked on the mother's breast" -01170052 34 v 02 drink 0 imbibe 0 020 @ 01156834 v 0000 + 00843128 n 0203 + 10034201 n 0202 + 00843128 n 0202 + 07881800 n 0102 + 00839778 n 0102 + 07885223 n 0101 + 10034614 n 0101 + 00843128 n 0101 ^ 01175937 v 0102 ^ 01202374 v 0107 ~ 01169433 v 0000 ~ 01169704 v 0000 ~ 01170566 v 0000 ~ 01170687 v 0000 ~ 01170824 v 0000 ~ 01170983 v 0000 ~ 01175937 v 0000 ~ 01202068 v 0000 ~ 01202374 v 0000 01 + 08 00 | take in liquids; "The patient must drink several liters each day"; "The children like to drink soda" -01170566 34 v 02 guggle 0 gurgle 0 001 @ 01170052 v 0000 02 + 02 00 + 08 00 | drink from a flask with a gurgling sound -01170687 34 v 01 sip 0 003 @ 01170052 v 0000 + 10601362 n 0101 + 00843494 n 0101 01 + 08 00 | drink in sips; "She was sipping her tea" -01170824 34 v 01 guzzle 0 002 @ 01170052 v 0000 + 00843325 n 0103 01 + 08 00 | drink greedily or as if with great thirst; "The boys guzzled the cheap vodka" -01170983 34 v 03 lap 0 lap_up 0 lick 0 002 @ 01170052 v 0000 + 00150591 n 0102 01 + 11 00 | take up with the tongue; "The cat lapped up the milk"; "the cub licked the milk from its mother's breast" -01171183 34 v 03 drink 1 booze 0 fuddle 0 015 $ 01172275 v 0000 @ 01156834 v 0000 + 09782167 n 0204 + 07901587 n 0203 + 00748515 n 0101 + 10034201 n 0101 + 00748515 n 0102 ~ 01171563 v 0000 ~ 01171661 v 0000 ~ 01171799 v 0000 ~ 01171941 v 0000 ~ 01172114 v 0000 ~ 01190277 v 0000 ~ 01190840 v 0000 ~ 01205153 v 0000 01 + 02 00 | consume alcohol; "We were up drinking all night" -01171563 34 v 01 tank 0 001 @ 01171183 v 0000 01 + 02 00 | consume excessive amounts of alcohol -01171661 34 v 01 port 0 002 @ 01171183 v 0000 + 07900825 n 0101 01 + 02 00 | drink port; "We were porting all in the club after dinner" -01171799 34 v 01 claret 0 002 @ 01171183 v 0000 + 07895435 n 0101 01 + 02 00 | drink claret; "They were clareting until well past midnight" -01171941 34 v 02 pub-crawl 0 bar_hop 0 001 @ 01171183 v 0000 01 + 02 00 | go from one pub to the next and get progressively more drunk; "he pub-crawled around Birmingham" -01172114 34 v 02 tipple 0 bib 0 003 @ 01171183 v 0000 + 10712690 n 0101 + 07883980 n 0104 01 + 02 00 | drink moderately but regularly; "We tippled the cognac" -01172275 34 v 02 drink 2 tope 0 007 @ 01165043 v 0000 + 10034201 n 0203 + 00748515 n 0101 + 10037385 n 0101 + 10034201 n 0101 + 00748515 n 0102 $ 01171183 v 0000 01 + 02 00 | drink excessive amounts of alcohol; be an alcoholic; "The husband drinks and beats his wife" -01172545 34 v 01 break_bread 0 001 @ 01166351 v 0000 01 + 02 00 | have a meal, usually with company; "The early Christian disciples broke bread together" -01172701 34 v 02 partake d touch 0 002 @ 01156834 v 0000 ~ 01172838 v 0000 01 + 08 00 | consume; "She didn't touch her food all night" -01172838 34 v 01 receive 0 002 @ 01172701 v 0000 ;c 06226057 n 0000 02 + 02 00 + 08 00 | partake of the Holy Eucharist sacrament -01172969 34 v 01 fare 0 002 @ 01168468 v 0000 + 07560652 n 0101 01 + 02 00 | eat well -01173057 34 v 02 pitch_in 0 dig_in 0 001 @ 01168468 v 0000 01 + 02 00 | eat heartily; "The food was placed on the table and the children pitched in" -01173208 34 v 03 tuck_in 0 tuck_away 0 put_away 0 002 @ 01196802 v 0000 * 01166351 v 0000 01 + 08 00 | eat up; usually refers to a considerable quantity of food; "My son tucked in a whole pizza" -01173405 34 v 02 nosh 0 snack 0 006 @ 01166351 v 0000 + 10362765 n 0202 + 07577374 n 0203 + 10362765 n 0101 + 07577538 n 0101 ~ 01174742 v 0000 02 + 02 00 + 22 00 | eat a snack; eat lightly; "She never loses weight because she snacks between meals" -01173656 34 v 03 pick_at 0 peck_at 0 peck 1 001 @ 01168468 v 0000 03 + 02 00 + 08 02 + 08 01 | eat like a bird; "The anorexic girl just picks at her food" -01173813 34 v 02 peck 0 pick_up 0 002 @ 01168468 v 0000 + 01758308 n 0105 01 + 11 00 | eat by pecking at, like a bird -01173933 34 v 02 gobble 0 bolt 0 003 @ 01168468 v 0000 + 10134282 n 0101 ^ 01174099 v 0102 01 + 08 00 | eat hastily without proper chewing; "Don't bolt your food!" -01174099 34 v 04 garbage_down 0 gobble_up 0 shovel_in 0 bolt_down 0 001 @ 01168468 v 0000 01 + 08 00 | eat a large amount of food quickly; "The children gobbled down most of the birthday cake" -01174294 34 v 03 nibble 1 pick 0 piece 0 004 @ 01168468 v 0000 + 07654667 n 0301 + 13625884 n 0102 + 10357484 n 0101 01 + 08 00 | eat intermittently; take small bites of; "He pieced at the sandwich all morning"; "She never eats a full meal--she just nibbles" -01174555 34 v 01 ruminate 0 006 @ 01168468 v 0000 ;c 02399000 n 0000 + 02789920 a 0101 + 00279377 n 0101 + 02399424 n 0101 + 02399000 n 0101 01 + 02 00 | chew the cuds; "cows ruminate" -01174742 34 v 02 browse 0 graze 2 003 @ 01173405 v 0000 + 00841091 n 0201 + 00839023 n 0101 02 + 02 00 + 22 00 | eat lightly, try different dishes; "There was so much food at the party that we quickly got sated just by browsing" -01174973 34 v 02 chomp 0 champ 0 003 @ 01201089 v 0000 + 00279136 n 0101 + 00838816 n 0102 02 + 02 00 + 08 00 | chew noisily; "The boy chomped his sandwich" -01175132 34 v 01 champ 1 001 @ 01201089 v 0000 01 + 01 00 | chafe at the bit, like horses -01175224 34 v 02 mumble 0 gum 0 004 @ 01201089 v 0000 + 05304932 n 0202 + 00279235 n 0202 + 00279235 n 0101 01 + 08 00 | grind with the gums; chew without teeth and with great difficulty; "the old man had no teeth left and mumbled his food" -01175467 34 v 05 toast 0 drink c pledge 0 salute 0 wassail 0 009 * 01171183 v 0000 @ 02546075 v 0000 + 07931280 n 0501 + 10713502 n 0502 + 06688913 n 0401 + 06688913 n 0402 + 07884413 n 0301 + 07884413 n 0102 ~ 01175810 v 0000 03 + 08 00 + 09 00 + 22 02 | propose a toast to; "Let us toast the birthday girl!"; "Let's drink to the New Year" -01175810 34 v 01 give a 001 @ 01175467 v 0000 01 + 08 00 | propose; "He gave the first of many toasts at the birthday party" -01175937 34 v 02 drain_the_cup 0 drink_up 0 001 @ 01170052 v 0000 01 + 02 00 | drink to the last drop; "drink up--there's more wine coming" -01176079 34 v 01 mess 0 005 @ 01166351 v 0000 ;c 08199025 n 0000 + 03751065 n 0101 + 07565608 n 0101 + 07650792 n 0101 01 + 02 00 | eat in a mess hall -01176232 34 v 02 regale 0 treat 0 006 @ 01182709 v 0000 + 07557165 n 0205 ~ 01176567 v 0000 ~ 01176734 v 0000 ~ 01182152 v 0000 $ 02261642 v 0000 03 + 09 00 + 17 00 + 20 00 | provide with choice or abundant food or drink; "Don't worry about the expensive wine--I'm treating"; "She treated her houseguests with good food every night" -01176567 34 v 01 wine 1 003 @ 01176232 v 0000 + 07891726 n 0101 + 04592465 n 0101 01 + 09 00 | treat to wine; "Our relatives in Italy wined and dined us for a week" -01176734 34 v 01 alcoholize 0 001 @ 01176232 v 0000 01 + 09 00 | subject to the influence of alcohol; "After we finished dinner, we were thoroughly alcoholized" -01176897 34 v 01 board 0 006 @ 01182709 v 0000 * 01178565 v 0000 + 07565259 n 0101 + 03201208 n 0102 $ 01177118 v 0000 ~ 01177314 v 0000 01 + 09 00 | provide food and lodging (for); "The old lady is boarding three men" -01177118 34 v 01 board 1 007 $ 01176897 v 0000 * 01156834 v 0000 @ 01165043 v 0000 + 07565259 n 0101 + 03201208 n 0102 + 09862345 n 0101 + 10269458 n 0102 01 + 22 00 | lodge and take meals (at) -01177314 34 v 02 live_in 0 sleep_in 0 002 @ 01176897 v 0000 ! 01177505 v 0101 01 + 02 00 | live in the house where one works; "our babysitter lives in, as it is too far to commute for her" -01177505 34 v 02 live_out 0 sleep_out 0 002 @ 02061846 v 0000 ! 01177314 v 0101 01 + 02 00 | work in a house where one does not live; "our cook lives out; he can easily commute from his home" -01177699 34 v 01 forage 0 003 @ 01179865 v 0000 + 07801091 n 0102 ~ 01203500 v 0000 02 + 01 00 + 04 00 | wander and feed; "The animals forage in the woods" -01177857 34 v 01 raven 1 001 @ 01179865 v 0000 02 + 01 00 + 04 00 | feed greedily; "The lions ravened the bodies" -01177973 34 v 01 scavenge 0 002 @ 01178565 v 0000 + 01316422 n 0101 01 + 02 00 | feed on carrion or refuse; "hyenas scavenge" -01178101 34 v 01 fodder 0 002 @ 01178565 v 0000 + 07800740 n 0101 01 + 08 00 | give fodder (to domesticated animals) -01178220 34 v 02 slop 0 swill 1 003 @ 01178565 v 0000 + 07805006 n 0203 + 07805006 n 0101 01 + 08 00 | feed pigs -01178335 34 v 01 regurgitate 0 001 @ 01178565 v 0000 01 + 11 00 | feed through the beak by regurgitating previously swallowed food; "many birds feed their young by regurgitating what they have swallowed and carried to the nest" -01178565 34 v 02 feed 1 give 0 024 > 01168468 v 0000 @ 01182709 v 0000 + 01086081 n 0201 + 04169707 n 0102 + 01057759 n 0101 ! 01187740 v 0101 ~ 01167780 v 0000 ~ 01177973 v 0000 ~ 01178101 v 0000 ~ 01178220 v 0000 ~ 01178335 v 0000 ~ 01179155 v 0000 ~ 01179276 v 0000 ~ 01179530 v 0000 ~ 01179638 v 0000 ~ 01179740 v 0000 ~ 01185475 v 0000 ~ 01185875 v 0000 ~ 01186428 v 0000 ~ 01187271 v 0000 ~ 01195201 v 0000 ~ 01204191 v 0000 ~ 01204439 v 0000 ~ 01576478 v 0000 03 + 09 00 + 14 02 + 15 02 | give food to; "Feed the starving children in India"; "don't give the child this tough meat" -01179155 34 v 01 corn 0 003 @ 01178565 v 0000 + 12144580 n 0101 + 12143676 n 0101 01 + 08 00 | feed (cattle) with corn -01179276 34 v 02 undernourish 0 malnourish 0 003 @ 01178565 v 0000 + 14040490 n 0202 + 14040490 n 0101 01 + 09 00 | provide with insufficient quality or quantity of nourishment; "The stunted growth of these children shows that they are undernourished" -01179530 34 v 01 overfeed 0 002 @ 01178565 v 0000 + 01059096 n 0101 02 + 08 00 + 09 00 | feed excessively -01179638 34 v 01 spoonfeed 0 002 @ 01178565 v 0000 + 01059189 n 0101 01 + 09 00 | feed with a spoon -01179740 34 v 01 force-feed 0 002 @ 01178565 v 0000 + 01058291 n 0101 01 + 09 00 | feed someone who will not or cannot eat -01179865 34 v 02 feed 0 eat 2 010 @ 01156834 v 0000 + 00838367 n 0201 + 07800091 n 0101 + 10042300 n 0102 + 00838367 n 0102 $ 01168468 v 0000 ~ 01177699 v 0000 ~ 01177857 v 0000 ~ 01187385 v 0000 ~ 01576165 v 0000 02 + 01 00 + 04 00 | take in food; used of animals only; "This dog doesn't eat certain kinds of meat"; "What do whales eat?" -01180206 34 v 01 feed 2 002 @ 01182709 v 0000 + 07800091 n 0101 02 + 10 00 + 11 00 | serve as food for; be the food for; "This dish feeds six" -01180351 34 v 05 serve 0 serve_up 0 dish_out 0 dish_up 0 dish 0 006 @ 01182709 v 0000 + 13766896 n 0501 + 07557434 n 0501 + 03206908 n 0501 ~ 01180701 v 0000 $ 01181295 v 0000 01 + 08 00 | provide (usually but not necessarily food); "We serve meals for the homeless"; "She dished out the soup at 8 P.M."; "The entertainers served up a lively show" -01180701 34 v 01 plank 0 002 @ 01180351 v 0000 + 15101854 n 0102 01 + 08 00 | cook and serve on a plank; "Planked vegetable"; "Planked shad" -01180844 34 v 01 cater 1 002 @ 01182709 v 0000 + 09901642 n 0101 01 + 08 00 | supply food ready to eat; for parties and banquets -01180975 34 v 03 pander 0 pimp 0 procure 0 005 @ 01182709 v 0000 + 10433737 n 0302 + 10433737 n 0201 + 10433737 n 0104 + 10433737 n 0103 01 + 02 00 | arrange for sexual partners for others -01181166 34 v 01 feed 3 002 @ 02327200 v 0000 + 09278997 n 0101 01 + 11 00 | feed into; supply; "Her success feeds her vanity" -01181295 34 v 02 serve 1 help 0 006 $ 01180351 v 0000 @ 01182709 v 0000 + 07578363 n 0201 + 10763383 n 0102 + 04175039 n 0101 + 07578363 n 0103 01 + 09 00 | help to some food; help with food or drink; "I served him three times, and after that he helped himself" -01181559 34 v 01 power 0 003 @ 01182709 v 0000 + 11453016 n 0101 ~ 01181741 v 0000 01 + 11 00 | supply the force or power for the functioning of; "The gasoline powers the engines" -01181741 34 v 01 drive 7 003 @ 01181559 v 0000 + 06574473 n 0101 + 03242995 n 0101 01 + 11 00 | cause to function by supplying the force or power for or by controlling; "The amplifier drives the tube"; "steam drives the engines"; "this device drives the disks for the computer" -01182021 34 v 01 feed 4 002 @ 01182709 v 0000 + 01057759 n 0101 02 + 14 00 + 15 00 | provide as food; "Feed the guests the nuts" -01182152 34 v 02 feed 5 feast 2 002 @ 01176232 v 0000 + 07290144 n 0201 02 + 09 00 + 21 00 | gratify; "feed one's eyes on a gorgeous view" -01182293 34 v 03 gratify 0 pander d indulge 0 008 @ 01182709 v 0000 + 04638585 n 0301 + 01073241 n 0302 + 10395926 n 0201 + 01072780 n 0101 ~ 00859604 v 0000 ~ 01182559 v 0000 ~ 01192179 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | yield (to); give satisfaction to -01182559 34 v 01 spree 0 002 @ 01182293 v 0000 + 00510475 n 0101 01 + 02 00 | engage without restraint in an activity and indulge, as when shopping -01182709 34 v 04 provide 0 supply 0 ply 0 cater 0 027 @ 02199590 v 0000 + 09901642 n 0401 + 01057200 n 0202 + 13777344 n 0201 + 01057200 n 0101 + 10486349 n 0101 ~ 01088749 v 0000 ~ 01169589 v 0000 ~ 01176232 v 0000 ~ 01176897 v 0000 ~ 01178565 v 0000 ~ 01180206 v 0000 ~ 01180351 v 0000 ~ 01180844 v 0000 ~ 01180975 v 0000 ~ 01181295 v 0000 ~ 01181559 v 0000 ~ 01182021 v 0000 ~ 01182293 v 0000 ~ 01183424 v 0000 ~ 01183573 v 0000 ~ 01184058 v 0000 ~ 01184333 v 0000 ~ 01184453 v 0000 ~ 01202728 v 0000 ~ 01203369 v 0000 ~ 01204677 v 0000 06 + 08 00 + 21 00 + 27 04 + 17 03 + 17 02 + 17 01 | give what is desired or needed, especially support, food or sustenance; "The hostess provided lunch for all the guests" -01183424 34 v 01 underlay 0 001 @ 01182709 v 0000 01 + 08 00 | provide with a base, support, lining, or backing; "underlay the boards with joists" -01183573 34 v 05 meet 0 satisfy 1 fill 2 fulfill 0 fulfil 0 012 @ 01182709 v 0000 + 07532112 n 0502 + 07532112 n 0401 + 13580723 n 0301 + 01124768 a 0201 + 02080577 a 0201 + 01072565 n 0201 + 09424489 n 0201 ~ 01183896 v 0000 ~ 01194114 v 0000 ~ 01203234 v 0000 ~ 01204021 v 0000 01 + 08 00 | fill or meet a want or need -01183896 34 v 01 answer 0 001 @ 01183573 v 0000 01 + 11 00 | be satisfactory for; meet the requirements of or serve the purpose of; "This may answer her needs" -01184058 34 v 01 horse 0 003 @ 01182709 v 0000 + 02374451 n 0101 ~ 01184195 v 0000 02 + 08 00 + 09 00 | provide with a horse or horses -01184195 34 v 01 remount 0 002 @ 01184058 v 0000 + 02378149 n 0101 02 + 08 00 + 09 00 | provide with fresh horses; "remount a regiment" -01184333 34 v 01 shower c 001 @ 01182709 v 0000 01 + 22 00 | provide abundantly with; "He showered her with presents" -01184453 34 v 01 accommodate 0 002 @ 01182709 v 0000 + 01210816 n 0101 01 + 17 00 | provide with something desired or needed; "Can you accommodate me with a rental car?" -01184625 34 v 03 sustain 0 keep 0 maintain 0 008 @ 02203362 v 0000 + 13366311 n 0301 + 01216191 n 0304 + 13365286 n 0202 + 13365286 n 0106 ~ 01185011 v 0000 ~ 01185148 v 0000 ~ 02682954 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | supply with necessities and support; "She alone sustained her family"; "The money will sustain our good cause"; "There's little to earn and many to keep" -01185011 34 v 01 patronage 0 002 @ 01184625 v 0000 + 01153861 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | support by being a patron of -01185148 34 v 01 reseed 0 001 @ 01184625 v 0000 01 + 01 00 | maintain by seeding without human intervention; "Some plants reseed themselves indefinitely" -01185304 34 v 01 lunch 0 004 @ 01166351 v 0000 + 10277132 n 0101 + 07575076 n 0101 + 00841297 n 0101 01 + 02 00 | take the midday meal; "At what time are you lunching?" -01185475 34 v 01 lunch 1 002 @ 01178565 v 0000 + 07575076 n 0101 01 + 09 00 | provide a midday meal for; "She lunched us well" -01185604 34 v 01 brunch 0 002 @ 01166351 v 0000 + 07574923 n 0101 01 + 02 00 | eat a meal in the late morning; "We brunch in Sundays" -01185740 34 v 01 breakfast 0 002 @ 01166351 v 0000 + 07574602 n 0101 01 + 02 00 | eat an early morning meal; "We breakfast at seven" -01185875 34 v 01 breakfast 1 002 @ 01178565 v 0000 + 07574602 n 0101 01 + 09 00 | provide breakfast for -01185981 34 v 03 feast 0 banquet 0 junket 0 007 $ 01186208 v 0000 @ 01166351 v 0000 + 07449862 n 0102 + 07578093 n 0102 + 08253640 n 0102 + 00840751 n 0101 ~ 01194777 v 0000 02 + 02 00 + 22 00 | partake in a feast or banquet -01186208 34 v 03 feast 1 banquet 1 junket 1 007 @ 01194418 v 0000 + 08253640 n 0201 + 07578093 n 0201 + 07449862 n 0102 + 07578093 n 0102 + 08253640 n 0102 $ 01185981 v 0000 01 + 09 00 | provide a feast or banquet for -01186428 34 v 07 breastfeed 0 suckle 0 suck 2 nurse 0 wet-nurse 0 lactate 0 give_suck 0 011 $ 01169704 v 0000 @ 01178565 v 0000 + 15142836 n 0601 + 13505987 n 0601 + 00842997 n 0602 + 10345100 n 0403 + 01058870 n 0401 + 03836062 n 0401 + 00842692 n 0302 + 02465414 n 0301 ! 01187271 v 0101 02 + 02 00 + 09 00 | give suck to; "The wetnurse suckled the infant"; "You cannot nurse your baby in public in some places" -01186844 34 v 01 dry-nurse 0 001 @ 02550296 v 0000 01 + 09 00 | take care of an infant without breastfeeding it -01186958 34 v 02 wean 0 ablactate 0 003 * 01186428 v 0000 @ 02313250 v 0000 + 00198270 n 0101 01 + 09 00 | gradually deprive (infants and young mammals) of mother's milk; "she weaned her baby when he was 3 months old and started him on powdered milk"; "The kitten was weaned and fed by its owner with a bottle" -01187271 34 v 01 bottlefeed 0 002 @ 01178565 v 0000 ! 01186428 v 0101 01 + 09 00 | feed (infants) with a bottle -01187385 34 v 01 suckle 1 002 * 01170052 v 0000 @ 01179865 v 0000 01 + 02 00 | suck milk from the mother's breasts; "the infant was suckling happily" -01187537 34 v 02 starve 2 famish 2 001 @ 00358431 v 0000 02 + 01 00 + 02 00 | die of food deprivation; "The political prisoners starved to death"; "Many famished in the countryside during the drought" -01187740 34 v 02 starve 3 famish 3 006 > 01188144 v 0000 @ 02313250 v 0000 + 01150662 n 0101 + 01150662 n 0102 ! 01178565 v 0101 $ 01187948 v 0000 01 + 09 00 | deprive of food; "They starved the prisoners" -01187948 34 v 01 starve 4 002 $ 01187740 v 0000 @ 02313250 v 0000 02 + 08 00 + 09 00 | deprive of a necessity and cause suffering; "he is starving her of love"; "The engine was starved of fuel" -01188144 34 v 03 starve 0 hunger 0 famish 0 004 @ 00065070 v 0000 + 14039534 n 0201 + 14040310 n 0101 ! 01188342 v 0101 02 + 02 00 + 22 00 | be hungry; go without food; "Let's eat--I'm starving!" -01188342 34 v 01 be_full 0 001 ! 01188144 v 0101 01 + 02 00 | be sated, have enough to eat; "I'm full--don't give me any more beans, please" -01188485 34 v 05 crave 0 hunger 1 thirst 0 starve 1 lust 0 006 @ 01825237 v 0000 + 07489714 n 0502 + 00759335 n 0501 + 04945254 n 0303 + 04945254 n 0201 + 07485475 n 0101 02 + 22 00 + 08 01 | have a craving, appetite, or great desire for -01188725 34 v 03 want 0 need 0 require 0 007 @ 02604760 v 0000 + 09367203 n 0303 + 14449126 n 0201 + 10766025 n 0101 + 14449405 n 0103 + 09367991 n 0102 ~ 01188987 v 0000 02 + 08 00 + 11 00 | have need of; "This piano wants the attention of a competent tuner" -01188987 34 v 01 cry 0 001 @ 01188725 v 0000 01 + 04 00 | demand immediate action; "This situation is crying for attention" -01189113 34 v 01 need 1 000 02 + 08 00 + 09 00 | have or feel a need for; "always needing friends and money" -01189224 34 v 01 diet 0 006 @ 01189427 v 0000 + 10012377 n 0101 + 07561590 n 0101 + 01070187 n 0101 + 07561112 n 0101 + 01070187 n 0102 01 + 02 00 | eat sparingly, for health reasons or to lose weight -01189427 34 v 01 fast 0 004 @ 01196037 v 0000 + 01069980 n 0101 + 01069980 n 0102 ~ 01189224 v 0000 01 + 02 00 | abstain from eating; "Before the medical exam, you must fast" -01189604 34 v 01 fast 1 004 @ 01196037 v 0000 + 01069980 n 0101 + 01069980 n 0102 ~ 01190012 v 0000 01 + 02 00 | abstain from certain foods, as for religious or medical reasons; "Catholics sometimes fast during Lent" -01189823 34 v 02 keep_off 0 avoid 0 001 @ 01196037 v 0000 01 + 08 00 | refrain from certain foods or beverages; "I keep off drugs"; "During Ramadan, Muslims avoid tobacco during the day" -01190012 34 v 01 diet 1 006 @ 01189604 v 0000 + 07561590 n 0101 + 01070187 n 0101 + 07561112 n 0101 + 01070187 n 0102 + 10012377 n 0101 01 + 02 00 | follow a regimen or a diet, as for health reasons; "He has high blood pressure and must stick to a low-salt diet" -01190277 34 v 04 souse 0 soak 0 inebriate 0 hit_it_up 0 006 @ 01171183 v 0000 + 14064644 n 0303 + 14018567 n 0302 + 10037385 n 0305 + 09782167 n 0206 + 09782167 n 0107 01 + 02 00 | become drunk or drink excessively -01190494 34 v 03 intoxicate 0 soak 1 inebriate 1 008 @ 00019448 v 0000 + 14064644 n 0303 + 14018567 n 0302 + 07884567 n 0305 + 10037385 n 0305 + 14018567 n 0104 + 07884567 n 0104 ~ 01190741 v 0000 01 + 10 00 | make drunk (with alcoholic drinks) -01190741 34 v 02 befuddle 0 fuddle 1 001 @ 01190494 v 0000 01 + 10 00 | make stupid with alcohol -01190840 34 v 01 wine 0 003 @ 01171183 v 0000 + 07891726 n 0101 + 04592465 n 0101 01 + 02 00 | drink wine -01190948 34 v 03 delight 0 enjoy 0 revel 0 009 * 01158572 v 0000 + 07491708 n 0201 + 01072072 n 0201 + 10058411 n 0201 + 07491038 n 0101 + 05829782 n 0102 ~ 01191232 v 0000 ~ 01191403 v 0000 ~ 01191512 v 0000 02 + 22 00 + 08 02 | take delight in; "he delights in his granddaughter" -01191232 34 v 02 have_a_ball 0 have_a_good_time 0 001 @ 01190948 v 0000 01 + 02 00 | enjoy oneself greatly; "We had a ball at the party and didn't come home until 2 AM" -01191403 34 v 01 wallow 0 001 @ 01190948 v 0000 01 + 08 00 | delight greatly in; "wallow in your success!" -01191512 34 v 01 live_it_up 0 001 @ 01190948 v 0000 02 + 01 00 + 22 00 | enjoy oneself; "it's your birthday, so let's live it up!" -01191645 34 v 02 indulge c luxuriate e 005 @ 01157517 v 0000 + 01071921 n 0201 + 14492373 n 0201 + 04884627 n 0101 ~ 01191838 v 0000 01 + 08 00 | enjoy to excess; "She indulges in ice cream" -01191838 34 v 01 surfeit 0 003 @ 01191645 v 0000 + 14452294 n 0101 + 00841628 n 0102 01 + 08 00 | indulge (one's appetite) to satiety -01191974 34 v 01 wallow 1 001 @ 02511276 v 0000 01 + 08 00 | devote oneself entirely to something; indulge in to an immoderate degree, usually with pleasure; "Wallow in luxury"; "wallow in your sorrows" -01192179 34 v 02 sow_one's_oats 0 sow_one's_wild_oats 0 001 @ 01182293 v 0000 01 + 02 00 | live promiscuously and self-indulgently -01192312 34 v 02 dunk 0 dip 0 004 @ 01168468 v 0000 + 07582609 n 0201 + 07364434 n 0201 + 03204306 n 0201 01 + 21 00 | dip into a liquid while eating; "She dunked the piece of bread in the sauce" -01192510 34 v 01 enjoy 1 002 @ 01158872 v 0000 + 05190106 n 0102 01 + 08 00 | have benefit from; "enjoy privileges" -01192628 34 v 01 afford 0 001 @ 02267060 v 0000 01 + 08 00 | be able to spare or give up; "I can't afford to spend two hours with this person" -01192773 34 v 03 run_low 0 run_short 0 go 0 002 @ 02609764 v 0000 $ 01192992 v 0000 01 + 01 00 | to be spent or finished; "The money had gone after a few days"; "Gas is running low at the gas stations in the Midwest" -01192992 34 v 01 go 9 001 $ 01192773 v 0000 01 + 04 00 | be spent; "All my money went for food and rent" -01193099 34 v 10 gorge 0 ingurgitate 0 overindulge 0 glut 0 englut 0 stuff 0 engorge 0 overgorge 0 overeat 0 gormandize 0 gormandise 0 gourmandize 0 binge 0 pig_out 0 satiate 1 scarf_out 0 008 @ 01166351 v 0000 + 00510723 n 0d03 + 10132988 n 0c02 + 10132988 n 0c03 + 00759186 n 0902 + 00840630 n 0701 + 01073655 n 0301 + 10561613 n 0102 01 + 22 00 | overeat or eat immodestly; make a pig of oneself; "She stuffed herself at the dinner"; "The kids binged on ice cream" -01193569 34 v 02 avail 4 help 4 002 @ 01162754 v 0000 + 00183053 a 0101 01 + 08 00 | take or use; "She helped herself to some of the office supplies" -01193721 34 v 04 satiate 0 sate 0 replete 0 fill 0 005 @ 01156834 v 0000 + 13580723 n 0401 + 00841628 n 0301 + 01072984 n 0101 ~ 01193932 v 0000 03 + 01 00 + 09 00 + 10 00 | fill to satisfaction; "I am sated" -01193932 34 v 02 cloy 0 pall 0 001 @ 01193721 v 0000 03 + 01 00 + 10 00 + 11 00 | cause surfeit through excess though initially pleasing; "Too much spicy food cloyed his appetite" -01194114 34 v 03 quell 0 stay 0 appease 0 001 @ 01183573 v 0000 02 + 01 00 + 10 00 | overcome or allay; "quell my hunger" -01194238 34 v 01 content 0 003 @ 00235368 v 0000 + 07531105 n 0101 + 14412882 n 0102 01 + 20 00 | satisfy in a limited way; "He contented himself with one glass of beer per day" -01194418 34 v 01 host 0 008 @ 02492198 v 0000 + 10186774 n 0101 + 10299250 n 0103 + 10187130 n 0101 ~ 01186208 v 0000 ~ 01194661 v 0000 ~ 02592397 v 0000 ~ 02592543 v 0000 01 + 09 00 | be the host of or for; "We hosted 4 couples last night" -01194661 34 v 01 wine_and_dine 1 001 @ 01194418 v 0000 01 + 09 00 | provide with food and drink, usually lavishly -01194777 34 v 01 wine_and_dine 0 003 * 01166351 v 0000 * 01171183 v 0000 @ 01185981 v 0000 02 + 02 00 + 22 00 | eat sumptuously; "we wined and dined in Paris" -01194938 34 v 08 fatten 0 fat 0 flesh_out 0 fill_out 0 plump 0 plump_out 0 fatten_out 0 fatten_up 0 004 * 01178565 v 0000 @ 00126264 v 0000 + 05268965 n 0202 + 04999401 n 0202 02 + 08 00 + 09 00 | make fat or plump; "We will plump out that poor starving child" -01195201 34 v 01 inject 0 001 @ 01178565 v 0000 03 + 08 00 + 17 00 + 20 00 | feed intravenously -01195299 34 v 04 sample 0 try 0 try_out 0 taste 0 013 @ 01156834 v 0000 + 07578879 n 0401 + 10692482 n 0401 + 05822612 n 0401 + 00841901 n 0401 + 05799212 n 0304 + 10728998 n 0201 + 05799212 n 0201 + 05821775 n 0101 + 10692482 n 0104 + 08463817 n 0101 + 04133211 n 0101 ~ 01195675 v 0000 01 + 08 00 | take a sample of; "Try these new crackers"; "Sample the regional dishes" -01195675 34 v 01 degust 0 002 @ 01195299 v 0000 + 00841901 n 0105 01 + 08 00 | taste with relish; "degust this wonderful soup" -01195804 34 v 07 fritter 0 frivol_away 0 dissipate 0 shoot 0 fritter_away 0 fool 0 fool_away 0 003 @ 01158181 v 0000 * 01157517 v 0000 + 00742645 n 0303 01 + 08 00 | spend frivolously and unwisely; "Fritter away one's inheritance" -01196037 34 v 03 abstain 0 refrain 0 desist 0 011 + 00009346 a 0101 + 04882622 n 0102 + 09757944 n 0102 + 09757944 n 0101 + 09758173 n 0101 + 04882622 n 0101 ! 01156834 v 0101 ~ 01189427 v 0000 ~ 01189604 v 0000 ~ 01189823 v 0000 ~ 01196364 v 0000 03 + 02 00 + 22 00 + 33 00 | choose not to consume; "I abstain from alcohol" -01196364 34 v 01 teetotal 0 002 @ 01196037 v 0000 + 10697282 n 0102 01 + 02 00 | practice teetotalism and abstain from the consumption of alcoholic beverages -01196524 34 v 02 kick 0 give_up 0 001 @ 02534062 v 0000 02 + 08 00 + 33 00 | stop consuming; "kick a habit"; "give up alcohol" -01196653 34 v 04 devour 0 guttle 0 raven 0 pig 0 002 @ 01168468 v 0000 + 10179649 n 0402 01 + 08 00 | eat greedily; "he devoured three sandwiches" -01196802 34 v 03 eat_up 0 finish 0 polish_off 0 002 @ 01168468 v 0000 ~ 01173208 v 0000 02 + 08 00 + 02 01 | finish eating all the food on one's plate or on the table; "She polished off the remaining potatoes" -01197014 34 v 04 devour 1 down 1 consume 3 go_through 0 002 @ 01168468 v 0000 + 10010864 n 0101 01 + 10 00 | eat immoderately; "Some people can down a pound of meat in the course of one meal" -01197208 34 v 01 smack 0 001 @ 00983824 v 0000 01 + 02 00 | press (the lips) together and open (the lips) noisily, as in eating -01197338 34 v 01 digest 0 009 * 01156834 v 0000 @ 00515154 v 0000 + 01182024 a 0101 + 03060385 a 0101 + 13465809 n 0101 + 03195332 n 0101 $ 00481555 v 0000 ~ 01197626 v 0000 ~ 01197870 v 0000 02 + 02 00 + 08 00 | convert food into absorbable substances; "I cannot digest milk products" -01197626 34 v 01 stomach 0 002 @ 01197338 v 0000 + 07485916 n 0101 01 + 08 00 | bear to eat; "He cannot stomach raw fish" -01197750 34 v 02 metabolize 0 metabolise 0 002 * 01197338 v 0000 + 13514314 n 0101 01 + 08 00 | produce by metabolism -01197870 34 v 01 predigest 0 002 @ 01197338 v 0000 ;c 02399000 n 0000 01 + 08 00 | digest (food) beforehand -01197980 34 v 04 take_in 1 sop_up 0 suck_in 0 take_up 0 001 @ 01156834 v 0000 01 + 08 00 | take up as if with a sponge -01198101 34 v 01 smoke 0 011 * 00005041 v 0000 * 00004227 v 0000 @ 01156834 v 0000 + 00834636 n 0101 + 03990834 n 0109 + 04103491 n 0102 + 10614976 n 0101 + 00834636 n 0102 ~ 01198452 v 0000 ~ 01198616 v 0000 ~ 01198779 v 0000 02 + 02 00 + 08 00 | inhale and exhale smoke from cigarettes, cigars, pipes; "We never smoked marijuana"; "Do you smoke?" -01198452 34 v 01 chain-smoke 0 002 @ 01198101 v 0000 + 09905697 n 0101 01 + 02 00 | smoke one cigarette after another; light one cigarette from the preceding one -01198616 34 v 02 puff 1 whiff 2 003 @ 01198101 v 0000 + 00837675 n 0101 + 00834866 n 0101 01 + 08 00 | smoke and exhale strongly; "puff a cigar"; "whiff a pipe" -01198779 34 v 01 inhale 0 005 @ 01198101 v 0000 + 02749365 a 0101 + 03571155 n 0102 + 00836788 n 0101 + 14919156 n 0101 02 + 02 00 + 08 00 | draw deep into the lungs in by breathing; "Clinton smoked marijuana but never inhaled" -01199009 34 v 03 puff 0 drag 0 draw 1 004 * 01198101 v 0000 @ 00005041 v 0000 + 00837675 n 0202 + 00837675 n 0101 02 + 02 00 + 22 00 | suck in or take (air); "draw a deep breath"; "draw on a cigarette" -01199213 34 v 01 inject 1 004 @ 01200440 v 0000 + 14849215 n 0102 ~ 01199365 v 0000 ~ 01199487 v 0000 01 + 08 00 | take by injection; "inject heroin" -01199365 34 v 01 mainline 0 001 @ 01199213 v 0000 02 + 02 00 + 08 00 | inject into the vein; "She is mainlining heroin" -01199487 34 v 01 pop 0 002 @ 01199213 v 0000 ~ 01199661 v 0000 01 + 08 00 | take drugs, especially orally; "The man charged with murder popped a valium to calm his nerves" -01199661 34 v 01 skin_pop 0 001 @ 01199487 v 0000 01 + 08 00 | inject (drugs) into the skin -01199755 34 v 02 take_a_hit c snort 1 002 @ 01200440 v 0000 ;c 03247620 n 0101 02 + 08 00 + 22 01 | inhale through the nose -01199881 34 v 03 light_up 0 fire_up 0 light 0 003 * 01198101 v 0000 @ 02759614 v 0000 + 03666591 n 0302 02 + 02 00 + 08 03 | begin to smoke; "After the meal, some of the diners lit up" -01200068 34 v 02 free-base 0 base 0 003 @ 01200440 v 0000 + 14618253 n 0201 + 02798769 n 0201 02 + 02 00 + 08 00 | use (purified cocaine) by burning it and inhaling the fumes -01200245 34 v 02 huff 0 snort 2 002 @ 00005041 v 0000 * 01200440 v 0000 01 + 08 00 | inhale recreational drugs; "The addict was snorting cocaine almost every day"; "the kids were huffing glue" -01200440 34 v 02 drug 0 do_drugs 0 008 > 01200934 v 0000 @ 01156834 v 0000 + 03247620 n 0101 ~ 01199213 v 0000 ~ 01199755 v 0000 ~ 01200068 v 0000 ~ 01200661 v 0000 ~ 01200806 v 0000 01 + 09 00 | use recreational drugs -01200661 34 v 01 drop 0 001 @ 01200440 v 0000 01 + 08 00 | take (a drug, especially LSD), by mouth; "She dropped acid when she was a teenager" -01200806 34 v 01 dope 0 002 @ 01200440 v 0000 + 03990834 n 0104 01 + 02 00 | take drugs to improve one's athletic performance -01200934 34 v 04 trip 0 trip_out 0 turn_on 0 get_off 0 001 + 14378311 n 0101 02 + 02 00 + 13 00 | get high, stoned, or drugged; "He trips every weekend" -01201089 34 v 04 chew 0 masticate 0 manducate 0 jaw 0 014 @ 01394464 v 0000 + 05603160 n 0401 + 05546040 n 0401 + 00278810 n 0203 + 09915964 n 0101 + 07579399 n 0101 + 00278810 n 0101 + 00278810 n 0102 ~ 01174973 v 0000 ~ 01175132 v 0000 ~ 01175224 v 0000 ~ 01201574 v 0000 ~ 01201693 v 0000 ~ 01445597 v 0000 02 + 02 00 + 08 00 | chew (food); to bite and grind with the teeth; "He jawed his bubble gum"; "Chew your food and don't swallow it!"; "The cows were masticating the grass" -01201574 34 v 01 chaw 0 002 @ 01201089 v 0000 + 07579399 n 0102 01 + 08 00 | chew without swallowing; "chaw tobacco" -01201693 34 v 02 crunch 0 munch 0 003 @ 01201089 v 0000 + 00841393 n 0201 + 10338391 n 0201 01 + 08 00 | chew noisily; "The children crunched the celery sticks" -01201856 34 v 02 swallow 0 get_down 0 003 @ 01156834 v 0000 + 00839778 n 0101 ~ 01202651 v 0000 01 + 08 00 | pass through the esophagus as part of eating or drinking; "Swallow the raw fish--it won't kill you!" -01202068 34 v 03 gulp 1 quaff 0 swig 0 009 * 01201856 v 0000 @ 01170052 v 0000 + 00840189 n 0304 + 10497946 n 0201 + 07884182 n 0201 + 00840363 n 0101 + 00840189 n 0101 + 10151957 n 0101 + 00843325 n 0101 01 + 08 00 | to swallow hurriedly or greedily or in one draught; "The men gulped down their beers" -01202374 34 v 08 toss_off 0 pop 2 bolt_down 1 belt_down 0 pour_down 0 down 0 drink_down 0 kill 0 001 @ 01170052 v 0000 01 + 08 00 | drink down entirely; "He downed three martinis before dinner"; "She killed a bottle of brandy that night"; "They popped a few beer after work" -01202651 34 v 01 bolt 1 001 @ 01201856 v 0000 01 + 08 00 | swallow hastily -01202728 34 v 03 nourish 0 nurture 0 sustain 1 008 @ 01182709 v 0000 + 02806261 a 0301 + 01216191 n 0303 + 07570720 n 0304 + 00665358 n 0201 + 02557719 a 0104 + 07570720 n 0102 ~ 01203074 v 0000 02 + 09 00 + 10 00 | provide with nourishment; "We sustained ourselves on bread and water"; "This kind of food is not nourishing for young children" -01203074 34 v 01 carry 1 003 @ 01202728 v 0000 ;c 01887474 n 0000 $ 01740320 v 0000 01 + 11 00 | be able to feed; "This land will carry ten cows to the acre" -01203234 34 v 02 feed_on 0 feed_upon 0 001 @ 01183573 v 0000 01 + 08 00 | be sustained by; "He fed on the great ideas of her mentor" -01203369 34 v 01 fix_up 0 001 @ 01182709 v 0000 01 + 17 00 | find (something or someone) for; "I'll fix you up with a nice girl" -01203500 34 v 03 raven 2 prey a predate 0 004 @ 01177699 v 0000 + 00967310 n 0302 + 00711897 n 0301 + 02152881 n 0201 04 + 08 00 + 11 00 + 22 02 + 02 01 | prey on or hunt for; "These mammals predate certain eggs" -01203715 34 v 02 prey 1 feed 9 002 @ 01162754 v 0000 + 10470460 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | profit from in an exploitatory manner; "He feeds on her insecurity" -01203893 34 v 02 fill_up 0 fill 1 001 @ 01168468 v 0000 02 + 09 00 + 22 01 | eat until one is sated; "He filled up on turkey" -01204021 34 v 04 quench 0 slake 0 allay 0 assuage 0 002 * 01156834 v 0000 @ 01183573 v 0000 02 + 08 00 + 11 00 | satisfy (thirst); "The cold water quenched his thirst" -01204191 34 v 03 nutrify 0 aliment 0 nourish 1 009 @ 01178565 v 0000 + 02557719 a 0304 + 00664849 n 0301 + 02611694 a 0201 + 07570720 n 0206 + 01057759 n 0202 + 07570720 n 0205 + 13523661 n 0101 + 00021265 n 0102 01 + 11 00 | give nourishment to -01204439 34 v 01 range 0 003 @ 01178565 v 0000 + 08629199 n 0101 $ 01576165 v 0000 01 + 08 00 | let eat; "range the animals in the prairie" -01204581 34 v 01 grass 0 002 @ 01576478 v 0000 + 12102133 n 0101 01 + 08 00 | feed with grass -01204677 34 v 01 gutter 0 002 @ 01182709 v 0000 + 03471473 n 0101 01 + 08 00 | provide with gutters; "gutter the buildings" -01204803 34 v 02 luxuriate 0 wanton 0 005 @ 01158181 v 0000 + 14492373 n 0101 + 05146471 n 0102 + 05119223 n 0101 + 01071921 n 0101 01 + 02 00 | become extravagant; indulge (oneself) luxuriously -01205000 34 v 03 burn_off 0 burn 0 burn_up 0 001 @ 01157517 v 0000 02 + 08 00 + 11 00 | use up (energy); "burn off calories through vigorous exercise" -01205153 34 v 02 carry 0 hold 0 001 @ 01171183 v 0000 01 + 08 00 | drink alcohol without showing ill effects; "He can hold his liquor"; "he had drunk more than he could carry" -01205331 34 v 01 go_down 0 000 02 + 01 00 + 06 00 | be ingested; "This wine sure goes down well"; "The food wouldn't go down" -01205459 34 v 01 sup 2 005 @ 01156834 v 0000 + 07579276 n 0102 + 08256567 n 0101 + 07575984 n 0101 + 00841777 n 0101 01 + 08 00 | take solid or liquid food into the mouth a little at a time either by drinking or by eating with a spoon -01205696 35 v 04 touch 1 adjoin 3 meet 0 contact 3 015 + 14419510 n 0401 + 07339329 n 0401 + 00124880 n 0401 + 00566733 a 0201 + 00147454 n 0202 + 07409592 n 0101 ~ 01207951 v 0000 ~ 01220885 v 0000 ~ 01250908 v 0000 ~ 01290255 v 0000 ~ 01396524 v 0000 ~ 01466978 v 0000 ~ 01467370 v 0000 ~ 01590007 v 0000 $ 02710402 v 0000 01 + 11 00 | be in direct physical contact with; make contact; "The two buildings touch"; "Their hands touched"; "The wire must not contact the metal cover"; "The surfaces contact at this point" -01206218 35 v 01 touch 0 024 + 07409592 n 0101 + 10717589 n 0101 + 00046522 n 0102 ^ 01979702 v 0101 ~ 00220115 v 0000 ~ 01206849 v 0000 ~ 01207044 v 0000 ~ 01207402 v 0000 ~ 01209426 v 0000 ~ 01209953 v 0000 ~ 01210152 v 0000 ~ 01210352 v 0000 ~ 01210737 v 0000 ~ 01225970 v 0000 ~ 01236164 v 0000 ~ 01240720 v 0000 ~ 01247550 v 0000 ~ 01400044 v 0000 ~ 01410223 v 0000 ~ 01431230 v 0000 ~ 01431723 v 0000 ~ 01432474 v 0000 ~ 01447257 v 0000 ~ 01600600 v 0000 06 + 01 00 + 08 00 + 09 00 + 11 00 + 20 00 + 21 00 | make physical contact with, come in contact with; "Touch the stone for good luck"; "She never touched her husband" -01206849 35 v 01 touch 4 004 @ 01206218 v 0000 + 00046522 n 0101 + 07409592 n 0101 + 10717589 n 0101 01 + 08 00 | cause to be in brief contact with; "He touched his toes to the horse's flanks" -01207044 35 v 01 toe 0 002 @ 01206218 v 0000 + 05577410 n 0101 02 + 08 00 + 09 00 | touch with the toe -01207149 35 v 04 trap 2 pin 3 immobilize 0 immobilise 0 004 + 01260309 n 0402 + 01525116 a 0301 + 01260309 n 0301 + 01146288 n 0303 04 + 08 00 + 09 00 + 10 00 + 11 00 | to hold fast or prevent from moving; "The child was pinned under the fallen tree" -01207402 35 v 01 pick_up 1 001 @ 01206218 v 0000 01 + 08 00 | take up by hand; "He picked up the book and started to read" -01207527 35 v 02 touch 3 disturb 0 004 @ 00126264 v 0000 + 00333829 n 0201 ~ 00521296 v 0000 ~ 01207688 v 0000 01 + 08 00 | tamper with; "Don't touch my CDs!" -01207688 35 v 01 violate 0 001 @ 01207527 v 0000 02 + 08 00 + 11 00 | destroy; "Don't violate my garden"; "violate my privacy" -01207817 35 v 01 break_in 0 001 @ 02018524 v 0000 01 + 22 00 | intrude on uninvited; "The nosy couple broke in on our conversation" -01207951 35 v 02 cover 1 spread_over 0 019 $ 01332730 v 0000 @ 01205696 v 0000 + 02840619 n 0103 + 04151940 n 0102 + 09257949 n 0101 ~ 00217152 v 0000 ~ 00228127 v 0000 ~ 00361495 v 0000 ~ 01208708 v 0000 ~ 01208896 v 0000 ~ 01209025 v 0000 ~ 01262321 v 0000 ~ 01339294 v 0000 ~ 01605404 v 0000 ~ 01617034 v 0000 ~ 02749405 v 0000 ~ 02749520 v 0000 ~ 02749633 v 0000 ~ 02749768 v 0000 01 + 11 00 | form a cover over; "The grass covered the grave" -01208400 35 v 01 frost 4 003 @ 01332730 v 0000 + 13485270 n 0101 + 14915622 n 0101 01 + 11 00 | cover with frost; "ice crystals frosted the glass" -01208549 35 v 01 frost 2 001 @ 01332730 v 0000 01 + 08 00 | provide with a rough or speckled surface or appearance; "frost the glass"; "she frosts her hair" -01208708 35 v 01 glaciate 0 004 @ 01207951 v 0000 + 14519673 n 0101 + 13487409 n 0101 + 09289331 n 0101 01 + 11 00 | cover with ice or snow or a glacier; "the entire area was glaciated" -01208896 35 v 01 strew 4 001 @ 01207951 v 0000 02 + 08 00 + 11 00 | cover; be dispersed over; "Dead bodies strewed the ground" -01209025 35 v 02 grass 2 grass_over 0 002 @ 01207951 v 0000 + 12102133 n 0101 01 + 11 00 | cover with grass -01209135 35 v 02 hit 5 strike 2 002 $ 01123887 v 0000 @ 00137313 v 0000 04 + 01 00 + 10 00 + 11 00 + 22 02 | affect or afflict suddenly, usually adversely; "We were hit by really bad weather"; "He was stricken with cancer when he was still a teenager"; "The earthquake struck at midnight" -01209426 35 v 02 strike 3 hit 2 001 @ 01206218 v 0000 01 + 08 00 | produce by manipulating keys or strings of musical instruments, also metaphorically; "The pianist strikes a middle C"; "strike `z' on the keyboard"; "her comments struck a sour note" -01209678 35 v 02 feel 0 finger 5 008 * 01206218 v 0000 + 05566504 n 0201 + 00140900 n 0201 + 02585285 n 0102 + 02584915 n 0102 + 04946553 n 0102 + 05722427 n 0105 $ 02127613 v 0000 01 + 08 00 | examine by touch; "Feel this soft cloth!"; "The customer fingered the sweater" -01209953 35 v 02 finger 0 thumb 0 004 @ 01206218 v 0000 + 05567217 n 0201 + 05566504 n 0101 + 00140900 n 0101 02 + 08 00 + 09 00 | feel or handle with the fingers; "finger the binding of the book" -01210152 35 v 01 feel b 004 @ 01206218 v 0000 ;u 07157273 n 0000 + 00854538 n 0101 $ 02127613 v 0000 01 + 09 00 | pass one's hands over the sexual organs of; "He felt the girl in the movie theater" -01210352 35 v 02 palpate 0 feel 1 006 @ 01206218 v 0000 ;c 00612160 n 0000 + 04946553 n 0202 + 02773293 a 0101 + 00143885 n 0101 $ 02127613 v 0000 01 + 08 00 | examine (a body part) by palpation; "The nurse palpated the patient's stomach"; "The runner felt her pulse" -01210622 35 v 01 stub 0 001 @ 02761897 v 0000 01 + 08 00 | extinguish by crushing; "stub out your cigarette now" -01210737 35 v 02 handle 0 palm 0 009 @ 01206218 v 0000 + 13656075 n 0201 + 05565696 n 0201 + 03485997 n 0101 + 00140652 n 0101 ~ 01082290 v 0000 ~ 01211019 v 0000 ~ 01211699 v 0000 ~ 01412089 v 0000 01 + 08 00 | touch, lift, or hold with the hands; "Don't handle the merchandise" -01211019 35 v 01 fumble 1 001 @ 01210737 v 0000 01 + 08 00 | handle clumsily -01211098 35 v 01 paw 0 004 * 01206218 v 0000 @ 01226215 v 0000 + 05564590 n 0104 + 10409322 n 0101 02 + 08 00 + 09 00 | touch clumsily; "The man tried to paw her" -01211263 35 v 01 grope 2 002 @ 01226215 v 0000 + 00141027 n 0101 01 + 09 00 | fondle for sexual pleasure; "He made some sexual advances at the woman in his office and groped her repeatedly" -01211455 35 v 01 paw 1 002 @ 01308160 v 0000 + 02439929 n 0101 01 + 08 00 | scrape with the paws; "The bear pawed the door" -01211581 35 v 01 dandle 0 001 @ 01226215 v 0000 02 + 08 00 + 09 00 | pet; "the grandfather dandled the small child" -01211699 35 v 01 manipulate 0 013 @ 01210737 v 0000 + 00140652 n 0102 + 10291110 n 0101 ~ 01212024 v 0000 ~ 01212115 v 0000 ~ 01224211 v 0000 ~ 01224415 v 0000 ~ 01224744 v 0000 ~ 01232738 v 0000 ~ 01235355 v 0000 ~ 01418667 v 0000 ~ 01586018 v 0000 ~ 01586278 v 0000 01 + 08 00 | hold something in one's hands and move it -01212024 35 v 01 lay_hands_on 0 001 @ 01211699 v 0000 01 + 08 00 | manage with the hands -01212115 35 v 01 mouse 0 002 @ 01211699 v 0000 + 03793489 n 0101 01 + 02 00 | manipulate the mouse of a computer -01212230 35 v 04 guide 0 run 1 draw d pass 0 007 ^ 01392237 v 0402 ^ 00968211 v 040b ~ 01249724 v 0000 $ 01359432 v 0000 ~ 01359803 v 0000 ~ 01521912 v 0000 $ 02686625 v 0000 01 + 21 00 | pass over, across, or through; "He ran his eyes over her body"; "She ran her fingers along the carved figurine"; "He drew her hair through his fingers" -01212572 35 v 03 seize 0 prehend 0 clutch 0 017 @ 01214265 v 0000 + 00812526 n 0303 + 00812274 n 0204 + 00812274 n 0103 ~ 01213273 v 0000 ~ 01213348 v 0000 ~ 01213504 v 0000 ~ 01215137 v 0000 ~ 01215421 v 0000 ~ 01215851 v 0000 ~ 01222328 v 0000 ~ 01224001 v 0000 ~ 01350283 v 0000 ~ 01439190 v 0000 ~ 01439745 v 0000 ~ 01572978 v 0000 ~ 01574292 v 0000 03 + 08 00 + 09 00 + 11 00 | take hold of; grab; "The sales clerk quickly seized the money on the counter"; "She clutched her purse"; "The mother seized her child by the arm"; "Birds of prey often seize small mammals" -01213146 35 v 01 snatch 2 001 + 00138956 n 0103 01 + 08 00 | to make grasping motions; "the cat snatched at the butterflies" -01213273 35 v 01 nab 1 001 @ 01212572 v 0000 01 + 08 00 | seize suddenly -01213348 35 v 01 rack 1 001 @ 01212572 v 0000 01 + 08 00 | seize together, as of parallel ropes of a tackle in order to prevent running through the block -01213504 35 v 01 claw 1 001 @ 01212572 v 0000 01 + 22 00 | clutch as if in panic; "She clawed the doorknob" -01213614 35 v 01 seize 1 007 @ 01214265 v 0000 + 00775286 n 0102 + 10586265 n 0102 ~ 01213908 v 0000 ~ 01213998 v 0000 ~ 01471043 v 0000 ~ 01471825 v 0000 02 + 08 00 + 09 00 | take or capture by force; "The terrorists seized the politicians"; "The rebels threaten to seize civilian hostages" -01213908 35 v 01 raven 0 001 @ 01213614 v 0000 01 + 01 00 | obtain or seize by violence -01213998 35 v 01 wrest 1 002 @ 01213614 v 0000 + 10793019 n 0101 03 + 08 00 + 09 00 + 16 00 | obtain by seizing forcibly or violently, also metaphorically; "wrest the knife from his hands"; "wrest a meaning from the old text"; "wrest power from the old government" -01214265 35 v 02 take 0 get_hold_of 0 009 + 00714477 n 0102 ^ 02492584 v 0101 ^ 02569630 v 0103 ^ 01312371 v 0105 ^ 01434278 v 0101 ^ 01214786 v 0101 ^ 01572510 v 0102 ~ 01212572 v 0000 ~ 01213614 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | get into one's hands, take physically; "Take a cookie!"; "Can you take this bag, please" -01214597 35 v 02 bring_out 1 get_out 0 002 @ 01485513 v 0000 ~ 01352154 v 0000 01 + 08 00 | take out of a container or enclosed space; "Get out your best dress--we are going to a party!" -01214786 35 v 02 take_in 0 gather_in 0 003 @ 00435853 v 0000 ~ 01541000 v 0000 ~ 01599983 v 0000 01 + 08 00 | fold up; "take in the sails" -01214927 35 v 01 brail 0 001 @ 00435853 v 0000 01 + 08 00 | take in a sail with a brail -01215017 35 v 02 calve 0 break_up 4 001 @ 01557774 v 0000 01 + 01 00 | release ice; "The icebergs and glaciers calve" -01215137 35 v 07 collar 0 nail 1 apprehend 0 arrest 0 pick_up 0 nab 0 cop 0 007 @ 01212572 v 0000 + 09879144 n 0702 + 06547832 n 0501 + 00088725 n 0402 + 00088725 n 0301 + 09801102 n 0301 + 00088725 n 0104 01 + 09 00 | take into custody; "the police nabbed the suspected criminals" -01215421 35 v 03 get 9 catch 1 capture 1 005 @ 01212572 v 0000 + 00775286 n 0301 + 00088725 n 0203 ~ 01439604 v 0000 ~ 01604251 v 0000 02 + 08 00 + 09 00 | succeed in catching or seizing, especially after a chase; "We finally got the suspect"; "Did you catch the thief?" -01215694 35 v 01 collar 1 004 @ 02339413 v 0000 + 03068486 n 0101 + 03024882 n 0102 + 03068181 n 0101 01 + 08 00 | furnish with a collar; "collar the dog" -01215851 35 v 01 collar 2 004 @ 01212572 v 0000 + 03068486 n 0101 + 03024882 n 0102 + 03068181 n 0101 02 + 08 00 + 09 00 | seize by the neck or collar -01216004 35 v 02 grasp 0 hold_on 0 006 @ 01216670 v 0000 + 00812526 n 0105 + 00812274 n 0101 ~ 01216194 v 0000 ~ 01216331 v 0000 ~ 01216522 v 0000 03 + 08 00 + 09 00 + 11 00 | hold firmly -01216194 35 v 01 latch_on 0 001 @ 01216004 v 0000 02 + 08 00 + 11 00 | take hold of or attach to; "The biochip latches onto the genes" -01216331 35 v 02 cling 2 hang 7 001 @ 01216004 v 0000 03 + 08 00 + 11 00 + 22 00 | hold on tightly or tenaciously; "hang on to your father's hands"; "The child clung to his mother's apron" -01216522 35 v 01 clasp 0 004 @ 01216004 v 0000 + 00812526 n 0101 ! 01222485 v 0101 ~ 01424456 v 0000 02 + 08 00 + 09 00 | hold firmly and tightly -01216670 35 v 02 hold 0 take_hold 0 009 + 00812526 n 0107 ! 01474550 v 0101 ~ 01216004 v 0000 ~ 01220303 v 0000 ~ 01222177 v 0000 ~ 01573143 v 0000 ~ 01606736 v 0000 ~ 01606931 v 0000 ~ 01876735 v 0000 07 + 08 00 + 09 00 + 10 00 + 11 00 + 02 02 + 04 02 + 22 02 | have or hold in one's hands or grip; "Hold this bowl for a moment, please"; "A crazy idea took hold of him" -01217043 35 v 04 hold 1 support 0 sustain 0 hold_up 0 017 + 01017320 n 0201 + 04359589 n 0201 + 04360501 n 0201 + 03421117 n 0202 + 01017320 n 0202 + 03525454 n 0101 ~ 01217617 v 0000 ~ 01217924 v 0000 ~ 01218084 v 0000 ~ 01218396 v 0000 ~ 01218512 v 0000 ~ 01218652 v 0000 ~ 01218791 v 0000 ~ 01218918 v 0000 ~ 01219004 v 0000 ~ 01219397 v 0000 ~ 01219706 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | be the physical support of; carry the weight of; "The beam holds up the roof"; "He supported me with one hand while I balanced on the beam"; "What's holding that mirror?" -01217617 35 v 01 scaffold 0 002 @ 01217043 v 0000 + 04141712 n 0101 01 + 08 00 | provide with a scaffold for support; "scaffold the building before painting it" -01217780 35 v 02 pleat 2 plicate 0 003 @ 01277974 v 0000 + 13907415 n 0203 + 00406800 n 0201 01 + 08 00 | fold into pleats, "Pleat the cloth" -01217924 35 v 01 block 6 001 @ 01217043 v 0000 01 + 08 00 | support, secure, or raise with a block; "block a plate for printing"; "block the wheels of a car" -01218084 35 v 01 carry 9 004 $ 02682954 v 0000 $ 02556537 v 0000 @ 01217043 v 0000 + 02969886 n 0101 02 + 08 00 + 11 00 | bear or be able to bear the weight, pressure,or responsibility of; "His efforts carried the entire project"; "How many credits is this student carrying?"; "We carry a very large mortgage" -01218396 35 v 01 chock 0 002 @ 01217043 v 0000 + 03023878 n 0101 01 + 08 00 | support on chocks; "chock the boat" -01218512 35 v 02 buoy 0 buoy_up 0 002 @ 01217043 v 0000 + 01187072 a 0101 02 + 10 00 + 11 00 | keep afloat; "The life vest buoyed him up" -01218652 35 v 01 pole 1 002 @ 01217043 v 0000 + 03976657 n 0101 02 + 08 00 + 11 00 | support on poles; "pole climbing plants like beans" -01218791 35 v 01 bracket 0 002 @ 01217043 v 0000 + 02888569 n 0101 01 + 08 00 | support with brackets; "bracket bookshelves" -01218918 35 v 01 underpin 0 001 @ 01217043 v 0000 01 + 11 00 | support from beneath -01219004 35 v 04 prop_up 0 prop 0 shore_up 0 shore 3 006 @ 01217043 v 0000 + 04204468 n 0401 + 01017550 n 0401 + 01017550 n 0302 + 04011242 n 0201 ~ 01219282 v 0000 02 + 08 00 + 21 00 | support by placing against something solid or rigid; "shore and buttress an old building" -01219282 35 v 01 bolster 0 002 @ 01219004 v 0000 + 02865509 n 0101 01 + 09 00 | prop up with a pillow or bolster -01219397 35 v 01 truss 0 002 @ 01217043 v 0000 + 04492375 n 0101 02 + 08 00 + 11 00 | support structurally; "truss the roofs"; "trussed bridges" -01219544 35 v 02 jack 0 jack_up 0 002 @ 01974062 v 0000 + 03588951 n 0101 01 + 08 00 | lift with a special device; "jack up the car so you can change the tire" -01219706 35 v 01 brace 0 005 @ 01217043 v 0000 + 02887209 n 0101 + 02886599 n 0101 + 02886599 n 0102 ~ 01219867 v 0000 02 + 08 00 + 11 00 | support by bracing -01219867 35 v 01 tread 1 001 @ 01219706 v 0000 01 + 08 00 | brace (an archer's bow) by pressing the foot against the center -01219993 35 v 04 brace 1 steady 0 stabilize 2 stabilise 2 005 @ 00220869 v 0000 + 01266945 n 0301 + 02887209 n 0101 ~ 00271403 v 0000 ~ 00271520 v 0000 03 + 08 00 + 09 00 + 11 00 | support or hold steady and make steadfast, with or as if with a brace; "brace your elbows while working on the potter's wheel" -01220303 35 v 04 cling_to 0 hold_close 0 hold_tight 0 clutch 4 003 @ 01216670 v 0000 + 00812526 n 0403 ~ 01424948 v 0000 02 + 08 00 + 09 00 | hold firmly, usually with one's hands; "She clutched my arm when she got scared" -01220528 35 v 01 slat 1 002 @ 01345109 v 0000 + 04234455 n 0101 01 + 08 00 | close the slats of (windows) -01220636 35 v 02 stopper 0 stopple 0 003 @ 01422886 v 0000 + 03967942 n 0203 + 03967942 n 0102 01 + 08 00 | close or secure with or as if with a stopper; "She stoppered the wine bottle"; "The mothers stoppered their babies' mouths with pacifiers" -01220885 35 v 05 cling 0 cleave 2 adhere 1 stick 1 cohere 0 014 $ 01356750 v 0000 * 01290422 v 0000 @ 01205696 v 0000 + 00053564 a 0501 + 00053384 a 0501 + 14420464 n 0503 + 14420464 n 0502 + 14420464 n 0501 + 00053032 a 0301 + 04935528 n 0302 ~ 01221405 v 0000 ~ 01221542 v 0000 ~ 01221684 v 0000 $ 01614581 v 0000 03 + 01 00 + 04 00 + 22 00 | come or be in close contact with; stick or hold together and resist separation; "The dress clings to her body"; "The label stuck to the box"; "The sushi rice grains cohere" -01221405 35 v 01 mold 0 001 @ 01220885 v 0000 01 + 11 00 | fit tightly, follow the contours of; "The dress molds her beautiful figure" -01221542 35 v 01 conglutinate 0 002 @ 01220885 v 0000 + 13571365 n 0102 01 + 01 00 | stick together; "the edges of the wound conglutinated" -01221684 35 v 01 agglutinate 0 003 @ 01220885 v 0000 + 13428608 n 0101 ~ 01221842 v 0000 01 + 01 00 | clump together; as of bacteria, red blood cells, etc. -01221842 35 v 02 haemagglutinate 0 hemagglutinate 0 003 @ 01221684 v 0000 + 13492136 n 0201 + 13492136 n 0102 01 + 11 00 | cause the clumping together (of red blood cells) -01222016 35 v 01 agglutinate 1 003 @ 01290422 v 0000 + 00112018 a 0101 + 13428421 n 0101 01 + 01 00 | string together (morphemes in an agglutinating language) -01222177 35 v 01 cradle 0 002 @ 01216670 v 0000 + 03125729 n 0101 02 + 08 00 + 09 00 | hold gently and carefully; "He cradles the child in his arms" -01222328 35 v 01 clasp 1 003 @ 01212572 v 0000 + 00812526 n 0101 ! 01222485 v 0101 03 + 08 00 + 09 00 + 11 00 | grasp firmly; "The child clasped my hands" -01222485 35 v 01 unclasp 0 003 @ 01474550 v 0000 ! 01216522 v 0101 ! 01222328 v 0101 01 + 08 00 | release from a clasp; "She clasped and unclasped her hands" -01222645 35 v 01 twist 0 005 @ 01907258 v 0000 + 00343249 n 0103 ~ 00025510 v 0000 ~ 01222830 v 0000 ~ 01223616 v 0000 01 + 08 00 | turn in the opposite direction; "twist one's head" -01222830 35 v 01 quirk 0 001 @ 01222645 v 0000 01 + 08 00 | twist or curve abruptly; "She quirked her head in a peculiar way" -01222958 35 v 03 flip 3 flip_over 0 turn_over 1 002 @ 01907258 v 0000 + 07624466 n 0301 04 + 01 00 + 02 00 + 08 00 + 11 00 | turn upside down, or throw so as to reverse; "flip over the pork chop"; "turn over the pancakes" -01223182 35 v 03 twist 1 twine 4 distort 1 010 @ 00140967 v 0000 + 13867276 n 0302 + 13877918 n 0102 ! 01223508 v 0101 ~ 01349130 v 0000 ~ 01350699 v 0000 ~ 01462928 v 0000 ~ 01517662 v 0000 ~ 01518772 v 0000 ~ 01518924 v 0000 05 + 01 00 + 08 00 + 09 00 + 11 00 + 21 00 | form into a spiral shape; "The cord is all twisted" -01223508 35 v 01 untwist 0 002 @ 01368597 v 0000 ! 01223182 v 0101 01 + 08 00 | cause to become untwisted -01223616 35 v 02 curl 0 wave 1 005 @ 01222645 v 0000 + 05259240 n 0201 + 05257737 n 0102 + 03150232 n 0101 ~ 01223833 v 0000 03 + 01 00 + 08 00 + 11 00 | twist or roll into coils or ringlets; "curl my hair, please" -01223833 35 v 06 crimp 0 crape 0 frizzle 0 frizz 0 kink_up 0 kink 0 003 @ 01223616 v 0000 + 13877918 n 0601 + 05258299 n 0101 01 + 08 00 | curl tightly; "crimp hair" -01224001 35 v 01 grip 0 005 @ 01212572 v 0000 + 03485997 n 0102 + 00812526 n 0106 ~ 01445932 v 0000 ~ 01456771 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hold fast or firmly; "He gripped the steering wheel" -01224211 35 v 02 twiddle 0 fiddle_with 0 002 @ 01211699 v 0000 + 10734235 n 0101 01 + 08 00 | manipulate, as in a nervous or unconscious manner; "He twiddled his thumbs while waiting for the interview" -01224415 35 v 03 wield 0 handle 1 manage 3 004 @ 01211699 v 0000 ~ 01224653 v 0000 ~ 01225684 v 0000 ~ 01593763 v 0000 01 + 08 00 | handle effectively; "The burglar wielded an axe"; "The young violinist didn't manage her bow very well" -01224653 35 v 01 ply 0 001 @ 01224415 v 0000 01 + 08 00 | wield vigorously; "ply an axe" -01224744 35 v 02 operate 0 control 0 017 $ 00597385 v 0000 @ 01211699 v 0000 + 03096960 n 0201 + 00830448 n 0201 + 01091728 a 0102 + 00409211 n 0101 + 10378412 n 0101 ~ 00464996 v 0000 ~ 00790308 v 0000 ~ 01225215 v 0000 ~ 01225357 v 0000 ~ 01225461 v 0000 ~ 01225576 v 0000 ~ 01602907 v 0000 ~ 01728052 v 0000 ~ 01930874 v 0000 ~ 01941093 v 0000 02 + 08 00 + 11 00 | handle and cause to function; "do not operate machinery after imbibing alcohol"; "control the lever" -01225215 35 v 01 turn a 001 @ 01224744 v 0000 01 + 08 00 | alter the functioning or setting of; "turn the dial to 10"; "turn the heat down" -01225357 35 v 01 submarine 2 002 @ 01224744 v 0000 + 10669357 n 0101 01 + 02 00 | control a submarine -01225461 35 v 01 treadle 0 002 @ 01224744 v 0000 + 03903424 n 0102 01 + 08 00 | operate (machinery) by a treadle -01225576 35 v 01 relay 0 002 @ 01224744 v 0000 + 04072960 n 0101 01 + 08 00 | control or operate by relay -01225684 35 v 01 pump 0 003 @ 01224415 v 0000 + 04021798 n 0101 ~ 01225867 v 0000 01 + 08 00 | operate like a pump; move up and down, like a handle or a pedal; "pump the gas pedal" -01225867 35 v 01 goose 1 001 @ 01225684 v 0000 01 + 08 00 | give a spurt of fuel to; "goose the car" -01225970 35 v 01 stroke 0 006 @ 01206218 v 0000 + 00144632 n 0101 + 07413815 n 0101 + 00144632 n 0102 ~ 01226215 v 0000 ~ 01432176 v 0000 02 + 08 00 + 09 00 | touch lightly and repeatedly, as with brushing motions; "He stroked his long beard" -01226215 35 v 02 caress 0 fondle 0 011 @ 01225970 v 0000 + 00854000 n 0203 + 00144778 n 0101 ~ 01211098 v 0000 ~ 01211263 v 0000 ~ 01211581 v 0000 ~ 01226600 v 0000 ~ 01243661 v 0000 ~ 01424350 v 0000 ~ 01425892 v 0000 ~ 01431987 v 0000 02 + 08 00 + 09 00 | touch or stroke lightly in a loving or endearing manner; "He caressed her face"; "They fondled in the back seat of the taxi" -01226600 35 v 01 pet 1 004 @ 01226215 v 0000 + 09991867 n 0104 + 10420649 n 0101 + 00854000 n 0107 02 + 02 00 + 09 00 | stroke or caress in an erotic manner, as during lovemaking -01226781 35 v 01 canoodle 0 001 @ 01425892 v 0000 01 + 09 00 | fondle or pet affectionately -01226875 35 v 03 probe 0 dig_into 0 poke_into 0 004 @ 01227675 v 0000 + 00641522 n 0101 + 04006411 n 0101 ~ 01310125 v 0000 02 + 08 00 + 11 00 | examine physically with or as if with a probe; "probe an anthill" -01227088 35 v 01 cut e 001 @ 01227675 v 0000 01 + 04 00 | penetrate injuriously; "The glass from the shattered windshield cut into her forehead" -01227235 35 v 02 interpenetrate 0 permeate 2 005 @ 01227675 v 0000 + 13534954 n 0201 + 00051712 n 0202 + 00975658 n 0101 ~ 01227488 v 0000 01 + 01 00 | penetrate mutually or be interlocked; "The territories of two married people interpenetrate a lot" -01227488 35 v 01 invade 0 003 @ 01227235 v 0000 + 01355966 a 0101 + 07332313 n 0101 01 + 11 00 | penetrate or assault, in a harmful or injurious way; "The cancer had invaded her lungs" -01227675 35 v 02 penetrate 0 perforate 3 022 @ 02016523 v 0000 + 09389867 n 0201 + 10413688 n 0101 ~ 01226875 v 0000 ~ 01227088 v 0000 ~ 01227235 v 0000 ~ 01228235 v 0000 ~ 01228396 v 0000 ~ 01228635 v 0000 ~ 01228753 v 0000 ~ 01228866 v 0000 ~ 01229071 v 0000 ~ 01229809 v 0000 ~ 01441100 v 0000 ~ 01441510 v 0000 ~ 01442361 v 0000 ~ 01444037 v 0000 ~ 01457954 v 0000 ~ 01530898 v 0000 ~ 01577635 v 0000 ~ 01586600 v 0000 ~ 01605537 v 0000 03 + 08 00 + 11 00 + 22 00 | pass into or through, often by overcoming resistance; "The bullet penetrated her chest" -01228235 35 v 01 strike 9 001 @ 01227675 v 0000 02 + 04 00 + 11 00 | pierce with force; "The bullet struck her thigh"; "The icy wind struck through our coats" -01228396 35 v 01 break 9 002 @ 01227675 v 0000 $ 01228524 v 0000 01 + 11 00 | pierce or penetrate; "The blade broke her skin" -01228524 35 v 01 break d 001 $ 01228396 v 0000 01 + 01 00 | become punctured or penetrated; "The skin broke" -01228635 35 v 01 foray 0 002 @ 01227675 v 0000 + 00976953 n 0101 02 + 04 00 + 22 00 | briefly enter enemy territory -01228753 35 v 01 poke_into 1 001 @ 01227675 v 0000 02 + 04 00 + 22 00 | enter briefly; "We poked into the bar" -01228866 35 v 02 sneak_in 0 creep_in 0 001 @ 01227675 v 0000 02 + 01 00 + 02 00 | enter surreptitiously; "He sneaked in under cover of darkness"; "In this essay, the author's personal feelings creep in" -01229071 35 v 07 permeate 1 pervade 0 penetrate 5 interpenetrate 3 diffuse 0 imbue 0 riddle 2 014 @ 01227675 v 0000 + 00468362 a 0502 + 00368592 n 0504 + 03194992 n 0502 + 03194812 n 0502 + 00051712 n 0401 + 00802514 a 0301 + 00468795 a 0204 + 13534954 n 0202 + 00468795 a 0103 + 00468795 a 0101 + 13534954 n 0101 + 00051712 n 0102 ~ 01229631 v 0000 01 + 11 00 | spread or diffuse through; "An atmosphere of distrust has permeated this administration"; "music penetrated the entire building"; "His campaign was riddled with accusations and personal attacks" -01229631 35 v 02 spiritize 0 spiritise 0 005 @ 01229071 v 0000 + 14526182 n 0101 + 10636598 n 0101 + 04632157 n 0103 + 04620558 n 0101 02 + 10 00 + 11 00 | imbue with a spirit -01229809 35 v 01 honeycomb 0 001 @ 01227675 v 0000 02 + 08 00 + 11 00 | penetrate thoroughly and into every part; "the revolutionaries honeycombed the organization" -01229976 35 v 05 jab 0 prod 1 stab 1 poke 1 dig 3 007 @ 01899262 v 0000 + 00135311 n 0501 + 00334935 n 0403 + 00334935 n 0404 + 04007664 n 0201 + 00135311 n 0102 + 00334935 n 0102 02 + 20 00 + 21 00 | poke or thrust abruptly; "he jabbed his finger into her ribs" -01230241 35 v 01 poke 0 002 @ 01441100 v 0000 + 00334935 n 0103 02 + 08 00 + 11 00 | make a hole by poking -01230350 35 v 02 stab 0 jab 2 004 @ 01899262 v 0000 + 01173965 n 0101 + 10644179 n 0101 ~ 01240935 v 0000 03 + 08 00 + 09 00 + 10 00 | stab or pierce; "he jabbed the piece of meat with his pocket knife" -01230555 35 v 01 jab 1 003 @ 01410223 v 0000 + 00135952 n 0101 + 00334935 n 0101 03 + 08 00 + 09 00 + 22 00 | strike or punch with quick and short blows -01230710 35 v 03 prod 0 incite 0 egg_on 0 009 + 09184975 n 0201 + 09184975 n 0202 + 01261490 n 0201 + 10209246 n 0203 + 07252378 n 0103 + 07252378 n 0104 ~ 01231061 v 0000 ~ 01231140 v 0000 ~ 01241073 v 0000 02 + 08 00 + 09 00 | urge on; cause to act; "The other children egged the boy on, but he did not want to throw the stone through the window" -01231061 35 v 01 goose 2 001 @ 01230710 v 0000 01 + 09 00 | prod into action -01231140 35 v 01 halloo 0 001 @ 01230710 v 0000 01 + 08 00 | urge on with shouts; "halloo the dogs in a hunt" -01231252 35 v 03 nudge 0 poke_at 0 prod 2 006 @ 01871979 v 0000 + 04007664 n 0301 + 00112997 n 0101 + 10365514 n 0101 ~ 01231528 v 0000 ~ 01239494 v 0000 03 + 08 00 + 09 00 + 10 00 | to push against gently; "She nudged my elbow when she saw her friend enter the restaurant" -01231528 35 v 01 jog 0 002 @ 01231252 v 0000 + 00112997 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | give a slight push to -01231652 35 v 02 knife 0 stab 2 007 @ 00069879 v 0000 + 01173965 n 0201 + 10644179 n 0201 + 03624134 n 0101 + 03623556 n 0101 ~ 01231878 v 0000 ~ 01231980 v 0000 01 + 09 00 | use a knife on; "The victim was knifed to death" -01231878 35 v 01 poniard 0 002 @ 01231652 v 0000 + 03981094 n 0101 01 + 09 00 | stab with a poniard -01231980 35 v 01 bayonet 0 002 @ 01231652 v 0000 + 02812949 n 0101 01 + 09 00 | stab or kill someone with a bayonet -01232098 35 v 02 maul 0 mangle 2 005 * 00090708 v 0000 * 00069879 v 0000 @ 01549905 v 0000 + 10341955 n 0203 + 10303513 n 0101 02 + 09 00 + 10 00 | injure badly by beating -01232272 35 v 01 maul 1 002 @ 01556572 v 0000 + 03731695 n 0101 01 + 08 00 | split (wood) with a maul and wedges -01232387 35 v 01 laminate 2 005 $ 01391538 v 0000 $ 01365131 v 0000 @ 01556572 v 0000 + 03635668 n 0101 + 05580929 n 0101 01 + 08 00 | split (wood) into thin sheets -01232554 35 v 01 lapidate 1 002 @ 01507914 v 0000 + 01164394 n 0102 02 + 08 00 + 09 00 | throw stones at; "Pilgrims lapidate a stone pillar in commemoration of Abraham's temptation" -01232738 35 v 03 massage 0 rub_down 1 knead 1 005 @ 01211699 v 0000 * 01249724 v 0000 + 00258695 n 0201 + 00659048 n 0101 + 10297983 n 0101 02 + 08 00 + 09 00 | manually manipulate (someone's body), usually for medicinal or relaxation purposes; "She rubbed down her child with a sponge" -01233027 35 v 02 dab 0 pat 0 004 @ 01410223 v 0000 + 07388987 n 0201 + 00125436 n 0202 + 00125436 n 0103 02 + 08 00 + 21 00 | hit lightly; "pat him on the shoulder" -01233194 35 v 03 dab 1 swab 1 swob 1 004 @ 01363648 v 0000 + 04367746 n 0201 + 00125436 n 0103 + 13761171 n 0101 01 + 31 00 | apply (usually a liquid) to a surface; "dab the wall with paint" -01233387 35 v 02 daub 0 smear 3 005 @ 01332730 v 0000 + 14828683 n 0101 + 09992746 n 0101 ~ 01233642 v 0000 $ 01313249 v 0000 01 + 21 00 | cover (a surface) by smearing (a substance) over it; "smear the wall with paint"; "daub the ceiling with plaster" -01233642 35 v 01 blood 0 002 @ 01233387 v 0000 + 05399847 n 0101 01 + 08 00 | smear with blood, as in a hunting initiation rite, where the face of a person is smeared with the blood of the kill -01233838 35 v 01 thatch 0 004 @ 01233993 v 0000 + 04417672 n 0101 + 15069712 n 0101 + 10705211 n 0101 01 + 08 00 | cover with thatch; "thatch the roofs" -01233993 35 v 01 roof 0 007 @ 01332730 v 0000 + 04105068 n 0101 + 10538272 n 0101 + 00617989 n 0101 ~ 01233838 v 0000 ~ 01234223 v 0000 ~ 01338368 v 0000 01 + 08 00 | provide a building with a roof; cover a building with a roof -01234223 35 v 01 shingle 0 004 @ 01233993 v 0000 + 15039445 n 0101 + 10589566 n 0101 + 00618264 n 0101 01 + 08 00 | cover with shingles; "shingle a roof" -01234379 35 v 01 mulch 0 002 @ 01332730 v 0000 + 03797896 n 0101 01 + 08 00 | cover with mulch; "mulch the flowerbeds" -01234500 35 v 01 turf 0 001 @ 01332730 v 0000 01 + 08 00 | cover (the ground) with a surface layer of grass or grass roots -01234625 35 v 01 bury 0 003 * 01332730 v 0000 @ 01575675 v 0000 + 01050627 n 0102 01 + 08 00 | place in the earth and cover with soil; "They buried the stolen goods" -01234793 35 v 01 bank 1 001 @ 01332730 v 0000 01 + 08 00 | cover with ashes so to control the rate of burning; "bank a fire" -01234920 35 v 01 carpet 0 003 @ 01332730 v 0000 + 04118021 n 0102 + 04118021 n 0103 01 + 08 00 | cover with a carpet; "carpet the floors of the house" -01235073 35 v 01 carpet 1 002 @ 01332730 v 0000 + 04118021 n 0102 01 + 11 00 | cover completely, as if with a carpet; "flowers carpeted the meadows" -01235224 35 v 01 board_up 0 001 @ 01332730 v 0000 01 + 08 00 | cover with wooden boards; "board up windows before the hurricane" -01235355 35 v 02 knead 0 work 0 005 $ 01741446 v 0000 @ 01211699 v 0000 ~ 01235558 v 0000 ~ 01235667 v 0000 $ 02751271 v 0000 01 + 08 00 | make uniform; "knead dough"; "work the clay until it is soft" -01235558 35 v 01 proof 0 001 @ 01235355 v 0000 01 + 08 00 | knead to reach proper lightness; "proof dough" -01235667 35 v 01 masticate 0 001 @ 01235355 v 0000 01 + 08 00 | grind and knead; "masticate rubber" -01235769 35 v 02 butt 0 bunt 0 004 @ 01410223 v 0000 + 09884815 n 0101 ^ 01240308 v 0104 ~ 01236009 v 0000 01 + 08 00 | to strike, thrust or shove against; "He butted his sister out of the way"; "The goat butted the hiker with his horns" -01236009 35 v 01 headbutt 0 001 @ 01235769 v 0000 01 + 09 00 | butt with the head; "The soccer player headbutted his oponent and was sent off the field" -01236164 35 v 05 hit 1 strike 1 impinge_on 0 run_into 1 collide_with 0 023 $ 01410223 v 0000 @ 01206218 v 0000 + 07410021 n 0202 + 10178216 n 0202 + 04337740 n 0201 + 07339329 n 0203 + 07302542 n 0102 + 00125629 n 0102 ! 01237901 v 0101 ~ 00102420 v 0000 ~ 01236795 v 0000 ~ 01236941 v 0000 ~ 01237088 v 0000 ~ 01237231 v 0000 ~ 01237761 v 0000 ~ 01238061 v 0000 ~ 01238204 v 0000 ~ 01238358 v 0000 ~ 01238500 v 0000 ~ 01239619 v 0000 ~ 01240308 v 0000 ~ 01561143 v 0000 ~ 01893000 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hit against; come into sudden contact with; "The car hit a tree"; "He struck the table with his elbow" -01236795 35 v 01 ping 0 002 @ 01236164 v 0000 + 07389569 n 0101 02 + 08 00 + 11 00 | hit with a pinging noise; "The bugs pinged the lamp shade" -01236941 35 v 02 spang 0 bang 2 002 @ 01236164 v 0000 ;u 07155661 n 0000 02 + 04 00 + 11 00 | leap, jerk, bang; "Bullets spanged into the trees" -01237088 35 v 01 rear-end 0 001 @ 01236164 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | collide with the rear end of; "The car rear-ended me" -01237231 35 v 01 broadside 0 002 @ 01236164 v 0000 + 02904348 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | collide with the broad side of; "her car broad-sided mine" -01237398 35 v 01 clap 0 004 @ 01405044 v 0000 + 07379963 n 0102 + 07376257 n 0102 + 03037228 n 0101 01 + 08 00 | strike together so as to produce a sharp percussive noise; "clap two boards together" -01237599 35 v 01 clap 1 001 @ 01400044 v 0000 02 + 08 00 + 09 00 | strike with the flat of the hand; usually in a friendly way, as in encouragement or greeting -01237761 35 v 01 connect 1 001 @ 01236164 v 0000 01 + 04 00 | land on or hit solidly; "The brick connected on her head, knocking her out" -01237901 35 v 01 miss 0 004 + 07319774 n 0101 ! 01236164 v 0101 ~ 01135219 v 0000 ~ 01152532 v 0000 01 + 11 00 | fail to reach; "The arrow missed the target" -01238061 35 v 01 spat 0 001 @ 01236164 v 0000 01 + 11 00 | strike with a sound like that of falling rain; "Bullets were spatting the leaves" -01238204 35 v 01 thud 0 002 @ 01236164 v 0000 + 07396945 n 0105 02 + 04 00 + 11 00 | strike with a dull sound; "Bullets were thudding against the wall" -01238358 35 v 01 bottom 0 003 @ 01236164 v 0000 + 08511970 n 0101 + 08511241 n 0101 01 + 01 00 | strike the ground, as with a ship's bottom -01238500 35 v 01 bottom_out 0 001 @ 01236164 v 0000 01 + 01 00 | hit the ground; "the car bottomed out where the driveway meets the road" -01238640 35 v 02 knock 4 strike_hard 0 007 @ 01410223 v 0000 + 00133338 n 0101 + 07410207 n 0101 ^ 01909978 v 0105 ^ 01412346 v 0104 ^ 01414088 v 0102 ^ 01414088 v 0101 02 + 08 00 + 09 00 | deliver a sharp blow or push :"He knocked the glass clear across the room" -01238907 35 v 01 shoulder 0 002 @ 01899262 v 0000 + 05548840 n 0101 01 + 08 00 | push with the shoulders; "He shouldered his way into the crowd" -01239054 35 v 01 shoulder 1 002 @ 01449974 v 0000 + 05548840 n 0101 01 + 08 00 | carry a burden, either real or metaphoric; "shoulder the burden" -01239202 35 v 01 port 0 001 @ 01449974 v 0000 01 + 08 00 | carry or hold with both hands diagonally across the body, especially of weapons; "port a rifle" -01239359 35 v 01 shoulder 2 003 @ 01974062 v 0000 + 05549061 n 0101 + 05548840 n 0101 02 + 08 00 + 09 00 | lift onto one's shoulders -01239494 35 v 01 elbow 0 002 @ 01231252 v 0000 + 05579944 n 0101 01 + 09 00 | shove one's elbow into another person's ribs -01239619 35 v 02 bump 0 knock 0 006 @ 01236164 v 0000 ^ 01240308 v 0205 ^ 01417705 v 0202 + 07338681 n 0102 + 02918595 n 0101 ^ 01240308 v 0102 03 + 08 00 + 09 00 + 22 00 | knock against with force or violence; "My car bumped into the tree" -01239862 35 v 05 down 0 knock_down 1 cut_down 0 push_down 0 pull_down 0 003 @ 01410223 v 0000 + 04166553 n 0104 ~ 01240188 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to come or go down; "The policeman downed the heavily armed suspect"; "The mugger knocked down the old lady after she refused to hand over her wallet" -01240188 35 v 01 submarine 0 002 @ 01239862 v 0000 ;c 00523513 n 0000 01 + 09 00 | bring down with a blow to the legs -01240308 35 v 05 run_into 0 bump_into 0 jar_against 0 butt_against 1 knock_against 0 001 @ 01236164 v 0000 03 + 08 00 + 09 00 + 11 00 | collide violently with an obstacle; "I ran into the telephone pole" -01240514 35 v 03 graze 0 crease 2 rake 2 005 @ 01240720 v 0000 + 14286885 n 0101 + 00841091 n 0101 + 00150762 n 0101 ~ 01248597 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | scrape gently; "graze the skin" -01240720 35 v 01 brush 0 005 $ 01870043 v 0000 @ 01206218 v 0000 + 07413714 n 0101 ~ 01240514 v 0000 ~ 01242071 v 0000 04 + 04 00 + 08 00 + 09 00 + 22 00 | touch lightly and briefly; "He brushed the wall lightly" -01240935 35 v 02 goad 1 prick 4 002 @ 01230350 v 0000 + 04007664 n 0102 02 + 08 00 + 09 00 | stab or urge on as if with a pointed stick -01241073 35 v 01 goad 0 005 @ 01230710 v 0000 + 07252378 n 0101 + 04007664 n 0102 + 07252378 n 0102 ~ 01241253 v 0000 03 + 08 00 + 09 00 + 10 00 | urge with or as if with a goad -01241253 35 v 01 spur 0 002 @ 01241073 v 0000 + 04290259 n 0101 01 + 08 00 | goad with spurs; "the rider spurred his horse" -01241379 35 v 01 spur 1 002 @ 02339413 v 0000 + 04290259 n 0101 01 + 08 00 | equip with spurs; "spur horses" -01241490 35 v 01 spur 2 003 * 00069879 v 0000 @ 01410223 v 0000 + 13912839 n 0101 02 + 08 00 + 09 00 | strike with a spur -01241614 35 v 01 flip 5 003 @ 01511706 v 0000 + 03364156 n 0101 + 02465084 n 0101 02 + 08 00 + 21 00 | move with a flick or light motion -01241753 35 v 01 rocket 0 003 @ 01511706 v 0000 + 04099429 n 0101 + 06135659 n 0101 02 + 08 00 + 09 00 | propel with a rocket -01241881 35 v 01 carry c 002 @ 01511706 v 0000 $ 01449974 v 0000 02 + 10 00 + 11 00 | propel or give impetus to; "The sudden gust of air propelled the ball to the other side of the fence" -01242071 35 v 01 flick 1 001 @ 01240720 v 0000 02 + 08 00 + 21 00 | touch or hit with a light, quick blow; "flicked him with his hand" -01242208 35 v 03 snap 2 click 0 flick 2 004 @ 01831531 v 0000 + 00344699 n 0101 + 07394236 n 0101 + 03125352 n 0102 01 + 08 00 | cause to make a snapping sound; "snap your fingers" -01242391 35 v 02 slam 0 bang 0 003 @ 01400044 v 0000 + 07410207 n 0203 + 07338970 n 0101 02 + 08 00 + 09 00 | strike violently; "slam the ball" -01242537 35 v 05 lam_into 0 tear_into 0 lace_into 0 pitch_into 0 lay_into 0 001 @ 01400044 v 0000 02 + 08 00 + 09 00 | hit violently, as in an attack -01242689 35 v 02 slam 2 flap_down 0 002 @ 01508368 v 0000 + 07338970 n 0101 01 + 21 00 | throw violently; "He slammed the book on the table" -01242832 35 v 02 slam 1 bang 1 003 @ 01345109 v 0000 + 07394115 n 0101 + 10608658 n 0101 03 + 01 00 + 08 00 + 11 00 | close violently; "He slammed the door shut" -01242996 35 v 01 shutter 0 002 @ 01345109 v 0000 + 04211356 n 0101 01 + 08 00 | close with shutters; "We shuttered the window to keep the house cool" -01243148 35 v 01 draw 2 001 @ 01345109 v 0000 01 + 08 00 | move or pull so as to cover or uncover something; "draw the shades"; "draw the curtains" -01243298 35 v 02 pull_back 1 draw 9 002 @ 01449591 v 0000 $ 01449053 v 0000 01 + 08 00 | stretch back a bowstring (on an archer's bow); "The archers were drawing their bows" -01243474 35 v 03 peck 1 pick 0 beak 0 004 @ 01410223 v 0000 + 01758510 n 0301 + 01758308 n 0301 + 01758308 n 0105 04 + 08 00 + 11 00 + 20 00 + 21 00 | hit lightly with a picking motion -01243661 35 v 02 chuck 1 pat 1 002 @ 01226215 v 0000 + 00125436 n 0202 01 + 21 00 | pat or squeeze fondly or playfully, especially under the chin -01243809 35 v 01 brush 1 002 @ 01249724 v 0000 + 02908217 n 0101 02 + 08 00 + 21 00 | rub with a brush, or as if with a brush; "Johnson brushed the hairs from his jacket" -01243982 35 v 01 brush 2 003 $ 00555780 v 0000 @ 01532589 v 0000 + 02908217 n 0101 03 + 08 00 + 09 00 + 11 00 | clean with a brush; "She brushed the suit before hanging it back into the closet" -01244178 35 v 02 swab 0 swob 0 004 @ 01393339 v 0000 + 04367480 n 0202 + 04367480 n 0101 + 00252020 n 0101 01 + 08 00 | wash with a swab or a mop; "swab the ship's decks" -01244351 35 v 01 dust 0 004 * 00173338 v 0000 @ 01532589 v 0000 + 14839846 n 0101 + 03258330 n 0103 02 + 08 00 + 02 01 | remove the dust from; "dust the cabinets" -01244516 35 v 01 dredge 0 003 @ 00173338 v 0000 + 03236217 n 0101 + 03236423 n 0101 02 + 08 00 + 21 00 | remove with a power shovel, usually from a bottom of a body of water -01244692 35 v 02 dredge 1 drag 2 002 @ 01315613 v 0000 + 03236217 n 0101 01 + 08 00 | search (as the bottom of a body of water) for something valuable or lost -01244853 35 v 03 vacuum 0 vacuum-clean 0 hoover 0 004 @ 01532589 v 0000 + 11059079 n 0301 + 03534776 n 0301 + 04517823 n 0101 02 + 02 00 + 08 00 | clean with a vacuum cleaner; "vacuum the carpets" -01245052 35 v 04 sanitize 0 sanitise 0 hygienize 0 hygienise 0 003 @ 01532589 v 0000 + 00254415 n 0203 + 00254415 n 0102 01 + 08 00 | make sanitary by cleaning or sterilizing -01245229 35 v 01 bream 0 001 @ 01532589 v 0000 01 + 08 00 | clean (a ship's bottom) with heat -01245325 35 v 02 steam 0 steam_clean 0 002 @ 01532589 v 0000 + 15055181 n 0101 02 + 08 00 + 11 00 | clean by means of steaming; "steam-clean the upholstered sofa" -01245490 35 v 02 Simonize 0 Simonise 0 002 @ 01245637 v 0000 + 15042542 n 0101 01 + 08 00 | polish with wax; "The motorcycle has been Simonized" -01245637 35 v 04 polish 0 smooth 1 smoothen 1 shine 0 011 * 01249724 v 0000 @ 00293141 v 0000 + 00578795 n 0401 + 14996020 n 0101 + 04955160 n 0101 + 02911332 n 0102 + 00578795 n 0102 ~ 01245490 v 0000 ~ 01245986 v 0000 ~ 01246095 v 0000 ~ 01682582 v 0000 02 + 08 00 + 11 00 | make (a surface) shine; "shine the silver, please"; "polish my shoes" -01245986 35 v 02 slick 0 sleek 0 002 @ 01245637 v 0000 + 04947628 n 0102 01 + 08 00 | make slick or smooth -01246095 35 v 03 buff 0 burnish 0 furbish 0 005 @ 01245637 v 0000 + 04955160 n 0204 + 02910964 n 0101 + 02910964 n 0102 + 02911332 n 0101 02 + 08 00 + 11 00 | polish and make shiny; "buff the wooden floors"; "buff my shoes" -01246321 35 v 01 dull 1 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make dull in appearance; "Age had dulled the surface" -01246444 35 v 02 dull 2 blunt 0 002 @ 00126264 v 0000 ! 01246601 v 0101 02 + 08 00 + 11 00 | make dull or blunt; "Too much cutting dulls the knife's edge" -01246601 35 v 01 sharpen 0 008 @ 00126264 v 0000 + 04185071 n 0101 ! 01246444 v 0101 ~ 00392860 v 0000 ~ 01246843 v 0000 ~ 01246959 v 0000 ~ 01247074 v 0000 ~ 01247181 v 0000 02 + 08 00 + 11 00 | make sharp or sharper; "sharpen the knives" -01246843 35 v 01 edge 1 002 @ 01246601 v 0000 + 03264136 n 0101 01 + 08 00 | provide with an edge; "edge a blade" -01246959 35 v 01 strop 0 002 @ 01246601 v 0000 + 04341288 n 0101 01 + 08 00 | sharpen on a strop; "strop razors" -01247074 35 v 01 whet 0 001 @ 01246601 v 0000 02 + 08 00 + 11 00 | sharpen by rubbing, as on a whetstone -01247181 35 v 01 hone 0 003 @ 01246601 v 0000 + 03530511 n 0101 ~ 01247322 v 0000 02 + 08 00 + 11 00 | sharpen with a hone; "hone a knife" -01247322 35 v 01 set 4 001 @ 01247181 v 0000 01 + 08 00 | give a fine, sharp edge to a knife or razor -01247426 35 v 01 cock 0 002 @ 01494310 v 0000 + 03481824 n 0102 01 + 08 00 | set the trigger of a firearm back for firing -01247550 35 v 02 skim_over 0 skim 0 001 @ 01206218 v 0000 02 + 08 00 + 11 00 | move or pass swiftly and lightly over the surface of -01247684 35 v 02 squeak_by 0 squeak_through 0 001 @ 02050132 v 0000 02 + 08 00 + 09 00 | escape; "She squeaked by me" -01247804 35 v 02 tap 0 tip 4 006 @ 01410223 v 0000 + 07388987 n 0103 + 00125436 n 0101 + 07410021 n 0103 + 10691600 n 0101 ~ 01248023 v 0000 03 + 08 00 + 20 00 + 21 00 | strike lightly; "He tapped me on the shoulder" -01248023 35 v 01 percuss 0 004 @ 01247804 v 0000 + 03004701 a 0101 + 00876239 n 0101 + 03966751 n 0103 01 + 08 00 | strike or tap firmly; "the doctor percussed his chest and back" -01248205 35 v 01 postpose 0 002 @ 01494310 v 0000 + 06483702 n 0101 01 + 08 00 | place after another constituent in the sentence; "Japanese postposes the adpositions, whereas English preposes them" -01248405 35 v 01 prepose 0 002 @ 01494310 v 0000 + 06483992 n 0101 01 + 08 00 | place before another constituent in the sentence; "English preposes the adpositions; Japanese postposes them" -01248597 35 v 01 shave 0 003 @ 01240514 v 0000 + 00150762 n 0102 ~ 01249046 v 0000 03 + 08 00 + 09 00 + 11 00 | touch the surface of lightly; "His back shaved the counter in passing" -01248782 35 v 02 shave 1 trim 1 004 @ 00561090 v 0000 + 00359903 n 0201 + 00359903 n 0202 ~ 01560369 v 0000 03 + 08 00 + 10 00 + 11 00 | cut closely; "trim my beard" -01248950 35 v 01 scissor 0 001 @ 01552519 v 0000 01 + 08 00 | cut with or as if with scissors -01249046 35 v 01 skive 0 001 @ 01248597 v 0000 01 + 08 00 | remove the surface of; "skive leather" -01249147 35 v 01 shave 3 002 @ 01255967 v 0000 + 09385137 n 0103 02 + 08 00 + 11 00 | make shavings of or reduce to shavings; "shave the radish" -01249294 35 v 02 fillet 0 filet 0 006 @ 01255967 v 0000 ;c 00243918 n 0000 + 07655337 n 0202 + 07660065 n 0202 + 07655337 n 0101 + 07660065 n 0101 01 + 08 00 | cut into filets; "filet the fish" -01249490 35 v 02 plane 0 shave 2 004 @ 01552519 v 0000 + 03954731 n 0101 + 03955296 n 0101 + 03955296 n 0102 02 + 08 00 + 11 00 | cut or remove with or as if with a plane; "The machine shaved off fine layers from the piece of wood" -01249724 35 v 01 rub 0 021 * 01206218 v 0000 @ 01212230 v 0000 + 00125126 n 0101 + 00712031 n 0103 ^ 01254013 v 0104 ^ 01254013 v 0105 ^ 01232738 v 0102 ^ 01548718 v 0102 ~ 01243809 v 0000 ~ 01250243 v 0000 ~ 01250374 v 0000 ~ 01250474 v 0000 ~ 01250676 v 0000 ~ 01250795 v 0000 ~ 01251109 v 0000 ~ 01251228 v 0000 ~ 01251651 v 0000 ~ 01251928 v 0000 ~ 01308160 v 0000 ~ 01392237 v 0000 ~ 01574077 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | move over something with pressure; "rub my hands"; "rub oil into her skin" -01250243 35 v 01 pumice 0 002 @ 01249724 v 0000 + 14700438 n 0101 01 + 08 00 | rub with pumice, in order to clean or to smoothen -01250374 35 v 01 gauge 0 001 @ 01249724 v 0000 01 + 08 00 | rub to a uniform size; "gauge bricks" -01250474 35 v 02 puree 0 strain a 003 @ 01249724 v 0000 ;c 00243918 n 0000 + 07651025 n 0101 01 + 11 00 | rub through a strainer or process in an electric blender; "puree the vegetables for the baby" -01250676 35 v 01 rosin 0 002 @ 01249724 v 0000 + 14894140 n 0102 01 + 08 00 | rub rosin onto; "rosin the violin bow" -01250795 35 v 02 sponge_down 0 sponge_off 0 001 @ 01249724 v 0000 01 + 08 00 | clean with a sponge, by rubbing -01250908 35 v 05 rub 1 fray 1 fret 0 chafe 1 scratch 3 004 @ 01205696 v 0000 + 14286549 n 0502 + 14333136 n 0401 + 11459538 n 0102 03 + 01 00 + 04 00 + 10 00 | cause friction; "my sweater scratches" -01251109 35 v 01 worry 1 001 @ 01249724 v 0000 01 + 08 00 | touch or rub constantly; "The old man worried his beads" -01251228 35 v 02 scrub 0 scour 1 009 @ 01249724 v 0000 + 08647457 n 0201 + 10562645 n 0201 + 00251780 n 0203 + 00251780 n 0101 + 10565048 n 0101 + 04156140 n 0103 + 00251780 n 0102 ~ 01251515 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | clean with hard rubbing; "She scrubbed his back" -01251515 35 v 01 holystone 0 002 @ 01251228 v 0000 + 09305229 n 0101 01 + 08 00 | scrub with a holystone; "holystone the ship's deck" -01251651 35 v 02 scour 0 abrade 1 004 @ 01249724 v 0000 + 02239289 a 0201 + 02668393 n 0201 + 08647457 n 0101 02 + 08 00 + 11 00 | rub hard or scrub; "scour the counter tops" -01251828 35 v 02 bedaub 0 besmear 0 001 @ 01332730 v 0000 01 + 21 00 | spread or daub (a surface) -01251928 35 v 04 smear 1 blur 0 smudge 0 smutch 0 005 @ 01249724 v 0000 + 04694441 n 0301 + 04694441 n 0105 ~ 01252130 v 0000 ~ 01252216 v 0000 02 + 08 00 + 11 00 | make a smudge on; soil by smudging -01252130 35 v 01 resmudge 0 001 @ 01251928 v 0000 02 + 08 00 + 11 00 | smudge again -01252216 35 v 01 dust 2 002 @ 01251928 v 0000 + 14857897 n 0102 01 + 08 00 | rub the dust over a surface so as to blur the outlines of a shape; "The artist dusted the charcoal drawing down to a faint image" -01252425 35 v 01 smear 2 004 @ 01534147 v 0000 + 04694441 n 0105 ~ 00218214 v 0000 ~ 01252601 v 0000 02 + 08 00 + 11 00 | stain by smearing or daubing with a dirty substance -01252601 35 v 02 smirch 1 besmirch 0 002 @ 01252425 v 0000 + 04694441 n 0106 01 + 08 00 | smear so as to make dirty or stained -01252730 35 v 01 slime 0 002 @ 01534147 v 0000 + 14956661 n 0102 02 + 10 00 + 11 00 | cover or stain with slime; "The snake slimed his victim" -01252875 35 v 02 muddy 0 muddy_up 0 001 @ 01534147 v 0000 02 + 08 00 + 11 00 | dirty with mud -01252971 35 v 02 smooth 0 smoothen 0 014 * 01249724 v 0000 @ 00356258 v 0000 + 01263924 n 0101 + 03250588 n 0104 ! 01253621 v 0101 ^ 02516255 v 0103 ~ 00194812 v 0000 ~ 01253363 v 0000 ~ 01307020 v 0000 ~ 01307389 v 0000 ~ 01361998 v 0000 ~ 01386433 v 0000 ~ 01386741 v 0000 ~ 01387022 v 0000 02 + 08 00 + 11 00 | make smooth or smoother, as if by rubbing; "smooth the surface of the wood" -01253363 35 v 01 launch 5 001 @ 01252971 v 0000 01 + 08 00 | smoothen the surface of; "launch plaster" -01253468 35 v 01 coarsen 0 001 @ 00126264 v 0000 02 + 08 00 + 11 00 | make or become coarse or coarser; "coarsen the surface"; "Their minds coarsened" -01253621 35 v 01 roughen 0 003 @ 00356258 v 0000 * 01254013 v 0000 ! 01252971 v 0101 02 + 08 00 + 11 00 | make rough or rougher; "roughen the surfaces so they will stick to each other" -01253808 35 v 02 chafe 0 excoriate 0 003 @ 01254013 v 0000 + 14286549 n 0204 + 14333136 n 0101 02 + 08 00 + 11 00 | tear or wear off the skin or make sore by abrading; "This leash chafes the dog's neck" -01254013 35 v 05 abrade 0 corrade 0 abrase 0 rub_down 0 rub_off 0 012 @ 01254324 v 0000 + 13423615 n 0203 + 02239289 a 0101 + 14286549 n 0101 + 13423615 n 0101 + 11460063 n 0102 + 14799244 n 0102 + 02668393 n 0102 + 02668393 n 0101 + 00258695 n 0401 ~ 01253808 v 0000 ~ 01386906 v 0000 01 + 11 00 | wear away -01254324 35 v 02 wear_away 0 wear_off 0 002 @ 00173338 v 0000 ~ 01254013 v 0000 01 + 11 00 | diminish, as by friction; "Erosion wore away the surface" -01254477 35 v 02 slice 0 slice_up 0 006 @ 01552519 v 0000 + 09437241 n 0101 + 07654667 n 0102 + 04237423 n 0101 + 04237287 n 0101 + 00387424 n 0101 02 + 08 00 + 11 00 | cut into slices; "Slice the salami, please" -01254692 35 v 02 amputate 0 cut_off 1 007 * 01552519 v 0000 @ 00173338 v 0000 ;c 00612160 n 0000 + 14550469 n 0101 + 00666350 n 0101 + 09789449 n 0101 ~ 01254912 v 0000 01 + 08 00 | remove surgically; "amputate limbs" -01254912 35 v 01 slough_off 0 002 @ 01254692 v 0000 ;c 00612160 n 0000 01 + 08 00 | separate from surrounding living tissue, as in an abortion -01255057 35 v 02 resect 0 eviscerate 1 003 @ 00173338 v 0000 ;c 00612160 n 0000 + 00691050 n 0101 01 + 08 00 | surgically remove a part of a structure or an organ -01255222 35 v 01 abscise 0 003 @ 01299268 v 0000 + 00392709 n 0101 $ 01255355 v 0000 01 + 08 00 | remove or separate by abscission -01255355 35 v 01 abscise 1 002 $ 01255222 v 0000 @ 01513430 v 0000 01 + 01 00 | shed flowers and leaves and fruit following formation of a scar tissue -01255508 35 v 01 pink 0 001 @ 01552519 v 0000 01 + 08 00 | cut in a zigzag pattern with pinking shears, in sewing -01255624 35 v 01 jag 0 005 @ 01552519 v 0000 + 03591901 n 0101 + 03592055 n 0101 + 09320826 n 0101 ~ 01255807 v 0000 02 + 08 00 + 11 00 | cut teeth into; make a jagged cutting edge -01255807 35 v 01 serrate 0 002 @ 01255624 v 0000 + 14568621 n 0101 02 + 08 00 + 11 00 | make saw-toothed or jag the edge of; "serrate the edges of the teeth" -01255967 35 v 02 carve 0 cut_up 0 005 @ 01552519 v 0000 + 09985470 n 0102 ^ 02467662 v 0106 ~ 01249147 v 0000 ~ 01249294 v 0000 02 + 08 00 + 11 00 | cut to pieces; "Father carved the ham" -01256157 35 v 01 carve 1 007 @ 01552519 v 0000 @ 01659248 v 0000 + 10566072 n 0103 + 00942234 n 0101 ~ 01260685 v 0000 ~ 01551871 v 0000 ~ 01752025 v 0000 01 + 08 00 | form by carving; "Carve a flower from the ice" -01256374 35 v 02 swage 0 upset 0 002 @ 01659248 v 0000 + 04515444 n 0201 01 + 08 00 | form metals with a swage -01256487 35 v 01 step 0 002 @ 01494310 v 0000 + 04315185 n 0101 01 + 08 00 | place (a ship's mast) in its step -01256600 35 v 02 carve 2 chip_at 0 007 @ 01552519 v 0000 ^ 01259458 v 0201 + 10789963 n 0102 + 00937656 n 0102 ~ 01259328 v 0000 ~ 01321895 v 0000 ~ 01322223 v 0000 02 + 08 00 + 11 00 | engrave or cut by chipping away at a surface; "carve one's name into the bark" -01256867 35 v 02 cube 0 dice 0 005 @ 01552519 v 0000 + 03191029 n 0202 + 03191451 n 0201 + 13916721 n 0101 + 13914608 n 0102 02 + 08 00 + 11 00 | cut into cubes; "cube the cheese" -01257049 35 v 01 julienne 0 001 @ 01552519 v 0000 02 + 08 00 + 11 00 | cut into long thin strips; "julienne the potatoes" -01257173 35 v 02 chop 0 hack 2 008 @ 01552519 v 0000 + 03474467 n 0201 + 05283498 n 0101 + 03041632 n 0103 ^ 01257507 v 0101 ^ 01258091 v 0102 ^ 01299268 v 0102 ~ 01257953 v 0000 02 + 08 00 + 11 00 | cut with a hacking tool -01257399 35 v 01 hash 0 002 @ 01258091 v 0000 + 07869391 n 0101 01 + 08 00 | chop up; "hash the potatoes" -01257507 35 v 01 chop_down 0 001 @ 01258302 v 0000 01 + 08 00 | cut down; "George chopped down the cherry tree" -01257621 35 v 01 undercut 3 003 * 01258302 v 0000 @ 01552519 v 0000 + 04507891 n 0101 01 + 08 00 | cut obliquely into (a tree) below the main cut and on the side toward which the tree will fall -01257817 35 v 01 hack 1 002 @ 01552519 v 0000 + 03474467 n 0101 02 + 08 00 + 11 00 | cut away; "he hacked his way through the forest" -01257953 35 v 02 axe 0 ax 0 003 @ 01257173 v 0000 + 02764044 n 0201 + 02764044 n 0102 01 + 08 00 | chop or split with an ax; "axe wood" -01258091 35 v 02 chop 1 chop_up 0 006 @ 01552519 v 0000 + 07653982 n 0101 + 05283498 n 0101 + 03041632 n 0103 ~ 01257399 v 0000 ~ 01560583 v 0000 02 + 08 00 + 11 00 | cut into pieces; "Chop wood"; "chop meat" -01258302 35 v 04 fell 0 drop 3 strike_down 0 cut_down 2 008 > 01970826 v 0000 @ 01552519 v 0000 + 10276045 n 0104 + 00222376 n 0101 ~ 01257507 v 0000 ~ 01258642 v 0000 ~ 01258828 v 0000 ~ 01319738 v 0000 03 + 08 00 + 09 00 + 11 00 | cause to fall by or as if by delivering a blow; "strike down a tree"; "Lightning struck down the hikers" -01258642 35 v 02 poleax 0 poleaxe 0 005 @ 01258302 v 0000 + 03977266 n 0202 + 03977430 n 0202 + 03977266 n 0101 + 03977430 n 0101 02 + 08 00 + 09 00 | fell with or as if with a poleax -01258828 35 v 02 log 0 lumber 0 005 @ 01258302 v 0000 + 14943580 n 0201 + 10276045 n 0103 + 14942762 n 0101 + 00581772 n 0101 01 + 02 00 | cut lumber, as in woods and forests -01259005 35 v 02 nick 0 chip 3 003 @ 01552519 v 0000 + 04692908 n 0202 + 00387897 n 0102 03 + 08 00 + 10 00 + 11 00 | cut a nick into -01259141 35 v 02 nick 1 snick 0 003 @ 01552519 v 0000 + 00387897 n 0203 + 00387897 n 0102 03 + 08 00 + 10 00 + 11 00 | cut slightly, with a razor; "The barber's knife nicked his cheek" -01259328 35 v 01 chisel 0 002 @ 01256600 v 0000 + 03020692 n 0101 02 + 08 00 + 11 00 | carve with a chisel; "chisel the marble" -01259458 35 v 04 chip 0 knap 1 cut_off 2 break_off 0 005 @ 01552519 v 0000 + 09222051 n 0102 + 00377169 n 0101 + 00377169 n 0102 ^ 01256600 v 0102 02 + 08 00 + 11 00 | break a small piece off from; "chip the glass"; "chip a tooth" -01259691 35 v 05 chip 1 chip_off 0 come_off 1 break_away 0 break_off 1 006 @ 01557774 v 0000 + 09222051 n 0102 + 00377169 n 0101 + 00377169 n 0102 ~ 01259951 v 0000 ~ 01260159 v 0000 02 + 01 00 + 04 00 | break off (a piece from a whole); "Her tooth chipped" -01259951 35 v 04 peel_off 1 peel 1 flake_off 0 flake 0 003 @ 01259691 v 0000 + 09222051 n 0403 + 11445564 n 0202 01 + 01 00 | come off in flakes or thin small pieces; "The paint in my house is peeling off" -01260159 35 v 01 exfoliate 3 003 @ 01259691 v 0000 + 11445753 n 0101 + 09425607 n 0103 01 + 01 00 | come off in a very thin piece -01260291 35 v 01 chip 2 002 @ 01659248 v 0000 + 09222051 n 0102 01 + 08 00 | form by chipping; "They chipped their names in the stone" -01260428 35 v 01 hew 0 004 @ 01410223 v 0000 + 10174148 n 0101 ^ 01260685 v 0102 ~ 01260593 v 0000 01 + 08 00 | strike with an axe; cut down, strike; "hew an oak" -01260593 35 v 01 snag 1 002 @ 01260428 v 0000 + 13895745 n 0101 01 + 08 00 | hew jaggedly -01260685 35 v 02 hew 2 hew_out 0 003 @ 01256157 v 0000 + 10174148 n 0101 ~ 01260850 v 0000 01 + 08 00 | make or shape as with an axe; "hew out a path in the rock" -01260850 35 v 02 rough-hew 0 roughcast 0 002 @ 01260685 v 0000 + 04112921 n 0201 01 + 08 00 | hew roughly, without finishing the surface; "rough-hew stone or timber" -01261018 35 v 04 skim 1 skim_off 0 cream_off 0 cream 1 006 @ 00173338 v 0000 ^ 00677445 v 0401 + 09436531 n 0101 + 04229959 n 0101 + 01262574 n 0101 ^ 00677445 v 0102 01 + 08 00 | remove from the surface; "skim cream from the surface of milk" -01261263 35 v 01 skim 3 002 @ 01264283 v 0000 + 09436531 n 0101 01 + 11 00 | coat (a liquid) with a layer -01261371 35 v 01 stucco 0 002 @ 01264283 v 0000 + 15062057 n 0101 01 + 08 00 | coat with stucco; "stucco the ceiling" -01261491 35 v 01 egg 0 003 @ 01264283 v 0000 ;c 00243918 n 0000 + 07840804 n 0101 01 + 08 00 | coat with beaten egg; "egg a schnitzel" -01261628 35 v 02 encrust 0 incrust 0 003 @ 01264283 v 0000 + 09260218 n 0202 + 09260218 n 0103 02 + 08 00 + 11 00 | cover or coat with a crust -01261773 35 v 01 dredge 3 003 @ 01264283 v 0000 ;c 00243918 n 0000 ~ 01261950 v 0000 02 + 08 00 + 21 00 | cover before cooking; "dredge the chicken in flour before frying it" -01261950 35 v 01 flour 0 003 @ 01261773 v 0000 ;c 00243918 n 0000 + 07569106 n 0101 02 + 08 00 + 21 00 | cover with flour; "flour fish or meat before frying it" -01262113 35 v 01 layer 0 005 @ 01659248 v 0000 + 01463259 n 0101 + 06246896 n 0102 + 08591680 n 0101 + 03650173 n 0101 03 + 02 00 + 08 01 + 11 01 | make or form a layer; "layer the different colored sands" -01262321 35 v 02 coat 1 cake 1 003 @ 01207951 v 0000 + 03058107 n 0102 + 03058107 n 0101 01 + 11 00 | form a coat over; "Dirt had coated her face" -01262470 35 v 01 soot 0 002 @ 01264283 v 0000 + 14793533 n 0103 01 + 11 00 | coat with soot -01262564 35 v 02 pare 0 trim 3 004 @ 01552519 v 0000 + 04483925 n 0201 + 10399895 n 0101 ~ 01262813 v 0000 02 + 08 00 + 11 00 | remove the edges from and cut down to the desired size; "pare one's fingernails"; "trim the photograph"; "trim lumber" -01262813 35 v 01 dress c 001 @ 01262564 v 0000 01 + 08 00 | cut down rough-hewn (lumber) to standard thickness and width -01262936 35 v 03 skin 0 peel 0 pare 2 010 @ 01263479 v 0000 + 03890093 n 0301 + 07851054 n 0301 + 07738353 n 0201 + 03904909 n 0201 + 10412784 n 0201 + 07738353 n 0102 + 10607706 n 0101 ~ 01263215 v 0000 ~ 01274657 v 0000 02 + 08 00 + 11 00 | strip the skin off; "pare apples" -01263215 35 v 01 peel_off 0 002 @ 01262936 v 0000 ~ 01263336 v 0000 01 + 08 00 | peel off the outer layer of something -01263336 35 v 01 exfoliate 1 003 @ 01263215 v 0000 + 11445753 n 0101 + 09425607 n 0103 01 + 08 00 | remove the surface, in scales or laminae -01263479 35 v 01 strip 0 005 @ 00173338 v 0000 ~ 01262936 v 0000 ~ 01263784 v 0000 ~ 01263999 v 0000 ~ 01384275 v 0000 02 + 08 00 + 11 00 | remove the surface from; "strip wood" -01263659 35 v 01 strip 1 002 @ 00173338 v 0000 + 10664656 n 0101 01 + 08 00 | strip the cured leaves from; "strip tobacco" -01263784 35 v 02 bark 0 skin 1 002 @ 01263479 v 0000 + 13162297 n 0101 02 + 08 00 + 11 00 | remove the bark of a tree -01263904 35 v 01 bark 1 002 @ 01332730 v 0000 + 13162297 n 0101 01 + 08 00 | cover with bark -01263999 35 v 01 decorticate 0 002 @ 01263479 v 0000 + 00670105 n 0101 02 + 08 00 + 11 00 | remove the outer layer of; "decorticate a tree branch" -01264148 35 v 02 scale 0 descale 0 002 @ 00173338 v 0000 + 01902877 n 0101 02 + 08 00 + 11 00 | remove the scales from; "scale fish" -01264283 35 v 02 coat 0 surface 0 045 @ 01332730 v 0000 + 04362025 n 0201 + 03058107 n 0102 + 04700642 n 0101 + 03058107 n 0101 + 00712225 n 0102 ~ 00136254 v 0000 ~ 00136567 v 0000 ~ 00565481 v 0000 ~ 01261263 v 0000 ~ 01261371 v 0000 ~ 01261491 v 0000 ~ 01261628 v 0000 ~ 01261773 v 0000 ~ 01262470 v 0000 ~ 01265246 v 0000 ~ 01265386 v 0000 ~ 01265499 v 0000 ~ 01265649 v 0000 ~ 01265740 v 0000 ~ 01265880 v 0000 ~ 01265989 v 0000 ~ 01266457 v 0000 ~ 01266604 v 0000 ~ 01266749 v 0000 ~ 01266895 v 0000 ~ 01267098 v 0000 ~ 01269008 v 0000 ~ 01269521 v 0000 ~ 01272457 v 0000 ~ 01335202 v 0000 ~ 01360899 v 0000 ~ 01361240 v 0000 ~ 01362136 v 0000 ~ 01362736 v 0000 ~ 01366926 v 0000 ~ 01394938 v 0000 ~ 01395049 v 0000 ~ 01603303 v 0000 ~ 01603418 v 0000 ~ 01610278 v 0000 ~ 01615602 v 0000 ~ 01615695 v 0000 ~ 01615789 v 0000 ~ 01615906 v 0000 02 + 08 00 + 11 00 | put a coat on; cover the surface of; furnish with a surface; "coat the cake with chocolate" -01265246 35 v 01 refinish 0 002 @ 01264283 v 0000 + 10514962 n 0101 01 + 08 00 | give a new surface; "refinish the dining room furniture" -01265386 35 v 01 brush_on 0 001 @ 01264283 v 0000 01 + 08 00 | apply with a brush; "Brush butter on the roast" -01265499 35 v 03 patinate 0 patinize 0 patinise 0 003 @ 01264283 v 0000 + 03899612 n 0201 + 03899612 n 0101 02 + 08 00 + 11 00 | coat with a patina -01265649 35 v 01 resurface 0 001 @ 01264283 v 0000 01 + 08 00 | cover with a new surface -01265740 35 v 01 crumb 0 003 @ 01264283 v 0000 ;c 00243918 n 0000 + 07622261 n 0101 01 + 08 00 | coat with bread crumbs; "crumb a cutlet" -01265880 35 v 01 copper 0 002 @ 01264283 v 0000 + 14635722 n 0101 01 + 08 00 | coat with a layer of copper -01265989 35 v 01 finish 0 007 @ 01264283 v 0000 + 04700642 n 0102 + 09619605 n 0101 + 09619452 n 0101 + 04700642 n 0103 ~ 01266269 v 0000 ~ 01266375 v 0000 01 + 08 00 | provide with a finish; "The carpenter finished the table beautifully"; "this shirt is not finished properly" -01266269 35 v 01 dress 2 001 @ 01265989 v 0000 01 + 08 00 | put a finish on; "dress the surface smooth" -01266375 35 v 01 broom 1 001 @ 01265989 v 0000 01 + 08 00 | finish with a broom -01266457 35 v 02 bonderize 0 bonderise 0 001 @ 01264283 v 0000 01 + 08 00 | coat with a substance that will prevent corrosion; "bonderize steel" -01266604 35 v 01 blacktop 0 003 @ 01264283 v 0000 + 14976871 n 0102 + 14976871 n 0101 01 + 08 00 | coat with blacktop; "blacktop the driveway" -01266749 35 v 01 foliate 0 003 @ 01264283 v 0000 + 03375694 n 0101 + 00713135 n 0101 01 + 08 00 | coat or back with metal foil; "foliate glass" -01266895 35 v 02 galvanize 0 galvanise 0 006 @ 01264283 v 0000 + 00713250 n 0202 + 10118382 n 0202 + 00713250 n 0101 + 10118587 n 0101 + 10118587 n 0202 01 + 11 00 | cover with zinc; "galvanize steel" -01267098 35 v 01 pave 0 012 @ 01264283 v 0000 + 14977504 n 0102 + 04215402 n 0102 + 03900750 n 0101 + 13315518 n 0101 + 14977504 n 0101 + 03900750 n 0102 + 00717081 n 0101 ~ 01267475 v 0000 ~ 01267611 v 0000 ~ 01267742 v 0000 ~ 01267866 v 0000 01 + 08 00 | cover with a material such as stone or concrete to make suitable for vehicle traffic; "pave the roads in the village" -01267475 35 v 02 cobble 0 cobblestone 0 003 @ 01267098 v 0000 + 03059528 n 0101 + 09933098 n 0101 01 + 08 00 | pave with cobblestones -01267611 35 v 01 hard_surface 0 001 @ 01267098 v 0000 01 + 08 00 | cover with asphalt or a similar surface; "hard-surface roads" -01267742 35 v 01 causeway 0 002 @ 01267098 v 0000 + 02986920 n 0101 01 + 08 00 | pave a road with cobblestones or pebbles -01267866 35 v 01 asphalt 0 002 @ 01267098 v 0000 + 14769465 n 0101 01 + 08 00 | cover with tar or asphalt; "asphalt the driveway" -01267998 35 v 01 butter 0 002 @ 01332730 v 0000 + 07848338 n 0101 01 + 08 00 | spread butter on; "butter bread" -01268112 35 v 02 wallpaper 0 paper 1 006 @ 01332730 v 0000 + 14974264 n 0201 + 10397001 n 0202 + 00718573 n 0201 + 15093938 n 0101 + 10765189 n 0101 01 + 08 00 | cover with wallpaper -01268297 35 v 01 canvas 0 001 @ 01332730 v 0000 01 + 08 00 | cover with canvas; "She canvassed the walls of her living room so as to conceal the ugly cracks" -01268457 35 v 01 paper 0 002 @ 01332730 v 0000 + 14974264 n 0101 01 + 08 00 | cover with paper; "paper the box" -01268571 35 v 01 oil 0 003 @ 01332730 v 0000 + 14966667 n 0101 + 10374415 n 0101 01 + 08 00 | cover with oil, as if by rubbing; "oil the wooden surface" -01268726 35 v 01 wax 0 004 @ 01332730 v 0000 + 15094294 n 0101 + 00719388 n 0101 ~ 01268870 v 0000 01 + 08 00 | cover with wax; "wax the car" -01268870 35 v 01 beeswax 0 002 @ 01268726 v 0000 + 15094824 n 0101 01 + 08 00 | cover with beeswax; "Chris beeswaxed the kitchen table" -01269008 35 v 02 varnish 0 seal 4 008 @ 01264283 v 0000 + 04159545 n 0201 + 14705718 n 0201 + 14705718 n 0202 + 00830099 n 0202 + 10746460 n 0101 + 04521987 n 0101 ~ 01270589 v 0000 01 + 08 00 | cover with varnish -01269224 35 v 01 veneer 0 003 @ 01332730 v 0000 + 04525417 n 0101 + 00927161 n 0101 01 + 08 00 | cover with veneer; "veneer the furniture to protect it" -01269379 35 v 01 grease 0 003 @ 01332730 v 0000 + 14890945 n 0101 + 14498096 n 0106 01 + 08 00 | lubricate with grease; "grease the wheels" -01269521 35 v 01 glaze 0 003 @ 01264283 v 0000 + 04701039 n 0101 ^ 02158034 v 0102 01 + 08 00 | coat with a glaze; "the potter glazed the dishes"; "glaze the bread with eggwhite" -01269702 35 v 01 whitewash 0 003 @ 01269844 v 0000 + 04581102 n 0101 ~ 01269988 v 0000 01 + 08 00 | cover with whitewash; "whitewash walls" -01269844 35 v 01 wash a 003 @ 01332730 v 0000 + 04553389 n 0101 ~ 01269702 v 0000 01 + 08 00 | apply a thin coating of paint, metal, etc., to -01269988 35 v 01 calcimine 0 002 @ 01269702 v 0000 + 02938321 n 0101 01 + 08 00 | cover with calcimine; "calcimine the walls" -01270116 35 v 01 water-wash 0 001 @ 01535246 v 0000 01 + 08 00 | wash with water -01270199 35 v 02 wash 2 rinse 2 010 $ 01535246 v 0000 $ 01536344 v 0000 $ 00557686 v 0000 @ 01438681 v 0000 + 00256309 n 0201 + 02533810 a 0101 + 03648219 n 0102 + 10768903 n 0101 + 04554684 n 0101 ~ 01270463 v 0000 01 + 08 00 | clean with some chemical process -01270463 35 v 01 elute 0 002 @ 01270199 v 0000 + 13473836 n 0101 01 + 08 00 | wash out with a solvent, as in chromatography -01270589 35 v 02 shellac 0 shellack 0 003 @ 01269008 v 0000 + 14701628 n 0101 + 04191150 n 0101 01 + 08 00 | cover with shellac; "She wanted to shellac the desk to protect it from water spots" -01270784 35 v 01 line 0 009 @ 01332730 v 0000 + 03673270 n 0101 + 03673270 n 0102 + 03673767 n 0101 + 00827240 n 0101 ~ 01271064 v 0000 ~ 01271936 v 0000 ~ 01272234 v 0000 ~ 01272349 v 0000 03 + 08 00 + 11 00 + 21 00 | cover the interior of; "line the gloves"; "line a chimney" -01271064 35 v 01 reline 0 001 @ 01270784 v 0000 01 + 08 00 | provide with a new lining; "the old fur coat must be relined" -01271189 35 v 01 face 1 008 @ 01332730 v 0000 + 03313456 n 0101 + 03315990 n 0101 + 03315644 n 0101 + 00827379 n 0102 ~ 01271454 v 0000 ~ 01271778 v 0000 $ 01271936 v 0000 01 + 08 00 | cover the front or surface of; "The building was faced with beautiful stones" -01271454 35 v 01 revet 0 003 @ 01271189 v 0000 + 04085873 n 0101 $ 01271658 v 0000 01 + 08 00 | face with a layer of stone or concrete or other supporting material so as to retain; "face an embankment" -01271658 35 v 01 revet 1 003 $ 01271454 v 0000 @ 01654628 v 0000 + 04085873 n 0101 01 + 02 00 | construct a revetment -01271778 35 v 01 reface 1 002 @ 01271189 v 0000 ;c 00911048 n 0000 01 + 08 00 | provide with a new facing; "The building was refaced with beautiful stones" -01271936 35 v 01 face 0 004 $ 01271189 v 0000 @ 01270784 v 0000 + 03315805 n 0101 ~ 01272139 v 0000 01 + 08 00 | line the edge (of a garment) with a different material; "face the lapels of the jacket" -01272139 35 v 01 reface 0 001 @ 01271936 v 0000 01 + 08 00 | put a new facing on (a garment) -01272234 35 v 01 crib 0 001 @ 01270784 v 0000 01 + 08 00 | line with beams or planks; "crib a construction hole" -01272349 35 v 01 babbitt 0 002 @ 01270784 v 0000 + 14772007 n 0102 01 + 08 00 | line with a Babbitt metal -01272457 35 v 01 tar 0 002 @ 01264283 v 0000 + 14911704 n 0102 01 + 08 00 | coat with tar; "tar the roof"; "tar the roads" -01272582 35 v 01 tar-and-feather 0 002 * 01332730 v 0000 @ 02499629 v 0000 01 + 09 00 | smear the body of (someone) with tar and feathers; done in some societies as punishment; "The thief was tarred and feathered" -01272798 35 v 01 feather 0 002 @ 01332730 v 0000 + 01896031 n 0101 02 + 08 00 + 11 00 | cover or fit with feathers -01272915 35 v 01 feather 1 001 @ 01291069 v 0000 01 + 08 00 | join tongue and groove, in carpentry -01273016 35 v 01 stamp 1 005 @ 01531742 v 0000 + 06855207 n 0101 ~ 00735389 v 0000 ~ 01273632 v 0000 ~ 01274104 v 0000 02 + 08 00 + 11 00 | to mark, or produce an imprint in or on something; "a man whose name is permanently stamped on our maps" -01273263 35 v 01 stripe 0 004 @ 00508032 v 0000 + 04683136 n 0101 + 02784732 n 0103 + 00264088 n 0101 02 + 08 00 + 11 00 | mark with stripes -01273406 35 v 01 speck 0 002 @ 00508032 v 0000 + 04681230 n 0101 01 + 11 00 | produce specks in or on; "speck the cloth" -01273529 35 v 01 bespot 0 001 @ 00508032 v 0000 02 + 08 00 + 11 00 | mark with, or as if with, spots -01273632 35 v 02 rubberstamp 0 handstamp 0 002 @ 01273016 v 0000 + 03488887 n 0201 01 + 08 00 | stamp with a rubber stamp, usually an indication of official approval on a document -01273814 35 v 01 stamp 2 003 @ 01356370 v 0000 + 06796119 n 0103 ~ 01273974 v 0000 02 + 08 00 + 11 00 | affix a stamp to; "Are the letters properly stamped?" -01273974 35 v 01 meter 0 001 @ 01273814 v 0000 02 + 08 00 + 11 00 | stamp with a meter indicating the postage; "meter the mail" -01274104 35 v 02 postmark 0 frank 0 002 @ 01273016 v 0000 + 07270718 n 0101 01 + 08 00 | stamp with a postmark to indicate date and time of mailing -01274254 35 v 01 sideswipe 0 001 @ 01410223 v 0000 01 + 08 00 | strike from the side -01274341 35 v 01 circumcise 0 004 * 01552519 v 0000 @ 00173338 v 0000 + 01031194 n 0101 + 00395654 n 0101 01 + 09 00 | cut the foreskin off male babies or teenage boys; "During the bris, the baby boy is circumcised" -01274559 35 v 01 circumcise 1 001 @ 01552519 v 0000 01 + 09 00 | cut the skin over the clitoris -01274657 35 v 01 flay 0 001 @ 01262936 v 0000 02 + 08 00 + 09 00 | strip the skin off -01274745 35 v 01 scarify 0 002 @ 01274971 v 0000 + 14363483 n 0101 02 + 08 00 + 09 00 | puncture and scar (the skin), as for purposes or tribal identification or rituals; "The men in some African tribes scarify their faces" -01274971 35 v 01 puncture 0 005 @ 01441100 v 0000 + 04024396 n 0101 + 00942988 n 0101 + 07314658 n 0101 ~ 01274745 v 0000 02 + 08 00 + 11 00 | pierce with a pointed object; make a hole into; "puncture a tire" -01275182 35 v 01 puncture 2 002 @ 01617192 v 0000 + 04024396 n 0101 01 + 08 00 | make by piercing; "puncture a hole" -01275301 35 v 01 riddle 0 001 @ 01441100 v 0000 02 + 08 00 + 11 00 | pierce with many holes; "The bullets riddled his body" -01275427 35 v 01 scarify 1 001 @ 01275516 v 0000 01 + 08 00 | break up; "scarify soil" -01275516 35 v 01 loosen 0 003 @ 00126264 v 0000 ~ 01275427 v 0000 ~ 01391806 v 0000 02 + 08 00 + 11 00 | make less dense; "loosen the soil" -01275658 35 v 01 scarify 2 001 @ 01275762 v 0000 01 + 08 00 | scratch the surface of; "scarify seeds" -01275762 35 v 03 score 0 nock 0 mark 1 010 @ 01276970 v 0000 + 06798750 n 0301 + 04681387 n 0303 + 13905405 n 0101 + 10562283 n 0101 ~ 01275658 v 0000 ~ 01276080 v 0000 ~ 01276192 v 0000 ~ 01276361 v 0000 $ 01551195 v 0000 02 + 08 00 + 11 00 | make small marks into the surface of; "score the clay before firing it" -01276080 35 v 01 scotch 0 002 @ 01275762 v 0000 + 13905405 n 0102 01 + 08 00 | make a small cut or score into -01276192 35 v 01 scribe 0 003 @ 01275762 v 0000 + 04155457 n 0102 + 04155457 n 0101 02 + 08 00 + 11 00 | score a line on with a pointed instrument, as in metalworking -01276361 35 v 01 line 2 008 @ 01275762 v 0000 + 13905792 n 0106 + 06799897 n 0101 + 08612786 n 0102 + 00263813 n 0101 ~ 00509349 v 0000 ~ 01276593 v 0000 ~ 01276800 v 0000 01 + 11 00 | mark with lines; "sorrow had lined his face" -01276593 35 v 01 hatch 4 004 @ 01276361 v 0000 + 04681797 n 0101 + 04681797 n 0104 + 04681797 n 0102 01 + 08 00 | draw, cut, or engrave lines, usually parallel, on metal, wood, or paper; "hatch the sheet" -01276800 35 v 01 crisscross 0 002 @ 01276361 v 0000 + 04681387 n 0101 01 + 11 00 | mark with or consist of a pattern of crossed lines; "wrinkles crisscrossed her face" -01276970 35 v 01 notch 0 006 @ 01555742 v 0000 + 00387897 n 0101 + 03832405 n 0101 + 13905275 n 0101 ~ 01275762 v 0000 ~ 01277173 v 0000 02 + 08 00 + 11 00 | cut or make a notch into; "notch the rope" -01277173 35 v 01 indent 2 003 @ 01276970 v 0000 + 00406939 n 0101 ~ 01277305 v 0000 01 + 08 00 | notch the edge of or make jagged -01277305 35 v 01 recess 0 002 @ 01277173 v 0000 + 13872421 n 0101 01 + 08 00 | make a recess in; "recess the piece of wood" -01277431 35 v 03 furrow 0 rut 0 groove 0 005 @ 01309701 v 0000 + 13893786 n 0301 + 05222591 n 0301 + 13894154 n 0201 + 03406966 n 0101 02 + 08 00 + 11 00 | hollow out in the form of a furrow or groove; "furrow soil" -01277649 35 v 03 furrow 2 chamfer 0 chase 2 002 @ 01552519 v 0000 + 02833576 n 0203 02 + 08 00 + 11 00 | cut a furrow into a columns -01277784 35 v 03 furrow 1 wrinkle 2 crease 1 004 @ 01277974 v 0000 + 13905792 n 0303 + 13905792 n 0201 + 13905792 n 0102 02 + 08 00 + 11 00 | make wrinkled or creased; "furrow one's brow" -01277974 35 v 03 fold 0 fold_up 0 turn_up 0 016 @ 00356258 v 0000 + 03145843 n 0302 + 13907415 n 0101 + 00406612 n 0101 + 03376279 n 0101 + 00406612 n 0102 ! 01579813 v 0101 ~ 01217780 v 0000 ~ 01277784 v 0000 ~ 01278427 v 0000 ~ 01387164 v 0000 ~ 01387301 v 0000 ~ 01390327 v 0000 ~ 01457206 v 0000 ~ 01914657 v 0000 ~ 02083497 v 0000 02 + 08 00 + 11 00 | bend or lay so that one part covers the other; "fold up the newspaper"; "turn up your collar" -01278427 35 v 07 wrinkle 0 ruckle 0 crease 0 crinkle 0 scrunch 0 scrunch_up 0 crisp 0 006 @ 01277974 v 0000 + 13905792 n 0404 + 13905792 n 0303 + 13905792 n 0101 ~ 01278817 v 0000 ~ 01279015 v 0000 03 + 01 00 + 08 00 + 11 00 | make wrinkles or creases on a smooth surface; make a pressed, folded or wrinkled line in; "The dress got wrinkled"; "crease the paper like this to make a crane" -01278817 35 v 05 pucker 0 rumple 1 cockle 0 crumple 0 knit 0 002 $ 00476965 v 0000 @ 01278427 v 0000 02 + 08 00 + 01 01 | to gather something into small wrinkles or folds; "She puckered her lips" -01279015 35 v 03 pucker 2 ruck 0 ruck_up 0 003 @ 01278427 v 0000 + 13907847 n 0202 + 13907847 n 0101 01 + 01 00 | become wrinkled or drawn together; "her lips puckered" -01279186 35 v 02 buckle 1 crumple 1 001 @ 01989053 v 0000 02 + 01 00 + 02 00 | fold or collapse; "His knees buckled" -01279305 35 v 02 purse 0 wrinkle 1 002 @ 01279474 v 0000 + 13905792 n 0201 02 + 01 00 + 08 00 | gather or contract into wrinkles or folds; pucker; "purse ones's lips" -01279474 35 v 01 contract 0 003 @ 00241038 v 0000 + 00365471 n 0101 ~ 01279305 v 0000 01 + 08 00 | make smaller; "The heat contracted the woollen garment" -01279631 35 v 02 indent 0 dent 0 005 @ 01280014 v 0000 * 01400044 v 0000 + 13904843 n 0205 + 04693384 n 0201 + 13537894 n 0103 02 + 08 00 + 11 00 | make a depression into; "The bicycle dented my car" -01279833 35 v 01 indent 1 001 @ 01552519 v 0000 01 + 08 00 | cut or tear along an irregular line so that the parts can later be matched for authentication; "indent the documents" -01280014 35 v 05 flex 2 bend 0 deform 1 twist 2 turn b 013 @ 00140967 v 0000 + 07358060 n 0301 + 00404726 n 0302 + 01022367 a 0201 + 02830157 n 0201 + 13907415 n 0206 ! 01281069 v 0201 + 01022064 a 0101 ~ 01279631 v 0000 ~ 01280645 v 0000 ~ 01280808 v 0000 ~ 01280958 v 0000 ~ 01281184 v 0000 03 + 01 00 + 08 00 + 11 00 | cause (a plastic object) to assume a crooked or angular form; "bend the rod"; "twist the dough into a braid"; "the strong man could turn an iron bar" -01280488 35 v 02 flex 3 bend 8 003 @ 01831531 v 0000 + 14035909 n 0101 + 00405360 n 0102 01 + 08 00 | bend a joint; "flex your wrists"; "bend your knees" -01280645 35 v 01 incurvate 0 003 @ 01280014 v 0000 + 13864965 n 0103 + 00406234 n 0101 02 + 08 00 + 11 00 | cause to curve inward; "gravity incurvates the rays" -01280808 35 v 01 gnarl 0 002 @ 01280014 v 0000 + 13885836 n 0102 01 + 11 00 | twist into a state of deformity; "The wind has gnarled this old tree" -01280958 35 v 01 crank 1 002 @ 01280014 v 0000 + 03127024 n 0101 01 + 08 00 | bend into the shape of a crank -01281069 35 v 01 unbend 0 002 @ 01368597 v 0000 ! 01280014 v 0102 01 + 08 00 | free from flexure; "unbend a bow" -01281184 35 v 02 convolve 0 convolute 0 003 @ 01280014 v 0000 + 00404959 n 0201 + 00404959 n 0101 03 + 01 00 + 08 00 + 11 00 | curl, wind, or twist together -01281343 35 v 01 gouge_out 0 001 @ 01554799 v 0000 02 + 08 00 + 11 00 | make gouges into a surface; "The woman's spiked heels gouged out the wooden floor" -01281500 35 v 01 rabbet 0 002 @ 01554799 v 0000 + 04036776 n 0101 01 + 08 00 | cut a rectangular groove into -01281611 35 v 02 gouge 0 force_out 0 004 @ 00090708 v 0000 + 10140051 n 0101 + 00942900 n 0101 ^ 01281343 v 0101 01 + 08 00 | force with the thumb; "gouge out his eyes" -01281782 35 v 02 rout 0 gouge 1 003 @ 01282545 v 0000 + 04693384 n 0203 + 03449309 n 0201 02 + 08 00 + 11 00 | make a groove in -01281912 35 v 02 scallop 0 scollop 0 001 @ 01282545 v 0000 01 + 08 00 | form scallops in; "scallop the meat" -01282023 35 v 01 hole 0 003 @ 01282545 v 0000 + 09304465 n 0101 + 03526198 n 0101 02 + 08 00 + 11 00 | make holes in -01282142 35 v 02 suck_in 1 draw_in 1 002 @ 01282545 v 0000 $ 01540693 v 0000 01 + 08 00 | draw in as if by suction; "suck in your cheeks and stomach" -01282294 35 v 01 scoop_out 0 001 @ 01282545 v 0000 02 + 08 00 + 11 00 | hollow out with a scoop; "scoop out a melon" -01282413 35 v 03 rout 1 root 0 rootle 0 001 @ 01309701 v 0000 01 + 11 00 | dig with the snout; "the pig was rooting for truffles" -01282545 35 v 03 hollow 0 hollow_out 0 core_out 0 012 @ 00449692 v 0000 + 09304750 n 0102 ~ 01281782 v 0000 ~ 01281912 v 0000 ~ 01282023 v 0000 ~ 01282142 v 0000 ~ 01282294 v 0000 ~ 01282888 v 0000 ~ 01283033 v 0000 ~ 01311103 v 0000 ~ 01311378 v 0000 ~ 01590523 v 0000 02 + 08 00 + 11 00 | remove the interior of; "hollow out a tree trunk" -01282888 35 v 02 cavern 0 cavern_out 0 003 @ 01282545 v 0000 + 09239451 n 0101 + 09239302 n 0101 01 + 08 00 | hollow out as if making a cavern -01283033 35 v 02 cave 0 undermine 0 002 @ 01282545 v 0000 ~ 01310555 v 0000 02 + 08 00 + 11 00 | hollow out as if making a cave or opening; "The river was caving the banks" -01283208 35 v 02 wrap 0 wrap_up 0 013 @ 01332730 v 0000 + 04605726 n 0102 + 04605726 n 0103 + 03817647 n 0104 + 04605446 n 0102 + 04369025 n 0102 ! 01284271 v 0101 ~ 01283611 v 0000 ~ 01283746 v 0000 ~ 01283893 v 0000 ~ 01284002 v 0000 ~ 01284160 v 0000 ~ 01300437 v 0000 03 + 08 00 + 20 00 + 21 00 | arrange or fold as a cover or protection; "wrap the baby before taking her out"; "Wrap the present" -01283611 35 v 01 do_up 0 001 @ 01283208 v 0000 01 + 08 00 | wrap for decorative purposes; "The gift was done up in pretty red paper" -01283746 35 v 01 parcel 0 004 @ 01283208 v 0000 + 08008017 n 0104 + 03871083 n 0102 + 00386164 n 0101 01 + 08 00 | make into a wrapped container -01283893 35 v 01 cere 0 001 @ 01283208 v 0000 02 + 08 00 + 09 00 | wrap up in a cerecloth; "cere a corpse" -01284002 35 v 01 shrinkwrap 0 001 @ 01283208 v 0000 01 + 08 00 | wrap something tightly with heated plastic that shrinks upon cooling; "shrinkwrap the CDs" -01284160 35 v 01 gift-wrap 0 002 @ 01283208 v 0000 + 03436549 n 0101 01 + 08 00 | wrap (a gift) attractively -01284271 35 v 02 unwrap 0 undo 3 003 @ 01339505 v 0000 + 10737431 n 0201 ! 01283208 v 0101 01 + 08 00 | remove the outer cover or wrapping of; "Let's unwrap the gifts!"; "undo the parcel" -01284461 35 v 03 untie 0 unbrace 0 unlace 0 005 @ 01519977 v 0000 + 10737431 n 0104 ! 01285440 v 0101 ~ 01285159 v 0000 ~ 01303954 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | undo the ties of; "They untied the prisoner" -01284683 35 v 02 gag 7 muzzle 3 003 @ 01285440 v 0000 + 03410740 n 0202 + 03410740 n 0101 01 + 08 00 | tie a gag around someone's mouth in order to silence them; "The burglars gagged the home owner and tied him to a chair" -01284908 35 v 03 untie 1 undo 1 loosen 5 006 @ 00126264 v 0000 + 00147862 n 0301 + 10737431 n 0201 + 00149262 n 0202 + 10737431 n 0104 + 00149262 n 0101 01 + 08 00 | cause to become loose; "undo the shoelace"; "untie the knot"; "loosen the necktie" -01285159 35 v 02 unloose 0 unloosen 0 001 @ 01284461 v 0000 02 + 08 00 + 09 00 | loosen the ties of; "unloose your sneakers" -01285286 35 v 01 retie 0 001 @ 01285440 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | tie again or anew; "retie the string and make it strong enough now" -01285440 35 v 02 tie 0 bind 1 024 @ 01340439 v 0000 + 00161684 a 0201 + 02840361 n 0201 + 04433185 n 0101 + 03673971 n 0103 + 10710403 n 0101 + 04434059 n 0101 + 00149084 n 0101 ! 01284461 v 0101 ^ 01286913 v 0101 ^ 01286913 v 0102 ~ 01284683 v 0000 ~ 01285286 v 0000 ~ 01286038 v 0000 ~ 01286290 v 0000 ~ 01286674 v 0000 ~ 01287537 v 0000 ~ 01287797 v 0000 ~ 01289155 v 0000 ~ 01289492 v 0000 ~ 01300144 v 0000 ~ 01303707 v 0000 ~ 01304342 v 0000 ~ 01521603 v 0000 05 + 08 00 + 09 00 + 15 00 + 20 00 + 21 00 | fasten or secure with a rope, string, or cord; "They tied their victim to the chair" -01286038 35 v 02 tie_up 1 bind_off 0 002 @ 01285440 v 0000 ;c 03624966 n 0000 01 + 08 00 | finish the last row -01286151 35 v 01 rig 0 002 @ 01340439 v 0000 + 04091097 n 0101 01 + 21 00 | connect or secure to; "They rigged the bomb to the ignition" -01286290 35 v 01 loop 1 002 @ 01285440 v 0000 + 03132438 n 0103 01 + 08 00 | fasten or join with a loop; "He looped the watch through his belt" -01286436 35 v 01 chain_up 0 001 @ 01286913 v 0000 02 + 08 00 + 09 00 | tie up with chains; "chain up the prisoners" -01286554 35 v 01 bitt 0 002 @ 01340439 v 0000 + 02864593 n 0102 01 + 08 00 | secure with a bitt; "bitt the ship line" -01286674 35 v 01 cord 1 002 @ 01285440 v 0000 + 03106110 n 0101 01 + 08 00 | bind or tie with a cord -01286777 35 v 01 latch 0 003 @ 01340439 v 0000 + 03644858 n 0101 + 03645011 n 0101 01 + 08 00 | fasten with a latch; "latch the door" -01286913 35 v 04 tie_down 0 tie_up 0 bind 7 truss 2 007 * 01340439 v 0000 @ 01301410 v 0000 + 00161684 a 0301 ~ 01286436 v 0000 ~ 01287242 v 0000 ~ 01287388 v 0000 ~ 01287929 v 0000 02 + 08 00 + 09 00 | secure with or as if with ropes; "tie down the prisoners"; "tie up the old newspapers and bring them to the recycling shed" -01287242 35 v 03 faggot 0 fagot 0 faggot_up 0 001 @ 01286913 v 0000 01 + 08 00 | bind or tie up in or as if in a faggot; "faggot up the sticks" -01287388 35 v 02 faggot 1 fagot 1 002 @ 01286913 v 0000 ;c 06125698 n 0000 01 + 08 00 | fasten together rods of iron in order to heat or weld them -01287537 35 v 01 lash_together 0 001 @ 01285440 v 0000 02 + 08 00 + 09 00 | bind together with a cord or rope; "Lash together these barrels!" -01287681 35 v 01 garter 0 002 @ 01340439 v 0000 + 03421117 n 0101 01 + 08 00 | fasten with or as if with a garter -01287797 35 v 01 truss 1 002 @ 01285440 v 0000 ;c 00243918 n 0000 01 + 08 00 | tie the wings and legs of a bird before cooking it -01287929 35 v 01 hog-tie 0 001 @ 01286913 v 0000 01 + 09 00 | tie together somebody's limbs; "The prisoner was hog-tied" -01288052 35 v 02 fetter 0 shackle 0 004 @ 01301410 v 0000 + 04181228 n 0201 + 03330947 n 0101 ~ 01288201 v 0000 01 + 09 00 | restrain with fetters -01288201 35 v 03 manacle 0 cuff 1 handcuff 0 004 @ 01288052 v 0000 + 03484576 n 0301 + 03484576 n 0202 + 03484576 n 0104 01 + 09 00 | confine or restrain with or as if with manacles or handcuffs; "The police handcuffed the suspect at the scene of the crime" -01288461 35 v 01 enchain 0 001 @ 01301410 v 0000 01 + 08 00 | restrain or bind with chains -01288554 35 v 01 unchain 1 001 @ 02421374 v 0000 02 + 09 00 + 10 00 | make free -01288636 35 v 01 chain 0 003 @ 01340439 v 0000 + 02999410 n 0101 ! 01288808 v 0101 03 + 08 00 + 09 00 + 21 00 | fasten or secure with chains; "Chain the chairs together" -01288808 35 v 01 unchain 0 002 @ 01344293 v 0000 ! 01288636 v 0101 02 + 08 00 + 09 00 | remove the chains from -01288921 35 v 01 cable 0 001 @ 01340439 v 0000 02 + 08 00 + 21 00 | fasten with a cable; "cable trees" -01289026 35 v 01 picket 0 002 @ 01340439 v 0000 + 03929952 n 0101 02 + 08 00 + 21 00 | fasten with a picket; "picket the goat" -01289155 35 v 02 rope 0 leash 0 004 @ 01285440 v 0000 + 03652932 n 0201 + 04108268 n 0101 ^ 00768630 v 0101 02 + 08 00 + 21 00 | fasten with a rope; "rope the bag securely" -01289330 35 v 01 rope_up 0 001 @ 01340439 v 0000 01 + 09 00 | attach to one another, for safety; "The mountaineers roped up when they started the final ascent" -01289492 35 v 01 strap 0 004 @ 01285440 v 0000 + 04333129 n 0101 ! 01289871 v 0101 ~ 01289633 v 0000 02 + 20 00 + 21 00 | tie with a strap -01289633 35 v 02 hopple 0 hobble 0 002 @ 01289492 v 0000 + 03330947 n 0202 01 + 08 00 | strap the foreleg and hind leg together on each side (of a horse) in order to keep the legs on the same side moving in unison; "hobble race horses" -01289871 35 v 01 unstrap 0 002 @ 01519977 v 0000 ! 01289492 v 0101 04 + 08 00 + 09 00 + 20 00 + 21 00 | remove the strap or straps from -01290009 35 v 01 tether 0 002 @ 01296462 v 0000 + 03652932 n 0102 02 + 08 00 + 21 00 | tie with a tether; "tether horses" -01290133 35 v 01 fasten 3 001 @ 01296462 v 0000 01 + 15 00 | attach to; "They fastened various nicknames to each other" -01290255 35 v 01 attach 2 005 @ 01205696 v 0000 + 00161431 a 0101 + 02755352 n 0101 ^ 02705535 v 0102 ~ 01357141 v 0000 01 + 01 00 | be attached; be in contact with -01290422 35 v 01 attach 0 010 @ 01291069 v 0000 + 00161431 a 0101 + 02755352 n 0101 ! 01299758 v 0101 ^ 02716165 v 0101 ~ 01222016 v 0000 ~ 01290730 v 0000 ~ 01343892 v 0000 ~ 01356750 v 0000 ~ 01538785 v 0000 03 + 04 00 + 12 00 + 22 00 | become attached; "The spider's thread attached to the window sill" -01290730 35 v 01 implant 2 001 @ 01290422 v 0000 01 + 01 00 | become attached to and embedded in the uterus; "The egg fertilized in vitro implanted in the uterus of the birth mother with no further complications" -01290945 35 v 01 blow_off 0 001 @ 01299758 v 0000 02 + 01 00 + 04 00 | come off due to an explosion or other strong force -01291069 35 v 02 join 0 conjoin 0 018 @ 01354673 v 0000 + 00563648 a 0201 + 00145218 n 0101 ! 01294182 v 0101 ~ 01272915 v 0000 ~ 01290422 v 0000 ~ 01291527 v 0000 ~ 01292366 v 0000 ~ 01428853 v 0000 ~ 01492283 v 0000 ~ 01530678 v 0000 ~ 01560034 v 0000 ~ 01560184 v 0000 ~ 01590171 v 0000 ~ 01595260 v 0000 ~ 01595830 v 0000 ~ 01667449 v 0000 ~ 01672014 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | make contact or come together; "The two roads join here" -01291527 35 v 01 cross-link 0 003 @ 01291069 v 0000 + 11436929 n 0102 + 11436929 n 0101 01 + 08 00 | join by creating covalent bonds (of adjacent chains of a polymer or protein) -01291707 35 v 01 miter 1 002 @ 01295275 v 0000 + 03774461 n 0103 01 + 08 00 | fit together in a miter joint -01291817 35 v 01 ply 3 001 @ 01295275 v 0000 01 + 08 00 | join together as by twisting, weaving, or molding; "ply fabric" -01291941 35 v 02 close_up 1 close f 002 @ 01295275 v 0000 + 00281462 n 0201 01 + 08 00 | unite or bring into contact or bring together the edges of; "close the circuit"; "close a wound"; "close a book"; "close up an umbrella" -01292169 35 v 02 anastomose 0 inosculate 0 003 @ 01295275 v 0000 + 05249420 n 0202 $ 01292366 v 0000 01 + 08 00 | cause to join or open into each other by anastomosis; "anastomose blood vessels" -01292366 35 v 02 anastomose 1 inosculate 1 002 $ 01292169 v 0000 @ 01291069 v 0000 01 + 01 00 | come together or open into each other; "the blood vessels anastomose" -01292534 35 v 01 ground 2 004 @ 01354673 v 0000 + 03462747 n 0101 + 00148836 n 0101 ~ 01292727 v 0000 01 + 08 00 | connect to a ground; "ground the electrical connections for safety reasons" -01292727 35 v 01 earth 0 004 @ 01292534 v 0000 + 14842992 n 0101 + 09334396 n 0103 + 00148836 n 0102 01 + 08 00 | connect to the earth; "earth the circuit" -01292885 35 v 05 match 8 mate 2 couple 2 pair 1 twin 0 011 @ 01295275 v 0000 + 07976936 n 0401 + 07985223 n 0401 + 13743605 n 0301 + 04613158 n 0302 + 03728811 n 0202 + 07988857 n 0103 + 09900981 n 0102 $ 01293389 v 0000 ~ 01293548 v 0000 ~ 01294026 v 0000 02 + 08 00 + 09 00 | bring two objects, ideas, or people together; "This fact is coupled to the other one"; "Matchmaker, can you match my daughter with a nice young man?"; "The student was paired with a partner for collaboration on the project" -01293389 35 v 01 match a 005 $ 01292885 v 0000 @ 01295275 v 0000 + 10299875 n 0102 + 07988857 n 0103 + 09900981 n 0102 01 + 08 00 | give or join in marriage -01293548 35 v 01 mismate 0 001 @ 01292885 v 0000 01 + 08 00 | provide with an unsuitable mate -01293644 35 v 02 mortice 0 mortise 0 003 @ 01295275 v 0000 + 03787308 n 0201 + 03787308 n 0102 01 + 08 00 | join by a tenon and mortise -01293782 35 v 02 mortise 1 mortice 1 003 @ 01552519 v 0000 + 03787308 n 0202 + 03787308 n 0101 01 + 08 00 | cut a hole for a tenon in -01293918 35 v 01 cog 0 002 @ 01295275 v 0000 + 03064935 n 0101 01 + 08 00 | join pieces of wood with cogs -01294026 35 v 01 mismatch 0 002 @ 01292885 v 0000 + 05696199 n 0101 02 + 08 00 + 09 00 | match badly; match two objects or people that do not go together -01294182 35 v 02 disjoin 0 disjoint 0 005 @ 01557774 v 0000 + 00564262 a 0101 + 14417697 n 0101 + 14417697 n 0102 ! 01291069 v 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | become separated, disconnected or disjoint -01294396 35 v 02 disjoin 1 disjoint 1 006 > 01294182 v 0000 @ 01556921 v 0000 + 00564262 a 0101 + 00385649 n 0102 + 14417697 n 0102 ! 01295275 v 0101 02 + 08 00 + 16 00 | make disjoint, separated, or disconnected; undo the joining of -01294632 35 v 02 disjoint 2 disarticulate 0 001 @ 01556921 v 0000 01 + 08 00 | separate at the joints; "disjoint the chicken before cooking it" -01294778 35 v 01 fair 0 001 @ 01295275 v 0000 01 + 08 00 | join so that the external surfaces blend smoothly -01294889 35 v 01 scarf 1 002 @ 01295275 v 0000 + 04144241 n 0102 01 + 08 00 | unite by a scarf joint -01294992 35 v 01 piece 0 001 @ 01559868 v 0000 01 + 08 00 | join during spinning; "piece the broken pieces of thread, slivers, and rovings" -01295134 35 v 01 rebate 1 002 @ 01295275 v 0000 + 04036776 n 0102 01 + 08 00 | join with a rebate; "rebate the pieces of timber and stone" -01295275 35 v 02 join 1 bring_together 1 026 > 01291069 v 0000 @ 01354673 v 0000 + 00147454 n 0101 + 00145218 n 0101 ! 01294396 v 0101 ~ 00096396 v 0000 ~ 01069190 v 0000 ~ 01069391 v 0000 ~ 01291707 v 0000 ~ 01291817 v 0000 ~ 01291941 v 0000 ~ 01292169 v 0000 ~ 01292885 v 0000 ~ 01293389 v 0000 ~ 01293644 v 0000 ~ 01293918 v 0000 ~ 01294778 v 0000 ~ 01294889 v 0000 ~ 01295134 v 0000 ~ 01295910 v 0000 ~ 01296016 v 0000 ~ 01296324 v 0000 ~ 01607288 v 0000 ~ 01615354 v 0000 ~ 01656788 v 0000 ~ 02434119 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to become joined or linked; "join these two parts so that they fit together" -01295910 35 v 01 rabbet 1 002 @ 01295275 v 0000 + 04036776 n 0101 01 + 08 00 | join with a rabbet joint -01296016 35 v 01 seam 0 003 @ 01295275 v 0000 + 04160372 n 0101 ~ 01296154 v 0000 01 + 08 00 | put together with a seam; "seam a dress" -01296154 35 v 01 suture 0 004 @ 01296016 v 0000 + 04367205 n 0101 + 04367371 n 0101 + 00716055 n 0101 01 + 08 00 | join with a suture; "suture the wound after surgery" -01296324 35 v 01 bridge 0 003 @ 01295275 v 0000 + 00278266 a 0101 + 02898711 n 0101 01 + 08 00 | make a bridge across; "bridge a river" -01296462 35 v 01 attach 1 035 > 01290422 v 0000 @ 01354673 v 0000 + 00161431 a 0101 + 00379422 n 0101 + 00147595 n 0102 ! 01298668 v 0101 ~ 00486998 v 0000 ~ 01290009 v 0000 ~ 01290133 v 0000 ~ 01297174 v 0000 ~ 01297274 v 0000 ~ 01297401 v 0000 ~ 01297624 v 0000 ~ 01298283 v 0000 ~ 01303242 v 0000 ~ 01327816 v 0000 ~ 01328513 v 0000 ~ 01328705 v 0000 ~ 01331818 v 0000 ~ 01332205 v 0000 ~ 01340149 v 0000 ~ 01340283 v 0000 ~ 01340439 v 0000 ~ 01343204 v 0000 ~ 01356370 v 0000 ~ 01357831 v 0000 ~ 01366426 v 0000 ~ 01367616 v 0000 ~ 01421622 v 0000 ~ 01490958 v 0000 ~ 01491697 v 0000 ~ 01492052 v 0000 ~ 01492422 v 0000 ~ 01588493 v 0000 ~ 01603620 v 0000 03 + 08 00 + 11 00 + 21 00 | cause to be attached -01297174 35 v 01 hinge 0 002 @ 01296462 v 0000 + 03521076 n 0101 01 + 21 00 | attach with a hinge -01297274 35 v 01 bell 0 003 @ 01296462 v 0000 + 07377244 n 0101 + 02824448 n 0101 01 + 08 00 | attach a bell to; "bell cows" -01297401 35 v 02 ring 0 band a 003 @ 01296462 v 0000 + 02785191 n 0102 + 04092609 n 0101 01 + 08 00 | attach a ring to the foot of, in order to identify; "ring birds"; "band the geese to observe their migratory patterns" -01297624 35 v 03 couple 1 couple_on 0 couple_up 0 004 @ 01296462 v 0000 + 03119510 n 0102 + 03119510 n 0101 ! 01297813 v 0101 01 + 08 00 | link together; "can we couple these proposals?" -01297813 35 v 02 uncouple 0 decouple 0 002 @ 01356038 v 0000 ! 01297624 v 0101 02 + 08 00 + 11 00 | disconnect or separate; "uncouple the hounds" -01297961 35 v 01 prefix 0 004 @ 01298283 v 0000 + 00927845 n 0101 + 06308304 n 0101 ! 01298123 v 0101 02 + 08 00 + 21 00 | attach a prefix to; "prefixed words" -01298123 35 v 01 suffix 0 004 @ 01298283 v 0000 + 00927961 n 0101 + 06308987 n 0101 ! 01297961 v 0101 02 + 08 00 + 21 00 | attach a suffix to; "suffix words" -01298283 35 v 01 affix 2 007 @ 01296462 v 0000 + 06177923 n 0101 + 00927694 n 0101 + 06308049 n 0101 ~ 01297961 v 0000 ~ 01298123 v 0000 ~ 01298545 v 0000 02 + 08 00 + 21 00 | attach or become attached to a stem word; "grammatical morphemes affix to the stem" -01298545 35 v 01 infix 0 002 @ 01298283 v 0000 + 06309272 n 0101 02 + 08 00 + 21 00 | attach a morpheme into a stem word -01298668 35 v 01 detach 1 006 @ 01356038 v 0000 + 00390906 n 0101 ! 01296462 v 0101 ~ 01298931 v 0000 ~ 01304197 v 0000 ~ 01366321 v 0000 02 + 08 00 + 21 00 | cause to become detached or separated; take off; "detach the skin from the chicken before you eat it" -01298931 35 v 03 break 5 break_off 2 snap_off 0 004 @ 01298668 v 0000 + 00708017 a 0101 + 00376400 n 0101 + 09873604 n 0101 01 + 08 00 | break a piece from a whole; "break a branch from a tree" -01299127 35 v 01 French 0 001 @ 00561090 v 0000 01 + 08 00 | cut (e.g, beans) lengthwise in preparation for cooking; "French the potatoes" -01299268 35 v 03 cut_off 0 chop_off 0 lop_off 0 003 @ 01299758 v 0000 ~ 01255222 v 0000 ~ 01299473 v 0000 02 + 08 00 + 21 00 | remove by or as if by cutting; "cut off the ear"; "lop off the dead branch" -01299473 35 v 01 roach 0 001 @ 01299268 v 0000 01 + 08 00 | cut the mane off (a horse) -01299562 35 v 01 roach 1 002 @ 01596645 v 0000 + 05261088 n 0101 01 + 08 00 | comb (hair) into a roach -01299667 35 v 01 unsolder 0 001 @ 01299758 v 0000 01 + 08 00 | remove the soldering from -01299758 35 v 03 detach 0 come_off 0 come_away 0 007 @ 01557774 v 0000 + 07331400 n 0103 ! 01290422 v 0101 ~ 01290945 v 0000 ~ 01299268 v 0000 ~ 01299667 v 0000 ~ 01300040 v 0000 02 + 01 00 + 04 00 | come to be detached; "His retina detached and he had to be rushed into surgery" -01300040 35 v 01 fall_off 0 001 @ 01299758 v 0000 01 + 01 00 | come off; "This button had fallen off" -01300144 35 v 01 knot 0 002 @ 01285440 v 0000 + 03627232 n 0101 01 + 08 00 | tie or fasten into a knot; "knot the shoelaces" -01300271 35 v 02 swaddle 0 swathe 0 003 @ 01303242 v 0000 + 04369146 n 0201 + 04369025 n 0201 02 + 08 00 + 09 00 | wrap in swaddling clothes; "swaddled the infant" -01300437 35 v 01 shroud 0 002 @ 01283208 v 0000 + 03879116 n 0102 02 + 08 00 + 09 00 | wrap in a shroud; "shroud the corpses" -01300565 35 v 02 pinion 0 shackle 1 001 @ 01301410 v 0000 01 + 08 00 | bind the arms of -01300655 35 v 01 bridle 0 004 @ 01301051 v 0000 ! 02366451 v 0101 + 02900160 n 0101 ~ 01300805 v 0000 01 + 08 00 | put a bridle on; "bridle horses" -01300805 35 v 01 snaffle 0 002 @ 01300655 v 0000 + 04247876 n 0101 01 + 08 00 | fit or restrain with a snaffle; "snaffle a horse" -01300937 35 v 01 curb 0 002 @ 01301051 v 0000 + 03148920 n 0101 01 + 08 00 | keep to the curb; "curb your dogs" -01301051 35 v 04 restrain 1 encumber 0 cumber 0 constrain 0 005 @ 00233335 v 0000 + 10525134 n 0101 ~ 01300655 v 0000 ~ 01300937 v 0000 ~ 01301230 v 0000 01 + 08 00 | hold back -01301230 35 v 01 clog 1 001 @ 01301051 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | impede the motion of, as with a chain or a burden; "horses were clogged until they were tamed" -01301410 35 v 03 restrain 0 confine 1 hold 3 013 @ 00512186 v 0000 + 13999663 n 0303 + 03525252 n 0301 + 10525134 n 0101 + 13998781 n 0102 ~ 01286913 v 0000 ~ 01288052 v 0000 ~ 01288461 v 0000 ~ 01300565 v 0000 ~ 01302183 v 0000 ~ 01302365 v 0000 ~ 01345877 v 0000 ~ 01502762 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to close within bounds, limit or hold back from movement; "This holds the local until the express passengers change trains"; "About a dozen animals were held inside the stockade"; "The illegal immigrants were held at a detention center"; "The terrorists held the journalists for ransom" -01302019 35 v 01 keep a 003 @ 02495038 v 0000 + 03525252 n 0102 $ 02450505 v 0000 01 + 09 00 | hold and prevent from leaving; "The student was kept after school" -01302183 35 v 02 impound 0 pound 4 003 @ 01301410 v 0000 + 03993703 n 0201 $ 01302365 v 0000 02 + 08 00 + 09 00 | place or shut up in a pound; "pound the cows so they don't stray" -01302365 35 v 02 pound 5 pound_up 0 003 $ 01302183 v 0000 @ 01301410 v 0000 + 00086297 n 0104 01 + 09 00 | shut up or confine in any enclosure or within any bounds or limits; "The prisoners are safely pounded" -01302577 35 v 01 cabin 0 003 @ 01347298 v 0000 + 02932227 n 0101 + 02932019 n 0101 01 + 09 00 | confine to a small space, such as a cabin -01302717 35 v 01 closet 0 002 @ 01347298 v 0000 + 03049457 n 0101 02 + 08 00 + 09 00 | confine to a small space, as for intensive work -01302854 35 v 02 gird 0 encircle 0 002 @ 01303242 v 0000 ~ 01303123 v 0000 01 + 08 00 | bind with something round or circular -01302982 35 v 02 cinch 0 girth 0 003 @ 01340439 v 0000 + 03031756 n 0202 + 03031756 n 0101 01 + 08 00 | tie a cinch around; "cinch horses" -01303123 35 v 01 hoop 0 002 @ 01302854 v 0000 + 03533972 n 0101 01 + 08 00 | bind or fasten with a hoop; "hoop vats" -01303242 35 v 01 bind 0 008 @ 01296462 v 0000 + 00161684 a 0101 + 02840361 n 0101 + 02840134 n 0101 ! 01304197 v 0101 ~ 01300271 v 0000 ~ 01302854 v 0000 ~ 01304076 v 0000 03 + 08 00 + 11 00 + 21 00 | make fast; tie or secure, with or as if with a rope; "The Chinese would bind the feet of their women" -01303547 35 v 02 bind 8 bandage 3 003 @ 01340439 v 0000 + 00161684 a 0101 + 00696882 n 0103 01 + 08 00 | wrap around with something so as to cover or enclose -01303707 35 v 01 lash 2 003 @ 01285440 v 0000 ! 01303954 v 0101 ~ 01303855 v 0000 01 + 08 00 | bind with a rope, chain, or cord; "lash the horse" -01303855 35 v 01 frap 0 001 @ 01303707 v 0000 01 + 08 00 | make secure by lashing; "frap a sail" -01303954 35 v 01 unlash 0 002 @ 01284461 v 0000 ! 01303707 v 0101 01 + 08 00 | untie the lashing of; "unlash the horse" -01304076 35 v 01 cement 1 001 @ 01303242 v 0000 01 + 08 00 | make fast as if with cement; "We cemented our friendship" -01304197 35 v 01 unbind 0 002 @ 01298668 v 0000 ! 01303242 v 0101 02 + 08 00 + 09 00 | untie or unfasten; "unbind the feet of this poor woman" -01304342 35 v 01 band 0 002 @ 01285440 v 0000 + 02784998 n 0101 02 + 08 00 + 09 00 | bind or tie together, as with a band -01304466 35 v 01 cramp 0 003 @ 01340439 v 0000 + 03126090 n 0101 + 03126251 n 0101 01 + 08 00 | secure with a cramp; "cramp the wood" -01304602 35 v 01 cleat 0 002 @ 01340439 v 0000 + 03041114 n 0101 01 + 08 00 | secure on a cleat; "cleat a line" -01304716 35 v 03 anchor 0 cast_anchor 0 drop_anchor 0 004 @ 01340439 v 0000 + 02709367 n 0101 + 08639776 n 0101 + 00052052 n 0101 04 + 01 00 + 02 00 + 22 00 + 08 01 | secure a vessel with an anchor; "We anchored at Baltimore" -01304944 35 v 02 anchor 1 ground 8 002 @ 01340439 v 0000 + 05694232 n 0101 02 + 08 00 + 11 00 | fix firmly and stably; "anchor the lamppost in concrete" -01305099 35 v 01 moor 0 003 @ 01340439 v 0000 + 00052146 n 0102 + 03784475 n 0101 01 + 08 00 | secure with cables or ropes; "moor the boat" -01305241 35 v 01 wharf 0 002 @ 01305542 v 0000 + 03933529 n 0102 01 + 08 00 | moor at a wharf; "The ship was wharfed" -01305361 35 v 03 moor 3 berth 3 wharf 3 003 @ 02085742 v 0000 + 03933529 n 0302 + 08640111 n 0203 01 + 01 00 | come into or dock at a wharf; "the big ship wharfed in the evening" -01305542 35 v 03 moor 1 berth 0 tie_up 5 004 @ 01340439 v 0000 + 08640111 n 0203 + 08640111 n 0101 ~ 01305241 v 0000 01 + 08 00 | secure in or as if in a berth or dock; "tie up the boat" -01305731 35 v 01 dock 0 007 @ 01931768 v 0000 + 03216828 n 0101 + 03933529 n 0104 + 10655169 n 0104 + 00052146 n 0101 ! 01306047 v 0101 ~ 01305939 v 0000 01 + 08 00 | maneuver into a dock; "dock the ships" -01305939 35 v 02 dry-dock 0 drydock 0 001 @ 01305731 v 0000 01 + 08 00 | maneuver (a ship) into a drydock -01306047 35 v 01 undock 0 002 @ 00173338 v 0000 ! 01305731 v 0101 01 + 08 00 | take (a ship) out of a dock; "undock the ship" -01306175 35 v 01 spike 1 003 @ 01340439 v 0000 + 04276050 n 0101 + 04275904 n 0101 01 + 08 00 | secure with spikes -01306292 35 v 01 batten 0 002 @ 00220869 v 0000 + 02810008 n 0101 01 + 08 00 | secure with battens; "batten down a ship's hatches" -01306425 35 v 03 batten 1 batten_down 0 secure 3 002 @ 00220869 v 0000 + 02810008 n 0101 01 + 08 00 | furnish with battens; "batten ships" -01306566 35 v 01 clapperclaw 0 001 @ 01306654 v 0000 01 + 08 00 | claw with the nails -01306654 35 v 01 claw 0 005 @ 01309143 v 0000 + 02156532 n 0101 + 02154742 n 0101 + 02156140 n 0101 ~ 01306566 v 0000 03 + 02 00 + 08 00 + 22 00 | scratch, scrape, pull, or dig with claws or nails -01306853 35 v 01 rake 0 005 * 01308160 v 0000 @ 01380638 v 0000 + 04050066 n 0101 ^ 02284662 v 0101 ^ 02290029 v 0101 01 + 08 00 | gather with a rake; "rake leaves" -01307020 35 v 01 rake 1 002 @ 01252971 v 0000 + 04050066 n 0101 01 + 08 00 | level or smooth with a rake; "rake gravel" -01307142 35 v 04 flush 3 level 1 even_out 0 even 0 007 @ 00356258 v 0000 + 03658858 n 0201 + 10255567 n 0202 + 10255567 n 0201 ~ 01307609 v 0000 ~ 01308008 v 0000 ~ 01585390 v 0000 02 + 08 00 + 11 00 | make level or straight; "level the ground" -01307389 35 v 01 plane 3 005 @ 01252971 v 0000 + 03954731 n 0101 + 03955296 n 0101 + 13538182 n 0101 + 03955296 n 0102 01 + 08 00 | make even or smooth, with or as with a carpenter's plane; "plane the top of the door" -01307609 35 v 01 grade 0 005 @ 01307142 v 0000 + 05132045 n 0101 + 05068716 n 0101 + 00912576 n 0101 ~ 01307771 v 0000 01 + 08 00 | level to the right gradient -01307771 35 v 01 aggrade 0 002 @ 01307609 v 0000 ! 01307896 v 0101 01 + 08 00 | build up to a level by depositing sediment -01307896 35 v 01 degrade 0 001 ! 01307771 v 0101 02 + 01 00 + 08 00 | reduce the level of land, as by erosion -01308008 35 v 02 strickle 0 strike a 002 * 01252971 v 0000 @ 01307142 v 0000 01 + 08 00 | smooth with a strickle; "strickle the grain in the measure" -01308160 35 v 02 scrape 0 grate 1 005 @ 01249724 v 0000 + 04693900 n 0102 + 14286549 n 0103 + 04150980 n 0101 ~ 01211455 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | scratch repeatedly; "The cat scraped at the armchair" -01308381 35 v 02 replace 0 put_back 0 003 @ 01494310 v 0000 ~ 01309027 v 0000 $ 02405390 v 0000 02 + 08 00 + 21 00 | put something back where it belongs; "replace the book on the shelf after you have finished reading it"; "please put the clean dishes back in the cabinet when you have washed them" -01308681 35 v 01 stratify 0 005 $ 00506952 v 0000 @ 01494310 v 0000 + 13562328 n 0101 $ 00052845 v 0000 ~ 00506827 v 0000 02 + 08 00 + 11 00 | form, arrange, or deposit in layers; "The fish are stratified in barrels"; "The rock was stratified by the force of the water"; "A statistician stratifies the list of names according to the addresses" -01309027 35 v 01 hang_up 0 001 @ 01308381 v 0000 02 + 02 00 + 08 00 | put a telephone receiver back in its cradle -01309143 35 v 03 scratch 0 scrape 2 scratch_up 0 011 @ 01555742 v 0000 + 14286549 n 0203 + 04693900 n 0202 + 04693900 n 0101 + 13904843 n 0102 + 14286549 n 0102 + 10563826 n 0101 + 04151108 n 0101 ^ 01549719 v 0101 ~ 01306654 v 0000 ~ 01370336 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cut the surface of; wear away the surface of -01309478 35 v 02 skin 2 scrape 1 004 @ 00069879 v 0000 + 14286549 n 0203 + 01895735 n 0103 + 05238282 n 0101 02 + 08 00 + 11 00 | bruise, cut, or injure the skin or the surface of; "The boy skinned his knee when he fell" -01309701 35 v 04 dig 0 delve 0 cut_into 1 turn_over 0 014 @ 00173338 v 0000 + 08550076 n 0101 + 00941974 n 0103 + 03996416 n 0103 + 00941974 n 0102 ^ 01313923 v 0102 ^ 01173057 v 0102 ^ 01312261 v 0101 ~ 01277431 v 0000 ~ 01282413 v 0000 ~ 01310249 v 0000 ~ 01312810 v 0000 ~ 01313113 v 0000 ~ 02042067 v 0000 03 + 02 00 + 08 00 + 22 00 | turn up, loosen, or remove earth; "Dig we must"; "turn over the soil for aeration" -01310125 35 v 01 gutter 0 001 @ 01226875 v 0000 01 + 11 00 | wear or cut gutters into; "The heavy rain guttered the soil" -01310249 35 v 01 spade 0 003 @ 01309701 v 0000 + 04266486 n 0101 ~ 01310417 v 0000 02 + 02 00 + 08 00 | dig (up) with a spade; "I spade compost into the flower beds" -01310417 35 v 01 ridge 0 002 @ 01310249 v 0000 + 13902048 n 0101 01 + 08 00 | spade into alternate ridges and troughs; "ridge the soil" -01310555 35 v 01 sap 0 002 @ 01283033 v 0000 + 10551576 n 0101 01 + 08 00 | excavate the earth beneath -01310660 35 v 03 excavate 1 dig 2 hollow 5 008 @ 00173338 v 0000 + 09304750 n 0302 + 08550076 n 0201 + 00941974 n 0203 + 03302121 n 0101 + 00922327 n 0102 ~ 01310964 v 0000 ~ 01311896 v 0000 02 + 08 00 + 11 00 | remove the inner part or the core of; "the mining company wants to excavate the hillside" -01310964 35 v 01 drive 6 003 @ 01310660 v 0000 ;c 00922327 n 0000 + 03239399 n 0101 01 + 08 00 | excavate horizontally; "drive a tunnel" -01311103 35 v 02 dig 1 dig_out 0 009 @ 01282545 v 0000 * 00173338 v 0000 + 00941974 n 0103 + 08550076 n 0101 + 10012989 n 0101 + 03996416 n 0103 ~ 01311608 v 0000 ~ 01311722 v 0000 ~ 01312123 v 0000 02 + 08 00 + 11 00 | create by digging; "dig a hole"; "dig out a channel" -01311378 35 v 01 excavate 2 004 @ 01282545 v 0000 + 03302121 n 0101 + 09617292 n 0101 + 03996416 n 0102 01 + 08 00 | form by hollowing; "Carnegie had a lake excavated for Princeton University's rowing team"; "excavate a cavity" -01311608 35 v 01 lift 2 001 @ 01311103 v 0000 01 + 08 00 | take (root crops) out of the ground; "lift potatoes" -01311722 35 v 01 trench 1 003 @ 01311103 v 0000 + 04478889 n 0101 + 10728117 n 0101 01 + 02 00 | dig a trench or trenches; "The National Guardsmen were sent out to trench" -01311896 35 v 02 trench 3 ditch 1 005 @ 01310660 v 0000 + 09267758 n 0201 + 03214253 n 0201 + 04478889 n 0101 + 10728117 n 0101 01 + 08 00 | cut a trench in, as for drainage; "ditch the land to drain it"; "trench the fields" -01312123 35 v 01 dibble 1 002 @ 01311103 v 0000 + 03190458 n 0101 01 + 08 00 | make a hole with a wooden hand tool; "dibble the ground" -01312261 35 v 01 dig_out 3 001 @ 01475953 v 0000 02 + 02 00 + 09 00 | dig out from underneath earth or snow -01312371 35 v 05 scoop 1 scoop_out 2 lift_out 2 scoop_up 0 take_up 0 006 @ 00173338 v 0000 + 13894306 n 0101 + 04149208 n 0101 + 04149083 n 0101 + 13769317 n 0101 ~ 01312657 v 0000 02 + 08 00 + 11 00 | take out or up with or as if with a scoop; "scoop the sugar out of the container" -01312657 35 v 01 dip c 001 @ 01312371 v 0000 01 + 08 00 | scoop up by plunging one's hand or a ladle below the surface; "dip water out of a container" -01312810 35 v 01 shovel 0 008 @ 01309701 v 0000 + 03996416 n 0104 + 04208427 n 0101 + 13769870 n 0101 + 04208210 n 0101 + 10593618 n 0101 ^ 01174099 v 0103 ^ 02290029 v 0102 03 + 02 00 + 08 00 + 21 00 | dig with or as if with a shovel; "shovel sand"; "he shovelled in the backyard all afternoon long" -01313113 35 v 01 trowel 0 002 @ 01309701 v 0000 + 04489817 n 0101 01 + 08 00 | use a trowel on; for light garden work or plaster work -01313249 35 v 01 daub 2 004 $ 01233387 v 0000 $ 01360899 v 0000 @ 01363648 v 0000 + 14828683 n 0101 01 + 21 00 | apply to a surface; "daub paint onto the wall" -01313411 35 v 01 squirt a 004 @ 00214951 v 0000 + 07436100 n 0102 + 04561548 n 0104 ~ 01613589 v 0000 02 + 08 00 + 21 00 | wet with a spurt of liquid; "spurt the wall with water" -01313592 35 v 01 spritz 0 002 @ 01332730 v 0000 + 07446599 n 0101 02 + 08 00 + 21 00 | cover (a location) wholly or partially by squirting a liquid onto it; "Spritz the lawn with water" -01313780 35 v 01 spritz 2 002 @ 01375637 v 0000 + 07446599 n 0101 02 + 08 00 + 21 00 | eject (a liquid) quickly; "spritz water on a surface" -01313923 35 v 03 excavate 0 dig_up 0 turn_up 3 008 @ 02238085 v 0000 + 08550076 n 0102 + 03302121 n 0101 + 00941974 n 0101 ~ 01314208 v 0000 ~ 01314323 v 0000 $ 02286204 v 0000 ~ 02457058 v 0000 02 + 08 00 + 11 00 | find by digging in the ground; "I dug up an old box in the garden" -01314208 35 v 02 grub_up 0 grub_out 0 001 @ 01313923 v 0000 01 + 08 00 | dig up; "grub up roots and tree stumps" -01314323 35 v 01 nuzzle 1 001 @ 01313923 v 0000 01 + 11 00 | dig out with the snout; "the pig nuzzled the truffle" -01314440 35 v 02 grope_for 0 scrabble d 001 @ 02127613 v 0000 01 + 08 00 | feel searchingly; "She groped for his keys in the dark" -01314573 35 v 01 finger 1 001 @ 01315613 v 0000 01 + 09 00 | search for on the computer; "I fingered my boss and found that he is not logged on in the afternoons" -01314738 35 v 02 grope 1 fumble 0 003 @ 01315613 v 0000 + 00141027 n 0101 ^ 01314440 v 0101 02 + 02 00 + 22 00 | feel about uncertainly or blindly; "She groped for her glasses in the darkness of the bedroom" -01314948 35 v 01 divine 0 003 @ 01315613 v 0000 + 10020031 n 0101 ~ 01315140 v 0000 02 + 02 00 + 08 00 | search by divining, as if with a rod; "He claimed he could divine underground water" -01315140 35 v 01 dowse 0 005 @ 01314948 v 0000 + 05776679 n 0101 + 10770891 n 0102 + 03216199 n 0102 + 05776679 n 0102 01 + 02 00 | use a divining rod in search of underground water or metal -01315333 35 v 02 browse 0 surf 3 004 $ 02326355 v 0000 @ 01315613 v 0000 + 09877587 n 0101 + 06571301 n 0101 02 + 02 00 + 08 00 | look around casually and randomly, without seeking anything in particular; "browse a computer directory"; "surf the internet or the world wide web" -01315613 35 v 03 search 0 seek 0 look_for 0 020 + 00946650 n 0202 + 00945401 n 0101 + 10567401 n 0101 + 10575787 n 0102 ~ 01244692 v 0000 ~ 01314573 v 0000 ~ 01314738 v 0000 ~ 01314948 v 0000 ~ 01315333 v 0000 ~ 01316209 v 0000 ~ 01316401 v 0000 ~ 01316619 v 0000 ~ 01317064 v 0000 ~ 01317276 v 0000 ~ 01317424 v 0000 ~ 01317533 v 0000 ~ 01319346 v 0000 ~ 01319473 v 0000 ~ 02127613 v 0000 ~ 02326355 v 0000 02 + 08 00 + 09 00 | try to locate or discover, or try to establish the existence of; "The police are searching for clues"; "They are searching for the missing man in the entire county" -01316209 35 v 01 leave_no_stone_unturned 0 001 @ 01315613 v 0000 01 + 02 00 | search thoroughly and exhaustively; "The police left no stone unturned in looking for the President's murderer" -01316401 35 v 01 hunt 3 005 @ 01315613 v 0000 + 05770257 n 0101 + 00945401 n 0102 + 10193719 n 0101 + 00945401 n 0103 01 + 08 00 | seek, search for; "She hunted for her reading glasses but was unable to locate them" -01316619 35 v 01 gather 4 004 @ 01315613 v 0000 + 01014990 n 0101 + 10122300 n 0101 ~ 01316813 v 0000 02 + 02 00 + 08 00 | look for (food) in nature; "Our ancestors gathered nuts in the Fall" -01316813 35 v 01 shell 8 003 @ 01316619 v 0000 + 01904182 n 0101 + 14758536 n 0101 01 + 02 00 | look for and collect shells by the seashore -01316955 35 v 01 felt 0 002 @ 01332730 v 0000 + 03326795 n 0101 01 + 08 00 | cover with felt; "felt a cap" -01317064 35 v 01 want 0 003 @ 01315613 v 0000 + 10766025 n 0101 $ 00709205 v 0000 01 + 09 00 | hunt or look for; want for a particular reason; "Your former neighbor is wanted by the FBI"; "Uncle Sam wants you" -01317276 35 v 01 scour 3 002 @ 01315613 v 0000 + 00993488 n 0101 01 + 08 00 | examine minutely; "The police scoured the country for the fugitive" -01317424 35 v 01 seek_out 0 001 @ 01315613 v 0000 02 + 08 00 + 09 00 | look for a specific person or thing -01317533 35 v 04 quest_for 0 go_after 0 quest_after 0 pursue 0 003 @ 01315613 v 0000 + 05770391 n 0401 + 05770391 n 0402 02 + 08 00 + 09 00 | go in search of or hunt for; "pursue a hobby" -01317723 35 v 01 search 1 011 @ 02131279 v 0000 + 00644366 n 0101 + 10567401 n 0101 + 10575787 n 0102 ~ 01318081 v 0000 ~ 01318223 v 0000 ~ 01318470 v 0000 ~ 01318659 v 0000 ~ 01318849 v 0000 ~ 01319049 v 0000 ~ 01319193 v 0000 02 + 08 00 + 09 00 | subject to a search; "The police searched the suspect"; "We searched the whole house for the missing keys" -01318081 35 v 01 raid 2 001 @ 01317723 v 0000 01 + 08 00 | search for something needed or desired; "Our babysitter raided our refrigerator" -01318223 35 v 01 frisk 0 003 @ 01317723 v 0000 + 00946060 n 0101 + 00946060 n 0102 01 + 09 00 | search as for concealed weapons by running the hands rapidly over the clothing and through the pockets; "The police frisked everyone at the airport" -01318470 35 v 01 strip-search 0 001 @ 01317723 v 0000 01 + 09 00 | search (someone) for weapons or drugs by having the person remove their clothes; "He was strip-searched at the airport" -01318659 35 v 01 scan 0 004 @ 01317723 v 0000 + 00643943 n 0101 + 04142999 n 0101 + 04142731 n 0101 02 + 08 00 + 11 00 | make a wide, sweeping search of; "The beams scanned the night sky" -01318849 35 v 02 rifle d go d 001 @ 01317723 v 0000 01 + 22 00 | go through in search of something; search through someone's belongings in an unauthorized way; "Who rifled through my desk drawers?" -01319049 35 v 01 rummage 0 002 @ 01317723 v 0000 + 00946806 n 0102 02 + 02 00 + 22 00 | search haphazardly; "We rummaged through the drawers" -01319193 35 v 02 comb 0 ransack 2 002 @ 01317723 v 0000 + 00946806 n 0201 01 + 08 00 | search thoroughly; "They combed the area for the missing child" -01319346 35 v 02 fish 0 angle 0 002 @ 01315613 v 0000 + 02512053 n 0101 01 + 02 00 | seek indirectly; "fish for compliments" -01319473 35 v 01 grub 3 001 @ 01315613 v 0000 02 + 02 00 + 22 00 | search about busily -01319562 35 v 02 mow 0 cut_down 1 004 @ 01552519 v 0000 + 03500557 n 0103 + 03649909 n 0102 ~ 01319885 v 0000 02 + 08 00 + 11 00 | cut with a blade or mower; "mow the grass" -01319738 35 v 01 cut d 001 @ 01258302 v 0000 01 + 08 00 | fell by sawing; hew; "The Vietnamese cut a lot of timber while they occupied Cambodia" -01319885 35 v 01 scythe 0 002 @ 01319562 v 0000 + 04158250 n 0101 01 + 08 00 | cut with a scythe; "scythe grass or grain" -01320009 35 v 03 reap 0 harvest 0 glean 0 011 @ 01380638 v 0000 + 10132641 n 0301 + 00921790 n 0201 + 01015310 n 0201 + 13085864 n 0202 + 03496892 n 0201 + 10161363 n 0201 + 01015310 n 0202 + 10161363 n 0102 + 03496892 n 0102 ~ 01320424 v 0000 01 + 08 00 | gather, as of natural products; "harvest the grapes" -01320321 35 v 01 club 1 001 @ 01380638 v 0000 01 + 08 00 | gather into a club-like mass; "club hair" -01320424 35 v 01 cut f 001 @ 01320009 v 0000 01 + 08 00 | reap or harvest; "cut grain" -01320513 35 v 01 shear 0 004 @ 01321002 v 0000 + 04186848 n 0101 + 10587227 n 0101 + 00360242 n 0101 02 + 08 00 + 11 00 | cut with shears; "shear hedges" -01320669 35 v 02 poll 0 pollard 0 003 @ 01321002 v 0000 + 13108323 n 0201 + 13108323 n 0101 01 + 08 00 | convert into a pollard; "pollard trees" -01320816 35 v 01 shear 1 004 @ 01552519 v 0000 + 04186709 n 0101 + 10587227 n 0101 + 00360242 n 0101 02 + 08 00 + 11 00 | cut or cut through with shears; "shear the wool off the lamb" -01321002 35 v 08 snip 0 clip 4 crop 0 trim 2 lop 0 dress 3 prune 0 cut_back 0 018 @ 00430370 v 0000 + 10487182 n 0701 + 04016240 n 0701 + 00360143 n 0701 + 04016240 n 0503 + 00359903 n 0401 + 10487182 n 0402 + 00359903 n 0402 + 13085864 n 0301 + 00359614 n 0201 + 03045074 n 0201 + 00359903 n 0203 + 04250026 n 0101 + 00359614 n 0103 ~ 01320513 v 0000 ~ 01320669 v 0000 ~ 01321509 v 0000 ~ 01321671 v 0000 02 + 08 00 + 11 00 | cultivate, tend, and cut back the growth of; "dress the plants in the garden" -01321509 35 v 02 top 0 pinch 2 004 @ 01321002 v 0000 + 08663860 n 0101 + 10715544 n 0101 ~ 01321796 v 0000 01 + 08 00 | cut the top off; "top trees and bushes" -01321671 35 v 01 disbud 0 001 @ 01321002 v 0000 01 + 08 00 | thin out buds to improve the quality of the remaining flowers -01321796 35 v 01 tail 1 001 @ 01321509 v 0000 01 + 08 00 | remove the stalk of fruits or berries -01321895 35 v 04 scratch 4 engrave 0 grave 0 inscribe 0 004 @ 01256600 v 0000 + 10058155 n 0201 $ 01322223 v 0000 ~ 01322391 v 0000 02 + 08 00 + 11 00 | carve, cut, or etch into a material or surface; "engrave a pen"; "engraved the trophy cupt with the winner's"; "the lovers scratched their names into the bark of the tree" -01322223 35 v 02 engrave 1 etch 3 002 $ 01321895 v 0000 @ 01256600 v 0000 01 + 08 00 | carve or cut a design or letters into; "engrave the pen with the owner's name" -01322391 35 v 01 character 0 002 @ 01321895 v 0000 + 06818970 n 0101 01 + 08 00 | engrave or inscribe characters on -01322509 35 v 02 slash 0 gash 0 004 @ 01552519 v 0000 + 00388065 n 0202 + 14287113 n 0202 + 14287113 n 0103 02 + 08 00 + 11 00 | cut open; "she slashed her wrists" -01322675 35 v 02 slash 1 cut_down 3 004 @ 01552519 v 0000 + 00388065 n 0101 + 14287113 n 0103 + 10609092 n 0101 01 + 08 00 | cut with sweeping strokes; as with an ax or machete -01322854 35 v 02 butcher 0 slaughter 0 010 * 01552519 v 0000 @ 01323958 v 0000 + 00223854 n 0201 + 09884133 n 0202 + 09884391 n 0101 + 09884133 n 0101 + 02666943 n 0102 + 00223983 n 0105 + 00620424 n 0101 ~ 01323202 v 0000 02 + 08 00 + 09 00 | kill (animals) usually for food consumption; "They slaughtered their only goat to survive the winter" -01323202 35 v 01 chine 0 003 @ 01322854 v 0000 + 07654538 n 0101 + 01895128 n 0101 01 + 08 00 | cut through the backbone of an animal -01323338 35 v 01 poison 0 005 @ 01323958 v 0000 + 15032376 n 0101 + 10448568 n 0101 + 00224738 n 0101 $ 01323793 v 0000 01 + 09 00 | kill with poison; "She poisoned her husband" -01323518 35 v 02 stone 0 lapidate 0 007 @ 01323958 v 0000 + 01164394 n 0202 + 10659393 n 0202 + 14696793 n 0102 + 09416076 n 0102 + 10659393 n 0101 + 01164394 n 0101 01 + 09 00 | kill by throwing stones at; "People wanted to stone the woman who had a child out of wedlock" -01323793 35 v 01 poison 1 004 $ 01323338 v 0000 $ 00088339 v 0000 @ 01323958 v 0000 + 15032376 n 0101 01 + 10 00 | kill by its poison; "This mushrooms can poison" -01323958 35 v 01 kill 0 045 > 00358431 v 0000 + 00829041 a 0101 + 00219012 n 0102 + 14540564 n 0102 + 10231087 n 0101 + 07361576 n 0101 + 00219012 n 0101 ^ 01327582 v 0102 ~ 00470701 v 0000 ~ 00471058 v 0000 ~ 00479060 v 0000 ~ 00479176 v 0000 ~ 00479391 v 0000 ~ 01322854 v 0000 ~ 01323338 v 0000 ~ 01323518 v 0000 ~ 01323793 v 0000 ~ 01324996 v 0000 ~ 01325128 v 0000 ~ 01325288 v 0000 $ 01325536 v 0000 ~ 01326093 v 0000 ~ 01326323 v 0000 ~ 01326424 v 0000 ~ 01326528 v 0000 ~ 01326730 v 0000 ~ 01326890 v 0000 ~ 01327020 v 0000 ~ 01327133 v 0000 ~ 01327301 v 0000 ~ 01327582 v 0000 ~ 01569181 v 0000 ~ 01570935 v 0000 ~ 01571354 v 0000 ~ 01572003 v 0000 ~ 01572224 v 0000 ~ 01605021 v 0000 ~ 01616151 v 0000 ~ 02482425 v 0000 ~ 02483000 v 0000 ~ 02483267 v 0000 ~ 02483564 v 0000 ~ 02484397 v 0000 ~ 02484570 v 0000 ~ 02484957 v 0000 03 + 08 00 + 09 00 + 10 00 | cause to die; put to death, usually intentionally or knowingly; "This man killed several people when he tried to rob a bank"; "The farmer killed a pig for the holidays" -01324996 35 v 01 commit_suicide 0 001 @ 01323958 v 0000 01 + 02 00 | kill oneself; "the terminally ill patient committed suicide" -01325128 35 v 01 dispatch 0 002 @ 01323958 v 0000 + 00222248 n 0101 02 + 09 00 + 10 00 | kill without delay; "the traitor was dispatched by the conspirators" -01325288 35 v 02 zap 0 vaporize 4 002 @ 01323958 v 0000 + 04614083 n 0101 02 + 09 00 + 10 00 | kill with or as if with a burst of gunfire or electric current or as if by shooting; "in this computer game, space travellers are vaporized by aliens" -01325536 35 v 01 kill 1 006 $ 01323958 v 0000 + 00219012 n 0102 + 14540564 n 0102 + 07361576 n 0101 $ 01325774 v 0000 ~ 02485135 v 0000 01 + 10 00 | cause the death of, without intention; "She was killed in the collision of three cars" -01325774 35 v 01 kill 2 003 $ 01325536 v 0000 + 00219012 n 0102 ~ 01325934 v 0000 02 + 08 00 + 10 00 | deprive of life; "AIDS has killed thousands in Africa" -01325934 35 v 01 strike_down 2 001 @ 01325774 v 0000 01 + 10 00 | cause to die, especially suddenly; "The disease struck down many young men in the village" -01326093 35 v 01 sacrifice 0 002 @ 01323958 v 0000 + 00227595 n 0101 02 + 08 00 + 09 00 | kill or destroy; "The animals were sacrificed after the experiment"; "The general had to sacrifice several soldiers to save the regiment" -01326323 35 v 01 take_off 0 001 @ 01323958 v 0000 01 + 01 00 | prove fatal; "The disease took off" -01326424 35 v 01 tomahawk 1 002 @ 01323958 v 0000 + 04449966 n 0101 01 + 08 00 | kill with a tomahawk -01326528 35 v 02 destroy 1 put_down 3 001 @ 01323958 v 0000 01 + 08 00 | put (an animal) to death; "The customs agents destroyed the dog that was found to be rabid"; "the sick cat had to be put down" -01326730 35 v 02 saber 0 sabre 0 005 @ 01323958 v 0000 + 04121511 n 0202 + 02987492 n 0203 + 04121511 n 0101 + 02987492 n 0102 01 + 09 00 | kill with a saber -01326890 35 v 02 overlie 0 overlay 1 001 @ 01323958 v 0000 02 + 09 00 + 11 00 | kill by lying on; "The sow overlay her piglets" -01327020 35 v 01 brain 1 002 @ 01323958 v 0000 + 05481095 n 0101 01 + 08 00 | kill by smashing someone's skull -01327133 35 v 02 put_away 0 put_to_sleep 1 001 @ 01323958 v 0000 01 + 08 00 | kill gently, as with an injection; "the cat was very ill and we had to put it to sleep" -01327301 35 v 06 neutralize 0 neutralise 0 liquidate 0 waste 0 knock_off 0 do_in 0 003 @ 01323958 v 0000 + 00223720 n 0302 + 10338707 n 0302 01 + 09 00 | get rid of (someone who may be a threat) by killing; "The mafia liquidated the informer"; "the double agent was neutralized" -01327582 35 v 02 exterminate 1 kill_off 0 002 @ 01323958 v 0000 + 10074339 n 0101 01 + 09 00 | kill en masse; kill on a large scale; kill many; "Hitler wanted to exterminate the Jews, Gypsies, Communists, and homosexuals of Europe" -01327816 35 v 02 hitch 0 catch 6 005 @ 01296462 v 0000 + 02982599 n 0201 ! 01328340 v 0101 $ 01328012 v 0000 ~ 01328212 v 0000 01 + 21 00 | to hook or entangle; "One foot caught in the stirrup" -01328012 35 v 01 catch 8 002 $ 01327816 v 0000 $ 00460357 v 0000 01 + 21 00 | cause to become accidentally or suddenly caught, ensnared, or entangled; "I caught the hem of my dress in the brambles" -01328212 35 v 01 snag 0 002 @ 01327816 v 0000 + 13895745 n 0101 02 + 10 00 + 11 00 | catch on a snag; "I snagged my stocking" -01328340 35 v 01 unhitch 0 004 @ 01519977 v 0000 ! 01327816 v 0101 ~ 01491360 v 0000 ~ 01491886 v 0000 02 + 08 00 + 21 00 | unfasten or release from or as if from a hitch -01328513 35 v 05 append 0 tag_on 0 tack_on 0 tack 6 hang_on 0 003 @ 01296462 v 0000 + 02728763 n 0101 ~ 01329026 v 0000 02 + 08 00 + 15 00 | fix to; attach; "append a charm to the necklace" -01328705 35 v 04 append 1 add_on 0 supplement 0 affix 1 008 @ 01296462 v 0000 + 00379422 n 0402 + 06399631 n 0302 + 00371846 n 0301 + 02671421 n 0204 + 02728763 n 0101 + 00158864 a 0101 ~ 01329141 v 0000 02 + 08 00 + 15 00 | add to the very end; "He appended a glossary to his novel where he used an invented language" -01329026 35 v 01 subjoin 0 003 @ 01328513 v 0000 + 00371846 n 0102 + 00371846 n 0103 01 + 08 00 | add to the end -01329141 35 v 01 annex 0 002 @ 01328705 v 0000 + 02713594 n 0101 02 + 08 00 + 11 00 | attach to -01329239 35 v 04 sew 0 run_up 1 sew_together 0 stitch 0 021 * 01291069 v 0000 @ 01340439 v 0000 + 04321238 n 0401 + 10657306 n 0401 + 00715674 n 0402 + 04179385 n 0402 + 10584318 n 0101 + 00715674 n 0101 ~ 01329732 v 0000 ~ 01329875 v 0000 ~ 01330093 v 0000 ~ 01330269 v 0000 ~ 01330567 v 0000 ~ 01330822 v 0000 ~ 01331147 v 0000 ~ 01331237 v 0000 ~ 01331348 v 0000 ~ 01331518 v 0000 ~ 01331689 v 0000 ~ 01671463 v 0000 ~ 01671609 v 0000 02 + 02 00 + 08 00 | fasten by sewing; do needlework -01329732 35 v 01 hem 0 002 @ 01329239 v 0000 + 03513627 n 0101 01 + 08 00 | fold over and sew together to provide with a hem; "hem my skirt" -01329875 35 v 01 resew 0 001 @ 01329239 v 0000 01 + 08 00 | sew again; "The cuff of the coat had been resewn" -01329987 35 v 01 unpick 1 001 @ 01519977 v 0000 01 + 08 00 | undo (the stitches) of (a piece of sewing) -01330093 35 v 01 overcast 0 003 @ 01329239 v 0000 + 03863442 n 0101 + 03863442 n 0102 01 + 08 00 | sew with an overcast stitch from one section to the next; "overcast books" -01330269 35 v 01 overcast 1 004 @ 01329239 v 0000 + 03863442 n 0101 + 03863442 n 0102 ~ 01330442 v 0000 01 + 08 00 | sew over the edge of with long slanting wide stitches -01330442 35 v 01 oversew 0 001 @ 01330269 v 0000 01 + 08 00 | sew (two edges) with close stitches that pass over them both -01330567 35 v 01 backstitch 0 002 @ 01329239 v 0000 + 02771383 n 0101 02 + 02 00 + 08 00 | do backstitches -01330676 35 v 01 darn 0 004 * 01329239 v 0000 @ 00260648 v 0000 + 00267217 n 0101 + 09992138 n 0101 01 + 08 00 | repair by sewing; "darn socks" -01330822 35 v 03 gather 3 pucker 1 tuck 3 006 @ 01329239 v 0000 + 04494906 n 0301 + 10732748 n 0301 + 13907847 n 0201 + 03428805 n 0101 + 03428805 n 0102 01 + 08 00 | draw together into folds or puckers -01331027 35 v 01 needle 0 003 @ 01440801 v 0000 ;c 04179385 n 0000 + 03816136 n 0101 01 + 08 00 | prick with a needle -01331147 35 v 01 finedraw 0 001 @ 01329239 v 0000 01 + 08 00 | sew together very finely -01331237 35 v 01 fell 2 002 @ 01329239 v 0000 + 03326475 n 0101 01 + 08 00 | sew a seam by folding the edges -01331348 35 v 02 baste 0 tack 5 003 @ 01329239 v 0000 + 09843048 n 0202 + 02805111 n 0101 02 + 02 00 + 08 00 | sew together loosely, with large stitches; "baste a hem" -01331518 35 v 01 hemstitch 0 004 @ 01329239 v 0000 + 03514693 n 0101 + 03514588 n 0101 + 03514693 n 0102 02 + 02 00 + 08 00 | sew with hemstitches; "hemstitch a sleeve" -01331689 35 v 02 tick 0 retick 0 003 @ 01329239 v 0000 + 04432308 n 0101 + 04432662 n 0101 01 + 08 00 | sew; "tick a mattress" -01331818 35 v 01 tape 0 003 @ 01296462 v 0000 + 04391569 n 0101 ~ 01331988 v 0000 02 + 08 00 + 21 00 | fasten or attach with tape; "tape the shipping label to the box" -01331988 35 v 02 scotch_tape 0 sellotape 0 003 @ 01331818 v 0000 + 02992795 n 0203 + 02992795 n 0102 02 + 08 00 + 21 00 | fasten or attach with sellotape; "The hotel manager scotch taped a note to the guest's door" -01332205 35 v 02 glue 0 paste 1 006 @ 01296462 v 0000 + 07272545 n 0203 + 14704966 n 0201 + 10404998 n 0201 + 14702875 n 0101 ~ 01332483 v 0000 02 + 08 00 + 21 00 | join or attach with or as if with glue; "paste the sign on the wall"; "cut and paste the sentence in the text" -01332483 35 v 01 epoxy 0 002 @ 01332205 v 0000 + 14902733 n 0101 01 + 08 00 | glue with epoxy; "epoxy the shards" -01332599 35 v 01 paste 2 002 @ 01332730 v 0000 + 10404998 n 0101 01 + 21 00 | cover the surface of; "paste the wall with burlap" -01332730 35 v 01 cover 0 089 $ 01336635 v 0000 + 02840619 n 0103 + 04151940 n 0102 + 03122748 n 0101 ! 01339505 v 0101 $ 01207951 v 0000 ~ 01208400 v 0000 ~ 01208549 v 0000 ~ 01233387 v 0000 ~ 01233993 v 0000 ~ 01234379 v 0000 ~ 01234500 v 0000 ~ 01234793 v 0000 ~ 01234920 v 0000 ~ 01235073 v 0000 ~ 01235224 v 0000 ~ 01251828 v 0000 ~ 01263904 v 0000 ~ 01264283 v 0000 ~ 01267998 v 0000 ~ 01268112 v 0000 ~ 01268297 v 0000 ~ 01268457 v 0000 ~ 01268571 v 0000 ~ 01268726 v 0000 ~ 01269224 v 0000 ~ 01269379 v 0000 ~ 01269844 v 0000 ~ 01270784 v 0000 ~ 01271189 v 0000 ~ 01272798 v 0000 ~ 01283208 v 0000 ~ 01313592 v 0000 ~ 01316955 v 0000 ~ 01332599 v 0000 ~ 01334535 v 0000 ~ 01334647 v 0000 ~ 01334744 v 0000 ~ 01334931 v 0000 ~ 01335075 v 0000 ~ 01335322 v 0000 ~ 01335461 v 0000 ~ 01335588 v 0000 ~ 01335711 v 0000 ~ 01335804 v 0000 ~ 01336159 v 0000 ~ 01336334 v 0000 ~ 01336440 v 0000 ~ 01336541 v 0000 ~ 01337092 v 0000 ~ 01337224 v 0000 ~ 01337412 v 0000 ~ 01337526 v 0000 ~ 01337653 v 0000 ~ 01337819 v 0000 ~ 01337927 v 0000 ~ 01338113 v 0000 ~ 01338247 v 0000 ~ 01338501 v 0000 ~ 01338663 v 0000 ~ 01339050 v 0000 ~ 01358328 v 0000 ~ 01358737 v 0000 ~ 01358855 v 0000 ~ 01359007 v 0000 ~ 01362430 v 0000 ~ 01362568 v 0000 ~ 01363482 v 0000 ~ 01363648 v 0000 ~ 01365131 v 0000 ~ 01373551 v 0000 ~ 01373718 v 0000 ~ 01517175 v 0000 ~ 01568886 v 0000 ~ 01580467 v 0000 ~ 01581635 v 0000 ~ 01599805 v 0000 ~ 01600355 v 0000 ~ 01602821 v 0000 ~ 01603032 v 0000 ~ 01603175 v 0000 ~ 01603732 v 0000 ~ 01607871 v 0000 ~ 01608340 v 0000 ~ 01611901 v 0000 ~ 01612487 v 0000 ~ 01612660 v 0000 ~ 01612964 v 0000 ~ 01614907 v 0000 02 + 08 00 + 11 00 | provide with a covering or cause to be covered; "cover her face with a handkerchief"; "cover the child with a blanket"; "cover the grave with flowers" -01334535 35 v 01 cloak 0 001 @ 01332730 v 0000 01 + 09 00 | cover with or as if with a cloak; "cloaked monks" -01334647 35 v 01 coif 0 002 @ 01332730 v 0000 + 03065243 n 0101 01 + 09 00 | cover with a coif -01334744 35 v 01 hold 9 001 @ 01332730 v 0000 01 + 08 00 | cover as for protection against noise or smell; "She held her ears when the jackhammer started to operate"; "hold one's nose" -01334931 35 v 01 jacket 0 001 @ 01332730 v 0000 01 + 08 00 | provide with a thermally non-conducting cover; "The tubing needs to be jacketed" -01335075 35 v 01 foil 0 002 @ 01332730 v 0000 + 03375694 n 0101 02 + 08 00 + 11 00 | cover or back with foil; "foil mirrors" -01335202 35 v 01 enrobe 0 001 @ 01264283 v 0000 01 + 08 00 | provide with a coating; "enrobe the nuts with chocolate" -01335322 35 v 02 whiteout 0 white_out 0 001 @ 01332730 v 0000 01 + 08 00 | cover up with a liquid correction fluid; "white-out the typo" -01335461 35 v 01 flash 0 001 @ 01332730 v 0000 01 + 08 00 | protect by covering with a thin sheet of metal; "flash the roof" -01335588 35 v 01 pall 0 003 @ 01332730 v 0000 + 03151077 n 0105 + 03879116 n 0101 02 + 08 00 + 11 00 | cover with a pall -01335711 35 v 01 sod 0 002 @ 01332730 v 0000 + 09463919 n 0102 01 + 08 00 | cover with sod -01335804 35 v 01 bind 2 006 @ 01332730 v 0000 + 02840245 n 0101 + 02840927 n 0101 + 02840619 n 0101 + 02840515 n 0101 ~ 01336007 v 0000 01 + 08 00 | provide with a binding; "bind the books in leather" -01336007 35 v 01 rebind 0 001 @ 01335804 v 0000 01 + 08 00 | provide with a new binding; "The tattered old book is valuable and we need to rebind it" -01336159 35 v 02 plank 0 plank_over 0 004 @ 01332730 v 0000 + 15101854 n 0102 + 03956623 n 0101 + 00714693 n 0101 01 + 08 00 | cover with planks; "The streets were planked" -01336334 35 v 01 parcel 1 001 @ 01332730 v 0000 01 + 08 00 | cover with strips of canvas; "parcel rope" -01336440 35 v 01 flake 1 001 @ 01332730 v 0000 01 + 08 00 | cover with flakes or as if with flakes -01336541 35 v 01 recover 0 001 @ 01332730 v 0000 01 + 08 00 | cover anew; "recover a chair" -01336635 35 v 02 overlay 0 cover e 005 + 04453910 n 0202 + 04187233 n 0102 + 04187233 n 0103 $ 01332730 v 0000 ~ 01336864 v 0000 02 + 08 00 + 11 00 | put something on top of something else; "cover the meat with a lot of gravy" -01336864 35 v 01 splash 6 002 @ 01336635 v 0000 + 13761171 n 0102 02 + 08 00 + 11 00 | mark or overlay with patches of contrasting color or texture; cause to appear splashed or spattered; "The mountain was splashed with snow" -01337092 35 v 01 hood 0 002 @ 01332730 v 0000 + 03531281 n 0101 02 + 08 00 + 10 00 | cover with a hood; "The bandits were hooded" -01337224 35 v 01 cowl 0 004 @ 01332730 v 0000 + 03124474 n 0101 + 03530910 n 0104 + 03530910 n 0103 02 + 08 00 + 10 00 | cover with or as with a cowl; "cowl the boys and veil the girls" -01337412 35 v 01 clapboard 0 002 @ 01332730 v 0000 + 15103007 n 0101 02 + 08 00 + 11 00 | cover with clapboards -01337526 35 v 01 canopy 0 003 @ 01332730 v 0000 + 02952237 n 0101 + 02951843 n 0101 02 + 08 00 + 11 00 | cover with a canopy -01337653 35 v 01 bread 0 003 @ 01332730 v 0000 ;c 00243918 n 0000 + 07679356 n 0101 01 + 08 00 | cover with bread crumbs; "bread the pork chops before frying them" -01337819 35 v 01 blinker 0 002 @ 01332730 v 0000 + 04593629 n 0102 01 + 08 00 | put blinders on (a horse) -01337927 35 v 01 blindfold 0 002 @ 01332730 v 0000 + 02851939 n 0101 01 + 09 00 | cover the eyes of (someone) to prevent him from seeing; "the hostage was blindfolded and driven away" -01338113 35 v 02 aluminize 0 aluminise 0 003 @ 01332730 v 0000 + 14627820 n 0201 + 14627820 n 0101 01 + 08 00 | cover with aluminum -01338247 35 v 01 crown 0 002 @ 01332730 v 0000 + 05308141 n 0101 01 + 08 00 | put an enamel cover on; "crown my teeth" -01338368 35 v 01 slate 0 003 @ 01233993 v 0000 + 15043002 n 0101 + 01105152 n 0101 01 + 08 00 | cover with slate; "slate the roof" -01338501 35 v 01 sheet 0 003 @ 01332730 v 0000 + 04188179 n 0101 + 04189282 n 0101 02 + 08 00 + 09 00 | cover with a sheet, as if by wrapping; "sheet the body" -01338663 35 v 01 tile 0 006 @ 01332730 v 0000 + 15074568 n 0101 + 04435180 n 0101 + 10710913 n 0101 + 00719274 n 0101 ~ 01338878 v 0000 01 + 08 00 | cover with tiles; "tile the wall and the floor of the bathroom" -01338878 35 v 01 tessellate 0 004 @ 01338663 v 0000 + 00263164 n 0101 + 04414909 n 0101 + 04414821 n 0101 01 + 08 00 | tile with tesserae; "tessellate the kitchen floor" -01339050 35 v 01 lag 1 002 @ 01332730 v 0000 + 14786943 n 0101 01 + 08 00 | cover with lagging to prevent heat loss; "lag pipes" -01339181 35 v 01 barb 0 002 @ 00126264 v 0000 + 02790550 n 0101 01 + 08 00 | provide with barbs; "barbed wire" -01339294 35 v 03 submerge 0 drown 0 overwhelm 0 002 @ 01207951 v 0000 ^ 02172534 v 0201 02 + 08 00 + 11 00 | cover completely or make imperceptible; "I was drowned in work"; "The noise drowned out her speech" -01339505 35 v 02 uncover 0 expose 0 007 ! 01332730 v 0101 ~ 01284271 v 0000 ~ 01339812 v 0000 ~ 01339903 v 0000 ~ 01340028 v 0000 ~ 01358573 v 0000 ~ 01483478 v 0000 02 + 08 00 + 11 00 | remove all or part of one's clothes to show one's body; "uncover your belly"; "The man exposed himself in the subway" -01339812 35 v 01 undrape 0 001 @ 01339505 v 0000 01 + 08 00 | strip something of drapery -01339903 35 v 01 unclothe 0 001 @ 01339505 v 0000 01 + 08 00 | take the covers off; "She unclothed her innermost feelings" -01340028 35 v 01 bare 0 001 @ 01339505 v 0000 02 + 08 00 + 09 00 | lay bare; "bare your breasts"; "bare your feelings" -01340149 35 v 02 pin_down 0 pin_up 0 001 @ 01296462 v 0000 02 + 20 00 + 21 00 | attach with or as if with a pin; "pin up a picture" -01340283 35 v 02 peg 0 peg_down 0 003 @ 01296462 v 0000 + 03905540 n 0101 ^ 00715541 v 0102 01 + 08 00 | fasten or secure with a wooden pin; "peg a tent" -01340439 35 v 03 fasten 1 fix 0 secure 1 067 > 01343892 v 0000 @ 01296462 v 0000 + 04777098 n 0204 + 03354613 n 0201 + 10080337 n 0101 + 03323703 n 0101 + 00147595 n 0101 ! 01344293 v 0101 ~ 00083523 v 0000 ~ 01285440 v 0000 ~ 01286151 v 0000 ~ 01286554 v 0000 ~ 01286777 v 0000 ~ 01287681 v 0000 ~ 01288636 v 0000 ~ 01288921 v 0000 ~ 01289026 v 0000 ~ 01289330 v 0000 ~ 01302982 v 0000 ~ 01303547 v 0000 ~ 01304466 v 0000 ~ 01304602 v 0000 ~ 01304716 v 0000 ~ 01304944 v 0000 ~ 01305099 v 0000 ~ 01305542 v 0000 ~ 01306175 v 0000 ~ 01329239 v 0000 ~ 01341815 v 0000 ~ 01342124 v 0000 ~ 01342340 v 0000 ~ 01342439 v 0000 ~ 01342536 v 0000 ~ 01342636 v 0000 ~ 01342755 v 0000 ~ 01342910 v 0000 ~ 01343610 v 0000 ~ 01343773 v 0000 ~ 01344643 v 0000 ~ 01344748 v 0000 ~ 01344903 v 0000 ~ 01348174 v 0000 ~ 01348452 v 0000 ~ 01348599 v 0000 ~ 01353670 v 0000 ~ 01357429 v 0000 ~ 01360423 v 0000 ~ 01365549 v 0000 ~ 01366061 v 0000 ~ 01366653 v 0000 ~ 01366809 v 0000 ~ 01367069 v 0000 ~ 01367266 v 0000 ~ 01367862 v 0000 ~ 01368264 v 0000 ~ 01481360 v 0000 ~ 01481647 v 0000 ~ 01528069 v 0000 ~ 01531025 v 0000 ~ 01548290 v 0000 ~ 01548576 v 0000 ~ 01591940 v 0000 ~ 01599052 v 0000 ~ 01600098 v 0000 ~ 01604586 v 0000 ~ 01604696 v 0000 ~ 01608004 v 0000 03 + 08 00 + 11 00 + 21 00 | cause to be firmly attached; "fasten the lock onto the door"; "she fixed her gaze on the man" -01341815 35 v 01 crank 2 001 @ 01340439 v 0000 01 + 08 00 | fasten with a crank -01341897 35 v 01 reeve 0 001 @ 02053190 v 0000 01 + 08 00 | fasten by passing through a hole or around something -01342012 35 v 01 padlock 0 002 @ 01348174 v 0000 + 03874599 n 0101 02 + 08 00 + 21 00 | fasten with a padlock -01342124 35 v 01 noose 0 002 @ 01340439 v 0000 + 03829563 n 0101 01 + 08 00 | secure with a noose -01342224 35 v 01 unzip 0 002 @ 01344293 v 0000 ! 01353670 v 0101 01 + 08 00 | open the zipper of; "unzip the bag" -01342340 35 v 01 chock 1 002 @ 01340439 v 0000 + 03023878 n 0101 01 + 08 00 | secure with chocks -01342439 35 v 01 brad 0 002 @ 01340439 v 0000 + 02888817 n 0101 01 + 08 00 | fasten with brads -01342536 35 v 01 bight 0 002 @ 01340439 v 0000 + 13875884 n 0101 01 + 08 00 | fasten with a bight -01342636 35 v 01 belay 0 002 @ 01340439 v 0000 + 09218494 n 0101 01 + 08 00 | fasten a boat to a bitt, pin, or cleat -01342755 35 v 01 belay 1 002 @ 01340439 v 0000 + 09218494 n 0101 02 + 08 00 + 09 00 | turn a rope round an object or person in order to secure it or him -01342910 35 v 01 bar 1 004 @ 01340439 v 0000 + 02789271 n 0101 + 02788689 n 0101 ! 01343079 v 0101 01 + 08 00 | secure with, or as if with, bars; "He barred the door" -01343079 35 v 01 unbar 0 003 * 01519977 v 0000 @ 01346003 v 0000 ! 01342910 v 0101 01 + 08 00 | remove a bar from (a door) -01343204 35 v 01 mount 0 003 @ 01296462 v 0000 + 02769460 n 0102 ~ 01343372 v 0000 02 + 08 00 + 21 00 | attach to a support; "They mounted the aerator on a floating" -01343372 35 v 01 remount 0 001 @ 01343204 v 0000 01 + 08 00 | mount again, as after disassembling something -01343482 35 v 01 impact 1 002 @ 01527271 v 0000 + 14577331 n 0101 02 + 08 00 + 21 00 | press or wedge together; pack together -01343610 35 v 01 clamp 0 002 @ 01340439 v 0000 + 03036866 n 0101 01 + 08 00 | fasten or fix with a clamp; "clamp the chair together until the glue has hardened" -01343773 35 v 01 velcro 0 002 @ 01340439 v 0000 + 04524594 n 0101 01 + 08 00 | fasten with Velcro; "velcro the belt" -01343892 35 v 01 fasten 0 008 @ 01290422 v 0000 + 03323703 n 0101 + 03323703 n 0102 ! 01344140 v 0101 ~ 00486850 v 0000 ~ 01614235 v 0000 ~ 01614426 v 0000 ~ 01614581 v 0000 01 + 04 00 | become fixed or fastened; "This dress fastens in the back" -01344140 35 v 01 unfasten 0 003 @ 01346804 v 0000 + 00149262 n 0103 ! 01343892 v 0101 01 + 01 00 | become undone or untied; "The shoelaces unfastened" -01344293 35 v 01 unfasten 1 008 > 01344140 v 0000 @ 01519977 v 0000 + 10737431 n 0103 + 00149262 n 0103 ! 01340439 v 0101 ~ 01288808 v 0000 ~ 01342224 v 0000 ~ 01344537 v 0000 02 + 08 00 + 11 00 | cause to become undone; "unfasten your belt" -01344537 35 v 01 unbend 1 001 @ 01344293 v 0000 01 + 08 00 | unfasten, as a sail, from a spar or a stay -01344643 35 v 01 stay 0 002 @ 01340439 v 0000 + 04307619 n 0101 02 + 08 00 + 21 00 | fasten with stays -01344748 35 v 01 clinch 0 002 $ 01344903 v 0000 @ 01340439 v 0000 02 + 08 00 + 11 00 | flatten the ends (of nails and rivets); "the nails were clinched" -01344903 35 v 01 clinch 1 003 $ 01344748 v 0000 @ 01340439 v 0000 + 03042984 n 0101 02 + 08 00 + 11 00 | secure or fasten by flattening the ends of nails or bolts; "The girder was clinched into the wall" -01345109 35 v 02 close 0 shut 0 018 > 01346978 v 0000 + 04211356 n 0201 + 04211528 n 0201 + 00344040 n 0201 ^ 01347678 v 0205 ^ 01587062 v 0204 + 01074694 n 0102 + 00344040 n 0102 ! 01346003 v 0101 ~ 00355670 v 0000 ~ 01220528 v 0000 ~ 01242832 v 0000 ~ 01242996 v 0000 ~ 01243148 v 0000 ~ 01345589 v 0000 ~ 01345769 v 0000 $ 01346978 v 0000 ~ 01354006 v 0000 02 + 08 00 + 11 00 | move so that an opening or passage is obstructed; make shut; "Close the door"; "shut the window" -01345589 35 v 01 roll_up 1 001 @ 01345109 v 0000 01 + 08 00 | close (a car window) by causing it to move up, as with a handle; "she rolled up the window when it started to rain" -01345769 35 v 01 bung 0 002 @ 01345109 v 0000 + 02919648 n 0101 01 + 08 00 | close with a cork or stopper -01345877 35 v 02 pen_up 0 fold 4 002 @ 01301410 v 0000 + 03376159 n 0201 02 + 01 00 + 02 00 | confine in a fold, like sheep -01346003 35 v 02 open 0 open_up 0 017 > 01346804 v 0000 + 10737431 n 0102 + 03848348 n 0101 + 00383390 n 0101 + 00338641 n 0101 ! 01345109 v 0101 ~ 01343079 v 0000 ~ 01346430 v 0000 ~ 01346548 v 0000 ~ 01346693 v 0000 ~ 01348705 v 0000 ~ 01348987 v 0000 ~ 01353873 v 0000 ~ 01423793 v 0000 ~ 01593254 v 0000 ~ 01593614 v 0000 ~ 01603885 v 0000 02 + 08 00 + 11 00 | cause to open or to become open; "Mary opened the car door" -01346430 35 v 01 break_open 1 001 @ 01346003 v 0000 01 + 08 00 | open with force; "He broke open the picnic basket" -01346548 35 v 01 click_open 0 001 @ 01346003 v 0000 02 + 08 00 + 11 00 | open with a clicking sound; "These keys have clicked open many doors" -01346693 35 v 01 reopen 0 001 @ 01346003 v 0000 01 + 08 00 | open again or anew; "They reopened the theater" -01346804 35 v 02 open 6 open_up 6 005 @ 00146138 v 0000 + 00383390 n 0101 ! 01346978 v 0101 ~ 01344140 v 0000 ~ 01347172 v 0000 01 + 01 00 | become open; "The door opened" -01346978 35 v 02 close 6 shut 6 005 $ 01345109 v 0000 @ 00146138 v 0000 + 04211528 n 0201 + 00344040 n 0102 ! 01346804 v 0101 01 + 01 00 | become closed; "The windows closed with a loud bang" -01347172 35 v 01 fly_open 0 001 @ 01346804 v 0000 01 + 01 00 | come open suddenly; "the doors flew open in the strong gust" -01347298 35 v 01 confine 3 006 @ 02422663 v 0000 ~ 01302577 v 0000 ~ 01302717 v 0000 ~ 01347519 v 0000 ~ 01347678 v 0000 ~ 01348013 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | prevent from leaving or from being removed -01347519 35 v 02 coop_up 0 coop_in 0 001 @ 01347298 v 0000 02 + 09 00 + 20 00 | confine in or as if in a coop; "she coops herself up in the library all day" -01347678 35 v 07 lock_in 0 lock_away 0 lock 2 put_away 1 shut_up 0 shut_away 0 lock_up 0 002 @ 01347298 v 0000 + 00827638 n 0702 04 + 08 00 + 09 00 + 20 00 + 21 00 | place in a place where something cannot be removed or someone cannot escape; "The parents locked her daughter up for the weekend"; "She locked her jewels in the safe" -01348013 35 v 02 lock_in 1 seal_in 0 001 @ 01347298 v 0000 02 + 08 00 + 11 00 | close with or as if with a tight seal; "This vacuum pack locks in the flavor!" -01348174 35 v 01 lock 0 009 @ 01340439 v 0000 + 03682487 n 0101 + 03683606 n 0101 ! 01348705 v 0101 ^ 01347678 v 0107 ^ 01348452 v 0101 ! 00219963 v 0101 ~ 01342012 v 0000 ~ 01348838 v 0000 04 + 08 00 + 11 00 + 20 00 + 21 00 | fasten with a lock; "lock the bike to the fence" -01348452 35 v 01 lock_up 1 002 @ 01340439 v 0000 + 00827638 n 0102 01 + 08 00 | secure by locking; "lock up the house before you go on vacation" -01348599 35 v 01 hasp 0 002 @ 01340439 v 0000 + 03497352 n 0101 01 + 08 00 | secure or lock with a hasp -01348705 35 v 01 unlock 0 002 @ 01346003 v 0000 ! 01348174 v 0101 03 + 08 00 + 11 00 + 21 00 | open the lock of; "unlock the door" -01348838 35 v 01 bolt 0 003 @ 01348174 v 0000 + 02865931 n 0101 ! 01348987 v 0101 02 + 08 00 + 11 00 | secure or lock with a bolt; "bolt the door" -01348987 35 v 01 unbolt 0 003 * 01519977 v 0000 @ 01346003 v 0000 ! 01348838 v 0101 02 + 08 00 + 11 00 | undo the bolt of; "unbolt the door" -01349130 35 v 02 wring 0 wrench 1 003 @ 01223182 v 0000 ^ 01349318 v 0101 $ 01350699 v 0000 03 + 08 00 + 11 00 + 21 00 | twist and compress, as if in pain or anguish; "Wring one's hand" -01349318 35 v 02 wring_out 0 squeeze_out 0 002 * 01387786 v 0000 @ 01351170 v 0000 02 + 08 00 + 11 00 | extract (liquid) by squeezing or pressing; "wring out the washcloth" -01349493 35 v 02 wrench 0 twist 6 004 @ 01609287 v 0000 + 07351909 n 0201 + 00343249 n 0203 + 04606574 n 0101 03 + 08 00 + 11 00 + 21 00 | twist or pull violently or suddenly, especially so as to remove (something) from that to which it is attached or from where it originates; "wrench a window off its hinges"; "wrench oneself free from somebody's grip"; "a deep sigh was wrenched from his chest" -01349893 35 v 01 gather 5 001 @ 01609287 v 0000 01 + 08 00 | draw and bring closer; "she gathered her shawl around her shoulders" -01350025 35 v 01 attract 1 004 @ 01609287 v 0000 + 00169955 a 0101 + 01469927 a 0101 + 11426530 n 0101 01 + 11 00 | exert a force on (a body) causing it to approach or prevent it from moving away; "the gravitational pull of a planet attracts other bodies" -01350283 35 v 01 grab 5 002 @ 01212572 v 0000 + 00138956 n 0102 02 + 08 00 + 09 00 | take or grasp suddenly; "She grabbed the child's hand and ran out of the room" -01350449 35 v 01 force 5 009 @ 02367363 v 0000 + 05194578 n 0101 + 11458624 n 0101 + 10461424 n 0102 ^ 01281611 v 0102 ^ 01375637 v 0102 ^ 01468058 v 0102 ^ 01506157 v 0104 ~ 01609287 v 0000 01 + 08 00 | do forcibly; exert force; "Don't force it!" -01350699 35 v 04 contort 0 deform 2 distort 0 wring 1 009 $ 01349130 v 0000 $ 01350971 v 0000 @ 01223182 v 0000 + 13867276 n 0302 + 07358060 n 0201 + 00404726 n 0202 + 13885370 n 0104 + 00404726 n 0101 ~ 00469030 v 0000 02 + 08 00 + 11 00 | twist and press out of shape -01350971 35 v 01 wring 2 004 @ 01593937 v 0000 + 07351031 n 0102 + 04607242 n 0101 $ 01350699 v 0000 02 + 08 00 + 11 00 | twist, squeeze, or compress in order to extract liquid; "wring the towels" -01351170 35 v 06 extract 4 pull_out 0 pull a pull_up 0 take_out 9 draw_out 5 008 @ 00173338 v 0000 + 01526905 a 0102 + 00392950 n 0101 + 03308152 n 0101 ~ 01349318 v 0000 ~ 01351601 v 0000 ~ 01359917 v 0000 $ 01995211 v 0000 03 + 08 00 + 11 00 + 21 00 | remove, usually with some force or effort; also used in an abstract sense; "pull weeds"; "extract a bad tooth"; "take out a splinter"; "extract information from the telegram" -01351601 35 v 01 demodulate 0 003 @ 01351170 v 0000 + 06282209 n 0101 + 03181501 n 0102 01 + 08 00 | extract information from a modulated carrier wave -01351754 35 v 03 press_out 9 express b extract 5 005 @ 02210855 v 0000 + 01526905 a 0302 + 14848785 n 0302 + 00358528 n 0201 ~ 01352010 v 0000 01 + 08 00 | obtain from a substance, as by mechanical action; "Italians express coffee rather than filter it" -01352010 35 v 01 ream 0 002 @ 01351754 v 0000 + 04059516 n 0101 01 + 08 00 | squeeze the juice out (of a fruit) with a reamer; "ream oranges" -01352154 35 v 02 winkle 0 winkle_out 0 001 @ 01214597 v 0000 02 + 08 00 + 09 00 | remove or displace from a position -01352273 35 v 01 pulp 1 002 @ 01352390 v 0000 + 13096035 n 0101 01 + 08 00 | remove the pulp from, as from a fruit -01352390 35 v 01 take_out 0 002 @ 00173338 v 0000 ~ 01352273 v 0000 01 + 08 00 | remove something from a container or an enclosed space -01352528 35 v 01 unscrew 0 002 @ 00419375 v 0000 * 02045790 v 0000 02 + 08 00 + 21 00 | loosen something by unscrewing it; "unscrew the outlet plate" -01352680 35 v 01 unscrew 1 002 @ 00419375 v 0000 ! 01352806 v 0101 01 + 08 00 | loosen by turning; "unscrew the bottle cap" -01352806 35 v 01 screw 1 004 @ 00420132 v 0000 ! 01352680 v 0101 + 04153751 n 0101 + 04154340 n 0101 01 + 08 00 | tighten or fasten by means of screwing motions; "Screw the bottle cap on" -01352996 35 v 02 screw 2 drive_in 0 002 @ 02045043 v 0000 + 04153751 n 0101 02 + 08 00 + 21 00 | cause to penetrate, as with a circular motion; "drive in screws or bolts" -01353169 35 v 01 screw 3 004 @ 02045043 v 0000 + 04153751 n 0101 + 04154340 n 0101 ~ 01353311 v 0000 02 + 08 00 + 11 00 | turn like a screw -01353311 35 v 01 screw_up 0 001 @ 01353169 v 0000 02 + 08 00 + 11 00 | screw or turn higher -01353405 35 v 01 seal 0 008 * 01340439 v 0000 @ 01423285 v 0000 + 06855985 n 0101 + 04159058 n 0101 + 14705718 n 0101 + 10567268 n 0101 ! 01353873 v 0101 $ 01354006 v 0000 02 + 08 00 + 11 00 | close with or as if with a seal; "She sealed the letter with hot wax" -01353670 35 v 03 zip_up 0 zipper 0 zip 0 005 @ 01340439 v 0000 + 04238321 n 0302 + 04238321 n 0303 + 04238321 n 0203 ! 01342224 v 0101 01 + 08 00 | close with a zipper; "Zip up your jacket--it's cold" -01353873 35 v 01 unseal 0 002 @ 01346003 v 0000 ! 01353405 v 0101 02 + 08 00 + 11 00 | break the seal of; "He unsealed the letter" -01354006 35 v 02 seal 3 seal_off 0 009 $ 01353405 v 0000 @ 01345109 v 0000 + 04159354 n 0101 + 14705718 n 0101 + 14705718 n 0102 ~ 01354285 v 0000 ~ 01354405 v 0000 ~ 01354565 v 0000 ~ 01484884 v 0000 02 + 08 00 + 11 00 | make tight; secure against leakage; "seal the windows" -01354285 35 v 01 reseal 0 001 @ 01354006 v 0000 01 + 08 00 | seal again; "reseal the bottle after using the medicine" -01354405 35 v 01 waterproof 0 004 @ 01354006 v 0000 + 04561734 n 0101 + 04049405 n 0102 + 00830099 n 0101 01 + 08 00 | make watertight; "Waterproof the coat" -01354565 35 v 02 caulk 0 calk 0 001 @ 01354006 v 0000 01 + 08 00 | seal with caulking; "caulk the window" -01354673 35 v 04 connect 0 link 0 tie 1 link_up 0 021 + 03673971 n 0402 + 03673971 n 0303 + 13792692 n 0201 + 03673971 n 0201 + 00148978 n 0201 + 00563980 a 0101 + 03091374 n 0103 + 03091374 n 0104 ! 01356038 v 0101 ~ 01291069 v 0000 ~ 01292534 v 0000 ~ 01295275 v 0000 ~ 01296462 v 0000 ~ 01355276 v 0000 ~ 01355411 v 0000 ~ 01355646 v 0000 ~ 01355810 v 0000 ~ 01355906 v 0000 ~ 01614774 v 0000 ~ 02622033 v 0000 ~ 02623194 v 0000 04 + 08 00 + 11 00 + 20 00 + 21 00 | connect, fasten, or put together two or more pieces; "Can you connect the two loudspeakers?"; "Tie the ropes together"; "Link arms" -01355276 35 v 01 daisy-chain 0 001 @ 01354673 v 0000 01 + 08 00 | connect devices on a part of a chip or circuit board in a computer -01355411 35 v 01 tie 2 002 @ 01354673 v 0000 + 06866124 n 0101 01 + 08 00 | unite musical notes by a tie -01355518 35 v 01 communicate 0 002 @ 02622812 v 0000 + 13792842 n 0101 01 + 04 00 | join or connect; "The rooms communicated" -01355646 35 v 02 interconnect 1 interlink 1 002 @ 01354673 v 0000 + 00145929 n 0101 04 + 08 00 + 11 00 + 20 00 + 21 00 | cause to be interconnected or interwoven -01355810 35 v 01 tee 1 001 @ 01354673 v 0000 01 + 08 00 | connect with a tee; "tee two pipes" -01355906 35 v 01 put_through 0 001 @ 01354673 v 0000 01 + 09 00 | connect by telephone; "the operator put a call through to Rio" -01356038 35 v 01 disconnect 0 005 @ 01556921 v 0000 + 00385649 n 0101 ! 01354673 v 0101 ~ 01297813 v 0000 ~ 01298668 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 | make disconnected, disjoin or unfasten -01356256 35 v 02 tease 0 card 0 001 @ 01458973 v 0000 02 + 08 00 + 11 00 | separate the fibers of; "tease wool" -01356370 35 v 02 affix 0 stick_on 0 006 > 01356750 v 0000 @ 01296462 v 0000 ~ 01273814 v 0000 ~ 01356582 v 0000 ~ 01591621 v 0000 ~ 01612818 v 0000 03 + 08 00 + 11 00 + 21 00 | attach to; "affix the seal here" -01356582 35 v 01 seal 1 005 @ 01356370 v 0000 + 06855985 n 0101 + 04159058 n 0101 + 04160036 n 0102 + 10567268 n 0101 01 + 08 00 | affix a seal to; "seal the letter" -01356750 35 v 06 adhere 0 hold_fast 0 bond 0 bind 6 stick 0 stick_to 3 013 @ 01290422 v 0000 + 07272545 n 0502 + 14704465 n 0401 + 04689198 n 0401 + 00053248 a 0301 + 04935528 n 0304 + 02755352 n 0302 + 03323703 n 0203 + 00052672 a 0101 + 00053032 a 0101 + 04935528 n 0102 ~ 00567291 v 0000 $ 01220885 v 0000 02 + 01 00 + 04 00 | stick to firmly; "Will this wallpaper adhere to the wall?" -01357141 35 v 01 leech_onto 0 001 @ 01290255 v 0000 01 + 09 00 | admire boundlessly and follow around; "the groupies leeched onto the rock star" -01357288 35 v 01 gum_up 0 001 @ 01478603 v 0000 02 + 01 00 + 11 00 | stick together as if with gum; "the inside of the pipe has gummed up" -01357429 35 v 01 tack 0 007 @ 01340439 v 0000 + 04383130 n 0101 + 04303357 n 0103 + 10687922 n 0101 + 09843048 n 0102 ^ 01328513 v 0103 ~ 01357656 v 0000 02 + 08 00 + 21 00 | fasten with tacks; "tack the notice on the board" -01357656 35 v 01 thumbtack 0 002 @ 01357429 v 0000 + 04431745 n 0101 02 + 08 00 + 21 00 | fasten with thumbtacks; "The teacher thumbtacked the notice on the bulletin board" -01357831 35 v 01 nail 0 004 @ 01296462 v 0000 + 03804744 n 0101 + 10344203 n 0101 ^ 00715541 v 0103 01 + 21 00 | attach something somewhere by means of nails; "nail the board onto the wall" -01358023 35 v 01 stud 0 003 @ 00182406 v 0000 ;c 00607775 n 0000 + 04143365 n 0102 03 + 08 00 + 11 00 + 21 00 | provide with or construct with studs; "stud the wall" -01358191 35 v 01 calk 1 003 @ 02327200 v 0000 ;c 00917211 n 0000 + 02940143 n 0101 01 + 08 00 | provide with calks; "calk horse shoes" -01358328 35 v 01 mask 0 006 @ 01332730 v 0000 + 03725035 n 0101 + 08253450 n 0104 + 03724870 n 0101 + 10297841 n 0102 ! 01358573 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | put a mask on or cover with a mask; "Mask the children for Halloween" -01358573 35 v 01 unmask 0 003 @ 01339505 v 0000 + 07215568 n 0102 ! 01358328 v 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | take the mask off; "unmask the imposter" -01358737 35 v 02 mask 1 block_out 0 002 @ 01332730 v 0000 ;c 00903559 n 0000 02 + 08 00 + 11 00 | shield from light -01358855 35 v 01 mask 2 004 * 00322847 v 0000 @ 01332730 v 0000 ;c 00243918 n 0000 + 01049475 n 0101 01 + 08 00 | cover with a sauce; "mask the meat" -01359007 35 v 01 blanket 0 002 @ 01332730 v 0000 + 09223725 n 0101 01 + 11 00 | cover as if with a blanket; "snow blanketed the fields" -01359145 35 v 01 string 0 004 @ 00126264 v 0000 + 04338143 n 0101 + 02880546 n 0102 ! 01359303 v 0101 01 + 08 00 | provide with strings; "string my guitar" -01359303 35 v 01 unstring 0 002 @ 00173338 v 0000 ! 01359145 v 0101 01 + 08 00 | remove the strings from; "unstring my guitar" -01359432 35 v 03 string 2 thread 1 draw e 010 $ 01212230 v 0000 @ 01463963 v 0000 + 04426788 n 0201 + 02861509 n 0202 + 02999757 n 0102 + 04338359 n 0101 + 04337974 n 0101 + 10662046 n 0101 ~ 01360091 v 0000 ~ 01599325 v 0000 01 + 08 00 | thread on or as if on a string; "string pearls on a string"; "the child drew glass beads on a string"; "thread dried cranberries" -01359803 35 v 01 thread 8 001 @ 01212230 v 0000 01 + 08 00 | pass through or into; "thread tape"; "thread film" -01359917 35 v 01 thread 7 001 @ 01351170 v 0000 01 + 08 00 | remove facial hair by tying a fine string around it and pulling at the string; "She had her eyebrows threaded" -01360091 35 v 01 bead 0 002 @ 01359432 v 0000 + 02815071 n 0101 01 + 08 00 | string together like beads -01360197 35 v 01 marshal 0 001 @ 01463963 v 0000 01 + 08 00 | arrange in logical order; "marshal facts or arguments" -01360316 35 v 01 string 3 001 @ 00173338 v 0000 01 + 08 00 | remove the stringy parts of; "string beans" -01360423 35 v 01 string 4 002 @ 01340439 v 0000 + 04337974 n 0101 01 + 08 00 | string together; tie or fasten with a string; "string the package" -01360571 35 v 01 string 5 003 @ 01463963 v 0000 + 04338359 n 0101 ^ 01360715 v 0101 02 + 08 00 + 21 00 | stretch out or arrange like a string -01360715 35 v 02 string_out 0 spread_out 0 001 @ 01463963 v 0000 02 + 08 00 + 21 00 | set out or stretch in a line, succession, or series; "the houses were strung out in a long row" -01360899 35 v 02 plaster 0 daub 1 014 ;c 00608896 n 0000 @ 01264283 v 0000 + 14828683 n 0201 + 00718815 n 0202 + 03957567 n 0101 + 14992287 n 0101 + 10438842 n 0101 + 00718815 n 0101 $ 01313249 v 0000 ~ 01361387 v 0000 ~ 01361561 v 0000 ~ 01361779 v 0000 ~ 01361884 v 0000 ~ 01362291 v 0000 01 + 08 00 | coat with plaster; "daub the wall" -01361240 35 v 01 render 0 002 @ 01264283 v 0000 ;c 00608896 n 0000 01 + 08 00 | coat with plastic or cement; "render the brick walls in the den" -01361387 35 v 01 render-set 0 002 @ 01360899 v 0000 ;c 00608896 n 0000 01 + 08 00 | cover with two coats of plaster; "render-set the walls so they'll look nice and smooth" -01361561 35 v 01 parget 0 008 @ 01360899 v 0000 ;c 00608896 n 0000 + 14977358 n 0101 + 03890358 n 0102 + 00718689 n 0102 + 03890358 n 0103 + 03890358 n 0101 + 00718689 n 0101 01 + 08 00 | apply ornamental plaster to -01361779 35 v 01 roughcast 1 001 @ 01360899 v 0000 01 + 08 00 | apply roughcast to; "roughcast a wall" -01361884 35 v 01 mud 1 003 @ 01360899 v 0000 ;c 00608896 n 0000 + 14956325 n 0101 01 + 08 00 | plaster with mud -01361998 35 v 01 float 0 002 @ 01252971 v 0000 ;c 00608896 n 0000 01 + 08 00 | make the surface of level or smooth; "float the plaster" -01362136 35 v 01 skimcoat 0 002 @ 01264283 v 0000 ;c 00608896 n 0000 01 + 08 00 | coat with a mixture of gypsum and spackle; "he skimcoated the drywall" -01362291 35 v 01 mortar 0 003 @ 01360899 v 0000 ;c 00608896 n 0000 + 14955889 n 0101 01 + 08 00 | plaster with mortar; "mortar the wall" -01362430 35 v 03 plaster 1 plaster_over 0 stick_on 1 002 @ 01332730 v 0000 + 00718815 n 0101 02 + 08 00 + 21 00 | apply a heavy coat to -01362568 35 v 01 plaster 2 004 @ 01332730 v 0000 + 14992613 n 0102 + 14992287 n 0101 + 00718815 n 0101 01 + 08 00 | apply a plaster cast to; "plaster the broken arm" -01362736 35 v 01 paint 0 009 @ 01264283 v 0000 + 03875218 n 0101 + 10393909 n 0101 + 00717208 n 0101 + 00609236 n 0101 ~ 01363005 v 0000 ~ 01363174 v 0000 ~ 01363320 v 0000 ~ 01365355 v 0000 01 + 08 00 | apply paint to; coat with paint; "We painted the rooms yellow" -01363005 35 v 01 grain 1 004 @ 01362736 v 0000 + 09290777 n 0101 + 04950713 n 0101 + 04951071 n 0101 01 + 08 00 | paint (a surface) to make it look like stone or wood -01363174 35 v 01 repaint 0 001 @ 01362736 v 0000 01 + 08 00 | paint again; "He repainted the wall after the child smeared it with tomato sauce" -01363320 35 v 01 airbrush 0 002 @ 01362736 v 0000 + 02685995 n 0101 01 + 08 00 | paint with an airbrush; "The old car looks like new now that we airbrushed it" -01363482 35 v 01 paint 1 003 @ 01332730 v 0000 + 03875218 n 0101 + 00717208 n 0101 02 + 08 00 + 21 00 | apply a liquid to; e.g., paint the gutters with linseed oil -01363648 35 v 02 put_on 0 apply 0 013 @ 01332730 v 0000 + 03691128 n 0202 + 00712225 n 0201 + 02730265 n 0202 ~ 01233194 v 0000 ~ 01313249 v 0000 ~ 01364019 v 0000 ~ 01364184 v 0000 ~ 01364483 v 0000 ~ 01364637 v 0000 ~ 01364733 v 0000 ~ 01364874 v 0000 ~ 01364997 v 0000 01 + 21 00 | apply to a surface; "She applied paint to the back of the house"; "Put on make-up!" -01364019 35 v 01 gum 0 002 @ 01363648 v 0000 + 14702875 n 0102 01 + 08 00 | cover, fill, fix or smear with or as if with gum; "if you gum the tape it is stronger" -01364184 35 v 01 dress 0 005 $ 01679433 v 0000 @ 01363648 v 0000 ;c 00243918 n 0000 + 07832902 n 0101 $ 00542809 v 0000 01 + 08 00 | put a dressing on; "dress the salads" -01364357 35 v 01 sauce 0 003 @ 02191766 v 0000 ;c 00243918 n 0000 + 07829412 n 0101 01 + 08 00 | dress (food) with a relish -01364483 35 v 01 cream 2 002 @ 01363648 v 0000 + 03128519 n 0101 01 + 08 00 | put on cream, as on one's face or body; "She creams her face every night" -01364637 35 v 01 cold-cream 0 001 @ 01363648 v 0000 01 + 08 00 | put cold cream on one's face -01364733 35 v 01 putty 0 002 @ 01363648 v 0000 + 14703797 n 0101 01 + 08 00 | apply putty in order to fix or fill; "putty the window sash" -01364874 35 v 01 sponge_on 0 001 @ 01363648 v 0000 01 + 08 00 | apply with a sponge; "The painter sponged on his washes" -01364997 35 v 03 slap_on 0 clap_on 0 slam_on 0 001 @ 01363648 v 0000 01 + 08 00 | apply carelessly; "slap some paint onto the wall" -01365131 35 v 01 laminate 0 006 @ 01332730 v 0000 + 03635668 n 0101 + 05580929 n 0101 + 03635932 n 0101 + 00926923 n 0101 $ 01232387 v 0000 01 + 08 00 | cover with a thin sheet of non-fabric material; "laminate the table" -01365355 35 v 03 prime 0 ground 3 undercoat 0 005 @ 01362736 v 0000 + 04507689 n 0301 + 03360845 n 0307 + 03360845 n 0202 + 03360845 n 0103 01 + 08 00 | cover with a primer; apply a primer to -01365549 35 v 01 hook 0 005 @ 01340439 v 0000 + 03532672 n 0101 + 03532919 n 0101 ! 01366321 v 0101 ^ 01366426 v 0101 02 + 08 00 + 21 00 | fasten with a hook -01365709 35 v 01 hook 1 003 @ 01439190 v 0000 + 03532342 n 0101 ~ 01365839 v 0000 01 + 08 00 | catch with a hook; "hook a fish" -01365839 35 v 01 seize 9 001 @ 01365709 v 0000 01 + 08 00 | hook by a pull on the line; "strike a fish" -01365945 35 v 02 net 0 nett 0 002 @ 01439190 v 0000 + 03819994 n 0101 01 + 08 00 | catch with a net; "net a fish" -01366061 35 v 01 belt 1 003 @ 01340439 v 0000 + 02827606 n 0101 ! 01366199 v 0101 01 + 08 00 | fasten with a belt; "belt your trousers" -01366199 35 v 01 unbelt 0 002 @ 01519977 v 0000 ! 01366061 v 0101 01 + 08 00 | undo the belt of; "unbelt your trousers" -01366321 35 v 01 unhook 0 002 @ 01298668 v 0000 ! 01365549 v 0101 02 + 08 00 + 21 00 | take off a hook -01366426 35 v 01 hook_up 0 003 @ 01296462 v 0000 + 03533654 n 0101 + 03533486 n 0101 03 + 08 00 + 09 00 + 21 00 | connect or link; "hook up the houses to the gas supply line"; "Hook up the components of the new sound system" -01366653 35 v 01 cement 0 004 @ 01340439 v 0000 + 14804641 n 0101 + 14804175 n 0101 $ 01366926 v 0000 01 + 08 00 | bind or join with or as if with cement -01366809 35 v 01 grout 0 002 @ 01340439 v 0000 + 14891988 n 0101 01 + 08 00 | bind with grout; "grout the bathtub" -01366926 35 v 01 cement 2 004 $ 01366653 v 0000 @ 01264283 v 0000 + 14804641 n 0101 + 14804175 n 0101 01 + 08 00 | cover or coat with cement -01367069 35 v 01 staple 0 004 @ 01340439 v 0000 + 04303095 n 0101 + 04303497 n 0101 ! 01367456 v 0101 02 + 08 00 + 21 00 | secure or fasten with a staple or staples; "staple the papers together" -01367266 35 v 01 rivet 0 006 @ 01340439 v 0000 + 04095342 n 0101 + 10533541 n 0102 + 04095577 n 0103 + 10533541 n 0101 + 04095577 n 0102 02 + 08 00 + 21 00 | fasten with a rivet or rivets -01367456 35 v 01 unstaple 0 002 @ 01519977 v 0000 ! 01367069 v 0101 02 + 08 00 + 21 00 | take the staples off; "unstaple the piece of paper from the receipt" -01367616 35 v 01 clip 1 003 @ 01296462 v 0000 + 03043958 n 0101 ! 01367760 v 0101 01 + 21 00 | attach with a clip; "clip the papers together" -01367760 35 v 01 unclip 0 002 @ 01519977 v 0000 ! 01367616 v 0101 01 + 21 00 | remove the clip from -01367862 35 v 01 button 0 003 @ 01340439 v 0000 + 02928608 n 0101 ! 01368001 v 0101 01 + 08 00 | fasten with buttons; "button the dress" -01368001 35 v 01 unbutton 0 002 @ 01519977 v 0000 ! 01367862 v 0101 01 + 08 00 | undo the buttons of; "unbutton the shirt" -01368126 35 v 01 button 1 003 * 01329239 v 0000 @ 00182406 v 0000 + 02928608 n 0101 01 + 08 00 | provide with buttons; "button a shirt" -01368264 35 v 01 pin 1 003 @ 01340439 v 0000 + 03940256 n 0101 ! 01368474 v 0101 01 + 21 00 | attach or fasten with pins or as if with pins; "pin the needle to the shirt". "pin the blame on the innocent man" -01368474 35 v 01 unpin 0 002 @ 01519977 v 0000 ! 01368264 v 0101 01 + 08 00 | remove the pins from; unfasten the pins of -01368597 35 v 02 straighten 0 straighten_out 0 009 @ 00126264 v 0000 + 04331639 n 0101 ~ 01223508 v 0000 ~ 01281069 v 0000 ~ 01368863 v 0000 ~ 01369059 v 0000 ~ 01518203 v 0000 ~ 01519321 v 0000 ~ 01596645 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | make straight -01368863 35 v 01 extend a 004 @ 01368597 v 0000 + 00944449 a 0102 + 01434530 a 0101 $ 02054989 v 0000 01 + 08 00 | open or straighten out; unbend; "Can we extend the legs of this dining table?" -01369059 35 v 02 channelize 1 channelise 1 002 @ 01368597 v 0000 + 03006105 n 0101 01 + 08 00 | cause to form a channel; "channelize a stream" -01369204 35 v 02 fray 0 frazzle 0 001 @ 01369346 v 0000 03 + 01 00 + 08 00 + 11 00 | wear away by rubbing; "The friction frayed the sleeve" -01369346 35 v 05 break 0 wear 0 wear_out 0 bust 0 fall_apart 0 012 @ 00208836 v 0000 + 14562683 n 0201 ^ 01254324 v 0201 ^ 01254324 v 0202 ^ 01552390 v 0203 + 00708017 a 0101 ^ 01259691 v 0104 ^ 01259691 v 0105 ^ 01562061 v 0102 ^ 01562061 v 0103 ~ 01369204 v 0000 $ 01369758 v 0000 01 + 01 00 | go to pieces; "The lawn mower finally broke"; "The gears wore out"; "The old chair finally fell apart completely" -01369758 35 v 02 break 1 bust 1 015 > 01369346 v 0000 $ 01369346 v 0000 @ 01564144 v 0000 + 07365024 n 0202 + 09883452 n 0201 ^ 01566185 v 0201 + 00708017 a 0101 + 00376400 n 0101 ! 00260648 v 0101 ^ 01657977 v 0104 ^ 01657977 v 0105 ^ 01259458 v 0104 ^ 01560984 v 0102 ^ 00643473 v 0103 ~ 01370126 v 0000 02 + 08 00 + 11 00 | ruin completely; "He busted my radio!" -01370126 35 v 01 break_down 1 002 > 02041877 v 0000 @ 01369758 v 0000 02 + 08 00 + 11 00 | cause to fall or collapse -01370245 35 v 01 scuff 0 001 @ 01370561 v 0000 01 + 08 00 | poke at with the foot or toe -01370336 35 v 01 scuff 1 001 @ 01309143 v 0000 02 + 08 00 + 11 00 | mar by scuffing; "scuffed shoes" -01370439 35 v 01 scuff 2 001 @ 00469382 v 0000 01 + 01 00 | get or become scuffed; "These patent leather shoes scuffed" -01370561 35 v 01 kick 0 009 @ 01400044 v 0000 + 00136329 n 0101 + 00136329 n 0103 ^ 02401809 v 0105 ^ 01371651 v 0101 ^ 01586738 v 0101 ^ 01586738 v 0102 ~ 01370245 v 0000 ~ 01372556 v 0000 02 + 08 00 + 09 00 | strike with the foot; "The boy kicked the dog"; "Kick the door down" -01370843 35 v 02 drop-kick 0 dropkick 2 004 @ 01371756 v 0000 ;c 00468480 n 0000 + 10035655 n 0201 + 10035655 n 0101 01 + 08 00 | drop and kick (a ball) as it touches the ground, as for a field goal -01371044 35 v 01 place-kick 0 003 @ 01371756 v 0000 + 10436851 n 0101 + 00137279 n 0102 01 + 08 00 | kick (a ball) from a stationary position, in football -01371201 35 v 01 plant 6 002 @ 01494310 v 0000 + 05906080 n 0101 03 + 09 00 + 10 00 + 11 00 | place something or someone in a certain position in order to secretly observe or deceive; "Plant a spy in Moscow"; "plant bugs in the dissident's apartment" -01371454 35 v 03 kick_back 0 recoil 0 kick 8 003 @ 01892104 v 0000 + 07350754 n 0302 + 07350754 n 0201 01 + 01 00 | spring back, as from a forceful thrust; "The gun kicked back into my shoulder" -01371651 35 v 01 kick_up 0 001 @ 01974062 v 0000 01 + 08 00 | cause to rise by kicking; "kick up dust" -01371756 35 v 01 kick 1 010 * 01850315 v 0000 @ 01511706 v 0000 ;c 00523513 n 0000 + 00136329 n 0101 + 10230580 n 0101 + 00136329 n 0103 ~ 01370843 v 0000 ~ 01371044 v 0000 ~ 01372026 v 0000 ~ 01372408 v 0000 03 + 08 00 + 10 00 + 11 00 | drive or propel with the foot -01372026 35 v 02 dropkick 0 drop-kick 2 003 @ 01371756 v 0000 ;c 00468480 n 0000 + 00137877 n 0101 01 + 08 00 | make the point after a touchdown with a dropkick -01372189 35 v 02 punt 0 pole 0 005 * 01871979 v 0000 @ 01511706 v 0000 + 03976657 n 0201 + 04024983 n 0101 + 10493419 n 0101 01 + 08 00 | propel with a pole; "pole barges on the river"; "We went punting in Cambridge" -01372408 35 v 01 punt 1 005 @ 01371756 v 0000 ;c 00523513 n 0000 + 00136984 n 0101 + 10493199 n 0101 + 00136984 n 0102 01 + 02 00 | kick the ball -01372556 35 v 01 boot 0 003 @ 01370561 v 0000 + 00136329 n 0102 ^ 02401809 v 0104 02 + 08 00 + 09 00 | kick; give a boot to -01372682 35 v 01 spray 0 009 @ 01376245 v 0000 + 15056541 n 0101 + 02754103 n 0103 + 02754103 n 0104 + 13762305 n 0102 ~ 01372994 v 0000 ~ 01373138 v 0000 ~ 01373303 v 0000 ~ 01373422 v 0000 03 + 08 00 + 11 00 + 21 00 | scatter in a mass or jet of droplets; "spray water on someone"; "spray paint on the wall" -01372994 35 v 01 shower 0 001 @ 01372682 v 0000 03 + 08 00 + 19 00 + 21 00 | spray or sprinkle with; "The guests showered rice on the couple" -01373138 35 v 02 atomize 0 atomise 0 004 @ 01372682 v 0000 + 02754103 n 0202 + 14619225 n 0201 + 02754103 n 0101 01 + 08 00 | spray very finely; "atomize perfume" -01373303 35 v 01 mist 0 002 @ 01372682 v 0000 + 11482706 n 0101 02 + 08 00 + 11 00 | spray finely or cover with mist -01373422 35 v 01 syringe 0 002 @ 01372682 v 0000 + 04376876 n 0101 01 + 08 00 | spray or irrigate (a body part) with a syringe -01373551 35 v 01 spray 3 003 @ 01332730 v 0000 + 10641112 n 0101 + 00717468 n 0101 02 + 08 00 + 11 00 | cover by spraying with a liquid; "spray the wall with paint" -01373718 35 v 01 brush a 001 @ 01332730 v 0000 02 + 08 00 + 11 00 | cover by brushing; "brush the bread with melted butter" -01373844 35 v 01 spray 1 003 @ 01376245 v 0000 + 15056541 n 0101 + 02754103 n 0103 02 + 01 00 + 04 00 | be discharged in sprays of liquid; "Water sprayed all over the floor" -01374020 35 v 06 spatter 0 splatter 1 plash 0 splash 0 splosh 0 swash 0 013 @ 01376245 v 0000 + 07344528 n 0601 + 07395104 n 0401 + 00278221 n 0401 + 00717748 n 0403 + 00717748 n 0404 + 07395104 n 0302 + 13761171 n 0203 + 00717748 n 0205 + 00717748 n 0101 + 00717748 n 0102 ~ 01374465 v 0000 ~ 01374587 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 17 00 + 31 00 | dash a liquid upon or against; "The mother splashed the baby's face with water" -01374465 35 v 01 puddle 3 002 @ 01374020 v 0000 + 09397607 n 0102 02 + 01 00 + 02 00 | make a puddle by splashing water -01374587 35 v 04 slosh 0 slush 0 slosh_around 0 slush_around 0 001 @ 01374020 v 0000 02 + 01 00 + 02 00 | spill or splash copiously or clumsily; "slosh paint all over the walls" -01374767 35 v 03 sprinkle 0 splash 1 splosh 1 009 @ 01376245 v 0000 + 00278221 n 0201 + 00717748 n 0203 + 07395104 n 0201 + 00717748 n 0204 + 00278555 n 0101 + 04289027 n 0101 ~ 01375120 v 0000 ~ 01376082 v 0000 05 + 08 00 + 11 00 + 20 00 + 21 00 + 31 00 | cause (a liquid) to spatter about, especially with force; "She splashed the water around her" -01375120 35 v 01 salt 0 001 @ 01374767 v 0000 05 + 08 00 + 11 00 + 20 00 + 21 00 + 31 00 | sprinkle as if with salt; "the rebels had salted the fields with mines and traps" -01375295 35 v 01 splash 2 002 + 00278221 n 0102 ~ 01375458 v 0000 02 + 04 00 + 22 00 | strike and dash about in a liquid; "The boys splashed around in the pool" -01375458 35 v 01 swatter 1 002 @ 01375295 v 0000 + 04369282 n 0101 03 + 01 00 + 02 00 + 04 00 | splash and flutter about in or as if in water; "She swattered about in the pool" -01375637 35 v 04 squirt 0 force_out 1 squeeze_out 1 eject 0 006 @ 01377032 v 0000 + 00116687 n 0403 + 07436100 n 0102 + 04561548 n 0104 ~ 01313780 v 0000 ~ 01375909 v 0000 02 + 08 00 + 21 00 | cause to come out in a squirt; "the boy squirted water at his little sister" -01375909 35 v 01 extravasate 0 003 @ 01375637 v 0000 + 14858794 n 0101 + 13478813 n 0101 02 + 08 00 + 11 00 | force out or cause to escape from a proper vessel or channel -01376082 35 v 02 drizzle 0 moisten 0 002 @ 01374767 v 0000 + 00278040 n 0201 02 + 08 00 + 21 00 | moisten with fine drops; "drizzle the meat with melted butter" -01376245 35 v 05 scatter 0 sprinkle 1 dot 0 dust 1 disperse 0 012 @ 01377032 v 0000 + 00468362 a 0503 + 14840092 n 0401 + 13761966 n 0202 + 00369138 n 0101 + 05088324 n 0101 ~ 01372682 v 0000 ~ 01373844 v 0000 ~ 01374020 v 0000 ~ 01374767 v 0000 ~ 01377444 v 0000 ~ 01377758 v 0000 03 + 08 00 + 11 00 + 21 00 | distribute loosely; "He scattered gun powder under the wagon" -01376620 35 v 01 intersperse 2 004 @ 01494310 v 0000 + 00381326 n 0101 + 00381326 n 0102 ~ 01376818 v 0000 01 + 08 00 | place at intervals in or among; "intersperse exclamation marks in the text" -01376818 35 v 01 interleave 0 001 @ 01376620 v 0000 01 + 02 00 | intersperse the sectors on the concentric magnetic circular patterns written on a computer disk surface to guide the storing and recording of data -01377032 35 v 01 discharge 0 006 @ 01378556 v 0000 + 07407777 n 0101 ~ 01375637 v 0000 ~ 01376245 v 0000 ~ 01377239 v 0000 ~ 01377571 v 0000 02 + 08 00 + 11 00 | pour forth or release; "discharge liquids" -01377239 35 v 01 play 7 001 @ 01377032 v 0000 02 + 01 00 + 08 00 | discharge or direct or be discharged or directed as if in a continuous stream; "play water from a hose"; "The fountains played all day" -01377444 35 v 01 bespangle 1 001 @ 01376245 v 0000 02 + 08 00 + 11 00 | dot or sprinkle with sparkling or glittering objects -01377571 35 v 01 volley 0 003 @ 01377032 v 0000 + 00988320 n 0103 $ 02029492 v 0000 01 + 08 00 | discharge in, or as if in, a volley; "the attackers volleyed gunshots at the civilians" -01377758 35 v 02 aerosolize 0 aerosolise 0 003 @ 01376245 v 0000 + 11422597 n 0201 + 11422597 n 0101 01 + 08 00 | disperse as an aerosol; "The bacteria suspension was aerosolized" -01377940 35 v 02 aerosolize 1 aerosolise 1 003 @ 02028994 v 0000 + 11422597 n 0201 + 11422597 n 0101 01 + 01 00 | become dispersed as an aerosol; "the bacteria quickly aerosolised" -01378123 35 v 02 strew 0 straw 0 004 @ 01378556 v 0000 + 00369138 n 0103 ~ 01378331 v 0000 ~ 01378421 v 0000 02 + 08 00 + 21 00 | spread by scattering ("straw" is archaic); "strew toys all over the carpet" -01378331 35 v 01 bestrew 0 001 @ 01378123 v 0000 02 + 08 00 + 11 00 | cover by strewing -01378421 35 v 01 litter 0 002 @ 01378123 v 0000 + 14858292 n 0101 02 + 02 00 + 22 00 | make a place messy by strewing garbage around -01378556 35 v 02 spread 0 distribute 1 021 + 01083077 n 0201 + 00367976 n 0101 + 05088324 n 0102 + 07445896 n 0101 + 04287986 n 0101 + 00367976 n 0102 ! 01380638 v 0101 ^ 02060141 v 0103 ^ 02077148 v 0102 ^ 02028994 v 0104 ^ 01360715 v 0102 ~ 00104465 v 0000 ~ 00104667 v 0000 ~ 01377032 v 0000 ~ 01378123 v 0000 ~ 01379097 v 0000 ~ 01379256 v 0000 ~ 01379600 v 0000 ~ 01379965 v 0000 ~ 02032227 v 0000 ~ 02060141 v 0000 03 + 08 00 + 11 00 + 21 00 | distribute or disperse widely; "The invaders spread their language all over the country" -01379097 35 v 01 export 4 001 @ 01378556 v 0000 02 + 08 00 + 11 00 | cause to spread in another part of the world; "The Russians exported Marxism to Africa" -01379256 35 v 01 propagate 1 002 @ 01378556 v 0000 + 06253518 n 0101 02 + 08 00 + 11 00 | transmit or cause to broaden or spread; "This great civilization was propagated throughout the land" -01379449 35 v 01 slather 0 001 @ 01611901 v 0000 02 + 08 00 + 21 00 | spread thickly; "I can't eat bagels without slathering them with cream cheese" -01379600 35 v 01 deploy 0 003 @ 01378556 v 0000 + 01143409 n 0101 ~ 01379804 v 0000 02 + 08 00 + 09 00 | to distribute systematically or strategically; "The U.S. deploys its weapons in the Middle East" -01379804 35 v 01 redeploy 0 002 @ 01379600 v 0000 + 01143760 n 0101 02 + 08 00 + 09 00 | deploy anew; "The U.S. must redeploy their troops in the Middle East" -01379965 35 v 01 redistribute 0 002 @ 01378556 v 0000 + 01083350 n 0101 02 + 08 00 + 09 00 | distribute anew; "redistribute the troops more strategically" -01380122 35 v 02 spread 7 propagate 6 005 @ 01831531 v 0000 + 00367976 n 0101 + 05088324 n 0102 + 07445896 n 0101 ~ 01380366 v 0000 01 + 01 00 | become distributed or widespread; "the infection spread"; "Optimism spread among the population" -01380366 35 v 01 catch b 001 @ 01380122 v 0000 01 + 01 00 | spread or be communicated; "The fashion did not catch" -01380483 35 v 01 benight 0 001 @ 01580467 v 0000 01 + 10 00 | envelop with social, intellectual, or moral darkness; "The benighted peoples of this area" -01380638 35 v 04 gather 0 garner 0 collect 0 pull_together 0 024 + 01014066 n 0301 + 01014066 n 0302 + 01014990 n 0101 ! 01378556 v 0101 ^ 01976089 v 0103 ~ 00270215 v 0000 ~ 01306853 v 0000 ~ 01320009 v 0000 ~ 01320321 v 0000 ~ 01381244 v 0000 ~ 01381357 v 0000 ~ 01381549 v 0000 ~ 01381913 v 0000 ~ 01382083 v 0000 ~ 01382720 v 0000 ~ 01382917 v 0000 ~ 01383245 v 0000 ~ 01383393 v 0000 ~ 01383511 v 0000 ~ 01383646 v 0000 ~ 01383800 v 0000 ~ 01383947 v 0000 ~ 01386308 v 0000 ~ 01504298 v 0000 03 + 08 00 + 09 00 + 11 00 | assemble or get together; "gather some stones"; "pull your thoughts together" -01381244 35 v 01 hive 0 001 @ 01380638 v 0000 01 + 08 00 | gather into a hive; "The beekeeper hived the swarm" -01381357 35 v 02 salvage 0 scavenge 1 003 @ 01380638 v 0000 + 10281276 n 0202 + 10549510 n 0101 01 + 08 00 | collect discarded or refused material; "She scavenged the garbage cans for food" -01381549 35 v 05 muster 2 rally 1 summon 2 come_up 1 muster_up 0 002 @ 01380638 v 0000 + 00045646 n 0201 02 + 08 00 + 22 04 | gather or bring together; "muster the courage to do something"; "she rallied her intellect"; "Summon all your courage" -01381796 35 v 01 corral 2 001 @ 02304982 v 0000 01 + 08 00 | collect or gather; "corralling votes for an election" -01381913 35 v 01 round_up 0 003 @ 01380638 v 0000 + 00635544 n 0101 + 00921627 n 0101 02 + 08 00 + 09 00 | seek out and bring together; "round up some loyal followers" -01382083 35 v 03 pick 1 pluck 1 cull 0 013 @ 01380638 v 0000 ^ 00677203 v 0301 + 13759558 n 0102 + 10431514 n 0101 + 00714357 n 0101 ^ 02107248 v 0101 ^ 02117955 v 0102 ^ 01957107 v 0101 ^ 01592456 v 0104 ^ 00677544 v 0102 ^ 00598954 v 0105 ~ 01382437 v 0000 ~ 01384102 v 0000 02 + 08 00 + 11 00 | look for and gather; "pick mushrooms"; "pick flowers" -01382437 35 v 01 mushroom 0 003 @ 01382083 v 0000 + 07734744 n 0101 + 13001041 n 0101 02 + 02 00 + 22 00 | pick or gather mushrooms; "We went mushrooming in the Fall" -01382606 35 v 01 prawn 0 003 @ 01140794 v 0000 + 01987545 n 0101 + 07794159 n 0101 01 + 02 00 | fish for prawns -01382720 35 v 01 nut 0 002 @ 01380638 v 0000 + 13136556 n 0101 02 + 02 00 + 22 00 | gather nuts -01382818 35 v 01 frog 0 002 @ 01480149 v 0000 + 01639765 n 0101 01 + 08 00 | hunt frogs for food -01382917 35 v 01 snail 0 004 @ 01380638 v 0000 + 07782475 n 0102 + 01944390 n 0101 ~ 01143147 v 0000 02 + 02 00 + 22 00 | gather snails; "We went snailing in the summer" -01383089 35 v 01 blackberry 0 002 @ 01384102 v 0000 + 07744811 n 0101 02 + 02 00 + 22 00 | pick or gather blackberries; "The children went blackberrying" -01383245 35 v 02 birdnest 0 bird-nest 0 001 @ 01380638 v 0000 02 + 02 00 + 22 00 | gather birdnests; "They went birdnesting in the early morning" -01383393 35 v 01 nest 1 003 @ 01380638 v 0000 + 01514926 n 0101 + 09369169 n 0101 02 + 02 00 + 22 00 | gather nests -01383511 35 v 01 oyster 0 003 @ 01380638 v 0000 + 07786164 n 0102 + 01960459 n 0101 02 + 02 00 + 22 00 | gather oysters, dig oysters -01383646 35 v 01 sponge 3 004 @ 01380638 v 0000 + 01906749 n 0101 + 14597758 n 0101 + 10638813 n 0101 02 + 02 00 + 22 00 | gather sponges, in the ocean -01383800 35 v 01 pearl 0 003 @ 01380638 v 0000 + 13372403 n 0101 + 10410531 n 0102 02 + 02 00 + 22 00 | gather pearls, from oysters in the ocean -01383947 35 v 01 clam 0 003 @ 01380638 v 0000 + 07786686 n 0101 + 01956481 n 0101 02 + 02 00 + 22 00 | gather clams, by digging in the sand by the ocean -01384102 35 v 01 berry 0 004 @ 01382083 v 0000 + 13137409 n 0101 + 07742704 n 0101 ~ 01383089 v 0000 01 + 02 00 | pick or gather berries; "We went berrying in the summer" -01384275 35 v 06 pluck 3 pull 5 tear 6 deplume 0 deplumate 0 displume 0 001 @ 01263479 v 0000 01 + 08 00 | strip of feathers; "pull a chicken"; "pluck the capon" -01384439 35 v 02 collect 1 pull_in 1 005 @ 02304982 v 0000 + 01014066 n 0101 + 01014066 n 0102 ~ 01384638 v 0000 ~ 01385643 v 0000 02 + 08 00 + 11 00 | get or bring together; "accumulate evidence" -01384638 35 v 02 archive 0 file_away 0 002 @ 01384439 v 0000 + 02735086 n 0101 01 + 08 00 | put into an archive -01384752 35 v 04 scrape 3 scrape_up 0 scratch 5 come_up 2 002 @ 02304982 v 0000 ~ 01385013 v 0000 02 + 08 00 + 22 04 | gather (money or other resources) together over time; "She had scraped together enough money for college"; "they scratched a meager living" -01385013 35 v 01 nickel-and-dime 0 001 @ 01384752 v 0000 01 + 08 00 | accumulate gradually; "she nickeled-and-dimed together a small house for her family" -01385170 35 v 02 aggregate 0 combine 3 011 @ 01462005 v 0000 + 07964495 n 0201 + 08272961 n 0201 + 07963711 n 0201 + 00870453 n 0201 + 07373803 n 0202 + 07373803 n 0201 + 00467240 a 0103 + 09936620 n 0102 + 04353803 n 0104 ~ 01385458 v 0000 01 + 08 00 | gather in a mass, sum, or whole -01385458 35 v 02 unitize 0 unitise 0 005 @ 01385170 v 0000 + 01104174 n 0202 + 01104174 n 0101 + 09465459 n 0101 + 00003553 n 0102 01 + 08 00 | make into a unit; "unitize a car body" -01385643 35 v 03 beat_up 0 drum_up 0 rally 0 001 @ 01384439 v 0000 02 + 08 00 + 11 00 | gather; "drum up support" -01385759 35 v 01 collate 0 003 * 01380638 v 0000 @ 00277659 v 0000 + 01014607 n 0101 02 + 08 00 + 11 00 | to assemble in proper sequence; "collate the papers" -01385920 35 v 02 lump 0 chunk 0 002 @ 02304982 v 0000 + 09307300 n 0102 01 + 21 00 | put together indiscriminately; "lump together all the applicants" -01386073 35 v 01 batch 0 002 @ 00656576 v 0000 + 08400452 n 0101 01 + 08 00 | batch together; assemble or process as a batch -01386200 35 v 01 bale 0 002 @ 02304982 v 0000 + 02778456 n 0101 01 + 08 00 | make into a bale; "bale hay" -01386308 35 v 01 shock 0 002 @ 01380638 v 0000 + 07962707 n 0101 01 + 08 00 | collect or gather into shocks; "shock grain" -01386433 35 v 02 sandpaper 0 sand 0 004 @ 01252971 v 0000 + 03250588 n 0203 + 14849880 n 0102 ~ 01386611 v 0000 01 + 08 00 | rub with sandpaper; "sandpaper the wooden surface" -01386611 35 v 01 rough-sand 0 001 @ 01386433 v 0000 02 + 08 00 + 11 00 | sand roughly; "rough-sand the door before painting it" -01386741 35 v 01 sandblast 0 003 @ 01252971 v 0000 + 04134170 n 0101 + 11465425 n 0101 01 + 08 00 | grind with a sandblast; "sandblast the facade of the building" -01386906 35 v 01 rasp 0 003 * 01249724 v 0000 @ 01254013 v 0000 + 04054670 n 0101 01 + 08 00 | scrape with a rasp -01387022 35 v 01 file 0 003 * 01249724 v 0000 @ 01252971 v 0000 + 00925489 n 0101 01 + 08 00 | smooth with a file; "file one's fingernails" -01387164 35 v 01 corrugate 0 003 @ 01277974 v 0000 + 13902229 n 0101 + 00406485 n 0101 01 + 08 00 | fold into ridges; "corrugate iron" -01387301 35 v 02 ruffle 0 pleat 0 004 @ 01277974 v 0000 + 03965907 n 0201 + 00406800 n 0202 + 03397532 n 0103 02 + 08 00 + 11 00 | pleat or gather into a ruffle; "ruffle the curtain fabric" -01387493 35 v 04 ruffle 2 ruffle_up 0 rumple 0 mess_up 1 001 @ 01466733 v 0000 02 + 08 00 + 11 00 | disturb the smoothness of; "ruffle the surface of the water" -01387656 35 v 01 plait 0 003 @ 01518924 v 0000 + 05259512 n 0102 + 10438042 n 0101 01 + 08 00 | weave into plaits; "plait hair" -01387786 35 v 06 compress 0 constrict 0 squeeze 1 compact 0 contract 4 press 2 023 @ 00419950 v 0000 + 00113113 n 0601 + 00113113 n 0603 + 00369802 n 0501 + 00369399 n 0501 + 05289601 n 0502 + 01149911 n 0201 + 01741562 n 0201 + 01153435 a 0101 + 00514396 a 0101 + 07313241 n 0101 + 00356790 n 0101 + 03082807 n 0101 + 00356790 n 0102 ~ 00077950 v 0000 ~ 00145772 v 0000 ~ 01388386 v 0000 ~ 01388653 v 0000 ~ 01388813 v 0000 ~ 01389007 v 0000 ~ 01389186 v 0000 ~ 01570562 v 0000 ~ 01570744 v 0000 01 + 08 00 | squeeze or press together; "she compressed her lips"; "the spasm contracted the muscle" -01388386 35 v 01 astringe 0 003 @ 01387786 v 0000 + 00189580 a 0101 + 02750835 n 0101 01 + 11 00 | constrict or bind or draw together; "Lemon juice astringes the tissue in the mouth" -01388571 35 v 01 straiten 2 001 @ 02495038 v 0000 01 + 09 00 | squeeze together -01388653 35 v 01 strangulate 1 002 @ 01387786 v 0000 + 00227264 n 0101 01 + 11 00 | constrict a hollow organ or vessel so as to stop the flow of blood or air -01388813 35 v 01 convulse 0 004 @ 01387786 v 0000 + 02303754 a 0101 + 14082595 n 0101 $ 01389007 v 0000 01 + 01 00 | contract involuntarily, as in a spasm; "The muscles in her face convulsed" -01389007 35 v 01 convulse 1 004 $ 01388813 v 0000 @ 01387786 v 0000 + 02303754 a 0101 + 14082595 n 0101 01 + 11 00 | cause to contract; "The spasm convulses her facial muscles" -01389186 35 v 02 bear_down 1 overbear 0 001 @ 01387786 v 0000 01 + 02 00 | contract the abdominal muscles during childbirth to ease delivery -01389329 35 v 03 compress 1 compact 3 pack_together 0 007 * 01447257 v 0000 @ 01527271 v 0000 + 00358089 n 0203 ! 01389607 v 0101 + 00616083 n 0101 + 00356790 n 0102 ~ 01574571 v 0000 03 + 08 00 + 11 00 + 21 00 | make more compact by or as if by pressing; "compress the data" -01389607 35 v 02 decompress 0 uncompress 0 003 @ 02552449 v 0000 + 00616641 n 0101 ! 01389329 v 0101 01 + 08 00 | restore to its uncompressed form; "decompress data" -01389776 35 v 02 tuck 0 insert 1 002 @ 01587062 v 0000 + 00320852 n 0201 01 + 21 00 | fit snugly into; "insert your ticket into the slot"; "tuck your shirttail in" -01389942 35 v 02 wall_in 0 wall_up 0 002 @ 01587062 v 0000 ~ 01390078 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | enclose with a wall -01390078 35 v 03 brick_in 0 brick_up 0 brick_over 0 001 @ 01389942 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | wall up with brick -01390210 35 v 02 embower 0 bower 0 002 @ 01587062 v 0000 + 02732827 n 0203 02 + 08 00 + 09 00 | enclose in a bower -01390327 35 v 01 tuck 1 002 @ 01277974 v 0000 + 10732748 n 0101 02 + 08 00 + 11 00 | make a tuck or several folds in; "tuck the fabric"; "tuck in the sheet" -01390486 35 v 01 mangle 1 002 @ 01390833 v 0000 + 03717285 n 0101 02 + 08 00 + 11 00 | press with a mangle; "mangle the sheets" -01390616 35 v 01 press 1 005 @ 00463469 v 0000 + 00113113 n 0101 + 00113113 n 0103 ~ 01390833 v 0000 ~ 01391095 v 0000 02 + 08 00 + 11 00 | place between two surfaces and apply weight or pressure; "pressed flowers" -01390833 35 v 03 iron 0 iron_out 0 press 3 006 @ 01390616 v 0000 * 00371264 v 0000 + 03584829 n 0101 + 03585875 n 0101 + 00581090 n 0101 ~ 01390486 v 0000 02 + 08 00 + 11 00 | press and smooth with a heated iron; "press your shirts"; "she stood there ironing" -01391095 35 v 01 calender 0 002 @ 01390616 v 0000 + 02939565 n 0101 02 + 08 00 + 11 00 | press between rollers or plates so as to smooth, glaze, or thin into sheets; "calender paper" -01391280 35 v 02 roll_out 1 roll 5 004 @ 00463778 v 0000 + 13875970 n 0203 ~ 01391460 v 0000 ~ 01391697 v 0000 01 + 08 00 | flatten or spread with a roller; "roll out the paper" -01391460 35 v 01 cog 1 001 @ 01391280 v 0000 01 + 08 00 | roll steel ingots -01391538 35 v 01 laminate 1 004 @ 00463778 v 0000 + 03635668 n 0101 + 05580929 n 0101 $ 01232387 v 0000 01 + 08 00 | press or beat (metals) into thin sheets -01391697 35 v 01 mill 2 001 @ 01391280 v 0000 02 + 08 00 + 11 00 | roll out (metal) with a rolling machine -01391806 35 v 02 ruffle 1 fluff 0 002 @ 01275516 v 0000 ^ 01391946 v 0201 01 + 08 00 | erect or fluff up; "the bird ruffled its feathers" -01391946 35 v 03 fluff_up 0 plump_up 0 shake_up 0 001 @ 01889610 v 0000 01 + 08 00 | make fuller by shaking; "fluff up the pillows" -01392080 35 v 02 preen 0 plume 0 003 @ 01463963 v 0000 @ 01532589 v 0000 + 01896031 n 0202 02 + 01 00 + 08 00 | clean with one's bill; "The birds preened" -01392237 35 v 02 wipe 0 pass_over 0 015 @ 01249724 v 0000 ^ 01212230 v 0204 + 00125126 n 0102 + 10783646 n 0101 + 04593866 n 0101 + 04590746 n 0103 ^ 01392918 v 0101 ^ 01392918 v 0102 ^ 01548718 v 0105 ^ 01157517 v 0108 ~ 01392663 v 0000 ~ 01392790 v 0000 ~ 01393714 v 0000 ~ 01394335 v 0000 ~ 01435254 v 0000 02 + 08 00 + 11 00 | rub with a circular motion; "wipe the blackboard"; "He passed his hands over the soft cloth" -01392663 35 v 01 sponge 0 002 @ 01392237 v 0000 + 14597758 n 0101 01 + 08 00 | wipe with a sponge, so as to clean or moisten -01392790 35 v 01 squeegee 0 002 @ 01392237 v 0000 + 04292921 n 0101 01 + 08 00 | wipe with a squeegee; "squeegee the windows" -01392918 35 v 02 wipe_off 0 wipe_away 0 002 @ 00173338 v 0000 ~ 01393038 v 0000 02 + 08 00 + 11 00 | remove by wiping -01393038 35 v 01 deterge 0 006 @ 01392918 v 0000 + 02118181 a 0102 + 02118181 a 0101 + 03181899 n 0101 + 05149127 n 0101 + 05149127 n 0102 01 + 08 00 | wipe away; to wash off or out, cleanse; chiefly in medical use: to clear away foul matter from the body; "This drug is powerful enough to deterge" -01393339 35 v 03 wipe_up 0 mop_up 0 mop 1 006 @ 01539063 v 0000 + 04367480 n 0303 + 10330722 n 0301 + 00252020 n 0302 ~ 01244178 v 0000 ~ 01393611 v 0000 01 + 08 00 | to wash or wipe with or as if with a mop; "Mop the hallway now"; "He mopped her forehead with a towel" -01393611 35 v 01 sponge 2 002 @ 01393339 v 0000 + 14597758 n 0101 01 + 08 00 | soak up with a sponge -01393714 35 v 02 sweep 0 broom 0 006 $ 01393996 v 0000 @ 01392237 v 0000 + 02906734 n 0201 + 10682713 n 0101 + 02967782 n 0102 + 00252307 n 0101 04 + 04 00 + 08 00 + 11 00 + 22 00 | sweep with a broom or as if with a broom; "Sweep the crumbs off the table"; "Sweep under the bed" -01393996 35 v 01 sweep 1 006 @ 01532589 v 0000 + 09919061 n 0103 + 10682713 n 0101 + 02967782 n 0102 + 00252307 n 0101 $ 01393714 v 0000 02 + 08 00 + 11 00 | clean by sweeping; "Please sweep the floor" -01394200 35 v 01 swipe 0 003 @ 01400044 v 0000 + 00566040 n 0101 ^ 01274254 v 0101 02 + 08 00 + 09 00 | strike with a swiping motion -01394335 35 v 01 towel 0 002 @ 01392237 v 0000 + 04459362 n 0101 02 + 08 00 + 09 00 | wipe with a towel; "towel your hair dry" -01394464 35 v 02 grate 0 grind 0 006 * 01249724 v 0000 @ 00338071 v 0000 + 00358290 n 0201 + 07384344 n 0201 ~ 00078578 v 0000 ~ 01201089 v 0000 02 + 08 00 + 11 00 | make a grating or grinding sound by rubbing together; "grate one's teeth in anger" -01394715 35 v 01 grit 0 001 @ 01394812 v 0000 01 + 08 00 | clench together; "grit one's teeth" -01394812 35 v 01 clench 2 002 @ 01447868 v 0000 ~ 01394715 v 0000 01 + 08 00 | squeeze together tightly; "clench one's jaw" -01394938 35 v 01 grit 1 002 @ 01264283 v 0000 + 14700594 n 0101 01 + 08 00 | cover with a grit; "grit roads" -01395049 35 v 01 plate 0 013 @ 01264283 v 0000 + 03959936 n 0101 + 10439203 n 0101 + 03963028 n 0101 + 00719016 n 0101 ~ 00213034 v 0000 ~ 01395382 v 0000 ~ 01395493 v 0000 ~ 01395663 v 0000 ~ 01395782 v 0000 ~ 01395945 v 0000 ~ 01396091 v 0000 ~ 01396328 v 0000 01 + 08 00 | coat with a layer of metal; "plate spoons with silver" -01395382 35 v 01 tin 0 003 @ 01395049 v 0000 + 14658855 n 0101 + 00718195 n 0101 01 + 08 00 | plate with tin -01395493 35 v 01 silver 0 003 @ 01395049 v 0000 + 03361837 n 0102 + 14654954 n 0101 01 + 08 00 | coat with a layer of silver or a silver amalgam; "silver the necklace" -01395663 35 v 01 nickel 0 002 @ 01395049 v 0000 + 14646610 n 0101 01 + 08 00 | plate with nickel; "nickel the plate" -01395782 35 v 01 electroplate 0 003 @ 01395049 v 0000 + 10049788 n 0101 + 03280064 n 0101 01 + 08 00 | coat with metal by electrolysis; "electroplate the watch" -01395945 35 v 02 chrome 0 chromium-plate 0 002 @ 01395049 v 0000 + 14810704 n 0101 01 + 08 00 | plate with chromium; "chrome bathroom fixtures" -01396091 35 v 03 goldplate 0 gold-plate 0 gold_plate 0 007 @ 01395049 v 0000 + 03445472 n 0301 + 03445326 n 0301 + 03445472 n 0201 + 03445326 n 0201 + 03445472 n 0101 + 03445326 n 0101 01 + 08 00 | plate with gold; "goldplate a watch" -01396328 35 v 02 silverplate 0 silver-plate 0 005 @ 01395049 v 0000 + 04220805 n 0201 + 04220945 n 0201 + 04220805 n 0101 + 04220945 n 0101 01 + 08 00 | plate with silver; "silverplate a watch" -01396524 35 v 01 hug 0 001 @ 01205696 v 0000 02 + 10 00 + 11 00 | fit closely or tightly; "The dress hugged her hips" -01396644 35 v 01 smite 0 001 @ 01400044 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | inflict a heavy blow on, with the hand, a tool, or a weapon -01396790 35 v 01 hook 2 003 @ 01400044 v 0000 ;c 00445802 n 0000 + 00135799 n 0101 01 + 09 00 | hit with a hook; "His opponent hooked him badly" -01396937 35 v 01 swat 0 003 @ 01400044 v 0000 + 04369282 n 0101 + 00134391 n 0101 02 + 08 00 + 09 00 | hit swiftly with a violent blow; "Swat flies" -01397088 35 v 06 sock 0 bop 0 whop 1 whap 0 bonk 0 bash 0 002 @ 01400044 v 0000 + 07410207 n 0602 01 + 09 00 | hit hard -01397210 35 v 03 beat 1 beat_up 1 work_over 0 013 * 01400044 v 0000 + 01160729 n 0101 ~ 01397707 v 0000 ~ 01397870 v 0000 ~ 01397945 v 0000 ~ 01398235 v 0000 ~ 01398323 v 0000 ~ 01411085 v 0000 ~ 01412204 v 0000 ~ 01414088 v 0000 ~ 01416193 v 0000 ~ 01417416 v 0000 ~ 01420928 v 0000 01 + 09 00 | give a beating to; subject to a beating, either as a punishment or as an act of aggression; "Thugs beat him up when he walked down the street late at night"; "The teacher used to beat the students" -01397707 35 v 01 strong-arm 0 002 @ 01397210 v 0000 + 10184081 n 0108 01 + 09 00 | use physical force against; "They strong-armed me when I left the restaurant" -01397870 35 v 01 soak 0 001 @ 01397210 v 0000 01 + 09 00 | beat severely -01397945 35 v 01 pistol-whip 0 001 @ 01397210 v 0000 01 + 09 00 | beat with a pistol -01398032 35 v 02 whip 2 lash 0 004 @ 01410223 v 0000 + 03643907 n 0201 + 00134574 n 0202 ~ 02120912 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | strike as if by whipping; "The curtain whipped her face" -01398235 35 v 02 belabour 0 belabor 0 001 @ 01397210 v 0000 01 + 09 00 | beat soundly -01398323 35 v 01 rough_up 0 001 @ 01397210 v 0000 01 + 09 00 | treat violently; "The police strong-armed the suspect" -01398443 35 v 02 flagellate 0 scourge 0 007 @ 01411085 v 0000 + 04149968 n 0201 + 10096964 n 0202 + 04149968 n 0102 + 01163047 n 0105 + 10094444 n 0101 + 10094320 n 0101 01 + 09 00 | whip; "The religious fanatics flagellated themselves" -01398682 35 v 01 leather 0 001 @ 01411085 v 0000 01 + 09 00 | whip with a leather strap -01398772 35 v 01 horsewhip 0 003 @ 01411085 v 0000 + 01163429 n 0101 + 03539754 n 0101 02 + 08 00 + 09 00 | whip with a whip intended for horses -01398919 35 v 01 beat 0 014 $ 01399576 v 0000 @ 01410223 v 0000 + 07376937 n 0101 + 00547616 n 0101 + 02817650 n 0101 ~ 01399305 v 0000 ~ 01399450 v 0000 ~ 01399821 v 0000 ~ 01399921 v 0000 ~ 01412346 v 0000 ~ 01412548 v 0000 ~ 01412644 v 0000 ~ 01416364 v 0000 ~ 01416539 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hit repeatedly; "beat on the door"; "beat the table with his shoe" -01399305 35 v 01 full 2 002 @ 01398919 v 0000 + 10115603 n 0101 01 + 08 00 | beat for the purpose of cleaning and thickening; "full the cloth" -01399450 35 v 01 beat c 001 @ 01398919 v 0000 01 + 08 00 | strike (water or bushes) repeatedly to rouse animals for hunting -01399576 35 v 01 beat a 003 @ 01410223 v 0000 + 07086518 n 0102 $ 01398919 v 0000 01 + 08 00 | strike (a part of one's own body) repeatedly, as in great emotion or in accompaniment to music; "beat one's breast"; "beat one's foot rhythmically" -01399821 35 v 01 beetle 0 002 @ 01398919 v 0000 + 03715386 n 0102 01 + 08 00 | beat with a beetle -01399921 35 v 01 bastinado 0 002 @ 01398919 v 0000 + 02805845 n 0101 01 + 09 00 | beat somebody on the soles of the feet -01400044 35 v 01 hit 0 036 @ 01206218 v 0000 + 00125629 n 0101 + 00125629 n 0102 ~ 01237599 v 0000 ~ 01242391 v 0000 ~ 01242537 v 0000 ~ 01370561 v 0000 ~ 01394200 v 0000 ~ 01396644 v 0000 ~ 01396790 v 0000 ~ 01396937 v 0000 ~ 01397088 v 0000 ~ 01400856 v 0000 ~ 01401005 v 0000 ~ 01401115 v 0000 ~ 01401371 v 0000 ~ 01401552 v 0000 ~ 01401676 v 0000 ~ 01401772 v 0000 ~ 01401955 v 0000 ~ 01410079 v 0000 ~ 01413173 v 0000 ~ 01413436 v 0000 ~ 01413561 v 0000 ~ 01413917 v 0000 ~ 01414626 v 0000 ~ 01414916 v 0000 ~ 01415162 v 0000 ~ 01415285 v 0000 ~ 01415585 v 0000 ~ 01415807 v 0000 ~ 01416020 v 0000 ~ 01417578 v 0000 ~ 01420765 v 0000 ~ 01423929 v 0000 ~ 01424106 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 17 00 | deal a blow to, either with the hand or with an instrument; "He hit her hard in the face" -01400856 35 v 01 bean 0 003 @ 01400044 v 0000 + 05539454 n 0102 + 00107551 n 0102 01 + 09 00 | hit on the head, especially with a pitched baseball -01401005 35 v 01 pop 6 001 @ 01400044 v 0000 02 + 08 00 + 09 00 | hit or strike; "He popped me on the head" -01401115 35 v 02 get a catch d 001 @ 01400044 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | reach with a blow or hit in a particular spot; "the rock caught her in the back of the head"; "The blow got him in the back"; "The punch caught him in the stomach" -01401371 35 v 01 conk 0 002 @ 01400044 v 0000 + 05598868 n 0101 05 + 08 00 + 09 00 + 10 00 + 11 00 + 17 00 | hit, especially on the head; "The stranger conked him and he fainted" -01401552 35 v 01 cosh 0 002 @ 01400044 v 0000 + 02847461 n 0102 02 + 08 00 + 09 00 | hit with a cosh, usually on the head -01401676 35 v 01 brain 0 002 @ 01400044 v 0000 + 05481095 n 0101 01 + 08 00 | hit on the head -01401772 35 v 04 smash 0 nail 2 boom 0 blast 0 004 @ 01400044 v 0000 + 00128867 n 0401 + 07410207 n 0104 + 10614225 n 0101 02 + 08 00 + 09 00 | hit hard; "He smashed a 3-run homer" -01401955 35 v 01 crack 0 002 @ 01400044 v 0000 + 00376994 n 0103 04 + 08 00 + 09 00 + 10 00 + 17 00 | hit forcefully; deal a hard blow, making a cracking noise; "The teacher cracked him across the face with a ruler" -01402173 35 v 01 ground_out 0 002 @ 01405044 v 0000 ;c 00471613 n 0000 01 + 02 00 | make an out by hitting the ball on the ground -01402305 35 v 01 toe 3 003 @ 01405044 v 0000 ;c 00464894 n 0000 + 04444345 n 0101 01 + 08 00 | drive (a golf ball) with the toe of the club -01402447 35 v 01 shank 0 003 @ 01405044 v 0000 ;c 00464894 n 0000 + 00573945 n 0101 01 + 08 00 | hit (a golf ball) with the heel of a club, causing the ball to veer in the wrong direction -01402637 35 v 01 pitch 4 002 @ 01405044 v 0000 + 00573664 n 0101 01 + 08 00 | hit (a golf ball) in a high arc with a backspin -01402765 35 v 01 fly 1 003 @ 01405044 v 0000 ;c 00471613 n 0000 + 00128638 n 0101 01 + 02 00 | hit a fly -01402872 35 v 01 snap 3 003 @ 01405044 v 0000 + 00120943 n 0102 + 09904321 n 0102 01 + 08 00 | put in play with a snap; "snap a football" -01403012 35 v 01 whang 0 001 @ 01405044 v 0000 01 + 08 00 | propel or hit with force; "whang the ball" -01403117 35 v 01 undercut 0 002 @ 01405044 v 0000 + 00565809 n 0102 01 + 08 00 | strike (the ball) in golf, tennis, or hockey obliquely downward so as to give a backspin or elevation to the shot -01403314 35 v 01 tap 2 003 @ 01552519 v 0000 + 04391158 n 0101 + 10691485 n 0101 01 + 08 00 | cut a female screw thread with a tap -01403447 35 v 01 hob 0 002 @ 01552519 v 0000 + 03523398 n 0101 01 + 08 00 | cut with a hob -01403540 35 v 01 putt 0 006 @ 01405044 v 0000 ;c 00464894 n 0000 + 00572838 n 0101 + 10496081 n 0101 + 04028074 n 0101 + 00572838 n 0102 01 + 08 00 | strike (a golf ball) lightly, with a putter; "he putted the ball several feet past the hole" -01403785 35 v 01 putt 1 006 @ 01072949 v 0000 ;c 00464894 n 0000 + 00572838 n 0101 + 10496081 n 0101 + 04028074 n 0101 + 00572838 n 0102 01 + 08 00 | hit a putt; "he lost because he putted so poorly" -01403987 35 v 01 heel 0 003 @ 01405044 v 0000 ;c 00464894 n 0000 + 03511786 n 0101 01 + 08 00 | strike with the heel of the club; "heel a golf ball" -01404138 35 v 01 toe 1 003 @ 01405044 v 0000 ;c 00464894 n 0000 + 04444345 n 0101 01 + 08 00 | hit (a golf ball) with the toe of the club -01404278 35 v 01 bunker 0 002 @ 01405044 v 0000 + 02920369 n 0101 01 + 08 00 | hit a golf ball into a bunker -01404389 35 v 01 bounce 3 003 @ 01405044 v 0000 + 05020981 n 0101 ~ 01404538 v 0000 01 + 08 00 | hit something so that it bounces; "bounce a ball" -01404538 35 v 01 bounce_out 0 002 @ 01404389 v 0000 ;c 00471613 n 0000 01 + 08 00 | bounce a ball so that it becomes an out -01404664 35 v 01 backhand 0 002 @ 01405044 v 0000 + 00566690 n 0101 01 + 08 00 | hit a tennis ball backhand -01404774 35 v 01 foul_out 0 001 @ 01147855 v 0000 01 + 08 00 | baseball: hit a ball such that it is caught from an out in foul territory -01404913 35 v 01 pop 0 002 @ 01405044 v 0000 ;c 00471613 n 0000 02 + 08 00 + 21 00 | hit a pop-fly; "He popped out to shortstop" -01405044 35 v 01 hit 3 049 @ 01511706 v 0000 + 10178216 n 0101 + 00043902 n 0101 + 00125629 n 0102 ~ 01080691 v 0000 ~ 01147855 v 0000 ~ 01147987 v 0000 ~ 01237398 v 0000 ~ 01402173 v 0000 ~ 01402305 v 0000 ~ 01402447 v 0000 ~ 01402637 v 0000 ~ 01402765 v 0000 ~ 01402872 v 0000 ~ 01403012 v 0000 ~ 01403117 v 0000 ~ 01403540 v 0000 ~ 01403987 v 0000 ~ 01404138 v 0000 ~ 01404278 v 0000 ~ 01404389 v 0000 ~ 01404664 v 0000 ~ 01404913 v 0000 ~ 01406016 v 0000 ~ 01406195 v 0000 ~ 01406356 v 0000 ~ 01406512 v 0000 ~ 01406897 v 0000 ~ 01407059 v 0000 ~ 01407235 v 0000 ~ 01407376 v 0000 ~ 01407568 v 0000 ~ 01407722 v 0000 ~ 01407904 v 0000 ~ 01408153 v 0000 ~ 01408297 v 0000 ~ 01408489 v 0000 ~ 01408633 v 0000 ~ 01408760 v 0000 ~ 01408958 v 0000 ~ 01409177 v 0000 ~ 01409374 v 0000 ~ 01409523 v 0000 ~ 01409642 v 0000 ~ 01561583 v 0000 ~ 01597286 v 0000 ~ 01598255 v 0000 ~ 01600873 v 0000 ~ 01604012 v 0000 02 + 08 00 + 02 01 | cause to move by striking; "hit a ball" -01406016 35 v 01 follow_through 0 003 @ 01405044 v 0000 ;c 00523513 n 0000 + 00211776 n 0101 01 + 02 00 | carry a stroke to natural completion after hitting or releasing a ball -01406195 35 v 01 shell 7 001 @ 01405044 v 0000 01 + 09 00 | hit the pitches of hard and regularly; "He shelled the pitcher for eight runs in the first inning" -01406356 35 v 01 ground a 005 @ 01405044 v 0000 ;c 00471613 n 0000 + 09334396 n 0104 $ 01406512 v 0000 $ 01406684 v 0000 01 + 08 00 | hit onto the ground -01406512 35 v 01 ground b 004 $ 01406356 v 0000 @ 01405044 v 0000 ;c 00471613 n 0000 + 00129089 n 0101 01 + 03 00 | hit a groundball; "he grounded to the second baseman" -01406684 35 v 01 ground c 004 $ 01406356 v 0000 @ 01508368 v 0000 ;c 00468480 n 0000 + 09334396 n 0104 01 + 08 00 | throw to the ground in order to stop play and avoid being tackled behind the line of scrimmage -01406897 35 v 01 top 2 002 @ 01405044 v 0000 + 08663354 n 0101 01 + 08 00 | strike (the top part of a ball in golf, baseball, or pool) giving it a forward spin -01407059 35 v 01 pull 3 002 @ 01405044 v 0000 ;c 00471613 n 0000 01 + 03 00 | hit in the direction that the player is facing when carrying through the swing; "pull the ball" -01407235 35 v 01 kill 5 003 @ 01405044 v 0000 ;c 00523513 n 0000 $ 01407376 v 0000 01 + 08 00 | hit with great force; "He killed the ball" -01407376 35 v 01 kill 6 003 $ 01407235 v 0000 @ 01405044 v 0000 ;c 00523513 n 0000 01 + 08 00 | hit with so much force as to make a return impossible, in racket games; "She killed the ball" -01407568 35 v 01 connect 7 002 @ 01405044 v 0000 ;c 00471613 n 0000 01 + 22 00 | hit or play a ball successfully; "The batter connected for a home run" -01407722 35 v 01 drive 2 004 @ 01405044 v 0000 ;c 00523513 n 0000 + 00567044 n 0101 $ 01407904 v 0000 01 + 08 00 | hit very hard, as by swinging a bat horizontally; "drive a ball" -01407904 35 v 01 drive 3 008 $ 01407722 v 0000 @ 01405044 v 0000 ;c 00464894 n 0000 + 00572489 n 0101 + 10035314 n 0101 + 03244047 n 0101 + 00572489 n 0102 $ 01509584 v 0000 01 + 08 00 | strike with a driver, as in teeing off; "drive a golf ball" -01408153 35 v 02 hole 1 hole_out 0 003 @ 01405044 v 0000 ;c 00464894 n 0000 + 03526805 n 0101 02 + 02 00 + 08 02 | hit the ball into the hole -01408297 35 v 02 bunt 1 drag_a_bunt 0 004 @ 01405044 v 0000 ;c 00471613 n 0000 + 00128477 n 0101 + 09880338 n 0101 01 + 02 00 | hit a ball in such a way so as to make it go a short distance -01408489 35 v 01 snick 2 003 @ 01405044 v 0000 ;c 00476389 n 0000 + 00128324 n 0101 01 + 08 00 | hit a glancing blow with the edge of the bat -01408633 35 v 01 racket 0 003 @ 01405044 v 0000 ;c 00523513 n 0000 + 04039381 n 0101 01 + 08 00 | hit (a ball) with a racket -01408760 35 v 02 dribble 0 carry 8 005 @ 01405044 v 0000 ;c 00523513 n 0000 + 00478647 n 0101 + 10033888 n 0101 + 00478647 n 0102 02 + 02 00 + 08 00 | propel, "Carry the ball"; "dribble the ball" -01408958 35 v 01 slice 2 005 @ 01405044 v 0000 ;c 00464894 n 0000 + 00572043 n 0101 + 10611729 n 0101 + 00572043 n 0103 02 + 02 00 + 08 00 | hit a ball and put a spin on it so that it travels in a different direction -01409177 35 v 01 hook 3 005 @ 01405044 v 0000 ;c 00464894 n 0000 + 00572285 n 0101 + 10184683 n 0101 + 00572285 n 0103 01 + 08 00 | hit a ball and put a spin on it so that it travels to the left -01409374 35 v 01 single 0 003 @ 01405044 v 0000 ;c 00471613 n 0000 + 00132601 n 0101 01 + 02 00 | hit a single; "the batter singled to left field" -01409523 35 v 01 double 0 003 @ 01405044 v 0000 ;c 00471613 n 0000 + 00132756 n 0101 01 + 02 00 | hit a two-base hit -01409642 35 v 01 triple 0 003 @ 01405044 v 0000 ;c 00471613 n 0000 + 00132982 n 0101 01 + 02 00 | hit a three-base hit -01409763 35 v 01 fan 1 002 @ 01509280 v 0000 ;c 00471613 n 0000 02 + 08 00 + 09 00 | strike out (a batter), (of a pitcher) -01409888 35 v 01 whiff 0 004 @ 01509280 v 0000 ;c 00471613 n 0000 + 00130512 n 0101 + 10775771 n 0101 02 + 08 00 + 09 00 | strike out by swinging and missing the pitch charged as the third -01410079 35 v 02 sandbag 0 stun 0 002 @ 01400044 v 0000 + 04134008 n 0101 02 + 08 00 + 09 00 | hit something or somebody as if with a sandbag -01410223 35 v 01 strike 0 027 @ 01206218 v 0000 + 07410021 n 0102 + 10178216 n 0102 + 04337740 n 0101 + 00125629 n 0103 ^ 01258302 v 0103 ~ 01230555 v 0000 ~ 01233027 v 0000 ~ 01235769 v 0000 $ 01236164 v 0000 ~ 01238640 v 0000 ~ 01239862 v 0000 ~ 01241490 v 0000 ~ 01243474 v 0000 ~ 01247804 v 0000 ~ 01260428 v 0000 ~ 01274254 v 0000 ~ 01398032 v 0000 ~ 01398919 v 0000 ~ 01399576 v 0000 ~ 01410946 v 0000 ~ 01412759 v 0000 ~ 01414288 v 0000 ~ 01415454 v 0000 ~ 01416871 v 0000 ~ 01417257 v 0000 ~ 01417705 v 0000 05 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | deliver a sharp blow, as with the hand, fist, or weapon; "The teacher struck the child"; "the opponent refused to strike"; "The boxer struck the attacker dead" -01410946 35 v 01 sclaff 1 003 @ 01410223 v 0000 ;c 00464894 n 0000 + 00573775 n 0101 01 + 08 00 | strike (the ground) in making a sclaff -01411085 35 v 08 flog 0 welt 0 whip 0 lather 1 lash 1 slash 2 strap 1 trounce 0 018 @ 01397210 v 0000 + 01160729 n 0806 + 04332987 n 0701 + 00134574 n 0502 + 03643907 n 0501 + 04577769 n 0301 + 00134574 n 0301 + 10684146 n 0302 + 01163047 n 0301 + 14298620 n 0202 + 01163047 n 0103 ~ 01398443 v 0000 ~ 01398682 v 0000 ~ 01398772 v 0000 ~ 01411630 v 0000 ~ 01411768 v 0000 ~ 01411870 v 0000 ~ 01411978 v 0000 02 + 08 00 + 09 00 | beat severely with a whip or rod; "The teacher often flogged the students"; "The children were severely trounced" -01411630 35 v 01 switch 3 003 @ 01411085 v 0000 + 04372171 n 0101 + 10684146 n 0101 01 + 09 00 | flog with or as if with a flexible rod -01411768 35 v 01 cowhide 0 002 @ 01411085 v 0000 + 03124313 n 0101 01 + 09 00 | flog with a cowhide -01411870 35 v 01 cat 0 002 @ 01411085 v 0000 + 02985606 n 0102 01 + 09 00 | beat with a cat-o'-nine-tails -01411978 35 v 01 birch 0 002 @ 01411085 v 0000 + 02842809 n 0101 02 + 08 00 + 09 00 | whip with a birch twig -01412089 35 v 01 manhandle 0 001 @ 01210737 v 0000 01 + 09 00 | handle roughly; "I was manhandled by the police" -01412204 35 v 04 cane 0 flog 1 lambaste 0 lambast 0 003 @ 01397210 v 0000 + 01163047 n 0203 + 02949084 n 0101 01 + 09 00 | beat with a cane -01412346 35 v 05 deck 0 coldcock 0 dump 0 knock_down 0 floor 0 004 @ 01398919 v 0000 + 09282208 n 0501 + 03365592 n 0501 + 00133981 n 0401 01 + 09 00 | knock down with force; "He decked his opponent" -01412548 35 v 01 whang 1 002 @ 01398919 v 0000 + 00133338 n 0105 01 + 08 00 | beat with force -01412644 35 v 01 paste 0 001 @ 01398919 v 0000 02 + 08 00 + 09 00 | hit with the fists; "He pasted his opponent" -01412759 35 v 01 clout 0 002 @ 01410223 v 0000 + 00134780 n 0102 02 + 08 00 + 09 00 | strike hard, especially with the fist; "He clouted his attacker" -01412912 35 v 06 cream 3 bat 0 clobber 0 drub 0 thrash 2 lick 1 004 $ 01416193 v 0000 @ 01101913 v 0000 + 07476623 n 0501 + 07476623 n 0404 02 + 08 00 + 09 00 | beat thoroughly and conclusively in a competition or fight; "We licked the other team on Sunday!" -01413173 35 v 01 bat 1 009 @ 01400044 v 0000 ;c 00471613 n 0000 + 04292414 n 0103 + 02806379 n 0101 + 09843956 n 0101 + 00126584 n 0101 $ 01413436 v 0000 $ 01413561 v 0000 ~ 01413719 v 0000 01 + 08 00 | strike with, or as if with a baseball bat; "bat the ball" -01413436 35 v 01 bat 2 003 $ 01413173 v 0000 @ 01400044 v 0000 ;c 00471613 n 0000 01 + 02 00 | use a bat; "Who's batting?" -01413561 35 v 01 bat 3 003 $ 01413173 v 0000 @ 01400044 v 0000 ;c 00471613 n 0000 01 + 02 00 | have a turn at bat; "Jones bats first, followed by Martinez" -01413719 35 v 01 switch-hit 0 003 @ 01413173 v 0000 ;c 00471613 n 0000 + 10684311 n 0101 02 + 02 00 + 08 00 | bat right-handed against a left-handed and left-handed against a right-handed pitcher -01413917 35 v 01 cut 7 002 @ 01400044 v 0000 ;c 00523513 n 0000 01 + 08 00 | hit (a ball) with a spin so that it turns in the opposite direction; "cut a Ping-Pong ball" -01414088 35 v 03 knock_cold 0 knock_out 0 kayo 0 002 @ 01397210 v 0000 + 00134099 n 0201 01 + 09 00 | knock unconscious or senseless; "the boxing champion knocked out his opponent in a few seconds" -01414288 35 v 02 rap 0 knap 0 004 @ 01410223 v 0000 + 00133338 n 0103 + 07410021 n 0101 ~ 01414467 v 0000 03 + 08 00 + 21 00 + 22 00 | strike sharply; "rap him on the knuckles" -01414467 35 v 01 knock 1 004 @ 01414288 v 0000 + 07386370 n 0101 + 10239761 n 0101 + 07386370 n 0102 01 + 22 00 | rap with the knuckles; "knock on the door" -01414626 35 v 03 thump 0 pound 0 poke 2 005 @ 01400044 v 0000 + 00134780 n 0303 + 01175316 n 0202 + 01175316 n 0204 + 01175099 n 0101 02 + 08 00 + 09 00 | hit hard with the hand, fist, or some heavy instrument; "the salesman pounded the door knocker"; "a bible-thumping Southern Baptist" -01414916 35 v 02 smack 2 thwack 0 006 @ 01400044 v 0000 + 00133567 n 0201 + 00133668 n 0101 + 07410745 n 0102 + 00133875 n 0101 + 00133668 n 0102 02 + 08 00 + 09 00 | deliver a hard blow to; "The teacher smacked the student who had misbehaved" -01415162 35 v 01 belt 0 002 @ 01400044 v 0000 + 07410207 n 0105 01 + 09 00 | deliver a blow to; "He belted his opponent" -01415285 35 v 02 punch 0 plug 0 003 @ 01400044 v 0000 + 00134780 n 0101 + 10492627 n 0101 02 + 08 00 + 09 00 | deliver a quick blow to; "he punched me in the stomach" -01415454 35 v 01 chop 3 003 @ 01410223 v 0000 + 00566889 n 0101 + 00129317 n 0102 01 + 09 00 | strike sharply, as in some sports -01415585 35 v 03 slug 0 slog 0 swig 0 004 @ 01400044 v 0000 + 09871095 n 0101 + 09843956 n 0103 + 00134780 n 0106 01 + 09 00 | strike heavily, especially with the fist or a bat; "He slugged me so hard that I passed out" -01415807 35 v 04 whack 0 wham 0 whop 0 wallop 0 005 @ 01400044 v 0000 + 01176031 n 0401 + 10765098 n 0401 + 00133338 n 0104 + 01160729 n 0107 03 + 08 00 + 09 00 + 10 00 | hit hard; "The teacher whacked the boy" -01416020 35 v 03 pummel 0 pommel 0 biff 0 002 @ 01400044 v 0000 + 00134780 n 0305 01 + 09 00 | strike, usually with the fist; "The pedestrians pummeled the demonstrators" -01416193 35 v 04 thrash 0 thresh 0 lam 0 flail 0 004 @ 01397210 v 0000 + 03356279 n 0401 + 01160729 n 0102 $ 01412912 v 0000 01 + 09 00 | give a thrashing to; beat hard -01416364 35 v 02 thrash 1 thresh 1 005 @ 01398919 v 0000 ;c 00916464 n 0000 + 04428191 n 0201 + 00393161 n 0201 + 04428191 n 0102 01 + 08 00 | beat the seeds out of a grain -01416539 35 v 01 hammer 0 005 @ 01398919 v 0000 + 03481172 n 0101 + 01175316 n 0103 ~ 01416732 v 0000 $ 01675245 v 0000 01 + 08 00 | beat with or as if with a hammer; "hammer the metal flat" -01416732 35 v 02 sledgehammer 0 sledge 0 003 @ 01416539 v 0000 + 03731695 n 0202 + 03731695 n 0103 01 + 08 00 | beat with a sledgehammer -01416871 35 v 01 slap 0 005 @ 01410223 v 0000 + 00133668 n 0103 + 07410745 n 0101 + 10608803 n 0101 ~ 01417162 v 0000 03 + 08 00 + 09 00 + 11 00 | hit with something flat, like a paddle or the open hand; "The impatient teacher slapped the student"; "a gunshot slapped him on the forehead" -01417162 35 v 02 cuff 0 whomp 0 001 @ 01416871 v 0000 02 + 08 00 + 09 00 | hit with the hand -01417257 35 v 01 sclaff 0 003 @ 01410223 v 0000 ;c 00464894 n 0000 + 00573775 n 0101 01 + 08 00 | strike (a golf ball) such that the ground is scraped first -01417416 35 v 03 clobber 1 baste 1 batter 0 001 @ 01397210 v 0000 01 + 09 00 | strike violently and repeatedly; "She clobbered the man who tried to attack her" -01417578 35 v 02 buffet 1 buff 2 001 @ 01400044 v 0000 02 + 08 00 + 09 00 | strike, beat repeatedly; "The wind buffeted him" -01417705 35 v 03 buffet 0 knock_about 0 batter 1 001 @ 01410223 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | strike against forcefully; "Winds buffeted the tent" -01417868 35 v 02 whisk 0 whip 1 003 @ 01418179 v 0000 ;c 00243918 n 0000 ^ 01666002 v 0201 02 + 08 00 + 11 00 | whip with or as if with a wire whisk; "whisk the eggs" -01418037 35 v 01 cream 0 003 @ 01418179 v 0000 ;c 00243918 n 0000 + 07847198 n 0101 01 + 08 00 | make creamy by beating; "Cream the butter" -01418179 35 v 02 beat 3 scramble 2 005 @ 01419473 v 0000 ;c 00243918 n 0000 + 02817650 n 0101 ~ 01417868 v 0000 ~ 01418037 v 0000 02 + 08 00 + 11 00 | stir vigorously; "beat the egg whites"; "beat the cream" -01418389 35 v 01 churn 0 003 @ 01894320 v 0000 ;c 00243918 n 0000 + 03029445 n 0101 01 + 08 00 | stir (cream) vigorously in order to make butter -01418536 35 v 01 toss 0 003 * 01462005 v 0000 @ 01419473 v 0000 ~ 00211642 v 0000 02 + 08 00 + 11 00 | agitate; "toss the salad" -01418667 35 v 03 shuffle 0 ruffle 4 mix 2 009 @ 01211699 v 0000 + 07374756 n 0301 + 00380083 n 0301 + 10594523 n 0101 + 00340463 n 0101 + 00340463 n 0102 ~ 01418959 v 0000 ~ 01419160 v 0000 ~ 01555437 v 0000 01 + 08 00 | mix so as to make a random order or arrangement; "shuffle the cards" -01418959 35 v 01 reshuffle 0 004 @ 01418667 v 0000 ;c 00488225 n 0000 + 00340662 n 0101 + 00340662 n 0102 01 + 08 00 | shuffle again; "So as to prevent cheating, he was asked to reshuffle the cards" -01419160 35 v 01 riffle 0 003 @ 01418667 v 0000 ;c 00488225 n 0000 + 00340838 n 0101 01 + 08 00 | shuffle (playing cards) by separating the deck into two parts and riffling with the thumbs so the cards intermix -01419373 35 v 01 paddle 3 002 @ 01894320 v 0000 + 03873699 n 0101 01 + 08 00 | stir with a paddle -01419473 35 v 07 agitate 0 vex 0 disturb 1 commove 0 shake_up 1 stir_up 0 raise_up 0 005 @ 01850315 v 0000 ~ 01418179 v 0000 ~ 01418536 v 0000 ~ 01419729 v 0000 ~ 01424220 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | change the arrangement or position of -01419729 35 v 02 roil 0 rile 0 002 @ 01419473 v 0000 ~ 01419867 v 0000 02 + 08 00 + 11 00 | make turbid by stirring up the sediments of -01419867 35 v 02 muddle 0 puddle 1 001 @ 01419729 v 0000 02 + 08 00 + 11 00 | make into a puddle; "puddled mire" -01419982 35 v 01 box 1 008 @ 01090335 v 0000 ;c 00523513 n 0000 + 00135148 n 0101 + 09870208 n 0101 + 00445802 n 0101 ~ 01420194 v 0000 ~ 01420451 v 0000 ~ 01420616 v 0000 01 + 02 00 | engage in a boxing match -01420194 35 v 01 spar 0 003 @ 01419982 v 0000 ;c 00523513 n 0000 + 00446804 n 0102 01 + 02 00 | box lightly -01420304 35 v 01 spar 1 003 @ 01090335 v 0000 ;c 00452152 n 0000 ;c 00523513 n 0000 01 + 01 00 | fight with spurs; "the gamecocks were sparring" -01420451 35 v 01 prizefight 0 005 @ 01419982 v 0000 ;c 00523513 n 0000 + 10477077 n 0101 + 07471806 n 0101 + 07471806 n 0102 01 + 02 00 | box for a prize or money -01420616 35 v 01 shadowbox 0 003 @ 01419982 v 0000 ;c 00523513 n 0000 + 00898286 n 0101 01 + 02 00 | go through boxing motions without an opponent -01420765 35 v 01 box 0 004 @ 01400044 v 0000 + 00135148 n 0101 + 09870208 n 0101 + 00445802 n 0101 02 + 08 00 + 09 00 | hit with the fist; "I'll box your ears!" -01420928 35 v 03 spank 0 paddle 7 larrup 0 005 @ 01397210 v 0000 + 03873574 n 0201 + 10608803 n 0102 + 01162784 n 0101 + 00134472 n 0101 01 + 09 00 | give a spanking to; subject to a spanking -01421122 35 v 03 plug_in 0 plug_into 0 connect 3 006 * 01295275 v 0000 @ 01421622 v 0000 + 03091374 n 0301 + 03091374 n 0302 + 03091374 n 0303 ! 01421417 v 0101 02 + 08 00 + 21 00 | plug into an outlet; "Please plug in the toaster!"; "Connect the TV so we can watch the football game tonight" -01421417 35 v 02 unplug 0 disconnect 3 002 @ 01519977 v 0000 ! 01421122 v 0101 02 + 08 00 + 21 00 | pull the plug of (electrical appliances) and render inoperable; "unplug the hair dryer after using it" -01421622 35 v 04 insert 0 infix 1 enter 3 introduce 0 013 @ 01296462 v 0000 + 00320852 n 0402 + 00320852 n 0101 + 00384329 n 0102 + 03573282 n 0101 ~ 01421122 v 0000 ~ 01422003 v 0000 ~ 01422172 v 0000 ~ 01422539 v 0000 ~ 01422662 v 0000 ~ 01528821 v 0000 ~ 01529906 v 0000 ~ 01530431 v 0000 02 + 08 00 + 21 00 | put or introduce into something; "insert a picture into the text" -01422003 35 v 01 penetrate 4 002 @ 01421622 v 0000 + 00846817 n 0101 01 + 09 00 | insert the penis into the vagina or anus of; "Did the molester penetrate the child?" -01422172 35 v 05 cannulate 0 cannulize 0 cannulise 0 intubate 0 canulate 0 011 @ 01421622 v 0000 + 00321195 n 0502 + 00321195 n 0407 + 00321195 n 0303 + 00321195 n 0204 + 02951170 n 0101 + 00321195 n 0106 + 00321195 n 0105 + 00321195 n 0104 + 00321195 n 0103 + 00321195 n 0101 01 + 08 00 | introduce a cannula or tube into; "Cannulate the blood vessel in the neck" -01422539 35 v 01 input 0 002 @ 01421622 v 0000 ;c 06128570 n 0000 01 + 08 00 | enter (data or a program) into a computer -01422662 35 v 02 instill 1 instil 1 006 @ 01421622 v 0000 + 00321731 n 0203 + 00321731 n 0102 + 14920728 n 0101 + 00321731 n 0101 + 03574416 n 0101 02 + 08 00 + 21 00 | enter drop by drop; "instill medication into my eye" -01422886 35 v 03 plug 1 stop_up 0 secure 2 007 * 01421622 v 0000 @ 01423285 v 0000 + 03967942 n 0101 ~ 01220636 v 0000 ~ 01423167 v 0000 ~ 01423506 v 0000 ~ 01423623 v 0000 02 + 08 00 + 11 00 | fill or close tightly with or as if with a plug; "plug the hole"; "stop up the leak" -01423167 35 v 01 tampon 0 003 @ 01422886 v 0000 + 14508368 n 0102 + 04388162 n 0101 01 + 08 00 | plug with a tampon -01423285 35 v 02 close b fill_up 3 006 @ 00261533 v 0000 + 01074694 n 0102 + 00344040 n 0102 ~ 01353405 v 0000 ~ 01422886 v 0000 ~ 01600191 v 0000 01 + 08 00 | fill or stop up; "Can you close the cracks with caulking?" -01423506 35 v 01 chink 0 002 @ 01422886 v 0000 + 09243769 n 0101 01 + 08 00 | fill the chinks of, as with caulking -01423623 35 v 02 cork 0 cork_up 0 005 @ 01422886 v 0000 + 03108853 n 0101 + 14823227 n 0101 + 03109033 n 0101 ! 01423793 v 0101 01 + 08 00 | close a bottle with a cork -01423793 35 v 01 uncork 0 002 @ 01346003 v 0000 ! 01423623 v 0101 01 + 08 00 | draw the cork from (bottles); "uncork the French wine" -01423929 35 v 02 club 0 bludgeon 0 005 @ 01400044 v 0000 + 09861059 n 0201 + 02855793 n 0201 + 03446070 n 0103 + 03053474 n 0101 01 + 09 00 | strike with a club or a bludgeon -01424106 35 v 02 cudgel 0 fustigate 0 002 @ 01400044 v 0000 + 03145384 n 0101 01 + 09 00 | strike with a cudgel -01424220 35 v 01 poke 3 002 @ 01419473 v 0000 + 03975926 n 0101 01 + 08 00 | stir by poking; "poke the embers in the fireplace" -01424350 35 v 02 nuzzle 0 nose 0 002 @ 01226215 v 0000 + 05598147 n 0201 02 + 01 00 + 02 00 | rub noses -01424456 35 v 04 embrace 0 hug 1 bosom 0 squeeze 4 011 @ 01216522 v 0000 + 05553486 n 0301 + 00417859 n 0201 + 10191001 n 0201 + 00854000 n 0204 + 00417397 n 0103 + 00417397 n 0101 + 00417397 n 0102 ~ 01424867 v 0000 ~ 01425511 v 0000 ~ 01606018 v 0000 03 + 02 00 + 08 00 + 09 00 | squeeze (someone) tightly in your arms, usually with fondness; "Hug me, please"; "They embraced"; "He hugged her close to him" -01424867 35 v 01 clinch 4 001 @ 01424456 v 0000 01 + 02 00 | embrace amorously -01424948 35 v 06 cuddle 0 snuggle 0 nestle 0 nest 2 nuzzle 2 draw_close 0 008 @ 01220303 v 0000 + 00417643 n 0302 + 00854000 n 0209 + 00417643 n 0203 + 00417643 n 0101 + 00854000 n 0102 $ 01425348 v 0000 $ 01609953 v 0000 02 + 02 00 + 22 00 | move or arrange oneself in a comfortable and cozy position; "We cuddled against each other to keep warm"; "The children snuggled into their sleeping bags" -01425348 35 v 02 nestle 1 snuggle 1 002 $ 01424948 v 0000 @ 01494310 v 0000 01 + 08 00 | position comfortably; "The baby nestled her head in her mother's elbow" -01425511 35 v 01 cuddle 1 003 @ 01424456 v 0000 + 00417643 n 0101 + 00854000 n 0102 02 + 08 00 + 09 00 | hold (a person or thing) close, as for affection, comfort, or warmth; "I cuddled the baby" -01425709 35 v 02 smooch 0 spoon 1 003 @ 01426153 v 0000 + 00854000 n 0108 + 00138599 n 0102 01 + 02 00 | snuggle and lie in a position where one person faces the back of the others -01425892 35 v 01 pet 0 005 @ 01226215 v 0000 + 09991867 n 0104 ~ 01226781 v 0000 ~ 01426072 v 0000 ~ 01426153 v 0000 02 + 02 00 + 09 00 | stroke or caress gently; "pet the lamb" -01426072 35 v 01 gentle 0 001 @ 01425892 v 0000 01 + 09 00 | stroke soothingly -01426153 35 v 02 neck 0 make_out 1 005 $ 01426397 v 0000 @ 01425892 v 0000 + 10351064 n 0101 + 00854000 n 0106 ~ 01425709 v 0000 01 + 09 00 | kiss, embrace, or fondle with sexual passion; "The couple were necking in the back seat of the car" -01426397 35 v 19 sleep_together 0 roll_in_the_hay 0 love 0 make_out 0 make_love 0 sleep_with 0 get_laid 0 have_sex 0 know 0 do_it 0 be_intimate 0 have_intercourse 0 have_it_away 0 have_it_off 0 screw 4 fuck 0 jazz 0 eff 0 hump 0 lie_with 0 bed 0 have_a_go_at_it 0 bang 4 get_it_on 0 bonk 1 014 @ 01428853 v 0000 + 02818832 n 1501 + 10114550 n 1001 + 00846021 n 1002 + 00846021 n 1001 + 00846021 n 0f03 + 00846021 n 0f04 ;u 07073447 n 0f01 + 00846515 n 0304 + 07488340 n 0301 + 09622745 n 0301 $ 01426153 v 0000 ~ 01427127 v 0000 ~ 01427278 v 0000 05 + 02 00 + 09 14 + 09 13 + 09 10 + 09 0f | have sexual intercourse with; "This student sleeps with everyone in her dorm"; "Adam knew Eve"; "Were you ever intimate with this man?" -01427127 35 v 02 take e have 0 001 @ 01426397 v 0000 01 + 09 00 | have sex with; archaic use; "He had taken this woman when she was most vulnerable" -01427278 35 v 01 fornicate 0 007 @ 01426397 v 0000 + 00848745 n 0101 + 09772746 n 0102 ~ 01427483 v 0000 ~ 01427695 v 0000 ~ 01427806 v 0000 ~ 02095390 v 0000 01 + 02 00 | have sex without being married -01427483 35 v 01 swing 8 002 @ 01427278 v 0000 + 10683675 n 0101 01 + 02 00 | engage freely in promiscuous sex, often with the husband or wife of one's friends; "There were many swinging couples in the 1960's" -01427695 35 v 01 whore 0 002 @ 01427278 v 0000 + 10485440 n 0103 01 + 02 00 | have unlawful sex with a whore -01427806 35 v 01 wench 0 002 @ 01427278 v 0000 + 10774223 n 0101 01 + 02 00 | frequent prostitutes -01427907 35 v 01 tread 2 001 @ 01428853 v 0000 01 + 10 00 | mate with; "male birds tread the females" -01428011 35 v 02 serve 1 service 0 004 @ 01428853 v 0000 + 00853649 n 0202 + 00853649 n 0201 ~ 01428203 v 0000 01 + 11 00 | mate with; "male animals serve the females for breeding purposes" -01428203 35 v 01 stand a 002 @ 01428011 v 0000 ;c 00917211 n 0000 01 + 01 00 | be available for stud services; "male domestic animals such as stallions serve selected females" -01428381 35 v 02 deflower 0 ruin 2 003 @ 01428853 v 0000 + 00966718 n 0101 + 00844994 n 0101 01 + 09 00 | deprive of virginity; "This dirty old man deflowered several young girls in the village" -01428578 35 v 03 seduce 0 score 1 make d 006 * 01426397 v 0000 @ 00766418 v 0000 + 00160688 n 0202 + 00160532 n 0101 + 10575089 n 0101 $ 00783246 v 0000 02 + 09 00 + 02 02 | induce to have sex; "Harry finally seduced Sally"; "Did you score last night?"; "Harry made Sally" -01428853 35 v 04 copulate 0 mate 0 pair 0 couple 0 019 @ 01291069 v 0000 + 07988857 n 0401 + 00847340 n 0401 + 07976936 n 0301 + 00847340 n 0303 + 10640620 n 0204 + 10300303 n 0201 + 00847340 n 0202 + 02887741 a 0102 + 00845523 n 0104 ~ 00054535 v 0000 ~ 01426397 v 0000 ~ 01427907 v 0000 ~ 01428011 v 0000 ~ 01428381 v 0000 ~ 01429322 v 0000 ~ 01430447 v 0000 ~ 02568392 v 0000 ~ 02568572 v 0000 01 + 02 00 | engage in sexual intercourse; "Birds mate in the Spring" -01429322 35 v 02 ride 3 mount 7 002 @ 01428853 v 0000 ;c 01861778 n 0000 01 + 11 00 | copulate with; "The bull was riding the cow" -01429455 35 v 01 breed 1 006 @ 01621555 v 0000 + 08101410 n 0101 + 09873899 n 0101 + 00914929 n 0101 ~ 01429663 v 0000 ~ 01429953 v 0000 02 + 08 00 + 09 00 | cause to procreate (animals); "She breeds dogs" -01429663 35 v 02 mongrelize 0 mongrelise 0 003 @ 01429455 v 0000 + 02804772 n 0102 + 02084861 n 0102 01 + 08 00 | cause to become a mongrel; "mongrelized dogs" -01429825 35 v 01 backcross 0 001 @ 01429953 v 0000 01 + 08 00 | mate a hybrid of the first generation with one of its parents -01429953 35 v 05 crossbreed 0 cross 0 hybridize 0 hybridise 0 interbreed 0 013 @ 01429455 v 0000 + 00849768 n 0503 + 00850425 n 0506 + 00850425 n 0402 + 00850425 n 0301 + 00850425 n 0307 + 05870615 n 0301 + 01327322 n 0301 + 01327322 n 0203 + 00850425 n 0204 + 01327322 n 0102 + 00850425 n 0205 ~ 01429825 v 0000 01 + 08 00 | breed animals or plants using parents of different races and varieties; "cross a horse and a donkey"; "Mendel tried crossbreeding"; "these species do not interbreed" -01430447 35 v 02 breed 0 cover 2 003 @ 01428853 v 0000 ;c 00917211 n 0000 $ 00060185 v 0000 01 + 01 00 | copulate with a female, used especially of horses; "The horse covers the mare" -01430633 35 v 06 masturbate 0 wank 0 fuck_off 0 she-bop 0 jack_off 0 jerk_off 0 009 * 01226215 v 0000 @ 02116118 v 0000 + 10717196 n 0602 + 00856193 n 0204 + 10717196 n 0203 + 00855674 n 0101 + 10299700 n 0101 $ 01430952 v 0000 ~ 01431132 v 0000 02 + 02 00 + 09 00 | get sexual gratification through self-stimulation -01430952 35 v 01 masturbate 1 003 $ 01430633 v 0000 @ 02116118 v 0000 + 00855674 n 0101 01 + 09 00 | stimulate sexually; "The old man wanted to be masturbated by the prostitute" -01431132 35 v 01 scarf 0 001 @ 01430633 v 0000 01 + 02 00 | masturbate while strangling oneself -01431230 35 v 04 snog 0 kiss 0 buss 0 osculate 0 009 @ 01206218 v 0000 + 00138221 n 0403 + 10237196 n 0402 + 00138221 n 0302 + 00138221 n 0201 + 10237196 n 0201 + 00854000 n 0205 + 00854393 n 0101 ~ 01431879 v 0000 05 + 02 00 + 08 00 + 09 00 + 20 00 + 21 00 | touch with the lips or press the lips (against someone's mouth or other body part) as an expression of love, greeting, etc.; "The newly married couple kissed"; "She kissed her grandfather on the forehead when she entered the room" -01431723 35 v 01 kiss 1 002 @ 01206218 v 0000 + 00138078 n 0101 02 + 01 00 + 02 00 | touch lightly or gently; "the blossoms were kissed by the soft rain" -01431879 35 v 02 smack 1 peck 0 002 @ 01431230 v 0000 + 00138599 n 0101 02 + 08 00 + 09 00 | kiss lightly -01431987 35 v 01 tickle 0 004 @ 01226215 v 0000 + 05723417 n 0101 + 00144445 n 0101 + 00144445 n 0102 03 + 08 00 + 09 00 + 10 00 | touch or stroke lightly; "The grass tickled her calves" -01432176 35 v 02 lick 0 lap 0 004 @ 01225970 v 0000 + 00150591 n 0202 + 00150591 n 0101 ~ 01432353 v 0000 02 + 08 00 + 09 00 | pass the tongue over; "the dog licked her hand" -01432353 35 v 01 tongue 0 002 @ 01432176 v 0000 + 05301072 n 0101 02 + 08 00 + 09 00 | lick or explore with the tongue -01432474 35 v 01 mouth 0 003 @ 01206218 v 0000 + 05301908 n 0101 + 05302499 n 0101 02 + 08 00 + 09 00 | touch with the mouth -01432601 35 v 01 bear 0 008 @ 01449974 v 0000 * 01850315 v 0000 * 01831531 v 0000 + 09897696 n 0102 + 10395073 n 0102 + 10311243 n 0101 $ 01601234 v 0103 ~ 01451351 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | move while holding up or supporting; "Bear gifts"; "bear a heavy load"; "bear news"; "bearing orders" -01432914 35 v 01 spirit_away 0 001 @ 01434278 v 0000 02 + 08 00 + 09 00 | carry away rapidly and secretly, as if mysteriously -01433042 35 v 01 bucket 0 003 @ 01449974 v 0000 + 13765749 n 0101 + 02909870 n 0101 01 + 08 00 | carry in a bucket -01433159 35 v 01 return 1 003 @ 01449974 v 0000 ;c 00468480 n 0000 + 00559724 n 0101 01 + 08 00 | make a return; "return a kickback" -01433294 35 v 04 bring 0 get 3 convey 0 fetch 0 008 @ 01435380 v 0000 * 01849221 v 0000 + 00315986 n 0305 ~ 01433809 v 0000 ~ 01433991 v 0000 ! 01434278 v 0101 ~ 01438304 v 0000 $ 02077656 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 21 00 | go or come after and bring or take back; "Get me those books over there, please"; "Could you bring the wine?"; "The dog fetched the hat" -01433674 35 v 01 fetch 3 001 @ 02077656 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take away or remove; "The devil will fetch you!" -01433809 35 v 01 retrieve 0 003 @ 01433294 v 0000 + 02099029 n 0101 $ 01433991 v 0000 02 + 01 00 + 11 00 | run after, pick up, and bring to the master; "train the dog to retrieve" -01433991 35 v 01 retrieve 2 002 $ 01433809 v 0000 @ 01433294 v 0000 01 + 08 00 | go for and bring back; "retrieve the car from the parking garage" -01434140 35 v 01 bring 2 002 * 01849221 v 0000 $ 02077656 v 0000 01 + 09 00 | be accompanied by; "Can I bring my cousin to the dinner?" -01434278 35 v 05 take_away 0 bear_off 0 bear_away 0 carry_away 0 carry_off 0 006 * 02009433 v 0000 @ 00173338 v 0000 ! 01433294 v 0101 ~ 01432914 v 0000 ~ 01435000 v 0000 ~ 01435128 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | remove from a certain place, environment, or mental or emotional state; transport into a new location or state; "Their dreams carried the Romantics away into distant lands"; "The car carried us off to the meeting"; "I'll take you away on a holiday"; "I got carried away when I saw the dead man and I started to cry" -01434822 35 v 01 pile 3 002 @ 01494310 v 0000 + 07961480 n 0101 01 + 21 00 | place or lay as if in a pile; "The teacher piled work on the students until the parents protested" -01435000 35 v 02 spirit_away 1 spirit_off 0 001 @ 01434278 v 0000 02 + 10 00 + 11 00 | carry off mysteriously; as if by magic -01435128 35 v 02 whisk_off 0 whisk_away 0 001 @ 01434278 v 0000 03 + 08 00 + 09 00 + 10 00 | take away quickly and suddenly -01435254 35 v 02 whisk 1 whisk_off 1 002 @ 01392237 v 0000 + 04578801 n 0101 02 + 08 00 + 11 00 | brush or wipe off lightly -01435380 35 v 06 transmit 0 transfer 0 transport 1 channel 0 channelize 0 channelise 0 025 @ 01850315 v 0000 + 01142519 n 0602 + 01142519 n 0501 + 06260121 n 0501 + 06259898 n 0501 + 05250659 n 0504 + 01142519 n 0401 + 01142519 n 0402 + 06260121 n 0401 + 03100490 n 0302 + 01105259 n 0303 + 00201671 n 0201 + 10724699 n 0201 + 10724699 n 0202 + 00315986 n 0204 + 00121366 n 0101 + 10578762 n 0102 + 00121366 n 0103 + 00121366 n 0102 ~ 01433294 v 0000 ~ 01436015 v 0000 ~ 01436139 v 0000 ~ 01436290 v 0000 ~ 01436518 v 0000 ~ 01437254 v 0000 03 + 08 00 + 11 00 + 21 00 | send from one person or place to another; "transmit a message" -01436015 35 v 01 project 1 001 @ 01435380 v 0000 01 + 08 00 | transfer (ideas or principles) from one domain into another -01436139 35 v 01 propagate 0 003 $ 02085573 v 0000 @ 01435380 v 0000 + 11512992 n 0101 01 + 11 00 | transmit; "propagate sound or light through air" -01436290 35 v 01 translate 0 001 @ 01435380 v 0000 01 + 09 00 | bring to a certain spiritual state -01436391 35 v 01 pipe_in 0 001 @ 01449974 v 0000 01 + 08 00 | transport to a destiny through pipes; "We have to pipe in oil" -01436518 35 v 02 turn 8 release 1 004 @ 01435380 v 0000 + 00329619 n 0203 ~ 01436721 v 0000 ~ 01437011 v 0000 01 + 21 00 | let (something) fall or spill from a container; "turn the flour onto a plate" -01436721 35 v 01 deflate 0 002 @ 01436518 v 0000 + 00361932 n 0101 01 + 08 00 | release contained air or gas from; "deflate the air mattress" -01436865 35 v 01 deflate 1 002 @ 02083497 v 0000 + 00361932 n 0101 01 + 08 00 | collapse by releasing contained air or gas; "deflate a balloon" -01437011 35 v 01 throw 8 002 @ 01436518 v 0000 ~ 01437144 v 0000 01 + 08 00 | throw (a die) out onto a flat surface; "Throw a six" -01437144 35 v 01 shoot 3 002 @ 01437011 v 0000 + 10591678 n 0101 01 + 02 00 | throw dice, as in a crap game -01437254 35 v 02 send 0 send_out 0 007 @ 01435380 v 0000 + 10578762 n 0101 + 00121166 n 0101 ^ 00949974 v 0103 ~ 01437597 v 0000 ~ 01437725 v 0000 ~ 01437888 v 0000 03 + 08 00 + 15 00 + 21 00 | to cause or order to be taken, directed, or transmitted to another place; "He had sent the dispatches downtown to the proper people and had slept" -01437597 35 v 01 send_in 0 001 @ 01437254 v 0000 02 + 08 00 + 21 00 | mail in; cause to be delivered; "Send in your comments" -01437725 35 v 01 mail_out 0 001 @ 01437254 v 0000 03 + 08 00 + 11 00 + 15 00 | transmit by mail; "The company mailed out the catalog to all potential customers" -01437888 35 v 02 mail 0 get_off 0 009 @ 01437254 v 0000 + 10282920 n 0101 + 08463063 n 0101 + 03709644 n 0101 + 06264398 n 0101 + 06275634 n 0101 + 08463647 n 0101 + 00122338 n 0101 ~ 01438183 v 0000 03 + 08 00 + 14 00 + 15 00 | send via the postal service; "I'll mail you the check tomorrow" -01438183 35 v 01 pouch 1 001 @ 01437888 v 0000 01 + 08 00 | send by special mail that goes through diplomatic channels -01438304 35 v 01 deliver 0 008 @ 01433294 v 0000 + 10001058 n 0101 + 10001217 n 0103 + 00317207 n 0101 ~ 01438585 v 0000 ~ 01438681 v 0000 ~ 01489465 v 0000 ~ 02348459 v 0000 03 + 08 00 + 11 00 + 15 00 | bring to a destination, make a delivery; "our local super market delivers" -01438585 35 v 01 misdeliver 0 001 @ 01438304 v 0000 01 + 08 00 | deliver to the wrong address -01438681 35 v 03 serve 0 process 0 swear_out 0 004 @ 01438304 v 0000 + 06556692 n 0202 ~ 00793418 v 0000 ~ 01270199 v 0000 02 + 08 00 + 17 00 | deliver a warrant or summons to someone; "He was processed by the sheriff" -01438902 35 v 01 bring 4 003 @ 00126264 v 0000 ^ 01295275 v 0102 ^ 00967625 v 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to come into a particular state or condition; "Long hard years of on the job training had brought them to their competence"; "bring water to the boiling point" -01439190 35 v 03 catch 0 grab 0 take_hold_of 1 012 $ 01082454 v 0000 @ 01212572 v 0000 + 00138956 n 0202 + 00138956 n 0101 + 09901143 n 0101 + 00723241 n 0101 ^ 01998793 v 0101 ~ 01140515 v 0000 ~ 01140794 v 0000 ~ 01365709 v 0000 ~ 01365945 v 0000 ~ 01440378 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take hold of so as to seize or restrain or stop the motion of; "Catch the ball!"; "Grab the elevator door!" -01439604 35 v 02 recapture 0 retake 0 002 @ 01215421 v 0000 + 00096969 n 0101 01 + 09 00 | capture again; "recapture the escaped prisoner" -01439745 35 v 03 snatch 0 snatch_up 0 snap 0 006 @ 01212572 v 0000 + 00138956 n 0304 ^ 02304648 v 0301 + 00138956 n 0103 + 10615929 n 0101 ~ 01440010 v 0000 02 + 08 00 + 09 00 | to grasp hastily or eagerly; "Before I could stop him the dog snatched the ham bone" -01440010 35 v 02 swoop 0 swoop_up 0 002 @ 01439745 v 0000 + 00977214 n 0101 01 + 08 00 | seize or catch with a swooping motion -01440139 35 v 02 reach 0 reach_out 0 004 @ 01831531 v 0000 + 00341243 n 0101 + 00341243 n 0102 ^ 00744572 v 0101 01 + 22 00 | move forward or upward in order to touch; also in a metaphorical sense; "Government reaches out to the people" -01440378 35 v 02 intercept 0 stop 0 005 @ 01439190 v 0000 + 02982790 n 0202 + 01078279 n 0101 + 03577672 n 0101 ~ 01440646 v 0000 02 + 08 00 + 09 00 | seize on its way; "The fighter plane was ordered to intercept an aircraft that had entered the country's airspace" -01440646 35 v 02 cut_off 3 cut_out 3 001 @ 01440378 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cut off and stop; "The bicyclist was cut out by the van" -01440801 35 v 02 prickle 0 prick 0 007 @ 01441100 v 0000 + 13089631 n 0204 + 02888898 n 0202 + 00944789 n 0201 + 13904843 n 0203 + 00944789 n 0202 ~ 01331027 v 0000 02 + 08 00 + 11 00 | make a small hole into, as with a needle or a thorn; "The nurse pricked my finger to get a small blood sample" -01441100 35 v 01 pierce 0 010 @ 01227675 v 0000 * 01552519 v 0000 ~ 01230241 v 0000 ~ 01274971 v 0000 ~ 01275301 v 0000 ~ 01440801 v 0000 ~ 01441382 v 0000 ~ 01442779 v 0000 ~ 01445407 v 0000 ~ 01613732 v 0000 02 + 08 00 + 11 00 | make a hole into; "The needle pierced her flesh" -01441382 35 v 01 bite 1 001 @ 01441100 v 0000 01 + 11 00 | penetrate or cut, as with a knife; "The fork bit into the surface" -01441510 35 v 02 pierce 1 thrust 1 010 @ 01227675 v 0000 + 01173965 n 0202 ~ 01441793 v 0000 ~ 01441993 v 0000 ~ 01442203 v 0000 ~ 01443740 v 0000 ~ 01444326 v 0000 ~ 01445027 v 0000 ~ 01445235 v 0000 ~ 01604119 v 0000 01 + 11 00 | penetrate or cut through with a sharp instrument -01441793 35 v 01 stick 3 003 @ 01441510 v 0000 + 03158885 n 0102 $ 01441993 v 0000 02 + 08 00 + 11 00 | pierce or penetrate or puncture with something pointed; "He stuck the needle into his finger" -01441993 35 v 01 stick 4 004 $ 01441793 v 0000 @ 01441510 v 0000 + 13089631 n 0105 + 03158885 n 0102 02 + 08 00 + 11 00 | pierce with a thrust using a pointed instrument; "he stuck the cloth with the needle" -01442203 35 v 01 peg 1 003 @ 01441510 v 0000 + 07271791 n 0101 + 03905540 n 0101 01 + 08 00 | pierce with a wooden pin or knock or thrust a wooden pin into -01442361 35 v 01 pierce 2 002 @ 01227675 v 0000 ~ 01442578 v 0000 02 + 08 00 + 11 00 | cut or make a way through; "the knife cut through the flesh"; "The path pierced the jungle"; "Light pierced through the forest" -01442578 35 v 02 pick 2 break_up 3 003 * 01257173 v 0000 @ 01442361 v 0000 + 03929202 n 0101 01 + 08 00 | attack with or as if with a pickaxe of ice or rocky ground, for example; "Pick open the ice" -01442779 35 v 02 punch 1 perforate 0 005 @ 01441100 v 0000 + 03915900 n 0201 + 00944633 n 0201 + 04023249 n 0101 + 04023249 n 0102 02 + 08 00 + 11 00 | make a hole into or between, as for ease of separation; "perforate the sheets of paper" -01443021 35 v 02 bore 0 drill 0 012 @ 01552519 v 0000 + 03239726 n 0201 + 03240140 n 0201 + 00942799 n 0201 + 00923130 n 0202 + 05103283 n 0101 + 02875233 n 0101 + 02875436 n 0102 + 01923025 n 0102 ~ 01443490 v 0000 ~ 01443631 v 0000 ~ 01443871 v 0000 02 + 08 00 + 11 00 | make a hole, especially with a pointed power or hand tool; "don't drill here, there's a gas pipe"; "drill a hole into the wall"; "drill for oil"; "carpenter bees are boring holes into the wall" -01443490 35 v 01 spud 0 001 @ 01443021 v 0000 01 + 08 00 | initiate drilling operations, as for petroleum; "The well was spudded in April" -01443631 35 v 01 counter-drill 0 001 @ 01443021 v 0000 02 + 08 00 + 11 00 | drill in an opposite direction -01443740 35 v 01 center_punch 0 001 @ 01441510 v 0000 02 + 08 00 + 11 00 | make a small hole in something as a guide for a drill -01443871 35 v 01 trepan 0 004 @ 01443021 v 0000 ;c 00671351 n 0000 + 04479405 n 0101 + 04479526 n 0101 02 + 08 00 + 11 00 | cut a hole with a trepan, as in surgery -01444037 35 v 01 tunnel 0 002 @ 01227675 v 0000 + 04497962 n 0101 02 + 04 00 + 22 00 | force a way through -01444146 35 v 01 funnel 0 003 @ 01850315 v 0000 + 03403643 n 0101 + 13872822 n 0101 02 + 08 00 + 11 00 | move or pour through a funnel; "funnel the liquid into the small bottle" -01444326 35 v 04 transfix 0 impale 0 empale 0 spike 0 005 @ 01441510 v 0000 + 04276249 n 0401 + 00420877 n 0201 ~ 01444723 v 0000 ~ 01444887 v 0000 02 + 08 00 + 11 00 | pierce with a sharp stake or point; "impale a shrimp on a skewer" -01444563 35 v 02 skewer 0 spit 0 003 @ 01444723 v 0000 + 04280970 n 0201 + 04227900 n 0101 01 + 08 00 | drive a skewer through; "skewer the meat for the BBQ" -01444723 35 v 01 pin 2 003 @ 01444326 v 0000 + 03940256 n 0101 ~ 01444563 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | pierce with a pin; "pin down the butterfly" -01444887 35 v 01 spear 0 003 @ 01444326 v 0000 + 04271148 n 0101 + 04270891 n 0101 02 + 08 00 + 11 00 | pierce with a spear; "spear fish" -01445027 35 v 02 horn 0 tusk 0 005 @ 01441510 v 0000 + 14757547 n 0202 + 01465713 n 0201 + 01325853 n 0101 + 01325417 n 0101 01 + 10 00 | stab or pierce with a horn or tusk; "the rhino horned the explorer" -01445235 35 v 01 gore 2 003 @ 01441510 v 0000 + 05401753 n 0101 + 00221178 n 0102 02 + 09 00 + 10 00 | wound by piercing with a sharp or penetrating object or instrument -01445407 35 v 03 sting 1 bite 2 prick 3 004 @ 01441100 v 0000 + 14297870 n 0202 + 14297870 n 0101 + 02465693 n 0101 02 + 10 00 + 11 00 | deliver a sting to; "A bee stung my arm yesterday" -01445597 35 v 01 gnaw 0 003 @ 01201089 v 0000 @ 01445932 v 0000 + 02329401 n 0102 02 + 08 00 + 11 00 | bite or chew on with the teeth; "gnaw an old cracker" -01445756 35 v 02 snap_at 0 bite_off 0 001 @ 01445932 v 0000 02 + 08 00 + 11 00 | bite off with a quick bite; "The dog snapped off a piece of cloth from the intruder's pants" -01445932 35 v 02 bite 0 seize_with_teeth 0 011 @ 01224001 v 0000 + 14287408 n 0101 + 00838816 n 0101 + 09857852 n 0101 ^ 01445756 v 0102 ~ 01445597 v 0000 ~ 01445756 v 0000 ~ 01446301 v 0000 ~ 01446420 v 0000 ~ 01446569 v 0000 ~ 01446729 v 0000 02 + 08 00 + 09 00 | to grip, cut off, or tear with or as if with the teeth or jaws; "Gunny invariably tried to bite her" -01446301 35 v 01 snap 4 001 @ 01445932 v 0000 02 + 01 00 + 02 00 | bring the jaws together; "he snapped indignantly" -01446420 35 v 01 nibble 2 002 @ 01445932 v 0000 + 00842197 n 0101 02 + 02 00 + 22 00 | bite gently; "The woman tenderly nibbled at her baby's ear" -01446569 35 v 01 nip 2 002 @ 01445932 v 0000 + 00842281 n 0101 01 + 11 00 | give a small sharp bite to; "The Queen's corgis always nip at her staff's ankles" -01446729 35 v 01 nibble 0 003 @ 01445932 v 0000 + 13625884 n 0102 + 10357484 n 0101 03 + 02 00 + 08 00 + 22 00 | bite off very small pieces; "She nibbled on her cracker" -01446901 35 v 03 brandish 0 flourish 0 wave 0 006 * 01216670 v 0000 @ 01850315 v 0000 + 10771270 n 0301 + 06890254 n 0201 + 06890254 n 0102 ~ 01447124 v 0000 01 + 08 00 | move or swing back and forth; "She waved her gun" -01447124 35 v 01 wigwag 0 001 @ 01446901 v 0000 01 + 02 00 | send a signal by waving a flag or a light according to a certain code -01447257 35 v 01 press 0 011 @ 01206218 v 0000 + 00113113 n 0101 + 11495041 n 0101 + 00113113 n 0102 + 00113113 n 0103 ~ 01447868 v 0000 ~ 01593937 v 0000 ~ 01594978 v 0000 ~ 01597096 v 0000 ~ 01605291 v 0000 ~ 01872645 v 0000 05 + 04 00 + 08 00 + 11 00 + 21 00 + 22 00 | exert pressure or force to or upon; "He pressed down on the boards"; "press your thumb on this spot" -01447632 35 v 02 press 6 push 6 004 @ 01871979 v 0000 + 11498203 n 0201 + 00112312 n 0201 + 00113113 n 0101 01 + 02 00 | make strenuous pushing movements during birth to expel the baby; "`Now push hard,' said the doctor to the woman" -01447868 35 v 01 squeeze 0 007 @ 01447257 v 0000 + 00357023 n 0101 + 00357023 n 0102 ^ 01675780 v 0102 ^ 01349318 v 0102 ^ 01375637 v 0103 ~ 01394812 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | press firmly; "He squeezed my hand" -01448100 35 v 03 pull 0 draw 3 force 1 030 $ 01609287 v 0000 $ 02103162 v 0000 @ 01850315 v 0000 + 11458624 n 0301 + 00115036 n 0201 + 00115667 n 0203 + 00114431 n 0101 + 10492202 n 0101 + 00114431 n 0102 ! 01871979 v 0101 ^ 01661804 v 0107 ^ 01592456 v 0103 ^ 01351170 v 0104 ^ 01351170 v 0102 ^ 01453718 v 0103 ^ 01505254 v 0103 ^ 01449053 v 0101 ~ 01448778 v 0000 ~ 01449053 v 0000 ~ 01449236 v 0000 ~ 01449427 v 0000 ~ 01449591 v 0000 ~ 01452546 v 0000 ~ 01453109 v 0000 ~ 01453433 v 0000 ~ 01454810 v 0000 ~ 01505254 v 0000 ~ 01592072 v 0000 ~ 01592306 v 0000 ~ 01592456 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to move by pulling; "draw a wagon"; "pull a sled" -01448778 35 v 01 twitch 2 002 @ 01448100 v 0000 ~ 01448917 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move or pull with a sudden motion -01448917 35 v 01 skitter 0 001 @ 01448778 v 0000 01 + 02 00 | twitch the hook of a fishing line through or along the surface of water -01449053 35 v 01 pull_back 0 002 $ 01243298 v 0000 @ 01448100 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | move to a rearward position; pull towards the back; "Pull back your arms!" -01449236 35 v 01 adduct 0 005 @ 01448100 v 0000 + 00003131 a 0102 + 00333203 n 0101 + 05291728 n 0101 ! 01449427 v 0101 01 + 01 00 | draw a limb towards the body; "adduct the thigh muscle" -01449427 35 v 01 abduct 0 004 @ 01448100 v 0000 + 00333037 n 0101 + 05291010 n 0101 ! 01449236 v 0101 01 + 01 00 | pull away from the body; "this muscle abducts" -01449591 35 v 01 stretch 0 002 @ 01448100 v 0000 ~ 01243298 v 0000 03 + 08 00 + 09 00 + 11 00 | pull in opposite directions; "During the Inquisition, the torturers would stretch their victims on a rack" -01449796 35 v 02 give 0 yield 0 003 @ 00240810 v 0000 + 05021151 n 0101 ^ 00804476 v 0102 01 + 01 00 | be flexible under stress of physical force; "This material doesn't give" -01449974 35 v 02 transport 0 carry 2 027 $ 01241881 v 0000 @ 01850315 v 0000 + 09897696 n 0201 + 08057633 n 0201 + 02970100 n 0201 + 02687172 n 0202 + 00318735 n 0201 + 00315986 n 0101 + 04474035 n 0101 + 03100897 n 0105 + 00315986 n 0102 $ 01061320 v 0000 ~ 01239054 v 0000 ~ 01239202 v 0000 ~ 01432601 v 0000 ~ 01433042 v 0000 ~ 01433159 v 0000 ~ 01436391 v 0000 ~ 01450792 v 0000 ~ 01450961 v 0000 ~ 01451176 v 0000 ~ 01451502 v 0000 ~ 01451842 v 0000 ~ 01452255 v 0000 ~ 01454246 v 0000 ~ 01949817 v 0000 ~ 02077656 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 | move while supporting, either in a vehicle or in one's hands or on one's body; "You must carry your camping gear"; "carry the suitcases to the car"; "This train is carrying nuclear waste"; "These pipes carry waste water into the river" -01450792 35 v 01 port 7 003 @ 01449974 v 0000 + 10455447 n 0101 + 00319717 n 0101 01 + 08 00 | carry, bear, convey, or bring; "The small canoe could be ported easily" -01450961 35 v 01 porter 0 004 @ 01449974 v 0000 + 10455447 n 0101 + 13324710 n 0101 + 00319825 n 0101 02 + 02 00 + 08 00 | carry luggage or supplies; "They portered the food up Mount Kilimanjaro for the tourists" -01451176 35 v 01 pack 8 003 @ 01449974 v 0000 + 03870672 n 0101 + 00319312 n 0101 02 + 08 00 + 21 00 | carry, as on one's back; "Pack your tents to the top of the mountain" -01451351 35 v 01 frogmarch 0 001 @ 01432601 v 0000 01 + 09 00 | carry someone against his will upside down such that each limb is held by one person -01451502 35 v 01 cart 1 005 @ 01449974 v 0000 + 01106118 n 0101 + 09897914 n 0101 + 03484083 n 0103 + 02970849 n 0101 01 + 08 00 | transport something in a cart -01451665 35 v 04 cart_off 0 cart_away 0 haul_off 0 haul_away 0 001 @ 00179311 v 0000 02 + 08 00 + 11 00 | take away by means of a vehicle; "They carted off the old furniture" -01451842 35 v 01 fly 0 004 @ 01449974 v 0000 + 00302394 n 0102 ~ 01452057 v 0000 $ 01941093 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | transport by aeroplane; "We fly flowers from the Caribbean to North America" -01452057 35 v 02 airlift 0 lift 4 002 @ 01451842 v 0000 + 00316594 n 0101 02 + 08 00 + 09 00 | fly people or goods to or from places not accessible by other means; "Food is airlifted into Bosnia" -01452255 35 v 01 haul 0 007 @ 01449974 v 0000 + 00115036 n 0102 + 10162507 n 0101 + 00115036 n 0103 + 01105909 n 0101 ~ 01602096 v 0000 ~ 01602191 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | transport in a vehicle; "haul stones from the quarry in a truck"; "haul vegetables to the market" -01452546 35 v 03 pluck 2 plunk 0 pick 5 004 @ 01448100 v 0000 + 03929660 n 0301 + 00116008 n 0101 ~ 01452783 v 0000 03 + 08 00 + 10 00 + 22 00 | pull lightly but sharply with a plucking motion; "he plucked the strings of his mandolin" -01452783 35 v 01 twang 0 002 @ 01452546 v 0000 + 07398873 n 0101 01 + 08 00 | pluck (strings of an instrument); "He twanged his bow" -01452918 35 v 01 tug 0 003 @ 01505254 v 0000 + 00115500 n 0101 + 10492202 n 0102 02 + 01 00 + 02 00 | pull hard; "The prisoner tugged at the chains"; "This movie tugs at the heart strings" -01453109 35 v 01 tug 1 002 @ 01448100 v 0000 + 00115500 n 0101 02 + 08 00 + 11 00 | pull or strain hard at; "Each oar was tugged by several men" -01453256 35 v 01 tug 2 003 @ 01850315 v 0000 + 00115500 n 0101 + 10492202 n 0102 02 + 08 00 + 11 00 | move by pulling hard; "The horse finally tugged the cart out of the mud" -01453433 35 v 01 drag 0 006 @ 01448100 v 0000 + 00114871 n 0101 + 10492202 n 0103 ^ 02677797 v 0106 ~ 01453718 v 0000 ~ 01453969 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | pull, as against a resistance; "He dragged the big suitcase behind him"; "These worries were dragging at him" -01453718 35 v 03 shlep 0 schlep 0 pull_along 0 002 @ 01453433 v 0000 ~ 01454431 v 0000 02 + 08 00 + 11 00 | pull along heavily, like a heavy load against a resistance; "Can you shlep this bag of potatoes upstairs?"; "She pulled along a large trunk" -01453969 35 v 02 trail 3 train 4 005 @ 01453433 v 0000 + 04468476 n 0201 + 04467307 n 0101 + 04467099 n 0101 $ 01542842 v 0000 01 + 08 00 | drag loosely along a surface; allow to sweep the ground; "The toddler was trailing his pants"; "She trained her long scarf behind her" -01454246 35 v 03 lug 0 tote 0 tug 3 004 @ 01449974 v 0000 + 09897696 n 0203 + 02970408 n 0203 + 02774630 n 0102 01 + 08 00 | carry with difficulty; "You'll have to lug this suitcase" -01454431 35 v 01 tow 0 005 @ 01453718 v 0000 + 04495843 n 0104 + 00115292 n 0102 + 00115292 n 0101 ~ 01454636 v 0000 03 + 08 00 + 10 00 + 11 00 | drag behind; "Horses used to tow barges along the canal" -01454636 35 v 01 tug 4 003 @ 01454431 v 0000 + 04495843 n 0102 + 10492202 n 0102 01 + 11 00 | tow (a vessel) with a tug; "The tugboat tugged the freighter into the harbor" -01454810 35 v 04 haul 1 hale 0 cart 0 drag 1 009 @ 01448100 v 0000 + 00114871 n 0401 + 10492202 n 0403 + 04476116 n 0402 + 00115036 n 0102 + 10162507 n 0101 + 00115036 n 0103 + 01105909 n 0101 ~ 01455095 v 0000 02 + 08 00 + 21 00 | draw slowly or heavily; "haul stones"; "haul nets" -01455095 35 v 02 bowse 0 bouse 0 001 @ 01454810 v 0000 01 + 08 00 | haul with a tackle -01455184 35 v 03 hoist 0 lift 1 wind 3 007 @ 01974062 v 0000 + 00116376 n 0201 + 03281145 n 0202 + 04231693 n 0203 + 03525074 n 0101 + 10179817 n 0101 ~ 01455506 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 21 00 + 22 00 | raise or haul up with or as if with mechanical help; "hoist the bicycle onto the roof of the car" -01455506 35 v 02 trice 0 trice_up 0 001 @ 01455184 v 0000 02 + 08 00 + 09 00 | hoist up or in and lash or secure with a small rope -01455639 35 v 02 trice 1 trice_up 1 001 @ 01974062 v 0000 01 + 08 00 | raise with a line; "trice a window shade" -01455754 35 v 02 hoist 1 run_up 0 001 @ 01974062 v 0000 01 + 08 00 | raise; "hoist the flags"; "hoist a sail" -01455866 35 v 04 heave 0 heave_up 0 heft 0 heft_up 0 007 @ 01579153 v 0000 + 00116376 n 0103 + 00324834 n 0101 + 10166762 n 0101 + 00324834 n 0102 ~ 01456088 v 0000 ~ 01456199 v 0000 02 + 08 00 + 09 00 | lift or elevate -01456088 35 v 01 upheave 0 002 @ 01455866 v 0000 + 07375781 n 0101 01 + 08 00 | lift forcefully from beneath -01456199 35 v 02 weigh_anchor 0 weigh_the_anchor 0 001 @ 01455866 v 0000 02 + 01 00 + 02 00 | heave up an anchor in preparation for sailing -01456341 35 v 01 heft 1 002 * 01579153 v 0000 @ 02704617 v 0000 01 + 08 00 | test the weight of something by lifting it -01456463 35 v 05 nip 1 nip_off 0 clip 3 snip 7 snip_off 0 008 @ 01552519 v 0000 + 00359614 n 0403 + 04250026 n 0401 + 04250026 n 0403 + 00359614 n 0301 + 03045074 n 0301 + 03044934 n 0301 + 00359614 n 0302 04 + 08 00 + 09 00 + 10 00 + 11 00 | sever or remove by pinching or snipping; "nip off the flowers" -01456771 35 v 06 pinch 0 squeeze 2 twinge 0 tweet 0 nip 0 twitch 0 007 @ 01224001 v 0000 + 02156532 n 0503 + 07351031 n 0201 + 00357023 n 0201 + 00357275 n 0101 ~ 01457079 v 0000 ~ 01592669 v 0000 02 + 08 00 + 11 00 | squeeze tightly between the fingers; "He pinched her behind"; "She squeezed the bottle" -01457079 35 v 01 goose 0 001 @ 01456771 v 0000 02 + 08 00 + 09 00 | pinch in the buttocks; "he goosed the unsuspecting girl" -01457206 35 v 02 crimp 1 pinch 1 004 @ 01277974 v 0000 + 00357275 n 0201 + 13907415 n 0105 ~ 01457376 v 0000 02 + 08 00 + 11 00 | make ridges into by pinching together -01457376 35 v 01 flute 0 003 @ 01457206 v 0000 + 03372355 n 0101 + 03372355 n 0102 01 + 08 00 | form flutes in -01457489 35 v 01 groove 2 006 @ 01555742 v 0000 + 13893786 n 0101 + 03461988 n 0101 + 00926026 n 0101 ~ 01457710 v 0000 ~ 01457825 v 0000 01 + 08 00 | make a groove in, or provide with a groove; "groove a vinyl record" -01457710 35 v 01 dado 0 002 @ 01457489 v 0000 ;c 00607775 n 0000 01 + 08 00 | cut a dado into or fit into a dado -01457825 35 v 01 mill 0 002 @ 01457489 v 0000 + 03766600 n 0101 01 + 08 00 | produce a ridge around the edge of; "mill a coin" -01457954 35 v 04 percolate 0 sink_in 0 permeate 0 filter 1 008 @ 01227675 v 0000 + 13480667 n 0401 + 00191980 n 0401 + 00468795 a 0301 + 13534954 n 0301 + 13534274 n 0101 ~ 01913532 v 0000 ~ 01913707 v 0000 02 + 01 00 + 04 00 | pass through; "Water permeates sand easily" -01458228 35 v 01 percolate 2 005 > 01457954 v 0000 + 14997888 n 0101 + 13534274 n 0101 + 00192149 n 0101 ~ 01458464 v 0000 01 + 08 00 | cause (a solvent) to pass through a permeable substance in order to extract a soluble constituent -01458464 35 v 01 percolate 3 006 @ 01458228 v 0000 + 14997888 n 0101 + 13534274 n 0101 + 00192149 n 0101 + 00248252 n 0101 + 03915118 n 0101 01 + 08 00 | prepare in a percolator; "percolate coffee" -01458664 35 v 05 filter 0 filtrate 0 strain 0 separate_out 0 filter_out 0 008 @ 01458973 v 0000 + 04332243 n 0301 + 03339643 n 0201 + 14868564 n 0201 + 03339643 n 0101 + 13480667 n 0101 + 00191980 n 0101 + 14868564 n 0101 02 + 08 00 + 11 00 | remove by passing through a filter; "filter out the impurities" -01458973 35 v 01 separate 2 016 @ 00140123 v 0000 + 01254253 n 0101 + 02995998 n 0103 ~ 00209174 v 0000 ~ 00330426 v 0000 ~ 00330909 v 0000 ~ 00398953 v 0000 ~ 01356256 v 0000 ~ 01458664 v 0000 ~ 01459392 v 0000 ~ 01459542 v 0000 ~ 01459696 v 0000 ~ 01460029 v 0000 ~ 01536344 v 0000 ~ 01616608 v 0000 ~ 02032117 v 0000 02 + 08 00 + 11 00 | divide into components or constituents; "Separate the wheat from the chaff" -01459392 35 v 01 extract 7 004 @ 01458973 v 0000 ;c 00922327 n 0000 + 01526905 a 0102 + 13478525 n 0101 01 + 08 00 | separate (a metal) from an ore -01459542 35 v 01 fractionate 0 004 @ 01458973 v 0000 ;c 06084469 n 0000 + 14922107 n 0101 + 13484082 n 0101 01 + 08 00 | obtain by a fractional process -01459696 35 v 01 fractionate 1 004 @ 01458973 v 0000 ;c 06084469 n 0000 + 13484082 n 0101 + 00389508 n 0101 01 + 08 00 | separate into constituents or fractions containing concentrated constituents -01459896 35 v 01 concoct 0 003 @ 01462005 v 0000 + 07375053 n 0101 + 00926668 n 0102 01 + 08 00 | make a concoction (of) by mixing -01460029 35 v 03 sift 0 sieve 0 strain 1 011 @ 01458973 v 0000 + 04332243 n 0301 + 04216634 n 0201 ^ 00677544 v 0201 + 04216860 n 0101 + 01254051 n 0103 + 04216634 n 0101 ~ 01460408 v 0000 ~ 01460712 v 0000 ~ 01460785 v 0000 ~ 01460937 v 0000 02 + 08 00 + 11 00 | separate by passing through a sieve or other straining device to separate out coarser elements; "sift the flour" -01460408 35 v 01 rice 0 004 @ 01460029 v 0000 ;c 00243918 n 0000 + 07804323 n 0101 + 04088441 n 0101 01 + 08 00 | sieve so that it becomes the consistency of rice; "rice the potatoes" -01460594 35 v 02 sieve 1 sift 2 001 @ 00644583 v 0000 01 + 08 00 | check and sort carefully; "sift the information" -01460712 35 v 01 resift 0 001 @ 01460029 v 0000 01 + 08 00 | sift anew -01460785 35 v 02 riddle 1 screen 1 003 @ 01460029 v 0000 + 04216634 n 0202 + 04088696 n 0101 01 + 08 00 | separate with a riddle, as grain from chaff -01460937 35 v 02 winnow 5 fan 0 003 @ 01460029 v 0000 + 01254051 n 0101 + 01254051 n 0102 02 + 02 00 + 08 00 | separate the chaff from by using air currents; "She stood there winnowing chaff all day in the field" -01461152 35 v 01 coalesce 0 005 @ 00367685 v 0000 + 00382109 n 0103 + 00382109 n 0102 + 00382109 n 0101 ~ 00368367 v 0000 02 + 08 00 + 11 00 | fuse or cause to grow together -01461328 35 v 02 compound 0 combine 1 011 @ 01462005 v 0000 + 01331244 a 0201 + 00472336 a 0201 + 07373803 n 0202 + 00378985 n 0202 + 05870180 n 0101 + 00378985 n 0103 ~ 00466651 v 0000 ~ 01461646 v 0000 ~ 01461885 v 0000 ~ 01599435 v 0000 01 + 08 00 | combine so as to form a whole; mix; "compound the ingredients" -01461646 35 v 01 heterodyne 0 001 @ 01461328 v 0000 01 + 08 00 | combine (a radio frequency wave) with a locally generated wave of a different frequency so as to produce a new frequency equal to the sum or the difference between the two -01461885 35 v 02 sulfurette 0 sulphurette 0 002 @ 01461328 v 0000 ;c 06084469 n 0000 01 + 08 00 | combine with sulfur -01462005 35 v 05 mix 0 mingle 0 commix 0 unify 0 amalgamate 0 015 @ 00126264 v 0000 + 02615587 a 0501 + 09786922 n 0501 + 07963987 n 0501 + 00003553 n 0402 + 00380083 n 0302 + 00380083 n 0101 + 07374756 n 0101 + 07374756 n 0102 + 00380083 n 0104 + 00380083 n 0106 ~ 01385170 v 0000 ~ 01459896 v 0000 ~ 01461328 v 0000 ~ 01462468 v 0000 03 + 01 00 + 08 00 + 11 00 | to bring or combine together or with something else; "resourcefully he mingled music and dance" -01462468 35 v 04 blend 0 intermix 0 immingle 0 intermingle 0 007 @ 01462005 v 0000 + 02681084 n 0202 + 00380083 n 0205 + 07375405 n 0101 + 00380696 n 0101 + 02850732 n 0101 ~ 01462806 v 0000 03 + 01 00 + 08 00 + 11 00 | combine into one; "blend the nuts and raisins together"; "he blends in with the crowd"; "We don't intermingle much" -01462806 35 v 01 commingle 0 001 @ 01462468 v 0000 01 + 08 00 | mix or blend; "His book commingles sarcasm and sadness" -01462928 35 v 04 entangle 0 tangle 0 mat 0 snarl 0 007 @ 01223182 v 0000 + 05685879 n 0402 ! 01463520 v 0402 + 09454412 n 0201 ! 01463520 v 0101 ~ 01463212 v 0000 ~ 01463340 v 0000 02 + 08 00 + 11 00 | twist together or entwine into a confusing mass; "The child entangled the cord" -01463212 35 v 01 felt 1 002 @ 01462928 v 0000 + 03326795 n 0101 01 + 11 00 | mat together and make felt-like; "felt the wool" -01463340 35 v 03 enmesh 0 mesh 0 ensnarl 0 002 @ 01462928 v 0000 + 03819595 n 0203 06 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 | entangle or catch in (or as if in) a mesh -01463520 35 v 03 disentangle 0 unsnarl 0 straighten_out 1 007 @ 00277659 v 0000 + 01244593 n 0201 ! 01462928 v 0204 + 01244593 n 0103 ! 01462928 v 0101 ~ 01463792 v 0000 ~ 01521367 v 0000 02 + 08 00 + 11 00 | extricate from entanglement; "Can you disentangle the cord?" -01463792 35 v 03 tease 1 tease_apart 0 loosen 3 003 @ 01463520 v 0000 + 04398167 n 0101 + 10695822 n 0101 01 + 08 00 | disentangle and raise the fibers of; "tease wool" -01463963 35 v 02 arrange 0 set_up 0 037 @ 01494310 v 0000 + 05075602 n 0102 + 10383237 n 0103 ! 01466733 v 0101 ~ 00275607 v 0000 ~ 00276883 v 0000 ~ 00277659 v 0000 ~ 00277935 v 0000 ~ 00278280 v 0000 ~ 00279075 v 0000 ~ 00279239 v 0000 ~ 00404642 v 0000 ~ 00506952 v 0000 ~ 01359432 v 0000 ~ 01360197 v 0000 ~ 01360571 v 0000 ~ 01360715 v 0000 ~ 01392080 v 0000 ~ 01464781 v 0000 ~ 01464931 v 0000 ~ 01465218 v 0000 ~ 01465506 v 0000 ~ 01465732 v 0000 ~ 01465921 v 0000 ~ 01466047 v 0000 ~ 01466198 v 0000 ~ 01466303 v 0000 ~ 01466543 v 0000 ~ 01474209 v 0000 ~ 01483779 v 0000 ~ 01503404 v 0000 ~ 01504130 v 0000 ~ 01542525 v 0000 ~ 01543000 v 0000 ~ 01607445 v 0000 ~ 01614079 v 0000 ~ 02704213 v 0000 01 + 08 00 | put into a proper or systematic order; "arrange the books on the shelves in chronological order" -01464781 35 v 01 stack 6 001 @ 01463963 v 0000 01 + 08 00 | arrange the order of so as to increase one's winning chances; "stack the deck of cards" -01464931 35 v 01 chain 1 002 @ 01463963 v 0000 ~ 01465054 v 0000 01 + 08 00 | connect or arrange into a chain by linking -01465054 35 v 01 concatenate 0 004 $ 00190180 v 0000 @ 01464931 v 0000 ;c 06128570 n 0000 + 14419737 n 0101 01 + 08 00 | combine two strings to form a single one -01465218 35 v 02 pair 3 geminate 0 003 @ 01463963 v 0000 + 13743605 n 0102 $ 01465365 v 0000 01 + 08 00 | arrange in pairs; "Pair these numbers" -01465365 35 v 02 pair 4 geminate 1 004 $ 01465218 v 0000 @ 02612368 v 0000 + 13743605 n 0102 + 07985223 n 0101 01 + 01 00 | occur in pairs -01465506 35 v 01 concord 0 003 @ 01463963 v 0000 + 13797313 n 0102 + 06492040 n 0101 01 + 08 00 | arrange the words of a text so as to create a concordance; "The team concorded several thousand nouns, verbs, and adjectives" -01465732 35 v 01 cascade 0 002 @ 01463963 v 0000 ;c 06128570 n 0000 01 + 08 00 | arrange (open windows) on a computer desktop so that they overlap each other, with the title bars visible -01465921 35 v 01 settle 1 001 @ 01463963 v 0000 01 + 08 00 | arrange or fix in the desired order; "She settled the teacart" -01466047 35 v 01 pyramid 0 003 @ 01463963 v 0000 + 04029125 n 0101 + 13914837 n 0101 01 + 08 00 | arrange or build up as if on the base of a pyramid -01466198 35 v 01 corral 1 001 @ 01463963 v 0000 01 + 08 00 | arrange wagons so that they form a corral -01466303 35 v 02 catenate 0 catenulate 0 007 @ 01463963 v 0000 + 09240621 n 0201 + 08376250 n 0201 + 08376526 n 0201 + 09240621 n 0101 + 08376250 n 0101 + 08376526 n 0101 01 + 11 00 | arrange in a series of rings or chains, as for spores -01466543 35 v 02 dress 4 decorate 0 005 @ 01463963 v 0000 + 01091234 a 0202 + 03579355 n 0202 + 03169390 n 0201 + 00262249 n 0201 01 + 08 00 | provide with decoration; "dress the windows" -01466733 35 v 01 disarrange 0 006 @ 01850315 v 0000 + 14500341 n 0103 ! 01463963 v 0101 ~ 01387493 v 0000 ~ 01473886 v 0000 ~ 01474034 v 0000 02 + 08 00 + 11 00 | destroy the arrangement or order of; "My son disarranged the papers on my desk" -01466978 35 v 08 border 0 adjoin 2 edge 0 abut 0 march 0 butt 2 butt_against 0 butt_on 0 010 @ 01205696 v 0000 + 02928413 n 0602 + 08513163 n 0503 + 08620763 n 0401 + 09758781 n 0401 + 13903079 n 0302 + 03265479 n 0301 + 08565701 n 0102 + 08512736 n 0102 ~ 02608004 v 0000 01 + 11 00 | lie adjacent to another or share a boundary; "Canada adjoins the U.S."; "England marches with Scotland" -01467370 35 v 05 surround 0 environ 0 ring 3 skirt 0 border 1 012 @ 01205696 v 0000 + 08565701 n 0502 + 08512736 n 0502 + 02875013 n 0501 + 08567235 n 0104 + 08567235 n 0103 ~ 01467751 v 0000 ~ 01467917 v 0000 ~ 01471434 v 0000 ~ 01587062 v 0000 ~ 01607716 v 0000 ~ 02724126 v 0000 01 + 11 00 | extend on all sides of simultaneously; encircle; "The forest surrounds my property" -01467751 35 v 01 fringe 0 002 @ 01467370 v 0000 + 03397762 n 0101 01 + 11 00 | decorate with or as if with a surrounding fringe; "fur fringed the hem of the dress" -01467917 35 v 02 girdle 0 gird 1 002 @ 01467370 v 0000 + 03112869 n 0102 02 + 08 00 + 11 00 | put a girdle on or around; "gird your loins" -01468058 35 v 02 evict 0 force_out 2 003 @ 01468576 v 0000 + 01194331 n 0101 $ 01468327 v 0000 02 + 09 00 + 20 00 | expel from one's property or force to move out by a legal process; "The landlord evicted the tenants after they had not paid the rent for four months" -01468327 35 v 01 evict 1 003 $ 01468058 v 0000 @ 01468576 v 0000 + 01194904 n 0101 02 + 09 00 + 20 00 | expel or eject without recourse to legal process; "The landlord wanted to evict the tenants so he banged on the pipes every morning at 3 a.m." -01468576 35 v 06 eject 1 chuck_out 0 exclude 0 turf_out 0 boot_out 0 turn_out 0 009 @ 02501738 v 0000 + 00206927 n 0302 + 00206927 n 0101 + 02972533 n 0102 ~ 01468058 v 0000 ~ 01468327 v 0000 ~ 01468948 v 0000 ~ 01469080 v 0000 ~ 01527877 v 0000 05 + 08 00 + 09 00 + 11 00 + 20 00 + 21 00 | put out or expel from a place; "The unruly student was excluded from the game" -01468948 35 v 01 show_the_door 0 001 @ 01468576 v 0000 01 + 22 00 | ask to leave; "I was shown the door when I asked for a raise" -01469080 35 v 01 bounce 0 002 @ 01468576 v 0000 + 09869009 n 0101 01 + 09 00 | eject from the premises; "The ex-boxer's job is to bounce people who want to enter this private club" -01469263 35 v 03 superimpose 0 superpose 1 lay_over 0 003 @ 01494310 v 0000 + 01053067 n 0201 ~ 01469623 v 0000 01 + 08 00 | place on top of; "can you superimpose the two images?" -01469445 35 v 01 superpose 0 003 @ 01494310 v 0000 + 01053404 n 0101 + 01053067 n 0101 01 + 08 00 | place (one geometric figure) upon another so that their perimeters coincide -01469623 35 v 01 develop 4 001 @ 01469263 v 0000 01 + 08 00 | superimpose a three-dimensional surface on a plane without stretching, in geometry -01469770 35 v 02 invite 0 ask_in 0 004 @ 00752764 v 0000 + 07186148 n 0101 ~ 01469960 v 0000 $ 02384686 v 0000 01 + 09 00 | ask to enter; "We invited the neighbors in for a cup of coffee" -01469960 35 v 01 call_in 0 002 @ 01469770 v 0000 $ 00792011 v 0000 01 + 09 00 | summon to enter; "The nurse called in the next patient" -01470098 35 v 01 welcome 0 002 @ 01470225 v 0000 + 14413265 n 0101 02 + 08 00 + 09 00 | receive someone, as into one's house -01470225 35 v 03 receive 0 take_in 1 invite c 007 + 07186148 n 0301 + 01773420 a 0101 ~ 01470098 v 0000 ~ 01470524 v 0000 ~ 01470670 v 0000 ~ 01470856 v 0000 ~ 02384554 v 0000 02 + 08 00 + 09 00 | express willingness to have in one's home or environs; "The community warmly received the refugees" -01470524 35 v 01 absorb a 001 @ 01470225 v 0000 02 + 09 00 + 10 00 | assimilate or take in; "The immigrants were quickly absorbed into society" -01470670 35 v 01 see 9 002 @ 01470225 v 0000 $ 02488304 v 0000 01 + 09 00 | receive as a specified guest; "the doctor will see you now"; "The minister doesn't see anybody before noon" -01470856 35 v 01 assume 0 003 @ 01470225 v 0000 ;c 06226057 n 0000 + 07357866 n 0101 01 + 09 00 | take up someone's soul into heaven; "This is the day when May was assumed into heaven" -01471043 35 v 04 kidnap 0 nobble 0 abduct 2 snatch 1 010 @ 01213614 v 0000 ;c 00766234 n 0000 + 00775702 n 0402 + 10230801 n 0404 + 00775460 n 0301 + 10230801 n 0303 + 10230801 n 0101 + 00775702 n 0101 + 10230801 n 0102 ~ 01471547 v 0000 01 + 09 00 | take away to an undisclosed location against their will and usually in order to extract a ransom; "The industrialist's son was kidnapped" -01471434 35 v 01 cloister 0 001 @ 01467370 v 0000 01 + 11 00 | surround with a cloister; "cloister the garden" -01471547 35 v 02 shanghai 0 impress 1 005 @ 01471043 v 0000 ;c 00766234 n 0000 + 00086654 n 0202 + 00086654 n 0201 + 10586265 n 0101 01 + 09 00 | take (someone) against his will for compulsory service, especially on board a ship; "The men were shanghaied after being drugged" -01471825 35 v 04 commandeer 0 hijack 0 highjack 0 pirate 0 014 @ 01213614 v 0000 ;c 00766234 n 0000 + 03947888 n 0401 + 00783527 n 0401 + 00769944 n 0302 + 10175725 n 0301 + 10175507 n 0301 + 00783199 n 0301 + 00769944 n 0201 + 10175507 n 0203 + 10175725 n 0202 + 00783199 n 0202 ~ 01472251 v 0000 ~ 01472417 v 0000 02 + 08 00 + 09 00 | take arbitrarily or by force; "The Cubans commandeered the plane and flew it to Miami" -01472251 35 v 01 skyjack 0 002 @ 01471825 v 0000 ;c 00766234 n 0000 02 + 08 00 + 09 00 | subject an aircraft to air piracy; "the plane was skyjacked to Uzbekistan" -01472417 35 v 01 carjack 0 003 @ 01471825 v 0000 ;c 00766234 n 0000 + 00227484 n 0101 02 + 08 00 + 09 00 | take someone's car from him by force, usually with the intention of stealing it; "My car was carjacked last night!" -01472642 35 v 01 expropriate 0 002 @ 02314275 v 0000 + 00086140 n 0101 01 + 09 00 | deprive of possessions; "The Communist government expropriated the landowners" -01472807 35 v 03 scramble 0 jumble 0 throw_together 1 006 @ 00276373 v 0000 + 05953416 n 0203 + 14500567 n 0202 + 00789391 n 0101 + 04150474 n 0101 ~ 01473020 v 0000 02 + 08 00 + 11 00 | bring into random order -01473020 35 v 01 tumble 0 001 @ 01472807 v 0000 02 + 08 00 + 09 00 | throw together in a confused mass; "They tumbled the teams with no apparent pattern" -01473176 35 v 04 putter 0 potter 0 potter_around 0 putter_around 0 003 @ 01831531 v 0000 + 10496193 n 0202 + 10496193 n 0101 02 + 02 00 + 22 00 | move around aimlessly -01473346 35 v 08 putter 1 mess_around 0 potter 1 tinker 0 monkey 0 monkey_around 0 muck_about 0 muck_around 0 007 @ 02413480 v 0000 + 10712055 n 0401 + 10712055 n 0402 + 10712229 n 0401 + 10496193 n 0302 + 10496193 n 0101 ~ 01473729 v 0000 02 + 02 00 + 22 00 | do random, unplanned work or activities or spend time idly; "The old lady is usually mucking about in her little house" -01473729 35 v 01 puddle 0 001 @ 01473346 v 0000 02 + 02 00 + 22 00 | mess around, as in a liquid or paste; "The children are having fun puddling in paint" -01473886 35 v 02 muss 0 tussle 0 002 @ 01466733 v 0000 + 14500047 n 0103 02 + 08 00 + 11 00 | make messy or untidy; "the child mussed up my hair" -01474034 35 v 03 tousle 0 dishevel 0 tangle 1 002 @ 01466733 v 0000 + 09454412 n 0301 02 + 08 00 + 11 00 | disarrange or rumple; dishevel; "The strong wind tousled my hair" -01474209 35 v 04 range 0 array 0 lay_out 0 set_out 0 003 @ 01463963 v 0000 + 07939382 n 0201 ~ 01474449 v 0000 02 + 08 00 + 21 00 | lay out orderly or logically in a line or as if in a line; "lay out the clothes"; "lay out the arguments" -01474449 35 v 01 compart 0 001 @ 01474209 v 0000 01 + 08 00 | lay out in parts according to a plan -01474550 35 v 04 let_go_of 0 let_go 0 release 0 relinquish 2 012 + 00212808 n 0401 ! 01216670 v 0101 ~ 01097743 v 0000 ~ 01222485 v 0000 ~ 01474980 v 0000 ~ 01475075 v 0000 ~ 01475217 v 0000 ~ 01475301 v 0000 ~ 01475415 v 0000 ~ 01475536 v 0000 ~ 01475828 v 0000 ~ 01511380 v 0000 03 + 08 00 + 09 00 + 02 02 | release, as from one's grip; "Let go of the door handle, please!"; "relinquish your grip on the rope--you won't fall" -01474980 35 v 01 pop 7 001 @ 01474550 v 0000 01 + 08 00 | release suddenly; "pop the clutch" -01475075 35 v 01 toggle 1 002 @ 01474550 v 0000 + 04445952 n 0102 01 + 08 00 | release by a toggle switch; "toggle a bomb from an airplane" -01475217 35 v 01 unhand 0 001 @ 01474550 v 0000 01 + 08 00 | remove the hand from -01475301 35 v 02 bring_out 0 let_out 0 001 @ 01474550 v 0000 02 + 20 00 + 21 00 | bring out of a specific state -01475415 35 v 01 unleash 0 002 @ 01474550 v 0000 ~ 01475737 v 0000 01 + 08 00 | release or vent; "unleash one's anger" -01475536 35 v 03 unleash 2 let_loose 0 loose 0 001 @ 01474550 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | turn loose or free from restraint; "let loose mines"; "Loose terrible plagues upon humanity" -01475737 35 v 01 uncork 1 001 @ 01475415 v 0000 01 + 08 00 | release; "uncork his anger" -01475828 35 v 01 unleash 1 001 @ 01474550 v 0000 02 + 08 00 + 09 00 | release from a leash; "unleash the dogs in the park" -01475953 35 v 02 free 1 disengage 1 005 ! 01476483 v 0101 ~ 01312261 v 0000 ~ 01479138 v 0000 ~ 01479682 v 0000 ~ 01585759 v 0000 02 + 08 00 + 11 00 | free or remove obstruction from; "free a path across the cluttered floor" -01476180 35 v 04 suffocate 1 stifle 3 asphyxiate 1 choke 3 006 @ 01476483 v 0000 + 14058252 n 0401 + 14043882 n 0302 + 14042423 n 0301 + 00268383 a 0103 + 14043882 n 0101 02 + 10 00 + 11 00 | impair the respiration of or obstruct the air passage of; "The foul air was slowly suffocating the children" -01476483 35 v 07 obstruct 0 obturate 0 impede 0 occlude 0 jam 2 block c close_up 0 021 @ 02451370 v 0000 + 00562398 n 0601 + 02950154 a 0401 + 01074694 n 0403 + 03839993 n 0304 + 03840327 n 0201 + 01764351 a 0104 + 01074498 n 0101 + 03839993 n 0103 + 03839993 n 0102 ! 01475953 v 0101 ~ 01126961 v 0000 ~ 01127075 v 0000 ~ 01127215 v 0000 ~ 01476180 v 0000 ~ 01477014 v 0000 ~ 01477224 v 0000 ~ 01477538 v 0000 ~ 01477888 v 0000 ~ 01478002 v 0000 ~ 01478603 v 0000 02 + 08 00 + 11 00 | block passage through; "obstruct the path" -01477014 35 v 01 tie_up 4 002 @ 01476483 v 0000 + 07366145 n 0103 02 + 08 00 + 11 00 | restrain from moving or operating normally; "Traffic is tied up for miles around the bridge where the accident occurred" -01477224 35 v 02 dam 0 dam_up 0 002 @ 01476483 v 0000 + 03160309 n 0101 02 + 08 00 + 11 00 | obstruct with, or as if with, a dam; "dam the gorges of the Yangtse River" -01477394 35 v 03 shut_off 0 block_off 1 close_off 0 001 @ 01478002 v 0000 01 + 08 00 | block off the passage through; "We shut off the valve" -01477538 35 v 02 screen 0 block_out 1 003 @ 01476483 v 0000 + 02851099 n 0102 ~ 01477704 v 0000 01 + 11 00 | prevent from entering; "block out the strong sunlight" -01477704 35 v 01 shade 0 002 @ 01477538 v 0000 + 04181718 n 0101 02 + 08 00 + 11 00 | protect from light, heat, or view; "Shade your eyes when you step out into the bright sunlight" -01477888 35 v 02 land_up 0 earth_up 0 001 @ 01476483 v 0000 01 + 08 00 | block with earth, as after a landslide -01478002 35 v 07 barricade 0 block 0 blockade 0 stop c block_off 0 block_up 0 bar 0 012 $ 02145543 v 0000 @ 01476483 v 0000 + 02789271 n 0701 + 02982790 n 0402 + 03967942 n 0402 + 02853218 n 0301 + 01074694 n 0201 + 00562398 n 0201 + 04096848 n 0102 + 02796412 n 0101 ~ 01477394 v 0000 ~ 01478423 v 0000 02 + 08 00 + 11 00 | render unsuitable for passage; "block the way"; "barricade the streets"; "stop the busy road" -01478423 35 v 01 close 7 003 @ 01478002 v 0000 + 01074694 n 0102 + 00344040 n 0102 01 + 08 00 | bar access to; "Due to the accident, the road had to be closed for several hours" -01478603 35 v 07 clog 0 choke_off 0 clog_up 0 back_up 0 congest 0 choke 1 foul 0 010 @ 01476483 v 0000 + 03007354 a 0501 + 13944747 n 0501 + 13437181 n 0401 + 03047553 n 0101 ! 01479138 v 0101 ~ 01357288 v 0000 ~ 01479009 v 0000 ~ 01479333 v 0000 ~ 01479545 v 0000 03 + 01 00 + 08 00 + 11 00 | become or cause to become obstructed; "The leaves clog our drains in the Fall"; "The water pipe is backed up" -01479009 35 v 01 crap_up 0 001 @ 01478603 v 0000 02 + 08 00 + 11 00 | become obstructed or chocked up; "The drains clogged up" -01479138 35 v 01 unclog 0 002 @ 01475953 v 0000 ! 01478603 v 0101 03 + 01 00 + 08 00 + 11 00 | become or cause to become unobstructed; "The chemical that we poured down the drain unclogged it" -01479333 35 v 04 stuff 1 lug 2 choke_up 0 block 2 004 @ 01478603 v 0000 + 02853449 n 0402 + 02853449 n 0401 ! 01479682 v 0101 02 + 08 00 + 11 00 | obstruct; "My nose is all stuffed"; "Her arteries are blocked" -01479545 35 v 02 silt_up 0 silt 0 002 @ 01478603 v 0000 + 15042052 n 0201 01 + 01 00 | become chocked with silt; "The river silted up" -01479682 35 v 02 unstuff 0 loosen_up 0 003 @ 01475953 v 0000 ! 01479333 v 0101 ~ 01616460 v 0000 02 + 08 00 + 11 00 | cause to become unblocked; "The medicine unstuffed my nose in minutes!" -01479874 35 v 01 bag 1 003 @ 01480149 v 0000 ;c 00452293 n 0000 + 13754778 n 0101 01 + 08 00 | capture or kill, as in hunting; "bag a few pheasants" -01480025 35 v 01 batfowl 0 002 @ 01480149 v 0000 ;c 00452293 n 0000 01 + 08 00 | catch birds by temporarily blinding them -01480149 35 v 02 capture 0 catch 3 010 @ 02210855 v 0000 + 13755822 n 0201 + 09609561 n 0102 ~ 01143838 v 0000 ~ 01382818 v 0000 ~ 01479874 v 0000 ~ 01480025 v 0000 $ 01480469 v 0000 ~ 01480641 v 0000 ~ 01480770 v 0000 01 + 08 00 | capture as if by hunting, snaring, or trapping; "I caught a rabbit in the trap today" -01480469 35 v 01 catch c 003 $ 01480149 v 0000 @ 02304982 v 0000 + 02983357 n 0101 02 + 08 00 + 11 00 | take in and retain; "We have a big barrel to catch the rainwater" -01480641 35 v 01 rat 0 003 @ 01480149 v 0000 + 02331046 n 0101 + 02094562 n 0102 01 + 02 00 | catch rats, especially with dogs -01480770 35 v 05 trap 0 entrap 0 snare 0 ensnare 0 trammel 0 007 @ 01480149 v 0000 ;c 00452293 n 0000 + 04248851 n 0301 + 10615808 n 0301 + 04474466 n 0101 + 10726233 n 0101 ~ 01481027 v 0000 01 + 08 00 | catch in or as if in a trap; "The men trap foxes" -01481027 35 v 01 gin 0 003 @ 01480770 v 0000 ;c 00452293 n 0000 + 04248851 n 0102 01 + 08 00 | trap with a snare; "gin game" -01481154 35 v 01 suspend 0 004 @ 01481360 v 0000 + 01017701 n 0101 + 02887489 n 0102 ~ 01482285 v 0000 01 + 21 00 | hang freely; "The secret police suspended their victims from the ceiling and beat them" -01481360 35 v 02 hang 0 hang_up 1 008 > 01482075 v 0000 $ 01482075 v 0000 @ 01340439 v 0000 + 10159434 n 0101 + 03490884 n 0101 + 03491178 n 0101 ~ 01481154 v 0000 ~ 02105453 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | cause to be hanging or suspended; "Hang that picture on the wall" -01481647 35 v 01 hang 4 002 @ 01340439 v 0000 $ 01481819 v 0000 01 + 08 00 | place in position as by a hinge so as to allow free movement in one direction; "hang a door" -01481819 35 v 01 hang 5 001 $ 01481647 v 0000 01 + 04 00 | be placed in position as by a hinge; "This cabinet door doesn't hang right!" -01481957 35 v 01 hang 6 001 + 01017701 n 0103 01 + 04 00 | be suspended or poised; "Heavy fog hung over the valley" -01482075 35 v 01 hang 3 005 $ 02741003 v 0000 + 03491178 n 0101 $ 01481360 v 0000 ~ 02697435 v 0000 ~ 02717472 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be suspended or hanging; "The flag hung on the wall" -01482285 35 v 01 dangle 0 002 @ 01481154 v 0000 + 01017701 n 0102 01 + 21 00 | cause to dangle or hang freely; "He dangled the ornaments from the Christmas tree" -01482449 35 v 01 pack 0 010 @ 01486312 v 0000 + 03870546 n 0101 + 10390427 n 0101 + 08008017 n 0101 + 00322228 n 0101 ! 01485513 v 0101 ~ 01482744 v 0000 ~ 01485839 v 0000 ~ 01487008 v 0000 ~ 01493234 v 0000 03 + 08 00 + 21 00 + 31 00 | arrange in a container; "pack the books into the boxes" -01482744 35 v 02 containerize 0 containerise 0 003 @ 01482449 v 0000 + 03094503 n 0201 + 03094503 n 0101 02 + 08 00 + 21 00 | package in a container; "The cargo was containerized for safe and efficient shipping" -01482958 35 v 02 enshrine 0 shrine 0 002 @ 01587062 v 0000 + 04210390 n 0201 02 + 08 00 + 09 00 | enclose in a shrine; "the saint's bones were enshrined in the cathedral" -01483131 35 v 02 pack 1 load_down 0 002 @ 01489989 v 0000 + 03870672 n 0101 02 + 08 00 + 21 00 | load with a pack -01483247 35 v 01 veil 0 005 * 01332730 v 0000 @ 02144835 v 0000 + 03548930 n 0102 + 03502331 n 0102 ! 01483478 v 0101 02 + 08 00 + 11 00 | to obscure, or conceal with or as if with a veil; "women in Afghanistan veil their faces" -01483478 35 v 01 unveil 0 002 @ 01339505 v 0000 ! 01483247 v 0101 02 + 08 00 + 11 00 | remove the veil from; "Women must not unveil themselves in public in Islamic societies" -01483655 35 v 01 unveil 1 002 @ 00173338 v 0000 + 06891339 n 0101 01 + 08 00 | remove the cover from; "unveil a painting" -01483779 35 v 04 pack 2 bundle 1 wad 1 compact 2 007 @ 01463963 v 0000 + 00358089 n 0403 + 07579399 n 0306 ^ 01955009 v 0201 + 14976448 n 0102 $ 01484027 v 0000 ~ 01484267 v 0000 02 + 08 00 + 21 00 | compress into a wad; "wad paper into the box" -01484027 35 v 02 compact 9 pack b 003 $ 01483779 v 0000 @ 02604760 v 0000 + 07419233 n 0101 01 + 07 00 | have the property of being packable or of compacting easily; "This powder compacts easily"; "Such odd-shaped items do not pack well" -01484267 35 v 01 puddle 2 002 @ 01483779 v 0000 + 14992945 n 0101 01 + 08 00 | work a wet mixture, such as concrete or mud -01484392 35 v 05 bunch 0 bunch_up 0 bundle 3 cluster 0 clump 0 008 @ 00144850 v 0000 + 07959943 n 0502 + 07959943 n 0403 + 07959943 n 0404 + 08008017 n 0302 + 02919414 n 0301 + 07959943 n 0101 ~ 01484714 v 0000 03 + 01 00 + 08 00 + 21 00 | gather or cause to gather into a cluster; "She bunched her fingers into a fist" -01484714 35 v 01 agglomerate 0 005 @ 01484392 v 0000 + 00467019 a 0103 + 14711647 n 0101 + 07961480 n 0104 + 02684356 n 0101 02 + 01 00 + 08 00 | form into one cluster -01484884 35 v 01 pack 4 001 @ 01354006 v 0000 01 + 08 00 | seal with packing; "pack the faucet" -01484982 35 v 02 lubricate 0 lube 0 004 @ 00452512 v 0000 + 14578104 n 0101 + 00716945 n 0101 + 14890659 n 0101 02 + 08 00 + 31 00 | apply a lubricant to; "lubricate my car" -01485158 35 v 02 box 2 package 0 008 @ 01486312 v 0000 + 03871083 n 0201 + 08008017 n 0201 + 01103788 n 0201 + 02883344 n 0101 + 10390427 n 0103 + 00322228 n 0102 ! 01485393 v 0101 01 + 08 00 | put into a box; "box the gift, please" -01485393 35 v 01 unbox 0 002 @ 01485513 v 0000 ! 01485158 v 0101 01 + 08 00 | remove from a box; "unbox the presents" -01485513 35 v 02 unpack 0 take_out 1 006 @ 00173338 v 0000 ! 01482449 v 0101 ~ 01214597 v 0000 ~ 01485393 v 0000 ~ 01485732 v 0000 ~ 01486870 v 0000 02 + 08 00 + 21 00 | remove from its packing; "unpack the presents" -01485732 35 v 01 break_out 0 001 @ 01485513 v 0000 01 + 08 00 | take from stowage in preparation for use -01485839 35 v 01 bag 0 006 @ 01482449 v 0000 + 02775359 n 0101 + 02774152 n 0101 + 10390427 n 0102 + 04123567 n 0102 ~ 01486050 v 0000 01 + 08 00 | put into a bag; "The supermarket clerk bagged the groceries" -01486050 35 v 01 pouch 0 002 @ 01485839 v 0000 + 03993180 n 0101 01 + 08 00 | put into a small bag -01486151 35 v 01 sack 0 004 @ 01486312 v 0000 + 13769206 n 0101 + 04122825 n 0101 ^ 02291258 v 0103 01 + 08 00 | put in a sack; "The grocer sacked the onions" -01486312 35 v 03 encase 0 incase 0 case 1 013 @ 01587062 v 0000 + 13766436 n 0301 + 05238036 n 0302 + 04190747 n 0302 + 02975212 n 0301 + 02974697 n 0301 + 04190747 n 0303 + 00322488 n 0202 + 00322488 n 0101 ~ 01482449 v 0000 ~ 01485158 v 0000 ~ 01486151 v 0000 ~ 01486678 v 0000 02 + 08 00 + 21 00 | enclose in, or as if in, a case; "my feet were encased in mud" -01486678 35 v 01 crate 0 003 @ 01486312 v 0000 + 03127925 n 0101 ! 01486870 v 0101 01 + 08 00 | put into a crate; as for protection; "crate the paintings before shipping them to the museum" -01486870 35 v 01 uncrate 0 002 @ 01485513 v 0000 ! 01486678 v 0101 01 + 08 00 | remove from the crate; "uncrate the glassed carefully!" -01487008 35 v 03 bundle 0 bundle_up 0 roll_up 0 003 @ 01482449 v 0000 + 08008017 n 0102 + 02919414 n 0101 01 + 08 00 | make into a bundle; "he bundled up his few possessions" -01487185 35 v 02 roll_out 2 straighten 3 001 @ 01523823 v 0000 01 + 08 00 | straighten by unrolling; "roll out the big map" -01487311 35 v 04 burden 0 burthen 0 weight 0 weight_down 0 008 @ 01488956 v 0000 + 04571088 n 0301 + 02924023 n 0201 + 03679986 n 0103 ! 01487927 v 0101 ~ 01487718 v 0000 ~ 01487830 v 0000 ~ 01490814 v 0000 03 + 08 00 + 09 00 + 31 00 | weight down with a load -01487573 35 v 01 lighten 0 001 @ 01487927 v 0000 01 + 08 00 | reduce the weight on; make lighter; "she lightened the load on the tired donkey" -01487718 35 v 01 overburden 0 002 @ 01487311 v 0000 + 03864994 n 0102 01 + 08 00 | load with excessive weight -01487830 35 v 01 plumb 0 002 @ 01487311 v 0000 + 03968728 n 0102 01 + 08 00 | weight with lead -01487927 35 v 02 unburden 0 disburden 0 003 @ 00173338 v 0000 ! 01487311 v 0101 ~ 01487573 v 0000 03 + 08 00 + 09 00 + 18 00 | take the burden off; remove the burden from; "unburden the donkey" -01488123 35 v 03 unload 0 unlade 0 offload 0 002 @ 01488313 v 0000 + 00714173 n 0101 02 + 08 00 + 21 00 | take the load off (a container or vehicle); "unload the truck"; "offload the van" -01488313 35 v 01 empty 0 004 @ 00173338 v 0000 + 03284308 n 0101 + 00395797 n 0101 ~ 01488123 v 0000 02 + 08 00 + 21 00 | remove; "Empty the water" -01488463 35 v 01 bomb_up 0 001 @ 01489989 v 0000 01 + 08 00 | load an aircraft with bombs -01488555 35 v 03 overload 0 surcharge 2 overcharge 0 002 @ 01489989 v 0000 + 03864994 n 0101 01 + 08 00 | place too much a load on; "don't overload the car" -01488714 35 v 01 surcharge 0 001 @ 00452512 v 0000 01 + 08 00 | fill to an excessive degree; "The air was surcharged with tension" -01488847 35 v 01 overload 1 001 + 03864994 n 0101 01 + 01 00 | become overloaded; "The aerator overloaded" -01488956 35 v 01 charge 0 005 @ 00126264 v 0000 ! 01489332 v 0101 $ 00498016 v 0000 ~ 01487311 v 0000 ~ 01489161 v 0000 03 + 08 00 + 17 00 + 21 00 | fill or load to capacity; "charge the wagon with hay" -01489161 35 v 01 freight 0 005 @ 01488956 v 0000 + 02964389 n 0103 + 02878222 n 0102 + 13326198 n 0102 + 01106272 n 0102 01 + 08 00 | load with goods for transportation -01489332 35 v 01 discharge 1 003 @ 00173338 v 0000 + 00123234 n 0101 ! 01488956 v 0101 02 + 08 00 + 21 00 | remove the charge from -01489465 35 v 06 drop 0 drop_off 0 set_down 0 put_down 1 unload 2 discharge 6 004 @ 01438304 v 0000 + 03246052 n 0101 ~ 01489734 v 0000 ~ 01489859 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | leave or unload; "unload the cargo"; "drop off the passengers at the hotel" -01489734 35 v 01 wharf 2 002 @ 01489465 v 0000 + 03933529 n 0102 01 + 08 00 | discharge at a wharf; "wharf the passengers" -01489859 35 v 01 air-drop 0 001 @ 01489465 v 0000 01 + 08 00 | drop (an object) from the air; unload from a plane or helicopter -01489989 35 v 04 load 1 lade 1 laden 1 load_up 0 011 @ 00452512 v 0000 + 02964389 n 0202 + 03679986 n 0101 + 02964389 n 0104 + 10655169 n 0102 + 00713952 n 0101 ~ 01483131 v 0000 ~ 01488463 v 0000 ~ 01488555 v 0000 ~ 01490690 v 0000 ~ 01503952 v 0000 03 + 01 00 + 21 00 + 31 00 | fill or place a load on; "load a car"; "load the truck with hay" -01490336 35 v 02 load 2 charge 2 005 @ 00452512 v 0000 + 03008275 n 0201 + 04551375 n 0103 + 10268505 n 0101 ~ 01490572 v 0000 01 + 08 00 | provide (a device) with something necessary; "He loaded his gun carefully"; "load the camera" -01490572 35 v 02 recharge 0 reload 1 001 @ 01490336 v 0000 01 + 08 00 | load anew; "She reloaded the gun carefully" -01490690 35 v 01 reload 0 001 @ 01489989 v 0000 02 + 08 00 + 31 00 | place a new load on; "The movers reloaded the truck" -01490814 35 v 01 saddle a 001 @ 01487311 v 0000 02 + 09 00 + 10 00 | load or burden; encumber; "he saddled me with that heavy responsibility" -01490958 35 v 01 yoke 0 006 @ 01296462 v 0000 ;c 00917211 n 0000 + 04613350 n 0101 + 04612840 n 0101 ! 01491360 v 0101 ~ 01491186 v 0000 02 + 08 00 + 21 00 | put a yoke on or join with a yoke; "Yoke the draft horses together" -01491186 35 v 01 inspan 0 004 @ 01490958 v 0000 @ 01491697 v 0000 ;c 00917211 n 0000 ! 01491517 v 0101 01 + 08 00 | attach a yoke or harness to; "inspan the draft animals" -01491360 35 v 01 unyoke 0 004 @ 01328340 v 0000 ;c 00917211 n 0000 ! 01490958 v 0101 ~ 01491517 v 0000 01 + 08 00 | remove the yoke from; "unyoke the cow" -01491517 35 v 01 outspan 0 004 @ 01491360 v 0000 @ 01491886 v 0000 ;c 00917211 n 0000 ! 01491186 v 0101 01 + 08 00 | remove the yoke or harness from; "outspan the draft animals" -01491697 35 v 02 harness 0 tackle 5 005 @ 01296462 v 0000 ;c 00917211 n 0000 + 03494706 n 0101 ! 01491886 v 0101 ~ 01491186 v 0000 02 + 08 00 + 21 00 | put a harness; "harness the horse" -01491886 35 v 01 unharness 0 004 @ 01328340 v 0000 ;c 00917211 n 0000 ! 01491697 v 0101 ~ 01491517 v 0000 01 + 08 00 | remove the harness from; "unharness a horse" -01492052 35 v 02 yoke 1 link 2 007 @ 01296462 v 0000 ;c 00917211 n 0000 + 14419164 n 0202 + 13792692 n 0201 + 04613158 n 0101 + 04613350 n 0101 + 04612840 n 0101 01 + 08 00 | link with or as with a yoke; "yoke the oxen together" -01492283 35 v 01 yoke 2 003 @ 01291069 v 0000 ;c 00917211 n 0000 + 04613158 n 0101 02 + 01 00 + 04 00 | become joined or linked together -01492422 35 v 01 saddle 1 004 @ 01296462 v 0000 + 04123740 n 0101 + 04295081 n 0102 ! 01492576 v 0101 01 + 08 00 | put a saddle on; "saddle the horses" -01492576 35 v 02 unsaddle 0 offsaddle 0 002 @ 00173338 v 0000 ! 01492422 v 0101 01 + 08 00 | remove the saddle from; "They unsaddled their mounts" -01492725 35 v 02 bruise 0 contuse 0 005 @ 00069879 v 0000 + 00126100 n 0201 + 09878702 n 0102 + 14288871 n 0101 ~ 01492944 v 0000 02 + 08 00 + 09 00 | injure the underlying soft tissue or bone of; "I bruised my knee" -01492944 35 v 02 jam 3 crush 1 001 @ 01492725 v 0000 01 + 08 00 | crush or bruise; "jam a toe" -01493041 35 v 01 garner 1 002 @ 02282506 v 0000 + 03452449 n 0102 02 + 08 00 + 21 00 | store grain -01493142 35 v 01 bin 0 002 @ 02281093 v 0000 + 02839910 n 0101 01 + 08 00 | store in bins -01493234 35 v 01 stow 1 003 @ 01482449 v 0000 + 00811921 n 0101 + 00811921 n 0102 02 + 08 00 + 21 00 | fill by packing tightly; "stow the cart" -01493380 35 v 01 park 0 004 @ 01494310 v 0000 + 03890881 n 0101 + 08615638 n 0103 + 13778671 n 0101 02 + 08 00 + 02 01 | place temporarily; "park the car in the yard"; "park the children with the in-laws"; "park your bag in this locker" -01493619 35 v 02 ensconce 0 settle 0 001 @ 01494310 v 0000 01 + 20 00 | fix firmly; "He ensconced himself in the chair" -01493741 35 v 01 put 5 014 @ 00126264 v 0000 ^ 01790739 v 0104 ^ 01800422 v 0105 ^ 01819387 v 0102 ^ 01569017 v 0102 ^ 00021065 v 0106 ^ 00021065 v 0105 ^ 01327133 v 0101 ^ 01355906 v 0101 ^ 01327133 v 0102 ^ 00213794 v 0103 ^ 00486018 v 0106 ^ 02760495 v 0102 ~ 01494178 v 0000 02 + 20 00 + 21 00 | cause to be in a certain state; cause to be in a certain relation; "That song put me in awful good humor"; "put your ideas in writing" -01494178 35 v 01 put_to_sleep 2 001 @ 01493741 v 0000 02 + 09 00 + 10 00 | help someone go to bed; "Mother put the baby to sleep" -01494310 35 v 06 put 0 set 0 place 0 pose 2 position 0 lay 1 107 @ 01850315 v 0000 ^ 01474209 v 0603 + 01051331 n 0504 + 04110439 n 0502 + 06389553 n 0303 + 08621598 n 0302 + 08664443 n 0302 + 05075602 n 0301 + 01052853 n 0201 + 08623927 n 0201 ^ 01489465 v 0203 ^ 02702674 v 0201 ^ 02573127 v 0202 ^ 02578008 v 0204 ^ 01979241 v 0203 ^ 01656788 v 0204 ^ 01661243 v 0204 ^ 01463963 v 0202 ^ 01474209 v 0204 ^ 02642814 v 0104 ^ 01308381 v 0102 ^ 02702674 v 0103 ^ 02642814 v 010a ^ 01981036 v 0102 ^ 02494356 v 0109 ^ 01656788 v 0103 ^ 01363648 v 0101 ^ 01570403 v 0102 ^ 01544692 v 0102 ^ 00742320 v 0105 ~ 00187526 v 0000 ~ 01008719 v 0000 ~ 01247426 v 0000 ~ 01248205 v 0000 ~ 01248405 v 0000 ~ 01256487 v 0000 ~ 01308381 v 0000 ~ 01308681 v 0000 ~ 01371201 v 0000 ~ 01376620 v 0000 ~ 01425348 v 0000 ~ 01434822 v 0000 ~ 01463963 v 0000 ~ 01469263 v 0000 ~ 01469445 v 0000 ~ 01493380 v 0000 ~ 01493619 v 0000 ~ 01496497 v 0000 ~ 01496630 v 0000 ~ 01496843 v 0000 ~ 01496978 v 0000 ~ 01497292 v 0000 ~ 01497458 v 0000 ~ 01497634 v 0000 ~ 01497750 v 0000 ~ 01497864 v 0000 ~ 01498166 v 0000 ~ 01498319 v 0000 ~ 01498498 v 0000 ~ 01498615 v 0000 ~ 01498713 v 0000 ~ 01498872 v 0000 ~ 01499006 v 0000 ~ 01499265 v 0000 ~ 01499692 v 0000 ~ 01499849 v 0000 ~ 01499948 v 0000 ~ 01500082 v 0000 ~ 01500214 v 0000 ~ 01500372 v 0000 ~ 01500873 v 0000 ~ 01501793 v 0000 ~ 01501960 v 0000 ~ 01502122 v 0000 ~ 01502279 v 0000 ~ 01502441 v 0000 ~ 01502540 v 0000 ~ 01502654 v 0000 ~ 01502946 v 0000 ~ 01503101 v 0000 ~ 01517515 v 0000 ~ 01543998 v 0000 ~ 01544285 v 0000 ~ 01544692 v 0000 ~ 01546768 v 0000 ~ 01547641 v 0000 ~ 01567275 v 0000 ~ 01569566 v 0000 ~ 01575675 v 0000 ~ 01578993 v 0000 ~ 01602665 v 0000 ~ 01606574 v 0000 ~ 01607590 v 0000 ~ 01610101 v 0000 ~ 01611240 v 0000 ~ 01612084 v 0000 ~ 01612295 v 0000 ~ 01613239 v 0000 ~ 01613391 v 0000 ~ 01616901 v 0000 ~ 01987160 v 0000 ~ 01987781 v 0000 ~ 01988080 v 0000 ~ 01988325 v 0000 ~ 01988458 v 0000 ~ 02097341 v 0000 ~ 02689146 v 0000 01 + 21 00 | put into a certain place or abstract location; "Put your things here"; "Set the tray down"; "Set the dogs on the scent of the missing children"; "Place emphasis on a certain point" -01496497 35 v 01 dispose 0 001 @ 01494310 v 0000 01 + 08 00 | place or put in a particular order; "the dots are unevenly disposed" -01496630 35 v 01 emplace 0 003 @ 01494310 v 0000 + 01051331 n 0106 $ 01496843 v 0000 01 + 08 00 | put into place or position; "the box with the ancestors' ashes was emplaced on the top shelf of the house altar" -01496843 35 v 01 emplace 1 003 $ 01496630 v 0000 @ 01494310 v 0000 + 03284120 n 0101 01 + 08 00 | provide a new emplacement for guns -01496978 35 v 01 ship 9 003 @ 01494310 v 0000 + 04194289 n 0101 ~ 01497141 v 0000 01 + 08 00 | place on board a ship; "ship the cargo in the hold of the vessel" -01497141 35 v 01 reship 0 002 @ 01496978 v 0000 + 00061453 n 0101 01 + 08 00 | place on a ship again or transfer to another ship; "reship the cargo" -01497292 35 v 01 underlay 0 002 @ 01494310 v 0000 + 02967626 n 0104 01 + 08 00 | put (something) under or beneath; "They underlaid the shingles with roofing paper" -01497458 35 v 01 trench 6 002 @ 01494310 v 0000 + 04478889 n 0101 02 + 08 00 + 09 00 | set, plant, or bury in a trench; "trench the fallen soldiers"; "trench the vegetables" -01497634 35 v 01 pigeonhole 0 002 @ 01494310 v 0000 + 03144486 n 0102 01 + 08 00 | place into a small compartment -01497750 35 v 01 shelve a 002 @ 01494310 v 0000 + 10588724 n 0101 01 + 08 00 | place on a shelf; "shelve books" -01497864 35 v 01 jar a 003 @ 01494310 v 0000 + 13767822 n 0101 + 03593526 n 0101 01 + 08 00 | place in a cylindrical vessel; "jar the jam" -01498005 35 v 01 prostrate 0 002 @ 01508368 v 0000 + 00341109 n 0101 01 + 09 00 | throw down flat, as on the ground; "She prostrated herself with frustration" -01498166 35 v 01 repose 3 001 @ 01494310 v 0000 01 + 04 00 | to put something (eg trust) in something; "The nation reposed its confidence in the King" -01498319 35 v 01 sign 2 003 @ 01494310 v 0000 + 04217882 n 0102 + 06793231 n 0101 01 + 08 00 | place signs, as along a road; "sign an intersection"; "This road has been signed" -01498498 35 v 01 middle 0 003 @ 01494310 v 0000 + 05868272 n 0101 + 08523483 n 0103 01 + 08 00 | put in the middle -01498615 35 v 01 parallelize 0 001 @ 01494310 v 0000 01 + 08 00 | place parallel to one another -01498713 35 v 01 butt 1 002 @ 01494310 v 0000 + 02928413 n 0102 01 + 08 00 | place end to end without overlapping; "The frames must be butted at the joints" -01498872 35 v 01 recess 1 003 @ 01494310 v 0000 + 04061969 n 0101 + 13872421 n 0101 01 + 08 00 | put into a recess; "recess lights" -01499006 35 v 01 reposition 1 003 @ 01494310 v 0000 + 01052739 n 0101 ~ 01499137 v 0000 01 + 08 00 | place into another position -01499137 35 v 01 reduce 1 001 @ 01499006 v 0000 01 + 08 00 | reposition (a broken bone after surgery) back to its normal site -01499265 35 v 02 throw 2 thrust 8 004 @ 01494310 v 0000 + 00334935 n 0205 + 04429971 n 0101 ~ 01499510 v 0000 01 + 21 00 | place or put with great energy; "She threw the blanket around the child"; "thrust the money in the hands of the beggar" -01499510 35 v 01 pop 5 001 @ 01499265 v 0000 01 + 21 00 | put or thrust suddenly and forcefully; "pop the pizza into the microwave oven"; "He popped the petit-four into his mouth" -01499692 35 v 02 tee 0 tee_up 0 004 @ 01494310 v 0000 ;c 00464894 n 0000 + 04399537 n 0101 + 08661277 n 0101 01 + 08 00 | place on a tee; "tee golf balls" -01499849 35 v 01 rack_up 0 001 @ 01494310 v 0000 01 + 08 00 | place in a rack; "rack pool balls" -01499948 35 v 01 coffin 0 002 @ 01494310 v 0000 + 03064758 n 0101 02 + 08 00 + 09 00 | place into a coffin; "her body was coffined" -01500082 35 v 01 bed 1 002 @ 01494310 v 0000 + 02818832 n 0101 01 + 09 00 | put to bed; "The children were bedded at ten o'clock" -01500214 35 v 01 appose 0 004 @ 01494310 v 0000 + 02635941 a 0102 + 01662510 a 0102 + 01051801 n 0102 01 + 08 00 | place side by side or in close proximity -01500372 35 v 03 set_down 2 put_down 2 place_down 0 002 @ 01494310 v 0000 ~ 01500572 v 0000 02 + 08 00 + 11 00 | cause to sit or seat or be in a settled position or place; "set down your bags here" -01500572 35 v 08 plank 1 flump 0 plonk 0 plop 0 plunk 2 plump_down 0 plunk_down 0 plump 0 002 @ 01500372 v 0000 + 07389931 n 0301 04 + 08 00 + 09 00 + 20 00 + 21 00 | set (something or oneself) down with or as if with a noise; "He planked the money on the table"; "He planked himself into the sofa" -01500873 35 v 02 sow 0 seed 1 010 $ 01501347 v 0000 @ 01494310 v 0000 ;c 00916464 n 0000 + 11683989 n 0201 + 13135832 n 0201 + 04167346 n 0201 + 10629020 n 0101 ~ 01501184 v 0000 ~ 01501347 v 0000 ~ 01501676 v 0000 01 + 08 00 | place (seeds) in or on the ground for future growth; "She sowed sunflower seeds" -01501184 35 v 01 broadcast 0 003 @ 01500873 v 0000 ;c 00916464 n 0000 + 02903204 n 0101 01 + 08 00 | sow over a wide area, especially by hand; "broadcast seeds" -01501347 35 v 03 inseminate 0 sow 2 sow_in 0 005 @ 01500873 v 0000 ;c 00916464 n 0000 + 10629020 n 0201 + 00919692 n 0101 $ 01500873 v 0000 01 + 08 00 | place seeds in or on (the ground); "sow the ground with sunflower seeds" -01501575 35 v 01 reseed 0 002 @ 01542056 v 0000 ;c 00916464 n 0000 01 + 08 00 | seed again or anew -01501676 35 v 01 scatter 1 002 @ 01500873 v 0000 + 00369138 n 0102 01 + 08 00 | sow by scattering; "scatter seeds" -01501793 35 v 01 misplace 0 002 @ 01494310 v 0000 + 05079074 n 0102 02 + 08 00 + 21 00 | place or position wrongly; put in the wrong position; "misplaced modifiers" -01501960 35 v 01 juxtapose 0 003 @ 01494310 v 0000 + 08624095 n 0101 + 01051801 n 0101 01 + 08 00 | place side by side; "The fauvists juxtaposed strong colors" -01502122 35 v 01 set_down 1 001 @ 01494310 v 0000 02 + 08 00 + 21 00 | put or settle into a position; "The hotel was set down at the bottom of the valley" -01502279 35 v 01 bottle 0 004 @ 01494310 v 0000 + 13765396 n 0101 + 02876657 n 0101 + 08066644 n 0101 01 + 08 00 | put into bottles; "bottle the mineral water" -01502441 35 v 01 bucket 1 002 @ 01494310 v 0000 + 02909870 n 0101 01 + 08 00 | put into a bucket -01502540 35 v 01 barrel 0 003 @ 01494310 v 0000 + 13764764 n 0101 + 02795169 n 0101 01 + 08 00 | put in barrels -01502654 35 v 01 ground 0 002 @ 01494310 v 0000 + 09334396 n 0104 01 + 08 00 | place or put on the ground -01502762 35 v 01 ground 1 002 @ 01301410 v 0000 + 09334396 n 0104 02 + 08 00 + 09 00 | confine or restrict to the ground; "After the accident, they grounded the plane and the pilot" -01502946 35 v 02 pillow 0 rest 2 003 @ 01494310 v 0000 + 04081044 n 0201 + 03938244 n 0101 01 + 21 00 | rest on or as if on a pillow; "pillow your head" -01503101 35 v 03 misplace 1 mislay 0 lose 0 001 @ 01494310 v 0000 02 + 08 00 + 21 00 | place (something) where one cannot find it again; "I misplaced my eyeglasses" -01503268 35 v 01 rail 3 002 @ 01544692 v 0000 + 04463679 n 0102 01 + 08 00 | lay with rails; "hundreds of miles were railed out here" -01503404 35 v 03 stack 0 pile 0 heap 0 010 @ 01463963 v 0000 + 07961480 n 0302 ^ 01504298 v 0302 + 07961480 n 0201 ^ 01504298 v 0201 + 07963087 n 0101 + 10644469 n 0101 ^ 01504298 v 0103 ~ 01503736 v 0000 ~ 01503841 v 0000 01 + 21 00 | arrange in stacks; "heap firewood around the fireplace"; "stack your books up on the shelves" -01503736 35 v 01 rick 0 002 @ 01503404 v 0000 + 07963208 n 0103 01 + 08 00 | pile in ricks; "rick hay" -01503841 35 v 01 cord 0 002 @ 01503404 v 0000 + 13602401 n 0101 01 + 08 00 | stack in cords; "cord firewood" -01503952 35 v 01 stack 1 004 @ 01489989 v 0000 + 07963087 n 0101 + 10644469 n 0101 ^ 02281093 v 0106 02 + 08 00 + 31 00 | load or cover with stacks; "stack a truck with boxes" -01504130 35 v 02 stagger 0 distribute 0 001 @ 01463963 v 0000 03 + 08 00 + 11 00 + 21 00 | to arrange in a systematic order; "stagger the chairs in the lecture hall" -01504298 35 v 03 pile_up 0 heap_up 0 stack_up 0 001 @ 01380638 v 0000 04 + 01 00 + 04 00 + 08 00 + 21 00 | arrange into piles or stacks; "She piled up her books in my living room" -01504480 35 v 02 scuffle 0 tussle 1 004 @ 01090335 v 0000 + 01172441 n 0203 + 00789391 n 0102 + 01172441 n 0102 01 + 02 00 | fight or struggle in a confused way at close quarters; "the drunken men started to scuffle" -01504699 35 v 01 wrestle 0 005 @ 01090335 v 0000 + 00622266 n 0101 + 00622266 n 0102 + 00447540 n 0101 ~ 01504910 v 0000 02 + 02 00 + 22 00 | engage in a wrestling match; "The children wrestled in the garden" -01504910 35 v 02 mudwrestle 0 mud-wrestle 0 001 @ 01504699 v 0000 01 + 02 00 | wrestle in mud; "some people enjoy watching people who mudwrestle" -01505058 35 v 01 struggle 0 003 @ 02531199 v 0000 + 00622068 n 0101 + 10665302 n 0101 02 + 02 00 + 22 00 | to exert strenuous effort against opposition; "he struggled to get free from the rope" -01505254 35 v 05 attract 0 pull 2 pull_in 0 draw 6 draw_in 0 016 $ 01506583 v 0000 $ 02098458 v 0000 @ 01448100 v 0000 + 04019696 n 0201 + 11498040 n 0201 + 00114431 n 0201 + 00170847 a 0101 + 10032676 n 0103 + 06615561 n 0101 + 05850823 n 0101 + 04688246 n 0101 ! 01506157 v 0101 ~ 01452918 v 0000 ~ 01505958 v 0000 ~ 01506583 v 0000 ~ 01808218 v 0000 07 + 08 00 + 09 00 + 10 00 + 11 00 + 15 00 + 20 00 + 21 00 | direct toward itself or oneself by means of some psychological power or physical attributes; "Her good looks attract the stares of many men"; "The ad pulled in many potential customers"; "This pianist pulls huge crowds"; "The store owner was happy that the ad drew in many new customers" -01505958 35 v 03 catch 7 arrest 1 get 0 001 @ 01505254 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | attract and fix; "His look caught her"; "She caught his eye"; "Catch the attention of the waiter" -01506157 35 v 06 repel 0 drive b repulse 0 force_back 0 push_back 0 beat_back 0 009 @ 01871979 v 0000 + 00980779 n 0502 + 07208000 n 0303 + 00961001 n 0301 + 00798245 n 0204 + 00103834 n 0201 + 00170156 a 0101 ! 01505254 v 0101 $ 01509584 v 0000 07 + 08 00 + 09 00 + 10 00 + 11 00 + 16 00 + 20 00 + 21 00 | cause to move back by force or influence; "repel the enemy"; "push back the urge to smoke"; "beat back the invaders" -01506583 35 v 02 draw_in 3 retract 0 004 @ 01505254 v 0000 + 00341695 n 0201 $ 01505254 v 0000 ~ 01506812 v 0000 01 + 08 00 | pull inward or towards a center; "The pilot drew in the landing gear"; "The cat retracted his claws" -01506812 35 v 02 invaginate 0 introvert 0 005 @ 01506583 v 0000 + 14062332 n 0202 + 13501941 n 0202 + 13501941 n 0101 ~ 01507006 v 0000 01 + 01 00 | fold inwards; "some organs can invaginate" -01507006 35 v 01 intussuscept 0 002 @ 01506812 v 0000 + 13501941 n 0103 01 + 01 00 | introvert or invaginate; "the intussuscepted gut" -01507143 35 v 03 hurl 0 hurtle 0 cast 0 010 @ 01508368 v 0000 + 00105479 n 0302 + 00454624 n 0301 ^ 01304716 v 0302 + 00105479 n 0101 + 10435988 n 0102 ~ 01507407 v 0000 ~ 01507596 v 0000 ~ 01514348 v 0000 ~ 01616738 v 0000 02 + 08 00 + 21 00 | throw forcefully -01507407 35 v 02 crash 7 dash 2 001 @ 01507143 v 0000 03 + 08 00 + 11 00 + 21 00 | hurl or thrust violently; "He dashed the plate against the wall"; "Waves were dashing against the rock" -01507596 35 v 01 precipitate 0 003 @ 01507143 v 0000 + 07434320 n 0101 + 05061149 n 0101 01 + 08 00 | hurl or throw violently; "The bridge broke and precipitated the train into the river below" -01507792 35 v 01 heave 1 003 @ 01508368 v 0000 + 00105271 n 0101 + 00105271 n 0102 01 + 08 00 | throw with great effort -01507914 35 v 02 pelt 0 bombard 0 006 @ 01508368 v 0000 + 10413429 n 0101 + 05045208 n 0102 ~ 01232554 v 0000 ~ 01508166 v 0000 ~ 01508268 v 0000 01 + 17 00 | cast, hurl, or throw repeatedly with some missile; "They pelted each other with snowballs" -01508166 35 v 01 snowball 0 002 @ 01507914 v 0000 + 04251560 n 0101 01 + 08 00 | throw snowballs at -01508268 35 v 01 egg 1 002 @ 01507914 v 0000 + 07840804 n 0101 02 + 08 00 + 09 00 | throw eggs at -01508368 35 v 01 throw 0 023 @ 01511706 v 0000 + 00104539 n 0101 + 10709529 n 0101 ~ 01242689 v 0000 ~ 01406684 v 0000 ~ 01498005 v 0000 ~ 01507143 v 0000 ~ 01507792 v 0000 ~ 01507914 v 0000 ~ 01508884 v 0000 ~ 01509079 v 0000 ~ 01509492 v 0000 ~ 01509584 v 0000 ~ 01509824 v 0000 ~ 01509933 v 0000 ~ 01510082 v 0000 ~ 01512465 v 0000 ~ 01513290 v 0000 ~ 01514525 v 0000 ~ 01515924 v 0000 ~ 01604814 v 0000 ~ 01893465 v 0000 ~ 02231473 v 0000 03 + 08 00 + 14 00 + 21 00 | propel through the air; "throw a frisbee" -01508884 35 v 01 defenestrate 0 002 @ 01508368 v 0000 + 00116989 n 0101 02 + 08 00 + 09 00 | throw through or out of the window; "The rebels stormed the palace and defenestrated the President" -01509079 35 v 02 deliver 6 pitch d 003 @ 01508368 v 0000 + 00106272 n 0201 + 10435988 n 0201 01 + 08 00 | throw or hurl from the mound to the batter, as in baseball; "The pitcher delivered the ball" -01509280 35 v 01 strike_out 0 004 @ 02529284 v 0000 ;c 00471613 n 0000 ~ 01409763 v 0000 ~ 01409888 v 0000 01 + 02 00 | put out or be put out by a strikeout; "Oral struck out three batters to close the inning" -01509492 35 v 01 shy 0 002 @ 01508368 v 0000 + 00106888 n 0101 01 + 08 00 | throw quickly -01509584 35 v 01 drive 1 005 $ 01506157 v 0000 $ 01407904 v 0000 @ 01508368 v 0000 + 00572489 n 0101 + 00567044 n 0101 02 + 08 00 + 11 00 | cause to move rapidly by striking or throwing with force; "drive the ball far out into the field" -01509824 35 v 02 deep-six 0 throw_overboard 1 001 @ 01508368 v 0000 02 + 08 00 + 09 00 | throw from a boat -01509933 35 v 01 ridge 1 002 @ 01508368 v 0000 + 13902048 n 0101 01 + 08 00 | throw soil toward (a crop row) from both sides; "He ridged his corn" -01510082 35 v 01 jettison 0 001 @ 01508368 v 0000 01 + 08 00 | throw as from an airplane -01510173 35 v 03 throw 1 flip 1 switch 0 004 @ 01510827 v 0000 + 04372370 n 0301 ~ 01510399 v 0000 ~ 01510576 v 0000 01 + 08 00 | cause to go on or to be engaged or set in operation; "switch on the light"; "throw the lever" -01510399 35 v 02 switch_on 0 turn_on 0 002 @ 01510173 v 0000 ! 01510576 v 0101 01 + 08 00 | cause to operate by flipping a switch; "switch on the light"; "turn on the stereo" -01510576 35 v 04 switch_off 0 cut 8 turn_off 0 turn_out 1 003 @ 01510173 v 0000 ! 01510399 v 0101 ~ 00355365 v 0000 01 + 08 00 | cause to stop operating by disengaging a switch; "Turn off the stereo, please"; "cut the engine"; "turn out the lights" -01510827 35 v 04 engage 0 mesh 1 lock 1 operate 2 010 @ 01850315 v 0000 + 14008806 n 0401 + 00409211 n 0401 + 07338114 n 0202 + 00140393 n 0201 + 07338114 n 0203 + 07338114 n 0101 ! 01511380 v 0101 ~ 01510173 v 0000 ~ 01511134 v 0000 04 + 01 00 + 04 00 + 08 00 + 11 00 | keep engaged; "engaged the gears" -01511134 35 v 01 ride 0 001 @ 01510827 v 0000 01 + 08 00 | keep partially engaged by slightly depressing a pedal with the foot; "Don't ride the clutch!" -01511289 35 v 01 unlock 1 001 @ 01511380 v 0000 02 + 08 00 + 11 00 | set free or release -01511380 35 v 02 disengage 0 withdraw 0 006 @ 01474550 v 0000 + 10785203 n 0201 + 00053913 n 0201 + 00390906 n 0102 ! 01510827 v 0101 ~ 01511289 v 0000 04 + 01 00 + 04 00 + 08 00 + 11 00 | release from something that holds fast, connects, or entangles; "I want to disengage myself from his influence"; "disengage the gears" -01511706 35 v 02 propel 0 impel 0 024 @ 01850315 v 0000 + 00842550 a 0201 + 00104249 n 0202 + 03563460 n 0201 + 00809790 a 0104 + 00809790 a 0102 + 00809790 a 0101 + 00045250 n 0101 + 04011827 n 0101 + 14691822 n 0102 + 14691822 n 0101 + 04011827 n 0102 ~ 01241614 v 0000 ~ 01241753 v 0000 ~ 01241881 v 0000 ~ 01371756 v 0000 ~ 01372189 v 0000 ~ 01405044 v 0000 ~ 01508368 v 0000 ~ 01512259 v 0000 ~ 01514655 v 0000 ~ 01515566 v 0000 ~ 01515791 v 0000 ~ 01604442 v 0000 02 + 08 00 + 11 00 | cause to move forward with force; "Steam propels this ship" -01512259 35 v 01 drive 7 005 @ 01511706 v 0000 + 00567044 n 0101 + 00572489 n 0101 + 10035430 n 0101 + 00298497 n 0101 02 + 08 00 + 11 00 | push, propel, or press with force; "Drive a nail into the wall" -01512465 35 v 01 fling 0 003 @ 01508368 v 0000 + 00105164 n 0101 ~ 01512625 v 0000 02 + 08 00 + 21 00 | throw with force or recklessness; "fling the frisbee" -01512625 35 v 04 flip 0 toss 4 sky 0 pitch 0 008 @ 01512465 v 0000 + 00106104 n 0401 + 00105820 n 0202 + 10717055 n 0201 + 00105820 n 0103 ~ 01512921 v 0000 ~ 01513045 v 0000 ~ 01513145 v 0000 02 + 08 00 + 21 00 | throw or toss with a light motion; "flip me the beachball"; "toss me newspaper" -01512921 35 v 01 submarine 1 002 @ 01512625 v 0000 ;c 00471613 n 0000 02 + 08 00 + 21 00 | throw with an underhand motion -01513045 35 v 01 lag 0 001 @ 01512625 v 0000 01 + 02 00 | throw or pitch at a mark, as with coins -01513145 35 v 02 throw_back 0 toss_back 0 001 @ 01512625 v 0000 01 + 08 00 | throw back with a quick, light motion; "She tossed back her head" -01513290 35 v 01 lob 0 003 @ 01508368 v 0000 + 00120804 n 0101 + 00569361 n 0101 01 + 08 00 | propel in a high arc; "lob the tennis ball" -01513430 35 v 08 shed 1 cast 1 cast_off 0 shake_off 0 throw 7 throw_off 0 throw_away 0 drop 1 005 @ 00173338 v 0000 ~ 00009147 v 0000 ~ 01255355 v 0000 ~ 01513838 v 0000 ~ 01513990 v 0000 02 + 08 00 + 11 00 | get rid of; "he shed his image as a pushy boss"; "shed your clothes" -01513710 35 v 01 shell 9 002 @ 00423971 v 0000 + 11683556 n 0101 01 + 01 00 | fall out of the pod or husk; "The corn shelled" -01513838 35 v 01 exfoliate 0 003 @ 01513430 v 0000 + 11445753 n 0101 + 09425607 n 0103 02 + 08 00 + 11 00 | cast off in scales, laminae, or splinters -01513990 35 v 02 autotomize 0 autotomise 0 002 @ 01513430 v 0000 + 00394242 n 0101 01 + 08 00 | cause a body part to undergo autotomy -01514126 35 v 02 pitch 1 set_up 1 002 @ 01982866 v 0000 ~ 01514248 v 0000 01 + 08 00 | erect and fasten; "pitch a tent" -01514248 35 v 02 camp 0 camp_down 0 001 @ 01514126 v 0000 01 + 02 00 | establish or set up a camp -01514348 35 v 02 sling 0 catapult 1 005 @ 01507143 v 0000 + 04240097 n 0203 + 04240097 n 0102 + 10611988 n 0101 + 00107016 n 0101 02 + 08 00 + 21 00 | hurl as if with a sling -01514525 35 v 02 chuck 0 toss 5 002 @ 01508368 v 0000 + 00105820 n 0202 02 + 08 00 + 21 00 | throw carelessly; "chuck the ball" -01514655 35 v 01 launch 0 006 @ 01511706 v 0000 + 00103140 n 0102 + 02982232 n 0102 + 03647520 n 0101 ~ 01514887 v 0000 ~ 01515056 v 0000 03 + 08 00 + 11 00 + 21 00 | propel with force; "launch the space shuttle"; "Launch a ship" -01514887 35 v 01 float 4 005 $ 01874568 v 0000 @ 01514655 v 0000 + 03364340 n 0101 + 11527967 n 0102 + 11527967 n 0101 01 + 08 00 | put into the water; "float a ship" -01515056 35 v 01 blast_off 0 002 @ 01514655 v 0000 + 00103590 n 0101 01 + 08 00 | launch with great force; "the rockets were blasted off" -01515196 35 v 02 launch 4 set_in_motion 5 002 @ 01850315 v 0000 ~ 01515415 v 0000 03 + 08 00 + 11 00 + 21 00 | get going; give impetus to; "launch a career"; "Her actions set in motion a complicated judicial process" -01515415 35 v 01 launch 2 002 @ 01515196 v 0000 + 00103140 n 0102 01 + 08 00 | launch for the first time; launch on a maiden voyage; "launch a ship" -01515566 35 v 01 catapult 0 003 @ 01511706 v 0000 + 02982232 n 0101 + 02981911 n 0101 05 + 01 00 + 08 00 + 11 00 + 21 00 + 22 00 | shoot forth or launch, as if from a catapult; "the enemy catapulted rocks towards the fort" -01515791 35 v 02 project 0 send_off 0 001 @ 01511706 v 0000 02 + 08 00 + 11 00 | throw, send, or cast forward; "project a missile" -01515924 35 v 03 skim 2 skip 0 skitter 1 001 @ 01508368 v 0000 02 + 08 00 + 21 00 | cause to skip over a surface; "Skip a stone across the pond" -01516071 35 v 01 boost 0 003 @ 01899262 v 0000 + 02872333 n 0101 + 01211339 n 0101 01 + 21 00 | push or shove upward, as if from below or behind; "The singer had to be boosted onto the stage by a special contraption" -01516290 35 v 02 jet 0 gush 0 004 @ 02066939 v 0000 + 03471030 n 0201 + 07436100 n 0101 + 03387926 n 0102 01 + 04 00 | issue in a jet; come out in a jet; stream or spring forth; "Water jetted forth"; "flames were jetting out of the building" -01516534 35 v 03 force 2 drive 0 ram 0 008 $ 02505358 v 0000 @ 01899262 v 0000 + 04050410 n 0301 ^ 00606471 v 0303 + 00798245 n 0204 ^ 01352996 v 0202 ~ 01516865 v 0000 $ 01646300 v 0000 01 + 21 00 | force into or from an action or state, either physically or metaphorically; "She rammed her mind into focus"; "He drives me mad" -01516865 35 v 02 toe 2 toenail 0 001 @ 01516534 v 0000 01 + 08 00 | drive obliquely; "toe a nail" -01516965 35 v 02 wreathe 0 wind 2 001 @ 01517662 v 0000 01 + 08 00 | form into a wreath -01517055 35 v 01 wreathe 1 001 @ 01675963 v 0000 01 + 08 00 | decorate or deck with wreaths; "wreathe the grave site" -01517175 35 v 02 frost 0 ice 0 005 @ 01332730 v 0000 ;c 00243918 n 0000 + 07620822 n 0203 + 07620822 n 0202 + 07620822 n 0101 01 + 08 00 | decorate with frosting; "frost a cake" -01517355 35 v 03 encrust 1 incrust 1 beset 0 003 @ 01675963 v 0000 + 03566860 n 0201 + 03566860 n 0102 01 + 08 00 | decorate or cover lavishly (as with gems) -01517515 35 v 01 upend 0 002 @ 01494310 v 0000 + 00335814 n 0102 01 + 08 00 | set, turn, or stand on end; "upend the box and empty the contents" -01517662 35 v 06 intertwine 0 twine 0 entwine 0 enlace 0 interlace 0 lace 1 010 @ 01223182 v 0000 + 04337974 n 0202 + 10734568 n 0201 ! 01518203 v 0201 ~ 01516965 v 0000 $ 01518047 v 0000 ~ 01518343 v 0000 ~ 01518659 v 0000 ~ 01521124 v 0000 ~ 01559868 v 0000 01 + 08 00 | spin,wind, or twist together; "intertwine the ribbons"; "Twine the threads into a rope"; "intertwined hearts" -01518047 35 v 01 twine 1 003 $ 01517662 v 0000 @ 01617192 v 0000 + 10734568 n 0101 01 + 08 00 | make by twisting together or intertwining; "twine a rope" -01518203 35 v 01 untwine 0 002 @ 01368597 v 0000 ! 01517662 v 0102 01 + 08 00 | undo what has been twined together; "untwine the strings" -01518343 35 v 01 wattle 0 002 @ 01517662 v 0000 + 04564118 n 0101 01 + 08 00 | interlace to form wattle -01518449 35 v 01 inweave 0 001 @ 01518924 v 0000 01 + 08 00 | weave together into a fabric or design -01518552 35 v 02 raddle 0 ruddle 0 001 @ 01518924 v 0000 01 + 08 00 | twist or braid together, interlace -01518659 35 v 02 pleach 0 plash 1 001 @ 01517662 v 0000 01 + 08 00 | interlace the shoots of; "pleach a hedge" -01518772 35 v 01 spin 0 003 @ 01223182 v 0000 + 10636340 n 0101 + 00909193 n 0101 02 + 02 00 + 08 00 | work natural fibers into a thread; "spin silk" -01518924 35 v 02 weave 0 interweave 0 009 @ 01223182 v 0000 + 04568298 n 0101 ! 01519321 v 0101 ~ 01387656 v 0000 ~ 01518449 v 0000 ~ 01518552 v 0000 ~ 01519184 v 0000 ~ 01519446 v 0000 ~ 01519569 v 0000 02 + 02 00 + 08 00 | interlace by or as if by weaving -01519184 35 v 01 shoot a 001 @ 01518924 v 0000 01 + 08 00 | variegate by interweaving weft threads of different colors; "shoot cloth" -01519321 35 v 01 unweave 0 002 @ 01368597 v 0000 ! 01518924 v 0101 01 + 08 00 | undo strands that have been woven together -01519446 35 v 01 tinsel 0 002 @ 01518924 v 0000 + 04440059 n 0101 01 + 08 00 | interweave with tinsel; "tinseled velvet" -01519569 35 v 02 braid 0 pleach 1 003 @ 01518924 v 0000 + 05259512 n 0101 ! 01519857 v 0101 01 + 08 00 | form or weave into a braid or braids; "braid hair" -01519727 35 v 01 braid 1 002 @ 01675963 v 0000 + 02889035 n 0101 01 + 08 00 | decorate with braids or ribbons; "braid a collar" -01519857 35 v 01 unbraid 0 002 @ 01519977 v 0000 ! 01519569 v 0101 01 + 08 00 | undo the braids of; "unbraid my hair" -01519977 35 v 01 undo 0 019 @ 00138508 v 0000 + 00235074 n 0101 ~ 01284461 v 0000 ~ 01289871 v 0000 ~ 01328340 v 0000 ~ 01329987 v 0000 ~ 01344293 v 0000 ~ 01366199 v 0000 ~ 01367456 v 0000 ~ 01367760 v 0000 ~ 01368001 v 0000 ~ 01368474 v 0000 ~ 01421417 v 0000 ~ 01519857 v 0000 ~ 01520844 v 0000 ~ 01523823 v 0000 ~ 01548447 v 0000 ~ 01579813 v 0000 ~ 01599225 v 0000 02 + 08 00 + 11 00 | cancel, annul, or reverse an action or its effect; "I wish I could undo my actions" -01520454 35 v 02 vandalize 0 vandalise 0 004 @ 01564144 v 0000 + 10746056 n 0201 + 10746056 n 0101 ~ 01520655 v 0000 01 + 08 00 | destroy wantonly, as through acts of vandalism; "vandalize the park" -01520655 35 v 01 key 0 002 @ 01520454 v 0000 + 03613294 n 0101 01 + 08 00 | vandalize a car by scratching the sides with a key; "His new Mercedes was keyed last night in the parking lot" -01520844 35 v 05 unravel 0 unknot 0 unscramble 0 untangle 0 unpick 0 005 * 01556921 v 0000 @ 01519977 v 0000 ! 01521124 v 0203 + 10016954 n 0102 ! 01521124 v 0101 02 + 01 00 + 08 00 | become or cause to become undone by separating the fibers or threads of; "unravel the thread" -01521124 35 v 03 ravel 0 tangle 3 knot 2 007 @ 01517662 v 0000 + 13885836 n 0301 ! 01520844 v 0302 + 05685879 n 0201 + 07443010 n 0103 ! 01521367 v 0102 ! 01520844 v 0101 03 + 01 00 + 08 00 + 21 00 | tangle or complicate; "a ravelled story" -01521367 35 v 03 ravel 1 unravel 1 ravel_out 0 007 @ 01463520 v 0000 + 10016954 n 0203 + 10016954 n 0202 + 07443010 n 0103 + 15002959 n 0102 + 15002959 n 0101 ! 01521124 v 0201 01 + 08 00 | disentangle; "can you unravel the mystery?" -01521603 35 v 02 lace 0 lace_up 0 006 * 01340439 v 0000 @ 01285440 v 0000 + 03631445 n 0101 + 10242439 n 0101 + 03631445 n 0102 ~ 01521813 v 0000 01 + 08 00 | draw through eyes or holes; "lace the shoelaces" -01521813 35 v 01 relace 0 001 @ 01521603 v 0000 01 + 08 00 | lace again; "She relaced her boots" -01521912 35 v 01 thread 0 003 @ 01212230 v 0000 + 04426788 n 0101 + 02861509 n 0102 01 + 08 00 | pass a thread through; "thread a needle" -01522052 35 v 02 wind 0 wind_up 0 005 * 01907258 v 0000 @ 00420132 v 0000 + 00345641 n 0101 + 10781984 n 0101 + 04586581 n 0101 01 + 08 00 | coil the spring of (some mechanical device) by turning a stem; "wind your watch" -01522276 35 v 04 wind 6 wrap 2 roll 0 twine 3 013 @ 01850315 v 0000 + 03150232 n 0303 + 07441619 n 0303 ^ 00435688 v 0301 ^ 00435688 v 0202 + 04586421 n 0101 + 10781984 n 0101 ! 01523654 v 0101 ~ 01522878 v 0000 ~ 01523105 v 0000 ~ 01523270 v 0000 ~ 01523401 v 0000 ~ 01523986 v 0000 01 + 21 00 | arrange or or coil around; "roll your hair around your finger"; "Twine the thread around the spool"; "She wrapped her arms around the child" -01522716 35 v 02 encircle c circle c 003 @ 00142191 v 0000 + 13873917 n 0201 + 00954086 n 0102 02 + 08 00 + 11 00 | form a circle around; "encircle the errors" -01522878 35 v 01 spool 0 003 @ 01522276 v 0000 + 02860415 n 0102 ~ 01523004 v 0000 01 + 08 00 | wind onto a spool or a reel -01523004 35 v 01 cheese 0 001 @ 01522878 v 0000 01 + 08 00 | wind onto a cheese; "cheese the yarn" -01523105 35 v 01 reel 0 005 @ 01522276 v 0000 + 04067658 n 0101 + 02860415 n 0103 + 04067472 n 0101 ~ 01523520 v 0000 02 + 08 00 + 21 01 | wind onto or off a reel -01523270 35 v 01 ball 0 002 @ 01522276 v 0000 + 05576194 n 0101 01 + 08 00 | form into a ball by winding or rolling; "ball wool" -01523401 35 v 02 clue 0 clew 0 002 @ 01522276 v 0000 + 07961379 n 0201 03 + 01 00 + 08 00 + 11 00 | roll into a ball -01523520 35 v 02 reel_off 0 unreel 0 001 @ 01523105 v 0000 02 + 08 00 + 21 00 | unwind from or as if from a reel; "unreel the tape" -01523654 35 v 03 unwind 6 wind_off 0 unroll 0 002 @ 01850315 v 0000 ! 01522276 v 0101 02 + 08 00 + 21 00 | reverse the winding or twisting of; "unwind a ball of yarn" -01523823 35 v 02 unwind 0 disentangle 1 004 @ 01519977 v 0000 + 01244593 n 0203 ~ 01487185 v 0000 ~ 01524199 v 0000 02 + 01 00 + 08 00 | separate the tangles of -01523986 35 v 03 coil 0 loop 0 curl 1 006 @ 01522276 v 0000 + 13875970 n 0304 + 13875571 n 0201 + 13875970 n 0101 + 03065424 n 0101 ! 01524199 v 0101 02 + 04 00 + 21 00 | wind around something in coils or loops -01524199 35 v 01 uncoil 0 002 @ 01523823 v 0000 ! 01523986 v 0101 01 + 08 00 | unwind or untwist -01524298 35 v 06 jam 0 jampack 0 ram 3 chock_up 0 cram 0 wad 0 004 $ 01612295 v 0000 @ 01524871 v 0000 + 13774404 n 061b + 08183398 n 0102 03 + 08 00 + 21 00 + 31 00 | crowd or pack to capacity; "the theater was jampacked" -01524523 35 v 04 deluge 0 flood 0 inundate 0 swamp 0 008 @ 00452512 v 0000 + 13775706 n 0302 + 11454591 n 0302 + 01257542 n 0201 + 11454591 n 0201 + 00702418 n 0202 ^ 02007680 v 0201 + 11502102 n 0103 02 + 08 00 + 31 00 | fill quickly beyond capacity; as with a liquid; "the basement was inundated after the storm"; "The images flooded his mind" -01524871 35 v 01 stuff 0 004 @ 01612295 v 0000 ~ 01524298 v 0000 ~ 01525066 v 0000 ~ 01526956 v 0000 03 + 08 00 + 21 00 + 31 00 | cram into a cavity; "The child stuffed candy into his pockets" -01525066 35 v 01 overstuff 0 001 @ 01524871 v 0000 01 + 08 00 | stuff too much; "The pillow was overstuffed" -01525177 35 v 01 jam 1 001 @ 01525295 v 0000 02 + 01 00 + 04 00 | get stuck and immobilized; "the mechanism jammed" -01525295 35 v 02 malfunction 0 misfunction 0 004 @ 00434374 v 0000 + 07318476 n 0101 ! 01525666 v 0101 ~ 01525177 v 0000 01 + 01 00 | fail to function or function improperly; "the coffee maker malfunctioned" -01525505 35 v 01 double 1 001 @ 01525666 v 0000 01 + 03 00 | do double duty; serve two purposes or have two functions; "She doubles as his wife and secretary" -01525666 35 v 05 function 0 work 2 operate 3 go 0 run 0 013 $ 01526290 v 0000 + 01091728 a 0302 + 00832609 a 0301 + 13525549 n 0301 + 00577068 n 0301 + 13525549 n 0102 ! 01525295 v 0101 ~ 01525505 v 0000 ~ 01526139 v 0000 ~ 01526290 v 0000 ~ 01611123 v 0000 $ 02444159 v 0000 ~ 02541251 v 0000 01 + 01 00 | perform as expected when applied; "The washing machine won't go unless it's plugged in"; "Does this old car still run well?"; "This old radio doesn't work anymore" -01526139 35 v 01 roll 1 001 @ 01525666 v 0000 01 + 01 00 | begin operating or running; "The cameras were rolling"; "The presses are already rolling" -01526290 35 v 01 run 4 004 @ 01525666 v 0000 + 14009481 n 0101 ! 01526483 v 0101 $ 01525666 v 0000 01 + 01 00 | be operating, running or functioning; "The car is still running--turn it off!" -01526483 35 v 02 idle 0 tick_over 0 001 ! 01526290 v 0101 01 + 01 00 | run disconnected or idle; "the engine is idling" -01526605 35 v 03 go_on 0 come_up 0 come_on 0 002 @ 01864230 v 0000 ! 01526792 v 0101 01 + 01 00 | start running, functioning, or operating; "the lights went on"; "the computer came up" -01526792 35 v 01 go_off 0 002 @ 01860795 v 0000 ! 01526605 v 0101 01 + 01 00 | stop running, functioning, or operating; "Our power went off during the hurricane" -01526956 35 v 02 pad 0 fill_out 0 004 @ 01524871 v 0000 + 03872495 n 0101 + 03873064 n 0101 ~ 01527135 v 0000 02 + 08 00 + 31 00 | line or stuff with soft material; "pad a bra" -01527135 35 v 01 rat 1 002 @ 01526956 v 0000 + 04055030 n 0101 01 + 08 00 | give (hair) the appearance of being fuller by using a rat -01527271 35 v 03 wedge 0 squeeze 3 force 0 005 @ 01850315 v 0000 + 13919547 n 0101 + 04569520 n 0101 ~ 01343482 v 0000 ~ 01389329 v 0000 02 + 20 00 + 21 00 | squeeze like a wedge into a tight space; "I squeezed myself into the corner" -01527508 35 v 02 dislodge 1 bump 1 003 @ 02013571 v 0000 + 00395199 n 0102 ~ 01527754 v 0000 02 + 08 00 + 21 00 | remove or force from a position of dwelling previously occupied; "The new employee dislodged her by moving into her office space" -01527754 35 v 01 throw 6 001 @ 01527508 v 0000 01 + 10 00 | cause to fall off; "The horse threw its inexperienced rider" -01527877 35 v 02 exorcise 0 exorcize 0 004 @ 01468576 v 0000 ;c 08081668 n 0000 + 05978472 n 0201 + 10072054 n 0102 01 + 08 00 | expel through adjuration or prayers; "exorcise evil spirits" -01528069 35 v 04 lodge 0 wedge 1 stick 2 deposit 0 006 @ 01340439 v 0000 ^ 02713372 v 0301 + 04777634 n 0102 + 04777634 n 0103 ! 01528522 v 0101 ~ 01576001 v 0000 01 + 21 00 | put, fix, force, or implant; "lodge a bullet in the table"; "stick your thumb in the crack" -01528339 35 v 01 lounge 0 004 @ 01543123 v 0000 + 03692004 n 0101 + 04062428 n 0103 + 04256520 n 0103 02 + 02 00 + 22 00 | sit or recline comfortably; "He was lounging on the sofa" -01528522 35 v 02 dislodge 0 free 2 002 @ 00173338 v 0000 ! 01528069 v 0101 02 + 08 00 + 21 00 | remove or force out from a position; "The dentist dislodged the piece of food that had been stuck under my gums"; "He finally could free the legs of the earthquake victim who was buried in the rubble" -01528821 35 v 05 implant 0 engraft 0 embed 0 imbed 0 plant 1 009 @ 01421622 v 0000 + 01052450 n 0501 + 13496286 n 0101 + 00677808 n 0101 + 01052618 n 0101 + 03563710 n 0101 ~ 01529491 v 0000 ~ 01529766 v 0000 ~ 01530098 v 0000 02 + 08 00 + 21 00 | fix or set securely or deeply; "He planted a knee in the back of his opponent"; "The dentist implanted a tooth in the gum" -01529194 35 v 01 root 4 002 @ 01567275 v 0000 + 13125117 n 0101 01 + 08 00 | plant by the roots -01529292 35 v 01 puddle 4 001 @ 01567275 v 0000 01 + 08 00 | dip into mud before planting; "puddle young plants" -01529407 35 v 01 checkrow 0 001 @ 01567275 v 0000 01 + 08 00 | plant in checkrows -01529491 35 v 01 pot 0 003 @ 01528821 v 0000 + 03991062 n 0101 ~ 01529624 v 0000 01 + 08 00 | plant in a pot; "He potted the palm" -01529624 35 v 01 repot 0 001 @ 01529491 v 0000 01 + 08 00 | put in a new, usually larger, pot; "The plant had grown and had to be repotted" -01529766 35 v 01 nest 0 003 @ 01528821 v 0000 + 01514926 n 0101 + 03819336 n 0101 01 + 21 00 | fit together or fit inside; "nested bowls" -01529906 35 v 01 sandwich 0 001 @ 01421622 v 0000 02 + 20 00 + 21 00 | insert or squeeze tightly between two people or objects; "She was sandwiched in her airplane seat between two fat men" -01530098 35 v 02 bury 1 sink 0 002 @ 01528821 v 0000 ~ 01530273 v 0000 01 + 21 00 | embed deeply; "She sank her fingers into the soft sand"; "He buried his head in her lap" -01530273 35 v 02 set 5 countersink 0 002 @ 01530098 v 0000 + 03118051 n 0201 01 + 08 00 | insert (a nail or screw below the surface, as into a countersink) -01530431 35 v 02 transplant 0 graft 1 007 * 01831531 v 0000 @ 01421622 v 0000 + 05582859 n 0201 + 00379588 n 0202 + 05582859 n 0102 + 00693679 n 0101 + 00693679 n 0102 02 + 08 00 + 21 00 | place the organ of a donor into the body of a recipient -01530678 35 v 03 graft 0 engraft 1 ingraft 1 003 @ 01291069 v 0000 + 00379588 n 0101 + 00379588 n 0102 01 + 15 00 | cause to grow together parts from different plants; "graft the cherry tree branch onto the plum tree" -01530898 35 v 02 ingrain 0 grain 0 001 @ 01227675 v 0000 01 + 11 00 | thoroughly work in; "His hands were grained with dirt" -01531025 35 v 02 entrench 0 intrench 0 001 @ 01340439 v 0000 01 + 08 00 | fix firmly or securely -01531124 35 v 02 entrench 1 dig_in 0 001 + 03291551 n 0101 01 + 08 00 | occupy a trench or secured area; "The troops dug in for the night" -01531265 35 v 03 emboss 0 boss 0 stamp 3 007 @ 01531742 v 0000 + 04299963 n 0301 + 04159058 n 0302 + 06855207 n 0301 + 03626115 n 0202 + 04073669 n 0104 ~ 01531492 v 0000 01 + 08 00 | raise in a relief; "embossed stationery" -01531492 35 v 01 block 3 001 @ 01531265 v 0000 01 + 08 00 | stamp or emboss a title or design on a book with a block; "block the book cover" -01531635 35 v 01 tease 2 002 * 01243809 v 0000 @ 00356258 v 0000 01 + 08 00 | raise the nap of (fabrics) -01531742 35 v 02 impress 0 imprint 0 006 * 01447257 v 0000 @ 00356258 v 0000 + 06855432 n 0201 + 00113532 n 0101 ~ 01273016 v 0000 ~ 01531265 v 0000 01 + 21 00 | mark or stamp with or as if with pressure; "To make a batik, you impress a design with wax" -01531998 35 v 04 spot 0 fleck 0 blob 0 blot 1 011 $ 00286605 v 0000 @ 00356258 v 0000 + 04694441 n 0403 + 13910019 n 0301 + 04682462 n 0205 + 04694441 n 0102 + 00276813 n 0102 ~ 01532329 v 0000 ~ 01537409 v 0000 ~ 01538310 v 0000 ~ 01538629 v 0000 02 + 08 00 + 11 00 | make a spot or mark onto; "The wine spotted the tablecloth" -01532329 35 v 01 splotch 0 002 @ 01531998 v 0000 + 04694809 n 0103 02 + 08 00 + 11 00 | blotch or spot -01532434 35 v 01 clean 2 003 @ 00173338 v 0000 + 00251013 n 0101 $ 01533442 v 0000 01 + 21 00 | remove while making clean; "Clean the spots off the rug" -01532589 35 v 02 clean 0 make_clean 0 022 $ 01533442 v 0000 $ 02741960 v 0000 @ 00126264 v 0000 + 09927305 n 0101 + 09927089 n 0101 + 03040587 n 0103 + 00251013 n 0101 ! 01534147 v 0101 ~ 00089324 v 0000 ~ 01243982 v 0000 ~ 01244351 v 0000 ~ 01244853 v 0000 ~ 01245052 v 0000 ~ 01245229 v 0000 ~ 01245325 v 0000 ~ 01392080 v 0000 ~ 01393996 v 0000 ~ 01533166 v 0000 ~ 01533324 v 0000 ~ 01534043 v 0000 ~ 01535117 v 0000 ~ 01535246 v 0000 02 + 08 00 + 11 00 | make clean by removing dirt, filth, or unwanted substances from; "Clean the stove!"; "The dentist cleaned my teeth" -01533166 35 v 02 wash_up 2 do_the_dishes 0 002 @ 01532589 v 0000 + 00255600 n 0102 01 + 02 00 | wash dishes; "I cook and my husband washes up after dinner" -01533324 35 v 01 pipe-clay 0 001 @ 01532589 v 0000 01 + 08 00 | whiten or clean with pipe-clay; "pipe-clay leather" -01533442 35 v 03 houseclean 0 clean_house 0 clean 1 008 $ 01532434 v 0000 @ 00275843 v 0000 + 09927089 n 0301 + 00251013 n 0301 + 00580370 n 0101 $ 01532589 v 0000 ~ 01533715 v 0000 ~ 01533851 v 0000 01 + 02 00 | clean and tidy up the house; "She housecleans every week" -01533715 35 v 02 G.I. 0 GI 0 001 @ 01533442 v 0000 01 + 08 00 | clean in preparation for inspection; "the soldiers GIed the barracks" -01533851 35 v 01 spring-clean 0 002 @ 01533442 v 0000 + 00251636 n 0101 01 + 02 00 | thoroughly clean the entire house, often done only once a year; "she started spring-cleaning on April 1" -01534043 35 v 01 scavenge 0 001 @ 01532589 v 0000 01 + 08 00 | clean refuse from; "Scavenge a street" -01534147 35 v 06 dirty 0 soil 0 begrime 0 grime 0 colly 0 bemire 0 016 @ 00126264 v 0000 + 14498096 n 0403 + 14498096 n 0204 + 00276620 n 0202 + 00276620 n 0201 + 00276620 n 0103 ! 01532589 v 0101 ~ 00492310 v 0000 ~ 00492706 v 0000 ~ 01252425 v 0000 ~ 01252730 v 0000 ~ 01252875 v 0000 ~ 01534609 v 0000 ~ 01534745 v 0000 ~ 01535002 v 0000 ~ 01538161 v 0000 02 + 08 00 + 11 00 | make soiled, filthy, or dirty; "don't soil your clothes when you play outside!" -01534609 35 v 01 splash 4 003 @ 01534147 v 0000 + 00278221 n 0101 + 00717748 n 0103 01 + 08 00 | soil or stain with a splashed liquid -01534745 35 v 04 mire 0 muck 0 mud 0 muck_up 0 004 @ 01534147 v 0000 + 14956325 n 0301 + 14956661 n 0208 + 09355850 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | soil with mud, muck, or mire; "The child mucked up his shirt while playing ball in the garden" -01535002 35 v 01 crock 0 002 @ 01534147 v 0000 + 03133415 n 0101 02 + 08 00 + 11 00 | soil with or as with crock -01535117 35 v 01 dry_clean 0 003 @ 01532589 v 0000 + 09927305 n 0102 + 00252169 n 0101 01 + 08 00 | clean with chemical agents -01535246 35 v 02 wash 0 launder 0 020 $ 02742842 v 0000 @ 01532589 v 0000 + 03648219 n 0201 + 03648066 n 0201 + 02533810 a 0101 + 03648219 n 0102 + 00255710 n 0101 + 10768903 n 0101 + 04554684 n 0101 ~ 01270116 v 0000 $ 01270199 v 0000 ~ 01535742 v 0000 ~ 01535915 v 0000 ~ 01536076 v 0000 ~ 01536168 v 0000 ~ 01536663 v 0000 ~ 01536776 v 0000 ~ 01536925 v 0000 ~ 01537114 v 0000 ~ 01537271 v 0000 01 + 08 00 | cleanse with a cleaning agent, such as soap, and water; "Wash the towels, please!" -01535742 35 v 01 wash_out 1 002 $ 00557686 v 0000 @ 01535246 v 0000 01 + 08 00 | wash free from unwanted substances, such as dirt; "Wash out your dirty shirt in the sink" -01535915 35 v 02 pressure-wash 0 powerwash 0 001 @ 01535246 v 0000 01 + 08 00 | wash before painting to remove old paint and mildew; "pressure-wash the house" -01536076 35 v 01 suds 0 002 @ 01535246 v 0000 + 09439213 n 0102 01 + 08 00 | wash in suds -01536168 35 v 02 rinse 0 rinse_off 0 004 @ 01535246 v 0000 + 00396642 n 0101 + 00396642 n 0102 ~ 00455529 v 0000 03 + 02 00 + 08 00 + 09 00 | wash off soap or remaining dirt -01536344 35 v 01 wash 1 004 * 01536168 v 0000 @ 01458973 v 0000 $ 01270199 v 0000 ~ 01536508 v 0000 01 + 08 00 | separate dirt or gravel from (precious minerals) -01536508 35 v 03 pan 0 pan_out 0 pan_off 0 002 @ 01536344 v 0000 + 03880323 n 0101 01 + 08 00 | wash dirt in a pan to separate out the precious minerals -01536663 35 v 01 cradle 1 002 @ 01535246 v 0000 + 04098795 n 0102 01 + 08 00 | wash in a cradle; "cradle gold" -01536776 35 v 02 stonewash 0 stone-wash 0 001 @ 01535246 v 0000 01 + 08 00 | wash with stones to achieve a worn appearance; "stonewash blue jeans" -01536925 35 v 02 handwash 0 hand-wash 0 002 @ 01535246 v 0000 ! 01537114 v 0101 01 + 08 00 | wash or launder by hand instead of with a machine; "This delicate sweater must be handwashed" -01537114 35 v 02 machine_wash 0 machine-wash 0 002 @ 01535246 v 0000 ! 01536925 v 0101 01 + 08 00 | wash by machine; "Can these shirts be machine-washed?" -01537271 35 v 01 acid-wash 0 001 @ 01535246 v 0000 01 + 08 00 | wash with acid so as to achieve a bleached look; "acid-wash blue jeans" -01537409 35 v 05 tarnish 0 stain 5 maculate 0 sully 0 defile 0 007 @ 01531998 v 0000 + 05244934 n 0302 + 00276813 n 0303 + 06794666 n 0204 + 00072261 n 0205 + 04695963 n 0101 ~ 01537829 v 0000 03 + 01 00 + 08 00 + 11 00 | make dirty or spotty, as by exposure to air; also used metaphorically; "The silver was tarnished by the long exposure to the air"; "Her reputation was sullied after the affair with a married man" -01537829 35 v 01 darken 0 001 @ 01537409 v 0000 01 + 11 00 | tarnish or stain; "a scandal that darkened the family's good name" -01537959 35 v 05 defile 1 sully 1 corrupt 0 taint 0 cloud 0 002 @ 00477941 v 0000 + 13982999 n 0501 03 + 08 00 + 10 00 + 11 00 | place under suspicion or cast doubt upon; "sully someone's reputation" -01538161 35 v 02 blemish 0 spot 1 002 @ 01534147 v 0000 + 04692157 n 0101 02 + 08 00 + 11 00 | mar or impair with a flaw; "her face was blemished" -01538310 35 v 02 speckle 0 bespeckle 0 002 @ 01531998 v 0000 + 04682462 n 0102 01 + 11 00 | mark with small spots; "speckle the wall with tiny yellow spots" -01538469 35 v 02 stipple 0 speckle 1 002 @ 00510364 v 0000 + 04682462 n 0202 02 + 08 00 + 11 00 | produce a mottled effect; "The sunlight stippled the trees" -01538629 35 v 02 spatter 1 bespatter 0 002 @ 01531998 v 0000 + 00717748 n 0101 01 + 08 00 | spot, splash, or soil; "The baby spattered the bib with food" -01538785 35 v 01 spat 1 002 @ 01290422 v 0000 + 01956344 n 0101 02 + 01 00 + 04 00 | become permanently attached; "mollusks or oysters spat" -01538928 35 v 01 blot 0 003 @ 01539063 v 0000 + 04694441 n 0103 + 14781752 n 0102 02 + 08 00 + 11 00 | dry (ink) with blotting paper -01539063 35 v 09 absorb 0 suck 0 imbibe 1 soak_up 0 sop_up 0 suck_up 0 draw 4 take_in 4 take_up 3 011 ^ 01505254 v 0705 ^ 01282142 v 0702 + 10034201 n 0302 + 00842692 n 0202 + 09921409 n 0207 ^ 01282142 v 0201 + 13423922 n 0101 + 14598079 n 0101 ~ 01393339 v 0000 ~ 01538928 v 0000 ~ 01539487 v 0000 01 + 11 00 | take in, also metaphorically; "The sponge absorbs water well"; "She drew strength from the minister's words" -01539487 35 v 01 sponge_up 0 001 @ 01539063 v 0000 02 + 08 00 + 10 00 | absorb as if with a sponge; "sponge up the spilled milk on the counter" -01539633 35 v 01 absorb 1 010 @ 01540449 v 0000 ;c 06084469 n 0000 + 00006336 a 0102 + 00006336 a 0101 + 13423922 n 0101 + 14597628 n 0101 + 14597413 n 0102 + 14598079 n 0101 ~ 01539913 v 0000 ~ 01540042 v 0000 01 + 01 00 | become imbued; "The liquids, light, and gases absorb" -01539913 35 v 02 reabsorb 0 resorb 0 003 @ 01539633 v 0000 + 13550504 n 0201 + 13550504 n 0102 01 + 01 00 | undergo resorption -01540042 35 v 02 assimilate 0 imbibe 0 005 @ 01539633 v 0000 + 13496017 n 0201 + 00006885 a 0102 + 00006885 a 0103 + 13434688 n 0101 01 + 11 00 | take (gas, light or heat) into a solution -01540232 35 v 01 adsorb 0 007 @ 01540449 v 0000 ;c 06084469 n 0000 + 00008877 a 0101 + 00008206 a 0102 + 00008206 a 0101 + 13427789 n 0101 + 14598525 n 0101 01 + 11 00 | accumulate (liquids or gases) on the surface -01540449 35 v 02 sorb 0 take_up 4 007 @ 00146138 v 0000 ;c 06084469 n 0000 + 13558490 n 0101 + 14597158 n 0101 ~ 01539633 v 0000 ~ 01540232 v 0000 ~ 01599666 v 0000 01 + 11 00 | take up a liquid or a gas either by adsorption or by absorption -01540693 35 v 03 aspirate 0 draw_out 0 suck_out 0 002 $ 01282142 v 0000 @ 00173338 v 0000 01 + 08 00 | remove as if by suction; "aspirate the wound" -01540844 35 v 02 take_in 2 take_up 1 002 @ 02210119 v 0000 ~ 02237024 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | accept; "The cloth takes up the liquid" -01541000 35 v 01 incorporate 0 003 @ 01214786 v 0000 + 02535831 a 0101 + 01238267 n 0101 02 + 08 00 + 11 00 | unite or merge with something already in existence; "incorporate this document with those pertaining to the same case" -01541231 35 v 01 work e 002 @ 01850315 v 0000 ~ 01541467 v 0000 02 + 08 00 + 22 00 | move into or onto; "work the raisins into the dough"; "the student worked a few jokes into his presentation"; "work the body onto the flatbed truck" -01541467 35 v 01 stir 4 001 @ 01541231 v 0000 01 + 21 00 | mix or add by stirring; "Stir nuts into the dough" -01541579 35 v 03 spill 0 shed 0 disgorge 0 003 @ 01850315 v 0000 ~ 01542056 v 0000 $ 01542207 v 0000 02 + 08 00 + 21 00 | cause or allow (a solid substance) to flow or run out or over; "spill the beans all over the table" -01541803 35 v 03 spill 1 shed 2 pour_forth 0 003 @ 02069551 v 0000 + 00329619 n 0101 + 15049594 n 0101 01 + 08 00 | pour out in drops or small quantities or as if in drops or small quantities; "shed tears"; "spill blood"; "God shed His grace on Thee" -01542056 35 v 01 seed 0 003 @ 01541579 v 0000 + 11683989 n 0101 ~ 01501575 v 0000 01 + 01 00 | go to seed; shed seeds; "The dandelions went to seed" -01542207 35 v 03 spill 4 slop 0 splatter 0 008 $ 01541579 v 0000 $ 02069888 v 0000 @ 01850315 v 0000 + 04277034 n 0102 + 00329619 n 0101 + 15049594 n 0101 + 10587378 n 0102 + 00329619 n 0102 02 + 08 00 + 21 00 | cause or allow (a liquid substance) to run or flow from a container; "spill the milk"; "splatter water" -01542525 35 v 01 drape 0 003 * 01277974 v 0000 @ 01463963 v 0000 + 04930139 n 0101 01 + 21 00 | arrange in a particular way; "drape a cloth" -01542668 35 v 03 hang 2 fall 0 flow 4 001 + 04931837 n 0101 01 + 06 00 | fall or flow in a certain way; "This dress hangs well"; "Her long black hair flowed down her back" -01542842 35 v 01 trail 5 001 $ 01453969 v 0000 02 + 01 00 + 04 00 | hang down so as to drag along the ground; "The bride's veiled trailed along the ground" -01543000 35 v 01 drape 1 001 @ 01463963 v 0000 02 + 20 00 + 21 00 | place casually; "The cat draped herself on the sofa" -01543123 35 v 02 sit 0 sit_down 3 012 $ 01984902 v 0000 $ 01543998 v 0000 * 01984902 v 0000 + 00344259 n 0101 ! 01546111 v 0101 ! 01547001 v 0101 ^ 00670179 v 0101 ^ 01984902 v 0101 ~ 01528339 v 0000 ~ 01543426 v 0000 ~ 01543731 v 0000 ~ 01545314 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be seated -01543426 35 v 01 sprawl 0 006 @ 01543123 v 0000 @ 01547001 v 0000 + 05082337 n 0101 + 10640968 n 0101 + 05082337 n 0102 ~ 01543626 v 0000 02 + 02 00 + 22 00 | sit or lie with one's limbs spread out -01543626 35 v 01 spread-eagle 0 001 @ 01543426 v 0000 01 + 02 00 | stand with arms and legs spread out -01543731 35 v 03 perch 0 roost 0 rest 1 007 @ 01543123 v 0000 + 04081044 n 0301 + 04107870 n 0201 + 04107984 n 0201 + 03914919 n 0101 + 09627017 n 0101 + 01523656 n 0104 04 + 01 00 + 02 00 + 04 00 + 22 00 | sit, as on a branch; "The birds perched high in the tree" -01543998 35 v 03 seat 0 sit 1 sit_down 0 008 > 01543123 v 0000 @ 01494310 v 0000 + 04161358 n 0101 + 04161981 n 0101 + 08647616 n 0101 + 01210699 n 0101 $ 01543123 v 0000 ~ 01544558 v 0000 02 + 09 00 + 20 00 | show to a seat; assign a seat for; "The host seated me next to Mrs. Smith" -01544285 35 v 01 seat 2 002 > 01543123 v 0000 @ 01494310 v 0000 02 + 09 00 + 20 00 | place in or on a seat; "the mother seated the toddler on the high chair" -01544445 35 v 01 unseat 0 001 @ 01850315 v 0000 02 + 09 00 + 20 00 | dislodge from one's seat, as from a horse -01544558 35 v 01 reseat 0 001 @ 01543998 v 0000 02 + 09 00 + 20 00 | show to a different seat; "The usher insisted on reseating us" -01544692 35 v 03 lay 0 put_down 0 repose 1 012 > 01547001 v 0000 @ 01494310 v 0000 ^ 02663643 v 0301 ^ 01494310 v 0201 ^ 01469263 v 0103 ^ 02305856 v 0104 ^ 02265979 v 0102 ~ 01503268 v 0000 ~ 01545079 v 0000 ~ 01545208 v 0000 ~ 02456493 v 0000 ~ 02456851 v 0000 02 + 20 00 + 21 00 | put in a horizontal position; "lay the books on the table"; "lay the patient carefully onto the bed" -01545079 35 v 01 lay 2 003 @ 01544692 v 0000 + 01793159 n 0101 ~ 00056683 v 0000 01 + 01 00 | lay eggs; "This hen doesn't lay" -01545208 35 v 01 blow 8 001 @ 01544692 v 0000 01 + 01 00 | lay eggs; "certain insects are said to blow" -01545314 35 v 06 squat 0 crouch 0 scrunch 2 scrunch_up 1 hunker 0 hunker_down 0 004 @ 01543123 v 0000 + 00344942 n 0101 + 00630071 n 0102 + 00344942 n 0102 03 + 01 00 + 02 00 + 22 00 | sit on one's heels; "In some cultures, the women give birth while squatting"; "The children hunkered down to protect themselves from the sandstorm" -01545649 35 v 01 kneel 0 005 @ 01545883 v 0000 + 10238272 n 0101 + 03623073 n 0101 + 00337078 n 0102 + 00337078 n 0101 02 + 02 00 + 22 00 | rest one's weight on one's knees; "In church you have to kneel during parts of the service" -01545883 35 v 01 rest 0 007 @ 02604760 v 0000 + 14012501 n 0101 + 10524973 n 0101 ^ 01590007 v 0102 ^ 02663643 v 0102 ~ 01545649 v 0000 ~ 01546111 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | not move; be in a resting position -01546111 35 v 02 stand 0 stand_up 0 014 * 01983264 v 0000 $ 01546768 v 0000 @ 01545883 v 0000 + 08653706 n 0101 + 10647745 n 0101 + 10648033 n 0101 + 00349080 n 0101 + 05082507 n 0101 ! 01543123 v 0101 ! 01547001 v 0101 ^ 01983264 v 0105 ~ 01546513 v 0000 ~ 01546633 v 0000 ~ 02036755 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be standing; be upright; "We had to stand for the entire performance!" -01546513 35 v 01 ramp 0 001 @ 01546111 v 0000 02 + 01 00 + 02 00 | stand with arms or forelegs raised, as if menacing -01546633 35 v 01 stand_back 0 001 @ 01546111 v 0000 01 + 02 00 | stand away from an object or person; "He stood back to look at her" -01546768 35 v 03 stand 1 stand_up 3 place_upright 0 005 > 01546111 v 0000 @ 01494310 v 0000 + 08653706 n 0101 + 04301242 n 0101 $ 01546111 v 0000 02 + 20 00 + 21 00 | put into an upright position; "Can you stand the bookshelf up?" -01547001 35 v 01 lie 0 012 * 01985029 v 0000 $ 01985029 v 0000 + 08624196 n 0101 ! 01546111 v 0101 ! 01543123 v 0101 ~ 00104147 v 0000 ~ 01543426 v 0000 ~ 01547390 v 0000 ~ 01547797 v 0000 ~ 01547925 v 0000 ~ 01548072 v 0000 ~ 01548181 v 0000 02 + 04 00 + 22 00 | be lying, be prostrate; be in a horizontal position; "The sick man lay in bed all day"; "the books are lying on the shelf" -01547390 35 v 03 recumb 0 repose 2 recline 0 006 @ 01547001 v 0000 + 00341548 n 0301 + 01064148 n 0203 + 01238201 a 0103 ~ 00014405 v 0000 $ 01547641 v 0000 02 + 02 00 + 22 00 | lean in a comfortable resting position; "He was reposing on the couch" -01547641 35 v 01 recline 3 003 $ 01547390 v 0000 @ 01494310 v 0000 + 04062428 n 0101 01 + 08 00 | cause to recline; "She reclined her head on the pillow" -01547797 35 v 01 overlie 1 001 @ 01547001 v 0000 01 + 11 00 | lie upon; lie on top of; "the granite overlies the older rocks" -01547925 35 v 01 lie_awake 0 001 @ 01547001 v 0000 02 + 02 00 + 22 00 | lie without sleeping; "She was so worried, she lay awake all night long" -01548072 35 v 01 repose 0 001 @ 01547001 v 0000 01 + 22 00 | lie when dead; "Mao reposes in his mausoleum" -01548181 35 v 01 bask 0 001 @ 01547001 v 0000 01 + 22 00 | be exposed; "The seals were basking in the sun" -01548290 35 v 02 buckle 0 clasp 2 004 @ 01340439 v 0000 + 03038281 n 0201 + 02910353 n 0101 ! 01548447 v 0101 01 + 08 00 | fasten with a buckle or buckles -01548447 35 v 01 unbuckle 0 002 @ 01519977 v 0000 ! 01548290 v 0101 01 + 08 00 | undo the buckle of; "Unbuckle your seat belt" -01548576 35 v 02 brooch 0 clasp 3 003 @ 01340439 v 0000 + 03038281 n 0201 + 02906438 n 0101 01 + 08 00 | fasten with or as if with a brooch -01548718 35 v 05 erase 0 rub_out 0 score_out 0 efface 0 wipe_off 1 008 * 01249724 v 0000 @ 01549187 v 0000 + 06389230 n 0101 + 00397760 n 0103 + 06428646 n 0101 + 03294833 n 0101 ~ 01549057 v 0000 ~ 01549719 v 0000 02 + 08 00 + 11 00 | remove by or as if by rubbing or erasing; "Please erase the formula on the blackboard--it is wrong!" -01549057 35 v 01 sponge 1 002 @ 01548718 v 0000 + 14597758 n 0101 01 + 08 00 | erase with a sponge; as of words on a blackboard -01549187 35 v 02 delete 0 cancel 0 005 @ 00173338 v 0000 + 06428216 n 0101 + 00394610 n 0101 ~ 01548718 v 0000 ~ 01549420 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | remove or make invisible; "Please delete my name from your list" -01549420 35 v 04 strike 8 scratch 7 expunge 0 excise 0 004 @ 01549187 v 0000 + 06428216 n 0402 + 00397760 n 0301 + 00397760 n 0302 04 + 08 00 + 09 00 + 10 00 + 11 00 | remove by erasing or crossing out or as if by drawing a line; "Please strike this remark from the record"; "scratch that remark" -01549719 35 v 02 scratch_out 0 cut_out 1 001 @ 01548718 v 0000 03 + 08 00 + 11 00 + 21 00 | strike or cancel by or as if by rubbing or crossing out; "scratch out my name on that list" -01549905 35 v 03 deface 0 disfigure 0 blemish 1 008 @ 00477941 v 0000 + 04692157 n 0301 + 04691178 n 0201 + 00403466 n 0202 + 04691178 n 0202 + 00403466 n 0101 ~ 01232098 v 0000 ~ 01551195 v 0000 02 + 08 00 + 11 00 | mar or spoil the appearance of; "scars defaced her cheeks"; "The vandals disfigured the statue" -01550220 35 v 01 dissect 0 004 @ 01552519 v 0000 + 00387214 n 0101 ~ 01550403 v 0000 ~ 01550594 v 0000 02 + 08 00 + 09 00 | cut open or cut apart; "dissect the bodies for analysis" -01550403 35 v 01 vivisect 0 002 @ 01550220 v 0000 + 00716777 n 0101 02 + 08 00 + 09 00 | cut (a body) open while still alive; "people no longer vivisect animals--it's considered unethical" -01550594 35 v 02 anatomize 0 anatomise 0 004 @ 01550220 v 0000 + 06057539 n 0201 + 00646187 n 0201 + 06057539 n 0101 01 + 08 00 | dissect in order to analyze; "anatomize the bodies of the victims of this strange disease" -01550817 35 v 01 bisect 0 002 @ 01552519 v 0000 + 00386450 n 0101 02 + 08 00 + 11 00 | cut in half or cut in two; "bisect a line" -01550949 35 v 01 transect 0 001 @ 01552519 v 0000 02 + 08 00 + 11 00 | cut across or divide transversely; "the trails transect the property" -01551092 35 v 01 trisect 0 001 @ 01552519 v 0000 02 + 08 00 + 11 00 | cut in three; "trisect a line" -01551195 35 v 04 scar 0 mark 2 pock 0 pit 0 011 $ 01275762 v 0000 @ 01549905 v 0000 * 01555742 v 0000 + 13872211 n 0401 + 13537894 n 0401 + 14334511 n 0301 + 04693900 n 0204 + 04693900 n 0103 + 14363483 n 0101 ~ 01551530 v 0000 ~ 01551679 v 0000 02 + 08 00 + 11 00 | mark with a scar; "The skin disease scarred his face permanently" -01551530 35 v 01 pockmark 0 001 @ 01551195 v 0000 02 + 08 00 + 11 00 | mark with or as if with pockmarks; "Her face was pockmarked by the disease" -01551679 35 v 02 cicatrize 0 cicatrise 0 003 @ 01551195 v 0000 + 14363483 n 0202 + 14363483 n 0102 01 + 01 00 | form a scar, after an injury; "the skin will cicatrize and it will heal soon" -01551871 35 v 03 sculpt 0 sculpture 0 grave 1 008 $ 01684337 v 0000 @ 01256157 v 0000 + 00937656 n 0201 + 04157320 n 0201 + 10566072 n 0202 + 04157320 n 0101 + 00937656 n 0101 + 10566072 n 0101 02 + 08 00 + 21 00 | shape (a material like stone or wood) by whittling away at it; "She is sculpting the block of marble into an image of her husband" -01552219 35 v 02 whittle 0 pare 1 003 @ 01552519 v 0000 + 09385137 n 0201 + 10779775 n 0101 01 + 08 00 | cut small bits or pare shavings from; "whittle a piece of wood" -01552390 35 v 03 whittle_away 0 whittle_down 0 wear_away 2 001 @ 00258857 v 0000 02 + 08 00 + 11 00 | cut away in small pieces -01552519 35 v 01 cut 0 063 @ 01556921 v 0000 + 09985279 n 0101 + 03154073 n 0101 + 00386915 n 0102 ^ 01553987 v 0101 ^ 01554799 v 0101 ^ 01255967 v 0102 ^ 01309701 v 0103 ^ 01259458 v 0103 ^ 01549719 v 0102 ~ 00042641 v 0000 ~ 01248950 v 0000 ~ 01249490 v 0000 ~ 01254477 v 0000 ~ 01255508 v 0000 ~ 01255624 v 0000 ~ 01255967 v 0000 ~ 01256157 v 0000 ~ 01256600 v 0000 ~ 01256867 v 0000 ~ 01257049 v 0000 ~ 01257173 v 0000 ~ 01257621 v 0000 ~ 01257817 v 0000 ~ 01258091 v 0000 ~ 01258302 v 0000 ~ 01259005 v 0000 ~ 01259141 v 0000 ~ 01259458 v 0000 ~ 01262564 v 0000 ~ 01274559 v 0000 ~ 01277649 v 0000 ~ 01279833 v 0000 ~ 01293782 v 0000 ~ 01319562 v 0000 ~ 01320816 v 0000 ~ 01322509 v 0000 ~ 01322675 v 0000 ~ 01403314 v 0000 ~ 01403447 v 0000 ~ 01443021 v 0000 ~ 01456463 v 0000 ~ 01550220 v 0000 ~ 01550817 v 0000 ~ 01550949 v 0000 ~ 01551092 v 0000 ~ 01552219 v 0000 ~ 01553869 v 0000 ~ 01553987 v 0000 ~ 01554519 v 0000 ~ 01554622 v 0000 ~ 01555193 v 0000 ~ 01555648 v 0000 ~ 01555742 v 0000 ~ 01556037 v 0000 ~ 01556178 v 0000 ~ 01559055 v 0000 ~ 01559590 v 0000 ~ 01560731 v 0000 ~ 01583881 v 0000 ~ 01583993 v 0000 ~ 01601025 v 0000 ~ 01601147 v 0000 02 + 08 00 + 11 00 | separate with or as if with an instrument; "Cut the rope" -01553761 35 v 01 crop 2 001 @ 00561090 v 0000 01 + 08 00 | cut short; "She wanted her hair cropped short" -01553869 35 v 01 chatter 0 002 @ 01552519 v 0000 + 07378952 n 0102 01 + 08 00 | cut unevenly with a chattering tool -01553987 35 v 01 cut_away 0 003 @ 01552519 v 0000 ~ 01554165 v 0000 ~ 01554318 v 0000 02 + 08 00 + 11 00 | remove by cutting off or away; "cut away the branch that sticks out" -01554165 35 v 01 undercut 1 003 @ 01553987 v 0000 + 00387526 n 0101 + 15083974 n 0101 01 + 08 00 | cut away the underpart of; "undercut a vein of ore" -01554318 35 v 01 undercut 2 003 @ 01553987 v 0000 + 00387526 n 0101 + 15083974 n 0101 01 + 08 00 | cut away material from the underside of (an object) so as to leave an overhanging portion in relief -01554519 35 v 01 tomahawk 0 002 @ 01552519 v 0000 + 04449966 n 0101 01 + 08 00 | cut with a tomahawk -01554622 35 v 02 sabre 1 saber 1 005 @ 01552519 v 0000 + 02987492 n 0202 + 04121511 n 0201 + 04121511 n 0102 + 02987492 n 0103 02 + 08 00 + 09 00 | cut or injure with a saber -01554799 35 v 01 cut_out 2 006 * 01552519 v 0000 @ 01659248 v 0000 + 03153681 n 0101 ~ 01281343 v 0000 ~ 01281500 v 0000 ~ 01555034 v 0000 01 + 08 00 | form and create by cutting out; "Picasso cut out a guitar from a piece of paper" -01555034 35 v 02 die 0 die_out 0 003 @ 01554799 v 0000 + 03192907 n 0101 + 03192790 n 0101 01 + 02 00 | cut or shape with a die; "Die out leather for belts" -01555193 35 v 01 rebate 0 003 @ 01552519 v 0000 + 04036776 n 0102 ~ 01555326 v 0000 01 + 08 00 | cut a rebate in (timber or stone) -01555326 35 v 01 rusticate 0 002 @ 01555193 v 0000 + 00913274 n 0101 01 + 08 00 | give (stone) a rustic look -01555437 35 v 01 cut 5 002 @ 01418667 v 0000 + 00489475 n 0102 02 + 02 00 + 08 00 | divide a deck of cards at random into two parts to make selection difficult; "Wayne cut"; "She cut the deck for a long time" -01555648 35 v 01 cradle 2 001 @ 01552519 v 0000 01 + 08 00 | cut grain with a cradle scythe -01555742 35 v 01 incise 0 011 @ 01552519 v 0000 + 00802020 a 0101 + 13904843 n 0101 + 00678010 n 0101 + 13905121 n 0101 ~ 01276970 v 0000 ~ 01309143 v 0000 ~ 01457489 v 0000 ~ 01558883 v 0000 ~ 01559473 v 0000 ~ 01608122 v 0000 02 + 08 00 + 11 00 | make an incision into by carving or cutting -01556037 35 v 01 trench 0 002 @ 01552519 v 0000 + 04479155 n 0101 01 + 08 00 | cut or carve deeply into; "letters trenched into the stone" -01556178 35 v 03 dock 1 tail 0 bob 0 004 @ 01552519 v 0000 + 02158066 n 0302 + 02157557 n 0201 + 02158066 n 0103 01 + 08 00 | remove or shorten the tail of an animal -01556346 35 v 01 tear 1 004 @ 01556921 v 0000 + 00391086 n 0101 + 09410928 n 0105 ~ 01556572 v 0000 03 + 01 00 + 08 00 + 11 00 | to separate or be separated by force; "planks were in danger of being torn from the crossbars" -01556572 35 v 03 cleave 0 split 0 rive 1 011 @ 01556346 v 0000 + 00391407 n 0203 + 09410928 n 0204 + 10505206 n 0202 + 10637839 n 0201 + 13908201 n 0101 + 00386345 n 0101 + 03041632 n 0101 ~ 01232272 v 0000 ~ 01232387 v 0000 $ 01558681 v 0000 03 + 01 00 + 08 00 + 11 00 | separate or cut with a tool, such as a sharp instrument; "cleave the bone" -01556921 35 v 04 separate 1 disunite 0 divide 1 part 1 017 > 01557774 v 0000 @ 01850315 v 0000 + 00565289 a 0401 + 00383606 n 0101 ~ 00483801 v 0000 ~ 00487350 v 0000 ~ 00495808 v 0000 ~ 01294396 v 0000 ~ 01294632 v 0000 ~ 01356038 v 0000 ~ 01552519 v 0000 ~ 01556346 v 0000 ~ 01557426 v 0000 ~ 01557517 v 0000 ~ 01557646 v 0000 ~ 01560984 v 0000 ~ 01573515 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 16 00 | force, take, or pull apart; "He separated the fighting children"; "Moses parted the Red Sea" -01557426 35 v 01 joint 1 001 @ 01556921 v 0000 01 + 08 00 | separate (meat) at the joint -01557517 35 v 01 gin 3 002 @ 01556921 v 0000 + 03115525 n 0102 01 + 08 00 | separate the seeds from (cotton) with a cotton gin -01557646 35 v 01 break 4 001 @ 01556921 v 0000 01 + 09 00 | separate from a clinch, in boxing; "The referee broke the boxers" -01557774 35 v 03 separate 0 divide 0 part 0 018 @ 00109660 v 0000 + 00565289 a 0301 + 03097289 a 0301 + 00784533 a 0201 + 07331400 n 0101 ~ 00333277 v 0000 ~ 00487182 v 0000 ~ 01215017 v 0000 ~ 01259691 v 0000 ~ 01294182 v 0000 ~ 01299758 v 0000 ~ 01558218 v 0000 ~ 01558440 v 0000 ~ 01558582 v 0000 ~ 01563005 v 0000 ~ 01563724 v 0000 ~ 01572510 v 0000 ~ 02467516 v 0000 01 + 01 00 | come apart; "The two pieces that we had glued separated" -01558218 35 v 01 segregate 2 002 @ 01557774 v 0000 + 01202184 n 0101 01 + 01 00 | divide from the main body or mass and collect; "Many towns segregated into new counties"; "Experiments show clearly that genes segregate" -01558440 35 v 01 segment 1 003 $ 01563005 v 0000 @ 01557774 v 0000 + 09429387 n 0101 01 + 01 00 | divide or split up; "The cells segmented" -01558582 35 v 01 reduce 0 001 @ 01557774 v 0000 01 + 01 00 | undergo meiosis; "The cells reduce" -01558681 35 v 01 cleave 1 004 $ 01556572 v 0000 * 01552519 v 0000 @ 01617192 v 0000 + 13908201 n 0101 02 + 08 00 + 11 00 | make by cutting into; "The water is going to cleave a channel into the rock" -01558883 35 v 01 slit 0 004 @ 01555742 v 0000 + 13904843 n 0104 + 09437369 n 0101 + 04241940 n 0101 02 + 08 00 + 11 00 | cut a slit into; "slit the throat of the victim" -01559055 35 v 02 slit 1 slice 1 004 @ 01552519 v 0000 + 14287113 n 0204 + 04237423 n 0201 + 13904843 n 0104 02 + 08 00 + 11 00 | make a clean cut through; "slit her throat" -01559230 35 v 01 gore 1 002 @ 01666717 v 0000 + 03448253 n 0101 01 + 08 00 | cut into gores; "gore a skirt" -01559340 35 v 01 lacerate 0 003 @ 01573515 v 0000 + 14287314 n 0101 + 00391293 n 0101 02 + 08 00 + 11 00 | cut or tear irregularly -01559473 35 v 01 worry 0 001 @ 01555742 v 0000 02 + 08 00 + 09 00 | lacerate by biting; "the dog worried his bone" -01559590 35 v 01 saw 0 005 @ 01552519 v 0000 + 03996145 n 0102 + 04140064 n 0101 + 10554141 n 0101 ~ 01559767 v 0000 01 + 08 00 | cut with a saw; "saw wood for the fireplace" -01559767 35 v 01 whipsaw 0 002 @ 01559590 v 0000 + 04503836 n 0102 01 + 08 00 | saw with a whipsaw -01559868 35 v 01 splice 0 004 @ 01517662 v 0000 + 03642573 n 0102 + 10637229 n 0101 ~ 01294992 v 0000 01 + 08 00 | join by interweaving strands; "Splice the wires" -01560034 35 v 01 splice 2 002 $ 01560184 v 0000 @ 01291069 v 0000 01 + 08 00 | join together so as to form new genetic combinations; "splice genes" -01560184 35 v 01 splice 1 006 @ 01291069 v 0000 + 04281998 n 0101 + 10637360 n 0101 + 04282231 n 0101 + 04281998 n 0102 $ 01560034 v 0000 01 + 08 00 | join the ends of; "splice film" -01560369 35 v 02 fleece 0 shear 2 007 @ 01248782 v 0000 + 04186848 n 0201 + 10587089 n 0201 + 00360242 n 0201 + 01899593 n 0102 + 14763508 n 0102 + 15104752 n 0101 01 + 08 00 | shear the wool from; "shear sheep" -01560583 35 v 01 mince 0 003 @ 01258091 v 0000 + 07650903 n 0101 + 03767966 n 0101 02 + 08 00 + 11 00 | cut into small pieces; "mince the garlic" -01560731 35 v 03 discerp 1 sever 0 lop 1 005 @ 01552519 v 0000 + 04016240 n 0303 + 00359492 n 0202 + 00359492 n 0201 $ 01560984 v 0000 02 + 08 00 + 11 00 | cut off from a whole; "His head was severed from his body"; "The soul discerped from the body" -01560984 35 v 02 sever 1 break_up 1 003 $ 01560731 v 0000 @ 01556921 v 0000 + 07313814 n 0104 02 + 08 00 + 11 00 | set or keep apart; "sever a relationship" -01561143 35 v 02 collide 0 clash 0 006 @ 01236164 v 0000 + 07302542 n 0101 + 07301543 n 0101 ~ 01561408 v 0000 ~ 01561713 v 0000 ~ 01561819 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | crash together with violent impact; "The cars collided"; "Two meteors clashed" -01561408 35 v 01 smash 5 002 @ 01561143 v 0000 + 07317369 n 0101 02 + 04 00 + 22 00 | collide or strike violently and suddenly; "The motorcycle smashed into the guard rail" -01561583 35 v 01 smash 6 002 @ 01405044 v 0000 + 00569474 n 0102 01 + 08 00 | hit (a tennis ball) in a powerful overhead stroke -01561713 35 v 01 shock 1 002 @ 01561143 v 0000 + 01172252 n 0101 02 + 01 00 + 02 00 | collide violently -01561819 35 v 02 crash 0 ram 1 003 @ 01561143 v 0000 + 00126236 n 0101 + 07301950 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | undergo damage or destruction on impact; "the plane crashed into the ocean"; "The car crashed into the lamp post" -01562061 35 v 03 crash 1 break_up 2 break_apart 0 002 @ 00397576 v 0000 $ 01562209 v 0000 02 + 01 00 + 04 00 | break violently or noisily; smash; -01562209 35 v 01 crash 2 006 > 01562061 v 0000 $ 01562061 v 0000 @ 01562733 v 0000 ~ 01562478 v 0000 ~ 01562627 v 0000 ~ 01562891 v 0000 01 + 08 00 | cause to crash; "The terrorists crashed the plane into the palace"; "Mother crashed the motorbike into the lamppost" -01562478 35 v 01 wrap 3 001 @ 01562209 v 0000 01 + 08 00 | crash into so as to coil around; "The teenager wrapped his car around the fire hydrant" -01562627 35 v 01 prang 0 003 @ 01562209 v 0000 ;c 02958343 n 0000 ;c 02691156 n 0000 01 + 08 00 | crash -01562733 35 v 01 collide 1 003 + 07302542 n 0101 + 03070193 n 0101 ~ 01562209 v 0000 01 + 08 00 | cause to collide; "The physicists collided the particles" -01562891 35 v 01 ditch 0 001 @ 01562209 v 0000 01 + 08 00 | crash or crash-land; "ditch a car"; "ditch a plane" -01563005 35 v 02 segment 0 section 0 011 @ 01557774 v 0000 + 07747455 n 0201 + 05867413 n 0202 + 04164989 n 0201 + 08648322 n 0201 + 09429387 n 0101 + 04164989 n 0102 + 00397953 n 0104 $ 01558440 v 0000 ~ 01563336 v 0000 ~ 01563575 v 0000 02 + 08 00 + 11 00 | divide into segments; "segment an orange"; "segment a compound word" -01563336 35 v 04 syllabify 0 syllabicate 0 syllabize 0 syllabise 0 006 @ 01563005 v 0000 + 06304671 n 0301 + 06304671 n 0201 + 00390581 n 0201 + 00390581 n 0102 + 06304671 n 0101 01 + 08 00 | divide into syllables; "syllabify the words" -01563575 35 v 01 quarter 1 003 @ 01563005 v 0000 + 13737480 n 0104 + 00386553 n 0101 02 + 08 00 + 11 00 | divide into quarters; "quarter an apple" -01563724 35 v 02 partition 0 partition_off 0 006 @ 01557774 v 0000 + 10402285 n 0101 + 03894379 n 0101 + 00397953 n 0102 + 00397953 n 0103 ~ 01563996 v 0000 02 + 08 00 + 11 00 | divide into parts, pieces, or sections; "The Arab peninsula was partitioned by the British" -01563996 35 v 02 pound 6 pound_off 0 001 @ 01563724 v 0000 01 + 08 00 | partition off into compartments; "The locks pound the water of the canal" -01564144 35 v 02 destroy 0 ruin 0 028 + 00217773 n 0202 + 07335243 n 0201 + 14562324 n 0201 + 00217773 n 0204 + 10008716 n 0202 + 00217773 n 0203 + 00737973 a 0101 + 07334490 n 0101 + 00217014 n 0101 + 10008716 n 0101 + 03180504 n 0101 ~ 00378664 v 0000 ~ 00388635 v 0000 ~ 00389083 v 0000 ~ 00738440 v 0000 ~ 01369758 v 0000 ~ 01520454 v 0000 ~ 01564836 v 0000 ~ 01565028 v 0000 ~ 01565211 v 0000 ~ 01565360 v 0000 ~ 01565472 v 0000 ~ 01565795 v 0000 ~ 01565921 v 0000 ~ 01566038 v 0000 ~ 01566185 v 0000 ~ 01586738 v 0000 ~ 01605851 v 0000 02 + 08 00 + 11 00 | destroy completely; damage irreparably; "You have ruined my car by pouring sugar in the tank!"; "The tears ruined her make-up" -01564836 35 v 01 do_a_job_on 0 001 @ 01564144 v 0000 01 + 08 00 | destroy completely or make ugly or useless; "The dog did a job on my pillow"; "The seamstress did a job on my wedding gown" -01565028 35 v 01 subvert 0 002 @ 01564144 v 0000 + 00215838 n 0101 02 + 08 00 + 11 00 | destroy completely; "we must not let our civil liberties be subverted by the current crisis" -01565211 35 v 01 get c 001 @ 01564144 v 0000 02 + 08 00 + 11 00 | overcome or destroy; "The ice storm got my hibiscus"; "the cat got the goldfish" -01565360 35 v 01 devour 0 001 @ 01564144 v 0000 01 + 11 00 | destroy completely; "Fire had devoured our home" -01565472 35 v 05 rape 1 spoil 0 despoil 0 violate 1 plunder 1 009 @ 01564144 v 0000 + 00965895 n 0501 + 00966869 n 0305 + 00966869 n 0306 + 13262462 n 0201 + 00966869 n 0201 + 00966869 n 0202 + 00966869 n 0203 + 00966384 n 0101 01 + 08 00 | destroy and strip of its possession; "The soldiers raped the beautiful country" -01565795 35 v 01 explode 0 001 @ 01564144 v 0000 02 + 08 00 + 11 00 | destroy by exploding; "The enemy exploded the bridge" -01565921 35 v 01 consume 0 001 @ 01564144 v 0000 01 + 11 00 | destroy completely; "The fire consumed the building" -01566038 35 v 01 shipwreck 0 003 @ 01564144 v 0000 + 07353075 n 0101 + 04197110 n 0101 01 + 11 00 | destroy a ship; "The vessel was shipwrecked" -01566185 35 v 03 bust_up 0 wreck 0 wrack 0 010 @ 01564144 v 0000 + 07335581 n 0301 + 14423870 n 0201 + 07353075 n 0202 + 04606251 n 0201 + 10792856 n 0201 + 10544748 n 0202 + 04461696 n 0203 + 04606358 n 0201 + 00217773 n 0205 02 + 08 00 + 11 00 | smash or break forcefully; "The kid busted up the car" -01566490 35 v 01 ruin 1 006 @ 00388635 v 0000 + 00217773 n 0102 + 04118635 n 0101 + 14562324 n 0102 + 10008716 n 0102 + 00217773 n 0103 02 + 08 00 + 11 00 | reduce to ruins; "The country lay ruined after the war" -01566705 35 v 03 bang_up 0 smash_up 0 smash 8 003 @ 00258857 v 0000 + 07410207 n 0304 + 10614225 n 0301 02 + 08 00 + 11 00 | damage or destroy as if by violence; "The teenager banged up the car of his mother" -01566916 35 v 04 uproot 0 extirpate 0 deracinate 0 root_out 0 005 @ 01850315 v 0000 + 00315830 n 0302 + 00115803 n 0303 + 00115803 n 0201 ~ 01567183 v 0000 02 + 08 00 + 11 00 | pull up by or as if by the roots; "uproot the vine that has spread all over the garden" -01567183 35 v 01 stub 1 001 @ 01566916 v 0000 01 + 08 00 | pull up (weeds) by their roots -01567275 35 v 02 plant 0 set 9 013 @ 01494310 v 0000 + 01052853 n 0201 + 00017222 n 0101 + 03957315 n 0101 + 00919513 n 0101 ~ 01529194 v 0000 ~ 01529292 v 0000 ~ 01529407 v 0000 ~ 01567653 v 0000 ~ 01567754 v 0000 ~ 01567888 v 0000 ~ 01568489 v 0000 ~ 01616293 v 0000 01 + 08 00 | put or set (seeds, seedlings, or plants) into the ground; "Let's plant flowers in the garden" -01567653 35 v 01 bed 2 001 @ 01567275 v 0000 01 + 08 00 | place (plants) in a prepared bed of soil -01567754 35 v 01 dibble 0 002 @ 01567275 v 0000 + 03190458 n 0101 01 + 08 00 | plant with a wooden hand tool; "dibble Spring bulbs" -01567888 35 v 02 afforest 0 forest 0 007 @ 01567275 v 0000 + 09284015 n 0201 + 08438533 n 0201 + 06071934 n 0201 + 00400278 n 0101 ~ 01568145 v 0000 ~ 01568346 v 0000 01 + 08 00 | establish a forest on previously unforested land; "afforest the mountains" -01568145 35 v 01 re-afforest 0 002 @ 01567888 v 0000 + 00400449 n 0102 01 + 08 00 | reestablish a forest after clear-cutting or fire, etc.; "re-afforest the area that was burned during the fighting" -01568346 35 v 01 reforest 0 002 @ 01567888 v 0000 + 00400449 n 0101 01 + 10 00 | forest anew; "After the fire, they reforested the mountain" -01568489 35 v 01 replant 0 001 @ 01567275 v 0000 01 + 08 00 | plant again or anew; "They replanted the land"; "He replanted the seedlings" -01568630 35 v 05 smother 1 stifle 0 strangle 1 muffle 0 repress 0 004 @ 00462092 v 0000 + 10656223 n 0201 + 01079604 n 0204 + 10656223 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | conceal or hide; "smother a yawn"; "muffle one's anger"; "strangle a yawn" -01568886 35 v 02 smother 2 surround 1 001 @ 01332730 v 0000 02 + 09 00 + 10 00 | envelop completely; "smother the meat in gravy" -01569017 35 v 02 smother 3 put_out 0 002 * 01332730 v 0000 @ 00478217 v 0000 02 + 08 00 + 11 00 | deprive of the oxygen necessary for combustion; "smother fires" -01569181 35 v 03 smother 0 asphyxiate 0 suffocate 0 007 * 01332730 v 0000 @ 01323958 v 0000 + 00225593 n 0301 + 14043882 n 0202 + 14042423 n 0201 + 00225593 n 0202 $ 00359511 v 0000 02 + 09 00 + 10 00 | deprive of oxygen and prevent from breathing; "Othello smothered Desdemona with a pillow"; "The child suffocated herself with a plastic bag that the parents had left on the floor" -01569566 35 v 04 install 0 instal 0 put_in 0 set_up 2 009 @ 01494310 v 0000 + 00240938 n 0204 + 00240938 n 0202 + 00240938 n 0103 + 00240938 n 0101 + 00240938 n 0102 ~ 01569896 v 0000 ~ 01570258 v 0000 ~ 01570403 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | set up for use; "install the washer and dryer"; "We put in a new sink" -01569896 35 v 01 retrofit 0 003 $ 02361329 v 0000 @ 01569566 v 0000 $ 00262348 v 0000 01 + 08 00 | fit in or on an existing structure, such as an older house; "The mansion was retrofitted with modern plumbing" -01570108 35 v 04 install 1 instal 1 set_up 4 establish 0 001 + 03315023 n 0102 02 + 08 00 + 09 00 | place; "Her manager had set her up at the Ritz" -01570258 35 v 01 reinstall 0 001 @ 01569566 v 0000 02 + 08 00 + 20 00 | install again; "She reinstalled the washer after it had been repaired" -01570403 35 v 02 post 0 put_up 0 002 @ 01569566 v 0000 + 06793426 n 0102 01 + 08 00 | place so as to be noticed; "post a sign"; "post a warning at the dump" -01570562 35 v 03 choke 0 gag 0 fret 3 003 @ 01387786 v 0000 + 03024882 n 0101 + 03024746 n 0101 02 + 09 00 + 10 00 | be too tight; rub or press; "This neckband is choking the cat" -01570744 35 v 02 choke 2 scrag 1 005 @ 01387786 v 0000 + 07665713 n 0201 + 07666933 n 0201 + 10121246 n 0105 + 00225786 n 0101 01 + 09 00 | wring the neck of; "The man choked his opponent" -01570935 35 v 03 strangle 0 strangulate 0 throttle 0 010 * 01387786 v 0000 @ 01323958 v 0000 + 10121246 n 0304 + 00225786 n 0304 + 00225786 n 0203 + 00225786 n 0103 + 13123431 n 0101 + 10121246 n 0103 + 00225786 n 0102 ~ 01571744 v 0000 02 + 09 00 + 10 00 | kill by squeezing the throat of so as to cut off the air; "he tried to strangle his opponent"; "A man in Boston has been strangling several dozen prostitutes" -01571354 35 v 03 decapitate 0 behead 0 decollate 0 002 @ 01323958 v 0000 ~ 01571538 v 0000 02 + 08 00 + 09 00 | cut the head of; "the French King was beheaded during the Revolution" -01571538 35 v 01 guillotine 0 002 @ 01571354 v 0000 + 03467068 n 0101 01 + 09 00 | kill by cutting the head off with a guillotine; "The French guillotined many Vietnamese while they occupied the country" -01571744 35 v 04 garrote 0 garrotte 0 garotte 0 scrag 0 005 @ 01570935 v 0000 + 03420935 n 0302 + 10121246 n 0202 + 03420935 n 0203 + 10121246 n 0101 02 + 09 00 + 10 00 | strangle with an iron collar; "people were garrotted during the Inquisition in Spain" -01572003 35 v 02 impale 1 stake 2 004 @ 01323958 v 0000 * 01441100 v 0000 + 04298906 n 0201 + 00420877 n 0101 02 + 09 00 + 20 00 | kill by piercing with a spear or sharp pole; "the enemies were impaled and left to die" -01572224 35 v 01 dismember 0 002 @ 01323958 v 0000 + 07433510 n 0101 02 + 09 00 + 10 00 | separate the limbs from the body; "the tiger dismembered the tourist" -01572386 35 v 01 tease 3 001 @ 01573891 v 0000 01 + 08 00 | tear into pieces; "tease tissue for microscopic examinations" -01572510 35 v 03 dismember 1 take_apart 0 discerp 0 001 @ 01557774 v 0000 02 + 08 00 + 11 00 | divide into pieces; "our department was dismembered when our funding dried up"; "The Empire was discerped after the war" -01572728 35 v 02 strain 2 tense 0 004 @ 00419950 v 0000 + 11515051 n 0201 + 00366675 n 0201 + 11515325 n 0101 01 + 01 00 | become stretched or tense or taut; "the bodybuilder's neck muscles tensed;" "the rope strained when the weight was attached" -01572978 35 v 02 clench 1 clinch 2 003 @ 01212572 v 0000 + 00417859 n 0202 + 00812526 n 0102 02 + 08 00 + 09 00 | hold in a tight grasp; "clench a steering wheel" -01573143 35 v 01 clinch c 001 @ 01216670 v 0000 01 + 02 00 | hold a boxing opponent with one or both arms so as to prevent punches -01573276 35 v 04 rend 0 rip 0 rive 0 pull 1 003 @ 01573515 v 0000 + 00391407 n 0202 + 09410928 n 0201 03 + 01 00 + 08 00 + 11 00 | tear or be torn violently; "The curtain ripped from top to bottom"; "pull the cooked chicken into strips" -01573515 35 v 04 tear 0 rupture 0 snap 1 bust 2 012 @ 01556921 v 0000 + 07367708 n 0301 + 00376715 n 0201 + 14295248 n 0201 + 00391086 n 0101 + 09410928 n 0105 ^ 01573891 v 0102 ^ 00846344 v 0102 ^ 01661804 v 0105 ~ 01559340 v 0000 ~ 01573276 v 0000 ~ 01573891 v 0000 03 + 01 00 + 08 00 + 11 00 | separate or cause to separate abruptly; "The rope snapped"; "tear the paper" -01573891 35 v 03 shred 0 tear_up 0 rip_up 0 005 @ 01573515 v 0000 + 04210120 n 0101 + 13773725 n 0101 + 04045941 n 0102 ~ 01572386 v 0000 03 + 01 00 + 08 00 + 11 00 | tear into shreds -01574077 35 v 01 grate 2 002 @ 01249724 v 0000 + 03454885 n 0101 01 + 08 00 | reduce to small shreds or pulverize by rubbing against a rough or sharp perforated surface; "grate carrots and onions"; "grate nutmeg" -01574292 35 v 02 grapple 1 grip 3 006 @ 01212572 v 0000 + 00812526 n 0206 + 10793168 n 0102 + 00622266 n 0103 + 00447540 n 0103 + 00622266 n 0104 03 + 08 00 + 09 00 + 22 00 | to grip or seize, as in a wrestling match; "the two men grappled with each other for several minutes" -01574571 35 v 03 tamp_down 0 tamp 0 pack 6 003 @ 01389329 v 0000 + 04387706 n 0202 + 04387706 n 0201 01 + 08 00 | press down tightly; "tamp the coffee grinds in the container to make espresso" -01574766 35 v 02 press_down a depress a 003 @ 01850315 v 0000 + 00112674 n 0201 + 03177708 n 0201 02 + 08 00 + 11 00 | press down; "Depress the space key" -01574923 35 v 02 lower 3 depress c 004 @ 00126264 v 0000 + 05552467 n 0201 + 03693973 n 0102 + 00353469 n 0101 02 + 08 00 + 11 00 | cause to drop or sink; "The lack of rain had depressed the water level in the reservoir" -01575146 35 v 03 ram 2 ram_down 0 pound 1 004 @ 01899262 v 0000 + 01175316 n 0302 + 04050410 n 0101 + 04051439 n 0101 02 + 11 00 + 21 00 | strike or drive against with a heavy impact; "ram the gate with a sledgehammer"; "pound on the door" -01575388 35 v 01 bulldoze 0 003 @ 01661804 v 0000 * 01527271 v 0000 + 02916179 n 0101 02 + 08 00 + 11 00 | flatten with or as if with a bulldozer -01575536 35 v 01 punch 4 001 @ 01899262 v 0000 02 + 01 00 + 02 00 | drive forcibly as if by a punch; "the nail punched through the wall" -01575675 35 v 04 situate 0 fix 1 posit 0 deposit 1 006 @ 01494310 v 0000 + 00372448 n 0402 + 00372448 n 0401 + 01051331 n 0304 ~ 01234625 v 0000 ~ 01988755 v 0000 02 + 20 00 + 21 00 | put (something somewhere) firmly; "She posited her hand on his shoulder"; "deposit the suitcase on the bench"; "fix your eyes on this spot" -01576001 35 v 01 redeposit 0 002 @ 01528069 v 0000 + 13547380 n 0101 03 + 08 00 + 20 00 + 21 00 | deposit anew; "The water had redeposited minerals on the rocks" -01576165 35 v 05 crop 1 browse 1 graze 1 range 2 pasture 0 010 $ 01204439 v 0000 @ 01179865 v 0000 + 08616050 n 0501 + 07801091 n 0503 + 07801091 n 0504 + 08629199 n 0401 + 00841091 n 0301 + 00841091 n 0302 + 00839023 n 0201 $ 01576478 v 0000 01 + 01 00 | feed as in a meadow or pasture; "the herd was grazing" -01576478 35 v 03 crop a graze a pasture a 011 $ 01576165 v 0000 @ 01178565 v 0000 ;c 00015388 n 0000 + 08616050 n 0301 + 07801091 n 0303 + 07801091 n 0304 + 10144962 n 0201 + 00841091 n 0201 + 00841091 n 0202 ~ 01204581 v 0000 ~ 01576779 v 0000 01 + 08 00 | let feed in a field or pasture or meadow -01576779 35 v 01 drift 3 001 @ 01576478 v 0000 01 + 08 00 | drive slowly and far afield for grazing; "drift the cattle herds westwards" -01576917 35 v 03 cushion 0 buffer 0 soften 0 004 @ 00169806 v 0000 + 02911158 n 0201 + 04198797 n 0103 + 03873064 n 0102 01 + 11 00 | protect from impact; "cushion the blow" -01577093 35 v 05 dunk 0 dip 0 souse 0 plunge 0 douse 0 011 @ 01577635 v 0000 + 00277569 n 0504 + 00442847 n 0402 + 03970156 n 0401 + 00277811 n 0303 + 07364434 n 0201 + 03204306 n 0201 + 09677830 n 0102 ~ 01577513 v 0000 ~ 01976220 v 0000 ~ 01976384 v 0000 02 + 08 00 + 21 00 | immerse briefly into a liquid so as to wet, coat, or saturate; "dip the garment into the cleaning solution"; "dip the brush into the paint" -01577513 35 v 01 sop 0 002 @ 01577093 v 0000 + 07861421 n 0101 01 + 08 00 | dip into liquid; "sop bread into the sauce" -01577635 35 v 02 immerse 0 plunge 1 011 @ 01227675 v 0000 + 00442847 n 0202 + 10019406 n 0202 + 03970156 n 0201 + 03948950 n 0202 ~ 01577093 v 0000 ~ 01577966 v 0000 ~ 01578124 v 0000 ~ 01578254 v 0000 ~ 01578513 v 0000 ~ 01578714 v 0000 04 + 08 00 + 20 00 + 21 00 + 22 00 | thrust or throw into; "Immerse yourself in hot water" -01577966 35 v 01 dip a 001 @ 01577635 v 0000 03 + 20 00 + 21 00 + 22 00 | plunge (one's hand or a receptacle) into a container; "He dipped into his pocket" -01578124 35 v 01 dip b 002 @ 01577635 v 0000 + 07364434 n 0101 01 + 08 00 | immerse in a disinfectant solution; "dip the sheep" -01578254 35 v 02 submerge 1 submerse 0 008 @ 01577635 v 0000 + 00277569 n 0201 + 07364115 n 0203 + 02472693 a 0101 + 02472693 a 0102 + 00277569 n 0101 + 07364115 n 0102 + 07364115 n 0101 02 + 08 00 + 09 00 | put under water; "submerge your head completely" -01578513 35 v 01 soak 1 005 @ 01577635 v 0000 + 13557158 n 0101 + 13557158 n 0102 + 13557158 n 0103 + 00256501 n 0102 02 + 20 00 + 22 00 | submerge in a liquid; "I soaked in the hot tub for an hour" -01578714 35 v 01 sheathe 2 001 @ 01577635 v 0000 01 + 08 00 | plunge or bury (a knife or sword) in flesh -01578821 35 v 03 ladle 0 lade 2 laden 0 002 @ 00173338 v 0000 ~ 01579488 v 0000 02 + 08 00 + 21 00 | remove with or as if with a ladle; "ladle the water out of the bowl" -01578993 35 v 01 ladle 1 002 @ 01494310 v 0000 + 03633091 n 0101 01 + 21 00 | put (a liquid) into a container by means of a ladle; "ladle soup into the bowl" -01579153 35 v 01 lift 0 003 @ 01850315 v 0000 ~ 01455866 v 0000 ~ 01579340 v 0000 01 + 21 00 | take hold of something and move it to a different location; "lift the box onto the table" -01579340 35 v 02 pitchfork 0 fork 0 003 @ 01579153 v 0000 + 03384167 n 0201 + 03950359 n 0101 01 + 08 00 | lift with a pitchfork; "pitchfork hay" -01579488 35 v 01 slop 1 002 @ 01578821 v 0000 + 07805006 n 0101 02 + 08 00 + 21 00 | ladle clumsily; "slop the food onto the plate" -01579622 35 v 01 spoon 0 004 * 01577635 v 0000 @ 00173338 v 0000 + 13770169 n 0101 + 04284002 n 0101 02 + 08 00 + 21 00 | scoop up or take up with a spoon; "spoon the sauce over the roast" -01579813 35 v 04 unfold 0 spread 3 spread_out 3 open 8 009 @ 01519977 v 0000 + 00383390 n 0401 ! 01277974 v 0101 ~ 01580142 v 0000 ~ 01580250 v 0000 ~ 01580348 v 0000 ~ 01613921 v 0000 ~ 01914792 v 0000 ~ 02045655 v 0000 02 + 08 00 + 21 00 | spread out or open from a closed or folded state; "open the map"; "spread your arms" -01580142 35 v 01 divaricate 0 001 @ 01579813 v 0000 01 + 08 00 | spread apart; "divaricate one's fingers" -01580250 35 v 01 exfoliate 2 001 @ 01579813 v 0000 01 + 08 00 | spread by opening the leaves of -01580348 35 v 01 grass 1 001 @ 01579813 v 0000 01 + 08 00 | spread out clothes on the grass to let it dry and bleach -01580467 35 v 05 envelop 0 enfold 0 enwrap 0 wrap 1 enclose 1 015 @ 01332730 v 0000 + 03285912 n 0501 + 00321956 n 0501 + 00321956 n 0502 + 04605726 n 0402 + 00406365 n 0202 + 00321956 n 0103 ~ 01380483 v 0000 ~ 01580928 v 0000 ~ 01581070 v 0000 ~ 01581217 v 0000 ~ 01581362 v 0000 ~ 01581933 v 0000 ~ 01582070 v 0000 ~ 01582200 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | enclose or enfold completely with or as if with a covering; "Fog enveloped the house" -01580928 35 v 01 tube 0 004 @ 01580467 v 0000 + 05246511 n 0101 + 13901321 n 0102 + 04493505 n 0101 01 + 08 00 | place or enclose in a tube -01581070 35 v 04 capsule 0 capsulate 0 capsulize 0 capsulise 0 002 @ 01580467 v 0000 + 02957586 n 0201 02 + 08 00 + 11 00 | enclose in a capsule -01581217 35 v 01 engulf 0 001 @ 01580467 v 0000 02 + 10 00 + 11 00 | flow over or cover completely; "The bright light engulfed him completely" -01581362 35 v 01 sheathe 0 002 @ 01580467 v 0000 ! 01581485 v 0101 01 + 08 00 | enclose with a sheath; "sheathe a sword" -01581485 35 v 01 unsheathe 0 002 @ 01995211 v 0000 ! 01581362 v 0101 01 + 08 00 | draw from a sheath or scabbard; "the knight unsheathed his sword" -01581635 35 v 01 sheathe 1 003 @ 01332730 v 0000 + 04187233 n 0101 ~ 01581789 v 0000 01 + 08 00 | cover with a protective sheathing; "sheathe her face" -01581789 35 v 01 invaginate 2 003 @ 01581635 v 0000 ;c 06066555 n 0000 + 14062332 n 0101 01 + 11 00 | sheathe; "The chrysalis is invaginated" -01581933 35 v 01 cocoon 0 002 @ 01580467 v 0000 + 02312744 n 0101 02 + 08 00 + 11 00 | wrap in or as if in a cocoon, as for protection -01582070 35 v 01 bathe 0 001 @ 01580467 v 0000 01 + 11 00 | suffuse with or as if with light; "The room was bathed in sunlight" -01582200 35 v 04 shroud 1 enshroud 0 hide 0 cover d 002 @ 01580467 v 0000 + 03879116 n 0102 03 + 08 00 + 11 00 + 21 00 | cover as if with a shroud; "The origins of this civilization are shrouded in mystery" -01582409 35 v 05 immerse 1 swallow 0 swallow_up 0 bury 2 eat_up 0 001 @ 01587062 v 0000 02 + 10 00 + 11 00 | enclose or envelop completely, as if by swallowing; "The huge waves swallowed the small boat and it sank shortly thereafter" -01582645 35 v 05 trace 0 draw 1 line 1 describe 0 delineate 0 017 $ 01690294 v 0000 $ 01643464 v 0000 @ 00508032 v 0000 + 03173524 n 0501 + 00900726 n 0502 + 06799897 n 0301 + 08612786 n 0302 + 00263813 n 0301 + 03234306 n 0201 + 04463273 n 0102 + 04463017 n 0101 + 00938419 n 0101 ~ 01583142 v 0000 ~ 01583344 v 0000 ~ 01583494 v 0000 ~ 01583656 v 0000 ~ 01691057 v 0000 03 + 08 00 + 11 00 + 21 00 | make a mark or lines on a surface; "draw a line"; "trace the outline of a figure in the sand" -01583142 35 v 01 construct 0 003 @ 01582645 v 0000 ;c 06004685 n 0000 + 00873381 n 0101 01 + 08 00 | draw with suitable instruments and under specified conditions; "construct an equilateral triangle" -01583344 35 v 01 inscribe 1 002 @ 01582645 v 0000 ;c 06004685 n 0000 01 + 02 00 | draw within a figure so as to touch in as many places as possible -01583494 35 v 01 circumscribe 0 003 $ 01583656 v 0000 @ 01582645 v 0000 + 01149480 n 0101 01 + 08 00 | draw a line around; "He drew a circle around the points" -01583656 35 v 01 circumscribe 1 004 @ 01582645 v 0000 ;c 06004685 n 0000 + 01149480 n 0101 $ 01583494 v 0000 01 + 08 00 | to draw a geometric figure around another figure so that the two are in contact but do not intersect -01583881 35 v 01 chase 0 001 @ 01552519 v 0000 03 + 08 00 + 11 00 + 21 00 | cut a groove into; "chase silver" -01583993 35 v 02 bevel 0 chamfer 1 005 @ 01552519 v 0000 + 02833576 n 0203 + 02833576 n 0101 ~ 01584199 v 0000 ~ 01584321 v 0000 02 + 08 00 + 11 00 | cut a bevel on; shape to a bevel; "bevel the surface" -01584199 35 v 01 miter 0 002 @ 01583993 v 0000 + 03774124 n 0101 01 + 08 00 | bevel the edges of, to make a miter joint -01584321 35 v 01 cone 0 003 @ 01583993 v 0000 + 13872592 n 0101 + 03089348 n 0101 01 + 08 00 | make cone-shaped; "cone a tire" -01584450 35 v 01 turn 6 005 $ 02562425 v 0000 @ 00142191 v 0000 + 10733487 n 0101 + 04500390 n 0101 + 04500294 n 0101 01 + 08 00 | shape by rotating on a lathe or cutting device or a wheel; "turn the legs of the table"; "turn the clay on the wheel" -01584701 35 v 01 shove 0 003 @ 01871979 v 0000 + 00113726 n 0101 + 10495421 n 0102 03 + 02 00 + 08 00 + 09 00 | push roughly; "the people pushed and shoved to get in line" -01584875 35 v 01 deform 0 002 @ 00126264 v 0000 + 07358060 n 0101 02 + 08 00 + 11 00 | make formless; "the heat deformed the plastic sculpture" -01585021 35 v 01 brecciate 0 002 @ 00144850 v 0000 + 14697839 n 0101 01 + 01 00 | form into breccia; "brecciated rock" -01585142 35 v 01 reticulate 0 003 @ 00144850 v 0000 + 13550755 n 0101 + 05501485 n 0101 01 + 01 00 | divide so as to form a network -01585276 35 v 01 flake 2 001 @ 00144850 v 0000 01 + 02 00 | form into flakes; "The substances started to flake" -01585390 35 v 01 strickle 1 001 @ 01307142 v 0000 01 + 08 00 | level off with a strickle in a measuring container; "strickle sand" -01585523 35 v 02 inject 0 shoot 0 005 $ 00086320 v 0000 @ 00187526 v 0000 + 01317678 a 0101 + 00322634 n 0101 + 03571439 n 0101 02 + 09 00 + 17 00 | force or drive (a fluid or gas) into by piercing; "inject hydrogen into the balloon" -01585759 35 v 04 extricate 0 untangle 1 disentangle 2 disencumber 0 004 @ 01475953 v 0000 + 01244593 n 0303 + 01244593 n 0202 + 01244593 n 0104 03 + 08 00 + 11 00 + 21 00 | release from entanglement of difficulty; "I cannot extricate myself from this task" -01586018 35 v 03 tamper c fiddle 3 monkey c 002 @ 01211699 v 0000 + 10200047 n 0303 01 + 08 00 | play around with or alter or falsify, usually secretively or dishonestly; "Someone tampered with the documents on my desk"; "The reporter fiddle with the facts" -01586278 35 v 04 toy 0 fiddle 0 diddle 0 play 0 004 @ 01211699 v 0000 + 10734235 n 0202 ^ 00711715 v 0103 ~ 01615457 v 0000 01 + 22 00 | manipulate manually or in one's mind or imagination; "She played nervously with her wedding ring"; "Don't fiddle with the screws"; "He played with the idea of running for the Senate" -01586600 35 v 02 storm 0 force 3 003 @ 01227675 v 0000 + 00965404 n 0202 + 00974630 n 0101 01 + 08 00 | take by force; "Storm the fort" -01586738 35 v 02 kick_in 0 kick_down 0 001 @ 01564144 v 0000 01 + 08 00 | open violently; "kick in the doors" -01586850 35 v 03 frame 0 frame_in 0 border 2 005 @ 01587062 v 0000 + 02875013 n 0301 + 03391301 n 0101 + 03390983 n 0102 + 03390983 n 0101 02 + 08 00 + 11 00 | enclose in or as if in a frame; "frame a picture" -01587062 35 v 04 enclose 0 close_in 0 inclose 0 shut_in 0 019 @ 01467370 v 0000 + 00321956 n 0101 ~ 01389776 v 0000 ~ 01389942 v 0000 ~ 01390210 v 0000 ~ 01482958 v 0000 ~ 01486312 v 0000 ~ 01582409 v 0000 ~ 01586850 v 0000 ~ 01587575 v 0000 ~ 01587705 v 0000 ~ 01587818 v 0000 ~ 01587984 v 0000 ~ 01588134 v 0000 ~ 01588297 v 0000 ~ 01599539 v 0000 ~ 01600478 v 0000 ~ 01606205 v 0000 ~ 01615020 v 0000 02 + 08 00 + 11 00 | surround completely; "Darkness enclosed him"; "They closed in the porch with a fence" -01587575 35 v 02 glass 0 glass_in 0 002 @ 01587062 v 0000 + 14881303 n 0101 01 + 08 00 | enclose with glass; "glass in a porch" -01587705 35 v 01 bank 0 002 @ 01587062 v 0000 + 09213565 n 0101 01 + 08 00 | enclose with a bank; "bank roads" -01587818 35 v 02 dike 0 dyke 0 003 @ 01587062 v 0000 + 03160309 n 0203 + 03160309 n 0102 01 + 08 00 | enclose with a dike; "dike the land to protect it from water" -01587984 35 v 01 encapsulate 0 003 @ 01587062 v 0000 + 13998395 n 0101 + 13474495 n 0101 01 + 11 00 | enclose in a capsule or other small container -01588134 35 v 02 fence 0 fence_in 0 003 @ 01587062 v 0000 + 03327234 n 0101 + 03327234 n 0102 02 + 08 00 + 11 00 | enclose with a fence; "we fenced in our yard" -01588297 35 v 03 rope_in 0 rope_off 0 cordon_off 0 001 @ 01587062 v 0000 04 + 08 00 + 20 00 + 21 00 + 31 00 | divide by means of a rope; "The police roped off the area where the crime occurred" -01588493 35 v 03 tag 0 label 0 mark 9 015 @ 01296462 v 0000 + 07270179 n 0302 ^ 02320078 v 0301 ^ 02319824 v 0301 + 07272172 n 0201 + 07202579 n 0201 + 07273136 n 0101 $ 00508032 v 0000 ~ 01588876 v 0000 ~ 01589056 v 0000 ~ 01589224 v 0000 ~ 01589363 v 0000 ~ 01589497 v 0000 ~ 01589723 v 0000 ~ 01589869 v 0000 02 + 08 00 + 31 00 | attach a tag or label to; "label these bottles" -01588876 35 v 03 brand 0 trademark 0 brandmark 0 001 @ 01588493 v 0000 01 + 08 00 | mark with a brand or trademark; "when this product is not branded it sells for a lower price" -01589056 35 v 01 point c 003 @ 01588493 v 0000 + 06843520 n 0102 + 13911872 n 0101 01 + 08 00 | mark (a psalm text) to indicate the points at which the music changes -01589224 35 v 01 point b 003 @ 01588493 v 0000 + 06843520 n 0102 + 13911872 n 0101 01 + 08 00 | mark with diacritics; "point the letter" -01589363 35 v 01 point d 003 @ 01588493 v 0000 + 06843520 n 0102 + 13911872 n 0101 01 + 08 00 | mark (Hebrew words) with diacritics -01589497 35 v 01 calibrate 2 002 @ 01588493 v 0000 + 00999245 n 0101 01 + 08 00 | mark (the scale of a measuring instrument) so that it can be read in the desired units; "he calibrated the thermometer for the Celsius scale" -01589723 35 v 01 code 0 001 @ 01588493 v 0000 01 + 08 00 | attach a code to; "Code the pieces with numbers so that you can identify them later" -01589869 35 v 01 badge 0 002 @ 01588493 v 0000 + 06882561 n 0101 02 + 08 00 + 09 00 | put a badge on; "The workers here must be badged" -01590007 35 v 03 lean_on 0 rest_on 0 lean_against 0 001 @ 01205696 v 0000 03 + 08 00 + 09 00 + 11 00 | rest on for support; "you can lean on me if you get tired" -01590171 35 v 02 patch 0 piece 2 006 @ 01291069 v 0000 + 03932203 n 0201 + 03745285 n 0102 + 03897943 n 0101 + 00267349 n 0101 ~ 01590389 v 0000 02 + 08 00 + 31 00 | to join or unite the pieces of; "patch the skirt" -01590389 35 v 02 vamp 0 vamp_up 0 001 @ 01590171 v 0000 01 + 08 00 | piece (something old) with a new part; "vamp up an old speech" -01590523 35 v 01 core 0 002 @ 01282545 v 0000 + 08524262 n 0101 02 + 08 00 + 11 00 | remove the core or center from; "core an apple" -01590658 35 v 01 doff 0 001 @ 00050454 v 0000 01 + 08 00 | remove; "He doffed his hat" -01590747 35 v 01 gut 0 005 @ 00173338 v 0000 + 02983741 n 0102 + 05534333 n 0103 + 03471685 n 0101 + 10153009 n 0101 01 + 08 00 | remove the guts of; "gut the sheep" -01590915 35 v 01 head 0 001 @ 00173338 v 0000 01 + 08 00 | remove the head of; "head the fish" -01591012 35 v 01 gut 1 002 @ 00449692 v 0000 + 10153009 n 0101 02 + 08 00 + 11 00 | empty completely; destroy the inside of; "Gut the building" -01591158 35 v 02 jerk 0 flick 3 003 @ 01871979 v 0000 + 07338358 n 0201 + 00335988 n 0101 01 + 21 00 | throw or toss with a quick motion; "flick a piece of paper across the table"; "jerk his head" -01591357 35 v 03 flick 4 ruffle 3 riffle 1 001 @ 01850315 v 0000 01 + 08 00 | twitch or flutter; "the paper flicked" -01591476 35 v 02 stake 0 post 1 003 @ 00508032 v 0000 + 03988170 n 0201 + 07257815 n 0102 01 + 08 00 | mark with a stake; "stake out the path" -01591621 35 v 01 post 2 006 * 00974367 v 0000 @ 01356370 v 0000 + 09854510 n 0102 + 06793426 n 0101 + 06793426 n 0102 ~ 01591835 v 0000 01 + 08 00 | affix in a public place or for public notice; "post a warning" -01591835 35 v 01 placard 1 002 @ 01591621 v 0000 + 06793426 n 0103 01 + 08 00 | post in a public place -01591940 35 v 01 stake 1 002 @ 01340439 v 0000 + 07257815 n 0102 02 + 08 00 + 21 00 | tie or fasten to a stake; "stake your goat" -01592072 35 v 02 yank 0 jerk 1 005 @ 01448100 v 0000 + 00115500 n 0202 + 00335988 n 0201 + 10802147 n 0202 + 10802147 n 0101 02 + 08 00 + 21 00 | pull, or move with a sudden movement; "He turned the handle and jerked the door open" -01592306 35 v 01 winch 0 002 @ 01448100 v 0000 + 04585745 n 0101 01 + 08 00 | pull or lift up with or as if with a winch; "winch up the slack line" -01592456 35 v 04 pluck 0 tweak 0 pull_off 0 pick_off 0 004 $ 01592774 v 0000 @ 01448100 v 0000 + 00357275 n 0202 ~ 01593011 v 0000 02 + 08 00 + 11 00 | pull or pull out sharply; "pluck the flowers off the bush" -01592669 35 v 01 tweak 1 002 @ 01456771 v 0000 + 00357275 n 0102 01 + 08 00 | pinch or squeeze sharply -01592774 35 v 03 draw_off 0 draw_away 1 pull_off 1 002 @ 00173338 v 0000 $ 01592456 v 0000 01 + 08 00 | remove by drawing or pulling; "She placed the tray down and drew off the cloth"; "draw away the cloth that is covering the cheese" -01593011 35 v 01 tweeze 0 002 @ 01592456 v 0000 + 03941684 n 0103 01 + 08 00 | pluck with tweezers; "tweeze facial hair" -01593134 35 v 02 hike_up 0 hitch_up 0 001 @ 01609287 v 0000 01 + 08 00 | pull up; "He hitched up his socks and pants" -01593254 35 v 05 pry 0 prise 0 prize 0 lever 0 jimmy 0 007 * 00419375 v 0000 @ 01346003 v 0000 + 03599351 n 0501 + 03659809 n 0401 + 03659292 n 0401 + 11473138 n 0401 + 03138344 n 0103 02 + 08 00 + 21 00 | to move or force, especially in an effort to get something open; "The burglar jimmied the lock": "Raccoons managed to pry the lid off the garbage pail" -01593614 35 v 02 gap 0 breach 0 004 @ 01346003 v 0000 + 09228801 n 0201 + 03416329 n 0101 + 09379111 n 0102 01 + 08 00 | make an opening or gap in -01593763 35 v 03 swing 0 sweep 3 swing_out 0 003 @ 01224415 v 0000 + 00345149 n 0201 + 01173660 n 0101 03 + 08 00 + 11 00 + 21 00 | make a big sweeping gesture or movement -01593937 35 v 05 squash 0 crush 0 squelch 0 mash 0 squeeze 5 012 @ 01447257 v 0000 + 07351031 n 0501 + 04293119 n 0501 + 14948645 n 0401 + 07805254 n 0401 + 00358089 n 0201 + 03141702 n 0201 ~ 01350971 v 0000 ~ 01594362 v 0000 ~ 01594514 v 0000 ~ 01594664 v 0000 ~ 01594782 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to compress with violence, out of natural shape or condition; "crush an aluminum can"; "squeeze a lemon" -01594362 35 v 01 stamp 4 002 @ 01593937 v 0000 + 04300080 n 0101 01 + 08 00 | crush or grind with a heavy instrument; "stamp fruit extract the juice" -01594514 35 v 01 steamroller 0 002 @ 01593937 v 0000 + 04310157 n 0101 01 + 08 00 | crush with a steamroller as if to level; "steamroller the road" -01594664 35 v 01 tread 0 001 @ 01593937 v 0000 01 + 08 00 | crush as if by treading on; "tread grapes to make wine" -01594782 35 v 01 telescope 0 001 @ 01593937 v 0000 01 + 01 00 | crush together or collapse; "In the accident, the cars telescoped"; "my hiking sticks telescope and can be put into the backpack" -01594978 35 v 04 crunch 0 cranch 0 craunch 0 grind 2 003 @ 01447257 v 0000 + 00358290 n 0401 ^ 02587239 v 0403 02 + 08 00 + 11 00 | press or grind with a crushing noise -01595149 35 v 02 crank 0 crank_up 0 002 @ 02045790 v 0000 + 03127024 n 0101 01 + 08 00 | rotate with a crank -01595260 35 v 01 solder 0 007 @ 01291069 v 0000 + 10621941 n 0101 + 00148653 n 0102 + 14718822 n 0101 ~ 01595491 v 0000 ~ 01595605 v 0000 ~ 01595697 v 0000 01 + 08 00 | join or fuse with solder; "solder these two pipes together" -01595491 35 v 01 dip_solder 0 001 @ 01595260 v 0000 01 + 08 00 | solder by immersion in a bath of molten solder -01595605 35 v 01 soft-solder 0 001 @ 01595260 v 0000 01 + 08 00 | repair with soft-solder -01595697 35 v 01 braze 0 001 @ 01595260 v 0000 02 + 02 00 + 08 00 | solder together by using hard solder with a high melting point -01595830 35 v 01 weld 0 008 * 00394813 v 0000 @ 01291069 v 0000 + 04572235 n 0101 + 04571958 n 0101 + 10773665 n 0101 + 00149508 n 0101 ~ 01596056 v 0000 ~ 01596404 v 0000 01 + 08 00 | join together by heating; "weld metal" -01596056 35 v 02 spotweld 0 spot-weld 0 013 @ 01595830 v 0000 + 00149895 n 0201 + 04286960 n 0201 + 04286960 n 0202 + 10640446 n 0201 + 00149895 n 0101 + 04286960 n 0101 + 04286960 n 0102 + 10640446 n 0101 + 00149895 n 0102 + 00149895 n 0202 + 10640446 n 0102 + 10640446 n 0202 01 + 08 00 | make circular welds; "These pipes are only spotwelded" -01596404 35 v 02 butt-weld 0 buttweld 0 009 @ 01595830 v 0000 + 02929582 n 0202 + 02929582 n 0201 + 00149699 n 0201 + 02929582 n 0102 + 02929582 n 0101 + 00149699 n 0101 + 00149699 n 0202 + 00149699 n 0102 01 + 08 00 | join by a butt weld -01596645 35 v 01 comb 1 007 @ 01368597 v 0000 + 03074855 n 0101 + 00256746 n 0101 + 00256746 n 0102 ~ 01299562 v 0000 ~ 01596855 v 0000 ~ 01596972 v 0000 01 + 08 00 | straighten with a comb; "comb your hair" -01596855 35 v 01 currycomb 0 002 @ 01596645 v 0000 + 03150661 n 0101 01 + 08 00 | clean (a horse) with a currycomb -01596972 35 v 03 heckle 0 hackle 0 hatchel 0 001 @ 01596645 v 0000 01 + 08 00 | comb with a heckle; "heckle hemp or flax" -01597096 35 v 05 drag_down 0 bear_down 0 bear_down_on 0 press_down_on 0 weigh_down 0 001 @ 01447257 v 0000 01 + 11 00 | exert a force with a heavy weight; "The snow bore down on the roof" -01597286 35 v 01 shoot 1 012 @ 01405044 v 0000 + 10591481 n 0101 + 04396093 n 0102 ~ 01597662 v 0000 ~ 01597995 v 0000 ~ 01598140 v 0000 ~ 01598395 v 0000 ~ 01598507 v 0000 ~ 01598637 v 0000 ~ 01598785 v 0000 ~ 01598921 v 0000 ~ 01605169 v 0000 02 + 02 00 + 08 00 | throw or propel in a specific direction or towards a specific objective; "shoot craps"; "shoot a golf ball" -01597662 35 v 01 dunk 1 004 @ 01597286 v 0000 ;c 00480993 n 0000 + 00110554 n 0101 ~ 01597832 v 0000 01 + 08 00 | make a dunk shot, in basketball; "He dunked the ball" -01597832 35 v 01 slam-dunk 0 003 @ 01597662 v 0000 ;c 00480993 n 0000 + 00110745 n 0101 02 + 02 00 + 08 00 | make a slam dunk; shoot a basketball in a slam dunk -01597995 35 v 01 break e 003 @ 01597286 v 0000 ;c 00499924 n 0000 + 00500280 n 0101 01 + 02 00 | make the opening shot that scatters the balls -01598140 35 v 01 chip 4 003 @ 01597286 v 0000 ;c 00464894 n 0000 + 00573530 n 0101 01 + 02 00 | play a chip shot -01598255 35 v 01 volley 1 002 @ 01405044 v 0000 + 00569733 n 0101 01 + 08 00 | hit before it touches the ground; "volley the tennis ball" -01598395 35 v 01 carom 0 003 @ 01597286 v 0000 ;c 00499924 n 0000 + 00500449 n 0101 01 + 02 00 | make a carom -01598507 35 v 01 birdie 0 003 @ 01597286 v 0000 ;c 00464894 n 0000 + 13595276 n 0101 01 + 02 00 | shoot in one stroke under par -01598637 35 v 02 eagle 0 double_birdie 0 002 @ 01597286 v 0000 ;c 00464894 n 0000 01 + 02 00 | shoot two strokes under par; "She eagled the hole" -01598785 35 v 01 double_bogey 0 003 @ 01597286 v 0000 ;c 00464894 n 0000 + 13595699 n 0101 01 + 02 00 | to shoot two strokes over par -01598921 35 v 01 bogey 0 003 @ 01597286 v 0000 ;c 00464894 n 0000 + 13595414 n 0101 01 + 02 00 | to shoot in one stroke over par -01599052 35 v 01 wire 0 003 @ 01340439 v 0000 + 04594218 n 0101 ! 01599225 v 0101 02 + 08 00 + 21 00 | fasten with wire; "The columns were wired to the beams for support" -01599225 35 v 01 unwire 0 002 @ 01519977 v 0000 ! 01599052 v 0101 01 + 08 00 | undo the wiring of -01599325 35 v 01 wire 1 002 @ 01359432 v 0000 + 04594218 n 0101 01 + 08 00 | string on a wire; "wire beads" -01599435 35 v 01 carburet 0 002 @ 01461328 v 0000 ;c 06084469 n 0000 01 + 08 00 | combine with carbon -01599539 35 v 01 casket 0 003 @ 01587062 v 0000 + 03064758 n 0102 + 02978055 n 0101 02 + 08 00 + 09 00 | enclose in a casket -01599666 35 v 01 chemisorb 0 003 @ 01540449 v 0000 + 13447923 n 0102 + 13447923 n 0101 01 + 11 00 | take up a substance by chemisorption -01599805 35 v 02 crape 2 crepe 0 004 @ 01332730 v 0000 + 03130563 n 0201 + 14826173 n 0201 + 03130563 n 0102 02 + 08 00 + 11 00 | cover or drape with crape; "crape the mirror" -01599983 35 v 01 coal 0 002 @ 01214786 v 0000 + 14814616 n 0101 01 + 11 00 | take in coal; "The big ship coaled" -01600098 35 v 01 coapt 0 001 @ 01340439 v 0000 02 + 08 00 + 21 00 | fit tightly and fasten -01600191 35 v 02 coapt 1 conglutinate 1 003 @ 01423285 v 0000 + 13571365 n 0202 + 00382109 n 0205 02 + 08 00 + 11 00 | cause to adhere; "The wounds were coapted" -01600355 35 v 01 concrete 0 002 @ 01332730 v 0000 + 14820180 n 0101 01 + 08 00 | cover with cement; "concrete the walls" -01600478 35 v 01 corral 0 002 @ 01587062 v 0000 + 03124590 n 0103 01 + 08 00 | enclose in a corral; "corral the horses" -01600600 35 v 01 tag 1 004 @ 01206218 v 0000 ;c 00471613 n 0000 + 00145024 n 0101 ~ 01600759 v 0000 01 + 09 00 | touch a player while he is holding the ball -01600759 35 v 01 nab 2 002 @ 01600600 v 0000 ;c 00471613 n 0000 01 + 09 00 | tag the base runner to get him out -01600873 35 v 01 croquet 0 002 @ 01405044 v 0000 ;c 00466880 n 0000 01 + 08 00 | drive away by hitting with one's ball, "croquet the opponent's ball" -01601025 35 v 02 crosscut 0 cut_across 0 002 @ 01552519 v 0000 + 08617311 n 0101 01 + 08 00 | cut using a diagonal line -01601147 35 v 01 rip 1 001 @ 01552519 v 0000 01 + 08 00 | cut (wood) along the grain -01601234 35 v 03 hold 2 carry 1 bear 1 009 + 05002822 n 0302 + 05002822 n 0201 + 00318735 n 0201 $ 01432601 v 0301 ~ 01601547 v 0000 ~ 01601685 v 0000 ~ 01601934 v 0000 ~ 01602318 v 0000 ~ 02518161 v 0000 01 + 08 00 | support or hold in a certain manner; "She holds her head high"; "He carried himself upright" -01601547 35 v 01 sling 1 001 @ 01601234 v 0000 01 + 08 00 | hold or carry in a sling; "he cannot button his shirt with his slinged arm" -01601685 35 v 01 stoop 2 003 @ 01601234 v 0000 + 00336654 n 0101 + 10659762 n 0101 01 + 02 00 | carry oneself, often habitually, with head, shoulders, and upper back bent forward; "The old man was stooping but he could walk around without a cane" -01601934 35 v 01 piggyback 0 001 @ 01601234 v 0000 02 + 08 00 + 09 00 | support on the back and shoulders; "He piggybacked her child so she could see the show" -01602096 35 v 01 piggyback 2 001 @ 01452255 v 0000 02 + 08 00 + 11 00 | haul by railroad car -01602191 35 v 01 piggyback 3 001 @ 01452255 v 0000 01 + 01 00 | haul truck trailers loaded with commodities on railroad cars -01602318 35 v 02 poise 1 balance 0 007 @ 01601234 v 0000 + 14002279 n 0201 + 02152212 n 0203 + 09833751 n 0201 + 14003880 n 0101 ~ 01602527 v 0000 $ 02673134 v 0000 01 + 08 00 | hold or carry in equilibrium -01602527 35 v 01 juggle 3 001 @ 01602318 v 0000 01 + 08 00 | hold with difficulty and balance insecurely; "the player juggled the ball" -01602665 35 v 01 poise 2 003 > 01602318 v 0000 @ 01494310 v 0000 + 14003880 n 0101 04 + 08 00 + 11 00 + 20 00 + 21 00 | cause to be balanced or suspended -01602821 35 v 01 blacklead 0 001 @ 01332730 v 0000 01 + 08 00 | cover with graphite -01602907 35 v 01 gate 0 001 @ 01224744 v 0000 01 + 08 00 | control with a valve or other device that functions like a gate -01603032 35 v 01 grass 0 002 @ 01332730 v 0000 + 12102133 n 0101 01 + 08 00 | cover with grass; "The owners decided to grass their property" -01603175 35 v 01 gravel 0 002 @ 01332730 v 0000 + 14698884 n 0101 01 + 08 00 | cover with gravel; "We gravelled the driveway" -01603303 35 v 01 metal 0 003 @ 01264283 v 0000 + 14586769 n 0102 + 14625458 n 0102 01 + 08 00 | cover with metal -01603418 35 v 03 macadamize 0 macadamise 0 tarmac 0 005 @ 01264283 v 0000 + 14977188 n 0302 + 04394630 n 0302 + 14977075 n 0101 + 04394630 n 0103 01 + 08 00 | surface with macadam; "macadam the road" -01603620 35 v 02 limber 0 limber_up 0 001 @ 01296462 v 0000 01 + 08 00 | attach the limber; "limber a cannon" -01603732 35 v 01 lime 0 003 @ 01332730 v 0000 + 14789885 n 0103 + 14936010 n 0102 01 + 08 00 | cover with lime so as to induce growth; "lime the lawn" -01603885 35 v 01 lance 0 002 @ 01346003 v 0000 + 03637618 n 0102 01 + 08 00 | open by piercing with a lancet; "lance a boil" -01604012 35 v 01 loft 1 001 @ 01405044 v 0000 01 + 08 00 | kick or strike high in the air; "loft a ball" -01604119 35 v 01 lance 1 002 @ 01441510 v 0000 + 04270891 n 0102 02 + 08 00 + 09 00 | pierce with a lance, as in a knights' fight -01604251 35 v 02 lasso 0 rope 3 006 @ 01215421 v 0000 + 04108268 n 0201 + 10538853 n 0201 + 10538733 n 0201 + 00299680 n 0201 + 03644378 n 0101 01 + 08 00 | catch with a lasso; "rope cows" -01604442 35 v 01 loft 0 001 @ 01511706 v 0000 02 + 08 00 + 21 00 | propel through the air; "The rocket lofted the space shuttle into the air" -01604586 35 v 01 joggle 0 002 @ 01340439 v 0000 + 03229244 n 0103 01 + 08 00 | fasten or join with a joggle -01604696 35 v 01 joint 0 003 @ 01340439 v 0000 + 03600977 n 0101 + 13911151 n 0103 01 + 08 00 | fasten with a joint -01604814 35 v 01 juggle 0 005 @ 01508368 v 0000 + 00099799 n 0101 + 10226413 n 0101 + 00099799 n 0102 + 00562179 n 0101 02 + 02 00 + 08 00 | throw, catch, and keep in the air several things simultaneously -01605021 35 v 01 martyr 0 003 @ 01323958 v 0000 + 10296832 n 0101 + 10296618 n 0101 01 + 09 00 | kill as a martyr; "Saint Sebastian was martyred" -01605169 35 v 01 knuckle 1 001 @ 01597286 v 0000 01 + 02 00 | shoot a marble while keeping one's knuckles on the ground -01605291 35 v 01 knuckle 0 002 @ 01447257 v 0000 + 05585205 n 0101 01 + 08 00 | press or rub with the knuckles -01605404 35 v 01 mantle 0 002 @ 01207951 v 0000 + 09223725 n 0102 01 + 08 00 | cover like a mantle; "The ivy mantles the building" -01605537 35 v 01 ooze_through 0 002 @ 01227675 v 0000 ~ 01605692 v 0000 02 + 01 00 + 04 00 | run slowly and gradually; "Blood oozed through the bandage" -01605692 35 v 02 sop 2 soak_through 0 002 @ 01605537 v 0000 + 07861421 n 0101 02 + 01 00 + 04 00 | be or become thoroughly soaked or saturated with a liquid -01605851 35 v 01 wash_out 0 002 @ 01564144 v 0000 + 13574193 n 0101 01 + 11 00 | wear or destroy by the force of water; "The hail storms had washed out the bridges" -01606018 35 v 02 interlock 0 lock 3 003 @ 01424456 v 0000 + 00814458 n 0201 + 00140393 n 0104 01 + 02 00 | become engaged or intermeshed with one another; "They were locked in embrace" -01606205 35 v 02 fortify 0 fort 0 007 @ 01587062 v 0000 + 03386011 n 0202 + 03385557 n 0101 + 03420559 n 0102 + 03386011 n 0102 ~ 01606423 v 0000 ~ 02366745 v 0000 01 + 08 00 | enclose by or as if by a fortification -01606423 35 v 01 trench 5 002 @ 01606205 v 0000 + 04478657 n 0101 01 + 08 00 | fortify by surrounding with trenches; "He trenched his military camp" -01606574 35 v 01 lean 0 003 @ 01494310 v 0000 + 05068080 n 0104 + 00105624 n 0101 01 + 21 00 | cause to lean or incline; "He leaned his rifle against the wall" -01606736 35 v 03 lock 4 interlock 1 interlace 1 003 @ 01216670 v 0000 + 00140393 n 0203 + 00814458 n 0101 02 + 08 00 + 21 00 | hold in a locking position; "He locked his hands around her neck" -01606931 35 v 01 trap 1 001 @ 01216670 v 0000 01 + 11 00 | hold or catch as if in a trap; "The gaps between the teeth trap food particles" -01607072 35 v 03 bond 1 bring_together 2 draw_together 0 002 @ 02603056 v 0000 + 13792183 n 0102 02 + 09 00 + 10 00 | bring together in a common cause or emotion; "The death of their child had drawn them together" -01607288 35 v 01 close e 001 @ 01295275 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring together all the elements or parts of; "Management closed ranks" -01607445 35 v 01 set 2 003 @ 01463963 v 0000 + 01052853 n 0101 + 03792526 n 0102 01 + 08 00 | fix in a border; "The goldsmith set the diamond" -01607590 35 v 01 clap 3 001 @ 01494310 v 0000 02 + 20 00 + 21 00 | put quickly or forcibly; "The judge clapped him in jail" -01607716 35 v 01 hem_in 0 002 @ 01467370 v 0000 ~ 01615190 v 0000 01 + 11 00 | surround in a restrictive manner; "The building was hemmed in by flowers" -01607871 35 v 01 mound_over 0 001 @ 01332730 v 0000 01 + 08 00 | form mounds over; "The huts can be mounded over to form shelters" -01608004 35 v 01 toggle 0 002 @ 01340439 v 0000 + 04445327 n 0101 01 + 08 00 | fasten with, or as if with, a toggle -01608122 35 v 02 girdle 1 deaden 3 003 @ 01555742 v 0000 ;c 00017222 n 0000 + 05578911 n 0101 01 + 08 00 | cut a girdle around so as to kill by interrupting the circulation of water and nutrients; "girdle the plant" -01608340 35 v 01 straw 1 002 @ 01332730 v 0000 + 14959939 n 0101 01 + 08 00 | cover or provide with or as if with straw; "cows were strawed to weather the snowstorm" -01608508 35 v 01 graze 2 004 @ 00069879 v 0000 + 14286885 n 0101 + 00841091 n 0101 + 00150762 n 0101 01 + 10 00 | break the skin (of a body part) by scraping; "She was grazed by the stray bullet" -01608706 35 v 02 clean 4 strip 4 001 @ 00173338 v 0000 04 + 08 00 + 11 00 + 18 00 + 22 00 | remove all contents or possession from, or empty completely; "The boys cleaned the sandwich platters"; "The trees were cleaned of apples by the storm" -01608951 35 v 01 clean c 001 @ 02314275 v 0000 01 + 09 00 | deprive wholly of money in a gambling game, robbery, etc.; "The other players cleaned him completely" -01609115 35 v 03 pick_at 0 pluck_at 0 pull_at 0 001 @ 01609287 v 0000 01 + 08 00 | pluck or pull at with the fingers; "She picked nervously at the buttons of her blouse" -01609287 35 v 01 pull 4 013 @ 01350449 v 0000 + 00114431 n 0101 + 11498040 n 0101 + 10492447 n 0101 + 00114431 n 0102 ~ 01349493 v 0000 ~ 01349893 v 0000 ~ 01350025 v 0000 $ 01448100 v 0000 ~ 01593134 v 0000 ~ 01609115 v 0000 ~ 01609773 v 0000 ~ 01609953 v 0000 01 + 08 00 | apply force so as to cause motion towards the source of the motion; "Pull the rope"; "Pull the handle towards you"; "pull the string gently"; "pull the trigger of the gun"; "pull your knees towards your chin" -01609773 35 v 03 retract 2 pull_back 3 draw_back 4 002 @ 01609287 v 0000 + 04083800 n 0101 01 + 08 00 | use a surgical instrument to hold open (the edges of a wound or an organ) -01609953 35 v 01 draw_close 2 002 $ 01424948 v 0000 @ 01609287 v 0000 02 + 08 00 + 09 00 | pull towards oneself; "He drew the crying child close" -01610101 35 v 01 rest 4 002 @ 01494310 v 0000 + 04081044 n 0101 01 + 21 00 | put something in a resting position, as for support or steadying; "Rest your head on my shoulder" -01610278 35 v 01 size 0 003 @ 01264283 v 0000 + 14706372 n 0101 + 14706372 n 0102 01 + 08 00 | cover or stiffen or glaze a porous material with size or sizing (a glutinous substance) -01610463 35 v 02 break a break_up a 003 $ 01610666 v 0000 @ 00126264 v 0000 + 00708017 a 0101 01 + 08 00 | destroy the completeness of a set of related items; "The book dealer would not break the set" -01610666 35 v 01 break b 002 @ 00161225 v 0000 $ 01610463 v 0000 01 + 08 00 | exchange for smaller units of money; "I had to break a $100 bill just to buy the candy" -01610834 35 v 01 cut a 003 + 00387657 n 0102 + 00386915 n 0102 $ 01610990 v 0000 01 + 22 00 | make an incision or separation; "cut along the dotted line" -01610990 35 v 01 cut b 002 $ 01610834 v 0000 @ 02604760 v 0000 01 + 01 00 | allow incision or separation; "This bread cuts easily" -01611123 35 v 01 cut c 001 @ 01525666 v 0000 01 + 01 00 | function as a cutting instrument; "This knife cuts well" -01611240 35 v 01 perch a 001 @ 01494310 v 0000 01 + 21 00 | cause to perch or sit; "She perched her hat on her head" -01611359 35 v 01 hoist a 001 @ 01974062 v 0000 01 + 21 00 | move from one place to another by lifting; "They hoisted the patient onto the operating table" -01611516 35 v 03 dribble a drip a drop c 006 @ 02069551 v 0000 + 13771404 n 0301 + 03247083 n 0301 + 07432559 n 0201 + 07432559 n 0103 $ 02071142 v 0000 01 + 21 00 | let or cause to fall in drops; "dribble oil into the mixture" -01611746 35 v 01 spread d 002 + 07856270 n 0101 + 04287986 n 0101 01 + 21 00 | distribute over a surface in a layer; "spread cheese on a piece of bread" -01611901 35 v 01 spread c 004 @ 01332730 v 0000 + 07856270 n 0101 + 04287986 n 0101 ~ 01379449 v 0000 01 + 21 00 | cover by spreading something over; "spread the bread with cheese" -01612084 35 v 01 load a 005 @ 01494310 v 0000 + 02964389 n 0104 + 03679986 n 0101 + 10655169 n 0102 + 00713952 n 0101 01 + 21 00 | put (something) on a structure or conveyance; "load the bags onto the trucks" -01612295 35 v 01 cram a 003 @ 01494310 v 0000 $ 01524298 v 0000 ~ 01524871 v 0000 01 + 21 00 | put something somewhere so that the space is completely filled; "cram books into the suitcase" -01612487 35 v 01 drape a 003 @ 01332730 v 0000 + 04930139 n 0101 + 03233123 n 0101 02 + 17 00 + 21 00 | cover or dress loosely with cloth; "drape the statue with a sheet" -01612660 35 v 01 dust 3 002 @ 01332730 v 0000 + 14840092 n 0101 02 + 17 00 + 21 00 | cover with a light dusting of a substance; "dust the bread with flour" -01612818 35 v 01 plaster a 002 @ 01356370 v 0000 $ 01612964 v 0000 01 + 21 00 | affix conspicuously; "She plastered warnings all over the wall" -01612964 35 v 02 plaster b beplaster 0 002 $ 01612818 v 0000 @ 01332730 v 0000 01 + 31 00 | cover conspicuously or thickly, as by pasting something on; "The demonstrators plastered the hallways with posters"; "She let the walls of the apartment be beplastered with stucco" -01613239 35 v 01 set f 002 @ 01494310 v 0000 + 01052853 n 0101 01 + 08 00 | put into a position that will restore a normal state; "set a broken bone" -01613391 35 v 01 siphon 0 002 @ 01494310 v 0000 + 04224155 n 0101 01 + 21 00 | move a liquid from one container into another by means of a siphon or a siphoning action; "siphon gas into the tank" -01613589 35 v 01 squish 0 001 @ 01313411 v 0000 01 + 21 00 | put (a liquid) into a container or another place by means of a squirting action -01613732 35 v 01 tap 4 003 $ 02360274 v 0000 @ 01441100 v 0000 + 04390977 n 0101 01 + 08 00 | pierce in order to draw a liquid from; "tap a maple tree for its syrup"; "tap a keg of beer" -01613921 35 v 01 butterfly 0 002 @ 01579813 v 0000 ;c 00243918 n 0000 01 + 08 00 | cut and spread open, as in preparation for cooking; "butterflied shrimp" -01614079 35 v 01 gradate 0 003 @ 01463963 v 0000 + 14429608 n 0101 + 01003729 n 0101 01 + 08 00 | arrange according to grades; "These lines are gradated" -01614235 35 v 01 stick a 002 @ 01343892 v 0000 $ 01614581 v 0000 01 + 08 00 | fasten into place by fixing an end or point into something; "stick the corner of the sheet under the mattress" -01614426 35 v 01 stick 9 002 @ 01343892 v 0000 $ 01614581 v 0000 01 + 22 00 | fasten with or as with pins or nails; "stick the photo onto the corkboard" -01614581 35 v 01 stick 8 004 $ 01220885 v 0000 $ 01614426 v 0000 $ 01614235 v 0000 @ 01343892 v 0000 01 + 22 00 | fasten with an adhesive material like glue; "stick the poster onto the wall" -01614774 35 v 01 hitch d 002 @ 01354673 v 0000 + 03522863 n 0101 01 + 21 00 | connect to a vehicle: "hitch the trailer to the car" -01614907 35 v 01 steel 0 002 @ 01332730 v 0000 + 14802450 n 0101 01 + 08 00 | cover, plate, or edge with steel -01615020 35 v 02 hedge 0 hedge_in 1 002 @ 01587062 v 0000 $ 01615190 v 0000 01 + 08 00 | enclose or bound in with or as it with a hedge or hedges; "hedge the property" -01615190 35 v 01 hedge 1 002 $ 01615020 v 0000 @ 01607716 v 0000 02 + 08 00 + 11 00 | hinder or restrict with or as if with a hedge; "The animals were hedged in" -01615354 35 v 01 ligate 0 001 @ 01295275 v 0000 01 + 08 00 | join letters in a ligature when writing -01615457 35 v 02 put_out 1 retire 0 003 @ 01586278 v 0000 ;c 00471613 n 0000 + 00130093 n 0101 01 + 09 00 | cause to be out on a fielding play -01615602 35 v 02 metalize 0 metallize 0 001 @ 01264283 v 0000 01 + 08 00 | coat with metal -01615695 35 v 01 platinize 0 001 @ 01264283 v 0000 01 + 08 00 | coat with metallic platinum -01615789 35 v 01 porcelainize 0 001 @ 01264283 v 0000 01 + 08 00 | coat with porcelain or a porcelain-like surface -01615906 35 v 01 zinc 0 001 @ 01264283 v 0000 01 + 08 00 | coat or cover with zinc -01615991 35 v 02 put_away 3 put_aside 0 000 01 + 08 00 | stop using; "the children were told to put away their toys"; "the students put away their notebooks" -01616151 35 v 01 shed_blood 0 001 @ 01323958 v 0000 01 + 02 00 | kill violently; "They will never stop shedding the blood of their enemies" -01616293 35 v 01 tree 1 002 @ 01567275 v 0000 + 13104059 n 0101 01 + 08 00 | plant with trees; "this lot should be treed so that the house will be shaded in summer" -01616460 35 v 01 unblock 2 001 @ 01479682 v 0000 02 + 08 00 + 11 00 | clear or remove an obstruction from; "the procedure unblocked his arteries" -01616608 35 v 01 disperse 5 001 @ 01458973 v 0000 01 + 08 00 | separate (light) into spectral rays; "the prosm disperses light" -01616738 35 v 01 bowl 4 002 @ 01507143 v 0000 ;c 00476389 n 0000 01 + 08 00 | hurl a cricket ball from one end of the pitch towards the batsman at the other end -01616901 35 v 01 seat 1 001 @ 01494310 v 0000 01 + 21 00 | place or attach firmly in or on a base; "seat the camera on the tripod" -01617034 35 v 04 clothe 0 cloak 1 drape 2 robe 0 001 @ 01207951 v 0000 01 + 11 00 | cover as if with clothing; "the mountain was clothed in tropical trees" -01617192 36 v 02 make 0 create 0 063 + 09976429 n 0201 + 00015388 n 0205 + 00923995 n 0103 ^ 01619725 v 0104 ^ 01634424 v 0104 ~ 00054628 v 0000 ~ 00055142 v 0000 ~ 00167535 v 0000 ~ 00195617 v 0000 ~ 00229280 v 0000 ~ 00251615 v 0000 ~ 00511855 v 0000 ~ 00665476 v 0000 ~ 01275182 v 0000 ~ 01518047 v 0000 ~ 01558681 v 0000 ~ 01618468 v 0000 ~ 01618547 v 0000 ~ 01618884 v 0000 ~ 01619354 v 0000 ~ 01624449 v 0000 ~ 01627355 v 0000 ~ 01628449 v 0000 ~ 01629403 v 0000 ~ 01629589 v 0000 ~ 01629958 v 0000 ~ 01631534 v 0000 ~ 01640207 v 0000 ~ 01644746 v 0000 ~ 01645601 v 0000 ~ 01647672 v 0000 ~ 01649809 v 0000 ~ 01652139 v 0000 ~ 01653013 v 0000 ~ 01654628 v 0000 ~ 01655505 v 0000 ~ 01656788 v 0000 ~ 01666894 v 0000 ~ 01675073 v 0000 ~ 01693881 v 0000 ~ 01697816 v 0000 ~ 01705494 v 0000 ~ 01708317 v 0000 ~ 01710317 v 0000 ~ 01711965 v 0000 ~ 01712204 v 0000 ~ 01737617 v 0000 ~ 01747085 v 0000 ~ 01750156 v 0000 ~ 01752495 v 0000 ~ 01752884 v 0000 ~ 01754105 v 0000 ~ 01754271 v 0000 ~ 01754737 v 0000 ~ 01754915 v 0000 ~ 01755651 v 0000 ~ 01756006 v 0000 ~ 01758410 v 0000 ~ 01758696 v 0000 ~ 01759021 v 0000 ~ 01759326 v 0000 ~ 02448079 v 0000 ~ 02448185 v 0000 02 + 08 00 + 11 00 | make or cause to be or to become; "make a mess in one's office"; "create a furor" -01618468 36 v 01 track 0 001 @ 01617192 v 0000 01 + 08 00 | make tracks upon -01618547 36 v 02 institute 0 bring 1 001 @ 01617192 v 0000 01 + 08 00 | advance or set forth in court; "bring charges", "institute proceedings" -01618693 36 v 01 introduce 1 002 @ 01647672 v 0000 ~ 02079051 v 0000 02 + 08 00 + 11 00 | bring in or establish in a new place or environment; "introduce a rule"; "introduce exotic fruits" -01618884 36 v 02 short-circuit 0 short 0 002 @ 01617192 v 0000 + 04204755 n 0202 02 + 08 00 + 11 00 | create a short circuit in -01619014 36 v 02 do 0 make 5 002 @ 01640207 v 0000 ! 01619231 v 0201 02 + 08 00 + 21 00 | create or design, often in a certain way; "Do my room in blue"; "I did this piece in wood to express my love for the forest" -01619231 36 v 02 unmake 0 undo 0 002 ! 01619014 v 0102 ~ 01619929 v 0000 01 + 08 00 | deprive of certain characteristics -01619354 36 v 01 re-create 0 014 @ 01617192 v 0000 + 00908772 n 0101 ~ 00168393 v 0000 ~ 01631072 v 0000 ~ 01635176 v 0000 ~ 01654271 v 0000 ~ 01686132 v 0000 ~ 01703454 v 0000 ~ 01711445 v 0000 ~ 01714208 v 0000 ~ 01719302 v 0000 ~ 01722815 v 0000 ~ 01722980 v 0000 ~ 01724459 v 0000 02 + 08 00 + 11 00 | create anew; "Re-create the boom of the West on a small scale" -01619725 36 v 04 remake 0 refashion 1 redo 0 make_over 0 005 @ 01621555 v 0000 + 00269674 n 0401 + 04074329 n 0101 + 00660570 n 0401 ~ 01658586 v 0000 01 + 08 00 | make new; "She is remaking her image" -01619929 36 v 02 destroy 0 destruct 0 020 @ 01619231 v 0000 + 00737973 a 0101 + 00586183 a 0101 + 00217014 n 0101 + 10008716 n 0101 + 03180504 n 0101 ~ 00355177 v 0000 ~ 00471711 v 0000 ~ 01620436 v 0000 ~ 01620688 v 0000 ~ 01620854 v 0000 ~ 01621084 v 0000 ~ 01621219 v 0000 ~ 01621418 v 0000 ~ 01656458 v 0000 ~ 01657977 v 0000 ~ 01661804 v 0000 ~ 01662118 v 0000 ~ 01662434 v 0000 ~ 01757196 v 0000 02 + 08 00 + 11 00 | do away with, cause the destruction or undoing of; "The fire destroyed the house" -01620436 36 v 02 self-destruct 0 self-destroy 0 005 @ 01619929 v 0000 + 00222766 n 0201 + 00222485 n 0202 + 00222766 n 0101 + 00222485 n 0102 02 + 01 00 + 02 00 | do away with oneself or itself; "The machine will self-destruct if you tamper with it" -01620688 36 v 01 destruct 1 001 @ 01619929 v 0000 01 + 08 00 | destroy (one's own missile or rocket); "The engineers had to destruct the rocket for safety reasons" -01620854 36 v 01 end d 006 @ 01619929 v 0000 + 06398401 n 0102 + 14562960 n 0101 + 07291794 n 0101 + 15266911 n 0101 + 07291312 n 0101 02 + 08 00 + 11 00 | put an end to; "The terrible news ended our hopes that he had survived" -01621084 36 v 01 fracture 0 001 @ 01619929 v 0000 02 + 08 00 + 11 00 | interrupt, break, or destroy; "fracture the balance of power" -01621219 36 v 02 wipe_out 0 sweep_away 0 002 @ 01619929 v 0000 + 07334490 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | eliminate completely and without a trace; "The old values have been wiped out" -01621418 36 v 01 interdict 0 001 @ 01619929 v 0000 02 + 08 00 + 11 00 | destroy by firepower, such as an enemy's line of communication -01621555 36 v 03 produce 0 make 1 create 3 038 $ 01640207 v 0000 + 03129123 n 0301 + 00908492 n 0301 + 10284064 n 0201 + 08060446 n 0202 + 05845140 n 0202 + 00923995 n 0203 + 10292316 n 0102 + 03748886 n 0103 + 04007894 n 0101 ~ 01429455 v 0000 ~ 01619725 v 0000 ~ 01622445 v 0000 ~ 01622595 v 0000 ~ 01622795 v 0000 ~ 01623027 v 0000 ~ 01623365 v 0000 ~ 01623489 v 0000 ~ 01623656 v 0000 ~ 01623792 v 0000 ~ 01623967 v 0000 ~ 01625044 v 0000 ~ 01625206 v 0000 ~ 01625343 v 0000 ~ 01625532 v 0000 ~ 01625666 v 0000 ~ 01625985 v 0000 ~ 01628197 v 0000 ~ 01629000 v 0000 ~ 01675780 v 0000 ~ 01681913 v 0000 ~ 01736822 v 0000 ~ 01739263 v 0000 ~ 01739675 v 0000 ~ 01745722 v 0000 ~ 01750813 v 0000 ~ 01752316 v 0000 ~ 01756277 v 0000 02 + 08 00 + 11 00 | create or manufacture a man-made product; "We produce more cars than we can sell"; "The company has been making toys for two centuries" -01622445 36 v 01 prefabricate 1 001 @ 01621555 v 0000 02 + 08 00 + 11 00 | produce synthetically, artificially, or stereotypically and unoriginally -01622595 36 v 01 underproduce 0 002 @ 01621555 v 0000 + 00914509 n 0101 03 + 01 00 + 08 00 + 11 00 | produce below capacity or demand; "The East German factories were underproducing for many years" -01622795 36 v 01 output 0 004 @ 01621555 v 0000 + 03860882 n 0101 + 00914632 n 0101 + 03287178 n 0102 02 + 08 00 + 11 00 | to create or manufacture a specific amount; "the computer is outputting the data from the job I'm running" -01623027 36 v 02 pulse 0 pulsate 0 005 @ 01621555 v 0000 + 07420991 n 0201 + 07420991 n 0203 + 07420991 n 0103 + 07420991 n 0102 02 + 08 00 + 11 00 | produce or modulate (as electromagnetic waves) in the form of short bursts or pulses or cause an apparatus to produce pulses; "pulse waves"; "a transmitter pulsed by an electronic tube" -01623365 36 v 03 clap_up 0 clap_together 0 slap_together 0 001 @ 01621555 v 0000 01 + 08 00 | make hastily and carelessly -01623489 36 v 04 custom-make 0 customize 0 customise 0 tailor-make 1 001 @ 01621555 v 0000 01 + 08 00 | make to specifications; "I had this desk custom-made for me" -01623656 36 v 02 dummy 0 dummy_up 0 001 @ 01621555 v 0000 01 + 08 00 | make a dummy of; "dummy up the books that are to be published" -01623792 36 v 01 turn_out 1 002 @ 01621555 v 0000 + 03860882 n 0103 02 + 08 00 + 11 00 | produce quickly or regularly, usually with machinery; "This factory turns out saws" -01623967 36 v 01 machine 0 004 @ 01621555 v 0000 + 03699975 n 0101 + 10279018 n 0101 + 03701640 n 0101 01 + 08 00 | make by machinery; "The Americans were machining while others still hand-made cars" -01624169 36 v 01 machine 1 003 @ 01659248 v 0000 + 03699975 n 0101 + 10279018 n 0101 01 + 08 00 | turn, shape, mold, or otherwise finish by machinery -01624321 36 v 01 grind 4 001 @ 01659248 v 0000 01 + 08 00 | shape or form by grinding; "grind lenses for glasses and cameras" -01624449 36 v 01 grind 5 001 @ 01617192 v 0000 01 + 08 00 | created by grinding; "grind designs into the glass bowl" -01624568 36 v 01 stamp 0 004 @ 01659248 v 0000 + 13913566 n 0104 + 10647168 n 0101 + 04300509 n 0102 01 + 08 00 | form or cut out with a mold, form, or die; "stamp needles" -01624743 36 v 01 puddle 0 003 @ 01659248 v 0000 + 14992945 n 0101 + 10491869 n 0101 01 + 08 00 | subject to puddling or form by puddling; "puddle iron" -01624897 36 v 01 beat 0 003 @ 01659248 v 0000 + 00547616 n 0101 ~ 01675245 v 0000 01 + 08 00 | shape by beating; "beat swords into ploughshares" -01625044 36 v 01 churn_out 0 001 @ 01621555 v 0000 01 + 08 00 | produce something at a fast rate; "He churns out papers, but they are all about the same topic" -01625206 36 v 01 overproduce 1 002 @ 01621555 v 0000 + 00914343 n 0101 01 + 08 00 | produce in excess; "The country overproduces cars" -01625343 36 v 01 elaborate 0 002 @ 01621555 v 0000 + 00250710 n 0101 01 + 08 00 | produce from basic elements or sources; change into a more developed product; "The bee elaborates honey" -01625532 36 v 01 put_out 0 001 @ 01621555 v 0000 01 + 08 00 | put out considerable effort; "He put out the same for seven managers" -01625666 36 v 01 laminate 0 006 @ 01621555 v 0000 + 03635668 n 0101 + 05580929 n 0101 + 03635932 n 0101 + 00926923 n 0101 + 10244226 n 0101 01 + 08 00 | create laminate by bonding sheets of material with a bonding material -01625891 36 v 01 mass-produce 0 001 @ 01653442 v 0000 01 + 08 00 | produce on a large scale -01625985 36 v 01 bootleg 0 002 @ 01621555 v 0000 + 07902520 n 0102 01 + 08 00 | produce or distribute illegally; "bootleg tapes of the diva's singing" -01626138 36 v 02 compose 9 compile 0 009 @ 01653873 v 0000 + 06593099 n 0201 + 01014731 n 0201 + 09946957 n 0201 + 01014731 n 0202 + 09949946 n 0101 ~ 01626600 v 0000 ~ 01626705 v 0000 ~ 01626844 v 0000 02 + 08 00 + 21 00 | put together out of existing material; "compile a list" -01626420 36 v 03 confect 0 confection 0 comfit 0 003 @ 01656788 v 0000 + 00926668 n 0201 + 00926668 n 0101 01 + 08 00 | make into a confection; "This medicine is home-confected" -01626600 36 v 02 cobble_together 0 cobble_up 0 001 @ 01626138 v 0000 01 + 08 00 | put together hastily -01626705 36 v 02 anthologize 0 anthologise 0 003 @ 01626138 v 0000 + 06591609 n 0201 + 06591609 n 0101 01 + 08 00 | compile an anthology -01626844 36 v 02 catalogue 0 catalog 0 007 @ 01626138 v 0000 + 06487897 n 0201 + 06416206 n 0201 + 06487897 n 0102 + 06416206 n 0102 + 09900499 n 0102 + 09900499 n 0101 01 + 02 00 | make a catalogue, compile a catalogue; "She spends her weekends cataloguing" -01627105 36 v 01 compile 1 003 @ 01653873 v 0000 + 01014731 n 0101 + 06573600 n 0101 01 + 08 00 | use a computer program to translate source code written in a particular programming language into computer-readable machine code that can be executed -01627355 36 v 02 generate 0 bring_forth 1 009 @ 01617192 v 0000 + 01867295 a 0101 + 15290930 n 0101 + 07324380 n 0102 + 10126177 n 0101 ~ 01627779 v 0000 ~ 01627947 v 0000 ~ 01644050 v 0000 ~ 01757994 v 0000 02 + 08 00 + 11 00 | bring into existence; "The new manager generated a lot of problems"; "The computer bug generated chaos in the office"; "The computer generated this image"; "The earthquake generated a tsunami" -01627779 36 v 01 come_up 3 001 @ 01627355 v 0000 01 + 08 00 | bring forth, usually something desirable; "The committee came up with some interesting recommendations" -01627947 36 v 01 develop 9 004 @ 01627355 v 0000 $ 00171852 v 0000 $ 00545557 v 0000 ~ 00562067 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | generate gradually; "We must develop more potential customers"; "develop a market for the new mobile phone" -01628197 36 v 01 generate 1 004 @ 01621555 v 0000 + 01867295 a 0101 + 00922144 n 0101 + 03433877 n 0101 01 + 08 00 | produce (energy); "We can't generate enough power for the entire city"; "The hydroelectric plant needs to generate more electricity" -01628449 36 v 03 originate 0 initiate 1 start 0 017 @ 01617192 v 0000 + 00235435 n 0302 + 15265518 n 0306 + 07325190 n 0301 + 10355449 n 0304 + 01009343 a 0202 + 01009343 a 0203 + 00156390 n 0203 + 00240184 n 0201 + 00643250 a 0102 + 07323922 n 0101 + 00240184 n 0105 + 10383816 n 0101 ^ 02627666 v 0101 ~ 00539546 v 0000 ~ 01628899 v 0000 ~ 02723951 v 0000 02 + 08 00 + 11 00 | bring into being; "He initiated a new program"; "Start a foundation" -01628899 36 v 01 set c 001 @ 01628449 v 0000 01 + 08 00 | apply or start; "set fire to a building" -01629000 36 v 05 render 0 yield 0 return 0 give 0 generate 2 009 @ 01621555 v 0000 + 00922144 n 0501 + 13260190 n 0301 + 13260190 n 0206 + 04612722 n 0201 + 00914632 n 0202 + 13758745 n 0202 $ 01629403 v 0000 $ 01647672 v 0000 02 + 08 00 + 11 00 | give or supply; "The cow brings in 5 liters of milk"; "This year's crop yielded 1,000 bushels of corn"; "The estate renders some revenue for the family" -01629403 36 v 02 give 3 yield 1 002 $ 01629000 v 0000 @ 01617192 v 0000 03 + 11 00 + 14 00 + 15 00 | cause to happen or be responsible for; "His two singles gave the team the victory" -01629589 36 v 05 bring 0 work 1 play d wreak 0 make_for 0 006 @ 01617192 v 0000 + 01822563 a 0205 ^ 01644050 v 0102 ^ 02522864 v 0103 ^ 01629958 v 0109 $ 02525447 v 0000 02 + 08 00 + 11 00 | cause to happen or to occur as a consequence; "I cannot work a miracle"; "wreak havoc"; "bring comments"; "play a joke"; "The rain brought relief to the drought-stricken area" -01629958 36 v 0b raise 1 conjure 0 conjure_up 0 invoke 0 evoke 2 stir 0 call_down 0 arouse 0 bring_up 0 put_forward 0 call_forth 0 013 $ 01646866 v 0000 @ 01617192 v 0000 + 05978623 n 0501 + 07160296 n 0401 + 05978159 n 0404 + 10280674 n 0203 + 07160116 n 0202 + 05978159 n 0202 + 10280674 n 0204 + 05978159 n 0203 + 05978159 n 0201 ~ 00865958 v 0000 ~ 00866505 v 0000 02 + 08 00 + 11 00 | summon into action or bring into existence, often as if by magic; "raise the specter of unemployment"; "he conjured wild birds in the air"; "call down the spirits from the mountain" -01630532 36 v 05 educe 0 evoke 1 elicit 0 extract 0 draw_out 0 001 @ 00623151 v 0000 01 + 08 00 | deduce (a principle) or construe (a meaning); "We drew out some interesting linguistic data from the native informant" -01630751 36 v 02 extort 0 wring_from 0 002 @ 02238085 v 0000 ~ 01630903 v 0000 01 + 08 00 | get or cause to become in a difficult or laborious manner -01630903 36 v 02 pry 0 prise 0 002 @ 01630751 v 0000 + 05683390 n 0102 01 + 08 00 | make an uninvited or presumptuous inquiry; "They pried the information out of him" -01631072 36 v 02 regenerate 0 renew 0 013 @ 01619354 v 0000 + 01248852 n 0201 + 00269963 n 0102 ~ 00162688 v 0000 ~ 00163441 v 0000 ~ 00163915 v 0000 ~ 00164072 v 0000 ~ 00164201 v 0000 ~ 00164444 v 0000 ~ 00164658 v 0000 ~ 00168588 v 0000 ~ 00262076 v 0000 ~ 02552449 v 0000 02 + 08 00 + 11 00 | reestablish on a new, usually improved, basis or make new or like new; "We renewed our friendship after a hiatus of twenty years"; "They renewed their membership" -01631534 36 v 02 create_by_mental_act 0 create_mentally 0 016 @ 01617192 v 0000 ~ 00730758 v 0000 ~ 00736799 v 0000 ~ 01631959 v 0000 ~ 01632103 v 0000 ~ 01632411 v 0000 ~ 01633343 v 0000 ~ 01634142 v 0000 ~ 01636397 v 0000 ~ 01638368 v 0000 ~ 01639714 v 0000 ~ 01692834 v 0000 ~ 01738597 v 0000 ~ 01747717 v 0000 ~ 01757546 v 0000 ~ 01757721 v 0000 01 + 08 00 | create mentally and abstractly rather than with one's hands -01631959 36 v 01 give_birth 0 001 @ 01631534 v 0000 02 + 08 00 + 11 00 | create or produce an idea; "Marx and Engels gave birth to communism" -01632103 36 v 01 schematize 0 007 * 00404642 v 0000 @ 01631534 v 0000 + 00900207 n 0101 + 05891572 n 0103 + 05927813 n 0102 + 05927813 n 0101 + 05891572 n 0102 01 + 08 00 | formulate in regular order; to reduce to a scheme or formula; "The chemists schematized the various reactions in a coherent fashion" -01632411 36 v 06 invent 0 contrive 0 devise 0 excogitate 0 formulate 0 forge 8 014 @ 01631534 v 0000 + 06732013 n 0501 + 00940842 n 0503 + 05633385 n 0403 + 05792842 n 0401 + 10068804 n 0401 + 10438172 n 0303 + 00923995 n 0301 + 00940709 n 0301 + 00940709 n 0202 + 00643863 a 0102 + 05633385 n 0101 + 00940412 n 0101 + 10214637 n 0101 01 + 08 00 | come up with (an idea, plan, explanation, theory, or principle) after a mental effort; "excogitate a way to measure the speed of light" -01632897 36 v 04 project 3 cast 2 contrive 2 throw 2 003 @ 01951480 v 0000 + 00105479 n 0202 ~ 02096047 v 0000 02 + 08 00 + 11 00 | put or send forth; "She threw the flashlight beam into the corner"; "The setting sun threw long shadows"; "cast a spell"; "cast a warm light" -01633173 36 v 01 formulate 1 005 @ 01653013 v 0000 ;c 06084469 n 0000 + 06788785 n 0102 + 05846932 n 0102 + 14873641 n 0101 01 + 08 00 | prepare according to a formula -01633343 36 v 04 gestate 3 conceive 0 conceptualize 0 conceptualise 0 015 @ 01631534 v 0000 + 05836275 n 0402 + 00940842 n 0402 + 05835747 n 0401 + 00012362 a 0301 + 05836275 n 0301 + 00940842 n 0301 + 05835747 n 0301 + 05633385 n 0204 + 05835747 n 0201 + 10383816 n 0202 + 05772215 n 0101 ~ 01633825 v 0000 ~ 01634011 v 0000 ~ 01637982 v 0000 02 + 08 00 + 22 00 | have the idea for; "He conceived of a robot that would help paralyzed patients"; "This library was well conceived" -01633825 36 v 01 design 9 002 @ 01633343 v 0000 + 05982152 n 0105 01 + 08 00 | conceive or fashion in the mind; invent; "She designed a good excuse for not attending classes that day" -01634011 36 v 01 preconceive 0 002 @ 01633343 v 0000 + 05949937 n 0101 01 + 08 00 | conceive beforehand; "a preconceived notion" -01634142 36 v 05 think_up 0 think_of 0 dream_up 0 hatch 0 concoct 0 004 @ 01631534 v 0000 + 05634219 n 0501 ~ 00624967 v 0000 ~ 01634424 v 0000 01 + 08 00 | devise or invent; "He thought up a plan to get rich quickly"; "no-one had ever thought of such a clever piece of software" -01634424 36 v 05 fabricate 0 manufacture 1 cook_up 0 make_up 1 invent 1 010 @ 01634142 v 0000 + 00940412 n 0501 + 06757891 n 0101 + 00931040 n 0101 + 10660333 n 0103 ~ 01634734 v 0000 ~ 01634887 v 0000 ~ 01635056 v 0000 ~ 01639500 v 0000 ~ 01739545 v 0000 01 + 08 00 | make up something artificial or untrue -01634734 36 v 02 mythologize 0 mythologise 0 001 @ 01634424 v 0000 01 + 08 00 | construct a myth; "The poet mythologized that the King had three sons" -01634887 36 v 01 confabulate 3 003 @ 01634424 v 0000 ;c 06055946 n 0000 + 05935535 n 0101 02 + 02 00 + 08 00 | unconsciously replace fact with fantasy in one's memory -01635056 36 v 02 trump_up 0 concoct 2 002 @ 01634424 v 0000 + 05634219 n 0201 01 + 08 00 | invent; "trump up charges" -01635176 36 v 03 fictionalize 0 fictionalise 0 retell 7 005 @ 01619354 v 0000 + 06367373 n 0101 + 00931040 n 0102 + 06757891 n 0102 + 06367107 n 0101 01 + 08 00 | make into fiction; "The writer fictionalized the lives of his parents in his latest novel" -01635432 36 v 09 visualize 0 visualise 0 envision 0 project 0 fancy 0 see 0 figure 0 picture 1 image 0 017 @ 01636397 v 0000 + 05928118 n 0901 + 03265874 n 0902 + 03931044 n 0902 + 05767733 n 0902 + 05767733 n 0903 + 05936704 n 0802 + 05768415 n 0801 + 00899927 n 0701 + 10756433 n 0603 + 05896059 n 0504 + 05632272 n 0501 + 05768415 n 0302 + 05936381 n 0102 + 10757492 n 0101 $ 00591115 v 0000 $ 01636008 v 0000 02 + 08 00 + 26 00 | imagine; conceive of; see in one's mind; "I can't see him on horseback!"; "I can see what will happen"; "I can see a risk in this strategy" -01636008 36 v 02 visualize 2 visualise 2 003 $ 01635432 v 0000 @ 01636397 v 0000 + 05936381 n 0203 01 + 02 00 | form a mental picture of something that is invisible or abstract; "Mathematicians often visualize" -01636221 36 v 02 envision 1 foresee 0 002 @ 01636397 v 0000 + 05768415 n 0102 02 + 08 00 + 26 00 | picture to oneself; imagine possible; "I cannot envision him as President" -01636397 36 v 04 imagine 0 conceive_of 1 ideate 1 envisage 0 014 @ 01631534 v 0000 + 05833840 n 0301 + 05784699 n 0301 + 00643863 a 0101 + 05767733 n 0101 + 05625465 n 0101 ~ 01635432 v 0000 ~ 01636008 v 0000 ~ 01636221 v 0000 ~ 01636859 v 0000 ~ 01636993 v 0000 ~ 01637166 v 0000 ~ 01637368 v 0000 ~ 01637633 v 0000 02 + 08 00 + 26 00 | form a mental image of something that is not present or that is not the case; "Can you conceive of him as the president?" -01636859 36 v 02 fantasize 1 fantasise 1 001 @ 01636397 v 0000 01 + 08 00 | portray in the mind; "he is fantasizing the ideal wife" -01636993 36 v 01 prefigure 1 003 @ 01636397 v 0000 + 05939109 n 0101 + 05776015 n 0101 01 + 08 00 | imagine or consider beforehand; "It wasn't as bad as I had prefigured" -01637166 36 v 01 think 0 003 @ 01636397 v 0000 + 05786372 n 0101 + 05833840 n 0102 01 + 02 00 | imagine or visualize; "Just think--you could be rich one day!"; "Think what a scene it must have been!" -01637368 36 v 03 fantasy 0 fantasize 0 fantasise 0 005 @ 01636397 v 0000 + 05896059 n 0202 + 05632446 n 0201 + 05896059 n 0102 + 05632446 n 0101 03 + 02 00 + 22 00 + 26 00 | indulge in fantasies; "he is fantasizing when he says he plans to start his own company" -01637633 36 v 04 dream 0 daydream 0 woolgather 0 stargaze 0 012 @ 01636397 v 0000 + 09994119 n 0402 + 09993901 n 0302 + 05769726 n 0301 + 05769471 n 0203 + 09993901 n 0201 + 05769471 n 0204 + 05768806 n 0101 + 10196965 n 0102 + 10062996 n 0102 + 05768806 n 0102 ^ 01634142 v 0103 03 + 02 00 + 22 00 + 26 00 | have a daydream; indulge in a fantasy -01637982 36 v 02 discover 0 find 0 011 $ 00721437 v 0000 @ 01633343 v 0000 + 05808218 n 0203 + 00043195 n 0202 + 09279458 n 0201 + 10214637 n 0102 + 07214432 n 0101 + 05808218 n 0101 + 00043195 n 0101 $ 00918872 v 0000 $ 02154508 v 0000 02 + 08 00 + 26 00 | make a discovery, make a new finding; "Roentgen discovered X-rays"; "Physicists believe they found a new elementary particle" -01638368 36 v 04 plan 0 project 1 contrive 1 design 2 014 @ 01631534 v 0000 + 05633385 n 0405 + 05982152 n 0405 + 05728678 n 0401 + 10438172 n 0302 + 05910453 n 0201 + 00795720 n 0202 + 05728678 n 0102 + 05898568 n 0101 + 10438172 n 0101 + 05794694 n 0101 ~ 01638825 v 0000 ~ 01639003 v 0000 ~ 01756149 v 0000 02 + 08 00 + 28 00 | make or work out a plan for; devise; "They contrived to murder their boss"; "design a new sales strategy"; "plan an attack" -01638825 36 v 01 plot 3 001 @ 01638368 v 0000 01 + 08 00 | devise the sequence of events in (a literary work or a play, movie, or ballet); "the writer is plotting a new novel" -01639003 36 v 01 concert 0 001 @ 01638368 v 0000 01 + 08 00 | contrive (a plan) by mutual agreement -01639105 36 v 03 mint 0 coin 0 strike 2 007 @ 01653013 v 0000 + 13388245 n 0201 + 09935233 n 0201 + 09934921 n 0201 + 03772269 n 0101 + 09934921 n 0102 + 00909796 n 0101 01 + 08 00 | form by stamping, punching, or printing; "strike coins"; "strike a medal" -01639364 36 v 01 spin 0 002 * 01675780 v 0000 @ 01653013 v 0000 01 + 11 00 | form a web by making a thread; "spiders spin a fine web" -01639500 36 v 01 spin 1 001 @ 01634424 v 0000 01 + 08 00 | make up a story; "spin a yarn" -01639592 36 v 01 spatchcock 0 001 @ 01025602 v 0000 01 + 08 00 | interpolate or insert (words) into a sentence or story -01639714 36 v 02 design 0 plan 1 012 @ 01631534 v 0000 + 03954199 n 0201 + 10438172 n 0201 + 00928371 n 0201 + 05633385 n 0105 + 03179318 n 0101 + 00928077 n 0101 + 09805475 n 0102 + 00928077 n 0102 ~ 00711550 v 0000 ~ 01640107 v 0000 ~ 01683582 v 0000 01 + 08 00 | make a design of; plan out in systematic, often graphic form; "design a better mousetrap"; "plan the new wing of the museum" -01640107 36 v 01 redesign 0 001 @ 01639714 v 0000 01 + 08 00 | design anew, make a new design for -01640207 36 v 02 create d make 9 009 @ 01617192 v 0000 + 00923995 n 0203 + 00585202 a 0101 + 00643250 a 0101 + 07328942 n 0101 ~ 01619014 v 0000 $ 01621555 v 0000 ~ 01640550 v 0000 ~ 01753596 v 0000 01 + 08 00 | create by artistic means; "create a poem"; "Schoenberg created twelve-tone music"; "Picasso created Cubism"; "Auden made verses" -01640550 36 v 01 design 1 008 @ 01640207 v 0000 + 03178782 n 0101 + 09972157 n 0104 + 09805475 n 0102 + 00928077 n 0102 ~ 01666717 v 0000 ~ 01753465 v 0000 $ 01753596 v 0000 01 + 08 00 | create the design for; create or execute in an artistic or highly skilled manner; "Chanel designed the famous suit" -01640855 36 v 07 carry_through 0 accomplish 0 execute 0 carry_out 0 action 0 fulfill 0 fulfil 0 015 $ 00486018 v 0000 @ 00484166 v 0000 @ 01642924 v 0000 + 00062451 n 0702 + 00062451 n 0601 + 03017922 a 0301 + 01127379 n 0301 + 01821690 a 0201 + 00035189 n 0201 ~ 01641341 v 0000 ~ 01641545 v 0000 ~ 01641632 v 0000 ~ 01641751 v 0000 ~ 02561995 v 0000 ~ 02563724 v 0000 01 + 08 00 | put in effect; "carry out a task"; "execute the decision of the people"; "He actioned the operation" -01641341 36 v 01 get_over 0 001 @ 01640855 v 0000 01 + 08 00 | to bring (a necessary but unpleasant task) to an end; "Let's get this job over with"; "It's a question of getting over an unpleasant task" -01641545 36 v 01 run 0 001 @ 01640855 v 0000 01 + 08 00 | carry out; "run an errand" -01641632 36 v 01 consummate 0 002 @ 01640855 v 0000 + 00061598 n 0101 01 + 08 00 | make perfect; bring to perfection -01641751 36 v 01 consummate 1 004 * 01426397 v 0000 @ 01640855 v 0000 + 00061792 n 0101 + 00061598 n 0101 01 + 08 00 | fulfill sexually; "consummate a marriage" -01641914 36 v 02 initiate 0 pioneer 1 012 @ 01645601 v 0000 + 10434725 n 0201 + 00240184 n 0101 + 10209082 n 0102 ~ 01642311 v 0000 ~ 01642437 v 0000 ~ 01643657 v 0000 ~ 01647229 v 0000 ~ 01648126 v 0000 ~ 01649124 v 0000 ~ 01651293 v 0000 ~ 01651444 v 0000 01 + 08 00 | take the lead or initiative in; participate in the development of; "This South African surgeon pioneered heart transplants" -01642311 36 v 01 strike_up 0 001 @ 01641914 v 0000 01 + 08 00 | begin; "strike up a conversation"; "strike up a friendship" -01642437 36 v 02 introduce 0 innovate 0 008 @ 01641914 v 0000 + 01687586 a 0201 + 03582658 n 0202 + 00240184 n 0207 + 10434725 n 0202 ~ 01642717 v 0000 ~ 01645421 v 0000 ~ 01718015 v 0000 01 + 08 00 | bring something new to an environment; "A new word processor was introduced" -01642717 36 v 01 phase_in 0 002 @ 01642437 v 0000 ! 01642820 v 0101 01 + 08 00 | introduce gradually -01642820 36 v 01 phase_out 0 002 @ 00352826 v 0000 ! 01642717 v 0101 01 + 08 00 | terminate gradually -01642924 36 v 03 effect 0 effectuate 0 set_up 3 014 > 00339934 v 0000 @ 01645601 v 0000 + 14311348 n 0201 + 11410625 n 0202 + 00044150 n 0202 + 00510644 a 0101 + 00834198 a 0101 + 05917477 n 0101 + 10046527 n 0101 ~ 01640855 v 0000 ~ 01643297 v 0000 ~ 01644339 v 0000 ~ 01644522 v 0000 ~ 02670398 v 0000 02 + 08 00 + 11 00 | produce; "The scientists set up a shock wave" -01643297 36 v 02 draw 1 get 0 002 @ 01642924 v 0000 ;c 00471613 n 0000 01 + 08 00 | earn or achieve a base by being walked by the pitcher; "He drew a base on balls" -01643464 36 v 01 draw 2 005 @ 01685313 v 0000 + 10029068 n 0102 + 07003119 n 0101 + 00935940 n 0101 $ 01582645 v 0000 01 + 02 00 | engage in drawing; "He spent the day drawing in the garden" -01643657 36 v 09 trip 0 actuate 0 trigger 0 activate 0 set_off 0 spark_off 0 spark 0 trigger_off 0 touch_off 0 010 > 00339934 v 0000 @ 01641914 v 0000 + 13773539 n 0701 + 13426376 n 0401 + 00156390 n 0301 + 02678384 n 0201 + 00030358 n 0201 + 00045250 n 0202 + 04485226 n 0102 + 04485226 n 0101 02 + 08 00 + 11 00 | put in motion or move to act; "trigger a reaction"; "actuate the circuits" -01644050 36 v 02 induce 0 bring_on 0 005 @ 01627355 v 0000 + 00324013 a 0102 + 00159177 n 0101 + 00238527 n 0101 + 00159177 n 0102 02 + 08 00 + 11 00 | cause to arise; "induce a crisis" -01644238 36 v 01 bring_on 1 000 02 + 08 00 + 11 00 | cause to appear; "bring on the birthday cake" -01644339 36 v 01 precipitate 0 003 @ 01642924 v 0000 + 01270868 a 0104 + 05061149 n 0101 02 + 08 00 + 11 00 | bring about abruptly; "The crisis precipitated by Russia's revolution" -01644522 36 v 04 induce 1 stimulate 0 rush 0 hasten 0 003 @ 01642924 v 0000 + 00238527 n 0101 + 00159177 n 0102 02 + 08 00 + 11 00 | cause to occur rapidly; "the infection precipitated a high fever and allergic reactions" -01644746 36 v 05 realize 0 realise 0 actualize 0 actualise 0 substantiate 4 012 @ 01617192 v 0000 + 00931847 n 0404 + 01933731 a 0301 + 01933520 a 0301 + 00043765 a 0301 + 00931847 n 0303 + 00061917 n 0202 + 00931847 n 0202 + 00061917 n 0101 + 00931847 n 0101 ~ 01645157 v 0000 ~ 02144460 v 0000 01 + 08 00 | make real or concrete; give reality or substance to; "our ideas must be substantiated into actions" -01645157 36 v 01 incarnate 0 003 @ 01644746 v 0000 + 10418302 n 0102 ! 01645290 v 0101 02 + 08 00 + 11 00 | make concrete and real -01645290 36 v 01 disincarnate 0 002 @ 00547802 v 0000 ! 01645157 v 0101 01 + 11 00 | make immaterial; remove the real essence of -01645421 36 v 02 pioneer 0 open_up 0 002 @ 01642437 v 0000 + 10434725 n 0101 01 + 08 00 | open up an area or prepare a way; "She pioneered a graduate program for women students" -01645601 36 v 03 cause 0 do 2 make 8 016 @ 01617192 v 0000 + 00322457 a 0101 + 00042311 n 0102 + 07326557 n 0101 + 06740402 n 0101 + 00007347 n 0102 ~ 00701040 v 0000 ~ 01641914 v 0000 ~ 01642924 v 0000 ~ 01646075 v 0000 ~ 01646528 v 0000 ~ 01646866 v 0000 ~ 01649024 v 0000 ~ 01649999 v 0000 ~ 01650425 v 0000 ~ 01757338 v 0000 02 + 08 00 + 11 00 | give rise to; cause to happen or occur, not always intentionally; "cause a commotion"; "make a stir"; "cause an accident" -01646075 36 v 01 make f 002 @ 01645601 v 0000 ~ 01646300 v 0000 01 + 24 00 | compel or make somebody or something to act in a certain way; "People cannot be made to integrate just by passing a law!"; "Heat makes you sweat" -01646300 36 v 01 drive 0 004 $ 02505358 v 0000 $ 01516534 v 0000 @ 01646075 v 0000 + 00798245 n 0104 01 + 24 00 | compel somebody to do something, often against his own will or judgment; "She finally drove him to change jobs" -01646528 36 v 01 occasion 0 005 @ 01645601 v 0000 + 14485064 n 0101 + 09179264 n 0101 + 15245829 n 0101 ~ 01646682 v 0000 01 + 11 00 | give occasion to -01646682 36 v 01 inspire 0 002 @ 01646528 v 0000 + 05834567 n 0101 01 + 11 00 | supply the inspiration for; "The article about the artist inspired the exhibition of his recent work" -01646866 36 v 04 provoke 0 evoke 0 call_forth 1 kick_up 0 005 @ 01645601 v 0000 + 05827253 n 0201 + 09184975 n 0103 $ 01629958 v 0000 ~ 01647131 v 0000 02 + 08 00 + 11 00 | evoke or provoke to appear or occur; "Her behavior provoked a quarrel between the couple" -01647131 36 v 01 pick 0 001 @ 01646866 v 0000 01 + 08 00 | provoke; "pick a fight or a quarrel" -01647229 36 v 05 establish 0 found 0 plant 0 constitute 0 institute 1 009 @ 01641914 v 0000 + 00240184 n 0504 + 00237078 n 0401 + 00240184 n 0203 + 10107303 n 0201 + 00240184 n 0202 + 00237078 n 0102 ~ 01647543 v 0000 ~ 02396205 v 0000 01 + 08 00 | set up or lay the groundwork for; "establish a new department" -01647543 36 v 01 fix 1 001 @ 01647229 v 0000 02 + 08 00 + 11 00 | set or place definitely; "Let's fix the date for the party!" -01647672 36 v 02 establish 1 give 1 004 $ 01629000 v 0000 @ 01617192 v 0000 ~ 01618693 v 0000 ~ 01647867 v 0000 02 + 08 00 + 11 00 | bring about; "The trompe l'oeil-illusion establishes depth" -01647867 36 v 01 pacify 0 006 @ 01647672 v 0000 + 06773976 n 0103 + 14539524 n 0101 + 13970236 n 0101 + 06773976 n 0101 + 09952163 n 0103 01 + 08 00 | fight violence and try to establish peace in (a location); "The U.N. troops are working to pacify Bosnia" -01648126 36 v 02 stage 1 arrange 3 006 @ 01641914 v 0000 + 08646566 n 0101 + 10645611 n 0102 ~ 01648373 v 0000 ~ 01648684 v 0000 ~ 01648894 v 0000 01 + 08 00 | plan, organize, and carry out (an event); "the neighboring tribe staged an invasion" -01648373 36 v 01 dogfight 0 002 @ 01648126 v 0000 + 00971802 n 0101 01 + 08 00 | arrange for an illegal dogfight -01648488 36 v 01 concord 0 002 @ 01021629 v 0000 + 07180183 n 0102 01 + 08 00 | arrange by concord or agreement; "Concord the conditions for the marriage of the Prince of Wales with a commoner" -01648684 36 v 01 tee_up 0 001 @ 01648126 v 0000 01 + 08 00 | make detailed arrangements or preparations -01648790 36 v 01 prearrange 0 002 @ 01706129 v 0000 + 05795334 n 0101 01 + 08 00 | arrange beforehand -01648894 36 v 01 phase 0 002 @ 01648126 v 0000 + 15290337 n 0101 01 + 08 00 | arrange in phases or stages; "phase a withdrawal" -01649024 36 v 03 engender 0 breed 0 spawn 0 001 @ 01645601 v 0000 02 + 08 00 + 11 00 | call forth -01649124 36 v 01 mount 0 001 @ 01641914 v 0000 02 + 08 00 + 11 00 | put up or launch; "mount a campaign against pornography" -01649251 36 v 02 mount 1 put_on 0 002 @ 01651444 v 0000 ~ 01649482 v 0000 01 + 08 00 | prepare and supply with the necessary equipment for execution or performance; "mount a theater production"; "mount an attack"; "mount a play" -01649482 36 v 01 rerun 0 002 @ 01649251 v 0000 + 06620063 n 0101 01 + 08 00 | rerun a performance of a play, for example -01649605 36 v 01 riff 0 002 @ 01724459 v 0000 + 07045788 n 0101 01 + 02 00 | play riffs -01649695 36 v 01 misplay 0 001 @ 01724459 v 0000 02 + 02 00 + 08 00 | play incorrectly, e.g., play a wrong note -01649809 36 v 02 put_on 1 turn_in 0 001 @ 01617192 v 0000 01 + 08 00 | carry out (performances); "They turned in a splendid effort"; "They turned in top jobs for the second straight game" -01649999 36 v 06 motivate 0 actuate 2 propel 0 move 0 prompt 0 incite 0 013 $ 01767949 v 0000 $ 01771390 v 0000 @ 01645601 v 0000 + 07252764 n 0602 + 09184975 n 0602 + 00045250 n 0301 + 00030358 n 0201 + 00324195 a 0101 + 14578471 n 0101 + 00070641 n 0101 + 00023773 n 0101 + 00023773 n 0102 + 09179776 n 0103 05 + 08 00 + 09 00 + 10 00 + 11 00 + 24 00 | give an incentive for action; "This moved me to sacrifice my career" -01650425 36 v 02 impel 0 force 0 004 @ 01645601 v 0000 + 05194578 n 0201 + 00808940 a 0102 + 11447851 n 0103 01 + 24 00 | urge or force (a person) to an action; constrain or motivate -01650610 36 v 04 start 1 start_up 0 embark_on 0 commence 0 008 @ 00348746 v 0000 + 00235435 n 0403 + 00239910 n 0202 + 00235435 n 0102 + 15265518 n 0106 + 07325190 n 0101 ~ 02395782 v 0000 ~ 02425462 v 0000 02 + 08 00 + 11 00 | get off the ground; "Who started this company?"; "We embarked on an exciting enterprise"; "I start my day with a good breakfast"; "We began the new semester"; "The afternoon session begins at 4 PM"; "The blood shed started when the partisans launched a surprise attack" -01651110 36 v 02 sound_off 0 strike_up 1 004 @ 01725051 v 0000 ;c 07020895 n 0000 ;c 05718935 n 0000 ;c 00543233 n 0000 01 + 02 00 | start playing; "The musicians struck up a tune" -01651293 36 v 03 undertake 0 set_about 0 attempt 0 002 @ 01641914 v 0000 + 00795720 n 0101 02 + 08 00 + 33 00 | enter upon an activity or enterprise -01651444 36 v 06 organize 0 organise 0 prepare 0 devise 1 get_up 0 machinate 0 016 @ 01641914 v 0000 + 05908520 n 0602 + 10438172 n 0403 + 00923995 n 0401 + 00126830 a 0302 + 08008335 n 0202 + 00237078 n 0205 + 08008335 n 0101 + 00237078 n 0104 + 01136519 n 0101 ~ 01649251 v 0000 ~ 01651972 v 0000 ~ 01661472 v 0000 ~ 01665081 v 0000 ~ 01665332 v 0000 ~ 01758180 v 0000 01 + 08 00 | arrange by systematic planning and united effort; "machinate a plot"; "organize a strike"; "devise a plan to take over the director's office" -01651972 36 v 01 lay 0 001 @ 01651444 v 0000 01 + 08 00 | prepare or position for action or operation; "lay a fire"; "lay the foundation for a new health care plan" -01652139 36 v 02 bear 0 turn_out 0 007 @ 01617192 v 0000 ^ 02663340 v 0103 ~ 00345184 v 0000 ~ 01652429 v 0000 ~ 01652537 v 0000 ~ 01652652 v 0000 ~ 01652731 v 0000 01 + 11 00 | bring forth, "The apple tree bore delicious apples this year"; "The unidentified plant bore gorgeous flowers" -01652429 36 v 01 seed 0 003 @ 01652139 v 0000 + 11683989 n 0101 + 13135832 n 0101 01 + 01 00 | bear seeds -01652537 36 v 01 crop 0 002 @ 01652139 v 0000 + 13085864 n 0101 01 + 01 00 | yield crops; "This land crops well" -01652652 36 v 01 overbear 0 001 @ 01652139 v 0000 01 + 11 00 | bear too much -01652731 36 v 01 fruit 0 004 @ 01652139 v 0000 + 13134947 n 0101 + 14575849 n 0101 + 13086753 n 0101 01 + 01 00 | bear fruit; "the trees fruited early this year" -01652895 36 v 01 fruit 1 003 > 01652731 v 0000 + 13134947 n 0101 + 13086753 n 0101 01 + 08 00 | cause to bear fruit -01653013 36 v 02 create_from_raw_material 0 create_from_raw_stuff 0 018 @ 01617192 v 0000 ~ 00266081 v 0000 ~ 01633173 v 0000 ~ 01639105 v 0000 ~ 01639364 v 0000 ~ 01653873 v 0000 ~ 01659248 v 0000 ~ 01660976 v 0000 ~ 01663749 v 0000 ~ 01663920 v 0000 ~ 01664172 v 0000 ~ 01665638 v 0000 ~ 01671039 v 0000 ~ 01672753 v 0000 ~ 01673732 v 0000 ~ 01673891 v 0000 ~ 01674544 v 0000 ~ 01755504 v 0000 01 + 08 00 | make from scratch -01653442 36 v 03 manufacture 0 fabricate 1 construct 1 010 @ 01653873 v 0000 + 00751944 n 0203 + 00912001 n 0201 + 00924825 n 0201 + 00924825 n 0102 + 00923444 n 0102 + 10292316 n 0101 + 08060446 n 0101 ~ 01625891 v 0000 ~ 01654156 v 0000 02 + 08 00 + 11 00 | put together out of artificial or natural components or parts; "the company fabricates plastic chairs"; "They manufacture small toys"; He manufactured a popular cereal" -01653873 36 v 01 make b 007 @ 01653013 v 0000 + 00923995 n 0103 ~ 01626138 v 0000 ~ 01627105 v 0000 ~ 01653442 v 0000 ~ 01658188 v 0000 ~ 01659144 v 0000 02 + 08 00 + 11 00 | make by shaping or bringing together constituents; "make a dress"; "make a cake"; "make a wall of stones" -01654156 36 v 01 raft 0 002 @ 01653442 v 0000 + 04045397 n 0101 01 + 08 00 | make into a raft; "raft these logs" -01654271 36 v 03 forge 1 fake 0 counterfeit 0 009 @ 01619354 v 0000 + 10105085 n 0302 + 03562262 n 0301 + 10201535 n 0204 + 03318438 n 0201 + 00752298 n 0201 + 10105085 n 0101 + 03562262 n 0102 + 00768921 n 0101 01 + 08 00 | make a copy of with the intent to deceive; "he faked the signature"; "they counterfeited dollar bills"; "She forged a Green Card" -01654628 36 v 03 construct 0 build 0 make d 021 @ 01617192 v 0000 + 10284064 n 0301 + 05845140 n 0302 + 00923995 n 0303 + 09878275 n 0201 + 00911048 n 0202 + 00911048 n 0101 + 09878275 n 0102 ~ 00387919 v 0000 ~ 01271658 v 0000 ~ 01655221 v 0000 ~ 01655347 v 0000 ~ 01655639 v 0000 ~ 01655763 v 0000 ~ 01655902 v 0000 ~ 01656107 v 0000 ~ 01656233 v 0000 ~ 01661243 v 0000 $ 01685601 v 0000 ~ 01750895 v 0000 ~ 01757021 v 0000 02 + 08 00 + 02 02 | make by combining materials and parts; "this little pig made his house out of straw"; "Some eccentric constructed an electric brassiere warmer" -01655221 36 v 01 dry-wall 0 001 @ 01654628 v 0000 01 + 08 00 | construct with drywall; "dry-wall the basement of the house" -01655347 36 v 01 lock 4 003 @ 01654628 v 0000 + 03683079 n 0101 + 03683457 n 0101 01 + 02 00 | build locks in order to facilitate the navigation of vessels -01655505 36 v 02 build 9 establish a 001 @ 01617192 v 0000 01 + 08 00 | build or establish something abstract; "build a reputation" -01655639 36 v 01 wattle 0 003 @ 01654628 v 0000 ;c 00911048 n 0000 + 04564118 n 0101 01 + 08 00 | build of or with wattle -01655763 36 v 02 frame 0 frame_up 0 002 @ 01654628 v 0000 ;c 00911048 n 0000 01 + 08 00 | construct by fitting or uniting parts together -01655902 36 v 02 rebuild 0 reconstruct 0 004 @ 01654628 v 0000 ;c 00911048 n 0000 + 00269258 n 0201 + 00270186 n 0101 02 + 02 00 + 08 00 | build again; "The house was rebuild after it was hit by a bomb" -01656107 36 v 01 groin 0 002 @ 01654628 v 0000 ;c 00911048 n 0000 01 + 08 00 | build with groins; "The ceiling was groined" -01656233 36 v 01 cantilever 0 003 @ 01654628 v 0000 ;c 00610738 n 0000 + 02953056 n 0101 01 + 08 00 | construct with girders and beams such that only one end is fixed; "Frank Lloyd Wright liked to cantilever his buildings" -01656458 36 v 03 demolish 0 pulverize 0 pulverise 0 006 @ 01619929 v 0000 + 00218753 n 0302 + 00218753 n 0201 + 07334490 n 0102 + 01249483 n 0101 + 00218045 n 0104 02 + 08 00 + 11 00 | destroy completely; "the wrecking ball demolished the building"; "demolish your enemies"; "pulverize the rebellion before it gets out of hand" -01656788 36 v 06 assemble 0 piece 0 put_together 0 set_up 0 tack 5 tack_together 0 012 @ 01295275 v 0000 @ 01617192 v 0000 + 03932203 n 0201 + 07951464 n 0104 + 03533486 n 0102 ! 01657977 v 0101 ~ 01626420 v 0000 ~ 01657254 v 0000 ~ 01657524 v 0000 ~ 01657641 v 0000 ~ 01657828 v 0000 ~ 01661655 v 0000 03 + 08 00 + 10 00 + 11 00 | create by putting components or members together; "She pieced a quilt"; "He tacked together some verses"; "They set up a committee" -01657254 36 v 03 jumble 0 confuse 0 mix_up 0 006 $ 00619610 v 0000 @ 01656788 v 0000 + 00379754 n 0201 + 14500567 n 0102 + 05953416 n 0103 ~ 00620532 v 0000 01 + 08 00 | assemble without order or sense; "She jumbles the words when she is supposed to write a sentence" -01657524 36 v 01 reassemble 0 001 @ 01656788 v 0000 01 + 08 00 | assemble once again, after taking something apart -01657641 36 v 01 configure 0 002 @ 01656788 v 0000 + 05731779 n 0101 01 + 08 00 | set up for a particular purpose; "configure my new computer"; "configure a plane for a combat mission" -01657828 36 v 01 compound 0 004 @ 01656788 v 0000 + 14818238 n 0101 + 05870180 n 0101 + 00378985 n 0103 01 + 08 00 | create by mixing or combining -01657977 36 v 05 disassemble 0 dismantle 0 take_apart 0 break_up 0 break_apart 0 004 @ 01619929 v 0000 + 00912274 n 0202 + 00912274 n 0201 ! 01656788 v 0101 01 + 08 00 | take apart into its constituent pieces -01658188 36 v 02 fashion 0 forge 2 005 @ 01653873 v 0000 + 00923995 n 0102 ~ 01658444 v 0000 ~ 01658762 v 0000 ~ 01666327 v 0000 01 + 08 00 | make out of components (often in an improvising manner); "She fashioned a tent out of a sheet and a few sticks" -01658444 36 v 01 tie 0 002 @ 01658188 v 0000 + 00149084 n 0101 01 + 08 00 | make by tying pieces together; "The fishermen tied their flies" -01658586 36 v 03 recast 2 reforge 0 remodel 0 001 @ 01619725 v 0000 01 + 08 00 | cast or model anew; "She had to recast her image to please the electorate in her home state" -01658762 36 v 01 craft 0 007 @ 01658188 v 0000 + 05638063 n 0101 + 08436562 n 0101 + 00606370 n 0102 + 09975425 n 0102 ~ 01659007 v 0000 ~ 01757871 v 0000 01 + 08 00 | make by hand and with much skill; "The artisan crafted a complicated tool" -01659007 36 v 01 handcraft 0 002 @ 01658762 v 0000 + 03485655 n 0102 01 + 08 00 | make something by hand; "We handcraft all our paper" -01659144 36 v 01 cooper 0 002 @ 01653873 v 0000 + 09963773 n 0101 01 + 08 00 | make barrels and casks -01659248 36 v 06 shape 0 form 0 work c mold 1 mould 1 forge 3 032 @ 01653013 v 0000 + 13913566 n 0402 + 03384535 n 0201 + 03385117 n 0201 + 00237078 n 0203 + 00925207 n 0201 + 04677514 n 0102 + 10284064 n 0102 + 00925207 n 0102 ~ 01256157 v 0000 ~ 01256374 v 0000 ~ 01260291 v 0000 ~ 01262113 v 0000 ~ 01554799 v 0000 ~ 01624169 v 0000 ~ 01624321 v 0000 ~ 01624568 v 0000 ~ 01624743 v 0000 ~ 01624897 v 0000 ~ 01660082 v 0000 ~ 01660252 v 0000 ~ 01660386 v 0000 ~ 01660640 v 0000 ~ 01660772 v 0000 ~ 01660870 v 0000 ~ 01661096 v 0000 ~ 01662771 v 0000 ~ 01663443 v 0000 ~ 01663580 v 0000 $ 01668603 v 0000 ~ 01684337 v 0000 ~ 01697027 v 0000 02 + 08 00 + 21 00 | make something, usually for a specific function; "She molded the rice balls carefully"; "Form cylinders from the dough"; "shape a figure"; "Work the metal into a sword" -01660082 36 v 01 preform 0 003 @ 01659248 v 0000 + 05992949 n 0101 $ 01660252 v 0000 02 + 08 00 + 11 00 | form or shape beforehand or determine the shape of beforehand -01660252 36 v 01 preform 1 002 $ 01660082 v 0000 @ 01659248 v 0000 01 + 08 00 | form into a shape resembling the final, desired one -01660386 36 v 01 mound 0 004 @ 01659248 v 0000 + 03792048 n 0101 + 09326662 n 0102 ~ 01660547 v 0000 01 + 08 00 | form into a rounded elevation; "mound earth" -01660547 36 v 01 mound_over 0 001 @ 01660386 v 0000 02 + 08 00 + 11 00 | form a mound over -01660640 36 v 01 hill 0 004 @ 01659248 v 0000 + 09303008 n 0101 + 03792048 n 0102 + 03792334 n 0102 01 + 08 00 | form into a hill -01660772 36 v 01 roughcast 0 002 @ 01659248 v 0000 + 04112921 n 0101 01 + 08 00 | shape roughly -01660870 36 v 02 reshape 0 remold 1 001 @ 01659248 v 0000 01 + 08 00 | shape again or shape differently -01660976 36 v 01 dip 0 002 @ 01653013 v 0000 + 03203089 n 0101 01 + 08 00 | place (candle wicks) into hot, liquid wax -01661096 36 v 01 sinter 0 001 @ 01659248 v 0000 01 + 08 00 | cause (ores or powdery metals) to become a coherent mass by heating without melting -01661243 36 v 05 raise 2 erect 0 rear 0 set_up 1 put_up 0 006 @ 01654628 v 0000 ;c 00911048 n 0000 + 03295140 n 0201 + 00911752 n 0202 + 00911752 n 0201 ! 01661804 v 0101 01 + 08 00 | construct, build, or erect; "Raise a barn" -01661472 36 v 01 set_up 2 001 @ 01651444 v 0000 02 + 08 00 + 11 00 | begin, or enable someone else to begin, a venture by providing the means, logistics, etc.; "set up an election" -01661655 36 v 01 rig_up 0 001 @ 01656788 v 0000 01 + 08 00 | erect or construct, especially as a temporary measure; "Can he rig up a P.A. system?" -01661804 36 v 07 level 0 raze 0 rase 0 dismantle 2 tear_down 0 take_down 0 pull_down 0 007 @ 01619929 v 0000 + 07335097 n 0201 + 00218045 n 0201 + 03536348 n 0102 + 03658858 n 0101 ! 01661243 v 0101 ~ 01575388 v 0000 02 + 08 00 + 11 00 | tear down so as to make flat with the ground; "The building was levelled" -01662118 36 v 05 uproot 0 eradicate 0 extirpate 0 root_out 0 exterminate 0 005 @ 01619929 v 0000 + 00115803 n 0301 + 07331013 n 0201 + 10074339 n 0203 + 10008716 n 0105 02 + 08 00 + 09 00 | destroy completely, as if down to the roots; "the vestiges of political democracy were soon uprooted" "root out corruption" -01662434 36 v 01 dilapidate 0 003 @ 01619929 v 0000 + 14562541 n 0102 + 13466312 n 0101 02 + 08 00 + 11 00 | bring into a condition of decay or partial ruin by neglect or misuse -01662614 36 v 02 press 0 press_out 0 003 @ 01662771 v 0000 + 03999992 n 0101 + 04000867 n 0101 02 + 08 00 + 11 00 | press from a plastic; "press a record" -01662771 36 v 03 cast 0 mold 0 mould 0 016 @ 01659248 v 0000 + 03779621 n 0302 + 03779621 n 0304 + 00844461 a 0202 + 03779621 n 0201 + 03779370 n 0201 + 13913566 n 0202 + 03779621 n 0203 + 00909899 n 0201 + 02979662 n 0101 + 09609746 n 0101 + 02979662 n 0102 + 00909899 n 0102 ~ 01662614 v 0000 ~ 01663205 v 0000 ~ 01663339 v 0000 01 + 08 00 | form by pouring (e.g., wax or hot metal) into a cast or mold; "cast a bronze sculpture" -01663205 36 v 03 recast 1 remold 0 remould 0 001 @ 01662771 v 0000 01 + 08 00 | cast again; "The bell cracked and had to be recast" -01663339 36 v 01 sand_cast 0 001 @ 01662771 v 0000 01 + 08 00 | pour molten metal into a mold of sand -01663443 36 v 01 throw 0 002 @ 01659248 v 0000 + 10460806 n 0102 01 + 08 00 | make on a potter's wheel; "she threw a beautiful teapot" -01663580 36 v 03 handbuild 0 hand-build 0 coil 0 001 @ 01659248 v 0000 01 + 08 00 | make without a potter's wheel; "This famous potter hand-builds all of her vessels" -01663749 36 v 01 bake 0 004 @ 01653013 v 0000 + 09833651 n 0101 + 09833536 n 0101 + 00715843 n 0101 02 + 02 00 + 08 00 | prepare with dry heat in an oven; "bake a cake" -01663920 36 v 01 brew 0 007 * 00458471 v 0000 @ 01653013 v 0000 + 07886572 n 0101 + 09874118 n 0101 + 09874014 n 0101 + 07886572 n 0102 + 02897237 n 0101 02 + 01 00 + 08 00 | prepare by brewing; "people have been brewing beer for thousands of years" -01664172 36 v 05 cook 0 fix 0 ready 0 make 7 prepare 1 018 @ 01653013 v 0000 + 00243918 n 0503 + 09963320 n 0101 + 03101156 n 0101 + 00243918 n 0101 + 00243918 n 0102 ~ 00212414 v 0000 ~ 00542809 v 0000 ~ 01664704 v 0000 ~ 01664847 v 0000 ~ 01664981 v 0000 ~ 01665185 v 0000 ~ 01665507 v 0000 ~ 01665836 v 0000 ~ 01666002 v 0000 ~ 01666131 v 0000 ~ 01679669 v 0000 $ 01755504 v 0000 01 + 08 00 | prepare for eating by applying heat; "Cook me dinner, please"; "can you make me an omelette?"; "fix breakfast for the guests, please" -01664704 36 v 01 deglaze 0 001 @ 01664172 v 0000 01 + 08 00 | dissolve cooking juices or solid food in (a pan) by adding liquid and stirring -01664847 36 v 02 scallop 1 escallop 0 001 @ 01664172 v 0000 01 + 08 00 | bake in a sauce, milk, etc., often with breadcrumbs on top -01664981 36 v 01 flambe 0 001 @ 01664172 v 0000 01 + 08 00 | pour liquor over and ignite (a dish) -01665081 36 v 01 sandwich 0 002 @ 01651444 v 0000 + 07695965 n 0101 01 + 08 00 | make into a sandwich -01665185 36 v 01 put_on 2 002 @ 01664172 v 0000 ;c 00243918 n 0000 01 + 08 00 | put on the stove or ready for cooking; "put on the tea, please!" -01665332 36 v 01 spatchcock 1 003 @ 01651444 v 0000 ;c 00243918 n 0000 + 07645886 n 0101 01 + 08 00 | prepare for eating if or as if a spatchcock; "spatchcock a guinea hen" -01665507 36 v 01 devil 0 002 @ 01664172 v 0000 ;c 00243918 n 0000 01 + 08 00 | coat or stuff with a spicy paste; "devilled eggs" -01665638 36 v 01 cook 1 006 * 00322847 v 0000 @ 01653013 v 0000 ;c 00243918 n 0000 + 09963320 n 0101 + 00243918 n 0101 + 00243918 n 0102 01 + 02 00 | prepare a hot meal; "My husband doesn't cook" -01665836 36 v 01 precook 0 002 @ 01664172 v 0000 ;c 00243918 n 0000 01 + 08 00 | cook beforehand so that the actual preparation won't take long; "precook the rice" -01666002 36 v 02 whip_up 0 whomp_up 0 002 @ 01664172 v 0000 ;c 00243918 n 0000 01 + 08 00 | prepare or cook quickly or hastily -01666131 36 v 02 concoct 1 cook_up 1 004 @ 01664172 v 0000 ;c 00243918 n 0000 + 00926668 n 0102 + 07882497 n 0101 01 + 08 00 | prepare or cook by mixing ingredients; "concoct a strange mixture" -01666327 36 v 03 sew 0 tailor 0 tailor-make 0 007 @ 01658188 v 0000 + 10689564 n 0201 + 00618436 n 0201 + 10584318 n 0101 + 04179385 n 0101 ~ 01666604 v 0000 ~ 01667304 v 0000 02 + 02 00 + 08 00 | create (clothes) with cloth; "Can the seamstress sew me a suit by next week?" -01666604 36 v 01 run_up 0 001 @ 01666327 v 0000 01 + 01 00 | make by sewing together quickly; "run up a skirt" -01666717 36 v 02 cut 0 tailor 1 004 @ 01640550 v 0000 ;c 05750657 n 0000 + 10689564 n 0201 ~ 01559230 v 0000 01 + 08 00 | style and tailor in a certain fashion; "cut a dress" -01666894 36 v 01 style 0 006 @ 01617192 v 0000 ;c 05750657 n 0000 + 05844105 n 0101 + 10155849 n 0103 + 10155849 n 0104 ~ 00039267 v 0000 01 + 08 00 | make consistent with a certain fashion or style; "Style my hair"; "style the dress" -01667132 36 v 01 alter 0 004 * 01666327 v 0000 @ 00126264 v 0000 + 00349295 a 0101 + 00199707 n 0101 01 + 08 00 | make an alteration to; "This dress needs to be altered" -01667304 36 v 01 quilt 0 004 * 00321486 v 0000 @ 01666327 v 0000 + 04033995 n 0101 + 04034477 n 0101 01 + 08 00 | create by stitching together -01667449 36 v 01 quilt 1 004 @ 01291069 v 0000 * 01329239 v 0000 + 04033995 n 0101 + 04034477 n 0101 01 + 08 00 | stitch or sew together; "quilt the skirt" -01667607 36 v 02 embroider 0 broider 0 007 * 01329239 v 0000 @ 01675963 v 0000 + 10051552 n 0101 + 03282933 n 0101 ~ 01667816 v 0000 ~ 01668144 v 0000 ~ 01668278 v 0000 01 + 08 00 | decorate with needlework -01667816 36 v 02 faggot 0 fagot 0 001 @ 01667607 v 0000 01 + 02 00 | ornament or join (fabric) by faggot stitch; "He fagotted the blouse for his wife" -01667969 36 v 01 stick 3 001 @ 01675963 v 0000 01 + 08 00 | cover and decorate with objects that pierce the surface; "stick some feathers in the turkey before you serve it" -01668144 36 v 01 purl 0 003 $ 01668278 v 0000 @ 01667607 v 0000 + 04026304 n 0101 01 + 08 00 | embroider with gold or silver thread -01668278 36 v 01 purl 1 003 @ 01667607 v 0000 + 04026304 n 0101 $ 01668144 v 0000 01 + 08 00 | edge or border with gold or silver embroidery -01668421 36 v 01 illustrate 1 004 @ 01675963 v 0000 + 06999233 n 0101 + 03561345 n 0101 + 09812068 n 0101 01 + 08 00 | supply with illustrations; "illustrate a book with drawings" -01668603 36 v 03 work 0 work_on 0 process 0 011 $ 01659248 v 0000 @ 00382635 v 0000 + 01023820 n 0302 + 01822563 a 0105 ~ 01668958 v 0000 ~ 01669070 v 0000 ~ 01669174 v 0000 ~ 01669285 v 0000 ~ 01669419 v 0000 ~ 01669547 v 0000 ~ 01740608 v 0000 01 + 08 00 | shape, form, or improve a material; "work stone into tools"; "process iron"; "work the metal" -01668958 36 v 01 hot-work 0 001 @ 01668603 v 0000 01 + 08 00 | roll, press, forge, or shape (metal) while hot -01669070 36 v 02 coldwork 0 cold_work 0 001 @ 01668603 v 0000 01 + 08 00 | shape (metal) without heat -01669174 36 v 01 overwork 0 001 @ 01668603 v 0000 01 + 08 00 | use too much; "This play has been overworked" -01669285 36 v 03 rework 0 make_over 2 retread 0 001 @ 01668603 v 0000 01 + 08 00 | use again in altered form; "retread an old plot" -01669419 36 v 01 rack 0 003 * 01449591 v 0000 @ 01668603 v 0000 + 04038727 n 0101 01 + 08 00 | work on a rack; "rack leather" -01669547 36 v 01 tool 0 002 @ 01668603 v 0000 + 04451818 n 0101 01 + 08 00 | work with a tool -01669643 36 v 01 garland 0 002 @ 01675963 v 0000 + 04606014 n 0102 01 + 08 00 | adorn with bands of flowers or leaves; "They garlanded the statue" -01669792 36 v 02 fledge 0 flight 0 001 @ 01675963 v 0000 01 + 08 00 | decorate with feathers; "fledge an arrow" -01669906 36 v 02 spangle 0 bespangle 0 002 @ 01675963 v 0000 + 04173698 n 0102 01 + 08 00 | decorate with spangles; "the star-spangled banner" -01670051 36 v 01 foliate 1 003 @ 01675963 v 0000 + 03377077 n 0102 + 03377077 n 0101 01 + 08 00 | decorate with leaves -01670172 36 v 01 flag 0 002 @ 01675963 v 0000 + 03354903 n 0101 01 + 08 00 | decorate with flags; "the building was flagged for the holiday" -01670315 36 v 04 caparison 0 bard 0 barde 0 dress_up 0 003 @ 01675963 v 0000 + 02792305 n 0201 + 02955540 n 0101 01 + 08 00 | put a caparison on; "caparison the horses for the festive occasion" -01670511 36 v 01 bead 0 002 @ 01675963 v 0000 + 02815071 n 0101 01 + 08 00 | decorate by sewing beads onto; "bead the wedding gown" -01670645 36 v 01 pipe 1 003 * 01666327 v 0000 @ 01675963 v 0000 + 03947681 n 0101 01 + 08 00 | trim with piping; "pipe the skirt" -01670777 36 v 01 applique 0 003 * 01666327 v 0000 @ 01675963 v 0000 + 02730437 n 0101 01 + 08 00 | sew on as a decoration -01670901 36 v 01 macrame 0 002 @ 01673732 v 0000 + 03703730 n 0101 02 + 02 00 + 08 00 | make knotted patterns; "macrame a plant holder" -01671039 36 v 01 knit 0 011 * 01329239 v 0000 @ 01653013 v 0000 ;c 00714944 n 0000 + 03624966 n 0101 + 03625226 n 0101 + 03625355 n 0101 + 10239619 n 0101 + 03624966 n 0102 + 00909471 n 0101 ~ 01671333 v 0000 ~ 01671755 v 0000 02 + 02 00 + 08 00 | make (textiles) by knitting; "knit a scarf" -01671333 36 v 01 purl 2 003 @ 01671039 v 0000 ;c 00714944 n 0000 + 04026180 n 0101 02 + 02 00 + 08 00 | knit with a purl stitch -01671463 36 v 01 cast_on 0 003 @ 01329239 v 0000 ;c 00714944 n 0000 ! 01671609 v 0101 01 + 08 00 | make the first row of stitches when knitting -01671609 36 v 01 cast_off 0 003 @ 01329239 v 0000 ;c 00714944 n 0000 ! 01671463 v 0101 01 + 08 00 | make the last row of stitches when knitting -01671755 36 v 01 rib 0 002 @ 01671039 v 0000 ;c 00714944 n 0000 01 + 08 00 | form vertical ribs by knitting; "A ribbed sweater" -01671885 36 v 01 purl_stitch 0 003 @ 01672014 v 0000 ;c 00714944 n 0000 + 04026180 n 0102 01 + 08 00 | make with purl stitches -01672014 36 v 02 knit 1 entwine 0 004 @ 01291069 v 0000 + 03624966 n 0101 ~ 01671885 v 0000 ~ 01673472 v 0000 02 + 08 00 + 21 00 | tie or link together -01672168 36 v 02 web 0 net 0 007 @ 01673891 v 0000 + 03819595 n 0201 + 00909386 n 0201 + 09477037 n 0101 + 08434259 n 0102 + 04568713 n 0101 + 04568841 n 0101 01 + 08 00 | construct or form a web, as if by weaving -01672384 36 v 01 loom 0 001 @ 01673891 v 0000 01 + 01 00 | weave on a loom; "materials loomed in Egypt" -01672490 36 v 02 crochet 0 hook 0 005 @ 01673472 v 0000 ;c 00714944 n 0000 + 03532342 n 0201 + 03132879 n 0102 $ 01672753 v 0000 01 + 08 00 | make a piece of needlework by interlocking and looping thread with a hooked needle; "She sat there crocheting all day" -01672753 36 v 01 crochet 1 008 $ 01672490 v 0000 @ 01653013 v 0000 ;c 00714944 n 0000 + 03132879 n 0101 + 00909565 n 0101 ~ 01673007 v 0000 ~ 01673137 v 0000 ~ 01673305 v 0000 02 + 02 00 + 08 00 | create by looping or crocheting; "crochet a bedspread" -01673007 36 v 01 shell_stitch 0 003 @ 01672753 v 0000 ;c 00714944 n 0000 + 04191502 n 0101 01 + 08 00 | make by shell stitching -01673137 36 v 02 double_crochet 0 double_stitch 0 004 @ 01672753 v 0000 ;c 00714944 n 0000 + 03226743 n 0202 + 03226743 n 0101 01 + 08 00 | make by double stitching -01673305 36 v 02 single_crochet 0 single_stitch 0 004 @ 01672753 v 0000 ;c 00714944 n 0000 + 04222594 n 0202 + 04222594 n 0101 01 + 08 00 | make by single stitching -01673472 36 v 02 loop 0 intertwine 0 004 @ 01672014 v 0000 + 13875571 n 0101 ~ 01672490 v 0000 ~ 01673630 v 0000 01 + 08 00 | make a loop in; "loop a rope" -01673630 36 v 01 noose 0 002 @ 01673472 v 0000 + 03829563 n 0101 01 + 08 00 | make a noose in or of -01673732 36 v 01 knot 0 003 @ 01653013 v 0000 + 13885836 n 0101 ~ 01670901 v 0000 01 + 08 00 | make into knots; make knots out of; "She knotted her fingers" -01673891 36 v 02 weave 0 tissue 0 011 @ 01653013 v 0000 ;c 00714944 n 0000 + 04568298 n 0101 + 10772190 n 0101 + 00909281 n 0101 ~ 01672168 v 0000 ~ 01672384 v 0000 ~ 01674243 v 0000 ~ 01674375 v 0000 ~ 01674717 v 0000 ~ 01674938 v 0000 01 + 08 00 | create a piece of cloth by interlacing strands of fabric, such as wool or cotton; "tissue textiles" -01674243 36 v 01 brocade 0 003 @ 01673891 v 0000 ;c 00714944 n 0000 + 02904803 n 0101 01 + 08 00 | weave a design into (textiles) -01674375 36 v 01 lace 0 003 @ 01673891 v 0000 ;c 00714944 n 0000 + 03631177 n 0101 01 + 02 00 | do lacework; "The Flemish women were lacing in front of the cathedral" -01674544 36 v 02 tat 0 intertwine 1 004 * 01673732 v 0000 @ 01653013 v 0000 ;c 00714944 n 0000 + 00909672 n 0102 02 + 02 00 + 08 00 | make lacework by knotting or looping -01674717 36 v 03 braid 0 lace 1 plait 0 006 @ 01673891 v 0000 ;c 00714944 n 0000 + 03965907 n 0302 + 10438042 n 0301 + 03631177 n 0201 + 02889035 n 0101 01 + 08 00 | make by braiding or interlacing; "lace a tablecloth" -01674938 36 v 01 twill 0 003 @ 01673891 v 0000 + 04503155 n 0101 + 04503269 n 0101 01 + 08 00 | weave diagonal lines into (textiles) -01675073 36 v 01 strike 0 002 @ 01617192 v 0000 $ 00143540 v 0000 02 + 08 00 + 11 00 | produce by ignition or a blow; "strike fire from the flintstone"; "strike a match" -01675245 36 v 02 forge 0 hammer 0 008 $ 01416539 v 0000 @ 01624897 v 0000 + 03481172 n 0201 + 03383646 n 0101 + 10105260 n 0101 + 00925622 n 0101 ~ 01675522 v 0000 ~ 01675667 v 0000 01 + 08 00 | create by hammering; "hammer the silver into a bowl"; "forge a pair of tongues" -01675522 36 v 01 foliate 0 003 @ 01675245 v 0000 + 03375694 n 0101 + 00924438 n 0101 01 + 08 00 | hammer into thin flat foils; "foliate metal" -01675667 36 v 01 dropforge 0 001 @ 01675245 v 0000 01 + 08 00 | forge with a dropforge; "drop-force the metal" -01675780 36 v 02 extrude 0 squeeze_out 0 003 @ 01621555 v 0000 + 01355556 a 0101 + 00358702 n 0101 02 + 08 00 + 11 00 | form or shape by forcing through an opening; "extrude steel" -01675963 36 v 06 decorate 0 adorn 0 grace 0 ornament 0 embellish 0 beautify 0 058 @ 00126264 v 0000 + 00261604 n 0601 + 04683814 n 0601 + 00262743 n 0502 + 00262743 n 0401 + 03169390 n 0402 + 05003590 n 0301 + 00262596 n 0201 + 01091234 a 0102 + 03579355 n 0102 + 03169390 n 0101 + 00262249 n 0101 + 09998907 n 0101 ~ 01517055 v 0000 ~ 01517355 v 0000 ~ 01519727 v 0000 ~ 01667607 v 0000 ~ 01667969 v 0000 ~ 01668421 v 0000 ~ 01669643 v 0000 ~ 01669792 v 0000 ~ 01669906 v 0000 ~ 01670051 v 0000 ~ 01670172 v 0000 ~ 01670315 v 0000 ~ 01670511 v 0000 ~ 01670645 v 0000 ~ 01670777 v 0000 ~ 01677242 v 0000 ~ 01677387 v 0000 ~ 01677509 v 0000 ~ 01677716 v 0000 ~ 01677858 v 0000 ~ 01677989 v 0000 ~ 01678140 v 0000 ~ 01678279 v 0000 ~ 01678407 v 0000 ~ 01678519 v 0000 ~ 01678685 v 0000 ~ 01678957 v 0000 ~ 01679106 v 0000 ~ 01679254 v 0000 ~ 01679339 v 0000 ~ 01679433 v 0000 ~ 01679806 v 0000 ~ 01679980 v 0000 ~ 01680267 v 0000 ~ 01681723 v 0000 ~ 01682039 v 0000 ~ 01682761 v 0000 ~ 01683101 v 0000 ~ 01683758 v 0000 ~ 01684180 v 0000 ~ 01696648 v 0000 ~ 01751021 v 0000 ~ 01751722 v 0000 ~ 01751836 v 0000 $ 02749247 v 0000 02 + 08 00 + 11 00 | make more attractive by adding ornament, colour, etc.; "Decorate the room for the party"; "beautify yourself for the special day" -01677242 36 v 02 gild_the_lily 0 paint_the_lily 0 001 @ 01675963 v 0000 01 + 02 00 | adorn unnecessarily (something that is already beautiful) -01677387 36 v 01 vermiculate 0 002 @ 01675963 v 0000 + 04528490 n 0101 01 + 08 00 | decorate with wavy or winding lines -01677509 36 v 01 smock 0 003 @ 01675963 v 0000 + 04246271 n 0101 + 03258730 n 0104 01 + 08 00 | embellish by sewing in straight lines crossing each other diagonally; "The folk dancers wore smocked shirts" -01677716 36 v 01 hang 0 002 @ 01675963 v 0000 + 03491178 n 0101 01 + 08 00 | decorate or furnish with something suspended; "Hang wallpaper" -01677858 36 v 01 prank 0 001 @ 01675963 v 0000 01 + 08 00 | dress or decorate showily or gaudily; "Roses were pranking the lawn" -01677989 36 v 01 tinsel 0 003 @ 01675963 v 0000 + 04440059 n 0101 + 04440210 n 0101 01 + 08 00 | adorn with tinsel; "snow flakes tinseled the trees" -01678140 36 v 01 tart_up 0 001 @ 01675963 v 0000 01 + 08 00 | decorate in a cheap and flashy way; "the small-town bar was all tarted up" -01678279 36 v 01 stucco 0 002 @ 01675963 v 0000 + 15062057 n 0101 01 + 08 00 | decorate with stucco work; "stuccoed ceilings" -01678407 36 v 01 redecorate 0 001 @ 01675963 v 0000 01 + 08 00 | redo the decoration of an apartment or house -01678519 36 v 01 panel 0 004 @ 01675963 v 0000 + 03882058 n 0101 + 03882611 n 0102 + 03882611 n 0101 01 + 08 00 | decorate with panels; "panel the walls with wood" -01678685 36 v 02 bejewel 0 jewel 0 008 @ 01675963 v 0000 + 03596787 n 0201 + 10221777 n 0202 + 10221777 n 0201 + 10221956 n 0203 + 10221956 n 0202 + 03597469 n 0201 + 03597469 n 0202 03 + 08 00 + 09 00 + 10 00 | adorn or decorate with precious stones; "jeweled dresses" -01678957 36 v 02 fillet 0 filet 0 003 @ 01675963 v 0000 + 03337727 n 0201 + 04383696 n 0103 01 + 08 00 | decorate with a lace of geometric designs -01679106 36 v 01 scallop 0 002 @ 01675963 v 0000 + 13874558 n 0101 01 + 08 00 | decorate an edge with scallops; "the dress had a scalloped skirt" -01679254 36 v 01 bedizen 0 001 @ 01675963 v 0000 01 + 08 00 | decorate tastelessly -01679339 36 v 01 dress_ship 0 001 @ 01675963 v 0000 01 + 02 00 | decorate a ship with flags -01679433 36 v 03 trim 0 garnish 0 dress 0 006 @ 01675963 v 0000 + 03420440 n 0201 + 07621618 n 0201 + 04484160 n 0102 $ 00542809 v 0000 $ 01364184 v 0000 02 + 08 00 + 11 00 | decorate (food), as with parsley or other ornamental foods -01679669 36 v 01 lard 0 003 @ 01664172 v 0000 ;c 00243918 n 0000 + 07672421 n 0101 01 + 08 00 | prepare or cook with lard; "lard meat" -01679806 36 v 01 trim 1 003 @ 01675963 v 0000 + 04484160 n 0102 + 04484160 n 0101 01 + 08 00 | decorate, as with ornaments; "trim the christmas tree"; "trim a shop window" -01679980 36 v 03 deck 0 bedight 0 bedeck 0 002 @ 01675963 v 0000 ~ 01680132 v 0000 03 + 08 00 + 17 00 + 21 00 | decorate; "deck the halls with holly" -01680132 36 v 01 plume 0 003 @ 01679980 v 0000 + 03969998 n 0101 + 01896031 n 0102 01 + 08 00 | deck with a plume; "a plumed helmet" -01680267 36 v 01 festoon 0 004 @ 01675963 v 0000 + 03330274 n 0101 + 03330441 n 0101 + 03330274 n 0102 01 + 08 00 | decorate with strings of flowers; "The public buildings were festooned for the holiday" -01680473 36 v 02 sensualize 0 carnalize 0 001 @ 01686132 v 0000 02 + 08 00 + 09 00 | represent materialistically, as in a painting or a sculpture -01680621 36 v 01 silhouette 0 002 @ 01686132 v 0000 + 04219277 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | represent by a silhouette -01680756 36 v 02 animalize 0 animalise 0 003 @ 01686132 v 0000 + 00015388 n 0201 + 00015388 n 0101 02 + 08 00 + 09 00 | represent in the form of an animal -01680913 36 v 01 profile 0 002 @ 01686132 v 0000 + 08613202 n 0101 02 + 08 00 + 09 00 | represent in profile, by drawing or painting -01681048 36 v 01 finger-paint 0 004 @ 01684899 v 0000 ;c 00933420 n 0000 + 03342127 n 0101 + 00718066 n 0101 02 + 02 00 + 08 00 | apply colors with one's fingers -01681212 36 v 01 stipple 2 002 @ 01684899 v 0000 + 10657165 n 0101 01 + 08 00 | apply (paint) in small dots or strokes -01681333 36 v 01 tattoo 0 004 * 01440801 v 0000 @ 00286008 v 0000 + 00263353 n 0101 + 04395651 n 0101 02 + 09 00 + 19 00 | stain (skin) with indelible color -01681492 36 v 01 marble 0 003 @ 00286008 v 0000 ;c 00714944 n 0000 + 14947807 n 0101 01 + 08 00 | paint or stain like marble; "marble paper" -01681635 36 v 01 bodypaint 0 001 @ 01684899 v 0000 01 + 09 00 | apply paint to a body -01681723 36 v 01 enamel 0 006 * 00320536 v 0000 @ 01675963 v 0000 ;c 00714944 n 0000 + 15110454 n 0101 + 05308655 n 0101 + 03284743 n 0101 01 + 08 00 | coat, inlay, or surface with enamel -01681913 36 v 01 smelt 0 003 * 00371264 v 0000 @ 01621555 v 0000 + 04246156 n 0101 01 + 08 00 | extract (metals) by heating -01682039 36 v 01 inlay 0 005 @ 01675963 v 0000 ;c 00714944 n 0000 + 03572449 n 0101 ~ 01682234 v 0000 ~ 01682446 v 0000 01 + 08 00 | decorate the surface of by inserting wood, stone, and metal -01682234 36 v 01 hatch 3 003 @ 01682039 v 0000 ;c 00714944 n 0000 + 04681797 n 0101 01 + 08 00 | inlay with narrow strips or lines of a different substance such as gold or silver, for the purpose of decorating -01682446 36 v 01 damascene 0 003 @ 01682039 v 0000 ;c 00714944 n 0000 + 03160593 n 0101 01 + 08 00 | inlay metal with gold and silver -01682582 36 v 01 gloss 0 005 * 01249724 v 0000 @ 01245637 v 0000 + 04955160 n 0102 ^ 02516255 v 0101 ^ 02148109 v 0102 01 + 08 00 | give a shine or gloss to, usually by rubbing -01682761 36 v 01 lacquer 0 005 @ 01675963 v 0000 ;c 00714944 n 0000 + 03631811 n 0101 + 14928729 n 0101 ~ 01682946 v 0000 01 + 08 00 | coat with lacquer; "A lacquered box from China" -01682946 36 v 01 japan 0 004 @ 01682761 v 0000 ;c 00714944 n 0000 + 03593222 n 0101 + 03593362 n 0101 01 + 08 00 | coat with a lacquer, as done in Japan -01683101 36 v 03 gild 0 begild 0 engild 0 003 @ 01675963 v 0000 + 10129585 n 0101 + 03437430 n 0102 01 + 08 00 | decorate with, or as if with, gold leaf or liquid gold -01683271 36 v 01 fresco 0 004 @ 01684899 v 0000 ;c 00933420 n 0000 + 00937105 n 0101 + 03395630 n 0101 01 + 08 00 | paint onto wet plaster on a wall -01683422 36 v 01 distemper 0 005 @ 01684899 v 0000 ;c 00933420 n 0000 + 00936901 n 0101 + 03212535 n 0101 + 14264042 n 0101 01 + 08 00 | paint with distemper -01683582 36 v 03 blueprint 0 draft 5 draught 0 005 @ 01639714 v 0000 + 03230785 n 0201 + 00608037 n 0201 + 05902327 n 0101 + 02856109 n 0101 01 + 08 00 | make a blueprint of -01683758 36 v 01 illuminate 0 005 * 01684663 v 0000 @ 01675963 v 0000 ;c 00933420 n 0000 + 03769397 n 0102 ~ 01683957 v 0000 01 + 08 00 | add embellishments and paintings to (medieval manuscripts) -01683957 36 v 02 miniate 1 rubricate 0 003 @ 01683758 v 0000 ;c 00933420 n 0000 + 06652712 n 0201 01 + 08 00 | decorate (manuscripts) with letters painted red; "In this beautiful book, all the place names are rubricated" -01684180 36 v 02 emblazon 0 blazon 0 004 @ 01675963 v 0000 ;c 00933420 n 0000 + 03058726 n 0204 + 03058726 n 0203 01 + 08 00 | decorate with heraldic arms -01684337 36 v 02 sculpt 0 sculpture 0 009 @ 01659248 v 0000 ;c 00933420 n 0000 + 00937656 n 0201 + 04157320 n 0201 + 10566072 n 0202 + 04157320 n 0101 + 00937656 n 0101 + 10566072 n 0101 $ 01551871 v 0000 02 + 02 00 + 08 00 | create by shaping stone or wood or any other hard material; "sculpt a swan out of a block of ice" -01684663 36 v 01 paint 0 007 @ 01686132 v 0000 ;c 00933420 n 0000 + 03875218 n 0101 + 10391653 n 0101 + 03876519 n 0101 + 00936620 n 0101 ~ 01685797 v 0000 02 + 08 00 + 09 00 | make a painting of; "He painted his mistress many times" -01684899 36 v 01 paint 1 015 @ 01685313 v 0000 ;c 00933420 n 0000 + 03875218 n 0101 + 10391653 n 0101 + 03876519 n 0101 + 00936620 n 0101 ~ 01681048 v 0000 ~ 01681212 v 0000 ~ 01681635 v 0000 ~ 01683271 v 0000 ~ 01683422 v 0000 ~ 01685960 v 0000 ~ 01695567 v 0000 ~ 01695773 v 0000 ~ 01696435 v 0000 02 + 02 00 + 08 00 | make a painting; "he painted all day in the garden"; "He painted a painting of the garden" -01685313 36 v 01 create 1 008 @ 02367363 v 0000 + 00585202 a 0101 + 00643250 a 0101 + 00908492 n 0101 + 09614315 n 0101 ~ 01643464 v 0000 ~ 01684899 v 0000 ~ 01685601 v 0000 01 + 02 00 | pursue a creative activity; be engaged in a creative activity; "Don't disturb him--he is creating" -01685601 36 v 01 build a 004 $ 01654628 v 0000 @ 01685313 v 0000 ;c 06123363 n 0000 + 01104637 n 0102 01 + 02 00 | be engaged in building; "These architects build in interesting and new styles" -01685797 36 v 01 repaint 0 002 @ 01684663 v 0000 ;c 00933420 n 0000 02 + 08 00 + 09 00 | paint again; "He repainted the same scenery many times during his life" -01685960 36 v 01 charge 0 003 @ 01684899 v 0000 ;c 00933420 n 0000 + 03008565 n 0101 01 + 08 00 | place a heraldic bearing on; "charge all weapons, shields, and banners" -01686132 36 v 02 represent 1 interpret 1 019 @ 01619354 v 0000 ;c 00933420 n 0000 + 00100543 n 0203 + 10212780 n 0201 + 04076846 n 0101 ~ 01680473 v 0000 ~ 01680621 v 0000 ~ 01680756 v 0000 ~ 01680913 v 0000 ~ 01684663 v 0000 ~ 01686626 v 0000 ~ 01686956 v 0000 ~ 01687569 v 0000 ~ 01687876 v 0000 ~ 01688256 v 0000 ~ 01688771 v 0000 ~ 01690294 v 0000 ~ 01697406 v 0000 ~ 01755137 v 0000 02 + 08 00 + 09 00 | create an image or likeness of; "The painter represented his wife as a young girl" -01686626 36 v 01 capture 0 002 @ 01686132 v 0000 ~ 01686827 v 0000 02 + 08 00 + 11 00 | succeed in representing or expressing something intangible; "capture the essence of Spring"; "capture an idea" -01686827 36 v 01 recapture 0 001 @ 01686626 v 0000 02 + 08 00 + 11 00 | take up anew; "The author recaptures an old idea here" -01686956 36 v 04 picture 0 depict 0 render 4 show 0 013 @ 01686132 v 0000 ;c 00933420 n 0000 + 01979326 a 0202 + 00900726 n 0201 + 06999436 n 0201 + 03931044 n 0201 + 05766984 n 0201 + 06999436 n 0101 + 03876519 n 0102 + 03931044 n 0101 + 00900375 n 0102 ~ 01687401 v 0000 ~ 01688114 v 0000 01 + 08 00 | show in, or as in, a picture; "This scene depicts country life"; "the face of the child is rendered with much tenderness in this painting" -01687401 36 v 01 illustrate 0 005 @ 01686956 v 0000 ;c 00933420 n 0000 + 01323962 a 0102 + 06999233 n 0101 + 03561345 n 0101 01 + 08 00 | depict with an illustration -01687569 36 v 03 stylize 0 stylise 0 conventionalize 0 009 @ 01686132 v 0000 ;c 00933420 n 0000 + 01159964 n 0301 + 01159776 n 0202 + 01159776 n 0101 + 07066659 n 0102 + 05844105 n 0101 + 05750163 n 0103 + 04928903 n 0103 01 + 08 00 | represent according to a conventional style; "a stylized female head" -01687876 36 v 01 map 0 006 @ 01686132 v 0000 + 10442573 n 0102 + 03720163 n 0101 ~ 00710803 v 0000 ~ 00710922 v 0000 $ 01688114 v 0000 01 + 08 00 | make a map of; show or establish the features of details of; "map the surface of Venus" -01688114 36 v 01 map 1 002 $ 01687876 v 0000 @ 01686956 v 0000 01 + 11 00 | depict as if on a map; "sorrow was mapped on the mother's face" -01688256 36 v 03 portray 0 depict 1 limn 0 011 @ 01686132 v 0000 ;c 00933420 n 0000 + 10455619 n 0304 + 01979326 a 0202 + 05766984 n 0202 + 03876519 n 0202 + 05766984 n 0201 + 10455619 n 0101 + 00900957 n 0101 + 05766984 n 0103 + 05766984 n 0104 02 + 08 00 + 09 00 | make a portrait of; "Goya wanted to portray his mistress, the Duchess of Alba" -01688604 36 v 01 pencil 0 003 * 01582645 v 0000 @ 01690294 v 0000 + 03908204 n 0101 02 + 08 00 + 09 00 | write, draw, or trace with a pencil; "he penciled a figure" -01688771 36 v 02 portray 2 present 8 010 @ 01686132 v 0000 ;c 00933420 n 0000 + 00521562 n 0202 + 03210940 n 0202 + 10455619 n 0101 + 00900957 n 0101 + 10455619 n 0103 + 05766984 n 0103 + 00900726 n 0103 ~ 01689169 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | represent abstractly, for example in a painting, drawing, or sculpture; "The father is portrayed as a good-looking man in this painting" -01689169 36 v 01 commend 0 002 @ 01688771 v 0000 + 06686736 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | present as worthy of regard, kindness, or confidence; "His paintings commend him to the artistic world" -01689379 36 v 03 delineate 0 limn 1 outline 1 007 @ 01690294 v 0000 + 08612786 n 0301 + 01979326 a 0101 + 03173524 n 0101 + 00900726 n 0102 ~ 01689589 v 0000 ~ 01689752 v 0000 01 + 08 00 | trace the shape of -01689589 36 v 01 lipstick 0 002 @ 01689379 v 0000 + 03676483 n 0101 01 + 08 00 | form by tracing with lipstick; "The clown had lipsticked circles on his cheeks" -01689752 36 v 01 contour 0 004 @ 01689379 v 0000 + 06801580 n 0101 + 05064037 n 0104 ~ 01689899 v 0000 02 + 08 00 + 11 00 | form the contours of -01689899 36 v 01 streamline 0 002 @ 01689752 v 0000 + 04334504 n 0101 01 + 08 00 | contour economically or efficiently -01690020 36 v 01 rule 0 003 @ 01690294 v 0000 + 04118776 n 0101 + 04118776 n 0102 01 + 08 00 | mark or draw with a ruler; "rule the margins" -01690163 36 v 01 chalk 0 003 * 01582645 v 0000 @ 01690294 v 0000 + 03003091 n 0101 01 + 08 00 | write, draw, or trace with chalk -01690294 36 v 01 draw 0 019 @ 01686132 v 0000 ;c 00933420 n 0000 + 10029068 n 0102 + 07003119 n 0101 + 03234306 n 0101 $ 01582645 v 0000 ~ 01688604 v 0000 ~ 01689379 v 0000 ~ 01690020 v 0000 ~ 01690163 v 0000 ~ 01690972 v 0000 ~ 01692709 v 0000 ~ 01692978 v 0000 ~ 01693138 v 0000 ~ 01693324 v 0000 ~ 01693453 v 0000 ~ 01693727 v 0000 ~ 01695567 v 0000 ~ 01697628 v 0000 03 + 02 00 + 08 00 + 09 00 | represent by making a drawing of, as with a pencil, chalk, etc. on a surface; "She drew an elephant"; "Draw me a horse" -01690816 36 v 01 draw 7 002 @ 01698271 v 0000 ^ 00706804 v 0103 01 + 08 00 | write a legal document or paper; "The deed was drawn in the lawyer's office" -01690972 36 v 01 project 8 001 @ 01690294 v 0000 01 + 08 00 | draw a projection of -01691057 36 v 01 write 1 014 @ 01582645 v 0000 + 10801291 n 0101 ~ 00998294 v 0000 ~ 01691506 v 0000 ~ 01691660 v 0000 ~ 01691798 v 0000 ~ 01691927 v 0000 ~ 01692096 v 0000 ~ 01692266 v 0000 ~ 01692443 v 0000 ~ 01746715 v 0000 ~ 01747203 v 0000 ~ 01747374 v 0000 ~ 01747945 v 0000 02 + 02 00 + 08 00 | mark or trace on a surface; "The artist wrote Chinese characters on a big piece of white paper"; "Russian is written with the Cyrillic alphabet" -01691506 36 v 01 stenograph 0 001 @ 01691057 v 0000 01 + 02 00 | write in shorthand; "The students were able to stenograph and record the conversation" -01691660 36 v 01 calligraph 0 003 @ 01691057 v 0000 + 09889170 n 0101 + 09889170 n 0102 01 + 02 00 | write beautifully and ornamentally -01691798 36 v 01 cross 9 002 @ 01691057 v 0000 + 04681387 n 0102 01 + 08 00 | trace a line through or across; "cross your `t'" -01691927 36 v 01 superscribe 0 003 @ 01691057 v 0000 + 06406177 n 0101 + 00615336 n 0101 01 + 08 00 | write on the outside or upper part of; "superscribe an envelope" -01692096 36 v 01 superscribe 1 003 @ 01691057 v 0000 + 06406177 n 0101 + 00615336 n 0101 01 + 08 00 | write on the top or outside; "superscribe one's name and address" -01692266 36 v 02 capitalize 0 capitalise 0 005 @ 01691057 v 0000 + 06402425 n 0202 + 06824227 n 0201 + 06402425 n 0101 + 06824227 n 0101 01 + 08 00 | write in capital letters -01692443 36 v 01 letter 0 003 @ 01691057 v 0000 + 06828818 n 0101 + 10255348 n 0101 01 + 08 00 | mark letters on or mark with letters -01692579 36 v 01 letter 1 003 @ 01747945 v 0000 + 06828818 n 0101 + 10255348 n 0101 01 + 08 00 | set down or print with letters -01692709 36 v 01 crayon 0 002 @ 01690294 v 0000 + 03128248 n 0101 02 + 08 00 + 09 00 | write, draw, or trace with a crayon -01692834 36 v 01 write a 001 @ 01631534 v 0000 01 + 08 00 | create code, write a computer program; "She writes code faster than anybody else" -01692978 36 v 03 check 0 checker 0 chequer 0 002 @ 01690294 v 0000 + 03011162 n 0101 01 + 08 00 | mark into squares or draw squares on; draw crossed lines on -01693138 36 v 01 charcoal 0 005 * 01582645 v 0000 @ 01690294 v 0000 ;c 00933420 n 0000 + 03007955 n 0101 + 03007824 n 0101 02 + 08 00 + 09 00 | draw, trace, or represent with charcoal -01693324 36 v 01 doodle 0 003 * 01582645 v 0000 @ 01690294 v 0000 + 04155310 n 0103 01 + 02 00 | make a doodle; draw aimlessly -01693453 36 v 02 diagram 0 plot 0 006 @ 01690294 v 0000 + 10442573 n 0201 + 03967396 n 0201 + 00900207 n 0103 + 03186399 n 0101 ~ 01755291 v 0000 01 + 08 00 | make a schematic or technical drawing of that shows interactions among variables or how something is constructed -01693727 36 v 01 cartoon 0 005 @ 01690294 v 0000 ;c 00933420 n 0000 + 09898346 n 0101 + 06616464 n 0101 + 06780678 n 0101 01 + 08 00 | draw cartoons of -01693881 36 v 02 copy 1 re-create 1 014 @ 01617192 v 0000 + 00908772 n 0201 + 09964805 n 0101 + 03104594 n 0101 + 03257586 n 0102 + 01019524 n 0101 ~ 00247702 v 0000 ~ 01694263 v 0000 ~ 01694376 v 0000 ~ 01694620 v 0000 ~ 01694850 v 0000 ~ 01694984 v 0000 ~ 01695257 v 0000 ~ 01695459 v 0000 01 + 08 00 | make a replica of; "copy that drawing"; "re-create a picture by Rembrandt" -01694263 36 v 01 imitate 3 002 @ 01693881 v 0000 + 01116380 a 0102 01 + 08 00 | make a reproduction or copy of -01694376 36 v 01 trace 0 003 @ 01693881 v 0000 + 04463273 n 0102 + 04463017 n 0101 01 + 08 00 | copy by following the lines of the original drawing on a transparent sheet placed upon it; make a tracing of; "trace a design"; "trace a pattern" -01694620 36 v 01 back_up 0 003 @ 01693881 v 0000 ;c 03082979 n 0000 + 02771840 n 0101 01 + 08 00 | make a copy of (a computer file) especially for storage in another place as a security copy; "You'd better back up these files!" -01694850 36 v 01 hectograph 0 002 @ 01693881 v 0000 + 03510987 n 0101 01 + 08 00 | copy on a duplicator; "hectograph the hand-outs" -01694984 36 v 01 clone 0 002 @ 01693881 v 0000 + 07940242 n 0101 02 + 08 00 + 09 00 | make multiple identical copies of; "people can clone a sheep nowadays" -01695143 36 v 01 recopy 0 001 @ 01747374 v 0000 01 + 08 00 | copy again; "The child had to recopy the homework" -01695257 36 v 02 mimeograph 0 mimeo 0 003 @ 01693881 v 0000 + 03767459 n 0202 + 03767459 n 0101 01 + 08 00 | print copies from (a prepared stencil) using a mimeograph; "She mimeographed the syllabus" -01695459 36 v 01 roneo 0 002 @ 01693881 v 0000 + 03767459 n 0104 01 + 01 00 | make copies on a Roneograph -01695567 36 v 02 shade 0 fill_in 0 006 @ 01690294 v 0000 @ 01684899 v 0000 ;c 00933420 n 0000 + 04181983 n 0101 + 04682018 n 0101 ~ 01695976 v 0000 01 + 08 00 | represent the effect of shade or shadow on -01695773 36 v 01 stipple 1 003 @ 01684899 v 0000 ;c 00933420 n 0000 + 10657165 n 0101 01 + 08 00 | make by small short touches that together produce an even or softly graded shadow, as in paint or ink -01695976 36 v 01 crosshatch 0 002 @ 01695567 v 0000 + 04681797 n 0103 01 + 08 00 | shade with multiple crossing lines; "the draftsman crosshatched the area" -01696135 36 v 03 mottle 0 streak 0 blotch 0 004 @ 00283911 v 0000 + 04694809 n 0301 + 04683136 n 0202 + 00263947 n 0101 01 + 08 00 | mark with spots or blotches of different color or shades of color as if stained -01696350 36 v 01 vein 0 001 @ 00286008 v 0000 01 + 08 00 | make a veinlike pattern -01696435 36 v 02 watercolour 0 watercolor 0 007 @ 01684899 v 0000 ;c 00933420 n 0000 + 10770545 n 0201 + 14991319 n 0201 + 04558804 n 0201 + 04558578 n 0201 + 10770545 n 0102 01 + 08 00 | paint with watercolors -01696648 36 v 03 color 1 colour 1 emblazon 1 006 @ 01675963 v 0000 + 14984973 n 0204 + 09938672 n 0101 + 00161739 n 0101 + 04956594 n 0101 ~ 01696893 v 0000 02 + 08 00 + 11 00 | decorate with colors; "color the walls with paint in warm tones" -01696893 36 v 01 miniate 0 003 @ 01696648 v 0000 ;c 00933420 n 0000 + 15003329 n 0102 01 + 08 00 | paint with red lead or vermilion -01697027 36 v 03 model 0 mold 2 mould 2 015 @ 01659248 v 0000 ;c 00933420 n 0000 + 03779621 n 0302 + 00937895 n 0304 + 00844461 a 0202 + 03779621 n 0201 + 03779370 n 0201 + 13913566 n 0202 + 00909899 n 0201 + 00937895 n 0203 + 00898804 n 0101 + 03777283 n 0101 + 00937895 n 0102 + 03779621 n 0105 + 00937895 n 0101 01 + 08 00 | form in clay, wax, etc; "model a head with clay" -01697406 36 v 02 model 1 mock_up 0 007 @ 01686132 v 0000 + 03777283 n 0101 + 00898804 n 0101 + 10325774 n 0102 + 10325774 n 0101 + 00898804 n 0102 + 00898804 n 0103 01 + 08 00 | construct a model of; "model an airplane" -01697628 36 v 02 sketch 0 chalk_out 0 005 @ 01690294 v 0000 ;c 00933420 n 0000 + 04227144 n 0101 + 10604880 n 0101 + 04227519 n 0101 01 + 08 00 | make a sketch of; "sketch the building" -01697816 36 v 01 create_verbally 0 005 @ 01617192 v 0000 ~ 01697986 v 0000 ~ 01698271 v 0000 ~ 01701858 v 0000 ~ 01744611 v 0000 01 + 08 00 | create with or from words -01697986 36 v 01 coin 1 005 @ 01697816 v 0000 + 09935107 n 0101 + 06294441 n 0103 + 00940560 n 0103 ~ 01698152 v 0000 01 + 08 00 | make up; "coin phrases or words" -01698152 36 v 01 sloganeer 0 003 @ 01697986 v 0000 + 07246469 n 0101 + 10612373 n 0101 01 + 02 00 | coin new slogans -01698271 36 v 04 write 0 compose 1 pen 0 indite 0 028 * 01699896 v 0000 $ 01744611 v 0000 @ 01697816 v 0000 ;c 00929718 n 0000 + 03906997 n 0301 + 00929718 n 0304 + 00929718 n 0203 + 10794014 n 0101 + 00929718 n 0101 ^ 01754576 v 0101 ~ 01690816 v 0000 ~ 01698916 v 0000 ~ 01699172 v 0000 ~ 01699346 v 0000 ~ 01699539 v 0000 ~ 01699700 v 0000 ~ 01700540 v 0000 ~ 01700655 v 0000 ~ 01700934 v 0000 ~ 01701152 v 0000 ~ 01701311 v 0000 ~ 01701634 v 0000 ~ 01702514 v 0000 ~ 01704452 v 0000 ~ 01704953 v 0000 ~ 01705257 v 0000 ~ 01754576 v 0000 ~ 01756719 v 0000 01 + 08 00 | produce a literary work; "She composed a poem"; "He wrote four novels" -01698916 36 v 01 lyric 0 004 @ 01698271 v 0000 ;c 07092592 n 0000 + 07051975 n 0101 ~ 01699059 v 0000 01 + 08 00 | write lyrics for (a song) -01699059 36 v 01 relyric 0 002 @ 01698916 v 0000 ;c 07092592 n 0000 01 + 08 00 | write new lyrics for (a song) -01699172 36 v 03 write_on 0 write_of 0 write_about 0 002 @ 01698271 v 0000 ;c 00929718 n 0000 02 + 08 00 + 09 00 | write about a particular topic; "Snow wrote about China" -01699346 36 v 01 profile 1 003 @ 01698271 v 0000 ;c 00929718 n 0000 + 06516404 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | write about; "The author of this article profiles a famous painter" -01699539 36 v 01 paragraph 0 004 @ 01698271 v 0000 ;c 00929718 n 0000 + 06399995 n 0101 + 10397694 n 0101 01 + 02 00 | write paragraphs; work as a paragrapher -01699700 36 v 01 paragraph 1 003 @ 01698271 v 0000 + 06399995 n 0101 + 10397694 n 0101 02 + 08 00 + 09 00 | write about in a paragraph; "All her friends were paragraphed in last Monday's paper" -01699896 36 v 02 spell 0 write 3 003 + 06353445 n 0101 ~ 01700149 v 0000 ~ 01700326 v 0000 01 + 08 00 | write or name the letters that comprise the conventionally accepted form of (a word or part of a word); "He spelled the word wrong in this letter" -01700149 36 v 01 spell_out 0 001 @ 01699896 v 0000 01 + 08 00 | spell fully and without abbreviating; "Can you spell out your middle name instead of just giving the initial?" -01700326 36 v 02 hyphenate 0 hyphen 0 005 @ 01699896 v 0000 + 06843148 n 0201 + 00390735 n 0102 + 00390445 n 0101 + 06843148 n 0101 01 + 08 00 | divide or connect with a hyphen; "hyphenate these words and names" -01700540 36 v 01 write_off 0 001 @ 01698271 v 0000 01 + 08 00 | write something fluently, and without hesitation -01700655 36 v 05 dash_off 0 scratch_off 0 knock_off 0 toss_off 0 fling_off 0 002 @ 01698271 v 0000 ;c 00929718 n 0000 01 + 08 00 | write quickly; "She dashed off a note to her husband saying she would not be home for supper"; "He scratched off a thank-you note to the hostess" -01700934 36 v 01 rewrite 0 004 @ 01698271 v 0000 ;c 00929718 n 0000 + 06364149 n 0101 + 10513120 n 0104 01 + 08 00 | rewrite so as to make fit to suit a new or different purpose; "re-write a play for use in schools" -01701152 36 v 01 write_copy 0 002 @ 01698271 v 0000 ;c 00929718 n 0000 01 + 02 00 | write for commercial publications; "She writes copy for Harper's Bazaar" -01701311 36 v 03 dramatize 0 dramatise 0 adopt 0 011 @ 01698271 v 0000 ;c 00929718 n 0000 + 10030277 n 0201 + 00899292 n 0202 + 07007945 n 0202 + 06376154 n 0201 + 10030277 n 0101 + 00930868 n 0101 + 00899292 n 0101 + 07007945 n 0102 + 06376154 n 0101 01 + 08 00 | put into dramatic form; "adopt a book for a screenplay" -01701634 36 v 02 draft 0 outline 3 006 @ 01698271 v 0000 ;c 00929718 n 0000 + 05891572 n 0201 + 06390962 n 0101 + 10028977 n 0101 + 00930736 n 0101 01 + 08 00 | draw up an outline or sketch for something; "draft a speech" -01701858 36 v 02 rhyme 0 rime 0 006 @ 01697816 v 0000 ;c 07092592 n 0000 + 06381869 n 0102 + 10528493 n 0101 ~ 01702033 v 0000 ~ 01702154 v 0000 01 + 02 00 | compose rhymes -01702033 36 v 01 tag 0 002 @ 01701858 v 0000 ;c 07092592 n 0000 01 + 08 00 | supply (blank verse or prose) with rhymes -01702154 36 v 01 alliterate 0 005 @ 01701858 v 0000 ;c 07092592 n 0000 + 01965849 a 0101 + 07097094 n 0101 + 09784564 n 0101 01 + 02 00 | use alliteration as a form of poetry -01702331 36 v 01 pun 0 003 @ 00853633 v 0000 + 06781581 n 0102 + 06781581 n 0101 01 + 02 00 | make a play on words; "Japanese like to pun--their language is well suited to punning" -01702514 36 v 04 verse 0 versify 0 poetize 0 poetise 0 020 @ 01698271 v 0000 ;c 07092592 n 0000 + 10528493 n 0405 + 10444194 n 0401 + 10528493 n 0304 + 10444194 n 0301 + 07093759 n 0201 + 07093603 n 0201 + 07093489 n 0201 + 10528493 n 0203 + 07092592 n 0203 + 06384708 n 0201 + 06381869 n 0201 + 06384708 n 0101 + 06381869 n 0101 + 07092592 n 0103 ~ 01703023 v 0000 ~ 01703195 v 0000 ~ 01703326 v 0000 ~ 01703613 v 0000 02 + 02 00 + 08 00 | compose verses or put into verse; "He versified the ancient saga" -01703023 36 v 01 metrify 0 003 @ 01702514 v 0000 ;c 07092592 n 0000 + 00931300 n 0101 01 + 08 00 | compose in poetic meter; "The bard metrified his poems very precisely" -01703195 36 v 02 spondaize 0 spondaise 0 002 @ 01702514 v 0000 ;c 07092592 n 0000 01 + 08 00 | make spondaic; "spondaize verses" -01703326 36 v 02 elegize 0 elegise 0 003 @ 01702514 v 0000 ;c 07092592 n 0000 + 06379568 n 0101 01 + 02 00 | compose an elegy -01703454 36 v 02 recite 0 retell 0 003 @ 01619354 v 0000 + 07234881 n 0101 + 07234881 n 0102 01 + 08 00 | render verbally, "recite a poem"; "retell a story" -01703613 36 v 01 sonnet 0 003 @ 01702514 v 0000 ;c 07092592 n 0000 + 06381372 n 0101 01 + 02 00 | compose a sonnet -01703730 36 v 01 sonnet 1 003 @ 00856824 v 0000 ;c 07092592 n 0000 + 06381372 n 0101 02 + 08 00 + 09 00 | praise in a sonnet -01703857 36 v 01 serenade 0 003 @ 01712704 v 0000 + 07042586 n 0102 + 07053732 n 0101 02 + 02 00 + 09 00 | sing and play for somebody; "She was serenaded by her admirers" -01704030 36 v 02 belt_out 0 belt 0 001 @ 01729431 v 0000 01 + 08 00 | sing loudly and forcefully -01704129 36 v 01 descant_on 0 001 @ 01729431 v 0000 01 + 08 00 | sing a descant on a main tune or melody -01704236 36 v 02 vocalize 0 vocalise 0 005 @ 01729431 v 0000 + 10599806 n 0204 + 02825533 a 0101 + 10599806 n 0103 + 00545501 n 0102 02 + 02 00 + 08 00 | sing (each note a scale or in a melody) with the same vowel -01704452 36 v 01 author 0 005 @ 01698271 v 0000 ;c 00929718 n 0000 + 10794014 n 0102 ~ 01704631 v 0000 ~ 01704752 v 0000 01 + 08 00 | be the author of; "She authored this play" -01704631 36 v 01 co-author 0 002 @ 01704452 v 0000 ;c 00929718 n 0000 01 + 08 00 | be a co-author on (a book, a paper) -01704752 36 v 02 ghost 0 ghostwrite 0 004 @ 01704452 v 0000 ;c 00929718 n 0000 + 10128748 n 0201 + 10128748 n 0102 01 + 08 00 | write for someone else; "How many books have you ghostwritten so far?" -01704953 36 v 02 annotate 0 footnote 0 007 @ 01698271 v 0000 ;c 00929718 n 0000 + 06764244 n 0201 + 06763273 n 0101 + 06763273 n 0102 + 00371735 n 0101 + 09795010 n 0101 01 + 08 00 | add explanatory notes to or supply with critical comments; "The scholar annotated the early edition of a famous novel" -01705257 36 v 02 reference 0 cite 0 007 @ 01698271 v 0000 ;c 00929718 n 0000 + 07180570 n 0201 + 06613056 n 0203 + 06763681 n 0201 + 07258664 n 0101 + 06763681 n 0105 02 + 08 00 + 09 00 | refer to; "he referenced his colleagues' work" -01705494 36 v 02 compose 3 write 4 013 @ 01617192 v 0000 ;c 07020895 n 0000 + 07037465 n 0103 + 00939452 n 0102 + 09947232 n 0101 + 00939452 n 0101 ~ 01705841 v 0000 ~ 01706014 v 0000 ~ 01706129 v 0000 ~ 01706488 v 0000 ~ 01706756 v 0000 ~ 01707306 v 0000 ~ 01707925 v 0000 02 + 02 00 + 08 00 | write music; "Beethoven composed nine symphonies" -01705841 36 v 01 counterpoint 0 003 @ 01705494 v 0000 ;c 07020895 n 0000 + 07025419 n 0101 01 + 08 00 | write in counterpoint; "Bach perfected the art of counterpointing" -01706014 36 v 01 set_to_music 0 002 @ 01705494 v 0000 ;c 07020895 n 0000 01 + 08 00 | write (music) for (a text) -01706129 36 v 02 arrange 0 set 0 007 @ 01705494 v 0000 ;c 07020895 n 0000 + 09809925 n 0101 ~ 01648790 v 0000 ~ 01706375 v 0000 ~ 01706631 v 0000 ~ 01745536 v 0000 01 + 08 00 | adapt for performance in a different way; "set this poem to music" -01706375 36 v 01 put d 002 @ 01706129 v 0000 ;c 07020895 n 0000 01 + 08 00 | adapt; "put these words to music" -01706488 36 v 01 score 0 004 @ 01705494 v 0000 ;c 07020895 n 0000 + 06815714 n 0101 ~ 01707737 v 0000 01 + 08 00 | write a musical score for -01706631 36 v 01 transpose 0 002 @ 01706129 v 0000 ;c 07020895 n 0000 01 + 08 00 | put (a piece of music) into another key -01706756 36 v 02 melodize 0 melodise 0 003 @ 01705494 v 0000 ;c 07020895 n 0000 + 07028373 n 0102 01 + 08 00 | supply a melody for -01706889 36 v 02 harmonize 0 harmonise 0 008 @ 01729431 v 0000 ;c 07020895 n 0000 ;c 00543233 n 0000 ;c 05718935 n 0000 + 01253778 n 0202 + 01253778 n 0101 + 10160624 n 0202 + 10160624 n 0101 02 + 02 00 + 22 00 | sing or play in harmony -01707128 36 v 02 reharmonize 0 reharmonise 0 003 @ 01707306 v 0000 ;c 05718556 n 0000 + 07027651 n 0101 01 + 08 00 | provide with a different harmony; "reharmonize the melody" -01707306 36 v 02 harmonize 1 harmonise 1 006 @ 01705494 v 0000 ;c 05718556 n 0000 + 07027458 n 0202 + 07027458 n 0101 ~ 01707128 v 0000 ~ 01707495 v 0000 01 + 08 00 | write a harmony for -01707495 36 v 02 realize 7 realise 7 004 @ 01707306 v 0000 ;c 07020895 n 0000 + 07039056 n 0101 + 00940043 n 0101 01 + 08 00 | expand or complete (a part in a piece of baroque music) by supplying the harmonies indicated in the figured bass -01707737 36 v 01 orchestrate 0 006 @ 01706488 v 0000 ;c 05718556 n 0000 + 08248157 n 0101 + 07038615 n 0101 + 00939818 n 0101 + 10381100 n 0101 01 + 08 00 | write an orchestra score for -01707925 36 v 02 instrument 0 instrumentate 0 005 @ 01705494 v 0000 ;c 05718556 n 0000 + 03800933 n 0202 + 03800933 n 0102 + 00939818 n 0102 01 + 08 00 | write an instrumental score for -01708113 36 v 01 transcribe 0 003 @ 00299580 v 0000 ;c 05718556 n 0000 + 09809925 n 0103 01 + 08 00 | rewrite or arrange a piece of music for an instrument or medium other than that originally intended -01708317 36 v 01 choreograph 0 003 @ 01617192 v 0000 ;c 07020538 n 0000 + 09920283 n 0101 02 + 02 00 + 08 00 | compose a sequence of dance steps, often to music; "Balanchine choreographed many pieces to Stravinsky's music" -01708542 36 v 01 jive 0 003 @ 01708676 v 0000 ;c 00428270 n 0000 + 07066042 n 0103 01 + 02 00 | dance to jive music; dance the jive -01708676 36 v 03 dance 0 trip_the_light_fantastic 0 trip_the_light_fantastic_toe 0 048 $ 01894649 v 0000 @ 01831531 v 0000 ;c 00428270 n 0000 + 07448717 n 0101 + 00428270 n 0102 + 08253141 n 0101 + 07020538 n 0101 + 09990415 n 0101 + 09989502 n 0101 + 00428270 n 0101 ~ 01708542 v 0000 ~ 01709781 v 0000 ~ 01709931 v 0000 ~ 01710048 v 0000 ~ 01710190 v 0000 ~ 01751545 v 0000 ~ 01755389 v 0000 ~ 01895263 v 0000 ~ 01895383 v 0000 ~ 01895519 v 0000 ~ 01895612 v 0000 ~ 01895757 v 0000 ~ 01896007 v 0000 ~ 01896119 v 0000 ~ 01896213 v 0000 ~ 01896295 v 0000 ~ 01896484 v 0000 ~ 01896657 v 0000 ~ 01896767 v 0000 ~ 01896881 v 0000 ~ 01896995 v 0000 ~ 01897097 v 0000 ~ 01897203 v 0000 ~ 01897306 v 0000 ~ 01897406 v 0000 ~ 01897489 v 0000 ~ 01897583 v 0000 ~ 01897677 v 0000 ~ 01897779 v 0000 ~ 01897885 v 0000 ~ 01898032 v 0000 ~ 01898181 v 0000 ~ 01898769 v 0000 ~ 01898893 v 0000 ~ 01899158 v 0000 ~ 02048511 v 0000 ~ 02048586 v 0000 ~ 02048682 v 0000 02 + 08 00 + 22 00 | move in a pattern; usually to musical accompaniment; do or perform a dance; "My husband and I like to dance at home to the radio" -01709781 36 v 01 hoof 3 004 @ 01708676 v 0000 ;u 07157273 n 0000 ;c 07020538 n 0000 + 10184403 n 0101 01 + 02 00 | dance in a professional capacity -01709931 36 v 01 clog 0 003 @ 01708676 v 0000 ;c 00428270 n 0000 + 00530208 n 0103 01 + 02 00 | dance a clog dance -01710048 36 v 01 tap_dance 0 004 @ 01708676 v 0000 ;c 00428270 n 0000 ;c 07020538 n 0000 + 00527872 n 0102 01 + 02 00 | perform a tap dance -01710190 36 v 01 belly_dance 0 003 @ 01708676 v 0000 ;c 00428270 n 0000 + 00530554 n 0101 01 + 02 00 | perform a belly dance -01710317 36 v 01 direct 0 004 @ 01617192 v 0000 ;c 06157326 n 0000 + 10015215 n 0101 ~ 01711336 v 0000 02 + 02 00 + 08 00 | guide the actors in (plays and films) -01710481 36 v 01 cast 1 010 * 01711965 v 0000 * 01711445 v 0000 * 01712704 v 0000 @ 02391803 v 0000 ;c 06157326 n 0000 + 08237863 n 0101 ~ 01710934 v 0000 ~ 01711073 v 0000 ~ 01711211 v 0000 $ 02385813 v 0000 01 + 09 00 | select to play,sing, or dance a part in a play, movie, musical, opera, or ballet; "He cast a young woman in the role of Desdemona" -01710836 36 v 01 descant 0 002 @ 01729431 v 0000 + 07032026 n 0101 01 + 02 00 | sing in descant -01710934 36 v 01 recast 0 002 @ 01710481 v 0000 ;c 06157326 n 0000 01 + 09 00 | cast again, in a different role; "He was recast as Iago" -01711073 36 v 01 miscast 0 002 @ 01710481 v 0000 ;c 06157326 n 0000 01 + 09 00 | cast an actor, singer, or dancer in an unsuitable role -01711211 36 v 01 typecast 0 002 @ 01710481 v 0000 ;c 06157326 n 0000 01 + 09 00 | cast repeatedly in the same kind of role -01711336 36 v 01 stage_direct 0 002 @ 01710317 v 0000 ;c 06157326 n 0000 01 + 08 00 | direct for the stage -01711445 36 v 03 stage 0 present 0 represent b 009 @ 01619354 v 0000 ;c 06157326 n 0000 + 06893885 n 0303 + 00521562 n 0202 + 07006712 n 0101 + 04296562 n 0101 + 10645611 n 0102 + 07007171 n 0102 ~ 01711749 v 0000 01 + 08 00 | perform (a play), especially on a stage; "we are going to stage `Othello'" -01711749 36 v 04 set 1 localize 0 localise 0 place 0 006 @ 01711445 v 0000 + 08664443 n 0402 + 05075602 n 0401 + 00155487 n 0201 + 08677628 n 0202 + 01052853 n 0101 01 + 21 00 | locate; "The film is set in Africa" -01711965 36 v 01 film 0 008 @ 01000214 v 0000 @ 01617192 v 0000 + 06262567 n 0101 + 03338821 n 0101 + 06613686 n 0102 + 00907919 n 0101 ~ 01712298 v 0000 ~ 01712450 v 0000 02 + 08 00 + 02 01 | record in film; "The coronation was filmed" -01712204 36 v 01 film-make 0 001 @ 01617192 v 0000 01 + 02 00 | make films; be a film maker -01712298 36 v 02 cinematize 0 cinematise 0 001 @ 01711965 v 0000 01 + 08 00 | make a film of or adopt so as to make into a film; "cinematize history" -01712450 36 v 01 microfilm 0 002 @ 01711965 v 0000 + 03759432 n 0101 01 + 08 00 | record on microfilm -01712554 36 v 01 cut_corners 0 001 @ 01712704 v 0000 01 + 13 00 | do something the cheapest or easiest way; "Cut corners to make a cheaper product" -01712704 36 v 03 perform 0 execute 1 do 1 023 + 09767197 n 0302 + 00097504 n 0202 + 10069296 n 0201 + 00097504 n 0101 ~ 00491551 v 0000 ~ 01049606 v 0000 ~ 01050565 v 0000 ~ 01051364 v 0000 ~ 01703857 v 0000 ~ 01712554 v 0000 ~ 01713348 v 0000 ~ 01713491 v 0000 ~ 01713587 v 0000 ~ 01713983 v 0000 ~ 01714095 v 0000 ~ 01718185 v 0000 ~ 01720980 v 0000 ~ 01721169 v 0000 ~ 01723224 v 0000 ~ 01728840 v 0000 ~ 01732172 v 0000 ~ 01732921 v 0000 ~ 01755816 v 0000 01 + 08 00 | carry out or perform an action; "John did the painting, the weeding, and he cleaned out the gutters"; "the skater executed a triple pirouette"; "she did a little dance" -01713348 36 v 01 stunt 0 004 @ 01712704 v 0000 ;c 06157326 n 0000 + 00046344 n 0101 + 00302861 n 0103 01 + 02 00 | perform a stunt or stunts -01713491 36 v 01 cut f 001 @ 01712704 v 0000 01 + 08 00 | perform or carry out; "cut a caper" -01713587 36 v 01 blaze_away 0 002 @ 01712704 v 0000 ;c 06157326 n 0000 01 + 02 00 | perform (an acting passage) brilliantly and rapidly; "Mr. Jones blazed away in one passage after another to loud applause" -01713796 36 v 01 interlude 0 003 @ 01714208 v 0000 ;c 00543233 n 0000 + 00520880 n 0101 01 + 02 00 | perform an interlude; "The guitar player interluded with a beautiful improvisation" -01713983 36 v 01 scamp 0 002 @ 01712704 v 0000 ;c 00543233 n 0000 01 + 08 00 | perform hastily and carelessly -01714095 36 v 01 churn_out 1 002 @ 01712704 v 0000 ;c 00543233 n 0000 01 + 08 00 | perform in a mechanical way -01714208 36 v 01 perform 1 022 @ 01619354 v 0000 ;c 06157326 n 0000 + 10415638 n 0101 + 00548326 n 0104 + 06891493 n 0101 ~ 01094661 v 0000 ~ 01094898 v 0000 ~ 01713796 v 0000 ~ 01714805 v 0000 ~ 01715040 v 0000 ~ 01715185 v 0000 ~ 01715357 v 0000 ~ 01715525 v 0000 ~ 01715997 v 0000 ~ 01716112 v 0000 ~ 01716407 v 0000 ~ 01716619 v 0000 ~ 01717851 v 0000 ~ 01718535 v 0000 ~ 01719921 v 0000 ~ 01725051 v 0000 ~ 01733213 v 0000 03 + 02 00 + 08 00 + 22 00 | give a performance (of something); "Horowitz is performing at Carnegie Hall tonight"; "We performed a popular Gilbert and Sullivan opera" -01714805 36 v 01 grandstand 0 003 @ 01714208 v 0000 ;c 06157326 n 0000 + 10143371 n 0101 01 + 02 00 | perform ostentatiously in order to impress the audience and with an eye to the applause; "She never misses a chance to grandstand" -01715040 36 v 01 solo 0 003 @ 01714208 v 0000 + 07040939 n 0101 + 10623650 n 0101 01 + 02 00 | perform a piece written for a single instrument -01715185 36 v 01 play_out 0 002 $ 01081652 v 0000 @ 01714208 v 0000 02 + 01 00 + 08 00 | perform or be performed to the end; "How will the election drama be played out?" -01715357 36 v 01 underperform 0 002 @ 01714208 v 0000 ;c 06157326 n 0000 01 + 08 00 | perform too rarely; "Her plays are underperformed, although they are very good" -01715525 36 v 02 sightread 0 sight-read 0 004 @ 01714208 v 0000 ;c 00543233 n 0000 + 10596517 n 0101 ~ 01715784 v 0000 02 + 02 00 + 08 00 | perform music from a score without having seen the score before; "He is a brilliant pianist but he cannot sightread" -01715784 36 v 02 sightsing 0 sight-sing 0 002 @ 01715525 v 0000 ;c 06157326 n 0000 02 + 02 00 + 08 00 | sing from a score without having seen it before; "This tenor can sightsing even the most difficult pieces" -01715997 36 v 01 rap a 003 @ 01714208 v 0000 ;c 00543233 n 0000 + 07064055 n 0101 01 + 02 00 | perform rap music -01716112 36 v 01 give c 003 @ 01714208 v 0000 ;c 06157326 n 0000 $ 01716283 v 0000 01 + 08 00 | perform for an audience; "Pollini is giving another concert in New York" -01716283 36 v 01 give d 002 $ 01716112 v 0000 @ 02137132 v 0000 01 + 08 00 | present to view; "He gave the sign to start" -01716407 36 v 02 concertize 0 concertise 0 004 @ 01714208 v 0000 ;c 00543233 n 0000 + 06892775 n 0201 + 06892775 n 0101 01 + 02 00 | give concerts; perform in concerts; "My niece is off concertizing in Europe" -01716619 36 v 01 play 3 005 @ 01714208 v 0000 ;c 06157326 n 0000 + 07018931 n 0101 + 07007945 n 0101 $ 01719921 v 0000 01 + 08 00 | perform on a certain location; "The prodigy played Carnegie Hall at the age of 16"; "She has been playing on Broadway for years" -01716882 36 v 01 play 4 005 ;c 06157326 n 0000 + 07007945 n 0101 + 07018931 n 0101 ~ 01717628 v 0000 $ 01719921 v 0000 02 + 01 00 + 04 00 | be performed or presented for public viewing; "What's playing in the local movie theater?"; "`Cats' has been playing on Broadway for many years" -01717169 36 v 02 play 5 run 1 003 $ 00517529 v 0000 $ 02563327 v 0000 $ 01717436 v 0000 02 + 08 00 + 11 00 | cause to emit recorded audio or video; "They ran the tapes over and over again"; "I'll play you my favorite record"; "He never tires of playing that video" -01717436 36 v 01 play b 002 $ 01717169 v 0000 @ 02135048 v 0000 02 + 01 00 + 11 00 | emit recorded sound; "The tape was playing for hours"; "the stereo was playing Beethoven when I entered" -01717628 36 v 01 debut 0 003 @ 01716882 v 0000 ;c 06157326 n 0000 + 00238022 n 0102 02 + 01 00 + 04 00 | appear for the first time in public; "The new ballet that debuts next months at Covent Garden, is already sold out" -01717851 36 v 01 debut 1 002 @ 01714208 v 0000 ;c 06157326 n 0000 01 + 02 00 | make one's debut; "This young soprano debuts next month at the Metropolitan Opera" -01718015 36 v 01 debut 2 002 @ 01642437 v 0000 ;c 06157326 n 0000 01 + 08 00 | present for the first time to the public; "The band debuts a new song or two each month" -01718185 36 v 02 premier 0 premiere 0 003 @ 01712704 v 0000 ;c 06157326 n 0000 + 06893285 n 0201 01 + 08 00 | perform a work for the first time -01718331 36 v 02 premier 1 premiere 1 002 ;c 06157326 n 0000 + 06893285 n 0201 01 + 01 00 | be performed for the first time; "We premiered the opera of the young composer and it was a critical success" -01718535 36 v 02 audition 0 try_out 0 005 @ 01714208 v 0000 ;c 06157326 n 0000 + 00794614 n 0202 + 00794614 n 0101 ~ 01718755 v 0000 01 + 02 00 | perform in order to get a role; "She auditioned for a role on Broadway" -01718755 36 v 01 read 5 002 @ 01718535 v 0000 ;c 06157326 n 0000 01 + 22 00 | audition for a stage role by reading parts of a role; "He is auditioning for `Julius Caesar' at Stratford this year" -01718952 36 v 03 cybernate 0 computerize 0 computerise 0 007 @ 02407987 v 0000 ;c 06128570 n 0000 + 09887034 n 0305 + 03082979 n 0301 + 03082979 n 0201 + 00102779 n 0201 + 00102779 n 0102 01 + 08 00 | control a function, process, or creation by a computer; "They computerized the car industry"; "we live in a cybernated age"; "cybernate a factory" -01719302 36 v 03 act 0 play 2 represent 2 021 $ 00013615 v 0000 $ 01722077 v 0000 $ 01719921 v 0000 @ 01619354 v 0000 ;c 06157326 n 0000 + 06893885 n 0303 + 07018931 n 0201 + 07007945 n 0201 + 09765278 n 0203 + 00548326 n 0202 + 00795785 a 0101 + 09765278 n 0101 + 06892016 n 0101 + 00548326 n 0101 ~ 00838524 v 0000 ~ 01720773 v 0000 ~ 01722447 v 0000 ~ 01722645 v 0000 ~ 01723690 v 0000 ~ 01723963 v 0000 ~ 01772806 v 0000 03 + 02 00 + 08 00 + 09 00 | play a role or part; "Gielgud played Hamlet"; "She wants to act Lady Macbeth, but she is too young for the role"; "She played the servant to her husband's master" -01719921 36 v 04 act 3 play a roleplay 0 playact 0 021 $ 01716619 v 0000 $ 01716882 v 0000 @ 01714208 v 0000 ;c 07006119 n 0000 + 09840050 n 0402 + 00548326 n 0403 + 00552097 n 0301 + 07018931 n 0201 + 07007945 n 0201 + 09765278 n 0203 + 00548326 n 0202 + 00795785 a 0101 + 09765278 n 0101 + 06892016 n 0101 + 00548326 n 0101 $ 01719302 v 0000 ~ 01720491 v 0000 ~ 01724185 v 0000 ~ 01751173 v 0000 ~ 01751389 v 0000 $ 02744977 v 0000 01 + 02 00 | perform on a stage or theater; "She acts in this play"; "He acted in `Julius Caesar'"; "I played in `A Christmas Carol'" -01720491 36 v 01 stooge 0 003 @ 01719921 v 0000 ;c 07006119 n 0000 + 09884666 n 0104 01 + 02 00 | act as the stooge; "His role was to stooge for the popular comedian" -01720660 36 v 01 enter 0 003 * 01719302 v 0000 ;c 07006119 n 0000 + 00049003 n 0102 01 + 02 00 | come on stage -01720773 36 v 01 support 0 003 @ 01719302 v 0000 ;c 07006119 n 0000 + 07031752 n 0104 01 + 09 00 | play a subordinate role to (another performer); "Olivier supported Gielgud beautifully in the second act" -01720980 36 v 01 star 0 006 @ 01712704 v 0000 ;c 07006119 n 0000 + 10163723 n 0102 + 10648696 n 0101 + 09762509 n 010a ~ 01721415 v 0000 02 + 02 00 + 22 00 | be the star in a performance -01721169 36 v 01 appear 0 003 @ 01712704 v 0000 ;c 07006119 n 0000 + 00050195 n 0101 01 + 22 00 | appear as a character on stage or appear in a play, etc.; "Gielgud appears briefly in this movie"; "She appeared in `Hamlet' on the London stage" -01721415 36 v 01 co-star 0 003 @ 01720980 v 0000 ;c 07006119 n 0000 + 09967967 n 0101 02 + 02 00 + 22 00 | be the co-star in a performance -01721556 36 v 03 dissemble 0 pretend 0 act 4 004 $ 00010435 v 0000 + 07014029 n 0301 + 10201535 n 0203 ~ 01721754 v 0000 02 + 02 00 + 08 00 | behave unnaturally or affectedly; "She's just acting" -01721754 36 v 04 simulate 0 assume 0 sham 0 feign 0 008 @ 01721556 v 0000 + 00754956 n 0405 + 10201535 n 0307 + 10286539 n 0303 + 10201535 n 0308 + 00754956 n 0104 ~ 01722077 v 0000 ~ 01722299 v 0000 01 + 08 00 | make a pretence of; "She assumed indifference, even though she was seething with anger"; "he feigned sleep" -01722077 36 v 01 play 6 002 @ 01721754 v 0000 $ 01719302 v 0000 03 + 08 00 + 09 00 + 26 00 | pretend to be somebody in the framework of a game or playful activity; "Let's play like I am mommy"; "Play cowboy and Indians" -01722299 36 v 01 feint 0 002 @ 01721754 v 0000 + 00172073 n 0101 02 + 08 00 + 09 00 | deceive by a mock action; "The midfielder feinted to shoot" -01722447 36 v 03 enact 0 reenact 0 act_out 0 002 @ 01719302 v 0000 + 00548802 n 0103 01 + 08 00 | act out; represent or perform as if in a play; "She reenacted what had happened earlier that day" -01722645 36 v 01 act_out 1 001 @ 01719302 v 0000 01 + 08 00 | represent an incident, state, or emotion by action, especially on stage; "She could act neurotic anxiety" -01722815 36 v 01 reenact 1 003 @ 01619354 v 0000 + 10514121 n 0101 + 00551913 n 0101 01 + 08 00 | enact or perform again; "They reenacted the battle of Princeton" -01722980 36 v 02 model 4 simulate 2 004 @ 01619354 v 0000 + 05666700 n 0201 + 04221823 n 0201 + 05890249 n 0101 02 + 08 00 + 11 00 | create a representation or model of; "The pilots are trained in conditions simulating high-altitude flights" -01723224 36 v 03 rehearse 0 practise 0 practice 0 006 @ 01712704 v 0000 ;c 06157326 n 0000 + 00894552 n 0302 + 00897026 n 0101 ~ 01723437 v 0000 ~ 01723579 v 0000 02 + 02 00 + 08 00 | engage in a rehearsal (of) -01723437 36 v 01 walk_through 0 002 @ 01723224 v 0000 + 00897608 n 0101 01 + 08 00 | perform in a perfunctory way, as for a first rehearsal -01723579 36 v 01 scrimmage 0 002 @ 01723224 v 0000 + 00898127 n 0101 01 + 02 00 | practice playing (a sport) -01723690 36 v 02 impersonate 0 portray 1 006 @ 01719302 v 0000 ;c 06157326 n 0000 + 00548802 n 0201 + 05929008 n 0105 + 00756331 n 0102 + 00549284 n 0101 01 + 09 00 | assume or act the character of; "She impersonates Madonna"; "The actor portrays an elderly, lonely man" -01723963 36 v 01 parody 0 002 @ 01719302 v 0000 + 00549610 n 0101 02 + 08 00 + 09 00 | make a spoof of or make fun of -01724083 36 v 01 travesty 0 002 @ 00849939 v 0000 + 07016250 n 0103 01 + 08 00 | make a travesty of -01724185 36 v 02 mime 0 pantomime 0 006 @ 01719921 v 0000 + 10318892 n 0205 + 10318892 n 0204 + 00550016 n 0202 + 10318892 n 0102 + 00550016 n 0101 01 + 02 00 | act out without words but with gestures and bodily movements only; "The acting students mimed eating an apple" -01724459 36 v 02 play 0 spiel 0 016 @ 01619354 v 0000 + 00101191 n 0101 ~ 01649605 v 0000 ~ 01649695 v 0000 ~ 01724891 v 0000 $ 01725051 v 0000 ~ 01725530 v 0000 ~ 01725615 v 0000 ~ 01725734 v 0000 ~ 01725886 v 0000 ~ 01726039 v 0000 ~ 01727490 v 0000 ~ 01727866 v 0000 ~ 01728213 v 0000 ~ 01729142 v 0000 ~ 01734300 v 0000 01 + 08 00 | replay (as a melody); "Play it again, Sam"; "She played the third movement very beautifully" -01724891 36 v 01 fiddle 2 003 $ 01733667 v 0000 @ 01724459 v 0000 ;c 07020895 n 0000 01 + 08 00 | play on a violin; "Zuckerman fiddled that song very nicely" -01725051 36 v 01 play c 012 $ 01726172 v 0000 $ 01724459 v 0000 @ 01714208 v 0000 ;c 07020895 n 0000 + 10340312 n 0103 + 00101191 n 0101 ~ 01651110 v 0000 ~ 01725375 v 0000 ~ 01727052 v 0000 ~ 01728355 v 0000 ~ 01729295 v 0000 ~ 01759166 v 0000 02 + 01 00 + 02 00 | play on an instrument; "The band played all night long" -01725375 36 v 01 swing 3 003 @ 01725051 v 0000 ;c 07020895 n 0000 + 04992008 n 0102 01 + 02 00 | play with a subtle and intuitively felt sense of rhythm -01725530 36 v 01 replay 0 001 @ 01724459 v 0000 01 + 08 00 | play (a melody) again -01725615 36 v 01 prelude 0 003 @ 01724459 v 0000 ;c 00543233 n 0000 + 07040543 n 0101 01 + 08 00 | play as a prelude -01725734 36 v 01 jazz 0 004 @ 01724459 v 0000 ;c 00543233 n 0000 + 07060976 n 0101 + 07062697 n 0101 01 + 08 00 | play something in the style of jazz -01725886 36 v 01 rag 0 004 @ 01724459 v 0000 ;c 07020895 n 0000 ;c 00543233 n 0000 + 07060844 n 0102 01 + 08 00 | play in ragtime; "rag that old tune" -01726039 36 v 01 bugle 0 004 @ 01724459 v 0000 ;c 00543233 n 0000 + 02912894 n 0101 + 09878179 n 0101 01 + 08 00 | play on a bugle -01726172 36 v 01 play 1 016 @ 02179518 v 0000 ;c 07020895 n 0000 ;c 00543233 n 0000 + 00101191 n 0101 $ 01725051 v 0000 ~ 01726605 v 0000 ~ 01726762 v 0000 ~ 01726879 v 0000 ~ 01727230 v 0000 ~ 01727354 v 0000 ~ 01727684 v 0000 ~ 01732532 v 0000 ~ 01732713 v 0000 ~ 01733667 v 0000 ~ 01733829 v 0000 ~ 01733994 v 0000 01 + 08 00 | perform music on (a musical instrument); "He plays the flute"; "Can you play on this old recorder?" -01726605 36 v 01 register 0 004 @ 01726172 v 0000 ;c 00543233 n 0000 + 05126849 n 0101 + 04987356 n 0101 01 + 02 00 | manipulate the registers of an organ -01726762 36 v 01 skirl 0 003 @ 01726172 v 0000 ;c 00543233 n 0000 + 07393988 n 0101 01 + 02 00 | play the bagpipes -01726879 36 v 01 beat 5 004 @ 01726172 v 0000 ;c 07020895 n 0000 + 07086518 n 0102 $ 01880673 v 0000 01 + 08 00 | produce a rhythm by striking repeatedly; "beat the drum" -01727052 36 v 02 symphonize 0 symphonise 0 004 @ 01725051 v 0000 ;c 00543233 n 0000 + 08248856 n 0102 + 07044760 n 0101 02 + 01 00 + 02 00 | play or sound together, in harmony -01727230 36 v 01 tweedle 0 002 @ 01726172 v 0000 ;c 00543233 n 0000 01 + 02 00 | play negligently on a musical instrument -01727354 36 v 01 chord 0 003 @ 01726172 v 0000 ;c 07020895 n 0000 + 06869951 n 0101 01 + 08 00 | play chords on (a string instrument) -01727490 36 v 04 reprise 0 reprize 0 repeat 1 recapitulate 0 004 @ 01724459 v 0000 ;c 00543233 n 0000 + 07039238 n 0401 + 07342049 n 0301 01 + 08 00 | repeat an earlier theme of a composition -01727684 36 v 01 pipe 0 006 @ 01726172 v 0000 ;c 00543233 n 0000 + 10435041 n 0101 + 00101708 n 0101 ^ 01050565 v 0101 + 03945615 n 0101 01 + 08 00 | play on a pipe; "pipe a tune" -01727866 36 v 01 slur 0 003 @ 01724459 v 0000 ;c 00543233 n 0000 + 06865953 n 0101 01 + 08 00 | play smoothly or legato; "the pianist slurred the most beautiful passage in the sonata" -01728052 36 v 01 pedal 0 004 * 01724459 v 0000 @ 01224744 v 0000 ;c 00543233 n 0000 + 06858674 n 0102 01 + 02 00 | operate the pedals on a keyboard instrument -01728213 36 v 01 bang_out 0 002 @ 01724459 v 0000 ;c 00543233 n 0000 01 + 08 00 | play loudly; "They banged out `The star-spangled banner'" -01728355 36 v 03 play_along 0 accompany 0 follow 1 004 @ 01725051 v 0000 ;c 00543233 n 0000 + 09760913 n 0201 + 07031752 n 0201 02 + 08 00 + 09 00 | perform an accompaniment to; "The orchestra could barely follow the frequent pitch changes of the soprano" -01728613 36 v 01 sing_along 0 002 @ 01729431 v 0000 + 01255648 n 0101 01 + 02 00 | sing with a choir or an orchestra; "Every year the local orchestra and choir perform the `Messiah' and the audience is invited to sing along" -01728840 36 v 05 improvise 0 improvize 0 ad-lib 0 extemporize 0 extemporise 0 007 @ 01712704 v 0000 + 00099588 n 0502 + 00099588 n 0401 + 06714697 n 0301 + 03565402 n 0101 + 00099588 n 0103 + 00178832 n 0101 02 + 02 00 + 08 00 | perform without preparation; "he extemporized a speech at the wedding" -01729142 36 v 01 modulate 0 003 @ 01724459 v 0000 ;c 00543233 n 0000 + 07087641 n 0102 01 + 08 00 | change the key of, in music; "modulate the melody" -01729295 36 v 01 bow 0 003 @ 01725051 v 0000 ;c 00543233 n 0000 + 02879517 n 0101 01 + 02 00 | play on a string instrument with a bow -01729431 36 v 01 sing 0 026 @ 00941990 v 0000 ;c 00543233 n 0000 + 07048000 n 0101 + 00546389 n 0101 + 10599806 n 0101 + 00545501 n 0101 ~ 01049276 v 0000 ~ 01049373 v 0000 ~ 01049470 v 0000 ~ 01049737 v 0000 ~ 01050651 v 0000 ~ 01050896 v 0000 ~ 01051271 v 0000 ~ 01055829 v 0000 ~ 01704030 v 0000 ~ 01704129 v 0000 ~ 01704236 v 0000 ~ 01706889 v 0000 ~ 01710836 v 0000 ~ 01728613 v 0000 ~ 01730059 v 0000 ~ 01730216 v 0000 ~ 01730384 v 0000 ~ 01730663 v 0000 ~ 01730799 v 0000 ~ 01731031 v 0000 03 + 02 00 + 22 00 + 27 00 | produce tones with the voice; "She was singing while she was cooking"; "My brother sings very well" -01730059 36 v 01 psalm 0 003 @ 01729431 v 0000 ;c 00543233 n 0000 + 10487363 n 0101 01 + 08 00 | sing or celebrate in psalms; "He psalms the works of God" -01730216 36 v 01 minstrel 0 004 @ 01729431 v 0000 ;c 00543233 n 0000 + 10321474 n 0101 + 10099093 n 0103 01 + 08 00 | celebrate by singing, in the style of minstrels -01730384 36 v 01 solmizate 0 005 @ 01729431 v 0000 ;c 00543233 n 0000 + 06867675 n 0101 + 01255935 n 0101 $ 01731353 v 0000 01 + 02 00 | sing using syllables like `do', `re' and `mi' to represent the tones of the scale; "The voice teacher showed the students how to solmizate" -01730663 36 v 02 tweedle 1 chirp 0 003 @ 01729431 v 0000 ;c 00543233 n 0000 + 07379409 n 0201 02 + 01 00 + 02 00 | sing in modulation -01730799 36 v 02 choir 0 chorus 0 009 @ 01729431 v 0000 ;c 00543233 n 0000 + 08187988 n 0201 + 08188449 n 0201 + 08187837 n 0201 + 07050177 n 0202 + 08188814 n 0101 + 08188638 n 0101 + 03024064 n 0101 01 + 02 00 | sing in a choir -01731031 36 v 01 sing 1 013 @ 01729431 v 0000 $ 01067816 v 0000 @ 01732172 v 0000 ;c 00543233 n 0000 + 07048000 n 0101 + 00546389 n 0101 + 10599806 n 0101 + 00545501 n 0101 ~ 01731353 v 0000 ~ 01731577 v 0000 ~ 01731718 v 0000 ~ 01731828 v 0000 ~ 01732014 v 0000 01 + 08 00 | deliver by singing; "Sing Christmas carols" -01731353 36 v 01 solmizate 1 005 $ 01730384 v 0000 @ 01731031 v 0000 ;c 07020895 n 0000 + 06867675 n 0101 + 01255935 n 0101 01 + 08 00 | sing by the syllables of solmization; "solmizate a song before you learn the lyrics" -01731577 36 v 01 troll 0 003 @ 01731031 v 0000 ;c 00543233 n 0000 + 07053089 n 0102 01 + 08 00 | sing the parts of (a round) in succession -01731718 36 v 01 hymn 0 003 ;c 00543233 n 0000 @ 01731031 v 0000 + 07035870 n 0101 01 + 02 00 | sing a hymn -01731828 36 v 01 carol 0 005 @ 01731031 v 0000 ;c 00543233 n 0000 + 00546613 n 0101 + 09896401 n 0102 + 09896401 n 0101 01 + 08 00 | sing carols; "They went caroling on Christmas Day" -01732014 36 v 01 madrigal 0 003 @ 01731031 v 0000 ;c 00543233 n 0000 + 07052925 n 0101 01 + 08 00 | sing madrigals; "The group was madrigaling beautifully" -01732172 36 v 02 interpret 0 render 3 011 @ 01712704 v 0000 ;c 06157326 n 0000 + 00100543 n 0201 + 06893565 n 0202 + 00100543 n 0202 + 01325017 a 0102 + 01325017 a 0101 + 05766247 n 0101 + 00100543 n 0103 + 10212780 n 0101 ~ 01731031 v 0000 02 + 08 00 + 09 00 | give an interpretation or rendition of; "The pianist rendered the Beethoven sonata beautifully" -01732532 36 v 01 drum 0 006 @ 01726172 v 0000 ;c 00543233 n 0000 + 07383475 n 0101 + 03249569 n 0101 + 10036929 n 0101 + 00545194 n 0101 01 + 02 00 | play a percussion instrument -01732713 36 v 01 harp 0 006 * 01592456 v 0000 @ 01726172 v 0000 ;c 00543233 n 0000 + 03494278 n 0103 + 03495258 n 0101 + 10160770 n 0102 01 + 02 00 | play the harp; "She harped the Saint-Saens beautifully" -01732921 36 v 03 conduct 0 lead 0 direct 2 006 @ 01712704 v 0000 ;c 00543233 n 0000 + 09952539 n 0303 + 01256743 n 0201 + 01133760 n 0101 $ 01733213 v 0000 01 + 08 00 | lead, as in the performance of a composition; "conduct an orchestra; Barenboim conducted the Chicago symphony for years" -01733213 36 v 01 conduct 4 005 $ 01732921 v 0000 @ 01714208 v 0000 ;c 00543233 n 0000 + 09952539 n 0101 + 01133760 n 0101 01 + 08 00 | lead musicians in the performance of; "Bernstein conducted Mahler like no other conductor"; "she cannot conduct modern pieces" -01733477 36 v 05 hold 0 throw 8 have 0 make 4 give 2 001 @ 02439501 v 0000 01 + 08 00 | organize or be responsible for; "hold a reception"; "have, throw, or make a party"; "give a course" -01733667 36 v 01 fiddle 0 005 @ 01726172 v 0000 ;c 00543233 n 0000 + 04536866 n 0102 + 10754578 n 0102 $ 01724891 v 0000 01 + 02 00 | play the violin or fiddle -01733829 36 v 01 trumpet 0 005 * 00007012 v 0000 @ 01726172 v 0000 ;c 00543233 n 0000 + 03110669 n 0103 + 10732010 n 0101 01 + 02 00 | play or blow on the trumpet -01733994 36 v 01 clarion 0 004 @ 01726172 v 0000 ;c 00543233 n 0000 ;c 05718935 n 0000 + 03037899 n 0101 01 + 02 00 | blow the clarion -01734131 36 v 02 double_tongue 0 triple-tongue 0 003 @ 01734300 v 0000 ;c 05718935 n 0000 ;c 00543233 n 0000 02 + 02 00 + 08 00 | play fast notes on a wind instrument -01734300 36 v 01 tongue 0 005 @ 01724459 v 0000 ;c 05718935 n 0000 ;c 00543233 n 0000 + 05301072 n 0101 ~ 01734131 v 0000 02 + 02 00 + 08 00 | articulate by tonguing, as when playing wind instruments -01734502 36 v 05 duplicate 0 reduplicate 0 double 0 repeat 0 replicate 0 013 @ 01736822 v 0000 + 01249060 n 0501 + 04076533 n 0501 + 00592539 a 0402 + 07342049 n 0401 + 01018630 n 0401 + 10511425 n 0402 + 10521470 n 0401 + 01018630 n 0402 + 05860200 n 0301 ~ 01734929 v 0000 ~ 01735144 v 0000 ~ 01735556 v 0000 01 + 08 00 | make or do or perform again; "He could never replicate his brilliant performance of the magic trick" -01734929 36 v 02 replicate 1 copy 3 003 @ 01734502 v 0000 ;c 06037666 n 0000 + 13549916 n 0101 03 + 01 00 + 08 00 + 11 00 | reproduce or make an exact copy of; "replicate the cell"; "copy the genetic information" -01735144 36 v 01 recapitulate 1 002 @ 01734502 v 0000 + 13531652 n 0102 01 + 11 00 | repeat stages of evolutionary development during the embryonic phase of life -01735308 36 v 01 duplicate 1 006 @ 01736822 v 0000 + 03257343 n 0101 + 03307981 n 0102 + 03257343 n 0102 + 01019703 n 0101 + 03257586 n 0101 02 + 08 00 + 11 00 | make a duplicate or duplicates of; "Could you please duplicate this letter for me?" -01735556 36 v 02 reduplicate 1 geminate 0 002 @ 01734502 v 0000 ;c 06172789 n 0000 01 + 08 00 | form by reduplication; "The consonant reduplicates after a short vowel"; "The morpheme can be reduplicated to emphasize the meaning of the word" -01735799 36 v 01 triplicate 0 002 @ 01736822 v 0000 + 04484780 n 0101 01 + 08 00 | reproduce threefold; "triplicate the letter for the committee" -01735947 36 v 01 quadruplicate 0 003 @ 01736822 v 0000 + 05860498 n 0101 + 04031166 n 0101 01 + 08 00 | reproduce fourfold; "quadruplicate the bill" -01736098 36 v 02 reprint 0 reissue 0 005 @ 01736822 v 0000 + 06270308 n 0201 + 06269785 n 0102 + 06270308 n 0102 + 06270308 n 0103 01 + 08 00 | print anew; "They never reprinted the famous treatise" -01736299 36 v 03 photocopy 0 run_off 0 xerox 0 007 @ 01736822 v 0000 + 04609235 n 0301 + 04608923 n 0301 + 03924679 n 0101 + 03924811 n 0101 ~ 01736523 v 0000 ~ 01736669 v 0000 02 + 02 00 + 08 00 | reproduce by xerography -01736523 36 v 01 microcopy 0 001 @ 01736299 v 0000 02 + 08 00 + 11 00 | photocopy printed or other graphic matter so that it is reduced in size -01736669 36 v 01 photostat 0 003 @ 01736299 v 0000 + 03927539 n 0101 + 03927299 n 0101 02 + 02 00 + 08 00 | make a copy by means of a Photostat device -01736822 36 v 01 reproduce 0 012 @ 01621555 v 0000 + 01019901 n 0101 ~ 01734502 v 0000 ~ 01735308 v 0000 ~ 01735799 v 0000 ~ 01735947 v 0000 ~ 01736098 v 0000 ~ 01736299 v 0000 ~ 01738347 v 0000 ~ 01742886 v 0000 ~ 01748748 v 0000 ~ 01749184 v 0000 01 + 08 00 | make a copy or equivalent of; "reproduce the painting" -01737141 36 v 01 reproduce 3 003 @ 00736799 v 0000 ;c 06156968 n 0000 ~ 01738107 v 0000 01 + 08 00 | recreate a sound, image, idea, mood, atmosphere, etc.; "this DVD player reproduces the sound of the piano very well"; "He reproduced the feeling of sadness in the portrait" -01737417 36 v 02 induce 3 induct 0 004 @ 01752884 v 0000 ;c 06090869 n 0000 + 11468172 n 0201 + 11468172 n 0101 02 + 08 00 + 11 00 | produce electric current by electrostatic or magnetic processes -01737617 36 v 01 recreate 5 002 @ 01617192 v 0000 ~ 01737778 v 0000 01 + 08 00 | create anew; "she recreated the feeling of the 1920's with her stage setting" -01737778 36 v 01 reinvent 0 001 @ 01737617 v 0000 01 + 08 00 | create anew and make over; "He reinvented African music for American listeners" -01737923 36 v 01 reinvent 1 001 @ 01753788 v 0000 01 + 08 00 | bring back into existence; "The candidate reinvented the concept of national health care so that he would get elected" -01738107 36 v 02 catch c get e 002 $ 00589904 v 0000 @ 01737141 v 0000 02 + 08 00 + 11 00 | apprehend and reproduce accurately; "She really caught the spirit of the place in her drawings"; "She got the mood just right in her photographs" -01738347 36 v 02 play_back 0 replay 1 004 @ 01736822 v 0000 + 01020117 n 0201 + 01020770 n 0101 + 03963294 n 0101 01 + 08 00 | reproduce (a recording) on a recorder; "The lawyers played back the conversation to show that their client was innocent" -01738597 36 v 03 evolve 0 germinate 0 develop 0 003 $ 01738774 v 0000 @ 01631534 v 0000 + 05834758 n 0203 01 + 08 00 | work out; "We have developed a new theory of evolution" -01738774 36 v 01 develop 1 004 @ 01753788 v 0000 + 00250259 n 0101 $ 01738597 v 0000 ~ 01739099 v 0000 02 + 08 00 + 11 00 | make something new, such as a product or a mental or artistic creation; "Her company developed a new kind of building material that withstands all kinds of weather"; "They developed a new technique" -01739099 36 v 01 build 4 001 @ 01738774 v 0000 02 + 08 00 + 11 00 | give form to, according to a plan; "build a modern nation"; "build a million-dollar business" -01739263 36 v 02 prefabricate 0 preassemble 0 003 @ 01621555 v 0000 ;c 00911048 n 0000 + 00926468 n 0101 01 + 08 00 | to manufacture sections of (a building), especially in a factory, so that they can be easily transported to and rapidly assembled on a building site of buildings -01739545 36 v 02 vamp 0 vamp_up 0 001 @ 01634424 v 0000 01 + 08 00 | make up; "vamp up an excuse for not attending the meeting" -01739675 36 v 02 fudge_together 0 throw_together 0 001 @ 01621555 v 0000 01 + 08 00 | produce shoddily, without much attention to detail -01739814 36 v 04 grow 0 raise 3 farm 0 produce 5 012 @ 01742726 v 0000 ;c 00916464 n 0000 + 07705711 n 0401 + 03322099 n 0301 + 10078806 n 0301 + 00916464 n 0301 + 09779790 n 0205 + 08438067 n 0101 + 09779790 n 0104 ~ 01740320 v 0000 ~ 01740468 v 0000 ~ 02652016 v 0000 02 + 08 00 + 11 00 | cultivate by growing, often involving improvements by means of agricultural techniques; "The Bordeaux region produces great red wines"; "They produce good ham in Parma"; "We grow wheat here"; "We raise hogs here" -01740320 36 v 01 carry 8 003 $ 01203074 v 0000 @ 01739814 v 0000 ;c 00916464 n 0000 01 + 11 00 | bear (a crop); "this land does not carry olives" -01740468 36 v 01 overproduce 0 002 @ 01739814 v 0000 + 00914343 n 0101 01 + 08 00 | produce in excess; produce more than needed or wanted -01740608 36 v 01 till 0 011 * 01741446 v 0000 @ 01668603 v 0000 ;c 00916464 n 0000 + 15074772 n 0101 + 10711005 n 0101 + 03146846 n 0102 + 09260907 n 0106 + 00918176 n 0101 + 00918820 n 0101 ~ 01741864 v 0000 ~ 01742556 v 0000 02 + 02 00 + 08 00 | work land as by ploughing, harrowing, and manuring, in order to make it ready for cultivation; "till the soil" -01740969 36 v 01 garden 0 009 @ 02549847 v 0000 ;c 00918383 n 0000 + 08439808 n 0101 + 03417749 n 0101 + 03417345 n 0101 + 10120671 n 0101 + 10120533 n 0101 + 00918383 n 0101 ~ 01741221 v 0000 01 + 02 00 | work in the garden; "My hobby is gardening" -01741221 36 v 01 landscape 0 005 @ 01740969 v 0000 ;c 00918383 n 0000 + 10245863 n 0104 + 00921160 n 0101 $ 01751836 v 0000 01 + 02 00 | do landscape gardening; "My sons landscapes for corporations and earns a good living" -01741446 36 v 03 cultivate 1 crop 1 work 9 007 @ 00406243 v 0000 ;c 00916464 n 0000 + 13085864 n 0201 + 00915722 n 0101 + 03146846 n 0101 $ 01235355 v 0000 ~ 01741692 v 0000 01 + 08 00 | prepare for crops; "Work the soil"; "cultivate the land" -01741692 36 v 02 overcrop 0 overcultivate 0 002 @ 01741446 v 0000 ;c 00916464 n 0000 01 + 08 00 | to exhaust by excessive cultivation; "the farmers overcropped the land" -01741864 36 v 03 plow 0 plough 0 turn 0 010 * 01309701 v 0000 @ 01740608 v 0000 ;c 00916464 n 0000 + 03967562 n 0202 + 00918644 n 0202 + 10442815 n 0103 + 03967562 n 0101 + 00918644 n 0101 ~ 01742244 v 0000 ~ 01742415 v 0000 02 + 02 00 + 08 00 | to break and turn over earth especially with a plow; "Farmer Jones plowed his east field last week"; "turn the earth in the Spring" -01742244 36 v 01 ridge 0 003 @ 01741864 v 0000 ;c 00916464 n 0000 + 13902048 n 0101 01 + 08 00 | plough alternate strips by throwing the furrow onto an unploughed strip -01742415 36 v 02 harrow 0 disk 0 003 @ 01741864 v 0000 ;c 00916464 n 0000 + 03496612 n 0101 02 + 02 00 + 08 00 | draw a harrow over (land) -01742556 36 v 01 hoe 0 004 * 01309701 v 0000 @ 01740608 v 0000 ;c 00916464 n 0000 + 03524574 n 0101 02 + 02 00 + 08 00 | dig with a hoe; "He is hoeing the flower beds" -01742726 36 v 01 cultivate 0 005 ;c 00916464 n 0000 + 00915722 n 0101 + 09779790 n 0103 + 13454318 n 0101 ~ 01739814 v 0000 01 + 08 00 | foster the growth of -01742886 36 v 03 imitate 0 copy 0 simulate 4 013 @ 01736822 v 0000 + 03104594 n 0201 + 01019524 n 0201 + 01216456 a 0101 + 01020936 n 0101 + 09964411 n 0102 ~ 00150776 v 0000 ~ 00849332 v 0000 ~ 01743313 v 0000 ~ 01743531 v 0000 ~ 01743784 v 0000 ~ 01744450 v 0000 ~ 02675701 v 0000 01 + 08 00 | reproduce someone's behavior or looks; "The mime imitated the passers-by"; "Children often copy their parents or older siblings" -01743313 36 v 01 take_off 0 003 @ 01742886 v 0000 + 00549610 n 0103 + 06780309 n 0106 04 + 08 00 + 09 00 + 10 00 + 11 00 | mimic or imitate in an amusing or satirical manner; "This song takes off from a famous aria" -01743531 36 v 02 mimic 0 mime 1 004 @ 01742886 v 0000 + 10319163 n 0102 + 10319163 n 0101 + 10318892 n 0201 03 + 08 00 + 09 00 + 11 00 | imitate (a person or manner), especially for satirical effect; "The actor mimicked the President very accurately" -01743784 36 v 02 model 2 pattern 0 011 @ 01742886 v 0000 + 05938795 n 0201 + 05902327 n 0203 + 00898804 n 0101 + 05937112 n 0101 + 03777283 n 0101 + 05890249 n 0101 + 10325774 n 0102 + 10325774 n 0101 ~ 01744082 v 0000 ~ 01744266 v 0000 01 + 21 00 | plan or create according to a model or models -01744082 36 v 01 scale 0 003 @ 01743784 v 0000 + 13816862 n 0101 + 13850304 n 0101 01 + 08 00 | pattern, make, regulate, set, measure, or estimate according to some rate or standard -01744266 36 v 02 sovietize 0 sovietise 0 001 @ 01743784 v 0000 01 + 08 00 | model a country's social, political, and economic structure on the Soviet Union; "Castro sovietized Cuba" -01744450 36 v 02 take_after 0 follow 0 001 @ 01742886 v 0000 01 + 09 00 | imitate in behavior; take as a model; "Teenagers follow their friends in everything" -01744611 36 v 02 publish 0 write 2 004 @ 01697816 v 0000 + 10794014 n 0201 + 06589574 n 0101 $ 01698271 v 0000 02 + 02 00 + 08 00 | have (one's written work) issued for publication; "How many books did Georges Simenon write?"; "She published 25 books during her long career" -01744888 36 v 02 typeset 0 set b 002 @ 01747945 v 0000 + 09949946 n 0102 01 + 08 00 | set in type; "My book will be typeset nicely"; "set these words in italics" -01745052 36 v 01 prove 0 001 @ 01747945 v 0000 01 + 08 00 | take a trial impression of -01745141 36 v 02 format 0 arrange 2 005 @ 00109660 v 0000 + 04677385 n 0101 + 06636806 n 0102 ~ 01745377 v 0000 ~ 01756875 v 0000 01 + 08 00 | set (printed matter) into a specific format; "Format this letter so it can be printed out" -01745377 36 v 01 indent 0 003 @ 01745141 v 0000 + 06389753 n 0103 + 06389753 n 0101 01 + 08 00 | set in from the margin; "Indent the paragraphs of a letter" -01745536 36 v 04 table 0 tabularize 0 tabularise 0 tabulate 0 004 @ 01706129 v 0000 + 07002992 n 0401 + 00652659 n 0401 + 08266235 n 0401 01 + 08 00 | arrange or enter in tabular form -01745722 36 v 02 print 2 publish 1 014 @ 01621555 v 0000 + 06589574 n 0201 + 01103614 n 0202 + 01101958 n 0201 + 10491575 n 0201 + 10491309 n 0201 + 08062623 n 0201 + 06678302 n 0101 + 10475297 n 0101 + 04004767 n 0101 + 04004475 n 0101 + 06677302 n 0101 ~ 01746145 v 0000 ~ 01746604 v 0000 01 + 08 00 | put into print; "The newspaper published the news of the royal couple's divorce"; "These news should not be printed" -01746145 36 v 01 republish 0 004 @ 01745722 v 0000 + 07258964 n 0101 + 01102574 n 0101 + 01102574 n 0102 02 + 02 00 + 08 00 | publish again; "The scientist republished his results after he made some corrections" -01746359 36 v 02 carry 0 run 2 001 @ 00968211 v 0000 02 + 08 00 + 11 00 | include as the content; broadcast or publicize; "We ran the ad three times"; "This paper carries a restaurant review"; "All major networks carried the press conference" -01746604 36 v 01 gazette 0 002 @ 01745722 v 0000 + 06267655 n 0101 02 + 08 00 + 26 00 | publish in a gazette -01746715 36 v 01 print 3 002 @ 01691057 v 0000 ~ 01746839 v 0000 02 + 02 00 + 08 00 | write as if with print; not cursive -01746839 36 v 01 misprint 0 002 @ 01746715 v 0000 + 06769670 n 0101 01 + 08 00 | print incorrectly -01746940 36 v 01 offset 0 002 @ 01747945 v 0000 + 06680570 n 0101 01 + 08 00 | produce by offset printing; "offset the conference proceedings" -01747085 36 v 01 offset 1 002 @ 01617192 v 0000 + 04176747 n 0103 01 + 08 00 | create an offset in; "offset a wall" -01747203 36 v 02 scribble 0 scrawl 0 005 @ 01691057 v 0000 + 10563940 n 0201 + 06404147 n 0203 + 06404147 n 0101 + 10563940 n 0102 02 + 02 00 + 08 00 | write carelessly -01747374 36 v 01 copy 5 006 @ 01691057 v 0000 + 09964805 n 0101 + 06505517 n 0102 + 01019524 n 0101 ~ 01695143 v 0000 ~ 01747602 v 0000 01 + 08 00 | copy down as is; "The students were made to copy the alphabet over and over" -01747602 36 v 01 copy_out 0 001 @ 01747374 v 0000 01 + 08 00 | copy very carefully and as accurately as possible -01747717 36 v 02 program 0 programme 0 008 @ 01631534 v 0000 ;c 06128570 n 0000 + 06568978 n 0202 + 00928947 n 0201 + 06568978 n 0101 + 10481268 n 0101 + 00928947 n 0102 ~ 00526441 v 0000 01 + 02 00 | write a computer program -01747945 36 v 02 print 0 impress 0 014 @ 01691057 v 0000 + 06678302 n 0101 + 10475297 n 0101 + 04004767 n 0101 + 04004475 n 0101 + 06677302 n 0101 ~ 01692579 v 0000 ~ 01744888 v 0000 ~ 01745052 v 0000 ~ 01746940 v 0000 ~ 01748273 v 0000 ~ 01748578 v 0000 ~ 01748916 v 0000 ~ 01749017 v 0000 01 + 08 00 | reproduce by printing -01748273 36 v 02 overprint 0 print_over 0 003 @ 01747945 v 0000 + 03865704 n 0101 ~ 01748462 v 0000 02 + 08 00 + 11 00 | print (additional text or colors) onto an already imprinted paper -01748462 36 v 01 surcharge 0 001 @ 01748273 v 0000 01 + 08 00 | print a new denomination on a stamp or a banknote -01748578 36 v 01 cyclostyle 0 002 @ 01747945 v 0000 + 03155915 n 0101 01 + 08 00 | print with an implement with small toothed wheels that cuts small holes in a stencil -01748748 36 v 01 fingerprint 0 004 @ 01736822 v 0000 + 04694980 n 0102 + 06644393 n 0101 + 00152338 n 0101 01 + 08 00 | take an impression of a person's fingerprints -01748916 36 v 01 boldface 0 002 @ 01747945 v 0000 + 06827219 n 0101 01 + 08 00 | print in boldface -01749017 36 v 02 italicize 0 italicise 0 005 @ 01747945 v 0000 + 06350918 n 0201 + 06827344 n 0201 + 06350918 n 0101 + 06827344 n 0101 01 + 08 00 | print in italics -01749184 36 v 01 print 1 007 @ 01736822 v 0000 + 03926575 n 0102 ~ 01749394 v 0000 ~ 01749554 v 0000 ~ 01749660 v 0000 ~ 01749790 v 0000 ~ 01750421 v 0000 01 + 08 00 | make into a print; "print the negative" -01749394 36 v 01 lithograph 0 005 @ 01749184 v 0000 ;c 00933420 n 0000 + 03677976 n 0101 + 03678220 n 0101 + 10266486 n 0101 01 + 08 00 | make by lithography -01749554 36 v 01 silkscreen 0 002 @ 01749184 v 0000 ;c 00933420 n 0000 01 + 08 00 | print by silkscreen -01749660 36 v 01 stencil 0 003 @ 01749184 v 0000 ;c 00933420 n 0000 + 04314216 n 0101 01 + 08 00 | mark or print with a stencil -01749790 36 v 02 engrave 0 etch 2 007 @ 01749184 v 0000 ;c 00933420 n 0000 + 01103374 n 0101 + 10058027 n 0101 + 00938791 n 0101 ~ 01750061 v 0000 ~ 01750302 v 0000 01 + 08 00 | carve or cut into a block used for printing or print from such a block; "engrave a letter" -01750061 36 v 01 benday 0 001 @ 01749790 v 0000 01 + 08 00 | reproduce by the Benday process -01750156 36 v 01 scrape 0 002 @ 01617192 v 0000 + 04150980 n 0101 02 + 08 00 + 11 00 | make by scraping; "They scraped a letter into the stone" -01750302 36 v 01 stipple 0 002 @ 01749790 v 0000 ;c 00933420 n 0000 01 + 08 00 | engrave by means of dots and flicks -01750421 36 v 01 etch 0 008 * 00273963 v 0000 @ 01749184 v 0000 ;c 00933420 n 0000 + 10064977 n 0101 + 03299519 n 0101 + 03299406 n 0101 + 00938791 n 0102 ~ 01750668 v 0000 01 + 08 00 | make an etching of; "He etched her image into the surface" -01750668 36 v 01 aquatint 0 004 @ 01750421 v 0000 ;c 00933420 n 0000 + 02732295 n 0101 + 00939091 n 0101 02 + 02 00 + 08 00 | etch in aquatint -01750813 36 v 01 confect 1 001 @ 01621555 v 0000 01 + 08 00 | make or construct -01750895 36 v 01 corduroy 0 002 @ 01654628 v 0000 + 03107609 n 0101 01 + 08 00 | build (a road) from logs laid side by side -01751021 36 v 01 fringe 0 003 @ 01675963 v 0000 ;c 00714944 n 0000 + 03397762 n 0101 01 + 08 00 | adorn with a fringe; "The weaver fringed the scarf" -01751173 36 v 04 overact 0 ham_it_up 0 ham 0 overplay 0 006 @ 01719921 v 0000 ;c 07006119 n 0000 + 10158010 n 0301 + 00551585 n 0301 + 00551585 n 0102 ! 01751389 v 0101 02 + 02 00 + 08 00 | exaggerate one's acting -01751389 36 v 02 underact 0 underplay 0 003 @ 01719921 v 0000 ;c 07006119 n 0000 ! 01751173 v 0101 02 + 02 00 + 08 00 | act (a role) with great restraint -01751545 36 v 01 heel 0 005 @ 01708676 v 0000 ;c 00428270 n 0000 ;c 07020538 n 0000 + 05578095 n 0101 + 03511426 n 0101 01 + 08 00 | perform with the heels; "heel that dance" -01751722 36 v 01 fret 0 002 @ 01675963 v 0000 + 03396311 n 0101 01 + 08 00 | decorate with an interlaced design -01751836 36 v 01 landscape 1 005 $ 01741221 v 0000 @ 01675963 v 0000 ;c 00918383 n 0000 + 10245863 n 0104 + 03640288 n 0101 01 + 08 00 | embellish with plants; "Let's landscape the yard" -01752025 36 v 01 fret 1 004 @ 01256157 v 0000 ;c 00714944 n 0000 + 03396311 n 0101 ~ 01752162 v 0000 01 + 08 00 | carve a pattern into -01752162 36 v 01 honeycomb 0 002 @ 01752025 v 0000 + 03530642 n 0101 02 + 08 00 + 11 00 | carve a honeycomb pattern into; "The cliffs were honeycombed" -01752316 36 v 01 proof 0 003 @ 01621555 v 0000 + 04011130 n 0101 + 06590885 n 0101 01 + 08 00 | make or take a proof of, such as a photographic negative, an etching, or typeset -01752495 36 v 02 produce 2 bring_forth 0 006 @ 01617192 v 0000 + 07328756 n 0101 ~ 00056930 v 0000 ~ 01752728 v 0000 ~ 01753272 v 0000 ~ 01758882 v 0000 02 + 08 00 + 11 00 | bring forth or yield; "The tree would not produce fruit" -01752728 36 v 01 sporulate 0 004 @ 01752495 v 0000 ;c 06066555 n 0000 + 13517199 n 0102 $ 00116496 v 0000 01 + 01 00 | produce spores; "plants sporulate" -01752884 36 v 03 produce 3 bring_about 3 give_rise 1 004 @ 01617192 v 0000 + 11415842 n 0101 ~ 01737417 v 0000 ~ 02635659 v 0000 02 + 11 00 + 22 03 | cause to happen, occur or exist; "This procedure produces a curious effect"; "The new law gave rise to many complaints"; "These chemicals produce a noxious vapor"; "the new President must bring about a change in the health care system" -01753272 36 v 02 grind_out 0 crank_out 0 001 @ 01752495 v 0000 02 + 08 00 + 11 00 | produce in a routine or monotonous manner; "We have to crank out publications in order to receive funding" -01753465 36 v 01 make_up 3 001 @ 01640550 v 0000 01 + 08 00 | devise or compose; "This designer makes up our Spring collections" -01753596 36 v 01 design 7 005 $ 01640550 v 0000 @ 01640207 v 0000 + 03178782 n 0101 + 10210648 n 0102 + 09972157 n 0104 01 + 02 00 | create designs; "Dupont designs for the house of Chanel" -01753788 36 v 01 create 2 009 + 00585202 a 0101 + 07328942 n 0101 + 03129123 n 0101 + 00237869 n 0101 + 00240184 n 0106 + 00908492 n 0101 ~ 01737923 v 0000 ~ 01738774 v 0000 ~ 01758526 v 0000 02 + 08 00 + 11 00 | bring into existence; "The company was created 25 years ago"; "He created a new movement in painting" -01754105 36 v 01 press 1 003 @ 01617192 v 0000 + 00113113 n 0101 + 03999992 n 0101 02 + 08 00 + 11 00 | create by pressing; "Press little holes into the soft clay" -01754271 36 v 01 prepare 2 002 @ 01617192 v 0000 ~ 01754452 v 0000 01 + 08 00 | to prepare verbally, either for written or spoken delivery; "prepare a report"; "prepare a speech" -01754452 36 v 03 rough_in 0 rough 1 rough_out 0 001 @ 01754271 v 0000 01 + 08 00 | prepare in preliminary or sketchy form -01754576 36 v 02 write_out 0 write_up 0 002 @ 01698271 v 0000 ;c 00929718 n 0000 01 + 08 00 | put into writing; write in complete form; "write out a contract" -01754737 36 v 01 cut b 004 @ 01617192 v 0000 + 00942234 n 0102 + 00359238 n 0102 $ 01754915 v 0000 02 + 08 00 + 11 00 | form or shape by cutting or incising; "cut paper dolls" -01754915 36 v 01 cut 1 003 $ 01754737 v 0000 @ 01617192 v 0000 ~ 01758276 v 0000 02 + 08 00 + 11 00 | form by probing, penetrating, or digging; "cut a hole"; "cut trenches"; "The sweat cut little rivulets into her face" -01755137 36 v 02 graph 0 chart 4 003 @ 01686132 v 0000 + 09910840 n 0201 + 07000195 n 0101 01 + 08 00 | represent by means of a graph; "chart the data" -01755291 36 v 01 graph 1 002 @ 01693453 v 0000 + 07000195 n 0101 01 + 08 00 | plot upon a graph -01755389 36 v 01 shimmy 0 003 @ 01708676 v 0000 ;c 00428270 n 0000 + 00533535 n 0101 01 + 02 00 | dance a shimmy -01755504 36 v 01 make a 003 $ 01664172 v 0000 $ 00276068 v 0000 @ 01653013 v 0000 01 + 08 00 | gather and light the materials for; "make a fire" -01755651 36 v 01 raise 6 001 @ 01617192 v 0000 01 + 08 00 | create a disturbance, especially by making a great noise; "raise hell"; "raise the roof"; "raise Cain" -01755816 36 v 01 make c 003 $ 02560585 v 0000 @ 01712704 v 0000 ~ 02488056 v 0000 01 + 08 00 | perform or carry out; "make a decision"; "make a move"; "make advances"; "make a phone call" -01756006 36 v 01 beat 2 002 * 01929467 v 0000 @ 01617192 v 0000 01 + 08 00 | make by pounding or trampling; "beat a path through the forest" -01756149 36 v 02 map 3 map_out 3 001 @ 01638368 v 0000 01 + 08 00 | plan, delineate, or arrange in detail; "map one's future" -01756277 36 v 02 cut 6 burn 5 002 @ 01621555 v 0000 $ 01756416 v 0000 01 + 08 00 | create by duplicating data; "cut a disk"; "burn a CD" -01756416 36 v 01 cut 4 003 $ 01756277 v 0000 @ 00998399 v 0000 $ 01756563 v 0000 01 + 08 00 | record a performance on (a medium); "cut a record" -01756563 36 v 01 cut 5 002 $ 01756416 v 0000 @ 00998399 v 0000 01 + 08 00 | make a recording of; "cut the songs"; "She cut all of her major titles again" -01756719 36 v 01 script 0 003 @ 01698271 v 0000 ;c 00929718 n 0000 + 07009946 n 0101 01 + 08 00 | write a script for; "The playwright scripted the movie" -01756875 36 v 01 rubricate 1 001 @ 01745141 v 0000 01 + 08 00 | furnish with rubrics or regulate by rubrics; "the manuscript is not rubricated" -01757021 36 v 02 channelize 0 channelise 0 001 @ 01654628 v 0000 01 + 08 00 | make a channel for; provide with a channel; "channelize the country for better transportation" -01757196 36 v 01 demyelinate 0 001 @ 01619929 v 0000 01 + 11 00 | destroy the myelin sheath of; "the disease demyelinated the nerve fibers" -01757338 36 v 01 facilitate 3 004 @ 01645601 v 0000 ;c 05005064 n 0000 + 01196648 a 0101 + 11454042 n 0101 01 + 11 00 | increase the likelihood of (a response); "The stimulus facilitates a delayed impulse" -01757546 36 v 01 construct 2 001 @ 01631534 v 0000 01 + 08 00 | create by organizing and linking ideas, arguments, or concepts; "construct a proof"; "construct an argument" -01757721 36 v 01 construct 3 001 @ 01631534 v 0000 01 + 08 00 | create by linking linguistic units; "construct a sentence"; "construct a paragraph" -01757871 36 v 01 filigree 0 002 @ 01658762 v 0000 + 03337822 n 0101 01 + 02 00 | make filigree, as with a precious metal -01757994 36 v 03 release 3 free 3 liberate 3 002 @ 01627355 v 0000 ;c 06084469 n 0000 01 + 08 00 | release (gas or energy) as a result of a chemical reaction or physical decomposition -01758180 36 v 01 embattle 0 001 @ 01651444 v 0000 01 + 02 00 | prepare for battle or conflict -01758276 36 v 01 blast 2 001 @ 01754915 v 0000 01 + 08 00 | make with or as if with an explosion; "blast a tunnel through the Alps" -01758410 36 v 01 chop 0 001 @ 01617192 v 0000 01 + 08 00 | form or shape by chopping; "chop a hole in the ground" -01758526 36 v 01 carve_out 0 001 @ 01753788 v 0000 01 + 08 00 | establish or create through painstaking effort; "She carved out a reputation among her male colleagues" -01758696 36 v 01 manufacture 2 001 @ 01617192 v 0000 01 + 08 00 | create or produce in a mechanical way; "This novelist has been manufacturing his books following his initial success" -01758882 36 v 01 manufacture 3 001 @ 01752495 v 0000 01 + 11 00 | produce naturally; "this gland manufactures a specific substance only" -01759021 36 v 02 blast 0 shell 0 001 @ 01617192 v 0000 02 + 08 00 + 11 00 | create by using explosives; "blast a passage through the mountain" -01759166 36 v 01 busk 0 001 @ 01725051 v 0000 01 + 02 00 | play music in a public place and solicit money for it; "three young men were busking in the plaza" -01759326 37 v 08 arouse 0 elicit 0 enkindle 0 kindle 0 evoke 0 fire 0 raise 8 provoke 0 022 @ 01617192 v 0000 + 01896478 a 0801 + 09184975 n 0803 + 01977669 a 0501 + 05827253 n 0501 + 05827253 n 0203 + 00242808 n 0101 ~ 01759926 v 0000 ~ 01760143 v 0000 ~ 01760300 v 0000 ~ 01760552 v 0000 ~ 01760677 v 0000 ~ 01760945 v 0000 ~ 01761120 v 0000 ~ 01761706 v 0000 ~ 01772960 v 0000 ~ 01785971 v 0000 ~ 01790020 v 0000 ~ 01792287 v 0000 ~ 01793177 v 0000 ~ 01809321 v 0000 ~ 01821423 v 0000 01 + 08 00 | call forth (emotions, feelings, and responses); "arouse pity"; "raise a smile"; "evoke sympathy" -01759926 37 v 02 strike_a_chord 1 touch_a_chord 0 001 @ 01759326 v 0000 02 + 01 00 + 02 00 | evoke a reaction, response, or emotion; "this writer strikes a chord with young women"; "The storyteller touched a chord" -01760143 37 v 02 invite 1 ask_for 0 002 @ 01759326 v 0000 + 04689048 n 0101 01 + 08 00 | increase the likelihood of; "ask for trouble"; "invite criticism" -01760300 37 v 01 draw 1 002 @ 01759326 v 0000 $ 02293148 v 0000 01 + 08 00 | elicit responses, such as objections, criticism, applause, etc.; "The President's comments drew sharp criticism from the Republicans"; "The comedian drew a lot of laughter" -01760552 37 v 01 rekindle 0 001 @ 01759326 v 0000 02 + 08 00 + 11 00 | arouse again; "rekindle hopes"; "rekindle her love" -01760677 37 v 01 infatuate 0 004 @ 01759326 v 0000 + 07544351 n 0104 + 07481084 n 0101 + 05813109 n 0101 02 + 09 00 + 10 00 | arouse unreasoning love or passion in and cause to behave in an irrational way; "His new car has infatuated him"; "love has infatuated her" -01760945 37 v 01 prick 0 001 @ 01759326 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to cause a sharp emotional pain; "The thought of her unhappiness pricked his conscience" -01761120 37 v 06 inflame 0 stir_up 0 wake 0 ignite 0 heat 0 fire_up 0 006 @ 01759326 v 0000 + 04628192 n 0501 + 01897378 a 0103 + 01261712 n 0101 + 01261712 n 0102 ~ 01761533 v 0000 02 + 08 00 + 11 00 | arouse or excite feelings and passions; "The ostentatious way of living of the rich ignites the hatred of the poor"; "The refugees' fate stirred up compassion around the world"; "Wake old feelings of hatred" -01761533 37 v 01 ferment 0 002 @ 01761120 v 0000 + 13979503 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | work up into agitation or excitement; "Islam is fermenting Africa" -01761706 37 v 05 stimulate 0 shake 0 shake_up 0 excite 0 stir 1 014 @ 01759326 v 0000 + 07514345 n 0501 + 10555679 n 0502 ^ 02585050 v 0503 + 14037011 n 0401 + 14037011 n 0402 ~ 01762178 v 0000 ~ 01762283 v 0000 ~ 01779165 v 0000 ~ 01796346 v 0000 ~ 01807529 v 0000 ~ 01811736 v 0000 ~ 01812720 v 0000 ~ 01816219 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | stir the feelings, emotions, or peace of; "These stories shook the community"; "the civil war shook the country" -01762178 37 v 01 fuel 0 001 @ 01761706 v 0000 01 + 10 00 | stimulate; "fuel the debate on creationism" -01762283 37 v 05 arouse 1 sex 0 excite 1 turn_on 0 wind_up 0 005 @ 01761706 v 0000 + 05828102 n 0401 + 07487695 n 0201 + 00844254 n 0203 ~ 01807770 v 0000 02 + 09 00 + 10 00 | stimulate sexually; "This movie usually arouses the male audience" -01762528 37 v 07 agitate 0 rouse 4 turn_on 2 charge 5 commove 0 excite 3 charge_up 0 012 @ 01770501 v 0000 + 02309971 a 0601 + 01260867 n 0602 + 07528470 n 0403 + 05828102 n 0301 + 00242808 n 0202 + 01896925 a 0101 ! 01764800 v 0101 ~ 01763482 v 0000 ~ 01791535 v 0000 ~ 01820077 v 0000 ~ 01830798 v 0000 02 + 09 00 + 10 00 | cause to be agitated, excited, or roused; "The speaker charged up the crowd with his inflammatory remarks" -01762963 37 v 01 jolt 0 001 @ 01770501 v 0000 02 + 09 00 + 10 00 | disturb (someone's) composure; "The audience was jolted by the play" -01763101 37 v 03 bubble_over 0 overflow 0 spill_over 0 001 @ 01767612 v 0000 01 + 02 00 | overflow with a certain feeling; "The children bubbled over with joy"; "My boss was bubbling over with anger" -01763303 37 v 01 ferment 1 002 @ 01767612 v 0000 + 13979503 n 0103 02 + 01 00 + 02 00 | be in an agitated or excited state; "The Middle East is fermenting"; "Her mind ferments" -01763482 37 v 02 hype_up 0 psych_up 0 001 @ 01762528 v 0000 02 + 09 00 + 10 00 | get excited or stimulated; "The children were all psyched up after the movie" -01763643 37 v 01 lull 1 003 @ 01764800 v 0000 + 14522956 n 0101 + 15274441 n 0102 02 + 09 00 + 10 00 | calm by deception; "Don't let yourself be lulled into a false state of security" -01763829 37 v 07 calm 1 calm_down 1 cool_off 0 chill_out 0 simmer_down 0 settle_down 0 cool_it 0 002 @ 00146138 v 0000 + 04903813 n 0102 02 + 01 00 + 02 00 | become quiet or calm, especially after a state of agitation; "After the fight both men need to cool off."; "It took a while after the baby was born for things to settle down again." -01764171 37 v 07 perturb 0 unhinge 0 disquiet 0 trouble 0 cark 0 distract 2 disorder 0 009 @ 01770501 v 0000 + 05684440 n 0601 + 07524242 n 0402 + 07289014 n 0401 + 04904851 n 0301 + 07524760 n 0302 + 14403282 n 0102 + 04904996 n 0101 ~ 01765908 v 0000 02 + 09 00 + 10 00 | disturb in mind or make uneasy or cause to be worried or alarmed; "She was rather perturbed by the news that her father was seriously ill" -01764586 37 v 02 unbalance 0 derange 1 003 @ 01787822 v 0000 + 14397714 n 0201 + 14397714 n 0103 01 + 10 00 | derange mentally, throw out of mental balance; make insane; "The death of his parents unbalanced him" -01764800 37 v 09 calm 0 calm_down 0 quiet 0 tranquilize 0 tranquillize 0 tranquillise 0 quieten 0 lull 0 still 0 010 @ 01814815 v 0000 + 04982478 n 0903 + 15274441 n 0802 + 04470232 n 0401 + 04904352 n 0302 ! 01762528 v 0101 ~ 01763643 v 0000 ~ 01765178 v 0000 ~ 01765392 v 0000 ~ 01766407 v 0000 02 + 09 00 + 10 00 | make calm or still; "quiet the dragons of worry and fear" -01765178 37 v 01 compose 0 002 @ 01764800 v 0000 + 04903813 n 0101 02 + 09 00 + 10 00 | calm (someone, especially oneself); make quiet; "She had to compose herself before she could reply to this terrible insult" -01765392 37 v 09 pacify 0 lenify 0 conciliate 0 assuage 0 appease 0 mollify 0 placate 0 gentle 0 gruntle 0 015 @ 01764800 v 0000 + 00759826 a 0703 + 00759826 a 0704 + 01151407 n 0701 + 13970764 n 0601 + 01151097 n 0602 + 01784946 a 0501 + 00759551 a 0302 + 13971561 n 0301 + 01151407 n 0302 + 09952163 n 0301 + 01151097 n 0101 + 13969700 n 0101 + 07515790 n 0101 + 03075768 n 0102 03 + 08 00 + 09 00 + 10 00 | cause to be more favorably inclined; gain the good will of; "She managed to mollify the angry customer" -01765908 37 v 02 worry 1 vex 2 010 > 01767163 v 0000 @ 01764171 v 0000 + 05832264 n 0204 + 05832264 n 0102 + 00425278 n 0102 ! 01766407 v 0101 ~ 00733454 v 0000 ~ 01766273 v 0000 ~ 01766638 v 0000 $ 01767163 v 0000 02 + 09 00 + 10 00 | disturb the peace of mind of; afflict with mental agitation or distress; "I cannot sleep--my daughter's health is worrying me" -01766273 37 v 02 eat 0 eat_on 0 001 @ 01765908 v 0000 01 + 10 00 | worry or cause anxiety in a persistent way; "What's eating you?" -01766407 37 v 02 reassure 0 assure 0 003 @ 01764800 v 0000 + 01215719 n 0101 ! 01765908 v 0101 02 + 09 00 + 10 00 | cause to feel sure; give reassurance to; "The airline tried to reassure the customers that the planes were safe" -01766638 37 v 01 nag 0 001 @ 01765908 v 0000 01 + 10 00 | worry persistently; "nagging concerns and doubts" -01766748 37 v 02 worry c care c 006 @ 00724492 v 0000 + 07524529 n 0202 + 07505047 n 0201 + 07524242 n 0101 + 05832264 n 0102 ~ 00704249 v 0000 01 + 22 00 | be concerned with; "I worry about my grades" -01766952 37 v 02 retire 0 withdraw 0 005 @ 00076114 v 0000 + 10785333 n 0201 + 07506031 n 0201 $ 02380009 v 0000 ~ 02380980 v 0000 02 + 02 00 + 22 00 | lose interest; "he retired from life when his wife died" -01767163 37 v 01 worry 0 009 $ 01765908 v 0000 + 04711435 n 0103 + 10792178 n 0101 + 07524242 n 0101 + 05832264 n 0102 ~ 01767461 v 0000 ~ 01780729 v 0000 ~ 01793933 v 0000 ~ 01831143 v 0000 03 + 02 00 + 22 00 + 26 00 | be worried, concerned, anxious, troubled, or uneasy; "I worry about my job" -01767461 37 v 01 fret 0 002 @ 01767163 v 0000 ~ 01820189 v 0000 02 + 02 00 + 22 00 | be agitated or irritated; "don't fret over these small details" -01767612 37 v 02 seethe 0 boil 0 004 @ 02604760 v 0000 ~ 01763101 v 0000 ~ 01763303 v 0000 ~ 01767818 v 0000 02 + 02 00 + 22 00 | be in an agitated emotional state; "The customer was seething with anger" -01767818 37 v 01 sizzle 0 001 @ 01767612 v 0000 01 + 01 00 | seethe with deep anger or resentment; "She was sizzling with anger" -01767949 37 v 04 affect 0 impress 1 move 0 strike 0 027 $ 02108791 v 0000 > 01771535 v 0000 + 02364448 a 0203 + 00835292 a 0201 + 01282014 a 0201 + 00854255 a 0102 + 07479926 n 0101 ~ 00605498 v 0000 ~ 00725274 v 0000 ~ 00728393 v 0000 ~ 00736095 v 0000 $ 01649999 v 0000 ~ 01768630 v 0000 ~ 01768764 v 0000 ~ 01768935 v 0000 ~ 01769090 v 0000 ~ 01769220 v 0000 ~ 01769413 v 0000 ~ 01769565 v 0000 ~ 01769693 v 0000 ~ 01769902 v 0000 ~ 01770370 v 0000 ~ 01770501 v 0000 ~ 01770802 v 0000 ~ 01771390 v 0000 ~ 01813053 v 0000 ~ 01823888 v 0000 01 + 10 00 | have an emotional or cognitive impact upon; "This child impressed me as unusually mature"; "This behavior struck me as odd" -01768630 37 v 01 engrave 0 001 @ 01767949 v 0000 01 + 04 00 | impress or affect deeply; "The event engraved itself into her memory" -01768764 37 v 01 strike_dumb 0 001 @ 01767949 v 0000 01 + 10 00 | render speechless, as by surprising or shocking; "we were struck dumb by the candidate's announcement" -01768935 37 v 01 zap 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | strike suddenly and with force; "This show zaps the viewers with some shocking scenes" -01769090 37 v 01 jar 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | affect in a disagreeable way; "This play jarred the audience" -01769220 37 v 04 hit_home 0 strike_home 0 strike_a_chord 0 strike_a_note 0 001 @ 01767949 v 0000 02 + 01 00 + 04 03 | refer to or be relevant or familiar to; "I hope this message hits home!" -01769413 37 v 01 smite 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | affect suddenly with deep feeling; "He was smitten with love for this young girl" -01769565 37 v 01 cloud 0 001 @ 01767949 v 0000 01 + 10 00 | make gloomy or depressed; "Their faces were clouded with sadness" -01769693 37 v 01 pierce 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | move or affect (a person's emotions or bodily feelings) deeply or sharply; "The cold pierced her bones"; "Her words pierced the students" -01769902 37 v 01 impress 0 004 @ 01767949 v 0000 + 01282014 a 0101 ~ 01770096 v 0000 ~ 01770252 v 0000 02 + 09 00 + 10 00 | impress positively; "The young chess player impressed her audience" -01770096 37 v 01 prepossess 1 001 @ 01769902 v 0000 02 + 08 00 + 09 00 | make a positive impression (on someone) beforehand; "A prepossessing appearance" -01770252 37 v 01 wow 0 001 @ 01769902 v 0000 02 + 09 00 + 10 00 | impress greatly; "The speaker wowed the audience" -01770370 37 v 02 sweep_away 0 sweep_off 0 001 @ 01767949 v 0000 02 + 09 00 + 10 00 | overwhelm emotionally; "Her swept her away" -01770501 37 v 03 disturb 0 upset 0 trouble 1 010 @ 01767949 v 0000 + 07524242 n 0302 + 07289014 n 0301 + 00554850 n 0201 + 14403282 n 0203 + 14403282 n 0101 ~ 01762528 v 0000 ~ 01762963 v 0000 ~ 01764171 v 0000 ~ 01798100 v 0000 01 + 10 00 | move deeply; "This book upset me"; "A troubling thought" -01770802 37 v 02 touch 0 stir 0 005 @ 01767949 v 0000 + 07514345 n 0201 + 01261845 n 0202 ^ 01761120 v 0202 ~ 01771039 v 0000 02 + 09 00 + 10 00 | affect emotionally; "A stirring movie"; "I was touched by your kind letter of sympathy" -01771039 37 v 01 get b 002 @ 01770802 v 0000 $ 01771194 v 0000 02 + 09 00 + 10 00 | evoke an emotional response; "Brahms's `Requiem' gets me every time" -01771194 37 v 02 get c get_under_one's_skin 0 002 $ 01771039 v 0000 @ 01787955 v 0000 03 + 09 00 + 10 00 + 12 00 | irritate; "Her childish behavior really get to me"; "His lying really gets me" -01771390 37 v 01 move 1 002 @ 01767949 v 0000 $ 01649999 v 0000 02 + 09 00 + 10 00 | arouse sympathy or compassion in; "Her fate moved us all" -01771535 37 v 02 feel 0 experience 0 025 + 05984584 n 0201 + 07285403 n 0201 + 07513035 n 0101 + 00026192 n 0101 ^ 01821996 v 0101 ~ 01772172 v 0000 ~ 01772363 v 0000 ~ 01772498 v 0000 ~ 01772699 v 0000 ~ 01773130 v 0000 ~ 01777707 v 0000 ~ 01787106 v 0000 ~ 01788733 v 0000 ~ 01794668 v 0000 ~ 01795333 v 0000 ~ 01796582 v 0000 ~ 01813393 v 0000 ~ 01813884 v 0000 ~ 01822724 v 0000 ~ 01828993 v 0000 ~ 01829292 v 0000 ~ 01829475 v 0000 ~ 01829625 v 0000 ~ 01829747 v 0000 ~ 01830042 v 0000 04 + 08 00 + 05 01 + 06 01 + 22 01 | undergo an emotional sensation or be in a particular state of mind; "She felt resentful"; "He felt regret" -01772172 37 v 01 incline 0 001 @ 01771535 v 0000 01 + 22 00 | feel favorably disposed or willing; "She inclines to the view that people should be allowed to expres their religious beliefs" -01772363 37 v 01 recapture 0 001 @ 01771535 v 0000 01 + 08 00 | experience anew; "She could not recapture that feeling of happiness" -01772498 37 v 03 pride 0 plume 0 congratulate 0 004 @ 01771535 v 0000 + 01000093 a 0301 + 07140348 n 0301 + 07531536 n 0101 01 + 20 00 | be proud of; "He prides himself on making it into law school" -01772699 37 v 02 smolder 0 smoulder 0 001 @ 01771535 v 0000 01 + 02 00 | have strong suppressed feelings -01772806 37 v 01 emote 0 003 @ 01719302 v 0000 + 00854255 a 0103 + 07480068 n 0101 01 + 08 00 | give expression or emotion to, in a stage or movie role -01772960 37 v 01 excite 2 005 @ 01759326 v 0000 + 14037011 n 0101 + 07528212 n 0102 + 14037011 n 0102 ~ 01830192 v 0000 02 + 09 00 + 10 00 | arouse or elicit a feeling -01773130 37 v 05 harbor 0 harbour 0 hold 0 entertain 0 nurse 0 001 @ 01771535 v 0000 01 + 08 00 | maintain (a theory, thoughts, or feelings); "bear a grudge"; "entertain interesting notions"; "harbor a resentment" -01773346 37 v 01 resent 0 003 @ 01776727 v 0000 + 07548978 n 0101 ~ 01774005 v 0000 02 + 08 00 + 09 00 | feel bitter or indignant about; "She resents being paid less than her co-workers" -01773535 37 v 03 embitter 0 envenom 0 acerbate 0 003 > 01773346 v 0000 + 04643397 n 0303 + 13988871 n 0101 01 + 10 00 | cause to be bitter or resentful; "These injustices embittered her even more" -01773734 37 v 01 grudge 0 001 * 01773346 v 0000 01 + 08 00 | accept or admit unwillingly -01773825 37 v 04 eat_into 0 fret 2 rankle 0 grate 0 001 @ 01787955 v 0000 01 + 10 00 | gnaw into; make resentful or angry; "The injustice rankled her"; "his resentment festered" -01774005 37 v 02 stew 0 grudge 1 002 @ 01773346 v 0000 + 07549536 n 0201 02 + 02 00 + 22 00 | bear a grudge; harbor ill feelings -01774136 37 v 02 hate 0 detest 0 007 @ 01776727 v 0000 + 07503430 n 0203 + 10162194 n 0101 + 07546465 n 0101 ! 01775164 v 0101 ~ 01774426 v 0000 ~ 01774799 v 0000 02 + 08 00 + 09 00 | dislike intensely; feel antipathy or aversion towards; "I hate Mexican food"; "She detests politicians" -01774426 37 v 04 abhor 0 loathe 0 abominate 0 execrate 0 013 @ 01774136 v 0000 + 07503430 n 0404 + 05811884 n 0401 + 01460679 a 0301 + 09756961 n 0301 + 07503430 n 0302 + 00745431 n 0301 + 09754780 n 0301 + 09754780 n 0202 + 07503430 n 0205 + 01625063 a 0101 + 09756195 n 0101 + 07503430 n 0101 02 + 08 00 + 09 00 | find repugnant; "I loathe that man"; "She abhors cats" -01774799 37 v 04 contemn 0 despise 0 scorn 0 disdain 0 008 @ 01774136 v 0000 + 07502980 n 0402 + 06715927 n 0302 + 07502980 n 0303 + 10616379 n 0302 + 07547674 n 0202 + 07547674 n 0201 ~ 01828070 v 0000 02 + 08 00 + 09 00 | look down on with disdain; "He despises the people he has to work for"; "The professor scorns the students who don't catch on immediately" -01775164 37 v 01 love 0 012 + 01459422 a 0102 + 01459422 a 0101 + 09849598 n 0105 + 05813229 n 0101 + 07543288 n 0101 + 10077593 n 0104 + 09622302 n 0101 ! 01774136 v 0101 ~ 01775535 v 0000 ~ 01776214 v 0000 ~ 01777459 v 0000 ~ 01777817 v 0000 02 + 08 00 + 09 00 | have a great affection or liking for; "I love French food"; "She loves her boss and works hard for him" -01775535 37 v 01 love 1 008 @ 01775164 v 0000 + 01459422 a 0102 + 01459422 a 0101 + 09849598 n 0105 + 05813229 n 0101 + 07543288 n 0101 + 09622302 n 0101 ~ 01775782 v 0000 01 + 09 00 | be enamored or in love with; "She loves her husband deeply" -01775782 37 v 01 romance 0 003 @ 01775535 v 0000 + 06371267 n 0102 + 13931436 n 0102 02 + 08 00 + 09 00 | have a love affair with -01775914 37 v 01 fall_for 0 001 @ 00109660 v 0000 02 + 08 00 + 09 00 | fall in love with; become infatuated with; "She fell for the man from Brazil" -01776065 37 v 01 cling 0 000 01 + 11 00 | to remain emotionally or intellectually attached; "He clings to the idea that she might still love him." -01776214 37 v 04 care_for 8 cherish 0 hold_dear 0 treasure 0 003 @ 01775164 v 0000 + 13370448 n 0401 ~ 01777605 v 0000 02 + 08 00 + 09 00 | be fond of; be attached to -01776383 37 v 02 enshrine 0 saint 0 001 @ 01778568 v 0000 01 + 08 00 | hold sacred -01776468 37 v 03 fancy 0 go_for 0 take_to 0 004 * 01777210 v 0000 @ 01825237 v 0000 + 07497797 n 0102 + 10078131 n 0101 02 + 08 00 + 09 00 | have a fancy or particular liking or desire for; "She fancied a necklace that she had seen in the jeweler's window" -01776727 37 v 01 dislike 0 005 * 00674340 v 0000 + 07501545 n 0101 ! 01777210 v 0101 ~ 01773346 v 0000 ~ 01774136 v 0000 03 + 08 00 + 09 00 + 32 00 | have or feel a dislike or distaste for; "I really dislike this salesman" -01776952 37 v 01 like 4 004 + 01461292 a 0102 + 02376277 a 0103 + 01461292 a 0101 + 02376277 a 0104 02 + 08 00 + 09 00 | be fond of; "I like my nephews" -01777107 37 v 01 cotton 0 001 @ 01777210 v 0000 01 + 22 00 | take a liking to; "cotton to something" -01777210 37 v 01 like 5 006 * 00673983 v 0000 ! 01776727 v 0101 ~ 01777107 v 0000 ~ 01826498 v 0000 ~ 01828623 v 0000 ~ 01828736 v 0000 03 + 08 00 + 28 00 + 33 00 | find enjoyable or agreeable; "I like jogging"; "She likes to read Russian novels" -01777459 37 v 01 dote 2 001 @ 01775164 v 0000 01 + 22 00 | shower with love; show excessive affection for; "Grandmother dotes on her the twins" -01777605 37 v 01 yearn a 001 @ 01776214 v 0000 01 + 09 00 | have affection for; feel tenderness for -01777707 37 v 01 cool_off 1 001 @ 01771535 v 0000 01 + 02 00 | feel less enamoured of something or somebody -01777817 37 v 01 adore 0 005 @ 01775164 v 0000 + 01459755 a 0101 + 09771435 n 0102 ~ 00320911 v 0000 ~ 01778017 v 0000 04 + 08 00 + 09 00 + 28 00 + 32 00 | love intensely; "he just adored his wife" -01778017 37 v 05 idolize 0 idolise 0 worship 0 hero-worship 0 revere 1 019 @ 01777817 v 0000 + 01781882 a 0502 + 02011810 a 0501 + 06207561 n 0501 + 07501420 n 0301 + 10792335 n 0301 + 10792335 n 0302 + 01218766 n 0203 + 01043820 n 0202 + 10198437 n 0201 + 05924519 n 0202 + 03560161 n 0201 + 01218766 n 0102 + 01043820 n 0101 + 10198832 n 0101 + 10198437 n 0101 + 05924519 n 0102 + 03560161 n 0101 ~ 01827745 v 0000 02 + 08 00 + 09 00 | love unquestioningly and uncritically or to excess; venerate as an idol; "Many teenagers idolized the Beatles" -01778568 37 v 04 reverence 0 fear 1 revere 0 venerate 0 011 @ 00694068 v 0000 + 07521039 n 0404 + 10747548 n 0401 + 01781882 a 0302 + 02011810 a 0301 + 07521039 n 0302 + 07521039 n 0201 + 06207561 n 0101 + 07521039 n 0102 ~ 01776383 v 0000 ~ 01778990 v 0000 02 + 08 00 + 09 00 | regard with feelings of respect and reverence; consider hallowed or exalted or be in awe of; "Fear God as your father"; "We venerate genius" -01778990 37 v 01 worship 1 004 @ 01778568 v 0000 ;c 05946687 n 0000 + 09847727 n 0102 + 09847727 n 0103 01 + 08 00 | show devotion to (a deity); "Many Hindus worship Shiva" -01779165 37 v 04 frighten 0 fright 0 scare 0 affright 0 016 > 01780202 v 0000 @ 01761706 v 0000 + 07520612 n 0403 + 07521437 n 0301 + 04143712 n 0305 + 07519253 n 0203 + 01222666 n 0103 ^ 01785748 v 0105 ^ 01785748 v 0107 ~ 00837872 v 0000 ~ 01779644 v 0000 ~ 01780941 v 0000 ~ 01781180 v 0000 ~ 01782650 v 0000 ~ 01791053 v 0000 ~ 01830965 v 0000 02 + 09 00 + 10 00 | cause fear in; "The stranger who hangs around the building frightens me"; "Ghosts could never affright her" -01779644 37 v 01 awe 0 003 @ 01779165 v 0000 + 07510184 n 0101 ~ 01779803 v 0000 01 + 09 00 | inspire awe in; "The famous professor awed the undergraduates" -01779803 37 v 02 overawe 0 cow 0 003 @ 01779644 v 0000 + 09614047 n 0201 ~ 01780010 v 0000 02 + 09 00 + 10 00 | subdue, restrain, or overcome by affecting with a feeling of awe; frighten (as with threats) -01780010 37 v 01 buffalo 0 001 @ 01779803 v 0000 02 + 09 00 + 10 00 | intimidate or overawe -01780104 37 v 01 frighten 1 001 @ 02002720 v 0000 02 + 09 00 + 10 00 | drive out by frightening -01780202 37 v 02 fear 0 dread 0 003 + 07521674 n 0203 + 07519253 n 0101 ~ 01782218 v 0000 03 + 08 00 + 09 00 + 28 00 | be afraid or scared of; be frightened of; "I fear the winters in Moscow"; "We should not fear the Communists!" -01780434 37 v 01 fear d 001 + 07524529 n 0103 01 + 08 00 | be uneasy or apprehensive about; "I fear the results of the final exams" -01780568 37 v 01 fear 2 001 @ 00911562 v 0000 01 + 26 00 | be sorry; used to introduce an unpleasant statement; "I fear I won't make it to your wedding party" -01780729 37 v 01 fear 3 002 @ 01767163 v 0000 + 07524529 n 0103 02 + 22 00 + 26 00 | be afraid or feel anxious or apprehensive about a possible or probable situation or event; "I fear she might get aggressive" -01780941 37 v 03 terrify 0 terrorize 0 terrorise 0 007 @ 01779165 v 0000 + 01222666 n 0302 + 07520612 n 0302 + 01222666 n 0201 + 07520612 n 0202 + 07520612 n 0102 ~ 01781983 v 0000 02 + 09 00 + 10 00 | fill with terror; frighten greatly -01781180 37 v 01 intimidate 0 006 @ 01779165 v 0000 + 07523760 n 0101 + 07254057 n 0103 + 01222477 n 0102 ~ 01781387 v 0000 ~ 01781520 v 0000 01 + 09 00 | make timid or fearful; "Her boss intimidates her" -01781387 37 v 01 hold_over 0 001 @ 01781180 v 0000 01 + 09 00 | intimidate somebody (with a threat); "She was holding it over him" -01781520 37 v 08 strong-arm 0 bully 0 browbeat 0 bullyrag 0 ballyrag 0 boss_around 0 hector 0 push_around 0 002 @ 01781180 v 0000 ~ 01781757 v 0000 01 + 09 00 | be bossy towards; "Her big brother always bullied her when she was young" -01781757 37 v 03 tyrannize 0 tyrannise 0 domineer 0 002 @ 01781520 v 0000 + 10735298 n 0101 01 + 09 00 | rule or exercise power over (somebody) in a cruel and autocratic manner; "her husband and mother-in-law tyrannize her" -01781983 37 v 01 panic 1 004 > 01782218 v 0000 @ 01780941 v 0000 + 07520612 n 0101 + 14405931 n 0101 02 + 09 00 + 10 00 | cause sudden fear in or fill with sudden panic; "The mere thought of an isolation cell panicked the prisoners" -01782218 37 v 01 panic 0 003 @ 01780202 v 0000 + 07520612 n 0101 ~ 01784148 v 0000 02 + 02 00 + 22 00 | be overcome by a sudden fear; "The students panicked when told that final exams were less than a week away" -01782432 37 v 02 apprehend 0 quail_at 0 007 * 01780202 v 0000 @ 01804961 v 0000 + 00822907 a 0101 + 00079069 a 0101 + 07521674 n 0101 + 05951566 n 0101 + 10240082 n 0102 01 + 08 00 | anticipate with dread or anxiety -01782650 37 v 05 dismay 0 alarm 0 appal 1 appall a horrify 1 006 @ 01779165 v 0000 + 07520411 n 0501 + 09781504 n 0201 + 07519773 n 0201 + 07519773 n 0102 ~ 01783022 v 0000 02 + 09 00 + 10 00 | fill with apprehension or alarm; cause to be unpleasantly surprised; "I was horrified at the thought of being late for my interview"; "The news of the executions horrified us" -01783022 37 v 01 shock 0 004 @ 01782650 v 0000 + 07510625 n 0102 + 07298982 n 0101 + 07247803 n 0101 02 + 09 00 + 10 00 | strike with horror or terror; "The news of the bombing shocked her" -01783214 37 v 03 haunt 0 obsess 0 ghost 0 003 @ 01783394 v 0000 + 05898171 n 0301 + 05700401 n 0201 02 + 09 00 + 10 00 | haunt like a ghost; pursue; "Fear of illness haunts her" -01783394 37 v 01 preoccupy 0 006 @ 02441022 v 0000 + 05836921 n 0101 + 05700087 n 0101 + 05700087 n 0102 ~ 01783214 v 0000 ~ 01783746 v 0000 01 + 10 00 | engage or engross the interest or attention of beforehand or occupy urgently or obsessively; "His work preoccupies him"; "The matter preoccupies her completely--she cannot think of anything else" -01783746 37 v 01 prepossess 0 001 @ 01783394 v 0000 01 + 10 00 | cause to be preoccupied; "The idea of his failure prepossesses him" -01783881 37 v 04 faze 0 unnerve 0 enervate 0 unsettle 0 002 @ 01790020 v 0000 ~ 01784025 v 0000 02 + 10 00 + 11 00 | disturb the composure of -01784025 37 v 01 unman 0 001 @ 01783881 v 0000 02 + 09 00 + 10 00 | cause to lose one's nerve; "an unmanning experience" -01784148 37 v 03 freak_out 0 freak 0 gross_out 0 001 @ 01782218 v 0000 01 + 02 00 | lose one's nerve; "When he saw the accident, he freaked out" -01784295 37 v 03 break_down 0 lose_it 0 snap 0 005 @ 00010435 v 0000 + 14066492 n 0101 ~ 01784592 v 0000 ~ 01784953 v 0000 ~ 01829126 v 0000 01 + 02 00 | lose control of one's emotions; "When she heard that she had not passed the exam, she lost it completely"; "When her baby died, she snapped" -01784592 37 v 01 dissolve 0 002 @ 01784295 v 0000 $ 01784799 v 0000 01 + 22 00 | lose control emotionally; "She dissolved into tears when she heard that she had lost all her savings in the pyramid scheme" -01784799 37 v 01 dissolve 4 002 $ 01784592 v 0000 @ 01790020 v 0000 01 + 10 00 | cause to lose control emotionally; "The news dissolved her into tears" -01784953 37 v 01 die 0 001 @ 01784295 v 0000 02 + 22 00 + 33 00 | be brought to or as if to the point of death by an intense emotion such as embarrassment, amusement, or shame; "I was dying with embarrassment when my little lie was discovered"; "We almost died laughing during the show" -01785242 37 v 01 die 1 001 @ 01805684 v 0000 02 + 22 00 + 28 00 | languish as with love or desire; "She dying for a cigarette"; "I was dying to leave" -01785395 37 v 03 break 0 burst 0 erupt 0 001 @ 01802494 v 0000 01 + 22 00 | force out or release suddenly and often violently something pent up; "break into tears"; "erupt in anger" -01785579 37 v 05 crack_up 0 crack 0 crock_up 0 break_up 4 collapse 0 003 @ 00065639 v 0000 + 14066203 n 0501 + 14066492 n 0102 01 + 02 00 | suffer a nervous breakdown -01785748 37 v 08 daunt 0 dash 0 scare_off 0 pall 0 frighten_off 0 scare_away 0 frighten_away 0 scare 4 003 @ 01819554 v 0000 + 14405931 n 0802 + 07537259 n 0402 01 + 10 00 | cause to lose courage; "dashed by the refusal" -01785971 37 v 01 anger 0 013 > 01787106 v 0000 @ 01759326 v 0000 + 14036539 n 0101 + 07516354 n 0101 + 00758972 n 0102 ~ 01786419 v 0000 ~ 01786620 v 0000 ~ 01786760 v 0000 ~ 01786906 v 0000 ~ 01787600 v 0000 ~ 01789270 v 0000 ~ 01795888 v 0000 ~ 01820901 v 0000 02 + 09 00 + 10 00 | make angry; "The news angered him" -01786292 37 v 01 bridle 0 001 @ 01787106 v 0000 01 + 02 00 | anger or take offense; "She bridled at his suggestion to elope" -01786419 37 v 01 combust 1 002 > 01795428 v 0000 @ 01785971 v 0000 03 + 09 00 + 10 00 + 11 00 | cause to become violent or angry; "Riots combusted Pakistan after the U.S. air attacks on Afghanistan" -01786620 37 v 01 miff 0 002 @ 01785971 v 0000 + 14407070 n 0102 02 + 09 00 + 10 00 | cause to be annoyed; "His behavior really miffed me" -01786760 37 v 02 gall 0 irk 0 002 @ 01785971 v 0000 + 07548978 n 0103 02 + 09 00 + 10 00 | irritate or vex; "It galls me that we lost the suit" -01786906 37 v 03 infuriate 0 exasperate 1 incense 1 006 @ 01785971 v 0000 + 07518878 n 0202 + 00425451 n 0201 + 14391876 n 0104 + 07516997 n 0101 + 07517417 n 0101 02 + 09 00 + 10 00 | make furious -01787106 37 v 02 anger 1 see_red 0 007 @ 01771535 v 0000 + 14036539 n 0101 + 07516354 n 0101 + 00758972 n 0102 ~ 01786292 v 0000 ~ 01787319 v 0000 ~ 01787469 v 0000 01 + 02 00 | become angry; "He angers easily" -01787319 37 v 01 steam 0 001 @ 01787106 v 0000 01 + 02 00 | get very angry; "her indifference to his amorous advances really steamed the young man" -01787469 37 v 01 raise_the_roof 0 001 @ 01787106 v 0000 01 + 02 00 | get very angry; "He will raise the roof when he hears this" -01787600 37 v 01 madden 0 001 @ 01785971 v 0000 02 + 09 00 + 10 00 | make mad; "His behavior is maddening" -01787709 37 v 01 madden 1 001 @ 01803003 v 0000 02 + 09 00 + 10 00 | drive up the wall; go on someone's nerves -01787822 37 v 02 madden 2 craze 0 002 + 14391876 n 0201 ~ 01764586 v 0000 01 + 10 00 | cause to go crazy; cause to lose one's mind -01787955 37 v 0d annoy 0 rag 1 get_to 0 bother 0 get_at 0 irritate 0 rile 0 nark 0 nettle 0 gravel 0 vex 0 chafe 0 devil 0 025 @ 01817130 v 0000 + 00736375 n 0d06 + 00736375 n 0d04 + 00736375 n 0d05 + 14406573 n 0b03 + 00418394 n 0b04 + 10695555 n 0b04 + 14406573 n 0601 + 07518468 n 0603 + 00418394 n 0603 + 01221790 n 0602 + 05831784 n 0601 + 14406573 n 0404 + 05830059 n 0403 + 05830059 n 0402 + 10695555 n 0103 + 00418394 n 0101 ~ 01771194 v 0000 ~ 01773825 v 0000 $ 01788733 v 0000 ~ 01788932 v 0000 ~ 01789047 v 0000 ~ 01789164 v 0000 ~ 01789514 v 0000 ~ 01807314 v 0000 02 + 09 00 + 10 00 | cause annoyance in; disturb, especially by minor irritations; "Mosquitoes buzzing in my ear really bothers me"; "It irritates me that she never closes the door after she leaves" -01788733 37 v 01 chafe 1 002 $ 01787955 v 0000 @ 01771535 v 0000 01 + 02 00 | feel extreme irritation or anger; "He was chafing at her suggestion that he stay at home while she went on a vacation" -01788932 37 v 01 peeve 0 001 @ 01787955 v 0000 02 + 09 00 + 10 00 | cause to be annoyed, irritated, or resentful -01789047 37 v 01 ruffle 0 001 @ 01787955 v 0000 02 + 08 00 + 11 00 | trouble or vex; "ruffle somebody's composure" -01789164 37 v 01 fret 1 002 > 01767461 v 0000 @ 01787955 v 0000 02 + 09 00 + 10 00 | cause annoyance in -01789270 37 v 02 pique 0 offend 1 006 > 01773346 v 0000 @ 01785971 v 0000 + 00908672 a 0202 + 01628302 a 0201 + 07517550 n 0203 + 07518468 n 0101 02 + 09 00 + 10 00 | cause to feel resentment or indignation; "Her tactless remark offended me" -01789514 37 v 0b harass 0 hassle 0 harry 0 chivy 0 chivvy 0 chevy 0 chevvy 0 beset 0 plague 0 molest 0 provoke 1 013 @ 01787955 v 0000 + 01896478 a 0b01 + 01221790 n 0b03 + 10209246 n 0b02 + 00419644 n 0a02 + 05831939 n 0901 + 10160012 n 0302 + 07372565 n 0204 + 10161178 n 0101 + 00419644 n 0101 ~ 00851733 v 0000 ~ 01803003 v 0000 ~ 02585722 v 0000 02 + 09 00 + 10 00 | annoy continually or chronically; "He is known to harry his staff when he is overworked"; "This man harasses his female co-workers" -01790020 37 v 05 upset 1 discompose 0 untune 0 disconcert 1 discomfit 0 013 @ 01759326 v 0000 + 07508232 n 0501 + 07508232 n 0404 + 07508232 n 0403 + 07508232 n 0202 + 04904664 n 0201 + 14403282 n 0103 ~ 01783881 v 0000 ~ 01784799 v 0000 ~ 01791232 v 0000 ~ 01792097 v 0000 ~ 01792567 v 0000 ~ 01797730 v 0000 02 + 09 00 + 10 00 | cause to lose one's composure -01790383 37 v 01 fluster 0 004 > 01791973 v 0000 @ 01790739 v 0000 + 04904996 n 0102 ~ 01790538 v 0000 02 + 09 00 + 10 00 | cause to be nervous or upset -01790538 37 v 01 ruffle 1 001 @ 01790383 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | discompose; "This play is going to ruffle some people"; "She has a way of ruffling feathers among her colleagues" -01790739 37 v 04 confuse 0 flurry 0 disconcert 2 put_off 2 008 $ 00621734 v 0000 @ 01792097 v 0000 + 07508232 n 0304 + 07508232 n 0303 + 07507912 n 0101 ~ 01790383 v 0000 ~ 01791408 v 0000 ~ 01791756 v 0000 02 + 09 00 + 10 00 | cause to feel embarrassment; "The constant attention of the young man confused her" -01791053 37 v 01 consternate 0 001 @ 01779165 v 0000 02 + 09 00 + 10 00 | fill with anxiety, dread, dismay, or confusion; "After the terrorist attack, people look consternated" -01791232 37 v 04 bewilder 0 bemuse 0 discombobulate 0 throw 0 003 @ 01790020 v 0000 + 07507912 n 0302 + 05685030 n 0207 02 + 09 00 + 10 00 | cause to be confused emotionally -01791408 37 v 01 bother 2 002 @ 01790739 v 0000 $ 01791535 v 0000 02 + 09 00 + 10 00 | make confused or perplexed or puzzled -01791535 37 v 01 bother 3 004 $ 01791408 v 0000 @ 01762528 v 0000 + 14406573 n 0104 + 05830059 n 0103 02 + 09 00 + 10 00 | make nervous or agitated; "The mere thought of her bothered him and made his heart beat faster" -01791756 37 v 02 distract 0 deflect 6 002 @ 01790739 v 0000 + 00200041 n 0101 02 + 09 00 + 10 00 | draw someone's attention away from something; "The thief distracted the bystanders"; "He deflected his competitors" -01791973 37 v 01 fluster 1 002 @ 02518161 v 0000 + 04904996 n 0102 01 + 02 00 | be flustered; behave in a confused manner -01792097 37 v 02 embarrass 0 abash 0 004 @ 01790020 v 0000 + 07508092 n 0201 + 07305551 n 0101 ~ 01790739 v 0000 02 + 09 00 + 10 00 | cause to be embarrassed; cause to feel self-conscious -01792287 37 v 01 shame 0 003 @ 01759326 v 0000 + 07506569 n 0101 ~ 01792413 v 0000 02 + 09 00 + 10 00 | cause to be ashamed -01792413 37 v 01 discountenance 0 001 @ 01792287 v 0000 02 + 09 00 + 10 00 | look with disfavor on; "The republic soon discountenanced its few friends" -01792567 37 v 03 pain 0 anguish 0 hurt 1 012 > 01794668 v 0000 @ 01790020 v 0000 + 07495327 n 0302 + 14449022 n 0201 + 07496755 n 0201 + 05830059 n 0104 + 07494363 n 0101 + 14322699 n 0101 ~ 01792951 v 0000 ~ 01794523 v 0000 ~ 01798782 v 0000 ~ 01802689 v 0000 01 + 10 00 | cause emotional anguish or make miserable; "It pains me to see my children not being taught well in school" -01792951 37 v 01 break_someone's_heart 0 001 @ 01792567 v 0000 02 + 09 00 + 10 00 | cause deep emotional pain and grief to somebody; "The young man broke the girl's heart when he told her was going to marry her best friend" -01793177 37 v 06 hurt 0 wound 0 injure 0 bruise 0 offend 0 spite 0 011 @ 01759326 v 0000 + 04842515 n 0603 + 07550666 n 0603 + 00908672 a 0502 + 01628302 a 0501 + 01224031 n 0503 + 01224031 n 0502 ~ 00848420 v 0000 ~ 01793587 v 0000 ~ 01793742 v 0000 ~ 01799794 v 0000 02 + 09 00 + 10 00 | hurt the feelings of; "She hurt me when she did not include me among her guests"; "This remark really bruised my ego" -01793587 37 v 01 lacerate 0 002 @ 01793177 v 0000 + 00391293 n 0101 02 + 09 00 + 10 00 | deeply hurt the feelings of; distress; "his lacerating remarks" -01793742 37 v 01 sting 0 004 @ 01793177 v 0000 + 14329762 n 0102 + 06721461 n 0101 + 14332085 n 0102 02 + 09 00 + 10 00 | cause an emotional pain, as if by stinging; "His remark stung her" -01793933 37 v 03 fuss 0 niggle 0 fret 3 005 @ 01767163 v 0000 + 14403560 n 0301 + 14403772 n 0103 ~ 01794195 v 0000 ~ 01819911 v 0000 02 + 02 00 + 22 00 | worry unnecessarily or excessively; "don't fuss too much over the grandchildren--they are quite big now" -01794195 37 v 01 scruple 0 003 @ 01793933 v 0000 + 05957737 n 0101 + 07525555 n 0101 02 + 08 00 + 22 00 | raise scruples; "He lied and did not even scruple about it" -01794363 37 v 02 agonize 0 agonise 0 004 @ 01794668 v 0000 + 14324274 n 0201 + 07495551 n 0201 + 14324274 n 0101 02 + 02 00 + 22 00 | suffer agony or anguish -01794523 37 v 02 agonize 1 agonise 1 004 > 01794363 v 0000 @ 01792567 v 0000 + 14324274 n 0201 + 07495551 n 0201 01 + 10 00 | cause to agonize -01794668 37 v 01 suffer 0 009 $ 00668099 v 0000 @ 01771535 v 0000 + 10296618 n 0102 + 14448910 n 0101 + 07496463 n 0103 ~ 01794363 v 0000 ~ 01794969 v 0000 ~ 01795082 v 0000 ~ 01797347 v 0000 03 + 02 00 + 22 00 + 08 01 | experience (emotional) pain; "Every time her husband gets drunk, she suffers" -01794969 37 v 01 anguish 2 002 @ 01794668 v 0000 + 07496755 n 0101 01 + 02 00 | suffer great pains or distress -01795082 37 v 01 lose 0 001 @ 01794668 v 0000 02 + 09 00 + 10 00 | suffer the loss of a person through death or removal; "She lost her husband in the war"; "The couple that wanted to adopt the child lost her when the biological parents claimed her" -01795333 37 v 01 fume 0 001 @ 01771535 v 0000 02 + 02 00 + 22 00 | be mad, angry, or furious -01795428 37 v 0e flip_one's_lid 0 blow_up 0 throw_a_fit 0 hit_the_roof 0 hit_the_ceiling 0 have_kittens 0 have_a_fit 0 combust 0 blow_one's_stack 0 fly_off_the_handle 0 flip_one's_wig 0 lose_one's_temper 0 blow_a_fuse 0 go_ballistic 0 002 @ 01796033 v 0000 + 07014320 n 0204 02 + 02 00 + 22 00 | get very angry and fly into a rage; "The professor combusted when the student didn't know the answer to a very elementary question"; "Spam makes me go ballistic" -01795888 37 v 01 enrage 0 003 > 01796033 v 0000 @ 01785971 v 0000 + 07517417 n 0102 02 + 09 00 + 10 00 | put into a rage; make violently angry -01796033 37 v 01 rage 0 004 + 14036735 n 0101 + 07516997 n 0102 ~ 01795428 v 0000 ~ 01796215 v 0000 02 + 02 00 + 22 00 | feel intense anger; "Rage against the dying of the light!" -01796215 37 v 02 foam_at_the_mouth 0 froth_at_the_mouth 0 001 @ 01796033 v 0000 01 + 02 00 | be in a state of uncontrolled anger -01796346 37 v 03 thrill 2 tickle 1 vibrate 2 004 @ 01761706 v 0000 + 07520112 n 0106 + 01261293 n 0101 + 07528470 n 0106 01 + 10 00 | feel sudden intense sensation or emotion; "he was thrilled by the speed and the roar of the engine" -01796582 37 v 03 repent 0 regret 0 rue 0 005 @ 01771535 v 0000 + 07535670 n 0303 + 07535670 n 0202 + 01743217 a 0102 + 07536870 n 0101 03 + 08 00 + 26 02 + 33 02 | feel remorse for; feel sorry for; be contrite about -01796800 37 v 02 repent 1 atone 0 002 + 00095121 n 0202 + 01743217 a 0102 01 + 02 00 | turn away from sin or do penitence -01796924 37 v 01 regret 1 002 @ 01805523 v 0000 + 07535670 n 0102 02 + 08 00 + 09 00 | feel sad about the loss or absence of -01797051 37 v 01 mourn 0 003 @ 01797347 v 0000 + 10335246 n 0101 + 13989280 n 0101 02 + 02 00 + 22 00 | feel sadness; "She is mourning her dead child" -01797204 37 v 01 mourn 1 002 @ 02578510 v 0000 + 10335246 n 0101 01 + 02 00 | observe the customs of mourning after the death of a loved one -01797347 37 v 02 grieve 0 sorrow 0 009 @ 01794668 v 0000 + 13989051 n 0202 + 05833683 n 0202 + 07535670 n 0201 + 07534430 n 0201 + 10335246 n 0203 + 10335246 n 0102 ~ 01797051 v 0000 ~ 01821996 v 0000 02 + 02 00 + 22 00 | feel grief -01797582 37 v 02 grieve 1 aggrieve 0 002 > 01797347 v 0000 @ 01797730 v 0000 01 + 10 00 | cause to feel sorrow; "his behavior grieves his mother" -01797730 37 v 01 afflict 0 007 @ 01790020 v 0000 + 01804175 a 0101 + 14477342 n 0101 + 07305234 n 0101 ~ 01797582 v 0000 ~ 01797989 v 0000 ~ 01798452 v 0000 01 + 10 00 | cause great unhappiness for; distress; "she was afflicted by the death of her parents" -01797989 37 v 01 tribulate 0 002 @ 01797730 v 0000 + 07372959 n 0102 01 + 10 00 | oppress or trouble greatly -01798100 37 v 01 distress 0 003 @ 01770501 v 0000 + 07496463 n 0101 ~ 01798287 v 0000 02 + 09 00 + 10 00 | cause mental pain to; "The news of her child's illness distressed the mother" -01798287 37 v 01 besiege 0 001 @ 01798100 v 0000 01 + 10 00 | cause to feel distressed or worried; "She was besieged by so many problems that she got discouraged" -01798452 37 v 03 try 0 strain 0 stress 0 006 @ 01797730 v 0000 + 14410089 n 0301 + 14376188 n 0303 + 09448829 n 0301 + 00624553 n 0201 ~ 01798678 v 0000 02 + 08 00 + 11 00 | test the limits of; "You are trying my patience!" -01798678 37 v 01 rack 0 001 @ 01798452 v 0000 01 + 08 00 | stretch to the limits; "rack one's brains" -01798782 37 v 01 try 1 002 @ 01792567 v 0000 + 07372959 n 0101 02 + 09 00 + 10 00 | give pain or trouble to; "I've been sorely tried by these students" -01798936 37 v 02 disappoint 0 let_down 0 007 @ 02558172 v 0000 + 07540602 n 0202 + 07540602 n 0101 + 00068755 n 0101 ~ 01799235 v 0000 ~ 01799484 v 0000 ~ 01817755 v 0000 02 + 09 00 + 10 00 | fail to meet the hopes or expectations of; "Her boyfriend let her down when he did not propose marriage" -01799235 37 v 02 fail 0 betray 0 001 @ 01798936 v 0000 02 + 09 00 + 10 00 | disappoint, prove undependable to; abandon, forsake; "His sense of smell failed him this time"; "His strength finally failed him"; "His children failed him in the crisis" -01799484 37 v 02 fall_short c come_short c 001 @ 01798936 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | fail to meet (expectations or standards) -01799629 37 v 01 hamstring 0 001 @ 01803003 v 0000 02 + 08 00 + 11 00 | make ineffective or powerless; "The teachers were hamstrung by the overly rigid schedules" -01799794 37 v 05 humiliate 0 mortify 1 chagrin 1 humble 0 abase 0 011 @ 01793177 v 0000 + 00273449 n 0502 + 07507742 n 0301 + 07507742 n 0203 + 07309223 n 0202 + 14440488 n 0101 + 07507742 n 0102 + 07309223 n 0101 + 00273449 n 0101 ~ 01800195 v 0000 ~ 01800422 v 0000 02 + 09 00 + 10 00 | cause to feel shame; hurt the pride of; "He humiliated his colleague by criticising him in front of the boss" -01800195 37 v 03 crush 0 smash 0 demolish 0 002 @ 01799794 v 0000 + 01249483 n 0301 02 + 09 00 + 10 00 | humiliate or depress completely; "She was crushed by his refusal of her invitation"; "The death of her son smashed her" -01800422 37 v 05 take_down 0 degrade 0 disgrace 0 demean 0 put_down 0 007 @ 01799794 v 0000 + 06716796 n 0501 + 14440623 n 0202 + 00271263 n 0201 + 06716796 n 0104 ~ 01800907 v 0000 ~ 01801297 v 0000 02 + 09 00 + 10 00 | reduce in worth or character, usually verbally; "She tends to put down younger women colleagues"; "His critics took him down after the lecture" -01800789 37 v 01 efface 0 002 @ 01801697 v 0000 + 00054328 n 0101 01 + 09 00 | make inconspicuous; "efface oneself" -01800907 37 v 01 reduce 0 001 @ 01800422 v 0000 01 + 21 00 | lower in grade or rank or force somebody into an undignified situation; "She reduced her niece to a servant" -01801080 37 v 01 stultify 0 003 @ 00664788 v 0000 ;c 08441203 n 0000 + 06716992 n 0101 01 + 09 00 | prove to be of unsound mind or demonstrate someone's incompetence; "nobody is legally allowed to stultify himself" -01801297 37 v 02 dehumanize 0 dehumanise 0 004 @ 01800422 v 0000 + 00271636 n 0202 + 00271636 n 0101 ! 01801498 v 0101 01 + 10 00 | deprive of human qualities; "Life in poverty has dehumanized them" -01801498 37 v 02 humanize 0 humanise 0 004 @ 00126264 v 0000 + 00264775 n 0202 + 00264775 n 0101 ! 01801297 v 0101 01 + 10 00 | make more humane; "The mayor tried to humanize life in the big city" -01801697 37 v 01 humble 1 002 @ 00126264 v 0000 ~ 01800789 v 0000 02 + 09 00 + 10 00 | cause to be unpretentious; "This experience will humble him" -01801847 37 v 03 mortify 2 subdue 0 crucify 3 004 * 01196037 v 0000 @ 02510337 v 0000 + 01069311 n 0101 ~ 01802070 v 0000 02 + 08 00 + 09 00 | hold within limits and control; "subdue one's appetites"; "mortify the flesh" -01802070 37 v 01 mortify 4 003 @ 01801847 v 0000 @ 02553697 v 0000 + 01069311 n 0101 01 + 02 00 | practice self-denial of one's body and appetites -01802219 37 v 02 lament 0 keen 0 009 * 01797347 v 0000 @ 01802494 v 0000 + 07042735 n 0201 + 06379568 n 0102 + 07050619 n 0103 + 07211950 n 0101 + 07211950 n 0102 + 01072236 n 0101 + 10335246 n 0104 01 + 08 00 | express grief verbally; "we lamented the death of the child" -01802494 37 v 02 express_emotion 0 express_feelings 0 004 ~ 00031820 v 0000 ~ 00066191 v 0000 ~ 01785395 v 0000 ~ 01802219 v 0000 01 + 02 00 | give verbal or other expression to one's feelings -01802689 37 v 04 torment 0 torture 0 excruciate 0 rack 1 011 @ 01792567 v 0000 + 04039041 n 0401 + 14324274 n 0303 + 07495551 n 0203 + 07496755 n 0203 + 10716389 n 0201 + 07495551 n 0102 + 07496755 n 0102 + 10716005 n 0102 + 04456276 n 0101 + 10716005 n 0101 02 + 09 00 + 10 00 | torment emotionally or mentally -01803003 37 v 06 torment 1 rag 0 bedevil 0 crucify 0 dun 0 frustrate 0 012 @ 01789514 v 0000 + 07518663 n 0601 + 00422551 n 0401 + 00425278 n 0304 + 00425278 n 0103 + 07519040 n 0102 + 10716005 n 0102 + 10716005 n 0101 ~ 01787709 v 0000 ~ 01799629 v 0000 ~ 01803380 v 0000 ~ 02585489 v 0000 02 + 09 00 + 10 00 | treat cruelly; "The children tormented the stuttering teacher" -01803380 37 v 05 tease 0 badger 0 pester 0 bug 0 beleaguer 0 006 @ 01803003 v 0000 + 10419630 n 0304 + 10167565 n 0202 + 00425905 n 0101 + 10695555 n 0101 + 10695555 n 0102 01 + 09 00 | annoy persistently; "The children teased the boy because of his stammer" -01803641 37 v 01 tease 1 004 * 01762283 v 0000 * 01798936 v 0000 @ 01803936 v 0000 + 09965134 n 0106 01 + 09 00 | to arouse hope, desire, or curiosity without satisfying them; "The advertisement is intended to tease the customers"; "She has a way of teasing men with her flirtatious behavior" -01803936 37 v 03 manipulate 0 keep_in_line 0 control 6 008 @ 02376958 v 0000 + 10525134 n 0302 + 00803617 n 0301 + 00149461 a 0101 + 00158185 n 0101 ~ 01803641 v 0000 ~ 01804414 v 0000 ~ 01804595 v 0000 02 + 08 00 + 09 00 | control (others or oneself) or influence skillfully, usually to one's advantage; "She manipulates her boss"; "She is a very controlling mother and doesn't let her children grow up"; "The teacher knew how to keep the class in line"; "she keeps in line" -01804414 37 v 01 handle 5 003 @ 01803936 v 0000 + 10159045 n 0102 + 09931640 n 0103 01 + 08 00 | show and train; "The prize-winning poodle was handled by Mrs. Priscilla Prescott" -01804595 37 v 01 ingratiate 0 003 @ 01803936 v 0000 + 00908143 a 0103 ~ 01804753 v 0000 02 + 09 00 + 20 00 | gain favor with somebody by deliberate efforts -01804753 37 v 06 cozy_up 9 cotton_up 9 shine_up 9 play_up 9 sidle_up 9 suck_up 9 001 @ 01804595 v 0000 01 + 22 00 | ingratiate oneself to; often with insincere behavior; "She is playing up to the chairman" -01804961 37 v 03 anticipate 0 look_for 0 look_to 0 003 @ 00720063 v 0000 + 01228797 a 0102 ~ 01782432 v 0000 01 + 08 00 | be excited or anxious about -01805113 37 v 01 warm_to 0 001 @ 00734054 v 0000 01 + 08 00 | become excited about; "He warmed to the idea of a trip to Antarctica" -01805247 37 v 03 mope 0 moon_around 0 moon_about 0 002 @ 02604760 v 0000 + 09988703 n 0104 01 + 02 00 | be apathetic, gloomy, or dazed -01805384 37 v 03 grizzle 0 brood 0 stew 1 002 @ 02719016 v 0000 + 14403560 n 0302 02 + 02 00 + 22 00 | be in a huff; be silent or sullen -01805523 37 v 01 miss 0 003 * 01796582 v 0000 @ 01825237 v 0000 ~ 01796924 v 0000 02 + 08 00 + 09 00 | feel or suffer from the lack of; "He misses his mother" -01805684 37 v 05 ache 6 yearn 1 yen 0 pine 0 languish 0 006 @ 01828405 v 0000 + 07487063 n 0401 + 07486922 n 0302 + 10270878 n 0203 + 07486628 n 0202 ~ 01785242 v 0000 01 + 22 00 | have a desire for something or someone who is not present; "She ached for a cigarette"; "I am pining for my lover" -01805982 37 v 01 appreciate 0 002 @ 00892467 v 0000 + 01146732 a 0101 01 + 08 00 | recognize with gratitude; be grateful for -01806109 37 v 02 brace 0 poise 0 003 @ 00406243 v 0000 + 04904162 n 0204 ~ 01806271 v 0000 01 + 09 00 | prepare (oneself) for something unpleasant or difficult -01806271 37 v 02 steel 0 nerve 0 002 @ 01806109 v 0000 + 04857490 n 0203 01 + 09 00 | get ready for something difficult or unpleasant -01806407 37 v 02 take_heart 0 buck_up 0 001 @ 01817938 v 0000 02 + 02 00 + 22 00 | gain courage -01806505 37 v 0d capture 0 enamour 0 trance 0 catch 5 becharm 0 enamor 0 captivate 0 beguile 0 charm 0 fascinate 1 bewitch 0 entrance 0 enchant 1 017 @ 01807882 v 0000 + 07497976 n 0d02 + 07491286 n 0c01 + 04686388 n 0b01 + 07497976 n 0a04 + 10615179 n 0904 + 04687333 n 0903 + 09910374 n 0901 + 04686388 n 0802 + 09910374 n 0802 + 09893600 n 0701 + 14407899 n 0702 + 07497976 n 0701 + 09900981 n 0401 + 14407536 n 0303 ~ 00736586 v 0000 ~ 01817574 v 0000 02 + 09 00 + 10 00 | attract; cause to be enamored; "She captured all the men's hearts" -01807051 37 v 01 beckon 0 001 @ 01807882 v 0000 01 + 01 00 | appear inviting; "The shop window decorations beckoned" -01807170 37 v 01 endear 0 002 @ 01815628 v 0000 + 01227805 n 0101 01 + 20 00 | make attractive or lovable; "This behavior endeared her to me" -01807314 37 v 02 antagonize 0 antagonise 0 005 @ 01787955 v 0000 + 13980288 n 0203 + 07548366 n 0201 + 13980288 n 0103 + 07548366 n 0101 02 + 09 00 + 10 00 | provoke the hostility of; "Don't antagonize your boss" -01807529 37 v 02 tempt 0 invite 0 005 @ 01761706 v 0000 + 04689048 n 0201 + 02362904 a 0101 + 05694791 n 0101 + 10699752 n 0101 01 + 10 00 | give rise to a desire by being attractive or inviting; "the window displays tempted the shoppers" -01807770 37 v 01 tempt 1 003 @ 01762283 v 0000 + 02362904 a 0101 + 10699752 n 0101 01 + 09 00 | try to seduce -01807882 37 v 02 attract 0 appeal 0 009 + 04687333 n 0201 + 00166146 a 0101 + 06615561 n 0101 + 05850823 n 0101 + 04688246 n 0101 + 05850823 n 0102 ! 01808769 v 0101 ~ 01806505 v 0000 ~ 01807051 v 0000 03 + 04 00 + 09 00 + 10 00 | be attractive to; "The idea of a vacation appeals to me"; "The beautiful garden attracted many people" -01808218 37 v 01 bring 5 002 $ 00767334 v 0000 @ 01505254 v 0000 01 + 10 00 | attract the attention of; "The noise and the screaming brought the curious" -01808374 37 v 05 disgust 0 revolt 0 nauseate 0 sicken 0 churn_up 0 004 @ 01808769 v 0000 + 07504111 n 0301 + 07503260 n 0101 ~ 01810447 v 0000 02 + 09 00 + 10 00 | cause aversion in; offend the moral sense of; "The pornographic pictures sickened us" -01808626 37 v 02 turn_off 0 put_off 4 002 @ 01808769 v 0000 + 05828263 n 0101 02 + 09 00 + 10 00 | cause to feel intense dislike or distaste -01808769 37 v 02 repel 0 repulse 0 011 @ 01817130 v 0000 + 00221934 a 0102 + 01625063 a 0105 + 01804422 a 0103 + 01625893 a 0108 + 01625893 a 0107 + 14920388 n 0101 + 14920388 n 0102 ! 01807882 v 0101 ~ 01808374 v 0000 ~ 01808626 v 0000 02 + 09 00 + 10 00 | be repellent to; cause aversion in -01809064 37 v 05 shock 1 floor 0 ball_over 0 blow_out_of_the_water 0 take_aback 0 003 @ 00725274 v 0000 + 07298982 n 0101 ~ 01821634 v 0000 02 + 09 00 + 10 00 | surprise greatly; knock someone's socks off; "I was floored when I heard that I was promoted" -01809321 37 v 06 overwhelm 0 overpower 0 sweep_over 0 whelm 0 overcome 0 overtake 0 008 @ 01759326 v 0000 ~ 00260311 v 0000 ~ 00737656 v 0000 ~ 01809617 v 0000 ~ 01809884 v 0000 ~ 01809980 v 0000 ~ 01810126 v 0000 ~ 01810320 v 0000 01 + 10 00 | overcome, as with emotions or perceptual stimuli -01809617 37 v 01 kill 0 001 @ 01809321 v 0000 02 + 09 00 + 10 00 | overwhelm with hilarity, pleasure, or admiration; "The comedian was so funny, he was killing me!" -01809784 37 v 01 shout_down 0 001 @ 00461493 v 0000 01 + 09 00 | silence or overwhelm by shouting -01809884 37 v 01 benight 0 001 @ 01809321 v 0000 01 + 10 00 | overtake with darkness or night -01809980 37 v 01 knock_out 0 001 @ 01809321 v 0000 02 + 09 00 + 10 00 | overwhelm with admiration; "All the guys were knocked out by her charm" -01810126 37 v 01 stagger 0 001 @ 01809321 v 0000 01 + 10 00 | astound or overwhelm, as with shock; "She was staggered with bills after she tried to rebuild her house following the earthquake" -01810320 37 v 01 lock 0 001 @ 01809321 v 0000 01 + 10 00 | hold fast (in a certain state); "He was locked in a laughing fit" -01810447 37 v 07 shock 2 offend 2 scandalize 0 scandalise 0 appal 0 appall 0 outrage 1 015 @ 01808374 v 0000 + 07306252 n 0702 + 01225397 n 0703 + 07517737 n 0702 + 01225397 n 0402 + 07306252 n 0401 + 07223811 n 0401 + 01225397 n 0301 + 07306252 n 0301 + 07223811 n 0301 + 02560035 a 0206 + 01627965 a 0203 + 01624633 a 0201 + 07510625 n 0102 + 10590977 n 0101 02 + 09 00 + 10 00 | strike with disgust or revulsion; "The scandalous behavior of this married woman shocked her friends" -01810933 37 v 01 despair 0 006 + 07541923 n 0101 + 14486274 n 0101 + 14486274 n 0102 + 10008535 n 0101 ! 01811441 v 0101 ~ 01811172 v 0000 02 + 02 00 + 22 00 | abandon hope; give up hope; lose heart; "Don't despair--help is on the way!" -01811172 37 v 01 despond 0 004 @ 01810933 v 0000 + 01230153 a 0101 + 07538395 n 0101 + 07538395 n 0102 01 + 02 00 | lose confidence or hope; become dejected; "The supporters of the Presidential candidate desponded when they learned the early results of the election" -01811441 37 v 01 hope 0 008 @ 01825237 v 0000 + 04848262 n 0101 + 10184946 n 0101 + 05950733 n 0102 + 07541053 n 0101 + 07511733 n 0101 + 10185148 n 0101 ! 01810933 v 0101 03 + 02 00 + 22 00 + 26 00 | be optimistic; be full of hope; have hopes; "I am still hoping that all will turn out well" -01811736 37 v 05 elate 0 lift_up 0 uplift 0 pick_up 0 intoxicate 0 009 > 01813884 v 0000 @ 01761706 v 0000 + 07528807 n 0501 + 14405225 n 0101 + 07527656 n 0101 ! 01814396 v 0101 ~ 01812068 v 0000 ~ 01812197 v 0000 ~ 01812324 v 0000 02 + 09 00 + 10 00 | fill with high spirits; fill with optimism; "Music can uplift your spirits" -01812068 37 v 01 beatify 1 003 @ 01811736 v 0000 + 13987719 n 0103 + 01265475 n 0101 02 + 09 00 + 10 00 | make blessedly happy -01812197 37 v 01 puff 0 001 @ 01811736 v 0000 02 + 10 00 + 11 00 | make proud or conceited; "The sudden fame puffed her ego" -01812324 37 v 06 exhilarate 0 tickle_pink 0 inebriate 0 thrill 1 exalt 1 beatify 3 008 @ 01811736 v 0000 + 13987719 n 0603 + 01265475 n 0601 + 13986372 n 0504 + 01261293 n 0401 + 07520112 n 0406 + 07528470 n 0406 + 07528212 n 0101 02 + 09 00 + 10 00 | fill with sublime emotion; "The children were thrilled at the prospect of going to the movies"; "He was inebriated by his phenomenal success" -01812720 37 v 05 inspire 0 animate 0 invigorate 0 enliven 0 exalt 0 004 @ 01761706 v 0000 + 13986372 n 0504 + 01048466 n 0302 ~ 01818235 v 0000 02 + 09 00 + 10 00 | heighten or intensify; "These paintings exalt the imagination" -01812950 37 v 01 gladden 0 002 @ 01813884 v 0000 ! 01813393 v 0101 01 + 02 00 | become glad or happy -01813053 37 v 01 sadden 1 004 > 01813393 v 0000 @ 01767949 v 0000 ! 01813499 v 0101 ~ 01814266 v 0000 02 + 09 00 + 10 00 | make unhappy; "The news of her death saddened me" -01813228 37 v 01 overjoy 0 001 @ 01813499 v 0000 02 + 09 00 + 10 00 | cause to feel extremely joyful or happy; "the economic growth overjoyed the German industry" -01813393 37 v 01 sadden 0 002 @ 01771535 v 0000 ! 01812950 v 0101 02 + 02 00 + 22 00 | come to feel sad -01813499 37 v 02 gladden 1 joy 1 005 > 01812950 v 0000 + 05829782 n 0201 + 07527352 n 0201 ! 01813053 v 0101 ~ 01813228 v 0000 02 + 09 00 + 10 00 | make glad or happy -01813668 37 v 04 exult 0 walk_on_air 0 be_on_cloud_nine 0 jump_for_joy 0 005 @ 01813884 v 0000 + 13987905 n 0205 + 00704898 a 0101 + 07527817 n 0101 ~ 01823370 v 0000 01 + 02 00 | feel extreme happiness or elation -01813884 37 v 02 rejoice 0 joy 0 006 @ 01771535 v 0000 + 07527352 n 0201 + 07529563 n 0101 ~ 00859153 v 0000 ~ 01812950 v 0000 ~ 01813668 v 0000 02 + 02 00 + 22 00 | feel happiness or joy -01814074 37 v 03 lighten 1 lighten_up 1 buoy_up 1 003 > 00860136 v 0000 @ 00858568 v 0000 ! 01814266 v 0101 02 + 09 00 + 10 00 | make more cheerful; "the conversation lightened me up a bit" -01814266 37 v 02 weigh_down 0 weigh_on 0 002 @ 01813053 v 0000 ! 01814074 v 0101 01 + 10 00 | be oppressive or disheartening to -01814396 37 v 08 depress 0 deject 0 cast_down 0 get_down 0 dismay 1 dispirit 0 demoralize 0 demoralise 0 009 @ 01819147 v 0000 + 07537973 n 0802 + 07537973 n 0701 + 07542675 n 0503 + 14486533 n 0201 + 02308214 a 0101 + 04166553 n 0103 ! 01811736 v 0101 ~ 01818972 v 0000 02 + 09 00 + 10 00 | lower someone's spirits; make downhearted; "These news depressed her"; "The bad state of her child's health demoralizes her" -01814815 37 v 04 comfort 1 soothe 0 console 0 solace 0 014 + 01211667 n 0403 + 14446161 n 0401 + 07492655 n 0402 + 14446161 n 0402 + 07492655 n 0403 + 01232204 a 0301 + 00197319 a 0302 + 07492655 n 0301 + 01211667 n 0301 + 01211667 n 0102 + 10518349 n 0103 + 10686313 n 0103 ~ 01764800 v 0000 ~ 01815185 v 0000 02 + 09 00 + 10 00 | give moral or emotional strength to -01815185 37 v 04 still 1 allay 0 relieve 0 ease 0 007 @ 01814815 v 0000 + 14445749 n 0402 + 00354884 n 0402 + 10518349 n 0301 + 10518349 n 0202 + 04982478 n 0103 ~ 01815471 v 0000 02 + 08 00 + 11 00 | lessen the intensity of or calm; "The news eased my conscience"; "still the fears" -01815471 37 v 01 abreact 0 003 @ 01815185 v 0000 ;c 00704305 n 0000 + 00253395 n 0103 01 + 02 00 | discharge bad feelings or tension through verbalization -01815628 37 v 02 please 0 delight 0 015 > 01777210 v 0000 > 01776952 v 0000 @ 01816431 v 0000 + 05829782 n 0202 + 07491038 n 0201 + 01800349 a 0101 + 07490713 n 0101 + 05829782 n 0103 + 01071746 n 0101 + 10441124 n 0101 + 01073556 n 0101 ! 01817130 v 0101 ~ 01807170 v 0000 $ 01816054 v 0000 ~ 01817314 v 0000 02 + 09 00 + 10 00 | give pleasure to or be pleasing to; "These colors please the senses"; "a pleasing sensation" -01816054 37 v 01 please 3 003 $ 01815628 v 0000 @ 01816431 v 0000 + 01586866 a 0101 02 + 09 00 + 10 00 | give satisfaction; "The waiters around her aim to please" -01816219 37 v 01 titillate 0 003 * 01815628 v 0000 @ 01761706 v 0000 + 01262345 n 0101 02 + 09 00 + 10 00 | excite pleasurably or erotically; "A titillating story appeared in the usually conservative magazine" -01816431 37 v 02 satisfy 0 gratify 0 007 + 13986679 n 0201 + 01072780 n 0201 + 09424489 n 0101 ! 01816645 v 0101 ~ 01815628 v 0000 ~ 01816054 v 0000 ~ 01816844 v 0000 02 + 09 00 + 10 00 | make happy or satisfied -01816645 37 v 01 dissatisfy 0 007 * 01798936 v 0000 @ 01817130 v 0000 + 02082611 a 0102 + 07539511 n 0101 ! 01816431 v 0101 ~ 01816983 v 0000 ~ 01830600 v 0000 02 + 09 00 + 10 00 | fail to satisfy -01816844 37 v 01 content 0 003 @ 01816431 v 0000 + 14412882 n 0102 ! 01816983 v 0101 02 + 09 00 + 10 00 | make content; "I am contented" -01816983 37 v 01 discontent 0 004 @ 01816645 v 0000 + 07538965 n 0101 + 07538965 n 0102 ! 01816844 v 0101 02 + 09 00 + 10 00 | make dissatisfied -01817130 37 v 01 displease 0 006 > 01776727 v 0000 + 07540424 n 0101 ! 01815628 v 0101 ~ 01787955 v 0000 ~ 01808769 v 0000 ~ 01816645 v 0000 02 + 09 00 + 10 00 | give displeasure to -01817314 37 v 07 enchant 0 enrapture 0 transport 0 enthrall 0 ravish 0 enthral 0 delight 2 007 @ 01815628 v 0000 + 07491286 n 0502 + 07497976 n 0403 + 13986372 n 0303 + 14407536 n 0101 + 05979454 n 0101 ! 01817755 v 0101 02 + 09 00 + 10 00 | hold spellbound -01817574 37 v 01 work a 002 @ 01806505 v 0000 $ 02116980 v 0000 02 + 09 00 + 10 00 | gratify and charm, usually in order to influence; "the political candidate worked the crowds" -01817755 37 v 02 disenchant 0 disillusion 0 005 @ 01798936 v 0000 + 05988097 n 0203 + 05988097 n 0202 + 05988097 n 0101 ! 01817314 v 0101 02 + 09 00 + 10 00 | free from enchantment -01817938 37 v 04 cheer 2 hearten 0 recreate 0 embolden 0 004 @ 01818235 v 0000 ! 01819387 v 0201 + 07251779 n 0101 ~ 01806407 v 0000 02 + 09 00 + 10 00 | give encouragement to -01818116 37 v 01 rise 0 000 01 + 01 00 | become heartened or elated; "Her spirits rose when she heard the good news" -01818235 37 v 01 encourage 0 011 > 01811441 v 0000 @ 01812720 v 0000 + 07541449 n 0101 ! 01819147 v 0101 ~ 00858781 v 0000 ~ 00908351 v 0000 ~ 00913885 v 0000 ~ 01817938 v 0000 ~ 01818538 v 0000 ~ 01818669 v 0000 ~ 01818835 v 0000 02 + 09 00 + 10 00 | inspire with confidence; give hope or courage to -01818538 37 v 01 draw_out 0 001 @ 01818235 v 0000 02 + 09 00 + 10 00 | make more sociable; "The therapist drew out the shy girl" -01818669 37 v 01 bring_out 0 001 @ 01818235 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | encourage to be less reserved; "The teacher tried to bring out the shy boy" -01818835 37 v 02 spur 0 goad 0 003 @ 01818235 v 0000 + 07252378 n 0201 + 07252378 n 0106 02 + 09 00 + 10 00 | give heart or courage to -01818972 37 v 01 chill 0 002 @ 01814396 v 0000 + 07537259 n 0101 03 + 09 00 + 10 00 + 11 00 | depress or discourage; "The news of the city's surrender chilled the soldiers" -01819147 37 v 01 discourage 0 006 + 07542675 n 0101 ! 01818235 v 0101 ~ 01814396 v 0000 ~ 01819387 v 0000 ~ 01819554 v 0000 ~ 01819772 v 0000 02 + 09 00 + 10 00 | deprive of courage or hope; take away hope from; cause to feel discouraged -01819387 37 v 02 dishearten 0 put_off 0 004 @ 01819147 v 0000 + 07542675 n 0102 + 07253814 n 0101 ! 01817938 v 0102 02 + 09 00 + 10 00 | take away the enthusiasm of -01819554 37 v 02 intimidate 1 restrain 0 006 @ 01819147 v 0000 * 00870213 v 0000 + 10525134 n 0201 + 07254057 n 0103 + 01222477 n 0102 ~ 01785748 v 0000 02 + 09 00 + 10 00 | to compel or deter by or as if by threats -01819772 37 v 02 throw_cold_water_on 0 pour_cold_water_on 0 001 @ 01819147 v 0000 02 + 08 00 + 09 00 | be discouraging or negative about -01819911 37 v 03 dither 0 flap 0 pother 0 004 @ 01793933 v 0000 + 14403772 n 0302 + 14403772 n 0205 + 14403772 n 0101 02 + 02 00 + 22 00 | make a fuss; be agitated -01820077 37 v 01 pother 1 002 @ 01762528 v 0000 + 14403772 n 0102 02 + 09 00 + 10 00 | make upset or troubled -01820189 37 v 01 dither 1 001 @ 01767461 v 0000 02 + 02 00 + 22 00 | act nervously; be undecided; be uncertain -01820302 37 v 05 enjoy 0 bask d relish 0 savor 0 savour 0 007 * 01777210 v 0000 + 07491981 n 0302 + 07491708 n 0101 + 01072072 n 0101 + 10058411 n 0101 ~ 01820648 v 0000 ~ 01820798 v 0000 04 + 08 00 + 09 00 + 33 00 + 22 02 | derive or receive pleasure from; get enjoyment from; take pleasure in; "She relished her fame and basked in her glory" -01820648 37 v 01 feast_one's_eyes 0 001 @ 01820302 v 0000 01 + 22 00 | look at with great enjoyment; "She feasted her eyes on the Tuscan landscape" -01820798 37 v 01 devour 0 001 @ 01820302 v 0000 01 + 08 00 | enjoy avidly; "She devoured his novels" -01820901 37 v 03 exacerbate 0 exasperate 0 aggravate 0 007 @ 01785971 v 0000 + 01221790 n 0301 + 07518878 n 0301 + 09778537 n 0301 + 07518878 n 0202 + 00425451 n 0201 + 01222157 n 0101 02 + 09 00 + 10 00 | exasperate or irritate -01821132 37 v 04 fascinate 0 transfix 0 grip 0 spellbind 0 005 @ 01821423 v 0000 + 10634990 n 0401 + 05194874 n 0301 + 14407899 n 0101 + 04689450 n 0101 02 + 09 00 + 10 00 | to render motionless, as with a fixed stare or by arousing terror or awe; "The snake charmer fascinates the cobra" -01821423 37 v 01 interest 0 006 @ 01759326 v 0000 + 05192451 n 0101 + 05682950 n 0101 ! 01821884 v 0101 ~ 00600370 v 0000 ~ 01821132 v 0000 02 + 09 00 + 10 00 | excite the curiosity of; engage the interest of -01821634 37 v 03 startle 0 galvanize 0 galvanise 0 005 @ 01809064 v 0000 + 10118382 n 0302 + 01262109 n 0201 + 10118382 n 0201 + 01262109 n 0302 03 + 09 00 + 10 00 + 30 00 | to stimulate to action ; "..startled him awake"; "galvanized into action" -01821884 37 v 02 bore 0 tire 1 002 + 09867437 n 0101 ! 01821423 v 0101 02 + 09 00 + 10 00 | cause to be bored -01821996 37 v 05 feel_for 0 pity 0 compassionate 0 condole_with 0 sympathize_with 0 007 @ 01797347 v 0000 + 07553741 n 0301 + 04829550 n 0301 + 04829550 n 0202 + 07553964 n 0202 ~ 01822248 v 0000 ~ 01822936 v 0000 01 + 09 00 | share the suffering of -01822248 37 v 03 commiserate 0 sympathize 0 sympathise 0 009 @ 01821996 v 0000 + 10686313 n 0302 + 07553301 n 0301 + 10686313 n 0201 + 07553301 n 0201 + 02375312 a 0101 + 07553964 n 0101 + 06633692 n 0102 ~ 01822536 v 0000 02 + 02 00 + 22 00 | to feel or express sympathy or compassion -01822536 37 v 01 condole 0 002 @ 01822248 v 0000 + 06633692 n 0101 02 + 02 00 + 22 00 | express one's sympathetic grief, on the occasion of someone's death; "You must condole the widow" -01822724 37 v 02 sympathize 1 sympathise 1 005 @ 01771535 v 0000 + 10686073 n 0202 + 13811900 n 0201 + 10686073 n 0101 + 13811900 n 0101 02 + 02 00 + 22 00 | share the feelings of; understand the sentiments of -01822936 37 v 01 care 2 005 @ 01821996 v 0000 + 07505047 n 0101 + 07546125 n 0102 ^ 02550296 v 0101 ^ 01776214 v 0101 02 + 02 00 + 22 00 | feel concern or interest; "I really care about my work"; "I don't care" -01823149 37 v 04 care_a_hang 0 give_a_hoot 0 give_a_hang 0 give_a_damn 0 000 02 + 02 00 + 22 00 | show no concern or interest; always used in the negative; "I don't give a hoot"; "She doesn't give a damn about her job" -01823370 37 v 03 wallow 0 rejoice 2 triumph 0 004 @ 01813668 v 0000 + 00704898 a 0307 + 07528097 n 0301 + 07529563 n 0201 01 + 21 00 | be ecstatic with joy -01823528 37 v 04 estrange 0 alienate 0 alien 0 disaffect 0 006 @ 00126264 v 0000 + 07502387 n 0402 + 09783369 n 0201 + 14415773 n 0102 ~ 01824050 v 0000 ~ 01824253 v 0000 02 + 09 00 + 10 00 | arouse hostility or indifference in where there had formerly been love, affection, or friendliness; "She alienated her friends when she became fanatically religious" -01823888 37 v 01 alienate 1 001 @ 01767949 v 0000 01 + 10 00 | make withdrawn or isolated or emotionally dissociated; "the boring work alienated his employees" -01824050 37 v 02 drift_apart 0 drift_away 3 001 @ 01823528 v 0000 01 + 02 00 | lose personal contact over time; "The two women, who had been roommates in college, drifted apart after they got married" -01824253 37 v 01 wean 0 001 @ 01823528 v 0000 01 + 09 00 | detach the affections of -01824339 37 v 01 wish 0 005 @ 01825237 v 0000 + 07486229 n 0101 + 07185870 n 0101 + 07486229 n 0102 ~ 01826723 v 0000 02 + 08 00 + 28 00 | hope for; have a wish; "I wish I could go home now" -01824532 37 v 02 wish 1 wish_well 0 004 @ 01825237 v 0000 + 07486229 n 0101 + 07185870 n 0101 ! 01825125 v 0101 02 + 14 00 + 09 02 | feel or express a desire or hope concerning the future or fortune of -01824736 37 v 03 wish 2 care 0 like 1 003 @ 01825237 v 0000 + 07486229 n 0101 ~ 01824958 v 0000 01 + 28 00 | prefer or wish to do something; "Do you care to try this dish?"; "Would you like to come along to the movies?" -01824958 37 v 01 please 1 002 @ 01824736 v 0000 + 01071746 n 0101 02 + 01 00 + 02 00 | be the will of or have the will (to); "he could do many things if he pleased" -01825125 37 v 02 begrudge 0 resent 1 001 ! 01824532 v 0101 02 + 26 00 + 14 01 | wish ill or allow unwillingly -01825237 37 v 02 desire 0 want 0 020 + 10766025 n 0201 + 07486229 n 0203 + 07484265 n 0101 + 14038993 n 0101 + 04945057 n 0101 ~ 01188485 v 0000 ~ 01776468 v 0000 ~ 01805523 v 0000 ~ 01811441 v 0000 ~ 01824339 v 0000 ~ 01824532 v 0000 ~ 01824736 v 0000 ~ 01825761 v 0000 ~ 01825962 v 0000 ~ 01826060 v 0000 ~ 01826184 v 0000 ~ 01827064 v 0000 ~ 01828256 v 0000 ~ 01828405 v 0000 ~ 02240481 v 0000 04 + 08 00 + 26 00 + 28 00 + 24 02 | feel or have a desire for; want strongly; "I want to go home now"; "I want my own room" -01825761 37 v 02 itch 0 spoil 0 002 @ 01825237 v 0000 + 07490451 n 0102 01 + 28 00 | have a strong desire or urge to do something; "She is itching to start the project"; "He is spoiling for a fight" -01825962 37 v 01 like 6 001 @ 01825237 v 0000 01 + 08 00 | want to have; "I'd like a beer now!" -01826060 37 v 01 ambition 0 003 @ 01825237 v 0000 + 07484547 n 0101 + 04836268 n 0101 01 + 28 00 | have as one's ambition -01826184 37 v 01 feel_like 0 001 @ 01825237 v 0000 02 + 08 00 + 33 00 | have an inclination for something or some activity; "I feel like staying in bed all day"; "I feel like a cold beer now" -01826378 37 v 01 desire 1 003 @ 00752764 v 0000 + 14038993 n 0101 + 04945057 n 0101 01 + 08 00 | express a desire for -01826498 37 v 01 prefer 0 002 @ 01777210 v 0000 + 07498210 n 0101 05 + 08 00 + 09 00 + 15 00 + 27 00 + 33 00 | like better; value more highly; "Some people prefer camping to staying in hotels"; "We prefer sleeping outside" -01826723 37 v 03 hope 1 trust 0 desire 2 009 @ 01824339 v 0000 + 04945057 n 0301 + 14038993 n 0301 + 04848262 n 0101 + 10184946 n 0101 + 05950733 n 0102 + 07541053 n 0101 + 07511733 n 0101 + 10185148 n 0101 01 + 26 00 | expect and wish; "I trust you will behave better from now on"; "I hope she understands that she cannot expect a raise" -01827064 37 v 02 envy 0 begrudge 1 004 @ 01825237 v 0000 + 07549716 n 0101 + 00758335 n 0101 ~ 01827232 v 0000 02 + 14 00 + 09 01 | be envious of; set one's heart on -01827232 37 v 01 covet 0 002 @ 01827064 v 0000 ~ 01827425 v 0000 01 + 08 00 | wish, long, or crave for (something, especially the property of another person); "She covets her sister's house" -01827425 37 v 02 salivate 0 drool 0 001 @ 01827232 v 0000 01 + 22 00 | be envious, desirous, eager for, or extremely happy about something; "She was salivating over the raise she anticipated" -01827619 37 v 01 envy 1 002 @ 01827858 v 0000 + 07549716 n 0101 02 + 09 00 + 14 01 | feel envious towards; admire enviously -01827745 37 v 02 drool_over 0 slobber_over 0 001 @ 01778017 v 0000 02 + 08 00 + 09 00 | envy without restraint -01827858 37 v 02 admire 0 look_up_to 0 007 @ 00694068 v 0000 + 07500741 n 0101 + 10677713 n 0104 + 09771664 n 0101 + 09771435 n 0101 ! 01828070 v 0101 ~ 01827619 v 0000 02 + 08 00 + 09 00 | feel admiration for -01828070 37 v 01 look_down_on 0 002 @ 01774799 v 0000 ! 01827858 v 0101 02 + 08 00 + 09 00 | regard with contempt; "the new neighbor looks down on us because our house is very modest" -01828256 37 v 02 lust_after 0 lech_after 0 001 @ 01825237 v 0000 01 + 09 00 | have a strong sexual desire for; "he is lusting after his secretary" -01828405 37 v 03 hanker 0 long 2 yearn 0 007 @ 01825237 v 0000 + 10270878 n 0303 + 07486628 n 0302 + 10270878 n 0201 + 07486628 n 0201 + 07486922 n 0101 ~ 01805684 v 0000 01 + 22 00 | desire strongly or persistently -01828623 37 v 01 care_for 1 001 @ 01777210 v 0000 02 + 08 00 + 33 00 | have a liking, fondness, or taste (for) -01828736 37 v 02 love 2 enjoy 1 009 @ 01777210 v 0000 + 07491708 n 0201 + 01072072 n 0201 + 10058411 n 0201 + 05813229 n 0101 + 07543288 n 0101 + 10077593 n 0104 + 09622302 n 0101 ~ 02197250 v 0000 02 + 08 00 + 28 00 | get pleasure from; "I love cooking" -01828993 37 v 02 take_pride 9 pride_oneself 9 001 @ 01771535 v 0000 01 + 22 00 | feel proud of; "She took great pride in her sons" -01829126 37 v 02 fall_apart 0 go_to_pieces 0 001 @ 01784295 v 0000 01 + 02 00 | lose one's emotional or mental composure; "She fell apart when her only child died" -01829292 37 v 01 burn 0 001 @ 01771535 v 0000 01 + 02 00 | feel strong emotion, especially anger or passion; "She was burning with anger"; "He was burning to try out his new skies" -01829475 37 v 01 die 3 001 @ 01771535 v 0000 01 + 22 00 | feel indifferent towards; "She died to worldly things and eventually entered a monastery" -01829625 37 v 01 fly_high 0 001 @ 01771535 v 0000 01 + 02 00 | be elated; "He was flying high during the summer months" -01829747 37 v 04 glow 0 beam 1 radiate 0 shine 0 004 @ 01771535 v 0000 + 14051201 n 0301 + 14051056 n 0102 + 07480521 n 0101 01 + 02 00 | experience a feeling of well-being or happiness, as from good health or an intense emotion; "She was beaming with joy"; "Her face radiated with happiness" -01830042 37 v 01 glow 1 002 @ 01771535 v 0000 + 14051056 n 0102 02 + 01 00 + 02 00 | be exuberant or high-spirited; "Make the people's hearts glow" -01830192 37 v 01 enthuse 0 002 @ 01772960 v 0000 ~ 01830307 v 0000 02 + 09 00 + 10 00 | cause to feel enthusiasm -01830307 37 v 01 bring_down 0 001 @ 01830192 v 0000 02 + 09 00 + 10 00 | cause to be enthusiastic; "Her playing brought down the house" -01830445 37 v 01 disarm 0 001 @ 00769553 v 0000 02 + 09 00 + 10 00 | make less hostile; win over; "Her charm disarmed the prosecution lawyer completely" -01830600 37 v 01 disgruntle 0 002 @ 01816645 v 0000 + 07539259 n 0101 02 + 09 00 + 10 00 | put into a bad mood or into bad humour; "The employees were disgruntled by their bad working conditions" -01830798 37 v 01 electrify 0 003 @ 01762528 v 0000 + 07514600 n 0101 + 01047191 n 0101 02 + 09 00 + 10 00 | excite suddenly and intensely; "The news electrified us" -01830965 37 v 01 spook 0 002 @ 01779165 v 0000 + 05898171 n 0103 02 + 09 00 + 10 00 | frighten or scare, and often provoke into a violent action; "The noise spooked the horse" -01831143 37 v 01 obsess 3 003 @ 01767163 v 0000 + 01585022 a 0102 + 05700401 n 0101 01 + 22 00 | be preoccupied with something; "She is obsessing over her weight" -01831308 37 v 01 puzzle 3 003 @ 00630380 v 0000 + 06784639 n 0101 + 05685030 n 0103 01 + 22 00 | be uncertain about; think about without fully understanding or being able to decide; "We puzzled over her sudden departure" -01831531 38 v 01 move 0 101 + 00331950 n 0101 + 00331950 n 0103 + 00331950 n 0102 ! 01834485 v 0101 ^ 01848465 v 0101 ~ 00010054 v 0000 ~ 00053035 v 0000 ~ 00101434 v 0000 ~ 01242208 v 0000 ~ 01280488 v 0000 ~ 01380122 v 0000 ~ 01440139 v 0000 ~ 01473176 v 0000 ~ 01708676 v 0000 ~ 01833508 v 0000 ~ 01833717 v 0000 ~ 01835280 v 0000 ~ 01842068 v 0000 ~ 01848465 v 0000 ~ 01860485 v 0000 ~ 01864634 v 0000 ~ 01864865 v 0000 ~ 01865203 v 0000 ~ 01865383 v 0000 ~ 01866030 v 0000 ~ 01868370 v 0000 ~ 01869003 v 0000 ~ 01869196 v 0000 ~ 01869299 v 0000 ~ 01869563 v 0000 ~ 01870043 v 0000 ~ 01871321 v 0000 ~ 01871471 v 0000 ~ 01875820 v 0000 ~ 01876530 v 0000 ~ 01877785 v 0000 ~ 01879579 v 0000 ~ 01880113 v 0000 ~ 01881034 v 0000 ~ 01884383 v 0000 ~ 01884577 v 0000 ~ 01884974 v 0000 ~ 01885430 v 0000 ~ 01888295 v 0000 ~ 01889610 v 0000 ~ 01891249 v 0000 ~ 01891817 v 0000 ~ 01893601 v 0000 ~ 01893771 v 0000 ~ 01893988 v 0000 ~ 01894164 v 0000 ~ 01894649 v 0000 ~ 01900408 v 0000 ~ 01901289 v 0000 ~ 01901783 v 0000 ~ 01902126 v 0000 ~ 01907258 v 0000 ~ 01910373 v 0000 ~ 01918669 v 0000 ~ 01923414 v 0000 ~ 01923909 v 0000 ~ 01936361 v 0000 ~ 01963942 v 0000 ~ 01966039 v 0000 ~ 01973486 v 0000 ~ 01982395 v 0000 ~ 01992251 v 0000 ~ 02015598 v 0000 ~ 02030158 v 0000 ~ 02032415 v 0000 ~ 02039013 v 0000 ~ 02047857 v 0000 ~ 02054541 v 0000 ~ 02058191 v 0000 ~ 02058448 v 0000 ~ 02058590 v 0000 ~ 02061069 v 0000 ~ 02062212 v 0000 ~ 02064759 v 0000 ~ 02066510 v 0000 ~ 02066939 v 0000 ~ 02084252 v 0000 ~ 02087605 v 0000 ~ 02088470 v 0000 ~ 02088627 v 0000 ~ 02088792 v 0000 ~ 02088949 v 0000 ~ 02093390 v 0000 ~ 02094428 v 0000 ~ 02095211 v 0000 ~ 02096167 v 0000 ~ 02096494 v 0000 ~ 02096670 v 0000 ~ 02097204 v 0000 ~ 02098332 v 0000 ~ 02099075 v 0000 ~ 02099239 v 0000 ~ 02101649 v 0000 ~ 02104503 v 0000 ~ 02105082 v 0000 ~ 02105549 v 0000 02 + 08 00 + 11 00 | move so as to change position, perform a nontranslational motion; "He moved his hand slightly to the right" -01833508 38 v 01 drop_back 0 001 @ 01831531 v 0000 01 + 02 00 | take position in the rear, as in a military formation or in the line of scrimmage in football; "The defender dropped back behind his teammate" -01833717 38 v 02 hit_the_dirt 0 hit_the_deck 0 001 @ 01831531 v 0000 01 + 02 00 | fall or drop suddenly, usually to evade some danger; "The soldiers hit the dirt when they heard gunfire" -01833906 38 v 01 prolapse 0 002 @ 01970826 v 0000 + 14559208 n 0101 01 + 01 00 | slip or fall out of place, as of body parts; "prolapsed rectum" -01834053 38 v 01 plunge 5 002 $ 00347918 v 0000 @ 02061495 v 0000 01 + 22 00 | dash violently or with great speed or impetuosity; "She plunged at it eagerly" -01834213 38 v 01 ease 0 002 @ 01835496 v 0000 ^ 01848465 v 0104 02 + 20 00 + 21 00 | move gently or carefully; "He eased himself into the chair" -01834360 38 v 01 whish 0 001 @ 01835496 v 0000 02 + 01 00 + 02 00 | move with a whishing sound; "The car whished past her" -01834485 38 v 01 stand_still 0 004 + 14015361 n 0105 ! 01831531 v 0101 ~ 01834730 v 0000 ~ 01834896 v 0000 02 + 01 00 + 02 00 | remain in place; hold still; remain fixed or immobile; "Traffic stood still when the funeral procession passed by" -01834730 38 v 02 freeze 0 stop_dead 0 002 @ 01834485 v 0000 ~ 00486703 v 0000 01 + 02 00 | stop moving or become immobilized; "When he saw the police car he froze" -01834896 38 v 04 grind_to_a_halt 0 get_stuck 0 bog_down 0 mire 0 003 @ 01834485 v 0000 + 09355850 n 0401 $ 01835103 v 0000 02 + 01 00 + 02 00 | be unable to move further; "The car bogged down in the sand" -01835103 38 v 02 mire 1 bog_down 1 003 $ 01834896 v 0000 > 01834896 v 0000 + 09355850 n 0101 02 + 10 00 + 11 00 | cause to get stuck as if in a mire; "The mud mired our cart" -01835280 38 v 01 gravitate 0 005 @ 01831531 v 0000 + 02737183 a 0102 + 11464143 n 0102 + 07362830 n 0101 + 11464143 n 0101 01 + 04 00 | move due to the pull of gravitation; "The stars gravitate towards each other" -01835496 38 v 04 travel 0 go 0 move 3 locomote 0 153 $ 01850315 v 0000 + 02994448 a 0401 + 04773596 n 0401 + 00283127 n 0401 + 00279835 n 0301 + 00279835 n 0303 + 00279835 n 0302 + 07309781 n 0301 + 10335931 n 0301 ^ 01992503 v 0304 ^ 01856211 v 0301 ^ 01994442 v 0308 ^ 01992503 v 0206 ^ 01921964 v 0204 ^ 02072849 v 0207 ^ 02073714 v 0206 ^ 02667558 v 0201 ^ 02051694 v 0205 ^ 01968569 v 0205 ^ 01989873 v 0203 ^ 01970646 v 0202 ^ 01970826 v 0203 ^ 01989873 v 0204 ^ 00781000 v 0202 ^ 00969873 v 0201 + 07311115 n 0102 + 00283127 n 0102 + 09629752 n 0102 + 09629752 n 0101 ! 01848355 v 0101 ~ 00969873 v 0000 ~ 01123415 v 0000 ~ 01834213 v 0000 ~ 01834360 v 0000 ~ 01838651 v 0000 ~ 01839030 v 0000 ~ 01839170 v 0000 ~ 01839280 v 0000 ~ 01839404 v 0000 ~ 01839538 v 0000 ~ 01839690 v 0000 ~ 01839807 v 0000 ~ 01839963 v 0000 ~ 01840092 v 0000 ~ 01841079 v 0000 ~ 01841347 v 0000 ~ 01841772 v 0000 ~ 01842508 v 0000 ~ 01842888 v 0000 ~ 01843497 v 0000 ~ 01844859 v 0000 ~ 01846916 v 0000 ~ 01849221 v 0000 ~ 01858910 v 0000 ~ 01868139 v 0000 ~ 01872877 v 0000 ~ 01875144 v 0000 ~ 01877620 v 0000 ~ 01881180 v 0000 ~ 01882170 v 0000 ~ 01882814 v 0000 ~ 01884126 v 0000 ~ 01885845 v 0000 ~ 01886334 v 0000 ~ 01886488 v 0000 ~ 01887020 v 0000 ~ 01887576 v 0000 ~ 01892608 v 0000 ~ 01894520 v 0000 ~ 01902783 v 0000 ~ 01903385 v 0000 ~ 01904293 v 0000 ~ 01904649 v 0000 ~ 01904930 v 0000 ~ 01909812 v 0000 ~ 01911339 v 0000 ~ 01916033 v 0000 ~ 01925694 v 0000 ~ 01926984 v 0000 ~ 01928838 v 0000 ~ 01930117 v 0000 ~ 01930738 v 0000 ~ 01938426 v 0000 ~ 01940403 v 0000 ~ 01944976 v 0000 ~ 01945183 v 0000 ~ 01948872 v 0000 ~ 01949218 v 0000 ~ 01949333 v 0000 ~ 01957529 v 0000 ~ 01959181 v 0000 ~ 01960911 v 0000 ~ 01968569 v 0000 ~ 01969216 v 0000 ~ 01970826 v 0000 ~ 01972298 v 0000 ~ 01991744 v 0000 ~ 01991931 v 0000 ~ 01992503 v 0000 ~ 01994442 v 0000 ~ 01994960 v 0000 ~ 01995549 v 0000 ~ 01997119 v 0000 ~ 01998302 v 0000 ~ 01998432 v 0000 ~ 01999218 v 0000 ~ 02000868 v 0000 ~ 02004874 v 0000 ~ 02011865 v 0000 ~ 02025353 v 0000 ~ 02025550 v 0000 ~ 02041728 v 0000 ~ 02042237 v 0000 ~ 02044278 v 0000 ~ 02044866 v 0000 ~ 02050132 v 0000 ~ 02051694 v 0000 ~ 02055649 v 0000 ~ 02055975 v 0000 ~ 02056209 v 0000 ~ 02057656 v 0000 ~ 02058994 v 0000 ~ 02059916 v 0000 ~ 02062081 v 0000 ~ 02069014 v 0000 ~ 02079818 v 0000 ~ 02082181 v 0000 ~ 02082527 v 0000 ~ 02085158 v 0000 ~ 02085446 v 0000 ~ 02085573 v 0000 ~ 02088107 v 0000 ~ 02088241 v 0000 ~ 02089082 v 0000 ~ 02091165 v 0000 ~ 02091410 v 0000 ~ 02091885 v 0000 ~ 02092183 v 0000 ~ 02092476 v 0000 ~ 02093088 v 0000 ~ 02095900 v 0000 ~ 02096853 v 0000 ~ 02097544 v 0000 ~ 02098827 v 0000 ~ 02099413 v 0000 ~ 02099544 v 0000 ~ 02099829 v 0000 ~ 02100176 v 0000 ~ 02101470 v 0000 ~ 02102002 v 0000 ~ 02102398 v 0000 ~ 02103451 v 0000 ~ 02103612 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | change location; move, travel, or proceed, also metaphorically; "How fast does your new car go?"; "We travelled from Rome to Naples by bus"; "The policemen went from door to door looking for the suspect"; "The soldiers moved towards the city in an attempt to take it before night fell"; "news travelled fast" -01838651 38 v 01 float 4 004 $ 01902783 v 0000 @ 01835496 v 0000 $ 01904293 v 0000 ~ 02750154 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move lightly, as if suspended; "The dancer floated across the stage" -01838860 38 v 01 thrash b 001 @ 01839030 v 0000 01 + 04 00 | move data into and out of core rather than performing useful computation; "The system is thrashing again!" -01839030 38 v 01 swap 0 002 @ 01835496 v 0000 ~ 01838860 v 0000 01 + 11 00 | move (a piece of a program) into memory, in computer science -01839170 38 v 01 seek 0 001 @ 01835496 v 0000 01 + 04 00 | go to or towards; "a liquid seeks its own level" -01839280 38 v 01 whine 0 001 @ 01835496 v 0000 01 + 04 00 | move with a whining sound; "The bullets were whining past us" -01839404 38 v 01 fly 8 001 @ 01835496 v 0000 02 + 01 00 + 04 00 | be dispersed or disseminated; "Rumors and accusations are flying" -01839538 38 v 01 ride 2 001 @ 01835496 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move like a floating object; "The moon rode high in the night sky" -01839690 38 v 01 come 3 001 @ 01835496 v 0000 02 + 08 00 + 11 00 | cover a certain distance; "She came a long way" -01839807 38 v 01 ghost 0 002 @ 01835496 v 0000 + 09545976 n 0101 02 + 01 00 + 02 00 | move like a ghost; "The masked men ghosted across the moonlit yard" -01839963 38 v 01 betake_oneself 0 001 @ 01835496 v 0000 02 + 01 00 + 02 00 | displace oneself; go from one location to another -01840092 38 v 02 pass_over 3 overfly 0 002 @ 01835496 v 0000 ;c 00300441 n 0000 02 + 08 00 + 11 00 | fly over; "The plane passed over Damascus" -01840238 38 v 01 fly 5 007 @ 01841079 v 0000 ;c 00300441 n 0000 + 10096217 n 0102 + 10096217 n 0101 + 00302394 n 0102 ~ 01840505 v 0000 $ 01941093 v 0000 02 + 02 00 + 22 00 | travel in an airplane; "she is flying to Cincinnati tonight"; "Are we driving or flying?" -01840505 38 v 01 red-eye 0 002 @ 01840238 v 0000 ;c 00300441 n 0000 01 + 02 00 | travel on an overnight flight; "The candidate red-eyed from California to the East Coast the night before the election to give a last stump speech" -01840736 38 v 01 hop 5 002 @ 01841079 v 0000 $ 02095211 v 0000 01 + 08 00 | travel by means of an aircraft, bus, etc.; "She hopped a train to Chicago"; "He hopped rides all over the country" -01840929 38 v 01 tube 2 001 @ 01955984 v 0000 02 + 02 00 + 22 00 | ride or float on an inflated tube; "We tubed down the river on a hot summer day" -01841079 38 v 01 travel 3 007 @ 01835496 v 0000 + 07311115 n 0102 + 09629752 n 0102 + 09629752 n 0101 ~ 01840238 v 0000 ~ 01840736 v 0000 ~ 01955984 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | undergo transportation as in a vehicle; "We travelled North on Rte. 508" -01841347 38 v 01 wend 0 001 @ 01835496 v 0000 01 + 21 00 | direct one's course or way; "wend your way through the crowds" -01841471 38 v 01 sheer 1 001 @ 01931768 v 0000 01 + 08 00 | cause to sheer; "She sheered her car around the obstacle" -01841591 38 v 01 pull_over 0 001 @ 01931768 v 0000 02 + 01 00 + 02 00 | steer a vehicle to the side of the road; "The car pulled over when the ambulance approached at high speed" -01841772 38 v 01 do 0 001 @ 01835496 v 0000 02 + 08 00 + 11 00 | travel or traverse (a distance); "This car does 150 miles per hour"; "We did 6 miles on our hike every day" -01841947 38 v 01 astrogate 0 003 @ 01846320 v 0000 ;c 06096913 n 0000 + 09817694 n 0101 01 + 02 00 | navigate in space -01842068 38 v 01 fly 2 001 @ 01831531 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move quickly or suddenly; "He flew about the place" -01842204 38 v 01 go_out 2 002 @ 02009433 v 0000 ~ 02485844 v 0000 01 + 02 00 | leave the house to go somewhere; "We never went out when our children were small" -01842367 38 v 01 desert 2 001 @ 02009433 v 0000 01 + 08 00 | leave behind; "the students deserted the campus after the end of exam period" -01842508 38 v 01 raft 0 004 $ 01949966 v 0000 @ 01835496 v 0000 + 04045397 n 0101 + 10504545 n 0103 03 + 02 00 + 08 00 + 22 00 | travel by raft in water; "Raft the Colorado River" -01842690 38 v 01 take 2 001 @ 01158872 v 0000 01 + 08 00 | travel or go by means of a certain kind of transportation, or a certain route; "He takes the bus to work"; "She takes Route 1 to Newark" -01842888 38 v 02 get_around 0 get_about 0 001 @ 01835496 v 0000 02 + 01 00 + 02 00 | move around; move from place to place; "How does she get around without a car?" -01843055 38 v 03 travel 1 trip 2 jaunt 0 012 > 01835496 v 0000 + 00311809 n 0302 + 00308370 n 0201 + 10596689 n 0203 + 09629752 n 0102 + 09629752 n 0101 ~ 01843364 v 0000 ~ 01843689 v 0000 ~ 01845720 v 0000 ~ 01864038 v 0000 ~ 02061846 v 0000 ~ 02081006 v 0000 02 + 02 00 + 20 00 | make a trip for pleasure -01843364 38 v 02 junketeer 0 junket 0 003 @ 01843055 v 0000 + 00311809 n 0204 + 00312160 n 0201 01 + 02 00 | go on a pleasure trip -01843497 38 v 02 repair 0 resort 0 003 @ 01835496 v 0000 + 08640531 n 0201 + 08581503 n 0104 01 + 08 00 | move, travel, or proceed toward some place; "He repaired to his cabin in the woods" -01843689 38 v 02 travel_to 0 visit 0 005 @ 01843055 v 0000 + 10757193 n 0201 + 01056236 n 0201 ~ 01843904 v 0000 ~ 01844431 v 0000 01 + 08 00 | go to certain places as for sightseeing; "Did you ever visit Paris?" -01843904 38 v 01 sightsee 0 003 @ 01843689 v 0000 + 10596689 n 0101 + 00879607 n 0101 02 + 02 00 + 22 00 | visit famous or interesting sights -01844048 38 v 02 visit 1 inspect 0 004 + 00879271 n 0201 + 08385280 n 0101 + 00652069 n 0101 + 10757193 n 0101 02 + 08 00 + 11 00 | come to see in an official or professional capacity; "The governor visited the prison"; "The grant administrator visited the laboratory" -01844319 38 v 01 revisit 0 001 @ 02004874 v 0000 01 + 08 00 | visit again; "We revisited Rome after 25 years" -01844431 38 v 02 frequent 0 haunt 2 005 @ 01843689 v 0000 + 08581503 n 0201 + 01066542 a 0101 + 10407726 n 0102 ~ 02390287 v 0000 01 + 08 00 | be a regular or frequent visitor to a certain place; "She haunts the ballet" -01844653 38 v 01 cruise 1 003 @ 01846320 v 0000 + 02932891 n 0102 + 00312932 n 0101 02 + 02 00 + 20 00 | sail or travel about for pleasure, relaxation, or sightseeing; "We were cruising in the Caribbean" -01844859 38 v 01 cruise 2 004 @ 01835496 v 0000 ;c 00300441 n 0000 + 03141065 n 0101 ~ 01845105 v 0000 03 + 01 00 + 02 00 + 22 00 | travel at a moderate speed; "Please keep your seat belt fastened while the plane is reaching cruising altitude" -01845105 38 v 01 stooge 0 002 @ 01844859 v 0000 ;c 00300441 n 0000 02 + 01 00 + 02 00 | cruise in slow or routine flights -01845229 38 v 01 tour 0 006 @ 01845720 v 0000 + 00310666 n 0101 + 10718131 n 0101 + 10718131 n 0102 ~ 01845587 v 0000 ~ 02493030 v 0000 02 + 02 00 + 08 00 | make a tour of a certain place; "We toured the Provence this summer" -01845457 38 v 01 globe-trot 0 001 @ 01845720 v 0000 02 + 02 00 + 22 00 | travel all over the world for pleasure and sightseeing -01845587 38 v 01 take_the_road 0 001 @ 01845229 v 0000 01 + 02 00 | give theatrical performances while traveling from town to town -01845720 38 v 02 travel 4 journey 0 016 $ 01846916 v 0000 @ 01843055 v 0000 + 00306426 n 0201 + 10771392 n 0202 + 00306426 n 0202 + 00295701 n 0101 + 09629752 n 0102 + 09629752 n 0101 + 00295701 n 0103 + 00295701 n 0102 ~ 01845229 v 0000 ~ 01845457 v 0000 ~ 01846099 v 0000 ~ 01846320 v 0000 ~ 01847220 v 0000 ~ 01847392 v 0000 02 + 02 00 + 20 00 | undertake a journey or trip -01846099 38 v 01 sledge 2 002 @ 01845720 v 0000 + 04235291 n 0102 02 + 02 00 + 22 00 | ride in or travel with a sledge; "the antarctic expedition sledged along the coastline"; "The children sledged all day by the lake" -01846320 38 v 03 voyage 0 sail 2 navigate 2 009 @ 01845720 v 0000 + 01724743 a 0301 + 01105737 n 0301 + 00312932 n 0202 + 00312784 n 0102 + 00312553 n 0101 + 10761190 n 0101 ~ 01841947 v 0000 ~ 01844653 v 0000 03 + 01 00 + 02 00 + 20 00 | travel on water propelled by wind or by other means; "The QE2 will sail to Southampton tomorrow" -01846658 38 v 01 sail 3 005 @ 01846916 v 0000 + 00312932 n 0102 + 04127904 n 0101 + 09861395 n 0103 + 10546633 n 0101 04 + 01 00 + 04 00 + 08 00 + 11 00 | traverse or travel on (a body of water); "We sailed the Atlantic"; "He sailed the Pacific all alone" -01846916 38 v 02 travel 2 journey 1 011 @ 01835496 v 0000 + 00306426 n 0201 + 10771392 n 0202 + 00295701 n 0101 + 09629752 n 0102 $ 01845720 v 0000 ~ 01846658 v 0000 ~ 01847582 v 0000 ~ 01847676 v 0000 ~ 01847845 v 0000 ~ 01931566 v 0000 02 + 08 00 + 11 00 | travel upon or across; "travel the oceans" -01847220 38 v 01 trek 0 002 @ 01845720 v 0000 + 10727944 n 0101 01 + 02 00 | make a long and difficult journey; "They trekked towards the North Pole with sleds and skis" -01847392 38 v 01 trek 1 002 @ 01845720 v 0000 + 10727944 n 0101 01 + 02 00 | journey on foot, especially in the mountains; "We spent the summer trekking in the foothills of the Himalayas" -01847582 38 v 01 ship 3 002 @ 01846916 v 0000 + 04194289 n 0101 01 + 02 00 | travel by ship -01847676 38 v 01 ride 7 003 @ 01846916 v 0000 + 00307631 n 0102 $ 01955984 v 0000 02 + 08 00 + 11 00 | ride over, along, or through; "Ride the freeways of California" -01847845 38 v 01 fly 4 004 @ 01846916 v 0000 + 00302394 n 0102 $ 01940403 v 0000 $ 01941093 v 0000 01 + 08 00 | travel over (an area of land or sea) in an aircraft; "Lindbergh was the first to fly the Atlantic" -01848058 38 v 01 fly 7 003 > 01902783 v 0000 $ 02140965 v 0000 ~ 01848190 v 0000 01 + 08 00 | cause to fly or float; "fly a kite" -01848190 38 v 01 kite 0 002 @ 01848058 v 0000 + 03621473 n 0101 02 + 02 00 + 08 00 | fly a kite; "Kids were kiting in the park"; "They kited the Red Dragon model" -01848355 38 v 01 stay_in_place 0 002 ! 01835496 v 0101 ~ 01857392 v 0000 02 + 01 00 + 02 00 | be stationary -01848465 38 v 05 move_over 0 give_way 0 give 0 ease_up 0 yield 0 002 @ 01831531 v 0000 $ 00613393 v 0000 02 + 01 00 + 02 00 | move in order to make room for someone for something; "The park gave way to a supermarket"; "`Move over,' he told the crowd" -01848718 38 v 03 go 1 go_away 5 depart 4 008 @ 02015598 v 0000 + 07333649 n 0303 + 00042757 n 0301 + 10004539 n 0301 + 10004539 n 0103 + 00042757 n 0102 ! 01849221 v 0101 ~ 01849054 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move away from a place into another direction; "Go away before I start to cry"; "The train departs at noon" -01849054 38 v 03 shove_off 0 shove_along 0 blow 8 001 @ 01848718 v 0000 01 + 02 00 | leave; informal or rude; "shove off!"; "The children shoved along"; "Blow now!" -01849221 38 v 02 come 0 come_up 2 013 @ 01835496 v 0000 + 00280853 n 0103 ! 01848718 v 0101 ^ 02716165 v 0103 ^ 02524171 v 0103 ^ 02667419 v 0101 ^ 02619924 v 0104 ^ 01970348 v 0102 ^ 01990281 v 0102 ~ 00546192 v 0000 ~ 00990655 v 0000 ~ 01849746 v 0000 ~ 02053941 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move toward, travel toward something or somebody or approach something or somebody; "He came singing down the road"; "Come with me to the Casbah"; "come down here!"; "come out of the closet!"; "come into the room" -01849746 38 v 02 approach 1 come_near 1 004 @ 01849221 v 0000 + 05046471 n 0101 ~ 01849983 v 0000 $ 02053941 v 0000 06 + 01 00 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | come near in time; "Winter is approaching"; "approaching old age" -01849983 38 v 01 get_on 2 001 @ 01849746 v 0000 02 + 01 00 + 04 00 | grow late or (of time) elapse; "It is getting on midnight--let's all go to bed!" -01850135 38 v 01 drive_up 0 002 @ 02053941 v 0000 ;c 00298497 n 0000 02 + 02 00 + 22 00 | approach while driving; "The truck entered the driveway and drove up towards the house" -01850315 38 v 02 move 1 displace 2 102 > 01831531 v 0000 + 01523724 a 0102 + 01526062 a 0101 + 01523724 a 0101 + 00279835 n 0103 + 00279835 n 0102 + 00280586 n 0101 + 10336234 n 0101 + 08478482 n 0101 ~ 00270005 v 0000 ~ 00414409 v 0000 ~ 00465762 v 0000 ~ 00522441 v 0000 ~ 01088923 v 0000 ~ 01419473 v 0000 ~ 01435380 v 0000 ~ 01444146 v 0000 ~ 01446901 v 0000 ~ 01448100 v 0000 ~ 01449974 v 0000 ~ 01453256 v 0000 ~ 01466733 v 0000 ~ 01494310 v 0000 ~ 01510827 v 0000 ~ 01511706 v 0000 ~ 01515196 v 0000 ~ 01522276 v 0000 ~ 01523654 v 0000 ~ 01527271 v 0000 ~ 01541231 v 0000 ~ 01541579 v 0000 ~ 01542207 v 0000 ~ 01544445 v 0000 ~ 01556921 v 0000 ~ 01566916 v 0000 ~ 01574766 v 0000 ~ 01579153 v 0000 ~ 01591357 v 0000 $ 01835496 v 0000 ~ 01852468 v 0000 ~ 01852591 v 0000 ~ 01852701 v 0000 ~ 01853192 v 0000 ~ 01855447 v 0000 ~ 01865051 v 0000 ~ 01865726 v 0000 ~ 01866610 v 0000 ~ 01871979 v 0000 ~ 01876028 v 0000 ~ 01877204 v 0000 ~ 01879777 v 0000 ~ 01883344 v 0000 ~ 01887901 v 0000 ~ 01894320 v 0000 ~ 01903562 v 0000 ~ 01909978 v 0000 ~ 01950798 v 0000 ~ 01951480 v 0000 ~ 01953810 v 0000 ~ 01965654 v 0000 ~ 01973125 v 0000 ~ 01973759 v 0000 ~ 01974062 v 0000 ~ 01977701 v 0000 ~ 01986869 v 0000 ~ 01993926 v 0000 ~ 02002720 v 0000 ~ 02012344 v 0000 ~ 02013571 v 0000 ~ 02028722 v 0000 ~ 02042843 v 0000 ~ 02043190 v 0000 ~ 02056466 v 0000 ~ 02056971 v 0000 ~ 02059462 v 0000 ~ 02069120 v 0000 ~ 02069551 v 0000 ~ 02076501 v 0000 ~ 02084104 v 0000 ~ 02086100 v 0000 ~ 02087745 v 0000 ~ 02089420 v 0000 ~ 02089984 v 0000 ~ 02090435 v 0000 ~ 02090990 v 0000 ~ 02092309 v 0000 ~ 02093234 v 0000 ~ 02093610 v 0000 ~ 02095696 v 0000 ~ 02096312 v 0000 ~ 02098179 v 0000 ~ 02099669 v 0000 ~ 02100632 v 0000 ~ 02101789 v 0000 ~ 02103162 v 0000 ~ 02103781 v 0000 ~ 02103925 v 0000 ~ 02104161 v 0000 ~ 02105340 v 0000 ~ 02221959 v 0000 ~ 02232190 v 0000 ~ 02501738 v 0000 03 + 08 00 + 10 00 + 11 00 | cause to move or shift into a new position or place, both in a concrete and in an abstract sense; "Move those boxes into the corner, please"; "I'm moving my money to another bank"; "The director moved more responsibilities onto his new assistant" -01852468 38 v 01 work 2 001 @ 01850315 v 0000 01 + 08 00 | move in an agitated manner; "His fingers worked with tension" -01852591 38 v 01 take_back 0 001 @ 01850315 v 0000 01 + 08 00 | move text to the previous line; in printing -01852701 38 v 02 center 0 centre 0 004 @ 01850315 v 0000 + 08521816 n 0202 + 08521816 n 0101 ^ 02676496 v 0102 01 + 08 00 | move into the center; "That vase in the picture is not centered" -01852892 38 v 01 re-enter 0 002 @ 02016523 v 0000 + 00328230 n 0101 05 + 01 00 + 02 00 + 04 00 + 08 00 + 22 00 | enter again; "You cannot re-enter the country with this visa" -01853069 38 v 01 pump 0 002 @ 01974062 v 0000 + 04021798 n 0101 02 + 11 00 + 21 00 | raise (gases or fluids) with a pump -01853192 38 v 01 pump 3 001 @ 01850315 v 0000 01 + 08 00 | move up and down; "The athlete pumps weights in the gym" -01853310 38 v 01 pump 1 003 * 02069551 v 0000 @ 01854132 v 0000 + 04021798 n 0101 02 + 08 00 + 21 00 | draw or pour with a pump -01853440 38 v 01 transfuse 0 001 @ 02069551 v 0000 01 + 08 00 | pour out of one vessel into another -01853542 38 v 03 siphon 0 syphon 0 siphon_off 0 002 @ 01854132 v 0000 + 04224155 n 0202 01 + 08 00 | convey, draw off, or empty by or as if by a siphon -01853696 38 v 01 transit 1 003 $ 01915365 v 0000 @ 02077656 v 0000 + 04473432 n 0103 01 + 11 00 | cause or enable to pass through; "The canal will transit hundreds of ships every day" -01853882 38 v 01 sluice 0 002 @ 01854132 v 0000 + 04244379 n 0101 01 + 08 00 | draw through a sluice; "sluice water" -01854001 38 v 01 sluice 1 002 @ 01953810 v 0000 + 04244379 n 0101 01 + 08 00 | transport in or send down a sluice; "sluice logs" -01854132 38 v 02 draw 0 take_out 0 014 @ 00173338 v 0000 + 00392093 n 0101 ^ 01630532 v 0105 ~ 00194170 v 0000 ~ 01853310 v 0000 ~ 01853542 v 0000 ~ 01853882 v 0000 ~ 01854519 v 0000 ~ 01854888 v 0000 ~ 01855058 v 0000 ~ 01987936 v 0000 $ 01995211 v 0000 $ 02311387 v 0000 $ 02742107 v 0000 02 + 08 00 + 21 00 | take liquid out of a container or well; "She drew water from the barrel" -01854519 38 v 01 tap 4 004 $ 02360274 v 0000 @ 01854132 v 0000 + 04390977 n 0101 + 10691764 n 0102 01 + 08 00 | draw (liquor) from a tap; "tap beer in a bar" -01854679 38 v 01 suction 0 003 $ 00073584 v 0000 + 00842692 n 0103 + 11517494 n 0101 01 + 22 00 | remove or draw away by the force of suction; "the doctors had to suction the water from the patient's lungs" -01854888 38 v 01 suck 0 003 @ 01854132 v 0000 + 00842692 n 0102 + 00842692 n 0103 01 + 01 00 | draw something in by or as if by a vacuum; "Mud was sucking at her feet" -01855058 38 v 01 rack 1 001 @ 01854132 v 0000 01 + 08 00 | draw off from the lees; "rack wine" -01855155 38 v 02 transplant 0 transfer 5 008 @ 02013571 v 0000 + 10724699 n 0201 + 10724699 n 0202 + 00331102 n 0101 + 00331102 n 0102 + 10725613 n 0101 + 00331102 n 0103 $ 02753255 v 0000 02 + 08 00 + 21 00 | lift and reset in another soil or situation; "Transplant the young rice plants" -01855447 38 v 01 scan 0 003 @ 01850315 v 0000 + 04143140 n 0101 + 13553083 n 0101 01 + 08 00 | move a light beam over; in electronics, to reproduce an image -01855606 38 v 01 move 2 010 + 00168658 n 0101 + 00279835 n 0102 + 10335931 n 0101 ! 01857392 v 0101 ~ 00414627 v 0000 ~ 01855982 v 0000 ~ 01856211 v 0000 ~ 01856450 v 0000 ~ 01856626 v 0000 ~ 01857093 v 0000 02 + 02 00 + 22 00 | change residence, affiliation, or place of employment; "We moved from Idaho to Nebraska"; "The basketball player moved from one team to another" -01855982 38 v 01 move_in 0 002 @ 01855606 v 0000 ! 01856211 v 0101 01 + 02 00 | move into a new house or office -01856096 38 v 01 move_in 2 001 @ 02648639 v 0000 02 + 01 00 + 02 00 | occupy a place; "The crowds are moving in" -01856211 38 v 01 move_out 0 003 @ 01855606 v 0000 ! 01855982 v 0101 ~ 01856350 v 0000 01 + 02 00 | move out of one's old house or office -01856350 38 v 01 clear_out 0 001 @ 01856211 v 0000 01 + 02 00 | move out and leave nothing behind -01856450 38 v 01 evacuate 1 002 @ 01855606 v 0000 + 00054821 n 0101 01 + 02 00 | move out of an unsafe location into safety; "After the earthquake, residents were evacuated" -01856626 38 v 02 migrate 0 transmigrate 0 011 @ 01855606 v 0000 + 02127815 a 0102 + 07966421 n 0101 + 01123095 n 0101 + 10314952 n 0101 + 10314952 n 0102 + 01318478 n 0101 ~ 00413432 v 0000 ~ 00415967 v 0000 ~ 00416135 v 0000 $ 01857093 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move from one country or region to another and settle there; "Many Germans migrated to South America in the mid-19th century"; "This tribe transmigrated many times over the centuries" -01857093 38 v 01 migrate 1 006 $ 01856626 v 0000 @ 01855606 v 0000 + 02127815 a 0102 + 02129007 a 0101 + 02127815 a 0101 + 07312616 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | move periodically or seasonally; "birds migrate in the Winter"; "The workers migrate to where the crops need harvesting" -01857392 38 v 04 stay 0 stick 0 stick_around 0 stay_put 0 003 @ 01848355 v 0000 + 01053617 n 0101 ! 01855606 v 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | stay put (in a certain place); "We are staying in Detroit; we are not moving to Cincinnati"; "Stay put in the corner here!"; "Stick around and you will learn something!" -01857717 38 v 02 start 1 start_up 0 008 > 01864230 v 0000 + 00242431 n 0201 ! 01859221 v 0101 ~ 01858016 v 0000 ~ 01858167 v 0000 ~ 01858686 v 0000 ~ 01858796 v 0000 ~ 01859050 v 0000 02 + 08 00 + 11 00 | get going or set in motion; "We simply could not start the engine"; "start up the computer" -01858016 38 v 01 kick-start 0 003 @ 01857717 v 0000 + 03616763 n 0101 + 03616763 n 0102 01 + 08 00 | start (a motorcycle) by means of a kick starter -01858167 38 v 01 hot-wire 1 001 @ 01857717 v 0000 01 + 08 00 | start (a car engine) without a key by bypassing the ignition interlock; "The woman who lost the car keys had to hot-wire her van" -01858362 38 v 02 rein 1 rein_in 1 003 @ 01859221 v 0000 + 04072551 n 0101 ~ 01858573 v 0000 01 + 08 00 | stop or check by or as if by a pull at the reins; "He reined in his horses in front of the post office" -01858573 38 v 01 pull 4 001 @ 01858362 v 0000 01 + 08 00 | rein in to keep from winning a race; "pull a horse" -01858686 38 v 02 restart 0 re-start 0 001 @ 01857717 v 0000 01 + 08 00 | start an engine again, for example -01858796 38 v 02 crank 0 crank_up 0 001 @ 01857717 v 0000 01 + 08 00 | start by cranking; "crank up the engine" -01858910 38 v 01 round 0 002 @ 01835496 v 0000 + 03032811 n 0102 01 + 11 00 | wind around; move along a circular course; "round the bend" -01859050 38 v 03 jumpstart 0 jump-start 0 jump 7 001 @ 01857717 v 0000 01 + 08 00 | start (a car engine whose battery is dead) by connecting it to another car's battery -01859221 38 v 01 stop 1 014 > 01860795 v 0000 + 07365849 n 0101 + 01076046 n 0102 ! 01857717 v 0101 ~ 00354634 v 0000 ~ 01858362 v 0000 ~ 01859586 v 0000 ~ 01859854 v 0000 ~ 01859995 v 0000 ~ 01860620 v 0000 ~ 01862496 v 0000 ~ 01862640 v 0000 ~ 01863410 v 0000 ~ 01863593 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to stop; "stop a car"; "stop the thief" -01859586 38 v 03 halt 5 hold 5 arrest 0 006 @ 01859221 v 0000 + 02742468 n 0301 + 15272029 n 0202 + 07365849 n 0102 + 01063697 n 0102 + 14010927 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to stop; "Halt the engines"; "Arrest the progress"; "halt the presses" -01859854 38 v 01 bring_up 2 001 @ 01859221 v 0000 02 + 08 00 + 09 00 | cause to come to a sudden stop; "The noise brought her up in shock" -01859995 38 v 01 cut 0 002 @ 01859221 v 0000 $ 01860107 v 0000 01 + 08 00 | stop filming; "cut a movie scene" -01860107 38 v 01 cut 1 005 $ 01859995 v 0000 @ 00550117 v 0000 + 00945205 n 0102 ^ 01860485 v 0101 ~ 01860320 v 0000 02 + 04 00 + 22 00 | make an abrupt change of image or sound; "cut from one scene to another" -01860320 38 v 01 cut_away 0 001 @ 01860107 v 0000 02 + 02 00 + 22 00 | move quickly to another scene or focus when filming; "`cut away now!' the director shouted" -01860485 38 v 01 cut_to 0 001 @ 01831531 v 0000 02 + 08 00 + 11 00 | move to another scene when filming; "The camera cut to the sky" -01860620 38 v 01 flag_down 0 001 @ 01859221 v 0000 02 + 08 00 + 09 00 | signal to stop; "Let's flag down a cab--it's starting to rain"; "The policeman flagged down our car" -01860795 38 v 02 stop 0 halt 1 016 + 14010927 n 0203 + 01063697 n 0202 + 07365849 n 0202 + 07365849 n 0101 ! 01864230 v 0101 ~ 01526792 v 0000 ~ 01861230 v 0000 ~ 01861403 v 0000 ~ 01861622 v 0000 ~ 01861767 v 0000 ~ 01862090 v 0000 ~ 01862340 v 0000 ~ 01862776 v 0000 ~ 01863158 v 0000 ~ 01863817 v 0000 ~ 01987058 v 0000 02 + 01 00 + 02 00 | come to a halt, stop moving; "the car stopped"; "She stopped in front of a store window" -01861230 38 v 01 pull_up_short 0 002 @ 01860795 v 0000 ;c 00298497 n 0000 02 + 01 00 + 02 00 | stop abruptly; "The police car pulled up short and then turned around fast" -01861403 38 v 01 check f 004 @ 01860795 v 0000 + 14010927 n 0102 $ 01861622 v 0000 $ 01861767 v 0000 01 + 02 00 | stop for a moment, as if out of uncertainty or caution; "She checked for an instant and missed a step" -01861622 38 v 01 check c 002 $ 01861403 v 0000 @ 01860795 v 0000 01 + 01 00 | stop in a chase especially when scent is lost; "The dog checked" -01861767 38 v 01 check e 003 $ 01861403 v 0000 @ 01860795 v 0000 ;c 05635448 n 0000 01 + 01 00 | abandon the intended prey, turn, and pursue an inferior prey -01861927 38 v 01 turn_on_a_dime 0 002 @ 01907258 v 0000 ;c 00298497 n 0000 01 + 01 00 | have a small turning radius; "My little subcompact car turns on a dime!" -01862090 38 v 02 rein 0 rein_in 0 003 @ 01860795 v 0000 ;c 00298497 n 0000 + 04072551 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | stop or slow up one's horse or oneself by or as if by pulling the reins; "They reined in in front of the post office" -01862340 38 v 02 stall 0 conk 0 003 @ 01860795 v 0000 ;c 00298497 n 0000 + 07318824 n 0101 01 + 01 00 | come to a stop; "The car stalled in the driveway" -01862496 38 v 01 stall 1 001 @ 01859221 v 0000 02 + 08 00 + 11 00 | cause an engine to stop; "The inexperienced driver kept stalling the car" -01862640 38 v 01 stall 2 003 @ 01859221 v 0000 ;c 00300441 n 0000 + 07318824 n 0101 01 + 08 00 | cause an airplane to go into a stall -01862776 38 v 01 stall 4 003 @ 01860795 v 0000 ;c 00300441 n 0000 + 07318824 n 0101 01 + 01 00 | experience a stall in flight, of airplanes -01862918 38 v 02 stop 2 stop_over 0 005 @ 00778275 v 0000 + 08656893 n 0101 + 01056411 n 0101 ~ 02487901 v 0000 ~ 02652922 v 0000 01 + 21 00 | interrupt a trip; "we stopped at Aunt Mary's house"; "they stopped for three days in Florence" -01863158 38 v 03 draw_up 0 pull_up 2 haul_up 0 003 $ 01863410 v 0000 @ 01860795 v 0000 ;c 00298497 n 0000 02 + 01 00 + 02 00 | come to a halt after driving somewhere; "The Rolls pulled up on pour front lawn"; "The chauffeur hauled up in front of us" -01863410 38 v 02 draw_up 1 pull_up 1 003 $ 01863158 v 0000 @ 01859221 v 0000 ;c 00298497 n 0000 01 + 08 00 | cause (a vehicle) to stop; "He pulled up the car in front of the hotel" -01863593 38 v 01 brake 0 005 @ 01859221 v 0000 ;c 00298497 n 0000 + 02889425 n 0101 $ 01863817 v 0000 ~ 01871217 v 0000 02 + 08 00 + 11 00 | cause to stop by applying the brakes; "brake the car before you go into a curve" -01863817 38 v 01 brake 1 004 $ 01863593 v 0000 @ 01860795 v 0000 ;c 00298497 n 0000 + 02889425 n 0101 02 + 01 00 + 02 00 | stop travelling by applying a brake; "We had to brake suddenly when a chicken crossed the road" -01864038 38 v 02 ply 0 run 9 004 @ 01843055 v 0000 + 00308871 n 0201 + 10442093 n 0101 $ 02242256 v 0000 02 + 04 00 + 22 00 | travel a route regularly; "Ships ply the waters near the coast" -01864230 38 v 03 start 0 go 9 get_going 0 003 ! 01860795 v 0101 ~ 01526605 v 0000 ~ 01864438 v 0000 03 + 01 00 + 02 00 + 08 00 | begin or set in motion; "I start at eight in the morning"; "Ready, set, go!" -01864438 38 v 02 get_off_the_ground 0 take_off 1 001 @ 01864230 v 0000 02 + 01 00 + 02 00 | get started or set in motion, used figuratively; "the project took a long time to get off the ground" -01864634 38 v 03 lurch 0 pitch 3 shift 3 006 @ 01831531 v 0000 + 00331655 n 0301 + 00337210 n 0202 + 00337210 n 0203 + 00290276 n 0101 + 00337210 n 0101 02 + 01 00 + 02 00 | move abruptly; "The ship suddenly lurched to the left" -01864865 38 v 02 jolt 0 jar 0 004 @ 01831531 v 0000 + 07339098 n 0202 + 00335988 n 0103 + 07339098 n 0101 03 + 01 00 + 02 00 + 08 00 | move or cause to move with a sudden jerky motion -01865051 38 v 03 jar 1 shake_up 0 bump_around 0 001 @ 01850315 v 0000 02 + 09 00 + 10 00 | shock physically; "Georgia was shaken up in the Tech game" -01865203 38 v 01 duck 0 001 @ 01831531 v 0000 03 + 01 00 + 02 00 + 08 00 | to move (the head or body) quickly downwards or away; "Before he could duck, another stone struck him" -01865383 38 v 01 bob 0 004 @ 01831531 v 0000 + 02860063 n 0102 ~ 01865575 v 0000 ~ 01865866 v 0000 02 + 01 00 + 02 00 | move up and down repeatedly; "her rucksack bobbed gently on her back" -01865575 38 v 01 dabble 1 001 @ 01865383 v 0000 01 + 01 00 | bob forward and under so as to feed off the bottom of a body of water; "dabbling ducks" -01865726 38 v 01 dandle 0 002 @ 01850315 v 0000 ;u 06288527 n 0000 01 + 09 00 | move (a baby) up and down in one's arms or on one's knees -01865866 38 v 02 bob_around 0 bob_about 0 001 @ 01865383 v 0000 02 + 01 00 + 04 00 | move up and down with no specific path; "the cork bobbed around in the pool" -01866030 38 v 02 wallow 0 welter 0 003 @ 01831531 v 0000 + 09474557 n 0101 + 07442874 n 0101 02 + 04 00 + 22 00 | roll around, "pigs were wallowing in the mud" -01866192 38 v 02 roll 0 turn_over 3 008 @ 01907258 v 0000 + 07441619 n 0103 + 04101701 n 0101 + 04101497 n 0101 ^ 01966706 v 0102 ^ 01867816 v 0101 ~ 01866497 v 0000 $ 01866610 v 0000 02 + 01 00 + 04 00 | move by turning over or rotating; "The child rolled down the hill"; "turn over on your left side" -01866497 38 v 01 rim 0 001 @ 01866192 v 0000 01 + 04 00 | roll around the rim of; "the ball rimmed the basket" -01866610 38 v 02 roll b revolve 2 004 $ 01866192 v 0000 @ 01850315 v 0000 + 07441619 n 0103 ~ 01866872 v 0000 01 + 08 00 | cause to move by turning over or in a circular manner of as if on an axis; "She rolled the ball"; "They rolled their eyes at his words" -01866872 38 v 01 transit 2 002 @ 01866610 v 0000 + 04419073 n 0102 01 + 08 00 | revolve (the telescope of a surveying transit) about its horizontal transverse axis in order to reverse its direction -01867072 38 v 01 transit 3 001 @ 02050132 v 0000 02 + 01 00 + 11 00 | pass across (a sign or house of the zodiac) or pass across (the disk of a celestial body or the meridian of a place); "The comet will transit on September 11" -01867303 38 v 01 transpose 0 002 @ 02012344 v 0000 + 00869260 n 0101 01 + 08 00 | transfer a quantity from one side of an equation to the other side reversing its sign, in order to maintain equality -01867504 38 v 03 tramp_down 0 trample 4 tread_down 0 003 @ 01904930 v 0000 + 07398659 n 0201 + 10723474 n 0201 01 + 08 00 | walk on and flatten; "tramp down the grass"; "trample the flowers" -01867697 38 v 01 somersault 0 003 @ 01867816 v 0000 + 00439484 n 0105 + 00439484 n 0101 01 + 02 00 | do a somersault -01867816 38 v 01 roll_over 0 004 @ 01907258 v 0000 ~ 01867697 v 0000 ~ 01867997 v 0000 ~ 02086260 v 0000 02 + 01 00 + 02 00 | make a rolling motion or turn; "The dog rolled over" -01867997 38 v 01 tumble 4 003 @ 01867816 v 0000 + 04497005 n 0101 + 01814755 n 0102 02 + 01 00 + 02 00 | roll over and over, back and forth -01868139 38 v 01 trundle 0 001 @ 01835496 v 0000 01 + 04 00 | move heavily; "the streetcar trundled down the avenue" -01868258 38 v 02 waver 0 weave 1 002 @ 01877355 v 0000 + 00348571 n 0101 02 + 01 00 + 02 00 | sway to and fro -01868370 38 v 06 writhe 0 wrestle 0 wriggle 0 worm 0 squirm 0 twist 1 008 @ 01831531 v 0000 + 07351909 n 0601 + 11519450 n 0602 + 10781236 n 0503 + 00349705 n 0503 + 10781236 n 0302 + 00349705 n 0302 ~ 01868780 v 0000 02 + 01 00 + 02 00 | to move in a twisting or contorted motion, (especially when struggling); "The prisoner writhed in discomfort"; "The child tried to wriggle free from his aunt's embrace" -01868780 38 v 01 wrench 0 002 @ 01868370 v 0000 + 07351909 n 0102 02 + 01 00 + 02 00 | make a sudden twisting motion -01868899 38 v 01 wreathe 0 000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move with slow, sinuous movements -01869003 38 v 02 wobble 0 coggle 1 003 @ 01831531 v 0000 + 07364700 n 0101 + 04596630 n 0101 02 + 01 00 + 02 00 | move unsteadily; "His knees wobbled"; "The old cart wobbled down the street" -01869196 38 v 02 sidle 0 sashay 1 002 @ 01831531 v 0000 + 00534152 n 0202 01 + 22 00 | move sideways -01869299 38 v 01 sidle 1 001 @ 01831531 v 0000 01 + 22 00 | move unobtrusively or furtively; "The young man began to sidle near the pretty girl sitting on the log" -01869465 38 v 01 pronk 0 001 @ 01963942 v 0000 01 + 01 00 | jump straight up; "kangaroos pronk" -01869563 38 v 02 sweep 0 sail 1 006 @ 01831531 v 0000 ^ 02522581 v 0205 + 00345149 n 0101 ^ 02522581 v 0104 ~ 01869893 v 0000 $ 01870043 v 0000 02 + 04 00 + 22 00 | move with sweeping, effortless, gliding motions; "The diva swept into the room"; "Shreds of paper sailed through the air"; "The searchlights swept across the sky" -01869893 38 v 01 swan 1 001 @ 01869563 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | sweep majestically; "Airplanes were swanning over the mountains" -01870043 38 v 02 brush 0 sweep 1 004 $ 01869563 v 0000 @ 01831531 v 0000 + 00345149 n 0201 $ 01240720 v 0000 03 + 08 00 + 10 00 + 11 00 | sweep across or over; "Her long skirt brushed the floor"; "A gasp swept cross the audience" -01870275 38 v 05 skid 0 slip 0 slue 1 slew 1 slide 1 011 @ 01887576 v 0000 + 00328502 n 0501 + 04238128 n 0501 + 07404944 n 0501 + 00109081 n 0501 + 00329031 n 0202 ^ 00618057 v 0202 + 00329031 n 0101 ~ 01870674 v 0000 ~ 01870867 v 0000 ~ 01871042 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move obliquely or sideways, usually in an uncontrolled manner; "the wheels skidded against the sidewalk" -01870674 38 v 01 submarine 0 001 @ 01870275 v 0000 02 + 01 00 + 02 00 | move forward or under in a sliding motion; "The child was injured when he submarined under the safety belt of the car" -01870867 38 v 01 skid 3 003 @ 01870275 v 0000 + 00329031 n 0101 + 10605088 n 0101 02 + 01 00 + 02 00 | slide without control; "the car skidded in the curve on the wet road" -01871042 38 v 01 side-slip 0 001 @ 01870275 v 0000 02 + 01 00 + 02 00 | slide sideways through the air in a downward direction in an airplane along an inclined lateral axis -01871217 38 v 01 skid 1 002 @ 01863593 v 0000 + 02890940 n 0103 01 + 08 00 | apply a brake or skid to -01871321 38 v 02 wamble 0 waggle 1 002 @ 01831531 v 0000 + 00347652 n 0202 02 + 01 00 + 22 00 | move unsteadily or with a weaving or rolling motion -01871471 38 v 01 chop 0 001 @ 01831531 v 0000 01 + 04 00 | move suddenly -01871546 38 v 02 shimmy 0 wobble 1 001 @ 01891249 v 0000 01 + 01 00 | tremble or shake; "His voice wobbled with restrained emotion" -01871680 38 v 02 jostle 0 shove 0 007 @ 01871979 v 0000 + 00113726 n 0201 + 10495421 n 0202 + 00114095 n 0101 + 00114095 n 0102 ~ 01873942 v 0000 ~ 01874071 v 0000 03 + 02 00 + 08 00 + 09 00 | come into rough contact with while moving; "The passengers jostled each other in the overcrowded train" -01871979 38 v 02 push 0 force 0 029 * 01447257 v 0000 * 01831531 v 0000 @ 01850315 v 0000 + 00842324 a 0201 + 11458624 n 0201 ^ 02013840 v 0201 ^ 02056466 v 0203 + 11498203 n 0101 + 00112312 n 0101 + 02766534 n 0109 + 00112312 n 0102 ! 01448100 v 0101 ~ 01231252 v 0000 ~ 01447632 v 0000 ~ 01506157 v 0000 ~ 01584701 v 0000 ~ 01591158 v 0000 ~ 01871680 v 0000 $ 01872645 v 0000 ~ 01873051 v 0000 ~ 01873157 v 0000 ~ 01873294 v 0000 ~ 01873417 v 0000 ~ 01873530 v 0000 ~ 01899262 v 0000 ~ 01939553 v 0000 ~ 01993668 v 0000 ~ 02094569 v 0000 ~ 02097047 v 0000 06 + 01 00 + 02 00 + 04 00 + 20 00 + 21 00 + 22 00 | move with force, "He pushed the table into a corner" -01872645 38 v 01 push 2 004 $ 01871979 v 0000 @ 01447257 v 0000 + 00112312 n 0101 $ 01872877 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | press against forcefully without moving; "she pushed against the wall with all her strength" -01872877 38 v 01 push 8 003 $ 01872645 v 0000 @ 01835496 v 0000 + 00112312 n 0101 03 + 01 00 + 02 00 + 04 00 | move strenuously and with effort; "The crowd pushed forward" -01873051 38 v 01 nose 0 002 @ 01871979 v 0000 + 05598147 n 0101 01 + 08 00 | push or move with the nose -01873157 38 v 03 push_out 0 obtrude 0 thrust_out 0 002 @ 01871979 v 0000 + 01353866 a 0201 02 + 08 00 + 09 00 | push to thrust outward -01873294 38 v 02 push_aside 0 push_away 0 001 @ 01871979 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | push out of the way -01873417 38 v 01 muscle_into 0 001 @ 01871979 v 0000 01 + 22 00 | force one's way; "He muscled into the union" -01873530 38 v 01 push_up 0 003 @ 01871979 v 0000 ~ 01873666 v 0000 ~ 01873784 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | push upward -01873666 38 v 01 uplift 0 003 @ 01873530 v 0000 + 04514241 n 0101 + 07376008 n 0101 01 + 11 00 | lift up or elevate -01873784 38 v 01 boost_up 0 001 @ 01873530 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | push upward; "She pushed up her children when the policeman came by" -01873942 38 v 01 elbow 0 003 @ 01871680 v 0000 + 05579944 n 0101 + 00114298 n 0101 01 + 09 00 | push one's way with the elbows -01874071 38 v 01 shoulder_in 0 001 @ 01871680 v 0000 01 + 02 00 | push one's way in with one's shoulders -01874178 38 v 01 waft 0 001 @ 01902783 v 0000 02 + 04 00 + 22 00 | be driven or carried along, as by the air; "Sounds wafted into the room" -01874320 38 v 01 tide 2 002 @ 01902783 v 0000 + 07402519 n 0101 01 + 04 00 | be carried with the tide -01874424 38 v 01 tide 3 004 > 01874320 v 0000 @ 01874568 v 0000 + 07402519 n 0101 ^ 02623346 v 0101 01 + 11 00 | cause to float with the tide -01874568 38 v 01 float 2 009 @ 01953810 v 0000 + 03364340 n 0101 + 11527967 n 0102 + 11527967 n 0101 $ 01514887 v 0000 ~ 01874424 v 0000 ~ 01874875 v 0000 ~ 01875036 v 0000 $ 01904293 v 0000 02 + 08 00 + 11 00 | set afloat; "He floated the logs down the river"; "The boy floated his toy boat on the pond" -01874875 38 v 01 drift 6 003 $ 01902783 v 0000 @ 01874568 v 0000 + 11447851 n 0101 01 + 08 00 | cause to be carried by a current; "drift the boats downstream" -01875036 38 v 01 refloat 0 001 @ 01874568 v 0000 01 + 08 00 | set afloat again; "refloat a grounded boat" -01875144 38 v 01 travel_purposefully 0 001 @ 01835496 v 0000 02 + 02 00 + 22 00 | travel volitionally and in a certain direction with a certain goal -01875295 38 v 03 rock 0 sway 0 shake 2 011 @ 01876530 v 0000 + 00347652 n 0303 + 00348008 n 0203 + 05194043 n 0201 + 04099969 n 0102 + 00348008 n 0101 ~ 01875684 v 0000 $ 01876028 v 0000 ~ 01876311 v 0000 ~ 01876434 v 0000 ~ 01919042 v 0000 02 + 01 00 + 02 00 | move back and forth or sideways; "the ship was rocking"; "the tall building swayed"; "She rocked back and forth on her feet" -01875684 38 v 01 roll c 001 @ 01875295 v 0000 01 + 01 00 | move, rock, or sway from side to side; "The ship rolled on the heavy seas" -01875820 38 v 01 reciprocate 0 004 @ 01831531 v 0000 + 01946595 a 0102 + 00341435 n 0101 + 01946595 a 0101 02 + 08 00 + 11 00 | alternate the direction of motion of; "the engine reciprocates the propeller" -01876028 38 v 02 rock 6 sway 6 006 $ 01875295 v 0000 @ 01850315 v 0000 + 00348008 n 0203 + 10536021 n 0101 + 00348008 n 0101 + 04098513 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to move back and forth; "rock the cradle"; "rock the baby"; "the wind swayed the trees gently" -01876311 38 v 01 nutate 0 002 @ 01875295 v 0000 + 00336561 n 0101 01 + 02 00 | rock, sway, or nod; usually involuntarily -01876434 38 v 01 swag 0 001 @ 01875295 v 0000 02 + 01 00 + 02 00 | sway heavily or unsteadily -01876530 38 v 01 move_back_and_forth 0 004 @ 01831531 v 0000 ~ 01875295 v 0000 ~ 01877355 v 0000 ~ 01878719 v 0000 03 + 01 00 + 02 00 + 22 00 | move in one direction and then into the opposite direction -01876735 38 v 01 cradle 0 002 @ 01216670 v 0000 + 03125729 n 0101 03 + 08 00 + 09 00 + 10 00 | hold or place in or as if in a cradle; "He cradled the infant in his arms" -01876907 38 v 03 fluctuate 0 vacillate 0 waver 1 007 @ 00557216 v 0000 + 00348571 n 0301 + 04770911 n 0302 + 00327824 n 0203 + 07346057 n 0101 + 07337390 n 0102 $ 01877204 v 0000 02 + 01 00 + 02 00 | move or sway in a rising and falling or wavelike pattern; "the line on the monitor vacillated" -01877204 38 v 01 fluctuate 3 003 $ 01876907 v 0000 @ 01850315 v 0000 + 07346057 n 0101 01 + 11 00 | cause to fluctuate or move in a wavelike pattern -01877355 38 v 02 swing 0 sway 1 008 @ 01876530 v 0000 + 00348008 n 0203 + 00327824 n 0101 + 10683801 n 0101 ~ 01868258 v 0000 ~ 01877946 v 0000 ~ 01878063 v 0000 ~ 01891489 v 0000 02 + 01 00 + 22 00 | move or walk in a swinging or swaying manner; "He swung back" -01877620 38 v 01 swing 3 002 @ 01835496 v 0000 + 00327824 n 0101 02 + 04 00 + 22 00 | change direction with a swinging motion; turn; "swing back"; "swing forward" -01877785 38 v 01 nod 0 001 @ 01831531 v 0000 02 + 01 00 + 04 00 | sway gently back and forth, as in a nodding motion; "the flowers were nodding in the breeze" -01877946 38 v 01 lash 4 001 @ 01877355 v 0000 01 + 11 00 | lash or flick about sharply; "The lion lashed its tail" -01878063 38 v 02 oscillate 0 vibrate 1 009 @ 01877355 v 0000 + 04533199 n 0201 + 07345166 n 0202 + 00345926 n 0201 + 01967917 a 0101 + 07341038 n 0102 + 07345166 n 0101 ~ 01878376 v 0000 ~ 01878566 v 0000 02 + 01 00 + 04 00 | move or swing from side to side regularly; "the needle on the meter was oscillating" -01878376 38 v 01 hunt 5 001 @ 01878063 v 0000 01 + 01 00 | oscillate about a desired speed, position, or state to an undesirable extent; "The oscillator hunts about the correct frequency" -01878566 38 v 01 librate 0 002 @ 01878063 v 0000 + 13507617 n 0101 01 + 01 00 | vibrate before coming to a total rest; "the children's swing librated" -01878719 38 v 05 flicker 0 waver 2 flitter 0 flutter 1 quiver 4 005 @ 01876530 v 0000 + 00348571 n 0402 + 07439284 n 0404 + 00348571 n 0201 + 00348571 n 0103 01 + 04 00 | move back and forth very rapidly; "the candle flickered" -01878949 38 v 03 swing_around 0 swing_about 0 turn_around 0 002 @ 01907258 v 0000 + 07411160 n 0302 02 + 01 00 + 02 00 | turn abruptly and face the other way, either physically or metaphorically; "He turned around to face his opponent"; "My conscience told me to turn around before I made a mistake" -01879251 38 v 03 pulsate 0 throb 1 pulse 0 008 @ 01880113 v 0000 + 15280695 n 0301 + 07400906 n 0301 + 07401726 n 0201 + 07400906 n 0102 + 15280695 n 0101 + 07400906 n 0101 $ 01879579 v 0000 01 + 01 00 | expand and contract rhythmically; beat rhythmically; "The baby's heart was pulsating again after the surgeon massaged it" -01879579 38 v 03 pulsate 1 beat d quiver 3 002 $ 01879251 v 0000 @ 01831531 v 0000 01 + 01 00 | move with or as if with a regular alternating motion; "the city pulsated with music and excitement" -01879777 38 v 01 pulse 1 002 > 01879251 v 0000 @ 01850315 v 0000 02 + 08 00 + 11 00 | drive by or as if by pulsation; "A soft breeze pulsed the air" -01879928 38 v 02 palpitate 0 flutter 0 005 @ 01880113 v 0000 + 14111355 n 0201 + 02304322 a 0101 + 14335097 n 0101 $ 01889392 v 0000 01 + 01 00 | beat rapidly; "His heart palpitated" -01880113 38 v 03 beat 0 pound 0 thump 0 009 $ 01880673 v 0000 @ 01831531 v 0000 + 07401726 n 0203 + 07086518 n 0102 + 07400906 n 0104 ~ 01879251 v 0000 ~ 01879928 v 0000 ~ 01880390 v 0000 ~ 01880888 v 0000 02 + 01 00 + 04 00 | move rhythmically; "Her heart was beating fast" -01880390 38 v 01 thrash a 001 @ 01880113 v 0000 01 + 01 00 | beat so fast that (the heart's) output starts dropping until (it) does not manage to pump out blood at all -01880560 38 v 03 beat_out 0 tap_out 0 thump_out 0 001 @ 01880673 v 0000 02 + 08 00 + 11 00 | beat out a rhythm -01880673 38 v 01 beat 3 005 $ 02174830 v 0000 $ 01726879 v 0000 + 07086518 n 0102 $ 01880113 v 0000 ~ 01880560 v 0000 02 + 08 00 + 21 00 | indicate by beating, as with the fingers or drumsticks; "Beat the rhythm" -01880888 38 v 01 flap 0 003 @ 01880113 v 0000 + 07439284 n 0101 + 07439284 n 0102 01 + 01 00 | move noisily; "flags flapped in the strong wind" -01881034 38 v 03 teeter 0 seesaw 2 totter 0 002 @ 01831531 v 0000 + 04167759 n 0201 02 + 04 00 + 22 00 | move unsteadily, with a rocking motion -01881180 38 v 0c roll 9 wander 0 swan 0 stray 1 tramp 2 roam 0 cast 1 ramble 1 rove 0 range 0 drift 1 vagabond 0 019 @ 01835496 v 0000 + 10744544 n 0c04 + 09468237 n 0c01 + 00297062 n 0c03 + 10744544 n 0b02 + 00297404 n 0b01 + 00297062 n 0902 + 00284409 n 0801 + 10506220 n 0801 + 10765679 n 0602 + 10176111 n 0502 + 02122580 n 0401 + 10660729 n 0402 + 10765679 n 0201 + 00297062 n 0201 ~ 01882081 v 0000 ~ 01882689 v 0000 $ 01925694 v 0000 $ 02102840 v 0000 04 + 02 00 + 04 00 + 08 00 + 22 00 | move about aimlessly or without any destination, often in search of food or employment; "The gypsies roamed the woods"; "roving vagabonds"; "the wandering Jew"; "The cattle roam across the prairie"; "the laborers drift from one town to the next"; "They rolled from town to town" -01881957 38 v 01 tramp 3 002 @ 01912159 v 0000 + 10176111 n 0102 01 + 08 00 | cross on foot; "We had to tramp the creeks" -01882081 38 v 01 maunder 0 001 @ 01881180 v 0000 02 + 02 00 + 22 00 | wander aimlessly -01882170 38 v 02 walk 4 take_the_air 0 007 @ 01835496 v 0000 + 05003090 n 0101 + 04544979 n 0101 + 00284798 n 0101 + 00283568 n 0101 ~ 01882479 v 0000 $ 01904930 v 0000 02 + 02 00 + 22 00 | take a walk; go for a walk; walk for pleasure; "The lovers held hands while walking"; "We like to walk every Sunday" -01882479 38 v 01 constitutionalize 0 002 @ 01882170 v 0000 + 00284544 n 0101 01 + 02 00 | take a walk for one's health or to aid digestion, as after a meal; "A good way of exercising is to constitutionalize" -01882689 38 v 03 gallivant 0 gad 0 jazz_around 0 001 @ 01881180 v 0000 01 + 02 00 | wander aimlessly in search of pleasure -01882814 38 v 05 weave 0 wind 0 thread 0 meander 0 wander 1 006 $ 02102840 v 0000 @ 01835496 v 0000 + 09349648 n 0401 + 09409203 n 0302 + 00284409 n 0402 ~ 01883210 v 0000 02 + 04 00 + 22 00 | to move or cause to move in a sinuous, spiral, or circular course; "the river winds through the hills"; "the path meanders through the vineyards"; "sometimes, the gout wanders through the entire body" -01883210 38 v 01 snake 0 001 @ 01882814 v 0000 02 + 04 00 + 22 00 | move along a winding path; "The army snaked through the jungle" -01883344 38 v 03 shift 0 dislodge 0 reposition 0 004 @ 01850315 v 0000 + 00331655 n 0101 + 00331655 n 0102 ~ 01883550 v 0000 03 + 01 00 + 08 00 + 22 00 | change place or direction; "Shift one's position" -01883550 38 v 01 beat_down 0 001 @ 01883344 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | dislodge from a position; "She beat the dealer down to a much better price" -01883716 38 v 0c frolic 0 lark 0 rollick 0 skylark 0 disport 0 sport 0 cavort 0 gambol 0 frisk 0 romp 0 run_around 0 lark_about 0 007 @ 02418686 v 0000 + 00511817 n 0a03 + 10538154 n 0a01 + 00511817 n 0804 + 00523513 n 0601 + 00429322 n 0202 + 00511817 n 0102 01 + 22 00 | play boisterously; "The children frolicked in the garden"; "the gamboling lambs in the meadows"; "The toddlers romped in the playroom" -01884126 38 v 03 forge 0 spurt 0 spirt 0 001 @ 01835496 v 0000 02 + 01 00 + 02 00 | move or act with a sudden increase in speed or energy -01884266 38 v 01 forge 1 001 @ 01992503 v 0000 03 + 01 00 + 02 00 + 22 00 | move ahead steadily; "He forged ahead" -01884383 38 v 03 buck 0 jerk 1 hitch 2 003 @ 01831531 v 0000 + 00335988 n 0201 + 01888264 n 0101 02 + 01 00 + 02 00 | jump vertically, with legs stiff and back arched; "the yung filly bucked" -01884577 38 v 05 cant 0 cant_over 0 tilt 1 slant 1 pitch 2 008 @ 01831531 v 0000 + 05069199 n 0501 + 05069199 n 0403 + 00348008 n 0304 + 04435870 n 0301 + 09213828 n 0102 + 02833576 n 0102 ~ 01884868 v 0000 02 + 01 00 + 08 00 | heel over; "The tower is tilting"; "The ceiling is slanting" -01884868 38 v 01 cock 1 001 @ 01884577 v 0000 01 + 08 00 | tilt or slant to one side; "cock one's head" -01884974 38 v 04 careen 0 wobble 2 shift 4 tilt 2 006 @ 01831531 v 0000 + 00348008 n 0404 + 00331655 n 0301 + 07364700 n 0201 + 04596630 n 0201 + 00348008 n 0102 03 + 01 00 + 04 00 + 22 00 | move sideways or in an unsteady way; "The ship careened out of control" -01885239 38 v 02 scend 0 surge 4 002 @ 01968569 v 0000 + 07348545 n 0202 02 + 01 00 + 04 00 | rise or heave upward under the influence of a natural force such as a wave; "the boats surged" -01885430 38 v 04 churn 0 boil 0 moil 0 roil 0 002 @ 01831531 v 0000 ~ 00324427 v 0000 01 + 01 00 | be agitated; "the sea was churning in the storm" -01885580 38 v 01 fan 0 003 @ 01889610 v 0000 + 03320046 n 0101 ~ 01885708 v 0000 03 + 08 00 + 09 00 + 11 00 | agitate the air -01885708 38 v 01 winnow 0 001 @ 01885580 v 0000 01 + 11 00 | blow on; "The wind was winnowing her hair"; "the wind winnowed the grass" -01885845 38 v 02 crawl 0 creep 0 011 @ 01835496 v 0000 + 07312503 n 0201 + 00294868 n 0203 + 09976119 n 0202 + 00294868 n 0204 + 00294868 n 0101 + 00330035 n 0101 + 09976119 n 0101 + 01935395 n 0108 + 00294868 n 0102 ~ 01886228 v 0000 02 + 01 00 + 22 00 | move slowly; in the case of people or animals with the body near the ground; "The crocodile was crawling along the riverbed" -01886228 38 v 01 formicate 0 002 @ 01885845 v 0000 + 14325006 n 0101 01 + 01 00 | crawl about like ants -01886334 38 v 01 scramble 0 003 @ 01835496 v 0000 + 00556142 n 0102 + 10563403 n 0101 01 + 22 00 | to move hurriedly; "The friend scrambled after them" -01886488 38 v 02 slither 0 slide 0 004 @ 01835496 v 0000 + 10275940 n 0202 ^ 01988886 v 0202 ^ 02072849 v 0208 04 + 01 00 + 02 00 + 04 00 + 22 00 | to pass or move unobtrusively or smoothly; "They slid through the wicket in the big gate" -01886728 38 v 01 coast 0 004 @ 01887576 v 0000 + 00328502 n 0103 + 09932616 n 0101 ~ 01886907 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move effortlessly; by force of gravity -01886907 38 v 01 freewheel 0 001 @ 01886728 v 0000 02 + 02 00 + 22 00 | coast in a vehicle using the freewheel -01887020 38 v 02 wheel 2 roll 1 007 @ 01835496 v 0000 + 07441619 n 0203 + 00122530 n 0202 + 04574999 n 0101 + 00122530 n 0101 ~ 01887324 v 0000 ~ 01887454 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move along on or as if on wheels or a wheeled vehicle; "The President's convoy rolled past the crowds" -01887324 38 v 01 bowl 0 004 @ 01887020 v 0000 ;c 00041740 n 0000 + 02881546 n 0101 + 09869961 n 0101 01 + 08 00 | roll (a ball) -01887454 38 v 01 troll 0 001 @ 01887020 v 0000 01 + 08 00 | cause to move round and round; "The child trolled her hoop" -01887576 38 v 01 glide 0 013 @ 01835496 v 0000 + 00328502 n 0102 + 03439814 n 0101 ^ 02072849 v 0105 ~ 01870275 v 0000 ~ 01886728 v 0000 ~ 01888048 v 0000 ~ 01888165 v 0000 ~ 01936753 v 0000 ~ 01942718 v 0000 ~ 01948077 v 0000 ~ 01948339 v 0000 ~ 02104860 v 0000 03 + 04 00 + 21 00 + 22 00 | move smoothly and effortlessly -01887901 38 v 01 glide 2 002 @ 01850315 v 0000 + 00328502 n 0102 02 + 08 00 + 11 00 | cause to move or pass silently, smoothly, or imperceptibly -01888048 38 v 01 skitter 1 001 @ 01887576 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | glide easily along a surface -01888165 38 v 01 snake 1 002 @ 01887576 v 0000 + 04248010 n 0101 02 + 04 00 + 22 00 | move smoothly and sinuously, like a snake -01888295 38 v 02 steal 0 slip 1 006 @ 01831531 v 0000 + 00329031 n 0202 + 00059376 n 0201 ^ 02072849 v 0206 + 01051082 n 0102 ^ 02076027 v 0102 01 + 22 00 | move stealthily; "The ship slipped away in the darkness" -01888511 38 v 01 tremble 0 006 @ 01889610 v 0000 + 00867983 n 0101 + 10498046 n 0102 + 14004572 n 0103 ~ 01888946 v 0000 ~ 01889129 v 0000 01 + 01 00 | move or jerk quickly and involuntarily up and down or sideways; "His hands were trembling when he signed the document" -01888784 38 v 02 tremor 0 quake 2 003 @ 01889610 v 0000 + 07428954 n 0202 + 07429484 n 0101 01 + 01 00 | shake with seismic vibrations; "The earth was quaking" -01888946 38 v 04 shudder 0 shiver 0 throb 0 thrill 0 003 @ 01888511 v 0000 + 07520112 n 0202 + 00348801 n 0102 02 + 01 00 + 02 00 | tremble convulsively, as from fear or excitement -01889129 38 v 03 quiver 0 quake 1 palpitate 1 007 @ 01888511 v 0000 + 02304322 a 0301 + 14004572 n 0307 + 10498046 n 0201 + 00345926 n 0102 + 14004572 n 0104 + 14004572 n 0105 02 + 01 00 + 02 00 | shake with fast, tremulous movements; "His nostrils palpitated" -01889392 38 v 01 palpitate 2 004 $ 01879928 v 0000 @ 01889610 v 0000 + 02304322 a 0101 + 14335097 n 0101 02 + 08 00 + 11 00 | cause to throb or beat rapidly; "Her violent feelings palpitated the young woman's heart" -01889610 38 v 02 shake 0 agitate 1 016 @ 01831531 v 0000 + 00347652 n 0103 + 04183329 n 0101 + 00347180 n 0101 ~ 01391946 v 0000 ~ 01885580 v 0000 ~ 01888511 v 0000 ~ 01888784 v 0000 ~ 01889392 v 0000 ~ 01890088 v 0000 ~ 01890223 v 0000 ~ 01890351 v 0000 ~ 01890510 v 0000 ~ 01890626 v 0000 ~ 01890792 v 0000 ~ 01898282 v 0000 05 + 01 00 + 02 00 + 08 00 + 09 00 + 11 00 | move or cause to move back and forth; "The chemist shook the flask vigorously"; "My hands were shaking" -01890088 38 v 01 convulse 1 001 @ 01889610 v 0000 02 + 10 00 + 11 00 | shake uncontrollably; "earthquakes convulsed the countryside" -01890223 38 v 01 sparge 0 001 @ 01889610 v 0000 01 + 08 00 | agitate by introducing air or compressed gas; "sparge the water" -01890351 38 v 02 succuss 0 shake_up 7 002 @ 01889610 v 0000 + 00876377 n 0101 01 + 08 00 | shake; especially (a patient to detect fluids or air in the body) -01890510 38 v 01 concuss 0 003 @ 01889610 v 0000 + 07409930 n 0101 + 07411490 n 0101 01 + 08 00 | shake violently -01890626 38 v 01 rattle 0 004 @ 01889610 v 0000 + 04056289 n 0101 + 01754876 n 0102 + 07391240 n 0102 02 + 08 00 + 11 00 | shake and cause to make a rattling noise -01890792 38 v 08 convulse 0 thresh 0 thresh_about 0 thrash 1 thrash_about 0 slash 0 toss 1 jactitate 0 005 @ 01889610 v 0000 + 04625515 n 0801 + 00345817 n 0701 + 00575083 n 0401 ~ 01891092 v 0000 02 + 01 00 + 02 00 | move or stir about violently; "The feverish patient thrashed around in his bed" -01891092 38 v 01 whip 0 001 @ 01890792 v 0000 02 + 01 00 + 04 00 | thrash about flexibly in the manner of a whiplash; "The tall grass whipped in the wind" -01891249 38 v 01 vibrate 0 005 @ 01831531 v 0000 + 14004572 n 0106 + 04533042 n 0101 ~ 01871546 v 0000 ~ 01891638 v 0000 03 + 01 00 + 08 00 + 11 00 | shake, quiver, or throb; move back and forth rapidly, usually in an uncontrolled manner -01891489 38 v 01 brachiate 0 002 @ 01877355 v 0000 + 00283450 n 0101 02 + 01 00 + 02 00 | swing from one hold to the next; "the monkeys brachiate" -01891638 38 v 02 judder 0 shake 1 002 @ 01891249 v 0000 ;r 08860123 n 0000 03 + 01 00 + 08 00 + 11 00 | shake or vibrate rapidly and intensively; "The old engine was juddering" -01891817 38 v 02 jerk 0 twitch 1 007 $ 00009631 v 0000 @ 01831531 v 0000 + 14361664 n 0201 + 14361664 n 0202 + 00335988 n 0101 + 00115500 n 0102 + 00335988 n 0102 04 + 01 00 + 02 00 + 08 00 + 22 00 | move with abrupt, seemingly uncontrolled motions; "The patient's legs were jerkings" -01892104 38 v 09 bounce 0 resile 0 take_a_hop 0 spring 0 bound 0 rebound 0 recoil 1 reverberate 3 ricochet 0 013 @ 01963942 v 0000 + 07409475 n 0901 + 07350192 n 0701 + 07350192 n 0603 + 00120202 n 0505 + 00120202 n 0403 + 00843595 a 0204 + 07350567 n 0202 + 07350401 n 0101 + 05020981 n 0101 ~ 01371454 v 0000 ~ 01892734 v 0000 ~ 01892849 v 0000 02 + 01 00 + 04 00 | spring back; spring away from an impact; "The rubber ball bounced"; "These particles do not resile but they unite after they collide" -01892608 38 v 02 bounce 2 jounce 0 002 @ 01835496 v 0000 + 07350401 n 0101 02 + 01 00 + 02 00 | move up and down repeatedly -01892734 38 v 02 skip 3 bound_off 0 001 @ 01892104 v 0000 02 + 01 00 + 04 00 | bound off one point after another -01892849 38 v 01 carom 0 002 @ 01892104 v 0000 + 07409475 n 0102 02 + 01 00 + 02 00 | rebound after hitting; "The car caromed off several lampposts" -01893000 38 v 01 glance 0 001 @ 01236164 v 0000 01 + 11 00 | hit at an angle -01893079 38 v 02 flip 0 toss 0 004 @ 01907258 v 0000 + 01246086 n 0202 + 10717055 n 0201 + 01246086 n 0101 03 + 01 00 + 04 00 + 08 00 | lightly throw to see which side comes up; "I don't know what to do--I may as well flip a coin!" -01893313 38 v 03 capsize 0 turtle 0 turn_turtle 0 001 @ 01909397 v 0000 01 + 01 00 | overturn accidentally; "Don't rock the boat or it will capsize!" -01893465 38 v 02 flip 1 flick 0 002 @ 01508368 v 0000 + 00105820 n 0103 01 + 08 00 | cause to move with a flick; "he flicked his Bic" -01893601 38 v 02 flip 2 twitch 0 002 @ 01831531 v 0000 + 00105820 n 0103 03 + 01 00 + 02 00 + 08 00 | toss with a sharp movement so as to cause to turn over in the air -01893771 38 v 02 snap 0 click 0 004 @ 01831531 v 0000 + 07379223 n 0202 + 00112828 n 0201 + 07381423 n 0103 02 + 01 00 + 08 00 | move or strike with a noise; "he clicked on the light"; "his arm was snapped forward" -01893988 38 v 04 stir 0 shift 1 budge 0 agitate 0 003 @ 01831531 v 0000 + 00331655 n 0201 + 00331655 n 0202 02 + 01 00 + 02 00 | move very slightly; "He shifted in his seat" -01894164 38 v 02 arouse 0 stir 4 001 @ 01831531 v 0000 02 + 01 00 + 02 00 | to begin moving, "As the thunder started the sleeping children began to stir" -01894320 38 v 01 stir 1 004 @ 01850315 v 0000 + 04320871 n 0101 ~ 01418389 v 0000 ~ 01419373 v 0000 02 + 08 00 + 11 00 | move an implement through; "stir the soup"; "stir my drink"; "stir the soil" -01894520 38 v 01 breeze 0 003 @ 01835496 v 0000 + 00575365 n 0102 ^ 02522581 v 0101 01 + 22 00 | to proceed quickly and easily -01894649 38 v 01 dance 1 008 @ 01831531 v 0000 * 01928838 v 0000 + 09990415 n 0101 + 09989502 n 0101 $ 01708676 v 0000 ~ 01894914 v 0000 ~ 01895027 v 0000 ~ 01895168 v 0000 01 + 02 00 | move in a graceful and rhythmical way; "The young girl danced into the room" -01894914 38 v 01 glissade 0 002 @ 01894649 v 0000 + 00534344 n 0101 01 + 02 00 | perform a glissade, in ballet -01895027 38 v 02 chasse 0 sashay 2 003 @ 01894649 v 0000 + 00534152 n 0202 + 00534152 n 0101 01 + 02 00 | perform a chasse step, in ballet -01895168 38 v 01 capriole 0 001 @ 01894649 v 0000 01 + 02 00 | perform a capriole, in ballet -01895263 38 v 02 bop 0 bebop 0 003 @ 01708676 v 0000 + 07063101 n 0202 + 07063101 n 0101 01 + 02 00 | dance the bebop -01895383 38 v 01 bump 0 001 @ 01708676 v 0000 01 + 02 00 | dance erotically or dance with the pelvis thrust forward; "bump and grind" -01895519 38 v 01 twist 2 002 @ 01708676 v 0000 + 00534631 n 0101 01 + 02 00 | do the twist -01895612 38 v 02 waltz 0 waltz_around 0 004 @ 01708676 v 0000 + 07058184 n 0101 + 00537534 n 0101 + 10765587 n 0101 01 + 02 00 | dance a waltz -01895757 38 v 02 tapdance 0 tap 1 003 @ 01708676 v 0000 + 04391276 n 0201 + 10691148 n 0202 01 + 02 00 | dance and make rhythmic clicking sounds by means of metal plates nailed to the sole of the dance shoes; "Glover tapdances better than anybody" -01896007 38 v 01 tango 0 003 @ 01708676 v 0000 + 07057829 n 0101 + 00537423 n 0101 01 + 02 00 | dance a tango -01896119 38 v 01 shag 0 002 @ 01708676 v 0000 + 00533404 n 0101 01 + 02 00 | dance the shag -01896213 38 v 01 foxtrot 0 001 @ 01708676 v 0000 01 + 02 00 | dance the foxtrot -01896295 38 v 04 contradance 0 country-dance 0 contredanse 0 contra_danse 0 004 @ 01708676 v 0000 + 00539121 n 0404 + 00539121 n 0303 + 00539121 n 0201 01 + 02 00 | perform a contradance -01896484 38 v 03 break_dance 0 break-dance 0 break 0 002 @ 01708676 v 0000 + 00526412 n 0102 01 + 02 00 | do a break dance; "Kids were break-dancing at the street corner" -01896657 38 v 01 cakewalk 0 002 @ 01708676 v 0000 + 00530874 n 0101 01 + 02 00 | perform the cakewalk dance -01896767 38 v 01 conga 0 003 @ 01708676 v 0000 + 07055295 n 0101 + 00536516 n 0101 01 + 02 00 | dance the conga -01896881 38 v 01 samba 0 003 @ 01708676 v 0000 + 00537192 n 0101 + 07056895 n 0101 01 + 02 00 | dance the samba -01896995 38 v 01 two-step 0 002 @ 01708676 v 0000 + 00536120 n 0101 01 + 02 00 | dance the two-step -01897097 38 v 01 Charleston 0 002 @ 01708676 v 0000 + 00536359 n 0101 01 + 02 00 | dance the Charleston -01897203 38 v 01 boogie 0 002 @ 01708676 v 0000 + 07063249 n 0101 01 + 02 00 | dance to boogie music -01897306 38 v 01 cha-cha 0 002 @ 01708676 v 0000 + 00535557 n 0101 01 + 02 00 | dance the cha-cha -01897406 38 v 01 disco 0 001 @ 01708676 v 0000 01 + 02 00 | dance to disco music -01897489 38 v 01 mambo 0 002 @ 01708676 v 0000 + 00538668 n 0101 01 + 02 00 | dance a mambo -01897583 38 v 01 polka 0 002 @ 01708676 v 0000 + 00538144 n 0101 01 + 02 00 | dance a polka -01897677 38 v 01 one-step 0 002 @ 01708676 v 0000 + 00535732 n 0101 01 + 02 00 | dance the one-step -01897779 38 v 02 rhumba 0 rumba 0 002 @ 01708676 v 0000 + 07056764 n 0102 01 + 02 00 | dance the rhumba -01897885 38 v 04 slam_dance 0 slam 0 mosh 0 thrash 0 003 @ 01708676 v 0000 + 00527498 n 0101 + 00527498 n 0102 01 + 02 00 | dance the slam dance -01898032 38 v 01 jig 0 003 @ 01708676 v 0000 + 00538991 n 0101 + 07055805 n 0101 01 + 02 00 | dance a quick dance with leaping and kicking motions -01898181 38 v 01 jitterbug 0 002 @ 01708676 v 0000 + 00532441 n 0101 01 + 02 00 | do the jitterbug -01898282 38 v 03 jiggle 0 joggle 0 wiggle 0 008 @ 01889610 v 0000 + 00349705 n 0301 + 10781236 n 0301 + 02200509 n 0301 + 01935395 n 0305 + 00347359 n 0201 + 00347359 n 0102 ~ 01898592 v 0000 03 + 01 00 + 02 00 + 08 00 | move to and fro; "Don't jiggle your finger while the nurse is putting on the bandage!" -01898592 38 v 02 wag 0 waggle 0 003 @ 01898282 v 0000 + 00347652 n 0202 + 00347652 n 0101 03 + 01 00 + 08 00 + 11 00 | move from side to side; "The happy dog wagged his tail" -01898769 38 v 01 folk_dance 0 003 @ 01708676 v 0000 + 00537682 n 0101 + 00537682 n 0102 01 + 02 00 | perform a folk-dance -01898893 38 v 01 square_dance 0 003 @ 01708676 v 0000 + 10642596 n 0101 + 00539951 n 0101 01 + 02 00 | dance in formation -01899017 38 v 02 call 0 call_off 0 002 * 01898893 v 0000 + 09888635 n 0101 01 + 02 00 | give the calls (to the dancers) for a square dance -01899158 38 v 01 quickstep 0 002 @ 01708676 v 0000 + 00536964 n 0101 01 + 02 00 | perform a quickstep -01899262 38 v 01 thrust 0 010 @ 01871979 v 0000 ^ 01996574 v 0102 ~ 01229976 v 0000 ~ 01230350 v 0000 ~ 01238907 v 0000 ~ 01516071 v 0000 ~ 01516534 v 0000 ~ 01575146 v 0000 ~ 01575536 v 0000 ~ 01899557 v 0000 04 + 14 00 + 15 00 + 20 00 + 21 00 | push forcefully; "He thrust his chin forward" -01899557 38 v 01 dig 0 001 @ 01899262 v 0000 02 + 20 00 + 21 00 | thrust down or into; "dig the oars into the water"; "dig your foot into the floor" -01899708 38 v 01 dart 2 003 @ 02062212 v 0000 + 00334356 n 0102 + 01314910 n 0101 02 + 04 00 + 22 00 | move with sudden speed; "His forefinger darted in all directions as he spoke" -01899891 38 v 04 flit 0 flutter 2 fleet 1 dart 1 005 @ 02055649 v 0000 + 00334356 n 0402 + 00348571 n 0202 + 00334356 n 0101 ~ 01900156 v 0000 03 + 02 00 + 04 00 + 22 00 | move along rapidly and lightly; skim or dart; "The hummingbird flitted among the branches" -01900156 38 v 01 butterfly 1 001 @ 01899891 v 0000 02 + 01 00 + 02 00 | flutter like a butterfly -01900255 38 v 01 flutter 3 001 @ 02093610 v 0000 01 + 01 00 | flap the wings rapidly or fly with flapping movements; "The seagulls fluttered overhead" -01900408 38 v 02 stumble 0 trip 0 006 @ 01831531 v 0000 * 01904930 v 0000 + 07317519 n 0202 + 10667041 n 0202 + 10667041 n 0101 ~ 01900648 v 0000 02 + 02 00 + 22 00 | miss a step and fall or nearly fall; "She stumbled over the tree root" -01900648 38 v 01 founder 2 001 @ 01900408 v 0000 01 + 01 00 | stumble and nearly fall; "the horses foundered" -01900760 38 v 02 trip 1 trip_up 0 002 > 01900408 v 0000 + 07317519 n 0102 02 + 09 00 + 10 00 | cause to stumble; "The questions on the test tripped him up" -01900918 38 v 01 lollop 0 001 @ 01904930 v 0000 02 + 01 00 + 02 00 | walk clumsily and with a bounce -01901021 38 v 01 tap 0 002 @ 01904930 v 0000 + 07388987 n 0103 02 + 02 00 + 22 00 | walk with a tapping sound -01901133 38 v 03 stumble 1 falter 0 bumble 0 002 @ 01904930 v 0000 + 00289388 n 0102 02 + 02 00 + 22 00 | walk unsteadily; "The drunk man stumbled about" -01901289 38 v 02 falter 1 waver 3 003 @ 01831531 v 0000 + 00348571 n 0201 + 01063350 n 0104 02 + 01 00 + 02 00 | move hesitatingly, as if about to give way -01901447 38 v 03 trot 0 jog 1 clip 0 007 @ 01926311 v 0000 + 00294190 n 0201 + 10223459 n 0201 + 00628390 n 0201 + 00294190 n 0102 + 02439568 n 0101 + 02388276 n 0102 01 + 22 00 | run at a moderately swift pace -01901660 38 v 01 trot 2 002 @ 01907076 v 0000 + 00287561 n 0101 01 + 09 00 | cause to trot; "She trotted the horse home" -01901783 38 v 04 roll a undulate 0 flap 1 wave 0 008 @ 01831531 v 0000 + 00346095 n 0401 + 07439284 n 0301 + 07439284 n 0302 + 07352048 n 0201 + 07345593 n 0202 + 07349532 n 0101 ~ 01902246 v 0000 02 + 01 00 + 08 00 | move in a wavy pattern or with a rising and falling motion; "The curtains undulated"; "the waves rolled towards the beach" -01902126 38 v 03 mill 0 mill_about 0 mill_around 0 001 @ 01831531 v 0000 01 + 01 00 | move about in a confused manner -01902246 38 v 01 luff 0 002 @ 01901783 v 0000 + 00313971 n 0101 02 + 01 00 + 04 00 | flap when the wind is blowing equally on both sides; "the sails luffed" -01902405 38 v 04 scurry 0 scamper 0 skitter 0 scuttle 0 004 @ 01926311 v 0000 + 00556142 n 0201 + 00556142 n 0103 ~ 01902678 v 0000 01 + 22 00 | to move about or proceed hurriedly; "so terrified by the extraordinary ebbing of the sea that they scurried to higher ground" -01902678 38 v 01 crab 0 001 @ 01902405 v 0000 03 + 01 00 + 02 00 + 04 00 | scurry sideways like a crab -01902783 38 v 04 float 0 drift 2 be_adrift 0 blow 0 008 @ 01835496 v 0000 + 11465017 n 0403 + 11447851 n 0201 $ 01838651 v 0000 ~ 01874178 v 0000 ~ 01874320 v 0000 $ 01874875 v 0000 ~ 02070679 v 0000 02 + 01 00 + 04 00 | be in motion due to some air or water current; "The leaves were blowing in the wind"; "the boat drifted on the lake"; "The sailboat was adrift on the open sea"; "the shipwrecked boat drifted away from the shore" -01903218 38 v 01 drift 5 002 $ 02617338 v 0000 @ 02042237 v 0000 01 + 02 00 | move in an unhurried fashion; "The unknown young man drifted among the invited guests" -01903385 38 v 01 play 0 002 @ 01835496 v 0000 + 07411851 n 0102 01 + 04 00 | move or seem to move quickly, lightly, or irregularly; "The spotlights played on the politicians" -01903562 38 v 01 play 3 002 @ 01850315 v 0000 + 04774511 n 0102 02 + 08 00 + 11 00 | cause to move or operate freely within a bounded space; "The engine has a wheel that is playing in a rack" -01903756 38 v 02 tide 1 surge 3 005 @ 02066939 v 0000 + 07348545 n 0202 + 07440240 n 0203 + 07444495 n 0101 ! 01903935 v 0101 01 + 01 00 | rise or move forward; "surging waves" -01903935 38 v 05 ebb 0 ebb_away 0 ebb_down 0 ebb_out 0 ebb_off 0 003 @ 01904120 v 0000 + 07402147 n 0101 ! 01903756 v 0101 01 + 01 00 | flow back or recede; "the tides ebbed at noon" -01904120 38 v 01 fall_back 3 003 @ 01994442 v 0000 + 00057306 n 0102 ~ 01903935 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move back and away from; "The enemy fell back" -01904293 38 v 02 float 1 swim 1 012 $ 01874568 v 0000 $ 01838651 v 0000 @ 01835496 v 0000 + 00442115 n 0202 + 00443231 n 0101 + 10096620 n 0101 + 09281777 n 0101 + 03364340 n 0101 + 11527967 n 0102 + 11527967 n 0101 ! 01989873 v 0101 ~ 01904795 v 0000 03 + 01 00 + 02 00 + 08 00 | be afloat either on or below a liquid surface and not sink to the bottom -01904649 38 v 01 swim 2 001 @ 01835496 v 0000 01 + 04 00 | move as if gliding through water; "this snake swims through the soil where it lives" -01904795 38 v 01 buoy 0 003 @ 01904293 v 0000 + 01187072 a 0101 + 07266178 n 0101 02 + 01 00 + 02 00 | float on the surface of water -01904930 38 v 01 walk 0 057 * 01928838 v 0000 $ 01912893 v 0000 $ 01907076 v 0000 $ 01882170 v 0000 $ 01906823 v 0000 $ 01959776 v 0000 @ 01835496 v 0000 + 05003090 n 0101 + 04544979 n 0101 + 00284798 n 0101 + 00283568 n 0101 + 10412055 n 0102 + 00283568 n 0102 ! 01955984 v 0101 ^ 01910965 v 0103 ^ 01910965 v 0102 ~ 01867504 v 0000 ~ 01900918 v 0000 ~ 01901021 v 0000 ~ 01901133 v 0000 ~ 01906202 v 0000 ~ 01906322 v 0000 ~ 01906525 v 0000 ~ 01910873 v 0000 ~ 01910965 v 0000 ~ 01911698 v 0000 ~ 01911888 v 0000 ~ 01916214 v 0000 ~ 01916634 v 0000 ~ 01916960 v 0000 ~ 01917123 v 0000 ~ 01917244 v 0000 ~ 01917549 v 0000 ~ 01917980 v 0000 ~ 01918183 v 0000 ~ 01918304 v 0000 ~ 01918521 v 0000 ~ 01918803 v 0000 ~ 01919226 v 0000 ~ 01919391 v 0000 ~ 01919711 v 0000 ~ 01920932 v 0000 ~ 01921204 v 0000 ~ 01924023 v 0000 ~ 01924148 v 0000 ~ 01924405 v 0000 ~ 01924882 v 0000 ~ 01925170 v 0000 ~ 01925338 v 0000 ~ 01925548 v 0000 ~ 01929254 v 0000 ~ 01929467 v 0000 ~ 01929824 v 0000 ~ 01929927 v 0000 ~ 01930033 v 0000 ~ 01996735 v 0000 ~ 02091689 v 0000 03 + 01 00 + 02 00 + 22 00 | use one's feet to advance; advance by steps; "Walk, don't run!"; "We walked instead of driving"; "She walks with a slight limp"; "The patient cannot walk yet"; "Walk over to the cabinet" -01906202 38 v 01 spacewalk 0 002 @ 01904930 v 0000 + 00292981 n 0101 01 + 02 00 | move in space outside a space craft -01906322 38 v 04 foot 0 leg_it 0 hoof 0 hoof_it 0 005 @ 01904930 v 0000 ;u 07075172 n 0000 + 00284665 n 0101 + 05563266 n 0101 + 10412055 n 0103 02 + 02 00 + 22 00 | walk; "let's hoof it to the disco" -01906525 38 v 01 toe 0 002 @ 01904930 v 0000 + 05577410 n 0101 01 + 02 00 | walk so that the toes assume an indicated position or direction; "She toes inwards" -01906687 38 v 01 chariot 0 004 @ 01955984 v 0000 + 03009269 n 0101 + 03009111 n 0101 + 09910222 n 0101 01 + 02 00 | ride in a chariot -01906823 38 v 01 walk 5 007 @ 02506546 v 0000 + 05003090 n 0101 + 00283568 n 0101 $ 01904930 v 0000 $ 01907076 v 0000 ~ 01924712 v 0000 ~ 02084587 v 0000 02 + 08 00 + 09 00 | make walk; "He walks the horse up the mountain"; "Walk the dog twice a day" -01907076 38 v 01 walk 1 005 $ 01906823 v 0000 @ 02025550 v 0000 ~ 01901660 v 0000 $ 01904930 v 0000 ~ 02084380 v 0000 01 + 08 00 | accompany or escort; "I'll walk you to your car" -01907258 38 v 01 turn 0 038 $ 02089984 v 0000 @ 01831531 v 0000 + 00346532 n 0101 + 07351612 n 0102 + 00350030 n 0101 + 07351612 n 0101 + 00350030 n 0102 ^ 02004528 v 0102 ^ 02034300 v 0103 ^ 00897564 v 0102 ~ 01222645 v 0000 ~ 01222958 v 0000 ~ 01861927 v 0000 ~ 01866192 v 0000 ~ 01867816 v 0000 ~ 01878949 v 0000 ~ 01893079 v 0000 ~ 01908204 v 0000 ~ 01908365 v 0000 ~ 01908658 v 0000 ~ 01908809 v 0000 ~ 01908941 v 0000 ~ 01909042 v 0000 ~ 01909161 v 0000 ~ 01909275 v 0000 ~ 01909397 v 0000 ~ 02033137 v 0000 ~ 02033295 v 0000 ~ 02033805 v 0000 ~ 02034300 v 0000 ~ 02034511 v 0000 ~ 02045415 v 0000 ~ 02045790 v 0000 ~ 02046572 v 0000 ~ 02049190 v 0000 ~ 02049561 v 0000 ~ 02064887 v 0000 ~ 02081410 v 0000 03 + 01 00 + 02 00 + 04 00 | change orientation or direction, also in the abstract sense; "Turn towards me"; "The mugger turned and fled before I could see his face"; "She turned from herself and learned to listen to others' needs" -01908204 38 v 01 port 3 002 @ 01907258 v 0000 + 03642928 n 0102 01 + 01 00 | turn or go to the port or left side, of a ship; "The big ship was slowly porting" -01908365 38 v 01 face 0 002 $ 02137907 v 0000 @ 01907258 v 0000 02 + 08 00 + 09 00 | turn so as to face; turn the face in a certain direction; "Turn and face your partner now" -01908543 38 v 01 reorient 0 003 @ 02089984 v 0000 + 00346296 n 0102 ~ 02039544 v 0000 01 + 08 00 | cause to turn -01908658 38 v 01 turn_off 0 002 @ 01907258 v 0000 + 04500704 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | make a turn; "turn off at the parking area" -01908809 38 v 01 turn_away 2 001 @ 01907258 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move so as not face somebody or something -01908941 38 v 01 gee 0 001 @ 01907258 v 0000 01 + 01 00 | turn to the right side; "the horse geed" -01909042 38 v 01 about-face 0 002 @ 01907258 v 0000 + 00346936 n 0101 02 + 01 00 + 02 00 | turn, usually 180 degrees -01909161 38 v 01 caracole 0 001 @ 01907258 v 0000 02 + 01 00 + 02 00 | make a half turn on a horse, in dressage -01909275 38 v 01 corner 0 002 @ 01907258 v 0000 + 03109486 n 0101 02 + 01 00 + 02 00 | turn a corner; "the car corners" -01909397 38 v 04 overturn 0 turn_over 0 tip_over 0 tump_over 1 006 @ 01907258 v 0000 + 00348312 n 0203 + 00348312 n 0102 ~ 01893313 v 0000 ~ 01909679 v 0000 $ 01909978 v 0000 01 + 01 00 | turn from an upright or normal position; "The big vase overturned"; "The canoe tumped over" -01909679 38 v 01 upend 0 002 @ 01909397 v 0000 + 00335814 n 0102 01 + 01 00 | become turned or set on end; "the airplanes upended" -01909812 38 v 02 turn 3 move_around 3 002 @ 01835496 v 0000 + 07351612 n 0102 01 + 08 00 | pass to the other side of; "turn the corner"; "move around the obstacle" -01909978 38 v 07 overturn 1 tip_over 1 turn_over 2 upset 0 knock_over 0 bowl_over 0 tump_over 0 006 > 01909397 v 0000 $ 01909397 v 0000 @ 01850315 v 0000 + 00348312 n 0401 + 00348312 n 0303 + 00348312 n 0102 02 + 08 00 + 11 00 | cause to overturn from an upright or normal position; "The cat knocked over the flower vase"; "the clumsy customer turned over the vase"; "he tumped over his beer" -01910373 38 v 03 startle 0 jump 4 start 4 008 @ 01831531 v 0000 + 00867357 n 0303 + 00867357 n 0202 + 00867357 n 0101 ~ 01910680 v 0000 ~ 01910779 v 0000 ~ 01981933 v 0000 ~ 02097676 v 0000 02 + 02 00 + 08 00 | move or jump suddenly, as if in surprise or alarm; "She startled when I walked into the room" -01910680 38 v 01 shy 0 001 @ 01910373 v 0000 02 + 01 00 + 02 00 | start suddenly, as from fright -01910779 38 v 01 boggle 0 001 @ 01910373 v 0000 01 + 02 00 | startle with amazement or fear -01910873 38 v 02 traipse 0 shlep 0 001 @ 01904930 v 0000 01 + 22 00 | walk or tramp about -01910965 38 v 03 perambulate 0 walk_about 0 walk_around 0 004 @ 01904930 v 0000 + 00293657 n 0201 + 00284101 n 0105 + 00284101 n 0101 01 + 22 00 | walk with no particular goal; "we were walking around in the garden"; "after breakfast, she walked about in the park" -01911232 38 v 02 circumambulate 0 walk_around 1 001 @ 01911339 v 0000 01 + 08 00 | walk around something -01911339 38 v 01 circle 1 005 @ 01835496 v 0000 + 00295172 n 0102 ~ 01911232 v 0000 ~ 01911526 v 0000 ~ 02082355 v 0000 02 + 08 00 + 11 00 | travel around something; "circle the globe" -01911526 38 v 02 circumnavigate 0 compass 0 002 @ 01911339 v 0000 + 00296263 n 0101 02 + 08 00 + 11 00 | travel around, either by plane or ship; "We compassed the earth" -01911698 38 v 01 ambulate 0 005 @ 01904930 v 0000 + 01522985 a 0102 + 01522985 a 0101 + 00284101 n 0101 + 00283951 n 0101 01 + 22 00 | walk about; not be bedridden or incapable of walking -01911888 38 v 04 sneak 0 mouse 0 creep 4 pussyfoot 0 006 @ 01904930 v 0000 + 09976917 n 0301 + 09976119 n 0302 + 10486679 n 0102 ^ 02076027 v 0103 ^ 02076027 v 0105 01 + 22 00 | to go stealthily or furtively; "..stead of sneaking around spying on the neighbor's house" -01912159 38 v 09 traverse 0 track 1 cover 0 cross 0 pass_over 1 get_over 0 get_across 0 cut_through 0 cut_across 0 018 @ 02050132 v 0000 + 03137228 n 0401 + 00297532 n 0401 + 00313245 n 0401 + 09387222 n 0202 + 00296946 n 0102 + 10727016 n 0101 + 00296946 n 0101 ~ 01881957 v 0000 ~ 01912709 v 0000 ~ 01912893 v 0000 ~ 01913237 v 0000 ~ 01913849 v 0000 ~ 01915131 v 0000 ~ 01915253 v 0000 ~ 01930482 v 0000 ~ 02067540 v 0000 ~ 02095060 v 0000 03 + 04 00 + 08 00 + 22 00 | travel across or pass over; "The caravan covered almost 100 miles each day" -01912709 38 v 01 stride 3 003 @ 01912159 v 0000 + 13757249 n 0104 + 00285889 n 0102 01 + 08 00 | cover or traverse by taking long steps; "She strode several miles towards the woods" -01912893 38 v 01 walk 3 010 @ 01912159 v 0000 + 10412055 n 0102 + 04545748 n 0101 + 04545471 n 0101 + 04545305 n 0101 + 05003090 n 0101 + 04544979 n 0101 + 00284798 n 0101 + 00283568 n 0101 $ 01904930 v 0000 01 + 08 00 | traverse or cover by walking; "Walk the tightrope"; "Paul walked the streets of Damascus"; "She walks 3 miles every day" -01913237 38 v 01 crisscross 0 002 @ 01912159 v 0000 + 04681387 n 0101 02 + 08 00 + 11 00 | cross in a pattern, often random -01913363 38 v 02 infiltrate 0 pass_through 1 003 @ 02050132 v 0000 + 00976698 n 0101 + 10205714 n 0101 01 + 08 00 | pass through an enemy line; in a military conflict -01913532 38 v 01 infiltrate 3 002 @ 01457954 v 0000 + 13534274 n 0102 01 + 01 00 | pass into or through by filtering or permeating; "the substance infiltrated the material" -01913707 38 v 01 infiltrate 1 002 @ 01457954 v 0000 + 13534274 n 0102 01 + 11 00 | cause (a liquid) to enter by penetrating the interstices -01913849 38 v 01 ford 0 004 @ 01912159 v 0000 + 09283623 n 0101 + 00297657 n 0101 + 00297657 n 0102 01 + 08 00 | cross a river where it's shallow -01913997 38 v 01 cross 1 002 @ 02023396 v 0000 ~ 01914113 v 0000 01 + 01 00 | meet and pass; "the trains crossed" -01914113 38 v 01 decussate 1 002 @ 01913997 v 0000 + 05228496 n 0103 01 + 11 00 | cross or intersect so as to form a cross; "this nerve decussates the other"; "the fibers decussate" -01914297 38 v 01 claw 0 001 @ 02051031 v 0000 01 + 21 00 | move as if by clawing, seizing, or digging; "They clawed their way to the top of the mountain" -01914453 38 v 01 jostle 2 003 @ 02051031 v 0000 + 00114095 n 0101 + 00114095 n 0102 01 + 22 00 | make one's way by jostling, pushing, or shoving; "We had to jostle our way to the front of the platform" -01914657 38 v 01 cross 4 002 @ 01277974 v 0000 ! 01914792 v 0101 01 + 08 00 | fold so as to resemble a cross; "she crossed her legs" -01914792 38 v 01 uncross 0 002 @ 01579813 v 0000 ! 01914657 v 0101 01 + 08 00 | change from a crossed to an uncrossed position; "She uncrossed her legs" -01914947 38 v 01 run 5 004 @ 02050132 v 0000 + 00293916 n 0101 + 07460104 n 0103 $ 01926311 v 0000 01 + 08 00 | cover by running; run a certain distance; "She ran 10 miles that day" -01915131 38 v 01 bridge 0 003 @ 01912159 v 0000 + 00278266 a 0101 + 02898711 n 0101 01 + 08 00 | cross over on a bridge -01915253 38 v 01 jaywalk 0 002 @ 01912159 v 0000 + 10220360 n 0101 01 + 02 00 | cross the road at a red light -01915365 38 v 05 transit 0 pass_through 0 move_through 0 pass_across 0 pass_over 2 005 @ 02050132 v 0000 + 00309115 n 0102 + 00201058 n 0102 $ 01853696 v 0000 ~ 01915730 v 0000 02 + 04 00 + 22 00 | make a passage or journey from one place to another; "The tourists moved through the town and bought up all the souvenirs;" "Some travelers pass through the desert" -01915730 38 v 01 cut c 002 @ 01915365 v 0000 $ 01915865 v 0000 02 + 08 00 + 09 00 | pass through or across; "The boat cut the water" -01915865 38 v 01 cut d 002 $ 01915730 v 0000 @ 02050132 v 0000 01 + 22 00 | pass directly and often in haste; "We cut through the neighbor's yard to get home sooner" -01916033 38 v 02 slice_into 0 slice_through 0 001 @ 01835496 v 0000 02 + 08 00 + 11 00 | move through a body or an object with a slicing motion; "His hand sliced through the air" -01916214 38 v 01 wade 0 005 @ 01904930 v 0000 + 02000954 n 0102 + 00293307 n 0101 + 11369676 n 0101 ~ 01916471 v 0000 03 + 02 00 + 08 00 + 22 00 | walk (through relatively shallow water); "Can we wade across the river to the other side?"; "Wade the pond" -01916471 38 v 01 puddle 0 002 @ 01916214 v 0000 + 09397607 n 0102 02 + 01 00 + 02 00 | wade or dabble in a puddle; "The ducks and geese puddled in the backyard" -01916634 38 v 07 tittup 0 swagger 0 ruffle 1 prance 0 strut 0 sashay 0 cock 0 006 @ 01904930 v 0000 + 00290125 n 0501 + 02378870 n 0401 + 00290125 n 0402 + 00290125 n 0203 + 10682038 n 0201 01 + 22 00 | to walk with a lofty proud gait, often in an attempt to impress others; "He struts around like a rooster in a hen house" -01916960 38 v 02 sleepwalk 0 somnambulate 0 004 @ 01904930 v 0000 + 00285141 n 0203 + 10611361 n 0101 + 00285141 n 0101 02 + 02 00 + 22 00 | walk in one's sleep -01917123 38 v 01 slink 0 001 @ 01904930 v 0000 01 + 22 00 | walk stealthily; "I saw a cougar slinking toward its prey" -01917244 38 v 04 limp 0 gimp 0 hobble 0 hitch 1 007 @ 01904930 v 0000 + 00286756 n 0401 + 00286756 n 0302 + 10178917 n 0301 + 14549937 n 0203 + 00286756 n 0103 + 10178917 n 0102 02 + 02 00 + 22 00 | walk impeded by some physical limitation or injury; "The old woman hobbles down to the store every day" -01917549 38 v 03 shuffle 0 scuffle 0 shamble 0 007 @ 01904930 v 0000 + 00292712 n 0302 + 00292712 n 0301 + 10594408 n 0101 + 00292712 n 0103 + 00292712 n 0104 ~ 01917845 v 0000 01 + 22 00 | walk by dragging one's feet; "he shuffled out of the room"; "We heard his feet shuffling down the hall" -01917845 38 v 02 scuff 0 drag 2 003 @ 01917549 v 0000 + 00125315 n 0101 + 04156411 n 0101 01 + 22 00 | walk without lifting the feet -01917980 38 v 02 stroll 0 saunter 0 006 @ 01904930 v 0000 + 00284101 n 0203 + 00289737 n 0201 + 10553235 n 0201 + 00284101 n 0104 + 10553235 n 0102 01 + 22 00 | walk leisurely and with no apparent aim -01918183 38 v 02 amble 0 mosey 0 003 @ 01904930 v 0000 + 10553235 n 0103 + 00284101 n 0101 01 + 22 00 | walk leisurely -01918304 38 v 01 prowl 0 003 @ 01904930 v 0000 + 00292125 n 0101 + 10486679 n 0101 03 + 02 00 + 08 00 + 22 00 | move about in or as if in a predatory manner; "The suspicious stranger prowls the streets of the town" -01918521 38 v 01 skulk 0 001 @ 01904930 v 0000 03 + 02 00 + 08 00 + 22 00 | move stealthily; "The lonely man skulks down the main street all day" -01918669 38 v 02 mope 0 mope_around 0 002 @ 01831531 v 0000 + 09988703 n 0104 02 + 02 00 + 22 00 | move around slowly and aimlessly -01918803 38 v 06 toddle 0 coggle 0 totter 1 dodder 0 paddle 4 waddle 0 006 @ 01904930 v 0000 + 00290406 n 0601 + 10762064 n 0601 + 10022645 n 0401 + 10645854 n 0302 + 10714465 n 0101 01 + 22 00 | walk unsteadily; "small children toddle" -01919042 38 v 01 totter 2 001 @ 01875295 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move without being stable, as if threatening to fall; "The drunk man tottered over to our table" -01919226 38 v 01 promenade 0 003 @ 01904930 v 0000 + 00284101 n 0102 + 04010205 n 0101 01 + 22 00 | take a leisurely walk; "The ladies promenaded along the beach" -01919391 38 v 01 march 0 006 @ 01904930 v 0000 + 08428019 n 0101 + 00290579 n 0101 + 10293332 n 0101 ^ 01992503 v 0105 ~ 01919898 v 0000 02 + 02 00 + 22 00 | walk fast, with regular or measured steps; walk with a stride; "He marched into the classroom and announced the exam"; "The soldiers marched across the border" -01919711 38 v 01 stride 0 004 @ 01904930 v 0000 + 13757249 n 0104 + 00285889 n 0102 + 10661865 n 0101 02 + 02 00 + 22 00 | walk with long steps; "He strode confidently across the hall" -01919898 38 v 01 troop 0 002 @ 01919391 v 0000 + 08274565 n 0101 01 + 02 00 | move or march as if in a crowd; "They children trooped into the room" -01920048 38 v 01 file 0 004 @ 01996735 v 0000 + 08428756 n 0101 ^ 01920220 v 0101 ^ 01920594 v 0101 01 + 22 00 | proceed in line; "The students filed into the classroom" -01920220 38 v 01 file_in 0 002 @ 02016523 v 0000 ! 01920594 v 0101 01 + 02 00 | enter by marching in a file -01920330 38 v 01 pop_in 0 002 @ 02016523 v 0000 ! 01920457 v 0101 01 + 02 00 | enter briefly; "He popped in for two minutes" -01920457 38 v 01 pop_out 0 002 @ 02015598 v 0000 ! 01920330 v 0101 01 + 02 00 | exit briefly; "He popped out for a quick coffee break" -01920594 38 v 01 file_out 0 002 @ 02015598 v 0000 ! 01920220 v 0101 01 + 02 00 | march out, in a file -01920698 38 v 01 tramp 0 005 @ 01920932 v 0000 ;c 00523513 n 0000 + 00288970 n 0103 + 10176111 n 0102 + 10176111 n 0103 01 + 22 00 | travel on foot, especially on a walking expedition; "We went tramping about the state of Colorado" -01920932 38 v 01 hike 0 006 @ 01904930 v 0000 ;c 00523513 n 0000 + 00288970 n 0101 + 10176111 n 0101 ~ 01920698 v 0000 ~ 01926031 v 0000 03 + 02 00 + 08 00 + 22 00 | walk a long way, as for pleasure or physical exercise; "We were hiking in Colorado"; "hike the Rockies" -01921204 38 v 06 slog 0 footslog 0 plod 0 trudge 1 pad 0 tramp 1 011 @ 01904930 v 0000 + 10646942 n 0603 + 02440523 n 0501 + 00289175 n 0401 + 10731848 n 0401 + 10442417 n 0301 + 10731848 n 0302 + 10442232 n 0301 + 00291965 n 0301 + 10204921 n 0204 ~ 01921591 v 0000 01 + 22 00 | walk heavily and firmly, as when weary, or through mud; "Mules plodded in a circle around a grindstone" -01921591 38 v 06 squelch 0 squish 0 splash 0 splosh 0 slosh 0 slop 0 001 @ 01921204 v 0000 02 + 02 00 + 22 00 | walk through mud or mire; "We had to splosh across the wet meadow" -01921772 38 v 07 clamber 0 scramble 1 shin 0 shinny 0 skin 0 struggle 0 sputter 0 003 @ 01923909 v 0000 + 00622068 n 0601 + 00325502 n 0101 01 + 22 00 | climb awkwardly, as if by scrambling -01921964 38 v 04 climb 0 climb_up 0 mount 0 go_up 1 018 @ 01968569 v 0000 + 00325110 n 0302 + 10334957 n 0301 + 07370410 n 0303 + 09206985 n 0105 + 00325110 n 0101 + 13102409 n 0101 + 10334957 n 0102 + 09929298 n 0101 + 03126385 n 0104 + 07370410 n 0102 ^ 01923414 v 0106 ^ 01978576 v 0102 ~ 01922466 v 0000 ~ 01922576 v 0000 ~ 01922754 v 0000 ~ 01922895 v 0000 ~ 02095545 v 0000 02 + 08 00 + 22 00 | go upward with gradual or continuous progress; "Did you ever climb up the hill behind your house?" -01922466 38 v 01 scale 0 002 @ 01921964 v 0000 + 00325364 n 0101 01 + 08 00 | climb up by means of a ladder -01922576 38 v 01 escalade 0 003 @ 01921964 v 0000 + 00325631 n 0101 + 10062785 n 0101 01 + 08 00 | climb up and over; "They had to escalade canyons to reach their destination" -01922754 38 v 01 ramp 2 001 @ 01921964 v 0000 02 + 01 00 + 04 00 | creep up -- used especially of plants; "The roses ramped over the wall" -01922895 38 v 01 mountaineer 0 004 @ 01921964 v 0000 ;c 00523513 n 0000 + 00325785 n 0102 + 10334567 n 0101 01 + 02 00 | climb mountains for pleasure as a sport -01923058 38 v 03 rappel 0 abseil 0 rope_down 0 003 @ 01970826 v 0000 * 01922895 v 0000 ;c 00523513 n 0000 01 + 02 00 | lower oneself with a rope coiled around the body from a mountainside; "The ascent was easy--roping down the mountain would be much more difficult and dangerous"; "You have to learn how to abseil when you want to do technical climbing" -01923414 38 v 07 hop_on 0 mount 1 mount_up 0 get_on 0 jump_on 0 climb_on 0 bestride 0 004 @ 01831531 v 0000 + 02377703 n 0203 ! 01923732 v 0101 ~ 01923630 v 0000 01 + 08 00 | get up on the back of; "mount a horse" -01923630 38 v 01 remount 0 001 @ 01923414 v 0000 01 + 02 00 | mount again; "he remounted his horse" -01923732 38 v 02 hop_out 0 get_off 1 002 @ 02015598 v 0000 ! 01923414 v 0101 01 + 02 00 | get out of quickly; "The officer hopped out when he spotted an illegally parked car" -01923909 38 v 01 climb 1 002 @ 01831531 v 0000 ~ 01921772 v 0000 01 + 22 00 | move with difficulty, by grasping -01924023 38 v 03 tiptoe 0 tip 0 tippytoe 0 002 @ 01904930 v 0000 + 05577304 n 0101 02 + 02 00 + 22 00 | walk on one's toes -01924148 38 v 01 stalk 0 003 @ 01904930 v 0000 + 00290015 n 0101 + 10646528 n 0101 02 + 02 00 + 22 00 | walk stiffly -01924267 38 v 01 buzz 0 002 @ 01940403 v 0000 ;c 00300441 n 0000 02 + 01 00 + 10 00 | fly low; "Planes buzzed the crowds in the square" -01924405 38 v 01 flounce 0 002 @ 01904930 v 0000 + 00289267 n 0101 01 + 02 00 | walk emphatically -01924505 38 v 03 parade 0 troop 1 promenade 1 004 @ 01996735 v 0000 + 08460395 n 0101 + 08428485 n 0101 + 10293332 n 0102 02 + 02 00 + 22 00 | march in a procession; "the veterans paraded down the street" -01924712 38 v 03 parade 1 exhibit 0 march 3 002 @ 01906823 v 0000 + 00521085 n 0101 02 + 20 00 + 21 00 | walk ostentatiously; "She parades her new husband around town" -01924882 38 v 06 stagger 0 reel 0 keel 0 lurch 3 swag 1 careen 1 006 @ 01904930 v 0000 + 00348008 n 0602 + 00289388 n 0401 + 10645854 n 0203 + 00289388 n 0103 + 10645854 n 0101 02 + 02 00 + 22 00 | walk as if unable to control one's movements; "The drunken man staggered into the room" -01925170 38 v 02 stagger 1 flounder 0 002 @ 01904930 v 0000 + 00289388 n 0103 02 + 02 00 + 22 00 | walk with great difficulty; "He staggered along in the heavy snow" -01925338 38 v 03 stomp 0 stamp 0 stump 0 004 @ 01904930 v 0000 + 10646942 n 0201 + 10646942 n 0102 + 00533691 n 0101 02 + 02 00 + 22 00 | walk heavily; "The men stomped through the snow in their heavy boots" -01925548 38 v 02 lumber 0 pound 1 001 @ 01904930 v 0000 02 + 02 00 + 22 00 | move heavily or clumsily; "The heavy man lumbered across the room" -01925694 38 v 03 stray 0 err 0 drift 4 007 $ 01881180 v 0000 @ 01835496 v 0000 + 07366799 n 0301 + 13469674 n 0301 + 00297404 n 0301 + 00600395 a 0201 + 10660729 n 0102 02 + 02 00 + 22 00 | wander from a direct course or at random; "The child strayed from the path and her parents lost sight of her"; "don't drift from the set course" -01926031 38 v 02 backpack 0 pack 1 008 * 01451176 v 0000 @ 01920932 v 0000 ;c 00523513 n 0000 + 03870672 n 0201 + 09830629 n 0202 + 10304505 n 0202 + 00319312 n 0201 + 02769748 n 0101 02 + 02 00 + 22 00 | hike with a backpack; "Every summer they are backpacking in the Rockies" -01926311 38 v 01 run 0 020 $ 01914947 v 0000 @ 02055649 v 0000 + 00293916 n 0101 + 07460104 n 0103 + 10542761 n 0101 + 00293916 n 0102 ^ 01883716 v 010b ^ 02075049 v 0106 ~ 01901447 v 0000 ~ 01902405 v 0000 ~ 01926878 v 0000 ~ 01927211 v 0000 ~ 01927330 v 0000 ~ 01927447 v 0000 ~ 01927608 v 0000 ~ 01928390 v 0000 ~ 01928579 v 0000 ~ 01928730 v 0000 ~ 02059770 v 0000 ~ 02085004 v 0000 03 + 01 00 + 02 00 + 22 00 | move fast by using one's feet, with one foot off the ground at any given time; "Don't run--you'll be out of breath"; "The children ran to the store" -01926878 38 v 01 romp 1 002 @ 01926311 v 0000 + 10538154 n 0101 01 + 02 00 | run easily and fairly fast -01926984 38 v 01 run d 003 $ 02099829 v 0000 @ 01835496 v 0000 + 00293916 n 0101 02 + 02 00 + 22 00 | travel rapidly, by any (unspecified) means; "Run to the store!"; "She always runs to Italy, because she has a lover there" -01927211 38 v 01 run_bases 0 002 @ 01926311 v 0000 ;c 00471613 n 0000 01 + 02 00 | run around the bases, in baseball -01927330 38 v 01 streak 1 002 @ 01926311 v 0000 + 10662306 n 0101 02 + 02 00 + 22 00 | run naked in a public place -01927447 38 v 01 run 6 004 @ 01926311 v 0000 ;c 00523513 n 0000 + 00558883 n 0101 + 00558883 n 0102 01 + 02 00 | run with the ball; in such sports as football -01927608 38 v 01 outrun 0 001 @ 01926311 v 0000 02 + 09 00 + 11 00 | run faster than; "in this race, I managed to outran everybody else" -01927747 38 v 02 run 2 consort 0 002 @ 02025550 v 0000 + 09958724 n 0201 01 + 04 00 | keep company; "the heifers run with the bulls to produce offspring" -01927903 38 v 01 run 3 001 @ 01945516 v 0000 02 + 01 00 + 02 00 | sail before the wind -01927992 38 v 02 bear_down_on 0 bear_down_upon 0 003 * 01945516 v 0000 @ 02053941 v 0000 ;c 00815801 n 0000 01 + 02 00 | sail towards another vessel, of a ship -01928154 38 v 02 luff 1 point 9 003 @ 01945516 v 0000 ;c 00815801 n 0000 + 00313971 n 0101 01 + 02 00 | sail close to the wind -01928283 38 v 01 weather 1 002 @ 01945516 v 0000 ;c 00815801 n 0000 01 + 08 00 | sail to the windward of -01928390 38 v 01 jog 0 005 @ 01926311 v 0000 ;c 00523513 n 0000 + 00294190 n 0101 + 10223459 n 0101 + 00628390 n 0101 03 + 02 00 + 08 00 + 22 00 | run for exercise; "jog along the canal" -01928579 38 v 01 sprint 0 003 @ 01926311 v 0000 + 10641413 n 0101 + 00294452 n 0102 02 + 02 00 + 22 00 | run very fast, usually for a short distance -01928730 38 v 01 lope 0 003 @ 01926311 v 0000 + 00294190 n 0103 + 00288486 n 0102 01 + 02 00 | run easily -01928838 38 v 01 step 0 006 @ 01835496 v 0000 + 07383823 n 0103 + 00285557 n 0101 + 13757249 n 0103 ^ 02016401 v 0101 ~ 01929041 v 0000 02 + 02 00 + 22 00 | shift or move by taking a step; "step back" -01929041 38 v 01 backpedal 1 001 @ 01928838 v 0000 01 + 02 00 | step backwards, in boxing -01929133 38 v 01 goose_step 0 002 @ 01996735 v 0000 + 00291154 n 0101 02 + 02 00 + 22 00 | march in a military fashion -01929254 38 v 01 pace 0 006 @ 01904930 v 0000 + 00285889 n 0101 + 05058580 n 0101 + 13757249 n 0102 + 15280497 n 0101 + 00289555 n 0101 01 + 22 00 | walk with slow or fast paces; "He paced up and down the hall" -01929467 38 v 02 tread 0 trample 0 005 @ 01904930 v 0000 + 07398659 n 0201 + 10646942 n 0204 + 07398659 n 0202 ~ 01929688 v 0000 01 + 22 00 | tread or stomp heavily or roughly; "The soldiers trampled across the fields" -01929688 38 v 01 treadle 0 001 @ 01929467 v 0000 01 + 08 00 | tread over; "the brick maker treadles over clay to pick out the stones" -01929824 38 v 01 slouch 0 002 @ 01904930 v 0000 + 05003273 n 0101 02 + 02 00 + 22 00 | walk slovenly -01929927 38 v 01 mince 0 001 @ 01904930 v 0000 01 + 02 00 | walk daintily; "She minced down the street" -01930033 38 v 02 clump 0 clomp 0 001 @ 01904930 v 0000 01 + 02 00 | walk clumsily -01930117 38 v 02 drive 0 motor 0 010 * 01955984 v 0000 @ 01835496 v 0000 ;c 00298497 n 0000 + 10334101 n 0201 + 00299112 n 0201 + 03789946 n 0201 + 03244388 n 0102 + 03242713 n 0101 + 00307631 n 0101 $ 01930482 v 0000 02 + 02 00 + 22 00 | travel or be transported in a vehicle; "We drove to the university every morning"; "They motored to London for the theater" -01930482 38 v 02 drive b take b 008 $ 01930117 v 0000 $ 02056971 v 0000 $ 01930874 v 0000 @ 01912159 v 0000 ;c 00298497 n 0000 + 03244388 n 0102 + 00307631 n 0101 + 03242713 n 0101 01 + 08 00 | proceed along in a vehicle; "We drive the turnpike to work" -01930738 38 v 01 automobile 0 003 @ 01835496 v 0000 ;c 00298497 n 0000 + 02958343 n 0103 02 + 02 00 + 22 00 | travel in an automobile -01930874 38 v 01 drive 1 014 $ 02742232 v 0000 @ 01224744 v 0000 ;c 00298497 n 0000 + 03244388 n 0102 + 03242713 n 0101 + 00307631 n 0101 + 10034906 n 0101 + 00298497 n 0101 $ 01930482 v 0000 ~ 01931262 v 0000 ~ 01931375 v 0000 ~ 02057656 v 0000 ~ 02100341 v 0000 $ 02408281 v 0000 01 + 08 00 | operate or control a vehicle; "drive a car or bus"; "Can you drive this four-wheel truck?" -01931262 38 v 01 coach 0 003 @ 01930874 v 0000 ;c 00298497 n 0000 + 03055670 n 0101 01 + 02 00 | drive a coach -01931375 38 v 01 test_drive 0 004 @ 01930874 v 0000 ;c 00298497 n 0000 + 10703553 n 0101 + 05800387 n 0101 01 + 08 00 | test a vehicle by driving it; "I want to test drive the new Porsche" -01931566 38 v 01 cruise 3 002 @ 01846916 v 0000 ;c 00298497 n 0000 02 + 08 00 + 11 00 | drive around aimlessly but ostentatiously and at leisure; "She cruised the neighborhood in her new convertible" -01931768 38 v 0a steer 0 maneuver 0 manoeuver 0 manoeuvre 0 direct 3 point 5 head 1 guide 1 channelize 3 channelise 3 028 @ 02441022 v 0000 + 01142519 n 0a02 + 10741821 n 0802 + 10151570 n 0801 + 08572467 n 0702 + 08482271 n 0701 + 07372779 n 0702 + 08680888 n 0702 + 00556313 n 0402 + 01523249 a 0201 + 10290422 n 0201 + 10169796 n 0103 + 00815173 n 0102 + 00815173 n 0101 + 01144876 n 0102 ~ 01305731 v 0000 ~ 01841471 v 0000 ~ 01841591 v 0000 ~ 01932482 v 0000 ~ 01932586 v 0000 ~ 01932704 v 0000 ~ 01932834 v 0000 ~ 01932951 v 0000 ~ 01933093 v 0000 ~ 01933305 v 0000 ~ 01933900 v 0000 ~ 01934205 v 0000 ~ 01934427 v 0000 03 + 02 00 + 08 00 + 21 00 | direct the course; determine the direction of travelling -01932482 38 v 01 helm 0 001 @ 01931768 v 0000 01 + 02 00 | be at or take the helm of; "helm the ship" -01932586 38 v 01 crab 2 002 @ 01931768 v 0000 ;c 00300441 n 0000 01 + 08 00 | direct (an aircraft) into a crosswind -01932704 38 v 01 navigate 3 001 @ 01931768 v 0000 01 + 22 00 | direct carefully and safely; "He navigated his way to the altar" -01932834 38 v 01 stand_out 0 002 @ 01931768 v 0000 ;c 00314469 n 0000 01 + 01 00 | steer away from shore, of ships -01932951 38 v 01 starboard 0 003 @ 01931768 v 0000 ;c 00314469 n 0000 + 04303672 n 0101 01 + 08 00 | turn to the right, of helms or rudders -01933093 38 v 01 conn 0 001 @ 01931768 v 0000 01 + 08 00 | conduct or direct the steering of a ship or plane -01933204 38 v 01 beacon 0 002 @ 01999798 v 0000 + 02814860 n 0101 01 + 09 00 | guide with a beacon -01933305 38 v 02 navigate 0 pilot 1 010 @ 01931768 v 0000 + 10433452 n 0201 + 00609506 n 0202 + 00815801 n 0202 + 00609506 n 0201 + 00815801 n 0203 + 00815801 n 0101 + 10546428 n 0102 + 10348365 n 0101 ~ 01933766 v 0000 02 + 02 00 + 08 00 | act as the navigator in a car, plane, or vessel and plan, direct, plot the path and position of the conveyance; "Is anyone volunteering to navigate during the trip?"; "Who was navigating the ship during the accident?" -01933766 38 v 01 astrogate 1 003 @ 01933305 v 0000 ;c 06096913 n 0000 + 09817694 n 0101 01 + 09 00 | guide in interplanetary travel -01933900 38 v 03 channel 0 canalize 0 canalise 0 009 @ 01931768 v 0000 + 01142519 n 0304 + 02947212 n 0301 + 01142519 n 0203 + 05250659 n 0203 + 02947212 n 0201 + 01142519 n 0101 + 01142519 n 0102 + 06260121 n 0101 02 + 08 00 + 21 00 | direct the flow of; "channel information towards a broad audience" -01934205 38 v 02 corner 1 tree 0 005 @ 01931768 v 0000 + 14408951 n 0101 + 13872421 n 0104 + 08659993 n 0101 + 03109881 n 0101 02 + 08 00 + 09 00 | force a person or an animal into a position from which he cannot escape -01934427 38 v 01 park 0 008 @ 01931768 v 0000 ;c 00298497 n 0000 + 08615638 n 0103 + 03890881 n 0101 + 00168505 n 0101 ~ 01934731 v 0000 ~ 01934842 v 0000 ~ 01934976 v 0000 02 + 02 00 + 08 00 | maneuver a vehicle into a parking space; "Park the car in front of the library"; "Can you park right here?" -01934731 38 v 01 angle-park 0 002 @ 01934427 v 0000 ;c 00298497 n 0000 02 + 02 00 + 08 00 | park at an angle -01934842 38 v 01 parallel-park 0 002 @ 01934427 v 0000 ;c 00298497 n 0000 02 + 02 00 + 08 00 | park directly behind another vehicle -01934976 38 v 01 double-park 0 002 @ 01934427 v 0000 ;c 00298497 n 0000 02 + 02 00 + 08 00 | park a vehicle alongside another -01935104 38 v 01 steer 1 002 * 01835496 v 0000 @ 02441022 v 0000 01 + 22 00 | direct (oneself) somewhere; "Steer clear of him" -01935233 38 v 01 head 0 006 @ 01995549 v 0000 + 08572467 n 0102 + 08482271 n 0101 + 07372779 n 0102 + 08680888 n 0102 ~ 02075857 v 0000 02 + 04 00 + 22 00 | to go or travel towards; "where is she heading"; "We were headed for the mountains" -01935476 38 v 05 bicycle 0 cycle 1 bike 0 pedal 0 wheel 6 015 @ 01955984 v 0000 + 04574999 n 0501 + 09986189 n 0504 + 03903424 n 0401 + 10411163 n 0402 + 10411163 n 0401 + 03790512 n 0302 + 02834778 n 0302 + 09986189 n 0201 + 00451370 n 0201 + 09986189 n 0102 + 09986189 n 0103 + 02834778 n 0101 ~ 01935846 v 0000 ~ 01935953 v 0000 02 + 02 00 + 22 00 | ride a bicycle -01935846 38 v 01 unicycle 0 002 @ 01935476 v 0000 + 04509417 n 0101 02 + 02 00 + 22 00 | ride a unicycle -01935953 38 v 01 backpedal 0 001 @ 01935476 v 0000 01 + 02 00 | pedal backwards on a bicycle -01936048 38 v 03 motorbike 0 motorcycle 0 cycle 0 005 @ 01955984 v 0000 * 01370561 v 0000 + 00451370 n 0301 + 00451635 n 0201 + 03790512 n 0201 02 + 02 00 + 22 00 | ride a motorcycle -01936233 38 v 01 kick 0 002 @ 01936361 v 0000 + 00336805 n 0101 02 + 02 00 + 22 00 | thrash about or strike out with the feet -01936361 38 v 01 strike_out 0 002 @ 01831531 v 0000 ~ 01936233 v 0000 02 + 02 00 + 22 00 | make a motion as with one's fist or foot towards an object or away from one's body -01936537 38 v 02 train 0 rail 0 004 @ 01955984 v 0000 + 04463679 n 0202 + 04046810 n 0201 + 04468005 n 0101 02 + 02 00 + 22 00 | travel by rail or train; "They railed from Rome to Venice"; "She trained to Hamburg" -01936753 38 v 01 skate 0 010 @ 01887576 v 0000 ;c 00523513 n 0000 + 04225729 n 0101 + 10604491 n 0101 + 00448466 n 0101 ~ 01937222 v 0000 ~ 01937394 v 0000 ~ 01937534 v 0000 ~ 01937795 v 0000 ~ 01937992 v 0000 03 + 02 00 + 08 00 + 22 00 | move along on skates; "The Dutch often skate along the canals in winter" -01937067 38 v 01 spread-eagle 0 002 @ 01937394 v 0000 ;c 00523513 n 0000 01 + 02 00 | execute a spread eagle on skates, with arms and legs stretched out -01937222 38 v 01 ice_skate 0 005 @ 01936753 v 0000 ;c 00523513 n 0000 + 03558404 n 0101 + 10196490 n 0101 + 00448640 n 0101 02 + 02 00 + 22 00 | move along on ice skates -01937394 38 v 01 figure_skate 0 004 * 01708676 v 0000 @ 01936753 v 0000 ;c 00523513 n 0000 ~ 01937067 v 0000 01 + 02 00 | dance on skates -01937534 38 v 01 roller_skate 0 004 @ 01936753 v 0000 ;c 00523513 n 0000 + 10537107 n 0101 + 04102618 n 0101 01 + 02 00 | travel on shoes with steel or rubber rollers attached to their soles; "In some fashionable restaurants, the waiters roller skate around" -01937795 38 v 01 skateboard 0 005 @ 01936753 v 0000 ;c 00523513 n 0000 + 10604380 n 0101 + 00449054 n 0101 + 04225987 n 0101 01 + 02 00 | ride on a flat board with rollers attached to the bottom -01937992 38 v 01 Rollerblade 0 003 @ 01936753 v 0000 ;c 00523513 n 0000 + 04102162 n 0101 01 + 02 00 | travel on shoes with a single line of rubber wheels attached to their soles; "you'd better wear a helmet and knee protectors when you Rollerblade!"; "The muscular actor loves to Rollerblade" -01938288 38 v 01 speed_skate 0 004 * 01936753 v 0000 @ 01086103 v 0000 ;c 00523513 n 0000 + 04273972 n 0101 01 + 02 00 | race on skates -01938426 38 v 01 ski 0 010 @ 01835496 v 0000 ;c 00523513 n 0000 + 10605253 n 0101 + 00440747 n 0101 + 04228054 n 0101 ~ 01938739 v 0000 ~ 01938837 v 0000 ~ 01938942 v 0000 ~ 01939037 v 0000 ~ 01940248 v 0000 03 + 02 00 + 08 00 + 22 00 | move along on skis; "We love to ski the Rockies"; "My children don't ski" -01938739 38 v 01 wedel 0 001 @ 01938426 v 0000 02 + 02 00 + 22 00 | ski, alternating directions -01938837 38 v 01 hot-dog 0 001 @ 01938426 v 0000 01 + 02 00 | perform intricate maneuvers while skiing -01938942 38 v 01 schuss 0 002 @ 01938426 v 0000 ;c 00523513 n 0000 01 + 02 00 | ski downhill -01939037 38 v 01 slalom 0 003 * 01991744 v 0000 @ 01938426 v 0000 + 07463950 n 0101 02 + 02 00 + 22 00 | race on skis around obstacles -01939174 38 v 02 sled 0 sleigh 0 009 @ 01955984 v 0000 ;c 00523513 n 0000 + 04235291 n 0203 + 10610333 n 0101 + 00447073 n 0101 + 04235291 n 0101 ~ 01939406 v 0000 ~ 01939811 v 0000 ~ 01940034 v 0000 01 + 02 00 | ride (on) a sled -01939406 38 v 02 dogsled 0 mush 0 004 @ 01939174 v 0000 + 10339717 n 0201 + 03218198 n 0101 $ 01939678 v 0000 01 + 02 00 | travel with a dogsled -01939553 38 v 01 drive a 002 @ 01871979 v 0000 ~ 01939678 v 0000 01 + 08 00 | urge forward; "drive the cows into the barn" -01939678 38 v 01 mush 1 003 $ 01939406 v 0000 @ 01939553 v 0000 + 10339717 n 0101 01 + 08 00 | drive (a team of dogs or a dogsled) -01939811 38 v 02 bobsled 0 bob 1 005 @ 01939174 v 0000 ;c 00523513 n 0000 + 02860847 n 0203 + 02861022 n 0101 + 02860847 n 0101 02 + 02 00 + 22 00 | ride a bobsled; "The boys bobbed down the hill screaming with pleasure" -01940034 38 v 02 toboggan 0 luge 0 007 @ 01939174 v 0000 ;c 00523513 n 0000 + 00447361 n 0201 + 03695753 n 0201 + 10714195 n 0101 + 00447221 n 0101 + 04443433 n 0101 01 + 02 00 | move along on a luge or toboggan -01940248 38 v 01 water_ski 0 005 * 01942718 v 0000 @ 01938426 v 0000 ;c 00523513 n 0000 + 04562262 n 0101 + 00445226 n 0101 01 + 02 00 | ride water skis -01940403 38 v 02 fly 0 wing 0 014 $ 01847845 v 0000 @ 01835496 v 0000 + 04592741 n 0201 + 02151625 n 0201 + 02190166 n 0101 + 10096217 n 0102 + 10096217 n 0101 + 00302394 n 0102 ~ 01924267 v 0000 ~ 01940782 v 0000 ~ 01940868 v 0000 ~ 01941006 v 0000 ~ 01943338 v 0000 ~ 01943448 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | travel through the air; be airborne; "Man cannot fly" -01940782 38 v 01 rack 3 001 @ 01940403 v 0000 02 + 01 00 + 02 00 | fly in high wind -01940868 38 v 01 flight 0 003 @ 01940403 v 0000 + 08220620 n 0101 + 00302394 n 0101 01 + 01 00 | fly in a flock; "flighting wild geese" -01941006 38 v 01 fly_on 0 001 @ 01940403 v 0000 02 + 01 00 + 02 00 | continue flying -01941093 38 v 03 fly 1 aviate 0 pilot 0 028 $ 01840238 v 0000 $ 01847845 v 0000 $ 01451842 v 0000 * 01940403 v 0000 @ 01224744 v 0000 ;c 00300441 n 0000 ;c 02686568 n 0000 + 10433164 n 0301 + 00609506 n 0302 + 00815801 n 0302 + 00609506 n 0301 + 00815801 n 0303 + 08067218 n 0201 + 05635188 n 0201 + 09826204 n 0201 + 09826204 n 0105 + 09826204 n 0104 + 00302394 n 0102 ~ 01941704 v 0000 ~ 01941838 v 0000 ~ 01941987 v 0000 ~ 01942137 v 0000 ~ 01942234 v 0000 ~ 01942347 v 0000 ~ 01943153 v 0000 ~ 01948659 v 0000 ~ 01955703 v 0000 ~ 01955808 v 0000 01 + 08 00 | operate an airplane; "The pilot flew to Cuba" -01941704 38 v 01 fly_blind 0 002 @ 01941093 v 0000 ;c 00300441 n 0000 01 + 02 00 | fly an airplane solely by relying on instruments -01941838 38 v 01 fly_contact 0 002 @ 01941093 v 0000 ;c 00300441 n 0000 01 + 02 00 | fly a plane by using visible landmarks or points of reference -01941987 38 v 01 solo 0 003 @ 01941093 v 0000 ;c 00300441 n 0000 + 00304729 n 0101 02 + 02 00 + 22 00 | fly alone, without a co-pilot or passengers -01942137 38 v 01 test_fly 0 002 @ 01941093 v 0000 ;c 00300441 n 0000 01 + 08 00 | test a plane -01942234 38 v 01 jet 0 003 @ 01941093 v 0000 ;c 00300441 n 0000 + 03595860 n 0101 01 + 01 00 | fly a jet plane -01942347 38 v 01 glide 1 007 @ 01941093 v 0000 ;c 00300441 n 0000 + 00303495 n 0101 + 03439814 n 0101 + 00303495 n 0102 ~ 01942560 v 0000 ~ 01942959 v 0000 02 + 01 00 + 02 00 | fly in or as if in a glider plane -01942560 38 v 01 kite 1 002 @ 01942347 v 0000 ;c 00300441 n 0000 01 + 02 00 | soar or fly like a kite; "The pilot kited for a long time over the mountains" -01942718 38 v 02 plane 0 skim 0 003 @ 01887576 v 0000 ~ 01942854 v 0000 ~ 01956512 v 0000 01 + 04 00 | travel on the surface of water -01942854 38 v 01 aquaplane 0 002 @ 01942718 v 0000 + 02731900 n 0101 01 + 01 00 | ride on an aquaplane -01942959 38 v 02 sailplane 0 soar 2 006 * 01941093 v 0000 @ 01942347 v 0000 ;c 00300441 n 0000 + 00303495 n 0204 + 00303495 n 0103 + 03439814 n 0102 01 + 02 00 | fly a plane without an engine -01943153 38 v 02 hydroplane 0 seaplane 0 005 * 01887576 v 0000 @ 01941093 v 0000 + 04160586 n 0201 + 03552749 n 0102 + 04160586 n 0102 01 + 02 00 | glide on the water in a hydroplane -01943338 38 v 01 soar 0 002 @ 01940403 v 0000 + 00326291 n 0101 01 + 04 00 | fly upwards or high in the sky -01943448 38 v 01 hover 0 002 @ 01940403 v 0000 ~ 01943571 v 0000 01 + 04 00 | hang in the air; fly or be suspended above -01943571 38 v 01 poise 0 001 @ 01943448 v 0000 01 + 04 00 | be motionless, in suspension; "The bird poised for a few moments before it attacked" -01943718 38 v 05 soar 1 soar_up 0 soar_upwards 0 surge 0 zoom 3 005 @ 01968569 v 0000 + 07375525 n 0503 + 00326291 n 0502 + 00364787 n 0401 ~ 02041422 v 0000 02 + 01 00 + 02 00 | rise rapidly; "the dollar soared against the yen" -01943949 38 v 01 go_up 2 001 @ 01968569 v 0000 01 + 01 00 | be erected, built, or constructed; "New buildings are going up everywhere" -01944086 38 v 02 rocket 0 skyrocket 0 003 @ 01968569 v 0000 + 04232902 n 0201 + 07263053 n 0202 01 + 01 00 | shoot up abruptly, like a rocket; "prices skyrocketed" -01944252 38 v 02 levitate 0 hover 1 003 * 01968569 v 0000 + 11408733 n 0101 $ 01944466 v 0000 02 + 02 00 + 08 00 | be suspended in the air, as if in defiance of gravity; "The guru claimed that he could levitate" -01944466 38 v 01 levitate 1 003 $ 01944252 v 0000 @ 01974062 v 0000 + 11408733 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to rise in the air and float, as if in defiance of gravity; "The magician levitated the woman" -01944692 38 v 01 boat 0 012 @ 01955984 v 0000 ;c 00815801 n 0000 + 02858304 n 0101 + 09861946 n 0102 + 00315390 n 0101 ~ 01945277 v 0000 ~ 01945381 v 0000 ~ 01945516 v 0000 ~ 01946996 v 0000 ~ 01947543 v 0000 ~ 01947735 v 0000 ~ 01947887 v 0000 01 + 02 00 | ride in a boat on water -01944976 38 v 02 steamer 0 steam 2 004 @ 01835496 v 0000 ;c 00815801 n 0000 + 04309348 n 0201 + 04309348 n 0101 02 + 01 00 + 04 00 | travel by means of steam power; "The ship steamed off into the Pacific" -01945183 38 v 01 tram 0 002 @ 01835496 v 0000 + 04335435 n 0102 01 + 02 00 | travel by tram -01945277 38 v 01 motorboat 0 002 @ 01944692 v 0000 + 03790230 n 0101 01 + 02 00 | ride in a motorboat -01945381 38 v 01 yacht 0 004 @ 01944692 v 0000 ;c 00815801 n 0000 + 04610013 n 0101 + 00315390 n 0102 01 + 02 00 | travel in a yacht -01945516 38 v 01 sail 0 014 @ 01944692 v 0000 ;c 00815801 n 0000 + 00312932 n 0102 + 04127904 n 0101 + 00313806 n 0101 ~ 01927903 v 0000 ~ 01928154 v 0000 ~ 01928283 v 0000 ~ 01945938 v 0000 ~ 01946138 v 0000 ~ 01946279 v 0000 ~ 01946408 v 0000 ~ 01946660 v 0000 ~ 01946817 v 0000 04 + 01 00 + 02 00 + 08 00 + 22 00 | travel on water propelled by wind; "I love sailing, especially on the open sea"; "the ship sails on" -01945938 38 v 01 beat 1 003 @ 01945516 v 0000 ;c 00815801 n 0000 + 00314094 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | sail with much tacking or with difficulty; "The boat beat in the strong wind" -01946138 38 v 02 scud 1 rack 2 004 @ 01945516 v 0000 ;c 00815801 n 0000 + 00330836 n 0101 + 00330836 n 0102 01 + 02 00 | run before a gale -01946279 38 v 01 outpoint 0 002 @ 01945516 v 0000 ;c 00815801 n 0000 03 + 08 00 + 09 00 + 11 00 | sail closer to the wind than -01946408 38 v 02 tack 0 wear_round 0 006 @ 01945516 v 0000 ;c 02858304 n 0000 ;c 00815801 n 0000 + 04188368 n 0102 + 08681084 n 0101 + 00351334 n 0102 02 + 02 00 + 08 00 | turn into the wind; "The sailors decided to tack the boat"; "The boat tacked" -01946660 38 v 01 wear_ship 0 002 @ 01945516 v 0000 ;c 00815801 n 0000 01 + 02 00 | turn away from the wind; "The sailors decided it was time to wear ship" -01946817 38 v 04 jibe 0 gybe 0 jib 0 change_course 0 002 @ 01945516 v 0000 + 03598151 n 0301 01 + 02 00 | shift from one side of the ship to the other; "The sail jibbed wildly" -01946996 38 v 01 row 0 008 @ 01944692 v 0000 + 00445351 n 0102 + 10368920 n 0102 + 00445351 n 0101 ~ 01124722 v 0000 ~ 01124828 v 0000 ~ 01947247 v 0000 ~ 01947352 v 0000 03 + 02 00 + 08 00 + 22 00 | propel with oars; "row the boat across the lake" -01947247 38 v 01 pull 2 001 @ 01946996 v 0000 01 + 08 00 | operate when rowing a boat; "pull the oars" -01947352 38 v 01 scull 0 006 @ 01946996 v 0000 ;c 02858304 n 0000 ;c 00523513 n 0000 + 04156814 n 0101 + 10565764 n 0101 + 00445685 n 0101 01 + 08 00 | propel with sculls; "scull the boat" -01947543 38 v 01 canoe 0 005 * 01947887 v 0000 @ 01944692 v 0000 ;c 00523513 n 0000 + 09891470 n 0101 + 02951358 n 0101 03 + 02 00 + 08 00 + 22 00 | travel by canoe; "canoe along the canal" -01947735 38 v 01 kayak 0 003 @ 01944692 v 0000 ;c 00523513 n 0000 + 03609235 n 0101 01 + 02 00 | travel in a small canoe; "we kayaked down the river" -01947887 38 v 01 paddle 0 005 @ 01944692 v 0000 ;c 00523513 n 0000 + 03873416 n 0101 + 09891470 n 0102 ~ 01124964 v 0000 02 + 02 00 + 08 00 | propel with a paddle; "paddle your own canoe" -01948077 38 v 02 surfboard 0 surf 0 007 @ 01887576 v 0000 ;c 00523513 n 0000 + 07344233 n 0201 + 10679054 n 0201 + 00445055 n 0201 + 04363559 n 0101 ~ 01948450 v 0000 02 + 02 00 + 22 00 | ride the waves of the sea with a surfboard; "Californians love to surf" -01948339 38 v 01 body-surf 0 001 @ 01887576 v 0000 01 + 02 00 | ride the crest of a wave without a surfboard -01948450 38 v 01 windsurf 0 002 @ 01948077 v 0000 ;c 00523513 n 0000 02 + 02 00 + 22 00 | ride standing on a surfboard with an attached sail, on water; "You cannot windsurf when the air is completely still" -01948659 38 v 01 balloon 0 003 @ 01941093 v 0000 + 09835348 n 0101 + 02782093 n 0101 02 + 01 00 + 02 00 | ride in a hot-air balloon; "He tried to balloon around the earth but storms forced him to land in China" -01948872 38 v 01 taxi 1 001 @ 01835496 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | travel slowly; "The plane taxied down the runway" -01949007 38 v 02 taxi 0 cab 3 002 @ 01955984 v 0000 + 02930766 n 0103 01 + 02 00 | ride in a taxicab -01949110 38 v 01 bus 0 002 @ 01955984 v 0000 + 02924116 n 0101 03 + 02 00 + 09 00 + 21 00 | ride in a bus -01949218 38 v 01 ferry 0 003 @ 01835496 v 0000 ;c 00815801 n 0000 + 03329663 n 0101 01 + 22 00 | travel by ferry -01949333 38 v 01 caravan 0 002 @ 01835496 v 0000 + 08427629 n 0101 01 + 02 00 | travel in a caravan -01949435 38 v 01 ferry 1 004 @ 01953810 v 0000 ;c 00815801 n 0000 + 03329663 n 0101 + 01106587 n 0102 02 + 20 00 + 21 00 | transport by ferry -01949579 38 v 01 wheelbarrow 0 001 @ 01953810 v 0000 01 + 08 00 | transport in a wheelbarrow -01949674 38 v 01 ferry 2 003 @ 02077656 v 0000 ;c 00815801 n 0000 + 01106587 n 0101 02 + 20 00 + 21 00 | transport from one place to another -01949817 38 v 01 chariot 1 004 @ 01449974 v 0000 + 03009269 n 0101 + 03009111 n 0101 + 09910222 n 0101 02 + 08 00 + 09 00 | transport in a chariot -01949966 38 v 01 raft 1 004 @ 01953810 v 0000 ;c 00815801 n 0000 + 04045397 n 0101 $ 01842508 v 0000 01 + 21 00 | transport on a raft; "raft wood down a river" -01950128 38 v 01 bus 1 002 @ 01953810 v 0000 + 02924116 n 0101 04 + 08 00 + 09 00 + 20 00 + 21 00 | send or move around by bus; "The children were bussed to school" -01950295 38 v 01 pipe 0 005 @ 01953810 v 0000 + 03944672 n 0101 + 13323102 n 0101 + 03944672 n 0102 + 03944672 n 0103 02 + 15 00 + 21 00 | transport by pipeline; "pipe oil, water, and gas into the desert" -01950502 38 v 01 barge 1 004 @ 01950798 v 0000 ;c 00815801 n 0000 + 10261388 n 0103 + 02792552 n 0101 01 + 08 00 | transport by barge on a body of water -01950657 38 v 01 railroad 0 004 @ 01950798 v 0000 + 04048075 n 0102 + 04048568 n 0102 + 00951037 n 0102 01 + 08 00 | transport by railroad -01950798 38 v 03 transport 1 send 0 ship 0 014 @ 01850315 v 0000 + 02964389 n 0307 + 00061290 n 0303 + 10590339 n 0301 + 08481715 n 0301 + 01105259 n 0302 ^ 01955508 v 0202 ^ 01955127 v 0203 + 01105259 n 0103 + 01105259 n 0101 ~ 01950502 v 0000 ~ 01950657 v 0000 ~ 01955127 v 0000 ~ 01955508 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | transport commercially -01951159 38 v 03 air-ship 0 airfreight 0 air-freight 0 001 @ 01951276 v 0000 01 + 08 00 | transport (cargo) by air -01951276 38 v 01 freight 0 007 @ 01953810 v 0000 + 13326198 n 0101 + 01106272 n 0101 + 02878222 n 0102 + 13326198 n 0102 + 01106272 n 0102 ~ 01951159 v 0000 01 + 08 00 | transport commercially as cargo -01951480 38 v 02 send 1 direct 1 012 @ 01850315 v 0000 + 00121166 n 0101 ^ 02402825 v 0107 ^ 02465939 v 0103 ~ 01632897 v 0000 ~ 01951937 v 0000 ~ 01952208 v 0000 ~ 01952363 v 0000 ~ 01952750 v 0000 ~ 01952898 v 0000 ~ 01953334 v 0000 ~ 02101046 v 0000 05 + 08 00 + 09 00 + 11 00 + 20 00 + 21 00 | cause to go somewhere; "The explosion sent the car flying in the air"; "She sent her children to camp"; "He directed all his energies into his dissertation" -01951937 38 v 01 turn e 002 @ 01951480 v 0000 ~ 02591171 v 0000 01 + 22 00 | channel one's attention, interest, thought, or attention toward or away from something; "The pedophile turned to boys for satisfaction"; "people turn to mysticism at the turn of a millennium" -01952208 38 v 01 turn 6 001 @ 01951480 v 0000 02 + 08 00 + 09 00 | to send or let go; "They turned away the crowd at the gate of the governor's mansion" -01952363 38 v 01 divert 1 003 @ 01951480 v 0000 ~ 01952564 v 0000 ~ 02065085 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | send on a course or in a direction different from the planned or intended one -01952564 38 v 01 route 1 002 @ 01952363 v 0000 + 08616311 n 0102 04 + 08 00 + 09 00 + 20 00 + 21 00 | divert in a specified direction; "divert the low voltage to the engine cylinders" -01952750 38 v 01 route 0 003 @ 01951480 v 0000 + 04096066 n 0102 + 08616311 n 0102 04 + 08 00 + 09 00 + 20 00 + 21 00 | send via a specific route -01952898 38 v 01 refer 0 007 @ 01951480 v 0000 + 10526927 n 0102 + 10514429 n 0101 + 01264050 n 0101 + 00121904 n 0101 ~ 00878636 v 0000 ~ 01953191 v 0000 01 + 15 00 | send or direct for treatment, information, or a decision; "refer a patient to a specialist"; "refer a bill to a committee" -01953191 38 v 01 recommit 0 001 @ 01952898 v 0000 01 + 15 00 | send back to a committee; "The bill was recommitted three times in the House" -01953334 38 v 02 redirect 0 airt 0 002 @ 01951480 v 0000 ~ 01953527 v 0000 02 + 08 00 + 09 00 | channel into a new direction; "redirect your attention to the danger from the fundamentalists" -01953527 38 v 01 sublimate 0 003 @ 01953334 v 0000 + 07297927 n 0101 ~ 01953675 v 0000 01 + 08 00 | direct energy or urges into useful activities -01953675 38 v 02 desexualize 0 desexualise 0 001 @ 01953527 v 0000 01 + 08 00 | direct one's libidinous urges into another direction -01953810 38 v 01 transport 0 022 @ 01850315 v 0000 + 03100490 n 0102 + 04473432 n 0102 + 04474035 n 0101 + 04473884 n 0101 ~ 01854001 v 0000 ~ 01874568 v 0000 ~ 01949435 v 0000 ~ 01949579 v 0000 ~ 01949966 v 0000 ~ 01950128 v 0000 ~ 01950295 v 0000 ~ 01951276 v 0000 ~ 01954341 v 0000 ~ 01954559 v 0000 ~ 01954741 v 0000 ~ 01954852 v 0000 ~ 01957107 v 0000 ~ 02046441 v 0000 ~ 02079330 v 0000 ~ 02102655 v 0000 ~ 02104690 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | move something or somebody around; usually over long distances -01954341 38 v 01 truck 0 005 @ 01953810 v 0000 + 04490091 n 0101 + 10695192 n 0102 + 01105909 n 0102 + 01105909 n 0103 02 + 20 00 + 21 00 | convey (goods etc.) by truck; "truck fresh vegetables across the mountains" -01954559 38 v 01 rail 4 003 @ 01953810 v 0000 + 04463679 n 0102 + 04046810 n 0101 02 + 20 00 + 21 00 | convey (goods etc.) by rails; "fresh fruit are railed from Italy to Belgium" -01954741 38 v 01 sledge 1 002 @ 01953810 v 0000 + 04235291 n 0102 02 + 08 00 + 09 00 | transport in a sleigh -01954852 38 v 01 lighter 0 004 @ 01953810 v 0000 + 02792552 n 0104 + 13322520 n 0101 + 00651954 n 0101 02 + 08 00 + 20 00 | transport in a flatbottom boat -01955009 38 v 01 bundle_off 0 002 > 02009433 v 0000 @ 01955127 v 0000 02 + 09 00 + 20 00 | send off unceremoniously -01955127 38 v 03 dispatch 0 despatch 0 send_off 0 006 @ 01950798 v 0000 + 00061290 n 0202 + 06682794 n 0101 + 10017422 n 0101 ~ 01955009 v 0000 ~ 01955364 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | send away towards a designated goal -01955364 38 v 01 route 2 002 @ 01955127 v 0000 + 04096066 n 0102 02 + 08 00 + 15 00 | send documents or materials to appropriate destinations -01955508 38 v 02 forward 0 send_on 0 002 @ 01950798 v 0000 + 00121645 n 0101 03 + 08 00 + 14 00 + 15 00 | send or ship onward from an intermediate post or station in transit; "forward my mail" -01955703 38 v 02 hedgehop 0 flat-hat 0 001 @ 01941093 v 0000 01 + 02 00 | fly very close to the ground -01955808 38 v 02 hang_glide 0 soar 3 005 * 01942347 v 0000 @ 01941093 v 0000 + 00326291 n 0201 + 00303495 n 0204 + 00303748 n 0101 01 + 02 00 | fly by means of a hang glider -01955984 38 v 01 ride 0 020 $ 02742232 v 0000 $ 01847676 v 0000 @ 01841079 v 0000 + 00307631 n 0102 + 10403876 n 0102 ! 01904930 v 0101 ~ 01840929 v 0000 ~ 01906687 v 0000 ~ 01935476 v 0000 ~ 01936048 v 0000 ~ 01936537 v 0000 ~ 01939174 v 0000 ~ 01944692 v 0000 ~ 01949007 v 0000 ~ 01949110 v 0000 ~ 01956708 v 0000 ~ 01956955 v 0000 ~ 01957273 v 0000 ~ 01957403 v 0000 $ 02102398 v 0000 03 + 02 00 + 08 00 + 22 00 | be carried or travel on or in a vehicle; "I ride to work in a bus"; "He rides the subway downtown every day" -01956512 38 v 01 aquaplane 1 001 @ 01942718 v 0000 01 + 01 00 | rise up onto a thin film of water between the tires and road so that there is no more contact with the road; "the car aquaplaned" -01956708 38 v 03 joyride 0 tool 0 tool_around 0 004 @ 01955984 v 0000 ;c 00298497 n 0000 + 00309368 n 0101 $ 02100341 v 0000 02 + 02 00 + 22 00 | ride in a car with no particular goal and just for the pleasure of it; "We tooled down the street" -01956955 38 v 03 hitchhike 0 hitch 0 thumb 0 002 @ 01955984 v 0000 + 10178077 n 0101 02 + 02 00 + 22 00 | travel by getting free rides from motorists -01957107 38 v 01 pick_up 0 002 @ 01953810 v 0000 + 00319176 n 0101 01 + 09 00 | give a passenger or a hitchhiker a lift; "We picked up a hitchhiker on the highway" -01957273 38 v 01 snowmobile 0 003 @ 01955984 v 0000 ;c 00298497 n 0000 + 04252077 n 0101 02 + 02 00 + 22 00 | ride a snowmobile -01957403 38 v 01 piggyback 0 001 @ 01955984 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | ride on someone's shoulders or back -01957529 38 v 02 ride 1 sit 3 013 @ 01835496 v 0000 ;c 00299217 n 0000 + 00307631 n 0102 + 10529965 n 0101 + 00299217 n 0101 ~ 01957995 v 0000 ~ 01958103 v 0000 ~ 01958278 v 0000 ~ 01958615 v 0000 ~ 01959022 v 0000 ~ 01959482 v 0000 ~ 01960296 v 0000 $ 02102398 v 0000 02 + 02 00 + 08 00 | sit and travel on the back of animal, usually while controlling its motions; "She never sat a horse!"; "Did you ever ride a camel?"; "The girl liked to drive the young mare" -01957995 38 v 01 override 3 002 @ 01957529 v 0000 ;c 00299217 n 0000 01 + 08 00 | ride (a horse) too hard -01958103 38 v 01 ride_herd 0 001 @ 01957529 v 0000 01 + 02 00 | driving animals such as horses and cattle while riding along with them; "Joe was riding herd during the day" -01958278 38 v 01 outride 0 002 @ 01957529 v 0000 ;c 00299217 n 0000 01 + 09 00 | ride better, faster, or further than; "The champion bicyclist outrode all his competitors" -01958452 38 v 05 unhorse 0 dismount 0 light 1 get_off 0 get_down 1 003 @ 01970826 v 0000 ;c 00299217 n 0000 + 01252800 n 0201 01 + 02 00 | alight from (a horse) -01958615 38 v 01 ride_horseback 0 010 @ 01957529 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 + 00450335 n 0102 + 00299217 n 0102 ~ 01958868 v 0000 ~ 01959340 v 0000 ~ 01959927 v 0000 ~ 01960105 v 0000 ~ 01960779 v 0000 01 + 02 00 | ride on horseback -01958868 38 v 01 prance 1 003 @ 01958615 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 01 + 02 00 | ride a horse such that it springs and bounds forward -01959022 38 v 01 prance 2 004 $ 01959181 v 0000 @ 01957529 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 01 + 08 00 | cause (a horse) to bound spring forward -01959181 38 v 01 prance 3 002 @ 01835496 v 0000 $ 01959022 v 0000 01 + 01 00 | spring forward on the hind legs; "The young horse was prancing in the meadow" -01959340 38 v 01 canter 0 003 @ 01958615 v 0000 ;c 00299217 n 0000 + 00288486 n 0101 01 + 02 00 | ride at a canter; "The men cantered away" -01959482 38 v 01 canter 3 004 @ 01957529 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 + 00288486 n 0101 01 + 02 00 | ride at a cantering pace; "He cantered the horse across the meadow" -01959669 38 v 01 canter 1 002 @ 02091165 v 0000 + 00288486 n 0101 01 + 01 00 | go at a canter, of horses -01959776 38 v 01 walk 2 003 @ 02091165 v 0000 + 00287142 n 0101 $ 01904930 v 0000 01 + 01 00 | walk at a pace; "The horses walked across the meadow" -01959927 38 v 01 gallop 0 004 @ 01958615 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 + 00288671 n 0101 01 + 02 00 | ride at a galloping pace; "He was galloping down the road" -01960105 38 v 01 post 4 003 @ 01958615 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 01 + 02 00 | ride Western style and bob up and down in the saddle in rhythm with a horse's trotting gait -01960296 38 v 02 gallop 3 extend e 004 @ 01957529 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 + 00288671 n 0101 01 + 08 00 | cause to move at full gallop; "Did you gallop the horse just now?" -01960491 38 v 02 single-foot 0 rack 0 003 @ 02091165 v 0000 + 00287276 n 0201 + 00287276 n 0102 01 + 01 00 | go at a rack; "the horses single-footed" -01960643 38 v 01 gallop 1 002 @ 02091165 v 0000 + 00288671 n 0101 01 + 01 00 | go at galloping speed; "The horse was galloping along" -01960779 38 v 01 trot 1 004 @ 01958615 v 0000 ;c 00299217 n 0000 ;c 00450335 n 0000 + 00287561 n 0101 01 + 02 00 | ride at a trot -01960911 38 v 01 swim 0 014 @ 01835496 v 0000 + 00442115 n 0102 + 10683126 n 0101 + 10683349 n 0101 + 00442115 n 0101 ~ 01961334 v 0000 ~ 01961510 v 0000 ~ 01961691 v 0000 ~ 01961859 v 0000 ~ 01961974 v 0000 ~ 01962178 v 0000 ~ 01962375 v 0000 ~ 01962498 v 0000 ~ 01962671 v 0000 03 + 02 00 + 08 00 + 22 00 | travel through water; "We had to swim for 20 minutes to reach the shore"; "a big fish was swimming in the tank" -01961334 38 v 01 school 0 002 @ 01960911 v 0000 + 07995453 n 0101 01 + 01 00 | swim in or form a large group of fish; "A cluster of schooling fish was attracted to the bait" -01961510 38 v 02 fin 0 break_water 0 002 @ 01960911 v 0000 + 02466132 n 0101 01 + 01 00 | show the fins above the water while swimming; "The sharks were finning near the surface" -01961691 38 v 01 fin 1 004 @ 01960911 v 0000 ;c 00441824 n 0000 + 02466132 n 0101 + 03364156 n 0102 01 + 02 00 | propel oneself through the water in a finning motion -01961859 38 v 01 paddle 1 002 @ 01960911 v 0000 ;c 00441824 n 0000 01 + 01 00 | swim like a dog in shallow water -01961974 38 v 01 crawl 1 003 @ 01960911 v 0000 ;c 00441824 n 0000 + 00570366 n 0101 01 + 02 00 | swim by doing the crawl; "European children learn the breast stroke; they often don't know how to crawl" -01962178 38 v 01 breaststroke 0 003 @ 01960911 v 0000 ;c 00441824 n 0000 + 09873769 n 0101 01 + 02 00 | swim with the face down and extend the arms forward and outward while kicking with the leg -01962375 38 v 01 backstroke 0 003 @ 01960911 v 0000 ;c 00441824 n 0000 + 09831303 n 0101 01 + 02 00 | swim on one's back -01962498 38 v 01 skinny-dip 0 003 @ 01960911 v 0000 + 10605737 n 0101 + 00442654 n 0101 01 + 02 00 | bathe in the nude; "The young people were skinny-dipping in the pond" -01962671 38 v 01 dive 1 004 @ 01960911 v 0000 + 10019552 n 0101 ~ 01963130 v 0000 ~ 01963795 v 0000 02 + 01 00 + 02 00 | swim under water; "the children enjoyed diving and looking for shells" -01962865 38 v 01 dive 2 007 @ 01991472 v 0000 ;c 00441824 n 0000 + 00442981 n 0101 + 10019406 n 0101 + 00442981 n 0102 ~ 01963316 v 0000 ~ 01963459 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | plunge into water; "I was afraid to dive from the board into the pool" -01963130 38 v 01 skin-dive 0 004 @ 01962671 v 0000 ;c 00523513 n 0000 + 10607291 n 0101 + 00444651 n 0102 01 + 02 00 | swim underwater with no breathing apparatus other than a snorkel -01963316 38 v 01 belly-flop 0 002 @ 01962865 v 0000 ;c 00441824 n 0000 02 + 02 00 + 22 00 | dive so that one hits the water with one's belly -01963459 38 v 01 jackknife 0 003 @ 01962865 v 0000 ;c 00523513 n 0000 + 00444340 n 0101 02 + 02 00 + 22 00 | dive into the water bending the body at the waist at a right angle, like a jackknife -01963655 38 v 01 power-dive 0 002 @ 01967373 v 0000 ;c 00300441 n 0000 02 + 01 00 + 08 00 | make a power dive; "The airplane power-dived" -01963795 38 v 01 snorkel 0 004 @ 01962671 v 0000 ;c 00523513 n 0000 + 04251144 n 0101 + 00444937 n 0101 02 + 02 00 + 22 00 | dive with a snorkel -01963942 38 v 04 jump 0 leap 0 bound 1 spring 1 026 @ 01831531 v 0000 + 00120202 n 0403 + 09869171 n 0301 + 00120202 n 0305 + 05086740 n 0201 + 00120202 n 0201 + 09869171 n 0202 ^ 02674564 v 0201 + 00119568 n 0101 + 00119568 n 0102 ^ 01923414 v 0105 ~ 01869465 v 0000 ~ 01892104 v 0000 ~ 01964634 v 0000 ~ 01964788 v 0000 ~ 01964891 v 0000 ~ 01964998 v 0000 ~ 01965331 v 0000 ~ 01965464 v 0000 ~ 01965806 v 0000 ~ 01965911 v 0000 ~ 01966168 v 0000 ~ 01966352 v 0000 ~ 01966861 v 0000 ~ 01967104 v 0000 ~ 02094788 v 0000 03 + 01 00 + 02 00 + 22 00 | move forward by leaps and bounds; "The horse bounded across the meadow"; "The child leapt across the puddle"; "Can you jump over the fence?" -01964634 38 v 01 burst 0 001 @ 01963942 v 0000 01 + 22 00 | move suddenly, energetically, or violently; "He burst out of the house into the cool night" -01964788 38 v 01 bounce 1 001 @ 01963942 v 0000 01 + 22 00 | leap suddenly; "He bounced to his feet" -01964891 38 v 01 capriole 1 001 @ 01963942 v 0000 01 + 01 00 | perform a capriole, of horses in dressage -01964998 38 v 01 galumph 0 001 @ 01963942 v 0000 02 + 01 00 + 02 00 | move around heavily and clumsily; "the giant tortoises galumphed around in their pen" -01965156 38 v 02 jump 1 leap a 003 > 01963942 v 0000 + 05086740 n 0201 + 00120202 n 0201 01 + 08 00 | cause to jump or leap; "the trainer jumped the tiger through the hoop" -01965331 38 v 01 ski_jump 0 004 @ 01963942 v 0000 ;c 00523513 n 0000 + 00441073 n 0101 + 04229620 n 0101 01 + 02 00 | jump on skis -01965464 38 v 01 saltate 0 003 @ 01963942 v 0000 + 00428270 n 0104 + 00120202 n 0104 03 + 02 00 + 04 00 + 22 00 | leap or skip, often in dancing; "These fish swim with a saltating motion" -01965654 38 v 01 saltate 1 002 @ 01850315 v 0000 + 13552644 n 0101 02 + 08 00 + 11 00 | move by saltation; "The sand grains are saltated by the wind" -01965806 38 v 01 vault 0 002 @ 01963942 v 0000 + 10746931 n 0101 02 + 01 00 + 02 00 | bound vigorously -01965911 38 v 01 leapfrog 0 002 @ 01963942 v 0000 + 00485998 n 0101 01 + 02 00 | jump across; "He leapfrogged his classmates" -01966039 38 v 01 bolt 0 002 @ 01831531 v 0000 + 00555983 n 0102 01 + 04 00 | move or jump suddenly; "She bolted from her seat" -01966168 38 v 02 vault 1 overleap 0 005 @ 01963942 v 0000 + 00120515 n 0101 + 10746931 n 0101 + 00288190 n 0102 ~ 01967205 v 0000 01 + 08 00 | jump across or leap over (an obstacle) -01966352 38 v 01 curvet 0 002 @ 01963942 v 0000 + 00288190 n 0101 01 + 01 00 | perform a leap where both hind legs come off the ground, of a horse -01966501 38 v 04 leap_out 0 rush_out 0 sally_out 0 burst_forth 0 001 @ 00422090 v 0000 02 + 08 00 + 09 00 | jump out from a hiding place and surprise (someone); "The attackers leapt out from the bushes" -01966706 38 v 02 avalanche 0 roll_down 0 002 @ 01970826 v 0000 + 07405137 n 0101 01 + 01 00 | gather into a huge mass and roll down a mountain, of snow -01966861 38 v 03 hop 0 skip 0 hop-skip 0 009 @ 01963942 v 0000 + 00289906 n 0201 ^ 00616498 v 0204 + 07449548 n 0101 + 00120010 n 0101 + 10185327 n 0101 + 03535284 n 0101 + 00129089 n 0104 ^ 01923414 v 0101 02 + 01 00 + 02 00 | jump lightly -01967104 38 v 01 caper 0 002 @ 01963942 v 0000 + 00511817 n 0105 01 + 02 00 | jump about playfully -01967205 38 v 01 hurdle 0 006 @ 01966168 v 0000 ;c 00523513 n 0000 + 03549589 n 0101 + 00120515 n 0102 + 10193864 n 0101 + 07469162 n 0102 01 + 08 00 | jump a hurdle -01967373 38 v 03 dive 0 plunge 1 plunk 0 008 $ 01977080 v 0000 @ 01970826 v 0000 + 07434209 n 0201 ~ 01963655 v 0000 ~ 01967634 v 0000 ~ 01967792 v 0000 ~ 01967923 v 0000 ~ 01968275 v 0000 03 + 01 00 + 02 00 + 22 00 | drop steeply; "the stock market plunged" -01967634 38 v 01 nosedive 0 002 @ 01967373 v 0000 ;c 00300441 n 0000 02 + 01 00 + 02 00 | plunge nose first; drop with the nose or front first, of aircraft -01967792 38 v 01 duck 1 002 @ 01967373 v 0000 + 00277569 n 0103 04 + 01 00 + 02 00 + 21 00 + 22 00 | submerge or plunge suddenly -01967923 38 v 01 crash-dive 0 002 @ 01967373 v 0000 ;c 00300441 n 0000 02 + 01 00 + 02 00 | descend steeply and rapidly -01968045 38 v 02 sky_dive 0 skydive 0 005 @ 01968275 v 0000 + 00304040 n 0201 + 10608188 n 0201 + 10608188 n 0101 + 00304040 n 0101 01 + 02 00 | jump from an airplane and perform various maneuvers before opening one's parachute -01968275 38 v 03 chute 0 parachute 0 jump c 010 @ 01967373 v 0000 * 01942347 v 0000 * 01970826 v 0000 + 00303849 n 0301 + 10397482 n 0201 + 10397482 n 0202 + 00303849 n 0202 + 03888257 n 0201 + 03888257 n 0102 ~ 01968045 v 0000 01 + 02 00 | jump from an airplane and descend with a parachute -01968569 38 v 07 rise 0 lift 3 arise 4 move_up 0 go_up 0 come_up 3 uprise 1 017 @ 01835496 v 0000 + 07370671 n 0202 + 07445480 n 0101 + 00324384 n 0101 + 07445480 n 0102 ! 01970826 v 0102 ^ 01990281 v 0103 ~ 01885239 v 0000 ~ 01921964 v 0000 ~ 01943718 v 0000 ~ 01943949 v 0000 ~ 01944086 v 0000 ~ 01969084 v 0000 ~ 01969601 v 0000 ~ 01970125 v 0000 ~ 01970272 v 0000 ~ 01970348 v 0000 02 + 01 00 + 02 00 | move upward; "The fog lifted"; "The smoke arose from the forest fire"; "The mist uprose from the meadows" -01969084 38 v 01 bubble 0 001 @ 01968569 v 0000 02 + 01 00 + 04 00 | rise in bubbles or as if in bubbles; "bubble to the surface" -01969216 38 v 02 ascend 2 go_up a 012 @ 01835496 v 0000 + 02083391 a 0101 + 02484638 a 0103 + 02484638 a 0101 + 07445480 n 0104 + 00324384 n 0103 + 07445480 n 0103 + 00324384 n 0102 + 09813522 n 0101 ! 01970826 v 0101 ~ 01990281 v 0000 ~ 01990562 v 0000 02 + 02 00 + 08 00 | travel up, "We ascended the mountain"; "go up a ladder"; "The mountaineers slowly ascended the steep slope" -01969601 38 v 01 uplift 2 002 @ 01968569 v 0000 + 07375781 n 0102 01 + 01 00 | lift up from the earth, as by geologic forces; "the earth's movement uplifted this part of town" -01969779 38 v 03 ascend 5 move_up 1 rise 6 001 @ 00109660 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move to a better position in life or to a better job; "She ascended from a life of poverty to one of great -01969991 38 v 01 queen 0 003 @ 01080523 v 0000 ;c 00503237 n 0000 + 04033287 n 0101 01 + 01 00 | become a queen; "her pawn queened" -01970125 38 v 01 chandelle 0 002 @ 01968569 v 0000 ;c 00300441 n 0000 02 + 01 00 + 02 00 | climb suddenly and steeply; "The airplane chandelled" -01970272 38 v 01 steam 1 001 @ 01968569 v 0000 01 + 01 00 | rise as vapor -01970348 38 v 04 rise 8 come_up 0 uprise 2 ascend 3 006 @ 01968569 v 0000 ;c 06095022 n 0000 + 02484638 a 0402 + 07311661 n 0401 + 07445480 n 0101 ! 01970646 v 0101 01 + 01 00 | come up, of celestial bodies; "The sun also rises"; "The sun uprising sees the dusk night fled..."; "Jupiter ascends" -01970646 38 v 03 set 0 go_down 1 go_under 8 003 @ 01970826 v 0000 ;c 06095022 n 0000 ! 01970348 v 0101 01 + 01 00 | disappear beyond the horizon; "the sun sets early these days" -01970826 38 v 04 descend 0 fall 0 go_down 2 come_down 0 028 @ 01835496 v 0000 + 07370270 n 0201 ! 01968569 v 0201 ^ 01989053 v 0202 + 02486122 a 0101 + 02486122 a 0102 + 07363346 n 0101 ! 01969216 v 0101 ~ 01833906 v 0000 ~ 01923058 v 0000 ~ 01958452 v 0000 ~ 01966706 v 0000 ~ 01967373 v 0000 ~ 01970646 v 0000 ~ 01971603 v 0000 ~ 01971750 v 0000 ~ 01971929 v 0000 ~ 01972570 v 0000 ~ 01972753 v 0000 ~ 01976488 v 0000 ~ 01976841 v 0000 ~ 01977266 v 0000 ~ 01978436 v 0000 ~ 01978576 v 0000 ~ 01989873 v 0000 ~ 02064358 v 0000 ~ 02071142 v 0000 ~ 02071316 v 0000 02 + 01 00 + 02 00 | move downward and lower, but not necessarily all the way; "The temperature is going down"; "The barometer is falling"; "The curtain fell on the diva"; "Her hand went up and then fell again" -01971603 38 v 03 decline 3 slump 3 correct 3 001 @ 01970826 v 0000 01 + 01 00 | go down in value; "the stock market corrected"; "prices slumped" -01971750 38 v 01 precipitate 1 002 @ 01970826 v 0000 + 07434320 n 0101 02 + 04 00 + 22 00 | fall vertically, sharply, or headlong; "Our economy precipitated into complete ruin" -01971929 38 v 02 sink 6 subside 3 001 @ 01970826 v 0000 04 + 01 00 + 02 00 + 20 00 + 21 00 | descend into or as if into some soft substance or place; "He sank into bed"; "She subsided into the chair" -01972131 38 v 03 sink 7 pass 2 lapse 1 002 @ 00124442 v 0000 + 00201058 n 0201 02 + 04 00 + 22 00 | pass into a specified state or condition; "He sank into nirvana" -01972298 38 v 01 fall 3 005 $ 02756821 v 0000 @ 01835496 v 0000 + 10076778 n 0101 + 07362386 n 0102 + 00076884 n 0103 02 + 01 00 + 02 00 | descend in free fall under the influence of gravity; "The branch fell from the tree"; "The unfortunate hiker fell into a crevasse" -01972570 38 v 01 crash 2 001 @ 01970826 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | fall or come down violently; "The branch crashed down on my car"; "The plane crashed in the sea" -01972753 38 v 01 flop 0 001 @ 01970826 v 0000 02 + 04 00 + 22 00 | fall suddenly and abruptly -01972849 38 v 01 flop 1 002 @ 01989053 v 0000 + 00327510 n 0101 02 + 04 00 + 22 00 | fall loosely; "He flopped into a chair" -01972976 38 v 01 break 1 002 @ 01989053 v 0000 + 07344233 n 0102 01 + 01 00 | curl over and fall apart in surf or foam, of waves; "The surf broke" -01973125 38 v 05 lower 0 take_down 0 let_down 0 get_down 0 bring_down 1 009 @ 01850315 v 0000 > 01970826 v 0000 + 03693973 n 0102 + 00327683 n 0101 ! 01974062 v 0101 ~ 01973636 v 0000 ~ 01973932 v 0000 ~ 02041109 v 0000 ~ 02063018 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | move something or somebody to a lower position; "take down the vase from the shelf" -01973486 38 v 01 get_down 2 001 @ 01831531 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | lower (one's body) as by kneeling; "Get down on your knees!" -01973636 38 v 01 reef 2 001 @ 01973125 v 0000 01 + 08 00 | lower and bring partially inboard; "reef the sailboat's mast" -01973759 38 v 02 lift 1 raise 2 005 > 01968569 v 0000 @ 01850315 v 0000 + 00116376 n 0202 + 07370671 n 0203 + 00116376 n 0101 01 + 08 00 | move upwards; "lift one's eyes" -01973932 38 v 01 depress 0 001 @ 01973125 v 0000 01 + 11 00 | lower (prices or markets); "The glut of oil depressed gas prices" -01974062 38 v 05 raise 0 lift 0 elevate 0 get_up 0 bring_up 0 037 > 01968569 v 0000 @ 01850315 v 0000 + 09366317 n 0302 + 07370671 n 0301 + 05131283 n 0301 + 03281145 n 0301 + 00116376 n 0201 + 00316594 n 0202 + 03281145 n 0202 + 03664514 n 0201 + 04231693 n 0203 + 07348399 n 0201 + 07370671 n 0202 + 10773394 n 0202 ^ 01976089 v 0202 + 00116376 n 0102 + 09206985 n 0104 ! 01973125 v 0101 ~ 00018405 v 0000 ~ 01219544 v 0000 ~ 01239359 v 0000 ~ 01371651 v 0000 ~ 01455184 v 0000 ~ 01455639 v 0000 ~ 01455754 v 0000 ~ 01611359 v 0000 ~ 01853069 v 0000 ~ 01944466 v 0000 ~ 01974916 v 0000 ~ 01975121 v 0000 ~ 01975237 v 0000 ~ 01975387 v 0000 ~ 01975587 v 0000 ~ 01975753 v 0000 ~ 01975912 v 0000 ~ 01976089 v 0000 ~ 01982866 v 0000 05 + 08 00 + 09 00 + 11 00 + 20 00 + 21 00 | raise from a lower to a higher position; "Raise your hands"; "Lift a load" -01974916 38 v 01 underlay 0 002 @ 01974062 v 0000 ;c 06677302 n 0000 01 + 08 00 | raise or support (the level of printing) by inserting a piece of paper or cardboard under the type; "underlay the plate" -01975121 38 v 01 skid 2 003 @ 01974062 v 0000 + 04228844 n 0101 + 10604979 n 0101 01 + 08 00 | elevate onto skids -01975237 38 v 01 pinnacle 0 002 @ 01974062 v 0000 + 03943266 n 0101 01 + 08 00 | raise on or as if on a pinnacle; "He did not want to be pinnacled" -01975387 38 v 02 chin 0 chin_up 0 003 @ 01974062 v 0000 ;c 00433802 n 0000 + 00629597 n 0202 01 + 02 00 | raise oneself while hanging from one's hands until one's chin is level with the support bar -01975587 38 v 03 raise 1 leaven 0 prove 0 003 @ 01974062 v 0000 > 01983134 v 0000 + 14934031 n 0201 01 + 11 00 | cause to puff up with a leaven; "unleavened bread" -01975753 38 v 01 heighten 0 001 @ 01974062 v 0000 02 + 08 00 + 11 00 | increase the height of; "The athletes kept jumping over the steadily heightened bars" -01975912 38 v 03 hike 1 hike_up 0 boost 0 004 @ 01974062 v 0000 + 05110408 n 0302 + 05110408 n 0103 + 05110185 n 0104 01 + 08 00 | increase; "The landlord hiked up the rents" -01976089 38 v 03 pick_up 1 lift_up 0 gather_up 0 001 @ 01974062 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take and lift upward -01976220 38 v 03 dip 0 douse 0 duck 2 003 @ 01577093 v 0000 + 00277569 n 0303 + 00442847 n 0101 02 + 04 00 + 21 00 | dip into a liquid; "He dipped into the pool" -01976384 38 v 01 dabble 0 001 @ 01577093 v 0000 01 + 21 00 | dip a foot or hand briefly into a liquid -01976488 38 v 02 tumble 0 topple 0 003 @ 01970826 v 0000 + 00076884 n 0102 ~ 01976702 v 0000 02 + 01 00 + 02 00 | fall down, as if collapsing; "The tower of the World Trade Center tumbled after the plane hit it" -01976702 38 v 01 keel_over 0 001 @ 01976488 v 0000 02 + 01 00 + 02 00 | turn over and fall; "the man had a heart attack and keeled over" -01976841 38 v 01 drop 0 007 @ 01970826 v 0000 + 07362386 n 0101 ~ 01977080 v 0000 $ 01977701 v 0000 ~ 01978199 v 0000 ~ 01978340 v 0000 ~ 02039876 v 0000 02 + 01 00 + 02 00 | to fall vertically; "the bombs are dropping on enemy targets" -01977080 38 v 02 plunge 0 dump 1 004 @ 01976841 v 0000 + 07434209 n 0101 + 10019406 n 0102 $ 01967373 v 0000 02 + 01 00 + 02 00 | fall abruptly; "It plunged to the bottom of the well" -01977266 38 v 01 plop 0 002 @ 01970826 v 0000 + 07390049 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | drop with the sound of something falling into water -01977421 38 v 01 plop 1 002 @ 01977701 v 0000 + 07390049 n 0101 02 + 08 00 + 21 00 | drop something with a plopping sound -01977545 38 v 01 dump 0 002 @ 01977701 v 0000 + 03256166 n 0102 01 + 08 00 | drop (stuff) in a heap or mass; "The truck dumped the garbage in the street" -01977701 38 v 01 drop 1 009 $ 01976841 v 0000 $ 01985923 v 0000 @ 01850315 v 0000 + 00327366 n 0101 + 07362386 n 0101 ~ 01977421 v 0000 ~ 01977545 v 0000 ~ 01977962 v 0000 ~ 01978069 v 0000 02 + 08 00 + 09 00 | let fall to the ground; "Don't drop the dishes" -01977962 38 v 01 hang 3 001 @ 01977701 v 0000 01 + 08 00 | let drop or droop; "Hang one's head in shame" -01978069 38 v 03 plonk_down 0 plump_down 0 plank_down 0 001 @ 01977701 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | drop heavily -01978199 38 v 02 plummet 0 plump 1 002 @ 01976841 v 0000 + 07390205 n 0201 02 + 01 00 + 04 00 | drop sharply; "The stock market plummeted" -01978340 38 v 02 flump 0 flump_down 0 001 @ 01976841 v 0000 02 + 01 00 + 04 00 | fall heavily -01978436 38 v 01 pitch 0 001 @ 01970826 v 0000 02 + 01 00 + 08 00 | fall or plunge forward; "She pitched over the railing of the balcony" -01978576 38 v 02 alight 0 climb_down 0 001 @ 01970826 v 0000 03 + 01 00 + 02 00 + 22 00 | come down; "the birds alighted" -01978700 38 v 03 alight 1 light 0 perch 0 001 @ 01979901 v 0000 03 + 01 00 + 02 00 + 22 00 | to come to rest, settle; "Misfortune lighted upon him" -01978850 38 v 01 force-land 0 001 @ 01979901 v 0000 02 + 01 00 + 02 00 | make a forced landing -01978947 38 v 01 beach 0 002 @ 01979901 v 0000 + 09217230 n 0101 02 + 01 00 + 02 00 | land on a beach; "the ship beached near the port" -01979085 38 v 01 port 5 003 @ 01979901 v 0000 + 08633957 n 0101 $ 02087472 v 0000 02 + 01 00 + 02 00 | land at or reach a port; "The ship finally ported" -01979241 38 v 03 disembark 0 debark 0 set_down 0 005 @ 01979901 v 0000 + 00058002 n 0201 + 00058002 n 0103 + 00058002 n 0102 ! 01979462 v 0101 02 + 02 00 + 22 00 | go ashore; "The passengers disembarked at Southampton" -01979462 38 v 02 embark 0 ship 1 005 @ 02018049 v 0000 + 04194289 n 0201 + 00058337 n 0103 ! 01979241 v 0101 ~ 02018265 v 0000 02 + 02 00 + 22 00 | go on board -01979624 38 v 01 entrain 0 001 @ 02018049 v 0000 01 + 02 00 | board a train -01979702 38 v 01 touch_down 0 003 @ 01979901 v 0000 ;c 02686568 n 0000 + 00305005 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | come or bring (a plane) to a landing; "the plane touched down at noon" -01979901 38 v 02 land 0 set_down 1 013 @ 02005948 v 0000 + 03638180 n 0101 + 09334396 n 0101 + 00052500 n 0101 ~ 01978700 v 0000 ~ 01978850 v 0000 ~ 01978947 v 0000 ~ 01979085 v 0000 ~ 01979241 v 0000 ~ 01979702 v 0000 ~ 01980476 v 0000 ~ 01980617 v 0000 ~ 01980766 v 0000 03 + 01 00 + 02 00 + 22 00 | reach or come to rest; "The bird landed on the highest branch"; "The plane landed in Istanbul" -01980300 38 v 01 drive_in 0 001 @ 02005948 v 0000 02 + 01 00 + 02 00 | arrive by motorcar; "The star and her manager drive in today from their motor tour across the country" -01980476 38 v 01 undershoot 0 001 @ 01979901 v 0000 01 + 08 00 | fall short of (the runway) in a landing; "The plane undershot the runway" -01980617 38 v 01 belly-land 0 002 @ 01979901 v 0000 ;c 00300441 n 0000 03 + 01 00 + 02 00 + 08 00 | land on the underside without the landing gear -01980766 38 v 01 crash_land 0 003 @ 01979901 v 0000 ;c 00300441 n 0000 ~ 01980920 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | make an emergency landing -01980920 38 v 01 ditch 0 002 @ 01980766 v 0000 ;c 00300441 n 0000 01 + 08 00 | make an emergency landing on water -01981036 38 v 03 land 1 put_down 0 bring_down 0 005 > 01979901 v 0000 @ 02005948 v 0000 ;c 00300441 n 0000 + 09334396 n 0101 + 00052500 n 0101 02 + 08 00 + 21 00 | cause to come to the ground; "the pilot managed to land the airplane safely" -01981279 38 v 03 down 0 shoot_down 0 land 6 001 + 09334396 n 0301 01 + 08 00 | shoot at and force to come down; "the enemy landed several of our aircraft" -01981436 38 v 03 land 2 set_ashore 0 shore 0 004 @ 02005948 v 0000 + 09433442 n 0301 + 09334396 n 0101 + 00052334 n 0101 01 + 01 00 | arrive on shore; "The ship landed in Pearl Harbor" -01981623 38 v 02 rear 0 rise_up 1 002 @ 01982044 v 0000 ~ 01981791 v 0000 02 + 01 00 + 02 00 | stand up on the hind legs, of quadrupeds; "The horse reared in terror" -01981791 38 v 01 rear_back 0 001 @ 01981623 v 0000 02 + 01 00 + 02 00 | rear backwards on its hind legs; "the frightened horse reared back" -01981933 38 v 01 rear_back 1 001 @ 01910373 v 0000 01 + 02 00 | start with anger or resentment or in protest -01982044 38 v 01 straighten 1 003 @ 01983771 v 0000 ~ 01981623 v 0000 ~ 01982686 v 0000 02 + 01 00 + 02 00 | get up from a sitting or slouching position; "The students straightened when the teacher entered" -01982253 38 v 02 drop_open 0 fall_open 0 001 @ 01985923 v 0000 01 + 01 00 | open involuntarily; "His mouth dropped open"; "Her jaw dropped" -01982395 38 v 04 assume 0 take 0 strike 8 take_up 3 002 @ 01831531 v 0000 $ 02394183 v 0000 01 + 08 00 | occupy or take on; "He assumes the lotus position"; "She took her seat on the stage"; "We took our seats in the orchestra"; "She took up her position behind the tree"; "strike a pose" -01982686 38 v 03 draw_up 2 pull_up 3 straighten_up 1 002 @ 01982044 v 0000 + 00629597 n 0201 01 + 09 00 | straighten oneself; "He drew himself up when he talked to his superior" -01982866 38 v 02 rear 1 erect 0 004 @ 01974062 v 0000 + 00911752 n 0202 ~ 01514126 v 0000 ~ 01983006 v 0000 01 + 08 00 | cause to rise up -01983006 38 v 03 prick_up 0 prick 0 cock_up 0 001 @ 01982866 v 0000 02 + 08 00 + 11 00 | raise; "The dog pricked up his ears" -01983134 38 v 02 rise 2 prove 1 001 @ 00230746 v 0000 01 + 01 00 | increase in volume; "the dough rose slowly in the warm room" -01983264 38 v 05 arise 0 rise 5 uprise 3 get_up 1 stand_up 0 006 @ 01983771 v 0000 + 00324384 n 0201 + 10532576 n 0201 ! 01984902 v 0101 ! 01985029 v 0101 ~ 01983508 v 0000 01 + 02 00 | rise to one's feet; "The audience got up and applauded" -01983508 38 v 01 take_the_floor 0 001 @ 01983264 v 0000 01 + 02 00 | stand up to dance -01983597 38 v 03 bristle 0 uprise 4 stand_up 6 001 + 01901610 n 0101 01 + 01 00 | rise up as in fear; "The dog's fur bristled"; "It was a sight to make one's hair uprise!" -01983771 38 v 01 change_posture 0 014 @ 00109660 v 0000 ~ 01982044 v 0000 ~ 01983264 v 0000 ~ 01984119 v 0000 ~ 01984317 v 0000 ~ 01984574 v 0000 ~ 01984902 v 0000 ~ 01985029 v 0000 ~ 01985923 v 0000 ~ 02035559 v 0000 ~ 02035781 v 0000 ~ 02040273 v 0000 ~ 02063486 v 0000 ~ 02098680 v 0000 02 + 01 00 + 02 00 | undergo a change in bodily posture -01984119 38 v 01 fall e 003 @ 01983771 v 0000 + 00076884 n 0103 $ 01984317 v 0000 01 + 02 00 | drop oneself to a lower or less erect position; "She fell back in her chair"; "He fell to his knees" -01984317 38 v 02 fall f fall_down f 004 $ 01984119 v 0000 @ 01983771 v 0000 + 00076884 n 0103 + 07362386 n 0102 01 + 02 00 | lose an upright position suddenly; "The vase fell over and the water spilled onto the table"; "Her hair fell across her forehead" -01984574 38 v 01 right 0 002 @ 01983771 v 0000 $ 01984734 v 0000 02 + 01 00 + 02 00 | regain an upright or proper position; "The capsized boat righted again" -01984734 38 v 01 right 3 002 $ 01984574 v 0000 @ 00126264 v 0000 01 + 08 00 | put in or restore to an upright position; "They righted the sailboat that had capsized" -01984902 38 v 02 sit_down 0 sit 0 003 @ 01983771 v 0000 ! 01983264 v 0101 $ 01543123 v 0000 02 + 02 00 + 22 00 | take a seat -01985029 38 v 02 lie_down 0 lie 0 006 @ 01983771 v 0000 ! 01983264 v 0101 $ 01547001 v 0000 ~ 01985271 v 0000 ~ 01985424 v 0000 ~ 02063610 v 0000 02 + 02 00 + 22 00 | assume a reclining position; "lie down on the bed until you feel better" -01985271 38 v 02 stretch 2 stretch_out 2 001 @ 01985029 v 0000 01 + 02 00 | lie down comfortably; "To enjoy the picnic, we stretched out on the grass" -01985424 38 v 01 charge 1 001 @ 01985029 v 0000 01 + 01 00 | lie down on command, of hunting dogs -01985524 38 v 04 sag 0 droop 0 swag 2 flag 1 005 @ 01985923 v 0000 + 13905572 n 0202 + 13905572 n 0101 ~ 01989720 v 0000 ~ 02717362 v 0000 02 + 01 00 + 02 00 | droop, sink, or settle from or as if from pressure or loss of tautness -01985757 38 v 02 sag 1 sag_down 0 002 @ 01985923 v 0000 + 13905572 n 0101 01 + 08 00 | cause to sag; "The children sagged their bottoms down even more comfortably" -01985923 38 v 03 sink 1 drop 5 drop_down 0 007 $ 00432839 v 0000 @ 01983771 v 0000 + 03246454 n 0203 $ 01977701 v 0000 ~ 01982253 v 0000 ~ 01985524 v 0000 ~ 01985757 v 0000 02 + 01 00 + 02 00 | fall or descend to a lower place or level; "He sank to his knees" -01986185 38 v 02 subside 0 settle 4 003 @ 01989873 v 0000 + 09269972 n 0202 + 07362218 n 0201 01 + 01 00 | sink down or precipitate; "the mud subsides when the waters become calm" -01986367 38 v 01 subside 2 004 @ 02039679 v 0000 + 07362218 n 0102 + 07361416 n 0102 + 07362218 n 0103 01 + 01 00 | sink to a lower level or form a depression; "the valleys subside" -01986551 38 v 01 settle 2 003 @ 01986869 v 0000 + 09269972 n 0102 $ 01986715 v 0000 02 + 08 00 + 11 00 | cause to become clear by forming a sediment (of liquids) -01986715 38 v 01 settle 9 002 $ 01986551 v 0000 @ 00109660 v 0000 01 + 01 00 | become clear by the sinking of particles; "the liquid gradually settled" -01986869 38 v 01 sink 2 004 > 01989873 v 0000 $ 01989873 v 0000 @ 01850315 v 0000 ~ 01986551 v 0000 02 + 08 00 + 11 00 | cause to sink; "The Japanese sank American ships in Pearl Harbor" -01987058 38 v 01 settle 0 002 @ 01860795 v 0000 + 04177820 n 0101 02 + 04 00 + 22 00 | come to rest -01987160 38 v 01 position 0 011 @ 01494310 v 0000 + 08622201 n 0101 + 05074774 n 0101 + 08621598 n 0101 + 04110439 n 0102 + 01051331 n 0105 ~ 01149327 v 0000 ~ 01151110 v 0000 ~ 01987493 v 0000 ~ 02036650 v 0000 ~ 02712914 v 0000 05 + 08 00 + 09 00 + 11 00 + 20 00 + 21 00 | cause to be in an appropriate place, state, or relation -01987493 38 v 01 square 0 003 @ 01987160 v 0000 + 04291511 n 0101 ~ 01987648 v 0000 01 + 08 00 | position so as to be square; "He squared his shoulders" -01987648 38 v 03 square_up 0 jog 2 even_up 0 001 @ 01987493 v 0000 01 + 08 00 | even up the edges of a stack of paper, in printing -01987781 38 v 02 glycerolize 0 glycerolise 0 004 @ 01494310 v 0000 ;c 06084469 n 0000 + 14885684 n 0101 ! 01987936 v 0101 01 + 08 00 | place in glycerol -01987936 38 v 02 deglycerolize 0 deglycerolise 0 003 ;c 06084469 n 0000 @ 01854132 v 0000 ! 01987781 v 0101 01 + 08 00 | remove from glycerol -01988080 38 v 01 space 0 005 @ 01494310 v 0000 + 15172212 n 0102 + 06839190 n 0101 + 13910384 n 0101 + 05083328 n 0101 02 + 08 00 + 21 00 | place at intervals; "Space the interviews so that you have some time between the different candidates" -01988325 38 v 01 marshal 0 002 @ 01494310 v 0000 + 10296176 n 0101 02 + 08 00 + 09 00 | place in proper rank; "marshal the troops" -01988458 38 v 02 settle 1 settle_down 0 002 @ 01494310 v 0000 ~ 01988645 v 0000 02 + 04 00 + 22 00 | settle into a position, usually on a surface or ground; "dust settled on the roofs" -01988645 38 v 01 sediment 0 002 @ 01988458 v 0000 $ 01988755 v 0000 02 + 01 00 + 04 00 | settle as sediment -01988755 38 v 01 sediment 1 003 $ 01988645 v 0000 @ 01575675 v 0000 + 11445395 n 0102 02 + 08 00 + 11 00 | deposit as a sediment -01988886 38 v 03 slump 0 slide_down 0 sink 3 001 @ 01989053 v 0000 03 + 01 00 + 02 00 + 22 00 | fall or sink heavily; "He slumped onto the couch"; "My spirits sank" -01989053 38 v 07 collapse 0 fall_in 0 cave_in 0 give d give_way 1 break b founder 0 011 @ 00109660 v 0000 + 07361416 n 0301 + 07477945 n 0102 + 07361128 n 0101 ~ 00305846 v 0000 $ 00613393 v 0000 ~ 01279186 v 0000 ~ 01972849 v 0000 ~ 01972976 v 0000 ~ 01988886 v 0000 $ 01989562 v 0000 02 + 01 00 + 02 00 | break down, literally or metaphorically; "The wall collapsed"; "The business collapsed"; "The dam broke"; "The roof collapsed"; "The wall gave in"; "The roof finally gave under the weight of the ice" -01989562 38 v 02 collapse 3 burst 4 003 > 01989053 v 0000 $ 01989053 v 0000 ~ 00309792 v 0000 02 + 08 00 + 11 00 | cause to burst; "The ice broke the pipe" -01989720 38 v 02 slump 1 slouch 1 003 @ 01985524 v 0000 + 05003273 n 0201 + 10612803 n 0201 02 + 02 00 + 22 00 | assume a drooping posture or carriage -01989873 38 v 04 sink 0 settle 7 go_down 0 go_under 0 009 @ 01970826 v 0000 + 04223778 n 0101 + 07363883 n 0101 ! 01904293 v 0101 ^ 01457954 v 0102 ~ 01986185 v 0000 $ 01986869 v 0000 ~ 01990168 v 0000 ~ 01991472 v 0000 02 + 01 00 + 02 00 | go under, "The raft sank and its occupants drowned" -01990168 38 v 01 founder 1 002 @ 01989873 v 0000 + 07364573 n 0101 02 + 01 00 + 02 00 | sink below the surface -01990281 38 v 04 surface 0 come_up 1 rise_up 0 rise 4 010 @ 01969216 v 0000 + 07348399 n 0402 + 05853449 n 0101 + 09451517 n 0101 + 08660339 n 0101 + 00061171 n 0101 ~ 01990694 v 0000 ~ 01990848 v 0000 ~ 01990946 v 0000 ~ 01991204 v 0000 02 + 01 00 + 02 00 | come to the surface -01990562 38 v 01 uprise 6 001 @ 01969216 v 0000 01 + 01 00 | ascend as a sound; "The choirs singing uprose and filled the church" -01990694 38 v 01 emerge 0 002 @ 01990281 v 0000 + 00050693 n 0102 02 + 01 00 + 02 00 | come up to the surface of or rise; "He felt new emotions emerge" -01990848 38 v 01 resurface 0 001 @ 01990281 v 0000 02 + 01 00 + 02 00 | reappear on the surface -01990946 38 v 02 bubble_up 0 intumesce 0 001 @ 01990281 v 0000 01 + 01 00 | move upwards in bubbles, as from the effect of heating; also used metaphorically; "Gases bubbled up from the earth"; "Marx's ideas have bubbled up in many places in Latin America" -01991204 38 v 02 well 0 swell 7 001 @ 01990281 v 0000 01 + 04 00 | come up, as of a liquid; "Tears well in her eyes"; "the currents well up" -01991347 38 v 01 break 9 001 @ 00422090 v 0000 01 + 01 00 | emerge from the surface of a body of water; "The whales broke" -01991472 38 v 02 submerge 0 submerse 0 008 @ 01989873 v 0000 + 07364115 n 0203 + 02472693 a 0101 + 02472693 a 0102 + 07364115 n 0103 + 07364115 n 0102 + 07364115 n 0101 ~ 01962865 v 0000 03 + 01 00 + 02 00 + 08 00 | sink below the surface; go under or as if under water -01991744 38 v 02 zigzag 0 crank 1 003 * 01907258 v 0000 @ 01835496 v 0000 + 13887319 n 0101 02 + 01 00 + 02 00 | travel along a zigzag path; "The river zigzags through the countryside" -01991931 38 v 02 follow 1 travel_along 0 003 @ 01835496 v 0000 ~ 01992114 v 0000 ~ 02103021 v 0000 01 + 08 00 | travel along a certain course; "follow the road"; "follow the trail" -01992114 38 v 01 heel 0 003 @ 01991931 v 0000 + 05578095 n 0101 + 03511426 n 0101 02 + 09 00 + 10 00 | follow at the heels of a person -01992251 38 v 01 seesaw 0 002 @ 01831531 v 0000 + 04167759 n 0101 02 + 01 00 + 02 00 | move up and down as if on a seesaw -01992375 38 v 03 teeter-totter 0 teetertotter 0 seesaw 1 002 @ 01072949 v 0000 + 04167759 n 0301 01 + 02 00 | ride on a plank -01992503 38 v 06 advance 0 progress 0 pass_on 1 move_on 0 march_on 0 go_on 0 020 @ 01835496 v 0000 + 00282050 n 0201 + 07445265 n 0201 + 00282050 n 0202 + 00282050 n 0105 + 07445265 n 0103 + 00282050 n 0104 + 09773076 n 0101 ! 01994442 v 0105 ~ 01884266 v 0000 ~ 01993031 v 0000 ~ 01993212 v 0000 ~ 01993352 v 0000 ~ 01993549 v 0000 ~ 01993805 v 0000 ~ 02049696 v 0000 ~ 02054703 v 0000 ~ 02072501 v 0000 ~ 02072673 v 0000 ~ 02072849 v 0000 02 + 01 00 + 02 00 | move forward, also in the metaphorical sense; "Time marches on" -01993031 38 v 01 penetrate 6 002 @ 01992503 v 0000 + 05201452 n 0101 01 + 22 00 | make one's way deeper into or through; "The hikers did not manage to penetrate the dense forest" -01993212 38 v 02 creep_up 0 sneak_up 0 001 @ 01992503 v 0000 02 + 01 00 + 04 00 | advance stealthily or unnoticed; "Age creeps up on you" -01993352 38 v 03 encroach 0 infringe 0 impinge 0 005 @ 01992503 v 0000 + 00770543 n 0202 + 07429976 n 0102 + 00733483 n 0102 + 10214062 n 0102 02 + 01 00 + 04 00 | advance beyond the usual limit -01993549 38 v 03 press_on 0 push_on 0 plough_on 0 001 @ 01992503 v 0000 02 + 01 00 + 02 00 | continue moving forward -01993668 38 v 01 jam 1 001 @ 01871979 v 0000 02 + 08 00 + 11 00 | push down forcibly; "The driver jammed the brake pedal to the floor" -01993805 38 v 02 string 0 string_along 0 001 @ 01992503 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move or come along -01993926 38 v 02 advance 1 bring_forward 0 004 @ 01850315 v 0000 + 00282050 n 0105 ! 01997512 v 0101 ~ 01994128 v 0000 02 + 08 00 + 09 00 | cause to move forward; "Can you move the car seat forward?" -01994128 38 v 01 nose 2 002 @ 01993926 v 0000 + 03830835 n 0101 01 + 08 00 | advance the forward part of with caution; "She nosed the car into the left lane" -01994288 38 v 02 advance 4 set_ahead 0 001 @ 00298556 v 0000 01 + 08 00 | move forward; "we have to advance clocks and watches when we travel eastward" -01994442 38 v 08 withdraw 0 retreat 0 pull_away 0 draw_back 0 recede 1 pull_back 0 retire 0 move_back 0 009 $ 00799383 v 0000 @ 01835496 v 0000 + 00056688 n 0601 + 00057486 n 0501 + 00053913 n 0101 ~ 01904120 v 0000 ! 01992503 v 0501 ~ 01994846 v 0000 ~ 01997680 v 0000 04 + 01 00 + 02 00 + 08 00 + 22 00 | pull back or move away or backward; "The enemy withdrew"; "The limo pulled away from the curb" -01994846 38 v 02 retrograde 0 retreat 1 001 @ 01994442 v 0000 01 + 01 00 | move back; "The glacier retrogrades" -01994960 38 v 01 retrograde 1 001 @ 01835496 v 0000 01 + 01 00 | move in a direction contrary to the usual one; "retrograding planets" -01995097 38 v 01 retrograde 2 001 @ 02043982 v 0000 01 + 01 00 | move backward in an orbit, of celestial bodies -01995211 38 v 05 draw 1 pull 3 pull_out 3 get_out 2 take_out a 006 $ 01854132 v 0000 $ 01351170 v 0000 $ 00571596 v 0000 @ 00173338 v 0000 + 03233905 n 0101 ~ 01581485 v 0000 02 + 08 00 + 21 00 | bring, take, or pull out of a container or from under a cover; "draw a weapon"; "pull out a gun"; "The mugger pulled a knife on his victim" -01995549 38 v 03 proceed 0 go_forward 0 continue 0 009 @ 01835496 v 0000 + 01017987 n 0302 + 00282050 n 0103 ~ 01935233 v 0000 ~ 01995949 v 0000 ~ 01996188 v 0000 ~ 01996402 v 0000 ~ 02102840 v 0000 $ 02679899 v 0000 02 + 01 00 + 02 00 | move ahead; travel onward in time or space; "We proceeded towards Washington"; "She continued in the direction of the hills"; "We are moving ahead in time now" -01995949 38 v 01 trace 3 001 @ 01995549 v 0000 02 + 02 00 + 08 00 | make one's course or travel along a path; travel or pass over, around, or along; "The children traced along the edge of the dark forest"; "The women traced the pasture" -01996188 38 v 01 roar 0 001 @ 01995549 v 0000 02 + 04 00 + 22 00 | act or proceed in a riotous, turbulent, or disorderly way; "desperadoes from the hills regularly roared in to take over the town"-R.A.Billington -01996402 38 v 01 limp 1 002 @ 01995549 v 0000 + 00286756 n 0103 04 + 01 00 + 02 00 + 04 00 + 22 00 | proceed slowly or with difficulty; "the boat limped into the harbor" -01996574 38 v 03 barge 0 thrust_ahead 0 push_forward 0 002 @ 02058994 v 0000 ^ 00780191 v 0106 01 + 22 00 | push one's way; "she barged into the meeting room" -01996735 38 v 02 march 1 process 0 009 @ 01904930 v 0000 + 08428019 n 0101 + 00290579 n 0101 + 00290579 n 0102 ~ 01920048 v 0000 ~ 01924505 v 0000 ~ 01929133 v 0000 ~ 01997020 v 0000 ~ 02083923 v 0000 02 + 02 00 + 22 00 | march in a procession; "They processed into the dining room" -01997020 38 v 01 countermarch 0 001 @ 01996735 v 0000 01 + 02 00 | march back along the same way -01997119 38 v 01 back 0 007 $ 01997512 v 0000 @ 01835496 v 0000 ^ 01997680 v 0101 ^ 01997680 v 0102 ^ 01997680 v 0103 ^ 01997376 v 0101 ~ 01997376 v 0000 02 + 04 00 + 22 00 | travel backward; "back into the driveway"; "The car backed up and hit the tree" -01997376 38 v 01 back_out 0 001 @ 01997119 v 0000 02 + 02 00 + 22 00 | move out of a space backwards; "He backed out of the driveway" -01997512 38 v 01 back 1 003 > 01997119 v 0000 ! 01993926 v 0101 $ 01997119 v 0000 02 + 20 00 + 21 00 | cause to travel backward; "back the car into the parking spot" -01997680 38 v 03 back_up 0 back_off 0 back_down 0 002 @ 01994442 v 0000 + 07206302 n 0302 02 + 01 00 + 02 00 | move backwards from a certain position; "The bully had to back down" -01997862 38 v 04 lag 0 dawdle 1 fall_back 0 fall_behind 0 006 @ 01998432 v 0000 + 09993252 n 0201 + 01067577 n 0102 + 09993252 n 0104 + 09993252 n 0103 ~ 02058756 v 0000 02 + 01 00 + 02 00 | hang (back) or fall (behind) in movement, progress, development, etc. -01998125 38 v 01 tailgate 0 002 @ 01998432 v 0000 + 10689429 n 0101 02 + 08 00 + 09 00 | follow at a dangerously close distance; "it is dangerous to tailgate another vehicle" -01998302 38 v 01 pan 0 001 @ 01835496 v 0000 02 + 01 00 + 04 00 | make a sweeping movement; "The camera panned across the room" -01998432 38 v 01 follow 0 008 @ 01835496 v 0000 + 10100124 n 0101 + 00319939 n 0104 ! 01999218 v 0101 ~ 01997862 v 0000 ~ 01998125 v 0000 ~ 02001461 v 0000 ~ 02001699 v 0000 05 + 01 00 + 02 00 + 08 00 + 09 00 + 11 00 | to travel behind, go after, come after; "The ducklings followed their mother around the pond"; "Please follow the guide through the museum" -01998793 38 v 01 catch_up 0 003 @ 02020590 v 0000 * 01998432 v 0000 ~ 01998982 v 0000 02 + 02 00 + 22 00 | reach the point where one should be after a delay; "I caught up on my homework" -01998982 38 v 01 come_back 1 001 @ 01998793 v 0000 02 + 01 00 + 02 00 | even the score, in sports -01999082 38 v 02 scale 1 surmount 0 001 @ 02020590 v 0000 02 + 08 00 + 11 00 | reach the highest point of; "We scaled the Mont Blanc" -01999218 38 v 02 precede 0 lead 2 004 @ 01835496 v 0000 + 01257145 n 0103 ! 01998432 v 0101 ~ 01999423 v 0000 06 + 01 00 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | move ahead (of others) in time or space -01999423 38 v 02 lead 0 head 2 007 @ 01999218 v 0000 + 07372779 n 0202 + 08572467 n 0202 + 08482271 n 0201 + 09623038 n 0101 ~ 01999688 v 0000 $ 02729023 v 0000 02 + 08 00 + 09 00 | travel in front of; go in advance of others; "The procession was headed by John" -01999688 38 v 01 draw_away 0 001 @ 01999423 v 0000 01 + 02 00 | move ahead of (one's competitors) in a race -01999798 38 v 05 lead 1 take 9 direct 0 conduct 1 guide 0 006 + 10741821 n 0502 + 09623038 n 0101 ~ 01933204 v 0000 ~ 02000133 v 0000 ~ 02000288 v 0000 ~ 02000547 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take somebody somewhere; "We lead him to our chief"; "can you take me to the main entrance?"; "He conducted us to the palace" -02000133 38 v 01 hand 0 002 @ 01999798 v 0000 + 01208460 n 0101 01 + 09 00 | guide or conduct or usher somewhere; "hand the elderly lady into the taxi" -02000288 38 v 04 mislead 0 misdirect 0 misguide 0 lead_astray 0 003 @ 01999798 v 0000 + 06787037 n 0201 + 10322391 n 0101 01 + 09 00 | lead someone in the wrong direction or give someone wrong directions; "The pedestrian misdirected the out-of-town driver" -02000547 38 v 02 usher 0 show 0 003 @ 01999798 v 0000 + 10741821 n 0101 ~ 02000757 v 0000 02 + 09 00 + 02 01 | take (someone) to their seats, as in theaters or auditoriums; "The usher showed us to our seats" -02000757 38 v 01 marshal 1 001 @ 02000547 v 0000 02 + 09 00 + 20 00 | lead ceremoniously, as in a procession -02000868 38 v 02 pursue 0 follow d 009 @ 01835496 v 0000 + 10100124 n 0201 + 00319939 n 0204 + 00319939 n 0101 + 10494935 n 0101 ~ 02001252 v 0000 ~ 02001858 v 0000 ~ 02004009 v 0000 $ 02198602 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | follow in or as if in pursuit; "The police car pursued the suspected attacker"; "Her bad deed followed her and haunted her dreams all her life" -02001252 38 v 01 stalk 3 005 @ 02000868 v 0000 + 00711523 n 0101 + 10486679 n 0103 + 10646433 n 0101 + 00711523 n 0102 02 + 08 00 + 09 00 | go through (an area) in search of prey; "stalk the woods for deer" -02001461 38 v 01 shadow 0 005 @ 01998432 v 0000 + 10585359 n 0101 + 10689104 n 0102 + 10689104 n 0103 + 00320486 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | follow, usually without the person's knowledge; "The police are shadowing her" -02001699 38 v 01 carry 7 002 @ 01998432 v 0000 + 00318735 n 0101 01 + 08 00 | pursue a line of scent or be a bearer; "the dog was taught to fetch and carry" -02001858 38 v 09 chase 0 chase_after 0 trail 0 tail 0 tag 0 give_chase 0 dog 0 go_after 1 track 0 017 @ 02000868 v 0000 + 05826914 n 0902 + 10720097 n 0901 + 00320284 n 0902 + 00487874 n 0501 ^ 02027030 v 0501 + 10689104 n 0401 + 00320486 n 0402 + 00320284 n 0301 + 10494935 n 0102 + 07883860 n 0101 + 00319939 n 0102 ^ 02002720 v 0101 ~ 01145163 v 0000 ~ 02002591 v 0000 ~ 02003601 v 0000 ~ 02004227 v 0000 03 + 08 00 + 09 00 + 10 00 | go after with the intent to catch; "The policeman chased the mugger down the alley"; "the dog chased the rabbit" -02002410 38 v 01 fire 2 001 @ 02002720 v 0000 03 + 09 00 + 10 00 + 11 00 | drive out or away by or as if by fire; "The soldiers were fired"; "Surrender fires the cold skepticism" -02002591 38 v 01 quest 0 001 @ 02001858 v 0000 02 + 01 00 + 02 00 | search the trail of (game); "The dog went off and quested" -02002720 38 v 07 chase_away 0 drive_out 1 turn_back 2 drive_away 0 dispel 0 drive_off 6 run_off 0 007 $ 02056466 v 0000 @ 01850315 v 0000 ~ 01780104 v 0000 ~ 02002410 v 0000 ~ 02003186 v 0000 ~ 02003359 v 0000 ~ 02003480 v 0000 03 + 08 00 + 09 00 + 10 00 | force to go away; used both with concrete and metaphoric meanings; "Drive away potential burglars"; "drive away bad thoughts"; "dispel doubts"; "The supermarket had to turn back many disappointed customers" -02003186 38 v 01 clear_the_air 0 001 @ 02002720 v 0000 02 + 01 00 + 02 00 | dispel differences or negative emotions; "The group called a meeting to finally clear the air" -02003359 38 v 01 banish 0 001 @ 02002720 v 0000 02 + 08 00 + 11 00 | drive away; "banish bad thoughts"; "banish gloom" -02003480 38 v 03 shoo_off 0 shoo 0 shoo_away 0 001 @ 02002720 v 0000 02 + 08 00 + 09 00 | drive away by crying `shoo!' -02003601 38 v 03 hound 0 hunt 0 trace 0 006 @ 02001858 v 0000 + 00452293 n 0201 + 00622584 n 0201 + 10193026 n 0201 + 02087551 n 0101 ~ 02003910 v 0000 02 + 08 00 + 09 00 | pursue or chase relentlessly; "The hunters traced the deer into the woods"; "the detectives hounded the suspect until they found him" -02003910 38 v 01 ferret 0 001 @ 02003601 v 0000 02 + 08 00 + 09 00 | hound or harry relentlessly -02004009 38 v 02 haunt 0 stalk 1 002 @ 02000868 v 0000 + 00320625 n 0201 01 + 08 00 | follow stealthily or recur constantly and spontaneously to; "her ex-boyfriend stalked her"; "the ghost of her mother haunted her" -02004227 38 v 01 run_down 0 001 @ 02001858 v 0000 02 + 08 00 + 09 00 | pursue until captured; "They ran down the fugitive" -02004352 38 v 02 trace 1 retrace 0 002 @ 02004874 v 0000 + 06647036 n 0101 01 + 08 00 | to go back over again; "we retraced the route we took last summer"; "trace your path" -02004528 38 v 03 backtrack 0 turn_back 0 double_back 0 001 @ 02004874 v 0000 02 + 01 00 + 02 00 | retrace one's course; "The hikers got into a storm and had to turn back" -02004701 38 v 02 cut_back 0 flash_back 0 002 @ 02004874 v 0000 + 06401526 n 0201 02 + 01 00 + 04 00 | return in time; "the film cut back to an earlier event in the story" -02004874 38 v 01 return 0 013 @ 01835496 v 0000 + 00051192 n 0101 + 00328015 n 0101 ~ 00098770 v 0000 ~ 01844319 v 0000 ~ 02004352 v 0000 ~ 02004528 v 0000 ~ 02004701 v 0000 ~ 02005347 v 0000 ~ 02005496 v 0000 ~ 02005617 v 0000 ~ 02005778 v 0000 ~ 02254923 v 0000 03 + 01 00 + 02 00 + 22 00 | go or come back to place, condition, or activity where one has been before; "return to your native land"; "the professor returned to his teaching position after serving as Dean" -02005347 38 v 01 home 0 002 @ 02004874 v 0000 + 08559508 n 0101 02 + 01 00 + 02 00 | return home accurately from a long distance; "homing pigeons" -02005496 38 v 02 go_home 0 head_home 0 001 @ 02004874 v 0000 01 + 02 00 | return home; "After the movie, we went home" -02005617 38 v 01 return 1 001 @ 02004874 v 0000 01 + 01 00 | return to a previous position; in mathematics; "The point returned to the interior of the figure" -02005778 38 v 01 boomerang 0 003 @ 02004874 v 0000 + 02871963 n 0101 + 00073032 n 0102 01 + 01 00 | return to the initial position from where it came; like a boomerang -02005948 38 v 03 arrive 0 get 0 come 4 016 + 09810166 n 0303 + 00048828 n 0302 + 09810166 n 0102 + 00048374 n 0101 ! 02009433 v 0101 ~ 01979901 v 0000 ~ 01980300 v 0000 ~ 01981036 v 0000 ~ 01981436 v 0000 ~ 02006453 v 0000 $ 02006573 v 0000 ~ 02006709 v 0000 ~ 02006834 v 0000 ~ 02007680 v 0000 ~ 02015384 v 0000 ~ 02017416 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | reach a destination; arrive by movement or progress; "She arrived home at 7 o'clock"; "She didn't get to Chicago until after midnight" -02006453 38 v 01 roll_up 3 001 @ 02005948 v 0000 01 + 22 00 | arrive in a vehicle: "He rolled up in a black Mercedes" -02006573 38 v 01 get c 002 $ 02005948 v 0000 @ 02018372 v 0000 01 + 08 00 | reach and board; "She got the bus just as it was leaving" -02006709 38 v 02 come 2 come_in 1 001 @ 02005948 v 0000 01 + 01 00 | be received; "News came in of the massacre in Rwanda" -02006834 38 v 03 reach 0 hit 7 attain 0 004 @ 02005948 v 0000 + 00048656 n 0301 ~ 02007111 v 0000 ~ 02007237 v 0000 02 + 08 00 + 11 00 | reach a point in time, or a certain state or level; "The thermometer hit 100 degrees"; "This car can reach a speed of 140 miles per hour" -02007111 38 v 01 max_out 0 001 @ 02006834 v 0000 02 + 01 00 + 02 00 | reach a maximum; "I maxed out on all my credit cards" -02007237 38 v 01 break_even 0 001 @ 02006834 v 0000 02 + 06 00 + 07 00 | attain a level at which there is neither gain nor loss, as in business, gambling, or a competitive sport -02007417 38 v 02 access 0 get_at 0 004 @ 02020590 v 0000 + 00019131 a 0101 + 00236581 n 0101 + 00281132 n 0101 01 + 08 00 | reach or gain access to; "How does one access the attic in this house?"; "I cannot get to the T.V. antenna, even if I climb on the roof" -02007680 38 v 01 flood_in 0 001 @ 02005948 v 0000 02 + 01 00 + 02 00 | arrive in great numbers -02007777 38 v 01 crest 0 001 @ 02008066 v 0000 02 + 01 00 + 04 00 | reach a high point; "The river crested last night" -02007898 38 v 01 bottom_out 0 002 @ 02020590 v 0000 ! 02008066 v 0101 01 + 01 00 | reach the low point; "Prices bottomed out and started to rise again after a while" -02008066 38 v 02 top_out 0 peak 0 006 * 01968569 v 0000 @ 02020590 v 0000 + 13940456 n 0204 + 13653902 n 0202 ! 02007898 v 0101 ~ 02007777 v 0000 02 + 01 00 + 04 00 | to reach the highest point; attain maximum intensity, activity; "That wild, speculative spirit peaked in 1929";"Bids for the painting topped out at $50 million" -02008396 38 v 03 depart 0 take_leave 0 quit 0 010 @ 02009433 v 0000 + 07333649 n 0103 + 00042757 n 0101 + 10004539 n 0101 ! 02009200 v 0101 ~ 02008863 v 0000 ~ 02008978 v 0000 ~ 02009347 v 0000 ~ 02017550 v 0000 ~ 02076857 v 0000 03 + 08 00 + 22 00 + 02 02 | go away or leave -02008674 38 v 01 fall_out 2 001 @ 02015598 v 0000 01 + 02 00 | leave (a barracks) in order to take a place in a military formation, or leave a military formation; "the soldiers fell out" -02008863 38 v 01 walk_out_of 0 001 @ 02008396 v 0000 01 + 08 00 | leave, usually as an expression of disapproval -02008978 38 v 01 congee 0 001 @ 02008396 v 0000 02 + 02 00 + 22 00 | depart after obtaining formal permission; "He has congeed with the King" -02009122 38 v 01 pop_off 0 001 @ 02009433 v 0000 01 + 02 00 | leave quickly -02009200 38 v 01 stay 1 001 ! 02008396 v 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | remain behind; "I had to stay at home and watch the children" -02009347 38 v 01 beat_a_retreat 0 001 @ 02008396 v 0000 01 + 02 00 | depart hastily -02009433 38 v 03 leave 1 go_forth 0 go_away 0 025 $ 02015598 v 0000 + 10004539 n 0102 + 00053097 n 0102 ! 02005948 v 0101 ~ 01842204 v 0000 ~ 01842367 v 0000 ~ 02008396 v 0000 ~ 02009122 v 0000 ~ 02010082 v 0000 ~ 02010255 v 0000 ~ 02010400 v 0000 ~ 02010572 v 0000 ~ 02010698 v 0000 ~ 02010864 v 0000 ~ 02011040 v 0000 ~ 02011302 v 0000 ~ 02011437 v 0000 ~ 02011560 v 0000 ~ 02014165 v 0000 ~ 02015168 v 0000 ~ 02059675 v 0000 ~ 02075049 v 0000 ~ 02076027 v 0000 ~ 02076676 v 0000 $ 02383440 v 0000 02 + 01 00 + 02 00 | go away from a place; "At what time does your train leave?"; "She didn't leave until midnight"; "The ship leaves at midnight" -02010082 38 v 02 walk_off 1 walk_away 0 001 @ 02009433 v 0000 01 + 02 00 | go away from; "The actor walked off before he got his cue"; "I got annoyed and just walked off" -02010255 38 v 01 hightail 0 001 @ 02009433 v 0000 01 + 08 00 | leave as fast as possible; "We hightailed it when we saw the police walking in" -02010400 38 v 01 walk_out 0 002 @ 02009433 v 0000 + 01178195 n 0101 01 + 02 00 | leave abruptly, often in protest or anger; "The customer that was not served walked out" -02010572 38 v 01 come_away 0 001 @ 02009433 v 0000 02 + 07 00 + 22 00 | leave in a certain condition; "She came away angry" -02010698 38 v 03 decamp 0 skip 2 vamoose 0 002 @ 02009433 v 0000 ;u 07075172 n 0201 02 + 02 00 + 08 02 | leave suddenly; "She persuaded him to decamp"; "skip town" -02010864 38 v 05 scram 0 buzz_off 0 fuck_off 0 get f bugger_off 0 001 @ 02009433 v 0000 02 + 01 00 + 02 00 | leave immediately; used usually in the imperative form; "Scram!" -02011040 38 v 05 run_off 1 run_out 2 bolt 1 bolt_out 0 beetle_off 0 001 @ 02009433 v 0000 02 + 02 00 + 22 00 | leave suddenly and as if in a hurry; "The listeners bolted when he discussed his strange ideas"; "When she started to tell silly stories, I ran out" -02011302 38 v 02 ride_off 0 ride_away 0 001 @ 02009433 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | ride away on a horse, for example -02011437 38 v 01 go_out 1 001 @ 02009433 v 0000 02 + 01 00 + 22 00 | take the field; "The soldiers went out on missions" -02011560 38 v 02 tarry 0 linger 1 002 @ 02009433 v 0000 + 01068423 n 0101 02 + 02 00 + 22 00 | leave slowly and hesitantly -02011685 38 v 02 dally 0 dawdle 4 005 @ 00010435 v 0000 + 09993252 n 0201 + 01067819 n 0202 + 09988703 n 0101 + 01067819 n 0101 01 + 02 00 | waste time; "Get busy--don't dally!" -02011865 38 v 02 derail 0 jump 5 002 @ 01835496 v 0000 + 07302267 n 0101 01 + 01 00 | run off or leave the rails; "the train derailed because a cow was standing on the tracks" -02012043 38 v 01 derail 1 002 @ 02543607 v 0000 + 07302267 n 0101 02 + 08 00 + 11 00 | cause to run off the tracks; "they had planned to derail the trains that carried atomic waste" -02012227 38 v 01 shunt 0 002 @ 02012344 v 0000 + 04211219 n 0101 01 + 08 00 | transfer to another track, of trains -02012344 38 v 02 transfer 0 shift 2 012 @ 01850315 v 0000 + 00331655 n 0201 + 10724699 n 0102 ~ 01867303 v 0000 ~ 02012227 v 0000 ~ 02012725 v 0000 ~ 02012973 v 0000 ~ 02013163 v 0000 ~ 02013322 v 0000 ~ 02013427 v 0000 ~ 02086458 v 0000 ~ 02362323 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | move around; "transfer the packet from his trouser pockets to a pocket in his jacket" -02012725 38 v 01 carry a 003 $ 02233195 v 0000 @ 02012344 v 0000 + 00318735 n 0101 01 + 08 00 | transfer (a number, cipher, or remainder) to the next column or unit's place before or after, in addition or multiplication; "put down 5 and carry 2" -02012973 38 v 01 shuffle 1 001 @ 02012344 v 0000 01 + 21 00 | move about, move back and forth; "He shuffled his funds among different accounts in various countries so as to avoid the IRS" -02013163 38 v 01 transship 0 002 @ 02012344 v 0000 + 00316460 n 0101 01 + 08 00 | transfer for further transportation from one ship or conveyance to another -02013322 38 v 01 bunker 0 001 @ 02012344 v 0000 01 + 08 00 | transfer cargo from a ship to a warehouse -02013427 38 v 02 carry_over 0 carry_forward 0 002 @ 02012344 v 0000 ;c 00618734 n 0000 01 + 08 00 | transfer from one time period to the next -02013571 38 v 01 displace 0 007 @ 01850315 v 0000 ~ 00414823 v 0000 ~ 01527508 v 0000 ~ 01855155 v 0000 ~ 02013840 v 0000 ~ 02014024 v 0000 ~ 02538553 v 0000 02 + 09 00 + 10 00 | cause to move, usually with force or pressure; "the refugees were displaced by the war" -02013840 38 v 02 force_out 0 crowd_out 0 001 @ 02013571 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | press, force, or thrust out of a small space; "The weeds crowded out the flowers" -02014024 38 v 01 evacuate 0 003 > 01855606 v 0000 @ 02013571 v 0000 + 00054821 n 0101 01 + 09 00 | move people from their homes or country -02014165 38 v 08 depart 1 part 0 start 2 start_out 0 set_forth 0 set_off 0 set_out 0 take_off 0 012 @ 02009433 v 0000 + 00306102 n 0801 + 00053097 n 0204 ^ 02345647 v 0203 + 07333649 n 0103 + 00042757 n 0101 + 10004539 n 0101 + 07375635 n 0801 ~ 02014553 v 0000 ~ 02014733 v 0000 ~ 02014863 v 0000 ~ 02015031 v 0000 03 + 01 00 + 02 00 + 22 00 | leave; "The family took off for Florida" -02014553 38 v 02 take_off 2 lift_off 0 003 @ 02014165 v 0000 + 07371168 n 0201 + 07375635 n 0101 02 + 01 00 + 04 00 | depart from the ground; "The plane took off two hours late" -02014733 38 v 01 roar_off 0 001 @ 02014165 v 0000 04 + 01 00 + 02 00 + 20 00 + 21 00 | leave; "The car roared off into the fog" -02014863 38 v 02 blaze 0 blaze_out 0 001 @ 02014165 v 0000 04 + 01 00 + 02 00 + 20 00 + 21 00 | move rapidly and as if blazing; "The spaceship blazed out into space" -02015031 38 v 02 sally_forth 0 sally_out 1 001 @ 02014165 v 0000 02 + 02 00 + 22 00 | set out in a sudden, energetic or violent manner -02015168 38 v 02 pull_out 0 get_out 0 004 $ 02380980 v 0000 @ 02009433 v 0000 + 00057306 n 0103 ! 02015384 v 0101 04 + 01 00 + 02 00 + 08 00 + 22 00 | move out or away; "The troops pulled out after the cease-fire" -02015384 38 v 04 pull_in 0 get_in 0 move_in 1 draw_in 0 003 @ 02005948 v 0000 ! 02015168 v 0101 $ 02054703 v 0000 02 + 01 00 + 02 00 | of trains; move into (a station); "The bullet train drew into Tokyo Station" -02015598 38 v 04 exit 0 go_out 0 get_out 1 leave 0 016 @ 01831531 v 0000 + 00053097 n 0402 + 00058519 n 0101 + 03303965 n 0101 ! 02016523 v 0101 ~ 01848718 v 0000 ~ 01920457 v 0000 ~ 01920594 v 0000 ~ 01923732 v 0000 ~ 02008674 v 0000 $ 02009433 v 0000 ~ 02016062 v 0000 ~ 02016401 v 0000 ~ 02076999 v 0000 ~ 02085971 v 0000 ~ 02249293 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | move out of or depart from; "leave the room"; "the fugitive has left the country" -02016062 38 v 01 get_off 2 004 @ 02015598 v 0000 ! 02018049 v 0102 ~ 02016220 v 0000 ~ 02016298 v 0000 02 + 02 00 + 08 00 | leave a vehicle, aircraft, etc. -02016220 38 v 01 detrain 0 001 @ 02016062 v 0000 01 + 02 00 | leave a train -02016298 38 v 01 deplane 0 002 @ 02016062 v 0000 ;c 00300441 n 0000 01 + 02 00 | get off an airplane -02016401 38 v 01 step_out 0 001 @ 02015598 v 0000 01 + 02 00 | go outside a room or building for a short period of time -02016523 38 v 07 enter 0 come_in 2 get_into 0 get_in 1 go_into 0 go_in 0 move_into 0 024 ^ 01855982 v 0701 + 03290771 n 0105 + 10060175 n 0101 + 07370125 n 0101 + 00049003 n 0101 + 03290771 n 0104 + 00049003 n 0103 + 07370125 n 0102 + 00049003 n 0102 ! 02015598 v 0101 ^ 02212646 v 0101 ~ 01154554 v 0000 ~ 01227675 v 0000 ~ 01852892 v 0000 ~ 01920220 v 0000 ~ 01920330 v 0000 ~ 02017149 v 0000 ~ 02017299 v 0000 ~ 02017663 v 0000 ~ 02017775 v 0000 ~ 02018049 v 0000 ~ 02018524 v 0000 ~ 02019716 v 0000 ~ 02085742 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | to come or go into; "the boat entered an area of shallow marshes" -02017149 38 v 01 walk_in 0 002 @ 02016523 v 0000 + 10764296 n 0101 01 + 02 00 | enter by walking; "She walks in at all hours, as if she lived here" -02017299 38 v 02 call_at 0 out_in 0 001 @ 02016523 v 0000 01 + 11 00 | enter a harbor; "the ship called in Athens" -02017416 38 v 01 plump_in 0 001 @ 02005948 v 0000 01 + 02 00 | arrive suddenly and unannounced; "He plumped in on a Sunday morning" -02017550 38 v 01 plump_out 0 001 @ 02008396 v 0000 01 + 22 00 | depart suddenly; "He plumped out of the house" -02017663 38 v 01 take_water 0 001 @ 02016523 v 0000 01 + 02 00 | enter the water; "the wild ducks took water" -02017775 38 v 01 turn_in 0 001 @ 02016523 v 0000 04 + 01 00 + 02 00 + 22 00 + 24 00 | make an entrance by turning from a road; "Turn in after you see the gate" -02017937 38 v 02 edge_in 0 edge_up 0 001 @ 02053941 v 0000 02 + 02 00 + 22 00 | push one's way into (a space) -02018049 38 v 02 board 0 get_on 3 006 @ 02016523 v 0000 + 09862479 n 0101 ~ 01979462 v 0000 ~ 01979624 v 0000 ! 02016062 v 0201 ~ 02018372 v 0000 01 + 08 00 | get on board of (trains, buses, ships, aircraft, etc.) -02018265 38 v 02 emplane 0 enplane 0 002 @ 01979462 v 0000 ;c 00300441 n 0000 01 + 02 00 | board a plane -02018372 38 v 01 catch 0 003 $ 01155090 v 0000 @ 02018049 v 0000 ~ 02006573 v 0000 01 + 08 00 | reach in time; "I have to catch a train at 7 o'clock" -02018524 38 v 02 intrude 1 irrupt 1 010 @ 02016523 v 0000 + 00049636 n 0201 + 01352067 a 0101 + 00733483 n 0104 + 10213652 n 0101 ^ 02019716 v 0101 ~ 01207817 v 0000 ~ 02018858 v 0000 ~ 02019011 v 0000 ~ 02019175 v 0000 02 + 02 00 + 22 00 | enter uninvited; "They intruded on our dinner party"; "She irrupted into our sitting room" -02018858 38 v 01 bother 0 001 @ 02018524 v 0000 01 + 09 00 | intrude or enter uninvited; "Don't bother the professor while she is grading term papers" -02019011 38 v 03 barge_in 0 crash 0 gate-crash 0 002 @ 02018524 v 0000 + 10121952 n 0202 02 + 02 00 + 22 00 | enter uninvited; informal; "let's crash the party!" -02019175 38 v 01 move_in_on 0 001 @ 02018524 v 0000 02 + 08 00 + 09 00 | make intrusive advances towards -02019282 38 v 01 crash 4 001 @ 02050132 v 0000 03 + 01 00 + 02 00 + 22 00 | move violently as through a barrier; "The terrorists crashed the gate" -02019431 38 v 01 muscle 0 002 @ 02050132 v 0000 + 05030418 n 0103 01 + 22 00 | make one's way by force; "He muscled his way into the office" -02019574 38 v 03 transgress 0 trespass 0 overstep 0 002 @ 02050132 v 0000 + 00744862 n 0101 01 + 08 00 | pass beyond (limits or boundaries) -02019716 38 v 04 intrude_on 0 invade 0 obtrude_upon 0 encroach_upon 0 005 @ 02016523 v 0000 + 01352320 a 0202 + 07429976 n 0201 + 10214062 n 0201 ~ 02020027 v 0000 01 + 08 00 | to intrude upon, infringe, encroach on, violate; "This new colleague invades my territory"; "The neighbors intrude on your privacy" -02020027 38 v 02 foray_into 0 raid 0 003 @ 02019716 v 0000 + 10443170 n 0206 ~ 02020237 v 0000 01 + 08 00 | enter someone else's territory and take spoils; "The pirates raided the coastal villages regularly" -02020237 38 v 01 maraud 0 003 @ 02020027 v 0000 + 00976953 n 0103 + 10293172 n 0101 01 + 02 00 | raid and rove in search of booty; "marauding rebels overran the countryside" -02020413 38 v 02 infest 0 overrun 1 003 @ 01126360 v 0000 + 14452616 n 0101 + 07996412 n 0101 02 + 10 00 + 11 00 | invade in great numbers; "the roaches infested our kitchen" -02020590 38 v 06 reach 1 make 0 attain 1 hit 0 arrive_at 0 gain 0 015 * 01835496 v 0000 + 00048656 n 0301 ~ 01998793 v 0000 ~ 01999082 v 0000 ~ 02007417 v 0000 ~ 02007898 v 0000 ~ 02008066 v 0000 ~ 02021149 v 0000 ~ 02021376 v 0000 $ 02021532 v 0000 ~ 02021532 v 0000 ~ 02021653 v 0000 ~ 02021773 v 0000 ~ 02021921 v 0000 ~ 02022359 v 0000 01 + 08 00 | reach a destination, either real or abstract; "We hit Detroit by noon"; "The water reached the doorstep"; "We barely made it to the finish line"; "I have to hit the MAC machine before the weekend starts" -02021149 38 v 02 summit 0 breast 1 002 @ 02020590 v 0000 + 08617963 n 0106 03 + 02 00 + 08 00 + 11 00 | reach the summit (of a mountain); "They breasted the mountain"; "Many mountaineers go up Mt. Everest but not all summit" -02021376 38 v 01 top 4 002 @ 02020590 v 0000 + 08617963 n 0104 01 + 08 00 | reach or ascend the top of; "The hikers topped the mountain just before noon" -02021532 38 v 01 make f 002 $ 02020590 v 0000 @ 02020590 v 0000 01 + 08 00 | reach in time; "We barely made the plane" -02021653 38 v 01 find a 001 @ 02020590 v 0000 01 + 11 00 | succeed in reaching; arrive at; "The arrow found its mark" -02021773 38 v 01 culminate 0 002 @ 02020590 v 0000 + 08548239 n 0101 01 + 01 00 | reach the highest altitude or the meridian, of a celestial body -02021921 38 v 02 get_through 0 come_through 0 001 @ 02020590 v 0000 02 + 01 00 + 02 00 | succeed in reaching a real or abstract destination after overcoming problems; "We finally got through the bureaucracy and could talk to the Minister" -02022162 38 v 04 reach 6 make 2 get_to 2 progress_to 0 002 @ 02526085 v 0000 + 00048225 n 0102 01 + 08 00 | reach a goal, e.g., "make the first team"; "We made it!"; "She may not make the grade" -02022359 38 v 02 ground 0 run_aground 3 002 @ 02020590 v 0000 + 09334396 n 0104 02 + 01 00 + 02 00 | hit or reach the ground -02022486 38 v 03 ground 1 strand 2 run_aground 1 003 > 02022359 v 0000 @ 02087156 v 0000 + 09334396 n 0104 01 + 08 00 | bring to the ground; "the storm grounded the ship" -02022659 38 v 01 miss 0 003 * 01835496 v 0000 @ 02528380 v 0000 + 07319774 n 0101 01 + 11 00 | fail to reach or get to; "She missed her train" -02022804 38 v 01 meet 6 002 @ 02428924 v 0000 ~ 02022977 v 0000 02 + 08 00 + 09 00 | meet by design; be present at the arrival of; "Can you meet me at the train station?" -02022977 38 v 01 meet_up_with 0 001 @ 02022804 v 0000 01 + 09 00 | meet with by appointment; "She met up with her former lover" -02023107 38 v 06 meet 1 run_into 1 encounter 0 run_across 0 come_across 0 see 0 005 $ 02428924 v 0000 + 00147187 n 0301 + 08307589 n 0101 + 07414922 n 0101 ~ 02023396 v 0000 03 + 08 00 + 09 00 + 11 00 | come together; "I'll probably see you at the meeting"; "How nice to see you again!" -02023396 38 v 02 intersect 0 cross 3 006 @ 02023107 v 0000 + 08547938 n 0201 + 03581125 n 0204 + 00653044 a 0102 + 00146111 n 0101 ~ 01913997 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | meet at a point -02023600 38 v 01 congregate 0 005 @ 02428924 v 0000 + 07976181 n 0101 + 07991364 n 0101 + 01231686 n 0101 + 01231686 n 0102 02 + 02 00 + 22 00 | come together, usually for a purpose; "The crowds congregated in front of the Vatican on Christmas Eve" -02023851 38 v 01 hive 0 001 @ 02428924 v 0000 02 + 01 00 + 02 00 | move together in a hive or as if in a hive; "The bee swarms are hiving" -02023992 38 v 02 fort 0 fort_up 0 003 @ 02428924 v 0000 + 03386011 n 0102 + 03420559 n 0102 02 + 02 00 + 22 00 | gather in, or as if in, a fort, as for protection or defense -02024168 38 v 01 mass 0 003 @ 02027612 v 0000 + 07962124 n 0101 ~ 02024367 v 0000 02 + 02 00 + 22 00 | join together into a mass or collect or form a mass; "Crowds were massing outside the palace" -02024367 38 v 01 press 0 002 @ 02024168 v 0000 + 08183398 n 0103 02 + 04 00 + 22 00 | crowd closely; "The crowds pressed along the street" -02024508 38 v 01 convene 0 005 @ 02428924 v 0000 + 01231819 n 0101 + 01231819 n 0102 ~ 02024716 v 0000 ~ 02024874 v 0000 04 + 02 00 + 08 00 + 09 00 + 22 00 | meet formally; "The council convened last week" -02024716 38 v 01 reconvene 0 001 @ 02024508 v 0000 02 + 01 00 + 02 00 | meet again; "The bill will be considered when the Legislature reconvenes next Fall" -02024874 38 v 01 sit 1 002 @ 02024508 v 0000 + 07146190 n 0101 02 + 01 00 + 02 00 | be in session; "When does the court of law sit?" -02025009 38 v 04 cluster 0 constellate 0 flock 0 clump 1 009 @ 02428924 v 0000 + 07959943 n 0402 + 08274565 n 0302 + 09252970 n 0201 + 05731779 n 0202 + 07959943 n 0103 + 07959943 n 0104 ~ 02027226 v 0000 ~ 02027411 v 0000 03 + 02 00 + 04 00 + 22 00 | come together as in a cluster or flock; "The poets constellate in this town every summer" -02025353 38 v 01 flock 1 002 @ 01835496 v 0000 + 08274565 n 0102 02 + 04 00 + 22 00 | move as a crowd or in a group; "Tourists flocked to the shrine where the statue was said to have shed tears" -02025550 38 v 01 accompany 0 007 @ 01835496 v 0000 + 00827782 n 0102 ~ 01907076 v 0000 ~ 01927747 v 0000 ~ 02025829 v 0000 ~ 02026086 v 0000 ~ 02027030 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 | go or travel along with; "The nurse accompanied the old lady everywhere" -02025829 38 v 01 escort 0 006 @ 02025550 v 0000 + 09992538 n 0102 ~ 02026203 v 0000 ~ 02026327 v 0000 ~ 02026433 v 0000 ~ 02026712 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | accompany as an escort; "She asked her older brother to escort her to the ball" -02026086 38 v 02 see 3 escort 1 001 @ 02025550 v 0000 01 + 08 00 | accompany or escort; "I'll see you to the door" -02026203 38 v 01 squire 0 002 @ 02025829 v 0000 + 10643937 n 0101 01 + 09 00 | attend upon as a squire; serve as a squire -02026327 38 v 01 safeguard 0 002 @ 02025829 v 0000 + 06691267 n 0102 02 + 08 00 + 09 00 | escort safely -02026433 38 v 01 convoy 0 005 @ 02025829 v 0000 * 01128193 v 0000 + 08417673 n 0101 + 08417801 n 0101 + 00827974 n 0101 02 + 08 00 + 09 00 | escort in transit; "the trucks convoyed the cars across the battle zone"; "the warships convoyed the merchant ships across the Pacific" -02026712 38 v 02 chaperone 0 chaperon 0 004 @ 02025829 v 0000 * 01128193 v 0000 + 09908273 n 0201 + 09908273 n 0102 01 + 09 00 | accompany as a chaperone -02026868 38 v 01 body_guard 0 004 @ 01128193 v 0000 * 02025829 v 0000 + 09863031 n 0101 + 08215801 n 0101 01 + 09 00 | accompany and protect from physical harm -02027030 38 v 01 tag_along 0 002 @ 02025550 v 0000 + 10688671 n 0101 02 + 02 00 + 22 00 | go along with, often uninvited; "my younger brother often tagged along when I went out with my friends" -02027226 38 v 02 huddle 1 huddle_together 0 003 @ 02025009 v 0000 + 08184439 n 0101 + 10190871 n 0101 02 + 02 00 + 22 00 | crowd or draw together; "let's huddle together--it's cold!" -02027411 38 v 03 bunch_together 0 bunch 0 bunch_up 0 002 @ 02025009 v 0000 + 07959943 n 0201 01 + 22 00 | form into a bunch; "The frightened children bunched together in the corner of the classroom" -02027612 38 v 02 crowd 0 crowd_together 0 008 @ 02428924 v 0000 + 08182379 n 0101 + 13933841 n 0101 ~ 02024168 v 0000 ~ 02027926 v 0000 ~ 02028366 v 0000 ~ 02028616 v 0000 ~ 02064131 v 0000 02 + 02 00 + 22 00 | to gather together in large numbers; "men in straw boaters and waxed mustaches crowded the verandah" -02027926 38 v 01 overcrowd 0 002 @ 02027612 v 0000 + 13944747 n 0102 01 + 02 00 | crowd together too much -02028034 38 v 01 surcharge 0 001 @ 02028181 v 0000 01 + 08 00 | fill to capacity with people; "The air raids had surcharged the emergency wards" -02028181 38 v 01 overcrowd 1 003 @ 02028722 v 0000 + 13944747 n 0102 ~ 02028034 v 0000 02 + 08 00 + 09 00 | cause to crowd together too much; "The students overcrowded the cafeteria" -02028366 38 v 05 pour 0 swarm 0 stream 3 teem 0 pullulate 0 004 @ 02027612 v 0000 + 14005892 n 0301 + 08184217 n 0203 ~ 02070150 v 0000 01 + 22 00 | move in large numbers; "people were pouring out of the theater"; "beggars pullulated in the plaza" -02028616 38 v 01 herd 0 002 @ 02027612 v 0000 + 08183046 n 0102 01 + 02 00 | move together, like a herd -02028722 38 v 02 herd 1 crowd 1 006 @ 01850315 v 0000 + 08182379 n 0201 + 13933841 n 0201 + 08183046 n 0102 + 10171567 n 0101 ~ 02028181 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | cause to herd, drive, or crowd together; "We herded the children into a spare classroom" -02028994 38 v 04 disperse 0 dissipate 0 scatter 0 spread_out 2 009 @ 02030158 v 0000 + 05088324 n 0301 + 00369138 n 0301 + 00369138 n 0302 + 07332148 n 0201 + 07331759 n 0101 ~ 01377940 v 0000 ~ 02029369 v 0000 ~ 02029492 v 0000 02 + 01 00 + 02 00 | move away from each other; "The crowds dispersed"; "The children scattered in all directions when the teacher approached"; -02029369 38 v 01 break 8 001 @ 02028994 v 0000 01 + 01 00 | scatter or part; "The clouds broke after the heavy downpour" -02029492 38 v 01 volley 1 003 $ 01377571 v 0000 @ 02028994 v 0000 + 00988320 n 0103 02 + 01 00 + 04 00 | be dispersed in a volley; "gun shots volleyed at the attackers" -02029663 38 v 01 break_up 0 003 @ 02030158 v 0000 + 07331400 n 0102 ~ 02029944 v 0000 02 + 01 00 + 02 00 | come apart; "the group broke up" -02029805 38 v 01 diffract 0 002 @ 02030158 v 0000 + 11446934 n 0101 01 + 01 00 | undergo diffraction; "laser light diffracts electrons" -02029944 38 v 02 disband 0 dissolve 0 002 @ 02029663 v 0000 + 01082720 n 0101 02 + 01 00 + 02 00 | stop functioning or cohering as a unit; "The political wing of the party dissolved after much internal fighting" -02030158 38 v 03 separate 0 part 2 split 0 007 @ 01831531 v 0000 + 00386676 n 0302 + 00053097 n 0204 + 01201021 n 0101 ~ 02028994 v 0000 ~ 02029663 v 0000 ~ 02029805 v 0000 02 + 01 00 + 02 00 | go one's own way; move apart; "The friends separated after the party" -02030424 38 v 05 disperse 1 dissipate 1 dispel 1 break_up 1 scatter 1 008 @ 02031158 v 0000 + 05088324 n 0501 + 00369138 n 0501 + 07331759 n 0502 + 00369138 n 0502 + 07332148 n 0201 + 00368592 n 0101 ~ 02030967 v 0000 02 + 09 00 + 10 00 | to cause to separate and go in different directions; "She waved her hand and scattered the crowds" -02030764 38 v 01 break a 003 @ 02075462 v 0000 ;c 08199025 n 0000 $ 02073233 v 0000 02 + 01 00 + 02 00 | make a rupture in the ranks of the enemy or one's own by quitting or fleeing; "The ranks broke" -02030967 38 v 01 disband 1 002 @ 02030424 v 0000 + 01082720 n 0101 02 + 09 00 + 10 00 | cause to break up or cease to function; "the principal disbanded the political student organization" -02031158 38 v 02 separate 1 divide 0 009 + 00784533 a 0201 + 00397953 n 0201 + 00565289 a 0102 ~ 00332835 v 0000 ~ 00334996 v 0000 ~ 02030424 v 0000 ~ 02031430 v 0000 ~ 02031622 v 0000 ~ 02031826 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make a division or separation -02031430 38 v 02 rail 1 rail_off 0 003 @ 02031158 v 0000 + 04047401 n 0102 + 04047401 n 0101 02 + 08 00 + 11 00 | separate with a railing; "rail off the crowds from the Presidential palace" -02031622 38 v 01 detach 0 003 @ 02031158 v 0000 ;c 08199025 n 0000 + 08215248 n 0101 02 + 08 00 + 09 00 | separate (a small unit) from a larger, especially for a special assignment; "detach a regiment" -02031826 38 v 02 shut_off 0 close_off 0 002 @ 02031158 v 0000 ~ 02032010 v 0000 05 + 06 00 + 08 00 + 09 00 + 10 00 + 11 00 | isolate or separate; "She was shut off from the friends" -02032010 38 v 01 curtain_off 0 001 @ 02031826 v 0000 02 + 08 00 + 10 00 | separate by means of a curtain -02032117 38 v 01 avulse 0 002 @ 01458973 v 0000 + 00384658 n 0101 02 + 08 00 + 11 00 | separate by avulsion -02032227 38 v 02 sprawl 0 straggle 1 002 @ 01378556 v 0000 + 07939159 n 0201 02 + 01 00 + 04 00 | go, come, or spread in a rambling or irregular way; "Branches straggling out quite far" -02032415 38 v 01 diverge 0 006 @ 01831531 v 0000 + 00612652 a 0101 + 01004072 n 0102 + 01004072 n 0101 ! 02032634 v 0101 ~ 00328802 v 0000 03 + 01 00 + 02 00 + 22 00 | move or draw apart; "The two paths diverge here" -02032634 38 v 01 converge 0 008 @ 02428924 v 0000 + 00612114 a 0101 + 00146572 n 0103 + 00146572 n 0101 + 07414740 n 0101 + 00146572 n 0102 ! 02032415 v 0101 ~ 02032934 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move or draw together at a certain location; "The crowd converged on the movie star" -02032934 38 v 01 concentrate 0 003 @ 02032634 v 0000 + 05088804 n 0101 + 01231980 n 0101 02 + 04 00 + 22 00 | draw together or meet in one common center; "These groups concentrate in the inner cities" -02033137 38 v 01 bend 1 004 @ 01907258 v 0000 + 00107875 n 0104 + 13869327 n 0101 + 02829696 n 0101 02 + 01 00 + 04 00 | change direction; "The road bends" -02033295 38 v 08 swerve 0 sheer 0 curve 0 trend 0 veer 0 slue 0 slew 0 cut 8 010 @ 01907258 v 0000 + 01263257 n 0503 + 08681222 n 0402 + 13867641 n 0301 + 02829696 n 0302 + 07411350 n 0102 + 01263257 n 0101 + 01263257 n 0102 ~ 02033703 v 0000 ~ 02034004 v 0000 02 + 01 00 + 04 00 | turn sharply; change direction abruptly; "The car cut to the left at the intersection"; "The motorbike veered to the right" -02033703 38 v 01 peel_off 0 002 @ 02033295 v 0000 ;c 00300441 n 0000 01 + 01 00 | leave a formation -02033805 38 v 01 deflect 0 005 @ 01907258 v 0000 + 02312918 a 0101 + 00350380 n 0105 + 00350380 n 0104 + 03172038 n 0101 02 + 01 00 + 02 00 | turn aside and away from an initial or intended course -02034004 38 v 01 yaw 1 001 @ 02033295 v 0000 02 + 01 00 + 02 00 | swerve off course momentarily; "the ship yawed when the huge waves hit it" -02034147 38 v 01 hunt 4 002 @ 02066028 v 0000 ;c 02691156 n 0000 02 + 01 00 + 02 00 | yaw back and forth about a flight path; "the plane's nose yawed" -02034300 38 v 03 deflect 1 bend 2 turn_away 0 004 @ 01907258 v 0000 + 00350380 n 0105 + 00350380 n 0104 + 03172038 n 0101 02 + 08 00 + 11 00 | turn from a straight course, fixed direction, or line of interest -02034511 38 v 02 avert 0 turn_away 1 002 @ 01907258 v 0000 + 00204022 n 0101 01 + 11 00 | turn away or aside; "They averted their eyes when the King entered" -02034671 38 v 02 crook 0 curve 2 004 @ 02035919 v 0000 + 14213328 n 0201 + 13869327 n 0102 ~ 02034883 v 0000 02 + 01 00 + 08 00 | bend or cause to bend; "He crooked his index finger"; "the road curved sharply" -02034883 38 v 01 recurve 0 001 @ 02034671 v 0000 01 + 08 00 | curve or bend (something) back or down -02034986 38 v 03 arch 0 curve 1 arc 0 011 @ 02035919 v 0000 + 13896100 n 0302 + 13874384 n 0301 + 05072663 n 0202 + 14213328 n 0201 + 05072663 n 0201 + 13886133 n 0101 + 05576573 n 0101 + 02734217 n 0101 + 02733524 n 0101 ~ 02035425 v 0000 02 + 01 00 + 08 00 | form an arch or curve; "her back arches"; "her hips curve nicely" -02035315 38 v 02 overarch 0 arch_over 0 000 01 + 11 00 | form an arch over; "Big rocks overarch the stream" -02035425 38 v 01 camber 0 003 @ 02034986 v 0000 + 13864423 n 0101 + 09213828 n 0103 02 + 01 00 + 08 00 | curve upward in the middle -02035559 38 v 04 hunch 0 hump 0 hunch_forward 0 hunch_over 0 004 * 02035919 v 0000 @ 01983771 v 0000 + 13894434 n 0203 + 00406114 n 0101 01 + 02 00 | round one's back by bending forward and drawing the shoulders forward -02035781 38 v 02 straighten 0 unbend 0 002 @ 01983771 v 0000 ! 02035919 v 0101 02 + 01 00 + 08 00 | straighten up or out; make straight -02035919 38 v 02 bend 0 flex 0 017 @ 00140967 v 0000 + 00405360 n 0202 + 13907415 n 0204 + 01022367 a 0101 + 02830157 n 0101 + 13869327 n 0101 + 13907415 n 0106 ! 02035781 v 0101 ~ 02034671 v 0000 ~ 02034986 v 0000 ~ 02036339 v 0000 ~ 02036498 v 0000 ~ 02038357 v 0000 ~ 02062632 v 0000 ~ 02063309 v 0000 ~ 02063771 v 0000 ~ 02098458 v 0000 04 + 01 00 + 02 00 + 08 00 + 11 00 | form a curve; "The stick does not bend" -02036339 38 v 01 incurvate 0 003 @ 02035919 v 0000 + 00406234 n 0101 + 13864965 n 0103 01 + 01 00 | bend inwards; "The body incurvates a little at the back" -02036498 38 v 02 retroflex 0 replicate 0 003 @ 02035919 v 0000 + 00341890 n 0101 + 00341890 n 0102 03 + 01 00 + 08 00 + 11 00 | bend or turn backward -02036650 38 v 02 dress 7 line_up 0 001 @ 01987160 v 0000 01 + 02 00 | arrange in ranks; "dress troops" -02036755 38 v 03 line_up 1 queue_up 0 queue 0 004 * 02637938 v 0000 @ 01546111 v 0000 + 08432345 n 0301 + 08431205 n 0101 01 + 02 00 | form a queue, form a line, stand in line; "Customers lined up in front of the store" -02036977 38 v 01 flex 1 002 @ 00240571 v 0000 + 00405628 n 0101 02 + 01 00 + 08 00 | contract; "flex a muscle" -02037090 38 v 03 slope 0 incline 0 pitch 1 015 @ 02038357 v 0000 + 05069199 n 0301 + 04051549 n 0202 + 09437454 n 0202 + 13889843 n 0201 + 13889602 n 0201 + 13892897 n 0205 + 05068080 n 0203 + 05068461 n 0102 + 09437454 n 0101 ~ 02037472 v 0000 ~ 02037683 v 0000 ~ 02037839 v 0000 ~ 02037989 v 0000 ~ 02038145 v 0000 02 + 01 00 + 04 00 | be at an angle; "The terrain sloped down" -02037472 38 v 01 ascend 1 006 @ 02037090 v 0000 + 02484638 a 0103 + 02484638 a 0102 + 02484638 a 0101 + 09206985 n 0101 + 06830561 n 0101 01 + 01 00 | slope upwards; "The path ascended to the top of the hill" -02037683 38 v 01 stoop 5 002 @ 02037090 v 0000 + 10659762 n 0101 01 + 01 00 | sag, bend, bend over or down; "the rocks stooped down over the hiking path" -02037839 38 v 01 fall b 002 @ 02037090 v 0000 + 09265620 n 0103 02 + 01 00 + 04 00 | slope downward; "The hills around here fall towards the ocean" -02037989 38 v 01 climb 6 002 @ 02037090 v 0000 + 09206985 n 0105 02 + 01 00 + 04 00 | slope upward; "The path climbed all the way to the top of the hill" -02038145 38 v 01 dip 2 002 @ 02037090 v 0000 + 13904506 n 0101 01 + 01 00 | slope downwards; "Our property dips towards the river" -02038278 38 v 01 weather 0 001 @ 02038357 v 0000 01 + 08 00 | cause to slope -02038357 38 v 05 lean 0 tilt 0 tip 1 slant 0 angle 0 015 @ 02035919 v 0000 + 13887509 n 0501 + 05069199 n 0403 ^ 01909978 v 0302 ^ 01909397 v 0303 + 05068080 n 0201 + 00348008 n 0204 + 05068080 n 0104 + 00105624 n 0101 ^ 01590007 v 0103 ^ 01590007 v 0101 ~ 02037090 v 0000 ~ 02038278 v 0000 ~ 02038791 v 0000 ~ 02039156 v 0000 03 + 01 00 + 04 00 + 22 00 | to incline or bend from a vertical position; "She leaned over the banister" -02038791 38 v 02 list 0 heel 1 003 @ 02038357 v 0000 + 05068080 n 0102 $ 02039013 v 0000 02 + 04 00 + 22 00 | tilt to one side; "The balloon heeled over"; "the wind made the vessel heel"; "The ship listed to starboard" -02039013 38 v 02 list 1 lean 7 002 $ 02038791 v 0000 @ 01831531 v 0000 01 + 11 00 | cause to lean to the side; "Erosion listed the old tree" -02039156 38 v 02 lean_back 0 recline 0 003 @ 02038357 v 0000 + 00341548 n 0201 ~ 02039315 v 0000 02 + 01 00 + 02 00 | move the upper body backwards and down -02039315 38 v 01 fall_back 1 001 @ 02039156 v 0000 02 + 01 00 + 02 00 | fall backwards and down -02039413 38 v 01 bank 0 002 @ 02039544 v 0000 + 00169305 n 0101 01 + 08 00 | tip laterally; "the pilot had to bank the aircraft" -02039544 38 v 01 tip 2 003 @ 01908543 v 0000 + 03256166 n 0106 ~ 02039413 v 0000 01 + 08 00 | cause to tilt; "tip the screen upward" -02039679 38 v 02 dip 1 sink 4 002 @ 02039876 v 0000 ~ 01986367 v 0000 02 + 01 00 + 04 00 | appear to move downward; "The sun dipped below the horizon"; "The setting sun sank below the tree line" -02039876 38 v 01 decline 0 005 @ 01976841 v 0000 + 09265620 n 0104 + 09265620 n 0106 + 09265620 n 0105 ~ 02039679 v 0000 02 + 01 00 + 04 00 | go down; "The roof declines here" -02040054 38 v 05 ripple 0 ruffle 0 riffle 0 cockle 0 undulate 1 005 @ 02066510 v 0000 * 01277974 v 0000 + 07344663 n 0303 + 07344663 n 0101 + 07344663 n 0102 02 + 01 00 + 08 00 | stir up (water) so as to form ripples -02040273 38 v 01 bow 0 007 @ 01983771 v 0000 + 07274425 n 0101 ^ 02063610 v 0102 ~ 00899041 v 0000 ~ 02040549 v 0000 ~ 02040709 v 0000 ~ 02040934 v 0000 01 + 02 00 | bend the head or the upper part of the body in a gesture of respect or greeting; "He bowed before the King" -02040549 38 v 02 curtsy 0 curtsey 0 003 @ 02040273 v 0000 + 07274890 n 0202 + 07274890 n 0101 01 + 02 00 | bend the knees in a gesture of respectful greeting -02040709 38 v 03 scrape 0 kowtow 0 genuflect 1 006 @ 02040273 v 0000 + 07275078 n 0301 + 07275078 n 0302 + 07275275 n 0201 + 07275489 n 0101 + 07275489 n 0102 02 + 02 00 + 22 00 | bend the knees and bow in a servile manner -02040934 38 v 01 genuflect 0 003 @ 02040273 v 0000 + 07275078 n 0101 + 07275078 n 0102 01 + 02 00 | bend the knees and bow in church or before a religious superior or image -02041109 38 v 01 dip 3 001 @ 01973125 v 0000 01 + 08 00 | lower briefly; "She dipped her knee" -02041206 38 v 03 billow 0 surge 1 heave 0 005 @ 00264034 v 0000 + 07370968 n 0301 + 07370968 n 0302 + 07440240 n 0203 + 07348545 n 0101 01 + 01 00 | rise and move, as in waves or billows; "The army surged forward" -02041422 38 v 02 billow 2 wallow 2 002 @ 01943718 v 0000 ~ 02041577 v 0000 02 + 01 00 + 04 00 | rise up as if in waves; "smoke billowed up into the sky" -02041577 38 v 01 cloud 0 002 @ 02041422 v 0000 + 09247410 n 0101 01 + 01 00 | billow up in the form of a cloud; "The smoke clouded above the houses" -02041728 38 v 01 billow 3 001 @ 01835496 v 0000 02 + 02 00 + 22 00 | move with great difficulty; "The soldiers billowed across the muddy riverbed" -02041877 38 v 05 crumble 0 crumple 0 tumble 3 break_down 0 collapse 2 001 @ 00140123 v 0000 01 + 01 00 | fall apart; "the building crumbled after the explosion"; "Negotiations broke down" -02042067 38 v 02 burrow 0 tunnel 0 003 @ 01309701 v 0000 + 09230041 n 0202 + 09230041 n 0101 01 + 04 00 | move through by or as by digging; "burrow through the forest" -02042237 38 v 01 circulate 0 002 @ 01835496 v 0000 ~ 01903218 v 0000 05 + 01 00 + 02 00 + 04 00 + 08 00 + 22 00 | move around freely; "She circulates among royalty" -02042404 38 v 01 circulate 1 004 @ 02066939 v 0000 + 02951565 a 0101 + 11439031 n 0101 ~ 02042672 v 0000 02 + 01 00 + 04 00 | move through a space, circuit or system, returning to the starting point; "Blood circulates in my veins"; "The air here does not circulate" -02042672 38 v 01 ventilate 0 003 @ 02042404 v 0000 + 04526520 n 0101 + 00266645 n 0101 01 + 11 00 | circulate through and freshen; "The gust of air ventilated the room" -02042843 38 v 01 circulate 4 005 > 02042404 v 0000 @ 01850315 v 0000 + 11439031 n 0101 + 07312221 n 0101 ~ 02043068 v 0000 02 + 08 00 + 11 00 | cause to move in a circuit or system; "The fan circulates the air in the room" -02043068 38 v 01 convect 0 002 @ 02042843 v 0000 + 13452750 n 0101 02 + 08 00 + 11 00 | circulate hot air by convection -02043190 38 v 04 circulate 3 pass_around 0 pass_on 0 distribute 0 008 @ 01850315 v 0000 + 07250339 n 0101 + 13592384 n 0101 + 06253371 n 0101 + 00368302 n 0101 ~ 02043501 v 0000 ~ 02043851 v 0000 ~ 02082690 v 0000 02 + 08 00 + 15 00 | cause be distributed; "This letter is being circulated among the faculty" -02043501 38 v 01 send_around 0 002 @ 02043190 v 0000 ~ 02043665 v 0000 03 + 08 00 + 11 00 + 15 00 | forward to others; "he is sending around an appeal for funds" -02043665 38 v 02 circularize 0 circularise 0 005 @ 02043501 v 0000 + 01101753 n 0202 + 07250339 n 0201 + 01101753 n 0101 + 07250339 n 0101 02 + 08 00 + 11 00 | distribute circulars to -02043851 38 v 01 utter 0 002 @ 02043190 v 0000 + 10743543 n 0101 01 + 08 00 | put into circulation; "utter counterfeit currency" -02043982 38 v 03 orb 0 orbit 0 revolve 1 006 @ 02044278 v 0000 + 07440979 n 0302 + 08612340 n 0201 + 08612049 n 0201 + 04137444 n 0203 ~ 01995097 v 0000 02 + 04 00 + 11 00 | move in an orbit; "The moon orbits around the Earth"; "The planets are orbiting the sun"; "electrons orbit the nucleus" -02044278 38 v 02 circle 0 circulate 2 008 @ 01835496 v 0000 + 03032811 n 0201 + 00295172 n 0202 + 00295172 n 0102 ~ 02043982 v 0000 ~ 02044503 v 0000 ~ 02044596 v 0000 ~ 02044745 v 0000 02 + 01 00 + 02 00 | move in circles -02044503 38 v 01 troll 1 001 @ 02044278 v 0000 02 + 01 00 + 02 00 | circulate, move around -02044596 38 v 01 loop 0 002 @ 02044278 v 0000 + 00169811 n 0101 02 + 02 00 + 08 00 | fly loops, perform a loop; "the stunt pilot looped his plane" -02044745 38 v 01 loop 1 001 @ 02044278 v 0000 02 + 01 00 + 02 00 | move in loops; "The bicycle looped around the tree" -02044866 38 v 01 angle 1 003 @ 01835496 v 0000 + 13887509 n 0101 + 09794081 n 0101 03 + 01 00 + 02 00 + 04 00 | move or proceed at an angle; "he angled his way into the room" -02045043 38 v 03 revolve 0 go_around 1 rotate 1 010 @ 02096167 v 0000 + 00342028 n 0301 + 07440979 n 0102 ^ 02676496 v 0103 ~ 01352996 v 0000 ~ 01353169 v 0000 $ 02045790 v 0000 ~ 02046075 v 0000 ~ 02046755 v 0000 ~ 02048891 v 0000 01 + 04 00 | turn on or around an axis or a center; "The Earth revolves around the Sun"; "The lamb roast rotates on a spit over the fire" -02045415 38 v 04 turn_out 0 splay 0 spread_out 3 rotate 7 002 @ 01907258 v 0000 + 00534480 n 0101 03 + 01 00 + 08 00 + 11 00 | turn outward; "These birds can splay out their toes"; "ballet dancers can rotate their legs out by 90 degrees" -02045655 38 v 01 splay 1 001 @ 01579813 v 0000 02 + 08 00 + 11 00 | spread open or apart; "He splayed his huge hands over the table" -02045790 38 v 02 rotate 0 circumvolve 0 009 > 02045043 v 0000 $ 02045043 v 0000 @ 01907258 v 0000 + 00342424 n 0201 + 02939919 a 0101 + 00342028 n 0101 ~ 01595149 v 0000 ~ 02048051 v 0000 ~ 02048272 v 0000 02 + 08 00 + 11 00 | cause to turn on an axis or center; "Rotate the handle" -02046075 38 v 02 wheel 0 wheel_around 0 003 @ 02045043 v 0000 + 10775536 n 0101 ~ 02046286 v 0000 02 + 04 00 + 22 00 | change directions as if revolving on a pivot; "They wheeled their horses around and left" -02046286 38 v 01 cartwheel 0 002 @ 02046075 v 0000 + 00434657 n 0101 01 + 02 00 | do cartwheels: perform an acrobatic movement using both hands and feet -02046441 38 v 02 wheel 4 wheel_around 1 002 @ 01953810 v 0000 + 04574999 n 0101 02 + 20 00 + 21 00 | wheel somebody or something -02046572 38 v 02 pivot 0 swivel 0 005 @ 01907258 v 0000 + 04373563 n 0201 + 00342916 n 0101 + 03951971 n 0101 ~ 02048384 v 0000 04 + 01 00 + 04 00 + 08 00 + 22 00 | turn on a pivot -02046755 38 v 05 spin 1 spin_around 0 whirl 4 reel 3 gyrate 1 010 @ 02045043 v 0000 + 07440979 n 0503 + 00342755 n 0501 + 13878112 n 0301 + 00343249 n 0305 + 10777147 n 0302 + 04578708 n 0301 + 00343249 n 0101 + 04278605 n 0101 ~ 02047148 v 0000 03 + 04 00 + 08 00 + 22 00 | revolve quickly and repeatedly around one's own axis; "The dervishes whirl around and around without getting dizzy" -02047148 38 v 01 whirligig 0 002 @ 02046755 v 0000 + 04454240 n 0102 01 + 01 00 | whirl or spin like a whirligig -02047263 38 v 02 centrifuge 0 centrifugate 0 005 @ 02068062 v 0000 + 02995998 n 0201 + 13445296 n 0101 + 02995998 n 0101 ~ 02047500 v 0000 02 + 08 00 + 21 00 | rotate at very high speed in order to separate the liquids from the solids -02047500 38 v 01 ultracentrifuge 0 002 @ 02047263 v 0000 + 13570923 n 0101 03 + 08 00 + 11 00 + 21 00 | subject to the action of an ultracentrifuge -02047650 38 v 05 eddy 0 purl 0 whirlpool 0 swirl 0 whirl 0 005 @ 02066939 v 0000 + 07442068 n 0501 + 13878112 n 0402 + 07433145 n 0301 + 07432973 n 0101 01 + 01 00 | flow in a circular current, of liquids -02047857 38 v 03 whirl 3 tumble 7 whirl_around 0 002 @ 01831531 v 0000 + 07442068 n 0101 02 + 01 00 + 04 00 | fly around; "The clothes tumbled in the dryer"; "rising smoke whirled in the air" -02048051 38 v 04 whirl 2 birl 0 spin 2 twirl 1 007 @ 02045790 v 0000 + 00343249 n 0402 + 09843824 n 0402 + 00343249 n 0301 + 04278751 n 0301 + 13878112 n 0101 + 00343249 n 0105 01 + 08 00 | cause to spin; "spin a coin" -02048272 38 v 02 birl 1 birle 0 001 @ 02045790 v 0000 01 + 08 00 | cause a floating log to rotate by treading -02048384 38 v 01 pirouette 0 002 @ 02046572 v 0000 + 00343730 n 0101 01 + 02 00 | do a pirouette, usually as part of a dance -02048511 38 v 01 kick 1 001 @ 01708676 v 0000 01 + 02 00 | kick a leg up -02048586 38 v 01 skank 0 002 @ 01708676 v 0000 + 00527319 n 0101 01 + 02 00 | dance the skank -02048682 38 v 01 grind 0 001 @ 01708676 v 0000 01 + 02 00 | dance by rotating the pelvis in an erotically suggestive way, often while in contact with one's partner such that the dancers' legs are interlaced -02048891 38 v 04 twirl 0 swirl 1 twiddle 0 whirl 1 007 @ 02045043 v 0000 + 07442068 n 0401 + 00342755 n 0402 + 00340989 n 0301 + 13878112 n 0202 + 00343249 n 0102 + 10435988 n 0103 04 + 01 00 + 04 00 + 08 00 + 22 00 | turn in a twisting or spinning motion; "The leaves swirled in the autumn wind" -02049190 38 v 03 gyrate 0 spiral 0 coil 0 006 @ 01907258 v 0000 + 13875970 n 0301 + 03065424 n 0301 + 03065424 n 0202 + 13876371 n 0201 + 00342755 n 0101 02 + 01 00 + 04 00 | to wind or move in a spiral course; "the muscles and nerves of his fine drawn body were coiling for action"; "black smoke coiling up into the sky"; "the young people gyrated on the dance floor" -02049561 38 v 02 corkscrew 0 spiral 1 002 @ 01907258 v 0000 + 00343606 n 0201 02 + 01 00 + 02 00 | move in a spiral or zigzag course -02049696 38 v 03 pass 1 overtake 0 overhaul 0 007 @ 01992503 v 0000 + 00340192 n 0202 + 07310642 n 0102 + 07310642 n 0101 + 00340192 n 0101 ~ 02049963 v 0000 ~ 02081178 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | travel past; "The sports car passed all the trucks" -02049963 38 v 01 get_by 0 001 @ 02049696 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | pass or move in front of; "Bride's Biscuit got by the other dogs to win the race" -02050132 38 v 03 pass 0 go_through 0 go_across 0 020 @ 01835496 v 0000 ^ 00616498 v 0102 ^ 01915365 v 0105 ^ 01912159 v 0105 ~ 00539770 v 0000 ~ 01247684 v 0000 ~ 01867072 v 0000 ~ 01912159 v 0000 ~ 01913363 v 0000 ~ 01914947 v 0000 ~ 01915365 v 0000 ~ 01915865 v 0000 ~ 02019282 v 0000 ~ 02019431 v 0000 ~ 02019574 v 0000 ~ 02050688 v 0000 ~ 02050865 v 0000 ~ 02051031 v 0000 ~ 02051270 v 0000 ~ 02051547 v 0000 02 + 04 00 + 22 00 | go across or through; "We passed the point where the police car had parked"; "A terrible thought went through his mind" -02050688 38 v 02 negotiate 0 negociate 0 001 @ 02050132 v 0000 02 + 08 00 + 11 00 | succeed in passing through, around, or over; "The hiker negociated the high mountain pass" -02050865 38 v 01 lock 4 004 @ 02050132 v 0000 + 03683079 n 0101 + 03683457 n 0101 + 00313385 n 0101 02 + 01 00 + 02 00 | pass by means through a lock in a waterway -02051031 38 v 02 make a work 0 005 $ 02373015 v 0000 @ 02050132 v 0000 ~ 01914297 v 0000 ~ 01914453 v 0000 ~ 02053723 v 0000 02 + 04 00 + 22 00 | proceed along a path; "work one's way through the crowd"; "make one's way into the forest" -02051270 38 v 01 cycle 2 004 @ 02050132 v 0000 + 07342495 n 0101 + 15287830 n 0101 ~ 02051444 v 0000 01 + 04 00 | pass through a cycle; "This machine automatically cycles" -02051444 38 v 01 cycle_on 0 001 @ 02051270 v 0000 01 + 01 00 | come to the starting point of a cycle -02051547 38 v 02 fumble 0 blunder 0 001 @ 02050132 v 0000 02 + 01 00 + 02 00 | make one's way clumsily or blindly; "He fumbled towards the door" -02051694 38 v 06 travel_by 1 pass_by 0 surpass 0 go_past 0 go_by 1 pass 5 006 @ 01835496 v 0000 + 10404672 n 0603 ~ 02052090 v 0000 ~ 02052226 v 0000 ~ 02052358 v 0000 ~ 02053829 v 0000 06 + 01 00 + 02 00 + 08 00 + 09 00 + 10 00 + 11 00 | move past; "A black limousine passed by when she looked out the window"; "He passed his professor in the hall"; "One line of soldiers surpassed the other" -02052090 38 v 01 skirt 0 001 @ 02051694 v 0000 01 + 11 00 | pass around or about; move along the border; "The boat skirted the coast" -02052226 38 v 01 run_by 0 001 @ 02051694 v 0000 02 + 01 00 + 02 00 | pass by while running; "We watched children were running by" -02052358 38 v 01 fly_by 0 001 @ 02051694 v 0000 02 + 01 00 + 02 00 | pass by while flying; "An enemy plane flew by" -02052476 38 v 02 pass 4 make_pass 0 005 > 02050132 v 0000 ~ 02052675 v 0000 ~ 02052965 v 0000 ~ 02053190 v 0000 ~ 02686625 v 0000 02 + 08 00 + 11 00 | cause to pass; "She passed around the plates" -02052675 38 v 01 cycle 3 004 @ 02052476 v 0000 + 07342495 n 0101 + 15287830 n 0101 ~ 02052877 v 0000 01 + 21 00 | cause to go through a recurring sequence; "cycle the laundry in this washing program" -02052877 38 v 01 recycle 0 001 @ 02052675 v 0000 01 + 21 00 | cause to repeat a cycle -02052965 38 v 01 pass_off 0 001 @ 02052476 v 0000 02 + 20 00 + 21 00 | cause to be circulated and accepted in a false character or identity; "She passed the glass off as diamonds"; "He passed himself off as a secret agent" -02053190 38 v 01 pass_through 2 004 @ 02052476 v 0000 ~ 01341897 v 0000 ~ 02053381 v 0000 ~ 02053621 v 0000 02 + 08 00 + 11 00 | cause to move through; "Pass a chemical through a solution" -02053381 38 v 01 reeve 0 001 @ 02053190 v 0000 01 + 11 00 | pass through a hole or opening; "reeve a rope" -02053490 38 v 01 clear 1 001 @ 02523351 v 0000 02 + 08 00 + 11 00 | pass an inspection or receive authorization; "clear customs" -02053621 38 v 01 reeve 1 001 @ 02053190 v 0000 01 + 08 00 | pass a rope through; "reeve an opening" -02053723 38 v 01 bushwhack 0 001 @ 02051031 v 0000 01 + 02 00 | cut one's way through the woods or bush -02053829 38 v 03 zip_by 0 fly_by 1 whisk_by 0 001 @ 02051694 v 0000 02 + 01 00 + 02 00 | move by very quickly -02053941 38 v 07 approach 0 near 0 come_on 0 go_up 3 draw_near 0 draw_close 0 come_near 0 011 $ 01849746 v 0000 * 01992503 v 0000 @ 01849221 v 0000 + 00019349 a 0101 + 07310507 n 0101 + 00280853 n 0101 ~ 01850135 v 0000 ~ 01927992 v 0000 ~ 02017937 v 0000 ~ 02054382 v 0000 ~ 02054864 v 0000 03 + 01 00 + 02 00 + 08 00 | move towards; "We were approaching our destination"; "They are drawing near"; "The enemy army came nearer and nearer" -02054382 38 v 01 close f 003 @ 02053941 v 0000 + 00281462 n 0102 + 00281462 n 0101 02 + 01 00 + 02 00 | draw near; "The probe closed with the space station" -02054541 38 v 02 close a come_together 3 001 @ 01831531 v 0000 01 + 04 00 | come together, as if in an embrace; "Her arms closed around her long lost relative" -02054703 38 v 02 close_in 0 draw_in 1 002 $ 02015384 v 0000 @ 01992503 v 0000 02 + 02 00 + 22 00 | advance or converge on; "The police were closing in on him" -02054864 38 v 02 push 1 crowd 2 001 @ 02053941 v 0000 01 + 08 00 | approach a certain age or speed; "She is pushing fifty" -02054989 38 v 04 unfold 0 stretch 0 stretch_out 0 extend a 003 $ 01368863 v 0000 @ 00140967 v 0000 + 00944449 a 0402 02 + 01 00 + 08 00 | extend or stretch out to a greater or the full length; "Unfold the newspaper"; "stretch out that piece of cloth"; "extend the TV antenna" -02055267 38 v 05 tear 0 shoot 1 shoot_down 1 charge 0 buck 1 004 @ 02058994 v 0000 ^ 00432572 v 0201 $ 02061495 v 0000 ~ 02098041 v 0000 02 + 04 00 + 22 00 | move quickly and violently; "The car tore down the street"; "He came charging into my office" -02055521 38 v 04 zoom 0 zoom_along 0 whizz 0 whizz_along 0 001 @ 02055649 v 0000 02 + 04 00 + 22 00 | move along very quickly -02055649 38 v 04 travel_rapidly 0 speed 0 hurry 0 zip 0 010 @ 01835496 v 0000 + 00555648 n 0302 + 00330160 n 0303 + 00330160 n 0201 + 15282696 n 0201 + 05058140 n 0201 ^ 00438178 v 0202 ~ 01899891 v 0000 ~ 01926311 v 0000 ~ 02055521 v 0000 02 + 04 00 + 22 00 | move very fast; "The runner zipped past us at breakneck speed" -02055975 38 v 01 speed 1 006 @ 01835496 v 0000 + 00330160 n 0101 + 15282696 n 0101 + 05058140 n 0101 + 10634596 n 0101 + 00330160 n 0102 02 + 04 00 + 22 00 | travel at an excessive or illegal velocity; "I got a ticket for speeding" -02056209 38 v 01 zoom 1 001 @ 01835496 v 0000 01 + 04 00 | move with a low humming noise -02056300 38 v 01 stampede 0 004 * 01926311 v 0000 * 02058994 v 0000 @ 02075462 v 0000 + 01123420 n 0101 04 + 01 00 + 02 00 + 08 00 + 09 00 | run away in a stampede -02056466 38 v 04 rout_out 0 drive_out 0 force_out 1 rouse 0 004 @ 01850315 v 0000 $ 02002720 v 0000 ~ 02056691 v 0000 ~ 02056854 v 0000 02 + 09 00 + 10 00 | force or drive out; "The police routed them out of bed at 2 A.M." -02056691 38 v 01 hunt 3 001 @ 02056466 v 0000 02 + 09 00 + 10 00 | chase away, with as with force; "They hunted the unwanted immigrants out of the neighborhood" -02056854 38 v 01 smoke_out 0 001 @ 02056466 v 0000 02 + 08 00 + 09 00 | drive out with smoke; "smoke out the bees" -02056971 38 v 01 drive 2 011 @ 01850315 v 0000 + 00307631 n 0101 + 03242713 n 0101 + 10034906 n 0101 ^ 02056466 v 0102 ^ 02002720 v 0102 ^ 02002720 v 0106 ^ 02002720 v 0104 $ 01930482 v 0000 ~ 02057337 v 0000 ~ 02058049 v 0000 02 + 20 00 + 21 00 | cause someone or something to move by driving; "She drove me to school every day"; "We drove the car to the garage" -02057337 38 v 01 pull 0 002 @ 02056971 v 0000 $ 02057499 v 0000 01 + 21 00 | steer into a certain direction; "pull one's horse to a stand"; "Pull the car over" -02057499 38 v 01 pull 1 003 $ 02057337 v 0000 @ 02057656 v 0000 ~ 02057878 v 0000 01 + 04 00 | move into a certain direction; "the car pulls to the right" -02057656 38 v 01 drive 9 006 @ 01930874 v 0000 @ 01835496 v 0000 + 03244388 n 0102 + 03242713 n 0101 + 00307631 n 0101 ~ 02057499 v 0000 01 + 04 00 | move by being propelled by a force; "The car drove around the corner" -02057878 38 v 01 cut_in 0 001 @ 02057499 v 0000 02 + 04 00 + 22 00 | drive in front of another vehicle leaving too little space for that vehicle to maneuver comfortably -02058049 38 v 02 drive_around 0 chauffeur 0 002 @ 02056971 v 0000 + 09908853 n 0201 03 + 02 00 + 09 00 + 20 00 | drive someone in a vehicle -02058191 38 v 03 bustle 0 bustle_about 0 hustle 0 004 * 02058994 v 0000 @ 01831531 v 0000 + 00555138 n 0302 + 00555138 n 0101 01 + 02 00 | move or cause to move energetically or busily; "The cheerleaders bustled about excitingly before their performance" -02058448 38 v 01 fidget 0 002 @ 01831531 v 0000 + 07513795 n 0101 01 + 02 00 | move restlessly; "The child is always fidgeting in his seat" -02058590 38 v 02 linger 0 dawdle 0 004 @ 01831531 v 0000 + 09993252 n 0201 ! 02058994 v 0101 ^ 02640226 v 0102 02 + 01 00 + 02 00 | take one's time; proceed slowly -02058756 38 v 06 drag 0 trail 2 get_behind 0 hang_back 0 drop_behind 0 drop_back 3 002 @ 01997862 v 0000 + 09993252 n 0205 04 + 01 00 + 02 00 + 04 00 + 22 00 | to lag or linger behind; "But in so many other areas we still are dragging" -02058994 38 v 0c rush 0 hotfoot 0 hasten 0 hie 0 speed 3 race 0 pelt_along 0 rush_along 0 cannonball_along 0 bucket_along 0 belt_along 0 step_on_it 0 011 @ 01835496 v 0000 + 15282696 n 0501 + 05058140 n 0501 + 00330160 n 0502 ^ 00438178 v 0502 + 00555648 n 0103 + 00555648 n 0104 ! 02058590 v 0101 ~ 01996574 v 0000 ~ 02055267 v 0000 ~ 02061495 v 0000 02 + 01 00 + 02 00 | move fast; "He rushed down the hall to receive his guests"; "The cars raced down the street" -02059462 38 v 02 race a rush a 003 @ 01850315 v 0000 + 00555648 n 0203 + 10502576 n 0101 03 + 08 00 + 09 00 + 11 00 | cause to move fast or to rush or race; "The psychologist raced the rats through a long maze" -02059675 38 v 02 rush_off 0 rush_away 0 001 @ 02009433 v 0000 01 + 02 00 | depart in a hurry -02059770 38 v 01 rush 1 004 @ 01926311 v 0000 + 00560293 n 0101 + 10544067 n 0101 + 00560293 n 0102 01 + 02 00 | run with the ball, in football -02059916 38 v 02 trail 1 shack 0 002 @ 01835496 v 0000 + 09993252 n 0105 02 + 02 00 + 04 00 | move, proceed, or walk draggingly or slowly; "John trailed behind his class mates"; "The Mercedes trailed behind the horse cart" -02060141 38 v 04 diffuse 0 spread 2 spread_out 0 fan_out 0 009 @ 01378556 v 0000 + 00367976 n 0201 + 05088324 n 0202 + 07445896 n 0201 + 00368592 n 0104 ~ 02060437 v 0000 ~ 02060588 v 0000 ~ 02060792 v 0000 ~ 02085320 v 0000 03 + 01 00 + 08 00 + 11 00 | move outward; "The soldiers fanned out" -02060437 38 v 01 percolate 1 002 @ 02060141 v 0000 + 14997888 n 0101 01 + 04 00 | spread gradually; "Light percolated into our house in the morning" -02060588 38 v 01 creep 6 002 @ 02060141 v 0000 + 13102648 n 0101 02 + 01 00 + 04 00 | grow or spread, often in such a way as to cover (a surface); "ivy crept over the walls of the university buildings" -02060792 38 v 02 run 8 bleed 0 003 $ 00444629 v 0000 @ 02060141 v 0000 ~ 02060959 v 0000 01 + 01 00 | be diffused; "These dyes and colors are guaranteed not to run" -02060959 38 v 01 crock 0 001 @ 02060792 v 0000 01 + 01 00 | release color when rubbed, of badly dyed fabric -02061069 38 v 08 flinch 0 squinch 0 funk 0 cringe 1 shrink 0 wince 0 recoil 0 quail 0 005 @ 01831531 v 0000 + 06879056 n 0601 + 00865471 n 0601 + 00865471 n 0102 ~ 02061366 v 0000 02 + 02 00 + 22 00 | draw back, as with fear or pain; "she flinched when they showed the slaughtering of the calf" -02061366 38 v 02 shrink_back 0 retract 0 001 @ 02061069 v 0000 02 + 02 00 + 22 00 | pull away from a source of disgust or fear -02061495 38 v 06 dart 0 dash 0 scoot 0 scud 0 flash 0 shoot 0 011 $ 02055267 v 0000 @ 02058994 v 0000 ^ 02004701 v 0502 + 04562122 n 0303 + 03556811 n 0303 + 03791053 n 0302 + 04149374 n 0301 + 00555983 n 0201 + 00294452 n 0201 + 00334356 n 0102 ~ 01834053 v 0000 02 + 04 00 + 22 00 | run or move very quickly or hastily; "She dashed into the yard" -02061846 38 v 01 commute 0 006 @ 01843055 v 0000 + 00315700 n 0101 + 09945745 n 0101 + 03078802 n 0101 + 00315700 n 0102 ~ 01177505 v 0000 02 + 02 00 + 22 00 | travel back and forth regularly, as between one's place of work and home -02062081 38 v 01 shuttle 0 002 @ 01835496 v 0000 + 04211970 n 0101 02 + 04 00 + 22 00 | travel back and forth between two points -02062212 38 v 04 lunge 0 hurl 0 hurtle 0 thrust 1 010 @ 01831531 v 0000 + 00103834 n 0402 + 01173965 n 0402 + 10495756 n 0402 + 00334935 n 0406 + 00105479 n 0201 + 10277231 n 0101 + 00290276 n 0102 ~ 01899708 v 0000 ~ 02062503 v 0000 02 + 04 00 + 22 00 | make a thrusting forward movement -02062503 38 v 01 riposte 0 002 @ 02062212 v 0000 ;c 01171644 n 0000 01 + 02 00 | make a return thrust; "his opponent riposted" -02062632 38 v 04 crouch 0 stoop 0 bend 3 bow 1 009 @ 02035919 v 0000 * 01983771 v 0000 + 07274425 n 0401 + 00336654 n 0201 + 10659762 n 0201 ^ 00909134 v 0201 + 00405766 n 0101 ~ 02063225 v 0000 ~ 02063988 v 0000 02 + 02 00 + 22 00 | bend one's back forward from the waist on down; "he crouched down"; "She bowed before the Queen"; "The young man stooped to pick up the girl's purse" -02063018 38 v 01 incline 1 003 @ 01973125 v 0000 + 00335384 n 0101 + 00335384 n 0102 02 + 02 00 + 08 00 | lower or bend (the head or upper body), as in a nod or bow; "She inclined her head to the student" -02063225 38 v 01 squinch 1 001 @ 02062632 v 0000 02 + 02 00 + 22 00 | crouch down -02063309 38 v 03 double_over 0 double 0 double_up 0 001 @ 02035919 v 0000 01 + 02 00 | bend over or curl up, usually with laughter or pain; "He doubled and vomited violently" -02063486 38 v 01 uncurl 0 001 @ 01983771 v 0000 02 + 02 00 + 09 00 | move out of a curled position; "He uncurled himself" -02063610 38 v 02 prostrate 0 bow_down 0 003 @ 01985029 v 0000 + 01167548 n 0101 + 00341109 n 0101 01 + 09 00 | get into a prostrate position, as in submission -02063771 38 v 06 fawn 0 crawl 3 creep 7 cringe 0 cower 0 grovel 0 006 @ 02035919 v 0000 + 09800631 n 0605 + 09800631 n 0604 + 09614047 n 0501 + 10684827 n 0203 + 09800631 n 0103 01 + 22 00 | show submission or fear -02063988 38 v 02 huddle 0 cower 1 002 @ 02062632 v 0000 + 10190745 n 0101 01 + 22 00 | crouch or curl up; "They huddled outside in the rain" -02064131 38 v 05 throng 0 mob 0 pack 0 pile 0 jam 0 005 @ 02027612 v 0000 + 13774404 n 0411 + 07961480 n 0401 + 08184600 n 0201 + 08182716 n 0102 01 + 22 00 | press tightly together or cram; "The crowd packed the auditorium" -02064358 38 v 02 pounce 0 swoop 0 004 @ 01970826 v 0000 + 00327033 n 0201 + 01258161 n 0101 ~ 02064612 v 0000 02 + 04 00 + 22 00 | move down on as if in an attack; "The raptor swooped down on its prey"; "The teacher swooped down upon the new students" -02064612 38 v 01 stoop 4 001 @ 02064358 v 0000 02 + 01 00 + 04 00 | descend swiftly, as if on prey; "The eagle stooped on the mice in the field" -02064759 38 v 01 swoop 1 002 @ 01831531 v 0000 + 06857264 n 0101 02 + 04 00 + 22 00 | move with a sweep, or in a swooping arc -02064887 38 v 02 deviate 0 divert 0 006 @ 01907258 v 0000 + 00350380 n 0201 + 00350380 n 0102 ~ 02066028 v 0000 ~ 02066203 v 0000 ~ 02066304 v 0000 02 + 01 00 + 02 00 | turn aside; turn away from -02065085 38 v 01 deviate 1 005 @ 01952363 v 0000 + 00350380 n 0102 ~ 02065329 v 0000 ~ 02065652 v 0000 ~ 02065885 v 0000 02 + 08 00 + 11 00 | cause to turn away from a previous or expected course; "The river was deviated to prevent flooding" -02065329 38 v 01 perturb 0 003 @ 02065085 v 0000 + 11414874 n 0101 $ 02065652 v 0000 01 + 11 00 | cause a celestial body to deviate from a theoretically regular orbital motion, especially as a result of interposed or extraordinary gravitational pull; "The orbits of these stars were perturbed by the passings of a comet" -02065652 38 v 01 perturb 1 004 $ 02065329 v 0000 @ 02065085 v 0000 + 11414874 n 0101 + 00553173 n 0102 01 + 11 00 | disturb or interfere with the usual path of an electron or atom; "The electrons were perturbed by the passing ion" -02065885 38 v 01 shunt 1 002 @ 02065085 v 0000 + 04211001 n 0101 02 + 08 00 + 11 00 | provide with or divert by means of an electrical shunt -02066028 38 v 01 yaw 0 003 @ 02064887 v 0000 + 07411350 n 0101 ~ 02034147 v 0000 02 + 01 00 + 04 00 | deviate erratically from a set course; "the yawing motion of the ship" -02066203 38 v 01 detour 0 002 @ 02064887 v 0000 + 03182506 n 0101 01 + 02 00 | travel via a detour -02066304 38 v 04 sidetrack 0 depart 2 digress 0 straggle 0 004 @ 02064887 v 0000 + 07939159 n 0401 + 10660729 n 0401 + 00310201 n 0301 03 + 01 00 + 04 00 + 22 00 | wander from a direct or straight course -02066510 38 v 02 flow 1 flux 0 006 @ 01831531 v 0000 + 07407970 n 0202 + 14005892 n 0102 + 00329227 n 0101 ~ 02040054 v 0000 ~ 02066757 v 0000 02 + 01 00 + 04 00 | move or progress freely as if in a stream; "The crowd flowed out of the stadium" -02066757 38 v 02 transpire 0 transpirate 0 002 @ 02066510 v 0000 + 13569905 n 0101 02 + 01 00 + 04 00 | pass through the tissue or substance or its pores or interstices, as of gas -02066939 38 v 04 run 1 flow 0 feed 4 course 0 024 @ 01831531 v 0000 + 08681222 n 0401 + 00329227 n 0201 + 15277730 n 0201 + 07405893 n 0201 + 07405893 n 0202 ^ 02634567 v 0202 + 09415938 n 0103 + 07407777 n 0103 ^ 02072159 v 0104 ~ 00455212 v 0000 ~ 01516290 v 0000 ~ 01903756 v 0000 ~ 02042404 v 0000 ~ 02047650 v 0000 ~ 02067889 v 0000 ~ 02068223 v 0000 ~ 02069248 v 0000 ~ 02069888 v 0000 ~ 02070466 v 0000 ~ 02070874 v 0000 ~ 02071457 v 0000 ~ 02071974 v 0000 ~ 02084879 v 0000 02 + 01 00 + 04 00 | move along, of liquids; "Water flowed into the cave"; "the Missouri feeds into the Mississippi" -02067540 38 v 01 course 2 002 @ 01912159 v 0000 + 09387222 n 0103 02 + 08 00 + 11 00 | move swiftly through or over; "ships coursing the Atlantic" -02067689 38 v 01 flow 2 005 > 02066939 v 0000 + 13482330 n 0101 + 00329227 n 0101 + 15277730 n 0101 + 07405893 n 0101 02 + 08 00 + 11 00 | cause to flow; "The artist flowed the washes on the paper" -02067889 38 v 02 waste 0 run_off 4 003 @ 02066939 v 0000 + 07407272 n 0202 + 14856263 n 0101 02 + 01 00 + 04 00 | run off as waste; "The water wastes back into the ocean" -02068062 38 v 01 spin 0 002 @ 02070466 v 0000 ~ 02047263 v 0000 02 + 01 00 + 04 00 | stream in jets, of liquids; "The creek spun its course through the woods" -02068223 38 v 01 run_down 2 001 @ 02066939 v 0000 01 + 01 00 | move downward; "The water ran down" -02068324 38 v 01 pump 2 001 @ 02068413 v 0000 02 + 01 00 + 04 00 | flow intermittently -02068413 38 v 04 spurt 1 spirt 1 gush 0 spout 0 011 @ 02069248 v 0000 + 04287153 n 0401 + 04287351 n 0401 + 02072953 n 0401 + 07439570 n 0302 + 03471030 n 0301 + 07436100 n 0204 + 07436100 n 0103 ~ 02068324 v 0000 ~ 02068745 v 0000 ~ 02068877 v 0000 02 + 01 00 + 04 00 | gush forth in a sudden stream or jet; "water gushed forth" -02068745 38 v 01 blow c 002 @ 02068413 v 0000 + 00835501 n 0101 01 + 01 00 | spout moist air from the blowhole; "The whales blew" -02068877 38 v 01 whoosh 0 001 @ 02068413 v 0000 02 + 01 00 + 04 00 | gush or squirt out; "Oil whooshed up when the drill hit the well" -02069014 38 v 02 hiss 0 whoosh 1 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move with a whooshing sound -02069120 38 v 02 woosh 0 whoosh 2 001 @ 01850315 v 0000 01 + 08 00 | move with a sibilant sound; "He whooshed the doors open" -02069248 38 v 01 pour 2 003 @ 02066939 v 0000 ~ 02068413 v 0000 ~ 02069396 v 0000 01 + 04 00 | flow in a spurt; "Water poured all over the floor" -02069396 38 v 01 regurgitate 0 002 @ 02069248 v 0000 + 07406474 n 0101 01 + 04 00 | pour or rush back; "The blood regurgitates into the heart ventricle" -02069551 38 v 01 pour 3 008 > 02066939 v 0000 @ 01850315 v 0000 ^ 01202374 v 0105 ~ 01541803 v 0000 ~ 01611516 v 0000 ~ 01853440 v 0000 ~ 02069788 v 0000 ~ 02070296 v 0000 02 + 08 00 + 21 00 | cause to run; "pour water over the floor" -02069788 38 v 02 effuse 0 pour_out 2 001 @ 02069551 v 0000 01 + 08 00 | pour out; "effused brine" -02069888 38 v 02 spill 0 run_out 0 005 @ 02066939 v 0000 + 00329619 n 0101 + 15049594 n 0101 $ 01542207 v 0000 ~ 02072159 v 0000 02 + 01 00 + 04 00 | flow, run or fall out and become lost; "The milk spilled across the floor"; "The wine spilled onto the table" -02070150 38 v 03 spill_over 1 spill_out 0 pour_out 1 001 @ 02028366 v 0000 01 + 22 00 | be disgorged; "The crowds spilled out into the streets" -02070296 38 v 03 decant 0 pour 4 pour_out 0 003 @ 02069551 v 0000 + 02960903 n 0102 + 00935608 n 0101 02 + 08 00 + 21 00 | pour out; "the sommelier decanted the wines" -02070466 38 v 02 stream 0 well_out 0 005 @ 02066939 v 0000 + 00329227 n 0102 + 07406765 n 0102 + 09448361 n 0101 ~ 02068062 v 0000 02 + 01 00 + 04 00 | flow freely and abundantly; "Tears streamed down her face" -02070679 38 v 01 stream 1 002 @ 01902783 v 0000 + 14005892 n 0101 01 + 04 00 | to extend, wave or float outward, as if in the wind; "their manes streamed like stiff black pennants in the wind" -02070874 38 v 03 trickle 0 dribble 0 filter 0 003 @ 02066939 v 0000 + 07432559 n 0102 ~ 02071627 v 0000 02 + 01 00 + 04 00 | run or flow slowly, as in drops or in an unsteady stream; "water trickled onto the lawn from the broken hose"; "reports began to dribble in" -02071142 38 v 01 drip 0 004 $ 01611516 v 0000 @ 01970826 v 0000 + 07432559 n 0101 + 07673249 n 0101 02 + 01 00 + 04 00 | fall in drops; "Water is dripping from the faucet" -02071316 38 v 02 cascade 0 cascade_down 0 002 @ 01970826 v 0000 + 09236957 n 0101 01 + 01 00 | rush down in big quantities, like a cascade -02071457 38 v 02 drain 0 run_out 1 003 @ 02066939 v 0000 + 00396029 n 0102 + 03231912 n 0101 01 + 04 00 | flow off gradually; "The rain water drains into this big vat" -02071627 38 v 02 leach 0 percolate 0 004 @ 02070874 v 0000 + 14997888 n 0201 + 13534274 n 0201 + 13506587 n 0101 02 + 01 00 + 04 00 | permeate or penetrate gradually; "the fertilizer leached into the ground" -02071837 38 v 01 leach 1 003 > 02071627 v 0000 @ 00173338 v 0000 + 13506587 n 0101 01 + 11 00 | cause (a liquid) to leach or percolate -02071974 38 v 02 seep 0 ooze 0 004 @ 02066939 v 0000 + 07432119 n 0202 + 07432119 n 0203 + 07432119 n 0101 01 + 04 00 | pass gradually or leak through or as if through small openings -02072159 38 v 05 overflow 0 overrun 0 well_over 0 run_over 0 brim_over 0 006 * 02066939 v 0000 @ 02069888 v 0000 + 00914343 n 0202 + 07407272 n 0101 + 00329819 n 0102 ~ 02072394 v 0000 01 + 01 00 | flow or run over (a limit or brim) -02072394 38 v 01 geyser 0 002 @ 02072159 v 0000 + 09288635 n 0101 01 + 01 00 | to overflow like a geyser -02072501 38 v 02 edge 0 inch 0 003 @ 01992503 v 0000 + 13649791 n 0201 ^ 02017937 v 0101 02 + 04 00 + 22 00 | advance slowly, as if by inches; "He edged towards the car" -02072673 38 v 03 ratchet 0 rachet_up 0 ratchet_down 0 002 @ 01992503 v 0000 + 04055180 n 0101 01 + 04 00 | move by degrees in one direction only; "a ratcheting lopping tool" -02072849 38 v 09 elapse 0 lapse 0 pass 3 slip_by 0 glide_by 0 slip_away 0 go_by 0 slide_by 0 go_along 2 003 @ 01992503 v 0000 + 15271417 n 0201 ~ 02073065 v 0000 02 + 01 00 + 04 00 | pass by; "three years elapsed" -02073065 38 v 03 fly 6 fell 9 vanish 5 002 $ 00153061 v 0000 @ 02072849 v 0000 01 + 01 00 | pass away rapidly; "Time flies like an arrow"; "Time fleeing beneath him" -02073233 38 v 03 break 2 break_out 0 break_away 1 004 $ 02030764 v 0000 @ 02074677 v 0000 + 00059989 n 0202 + 00059989 n 0101 04 + 02 00 + 04 00 + 22 00 + 08 01 | move away or escape suddenly; "The horses broke from the stable"; "Three inmates broke jail"; "Nobody can break out--this prison is high security" -02073545 38 v 04 shake 4 shake_off 0 throw_off 0 escape_from 0 001 @ 02074677 v 0000 02 + 08 00 + 09 00 | get rid of; "I couldn't shake the car that was following me" -02073714 38 v 07 abscond 0 bolt 2 absquatulate 0 decamp 1 run_off 2 go_off 0 make_off 0 006 @ 02075462 v 0000 + 00055633 n 0402 + 00204943 n 0201 + 00055633 n 0101 + 09755241 n 0101 ~ 02074093 v 0000 02 + 02 00 + 22 00 | run away; usually includes taking something or somebody along; "The thief made off with our silver"; "the accountant absconded with the cash from the safe" -02074093 38 v 01 levant 0 001 @ 02073714 v 0000 01 + 02 00 | run off without paying a debt -02074186 38 v 02 elope 0 run_off 3 002 @ 02075462 v 0000 + 00058608 n 0101 02 + 02 00 + 22 00 | run away secretly with one's beloved; "The young couple eloped and got married in Las Vegas" -02074377 38 v 03 elude 0 evade 0 bilk 0 005 @ 02074677 v 0000 + 00059127 n 0201 + 00149262 a 0101 + 00059376 n 0102 + 00059376 n 0103 02 + 09 00 + 10 00 | escape, either physically or mentally; "The thief eluded the police"; "This difficult idea seems to evade her"; "The event evades explanation" -02074677 38 v 03 escape 0 get_away 0 break_loose 0 011 @ 02075462 v 0000 + 00060201 n 0201 + 00173283 n 0101 + 00058743 n 0101 + 10062905 n 0101 ~ 02073233 v 0000 ~ 02073545 v 0000 ~ 02074377 v 0000 ~ 02076280 v 0000 ~ 02100476 v 0000 ~ 02599004 v 0000 03 + 01 00 + 02 00 + 22 00 | run away from confinement; "The convicted murderer escaped from a high security prison" -02075049 38 v 0d scat 0 run 4 scarper 0 turn_tail 0 lam 0 run_away 0 hightail_it 0 bunk 0 head_for_the_hills 0 take_to_the_woods 0 escape 2 fly_the_coop 0 break_away 0 005 @ 02009433 v 0000 + 10115082 n 0602 + 00060201 n 0502 ~ 02075462 v 0000 ~ 02075764 v 0000 03 + 01 00 + 02 00 + 22 00 | flee; take to one's heels; cut and run; "If you see this man, run!"; "The burglars escaped before the police showed up" -02075462 38 v 03 flee 0 fly 3 take_flight 0 010 @ 02075049 v 0000 + 00058743 n 0102 + 10115082 n 0103 ~ 02030764 v 0000 ~ 02056300 v 0000 ~ 02073714 v 0000 ~ 02074186 v 0000 ~ 02074677 v 0000 ~ 02092907 v 0000 ~ 02584097 v 0000 02 + 02 00 + 22 00 | run away quickly; "He threw down his gun and fled" -02075764 38 v 01 skedaddle 0 001 @ 02075049 v 0000 01 + 02 00 | run away, as if in a panic -02075857 38 v 02 take 5 make 5 001 @ 01935233 v 0000 01 + 22 00 | head into a specified direction; "The escaped convict took to the hills"; "We made for the mountains" -02076027 38 v 05 slip_away 1 steal_away 0 sneak_away 0 sneak_off 0 sneak_out 0 001 @ 02009433 v 0000 01 + 02 00 | leave furtively and stealthily; "The lecture was boring and many students slipped out when the instructor turned towards the blackboard" -02076280 38 v 01 slip 5 004 @ 02074677 v 0000 + 00170710 n 0101 ^ 02072849 v 0104 ^ 02076027 v 0101 02 + 04 00 + 22 00 | move smoothly and easily; "the bolt slipped into place"; "water slipped from the polished marble" -02076501 38 v 01 slip c 002 > 02076280 v 0000 @ 01850315 v 0000 03 + 20 00 + 21 00 + 22 00 | cause to move with a smooth or sliding motion; "he slipped the bolt into place" -02076676 38 v 03 vacate 0 empty 0 abandon 0 002 @ 02009433 v 0000 + 01087977 a 0101 02 + 08 00 + 11 00 | leave behind empty; move out of; "You must vacate your office by tonight" -02076857 38 v 02 decamp 2 break_camp 0 002 @ 02008396 v 0000 + 00055227 n 0101 01 + 02 00 | leave a camp; "The hikers decamped before dawn" -02076999 38 v 01 eject 0 002 @ 02015598 v 0000 + 00116687 n 0103 02 + 02 00 + 22 00 | leave an aircraft rapidly, using an ejection seat or capsule -02077148 38 v 02 expand 0 spread_out 1 009 @ 00230746 v 0000 + 00947264 a 0103 + 00844263 a 0103 + 00947264 a 0102 + 00844263 a 0102 + 00946499 a 0101 ! 00240571 v 0102 ~ 02077430 v 0000 ~ 02077546 v 0000 02 + 01 00 + 04 00 | extend in one or more directions; "The dough expands" -02077430 38 v 01 dispread 0 001 @ 02077148 v 0000 01 + 08 00 | spread abroad or out; "The sun dispread its beams" -02077546 38 v 01 bush_out 0 001 @ 02077148 v 0000 01 + 01 00 | grow outward; "the plant quickly bushed out" -02077656 38 v 03 bring 0 convey 0 take a 021 $ 01433294 v 0000 $ 01434140 v 0000 @ 01449974 v 0000 * 01849221 v 0000 + 09962789 n 0201 + 03100897 n 0203 + 00315986 n 0205 ^ 01993926 v 0102 ^ 01981036 v 0103 ^ 01973125 v 0105 ^ 01974062 v 0105 ^ 02157100 v 0102 ^ 02157100 v 0103 ~ 01433674 v 0000 ~ 01853696 v 0000 ~ 01949674 v 0000 ~ 02078294 v 0000 ~ 02079525 v 0000 ~ 02079679 v 0000 ~ 02079933 v 0000 ~ 02087156 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 20 00 + 21 00 | take something or somebody with oneself somewhere; "Bring me the box from the other room"; "Take these letters to the boss"; "This brings me to the main point" -02078294 38 v 03 return c take_back 3 bring_back 0 002 @ 02077656 v 0000 + 00328015 n 0101 03 + 08 00 + 15 00 + 21 00 | bring back to the point of departure -02078453 38 v 01 track 2 002 @ 02078591 v 0000 + 09387222 n 0102 01 + 21 00 | carry on the feet and deposit; "track mud into the house" -02078591 38 v 02 bring_in 0 introduce 0 003 ~ 00413704 v 0000 ~ 02078453 v 0000 ~ 02078855 v 0000 03 + 08 00 + 09 00 + 11 00 | bring in a new person or object into a familiar environment; "He brought in a new judge"; "The new secretary introduced a nasty rumor" -02078855 38 v 01 insinuate 0 001 @ 02078591 v 0000 01 + 09 00 | introduce or insert (oneself) in a subtle manner; "He insinuated himself into the conversation of the people at the nearby table" -02079051 38 v 01 interpose 0 001 @ 01618693 v 0000 01 + 08 00 | introduce; "God interposed death" -02079151 38 v 01 church 0 003 @ 02374764 v 0000 + 03028079 n 0101 + 01032368 n 0102 01 + 09 00 | perform a special church rite or service for; "church a woman after childbirth" -02079330 38 v 01 carry_over 1 001 @ 01953810 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | transport from one place or state to another; "Adam would have been carried over into the life eternal" -02079525 38 v 01 tube 0 003 @ 02077656 v 0000 + 05246511 n 0101 + 04493505 n 0102 01 + 08 00 | convey in a tube; "inside Paris, they used to tube mail" -02079679 38 v 01 whisk 0 001 @ 02077656 v 0000 02 + 20 00 + 21 00 | move somewhere quickly; "The President was whisked away in his limo" -02079818 38 v 01 whisk 1 001 @ 01835496 v 0000 01 + 02 00 | move quickly and nimbly; "He whisked into the house" -02079933 38 v 06 impart 0 conduct 0 transmit 0 convey 2 carry 3 channel 1 017 $ 02741357 v 0000 @ 02077656 v 0000 + 06260121 n 0601 + 06259898 n 0601 + 11501230 n 0502 + 00318735 n 0501 + 06251781 n 0301 + 00121366 n 0302 + 00557813 a 0201 + 11512818 n 0201 + 14821043 n 0201 + 03088707 n 0201 $ 01061017 v 0000 ~ 02080482 v 0000 ~ 02080652 v 0000 ~ 02080783 v 0000 ~ 02080924 v 0000 02 + 08 00 + 21 00 | transmit or serve as the medium for transmission; "Sound carries well over water"; "The airwaves carry the sound"; "Many metals conduct heat" -02080482 38 v 01 wash_up 0 002 $ 00423257 v 0000 @ 02079933 v 0000 02 + 10 00 + 11 00 | carry somewhere (of water or current or waves); "The tide washed up the corpse" -02080652 38 v 01 pipe_in 0 001 @ 02079933 v 0000 02 + 08 00 + 21 00 | bring in through pipes; "Music was piped into the offices" -02080783 38 v 01 bring_in 1 001 @ 02079933 v 0000 01 + 08 00 | transmit; "The microphone brought in the sounds from the room next to mine" -02080924 38 v 01 retransmit 0 001 @ 02079933 v 0000 01 + 08 00 | transmit again -02081006 38 v 01 peregrinate 0 002 @ 01843055 v 0000 + 00296478 n 0101 02 + 02 00 + 22 00 | travel around, through, or over, especially on foot; "peregrinate the bridge" -02081178 38 v 02 clear 0 top 0 005 @ 02049696 v 0000 + 08617963 n 0204 + 08663354 n 0201 + 05090111 n 0101 ~ 02094922 v 0000 02 + 08 00 + 11 00 | pass by, over, or under without making contact; "the balloon cleared the tree tops" -02081410 38 v 01 pronate 0 003 @ 01907258 v 0000 + 05292468 n 0101 + 00343091 n 0101 01 + 02 00 | turn the forearm or the hand so that the palm is directed downwards -02081578 38 v 01 leave_behind 0 003 * 02009433 v 0000 $ 00360092 v 0000 ~ 02081795 v 0000 04 + 01 00 + 08 00 + 09 00 + 11 00 | depart and not take along; "He left behind all his possessions when he moved to Europe" -02081795 38 v 03 outdistance 0 outstrip 0 distance 0 001 @ 02081578 v 0000 02 + 08 00 + 09 00 | go far ahead of; "He outdistanced the other runners" -02081946 38 v 08 start 3 protrude 0 pop 0 pop_out 1 bulge 0 bulge_out 0 bug_out 0 come_out 0 005 @ 00140967 v 0000 + 13894434 n 0501 + 00944848 a 0202 + 01353226 a 0201 + 13894434 n 020a 01 + 01 00 | bulge outward; "His eyes popped" -02082181 38 v 01 career 0 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move headlong at high speed; "The cars careered down the road"; "The mob careered through the streets" -02082355 38 v 03 revolve_around 0 circle_around 0 circle_round 0 001 @ 01911339 v 0000 01 + 11 00 | move around in a circular motion; "The Earth revolves around the Sun" -02082527 38 v 01 circuit 0 003 @ 01835496 v 0000 + 08616985 n 0101 + 00310666 n 0102 02 + 02 00 + 22 00 | make a circuit; "They were circuiting about the state" -02082690 38 v 03 spread 0 scatter 2 spread_out 4 012 @ 02043190 v 0000 + 00369138 n 0201 + 05088324 n 0201 + 00369138 n 0202 + 00367976 n 0101 + 05088324 n 0102 + 07445896 n 0101 + 02903204 n 0102 ~ 02083087 v 0000 ~ 02083237 v 0000 ~ 02083396 v 0000 ~ 02754855 v 0000 02 + 08 00 + 21 00 | strew or distribute over an area; "He spread fertilizer over the lawn"; "scatter cards across the table" -02083087 38 v 02 manure 0 muck 0 003 @ 02082690 v 0000 + 14854847 n 0203 + 14863521 n 0101 02 + 08 00 + 21 00 | spread manure, as for fertilization -02083237 38 v 02 birdlime 0 lime 0 003 @ 02082690 v 0000 + 14702703 n 0202 + 14702703 n 0101 02 + 08 00 + 21 00 | spread birdlime on branches to catch birds -02083396 38 v 01 circumfuse 0 001 @ 02082690 v 0000 01 + 08 00 | spread something around something -02083497 38 v 01 collapse 1 004 @ 01277974 v 0000 + 00465737 a 0101 ~ 01436865 v 0000 ~ 02083694 v 0000 02 + 01 00 + 08 00 | fold or close up; "fold up your umbrella"; "collapse the music stand" -02083694 38 v 01 concertina 0 002 @ 02083497 v 0000 + 03086670 n 0101 01 + 01 00 | collapse like a concertina -02083806 38 v 02 bestir 0 rouse 1 001 @ 00014549 v 0000 01 + 09 00 | become active; "He finally bestirred himself" -02083923 38 v 02 debouch 0 march_out 0 001 @ 01996735 v 0000 03 + 01 00 + 02 00 + 22 00 | march out (as from a defile) into open ground; "The regiments debouched from the valley" -02084104 38 v 02 exteriorize 0 bring_outside 0 002 @ 01850315 v 0000 + 00932624 n 0103 01 + 08 00 | bring outside the body for surgery, of organs -02084252 38 v 01 flurry 0 002 @ 01831531 v 0000 + 00555138 n 0103 02 + 02 00 + 22 00 | move in an agitated or confused manner -02084380 38 v 01 march 4 005 > 01919391 v 0000 @ 01907076 v 0000 + 08428019 n 0101 + 00290579 n 0101 ~ 02084767 v 0000 01 + 09 00 | force to march; "The Japanese marched their prisoners through Manchuria" -02084587 38 v 01 march a 003 @ 01906823 v 0000 + 08428019 n 0101 + 00290579 n 0101 01 + 08 00 | cause to march or go at a marching pace; "They marched the mules into the desert" -02084767 38 v 01 frogmarch 0 001 @ 02084380 v 0000 01 + 09 00 | march a person against his will by any method -02084879 38 v 01 gutter 0 001 @ 02066939 v 0000 02 + 01 00 + 04 00 | flow in small streams; "Tears guttered down her face" -02085004 38 v 01 hare 0 002 @ 01926311 v 0000 + 02326432 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | run quickly, like a hare; "He hared down the hill" -02085158 38 v 01 lance 0 001 @ 01835496 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move quickly, as if by cutting one's way; "Planes lanced towards the shore" -02085320 38 v 01 mantle 0 002 @ 02060141 v 0000 + 09223725 n 0102 02 + 01 00 + 04 00 | spread over a surface, like a mantle -02085446 38 v 02 outflank 0 go_around 0 001 @ 01835496 v 0000 02 + 08 00 + 09 00 | go around the flank of (an opposing army) -02085573 38 v 01 propagate 1 003 @ 01835496 v 0000 + 11512992 n 0101 $ 01436139 v 0000 01 + 01 00 | travel through the air; "sound and light propagate in this medium" -02085742 38 v 01 dock 0 008 @ 02016523 v 0000 + 03216828 n 0102 + 03216828 n 0101 + 03933529 n 0104 + 10655169 n 0104 + 00052146 n 0101 ! 02085971 v 0101 ~ 01305361 v 0000 02 + 01 00 + 02 00 | come into dock; "the ship docked" -02085971 38 v 01 undock 0 002 @ 02015598 v 0000 ! 02085742 v 0101 02 + 01 00 + 02 00 | move out of a dock; "We docked at noon" -02086100 38 v 01 upstage 0 002 @ 01850315 v 0000 + 10740732 n 0101 02 + 09 00 + 10 00 | move upstage, forcing the other actors to turn away from the audience -02086260 38 v 01 welter 1 001 @ 01867816 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | toss, roll, or rise and fall in an uncontrolled way; "The shipwrecked survivors weltered in the sea for hours" -02086458 38 v 02 remove 0 transfer 1 003 @ 02012344 v 0000 + 10724699 n 0201 + 10724699 n 0202 02 + 08 00 + 09 00 | shift the position or location of, as for business, legal, educational, or military purposes; "He removed his children to the countryside"; "Remove the troops to the forest surrounding the city"; "remove a case to another court" -02086805 38 v 01 stampede 1 002 > 02056300 v 0000 + 07446270 n 0101 03 + 08 00 + 10 00 + 11 00 | cause to run in panic; "Thunderbolts can stampede animals" -02086963 38 v 01 pack 2 002 > 02064131 v 0000 @ 00452512 v 0000 02 + 08 00 + 11 00 | fill to capacity; "This singer always packs the concert halls"; "The murder trial packed the court house" -02087156 38 v 01 land 3 005 @ 02077656 v 0000 + 09334396 n 0101 + 00052334 n 0101 ~ 02022486 v 0000 ~ 02087377 v 0000 02 + 08 00 + 11 00 | bring ashore; "The drug smugglers landed the heroin on the beach of the island" -02087377 38 v 01 strand 3 001 @ 02087156 v 0000 02 + 08 00 + 11 00 | drive (a vessel) ashore -02087472 38 v 01 port 6 002 $ 01979085 v 0000 + 08633957 n 0101 01 + 08 00 | bring to port; "the captain ported the ship at night" -02087605 38 v 01 streak 0 001 @ 01831531 v 0000 02 + 04 00 + 22 00 | move quickly in a straight line; "The plane streaked across the sky" -02087745 38 v 01 swing 2 005 @ 01850315 v 0000 + 00571609 n 0103 + 01173660 n 0101 + 10683801 n 0101 ~ 02087979 v 0000 01 + 08 00 | move in a curve or arc, usually with the intent of hitting; "He swung his left fist"; "swing a bat" -02087979 38 v 01 wind_up 0 002 @ 02087745 v 0000 ;c 00471613 n 0000 01 + 02 00 | give a preliminary swing to the arm pitching -02088107 38 v 01 draw 2 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move or go steadily or gradually; "The ship drew near the shore" -02088241 38 v 02 transfer 2 change 0 002 @ 01835496 v 0000 + 06519480 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | change from one vehicle or transportation line to another; "She changed in Chicago on her way to the East coast" -02088470 38 v 01 heave 1 001 @ 01831531 v 0000 01 + 04 00 | move or cause to move in a specified way, direction, or position; "The vessel hove into sight" -02088627 38 v 01 crash 1 002 @ 01831531 v 0000 + 07380144 n 0107 01 + 04 00 | move with, or as if with, a crashing noise; "The car crashed through the glass door" -02088792 38 v 01 thunder 0 002 @ 01831531 v 0000 + 07377682 n 0104 02 + 01 00 + 04 00 | move fast, noisily, and heavily; "The bus thundered down the road" -02088949 38 v 01 snap 1 002 @ 01831531 v 0000 + 07381423 n 0103 01 + 04 00 | move with a snapping sound; "bullets snapped past us" -02089082 38 v 01 swash 0 001 @ 01835496 v 0000 01 + 02 00 | make violent, noisy movements -02089174 38 v 06 come_to_the_fore 0 step_forward 0 come_forward 0 step_up 0 step_to_the_fore 0 come_out 1 001 @ 02367363 v 0000 02 + 01 00 + 02 00 | make oneself visible; take action; "Young people should step to the fore and help their peers" -02089420 38 v 02 turn 1 turn_over 9 004 @ 01850315 v 0000 + 04500060 n 0101 ~ 02089632 v 0000 ~ 02089837 v 0000 01 + 08 00 | cause to move around a center so as to show another side of; "turn a page of a book" -02089632 38 v 01 evert 0 005 @ 02089420 v 0000 + 05080616 n 0101 + 00335653 n 0102 + 00335653 n 0103 + 10963815 n 0101 01 + 08 00 | turn inside out; turn the inner surface of outward; "evert the eyelid" -02089837 38 v 01 leaf 0 002 @ 02089420 v 0000 + 06256229 n 0101 02 + 08 00 + 22 00 | turn over pages; "leaf through a book"; "leaf a manuscript" -02089984 38 v 01 turn 2 008 @ 01850315 v 0000 + 00345454 n 0102 + 07351612 n 0102 $ 01907258 v 0000 ~ 01908543 v 0000 ~ 02090243 v 0000 $ 02090435 v 0000 ~ 02090854 v 0000 01 + 08 00 | cause to move around or rotate; "turn a key"; "turn your palm this way" -02090243 38 v 01 supinate 0 003 @ 02089984 v 0000 + 05292587 n 0101 + 00345297 n 0101 01 + 08 00 | turn (the hand or forearm) so that the back is downward or backward, or turn out (the leg) -02090435 38 v 01 turn d 003 $ 02089984 v 0000 @ 01850315 v 0000 ~ 02090679 v 0000 02 + 08 00 + 09 00 | cause to move along an axis or into a new direction; "turn your face to the wall"; "turn the car around"; "turn your dance partner around" -02090679 38 v 01 bring_about 0 001 @ 02090435 v 0000 01 + 08 00 | cause to move into the opposite direction; "they brought about the boat when they saw a storm approaching" -02090854 38 v 01 port 4 002 @ 02089984 v 0000 + 03642928 n 0102 01 + 08 00 | put or turn on the left side, of a ship; "port the helm" -02090990 38 v 01 slide 2 003 @ 01850315 v 0000 + 00328502 n 0101 + 06857264 n 0102 01 + 21 00 | move smoothly along a surface; "He slid the money over to the other gambler" -02091165 38 v 01 pace 1 009 @ 01835496 v 0000 + 00285889 n 0101 + 13757249 n 0102 + 15280497 n 0101 + 02387983 n 0101 ~ 01959669 v 0000 ~ 01959776 v 0000 ~ 01960491 v 0000 ~ 01960643 v 0000 02 + 01 00 + 02 00 | go at a pace; "The horse paced" -02091410 38 v 02 step 1 tread 1 006 @ 01835496 v 0000 + 00285889 n 0203 + 06645039 n 0103 + 13757249 n 0103 + 00285557 n 0101 ~ 02092039 v 0000 02 + 02 00 + 22 00 | put down or press the foot, place the foot; "For fools rush in where angels fear to tread"; "step on the brake" -02091689 38 v 01 step 3 003 @ 01904930 v 0000 + 00285557 n 0101 + 13757249 n 0103 01 + 22 00 | walk a short distance to a specified place or in a specified manner; "step over to the blackboard" -02091885 38 v 01 step 4 003 @ 01835496 v 0000 + 07383823 n 0103 + 00285557 n 0101 01 + 07 00 | move with one's feet in a specific manner; "step lively" -02092039 38 v 02 step_on 0 tread_on 0 001 @ 02091410 v 0000 01 + 08 00 | place or press the foot on; "He stepped on the hem of her long gown" -02092183 38 v 01 hurtle 1 001 @ 01835496 v 0000 01 + 04 00 | move with or as if with a rushing sound; "The cars hurtled by" -02092309 38 v 01 run a 004 @ 01850315 v 0000 + 00293916 n 0101 + 07460104 n 0103 $ 01143838 v 0000 02 + 08 00 + 11 00 | cause an animal to move fast; "run the dogs" -02092476 38 v 01 retreat 2 004 @ 01835496 v 0000 + 03517647 n 0102 + 08643015 n 0101 ~ 02092680 v 0000 02 + 04 00 + 22 00 | move away, as for privacy; "The Pope retreats to Castelgondolfo every summer" -02092680 38 v 01 cocoon 0 001 @ 02092476 v 0000 02 + 02 00 + 22 00 | retreat as if into a cocoon, as from an unfriendly environment; "Families cocoon around the T.V. set most evenings"; "She loves to stay at home and cocoon" -02092907 38 v 01 high-tail 0 001 @ 02075462 v 0000 01 + 22 00 | retreat at full speed; "The actress high-tailed to her villa when reporters began to follow her to the restaurant" -02093088 38 v 01 whistle 0 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move with, or as with, a whistling sound; "The bullets whistled past him" -02093234 38 v 01 whistle 1 001 @ 01850315 v 0000 02 + 08 00 + 11 00 | move, send, or bring as if by whistling; "Her optimism whistled away these worries" -02093390 38 v 02 beat 2 flap 2 006 @ 01831531 v 0000 + 07439284 n 0201 + 07439284 n 0202 $ 02093610 v 0000 ~ 02093920 v 0000 ~ 02094172 v 0000 01 + 01 00 | move with a flapping motion; "The bird's wings were flapping" -02093610 38 v 02 beat 4 flap 3 008 $ 02093390 v 0000 @ 01850315 v 0000 + 07439284 n 0201 + 07439284 n 0202 + 05058893 n 0101 ~ 01900255 v 0000 ~ 02094057 v 0000 ~ 02094299 v 0000 01 + 11 00 | move with a thrashing motion; "The bird flapped its wings"; "The eagle beat its wings and soared high into the sky" -02093920 38 v 02 flail 2 thresh 4 001 @ 02093390 v 0000 02 + 01 00 + 04 00 | move like a flail; thresh about; "Her arms were flailing" -02094057 38 v 01 bate 0 001 @ 02093610 v 0000 01 + 11 00 | flap the wings wildly or frantically; used of falcons -02094172 38 v 01 clap 3 001 @ 02093390 v 0000 01 + 01 00 | strike the air in flight; "the wings of the birds clapped loudly" -02094299 38 v 01 clap 4 001 @ 02093610 v 0000 01 + 11 00 | cause to strike the air in flight; "The big bird clapped its wings" -02094428 38 v 01 fling 0 001 @ 01831531 v 0000 02 + 21 00 + 22 00 | move in an abrupt or headlong manner; "He flung himself onto the sofa" -02094569 38 v 04 thrust 2 stuff 0 shove 1 squeeze 0 003 @ 01871979 v 0000 + 00113726 n 0301 + 11498203 n 0102 02 + 20 00 + 21 00 | press or force; "Stuff money into an envelope"; "She thrust the letter into his hand" -02094788 38 v 01 hop 1 003 @ 01963942 v 0000 + 00120010 n 0101 $ 02094922 v 0000 02 + 04 00 + 22 00 | make a jump forward or upward -02094922 38 v 01 hop 2 003 $ 02094788 v 0000 @ 02081178 v 0000 + 00120010 n 0101 02 + 08 00 + 11 00 | jump across; "He hopped the bush" -02095060 38 v 01 hop 3 002 @ 01912159 v 0000 $ 02095211 v 0000 02 + 08 00 + 11 00 | traverse as if by a short airplane trip; "Hop the Pacific Ocean" -02095211 38 v 01 hop 4 005 $ 02095060 v 0000 $ 01840736 v 0000 @ 01831531 v 0000 + 00120010 n 0101 + 10185327 n 0101 02 + 02 00 + 22 00 | move quickly from one place to another -02095390 38 v 03 bed-hop 0 bedhop 0 sleep_around 0 001 @ 01427278 v 0000 01 + 02 00 | be sexually active with more than one partner; "His wife bed hops" -02095545 38 v 01 ride 3 001 @ 01921964 v 0000 02 + 01 00 + 04 00 | climb up on the body; "Shorts that ride up"; "This skirt keeps riding up my legs" -02095696 38 v 01 singsong 0 003 @ 01850315 v 0000 + 07084927 n 0101 + 01255648 n 0102 01 + 08 00 | move as if accompanied by a singsong; "The porters singsonged the travellers' luggage up the mountain" -02095900 38 v 01 island_hop 0 001 @ 01835496 v 0000 01 + 02 00 | travel from one island to the next; "on the cruise, we did some island-hopping" -02096047 38 v 01 shoot 3 001 @ 01632897 v 0000 01 + 08 00 | send forth suddenly, intensely, swiftly; "shoot a glance" -02096167 38 v 01 turn 4 002 @ 01831531 v 0000 ~ 02045043 v 0000 02 + 01 00 + 04 00 | move around an axis or a center; "The wheels are turning" -02096312 38 v 01 hustle 1 001 @ 01850315 v 0000 02 + 09 00 + 11 00 | cause to move furtively and hurriedly; "The secret service agents hustled the speaker out of the amphitheater" -02096494 38 v 01 dodge 0 002 @ 01831531 v 0000 + 00059895 n 0101 01 + 08 00 | make a sudden movement in a new direction so as to avoid; "The child dodged the teacher's blow" -02096670 38 v 01 dodge 1 001 @ 01831531 v 0000 02 + 02 00 + 22 00 | move to and fro or from place to place usually in an irregular course; "the pickpocket dodged through the crowd" -02096853 38 v 02 plow 0 plough 0 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move in a way resembling that of a plow cutting into or going through the soil; "The ship plowed through the water" -02097047 38 v 03 topple 1 tumble 6 tip 4 002 @ 01871979 v 0000 + 00076884 n 0202 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to topple or tumble by pushing -02097204 38 v 01 throw 0 001 @ 01831531 v 0000 01 + 21 00 | move violently, energetically, or carelessly; "She threw herself forwards" -02097341 38 v 01 throw 3 001 @ 01494310 v 0000 03 + 08 00 + 20 00 + 21 00 | to put into a state or activity hastily, suddenly, or carelessly; "Jane threw dinner together"; "throw the car into reverse" -02097544 38 v 01 lurch 1 001 @ 01835496 v 0000 02 + 01 00 + 04 00 | move slowly and unsteadily; "The truck lurched down the road" -02097676 38 v 01 jackrabbit 0 001 @ 01910373 v 0000 02 + 01 00 + 02 00 | go forward or start with a fast, sudden movement -02097800 38 v 01 draw 7 002 $ 00097029 v 0000 @ 00173338 v 0000 02 + 08 00 + 11 00 | cause to flow; "The nurse drew blood" -02097925 38 v 02 come_out 6 fall_out 0 001 @ 00528990 v 0000 01 + 01 00 | come off; "His hair and teeth fell out" -02098041 38 v 01 rip 0 001 @ 02055267 v 0000 02 + 04 00 + 22 00 | move precipitously or violently; "The tornado ripped along the coast" -02098179 38 v 01 wash 1 002 @ 01850315 v 0000 $ 00274942 v 0000 01 + 11 00 | move by or as if by water; "The swollen river washed away the footbridge" -02098332 38 v 01 make_way 0 001 @ 01831531 v 0000 01 + 02 00 | get out of the way; "make way for the President's motorcade" -02098458 38 v 03 curl_up 1 curl 0 draw_in 3 003 @ 02035919 v 0000 + 13875970 n 0204 $ 01505254 v 0000 02 + 04 00 + 22 00 | shape one's body into a curl; "She curled farther down under the covers"; "She fell and drew in" -02098680 38 v 01 sit_up 1 002 @ 01983771 v 0000 + 00630786 n 0101 02 + 02 00 + 22 00 | change to an upright sitting position; "He sat up in bed" -02098827 38 v 01 sift 0 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move as if through a sieve; "The soldiers sifted through the woods" -02098964 38 v 01 interpose 1 000 01 + 11 00 | be or come between; "An interposing thicket blocked their way" -02099075 38 v 01 dance 2 001 @ 01831531 v 0000 02 + 01 00 + 02 00 | skip, leap, or move up and down or sideways; "Dancing flames"; "The children danced with joy" -02099239 38 v 01 grab 2 002 @ 01831531 v 0000 + 00138956 n 0102 01 + 22 00 | make a grasping or snatching motion with the hand; "The passenger grabbed for the oxygen mask" -02099413 38 v 01 fall 1 001 @ 01835496 v 0000 02 + 04 00 + 22 00 | move in a specified direction; "The line of men fall forward" -02099544 38 v 01 drag 6 001 @ 01835496 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | move slowly and as if with great effort -02099669 38 v 01 rake 0 002 @ 01850315 v 0000 + 04050066 n 0101 01 + 21 00 | move through with or as if with a rake; "She raked her fingers through her hair" -02099829 38 v 01 run b 004 $ 01926984 v 0000 @ 01835496 v 0000 + 13995935 n 0101 $ 02421921 v 0000 02 + 04 00 + 22 00 | move about freely and without restraint, or act as if running around in an uncontrolled way; "who are these people running around in the building?"; "She runs around telling everyone of her troubles"; "let the dogs run free" -02100176 38 v 01 bang 0 002 @ 01835496 v 0000 + 07376257 n 0101 02 + 04 00 + 22 00 | move noisily; "The window banged shut"; "The old man banged around the house" -02100341 38 v 01 tool 1 002 $ 01956708 v 0000 @ 01930874 v 0000 02 + 01 00 + 04 00 | drive; "The convertible tooled down the street" -02100476 38 v 01 run_away 4 001 @ 02074677 v 0000 04 + 01 00 + 02 00 + 04 00 + 21 00 | escape from the control of; "Industry is running away with us all" -02100632 38 v 01 blow 3 005 @ 01850315 v 0000 + 11465017 n 0103 + 03271574 n 0102 + 02855089 n 0101 ~ 02100861 v 0000 02 + 08 00 + 11 00 | cause to move by means of an air current; "The wind blew the leaves around in the yard" -02100861 38 v 01 whiff 0 002 @ 02100632 v 0000 + 11497888 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | drive or carry as if by a puff of air; "The gust of air whiffed away the clouds" -02101046 38 v 01 blow 9 004 @ 01951480 v 0000 + 03271574 n 0102 + 02855089 n 0101 ~ 02101216 v 0000 01 + 11 00 | cause air to go in, on, or through; "Blow my hair dry" -02101216 38 v 01 blast 2 001 @ 02101046 v 0000 02 + 01 00 + 11 00 | apply a draft or strong wind to to; "the air conditioning was blasting cold air at us" -02101373 38 v 01 break f 001 @ 00550117 v 0000 02 + 01 00 + 02 00 | change directions suddenly -02101470 38 v 01 precess 0 001 @ 01835496 v 0000 02 + 01 00 + 04 00 | move in a gyrating fashion; "the poles of the Earth precess at a right angle to the force that is applied" -02101649 38 v 01 cut f 002 @ 01831531 v 0000 ;c 00445802 n 0000 01 + 22 00 | move (one's fist); "his opponent cut upward toward his chin" -02101789 38 v 01 drag a 001 @ 01850315 v 0000 02 + 08 00 + 21 00 | use a computer mouse to move icons on the screen and select commands from a menu; "drag this icon to the lower right hand corner of the screen" -02102002 38 v 02 travel 5 move_around 0 005 @ 01835496 v 0000 + 00295701 n 0101 + 09629752 n 0102 + 09629752 n 0101 ~ 02102247 v 0000 01 + 02 00 | travel from place to place, as for the purpose of finding work, preaching, or acting as a judge -02102247 38 v 01 itinerate 0 002 @ 02102002 v 0000 + 02128566 a 0101 01 + 02 00 | travel from place to place, as for work; "an itinerating merchant" -02102398 38 v 01 ride 4 005 $ 01955984 v 0000 $ 01957529 v 0000 @ 01835496 v 0000 + 00307631 n 0102 + 10530150 n 0101 01 + 08 00 | sit on and control a vehicle; "He rides his bicycle to work every day"; "She loves to ride her new motorcycle through town" -02102655 38 v 01 advect 0 003 @ 01953810 v 0000 + 02606182 a 0101 + 13427989 n 0101 01 + 08 00 | convey by horizontal mass movement of a fluid; "energy advected from the environment" -02102840 38 v 01 wander 2 003 $ 01881180 v 0000 @ 01995549 v 0000 $ 01882814 v 0000 01 + 22 00 | go via an indirect route or at no set pace; "After dinner, we wandered into town" -02103021 38 v 01 ascend 4 001 @ 01991931 v 0000 02 + 08 00 + 11 00 | go along towards (a river's) source; "The boat ascended the Delaware" -02103162 38 v 02 pull d draw b 002 @ 01850315 v 0000 $ 01448100 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to move in a certain direction by exerting a force upon, either physically or in an abstract sense; "A declining dollar pulled down the export figures for the last quarter" -02103451 38 v 01 snowshoe 0 001 @ 01835496 v 0000 02 + 02 00 + 22 00 | travel on snowshoes; "After a heavy snowfall, we have to snowshoe to the grocery store" -02103612 38 v 01 beetle 0 001 @ 01835496 v 0000 02 + 02 00 + 22 00 | fly or go in a manner resembling a beetle; "He beetled up the staircase"; "They beetled off home" -02103781 38 v 01 lateralize 0 002 @ 01850315 v 0000 + 05992624 n 0101 02 + 08 00 + 11 00 | move or displace to one side so as to make lateral -02103925 38 v 01 translate 4 003 @ 01850315 v 0000 ;c 06090869 n 0000 + 00330984 n 0101 02 + 08 00 + 11 00 | subject to movement in which every part of the body moves parallel to and the same distance as every other point on the body -02104161 38 v 02 hit 2 strike 2 002 @ 01850315 v 0000 ~ 02104373 v 0000 02 + 20 00 + 21 00 | drive something violently into a location; "he hit his fist on the table"; "she struck her head on the low ceiling" -02104373 38 v 01 smash 2 001 @ 02104161 v 0000 02 + 20 00 + 21 00 | hit violently; "She smashed her car against the guard rail" -02104503 38 v 01 close 8 002 @ 01831531 v 0000 ;c 00471437 n 0000 01 + 02 00 | change one's body stance so that the forward shoulder and foot are closer to the intended point of impact -02104690 38 v 01 teleport 0 003 @ 01953810 v 0000 ;c 06368628 n 0000 + 01254473 n 0101 01 + 08 00 | transport by dematerializing at one point and assembling at another -02104860 38 v 01 snowboard 0 004 @ 01887576 v 0000 + 04251791 n 0101 + 10617665 n 0101 + 00329468 n 0101 01 + 02 00 | glide down a snow-covered slope while standing on a board; "The children love to snowboard in winter" -02105082 38 v 03 jump b leap b jump_off 2 001 @ 01831531 v 0000 01 + 02 00 | jump down from an elevated point; "the parachutist didn't want to jump"; "every year, hundreds of people jump off the Golden Gate bridge"; "the widow leapt into the funeral pyre" -02105340 38 v 01 sling 1 001 @ 01850315 v 0000 01 + 08 00 | move with a sling; "sling the cargo onto the ship" -02105453 38 v 01 sling 2 001 @ 01481360 v 0000 01 + 08 00 | hang loosely or freely; let swing -02105549 38 v 01 slip 2 001 @ 01831531 v 0000 01 + 22 00 | move easily; "slip into something comfortable" -02105657 38 v 02 ascend a climb_up a 000 01 + 01 00 | appear to be moving upward, as by means of tendrils; "the vine climbed up the side of the house" -02105810 39 v 02 record 0 register 0 003 $ 02139740 v 0000 * 02106506 v 0000 $ 00728224 v 0000 03 + 08 00 + 09 00 + 11 00 | be aware of; "Did you register any change when I pressed the button?" -02106006 39 v 02 feel 0 sense 0 013 @ 02106506 v 0000 + 01748152 a 0201 + 02102484 a 0201 + 02102484 a 0202 + 02103481 a 0201 + 05651971 n 0201 + 05651971 n 0202 + 05712076 n 0201 + 03180969 n 0202 + 00876874 n 0201 + 04946553 n 0102 + 05721500 n 0101 $ 02730471 v 0000 02 + 08 00 + 09 00 | perceive by a physical sensation, e.g., coming from the skin or muscles; "He felt the wind"; "She felt an object brushing her arm"; "He felt his flesh crawl"; "She felt the heat when she got out of the car" -02106506 39 v 02 perceive 0 comprehend 0 024 + 05805902 n 0201 + 01717471 a 0101 + 01287282 a 0102 + 02868326 a 0101 + 00876874 n 0102 + 09626589 n 0101 ~ 02106006 v 0000 ~ 02107097 v 0000 ~ 02107248 v 0000 ~ 02107588 v 0000 ~ 02117649 v 0000 ~ 02117840 v 0000 ~ 02117955 v 0000 ~ 02118242 v 0000 ~ 02121511 v 0000 ~ 02124748 v 0000 ~ 02127358 v 0000 ~ 02129289 v 0000 ~ 02163746 v 0000 ~ 02169702 v 0000 ~ 02169891 v 0000 ~ 02191546 v 0000 ~ 02197781 v 0000 ~ 02198973 v 0000 02 + 08 00 + 09 00 | to become aware of through the senses; "I could perceive the ship coming over the horizon" -02107097 39 v 01 apperceive 0 003 @ 02106506 v 0000 ;c 06136258 n 0000 + 05708658 n 0101 02 + 08 00 + 09 00 | perceive in terms of a past experience -02107248 39 v 02 pick_up 1 receive 0 005 @ 02106506 v 0000 + 00333611 a 0202 + 04060647 n 0201 + 05299178 n 0203 ~ 02107442 v 0000 01 + 11 00 | register (perceptual input); "pick up a signal" -02107442 39 v 01 hear 1 001 @ 02107248 v 0000 01 + 22 00 | receive a communication from someone; "We heard nothing from our son for five years" -02107588 39 v 01 divine 0 006 @ 02106506 v 0000 + 01882754 a 0101 + 06750154 n 0102 + 05776212 n 0101 + 10020031 n 0101 ~ 02107817 v 0000 02 + 08 00 + 26 00 | perceive intuitively or through some inexplicable perceptive powers -02107817 39 v 01 chiromance 0 003 @ 02107588 v 0000 + 05777830 n 0103 + 10395209 n 0103 02 + 02 00 + 08 00 | divine by reading someone's palms; "The Gypsies chiromanced"; "She refused to chiromance my fate" -02108026 39 v 04 experience 0 receive 3 have 6 get 0 007 * 02106506 v 0000 @ 02108377 v 0000 + 07285403 n 0101 + 05984584 n 0101 ~ 00065639 v 0000 ~ 02109045 v 0000 ~ 02116777 v 0000 02 + 08 00 + 11 00 | go through (mental or physical states or experiences); "get an idea"; "experience vertigo"; "get nauseous"; "receive injuries"; "have a feeling" -02108377 39 v 01 undergo 4 006 @ 00109660 v 0000 ~ 00002325 v 0000 ~ 00057506 v 0000 ~ 00669762 v 0000 ~ 02108026 v 0000 ~ 02110220 v 0000 02 + 08 00 + 11 00 | pass through; "The chemical undergoes a sudden change"; "The fluid undergoes shear"; "undergo a strange sensation" -02108654 39 v 02 get e receive f 001 $ 02109645 v 0000 01 + 08 00 | receive as a retribution or punishment; "He got 5 years in prison" -02108791 39 v 03 hit 0 strike 0 come_to 0 001 $ 01767949 v 0000 01 + 10 00 | cause to experience suddenly; "Panic struck me"; "An interesting idea hit her"; "A thought came to me"; "The thought struck terror in our minds"; "They were struck with fear" -02109045 39 v 01 take 0 002 @ 02108026 v 0000 $ 00669762 v 0000 01 + 08 00 | experience or feel or submit to; "Take a test"; "Take the plunge" -02109190 39 v 02 suffer 1 endure 0 004 @ 02110220 v 0000 ! 02110793 v 0101 ~ 02109404 v 0000 ~ 02109818 v 0000 01 + 08 00 | undergo or be subjected to; "He suffered the penalty"; "Many saints suffered martyrdom" -02109404 39 v 01 tolerate 0 002 @ 02109190 v 0000 ;c 06043075 n 0000 01 + 08 00 | have a tolerance for a poison or strong drug or pathogen or environmental condition; "The patient does not tolerate the anti-inflammatory drugs we gave him" -02109645 39 v 02 catch 9 get 9 003 $ 00543016 v 0000 @ 02121511 v 0000 $ 02108654 v 0000 01 + 08 00 | suffer from the receipt of; "She will catch hell for this behavior!" -02109818 39 v 01 die 0 008 @ 02109190 v 0000 + 07355491 n 0101 + 11444117 n 0101 + 15143276 n 0101 + 09488259 n 0101 + 13962498 n 0101 + 00219575 n 0101 $ 00358431 v 0000 01 + 02 00 | suffer or face the pain of death; "Martyrs may die every day for their faith" -02110082 39 v 02 suffer 2 meet 0 001 @ 02110220 v 0000 01 + 08 00 | undergo or suffer; "meet a violent death"; "suffer a terrible fate" -02110220 39 v 03 experience 1 see c go_through 0 010 @ 02108377 v 0000 + 07285403 n 0101 + 05758059 n 0101 ~ 00596644 v 0000 ~ 02109190 v 0000 ~ 02110082 v 0000 ~ 02110552 v 0000 ~ 02110793 v 0000 ~ 02128873 v 0000 ~ 02197360 v 0000 01 + 08 00 | go or live through; "We had many trials to go through"; "he saw action in Viet Nam" -02110552 39 v 01 feel 1 002 @ 02110220 v 0000 + 14526182 n 0104 02 + 08 00 + 11 00 | undergo passive experience of:"We felt the effects of inflation"; "her fingers felt their way through the string quartet"; "she felt his contempt of her" -02110793 39 v 01 enjoy 0 002 @ 02110220 v 0000 ! 02109190 v 0101 01 + 11 00 | have for one's benefit; "The industry enjoyed a boom" -02110927 39 v 01 subject 3 010 > 02110220 v 0000 @ 00137313 v 0000 ~ 00138360 v 0000 ~ 02111371 v 0000 ~ 02111499 v 0000 ~ 02111625 v 0000 ~ 02111838 v 0000 ~ 02112029 v 0000 ~ 02113430 v 0000 ~ 02721031 v 0000 02 + 20 00 + 21 00 | cause to experience or suffer or make liable or vulnerable to; "He subjected me to his awful poetry"; "The sergeant subjected the new recruits to many drills"; "People in Chernobyl were subjected to radiation" -02111371 39 v 01 vitriol 0 001 @ 02110927 v 0000 02 + 08 00 + 09 00 | expose to the effects of vitriol or injure with vitriol -02111499 39 v 01 put d 001 @ 02110927 v 0000 01 + 20 00 | cause (someone) to undergo something; "He put her to the torture" -02111625 39 v 01 shipwreck 0 003 @ 02110927 v 0000 ;c 00313647 n 0000 + 04197110 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to experience shipwreck; "They were shipwrecked in one of the mysteries at sea" -02111838 39 v 01 refract 0 005 @ 02110927 v 0000 ;c 06100778 n 0000 + 02312918 a 0102 + 02788005 a 0101 + 11503287 n 0101 02 + 08 00 + 11 00 | subject to refraction; "refract a light beam" -02112029 39 v 01 expose 2 008 @ 02110927 v 0000 + 05043973 n 0101 + 00157463 n 0101 ~ 02112345 v 0000 ~ 02112546 v 0000 ~ 02112891 v 0000 ~ 02113054 v 0000 ~ 02113253 v 0000 02 + 09 00 + 20 00 | expose or make accessible to some action or influence; "Expose your students to art"; "expose the blanket to sunshine" -02112345 39 v 01 ventilate 0 003 @ 02112029 v 0000 + 04526964 n 0101 + 04526520 n 0101 01 + 08 00 | expose to the circulation of fresh air so as to retard spoilage; "Wheat should be well ventilated" -02112546 39 v 04 sun 0 insolate 0 solarize 0 solarise 0 007 @ 02112029 v 0000 + 05044387 n 0402 + 05044387 n 0301 + 14204586 n 0202 + 11509968 n 0201 + 00662972 n 0202 + 11485367 n 0103 01 + 08 00 | expose to the rays of the sun or affect by exposure to the sun; "insolated paper may turn yellow and crumble"; "These herbs suffer when sunned" -02112891 39 v 03 air_out 0 air 0 aerate 0 003 @ 02112029 v 0000 + 14841267 n 0301 + 13428159 n 0301 01 + 08 00 | expose to fresh air; "aerate your old sneakers" -02113054 39 v 01 overexpose 0 004 @ 02112029 v 0000 ;c 00903559 n 0000 + 00157687 n 0101 ! 02113253 v 0101 02 + 09 00 + 20 00 | expose excessively; "As a child, I was overexposed to French movies" -02113253 39 v 01 underexpose 0 003 @ 02112029 v 0000 ;c 00903559 n 0000 ! 02113054 v 0101 02 + 09 00 + 10 00 | expose insufficiently; "The child was underexposed to language" -02113430 39 v 01 expose 1 006 @ 02110927 v 0000 ;c 00903559 n 0000 + 13640206 n 0101 + 00907340 n 0101 ~ 02113622 v 0000 ~ 02114228 v 0000 01 + 08 00 | expose to light, of photographic film -02113622 39 v 01 overexpose 1 005 @ 02113430 v 0000 ;c 00903559 n 0000 + 00907500 n 0101 ! 02114228 v 0101 ~ 02113850 v 0000 01 + 08 00 | expose to too much light; "the photographic film was overexposed and there is no image" -02113850 39 v 02 solarize 1 solarise 1 004 @ 02113622 v 0000 ;c 00903559 n 0000 $ 02114056 v 0000 $ 02114433 v 0000 01 + 08 00 | overexpose to sunlight; "be careful not to solarize the photographic film" -02114056 39 v 02 solarize 2 solarise 2 004 $ 02113850 v 0000 @ 00109660 v 0000 ;c 00903559 n 0000 $ 02114433 v 0000 01 + 01 00 | become overexposed; "The film solarized" -02114228 39 v 01 underexpose 1 004 @ 02113430 v 0000 ;c 00903559 n 0000 + 00907642 n 0101 ! 02113622 v 0101 01 + 08 00 | expose to too little light; "The film is underexposed, so the image is very dark" -02114433 39 v 02 solarize 3 solarise 3 004 $ 02113850 v 0000 $ 02114056 v 0000 @ 02138766 v 0000 ;c 00903559 n 0000 01 + 11 00 | reverse some of the tones of (a negative or print) and introduce pronounced outlines of highlights, by exposing it briefly to light, then washing and redeveloping it -02114730 39 v 02 photosensitize 0 photosensitise 0 001 @ 02115778 v 0000 02 + 08 00 + 11 00 | make (an organism or substance) sensitive to the influence of radiant energy and especially light -02114924 39 v 02 desensitize 0 desensitise 0 009 @ 00126264 v 0000 + 13463255 n 0202 ! 02115778 v 0202 + 13463255 n 0101 ! 02115778 v 0101 ~ 02115273 v 0000 ~ 02115430 v 0000 ~ 02115618 v 0000 ~ 02189940 v 0000 03 + 08 00 + 09 00 + 10 00 | cause not to be sensitive; "The war desensitized many soldiers"; "The photographic plate was desensitized" -02115273 39 v 04 numb 0 benumb 0 blunt 0 dull 1 001 @ 02114924 v 0000 03 + 08 00 + 09 00 + 10 00 | make numb or insensitive; "The shock numbed her senses" -02115430 39 v 03 stun 0 bedaze 0 daze 0 003 @ 02114924 v 0000 + 07510625 n 0301 + 10613996 n 0102 02 + 09 00 + 10 00 | overcome as with astonishment or disbelief; "The news stunned her" -02115618 39 v 02 besot 0 stupefy 0 002 @ 02114924 v 0000 + 01267135 n 0201 02 + 09 00 + 10 00 | make dull or stupid or muddle with drunkenness or infatuation -02115778 39 v 02 sensitize 0 sensitise 0 005 > 02106006 v 0000 ! 02114924 v 0202 ! 02114924 v 0101 ~ 02114730 v 0000 ~ 02116118 v 0000 03 + 08 00 + 09 00 + 10 00 | cause to sense; make sensitive; "She sensitized me with respect to gender differences in this traditional male-dominated society"; "My tongue became sensitized to good wine" -02116118 39 v 03 stimulate 0 excite 0 stir 0 016 @ 02115778 v 0000 + 07514345 n 0301 + 02309971 a 0201 + 14037011 n 0201 + 14037011 n 0202 + 02309341 a 0101 + 02310371 a 0101 + 05827684 n 0102 ~ 01430633 v 0000 ~ 01430952 v 0000 ~ 02116568 v 0000 ~ 02116980 v 0000 ~ 02117170 v 0000 ~ 02117333 v 0000 ~ 02117534 v 0000 ~ 02194913 v 0000 03 + 08 00 + 09 00 + 10 00 | stir feelings in; "stimulate my appetite"; "excite the audience"; "stir emotions" -02116568 39 v 01 horripilate 0 003 @ 02116118 v 0000 + 00866606 n 0107 $ 02116777 v 0000 02 + 09 00 + 10 00 | cause (someone's) hair to stand on end and to have goosebumps; "Hitchcock movies horripilate me" -02116777 39 v 01 horripilate 1 003 $ 02116568 v 0000 @ 02108026 v 0000 + 00866606 n 0107 01 + 02 00 | have one's hair stand on end and get goosebumps; "I horripilate when I see violence on television" -02116980 39 v 01 work a 003 $ 01817574 v 0000 $ 01162754 v 0000 @ 02116118 v 0000 02 + 09 00 + 10 00 | provoke or excite; "The rock musician worked the crowd of young girls into a frenzy" -02117170 39 v 04 fellate 0 suck 0 blow 8 go_down_on 0 002 @ 02116118 v 0000 + 00855169 n 0102 01 + 09 00 | provide sexual gratification through oral stimulation -02117333 39 v 01 thrill 0 003 @ 02116118 v 0000 + 07528470 n 0106 + 06370403 n 0101 02 + 09 00 + 10 00 | cause to be thrilled by some perceptual input; "The men were thrilled by a loud whistle blow" -02117534 39 v 02 whet 0 quicken 0 001 @ 02116118 v 0000 01 + 08 00 | make keen or more acute; "whet my appetite" -02117649 39 v 01 hallucinate 0 005 @ 02106506 v 0000 + 01936997 a 0101 + 14377617 n 0101 + 05812921 n 0101 + 05896733 n 0102 02 + 02 00 + 08 00 | perceive what is not there; have illusions -02117840 39 v 01 misperceive 0 002 @ 02106506 v 0000 ~ 02132579 v 0000 02 + 02 00 + 08 00 | perceive incorrectly -02117955 39 v 02 catch 1 pick_up 0 001 @ 02106506 v 0000 01 + 08 00 | perceive with the senses quickly, suddenly, or momentarily; "I caught the aroma of coffee"; "He caught the allusion in her glance"; "ears open to catch every sound"; "The dog picked up the scent"; "Catch a glimpse" -02118242 39 v 01 dream 0 005 * 00014742 v 0000 @ 02106506 v 0000 + 05768553 n 0101 + 10032987 n 0101 + 05768553 n 0102 03 + 02 00 + 08 00 + 26 00 | experience while sleeping; "She claims to never dream"; "He dreamt a strange scene" -02118476 39 v 03 notice 0 mark 0 note 0 009 * 02106506 v 0000 + 06646243 n 0202 + 02323204 a 0101 + 01746995 a 0102 + 01286799 a 0101 + 05703429 n 0101 + 10363445 n 0101 ! 02119241 v 0101 ~ 02118793 v 0000 03 + 08 00 + 09 00 + 26 00 | notice or perceive; "She noted that someone was following her"; "mark my words" -02118793 39 v 01 take_notice 0 001 @ 02118476 v 0000 01 + 22 00 | observe with special attention; "Take notice of the great architecture" -02118933 39 v 03 note 2 take_note 0 observe 1 008 * 02106506 v 0000 + 01287486 a 0303 + 00164462 a 0301 + 09626589 n 0303 + 06767035 n 0301 + 05818741 n 0301 + 05703429 n 0302 + 00879759 n 0301 03 + 08 00 + 09 00 + 02 02 | observe with care or pay close attention to; "Take note of this chemical reaction" -02119241 39 v 01 ignore 0 002 ! 02118476 v 0101 ~ 02119353 v 0000 03 + 08 00 + 09 00 + 26 00 | fail to notice -02119353 39 v 01 pass_up 0 001 @ 02119241 v 0000 01 + 09 00 | fail to acknowledge; "he passed me up in the street" -02119470 39 v 01 glimpse 0 003 @ 02129289 v 0000 + 05934396 n 0101 + 00877625 n 0102 01 + 08 00 | catch a glimpse of or see briefly; "We glimpsed the Queen as she got into her limousine" -02119659 39 v 03 chafe 0 gall 0 fret 0 005 @ 00063291 v 0000 + 04683002 n 0302 + 14184390 n 0201 + 14275240 n 0202 + 14333136 n 0101 04 + 01 00 + 08 00 + 10 00 + 11 00 | become or make sore by or as if by rubbing -02119874 39 v 03 rub 0 scratch 0 itch 1 006 @ 00063291 v 0000 + 05723563 n 0301 + 14180327 n 0302 + 14286549 n 0202 + 10563711 n 0201 + 00125126 n 0101 04 + 01 00 + 08 00 + 10 00 + 11 00 | scrape or rub as if to relieve itching; "Don't scratch your insect bites!" -02120140 39 v 03 tickle 0 titillate 0 vellicate 0 006 @ 02121188 v 0000 + 14361664 n 0303 + 00144445 n 0203 + 00144445 n 0101 + 05723417 n 0101 + 00144445 n 0102 03 + 09 00 + 10 00 + 11 00 | touch (a body part) lightly so as to excite the surface nerves and cause uneasiness, laughter, or spasmodic movements -02120451 39 v 03 bite 0 sting 2 burn 0 007 $ 02121048 v 0000 @ 02122164 v 0000 + 14325437 n 0301 + 14332085 n 0201 + 02465693 n 0201 + 01174988 n 0201 ~ 02120715 v 0000 02 + 10 00 + 11 00 | cause a sharp or stinging pain or discomfort; "The sun burned his face" -02120715 39 v 02 nettle 0 urticate 0 004 @ 02120451 v 0000 + 05724357 n 0201 + 12392070 n 0101 $ 02120912 v 0000 01 + 11 00 | sting with or as with nettles and cause a stinging pain or sensation -02120912 39 v 01 urticate 1 002 $ 02120715 v 0000 @ 01398032 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | whip with or as with nettles -02121048 39 v 01 burn 4 003 @ 02122164 v 0000 + 14325437 n 0101 $ 02120451 v 0000 01 + 01 00 | feel hot or painful; "My eyes are burning" -02121188 39 v 01 itch 0 006 @ 02122164 v 0000 + 14180327 n 0102 + 05723563 n 0101 + 05723563 n 0103 ~ 02120140 v 0000 ~ 02122983 v 0000 04 + 01 00 + 10 00 + 22 00 + 23 00 | have or perceive an itch; "I'm itching--the air is so dry!" -02121423 39 v 01 itch 2 000 01 + 01 00 | cause to perceive an itch; "his skin itched" -02121511 39 v 03 hurt 1 ache 1 suffer 0 012 @ 02106506 v 0000 + 10595647 n 0303 + 14324274 n 0302 + 07495327 n 0301 + 14323683 n 0201 + 14323683 n 0202 + 14285662 n 0102 + 14322699 n 0102 ~ 02109645 v 0000 ~ 02121845 v 0000 ~ 02123424 v 0000 ~ 02198819 v 0000 01 + 02 00 | feel physical pain; "Were you hurting after the accident?" -02121845 39 v 01 twinge 1 002 @ 02121511 v 0000 + 05725269 n 0101 01 + 01 00 | feel a sudden sharp, local pain -02121958 39 v 01 hunger 0 002 @ 02122164 v 0000 + 14039534 n 0101 01 + 02 00 | feel the need to eat -02122060 39 v 01 thirst 0 002 @ 02122164 v 0000 + 14040660 n 0101 01 + 02 00 | feel the need to drink -02122164 39 v 03 ache 0 smart 0 hurt 0 015 @ 02123903 v 0000 + 07496463 n 0302 + 14322699 n 0302 + 14331873 n 0202 + 14331873 n 0201 + 14323683 n 0101 + 14323683 n 0102 ~ 02120451 v 0000 ~ 02121048 v 0000 ~ 02121188 v 0000 ~ 02121958 v 0000 ~ 02122060 v 0000 ~ 02122522 v 0000 ~ 02122665 v 0000 ~ 02123175 v 0000 02 + 01 00 + 23 00 | be the source of pain -02122522 39 v 01 act_up 0 001 @ 02122164 v 0000 02 + 01 00 + 23 00 | make itself felt as a recurring pain; "My arthritis is acting up again" -02122665 39 v 01 throb 0 005 @ 02122164 v 0000 + 07401726 n 0101 + 14333334 n 0101 + 07401726 n 0102 ~ 02122895 v 0000 02 + 01 00 + 23 00 | pulsate or pound with abnormal force; "my head is throbbing"; "Her heart was throbbing" -02122895 39 v 01 twang 2 001 @ 02122665 v 0000 01 + 01 00 | twitch or throb with pain -02122983 39 v 02 tingle 0 prickle 0 005 @ 02121188 v 0000 + 05722868 n 0201 + 05722868 n 0102 + 07520112 n 0107 + 05722868 n 0103 02 + 01 00 + 23 00 | cause a stinging or tingling sensation -02123175 39 v 01 shoot 0 001 @ 02122164 v 0000 01 + 04 00 | cause a sharp and sudden pain in; "The pain shot up her leg" -02123298 39 v 02 prickle 1 prick 1 002 @ 02123424 v 0000 + 05722868 n 0101 02 + 01 00 + 23 00 | cause a prickling sensation -02123424 39 v 03 prick 0 sting 0 twinge 0 007 @ 02121511 v 0000 + 05725269 n 0301 + 14332085 n 0201 + 02465693 n 0201 + 01174988 n 0201 + 14332085 n 0202 ~ 02123298 v 0000 02 + 10 00 + 11 00 | cause a stinging pain; "The needle pricked his skin" -02123672 39 v 01 smell 0 007 @ 02123903 v 0000 + 00882961 n 0101 + 05658603 n 0101 + 05713737 n 0101 + 04980008 n 0102 ^ 02126022 v 0102 ~ 02124332 v 0000 04 + 01 00 + 02 00 + 06 00 + 07 00 | emit an odor; "The soup smells good" -02123903 39 v 01 cause_to_be_perceived 0 006 ~ 02122164 v 0000 ~ 02123672 v 0000 ~ 02125641 v 0000 ~ 02160552 v 0000 ~ 02176268 v 0000 ~ 02180747 v 0000 02 + 01 00 + 02 00 | have perceptible qualities -02124106 39 v 02 reek 0 stink 0 006 @ 02124332 v 0000 + 05714894 n 0204 + 04320731 n 0201 ^ 02126022 v 0201 ^ 02126022 v 0203 + 05714894 n 0105 02 + 01 00 + 02 00 | smell badly and offensively; "The building reeks of smoke" -02124332 39 v 01 smell 2 004 @ 02123672 v 0000 + 05713737 n 0101 ~ 02124106 v 0000 ~ 02124501 v 0000 02 + 01 00 + 02 00 | smell bad; "He rarely washes, and he smells" -02124501 39 v 01 salute 0 001 @ 02124332 v 0000 02 + 10 00 + 11 00 | become noticeable; "a terrible stench saluted our nostrils" -02124632 39 v 01 reach_one's_nostrils 0 001 * 02123672 v 0000 02 + 01 00 + 02 00 | be smelled; have a strong odor -02124748 39 v 01 smell 1 010 @ 02106506 v 0000 + 00882961 n 0101 + 05658603 n 0101 + 04980008 n 0102 + 05713737 n 0101 + 00882961 n 0102 ~ 02125032 v 0000 ~ 02125223 v 0000 ~ 02126152 v 0000 ~ 02126269 v 0000 02 + 08 00 + 09 00 | inhale the odor of; perceive by the olfactory sense -02125032 39 v 02 sniff 0 whiff 0 004 @ 02124748 v 0000 + 00883139 n 0101 + 10616670 n 0101 ^ 02125460 v 0101 02 + 08 00 + 09 00 | perceive by inhaling through the nose; "sniff the perfume" -02125223 39 v 03 scent 1 nose 1 wind 0 006 @ 02124748 v 0000 + 05658826 n 0201 + 05598147 n 0201 + 04980008 n 0106 + 05714161 n 0101 ^ 02125460 v 0102 02 + 08 00 + 09 00 | catch the scent of; get wind of; "The dog nosed out the drugs" -02125460 39 v 04 sniff_out 0 scent_out 0 smell_out 0 nose_out 0 001 * 02124748 v 0000 02 + 08 00 + 09 00 | recognize or detect by or as if by smelling; "He can smell out trouble" -02125641 39 v 03 odorize 0 odourise 0 scent 2 016 > 02123672 v 0000 @ 02123903 v 0000 + 05714466 n 0304 + 04980008 n 0306 + 05714161 n 0301 + 05713737 n 0202 + 04980008 n 0204 ! 02126863 v 0203 + 05713737 n 0102 + 04980008 n 0104 ! 02126863 v 0101 + 04980008 n 0205 + 05713737 n 0203 ~ 02126022 v 0000 ~ 02126382 v 0000 ~ 02126686 v 0000 01 + 08 00 | cause to smell or be smelly -02126022 39 v 03 stink_up 0 smell_up 0 stink_out 0 001 @ 02125641 v 0000 01 + 08 00 | cause to smell bad; fill with a bad smell -02126152 39 v 02 snuff 0 snuffle 0 002 @ 02124748 v 0000 + 00883139 n 0102 01 + 08 00 | sniff or smell inquiringly -02126269 39 v 02 get_a_noseful 0 get_a_whiff 0 001 @ 02124748 v 0000 01 + 22 00 | smell strongly and intensely -02126382 39 v 03 perfume 0 aromatize 0 aromatise 0 008 @ 02125641 v 0000 + 05714466 n 0301 + 04980008 n 0303 + 05714466 n 0201 + 04980008 n 0203 + 05714466 n 0103 + 03916031 n 0101 + 03916470 n 0101 02 + 08 00 + 11 00 | fill or impregnate with an odor; "orange blossoms perfumed the air in the garden" -02126686 39 v 03 cense 0 incense 0 thurify 0 004 @ 02125641 v 0000 + 14873951 n 0304 + 14918994 n 0201 + 05714745 n 0201 02 + 08 00 + 11 00 | perfume especially with a censer -02126863 39 v 03 deodorize 0 deodorise 0 deodourise 0 005 @ 00126264 v 0000 + 03176594 n 0302 + 03176594 n 0101 ! 02125641 v 0101 ! 02125641 v 0302 02 + 08 00 + 11 00 | eliminate the odor from; "This stick will deodorize your armpits" -02127100 39 v 02 fumigate 0 fume 0 006 @ 00515154 v 0000 + 11508092 n 0102 + 00712979 n 0101 + 14876206 n 0101 + 10115840 n 0101 + 03402785 n 0101 01 + 08 00 | treat with fumes, expose to fumes, especially with the aim of disinfecting or eradicating pests -02127358 39 v 01 touch 0 005 @ 02106506 v 0000 + 05722427 n 0101 + 05655119 n 0101 + 07409592 n 0101 + 07409592 n 0102 02 + 08 00 + 09 00 | perceive via the tactile sense; "Helen Keller felt the physical world by touching people and objects around her" -02127613 39 v 01 feel a 007 $ 01209678 v 0000 $ 01210352 v 0000 $ 01210152 v 0000 * 02127358 v 0000 @ 01315613 v 0000 + 04946553 n 0102 ~ 01314440 v 0000 02 + 08 00 + 09 00 | grope or feel in search of something; "He felt for his wallet" -02127853 39 v 02 miss 0 lose 1 001 ~ 02166361 v 0000 02 + 08 00 + 09 00 | fail to perceive or to catch with the senses or the mind; "I missed that remark"; "She missed his point"; "We lost part of what he said" -02128066 39 v 01 discover 0 005 * 02106506 v 0000 + 07214432 n 0101 + 05808218 n 0101 + 00043195 n 0101 ~ 02156384 v 0000 02 + 08 00 + 09 00 | see for the first time; make a discovery; "Who discovered the North Pole?" -02128286 39 v 01 witness 0 006 @ 02150510 v 0000 + 10786517 n 0101 + 10786270 n 0101 + 10786033 n 0101 + 10786033 n 0102 ~ 02128514 v 0000 01 + 08 00 | be a witness to; "She witnessed the accident and had to testify in court" -02128514 39 v 01 eyewitness 0 002 @ 02128286 v 0000 + 10075299 n 0101 01 + 08 00 | be present at an event and see it with one's own eyes -02128653 39 v 02 watch 2 look_on 0 005 * 02129289 v 0000 + 10633450 n 0104 + 00880662 n 0101 + 00879759 n 0103 ~ 02374099 v 0000 02 + 02 00 + 08 01 | observe with attention; "They watched as the murderer was executed" -02128873 39 v 03 witness 1 find 1 see 2 006 $ 02197781 v 0000 $ 00598954 v 0000 @ 02110220 v 0000 + 10090498 n 0201 + 10633450 n 0102 ~ 00726009 v 0000 02 + 24 00 + 26 00 | perceive or be contemporaneous with; "We found Republicans winning the offices"; "You'll see a lot of cheating in this school"; "The 1960's saw the rebellion of the younger generation against established traditions"; "I want to see results" -02129289 39 v 01 see 0 010 $ 02150948 v 0000 $ 02156225 v 0000 @ 02106506 v 0000 + 10576071 n 0101 + 05710860 n 0103 + 05656537 n 0102 ~ 02119470 v 0000 ~ 02129709 v 0000 ~ 02129879 v 0000 ~ 02130160 v 0000 03 + 02 00 + 08 00 + 09 00 | perceive by sight or have the power to perceive by sight; "You have to be a good observer to see all the details"; "Can you see the bird in that tree?"; "He is blind--he cannot see" -02129709 39 v 01 see 5 003 @ 02129289 v 0000 + 05656537 n 0102 $ 00591115 v 0000 01 + 02 00 | see and understand, have a good eye; "The artist must first learn to see" -02129879 39 v 03 catch_sight 0 get_a_look 0 catch_a_glimpse 0 001 @ 02129289 v 0000 02 + 02 00 + 22 00 | see something for a brief time -02130017 39 v 01 lose_sight_of 0 000 02 + 08 00 + 09 00 | be no longer able to see; "We lost sight of the tower as pulled out of the harbor" -02130160 39 v 02 behold 0 lay_eyes_on 0 002 @ 02129289 v 0000 + 09626589 n 0104 02 + 08 00 + 09 00 | see with attention; "behold Christ!" -02130300 39 v 03 view 0 consider 8 look_at 1 006 @ 00644583 v 0000 + 05784831 n 0201 + 06208751 n 0102 + 04534651 n 0101 ~ 02164825 v 0000 ~ 02165002 v 0000 01 + 08 00 | look at carefully; study mentally; "view a problem" -02130524 39 v 01 look 0 031 * 02129289 v 0000 + 10633450 n 0105 + 00877127 n 0101 ^ 02132099 v 0101 ^ 02132263 v 0101 ^ 02167435 v 0101 ^ 02128653 v 0102 ^ 01827858 v 0102 ^ 01315613 v 0103 ^ 00661824 v 0103 ^ 00696414 v 0102 ^ 00877083 v 0103 ~ 00033406 v 0000 ~ 02131777 v 0000 ~ 02132099 v 0000 ~ 02132263 v 0000 ~ 02132420 v 0000 ~ 02132745 v 0000 ~ 02133185 v 0000 ~ 02164067 v 0000 ~ 02164186 v 0000 ~ 02164288 v 0000 ~ 02164531 v 0000 ~ 02164694 v 0000 ~ 02165146 v 0000 ~ 02165304 v 0000 ~ 02166861 v 0000 ~ 02167052 v 0000 ~ 02167875 v 0000 ~ 02168070 v 0000 ~ 02168965 v 0000 02 + 02 00 + 22 00 | perceive with attention; direct one's gaze towards; "She looked over the expanse of land"; "Look at your child!"; "Look--a deer in the backyard!" -02131279 39 v 02 examine 0 see d 016 * 02130524 v 0000 + 00635850 n 0101 + 10067968 n 0101 ~ 01317723 v 0000 ~ 02149786 v 0000 ~ 02149899 v 0000 ~ 02150039 v 0000 ~ 02150192 v 0000 ~ 02150328 v 0000 ~ 02152278 v 0000 ~ 02152504 v 0000 ~ 02152812 v 0000 ~ 02153387 v 0000 ~ 02153709 v 0000 ~ 02165543 v 0000 ~ 02533282 v 0000 01 + 08 00 | observe, check out, and look over carefully or inspect; "The customs agent examined the baggage"; "I must see your passport before you can enter the country" -02131777 39 v 03 take_a_look 0 have_a_look 0 get_a_load 0 001 @ 02130524 v 0000 02 + 02 00 + 22 00 | look at with attention; "Have a look at this!"; "Get a load of this pretty woman!" -02131963 39 v 01 watch 3 001 + 00880662 n 0101 01 + 29 00 | observe or determine by looking; "Watch how the dog chases the cats away" -02132099 39 v 02 look_back 0 look_backward 0 001 @ 02130524 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | look towards one's back; "don't look back while you walk" -02132263 39 v 01 look_away 0 001 @ 02130524 v 0000 02 + 02 00 + 22 00 | avert one's gaze; "She looked away when the nurse pricked her arm with the needle" -02132420 39 v 01 look_around 0 001 @ 02130524 v 0000 02 + 02 00 + 22 00 | look about oneself; "look around to see whether you can find the missing document" -02132579 39 v 01 see_double 0 002 * 02129289 v 0000 @ 02117840 v 0000 01 + 02 00 | see things as if they were there twice; "After taking the drug, John saw double" -02132745 39 v 02 gaze 0 stare 0 006 @ 02130524 v 0000 + 00878456 n 0201 + 10648909 n 0201 + 00878648 n 0101 ~ 02132989 v 0000 ~ 02133297 v 0000 02 + 02 00 + 22 00 | look at with fixed eyes; "The students stared at the teacher with amazement" -02132989 39 v 03 stare_down 0 outstare 0 outface 0 001 @ 02132745 v 0000 02 + 08 00 + 09 00 | overcome or cause to waver or submit by (or as if by) staring; "He simply stared down his opponent" -02133185 39 v 02 regard 0 consider 4 002 @ 02130524 v 0000 + 00878648 n 0102 01 + 08 00 | look at attentively -02133297 39 v 01 stargaze 0 004 @ 02132745 v 0000 ;c 06095022 n 0000 + 09818343 n 0103 + 00880563 n 0101 01 + 02 00 | observe the stars -02133435 39 v 03 look 1 appear 0 seem 0 017 @ 02604760 v 0000 + 05939432 n 0201 + 14526182 n 0107 + 04679738 n 0102 + 04674715 n 0101 ~ 02134050 v 0000 ~ 02134232 v 0000 ~ 02134350 v 0000 ~ 02134492 v 0000 ~ 02134927 v 0000 ~ 02136138 v 0000 ~ 02161530 v 0000 ~ 02162947 v 0000 ~ 02674564 v 0000 ~ 02696801 v 0000 ~ 02696961 v 0000 ~ 02730471 v 0000 03 + 06 00 + 07 00 + 28 00 | give a certain impression or have a certain outward aspect; "She seems to be sleeping"; "This appears to be a very difficult problem"; "This project looks fishy"; "They appeared like people who had not eaten or slept for a long time" -02134050 39 v 01 make c 001 @ 02133435 v 0000 02 + 02 00 + 28 00 | appear to begin an activity; "He made to speak but said nothing in the end"; "She made as if to say hello to us" -02134232 39 v 01 cut 3 001 @ 02133435 v 0000 01 + 08 00 | give the appearance or impression of; "cut a nice figure" -02134350 39 v 01 feel 9 002 @ 02133435 v 0000 + 14526182 n 0103 01 + 06 00 | produce a certain impression; "It feels nice to be home again" -02134492 39 v 01 pass_off 0 001 @ 02133435 v 0000 02 + 04 00 + 22 00 | be accepted as something or somebody in a false character or identity; "She passed off as a Russian agent" -02134672 39 v 02 appear 1 seem 1 004 @ 02604760 v 0000 + 01873985 a 0101 + 01618376 a 0101 ~ 02198234 v 0000 01 + 34 00 | seem to be true, probable, or apparent; "It seems that he is very gifted"; "It appears that the weather in California is very bad" -02134927 39 v 01 sound 6 001 @ 02133435 v 0000 02 + 06 00 + 07 00 | appear in a certain way; "This sounds interesting" -02135048 39 v 01 sound 3 009 + 11480930 n 0101 + 07371293 n 0101 + 05718254 n 0101 + 04981139 n 0101 ~ 01056102 v 0000 ~ 01717436 v 0000 ~ 02135328 v 0000 ~ 02135487 v 0000 ~ 02135607 v 0000 02 + 06 00 + 07 00 | give off a certain sound or sounds; "This record sounds scratchy" -02135328 39 v 01 dissonate 0 002 @ 02135048 v 0000 + 01164561 a 0102 01 + 01 00 | be dissonant or harsh; "The violins in this piece dissonated disturbingly" -02135487 39 v 01 pierce 0 001 @ 02135048 v 0000 01 + 11 00 | sound sharply or shrilly; "The scream pierced the night" -02135607 39 v 01 speak 0 001 @ 02135048 v 0000 01 + 01 00 | make a characteristic or natural sound; "The drums spoke" -02135727 39 v 01 blow 0 003 $ 02135877 v 0000 $ 02178340 v 0000 @ 02179518 v 0000 01 + 08 00 | play or sound a wind instrument; "She blew the horn" -02135877 39 v 01 blow 1 003 @ 02176268 v 0000 + 00835501 n 0101 $ 02135727 v 0000 01 + 01 00 | make a sound as if blown; "The whistle blew" -02136019 39 v 01 ting 0 002 @ 02176268 v 0000 + 07398097 n 0101 01 + 01 00 | make a light, metallic sound; go `ting' -02136138 39 v 01 come_across 0 001 @ 02133435 v 0000 02 + 04 00 + 22 00 | be perceived in a certain way; make a certain impression -02136271 39 v 02 reflect 0 reverberate 4 006 ;c 06094774 n 0000 + 02009280 a 0201 + 04069276 n 0101 $ 02136533 v 0000 ~ 02136533 v 0000 ~ 02766925 v 0000 02 + 08 00 + 11 00 | to throw or bend back (from a surface); "Sound is reflected well in this auditorium" -02136533 39 v 01 reverberate 6 003 $ 02136271 v 0000 @ 02136271 v 0000 + 02009280 a 0101 01 + 01 00 | be reflected as heat, sound, or light or shock waves; "the waves reverberate as far away as the end of the building" -02136754 39 v 01 reflect 2 002 @ 02137132 v 0000 ;c 06100778 n 0000 01 + 11 00 | show an image of; "her sunglasses reflected his image" -02136892 39 v 01 reflect 1 001 @ 00923793 v 0000 01 + 11 00 | manifest or bring back; "This action reflects his true beliefs" -02137020 39 v 01 redound 0 001 @ 02357072 v 0000 01 + 04 00 | return or recoil; "Fame redounds to the heroes" -02137132 39 v 01 show 0 016 > 02129289 v 0000 ! 02144835 v 0101 ^ 02141973 v 0103 ~ 01716283 v 0000 ~ 02136754 v 0000 ~ 02137592 v 0000 ~ 02138075 v 0000 ~ 02138453 v 0000 ~ 02138611 v 0000 ~ 02139883 v 0000 ~ 02140033 v 0000 ~ 02140965 v 0000 ~ 02143283 v 0000 ~ 02148788 v 0000 ~ 02199119 v 0000 ~ 02736778 v 0000 05 + 08 00 + 09 00 + 11 00 + 14 00 + 15 00 | make visible or noticeable; "She showed her talent for cooking"; "Show me your etchings, please" -02137592 39 v 01 peep 1 001 @ 02137132 v 0000 01 + 08 00 | cause to appear; "he peeped his head through the window" -02137710 39 v 02 disclose 0 expose 3 003 @ 02143283 v 0000 + 00522537 n 0201 ~ 02137907 v 0000 01 + 11 00 | disclose to view as by removing a cover; "The curtain rose to disclose a stunning set" -02137907 39 v 01 face 4 004 @ 02137710 v 0000 + 03313602 n 0101 + 08510666 n 0102 $ 01908365 v 0000 01 + 08 00 | turn so as to expose the face; "face a playing card" -02138075 39 v 01 project 1 005 > 00422090 v 0000 @ 02137132 v 0000 + 06887599 n 0101 + 04009552 n 0101 ~ 02138283 v 0000 02 + 08 00 + 11 00 | project on a screen; "The images are projected onto the screen" -02138283 39 v 01 silhouette 0 002 @ 02138075 v 0000 + 08613345 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | project on a background, such as a screen, like a silhouette -02138453 39 v 01 do_justice 0 001 @ 02137132 v 0000 03 + 08 00 + 09 00 + 12 00 | bring out fully or to advantage; "This photograph does not do her justice" -02138611 39 v 01 flash 2 003 @ 02137132 v 0000 + 15247110 n 0102 + 10070942 n 0102 02 + 02 00 + 08 00 | expose or show briefly; "he flashed a $100 bill" -02138766 39 v 01 develop 0 009 @ 00126264 v 0000 ;c 13536794 n 0000 ;c 00903559 n 0000 + 13464557 n 0101 + 03182912 n 0101 + 13464557 n 0102 ~ 02114433 v 0000 ~ 02139063 v 0000 ~ 02139361 v 0000 01 + 08 00 | make visible by means of chemical solutions; "Please develop this roll of film for me" -02139063 39 v 01 underdevelop 0 004 @ 02138766 v 0000 ;c 13536794 n 0000 ;c 00903559 n 0000 + 13571041 n 0101 01 + 08 00 | process (a film or photographic plate) less than the required time or in an ineffective solution or at an insufficiently high temperature; "These photos are underdeveloped" -02139361 39 v 01 redevelop 0 002 @ 02138766 v 0000 ;c 13536794 n 0000 01 + 08 00 | develop for a second time, in order to improve the contrast, colour, etc., of a negative or print -02139544 39 v 02 show 1 show_up 0 002 @ 00422090 v 0000 ~ 02139740 v 0000 02 + 01 00 + 04 00 | be or become visible or noticeable; "His good upbringing really shows"; "The dirty side will show" -02139740 39 v 01 register 1 002 @ 02139544 v 0000 $ 02105810 v 0000 02 + 08 00 + 11 00 | show in one's face; "Her surprise did not register" -02139883 39 v 01 screen 0 003 @ 02137132 v 0000 + 04152829 n 0101 + 06888345 n 0101 01 + 08 00 | project onto a screen for viewing; "screen a film" -02140033 39 v 03 expose 0 exhibit 1 display 0 015 @ 02137132 v 0000 + 00521209 n 0301 + 00521209 n 0202 + 00522145 n 0201 + 00522537 n 0101 ~ 02140630 v 0000 ~ 02141146 v 0000 ~ 02141559 v 0000 ~ 02141722 v 0000 ~ 02141840 v 0000 ~ 02141973 v 0000 ~ 02142520 v 0000 ~ 02142626 v 0000 ~ 02142775 v 0000 ~ 02483941 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | to show, make visible or apparent; "The Metropolitan Museum is exhibiting Goya's works this month"; "Why don't you show your nice legs and wear shorter skirts?"; "National leaders will have to display the highest skills of statesmanship" -02140630 39 v 01 open a 002 @ 02140033 v 0000 ! 02140781 v 0101 01 + 08 00 | display the contents of a file or start an application as on a computer -02140781 39 v 01 close a 004 @ 02735418 v 0000 + 00229260 n 0101 + 00344040 n 0102 ! 02140630 v 0101 01 + 08 00 | cause a window or an application to disappear on a computer desktop -02140965 39 v 01 fly 0 002 @ 02137132 v 0000 $ 01848058 v 0000 01 + 08 00 | display in the air or cause to float; "fly a kite"; "All nations fly their flags in front of the U.N." -02141146 39 v 02 produce 1 bring_forth 0 003 @ 02140033 v 0000 + 00522736 n 0101 ~ 02141414 v 0000 01 + 08 00 | bring out for display; "The proud father produced many pictures of his baby"; "The accused brought forth a letter in court that he claims exonerates him" -02141414 39 v 01 turn_on 0 001 @ 02141146 v 0000 01 + 08 00 | produce suddenly or automatically; "Turn on the charm"; "turn on the waterworks" -02141559 39 v 01 hold_up 0 001 @ 02140033 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hold up something as an example; hold up one's achievements for admiration -02141722 39 v 01 bench 0 001 @ 02140033 v 0000 01 + 08 00 | exhibit on a bench; "bench the poodles at the dog show" -02141840 39 v 01 moon 0 002 @ 02140033 v 0000 + 09358550 n 0101 02 + 08 00 + 09 00 | expose one's buttocks to; "moon the audience" -02141973 39 v 05 flaunt 0 flash 1 show_off 0 ostentate 0 swank 0 007 @ 02140033 v 0000 + 06889330 n 0401 + 04789274 n 0401 + 10070711 n 0302 + 06890846 n 0101 ~ 02142280 v 0000 ~ 02142413 v 0000 02 + 08 00 + 09 00 | display proudly; act ostentatiously or pretentiously; "he showed off his new sports car" -02142280 39 v 01 flex 0 001 @ 02141973 v 0000 01 + 08 00 | exhibit the strength of; "The victorious army flexes its invincibility" -02142413 39 v 01 splurge 0 002 @ 02141973 v 0000 + 06890000 n 0101 01 + 02 00 | be showy or ostentatious -02142520 39 v 01 brandish 0 001 @ 02140033 v 0000 01 + 08 00 | exhibit aggressively; "brandish a sword" -02142626 39 v 01 model 0 002 @ 02140033 v 0000 + 10291240 n 0106 02 + 02 00 + 08 00 | display (clothes) as a mannequin; "model the latest fashion" -02142775 39 v 04 model 1 pose 0 sit 0 posture 0 010 @ 02140033 v 0000 ;c 00933420 n 0000 + 05079866 n 0402 + 09813219 n 0302 + 00344421 n 0301 + 05081300 n 0201 + 10324560 n 0202 + 00344421 n 0202 + 10324560 n 0101 ~ 02143124 v 0000 01 + 02 00 | assume a posture as for artistic purposes; "We don't know the woman who posed for Leonardo so often" -02143124 39 v 01 ramp 0 003 @ 02142775 v 0000 ;c 05801594 n 0000 + 01236964 a 0101 01 + 01 00 | be rampant; "the lion is rampant in this heraldic depiction" -02143283 39 v 04 uncover 0 bring_out 0 unveil 0 reveal 0 005 @ 02137132 v 0000 ~ 02137710 v 0000 ~ 02143539 v 0000 ~ 02143906 v 0000 ~ 02144101 v 0000 02 + 08 00 + 11 00 | make visible; "Summer brings out bright clothes"; "He brings out the best in her" -02143539 39 v 02 excavate 0 unearth 0 005 @ 02143283 v 0000 + 08550076 n 0102 + 03302121 n 0101 + 00941974 n 0101 ~ 02143756 v 0000 01 + 07 00 | recover through digging; "Schliemann excavated Troy"; "excavate gold" -02143756 39 v 03 dig 0 dig_up 0 dig_out 0 001 @ 02143539 v 0000 02 + 08 00 + 11 00 | remove, harvest, or recover by digging; "dig salt"; "dig coal" -02143906 39 v 01 trot_out 0 001 @ 02143283 v 0000 01 + 08 00 | bring out and show for inspection and admiration; "His novel trots out a rich heiress"; "always able to trot out some new excuse" -02144101 39 v 01 unfold 0 001 @ 02143283 v 0000 01 + 11 00 | open to the view; "A walk through town will unfold many interesting buildings" -02144243 39 v 01 reveal 4 005 @ 00933821 v 0000 ;c 06183899 n 0000 + 01882292 a 0103 + 07213232 n 0101 + 06447897 n 0101 01 + 08 00 | disclose directly or through prophets; "God rarely reveal his plans for Mankind" -02144460 39 v 01 express 9 002 @ 01644746 v 0000 + 13478205 n 0101 01 + 11 00 | manifest the effects of (a gene or genetic trait); "Many of the laboratory animals express the trait" -02144644 39 v 01 stamp 0 003 @ 00956687 v 0000 + 07998573 n 0101 + 13913566 n 0104 02 + 20 00 + 21 00 | reveal clearly as having a certain character; "His playing stamps him as a Romantic" -02144835 39 v 02 hide 0 conceal 1 015 + 14416089 n 0204 + 01048912 n 0202 ! 02137132 v 0101 ~ 01483247 v 0000 ~ 02145271 v 0000 ~ 02145543 v 0000 ~ 02147109 v 0000 ~ 02147313 v 0000 ~ 02147466 v 0000 ~ 02148369 v 0000 ~ 02148604 v 0000 ~ 02157731 v 0000 ~ 02158587 v 0000 ~ 02371469 v 0000 ~ 02640053 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | prevent from being seen or discovered; "Muslim women hide their faces"; "hide the money" -02145271 39 v 01 secrete 2 002 @ 02144835 v 0000 + 00501004 a 0104 01 + 08 00 | place out of sight; keep secret; "The money was secreted from his children" -02145429 39 v 01 occult 0 001 @ 02146790 v 0000 01 + 11 00 | hide from view; "The lids were occulting her eyes" -02145543 39 v 02 obstruct 4 block 0 003 @ 02144835 v 0000 + 01074694 n 0201 $ 01478002 v 0000 01 + 11 00 | shut out from view or get in the way so as to hide from sight; "The thick curtain blocked the action on the stage"; "The trees obstruct my view of the mountains" -02145814 39 v 02 hide 1 hide_out 0 007 + 08584218 n 0201 ~ 00588703 v 0000 ~ 02146175 v 0000 ~ 02146377 v 0000 ~ 02146525 v 0000 ~ 02146674 v 0000 ~ 02146990 v 0000 02 + 01 00 + 02 00 | be or go into hiding; keep out of sight, as for protection and safety; "Probably his horse would be close to where he was hiding"; "She is hiding out in a cabin in Montana" -02146175 39 v 01 stow_away 0 002 @ 02145814 v 0000 + 10660471 n 0101 01 + 02 00 | hide aboard a ship or a plane to get free transportation; "The illegal immigrants stowed away on board the freighter" -02146377 39 v 01 hunker_down 0 001 @ 02145814 v 0000 02 + 02 00 + 22 00 | take shelter; "During the sandstorm, they hunkered down in a small hut" -02146525 39 v 01 hole_up 0 001 @ 02145814 v 0000 01 + 01 00 | remain secluded or in hiding; "He is writing his book and is holing up in his study" -02146674 39 v 01 lie_low 0 001 @ 02145814 v 0000 02 + 01 00 + 02 00 | keep a low profile, try to be inconspicuous -02146790 39 v 03 conceal 0 hold_back 0 hold_in 0 003 + 01048912 n 0101 + 01048912 n 0102 ~ 02145429 v 0000 01 + 08 00 | hold back; keep from being perceived by others; "She conceals her anger well" -02146990 39 v 01 earth 0 002 @ 02145814 v 0000 + 14842992 n 0101 01 + 01 00 | hide in the earth like a hunted animal -02147109 39 v 01 cover e 005 @ 02144835 v 0000 + 01049685 n 0101 + 04151940 n 0102 + 01049685 n 0102 + 00828082 n 0101 01 + 01 00 | spread over a surface to conceal or protect; "This paint covers well" -02147313 39 v 01 bosom 0 003 @ 02144835 v 0000 + 14416473 n 0101 + 05553486 n 0101 02 + 08 00 + 21 00 | hide in one's bosom; "She bosomed his letters" -02147466 39 v 01 bury 0 001 @ 02144835 v 0000 03 + 08 00 + 21 00 + 16 01 | cover from sight; "Afghani women buried under their burkas" -02147603 39 v 03 dissemble 0 cloak 0 mask 0 004 @ 02158587 v 0000 + 01049475 n 0301 + 01049685 n 0304 + 03045698 n 0201 04 + 08 00 + 09 00 + 10 00 + 11 00 | hide under a false appearance; "He masked his disappointment" -02147824 39 v 01 dissimulate 0 003 @ 02158587 v 0000 + 02181926 a 0101 + 00752431 n 0104 01 + 08 00 | hide (feelings) from other people -02147962 39 v 01 masquerade 0 004 @ 02158587 v 0000 + 03320519 n 0102 + 08253450 n 0101 + 10297841 n 0101 01 + 09 00 | take part in a masquerade -02148109 39 v 04 whitewash 0 gloss_over 0 sleek_over 0 hush_up 0 002 @ 02148369 v 0000 + 01241594 n 0101 03 + 08 00 + 09 00 + 10 00 | cover up a misdemeanor, fault, or error; "Let's not whitewash the crimes of Stalin"; "She tried to gloss over her mistakes" -02148369 39 v 02 cover c cover_up 0 004 @ 02144835 v 0000 + 01050187 n 0201 + 01049685 n 0102 ~ 02148109 v 0000 01 + 08 00 | hide from view or knowledge; "The President covered the fact that he bugged the offices in the White House" -02148604 39 v 03 harbor 0 harbour 0 shield 0 001 @ 02144835 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hold back a thought or feeling about; "She is harboring a grudge against him" -02148788 39 v 05 show 2 demo 0 exhibit 0 present 0 demonstrate 1 015 @ 02137132 v 0000 + 06879180 n 0501 + 00521562 n 0503 + 10003120 n 0501 + 00521562 n 0402 + 07167415 n 0401 + 06891022 n 0401 + 00521562 n 0401 + 10070563 n 0301 + 06879180 n 0202 + 00520257 n 0101 + 06619065 n 0101 + 06888345 n 0102 + 00521209 n 0103 ~ 00543161 v 0000 05 + 08 00 + 11 00 + 14 00 + 15 00 + 17 00 | give an exhibition of to an interested audience; "She shows her dogs frequently"; "We will demo the new software in Washington" -02149302 39 v 01 condemn 0 004 @ 00820976 v 0000 + 14574846 n 0101 + 06709692 n 0102 ~ 02149501 v 0000 02 + 09 00 + 10 00 | demonstrate the guilt of (someone); "Her strange behavior condemned her" -02149501 39 v 01 attaint 0 001 @ 02149302 v 0000 01 + 09 00 | condemn by attainder; "the man was attainted" -02149611 39 v 01 occult 2 001 @ 00109660 v 0000 01 + 01 00 | become concealed or hidden from view or have its light extinguished; "The beam of light occults every so often" -02149786 39 v 01 x-ray 0 002 @ 02131279 v 0000 + 00901316 n 0101 02 + 08 00 + 09 00 | examine by taking x-rays -02149899 39 v 01 candle 0 002 @ 02131279 v 0000 + 13641534 n 0101 01 + 08 00 | examine eggs for freshness by holding them against a light -02150039 39 v 01 autopsy 0 003 @ 02131279 v 0000 ;c 06043075 n 0000 + 00141396 n 0101 01 + 02 00 | perform an autopsy on a dead body; do a post-mortem -02150192 39 v 01 auscultate 0 003 @ 02131279 v 0000 ;c 06043075 n 0000 + 00876542 n 0101 02 + 08 00 + 09 00 | examine by auscultation -02150328 39 v 01 survey 0 004 @ 02131279 v 0000 * 02130524 v 0000 + 00644503 n 0101 ~ 02166248 v 0000 01 + 08 00 | look over carefully or inspect; "He surveyed his new classmates" -02150510 39 v 01 watch 0 007 * 02130524 v 0000 + 00880662 n 0101 + 10633450 n 0104 ~ 02128286 v 0000 ~ 02150740 v 0000 ~ 02150948 v 0000 ~ 02169352 v 0000 03 + 02 00 + 08 00 + 09 00 | look attentively; "watch a basketball game" -02150740 39 v 01 rubberneck 0 003 @ 02150510 v 0000 + 10541106 n 0101 + 00879607 n 0102 01 + 02 00 | strain to watch; stare curiously; "The cars slowed down and the drivers rubbernecked after the accident" -02150948 39 v 05 watch 5 view 2 see 3 catch 2 take_in 6 012 @ 02150510 v 0000 + 10576071 n 0301 + 02517169 a 0201 + 08560952 n 0201 + 00881649 n 0201 + 05933246 n 0201 + 10633450 n 0203 + 00880662 n 0101 $ 02129289 v 0000 ~ 02151394 v 0000 ~ 02151700 v 0000 ~ 02151816 v 0000 01 + 08 00 | see or watch; "view a show on television"; "This program will be seen all over the world"; "view an exhibition"; "Catch a show on Broadway"; "see a movie" -02151394 39 v 02 visualize 0 visualise 0 003 @ 02150948 v 0000 ;c 06043075 n 0000 ~ 02151603 v 0000 01 + 08 00 | view the outline of by means of an X-ray; "The radiologist can visualize the cancerous liver" -02151603 39 v 01 image 3 001 @ 02151394 v 0000 01 + 08 00 | render visible, as by means of MRI -02151700 39 v 01 spectate 0 002 @ 02150948 v 0000 + 10633450 n 0101 01 + 02 00 | be a spectator in a sports event -02151816 39 v 01 preview 0 002 @ 02150948 v 0000 + 06888506 n 0101 01 + 08 00 | watch (a movie or play) before it is released to the general public -02151966 39 v 03 watch 1 look_out 0 watch_out 0 009 + 10271216 n 0201 + 08597176 n 0201 + 03688943 n 0201 + 00881545 n 0201 + 10770059 n 0102 + 10271216 n 0105 ~ 00724664 v 0000 ~ 02167210 v 0000 ~ 02167435 v 0000 02 + 02 00 + 22 00 | be vigilant, be on the lookout or be careful; "Watch out for pickpockets!" -02152278 39 v 05 scan 0 skim 0 rake 0 glance_over 0 run_down 0 003 @ 02131279 v 0000 + 06598746 n 0201 + 06598746 n 0202 02 + 08 00 + 09 00 | examine hastily; "She scanned the newspaper headlines while waiting for the taxi" -02152504 39 v 01 scan 1 004 @ 02131279 v 0000 + 04142549 n 0101 + 00643943 n 0101 ~ 02152690 v 0000 02 + 08 00 + 09 00 | examine minutely or intensely; "the surgeon scanned the X-ray" -02152690 39 v 01 glass 0 002 @ 02152504 v 0000 + 03333129 n 0102 01 + 08 00 | scan (game in the forest) with binoculars -02152812 39 v 01 peruse 0 004 @ 02131279 v 0000 + 06598445 n 0102 + 06598445 n 0101 ~ 02153023 v 0000 01 + 08 00 | examine or consider with attention and in detail; "Please peruse this report at your leisure" -02153023 39 v 06 flick a flip a thumb a riffle a leaf a riff a 002 @ 02152812 v 0000 + 06256229 n 0501 01 + 22 00 | look through a book or other written material; "He thumbed through the report"; "She leafed through the volume" -02153253 39 v 01 zoom_in 0 001 @ 00722232 v 0000 01 + 22 00 | examine closely; focus one's attention on; "He zoomed in on the book" -02153387 39 v 04 size_up 0 take_stock 0 scrutinize 0 scrutinise 0 007 @ 02131279 v 0000 + 10565302 n 0402 + 00878052 n 0401 + 00635850 n 0402 + 10565302 n 0301 + 00878052 n 0301 + 00635850 n 0302 02 + 08 00 + 09 00 | to look at critically or searchingly, or in minute detail; "he scrutinized his likeness in the mirror" -02153709 39 v 02 search 0 look 2 008 @ 02131279 v 0000 + 00945401 n 0101 + 10567401 n 0101 + 10575787 n 0102 ~ 01144657 v 0000 ~ 02154031 v 0000 ~ 02154180 v 0000 ~ 02169119 v 0000 02 + 08 00 + 09 00 | search or seek; "We looked all day and finally found the child in the forest"; "Look elsewhere for the perfect gift!" -02154031 39 v 01 cruise 0 001 @ 02153709 v 0000 02 + 02 00 + 08 00 | look for a sexual partner in a public place; "The men were cruising the park" -02154180 39 v 01 prospect 0 002 @ 02153709 v 0000 + 14482968 n 0101 01 + 08 00 | search for something desirable; "prospect a job" -02154312 39 v 04 descry 0 spot 0 espy 0 spy 0 006 @ 02163746 v 0000 + 00151087 n 0404 + 00151087 n 0303 + 10271216 n 0206 + 10090498 n 0203 + 00151087 n 0205 02 + 08 00 + 09 00 | catch sight of -02154508 39 v 05 detect 0 observe 2 find 2 discover 3 notice 4 027 $ 01637982 v 0000 @ 02163746 v 0000 + 05703429 n 0501 + 10090498 n 0402 + 07214432 n 0401 + 05808218 n 0401 + 00043195 n 0401 + 00043195 n 0302 + 10090498 n 0301 + 09279458 n 0301 + 00151497 n 0302 + 01287486 a 0203 + 01745517 a 0201 + 09626589 n 0203 + 06767035 n 0201 + 05818741 n 0201 + 01002956 n 0201 + 05703429 n 0203 + 00151087 n 0101 + 03181293 n 0101 + 03180969 n 0101 + 00635205 n 0102 ~ 00731574 v 0000 ~ 02155248 v 0000 ~ 02155493 v 0000 ~ 02156063 v 0000 ~ 02156225 v 0000 03 + 08 00 + 09 00 + 26 00 | discover or determine the existence, presence, or fact of; "She detected high levels of lead in her drinking water"; "We found traces of lead in the paint" -02155248 39 v 01 sense 2 003 @ 02154508 v 0000 + 02103481 a 0101 + 05651971 n 0101 01 + 11 00 | detect some circumstance or entity automatically; "This robot can sense the presence of people in the room"; "particle detectors sense ionization" -02155493 39 v 01 instantiate 0 005 @ 02154508 v 0000 + 07308889 n 0102 + 05820620 n 0103 + 05927169 n 0101 $ 02155799 v 0000 01 + 02 00 | find an instance of (a word or particular usage of a word); "The linguists could not instantiate this sense of the noun that he claimed existed in a certain dialect" -02155799 39 v 01 instantiate 1 005 $ 02155493 v 0000 @ 02541921 v 0000 + 07308889 n 0102 + 05820620 n 0103 + 05927169 n 0101 01 + 11 00 | represent by an instance; "This word instantiates the usage that the linguists claimed to be typical for a certain dialect" -02156063 39 v 01 trace 0 003 @ 02154508 v 0000 + 06647036 n 0101 + 13773361 n 0101 01 + 08 00 | discover traces of; "She traced the circumstances of her birth" -02156225 39 v 01 see b 002 @ 02154508 v 0000 $ 02129289 v 0000 02 + 10 00 + 11 00 | observe as if with an eye; "The camera saw the burglary and recorded it" -02156384 39 v 01 rediscover 0 002 @ 02128066 v 0000 + 00151914 n 0101 02 + 08 00 + 09 00 | discover again; "I rediscovered the books that I enjoyed as a child" -02156546 39 v 03 vanish 0 disappear 0 go_away 0 008 @ 02609764 v 0000 + 07335716 n 0201 + 00230172 n 0202 + 10746346 n 0101 + 00053806 n 0101 ~ 00344492 v 0000 ~ 02156844 v 0000 ~ 02156963 v 0000 03 + 01 00 + 02 00 + 22 00 | become invisible or unnoticeable; "The effect vanished when day broke" -02156844 39 v 01 clear 5 001 @ 02156546 v 0000 01 + 01 00 | go away or disappear; "The fog cleared in the afternoon" -02156963 39 v 01 bob_under 0 001 @ 02156546 v 0000 02 + 01 00 + 02 00 | disappear suddenly, as if under the surface of a body of water -02157100 39 v 03 produce 0 bring_on 0 bring_out 1 005 > 00422090 v 0000 + 07006951 n 0101 + 00912960 n 0101 + 10480018 n 0101 ~ 02157361 v 0000 02 + 08 00 + 09 00 | bring onto the market or release; "produce a movie"; "bring out a book"; "produce a new play" -02157361 39 v 01 offer 6 001 @ 02157100 v 0000 01 + 08 00 | produce or introduce on the stage; "The Shakespeare Company is offering `King Lear' this month" -02157519 39 v 03 crop_up 0 pop_up 0 pop 4 001 @ 00422090 v 0000 02 + 01 00 + 22 03 | appear suddenly or unexpectedly; "The farm popped into view as we turned the corner"; "He suddenly popped up out of nowhere" -02157731 39 v 08 obscure 0 befog 0 becloud 0 obnubilate 0 haze_over 0 fog 0 cloud 0 mist 0 004 @ 02144835 v 0000 + 05684561 n 0602 + 14521648 n 0601 ~ 02158196 v 0000 01 + 11 00 | make less visible or unclear; "The stars are obscured by the clouds"; "the big elm tree obscures our view of the valley" -02158034 39 v 03 film_over 0 glaze_over 0 blur 1 001 + 05940414 n 0301 01 + 01 00 | become glassy; lose clear vision; "Her eyes glazed over from lack of sleep" -02158196 39 v 01 overshadow 0 002 @ 02157731 v 0000 ~ 02158340 v 0000 01 + 11 00 | cast a shadow upon; "The tall tree overshadowed the house" -02158340 39 v 02 eclipse 0 occult 1 002 @ 02158196 v 0000 + 07368646 n 0101 01 + 11 00 | cause an eclipse of (a celestial body) by intervention; "The Sun eclipses the moon today"; "Planets and stars often are occulted by other celestial bodies" -02158587 39 v 02 disguise 0 mask 1 007 @ 02144835 v 0000 + 01049266 n 0101 + 03206718 n 0101 ~ 02147603 v 0000 ~ 02147824 v 0000 ~ 02147962 v 0000 ~ 02158896 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | make unrecognizable; "The herb masks the garlic taste"; "We disguised our faces before robbing the bank" -02158896 39 v 01 camouflage 0 004 @ 02158587 v 0000 + 02944579 n 0101 + 02944459 n 0101 + 01049266 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | disguise by camouflaging; exploit the natural surroundings to disguise something; "The troops camouflaged themselves before they went into enemy territory" -02159197 39 v 02 orient 0 orientate 0 004 @ 00697589 v 0000 ! 02159741 v 0101 ~ 02159427 v 0000 ~ 02159594 v 0000 01 + 09 00 | determine one's position with reference to another point; "We had to orient ourselves in the forest" -02159427 39 v 02 guide 0 guide_on 0 003 @ 02159197 v 0000 + 10151570 n 0101 + 10562749 n 0103 02 + 08 00 + 11 00 | use as a guide; "They had the lights to guide on" -02159594 39 v 02 reorientate 0 reorient 0 002 @ 02159197 v 0000 + 06208614 n 0201 02 + 09 00 + 10 00 | orient once again, after a disorientation -02159741 39 v 02 disorient 0 disorientate 0 003 @ 00621734 v 0000 + 05684003 n 0101 ! 02159197 v 0101 01 + 10 00 | cause to be lost or disoriented -02159890 39 v 05 flash 0 blink 0 wink 0 twinkle 0 winkle 0 008 @ 02160552 v 0000 + 07411645 n 0401 + 09464486 n 0401 + 07262704 n 0201 + 02852173 n 0201 + 04953186 n 0101 + 02852173 n 0102 ~ 02160177 v 0000 02 + 01 00 + 08 00 | gleam or glow intermittently; "The lights were flashing" -02160177 39 v 02 flicker 0 flick 0 002 @ 02159890 v 0000 + 07412310 n 0101 01 + 01 00 | flash intermittently; "The lights flicked on and off" -02160321 39 v 01 beat_down 0 001 @ 02763740 v 0000 01 + 01 00 | shine hard; "The sun beat down on the hikers" -02160433 39 v 01 beacon 0 003 @ 02763740 v 0000 + 07264213 n 0101 + 02814860 n 0101 01 + 01 00 | shine like a beacon -02160552 39 v 01 radiate 0 006 @ 02123903 v 0000 + 00280463 a 0104 + 04953954 n 0101 ~ 02159890 v 0000 ~ 02160779 v 0000 ~ 02160944 v 0000 01 + 01 00 | cause to be seen by emitting light as if in rays; "The sun is radiating" -02160779 39 v 02 gleam 0 glimmer 0 004 @ 02160552 v 0000 + 07412478 n 0203 + 07412478 n 0101 + 07412478 n 0102 01 + 01 00 | shine brightly, like a star or a light -02160944 39 v 01 glow 0 004 @ 02160552 v 0000 + 05018785 n 0102 ~ 02161160 v 0000 ~ 02199435 v 0000 01 + 01 00 | emit a steady even light without flames; "The fireflies were glowing and flying about in the garden" -02161160 39 v 01 fluoresce 0 005 @ 02160944 v 0000 + 00271419 a 0101 + 00403505 a 0101 + 11458102 n 0101 ~ 02161330 v 0000 01 + 01 00 | exhibit or undergo fluorescence -02161330 39 v 01 scintillate 0 002 @ 02161160 v 0000 + 11506349 n 0101 01 + 01 00 | physics: fluoresce momentarily when struck by a charged particle or high-energy photon; "the phosphor fluoresced" -02161530 39 v 04 glow 1 beam 3 radiate 5 shine 6 002 @ 02133435 v 0000 + 04954534 n 0103 02 + 01 00 + 02 00 | have a complexion with a strong bright color, such as red or pink; "Her face glowed when she came out of the sauna" -02161758 39 v 01 blur 0 003 @ 00126264 v 0000 + 05940414 n 0101 ! 02161922 v 0101 02 + 08 00 + 11 00 | to make less distinct or clear; "The haze blurs the hills" -02161922 39 v 01 focus 0 006 @ 02190786 v 0000 + 11455695 n 0101 + 04703235 n 0101 + 00375625 n 0103 ! 02161758 v 0101 ~ 02162162 v 0000 02 + 08 00 + 11 00 | cause to converge on or toward a central point; "Focus the light on this image" -02162162 39 v 01 refocus 0 002 @ 02161922 v 0000 + 00375938 n 0101 02 + 08 00 + 11 00 | focus once again; The physicist refocused the light beam" -02162310 39 v 02 dim 1 dip 0 001 @ 02191106 v 0000 01 + 08 00 | switch (a car's headlights) from a higher to a lower beam -02162434 39 v 03 dazzle 0 bedazzle 0 daze 1 003 @ 02168555 v 0000 + 05684561 n 0301 + 04952821 n 0101 02 + 08 00 + 09 00 | to cause someone to lose clear vision, especially from intense light; "She was dazzled by the bright headlights" -02162672 39 v 01 glare 1 003 @ 02763740 v 0000 + 04952570 n 0101 ~ 02162815 v 0000 01 + 01 00 | shine intensely; "The sun glared down on us" -02162815 39 v 01 beat 3 001 @ 02162672 v 0000 01 + 04 00 | glare or strike with great intensity; "The sun was beating down on us" -02162947 39 v 05 glitter 0 glisten 0 glint 0 gleam 1 shine 1 006 @ 02133435 v 0000 + 07412310 n 0303 + 04952944 n 0203 + 04952944 n 0101 ~ 02163183 v 0000 ~ 02706478 v 0000 01 + 01 00 | be shiny, as if wet; "His eyes were glistening" -02163183 39 v 01 spangle 0 002 @ 02162947 v 0000 + 04173698 n 0102 01 + 01 00 | glitter as if covered with spangles -02163301 39 v 02 monitor 0 supervise 0 007 @ 02169352 v 0000 + 01135529 n 0201 + 10676877 n 0201 + 03781787 n 0101 + 10478960 n 0102 + 00880046 n 0101 ~ 00785690 v 0000 02 + 08 00 + 09 00 | keep tabs on; keep an eye on; keep under surveillance; "we are monitoring the air quality"; "the police monitor the suspect's moves" -02163626 39 v 01 monitor 1 001 @ 02169352 v 0000 02 + 08 00 + 10 00 | check, track, or observe by means of a receiver -02163746 39 v 02 spy 1 sight 0 009 @ 02106506 v 0000 + 00881649 n 0203 + 05623818 n 0201 + 05654362 n 0201 + 06888944 n 0201 + 05933054 n 0201 + 00880269 n 0201 ~ 02154312 v 0000 ~ 02154508 v 0000 02 + 08 00 + 09 00 | catch sight of; to perceive with the eyes; "he caught sight of the king's men coming over the ridge" -02164067 39 v 01 ogle 0 002 @ 02130524 v 0000 + 10374282 n 0101 02 + 08 00 + 09 00 | look at with amorous intentions -02164186 39 v 01 give_the_glad_eye 0 001 @ 02130524 v 0000 01 + 09 00 | look seductively at someone -02164288 39 v 01 leer 0 003 @ 02130524 v 0000 + 04680027 n 0101 + 06716483 n 0102 02 + 02 00 + 22 00 | look suggestively or obliquely; look or gaze with a sly, immodest, or malign expression; "The men leered at the young women on the beach" -02164531 39 v 04 goggle 0 gape 0 gawp 0 gawk 0 003 @ 02130524 v 0000 + 00879037 n 0201 + 06877381 n 0201 02 + 02 00 + 22 00 | look with amazement; look stupidly -02164694 39 v 01 admire 0 003 @ 02130524 v 0000 + 09771664 n 0101 + 09771435 n 0101 02 + 08 00 + 09 00 | look at with admiration -02164825 39 v 01 contemplate 0 003 @ 02130300 v 0000 + 05785508 n 0101 + 00878926 n 0101 01 + 08 00 | look at thoughtfully; observe deep in thought; "contemplate one's navel" -02165002 39 v 01 groak 0 001 @ 02130300 v 0000 02 + 08 00 + 11 00 | look or stare at longingly; "The dog his master who was eating a sausage" -02165146 39 v 01 peep 0 003 @ 02130524 v 0000 + 00878221 n 0102 + 10761326 n 0103 01 + 22 00 | look furtively; "He peeped at the woman through the window" -02165304 39 v 03 glance 0 peek 2 glint 2 003 @ 02130524 v 0000 + 00878221 n 0201 + 00877625 n 0101 01 + 22 00 | throw a glance at; take a brief look at; "She only glanced at the paper"; "I only peeked--I didn't see anything interesting" -02165543 39 v 01 inspect 0 005 @ 02131279 v 0000 ~ 00696700 v 0000 ~ 02165754 v 0000 ~ 02165982 v 0000 ~ 02166117 v 0000 02 + 08 00 + 09 00 | look over carefully; "Please inspect your father's will carefully" -02165754 39 v 01 perambulate 0 002 @ 02165543 v 0000 + 00292386 n 0101 01 + 08 00 | make an official inspection on foot of (the bounds of a property); "Selectmen are required by law to perambulate the bounds every five years" -02165982 39 v 01 case 0 001 @ 02165543 v 0000 01 + 08 00 | look over, usually with the intention to rob; "They men cased the housed" -02166117 39 v 01 vet 0 001 @ 02165543 v 0000 01 + 08 00 | examine carefully; "Someone should vet this report before it goes out" -02166248 39 v 01 overlook 0 001 @ 02150328 v 0000 02 + 08 00 + 09 00 | watch over; "I am overlooking her work" -02166361 39 v 01 overlook 1 001 @ 02127853 v 0000 02 + 08 00 + 09 00 | look past, fail to notice -02166460 39 v 02 study 0 consider 0 009 @ 00630380 v 0000 + 07138915 n 0201 + 05822746 n 0203 + 05784831 n 0201 + 05784242 n 0102 + 00644503 n 0102 ~ 00640650 v 0000 ~ 00653620 v 0000 $ 00813044 v 0000 03 + 08 00 + 09 00 + 29 00 | give careful consideration to; "consider the possibility of moving" -02166761 39 v 01 bethink 0 001 > 02166460 v 0000 01 + 09 00 | cause oneself to consider something -02166861 39 v 01 gloat 0 003 @ 02130524 v 0000 + 07532276 n 0101 + 07532276 n 0102 02 + 02 00 + 22 00 | gaze at or think about something with great self-satisfaction, gratification, or joy -02167052 39 v 02 eye 0 eyeball 0 005 @ 02130524 v 0000 + 05316025 n 0201 + 05703307 n 0101 + 05614476 n 0101 + 05311054 n 0101 02 + 08 00 + 09 00 | look at -02167210 39 v 03 keep_one's_eyes_peeled 0 keep_one's_eyes_skinned 0 keep_one's_eyes_open 0 002 @ 02151966 v 0000 ;u 07075172 n 0000 02 + 02 00 + 22 00 | pay attention; be watchful; "Keep your eyes peeled for any policemen" -02167435 39 v 01 look_after 0 001 @ 02151966 v 0000 02 + 08 00 + 09 00 | keep under careful scrutiny; "Keep an eye on this prisoner!" -02167571 39 v 03 scout 0 reconnoiter 0 reconnoitre 0 009 @ 02169352 v 0000 + 00984609 n 0301 + 00985106 n 0304 + 00984609 n 0201 + 00985106 n 0203 + 10562749 n 0101 + 10562968 n 0101 + 10540984 n 0102 + 00985106 n 0101 02 + 02 00 + 08 00 | explore, often with the goal of finding something or somebody -02167875 39 v 02 give_the_eye 0 give_the_once_over 0 001 @ 02130524 v 0000 02 + 08 00 + 09 00 | look at with a critical eye; "When the movie star entered, all the women gave him the once over" -02168070 39 v 01 squint 0 002 @ 02130524 v 0000 + 14557415 n 0102 01 + 02 00 | be cross-eyed; have a squint or strabismus -02168194 39 v 01 blind 0 003 @ 00126264 v 0000 + 07944408 n 0101 ~ 02168378 v 0000 02 + 09 00 + 10 00 | make blind by putting the eyes out; "The criminals were punished and blinded" -02168378 39 v 01 abacinate 0 001 @ 02168194 v 0000 01 + 09 00 | blind by holding a red-hot metal plate before someone's eyes; "The prisoners were abacinated by their captors" -02168555 39 v 01 blind 1 005 + 04593629 n 0103 + 07944408 n 0101 ~ 02162434 v 0000 ~ 02168710 v 0000 ~ 02168830 v 0000 01 + 10 00 | render unable to see -02168710 39 v 01 seel 0 002 @ 02168555 v 0000 ;c 05635448 n 0000 01 + 08 00 | sew up the eyelids of hawks and falcons -02168830 39 v 01 snow-blind 0 001 @ 02168555 v 0000 01 + 10 00 | affect with snow blindness; "the glare of the sun snow-blinded her" -02168965 39 v 01 peer 0 001 @ 02130524 v 0000 01 + 22 00 | look searchingly; "We peered into the back of the shop to see whether a salesman was around" -02169119 39 v 05 intrude 0 horn_in 0 pry 0 nose 0 poke 0 004 @ 02153709 v 0000 + 05637106 n 0401 ^ 02125460 v 0404 + 05683390 n 0302 01 + 22 00 | search or inquire in a meddlesome way; "This guy is always nosing around the office" -02169352 39 v 01 observe 0 012 @ 02150510 v 0000 + 01287486 a 0103 + 06767035 n 0101 + 05818741 n 0101 + 05703429 n 0102 + 00879759 n 0101 + 00879759 n 0102 ~ 01139865 v 0000 ~ 02163301 v 0000 ~ 02163626 v 0000 ~ 02167571 v 0000 ~ 02197629 v 0000 03 + 02 00 + 08 00 + 09 00 | watch attentively; "Please observe the reaction of these two chemicals" -02169702 39 v 01 hear 0 005 @ 02106506 v 0000 + 00173764 a 0102 + 05657718 n 0101 ~ 02189168 v 0000 ~ 02189398 v 0000 03 + 02 00 + 08 00 + 09 00 | perceive (sound) via the auditory sense -02169891 39 v 01 listen 0 010 * 02169702 v 0000 @ 02106506 v 0000 + 10165448 n 0102 + 00882159 n 0101 ^ 02189714 v 0101 ~ 02170181 v 0000 ~ 02170304 v 0000 ~ 02170427 v 0000 ~ 02189588 v 0000 ~ 02189714 v 0000 02 + 02 00 + 22 00 | hear with intention; "Listen to the sound of this cello" -02170181 39 v 01 hear_out 0 001 @ 02169891 v 0000 02 + 08 00 + 09 00 | listen to every detail and give a full hearing to -02170304 39 v 01 listen_in 1 001 @ 02169891 v 0000 01 + 02 00 | listen quietly, without contributing to the conversation -02170427 39 v 05 attend 0 hang 0 advert 0 pay_heed 0 give_ear 0 011 @ 02169891 v 0000 + 00164308 a 0301 + 05704096 n 0302 + 05704096 n 0301 + 01194483 a 0102 + 00163592 a 0101 + 05853636 n 0101 + 05650579 n 0101 + 05702275 n 0101 + 10165448 n 0104 ~ 02170861 v 0000 02 + 02 00 + 22 02 | give heed (to); "The children in the audience attended the recital quietly"; "She hung on his every word"; "They attended to everything he said" -02170861 39 v 01 fixate 0 002 @ 02170427 v 0000 + 05700401 n 0102 01 + 22 00 | pay attention to exclusively and obsessively; "The media are fixating on Princess Diana's death" -02171039 39 v 03 listen 1 hear 5 take_heed 0 006 @ 00722232 v 0000 + 10165448 n 0201 + 00882159 n 0202 + 10165448 n 0102 + 00882159 n 0101 ~ 02171322 v 0000 02 + 02 00 + 22 00 | listen and pay attention; "Listen to your father"; "We must hear the expert before we make a decision" -02171322 39 v 01 incline 0 002 @ 02171039 v 0000 + 00335384 n 0102 01 + 08 00 | bend or turn (one's ear) towards a speaker in order to listen well; "He inclined his ear to the wise old man" -02171514 39 v 01 tune_in 0 001 @ 00295966 v 0000 01 + 08 00 | regulate (a radio or television set) in order to receive a certain station or program -02171664 39 v 06 whine 0 squeak 0 screech 0 creak 0 screak 0 skreak 0 007 @ 02172888 v 0000 + 07381864 n 0402 + 07381864 n 0401 + 07393161 n 0301 + 07393161 n 0302 + 07395623 n 0201 + 04292733 n 0201 02 + 01 00 + 02 00 | make a high-pitched, screeching noise; "The door creaked when I opened it slowly"; "My car engine makes a whining noise" -02172008 39 v 01 racket 0 002 @ 02172888 v 0000 + 07390945 n 0101 02 + 01 00 + 02 00 | make loud and annoying noises -02172127 39 v 03 clatter 0 clack 0 brattle 0 003 @ 02172888 v 0000 + 07379963 n 0201 + 07380473 n 0101 02 + 01 00 + 02 00 | make a rattling sound; "clattering dishes" -02172296 39 v 02 stridulate 0 clitter 0 002 @ 02172888 v 0000 + 07395957 n 0101 02 + 01 00 + 11 00 | make a shrill creaking noise by rubbing together special bodily structures; "male insects such as crickets or grasshoppers stridulate" -02172534 39 v 01 drown_out 0 001 @ 02172888 v 0000 02 + 10 00 + 11 00 | make imperceptible; "The noise from the ice machine drowned out the music" -02172683 39 v 03 jingle 0 jingle-jangle 0 jangle 0 003 @ 02172888 v 0000 + 07385998 n 0302 + 07385998 n 0101 01 + 01 00 | make a sound typical of metallic objects; "The keys were jingling in his pocket" -02172888 39 v 03 make_noise 0 resound 0 noise 0 020 @ 02176268 v 0000 + 05720248 n 0301 + 07387509 n 0301 + 02010536 a 0201 ~ 00862591 v 0000 ~ 01046059 v 0000 ~ 01046815 v 0000 ~ 01053495 v 0000 ~ 01056214 v 0000 ~ 01058224 v 0000 ~ 02171664 v 0000 ~ 02172008 v 0000 ~ 02172127 v 0000 ~ 02172296 v 0000 ~ 02172534 v 0000 ~ 02172683 v 0000 ~ 02173336 v 0000 ~ 02173663 v 0000 ~ 02175861 v 0000 ~ 02182479 v 0000 02 + 01 00 + 02 00 | emit a noise -02173336 39 v 01 scream 0 003 @ 02172888 v 0000 + 07393161 n 0105 + 07393161 n 0106 01 + 01 00 | make a loud, piercing sound; "Fighter planes are screaming through the skies" -02173513 39 v 01 splat 0 003 @ 02176268 v 0000 + 07395303 n 0101 + 07394814 n 0103 01 + 01 00 | give off the sound of a bullet flattening on impact -02173663 39 v 01 backfire 0 002 @ 02172888 v 0000 + 07408621 n 0101 01 + 01 00 | emit a loud noise as a result of undergoing a backfire; "My old car backfires all the time" -02173838 39 v 01 twang 0 002 @ 02176268 v 0000 + 07398873 n 0101 01 + 01 00 | sound with a twang; "the bowstring was twanging" -02173967 39 v 01 twang 1 002 @ 02179518 v 0000 + 07398873 n 0101 02 + 08 00 + 11 00 | cause to sound with a twang; "He twanged the guitar string" -02174115 39 v 02 clang 0 clangor 1 005 @ 02176268 v 0000 + 07380144 n 0202 + 07380144 n 0101 + 07380144 n 0102 + 00076393 n 0101 03 + 01 00 + 08 00 + 11 00 | make a loud noise; "clanging metal" -02174311 39 v 01 clank 0 002 @ 02176268 v 0000 + 07380144 n 0105 03 + 01 00 + 08 00 + 11 00 | make a clank; "the train clanked through the village" -02174461 39 v 02 clangor 0 clangour 0 003 @ 02176268 v 0000 + 07380144 n 0203 + 07380144 n 0102 03 + 01 00 + 08 00 + 11 00 | make a loud resonant noise; "the alarm clangored throughout the building" -02174662 39 v 02 boom 1 boom_out 0 002 @ 02176268 v 0000 + 07377682 n 0101 02 + 08 00 + 11 00 | make a deep hollow sound; "Her voice booms out the words of the song" -02174830 39 v 03 drum 0 beat 0 thrum 0 004 @ 02176268 v 0000 + 07086518 n 0202 + 10036929 n 0101 $ 01880673 v 0000 02 + 01 00 + 04 00 | make a rhythmic sound; "Rain drummed against the windshield"; "The drums beat all night" -02175057 39 v 01 rattle 0 008 @ 02176268 v 0000 + 07391240 n 0101 + 07391240 n 0102 ^ 00945648 v 0102 ^ 00945648 v 0101 ^ 01037498 v 0104 ~ 02175283 v 0000 ~ 02175384 v 0000 02 + 01 00 + 04 00 | make short successive sounds -02175283 39 v 01 ruckle 0 001 @ 02175057 v 0000 02 + 01 00 + 02 00 | make a hoarse, rattling sound -02175384 39 v 02 crepitate 0 crackle 0 004 @ 02175057 v 0000 + 07381678 n 0201 + 07381678 n 0202 + 07381678 n 0103 01 + 01 00 | make a crackling sound; "My Rice Krispies crackled in the bowl" -02175578 39 v 04 tick 1 ticktock 0 ticktack 0 beat 1 006 @ 02176268 v 0000 + 07376937 n 0401 + 07397955 n 0201 + 01776313 n 0101 + 04555897 n 0102 + 07397761 n 0102 01 + 01 00 | make a sound like a clock or a timer; "the clocks were ticking"; "the grandfather clock beat midnight" -02175861 39 v 01 ring_out 0 001 @ 02172888 v 0000 01 + 01 00 | sound loudly; "a shot rang out" -02175958 39 v 02 resonate 0 vibrate 0 010 @ 02176268 v 0000 + 01563923 a 0201 + 02011002 a 0201 + 04989657 n 0207 + 04080454 n 0101 + 04080138 n 0101 + 11477921 n 0101 + 04988258 n 0101 + 04989657 n 0102 ~ 01052936 v 0000 02 + 01 00 + 11 00 | sound with resonance; "The sound resonates well in this theater" -02176268 39 v 02 sound 0 go 0 061 @ 02123903 v 0000 + 06278136 n 0102 + 07371293 n 0101 + 11480930 n 0101 + 04981139 n 0101 ~ 00916520 v 0000 ~ 01043887 v 0000 ~ 02135877 v 0000 ~ 02136019 v 0000 ~ 02172888 v 0000 ~ 02173513 v 0000 ~ 02173838 v 0000 ~ 02174115 v 0000 ~ 02174311 v 0000 ~ 02174461 v 0000 ~ 02174662 v 0000 ~ 02174830 v 0000 ~ 02175057 v 0000 ~ 02175578 v 0000 ~ 02175958 v 0000 ~ 02177512 v 0000 ~ 02177661 v 0000 ~ 02177846 v 0000 ~ 02177976 v 0000 ~ 02178186 v 0000 ~ 02178340 v 0000 ~ 02178484 v 0000 ~ 02178576 v 0000 ~ 02178709 v 0000 ~ 02178866 v 0000 ~ 02179154 v 0000 ~ 02179279 v 0000 ~ 02179372 v 0000 ~ 02180898 v 0000 ~ 02182109 v 0000 ~ 02182342 v 0000 ~ 02182662 v 0000 ~ 02182851 v 0000 ~ 02183024 v 0000 ~ 02183175 v 0000 ~ 02183626 v 0000 ~ 02183787 v 0000 ~ 02184610 v 0000 ~ 02184965 v 0000 ~ 02185187 v 0000 ~ 02185373 v 0000 ~ 02185664 v 0000 ~ 02185861 v 0000 ~ 02185988 v 0000 ~ 02186506 v 0000 ~ 02186868 v 0000 ~ 02187041 v 0000 ~ 02187171 v 0000 ~ 02187320 v 0000 ~ 02187510 v 0000 ~ 02187693 v 0000 ~ 02187922 v 0000 ~ 02188198 v 0000 ~ 02188442 v 0000 ~ 02188587 v 0000 ~ 02198014 v 0000 04 + 01 00 + 02 00 + 06 00 + 07 00 | make a certain noise or sound; "She went `Mmmmm'"; "The gun went `bang'" -02177512 39 v 01 crash 0 001 @ 02176268 v 0000 01 + 01 00 | make a sudden loud sound; "the waves crashed on the shore and kept us awake all night" -02177661 39 v 02 tweet 0 twirp 0 003 @ 02176268 v 0000 + 07399027 n 0101 + 04502670 n 0101 02 + 01 00 + 02 00 | make a weak, chirping sound; "the small bird was tweeting in the tree" -02177846 39 v 01 skirl 0 002 @ 02176268 v 0000 + 07393988 n 0101 01 + 01 00 | make a shrill, wailing sound; "skirling bagpipes" -02177976 39 v 01 gurgle 2 003 $ 02187922 v 0000 @ 02176268 v 0000 + 07384741 n 0101 02 + 01 00 + 02 00 | make sounds similar to gurgling water; "The baby gurgled with satisfaction when the mother tickled it" -02178186 39 v 01 glug 0 001 @ 02176268 v 0000 02 + 01 00 + 02 00 | make a gurgling sound as of liquid issuing from a bottle; "the wine bottles glugged" -02178340 39 v 01 blow 5 002 @ 02176268 v 0000 $ 02135727 v 0000 01 + 01 00 | sound by having air expelled through a tube; "The trumpets blew" -02178484 39 v 01 whish 0 001 @ 02176268 v 0000 02 + 01 00 + 02 00 | make a sibilant sound -02178576 39 v 01 guggle 1 001 @ 02176268 v 0000 02 + 01 00 + 02 00 | make a sound like a liquid that is being poured from a bottle -02178709 39 v 01 ping 0 002 @ 02176268 v 0000 + 07389569 n 0101 01 + 01 00 | make a short high-pitched sound; "the bullet pinged when they struck the car" -02178866 39 v 03 pink 3 ping 1 knock 1 004 @ 02176268 v 0000 + 07386370 n 0301 + 07386370 n 0302 + 07389569 n 0201 01 + 01 00 | sound like a car engine that is firing too early; "the car pinged when I put in low-octane gasoline"; "The car pinked when the ignition was too far retarded" -02179154 39 v 01 trump 0 002 @ 02176268 v 0000 + 03110669 n 0104 02 + 01 00 + 02 00 | produce a sound as if from a trumpet -02179279 39 v 01 squelch 0 001 @ 02176268 v 0000 02 + 01 00 + 02 00 | make a sucking sound -02179372 39 v 01 chug 0 002 @ 02176268 v 0000 + 07379852 n 0101 01 + 01 00 | make a dull, explosive sound; "the engine chugged down the street" -02179518 39 v 01 sound 1 016 > 02176268 v 0000 + 07371293 n 0101 + 11480930 n 0101 + 05718254 n 0101 + 04981139 n 0101 ^ 01651110 v 0101 ~ 01726172 v 0000 ~ 02135727 v 0000 ~ 02173967 v 0000 ~ 02179915 v 0000 ~ 02180152 v 0000 ~ 02180262 v 0000 ~ 02180362 v 0000 ~ 02181538 v 0000 ~ 02186192 v 0000 ~ 02186690 v 0000 02 + 08 00 + 11 00 | cause to sound; "sound the bell"; "sound a certain note" -02179915 39 v 01 prepare 0 003 @ 02179518 v 0000 ;c 07020895 n 0000 + 07027942 n 0101 01 + 08 00 | lead up to and soften by sounding the dissonant note in it as a consonant note in the preceding chord; "prepare the discord in bar 139" -02180152 39 v 01 gong 0 003 @ 02179518 v 0000 + 03017168 n 0103 + 03447721 n 0101 01 + 08 00 | sound a gong -02180262 39 v 01 ting 1 002 @ 02179518 v 0000 + 07398097 n 0101 01 + 08 00 | cause to make a ting -02180362 39 v 02 strum 0 thrum 2 003 @ 02179518 v 0000 + 07397230 n 0201 + 07396120 n 0101 01 + 08 00 | sound the strings of (a string instrument); "strum a guitar" -02180529 39 v 01 sound 2 007 @ 00974367 v 0000 + 07111047 n 0103 + 06278136 n 0102 + 07371293 n 0101 + 11480930 n 0101 + 05718254 n 0101 + 04981139 n 0101 01 + 08 00 | announce by means of a sound; "sound the alarm" -02180747 39 v 01 project 0 002 @ 02123903 v 0000 + 11512331 n 0101 04 + 01 00 + 02 00 + 08 00 + 11 00 | cause to be heard; "His voice projects well" -02180898 39 v 02 ring 0 peal 1 010 @ 02176268 v 0000 + 07389330 n 0201 + 07389330 n 0202 + 07391863 n 0101 + 07391863 n 0102 ^ 02175861 v 0101 ~ 02181174 v 0000 ~ 02181281 v 0000 ~ 02181402 v 0000 ~ 02181865 v 0000 01 + 01 00 | sound loudly and sonorously; "the bells rang" -02181174 39 v 03 ding 0 dong 0 dingdong 0 001 @ 02180898 v 0000 01 + 01 00 | go `ding dong', like a bell -02181281 39 v 01 tintinnabulate 0 002 @ 02180898 v 0000 + 07391863 n 0103 01 + 01 00 | ring or sound like a small bell -02181402 39 v 01 peal 0 003 @ 02180898 v 0000 + 07389330 n 0101 + 07389330 n 0102 01 + 01 00 | ring recurrently; "bells were pealing" -02181538 39 v 02 ring 1 knell 1 007 > 02176268 v 0000 @ 02179518 v 0000 + 07386194 n 0201 + 07391863 n 0101 + 10714851 n 0103 + 07391863 n 0102 ~ 02181973 v 0000 03 + 08 00 + 11 00 + 02 01 | make (bells) ring, often for the purposes of musical edification; "Ring the bells"; "My uncle rings every Sunday at the local church" -02181865 39 v 01 knell 0 002 @ 02180898 v 0000 + 07386194 n 0101 01 + 01 00 | ring as in announcing death -02181973 39 v 01 toll 0 003 @ 02181538 v 0000 + 07377244 n 0102 + 10714851 n 0101 01 + 08 00 | ring slowly; "For whom the bell tolls" -02182109 39 v 03 buzz 0 bombinate 0 bombilate 0 006 @ 02176268 v 0000 + 07378234 n 0302 + 07378234 n 0203 + 07378234 n 0101 + 02930080 n 0101 + 03222516 n 0103 01 + 01 00 | make a buzzing sound; "bees were buzzing around the hive" -02182342 39 v 01 chime 0 003 @ 02176268 v 0000 + 03017168 n 0101 ^ 00780191 v 0101 01 + 01 00 | emit a sound; "bells and gongs chimed" -02182479 39 v 02 blast 0 blare 1 003 @ 02172888 v 0000 + 07377473 n 0201 + 07376257 n 0104 01 + 01 00 | make a strident sound; "She tended to blast when speaking into a microphone" -02182662 39 v 01 rustle 0 003 @ 02176268 v 0000 + 07392783 n 0101 + 07392783 n 0102 01 + 01 00 | make a dry crackling sound; "rustling silk"; "the dry leaves were rustling in the breeze" -02182851 39 v 02 snap 0 crack 0 004 @ 02176268 v 0000 + 03125352 n 0201 + 00344699 n 0101 + 07394236 n 0101 02 + 01 00 + 08 00 | make a sharp sound; "his fingers snapped" -02183024 39 v 01 crack 1 003 @ 02176268 v 0000 + 03345115 n 0102 + 07381423 n 0102 01 + 01 00 | make a very sharp explosive sound; "His gun cracked" -02183175 39 v 05 honk 0 blare 0 beep 0 claxon 0 toot 0 007 @ 02176268 v 0000 + 07398276 n 0501 + 03622058 n 0402 + 07377082 n 0301 + 02823124 n 0301 + 10183556 n 0101 ~ 02183442 v 0000 03 + 01 00 + 02 00 + 08 00 | make a loud noise; "The horns of the taxis blared" -02183442 39 v 01 tootle 0 002 @ 02183175 v 0000 + 07398362 n 0101 03 + 01 00 + 02 00 + 08 00 | play (a musical instrument) casually; "the saxophone player was tootling a sad melody" -02183626 39 v 01 whistle 0 003 @ 02176268 v 0000 + 10777768 n 0101 + 07400156 n 0102 01 + 02 00 | make whistling sounds; "He lay there, snoring and whistling" -02183787 39 v 04 resound 1 echo 0 ring 4 reverberate 0 013 @ 02176268 v 0000 + 02010536 a 0405 + 02009280 a 0401 + 05010801 n 0402 + 04989657 n 0403 + 04981658 n 0301 + 04989657 n 0304 + 05010801 n 0201 + 02010536 a 0101 ~ 02184163 v 0000 ~ 02184265 v 0000 ~ 02184394 v 0000 ~ 02184503 v 0000 02 + 01 00 + 22 00 | ring or echo with sound; "the hall resounded with laughter" -02184163 39 v 01 consonate 0 002 @ 02183787 v 0000 + 04984351 n 0101 01 + 01 00 | sound in sympathy -02184265 39 v 01 reecho 0 001 @ 02183787 v 0000 01 + 01 00 | repeat or return an echo again or repeatedly; send (an echo) back -02184394 39 v 01 reecho 1 001 @ 02183787 v 0000 02 + 01 00 + 11 00 | echo repeatedly, echo again and again -02184503 39 v 01 bong 0 001 @ 02183787 v 0000 01 + 01 00 | ring loudly and deeply; "the big bell bonged" -02184610 39 v 02 thud 0 thump 0 004 @ 02176268 v 0000 + 07396945 n 0201 + 07396945 n 0202 + 07396945 n 0105 01 + 01 00 | make a dull sound; "the knocker thudded against the front door" -02184797 39 v 03 crump 0 thud 1 scrunch 0 003 @ 01058224 v 0000 + 07393500 n 0301 + 07396945 n 0205 01 + 01 00 | make a noise typical of an engine lacking lubricants -02184965 39 v 04 clop 0 clump 0 clunk 0 plunk 0 004 @ 02176268 v 0000 + 07390307 n 0401 + 07396945 n 0304 + 07396945 n 0203 02 + 01 00 + 22 00 | make or move along with a sound as of a horse's hooves striking the ground -02185187 39 v 02 patter 0 pitter-patter 0 003 @ 02176268 v 0000 + 07389757 n 0201 + 07389170 n 0101 02 + 01 00 + 22 00 | make light, rapid and repeated sounds; "gently pattering rain" -02185373 39 v 04 tap 1 rap 0 knock 0 pink 0 007 @ 02176268 v 0000 + 07386370 n 0301 + 07410021 n 0201 + 07410021 n 0103 + 00125436 n 0101 + 07388987 n 0103 + 07396658 n 0101 02 + 01 00 + 22 00 | make light, repeated taps on a surface; "he was tapping his fingers on the table impatiently" -02185664 39 v 02 click 0 tick 0 004 @ 02176268 v 0000 + 07397761 n 0201 + 07397761 n 0202 + 07379223 n 0102 03 + 01 00 + 08 00 + 22 00 | make a clicking or ticking sound; "The clock ticked away" -02185861 39 v 02 chatter 0 click 1 001 @ 02176268 v 0000 01 + 01 00 | click repeatedly or uncontrollably; "Chattering teeth" -02185988 39 v 01 pop 0 005 @ 02176268 v 0000 + 07390400 n 0101 + 07390400 n 0102 $ 02186192 v 0000 ~ 02186360 v 0000 01 + 01 00 | make a sharp explosive noise; "The cork of the champagne bottle popped" -02186192 39 v 01 pop 6 003 $ 02185988 v 0000 @ 02179518 v 0000 + 07390400 n 0101 01 + 08 00 | cause to make a sharp explosive sound; "He popped the champagne bottle" -02186360 39 v 01 sputter 0 003 @ 02185988 v 0000 + 07394814 n 0105 + 07394814 n 0107 01 + 01 00 | make an explosive sound; "sputtering engines" -02186506 39 v 04 tinkle 0 tink 0 clink 0 chink 0 004 @ 02176268 v 0000 + 07379223 n 0401 + 07379223 n 0303 + 07398097 n 0102 01 + 01 00 | make or emit a high sound; "tinkling bells" -02186690 39 v 01 clink 1 003 > 02186506 v 0000 @ 02179518 v 0000 + 07379223 n 0103 01 + 08 00 | make a high sound typical of glass; "champagne glasses clinked to make a toast" -02186868 39 v 04 splash 0 splosh 0 slosh 0 slush 0 002 @ 02176268 v 0000 + 07395104 n 0101 02 + 01 00 + 22 00 | make a splashing sound; "water was splashing on the floor" -02187041 39 v 02 hum 0 thrum 1 002 @ 02176268 v 0000 + 07385803 n 0101 03 + 01 00 + 02 00 + 08 00 | sound with a monotonous hum -02187171 39 v 01 bleep 0 002 @ 02176268 v 0000 + 07377082 n 0102 01 + 01 00 | emit a single short high-pitched signal; "The computer bleeped away" -02187320 39 v 02 rumble 0 grumble 0 005 @ 02176268 v 0000 + 07392483 n 0203 + 07392483 n 0204 + 07392483 n 0101 + 07392483 n 0102 02 + 01 00 + 02 00 | make a low noise; "rumbling thunder" -02187510 39 v 02 boom 0 din 0 003 @ 02176268 v 0000 + 07377473 n 0205 + 07377682 n 0101 01 + 01 00 | make a resonant sound, like artillery; "His deep voice boomed through the hall" -02187693 39 v 01 bang 0 003 @ 02176268 v 0000 + 07376257 n 0101 + 03345115 n 0103 02 + 01 00 + 08 00 | to produce a sharp often metallic explosive or percussive sound; "One of them banged the sash of the window nearest my bed" -02187922 39 v 06 ripple 0 babble 0 guggle 0 burble 0 bubble 0 gurgle 0 006 @ 02176268 v 0000 + 07384741 n 0601 + 09229709 n 0501 + 03241335 n 0503 + 07344663 n 0101 $ 02177976 v 0000 02 + 01 00 + 22 00 | flow in an irregular current with a bubbling noise; "babbling brooks" -02188198 39 v 04 lap 0 swish 0 swosh 0 swoosh 0 002 @ 02176268 v 0000 + 07396414 n 0201 02 + 01 00 + 22 00 | move with or cause to move with a whistling or hissing sound; "The bubbles swoshed around in the glass"; "The curtain swooshed open" -02188442 39 v 01 drone 0 002 @ 02176268 v 0000 + 07084560 n 0103 01 + 01 00 | make a monotonous low dull sound; "The harmonium was droning on" -02188587 39 v 06 whizz 0 whiz 0 whirr 0 whir 0 birr 0 purr 0 006 @ 02176268 v 0000 + 07399917 n 0504 + 07399917 n 0401 + 07399917 n 0403 + 07399917 n 0302 + 07400361 n 0201 01 + 01 00 | make a soft swishing sound; "the motor whirred"; "the car engine purred" -02188848 39 v 04 wiretap 0 tap 0 intercept 0 bug 0 006 @ 02189714 v 0000 + 02912440 n 0401 + 00654400 n 0202 + 10691318 n 0201 + 00654400 n 0101 + 10691318 n 0102 01 + 08 00 | tap a telephone or telegraph wire to get information; "The FBI was tapping the phone line of the suspected spy"; "Is this hotel room bugged?" -02189168 39 v 03 catch 0 take_in 0 overhear 0 003 @ 02169702 v 0000 * 02169891 v 0000 $ 02189398 v 0000 02 + 08 00 + 25 00 | hear, usually without the knowledge of the speakers; "We overheard the conversation at the next table" -02189398 39 v 02 catch c get d 002 $ 02189168 v 0000 @ 02169702 v 0000 01 + 08 00 | perceive by hearing; "I didn't catch your name"; "She didn't get his name when they met the first time" -02189588 39 v 03 hark 0 harken 0 hearken 0 001 @ 02169891 v 0000 02 + 02 00 + 22 00 | listen; used mostly in the imperative -02189714 39 v 02 listen_in 0 eavesdrop 0 003 @ 02169891 v 0000 + 10042690 n 0201 ~ 02188848 v 0000 02 + 02 00 + 22 00 | listen without the speaker's knowledge; "the jealous man was eavesdropping on his wife's conversations" -02189940 39 v 02 deafen 0 deaf 0 002 @ 02114924 v 0000 + 07945949 n 0201 02 + 09 00 + 10 00 | make or render deaf; "a deafening noise" -02190077 39 v 01 deafen 1 001 * 02172888 v 0000 02 + 09 00 + 10 00 | be unbearably loud; "a deafening noise" -02190188 39 v 06 quieten 0 hush 0 quiet 0 quiesce 0 quiet_down 0 pipe_down 0 006 @ 02191106 v 0000 + 00040909 a 0401 + 04982207 n 0302 + 04982478 n 0201 ! 02190477 v 0101 $ 00461493 v 0000 02 + 01 00 + 02 00 | become quiet or quieter; "The audience fell silent when the speaker entered" -02190477 39 v 01 louden 0 003 $ 00461956 v 0000 @ 02191106 v 0000 ! 02190188 v 0101 02 + 01 00 + 02 00 | become louder; "The room loudened considerably" -02190632 39 v 01 soften 0 003 @ 02191106 v 0000 ! 02190786 v 0101 ~ 02191311 v 0000 03 + 08 00 + 10 00 + 11 00 | make (images or sounds) soft or softer -02190786 39 v 01 sharpen 0 003 @ 02191106 v 0000 ! 02190632 v 0101 ~ 02161922 v 0000 03 + 08 00 + 10 00 + 11 00 | make (images or sounds) sharp or sharper -02190943 39 v 02 gag 0 muzzle 0 003 @ 00461493 v 0000 + 03410740 n 0202 + 03410740 n 0101 02 + 08 00 + 09 00 | prevent from speaking out; "The press was gagged" -02191106 39 v 01 change_intensity 0 006 @ 00126264 v 0000 ~ 02162310 v 0000 ~ 02190188 v 0000 ~ 02190477 v 0000 ~ 02190632 v 0000 ~ 02190786 v 0000 02 + 01 00 + 02 00 | increase or decrease in intensity -02191311 39 v 06 muffle 0 mute 0 dull 0 damp 0 dampen 0 tone_down 0 005 @ 02190632 v 0000 + 03161450 n 0401 + 03802973 n 0201 + 03161450 n 0102 + 04218564 n 0102 02 + 08 00 + 11 00 | deaden (a sound or noise), especially by wrapping -02191546 39 v 01 taste 0 006 @ 02106506 v 0000 + 00882702 n 0101 + 05658226 n 0101 + 05715283 n 0101 + 00882702 n 0102 ~ 02193974 v 0000 02 + 02 00 + 08 00 | perceive by the sense of taste; "Can you taste the garlic?" -02191766 39 v 03 season 0 flavor 0 flavour 0 018 > 02194286 v 0000 ;c 00243918 n 0000 + 05715864 n 0303 + 07809368 n 0302 + 07809368 n 0304 + 05715864 n 0202 + 07809368 n 0201 + 07809368 n 0203 + 10567848 n 0101 + 07809368 n 0105 + 07809368 n 0106 + 00248368 n 0101 ~ 01364357 v 0000 ~ 02192225 v 0000 ~ 02192383 v 0000 ~ 02192570 v 0000 ~ 02194138 v 0000 ~ 02196214 v 0000 02 + 08 00 + 11 00 | lend flavor to; "Season the chicken breast after roasting it" -02192225 39 v 01 curry 0 003 @ 02191766 v 0000 ;c 00243918 n 0000 + 07823951 n 0101 01 + 08 00 | season with a mixture of spices; typical of Indian cooking -02192383 39 v 01 resinate 0 003 @ 02191766 v 0000 ;c 01126709 n 0000 + 14894140 n 0101 01 + 08 00 | impregnate with resin to give a special flavor to; "Greek wines are often resinated" -02192570 39 v 03 zest 0 spice 0 spice_up 0 009 @ 02191766 v 0000 ;c 00243918 n 0000 + 04992570 n 0202 + 07812184 n 0201 + 15050011 n 0201 + 04992570 n 0203 + 04993108 n 0107 ~ 02192818 v 0000 ~ 02196081 v 0000 01 + 08 00 | add herbs or spices to -02192818 39 v 01 ginger 0 004 @ 02192570 v 0000 ;c 00243918 n 0000 + 07814925 n 0101 + 07815163 n 0101 01 + 08 00 | add ginger to in order to add flavor; "ginger the soup" -02192992 39 v 01 taste 1 006 * 02191546 v 0000 @ 00618451 v 0000 + 00882702 n 0101 + 05658226 n 0101 + 05715283 n 0101 + 10692482 n 0101 01 + 08 00 | distinguish flavors; "We tasted wines last night" -02193194 39 v 08 spot 2 recognize 1 recognise 1 distinguish 0 discern 0 pick_out 0 make_out 0 tell_apart 0 007 * 02106506 v 0000 + 01747195 a 0501 + 01287486 a 0501 + 00581812 a 0501 + 05710210 n 0501 ~ 02193612 v 0000 ~ 02193765 v 0000 02 + 08 00 + 09 00 | detect with the senses; "The fleeing convicts were picked out of the darkness by the watchful prison guards"; "I can't make out the faces in this photograph" -02193612 39 v 01 resolve 0 003 @ 02193194 v 0000 ;c 06100778 n 0000 + 05782884 n 0102 01 + 08 00 | make clearly visible; "can this image be resolved?" -02193765 39 v 01 discriminate 0 004 @ 02193194 v 0000 + 00775301 a 0101 + 00775301 a 0102 + 05748054 n 0101 01 + 02 00 | distinguish; "I could not discriminate the different tastes in this complicated dish" -02193974 39 v 02 savor 0 savour 0 004 @ 02191546 v 0000 + 05715864 n 0206 + 00841901 n 0203 + 00841901 n 0102 01 + 08 00 | taste appreciatively; "savor the soup" -02194138 39 v 02 savor 1 savour 1 004 @ 02191766 v 0000 ;c 00243918 n 0000 + 05715864 n 0206 + 05715864 n 0105 02 + 08 00 + 11 00 | give taste to -02194286 39 v 03 taste 2 savor 2 savour 2 006 + 05715864 n 0306 + 05715864 n 0205 + 00882702 n 0101 + 05658226 n 0101 + 05715283 n 0101 ~ 02194495 v 0000 02 + 01 00 + 06 00 | have flavor; taste of something -02194495 39 v 02 smack c taste c 006 @ 02194286 v 0000 + 00882702 n 0201 + 05658226 n 0201 + 05715283 n 0201 + 00882702 n 0202 + 05715864 n 0107 01 + 11 00 | have a distinctive or characteristic taste; "This tastes of nutmeg" -02194723 39 v 03 smack d reek d smell 3 001 @ 00930368 v 0000 01 + 11 00 | have an element suggestive (of something); "his speeches smacked of racism"; "this passage smells of plagiarism" -02194913 39 v 04 disgust 0 gross_out 0 revolt 0 repel 0 008 @ 02116118 v 0000 + 00221934 a 0402 + 01625063 a 0405 + 01804422 a 0403 + 01625893 a 0408 + 01625893 a 0407 + 07503260 n 0101 ~ 02195191 v 0000 02 + 09 00 + 10 00 | fill with distaste; "This spoilt food disgusts me" -02195191 39 v 03 sicken 0 nauseate 0 turn_one's_stomach 0 004 @ 02194913 v 0000 + 14359952 n 0201 + 07504111 n 0201 + 03283519 n 0204 01 + 10 00 | upset and make nauseated; "The smell of the food turned the pregnant woman's stomach"; "The mold on the food sickened the diners" -02195470 39 v 04 sweeten 0 dulcify 0 edulcorate 0 dulcorate 0 009 @ 02196948 v 0000 + 07858595 n 0102 + 07858595 n 0101 + 00248636 n 0101 ! 02196690 v 0101 ~ 02195852 v 0000 ~ 02195951 v 0000 ~ 02196378 v 0000 ~ 02196540 v 0000 03 + 01 00 + 08 00 + 11 00 | make sweeter in taste -02195751 39 v 01 bitter 0 002 @ 02196948 v 0000 + 04994824 n 0102 02 + 08 00 + 11 00 | make bitter -02195852 39 v 01 honey 0 002 @ 02195470 v 0000 + 07858978 n 0101 01 + 08 00 | sweeten with honey -02195951 39 v 02 sugar 0 saccharify 0 002 @ 02195470 v 0000 + 07859284 n 0101 01 + 08 00 | sweeten with sugar; "sugar your tea" -02196081 39 v 01 pepper 0 003 @ 02192570 v 0000 ;c 00243918 n 0000 + 07815588 n 0101 01 + 08 00 | add pepper to; "pepper the soup" -02196214 39 v 01 salt 0 006 @ 02191766 v 0000 ;c 00243918 n 0000 + 05717342 n 0101 + 07813107 n 0101 + 10549165 n 0101 + 00248534 n 0101 01 + 08 00 | add salt to -02196378 39 v 03 sugarcoat 0 glaze 0 candy 0 002 @ 02195470 v 0000 + 07621001 n 0201 02 + 08 00 + 11 00 | coat with something sweet, such as a hard sugar glaze -02196540 39 v 01 mull 0 002 @ 02195470 v 0000 + 03798165 n 0101 02 + 08 00 + 11 00 | heat with sugar and spices to make a hot drink; "mulled cider" -02196690 39 v 04 sour 0 acidify 0 acidulate 0 acetify 0 008 @ 02196948 v 0000 + 07828987 n 0402 + 14599641 n 0401 + 14607521 n 0301 + 14607521 n 0201 + 04993882 n 0102 + 05716744 n 0101 ! 02195470 v 0101 03 + 01 00 + 08 00 + 11 00 | make sour or more sour -02196948 39 v 01 change_taste 0 004 @ 00126264 v 0000 ~ 02195470 v 0000 ~ 02195751 v 0000 ~ 02196690 v 0000 01 + 01 00 | alter the flavor of -02197091 39 v 01 lose 0 000 02 + 08 00 + 09 00 | allow to go out of sight; "The detective lost the man he was shadowing after he had to stop at a red light" -02197250 39 v 01 get_off 0 001 @ 01828736 v 0000 01 + 22 00 | enjoy in a sexual way; "He gets off on shoes" -02197360 39 v 01 come 0 002 @ 02110220 v 0000 + 00062133 n 0104 01 + 02 00 | experience orgasm; "she could not come because she was too upset" -02197505 39 v 01 greet 0 000 02 + 10 00 + 11 00 | be perceived by; "Loud music greeted him when he entered the apartment" -02197629 39 v 01 track 0 002 @ 02169352 v 0000 + 09387222 n 0102 02 + 08 00 + 09 00 | observe or plot the moving path of something; "track a missile" -02197781 39 v 01 find 5 002 @ 02106506 v 0000 $ 02128873 v 0000 01 + 20 00 | perceive oneself to be in a certain condition or place; "I found myself in a difficult situation"; "When he woke up, he found himself in a hospital room" -02198014 39 v 01 roll 0 004 @ 02176268 v 0000 + 07388816 n 0102 + 07389330 n 0103 + 07389330 n 0104 01 + 01 00 | emit, produce, or utter with a deep prolonged reverberating sound; "The thunder rolled"; "rolling drums" -02198234 39 v 01 seem 2 001 @ 02134672 v 0000 01 + 28 00 | appear to one's own mind or opinion; "I seem to be misunderstood by everyone"; "I can't seem to learn these Chinese characters" -02198423 39 v 01 block 5 002 @ 00021065 v 0000 + 02854156 n 0101 02 + 08 00 + 11 00 | interrupt the normal function of by means of anesthesia; "block a nerve"; "block a muscle" -02198602 39 v 03 surveil 0 follow d survey d 001 $ 02000868 v 0000 02 + 09 00 + 10 00 | keep under surveillance; "The police had been following him for weeks but they could not prove his involvement in the bombing" -02198819 39 v 01 kill 0 002 @ 02121511 v 0000 + 05688630 n 0101 02 + 10 00 + 11 00 | be the source of great pain for; "These new shoes are killing me!" -02198973 39 v 01 see_through 0 001 @ 02106506 v 0000 02 + 08 00 + 09 00 | perceive the true nature of; "We could see through her apparent calm" -02199119 39 v 01 etch 0 001 @ 02137132 v 0000 01 + 11 00 | cause to stand out or be clearly defined or visible; "a face etched with pain"; "the leafless branches etched against the sky" -02199307 39 v 01 sight 3 001 @ 01151110 v 0000 01 + 02 00 | take aim by looking through the sights of a gun (or other device) -02199435 39 v 01 flush 0 001 @ 02160944 v 0000 02 + 01 00 + 11 00 | glow or cause to glow with warm color or light; "the sky flushed with rosy splendor" -02199590 40 v 01 give 0 029 > 02203362 v 0000 @ 02220461 v 0000 + 10025730 n 0102 + 00090779 n 0101 + 01086081 n 0101 ! 02205272 v 0101 ^ 02284951 v 0104 ~ 01182709 v 0000 ~ 02200341 v 0000 ~ 02208903 v 0000 ~ 02219094 v 0000 ~ 02251743 v 0000 ~ 02255268 v 0000 ~ 02255462 v 0000 ~ 02262752 v 0000 ~ 02263692 v 0000 ~ 02263788 v 0000 ~ 02294436 v 0000 ~ 02297142 v 0000 ~ 02308741 v 0000 ~ 02310007 v 0000 ~ 02310855 v 0000 ~ 02316649 v 0000 ~ 02324182 v 0000 ~ 02327200 v 0000 ~ 02344060 v 0000 ~ 02345647 v 0000 ~ 02362916 v 0000 ~ 02363371 v 0000 02 + 14 00 + 15 00 | transfer possession of something concrete or abstract to somebody; "I gave her my money"; "can you give me lessons?"; "She gave the children lots of love and tender loving care" -02200341 40 v 03 cough_up 0 pony_up 0 spit_up 0 001 @ 02199590 v 0000 01 + 08 00 | give reluctantly; "He coughed up some money for his children's tuition" -02200498 40 v 01 give 2 001 @ 02230772 v 0000 01 + 14 00 | leave with; give temporarily; "Can I give you my keys while I go in the pool?"; "Can I give you the children for the weekend?" -02200686 40 v 03 give 1 gift 0 present 0 017 + 10025730 n 0303 + 01086081 n 0202 + 13265011 n 0201 + 10025730 n 0102 + 00090779 n 0101 ~ 02201268 v 0000 ~ 02201644 v 0000 ~ 02201855 v 0000 ~ 02201975 v 0000 ~ 02202133 v 0000 ~ 02229055 v 0000 ~ 02235229 v 0000 ~ 02255942 v 0000 ~ 02261642 v 0000 ~ 02263027 v 0000 ~ 02296615 v 0000 ~ 02310328 v 0000 02 + 14 00 + 15 00 | give as a present; make a gift of; "What will you give her for her birthday?" -02201138 40 v 01 take 8 000 01 + 08 00 | to get into a position of having, e.g., safety, comfort; "take shelter from the storm" -02201268 40 v 02 endow 0 dower 0 007 @ 02200686 v 0000 + 13264203 n 0201 + 13265425 n 0203 + 13265425 n 0202 + 13271320 n 0101 + 01086744 n 0101 ~ 02201521 v 0000 02 + 09 00 + 17 01 | furnish with an endowment; "When she got married, she got dowered" -02201521 40 v 01 benefice 0 003 @ 02201268 v 0000 + 09850121 n 0101 + 13248087 n 0101 01 + 17 00 | endow with a benefice -02201644 40 v 04 distribute 1 give_out 0 hand_out 0 pass_out 0 003 @ 02200686 v 0000 + 00467913 a 0101 ~ 02294179 v 0000 03 + 08 00 + 14 00 + 15 00 | give to several people; "The teacher handed out the exams" -02201855 40 v 01 give_away 0 001 @ 02200686 v 0000 01 + 08 00 | make a gift of; "She gave away her antique furniture" -02201975 40 v 02 raffle 0 raffle_off 0 002 @ 02200686 v 0000 + 00508672 n 0101 01 + 08 00 | dispose of in a lottery; "We raffled off a trip to the Bahamas" -02202133 40 v 03 tip 0 fee 1 bung 0 003 @ 02200686 v 0000 + 13298701 n 0102 + 10712573 n 0101 02 + 09 00 + 14 00 | give a tip or gratuity to in return for a service, beyond the compensation agreed on; "Remember to tip the waiter"; "fee the steward" -02202384 40 v 02 keep 0 hold_on 0 014 $ 02283716 v 0000 @ 02203362 v 0000 + 00810598 n 0102 ! 02287789 v 0101 ^ 02213690 v 0102 ^ 02283324 v 0103 ~ 02202802 v 0000 ~ 02212825 v 0000 ~ 02215001 v 0000 ~ 02225492 v 0000 ~ 02281093 v 0000 ~ 02282506 v 0000 ~ 02283324 v 0000 ~ 02350065 v 0000 02 + 08 00 + 22 02 | retain possession of; "Can I keep my old stuffed animals?"; "She kept her maiden name after she married" -02202802 40 v 02 carry_over 0 hold_over 0 001 @ 02202384 v 0000 01 + 08 00 | hold over goods to be sold for the next season -02202928 40 v 01 keep 1 006 $ 02733122 v 0000 @ 02203362 v 0000 + 10229498 n 0101 + 09984298 n 0102 + 00818466 n 0102 ~ 02280132 v 0000 02 + 08 00 + 09 00 | look after; be the keeper of; have charge of; "He keeps the shop when I am gone" -02203168 40 v 02 keep a maintain a 001 @ 02203362 v 0000 01 + 08 00 | maintain for use and service; "I keep a car in the countryside"; "She keeps an apartment in Paris for her shopping trips" -02203362 40 v 03 have 0 have_got 0 hold 0 013 + 13244109 n 0303 + 10529231 n 0103 ~ 01184625 v 0000 ~ 02202384 v 0000 ~ 02202928 v 0000 ~ 02203168 v 0000 ~ 02203844 v 0000 ~ 02204242 v 0000 ~ 02204564 v 0000 ~ 02285392 v 0000 ~ 02302220 v 0000 $ 02630189 v 0000 ~ 02636516 v 0000 03 + 08 00 + 09 00 + 11 00 | have or possess, either in a concrete or an abstract sense; "She has $1,000 in the bank"; "He has got two beautiful daughters"; "She holds a Master's degree from Harvard" -02203844 40 v 01 keep c 002 @ 02203362 v 0000 $ 02204094 v 0000 01 + 08 00 | have as a supply; "I always keep batteries in the freezer"; "keep food for a week in the pantry"; "She keeps a sixpack and a week's worth of supplies in the refrigerator" -02204094 40 v 01 keep d 002 $ 02203844 v 0000 @ 02282506 v 0000 01 + 08 00 | store or keep customarily; "Where do you keep your gardening tools?" -02204242 40 v 02 monopolize 0 monopolise 0 011 @ 02203362 v 0000 + 10329337 n 0201 + 01128806 n 0202 + 10329337 n 0203 + 14444114 n 0201 + 14444326 n 0201 + 10329337 n 0101 + 01128806 n 0101 + 10329337 n 0102 + 14444114 n 0101 + 14444326 n 0101 01 + 08 00 | have or exploit a monopoly of; "OPEC wants to monopolize oil" -02204564 40 v 03 wield 0 exert 0 maintain 1 001 @ 02203362 v 0000 01 + 08 00 | have and exercise; "wield power and authority" -02204692 40 v 03 own 0 have 4 possess 0 009 + 00792476 a 0301 + 00030508 a 0301 + 00809465 n 0301 + 10389398 n 0302 + 10529231 n 0203 + 10388924 n 0101 + 10389398 n 0101 ~ 02205012 v 0000 $ 02630189 v 0000 01 + 08 00 | have ownership or possession of; "He owns three houses in Florida"; "How many cars does she have?" -02205012 40 v 01 prepossess 0 001 @ 02204692 v 0000 01 + 08 00 | possess beforehand -02205098 40 v 01 have 1 001 ~ 02730135 v 0000 01 + 08 00 | have left; "I have two years left"; "I don't have any money left"; "They have two more years before they retire" -02205272 40 v 01 take 0 016 ! 02199590 v 0101 ^ 02311387 v 0103 ^ 02205887 v 0101 ^ 02492584 v 0101 ~ 00413195 v 0000 ~ 02205719 v 0000 ~ 02205887 v 0000 ~ 02218173 v 0000 ~ 02273293 v 0000 ~ 02273922 v 0000 ~ 02278592 v 0000 ~ 02301825 v 0000 ~ 02304648 v 0000 ~ 02312478 v 0000 ~ 02314275 v 0000 ~ 02360171 v 0000 03 + 08 00 + 09 00 + 16 00 | take into one's possession; "We are taking an orphan from Romania"; "I'll take three salmon steaks" -02205719 40 v 01 take_away 1 001 @ 02205272 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | take from a person or place; "We took the abused child away from its parents" -02205887 40 v 02 take_back 0 repossess 3 002 @ 02205272 v 0000 + 00089891 n 0201 01 + 08 00 | regain possession of something -02206014 40 v 02 come_by 0 come_into 0 002 @ 02210855 v 0000 ~ 02206462 v 0000 01 + 08 00 | obtain, especially accidentally -02206140 40 v 01 kite 0 002 @ 02238085 v 0000 + 13382306 n 0101 02 + 02 00 + 08 00 | get credit or money by using a bad check; "The businessman kited millions of dollars" -02206313 40 v 01 kite 1 002 @ 00153263 v 0000 + 13382471 n 0101 01 + 08 00 | increase the amount (of a check) fraudulently; "He kited many checks" -02206462 40 v 02 stumble a hit 5 001 @ 02206014 v 0000 01 + 22 00 | encounter by chance; "I stumbled across a long-lost cousin last night in a restaurant" -02206619 40 v 01 take 1 009 ~ 02206920 v 0000 ~ 02207036 v 0000 ~ 02241621 v 0000 ~ 02274482 v 0000 ~ 02304013 v 0000 ~ 02312882 v 0000 ~ 02321757 v 0000 ~ 02344568 v 0000 ~ 02345048 v 0000 02 + 08 00 + 16 00 | take by force; "Hitler took the Baltic Republics"; "The army took the fort on the hill" -02206920 40 v 01 rescue 0 001 @ 02206619 v 0000 01 + 09 00 | take forcibly from legal custody; "rescue prisoners" -02207036 40 v 01 scale 0 002 @ 02206619 v 0000 + 00325364 n 0101 02 + 08 00 + 11 00 | take by attacking with scaling ladders; "The troops scaled the walls of the fort" -02207206 40 v 02 buy 0 purchase 0 024 $ 02646757 v 0000 * 02251743 v 0000 * 00674607 v 0000 @ 02210855 v 0000 ;c 01090446 n 0000 + 13253612 n 0201 + 00079018 n 0201 + 09885145 n 0202 + 00081572 n 0202 + 13253751 n 0102 + 09885145 n 0101 + 00081572 n 0101 ! 02242464 v 0101 ^ 02323286 v 0102 ^ 02274299 v 0103 ^ 02274299 v 0102 ~ 02207890 v 0000 ~ 02208118 v 0000 ~ 02208265 v 0000 ~ 02209745 v 0000 ~ 02274299 v 0000 ~ 02287041 v 0000 ~ 02326955 v 0000 ~ 02353984 v 0000 03 + 02 00 + 08 00 + 16 00 | obtain by purchase; acquire by means of a financial transaction; "The family purchased a new car"; "The conglomerate acquired a new company"; "She buys for the big department store" -02207890 40 v 02 buy_back 0 repurchase 0 003 @ 02207206 v 0000 + 00079212 n 0202 + 00079212 n 0103 01 + 08 00 | buy what had previously been sold, lost, or given away; "He bought back the house that his father sold years ago" -02208118 40 v 01 take 2 003 @ 02207206 v 0000 ;c 01090446 n 0000 ^ 02311387 v 0103 01 + 08 00 | buy, select; "I'll take a pound of that sausage" -02208265 40 v 01 get d 003 @ 02207206 v 0000 ;c 01090446 n 0000 + 00041899 n 0102 01 + 08 00 | purchase; "What did you get at the toy store?" -02208409 40 v 01 clear 9 002 @ 02242464 v 0000 ;c 01090446 n 0000 01 + 08 00 | sell; "We cleared a lot of the old model cars" -02208537 40 v 06 lease 0 rent 0 hire 0 charter 0 engage 0 take 3 007 @ 02210855 v 0000 + 06522501 n 0401 + 13295657 n 0201 + 10700201 n 0202 + 01111375 n 0201 + 15274863 n 0101 + 06523132 n 0101 03 + 08 00 + 09 00 + 16 00 | engage for service under a term of contract; "We took an apartment on a quiet street"; "Let's rent a car"; "Shall we take a guide in Rome?" -02208903 40 v 03 lease 1 let 0 rent 1 010 @ 02199590 v 0000 + 13295657 n 0301 + 10520804 n 0301 ^ 02209499 v 0302 + 10255207 n 0201 + 10255096 n 0201 + 13248393 n 0101 + 06523132 n 0101 + 15274863 n 0101 ~ 02209261 v 0000 03 + 08 00 + 14 00 + 15 00 | grant use or occupation of under a term of contract; "I am leasing my country estate to some foreigners" -02209261 40 v 02 sublet 0 sublease 0 003 @ 02208903 v 0000 + 13248928 n 0201 + 13248928 n 0102 02 + 08 00 + 15 00 | lease or rent all or part of (a leased or rented property) to another person; "We sublet our apartment over the summer" -02209499 40 v 03 hire_out 0 rent_out 0 farm_out 0 001 @ 02324182 v 0000 03 + 08 00 + 09 00 + 15 00 | grant the services of or the temporary use of, for a fee; "We rent out our apartment to tourists every year"; "He hired himself out as a cook" -02209745 40 v 03 subscribe 0 subscribe_to 0 take 4 003 @ 02207206 v 0000 + 13260190 n 0303 + 10670483 n 0101 02 + 08 00 + 02 01 | receive or obtain regularly; "We take the Times every day" -02209936 40 v 02 take f accept c 003 + 01124768 a 0202 + 01020709 a 0201 ~ 02362460 v 0000 01 + 08 00 | make use of or accept for some purpose; "take a risk"; "take an opportunity" -02210119 40 v 02 receive 0 have 3 011 @ 02210855 v 0000 + 00090253 n 0101 + 09627906 n 0102 + 09627906 n 0101 ~ 01540844 v 0000 ~ 02210496 v 0000 ~ 02210622 v 0000 ~ 02210754 v 0000 $ 02236124 v 0000 ~ 02264397 v 0000 ~ 02315759 v 0000 03 + 08 00 + 09 00 + 16 00 | get something; come into possession of; "receive payment"; "receive a gift"; "receive letters from the front" -02210496 40 v 01 hustle 1 001 @ 02210119 v 0000 01 + 08 00 | get by trying hard; "she hustled a free lunch from the waiter" -02210622 40 v 01 accept 7 002 @ 02210119 v 0000 + 14412725 n 0101 01 + 08 00 | receive (a report) officially, as from a committee -02210754 40 v 01 fence 0 002 @ 02210119 v 0000 + 10085101 n 0101 01 + 02 00 | receive stolen goods -02210855 40 v 02 get 0 acquire 0 045 + 00029343 a 0201 + 00183832 a 0201 + 00041899 n 0201 + 05752544 n 0202 + 00077419 n 0201 + 08419163 n 0202 + 09764201 n 0201 + 08419354 n 0201 + 08419562 n 0201 + 00041899 n 0102 ~ 00496770 v 0000 $ 00522751 v 0000 ~ 01111570 v 0000 ~ 01351754 v 0000 ~ 01480149 v 0000 ~ 02206014 v 0000 ~ 02207206 v 0000 ~ 02208537 v 0000 ~ 02210119 v 0000 ~ 02211948 v 0000 ~ 02212103 v 0000 ~ 02212275 v 0000 ~ 02212507 v 0000 ~ 02212646 v 0000 ~ 02213336 v 0000 ~ 02236124 v 0000 ~ 02238085 v 0000 ~ 02247977 v 0000 ~ 02248299 v 0000 ~ 02249438 v 0000 ~ 02276322 v 0000 ~ 02285629 v 0000 ~ 02288295 v 0000 ~ 02289295 v 0000 ~ 02290196 v 0000 ~ 02290461 v 0000 ~ 02295208 v 0000 ~ 02302454 v 0000 ~ 02302652 v 0000 ~ 02305586 v 0000 ~ 02315525 v 0000 ~ 02324026 v 0000 ~ 02355410 v 0000 ~ 02359340 v 0000 ~ 02454835 v 0000 03 + 08 00 + 09 00 + 16 00 | come into the possession of something concrete or abstract; "She got a lot of paintings from her uncle"; "They acquired a new pet"; "Get your results the next day"; "Get permission to take a few days off from work" -02211948 40 v 01 turn d 002 @ 02210855 v 0000 ;c 01090446 n 0000 01 + 08 00 | get by buying and selling; "the company turned a good profit after a year" -02212103 40 v 01 buy 3 001 @ 02210855 v 0000 01 + 08 00 | acquire by trade or sacrifice or exchange; "She wanted to buy his love with her dedication to him and his work" -02212275 40 v 01 find 3 002 @ 02210855 v 0000 $ 02285629 v 0000 01 + 08 00 | obtain through effort or management; "She found the time and energy to take care of her aging parents"; "We found the money to send our sons to college" -02212507 40 v 01 glom d 001 @ 02210855 v 0000 01 + 22 00 | seize upon or latch onto something; "The Republicans glommed onto Whitewater" -02212646 40 v 03 enter_upon 0 come_upon 1 luck_into 0 001 @ 02210855 v 0000 03 + 08 00 + 09 00 + 16 00 | take possession of; "She entered upon the estate of her rich relatives" -02212825 40 v 02 deny 0 refuse 1 006 @ 02202384 v 0000 + 07205573 n 0201 + 10003283 n 0101 ! 02255462 v 0101 $ 02213074 v 0000 ~ 02213690 v 0000 01 + 14 00 | refuse to let have; "She denies me every pleasure"; "he denies her her weekly allowance" -02213074 40 v 02 deny 4 abnegate 0 005 $ 02212825 v 0000 @ 02510337 v 0000 + 00205649 n 0201 + 10003283 n 0101 + 00205649 n 0103 01 + 14 00 | deny oneself (something); restrain, especially from indulging in some pleasure; "She denied herself wine and spirits" -02213336 40 v 04 line_up 0 get_hold 0 come_up 0 find 1 001 @ 02210855 v 0000 04 + 08 00 + 09 00 + 22 03 + 22 02 | get something or somebody for a specific purpose; "I found this gadget that will serve as a bottle opener"; "I got hold of these tools to fix our plumbing"; "The chairman got hold of a secretary on Friday night to type the urgent letter" -02213690 40 v 02 withhold 0 keep_back 0 010 @ 02212825 v 0000 + 10785695 n 0101 + 10785574 n 0101 + 00810794 n 0101 ~ 00269423 v 0000 ~ 02214042 v 0000 ~ 02214190 v 0000 ~ 02214485 v 0000 ~ 02214864 v 0000 ~ 02313250 v 0000 01 + 16 00 | hold back; refuse to hand over or share; "The father is withholding the allowance until the son cleans his room" -02214042 40 v 01 keep_to_oneself 0 001 @ 02213690 v 0000 01 + 08 00 | withhold information; "I kept your little secret to myself all these years" -02214190 40 v 01 deny 1 003 @ 02213690 v 0000 + 10003283 n 0101 + 07204401 n 0101 02 + 08 00 + 14 00 | refuse to grant, as of a petition or request; "The dean denied the students' request for more physics courses"; "the prisoners were denied the right to exercise for more than 2 hours a day" -02214485 40 v 01 reserve 3 004 @ 02213690 v 0000 + 13368052 n 0101 + 00820091 n 0101 ~ 02214717 v 0000 01 + 08 00 | hold back or set aside, especially for future use or contingency; "they held back their applause in anticipation" -02214717 40 v 01 devote 0 001 @ 02214485 v 0000 01 + 08 00 | set aside or apart for a specific purpose or use; "this land was devoted to mining" -02214864 40 v 02 immobilize 0 immobilise 0 001 @ 02213690 v 0000 01 + 08 00 | hold as reserve or withdraw from circulation; of capital -02215001 40 v 03 withhold 1 deduct 0 recoup 1 006 @ 02202384 v 0000 + 00689673 a 0201 + 10785695 n 0101 + 13311368 n 0102 + 00361192 n 0101 ~ 02215266 v 0000 02 + 08 00 + 16 00 | retain and refrain from disbursing; of payments; "My employer is withholding taxes" -02215266 40 v 01 dock 0 001 @ 02215001 v 0000 01 + 08 00 | deduct from someone's wages -02215355 40 v 01 annex 0 002 @ 02274482 v 0000 ~ 02590340 v 0000 02 + 08 00 + 11 00 | take (territory) as if by conquest; "Hitler annexed Lithuania" -02215506 40 v 01 fund 0 009 @ 02219094 v 0000 * 02217266 v 0000 + 13358549 n 0101 + 13365698 n 0103 + 01099109 n 0102 $ 02215790 v 0000 ~ 02216232 v 0000 ~ 02216384 v 0000 ~ 02216560 v 0000 02 + 08 00 + 09 00 | furnish money for; "The government funds basic research in many areas" -02215790 40 v 01 fund 3 002 $ 02215506 v 0000 @ 02304982 v 0000 02 + 08 00 + 11 00 | accumulate a fund for the discharge of a recurrent liability; "fund a medical care plan" -02215966 40 v 01 fund 4 002 @ 02271137 v 0000 + 08070850 n 0104 01 + 08 00 | invest money in government securities -02216083 40 v 01 fund 5 002 @ 02327200 v 0000 + 08070850 n 0104 01 + 08 00 | provide a fund for the redemption of principal or payment of interest -02216232 40 v 01 grubstake 0 002 @ 02215506 v 0000 + 13287239 n 0101 02 + 08 00 + 09 00 | supply with funds in return for a promised share of profits -02216384 40 v 01 bankroll 0 001 @ 02215506 v 0000 01 + 08 00 | provide with sufficient funds; finance; "Who will bankroll the restoration of the former East German economy?" -02216560 40 v 02 absorb 0 take_over 0 001 @ 02215506 v 0000 02 + 08 00 + 11 00 | take up, as of debts or payments; "absorb the costs for something" -02216710 40 v 02 subsidize 0 subsidise 0 009 @ 02219094 v 0000 + 13385583 n 0202 + 00087423 n 0203 + 10670885 n 0202 + 13267014 n 0201 + 13385583 n 0101 + 00087423 n 0102 + 10670885 n 0101 + 13267014 n 0101 02 + 08 00 + 09 00 | support through subsidies; "The arts in Europe are heavily subsidized" -02217011 40 v 02 subsidize 1 subsidise 1 005 @ 02251743 v 0000 + 13385583 n 0202 + 00087423 n 0203 + 13385583 n 0101 + 00087423 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | secure the assistance of by granting a subsidy, as of nations or military forces -02217266 40 v 01 finance 0 009 @ 02251743 v 0000 + 01134037 n 0101 + 06150633 n 0101 + 01098698 n 0101 + 01099109 n 0101 ~ 02217546 v 0000 ~ 02217695 v 0000 ~ 02218546 v 0000 ~ 02218924 v 0000 01 + 08 00 | obtain or provide money for; "Can we finance the addition to our home?" -02217546 40 v 01 seed 0 001 @ 02217266 v 0000 02 + 08 00 + 09 00 | help (an enterprise) in its early stages of development by providing seed money -02217695 40 v 01 back 0 004 @ 02217266 v 0000 + 09793717 n 0102 + 13365698 n 0104 + 01213886 n 0101 01 + 08 00 | support financial backing for; "back this enterprise" -02217864 40 v 01 finance 1 003 @ 02264752 v 0000 + 01134037 n 0101 + 01098698 n 0101 01 + 08 00 | sell or provide on credit -02217990 40 v 03 fund-raise 0 fund_raise 0 fundraise 0 001 @ 02306281 v 0000 03 + 02 00 + 22 00 + 28 00 | raise money for a cause or project; "We are fundraising for AIDS research" -02218173 40 v 02 collect 1 take_in 9 005 @ 02205272 v 0000 + 00136884 a 0101 + 09936362 n 0101 ~ 02218443 v 0000 ~ 02306281 v 0000 02 + 08 00 + 16 00 | call for and obtain payment of; "we collected over a million dollars in outstanding debts"; "he collected the rent" -02218443 40 v 01 farm 0 002 @ 02218173 v 0000 ^ 02209499 v 0103 01 + 08 00 | collect fees or profits -02218546 40 v 01 refinance 0 001 @ 02217266 v 0000 01 + 08 00 | renew the financing of -02218635 40 v 01 fund 1 002 @ 02304982 v 0000 + 13358549 n 0101 01 + 08 00 | place or store up in a fund for accumulation -02218759 40 v 02 computerize 0 computerise 0 003 @ 02281093 v 0000 + 03082979 n 0201 + 03082979 n 0101 01 + 08 00 | store in a computer; "computerized dictionary" -02218924 40 v 01 fund 2 001 @ 02217266 v 0000 01 + 08 00 | convert (short-term floating debt) into long-term debt that bears fixed interest and is represented by bonds -02219094 40 v 01 support 0 009 @ 02199590 v 0000 + 13365698 n 0101 + 13365286 n 0101 + 01215902 n 0101 ~ 02215506 v 0000 ~ 02216710 v 0000 ~ 02219442 v 0000 ~ 02219732 v 0000 ~ 02219940 v 0000 02 + 08 00 + 09 00 | support materially or financially; "he does not support his natural children"; "The scholarship supported me when I was in college" -02219442 40 v 02 provide 8 bring_home_the_bacon 0 002 @ 02219094 v 0000 + 01057200 n 0101 01 + 22 00 | supply means of subsistence; earn a living; "He provides for his large family by working three jobs"; "Women nowadays not only take care of the household but also bring home the bacon" -02219732 40 v 01 see_through 0 001 @ 02219094 v 0000 02 + 08 00 + 09 00 | support financially through a period of time; "The scholarship saw me through college"; "This money will see me through next month" -02219940 40 v 03 sponsor 0 patronize 0 patronise 0 006 @ 02219094 v 0000 + 10407954 n 0301 + 10407954 n 0201 + 10466198 n 0102 + 10407954 n 0102 ~ 02220349 v 0000 02 + 08 00 + 09 00 | assume sponsorship of -02220148 40 v 01 sponsor 1 002 @ 02556126 v 0000 + 10407954 n 0102 02 + 08 00 + 11 00 | assume responsibility for or leadership of; "The senator announced that he would sponsor the health care plan" -02220349 40 v 01 cosponsor 0 001 @ 02219940 v 0000 02 + 08 00 + 09 00 | sponsor together with another sponsor -02220461 40 v 01 transfer 0 017 * 01850315 v 0000 > 02221959 v 0000 + 01107932 n 0101 + 10724699 n 0101 + 10724699 n 0102 + 10724999 n 0101 + 01107932 n 0102 ~ 02199590 v 0000 ~ 02220914 v 0000 ~ 02221010 v 0000 ~ 02221178 v 0000 ~ 02221454 v 0000 ~ 02221794 v 0000 ~ 02228531 v 0000 ~ 02230772 v 0000 ~ 02257370 v 0000 ~ 02479990 v 0000 04 + 08 00 + 12 00 + 15 00 + 16 00 | cause to change ownership; "I transferred my stock holdings to my children" -02220914 40 v 01 demise 0 001 @ 02220461 v 0000 01 + 08 00 | transfer by a lease or by a will -02221010 40 v 02 alien 0 alienate 0 002 @ 02220461 v 0000 + 00093275 a 0201 01 + 08 00 | transfer property or ownership; "The will aliened the property to the heirs" -02221178 40 v 01 negociate 0 001 @ 02220461 v 0000 01 + 08 00 | transfer by endorsement to another in return for value received; "negociate a bond" -02221328 40 v 01 negociate 2 002 @ 02242464 v 0000 ;c 01090446 n 0000 01 + 08 00 | sell or discount; "negociate securities" -02221454 40 v 01 convey 0 005 @ 02220461 v 0000 ;c 08441203 n 0000 + 00093556 a 0102 + 01108402 n 0104 + 01108402 n 0101 03 + 08 00 + 12 00 + 14 00 | transmit a title or property -02221635 40 v 01 pass 2 001 @ 00109660 v 0000 02 + 01 00 + 04 00 | transfer to another; of rights or property; "Our house passed under his official control" -02221794 40 v 02 desacralize 0 secularize 0 002 @ 02220461 v 0000 + 01109311 n 0201 01 + 08 00 | transfer from ecclesiastical to civil possession, use, or control -02221959 40 v 02 change_hands 0 change_owners 0 004 @ 01850315 v 0000 ~ 02222179 v 0000 ~ 02229550 v 0000 ~ 02230056 v 0000 01 + 01 00 | be transferred to another owner; "This restaurant changed hands twice last year" -02222179 40 v 01 vest 3 002 $ 02362916 v 0000 @ 02221959 v 0000 01 + 04 00 | become legally vested; "The property vests in the trustees" -02222318 40 v 0d discard 0 fling 2 toss 0 toss_out 0 toss_away 0 chuck_out 0 cast_aside 0 dispose 0 throw_out 0 cast_out 0 throw_away 0 cast_away 0 put_away 0 017 @ 02224055 v 0000 + 00043609 n 0802 + 00043609 n 0801 + 00105164 n 0201 + 00091234 n 0101 + 09267490 n 0101 ~ 00598502 v 0000 ~ 02222994 v 0000 ~ 02223136 v 0000 ~ 02223238 v 0000 ~ 02223479 v 0000 ~ 02225204 v 0000 ~ 02225342 v 0000 ~ 02228031 v 0000 ~ 02247584 v 0000 ~ 02247749 v 0000 ~ 02352538 v 0000 01 + 08 00 | throw or cast away; "Put away your worries" -02222846 40 v 01 slough_off 0 001 @ 02224055 v 0000 01 + 09 00 | discard as undesirable; "the candidate sloughed off his former campaign workers" -02222994 40 v 02 deep-six 0 give_it_the_deep_six 0 001 @ 02222318 v 0000 01 + 08 00 | toss out; get rid of; "deep-six these old souvenirs!" -02223136 40 v 01 jettison 0 001 @ 02222318 v 0000 01 + 08 00 | throw away, of something encumbering -02223238 40 v 03 trash 0 junk 0 scrap 0 004 @ 02222318 v 0000 + 14857497 n 0303 + 14857897 n 0203 + 14857497 n 0102 01 + 08 00 | dispose of (something useless or old); "trash these old chairs"; "junk an old car"; "scrap your old computer" -02223479 40 v 01 waste 1 002 @ 02222318 v 0000 + 14856263 n 0101 01 + 08 00 | get rid of; "We waste the dirty water by channeling it into the sewer" -02223630 40 v 02 weed_out 0 comb_out 0 002 @ 02224055 v 0000 + 00090610 n 0201 03 + 08 00 + 09 00 + 11 00 | remove unwanted elements; "The company weeded out the incompetent people"; "The new law weeds out the old inequities" -02223858 40 v 01 work_off 0 001 @ 02224055 v 0000 01 + 08 00 | cause to go away through effort or work; "work off the extra pounds you have gained over the holidays"; "we must work off the debt" -02224055 40 v 02 get_rid_of 1 remove 0 031 + 00391599 n 0201 ~ 02222318 v 0000 ~ 02222846 v 0000 ~ 02223630 v 0000 ~ 02223858 v 0000 ~ 02224781 v 0000 ~ 02224945 v 0000 ~ 02341086 v 0000 ~ 02363972 v 0000 ~ 02364072 v 0000 ~ 02364171 v 0000 ~ 02364266 v 0000 ~ 02364393 v 0000 ~ 02364491 v 0000 ~ 02364573 v 0000 ~ 02364668 v 0000 ~ 02364767 v 0000 ~ 02364849 v 0000 ~ 02364965 v 0000 ~ 02365073 v 0000 ~ 02365168 v 0000 ~ 02365294 v 0000 ~ 02365396 v 0000 ~ 02365481 v 0000 ~ 02365586 v 0000 ~ 02365692 v 0000 ~ 02365824 v 0000 ~ 02365936 v 0000 ~ 02366241 v 0000 ~ 02366351 v 0000 ~ 02366451 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | dispose of; "Get rid of these old shoes!"; "The company got rid of all the dead wood" -02224781 40 v 01 cull 0 002 @ 02224055 v 0000 + 05790572 n 0101 02 + 02 00 + 08 00 | remove something that has been rejected; "cull the sick members of the herd" -02224945 40 v 02 dump 2 ditch 3 001 @ 02224055 v 0000 02 + 08 00 + 09 00 | sever all ties with, usually unceremoniously or irresponsibly; "The company dumped him after many years of service"; "She dumped her boyfriend when she fell in love with a rich man" -02225204 40 v 01 dump 0 002 @ 02222318 v 0000 + 08560027 n 0101 02 + 08 00 + 11 00 | throw away as refuse; "No dumping in these woods!" -02225342 40 v 01 retire 0 001 @ 02222318 v 0000 01 + 08 00 | dispose of (something no longer useful or needed); "She finally retired that old coat" -02225492 40 v 02 save 0 preserve 1 005 @ 02202384 v 0000 + 14515463 n 0201 + 10553627 n 0101 ~ 01000214 v 0000 ~ 02269143 v 0000 01 + 08 00 | to keep up and reserve for personal or special use; "She saved the old family photographs in a drawer" -02225739 40 v 03 stint 1 skimp 1 scant 0 002 @ 02327200 v 0000 + 10656832 n 0101 01 + 02 00 | supply sparingly and with restricted quantities; "sting with the allowance" -02225911 40 v 01 fin 0 002 @ 02339413 v 0000 + 04384406 n 0103 01 + 08 00 | equip (a car) with fins -02226013 40 v 01 motorize 3 003 @ 02339413 v 0000 + 00102927 n 0101 + 03789946 n 0101 01 + 08 00 | equip with a motor; "motorized scooters are now the rage" -02226172 40 v 01 motorize 5 003 @ 02339413 v 0000 + 00102927 n 0101 + 03789946 n 0101 01 + 08 00 | equip with a motor vehicle; "The police around here are not motorized and patrol the streets on horseback" -02226380 40 v 02 terrace 0 terrasse 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 03899768 n 0102 01 + 08 00 | provide (a house) with a terrace; "We terrassed the country house" -02226559 40 v 01 dado 0 002 @ 02327200 v 0000 ;c 00607775 n 0000 01 + 08 00 | provide with a dado; "The owners wanted to dado their dining room" -02226706 40 v 01 innervate 0 002 @ 02327200 v 0000 + 05088189 n 0101 01 + 08 00 | supply nerves to (some organ or body part) -02226833 40 v 02 reclaim 3 recover 6 003 @ 01162425 v 0000 * 02225492 v 0000 + 00093354 n 0101 01 + 08 00 | reuse (materials from waste products) -02226981 40 v 01 embalm 0 004 @ 02280132 v 0000 + 00820406 n 0101 + 10051215 n 0101 ~ 02227127 v 0000 02 + 08 00 + 09 00 | preserve a dead body -02227127 40 v 01 mummify 0 004 $ 00242205 v 0000 @ 02226981 v 0000 + 00820583 n 0101 + 05218630 n 0101 02 + 08 00 + 09 00 | remove the organs and dry out (a dead body) in order to preserve it; "Th Egyptians mummified their pharaohs" -02227362 40 v 02 chuck 0 ditch 1 002 @ 02228031 v 0000 ;u 07157273 n 0000 01 + 08 00 | throw away; "Chuck these old notes" -02227487 40 v 04 foreswear 0 renounce 0 quit 0 relinquish 0 006 @ 02227741 v 0000 + 00212808 n 0401 + 07254836 n 0402 + 01301056 a 0201 + 07254594 n 0201 ~ 00758197 v 0000 02 + 08 00 + 09 00 | turn away from; give up; "I am foreswearing women forever" -02227741 40 v 02 abandon 1 give_up 0 002 + 00204439 n 0101 ~ 02227487 v 0000 02 + 08 00 + 09 00 | give up with the intent of never claiming again; "Abandon your life to God"; "She gave up her children to her ex-husband when she moved to Tahiti"; "We gave the drowning victim up for dead" -02228031 40 v 01 abandon 0 006 @ 02222318 v 0000 + 00091013 n 0101 ~ 02227362 v 0000 ~ 02303235 v 0000 ~ 02303331 v 0000 ~ 02348324 v 0000 02 + 08 00 + 09 00 | forsake, leave behind; "We abandoned the old car in the empty parking lot" -02228268 40 v 01 ditch 0 001 @ 00614057 v 0000 01 + 09 00 | forsake; "ditch a lover" -02228355 40 v 02 maroon 0 strand 0 002 @ 00614057 v 0000 + 10295190 n 0101 01 + 09 00 | leave stranded or isolated with little hope of rescue; "the travellers were marooned" -02228531 40 v 01 assign 0 005 @ 02220461 v 0000 + 00093556 a 0101 + 13254237 n 0102 + 06545528 n 0101 + 09815455 n 0101 02 + 14 00 + 15 00 | transfer one's right to -02228698 40 v 03 assign 1 allot 1 portion 0 005 @ 02294436 v 0000 + 01085098 n 0302 + 01083645 n 0107 ~ 00724150 v 0000 ~ 02234087 v 0000 02 + 14 00 + 15 00 | give out; "We were assigned new uniforms" -02228901 40 v 01 reallot 0 002 @ 02294436 v 0000 + 01084180 n 0101 03 + 08 00 + 14 00 + 15 00 | allot again; "They were realloted additional farm land" -02229055 40 v 03 bequeath 0 will 0 leave 1 009 @ 02200686 v 0000 + 06544142 n 0201 ! 02316097 v 0101 $ 00360092 v 0000 ~ 02229412 v 0000 ~ 02230247 v 0000 $ 02296153 v 0000 ~ 02356567 v 0000 ~ 02363234 v 0000 02 + 14 00 + 15 00 | leave or give by will after one's death; "My aunt bequeathed me all her jewelry"; "My grandfather left me his entire estate" -02229412 40 v 01 devise 0 003 @ 02229055 v 0000 + 13416241 n 0101 + 10010632 n 0101 01 + 08 00 | give by will, especially real property -02229550 40 v 04 fall d return d pass d devolve d 003 @ 02221959 v 0000 ~ 02229828 v 0000 $ 02230056 v 0000 01 + 10 00 | be inherited by; "The estate fell to my sister"; "The land returned to the family"; "The estate devolved to an heir that everybody had assumed to be dead" -02229828 40 v 02 fall 8 light c 003 @ 02229550 v 0000 $ 02230056 v 0000 $ 02358655 v 0000 02 + 10 00 + 24 00 | fall to somebody by assignment or lot; "The task fell to me"; "It fell to me to notify the parents of the victims" -02230056 40 v 02 accrue a fall 9 004 $ 02229828 v 0000 $ 02229550 v 0000 @ 02221959 v 0000 + 00372013 n 0102 01 + 10 00 | come into the possession of; "The house accrued to the oldest son" -02230247 40 v 01 pass_on 0 003 @ 02229055 v 0000 ~ 02230447 v 0000 ~ 02230615 v 0000 02 + 08 00 + 15 00 | give to or transfer possession of; "She passed the family jewels on to her daughter-in-law" -02230447 40 v 01 propagate 0 002 @ 02230247 v 0000 + 00849982 n 0103 02 + 08 00 + 15 00 | transmit from one generation to the next; "propagate these characteristics" -02230615 40 v 01 hand_down 0 001 @ 02230247 v 0000 02 + 08 00 + 15 00 | passed on, as by inheritance; "This ring was handed down through many generations" -02230772 40 v 06 pass 0 hand 0 reach 0 pass_on 1 turn_over 0 give 6 017 @ 02220461 v 0000 + 05564590 n 0201 ^ 02201644 v 0203 ^ 02230615 v 0201 ^ 02293321 v 0201 + 00318035 n 0101 ^ 02589013 v 0102 ^ 02230247 v 0101 ^ 02296153 v 0104 ^ 00742320 v 0102 ~ 02200498 v 0000 ~ 02231328 v 0000 ~ 02246686 v 0000 ~ 02293321 v 0000 ~ 02316304 v 0000 ~ 02349212 v 0000 ~ 02356230 v 0000 03 + 09 00 + 14 00 + 15 00 | place into the hands or custody of; "hand me the spoon, please"; "Turn the files over to me, please"; "He turned over the prisoner to his lawyers" -02231328 40 v 02 slip a sneak a 001 @ 02230772 v 0000 02 + 14 00 + 15 00 | pass on stealthily; "He slipped me the key when nobody was looking" -02231473 40 v 01 pass 1 004 @ 01508368 v 0000 + 10404242 n 0101 + 00560529 n 0101 + 00560529 n 0104 04 + 02 00 + 08 00 + 14 00 + 15 00 | throw (a ball) to another player; "Smith passed" -02231661 40 v 03 convey a transmit a communicate a 007 @ 02232190 v 0000 + 00033020 n 0301 + 01314537 a 0206 + 01303042 a 0205 + 07360647 n 0203 + 09469285 n 0202 ~ 00742320 v 0000 02 + 08 00 + 15 00 | transfer to another; "communicate a disease" -02231910 40 v 01 load c 002 @ 02232190 v 0000 ;c 06128570 n 0000 01 + 08 00 | transfer from a storage device to a computer's memory -02232044 40 v 01 offset 1 002 @ 02232190 v 0000 + 06680570 n 0101 01 + 08 00 | cause (printed matter) to transfer or smear onto another surface -02232190 40 v 01 transfer 1 020 @ 01850315 v 0000 + 00315986 n 0103 + 00201671 n 0101 + 10724699 n 0102 + 00315986 n 0104 ~ 01031256 v 0000 ~ 01062555 v 0000 ~ 02231661 v 0000 ~ 02231910 v 0000 ~ 02232044 v 0000 ~ 02232722 v 0000 ~ 02232877 v 0000 ~ 02233081 v 0000 ~ 02233195 v 0000 ~ 02233352 v 0000 ~ 02233533 v 0000 ~ 02233704 v 0000 ~ 02233898 v 0000 ~ 02348568 v 0000 ~ 02362130 v 0000 02 + 08 00 + 09 00 | move from one place to another; "transfer the data"; "transmit the news"; "transfer the patient to another hospital" -02232722 40 v 01 import 1 003 @ 02232190 v 0000 ;c 06128570 n 0000 ! 02232877 v 0101 01 + 08 00 | transfer (electronic data) into a database or document -02232877 40 v 01 export 1 003 @ 02232190 v 0000 ;c 06128570 n 0000 ! 02232722 v 0101 01 + 08 00 | transfer (electronic data) out of a database or document in a format that can be used by other programs -02233081 40 v 01 offload 0 001 @ 02232190 v 0000 01 + 08 00 | transfer to a peripheral device, of computer data -02233195 40 v 02 post 5 carry d 003 @ 02232190 v 0000 + 00318735 n 0201 $ 02012725 v 0000 01 + 08 00 | transfer (entries) from one account book to another -02233352 40 v 01 FTP 0 002 @ 02232190 v 0000 + 06665370 n 0102 01 + 08 00 | use the file transfer protocol to transfer data from one computer to another; "You can FTP these data" -02233533 40 v 01 spool 0 002 @ 02232190 v 0000 ;c 06128570 n 0000 01 + 08 00 | transfer data intended for a peripheral device (usually a printer) into temporary storage -02233704 40 v 01 download 0 002 @ 02232190 v 0000 ! 02233898 v 0101 01 + 08 00 | transfer a file or program from a central computer to a smaller computer or to a computer at a remote location -02233898 40 v 01 upload 0 002 @ 02232190 v 0000 ! 02233704 v 0101 01 + 08 00 | transfer a file or program to a central computer from a smaller computer or a computer at a remote location -02234087 40 v 02 allocate 0 apportion 1 012 @ 02228698 v 0000 + 00468176 a 0203 + 01083645 n 0202 + 00468176 a 0102 + 00468176 a 0101 + 00164579 n 0101 + 13289467 n 0102 + 01083645 n 0104 + 09784707 n 0101 ~ 02234551 v 0000 ~ 02234803 v 0000 ~ 02261888 v 0000 02 + 08 00 + 15 00 | distribute according to a plan or set apart for a special purpose; "I am allocating a loaf of bread to everyone on a daily basis"; "I'm allocating the rations for the camping trip" -02234551 40 v 02 reapportion 0 reallocate 0 004 @ 02234087 v 0000 + 13289630 n 0201 + 01084180 n 0203 + 01084180 n 0102 02 + 08 00 + 15 00 | allocate, distribute, or apportion anew; "Congressional seats are reapportioned on the basis of census data" -02234803 40 v 02 ration 0 ration_out 0 003 @ 02234087 v 0000 + 07565725 n 0101 + 13286099 n 0101 02 + 08 00 + 15 00 | distribute in rations, as in the army; "Cigarettes are rationed" -02234988 40 v 01 ration 1 004 @ 00235368 v 0000 + 13286099 n 0101 + 07565725 n 0101 + 01084932 n 0101 01 + 08 00 | restrict the consumption of a relatively scarce commodity, as during war; "Bread was rationed during the siege of the city" -02235229 40 v 04 surrender 0 cede 0 deliver 2 give_up 1 007 @ 02200686 v 0000 + 00213052 n 0201 + 00213343 n 0101 + 10679998 n 0101 ~ 02235549 v 0000 ~ 02235666 v 0000 ~ 02343816 v 0000 02 + 08 00 + 15 00 | relinquish possession or control over; "The squatters had to surrender the building after the police moved in" -02235549 40 v 01 yield_up 0 001 @ 02235229 v 0000 02 + 08 00 + 09 00 | surrender, as a result of pressure or force -02235666 40 v 01 sell 2 002 @ 02235229 v 0000 $ 02537407 v 0000 03 + 08 00 + 14 00 + 15 00 | give up for a price or reward; "She sold her principles for a successful career" -02235842 40 v 01 give 7 005 @ 01009240 v 0000 + 06685198 n 0101 ~ 01023925 v 0000 ~ 02236023 v 0000 $ 02296153 v 0000 01 + 08 00 | convey or reveal information; "Give one's name" -02236023 40 v 01 cast d 001 @ 02235842 v 0000 01 + 08 00 | deposit; "cast a vote"; "cast a ballot" -02236124 40 v 03 accept 0 take 5 have 5 014 $ 02210119 v 0000 @ 02210855 v 0000 + 10689784 n 0201 ^ 02216560 v 0202 ^ 02301825 v 0202 ^ 02346724 v 0204 ^ 02656995 v 0201 + 00180413 n 0103 + 00082525 n 0101 ! 02237338 v 0101 ~ 02236624 v 0000 ~ 02237206 v 0000 ~ 02237631 v 0000 ~ 02346724 v 0000 03 + 08 00 + 09 00 + 16 00 | receive willingly something given or offered; "The only girl who would have him was the miller's daughter"; "I won't have this dog in my house!"; "Please accept my present" -02236624 40 v 04 accept 3 admit 0 take 7 take_on 0 003 @ 02236124 v 0000 ~ 00888657 v 0000 $ 02449847 v 0000 02 + 09 00 + 10 00 | admit into a group or community; "accept students for graduate study"; "We'll have to vote on whether or not to admit a new member" -02236888 40 v 01 refuel 0 002 @ 02237024 v 0000 + 01059719 n 0102 02 + 01 00 + 02 00 | take on more fuel, as of a plane, ship, or car -02237024 40 v 01 fuel 3 004 @ 01540844 v 0000 + 14875077 n 0101 + 01059719 n 0101 ~ 02236888 v 0000 02 + 01 00 + 04 00 | take in fuel, as of a ship; "The tanker fueled in Bahrain" -02237206 40 v 01 welcome 0 002 @ 02236124 v 0000 + 06631322 n 0101 02 + 08 00 + 09 00 | accept gladly; "I welcome your proposals" -02237338 40 v 05 refuse 0 reject 0 pass_up 0 turn_down 0 decline 0 008 + 06634239 n 0501 + 00205349 n 0402 + 00203342 n 0201 + 06634095 n 0101 ! 02236124 v 0101 $ 00796976 v 0000 ~ 02237943 v 0000 ~ 02254767 v 0000 02 + 08 00 + 16 00 | refuse to accept; "He refused my offer of hospitality" -02237631 40 v 02 honor 0 honour 0 003 @ 02236124 v 0000 + 14436875 n 0101 ! 02237943 v 0101 01 + 08 00 | accept as pay; "we honor checks and drafts" -02237782 40 v 02 put_up 1 contribute 2 002 @ 02251743 v 0000 + 01089778 n 0201 02 + 08 00 + 11 00 | provide; "The city has to put up half the required amount" -02237943 40 v 02 dishonor 0 dishonour 0 002 @ 02237338 v 0000 ! 02237631 v 0101 01 + 08 00 | refuse to accept; "dishonor checks and drafts" -02238085 40 v 01 obtain 0 019 @ 02210855 v 0000 + 00184363 a 0103 + 00077856 n 0102 + 00077856 n 0101 ~ 01101571 v 0000 ~ 01313923 v 0000 ~ 01630751 v 0000 ~ 02206140 v 0000 ~ 02238536 v 0000 ~ 02238770 v 0000 ~ 02239098 v 0000 ~ 02239261 v 0000 ~ 02239405 v 0000 ~ 02239846 v 0000 ~ 02270404 v 0000 ~ 02292125 v 0000 ~ 02325968 v 0000 ~ 02353088 v 0000 ~ 02358217 v 0000 02 + 08 00 + 16 00 | come into possession of; "How did you obtain the visa?" -02238536 40 v 01 source 0 003 @ 02238085 v 0000 + 04263614 n 0101 ~ 02361100 v 0000 02 + 01 00 + 08 00 | get (a product) from another country or business; "She sourced a supply of carpet"; "They are sourcing from smaller companies" -02238770 40 v 02 procure 0 secure 0 010 @ 02238085 v 0000 + 10479328 n 0202 + 00083729 n 0101 + 10479328 n 0101 + 00083729 n 0102 + 00083729 n 0103 ~ 00835158 v 0000 ~ 02239533 v 0000 ~ 02239692 v 0000 ~ 02240151 v 0000 02 + 08 00 + 16 00 | get by special effort; "He procured extra cigarettes even though they were rationed" -02239098 40 v 01 extract 0 001 @ 02238085 v 0000 01 + 08 00 | get despite difficulties or obstacles; "I extracted a promise from the Dean for two new positions" -02239261 40 v 01 take_out 2 001 @ 02238085 v 0000 01 + 08 00 | obtain by legal or official process; "take out a license"; "take out a patent" -02239405 40 v 02 get_in 1 get_into 0 001 @ 02238085 v 0000 02 + 02 00 + 08 02 | secure a place in a college, university, etc. -02239533 40 v 01 copyright 0 002 @ 02238770 v 0000 + 06473168 n 0101 01 + 08 00 | secure a copyright on a written work; "did you copyright your manuscript?" -02239692 40 v 01 patent 0 003 @ 02238770 v 0000 + 06501141 n 0101 + 10405410 n 0101 01 + 08 00 | obtain a patent for; "Should I patent this invention?" -02239846 40 v 02 eke_out 0 squeeze_out 0 001 @ 02238085 v 0000 01 + 22 00 | obtain with difficulty; "He eked out some information from the archives" -02239997 40 v 02 eke_out 1 squeeze_out 1 001 @ 02289295 v 0000 01 + 08 00 | make by laborious and precarious means; "He eked out a living as a painter" -02240151 40 v 02 engage 1 enlist 0 002 @ 02238770 v 0000 ~ 02240319 v 0000 02 + 08 00 + 16 00 | hire for work or assistance; "engage aid, help, services, or support" -02240319 40 v 01 recruit 0 002 @ 02240151 v 0000 + 01263711 n 0101 02 + 08 00 + 09 00 | seek to employ; "The lab director recruited an able crew of assistants" -02240481 40 v 01 seek 0 004 @ 01825237 v 0000 + 00788362 n 0101 ~ 02240674 v 0000 ~ 02240881 v 0000 01 + 08 00 | try to get or reach; "seek a position"; "seek an education"; "seek happiness" -02240674 40 v 01 bid 4 003 @ 02240481 v 0000 + 07165086 n 0101 + 00786887 n 0101 02 + 08 00 + 11 00 | make a serious effort to attain something; "His campaign bid for the attention of the poor population" -02240881 40 v 01 quest 0 003 @ 02240481 v 0000 + 00946650 n 0101 + 10575787 n 0103 02 + 01 00 + 02 00 | make a search (for); "Things that die with their eyes open and questing"; "The animal came questing through the forest" -02241107 40 v 05 extort 0 squeeze 3 rack 0 gouge 0 wring 0 006 @ 02319050 v 0000 + 09955015 n 0405 + 00788097 n 0203 + 13307901 n 0101 + 00784388 n 0101 ~ 02360003 v 0000 01 + 16 00 | obtain by coercion or intimidation; "They extorted money from the executive by threatening to reveal his past to the company boss"; "They squeezed money from the owner of the business by threatening him" -02241497 40 v 01 gazump 1 001 @ 02573275 v 0000 01 + 09 00 | raise the price of something after agreeing on a lower price -02241621 40 v 01 extort 1 004 @ 02206619 v 0000 ;c 00766234 n 0000 + 01061726 n 0101 ~ 02241767 v 0000 01 + 16 00 | obtain through intimidation -02241767 40 v 01 blackmail 0 004 @ 02241621 v 0000 ;c 00766234 n 0000 + 00784598 n 0101 + 09858299 n 0101 01 + 09 00 | obtain through threats -02241911 40 v 01 scalp 0 003 @ 02242464 v 0000 ;c 00766234 n 0000 + 10554846 n 0101 01 + 08 00 | sell illegally, as on the black market -02242049 40 v 01 bootleg 0 004 @ 02242464 v 0000 ;c 00766234 n 0000 + 07902520 n 0102 + 09866922 n 0101 02 + 02 00 + 08 00 | sell illicit products such as drugs or alcohol; "They were bootlegging whiskey" -02242256 40 v 02 run 6 black_market 0 006 $ 01864038 v 0000 @ 02260362 v 0000 ;c 00766234 n 0000 + 08425173 n 0201 + 01097739 n 0201 + 00308871 n 0101 01 + 08 00 | deal in illegally, such as arms or liquor -02242464 40 v 01 sell 0 029 * 02199590 v 0000 @ 02257370 v 0000 ;c 01090446 n 0000 + 01115162 n 0101 + 10577284 n 0101 + 01113068 n 0101 ! 02207206 v 0101 ~ 02208409 v 0000 ~ 02221328 v 0000 ~ 02241911 v 0000 ~ 02242049 v 0000 ~ 02243186 v 0000 ~ 02243461 v 0000 ~ 02243630 v 0000 ~ 02243758 v 0000 ~ 02243967 v 0000 ~ 02244248 v 0000 ~ 02244426 v 0000 ~ 02244603 v 0000 ~ 02244773 v 0000 ~ 02247028 v 0000 ~ 02247226 v 0000 ~ 02343961 v 0000 ~ 02350878 v 0000 ~ 02351467 v 0000 ~ 02354922 v 0000 ~ 02355959 v 0000 ~ 02554066 v 0000 $ 02727883 v 0000 03 + 08 00 + 14 00 + 15 00 | exchange or deliver for money or its equivalent; "He sold his house in January"; "She sells her body to survive and support her drug habit" -02243186 40 v 01 sell_short 0 002 @ 02242464 v 0000 ;c 01090446 n 0000 02 + 02 00 + 08 00 | sell securities or commodities or foreign currency that is not actually owned by the seller, who hopes to cover (buy back) the sold items at a lower price and thus to earn a profit -02243461 40 v 01 remainder 0 003 @ 02242464 v 0000 ;c 01090446 n 0000 + 13810818 n 0101 01 + 08 00 | sell cheaply as remainders; "The publisher remaindered the books" -02243630 40 v 01 resell 0 002 @ 02242464 v 0000 ;c 01090446 n 0000 01 + 08 00 | sell (something) again after having bought it -02243758 40 v 01 syndicate 0 003 @ 02242464 v 0000 + 08355324 n 0101 + 01115348 n 0101 01 + 08 00 | sell articles, television programs, or photos to several publications or independent broadcasting stations -02243967 40 v 01 deaccession 0 003 @ 02242464 v 0000 ;c 00933420 n 0000 ;c 01090446 n 0000 01 + 08 00 | sell (art works) from a collection, especially in order to raise money for the purchase of other art works; "The museum deaccessioned several important works of this painter" -02244248 40 v 01 sell_off 0 002 @ 02242464 v 0000 + 01119949 n 0101 01 + 08 00 | get rid of by selling, usually at reduced prices; "The store sold off the surplus merchandise" -02244426 40 v 03 foist_off 0 palm_off 0 fob_off 0 003 @ 02242464 v 0000 ;c 00766234 n 0000 ;c 01090446 n 0000 01 + 19 00 | sell as genuine, sell with the intention to deceive -02244603 40 v 02 realize 0 realise 0 004 @ 02242464 v 0000 ;c 01090446 n 0000 + 01119620 n 0202 + 01119620 n 0101 01 + 08 00 | convert into cash; of goods and property -02244773 40 v 03 auction 0 auction_off 0 auctioneer 0 005 @ 02242464 v 0000 ;c 01090446 n 0000 + 09608377 n 0301 + 00092366 n 0101 + 09608377 n 0101 01 + 08 00 | sell at an auction -02244956 40 v 03 deal 0 sell 1 trade b 024 @ 02245765 v 0000 ;c 01090446 n 0000 + 01110274 n 0302 + 01091905 n 0301 + 00079398 n 0301 + 01115162 n 0201 + 10577284 n 0201 + 01113068 n 0201 + 10474446 n 0102 + 01110274 n 0101 + 10720453 n 0103 + 08063446 n 0101 + 01106808 n 0103 + 01106808 n 0102 ^ 02294436 v 0109 ^ 02260362 v 0101 ~ 02245555 v 0000 $ 02245993 v 0000 ~ 02245993 v 0000 ~ 02246166 v 0000 ~ 02246300 v 0000 ~ 02298471 v 0000 ~ 02302817 v 0000 $ 02727883 v 0000 02 + 08 00 + 22 00 | do business; offer for sale as for one's livelihood; "She deals in gold"; "The brothers sell shoes" -02245555 40 v 01 push 0 003 @ 02244956 v 0000 ;c 00766234 n 0000 + 10495555 n 0101 01 + 08 00 | sell or promote the sale of (illegal goods such as drugs); "The guy hanging around the school is pushing drugs" -02245765 40 v 01 transact e 007 @ 02376958 v 0000 ;c 01090446 n 0000 + 01106808 n 0101 + 10723597 n 0101 ~ 02244956 v 0000 ~ 02261256 v 0000 ~ 02343374 v 0000 01 + 22 00 | conduct business; "transact with foreign governments" -02245993 40 v 01 deal b 006 $ 02244956 v 0000 @ 02244956 v 0000 ;c 01090446 n 0000 + 08063446 n 0101 + 01110274 n 0101 + 10721470 n 0101 01 + 08 00 | sell; "deal hashish" -02246166 40 v 01 black_marketeer 0 003 @ 02244956 v 0000 ;c 00766234 n 0000 + 09858560 n 0101 01 + 02 00 | deal on the black market -02246300 40 v 01 pyramid 1 002 @ 02244956 v 0000 ;c 00766234 n 0000 01 + 08 00 | use or deal in (as of stock or commercial transaction) in a pyramid deal -02246456 40 v 01 deal 2 007 @ 02294436 v 0000 ;c 00488225 n 0000 + 01085337 n 0101 + 07956887 n 0102 + 09996636 n 0101 $ 02246686 v 0000 ~ 02246908 v 0000 01 + 02 00 | distribute cards to the players in a game; "Who's dealing?" -02246686 40 v 01 deal 6 006 $ 02246456 v 0000 @ 02230772 v 0000 ;c 00488225 n 0000 + 09996636 n 0101 + 07956887 n 0102 + 01085337 n 0101 01 + 15 00 | give (a specific card) to a player; "He dealt me the Queen of Spades" -02246908 40 v 01 misdeal 0 003 @ 02246456 v 0000 ;c 00488225 n 0000 + 01085567 n 0101 01 + 08 00 | deal cards wrongly -02247028 40 v 01 retail 0 007 @ 02242464 v 0000 ;c 01090446 n 0000 + 10525436 n 0101 + 01114458 n 0101 + 01115866 n 0101 ! 02247226 v 0101 $ 02728570 v 0000 01 + 08 00 | sell on the retail market -02247226 40 v 01 wholesale 0 005 @ 02242464 v 0000 ;c 01090446 n 0000 + 01114646 n 0101 + 10222497 n 0103 ! 02247028 v 0101 01 + 08 00 | sell in large quantities -02247390 40 v 03 fetch 0 bring_in 0 bring 0 001 * 02221959 v 0000 01 + 11 00 | be sold for a certain price; "The painting brought $10,000"; "The old print fetched a high price at the auction" -02247584 40 v 03 sell_out 0 sell_up 0 liquidize 0 003 * 02242464 v 0000 @ 02222318 v 0000 ;c 01090446 n 0000 02 + 02 00 + 08 00 | get rid of all one's merchandise -02247749 40 v 01 de-access 0 001 @ 02222318 v 0000 01 + 08 00 | dispose of by selling; "the museum sold off its collection of French impressionists to raise money"; "the publishing house sold off one of its popular magazines" -02247977 40 v 04 recover 0 retrieve 0 find f regain 0 007 @ 02210855 v 0000 + 00089351 n 0404 + 00045907 n 0202 + 10522759 n 0102 + 00045907 n 0101 ~ 02248808 v 0000 $ 02285629 v 0000 02 + 08 00 + 16 00 | get or find back; recover the use of; "She regained control of herself"; "She found her voice and replied quickly" -02248299 40 v 01 catch 0 001 @ 02210855 v 0000 01 + 08 00 | get or regain something necessary, usually quickly or briefly; "Catch some sleep"; "catch one's breath" -02248465 40 v 05 find 2 happen c chance c bump c encounter 0 003 + 07414922 n 0502 + 00043195 n 0102 + 10090498 n 0101 01 + 08 00 | come upon, as if by accident; meet with; "We find this idea in Plato"; "I happened upon the most wonderful bakery not very far from here"; "She chanced upon an interesting book in the bookstore the other day" -02248808 40 v 01 access 0 005 @ 02247977 v 0000 ;c 06128570 n 0000 + 02671224 n 0101 ~ 02249018 v 0000 ~ 02249147 v 0000 01 + 08 00 | obtain or retrieve from a storage device; as of information on a computer -02249018 40 v 01 address 0 003 @ 02248808 v 0000 ;c 06128570 n 0000 + 06356515 n 0101 01 + 08 00 | access or locate by address -02249147 40 v 03 log_in 0 log_on 0 log-in 0 002 @ 02248808 v 0000 ! 02249293 v 0101 01 + 02 00 | enter a computer; "Have you logged in lately?" -02249293 40 v 02 log_out 0 log_off 0 002 @ 02015598 v 0000 ! 02249147 v 0101 01 + 02 00 | exit a computer; "Please log off before you go home" -02249438 40 v 03 recover 1 recoup 0 recuperate 0 002 @ 02210855 v 0000 ~ 02520730 v 0000 01 + 08 00 | regain or make up for; "recuperate one's losses" -02249591 40 v 02 recoup 2 reimburse 1 002 @ 02249741 v 0000 + 13290002 n 0201 02 + 09 00 + 20 00 | reimburse or compensate (someone), as for a loss -02249741 40 v 03 compensate 0 recompense 0 remunerate 0 011 @ 02251743 v 0000 + 01871774 a 0303 + 01708663 a 0303 + 13279262 n 0304 + 01121855 n 0301 + 10409752 n 0302 + 00259643 n 0201 + 13282007 n 0201 + 13282550 n 0101 + 00259643 n 0102 ~ 02249591 v 0000 01 + 09 00 | make payment to; compensate; "My efforts were not remunerated" -02250077 40 v 01 overpay 0 004 @ 02251743 v 0000 + 13279046 n 0101 + 01121390 n 0101 ! 02250216 v 0101 02 + 09 00 + 22 00 | pay too much -02250216 40 v 01 underpay 0 003 @ 02251743 v 0000 + 01122488 n 0101 ! 02250077 v 0101 02 + 09 00 + 22 00 | pay too little -02250340 40 v 01 prepay 0 002 @ 02251743 v 0000 + 01121492 n 0101 02 + 02 00 + 08 00 | pay for something before receiving it -02250467 40 v 01 go_Dutch 0 001 @ 02251743 v 0000 01 + 02 00 | share expenses equally and split the cost of something; "My boyfriend and I always go Dutch" -02250625 40 v 04 compensate 1 recompense 1 repair 0 indemnify 0 009 @ 02251743 v 0000 + 13290676 n 0404 + 00259894 n 0401 + 13290676 n 0403 + 13292613 n 0301 + 00095329 n 0301 + 13282550 n 0101 + 00259643 n 0102 ~ 02359553 v 0000 02 + 08 00 + 15 00 | make amends for; pay compensation for; "One can never fully repair the suffering and losses of the Jews in the Third Reich"; "She was compensated for the loss of her arm in the accident" -02251065 40 v 01 insure 0 005 @ 01128193 v 0000 + 14539826 n 0102 ~ 00891734 v 0000 ~ 02251509 v 0000 ~ 02251631 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take out insurance for -02251247 40 v 01 indemnify 1 003 @ 00891216 v 0000 + 14539826 n 0101 + 14529408 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | secure against future loss, damage, or liability; give security for; "This plan indemnifies workers against wages lost through illness" -02251509 40 v 01 reinsure 0 001 @ 02251065 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | provide additional insurance for -02251631 40 v 01 coinsure 0 002 @ 02251065 v 0000 + 13346209 n 0101 02 + 08 00 + 09 00 | take out coinsurance -02251743 40 v 01 pay 0 033 @ 02199590 v 0000 + 13279262 n 0102 + 13278375 n 0101 + 01120448 n 0101 + 10409634 n 0101 + 10409752 n 0101 ^ 02215506 v 0101 ^ 02352019 v 0102 ^ 02256853 v 0102 ^ 02284803 v 0102 ^ 02301502 v 0102 ~ 02217011 v 0000 ~ 02217266 v 0000 ~ 02237782 v 0000 ~ 02249741 v 0000 ~ 02250077 v 0000 ~ 02250216 v 0000 ~ 02250340 v 0000 ~ 02250467 v 0000 ~ 02250625 v 0000 ~ 02252542 v 0000 ~ 02255081 v 0000 ~ 02256853 v 0000 ~ 02267060 v 0000 ~ 02284096 v 0000 ~ 02284951 v 0000 ~ 02287209 v 0000 ~ 02301502 v 0000 ~ 02317289 v 0000 ~ 02317548 v 0000 ~ 02349945 v 0000 ~ 02355259 v 0000 ~ 02400251 v 0000 06 + 02 00 + 08 00 + 09 00 + 14 00 + 15 00 + 17 00 | give money, usually in exchange for goods or services; "I paid four dollars for this sandwich"; "Pay the waitress, please" -02252542 40 v 01 tithe 2 003 @ 02251743 v 0000 + 10713012 n 0101 $ 02252755 v 0000 01 + 02 00 | pay a tenth of one's income, especially to the church; "Although she left the church officially, she still tithes" -02252755 40 v 01 tithe 3 002 $ 02252542 v 0000 + 10713012 n 0101 01 + 08 00 | pay one tenth of; pay tithes on, especially to the church; "He tithed his income to the Church" -02252931 40 v 03 pay_up 0 ante_up 0 pay 4 006 @ 02253154 v 0000 + 13279262 n 0302 + 13278375 n 0301 + 01120448 n 0301 ! 02253766 v 0101 ~ 02352019 v 0000 02 + 02 00 + 08 00 | cancel or discharge a debt; "pay up, please!" -02253154 40 v 01 pay e 005 @ 02254258 v 0000 + 13278375 n 0101 + 01120448 n 0101 + 10409752 n 0101 ~ 02252931 v 0000 01 + 08 00 | discharge or settle; "pay a debt"; "pay an obligation" -02253341 40 v 01 square 0 001 @ 02254258 v 0000 01 + 22 00 | pay someone and settle a debt; "I squared with him" -02253456 40 v 04 pay 2 pay_off 4 make_up 0 compensate 2 008 @ 02254258 v 0000 + 13282550 n 0401 + 00259643 n 0402 + 13279262 n 0102 + 10409634 n 0101 + 10409752 n 0101 ^ 01153947 v 0101 ^ 01153947 v 0102 01 + 20 00 | do or give something to somebody in return; "Does she pay you for the work you are doing?" -02253766 40 v 02 default 0 default_on 0 006 * 02253956 v 0000 @ 02529284 v 0000 + 13300141 n 0102 + 13300411 n 0101 + 09999532 n 0101 ! 02252931 v 0101 02 + 02 00 + 22 00 | fail to pay up -02253956 40 v 01 owe 0 002 @ 02604760 v 0000 ~ 02351737 v 0000 04 + 02 00 + 08 00 + 11 00 + 15 01 | be in debt; "She owes me $200"; "I still owe for the car"; "The thesis owes much to his adviser" -02254155 40 v 01 owe 1 001 ~ 02321245 v 0000 03 + 08 00 + 14 00 + 15 00 | be obliged to pay or repay -02254258 40 v 01 settle 0 008 @ 01021629 v 0000 + 00228535 n 0102 ~ 00639331 v 0000 ~ 02253154 v 0000 ~ 02253341 v 0000 ~ 02253456 v 0000 ~ 02254495 v 0000 ~ 02254671 v 0000 02 + 02 00 + 22 00 | dispose of; make a financial settlement -02254495 40 v 01 liquidate 3 001 @ 02254258 v 0000 01 + 08 00 | settle the affairs of by determining the debts and applying the assets to pay them off; "liquidate a company" -02254671 40 v 01 clean_up 0 001 @ 02254258 v 0000 01 + 08 00 | dispose of; "settle the bills" -02254767 40 v 01 bounce 1 003 > 02254923 v 0000 @ 02237338 v 0000 $ 02254923 v 0000 02 + 08 00 + 11 00 | refuse to accept and send back; "bounce a check" -02254923 40 v 01 bounce 0 003 $ 02254767 v 0000 @ 02004874 v 0000 ! 02289134 v 0101 02 + 01 00 + 04 00 | come back after being refused; "the check bounced" -02255081 40 v 01 remit 0 005 @ 02251743 v 0000 * 02220461 v 0000 + 13299453 n 0104 + 13299453 n 0101 + 13299453 n 0102 03 + 08 00 + 14 00 + 15 00 | send (money) in payment; "remit $25" -02255268 40 v 03 accord 0 allot 0 grant 0 005 @ 02199590 v 0000 + 05176477 n 0301 + 01086572 n 0101 ~ 01069638 v 0000 ~ 02477011 v 0000 02 + 14 00 + 15 00 | allow to have; "grant a privilege" -02255462 40 v 02 allow 0 grant 1 007 @ 02199590 v 0000 + 10143725 n 0201 + 05176477 n 0201 ! 02212825 v 0101 $ 00802318 v 0000 ~ 02255715 v 0000 ~ 02255821 v 0000 01 + 14 00 | let have; "grant permission"; "Mandela was allowed few visitors in prison" -02255715 40 v 01 vouchsafe 0 001 @ 02255462 v 0000 02 + 08 00 + 14 00 | grant in a condescending manner -02255821 40 v 01 allowance 0 002 @ 02255462 v 0000 + 13286254 n 0101 01 + 14 00 | put on a fixed allowance, as of food -02255942 40 v 02 grant 2 deed_over 0 004 @ 02200686 v 0000 + 13254237 n 0101 + 10143595 n 0101 + 10143889 n 0101 02 + 08 00 + 15 00 | transfer by deed; "grant land" -02256109 40 v 04 prize 0 value 0 treasure 0 appreciate 0 007 @ 00690614 v 0000 + 00774676 a 0401 + 13370448 n 0301 + 02587738 a 0201 + 02500884 a 0201 ~ 00592544 v 0000 ~ 02546467 v 0000 01 + 08 00 | hold dear; "I prize these old photographs" -02256354 40 v 02 cash 0 cash_in 0 006 @ 02257370 v 0000 + 00916965 a 0101 + 13386614 n 0101 ^ 02279513 v 0101 ~ 02256589 v 0000 ~ 02256732 v 0000 01 + 08 00 | exchange for cash; "I cashed the check as soon as it arrived in the mail" -02256589 40 v 01 liquidate 2 001 @ 02256354 v 0000 01 + 08 00 | convert into cash; "I had to liquidate my holdings to pay off my ex-husband" -02256732 40 v 01 redeem 0 002 @ 02256354 v 0000 + 10513623 n 0101 01 + 09 00 | convert into cash; of commercial papers -02256853 40 v 02 redeem 1 pay_off 3 003 @ 02251743 v 0000 + 13299804 n 0101 + 10513623 n 0101 01 + 08 00 | pay off (loans or promissory notes) -02256998 40 v 02 ransom 0 redeem 3 007 @ 02257370 v 0000 ;c 00766234 n 0000 + 00079212 n 0201 + 10513623 n 0201 + 00096851 n 0101 + 01121585 n 0101 + 13284048 n 0101 02 + 08 00 + 09 00 | exchange or buy back for money; under threat -02257232 40 v 01 redeem 4 001 @ 02257370 v 0000 02 + 08 00 + 09 00 | to turn in (vouchers or coupons) and receive something in exchange -02257370 40 v 03 exchange 0 change 0 interchange 0 011 @ 02220461 v 0000 + 00040152 n 0301 + 01109467 n 0101 ~ 02242464 v 0000 ~ 02256354 v 0000 ~ 02256998 v 0000 ~ 02257232 v 0000 ~ 02258617 v 0000 ~ 02259005 v 0000 ~ 02259241 v 0000 ~ 02260085 v 0000 02 + 08 00 + 21 00 | give to, and receive from, one another; "Would you change places with me?"; "We have been exchanging letters for a year" -02257767 40 v 04 substitute 0 replace 0 interchange 1 exchange 2 010 @ 00126264 v 0000 + 00197772 n 0201 + 05696425 n 0101 + 07443761 n 0101 + 00196485 n 0101 ~ 00548913 v 0000 ~ 02258291 v 0000 ~ 02258487 v 0000 ~ 02338109 v 0000 ~ 02360882 v 0000 03 + 08 00 + 21 00 + 31 00 | put in the place of another; switch seemingly equivalent items; "the con artist replaced the original with a fake Rembrandt"; "substitute regular milk with fat-free milk"; "synonyms can be interchanged without a changing the context's meaning" -02258291 40 v 01 reduce 4 003 @ 02257767 v 0000 ;c 06000644 n 0000 + 00883611 a 0101 01 + 08 00 | simplify the form of a mathematical equation of expression by substituting one term for another -02258487 40 v 01 truncate 0 003 @ 02257767 v 0000 ;c 06004685 n 0000 + 00942574 n 0101 01 + 08 00 | replace a corner by a plane -02258617 40 v 04 substitute 1 sub 0 stand_in 0 fill_in 0 009 @ 02257370 v 0000 + 10648237 n 0407 + 10648237 n 0301 + 00623670 n 0201 + 10648237 n 0102 + 10671042 n 0101 + 05696425 n 0101 + 07443761 n 0101 + 00623670 n 0102 02 + 02 00 + 22 00 | be a substitute; "The young teacher had to substitute for the sick colleague"; "The skim milk substitutes for cream--we are on a strict diet" -02259005 40 v 04 trade 2 swap 0 swop 0 switch 0 006 @ 02257370 v 0000 + 07443761 n 0405 + 00196084 n 0402 + 01109687 n 0303 + 01109687 n 0202 + 01109687 n 0104 03 + 02 00 + 08 00 + 21 00 | exchange or give (something) in exchange for -02259241 40 v 01 barter 0 003 @ 02257370 v 0000 + 09841400 n 0101 + 01109687 n 0101 02 + 02 00 + 22 00 | exchange goods without involving money -02259387 40 v 02 beat_down 0 bargain_down 0 001 @ 02259547 v 0000 01 + 09 00 | persuade the seller to accept a lower price; "She beat the merchant down $100" -02259547 40 v 04 haggle 0 higgle 0 chaffer 0 huckster 1 006 @ 02259829 v 0000 + 10190516 n 0401 + 10155600 n 0101 + 07150138 n 0102 + 07150138 n 0101 ~ 02259387 v 0000 02 + 02 00 + 22 00 | wrangle (over a price, terms of an agreement, etc.); "Let's not haggle over a few dollars" -02259829 40 v 02 dicker 0 bargain 0 006 @ 00761713 v 0000 + 13253751 n 0201 + 06771159 n 0201 + 09839167 n 0201 + 07149836 n 0201 ~ 02259547 v 0000 02 + 02 00 + 22 00 | negotiate the terms of an exchange; "We bargained for a beautiful rug in the bazaar" -02260085 40 v 02 trade 0 trade_in 0 007 @ 02257370 v 0000 ;c 01090446 n 0000 + 13248792 n 0201 + 01110274 n 0102 + 01109687 n 0104 + 01091905 n 0101 ~ 02294056 v 0000 02 + 08 00 + 21 00 | turn in as payment or part payment for a purchase; "trade in an old car for a new one" -02260362 40 v 02 trade 1 merchandise 0 016 * 02207206 v 0000 * 02242464 v 0000 ;c 01090446 n 0000 + 10309896 n 0202 + 01113068 n 0202 + 03748886 n 0201 + 01110274 n 0102 + 01091905 n 0101 + 10720453 n 0101 ~ 02242256 v 0000 ~ 02260770 v 0000 ~ 02260959 v 0000 ~ 02261123 v 0000 ~ 02298160 v 0000 ~ 02346136 v 0000 ~ 02346409 v 0000 01 + 08 00 | engage in the trade of; "he is merchandising telephone sets" -02260770 40 v 01 traffic 1 004 @ 02260362 v 0000 ;c 01090446 n 0000 + 01113867 n 0101 + 10577284 n 0105 02 + 02 00 + 21 00 | trade or deal a commodity; "They trafficked with us for gold" -02260959 40 v 01 arbitrage 0 004 @ 02260362 v 0000 ;c 01090446 n 0000 + 09803800 n 0102 + 01093965 n 0101 01 + 02 00 | practice arbitrage, as in the stock market -02261123 40 v 01 traffic 0 003 @ 02260362 v 0000 ;c 00766234 n 0000 + 01113867 n 0101 01 + 08 00 | deal illegally; "traffic drugs" -02261256 40 v 01 turn_over 1 003 @ 02245765 v 0000 ;c 01090446 n 0000 + 05112308 n 0102 02 + 08 00 + 11 00 | do business worth a certain amount of money; "The company turns over ten million dollars a year" -02261464 40 v 01 broker 0 006 @ 00761713 v 0000 ;c 01090446 n 0000 + 08057460 n 0101 + 08069878 n 0101 + 02905288 n 0102 + 09777012 n 0103 02 + 02 00 + 08 00 | act as a broker -02261642 40 v 01 treat 0 003 $ 01176232 v 0000 @ 02200686 v 0000 + 07289358 n 0101 01 + 09 00 | provide with a gift or entertainment; "Grandmother always treated us to the circus"; "I like to treat myself to a day at a spa when I am depressed" -02261888 40 v 02 award 0 present 2 006 @ 02234087 v 0000 + 01048697 n 0201 + 13268146 n 0102 + 06696483 n 0101 ~ 02262139 v 0000 ~ 02263346 v 0000 02 + 14 00 + 15 00 | give, especially as an honor or reward; "bestow honors and prizes at graduation" -02262139 40 v 01 certificate 0 003 @ 02261888 v 0000 + 13416345 n 0102 + 06471345 n 0101 01 + 09 00 | present someone with a certificate -02262278 40 v 02 award 1 grant 3 004 @ 02316868 v 0000 + 13266892 n 0201 + 10143595 n 0201 ~ 02262601 v 0000 02 + 14 00 + 15 00 | give as judged due or on the basis of merit; "the referee awarded a free kick to the team"; "the jury awarded a million dollars to the plaintiff";"Funds are granted to qualified researchers" -02262601 40 v 02 pension 0 pension_off 1 004 @ 02262278 v 0000 + 10414612 n 0102 + 10414612 n 0101 + 13384164 n 0101 01 + 09 00 | grant a pension to -02262752 40 v 02 present 1 submit 0 005 @ 02199590 v 0000 + 13268842 n 0101 + 01048697 n 0101 + 10466387 n 0101 ~ 02262932 v 0000 03 + 08 00 + 15 00 + 17 00 | hand over formally -02262932 40 v 01 bring_in 3 001 @ 02262752 v 0000 01 + 08 00 | submit (a verdict) to a court -02263027 40 v 01 donate 0 004 @ 02200686 v 0000 + 13270038 n 0102 + 01089778 n 0102 ~ 02299269 v 0000 03 + 08 00 + 15 00 + 22 00 | give to a charity or good cause; "I donated blood to the Red Cross for the victims of the earthquake"; "donate money to the orphanage"; "She donates to her favorite charity every month" -02263346 40 v 02 confer 0 bestow 0 009 @ 02261888 v 0000 + 01086356 n 0202 + 01086356 n 0201 + 01086356 n 0104 + 09954081 n 0101 + 01086356 n 0103 ~ 02263958 v 0000 ~ 02264075 v 0000 ~ 02264179 v 0000 01 + 19 00 | present; "The university conferred a degree on its most famous former student, who never graduated"; "bestow an honor on someone" -02263692 40 v 01 bestow 2 002 @ 02199590 v 0000 + 13271937 n 0102 01 + 19 00 | give as a gift -02263788 40 v 01 heap 0 002 @ 02199590 v 0000 + 13774404 n 0107 02 + 17 00 + 19 00 | bestow in large quantities; "He heaped him with work"; "She heaped scorn upon him" -02263958 40 v 01 miter 0 002 @ 02263346 v 0000 + 03773970 n 0101 02 + 09 00 + 10 00 | confer a miter on (a bishop) -02264075 40 v 01 bless 0 001 @ 02263346 v 0000 02 + 09 00 + 10 00 | confer prosperity or happiness on -02264179 40 v 01 graduate 1 005 > 02264397 v 0000 @ 02263346 v 0000 + 07454758 n 0104 + 00212065 n 0101 + 09786338 n 0104 01 + 09 00 | confer an academic degree upon; "This school graduates 2,000 students each year" -02264397 40 v 01 graduate 0 004 @ 02210119 v 0000 + 07454758 n 0104 + 00212065 n 0101 + 09786338 n 0104 01 + 02 00 | receive an academic degree upon completion of one's studies; "She graduated in 1990" -02264601 40 v 02 lavish 0 shower 0 001 @ 01158181 v 0000 01 + 19 00 | expend profusely; also used with abstract nouns; "He was showered with praise" -02264752 40 v 01 credit 0 005 @ 02265231 v 0000 + 13405646 n 0101 + 09976728 n 0101 ! 02265560 v 0101 ~ 02217864 v 0000 03 + 08 00 + 15 00 + 17 00 | accounting: enter as credit; "We credit your account with $100" -02264967 40 v 01 balance 0 002 @ 02265231 v 0000 + 13408980 n 0101 01 + 08 00 | compute credits and debits of an account -02265090 40 v 01 overbalance 0 001 @ 02265231 v 0000 01 + 08 00 | cause to be off balance; "It is not desirable to overbalance the budget" -02265231 40 v 02 account 0 calculate 0 014 + 05802185 n 0201 + 00868910 n 0201 + 06516955 n 0102 + 09761403 n 0101 + 13405962 n 0101 + 13354985 n 0102 + 05662532 n 0101 + 00618734 n 0102 ~ 02264752 v 0000 ~ 02264967 v 0000 ~ 02265090 v 0000 ~ 02265560 v 0000 ~ 02265881 v 0000 ~ 02320374 v 0000 01 + 22 00 | keep an account of -02265560 40 v 01 debit 0 005 @ 02265231 v 0000 ;c 05662532 n 0000 + 13405807 n 0101 ! 02264752 v 0101 ~ 02321046 v 0000 03 + 08 00 + 15 00 + 17 00 | enter as debit -02265726 40 v 01 trust 1 002 @ 02324182 v 0000 ;c 01090446 n 0000 01 + 09 00 | extend credit to; "don't trust my ex-wife; I won't pay her debts anymore" -02265881 40 v 01 compound 0 001 @ 02265231 v 0000 01 + 08 00 | calculate principal and interest -02265979 40 v 03 save 1 lay_aside 0 save_up 0 002 + 13359572 n 0101 ~ 02305856 v 0000 02 + 08 00 + 02 01 | accumulate money for future use; "He saves half his salary" -02266148 40 v 01 blow 0 002 $ 02268351 v 0000 @ 02267060 v 0000 02 + 08 00 + 19 00 | spend lavishly or wastefully on; "He blew a lot of money on his new home theater" -02266317 40 v 01 overspend 0 002 @ 01158181 v 0000 ! 02266557 v 0101 01 + 02 00 | spend at a high rate -02266422 40 v 03 wanton 1 wanton_away 0 trifle_away 0 001 @ 02267060 v 0000 01 + 08 00 | spend wastefully; "wanton one's money away" -02266557 40 v 01 underspend 0 002 @ 02267060 v 0000 ! 02266317 v 0101 01 + 02 00 | spend at less than the normal rate -02266677 40 v 01 misspend 0 001 @ 02267060 v 0000 01 + 08 00 | spend (money or other resources) unwisely -02266784 40 v 02 penny-pinch 0 nickel-and-dime 0 001 @ 02267060 v 0000 01 + 02 00 | spend money frugally; spend as little as possible -02266920 40 v 01 save 2 003 * 02207206 v 0000 + 10553627 n 0101 ~ 02345498 v 0000 02 + 08 00 + 19 00 | spend less; buy at a reduced price -02267060 40 v 03 spend 0 expend 0 drop 0 021 @ 02251743 v 0000 + 00933154 a 0201 + 10635275 n 0203 + 13275288 n 0203 + 01122601 n 0202 + 01122601 n 0201 + 10635275 n 0101 + 01122149 n 0101 ~ 01157517 v 0000 ~ 01158181 v 0000 ~ 01192628 v 0000 ~ 02266148 v 0000 ~ 02266422 v 0000 ~ 02266557 v 0000 ~ 02266677 v 0000 ~ 02266784 v 0000 ~ 02271137 v 0000 ~ 02357228 v 0000 ~ 02366575 v 0000 ~ 02708123 v 0000 ~ 02708301 v 0000 02 + 08 00 + 19 00 | pay out; "spend money" -02267529 40 v 01 spend 1 005 @ 01157517 v 0000 + 10635460 n 0103 + 01122149 n 0101 ~ 02267727 v 0000 ~ 02267851 v 0000 02 + 08 00 + 19 00 | spend completely; "I spend my pocket money in two days" -02267727 40 v 01 overspend 1 002 @ 02267529 v 0000 ! 02267851 v 0101 01 + 08 00 | spend more than available of (a budget) -02267851 40 v 01 underspend 1 002 @ 02267529 v 0000 ! 02267727 v 0101 01 + 08 00 | spend less than the whole of (a budget, for example) -02267989 40 v 03 take 6 occupy 8 use_up 2 004 $ 01157517 v 0000 @ 01158572 v 0000 + 15141486 n 0201 ~ 02268246 v 0000 02 + 08 00 + 11 00 | require (time or space); "It took three hours to get to work this morning"; "This event occupied a very short time" -02268246 40 v 01 be 0 001 @ 02267989 v 0000 02 + 08 00 + 11 00 | spend or use time; "I may be an hour" -02268351 40 v 03 waste 0 blow 2 squander 1 008 @ 01158572 v 0000 + 10479561 n 0303 + 04894964 n 0102 + 00742645 n 0101 + 10769459 n 0102 ! 02269143 v 0101 $ 02266148 v 0000 ~ 02268881 v 0000 01 + 08 00 | spend thoughtlessly; throw away; "He wasted his inheritance on his insincere friends"; "You squandered the opportunity to get and advanced degree" -02268704 40 v 01 tighten_one's_belt 0 001 @ 02357228 v 0000 01 + 02 00 | live frugally and use less resources; "In the new economy, we all have to learn to tighten our belts" -02268881 40 v 01 burn 1 001 @ 02268351 v 0000 01 + 08 00 | spend (significant amounts of money); "He has money to burn" -02269003 40 v 02 splurge 0 fling 1 002 @ 01158181 v 0000 + 00510475 n 0202 02 + 02 00 + 22 00 | indulge oneself; "I splurged on a new TV" -02269143 40 v 04 conserve 0 husband 0 economize 0 economise 0 008 @ 02225492 v 0000 + 10044470 n 0402 + 10044470 n 0301 + 05644727 n 0301 + 04893787 n 0301 + 00192613 n 0301 ! 02268351 v 0101 ~ 02269767 v 0000 01 + 08 00 | use cautiously and frugally; "I try to economize my spare time"; "conserve your energy for the ascent to the summit" -02269485 40 v 02 rationalize 0 rationalise 0 003 @ 02432530 v 0000 + 01137760 n 0202 + 01137760 n 0101 01 + 08 00 | structure and run according to rational or scientific principles in order to achieve desired results; "We rationalized the factory's production and raised profits" -02269767 40 v 01 retrench 0 002 @ 02269143 v 0000 + 00192910 n 0101 01 + 02 00 | tighten one's belt; use resources carefully -02269894 40 v 02 scrounge 0 forage 0 005 @ 01143838 v 0000 + 00945916 n 0202 + 00945916 n 0201 + 10330189 n 0104 ~ 02270090 v 0000 03 + 01 00 + 02 00 + 22 00 | collect or look around for (food) -02270090 40 v 01 rustle 2 001 @ 02269894 v 0000 01 + 02 00 | forage food -02270165 40 v 04 schnorr 0 shnorr 0 scrounge 1 cadge 1 003 @ 02270815 v 0000 + 10330189 n 0403 + 10330189 n 0304 02 + 02 00 + 16 00 | obtain or seek to obtain by cadging or wheedling; "he is always shnorring cigarettes from his friends" -02270404 40 v 05 mooch 0 bum 0 cadge 0 grub 0 sponge 0 007 @ 02238085 v 0000 + 10252674 n 0503 + 10252674 n 0504 + 10330189 n 0303 + 10197967 n 0205 + 10330189 n 0101 ~ 02270648 v 0000 02 + 02 00 + 08 00 | ask for and get free; be a parasite -02270648 40 v 01 freeload 0 002 @ 02270404 v 0000 + 10110893 n 0101 01 + 02 00 | live off somebody's generosity; "This young man refuses to work and is freeloading" -02270815 40 v 01 beg 0 004 @ 00752764 v 0000 + 07187996 n 0101 ~ 02270165 v 0000 ~ 02270978 v 0000 02 + 02 00 + 20 00 | ask to obtain free; "beg money and food" -02270978 40 v 01 panhandle 0 002 @ 02270815 v 0000 + 10396337 n 0101 03 + 02 00 + 08 00 + 09 00 | beg by accosting people in the street and asking for money -02271137 40 v 04 invest 0 put 0 commit 5 place 3 013 @ 02267060 v 0000 + 01239868 n 0301 + 13333237 n 0101 + 01099436 n 0102 + 10216106 n 0101 + 01099436 n 0101 ! 02313906 v 0101 ~ 02215966 v 0000 ~ 02271490 v 0000 ~ 02271817 v 0000 ~ 02271923 v 0000 ~ 02272090 v 0000 ~ 02284544 v 0000 02 + 08 00 + 21 00 | make an investment; "Put money into bonds" -02271490 40 v 01 roll_over 0 002 @ 02271137 v 0000 + 01155722 n 0101 01 + 08 00 | re-invest (a previous investment) into a similar fund or security; "She rolled over her IRA" -02271667 40 v 01 roll_over 1 001 @ 00762043 v 0000 01 + 08 00 | negociate to repay a loan at a later date for an additional fee; "roll over a loan" -02271817 40 v 01 shelter 0 001 @ 02271137 v 0000 01 + 08 00 | invest (money) so that it is not taxable -02271923 40 v 01 tie_up 0 001 @ 02271137 v 0000 01 + 08 00 | invest so as to make unavailable for other purposes; "All my money is tied up in long-term investments" -02272090 40 v 02 speculate 0 job 0 005 @ 02271137 v 0000 + 02274537 a 0104 + 13342692 n 0101 + 10634075 n 0101 ~ 02272373 v 0000 02 + 02 00 + 22 00 | invest at a risk; "I bought this house not because I want to live in it but to sell it later at a good price, so I am speculating" -02272373 40 v 01 bull 0 004 @ 02272090 v 0000 ;c 01099436 n 0000 + 09878921 n 0101 $ 00156139 v 0000 01 + 08 00 | try to raise the price of stocks through speculative buying -02272549 40 v 04 appropriate 0 capture 0 seize 1 conquer 0 007 @ 02274482 v 0000 + 00089027 n 0402 + 00088481 n 0303 + 00088481 n 0201 + 02636123 a 0101 + 09802641 n 0101 ~ 02303878 v 0000 02 + 08 00 + 16 00 | take possession of by force, as after an invasion; "the invaders seized the land and property of the inhabitants"; "The army seized the town"; "The militia captured the castle" -02272938 40 v 01 reconquer 0 001 @ 02304013 v 0000 01 + 08 00 | conquer anew; "The country reconquered the territory lost in the previous war" -02273083 40 v 01 preoccupy 0 002 @ 02274482 v 0000 + 00087073 n 0102 01 + 08 00 | occupy or take possession of beforehand or before another or appropriate for use in advance; "the army preoccupied the hills" -02273293 40 v 05 impound 0 attach 0 sequester 0 confiscate 1 seize 2 011 @ 02205272 v 0000 + 00085219 n 0501 + 00085678 n 0401 + 00087218 n 0301 + 06554981 n 0201 + 00086297 n 0101 + 00086297 n 0102 ~ 02273768 v 0000 $ 02273922 v 0000 ~ 02274079 v 0000 ~ 02353664 v 0000 01 + 08 00 | take temporary possession of as a security, by legal authority; "The FBI seized the drugs"; "The customs agents impounded the illegal shipment"; "The police confiscated the stolen artwork" -02273768 40 v 01 condemn 0 001 @ 02273293 v 0000 01 + 08 00 | appropriate (property) for public use; "the county condemned the land to build a highway" -02273922 40 v 01 sequester 1 002 $ 02273293 v 0000 @ 02205272 v 0000 01 + 08 00 | requisition forcibly, as of enemy property; "the estate was sequestered" -02274079 40 v 02 garnishee 0 garnish 0 002 @ 02273293 v 0000 + 06557827 n 0201 01 + 08 00 | take a debtor's wages on legal orders, such as for child support; "His employer garnished his wages in order to pay his debt" -02274299 40 v 03 take_over 3 buy_out 0 buy_up 0 003 @ 02207206 v 0000 + 00789534 n 0201 + 00789906 n 0101 02 + 08 00 + 11 00 | take over ownership of; of corporations and companies -02274482 40 v 05 assume 0 usurp 0 seize 7 take_over 7 arrogate 0 012 @ 02206619 v 0000 + 00085678 n 0502 + 09810364 n 0501 + 01145015 n 0404 + 00085432 n 0201 + 10742546 n 0201 + 00082870 n 0101 ~ 02215355 v 0000 ~ 02272549 v 0000 ~ 02273083 v 0000 ~ 02275034 v 0000 ~ 02275152 v 0000 01 + 08 00 | seize and take control without authority and possibly with force; take as one's right or possession; "He assumed to himself the right to fill all positions in the town"; "he usurped my rights"; "She seized control of the throne after her husband died" -02275034 40 v 01 hijack 0 001 @ 02274482 v 0000 01 + 08 00 | seize control of; "they hijacked the judicial process" -02275152 40 v 01 raid 2 003 @ 02274482 v 0000 + 00777324 n 0101 + 08076253 n 0101 01 + 08 00 | take over (a company) by buying a controlling interest of its stock; "T. Boone Pickens raided many large companies" -02275365 40 v 03 claim 0 lay_claim 0 arrogate 2 009 @ 00752764 v 0000 + 09810364 n 0301 + 06729864 n 0101 + 09925592 n 0101 ! 02303331 v 0101 $ 00758333 v 0000 ~ 02275799 v 0000 ~ 02276000 v 0000 ~ 02276746 v 0000 02 + 08 00 + 22 02 | demand as being one's due or property; assert one's right or title to; "He claimed his suitcases at the airline counter"; "Mr. Smith claims special tax exemptions because he is a foreign resident" -02275799 40 v 01 pretend 3 004 @ 02275365 v 0000 + 10469979 n 0101 + 06730371 n 0101 + 04788853 n 0102 01 + 08 00 | put forward a claim and assert right or possession of; "pretend the title of King" -02276000 40 v 01 requisition 0 003 @ 02275365 v 0000 + 07192240 n 0101 ! 02276202 v 0101 01 + 09 00 | demand and take for use or service, especially by military or public authority for public service -02276202 40 v 01 derequisition 0 002 @ 02316304 v 0000 ! 02276000 v 0101 01 + 08 00 | release from government control -02276322 40 v 02 reclaim 0 repossess 0 003 @ 02210855 v 0000 ~ 02276453 v 0000 ~ 02276568 v 0000 02 + 08 00 + 16 00 | claim back -02276453 40 v 01 distrain 2 001 @ 02276322 v 0000 01 + 22 00 | legally take something in place of a debt payment -02276568 40 v 01 foreclose 0 002 @ 02276322 v 0000 + 00090076 n 0101 01 + 08 00 | subject to foreclosing procedures; take away the right of mortgagors to redeem their mortgage -02276746 40 v 02 arrogate 1 assign 2 002 @ 02275365 v 0000 + 09810364 n 0101 01 + 15 00 | make undue claims to having -02276866 40 v 0c pilfer 0 cabbage 0 purloin 0 pinch 0 abstract 0 snarf 0 swipe 0 hook 0 sneak 0 filch 0 nobble 0 lift 0 005 @ 02321757 v 0000 + 09866661 n 0c03 + 13385216 n 0203 + 10616204 n 0102 + 00781355 n 0101 02 + 08 00 + 16 00 | make off with belongings of others -02277138 40 v 02 rustle 0 lift 3 004 @ 02321757 v 0000 ;c 00766234 n 0000 + 10544480 n 0101 + 00966504 n 0101 02 + 08 00 + 02 01 | take illegally; "rustle cattle" -02277303 40 v 01 shoplift 0 004 @ 02321757 v 0000 ;c 00766234 n 0000 + 09866661 n 0102 + 00781480 n 0101 02 + 02 00 + 08 00 | steal in a store -02277448 40 v 02 hold_up 0 stick_up 0 006 * 01120069 v 0000 @ 02321391 v 0000 ;c 00766234 n 0000 + 00781912 n 0204 + 00781912 n 0103 ~ 02277663 v 0000 01 + 09 00 | rob at gunpoint or by means of some other threat -02277663 40 v 01 mug 0 005 @ 02277448 v 0000 ;c 00766234 n 0000 + 10337134 n 0101 + 10337300 n 0101 + 00774009 n 0101 01 + 09 00 | rob at gunpoint or with the threat of violence; "I was mugged in the streets of New York last night" -02277897 40 v 01 pirate 0 004 @ 02321757 v 0000 ;c 00766234 n 0000 + 10437262 n 0105 + 00750405 n 0104 02 + 08 00 + 16 00 | copy illegally; of published material -02278061 40 v 03 plagiarize 0 plagiarise 0 lift 1 013 @ 02321757 v 0000 ;c 00766234 n 0000 + 10437262 n 0201 + 10437262 n 0203 + 00750405 n 0203 + 07277158 n 0201 + 00750405 n 0201 + 10437262 n 0101 + 10437262 n 0102 + 00750405 n 0102 + 07277158 n 0101 + 00750405 n 0101 ~ 02278470 v 0000 03 + 02 00 + 08 00 + 16 00 | take without referencing from someone else's writing or speech; of intellectual property -02278470 40 v 01 crib 0 002 @ 02278061 v 0000 ;c 00766234 n 0000 01 + 08 00 | take unauthorized (intellectual material) -02278592 40 v 01 pocket 0 002 @ 02205272 v 0000 + 03972524 n 0101 02 + 08 00 + 16 00 | put in one's pocket; "He pocketed the change" -02278727 40 v 01 line_one's_pockets 0 001 @ 02278830 v 0000 02 + 02 00 + 22 00 | make a lot of money -02278830 40 v 02 profit 0 turn_a_profit 0 007 @ 02289295 v 0000 + 13258362 n 0105 ! 02288828 v 0101 ! 02280018 v 0101 ~ 02278727 v 0000 ~ 02279113 v 0000 ~ 02279315 v 0000 02 + 02 00 + 22 00 | make a profit; gain money or materially; "The company has not profited from the merger" -02279113 40 v 03 turn_a_nice_dime 0 turn_a_nice_penny 0 turn_a_nice_dollar 0 001 @ 02278830 v 0000 02 + 01 00 + 02 00 | make a satisfactory profit; "The company turned a nice dime after a short time" -02279315 40 v 01 clean_up 4 002 @ 02278830 v 0000 + 13259797 n 0102 01 + 02 00 | make a big profit; often in a short period of time; "The investor really cleaned up when the stock market went up" -02279513 40 v 01 cash_in_on 0 001 @ 02290461 v 0000 01 + 08 00 | take advantage of or capitalize on -02279615 40 v 01 profiteer 0 002 @ 02290461 v 0000 + 10481003 n 0101 01 + 02 00 | make an unreasonable profit, as on the sale of difficult to obtain goods -02279772 40 v 03 capitalize 0 capitalise 0 take_advantage 0 003 @ 02290461 v 0000 + 00951626 n 0202 + 00951626 n 0101 01 + 22 00 | draw advantages from; "he is capitalizing on her mistake"; "she took advantage of his absence to meet her lover" -02280018 40 v 01 break_even 0 002 ! 02278830 v 0101 ! 02288828 v 0101 01 + 02 00 | make neither profit nor loss -02280132 40 v 04 conserve 2 preserve 0 maintain 0 keep_up 0 009 @ 02202928 v 0000 + 00267522 n 0302 + 01888554 a 0201 + 00819024 n 0201 + 07419599 n 0101 + 00819274 n 0101 ~ 02226981 v 0000 ~ 02280647 v 0000 ~ 02319946 v 0000 01 + 08 00 | keep in safety and protect from harm, decay, loss, or destruction; "We preserve these archeological findings"; "The old lady could not keep up the building"; "children must be taught to conserve our national heritage"; "The museum curator conserved the ancient manuscripts" -02280647 40 v 01 plastinate 0 002 @ 02280132 v 0000 + 13538314 n 0101 01 + 08 00 | preserve (tissue) with plastics, as for teaching and research purposes; "The doctor plastinates bodies to teach anatomy to his students" -02280869 40 v 05 run_down 0 exhaust 0 play_out 0 sap 0 tire 0 004 @ 01157517 v 0000 + 10551751 n 0401 + 00356621 n 0201 $ 00572788 v 0000 01 + 08 00 | deplete; "exhaust one's savings"; "We quickly played out our strength" -02281093 40 v 07 store 0 hive_away 0 lay_in 0 put_in 0 salt_away 0 stack_away 0 stash_away 0 008 @ 02202384 v 0000 + 13367070 n 0101 + 00811355 n 0101 ~ 01493142 v 0000 ~ 02218759 v 0000 ~ 02281485 v 0000 ~ 02304982 v 0000 ~ 02306087 v 0000 01 + 08 00 | keep or lay aside for future use; "store grain for the winter"; "The bear stores fat for the period of hibernation when he doesn't eat" -02281485 40 v 01 victual 0 002 @ 02281093 v 0000 + 07556637 n 0105 02 + 01 00 + 02 00 | lay in provisions; "The vessel victualled before the long voyage" -02281641 40 v 01 mothball 0 002 @ 02282506 v 0000 + 03788703 n 0101 01 + 08 00 | put into long-term storage -02281751 40 v 01 reposit 0 003 @ 02282506 v 0000 + 00372607 n 0102 + 00372607 n 0101 01 + 08 00 | put (something) in a place for storage; "the treasure found int he ancient tomb was reposited in the museum" -02281960 40 v 01 wharf 0 002 @ 02282506 v 0000 + 03933529 n 0102 01 + 08 00 | store on a wharf; "Wharf the merchandise" -02282082 40 v 01 tank 0 004 @ 02282506 v 0000 + 13770529 n 0101 + 04388743 n 0101 + 00812055 n 0101 01 + 08 00 | store in a tank by causing (something) to flow into it -02282252 40 v 01 loft 0 003 @ 02282506 v 0000 + 03686470 n 0101 + 03686130 n 0101 01 + 08 00 | store in a loft -02282365 40 v 01 warehouse 0 004 @ 02282506 v 0000 + 04551055 n 0101 + 10767519 n 0101 + 00372607 n 0104 01 + 08 00 | store in a warehouse -02282506 40 v 01 store 2 014 @ 02202384 v 0000 + 04329190 n 0105 + 00811355 n 0101 ~ 01493041 v 0000 ~ 02204094 v 0000 ~ 02281641 v 0000 ~ 02281751 v 0000 ~ 02281960 v 0000 ~ 02282082 v 0000 ~ 02282252 v 0000 ~ 02282365 v 0000 ~ 02282946 v 0000 ~ 02283080 v 0000 ~ 02283197 v 0000 01 + 08 00 | find a place for and put away for storage; "where should we stow the vegetables?"; "I couldn't store all the books in the attic so I sold some" -02282946 40 v 01 garage 0 002 @ 02282506 v 0000 + 03416489 n 0101 01 + 08 00 | keep or store in a garage; "we don't garage our car" -02283080 40 v 01 bottle 0 002 @ 02282506 v 0000 + 02876657 n 0101 01 + 08 00 | store (liquids or gases) in bottles -02283197 40 v 01 ensile 0 002 @ 02282506 v 0000 + 07801342 n 0102 01 + 08 00 | store in a silo; "ensile fodder for the cows" -02283324 40 v 04 retain 0 hold 2 keep_back 1 hold_back 0 004 @ 02202384 v 0000 + 00810598 n 0203 + 00810598 n 0101 ~ 02283608 v 0000 01 + 08 00 | secure and keep for possible future use or application; "The landlord retained the security deposit"; "I reserve the right to disagree" -02283608 40 v 01 hold_down 0 001 @ 02283324 v 0000 01 + 08 00 | keep; "She manages to hold down two jobs" -02283716 40 v 04 keep_open 0 hold_open 0 keep 9 save 3 002 @ 02498320 v 0000 $ 02202384 v 0000 01 + 08 00 | retain rights to; "keep my job for me while I give birth"; "keep my seat, please"; "keep open the possibility of a merger" -02283949 40 v 01 advance 0 002 @ 02324182 v 0000 + 13375891 n 0101 03 + 08 00 + 14 00 + 15 00 | pay in advance; "Can you advance me some money?" -02284096 40 v 04 bribe 0 corrupt 0 buy 2 grease_one's_palms 0 009 @ 02251743 v 0000 ;c 00766234 n 0000 + 00621207 a 0201 + 00621207 a 0102 + 09874260 n 0101 + 00776262 n 0101 + 13284562 n 0101 ~ 02284429 v 0000 ~ 02284803 v 0000 01 + 09 00 | make illegal payments to in exchange for favors or influence; "This judge can be bought" -02284429 40 v 01 sop 0 002 @ 02284096 v 0000 + 07216615 n 0101 01 + 09 00 | give a conciliatory gift or bribe to -02284544 40 v 01 buy_into 0 002 @ 02271137 v 0000 ;c 01099436 n 0000 01 + 08 00 | buy stocks or shares of a company -02284662 40 v 01 rake_off 0 003 @ 02289295 v 0000 ;c 00766234 n 0000 + 13289306 n 0101 01 + 08 00 | take money from an illegal transaction -02284803 40 v 02 buy_off 0 pay_off 1 002 @ 02284096 v 0000 ;c 00766234 n 0000 01 + 09 00 | pay someone with influence in order to receive a favor -02284951 40 v 04 refund 0 return 0 repay 0 give_back 0 007 @ 02251743 v 0000 + 13299651 n 0301 + 01121690 n 0302 + 01121690 n 0101 + 13282161 n 0101 ~ 02285205 v 0000 ~ 02310482 v 0000 03 + 08 00 + 14 00 + 15 00 | pay back; "Please refund me my money" -02285205 40 v 01 reimburse 0 002 @ 02284951 v 0000 + 13290002 n 0101 02 + 08 00 + 14 00 | pay back for some expense incurred; "Can the company reimburse me for my professional travel?" -02285392 40 v 03 stock 0 carry 0 stockpile 0 007 @ 02203362 v 0000 + 08462205 n 0301 + 13368052 n 0303 + 00372977 n 0301 + 13367070 n 0102 + 04321534 n 0101 + 10658304 n 0101 01 + 08 00 | have on hand; "Do you carry kerosene heaters?" -02285629 40 v 02 find 0 regain 1 011 $ 02247977 v 0000 $ 02212275 v 0000 @ 02210855 v 0000 + 10090745 n 0101 + 00043195 n 0102 + 10090498 n 0101 ! 02287618 v 0101 ~ 02286027 v 0000 ~ 02286204 v 0000 ~ 02286687 v 0000 ~ 02292265 v 0000 02 + 08 00 + 09 00 | come upon after searching; find the location of something that was missed or lost; "Did you find your glasses?"; "I cannot find my gloves!" -02286027 40 v 01 feel 0 003 @ 02285629 v 0000 + 02585285 n 0102 + 02584915 n 0102 01 + 08 00 | find by testing or cautious exploration; "He felt his way around the dark room" -02286204 40 v 02 locate 0 turn_up 0 006 $ 01313923 v 0000 @ 02285629 v 0000 + 00155487 n 0103 + 00027167 n 0101 ~ 02286550 v 0000 ~ 02287380 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | discover the location of; determine the place of; find by searching or examining; "Can you locate your cousins in the Midwest?"; "My search turned up nothing" -02286550 40 v 01 unearth 1 001 @ 02286204 v 0000 02 + 08 00 + 09 00 | bring to light; "The CIA unearthed a plot to kill the President" -02286687 40 v 0a fall_upon d strike 0 come_upon 9 light_upon 0 chance_upon 0 come_across 2 chance_on 0 happen_upon 0 attain d discover 0 003 @ 02285629 v 0000 + 07214432 n 0a01 + 00043195 n 0a01 01 + 08 00 | find unexpectedly; "the archeologists chanced upon an old tomb"; "she struck a goldmine"; "The hikers finally struck the main path to the lake" -02287041 40 v 01 pick_up 0 003 @ 02207206 v 0000 ;c 01090446 n 0000 + 01016201 n 0101 01 + 08 00 | buy casually or spontaneously; "I picked up some food for a snack" -02287209 40 v 02 foot 0 pick 0 001 @ 02251743 v 0000 01 + 02 00 | pay for something; "pick up the tab"; "pick up the burden of high-interest mortgages"; "foot the bill" -02287380 40 v 02 pinpoint 0 nail 0 002 @ 02286204 v 0000 + 04681230 n 0102 04 + 08 00 + 11 00 + 20 00 + 21 00 | locate exactly; "can you pinpoint the position of the enemy?"; "The chemists could not nail the identity of the chromosome" -02287618 40 v 01 lose 1 003 + 13329322 n 0101 ! 02285629 v 0101 ~ 00613018 v 0000 01 + 08 00 | miss from one's possessions; lose sight of; "I've lost my glasses again!" -02287789 40 v 01 lose 2 003 ! 02202384 v 0101 ~ 00546398 v 0000 ~ 02288042 v 0000 02 + 08 00 + 11 00 | fail to keep or to maintain; cease to have, either physically or in an abstract sense; "She lost her purse when she left it unattended on her seat" -02288042 40 v 01 sleep_off 0 001 @ 02287789 v 0000 01 + 08 00 | get rid of by sleeping; "sleep off a hangover" -02288155 40 v 01 lose 0 001 ! 02288295 v 0102 02 + 08 00 + 15 00 | fail to get or obtain; "I lost the opportunity to spend a year abroad" -02288295 40 v 03 acquire 6 win 0 gain 1 009 @ 02210855 v 0000 + 10117511 n 0301 + 10782791 n 0201 + 13259917 n 0202 + 09762821 n 0202 + 13259917 n 0201 + 00064018 n 0201 ! 02288155 v 0201 ~ 02288656 v 0000 02 + 08 00 + 16 00 | win something through one's efforts; "I acquired a passing knowledge of Chinese"; "Gain an understanding of international finance" -02288656 40 v 01 cozen 0 003 @ 02288295 v 0000 @ 02573275 v 0000 + 00754280 n 0102 03 + 08 00 + 21 00 + 22 00 | cheat or trick; "He cozened the money out of the old man" -02288828 40 v 02 lose 6 turn_a_loss 0 004 + 10272782 n 0101 + 13329322 n 0101 ! 02278830 v 0101 ! 02280018 v 0101 02 + 02 00 + 22 00 | fail to make money in a business; make a loss or fail to profit; "I lost thousands of dollars on that bad investment!"; "The company turned a loss after the first year" -02289134 40 v 01 clear 7 001 ! 02254923 v 0101 01 + 01 00 | be debited and credited to the proper bank accounts; "The check will clear within 2 business days" -02289295 40 v 09 gain 0 take_in 0 clear 0 make 1 earn 1 realize 1 realise 1 pull_in 0 bring_in 1 012 $ 02291258 v 0000 @ 02210855 v 0000 + 10041887 n 0501 + 10117511 n 0101 $ 00012267 v 0000 ~ 02239997 v 0000 ~ 02278830 v 0000 ~ 02284662 v 0000 ~ 02289854 v 0000 ~ 02290029 v 0000 ~ 02291434 v 0000 ~ 02291708 v 0000 01 + 08 00 | earn on some commercial or business transaction; earn as salary or wages; "How much do you make a month in your new job?"; "She earns a lot in her new job"; "this merger brought in lots of money"; "He clears $5,000 each month" -02289854 40 v 02 take_home 0 bring_home 0 001 @ 02289295 v 0000 01 + 08 00 | earn as a salary or wage; "How much does your wife take home after taxes and other deductions?" -02290029 40 v 02 rake_in 0 shovel_in 0 001 @ 02289295 v 0000 01 + 08 00 | earn large sums of money; "Since she accepted the new position, she has been raking it in" -02290196 40 v 02 earn 3 garner 1 003 @ 02210855 v 0000 + 13279262 n 0103 ~ 02290349 v 0000 01 + 08 00 | acquire or deserve by one's efforts or actions -02290349 40 v 01 letter 0 002 @ 02290196 v 0000 + 06706504 n 0101 02 + 02 00 + 08 00 | win an athletic letter -02290461 40 v 03 profit 2 gain 2 benefit 0 009 @ 02210855 v 0000 + 05142641 n 0301 + 10117511 n 0201 + 05157574 n 0101 ~ 02279513 v 0000 ~ 02279615 v 0000 ~ 02279772 v 0000 ~ 02290756 v 0000 ~ 02291258 v 0000 02 + 02 00 + 22 00 | derive a benefit from; "She profited from his vast experience" -02290756 40 v 01 pyramid 0 002 @ 02290461 v 0000 ;c 01099436 n 0000 01 + 02 00 | enlarge one's holdings on an exchange on a continued rise by using paper profits as margin to buy additional amounts -02290956 40 v 02 benefit 1 do_good 0 004 @ 00082081 v 0000 + 10191613 n 0202 + 00223802 a 0101 + 05142641 n 0101 02 + 10 00 + 11 00 | be beneficial for; "This will do you good" -02291135 40 v 01 agree 2 001 @ 02735282 v 0000 01 + 04 00 | be agreeable or suitable; "White wine doesn't agree with me" -02291258 40 v 04 net 0 sack 1 sack_up 0 clear 4 003 @ 02290461 v 0000 $ 02289295 v 0000 $ 02291548 v 0000 01 + 08 00 | make as a net profit; "The company cleared $1 million" -02291434 40 v 01 gross 0 002 @ 02289295 v 0000 + 13256691 n 0101 01 + 08 00 | earn before taxes, expenses, etc. -02291548 40 v 02 net 1 clear 3 003 $ 02291258 v 0000 @ 02291708 v 0000 + 13258362 n 0102 01 + 11 00 | yield as a net profit; "This sale netted me $1 million" -02291708 40 v 03 yield 0 pay 1 bear 1 008 @ 02289295 v 0000 ;c 13333237 n 0000 + 13279262 n 0202 + 04612722 n 0101 + 00914632 n 0102 + 13758745 n 0102 ~ 02291548 v 0000 ~ 02292004 v 0000 01 + 11 00 | bring in; "interest-bearing accounts"; "How much does this savings certificate pay annually?" -02292004 40 v 01 pay_off 2 001 @ 02291708 v 0000 01 + 01 00 | yield a profit or result; "His efforts finally paid off" -02292125 40 v 02 derive 0 gain 3 002 @ 02238085 v 0000 ~ 02293148 v 0000 02 + 08 00 + 16 00 | obtain; "derive pleasure from one's garden" -02292265 40 v 02 rout_up 0 rout_out 0 002 * 02153709 v 0000 @ 02285629 v 0000 02 + 08 00 + 09 00 | get or find by searching; "What did you rout out in the library?" -02292432 40 v 02 pocket 1 bag 1 002 @ 02321757 v 0000 + 03972524 n 0101 01 + 08 00 | take unlawfully -02292535 40 v 05 embezzle 0 defalcate 0 peculate 0 misappropriate 0 malversate 0 010 @ 02321757 v 0000 + 00735832 n 0501 + 00776732 n 0405 + 00776732 n 0302 + 10051337 n 0303 + 00776732 n 0203 + 10051337 n 0202 + 00776732 n 0101 + 10051337 n 0101 ~ 02292989 v 0000 02 + 08 00 + 16 00 | appropriate (as property entrusted to one's care) fraudulently to one's own use; "The accountant embezzled thousands of dollars while working for the wealthy family" -02292989 40 v 01 fiddle 0 001 @ 02292535 v 0000 01 + 02 00 | commit fraud and steal from one's employer; "We found out that she had been fiddling for years" -02293148 40 v 02 reap 0 draw 0 002 $ 01760300 v 0000 @ 02292125 v 0000 02 + 08 00 + 16 00 | get or derive; "He drew great benefits from his membership in the association" -02293321 40 v 07 hand_over 0 fork_over 0 fork_out 0 fork_up 0 turn_in 0 deliver 1 render 3 006 @ 02230772 v 0000 + 10001058 n 0601 + 01108753 n 0601 + 00213186 n 0101 ~ 02293732 v 0000 ~ 02293915 v 0000 03 + 08 00 + 09 00 + 15 00 | to surrender someone or something to another; "the guard delivered the criminal to the police"; "render up the prisoners"; "render the town to the enemy"; "fork over the money" -02293732 40 v 01 bail 0 003 @ 02293321 v 0000 + 01108971 n 0101 + 09832978 n 0101 01 + 08 00 | deliver something in trust to somebody for a special purpose and for a limited period -02293915 40 v 01 give_away 1 001 @ 02293321 v 0000 01 + 09 00 | formally hand over to the bridegroom in marriage; of a bride by her father -02294056 40 v 01 barter_away 0 002 @ 02260085 v 0000 ;c 01090446 n 0000 01 + 08 00 | trade in in a bartering transaction -02294179 40 v 05 share 0 divvy_up 0 portion_out 0 apportion 0 deal 7 007 * 01557774 v 0000 @ 02201644 v 0000 + 01084637 n 0501 + 00468176 a 0403 + 01085098 n 0103 + 10401639 n 0102 + 01085793 n 0101 02 + 08 00 + 21 00 | give out as one's portion or share -02294436 40 v 0c distribute 0 administer 0 mete_out 0 deal 1 parcel_out 0 lot 0 dispense 0 shell_out 0 deal_out 0 dish_out 0 allot 2 dole_out 0 014 @ 02199590 v 0000 + 01083645 n 0b01 + 13285714 n 0701 + 01083504 n 0701 + 10017794 n 0701 + 03210683 n 0701 + 01084637 n 0401 + 01083077 n 0101 + 09784707 n 0102 + 03213014 n 0102 ~ 02228698 v 0000 ~ 02228901 v 0000 ~ 02246456 v 0000 ~ 02309165 v 0000 02 + 08 00 + 15 00 | administer or bestow, as in small portions; "administer critical remarks to everyone present"; "dole out some money"; "shell out pocket money for the children"; "deal a blow to someone"; "the machine dispenses soft drinks" -02295082 40 v 01 admeasure 0 002 * 02294179 v 0000 @ 00918872 v 0000 01 + 08 00 | determine the quantity of someone's share -02295208 40 v 03 partake 0 share 1 partake_in 0 006 @ 02210855 v 0000 + 01085098 n 0203 + 13285176 n 0201 + 10401639 n 0202 + 10401639 n 0101 ~ 02295447 v 0000 02 + 08 00 + 02 01 | have, give, or receive a share of; "We shared the cake" -02295447 40 v 01 cut_in 0 001 @ 02295208 v 0000 01 + 09 00 | allow someone to have a share or profit -02295550 40 v 01 share 2 005 @ 01158872 v 0000 + 13843920 n 0101 ~ 02295717 v 0000 ~ 02295842 v 0000 ~ 02295979 v 0000 02 + 02 00 + 08 00 | use jointly or in common -02295717 40 v 01 double_up 0 001 @ 02295550 v 0000 02 + 01 00 + 02 00 | share a room or a bed designed for only one person -02295842 40 v 01 pool 0 002 @ 02295550 v 0000 + 13369857 n 0101 02 + 02 00 + 08 00 | combine into a common fund; "We pooled resources" -02295979 40 v 02 communalize 0 communalise 0 003 @ 02295550 v 0000 + 00493012 a 0101 + 02700918 a 0101 01 + 08 00 | make something the property of the commune or community -02296153 40 v 04 impart 0 leave 2 give 9 pass_on 3 007 $ 02235842 v 0000 $ 02229055 v 0000 @ 00952524 v 0000 + 06685198 n 0301 + 06252954 n 0103 + 06252954 n 0102 ~ 00928630 v 0000 02 + 08 00 + 15 00 | transmit (knowledge or skills); "give a secret to the Russians"; "leave your name and address here"; "impart a new skill to the students" -02296495 40 v 01 tender 0 002 @ 02297142 v 0000 + 07165086 n 0102 01 + 08 00 | make a tender of; in legal settlements -02296615 40 v 01 tender 1 001 @ 02200686 v 0000 03 + 08 00 + 14 00 + 15 00 | offer or present for acceptance -02296726 40 v 01 offer 2 003 @ 02327200 v 0000 + 07185076 n 0101 ~ 00781652 v 0000 04 + 08 00 + 11 00 + 14 00 + 15 00 | make available or accessible, provide or furnish; "The conference center offers a health spa"; "The hotel offers private meeting rooms" -02296984 40 v 02 signalize 0 signalise 0 002 @ 02327200 v 0000 + 06791372 n 0101 01 + 08 00 | provide with traffic signals; "signalize a busy intersection" -02297142 40 v 02 offer 0 proffer 0 007 @ 02199590 v 0000 + 07162680 n 0203 + 07185076 n 0101 + 10371052 n 0101 + 10371052 n 0102 ~ 00108604 v 0000 ~ 02296495 v 0000 03 + 08 00 + 14 00 + 15 00 | present for acceptance or rejection; "She offered us all a cold drink" -02297409 40 v 01 offer 3 002 @ 02298160 v 0000 ~ 02297571 v 0000 01 + 08 00 | make available for sale; "The stores are offering specials on sweaters this week" -02297571 40 v 01 put_up 0 001 @ 02297409 v 0000 01 + 08 00 | make available for sale at an auction; "The dealer put up three of his most valuable paintings for auction" -02297742 40 v 02 offer 9 extend 4 004 @ 01060494 v 0000 + 07185076 n 0101 + 07185076 n 0102 $ 02297948 v 0000 03 + 08 00 + 15 00 + 14 01 | offer verbally; "extend my greetings"; "He offered his sympathy" -02297948 40 v 02 extend 5 offer a 003 $ 02297742 v 0000 @ 02327200 v 0000 + 07185076 n 0201 03 + 08 00 + 15 00 + 14 02 | make available; provide; "extend a loan"; "The bank offers a good deal on new mortgages" -02298160 40 v 01 market 0 008 @ 02260362 v 0000 ;c 01090446 n 0000 + 02062133 a 0101 + 00877119 a 0101 + 08424951 n 0101 + 01097292 n 0101 + 10577284 n 0102 ~ 02297409 v 0000 01 + 08 00 | engage in the commercial promotion, sale, or distribution of; "The company is marketing its new line of beauty products" -02298471 40 v 01 market 1 005 @ 02244956 v 0000 ;c 01090446 n 0000 + 03461385 n 0104 + 00082081 n 0101 + 01113068 n 0103 02 + 02 00 + 22 00 | deal in a market -02298632 40 v 03 offer 1 bid 0 tender 2 012 * 02259829 v 0000 ;c 00092366 n 0000 + 07165086 n 0302 + 07165086 n 0201 + 09853087 n 0201 + 07164546 n 0101 ~ 02298998 v 0000 ~ 02299110 v 0000 ~ 02299552 v 0000 ~ 02299687 v 0000 ~ 02299801 v 0000 ~ 02299924 v 0000 03 + 02 00 + 08 00 + 21 00 | propose a payment; "The Swiss dealer offered $2 million for the painting" -02298998 40 v 01 by-bid 0 002 @ 02298632 v 0000 ;c 00092366 n 0000 01 + 02 00 | bid on behalf of someone else -02299110 40 v 01 subscribe 1 002 @ 02298632 v 0000 ;c 01099436 n 0000 01 + 08 00 | offer to buy, as of stocks and shares; "The broker subscribed 500 shares" -02299269 40 v 02 pledge 4 subscribe 4 004 @ 02263027 v 0000 + 01090018 n 0201 + 10670310 n 0201 + 10441694 n 0101 01 + 08 00 | pay (an amount of money) as a contribution to a charity or service, especially at regular intervals; "I pledged $10 a month to my favorite radio station" -02299552 40 v 01 overbid 0 003 @ 02298632 v 0000 ;c 00092366 n 0000 ! 02299687 v 0101 01 + 02 00 | bid more than the object is worth -02299687 40 v 01 underbid 0 003 @ 02298632 v 0000 ;c 00092366 n 0000 ! 02299552 v 0101 01 + 02 00 | bid too low -02299801 40 v 01 outbid 0 003 @ 02298632 v 0000 ;c 00092366 n 0000 ! 02299924 v 0101 01 + 09 00 | bid higher than others -02299924 40 v 01 underbid 1 003 @ 02298632 v 0000 ;c 00092366 n 0000 ! 02299801 v 0101 01 + 09 00 | bid lower than a competing bidder -02300060 40 v 02 bid 1 call 5 013 @ 01072949 v 0000 ;c 00488225 n 0000 + 09888832 n 0201 + 06737112 n 0101 + 09853184 n 0101 + 06737112 n 0102 ~ 01156406 v 0000 ~ 02300425 v 0000 ~ 02300734 v 0000 ~ 02300866 v 0000 ~ 02301000 v 0000 ~ 02301151 v 0000 ~ 02301321 v 0000 01 + 02 00 | make a demand, as for a card or a suit or a show of hands; "He called his trump" -02300425 40 v 01 double 3 002 @ 02300060 v 0000 + 00803394 n 0102 01 + 08 00 | bridge: make a demand for (a card or suit) -02300549 40 v 01 declare 0 004 @ 01149470 v 0000 ;c 00490569 n 0000 + 09961012 n 0102 + 06737394 n 0102 01 + 08 00 | designate (a trump suit or no-trump) with the final bid of a hand -02300734 40 v 01 outcall 0 001 @ 02300060 v 0000 01 + 09 00 | make a higher bid than (the previous bid or player); in a card game -02300866 40 v 01 underbid 2 001 @ 02300060 v 0000 01 + 08 00 | bid (a hand of cards) at less than the strength of the hand warrants -02301000 40 v 01 outbid 1 002 @ 02300060 v 0000 ;c 00490569 n 0000 01 + 02 00 | bid over an opponent's bid when one's partner has not bid or doubled -02301151 40 v 01 overbid 1 004 @ 02300060 v 0000 ;c 00490569 n 0000 + 07165298 n 0101 + 06737758 n 0101 01 + 02 00 | to bid for more tricks than one can expect to win, -02301321 40 v 01 preempt 1 005 @ 02300060 v 0000 ;c 00490569 n 0000 + 01765237 a 0101 + 10464870 n 0101 + 01765237 a 0102 01 + 08 00 | make a preemptive bid in the game of bridge -02301502 40 v 02 disburse 0 pay_out 0 005 @ 02251743 v 0000 + 13275495 n 0103 + 01122149 n 0102 + 10635275 n 0102 + 01122149 n 0103 02 + 08 00 + 15 00 | expend, as from a fund -02301680 40 v 01 belong 0 002 @ 02604760 v 0000 + 13244109 n 0102 01 + 10 00 | be owned by; be in the possession of; "This book belongs to me" -02301825 40 v 04 bear 2 take_over 6 accept 1 assume 1 003 @ 02205272 v 0000 + 00082870 n 0401 ~ 02302081 v 0000 01 + 08 00 | take on as one's own the expenses or debts of another person; "I'll accept the charges"; "She agreed to bear the responsibility" -02302081 40 v 02 face_the_music 0 carry-the_can 0 001 @ 02301825 v 0000 01 + 02 00 | accept the unpleasant consequences of one's actions -02302220 40 v 02 bear 0 hold 4 003 @ 02203362 v 0000 + 10179911 n 0201 + 10179911 n 0102 01 + 08 00 | have rightfully; of rights, titles, and offices; "She bears the title of Duchess"; "He held the governorship for almost a decade" -02302454 40 v 01 preempt 0 006 @ 02210855 v 0000 + 01765237 a 0101 + 05178394 n 0101 + 00085041 n 0101 + 10465002 n 0101 + 01765237 a 0102 01 + 08 00 | acquire for oneself before others can do so -02302652 40 v 01 preempt 2 001 @ 02210855 v 0000 01 + 08 00 | gain possession of by prior right or opportunity, especially so as to obtain the right to buy (land) -02302817 40 v 06 peddle 0 monger 0 huckster 0 hawk 0 vend 0 pitch 0 016 @ 02244956 v 0000 + 08624656 n 0601 + 07248653 n 0603 + 02062133 a 0505 + 02062133 a 0504 + 01116968 n 0504 + 10577284 n 0503 + 10577284 n 0504 + 01116968 n 0501 + 10411551 n 0404 + 01116968 n 0403 + 10190516 n 0301 + 10720453 n 0204 + 10495555 n 0103 + 10411551 n 0101 + 01116968 n 0102 01 + 08 00 | sell or offer for sale from place to place -02303235 40 v 01 dispense_with 0 001 @ 02228031 v 0000 01 + 08 00 | forgo or do or go without -02303331 40 v 06 forfeit 0 give_up 2 throw_overboard 0 waive 0 forgo 0 forego 0 010 @ 02228031 v 0000 + 00213694 n 0402 + 13301174 n 0102 + 13300922 n 0102 + 00205891 n 0102 + 13301174 n 0101 + 13300922 n 0101 + 00205891 n 0101 ! 02275365 v 0101 ~ 02303761 v 0000 01 + 08 00 | lose (s.th.) or lose the right to (s.th.) by some error, offense, or crime; "you've forfeited your right to name your successor"; "forfeited property" -02303761 40 v 01 lapse 0 002 @ 02303331 v 0000 + 15271417 n 0101 01 + 08 00 | let slip; "He lapsed his membership" -02303878 40 v 01 carry 4 001 @ 02272549 v 0000 01 + 08 00 | capture after a fight; "The troops carried the town after a brief fight" -02304013 40 v 02 recapture 0 retake 0 004 @ 02206619 v 0000 + 00096969 n 0202 + 00096969 n 0101 ~ 02272938 v 0000 02 + 08 00 + 16 00 | take back by force, as after a battle; "The military forces managed to recapture the fort" -02304241 40 v 01 capture 1 002 @ 00126264 v 0000 + 13442715 n 0101 01 + 11 00 | bring about the capture of an elementary particle or celestial body and causing it enter a new orbit; "This nucleus has captured the slow-moving neutrons"; "The star captured a comet" -02304507 40 v 01 fall 5 003 @ 01116447 v 0000 + 00067707 n 0102 $ 02620213 v 0000 01 + 01 00 | be captured; "The cities fell to the enemy" -02304648 40 v 03 snap_up 0 snaffle 0 grab 0 003 @ 02205272 v 0000 + 00138956 n 0302 ~ 02304862 v 0000 01 + 08 00 | get hold of or seize quickly and easily; "I snapped up all the good buys during the garage sale" -02304862 40 v 01 hog 0 002 @ 02304648 v 0000 + 10179649 n 0101 01 + 08 00 | take greedily; take more than one's share -02304982 40 v 07 roll_up 3 collect 0 accumulate 0 pile_up 0 amass 0 compile 0 hoard 0 018 @ 02281093 v 0000 + 06593099 n 0601 + 01014731 n 0601 + 00048460 a 0301 + 00029769 a 0301 + 07951464 n 0303 + 00372013 n 0301 + 01014066 n 0201 + 01014066 n 0202 ~ 00159553 v 0000 ~ 01381796 v 0000 ~ 01384439 v 0000 ~ 01384752 v 0000 ~ 01385920 v 0000 ~ 01386200 v 0000 ~ 01480469 v 0000 ~ 02215790 v 0000 ~ 02218635 v 0000 01 + 08 00 | get or gather together; "I am accumulating evidence for the man's unfaithfulness to his wife"; "She is amassing a lot of data for her thesis"; "She rolled up a small fortune" -02305586 40 v 04 collect 3 pick_up 1 gather_up 0 call_for 0 002 @ 02210855 v 0000 + 01016201 n 0201 02 + 08 00 + 09 00 | gather or collect; "You can get the results on Monday"; "She picked up the children at the day care center"; "They pick up our trash twice a week" -02305856 40 v 06 hoard 1 stash 0 cache 0 lay_away 0 hive_up 0 squirrel_away 0 006 @ 02265979 v 0000 + 13366912 n 0302 + 02934888 n 0301 + 13366912 n 0203 + 13366912 n 0101 + 10178611 n 0101 01 + 08 00 | save up as for future use -02306087 40 v 01 hive 3 004 @ 02281093 v 0000 + 02822865 n 0102 ^ 02281093 v 0102 ^ 02305856 v 0105 01 + 08 00 | store, like bees; "bees hive honey and pollen"; "He hived lots of information" -02306281 40 v 01 raise 0 002 @ 02218173 v 0000 ~ 02217990 v 0000 01 + 08 00 | collect funds for a specific purpose; "The President raised several million dollars for his college" -02306462 40 v 02 levy 0 impose 0 010 @ 02320374 v 0000 + 01127623 n 0201 + 13308864 n 0101 ~ 02306728 v 0000 ~ 02306869 v 0000 ~ 02307140 v 0000 ~ 02307261 v 0000 ~ 02307412 v 0000 ~ 02307547 v 0000 ~ 02353752 v 0000 01 + 08 00 | impose and collect; "levy a fine" -02306728 40 v 01 toll 0 002 @ 02306462 v 0000 + 13323749 n 0101 01 + 08 00 | charge a fee for using; "Toll the bridges into New York City" -02306869 40 v 01 tithe 0 002 @ 02306462 v 0000 $ 02307008 v 0000 01 + 08 00 | levy a tithe on (produce or a crop); "The wool was tithed" -02307008 40 v 01 tithe 1 002 $ 02306869 v 0000 @ 02320374 v 0000 02 + 09 00 + 10 00 | exact a tithe from; "The church was tithed" -02307140 40 v 01 reimpose 0 002 @ 02306462 v 0000 + 01148398 n 0101 01 + 08 00 | impose anew; "The fine was reimposed" -02307261 40 v 01 lay 0 001 @ 02306462 v 0000 03 + 08 00 + 11 00 + 21 00 | impose as a duty, burden, or punishment; "lay a responsibility on someone" -02307412 40 v 01 mulct 0 002 @ 02306462 v 0000 + 13301328 n 0102 02 + 09 00 + 33 00 | impose a fine on; "he was fined for littering" -02307547 40 v 01 tax 0 011 @ 02306462 v 0000 + 02400218 a 0101 + 13308999 n 0101 + 13261916 n 0102 + 13308999 n 0102 + 01160170 n 0101 + 10693235 n 0101 ~ 02307882 v 0000 ~ 02307993 v 0000 ~ 02308115 v 0000 ~ 02308275 v 0000 02 + 08 00 + 09 00 | levy a tax on; "The State taxes alcohol heavily"; "Clothing is not taxed in our state" -02307882 40 v 01 excise 0 002 @ 02307547 v 0000 + 13316332 n 0101 02 + 08 00 + 09 00 | levy an excise tax on -02307993 40 v 01 tariff 0 002 @ 02307547 v 0000 + 13315999 n 0102 01 + 08 00 | charge a tariff; "tariff imported goods" -02308115 40 v 01 surtax 0 002 @ 02307547 v 0000 + 13315364 n 0101 02 + 08 00 + 09 00 | levy an extra tax on; "surtax luxury items that cost more than $1,000" -02308275 40 v 01 overtax 0 001 @ 02307547 v 0000 01 + 09 00 | tax excessively; "Don't overtax my constituents!" -02308389 40 v 02 tax 1 assess 0 003 @ 00699815 v 0000 + 13403146 n 0201 $ 02308552 v 0000 01 + 08 00 | set or determine the amount of (a payment such as a fine) -02308552 40 v 01 assess 1 004 $ 02308389 v 0000 @ 02320374 v 0000 + 13403146 n 0101 + 09815076 n 0101 01 + 09 00 | charge (a person or a property) with a payment, such as a tax or a fine -02308741 40 v 04 contribute 0 give 8 chip_in 0 kick_in 0 007 @ 02199590 v 0000 + 00090779 n 0201 + 01086081 n 0201 + 00787465 n 0101 + 01089778 n 0101 + 10670310 n 0102 ~ 02309008 v 0000 03 + 02 00 + 08 00 + 15 00 | contribute to some cause; "I gave at the office" -02309008 40 v 01 combine 0 003 @ 02308741 v 0000 + 07373803 n 0102 + 00378985 n 0102 01 + 08 00 | add together from different sources; "combine resources" -02309165 40 v 02 give e apply 0 004 $ 02309374 v 0000 @ 02294436 v 0000 ~ 02309513 v 0000 ~ 02309621 v 0000 01 + 15 00 | give or convey physically; "She gave him First Aid"; "I gave him a punch in the nose" -02309374 40 v 01 give d 003 @ 00081072 v 0000 $ 00748616 v 0000 $ 02309165 v 0000 01 + 15 00 | give (as medicine); "I gave him the drug" -02309513 40 v 01 tread 0 002 @ 02309165 v 0000 + 04477091 n 0101 01 + 08 00 | apply (the tread) to a tire -02309621 40 v 01 administer 1 003 @ 02309165 v 0000 * 02483267 v 0000 ~ 02309801 v 0000 02 + 08 00 + 15 00 | perform (a church sacrament) ritually; "administer the last unction" -02309801 40 v 01 insufflate 0 002 @ 02309621 v 0000 + 00835830 n 0101 02 + 08 00 + 09 00 | breathe or blow onto as a ritual or sacramental act, especially so as to symbolize the action of the Holy Spirit -02310007 40 v 02 render 0 return 8 003 @ 02199590 v 0000 + 00089351 n 0202 ~ 02310157 v 0000 03 + 08 00 + 14 00 + 15 00 | give back; "render money" -02310157 40 v 02 feed_back 0 resubmit 0 002 @ 02310007 v 0000 + 13479380 n 0101 03 + 08 00 + 15 00 + 21 00 | submit (information) again to a program or automatic system -02310328 40 v 02 render 1 submit 1 002 @ 02200686 v 0000 ;c 08441203 n 0000 02 + 08 00 + 15 00 | make over as a return; "They had to render the estate" -02310482 40 v 02 restore 0 restitute 0 003 @ 02284951 v 0000 + 00089351 n 0201 + 00089351 n 0103 02 + 08 00 + 15 00 | give or bring back; "Restore the stolen painting to its rightful owner" -02310674 40 v 01 cover 0 002 @ 02604760 v 0000 + 13318411 n 0102 01 + 22 00 | be sufficient to meet, defray, or offset the charge or cost of; "Is this enough to cover the check?" -02310855 40 v 02 deposit 0 bank 0 009 @ 02199590 v 0000 + 00018069 a 0201 + 08420278 n 0202 + 02787772 n 0201 + 01100273 n 0201 + 13381145 n 0101 + 10005006 n 0101 ! 02311387 v 0101 ~ 02311135 v 0000 01 + 08 00 | put into a bank account; "She deposits her paycheck every month" -02311135 40 v 01 redeposit 0 002 @ 02310855 v 0000 + 13547380 n 0101 01 + 08 00 | deposit once again; "redeposit a cheque" -02311260 40 v 02 cheque 0 check_out 2 002 @ 02311387 v 0000 + 13381734 n 0103 01 + 08 00 | withdraw money by writing a check -02311387 40 v 04 withdraw 0 draw 1 take_out 0 draw_off 4 013 $ 01854132 v 0000 @ 00173338 v 0000 + 10032342 n 0201 + 10032524 n 0201 + 10784795 n 0101 + 01262713 n 0101 ! 02310855 v 0101 ~ 02311260 v 0000 ~ 02311857 v 0000 ~ 02312014 v 0000 ~ 02312186 v 0000 ~ 02312318 v 0000 ~ 02313906 v 0000 02 + 08 00 + 22 00 | remove (a commodity) from (a supply source); "She drew $2,000 from the account"; "The doctors drew medical supplies from the hospital's emergency bank" -02311857 40 v 01 dip c 001 @ 02311387 v 0000 03 + 20 00 + 21 00 + 22 00 | take a small amount from; "I had to dip into my savings to buy him this present" -02312014 40 v 02 divert 0 hive_off 0 001 @ 02311387 v 0000 01 + 08 00 | withdraw (money) and move into a different location, often secretly and with dishonest intentions -02312186 40 v 01 overdraw 0 001 @ 02311387 v 0000 01 + 08 00 | draw more money from than is available; "She overdrew her account" -02312318 40 v 01 tap 0 001 @ 02311387 v 0000 03 + 08 00 + 11 00 + 21 00 | draw from or dip into to get something; "tap one's memory"; "tap a source of money" -02312478 40 v 04 recall 0 call_in 0 call_back 0 withdraw 1 004 @ 02205272 v 0000 + 07280072 n 0302 + 07280072 n 0101 ~ 02312742 v 0000 01 + 08 00 | cause to be returned; "recall the defective auto tires"; "The manufacturer tried to call back the spoilt yoghurt" -02312742 40 v 01 decommission 0 001 @ 02312478 v 0000 01 + 08 00 | withdraw from active service; "The warship was decommissioned in 1998" -02312882 40 v 01 relieve 0 001 @ 02206619 v 0000 01 + 18 00 | take by stealing; "The thief relieved me of $100" -02312996 40 v 01 relieve 1 001 @ 02350175 v 0000 01 + 18 00 | free from a burden, evil, or distress -02313098 40 v 02 smooth 0 smooth_out 0 001 @ 02350175 v 0000 02 + 08 00 + 11 00 | free from obstructions; "smooth the way towards peace negotiations" -02313250 40 v 01 deprive 0 011 @ 02213690 v 0000 + 01150200 n 0102 ~ 01186958 v 0000 ~ 01187740 v 0000 ~ 01187948 v 0000 ~ 02313542 v 0000 ~ 02313690 v 0000 ~ 02313801 v 0000 ~ 02316097 v 0000 ~ 02317661 v 0000 ~ 02476846 v 0000 02 + 09 00 + 18 00 | keep from having, keeping, or obtaining -02313542 40 v 01 tongue-tie 0 001 @ 02313250 v 0000 02 + 09 00 + 10 00 | deprive of speech; "When he met his idol, the young man was tongue-tied" -02313690 40 v 01 dock 1 001 @ 02313250 v 0000 02 + 09 00 + 18 00 | deprive someone of benefits, as a penalty -02313801 40 v 01 bilk 0 001 @ 02313250 v 0000 01 + 09 00 | evade payment to; "He bilked his creditors" -02313906 40 v 02 divest 0 disinvest 0 004 @ 02311387 v 0000 + 00396509 n 0201 + 01115017 n 0101 ! 02271137 v 0101 03 + 02 00 + 08 00 + 22 00 | reduce or dispose of; cease to hold (an investment); "The company decided to divest"; "the board of trustees divested $20 million in real estate property"; "There was pressure on the university to disinvest in South Africa" -02314275 40 v 03 deprive 1 strip 3 divest 1 013 @ 02205272 v 0000 + 06540863 n 0301 + 14493426 n 0103 + 01150200 n 0102 ~ 01088005 v 0000 ~ 01472642 v 0000 ~ 01608951 v 0000 ~ 02314658 v 0000 ~ 02314784 v 0000 ~ 02314946 v 0000 ~ 02315175 v 0000 ~ 02315277 v 0000 ~ 02315421 v 0000 01 + 18 00 | take away possessions from someone; "The Nazis stripped the Jews of all their assets" -02314658 40 v 01 dispossess 0 002 @ 02314275 v 0000 + 01194331 n 0102 01 + 09 00 | deprive of the possession of real estate -02314784 40 v 01 clean_out 0 001 @ 02314275 v 0000 02 + 09 00 + 10 00 | deprive completely of money or goods; "The robbers cleaned us out in a couple of hours" -02314946 40 v 01 unclothe 0 001 @ 02314275 v 0000 01 + 18 00 | strip; "unclothe your heart of envy" -02315048 40 v 02 deplume 0 displume 0 001 @ 02344568 v 0000 02 + 09 00 + 10 00 | strip of honors, possessions, or attributes -02315175 40 v 01 unsex 0 001 @ 02314275 v 0000 02 + 09 00 + 10 00 | deprive of sex or sexual powers -02315277 40 v 01 orphan 0 004 @ 02314275 v 0000 + 14571181 n 0101 + 03856012 n 0101 + 10384392 n 0101 02 + 09 00 + 10 00 | deprive of parents -02315421 40 v 01 bereave 0 002 @ 02314275 v 0000 + 13989280 n 0102 01 + 18 00 | deprive through death -02315525 40 v 01 inherit 0 005 @ 02210855 v 0000 + 10168584 n 0102 + 00083585 n 0101 $ 02315759 v 0000 $ 02315938 v 0000 02 + 08 00 + 16 00 | obtain from someone after their death; "I inherited a castle from my French grandparents" -02315759 40 v 01 inherit 1 003 $ 02315525 v 0000 @ 02210119 v 0000 + 04922338 n 0101 01 + 08 00 | receive by genetic transmission; "I inherited my good eyesight from my mother" -02315938 40 v 01 inherit 2 001 $ 02315525 v 0000 01 + 08 00 | receive from a predecessor; "The new chairman inherited many problems from the previous chair" -02316097 40 v 02 disinherit 0 disown 0 005 @ 02313250 v 0000 + 07207860 n 0201 + 07207860 n 0202 + 01022992 n 0101 ! 02229055 v 0101 01 + 09 00 | prevent deliberately (as by making a will) from inheriting -02316304 40 v 05 release 0 relinquish 1 resign 4 free 1 give_up 3 007 @ 02230772 v 0000 + 07254836 n 0201 + 00212808 n 0202 + 00213694 n 0101 + 06552814 n 0102 ~ 02276202 v 0000 ~ 02343595 v 0000 02 + 08 00 + 15 00 | part with a possession or right; "I am relinquishing my bedroom to the long-term house guest"; "resign a claim to the throne" -02316649 40 v 04 concede 0 yield 1 cede 1 grant 4 004 @ 02199590 v 0000 + 00213052 n 0301 + 07176243 n 0101 + 07176243 n 0102 02 + 08 00 + 15 00 | give over; surrender or relinquish to the physical control of another -02316868 40 v 01 give 3 004 $ 02339171 v 0000 ~ 00089750 v 0000 ~ 02262278 v 0000 ~ 02358327 v 0000 01 + 14 00 | cause to have, in the abstract sense or physical sense; "She gave him a black eye"; "The draft gave me a cold" -02317094 40 v 02 grant 5 give b 002 + 10143725 n 0101 + 10143595 n 0101 02 + 14 00 + 15 00 | bestow, especially officially; "grant a degree"; "give a divorce"; "This bill grants us new rights" -02317289 40 v 01 charge 1 003 @ 02251743 v 0000 + 07190941 n 0101 ! 02317548 v 0101 03 + 08 00 + 15 00 + 21 00 | pay with a credit card; pay with plastic money; postpone payment by recording a purchase as a debt; "Will you pay cash or charge the purchase?" -02317548 40 v 01 pay_cash 0 002 @ 02251743 v 0000 ! 02317289 v 0101 01 + 02 00 | pay (for something) with cash -02317661 40 v 01 impoverish 0 006 @ 02313250 v 0000 + 01150467 n 0103 ! 02318648 v 0101 ~ 02317836 v 0000 ~ 02317970 v 0000 ~ 02318165 v 0000 02 + 09 00 + 10 00 | make poor -02317836 40 v 01 reduce 0 001 @ 02317661 v 0000 02 + 10 00 + 11 00 | lessen and make more modest; "reduce one's standard of living" -02317970 40 v 03 beggar 0 pauperize 0 pauperise 0 006 @ 02317661 v 0000 + 01150467 n 0302 + 14493716 n 0205 + 01150467 n 0201 + 10409011 n 0201 + 09847010 n 0101 01 + 10 00 | reduce to beggary -02318165 40 v 04 bankrupt 0 ruin 0 break 7 smash 0 002 @ 02317661 v 0000 + 14478433 n 0101 02 + 09 00 + 10 00 | reduce to bankruptcy; "My daughter's fancy wedding is going to break me!"; "The slump in the financial markets smashed him" -02318403 40 v 01 fail 0 001 + 14478433 n 0102 02 + 01 00 + 02 00 | become bankrupt or insolvent; fail financially and close; "The toy company went bankrupt after the competition hired cheap Mexican labor"; "A number of banks failed that year" -02318648 40 v 01 enrich 0 004 @ 00182406 v 0000 + 13271498 n 0101 ! 02317661 v 0101 ~ 02318843 v 0000 02 + 09 00 + 10 00 | make wealthy or richer; "the oil boom enriched a lot of local people" -02318843 40 v 01 feather_one's_nest 0 001 @ 02318648 v 0000 01 + 09 00 | enrich oneself by taking advantage of one's position; "The congressmen feathered his nest through his connection with big business" -02319050 40 v 09 overcharge 0 soak 0 surcharge 0 gazump 0 fleece 0 plume 0 pluck 0 rob 1 hook 2 005 @ 02573275 v 0000 * 02320374 v 0000 + 13307784 n 0101 ! 02319290 v 0101 ~ 02241107 v 0000 01 + 09 00 | rip off; ask an unreasonable price -02319290 40 v 01 undercharge 0 003 @ 02320374 v 0000 + 13307685 n 0101 ! 02319050 v 0101 01 + 09 00 | charge (someone) too little money -02319428 40 v 01 discount 0 006 @ 02320078 v 0000 + 13274597 n 0102 + 00362103 n 0101 + 03206405 n 0103 ~ 02319669 v 0000 ~ 02320200 v 0000 01 + 08 00 | give a reduction in price on; "I never discount these books-they sell like hot cakes" -02319669 40 v 01 allow 1 001 @ 02319428 v 0000 01 + 14 00 | grant as a discount or in exchange; "The camera store owner allowed me $50 on my old camera" -02319824 40 v 01 mark_up 0 003 @ 02351010 v 0000 + 13303880 n 0101 ! 02320078 v 0101 01 + 08 00 | increase the price of -02319946 40 v 01 hold_the_line 0 001 @ 02280132 v 0000 01 + 13 00 | hold the line on prices; keep the price of something constant -02320078 40 v 01 mark_down 0 003 @ 02349597 v 0000 ! 02319824 v 0101 ~ 02319428 v 0000 01 + 08 00 | reduce the price of -02320200 40 v 01 rebate 0 002 @ 02319428 v 0000 + 13282275 n 0101 01 + 02 00 | give a reduction in the price during a sale; "The store is rebating refrigerators this week" -02320374 40 v 02 charge 3 bill 0 011 @ 02265231 v 0000 + 06516955 n 0201 + 13306870 n 0101 + 07190941 n 0101 ~ 02306462 v 0000 ~ 02307008 v 0000 ~ 02308552 v 0000 ~ 02319290 v 0000 ~ 02320773 v 0000 ~ 02320903 v 0000 $ 02321046 v 0000 03 + 08 00 + 09 00 + 14 00 | demand payment; "Will I get charged for this service?"; "We were billed for 4 nights in the hotel, although we stayed only 3 nights" -02320773 40 v 01 surcharge 1 002 @ 02320374 v 0000 + 13325505 n 0101 01 + 09 00 | charge an extra fee, as for a special service -02320903 40 v 01 invoice 0 002 @ 02320374 v 0000 + 06516955 n 0103 01 + 09 00 | send an bill to; "She invoiced the company for her expenses" -02321046 40 v 01 charge 2 005 $ 02320374 v 0000 @ 02265560 v 0000 + 13306870 n 0101 + 13400798 n 0101 + 07190941 n 0101 02 + 08 00 + 15 00 | enter a certain amount as a charge; "he charged me $15" -02321245 40 v 02 chalk_up 0 run_up 0 001 @ 02254155 v 0000 01 + 08 00 | accumulate as a debt; "he chalked up $100 in the course of the evening" -02321391 40 v 01 rob 0 005 @ 02321757 v 0000 + 10534586 n 0101 + 00781685 n 0101 ~ 02277448 v 0000 ~ 02321648 v 0000 03 + 08 00 + 09 00 + 16 00 | take something away by force or without the consent of the owner; "The burglars robbed him of all his money" -02321648 40 v 01 pick 1 002 @ 02321391 v 0000 + 00714477 n 0101 01 + 08 00 | pilfer or rob; "pick pockets" -02321757 40 v 01 steal 0 016 @ 02206619 v 0000 + 10707804 n 0102 + 00780889 n 0105 ~ 02276866 v 0000 ~ 02277138 v 0000 ~ 02277303 v 0000 ~ 02277897 v 0000 ~ 02278061 v 0000 ~ 02292432 v 0000 ~ 02292535 v 0000 ~ 02321391 v 0000 ~ 02322230 v 0000 ~ 02322433 v 0000 ~ 02322596 v 0000 ~ 02345288 v 0000 ~ 02571511 v 0000 02 + 08 00 + 16 00 | take without the owner's consent; "Someone stole my wallet on the train"; "This author stole entire paragraphs from my dissertation" -02322230 40 v 06 hook 1 snitch 0 thieve 0 cop 0 knock_off 0 glom 0 004 @ 02321757 v 0000 + 00780889 n 0304 + 00780889 n 0303 + 10616204 n 0203 01 + 08 00 | take by theft; "Someone snitched my wallet!" -02322433 40 v 01 walk_off 0 001 @ 02321757 v 0000 01 + 22 00 | take without permission; "he walked off with my wife!"; "The thief walked off with my gold watch" -02322596 40 v 03 hustle 0 pluck 1 roll 0 003 @ 02321757 v 0000 + 10663315 n 0104 + 10194566 n 0101 02 + 08 00 + 16 00 | sell something to or obtain something from by energetic and especially underhanded activity -02322810 40 v 01 plant 0 002 @ 02323059 v 0000 ;c 00917211 n 0000 01 + 08 00 | place into a river; "plant fish" -02322924 40 v 01 restock 0 002 @ 02323059 v 0000 ;c 00917211 n 0000 01 + 08 00 | stock again; "He restocked his land with pheasants" -02323059 40 v 01 stock 2 006 @ 02327200 v 0000 + 13367070 n 0102 + 10658304 n 0101 + 01061029 n 0101 ~ 02322810 v 0000 ~ 02322924 v 0000 01 + 21 00 | provide or furnish with a stock of something; "stock the larder with meat" -02323286 40 v 03 stock 1 buy_in 0 stock_up 0 007 @ 02327200 v 0000 ;c 01090446 n 0000 + 04321534 n 0101 + 13367070 n 0102 + 10658304 n 0101 ~ 02323604 v 0000 ~ 02323714 v 0000 01 + 08 00 | amass so as to keep for future use or sale or for a particular occasion or use; "let's stock coffee as long as prices are low" -02323604 40 v 01 overstock 0 002 @ 02323286 v 0000 ! 02323714 v 0101 02 + 02 00 + 08 00 | stock excessively -02323714 40 v 01 understock 0 002 @ 02323286 v 0000 ! 02323604 v 0101 02 + 02 00 + 08 00 | stock with less than the usual or desirable number or quantity -02323870 40 v 01 caption 0 003 @ 02327200 v 0000 + 06347588 n 0102 + 06346891 n 0101 01 + 08 00 | provide with a caption, as of a photograph or a drawing -02324026 40 v 01 borrow 0 003 @ 02210855 v 0000 + 09867633 n 0101 ! 02324182 v 0101 02 + 08 00 + 16 00 | get temporarily; "May I borrow your lawn mower?" -02324182 40 v 02 lend 0 loan 0 008 @ 02199590 v 0000 + 13398953 n 0201 + 00184676 a 0101 + 10254392 n 0101 ! 02324026 v 0101 ~ 02209499 v 0000 ~ 02265726 v 0000 ~ 02283949 v 0000 02 + 14 00 + 15 00 | give temporarily; let have for a limited time; "I will lend you my car"; "loan me some money" -02324478 40 v 06 lend 1 impart 1 bestow 1 contribute 1 add 0 bring 2 006 @ 00126264 v 0000 + 02679415 n 0501 ~ 02324901 v 0000 ~ 02325042 v 0000 ~ 02325405 v 0000 ~ 02356974 v 0000 04 + 04 00 + 08 00 + 11 00 + 15 00 | bestow a quality on; "Her presence lends a certain cachet to the company"; "The music added a lot to the play"; "She brings a special atmosphere to our meetings"; "This adds a light note to the program" -02324901 40 v 01 factor 0 001 @ 02324478 v 0000 01 + 04 00 | be a contributing factor; "make things factor into a company's profitability" -02325042 40 v 02 instill 0 transfuse 0 002 @ 02324478 v 0000 ~ 02325272 v 0000 04 + 04 00 + 08 00 + 11 00 + 15 00 | impart gradually; "Her presence instilled faith into the children"; "transfuse love of music into the students" -02325272 40 v 01 breathe 0 001 @ 02325042 v 0000 01 + 21 00 | impart as if by breathing; "He breathed new life into the old house" -02325405 40 v 01 tinsel 0 002 @ 02324478 v 0000 + 04440210 n 0101 02 + 04 00 + 15 00 | impart a cheap brightness to; "his tinseled image of Hollywood" -02325558 40 v 01 sacrifice 1 004 @ 02613487 v 0000 + 00227595 n 0101 + 10545296 n 0101 ~ 02325736 v 0000 03 + 08 00 + 09 00 + 15 00 | make a sacrifice of; in religious rituals -02325736 40 v 01 immolate 0 002 @ 02325558 v 0000 + 00227969 n 0101 02 + 08 00 + 09 00 | offer as a sacrifice by killing or by giving up to destruction; "The Aztecs immolated human victims"; "immolate the valuables at the temple" -02325968 40 v 01 shop 0 007 * 02207206 v 0000 @ 02238085 v 0000 ;c 01090446 n 0000 + 04202417 n 0101 + 10592397 n 0101 + 00081836 n 0101 ~ 02326198 v 0000 02 + 02 00 + 22 00 | do one's shopping; "She goes shopping every Friday" -02326198 40 v 01 market 5 003 @ 02325968 v 0000 ;c 01090446 n 0000 + 03461385 n 0104 01 + 02 00 | buy household supplies; "We go marketing every Saturday" -02326355 40 v 02 shop 1 browse 0 010 @ 01315613 v 0000 ;c 01090446 n 0000 + 09877587 n 0201 + 04202417 n 0101 + 10592397 n 0101 + 00081836 n 0101 $ 01315333 v 0000 ~ 02326672 v 0000 ~ 02326795 v 0000 ~ 02327074 v 0000 02 + 02 00 + 22 00 | shop around; not necessarily buying; "I don't need help, I'm just browsing" -02326672 40 v 01 comparison-shop 0 002 @ 02326355 v 0000 ;c 01090446 n 0000 01 + 02 00 | compare prices for a given item -02326795 40 v 01 antique 0 003 @ 02326355 v 0000 ;c 01090446 n 0000 + 02723754 n 0101 02 + 02 00 + 22 00 | shop for antiques; "We went antiquing on Saturday" -02326955 40 v 02 take_out 1 buy_food 0 001 @ 02207206 v 0000 01 + 08 00 | purchase prepared food to be eaten at home -02327074 40 v 01 window-shop 0 001 @ 02326355 v 0000 02 + 02 00 + 22 00 | examine the shop windows; shop with the eyes only -02327200 40 v 04 supply 0 provide 0 render 2 furnish 0 105 @ 02199590 v 0000 + 01057200 n 0201 + 10677271 n 0202 + 01057200 n 0102 + 13777344 n 0101 + 10677271 n 0101 + 01057200 n 0103 ~ 00214407 v 0000 ~ 00517847 v 0000 ~ 00734927 v 0000 ~ 01181166 v 0000 ~ 01358191 v 0000 ~ 02216083 v 0000 ~ 02225739 v 0000 ~ 02226380 v 0000 ~ 02226559 v 0000 ~ 02226706 v 0000 ~ 02296726 v 0000 ~ 02296984 v 0000 ~ 02297948 v 0000 ~ 02323059 v 0000 ~ 02323286 v 0000 ~ 02323870 v 0000 ~ 02329292 v 0000 ~ 02329413 v 0000 ~ 02329578 v 0000 ~ 02329733 v 0000 ~ 02329999 v 0000 ~ 02330109 v 0000 ~ 02330247 v 0000 ~ 02330407 v 0000 ~ 02330583 v 0000 ~ 02330742 v 0000 ~ 02330967 v 0000 ~ 02331175 v 0000 ~ 02331326 v 0000 ~ 02331786 v 0000 ~ 02331919 v 0000 ~ 02332086 v 0000 ~ 02332173 v 0000 ~ 02332311 v 0000 ~ 02332445 v 0000 ~ 02332627 v 0000 ~ 02332788 v 0000 ~ 02332891 v 0000 ~ 02332999 v 0000 ~ 02333225 v 0000 ~ 02333358 v 0000 ~ 02333979 v 0000 ~ 02334302 v 0000 ~ 02334595 v 0000 ~ 02334867 v 0000 ~ 02335262 v 0000 ~ 02335363 v 0000 ~ 02335629 v 0000 ~ 02335904 v 0000 ~ 02336015 v 0000 ~ 02336255 v 0000 ~ 02336375 v 0000 ~ 02336483 v 0000 ~ 02336684 v 0000 ~ 02336947 v 0000 ~ 02337066 v 0000 ~ 02337364 v 0000 ~ 02337545 v 0000 ~ 02337699 v 0000 ~ 02337870 v 0000 ~ 02338003 v 0000 ~ 02338227 v 0000 ~ 02338386 v 0000 ~ 02338975 v 0000 ~ 02339171 v 0000 ~ 02339413 v 0000 ~ 02340736 v 0000 ~ 02341816 v 0000 ~ 02352395 v 0000 ~ 02352704 v 0000 ~ 02352824 v 0000 ~ 02352946 v 0000 ~ 02353201 v 0000 ~ 02353408 v 0000 ~ 02353537 v 0000 ~ 02353844 v 0000 ~ 02354112 v 0000 ~ 02354287 v 0000 ~ 02355806 v 0000 ~ 02356113 v 0000 ~ 02356420 v 0000 ~ 02356704 v 0000 ~ 02357561 v 0000 ~ 02357693 v 0000 ~ 02357873 v 0000 ~ 02359690 v 0000 ~ 02360274 v 0000 ~ 02360497 v 0000 ~ 02360702 v 0000 ~ 02361329 v 0000 ~ 02361600 v 0000 ~ 02361811 v 0000 ~ 02361981 v 0000 ~ 02363128 v 0000 ~ 02363597 v 0000 ~ 02366105 v 0000 ~ 02366884 v 0000 ~ 02656390 v 0000 06 + 08 00 + 09 00 + 10 00 + 11 00 + 17 00 + 31 00 | give something useful or necessary to; "We provided the room with an electrical heater" -02329292 40 v 01 tube 0 002 @ 02327200 v 0000 + 05246511 n 0101 01 + 08 00 | provide with a tube or insert a tube into -02329413 40 v 01 ticket 1 002 @ 02327200 v 0000 + 06518719 n 0101 01 + 09 00 | provide with a ticket for passage or admission; "Ticketed passengers can board now" -02329578 40 v 01 stock 5 004 @ 02327200 v 0000 ;c 00917211 n 0000 + 08101410 n 0103 $ 02329733 v 0000 01 + 08 00 | supply with livestock; "stock a farm" -02329733 40 v 01 stock 6 004 $ 02329578 v 0000 @ 02327200 v 0000 ;c 00917211 n 0000 + 13367070 n 0102 01 + 08 00 | supply with fish; "stock a lake" -02329883 40 v 01 stock 7 002 @ 02339413 v 0000 + 04322026 n 0101 01 + 08 00 | equip with a stock; "stock a rifle" -02329999 40 v 01 rim 0 002 @ 02327200 v 0000 + 13902336 n 0101 01 + 08 00 | furnish with a rim; "rim a hat" -02330109 40 v 01 fret 0 002 @ 02327200 v 0000 + 03396074 n 0101 01 + 08 00 | provide (a musical instrument) with frets; "fret a guitar" -02330247 40 v 01 step 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 04314914 n 0101 01 + 08 00 | furnish with steps; "The architect wants to step the terrace" -02330407 40 v 01 rail 0 005 @ 02327200 v 0000 ;c 00610738 n 0000 + 04046590 n 0101 + 04047401 n 0102 + 04047401 n 0101 01 + 08 00 | provide with rails; "The yard was railed" -02330583 40 v 01 grate 0 004 @ 02327200 v 0000 + 03454707 n 0101 + 03454536 n 0101 + 03454536 n 0102 01 + 08 00 | furnish with a grate; "a grated fireplace" -02330742 40 v 02 capitalize 2 capitalise 2 002 @ 02327200 v 0000 + 13354420 n 0201 01 + 08 00 | supply with capital, as of a business by using a combination of capital used by investors and debt capital provided by lenders -02330967 40 v 01 alphabetize 0 003 @ 02327200 v 0000 ;c 06282651 n 0000 + 06497459 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | provide with an alphabet; "Cyril and Method alphabetized the Slavic languages" -02331175 40 v 01 wharf 1 003 @ 02327200 v 0000 + 03933529 n 0102 + 03933529 n 0103 01 + 08 00 | provide with a wharf; "Wharf the mouth of the river" -02331326 40 v 02 air-cool 0 air-condition 0 004 @ 02327200 v 0000 ;c 00610738 n 0000 + 02686379 n 0201 + 02686379 n 0202 02 + 08 00 + 11 00 | equip with an apparatus for controlling the humidity and temperature; "Our house is not air-conditioned" -02331575 40 v 01 air-condition 1 003 @ 00515154 v 0000 + 02686379 n 0101 + 02686379 n 0102 02 + 08 00 + 11 00 | control the humidity and temperature of; "The room was cool because it had been air-conditioned" -02331786 40 v 01 uniform 0 002 @ 02327200 v 0000 + 04509592 n 0101 01 + 09 00 | provide with uniforms; "The guards were uniformed" -02331919 40 v 01 railroad 0 004 @ 02327200 v 0000 + 04048568 n 0102 + 04048075 n 0102 + 00951037 n 0102 01 + 08 00 | supply with railroad lines; "railroad the West" -02332086 40 v 01 partner 0 001 @ 02327200 v 0000 01 + 09 00 | provide with a partner -02332173 40 v 02 bewhisker 0 whisker 0 002 @ 02327200 v 0000 + 01901828 n 0201 01 + 08 00 | furnish with whiskers; "a whiskered jersey" -02332311 40 v 01 subtitle 0 003 @ 02327200 v 0000 ;c 06157326 n 0000 + 06347588 n 0101 01 + 08 00 | supply (a movie) with subtitles -02332445 40 v 01 headline 0 004 @ 02327200 v 0000 ;c 01101958 n 0000 + 06344461 n 0101 + 10163723 n 0101 02 + 08 00 + 11 00 | provide (a newspaper page or a story) with a headline -02332627 40 v 01 match 0 001 @ 02327200 v 0000 03 + 08 00 + 09 00 + 11 00 | provide funds complementary to; "The company matched the employees' contributions" -02332788 40 v 01 hobnail 0 002 @ 02327200 v 0000 + 03523849 n 0101 01 + 08 00 | supply with hobnails -02332891 40 v 01 wive 0 001 @ 02327200 v 0000 01 + 09 00 | provide with a wife; marry (someone) to a wife -02332999 40 v 01 victual 2 006 @ 02327200 v 0000 + 07556637 n 0105 + 10753182 n 0101 + 10681557 n 0102 + 10753182 n 0102 + 10681557 n 0103 02 + 08 00 + 09 00 | supply with food; "The population was victualed during the war" -02333225 40 v 02 surfeit 0 cloy 0 003 @ 02327200 v 0000 + 00841628 n 0102 + 14452294 n 0101 01 + 08 00 | supply or feed to surfeit -02333358 40 v 01 heat 0 009 @ 02327200 v 0000 + 01249137 a 0101 + 03509025 n 0104 + 05725527 n 0101 + 05016171 n 0102 + 11466043 n 0101 + 03508101 n 0101 + 03509025 n 0103 ~ 02333599 v 0000 01 + 08 00 | provide with heat; "heat the house" -02333599 40 v 01 steam-heat 0 001 @ 02333358 v 0000 01 + 08 00 | heat by means of steam -02333689 40 v 03 locate 1 place 0 site 0 007 @ 01088923 v 0000 + 08651247 n 0301 + 00586262 n 0207 + 08513718 n 0201 + 05075602 n 0201 + 01051331 n 0102 + 00027167 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | assign a location to; "The company located some of their agents in Los Angeles" -02333979 40 v 01 seat 0 006 @ 02327200 v 0000 ;c 00610738 n 0000 + 04161358 n 0101 + 08647616 n 0101 + 04161981 n 0101 ~ 02334173 v 0000 01 + 08 00 | provide with seats; "seat a concert hall" -02334173 40 v 01 reseat 0 002 @ 02333979 v 0000 ;c 00610738 n 0000 01 + 08 00 | provide with new seats; "reseat Carnegie Hall" -02334302 40 v 01 seat 1 005 @ 02327200 v 0000 ;c 00607542 n 0000 + 08647616 n 0101 + 04161981 n 0101 ~ 02334458 v 0000 01 + 08 00 | put a seat on a chair -02334458 40 v 01 reseat 1 002 @ 02334302 v 0000 ;c 00607542 n 0000 01 + 08 00 | provide with a new seat; "reseat the old broken chair" -02334595 40 v 01 ramp 0 004 @ 02327200 v 0000 ;c 00610738 n 0000 + 04615728 n 0101 + 04051549 n 0101 01 + 08 00 | furnish with a ramp; "The ramped auditorium" -02334756 40 v 01 munition 0 002 @ 02334867 v 0000 + 04566257 n 0105 02 + 08 00 + 09 00 | supply with weapons -02334867 40 v 01 arm 0 005 @ 02327200 v 0000 + 02738031 n 0101 + 04565375 n 0102 ~ 02334756 v 0000 ~ 02335078 v 0000 02 + 08 00 + 09 00 | supply with arms; "The U.S. armed the freedom fighters in Afghanistan" -02335078 40 v 01 rearm 0 002 @ 02334867 v 0000 + 01157384 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | arm again; "After the war, the defeated country was not rearmed by the victors" -02335262 40 v 01 interleave 0 001 @ 02327200 v 0000 01 + 08 00 | provide (books) with blank leaves -02335363 40 v 02 glass 0 glaze 0 004 @ 02327200 v 0000 + 10132145 n 0204 + 14881303 n 0101 ~ 02335527 v 0000 01 + 08 00 | furnish with glass; "glass the windows" -02335527 40 v 01 double-glaze 0 001 @ 02335363 v 0000 01 + 08 00 | provide with two sheets of glass -02335629 40 v 03 crenel 0 crenelate 0 crenellate 0 010 @ 02327200 v 0000 ;c 00610738 n 0000 + 03130340 n 0302 + 03130340 n 0301 + 02811936 n 0303 + 00911572 n 0302 + 03130340 n 0202 + 03130340 n 0201 + 02811936 n 0202 + 00911572 n 0201 01 + 08 00 | supply with battlements -02335904 40 v 01 causeway 0 001 @ 02327200 v 0000 01 + 08 00 | provide with a causeway; "A causewayed swamp" -02336015 40 v 03 canal 0 canalize 0 canalise 0 008 @ 02327200 v 0000 + 01142843 n 0302 + 02947212 n 0301 + 01142843 n 0201 + 02947212 n 0201 + 01142843 n 0102 + 01142843 n 0101 + 02947212 n 0101 01 + 08 00 | provide (a city) with a canal -02336255 40 v 01 bush 0 003 @ 02327200 v 0000 + 02925250 n 0101 + 02925107 n 0101 01 + 08 00 | provide with a bushing -02336375 40 v 01 brattice 0 001 @ 02327200 v 0000 01 + 08 00 | supply with a brattice, to ventilate mines -02336483 40 v 01 furnish 1 004 @ 02327200 v 0000 + 03405725 n 0101 + 03405265 n 0101 ~ 02336807 v 0000 01 + 08 00 | provide or equip with furniture; "We furnished the house in the Biedermeyer style" -02336684 40 v 01 slat 0 002 @ 02327200 v 0000 + 04234455 n 0101 01 + 08 00 | equip or bar with slats; "Slat the windows" -02336807 40 v 01 refurnish 0 001 @ 02336483 v 0000 01 + 08 00 | furnish with new or different furniture; "We refurnished the living room" -02336947 40 v 01 berth 0 003 @ 02327200 v 0000 + 08640111 n 0103 + 02831724 n 0101 01 + 09 00 | provide with a berth -02337066 40 v 01 bed 0 003 @ 02327200 v 0000 + 02818832 n 0101 ~ 02337230 v 0000 01 + 08 00 | furnish with a bed; "The inn keeper could bed all the new arrivals" -02337230 40 v 01 bunk 0 002 @ 02337066 v 0000 + 02920259 n 0102 01 + 09 00 | provide with a bunk; "We bunked the children upstairs" -02337364 40 v 02 computerize 1 computerise 1 003 @ 02327200 v 0000 + 03082979 n 0201 + 03082979 n 0101 01 + 08 00 | provide with computers; "Our office is fully computerized now" -02337545 40 v 01 costume 0 003 @ 02327200 v 0000 ;c 06157326 n 0000 + 09968259 n 0102 02 + 08 00 + 09 00 | furnish with costumes; as for a film or play -02337699 40 v 01 bottom 0 004 @ 02327200 v 0000 ;c 00607542 n 0000 + 08511970 n 0101 + 08511241 n 0101 01 + 08 00 | provide with a bottom or a seat; "bottom the chairs" -02337870 40 v 01 rafter 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 04045644 n 0101 01 + 08 00 | provide (a ceiling) with rafters -02338003 40 v 01 tool 0 002 @ 02327200 v 0000 + 04451818 n 0101 02 + 08 00 + 09 00 | furnish with tools -02338109 40 v 01 retool 0 001 @ 02257767 v 0000 02 + 08 00 + 09 00 | provide (a workshop or factory) with new tools -02338227 40 v 01 key 0 002 @ 02327200 v 0000 + 03613294 n 0101 01 + 09 00 | provide with a key; "We were keyed after the locks were changed in the building" -02338386 40 v 01 fuel 0 006 @ 02327200 v 0000 + 14875077 n 0101 + 01059719 n 0101 ~ 02338629 v 0000 ~ 02338729 v 0000 ~ 02338872 v 0000 01 + 08 00 | provide with a combustible substance that provides energy; "fuel aircraft, ships, and cars" -02338629 40 v 01 gas_up 0 001 @ 02338386 v 0000 01 + 08 00 | fill with gasoline; "Gas up the car" -02338729 40 v 01 refuel 1 002 @ 02338386 v 0000 + 01059719 n 0102 01 + 08 00 | provide with additional fuel, as of aircraft, ships, and cars -02338872 40 v 01 bunker 0 001 @ 02338386 v 0000 01 + 08 00 | fill (a ship's bunker) with coal or oil -02338975 40 v 02 provision 0 purvey 0 006 @ 02327200 v 0000 + 10495299 n 0201 + 01060924 n 0201 + 01057200 n 0101 + 13367448 n 0101 + 10681557 n 0104 02 + 08 00 + 09 00 | supply with provisions -02339171 40 v 03 yield 2 give 5 afford 0 004 @ 02327200 v 0000 ~ 00539936 v 0000 $ 02316868 v 0000 ~ 02721438 v 0000 01 + 11 00 | be the cause or source of; "He gave me a lot of trouble"; "Our meeting afforded much interesting information" -02339413 40 v 04 equip 0 fit 0 fit_out 0 outfit 0 034 @ 02327200 v 0000 + 03619396 n 0402 + 03859958 n 0401 + 10387712 n 0401 + 01157138 n 0401 + 02730568 n 0202 + 03294048 n 0101 + 03730153 n 0102 + 01156899 n 0103 ~ 00408085 v 0000 ~ 00480751 v 0000 ~ 01137829 v 0000 ~ 01215694 v 0000 ~ 01241379 v 0000 ~ 02225911 v 0000 ~ 02226013 v 0000 ~ 02226172 v 0000 ~ 02329883 v 0000 ~ 02340247 v 0000 ~ 02340360 v 0000 ~ 02340543 v 0000 ~ 02340897 v 0000 ~ 02341200 v 0000 ~ 02341370 v 0000 ~ 02341491 v 0000 ~ 02341592 v 0000 ~ 02341684 v 0000 ~ 02342016 v 0000 ~ 02354536 v 0000 ~ 02362601 v 0000 ~ 02362700 v 0000 ~ 02362798 v 0000 ~ 02386675 v 0000 ~ 02475401 v 0000 03 + 08 00 + 09 00 + 17 00 | provide with (something) usually for a specific purpose; "The expedition was equipped with proper clothing, food, and other necessities" -02340247 40 v 01 horseshoe 0 001 @ 02339413 v 0000 01 + 08 00 | equip (a horse) with a horseshoe or horseshoes -02340360 40 v 01 turn_out 3 002 @ 02339413 v 0000 + 03859958 n 0104 04 + 08 00 + 09 00 + 10 00 + 11 00 | outfit or equip, as with accessories; "The actors were turned out lavishly" -02340543 40 v 01 instrument 0 004 @ 02339413 v 0000 + 00173761 n 0101 + 03575240 n 0102 + 00097348 n 0101 02 + 08 00 + 10 00 | equip with instruments for measuring, recording, or controlling -02340736 40 v 02 transistorize 0 transistorise 0 002 @ 02327200 v 0000 + 04471632 n 0101 01 + 08 00 | equip (an electronic circuit or device) with transistors -02340897 40 v 01 muzzle 0 004 @ 02339413 v 0000 ! 02341086 v 0101 + 03803284 n 0101 + 10342893 n 0101 01 + 08 00 | fit with a muzzle; "muzzle the dog to prevent it from biting strangers" -02341086 40 v 01 unmuzzle 0 002 @ 02224055 v 0000 ! 02340897 v 0101 01 + 08 00 | remove the muzzle from (a dog) -02341200 40 v 03 kit_out 0 kit_up 0 kit 0 003 @ 02339413 v 0000 + 03619396 n 0301 + 03619650 n 0301 03 + 08 00 + 09 00 + 17 00 | supply with a set of articles or tools -02341370 40 v 01 appoint 0 001 @ 02339413 v 0000 03 + 08 00 + 09 00 + 17 00 | furnish; "a beautifully appointed house" -02341491 40 v 02 re-equip 0 rejig 0 001 @ 02339413 v 0000 01 + 08 00 | re-equip a factory or plant -02341592 40 v 01 refit 0 001 @ 02339413 v 0000 03 + 08 00 + 09 00 + 17 00 | fit out again -02341684 40 v 02 armor 0 armour 0 003 @ 02339413 v 0000 + 02739668 n 0202 + 02739668 n 0101 02 + 08 00 + 09 00 | equip with armor -02341816 40 v 01 upholster 0 005 @ 02327200 v 0000 ;c 00607542 n 0000 + 10740482 n 0101 + 04513827 n 0101 + 01120348 n 0101 01 + 08 00 | provide furniture with padding, springs, webbing, and covers -02342016 40 v 02 accouter 0 accoutre 0 001 @ 02339413 v 0000 02 + 08 00 + 09 00 | provide with military equipment -02342132 40 v 01 supplement 0 009 @ 00182406 v 0000 * 02327200 v 0000 + 02671421 n 0103 + 05110772 n 0101 + 05110772 n 0102 ~ 02342422 v 0000 ~ 02342580 v 0000 ~ 02359839 v 0000 $ 02752931 v 0000 02 + 08 00 + 31 00 | add as a supplement to what seems insufficient; "supplement your diet" -02342422 40 v 02 vitaminize 0 vitaminise 0 002 @ 02342132 v 0000 + 15089258 n 0101 01 + 08 00 | add vitamins as a supplement; "vitaminized processed foods" -02342580 40 v 02 eke_out 2 fill_out 0 001 @ 02342132 v 0000 01 + 08 00 | supplement what is thought to be deficient; "He eked out his meager pay by giving private lessons"; "Braque eked out his collages with charcoal" -02342800 40 v 04 thrive 0 prosper 0 fly_high 0 flourish 0 001 @ 00146138 v 0000 02 + 01 00 + 02 00 | make steady progress; be at the high point in one's career or reach a high point in historical significance or importance; "The new student is thriving" -02343056 40 v 01 bank 1 007 @ 02410855 v 0000 + 00018069 a 0101 + 09837824 n 0101 + 08420278 n 0102 + 02787772 n 0101 + 01100658 n 0101 $ 02343252 v 0000 01 + 02 00 | be in the banking business -02343252 40 v 01 bank 3 002 $ 02343056 v 0000 @ 01095899 v 0000 01 + 02 00 | act as the banker in a game or in gambling -02343374 40 v 01 bank 2 005 @ 02245765 v 0000 + 00018069 a 0101 + 08420278 n 0102 + 02787772 n 0101 + 01100273 n 0101 01 + 22 00 | do business with a bank or keep an account at a bank; "Where do you bank in this town?" -02343595 40 v 02 sacrifice 0 give a 004 $ 00732224 v 0000 $ 00887463 v 0000 @ 02316304 v 0000 + 00205891 n 0103 02 + 08 00 + 15 00 | endure the loss of; "He gave his life for his children"; "I gave two sons to the war" -02343816 40 v 02 sign_away 0 sign_over 0 001 @ 02235229 v 0000 02 + 08 00 + 15 00 | formally assign ownership of; "She signed away her rights" -02343961 40 v 01 sacrifice 2 002 @ 02242464 v 0000 + 13328073 n 0101 01 + 08 00 | sell at a loss -02344060 40 v 02 requite 0 repay 1 005 @ 02199590 v 0000 + 13299651 n 0201 + 01121690 n 0202 + 01235137 n 0101 ~ 02344243 v 0000 01 + 08 00 | make repayment for or return something -02344243 40 v 01 pay d 002 $ 01153947 v 0000 @ 02344060 v 0000 01 + 08 00 | make a compensation for; "a favor that cannot be paid back" -02344381 40 v 03 reward 0 repay 2 pay_back 0 002 @ 02367363 v 0000 + 07295629 n 0102 03 + 08 00 + 09 00 + 17 00 | act or give recompense in recognition of someone's behavior or actions -02344568 40 v 09 plunder 0 despoil 0 loot 0 reave 0 strip 0 rifle 0 ransack 0 pillage 0 foray 0 014 @ 02206619 v 0000 + 13262663 n 0803 + 10443170 n 0802 + 00965895 n 0803 + 10443170 n 0303 + 13262663 n 0301 + 00966599 n 0301 + 00966869 n 0205 + 00966869 n 0206 + 10443170 n 0205 + 10443170 n 0101 + 13262663 n 0104 + 00965895 n 0101 ~ 02315048 v 0000 01 + 08 00 | steal goods; take as spoils; "During the earthquake people looted the stores that were deserted by their owners" -02345048 40 v 02 sack 0 plunder 1 007 * 01564144 v 0000 @ 02206619 v 0000 + 10443170 n 0201 + 13262663 n 0204 + 00777439 n 0201 + 00965895 n 0201 + 00967446 n 0101 01 + 08 00 | plunder (a town) after capture; "the barbarians sacked Rome" -02345288 40 v 02 loot 1 plunder 2 003 @ 02321757 v 0000 ;c 00766234 n 0000 + 13262663 n 0204 03 + 02 00 + 08 00 + 09 00 | take illegally; of intellectual property; "This writer plundered from famous authors" -02345498 40 v 03 scrimp 0 stint 0 skimp 0 002 @ 02266920 v 0000 + 10656832 n 0201 01 + 13 00 | subsist on a meager allowance; "scratch and scrimp" -02345647 40 v 04 spare 0 give_up 5 part_with 0 dispense_with 1 001 @ 02199590 v 0000 01 + 08 00 | give up what is not strictly needed; "he asked if they could spare one of their horses to speed his journey" -02345856 40 v 01 smuggle 0 006 @ 02346409 v 0000 @ 02346136 v 0000 ;c 00766234 n 0000 ;c 01090446 n 0000 + 10615334 n 0101 + 01112132 n 0101 05 + 02 00 + 08 00 + 09 00 + 20 00 + 21 00 | import or export without paying customs duties; "She smuggled cigarettes across the border" -02346136 40 v 01 import 0 011 @ 02260362 v 0000 ;c 01090446 n 0000 + 03564667 n 0102 + 01111750 n 0102 + 10200531 n 0102 + 10200531 n 0101 + 03564667 n 0101 + 10201366 n 0101 + 01111750 n 0101 ! 02346409 v 0101 ~ 02345856 v 0000 02 + 08 00 + 21 00 | bring in from abroad -02346409 40 v 01 export 0 009 @ 02260362 v 0000 ;c 01090446 n 0000 + 03306207 n 0102 + 01111952 n 0102 + 03306207 n 0101 + 10073634 n 0101 + 01111952 n 0101 ! 02346136 v 0101 ~ 02345856 v 0000 03 + 08 00 + 16 00 + 21 00 | sell or transfer abroad; "we export less than we import and have a negative trade balance" -02346724 40 v 04 adopt 0 borrow 1 take_over 5 take_up 0 003 @ 02236124 v 0000 + 01034296 a 0102 + 00084371 n 0102 02 + 08 00 + 16 00 | take up and practice as one's own -02346895 40 v 03 adopt 2 follow 0 espouse 0 006 $ 02542280 v 0000 @ 00674607 v 0000 + 00180413 n 0304 + 08223263 n 0201 + 00180413 n 0101 ~ 02638845 v 0000 01 + 08 00 | choose and follow; as of theories, ideas, policies, strategies or plans; "She followed the feminist movement"; "The candidate espouses Republican ideals" -02347220 40 v 03 pawn 0 soak 3 hock 0 005 @ 02347637 v 0000 ;c 01090446 n 0000 + 02463205 n 0301 + 01111236 n 0101 + 13350875 n 0101 01 + 08 00 | leave as a guarantee in return for money; "pawn your grandfather's gold watch" -02347447 40 v 01 check 0 003 @ 02347637 v 0000 + 09913110 n 0101 $ 02347905 v 0000 01 + 15 00 | hand over something to somebody as for temporary safekeeping; "Check your coat at the door" -02347637 40 v 02 consign 0 charge 4 008 @ 02349212 v 0000 + 09909760 n 0201 + 09958569 n 0101 + 09958447 n 0101 ~ 00886281 v 0000 ~ 02347220 v 0000 ~ 02347447 v 0000 ~ 02347905 v 0000 01 + 15 00 | give over to another for care or safekeeping; "consign your baggage" -02347905 40 v 01 check d 002 $ 02347447 v 0000 @ 02347637 v 0000 01 + 08 00 | consign for shipment on a vehicle; "check your luggage before boarding" -02348057 40 v 01 recommit 0 001 @ 02349212 v 0000 02 + 08 00 + 15 00 | commit again; "It was recommitted into her custody" -02348182 40 v 01 obligate 0 002 @ 02349212 v 0000 + 14490110 n 0101 01 + 08 00 | commit in order to fulfill an obligation; "obligate money" -02348324 40 v 01 consign 1 003 @ 02228031 v 0000 + 01165692 n 0103 + 09958569 n 0102 01 + 21 00 | commit forever; commit irrevocably -02348459 40 v 01 consign 2 002 @ 01438304 v 0000 + 00317917 n 0101 02 + 08 00 + 21 00 | send to an address -02348568 40 v 05 commit 2 institutionalize 0 institutionalise 0 send 0 charge 5 007 @ 02232190 v 0000 + 03746574 n 0304 + 00240184 n 0304 + 03746574 n 0204 + 01165692 n 0101 + 01165692 n 0102 ~ 02348927 v 0000 01 + 20 00 | cause to be admitted; of persons to an institution; "After the second episode, she had to be committed"; "he was committed to prison" -02348927 40 v 02 hospitalize 0 hospitalise 0 007 @ 02348568 v 0000 + 00658627 n 0202 + 15119185 n 0101 + 14576053 n 0101 + 00658627 n 0101 + 08054417 n 0101 + 03540595 n 0101 01 + 09 00 | admit into a hospital; "Mother had to be hospitalized because her blood pressure was too high" -02349212 40 v 05 entrust 0 intrust 0 trust 0 confide 0 commit 0 011 @ 02230772 v 0000 + 08324514 n 0501 + 13929852 n 0401 + 13929852 n 0302 + 04895246 n 0301 + 10516294 n 0302 + 10732314 n 0301 ~ 00883112 v 0000 ~ 02347637 v 0000 ~ 02348057 v 0000 ~ 02348182 v 0000 01 + 15 00 | confer a trust upon; "The messenger was entrusted with the general's secret"; "I commit my soul to God" -02349597 40 v 02 shave 0 knock_off 3 002 @ 00429060 v 0000 ~ 02320078 v 0000 01 + 08 00 | cut the price of -02349706 40 v 01 secure 1 002 @ 00890100 v 0000 ~ 02349813 v 0000 02 + 08 00 + 11 00 | assure payment of -02349813 40 v 01 certify 2 003 @ 02349706 v 0000 + 00154233 n 0102 + 13416345 n 0102 01 + 08 00 | guarantee payment on; of checks -02349945 40 v 01 defray 0 003 @ 02251743 v 0000 + 01120448 n 0103 + 01120448 n 0102 01 + 08 00 | bear the expenses of -02350065 40 v 02 harbor 0 harbour 0 001 @ 02202384 v 0000 01 + 08 00 | keep in one's possession; of animals -02350175 40 v 03 rid 0 free 2 disembarrass 0 009 + 07305760 n 0301 + 00395333 n 0102 ^ 02629256 v 0102 ~ 00501896 v 0000 ~ 02312996 v 0000 ~ 02313098 v 0000 ~ 02350440 v 0000 ~ 02350620 v 0000 ~ 02350767 v 0000 01 + 18 00 | relieve from; "Rid the house of pests" -02350440 40 v 01 clear c 002 @ 02350175 v 0000 + 00264192 n 0101 02 + 08 00 + 11 00 | clear from impurities, blemishes, pollution, etc.; "clear the water before it can be drunk" -02350620 40 v 01 disinfest 0 002 @ 02350175 v 0000 + 00251520 n 0101 02 + 08 00 + 11 00 | rid of vermin; "The exterminator disinfests the house" -02350767 40 v 01 disembody 0 001 @ 02350175 v 0000 01 + 10 00 | free from a body or physical form or reality -02350878 40 v 02 dump 1 underprice 0 002 @ 02242464 v 0000 + 01115589 n 0101 02 + 08 00 + 21 00 | sell at artificially low prices -02351010 40 v 01 price 0 007 @ 00699815 v 0000 + 13303315 n 0101 + 05736736 n 0101 ~ 02319824 v 0000 ~ 02351239 v 0000 ~ 02351378 v 0000 ~ 02351616 v 0000 01 + 08 00 | determine the price of; "The grocer priced his wares high" -02351239 40 v 02 rig 0 manipulate 0 002 @ 02351010 v 0000 + 00780148 n 0103 01 + 08 00 | manipulate in a fraudulent manner; "rig prices" -02351378 40 v 01 overprice 0 001 @ 02351010 v 0000 01 + 08 00 | price excessively high -02351467 40 v 02 undersell 0 undercut 0 003 @ 02242464 v 0000 * 02319428 v 0000 + 10736926 n 0101 01 + 09 00 | sell cheaper than one's competition -02351616 40 v 01 underquote 0 001 @ 02351010 v 0000 01 + 08 00 | offer for sale at a price lower than the market price -02351737 40 v 01 mortgage 0 006 @ 02253956 v 0000 + 10331347 n 0101 + 10331569 n 0102 + 10331569 n 0101 + 13352138 n 0101 ~ 02351925 v 0000 01 + 08 00 | put up as security or collateral -02351925 40 v 01 bond 0 002 @ 02351737 v 0000 + 13417410 n 0101 01 + 08 00 | issue bonds on -02352019 40 v 02 liquidate 0 pay_off 0 004 @ 02252931 v 0000 + 00228535 n 0101 ~ 02352181 v 0000 ~ 02352263 v 0000 01 + 08 00 | eliminate by paying off (debts) -02352181 40 v 01 lift 2 001 @ 02352019 v 0000 01 + 08 00 | pay off (a mortgage) -02352263 40 v 02 amortize 0 amortise 0 003 @ 02352019 v 0000 + 01121070 n 0202 + 01121070 n 0101 01 + 08 00 | liquidate gradually -02352395 40 v 01 cleat 0 002 @ 02327200 v 0000 + 03041265 n 0101 01 + 08 00 | provide with cleats; "cleat running shoes for better traction" -02352538 40 v 01 close_out 0 002 @ 02222318 v 0000 + 01118890 n 0101 01 + 08 00 | terminate by selling off or disposing of; "He closed out his line of sports cars" -02352704 40 v 01 coal 0 002 @ 02327200 v 0000 + 14814616 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | supply with coal -02352824 40 v 01 corbel 0 003 @ 02327200 v 0000 ;c 06123363 n 0000 + 03105467 n 0101 01 + 08 00 | furnish with a corbel -02352946 40 v 01 cornice 0 004 @ 02327200 v 0000 ;c 06123363 n 0000 + 03111041 n 0101 + 03111296 n 0101 01 + 08 00 | furnish with a cornice -02353088 40 v 01 snag 0 001 @ 02238085 v 0000 01 + 08 00 | get by acting quickly and smartly; "snag a bargain" -02353201 40 v 01 constitutionalize 0 002 @ 02327200 v 0000 + 06533648 n 0103 01 + 08 00 | provide with a constitution, as of a country; "The United States were constitutionalized in the late 18th century" -02353408 40 v 01 copper-bottom 0 001 @ 02327200 v 0000 01 + 08 00 | provide with a copper bottom; "copper-bottom a frying pan" -02353537 40 v 01 curtain 0 002 @ 02327200 v 0000 + 03151077 n 0101 01 + 08 00 | provide with drapery; "curtain the bedrooms" -02353664 40 v 01 distrain 0 001 @ 02273293 v 0000 01 + 08 00 | confiscate by distress -02353752 40 v 01 distrain 1 001 @ 02306462 v 0000 02 + 08 00 + 09 00 | levy a distress on -02353844 40 v 01 gate 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 03427296 n 0101 01 + 08 00 | supply with a gate; "The house was gated" -02353984 40 v 01 impulse-buy 0 002 @ 02207206 v 0000 ;c 01090446 n 0000 01 + 08 00 | buy on impulse without proper reflection -02354112 40 v 01 index 0 005 @ 02327200 v 0000 ;c 01101958 n 0000 + 06491786 n 0101 + 10203016 n 0101 + 01013156 n 0101 01 + 08 00 | provide with an index; "index the book" -02354287 40 v 02 joint 0 articulate 0 007 @ 02327200 v 0000 ;c 00607775 n 0000 + 13911151 n 0201 + 05595083 n 0202 + 00147314 n 0201 + 13911151 n 0103 + 03601638 n 0101 01 + 08 00 | provide with a joint; "the carpenter jointed two pieces of wood" -02354536 40 v 01 wire 0 005 @ 02339413 v 0000 + 04594489 n 0101 + 10783734 n 0102 + 04595855 n 0101 ~ 02354736 v 0000 01 + 08 00 | provide with electrical circuits; "wire the addition to the house" -02354736 40 v 01 rewire 0 001 @ 02354536 v 0000 01 + 08 00 | provide with new wiring; "the university rewired the dormitories when most students brought computers and television sets" -02354922 40 v 01 dispose b 003 @ 02242464 v 0000 + 00043609 n 0102 ~ 02355109 v 0000 02 + 08 00 + 11 00 | give, sell, or transfer to another; "She disposed of her parents' possessions" -02355109 40 v 01 redispose 0 002 @ 02354922 v 0000 + 01143760 n 0102 02 + 08 00 + 11 00 | dispose anew; "The goods were redisposed at a great loss" -02355259 40 v 01 kick_back 0 003 @ 02251743 v 0000 ;c 00766234 n 0000 + 13284784 n 0101 02 + 08 00 + 15 00 | pay a kickback; make an illegal payment -02355410 40 v 01 pick_up 2 001 @ 02210855 v 0000 02 + 08 00 + 11 00 | get in addition, as an increase; "The candidate picked up thousands of votes after his visit to the nursing home" -02355596 40 v 03 have 2 get 1 make 2 002 @ 01111816 v 0000 $ 00012267 v 0000 02 + 08 00 + 11 00 | achieve a point or goal; "Nicklaus had a 70"; "The Brazilian team got 4 goals"; "She made 29 points that day" -02355806 40 v 01 pour 0 001 @ 02327200 v 0000 01 + 21 00 | supply in large amounts or quantities; "We poured money into the education of our children" -02355959 40 v 01 move 0 001 @ 02242464 v 0000 01 + 08 00 | dispose of by selling; "The chairman of the company told the salesmen to move the computers" -02356113 40 v 01 pump 0 001 @ 02327200 v 0000 01 + 21 00 | supply in great quantities; "Pump money into a project" -02356230 40 v 02 entrust 1 leave 6 001 @ 02230772 v 0000 01 + 15 00 | put into the care or protection of someone; "He left the decision to his deputy"; "leave your child the nurse's care" -02356420 40 v 02 fuel 1 fire 0 003 @ 02327200 v 0000 + 13480848 n 0201 + 14875077 n 0101 01 + 11 00 | provide with fuel; "Oil fires the furnace" -02356567 40 v 01 remember 0 002 @ 02229055 v 0000 + 06688522 n 0103 01 + 09 00 | show appreciation to; "He remembered her in his will" -02356704 40 v 03 flood 0 oversupply 0 glut 0 004 @ 02327200 v 0000 + 05119837 n 0301 + 05119837 n 0202 + 13775706 n 0101 03 + 08 00 + 11 00 + 17 00 | supply with an excess of; "flood the market with tennis shoes"; "Glut the country with cheap imports from the Orient" -02356974 40 v 01 throw_in 0 001 @ 02324478 v 0000 01 + 08 00 | add as an extra or as a gratuity -02357072 40 v 01 return 3 003 @ 02372326 v 0000 + 07199922 n 0103 ~ 02137020 v 0000 01 + 08 00 | return in kind; "return a compliment"; "return her love" -02357228 40 v 03 save 4 economize 2 economise 2 008 @ 02267060 v 0000 + 10044470 n 0302 + 10044470 n 0201 + 05644727 n 0201 + 04893787 n 0201 + 00192613 n 0201 + 10553627 n 0101 ~ 02268704 v 0000 02 + 02 00 + 11 00 | spend sparingly, avoid the waste of; "This move will save money"; "The less fortunate will have to economize now" -02357561 40 v 01 toggle 0 003 @ 02327200 v 0000 + 04445327 n 0101 + 04445952 n 0102 01 + 08 00 | provide with a toggle or toggles -02357693 40 v 01 patch 0 003 @ 02327200 v 0000 + 04682462 n 0104 + 00267349 n 0101 01 + 08 00 | provide with a patch; also used metaphorically; "The field was patched with snow" -02357873 40 v 01 water 0 004 @ 02327200 v 0000 + 14845743 n 0101 + 10770767 n 0101 + 10770309 n 0102 01 + 08 00 | provide with water; "We watered the buffalo" -02358034 40 v 03 afford 1 open 4 give f 002 + 05612809 n 0201 + 05249636 n 0202 01 + 04 00 | afford access to; "the door opens to the patio"; "The French doors give onto a terrace" -02358217 40 v 01 grab 3 001 @ 02238085 v 0000 01 + 08 00 | obtain illegally or unscrupulously; "Grab power" -02358327 40 v 02 deliver 7 drive_home 0 002 @ 02316868 v 0000 ~ 02358527 v 0000 02 + 08 00 + 15 00 | carry out or perform; "deliver an attack", "deliver a blow"; "The boxer drove home a solid left" -02358527 40 v 01 land 0 001 @ 02358327 v 0000 01 + 21 00 | deliver (a blow); "He landed several blows on his opponent's head" -02358655 40 v 01 fall 3 002 $ 02229828 v 0000 $ 02358922 v 0000 01 + 04 00 | to be given by assignment or distribution; "The most difficult task fell on the youngest member of the team"; "The onus fell on us"; "The pressure to succeed fell on the youngest student" -02358922 40 v 01 fall c 001 $ 02358655 v 0000 01 + 04 00 | to be given by right or inheritance; "The estate fell to the oldest daughter" -02359061 40 v 02 call 9 call_in 2 004 $ 00874002 v 0000 @ 01017826 v 0000 + 00136589 a 0101 + 07192661 n 0102 01 + 08 00 | demand payment of (a loan); "Call a loan" -02359228 40 v 01 carry a 001 @ 02630871 v 0000 01 + 08 00 | have on the surface or on the skin; "carry scars" -02359340 40 v 01 get e 003 $ 00639849 v 0000 $ 00589904 v 0000 @ 02210855 v 0000 01 + 08 00 | acquire as a result of some effort or action; "You cannot get water out of a stone"; "Where did she get these news?" -02359553 40 v 01 give c 001 @ 02250625 v 0000 01 + 20 00 | deliver in exchange or recompense; "I'll give you three books for four CDs" -02359690 40 v 01 leverage 0 002 @ 02327200 v 0000 + 01099946 n 0101 02 + 08 00 + 09 00 | provide with leverage; "We need to leverage this company" -02359839 40 v 01 leverage 1 002 @ 02342132 v 0000 + 01099946 n 0101 02 + 08 00 + 11 00 | supplement with leverage; "leverage the money that is already available" -02360003 40 v 01 bleed 9 001 @ 02241107 v 0000 02 + 09 00 + 16 00 | get or extort (money or other possessions) from someone; "They bled me dry--I have nothing left!" -02360171 40 v 01 unburden 0 001 @ 02205272 v 0000 01 + 18 00 | free or relieve (someone) of a burden -02360274 40 v 01 tap 4 005 @ 02327200 v 0000 + 04390977 n 0101 + 10691764 n 0102 $ 01613732 v 0000 $ 01854519 v 0000 01 + 08 00 | furnish with a tap or spout, so as to be able to draw liquid from it; "tap a cask of wine" -02360497 40 v 02 top 0 top_out 0 003 @ 02327200 v 0000 + 08663860 n 0101 + 10715671 n 0101 01 + 08 00 | provide with a top or finish the top (of a structure); "the towers were topped with conical roofs" -02360702 40 v 02 reflectorize 0 reflectorise 0 001 @ 02327200 v 0000 01 + 08 00 | provide with reflectors, such as chemicals; "the driveway was reflectorized for safety reasons" -02360882 40 v 01 subrogate 0 002 @ 02257767 v 0000 + 00198118 n 0101 01 + 09 00 | substitute one creditor for another, as in the case where an insurance company sues the person who caused an accident for the insured -02361100 40 v 01 outsource 0 001 @ 02238536 v 0000 01 + 02 00 | obtain goods or services from an outside supplier; to contract work out; "Many companies outsource and hire consultants in order to maintain a flexible workforce" -02361329 40 v 01 retrofit 0 002 @ 02327200 v 0000 $ 01569896 v 0000 02 + 08 00 + 31 00 | provide with parts, devices, or equipment not available or in use at the time of the original manufacture; "They car companies retrofitted all the old models with new carburetors" -02361600 40 v 02 border 0 edge 0 005 @ 02327200 v 0000 + 03264136 n 0201 + 08565701 n 0201 + 10044763 n 0201 + 03264906 n 0201 01 + 08 00 | provide with a border or edge; "edge the tablecloth with embroidery" -02361811 40 v 01 machicolate 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 03699754 n 0101 01 + 08 00 | supply with projecting galleries; "machicolate the castle walls" -02361981 40 v 01 sanitate 0 003 @ 02327200 v 0000 ;c 00610738 n 0000 + 14495466 n 0101 01 + 08 00 | provide with sanitary facilities or appliances -02362130 40 v 01 translocate 0 001 @ 02232190 v 0000 01 + 08 00 | move from one place to another, especially of wild animals; "The endangered turtles were translocated to a safe environment" -02362323 40 v 01 translocate 1 002 @ 02012344 v 0000 + 13569464 n 0101 01 + 08 00 | transfer (a chromosomal segment) to a new position -02362460 40 v 01 co-opt 0 001 @ 02209936 v 0000 01 + 08 00 | take or assume for one's own use; "He co-opted the criticism and embraced it" -02362601 40 v 01 shaft 0 002 @ 02339413 v 0000 + 04182708 n 0101 01 + 08 00 | equip with a shaft -02362700 40 v 01 spar 0 002 @ 02339413 v 0000 + 04267577 n 0101 01 + 08 00 | furnish with spars -02362798 40 v 01 stave 0 002 @ 02339413 v 0000 + 04119892 n 0103 01 + 08 00 | furnish with staves; "stave a ladder" -02362916 40 v 01 vest 2 002 @ 02199590 v 0000 $ 02222179 v 0000 01 + 08 00 | place (authority, property, or rights) in the control of a person or group of persons; "She vested her vast fortune in her two sons" -02363128 40 v 01 hat 0 002 @ 02327200 v 0000 + 03497657 n 0101 02 + 08 00 + 09 00 | furnish with a hat -02363234 40 v 02 fee-tail 0 entail 0 001 @ 02229055 v 0000 01 + 08 00 | limit the inheritance of property to a specific class of heirs -02363371 40 v 01 enfeoff 0 002 @ 02199590 v 0000 + 06545960 n 0101 01 + 17 00 | put in possession of land in exchange for a pledge of service, in feudal society; "He enfeoffed his son-in-law with a large estate in Scotland" -02363597 40 v 01 theme 0 001 @ 02327200 v 0000 01 + 08 00 | provide with a particular theme or motive; "the restaurant often themes its menus" -02363742 40 v 01 check_out 0 002 * 02207206 v 0000 + 03011741 n 0101 02 + 02 00 + 08 00 | record, add up, and receive payment for items purchased; "She was checking out the apples that the customer had put on the conveyer belt" -02363972 40 v 02 deaerate 0 de-aerate 0 001 @ 02224055 v 0000 01 + 08 00 | remove air or gas from -02364072 40 v 01 decaffeinate 0 001 @ 02224055 v 0000 01 + 08 00 | remove caffeine from (coffee) -02364171 40 v 01 decarbonate 0 001 @ 02224055 v 0000 01 + 08 00 | remove carbon dioxide from -02364266 40 v 01 decerebrate 0 002 @ 02224055 v 0000 ;c 06063588 n 0000 01 + 09 00 | remove the cerebrum from (a human body) -02364393 40 v 01 dechlorinate 0 001 @ 02224055 v 0000 01 + 08 00 | remove chlorine from (water) -02364491 40 v 01 defat 0 001 @ 02224055 v 0000 01 + 08 00 | remove the fat from -02364573 40 v 01 defibrinate 0 001 @ 02224055 v 0000 01 + 08 00 | remove fibrin from (blood) -02364668 40 v 01 degrease 0 001 @ 02224055 v 0000 01 + 08 00 | remove grease or oil from (a pan) -02364767 40 v 01 deionize 0 001 @ 02224055 v 0000 01 + 08 00 | remove ions from -02364849 40 v 01 delist 0 001 @ 02224055 v 0000 01 + 08 00 | remove (a security) from listing at a stock exchange -02364965 40 v 01 delocalize 0 001 @ 02224055 v 0000 01 + 08 00 | remove from the proper or usual locality -02365073 40 v 01 deoxygenate 0 001 @ 02224055 v 0000 01 + 08 00 | remove oxygen from (water) -02365168 40 v 01 destain 0 001 @ 02224055 v 0000 01 + 08 00 | remove stain from (a laboratory specimen) to enhance contrast -02365294 40 v 02 desulfurize 0 desulphurize 0 001 @ 02224055 v 0000 01 + 08 00 | remove sulfur from -02365396 40 v 01 detick 0 001 @ 02224055 v 0000 01 + 08 00 | free (a pet) of ticks -02365481 40 v 01 devein 0 001 @ 02224055 v 0000 01 + 08 00 | remove the dark dorsal vein of (a shrimp) -02365586 40 v 01 fettle 0 001 @ 02224055 v 0000 01 + 08 00 | remove mold marks or sand from (a casting) -02365692 40 v 01 flesh 0 001 @ 02224055 v 0000 01 + 08 00 | remove adhering flesh from (hides) when preparing leather manufacture -02365824 40 v 01 flense 0 001 @ 02224055 v 0000 01 + 08 00 | strip the blubber or skin from (a whale or seal) -02365936 40 v 01 kern 0 004 @ 02224055 v 0000 ;c 06677302 n 0000 ! 02366105 v 0101 + 03611169 n 0101 01 + 08 00 | remove a portion of space between (adjacent letters) -02366105 40 v 01 kern 1 004 @ 02327200 v 0000 ;c 06677302 n 0000 ! 02365936 v 0101 + 03611169 n 0101 01 + 08 00 | furnish with a kern -02366241 40 v 01 pith 0 002 @ 02224055 v 0000 + 13096159 n 0101 01 + 08 00 | remove the pith from (a plant) -02366351 40 v 01 scum 0 002 @ 02224055 v 0000 + 04157703 n 0101 01 + 08 00 | remove the scum from -02366451 40 v 01 unbridle 0 002 @ 02224055 v 0000 ! 01300655 v 0101 01 + 08 00 | remove the bridle from (a horse or mule) -02366575 40 v 01 lay_out 0 001 @ 02267060 v 0000 01 + 08 00 | spend or invest; "lay out thousands on gold"; "he laid out a fortune in the hope of making a huge profit" -02366745 40 v 01 embattle 0 001 @ 01606205 v 0000 01 + 08 00 | fortify by furnishing with battlements for defense; "an embattled castle" -02366884 40 v 01 headquarter 0 001 @ 02327200 v 0000 02 + 08 00 + 09 00 | provide with headquarters; "the compnay is headquartered in New Jersey" -02367032 41 v 04 vacate 0 resign 0 renounce 0 give_up 5 004 @ 02382367 v 0000 + 07254267 n 0201 + 01087977 a 0101 ~ 02379198 v 0000 03 + 08 00 + 02 02 + 02 01 | leave (a job, post, or position) voluntarily; "She vacated the position when she got pregnant"; "The chairman resigned when he was found to have misappropriated funds" -02367363 41 v 02 act 0 move 0 081 + 00165942 n 0201 + 14006945 n 0101 + 00037396 n 0101 + 00030358 n 0101 ! 02725714 v 0101 ^ 02376429 v 0103 ^ 02517655 v 0101 ^ 02536557 v 0102 ~ 00121214 v 0000 ~ 00352558 v 0000 ~ 00459498 v 0000 ~ 00520019 v 0000 ~ 00717358 v 0000 ~ 00781303 v 0000 ~ 01118449 v 0000 ~ 01350449 v 0000 ~ 01685313 v 0000 ~ 02089174 v 0000 ~ 02344381 v 0000 ~ 02369123 v 0000 ~ 02369390 v 0000 ~ 02369633 v 0000 ~ 02369811 v 0000 ~ 02369948 v 0000 ~ 02370131 v 0000 ~ 02370433 v 0000 ~ 02370650 v 0000 ~ 02370987 v 0000 ~ 02371684 v 0000 ~ 02371811 v 0000 ~ 02372161 v 0000 ~ 02372326 v 0000 ~ 02372605 v 0000 ~ 02373974 v 0000 ~ 02374764 v 0000 ~ 02374924 v 0000 ~ 02375131 v 0000 ~ 02376631 v 0000 ~ 02376958 v 0000 ~ 02378623 v 0000 ~ 02402271 v 0000 ~ 02417098 v 0000 ~ 02425112 v 0000 ~ 02428316 v 0000 ~ 02437465 v 0000 ~ 02439281 v 0000 ~ 02450256 v 0000 ~ 02517202 v 0000 ~ 02517827 v 0000 ~ 02518161 v 0000 ~ 02519666 v 0000 ~ 02530167 v 0000 ~ 02534492 v 0000 ~ 02534761 v 0000 ~ 02545045 v 0000 ~ 02560767 v 0000 ~ 02564841 v 0000 ~ 02565491 v 0000 ~ 02581900 v 0000 ~ 02582615 v 0000 ~ 02584906 v 0000 ~ 02587532 v 0000 ~ 02591312 v 0000 ~ 02591455 v 0000 ~ 02591597 v 0000 ~ 02593551 v 0000 ~ 02594290 v 0000 ~ 02595234 v 0000 ~ 02595662 v 0000 ~ 02596493 v 0000 ~ 02597449 v 0000 ~ 02597601 v 0000 ~ 02599636 v 0000 ~ 02599878 v 0000 ~ 02600948 v 0000 ~ 02602458 v 0000 ~ 02641463 v 0000 ~ 02684924 v 0000 ~ 02723564 v 0000 ~ 02747709 v 0000 ~ 02747922 v 0000 03 + 01 00 + 02 00 + 22 00 | perform an action, or work out or perform (an action); "think before you act"; "We must move quickly"; "The governor should act on the new energy bill"; "The nanny acted quickly by grabbing the toddler and covering him with a wet towel" -02369123 41 v 02 satisfice 0 satisfise 0 001 @ 02367363 v 0000 01 + 02 00 | decide on and pursue a course of action satisfying the minimum requirements to achieve a goal; "optimization requires processes that are more complex than those needed to merely satisfice" -02369390 41 v 03 maneuver 3 manoeuver 0 manoeuvre 3 002 @ 02367363 v 0000 + 05905152 n 0304 02 + 02 00 + 22 00 | act in order to achieve a certain goal; "He maneuvered to get the chairmanship"; "She maneuvered herself into the directorship" -02369633 41 v 01 dispatch 3 002 @ 02367363 v 0000 + 05059830 n 0101 01 + 08 00 | dispose of rapidly and without delay and efficiently; "He dispatched the task he was assigned" -02369811 41 v 01 evade 0 002 @ 02367363 v 0000 + 00896182 a 0101 01 + 02 00 | practice evasion; "This man always hesitates and evades" -02369948 41 v 01 race 3 001 @ 02367363 v 0000 01 + 28 00 | to work as fast as possible towards a goal, sometimes in competition with others; "We are racing to find a cure for AIDS" -02370131 41 v 01 use 3 002 @ 02367363 v 0000 + 00413239 n 0102 01 + 28 00 | habitually do something (use only in the past tense); "She used to call her mother every week but now she calls only occasionally"; "I used to get sick when I ate in that dining hall"; "They used to vacation in the Bahamas" -02370433 41 v 01 play_it_by_ear 0 001 @ 02367363 v 0000 01 + 02 00 | decide on one's actions as one goes along, depending on the situation; "She didn't know what to expect from her new job, so she played it by ear" -02370650 41 v 01 play c 004 $ 02597601 v 0000 @ 02367363 v 0000 + 00947596 n 0101 + 14009763 n 0101 02 + 08 00 + 11 00 | act or have an effect in a specified way or with a specific effect or outcome; "This factor played only a minor part in his decision"; "This development played into her hands"; "I played no role in your dismissal" -02370987 41 v 01 deal 9 003 @ 02367363 v 0000 + 00040804 n 0101 + 01135372 n 0101 01 + 22 00 | take action with respect to (someone or something); "How are we going to deal with this problem?"; "The teacher knew how to deal with these lazy students" -02371239 41 v 01 let_it_go 0 001 @ 02725714 v 0000 01 + 02 00 | not act; "He thought of a reply but let it go" -02371352 41 v 01 keep_to_oneself 0 000 01 + 02 00 | shun the company of others; "The new student keeps to herself" -02371469 41 v 01 sweep_under_the_rug 0 001 @ 02144835 v 0000 01 + 08 00 | to conceal something in the hopes it won't be discovered by others; "The president tried to sweep the embarrassing incident under the rug" -02371684 41 v 01 partner 0 002 @ 02367363 v 0000 + 09935434 n 0103 01 + 09 00 | act as a partner; "Astaire partnered Rogers" -02371811 41 v 01 exert 0 003 @ 02367363 v 0000 + 00621627 n 0103 ~ 02371975 v 0000 01 + 09 00 | make a great effort at a mental or physical task; "exert oneself" -02371975 41 v 01 overexert 0 002 @ 02371811 v 0000 + 00633717 n 0101 01 + 09 00 | exert (oneself) excessively and go beyond one's strength; "don't overexert yourself when exercising!" -02372161 41 v 01 egotrip 0 001 @ 02367363 v 0000 01 + 02 00 | act in a way that attracts attention; "This teacher always egotrips and the students don't like him" -02372326 41 v 01 reciprocate 0 007 @ 02367363 v 0000 + 01946595 a 0101 + 00040152 n 0102 + 01236049 n 0101 + 01946764 a 0102 + 01946764 a 0101 ~ 02357072 v 0000 01 + 02 00 | act, feel, or give mutually or in return; "We always invite the neighbors and they never reciprocate!" -02372605 41 v 03 go 0 proceed 0 move 1 007 @ 02367363 v 0000 + 01023820 n 0201 + 01184814 n 0203 + 01184814 n 0201 ~ 02373015 v 0000 ~ 02373336 v 0000 ~ 02373578 v 0000 04 + 04 00 + 06 00 + 07 00 + 22 00 | follow a procedure or take a course; "We should go farther in this matter"; "She went through a lot of trouble"; "go about the world in a certain manner"; "Messages must go through diplomatic channels" -02373015 41 v 01 work 5 003 @ 02372605 v 0000 + 00575741 n 0101 $ 02051031 v 0000 01 + 22 00 | proceed towards a goal or along a path or through an activity; "work your way through every problem or task"; "She was working on her second martini when the guests arrived"; "Start from the bottom and work towards the top" -02373336 41 v 02 venture 1 embark 0 003 @ 02372605 v 0000 + 00797878 n 0101 + 09606009 n 0102 02 + 04 00 + 22 00 | proceed somewhere despite the risk of possible dangers; "We ventured into the world of high-tech and bought a supercomputer" -02373578 41 v 02 steamroller 0 steamroll 0 004 @ 02372605 v 0000 + 10226556 n 0202 + 10226556 n 0102 $ 02505807 v 0000 02 + 01 00 + 02 00 | proceed with great force; "The new teacher tends to steamroller" -02373785 41 v 02 assert 0 put_forward 0 002 @ 02518161 v 0000 + 00156101 a 0101 01 + 09 00 | insist on having one's opinions and rights recognized; "Women should assert themselves more!" -02373974 41 v 01 come_close 0 001 @ 02367363 v 0000 01 + 28 00 | nearly do something; "She came close to quitting her job" -02374099 41 v 02 sit_by 0 sit_back 0 001 @ 02128653 v 0000 01 + 02 00 | be inactive or indifferent while something is happening; "Don't just sit by while your rights are violated!" -02374282 41 v 01 whip_through 0 001 @ 01161947 v 0000 01 + 08 00 | go through very fast; "We whipped through the last papers that we had to read before the weekend" -02374449 41 v 02 bull 0 bull_through 0 001 @ 00765977 v 0000 01 + 02 00 | push or force; "He bulled through his demands" -02374572 41 v 01 backslap 0 002 @ 00010435 v 0000 + 09831166 n 0101 02 + 02 00 + 09 00 | display excessive cordiality (towards); "he is always backslapping his colleagues at staff meetings" -02374764 41 v 01 perform 2 003 @ 02367363 v 0000 ~ 02079151 v 0000 ~ 02382087 v 0000 02 + 02 00 + 08 00 | perform a function; "Who will perform the wedding?" -02374924 41 v 03 make_bold 0 dare 0 presume 0 002 @ 02367363 v 0000 + 01225562 n 0301 03 + 32 00 + 28 03 + 28 01 | take upon oneself; act presumptuously, without permission; "How dare you call my lawyer?" -02375131 41 v 03 prosecute 2 engage 6 pursue 0 008 @ 02367363 v 0000 + 00431552 n 0303 + 10495167 n 0301 + 01239064 n 0201 + 01022008 n 0102 ~ 02375468 v 0000 ~ 02375619 v 0000 ~ 02375748 v 0000 02 + 02 00 + 08 00 | carry out or participate in an activity; be involved in; "She pursued many activities"; "They engaged in a discussion" -02375468 41 v 02 commit 1 practice 3 001 @ 02375131 v 0000 01 + 08 00 | engage in or perform; "practice safe sex"; "commit a random act of kindness" -02375619 41 v 01 close f 002 @ 02375131 v 0000 + 00281462 n 0101 01 + 22 00 | engage at close quarters; "close with the enemy" -02375748 41 v 01 politick 0 002 @ 02375131 v 0000 ~ 02375902 v 0000 01 + 02 00 | engage in political activities; "This colleague is always politicking" -02375902 41 v 01 logroll 0 002 @ 02375748 v 0000 + 01110063 n 0101 02 + 02 00 + 08 00 | work toward the passage of some legislation by exchanging political favors such as trading votes -02376089 41 v 02 engage c wage 0 003 @ 01090335 v 0000 + 00953559 n 0104 ~ 02376289 v 0000 01 + 22 00 | carry on (wars, battles, or campaigns); "Napoleon and Hitler waged war against all of Europe" -02376289 41 v 03 put_up 1 provide 0 offer 3 001 @ 02376089 v 0000 01 + 08 00 | mount or put up; "put up a good fight"; "offer resistance" -02376429 41 v 03 pursue 1 follow_up_on 0 act_on 0 004 @ 02378623 v 0000 + 00577405 a 0101 + 01022008 n 0101 ~ 02376833 v 0000 01 + 08 00 | carry further or advance; "Can you act on this matter soon?" -02376631 41 v 01 act_on 1 001 @ 02367363 v 0000 01 + 08 00 | regulate one's behavior in accordance with certain information, ideas, or advice; "The Founding Fathers acted on certain moral principles" -02376833 41 v 02 run_down 0 check_out 0 001 @ 02376429 v 0000 02 + 08 00 + 09 00 | trace; "We are running down a few tips" -02376958 41 v 01 interact 0 023 @ 02367363 v 0000 + 01946439 a 0102 + 00039021 n 0101 ~ 00707624 v 0000 ~ 00740577 v 0000 ~ 00744572 v 0000 ~ 00908977 v 0000 ~ 01070102 v 0000 ~ 01803936 v 0000 ~ 02245765 v 0000 ~ 02377520 v 0000 ~ 02377938 v 0000 ~ 02378453 v 0000 ~ 02384940 v 0000 ~ 02388950 v 0000 ~ 02389346 v 0000 ~ 02428924 v 0000 ~ 02458103 v 0000 ~ 02514187 v 0000 ~ 02514881 v 0000 ~ 02538765 v 0000 ~ 02589245 v 0000 ~ 02590910 v 0000 02 + 02 00 + 22 00 | act together or towards others or with others; "He should interact more with his colleagues" -02377520 41 v 02 marginalize 0 marginalise 0 003 @ 02376958 v 0000 + 13510946 n 0202 + 13510946 n 0101 02 + 09 00 + 10 00 | relegate to a lower or outer edge, as of specific groups of people; "We must not marginalize the poor in our society" -02377764 41 v 01 deal 4 003 @ 02518161 v 0000 + 13780449 n 0102 + 01135372 n 0101 01 + 22 00 | behave in a certain way towards others; "He deals fairly with his employees" -02377938 41 v 01 combine 0 005 @ 02376958 v 0000 + 07964495 n 0101 + 08272961 n 0101 + 08236621 n 0103 ~ 02378183 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | join for a common purpose or in a common action; "These forces combined with others" -02378183 41 v 01 summate 0 003 @ 02377938 v 0000 + 07959016 n 0101 + 05921123 n 010f 02 + 01 00 + 04 00 | form or constitute a cumulative effect -02378330 41 v 01 lie_dormant 0 000 02 + 01 00 + 02 00 | be inactive, as if asleep; "His work lay dormant for many years" -02378453 41 v 01 have 0 001 @ 02376958 v 0000 01 + 09 00 | have a personal or business relationship with someone; "have a postdoc"; "have an assistant"; "have a lover" -02378623 41 v 02 react 0 oppose 0 005 @ 02367363 v 0000 + 01246148 a 0201 + 09773245 n 0204 ~ 02376429 v 0000 ~ 02378851 v 0000 02 + 02 00 + 22 00 | act against or in opposition to; "She reacts negatively to everything I say" -02378851 41 v 02 buck 0 go_against 1 001 @ 02378623 v 0000 01 + 08 00 | resist; "buck the trend" -02378950 41 v 03 backfire 0 backlash 0 recoil 0 003 @ 00339934 v 0000 + 00203020 n 0201 + 00073032 n 0101 01 + 01 00 | come back to the originator of an action with an undesired effect; "Your comments may backfire and cause you a lot of trouble" -02379198 41 v 02 abdicate 0 renounce 1 008 @ 02367032 v 0000 + 07254594 n 0201 + 00205079 n 0201 + 07254594 n 0202 + 02528048 a 0101 + 06511762 n 0101 + 07254456 n 0101 + 09755657 n 0101 01 + 02 00 | give up, such as power, as of monarchs and emperors, or duties and obligations; "The King abdicated when he married a divorcee" -02379528 41 v 02 start 0 take_up 0 004 + 00235435 n 0102 + 15265518 n 0106 + 07325190 n 0101 ~ 02383842 v 0000 01 + 08 00 | begin work or acting in a certain capacity, office or job; "Take up a position"; "start a new job" -02379753 41 v 01 retire 1 006 @ 02382367 v 0000 + 13954118 n 0101 + 00212205 n 0101 + 10525617 n 0101 ~ 00536921 v 0000 ~ 02380760 v 0000 01 + 02 00 | go into retirement; stop performing one's work or withdraw from one's position; "He retired at age 68" -02380009 41 v 02 retire 2 withdraw 1 007 $ 02380760 v 0000 $ 01766952 v 0000 @ 02680814 v 0000 + 00384933 n 0202 + 00212205 n 0101 + 10525617 n 0101 ~ 02383174 v 0000 01 + 22 00 | withdraw from active participation; "He retired from chess" -02380251 41 v 01 retire 3 003 > 02379753 v 0000 @ 02402825 v 0000 ~ 02380418 v 0000 01 + 09 00 | make (someone) retire; "The director was retired after the scandal" -02380418 41 v 01 superannuate 0 002 @ 02380251 v 0000 + 00197229 n 0101 01 + 09 00 | retire and pension (someone) because of age or physical inability -02380571 41 v 01 pension_off 0 002 > 02379753 v 0000 @ 02402825 v 0000 01 + 09 00 | let go from employment with an attractive pension; "The director was pensioned off when he got senile" -02380760 41 v 02 bow_out 0 withdraw 3 003 @ 02379753 v 0000 + 00053913 n 0201 $ 02380009 v 0000 01 + 02 00 | retire gracefully; "He bowed out when he realized he could no longer handle the demands of the chairmanship" -02380980 41 v 05 chicken_out 0 back_off 0 pull_out 0 back_down 0 bow_out 1 003 @ 01766952 v 0000 $ 02015168 v 0000 ~ 02381227 v 0000 02 + 02 00 + 22 00 | remove oneself from an obligation; "He bowed out when he heard how much work was involved" -02381227 41 v 01 resile 0 001 @ 02380980 v 0000 02 + 02 00 + 22 00 | pull out from an agreement, contract, statement, etc.; "The landlord cannot resile from the lease" -02381397 41 v 02 accede 0 enter 0 004 @ 02406585 v 0000 @ 02383842 v 0000 + 00236581 n 0101 ~ 02381571 v 0000 01 + 02 00 | take on duties or office; "accede to the throne" -02381571 41 v 01 ascend 0 002 @ 02381397 v 0000 + 14441825 n 0104 01 + 22 00 | become king or queen; "She ascended to the throne after the King's death" -02381726 41 v 04 assume 0 adopt 1 take_on 1 take_over 1 003 @ 02383842 v 0000 + 00082870 n 0101 ~ 02381951 v 0000 01 + 08 00 | take on titles, offices, duties, responsibilities; "When will the new President assume office?" -02381951 41 v 01 resume 0 001 @ 02381726 v 0000 01 + 08 00 | assume anew; "resume a title"; "resume an office"; "resume one's duties" -02382087 41 v 01 officiate 1 006 @ 02374764 v 0000 + 00548173 n 0101 + 00720565 n 0102 + 01033458 n 0101 + 10373390 n 0101 ~ 02489456 v 0000 02 + 02 00 + 22 00 | act in an official capacity in a ceremony or religious ritual, such as a wedding; "Who officiated at your wedding?" -02382367 41 v 04 leave_office 0 quit 0 step_down 0 resign 5 008 @ 02383440 v 0000 + 06511560 n 0401 + 07254267 n 0401 ! 02383842 v 0101 ~ 02367032 v 0000 ~ 02379753 v 0000 ~ 02382742 v 0000 ~ 02385153 v 0000 02 + 02 00 + 08 04 | give up or retire from a position; "The Secretary of the Navy will leave office next month"; "The chairman resigned over the financial scandal" -02382742 41 v 01 top_out 0 001 @ 02382367 v 0000 01 + 02 00 | give up one's career just as one becomes very successful; "The financial consultant topped out at age 40 because he was burned out" -02382938 41 v 01 drop_out 0 003 @ 02383440 v 0000 + 09995925 n 0101 $ 02383174 v 0000 01 + 02 00 | leave school or an educational program prematurely; "Many students drop out because they are not prepared for our challenging program" -02383174 41 v 01 drop_out 1 002 $ 02382938 v 0000 @ 02380009 v 0000 01 + 02 00 | withdraw from established society, especially because of disillusion with conventional values; "She hasn't heard from her brother in years--he dropped out after moving to California" -02383440 41 v 03 leave 0 depart 0 pull_up_stakes 0 004 $ 02009433 v 0000 @ 00109660 v 0000 ~ 02382367 v 0000 ~ 02382938 v 0000 02 + 02 00 + 08 00 | remove oneself from an association with or participation in; "She wants to leave"; "The teenager left home"; "She left her position with the Red Cross"; "He left the Senate after two terms"; "after 20 years with the same company, she pulled up stakes" -02383842 41 v 01 take_office 0 004 @ 02379528 v 0000 ! 02382367 v 0101 ~ 02381397 v 0000 ~ 02381726 v 0000 01 + 02 00 | assume an office, duty, or title; "When will the new President take office?" -02384041 41 v 02 install 0 instal 0 004 + 07453195 n 0103 + 00240938 n 0101 ~ 02384275 v 0000 ~ 02386388 v 0000 02 + 09 00 + 20 00 | put into an office or a position; "the new president was installed immediately after the election" -02384275 41 v 03 induct 0 invest 1 seat 0 005 @ 02384041 v 0000 + 08647945 n 0301 + 10028765 n 0103 + 07453195 n 0102 + 10203949 n 0101 02 + 09 00 + 20 00 | place ceremoniously or formally in an office or position; "there was a ceremony to induct the president of the Academy" -02384554 41 v 01 induct 3 001 @ 01470225 v 0000 02 + 09 00 + 10 00 | admit as a member; "We were inducted into the honor society" -02384686 41 v 03 invite 0 ask_over 0 ask_round 0 006 $ 01469770 v 0000 @ 00752764 v 0000 + 01358534 a 0101 + 07186661 n 0101 + 10150940 n 0102 + 07186148 n 0101 01 + 09 00 | invite someone to one's house; "Can I invite you for dinner on Sunday night?" -02384940 41 v 02 invite 1 pay_for 0 006 @ 02376958 v 0000 + 01358534 a 0101 + 07186661 n 0101 + 10150940 n 0102 + 07186148 n 0101 ^ 02486693 v 0102 01 + 09 00 | have as a guest; "I invited them to a restaurant" -02385153 41 v 01 fall 0 004 $ 02620213 v 0000 @ 02382367 v 0000 + 00067707 n 0102 + 07427728 n 0101 02 + 01 00 + 02 00 | lose office or power; "The government fell overnight"; "The Qing Dynasty fell with Sun Yat-sen" -02385372 41 v 02 divest 0 disinvest 1 004 @ 02422026 v 0000 ! 02386388 v 0101 ~ 02391453 v 0000 ~ 02476731 v 0000 02 + 09 00 + 18 01 | deprive of status or authority; "he was divested of his rights and his title"; "They disinvested themselves of their rights" -02385634 41 v 01 post 1 003 @ 02391803 v 0000 + 00586262 n 0102 + 09854510 n 0102 02 + 09 00 + 20 01 | assign to a post; put into a post; "The newspaper posted him in Timbuktu" -02385813 41 v 01 cast e 004 $ 01710481 v 0000 @ 02391803 v 0000 + 08237863 n 0101 + 00161603 n 0101 01 + 08 00 | assign the roles of (a movie or a play) to actors; "Who cast this beautiful movie?" -02386012 41 v 04 ordain 0 consecrate 0 ordinate 0 order 2 006 @ 02386388 v 0000 + 08227214 n 0407 + 01041111 n 0201 + 01040646 n 0201 + 10381214 n 0101 + 00165298 n 0102 02 + 09 00 + 20 00 | appoint to a clerical posts; "he was ordained in the Church" -02386266 41 v 01 take_orders 1 000 01 + 02 00 | be ordained; enter the Christian ministry; "She took orders last month" -02386388 41 v 03 invest 0 vest 0 enthrone 1 008 @ 02384041 v 0000 + 07453638 n 0302 + 07453638 n 0105 ! 02385372 v 0101 ~ 02386012 v 0000 ~ 02390949 v 0000 ~ 02391193 v 0000 ~ 02427726 v 0000 01 + 09 00 | provide with power and authority; "They vested the council with special rights" -02386675 41 v 03 invest 2 clothe 0 adorn 0 003 @ 02339413 v 0000 + 00198919 n 0101 + 07453638 n 0105 01 + 17 00 | furnish with power or authority; of kings or emperors -02386845 41 v 02 socialize 0 socialise 0 003 @ 02387486 v 0000 + 01128984 n 0202 + 01128984 n 0101 01 + 09 00 | train for a social environment; "The children must be properly socialized" -02387034 41 v 03 prepare 0 groom 0 train 0 012 $ 00602805 v 0000 @ 02387486 v 0000 + 10722385 n 0301 + 10722575 n 0301 + 00893955 n 0301 + 00893955 n 0203 + 00126830 a 0102 + 00126830 a 0101 + 00893955 n 0102 ~ 00300761 v 0000 $ 00603298 v 0000 $ 02553697 v 0000 01 + 09 00 | educate for a future role or function; "He is grooming his son to become his successor"; "The prince was prepared to become King one day"; "They trained him to be a warrior" -02387486 41 v 01 educate 0 011 @ 00205885 v 0000 + 01324424 a 0101 + 10665698 n 0103 + 08132637 n 0103 + 00611433 n 0101 + 00883297 n 0101 + 10045713 n 0101 ~ 02386845 v 0000 ~ 02387034 v 0000 ~ 02387792 v 0000 ~ 02387910 v 0000 01 + 09 00 | give an education to; "We must educate our youngsters better" -02387792 41 v 02 co-educate 0 coeducate 0 001 @ 02387486 v 0000 01 + 09 00 | educate persons of both sexes together -02387910 41 v 01 school 1 008 @ 02387486 v 0000 + 15203229 n 0101 + 08277393 n 0101 + 05757536 n 0101 + 04146050 n 0101 + 08276720 n 0101 + 00888693 n 0101 ~ 02388215 v 0000 01 + 09 00 | educate in or as if in a school; "The children are schooled at great cost to their parents in private institutions" -02388215 41 v 01 home-school 0 001 @ 02387910 v 0000 01 + 09 00 | educate (one's children) at home instead of sending (them) to a school; "The parents are home-schooling their daughter" -02388403 41 v 06 educate 1 school 2 train 1 cultivate 0 civilize 0 civilise 0 006 @ 00474017 v 0000 + 04811995 n 0603 + 04811995 n 0502 + 14459824 n 0404 + 04921900 n 0101 ~ 02388764 v 0000 02 + 08 00 + 09 00 | teach or refine to be discriminative in taste or judgment; "Cultivate your musical taste"; "Train your tastebuds"; "She is well schooled in poetry" -02388764 41 v 01 sophisticate 0 003 @ 02388403 v 0000 + 10625285 n 0101 + 04880273 n 0101 01 + 10 00 | make less natural or innocent; "Their manners had sophisticated the young girls" -02388950 41 v 02 socialize 1 socialise 1 011 @ 02376958 v 0000 + 01232412 n 0202 + 10619492 n 0202 + 01232412 n 0204 + 01232412 n 0101 + 10619492 n 0101 + 01232412 n 0103 ~ 02389815 v 0000 ~ 02389927 v 0000 ~ 02390169 v 0000 ~ 02492198 v 0000 02 + 02 00 + 22 00 | take part in social activities; interact with others; "He never socializes with his colleagues"; "The old man hates to socialize" -02389346 41 v 03 get_in_touch 0 touch_base 0 connect 0 004 @ 02376958 v 0000 + 00145218 n 0302 + 00145218 n 0303 $ 02389592 v 0000 02 + 02 00 + 22 00 | establish communication with someone; "did you finally connect with your long-lost cousin?" -02389592 41 v 01 connect 1 004 $ 02389346 v 0000 @ 02458103 v 0000 + 00563980 a 0101 + 09956147 n 0101 01 + 22 00 | establish a rapport or relationship; "The President of this university really connects with the faculty" -02389815 41 v 02 swing 0 get_around 0 001 @ 02388950 v 0000 01 + 02 00 | be a social swinger; socialize a lot -02389927 41 v 02 fraternize 0 fraternise 0 005 @ 02388950 v 0000 + 01081867 n 0202 + 08075388 n 0202 + 01081867 n 0101 + 08075388 n 0102 02 + 02 00 + 22 00 | be on friendly terms with someone, as if with a brother, especially with an enemy -02390169 41 v 01 hobnob 0 001 @ 02388950 v 0000 01 + 22 00 | rub elbows with; "He hobnobs with the best of society" -02390287 41 v 01 hang_out 0 002 @ 01844431 v 0000 + 08581503 n 0102 02 + 02 00 + 22 00 | spend time in a certain location or with certain people; "She hangs out at the corner cafe" -02390470 41 v 02 initiate 1 induct 1 007 @ 02449847 v 0000 + 07453195 n 0202 + 10203949 n 0201 + 10363913 n 0105 + 10206887 n 0101 + 07948518 n 0101 + 07453195 n 0101 02 + 09 00 + 20 00 | accept people into an exclusive society or group, usually with some rite; "African men are initiated when they reach puberty" -02390786 41 v 01 readmit 1 002 @ 02449847 v 0000 + 01248418 n 0101 02 + 09 00 + 20 00 | admit again or anew; "After paying a penalty, the player was readmitted" -02390949 41 v 02 crown 0 coronate 0 006 @ 02386388 v 0000 + 06884097 n 0201 + 03138669 n 0201 + 07453638 n 0201 + 03138669 n 0101 + 06884097 n 0101 01 + 09 00 | invest with regal power; enthrone; "The prince was crowned in Westminster Abbey" -02391193 41 v 02 enthrone 0 throne 0 007 @ 02386388 v 0000 + 00605023 n 0201 + 04429376 n 0201 + 07453638 n 0102 + 07453638 n 0103 + 07453638 n 0104 ! 02391453 v 0101 01 + 09 00 | put a monarch on the throne; "The Queen was enthroned more than 50 years ago" -02391453 41 v 01 dethrone 0 003 @ 02385372 v 0000 + 00208943 n 0102 ! 02391193 v 0101 01 + 09 00 | remove a monarch from the throne; "If the King does not abdicate, he will have to be dethroned" -02391650 41 v 01 unseat 0 001 @ 02404224 v 0000 01 + 09 00 | remove from political office; "The Republicans are trying to unseat the liberal Democrat" -02391803 41 v 04 delegate 0 designate 0 depute 3 assign 0 023 @ 02475922 v 0000 + 00730247 n 0401 + 00163779 n 0402 + 08402442 n 0301 + 01140839 n 0305 + 00163779 n 0203 + 10000787 n 0101 + 01140839 n 0102 + 00165178 n 0101 ~ 00751279 v 0000 ~ 01710481 v 0000 ~ 02385634 v 0000 ~ 02385813 v 0000 ~ 02392385 v 0000 ~ 02392600 v 0000 ~ 02392762 v 0000 ~ 02392961 v 0000 ~ 02393086 v 0000 ~ 02395395 v 0000 ~ 02395603 v 0000 ~ 02397637 v 0000 ~ 02399331 v 0000 ~ 02537960 v 0000 03 + 14 00 + 15 00 + 20 00 | give an assignment to (a person) to a post, or assign a task to (a person) -02392385 41 v 01 devolve 2 003 @ 02391803 v 0000 + 01141160 n 0102 + 01141160 n 0101 01 + 15 00 | pass on or delegate to another; "The representative devolved his duties to his aides while he was in the hospital" -02392600 41 v 01 task 0 003 @ 02391803 v 0000 + 00719705 n 0102 + 00795720 n 0103 01 + 31 00 | assign a task to; "I tasked him with looking after the children" -02392762 41 v 01 place 1 004 @ 02391803 v 0000 + 13947867 n 0101 + 13926786 n 0101 + 05611822 n 0101 01 + 20 00 | place somebody in a particular situation or location; "he was placed on probation" -02392961 41 v 01 regiment 0 002 @ 02391803 v 0000 + 08213817 n 0101 01 + 09 00 | assign to a regiment; "regiment soldiers" -02393086 41 v 02 transfer 0 reassign 0 005 @ 02391803 v 0000 + 00732076 n 0201 + 10724372 n 0101 ~ 02393304 v 0000 ~ 02393489 v 0000 02 + 09 00 + 20 00 | transfer somebody to a different position or location of work -02393304 41 v 01 second 1 002 @ 02393086 v 0000 + 00732201 n 0101 01 + 09 00 | transfer an employee to a different, temporary assignment; "The officer was seconded for duty overseas" -02393489 41 v 01 exchange 0 003 @ 02393086 v 0000 + 00196485 n 0102 ~ 02393726 v 0000 01 + 09 00 | hand over one and receive another, approximately equivalent; "exchange prisoners"; "exchange employees between branches of the company" -02393726 41 v 01 alternate 0 003 @ 02393489 v 0000 + 10680153 n 0102 ~ 02393894 v 0000 01 + 09 00 | exchange people temporarily to fulfill certain jobs and functions -02393894 41 v 01 rotate 0 004 @ 02393726 v 0000 + 05045381 n 0101 $ 00245913 v 0000 $ 01096305 v 0000 01 + 09 00 | exchange on a regular basis; "We rotate the lead soprano every night" -02394081 41 v 01 fill 1 001 @ 02409412 v 0000 01 + 08 00 | appoint someone to (a position or a job) -02394183 41 v 03 fill 0 take 0 occupy 4 002 $ 01982395 v 0000 @ 02410855 v 0000 01 + 08 00 | assume, as of positions or roles; "She took the job as director of development"; "he occupies the position of manager"; "the young prince will soon occupy the throne" -02394445 41 v 03 depute 1 deputize 0 deputise 0 007 @ 02475922 v 0000 + 10005721 n 0301 + 10005548 n 0301 + 10005280 n 0301 + 10005721 n 0201 + 10005280 n 0201 + 01140839 n 0105 01 + 09 00 | appoint as a substitute -02394662 41 v 04 substitute 9 deputize 9 deputise 9 step_in 9 010 @ 02405390 v 0000 + 10005721 n 0301 + 10005548 n 0301 + 10005280 n 0301 + 10005721 n 0201 + 10005280 n 0201 + 10671042 n 0101 + 10648237 n 0102 + 00623670 n 0102 ~ 02395194 v 0000 01 + 09 00 | act as a substitute; "She stood in for the soprano who suffered from a cold" -02395000 41 v 01 cover 1 002 @ 01128193 v 0000 $ 00891216 v 0000 01 + 09 00 | to take an action to protect against future problems; "Count the cash in the drawer twice just to cover yourself" -02395194 41 v 01 cover a 001 @ 02394662 v 0000 01 + 22 00 | help out by taking someone's place and temporarily assuming his responsibilities; "She is covering for our secretary who is ill this week" -02395395 41 v 02 delegate 1 depute 0 007 @ 02391803 v 0000 + 01140839 n 0205 + 10000787 n 0101 + 08402442 n 0103 + 01140839 n 0102 + 01140839 n 0101 + 00165178 n 0101 01 + 15 00 | transfer power to someone -02395603 41 v 01 mandate 0 005 @ 02391803 v 0000 + 01140658 n 0101 + 10289969 n 0102 + 10289969 n 0101 + 10290099 n 0101 01 + 15 00 | assign under a mandate; "mandate a colony" -02395782 41 v 02 inaugurate 0 kick_off 0 007 @ 01650610 v 0000 + 15265518 n 0207 + 07329568 n 0201 + 00239910 n 0101 + 00243373 n 0101 ~ 01017501 v 0000 ~ 02395996 v 0000 02 + 08 00 + 11 00 | commence officially -02395996 41 v 01 dedicate 0 002 @ 02395782 v 0000 + 07452348 n 0101 01 + 08 00 | open to public use, as of a highway, park, or building; "The Beauty Queen spends her time dedicating parks and nursing homes" -02396205 41 v 04 appoint 1 name 0 nominate 0 constitute 0 010 @ 01647229 v 0000 + 00846625 a 0302 + 00164152 n 0301 + 00163779 n 0204 + 02635794 a 0101 + 00846462 a 0101 + 09607630 n 0101 + 09800964 n 0101 ~ 02396536 v 0000 ~ 02397266 v 0000 02 + 08 00 + 09 00 | create and charge with a task or function; "nominate a committee" -02396536 41 v 01 pack 0 001 @ 02396205 v 0000 02 + 08 00 + 09 00 | set up a committee or legislative body with one's own supporters so as to influence the outcome; "pack a jury" -02396716 41 v 03 name 1 nominate 1 make 3 005 @ 02475922 v 0000 + 00846625 a 0202 + 00164152 n 0201 + 00163779 n 0104 ~ 02396981 v 0000 01 + 14 00 | charge with a function; charge to be; "She was named Head of the Committee"; "She was made president of the club" -02396981 41 v 01 rename 0 001 @ 02396716 v 0000 01 + 09 00 | name again or anew; "He was renamed Minister of the Interior" -02397106 41 v 01 slate 0 002 @ 02472033 v 0000 + 06495948 n 0101 01 + 09 00 | enter on a list or slate for an election; "He was slated for borough president" -02397266 41 v 01 co-opt 1 003 @ 02396205 v 0000 + 00164999 n 0101 + 00164999 n 0102 01 + 09 00 | appoint summarily or commandeer; "The army tried to co-opt peasants into civil defence groups" -02397460 41 v 01 tenure 0 003 @ 02397637 v 0000 ;c 08274923 n 0000 + 15291498 n 0101 01 + 09 00 | give life-time employment to; "She was tenured after she published her book" -02397637 41 v 06 promote 0 upgrade 0 advance 0 kick_upstairs 0 raise 4 elevate 0 012 @ 02391803 v 0000 + 13940456 n 0603 + 00373544 n 0603 + 07251984 n 0303 + 00198451 n 0101 ! 02399331 v 0101 ~ 02397460 v 0000 ~ 02398161 v 0000 ~ 02398314 v 0000 ~ 02398463 v 0000 ~ 02400037 v 0000 ~ 02554797 v 0000 01 + 09 00 | give a promotion to or assign to a higher position; "John was kicked upstairs when a replacement was hired"; "Women tend not to advance in the major law firms"; "I got promoted after many years of hard work" -02398161 41 v 01 bring_up 1 001 @ 02397637 v 0000 01 + 09 00 | promote from a lower position or rank; "This player was brought up to the major league" -02398314 41 v 01 spot_promote 0 001 @ 02397637 v 0000 01 + 09 00 | promote on the spot; "Supreme Bishop Digby had been spot-promoted to Archangel" -02398463 41 v 03 ennoble 0 gentle 0 entitle 1 005 @ 02397637 v 0000 + 00065098 n 0101 ~ 02398681 v 0000 ~ 02398854 v 0000 ~ 02399185 v 0000 01 + 09 00 | give a title to someone; make someone a member of the nobility -02398681 41 v 02 baronetize 0 baronetise 0 002 @ 02398463 v 0000 + 09840639 n 0101 01 + 09 00 | confer baronetcy upon; "He was baronetized for his loyalty to the country" -02398854 41 v 01 lord 0 002 @ 02398463 v 0000 + 10271677 n 0101 01 + 09 00 | make a lord of someone -02398956 41 v 03 lionize 0 lionise 0 celebrate 2 002 @ 02457233 v 0000 + 10265070 n 0101 01 + 09 00 | assign great social importance to; "The film director was celebrated all over Hollywood"; "The tenor was lionized in Vienna" -02399185 41 v 02 knight 1 dub 0 002 @ 02398463 v 0000 + 10238375 n 0101 01 + 09 00 | raise (someone) to knighthood; "The Beatles were knighted" -02399331 41 v 05 demote 0 bump 0 relegate 0 break 6 kick_downstairs 0 007 @ 02391803 v 0000 + 01013434 n 0301 ^ 02482425 v 0205 + 00198793 n 0101 ! 02397637 v 0101 ~ 02399679 v 0000 ~ 02399888 v 0000 02 + 09 00 + 21 00 | assign to a lower position; reduce in rank; "She was demoted because she always speaks up"; "He was broken down to Sergeant" -02399679 41 v 01 sideline 0 001 @ 02399331 v 0000 01 + 09 00 | remove from the center of activity or attention; place into an inferior position; "The outspoken cabinet member was sidelined by the President" -02399888 41 v 01 reduce 0 001 @ 02399331 v 0000 01 + 24 00 | bring to humbler or weaker state or condition; "He reduced the population to slavery" -02400037 41 v 03 prefer 0 favor 0 favour 0 005 @ 02397637 v 0000 + 07500414 n 0302 + 07500414 n 0201 + 00198631 n 0101 ~ 02513268 v 0000 02 + 08 00 + 09 00 | promote over another; "he favors his second daughter" -02400251 41 v 01 prefer 1 002 @ 02251743 v 0000 ;c 08441203 n 0000 01 + 09 00 | give preference to one creditor over another -02400378 41 v 04 screen 0 screen_out 0 sieve 0 sort 0 004 @ 00674607 v 0000 + 13558696 n 0401 + 00644967 n 0101 + 10564224 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | examine in order to test suitability; "screen these samples"; "screen the job applicants" -02400637 41 v 01 vote_in 0 001 @ 00674607 v 0000 02 + 08 00 + 09 00 | elect in a voting process; "They voted in Clinton" -02400760 41 v 01 elect 0 009 @ 00674607 v 0000 + 00851744 a 0101 + 00846052 a 0101 + 00181781 n 0101 + 08386853 n 0102 + 08161068 n 0101 + 10760340 n 0102 ~ 02401051 v 0000 ~ 02401296 v 0000 01 + 09 00 | select by a vote for an office or membership; "We elected him chairman of the board" -02401051 41 v 01 co-opt 2 003 @ 02400760 v 0000 + 00181191 n 0101 + 00181191 n 0102 01 + 09 00 | choose or elect as a fellow member or colleague; "The church members co-opted individuals from similar backgrounds to replenish the congregation" -02401296 41 v 02 reelect 0 return 0 002 @ 02400760 v 0000 + 00181373 n 0101 01 + 09 00 | elect again -02401399 41 v 01 engage 0 001 @ 02409412 v 0000 01 + 09 00 | ask to represent; of legal counsel; "I'm retaining a lawyer" -02401523 41 v 02 nominate 2 propose 0 004 @ 00674607 v 0000 + 00846625 a 0102 + 10360101 n 0101 ~ 00879540 v 0000 02 + 09 00 + 14 00 | put forward; nominate for appointment to an office or for an honor or position; "The President nominated her as head of the Civil Rights Commission" -02401809 41 v 06 oust 0 throw_out 0 drum_out 0 boot_out 0 kick_out 0 expel 1 006 @ 02404224 v 0000 + 00206927 n 0603 + 10386071 n 0101 + 00208797 n 0102 ~ 02402112 v 0000 ~ 02405252 v 0000 02 + 09 00 + 22 00 | remove from a position or office; "The chairman was ousted after he misappropriated funds" -02402112 41 v 01 excommunicate 0 003 $ 01030397 v 0000 @ 02401809 v 0000 + 14413993 n 0101 01 + 09 00 | oust or exclude from a group or membership by decree -02402271 41 v 01 take_time_by_the_forelock 0 001 @ 02367363 v 0000 01 + 02 00 | act quickly and decisively; not let slip an opportunity -02402409 41 v 04 overthrow 0 subvert 0 overturn 0 bring_down 0 006 @ 02405252 v 0000 + 00963283 a 0203 + 00215838 n 0201 + 10527334 n 0204 + 00215683 n 0101 ~ 02402695 v 0000 02 + 08 00 + 09 00 | cause the downfall of; of rulers; "The Czar was overthrown"; "subvert the ruling class" -02402695 41 v 01 revolutionize 0 002 @ 02402409 v 0000 + 00962722 n 0101 01 + 08 00 | overthrow by a revolution, of governments -02402825 41 v 0b displace 4 fire 0 give_notice 0 can 0 dismiss 0 give_the_axe 0 send_away 0 sack 0 force_out 0 give_the_sack 0 terminate 1 014 @ 02404224 v 0000 + 00216174 n 0807 + 00216174 n 0808 + 01526769 a 0501 + 00216174 n 0502 + 00216174 n 0501 + 00216174 n 0204 ! 02409412 v 0201 ~ 02380251 v 0000 ~ 02380571 v 0000 ~ 02403408 v 0000 ~ 02403537 v 0000 ~ 02404076 v 0000 ~ 02465939 v 0000 04 + 09 00 + 24 00 + 22 0a + 22 06 | terminate the employment of; discharge from an office or position; "The boss fired his secretary today"; "The company terminated 25% of its workers" -02403408 41 v 01 clean_out 0 001 @ 02402825 v 0000 02 + 09 00 + 10 00 | force out; "The new boss cleaned out the lazy workers" -02403537 41 v 02 furlough 0 lay_off 0 003 @ 02402825 v 0000 + 00229814 n 0201 ~ 02403773 v 0000 01 + 09 00 | dismiss, usually for economic reasons; "She was laid off together with hundreds of other workers when the company downsized" -02403773 41 v 01 downsize 0 001 @ 02403537 v 0000 01 + 09 00 | dismiss from work; "three secretaries were downsized during the financial crisis" -02403920 41 v 01 drop 1 002 $ 02465939 v 0000 @ 02404224 v 0000 02 + 09 00 + 10 00 | terminate an association with; "drop him from the Republican ticket" -02404076 41 v 01 squeeze_out 0 001 @ 02402825 v 0000 02 + 08 00 + 11 00 | force out; "Some employees were squeezed out by the recent budget cuts" -02404224 41 v 01 remove 0 009 + 00216723 n 0101 ~ 02391650 v 0000 ~ 02401809 v 0000 ~ 02402825 v 0000 ~ 02403920 v 0000 ~ 02404467 v 0000 ~ 02404622 v 0000 ~ 02404784 v 0000 ~ 02482889 v 0000 01 + 09 00 | remove from a position or an office -02404467 41 v 01 pull_off 1 001 @ 02404224 v 0000 02 + 08 00 + 09 00 | cause to withdraw; "We pulled this firm off the project because they overcharged" -02404622 41 v 01 winkle_out 0 001 @ 02404224 v 0000 02 + 09 00 + 10 00 | force from a place or position; "The committee winkled out the unqualified candidates" -02404784 41 v 01 invalid 0 001 @ 02404224 v 0000 01 + 09 00 | force to retire, remove from active duty, as of firemen -02404904 41 v 03 take_out 1 move_out 0 remove 2 004 > 01831531 v 0000 ~ 00450691 v 0000 ~ 02405120 v 0000 ~ 02597246 v 0000 02 + 08 00 + 09 00 | cause to leave; "The teacher took the children out of the classroom" -02405120 41 v 01 call_in 2 001 @ 02404904 v 0000 01 + 09 00 | take a player out of a game in order to exchange for another player -02405252 41 v 02 depose 0 force_out 1 003 @ 02401809 v 0000 + 00208943 n 0101 ~ 02402409 v 0000 01 + 09 00 | force to leave (an office) -02405390 41 v 05 supplant 0 replace 0 supersede 0 supervene_upon 0 supercede 0 015 $ 01308381 v 0000 $ 00162688 v 0000 @ 02406585 v 0000 + 00197419 n 0302 + 00197419 n 0301 + 10680153 n 0203 + 05696425 n 0202 + 00197772 n 0201 + 00197772 n 0202 + 10742546 n 0102 + 00197610 n 0101 ~ 02394662 v 0000 ~ 02406011 v 0000 ~ 02406287 v 0000 ~ 02406449 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | take the place or move into the position of; "Smith replaced Miller as CEO after Miller left"; "the computer has supplanted the slide rule"; "Mary replaced Susan as the team's captain and the highest-ranked player in the school" -02406011 41 v 02 preempt 0 displace 2 001 @ 02405390 v 0000 01 + 11 00 | take the place of or have precedence over; "live broadcast of the presidential debate preempts the regular news hour"; "discussion of the emergency situation will preempt the lecture by the professor" -02406287 41 v 01 usurp 0 001 @ 02405390 v 0000 01 + 11 00 | take the place of; "gloom had usurped mirth at the party after the news of the terrorist act broke" -02406449 41 v 01 oust 1 001 @ 02405390 v 0000 02 + 08 00 + 09 00 | remove and replace; "The word processor has ousted the typewriter" -02406585 41 v 03 succeed 1 come_after 0 follow 1 009 + 01667729 a 0105 + 05044822 n 0103 + 01010458 n 0101 + 10671736 n 0101 + 10671613 n 0101 + 05696803 n 0101 ! 02407766 v 0101 ~ 02381397 v 0000 ~ 02405390 v 0000 03 + 02 00 + 09 00 + 22 00 | be the successor (of); "Carter followed Ford"; "Will Charles succeed to the throne?" -02406916 41 v 05 tug 0 labor 1 labour 1 push 0 drive 0 009 @ 02407338 v 0000 + 00798245 n 0504 + 04836683 n 0402 ^ 01993549 v 0402 + 00620752 n 0302 + 00795720 n 0204 + 10241300 n 0201 $ 00765977 v 0000 ~ 01146051 v 0000 01 + 28 00 | strive and make an effort to reach a goal; "She tugged for years to make a decent living"; "We have to push a little to make the deadline!"; "She is driving away at her doctoral thesis" -02407338 41 v 02 fight 0 struggle 0 007 @ 02530167 v 0000 + 00622068 n 0201 + 00788973 n 0201 + 10665302 n 0201 + 04837425 n 0102 ~ 02406916 v 0000 ~ 02407632 v 0000 01 + 22 00 | make a strenuous or labored effort; "She struggled for years to survive without welfare"; "He fought for breath" -02407632 41 v 01 flounder 0 001 @ 02407338 v 0000 01 + 02 00 | behave awkwardly; have difficulties; "She is floundering in college" -02407766 41 v 02 precede 0 come_before 0 004 + 01257145 n 0101 + 10464711 n 0101 + 01257145 n 0102 ! 02406585 v 0101 02 + 09 00 + 22 00 | be the predecessor of; "Bill preceded John in the long line of Susan's husbands" -02407987 41 v 02 work 1 put_to_work 0 010 > 02410855 v 0000 @ 01158872 v 0000 + 00584367 n 0102 + 00575741 n 0101 ~ 00100551 v 0000 ~ 00100905 v 0000 ~ 01718952 v 0000 ~ 02408722 v 0000 ~ 02409148 v 0000 $ 02410855 v 0000 02 + 08 00 + 09 00 | cause to work; "he is working his servants hard" -02408281 41 v 01 drive d 006 $ 01930874 v 0000 @ 02410855 v 0000 + 03244388 n 0102 + 00307631 n 0101 + 03242713 n 0101 + 10034906 n 0101 02 + 02 00 + 08 00 | work as a driver; "He drives a bread truck"; "She drives for the taxi company in Newark" -02408530 41 v 01 overdrive 0 002 @ 02409148 v 0000 + 14009020 n 0101 01 + 09 00 | drive or work too hard; "The teacher is overworking his students"; "Overdriving people often suffer stress" -02408722 41 v 01 rack 1 002 @ 02407987 v 0000 + 04038727 n 0101 01 + 08 00 | put on a rack and pinion; "rack a camera" -02408843 41 v 01 carpenter 0 003 @ 02413480 v 0000 + 09896685 n 0101 + 00607775 n 0101 01 + 02 00 | work as a carpenter -02408965 41 v 01 implement 1 003 @ 01158872 v 0000 + 00044150 n 0101 + 03563967 n 0101 01 + 08 00 | apply in a manner consistent with its purpose or design; "implement a procedure" -02409148 41 v 02 overwork 0 exploit 0 008 @ 02407987 v 0000 + 01867768 a 0203 + 01867768 a 0201 + 01867768 a 0202 + 00948206 n 0201 + 00623370 n 0101 + 00623370 n 0102 ~ 02408530 v 0000 02 + 08 00 + 09 00 | work excessively hard; "he is exploiting the students" -02409412 41 v 03 hire 0 engage 1 employ 0 014 + 13968092 n 0302 + 01217859 n 0301 + 10053808 n 0301 + 10054657 n 0301 + 01217859 n 0202 + 09867956 n 0102 ! 02402825 v 0102 ~ 00751775 v 0000 ~ 02394081 v 0000 ~ 02401399 v 0000 ~ 02409838 v 0000 ~ 02409941 v 0000 ~ 02413140 v 0000 ~ 02461063 v 0000 01 + 09 00 | engage or hire for work; "They hired two new secretaries in the department"; "How many people has she employed?" -02409838 41 v 01 ship 0 002 @ 02409412 v 0000 + 04194289 n 0101 01 + 09 00 | hire for work on a ship -02409941 41 v 04 sign 1 contract 0 sign_on 0 sign_up 0 004 @ 02409412 v 0000 + 06520944 n 0201 + 10597234 n 0101 ~ 02410719 v 0000 02 + 09 00 + 02 01 | engage by written agreement; "They signed two new pitchers for the next season" -02410175 41 v 04 retain 1 continue 0 keep 2 keep_on 0 003 @ 02679530 v 0000 + 05051896 n 0203 $ 02747922 v 0000 02 + 09 00 + 10 00 | allow to remain in a place or position or maintain a property or feature; "We cannot continue several servants any longer"; "She retains a lawyer"; "The family's fortune waned and they could not keep their household staff"; "Our grant has run out and we cannot keep you on"; "We kept the work going as long as we could"; "She retained her composure"; "this garment retains its shape even after many washings" -02410719 41 v 01 contract_out 0 001 @ 02409941 v 0000 03 + 02 00 + 08 00 + 21 00 | assign a job to someone outside one's own business -02410855 41 v 02 work 0 do_work 0 021 $ 02407987 v 0000 $ 02413480 v 0000 $ 02594979 v 0000 + 00584367 n 0102 + 09632518 n 0101 ~ 01095218 v 0000 ~ 02343056 v 0000 ~ 02394183 v 0000 ~ 02408281 v 0000 ~ 02411529 v 0000 ~ 02411621 v 0000 ~ 02412939 v 0000 ~ 02419773 v 0000 ~ 02420232 v 0000 ~ 02420606 v 0000 ~ 02420789 v 0000 ~ 02420991 v 0000 ~ 02421199 v 0000 ~ 02460883 v 0000 ~ 02464481 v 0000 ~ 02576110 v 0000 02 + 02 00 + 22 00 | be employed; "Is your husband working again?"; "My wife never worked"; "Do you want to work after the age of 60?"; "She never did any work because she inherited a lot of money"; "She works as a waitress to put herself through college" -02411529 41 v 01 tinker 0 001 @ 02410855 v 0000 01 + 02 00 | work as a tinker or tinkerer -02411621 41 v 01 serve d 002 $ 01095218 v 0000 @ 02410855 v 0000 01 + 02 00 | do military service; "She served in Vietnam"; "My sons never served, because they are short-sighted" -02411802 41 v 01 clerk 0 003 @ 02413480 v 0000 + 09928451 n 0101 + 00619230 n 0102 02 + 02 00 + 22 00 | work as a clerk, as in the legal business -02411950 41 v 02 take_off 0 take_time_off 0 001 @ 00778275 v 0000 02 + 02 00 + 08 01 | take time off from work; stop working temporarily -02412089 41 v 01 get_off 0 000 01 + 02 00 | be relieved of one's duties temporarily -02412175 41 v 02 take_over 0 relieve 1 004 @ 02422026 v 0000 + 10648237 n 0204 + 10518194 n 0201 ~ 02412366 v 0000 02 + 09 00 + 02 01 | free someone temporarily from his or her obligations -02412366 41 v 01 spell 0 001 @ 02412175 v 0000 01 + 09 00 | relieve (someone) from work by taking a turn; "She spelled her husband at the wheel" -02412513 41 v 01 page 0 002 @ 02413480 v 0000 + 10391248 n 0101 01 + 02 00 | work as a page; "He is paging in Congress this summer" -02412647 41 v 02 strike 0 walk_out 0 004 @ 02521410 v 0000 + 01244341 n 0201 + 01243674 n 0101 + 10663745 n 0101 01 + 02 00 | stop work in order to press demands; "The auto workers are striking for higher wages"; "The employees walked out when their demand for better benefits was not met" -02412939 41 v 04 fink 0 scab 0 rat 1 blackleg 0 005 @ 02410855 v 0000 + 10554455 n 0403 + 10554455 n 0304 + 10007109 n 0306 + 10554455 n 0201 01 + 02 00 | take the place of work of someone on strike -02413140 41 v 01 rat 2 004 @ 02409412 v 0000 ;c 00923444 n 0000 + 10554455 n 0104 + 10007109 n 0106 01 + 08 00 | employ scabs or strike breakers in -02413290 41 v 02 wait 0 waitress 0 003 @ 02413480 v 0000 + 10763620 n 0201 + 10763383 n 0101 01 + 02 00 | serve as a waiter or waitress in a restaurant; "I'm waiting on tables at Maxim's" -02413480 41 v 01 work 2 031 + 09767197 n 0103 + 04599396 n 0101 + 00575741 n 0101 + 09632518 n 0101 + 02207449 n 0101 ! 02417504 v 0101 ~ 01161947 v 0000 ~ 01473346 v 0000 ~ 02408843 v 0000 $ 02410855 v 0000 ~ 02411802 v 0000 ~ 02412513 v 0000 ~ 02413290 v 0000 ~ 02414272 v 0000 ~ 02414473 v 0000 ~ 02414710 v 0000 ~ 02414913 v 0000 ~ 02415039 v 0000 ~ 02415573 v 0000 ~ 02415831 v 0000 ~ 02416278 v 0000 ~ 02424984 v 0000 ~ 02446164 v 0000 ~ 02446660 v 0000 ~ 02446819 v 0000 ~ 02447001 v 0000 ~ 02447247 v 0000 ~ 02516437 v 0000 ~ 02580577 v 0000 ~ 02593107 v 0000 ~ 02594979 v 0000 02 + 02 00 + 22 00 | exert oneself by doing mental or physical work for a purpose or out of necessity; "I will work hard to improve my grades"; "she worked hard for better living conditions for the poor" -02414272 41 v 01 pull_one's_weight 0 001 @ 02413480 v 0000 01 + 02 00 | do one's share in a common task; "Bob has never pulled his weight, and we all have to work harder to make up for his laziness" -02414473 41 v 01 electioneer 0 003 @ 02413480 v 0000 + 07245885 n 0101 + 00799537 n 0104 01 + 02 00 | work actively for a political candidate or a party; "My neighbors are busy electioneering during the Presidential election campaign" -02414710 41 v 01 assist 0 005 @ 02413480 v 0000 + 00793250 a 0102 + 09815790 n 0101 ~ 01129710 v 0000 ~ 02549211 v 0000 02 + 02 00 + 09 00 | act as an assistant in a subordinate or supportive function -02414913 41 v 02 beaver 0 beaver_away 0 002 @ 02413480 v 0000 + 02363005 n 0101 02 + 02 00 + 22 00 | work hard on something -02415039 41 v 02 work_at 1 work_on 0 002 @ 02413480 v 0000 ~ 02415265 v 0000 01 + 08 00 | to exert effort in order to do, make, or perform something; "the child worked at the multiplication table until she had it down cold" -02415265 41 v 02 belabor 0 belabour 0 001 @ 02415039 v 0000 01 + 08 00 | to work at or to absurd length; "belabor the obvious" -02415394 41 v 02 potter 0 putter 0 003 @ 02415831 v 0000 + 10496193 n 0201 + 10496193 n 0102 02 + 02 00 + 22 00 | work lightly; "The old lady is pottering around in the garden" -02415573 41 v 05 plug_away 0 peg_away 0 slog 0 keep_one's_nose_to_the_grindstone 0 keep_one's_shoulder_to_the_wheel 0 002 @ 02413480 v 0000 + 10442417 n 0302 02 + 02 00 + 22 00 | work doggedly or persistently; "She keeps plugging away at her dissertation" -02415831 41 v 02 busy 0 occupy 0 004 @ 02413480 v 0000 + 00582868 n 0201 ~ 02415394 v 0000 ~ 02416030 v 0000 02 + 09 00 + 20 00 | keep busy with; "She busies herself with her butterfly collection" -02416030 41 v 03 dabble 1 smatter 0 play_around 2 002 @ 02415831 v 0000 + 09987696 n 0101 03 + 08 00 + 33 00 + 02 01 | work with in an amateurish manner; "She dabbles in astronomy"; "He plays around with investments but he never makes any money" -02416278 41 v 04 collaborate 0 join_forces 0 cooperate 0 get_together 0 012 $ 02416751 v 0000 @ 02413480 v 0000 + 02112108 a 0304 + 00619972 a 0301 + 00411384 n 0301 + 01202904 n 0301 + 09935434 n 0302 + 00620208 a 0101 + 01205156 n 0101 + 09935434 n 0101 ~ 02416751 v 0000 ~ 02417208 v 0000 02 + 02 00 + 22 00 | work together on a common enterprise of project; "The soprano and the pianist did not get together very well"; "We joined forces with another research group" -02416751 41 v 01 collaborate 1 004 @ 02416278 v 0000 + 01205341 n 0101 + 09935793 n 0101 $ 02416278 v 0000 01 + 02 00 | cooperate as a traitor; "he collaborated with the Nazis when they occupied Paris" -02416955 41 v 01 financier 0 002 @ 02443849 v 0000 + 10090020 n 0101 01 + 02 00 | conduct financial operations, often in an unethical manner -02417098 41 v 01 coact 0 002 @ 02367363 v 0000 + 01205156 n 0102 01 + 01 00 | act together, as of organisms -02417208 41 v 02 play_along 0 go_along 0 001 @ 02416278 v 0000 02 + 02 00 + 22 00 | cooperate or pretend to cooperate; "He decided to play along with the burglars for the moment" -02417389 41 v 02 connive_at 1 wink_at 0 001 @ 02554922 v 0000 02 + 08 00 + 33 00 | give one's silent approval to -02417504 41 v 04 idle 0 laze 0 slug 0 stagnate 0 012 + 14012667 n 0401 + 14012667 n 0402 + 10612931 n 0302 + 10612931 n 0301 + 10197967 n 0101 + 01065441 n 0102 ! 02413480 v 0101 ~ 02417908 v 0000 ~ 02418029 v 0000 ~ 02418205 v 0000 ~ 02639606 v 0000 ~ 02639905 v 0000 01 + 02 00 | be idle; exist in a changeless situation; "The old man sat and stagnated on his porch"; "He slugged in bed all morning" -02417908 41 v 03 moon 0 moon_around 0 moon_on 0 001 @ 02417504 v 0000 01 + 02 00 | be idle in a listless or dreamy way -02418029 41 v 02 ride_the_bench 0 warm_the_bench 0 002 @ 02417504 v 0000 ;c 00523513 n 0000 01 + 02 00 | be out of the game; "Miller was riding the bench in Saturday's game" -02418205 41 v 02 daydream 0 moon 1 004 @ 02417504 v 0000 + 05769471 n 0103 + 09993901 n 0101 + 05769471 n 0104 01 + 02 00 | have dreamlike musings or fantasies while awake; "She looked out the window, daydreaming" -02418421 41 v 02 play 0 recreate 0 004 + 00426928 n 0202 + 00511817 n 0101 + 00041188 n 0101 $ 02418686 v 0000 01 + 02 00 | engage in recreational activities rather than work; occupy oneself in a diversion; "On weekends I play"; "The students all recreate alike" -02418686 41 v 01 play 3 009 $ 02418421 v 0000 @ 02419073 v 0000 + 00511817 n 0101 + 00431893 n 0101 + 00041188 n 0101 ~ 00604347 v 0000 ~ 00854150 v 0000 ~ 01883716 v 0000 ~ 02419613 v 0000 01 + 02 00 | be at play; be engaged in playful activity; amuse oneself in a way characteristic of children; "The kids were playing outside all day"; "I used to play with trucks as a little girl" -02419073 41 v 01 act 7 004 + 14006945 n 0101 ~ 02418686 v 0000 ~ 02419266 v 0000 ~ 02419438 v 0000 01 + 02 00 | be engaged in an activity, often for no particular purpose other than pleasure -02419266 41 v 01 drive_around 0 001 @ 02419073 v 0000 01 + 02 00 | drive without any particular aim; "we were driving around in the countryside on a fine Sunday morning" -02419438 41 v 01 walk_around 1 001 @ 02419073 v 0000 01 + 02 00 | walk randomly; "We were walking around in the neighborhood to see whether we could find an open drugstore" -02419613 41 v 03 dabble 0 paddle 0 splash_around 0 001 @ 02418686 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | play in or as if in water, as of small children -02419773 41 v 09 labor 0 labour 0 toil 0 fag 0 travail 0 grind 0 drudge 0 dig 0 moil 0 014 @ 02410855 v 0000 + 10035809 n 0701 + 10154601 n 0702 + 00621476 n 0701 + 10684630 n 0602 + 00621476 n 0603 + 00621627 n 0504 + 10700105 n 0301 + 00620752 n 0303 + 00620752 n 0202 + 10241300 n 0203 + 00620752 n 0101 + 00795720 n 0104 + 10241300 n 0101 02 + 02 00 + 22 00 | work hard; "She was digging away at her math homework"; "Lexicographers drudge all day long" -02420232 41 v 01 farm 0 005 @ 02410855 v 0000 + 03322099 n 0101 + 10078806 n 0101 + 00453731 n 0101 ~ 02420430 v 0000 01 + 02 00 | be a farmer; work as a farmer; "My son is farming in California" -02420430 41 v 01 ranch 0 004 @ 02420232 v 0000 + 10506417 n 0101 + 00920062 n 0101 + 04052442 n 0101 01 + 02 00 | manage or run a ranch; "Her husband is ranching in Arizona" -02420606 41 v 01 moonlight 0 002 @ 02410855 v 0000 + 10330593 n 0101 02 + 02 00 + 22 00 | work a second job, usually after hours; "The law student is moonlighting as a taxi driver" -02420789 41 v 01 job 0 005 @ 02410855 v 0000 + 03599761 n 0101 + 03599628 n 0101 + 00576877 n 0101 + 00719705 n 0101 01 + 22 00 | work occasionally; "As a student I jobbed during the semester breaks" -02420991 41 v 01 man 0 003 $ 01088547 v 0000 @ 02410855 v 0000 + 10745332 n 0105 01 + 08 00 | take charge of a certain job; occupy a certain work place; "Mr. Smith manned the reception desk in the morning" -02421199 41 v 04 slave 0 break_one's_back 0 buckle_down 0 knuckle_down 0 003 @ 02410855 v 0000 + 10609556 n 0101 + 00623545 n 0101 01 + 02 00 | work very hard, like a slave -02421374 41 v 06 free 0 liberate 2 release 0 unloose 0 unloosen 0 loose 0 013 + 00095502 n 0302 + 00095502 n 0201 + 13996061 n 0201 + 10257221 n 0201 + 07947958 n 0101 + 00095502 n 0103 ! 02495038 v 0101 ~ 01064696 v 0000 ~ 01288554 v 0000 ~ 02421749 v 0000 ~ 02421921 v 0000 ~ 02494259 v 0000 ~ 02591893 v 0000 02 + 09 00 + 10 00 | grant freedom to; free from confinement -02421749 41 v 01 bail 0 005 $ 00890403 v 0000 @ 02421374 v 0000 + 01763683 a 0101 + 13350976 n 0101 + 05903445 n 0101 01 + 09 00 | release after a security has been paid -02421921 41 v 01 run 4 002 $ 02099829 v 0000 @ 02421374 v 0000 01 + 08 00 | set animals loose to graze -02422026 41 v 02 free 2 discharge 1 009 + 00216174 n 0203 + 00095502 n 0103 ~ 02385372 v 0000 ~ 02412175 v 0000 ~ 02422283 v 0000 ~ 02422409 v 0000 ~ 02422559 v 0000 ~ 02497062 v 0000 ~ 02678070 v 0000 02 + 09 00 + 10 00 | free from obligations or duties -02422283 41 v 01 cut d 001 @ 02422026 v 0000 01 + 09 00 | discharge from a group; "The coach cut two players from the team" -02422409 41 v 01 clear 0 001 @ 02422026 v 0000 01 + 08 00 | free from payment of customs duties, as of a shipment; "Clear the ship and let it dock" -02422559 41 v 01 cashier 0 001 @ 02422026 v 0000 01 + 09 00 | discharge with dishonor, as in the army -02422663 41 v 04 restrain 1 keep 0 keep_back 0 hold_back 0 007 @ 02423762 v 0000 + 10525134 n 0101 + 01145359 n 0101 ~ 00004492 v 0000 ~ 01347298 v 0000 ~ 02423762 v 0000 ~ 02510337 v 0000 02 + 09 00 + 20 00 | keep under control; keep in check; "suppress a smile"; "Keep your temper"; "keep your cool" -02422967 41 v 01 quench 2 001 @ 02423762 v 0000 01 + 08 00 | electronics: suppress (sparking) when the current is cut off in an inductive circuit, or suppress (an oscillation or discharge) in a component or device -02423183 41 v 03 let 0 allow 0 permit 0 002 ! 02450505 v 0101 ~ 02423513 v 0000 02 + 25 00 + 35 00 | make it possible through a specific action or lack of action for something to happen; "This permits the water to rush in"; "This sealed door won't allow the water come into the basement"; "This will permit the rain to run off" -02423513 41 v 01 pass b 001 @ 02423183 v 0000 01 + 08 00 | allow to go without comment or censure; "the insult passed as if unnoticed" -02423650 41 v 02 give_up 0 allow 1 000 01 + 08 00 | allow the other (baseball) team to score; "give up a run" -02423762 41 v 03 inhibit 0 bottle_up 0 suppress 0 005 @ 02422663 v 0000 + 01147950 n 0301 ~ 02422663 v 0000 ~ 02422967 v 0000 ~ 02423999 v 0000 01 + 08 00 | control and refrain from showing; of emotions, desires, impulses, or behavior -02423999 41 v 01 choke 0 001 @ 02423762 v 0000 01 + 08 00 | check or slow down the action or effect of; "She choked her anger" -02424128 41 v 06 repress 0 quash 0 keep_down 0 subdue 0 subjugate 1 reduce 3 005 @ 02424652 v 0000 + 10668450 n 0401 + 02004176 a 0102 + 13996571 n 0101 + 00420712 n 0101 03 + 08 00 + 09 00 + 10 00 | put down by force or intimidation; "The government quashes any attempt of an uprising"; "China keeps down her dissidents very efficiently"; "The rich landowners subjugated the peasants working the land" -02424533 41 v 01 dragoon 1 002 @ 02496816 v 0000 + 10029831 n 0101 02 + 09 00 + 11 00 | subjugate by imposing troops -02424652 41 v 03 oppress 0 suppress 1 crush 0 008 + 01079604 n 0302 + 02005065 a 0201 + 01079604 n 0201 + 10678472 n 0202 + 00788474 a 0101 + 00421047 n 0101 + 10379758 n 0101 ~ 02424128 v 0000 03 + 08 00 + 09 00 + 10 00 | come down on or keep down by unjust use of one's authority; "The government oppresses political activists" -02424984 41 v 01 volunteer 0 003 @ 02413480 v 0000 + 10759151 n 0101 + 10759331 n 0103 02 + 02 00 + 22 00 | do volunteer work -02425112 41 v 02 volunteer 1 offer 0 002 @ 02367363 v 0000 + 07185076 n 0201 01 + 28 00 | agree freely; "She volunteered to drive the old lady home"; "I offered to help with the dishes but the hostess would not hear of it" -02425337 41 v 01 inaugurate 1 002 @ 02425462 v 0000 + 00239910 n 0101 01 + 08 00 | open ceremoniously or dedicate formally -02425462 41 v 01 open 1 008 @ 01650610 v 0000 + 07326369 n 0101 + 07452699 n 0101 + 00239230 n 0104 ! 02425913 v 0101 ^ 01645421 v 0102 ~ 02425337 v 0000 ~ 02425763 v 0000 02 + 08 00 + 11 00 | begin or set in action, of meetings, speeches, recitals, etc.; "He opened the meeting with a long speech" -02425763 41 v 01 call_to_order 0 001 @ 02425462 v 0000 01 + 08 00 | open formally; "the chairman called the meeting to order by pounding his gavel" -02425913 41 v 01 close 1 005 @ 00352826 v 0000 + 00229260 n 0101 + 15267536 n 0107 + 00211110 n 0103 ! 02425462 v 0101 02 + 08 00 + 11 00 | finish or terminate (meetings, speeches, etc.); "The meeting was closed with a charge by the chairman of the board" -02426171 41 v 02 open 0 open_up 0 004 + 07452699 n 0101 + 00239230 n 0104 ! 02426395 v 0102 ~ 02427103 v 0000 02 + 01 00 + 08 00 | start to operate or function or cause to start operating or functioning; "open a business" -02426395 41 v 05 close_up 0 close 0 fold 0 shut_down 0 close_down 0 008 + 00229260 n 0502 + 00229260 n 0404 + 09930464 n 0201 + 00229260 n 0201 + 15267536 n 0207 + 00229260 n 0203 ! 02426171 v 0201 ~ 02428487 v 0000 02 + 01 00 + 08 00 | cease to operate or cause to cease operating; "The owners decided to move and to close the factory"; "My business closes every night at 8 P.M."; "close up the shop" -02426799 41 v 03 restore 0 reinstate 1 reestablish 0 004 @ 00126264 v 0000 + 13944914 n 0201 + 01307606 n 0101 ~ 02551501 v 0000 01 + 08 00 | bring back into original existence, use, function, or position; "restore law and order"; "reestablish peace in the region"; "restore the emperor to the throne" -02427103 41 v 04 establish 0 set_up 2 found 0 launch 1 006 @ 02426171 v 0000 + 08406486 n 0301 + 10107303 n 0301 + 00240184 n 0302 + 00237078 n 0102 ! 02427334 v 0101 01 + 08 00 | set up or found; "She set up a literacy program" -02427334 41 v 02 abolish 0 get_rid_of 0 006 + 00738182 a 0101 + 00228283 n 0102 + 00228283 n 0101 ! 02427103 v 0101 ~ 02427596 v 0000 ~ 02478584 v 0000 02 + 08 00 + 11 00 | do away with; "Slavery was abolished in the mid-19th century in America and in Russia" -02427596 41 v 01 cashier 1 001 @ 02427334 v 0000 01 + 08 00 | discard or do away with; "cashier the literal sense of this word" -02427726 41 v 01 ordain 2 003 @ 02386388 v 0000 + 10381214 n 0101 + 00165298 n 0102 01 + 09 00 | invest with ministerial or priestly authority; "The minister was ordained only last month" -02427916 41 v 02 ordain 1 enact 0 004 @ 01027508 v 0000 + 01126856 n 0201 ~ 02428202 v 0000 ~ 02466670 v 0000 02 + 08 00 + 26 00 | order by virtue of superior authority; decree; "The King ordained the persecution and expulsion of the Jews"; "the legislature enacted this law in 1985" -02428202 41 v 01 reenact 0 001 @ 02427916 v 0000 02 + 08 00 + 11 00 | enact again; "Congress reenacted the law" -02428316 41 v 01 get_around_to 0 001 @ 02367363 v 0000 01 + 33 00 | do something despite obstacles such as lack of time; "He finally got around to painting the windows" -02428487 41 v 03 adjourn 0 withdraw 0 retire 0 006 $ 00495998 v 0000 * 02428924 v 0000 @ 02426395 v 0000 + 00053913 n 0201 + 01067070 n 0101 ~ 02428771 v 0000 03 + 02 00 + 22 00 + 08 01 | break from a meeting or gathering; "We adjourned for lunch"; "The men retired to the library" -02428771 41 v 01 prorogue 0 002 @ 02428487 v 0000 + 01067192 n 0101 01 + 02 00 | adjourn by royal prerogative; without dissolving the legislative body -02428924 41 v 05 meet 0 gather 0 assemble 0 forgather 0 foregather 0 020 $ 02023107 v 0000 @ 02376958 v 0000 + 07975026 n 0302 + 01229938 n 0302 + 07975026 n 0201 + 01229938 n 0203 + 08310389 n 0101 + 01230965 n 0101 ~ 01089878 v 0000 ~ 02022804 v 0000 ~ 02023600 v 0000 ~ 02023851 v 0000 ~ 02023992 v 0000 ~ 02024508 v 0000 ~ 02025009 v 0000 ~ 02027612 v 0000 ~ 02032634 v 0000 ~ 02429475 v 0000 ~ 02429682 v 0000 ~ 02592111 v 0000 02 + 02 00 + 22 00 | collect in one place; "We assembled in the church basement"; "Let's gather in the dining room" -02429475 41 v 01 turn_out 3 003 @ 02428924 v 0000 + 07987216 n 0101 + 01233917 n 0101 01 + 02 00 | come and gather for a public event; "Hundreds of thousands turned out for the anti-war rally in New York" -02429682 41 v 01 caucus 0 002 @ 02428924 v 0000 + 08308313 n 0101 01 + 02 00 | meet to select a candidate or promote a policy -02429810 41 v 01 call 4 004 > 02428924 v 0000 @ 00752764 v 0000 + 09888269 n 0101 $ 00792471 v 0000 01 + 08 00 | call a meeting; invite or command to meet; "The Wannsee Conference was called to discuss the `Final Solution'"; "The new dean calls meetings every week" -02430078 41 v 02 band_oneself 0 league_together 0 001 @ 02434976 v 0000 01 + 02 00 | attach oneself to a group -02430191 41 v 01 ally 0 005 @ 02589245 v 0000 + 09785042 n 0101 + 08305942 n 0101 + 01081456 n 0102 ~ 02430421 v 0000 01 + 20 00 | become an ally or associate, as by a treaty or marriage; "He allied himself with the Communists" -02430421 41 v 01 misally 0 002 @ 02430191 v 0000 + 13965627 n 0101 01 + 20 00 | make a bad alliance; ally inappropriately; "The two countries are misallied" -02430580 41 v 05 disassociate 0 dissociate 0 divorce 1 disunite 0 disjoint 0 006 @ 02431320 v 0000 + 00385501 n 0401 + 14416845 n 0201 + 00384802 n 0201 + 14421373 n 0101 + 14416845 n 0102 01 + 22 00 | part; cease or break association with; "She disassociated herself from the organization when she found out the identity of the president" -02430922 41 v 02 imprint 0 form 2 004 @ 02536557 v 0000 + 00585398 a 0201 + 05693383 n 0101 + 05754730 n 0101 01 + 19 00 | establish or impress firmly in the mind; "We imprint our ideas onto our children" -02431129 41 v 01 militate 0 001 @ 02536557 v 0000 02 + 08 00 + 11 00 | have force or influence; bring about an effect or change; "Politeness militated against this opinion being expressed" -02431320 41 v 06 separate 2 part 0 split_up 1 split 0 break d break_up 0 013 + 00215314 n 0602 + 07313814 n 0503 + 00386676 n 0402 + 10580030 n 0101 + 01201429 n 0102 + 07331400 n 0602 ~ 00353639 v 0000 ~ 00368662 v 0000 ~ 02430580 v 0000 ~ 02431834 v 0000 ~ 02490634 v 0000 ~ 02535457 v 0000 ~ 02535716 v 0000 01 + 02 00 | discontinue an association or relation; go different ways; "The business partners broke over a tax question"; "The couple separated after 25 years of marriage"; "My friend and I split up" -02431834 41 v 01 break_with 0 001 @ 02431320 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | end a relationship; "China broke with Russia" -02431971 41 v 02 administer 0 administrate 0 013 @ 02436349 v 0000 + 01474806 a 0201 + 02904075 a 0201 + 09770472 n 0201 + 09770743 n 0201 + 09770949 n 0201 + 02904075 a 0101 + 01474806 a 0101 + 15266265 n 0103 + 08164585 n 0101 + 01135952 n 0101 ~ 02432395 v 0000 ~ 02443049 v 0000 02 + 02 00 + 08 00 | work in an administrative capacity; supervise or be in charge of; "administer a program"; "she administers the funds" -02432395 41 v 01 pontificate 1 003 @ 02431971 v 0000 + 08053260 n 0102 + 10452892 n 0101 01 + 02 00 | administer a pontifical office -02432530 41 v 02 organize 0 organise 0 016 @ 02436349 v 0000 + 08164585 n 0207 + 04768657 n 0202 + 01008378 n 0202 + 01136519 n 0202 ! 02436140 v 0202 + 08164585 n 0106 + 00237078 n 0104 + 01008378 n 0101 + 01136519 n 0101 ! 02436140 v 0101 ~ 00735571 v 0000 ~ 02269485 v 0000 ~ 02432975 v 0000 ~ 02433123 v 0000 ~ 02433767 v 0000 03 + 08 00 + 09 00 + 11 00 | cause to be structured or ordered or operating according to some principle or idea -02432975 41 v 02 territorialize 0 territorialise 0 003 @ 02432530 v 0000 + 01016973 n 0202 + 01016973 n 0101 01 + 08 00 | organize as a territory -02433123 41 v 03 reorganize 0 reorganise 0 shake_up 0 006 @ 02432530 v 0000 + 01137987 n 0303 + 00200768 n 0101 + 01137987 n 0101 + 01137987 n 0304 ~ 02433549 v 0000 01 + 08 00 | organize anew; "We must reorganize the company if we don't want to go under" -02433381 41 v 03 reorganize 1 reorganise 1 regroup 0 003 @ 02448185 v 0000 + 00200768 n 0101 + 01137987 n 0101 02 + 01 00 + 02 00 | organize anew, as after a setback -02433549 41 v 02 retool 0 revise 0 002 @ 02433123 v 0000 + 00399393 n 0201 03 + 01 00 + 02 00 + 08 00 | revise or reorganize, especially for the purpose of updating and improving; "We must retool the town's economy" -02433767 41 v 02 collectivize 0 collectivise 0 005 @ 02432530 v 0000 + 01152787 n 0202 + 08056601 n 0201 + 01152787 n 0101 + 08056601 n 0101 01 + 08 00 | bring under collective control; of farms and industrial enterprises -02433991 41 v 01 hold_one's_own 0 001 @ 02441022 v 0000 01 + 02 00 | maintain one's position and be in control of a situation -02434119 41 v 02 sovietize 0 sovietise 0 001 @ 01295275 v 0000 01 + 08 00 | bring under Soviet control, of a country -02434238 41 v 04 unionize 0 unionise 0 organize 2 organise 2 009 @ 02434976 v 0000 + 08008335 n 0402 + 00237078 n 0405 + 08008335 n 0301 + 00237078 n 0304 + 10383505 n 0301 + 00242583 n 0202 + 00242583 n 0101 + 08233056 n 0101 01 + 02 00 | form or join a union; "The auto workers decided to unionize" -02434541 41 v 01 confederate a 006 @ 02469835 v 0000 + 02476485 a 0103 + 14418822 n 0102 + 01081456 n 0101 + 09761068 n 0102 + 08303275 n 0102 01 + 22 00 | form a confederation with; of nations -02434737 41 v 01 ally_with 0 001 @ 02469835 v 0000 02 + 09 00 + 11 00 | unite formally; of interest groups or countries -02434859 41 v 01 fall_in 2 000 01 + 02 00 | to take one's place in a military formation or line; "Troops fall in!" -02434976 41 v 03 join 0 fall_in 0 get_together 2 008 + 10223994 n 0101 ~ 01097309 v 0000 ~ 02430078 v 0000 ~ 02434238 v 0000 ~ 02435311 v 0000 ~ 02435552 v 0000 ~ 02435634 v 0000 ~ 02469835 v 0000 03 + 22 00 + 08 01 + 09 01 | become part of; become a member of a group or organization; "He joined the Communist Party as a young man" -02435311 41 v 01 affiliate 0 005 @ 02434976 v 0000 + 13930385 n 0101 + 01082061 n 0101 + 09776346 n 0101 + 08009478 n 0101 02 + 01 00 + 02 00 | join in an affiliation; "The two colleges affiliated"; "They affiliated with a national group" -02435552 41 v 01 rejoin 0 001 @ 02434976 v 0000 02 + 08 00 + 09 00 | join again -02435634 41 v 02 infiltrate 0 penetrate 0 003 @ 02434976 v 0000 + 00976698 n 0101 + 10205833 n 0101 01 + 08 00 | enter a group or organization in order to spy on the members; "The student organization was infiltrated by a traitor" -02435867 41 v 02 unionize 1 unionise 1 005 > 02434238 v 0000 @ 02471327 v 0000 + 00242583 n 0202 + 00242583 n 0101 + 08233056 n 0101 01 + 09 00 | recruit for a union or organize into a union; "We don't allow people to come into our plant and try to unionize the workers" -02436140 41 v 02 disorganize 0 disorganise 0 006 + 14500341 n 0202 + 00552922 n 0202 ! 02432530 v 0202 + 14500341 n 0101 + 00552922 n 0101 ! 02432530 v 0101 02 + 08 00 + 11 00 | remove the organization from -02436349 41 v 04 manage 0 deal d care b handle 0 019 @ 02441022 v 0000 + 10158608 n 0401 + 01134861 n 0402 + 00829378 n 0301 + 01474513 a 0101 + 01133281 n 0101 ~ 02431971 v 0000 ~ 02432530 v 0000 ~ 02436963 v 0000 ~ 02437157 v 0000 ~ 02437340 v 0000 ~ 02437707 v 0000 ~ 02437905 v 0000 ~ 02438383 v 0000 ~ 02438535 v 0000 ~ 02438861 v 0000 ~ 02439501 v 0000 ~ 02445509 v 0000 ~ 02599325 v 0000 05 + 08 00 + 09 00 + 11 00 + 22 03 + 22 02 | be in charge of, act on, or dispose of; "I can deal with this crew of workers"; "This blender can't handle nuts"; "She managed her parents' affairs after they got too old" -02436963 41 v 01 work c 003 @ 02436349 v 0000 + 01822563 a 0105 $ 02444159 v 0000 01 + 08 00 | cause to operate or function; "This pilot works the controls"; "Can you work an electric drill?" -02437157 41 v 02 come_to_grips 0 get_to_grips 0 001 @ 02436349 v 0000 01 + 08 00 | deal with (a problem or a subject); "I still have not come to grips with the death of my parents" -02437340 41 v 01 dispose_of 0 001 @ 02436349 v 0000 01 + 08 00 | deal with or settle; "He disposed of these cases quickly" -02437465 41 v 04 dally 0 toy 0 play d flirt 0 005 $ 00711932 v 0000 @ 02367363 v 0000 + 00512522 n 0402 + 00512522 n 0206 + 00512522 n 0105 02 + 02 00 + 22 00 | behave carelessly or indifferently; "Play about with a young girl's affection" -02437707 41 v 02 take_care c mind 1 003 @ 02436349 v 0000 + 05703956 n 0201 ~ 02439047 v 0000 02 + 08 00 + 09 00 | be in charge of or deal with; "She takes care of all the necessary arrangements" -02437905 41 v 01 coordinate 0 004 @ 02436349 v 0000 + 05641556 n 0101 + 00807273 n 0101 + 09963914 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring into common action, movement, or condition; "coordinate the painters, masons, and plumbers"; "coordinate his actions with that of his colleagues"; "coordinate our efforts" -02438228 41 v 01 coordinate 1 003 @ 02667900 v 0000 + 05641556 n 0101 + 00807273 n 0101 01 + 01 00 | be co-ordinated; "These activities coordinate well" -02438383 41 v 01 juggle 0 002 @ 02436349 v 0000 + 00338994 n 0101 01 + 08 00 | deal with simultaneously; "She had to juggle her job and her children" -02438535 41 v 01 process 1 003 @ 02436349 v 0000 + 01023820 n 0102 + 13541167 n 0101 01 + 08 00 | deal with in a routine way; "I'll handle that one"; "process a loan"; "process the applicants" -02438730 41 v 01 expedite 1 001 @ 02582042 v 0000 01 + 08 00 | process fast and efficiently; "I will try to expedite the matter" -02438861 41 v 03 mismanage 0 mishandle 1 misconduct 0 003 @ 02436349 v 0000 + 01134330 n 0301 + 01134479 n 0101 01 + 08 00 | manage badly or incompetently; "The funds were mismanaged" -02439047 41 v 01 tend 1 002 @ 02437707 v 0000 ~ 02439156 v 0000 01 + 08 00 | manage or run; "tend a store" -02439156 41 v 01 stoke 0 003 @ 02439047 v 0000 + 10659042 n 0101 + 04325592 n 0101 01 + 08 00 | stir up or tend; of a fire -02439281 41 v 03 set_about 0 go_about 0 approach 0 003 @ 02367363 v 0000 + 00941140 n 0301 ~ 00812298 v 0000 01 + 33 00 | begin to deal with; "approach a task"; "go about a difficult problem"; "approach a new project" -02439501 41 v 01 direct 0 009 > 02367363 v 0000 @ 02436349 v 0000 + 00199114 a 0103 + 10014939 n 0101 ~ 01733477 v 0000 ~ 02439732 v 0000 ~ 02440244 v 0000 ~ 02443849 v 0000 ~ 02603567 v 0000 02 + 08 00 + 09 00 | be in charge of -02439732 41 v 02 guide 0 steer 0 005 @ 02439501 v 0000 + 06651577 n 0203 + 00815320 n 0201 + 10151570 n 0101 + 01144876 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | be a guiding or motivating force or drive; "The teacher steered the gifted students towards the more challenging courses" -02440020 41 v 02 chair 0 chairman 0 003 @ 02440244 v 0000 + 10468962 n 0202 + 10468962 n 0104 01 + 08 00 | act or preside as chair, as of an academic department in a university; "She chaired the department for many years" -02440244 41 v 02 head 0 lead 0 008 @ 02439501 v 0000 + 01256743 n 0201 + 09623038 n 0201 + 10162991 n 0101 ~ 02440020 v 0000 ~ 02440486 v 0000 ~ 02440608 v 0000 ~ 02440770 v 0000 01 + 08 00 | be in charge of; "Who is heading this project?" -02440486 41 v 01 captain 0 002 @ 02440244 v 0000 + 09893344 n 0101 02 + 08 00 + 09 00 | be the captain of a sports team -02440608 41 v 01 spearhead 0 002 @ 02440244 v 0000 + 10631512 n 0101 01 + 08 00 | be the leader of; "She spearheaded the effort to find a cure for the disease" -02440770 41 v 03 take_hold 0 take_charge 0 take_control 0 002 @ 02440244 v 0000 ~ 02440914 v 0000 03 + 01 00 + 02 00 + 22 00 | assume control -02440914 41 v 01 move_in_on 0 001 @ 02440770 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | seize control of -02441022 41 v 02 control 0 command 0 027 + 13953608 n 0201 + 05197797 n 0201 + 09941964 n 0202 + 09941383 n 0201 + 09780828 n 0202 + 09941571 n 0201 + 09941964 n 0203 + 10525134 n 0102 + 05196375 n 0101 ~ 01783394 v 0000 ~ 01931768 v 0000 ~ 01935104 v 0000 ~ 02433991 v 0000 ~ 02436349 v 0000 ~ 02441686 v 0000 ~ 02441897 v 0000 ~ 02442106 v 0000 ~ 02442205 v 0000 ~ 02442372 v 0000 ~ 02442546 v 0000 ~ 02442737 v 0000 ~ 02442924 v 0000 ~ 02443609 v 0000 ~ 02539334 v 0000 ~ 02586458 v 0000 ~ 02586619 v 0000 ~ 02601271 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | exercise authoritative control or power over; "control the budget"; "Command the military forces" -02441686 41 v 02 internationalize 0 internationalise 0 003 @ 02441022 v 0000 + 01151605 n 0202 + 01151605 n 0101 02 + 08 00 + 11 00 | put under international control; "internationalize trade of certain drugs" -02441897 41 v 01 hold e 002 $ 01129876 v 0000 @ 02441022 v 0000 01 + 09 00 | take and maintain control over, often by violent means; "The dissatisfied students held the President's office for almost a week" -02442106 41 v 01 hold_sway 0 001 @ 02441022 v 0000 02 + 01 00 + 02 00 | be master; reign or rule -02442205 41 v 01 govern 1 002 @ 02441022 v 0000 + 01124794 n 0101 01 + 11 00 | direct or strongly influence the behavior of; "His belief in God governs his conduct" -02442372 41 v 01 regiment 2 002 @ 02441022 v 0000 + 01148283 n 0101 02 + 08 00 + 09 00 | subject to rigid discipline, order, and systematization; "regiment one's children" -02442546 41 v 02 monopolize 0 monopolise 0 003 @ 02441022 v 0000 + 14444114 n 0101 + 14444326 n 0101 01 + 08 00 | have and control fully and exclusively; "He monopolizes the laser printer" -02442737 41 v 04 harness 0 rein_in 0 draw_rein 0 rein 0 003 @ 02441022 v 0000 + 04072551 n 0401 + 03494706 n 0101 01 + 08 00 | control and direct with or as if by reins; "rein a horse" -02442924 41 v 01 corner 0 002 @ 02441022 v 0000 + 14445072 n 0101 01 + 08 00 | gain control over; "corner the gold market" -02443049 41 v 04 oversee 0 supervise 0 superintend 0 manage 1 013 @ 02431971 v 0000 + 01474513 a 0401 + 01133281 n 0401 + 09931640 n 0402 + 10014939 n 0402 + 10388732 n 0302 + 01135529 n 0303 + 02904372 a 0201 + 01135529 n 0201 + 10676877 n 0201 + 01135529 n 0202 + 10388732 n 0101 ~ 02443424 v 0000 02 + 08 00 + 09 00 | watch and direct; "Who is overseeing this project?" -02443424 41 v 01 build 0 002 @ 02443049 v 0000 + 01104637 n 0102 01 + 08 00 | order, supervise, or finance the construction of; "The government is building new schools in this state" -02443609 41 v 01 preside 0 007 @ 02441022 v 0000 + 10467395 n 0103 + 10468962 n 0101 + 10468750 n 0101 + 10468559 n 0101 + 10467179 n 0101 + 00597265 n 0102 02 + 02 00 + 22 00 | act as president; "preside over companies and corporations" -02443849 41 v 02 operate 0 run 2 009 @ 02439501 v 0000 + 01136985 n 0201 + 00409211 n 0101 + 01095966 n 0101 + 10378780 n 0101 ~ 02416955 v 0000 ~ 02444159 v 0000 ~ 02444297 v 0000 ~ 02444397 v 0000 01 + 08 00 | direct or control; projects, businesses, etc.; "She is running a relief operation in the Sudan" -02444159 41 v 01 work b 003 $ 02436963 v 0000 $ 01525666 v 0000 @ 02443849 v 0000 01 + 08 00 | operate in or through; "Work the phones" -02444297 41 v 01 block 3 001 @ 02443849 v 0000 01 + 08 00 | run on a block system; "block trains" -02444397 41 v 01 warm_up 0 001 @ 02443849 v 0000 01 + 08 00 | run until the normal working temperature is reached; "We warmed up the car for a few minutes" -02444555 41 v 01 declare 0 001 @ 00803325 v 0000 01 + 08 00 | authorize payments of; "declare dividends" -02444662 41 v 03 license 0 licence 0 certify 2 016 @ 00803325 v 0000 * 00806502 v 0000 + 02355398 a 0301 + 06471345 n 0302 + 00154233 n 0302 + 01139830 n 0301 ! 02445100 v 0301 + 10258493 n 0201 + 13994806 n 0202 + 01139194 n 0101 + 06549661 n 0101 + 10258493 n 0101 + 10258602 n 0101 ~ 02447542 v 0000 ~ 02447692 v 0000 ~ 02475535 v 0000 03 + 08 00 + 09 00 + 24 00 | authorize officially; "I am licensed to practice law in this state" -02445100 41 v 03 decertify 0 derecognize 0 derecognise 0 001 ! 02444662 v 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to be no longer approved or accepted; "Carter derecognized Taiwan in 1979 after the U.S. recognized the People's Republic of China" -02445356 41 v 01 patent 0 004 @ 02471690 v 0000 + 06551627 n 0101 + 06501141 n 0101 + 10405410 n 0101 01 + 08 00 | grant rights to; grant a patent for -02445509 41 v 03 conduct 0 carry_on 0 deal 2 007 @ 02436349 v 0000 + 07956887 n 0302 + 07293180 n 0301 + 01106808 n 0303 + 01106808 n 0302 + 01136265 n 0101 ~ 02445788 v 0000 02 + 08 00 + 09 01 | direct the course of; manage or control; "You cannot conduct business like this" -02445788 41 v 01 racketeer 0 002 @ 02445509 v 0000 + 00776165 n 0101 01 + 02 00 | carry on illegal business activities involving crime -02445925 41 v 02 be 0 follow 9 002 ~ 02446504 v 0000 ~ 02447133 v 0000 03 + 22 00 + 08 01 + 09 01 | work in a specific place, with a specific subject, or in a specific function; "He is a herpetologist"; "She is our resident philosopher" -02446164 41 v 02 specialize 0 specialise 0 009 @ 02413480 v 0000 + 10632576 n 0201 + 10631941 n 0201 + 00583461 n 0202 + 10631941 n 0203 + 10632576 n 0101 + 10631941 n 0101 + 00583461 n 0101 + 10631941 n 0102 01 + 22 00 | devote oneself to a special area of work; "She specializes in honey bees"; "This baker specializes in French bread" -02446504 41 v 01 vet 0 002 @ 02445925 v 0000 + 10749715 n 0104 01 + 02 00 | work as a veterinarian; "She vetted for the farms in the area for many years" -02446660 41 v 01 minister 0 003 @ 02413480 v 0000 + 09983572 n 0103 + 10321126 n 0101 01 + 02 00 | work as a minister; "She is ministering in an old parish" -02446819 41 v 01 intern 0 003 @ 02413480 v 0000 + 10212231 n 0101 + 10211203 n 0101 01 + 02 00 | work as an intern; "The young doctor is interning at the Medical Center this year" -02447001 41 v 01 skipper 0 003 @ 02413480 v 0000 + 10298912 n 0104 + 09892831 n 0102 01 + 02 00 | work as the skipper on a vessel -02447133 41 v 01 cox 0 002 @ 02445925 v 0000 + 09973624 n 0102 01 + 02 00 | act as the coxswain, in a boat race -02447247 41 v 01 boondoggle 0 002 @ 02413480 v 0000 + 00041614 n 0101 01 + 02 00 | do useless, wasteful, or trivial work -02447370 41 v 01 entitle 0 002 @ 02473981 v 0000 + 05181754 n 0101 01 + 24 00 | give the right to; "The Freedom of Information Act entitles you to request your FBI file" -02447542 41 v 01 franchise 0 004 @ 02444662 v 0000 ;c 01090446 n 0000 + 08060193 n 0101 + 06526811 n 0101 02 + 08 00 + 09 00 | grant a franchise to -02447692 41 v 01 charter 0 002 @ 02444662 v 0000 + 06471737 n 0101 01 + 09 00 | grant a charter to -02447793 41 v 03 certify 0 endorse 1 indorse 1 008 @ 00891936 v 0000 + 06687358 n 0304 + 06687358 n 0203 + 00342488 a 0101 + 06471345 n 0102 + 00154233 n 0102 + 01139830 n 0101 + 06471345 n 0101 02 + 08 00 + 26 00 | guarantee as meeting a certain standard; "certified grade AAA meat" -02448079 41 v 01 incorporate 0 002 @ 01617192 v 0000 ;c 07966927 n 0000 01 + 02 00 | form a corporation -02448185 41 v 03 form 0 organize 1 organise 1 016 @ 01617192 v 0000 + 08164585 n 0307 + 08008335 n 0302 + 00237078 n 0305 + 01136519 n 0302 + 08164585 n 0206 + 08008335 n 0201 + 00237078 n 0204 + 01136519 n 0201 + 08426461 n 0101 + 00237078 n 0103 ~ 02433381 v 0000 ~ 02448642 v 0000 ~ 02448734 v 0000 ~ 02448886 v 0000 ~ 02449011 v 0000 04 + 01 00 + 02 00 + 08 00 + 09 00 | create (as an entity); "social groups form everywhere"; "They formed a company" -02448642 41 v 01 choose_up 0 001 @ 02448185 v 0000 01 + 08 00 | form sides, as for a game -02448734 41 v 01 draw_up 0 001 @ 02448185 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | form or arrange in order or formation, as of a body of soldiers -02448886 41 v 01 regiment 1 002 @ 02448185 v 0000 + 08213817 n 0101 01 + 09 00 | form (military personnel) into a regiment -02449011 41 v 01 syndicate 0 005 @ 02448185 v 0000 + 08236438 n 0103 + 01138547 n 0101 + 10687025 n 0101 $ 02449183 v 0000 01 + 09 00 | organize into or form a syndicate -02449183 41 v 01 syndicate 1 003 $ 02449011 v 0000 @ 02622234 v 0000 + 08236438 n 0103 01 + 02 00 | join together into a syndicate; "The banks syndicated" -02449340 41 v 04 exclude 0 keep_out 0 shut_out 0 shut 0 007 @ 02450505 v 0000 + 04211528 n 0401 + 13935227 n 0101 ! 02449847 v 0101 ~ 01030397 v 0000 ~ 02449717 v 0000 ~ 02465658 v 0000 03 + 09 00 + 10 00 + 11 00 | prevent from entering; shut out; "The trees were shutting out all sunlight"; "This policy excludes people who have a criminal record from entering the country" -02449717 41 v 01 lock_out 0 002 @ 02449340 v 0000 + 00202620 n 0101 01 + 09 00 | prevent employees from working during a strike -02449847 41 v 03 admit 0 let_in 0 include 3 008 $ 02236624 v 0000 @ 00802318 v 0000 + 00373130 n 0301 + 05176188 n 0105 ! 02449340 v 0101 ~ 02390470 v 0000 ~ 02390786 v 0000 ~ 02677567 v 0000 02 + 09 00 + 20 00 | allow participation in or the right to be part of; permit to exercise the rights, functions, and responsibilities of; "admit someone to the profession"; "She was admitted to the New Jersey Bar" -02450256 41 v 02 participate 0 take_part 0 004 @ 02367363 v 0000 + 13924659 n 0101 + 01239064 n 0102 ~ 02450417 v 0000 02 + 02 00 + 22 00 | share in something -02450417 41 v 01 partake_in 0 001 @ 02450256 v 0000 02 + 08 00 + 33 00 | be active in -02450505 41 v 02 prevent 0 keep 1 012 $ 01302019 v 0000 + 01763813 a 0101 + 01763813 a 0102 + 01077350 n 0101 ! 02423183 v 0101 ~ 01127795 v 0000 ~ 02449340 v 0000 ~ 02450989 v 0000 ~ 02451113 v 0000 ~ 02451261 v 0000 ~ 02451370 v 0000 ~ 02594833 v 0000 02 + 20 00 + 21 00 | stop (someone or something) from doing something or being in a certain state; "We must prevent the cancer from spreading"; "His snoring kept me from falling asleep"; "Keep the child from eating the marbles" -02450989 41 v 01 hold d 001 @ 02450505 v 0000 02 + 08 00 + 09 00 | keep from departing; "Hold the taxi"; "Hold the horse" -02451113 41 v 01 keep_away 0 001 @ 02450505 v 0000 02 + 16 00 + 20 00 | prevent from coming close; "I tried to keep the child away from the pool" -02451261 41 v 01 blank 0 001 @ 02450505 v 0000 01 + 09 00 | keep the opposing (baseball) team from winning -02451370 41 v 02 impede 0 hinder 1 009 @ 02450505 v 0000 + 03520811 n 0201 + 05689249 n 0104 ~ 01476483 v 0000 ~ 02451679 v 0000 ~ 02451912 v 0000 ~ 02452092 v 0000 ~ 02452240 v 0000 ~ 02452413 v 0000 03 + 09 00 + 10 00 + 11 00 | be a hindrance or obstacle to; "She is impeding the progress of our project" -02451679 41 v 01 inhibit 4 003 ;c 06037666 n 0000 ;c 06084469 n 0000 @ 02451370 v 0000 01 + 11 00 | limit, block, or decrease the action or function of; "inhibit the action of the enzyme"; "inhibit the rate of a chemical reaction" -02451912 41 v 01 interfere 1 002 @ 02451370 v 0000 + 01073995 n 0103 02 + 04 00 + 22 00 | come between so as to be hindrance or obstacle; "Your talking interferes with my work!" -02452092 41 v 01 set_back 0 002 @ 02451370 v 0000 + 07475870 n 0103 01 + 10 00 | slow down the progress of; hinder; "His late start set him back" -02452240 41 v 01 hobble 0 001 @ 02451370 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | hamper the action or progress of; "The chairman was hobbled by the all-powerful dean" -02452413 41 v 01 stunt 0 003 @ 02451370 v 0000 + 01319187 n 0101 ~ 02452614 v 0000 02 + 08 00 + 11 00 | check the growth or development of; "You will stunt your growth by building all these muscles" -02452614 41 v 01 dwarf 0 002 @ 02452413 v 0000 + 10040344 n 0101 01 + 11 00 | check the growth of; "the lack of sunlight dwarfed these pines" -02452758 41 v 01 embargo 0 002 @ 02559752 v 0000 + 06660520 n 0101 01 + 08 00 | prevent commerce; "The U.S. embargoes Libya" -02452885 41 v 05 prevent 1 forestall 1 foreclose 0 preclude 0 forbid 3 009 + 01079042 n 0403 + 01079042 n 0202 + 01763813 a 0101 + 01763813 a 0102 ~ 00549552 v 0000 ~ 02453321 v 0000 ~ 02557199 v 0000 ~ 02558172 v 0000 ~ 02559752 v 0000 02 + 08 00 + 11 00 | keep from happening or arising; make impossible; "My sense of tact forbids an honest answer"; "Your role in the projects precludes your involvement in the competitive project" -02453321 41 v 0b debar 0 forefend 0 forfend 0 obviate 0 deflect 0 avert 0 head_off 0 stave_off 0 fend_off 0 avoid 1 ward_off 0 005 @ 02452885 v 0000 + 00343700 a 0a02 + 00343700 a 0603 + 00343700 a 0604 + 01079042 n 0401 02 + 08 00 + 11 00 | prevent the occurrence of; prevent from happening; "Let's avoid a confrontation"; "head off a confrontation"; "avert a strike" -02453692 41 v 03 privilege 0 favor 3 favour 3 006 @ 00802318 v 0000 + 07500414 n 0302 + 01226941 n 0302 + 07500414 n 0201 + 05158296 n 0101 + 05178715 n 0102 01 + 09 00 | bestow a privilege upon -02453889 41 v 06 back 0 endorse 0 indorse 0 plump_for 0 plunk_for 0 support 1 013 $ 02556817 v 0000 @ 00806502 v 0000 + 02354537 a 0601 + 01212519 n 0601 + 10677713 n 0601 + 07248060 n 0302 + 01215168 n 0302 + 07248060 n 0201 + 01215168 n 0201 + 10670668 n 0202 + 01213886 n 0101 ~ 00891936 v 0000 ~ 01149138 v 0000 02 + 08 00 + 09 00 | be behind; approve of; "He plumped for the Labor Party"; "I backed Kennedy in 1960" -02454312 41 v 03 poll 0 canvass 1 canvas 1 006 @ 00647929 v 0000 + 10451590 n 0304 + 10451590 n 0204 + 05800998 n 0204 + 05800998 n 0101 ~ 02454649 v 0000 02 + 08 00 + 09 00 | get the opinions (of people) by asking specific questions -02454548 41 v 01 circularize 2 001 @ 02458747 v 0000 01 + 02 00 | canvass by using a questionnaire -02454649 41 v 02 circularize 0 circularise 0 005 @ 02454312 v 0000 + 01101753 n 0202 + 07250339 n 0201 + 01101753 n 0101 + 07250339 n 0101 01 + 09 00 | canvass by distributing letters -02454835 41 v 01 poll 2 002 @ 02210855 v 0000 + 00653811 n 0101 02 + 08 00 + 09 00 | get the votes of -02454939 41 v 02 patrol 0 police 0 006 @ 02456031 v 0000 + 08209687 n 0201 + 08329113 n 0101 + 00824808 n 0101 + 08216176 n 0101 + 10407552 n 0101 02 + 08 00 + 09 00 | maintain the security of by carrying out a patrol -02455159 41 v 04 stand_guard 0 stand_watch 0 keep_guard 0 stand_sentinel 0 001 @ 02456031 v 0000 02 + 02 00 + 22 00 | watch over so as to protect; "We must stand sentinel to protect ourselves"; "The jewels over which they kept guard were stolen" -02455407 41 v 05 watch 0 observe 0 follow 2 watch_over 0 keep_an_eye_on 0 011 @ 00661824 v 0000 + 09626589 n 0203 + 06767035 n 0201 + 05818741 n 0201 + 05703429 n 0202 + 00879759 n 0201 + 00880662 n 0101 $ 00729109 v 0000 ~ 02455861 v 0000 ~ 02456031 v 0000 ~ 02593354 v 0000 03 + 08 00 + 09 00 + 11 00 | follow with the eyes or the mind; "Keep an eye on the baby, please!"; "The world is watching Sarajevo"; "She followed the men with the binoculars" -02455861 41 v 01 keep_tabs_on 0 001 @ 02455407 v 0000 03 + 08 00 + 09 00 + 10 00 | keep a record on or watch attentively; "The government keeps tabs on the dissidents" -02456031 41 v 01 guard 0 007 @ 02455407 v 0000 + 00730538 n 0102 + 10150071 n 0101 ~ 02454939 v 0000 ~ 02455159 v 0000 ~ 02456270 v 0000 ~ 02602898 v 0000 02 + 08 00 + 09 00 | to keep watch over; "there would be men guarding the horses" -02456270 41 v 02 baby-sit 0 sit 5 004 @ 02456031 v 0000 + 09829305 n 0203 + 09829305 n 0101 + 09829305 n 0102 02 + 02 00 + 09 00 | work or act as a baby-sitter; "I cannot baby-sit tonight; I have too much homework to do" -02456493 41 v 05 bury 0 entomb 0 inhume 0 inter 0 lay_to_rest 0 005 @ 01544692 v 0000 + 07451687 n 0404 + 07451687 n 0303 + 07451687 n 0202 + 07451687 n 0101 02 + 08 00 + 09 00 | place in a grave or tomb; "Stalin was buried behind the Kremlin wall on Red Square"; "The pharaohs were entombed in the pyramids"; "My grandfather was laid to rest last Sunday" -02456851 41 v 01 rebury 0 002 @ 01544692 v 0000 + 01050763 n 0102 02 + 08 00 + 09 00 | bury again; "After the king's body had been exhumed and tested to traces of poison, it was reburied in the same spot" -02457058 41 v 02 disinter 0 exhume 0 003 @ 01313923 v 0000 + 00044900 n 0201 + 00044900 n 0102 01 + 08 00 | dig up for reburial or for medical investigation; of dead bodies -02457233 41 v 05 respect 0 honor 1 honour 1 abide_by 1 observe 1 012 @ 00686447 v 0000 + 01983162 a 0203 + 01204419 n 0201 + 04913839 n 0102 + 07545415 n 0102 + 01228877 n 0102 + 06206800 n 0101 + 14437552 n 0103 + 10524223 n 0101 ! 02457825 v 0101 ~ 02398956 v 0000 ~ 02457585 v 0000 02 + 08 00 + 09 00 | show respect towards; "honor your parents!" -02457585 41 v 01 tolerate 1 004 @ 02457233 v 0000 + 00286837 a 0104 + 02436341 a 0101 + 01142324 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | recognize and respect (rights and beliefs of others); "We must tolerate the religions of others" -02457825 41 v 01 disrespect 0 006 @ 02458103 v 0000 + 04915687 n 0102 + 06207437 n 0101 + 06714976 n 0101 ! 02457233 v 0101 ~ 02566528 v 0000 02 + 08 00 + 09 00 | show a lack of respect for -02458017 41 v 01 mesh 0 001 @ 02458103 v 0000 01 + 02 00 | work together in harmony -02458103 41 v 01 relate 0 010 @ 02376958 v 0000 + 00040962 n 0101 ~ 00483181 v 0000 ~ 00885217 v 0000 ~ 02389592 v 0000 ~ 02457825 v 0000 ~ 02458017 v 0000 ~ 02458405 v 0000 ~ 02458566 v 0000 ~ 02538086 v 0000 02 + 02 00 + 22 00 | have or establish a relationship to; "She relates well to her peers" -02458405 41 v 01 take_back 0 001 @ 02458103 v 0000 01 + 09 00 | resume a relationship with someone after an interruption, as in a wife taking back her husband -02458566 41 v 04 get_along_with 0 get_on_with 0 get_on 0 get_along 0 001 @ 02458103 v 0000 03 + 09 00 + 06 04 + 06 03 | have smooth relations; "My boss and I get along very well" -02458747 41 v 02 canvass 0 canvas 0 004 @ 00782057 v 0000 + 10623354 n 0202 + 05800998 n 0104 ~ 02454548 v 0000 02 + 08 00 + 09 00 | solicit votes from potential voters in an electoral campaign -02458943 41 v 02 lobby 0 buttonhole 0 003 @ 00782057 v 0000 + 08375526 n 0101 + 10268629 n 0101 02 + 09 00 + 02 01 | detain in conversation by or as if by holding on to the outer garments of; as for political or economic favors -02459173 41 v 03 house 0 put_up 0 domiciliate 0 010 @ 02656390 v 0000 + 03195485 n 0303 + 03545150 n 0101 + 03544360 n 0101 + 03546340 n 0101 ~ 02459532 v 0000 ~ 02459633 v 0000 ~ 02651424 v 0000 ~ 02656062 v 0000 ~ 02656995 v 0000 04 + 08 00 + 09 00 + 20 00 + 21 00 | provide housing for; "The immigrants were housed in a new development outside the town" -02459532 41 v 01 rehouse 0 001 @ 02459173 v 0000 01 + 09 00 | put up in a new or different housing -02459633 41 v 01 home 0 005 @ 02459173 v 0000 + 14513694 n 0101 + 08078020 n 0104 + 03528100 n 0101 + 03259505 n 0102 01 + 09 00 | provide with, or send to, a home -02459799 41 v 01 kennel 0 002 @ 02656390 v 0000 + 03610524 n 0101 01 + 08 00 | put up in a kennel; "kennel a dog" -02459915 41 v 01 stable 0 004 @ 02656390 v 0000 ;c 00917211 n 0000 + 04295353 n 0101 + 04294879 n 0101 01 + 08 00 | shelter in a stable; "stable horses" -02460070 41 v 01 stall 0 002 @ 02656390 v 0000 + 04299370 n 0101 01 + 08 00 | put into, or keep in, a stall; "Stall the horse" -02460199 41 v 02 rent 1 lease 0 008 @ 00888786 v 0000 + 15274863 n 0201 + 06523132 n 0201 + 13248393 n 0201 + 10252075 n 0202 + 13295657 n 0101 + 10520804 n 0101 + 01111375 n 0102 03 + 08 00 + 15 00 + 16 00 | let for money; "We rented our apartment to friends while we were abroad" -02460483 41 v 01 tenant 0 004 @ 02649830 v 0000 + 10700517 n 0101 + 10700201 n 0101 + 07955726 n 0101 01 + 08 00 | occupy as a tenant -02460619 41 v 04 rent 0 hire 1 charter 1 lease 1 007 @ 00888786 v 0000 + 15274863 n 0401 + 06523132 n 0401 + 10252075 n 0402 + 06522501 n 0301 + 13295657 n 0101 + 10700201 n 0102 02 + 08 00 + 16 00 | hold under a lease or rental agreement; of goods and services -02460883 41 v 01 subcontract 0 004 * 00888786 v 0000 @ 02410855 v 0000 + 06524767 n 0101 + 10667863 n 0101 02 + 02 00 + 08 00 | work under a subcontract; engage in a subcontract -02461063 41 v 03 subcontract 1 farm_out 0 job 3 007 @ 02409412 v 0000 + 03599761 n 0301 + 03599628 n 0301 + 00576877 n 0301 + 00719705 n 0301 + 06524767 n 0101 + 10667863 n 0101 02 + 08 00 + 15 00 | arranged for contracted work to be done by others -02461314 41 v 01 vote d 016 @ 00674607 v 0000 + 05857165 n 0101 + 08480662 n 0101 + 05186306 n 0102 + 00182213 n 0101 + 00183505 n 0101 + 10760340 n 0101 + 00183505 n 0103 ^ 02400637 v 0101 ^ 02473688 v 0105 ~ 02461807 v 0000 ~ 02462030 v 0000 $ 02462580 v 0000 ~ 02462997 v 0000 ~ 02463141 v 0000 ~ 02463298 v 0000 02 + 02 00 + 22 00 | express one's preference for a candidate or for a measure or resolution; cast a vote; "He voted for the motion"; "None of the Democrats voted last night" -02461807 41 v 01 write_in 0 003 @ 02461314 v 0000 + 00209789 n 0101 + 10793799 n 0102 02 + 08 00 + 09 00 | cast a vote by inserting a name that does not appear on the ballot; "Many voters wrote in the names of strangers" -02462030 41 v 02 turn_thumbs_down 0 vote_down 2 001 @ 02461314 v 0000 01 + 22 00 | vote against; "The faculty turned thumbs down on the candidate for the Dean position" -02462201 41 v 01 vote c 002 @ 02462386 v 0000 + 10760340 n 0101 01 + 08 00 | bring into existence or make available by vote; "They voted aid for the underdeveloped countries in Asia" -02462386 41 v 01 vote b 002 @ 01061481 v 0000 ~ 02462201 v 0000 02 + 22 00 + 26 00 | express a choice or opinion; "I vote that we all go home"; "She voted for going to the Chinese restaurant" -02462580 41 v 01 vote a 009 $ 02461314 v 0000 @ 01061481 v 0000 + 05857165 n 0101 + 08480662 n 0101 + 00182213 n 0101 + 00183505 n 0101 + 10760340 n 0101 + 00183505 n 0103 ~ 02462858 v 0000 01 + 08 00 | express one's choice or preference by vote; "vote the Democratic ticket" -02462858 41 v 01 bullet_vote 0 001 @ 02462580 v 0000 01 + 02 00 | vote cumulatively and distribute the votes according to some principle -02462997 41 v 01 outvote 0 001 @ 02461314 v 0000 02 + 09 00 + 11 00 | defeat by a majority of votes; "The Democrats outvoted the Republicans" -02463141 41 v 01 ballot 0 003 @ 02461314 v 0000 + 06470922 n 0101 + 00183505 n 0102 01 + 02 00 | vote by ballot; "The voters were balloting in this state" -02463298 41 v 01 poll 1 002 @ 02461314 v 0000 + 00653811 n 0101 02 + 02 00 + 22 00 | vote in an election at a polling station -02463426 41 v 01 abstain 0 001 @ 02725714 v 0000 01 + 02 00 | refrain from voting -02463510 41 v 01 avoid 3 001 ~ 02463704 v 0000 01 + 33 00 | refrain from doing something; "She refrains from calling her therapist too often"; "He should avoid publishing his wife's memories" -02463704 41 v 04 fiddle 0 shirk 1 shrink_from 0 goldbrick 0 007 @ 02463510 v 0000 + 00741478 n 0405 + 10608385 n 0202 + 00741478 n 0201 ~ 02463990 v 0000 ~ 02464132 v 0000 ~ 02464342 v 0000 02 + 08 00 + 02 04 | avoid (one's assigned duties); "The derelict soldier shirked his duties" -02463990 41 v 01 scrimshank 0 003 @ 02463704 v 0000 ;r 08860123 n 0000 + 10564800 n 0101 01 + 02 00 | British military language: avoid work -02464132 41 v 02 malinger 0 skulk 0 005 @ 02463704 v 0000 + 10286539 n 0202 + 00741272 n 0202 + 10286539 n 0101 + 00741272 n 0101 01 + 02 00 | avoid responsibilities and duties, e.g., by pretending to be ill -02464342 41 v 01 slack 0 003 @ 02463704 v 0000 + 10608385 n 0101 + 00741478 n 0102 01 + 02 00 | avoid responsibilities and work, be idle -02464481 41 v 01 turn_a_trick 0 001 @ 02410855 v 0000 01 + 02 00 | have a customer, of a prostitute -02464583 41 v 02 spare 0 save 5 003 @ 02725714 v 0000 + 10629820 n 0101 ~ 02464725 v 0000 03 + 08 00 + 09 00 + 11 00 | refrain from harming -02464725 41 v 02 favor 1 favour 1 003 @ 02464583 v 0000 + 07500414 n 0202 + 01226941 n 0101 02 + 09 00 + 10 00 | treat gently or carefully -02464866 41 v 02 sign 0 ratify 0 005 @ 02478701 v 0000 * 00997794 v 0000 + 07179943 n 0201 + 10670668 n 0204 + 10597234 n 0101 01 + 08 00 | approve and express assent, responsibility, or obligation; "All parties ratified the peace treaty"; "Have you signed your contract yet?" -02465145 41 v 02 co-sign 0 cosign 0 002 @ 02478701 v 0000 + 09613690 n 0201 02 + 02 00 + 08 00 | sign jointly; "Husband and wife co-signed the lease" -02465297 41 v 01 probate 0 005 @ 02478701 v 0000 ;c 08441203 n 0000 + 02163774 a 0101 + 06544432 n 0101 + 00154894 n 0101 01 + 08 00 | establish the legal validity of (wills and other documents) -02465494 41 v 01 boycott 0 004 @ 02465658 v 0000 + 00206130 n 0101 ! 02466134 v 0101 ! 02466134 v 0102 01 + 08 00 | refuse to sponsor; refuse to do business with -02465658 41 v 02 ostracize 0 ostracise 0 007 * 00811375 v 0000 @ 02449340 v 0000 + 14427633 n 0202 + 00207434 n 0201 + 14427633 n 0102 + 00207434 n 0101 ~ 02465494 v 0000 02 + 08 00 + 09 00 | avoid speaking to or dealing with; "Ever since I spoke up, my colleagues ostracize me" -02465939 41 v 04 dismiss 1 send_packing 0 send_away 1 drop 0 002 @ 02402825 v 0000 $ 02403920 v 0000 01 + 09 00 | stop associating with; "They dropped her after she had a child out of wedlock" -02466134 41 v 07 patronize 0 patronise 0 shop 0 shop_at 0 buy_at 0 frequent 0 sponsor 0 010 @ 02556126 v 0000 + 01066542 a 0601 + 10407726 n 0602 + 04202417 n 0301 + 10592595 n 0301 + 10592397 n 0301 + 10407726 n 0201 ! 02465494 v 0201 + 10407726 n 0101 ! 02465494 v 0101 02 + 08 00 + 09 00 | do one's shopping at; do business with; be a customer or client of -02466496 41 v 01 filibuster 0 005 ;c 01125693 n 0000 @ 02557199 v 0000 + 01068012 n 0101 + 10087868 n 0101 + 10087868 n 0102 01 + 02 00 | obstruct deliberately by delaying -02466670 41 v 02 legislate 0 pass 2 007 @ 02427916 v 0000 + 01126856 n 0202 + 02829422 a 0101 + 08163273 n 0101 + 06535222 n 0101 + 01125693 n 0101 + 10253995 n 0101 02 + 02 00 + 08 00 | make laws, bills, etc. or bring into effect by legislation; "They passed the amendment"; "We cannot legislate how people spend their free time" -02467003 41 v 02 liberalize 0 liberalise 0 005 @ 00126264 v 0000 + 00355691 n 0202 + 00355691 n 0101 $ 02467203 v 0000 ~ 02467399 v 0000 01 + 08 00 | make liberal or more liberal, of laws and rules -02467203 41 v 02 liberalize 1 liberalise 1 004 $ 02467003 v 0000 @ 00109660 v 0000 + 00355691 n 0202 + 00355691 n 0101 01 + 01 00 | become more liberal; "The laws liberalized after Prohibition" -02467399 41 v 01 decontrol 0 001 @ 02467003 v 0000 01 + 08 00 | relax or remove controls of; "decontrol marijuana" -02467516 41 v 01 gerrymander 0 002 @ 01557774 v 0000 + 00754593 n 0101 01 + 08 00 | divide unfairly and to one's advantage; of voting districts -02467662 41 v 06 divide 0 split 3 split_up 2 separate 1 dissever 0 carve_up 0 019 @ 00140123 v 0000 + 13286640 n 0201 + 00784533 a 0101 + 00385791 n 0101 + 10637635 n 0102 + 10019888 n 0101 + 03894379 n 0102 ! 02469835 v 0101 ~ 00333066 v 0000 ~ 00563552 v 0000 ~ 02468261 v 0000 ~ 02468618 v 0000 ~ 02468793 v 0000 ~ 02468965 v 0000 ~ 02469085 v 0000 ~ 02469274 v 0000 ~ 02469443 v 0000 ~ 02469596 v 0000 ~ 02469711 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | separate into parts or portions; "divide the cake into three equal parts"; "The British carved up the Ottoman Empire after World War I" -02468261 41 v 02 sectionalize 0 sectionalise 0 003 @ 02467662 v 0000 + 00397953 n 0206 + 00397953 n 0105 01 + 08 00 | divide into sections, especially into geographic sections; "sectionalize a country" -02468465 41 v 01 hive_off 0 001 @ 02512305 v 0000 01 + 08 00 | remove from a group and make separate; "The unit was hived off from its parent company" -02468618 41 v 01 triangulate 0 002 @ 02467662 v 0000 + 13879320 n 0101 01 + 08 00 | divide into triangles or give a triangular form to; "triangulate the piece of cardboard" -02468793 41 v 02 unitize 0 unitise 0 004 @ 02467662 v 0000 + 13810323 n 0101 + 13583724 n 0102 + 09465459 n 0101 01 + 08 00 | divide (bulk material) and process as units -02468965 41 v 01 lot 0 002 @ 02467662 v 0000 + 08674970 n 0101 01 + 08 00 | divide into lots, as of land, for example -02469085 41 v 01 parcel 0 005 @ 02467662 v 0000 + 08673395 n 0105 + 00386164 n 0101 + 01083645 n 0106 + 01083645 n 0105 01 + 08 00 | divide into parts; "The developers parceled the land" -02469274 41 v 02 sliver 0 splinter 1 004 @ 02467662 v 0000 + 09442838 n 0201 + 00377169 n 0203 + 09385137 n 0102 02 + 08 00 + 11 00 | divide into slivers or splinters -02469443 41 v 01 paragraph 0 002 @ 02467662 v 0000 + 06399995 n 0101 01 + 08 00 | divide into paragraphs, as of text; "This story is well paragraphed" -02469596 41 v 01 canton 0 002 @ 02467662 v 0000 + 08540770 n 0101 01 + 08 00 | divide into cantons, of a country -02469711 41 v 02 Balkanize 0 Balkanise 0 001 @ 02467662 v 0000 01 + 08 00 | divide a territory into small, hostile states -02469835 41 v 02 unite 0 unify 0 013 @ 02434976 v 0000 + 00381680 n 0202 ! 02467662 v 0101 ~ 00369064 v 0000 ~ 00369194 v 0000 ~ 02434541 v 0000 ~ 02434737 v 0000 ~ 02470175 v 0000 ~ 02470685 v 0000 ~ 02470893 v 0000 ~ 02488834 v 0000 ~ 02490430 v 0000 ~ 02592250 v 0000 01 + 02 00 | act in concert or unite in a common purpose or belief -02470175 41 v 02 consociate 0 associate 0 009 @ 02469835 v 0000 + 00157659 a 0201 + 13930385 n 0202 + 13782769 n 0201 + 07990377 n 0201 + 08049401 n 0201 + 01081628 n 0201 + 09816771 n 0201 ~ 02470518 v 0000 04 + 01 00 + 02 00 + 08 00 + 09 00 | bring or come into association or action; "The churches consociated to fight their dissolution" -02470518 41 v 01 walk 1 001 @ 02470175 v 0000 01 + 22 00 | be or act in association with; "We must walk with our dispossessed brothers and sisters"; "Walk with God" -02470685 41 v 02 band_together 0 confederate 0 005 @ 02469835 v 0000 + 14418822 n 0202 + 08303275 n 0201 + 01081456 n 0201 + 09761068 n 0202 01 + 02 00 | form a group or unite; "The groups banded together" -02470893 41 v 02 reunify 0 reunite 1 003 @ 02469835 v 0000 + 00382474 n 0101 + 00382474 n 0102 05 + 01 00 + 02 00 + 08 00 + 09 00 + 11 00 | unify again, as of a country; "Will Korea reunify?" -02471087 41 v 01 register 1 001 @ 02471327 v 0000 02 + 02 00 + 09 00 | enroll to vote; "register for an election" -02471203 41 v 01 matriculate 0 003 @ 02471327 v 0000 + 01248608 n 0101 + 10302905 n 0101 01 + 02 00 | enroll as a student -02471327 41 v 05 enroll 0 inscribe 0 enter 6 enrol 0 recruit 1 010 @ 02471690 v 0000 + 10512201 n 0501 + 10512708 n 0501 + 00050037 n 0403 + 00050037 n 0102 + 10059162 n 0101 ~ 01097500 v 0000 ~ 02435867 v 0000 ~ 02471087 v 0000 ~ 02471203 v 0000 03 + 02 00 + 09 00 + 22 00 | register formally as a participant or member; "The party recruited many new members" -02471690 41 v 01 register 0 012 @ 01000214 v 0000 + 13412321 n 0101 + 06507041 n 0101 + 06479374 n 0101 + 00050037 n 0101 + 10516692 n 0101 + 06507041 n 0102 ~ 01001857 v 0000 ~ 02445356 v 0000 ~ 02471327 v 0000 ~ 02472223 v 0000 ~ 02599754 v 0000 02 + 08 00 + 11 00 | record in writing; enter into a book of names or events or transactions -02472033 41 v 02 cross-file 0 register 5 004 @ 01094086 v 0000 + 13412321 n 0201 + 06507041 n 0201 ~ 02397106 v 0000 01 + 02 00 | have one's name listed as a candidate for several parties -02472223 41 v 01 list 0 009 @ 02471690 v 0000 + 06481320 n 0101 + 10265891 n 0101 + 01011166 n 0101 ~ 02472495 v 0000 ~ 02472703 v 0000 ~ 02472817 v 0000 ~ 02473143 v 0000 ~ 02473331 v 0000 03 + 08 00 + 09 00 + 11 00 | include in a list; "Am I listed in your register?" -02472495 41 v 03 inventory 0 take_stock 0 stock-take 0 002 @ 02472223 v 0000 + 01011425 n 0102 01 + 08 00 | make or include in an itemized record or report; "Inventory all books before the end of the year" -02472703 41 v 02 empanel 0 impanel 0 001 @ 02472223 v 0000 01 + 09 00 | enter into a list of prospective jurors -02472817 41 v 01 index 0 004 @ 02472223 v 0000 + 06491786 n 0101 + 10203016 n 0101 ~ 02472958 v 0000 02 + 08 00 + 09 00 | list in an index -02472958 41 v 01 cross-index 0 002 @ 02472817 v 0000 + 06764867 n 0102 02 + 08 00 + 09 00 | make an index that refers from one point to the next; "These references are cross-indexed" -02473143 41 v 01 blacklist 0 002 @ 02472223 v 0000 + 06487260 n 0101 01 + 09 00 | put on a blacklist so as to banish or cause to be boycotted; "many books were blacklisted by the Nazis" -02473331 41 v 01 post 0 001 @ 02472223 v 0000 03 + 08 00 + 09 00 + 11 00 | enter on a public list -02473431 41 v 03 veto 0 blackball 1 negative 0 006 * 02462386 v 0000 @ 00776059 v 0000 + 07204911 n 0301 + 05198928 n 0101 + 00209546 n 0101 ~ 02473688 v 0000 01 + 08 00 | vote against; refuse to endorse; refuse to assent; "The President vetoed the bill" -02473688 41 v 05 kill 1 shoot_down 0 defeat 0 vote_down 0 vote_out 0 002 @ 02473431 v 0000 + 07475364 n 0301 01 + 08 00 | thwart the passage of; "kill a motion"; "he shot down the student's proposal" -02473890 41 v 01 vote 9 000 01 + 08 00 | be guided by in voting; "vote one's conscience" -02473981 41 v 03 empower 0 authorise 0 authorize 0 005 @ 02475922 v 0000 + 01138670 n 0301 + 01138670 n 0103 ~ 02447370 v 0000 ~ 02479154 v 0000 02 + 09 00 + 17 01 | give or delegate power or authority to; "She authorized her assistant to sign the papers" -02474239 41 v 06 endow 0 indue 0 gift 0 empower 1 invest 3 endue 0 005 @ 00512877 v 0000 + 05624042 n 0302 + 13265011 n 0301 + 05624042 n 0101 ~ 02474446 v 0000 01 + 17 00 | give qualities or abilities to -02474446 41 v 01 cover 8 001 @ 02474239 v 0000 02 + 20 00 + 21 00 | invest with a large or excessive amount of something; "She covered herself with glory" -02474603 41 v 01 confirm 0 002 @ 02474780 v 0000 ;c 08081668 n 0000 01 + 09 00 | administer the rite of confirmation to; "the children were confirmed in their mother's faith" -02474780 41 v 01 covenant 0 006 @ 00884540 v 0000 ;c 08081668 n 0000 + 06525588 n 0101 ~ 02474603 v 0000 ~ 02474958 v 0000 ~ 02475109 v 0000 01 + 02 00 | enter into a covenant -02474958 41 v 01 bar_mitzvah 0 002 @ 02474780 v 0000 + 07453924 n 0101 01 + 09 00 | confirm in the bar mitzvah ceremony, of boys in the Jewish faith -02475109 41 v 01 bat_mitzvah 0 002 @ 02474780 v 0000 + 07454196 n 0101 01 + 09 00 | confirm in the bat mitzvah ceremony, of girls in the Jewish faith -02475261 41 v 01 commission 0 004 @ 00803325 v 0000 + 00731222 n 0103 + 09943811 n 0101 + 01140471 n 0102 01 + 24 00 | charge with a task -02475401 41 v 01 commission 1 002 @ 02339413 v 0000 + 14009274 n 0101 01 + 08 00 | put into commission; equip for service; of ships -02475535 41 v 03 accredit 0 recognize 0 recognise 0 002 @ 02444662 v 0000 + 01140193 n 0101 02 + 08 00 + 09 00 | grant credentials to; "The Regents officially recognized the new educational institution"; "recognize an academic degree" -02475772 41 v 01 accredit 1 002 @ 02475922 v 0000 ;c 08138466 n 0000 01 + 09 00 | provide or send (envoys or embassadors) with official credentials -02475922 41 v 02 appoint 0 charge 0 014 + 09909760 n 0201 + 07169480 n 0202 + 00731222 n 0202 + 00829378 n 0202 + 02635794 a 0101 + 00846462 a 0101 + 09607630 n 0101 + 09800964 n 0101 ~ 02391803 v 0000 ~ 02394445 v 0000 ~ 02396716 v 0000 ~ 02473981 v 0000 ~ 02475772 v 0000 ~ 02476385 v 0000 02 + 09 00 + 14 00 | assign a duty, responsibility or obligation to; "He was appointed deputy manager"; "She was charged with supervising the creation of a concordance" -02476385 41 v 01 create 0 001 @ 02475922 v 0000 02 + 08 00 + 14 00 | invest with a new title, office, or rank; "Create one a peer" -02476518 41 v 01 confirm 1 002 @ 00806502 v 0000 + 07179943 n 0102 04 + 08 00 + 09 00 + 10 00 + 11 00 | support a person for a position; "The Senate confirmed the President's candidate for Secretary of Defense" -02476731 41 v 02 defrock 0 unfrock 0 001 @ 02385372 v 0000 01 + 09 00 | divest of the frock; of church officials -02476846 41 v 02 disenfranchise 0 disfranchise 0 004 @ 02313250 v 0000 + 01022824 n 0201 + 01140029 n 0101 ! 02477011 v 0101 01 + 09 00 | deprive of voting rights -02477011 41 v 01 enfranchise 0 003 @ 02255268 v 0000 + 05187446 n 0102 ! 02476846 v 0101 01 + 09 00 | grant voting rights -02477135 41 v 02 affranchise 0 enfranchise 1 002 @ 02497062 v 0000 + 13992387 n 0201 01 + 09 00 | grant freedom to; as from slavery or servitude; "Slaves were enfranchised in the mid-19th century" -02477334 41 v 02 cancel 0 strike_down 0 009 @ 00822367 v 0000 + 07207142 n 0101 + 00232386 n 0101 + 06867218 n 0102 ~ 00799798 v 0000 ~ 01018800 v 0000 ~ 02477655 v 0000 ~ 02478059 v 0000 ~ 02480216 v 0000 02 + 08 00 + 11 00 | declare null and void; make ineffective; "Cancel the election results"; "strike down a law" -02477655 41 v 01 write_off 0 002 @ 02477334 v 0000 + 00232604 n 0101 01 + 08 00 | cancel (a debt) -02477755 41 v 04 cancel 3 call_off 0 scratch 0 scrub 0 002 * 00794981 v 0000 + 00232386 n 0101 01 + 08 00 | postpone indefinitely or annul something that was scheduled; "Call off the engagement"; "cancel the dinner party"; "we had to scrub our vacation plans"; "scratch that meeting--the chair is ill" -02478059 41 v 06 invalidate 0 annul 0 quash 1 void 0 avoid 0 nullify 0 014 @ 02477334 v 0000 + 10214390 n 0603 + 06185748 n 0601 + 00231567 n 0601 + 10365984 n 0601 + 01760293 a 0402 + 14455700 n 0402 + 10214390 n 0402 + 01240979 n 0201 + 01240979 n 0102 + 10214390 n 0101 ! 02478701 v 0101 ~ 02478469 v 0000 ~ 02601680 v 0000 02 + 08 00 + 11 00 | declare invalid; "The contract was annulled"; "void a plea" -02478469 41 v 01 break a 001 @ 02478059 v 0000 01 + 08 00 | invalidate by judicial action; "The will was broken" -02478584 41 v 01 abrogate 0 003 @ 02427334 v 0000 + 09757311 n 0101 + 00231887 n 0101 01 + 08 00 | revoke formally -02478701 41 v 03 validate 0 formalize 1 formalise 1 007 @ 00803325 v 0000 + 01009637 n 0302 + 01009637 n 0201 ! 02478059 v 0101 ~ 02464866 v 0000 ~ 02465145 v 0000 ~ 02465297 v 0000 02 + 08 00 + 11 00 | declare or make legally valid -02478936 41 v 02 formalize 0 formalise 0 004 @ 00822367 v 0000 + 01009637 n 0202 + 01009637 n 0101 ~ 00525446 v 0000 02 + 08 00 + 11 00 | make formal or official; "We formalized the appointment and gave him a title" -02479154 41 v 01 sanction 1 005 @ 02473981 v 0000 + 01195128 a 0101 + 01139000 n 0101 + 06687358 n 0101 + 05176607 n 0104 01 + 08 00 | give authority or permission to -02479323 41 v 02 issue 0 supply 0 012 @ 02479990 v 0000 + 01057200 n 0202 + 13563522 n 0201 + 13777344 n 0201 + 01060234 n 0101 + 13367593 n 0101 + 08055150 n 0101 + 01060234 n 0102 ! 02480216 v 0101 ~ 00269682 v 0000 ~ 02479701 v 0000 ~ 02494047 v 0000 01 + 08 00 | circulate or distribute or equip with; "issue a new uniform to the children"; "supply blankets for the beds" -02479701 41 v 01 reissue 0 001 @ 02479323 v 0000 01 + 08 00 | issue (a new version of); "if you forget your password, it can be changed and reissued" -02479853 41 v 01 reticulate 0 002 @ 02479990 v 0000 + 05501485 n 0101 01 + 08 00 | distribute by a network, as of water or electricity -02479990 41 v 01 distribute 0 006 @ 02220461 v 0000 + 01112885 n 0101 + 10018861 n 0101 + 10018861 n 0102 ~ 02479323 v 0000 ~ 02479853 v 0000 01 + 08 00 | make available; "The publisher wants to distribute the book in Asia" -02480216 41 v 01 recall 0 004 @ 02477334 v 0000 + 07280072 n 0101 ! 02479323 v 0101 ~ 02480448 v 0000 01 + 08 00 | make unavailable; bar from sale or distribution; "The company recalled the product when it was found to be faulty" -02480448 41 v 01 retire 4 001 @ 02480216 v 0000 01 + 08 00 | withdraw from circulation or from the market, as of bills, shares, and bonds -02480588 41 v 01 disbar 0 003 @ 00972608 v 0000 ;c 00611143 n 0000 + 00206779 n 0101 02 + 09 00 + 20 00 | remove from the bar; expel from the practice of law by official action; "The corrupt lawyer was disbarred" -02480803 41 v 01 commission 2 002 @ 00745499 v 0000 + 07169480 n 0101 03 + 08 00 + 16 00 + 24 00 | place an order for -02480923 41 v 05 outlaw 0 criminalize 0 criminalise 0 illegalize 0 illegalise 0 008 @ 00795863 v 0000 + 00766234 n 0301 ! 02481436 v 0304 ! 02481436 v 0203 + 04811126 n 0102 + 09977660 n 0104 ! 02481436 v 0101 ~ 02493666 v 0000 01 + 08 00 | declare illegal; outlaw; "Marijuana is criminalized in the U.S." -02481231 41 v 02 monetize 0 monetise 0 003 @ 02481436 v 0000 + 00154689 n 0202 + 00154689 n 0101 01 + 08 00 | give legal value to or establish as the legal tender of a country; "They monetized the lira" -02481436 41 v 09 legalize 0 legalise 0 decriminalize 0 decriminalise 0 legitimize 0 legitimise 0 legitimate 0 legitimatize 0 legitimatise 0 010 @ 00802318 v 0000 + 01195380 n 0703 + 04810035 n 0701 ! 02480923 v 0403 ! 02480923 v 0302 + 01195380 n 0202 ! 02480923 v 0201 + 01195380 n 0101 ! 02480923 v 0101 ~ 02481231 v 0000 01 + 08 00 | make legal; "Marijuana should be legalized" -02481819 41 v 01 trust 0 001 @ 00802318 v 0000 01 + 24 00 | allow without fear -02481900 41 v 03 desegregate 0 integrate 0 mix 0 004 + 01202415 n 0201 + 01202415 n 0202 + 01202415 n 0103 ! 02482139 v 0101 01 + 08 00 | open (a place) to members of all races and ethnic groups; "This school is completely desegregated" -02482139 41 v 01 segregate 0 004 @ 02512305 v 0000 + 08380340 n 0101 + 10576316 n 0101 ! 02481900 v 0101 04 + 01 00 + 02 00 + 08 00 + 09 00 | separate by race or religion; practice a policy of racial segregation; "This neighborhood is segregated"; "We don't segregate in this county" -02482425 41 v 08 murder 0 slay 0 hit 0 dispatch 1 bump_off 0 off 0 polish_off 0 remove 1 009 @ 01323958 v 0000 + 00222248 n 0401 + 01250335 n 0301 + 10231087 n 0202 + 00220522 n 0202 + 00220522 n 0101 + 10338707 n 0101 ~ 02482784 v 0000 ~ 02484208 v 0000 01 + 09 00 | kill intentionally and with premeditation; "The mafia boss ordered his enemies murdered" -02482784 41 v 01 burke 0 001 @ 02482425 v 0000 01 + 09 00 | murder without leaving a trace on the body -02482889 41 v 01 bench 0 002 @ 02404224 v 0000 + 08209519 n 0101 01 + 09 00 | take out of a game; of players -02483000 41 v 01 assassinate 0 004 @ 01323958 v 0000 + 09813696 n 0101 + 00221056 n 0101 + 09813696 n 0102 01 + 09 00 | murder; especially of socially prominent persons; "Anwar Sadat was assassinated because many people did not like his peace politics with Israel" -02483267 41 v 02 execute 0 put_to_death 0 008 @ 01323958 v 0000 @ 02499629 v 0000 + 01163779 n 0101 + 01163779 n 0102 ~ 02484049 v 0000 $ 02484208 v 0000 ~ 02485322 v 0000 ~ 02485451 v 0000 01 + 09 00 | kill as a means of socially sanctioned punishment; "In some states, criminals are executed" -02483564 41 v 03 draw d quarter 0 draw_and_quarter 0 002 @ 01323958 v 0000 + 13737480 n 0204 01 + 09 00 | pull (a person) apart with four horses tied to his extremities, so as to execute him; "in the old days, people were drawn and quartered for certain crimes" -02483828 41 v 01 pillory 0 002 @ 02499629 v 0000 + 03938037 n 0101 01 + 09 00 | punish by putting in a pillory -02483941 41 v 02 pillory 1 gibbet 1 001 @ 02140033 v 0000 01 + 09 00 | expose to ridicule or public scorn -02484049 41 v 01 crucify 0 003 @ 02483267 v 0000 + 01165337 n 0101 + 03140292 n 0101 01 + 09 00 | kill by nailing onto a cross; "Jesus Christ was crucified" -02484208 41 v 01 execute 1 003 $ 02483267 v 0000 @ 02482425 v 0000 + 00220522 n 0103 01 + 09 00 | murder in a planned fashion; "The Mafioso who collaborated with the police was executed" -02484397 41 v 01 lynch 0 002 @ 01323958 v 0000 + 00224599 n 0101 01 + 09 00 | kill without legal sanction; "The blood-thirsty mob lynched the alleged killer of the child" -02484570 41 v 02 shoot 0 pip 0 007 @ 01323958 v 0000 + 10593115 n 0102 + 10152083 n 010a + 00225150 n 0101 $ 01137138 v 0000 ~ 02484771 v 0000 ~ 02484875 v 0000 01 + 09 00 | kill by firing a missile -02484771 41 v 01 flight 0 002 @ 02484570 v 0000 + 00302394 n 0101 01 + 08 00 | shoot a bird in flight -02484875 41 v 01 pick_off 0 001 @ 02484570 v 0000 01 + 09 00 | shoot one by one -02484957 41 v 02 electrocute 0 fry 0 002 @ 01323958 v 0000 + 01165112 n 0101 01 + 09 00 | kill by electrocution, as in the electric chair; "The serial killer was electrocuted" -02485135 41 v 01 electrocute 1 002 @ 01325536 v 0000 + 00228078 n 0101 01 + 10 00 | kill by electric shock; "She dropped the hair dryer into the bathtub and was instantly electrocuted" -02485322 41 v 01 burn 0 002 * 00378664 v 0000 @ 02483267 v 0000 01 + 09 00 | burn at the stake; "Witches were burned in Salem" -02485451 41 v 02 hang 0 string_up 0 004 @ 02483267 v 0000 + 01164874 n 0101 ~ 02485631 v 0000 ~ 02485731 v 0000 01 + 09 00 | kill by hanging; "The murderer was hanged on Friday" -02485631 41 v 01 halter 0 002 @ 02485451 v 0000 + 03491724 n 0103 01 + 09 00 | hang with a halter -02485731 41 v 01 gibbet 0 002 @ 02485451 v 0000 + 03413124 n 0103 01 + 09 00 | hang on an execution instrument -02485844 41 v 01 date 0 005 $ 02486232 v 0000 @ 01842204 v 0000 + 09992538 n 0101 + 08385009 n 0101 ~ 02486060 v 0000 02 + 02 00 + 09 01 | go on a date with; "Tonight she is dating a former high school sweetheart" -02486060 41 v 01 double-date 0 002 @ 02485844 v 0000 + 08385602 n 0101 01 + 02 00 | go out on a date with a partner and another couple; "let's double date this Saturday" -02486232 41 v 04 go_steady 0 go_out 0 date 1 see 0 004 @ 02589245 v 0000 + 09992538 n 0301 + 08385009 n 0301 $ 02485844 v 0000 04 + 02 00 + 09 00 + 22 02 + 22 01 | date regularly; have a steady relationship with; "Did you know that she is seeing an older man?"; "He is dating his former wife again!" -02486534 41 v 01 pick_up 0 002 @ 02486932 v 0000 + 10432053 n 0101 01 + 09 00 | meet someone for sexual purposes; "he always tries to pick up girls in bars" -02486693 41 v 03 ask_out 0 invite_out 0 take_out 0 001 @ 00752764 v 0000 01 + 09 00 | make a date; "Has he asked you out yet?" -02486822 41 v 01 reunite 0 002 @ 02486932 v 0000 + 00382474 n 0101 01 + 02 00 | have a reunion; unite again -02486932 41 v 02 meet 1 get_together 1 010 + 08310389 n 0202 + 07467846 n 0101 + 09608002 n 0104 + 08310389 n 0101 + 01230965 n 0101 ~ 02486534 v 0000 ~ 02486822 v 0000 ~ 02487226 v 0000 ~ 02487573 v 0000 ~ 02490877 v 0000 02 + 02 00 + 22 00 | get together socially or for a specific purpose -02487226 41 v 01 rendezvous 0 004 @ 02486932 v 0000 + 08385717 n 0102 + 08642870 n 0101 + 01231548 n 0101 01 + 02 00 | meet at a rendezvous -02487368 41 v 02 stick_together 0 stay_together 0 001 @ 00117985 v 0000 02 + 01 00 + 02 00 | be loyal to one another, especially in times of trouble; "The two families stuck together throughout the war" -02487573 41 v 03 visit 0 call_in 0 call 0 010 @ 02486932 v 0000 + 09887850 n 0301 + 01055954 n 0301 + 01233156 n 0101 + 10757193 n 0101 + 10757193 n 0102 $ 02487901 v 0000 ~ 02488304 v 0000 ~ 02488488 v 0000 ~ 02488641 v 0000 02 + 09 00 + 02 01 | pay a brief visit; "The mayor likes to call on some of the prominent citizens" -02487901 41 v 01 call c 002 $ 02487573 v 0000 @ 01862918 v 0000 02 + 01 00 + 02 00 | make a stop in a harbour; "The ship will call in Honolulu tomorrow" -02488056 41 v 01 pay 0 001 @ 01755816 v 0000 03 + 08 00 + 13 00 + 14 00 | render; "pay a visit"; "pay a call" -02488168 41 v 01 send_in 0 001 * 02487573 v 0000 01 + 08 00 | give one's name or calling card to a servant when making a formal visit -02488304 41 v 01 see b 002 $ 01470670 v 0000 @ 02487573 v 0000 01 + 09 00 | go to see for professional or business reasons; "You should see a lawyer"; "We had to see a psychiatrist" -02488488 41 v 01 see c 002 $ 02493030 v 0000 @ 02487573 v 0000 01 + 09 00 | go to see for a social visit; "I went to see my friend Mary the other day" -02488641 41 v 03 drop_by 0 drop_in 0 come_by 0 001 @ 02487573 v 0000 02 + 02 00 + 22 00 | visit informally and spontaneously; "We frequently drop by the neighbors' house for a cup of coffee" -02488834 41 v 07 marry 0 get_married 0 wed 0 conjoin 0 hook_up_with 0 get_hitched_with 0 espouse 0 011 @ 02469835 v 0000 + 01036996 n 0302 + 01036996 n 0101 + 10295819 n 0101 ~ 02489183 v 0000 ~ 02489363 v 0000 $ 02489456 v 0000 ~ 02489916 v 0000 ~ 02490004 v 0000 ~ 02490090 v 0000 ~ 02490247 v 0000 03 + 09 00 + 02 02 + 02 01 | take in marriage -02489183 41 v 01 inmarry 0 002 @ 02488834 v 0000 + 13965049 n 0103 01 + 02 00 | marry within one's own tribe or group; "The inhabitants of this isolated village tend to inmarry" -02489363 41 v 01 mismarry 0 001 @ 02488834 v 0000 01 + 02 00 | marry an unsuitable partner -02489456 41 v 04 marry 1 wed 1 tie 0 splice 0 005 $ 02488834 v 0000 @ 02382087 v 0000 + 07452074 n 0201 + 01036996 n 0101 ~ 02489748 v 0000 01 + 09 00 | perform a marriage ceremony; "The minister married us on Saturday"; "We were wed the following week"; "The couple got spliced on Hawaii" -02489748 41 v 02 solemnize 1 solemnise 1 003 @ 02489456 v 0000 + 00516086 n 0203 + 00516086 n 0102 01 + 08 00 | perform (the wedding ceremony) with proper ceremonies -02489916 41 v 01 wive 0 001 @ 02488834 v 0000 01 + 02 00 | marry a woman, take a wife -02490004 41 v 01 wive 1 001 @ 02488834 v 0000 01 + 09 00 | take (someone) as a wife -02490090 41 v 01 intermarry 0 003 @ 02488834 v 0000 + 13965274 n 0102 + 13965049 n 0102 01 + 02 00 | marry within the same ethnic, social, or family group -02490247 41 v 01 remarry 0 002 @ 02488834 v 0000 + 01248752 n 0101 02 + 02 00 + 09 00 | marry, not for the first time; "After her divorce, she remarried her high school sweetheart" -02490430 41 v 04 pair 0 pair_off 0 partner_off 0 couple 0 004 @ 02469835 v 0000 + 07985628 n 0401 + 07976936 n 0101 + 00389610 n 0101 01 + 02 00 | form a pair or pairs; "The two old friends paired off" -02490634 41 v 02 divorce 0 split_up 0 005 * 02488834 v 0000 @ 02431320 v 0000 + 01201271 n 0101 + 01201271 n 0102 + 10020366 n 0101 02 + 02 00 + 09 00 | get a divorce; formally terminate a marriage; "The couple divorced after only 6 months" -02490877 41 v 02 celebrate 0 fete 0 011 @ 02486932 v 0000 + 07449862 n 0201 + 02684875 a 0101 + 07450651 n 0101 + 00428000 n 0101 + 09902954 n 0101 + 09902954 n 0102 ~ 02491262 v 0000 ~ 02491383 v 0000 ~ 02491851 v 0000 ~ 02493511 v 0000 03 + 02 00 + 08 00 + 09 00 | have a celebration; "They were feting the patriarch of the family"; "After the exam, the students were celebrating" -02491262 41 v 01 jubilate 0 003 @ 02490877 v 0000 + 15250312 n 0101 + 07450651 n 0102 01 + 08 00 | celebrate a jubilee -02491383 41 v 08 revel 0 racket 0 make_whoopie 0 make_merry 0 make_happy 0 whoop_it_up 0 jollify 0 wassail 0 009 @ 02490877 v 0000 + 10769321 n 0801 + 00509846 n 0703 + 00509846 n 0401 + 07390945 n 0201 + 00510189 n 0101 + 10526096 n 0102 + 00510189 n 0102 ~ 02493260 v 0000 01 + 02 00 | celebrate noisily, often indulging in drinking; engage in uproarious festivities; "The members of the wedding party made merry all night"; "Let's whoop it up--the boss is gone!" -02491851 41 v 01 party 0 004 @ 02490877 v 0000 + 08252602 n 0101 + 07447641 n 0101 ~ 02492054 v 0000 01 + 02 00 | have or participate in a party; "The students were partying all night before the exam" -02492054 41 v 01 rave 0 003 @ 02491851 v 0000 + 07449676 n 0101 + 10508272 n 0101 01 + 02 00 | participate in an all-night techno dance party -02492198 41 v 01 entertain 0 005 @ 02388950 v 0000 + 00429048 n 0101 + 09616922 n 0101 ~ 01194418 v 0000 ~ 02492362 v 0000 01 + 09 00 | provide entertainment for -02492362 41 v 03 amuse 0 divert 0 disport 0 004 @ 02492198 v 0000 + 00426928 n 0201 + 01344485 a 0102 + 00429048 n 0102 01 + 09 00 | occupy in an agreeable, entertaining or pleasant fashion; "The play amused the ladies" -02492584 41 v 01 take_in 0 001 @ 02493030 v 0000 01 + 08 00 | visit for entertainment; "take in the sights" -02492694 41 v 01 slum 0 002 @ 02708420 v 0000 + 08651832 n 0101 01 + 08 00 | spend time at a lower socio-economic level than one's own, motivated by curiosity or desire for adventure; usage considered condescending and insensitive; "attending a motion picture show by the upper class was considered sluming in the early 20th century" -02493030 41 v 02 visit 2 see a 005 @ 01845229 v 0000 + 10757193 n 0101 + 10757193 n 0102 $ 02488488 v 0000 ~ 02492584 v 0000 01 + 08 00 | go to see a place, as for entertainment; "We went to see the Eiffel Tower in the morning" -02493260 41 v 03 carouse 0 roister 0 riot 1 006 @ 02491383 v 0000 + 00511212 n 0305 + 10536897 n 0201 + 00511041 n 0101 + 10769321 n 0102 + 00511041 n 0102 01 + 02 00 | engage in boisterous, drunken merrymaking; "They were out carousing last night" -02493511 41 v 01 receive 0 002 @ 02490877 v 0000 + 08254331 n 0101 02 + 02 00 + 09 01 | have or give a reception; "The lady is receiving Sunday morning" -02493666 41 v 02 ban 0 censor 0 005 @ 02480923 v 0000 ;c 06254475 n 0000 + 07255401 n 0101 + 06542047 n 0102 ~ 02493876 v 0000 02 + 08 00 + 11 00 | forbid the public distribution of ( a movie or a newspaper) -02493876 41 v 01 embargo 1 001 @ 02493666 v 0000 02 + 08 00 + 11 00 | ban the publication of (documents), as for security or copyright reasons; "embargoed publications" -02494047 41 v 02 free 1 release 1 003 @ 02479323 v 0000 + 04073208 n 0201 ~ 02509107 v 0000 02 + 08 00 + 11 00 | make (information) available for publication; "release the list with the names of the prisoners" -02494259 41 v 01 bail_out 0 002 @ 02421374 v 0000 ;c 08441203 n 0000 01 + 09 00 | free on bail -02494356 41 v 0a imprison 0 incarcerate 0 lag 0 immure 0 put_behind_bars 0 jail 0 jug 0 gaol 0 put_away 0 remand 0 012 @ 02495038 v 0000 ;c 08441203 n 0000 + 00328327 n 0a01 + 10149867 n 0804 + 03592245 n 0803 + 10149867 n 0602 + 10149867 n 0603 + 03592245 n 0601 + 13999206 n 0404 + 13999206 n 0203 + 01162376 n 0101 + 01146768 n 0101 01 + 09 00 | lock up or confine, in or as in a jail; "The suspects were imprisoned without trial"; "the murderer was incarcerated for the rest of his life" -02494850 41 v 02 raid 0 bust 0 002 @ 01119169 v 0000 + 00976953 n 0102 02 + 08 00 + 09 00 | search without warning, make a sudden surprise attack on; "The police raided the crack house" -02495038 41 v 02 confine 0 detain 0 014 + 13999663 n 0201 + 01161635 n 0201 + 10009162 n 0201 + 01146576 n 0101 ! 02421374 v 0101 ~ 01302019 v 0000 ~ 01388571 v 0000 ~ 02494356 v 0000 ~ 02495387 v 0000 ~ 02495592 v 0000 ~ 02495817 v 0000 ~ 02496036 v 0000 ~ 02496185 v 0000 ~ 02496388 v 0000 01 + 09 00 | deprive of freedom; take into confinement -02495387 41 v 01 intern 2 004 @ 02495038 v 0000 + 10212074 n 0101 + 14000302 n 0101 + 01146768 n 0102 02 + 09 00 + 10 00 | deprive of freedom; "During WW II, Japanese were interned in camps in the West" -02495592 41 v 01 bind_over 0 002 @ 02495038 v 0000 ;c 08441203 n 0000 01 + 09 00 | order a defendant to be placed in custody pending the outcome of a proceedings against him or her; "The defendant was bound over for trial" -02495817 41 v 01 imprison 1 002 @ 02495038 v 0000 + 13999206 n 0102 01 + 09 00 | confine as if in a prison; "His daughters are virtually imprisoned in their own house; he does not let them go out without a chaperone" -02496036 41 v 02 cage 0 cage_in 0 003 @ 02495038 v 0000 + 13998966 n 0101 + 02936714 n 0101 01 + 08 00 | confine in a cage; "The animal was caged" -02496185 41 v 02 trap 0 pin_down 0 002 @ 02495038 v 0000 + 05837370 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | place in a confining or embarrassing position; "He was trapped in a difficult situation" -02496388 41 v 01 keep_in 0 001 @ 02495038 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to stay indoors -02496498 41 v 02 manumit 0 emancipate 0 006 @ 02497062 v 0000 + 02005364 a 0201 + 01247413 n 0201 + 10051026 n 0201 + 01247807 n 0101 + 10051026 n 0102 01 + 09 00 | free from slavery or servitude -02496696 41 v 01 enslave 0 002 @ 02496816 v 0000 + 00089234 n 0101 01 + 09 00 | make a slave of; bring into servitude -02496816 41 v 02 subjugate 0 subject 0 008 @ 02539334 v 0000 + 09625401 n 0202 + 13996300 n 0202 + 00089027 n 0203 + 13996300 n 0101 + 10669125 n 0101 ~ 02424533 v 0000 ~ 02496696 v 0000 01 + 09 00 | make subservient; force to submit or subdue -02497062 41 v 02 liberate 0 set_free 2 010 @ 02422026 v 0000 + 00095502 n 0101 + 00787832 n 0101 + 13996061 n 0101 + 13994456 n 0101 + 13992514 n 0102 + 10257221 n 0101 ~ 02477135 v 0000 ~ 02496498 v 0000 ~ 02590667 v 0000 02 + 09 00 + 10 00 | grant freedom to; "The students liberated their slaves upon graduating from the university" -02497400 41 v 02 emancipate 1 liberate 1 004 @ 00146138 v 0000 + 00787832 n 0201 + 13992514 n 0202 + 01247413 n 0101 02 + 09 00 + 10 00 | give equal rights to; of women and minorities -02497586 41 v 01 appeal 0 005 @ 00868591 v 0000 + 00132849 a 0101 + 03044083 a 0102 + 09800469 n 0101 + 01185611 n 0101 02 + 02 00 + 08 00 | take a court case to a higher court for review; "He was found guilty but appealed immediately" -02497824 41 v 01 appeal 4 004 @ 00808162 v 0000 + 00132849 a 0101 + 03044083 a 0102 + 01185611 n 0101 01 + 08 00 | challenge (a decision); "She appealed the verdict" -02497992 41 v 01 arraign 0 003 * 02521284 v 0000 * 00843468 v 0000 + 07235936 n 0101 01 + 09 00 | call before a court to answer an indictment -02498136 41 v 01 book 0 002 @ 01000214 v 0000 ~ 02498716 v 0000 02 + 09 00 + 20 00 | record a charge in a police register; "The policeman booked her when she tried to solicit a man" -02498320 41 v 03 reserve 0 hold 0 book 1 008 * 02238770 v 0000 @ 00752764 v 0000 + 01988565 a 0301 + 01218327 n 0301 + 05795460 n 0101 + 01218327 n 0102 $ 00795632 v 0000 ~ 02283716 v 0000 01 + 08 00 | arrange for and reserve (something for someone else) in advance; "reserve me a seat on a flight"; "The agent booked tickets to the show for the whole family"; "please hold a table at Maxim's" -02498716 41 v 02 ticket 0 fine 0 004 @ 02498136 v 0000 + 13301328 n 0201 + 06558678 n 0101 ~ 02498987 v 0000 01 + 09 00 | issue a ticket or a fine to as a penalty; "I was fined for parking on the wrong side of the street"; "Move your car or else you will be ticketed!" -02498987 41 v 01 amerce 1 004 $ 02500265 v 0000 @ 02498716 v 0000 + 01402343 a 0101 + 13301328 n 0103 01 + 09 00 | punish by a fine imposed arbitrarily by the discretion of the court -02499172 41 v 01 court-martial 1 003 @ 02501278 v 0000 + 01196316 n 0101 + 08331525 n 0101 01 + 09 00 | subject to trial by court-martial -02499312 41 v 03 expatriate 0 deport 0 exile 0 008 @ 02501738 v 0000 + 10071139 n 0301 + 00207761 n 0301 + 10071139 n 0202 + 00207306 n 0201 + 00207761 n 0202 + 00207761 n 0103 ! 02502387 v 0101 01 + 09 00 | expel from a country; "The poet was exiled because he signed a letter protesting the government's actions" -02499629 41 v 03 punish 0 penalize 0 penalise 0 016 * 00672433 v 0000 + 01160342 n 0304 + 01160342 n 0302 + 01160342 n 0203 + 01902468 a 0101 + 01902468 a 0102 + 01160342 n 0101 ~ 01153486 v 0000 ~ 01272582 v 0000 ~ 02483267 v 0000 ~ 02483828 v 0000 ~ 02500144 v 0000 ~ 02500265 v 0000 ~ 02500619 v 0000 ~ 02500775 v 0000 ~ 02553428 v 0000 01 + 09 00 | impose a penalty on; inflict punishment on; "The students were penalized for showing up late for class"; "we had to punish the dog for soiling the floor again" -02500144 41 v 01 castigate 0 002 @ 02499629 v 0000 + 01161017 n 0101 02 + 09 00 + 10 00 | inflict severe punishment on -02500265 41 v 01 amerce 0 003 @ 02499629 v 0000 + 01402343 a 0101 $ 02498987 v 0000 01 + 09 00 | punish with an arbitrary penalty -02500397 41 v 01 get_it 0 000 01 + 02 00 | receive punishment; "You are going to get it!" -02500489 41 v 01 catch_it 0 000 01 + 02 00 | receive punishment; be scolded or reprimanded; "I really caught it the other day!" -02500619 41 v 02 victimize 0 victimise 0 004 @ 02499629 v 0000 + 10752093 n 0201 + 10752480 n 0101 + 10752093 n 0101 02 + 09 00 + 10 00 | punish unjustly -02500775 41 v 01 scourge 0 003 @ 02499629 v 0000 + 04149968 n 0101 + 10096964 n 0102 01 + 09 00 | punish severely; excoriate -02500902 41 v 02 hear 0 try 5 004 @ 00788564 v 0000 + 10729175 n 0201 + 07147267 n 0101 ~ 02501159 v 0000 01 + 08 00 | examine or hear (evidence or a case) by judicial process; "The jury had heard all the evidence"; "The case will be tried in California" -02501159 41 v 02 rehear 0 retry 6 002 @ 02500902 v 0000 + 01199365 n 0201 01 + 08 00 | hear or try a court case anew -02501278 41 v 03 judge 9 adjudicate 3 try 6 012 @ 00697589 v 0000 + 10729175 n 0301 + 01195867 n 0301 + 02603926 a 0201 + 02603926 a 0202 + 10225219 n 0201 + 09769636 n 0201 + 10225219 n 0101 + 06551784 n 0103 + 01187810 n 0101 + 08166187 n 0101 ~ 02499172 v 0000 01 + 09 00 | put on trial or hear a case and sit as the judge at the trial of; "The football star was tried for the murder of his wife"; "The judge tried both father and son in separate trials" -02501738 41 v 03 expel 0 throw_out 1 kick_out 1 009 @ 01850315 v 0000 + 00206927 n 0103 ~ 01468576 v 0000 ~ 02499312 v 0000 ~ 02502037 v 0000 ~ 02503365 v 0000 ~ 02503803 v 0000 ~ 02504017 v 0000 ~ 02504280 v 0000 01 + 09 00 | force to leave or move out; "He was expelled from his native country" -02502037 41 v 02 suspend 0 debar 5 005 @ 02501738 v 0000 * 02499629 v 0000 + 01077881 n 0201 + 00209132 n 0101 ~ 02502232 v 0000 02 + 09 00 + 20 00 | bar temporarily; from school, office, etc. -02502232 41 v 02 send_down 0 rusticate 1 002 @ 02502037 v 0000 + 00209301 n 0201 01 + 09 00 | suspend temporarily from college or university, in England -02502387 41 v 01 repatriate 0 004 @ 02502536 v 0000 + 10521288 n 0101 + 00051385 n 0101 ! 02499312 v 0101 01 + 09 00 | admit back into the country -02502536 41 v 04 admit 1 allow_in 0 let_in 2 intromit 0 010 $ 02671279 v 0000 @ 00802318 v 0000 + 00320852 n 0403 + 01762065 a 0102 + 01762065 a 0101 + 13321495 n 0102 + 01248191 n 0101 ! 02502916 v 0101 ~ 02502387 v 0000 ~ 02503212 v 0000 03 + 09 00 + 11 00 + 20 00 | allow to enter; grant entry to; "We cannot admit non-members into our club building"; "This pipe admits air" -02502916 41 v 04 reject 0 turn_down 0 turn_away 0 refuse 0 005 + 07205573 n 0401 + 00205349 n 0202 + 05790572 n 0102 ! 02502536 v 0101 $ 00796976 v 0000 02 + 09 00 + 10 00 | refuse entrance or membership; "They turned away hundreds of fans"; "Black people were often rejected by country clubs" -02503212 41 v 01 readmit 0 002 @ 02502536 v 0000 + 01248418 n 0101 02 + 09 00 + 20 00 | admit anew; "The refugee was readmitted into his home country" -02503365 41 v 03 extradite 0 deliver 0 deport 1 004 @ 02501738 v 0000 + 10071139 n 0302 + 00213482 n 0101 ~ 02503633 v 0000 01 + 09 00 | hand over to the authorities of another country; "They extradited the fugitive to his native country so he could be tried there" -02503633 41 v 01 repatriate 1 003 @ 02503365 v 0000 + 10521288 n 0101 + 00051385 n 0101 01 + 09 00 | send someone back to his homeland against his will, as of refugees -02503803 41 v 03 banish 0 relegate 1 bar 0 004 @ 02501738 v 0000 + 00208521 n 0201 + 00206302 n 0101 ~ 02558090 v 0000 02 + 09 00 + 20 00 | expel, as if by official decree; "he was banished from his own country" -02504017 41 v 07 banish 1 ban 1 ostracize 1 ostracise 1 shun 0 cast_out 0 blackball 0 007 @ 02501738 v 0000 + 00207622 n 0702 + 14427633 n 0402 + 00207434 n 0401 + 14427633 n 0302 + 00207434 n 0301 + 14427633 n 0101 01 + 09 00 | expel from a community or group -02504280 41 v 02 banish 2 ban 2 002 @ 02501738 v 0000 ~ 02504416 v 0000 01 + 09 00 | ban from a place of residence, as for punishment -02504416 41 v 01 rusticate 0 002 @ 02504280 v 0000 + 00208694 n 0101 01 + 09 00 | send to the country; "He was rusticated for his bad behavior" -02504562 41 v 05 coerce 0 hale 0 squeeze 1 pressure 0 force 0 018 > 02367363 v 0000 @ 02506546 v 0000 + 05194578 n 0501 + 10461424 n 0502 + 14451349 n 0405 + 05195362 n 0401 + 00788097 n 0303 + 01826327 a 0101 + 01127245 n 0101 + 00156812 n 0102 ~ 02505141 v 0000 ~ 02505358 v 0000 ~ 02505606 v 0000 ~ 02505807 v 0000 ~ 02506068 v 0000 ~ 02506181 v 0000 ~ 02506361 v 0000 ~ 02507278 v 0000 02 + 24 00 + 30 00 | to cause to do through pressure or necessity, by physical, moral or intellectual means :"She forced him to take a job in the city"; "He squeezed her for information" -02505141 41 v 02 turn_up_the_heat 0 turn_up_the_pressure 0 001 @ 02504562 v 0000 02 + 02 00 + 22 00 | apply great or increased pressure; "The Democrats turned up the heat on their candidate to concede the election" -02505358 41 v 01 drive 2 004 @ 02504562 v 0000 + 14035298 n 0101 $ 01516534 v 0000 $ 01646300 v 0000 02 + 09 00 + 10 00 | to compel or force or urge relentlessly or exert coercive pressure on, or motivate strongly; "She is driven by her passion" -02505606 41 v 01 bludgeon 0 002 @ 02504562 v 0000 + 02855793 n 0101 01 + 30 00 | overcome or coerce as if by using a heavy club; "The teacher bludgeoned the students into learning the math formulas" -02505807 41 v 02 steamroller 1 steamroll 1 005 $ 02373578 v 0000 @ 02504562 v 0000 + 10226556 n 0202 + 10226556 n 0102 $ 01110661 v 0000 01 + 21 00 | bring to a specified state by overwhelming force or pressure; "The Senator steamrollered the bill to defeat" -02506068 41 v 01 squeeze_for 0 001 @ 02504562 v 0000 01 + 14 00 | squeeze someone for money, information, etc. -02506181 41 v 03 dragoon 0 sandbag 2 railroad 0 001 @ 02504562 v 0000 01 + 30 00 | compel by coercion, threats, or crude means; "They sandbagged him to make dinner for everyone" -02506361 41 v 02 terrorize 0 terrorise 0 005 @ 02504562 v 0000 + 00765193 n 0202 + 07520612 n 0202 + 00765193 n 0101 + 07520612 n 0102 01 + 09 00 | coerce by violence or with threats -02506546 41 v 03 compel 0 oblige 0 obligate 0 013 > 02367363 v 0000 @ 00770437 v 0000 + 01129920 n 0303 + 01129920 n 0203 + 00156812 n 0101 ~ 00747418 v 0000 ~ 01906823 v 0000 ~ 02504562 v 0000 ~ 02506924 v 0000 ~ 02507093 v 0000 ~ 02508078 v 0000 ~ 02560164 v 0000 ~ 02560424 v 0000 01 + 24 00 | force somebody to do something; "We compel all students to fill out this form" -02506924 41 v 01 clamor 0 001 @ 02506546 v 0000 01 + 24 00 | compel someone to do something by insistent clamoring; "They clamored the mayor into building a new park" -02507093 41 v 01 condemn 0 001 @ 02506546 v 0000 01 + 10 00 | compel or force into a particular state or activity; "His devotion to his sick wife condemned him to a lonely existence" -02507278 41 v 01 bring_oneself 0 001 @ 02504562 v 0000 01 + 24 00 | cause to undertake a certain action, usually used in the negative; "He could not bring himself to call his parents" -02507464 41 v 04 trouble_oneself 0 trouble 1 bother 0 inconvenience_oneself 0 002 @ 01146051 v 0000 + 00623862 n 0201 02 + 01 00 + 28 00 | take the trouble to do something; concern oneself; "He did not trouble to call his mother on her birthday"; "Don't bother, please" -02507736 41 v 07 trouble 0 put_out 0 inconvenience 1 disoblige 0 discommode 0 incommode 0 bother 1 008 @ 00137313 v 0000 + 14406573 n 0704 + 05830059 n 0703 + 07372565 n 0703 + 04722715 n 0301 + 14446878 n 0301 + 05687338 n 0101 ~ 02603424 v 0000 02 + 09 00 + 10 00 | to cause inconvenience or discomfort to; "Sorry to trouble you, but..." -02508078 41 v 01 shame 1 003 @ 02506546 v 0000 + 14440137 n 0101 + 07506569 n 0101 01 + 30 00 | compel through a sense of shame; "She shamed him into making amends" -02508245 41 v 05 stigmatize 0 stigmatise 0 brand 0 denounce 0 mark 0 008 @ 01029852 v 0000 + 06794666 n 0501 + 00924635 a 0402 + 07232988 n 0402 + 06794666 n 0303 + 01223488 n 0202 + 01223488 n 0101 + 06794666 n 0102 02 + 08 00 + 09 00 | to accuse or condemn or openly or formally or brand as disgraceful; "He denounced the government action"; "She was stigmatized by society because she had a child out of wedlock" -02508663 41 v 01 brand 1 002 @ 00508032 v 0000 + 06795543 n 0101 01 + 14 00 | burn with a branding iron to indicate ownership; of animals -02508803 41 v 01 classify 0 003 @ 02509287 v 0000 + 01148904 n 0101 ! 02509107 v 0101 01 + 08 00 | declare unavailable, as for security reasons; "Classify these documents" -02508977 41 v 01 taboo 0 003 @ 02509287 v 0000 + 04884302 n 0101 + 05950234 n 0101 01 + 08 00 | declare as sacred and forbidden -02509107 41 v 01 declassify 0 003 @ 02494047 v 0000 + 01149115 n 0101 ! 02508803 v 0101 01 + 08 00 | lift the restriction on and make available again; "reclassify the documents" -02509287 41 v 01 restrict 0 008 @ 02510337 v 0000 + 01888941 a 0101 + 00808182 n 0102 ! 02510071 v 0101 ~ 02508803 v 0000 ~ 02508977 v 0000 ~ 02509820 v 0000 ~ 02509919 v 0000 01 + 08 00 | place under restrictions; limit access to; "This substance is controlled" -02509552 41 v 01 train 3 002 @ 02510337 v 0000 ~ 02509705 v 0000 01 + 08 00 | cause to grow in a certain way by tying and pruning it; "train the vine" -02509705 41 v 01 trellis 0 002 @ 02509552 v 0000 + 04478512 n 0101 01 + 08 00 | train on a trellis, as of a vine -02509820 41 v 02 scant 0 skimp 1 001 @ 02509287 v 0000 01 + 08 00 | limit in quality or quantity -02509919 41 v 02 localize 0 localise 0 003 @ 02509287 v 0000 + 00155487 n 0202 ~ 00097029 v 0000 01 + 08 00 | restrict something to a particular area -02510071 41 v 01 derestrict 0 002 @ 02564146 v 0000 ! 02509287 v 0101 01 + 08 00 | make free from restrictions -02510184 41 v 01 pull_the_plug 0 001 @ 02680814 v 0000 01 + 22 00 | prevent from happening or continuing; "The government pulled the plug on spending" -02510337 41 v 07 control 1 hold_in 0 hold f contain 0 check 8 curb 0 moderate 0 016 @ 02422663 v 0000 + 05117660 n 0701 + 01146039 n 0603 + 01146039 n 0502 + 05641959 n 0102 ~ 00233335 v 0000 ~ 00462092 v 0000 ~ 00573085 v 0000 ~ 01801847 v 0000 ~ 02213074 v 0000 ~ 02509287 v 0000 ~ 02509552 v 0000 ~ 02510905 v 0000 ~ 02511075 v 0000 ~ 02511424 v 0000 ~ 02564973 v 0000 02 + 08 00 + 11 00 | lessen the intensity of; temper; hold in restraint; hold or keep within limits; "moderate your alcohol intake"; "hold your tongue"; "hold your temper"; "control your anger" -02510905 41 v 01 catch d 001 @ 02510337 v 0000 01 + 09 00 | check oneself during an action; "She managed to catch herself before telling her boss what was on her mind" -02511075 41 v 01 bate 0 001 @ 02510337 v 0000 02 + 08 00 + 11 00 | moderate or restrain; lessen the force of; "He bated his breath when talking about this affair"; "capable of bating his enthusiasm" -02511276 41 v 01 indulge 1 002 + 01073241 n 0101 ~ 01191974 v 0000 01 + 22 00 | give free rein to; "The writer indulged in metaphorical language" -02511424 41 v 01 thermostat 0 002 @ 02510337 v 0000 + 04422875 n 0101 01 + 08 00 | control the temperature with a thermostat -02511551 41 v 05 regulate 1 regularize 0 regularise 0 order 1 govern 2 011 @ 00697589 v 0000 + 05663671 n 0501 + 03450018 n 0501 + 13968547 n 0401 + 05846054 n 0102 + 00806902 n 0101 + 10517826 n 0101 + 00805034 n 0102 ! 02512005 v 0101 ~ 00467717 v 0000 ~ 02512150 v 0000 03 + 02 00 + 08 00 + 11 00 | bring into conformity with rules or principles or usage; impose regulations; "We cannot regulate the way people dress"; "This town likes to regulate" -02512005 41 v 01 deregulate 0 004 @ 02564146 v 0000 + 00805337 n 0101 + 00805337 n 0102 ! 02511551 v 0101 01 + 08 00 | lift the regulations on -02512150 41 v 02 zone 0 district 0 003 @ 02511551 v 0000 + 08552138 n 0201 + 08688247 n 0101 01 + 08 00 | regulate housing in; of certain areas of towns -02512305 41 v 03 discriminate c separate 0 single_out 0 012 @ 00650353 v 0000 + 00565289 a 0202 + 00997394 a 0101 + 00065184 a 0101 + 00285148 a 0102 + 01153548 n 0101 + 10012815 n 0102 ~ 00494269 v 0000 ~ 02468465 v 0000 ~ 02482139 v 0000 ~ 02512666 v 0000 ~ 02513460 v 0000 04 + 08 00 + 09 00 + 02 01 + 22 01 | treat differently on the basis of sex or race -02512666 41 v 01 redline 0 001 @ 02512305 v 0000 01 + 08 00 | discriminate in selling or renting housing in certain areas of a neighborhood -02512808 41 v 01 stratify 0 005 @ 00650353 v 0000 + 13939158 n 0101 + 01013604 n 0101 + 08657249 n 0101 $ 02513048 v 0000 02 + 08 00 + 11 00 | divide society into social classes or castes; "Income distribution often stratifies a society" -02513048 41 v 01 stratify 1 004 $ 02512808 v 0000 @ 00109660 v 0000 + 13939158 n 0101 + 01013604 n 0101 01 + 01 00 | develop different social levels, classes, or castes; "Society stratifies when the income gap widens" -02513268 41 v 01 advantage 0 004 @ 02400037 v 0000 + 05142863 n 0101 + 05155821 n 0101 ! 02513460 v 0101 03 + 09 00 + 10 00 + 11 00 | give an advantage to; "This system advantages the rich" -02513460 41 v 03 disadvantage 0 disfavor 0 disfavour 0 007 @ 02512305 v 0000 + 14413644 n 0302 + 14413644 n 0201 + 05161614 n 0101 ! 02513268 v 0101 ~ 01085474 v 0000 ~ 02513742 v 0000 02 + 09 00 + 10 00 | put at a disadvantage; hinder, harm; "This rule clearly disadvantages me" -02513742 41 v 01 prejudice 0 003 @ 02513460 v 0000 ;c 00694681 n 0000 + 06201908 n 0102 02 + 09 00 + 10 00 | disadvantage by prejudice -02513879 41 v 01 aggrieve 0 002 @ 02513989 v 0000 ;c 08441203 n 0000 01 + 09 00 | infringe on the rights of -02513989 41 v 01 wrong 0 007 @ 02514187 v 0000 + 04854604 n 0101 + 00744131 n 0101 ! 02519991 v 0101 ~ 02513879 v 0000 ~ 02517112 v 0000 ~ 02574205 v 0000 01 + 09 00 | treat unjustly; do wrong to -02514187 41 v 03 treat 0 handle 3 do_by 0 018 $ 01033527 v 0000 $ 00651145 v 0000 @ 02376958 v 0000 ~ 00849080 v 0000 ~ 01059564 v 0000 ~ 02513989 v 0000 ~ 02514704 v 0000 ~ 02515080 v 0000 ~ 02515194 v 0000 ~ 02515443 v 0000 ~ 02515583 v 0000 ~ 02515727 v 0000 ~ 02515828 v 0000 ~ 02515934 v 0000 ~ 02516107 v 0000 ~ 02516255 v 0000 ~ 02516594 v 0000 ~ 02570267 v 0000 03 + 05 00 + 08 00 + 09 00 | interact in a certain way; "Do right by her"; "Treat him with caution, please"; "Handle the press reporters gently" -02514704 41 v 01 handle_with_kid_gloves 0 001 @ 02514187 v 0000 02 + 08 00 + 09 00 | handle with great care and sensitivity; "You have to handle the students with kid gloves" -02514881 41 v 01 fall_all_over 0 001 @ 02376958 v 0000 01 + 09 00 | display excessive love or show excessive gratitude towards; "This student falls all over her former professor when she sees him" -02515080 41 v 01 criminalize 2 002 @ 02514187 v 0000 + 09977660 n 0101 02 + 09 00 + 10 00 | treat as a criminal -02515194 41 v 01 nurse 3 002 @ 02514187 v 0000 + 10367409 n 0101 02 + 08 00 + 09 00 | treat carefully; "He nursed his injured back by lying in bed several hours every afternoon"; "He nursed the flowers in his garden and fertilized them regularly" -02515443 41 v 01 strong-arm 0 002 @ 02514187 v 0000 + 10184081 n 0108 01 + 09 00 | handle roughly; "He was strong-armed by the policemen" -02515583 41 v 02 ride_roughshod 0 run_roughshod 0 001 @ 02514187 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | treat inconsiderately or harshly -02515727 41 v 01 upstage 0 001 @ 02514187 v 0000 01 + 09 00 | treat snobbishly, put in one's place -02515828 41 v 01 rough-house 0 001 @ 02514187 v 0000 01 + 09 00 | treat in a rough or boisterous manner -02515934 41 v 02 brutalize 0 brutalise 0 005 @ 02514187 v 0000 + 14574675 n 0202 + 00733317 n 0202 + 14574675 n 0101 + 00733317 n 0101 02 + 08 00 + 09 00 | treat brutally -02516107 41 v 01 do_well_by 0 001 @ 02514187 v 0000 01 + 10 00 | treat with respect and consideration; "children should do well by their parents" -02516255 41 v 05 gloss_over 0 skate_over 0 smooth_over 0 slur_over 0 skimp_over 0 001 @ 02514187 v 0000 03 + 05 00 + 08 00 + 09 00 | treat hurriedly or avoid dealing with properly -02516437 41 v 02 skimp 0 scant 1 002 @ 02413480 v 0000 ^ 02516255 v 0105 01 + 02 00 | work hastily or carelessly; deal with inadequately and superficially -02516594 41 v 06 mistreat 0 maltreat 0 abuse 0 ill-use 0 step 0 ill-treat 0 010 @ 02514187 v 0000 + 00419908 n 0602 + 00419908 n 0403 + 01160584 a 0301 + 00419908 n 0304 + 09758643 n 0301 + 00419908 n 0201 + 09758643 n 0202 + 00418025 n 0101 ~ 02516978 v 0000 03 + 08 00 + 09 00 + 21 05 | treat badly; "This boss abuses his workers"; "She is always stepping on others to get ahead" -02516978 41 v 01 kick_around 0 001 @ 02516594 v 0000 01 + 09 00 | treat badly; abuse; "They won't have me to kick around any more!" -02517112 41 v 01 sandbag 0 001 @ 02513989 v 0000 01 + 09 00 | treat harshly or unfairly -02517202 41 v 03 misbehave 0 misconduct 2 misdemean 0 006 @ 02367363 v 0000 + 00732746 n 0203 + 00735936 n 0101 ! 02519666 v 0101 ~ 02517443 v 0000 ~ 02517655 v 0000 02 + 02 00 + 09 00 | behave badly; "The children misbehaved all morning" -02517443 41 v 01 fall_from_grace 0 001 @ 02517202 v 0000 01 + 02 00 | revert back to bad behavior after a period of good behavior; "The children fell from grace when they asked for several helpings of dessert" -02517655 41 v 02 act_up 0 carry_on 2 001 @ 02517202 v 0000 01 + 02 00 | misbehave badly; act in a silly or improper way; "The children acted up when they were not bored" -02517827 41 v 03 condescend c stoop c lower_oneself c 001 @ 02367363 v 0000 01 + 22 00 | debase oneself morally, act in an undignified, unworthy, or dishonorable way; "I won't stoop to reading other people's mail" -02518043 41 v 01 hugger_mugger 0 002 @ 00010435 v 0000 + 13976731 n 0101 01 + 02 00 | act stealthily or secretively -02518161 41 v 07 behave 1 acquit 0 bear 0 deport 2 conduct 1 comport 1 carry 1 012 @ 01601234 v 0000 @ 02367363 v 0000 + 04910377 n 0602 + 04897762 n 0505 + 01220984 n 0503 + 04897762 n 0406 + 04910377 n 0301 ~ 01791973 v 0000 ~ 02373785 v 0000 ~ 02377764 v 0000 ~ 02518625 v 0000 ~ 02519183 v 0000 01 + 09 00 | behave in a certain manner; "She carried herself well"; "he bore himself with dignity"; "They conducted themselves well during these difficult times" -02518625 41 v 01 walk_around 0 001 @ 02518161 v 0000 01 + 22 00 | behave in a certain manner or have certain properties; "He walks around with his nose in the air"; "She walks around with this strange boyfriend" -02518839 41 v 01 walk 0 001 @ 02519666 v 0000 01 + 22 00 | live or behave in a specified manner; "walk in sadness" -02518956 41 v 01 sauce 0 001 @ 00010435 v 0000 01 + 09 00 | behave saucily or impudently towards -02519055 41 v 01 assert_oneself 0 001 @ 02519666 v 0000 01 + 02 00 | put oneself forward in an assertive and insistent manner -02519183 41 v 02 pose 0 posture 0 004 @ 02518161 v 0000 + 00755673 n 0103 + 04788011 n 0102 ~ 02519494 v 0000 01 + 02 00 | behave affectedly or unnaturally in order to impress others; "Don't pay any attention to him--he is always posing to impress his peers!"; "She postured and made a total fool of herself" -02519494 41 v 02 attitudinize 0 attitudinise 0 004 @ 02519183 v 0000 + 05079866 n 0203 + 00755863 n 0201 + 00755863 n 0101 01 + 02 00 | assume certain affected attitudes -02519666 41 v 02 behave 0 comport 0 006 @ 02367363 v 0000 + 04910377 n 0202 ! 02517202 v 0101 ~ 02518839 v 0000 ~ 02519055 v 0000 ~ 02597968 v 0000 01 + 02 00 | behave well or properly; "The children must learn to behave" -02519890 41 v 01 footle 0 001 @ 00010435 v 0000 01 + 02 00 | act foolishly, as by talking nonsense -02519991 41 v 04 right 0 compensate 0 redress 0 correct 1 011 @ 00126264 v 0000 + 00259177 n 0301 + 13290676 n 0306 + 13282550 n 0201 + 00259643 n 0202 ^ 02672540 v 0201 + 13341756 n 0101 + 05174653 n 0101 ! 02513989 v 0101 ~ 02520360 v 0000 ~ 02520509 v 0000 02 + 08 00 + 09 00 | make reparations or amends for; "right a wrongs done to the victims of the Holocaust" -02520360 41 v 02 over-correct 0 overcompensate 0 001 @ 02519991 v 0000 02 + 02 00 + 08 00 | make excessive corrections for fear of making an error -02520509 41 v 04 expiate 0 aby 0 abye 0 atone c 006 @ 02519991 v 0000 + 13292787 n 0401 + 02940509 a 0102 + 02940509 a 0101 + 13292787 n 0102 + 00095121 n 0101 02 + 08 00 + 22 04 | make amends for; "expiate one's sins" -02520730 41 v 02 make_up 0 catch_up_with 0 003 @ 02249438 v 0000 + 07322769 n 0101 + 07322769 n 0102 01 + 08 00 | make up work that was missed due to absence at a later point; "I have to make up a French exam"; "Can I catch up with the material or is it too late?" -02520997 41 v 02 control 2 verify 0 004 $ 00662589 v 0000 ;c 05999797 n 0000 @ 02531625 v 0000 + 05798569 n 0102 01 + 08 00 | check or regulate (a scientific experiment) by conducting a parallel experiment or comparing with another standard; "Are you controlling for the temperature?" -02521284 41 v 01 indict 0 003 @ 00843468 v 0000 + 07237409 n 0101 + 07235335 n 0101 01 + 09 00 | accuse formally of a crime -02521410 41 v 03 protest 0 resist 2 dissent 0 014 @ 00776059 v 0000 + 00075737 a 0301 + 01177033 n 0303 + 10018021 n 0301 + 00695938 a 0203 + 00695938 a 0202 + 00514175 a 0101 + 01177033 n 0101 + 10018021 n 0103 + 10002760 n 0102 ~ 02412647 v 0000 ~ 02521816 v 0000 ~ 02583139 v 0000 ~ 02583379 v 0000 02 + 02 00 + 22 00 | express opposition through action or words; "dissent to the laws of the country" -02521816 41 v 02 demonstrate 0 march 0 006 @ 02521410 v 0000 + 08428019 n 0201 + 00290579 n 0201 + 01177703 n 0101 + 10002760 n 0101 ~ 02522153 v 0000 02 + 02 00 + 22 00 | march in protest; take part in a demonstration; "Thousands demonstrated against globalization during the meeting of the most powerful economic nations in Seattle" -02522153 41 v 01 picket 0 002 @ 02521816 v 0000 + 10431770 n 0101 02 + 02 00 + 22 00 | serve as pickets or post pickets; "picket a business to protest the layoffs" -02522319 41 v 01 fail c 003 $ 02523521 v 0000 + 07317764 n 0101 + 14462946 n 0101 02 + 08 00 + 22 00 | fall short in what is expected; "She failed in her obligations as a good daughter-in-law"; "We must not fail his obligation to the victims of the Holocaust" -02522581 41 v 06 breeze_through 0 ace 0 pass_with_flying_colors 0 sweep_through 0 sail_through 0 nail 0 002 @ 02525044 v 0000 + 09762509 n 0201 01 + 08 00 | succeed at easily; "She sailed through her exams"; "You will pass with flying colors"; "She nailed her astrophysics course" -02522864 41 v 05 pull_off 0 negociate 2 bring_off 0 carry_off 0 manage 9 002 @ 02524171 v 0000 ! 02599528 v 0501 02 + 08 00 + 28 05 | be successful; achieve a goal; "She succeeded in persuading us all"; "I managed to carry the box upstairs"; "She pulled it off, even though we never thought her capable of it"; "The pianist negociated the difficult runs" -02523221 41 v 02 do 3 manage 2 000 02 + 04 00 + 22 00 | carry on or function; "We could do with a little more help around here" -02523351 41 v 02 pass 4 clear 1 002 @ 02524171 v 0000 ~ 02053490 v 0000 04 + 01 00 + 02 00 + 10 00 + 11 00 | go unchallenged; be approved; "The bill cleared the House" -02523521 41 v 04 fail 1 flunk 0 bomb 0 flush_it 0 005 + 07365193 n 0302 + 00066901 n 0101 ! 02525044 v 0101 $ 02522319 v 0000 $ 02523784 v 0000 02 + 02 00 + 08 00 | fail to get a passing grade; "She studied hard but failed nevertheless"; "Did I fail the test?" -02523784 41 v 01 fail 7 004 $ 02523521 v 0000 @ 00670261 v 0000 + 00066901 n 0101 ! 02523953 v 0101 01 + 09 00 | judge unacceptable; "The teacher failed six students" -02523953 41 v 01 pass 7 005 > 02525044 v 0000 @ 00670261 v 0000 + 07176499 n 0102 + 00065575 n 0101 ! 02523784 v 0101 01 + 09 00 | accept or judge as acceptable; "The teacher passed the student although he was weak" -02524171 41 v 05 succeed 0 win 4 come_through 0 bring_home_the_bacon 0 deliver_the_goods 0 015 * 02530167 v 0000 + 09762821 n 0202 + 09762821 n 0104 ! 02528380 v 0101 ~ 01152396 v 0000 ~ 02522864 v 0000 ~ 02523351 v 0000 ~ 02524739 v 0000 ~ 02524897 v 0000 ~ 02525044 v 0000 ~ 02525312 v 0000 ~ 02525447 v 0000 ~ 02525985 v 0000 ~ 02526085 v 0000 ~ 02585860 v 0000 04 + 01 00 + 02 00 + 22 00 + 28 00 | attain success or reach a desired goal; "The enterprise succeeded"; "We succeeded in getting tickets to the show"; "she struggled to overcome her handicap and won" -02524739 41 v 02 luck_out 0 hit_the_jackpot 0 001 @ 02524171 v 0000 01 + 02 00 | succeed by luck; "I lucked out and found the last parking spot in the lot" -02524897 41 v 03 nail_down 0 nail 1 peg 0 001 @ 02524171 v 0000 01 + 08 00 | succeed in obtaining a position; "He nailed down a spot at Harvard" -02525044 41 v 02 pass 8 make_it 5 005 @ 02524171 v 0000 + 10404426 n 0101 + 00065575 n 0101 ! 02523521 v 0101 ~ 02522581 v 0000 02 + 02 00 + 08 01 | go successfully through a test or a selection process; "She passed the new Jersey Bar Exam and can practice law now" -02525312 41 v 01 run 1 004 @ 02524171 v 0000 ;c 00523513 n 0000 + 00189565 n 0101 + 00558883 n 0101 01 + 08 00 | make without a miss -02525447 41 v 02 work 3 act 6 004 $ 01629589 v 0000 @ 02524171 v 0000 + 01822563 a 0105 + 04599396 n 0101 02 + 01 00 + 04 00 | have an effect or outcome; often the one desired or expected; "The voting process doesn't work as well as people thought"; "How does your idea work in practice?"; "This method doesn't work"; "The breaks of my new car act quickly"; "The medicine works only if you take it with a lot of water" -02525868 41 v 01 overreach 0 001 @ 02528380 v 0000 02 + 02 00 + 09 00 | fail by aiming too high or trying too hard -02525985 41 v 01 pan_out 0 001 @ 02524171 v 0000 01 + 01 00 | be a success; "The idea panned out" -02526085 41 v 04 achieve 0 accomplish 0 attain 0 reach 0 015 @ 02524171 v 0000 + 01822153 a 0301 + 00062806 n 0301 + 00035189 n 0201 + 01821690 a 0102 + 00035189 n 0102 + 09762821 n 0101 ~ 01112364 v 0000 ~ 02022162 v 0000 ~ 02526509 v 0000 ~ 02526811 v 0000 ~ 02526934 v 0000 ~ 02527085 v 0000 ~ 02527294 v 0000 ~ 02527431 v 0000 03 + 08 00 + 11 00 + 26 00 | to gain with effort; "she achieved her goal despite setbacks" -02526509 41 v 01 begin 0 001 @ 02526085 v 0000 01 + 11 00 | achieve or accomplish in the least degree, usually used in the negative; "This economic measure doesn't even begin to deal with the problem of inflation"; "You cannot even begin to understand the problem we had to deal with during the war" -02526811 41 v 02 come_to 0 strike 2 001 @ 02526085 v 0000 02 + 08 00 + 11 00 | attain; "The horse finally struck a pace" -02526934 41 v 01 culminate 0 003 @ 02526085 v 0000 + 15291199 n 0102 + 06373747 n 0102 02 + 04 00 + 22 00 | reach the highest or most decisive point -02527085 41 v 01 compass 0 004 @ 02526085 v 0000 ;u 07073447 n 0000 + 05623628 n 0101 + 05125377 n 0105 02 + 08 00 + 11 00 | bring about; accomplish; "This writer attempts more than his talents can compass" -02527294 41 v 01 average 0 002 @ 02526085 v 0000 + 06021761 n 0101 02 + 08 00 + 11 00 | achieve or reach on average; "He averaged a C" -02527431 41 v 03 wangle 0 finagle 0 manage 8 005 @ 02526085 v 0000 + 10089615 n 0201 + 05906554 n 0101 + 10089615 n 0102 + 05906554 n 0102 02 + 02 00 + 14 00 | achieve something by means of trickery or devious methods -02527651 41 v 18 botch 0 bodge 0 bumble 0 fumble 0 botch_up 0 muff 0 blow 0 flub 0 screw_up 0 ball_up 0 spoil 2 muck_up 0 bungle 0 fluff 0 bollix 0 bollix_up 0 bollocks 0 bollocks_up 0 bobble 0 mishandle 0 louse_up 0 foul_up 0 mess_up 0 fuck_up 0 017 @ 02528380 v 0000 + 00074790 n 1807 + 00075618 n 1704 + 00074790 n 1606 + 00076072 n 0e01 + 00074790 n 0d04 + 09879744 n 0d01 + 01263018 n 0b01 + 01263018 n 0b03 + 01263018 n 0b02 + 00075618 n 0a01 + 01134699 n 0901 + 00074790 n 0808 + 09879744 n 0403 + 09879744 n 0304 + 09879744 n 0107 + 00074790 n 0109 02 + 02 00 + 08 00 | make a mess of, destroy or ruin; "I botched the dinner and we had to eat out"; "the pianist screwed up the difficult passage in the second movement" -02528380 41 v 03 fail 0 go_wrong 0 miscarry 0 014 + 07319652 n 0301 + 00066636 n 0101 + 14477877 n 0101 + 10273064 n 0101 + 07317764 n 0101 ! 02524171 v 0101 ~ 00669528 v 0000 ~ 02022659 v 0000 ~ 02525868 v 0000 ~ 02527651 v 0000 ~ 02528833 v 0000 ~ 02528985 v 0000 ~ 02529162 v 0000 ~ 02530003 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be unsuccessful; "Where do today's public schools fail?"; "The attempt to rescue the hostages failed miserably" -02528833 41 v 01 strike_out 0 001 @ 02528380 v 0000 01 + 02 00 | be unsuccessful in an endeavor; "The candidate struck out with his health care plan" -02528985 41 v 01 fall 2 003 @ 02528380 v 0000 + 00067707 n 0102 + 07427728 n 0101 01 + 02 00 | suffer defeat, failure, or ruin; "We must stand or fall"; "fall by the wayside" -02529162 41 v 01 shipwreck 1 002 @ 02528380 v 0000 + 07478718 n 0101 01 + 02 00 | suffer failure, as in some enterprise -02529284 41 v 02 fail 2 neglect 0 008 + 04665813 n 0202 + 00066397 n 0101 ~ 00595306 v 0000 ~ 01509280 v 0000 ~ 02253766 v 0000 ~ 02529669 v 0000 ~ 02529896 v 0000 ~ 02613672 v 0000 01 + 28 00 | fail to do something; leave something undone; "She failed to notice that her child was no longer in his crib"; "The secretary failed to call the customer and the company lost the account" -02529669 41 v 01 choke 3 002 @ 02529284 v 0000 + 09919899 n 0101 01 + 02 00 | fail to perform adequately due to tension or agitation; "The team should have won hands down but choked, disappointing the coach and the audience" -02529896 41 v 01 muff 1 002 @ 02529284 v 0000 + 00075912 n 0102 01 + 08 00 | fail to catch, as of a ball -02530003 41 v 04 fall_through 0 fall_flat 0 founder 0 flop 0 002 @ 02528380 v 0000 + 07365024 n 0401 01 + 01 00 | fail utterly; collapse; "The project foundered" -02530167 41 v 05 try 0 seek 0 attempt 0 essay 0 assay 0 016 @ 02367363 v 0000 + 00787218 n 0401 + 10728998 n 0403 + 00786195 n 0301 + 10728998 n 0302 + 00786195 n 0105 + 10728998 n 0101 ^ 02531625 v 0104 ~ 00950206 v 0000 ~ 02407338 v 0000 ~ 02530770 v 0000 ~ 02530936 v 0000 ~ 02531199 v 0000 ~ 02532458 v 0000 ~ 02544348 v 0000 ~ 02545578 v 0000 03 + 08 00 + 28 00 + 02 01 | make an effort or attempt; "He tried to shake off his fears"; "The infant had essayed a few wobbly steps"; "The police attempted to stop the thief"; "He sought to improve himself"; "She always seeks to do good in the world" -02530770 41 v 02 have_a_go 0 give_it_a_try 1 001 @ 02530167 v 0000 01 + 02 00 | make an attempt at something; "I never sat on a horse before but I'll give it a go" -02530936 41 v 01 grope 0 002 @ 02530167 v 0000 + 00141027 n 0101 01 + 28 00 | search blindly or uncertainly; "His mind groped to make the connection" -02531088 41 v 02 take_pains 0 be_at_pains 0 001 @ 02531199 v 0000 01 + 28 00 | try very hard to do something -02531199 41 v 03 endeavor 0 endeavour 0 strive 0 009 @ 02530167 v 0000 + 00788766 n 0301 + 00786195 n 0204 + 00796886 n 0203 + 00786195 n 0103 + 00796886 n 0102 ~ 01505058 v 0000 ~ 02531088 v 0000 ~ 02531500 v 0000 01 + 28 00 | attempt by employing effort; "we endeavor to make our customers happy" -02531500 41 v 01 buck 1 001 @ 02531199 v 0000 01 + 22 00 | to strive with determination; "John is bucking for a promotion" -02531625 41 v 06 test 0 prove 3 try 1 try_out 0 examine 0 essay 1 013 @ 00670261 v 0000 + 07197021 n 0501 + 05787005 n 0502 + 00636461 n 0501 + 10068234 n 0501 + 05799212 n 0404 + 10728998 n 0301 + 00794367 n 0302 + 05799212 n 0103 + 00639975 n 0101 ~ 02520997 v 0000 ~ 02532079 v 0000 ~ 02532261 v 0000 01 + 08 00 | put to the test, as for its quality, or give experimental use to; "This approach has been tried with good results"; "Test this recipe" -02532079 41 v 01 float 3 001 @ 02531625 v 0000 02 + 08 00 + 11 00 | circulate or discuss tentatively; test the waters with; "The Republicans are floating the idea of a tax reform" -02532261 41 v 01 field-test 0 002 @ 02531625 v 0000 + 05799581 n 0102 01 + 08 00 | test something under the conditions under which it will actually be used; "The Army field tested the new tanks" -02532458 41 v 02 give_it_a_whirl 0 give_it_a_try 0 002 @ 02530167 v 0000 ;u 07075172 n 0000 01 + 02 00 | try; "let's give it a whirl!" -02532595 41 v 01 experiment 1 007 @ 00789138 v 0000 + 05798043 n 0102 + 00639556 n 0102 + 05798043 n 0101 + 00639556 n 0101 + 09617577 n 0101 $ 02532886 v 0000 02 + 02 00 + 22 00 | to conduct a test or investigation; "We are experimenting with the new drug in order to fight this disease" -02532886 41 v 02 experiment 2 try_out 5 002 $ 02532595 v 0000 + 05798043 n 0102 01 + 02 00 | try something new, as in order to gain experience; "Students experiment sexually"; "The composer experimented with a new style" -02533109 41 v 02 screen 1 test 1 001 @ 02533282 v 0000 02 + 08 00 + 09 00 | test or examine for the presence of disease or infection; "screen the blood for the HIV virus" -02533282 41 v 01 check 4 005 @ 02131279 v 0000 + 05825245 n 0103 ~ 02533109 v 0000 ~ 02533508 v 0000 ~ 02533597 v 0000 01 + 22 00 | make an examination or investigation; "check into the rumor"; "check the time of the class" -02533508 41 v 01 countercheck 0 001 @ 02533282 v 0000 01 + 08 00 | check a second time -02533597 41 v 02 breathalyze 0 breathalyse 0 001 @ 02533282 v 0000 01 + 09 00 | test someone's alcohol level in his blood by means of a breathalyzer -02533748 41 v 02 democratize 1 democratise 1 003 @ 00126264 v 0000 + 08361329 n 0101 + 06217103 n 0101 01 + 01 00 | introduce democratic reforms; of nations -02533907 41 v 02 democratize 0 democratise 0 003 @ 00109660 v 0000 + 08361329 n 0101 + 06217103 n 0101 01 + 08 00 | become (more) democratic; of nations -02534062 41 v 06 waive 0 relinquish 0 forgo 0 forego 0 foreswear 0 dispense_with 0 002 + 00213694 n 0102 ~ 01196524 v 0000 01 + 08 00 | do without or cease to hold or adhere to; "We are dispensing with formalities"; "relinquish the old ideas" -02534307 41 v 01 dispense 0 003 @ 02564146 v 0000 + 01142014 n 0101 ^ 02534062 v 0106 01 + 20 00 | grant a dispensation; grant an exemption; "I was dispensed from this terrible task" -02534492 41 v 04 woo 0 court 0 romance 0 solicit 0 008 @ 02367363 v 0000 + 06371267 n 0302 + 13931436 n 0302 + 07188685 n 0203 + 10674130 n 0103 + 07188685 n 0102 ~ 02535093 v 0000 ~ 02535227 v 0000 01 + 09 00 | make amorous advances towards; "John is courting Mary" -02534761 41 v 01 court a 002 @ 02367363 v 0000 + 07188685 n 0103 02 + 02 00 + 09 00 | engage in social activities leading to marriage; "We were courting for over ten years" -02534936 41 v 02 woo 1 court 1 002 + 01229223 n 0201 + 10674130 n 0103 04 + 08 00 + 09 00 + 10 00 + 11 00 | seek someone's favor; "China is wooing Russia" -02535093 41 v 02 chase 0 chase_after 0 002 @ 02534492 v 0000 + 00319939 n 0102 01 + 09 00 | pursue someone sexually or romantically -02535227 41 v 01 display 0 001 @ 02534492 v 0000 01 + 02 00 | attract attention by displaying some body part or posing; of animals -02535360 41 v 02 take_the_stage 0 take_stage 0 000 01 + 02 00 | attract attention onto oneself -02535457 41 v 03 secede 0 splinter 0 break_away 0 003 @ 02431320 v 0000 + 00385266 n 0301 + 00384933 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | withdraw from an organization or communion; "After the break up of the Soviet Union, many republics broke away" -02535716 41 v 02 break 1 break_away 1 002 @ 02431320 v 0000 + 15271008 n 0103 02 + 04 00 + 22 00 | interrupt a continued activity; "She had broken with the traditional patterns" -02535896 41 v 01 neutralize 0 003 @ 00126264 v 0000 + 00234423 n 0101 ~ 02536098 v 0000 02 + 08 00 + 11 00 | make politically neutral and thus inoffensive; "The treaty neutralized the small republic" -02536098 41 v 01 co-opt 3 001 @ 02535896 v 0000 02 + 09 00 + 10 00 | neutralize or win over through assimilation into an established group; "We co-opted the independent minority tribes by pulling them into the Northern Alliance" -02536329 41 v 03 manipulate 0 pull_strings 0 pull_wires 0 003 @ 02536557 v 0000 + 00149461 a 0101 + 00158185 n 0101 02 + 08 00 + 09 00 | influence or control shrewdly or deviously; "He manipulated public opinion in his favor" -02536557 41 v 03 influence 0 act_upon 0 work a 016 @ 00137313 v 0000 + 10461747 n 0101 + 11414608 n 0101 + 05692910 n 0101 + 05194151 n 0101 ~ 00680145 v 0000 ~ 02430922 v 0000 ~ 02431129 v 0000 ~ 02536329 v 0000 ~ 02537092 v 0000 ~ 02537238 v 0000 ~ 02581073 v 0000 ~ 02586121 v 0000 ~ 02586371 v 0000 ~ 02603299 v 0000 ~ 02646931 v 0000 05 + 08 00 + 09 00 + 10 00 + 11 00 + 22 03 | have and exert influence or effect; "The artist's work influenced the young painter"; "She worked on her friends to support the political candidate" -02537092 41 v 02 color 0 colour 2 002 @ 02536557 v 0000 + 14984973 n 0204 01 + 11 00 | modify or bias; "His political ideas color his lectures" -02537238 41 v 02 swing 1 swing_over 0 001 @ 02536557 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | influence decisively; "This action swung many votes over to his side" -02537407 41 v 02 betray 0 sell 0 005 $ 02235666 v 0000 @ 02575082 v 0000 + 10206173 n 0102 + 00749767 n 0102 ~ 02537812 v 0000 02 + 08 00 + 09 00 | deliver to an enemy by treachery; "Judas sold Jesus"; "The spy betrayed his country" -02537642 41 v 01 fall_for 0 001 @ 00617748 v 0000 02 + 08 00 + 09 00 | be deceived, duped, or entrapped by; "He fell for her charms"; "He fell for the con man's story" -02537812 41 v 01 double_cross 0 004 @ 02537407 v 0000 + 10027590 n 0101 + 00749991 n 0102 + 00749991 n 0101 01 + 09 00 | betray by double-dealing -02537960 41 v 01 place 0 003 @ 02391803 v 0000 + 00586262 n 0107 + 08559508 n 0102 01 + 20 00 | assign to (a job or a home) -02538086 41 v 04 bind 1 tie 1 attach 3 bond d 007 @ 02458103 v 0000 + 13792183 n 0402 + 07545161 n 0301 + 01212882 n 0301 + 13930385 n 0203 ~ 02538365 v 0000 ~ 02588677 v 0000 02 + 10 00 + 22 04 | create social or emotional ties; "The grandparents want to bond with the child" -02538365 41 v 01 fixate 0 002 @ 02538086 v 0000 + 05700401 n 0102 01 + 22 00 | attach (oneself) to a person or thing in a neurotic way; "He fixates on his mother, even at the age of 40" -02538553 41 v 02 uproot 0 deracinate 0 002 @ 02013571 v 0000 + 00315830 n 0202 02 + 09 00 + 10 00 | move (people) forcibly from their homeland into a new and foreign environment; "The war uprooted many people" -02538765 41 v 04 intervene 0 step_in 0 interfere 0 interpose 0 006 @ 02376958 v 0000 + 06661562 n 0302 + 10213034 n 0101 + 01240210 n 0101 ~ 02539101 v 0000 ~ 02591736 v 0000 02 + 02 00 + 22 00 | get involved, so as to alter or hinder an action, or through force or threat of force; "Why did the U.S. not intervene earlier in WW II?" -02539101 41 v 02 meddle 0 tamper 0 004 @ 02538765 v 0000 + 00201516 n 0202 + 10305192 n 0101 + 00201516 n 0101 02 + 02 00 + 22 00 | intrude in other people's affairs or business; interfere unwantedly; "Don't meddle in my affairs!" -02539334 41 v 02 dominate 0 master 0 009 @ 02441022 v 0000 + 10388440 n 0202 + 14442530 n 0202 + 01128655 n 0201 + 00791227 a 0101 + 14442530 n 0101 + 05196582 n 0105 ~ 00751887 v 0000 ~ 02496816 v 0000 03 + 08 00 + 09 00 + 10 00 | have dominance or the power to defeat over; "Her pain completely mastered her"; "The methods can master the problems" -02539686 41 v 02 undertake 0 take_in_charge 0 001 @ 00797697 v 0000 01 + 08 00 | accept as a charge -02539788 41 v 05 rear 0 raise 0 bring_up 0 nurture 0 parent 0 013 > 02540347 v 0000 + 10399491 n 0501 + 14425414 n 0502 + 13813765 n 0501 + 08101937 n 050b + 01129532 n 0405 + 04922113 n 0403 + 04922113 n 0201 + 04922113 n 0102 + 01129532 n 0107 ~ 02540151 v 0000 ~ 02540262 v 0000 ~ 02540569 v 0000 01 + 09 00 | bring up; "raise a family"; "bring up children" -02540151 41 v 01 fledge 0 001 @ 02539788 v 0000 01 + 11 00 | feed, care for, and rear young birds for flight -02540262 41 v 01 cradle 0 001 @ 02539788 v 0000 01 + 09 00 | bring up from infancy -02540347 41 v 01 grow_up 0 002 @ 00250181 v 0000 ~ 02540445 v 0000 01 + 02 00 | become an adult -02540445 41 v 01 come_of_age 0 001 @ 02540347 v 0000 01 + 02 00 | reach a certain age that marks a transition to maturity -02540569 41 v 01 foster 1 001 @ 02539788 v 0000 01 + 09 00 | bring up under fosterage; of children -02540670 41 v 05 serve 1 attend_to 1 wait_on 0 attend 0 assist 1 009 @ 02547586 v 0000 + 01207609 n 0502 + 09821831 n 0401 + 09821831 n 0402 + 10582154 n 0101 + 10583250 n 0101 ~ 02541138 v 0000 ~ 02592776 v 0000 $ 02593107 v 0000 02 + 09 00 + 17 00 | work for or be a servant to; "May I serve you?"; "She attends the old lady in the wheelchair"; "Can you wait on our table, please?"; "Is a salesperson assisting you?"; "The minister served the King for many years" -02541138 41 v 01 valet 0 002 @ 02540670 v 0000 + 10745332 n 0101 01 + 09 00 | serve as a personal attendant to -02541251 41 v 02 service 0 serve 0 003 @ 01525666 v 0000 + 08186047 n 0101 $ 02670890 v 0000 04 + 04 00 + 10 00 + 11 00 + 28 00 | be used by; as of a utility; "The sewage plant served the neighboring communities"; "The garage served to shelter his horses" -02541509 41 v 01 represent 0 005 @ 01095218 v 0000 + 00716562 a 0101 + 14000403 n 0101 + 08337108 n 0101 + 01217499 n 0101 02 + 08 00 + 09 00 | be a delegate or spokesperson for; represent somebody's interest or be a proxy or substitute for, as of politicians and office holders representing their constituents, or of a tenant representing other tenants in a housing dispute; "I represent the silent majority" -02541921 41 v 01 represent 2 004 @ 02604760 v 0000 + 02469407 a 0101 ~ 02155799 v 0000 ~ 02542141 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | be representative or typical for; "This period is represented by Beethoven" -02542141 41 v 01 speak_for 0 001 @ 02541921 v 0000 02 + 08 00 + 10 00 | be a spokesperson for; "He represents the Government's position" -02542280 41 v 03 comply 0 follow 0 abide_by 0 009 @ 02542795 v 0000 + 04641153 n 0103 + 01203676 n 0103 + 00696518 a 0101 $ 00351406 v 0000 ~ 00885925 v 0000 $ 02346895 v 0000 ~ 02542706 v 0000 ~ 02668956 v 0000 04 + 02 00 + 22 00 + 08 03 + 08 02 | act in accordance with someone's rules, commands, or wishes; "He complied with my instructions"; "You must comply or else!"; "Follow these simple rules"; "abide by the rules" -02542706 41 v 01 toe_the_line 0 001 @ 02542280 v 0000 01 + 02 00 | do what is expected -02542795 41 v 01 obey 0 009 @ 00150287 v 0000 + 01612053 a 0101 + 01167146 n 0102 + 04906273 n 0101 + 01167146 n 0101 ! 02543181 v 0101 ~ 02542280 v 0000 ~ 02543023 v 0000 ~ 02571901 v 0000 02 + 08 00 + 09 00 | be obedient to -02543023 41 v 01 take_orders 0 001 @ 02542795 v 0000 01 + 16 00 | receive and be expected to follow directions or commands; "I don't take orders from you!" -02543181 41 v 01 disobey 0 008 @ 00797430 v 0000 + 02330762 a 0101 + 01613463 a 0101 + 01179707 n 0101 ! 02542795 v 0101 ~ 02543482 v 0000 ~ 02543607 v 0000 ~ 02583545 v 0000 02 + 08 00 + 09 00 | refuse to go along with; refuse to follow; be disobedient; "He disobeyed his supervisor and was fired" -02543482 41 v 01 sit_in 0 002 @ 02543181 v 0000 + 01178850 n 0101 01 + 02 00 | participate in an act of civil disobedience -02543607 41 v 06 sabotage 0 undermine 0 countermine 0 counteract 1 subvert 1 weaken 0 003 @ 02543181 v 0000 + 01244895 n 0101 ~ 02012043 v 0000 01 + 08 00 | destroy property or hinder normal operations; "The Resistance sabotaged railroad operations during the war" -02543874 41 v 04 counteract 3 countervail 0 neutralize 2 counterbalance 0 006 @ 02717831 v 0000 + 13291189 n 0401 + 00233386 n 0301 + 00042837 a 0101 + 00233386 n 0103 ~ 02544191 v 0000 01 + 08 00 | oppose and mitigate the effects of by contrary actions; "This will counteract the foolish actions of my colleagues" -02544191 41 v 01 override 0 002 @ 02543874 v 0000 + 00231567 n 0102 01 + 08 00 | counteract the normal operation of (an automatic gear shift in a vehicle) -02544348 41 v 08 gamble 0 chance 0 risk 1 hazard 0 take_chances 0 adventure 1 run_a_risk 0 take_a_chance 0 011 @ 02530167 v 0000 + 00796315 n 0601 + 10072708 n 0602 + 09606009 n 0601 + 14541852 n 0401 + 00802238 n 0301 + 00802629 n 0201 + 00802962 n 0101 + 10119200 n 0101 ~ 02544781 v 0000 ~ 02544937 v 0000 03 + 26 00 + 02 07 + 22 07 | take a risk in the hope of a favorable outcome; "When you buy these stocks you are gambling" -02544781 41 v 01 go_for_broke 0 001 @ 02544348 v 0000 01 + 02 00 | risk everything in one big effort; "the cyclist went for broke at the end of the race" -02544937 41 v 02 luck_it 0 luck_through 0 001 @ 02544348 v 0000 01 + 02 00 | act by relying on one's luck -02545045 41 v 01 dare 1 003 @ 02367363 v 0000 + 07231532 n 0101 + 04858785 n 0102 02 + 02 00 + 32 00 | to be courageous enough to try or do something; "I don't dare call him", "she dares to dress differently from the others" -02545272 41 v 05 venture 0 hazard 1 adventure 0 stake 0 jeopardize 0 009 @ 02545578 v 0000 + 14541852 n 0502 + 13343526 n 0401 + 00796315 n 0301 + 09606009 n 0301 + 14541852 n 0201 + 13342692 n 0102 + 01117164 n 0101 + 09606009 n 0102 01 + 08 00 | put at risk; "I will stake my good reputation for this" -02545578 41 v 03 risk 0 put_on_the_line 0 lay_on_the_line 0 005 @ 02530167 v 0000 + 00802238 n 0101 + 14541852 n 0104 ~ 02545272 v 0000 ~ 02545939 v 0000 02 + 08 00 + 33 00 | expose to a chance of loss or damage; "We risked losing a lot of money in this venture"; "Why risk your life?"; "She laid her job on the line when she told the boss that he was wrong" -02545939 41 v 01 bell_the_cat 0 001 @ 02545578 v 0000 01 + 02 00 | take a risk; perform a daring act; "Who is going to bell the cat?" -02546075 41 v 03 honor 0 honour 0 reward 1 011 @ 02546467 v 0000 + 07295629 n 0302 + 06696483 n 0204 + 14436875 n 0202 + 14436875 n 0101 + 06696483 n 0103 + 10183757 n 0101 ! 02547225 v 0101 ~ 01175467 v 0000 ~ 02546876 v 0000 ~ 02547046 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | bestow honor or rewards upon; "Today we honor our soldiers"; "The scout was rewarded for courageous action" -02546467 41 v 02 recognize 1 recognise 1 003 @ 02256109 v 0000 ~ 02546075 v 0000 ~ 02546710 v 0000 02 + 08 00 + 09 00 | show approval or appreciation of; "My work is not recognized by anybody!"; "The best student was recognized by the Dean" -02546710 41 v 01 rubricate 3 001 @ 02546467 v 0000 01 + 09 00 | place in the church calendar as a red-letter day honoring a saint; "She was rubricated by the pope" -02546876 41 v 02 ennoble 1 dignify 0 002 @ 02546075 v 0000 + 04886881 n 0201 03 + 08 00 + 10 00 + 11 00 | confer dignity or honor upon; "He was dignified with a title" -02547046 41 v 01 decorate 0 002 @ 02546075 v 0000 + 06706676 n 0101 01 + 09 00 | award a mark of honor, such as a medal, to; "He was decorated for his services in the military" -02547225 41 v 05 dishonor 0 disgrace 0 dishonour 0 attaint 0 shame 0 009 + 14440137 n 0501 + 07506569 n 0501 + 04873939 n 0302 + 14439447 n 0302 + 14440137 n 0202 + 04873939 n 0101 + 14439447 n 0101 ! 02546075 v 0101 ~ 00492410 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring shame or dishonor upon; "he dishonored his family by committing a serious crime" -02547586 41 v 03 help 0 assist 2 aid 0 021 @ 02556126 v 0000 + 05154908 n 0301 + 01196276 a 0201 + 09815790 n 0201 + 01207609 n 0202 + 01207609 n 0203 + 09815790 n 0102 + 09608709 n 0102 + 09815790 n 0103 + 05154908 n 0103 + 01207609 n 0104 ~ 00518395 v 0000 ~ 02540670 v 0000 ~ 02548219 v 0000 ~ 02548422 v 0000 ~ 02548588 v 0000 ~ 02548710 v 0000 ~ 02548893 v 0000 ~ 02549048 v 0000 ~ 02550296 v 0000 ~ 02552052 v 0000 06 + 01 00 + 02 00 + 08 00 + 09 00 + 10 00 + 28 01 | give help or assistance; be of service; "Everyone helped out during the earthquake"; "Can you help me carry this table?"; "She never helps around the house" -02548219 41 v 01 benefact 0 003 @ 02547586 v 0000 + 13270260 n 0101 + 01226679 n 0102 02 + 08 00 + 09 00 | help as a benefactor; "The father benefacted his daughter in more ways than she was aware of" -02548422 41 v 01 help_out 2 001 @ 02547586 v 0000 01 + 02 00 | be of help, as in a particular situation of need; "Can you help out tonight with the dinner guests?" -02548588 41 v 01 subserve 0 003 @ 02547586 v 0000 + 01196775 a 0103 + 14529835 n 0101 01 + 11 00 | be helpful or useful -02548710 41 v 02 succor 0 succour 0 005 @ 02547586 v 0000 + 10671898 n 0202 + 01209220 n 0203 + 10671898 n 0101 + 01209220 n 0102 02 + 09 00 + 10 00 | help in a difficult situation -02548893 41 v 02 expedite 0 hasten 0 001 @ 02547586 v 0000 02 + 08 00 + 11 00 | speed up the progress of; facilitate; "This should expedite the process" -02549048 41 v 01 avail 0 002 @ 02547586 v 0000 + 05149832 n 0101 02 + 10 00 + 11 00 | be of use to, be useful to; "It will avail them to dispose of their booty" -02549211 41 v 01 abet 0 005 @ 02414710 v 0000 + 07251619 n 0101 + 07251619 n 0102 + 09756049 n 0101 + 09756049 n 0102 01 + 09 00 | assist or encourage, usually in some wrongdoing -02549392 41 v 01 minister c 003 @ 02549581 v 0000 + 01197207 a 0101 + 01209220 n 0104 01 + 12 00 | attend to the wants and needs of others; "I have to minister to my mother all the time" -02549581 41 v 04 attend c take_care b look d see e 004 @ 02550296 v 0000 + 00654885 n 0102 ~ 02549392 v 0000 ~ 02549847 v 0000 01 + 22 00 | take charge of or deal with; "Could you see about lunch?"; "I must attend to this matter"; "She took care of this business" -02549847 41 v 01 tend 0 005 @ 02549581 v 0000 + 09821831 n 0103 + 00654885 n 0104 ~ 01740969 v 0000 ~ 02550044 v 0000 02 + 20 00 + 21 00 | have care of or look after; "She tends to the children" -02550044 41 v 01 shepherd 0 002 @ 02549847 v 0000 + 10587605 n 0102 01 + 08 00 | tend as a shepherd, as of sheep or goats -02550168 41 v 01 shepherd 1 001 @ 01129337 v 0000 02 + 08 00 + 09 00 | watch over like a shepherd, as a teacher of her pupils -02550296 41 v 02 care d give_care 0 006 @ 02547586 v 0000 + 00654885 n 0101 ~ 01186844 v 0000 ~ 02549581 v 0000 ~ 02550516 v 0000 ~ 02550698 v 0000 01 + 22 00 | provide care for; "The nurse was caring for the wounded" -02550516 41 v 03 mother 0 fuss 0 overprotect 0 003 @ 02550296 v 0000 + 00555138 n 0205 + 10332385 n 0101 02 + 09 00 + 22 02 | care for like a mother; "She fusses over her husband" -02550698 41 v 01 nurse 0 004 @ 02550296 v 0000 + 10366966 n 0101 + 08112976 n 0101 + 00665079 n 0101 01 + 09 00 | serve as a nurse; care for sick or handicapped people -02550868 41 v 04 salvage 0 salve 0 relieve 0 save 1 008 @ 02551144 v 0000 + 10522759 n 0403 + 00096513 n 0201 + 13247554 n 0201 + 00096343 n 0201 + 00096343 n 0101 + 13247554 n 0101 + 10549510 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | save from ruin, destruction, or harm -02551144 41 v 02 rescue 0 deliver 1 008 @ 02551832 v 0000 + 10553805 n 0204 + 00093483 n 0203 + 00093483 n 0202 + 00093483 n 0101 + 10553805 n 0103 ~ 02550868 v 0000 ~ 02551390 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | free from harm or evil -02551390 41 v 01 reprieve 0 002 @ 02551144 v 0000 + 14446034 n 0101 02 + 08 00 + 09 00 | relieve temporarily -02551501 41 v 01 redeem 0 001 @ 02426799 v 0000 02 + 08 00 + 11 00 | restore the honor or worth of -02551602 41 v 03 deliver 3 redeem 4 save 2 008 ;c 08081668 n 0000 + 01130733 a 0201 + 03109399 a 0201 + 03109399 a 0203 + 00094001 n 0201 + 11083656 n 0209 + 11083656 n 010a + 10553805 n 0104 02 + 09 00 + 10 00 | save from sins -02551832 41 v 04 save 0 carry_through 0 pull_through 0 bring_through 0 002 + 10553805 n 0101 ~ 02551144 v 0000 03 + 08 00 + 09 00 + 10 00 | bring into safety; "We pulled through most of the victims of the bomb attack" -02552052 41 v 01 bootstrap 0 001 @ 02547586 v 0000 01 + 09 00 | help oneself, often through improvised means -02552163 41 v 01 rehabilitate 0 003 @ 02552449 v 0000 + 01903412 a 0101 + 00400645 n 0101 01 + 09 00 | help to readapt, as to a former state of health or good repute; "The prisoner was successfully rehabilitated"; "After a year in the mental clinic, the patient is now rehabilitated" -02552449 41 v 02 restore 1 reconstruct 4 010 @ 01631072 v 0000 + 00585856 a 0201 + 00268557 n 0101 + 10514962 n 0103 + 14424517 n 0102 ~ 01389607 v 0000 ~ 02552163 v 0000 ~ 02552829 v 0000 ~ 02553002 v 0000 ~ 02553262 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | return to its original or usable and functioning condition; "restore the forest to its original pristine condition" -02552829 41 v 01 rehabilitate 3 004 @ 02552449 v 0000 + 00585856 a 0102 + 00700260 n 0101 + 00269018 n 0103 01 + 08 00 | restore to a state of good condition or operation -02553002 41 v 01 defibrillate 0 003 @ 02552449 v 0000 + 03171635 n 0101 + 00698959 n 0101 01 + 08 00 | stop the fibrillation and restore normal contractions, usually by means of electric shocks; "The patient's heart had to be defibrillated to save his life" -02553262 41 v 01 reinstate 0 004 @ 02552449 v 0000 + 13944914 n 0101 + 00401459 n 0101 ~ 02565272 v 0000 02 + 08 00 + 09 00 | restore to the previous state or rank -02553428 41 v 03 discipline 0 correct 0 sort_out 0 005 @ 02499629 v 0000 + 00634862 a 0201 + 01300661 a 0201 + 01161821 n 0202 + 01161821 n 0101 01 + 09 00 | punish in order to gain control or enforce obedience; "The teacher disciplined the pupils rather frequently" -02553697 41 v 04 discipline 1 train 2 check 2 condition 0 007 $ 02387034 v 0000 @ 00253761 v 0000 + 09953178 n 0401 + 01146039 n 0302 + 10722385 n 0201 + 05662876 n 0101 ~ 01802070 v 0000 02 + 08 00 + 09 00 | develop (children's) behavior by instruction and practice; especially to teach self-control; "Parents must discipline their children"; "Is this dog trained?" -02554066 41 v 01 prostitute 0 004 @ 02242464 v 0000 + 00748155 n 0101 + 10485440 n 0101 ~ 02554235 v 0000 02 + 02 00 + 09 01 | sell one's body; exchange sex for money -02554235 41 v 02 street-walk 0 streetwalk 0 002 @ 02554066 v 0000 + 10663315 n 0201 01 + 02 00 | walk the streets in search of customers; "The prostitute is street-walking every night" -02554422 41 v 02 foster 0 further 1 005 @ 02554922 v 0000 + 07251984 n 0202 + 07252206 n 0102 + 07252206 n 0101 + 01129532 n 0103 02 + 08 00 + 11 00 | promote the growth of; "Foster our children's well-being and education" -02554647 41 v 01 spur 0 002 @ 02554922 v 0000 + 07252378 n 0107 02 + 08 00 + 11 00 | incite or stimulate; "The Academy was formed to spur research" -02554797 41 v 01 brevet 0 002 @ 02397637 v 0000 + 06471069 n 0101 01 + 09 00 | promote somebody by brevet, in the military -02554922 41 v 05 promote 1 advance 1 boost 0 further 0 encourage 0 017 @ 02556126 v 0000 + 01211019 n 0502 + 07251984 n 0402 + 10677713 n 0305 + 10482220 n 0302 + 01211339 n 0301 + 07357388 n 0203 + 00866987 a 0101 + 07251984 n 0101 + 00249780 n 0103 ~ 02417389 v 0000 ~ 02554422 v 0000 ~ 02554647 v 0000 ~ 02555434 v 0000 ~ 02555684 v 0000 ~ 02555787 v 0000 ~ 02555908 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | contribute to the progress or growth of; "I am promoting the use of computers in the classroom" -02555434 41 v 01 help c 005 @ 02554922 v 0000 + 09815790 n 0102 + 09608709 n 0102 + 05154908 n 0103 + 01207609 n 0104 02 + 08 00 + 11 00 | contribute to the furtherance of; "This money will help the development of literacy in developing countries" -02555684 41 v 01 carry c 001 @ 02554922 v 0000 01 + 08 00 | take further or advance; "carry a cause" -02555787 41 v 01 feed 0 001 @ 02554922 v 0000 02 + 08 00 + 11 00 | support or promote; "His admiration fed her vanity" -02555908 41 v 03 contribute c lead c conduce c 004 @ 02554922 v 0000 + 00323426 a 0301 + 00323426 a 0103 + 00323426 a 0104 01 + 04 00 | be conducive to; "The use of computers in the classroom lead to better writing" -02556126 41 v 02 support 0 back_up 0 011 + 01213886 n 0202 + 02354537 a 0101 + 05693919 n 0101 + 10407954 n 0103 + 09815790 n 0104 ~ 02220148 v 0000 ~ 02466134 v 0000 ~ 02547586 v 0000 ~ 02554922 v 0000 ~ 02556729 v 0000 ~ 02556817 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | give moral or psychological support, aid, or courage to; "She supported him during the illness"; "Her children always backed her up" -02556537 41 v 01 carry 6 002 @ 02672540 v 0000 $ 01218084 v 0000 01 + 09 00 | compensate for a weaker partner or member by one's own performance; "I resent having to carry her all the time" -02556729 41 v 01 undergird 0 001 @ 02556126 v 0000 01 + 10 00 | lend moral support to -02556817 41 v 04 second 0 back 1 endorse 2 indorse 2 011 @ 02556126 v 0000 + 10670668 n 0403 + 07180372 n 0404 + 07248060 n 0301 + 01215168 n 0301 + 10670668 n 0302 + 01213886 n 0201 + 07180372 n 0101 + 07180372 n 0102 + 10568443 n 0101 $ 02453889 v 0000 01 + 08 00 | give support or one's approval to; "I'll second that motion"; "I can't back this plan"; "endorse a new project" -02557199 41 v 07 obstruct 0 blockade 0 block 0 hinder 0 stymie 0 stymy 0 embarrass 0 013 @ 02452885 v 0000 + 05691376 n 0501 + 05689249 n 0401 + 14507951 n 0302 + 01074694 n 0301 + 01074498 n 0101 + 10349243 n 0103 + 10349243 n 0102 ~ 01034932 v 0000 ~ 02466496 v 0000 ~ 02557638 v 0000 ~ 02557790 v 0000 ~ 02557902 v 0000 02 + 08 00 + 11 00 | hinder or prevent the progress or accomplishment of; "His brother blocked him at every turn" -02557638 41 v 01 check e 002 @ 02557199 v 0000 + 00562935 n 0101 02 + 09 00 + 10 00 | block or impede (a player from the opposing team) in ice hockey -02557790 41 v 01 hang 3 001 @ 02557199 v 0000 02 + 08 00 + 09 00 | prevent from reaching a verdict, of a jury -02557902 41 v 01 bottleneck 0 001 @ 02557199 v 0000 02 + 08 00 + 11 00 | slow down or impede by creating an obstruction; "His laziness has bottlenecked our efforts to reform the system" -02558090 41 v 01 spike 0 001 @ 02503803 v 0000 01 + 08 00 | stand in the way of -02558172 41 v 09 thwart 0 queer 0 spoil 0 scotch 0 foil 0 cross 0 frustrate 0 baffle 0 bilk 1 014 @ 02452885 v 0000 + 01764745 a 0702 + 07518663 n 0701 + 07540866 n 0701 + 00067990 n 0701 + 14477667 n 0601 ^ 02537812 v 0601 + 00067990 n 0503 + 10349243 n 0105 + 00067990 n 0102 ~ 01798936 v 0000 ~ 02558703 v 0000 ~ 02558811 v 0000 ~ 02558951 v 0000 02 + 08 00 + 11 00 | hinder or prevent (the efforts, plans, or desires) of; "What ultimately frustrated every challenger was Ruth's amazing September surge"; "foil your opponent" -02558703 41 v 01 dash 0 001 @ 02558172 v 0000 01 + 11 00 | destroy or break; "dashed ambitions and hopes" -02558811 41 v 01 short-circuit 0 001 @ 02558172 v 0000 02 + 08 00 + 11 00 | hamper the progress of; impede; "short-circuit warm feelings" -02558951 41 v 01 ruin 0 006 @ 02558172 v 0000 + 07318133 n 0102 + 10008716 n 0102 ~ 02559199 v 0000 ~ 02559395 v 0000 ~ 02559613 v 0000 02 + 08 00 + 11 00 | destroy or cause to fail; "This behavior will ruin your chances of winning the election" -02559199 41 v 01 undo 0 003 @ 02558951 v 0000 + 10008716 n 0103 + 10737717 n 0101 02 + 09 00 + 10 00 | cause the ruin or downfall of; "A single mistake undid the President and he had to resign" -02559395 41 v 01 break 9 002 @ 02558951 v 0000 ! 00891038 v 0101 02 + 08 00 + 11 00 | cause the failure or ruin of; "His peccadilloes finally broke his marriage"; "This play will either make or break the playwright" -02559613 41 v 01 shipwreck 0 002 @ 02558951 v 0000 + 07478718 n 0101 02 + 08 00 + 09 00 | ruin utterly; "You have shipwrecked my career" -02559752 41 v 04 stop 0 halt 0 block 1 kibosh 0 007 @ 02452885 v 0000 + 01074694 n 0301 + 01063697 n 0202 + 07365849 n 0202 + 01076046 n 0101 ~ 02452758 v 0000 ~ 02560021 v 0000 01 + 08 00 | stop from happening or developing; "Block his election"; "Halt the process" -02560021 41 v 01 stay 0 002 @ 02559752 v 0000 + 06542267 n 0101 01 + 08 00 | stop a judicial process; "The judge stayed the execution order" -02560164 41 v 03 enforce 0 implement 0 apply 6 007 @ 02506546 v 0000 + 01834812 a 0301 + 01127019 n 0101 + 10161867 n 0102 ! 02564146 v 0101 ~ 02563327 v 0000 ~ 02563860 v 0000 01 + 08 00 | ensure observance of laws and rules; "Apply the rules to everyone"; -02560424 41 v 02 enforce 1 impose 0 002 @ 02506546 v 0000 + 01127019 n 0101 01 + 08 00 | compel to behave in a certain way; "Social relations impose courtesy" -02560585 41 v 02 make 0 do 1 002 $ 01755816 v 0000 ~ 02568999 v 0000 01 + 08 00 | engage in; "make love, not war"; "make an effort"; "do research"; "do nothing"; "make revolution" -02560767 41 v 01 effect f 007 @ 02367363 v 0000 + 11410625 n 0102 + 10046527 n 0101 + 10046527 n 0102 ~ 02560999 v 0000 ~ 02561168 v 0000 ~ 02561846 v 0000 02 + 08 00 + 11 00 | act so as to bring into existence; "effect a change" -02560999 41 v 01 bring_to_bear 0 001 @ 02560767 v 0000 02 + 08 00 + 11 00 | bring into operation or effect; "The new members brought to bear new concerns to the U.N." -02561168 41 v 01 carry 0 002 @ 02560767 v 0000 + 00318735 n 0101 01 + 08 00 | extend to a certain degree; "carry too far"; "She carries her ideas to the extreme" -02561332 41 v 03 practice 1 apply 1 use 4 008 $ 01158872 v 0000 + 05149978 n 0301 + 00413239 n 0303 + 01975448 a 0201 + 00949134 n 0201 + 00631378 n 0101 + 00410247 n 0101 ~ 02561697 v 0000 01 + 08 00 | avail oneself to; "apply a principle"; "practice a religion"; "use care when going down the stairs"; "use your common sense"; "practice non-violent resistance" -02561697 41 v 01 follow b 001 @ 02561332 v 0000 01 + 08 00 | adhere to or practice; "These people still follow the laws of their ancient religion" -02561846 41 v 01 backdate 0 001 @ 02560767 v 0000 01 + 08 00 | make effective from an earlier date; "The increase in tax was backdated to January" -02561995 41 v 02 do 4 perform 0 008 @ 01640855 v 0000 + 09767197 n 0102 ~ 02562235 v 0000 ~ 02562425 v 0000 ~ 02562585 v 0000 ~ 02563014 v 0000 ~ 02563120 v 0000 ~ 02595383 v 0000 02 + 08 00 + 09 00 | get (something) done; "I did my job" -02562235 41 v 01 overachieve 0 002 @ 02561995 v 0000 + 00047356 n 0101 01 + 02 00 | perform better or achieve a greater degree of success than expected; "His daughter always overachieves" -02562425 41 v 01 turn a 003 @ 02561995 v 0000 + 10733574 n 0101 $ 01584450 v 0000 01 + 08 00 | accomplish by rotating; "turn a somersault"; "turn cartwheels" -02562585 41 v 02 underachieve 0 underperform 0 005 @ 02561995 v 0000 + 10736394 n 0202 + 08076578 n 0201 + 00047550 n 0101 + 10736394 n 0101 02 + 01 00 + 02 00 | perform less well or with less success than expected; "John consistently underachieves, although he is very able"; "My stocks underperformed last year" -02562901 41 v 01 give 0 001 @ 00983824 v 0000 02 + 08 00 + 11 00 | emit or utter; "Give a gulp"; "give a yelp" -02563014 41 v 01 misdo 0 001 @ 02561995 v 0000 01 + 08 00 | do wrongly or improperly; "misdo one's job" -02563120 41 v 04 go_all_out 0 give_one's_best 0 do_one's_best 0 give_full_measure 0 001 @ 02561995 v 0000 02 + 01 00 + 02 00 | perform a task as well as possible; "The cast gives full measure every night" -02563327 41 v 02 run 0 execute 4 004 @ 02560164 v 0000 + 03017922 a 0201 $ 01717169 v 0000 ~ 02563616 v 0000 02 + 08 00 + 11 00 | carry out a process or program, as on a computer or a machine; "Run the dishwasher"; "run a new program on the Mac"; "the computer executed the instruction" -02563616 41 v 01 step 1 001 @ 02563327 v 0000 01 + 08 00 | cause (a computer) to execute a single command -02563724 41 v 03 dispatch 0 discharge 0 complete 0 001 @ 01640855 v 0000 01 + 08 00 | complete or carry out; "discharge one's duties" -02563860 41 v 01 execute 3 005 @ 02560164 v 0000 + 03017922 a 0101 + 06554078 n 0101 + 10070219 n 0101 ~ 02564052 v 0000 01 + 08 00 | carry out the legalities of; "execute a will or a deed" -02564052 41 v 01 give a 001 @ 02563860 v 0000 01 + 08 00 | execute and deliver; "Give bond" -02564146 41 v 03 exempt 0 relieve 2 free 7 007 + 14528873 n 0101 ! 02560164 v 0101 ~ 02510071 v 0000 ~ 02512005 v 0000 ~ 02534307 v 0000 ~ 02564426 v 0000 ~ 02564674 v 0000 01 + 20 00 | grant relief or an exemption from a rule or requirement to; "She exempted me from the exam" -02564426 41 v 01 forgive 0 001 @ 02564146 v 0000 02 + 08 00 + 14 00 | absolve from payment; "I forgive you your debt" -02564546 41 v 01 throne 1 003 @ 02586619 v 0000 + 00605023 n 0101 + 04429376 n 0101 01 + 02 00 | sit on the throne as a ruler -02564674 41 v 01 spare 1 001 @ 02564146 v 0000 02 + 14 00 + 20 00 | save or relieve from an experience or action; "I'll spare you from having to apologize formally" -02564841 41 v 03 antagonize 0 antagonise 0 counteract 0 002 @ 02367363 v 0000 + 13860548 n 0201 01 + 09 00 | act in opposition to -02564973 41 v 02 countercheck 1 counteract 2 001 @ 02510337 v 0000 01 + 08 00 | oppose or check by a counteraction -02565090 41 v 01 purge 0 003 @ 02585489 v 0000 ! 02565272 v 0101 + 00216834 n 0101 01 + 09 00 | oust politically; "Deng Xiao Ping was purged several times throughout his lifetime" -02565272 41 v 01 rehabilitate 1 004 @ 02553262 v 0000 + 01241997 n 0101 + 00400645 n 0101 ! 02565090 v 0101 01 + 09 00 | reinstall politically; "Deng Xiao Ping was rehabilitated several times throughout his lifetime" -02565491 41 v 04 anticipate 0 foresee 0 forestall 0 counter 0 004 @ 02367363 v 0000 + 01079042 n 0302 + 00122245 a 0101 + 09797113 n 0101 01 + 08 00 | act in advance of; deal with ahead of time -02565687 41 v 03 sin 0 transgress 2 trespass 2 006 @ 02566528 v 0000 + 00745005 n 0201 + 00757080 n 0101 + 10601078 n 0101 + 00757080 n 0102 ~ 02565911 v 0000 01 + 02 00 | commit a sin; violate a law of God or a moral law -02565911 41 v 01 fall 1 005 @ 02566092 v 0000 @ 02565687 v 0000 + 07478531 n 0101 + 00756919 n 0101 $ 02566092 v 0000 01 + 02 00 | yield to temptation or sin; "Adam and Eve fell" -02566092 41 v 01 fall f 003 $ 02565911 v 0000 + 00756919 n 0101 ~ 02565911 v 0000 01 + 02 00 | lose one's chastity; "a fallen woman" -02566227 41 v 05 drop_the_ball 0 sin 1 blunder 0 boob 0 goof 0 006 @ 02566528 v 0000 + 10157744 n 0502 + 10039391 n 0404 + 09879744 n 0302 + 00074790 n 0301 + 09930876 n 0503 03 + 02 00 + 22 00 + 08 03 | commit a faux pas or a fault or make a serious mistake; "I blundered during the job interview" -02566528 41 v 07 transgress 0 offend 0 infract 0 violate 0 go_against 0 breach 0 break 0 019 @ 02457825 v 0000 ! 02578872 v 0702 + 00068901 n 0601 + 02510446 a 0401 + 01631386 a 0402 + 10754449 n 0401 + 00770270 n 0303 + 01631386 a 0201 + 01627965 a 0203 + 09633969 n 0202 + 00766234 n 0205 + 00745005 n 0101 + 10285762 n 0101 + 00766234 n 0202 ~ 02565687 v 0000 ~ 02566227 v 0000 ~ 02567147 v 0000 ~ 02567422 v 0000 ~ 02571251 v 0000 01 + 08 00 | act in disregard of laws, rules, contracts, or promises; "offend all laws of humanity"; "violate the basic laws or human civilization"; "break a law"; "break a promise" -02567147 41 v 04 conflict b run_afoul b infringe 0 contravene 0 005 @ 02566528 v 0000 + 01170813 n 0402 + 00770543 n 0302 + 00770270 n 0305 + 13980845 n 0101 01 + 22 00 | go against, as of rules and laws; "He ran afoul of the law"; "This behavior conflicts with our rules" -02567422 41 v 01 trespass 0 002 @ 02566528 v 0000 + 00734482 n 0101 01 + 02 00 | break the law -02567519 41 v 07 rape 0 ravish 0 violate 1 assault 3 dishonor 2 dishonour 2 outrage 0 011 @ 01120069 v 0000 + 00425090 n 0701 + 14439447 n 0501 + 01629349 a 0401 + 00773402 n 0302 + 10754281 n 0301 + 00773402 n 0204 + 10754281 n 0203 + 00773402 n 0101 + 10507230 n 0101 ~ 02567917 v 0000 01 + 09 00 | force (someone) to have sex against their will; "The woman was raped on her way home at night" -02567917 41 v 01 gang-rape 0 001 @ 02567519 v 0000 01 + 09 00 | rape (someone) successively with several attackers; "The prisoner was gang-raped" -02568065 41 v 04 desecrate 0 profane 0 outrage 1 violate 2 006 @ 01120069 v 0000 + 01631386 a 0402 + 00746232 n 0402 + 00733483 n 0403 + 00746587 n 0201 + 00746587 n 0102 01 + 08 00 | violate the sacred character of a place or language; "desecrate a cemetery"; "violate the sanctity of the church"; "profane the name of God" -02568392 41 v 03 sodomize 0 sodomise 0 bugger 0 005 @ 01428853 v 0000 + 00849294 n 0302 + 10621514 n 0304 + 00849294 n 0201 + 00849294 n 0101 01 + 09 00 | practice anal sex upon -02568572 41 v 02 sodomize 1 sodomise 1 001 @ 01428853 v 0000 01 + 08 00 | copulate with an animal -02568672 41 v 04 practice 0 practise 0 exercise 0 do 2 004 * 02410855 v 0000 + 00947128 n 0306 + 00631378 n 0101 ~ 02568884 v 0000 01 + 08 00 | carry out or practice; as of jobs and professions; "practice law" -02568884 41 v 02 shamanize 0 shamanise 0 002 @ 02568672 v 0000 + 10626194 n 0101 01 + 02 00 | practice shamanism -02568999 41 v 02 overdo 0 exaggerate 0 005 @ 02560585 v 0000 + 00367552 n 0201 ~ 00857407 v 0000 ~ 02569235 v 0000 ~ 02569396 v 0000 01 + 08 00 | do something to an excessive degree; "He overdid it last night when he did 100 pushups" -02569235 41 v 01 oversimplify 0 002 @ 02568999 v 0000 + 01212037 n 0101 02 + 02 00 + 08 00 | simplify to an excessive degree; "Don't oversimplify the problem" -02569396 41 v 01 overleap 0 001 @ 02568999 v 0000 01 + 09 00 | defeat (oneself) by going too far -02569495 41 v 01 molest 0 002 @ 01120069 v 0000 + 00773047 n 0101 01 + 09 00 | harass or assault sexually; make indecent advances to -02569630 41 v 03 undertake 1 tackle 0 take_on 0 002 @ 00812298 v 0000 ~ 01155545 v 0000 01 + 08 00 | accept as a challenge; "I'll tackle this difficult task" -02569790 41 v 04 impinge a encroach a entrench 0 trench a 004 @ 02570062 v 0000 + 00157957 n 0202 + 00157957 n 0101 + 07339329 n 0102 02 + 08 00 + 11 00 | impinge or infringe upon; "This impinges on my rights as an individual"; "This matter entrenches on other domains" -02570062 41 v 02 trespass c take_advantage c 002 @ 02600490 v 0000 ~ 02569790 v 0000 01 + 22 00 | make excessive use of; "You are taking advantage of my good will!"; "She is trespassing upon my privacy" -02570267 41 v 09 pamper 0 featherbed 0 cosset 0 cocker 0 baby 0 coddle 0 mollycoddle 0 spoil 1 indulge 0 010 @ 02514187 v 0000 + 01073241 n 0902 + 01073241 n 0901 + 10395390 n 0802 + 10395390 n 0704 + 10327583 n 0701 + 10395390 n 0603 + 09827683 n 0501 + 10395390 n 0101 + 01073241 n 0103 01 + 09 00 | treat with excessive indulgence; "grandparents often pamper the children"; "Let's not mollycoddle our students!" -02570684 41 v 02 break_in 0 break b 003 @ 02571251 v 0000 + 00785263 n 0102 ~ 02571067 v 0000 03 + 08 00 + 22 02 + 02 01 | enter someone's (virtual or real) property in an unauthorized manner, usually with the intent to steal or commit a violent act; "Someone broke in while I was on vacation"; "They broke into my car and stole my radio!"; "who broke into my account last night?" -02571067 41 v 01 crack 0 002 @ 02570684 v 0000 + 09974278 n 0101 01 + 08 00 | gain unauthorized access computers with malicious intentions; "she cracked my password"; "crack a safe" -02571251 41 v 02 trespass 1 intrude 0 007 @ 02566528 v 0000 + 00733483 n 0204 + 10213652 n 0201 + 00733483 n 0101 + 10213652 n 0103 ^ 02570062 v 0101 ~ 02570684 v 0000 02 + 02 00 + 22 00 | enter unlawfully on someone's property; "Don't trespass on my land!" -02571511 41 v 04 burglarize 0 burglarise 0 burgle 0 heist 0 007 * 02570684 v 0000 @ 02321757 v 0000 + 00781912 n 0402 + 00783063 n 0401 + 00785045 n 0301 + 09880741 n 0201 + 00785045 n 0101 02 + 08 00 + 09 00 | commit a burglary; enter and rob a dwelling -02571768 41 v 01 condition 1 002 @ 00829107 v 0000 + 05752921 n 0101 03 + 08 00 + 09 00 + 24 00 | establish a conditioned response -02571901 41 v 03 heed 0 mind 0 listen b 004 @ 02542795 v 0000 + 00882159 n 0301 + 05703956 n 0201 + 05702726 n 0102 03 + 08 00 + 09 00 + 22 03 | pay close attention to; give heed to; "Heed the advice of the old men" -02572119 41 v 0f victimize 3 swindle 0 rook 0 goldbrick 1 nobble 0 diddle 0 bunco 0 defraud 0 scam 0 mulct 0 gyp 0 gip 0 hornswoggle 0 short-change 1 con 0 011 @ 02573275 v 0000 + 00779248 n 0f05 + 00779248 n 0b09 + 09955015 n 0906 + 00754280 n 0901 + 09955015 n 0802 + 00779248 n 0701 + 09955015 n 0201 + 00780148 n 0201 + 00418903 n 0102 ~ 02572667 v 0000 02 + 09 00 + 20 00 | deprive of by deceit; "He swindled me out of my inheritance"; "She defrauded the customers who trusted her"; "the cashier gypped me when he gave me too little change" -02572667 41 v 02 short-change 0 short 0 001 @ 02572119 v 0000 01 + 09 00 | cheat someone by not returning him enough money -02572792 41 v 01 bilk 0 001 @ 02573275 v 0000 02 + 09 00 + 18 00 | cheat somebody out of what is due, especially money -02572913 41 v 01 job 2 001 @ 02574516 v 0000 01 + 02 00 | profit privately from public office and official business -02573031 41 v 01 shark 0 001 @ 02574516 v 0000 01 + 02 00 | play the shark; act with trickery -02573127 41 v 02 rig 0 set_up 1 002 @ 02574516 v 0000 + 00780148 n 0103 01 + 08 00 | arrange the outcome of by means of deceit; "rig an election" -02573275 41 v 03 cheat 0 rip_off 0 chisel 1 017 * 02575082 v 0000 @ 02574205 v 0000 + 09955015 n 0304 + 09955015 n 0303 + 00783063 n 0202 + 00754424 n 0101 + 09998101 n 0103 + 00754424 n 0102 ~ 02241497 v 0000 ~ 02288656 v 0000 ~ 02319050 v 0000 ~ 02572119 v 0000 ~ 02572792 v 0000 ~ 02573853 v 0000 ~ 02573958 v 0000 ~ 02574072 v 0000 ~ 02578235 v 0000 03 + 02 00 + 09 00 + 18 00 | deprive somebody of something by deceit; "The con-man beat me out of $50"; "This salesman ripped us off!"; "we were cheated by their clever-sounding scheme"; "They chiseled me out of my money" -02573853 41 v 02 beat 3 bunk 0 001 @ 02573275 v 0000 01 + 08 00 | avoid paying; "beat the subway fare" -02573958 41 v 01 whipsaw 0 001 @ 02573275 v 0000 01 + 09 00 | victimize, especially in gambling or negotiations -02574072 41 v 02 welsh 0 welch 0 002 @ 02573275 v 0000 + 10773527 n 0102 01 + 02 00 | cheat by avoiding payment of a gambling debt -02574205 41 v 02 victimize 1 victimise 1 011 @ 02513989 v 0000 + 00418903 n 0203 + 10752719 n 0202 + 10752480 n 0201 + 10752093 n 0201 + 14477509 n 0101 + 10752719 n 0101 + 10752480 n 0101 + 10752093 n 0101 ~ 02573275 v 0000 ~ 02575082 v 0000 01 + 09 00 | make a victim of; "I was victimized by this con-man" -02574516 41 v 02 cheat 1 chisel 0 012 @ 02575082 v 0000 + 09955015 n 0204 + 09955015 n 0203 + 09998101 n 0102 + 09998101 n 0103 + 00754424 n 0102 ~ 02572913 v 0000 ~ 02573031 v 0000 ~ 02573127 v 0000 ~ 02574874 v 0000 ~ 02574977 v 0000 ~ 02576921 v 0000 01 + 02 00 | engage in deceitful behavior; practice trickery or fraud; "Who's chiseling on the side?" -02574874 41 v 01 cozen 0 002 @ 02574516 v 0000 + 00754280 n 0102 01 + 02 00 | act with artful deceit -02574977 41 v 01 crib 0 002 @ 02574516 v 0000 + 06347225 n 0103 01 + 02 00 | use a crib, as in an exam -02575082 41 v 04 deceive 0 lead_on 0 delude 0 cozen 1 019 @ 02574205 v 0000 + 01942507 a 0301 + 01938975 a 0302 + 14376855 n 0301 + 05896733 n 0301 + 00754767 n 0301 + 01938975 a 0101 + 01224253 a 0101 + 06758225 n 0103 + 00752431 n 0101 ~ 02537407 v 0000 ~ 02574516 v 0000 ~ 02575536 v 0000 ~ 02575723 v 0000 ~ 02576349 v 0000 ~ 02576503 v 0000 ~ 02577586 v 0000 ~ 02578008 v 0000 ~ 02593001 v 0000 02 + 09 00 + 10 00 | be false to; be dishonest with -02575536 41 v 01 shill 0 002 @ 02575082 v 0000 + 10589402 n 0101 01 + 02 00 | act as a shill; "The shill bid for the expensive carpet during the auction in order to drive the price up" -02575723 41 v 08 flim-flam 0 play_a_joke_on 1 play_tricks 0 trick 0 fob 0 fox 0 pull_a_fast_one_on 0 play_a_trick_on 0 008 @ 02575082 v 0000 + 10022759 n 0602 + 00171618 n 0401 + 10463714 n 0404 + 06760722 n 0401 + 00752954 n 0401 + 00779248 n 010c ~ 02578384 v 0000 02 + 09 00 + 30 04 | deceive somebody; "We tricked the teacher into thinking that class would be cancelled next week" -02576110 41 v 01 freelance 0 006 @ 02410855 v 0000 + 10110421 n 0102 + 00863823 a 0101 + 10110421 n 0104 + 10110421 n 0103 + 10110421 n 0101 01 + 02 00 | work independently and on temporary contracts rather than for a long-term employer -02576349 41 v 03 fool 0 gull 0 befool 0 004 @ 02575082 v 0000 + 09921409 n 0203 + 09921409 n 0102 + 10100761 n 0101 01 + 09 00 | make a fool or dupe of -02576503 41 v 05 cheat_on 0 cheat 9 cuckold 0 betray 1 wander 0 004 @ 02575082 v 0000 + 09982152 n 0301 ~ 02576790 v 0000 ~ 02598642 v 0000 03 + 09 00 + 02 05 + 02 02 | be sexually unfaithful to one's partner in marriage; "She cheats on her husband"; "Might her husband be wandering?" -02576790 41 v 01 two-time 0 001 @ 02576503 v 0000 01 + 02 00 | carry on a romantic relationship with two people at the same time -02576921 41 v 07 fudge 0 manipulate 1 fake 0 falsify 0 cook 0 wangle 1 misrepresent 0 014 @ 02574516 v 0000 + 06758225 n 0701 + 05906554 n 0601 + 10089615 n 0602 ^ 01634424 v 0503 + 00751145 n 0401 + 00750890 n 0401 + 13960464 n 0401 + 10076957 n 0401 + 03318438 n 0301 + 10201535 n 0304 + 10201535 n 0305 + 00752298 n 0301 ~ 02577391 v 0000 03 + 08 00 + 02 02 + 02 01 | tamper, with the purpose of deception; "Fudge the figures"; "cook the books"; "falsify the data" -02577391 41 v 01 juggle 1 003 @ 02576921 v 0000 + 00338994 n 0101 + 00338994 n 0102 01 + 08 00 | manipulate by or as if by moving around components; "juggle an account so as to hide a deficit" -02577586 41 v 03 hoax 0 pull_someone's_leg 0 play_a_joke_on 0 003 @ 02575082 v 0000 + 00753685 n 0104 + 10463714 n 0105 01 + 09 00 | subject to a playful hoax or joke -02577755 41 v 01 decoy 0 002 @ 00782527 v 0000 + 02776205 n 0102 01 + 09 00 | lure or entrap with or as if with a decoy -02577877 41 v 01 bait 0 003 @ 00782527 v 0000 + 05695232 n 0101 + 02776205 n 0101 01 + 09 00 | lure, entice, or entrap with bait -02578008 41 v 04 ensnare 0 entrap 0 frame 0 set_up 0 003 @ 02575082 v 0000 + 00751398 n 0402 + 01199035 n 0201 01 + 09 00 | take or catch as if in a snare or trap; "I was set up!"; "The innocent man was framed by the police" -02578235 41 v 03 juggle 2 beguile 0 hoodwink 0 003 @ 02573275 v 0000 + 09998101 n 0205 + 00754118 n 0101 02 + 09 00 + 02 01 | influence by slyness -02578384 41 v 01 snooker 0 001 @ 02575723 v 0000 01 + 09 00 | fool or dupe; "He was snookered by the con-man's smooth talk" -02578510 41 v 03 observe 2 celebrate 1 keep 5 010 + 07450651 n 0201 + 00516086 n 0201 + 00428000 n 0201 + 09902954 n 0201 + 09902954 n 0202 + 01395821 a 0102 + 07450842 n 0104 ~ 00612612 v 0000 ~ 01797204 v 0000 ~ 02579247 v 0000 01 + 08 00 | behave as expected during of holidays or rites; "Keep the commandments"; "celebrate Christmas"; "Observe Yom Kippur" -02578872 41 v 02 observe 4 keep 3 004 + 01205010 n 0201 ! 02566528 v 0207 + 01204419 n 0102 ~ 02579140 v 0000 01 + 08 00 | conform one's action or practice to; "keep appointments"; "she never keeps her promises"; "We kept to the original conditions of the contract" -02579140 41 v 01 make_good 0 001 @ 02578872 v 0000 01 + 08 00 | act as promised; "make good on promises" -02579247 41 v 02 solemnize 0 solemnise 0 003 @ 02578510 v 0000 + 00516086 n 0203 + 00516086 n 0102 01 + 08 00 | observe or perform with dignity or gravity; "The King solemnized this day of morning" -02579447 41 v 0b corrupt 0 pervert 0 subvert 3 demoralize 0 demoralise 0 debauch 0 debase 0 profane 1 vitiate 0 deprave 0 misdirect 0 023 @ 00126264 v 0000 + 04850996 n 0a03 + 04850996 n 0a04 + 00273319 n 0801 + 00271263 n 0702 + 10257647 n 0602 + 10754281 n 0602 + 00511212 n 0603 + 00511212 n 0602 + 00272713 n 0502 + 00272713 n 0401 + 00272448 n 0302 + 01132366 a 0202 + 10419047 n 0201 + 00621207 a 0101 + 01132366 a 0101 + 00272448 n 0101 ~ 00133978 v 0000 ~ 02580237 v 0000 ~ 02580392 v 0000 ~ 02580678 v 0000 ~ 02580853 v 0000 ~ 02581276 v 0000 02 + 09 00 + 10 00 | corrupt morally or by intemperance or sensuality; "debauch the young people with wine and women"; "Socrates was accused of corrupting young men"; "Do school counselors subvert young children?"; "corrupt the morals" -02580237 41 v 01 infect 2 001 @ 02579447 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | corrupt with ideas or an ideology; "society was infected by racism" -02580392 41 v 02 lead_off 0 lead_astray 0 001 @ 02579447 v 0000 01 + 09 00 | teach immoral behavior to; "It was common practice to lead off the young ones, and teach them bad habits" -02580577 41 v 01 whore 0 002 @ 02413480 v 0000 + 10485440 n 0103 01 + 02 00 | work as a prostitute -02580678 41 v 01 poison 0 002 @ 02579447 v 0000 + 05166397 n 0101 02 + 08 00 + 10 00 | spoil as if by poison; "poison someone's mind"; "poison the atmosphere in the office" -02580853 41 v 02 bastardize 0 bastardise 0 005 @ 02579447 v 0000 + 00272303 n 0202 + 02804772 n 0201 + 00272303 n 0101 + 02804772 n 0101 01 + 08 00 | change something so that its value declines; for example, art forms -02581073 41 v 03 blackmail 0 blackjack 0 pressure 1 005 @ 02536557 v 0000 + 05195362 n 0301 + 14451349 n 0305 + 00784598 n 0101 + 09858299 n 0101 01 + 09 00 | exert pressure on someone through threats -02581276 41 v 01 suborn 0 003 @ 02579447 v 0000 + 07252967 n 0101 + 09874260 n 0102 01 + 09 00 | incite to commit a crime or an evil deed; "He suborned his butler to cover up the murder of his wife" -02581477 41 v 01 prosecute 0 003 + 01198307 n 0101 + 10484858 n 0101 ! 02581675 v 0101 01 + 09 00 | bring a criminal action against (in a trial); "The State of California prosecuted O.J. Simpson" -02581675 41 v 02 defend 0 represent 6 004 + 01217499 n 0201 + 09762101 n 0101 + 08064523 n 0102 ! 02581477 v 0101 02 + 08 00 + 09 00 | be the defense counsel for someone in a trial; "Ms. Smith will represent the defendant" -02581900 41 v 01 prosecute 1 003 @ 02367363 v 0000 + 01198307 n 0101 + 10484858 n 0101 01 + 02 00 | conduct a prosecution in a court of law -02582042 41 v 04 action 0 sue 0 litigate 0 process 0 009 @ 00868591 v 0000 + 06556692 n 0402 + 01186810 n 0301 + 01182654 n 0202 + 10672192 n 0201 + 01370864 a 0101 + 01181902 n 0102 ~ 02438730 v 0000 $ 02582450 v 0000 02 + 09 00 + 02 02 | institute legal proceedings against; file a suit against; "He was warned that the district attorney would process him"; "She actioned the company for discrimination" -02582450 41 v 01 litigate 1 005 $ 02582042 v 0000 @ 00868591 v 0000 + 01186810 n 0101 + 10266848 n 0101 + 10266848 n 0102 01 + 02 00 | engage in legal proceedings -02582615 41 v 03 perpetrate 0 commit 0 pull 0 008 @ 02367363 v 0000 + 00625427 n 0301 + 00773235 n 0202 + 00773235 n 0203 + 00773235 n 0101 + 10417168 n 0101 ~ 02582921 v 0000 ~ 02583041 v 0000 01 + 08 00 | perform an act, usually with a negative connotation; "perpetrate a crime"; "pull a bank robbery" -02582921 41 v 01 make d 001 @ 02582615 v 0000 01 + 08 00 | carry out or commit; "make a mistake"; "commit a faux-pas" -02583041 41 v 01 recommit 1 001 @ 02582615 v 0000 01 + 08 00 | commit once again, as of a crime -02583139 41 v 04 rebel 0 arise 0 rise 0 rise_up 0 006 @ 02521410 v 0000 + 00962129 n 0304 + 10210137 n 0104 + 00962129 n 0101 ~ 02583780 v 0000 ~ 02583958 v 0000 02 + 02 00 + 22 00 | take part in a rebellion; renounce a former allegiance -02583379 41 v 02 rebel 1 renegade 0 004 @ 02521410 v 0000 + 10520544 n 0201 + 10303654 n 0102 + 01177327 n 0101 02 + 02 00 + 22 00 | break with established customs -02583545 41 v 04 resist 0 balk 0 baulk 0 jib 0 008 @ 02543181 v 0000 + 09833997 n 0302 + 09833997 n 0201 + 00695938 a 0103 + 00695938 a 0102 + 09773245 n 0105 + 10349243 n 0104 + 01169317 n 0101 02 + 02 00 + 22 00 | refuse to comply -02583780 41 v 01 revolt 0 003 @ 02583139 v 0000 + 00962129 n 0103 + 00962722 n 0101 02 + 02 00 + 22 00 | make revolution; "The people revolted when bread prices tripled again" -02583958 41 v 01 mutiny 0 003 @ 02583139 v 0000 + 10342180 n 0101 + 00963896 n 0101 01 + 02 00 | engage in a mutiny against an authority -02584097 41 v 02 defect 0 desert 0 009 * 02521410 v 0000 @ 02075462 v 0000 + 00204439 n 0203 + 10007109 n 0201 + 10006842 n 0201 + 14413411 n 0103 + 00055315 n 0103 + 10006842 n 0102 ~ 02584475 v 0000 02 + 02 00 + 22 00 | desert (a cause, a country or an army), often in order to join the opposing cause, country, or army; "If soldiers deserted Hitler's army, they were shot" -02584475 41 v 01 rat 0 003 @ 02584097 v 0000 + 10539715 n 0103 + 10007109 n 0106 02 + 08 00 + 09 00 | desert one's party or group of friends, for example, for one's personal advantage -02584661 41 v 01 riot 0 005 @ 02584906 v 0000 + 13977043 n 0102 + 01170502 n 0101 + 10532058 n 0101 + 13977043 n 0101 01 + 02 00 | take part in a riot; disturb the public peace by engaging in a riot; "Students were rioting everywhere in 1968" -02584906 41 v 01 rampage 0 003 @ 02367363 v 0000 + 00554541 n 0101 ~ 02584661 v 0000 01 + 02 00 | act violently, recklessly, or destructively -02585050 41 v 03 agitate 0 foment 0 stir_up 0 005 @ 00794079 v 0000 + 00156625 n 0201 + 09778783 n 0202 + 09778783 n 0101 ~ 02585259 v 0000 04 + 02 00 + 08 00 + 09 00 + 10 00 | try to stir up public opinion -02585259 41 v 01 rumpus 0 002 @ 02585050 v 0000 + 00553823 n 0105 01 + 02 00 | cause a disturbance -02585360 41 v 01 connive c 002 @ 00804139 v 0000 + 06689125 n 0101 01 + 08 00 | encourage or assent to illegally or criminally -02585489 41 v 02 persecute 0 oppress 1 006 @ 01803003 v 0000 + 00788474 a 0201 + 10379758 n 0201 + 00420477 n 0101 + 10716005 n 0103 ~ 02565090 v 0000 01 + 09 00 | cause to suffer; "Jews were persecuted in the former Soviet Union" -02585722 41 v 01 haze 0 001 @ 01789514 v 0000 01 + 09 00 | harass by imposing humiliating or painful tasks, as in military institutions -02585860 41 v 04 arrive 0 make_it 0 get_in 0 go_far 0 001 @ 02524171 v 0000 02 + 02 00 + 22 00 | succeed in a big way; get to the top; "After he published his book, he had arrived"; "I don't know whether I can make it in science!"; "You will go far, my boy!" -02586121 41 v 03 carry 2 persuade 0 sway 0 005 $ 01101416 v 0000 @ 02536557 v 0000 + 05194043 n 0301 + 02361848 a 0203 + 01769843 a 0201 02 + 09 00 + 10 00 | win approval or support for; "Carry all before one"; "His speech did not sway the voters" -02586371 41 v 01 get_at 0 001 @ 02536557 v 0000 01 + 09 00 | influence by corruption -02586458 41 v 02 charm 0 becharm 0 003 @ 02441022 v 0000 + 07159791 n 0104 ~ 00776988 v 0000 01 + 08 00 | control by magic spells, as by practicing witchcraft -02586619 41 v 02 govern 0 rule 0 012 @ 02441022 v 0000 + 14442933 n 0202 + 15295416 n 0201 + 10541229 n 0201 + 08050678 n 0101 + 10140314 n 0101 + 01124794 n 0102 + 01124794 n 0103 ~ 02564546 v 0000 ~ 02586979 v 0000 ~ 02587084 v 0000 ~ 02587375 v 0000 03 + 08 00 + 02 02 + 02 01 | exercise authority over; as of nations; "Who is governing the country now?" -02586979 41 v 01 misgovern 0 002 @ 02586619 v 0000 + 01125562 n 0101 02 + 02 00 + 08 00 | govern badly -02587084 41 v 01 dictate 0 005 @ 02586619 v 0000 + 10011902 n 0101 + 06663940 n 0101 + 07168131 n 0104 ~ 02587239 v 0000 01 + 02 00 | rule as a dictator -02587239 41 v 03 tyrannize 0 tyrannise 0 grind_down 0 002 @ 02587084 v 0000 + 10735298 n 0101 01 + 08 00 | rule a country as a tyrant -02587375 41 v 01 reign 0 003 @ 02586619 v 0000 + 14443532 n 0101 + 15260814 n 0101 01 + 02 00 | have sovereign power; "Henry VIII reigned for a long time" -02587532 41 v 08 cope 0 get_by 0 make_out 2 make_do 0 contend 0 grapple 0 deal 0 manage 3 006 @ 02367363 v 0000 ~ 02587895 v 0000 ~ 02588122 v 0000 ~ 02588280 v 0000 ~ 02588464 v 0000 ~ 02594674 v 0000 06 + 22 00 + 02 08 + 02 04 + 02 03 + 02 02 + 02 01 | come to terms with; "We got by on just a gallon of gas"; "They made do on half a loaf of bread every day" -02587895 41 v 02 improvise 0 extemporize 0 002 @ 02587532 v 0000 + 00178832 n 0101 01 + 02 00 | manage in a makeshift way; do with whatever is at hand; "after the hurricane destroyed our house, we had to improvise for weeks" -02588122 41 v 01 fend 0 001 @ 02587532 v 0000 01 + 22 00 | try to manage without help; "The youngsters had to fend for themselves after their parents died" -02588280 41 v 02 hack 0 cut a 001 @ 02587532 v 0000 01 + 08 00 | be able to manage or manage successfully; "I can't hack it anymore"; "she could not cut the long days in the office" -02588464 41 v 06 scrape_along 0 scrape_by 0 scratch_along 0 squeak_by 0 squeeze_by 0 rub_along 0 001 @ 02587532 v 0000 01 + 02 00 | manage one's existence barely; "I guess I can squeeze by on this lousy salary" -02588677 41 v 01 befriend 0 002 @ 02538086 v 0000 ~ 02588871 v 0000 01 + 09 00 | become friends with; "John and Eric soon became friends"; "Have you made friends yet in your new environment?" -02588871 41 v 03 pal 0 pal_up 0 chum_up 0 002 @ 02588677 v 0000 + 09877951 n 0105 02 + 02 00 + 22 00 | become friends; act friendly towards -02589013 41 v 03 relegate 2 pass_on 0 submit 0 003 @ 00878636 v 0000 + 01140839 n 0104 + 01140839 n 0103 01 + 15 00 | refer to another person for decision or judgment; "She likes to relegate difficult questions to her colleagues" -02589245 41 v 04 consort c associate 2 affiliate c assort c 008 @ 02376958 v 0000 + 08049401 n 0201 + 01081628 n 0201 + 09945905 n 0205 + 09958724 n 0101 ~ 02430191 v 0000 ~ 02486232 v 0000 ~ 02716767 v 0000 01 + 22 00 | keep company with; hang out with; "He associates with strange people"; "She affiliates with her colleagues" -02589576 41 v 06 crusade a fight a press c campaign a push a agitate a 007 @ 00976653 v 0000 + 04836683 n 0502 + 00798245 n 0401 + 09906538 n 0202 + 00798245 n 0103 + 10515194 n 0103 $ 00976653 v 0000 02 + 08 00 + 09 00 | exert oneself continuously, vigorously, or obtrusively to gain an end or engage in a crusade for a certain cause or person; be an advocate for; "The liberal party pushed for reforms"; "She is crusading for women's rights"; "The Dean is pushing for his favorite candidate" -02590072 41 v 03 fall_back 0 resort b recur b 003 @ 01158872 v 0000 + 01208597 n 0202 + 05155123 n 0203 01 + 08 00 | have recourse to; "The government resorted to rationing meat" -02590253 41 v 01 take d 000 01 + 22 00 | develop a habit; "He took to visiting bars" -02590340 41 v 02 colonize 0 colonise 0 009 @ 02215355 v 0000 + 01252280 n 0202 + 09937903 n 0202 + 08374049 n 0201 ! 02590667 v 0202 + 01252280 n 0101 + 09937903 n 0101 + 08374049 n 0101 ! 02590667 v 0101 01 + 08 00 | settle as a colony; of countries in the developing world; "Europeans colonized Africa in the 17th century" -02590667 41 v 02 decolonize 0 decolonise 0 005 @ 02497062 v 0000 + 01082548 n 0202 ! 02590340 v 0202 + 01082548 n 0101 ! 02590340 v 0101 01 + 08 00 | grant independence to (a former colony); "West Africa was decolonized in the early 1960's" -02590910 41 v 03 philander 0 womanize 0 womanise 0 007 @ 02376958 v 0000 + 10789118 n 0302 + 10788852 n 0301 + 10787470 n 0301 + 10789118 n 0201 + 10788852 n 0201 + 10789118 n 0103 01 + 02 00 | have amorous affairs; of men; "He has been womanizing for years" -02591171 41 v 01 take_up 1 001 @ 01951937 v 0000 02 + 08 00 + 33 00 | turn one's interest to; "He took up herpetology at the age of fifty" -02591312 41 v 03 condescend 0 deign 0 descend 0 001 @ 02367363 v 0000 01 + 28 00 | do something that one considers to be below one's dignity -02591455 41 v 01 condescend 1 002 @ 02367363 v 0000 + 04655168 n 0101 02 + 22 00 + 28 00 | behave in a patronizing and condescending manner -02591597 41 v 01 take_care 0 001 @ 02367363 v 0000 01 + 02 00 | be careful, prudent, or watchful; "Take care when you cross the street!" -02591736 41 v 01 interlope 0 002 @ 02538765 v 0000 + 10213652 n 0102 01 + 02 00 | encroach on the rights of others, as in trading without a proper license -02591893 41 v 01 parole 0 003 @ 02421374 v 0000 + 01257701 n 0101 + 10477585 n 0102 01 + 09 00 | release a criminal from detention and place him on parole; "The prisoner was paroled after serving 10 years in prison" -02592111 41 v 01 club 3 002 @ 02428924 v 0000 + 08227214 n 0101 01 + 02 00 | gather and spend time together; "They always club together" -02592250 41 v 01 club a 002 @ 02469835 v 0000 + 08227214 n 0101 02 + 02 00 + 22 00 | unite with a common purpose; "The two men clubbed together" -02592397 41 v 02 emcee 0 compere 0 003 @ 01194418 v 0000 + 09946814 n 0201 + 10299250 n 0102 02 + 02 00 + 22 00 | act as a master of ceremonies -02592543 41 v 01 do_the_honors 0 001 @ 01194418 v 0000 01 + 02 00 | act as the host and receive or introduce one's guests -02592667 41 v 01 tutor 0 002 @ 02724417 v 0000 + 00829378 n 0103 01 + 09 00 | act as a guardian to someone -02592776 41 v 01 fag 1 001 @ 02540670 v 0000 01 + 02 00 | act as a servant for older boys, in British public schools -02592895 41 v 02 frivol 0 trifle 0 002 @ 00010435 v 0000 + 10729330 n 0201 01 + 02 00 | act frivolously -02593001 41 v 01 humbug 0 002 @ 02575082 v 0000 + 00753685 n 0105 02 + 02 00 + 09 00 | trick or deceive -02593107 41 v 01 serve 2 002 $ 02540670 v 0000 @ 02413480 v 0000 02 + 08 00 + 09 00 | devote (part of) one's life or efforts to, as of countries, institutions, or ideas; "She served the art of music"; "He served the church"; "serve the country" -02593354 41 v 02 invigilate 0 proctor 0 004 @ 02455407 v 0000 + 10478960 n 0201 + 01135795 n 0101 + 10216403 n 0101 02 + 08 00 + 09 00 | watch over (students taking an exam, to prevent cheating) -02593551 41 v 04 lord_it_over 0 queen_it_over 0 put_on_airs 0 act_superior 0 001 @ 02367363 v 0000 09 + 02 00 + 02 04 + 22 04 + 02 03 + 22 03 + 08 02 + 09 02 + 08 01 + 09 01 | act like the master of; "He is lording it over the students" -02593790 41 v 01 queen 0 002 @ 01080235 v 0000 + 04033287 n 0101 01 + 08 00 | promote to a queen, as of a pawn in chess -02593912 41 v 01 happen 0 002 @ 02594102 v 0000 $ 00344643 v 0000 02 + 28 00 + 34 00 | chance to be or do something, without intention or causation; "I happen to have just what you need!" -02594102 41 v 01 chance 1 004 @ 00339934 v 0000 + 14483917 n 0102 + 11418138 n 0103 ~ 02593912 v 0000 01 + 01 00 | be the case by chance; "I chanced to meet my old friend in the street" -02594290 41 v 01 stampede 0 001 @ 02367363 v 0000 01 + 02 00 | act, usually en masse, hurriedly or on an impulse; "Companies will now stampede to release their latest software" -02594469 41 v 01 stampede 1 001 > 02594290 v 0000 02 + 09 00 + 10 00 | cause a group or mass of people to act on an impulse or hurriedly and impulsively; "The tavern owners stampeded us into overeating" -02594674 41 v 03 meet 2 match 0 cope_with 0 001 @ 02587532 v 0000 02 + 08 00 + 11 00 | satisfy or fulfill; "meet a need"; "this job doesn't match my dreams" -02594833 41 v 02 rain_out 0 wash_out 0 001 @ 02450505 v 0000 01 + 11 00 | prevent or interrupt due to rain; "The storm had washed out the game" -02594979 41 v 01 work 4 003 @ 02413480 v 0000 + 00575741 n 0101 $ 02410855 v 0000 02 + 08 00 + 22 00 | operate in a certain place, area, or specialty; "She works the night clubs"; "The salesman works the Midwest"; "This artist works mostly in acrylics" -02595234 41 v 02 make_a_point 0 make_sure 0 001 @ 02367363 v 0000 01 + 22 00 | make a point of doing something; act purposefully and intentionally -02595383 41 v 01 ply 0 003 @ 02561995 v 0000 + 10442093 n 0101 + 10442093 n 0102 01 + 08 00 | apply oneself diligently; "Ply one's trade" -02595523 41 v 01 apply 9 002 @ 00887463 v 0000 + 00633329 n 0101 01 + 20 00 | apply oneself to; "Please apply yourself to your homework" -02595662 41 v 02 repeat 0 take_over 2 004 @ 02367363 v 0000 + 01964367 a 0101 + 07342049 n 0101 + 10521470 n 0101 01 + 08 00 | do over; "They would like to take it over again" -02595840 41 v 01 rest 0 002 + 01064148 n 0101 ~ 02596004 v 0000 02 + 01 00 + 02 00 | be inactive, refrain from acting; "The committee is resting over the summer" -02596004 41 v 01 hibernate 0 001 @ 02595840 v 0000 02 + 01 00 + 02 00 | be in an inactive or dormant state -02596113 41 v 01 meet 3 000 02 + 02 00 + 09 00 | get to know; get acquainted with; "I met this really handsome guy at a bar last night!"; "we met in Singapore" -02596275 41 v 01 stag 0 000 01 + 02 00 | attend a dance or a party without a female companion -02596371 41 v 01 come_near 0 000 01 + 28 00 | almost do or experience something; "She came near to screaming with fear" -02596493 41 v 01 surprise 0 005 @ 02367363 v 0000 + 00553655 n 0101 + 07298154 n 0101 + 00553655 n 0102 ~ 02596730 v 0000 02 + 08 00 + 09 00 | come upon or take unawares; "She surprised the couple"; "He surprised an interesting scene" -02596730 41 v 01 blindside 0 001 @ 02596493 v 0000 02 + 09 00 + 10 00 | catch unawares, especially with harmful consequences; "The economic downturn blindsided many investors" -02596908 41 v 02 swell 0 puff_up 0 001 @ 00010435 v 0000 01 + 01 00 | become filled with pride, arrogance, or anger; "The mother was swelling with importance when she spoke of her son" -02597095 41 v 01 mingle 0 001 + 01082350 n 0101 02 + 04 00 + 22 00 | get involved or mixed-up with; "He was about to mingle in an unpleasant affair" -02597246 41 v 01 estrange 0 002 @ 02404904 v 0000 + 07502387 n 0103 02 + 09 00 + 10 00 | remove from customary environment or associations; "years of boarding school estranged the child from her home" -02597449 41 v 01 sneak 0 001 @ 02367363 v 0000 01 + 08 00 | put, bring, or take in a secretive or furtive manner; "sneak a look"; "sneak a cigarette" -02597601 41 v 01 play 2 002 @ 02367363 v 0000 $ 02370650 v 0000 03 + 02 00 + 05 00 + 07 00 | behave in a certain way; "play safe"; "play it safe"; "play fair" -02597762 41 v 01 appear 3 001 + 01233627 n 0101 01 + 04 00 | present oneself formally, as before a (judicial) authority; "He had to appear in court last month"; "She appeared on several charges of theft" -02597968 41 v 01 remember_oneself 0 001 @ 02519666 v 0000 01 + 02 00 | recover one's good manners after a lapse or stop behaving badly; "Please remember yourself, Charles!" -02598143 41 v 03 assemble 3 gather 2 get_together 3 007 > 02428924 v 0000 + 08310389 n 0302 + 07975026 n 0201 + 01229938 n 0203 + 07975026 n 0102 + 01229938 n 0102 ~ 02598483 v 0000 01 + 09 00 | get people together; "assemble your colleagues"; "get together all those who are interested in the project"; "gather the close family members" -02598483 41 v 01 make 1 002 @ 02598143 v 0000 $ 02745332 v 0000 03 + 08 00 + 09 00 + 11 00 | form by assembling individuals or constituents; "Make a quorum" -02598642 41 v 02 play_around 0 fool_around 0 001 @ 02576503 v 0000 01 + 02 00 | commit adultery; "he plays around a lot" -02598765 41 v 01 join 1 000 01 + 09 00 | come into the company of; "She joined him for a drink" -02598863 41 v 01 move 2 001 @ 02614387 v 0000 01 + 22 00 | live one's life in a specified environment; "she moves in certain circles only" -02599004 41 v 02 escape 0 get_away 0 003 @ 02074677 v 0000 + 10062996 n 0101 + 00740712 n 0102 02 + 02 00 + 22 00 | remove oneself from a familiar environment, usually for pleasure or diversion; "We escaped to our summer house for a few days"; "The president of the company never manages to get away during the summer" -02599325 41 v 01 touch 0 001 @ 02436349 v 0000 02 + 08 00 + 11 00 | deal with; usually used with a form of negation; "I wouldn't touch her with a ten-foot pole"; "The local Mafia won't touch gambling" -02599528 41 v 01 fail 8 001 ! 02522864 v 0105 01 + 28 00 | be unable; "I fail to understand your motives" -02599636 41 v 01 take 4 001 @ 02367363 v 0000 01 + 08 00 | carry out; "take action"; "take steps"; "take vengeance" -02599754 41 v 01 book 3 003 @ 02471690 v 0000 + 01988565 a 0101 + 01218327 n 0101 01 + 02 00 | register in a hotel booker -02599878 41 v 01 guard 1 001 @ 02367363 v 0000 01 + 22 00 | take precautions in order to avoid some unwanted consequence; "guard against becoming too friendly with the staff"; "guard against infection" -02600082 41 v 01 break f 002 @ 00339934 v 0000 ;u 07075172 n 0000 01 + 01 00 | happen or take place; "Things have been breaking pretty well for us in the past few months" -02600255 41 v 01 follow a 003 @ 00010435 v 0000 + 10099375 n 0101 + 08223263 n 0101 02 + 08 00 + 09 00 | accept and follow the leadership or command or guidance of; "Let's follow our great helmsman!"; "She followed a guru for years" -02600490 41 v 01 use e 005 @ 01162754 v 0000 + 00158185 n 0102 + 10072546 n 0102 + 00418903 n 0104 ~ 02570062 v 0000 02 + 08 00 + 09 00 | seek or achieve an end by using to one's advantage; "She uses her influential friends to get jobs"; "The president's wife used her good connections" -02600779 41 v 01 take_to 1 000 02 + 08 00 + 33 00 | develop a habit; apply oneself to a practice or occupation; "She took to drink"; "Men take to the military trades" -02600948 41 v 02 begin 4 start 4 004 $ 02608823 v 0000 @ 02367363 v 0000 + 00235435 n 0202 + 07325190 n 0201 01 + 08 00 | begin an event that is implied and limited by the nature or inherent function of the direct object; "begin a cigar"; "She started the soup while it was still hot"; "We started physics in 10th grade" -02601271 41 v 03 call_the_shots 0 call_the_tune 0 wear_the_trousers 0 001 @ 02441022 v 0000 01 + 02 00 | exercise authority or be in charge; "Who is calling the shots in this house?" -02601456 41 v 02 address 8 call e 002 $ 01028748 v 0000 @ 00897564 v 0000 01 + 14 00 | greet, as with a prescribed form, title, or name; "He always addresses me with `Sir'"; "Call me Mister"; "She calls him by first name" -02601680 41 v 01 stet 0 002 $ 01070968 v 0000 @ 02478059 v 0000 01 + 08 00 | printing: cancel, as of a correction or deletion -02601808 41 v 02 relax 0 loosen 0 003 @ 00109660 v 0000 + 00355691 n 0103 $ 02601996 v 0000 01 + 01 00 | become less severe or strict; "The rules relaxed after the new director arrived" -02601996 41 v 02 relax 1 loosen 1 003 $ 02601808 v 0000 @ 00126264 v 0000 + 00355691 n 0103 02 + 08 00 + 11 00 | make less severe or strict; "The government relaxed the curfew after most of the rebels were caught" -02602212 41 v 02 relax 2 loosen_up 2 002 @ 00010435 v 0000 + 07515974 n 0102 01 + 02 00 | become less tense, less formal, or less restrained, and assume a friendlier manner; "our new colleague relaxed when he saw that we were a friendly group" -02602458 41 v 02 go_off_half-cocked 0 go_off_at_half-cock 0 001 @ 02367363 v 0000 01 + 02 00 | act prematurely or without reflection or too soon; "she wanted to quit her job but her mother told her not to go off half-cocked" -02602685 41 v 01 slam-dunk 0 002 @ 00137313 v 0000 + 04757350 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | make a forceful move against; "the electronic travel market is slam-dunking traditional travel agencies" -02602898 41 v 01 baby-sit 1 001 @ 02456031 v 0000 01 + 08 00 | take watchful responsibility for; "I baby-sit the neighbor's plants when she is out of town" -02603056 41 v 02 unite 4 unify 4 002 @ 00126264 v 0000 ~ 01607072 v 0000 02 + 09 00 + 10 00 | bring together for a common purpose or action or ideology or in a shared situation; "the Democratic Patry platform united several splinter groups" -02603299 41 v 01 fix 4 001 @ 02536557 v 0000 01 + 08 00 | influence an event or its outcome by illegal means; "fix a race" -02603424 41 v 02 straiten 0 distress 0 001 @ 02507736 v 0000 01 + 10 00 | bring into difficulties or distress, especially financial hardship -02603567 41 v 01 administer 1 001 @ 02439501 v 0000 01 + 08 00 | direct the taking of; "administer an exam"; "administer an oath" -02603699 42 v 02 exist 0 be 0 016 + 13954253 n 0201 + 00043765 a 0102 + 01932973 a 0102 + 00927017 a 0101 + 13954253 n 0103 ~ 00342812 v 0000 ~ 02604100 v 0000 ~ 02604305 v 0000 ~ 02604477 v 0000 ~ 02617196 v 0000 ~ 02648502 v 0000 ~ 02653381 v 0000 ~ 02697120 v 0000 ~ 02743727 v 0000 ~ 02754696 v 0000 ~ 02755773 v 0000 03 + 01 00 + 02 00 + 22 00 | have an existence, be extant; "Is there a God?" -02604100 42 v 01 preexist 0 004 @ 02603699 v 0000 + 00122386 a 0101 + 00122386 a 0102 + 13957117 n 0101 01 + 01 00 | exist beforehand or prior to a certain point in time; "Did this condition pre-exist?" -02604305 42 v 03 kick_around 0 knock_about 0 kick_about 0 001 @ 02603699 v 0000 02 + 01 00 + 02 00 | be around; be alive or active; "Does the old man still kick around?" -02604477 42 v 01 coexist 0 004 @ 02603699 v 0000 + 02378347 a 0101 ~ 02604618 v 0000 ~ 02660442 v 0000 02 + 01 00 + 02 00 | exist together -02604618 42 v 01 coexist 1 003 @ 02604477 v 0000 + 02378347 a 0101 + 13957268 n 0101 02 + 01 00 + 02 00 | coexist peacefully, as of nations -02604760 42 v 01 be 3 137 ~ 00033599 v 0000 ~ 00065070 v 0000 ~ 00065495 v 0000 ~ 00078401 v 0000 ~ 00105958 v 0000 ~ 00117985 v 0000 ~ 00118523 v 0000 ~ 00473003 v 0000 ~ 00621734 v 0000 ~ 00660102 v 0000 ~ 01152670 v 0000 ~ 01188725 v 0000 ~ 01484027 v 0000 ~ 01545883 v 0000 ~ 01610990 v 0000 ~ 01767612 v 0000 ~ 01805247 v 0000 ~ 02133435 v 0000 ~ 02134672 v 0000 ~ 02253956 v 0000 ~ 02301680 v 0000 ~ 02310674 v 0000 ~ 02541921 v 0000 ~ 02607432 v 0000 ~ 02607658 v 0000 ~ 02608823 v 0000 ~ 02609203 v 0000 ~ 02611373 v 0000 ~ 02611630 v 0000 ~ 02618001 v 0000 ~ 02619612 v 0000 ~ 02633356 v 0000 ~ 02633881 v 0000 ~ 02635033 v 0000 ~ 02637592 v 0000 ~ 02638630 v 0000 ~ 02639075 v 0000 ~ 02645007 v 0000 ~ 02645839 v 0000 ~ 02646227 v 0000 ~ 02646378 v 0000 ~ 02646757 v 0000 ~ 02655958 v 0000 ~ 02661015 v 0000 ~ 02664234 v 0000 ~ 02664575 v 0000 ~ 02674173 v 0000 ~ 02674340 v 0000 ~ 02693842 v 0000 ~ 02698443 v 0000 ~ 02701210 v 0000 ~ 02702508 v 0000 ~ 02704349 v 0000 ~ 02706605 v 0000 ~ 02715279 v 0000 ~ 02718543 v 0000 ~ 02718750 v 0000 ~ 02719399 v 0000 ~ 02721284 v 0000 ~ 02722207 v 0000 ~ 02722782 v 0000 ~ 02722902 v 0000 ~ 02724417 v 0000 ~ 02724705 v 0000 ~ 02724835 v 0000 ~ 02725286 v 0000 ~ 02725460 v 0000 ~ 02725562 v 0000 ~ 02726717 v 0000 ~ 02726884 v 0000 ~ 02727039 v 0000 ~ 02727462 v 0000 ~ 02727883 v 0000 ~ 02728142 v 0000 ~ 02729023 v 0000 ~ 02729260 v 0000 ~ 02729632 v 0000 ~ 02729963 v 0000 ~ 02730326 v 0000 ~ 02731996 v 0000 ~ 02732292 v 0000 ~ 02732603 v 0000 ~ 02733334 v 0000 ~ 02733928 v 0000 ~ 02734338 v 0000 ~ 02734488 v 0000 ~ 02734952 v 0000 ~ 02735142 v 0000 ~ 02735282 v 0000 ~ 02735418 v 0000 ~ 02735753 v 0000 ~ 02736391 v 0000 ~ 02737063 v 0000 ~ 02737569 v 0000 ~ 02737724 v 0000 ~ 02738701 v 0000 ~ 02739861 v 0000 ~ 02740552 v 0000 ~ 02741546 v 0000 ~ 02741960 v 0000 ~ 02742107 v 0000 ~ 02742842 v 0000 ~ 02743020 v 0000 ~ 02743214 v 0000 ~ 02744977 v 0000 ~ 02745713 v 0000 ~ 02745882 v 0000 ~ 02746017 v 0000 ~ 02746140 v 0000 ~ 02746275 v 0000 ~ 02747140 v 0000 ~ 02747287 v 0000 ~ 02747403 v 0000 ~ 02748206 v 0000 ~ 02748355 v 0000 ~ 02748495 v 0000 ~ 02748627 v 0000 ~ 02748927 v 0000 ~ 02750854 v 0000 ~ 02751271 v 0000 ~ 02751597 v 0000 ~ 02751787 v 0000 ~ 02751952 v 0000 ~ 02752277 v 0000 ~ 02752431 v 0000 ~ 02752567 v 0000 ~ 02753255 v 0000 ~ 02753426 v 0000 ~ 02753865 v 0000 ~ 02754032 v 0000 ~ 02754158 v 0000 ~ 02754598 v 0000 ~ 02755452 v 0000 ~ 02755565 v 0000 ~ 02755911 v 0000 ~ 02756063 v 0000 ~ 02756359 v 0000 06 + 04 00 + 06 00 + 07 00 + 08 00 + 09 00 + 22 00 | have the quality of being; (copula, used with an adjective or a predicate noun); "John is rich"; "This is not a good answer" -02607432 42 v 01 account 1 001 @ 02604760 v 0000 01 + 11 00 | be the sole or primary factor in the existence, acquisition, supply, or disposal of something; "Passing grades account for half of the grades given in this exam" -02607658 42 v 01 cut_across 0 001 @ 02604760 v 0000 01 + 11 00 | be contrary to ordinary procedure or limitations; "Opinions on bombing the Serbs cut across party lines" -02607830 42 v 02 stretch 0 stretch_along 0 002 @ 02655135 v 0000 + 09448945 n 0101 01 + 04 00 | occupy a large, elongated area; "The park stretched beneath the train line" -02608004 42 v 02 neighbor 0 neighbour 0 003 @ 01466978 v 0000 + 09368224 n 0202 + 09368224 n 0101 01 + 11 00 | be located near or adjacent to; "Pakistan neighbors India" -02608176 42 v 02 neighbor 1 neighbour 1 003 @ 02649830 v 0000 + 10352299 n 0202 + 10352299 n 0101 01 + 02 00 | live or be located as a neighbor; "the neighboring house" -02608347 42 v 02 begin 0 start 0 012 + 00235435 n 0202 + 15265518 n 0206 + 07325190 n 0201 ! 02609764 v 0101 ~ 00345508 v 0000 ~ 00345652 v 0000 ~ 00346958 v 0000 $ 02608823 v 0000 $ 02609203 v 0000 ~ 02609439 v 0000 ~ 02609614 v 0000 ~ 02743343 v 0000 03 + 01 00 + 04 00 + 11 00 | have a beginning, in a temporal, spatial, or evaluative sense; "The DMZ begins right over the hill"; "The second movement begins after the Allegro"; "Prices for these homes start at $250,000" -02608823 42 v 02 begin 3 start 3 006 $ 02608347 v 0000 $ 02679227 v 0000 @ 02604760 v 0000 + 00235435 n 0202 + 07325190 n 0201 $ 02600948 v 0000 01 + 04 00 | have a beginning characterized in some specified way; "The novel begins with a murder"; "My property begins with the three maple trees"; "Her day begins with a workout"; "The semester begins with a convocation ceremony" -02609203 42 v 01 begin 4 003 $ 02608347 v 0000 $ 00348746 v 0000 @ 02604760 v 0000 01 + 04 00 | have a beginning, of a temporal event; "WW II began in 1939 when Hitler marched into Poland"; "The company's Asia tour begins next month" -02609439 42 v 02 set_in 0 kick_in 0 001 @ 02608347 v 0000 01 + 01 00 | enter a particular state; "Laziness set in"; "After a few moments, the effects of the drug kicked in" -02609614 42 v 01 dawn 1 003 @ 02608347 v 0000 + 15267945 n 0101 + 07326108 n 0101 01 + 01 00 | appear or develop; "The age of computers had dawned" -02609764 42 v 05 end 0 stop d finish 0 terminate 0 cease d 028 + 01010569 a 0401 + 08566554 n 0404 + 07291312 n 0303 + 15267536 n 0304 + 00210518 n 0301 + 06398401 n 0102 + 08565894 n 0101 + 08566707 n 0101 + 14562960 n 0101 + 05868477 n 0101 + 07291794 n 0101 + 15266911 n 0101 + 08566028 n 0101 ! 02608347 v 0101 ~ 00351576 v 0000 ~ 00351824 v 0000 ~ 00352310 v 0000 ~ 00352419 v 0000 ~ 00364297 v 0000 ~ 00427397 v 0000 ~ 00485609 v 0000 ~ 00561571 v 0000 ~ 01192773 v 0000 ~ 02156546 v 0000 ~ 02610628 v 0000 ~ 02610845 v 0000 ~ 02683840 v 0000 ~ 02746617 v 0000 02 + 01 00 + 04 00 | have an end, in a temporal, spatial, or quantitative sense; either spatial or metaphorical; "the bronchioles terminate in a capillary bed"; "Your rights stop where you infringe upon the rights of other"; "My property ends by the bushes"; "The symphony ends in a pianissimo" -02610628 42 v 02 conclude 2 close 0 005 @ 02609764 v 0000 + 15267536 n 0207 + 00210797 n 0202 + 06398401 n 0204 + 00211110 n 0203 02 + 01 00 + 04 00 | come to a close; "The concert closed with a nocturne by Chopin" -02610845 42 v 02 turn_out 2 come_out 0 003 @ 02609764 v 0000 ~ 02611002 v 0000 ~ 02611106 v 0000 01 + 01 00 | result or end; "How will the game turn out?" -02611002 42 v 01 eventuate 0 002 @ 02610845 v 0000 + 11410625 n 0105 01 + 01 00 | come out in the end -02611106 42 v 01 work_out 0 001 @ 02610845 v 0000 01 + 01 00 | happen in a certain way, leading to, producing, or resulting in a certain outcome, often well; "Things worked out in an interesting way"; "Not everything worked out in the end and we were disappointed" -02611373 42 v 01 stand 4 008 @ 02604760 v 0000 + 06210363 n 0103 ^ 02699497 v 0102 ^ 02674564 v 0104 ^ 02673965 v 0102 ^ 02726385 v 0101 ^ 02638630 v 0101 ^ 01116585 v 0104 02 + 06 00 + 07 00 | be in some specified state or condition; "I stand corrected" -02611630 42 v 05 specify 0 define 0 delineate 0 delimit 0 delimitate 0 004 @ 02604760 v 0000 + 07201804 n 0303 ~ 00700708 v 0000 ~ 02611827 v 0000 01 + 11 00 | determine the essential quality of -02611827 42 v 01 redefine 0 002 @ 02611630 v 0000 + 06745628 n 0101 01 + 08 00 | give a new or different definition to; "She redefined his duties" -02611976 42 v 03 fall 4 shine 0 strike 0 001 @ 00339934 v 0000 01 + 11 00 | touch or seem as if touching visually or audibly; "Light fell on her face"; "The sun shone on the fields"; "The light struck the golden necklace"; "A strange sound struck my ears" -02612234 42 v 01 run 6 002 @ 02612368 v 0000 $ 02647497 v 0000 01 + 04 00 | occur persistently; "Musical talent runs in the family" -02612368 42 v 01 occur 3 005 @ 00425071 v 0000 ~ 01465365 v 0000 ~ 02612234 v 0000 ~ 02612610 v 0000 ~ 02715923 v 0000 01 + 04 00 | to be found to exist; "sexism occurs in many workplaces"; "precious stones occur in a large area in Brazil" -02612610 42 v 01 collocate 0 001 @ 02612368 v 0000 01 + 01 00 | have a strong tendency to occur side by side; "The words 'new' and 'world' collocate" -02612762 42 v 02 attend 0 go_to 0 009 @ 02655135 v 0000 ;c 01032368 n 0000 + 09608002 n 0101 + 09608002 n 0102 + 09821831 n 0102 + 01233397 n 0101 ! 02613672 v 0101 ~ 02613140 v 0000 ~ 02613275 v 0000 01 + 08 00 | be present at (meetings, church services, university), etc.; "She attends class regularly"; "I rarely attend services at my church"; "did you go to the meeting?" -02613140 42 v 01 sit_in 0 001 @ 02612762 v 0000 01 + 22 00 | attend as a visitor; "Can I sit in on your Intermediate Hittite class?" -02613275 42 v 01 worship 0 005 @ 02612762 v 0000 + 01028655 n 0101 + 09847727 n 0102 + 09847727 n 0103 ~ 02613487 v 0000 02 + 01 00 + 22 00 | attend religious services; "They worship in the traditional manner" -02613487 42 v 02 offer 0 offer_up 0 004 @ 02613275 v 0000 + 07185076 n 0101 + 01041498 n 0102 ~ 02325558 v 0000 01 + 08 00 | present as an act of worship; "offer prayers to the gods" -02613672 42 v 01 miss 1 003 @ 02529284 v 0000 ! 02612762 v 0101 ~ 02613860 v 0000 01 + 08 00 | fail to attend an event or activity; "I missed the concert"; "He missed school for a week" -02613860 42 v 02 cut 0 skip 0 004 @ 02613672 v 0000 + 00074624 n 0202 + 10607824 n 0201 ~ 02614023 v 0000 01 + 08 00 | intentionally fail to attend; "cut class" -02614023 42 v 02 bunk_off 0 play_hooky 0 002 @ 02613860 v 0000 ;u 07157273 n 0000 01 + 02 00 | play truant from work or school; "The boy often plays hooky" -02614181 42 v 02 be 1 live 0 003 + 13961642 n 0203 + 00004475 n 0102 $ 02618149 v 0000 02 + 01 00 + 02 00 | have life, be alive; "Our great leader is no more"; "My grandfather lived until the end of war" -02614387 42 v 01 live 6 016 * 02603699 v 0000 + 10268299 n 0101 + 05810561 n 0102 ~ 02598863 v 0000 ~ 02614812 v 0000 $ 02614970 v 0000 ~ 02615140 v 0000 ~ 02615300 v 0000 ~ 02615451 v 0000 ~ 02615580 v 0000 ~ 02615739 v 0000 ~ 02615880 v 0000 ~ 02616012 v 0000 ~ 02616118 v 0000 ~ 02616236 v 0000 ~ 02755232 v 0000 01 + 22 00 | lead a certain kind of life; live in a certain style; "we had to live frugally after the war" -02614812 42 v 01 dissipate 4 002 @ 02614387 v 0000 + 00748307 n 0102 01 + 02 00 | live a life of pleasure, especially with respect to alcoholic consumption -02614970 42 v 01 live 7 001 $ 02614387 v 0000 01 + 02 00 | pursue a positive and satisfying existence; "You must accept yourself and others if you really want to live" -02615140 42 v 01 swing 1 001 @ 02614387 v 0000 01 + 02 00 | live in a lively, modern, and relaxed style; "The Woodstock generation attempted to swing freely" -02615300 42 v 02 unlive 0 live_down 0 001 @ 02614387 v 0000 01 + 08 00 | live so as to annul some previous behavior; "You can never live this down!" -02615451 42 v 01 wanton 1 002 @ 02614387 v 0000 + 10766260 n 0101 01 + 02 00 | indulge in a carefree or voluptuous way of life -02615580 42 v 01 vegetate 0 003 @ 02614387 v 0000 + 02833331 a 0101 + 01065057 n 0101 01 + 02 00 | lead a passive existence without using one's body or mind -02615739 42 v 02 pig 0 pig_it 0 003 @ 02614387 v 0000 + 02395406 n 0102 + 10179649 n 0102 02 + 02 00 + 22 00 | live like a pig, in squalor -02615880 42 v 01 bushwhack 0 002 @ 02614387 v 0000 + 09881748 n 0101 01 + 02 00 | live in the bush as a fugitive or as a guerilla -02616012 42 v 01 buccaneer 0 002 @ 02614387 v 0000 + 10435367 n 0102 01 + 02 00 | live like a buccaneer -02616118 42 v 02 bachelor 0 bach 0 002 @ 02614387 v 0000 + 09829923 n 0101 01 + 02 00 | lead a bachelor's existence -02616236 42 v 01 eke_out 0 001 @ 02614387 v 0000 01 + 08 00 | live from day to day, as with some hardship; "He eked out his years in great poverty" -02616386 42 v 01 be 6 000 02 + 08 00 + 11 00 | be identical to; be someone or something; "The president of the company is John Smith"; "This is my house" -02616542 42 v 01 rusticate 0 004 @ 02650552 v 0000 + 10544232 n 0101 + 14579215 n 0101 + 00212551 n 0101 02 + 02 00 + 22 00 | live in the country and lead a rustic life -02616713 42 v 04 exist 1 survive 0 live 1 subsist 0 006 $ 02618149 v 0000 + 10681194 n 0402 + 13962360 n 0401 + 13962166 n 0201 ~ 02617083 v 0000 ~ 02617338 v 0000 04 + 01 00 + 02 00 + 13 00 + 22 00 | support oneself; "he could barely exist on such a low wage"; "Can you live on $2000 a month in New York City?"; "Many people in the world have to subsist on $1 a day" -02617083 42 v 01 breathe 0 001 @ 02616713 v 0000 02 + 01 00 + 02 00 | be alive; "Every creature that breathes" -02617196 42 v 01 indwell 0 002 @ 02603699 v 0000 + 13498213 n 0101 01 + 11 00 | to exist as an inner activating spirit, force, or principle -02617338 42 v 02 freewheel 0 drift 0 003 @ 02616713 v 0000 + 10109662 n 0103 $ 01903218 v 0000 01 + 02 00 | live unhurriedly, irresponsibly, or freely; "My son drifted around for years in California before going to law school" -02617567 42 v 05 do 0 fare 0 make_out 0 come 2 get_along 0 001 @ 00341560 v 0000 02 + 06 00 + 07 00 | proceed or get along; "How is she doing in her new job?"; "How are you making out in graduate school?"; "He's come a long way" -02617798 42 v 01 go 3 002 + 00048051 n 0101 ^ 02660819 v 0105 01 + 01 00 | pass, fare, or elapse; of a certain state of affairs or action; "How is it going?"; "The day went well until I got your call" -02618001 42 v 01 go 7 001 @ 02604760 v 0000 02 + 06 00 + 07 00 | be or continue to be in a certain condition; "The children went hungry that day" -02618149 42 v 08 survive 1 last 1 live 4 live_on 0 go e endure 0 hold_up 0 hold_out 0 008 * 02614181 v 0000 $ 02614181 v 0000 + 13962166 n 0602 + 13962166 n 0101 $ 02616713 v 0000 ~ 02618688 v 0000 ~ 02618877 v 0000 ~ 02619020 v 0000 03 + 01 00 + 02 00 + 08 00 | continue to live through hardship or adversity; "We went without water and food for 3 days"; "These superstitions survive in the backwaters of America"; "The race car driver lived through several very serious accidents"; "how long can a person last without food and water?" -02618688 42 v 03 stand_up 0 hold_up 1 hold_water 0 001 @ 02618149 v 0000 01 + 01 00 | resist or withstand wear, criticism, etc.; "Her shoes won't hold up"; "This theory won't hold water" -02618877 42 v 01 perennate 0 003 @ 02618149 v 0000 + 11553240 n 0101 + 13534608 n 0101 01 + 01 00 | survive from season to season, of plants -02619020 42 v 01 live_out 0 001 @ 02618149 v 0000 01 + 08 00 | live out one's life; live to the end -02619122 42 v 04 last_out 0 stay 3 ride_out 0 outride 0 002 + 01319001 n 0201 ~ 02619291 v 0000 01 + 08 00 | hang on during a trial of endurance; "ride out the storm" -02619291 42 v 01 outstay 1 001 @ 02619122 v 0000 02 + 09 00 + 11 00 | surpass in staying power; "They outstayed their competitors" -02619424 42 v 01 visit 4 003 @ 02637202 v 0000 + 01055360 n 0102 + 10757193 n 0101 01 + 09 00 | stay with as a guest; "Every summer, we visited our relatives in the country for a month" -02619612 42 v 02 make_sense 0 add_up 0 001 @ 02604760 v 0000 02 + 01 00 + 34 00 | be reasonable or logical or comprehensible -02619739 42 v 03 outlive 0 outlast 0 survive 3 002 * 02614181 v 0000 + 10681060 n 0301 04 + 08 00 + 09 00 + 10 00 + 11 00 | live longer than; "She outlived her husband by many years" -02619924 42 v 05 survive 2 pull_through 0 pull_round 0 come_through 0 make_it 0 005 * 00092690 v 0000 @ 01108148 v 0000 + 10681194 n 0101 + 13962166 n 0101 ! 02620466 v 0101 02 + 02 00 + 08 01 | continue in existence after (an adversity, etc.); "He survived the cancer against all odds" -02620213 42 v 01 fall 0 003 $ 02304507 v 0000 @ 00358431 v 0000 $ 02385153 v 0000 03 + 01 00 + 02 00 + 22 00 | die, as in battle or in a hunt; "Many soldiers fell at Verdun"; "Several deer have fallen to the same gun"; "The shooting victim fell dead" -02620466 42 v 02 succumb 0 yield 5 002 @ 00358431 v 0000 ! 02619924 v 0101 02 + 02 00 + 22 00 | be fatally overwhelmed -02620587 42 v 05 constitute 0 represent 0 make_up 0 comprise 3 be 2 010 + 04933544 n 0304 + 00901345 a 0101 + 04933544 n 0305 ~ 02621133 v 0000 ~ 02621244 v 0000 ~ 02621395 v 0000 ~ 02690384 v 0000 ~ 02705680 v 0000 ~ 02722663 v 0000 ~ 02752931 v 0000 02 + 08 00 + 11 00 | form or compose; "This money is my only income"; "The stone wall was the backdrop for the performance"; "These constitute my entire belonging"; "The children made up the chorus"; "This sum represents my entire income for a year"; "These few men comprise his entire army" -02621133 42 v 01 make f 001 @ 02620587 v 0000 01 + 10 00 | constitute the essence of; "Clothes make the man" -02621244 42 v 01 compose 0 002 @ 02620587 v 0000 + 05868954 n 0101 01 + 11 00 | form the substance of; "Greed and ambition composed his personality" -02621395 42 v 03 form 0 constitute 3 make 5 006 @ 02620587 v 0000 + 04933544 n 0201 + 03081021 n 0202 + 07092356 n 0101 ~ 02621706 v 0000 ~ 02745172 v 0000 01 + 11 00 | to compose or represent:"This wall forms the background of the stage setting"; "The branches made a roof"; "This makes a fine introduction" -02621706 42 v 01 chelate 0 004 @ 02621395 v 0000 + 13445972 n 0101 + 13445831 n 0101 + 14619033 n 0101 01 + 01 00 | form a chelate, in chemistry -02621853 42 v 02 separate 0 divide 0 002 + 08679369 n 0203 + 03894379 n 0202 01 + 11 00 | act as a barrier between; stand between; "The mountain range divides the two countries" -02622033 42 v 02 hang_together 0 interdepend 0 004 @ 01354673 v 0000 + 00726445 a 0201 + 13841863 n 0203 + 13841863 n 0202 01 + 01 00 | be connected; "In my heart I can make the world hang together" -02622234 42 v 05 connect 2 link 1 link_up 0 join 1 unite 2 009 + 00381680 n 0405 + 13911151 n 0404 + 00145218 n 0401 + 14419164 n 0202 + 03674440 n 0201 + 00563980 a 0101 ~ 02449183 v 0000 ~ 02622637 v 0000 ~ 02622969 v 0000 02 + 01 00 + 02 00 | be or become joined or united or linked; "The two streets connect to become a highway"; "Our paths joined"; "The travelers linked up again at the airport" -02622637 42 v 01 articulate 0 001 @ 02622234 v 0000 01 + 04 00 | unite by forming a joint or joints; "the ankle bone articulates with the leg bones to form the ankle bones" -02622812 42 v 01 intercommunicate 0 002 @ 02622969 v 0000 ~ 01355518 v 0000 01 + 01 00 | be interconnected, afford passage; "These rooms intercommunicate" -02622969 42 v 03 complect 0 interconnect 0 interlink 0 004 @ 02622234 v 0000 + 14420240 n 0201 + 07964324 n 0101 ~ 02622812 v 0000 01 + 01 00 | be interwoven or interconnected; "The bones are interconnected via the muscle" -02623194 42 v 02 bridge 0 bridge_over 0 003 @ 01354673 v 0000 + 13793330 n 0101 ^ 02623346 v 0102 01 + 11 00 | connect or reduce the distance between -02623346 42 v 03 tide_over 0 bridge_over 1 keep_going 0 001 @ 02669789 v 0000 01 + 10 00 | suffice for a period between two points; "This money will keep us going for another year" -02623529 42 v 01 become 0 006 ~ 00723349 v 0000 ~ 02623731 v 0000 ~ 02623906 v 0000 ~ 02624263 v 0000 ~ 02625786 v 0000 ~ 02674708 v 0000 01 + 01 00 | come into existence; "What becomes has duration" -02623731 42 v 01 root 0 003 @ 02623529 v 0000 + 08507558 n 0103 + 08507558 n 0104 02 + 01 00 + 02 00 | come into existence, originate; "The problem roots in her depression" -02623906 42 v 04 form 2 take_form 0 take_shape 0 spring 0 003 @ 02623529 v 0000 + 00927516 n 0101 ~ 00167824 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | develop into a distinctive entity; "our plans began to take shape" -02624128 42 v 01 head 4 001 @ 00144850 v 0000 01 + 01 00 | form a head or come or grow to a head; "The wheat headed early this year" -02624263 42 v 07 originate 0 arise 0 rise 1 develop 0 uprise 2 spring_up 0 grow 0 012 @ 02623529 v 0000 + 07324673 n 0703 + 01687363 a 0102 + 07323922 n 0101 + 07323922 n 0102 + 00240184 n 0105 $ 00342980 v 0000 ~ 02624806 v 0000 ~ 02625016 v 0000 ~ 02625339 v 0000 ~ 02626405 v 0000 ~ 02754463 v 0000 01 + 01 00 | come into existence; take on form or shape; "A new religious movement originated in that country"; "a love that sprang up from friendship"; "the idea for the book grew out of a short story"; "An interesting phenomenon uprose" -02624806 42 v 01 resurge 0 003 @ 02624263 v 0000 + 02013864 a 0101 + 01047338 n 0102 01 + 01 00 | rise again; "His need for a meal resurged"; "The candidate resurged after leaving politics for several years" -02625016 42 v 02 come_forth 0 emerge 0 004 @ 02624263 v 0000 + 00003553 a 0201 + 00050693 n 0202 ~ 02625187 v 0000 01 + 01 00 | happen or occur as a result of something -02625187 42 v 01 break e 001 @ 02625016 v 0000 01 + 04 00 | come forth or begin from a state of latency; "The first winter storm broke over New York" -02625339 42 v 02 come 4 follow 4 002 $ 02743565 v 0000 @ 02624263 v 0000 01 + 04 00 | to be the product or result; "Melons come from a vine"; "Understanding comes from experience" -02625521 42 v 01 bead 0 002 @ 00144850 v 0000 + 13901585 n 0102 02 + 01 00 + 04 00 | form into beads, as of water or sweat, for example -02625659 42 v 01 reticulate 0 003 @ 00109660 v 0000 + 04083113 n 0101 + 05501485 n 0101 01 + 01 00 | form a net or a network -02625786 42 v 03 arise 1 come_up 0 bob_up 0 001 @ 02623529 v 0000 01 + 01 00 | originate or come into being; "a question arose" -02625916 42 v 01 flocculate 0 003 @ 00109660 v 0000 + 01154351 a 0101 + 13482187 n 0101 01 + 11 00 | form into an aggregated lumpy or fluffy mass; "the protoplasms flocculated" -02626095 42 v 01 flocculate 1 002 @ 00126264 v 0000 + 01154351 a 0101 01 + 11 00 | cause to become a fluffy or lumpy aggregate; "The chemist flocculated the suspended material" -02626274 42 v 01 nucleate 0 002 @ 02626604 v 0000 + 05434927 n 0101 01 + 01 00 | form into a nucleus; "Some cells had nucleated" -02626405 42 v 02 well_up 0 swell 3 001 @ 02624263 v 0000 02 + 01 00 + 04 00 | come up (as of feelings and thoughts, or other ephemeral things); "Strong emotions welled up"; "Smoke swelled from it" -02626604 42 v 02 become 1 turn 0 008 @ 00381601 v 0000 + 07423365 n 0201 $ 00146138 v 0000 ~ 00237704 v 0000 ~ 00391203 v 0000 ~ 02626274 v 0000 $ 02626934 v 0000 ~ 02627363 v 0000 02 + 09 00 + 11 00 | undergo a change or development; "The water turned into ice"; "Her former friend became her worst enemy"; "He turned traitor" -02626934 42 v 01 turn d 002 $ 02626604 v 0000 @ 00126264 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | cause to change or turn into something different;assume new characteristics; "The princess turned the frog into a prince by kissing him"; "The alchemists tried to turn lead into gold" -02627221 42 v 01 carbonate 0 004 @ 00109660 v 0000 + 14799084 n 0101 + 14633206 n 0101 + 14798450 n 0101 01 + 11 00 | turn into a carbonate -02627363 42 v 03 come b add_up 1 amount 0 002 @ 02626604 v 0000 ~ 02627555 v 0000 01 + 11 00 | develop into; "This idea will never amount to anything"; "nothing came of his grandiose plans" -02627555 42 v 01 aggregate 0 002 @ 02627363 v 0000 + 04353803 n 0104 01 + 11 00 | amount in the aggregate to -02627666 42 v 01 originate_in 0 001 ~ 02627753 v 0000 02 + 10 00 + 11 00 | come from -02627753 42 v 01 stem 0 002 @ 02627666 v 0000 + 06300193 n 0104 01 + 11 00 | grow out of, have roots in, originate in; "The increase in the national debt stems from the last war" -02627934 42 v 09 necessitate 0 ask 0 postulate 0 need 0 require 0 take 0 involve 7 call_for 0 demand 0 014 $ 00756076 v 0000 + 05892651 n 0902 + 14449126 n 0902 + 05892651 n 0501 + 09367991 n 0401 + 14450691 n 0101 + 09367203 n 0101 ! 02629256 v 0101 ~ 00756076 v 0000 ~ 02628647 v 0000 ~ 02628832 v 0000 ~ 02628961 v 0000 ~ 02629111 v 0000 ~ 02635420 v 0000 04 + 11 00 + 24 05 + 34 05 + 34 01 | require as useful, just, or proper; "It takes nerve to do what she did"; "success usually requires hard work"; "This job asks a lot of patience and skill"; "This position demands a lot of personal sacrifice"; "This dinner calls for a spectacular dessert"; "This intervention does not postulate a patient's consent" -02628647 42 v 01 govern 0 001 @ 02627934 v 0000 01 + 11 00 | require to be in a certain grammatical case, voice, or mood; "most transitive verbs govern the accusative case in German" -02628832 42 v 01 draw 2 001 @ 02627934 v 0000 01 + 11 00 | require a specified depth for floating; "This boat draws 70 inches" -02628961 42 v 01 cost 1 002 @ 02627934 v 0000 + 05163807 n 0102 01 + 14 00 | require to lose, suffer, or sacrifice; "This mistake cost him his job" -02629111 42 v 02 cry_out_for 0 cry_for 0 001 @ 02627934 v 0000 01 + 11 00 | need badly or desperately; "This question cries out for an answer" -02629256 42 v 03 obviate 0 rid_of 0 eliminate 1 003 + 01079042 n 0101 ! 02627934 v 0101 ~ 02629390 v 0000 01 + 11 00 | do away with -02629390 42 v 03 preclude 0 rule_out 0 close_out 0 002 @ 02629256 v 0000 + 01765132 a 0101 01 + 11 00 | make impossible, especially beforehand -02629535 42 v 03 incorporate 0 contain 0 comprise 0 002 @ 02632940 v 0000 + 00373278 n 0101 02 + 11 00 + 21 00 | include or contain; have as a component; "A totally new idea is comprised in this paper"; "The record contains many old songs from the 1930's" -02629793 42 v 04 embrace 0 encompass 0 comprehend 0 cover 2 006 $ 01033527 v 0000 @ 02632940 v 0000 + 01863970 a 0301 + 00525453 a 0301 + 13794034 n 0302 + 14427537 n 0201 01 + 11 00 | include in scope; include as part of something broader; have as one's sphere or territory; "This group encompasses a wide range of people from different backgrounds"; "this should cover everyone in the group" -02630189 42 v 02 have 0 feature 0 023 $ 02203362 v 0000 $ 02204692 v 0000 + 05601758 n 0201 + 05849789 n 0201 ! 02632353 v 0102 ~ 00047610 v 0000 ~ 00047745 v 0000 ~ 01123609 v 0000 ~ 02630734 v 0000 ~ 02630871 v 0000 ~ 02631005 v 0000 ~ 02631163 v 0000 ~ 02631349 v 0000 ~ 02631659 v 0000 ~ 02632167 v 0000 ~ 02636132 v 0000 ~ 02715456 v 0000 ~ 02715595 v 0000 ~ 02715812 v 0000 ~ 02717102 v 0000 ~ 02730813 v 0000 ~ 02740034 v 0000 ~ 02746735 v 0000 01 + 11 00 | have as a feature; "This restaurant features the most famous chefs in France" -02630734 42 v 01 carry 8 001 @ 02630189 v 0000 01 + 11 00 | be equipped with (a mast or sail); "This boat can only carry a small sail" -02630871 42 v 01 bear 1 002 @ 02630189 v 0000 ~ 02359228 v 0000 02 + 08 00 + 11 00 | have; "bear a resemblance"; "bear a signature" -02631005 42 v 01 give_off 0 001 @ 02630189 v 0000 02 + 08 00 + 11 00 | have as a by-product; "The big cities gave off so many wonderful American qualities" -02631163 42 v 02 unite 1 combine 0 003 @ 02630189 v 0000 + 07373803 n 0202 + 07373803 n 0201 01 + 31 00 | have or possess in combination; "she unites charm with a good business sense" -02631349 42 v 01 star 0 004 @ 02630189 v 0000 + 10163723 n 0102 + 10648696 n 0101 ~ 02631537 v 0000 01 + 10 00 | feature as the star; "The movie stars Dustin Hoffman as an autistic man" -02631537 42 v 01 co-star 0 002 @ 02631349 v 0000 + 09967967 n 0101 01 + 10 00 | feature as the co-star in a performance -02631659 42 v 03 sport 0 feature 1 boast 0 003 @ 02630189 v 0000 + 03325769 n 0201 + 06268784 n 0201 01 + 11 00 | wear or display in an ostentatious or proud manner; "she was sporting a new hat" -02631856 42 v 01 exhibit 0 003 @ 02632167 v 0000 + 00522145 n 0101 ~ 02632035 v 0000 01 + 11 00 | show an attribute, property, knowledge, or skill; "he exhibits a great talent" -02632035 42 v 01 phosphoresce 0 003 @ 02631856 v 0000 + 00272555 a 0101 + 11491026 n 0101 01 + 11 00 | to exhibit phosphorescence -02632167 42 v 01 possess 0 002 @ 02630189 v 0000 ~ 02631856 v 0000 02 + 08 00 + 11 00 | have as an attribute, knowledge, or skill; "he possesses great knowledge about the Middle East" -02632353 42 v 02 miss 0 lack 0 004 + 14449405 n 0201 ! 02630189 v 0101 ~ 02632567 v 0000 ~ 02633714 v 0000 02 + 08 00 + 11 00 | be without; "This soup lacks salt"; "There is something missing in my jewelry box!" -02632567 42 v 01 want 1 005 @ 02632353 v 0000 + 10766025 n 0101 + 14449405 n 0103 + 14493426 n 0102 + 09367991 n 0102 02 + 08 00 + 11 00 | be without, lack; be deficient in; "want courtesy"; "want the strength to go on living"; "flood victims wanting food and shelter" -02632838 42 v 01 miss 2 000 02 + 01 00 + 02 00 | be absent; "The child had been missing for a week" -02632940 42 v 01 include 0 008 * 02630189 v 0000 ! 02633714 v 0101 ~ 02629535 v 0000 ~ 02629793 v 0000 ~ 02633218 v 0000 ~ 02634667 v 0000 ~ 02700867 v 0000 ~ 02705535 v 0000 01 + 11 00 | have as a part, be made up out of; "The list includes the names of many famous writers" -02633218 42 v 01 involve 2 001 @ 02632940 v 0000 01 + 11 00 | contain as a part; "Dinner at Joe's always involves at least six courses" -02633356 42 v 02 consist 1 comprise 1 001 @ 02604760 v 0000 01 + 11 00 | be composed of; "The land he conquered comprised several provinces"; "What does this dish consist of?" -02633534 42 v 02 equate 0 correspond 4 004 @ 02664769 v 0000 + 02071973 a 0202 + 13946760 n 0103 + 06669864 n 0101 02 + 04 00 + 11 01 | be equivalent or parallel, in mathematics -02633714 42 v 01 exclude 0 002 @ 02632353 v 0000 ! 02632940 v 0101 02 + 08 00 + 11 00 | lack or fail to include; "The cost for the trip excludes food and beverages" -02633881 42 v 03 prove 0 turn_out 0 turn_up 3 002 @ 02604760 v 0000 ~ 02634265 v 0000 04 + 06 00 + 07 00 + 28 00 + 34 00 | be shown or be found to be; "She proved to be right"; "The medicine turned out to save her life"; "She turned up HIV positive" -02634133 42 v 01 turn_out 1 001 @ 00339934 v 0000 01 + 34 00 | prove to be in the result or end; "It turns out that he was right" -02634265 42 v 02 result 0 ensue 0 009 @ 02633881 v 0000 + 00122844 a 0107 + 11410625 n 0104 + 07292694 n 0101 + 13941337 n 0101 ~ 00344886 v 0000 ~ 02634567 v 0000 ~ 02720149 v 0000 ~ 02720354 v 0000 02 + 01 00 + 34 02 | issue or terminate (in a specified way, state, etc.); end; "result in tragedy" -02634567 42 v 02 be_due 0 flow_from 0 001 @ 02634265 v 0000 02 + 11 00 + 04 01 | be the result of -02634667 42 v 01 subsume 0 002 @ 02632940 v 0000 + 05736002 n 0101 01 + 11 00 | contain or include; "This new system subsumes the old one" -02634808 42 v 02 entail 0 implicate 0 004 @ 02635956 v 0000 + 13860281 n 0201 + 05780885 n 0203 + 05920791 n 0203 01 + 11 00 | impose, involve, or imply as a necessary accompaniment or result; "What does this move entail?" -02635033 42 v 01 account_for 0 001 @ 02604760 v 0000 01 + 11 00 | be the reason or explanation for; "The recession accounts for the slow retail business" -02635189 42 v 03 entail 1 imply 0 mean 0 004 @ 02635547 v 0000 + 00723542 a 0201 + 05780885 n 0203 + 05780885 n 0102 01 + 11 00 | have as a logical consequence; "The water shortage means that we have to stop taking long showers" -02635420 42 v 01 compel 0 001 @ 02627934 v 0000 01 + 11 00 | necessitate or exact; "the water shortage compels conservation" -02635547 42 v 01 necessitate 1 002 @ 02635956 v 0000 ~ 02635189 v 0000 01 + 11 00 | cause to be a concomitant -02635659 42 v 03 leave 0 result 2 lead 4 007 $ 02730135 v 0000 @ 01752884 v 0000 + 00122844 a 0207 + 11410625 n 0204 + 07292694 n 0202 ~ 02635956 v 0000 $ 02729414 v 0000 01 + 11 00 | have as a result or residue; "The water left a mark on the silk dress"; "Her blood left a stain on the napkin" -02635956 42 v 01 lead c 003 @ 02635659 v 0000 ~ 02634808 v 0000 ~ 02635547 v 0000 01 + 04 00 | tend to or result in; "This remark lead to further arguments among the guests" -02636132 42 v 02 imply 1 involve 0 004 @ 02630189 v 0000 + 13793504 n 0201 + 05780885 n 0103 ~ 02636325 v 0000 01 + 11 00 | have as a necessary feature; "This decision involves many changes" -02636325 42 v 01 carry 2 002 @ 02636132 v 0000 $ 02746735 v 0000 01 + 11 00 | be necessarily associated with or result in or involve; "This crime carries a penalty of five years in prison" -02636516 42 v 01 carry c 003 @ 02203362 v 0000 + 00318735 n 0101 $ 02717102 v 0000 01 + 08 00 | have or possess something abstract; "I carry her image in my mind's eye"; "I will carry the secret to my grave"; "I carry these thoughts in the back of my head"; "I carry a lot of life insurance" -02636810 42 v 02 get_into 0 tangle_with 0 001 @ 00146138 v 0000 02 + 01 00 + 02 00 | get involved in or with -02636921 42 v 03 incriminate 0 imply 2 inculpate 0 010 @ 00930368 v 0000 + 00923993 a 0302 + 00923993 a 0301 + 07237758 n 0302 + 13793776 n 0201 + 07238102 n 0201 + 00924952 a 0104 + 07237758 n 0101 + 00767477 n 0101 + 00766234 n 0101 01 + 10 00 | suggest that someone is guilty -02637202 42 v 03 bide 0 abide 1 stay 1 006 @ 02727462 v 0000 ;u 07073447 n 0000 + 01053617 n 0301 + 01053920 n 0203 ~ 02619424 v 0000 ~ 02637466 v 0000 01 + 22 00 | dwell; "You can stay with me while you are in town"; "stay a bit longer--the day is still young" -02637466 42 v 02 overstay 0 outstay 0 001 @ 02637202 v 0000 01 + 08 00 | stay too long; "overstay or outstay one's welcome" -02637592 42 v 01 remain 5 004 @ 02604760 v 0000 + 13810818 n 0101 + 03286383 n 0102 + 13811184 n 0102 01 + 01 00 | be left; of persons, questions, problems, results, evidence, etc.; "There remains the question of who pulled the trigger"; "Carter remains the only President in recent history under whose Presidency the U.S. did not fight a war" -02637938 42 v 01 wait 0 006 + 01063939 n 0101 + 10763725 n 0101 + 01063939 n 0102 ~ 01138204 v 0000 ~ 02638206 v 0000 ~ 02638444 v 0000 02 + 02 00 + 22 00 | stay in one place and anticipate or expect something; "I had to wait on line for an hour to get the tickets" -02638206 42 v 02 kick_one's_heels 0 cool_one's_heels 0 001 @ 02637938 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | wait or pass the time aimlessly or futilely; be kept waiting; "She kicked her heels for hours at the gate of the Embassy" -02638444 42 v 03 stand_by 2 stick_around 0 stick_about 0 003 @ 02637938 v 0000 + 04301919 n 0101 + 10737103 n 0102 01 + 02 00 | be available or ready for a certain function or service -02638630 42 v 04 stand_by 1 stick_by 0 stick 0 adhere 1 001 @ 02604760 v 0000 03 + 08 00 + 09 00 + 21 03 | be loyal to; "She stood by her husband in times of trouble"; "The friends stuck together through the war" -02638845 42 v 02 adhere 2 stick 5 003 @ 02346895 v 0000 + 01212882 n 0103 + 10016103 n 0102 01 + 22 00 | be a devoted follower or supporter; "The residents of this village adhered to Catholicism"; "She sticks to her principles" -02639075 42 v 0d loiter 0 lounge 0 footle 0 lollygag 0 loaf 0 lallygag 0 hang_around 0 mess_about 0 tarry 0 linger 0 lurk 0 mill_about 0 mill_around 0 005 @ 02604760 v 0000 + 10270232 n 0a02 + 09988703 n 0205 + 10270232 n 0101 ~ 02639475 v 0000 02 + 02 00 + 22 00 | be about; "The high school students like to loiter in the Central Square"; "Who is this man that is hanging around the department?" -02639475 42 v 02 prowl 0 lurch 0 002 @ 02639075 v 0000 + 00292125 n 0101 02 + 02 00 + 22 00 | loiter about, with no apparent aim -02639606 42 v 0d bum 0 bum_around 0 bum_about 0 arse_around 0 arse_about 0 fuck_off 0 loaf 1 frig_around 0 waste_one's_time 0 lounge_around 0 loll 0 loll_around 0 lounge_about 0 002 @ 02417504 v 0000 + 10197967 n 0702 02 + 02 00 + 22 00 | be lazy or idle; "Her son is just bumming around all day" -02639905 42 v 02 lie_about 0 lie_around 0 001 @ 02417504 v 0000 02 + 02 00 + 22 00 | hang around idly; "She did all the work while he lay around" -02640053 42 v 02 lurk 1 skulk 0 003 @ 02144835 v 0000 + 10277352 n 0202 + 10277352 n 0101 01 + 22 00 | lie in wait, lie in ambush, behave in a sneaky and secretive manner -02640226 42 v 02 dwell_on 0 linger_over 0 001 @ 02640440 v 0000 01 + 08 00 | delay -02640311 42 v 01 boggle 0 001 @ 02640440 v 0000 01 + 02 00 | hesitate when confronted with a problem, or when in doubt or fear -02640440 42 v 03 hesitate 0 waver 0 waffle 0 016 * 00687523 v 0000 + 10762212 n 0301 + 01063350 n 0202 + 10603528 n 0201 + 05699434 n 0203 + 00686573 a 0101 + 05699434 n 0101 + 04645943 n 0103 + 10603528 n 0104 + 04645943 n 0102 + 10603528 n 0103 ~ 02640226 v 0000 ~ 02640311 v 0000 ~ 02640906 v 0000 ~ 02706046 v 0000 ~ 02740204 v 0000 03 + 02 00 + 28 00 + 29 00 | pause or hold back in uncertainty or unwillingness; "Authorities hesitate to quote exact figures" -02640906 42 v 02 hover 1 linger 1 001 @ 02640440 v 0000 01 + 22 00 | move to and fro; "The shy student lingered in the corner" -02641035 42 v 02 hesitate 1 pause 0 007 @ 02641957 v 0000 + 01062817 n 0201 + 15271008 n 0201 + 01063350 n 0101 + 10603528 n 0104 ~ 01061881 v 0000 ~ 02641298 v 0000 02 + 02 00 + 29 00 | interrupt temporarily an activity before continuing; "The speaker paused" -02641298 42 v 01 scruple 0 003 @ 02641035 v 0000 + 05957737 n 0101 + 07525555 n 0101 01 + 02 00 | hesitate on moral grounds; "The man scrupled to perjure himself" -02641463 42 v 03 wait 1 hold_off 0 hold_back 0 005 @ 02367363 v 0000 + 15272029 n 0105 + 10763725 n 0101 ~ 02641741 v 0000 ~ 02641957 v 0000 03 + 02 00 + 08 00 + 33 00 | wait before acting; "the scientists held off announcing their results until they repeated the experiment" -02641741 42 v 01 hold_out 2 003 @ 02641463 v 0000 + 10180580 n 0101 + 07150328 n 0101 02 + 02 00 + 22 00 | wait uncompromisingly for something desirable; "He held out for the dessert and did not touch the cheeses" -02641957 42 v 01 delay 0 006 @ 02641463 v 0000 + 15272029 n 0101 ~ 02641035 v 0000 ~ 02642238 v 0000 ~ 02642610 v 0000 ~ 02642814 v 0000 01 + 08 00 | act later than planned, scheduled, or required; "Don't delay your application to graduate school or else it won't be considered" -02642238 42 v 07 procrastinate 0 stall 0 drag_one's_feet 0 drag_one's_heels 0 shillyshally 2 dilly-dally 0 dillydally 0 007 @ 02641957 v 0000 + 09988703 n 0702 + 01067362 n 0503 + 01075725 n 0201 + 01067362 n 0101 + 10478626 n 0101 ~ 02642610 v 0000 01 + 02 00 | postpone doing what one should be doing; "He did not want to write the letter and procrastinated for days" -02642610 42 v 01 procrastinate 1 003 @ 02642238 v 0000 @ 02641957 v 0000 + 05062370 n 0102 02 + 08 00 + 11 00 | postpone or delay needlessly; "He procrastinated the matter until it was almost too late" -02642814 42 v 0a postpone 0 prorogue 0 hold_over 2 put_over 0 table 0 shelve 0 set_back 1 defer 0 remit 0 put_off 0 015 * 02477755 v 0000 * 00795475 v 0000 @ 02641957 v 0000 + 06759974 n 0a01 + 01066881 n 0802 + 01066881 n 0803 + 10588724 n 0601 + 01067192 n 0201 + 01066881 n 0101 + 10478626 n 0102 ~ 02643421 v 0000 ~ 02643574 v 0000 ~ 02643740 v 0000 ~ 02643872 v 0000 ~ 02644035 v 0000 02 + 08 00 + 21 00 | hold back to a later time; "let's postpone the exam" -02643280 42 v 01 hold_over 1 002 @ 02727462 v 0000 + 10180791 n 0101 01 + 02 00 | continue a term of office past the normal period of time -02643421 42 v 01 call 9 001 @ 02642814 v 0000 01 + 08 00 | stop or postpone because of adverse conditions, such as bad weather; "call a football game" -02643574 42 v 01 hold c 002 @ 02642814 v 0000 + 15272029 n 0102 01 + 11 00 | stop dealing with; "hold all calls to the President's office while he is in a meeting" -02643740 42 v 01 suspend 0 001 @ 02642814 v 0000 01 + 08 00 | render temporarily ineffective; "the prison sentence was suspended" -02643872 42 v 01 probate 0 003 @ 02642814 v 0000 + 15297303 n 0101 + 01258251 n 0101 01 + 09 00 | put a convicted person on probation by suspending his sentence -02644035 42 v 02 reprieve 0 respite 1 004 @ 02642814 v 0000 + 01259034 n 0202 + 01259034 n 0101 + 06548317 n 0101 01 + 09 00 | postpone the punishment of a convicted criminal, such as an execution -02644234 42 v 05 predominate 0 dominate 0 rule 0 reign 0 prevail 2 008 + 05122099 n 0502 + 15260964 n 0401 + 01066787 a 0103 + 14442749 n 0102 + 14442749 n 0101 ~ 02644622 v 0000 ~ 02644771 v 0000 ~ 02645597 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be larger in number, quantity, power, status or importance; "Money reigns supreme here"; "Hispanics predominate in this neighborhood" -02644622 42 v 01 override 3 002 @ 02644234 v 0000 + 00231567 n 0102 01 + 11 00 | prevail over; "health considerations override financial concerns" -02644771 42 v 01 overarch 0 001 @ 02644234 v 0000 01 + 11 00 | be central or dominant; "This scene overarches the entire first act" -02644905 42 v 01 outnumber 0 001 @ 02645007 v 0000 03 + 08 00 + 09 00 + 11 00 | be larger in number -02645007 42 v 05 total 0 number 0 add_up 3 come c amount 1 012 @ 02604760 v 0000 + 05861067 n 0502 + 00033615 n 0503 + 06807198 n 0202 + 13582013 n 0201 + 05121418 n 0201 + 04353803 n 0102 + 05861067 n 0103 ~ 00638585 v 0000 ~ 02644905 v 0000 ~ 02645389 v 0000 ~ 02745332 v 0000 01 + 11 00 | add up in number or quantity; "The bills amounted to $2,000"; "The bill came to $2,000" -02645389 42 v 02 average 0 average_out 0 002 @ 02645007 v 0000 + 06021761 n 0101 01 + 11 00 | amount to or come to an average, without loss or gain; "The number of hours I work per work averages out to 40" -02645597 42 v 04 preponderate 0 outweigh 0 overbalance 0 outbalance 0 005 @ 02644234 v 0000 + 00792202 a 0105 + 05191486 n 0101 + 05028159 n 0101 + 05122099 n 0101 01 + 01 00 | weigh more heavily; "these considerations outweigh our wishes" -02645839 42 v 03 count 0 matter 0 weigh 3 005 @ 02604760 v 0000 + 05814291 n 0204 + 05169242 n 0201 ^ 02678663 v 0201 ~ 02646064 v 0000 02 + 01 00 + 34 00 | have weight; have import, carry weight; "It does not matter much" -02646064 42 v 02 weigh 4 press 1 001 @ 02645839 v 0000 01 + 04 00 | to be oppressive or burdensome; "weigh heavily on the mind", "Something pressed on his mind" -02646227 42 v 01 rate 1 002 @ 02604760 v 0000 + 14429382 n 0101 02 + 06 00 + 11 00 | be worthy of or have a certain rating; "This bond rates highly" -02646378 42 v 02 deserve 0 merit 4 004 @ 02604760 v 0000 + 02586747 a 0202 + 04807050 n 0202 ~ 02646601 v 0000 02 + 08 00 + 11 00 | be worthy or deserving; "You deserve a promotion after all the hard work you have done" -02646601 42 v 01 have_it_coming 0 001 @ 02646378 v 0000 01 + 02 00 | deserve (either good or bad); "It's too bad he got fired, but he sure had it coming" -02646757 42 v 01 buy 0 003 @ 02604760 v 0000 + 13253751 n 0102 $ 02207206 v 0000 01 + 11 00 | be worth or be capable of buying; "This sum will buy you a ride on the train" -02646931 42 v 01 dominate 1 008 @ 02536557 v 0000 + 00791227 a 0101 + 14442933 n 0101 + 14442530 n 0101 + 01128390 n 0101 + 14441825 n 0101 ~ 02647184 v 0000 ~ 02647311 v 0000 02 + 01 00 + 02 00 | be in control; "Her husband completely dominates her" -02647184 42 v 01 overbear 0 001 @ 02646931 v 0000 02 + 08 00 + 09 00 | overcome; "overbear criticism, protest, or arguments" -02647311 42 v 01 possess 2 001 @ 02646931 v 0000 01 + 10 00 | enter into and control, as of emotions or ideas; "What possessed you to buy this house?"; "A terrible rage possessed her" -02647497 42 v 05 prevail 0 persist 0 die_hard 0 run 3 endure 8 008 $ 02612234 v 0000 @ 00118523 v 0000 + 10721124 n 0302 + 01758339 a 0201 + 04765355 n 0101 + 01066787 a 0102 ~ 00349951 v 0000 ~ 02647918 v 0000 01 + 01 00 | continue to exist; "These stories die hard"; "The legend of Elvis endures" -02647798 42 v 01 stick 4 001 @ 02731024 v 0000 01 + 01 00 | endure; "The label stuck to her for the rest of her life" -02647918 42 v 01 reverberate 0 002 @ 02647497 v 0000 + 11416722 n 0102 01 + 08 00 | have a long or continuing effect; "The discussions with my teacher reverberated throughout my adult life" -02648110 42 v 02 run 5 run_for 0 001 @ 02704928 v 0000 01 + 11 00 | extend or continue for a certain period of time; "The film runs 5 hours" -02648253 42 v 01 perpetuate 0 003 @ 02679899 v 0000 + 01018366 n 0103 ~ 02648406 v 0000 01 + 08 00 | cause to continue or prevail; "perpetuate a myth" -02648406 42 v 01 eternize 0 001 @ 02648253 v 0000 01 + 08 00 | cause to continue indefinitely -02648502 42 v 03 prevail 1 hold 2 obtain 0 001 @ 02603699 v 0000 01 + 01 00 | be valid, applicable, or true; "This theory still holds" -02648639 42 v 03 occupy 0 reside 1 lodge_in 0 013 @ 02649830 v 0000 + 02125409 a 0201 + 10523519 n 0201 + 01053920 n 0201 + 01053920 n 0202 + 00086809 n 0101 + 10523519 n 0103 + 10523519 n 0102 + 01054335 n 0101 ~ 01856096 v 0000 ~ 02649600 v 0000 ~ 02649712 v 0000 ~ 02657080 v 0000 02 + 08 00 + 11 00 | live (in a certain place); "She resides in Princeton"; "he occupies two rooms on the top floor" -02649042 42 v 02 occupy 1 fill 0 004 @ 02655135 v 0000 + 15141486 n 0101 ~ 02649305 v 0000 ~ 02649493 v 0000 01 + 11 00 | occupy the whole of; "The liquid fills the container" -02649220 42 v 02 douse 9 dowse 9 001 @ 00214951 v 0000 01 + 11 00 | wet thoroughly -02649305 42 v 01 crowd 0 003 @ 02649042 v 0000 + 08182379 n 0101 + 13933841 n 0101 02 + 08 00 + 11 00 | fill or occupy to the point of overflowing; "The students crowded the auditorium" -02649493 42 v 01 take_up 0 001 @ 02649042 v 0000 01 + 11 00 | take up time or space; "take up the slack" -02649600 42 v 01 stay_at 1 001 @ 02648639 v 0000 01 + 08 00 | reside temporarily; "I'm staying at the Hilton" -02649712 42 v 01 squat 0 002 @ 02648639 v 0000 + 10643095 n 0101 02 + 02 00 + 22 00 | occupy (a dwelling) illegally -02649830 42 v 04 populate 0 dwell 0 live 8 inhabit 0 023 @ 02655135 v 0000 + 01054545 n 0402 + 09620078 n 0401 + 01054545 n 0401 + 01423676 a 0302 + 01423676 a 0301 + 10268180 n 0301 ^ 01177314 v 0301 ^ 01177505 v 0301 + 09620078 n 0203 + 03259505 n 0201 + 08179879 n 0101 ~ 02460483 v 0000 ~ 02608176 v 0000 ~ 02648639 v 0000 ~ 02650552 v 0000 ~ 02650840 v 0000 ~ 02651014 v 0000 ~ 02651193 v 0000 ~ 02652494 v 0000 ~ 02653996 v 0000 ~ 02654947 v 0000 ~ 02656763 v 0000 01 + 22 00 | inhabit or live in; be an inhabitant of; "People lived in Africa millions of years ago"; "The people inhabited the islands that are now deserted"; "this kind of fish dwells near the bottom of the ocean"; "deer are populating the woods" -02650552 42 v 04 reside 0 shack 0 domicile 0 domiciliate 0 007 @ 02649830 v 0000 + 03547054 n 0204 + 02125409 a 0101 + 10523519 n 0101 + 01053920 n 0101 + 01053920 n 0102 ~ 02616542 v 0000 01 + 22 00 | make one's home in a particular place or community; "may parents reside in Florida" -02650840 42 v 01 people 0 004 @ 02649830 v 0000 + 08180190 n 0105 + 08160276 n 0102 + 07942152 n 0101 01 + 22 00 | furnish with people; "The plains are sparsely populated" -02651014 42 v 01 overpopulate 0 002 @ 02649830 v 0000 + 08178935 n 0101 01 + 22 00 | cause to have too great a population; "Some towns in New Jersey are becoming overpopulated" -02651193 42 v 03 cohabit 0 live_together 0 shack_up 0 003 @ 02649830 v 0000 + 01054876 n 0101 ~ 02739121 v 0000 02 + 02 00 + 22 00 | share living quarters; usually said of people who are not married and live together as a couple -02651424 42 v 02 lodge 0 accommodate 1 010 @ 02459173 v 0000 + 02672371 n 0201 + 01210816 n 0201 + 03685486 n 0101 + 03195485 n 0104 + 01054227 n 0101 ^ 02648639 v 0103 ~ 02651745 v 0000 ~ 02651853 v 0000 ~ 02653159 v 0000 02 + 09 00 + 20 00 | provide housing for; "We are lodging three foreign students this semester" -02651745 42 v 01 barrack 0 002 @ 02651424 v 0000 + 02794779 n 0101 02 + 09 00 + 10 00 | lodge in barracks -02651853 42 v 01 keep 1 001 @ 02651424 v 0000 02 + 08 00 + 09 00 | supply with room and board; "He is keeping three women in the guest cottage"; "keep boarders" -02652016 42 v 01 keep c 002 @ 01739814 v 0000 ~ 02652158 v 0000 01 + 08 00 | raise; "She keeps a few chickens in the yard"; "he keeps bees" -02652158 42 v 01 herd 0 005 @ 02652016 v 0000 + 07994555 n 0101 + 07994331 n 0101 + 10171567 n 0101 ~ 02652376 v 0000 01 + 08 00 | keep, move, or drive animals; "Who will be herding the cattle when the cowboy dies?" -02652376 42 v 01 wrangle 0 002 @ 02652158 v 0000 + 10186216 n 0102 01 + 08 00 | herd and care for; "wrangle horses" -02652494 42 v 01 lodge 2 007 @ 02649830 v 0000 + 10269458 n 0101 + 03685486 n 0101 + 03541696 n 0104 + 03195485 n 0104 + 01054227 n 0101 ~ 02652729 v 0000 01 + 22 00 | be a lodger; stay temporarily; "Where are you lodging in Paris?" -02652729 42 v 02 sleep_over 0 stay_over 0 002 @ 02652494 v 0000 + 07455984 n 0101 02 + 02 00 + 22 00 | stay overnight; "The boy's friends were allowed to sleep over after the birthday party" -02652922 42 v 02 lay_over 0 stop_over 0 003 @ 01862918 v 0000 + 01056411 n 0202 + 01056411 n 0103 02 + 01 00 + 02 00 | interrupt a journey temporarily, e.g., overnight; "We had to stop over in Venezuela on our flight back from Brazil" -02653159 42 v 03 quarter 0 billet 0 canton 0 006 @ 02651424 v 0000 ;c 08199025 n 0000 + 02944826 n 0303 + 02839200 n 0201 + 03679384 n 0102 + 04031884 n 0101 02 + 02 00 + 09 00 | provide housing for (military personnel) -02653381 42 v 04 dwell 1 consist 0 lie 1 lie_in 0 002 @ 02603699 v 0000 + 08624196 n 0301 01 + 04 00 | originate (in); "The problems dwell in the social injustices in this country" -02653564 42 v 01 inhere 0 004 @ 02719930 v 0000 + 01348528 a 0104 + 00941940 a 0102 + 13958138 n 0101 01 + 04 00 | be inherent in something -02653706 42 v 02 pertain 0 appertain 0 004 @ 02719930 v 0000 + 02354897 a 0205 + 02671421 n 0202 + 01975833 a 0101 01 + 12 00 | be a part or attribute of -02653862 42 v 01 go 6 000 02 + 10 00 + 11 00 | be awarded; be allotted; "The first prize goes to Mary"; "Her money went on clothes" -02653996 42 v 05 camp 0 encamp 0 camp_out 0 bivouac 0 tent 0 010 @ 02649830 v 0000 + 01055165 n 0504 + 04411264 n 0501 + 08518171 n 0405 + 02944826 n 0404 + 01055165 n 0202 + 02945161 n 0101 + 02944826 n 0101 + 09889941 n 0101 + 01055165 n 0101 02 + 02 00 + 22 00 | live in or as if in a tent; "Can we go camping again this summer?"; "The circus tented near the town"; "The houseguests had to camp in the living room" -02654416 42 v 01 inhabit 2 004 @ 02655135 v 0000 + 01054545 n 0102 ~ 02654585 v 0000 ~ 02654686 v 0000 01 + 08 00 | be present in; "sweet memories inhabit this house" -02654585 42 v 01 infest 0 001 @ 02654416 v 0000 01 + 04 00 | live on or in a host, as of parasites -02654686 42 v 03 invade 0 overrun 0 infest 2 004 @ 02654416 v 0000 + 14452616 n 0301 + 07996412 n 0301 + 07429976 n 0101 02 + 04 00 + 11 00 | occupy in large numbers or live on a host; "the Kudzu plant infests much of the South and is spreading to the North" -02654947 42 v 01 nest 0 003 @ 02649830 v 0000 + 01514926 n 0101 + 09369169 n 0101 01 + 01 00 | inhabit a nest, usually after building; "birds are nesting outside my window every Spring" -02655135 42 v 01 be 5 021 ~ 02607830 v 0000 ~ 02612762 v 0000 ~ 02649042 v 0000 ~ 02649830 v 0000 ~ 02654416 v 0000 ~ 02655698 v 0000 ~ 02685665 v 0000 ~ 02685951 v 0000 ~ 02686471 v 0000 ~ 02687916 v 0000 ~ 02690093 v 0000 ~ 02690708 v 0000 ~ 02691214 v 0000 ~ 02692882 v 0000 ~ 02693691 v 0000 ~ 02705913 v 0000 ~ 02720544 v 0000 ~ 02723445 v 0000 ~ 02731390 v 0000 ~ 02737876 v 0000 ~ 02743565 v 0000 02 + 01 00 + 22 00 | occupy a certain position or area; be somewhere; "Where is my umbrella?" "The toolshed is in the back"; "What is behind this behavior?" -02655698 42 v 05 stand_back 0 keep_one's_eyes_off 0 keep_one's_distance 0 keep_one's_hands_off 0 stay_away 0 001 @ 02655135 v 0000 02 + 02 00 + 22 00 | stay clear of, avoid; "Keep your hands off my wife!"; "Keep your distance from this man--he is dangerous" -02655958 42 v 01 shine 4 001 @ 02604760 v 0000 01 + 01 00 | be clear and obvious; "A shining example" -02656062 42 v 01 chamber 0 003 @ 02459173 v 0000 + 03004146 n 0101 + 03003730 n 0101 02 + 08 00 + 09 00 | place in a chamber -02656189 42 v 02 harbor 0 harbour 0 005 @ 02656390 v 0000 + 03492250 n 0202 + 08644045 n 0202 + 03492250 n 0101 + 08644045 n 0101 02 + 08 00 + 09 00 | secretly shelter (as of fugitives or criminals) -02656390 42 v 01 shelter 0 010 @ 02327200 v 0000 + 13313733 n 0102 + 14539960 n 0102 + 04191943 n 0101 + 04191595 n 0101 ~ 02459173 v 0000 ~ 02459799 v 0000 ~ 02459915 v 0000 ~ 02460070 v 0000 ~ 02656189 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | provide shelter for; "After the earthquake, the government could not provide shelter for the thousands of homeless people" -02656763 42 v 02 board 0 room 0 006 @ 02649830 v 0000 + 04105893 n 0201 + 10269458 n 0203 + 07565259 n 0101 + 03201208 n 0102 + 09862345 n 0101 01 + 22 00 | live and take one's meals at or in; "she rooms in an old boarding house" -02656995 42 v 01 take_in 0 001 @ 02459173 v 0000 01 + 08 00 | provide with shelter -02657080 42 v 01 crash 0 001 @ 02648639 v 0000 01 + 08 00 | occupy, usually uninvited; "My son's friends crashed our house last weekend" -02657219 42 v 08 match 0 fit 4 correspond 0 check 8 jibe 0 gibe 0 tally 0 agree 0 027 $ 02700104 v 0000 @ 02664769 v 0000 + 00577122 a 0802 + 04713428 n 0801 ! 02718543 v 0801 + 02071973 a 0302 + 04713428 n 0302 + 03728811 n 0101 ~ 02658050 v 0000 $ 02658283 v 0000 ~ 02658447 v 0000 ~ 02658570 v 0000 ~ 02658734 v 0000 ~ 02658867 v 0000 ~ 02658979 v 0000 ~ 02659222 v 0000 ~ 02659358 v 0000 ~ 02659541 v 0000 ~ 02663340 v 0000 ~ 02665282 v 0000 ~ 02667900 v 0000 ~ 02699783 v 0000 ~ 02699941 v 0000 ~ 02700104 v 0000 ~ 02712243 v 0000 ~ 02718178 v 0000 ~ 02750432 v 0000 02 + 01 00 + 04 00 | be compatible, similar or consistent; coincide in their characteristics; "The two stories don't agree in many details"; "The handwriting checks with the signature on the check"; "The suspect's fingerprints don't match those on the gun" -02658050 42 v 01 consist 2 003 @ 02657219 v 0000 + 04745932 n 0101 + 04745932 n 0102 01 + 01 00 | be consistent in form, tenor, or character; be congruous; "Desires are to be satisfied only so far as consists with an approved end" -02658283 42 v 02 check 9 check_out 6 002 $ 02657219 v 0000 + 00141806 n 0101 01 + 01 00 | be verified or confirmed; pass inspection; "These stories don't check!" -02658447 42 v 01 look 2 001 @ 02657219 v 0000 02 + 08 00 + 11 00 | accord in appearance with; "You don't look your age!" -02658570 42 v 01 answer 0 001 @ 02657219 v 0000 02 + 04 00 + 11 00 | match or correspond; "The drawing of the suspect answers to the description the victim gave" -02658734 42 v 01 coincide 1 002 @ 02657219 v 0000 + 00561757 a 0101 01 + 01 00 | be the same; "our views on this matter coincided" -02658867 42 v 01 align 0 002 @ 02657219 v 0000 + 01000068 n 0101 01 + 04 00 | be or come into adjustment with -02658979 42 v 01 correlate 0 007 @ 02657219 v 0000 + 01974298 a 0101 + 13841651 n 0101 + 06031248 n 0101 + 06032246 n 0103 + 05858407 n 0101 $ 00713996 v 0000 01 + 01 00 | to bear a reciprocal or mutual relation; "Do these facts correlate?" -02659222 42 v 01 parallel 0 002 @ 02657219 v 0000 + 04746430 n 0103 01 + 11 00 | be parallel to; "Their roles are paralleled by ours" -02659358 42 v 03 twin 0 duplicate 0 parallel 1 002 @ 02657219 v 0000 + 03117939 n 0103 01 + 11 00 | duplicate or match; "The polished surface twinned his face and chest in reverse" -02659541 42 v 01 square 0 001 @ 02657219 v 0000 01 + 01 00 | be compatible with; "one idea squares with another" -02659656 42 v 01 square 1 001 @ 00150287 v 0000 02 + 08 00 + 09 00 | cause to match, as of ideas or acts -02659763 42 v 02 fit 2 go 5 006 $ 02700455 v 0000 @ 02735753 v 0000 + 04930307 n 0101 + 00795008 n 0101 ~ 02660014 v 0000 ~ 02660147 v 0000 01 + 01 00 | be the right size or shape; fit correctly or as desired; "This piece won't fit into the puzzle" -02660014 42 v 01 tessellate 0 001 @ 02659763 v 0000 01 + 01 00 | fit together exactly, of identical shapes; "triangles tessellate" -02660147 42 v 01 joint 0 003 @ 02659763 v 0000 + 03600977 n 0101 + 13911151 n 0103 01 + 01 00 | fit as if by joints; "The boards fit neatly" -02660290 42 v 01 dovetail 0 003 > 02659763 v 0000 @ 00300537 v 0000 + 03228967 n 0101 01 + 08 00 | fit together tightly, as if by means of a dovetail -02660442 42 v 03 coincide 0 co-occur 0 cooccur 0 005 @ 02604477 v 0000 + 07284554 n 0304 ^ 02660819 v 0303 + 02378496 a 0101 ~ 02660631 v 0000 02 + 01 00 + 04 00 | go with, fall together -02660631 42 v 01 overlap 3 004 @ 02660442 v 0000 + 05048833 n 0101 + 05764365 n 0101 ~ 02718309 v 0000 03 + 01 00 + 04 00 + 08 00 | coincide partially or wholly; "Our vacations overlap" -02660819 42 v 05 collocate_with 0 construe_with 0 cooccur_with 0 co-occur_with 0 go_with 0 001 @ 02716165 v 0000 01 + 11 00 | go or occur together; "The word 'hot' tends to cooccur with 'cold'" -02661015 42 v 01 fall 2 002 $ 00342443 v 0000 @ 02604760 v 0000 01 + 04 00 | be due; "payments fall on the 1st of the month" -02661142 42 v 01 scan 0 002 @ 02662979 v 0000 ;c 07092592 n 0000 01 + 01 00 | conform to a metrical pattern -02661252 42 v 04 deviate 0 vary 0 diverge 1 depart 0 022 @ 02666239 v 0000 + 07366289 n 0403 + 02066662 a 0301 + 07366289 n 0302 + 02068277 a 0201 + 11415084 n 0201 + 10341660 n 0203 + 00194969 n 0201 + 07366627 n 0203 + 00194969 n 0202 + 01596122 a 0102 + 10419047 n 0103 + 07366289 n 0101 + 06022291 n 0101 + 04802776 n 0101 + 00737399 n 0101 + 10419047 n 0102 ! 02662979 v 0101 + 01596122 a 0103 ~ 02661769 v 0000 ~ 02662076 v 0000 ~ 02663141 v 0000 02 + 01 00 + 04 00 | be at variance with; be out of line with -02661769 42 v 01 aberrate 0 005 @ 02661252 v 0000 ;c 06100778 n 0000 + 14503665 n 0103 + 11420139 n 0101 + 14503665 n 0101 01 + 01 00 | diverge or deviate from the straight path; produce aberration; "The surfaces of the concave lens may be proportioned so as to aberrate exactly equal to the convex lens" -02662076 42 v 01 aberrate 1 005 @ 02661252 v 0000 + 14503665 n 0103 + 14386590 n 0101 + 09755893 n 0101 + 14503665 n 0101 01 + 02 00 | diverge from the expected; "The President aberrated from being a perfect gentleman" -02662297 42 v 01 vary 1 011 @ 02666239 v 0000 + 02507515 a 0102 + 02504131 a 0101 + 02505415 a 0101 + 02068277 a 0101 + 13893310 n 0103 + 11415084 n 0101 + 07337390 n 0101 + 05864177 n 0102 ~ 02662647 v 0000 ~ 02662821 v 0000 01 + 01 00 | be subject to change in accordance with a variable; "Prices vary"; "His moods vary depending on the weather" -02662647 42 v 01 co-vary 0 004 @ 02662297 v 0000 ;c 06018465 n 0000 + 06025287 n 0101 + 06032752 n 0101 01 + 01 00 | vary in the same time period (of two random variables) -02662821 42 v 01 drift 3 002 $ 00572502 v 0000 @ 02662297 v 0000 01 + 01 00 | vary or move from a fixed point or course; "stock prices are drifting higher" -02662979 42 v 01 conform 6 004 + 01203676 n 0102 + 04713692 n 0102 ! 02661252 v 0101 ~ 02661142 v 0000 03 + 01 00 + 04 00 + 27 00 | be similar, be in line with -02663141 42 v 03 contradict 0 belie 0 negate 0 006 @ 02661252 v 0000 + 06751572 n 0301 + 02356579 a 0102 + 00578234 a 0103 + 00508750 a 0101 + 02382144 a 0101 01 + 11 00 | be in contradiction with -02663340 42 v 04 corroborate 0 underpin 0 bear_out 0 support 0 005 @ 02657219 v 0000 + 00154433 n 0402 + 02355521 a 0105 + 02355521 a 0106 + 06650431 n 0103 02 + 08 00 + 11 00 | support with evidence or authority or make more certain or confirm; "The stories and claims were born out by the evidence" -02663643 42 v 04 repose_on 0 rest_on 0 build_on 0 build_upon 0 002 @ 02711987 v 0000 ~ 02731814 v 0000 01 + 11 00 | be based on; of theories and claims, for example; "What's this new evidence based on?" -02663848 42 v 02 depend_on 1 rely_on 2 000 02 + 08 00 + 09 00 | be dependent on, as for support or maintenance; "elderly parents often depend on their adult children" -02664017 42 v 04 depend_on 2 depend_upon 2 rely_on 0 rely_upon 0 000 02 + 08 00 + 09 00 | put trust in with confidence; "she is someone you can really rely on when times get rough"; "you can rely on his discretion" -02664234 42 v 01 depend 0 004 @ 02604760 v 0000 + 00556174 a 0101 + 00556174 a 0102 ~ 02664413 v 0000 01 + 01 00 | be contingent upon (something that is elided); "That depends" -02664413 42 v 02 hang_by_a_thread 0 hang_by_a_hair 0 001 @ 02664234 v 0000 01 + 02 00 | depend on a small thing or be at risk; "His life now hangs by a thread" -02664575 42 v 01 underlie 0 001 @ 02604760 v 0000 01 + 11 00 | be or form the base for -02664664 42 v 03 rest c reside c repose c 001 @ 02705535 v 0000 01 + 04 00 | be inherent or innate in; -02664769 42 v 02 equal 0 be 7 005 ! 02666239 v 0101 ~ 02633534 v 0000 ~ 02657219 v 0000 ~ 02699497 v 0000 ~ 02753100 v 0000 02 + 09 00 + 11 00 | be identical or equivalent to; "One dollar equals 1,000 rubles these days!" -02664992 42 v 01 amount 3 001 ~ 02665124 v 0000 01 + 11 00 | be tantamount or equivalent to; "Her action amounted to a rebellion" -02665124 42 v 01 make b 002 $ 02745332 v 0000 @ 02664992 v 0000 01 + 11 00 | amount to; "This salary increase makes no difference to my standard of living" -02665282 42 v 01 resemble 0 008 @ 02657219 v 0000 + 04747445 n 0101 ~ 02665617 v 0000 ~ 02665767 v 0000 ~ 02665937 v 0000 ~ 02666060 v 0000 ~ 02674879 v 0000 ~ 02675458 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | appear like; be similar or bear a likeness to; "She resembles her mother very much"; "This paper resembles my own work" -02665617 42 v 01 look_like 0 001 @ 02665282 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | bear a physical resemblance to; "She looks like her mother" -02665767 42 v 01 come_to_life 0 001 @ 02665282 v 0000 02 + 01 00 + 02 00 | be lifelike, as of a painting; "If you look at it long enough, this portrait comes to life!" -02665937 42 v 01 take_after 0 001 @ 02665282 v 0000 01 + 09 00 | be similar to a relative; "She takes after her father!" -02666060 42 v 02 approximate 0 come_close 0 003 @ 02665282 v 0000 + 00915976 a 0102 ~ 02703952 v 0000 02 + 11 00 + 04 02 | be close or similar; "Her results approximate my own" -02666239 42 v 01 differ 0 010 + 02070342 a 0101 + 00490413 a 0101 + 02070030 a 0101 + 01410363 a 0103 + 02064745 a 0101 + 04748836 n 0101 ! 02664769 v 0101 ~ 02661252 v 0000 ~ 02662297 v 0000 ~ 02666882 v 0000 02 + 01 00 + 04 00 | be different; "These two tests differ in only one respect" -02666531 42 v 02 oppose 0 counterbalance 0 003 @ 02666882 v 0000 + 03118539 n 0202 ~ 02666691 v 0000 02 + 09 00 + 11 00 | contrast with equal weight or force -02666691 42 v 03 counterweight 0 counterpoise 0 counterpose 0 003 @ 02666531 v 0000 + 03118539 n 0203 + 03118539 n 0101 02 + 11 00 + 21 00 | constitute a counterweight or counterbalance to -02666882 42 v 02 contrast 0 counterpoint 0 009 @ 02666239 v 0000 + 02066142 a 0102 + 02382572 a 0101 + 13855627 n 0101 + 05748786 n 0104 + 00651813 n 0101 ~ 02666531 v 0000 ~ 02667228 v 0000 ~ 02739688 v 0000 02 + 01 00 + 04 00 | to show differences when compared; be different; "the students contrast considerably in their artistic abilities" -02667228 42 v 01 conflict 0 005 @ 02666882 v 0000 + 13980845 n 0101 + 07483439 n 0101 + 04714679 n 0101 ~ 02667698 v 0000 02 + 01 00 + 04 00 | be in conflict; "The two proposals conflict!" -02667419 42 v 01 come_in 0 003 @ 00109660 v 0000 ;c 05750657 n 0000 ! 02667558 v 0101 01 + 01 00 | come into fashion; become fashionable -02667558 42 v 01 go_out 0 003 @ 00109660 v 0000 ;c 05750657 n 0000 ! 02667419 v 0101 01 + 01 00 | go out of fashion; become unfashionable -02667698 42 v 03 clash 0 jar 0 collide 0 003 @ 02667228 v 0000 + 07183000 n 0301 + 13981137 n 0101 04 + 01 00 + 02 00 + 04 00 + 22 00 | be incompatible; be or come into conflict; "These colors clash" -02667900 42 v 03 meet 1 fit 1 conform_to 1 006 @ 02657219 v 0000 ~ 02438228 v 0000 ~ 02668170 v 0000 ~ 02668378 v 0000 ~ 02671880 v 0000 ~ 02702830 v 0000 02 + 08 00 + 11 00 | satisfy a condition or restriction; "Does this paper meet the requirements for the degree?" -02668170 42 v 02 fit_the_bill 0 fill_the_bill 0 001 @ 02667900 v 0000 02 + 01 00 + 02 00 | be what is needed or be good enough for what is required; "Does this restaurant fit the bill for the celebration?" -02668378 42 v 02 behoove 0 behove 0 001 @ 02667900 v 0000 01 + 34 00 | be appropriate or necessary; "It behooves us to reflect on this matter" -02668523 42 v 03 violate 0 go_against 0 break 0 005 + 02510446 a 0101 + 01631386 a 0102 + 00770543 n 0101 ! 02668956 v 0101 ~ 02668798 v 0000 02 + 08 00 + 11 00 | fail to agree with; be in violation of; as of rules or patterns; "This sentence violates the rules of syntax" -02668798 42 v 02 fly_in_the_face_of 0 fly_in_the_teeth_of 0 001 @ 02668523 v 0000 01 + 11 00 | go against; "This action flies in the face of the agreement" -02668956 42 v 01 conform_to 0 002 @ 02542280 v 0000 ! 02668523 v 0101 02 + 04 00 + 22 00 | observe; "conform to the rules" -02669081 42 v 06 exceed 0 transcend 1 overstep 0 pass 4 go_past 0 top 0 010 @ 02673965 v 0000 + 13940456 n 060a + 09851165 n 0602 + 06781878 n 0601 + 02344793 a 0201 + 13950440 n 0202 + 13950440 n 0201 + 01533974 a 0101 + 05092635 n 0101 + 01374912 a 0201 02 + 08 00 + 11 00 | be superior or better than some standard; "She exceeded our expectations"; "She topped her performance of last year" -02669477 42 v 03 exceed 1 transcend 0 surpass 1 004 + 02344793 a 0201 + 13950440 n 0201 + 01374912 a 0201 ~ 02669709 v 0000 01 + 11 00 | be greater in scope or size than some standard; "Their loyalty exceeds their national bonds" -02669709 42 v 01 overgrow 2 001 @ 02669477 v 0000 01 + 01 00 | grow too large -02669789 42 v 04 suffice 0 do 1 answer 2 serve c 010 @ 02671880 v 0000 + 02335828 a 0101 + 14492953 n 0101 + 13580415 n 0102 + 05112609 n 0101 ~ 02623346 v 0000 ~ 02670270 v 0000 ~ 02670890 v 0000 ~ 02679012 v 0000 ~ 02738126 v 0000 02 + 01 00 + 34 01 | be sufficient; be adequate, either in quality or quantity; "A few words would answer"; "This car suits my purpose well"; "Will $100 do?"; "A 'B' grade doesn't suffice to get me into medical school"; "Nothing else will serve" -02670270 42 v 01 go_a_long_way 0 001 @ 02669789 v 0000 01 + 01 00 | suffice or be adequate for a while or to a certain extent -02670398 42 v 01 serve 1 003 $ 02670578 v 0000 @ 01642924 v 0000 ~ 02735897 v 0000 02 + 04 00 + 28 00 | contribute or conduce to; "The scandal served to increase his popularity" -02670578 42 v 02 serve 2 serve_well 0 003 @ 00908351 v 0000 + 13952171 n 0103 $ 02670398 v 0000 03 + 08 00 + 10 00 + 11 00 | promote, benefit, or be useful or beneficial to; "Art serves commerce"; "Their interests are served"; "The lake serves recreation"; "The President's wisdom has served the country well" -02670890 42 v 02 serve 3 function c 005 $ 02541251 v 0000 @ 02669789 v 0000 + 05149325 n 0201 ~ 02671498 v 0000 ~ 02671613 v 0000 04 + 01 00 + 02 00 + 09 00 + 11 00 | serve a purpose, role, or function; "The tree stump serves as a table"; "The female students served as a control group"; "This table would serve very well"; "His freedom served him well"; "The table functions as a desk" -02671279 42 v 01 admit 3 005 @ 02709107 v 0000 + 01762065 a 0102 + 01762065 a 0101 + 13321495 n 0102 $ 02502536 v 0000 02 + 10 00 + 11 00 | serve as a means of entrance; "This ticket will admit one adult to the show" -02671498 42 v 01 prelude 0 002 @ 02670890 v 0000 + 07327013 n 0103 01 + 11 00 | serve as a prelude or opening to -02671613 42 v 01 act_as 0 001 @ 02670890 v 0000 03 + 08 00 + 09 00 + 11 00 | function as or act like; "This heap of stones will act as a barrier" -02671761 42 v 01 fall_short_of 0 001 ! 02671880 v 0101 01 + 11 00 | fail to satisfy, as of expectations, for example -02671880 42 v 04 satisfy 0 fulfill 0 fulfil 0 live_up_to 0 010 @ 02667900 v 0000 + 00062451 n 0302 + 00062451 n 0201 + 01124768 a 0101 + 02080577 a 0101 + 01072565 n 0101 + 09424489 n 0101 ! 02671761 v 0101 ~ 02669789 v 0000 ~ 02675935 v 0000 02 + 08 00 + 11 00 | meet the requirements or expectations of -02672187 42 v 04 equal 1 touch 2 rival 0 match 1 004 @ 01072262 v 0000 + 09626238 n 0403 + 09626238 n 0102 $ 00417001 v 0000 02 + 09 00 + 11 00 | be equal to in quality or ability; "Nothing can rival cotton for durability"; "Your performance doesn't even touch that of your colleagues"; "Her persistence and ambition only matches that of her parents" -02672540 42 v 07 compensate 0 counterbalance 1 correct 3 make_up 3 even_out 0 even_off 0 even_up 0 007 @ 02673134 v 0000 + 00232754 a 0301 + 13291189 n 0201 + 03118539 n 0202 + 00259643 n 0102 ~ 02556537 v 0000 ~ 02672859 v 0000 01 + 11 00 | adjust for; "engineers will work to correct the effects or air resistance" -02672859 42 v 03 cover e compensate 3 overcompensate 0 004 $ 00891216 v 0000 @ 02672540 v 0000 + 13529616 n 0301 + 13450636 n 0201 01 + 11 00 | make up for shortcomings or a feeling of inferiority by exaggerating good qualities; "he is compensating for being a bad father" -02673134 42 v 04 balance 0 equilibrate 0 equilibrize 0 equilibrise 0 016 $ 01602318 v 0000 $ 02743020 v 0000 @ 00456740 v 0000 + 13934900 n 0301 + 13897996 n 0302 + 13934900 n 0201 + 13897996 n 0202 + 13446197 n 0202 + 05659365 n 0201 + 14002279 n 0101 ! 02673630 v 0101 ~ 00455919 v 0000 ~ 02672540 v 0000 ~ 02717831 v 0000 ~ 02718015 v 0000 ~ 02752107 v 0000 02 + 08 00 + 11 00 | bring into balance or equilibrium; "She has to balance work and her domestic duties"; "balance the two weights" -02673630 42 v 01 unbalance 0 001 ! 02673134 v 0101 02 + 08 00 + 11 00 | throw out of balance or equilibrium; "The tax relief unbalanced the budget"; "The prima donna unbalances the smooth work in our department" -02673844 42 v 02 rank 0 outrank 0 001 @ 02673965 v 0000 02 + 02 00 + 09 02 | take precedence or surpass others in rank -02673965 42 v 03 excel 0 stand_out 0 surpass 0 005 + 02343110 a 0101 + 04728786 n 0101 ~ 02669081 v 0000 ~ 02673844 v 0000 ~ 02674447 v 0000 02 + 01 00 + 02 00 | distinguish oneself; "She excelled in math" -02674173 42 v 01 stink 0 002 @ 02604760 v 0000 + 03655838 n 0102 02 + 01 00 + 02 00 | be extremely bad in quality or in one's performance; "This term paper stinks!" -02674340 42 v 01 suck 0 001 @ 02604760 v 0000 01 + 01 00 | be inadequate or objectionable; "this sucks!" -02674447 42 v 02 shine_at 0 excel_at 0 001 @ 02673965 v 0000 02 + 08 00 + 33 00 | be good at; "She shines at math" -02674564 42 v 05 leap_out 0 jump_out 0 jump 0 stand_out 2 stick_out 2 001 @ 02133435 v 0000 03 + 01 00 + 04 00 + 34 00 | be highly noticeable -02674708 42 v 01 make 0 001 @ 02623529 v 0000 02 + 09 00 + 11 00 | be or be capable of being changed or made into; "He makes a great host"; "He will make a fine father" -02674879 42 v 01 imitate 0 004 @ 02665282 v 0000 ~ 02675067 v 0000 ~ 02675270 v 0000 ~ 02675603 v 0000 02 + 09 00 + 11 00 | appear like, as in behavior or appearance; "Life imitate art" -02675067 42 v 01 ape 0 004 @ 02674879 v 0000 + 09964411 n 0104 + 09964411 n 0105 + 00549472 n 0101 02 + 09 00 + 11 00 | imitate uncritically and in every aspect; "Her little brother apes her behavior" -02675270 42 v 01 emulate 1 003 @ 02674879 v 0000 ;c 06128570 n 0000 + 05665984 n 0101 01 + 11 00 | imitate the function of (another system), as by modifying the hardware or the software -02675458 42 v 02 echo 0 recall 0 002 @ 02665282 v 0000 + 05010801 n 0101 02 + 10 00 + 11 00 | call to mind; "His words echoed John F. Kennedy" -02675603 42 v 01 follow_suit 0 001 @ 02674879 v 0000 01 + 02 00 | do what someone else is doing -02675701 42 v 01 emulate 0 004 @ 01742886 v 0000 + 07484929 n 0101 + 01021270 n 0101 + 09964411 n 0103 02 + 08 00 + 09 00 | strive to equal or match, especially by imitating; "He is emulating the skating skills of his older sister" -02675935 42 v 01 cover 0 001 @ 02671880 v 0000 02 + 08 00 + 11 00 | provide for; "The grant doesn't cover my salary" -02676054 42 v 09 refer 0 pertain 1 relate 0 concern 0 come_to 3 bear_on 0 touch 0 touch_on 0 have-to_doe_with 0 009 $ 01026728 v 0000 + 00138314 a 0203 + 13795180 n 0203 + 13795180 n 0202 + 05922949 n 0101 ~ 02676496 v 0000 ~ 02676789 v 0000 ~ 02677097 v 0000 ~ 02678663 v 0000 05 + 10 00 + 11 00 + 04 03 + 04 02 + 04 01 | be relevant to; "There were lots of questions referring to her talk"; "My remark pertained to your earlier comments" -02676496 42 v 06 focus_on 0 center_on 0 revolve_around 0 revolve_about 0 concentrate_on 0 center 0 003 @ 02676054 v 0000 + 05812038 n 0601 + 05704694 n 0606 04 + 10 00 + 11 00 + 04 06 + 22 06 | center upon; "Her entire attention centered on her children"; "Our day revolved around our work" -02676789 42 v 03 apply 0 hold 4 go_for 0 004 $ 02707429 v 0000 @ 02676054 v 0000 + 01834812 a 0101 + 01975448 a 0101 04 + 01 00 + 04 00 + 10 03 + 11 03 | be pertinent or relevant or applicable; "The same laws apply to you!"; "This theory holds for all irrational numbers"; "The same rules go for everyone" -02677097 42 v 03 involve 1 affect 0 regard 0 004 @ 02676054 v 0000 + 05820170 n 0302 + 13793504 n 0101 ~ 02677332 v 0000 03 + 09 00 + 10 00 + 11 00 | connect closely and often incriminatingly; "This new ruling affects your business" -02677332 42 v 01 implicate 1 003 @ 02677097 v 0000 + 13793776 n 0101 + 07238102 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | bring into intimate and incriminating connection; "He is implicated in the scheme to defraud the government" -02677567 42 v 01 involve 4 006 @ 02449847 v 0000 + 01239064 n 0104 + 13924659 n 0102 + 01239064 n 0103 ~ 02677797 v 0000 ~ 02678287 v 0000 02 + 09 00 + 20 00 | engage as a participant; "Don't involve me in your family affairs!" -02677797 42 v 06 embroil 0 tangle 0 sweep 0 sweep_up 0 drag 0 drag_in 0 002 @ 02677567 v 0000 + 13936153 n 0102 02 + 09 00 + 20 00 | force into some kind of situation, condition, or course of action; "They were swept up by the events"; "don't drag me into this business" -02678070 42 v 03 disinvolve 0 disembroil 0 disentangle 0 002 @ 02422026 v 0000 + 01244593 n 0303 02 + 09 00 + 10 00 | free from involvement or entanglement; "How can I disentangle myself from her personal affairs?" -02678287 42 v 02 entangle 0 mire 0 002 @ 02677567 v 0000 + 04568557 n 0102 02 + 10 00 + 11 00 | entrap; "Our people should not be mired in the past" -02678438 42 v 04 concern 1 interest 1 occupy 4 worry 0 004 + 00582868 n 0301 + 05682950 n 0201 + 07524529 n 0101 + 05832264 n 0101 02 + 09 00 + 10 00 | be on the mind of; "I worry about the second Germanic consonant shift" -02678663 42 v 02 matter_to 0 interest 0 003 @ 02676054 v 0000 + 05192451 n 0201 ~ 02678839 v 0000 02 + 10 00 + 11 00 | be of importance or consequence; "This matters to me!" -02678839 42 v 02 intrigue 0 fascinate 0 004 @ 02678663 v 0000 + 14407899 n 0201 + 04689450 n 0201 ~ 00737476 v 0000 02 + 09 00 + 10 00 | cause to be interested or curious -02679012 42 v 02 qualify 0 measure_up 0 006 @ 02669789 v 0000 + 04717139 n 0101 + 13948026 n 0101 + 04728068 n 0101 + 10498196 n 0101 + 00065575 n 0103 02 + 01 00 + 02 00 | prove capable or fit; meet requirements -02679227 42 v 01 begin 2 002 + 05868051 n 0101 $ 02608823 v 0000 01 + 11 00 | be the first item or point, constitute the beginning or start, come first in a series; "The number `one' begins the sequence"; "A terrible murder begins the novel"; "The convocation ceremony officially begins the semester" -02679530 42 v 03 prolong 0 sustain 1 keep_up 0 007 @ 02679899 v 0000 + 02806261 a 0201 + 10740219 n 0203 + 01216191 n 0201 + 05051896 n 0102 + 01018366 n 0101 ~ 02410175 v 0000 02 + 08 00 + 11 00 | lengthen or extend in duration or space; "We sustained the diplomatic negotiations as long as possible"; "prolong the treatment of the patient"; "keep up the good work" -02679899 42 v 05 continue 0 uphold 0 carry_on 0 bear_on 1 preserve 0 011 $ 02684924 v 0000 $ 01995549 v 0000 @ 02681795 v 0000 + 14578940 n 0501 + 10740219 n 0201 ! 02680814 v 0101 ~ 00350104 v 0000 ~ 00350461 v 0000 ~ 02648253 v 0000 ~ 02679530 v 0000 ~ 02680358 v 0000 02 + 08 00 + 11 00 | keep or maintain in unaltered condition; cause to remain or last; "preserve the peace in the family"; "continue the family tradition"; "Carry on the old traditions" -02680358 42 v 01 mummify 0 002 @ 02679899 v 0000 + 14578634 n 0101 01 + 08 00 | preserve while making lifeless; "mummified ideas and institutions should be gotten rid of" -02680531 42 v 02 shut_off 0 close_off 0 001 @ 02680814 v 0000 03 + 08 00 + 09 00 + 11 00 | stem the flow of; "shut off the gas when you leave for a vacation" -02680691 42 v 01 cheese 0 001 @ 02680814 v 0000 01 + 08 00 | used in the imperative (get away, or stop it); "Cheese it!" -02680814 42 v 06 discontinue 0 stop 0 cease 0 give_up 0 quit 4 lay_off 0 018 + 07362075 n 0301 + 15268239 n 0301 + 01056411 n 0201 + 01076046 n 0201 + 07365849 n 0201 + 01076046 n 0202 + 01022483 n 0102 + 01022483 n 0101 ! 02679899 v 0101 ~ 00363110 v 0000 ~ 00572661 v 0000 ~ 00974031 v 0000 ~ 02380009 v 0000 ~ 02510184 v 0000 ~ 02680531 v 0000 ~ 02680691 v 0000 ~ 02681335 v 0000 ~ 02681524 v 0000 05 + 08 00 + 11 00 + 33 00 + 28 03 + 28 02 | put an end to a state or an activity; "Quit teasing your little brother" -02681335 42 v 02 call_it_quits 0 call_it_a_day 0 001 @ 02680814 v 0000 01 + 02 00 | stop doing what one is doing; "At midnight, the student decided to call it quits and closed his books" -02681524 42 v 01 break 3 002 @ 02680814 v 0000 $ 02681639 v 0000 01 + 08 00 | give up; "break cigarette smoking" -02681639 42 v 01 break 4 002 $ 02681524 v 0000 > 02681524 v 0000 01 + 09 00 | cause to give up a habit; "She finally broke herself of smoking cigarettes" -02681795 42 v 03 keep 0 maintain 0 hold 0 022 ^ 01131473 v 0306 ^ 01116585 v 0302 ^ 02682424 v 0301 ^ 02618149 v 0308 ^ 00459776 v 0303 + 01963688 a 0201 + 10740219 n 0202 ^ 02496388 v 0101 ^ 02449340 v 0102 ^ 01189823 v 0101 ^ 02679530 v 0103 ^ 00811720 v 0101 ^ 00235918 v 0102 ^ 00495808 v 0103 ^ 01113975 v 0101 ~ 00403401 v 0000 ~ 02679899 v 0000 ~ 02682424 v 0000 ~ 02682567 v 0000 ~ 02682773 v 0000 ~ 02683127 v 0000 ~ 02683316 v 0000 03 + 05 00 + 20 00 + 21 00 | keep in a certain state, position, or activity; e.g., "keep clean"; "hold in place"; "She always held herself as a lady"; "The students keep me on my toes" -02682424 42 v 01 hold_over 0 002 @ 02681795 v 0000 + 01022292 n 0102 01 + 08 00 | keep in a position or state from an earlier period of time -02682567 42 v 01 conserve 0 002 @ 02681795 v 0000 + 06104073 n 0101 02 + 08 00 + 11 00 | keep constant through physical or chemical reactions or evolutionary change; "Energy is conserved in this process" -02682773 42 v 01 preserve 7 001 @ 02681795 v 0000 01 + 08 00 | keep undisturbed for personal or private use for hunting, shooting, or fishing; "preserve the forest and the lakes" -02682954 42 v 01 carry e 002 @ 01184625 v 0000 $ 01218084 v 0000 01 + 09 00 | keep up with financial support; "The Federal Government carried the province for many years" -02683127 42 v 01 distance 0 002 @ 02681795 v 0000 + 07505871 n 0101 02 + 08 00 + 09 00 | keep at a distance; "we have to distance ourselves from these events in order to continue living" -02683316 42 v 01 housekeep 0 003 @ 02681795 v 0000 + 10188715 n 0101 + 00580961 n 0102 01 + 02 00 | maintain a household; take care of all business related to a household -02683489 42 v 01 hold 1 001 @ 02684924 v 0000 02 + 01 00 + 22 00 | remain in a certain state, position, or condition; "The weather held"; "They held on the road and kept marching" -02683671 42 v 04 taper_off 0 peter_out 0 fizzle_out 0 fizzle 0 001 @ 02683840 v 0000 01 + 01 00 | end weakly; "The music just petered out--there was no proper ending" -02683840 42 v 01 discontinue 1 005 @ 02609764 v 0000 ! 02684924 v 0101 ~ 02683671 v 0000 ~ 02684078 v 0000 ~ 02684784 v 0000 01 + 01 00 | come to or be at an end; "the support from our sponsoring agency will discontinue after March 31" -02684078 42 v 01 leave_off 0 001 @ 02683840 v 0000 01 + 04 00 | come to an end, stop or cease; "the road leaves off at the edge of the forest"; "leave off where you started" -02684254 42 v 02 run_on 0 keep_going 2 002 $ 00908621 v 0000 @ 02684924 v 0000 02 + 01 00 + 02 00 | continue uninterrupted; "The disease will run on unchecked"; "The party kept going until 4 A.M." -02684453 42 v 03 ramble_on 0 ramble 0 jog 0 002 @ 00781000 v 0000 + 10506094 n 0201 02 + 01 00 + 02 00 | continue talking or writing in a desultory manner; "This novel rambles on and jogs" -02684644 42 v 01 ride 0 002 @ 02684924 v 0000 + 00307631 n 0102 01 + 01 00 | continue undisturbed and without interference; "Let it ride" -02684784 42 v 02 run_out 0 expire 0 002 @ 02683840 v 0000 + 15268682 n 0202 01 + 01 00 | lose validity; "My passports expired last month" -02684924 42 v 05 continue 1 go_on 0 proceed 0 go_along 0 keep 7 010 @ 02367363 v 0000 + 05051896 n 0103 + 01017987 n 0102 + 01017987 n 0101 ! 02683840 v 0101 $ 02679899 v 0000 ~ 02683489 v 0000 ~ 02684254 v 0000 ~ 02684644 v 0000 $ 02747709 v 0000 05 + 33 00 + 01 02 + 02 02 + 01 01 + 02 01 | continue a certain state, condition, or activity; "Keep on working!"; "We continued to work into the night"; "Keep smiling"; "We went on working until well past midnight" -02685390 42 v 04 cross 0 traverse 0 span 0 sweep 3 003 @ 02687916 v 0000 + 05127959 n 0401 + 05087061 n 0301 01 + 11 00 | to cover or extend over an area or time period; "Rivers traverse the valley floor", "The parking lot spans 3 acres"; "The novel spans three centuries" -02685665 42 v 03 reach 0 extend_to 0 touch 1 006 @ 02655135 v 0000 + 07409592 n 0301 + 08628921 n 0102 ^ 02690093 v 0103 ^ 02690299 v 0101 ~ 02690299 v 0000 02 + 04 00 + 11 00 | to extend as far as; "The sunlight reached the wall"; "Can he reach?" "The chair must not touch the wall" -02685951 42 v 05 run 0 go 0 pass 8 lead 0 extend 3 008 $ 02727039 v 0000 @ 02655135 v 0000 + 05123416 n 0501 ^ 02685665 v 0502 ^ 02703539 v 0102 ~ 02686805 v 0000 ~ 02686952 v 0000 ~ 02733673 v 0000 01 + 04 00 | stretch out over a distance, space, time, or scope; run or extend between two points or beyond a certain point; "Service runs all the way to Cranbury"; "His knowledge doesn't go very far"; "My memory extends back to my fourth year of life"; "The facts extend beyond a consideration of her personal assets" -02686471 42 v 02 go 8 lead 3 001 @ 02655135 v 0000 01 + 04 00 | lead, extend, or afford access; "This door goes to the basement"; "The road runs South" -02686625 42 v 02 run 8 lead 2 003 @ 02052476 v 0000 $ 01212230 v 0000 $ 02727039 v 0000 01 + 21 00 | cause something to pass or lead somewhere; "Run the wire behind the cabinet" -02686805 42 v 01 come 3 001 @ 02685951 v 0000 01 + 04 00 | extend or reach; "The water came up to my waist"; "The sleeves come to your knuckles" -02686952 42 v 02 radiate 0 ray 0 004 @ 02685951 v 0000 + 13913427 n 0201 + 05503555 n 0101 + 01252918 n 0101 02 + 01 00 + 08 00 | extend or spread outward from a center or focus or inward towards a center; "spokes radiate from the hub of the wheel"; "This plants radiate spines in all directions" -02687251 42 v 02 roll 0 undulate 0 001 + 13875970 n 0103 02 + 01 00 + 04 00 | occur in soft rounded shapes; "The hills rolled past" -02687385 42 v 02 lead 1 top b 003 * 01072262 v 0000 + 13940456 n 020a + 09851165 n 0202 06 + 02 00 + 22 00 + 08 01 + 09 01 + 10 01 + 11 01 | be ahead of others; be the first; "she topped her class every year" -02687596 42 v 01 rim 0 002 @ 02703539 v 0000 ~ 02687730 v 0000 01 + 11 00 | run around the rim of; "Sugar rimmed the dessert plate" -02687730 42 v 01 beard 0 003 @ 02687596 v 0000 + 05261566 n 0101 + 02416270 n 0101 01 + 11 00 | go along the rim, like a beard around the chin; "Houses bearded the top of the heights" -02687916 42 v 03 cover 1 continue 6 extend 1 009 $ 01129201 v 0000 @ 02655135 v 0000 + 05123416 n 0301 ~ 02685390 v 0000 ~ 02688403 v 0000 ~ 02688794 v 0000 ~ 02689299 v 0000 ~ 02689730 v 0000 ~ 02689882 v 0000 01 + 11 00 | span an interval of distance, space or time; "The war extended over five years"; "The period covered the turn of the century"; "My land extends over the hills on the horizon"; "This farm covers some 200 acres"; "The Archipelago continues for another 500 miles" -02688403 42 v 01 sweep a 003 @ 02687916 v 0000 + 05127959 n 0101 ~ 02688527 v 0000 01 + 08 00 | cover the entire range of -02688527 42 v 01 rake a 002 @ 02688403 v 0000 ~ 02688657 v 0000 01 + 08 00 | sweep the length of; "The gunfire raked the coast" -02688657 42 v 01 enfilade 0 001 @ 02688527 v 0000 01 + 08 00 | rake or be in a position to rake with gunfire in a lengthwise direction -02688794 42 v 01 overlap 1 004 @ 02687916 v 0000 + 03641706 n 0102 + 03561657 n 0102 ~ 02689008 v 0000 02 + 01 00 + 08 00 | extend over and cover a part of; "The roofs of the houses overlap in this crowded city" -02689008 42 v 01 imbricate 0 003 @ 02688794 v 0000 + 03561657 n 0101 $ 02689146 v 0000 01 + 01 00 | overlap; "The roof tiles imbricate" -02689146 42 v 01 imbricate 1 003 $ 02689008 v 0000 @ 01494310 v 0000 + 03561657 n 0101 01 + 08 00 | place so as to overlap; "imbricate the roof tiles" -02689299 42 v 02 spread 0 overspread 0 006 @ 02687916 v 0000 + 00367976 n 0101 + 05088324 n 0102 + 07445896 n 0101 + 07445896 n 0102 ~ 02689529 v 0000 01 + 11 00 | spread across or over; "A big oil spot spread across the water" -02689529 42 v 01 transgress 0 002 @ 02689299 v 0000 + 11520435 n 0101 01 + 01 00 | spread over land, especially along a subsiding shoreline; "The sea transgresses along the West coast of the island" -02689730 42 v 01 ridge 0 003 @ 02687916 v 0000 + 09409752 n 0101 + 09409512 n 0101 01 + 01 00 | extend in ridges; "The land ridges towards the South" -02689882 42 v 03 dot 0 stud 0 constellate 0 004 @ 02687916 v 0000 + 05731779 n 0302 + 04343346 n 0201 + 13911872 n 0102 01 + 11 00 | scatter or intersperse like dots or studs; "Hills constellated with lights" -02690093 42 v 03 extend 2 poke_out 0 reach_out 0 003 @ 02655135 v 0000 + 00944449 a 0102 + 01434530 a 0101 02 + 01 00 + 04 00 | reach outward in space; "The awning extends several feet over the sidewalk" -02690299 42 v 01 reach_into 0 001 @ 02685665 v 0000 01 + 11 00 | run into or up to -02690384 42 v 02 range 0 straddle 2 003 @ 02620587 v 0000 + 05125377 n 0102 ~ 02690577 v 0000 01 + 11 00 | range or extend over; occupy a certain area; "The plants straddle the entire state" -02690577 42 v 01 spread-eagle 0 001 @ 02690384 v 0000 01 + 11 00 | stretch over; "His residences spread-eagle the entire county" -02690708 42 v 01 lie 0 022 $ 02731390 v 0000 @ 02655135 v 0000 + 08624196 n 0101 ~ 02691354 v 0000 ~ 02691489 v 0000 ~ 02691722 v 0000 ~ 02691890 v 0000 ~ 02692089 v 0000 ~ 02692197 v 0000 ~ 02692335 v 0000 ~ 02692558 v 0000 ~ 02692686 v 0000 ~ 02693088 v 0000 ~ 02693168 v 0000 ~ 02693319 v 0000 ~ 02693965 v 0000 ~ 02694106 v 0000 ~ 02694287 v 0000 ~ 02696129 v 0000 ~ 02703539 v 0000 ~ 02713184 v 0000 ~ 02721966 v 0000 02 + 01 00 + 04 00 | be located or situated somewhere; occupy a certain position -02691214 42 v 01 sit 5 001 @ 02655135 v 0000 01 + 04 00 | be located or situated somewhere; "The White House sits on Pennsylvania Avenue" -02691354 42 v 01 nestle 0 001 @ 02690708 v 0000 01 + 04 00 | lie in a sheltered position; "The little cottage nestles in the forest" -02691489 42 v 01 intervene 0 001 @ 02690708 v 0000 02 + 01 00 + 04 00 | be placed or located between other things or extend between spaces and events; "This interludes intervenes between the two movements"; "Eight days intervened" -02691722 42 v 01 top 2 002 @ 02690708 v 0000 + 08663860 n 0101 01 + 11 00 | be at the top of or constitute the top or highest point; "A star tops the Christmas Tree" -02691890 42 v 01 mediate 0 001 @ 02690708 v 0000 01 + 01 00 | occupy an intermediate or middle position or form a connecting link or stage between two others; "mediate between the old and the new" -02692089 42 v 01 ride 2 001 @ 02690708 v 0000 01 + 04 00 | lie moored or anchored; "Ship rides at anchor" -02692197 42 v 01 lap 0 002 @ 02690708 v 0000 + 03641706 n 0101 01 + 04 00 | lie partly over or alongside of something or of one another -02692335 42 v 04 localize 0 localise 0 focalize 0 focalise 0 003 @ 02690708 v 0000 + 13482781 n 0402 + 13482781 n 0301 01 + 04 00 | concentrate on a particular place or spot; "The infection has localized in the left eye" -02692558 42 v 01 slant 0 002 @ 02690708 v 0000 + 05069199 n 0103 01 + 04 00 | lie obliquely; "A scar slanted across his face" -02692686 42 v 02 precede 1 predate 1 004 @ 02690708 v 0000 + 00126497 a 0101 + 01257145 n 0101 + 06600282 n 0101 01 + 11 00 | come before; "Most English adjectives precede the noun they modify" -02692882 42 v 02 sit 0 sit_around 0 001 @ 02655135 v 0000 02 + 01 00 + 04 00 | be around, often idly or without specific purpose; "The object sat in the corner"; "We sat around chatting for another hour" -02693088 42 v 01 underlie 1 001 @ 02690708 v 0000 01 + 11 00 | lie underneath -02693168 42 v 02 cap 0 crest 0 003 @ 02690708 v 0000 + 08617963 n 0203 + 08547544 n 0201 01 + 11 00 | lie at the top of; "Snow capped the mountains" -02693319 42 v 03 front 0 look 0 face 0 007 $ 02693691 v 0000 @ 02690708 v 0000 + 08626080 n 0101 + 08573472 n 0101 + 13827943 n 0101 ! 02693965 v 0101 ~ 02742638 v 0000 01 + 11 00 | be oriented in a certain direction, often with respect to another reference point; be opposite to; "The house looks north"; "My backyard look onto the pond"; "The building faces the park" -02693691 42 v 01 face 2 002 @ 02655135 v 0000 $ 02693319 v 0000 02 + 04 00 + 22 00 | be opposite; "the facing page"; "the two sofas face each other" -02693842 42 v 02 subtend 0 delimit 1 001 @ 02604760 v 0000 01 + 11 00 | be opposite to; of angles and sides, in geometry -02693965 42 v 01 back 0 003 @ 02690708 v 0000 + 04059701 n 0102 ! 02693319 v 0101 01 + 11 00 | be in back of; "My garage backs their yard" -02694106 42 v 01 flank 0 004 @ 02690708 v 0000 + 13897377 n 0101 + 10095265 n 0102 + 10095061 n 0101 03 + 09 00 + 10 00 + 11 00 | be located at the sides of something or somebody -02694287 42 v 01 head 0 007 @ 02690708 v 0000 + 08572467 n 0102 + 06343971 n 0102 + 08664184 n 0101 + 06343971 n 0101 ~ 02694548 v 0000 ~ 02694677 v 0000 02 + 08 00 + 11 00 | be in the front of or on top of; "The list was headed by the name of the president" -02694548 42 v 01 surmount 0 002 @ 02694287 v 0000 ~ 02694802 v 0000 01 + 11 00 | be on top of; "The scarf surmounted the gown" -02694677 42 v 01 crown 0 001 @ 02694287 v 0000 01 + 11 00 | form the topmost part of; "A weather vane crowns the building" -02694802 42 v 01 pinnacle 0 002 @ 02694548 v 0000 + 03943266 n 0101 01 + 11 00 | surmount with a pinnacle; "pinnacle a pediment" -02694933 42 v 02 situate 0 locate 0 011 @ 00918872 v 0000 + 10268930 n 0202 + 00155487 n 0203 + 00027167 n 0201 + 10268930 n 0201 + 08622950 n 0102 ~ 02695378 v 0000 ~ 02695520 v 0000 ~ 02695709 v 0000 ~ 02695895 v 0000 ~ 02756196 v 0000 01 + 08 00 | determine or indicate the place, site, or limits of, as if by an instrument or by a survey; "Our sense of sight enables us to locate objects in space"; "Locate the boundaries of the property" -02695378 42 v 01 acquire 0 001 @ 02694933 v 0000 02 + 08 00 + 11 00 | locate (a moving entity) by means of a tracking system such as radar -02695520 42 v 01 radiolocate 0 002 @ 02694933 v 0000 + 04039848 n 0104 04 + 08 00 + 09 00 + 10 00 + 11 00 | locate by means of radar; "The pilot managed to radiolocate the lost aircraft" -02695709 42 v 01 map 0 002 @ 02694933 v 0000 + 01024643 n 0101 01 + 08 00 | locate within a specific region of a chromosome in relation to known DNA or gene sequences; "map the genes" -02695895 42 v 03 place 0 localize 1 localise 1 005 @ 02694933 v 0000 + 00155487 n 0302 + 00155487 n 0201 + 08677628 n 0202 + 05075602 n 0101 01 + 08 00 | identify the location or place of; "We localized the source of the infection" -02696129 42 v 04 dominate 2 command 0 overlook 0 overtop 0 003 @ 02690708 v 0000 + 08614104 n 0301 ~ 02696306 v 0000 01 + 11 00 | look down on; "The villa dominates the town" -02696306 42 v 03 shadow 0 overshadow 1 dwarf 0 003 @ 02696129 v 0000 + 10040344 n 0301 + 13959642 n 0101 01 + 11 00 | make appear small by comparison; "This year's debt dwarfs that of last year" -02696503 42 v 04 loom 0 tower 0 predominate 1 hulk 0 004 @ 02696801 v 0000 + 10129133 n 0402 + 04707409 n 0301 + 13900422 n 0202 02 + 01 00 + 04 00 | appear very large or occupy a commanding position; "The huge sculpture predominates over the fountain"; "Large shadows loomed on the canyon wall" -02696801 42 v 03 rise 0 lift 1 rear 0 003 @ 02133435 v 0000 + 05068918 n 0102 ~ 02696503 v 0000 02 + 01 00 + 04 00 | rise up; "The building rose before them" -02696961 42 v 01 loom 2 001 @ 02133435 v 0000 02 + 01 00 + 04 00 | come into view indistinctly, often threateningly; "Another air plane loomed into the sky" -02697120 42 v 07 endanger 0 jeopardize 0 jeopardise 0 menace 0 threaten 0 imperil 0 peril 0 006 @ 02603699 v 0000 + 14543552 n 0702 + 14541852 n 0703 + 14543231 n 0401 + 14541852 n 0302 + 14541852 n 0202 03 + 10 00 + 11 00 + 28 05 | pose a threat to; present a danger to; "The pollution is endangering the crops" -02697435 42 v 02 overhang 0 beetle 0 002 @ 01482075 v 0000 + 03864356 n 0101 01 + 11 00 | be suspended over or hang over; "This huge rock beetles over the edge of the town" -02697610 42 v 01 dote 0 002 @ 00248026 v 0000 + 10027105 n 0101 01 + 02 00 | be foolish or senile due to old age -02697725 42 v 03 embody 0 be 8 personify 0 005 @ 00836236 v 0000 + 05929008 n 0305 + 04677716 n 0301 ~ 02698944 v 0000 ~ 02723733 v 0000 02 + 08 00 + 11 00 | represent, as of a character on stage; "Derek Jacobi was Hamlet" -02697950 42 v 02 characterize 1 characterise 1 005 @ 00651991 v 0000 + 05849284 n 0202 + 05849284 n 0102 ~ 02698178 v 0000 ~ 02698319 v 0000 02 + 10 00 + 11 00 | be characteristic of; "What characterizes a Venetian painting?" -02698178 42 v 01 individuate 0 003 @ 02697950 v 0000 + 05749402 n 0103 + 04763293 n 0103 02 + 10 00 + 11 00 | give individual character to -02698319 42 v 01 define 1 001 @ 02697950 v 0000 02 + 10 00 + 11 00 | determine the nature of; "What defines a good wine?" -02698443 42 v 04 incarnate 0 body_forth 0 embody 1 substantiate 0 003 @ 02604760 v 0000 + 00933000 n 0301 + 10418302 n 0102 02 + 08 00 + 11 00 | represent in bodily form; "He embodies all that is evil wrong with the system"; "The painting substantiates the feelings of the artist" -02698726 42 v 02 reincarnate 0 transmigrate 0 004 @ 00360932 v 0000 ;c 05946687 n 0000 + 07321387 n 0201 + 10518003 n 0101 01 + 02 00 | be born anew in another body after death; "Hindus believe that we transmigrate" -02698944 42 v 02 body 0 personify 1 005 @ 02697725 v 0000 + 10418101 n 0201 + 07108123 n 0201 + 05217688 n 0201 + 05217859 n 0101 02 + 08 00 + 11 00 | invest with or as with a body; give body to -02699141 42 v 03 typify 0 epitomize 0 epitomise 0 009 @ 00836236 v 0000 + 06468818 n 0301 + 05937524 n 0303 + 06468818 n 0201 + 05937524 n 0203 + 05765901 n 0101 + 09909060 n 0103 + 08111419 n 0101 + 05840188 n 0101 02 + 08 00 + 11 00 | embody the essential characteristics of or be a typical example of; "The fugue typifies Bach's style of composition" -02699497 42 v 03 represent 2 stand_for 0 correspond 1 003 @ 02664769 v 0000 + 02071973 a 0302 + 00898518 n 0101 02 + 11 00 + 04 03 | take the place of or be parallel or equivalent to; "Because of the sound changes in the course of history, an 'h' in Greek stands for an 's' in Latin" -02699783 42 v 01 homologize 0 002 @ 02657219 v 0000 + 04744319 n 0101 01 + 11 00 | be homologous; "A person's arms homologize with a quadruped's forelimbs" -02699941 42 v 03 befit 0 suit 0 beseem 0 001 @ 02657219 v 0000 02 + 10 00 + 11 00 | accord or comport with; "This kind of behavior does not suit a young woman!" -02700104 42 v 07 harmonize 0 harmonise 0 consort 0 accord 0 concord 0 fit_in 0 agree 1 009 @ 02657219 v 0000 + 00577122 a 0702 + 13969243 n 0502 + 00552841 a 0401 + 04713332 n 0401 + 13969243 n 0101 + 04713118 n 0101 $ 02657219 v 0000 ~ 02700455 v 0000 03 + 01 00 + 02 00 + 04 00 | go together; "The colors don't harmonize"; "Their ideas concorded" -02700455 42 v 03 blend 0 go b blend_in 0 002 @ 02700104 v 0000 $ 02659763 v 0000 02 + 01 00 + 04 00 | blend or harmonize; "This flavor will blend with those in your dish"; "This sofa won't go with the chairs" -02700666 42 v 01 go c 000 01 + 01 00 | be sounded, played, or expressed; "How does this song go again?" -02700772 42 v 01 go d 000 01 + 11 00 | be contained in; "How many times does 18 go into 54?" -02700867 42 v 04 hold d bear e carry 3 contain d 009 @ 02632940 v 0000 + 00591817 a 0401 + 13779374 n 0402 + 03094503 n 0401 + 00318735 n 0301 + 02964634 n 0104 $ 02701210 v 0000 ~ 02701628 v 0000 ~ 02711114 v 0000 01 + 11 00 | contain or hold; have within; "The jar carries wine"; "The canteen holds fresh water"; "This can contains water" -02701210 42 v 03 contain e take f hold e 004 $ 02732798 v 0000 $ 02700867 v 0000 @ 02604760 v 0000 + 02964634 n 0304 01 + 11 00 | be capable of holding or containing; "This box won't take all the items"; "The flask holds one gallon" -02701445 42 v 01 sleep 0 004 @ 02732798 v 0000 + 15273626 n 0101 + 04235646 n 0101 + 04236001 n 0102 01 + 10 00 | be able to accommodate for sleeping; "This tent sleeps six people" -02701628 42 v 01 retain 0 002 @ 02700867 v 0000 + 02005756 a 0101 02 + 08 00 + 11 00 | hold back within; "This soil retains water"; "I retain this drug for a long time"; "the dam retains the water" -02701828 42 v 01 house 2 002 @ 02732798 v 0000 + 03546766 n 0101 02 + 10 00 + 11 00 | contain or cover; "This box houses the gears" -02701962 42 v 01 seat 0 004 @ 02732798 v 0000 + 04161981 n 0101 + 08647616 n 0101 + 04162998 n 0101 01 + 11 00 | be able to seat; "The theater seats 2,000" -02702120 42 v 02 stand 0 remain_firm 0 004 $ 01115916 v 0000 @ 01116585 v 0000 + 06210363 n 0103 ! 02703289 v 0101 02 + 01 00 + 02 00 | hold one's ground; maintain a position; be steadfast or upright; "I am standing my ground and won't give in!" -02702368 42 v 01 stand 1 002 @ 02704349 v 0000 + 08653706 n 0101 01 + 04 00 | be tall; have a height of; copula; "She stands 6 feet tall" -02702508 42 v 02 cost 0 be 9 004 @ 02604760 v 0000 + 05145118 n 0103 + 13275847 n 0101 ~ 02702674 v 0000 02 + 11 00 + 14 01 | be priced at; "These shoes cost $100" -02702674 42 v 03 set_back 0 knock_back 0 put_back 0 001 @ 02702508 v 0000 01 + 10 00 | cost a certain amount; "My daughter's wedding set me back $20,000" -02702830 42 v 03 suit 5 accommodate 0 fit 5 004 @ 02667900 v 0000 + 10093908 n 0301 + 00513388 a 0201 + 07369604 n 0202 01 + 10 00 | be agreeable or acceptable to; "This suits my needs" -02703018 42 v 01 stand 2 002 @ 00118523 v 0000 ~ 02703153 v 0000 01 + 01 00 | be in effect; be or remain in force; "The law stands!" -02703153 42 v 01 wash c 001 @ 02703018 v 0000 01 + 01 00 | admit to testing or proof; "This silly excuse won't wash in traffic court" -02703289 42 v 03 yield 0 relent 0 soften 0 002 ! 02702120 v 0101 ~ 02703432 v 0000 02 + 01 00 + 02 00 | give in, as to influence or pressure -02703432 42 v 01 truckle 0 002 @ 02703289 v 0000 + 09800631 n 0106 01 + 21 00 | yield to out of weakness -02703539 42 v 02 line 0 run_along 0 003 @ 02690708 v 0000 + 08430203 n 0101 ~ 02687596 v 0000 01 + 11 00 | be in line with; form a line along; "trees line the riverbank" -02703711 42 v 01 skirt 0 001 @ 02710673 v 0000 01 + 11 00 | form the edge of -02703790 42 v 01 verge 1 003 @ 02710673 v 0000 + 05125193 n 0101 + 13903738 n 0103 01 + 11 00 | border on; come close to; "His behavior verges on the criminal" -02703952 42 v 02 border_on 0 approach 0 003 @ 02666060 v 0000 + 04746134 n 0201 ~ 02732401 v 0000 01 + 11 00 | come near or verge on, resemble, come nearer in quality, or character; "This borders on discrimination!"; "His playing approaches that of Horowitz" -02704213 42 v 01 line_up 0 001 @ 01463963 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | form a line; "The buildings all line up neatly" -02704349 42 v 01 measure 0 008 @ 02604760 v 0000 + 03735637 n 0102 + 00996969 n 0103 ^ 02679012 v 0102 ~ 02702368 v 0000 ~ 02704818 v 0000 ~ 02704928 v 0000 ~ 02728388 v 0000 01 + 11 00 | have certain dimensions; "This table surfaces measures 20inches by 36 inches" -02704617 42 v 02 weigh 0 librate 0 004 $ 02704818 v 0000 @ 00489837 v 0000 + 10773277 n 0101 ~ 01456341 v 0000 03 + 08 00 + 09 00 + 11 00 | determine the weight of; "The butcher weighed the chicken" -02704818 42 v 01 weigh 1 002 @ 02704349 v 0000 $ 02704617 v 0000 02 + 08 00 + 11 00 | have a certain weight -02704928 42 v 02 last 0 endure 6 004 @ 02704349 v 0000 ~ 02648110 v 0000 ~ 02705132 v 0000 ~ 02705428 v 0000 01 + 11 00 | persist for a specified period of time; "The bad weather lasted for three days" -02705132 42 v 03 wear 0 hold_out 1 endure 1 002 @ 02704928 v 0000 + 02539359 a 0101 02 + 06 00 + 11 00 | last and be usable; "This dress wore well for almost ten years" -02705303 42 v 01 outwear 0 001 @ 01105639 v 0000 01 + 11 00 | last longer than others; "This material outwears all others" -02705428 42 v 02 drag_on 0 drag_out 0 001 @ 02704928 v 0000 02 + 01 00 + 04 00 | last unnecessarily long -02705535 42 v 02 inhere_in 0 attach_to 0 002 @ 02632940 v 0000 ~ 02664664 v 0000 01 + 11 00 | be part of; "This problem inheres in the design" -02705680 42 v 02 fall_into 0 fall_under 0 001 @ 02620587 v 0000 01 + 11 00 | be included in or classified as; "This falls under the rubric 'various'" -02705832 42 v 01 straddle 0 001 + 06211702 n 0101 01 + 02 00 | be noncommittal -02705913 42 v 01 straddle 1 003 @ 02655135 v 0000 + 00349213 n 0101 + 00438893 n 0101 02 + 08 00 + 11 00 | sit or stand astride of -02706046 42 v 04 hover 0 vibrate 3 vacillate 0 oscillate 0 006 @ 02640440 v 0000 + 13527965 n 0401 + 01992867 a 0301 + 05699434 n 0302 + 10603528 n 0302 ~ 02706386 v 0000 01 + 02 00 | be undecided about something; waver between conflicting positions or courses of action; "He oscillates between accepting the new position and retirement" -02706386 42 v 01 shillyshally 0 001 @ 02706046 v 0000 01 + 02 00 | be uncertain and vague -02706478 42 v 01 shimmer 0 002 @ 02162947 v 0000 + 07411851 n 0101 01 + 01 00 | give off a shimmering reflection, as of silk -02706605 42 v 03 hum 0 buzz 0 seethe 0 005 @ 02604760 v 0000 + 01260008 n 0201 + 07385803 n 0101 + 07385803 n 0102 ~ 02714974 v 0000 01 + 01 00 | be noisy with activity; "This office is buzzing with activity" -02706816 42 v 04 defy 0 withstand 0 hold 8 hold_up 2 004 @ 01116585 v 0000 + 10785869 n 0201 + 00695523 a 0101 ~ 02707251 v 0000 02 + 08 00 + 11 00 | resist or confront with resistance; "The politician defied public opinion"; "The new material withstands even the greatest wear and tear"; "The bridge held" -02707125 42 v 01 stand 6 002 @ 00117985 v 0000 + 07366145 n 0101 01 + 01 00 | remain inactive or immobile; "standing water" -02707251 42 v 04 weather 0 endure 4 brave 0 brave_out 0 002 @ 02706816 v 0000 + 07944754 n 0301 02 + 08 00 + 11 00 | face and withstand with courage; "She braved the elements" -02707429 42 v 02 lend_oneself 0 apply 1 006 + 01834812 a 0201 + 01975448 a 0201 + 01834812 a 0202 + 00949134 n 0201 ! 02707800 v 0101 $ 02676789 v 0000 01 + 04 00 | be applicable to; as to an analysis; "This theory lends itself well to our new data" -02707681 42 v 01 beggar 0 001 @ 02707800 v 0000 01 + 11 00 | be beyond the resources of; "This beggars description!" -02707800 42 v 03 defy 1 resist 1 refuse 0 003 @ 02723232 v 0000 ! 02707429 v 0101 ~ 02707681 v 0000 01 + 11 00 | elude, especially in a baffling way; "This behavior defies explanation" -02707987 42 v 01 weekend 0 004 @ 02708420 v 0000 + 15170504 n 0101 + 10772472 n 0101 + 04570815 n 0101 01 + 02 00 | spend the weekend -02708123 42 v 05 piddle 0 wanton 0 wanton_away 0 piddle_away 0 trifle 0 002 @ 02267060 v 0000 + 01067819 n 0503 01 + 02 00 | waste time; spend one's time idly or inefficiently -02708301 42 v 01 misspend 0 001 @ 02267060 v 0000 01 + 08 00 | spend time badly or unwisely; "He misspent his youth" -02708420 42 v 02 spend 0 pass 0 009 ~ 01097031 v 0000 ~ 02492694 v 0000 ~ 02707987 v 0000 ~ 02708707 v 0000 ~ 02709107 v 0000 ~ 02709277 v 0000 ~ 02709422 v 0000 ~ 02709573 v 0000 ~ 02709774 v 0000 01 + 08 00 | pass time in a specific way; "how are you spending your summer vacation?" -02708707 42 v 02 vacation 0 holiday 0 007 @ 02708420 v 0000 + 15137890 n 0202 + 15137890 n 0101 + 10744164 n 0102 + 10744164 n 0101 + 01065805 n 0101 ~ 02708923 v 0000 02 + 02 00 + 22 00 | spend or take a vacation -02708923 42 v 01 honeymoon 0 003 @ 02708707 v 0000 + 15138903 n 0101 + 10356066 n 0102 02 + 02 00 + 22 00 | spend a holiday after one's marriage; "they plan to honeymoon in Hawai'i" -02709107 42 v 02 serve 0 do 2 002 @ 02708420 v 0000 ~ 02671279 v 0000 02 + 08 00 + 22 00 | spend time in prison or in a labor camp; "He did six years for embezzlement" -02709277 42 v 02 while_away 0 get_through 0 001 @ 02708420 v 0000 01 + 08 00 | spend or pass, as with boredom or in a pleasant manner; of time -02709422 42 v 01 sojourn 0 003 @ 02708420 v 0000 + 10621847 n 0101 + 01055360 n 0101 01 + 08 00 | spend a certain length of time; reside temporarily -02709573 42 v 02 winter 0 overwinter 0 002 @ 02708420 v 0000 + 15237782 n 0101 02 + 02 00 + 22 00 | spend the winter; "We wintered on the Riviera"; "Shackleton's men overwintered on Elephant Island" -02709774 42 v 01 summer 0 002 @ 02708420 v 0000 + 15237250 n 0101 02 + 02 00 + 22 00 | spend the summer; "We summered in Kashmir" -02709906 42 v 01 diverge 0 005 + 00612652 a 0101 + 01004072 n 0102 ! 02710402 v 0101 ~ 02710137 v 0000 ~ 02718863 v 0000 01 + 01 00 | extend in a different direction; "The lines start to diverge here"; "Their interests diverged" -02710137 42 v 01 divaricate 0 001 @ 02709906 v 0000 01 + 01 00 | branch off; "The road divaricates here" -02710244 42 v 01 breast 0 002 @ 02710402 v 0000 + 05553288 n 0101 04 + 08 00 + 09 00 + 10 00 + 11 00 | meet at breast level; "The runner breasted the tape" -02710402 42 v 02 converge 0 meet 2 008 $ 01205696 v 0000 + 00612114 a 0101 + 00146572 n 0103 + 00146572 n 0102 + 07414740 n 0101 ! 02709906 v 0101 ~ 02710244 v 0000 ! 02732603 v 0101 02 + 01 00 + 04 00 | be adjacent or come together; "The lines converge at this point" -02710673 42 v 02 bound 0 border 0 012 @ 02711114 v 0000 + 13903387 n 0202 + 08565701 n 0202 + 08512736 n 0202 ^ 02703952 v 0201 + 13903079 n 0101 + 08512259 n 0101 + 13903079 n 0103 + 08512259 n 0102 ~ 02703711 v 0000 ~ 02703790 v 0000 ~ 02710981 v 0000 01 + 11 00 | form the boundary of; be contiguous to -02710981 42 v 01 shore 0 002 @ 02710673 v 0000 + 09433442 n 0101 01 + 11 00 | serve as a shore to; "The river was shored by trees" -02711114 42 v 03 enclose 0 hold_in 0 confine 0 009 @ 02700867 v 0000 + 13998576 n 0301 + 09273291 n 0101 + 03285912 n 0101 ~ 02710673 v 0000 ~ 02711375 v 0000 ~ 02711543 v 0000 ~ 02711721 v 0000 ~ 02711835 v 0000 01 + 11 00 | close in; darkness enclosed him" -02711375 42 v 01 embank 0 002 @ 02711114 v 0000 + 03282060 n 0101 01 + 08 00 | enclose with banks, as for support or protection; "The river was embanked with a dyke" -02711543 42 v 02 rail 0 rail_in 0 004 @ 02711114 v 0000 + 04046590 n 0101 + 04047401 n 0102 + 04047401 n 0101 02 + 08 00 + 11 00 | enclose with rails; "rail in the old graves" -02711721 42 v 02 box_in 0 box_up 0 001 @ 02711114 v 0000 02 + 08 00 + 11 00 | enclose or confine as if in a box -02711835 42 v 01 frame 0 004 @ 02711114 v 0000 + 10108606 n 0101 + 03390983 n 0102 + 03390983 n 0101 01 + 08 00 | enclose in a frame, as of a picture -02711987 42 v 07 depend_on 0 devolve_on 0 depend_upon 0 ride 7 turn_on 0 hinge_on 0 hinge_upon 0 001 ~ 02663643 v 0000 02 + 10 00 + 11 00 | be contingent on; "The outcomes rides on the results of the election"; "Your grade will depends on your homework" -02712243 42 v 01 pattern 0 004 @ 02657219 v 0000 + 08492747 n 0103 + 00410247 n 0102 + 05930736 n 0103 02 + 01 00 + 04 00 | form a pattern; "These sentences pattern like the ones we studied before" -02712443 42 v 06 predate 0 precede 0 forego 0 forgo 0 antecede 0 antedate 0 009 + 05047279 n 0503 + 07326880 n 0501 + 05047279 n 0502 + 00126497 a 0201 + 01257145 n 0201 + 05821486 n 0201 + 05047279 n 0206 + 05047279 n 0205 ! 02712772 v 0101 01 + 11 00 | be earlier in time; go back further; "Stone tools precede bronze tools" -02712772 42 v 02 postdate 0 follow 0 002 ! 02712443 v 0101 $ 02720354 v 0000 01 + 11 00 | be later in time; "Tuesday always follows Monday" -02712914 42 v 01 orient 1 003 > 02713184 v 0000 @ 01987160 v 0000 ~ 02713065 v 0000 01 + 21 00 | cause to point; "Orient the house towards the West" -02713065 42 v 01 stem 3 002 @ 02712914 v 0000 + 00441501 n 0102 01 + 08 00 | cause to point inward; "stem your skis" -02713184 42 v 02 orient 0 point 0 003 @ 02690708 v 0000 + 06818121 n 0202 + 03975232 n 0201 01 + 04 00 | be oriented; "The weather vane points North"; "the dancers toes pointed outward" -02713372 42 v 05 stick_out 1 protrude 0 jut_out 0 jut 0 project 0 010 + 00407090 n 0502 + 00407090 n 0404 + 00944848 a 0202 + 01353226 a 0201 + 00407090 n 0201 ~ 02713748 v 0000 ~ 02713852 v 0000 ~ 02714200 v 0000 ~ 02714360 v 0000 ~ 02714865 v 0000 02 + 01 00 + 04 00 | extend out or project in space; "His sharp nose jutted out"; "A single rock sticks out from the cliff" -02713748 42 v 01 overhang 1 002 @ 02713372 v 0000 + 03864356 n 0101 02 + 01 00 + 04 00 | project over -02713852 42 v 02 thrust 0 push_up 0 003 @ 02713372 v 0000 + 11498203 n 0102 $ 02714057 v 0000 02 + 01 00 + 04 00 | push upward; "The front of the trains that had collided head-on thrust up into the air" -02714057 42 v 01 thrust 1 003 $ 02713852 v 0000 ;c 06115701 n 0000 + 11498203 n 0102 01 + 11 00 | force (molten rock) into pre-existing rock -02714200 42 v 02 spear 0 spear_up 0 002 @ 02713372 v 0000 + 04270891 n 0101 02 + 01 00 + 04 00 | thrust up like a spear; "The branch speared up into the air" -02714360 42 v 02 bulge 0 bag 0 003 @ 02713372 v 0000 + 13894434 n 0101 ~ 02714541 v 0000 02 + 01 00 + 04 00 | bulge out; form a bulge outward, or be so full as to appear to bulge -02714541 42 v 01 protuberate 0 004 @ 02714360 v 0000 + 01353618 a 0106 + 14087321 n 0101 $ 02714731 v 0000 01 + 01 00 | form a rounded prominence; "The starved child's belly protuberated" -02714731 42 v 01 protuberate 1 003 $ 02714541 v 0000 + 01353618 a 0106 + 13894434 n 0109 01 + 11 00 | cause to bulge out or project -02714865 42 v 01 cantilever 0 002 @ 02713372 v 0000 + 02953056 n 0101 01 + 01 00 | project as a cantilever -02714974 42 v 03 teem 0 pullulate 0 swarm 0 005 @ 02706605 v 0000 + 07996149 n 0301 + 08184217 n 0303 ^ 02715923 v 0102 ~ 02716048 v 0000 02 + 04 00 + 01 01 | be teeming, be abuzz; "The garden was swarming with bees"; "The plaza is teeming with undercover policemen"; "her mind pullulated with worries" -02715279 42 v 01 abound 0 004 @ 02604760 v 0000 + 00013887 a 0101 + 05115040 n 0101 ^ 02715923 v 0101 02 + 01 00 + 04 00 | be abundant or plentiful; exist in large quantities -02715456 42 v 01 bristle 2 001 @ 02630189 v 0000 01 + 04 00 | have or be thickly covered with or as if with bristles; "bristling leaves" -02715595 42 v 03 abound 1 burst 0 bristle 0 002 @ 02630189 v 0000 + 00555325 n 0201 01 + 08 00 | be in a state of movement or action; "The room abounded with screaming children"; "The garden bristled with toddlers" -02715812 42 v 01 brim 0 001 @ 02630189 v 0000 01 + 04 00 | be completely full; "His eyes brimmed with tears" -02715923 42 v 03 abound_in 0 teem_in 0 pullulate_with 0 001 @ 02612368 v 0000 02 + 10 00 + 11 00 | exist in large quantity -02716048 42 v 01 crawl 0 001 @ 02714974 v 0000 01 + 04 00 | be full of; "The old cheese was crawling with maggots" -02716165 42 v 04 attach_to 1 accompany 0 come_with 0 go_with 1 004 + 07284554 n 0201 ~ 02660819 v 0000 ~ 02716567 v 0000 ~ 02716995 v 0000 02 + 10 00 + 11 00 | be present or associated with an event or entity; "French fries come with the hamburger"; "heart attacks are accompanied by distruction of heart tissue"; "fish usually goes with white wine"; "this kind of vein accompanies certain arteries" -02716567 42 v 01 attend 1 002 @ 02716165 v 0000 + 00122844 a 0101 01 + 11 00 | to accompany as a circumstance or follow as a result; "Menuhin's playing was attended by a 15-minute standing ovation" -02716767 42 v 04 company 0 companion 0 accompany 1 keep_company 0 006 @ 02589245 v 0000 + 00827782 n 0302 + 09946278 n 0201 + 09760609 n 0201 + 09945905 n 0201 + 08264897 n 0102 02 + 09 00 + 10 00 | be a companion to somebody -02716995 42 v 01 rule 1 001 @ 02716165 v 0000 01 + 11 00 | have an affinity with; of signs of the zodiac -02717102 42 v 03 carry 1 pack 0 take a 003 $ 02636516 v 0000 @ 02630189 v 0000 + 00318735 n 0101 01 + 08 00 | have with oneself; have on one's person; "She always takes an umbrella"; "I always carry money"; "She packs a gun when she goes into the mountains" -02717362 42 v 01 bag 1 002 @ 01985524 v 0000 + 04123567 n 0102 01 + 01 00 | hang loosely, like an empty bag -02717472 42 v 03 dangle 0 swing 0 drop 4 004 @ 01482075 v 0000 + 04371774 n 0201 + 00327824 n 0202 ~ 02717701 v 0000 02 + 01 00 + 04 00 | hang freely; "the ornaments dangled from the tree"; "The light dropped from the ceiling" -02717701 42 v 02 droop 0 loll 1 002 @ 02717472 v 0000 + 13905572 n 0102 01 + 01 00 | hang loosely or laxly; "His tongue lolled" -02717831 42 v 03 cancel 0 offset 0 set_off 0 003 @ 02673134 v 0000 + 13291189 n 0202 ~ 02543874 v 0000 01 + 11 00 | make up for; "His skills offset his opponent's superior strength" -02718015 42 v 02 offset 1 countervail 0 002 @ 02673134 v 0000 + 13291189 n 0102 01 + 11 00 | compensate for or counterbalance; "offset deposits and withdrawals" -02718178 42 v 01 adhere 0 001 @ 02657219 v 0000 01 + 08 00 | be compatible or in accordance with; "You must adhere to the rules" -02718309 42 v 01 share 0 004 @ 02660631 v 0000 + 13843786 n 0101 ~ 02736660 v 0000 ~ 02751055 v 0000 04 + 08 00 + 09 00 + 11 00 + 31 00 | have in common; "Our children share a love of music"; "The two countries share a long border" -02718543 42 v 03 disagree 0 disaccord 0 discord 0 006 @ 02604760 v 0000 + 01164250 a 0301 + 00553899 a 0301 + 13979064 n 0301 + 01170175 n 0302 ! 02657219 v 0108 01 + 01 00 | be different from one another -02718750 42 v 03 gape 0 yawn 0 yaw 0 001 @ 02604760 v 0000 01 + 01 00 | be wide open; "the deep gaping canyon" -02718863 42 v 01 bifurcate 0 004 @ 02709906 v 0000 + 00388392 n 0103 + 13887056 n 0101 + 00388710 n 0101 02 + 01 00 + 04 00 | split or divide into two -02719016 42 v 03 sulk 0 pout 0 brood 0 004 * 01773346 v 0000 + 10627899 n 0204 + 07551498 n 0101 ~ 01805384 v 0000 01 + 02 00 | be in a huff and display one's displeasure; "She is pouting because she didn't get what she wanted" -02719246 42 v 01 take_kindly_to 0 001 @ 02719399 v 0000 01 + 08 00 | be willing or inclined to accept; "He did not take kindly to my critical remarks" -02719399 42 v 05 tend 1 be_given 0 lean 1 incline 1 run 1 009 @ 02604760 v 0000 + 07498854 n 0401 + 06196584 n 0401 + 04944048 n 0402 + 07499113 n 0103 + 06196584 n 0103 ~ 02719246 v 0000 ~ 02719807 v 0000 ~ 02732148 v 0000 01 + 28 00 | have a tendency or disposition to do or be something; be inclined; "She tends to be nervous before her lectures"; "These dresses run small"; "He inclined to corpulence" -02719807 42 v 01 suffer 4 001 @ 02719399 v 0000 01 + 22 00 | be given to; "She suffers from a tendency to talk too much" -02719930 42 v 02 belong_to 0 belong 6 002 ~ 02653564 v 0000 ~ 02653706 v 0000 03 + 09 00 + 10 00 + 11 00 | be a part or adjunct; "the uniform looks like it belonged to a museum collection"; "These pages don't belong" -02720149 42 v 02 follow 5 fall_out 2 001 @ 02634265 v 0000 02 + 01 00 + 34 00 | come as a logical consequence; follow logically; "It follows that your assertion is false"; "the theorem falls out nicely" -02720354 42 v 02 follow 1 come_after 0 003 $ 02712772 v 0000 $ 02720544 v 0000 @ 02634265 v 0000 01 + 11 00 | come after in time, as a result; "A terrible tsunami followed the earthquake" -02720544 42 v 01 follow 2 002 @ 02655135 v 0000 $ 02720354 v 0000 03 + 01 00 + 02 00 + 22 00 | be next; "Mary plays best, with John and Sue following" -02720697 42 v 01 follow 3 001 > 02720544 v 0000 01 + 08 00 | to bring something about at a later time than; "She followed dinner with a brandy"; "He followed his lecture with a question and answer period" -02720904 42 v 01 run 2 001 @ 02721031 v 0000 01 + 08 00 | be affected by; be subjected to; "run a temperature"; "run a risk" -02721031 42 v 01 incur 0 005 @ 02110927 v 0000 + 00072691 n 0101 + 00078217 n 0101 + 01240064 n 0101 ~ 02720904 v 0000 01 + 08 00 | make oneself subject to; bring upon oneself; become liable to; "People who smoke incur a great danger to their health" -02721284 42 v 02 run 4 go 2 001 @ 02604760 v 0000 01 + 01 00 | have a particular form; "the story or argument runs as follows"; "as the saying goes..." -02721438 42 v 04 leave 1 allow_for 0 allow 0 provide 0 002 $ 02745486 v 0000 @ 02339171 v 0000 03 + 08 00 + 11 00 + 22 04 | make a possibility or provide opportunity for; permit to be attainable or cause to remain; "This leaves no room for improvement"; "The evidence allows only one conclusion"; "allow for mistakes"; "leave lots of time for the trip"; "This procedure provides for lots of leeway" -02721840 42 v 01 come_up 1 001 @ 00339738 v 0000 02 + 01 00 + 02 00 | be mentioned; "These names came up in the discussion" -02721966 42 v 04 look_out_on 0 look_out_over 0 overlook 1 look_across 0 002 @ 02690708 v 0000 + 08614104 n 0301 01 + 11 00 | be oriented in a certain direction; "The house looks out on a tennis court"; "The apartment overlooks the Hudson" -02722207 42 v 02 figure 0 enter 0 001 @ 02604760 v 0000 02 + 04 00 + 22 00 | be or play a part of or in; "Elections figure prominently in every government program"; "How do the elections figure in the current pattern of internal politics?" -02722449 42 v 01 play 0 000 01 + 02 00 | be received or accepted or interpreted in a specific way; "This speech didn't play well with the American public"; "His remarks played to the suspicions of the committee" -02722663 42 v 02 present 0 pose 0 001 @ 02620587 v 0000 01 + 11 00 | introduce; "This poses an interesting question" -02722782 42 v 01 press 0 002 @ 02604760 v 0000 + 14451349 n 0105 01 + 01 00 | be urgent; "This is a pressing problem" -02722902 42 v 01 rage 0 002 @ 02604760 v 0000 + 13980128 n 0101 01 + 01 00 | be violent; as of fires and storms -02723016 42 v 03 ramp 0 rage 1 storm 0 006 @ 00010435 v 0000 + 13978344 n 0301 + 14036735 n 0201 + 07516997 n 0202 + 00601032 a 0101 + 00554541 n 0101 01 + 02 00 | behave violently, as if in state of a great anger -02723232 42 v 02 elude 0 escape 0 004 @ 00622384 v 0000 + 01273316 a 0101 + 01717901 a 0101 ~ 02707800 v 0000 01 + 10 00 | be incomprehensible to; escape understanding by; "What you are seeing in him eludes me" -02723445 42 v 01 center_on 1 001 @ 02655135 v 0000 01 + 11 00 | have as a center; "The region centers on Charleston" -02723564 42 v 02 do_well 0 had_best 0 001 @ 02367363 v 0000 01 + 32 00 | act in one's own or everybody's best interest; "You will do well to arrive on time tomorrow!" -02723733 42 v 02 exemplify 0 represent 1 004 @ 02697725 v 0000 + 05765901 n 0102 + 05937112 n 0102 + 05820620 n 0101 02 + 10 00 + 11 00 | be characteristic of; "This compositional style is exemplified by this fugue" -02723951 42 v 03 go_back 0 date_back 0 date_from 0 002 @ 01628449 v 0000 ~ 02751451 v 0000 02 + 08 00 + 11 00 | belong to an earlier time; "This story dates back 200 years" -02724126 42 v 01 cloister 0 002 @ 01467370 v 0000 + 03047941 n 0101 02 + 08 00 + 11 00 | surround with a cloister, as of a garden -02724258 42 v 02 become 3 suit 1 001 @ 00293141 v 0000 01 + 10 00 | enhance the appearance of; "Mourning becomes Electra"; "This behavior doesn't suit you!" -02724417 42 v 02 relate 1 interrelate 0 008 @ 02604760 v 0000 + 13844212 n 0201 + 00040962 n 0101 + 00031921 n 0101 $ 00713818 v 0000 ~ 01017222 v 0000 ~ 02592667 v 0000 ~ 02736106 v 0000 03 + 01 00 + 02 00 + 04 01 | be in a relationship with; "How are these two observations related?" -02724705 42 v 01 rut 0 002 @ 02604760 v 0000 + 14038264 n 0104 01 + 01 00 | be in a state of sexual excitement; of male mammals -02724835 42 v 01 stagnate 0 005 @ 02604760 v 0000 + 01241248 a 0102 + 14013005 n 0101 + 14013005 n 0102 $ 02725067 v 0000 01 + 01 00 | cease to flow; stand without moving; "Stagnating waters"; "blood stagnates in the capillaries" -02725067 42 v 01 stagnate 2 006 $ 02724835 v 0000 @ 00109660 v 0000 + 01241248 a 0102 + 14012667 n 0101 + 14013005 n 0101 + 14013005 n 0102 01 + 11 00 | cause to stagnate; "There are marshes that stagnate the waters" -02725286 42 v 01 stagnate 1 003 @ 02604760 v 0000 + 00810764 a 0101 + 14012667 n 0101 01 + 01 00 | stand still; "Industry will stagnate if we do not stimulate our economy" -02725460 42 v 01 come_in_handy 0 001 @ 02604760 v 0000 01 + 01 00 | be useful for a certain purpose -02725562 42 v 01 squat 1 001 @ 02604760 v 0000 02 + 01 00 + 08 00 | be close to the earth, or be disproportionately wide; "The building squatted low" -02725714 42 v 02 refrain 0 forbear 0 010 + 01066689 n 0201 ! 02367363 v 0101 ~ 00136991 v 0000 ~ 02371239 v 0000 ~ 02463426 v 0000 ~ 02464583 v 0000 ~ 02726044 v 0000 ~ 02726164 v 0000 ~ 02726385 v 0000 ~ 02726543 v 0000 01 + 22 00 | resist doing something; "He refrained from hitting him back"; "she could not forbear weeping" -02726044 42 v 02 forbear 1 hold_back 1 001 @ 02725714 v 0000 01 + 02 00 | refrain from doing; "she forbore a snicker" -02726164 42 v 02 help_oneself 0 help 8 001 @ 02725714 v 0000 02 + 02 00 + 33 00 | abstain from doing; always used with a negative; "I can't help myself--I have to smoke"; "She could not help watching the sad spectacle" -02726385 42 v 01 stand_by 0 001 @ 02725714 v 0000 02 + 01 00 + 02 00 | not act or do anything; "He just stood by when the police beat up the demonstrators" -02726543 42 v 01 sit_out 0 002 @ 02725714 v 0000 ;c 00523513 n 0000 01 + 08 00 | not participate in (an activity, such as a dance or a sports event); "He sat out the game" -02726717 42 v 01 hoodoo 0 004 @ 02604760 v 0000 + 10184290 n 0101 + 03603958 n 0103 + 03532080 n 0101 02 + 01 00 + 02 00 | bring bad luck; be a source of misfortune -02726884 42 v 01 impend 0 003 @ 02604760 v 0000 + 14030820 n 0105 + 14030820 n 0104 01 + 01 00 | be imminent or about to happen; "Changes are impending" -02727039 42 v 02 range 1 run 7 007 $ 02686625 v 0000 @ 02604760 v 0000 + 08399586 n 0101 + 08628921 n 0101 + 05125377 n 0102 + 08000304 n 0102 $ 02685951 v 0000 01 + 11 00 | change or be different within limits; "Estimates for the losses in the earthquake range as high as $2 billion"; "Interest rates run from 5 to 10 percent"; "The instruments ranged from tuba to cymbals"; "My students range from very bright to dull" -02727462 42 v 04 stay 2 stay_on 0 continue a remain 3 005 @ 02604760 v 0000 + 05051896 n 0303 + 01053617 n 0101 ~ 02637202 v 0000 ~ 02643280 v 0000 02 + 02 00 + 22 00 | continue in a place, position, or situation; "After graduation, she stayed on in Cambridge as a student adviser"; "Stay with me, please"; "despite student protests, he remained Dean for another year"; "She continued as deputy mayor for another year" -02727883 42 v 01 sell 0 007 $ 02242464 v 0000 $ 02244956 v 0000 @ 02604760 v 0000 + 01115162 n 0101 + 01113068 n 0101 ~ 02728570 v 0000 ~ 02728784 v 0000 02 + 01 00 + 04 00 | be sold at a certain price or in a certain way; "These books sell like hot cakes" -02728142 42 v 01 translate 0 003 $ 00959827 v 0000 @ 02604760 v 0000 + 06536389 n 0101 02 + 01 00 + 04 00 | be translatable, or be translatable in a certain way; "poetry often does not translate"; "Tolstoy's novels translate well into English" -02728388 42 v 01 scale 0 004 @ 02704349 v 0000 + 04141975 n 0101 + 01005814 n 0101 + 01005284 n 0101 01 + 11 00 | measure by or as if by a scale; "This bike scales only 25 pounds" -02728570 42 v 01 retail 0 005 $ 02247028 v 0000 @ 02727883 v 0000 ;c 01090446 n 0000 + 01114458 n 0101 + 01115866 n 0101 01 + 04 00 | be sold at the retail level; "These gems retail at thousands of dollars each" -02728784 42 v 01 trade 0 005 @ 02727883 v 0000 ;c 01090446 n 0000 + 01110274 n 0102 + 01091905 n 0101 ~ 02754276 v 0000 02 + 01 00 + 04 00 | be traded at a certain price or under certain conditions; "The stock traded around $20 a share" -02729023 42 v 02 head 1 head_up 0 005 $ 01999423 v 0000 @ 02604760 v 0000 + 08572467 n 0102 + 08482271 n 0101 + 10162991 n 0101 02 + 08 00 + 09 00 | be the first or leading member of (a group) and excel; "This student heads the class" -02729260 42 v 01 come_in_for 0 001 @ 02604760 v 0000 02 + 08 00 + 11 00 | be subject to or the object of; "The governor came in for a lot of criticism" -02729414 42 v 01 leave 2 002 $ 02635659 v 0000 @ 00120316 v 0000 02 + 05 00 + 10 00 | act or be so as to become in a specified state; "The inflation left them penniless"; "The president's remarks left us speechless" -02729632 42 v 01 compare 0 004 @ 02604760 v 0000 + 04746842 n 0102 $ 00652900 v 0000 ~ 02729819 v 0000 01 + 01 00 | be comparable; "This car does not compare with our line of Mercedes" -02729819 42 v 01 go a 001 @ 02729632 v 0000 01 + 01 00 | be ranked or compare; "This violinist is as good as Juilliard-trained violinists go" -02729963 42 v 02 fall 3 come 0 001 @ 02604760 v 0000 02 + 04 00 + 22 00 | come under, be classified or included; "fall into a category"; "This comes under a new heading" -02730135 42 v 01 leave 3 003 @ 02205098 v 0000 $ 00136991 v 0000 $ 02635659 v 0000 02 + 10 00 + 11 00 | have left or have as a remainder; "That left the four of us"; "19 minus 8 leaves 11" -02730326 42 v 02 run_into 1 encounter 0 001 @ 02604760 v 0000 01 + 11 00 | be beset by; "The project ran into numerous financial difficulties" -02730471 42 v 01 feel 0 004 $ 02106006 v 0000 @ 02133435 v 0000 + 14526182 n 0103 ~ 02730682 v 0000 02 + 06 00 + 07 00 | be felt or perceived in a certain way; "The ground feels shaky"; "The sheets feel soft" -02730682 42 v 01 crawl 1 001 @ 02730471 v 0000 01 + 01 00 | feel as if crawling with insects; "My skin crawled--I was terrified" -02730813 42 v 02 read 0 say 0 003 @ 02630189 v 0000 + 06590065 n 0101 $ 00625119 v 0000 02 + 06 00 + 11 00 | have or contain a certain wording or form; "The passage reads as follows"; "What does the law say?" -02731024 42 v 03 persist 1 remain 1 stay 4 003 + 01758339 a 0101 ~ 02647798 v 0000 ~ 02731242 v 0000 02 + 01 00 + 04 00 | stay behind; "The smell stayed in the room"; "The hostility remained long after they made up" -02731242 42 v 01 linger 2 001 @ 02731024 v 0000 02 + 01 00 + 04 00 | remain present although waning or gradually dying; "Her perfume lingered on" -02731390 42 v 02 lie 2 rest 0 003 @ 02655135 v 0000 + 08624196 n 0101 $ 02690708 v 0000 01 + 11 00 | have a place in relation to something else; "The fate of Bosnia lies in the hands of the West"; "The responsibility rests with the Allies" -02731632 42 v 02 count 1 number 1 002 @ 00654625 v 0000 + 08480512 n 0201 02 + 20 00 + 21 00 | put into a group; "The academy counts several Nobel Prize winners among its members" -02731814 42 v 01 owe 0 001 @ 02663643 v 0000 02 + 15 00 + 21 00 | be indebted to, in an abstract or intellectual sense; "This new theory owes much to Einstein's Relativity Theory" -02731996 42 v 01 gravitate 0 002 @ 02604760 v 0000 + 06198313 n 0101 02 + 04 00 + 22 00 | be attracted to; "Boys gravitate towards girls at that age" -02732148 42 v 01 gravitate 1 002 @ 02719399 v 0000 + 06198313 n 0101 01 + 04 00 | move toward; "The conversation gravitated towards politics" -02732292 42 v 01 pay 0 001 @ 02604760 v 0000 01 + 34 00 | be worth it; "It pays to go through the trouble" -02732401 42 v 01 converge 1 005 @ 02703952 v 0000 ;c 06000644 n 0000 + 05863106 n 0102 + 05863106 n 0101 ! 02732603 v 0101 01 + 01 00 | approach a limit as the number of terms increases without limit -02732603 42 v 01 diverge 2 006 @ 02604760 v 0000 ;c 06000644 n 0000 + 05863302 n 0102 + 05863302 n 0101 ! 02710402 v 0101 ! 02732401 v 0101 01 + 01 00 | have no limits as a mathematical series -02732798 42 v 03 accommodate 3 hold 5 admit 4 005 + 01762065 a 0302 $ 02701210 v 0000 ~ 02701445 v 0000 ~ 02701828 v 0000 ~ 02701962 v 0000 02 + 10 00 + 11 00 | have room for; hold without crowding; "This hotel can accommodate 250 guests"; "The theater admits 300 people"; "The auditorium can't hold more than 500 people" -02733122 42 v 02 keep 2 preserve 1 005 @ 01128193 v 0000 + 08587439 n 0201 + 00819024 n 0201 + 10466918 n 0201 $ 02202928 v 0000 01 + 09 00 | maintain in safety from injury, harm, or danger; "May God keep you" -02733334 42 v 01 shine 1 001 @ 02604760 v 0000 02 + 01 00 + 02 00 | be distinguished or eminent; "His talent shines" -02733453 42 v 01 resplend 0 004 @ 02765924 v 0000 + 00219389 a 0102 + 04684358 n 0103 + 04684358 n 0102 01 + 01 00 | be resplendent or radiant; to shine brightly; "The Queen's garments resplended in velvet and jewels" -02733673 42 v 02 go_far 0 go_deep 0 001 @ 02685951 v 0000 01 + 01 00 | extend in importance or range; "His accomplishments go far" -02733806 42 v 01 go_down 0 000 02 + 04 00 + 22 00 | be recorded or remembered; "She will go down as the first feminist" -02733928 42 v 01 iridesce 0 005 @ 02604760 v 0000 + 00403072 a 0103 + 00282020 a 0101 + 04953678 n 0102 ~ 02734140 v 0000 01 + 01 00 | be iridescent; "The corals iridesced under the surface of the clear water" -02734140 42 v 01 opalesce 0 003 @ 02733928 v 0000 + 00282020 a 0103 + 04953678 n 0101 01 + 01 00 | exhibit a play of colors like that of an opal; "This nitrate opalesces under certain conditions" -02734338 42 v 01 lie 3 002 @ 02604760 v 0000 + 08624196 n 0101 02 + 06 00 + 07 00 | be and remain in a particular state or condition; "lie dormant" -02734488 42 v 01 stand 3 002 @ 02604760 v 0000 + 06210363 n 0103 02 + 04 00 + 22 00 | occupy a place or location, also metaphorically; "We stand on common ground" -02734653 42 v 01 photograph 0 001 + 03925226 n 0101 02 + 01 00 + 02 00 | undergo being photographed in a certain way; "Children photograph well" -02734800 42 v 02 keep 3 stay_fresh 0 002 @ 00117985 v 0000 $ 00212414 v 0000 01 + 01 00 | fail to spoil or rot; "These potatoes keep for a long time" -02734952 42 v 01 hang 0 002 @ 02604760 v 0000 ~ 02744061 v 0000 01 + 04 00 | be menacing, burdensome, or oppressive; "This worry hangs on my mind"; "The cloud of suspicion hangs over her" -02735142 42 v 01 litter 0 003 @ 02604760 v 0000 + 14858292 n 0101 + 10267166 n 0101 01 + 11 00 | strew; "Cigar butts littered the ground" -02735282 42 v 01 suit 2 002 @ 02604760 v 0000 ~ 02291135 v 0000 02 + 10 00 + 11 00 | be agreeable or acceptable; "This time suits me" -02735418 42 v 02 end 1 terminate 5 011 @ 02604760 v 0000 + 01010569 a 0201 + 05981768 n 0202 + 06398401 n 0102 + 14562960 n 0101 + 05868477 n 0101 + 15266911 n 0101 + 07291794 n 0101 + 15266911 n 0102 + 07291312 n 0101 ~ 02140781 v 0000 01 + 11 00 | be the end of; be the last or concluding part of; "This sad scene ended the movie" -02735753 42 v 01 fit 3 002 @ 02604760 v 0000 ~ 02659763 v 0000 02 + 05 00 + 06 00 | conform to some shape or size; "How does this shirt fit?" -02735897 42 v 02 help 0 facilitate 0 004 @ 02670398 v 0000 + 01208291 n 0201 + 05154908 n 0103 + 01207609 n 0104 05 + 02 00 + 28 00 + 34 00 + 35 02 + 35 01 | be of use; "This will help to prevent accidents" -02736106 42 v 01 tie_in 0 001 @ 02724417 v 0000 01 + 04 00 | be in connection with something relevant; "This ties in closely with his earlier remarks" -02736259 42 v 01 go_into 0 000 01 + 11 00 | be used or required for; "A lot of energy went into the organization of this banquet" -02736391 42 v 01 lend 0 001 @ 02604760 v 0000 02 + 20 00 + 21 00 | have certain characteristics of qualities for something; be open or vulnerable to; "This story would lend itself well to serialization on television"; "The current system lends itself to great abuse" -02736660 42 v 01 partake 0 001 @ 02718309 v 0000 01 + 11 00 | have some of the qualities or attributes of something -02736778 42 v 02 define 3 delineate 1 006 @ 02137132 v 0000 + 01979326 a 0201 + 03173524 n 0201 + 00900726 n 0202 + 04702957 n 0101 + 13555446 n 0102 01 + 11 00 | show the form or outline of; "The tree was clearly defined by the light"; "The camera could define the smallest object" -02737063 42 v 01 let_go 0 001 @ 02604760 v 0000 01 + 02 00 | be relaxed; "Don't be so worried all the time--just let go!" -02737187 42 v 03 derive 0 come f descend 0 009 $ 02743214 v 0000 + 13813042 n 0301 + 08101937 n 0304 + 10006511 n 0302 + 10006511 n 0301 + 00698586 a 0101 + 08508105 n 0101 + 04922787 n 0103 $ 00251791 v 0000 02 + 04 00 + 22 00 | come from; be connected by a relationship of blood, for example; "She was descended from an old Italian noble family"; "he comes from humble origins" -02737569 42 v 01 belong 1 001 @ 02604760 v 0000 02 + 04 00 + 22 00 | be rightly classified in a class or category; "The whales belong among the mammals" -02737724 42 v 01 belong 2 001 @ 02604760 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be suitable or acceptable; "This student somehow doesn't belong" -02737876 42 v 02 belong 3 go 4 001 @ 02655135 v 0000 02 + 04 00 + 22 00 | be in the right place or situation; "Where do these books belong?"; "Let's put health care where it belongs--under the control of the government"; "Where do these books go?" -02738126 42 v 01 go_around 0 001 @ 02669789 v 0000 01 + 01 00 | be sufficient; "There's not enough to go around" -02738241 42 v 01 fry 0 001 @ 00372665 v 0000 01 + 02 00 | be excessively hot; "If the children stay out on the beach for another hour, they'll be fried" -02738396 42 v 01 circumvolute 0 001 @ 02738701 v 0000 02 + 01 00 + 04 00 | wind or turn in volutions, especially in an inward spiral, as of snail -02738544 42 v 01 spiral 0 003 @ 02738701 v 0000 + 13876561 n 0102 + 13876371 n 0101 02 + 01 00 + 04 00 | form a spiral; "The path spirals up the mountain" -02738701 42 v 03 wind 0 twist 0 curve 0 006 @ 02604760 v 0000 + 05072663 n 0302 + 02829696 n 0302 ~ 02738396 v 0000 ~ 02738544 v 0000 ~ 02738976 v 0000 02 + 01 00 + 04 00 | extend in curves and turns; "The road winds around the lake"; "the path twisted through the forest" -02738976 42 v 01 snake 0 002 @ 02738701 v 0000 + 04248010 n 0101 01 + 04 00 | form a snake-like pattern; "The river snakes through the valley" -02739121 42 v 01 miscegenate 0 002 @ 02651193 v 0000 + 00849768 n 0101 01 + 02 00 | marry or cohabit with a person of another race -02739254 42 v 04 synchronize 0 synchronise 0 contemporize 0 contemporise 0 006 @ 00339934 v 0000 + 13845239 n 0206 + 13845239 n 0202 + 13845239 n 0105 + 13845239 n 0102 + 13845239 n 0107 01 + 01 00 | happen at the same time -02739480 42 v 03 meet 0 encounter 2 receive 0 003 @ 00121046 v 0000 + 01773420 a 0301 + 01985247 a 0301 04 + 08 00 + 11 00 + 04 01 + 22 01 | experience as a reaction; "My proposal met with much opposition" -02739688 42 v 01 foil 0 002 @ 02666882 v 0000 + 05853924 n 0101 02 + 08 00 + 11 00 | enhance by contrast; "In this picture, the figures are foiled against the background" -02739861 42 v 02 jumble 0 mingle 0 003 @ 02604760 v 0000 + 05953416 n 0103 + 14500567 n 0102 02 + 01 00 + 04 00 | be all mixed up or jumbled together; "His words jumbled" -02740034 42 v 01 wear 1 001 @ 02630189 v 0000 02 + 08 00 + 11 00 | have in one's aspect; wear an expression of one's attitude or personality; "He always wears a smile" -02740204 42 v 02 falter 0 waver 2 002 @ 02640440 v 0000 + 10603528 n 0201 02 + 01 00 + 02 00 | be unsure or weak; "Their enthusiasm is faltering" -02740352 42 v 01 embody 2 002 @ 00988028 v 0000 + 05941210 n 0102 01 + 11 00 | represent or express something abstract in tangible form; "This painting embodies the feelings of the Romantic period" -02740552 42 v 01 promise 0 002 @ 02604760 v 0000 + 05950733 n 0101 02 + 08 00 + 11 00 | give grounds for expectations; "The new results were promising"; "The results promised fame and glory" -02740745 42 v 01 have c 000 01 + 08 00 | be confronted with; "What do we have here?"; "Now we have a fine mess" -02740859 42 v 01 hold_one's_own 0 000 01 + 02 00 | be sufficiently competent in a certain situation; "He can hold his own in graduate school" -02741003 42 v 01 hang 1 001 $ 01482075 v 0000 04 + 01 00 + 02 00 + 04 00 + 22 00 | be exhibited; "Picasso hangs in this new wing of the museum" -02741149 42 v 01 range 3 003 + 08628921 n 0101 + 05623628 n 0102 ~ 02741357 v 0000 01 + 04 00 | have a range; be capable of projecting over a certain distance, as of a gun; "This gun ranges over two miles" -02741357 42 v 01 carry f 003 @ 02741149 v 0000 + 00318735 n 0101 $ 02079933 v 0000 01 + 01 00 | be conveyed over a certain distance; "Her voice carries very well in this big opera house" -02741546 42 v 02 accept 0 take 3 001 @ 02604760 v 0000 01 + 11 00 | be designed to hold or take; "This surface will not take the dye" -02741682 42 v 01 admit 0 000 01 + 04 00 | give access or entrance to; "The French doors admit onto the yard" -02741793 42 v 01 agree 3 002 ;c 06174404 n 0000 + 13797313 n 0101 02 + 01 00 + 04 00 | show grammatical agreement; "Subjects and verbs must always agree in English" -02741960 42 v 01 clean 0 003 @ 02604760 v 0000 + 00251013 n 0101 $ 01532589 v 0000 02 + 01 00 + 04 00 | be cleanable; "This stove cleans easily" -02742107 42 v 01 draw 0 002 $ 01854132 v 0000 @ 02604760 v 0000 01 + 01 00 | allow a draft; "This chimney draws very well" -02742232 42 v 02 drive 0 ride 3 006 + 00307631 n 0202 + 03244388 n 0102 + 03242713 n 0101 + 00307631 n 0101 $ 01930874 v 0000 $ 01955984 v 0000 01 + 06 00 | have certain properties when driven; "This car rides smoothly"; "My new truck drives well" -02742482 42 v 01 mean 3 000 02 + 08 00 + 11 00 | have a specified degree of importance; "My ex-husband means nothing to me"; "Happiness means everything" -02742638 42 v 01 confront 0 003 @ 02693319 v 0000 + 07181043 n 0101 + 01169744 n 0101 02 + 08 00 + 09 00 | be face to face with; "The child screamed when he confronted the man in the Halloween costume" -02742842 42 v 01 wash 0 004 @ 02604760 v 0000 + 02533810 a 0101 + 00255710 n 0101 $ 01535246 v 0000 02 + 01 00 + 06 00 | be capable of being washed; "Does this material wash?" -02743020 42 v 01 balance 1 005 @ 02604760 v 0000 + 14002279 n 0101 + 02152212 n 0103 + 09833751 n 0101 $ 02673134 v 0000 02 + 01 00 + 02 00 | be in equilibrium; "He was balancing on one foot" -02743214 42 v 02 hail 0 come 9 002 @ 02604760 v 0000 $ 02737187 v 0000 01 + 22 00 | be a native of; "She hails from Kalamazoo" -02743343 42 v 01 originate 2 004 @ 02608347 v 0000 + 08507558 n 0102 + 07323922 n 0101 + 07323922 n 0102 01 + 04 00 | begin a trip at a certain point, as of a plane, train, bus, etc.; "The flight originates in Calcutta" -02743565 42 v 01 come 5 002 @ 02655135 v 0000 $ 02625339 v 0000 01 + 22 00 | exist or occur in a certain point in a series; "Next came the student from France" -02743727 42 v 01 flow 0 005 @ 02603699 v 0000 + 15277730 n 0101 + 07405893 n 0101 + 13482330 n 0101 + 00329227 n 0101 01 + 04 00 | be abundantly present; "The champagne flowed at the wedding" -02743921 42 v 02 issue_forth 0 come d 000 02 + 01 00 + 04 00 | come forth; "A scream came from the woman's mouth"; "His breath came hard" -02744061 42 v 04 brood 1 hover 5 loom 6 bulk_large 0 002 @ 02734952 v 0000 ~ 02744280 v 0000 01 + 04 00 | hang over, as of something threatening, dark, or menacing; "The terrible vision brooded over her all day long" -02744280 42 v 03 overshadow 0 dominate 3 eclipse 0 001 @ 02744061 v 0000 01 + 11 00 | be greater in significance than; "the tragedy overshadowed the couple's happiness" -02744451 42 v 01 afford 0 001 + 00935103 a 0103 01 + 08 00 | have the financial means to do something or buy something; "We can't afford to send our children to college"; "Can you afford this car?" -02744651 42 v 01 open 0 003 + 09379111 n 0101 + 05249636 n 0102 + 03499142 n 0102 01 + 04 00 | have an opening or passage or outlet; "The bedrooms open into the hall" -02744820 42 v 01 be d 001 @ 00117985 v 0000 01 + 09 00 | to remain unmolested, undisturbed, or uninterrupted -- used only in infinitive form; "let her be" -02744977 42 v 01 act 0 005 $ 01719921 v 0000 @ 02604760 v 0000 + 00795785 a 0101 + 06892016 n 0101 + 00548326 n 0101 01 + 06 00 | be suitable for theatrical performance; "This scene acts well" -02745172 42 v 01 add 0 003 $ 00182406 v 0000 @ 02621395 v 0000 + 00048129 a 0101 01 + 11 00 | constitute an addition; "This paper will add to her reputation" -02745332 42 v 01 make c 004 $ 02598483 v 0000 @ 02645007 v 0000 ;c 06004067 n 0000 $ 02665124 v 0000 01 + 11 00 | add up to; "four and four make eight" -02745486 42 v 02 admit 6 allow 7 003 + 01762257 a 0201 + 01985812 a 0101 $ 02721438 v 0000 01 + 04 00 | afford possibility; "This problem admits of no solution"; "This short story allows of several different interpretations" -02745713 42 v 01 test 0 003 @ 02604760 v 0000 + 00791078 n 0101 + 00644702 n 0101 01 + 07 00 | show a certain characteristic when tested; "He tested positive for HIV" -02745882 42 v 01 seem 0 001 @ 02604760 v 0000 01 + 11 00 | appear to exist; "There seems no reason to go ahead with the project now" -02746017 42 v 01 answer 1 001 @ 02604760 v 0000 01 + 22 00 | be liable or accountable; "She must answer for her actions" -02746140 42 v 01 beat 0 001 @ 02604760 v 0000 01 + 11 00 | be superior; "Reading beats watching television"; "This sure beats work!" -02746275 42 v 01 hold 7 001 @ 02604760 v 0000 01 + 11 00 | have as a major characteristic; "The novel holds many surprises"; "The book holds in store much valuable advise" -02746449 42 v 01 break 5 002 @ 00123170 v 0000 + 07367812 n 0102 01 + 11 00 | vary or interrupt a uniformity or continuity; "The flat plain was broken by tall mesas" -02746617 42 v 01 break f 001 @ 02609764 v 0000 01 + 01 00 | come to an end; "The heat wave finally broke yesterday" -02746735 42 v 01 carry d 003 $ 02636325 v 0000 @ 02630189 v 0000 + 09897350 n 0101 01 + 11 00 | have as an inherent or characteristic feature or have as a consequence; "This new washer carries a two year guarantee"; "The loan carries a high interest rate"; "this undertaking carries many dangers"; "She carries her mother's genes"; "These bonds carry warrants"; "The restaurant carries an unusual name" -02747140 42 v 01 count 4 001 @ 02604760 v 0000 01 + 04 00 | have a certain value or carry a certain weight; "each answer counts as three points" -02747287 42 v 01 contain 6 002 @ 02604760 v 0000 ;c 06004067 n 0000 01 + 11 00 | be divisible by; "24 contains 6" -02747403 42 v 01 connect 5 003 @ 02604760 v 0000 + 00316989 n 0101 + 00316989 n 0102 02 + 01 00 + 04 00 | be scheduled so as to provide continuing service, as in transportation; "The local train does not connect with the Amtrak train"; "The planes don't connect and you will have to wait for four hours" -02747709 42 v 01 continue b 004 $ 02684924 v 0000 @ 02367363 v 0000 + 05051896 n 0103 + 01017987 n 0102 02 + 01 00 + 02 00 | continue after an interruption; "The demonstration continued after a break for lunch" -02747922 42 v 02 continue c persist_in 0 003 $ 02410175 v 0000 @ 02367363 v 0000 + 01017987 n 0102 02 + 08 00 + 11 00 | do something repeatedly and showing no intention to stop; "We continued our research into the cause of the illness"; "The landlord persists in asking us to move" -02748206 42 v 01 sell d 002 @ 02604760 v 0000 + 01115162 n 0101 01 + 11 00 | be responsible for the sale of; "All her publicity sold the products" -02748355 42 v 01 sell e 001 @ 02604760 v 0000 01 + 01 00 | be approved of or gain acceptance; "The new idea sold well in certain circles" -02748495 42 v 01 kill 0 002 @ 02604760 v 0000 + 00219012 n 0102 01 + 01 00 | be fatal; "cigarettes kill"; "drunken driving kills" -02748627 42 v 01 make d 002 @ 02604760 v 0000 + 03714899 n 0101 02 + 09 00 + 11 00 | be suitable for; "Wood makes good furniture" -02748759 42 v 01 make 9 003 @ 00109660 v 0000 + 03714899 n 0101 + 00923995 n 0103 01 + 04 00 | undergo fabrication or creation; "This wool makes into a nice sweater" -02748927 42 v 06 deck 0 adorn 0 decorate 0 grace 0 embellish 0 beautify 0 009 @ 02604760 v 0000 + 00261604 n 0601 + 04683814 n 0601 + 05003590 n 0401 + 01091234 a 0302 + 03169390 n 0301 + 00262249 n 0301 + 02681518 n 0201 ~ 02749247 v 0000 01 + 11 00 | be beautiful to look at; "Flowers adorned the tables everywhere" -02749247 42 v 01 ornament 0 003 $ 01675963 v 0000 @ 02748927 v 0000 + 13920322 n 0101 01 + 11 00 | be an ornament to; "stars ornamented the Christmas tree" -02749405 42 v 01 blanket 0 002 @ 01207951 v 0000 + 09223725 n 0101 01 + 11 00 | form a blanket-like cover (over) -02749520 42 v 01 carpet 0 002 @ 01207951 v 0000 + 04118021 n 0102 01 + 11 00 | form a carpet-like cover (over) -02749633 42 v 01 smother 0 001 @ 01207951 v 0000 01 + 11 00 | form an impenetrable cover over; "the butter cream smothered the cake" -02749768 42 v 01 shroud 2 002 @ 01207951 v 0000 + 03879116 n 0102 01 + 11 00 | form a cover like a shroud; "Mist shrouded the castle" -02749904 42 v 01 be 4 000 04 + 01 00 + 02 00 + 04 00 + 22 00 | happen, occur, take place; "I lost my wallet; this was during the visit to my parents' house"; "There were two hundred people at his funeral"; "There was a lot of noise in the kitchen" -02750154 42 v 01 ride 4 001 @ 01838651 v 0000 01 + 22 00 | be sustained or supported or borne; "His glasses rode high on his nose"; "The child rode on his mother's hips"; "She rode a wave of popularity"; "The brothers rode to an easy victory on their father's political name" -02750432 42 v 02 rhyme 0 rime 0 004 @ 02657219 v 0000 + 07096661 n 0202 + 07096661 n 0101 ~ 02750642 v 0000 01 + 01 00 | be similar in sound, especially with respect to the last syllable; "hat and cat rhyme" -02750642 42 v 01 assonate 0 004 @ 02750432 v 0000 + 02063279 a 0101 + 01966016 a 0101 + 07097346 n 0101 01 + 01 00 | correspond in vowel sounds; rhyme in assonance; "The accented vowels assonated in this poem" -02750854 42 v 01 consist 4 001 @ 02604760 v 0000 01 + 22 00 | have its essential character; be comprised or contained in; be embodied in; "The payment consists in food"; "What does love consist in?" -02751055 42 v 01 osculate 0 003 @ 02718309 v 0000 ;c 06000644 n 0000 + 14419889 n 0101 02 + 01 00 + 11 00 | have at least three points in common with; "one curve osculates the other"; "these two surfaces osculate" -02751271 42 v 01 work a 002 $ 01235355 v 0000 @ 02604760 v 0000 01 + 06 00 | behave in a certain way when handled; "This dough does not work easily"; "The soft metal works well" -02751451 42 v 01 ascend 2 001 @ 02723951 v 0000 01 + 01 00 | go back in order of genealogical succession; "Inheritance may not ascend linearly" -02751597 42 v 01 lubricate 0 004 @ 02604760 v 0000 + 14578104 n 0101 + 14890659 n 0101 + 14890659 n 0102 01 + 01 00 | have lubricating properties; "the liquid in this can lubricates well" -02751787 42 v 01 breathe 1 001 @ 02604760 v 0000 01 + 01 00 | allow the passage of air through; "Our new synthetic fabric breathes and is perfect for summer wear" -02751952 42 v 01 trim 5 003 @ 02604760 v 0000 + 13828520 n 0101 $ 02752107 v 0000 01 + 01 00 | be in equilibrium during a flight; "The airplane trimmed" -02752107 42 v 01 trim 6 003 $ 02751952 v 0000 @ 02673134 v 0000 + 13828520 n 0101 01 + 08 00 | balance in flight by regulating the control surfaces; "trim an airplane" -02752277 42 v 01 swing a 003 @ 02604760 v 0000 + 07066042 n 0101 + 04992008 n 0102 01 + 01 00 | have a certain musical rhythm; "The music has to swing" -02752431 42 v 01 osculate 3 001 @ 02604760 v 0000 01 + 01 00 | be intermediate between two taxonomic groups; "These species osculate" -02752567 42 v 01 retard 0 004 @ 02604760 v 0000 + 15275598 n 0101 + 05061345 n 0103 + 01067577 n 0103 01 + 01 00 | be delayed -02752695 42 v 04 summarize 0 summarise 0 sum 0 sum_up 0 005 $ 01007924 v 0000 @ 01009240 v 0000 + 06469874 n 0301 + 06467445 n 0202 + 06467445 n 0101 01 + 11 00 | be a summary of; "The abstract summarizes the main ideas in the paper" -02752931 42 v 01 supplement 0 003 $ 02342132 v 0000 @ 02620587 v 0000 + 05110772 n 0101 01 + 01 00 | serve as a supplement to; "Vitamins supplemented his meager diet" -02753100 42 v 01 translate 3 001 @ 02664769 v 0000 01 + 04 00 | be equivalent in effect; "the growth in income translates into greater purchasing power" -02753255 42 v 01 transplant 0 003 $ 01855155 v 0000 @ 02604760 v 0000 + 00331102 n 0101 01 + 01 00 | be transplantable; "These delicate plants do not transplant easily" -02753426 42 v 01 cohere 0 002 @ 02604760 v 0000 + 00464513 a 0101 01 + 01 00 | have internal elements or parts logically connected so that aesthetic consistency results; "the principles by which societies cohere" -02753642 42 v 01 cohere 1 004 > 02753426 v 0000 @ 00126264 v 0000 + 02477047 a 0101 + 00464513 a 0101 01 + 11 00 | cause to form a united, orderly, and aesthetically consistent whole; "Religion can cohere social groups" -02753865 42 v 01 object 0 002 @ 02604760 v 0000 + 01177033 n 0102 02 + 04 00 + 22 00 | be averse to or express disapproval of; "My wife objects to modern furniture" -02754032 42 v 01 stick 7 001 @ 02604760 v 0000 01 + 01 00 | be or become fixed; "The door sticks--we will have to plane it" -02754158 42 v 01 recognize 0 001 @ 02604760 v 0000 01 + 11 00 | exhibit recognition for (an antigen or a substrate) -02754276 42 v 01 close 1 001 @ 02728784 v 0000 01 + 04 00 | be priced or listed when trading stops; "The stock market closed high this Friday"; "My new stocks closed at $59 last night" -02754463 42 v 01 head 5 001 @ 02624263 v 0000 01 + 04 00 | take its rise; "These rivers head from a mountain range in the Himalayas" -02754598 42 v 01 distribute 0 001 @ 02604760 v 0000 01 + 01 00 | be mathematically distributive -02754696 42 v 01 distribute 1 002 @ 02603699 v 0000 $ 02754855 v 0000 01 + 01 00 | be distributed or spread, as in statistical analyses; "Values distribute" -02754855 42 v 01 distribute 2 002 $ 02754696 v 0000 @ 02082690 v 0000 01 + 11 00 | spread throughout a given area; "the function distributes the values evenly" -02755017 42 v 03 resist 4 reject 4 refuse 4 002 @ 00717358 v 0000 + 02363614 a 0102 01 + 11 00 | resist immunologically the introduction of some foreign tissue or organ; "His body rejected the liver of the donor" -02755232 42 v 01 cash_out 0 001 @ 02614387 v 0000 01 + 02 00 | choose a simpler life style after questioning personal and career satisfaction goals; "After 3 decades in politics, she cashed out and moved to Polynesia" -02755452 42 v 01 put_out 0 001 @ 02604760 v 0000 01 + 02 00 | be sexually active; "She is supposed to put out" -02755565 42 v 02 bake 0 broil 0 001 @ 02604760 v 0000 02 + 01 00 + 02 00 | be very hot, due to hot weather or exposure to the sun; "The town was broiling in the sun"; "the tourists were baking in the heat" -02755773 42 v 02 dwell 3 inhabit 3 001 @ 02603699 v 0000 01 + 11 00 | exist or be situated within; "Strange notions inhabited her mind" -02755911 42 v 02 swim 0 drown 0 001 @ 02604760 v 0000 01 + 04 00 | be covered with or submerged in a liquid; "the meat was swimming in a fatty gravy" -02756063 42 v 01 swim 2 001 @ 02604760 v 0000 01 + 02 00 | be dizzy or giddy; "my brain is swimming after the bottle of champagne" -02756196 42 v 01 base 4 001 @ 02694933 v 0000 04 + 08 00 + 09 00 + 10 00 + 11 00 | situate as a center of operations; "we will base this project in the new lab" -02756359 42 v 01 belong 7 001 @ 02604760 v 0000 03 + 02 00 + 04 00 + 22 00 | be a member, adherent, inhabitant, etc. (of a group, organization, or place); "They belong to the same political party" -02756558 43 v 02 rain 0 rain_down 0 007 @ 02756821 v 0000 + 15008607 n 0101 + 11501381 n 0101 ~ 02757475 v 0000 ~ 02757651 v 0000 ~ 02757828 v 0000 ~ 02758033 v 0000 02 + 03 00 + 11 00 | precipitate as rain; "If it rains much more, we can expect some flooding" -02756821 43 v 03 precipitate 0 come_down 0 fall 0 009 * 00364868 v 0000 + 13772653 n 0101 + 11494638 n 0101 $ 01972298 v 0000 ~ 02756558 v 0000 ~ 02757182 v 0000 ~ 02758977 v 0000 ~ 02759115 v 0000 ~ 02759254 v 0000 02 + 01 00 + 08 00 | fall from clouds; "rain, snow and sleet were falling"; "Vesuvius precipitated its fiery, destructive rage on Herculaneum" -02757182 43 v 01 spat 0 001 @ 02756821 v 0000 01 + 01 00 | come down like raindrops; "Bullets were spatting down on us" -02757304 43 v 01 liquefy 0 003 @ 00146138 v 0000 + 02261985 a 0101 + 13508651 n 0101 01 + 01 00 | become liquid; "The garden air overnight liquefied into a morning dew" -02757475 43 v 02 drizzle 0 mizzle 0 003 @ 02756558 v 0000 + 11502322 n 0202 + 11502322 n 0101 01 + 03 00 | rain lightly; "When it drizzles in summer, hiking can be pleasant" -02757651 43 v 02 shower 0 shower_down 0 003 @ 02756558 v 0000 + 11502497 n 0101 + 07363668 n 0101 01 + 03 00 | rain abundantly; "Meteors showered down over half of Australia" -02757828 43 v 05 sprinkle 0 spit 0 spatter 0 patter 0 pitter-patter 0 003 @ 02756558 v 0000 + 11506167 n 0102 + 11506167 n 0103 01 + 03 00 | rain gently; "It has only sprinkled, but the roads are slick" -02758033 43 v 05 pour 0 pelt 0 stream 0 rain_cats_and_dogs 0 rain_buckets 0 004 @ 02756558 v 0000 + 11502102 n 0206 ~ 02758262 v 0000 ~ 02758399 v 0000 01 + 03 00 | rain heavily; "Put on your rain coat-- it's pouring outside!" -02758262 43 v 01 sheet 0 001 @ 02758033 v 0000 01 + 03 00 | come down as if in sheets; "The rain was sheeting down during the monsoon" -02758399 43 v 02 sluice 0 sluice_down 0 002 @ 02758033 v 0000 + 04244379 n 0101 02 + 01 00 + 04 00 | pour as if from a sluice; "An aggressive tide sluiced across the barrier reef" -02758581 43 v 03 ice_up 0 frost_over 0 ice_over 0 002 * 02758826 v 0000 @ 00109660 v 0000 02 + 01 00 + 03 00 | become covered with a layer of ice; of a surface such as a window; "When the wings iced up, the pilot was forced to land his plane" -02758826 43 v 01 freeze a 002 + 11440521 n 0101 + 13484644 n 0102 01 + 03 00 | be very cold, below the freezing point; "It is freezing in Kalamazoo" -02758977 43 v 01 snow 0 003 @ 02756821 v 0000 + 15043763 n 0101 + 11508382 n 0101 01 + 03 00 | fall as snow; "It was snowing all night" -02759115 43 v 01 hail 0 002 @ 02756821 v 0000 + 11465530 n 0101 01 + 03 00 | precipitate as small ice particles; "It hailed for an hour" -02759254 43 v 01 sleet 0 002 @ 02756821 v 0000 + 11507951 n 0101 01 + 03 00 | precipitate as a mixture of rain and snow; "If the temperature rises above freezing, it will probably sleet" -02759443 43 v 01 flame 0 003 @ 00377002 v 0000 + 13480848 n 0102 + 13480848 n 0103 01 + 01 00 | be in flames or aflame; "The sky seemed to flame in the Hawaiian sunset" -02759614 43 v 02 ignite 0 light 0 019 > 00377002 v 0000 @ 02762468 v 0000 + 03666591 n 0202 + 15101361 n 0203 + 03666591 n 0201 + 00473243 a 0103 + 00473243 a 0102 + 13495873 n 0101 + 00378479 n 0101 + 15101361 n 0101 + 03666591 n 0103 + 15101361 n 0102 + 03666591 n 0104 ! 02761897 v 0103 ~ 01199881 v 0000 ~ 02760344 v 0000 ~ 02761372 v 0000 ~ 02764122 v 0000 ~ 02764245 v 0000 02 + 08 00 + 11 00 | cause to start burning; subject to fire or great heat; "Great heat can ignite almost any dry matter"; "Light a cigarette" -02760139 43 v 04 set_ablaze 0 set_aflame 0 set_on_fire 1 set_afire 0 002 * 02759614 v 0000 @ 02762468 v 0000 02 + 08 00 + 11 00 | set fire to; cause to start burning; "Lightening set fire to the forest" -02760344 43 v 01 reignite 0 001 @ 02759614 v 0000 01 + 08 00 | ignite anew, as of something burning; "The strong winds reignited the cooling embers" -02760495 43 v 02 douse 0 put_out 0 001 @ 02761897 v 0000 01 + 08 00 | put out, as of a candle or a light; "Douse the lights" -02760622 43 v 06 erupt 0 ignite 1 catch_fire 0 take_fire 0 combust 0 conflagrate 0 010 @ 00146138 v 0000 + 00472992 a 0501 + 00473502 a 0503 + 00473243 a 0203 + 00473243 a 0202 + 00378479 n 0201 ~ 02761012 v 0000 ~ 02761134 v 0000 ~ 02761229 v 0000 $ 02762468 v 0000 01 + 01 00 | start to burn or burst into flames; "Marsh gases ignited suddenly"; "The oily rags combusted spontaneously" -02761012 43 v 01 blow_out 1 001 @ 02760622 v 0000 01 + 01 00 | erupt in an uncontrolled manner; "The oil well blew out" -02761134 43 v 01 catch 4 001 @ 02760622 v 0000 01 + 01 00 | start burning; "The fire caught" -02761229 43 v 01 light_up 1 001 @ 02760622 v 0000 01 + 01 00 | start to burn with a bright flame; "The coal in the BBQ grill finally lit up" -02761372 43 v 04 kindle 0 enkindle 0 conflagrate 1 inflame 0 003 @ 02759614 v 0000 + 00378479 n 0405 ~ 02761594 v 0000 02 + 08 00 + 11 00 | cause to start burning; "The setting sun kindled the sky with oranges and reds" -02761594 43 v 01 rekindle 0 001 @ 02761372 v 0000 01 + 08 00 | kindle anew, as of a fire -02761685 43 v 02 kindle 1 inflame 1 004 @ 02764245 v 0000 + 00378479 n 0205 + 15101586 n 0101 + 00378479 n 0104 01 + 01 00 | catch fire; "The dried grass of the prairie kindled, spreading the flames for miles" -02761897 43 v 04 snuff_out 0 blow_out 0 extinguish 0 quench 0 008 + 00229934 n 0403 + 00229934 n 0301 + 03345837 n 0302 + 00229934 n 0302 ! 02759614 v 0301 ~ 01210622 v 0000 ~ 02760495 v 0000 ~ 02762299 v 0000 02 + 08 00 + 11 00 | put out, as of fires, flames, or lights; "Too big to be extinguished at once, the forest fires at best could be contained"; "quench the flames"; "snuff out the candles" -02762299 43 v 01 black_out 0 001 @ 02761897 v 0000 02 + 08 00 + 11 00 | obliterate or extinguish; "Some life-forms were obliterated by the radiation, others survived" -02762468 43 v 02 burn 2 combust 2 010 > 00377002 v 0000 $ 02760622 v 0000 + 00472992 a 0201 + 00473502 a 0203 + 00378069 n 0202 + 00473243 a 0101 ~ 02759614 v 0000 ~ 02760139 v 0000 ~ 02771997 v 0000 ~ 02772310 v 0000 02 + 08 00 + 11 00 | cause to burn or combust; "The sun burned off the fog"; "We combust coal and other fossil fuels" -02762806 43 v 04 flare 0 flame_up 0 blaze_up 0 burn_up 0 002 @ 00377002 v 0000 + 13481883 n 0101 01 + 01 00 | burn brightly; "Every star seemed to flare with new intensity" -02762981 43 v 02 flare 1 flame 1 003 @ 02763740 v 0000 ^ 02762806 v 0202 + 13481883 n 0101 01 + 01 00 | shine with a sudden light; "The night sky flared with the massive bombardment" -02763166 43 v 01 outshine 0 001 @ 02763740 v 0000 01 + 11 00 | shine brighter than; "What star outshines the sun?" -02763283 43 v 01 shine 3 002 > 02763740 v 0000 + 04953954 n 0103 02 + 08 00 + 21 00 | throw or flash the light of (a lamp); "Shine the light on that window, please" -02763450 43 v 01 shimmer 0 002 @ 02763740 v 0000 + 07411851 n 0101 01 + 01 00 | shine with a weak or fitful light; "Beech leaves shimmered in the moonlight" -02763609 43 v 02 flicker 0 flick 0 002 @ 02763740 v 0000 + 07412310 n 0101 01 + 01 00 | shine unsteadily; "The candle flickered" -02763740 43 v 02 shine 0 beam 3 012 + 11428023 n 0201 + 04953954 n 0103 ~ 02160321 v 0000 ~ 02160433 v 0000 ~ 02162672 v 0000 ~ 02762981 v 0000 ~ 02763166 v 0000 ~ 02763450 v 0000 ~ 02763609 v 0000 ~ 02764614 v 0000 ~ 02764765 v 0000 ~ 02768874 v 0000 01 + 01 00 | emit light; be bright, as of the sun or a light; "The sun shone bright that day"; "The fire beamed on their faces" -02764122 43 v 01 light_up 2 001 @ 02759614 v 0000 01 + 01 00 | ignite; "The sky lit up quickly above the raging volcano" -02764245 43 v 01 flare_up 0 002 @ 02759614 v 0000 ~ 02761685 v 0000 01 + 01 00 | ignite quickly and suddenly, especially after having died down; "the fire flared up and died down once again" -02764438 43 v 01 blaze 0 003 @ 00377002 v 0000 + 13439088 n 0101 ^ 02762806 v 0103 01 + 01 00 | burn brightly and intensely; "The summer sun alone can cause a pine to blaze" -02764614 43 v 01 blaze 1 002 @ 02763740 v 0000 + 04952570 n 0102 01 + 01 00 | shine brightly and intensively; "Meteors blazed across the atmosphere" -02764765 43 v 03 twinkle 0 winkle 0 scintillate 0 008 @ 02763740 v 0000 ;c 09239740 n 0000 + 00279618 a 0308 + 04771128 n 0301 + 09426038 n 0301 + 07411645 n 0101 + 09464486 n 0101 $ 02767760 v 0000 01 + 01 00 | emit or reflect light in a flickering manner; "Does a constellation twinkle more brightly than a single star?" -02765090 43 v 01 glare 1 001 @ 02765924 v 0000 01 + 01 00 | be sharply reflected; "The moon glared back at itself from the lake's surface" -02765231 43 v 01 opalesce 0 003 @ 02765924 v 0000 + 00282020 a 0103 + 04953678 n 0101 01 + 01 00 | reflect light or colors like an opal; "Distant clouds opalesce like pale brocade"; "raindrops caught in a sunbeam seem to opalesce" -02765464 43 v 02 absorb 0 take_in 0 006 + 00006336 a 0102 + 00006336 a 0101 + 00008734 a 0101 + 13424183 n 0101 ! 02767308 v 0101 ~ 02765692 v 0000 02 + 08 00 + 11 00 | suck or take up or in; "A black star absorbs all matter" -02765692 43 v 02 suck 0 suck_in 0 003 @ 02765464 v 0000 + 00842692 n 0102 + 00842692 n 0103 01 + 11 00 | attract by using an inexorable force, inducement, etc.; "The current boom in the economy sucked many workers in from abroad" -02765924 43 v 02 reflect 0 shine 1 009 @ 02767308 v 0000 + 09432990 n 0201 + 04953954 n 0203 + 02007882 a 0101 ~ 02733453 v 0000 ~ 02765090 v 0000 ~ 02765231 v 0000 ~ 02766223 v 0000 ~ 02766390 v 0000 01 + 01 00 | be bright by reflecting or casting light; "Drive carefully--the wet road reflects" -02766223 43 v 01 luminesce 0 004 @ 02765924 v 0000 + 00272410 a 0101 + 11476430 n 0101 + 05018785 n 0101 01 + 01 00 | be or become luminescent; exhibit luminescence -02766390 43 v 03 sparkle 0 scintillate 3 coruscate 0 009 @ 02765924 v 0000 + 00279618 a 0302 + 07412668 n 0303 + 00279618 a 0208 + 04952944 n 0204 + 04952944 n 0105 + 07412668 n 0102 + 13372123 n 0102 + 07411645 n 0103 01 + 01 00 | reflect brightly; "Unquarried marble sparkled on the hillside" -02766687 43 v 02 spark 0 sparkle 2 005 @ 02767308 v 0000 + 07412668 n 0202 + 09442341 n 0101 + 11511523 n 0102 + 07412310 n 0102 01 + 01 00 | emit or produce sparks; "A high tension wire, brought down by a storm, can continue to spark" -02766925 43 v 01 mirror 0 003 @ 02136271 v 0000 + 05767245 n 0101 + 03773035 n 0101 02 + 10 00 + 11 00 | reflect as if in a mirror; "The smallest pond at night mirrors the firmament above" -02767116 43 v 01 radiate 0 005 @ 02767308 v 0000 + 00280463 a 0104 + 11499284 n 0101 + 04953954 n 0102 + 04953954 n 0101 02 + 01 00 + 11 00 | send out rays or waves; "The sun radiates heat" -02767308 43 v 03 emit 0 give_out 0 give_off 0 013 + 01253060 n 0101 + 03283827 n 0101 ! 02765464 v 0101 ~ 00291286 v 0000 ~ 02765924 v 0000 ~ 02766687 v 0000 ~ 02767116 v 0000 ~ 02767760 v 0000 ~ 02767922 v 0000 ~ 02768120 v 0000 ~ 02768259 v 0000 ~ 02768431 v 0000 ~ 02768579 v 0000 02 + 08 00 + 11 00 | give off, send forth, or discharge; as of light, heat, or radiation, vapor, etc.; "The ozone layer blocks some harmful rays which the sun emits" -02767760 43 v 01 scintillate 1 003 $ 02764765 v 0000 @ 02767308 v 0000 + 07411645 n 0102 01 + 11 00 | give off; "the substance scintillated sparks and flashes" -02767922 43 v 02 fume 0 smoke 0 005 @ 02767308 v 0000 + 13556893 n 0201 + 11508092 n 0201 + 13556893 n 0202 + 11508092 n 0102 01 + 01 00 | emit a cloud of fine particles; "The chimney was fuming" -02768120 43 v 01 reek 0 001 @ 02767308 v 0000 01 + 01 00 | give off smoke, fumes, warm vapour, steam, etc.; "Marshes reeking in the sun" -02768259 43 v 01 shoot 0 001 @ 02767308 v 0000 01 + 11 00 | emit (as light, flame, or fumes) suddenly and forcefully; "The dragon shot fumes and flames out of its mouth" -02768431 43 v 01 ray 0 002 @ 02767308 v 0000 + 11428023 n 0104 01 + 11 00 | emit as rays; "That tower rays a laser beam for miles across the sky" -02768579 43 v 01 steam 0 001 @ 02767308 v 0000 02 + 01 00 + 02 00 | emit steam; "The rain forest was literally steaming" -02768702 43 v 03 shadow 0 shade 0 shade_off 0 004 @ 00311559 v 0000 + 13984613 n 0201 + 08646306 n 0103 + 13984944 n 0101 03 + 09 00 + 10 00 + 11 00 | cast a shadow over -02768874 43 v 02 burn 1 glow 0 003 @ 02763740 v 0000 + 11467786 n 0202 ~ 02769077 v 0000 01 + 01 00 | shine intensely, as if with heat; "The coals were glowing in the dark"; "The candles were burning" -02769077 43 v 01 gutter 0 001 @ 02768874 v 0000 01 + 01 00 | burn unsteadily, feebly, or low; flicker; "The cooling lava continued to gutter toward lower ground" -02769241 43 v 01 blow 0 007 + 11465017 n 0103 ~ 02769480 v 0000 ~ 02769642 v 0000 ~ 02769783 v 0000 ~ 02769900 v 0000 ~ 02770019 v 0000 ~ 02770362 v 0000 03 + 01 00 + 03 00 + 04 00 | be blowing or storming; "The wind blew from the West" -02769480 43 v 01 breeze 0 002 @ 02769241 v 0000 + 11431754 n 0101 03 + 01 00 + 03 00 + 04 00 | blow gently and lightly; "It breezes most evenings at the shore" -02769642 43 v 01 set_in 0 001 @ 02769241 v 0000 01 + 01 00 | blow toward the shore; "That gale could set in on us with the next high tide" -02769783 43 v 01 waft 0 001 @ 02769241 v 0000 02 + 01 00 + 04 00 | blow gently; "A breeze wafted through the door" -02769900 43 v 01 storm 0 002 @ 02769241 v 0000 + 11462526 n 0101 01 + 03 00 | blow hard; "It was storming all night" -02770019 43 v 01 squall 0 002 @ 02769241 v 0000 + 11514008 n 0101 01 + 01 00 | blow in a squall; "When it squalls, a prudent sailor reefs his sails" -02770170 43 v 01 storm 1 002 * 02756558 v 0000 + 11462526 n 0101 01 + 03 00 | rain, hail, or snow hard and be very windy, often with thunder or lightning; "If it storms, we'll need shelter" -02770362 43 v 01 bluster 0 002 @ 02769241 v 0000 + 11465297 n 0101 01 + 03 00 | blow hard; be gusty, as of wind; "A southeaster blustered onshore"; "The flames blustered" -02770535 43 v 02 thunder 0 boom 0 002 * 02769900 v 0000 + 07397355 n 0101 01 + 03 00 | be the case that thunder is being heard; "Whenever it thunders, my dog crawls under the bed" -02770717 43 v 02 overcast 0 cloud 0 010 @ 00311559 v 0000 + 09247410 n 0201 + 13449566 n 0201 ^ 02771020 v 0202 ^ 02771020 v 0203 + 13984468 n 0102 + 14524198 n 0103 ! 02771169 v 0101 ~ 02771888 v 0000 ~ 02772202 v 0000 01 + 11 00 | make overcast or cloudy; "Fall weather often overcasts our beaches" -02771020 43 v 03 overcloud 0 cloud_over 0 cloud_up 0 001 @ 00312380 v 0000 02 + 01 00 + 03 00 | become covered with clouds; "The sky clouded over" -02771169 43 v 04 clear_up 0 clear 0 light_up 0 brighten 0 001 ! 02770717 v 0101 02 + 01 00 + 03 00 | become clear; "The sky cleared after the storm" -02771320 43 v 02 blight 0 plague 0 006 @ 00259927 v 0000 + 07996412 n 0202 + 14076479 n 0201 + 14138691 n 0201 + 14215331 n 0101 + 14562854 n 0101 02 + 10 00 + 11 00 | cause to suffer a blight; "Too much rain may blight the garden with mold" -02771564 43 v 02 swamp 0 drench 0 002 @ 00217152 v 0000 + 09452395 n 0101 02 + 01 00 + 11 00 | drench or submerge or be drenched or submerged; "The tsunami swamped every boat in the harbor" -02771756 43 v 02 run_dry 0 dry_out 1 001 @ 00219403 v 0000 01 + 01 00 | become empty of water; "The river runs dry in the summer" -02771888 43 v 01 fog_up 0 001 @ 02770717 v 0000 02 + 01 00 + 03 00 | get foggy; "The windshield fogged up" -02771997 43 v 02 char 0 coal 0 004 @ 02762468 v 0000 + 14814616 n 0201 + 09273130 n 0202 + 14685172 n 0101 01 + 08 00 | burn to charcoal; "Without a drenching rain, the forest fire will char everything" -02772202 43 v 01 haze 0 002 @ 02770717 v 0000 + 11465888 n 0101 01 + 01 00 | become hazy, dull, or cloudy -02772310 43 v 01 deflagrate 0 002 @ 02762468 v 0000 + 13450417 n 0101 02 + 08 00 + 11 00 | cause to burn rapidly and with great intensity; "care must be exercised when this substance is to be deflagrated" diff --git a/corpora/en/wordnet/dict/frames.vrb b/corpora/en/wordnet/dict/frames.vrb deleted file mode 100644 index b95acb9e7..000000000 --- a/corpora/en/wordnet/dict/frames.vrb +++ /dev/null @@ -1,35 +0,0 @@ -1 Something ----s -2 Somebody ----s -3 It is ----ing -4 Something is ----ing PP -5 Something ----s something Adjective/Noun -6 Something ----s Adjective/Noun -7 Somebody ----s Adjective -8 Somebody ----s something -9 Somebody ----s somebody -10 Something ----s somebody -11 Something ----s something -12 Something ----s to somebody -13 Somebody ----s on something -14 Somebody ----s somebody something -15 Somebody ----s something to somebody -16 Somebody ----s something from somebody -17 Somebody ----s somebody with something -18 Somebody ----s somebody of something -19 Somebody ----s something on somebody -20 Somebody ----s somebody PP -21 Somebody ----s something PP -22 Somebody ----s PP -23 Somebody's (body part) ----s -24 Somebody ----s somebody to INFINITIVE -25 Somebody ----s somebody INFINITIVE -26 Somebody ----s that CLAUSE -27 Somebody ----s to somebody -28 Somebody ----s to INFINITIVE -29 Somebody ----s whether INFINITIVE -30 Somebody ----s somebody into V-ing something -31 Somebody ----s something with something -32 Somebody ----s INFINITIVE -33 Somebody ----s VERB-ing -34 It ----s that CLAUSE -35 Something ----s INFINITIVE diff --git a/corpora/en/wordnet/dict/index.adj b/corpora/en/wordnet/dict/index.adj deleted file mode 100644 index 2792ea58a..000000000 --- a/corpora/en/wordnet/dict/index.adj +++ /dev/null @@ -1,21508 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -.22-caliber a 1 1 \ 1 0 03146310 -.22-calibre a 1 1 \ 1 0 03146310 -.22_caliber a 1 1 \ 1 0 03146310 -.22_calibre a 1 1 \ 1 0 03146310 -.38-caliber a 1 1 \ 1 0 03146602 -.38-calibre a 1 1 \ 1 0 03146602 -.38_caliber a 1 1 \ 1 0 03146602 -.38_calibre a 1 1 \ 1 0 03146602 -.45-caliber a 1 1 \ 1 0 03146895 -.45-calibre a 1 1 \ 1 0 03146895 -.45_caliber a 1 1 \ 1 0 03146895 -.45_calibre a 1 1 \ 1 0 03146895 -0 a 1 1 & 1 1 02186132 -1 a 1 1 & 1 1 02186338 -10 a 1 1 & 1 1 02187296 -10-membered a 1 1 & 1 0 01503760 -100 a 1 1 & 1 1 02196107 -1000 a 1 1 & 1 1 02198752 -1000th a 1 1 & 1 0 02212473 -100th a 1 1 & 1 0 02209423 -101 a 1 1 & 1 0 02196211 -101st a 1 1 & 1 0 02209551 -105 a 1 1 & 1 0 02196333 -105th a 1 1 & 1 0 02209678 -10th a 1 1 & 1 0 02203373 -11 a 1 1 & 1 1 02187379 -110 a 1 1 & 1 0 02196439 -110th a 1 1 & 1 0 02209806 -115 a 1 1 & 1 0 02196543 -115th a 1 1 & 1 0 02209933 -11th a 1 1 & 1 1 02203500 -12 a 1 1 & 1 1 02187465 -120 a 1 1 & 1 0 02196657 -120th a 1 1 & 1 0 02210068 -125 a 1 1 & 1 0 02196769 -125th a 1 1 & 1 0 02210202 -12th a 1 1 & 1 0 02203629 -13 a 1 1 & 1 1 02187606 -130 a 1 1 & 1 0 02196891 -130th a 1 1 & 1 0 02210344 -135 a 1 1 & 1 0 02197007 -135th a 1 1 & 1 0 02210478 -13th a 1 1 & 1 1 02203763 -14 a 1 1 & 1 1 02187699 -140 a 1 1 & 1 0 02197130 -140th a 1 1 & 1 0 02210620 -145 a 1 1 & 1 0 02197244 -145th a 1 1 & 1 0 02210752 -14th a 1 1 & 1 1 02203868 -15 a 1 1 & 1 1 02187793 -150 a 1 1 & 1 0 02197364 -150th a 1 1 & 1 0 02210892 -155 a 1 1 & 1 0 02197476 -155th a 1 1 & 1 0 02211024 -15th a 1 1 & 1 1 02203976 -16 a 1 1 & 1 1 02187903 -160 a 1 1 & 1 0 02197595 -160th a 1 1 & 1 0 02211164 -165 a 1 1 & 1 0 02197708 -165th a 1 1 & 1 0 02211296 -16th a 1 1 & 1 0 02204131 -17 a 1 1 & 1 1 02187995 -170 a 1 1 & 1 0 02197828 -170th a 1 1 & 1 0 02211436 -175 a 1 1 & 1 0 02197944 -175th a 1 1 & 1 0 02211572 -17th a 1 1 & 1 1 02204237 -18 a 1 1 & 1 1 02188108 -180 a 1 1 & 1 0 02198069 -180th a 1 1 & 1 0 02211716 -18th a 1 1 & 1 1 02204363 -19 a 1 1 & 1 1 02188205 -190 a 1 1 & 1 0 02198187 -190th a 1 1 & 1 0 02211850 -19th a 1 1 & 1 1 02204472 -1st a 1 1 & 1 1 02202047 -2 a 1 1 & 1 1 02186470 -2-dimensional a 1 1 & 1 0 00660551 -20 a 1 1 & 1 1 02188317 -200 a 1 1 & 1 0 02198302 -200th a 1 1 & 1 0 02211989 -20th a 1 1 & 1 1 02204716 -21 a 1 1 & 1 1 02188431 -21st a 1 1 & 1 0 02204823 -22 a 1 1 & 1 1 02188525 -22nd a 1 1 & 1 0 02204932 -23 a 1 1 & 1 1 02188620 -23rd a 1 1 & 1 0 02205045 -24 a 1 1 & 1 1 02188720 -24th a 1 1 & 1 1 02205158 -25 a 1 1 & 1 1 02188817 -25th a 1 1 & 1 1 02205271 -26 a 1 1 & 1 1 02188913 -26th a 1 1 & 1 0 02205384 -27 a 1 1 & 1 1 02189008 -27th a 1 1 & 1 0 02205496 -28 a 1 1 & 1 1 02189108 -28th a 1 1 & 1 0 02205610 -29 a 1 1 & 1 1 02189209 -29th a 1 1 & 1 0 02205725 -2d a 1 1 & 1 1 02202146 -2nd a 1 1 & 1 0 02202146 -3 a 1 1 & 1 1 02186580 -3-dimensional a 1 1 & 1 0 00660809 -3-membered a 1 1 & 1 0 01502796 -30 a 1 1 & 1 1 02189306 -300 a 1 1 & 1 0 02198409 -300th a 1 1 & 1 0 02212108 -30th a 1 1 & 1 1 02205838 -31 a 1 1 & 1 0 02189396 -31st a 1 1 & 1 0 02205947 -32 a 1 1 & 1 0 02189491 -32nd a 1 1 & 1 0 02206056 -33 a 1 1 & 1 0 02189587 -33rd a 1 1 & 1 0 02206173 -34 a 1 1 & 1 0 02189688 -34th a 1 1 & 1 0 02206291 -35 a 1 1 & 1 0 02189786 -35th a 1 1 & 1 0 02206409 -36 a 1 1 & 1 0 02189883 -36th a 1 1 & 1 0 02206526 -37 a 1 1 & 1 0 02189979 -37th a 1 1 & 1 0 02206642 -38 a 1 1 & 1 0 02190080 -38th a 1 1 & 1 0 02206762 -39 a 1 1 & 1 0 02190182 -39th a 1 1 & 1 0 02206881 -3rd a 1 1 & 1 1 02202307 -4 a 1 1 & 1 1 02186665 -4-dimensional a 1 1 & 1 0 00661146 -4-membered a 1 1 & 1 0 01502925 -40 a 1 1 & 1 1 02190278 -400 a 1 1 & 1 0 02198520 -400th a 1 1 & 1 0 02212231 -40th a 1 1 & 1 0 02206998 -41 a 1 1 & 1 0 02190377 -41st a 1 1 & 1 0 02207105 -42 a 1 1 & 1 0 02190469 -42nd a 1 1 & 1 0 02207219 -43 a 1 1 & 1 0 02190562 -43rd a 1 1 & 1 0 02207334 -44 a 1 1 & 1 0 02190660 -44th a 1 1 & 1 0 02207450 -45 a 1 1 & 1 0 02190755 -45th a 1 1 & 1 0 02207566 -46 a 1 1 & 1 0 02190849 -46th a 1 1 & 1 0 02207681 -47 a 1 1 & 1 0 02190942 -47th a 1 1 & 1 0 02207795 -48 a 1 1 & 1 0 02191040 -48th a 1 1 & 1 0 02207913 -49 a 1 1 & 1 0 02191139 -49th a 1 1 & 1 0 02208030 -4th a 1 1 & 1 1 02202443 -5 a 1 1 & 1 1 02186750 -5-membered a 1 1 & 1 0 01503052 -50 a 1 1 & 1 1 02191232 -500 a 1 1 & 1 1 02198631 -500th a 1 1 & 1 0 02212352 -50th a 1 1 & 1 0 02208145 -51 a 1 1 & 1 0 02191336 -52 a 1 1 & 1 0 02191427 -53 a 1 1 & 1 0 02191519 -54 a 1 1 & 1 0 02191616 -55 a 1 1 & 1 0 02191710 -55th a 1 1 & 1 0 02208270 -56 a 1 1 & 1 0 02191803 -57 a 1 1 & 1 0 02191895 -58 a 1 1 & 1 0 02191992 -59 a 1 1 & 1 0 02192090 -5th a 1 1 & 1 0 02202712 -6 a 1 1 & 1 1 02186833 -6-membered a 1 1 & 1 0 01503179 -60 a 1 1 & 1 1 02192184 -60th a 1 1 & 1 0 02208385 -61 a 1 1 & 1 0 02192284 -62 a 1 1 & 1 0 02192376 -63 a 1 1 & 1 0 02192469 -64 a 1 1 & 1 0 02192567 -64th a 1 1 & 1 0 02208492 -65 a 1 1 & 1 0 02192662 -65th a 1 1 & 1 0 02208608 -66 a 1 1 & 1 0 02192756 -67 a 1 1 & 1 0 02192849 -68 a 1 1 & 1 0 02192947 -69 a 1 1 & 1 0 02193046 -6th a 1 1 & 1 1 02202854 -7 a 1 1 & 1 1 02186970 -7-membered a 1 1 & 1 0 01503375 -70 a 1 1 & 1 1 02193141 -70th a 1 1 & 1 1 02208723 -71 a 1 1 & 1 0 02193249 -72 a 1 1 & 1 0 02193346 -73 a 1 1 & 1 0 02193444 -74 a 1 1 & 1 0 02193547 -75 a 1 1 & 1 0 02193647 -75th a 1 1 & 1 0 02208852 -76 a 1 1 & 1 0 02193746 -77 a 1 1 & 1 0 02193844 -78 a 1 1 & 1 0 02193947 -79 a 1 1 & 1 0 02194051 -7th a 1 1 & 1 0 02202979 -8 a 1 1 & 1 1 02187073 -8-membered a 1 1 & 1 0 01503504 -80 a 1 1 & 1 1 02194151 -80th a 1 1 & 1 0 02208971 -81 a 1 1 & 1 0 02194255 -82 a 1 1 & 1 0 02194351 -83 a 1 1 & 1 0 02194448 -84 a 1 1 & 1 0 02194550 -85 a 1 1 & 1 0 02194649 -85th a 1 1 & 1 0 02209080 -86 a 1 1 & 1 0 02194747 -87 a 1 1 & 1 0 02194844 -88 a 1 1 & 1 0 02194946 -89 a 1 1 & 1 0 02195049 -8th a 1 1 & 1 0 02203123 -9 a 1 1 & 1 1 02187161 -9-membered a 1 1 & 1 0 01503633 -90 a 1 1 & 1 1 02195145 -90th a 1 1 & 1 0 02209197 -91 a 1 1 & 1 0 02195234 -92 a 1 1 & 1 0 02195328 -93 a 1 1 & 1 0 02195423 -94 a 1 1 & 1 0 02195523 -95 a 1 1 & 1 0 02195620 -95th a 1 1 & 1 0 02209306 -96 a 1 1 & 1 0 02195716 -97 a 1 1 & 1 0 02195811 -98 a 1 1 & 1 0 02195911 -99 a 1 1 & 1 0 02196012 -9th a 1 1 & 1 0 02203249 -a-ok a 1 1 & 1 0 01122907 -a-okay a 1 1 & 1 0 01122907 -a-one a 1 2 & ; 1 0 02341864 -a.m. a 1 1 & 1 0 00130518 -a_cappella a 1 1 & 1 0 02252352 -a_couple_of a 1 1 & 1 1 01553340 -a_few a 1 1 & 1 1 01553340 -a_la_carte a 1 1 ! 1 0 02453183 -a_la_mode a 1 1 & 1 0 00971506 -a_posteriori a 2 3 ! & ^ 2 0 00139126 00859350 -a_priori a 2 3 ! & ^ 2 0 00138912 00861109 -abactinal a 1 1 ! 1 0 01665972 -abandoned a 2 1 & 2 1 01313004 01317231 -abashed a 1 1 & 1 1 00531628 -abasic a 1 2 \ + 1 0 02598608 -abatable a 1 2 & + 1 0 02288022 -abatic a 1 2 \ + 1 0 02598608 -abaxial a 1 2 ! ; 1 0 00002312 -abbatial a 1 2 \ + 1 0 02598768 -abbreviated a 2 1 & 2 1 01436432 01442597 -abdicable a 1 2 & + 1 0 02528048 -abdominal a 1 2 \ + 1 1 02934594 -abdominous a 1 2 & + 1 0 00986457 -abdominovesical a 1 1 \ 1 0 02598981 -abducent a 1 2 ! ; 1 0 00002956 -abducting a 1 1 ; 1 0 00002956 -abecedarian a 1 1 & 1 0 00100881 -aberdonian a 1 2 \ + 1 0 02599114 -aberrant a 1 2 & + 1 1 01596122 -abeyant a 1 2 & + 1 0 00034032 -abhorrent a 1 2 & + 1 1 01625063 -abiding a 1 1 & 1 1 01754873 -abient a 1 4 ! \ + ; 1 0 02599689 -abiogenetic a 1 2 \ + 1 0 02599837 -abject a 4 1 & 4 2 00904745 01049941 01229435 00789281 -abkhaz a 1 1 \ 1 0 02599269 -abkhazian a 1 1 \ 1 0 02599269 -ablated a 1 1 & 1 1 00882018 -ablative a 2 4 & \ + ; 2 0 03041636 00050260 -ablaze a 4 1 & 4 1 01726021 00475308 00402731 00270496 -able a 4 4 ! & = + 4 3 00001740 00510348 00306663 01017439 -able-bodied a 1 1 & 1 0 01017439 -abloom a 1 1 & 1 0 01488856 -ablutionary a 1 2 & + 1 0 02117866 -abnaki a 1 1 \ 1 0 02599409 -abnormal a 3 6 ! & ^ = + ; 3 1 01595596 01598592 01533535 -abolishable a 1 2 & + 1 0 00738182 -abolitionary a 1 2 \ + 1 0 03138752 -abomasal a 1 2 \ + 1 0 03138895 -abominable a 2 2 & + 2 1 01460679 01126291 -aboral a 1 2 ! ; 1 0 01665674 -aboriginal a 3 3 & \ + 3 0 02599509 01037148 00813589 -abortifacient a 1 2 & + 1 0 00322844 -abortive a 1 2 & + 1 0 01082714 -aboulic a 1 2 & + 1 0 01583486 -abounding a 1 1 & 1 1 00014358 -about a 1 1 & 1 0 00032358 -above a 1 1 & 1 1 00125993 -above-mentioned a 1 1 & 1 1 00126116 -above-named a 1 1 & 1 0 00126116 -aboveboard a 1 1 & 1 0 02318728 -aboveground a 1 1 & 1 1 02471264 -abranchial a 1 0 1 0 01107094 -abranchiate a 1 1 ! 1 0 01107094 -abranchious a 1 0 1 0 01107094 -abrasive a 2 2 & + 2 0 02239289 00090219 -abreast a 1 1 & 1 0 01306645 -abridged a 1 3 ! & ^ 1 0 00004413 -abroach a 1 1 & 1 0 01659762 -abroad a 1 1 & 1 1 01037763 -abrupt a 4 2 & + 4 2 02294122 01143585 01145151 00640520 -abruptly-pinnate a 1 1 & 1 0 02172617 -abscessed a 1 1 & 1 0 02114190 -absent a 3 4 ! & = + 3 1 01847672 00927832 00165171 -absentminded a 1 2 & + 1 1 00165171 -absolute a 5 3 ! & + 5 3 00005205 00520892 00719328 00897015 00094069 -absolutist a 1 2 \ + 1 0 03139045 -absolutistic a 1 2 \ + 1 0 03139045 -absolved a 1 1 & 1 0 01320184 -absolvitory a 1 2 & + 1 0 00923495 -absorbable a 1 2 ! + 1 0 00008734 -absorbed a 2 1 & 2 2 00163948 02009166 -absorbefacient a 1 1 & 1 0 00006777 -absorbent a 1 4 ! & = + 1 0 00006336 -absorbing a 1 1 & 1 0 01344171 -absorptive a 1 3 & = + 1 1 00006336 -abstemious a 2 5 ! & ^ = + 2 0 00009046 02401863 -abstentious a 1 2 & + 1 0 00009346 -abstinent a 1 2 & + 1 0 00009346 -abstract a 3 5 ! & ^ = + 3 2 00011757 01980557 00862526 -abstracted a 1 2 & + 1 0 00165171 -abstractionist a 1 2 & + 1 0 01980557 -abstractive a 1 2 & + 1 1 00860932 -abstruse a 1 2 & + 1 0 00899226 -absurd a 2 2 & + 2 2 01431112 02570643 -abulic a 1 2 & + 1 0 01583486 -abundant a 1 5 ! & ^ = + 1 1 00013887 -abused a 2 2 ! & 2 1 02495564 00017352 -abusive a 2 2 & + 2 0 01628531 01160584 -abuzz a 1 1 & 1 0 01920697 -abysmal a 2 2 & + 2 0 01499155 00690683 -abyssal a 2 3 & \ + 2 0 02973733 00690683 -academic a 3 3 & \ + 3 3 02599939 00862718 02083908 -acanthoid a 1 1 & 1 0 01810011 -acanthotic a 1 2 \ + 1 0 02600131 -acanthous a 1 2 & + 1 0 01810011 -acapnial a 1 2 \ + 1 0 02600244 -acapnic a 1 2 \ + 1 0 02600244 -acapnotic a 1 2 \ + 1 0 02600244 -acarpellous a 1 1 ; 1 0 00316167 -acarpelous a 1 2 ! ; 1 0 00316167 -acarpous a 1 1 & 1 0 01082925 -acatalectic a 1 2 ! + 1 0 00317886 -acaudal a 1 2 & ; 1 0 00320847 -acaudate a 1 3 ! & ; 1 0 00320847 -acaulescent a 1 2 ! ; 1 0 00322321 -accelerando a 1 2 & + 1 0 02537841 -accelerated a 1 1 & 1 1 00977105 -accelerative a 1 2 & + 1 0 02535161 -acceleratory a 1 2 & + 1 0 02535161 -accented a 2 1 & 2 0 02320751 02319538 -accentual a 2 3 ! \ + 2 0 03139235 02290454 -acceptable a 4 5 ! & ^ + ; 4 1 00017782 02297966 01124768 01020709 -acceptant a 1 2 & + 1 0 01985557 -accepted a 1 1 & 1 1 00027599 -accepting a 1 1 & 1 1 00076127 -acceptive a 2 3 ! & + 2 0 00075952 01985557 -accessary a 1 1 & 1 0 02355248 -accessible a 4 5 ! & ^ = + 4 0 00019131 00533221 00183675 00134251 -accessional a 1 1 \ 1 0 03139363 -accessorial a 1 2 & + 1 0 00902946 -accessory a 2 2 & + 2 0 02355248 02354897 -accident-prone a 1 1 & 1 0 01293049 -accidental a 1 2 & + 1 0 01338909 -accipitrine a 1 1 \ 1 0 03139452 -acclivitous a 1 2 & + 1 0 02484530 -accommodating a 2 3 ! & ^ 2 0 00020787 01195963 -accommodational a 1 2 \ + 1 0 03139585 -accommodative a 3 3 & ^ + 3 0 00020787 00513388 00046339 -accompanied a 2 1 ! 2 1 02250899 02252053 -accompanying a 1 1 & 1 0 00122844 -accomplishable a 1 2 & + 1 0 01821690 -accomplished a 3 1 & 3 2 02226028 00521329 02129535 -accordant a 2 3 ! & + 2 0 00552841 00577122 -according a 2 1 & 2 0 00553140 00471572 -accountable a 1 2 & + 1 0 01996875 -accoutered a 1 2 & ; 1 0 01094398 -accoutred a 1 2 & ; 1 0 01094398 -accredited a 1 1 & 1 0 00178811 -accretionary a 1 2 & + 1 0 02535335 -accretive a 1 2 & + 1 0 02535533 -accrued a 1 1 & 1 1 00880447 -acculturational a 1 2 \ + 1 0 03139749 -acculturative a 1 2 \ + 1 0 03139749 -accumbent a 1 1 & 1 0 01238201 -accumulated a 1 1 & 1 0 00880447 -accumulative a 2 2 & + 2 0 00048460 00029769 -accurate a 2 4 ! & ^ = 2 1 00021766 00631798 -accursed a 1 1 & 1 0 00669853 -accurst a 1 1 & 1 0 00669853 -accusative a 2 4 & \ + ; 2 1 00924257 02861997 -accusatorial a 1 3 ! \ + 1 0 03041739 -accusatory a 1 2 & + 1 0 00924257 -accusing a 1 1 & 1 1 00924257 -accusive a 1 2 & + 1 0 00924257 -accustomed a 2 2 ! & 2 1 00024417 00489491 -ace a 1 2 & ; 1 0 02341864 -acellular a 1 1 & 1 0 00328128 -acentric a 2 2 & \ 2 0 03140110 00543407 -acephalous a 1 2 & ; 1 0 01184448 -acerate a 1 1 & 1 0 02167133 -acerb a 2 1 & 2 0 02369027 01802165 -acerbic a 2 2 & + 2 0 02369027 01802165 -acerose a 1 1 & 1 0 02167133 -acervate a 1 1 \ 1 0 02600447 -acetabular a 1 2 & + 1 0 00535844 -acetic a 1 1 \ 1 0 03039907 -acetonic a 1 2 \ + 1 0 02600593 -acetose a 1 1 & 1 0 02369179 -acetous a 1 1 & 1 0 02369179 -acetylenic a 1 2 \ + 1 0 02600691 -acetylic a 1 2 \ + 1 0 02600792 -achaean a 1 1 \ 1 0 02600893 -achenial a 1 2 \ + 1 0 02601123 -acheronian a 1 2 & + 1 0 00273652 -acherontic a 1 1 & 1 0 00273652 -achievable a 1 2 & + 1 0 01821690 -aching a 1 1 & 1 1 01711465 -achlamydeous a 1 2 ! ; 1 0 00365681 -achlorhydric a 1 1 \ 1 0 02601242 -achondritic a 2 3 ! \ + 2 0 02601326 00365936 -achondroplastic a 1 2 \ + 1 0 02899271 -achromatic a 1 5 ! & ^ = + 1 0 00386392 -achromatinic a 1 3 ! \ + 1 0 02696638 -achromatous a 1 1 & 1 0 00401831 -achromic a 1 1 & 1 0 00401922 -achromous a 1 1 & 1 0 00401922 -achy a 1 2 & + 1 0 01711465 -acicular a 1 2 & + 1 0 02167133 -aciculate a 1 1 \ 1 0 02601432 -acid a 3 3 & + ; 3 1 01802165 02369335 00025470 -acid-fast a 1 1 & 1 0 01774191 -acid-forming a 1 1 & 1 0 00025633 -acid-loving a 1 3 ! & ; 1 0 00026706 -acid-tasting a 1 1 & 1 0 02395810 -acidic a 2 3 ! & ; 2 0 00025238 02369335 -acidimetric a 1 2 \ + 1 0 02601564 -acidophilic a 1 2 & + 1 0 00026895 -acidophilous a 1 1 & 1 0 00026895 -acidotic a 1 2 \ + 1 0 02601674 -acidulent a 1 1 & 1 0 02369335 -acidulous a 1 2 & + 1 0 02369335 -aciduric a 1 1 & 1 0 00026895 -acinar a 2 2 \ + 2 0 02601940 02601788 -acinic a 1 2 \ + 1 0 02601940 -acinose a 1 1 \ 1 0 02601940 -acinous a 1 2 \ + 1 0 02601940 -acknowledgeable a 1 2 & + 1 0 01272609 -acknowledged a 2 4 ! & ^ = 2 0 00027247 01918464 -acned a 1 1 & 1 0 00246175 -acneiform a 1 1 \ 1 0 02602190 -acold a 1 2 & ; 1 0 01251830 -acorn-shaped a 1 1 & 1 0 02144834 -acoustic a 1 2 \ + 1 0 02868489 -acoustical a 1 2 \ + 1 1 02868489 -acquainted a 1 1 & 1 1 00965894 -acquiescent a 1 2 & + 1 0 01612627 -acquirable a 1 2 & + 1 0 00183832 -acquired a 1 1 & 1 1 01315670 -acquisitive a 1 4 ! & = + 1 0 00029343 -acquitted a 1 1 & 1 0 01320474 -acrid a 2 2 & + 2 0 02398608 01802165 -acrimonious a 1 2 & + 1 0 00116744 -acritical a 1 1 & 1 0 00651841 -acrobatic a 1 2 & + 1 1 00032497 -acrocarpous a 1 1 ! 1 0 02590268 -acrocentric a 1 1 \ 1 0 03140220 -acrogenic a 1 1 \ 1 0 02602434 -acrogenous a 1 2 \ + 1 0 02602434 -acromegalic a 1 2 & + 1 0 02140834 -acronymic a 1 2 \ + 1 0 02859341 -acronymous a 1 2 \ + 1 0 02859341 -acropetal a 1 2 ! ; 1 0 00031674 -acrophobic a 1 2 & + 1 0 00078329 -acroscopic a 1 2 ! ; 1 0 00002730 -across-the-board a 1 1 & 1 0 00526062 -actable a 1 2 ! + 1 0 00795785 -actinal a 1 2 ! ; 1 0 01665816 -acting a 1 1 & 1 1 01756166 -actinic a 1 2 \ + 1 0 03039997 -actinoid a 1 1 & 1 0 02374557 -actinometric a 1 2 \ + 1 0 02602644 -actinometrical a 1 1 \ 1 0 02602644 -actinomorphic a 1 3 ! & ; 1 0 02374349 -actinomorphous a 1 2 & ; 1 0 02374349 -actinomycetal a 1 2 \ + 1 0 02602784 -actinomycetous a 1 2 \ + 1 0 02602784 -actinomycotic a 1 2 \ + 1 0 02602951 -actionable a 1 2 & + 1 0 01370864 -activated a 4 2 & ; 4 1 01954005 01928926 00042692 00034924 -activating a 1 1 & 1 0 00322938 -active a 14 6 ! & ^ = + ; 14 8 00037457 01660444 00038750 01515280 00031974 00042457 00035465 00927373 00043411 00042037 00041618 00041361 00040325 00034710 -activist a 1 2 & + 1 0 00039122 -activistic a 1 2 & + 1 0 00039122 -actual a 5 4 ! & = + 5 4 00043765 01933520 02460964 01933731 00666610 -actuarial a 1 2 \ + 1 0 02939542 -actuated a 1 1 & 1 0 01558641 -actuating a 1 1 & 1 0 00322938 -acuate a 1 1 & 1 0 01810189 -aculeate a 1 1 \ 1 0 02603069 -aculeated a 1 1 \ 1 0 02603069 -acuminate a 1 2 & + 1 0 02167285 -acute a 6 4 ! & + ; 6 3 00044760 00803275 01744515 01811820 01810189 00650900 -acyclic a 2 3 ! & ; 2 0 00677877 00677313 -ad-lib a 2 1 & 2 1 01845451 02213557 -ad_hoc a 2 1 & 2 0 01798371 01103529 -ad_hominem a 1 1 & 1 0 01767826 -adactylous a 1 1 \ 1 0 02603235 -adagio a 1 1 & 1 0 00982881 -adamant a 1 2 & + 1 1 01024812 -adamantine a 3 2 & \ 3 0 02603319 01151246 01024812 -adaptable a 1 3 ! & + 1 1 01027263 -adaptational a 1 1 & 1 0 00046471 -adaptative a 1 2 & + 1 0 00046109 -adapted a 1 1 & 1 1 01540637 -adaptive a 1 3 ! & + 1 0 00046109 -adaxial a 1 2 ! ; 1 0 00002527 -addable a 1 2 & + 1 0 00048706 -addible a 1 2 & + 1 0 00048706 -addicted a 1 2 ! & 1 1 00047029 -addictive a 1 2 ! + 1 0 00047786 -additional a 1 1 & 1 0 00048858 -additive a 2 4 ! & + ; 2 0 01417451 00048129 -addlebrained a 1 1 & 1 1 00435872 -addled a 2 1 & 2 0 01069187 00436115 -addlepated a 1 1 & 1 0 00435872 -addressable a 1 3 & + ; 1 0 00183932 -addressed a 1 2 ! & 1 1 00050641 -adducent a 1 2 ! ; 1 0 00003131 -adducting a 1 1 ; 1 0 00003131 -adductive a 1 2 + ; 1 0 00003131 -adenocarcinomatous a 1 2 \ + 1 0 02603423 -adenoid a 1 2 \ + 1 0 02603540 -adenoidal a 2 3 & \ + 2 0 02603673 01213550 -adept a 1 2 & + 1 1 02226162 -adequate a 3 5 ! & ^ = + 3 3 00051045 02336109 02080937 -adequate_to a 1 1 & 1 1 00051373 -adherent a 1 2 & + 1 0 00053032 -adhesive a 1 3 ! & + 1 0 00052672 -adiabatic a 1 2 ! ; 1 0 00744141 -adient a 1 4 ! \ + ; 1 0 02603779 -adipose a 1 2 & + 1 0 00992133 -adjacent a 3 2 & + 3 3 00447472 00566342 00444984 -adjectival a 1 2 \ + 1 1 02936020 -adjective a 2 3 ! \ ; 2 0 02936020 00055340 -adjudicative a 1 2 \ + 1 0 02603926 -adjudicatory a 1 2 \ + 1 0 02603926 -adjunct a 2 2 & + 2 0 02354897 00793250 -adjunctive a 1 2 & + 1 0 00566733 -adjuratory a 2 2 & + 2 0 00714190 00712765 -adjustable a 2 2 & + 2 0 01027686 00344686 -adjusted a 4 3 ! & ; 4 1 00350621 00351523 01682677 00352536 -adjustive a 1 2 & + 1 0 00046558 -adjuvant a 2 3 & + ; 2 0 02354897 01196098 -administrable a 1 2 & + 1 0 01474806 -administrative a 1 2 \ + 1 1 02904075 -admirable a 2 2 & + 2 2 00904290 01807605 -admired a 1 1 & 1 0 01462046 -admissible a 1 4 ! & = + 1 1 01761871 -admissive a 1 2 & + 1 0 01985812 -admittable a 1 2 & + 1 0 01762065 -admittible a 1 2 & + 1 0 01762065 -admonishing a 1 1 & 1 0 00996864 -admonitory a 2 2 & + 2 0 01771124 00996864 -adnate a 1 2 ! ; 1 0 02483386 -adnexal a 1 2 \ + 1 0 02604117 -adolescent a 4 3 & \ + 4 1 02602261 01647983 01492596 01490061 -adonic a 2 2 & \ 2 0 02604261 02019470 -adoptable a 1 2 ! + 1 0 00055765 -adopted a 1 1 ! 1 1 01034296 -adoptive a 2 3 ! & + 2 0 01406263 01034296 -adorable a 1 2 & + 1 0 01459755 -adored a 1 1 & 1 0 01462124 -adoring a 2 1 & 2 0 02012073 01464433 -adorned a 1 3 ! & ^ 1 0 00056002 -adpressed a 1 1 & 1 0 00447909 -adrenal a 2 2 \ + 2 1 02604343 02604473 -adrenergic a 1 2 \ + 1 0 02604543 -adrenocortical a 1 1 \ 1 0 02606070 -adrenocorticotrophic a 1 1 & 1 0 02309668 -adrenocorticotropic a 1 1 & 1 0 02309668 -adrift a 2 1 & 2 0 01910652 00077059 -adroit a 1 4 ! & ^ + 1 0 00061262 -adscititious a 2 1 & 2 0 01349760 00903117 -adscript a 2 3 ! & ; 2 0 02350035 01064619 -adscripted a 1 1 & 1 0 01064619 -adsorbable a 1 2 ! + 1 0 00008877 -adsorbate a 1 1 + 1 0 00008877 -adsorbent a 1 3 ! & + 1 0 00008206 -adsorptive a 1 2 & + 1 0 00008206 -adulatory a 1 2 & + 1 0 00907830 -adult a 2 3 & + ; 2 1 01488616 02134397 -adulterant a 1 2 & + 1 0 02117232 -adulterate a 1 1 & 1 0 01908539 -adulterated a 1 1 & 1 0 01908539 -adulterating a 1 2 ! & 1 0 02117232 -adulterine a 1 1 & 1 0 01407738 -adulterous a 2 2 & + 2 0 01550779 00961195 -adumbrative a 1 1 & 1 0 01882162 -adust a 2 2 & ; 2 0 02551946 00244820 -advance a 2 2 & + 2 0 00813915 00198383 -advanced a 8 1 & 8 8 01840121 00819526 01876261 01211296 01208738 00816839 00412171 00198383 -advancing a 1 1 & 1 0 01876555 -advantageous a 2 4 ! & ^ + 2 1 00064479 00931833 -advective a 1 2 \ + 1 0 02606182 -adventitial a 1 2 \ + 1 0 02606283 -adventitious a 1 1 & 1 0 01349435 -adventive a 1 1 & 1 0 01034858 -adventuresome a 1 2 & ^ 1 0 00065791 -adventuristic a 1 2 \ + 1 0 02606393 -adventurous a 1 4 ! & ^ + 1 1 00065791 -adverbial a 1 2 \ + 1 1 02936235 -adversative a 1 1 & 1 0 00564504 -adverse a 2 2 & + 2 1 00997036 00995647 -advertent a 1 2 & + 1 0 00164308 -advertised a 1 1 & 1 1 00469767 -advisable a 1 4 ! & ^ + 1 1 00067038 -advised a 2 2 & ^ 2 0 00067966 01306967 -advisory a 1 2 & + 1 0 01304802 -adynamic a 2 1 & 2 0 00810481 02324944 -aecial a 1 2 \ + 1 0 02606502 -aegean a 2 2 \ + 2 1 03017159 03017025 -aeolian a 2 2 \ + 2 0 02606601 02600999 -aeolotropic a 1 2 & ; 1 0 01361264 -aeonian a 2 3 & \ + 2 0 02720312 01755024 -aerated a 2 1 & 2 1 01954128 02276660 -aerial a 2 3 & + ; 2 0 01380267 00626136 -aeriferous a 1 1 \ 1 0 02606762 -aeriform a 2 1 & 2 0 02262879 00626136 -aerobic a 2 3 ! & + 2 1 00068566 00069217 -aerobiotic a 1 2 & + 1 0 00068738 -aerodynamic a 2 4 & \ + ; 2 1 02980122 02238128 -aerolitic a 1 2 \ + 1 0 02606960 -aerological a 1 2 \ + 1 0 02606856 -aeromechanic a 1 2 \ + 1 0 02607078 -aeromedical a 1 2 \ + 1 0 02607187 -aeronautic a 1 2 \ + 1 0 02607298 -aeronautical a 1 2 \ + 1 0 02607298 -aerophilatelic a 1 2 \ + 1 0 03007038 -aerophilic a 1 1 & 1 0 00068566 -aerophilous a 1 1 & 1 0 00068566 -aerosolised a 1 1 & 1 0 02262984 -aerosolized a 1 1 & 1 1 02262984 -aery a 1 1 & 1 0 00626136 -aeschylean a 1 2 \ + 1 0 03028216 -aesculapian a 1 2 \ + 1 0 02607455 -aesthetic a 3 4 ! & \ + 3 2 02991287 00069531 02393086 -aesthetical a 1 2 & + 1 0 00069531 -aestival a 1 1 & 1 0 01255022 -aetiologic a 2 2 \ + 2 0 02941235 02940953 -aetiological a 2 2 \ + 2 0 02941235 02940953 -afeard a 1 2 & ; 1 0 00078463 -afeared a 1 2 & ; 1 0 00078463 -afebrile a 1 2 ! \ 1 0 02726921 -affable a 1 2 & + 1 0 01075178 -affected a 3 5 ! & ^ = + 3 2 00070939 00073048 01559903 -affecting a 1 1 & 1 0 01560821 -affectional a 1 2 & + 1 0 00854255 -affectionate a 1 2 & + 1 1 01464700 -affective a 1 2 & + 1 0 00854255 -afferent a 1 4 ! & + ; 1 1 00333351 -affiliated a 1 1 & 1 1 01973311 -affinal a 1 3 & + ; 1 0 01971519 -affine a 2 4 & \ + ; 2 0 02607608 01971519 -affined a 1 1 & 1 0 00566835 -affirmable a 1 2 & + 1 0 01821920 -affirmative a 3 4 ! & ^ + 3 0 00075135 01817908 00996089 -affirmatory a 1 3 & ^ + 1 0 00075135 -affixal a 1 2 \ + 1 0 02607752 -affixed a 1 2 ! & 1 1 00158701 -affixial a 1 2 \ + 1 0 02607752 -afflicted a 2 1 & 2 1 02542148 01018264 -afflictive a 1 2 & + 1 0 01804175 -affluent a 1 2 & + 1 0 02022167 -affordable a 1 2 & + 1 0 00935103 -afghan a 1 2 \ + 1 0 03003928 -afghani a 1 2 \ + 1 0 03003928 -afghanistani a 1 2 \ + 1 0 03003928 -afire a 1 1 & 1 1 00475308 -aflame a 2 1 & 2 1 01726021 00475308 -aflare a 2 1 & 2 2 01563147 00475308 -aflicker a 1 1 & 1 0 02304119 -afloat a 3 2 ! & 3 1 01910652 00076921 01083754 -aflutter a 1 1 & 1 0 00919813 -afoot a 2 1 & 2 0 01562167 00666784 -aforementioned a 1 1 & 1 0 02068730 -aforesaid a 1 1 & 1 1 02068730 -aforethought a 1 1 & 1 0 01842963 -afoul a 1 1 & 1 0 00255308 -afraid a 4 4 ! & ^ = 4 3 00077645 00543993 00544231 01293396 -african a 1 2 \ + 1 1 02941790 -african-american a 1 2 & + 1 0 00242293 -afrikaans a 1 2 \ + 1 0 03042394 -afrikaner a 1 2 \ + 1 0 03042394 -afro-american a 1 2 & + 1 0 00242293 -afro-asian a 1 1 \ 1 0 02942200 -aft a 1 3 ! & ^ 1 0 01033371 -after a 1 1 & 1 0 01033542 -after-hours a 1 1 & 1 1 00817004 -after-school a 1 1 & 1 1 01693189 -aftermost a 1 1 & 1 0 01033616 -aftershafted a 1 1 & 1 0 00997914 -agamic a 1 2 & + 1 0 02136158 -agamogenetic a 1 2 & + 1 0 02136158 -agamous a 1 1 & 1 0 02136158 -agape a 1 1 & 1 1 01654582 -agaze a 1 1 & 1 0 01654769 -age-old a 1 1 & 1 1 01638962 -age-related a 1 1 & 1 0 01973529 -aged a 5 2 & + 5 2 01644225 02581047 01644541 01493423 01071794 -ageing a 1 1 & 1 0 01644709 -ageless a 1 2 & + 1 0 01755024 -agelong a 1 1 & 1 0 01438743 -agential a 1 2 \ + 1 0 02607909 -agglomerate a 1 2 & + 1 0 00467019 -agglomerated a 1 1 & 1 0 00467019 -agglomerative a 1 2 & + 1 0 00467019 -agglutinate a 1 1 & 1 0 00053154 -agglutinative a 2 2 & + 2 0 00112018 00053154 -aggravated a 2 1 & 2 0 01510320 00114266 -aggravating a 1 1 & 1 0 01340422 -aggregate a 2 3 & + ; 2 1 00467240 02216694 -aggregated a 1 1 & 1 0 00467240 -aggregative a 1 2 & + 1 0 00467240 -aggressive a 3 4 ! & ^ + 3 1 00082241 01356143 01244846 -aghast a 1 1 & 1 1 00078576 -agile a 2 2 & + 2 1 00032733 01334833 -aging a 1 1 & 1 0 01644709 -agitated a 2 3 ! & ^ 2 2 00085264 00087354 -agitating a 1 1 & 1 0 01896925 -agitative a 1 2 & + 1 0 01896925 -agleam a 1 1 & 1 0 00279092 -aglitter a 1 1 & 1 0 00279618 -aglow a 1 1 & 1 0 00279332 -agnate a 1 2 & + 1 0 01971671 -agnatic a 1 2 & + 1 0 01971671 -agnostic a 2 3 ! & \ 2 0 02604683 01305929 -agnostical a 1 2 & + 1 0 01305929 -ago a 1 1 & 1 0 01728476 -agog a 1 1 & 1 0 00919919 -agonadal a 1 1 \ 1 0 02975469 -agonal a 1 2 \ + 1 0 02608090 -agone a 1 1 & 1 0 01728476 -agonised a 1 1 & 1 0 01711614 -agonising a 1 1 & 1 0 01711724 -agonistic a 3 3 & \ + 3 0 02608244 00512769 00073358 -agonistical a 1 1 & 1 0 00512769 -agonized a 1 1 & 1 0 01711614 -agonizing a 1 1 & 1 0 01711724 -agoraphobic a 1 2 & + 1 0 00078705 -agranulocytic a 1 2 \ + 1 0 02608380 -agraphic a 1 1 \ 1 0 02608507 -agrarian a 1 1 & 1 0 02050841 -agreeable a 3 3 ! & + 3 0 00089051 00577122 00553279 -agreed a 1 1 & 1 0 02476338 -agreed_upon a 1 1 & 1 1 00603194 -agrestic a 2 1 & 2 0 02051013 01949611 -agricultural a 2 2 & \ 2 1 02790222 02050841 -agrobiologic a 1 2 \ + 1 0 02608592 -agrobiological a 1 2 \ + 1 0 02608592 -agrologic a 1 2 \ + 1 0 02608753 -agrological a 1 2 \ + 1 0 02608753 -agronomic a 1 2 \ + 1 0 02608902 -agronomical a 1 2 \ + 1 0 02608902 -aground a 1 1 ! 1 0 00077449 -agrypnotic a 1 2 \ + 1 0 02609065 -aguish a 1 1 & 1 0 02542256 -ahead a 1 1 & 1 1 02490631 -ahistorical a 1 1 ! 1 0 02920321 -ahorse a 1 1 & 1 0 01562284 -ahorseback a 1 1 & 1 1 01562284 -aided a 1 1 & 1 0 02353707 -ailing a 1 1 & 1 1 02542325 -aimless a 2 2 & + 2 1 01910652 02127159 -ain a 1 1 & 1 0 01768724 -air-breathing a 1 1 \ 1 0 02609168 -air-conditioned a 1 1 & 1 0 02530282 -air-cooled a 1 1 & 1 0 02530370 -air-dried a 1 1 & 1 0 02552222 -air-dry a 1 1 & 1 0 02552315 -air-filled a 1 1 & 1 0 01084023 -air-tight a 2 1 & 2 0 02525597 01398528 -air-to-air a 1 1 ! 1 0 00090917 -air-to-ground a 1 0 1 0 00090718 -air-to-surface a 1 1 ! 1 0 00090718 -air_sick a 1 2 & + 1 0 02542675 -airborne a 1 1 & 1 1 01522895 -aired a 1 1 & 1 0 02508917 -airheaded a 1 1 & 1 0 02120828 -airless a 1 1 & 1 1 02509484 -airlike a 1 1 & 1 0 02262879 -airsick a 1 2 & + 1 0 02542675 -airtight a 2 1 & 2 0 02525597 01398528 -airworthy a 1 3 ! = + 1 0 02088198 -airy a 4 2 & + 4 1 02508917 02498213 01186913 00626136 -ajar a 1 1 & 1 0 01652601 -akimbo a 1 1 & 1 0 02312060 -akin a 2 1 & 2 1 02071782 01971846 -al_dente a 1 2 & ; 1 0 01151335 -alabaster a 1 1 \ 1 0 02609369 -alabastrine a 1 1 \ 1 0 02609369 -alacritous a 1 2 & + 1 0 00977238 -alar a 2 2 & ; 2 0 03133666 02567117 -alarmed a 1 1 & 1 1 00078851 -alarming a 1 3 ! & = 1 0 00193015 -alary a 1 3 & + ; 1 0 02567117 -alaskan a 1 2 \ + 1 0 02609503 -alate a 1 2 & + 1 0 02567281 -alated a 1 1 & 1 0 02567281 -albanian a 1 2 \ + 1 0 02609813 -albescent a 1 1 & 1 0 00393422 -albigensian a 1 2 \ + 1 0 02609673 -albinal a 1 2 \ + 1 0 02609984 -albinic a 1 2 \ + 1 0 02609984 -albinistic a 1 2 \ + 1 0 02609984 -albinotic a 1 2 \ + 1 0 02609984 -albitic a 1 2 \ + 1 0 02610260 -albuminous a 1 2 \ + 1 0 02610364 -albuminuric a 1 2 \ + 1 0 02610486 -alcalescent a 1 1 & 1 0 00026051 -alchemic a 1 2 \ + 1 0 02610603 -alchemical a 1 2 \ + 1 0 02610603 -alchemistic a 1 2 \ + 1 0 02610761 -alchemistical a 1 2 \ + 1 0 02610761 -alcohol-dependent a 1 1 & 1 0 00047243 -alcohol-soluble a 1 1 & 1 0 02265306 -alcoholic a 2 3 ! & + 2 0 01158596 00047243 -aldehydic a 1 1 \ 1 0 02610917 -aldermanic a 1 2 \ + 1 0 03040103 -aldermanly a 1 2 \ + 1 0 03040103 -aleatory a 1 1 & 1 0 01842198 -alert a 3 4 ! & ^ + 3 1 00091311 00874226 00190653 -aleuronic a 1 2 \ + 1 0 02611013 -aleutian a 1 1 \ 1 0 02604802 -alexandrian a 1 2 \ + 1 0 03028338 -alexic a 1 2 \ + 1 0 03040264 -alfresco a 1 1 & 1 1 01692512 -algal a 1 2 \ + 1 0 02832586 -algebraic a 1 2 \ + 1 0 02854350 -algebraical a 1 2 \ + 1 0 02854350 -algerian a 1 2 \ + 1 1 02977826 -algid a 1 3 & + ; 1 0 01251958 -algoid a 1 1 \ 1 0 02611112 -algolagnic a 1 2 \ + 1 0 02611187 -algometric a 1 2 \ + 1 0 02611290 -algometrical a 1 2 \ + 1 0 02611290 -algonkian a 1 2 \ + 1 0 02611442 -algonquian a 1 2 \ + 1 0 02611442 -algonquin a 1 2 \ + 1 0 02611442 -algophobic a 1 2 & + 1 0 00078942 -algorithmic a 1 3 ! & + 1 0 00092691 -alien a 2 2 & + 2 2 01349927 01035007 -alienable a 1 4 ! & + ; 1 0 00093275 -alienated a 2 1 & 2 1 01683908 01463326 -alienating a 1 1 & 1 0 00760783 -aliform a 1 2 & ; 1 0 02567117 -alight a 1 1 & 1 0 00475308 -aligned a 2 2 ! & 2 0 00731804 02311190 -aligning a 1 1 & 1 0 01684811 -alike a 1 3 ! = + 1 1 01410606 -alimental a 1 1 & 1 0 02557719 -alimentary a 1 2 & + 1 0 02557719 -alimentative a 1 2 \ + 1 0 02611694 -aliphatic a 1 1 & 1 0 00677448 -aliquot a 1 2 & + 1 0 00516887 -alive a 7 5 ! & ^ = + 7 2 00094448 00805115 00118567 02106366 00927373 00190653 00041488 -alkahestic a 1 2 \ + 1 0 02611803 -alkalescent a 1 1 & 1 0 00026051 -alkalic a 1 3 & + ; 1 0 00025728 -alkaline a 1 4 ! & + ; 1 1 00025728 -alkaline-loving a 1 2 ! ; 1 0 00027074 -alkaloidal a 1 2 \ + 1 0 02611943 -alkalotic a 1 2 \ + 1 0 02612058 -alkylic a 1 3 \ + ; 1 0 02612184 -all a 2 2 ! & 2 2 02269286 00521584 -all-around a 1 1 & 1 0 00526541 -all-devouring a 1 2 & ; 1 0 00315254 -all-embracing a 1 1 & 1 0 00526062 -all-encompassing a 1 1 & 1 0 00526062 -all-fired a 1 2 & ; 1 1 01533659 -all-important a 1 1 & 1 1 01276150 -all-inclusive a 1 1 & 1 0 00526062 -all-knowing a 1 1 & 1 1 02569454 -all-mains a 1 2 & ; 1 0 01027832 -all-metal a 1 1 & 1 0 01527930 -all-night a 1 1 & 1 0 01441530 -all-or-none a 1 1 & 1 0 00521692 -all-or-nothing a 1 1 & 1 0 00521692 -all-out a 1 1 & 1 1 00521811 -all-powerful a 1 1 & 1 0 01826186 -all-purpose a 1 1 & 1 0 01102058 -all-round a 1 1 & 1 1 00526541 -all-time a 1 1 & 1 1 00505086 -all-victorious a 1 1 & 1 1 00570512 -all-weather a 1 1 & 1 1 02003023 -all_important a 1 1 & 1 0 01276150 -all_in a 1 2 & ; 1 0 02432154 -all_over a 1 1 & 1 1 01003277 -all_right a 1 2 & ; 1 1 02081114 -allantoic a 1 1 \ 1 0 02612300 -allantoid a 1 1 & 1 0 02044642 -allargando a 1 1 & 1 0 02538184 -alleged a 2 1 & 2 2 00687614 01916555 -allegiant a 1 3 & + ; 1 0 00961667 -allegoric a 1 2 & + 1 0 01981916 -allegorical a 1 2 & + 1 0 01981916 -allegretto a 1 2 & + 1 0 00982170 -allegro a 1 2 & + 1 0 00982065 -allelic a 1 2 \ + 1 0 02612400 -allelomorphic a 1 1 \ 1 0 02612400 -allergenic a 1 2 \ + 1 0 02612531 -allergic a 2 3 & \ + 2 0 02612653 02360944 -alleviated a 1 1 & 1 0 01519465 -alleviative a 1 2 & + 1 0 01341153 -alleviatory a 1 2 & + 1 0 01341153 -alliaceous a 2 4 & \ + ; 2 0 02626634 01055682 -allied a 5 2 & \ 5 1 01972070 02612939 02612787 02476485 00731955 -alligatored a 1 1 & 1 1 02239479 -alliterative a 1 2 & + 1 0 01965849 -allocable a 1 2 & + 1 1 00468176 -allocatable a 1 2 & + 1 0 00468176 -allochronic a 1 1 & 1 0 02379820 -allochthonous a 1 1 ! 1 0 00180496 -allogamous a 1 2 \ + 1 0 02613090 -allogeneic a 1 2 ! + 1 0 02595829 -allographic a 1 1 \ 1 0 02613206 -allomerous a 1 2 \ + 1 0 02613294 -allometric a 1 2 \ + 1 0 02613393 -allomorphic a 1 1 \ 1 0 02613502 -allopathic a 1 2 ! \ 1 0 03073110 -allopatric a 1 3 ! + ; 1 0 02376995 -allophonic a 1 2 \ + 1 0 02613584 -allotropic a 1 2 \ + 1 0 02613683 -allotropical a 1 2 \ + 1 0 02613683 -allotted a 1 1 & 1 0 00847103 -allover a 1 1 & 1 0 00521976 -allowable a 3 3 & ^ + 3 1 00689878 01760944 01762257 -alloyed a 2 1 & 2 0 01908641 01329306 -alluring a 1 1 & 1 0 02097480 -allusive a 1 2 & + 1 0 00766957 -alluvial a 1 2 \ + 1 0 03006126 -allylic a 1 3 \ + ; 1 0 02613965 -almighty a 1 2 & + 1 0 01826186 -almond-eyed a 1 1 & 1 0 00953731 -almond-scented a 1 1 & 1 0 01055767 -almond-shaped a 1 1 & 1 0 02044736 -alone a 4 2 & + 4 3 02249766 02251212 01862697 00505853 -aloof a 1 2 & + 1 1 01987646 -alopecic a 1 1 \ 1 0 02614093 -alpestrine a 1 1 & 1 0 01219279 -alpha a 2 2 & + 2 0 01276482 00877816 -alphabetic a 2 4 ! & \ + 2 0 02614194 00100634 -alphabetical a 2 3 & \ + 2 0 02614194 00100634 -alphabetised a 1 1 & 1 0 00100989 -alphabetized a 1 1 & 1 0 00100989 -alphameric a 1 1 \ 1 0 02614579 -alphamerical a 1 2 \ + 1 0 02614579 -alphanumeric a 1 1 \ 1 0 02614579 -alphanumerical a 1 2 \ + 1 0 02614579 -alpine a 3 3 & \ ; 3 0 03025746 03025590 01219373 -alright a 1 1 & 1 0 02081492 -alsatian a 1 2 \ + 1 0 02972344 -altaic a 1 2 \ + 1 0 02614816 -alterable a 2 4 ! & + ; 2 0 00349295 00348380 -alterative a 1 1 & 1 0 01165943 -altered a 3 2 ! & 3 1 00352127 02136970 01540637 -alternate a 4 4 ! & + ; 4 3 00676093 01853934 00675928 01663359 -alternating a 2 3 ! & ; 2 0 00763767 00675928 -alternative a 3 2 & + 3 2 01853934 00564667 00608668 -altissimo a 1 1 & 1 0 01213721 -altitudinal a 1 2 \ + 1 0 02614945 -altitudinous a 1 2 & + 1 0 01205131 -alto a 3 3 & + ; 3 0 01215663 01213961 01213786 -altricial a 1 1 ! 1 0 00101331 -altruistic a 1 3 ! ^ + 1 0 00101609 -alular a 1 3 \ + ; 1 0 02615079 -aluminiferous a 1 1 & 1 0 01528039 -aluminous a 1 2 \ + 1 0 02615207 -alveolar a 2 2 \ + 2 1 02615325 02615424 -alveolate a 1 2 & + 1 0 00327690 -alvine a 1 1 \ 1 0 02850047 -amalgamate a 1 1 & 1 0 02476637 -amalgamated a 1 1 & 1 0 02476637 -amalgamative a 1 2 \ + 1 0 02615587 -amaranthine a 2 2 & \ 2 0 02615711 01558086 -amateur a 2 2 & + 2 1 01869634 01870636 -amateurish a 1 2 & + 1 0 01870636 -amative a 1 2 & + 1 0 01465061 -amatory a 1 1 & 1 0 01465214 -amaurotic a 1 2 \ + 1 0 02615804 -amazed a 1 1 & 1 1 02357810 -amazing a 2 1 & 2 2 02359789 01282510 -ambagious a 1 2 & + 1 0 00767626 -ambassadorial a 1 2 \ + 1 0 03040846 -amber a 1 2 & + 1 1 00369504 -amber-green a 1 1 & 1 0 00369648 -ambidextrous a 2 3 ! & + 2 0 02029752 01223271 -ambient a 1 2 & + 1 0 00447753 -ambiguous a 3 5 ! & ^ + ; 3 3 00895442 00102201 01672239 -ambitionless a 1 3 & ^ = 1 0 00105023 -ambitious a 2 5 ! & ^ = + 2 2 00104051 00745642 -ambivalent a 1 2 & + 1 0 00337841 -ambiversive a 1 2 ! ; 1 0 01351922 -amblyopic a 1 2 \ + 1 0 02615921 -ambrosial a 2 2 & + 2 0 02395910 01179241 -ambrosian a 3 3 & \ + 3 0 02616071 02395910 01179241 -ambulacral a 1 3 \ + ; 1 0 02616202 -ambulant a 1 2 & + 1 0 01522985 -ambulatory a 2 3 & \ + 2 0 02616345 01522985 -ameban a 1 2 \ + 1 0 03040974 -amebic a 1 2 \ + 1 0 03040974 -ameboid a 1 1 \ 1 0 02616480 -amebous a 1 2 \ + 1 0 03040974 -ameliorating a 1 1 & 1 0 00232385 -ameliorative a 1 2 & + 1 0 00232385 -amelioratory a 1 2 & + 1 0 00232385 -amenable a 4 2 & + 4 1 00696828 02362499 02361325 01997415 -amendable a 1 2 & + 1 0 00635078 -amendatory a 1 2 & + 1 0 00232620 -amended a 2 2 ! & 2 1 00354090 00230843 -amenorrheal a 1 2 \ + 1 0 02616627 -amenorrheic a 1 1 \ 1 0 02616627 -amenorrhoeal a 1 2 \ + 1 0 02616627 -amenorrhoeic a 1 1 \ 1 0 02616627 -amentaceous a 1 3 & + ; 1 0 01865640 -amentiferous a 1 2 & ; 1 0 01865640 -amerciable a 1 2 & + 1 0 01402343 -american a 2 2 \ + 2 2 02927512 02927303 -amerind a 1 2 \ + 1 0 02928066 -amerindic a 1 1 \ 1 0 02928066 -ametabolic a 2 3 ! & ; 2 0 01508592 01531274 -ametabolous a 1 1 ; 1 0 01508592 -amethyst a 1 2 & + 1 0 00369732 -amethystine a 1 1 \ 1 0 02616906 -ametropic a 1 2 ! + 1 0 00105388 -amharic a 1 2 \ + 1 0 02616997 -amiable a 2 2 & + 2 2 01134232 01075178 -amicable a 1 4 ! & ^ + 1 1 01246579 -amidship a 1 1 & 1 0 00330219 -aminic a 1 2 \ + 1 0 02617146 -amino a 1 2 \ + 1 0 02617146 -amiss a 1 1 & 1 1 01092371 -amitotic a 1 2 \ + 1 0 02617357 -ammino a 1 1 \ 1 0 02617476 -ammoniac a 1 2 \ + 1 0 02617641 -ammoniacal a 1 2 \ + 1 0 02617641 -ammoniated a 1 1 \ 1 0 03132715 -ammonitic a 1 2 \ + 1 0 02617812 -amnesiac a 1 2 & + 1 0 01978237 -amnesic a 2 3 & \ + 2 0 02617933 01978237 -amnestic a 1 2 \ + 1 0 02617933 -amnic a 1 2 \ + 1 0 02618108 -amnionic a 1 2 \ + 1 0 02618108 -amniotic a 1 2 \ + 1 0 02618108 -amoeban a 1 2 \ + 1 0 03040974 -amoebic a 1 2 \ + 1 0 03040974 -amoeboid a 1 1 \ 1 0 02616480 -amoebous a 1 2 \ + 1 0 03040974 -amok a 1 1 & 1 0 02074673 -amoristic a 1 2 \ + 1 0 02618361 -amorous a 2 2 & + 2 1 01465061 01465214 -amorphous a 3 1 & 3 1 02151837 01680283 00269580 -amort a 1 2 & ; 1 0 00703366 -amphibian a 1 2 \ + 1 0 02831979 -amphibiotic a 1 2 & ; 1 0 00125553 -amphibious a 2 4 ! & \ + 2 0 02831979 00125319 -amphiprostylar a 1 1 & 1 0 00139492 -amphiprostyle a 1 1 & 1 0 00139492 -amphiprotic a 1 1 ; 1 0 00026515 -amphistylar a 2 1 & 2 0 00140880 00139492 -amphitheatric a 1 2 \ + 1 0 02618468 -amphitheatrical a 1 2 \ + 1 0 02618468 -amphitropous a 1 2 ! ; 1 0 01029873 -amphoric a 1 1 \ 1 0 02618668 -amphoteric a 1 2 ! ; 1 0 00026515 -ample a 3 5 ! & ^ = + 3 2 00105746 00014490 01383394 -ampullar a 1 3 \ + ; 1 0 02618880 -ampullary a 1 3 \ + ; 1 0 02618880 -amuck a 1 1 & 1 0 02074673 -amused a 1 1 & 1 1 01805355 -amusing a 2 1 & 2 0 01344485 01265308 -amusive a 1 2 & + 1 0 01344485 -amygdaliform a 1 1 & 1 0 02044736 -amygdaline a 1 1 \ 1 0 02619083 -amygdaloid a 1 1 & 1 0 02044736 -amygdaloidal a 1 1 & 1 0 02044736 -amylaceous a 1 1 & 1 0 02299189 -amyloid a 1 2 & + 1 0 02299189 -amyloidal a 1 2 & + 1 0 02299189 -amylolytic a 1 2 \ + 1 0 02619174 -anabatic a 1 2 ! ; 1 0 00109633 -anabiotic a 1 2 \ + 1 0 02619291 -anabolic a 2 4 ! & \ + 2 0 02619404 00107648 -anachronic a 1 2 & + 1 0 02379925 -anachronistic a 1 2 & + 1 0 02379925 -anachronous a 1 2 & + 1 0 02379925 -anaclinal a 1 2 ! ; 1 0 00108263 -anaclitic a 1 1 \ 1 0 02619527 -anacoluthic a 1 2 \ ; 1 0 02619686 -anadromous a 1 1 ! 1 0 00109261 -anaemic a 2 3 & \ + 2 0 03041331 02324781 -anaerobic a 2 1 ! 2 1 00069060 00069427 -anaerobiotic a 1 1 + 1 0 00069060 -anaesthetic a 2 3 & \ + 2 0 03041491 02103052 -anaglyphic a 1 1 \ 1 0 02619839 -anaglyphical a 1 2 \ + 1 0 02619839 -anaglyptic a 1 2 \ + 1 0 02619839 -anaglyptical a 1 1 \ 1 0 02619839 -anagogic a 1 1 \ 1 0 02620134 -anagogical a 1 1 \ 1 0 02620134 -anagrammatic a 1 2 \ + 1 0 02620252 -anagrammatical a 1 2 \ + 1 0 02620252 -anal a 2 4 ! \ + ; 2 0 02620436 00109966 -anal_retentive a 1 1 ; 1 0 00109966 -analeptic a 1 2 & + 1 1 02309800 -analgesic a 1 2 & + 1 0 01341490 -analgetic a 1 2 & + 1 0 01341490 -analog a 1 1 ; 1 0 00110497 -analogical a 1 2 & + 1 0 01419462 -analogous a 2 4 ! & + ; 2 1 02071973 01221290 -analogue a 1 2 ! ; 1 0 00110497 -analphabetic a 3 4 ! & \ + 3 0 02614435 00101152 01421887 -analytic a 4 6 ! & ^ \ + ; 4 2 02620550 00112231 00111415 00110853 -analytical a 2 3 ^ + ; 2 1 00112231 00110853 -analyzable a 1 1 & 1 0 02176741 -analyzed a 1 1 ! 1 0 00416765 -anamnestic a 1 2 \ + 1 0 02620724 -anamorphic a 2 1 \ 2 0 02620992 02620863 -anapaestic a 1 1 \ 1 0 02938689 -anapestic a 1 1 \ 1 0 02938689 -anaphasic a 1 2 \ + 1 0 02621117 -anaphoric a 1 1 \ 1 0 02938590 -anaphrodisiac a 1 1 ! 1 0 02137713 -anaphylactic a 1 2 \ + 1 0 03140875 -anaplastic a 1 2 \ + 1 0 02621246 -anarchic a 1 1 & 1 0 00600192 -anarchical a 1 2 & + 1 0 00600192 -anarchistic a 1 2 \ + 1 0 02621348 -anasarcous a 1 2 \ + 1 0 02621496 -anastigmatic a 2 2 ! \ 2 0 02621609 00108595 -anastomotic a 1 2 \ + 1 1 02948363 -anatomic a 2 2 \ + 2 1 02897524 02897730 -anatomical a 2 2 \ + 2 1 02897524 02897730 -anatropous a 1 2 ! ; 1 0 01029710 -ancestral a 2 4 & \ + ; 2 1 01314197 02604913 -anchoritic a 1 2 & + 1 0 02578546 -ancient a 2 2 & + 2 2 01728614 01644847 -ancillary a 1 1 & 1 0 02354897 -andalusian a 1 2 \ + 1 0 02621799 -andante a 1 2 & + 1 0 00982954 -andantino a 1 1 & 1 0 00982275 -andean a 1 2 \ + 1 1 03025853 -andorran a 1 2 \ + 1 0 02978000 -androgenetic a 1 2 \ + 1 0 02621901 -androgenic a 1 2 \ + 1 0 02622093 -androgenous a 1 2 \ + 1 0 02621901 -androgynous a 2 5 ! & \ = + 2 0 02622210 01478626 -ane a 1 1 & 1 0 02186338 -anecdotal a 2 3 & \ + 2 0 03044331 00495916 -anecdotic a 1 2 & + 1 0 00495916 -anecdotical a 1 2 & + 1 0 00495916 -anechoic a 1 1 & 1 0 02011320 -anemic a 2 3 & \ + 2 1 02324781 03041331 -anemographic a 1 1 \ 1 0 02622386 -anemometric a 1 2 \ + 1 0 02622493 -anemometrical a 1 2 \ + 1 0 02622493 -anemophilous a 1 1 ! 1 0 00196664 -anencephalic a 1 2 \ + 1 0 02622678 -anencephalous a 1 2 \ + 1 0 02622678 -aneroid a 1 2 \ + 1 0 03042661 -anesthetic a 2 3 & \ + 2 0 03041491 02103052 -anestric a 1 2 \ + 1 0 02622859 -anestrous a 2 4 ! & \ ; 2 0 02622859 02138257 -aneuploid a 1 1 \ 1 0 03005728 -aneurismal a 1 2 \ + 1 0 03005862 -aneurismatic a 1 2 \ + 1 0 03005862 -aneurysmal a 1 2 \ + 1 0 03005862 -aneurysmatic a 1 2 \ + 1 0 03005862 -anfractuous a 1 1 & 1 0 02312250 -angelic a 3 3 & \ + 3 1 01130261 02870663 01459949 -angelical a 3 3 & \ + 3 0 02870663 01459949 01130261 -angered a 1 1 & 1 0 00114454 -anginal a 1 2 \ + 1 0 02623037 -anginose a 1 1 \ 1 0 02623037 -anginous a 1 2 \ + 1 0 02623037 -angiocarpic a 1 1 \ 1 0 02623229 -angiocarpous a 1 2 \ + 1 0 02623229 -angiomatous a 1 2 \ + 1 0 02623387 -angiospermous a 1 2 \ + 1 0 02623529 -angled a 1 1 & 1 0 02048247 -anglican a 1 3 \ + ; 1 1 02954459 -anglo-catholic a 1 1 \ 1 0 02921108 -anglo-indian a 1 2 \ + 1 0 02921199 -anglo-jewish a 1 1 \ 1 1 02922690 -anglo-saxon a 1 2 \ + 1 1 03114843 -anglophilic a 1 2 \ + 1 0 02623672 -anglophobic a 1 2 \ + 1 0 02623776 -angolan a 1 2 \ + 1 0 03042812 -angry a 3 3 ! & + 3 2 00113818 00304144 01173697 -anguillan a 1 2 \ + 1 0 03042986 -anguine a 1 2 \ ; 1 0 02623880 -anguished a 1 1 & 1 1 01364585 -angular a 2 5 ! & ^ \ + 2 2 02930616 02047807 -angulate a 1 3 & ^ + 1 0 02047807 -anhydrous a 1 2 ! ; 1 1 02555550 -anicteric a 2 2 & \ 2 0 02623991 01171955 -anile a 1 1 & 1 0 01644967 -animal a 1 2 & + 1 1 01778572 -animalistic a 1 2 \ + 1 0 02624086 -animate a 3 5 ! & = + ; 3 1 00120252 00118066 00117385 -animated a 2 2 ! & 2 1 00118567 01565608 -animating a 1 1 & 1 0 01356932 -animatistic a 1 2 \ + 1 0 02624209 -animist a 1 2 \ + 1 0 02624314 -animistic a 1 2 \ + 1 0 02624314 -anionic a 1 3 ! \ + 1 1 02930255 -anise-scented a 1 1 & 1 0 01055846 -aniseikonic a 1 2 \ + 1 0 02624477 -anisogametic a 1 2 \ + 1 0 02624834 -anisogamic a 1 1 \ 1 0 02624615 -anisogamous a 1 2 \ + 1 0 02624615 -anisometric a 1 1 & 1 0 00892635 -anisometropic a 1 2 \ + 1 0 02625007 -anisotropic a 1 3 ! & + 1 0 01361107 -ankle-deep a 1 1 & 1 1 00692154 -ankylotic a 1 2 \ + 1 0 02625149 -annalistic a 1 2 \ + 1 0 02625281 -annelid a 1 3 \ + ; 1 0 02625975 -annelidan a 1 2 \ ; 1 0 02625975 -annexal a 1 2 \ + 1 0 02604117 -annexational a 1 2 \ + 1 0 02626177 -annihilated a 1 1 & 1 0 00734798 -annihilating a 2 1 & 2 1 00586617 01995047 -annihilative a 1 2 & + 1 0 00586617 -announced a 1 1 & 1 0 00687750 -annoyed a 2 1 & 2 1 01806106 02455845 -annoying a 1 1 & 1 1 00089550 -annual a 2 4 ! & + ; 2 1 00678024 01969150 -annular a 1 1 & 1 0 02044860 -annulate a 1 1 & 1 0 02044860 -annulated a 1 1 & 1 0 02044860 -annunciatory a 1 2 \ + 1 0 02626487 -anodal a 1 2 \ + 1 0 02626829 -anodic a 1 2 ! \ 1 0 02626829 -anodyne a 1 2 & + 1 0 01341490 -anoestrous a 1 1 \ 1 0 02622859 -anomalous a 1 2 & + 1 1 01596455 -anomic a 1 2 & + 1 1 01683908 -anon. a 1 1 & 1 0 00120574 -anonymous a 2 3 ! & + 2 2 00120574 00236652 -anoperineal a 1 1 \ 1 0 02627136 -anopheline a 1 2 \ + 1 0 02627257 -anorectal a 1 1 \ 1 0 02627383 -anorectic a 2 2 & + 2 0 00988797 00323047 -anorexic a 1 2 & + 1 0 00988797 -anorexigenic a 1 1 & 1 0 00323047 -anorthic a 1 1 ; 1 0 00366185 -anorthitic a 1 2 \ + 1 0 02627510 -anosmatic a 1 2 \ + 1 0 02627612 -anosmic a 2 3 & \ + 2 0 02627612 01274524 -another a 1 1 & 1 1 02070188 -anoxemic a 1 2 \ + 1 0 02627787 -anoxic a 1 2 \ + 1 0 02627927 -anserine a 2 3 & \ ; 2 0 02628073 00439905 -answerable a 2 2 & + 2 0 02266351 01997221 -answering a 1 1 & 1 1 01999608 -antacid a 1 2 & + 1 0 00623814 -antagonistic a 5 3 ! & + 5 2 01818680 01245138 00760577 00623565 00508480 -antarctic a 1 2 & + 1 0 02444627 -ante_meridiem a 1 1 & 1 0 00130518 -antebellum a 1 1 & 1 1 01537144 -antecedent a 1 4 ! & ^ + 1 0 00121865 -antecubital a 1 1 \ 1 0 02628171 -antediluvial a 1 2 \ + 1 0 02846743 -antediluvian a 2 2 & \ 2 0 02846743 01639230 -antemeridian a 1 3 ! & = 1 0 00130412 -antemortem a 1 1 ! 1 0 00121552 -antenatal a 1 0 1 0 00129103 -antennal a 1 2 \ + 1 0 02628337 -antennary a 1 2 \ + 1 0 02628337 -antenuptial a 1 1 \ 1 0 03043173 -antepartum a 1 0 1 0 00129103 -antepenultimate a 1 2 & + 1 0 01015940 -anterior a 2 5 ! & ^ = + 2 1 00130778 00122128 -anterograde a 1 2 ! = 1 0 00130281 -anthelminthic a 1 2 & + 1 0 01165266 -anthelmintic a 1 2 & + 1 0 01165266 -antheral a 1 3 & + ; 1 0 01477251 -antheridial a 1 2 \ + 1 0 02605035 -anthophagous a 1 1 & 1 0 00314265 -anthophilous a 1 1 & 1 0 00314265 -anthracitic a 1 2 \ + 1 0 02628550 -anthropic a 1 1 \ 1 0 02628667 -anthropical a 1 1 \ 1 0 02628667 -anthropocentric a 1 2 \ + 1 0 03135137 -anthropogenetic a 1 2 \ + 1 0 02628811 -anthropogenic a 1 1 \ 1 0 02628811 -anthropoid a 2 2 & + 2 0 01260282 01259015 -anthropoidal a 1 2 & + 1 0 01260282 -anthropological a 1 2 \ + 1 0 02907175 -anthropometric a 1 2 \ + 1 0 02629017 -anthropometrical a 1 2 \ + 1 0 02629017 -anthropomorphic a 1 1 & 1 1 01259123 -anthropomorphous a 1 1 & 1 0 01259123 -anthropophagous a 1 2 \ + 1 0 02629182 -anti a 1 1 ! 1 1 01817405 -anti-american a 1 3 ! \ + 1 0 02927803 -anti-intellectual a 1 2 & + 1 1 01333886 -anti-semite a 1 2 & + 1 0 00285905 -anti-semitic a 1 2 \ + 1 1 03043482 -antiadrenergic a 1 1 \ 1 0 02605157 -antiaircraft a 1 2 & + 1 0 01630439 -antiapartheid a 1 1 \ 1 0 02605281 -antiauthoritarian a 1 1 & 1 0 00715586 -antibacterial a 1 1 \ 1 0 02833873 -antibiotic a 1 2 \ + 1 1 02629301 -antiblack a 1 1 & 1 0 00285905 -antic a 1 2 & + 1 1 00967646 -anticancer a 1 1 \ 1 0 02629410 -anticholinergic a 1 2 ! + 1 0 00061088 -anticipant a 1 2 & + 1 0 01228797 -anticipated a 1 1 & 1 1 00929815 -anticipative a 1 2 & + 1 0 01228797 -anticipatory a 1 2 & + 1 0 00122245 -anticlimactic a 2 3 ! \ + 2 0 02629659 02487906 -anticlimactical a 1 1 \ 1 0 02629659 -anticlinal a 1 2 ! ; 1 0 00109016 -anticlockwise a 1 2 & ^ 1 0 00442057 -anticoagulative a 1 1 \ 1 0 02629846 -anticyclonic a 1 3 \ + ; 1 0 02629942 -antidotal a 1 1 \ 1 0 02605416 -antidromic a 1 2 & ; 1 0 01596674 -antiferromagnetic a 1 2 \ + 1 0 02605509 -antifertility a 1 1 & 1 0 01887819 -antifungal a 1 2 \ + 1 0 02832818 -antigenic a 1 2 \ + 1 0 02630121 -antiguan a 1 2 \ + 1 0 03043667 -antiheretical a 1 1 & 1 0 01690167 -antiknock a 1 2 & + 1 0 01396931 -antiknocking a 1 1 & 1 0 01396931 -antimagnetic a 1 1 ! 1 0 01470141 -antimicrobial a 1 2 & + 1 0 01165474 -antimicrobic a 1 2 & + 1 0 01165474 -antimonial a 1 2 & + 1 0 01528126 -antimonic a 1 2 \ + 1 0 02630221 -antimonious a 1 2 \ + 1 0 02630221 -antimonopoly a 1 1 & 1 0 00956568 -antineoplastic a 1 2 \ + 1 0 02629410 -antinomian a 1 2 \ + 1 0 02630402 -antiparallel a 1 1 & 1 0 01718470 -antipathetic a 2 2 & + 2 0 01293542 01245138 -antipathetical a 2 2 & + 2 0 01293542 01245138 -antipersonnel a 1 1 & 1 0 01629212 -antiphlogistic a 1 1 & 1 0 00623939 -antiphonal a 2 2 \ + 2 0 03110741 02630519 -antiphonary a 1 1 + 1 0 02630519 -antipodal a 1 2 \ + 1 0 02630695 -antipodean a 1 2 \ + 1 0 02630695 -antipollution a 1 1 \ 1 0 02605621 -antipyretic a 1 2 ! + 1 0 01170136 -antiquarian a 2 2 \ + 2 0 03043937 03043838 -antiquated a 1 1 & 1 0 01639230 -antique a 3 2 & + 3 2 01639446 00974159 01638962 -antisatellite a 1 1 \ 1 0 02605786 -antisemitic a 1 2 \ + 1 0 03043482 -antiseptic a 4 4 ! & ^ + 4 2 02115324 00622828 02118047 00424240 -antisocial a 2 1 & 2 0 02258972 02249948 -antistrophic a 1 1 \ 1 0 02630994 -antisubmarine a 1 1 & 1 0 01630579 -antitank a 1 1 & 1 0 01630673 -antithetic a 1 2 & + 1 0 02065404 -antithetical a 1 2 & + 1 1 02065404 -antithyroid a 1 1 \ 1 1 02981508 -antitoxic a 1 2 & + 1 0 02450814 -antitrust a 1 1 & 1 1 00956568 -antitumor a 1 1 \ 1 0 02629410 -antitumour a 1 1 \ 1 0 02629410 -antitypic a 1 2 \ + 1 0 02631085 -antitypical a 1 1 \ 1 0 02631085 -antiviral a 1 1 \ 1 0 02605953 -antler-like a 1 1 & 1 0 02034248 -antlered a 1 1 & 1 0 02034179 -antonymous a 1 3 ! & + 1 0 02381764 -antrorse a 1 2 ! ; 1 0 00123653 -antsy a 1 1 & 1 0 02406166 -anuran a 1 3 \ + ; 1 0 02631238 -anuretic a 1 2 \ + 1 0 02631453 -anuric a 1 1 \ 1 0 02631453 -anurous a 1 1 & 1 0 00320985 -anxiolytic a 1 2 \ + 1 0 02631594 -anxious a 2 3 & + ; 2 1 00811248 02456157 -any a 1 1 & 1 1 02267686 -aoristic a 1 3 \ + ; 1 0 02631686 -aortal a 1 2 \ + 1 0 02631812 -aortic a 1 2 \ + 1 0 02631812 -apart a 2 1 & 2 1 00567860 02110161 -apathetic a 2 2 & + 2 0 02281611 01342949 -apelike a 2 1 & 2 0 01260282 01216710 -aperient a 1 2 & + 1 0 00637979 -aperiodic a 1 2 ! & 1 0 01970464 -apetalous a 1 1 ! 1 0 01776532 -aphaeretic a 1 2 \ + 1 0 02631955 -aphakic a 1 2 \ + 1 0 02632148 -aphanitic a 1 2 \ + 1 0 02632263 -aphasic a 2 3 & \ + 2 0 02632363 00151530 -apheretic a 1 2 \ + 1 0 02631955 -aphetic a 1 2 \ + 1 0 02632504 -aphonic a 1 2 & + 1 0 00151661 -aphoristic a 2 2 & + 2 0 02653651 00546951 -aphotic a 1 1 & 1 0 00273901 -aphrodisiac a 1 2 ! + 1 0 02137538 -aphrodisiacal a 1 1 + 1 0 02137538 -aphyllous a 1 2 & ; 1 0 01703619 -apian a 1 1 \ 1 0 02632595 -apiarian a 1 2 \ + 1 0 02632696 -apical a 1 2 & + 1 0 02440184 -apiculate a 1 1 & 1 0 02167405 -apicultural a 1 2 \ + 1 0 02632799 -apish a 1 1 & 1 0 01216710 -apivorous a 1 1 & 1 0 00315631 -aplacental a 1 1 ! 1 0 01831346 -aplanatic a 1 2 & ; 1 0 00634259 -aplitic a 1 2 \ + 1 0 02632916 -apneic a 1 1 \ 1 0 02633011 -apnoeic a 1 1 \ 1 0 02633011 -apocalyptic a 2 3 & \ + 2 1 01882292 02633115 -apocalyptical a 1 2 & + 1 0 01882292 -apocarpous a 1 2 ! ; 1 0 00113476 -apochromatic a 1 2 & ; 1 0 00634404 -apocrine a 1 1 ! 1 0 00098529 -apocryphal a 2 3 & \ + 2 1 01916693 02633222 -apocynaceous a 1 1 \ 1 0 02633329 -apodal a 1 1 & 1 0 01031908 -apodeictic a 1 2 & ; 1 0 02461295 -apodictic a 1 2 & ; 1 0 02461295 -apodous a 1 1 & 1 0 01031908 -apogametic a 1 2 \ ; 1 0 02633447 -apogamic a 1 3 \ + ; 1 0 02633447 -apogamous a 1 3 \ + ; 1 0 02633447 -apogean a 1 2 \ + 1 0 02633696 -apolitical a 1 1 & 1 0 01815219 -apologetic a 1 3 ! & + 1 1 01631830 -apomictic a 2 4 & \ + ; 2 0 02633877 02136158 -apomictical a 1 3 \ + ; 1 0 02633877 -aponeurotic a 1 2 \ + 1 0 02634073 -apopemptic a 1 2 \ ; 1 0 02822472 -apophatic a 1 2 \ + 1 0 02634232 -apophyseal a 1 2 \ + 1 0 02634428 -apoplectic a 1 2 \ + 1 0 02634569 -apoplectiform a 1 1 \ 1 0 02634709 -apoplectoid a 1 1 \ 1 0 02634709 -aposiopetic a 1 2 \ + 1 0 02634820 -apostate a 1 2 & + 1 0 00959979 -apostolic a 2 2 \ + 2 1 02859500 02879638 -apostolical a 2 2 \ + 2 0 02879638 02859500 -apostrophic a 1 1 \ 1 0 02634940 -apothecial a 1 3 \ + ; 1 0 02635069 -apothegmatic a 2 3 & \ + 2 0 02635221 00546951 -apothegmatical a 1 2 \ + 1 0 02635221 -apotropaic a 1 1 & 1 0 01468319 -appalachian a 1 2 \ + 1 0 02635395 -appalled a 1 1 & 1 0 00078576 -appalling a 1 1 & 1 1 00193367 -appareled a 1 1 & 1 0 00454440 -apparent a 2 2 & + 2 2 01618376 01873985 -apparitional a 1 1 & 1 0 01574925 -appealable a 1 2 ! + 1 0 00132849 -appealing a 2 4 ! & + ; 2 2 00170358 02376277 -appeasable a 1 2 & + 1 0 01784946 -appeasing a 1 1 & 1 0 00759826 -appellant a 1 3 \ + ; 1 0 03044083 -appellate a 1 2 \ ; 1 0 03044083 -appellative a 2 3 & \ + 2 0 02635499 00722386 -appendaged a 1 1 ! 1 0 00133259 -appendant a 1 2 & + 1 0 00158864 -appendicular a 1 2 \ + 1 0 02635611 -apperceptive a 1 1 & 1 0 01745191 -appetent a 1 2 & + 1 0 00888051 -appetising a 1 4 & ^ = + 1 0 00133417 -appetitive a 1 1 \ 1 0 02997529 -appetizing a 1 5 ! & ^ = + 1 0 00133417 -applaudable a 1 2 & + 1 0 02585545 -apple-scented a 1 1 & 1 0 01055923 -apple-shaped a 1 1 & 1 0 02041134 -apple-sized a 1 1 & 1 0 02222578 -applicable a 1 2 & + 1 1 01975448 -applicative a 1 2 & + 1 0 01834812 -applicatory a 1 2 & + 1 0 01834812 -applied a 1 2 ! & 1 0 00863049 -appointed a 4 1 & 4 4 00846462 00847196 02129718 01097315 -appointive a 2 4 ! & \ + 2 0 02635794 00846462 -apportionable a 1 2 & + 1 0 00468176 -apportioned a 1 1 & 1 0 00540236 -apposable a 1 1 + 1 0 01662510 -apposite a 1 2 & + 1 0 00138314 -appositional a 1 2 \ + 1 0 02635941 -appositive a 1 2 \ + 1 0 02635941 -appraising a 1 1 & 1 0 00649892 -appreciable a 1 1 & 1 1 00624416 -appreciated a 1 1 & 1 0 01378429 -appreciative a 2 2 & + 2 1 01146732 00774676 -apprehended a 1 1 & 1 0 01378429 -apprehensible a 1 2 & + 1 0 00533452 -apprehensive a 3 2 & + 3 0 01745027 00822907 00079069 -apprenticed a 1 1 & 1 0 01064806 -appressed a 1 1 & 1 0 00447909 -approachable a 3 3 ! & + 3 1 00533221 00134060 00019349 -approaching a 1 1 & 1 0 01732601 -approbative a 1 2 & + 1 0 00996089 -approbatory a 1 2 & + 1 0 00996089 -appropriable a 1 2 & + 1 0 00093433 -appropriate a 1 5 ! & ^ = + 1 1 00134701 -appropriative a 1 2 \ + 1 0 02636123 -approved a 1 1 & 1 1 00179035 -approving a 1 1 & 1 0 00996089 -approximate a 3 1 & 3 1 00915976 00451872 00448130 -approximative a 1 2 & + 1 0 00915976 -appurtenant a 1 2 & + 1 0 02354897 -apractic a 1 2 & + 1 0 01018359 -apraxic a 1 2 & + 1 0 01018359 -apropos a 1 4 ! & ^ = 1 0 00138169 -apsidal a 1 2 \ + 1 0 02636261 -apt a 4 2 & + 4 1 01292411 01411919 01334958 00138314 -apteral a 2 2 ! & 2 0 00139344 02568389 -apterous a 1 1 & 1 0 02568389 -aptitudinal a 1 2 \ + 1 0 02636358 -aquacultural a 1 2 \ + 1 0 02790474 -aquaphobic a 1 2 & + 1 0 00080098 -aquatic a 2 4 ! & \ + 2 0 02636582 00124077 -aqueous a 2 3 ! \ ; 2 1 02636461 01355089 -aquicultural a 1 2 \ + 1 0 02790474 -aquiferous a 1 2 \ + 1 0 02636708 -aquiline a 1 1 & 1 0 02312354 -arabian a 2 2 \ + 2 0 03044566 03044462 -arabic a 1 2 \ + 1 0 03044740 -arable a 1 2 & + 1 1 01865807 -araceous a 1 3 \ + ; 1 0 02641201 -arachnidian a 1 3 \ + ; 1 0 02636811 -arachnoid a 1 3 \ + ; 1 0 02636811 -aramaean a 1 2 \ + 1 0 02637182 -aramaic a 1 2 \ + 1 0 02637063 -aramean a 1 2 \ + 1 0 02637182 -araneidal a 1 3 \ + ; 1 0 02637380 -araneidan a 1 2 \ ; 1 0 02637380 -arawakan a 1 2 \ + 1 0 02637537 -arbitrable a 1 2 ! + 1 0 00140233 -arbitral a 1 1 \ 1 0 02637730 -arbitrary a 1 3 ! & + 1 1 00718924 -arbitrational a 1 2 \ + 1 0 02637730 -arbitrative a 1 2 \ + 1 0 02637973 -arboraceous a 1 1 & 1 0 02573192 -arborary a 1 2 \ + 1 0 02638121 -arboreal a 3 4 ! & \ + 3 1 02638121 00141818 00613382 -arboreous a 3 2 & + 3 0 00141818 02573192 00613382 -arborescent a 1 1 & 1 0 00613382 -arboresque a 1 1 & 1 0 00613382 -arborical a 1 2 \ + 1 0 02638121 -arboriform a 1 1 & 1 0 00613382 -arborous a 1 2 \ + 1 0 02638121 -arcadian a 1 2 & + 1 0 02051179 -arcane a 1 1 & 1 0 00899612 -arced a 1 2 & ; 1 0 02315461 -arch a 3 1 & 3 0 02338917 02226661 02122715 -archaean a 1 2 & ; 1 0 00814073 -archaeologic a 1 2 \ + 1 0 02638392 -archaeological a 1 2 \ + 1 0 02638392 -archaeozoic a 1 3 & + ; 1 0 00814251 -archaic a 2 1 & 2 0 01639230 00817731 -archaistic a 1 2 \ + 1 0 02638740 -archangelic a 1 2 \ + 1 0 02638894 -archangelical a 1 2 \ + 1 0 02638894 -archdiocesan a 1 2 \ + 1 0 02639193 -archducal a 1 2 \ + 1 0 02639302 -archean a 1 3 & + ; 1 0 00814073 -arched a 2 3 & \ ; 2 2 02639064 02315461 -archegonial a 1 3 \ + ; 1 0 02639430 -archegoniate a 1 2 \ ; 1 0 02639430 -archeologic a 1 2 \ + 1 0 02638392 -archeological a 1 2 \ + 1 1 02638392 -archeozoic a 1 3 & + ; 1 0 00814251 -archepiscopal a 1 2 \ + 1 0 02639895 -archesporial a 1 3 \ + ; 1 0 02639590 -archetypal a 1 2 & + 1 0 01011392 -archetypical a 1 2 & + 1 0 01011392 -archidiaconal a 1 2 \ + 1 0 02639772 -archiepiscopal a 1 2 \ + 1 0 02639895 -arching a 1 2 & ; 1 1 02315461 -archipelagic a 1 2 \ + 1 0 02640086 -architectonic a 1 2 \ + 1 0 02898121 -architectural a 1 1 \ 1 1 02897957 -archival a 1 2 \ + 1 0 02640223 -archosaurian a 1 2 \ + 1 0 02640354 -arciform a 1 2 & ; 1 0 02315461 -arco a 1 1 & 1 0 00945658 -arctic a 2 2 & + 2 1 02444475 01252151 -arcuate a 1 3 & + ; 1 0 02315461 -ardent a 3 1 & 3 1 01726235 00886117 00281342 -arduous a 3 2 & + 3 1 00836544 00837977 00745858 -areal a 1 2 \ + 1 0 02640503 -arenaceous a 1 1 ! 1 0 00142040 -arenicolous a 1 1 \ 1 0 02640629 -areolar a 1 2 \ + 1 0 02640746 -areolate a 1 1 \ 1 0 02640746 -argent a 1 2 & + 1 0 00387392 -argentic a 1 1 \ 1 0 02640908 -argentiferous a 1 1 & 1 0 01528239 -argentine a 1 1 \ 1 0 02966972 -argentinian a 1 2 \ + 1 0 02966972 -argentous a 1 1 \ 1 0 02641012 -argillaceous a 1 2 ! + 1 0 00142270 -argive a 1 2 \ + 1 1 03017788 -arguable a 2 2 & + 2 0 01799670 00602117 -argumentative a 1 3 ! & + 1 1 00603367 -argus-eyed a 2 1 & 2 0 02158438 00091764 -arid a 2 2 & + 2 0 02552415 00806991 -ariled a 1 2 & ; 1 0 01694892 -arillate a 1 2 & ; 1 0 01694892 -ariose a 1 1 & 1 0 01501505 -aristocratic a 1 2 & + 1 1 01590484 -aristocratical a 1 2 & + 1 0 01590484 -aristotelean a 1 2 \ + 1 0 03028465 -aristotelian a 1 2 \ + 1 1 03028465 -aristotelic a 1 1 \ 1 0 03028465 -arithmetic a 1 2 \ + 1 0 03044869 -arithmetical a 1 2 \ + 1 0 03044869 -armed a 3 3 ! & ; 3 1 00142407 00146210 00144877 -armenian a 1 2 \ + 1 0 02625648 -armillary a 1 1 \ 1 0 02641118 -arminian a 1 2 \ + 1 0 02625546 -armless a 1 1 ! 1 0 00146786 -armlike a 1 1 & 1 0 00146430 -armor-clad a 1 1 & 1 0 00143854 -armor-plated a 1 1 & 1 0 00143854 -armored a 3 3 ! & ; 3 1 00143589 00146883 01094647 -armorial a 1 2 \ ; 1 0 03045059 -armour-clad a 1 1 & 1 0 00143854 -armour-plated a 1 1 & 1 0 00143854 -armoured a 2 2 & ; 2 0 00146883 00143589 -aroid a 1 3 \ + ; 1 0 02641201 -aromatic a 2 4 & \ + ; 2 0 02641378 01052428 -around-the-clock a 1 1 & 1 0 00595147 -around_the_bend a 1 1 & 1 0 02074929 -aroused a 6 1 & 6 2 02014514 00920494 02405677 02131668 01726021 00085630 -arranged a 3 2 ! & 3 1 01681028 01670427 01571869 -arrant a 1 1 & 1 0 01520091 -arrayed a 1 1 & 1 0 00454849 -arresting a 1 1 & 1 0 01282921 -arrhythmic a 2 2 & + 2 0 02303575 02021235 -arrhythmical a 1 1 & 1 0 02021235 -arrogant a 1 2 & + 1 1 01889819 -arrow-shaped a 1 1 & 1 0 02170673 -arsenical a 1 2 \ + 1 0 02641571 -arsenious a 1 2 \ + 1 0 02641731 -artefactual a 1 2 \ + 1 0 02986740 -arterial a 1 2 \ + 1 1 02641856 -arteriolar a 1 2 \ + 1 1 02948640 -arteriosclerotic a 1 2 \ + 1 0 02930987 -arteriovenous a 1 1 \ 1 0 02642258 -artesian a 1 1 ! 1 0 00098933 -artful a 2 4 ! & ^ + 2 0 01310685 00147734 -arthralgic a 1 2 \ + 1 0 02642394 -arthritic a 1 2 & + 1 0 01173795 -arthromeric a 1 2 \ + 1 0 02642497 -arthropodal a 1 3 \ + ; 1 0 02642634 -arthropodan a 1 2 \ ; 1 0 02642634 -arthropodous a 1 3 \ + ; 1 0 02642634 -arthrosporic a 1 3 \ + ; 1 0 02642886 -arthrosporous a 1 3 \ + ; 1 0 02642886 -arthurian a 1 2 \ + 1 0 02643082 -articled a 1 1 & 1 0 01064806 -articular a 1 2 \ + 1 0 02643220 -articulary a 1 2 \ + 1 0 02643220 -articulate a 2 4 ! & ^ + 2 1 00150202 00153410 -articulated a 1 2 ! & 1 0 00153410 -articulative a 1 2 \ + 1 0 02643446 -articulatory a 1 2 \ + 1 0 02643446 -artifactual a 1 2 \ + 1 0 02986740 -artificial a 3 4 ! & ^ + 3 2 01571363 00073465 01680417 -artiodactyl a 1 2 \ ; 1 0 02643673 -artiodactylous a 1 3 \ + ; 1 0 02643673 -artistic a 3 3 & \ + 3 2 02991122 00069948 02393086 -artless a 4 4 ! & ^ + 4 0 01309991 00149861 02228901 01949740 -artsy-craftsy a 1 1 & 1 0 01849844 -arty a 1 2 & + 1 1 01849740 -arty-crafty a 1 1 & 1 0 01849844 -arundinaceous a 1 2 \ + 1 0 02643900 -aryan a 1 2 \ + 1 0 03074565 -asat a 1 1 \ 1 0 02605786 -ascendable a 1 2 & + 1 0 02083391 -ascendant a 2 2 & + 2 0 02484638 00791631 -ascendent a 2 2 & + 2 0 02484638 00791631 -ascendible a 1 1 & 1 0 02083391 -ascending a 1 3 ! & ^ 1 1 02484208 -ascensional a 1 2 \ + 1 0 02644050 -ascensive a 1 2 & + 1 0 02484638 -ascertainable a 1 2 & + 1 1 00738829 -ascertained a 1 1 & 1 0 01610484 -ascetic a 2 3 & \ + 2 0 02644177 00009618 -ascetical a 2 3 & \ + 2 0 02644177 00009618 -ascitic a 1 2 \ + 1 0 02644407 -asclepiadaceous a 1 3 \ + ; 1 0 02644602 -ascocarpous a 1 3 \ + ; 1 0 02644748 -ascomycetous a 1 2 \ + 1 0 03023077 -ascosporic a 1 3 \ + ; 1 0 02644870 -ascosporous a 1 3 \ + ; 1 0 02644870 -ascribable a 1 2 & + 1 0 00171872 -aseptic a 1 2 & + 1 0 02115759 -asexual a 1 4 ! & = + 1 0 02135913 -ash-blonde a 1 1 & 1 0 00243945 -ash-gray a 1 1 & 1 0 00387593 -ash-grey a 1 1 & 1 0 00387593 -ashamed a 1 3 ! & ^ 1 1 00153898 -ashen a 2 1 & 2 1 00404568 02575653 -ashy a 1 2 & + 1 0 00387593 -asian a 1 2 \ + 1 0 02968525 -asiatic a 1 2 \ + 1 0 02968525 -asinine a 1 2 & + 1 0 02571277 -askance a 1 1 & 1 0 00762721 -askant a 1 1 & 1 0 00762721 -askew a 1 1 & 1 0 02312450 -aslant a 1 1 & 1 0 01234747 -asleep a 3 4 ! & ^ ; 3 1 00187736 02103333 00095873 -aslope a 1 1 & 1 0 01234747 -asocial a 2 1 & 2 0 02250231 02249948 -aspectual a 1 3 \ + ; 1 0 03045196 -asphaltic a 1 1 + 1 0 02598494 -aspheric a 1 2 & ; 1 0 02045008 -aspherical a 1 2 & ; 1 0 02045008 -asphyxiated a 1 1 \ 1 0 03045377 -asphyxiating a 1 1 & 1 0 00268273 -aspirant a 1 2 & + 1 0 00104533 -aspiring a 1 1 & 1 0 00104533 -asquint a 1 1 & 1 0 00762721 -assailable a 1 2 & + 1 0 02523664 -assamese a 1 2 \ + 1 0 02977465 -assassinated a 1 1 & 1 0 00096072 -assaultive a 1 2 & + 1 0 01629349 -assentient a 1 2 & + 1 0 00075389 -assertable a 1 2 & + 1 0 01821920 -asserted a 1 1 & 1 0 00687952 -asserting a 1 0 1 0 00686890 -assertive a 1 4 ! & ^ + 1 1 00156101 -assessable a 2 2 & + 2 0 02400471 01815540 -assiduous a 1 2 & + 1 0 00754393 -assignable a 1 2 & + 1 0 00093556 -assigned a 1 2 ! & 1 1 00846944 -assimilable a 1 1 & 1 0 01182302 -assimilating a 1 1 & 1 0 00006885 -assimilative a 2 2 & + 2 0 01985976 00006885 -assimilatory a 1 2 & + 1 0 00006885 -assistant a 1 2 & + 1 1 00793250 -assisted a 1 2 ! & 1 0 02353707 -assistive a 1 2 & + 1 0 01196276 -associable a 1 2 & + 1 0 00157659 -associate a 1 1 & 1 0 00793426 -associational a 1 2 \ ; 1 0 02645042 -associative a 1 3 ! & + 1 0 00157389 -associatory a 1 2 & + 1 0 00157389 -assonant a 2 3 & + ; 2 0 02063279 01966016 -assorted a 2 1 & 2 1 01199083 02065665 -assuasive a 1 1 & 1 0 00197151 -assumed a 1 1 & 1 0 01116857 -assuming a 1 1 & 1 0 00205696 -assumptive a 2 2 & + 2 0 00205696 00028008 -assured a 2 2 & + 2 2 00339157 02094203 -assurgent a 2 2 & ; 2 0 02485050 02484919 -assuring a 1 1 & 1 0 00197247 -astatic a 1 1 & 1 0 00344816 -asteriated a 1 1 \ 1 0 02645187 -asterisked a 1 1 & 1 0 01480492 -asterismal a 1 2 \ + 1 0 02645303 -asternal a 1 2 & ; 1 0 00568171 -asteroid a 1 2 & + 1 0 02048344 -asteroidal a 1 2 \ + 1 1 02980854 -asthenic a 2 2 & + 2 0 02324944 00828095 -asthmatic a 1 2 & + 1 0 01174048 -astigmatic a 1 2 ! + 1 0 00108698 -astir a 2 1 & 2 0 00186925 00032358 -astomatal a 1 1 \ 1 0 02645868 -astomatous a 1 2 ! ; 1 0 02310771 -astonied a 1 1 & 1 0 02357810 -astonished a 1 1 & 1 1 02357810 -astonishing a 2 1 & 2 1 02359789 01283155 -astounded a 1 1 & 1 0 02357810 -astounding a 2 1 & 2 1 00645856 01283155 -astragalar a 1 3 \ + ; 1 0 02646072 -astral a 1 1 \ 1 1 02802976 -astringent a 2 4 ! & = + 2 1 02369027 00189580 -astrocytic a 1 3 \ + ; 1 0 02646215 -astrological a 1 2 \ + 1 0 02910506 -astronautic a 1 2 \ + 1 0 02646381 -astronautical a 1 2 \ + 1 0 02646381 -astronomic a 2 3 & \ + 2 0 02646605 01383582 -astronomical a 2 3 & \ + 2 2 02646605 01383582 -astrophysical a 1 2 \ + 1 0 02907798 -astute a 1 2 & + 1 1 00438909 -astylar a 1 2 & ; 1 0 00141647 -asunder a 1 1 & 1 0 02110317 -asymmetric a 1 3 & ^ + 1 1 02373599 -asymmetrical a 2 4 ! & ^ + 2 0 02373599 01961048 -asymptomatic a 1 1 & 1 0 02540899 -asymptotic a 1 2 \ + 1 1 02929071 -asynchronous a 2 2 ! & 2 0 02380819 02379595 -asyndetic a 1 3 ! + ; 1 0 02381189 -asynergic a 1 2 \ + 1 0 02646804 -at_a_loss a 1 1 & 1 1 01765926 -at_bay a 1 1 & 1 1 01064913 -at_fault a 1 1 & 1 0 01321429 -at_hand a 2 1 & 2 2 00448644 00448314 -at_large a 1 1 & 1 1 01062114 -at_loggerheads a 1 1 & 1 0 01245441 -at_odds a 1 1 & 1 1 00578234 -at_peace a 1 2 & ; 1 0 00095873 -at_rest a 2 2 & ; 2 0 00188058 00095873 -at_sea a 1 1 & 1 0 01766133 -at_the_ready a 1 1 & 1 0 01931034 -at_variance a 1 1 & 1 0 00554098 -at_work a 1 1 & 1 1 00293248 -atactic a 1 2 \ + 1 0 02646952 -ataractic a 1 2 & + 1 0 02308472 -ataraxic a 1 2 & + 1 0 02308472 -atavistic a 1 2 & + 1 0 01877182 -ataxic a 1 2 \ + 1 0 02646952 -ateleiotic a 1 2 \ + 1 0 02899383 -atheist a 1 2 \ + 1 0 02826443 -atheistic a 2 3 & \ + 2 1 01784217 02826443 -atheistical a 2 2 & + 2 0 02826443 01784217 -athenian a 1 2 \ + 1 0 02972499 -atheromatic a 1 2 \ + 1 0 03008447 -atheromatous a 1 2 \ + 1 1 03008447 -atherosclerotic a 1 2 \ + 1 0 02647123 -athirst a 1 1 & 1 0 00888200 -athletic a 3 3 & \ + 3 2 02907656 00032497 00828661 -atilt a 1 1 & 1 0 01234527 -atlantic a 1 2 \ + 1 1 02946507 -atmospheric a 1 2 \ + 1 1 02831736 -atmospherical a 1 2 \ + 1 0 02831736 -atomic a 3 3 & \ + 3 2 02884619 00610532 01392071 -atomistic a 1 2 ! + 1 0 01680836 -atomistical a 1 1 + 1 0 01680836 -atonal a 1 3 ! + ; 1 0 02438188 -atonalistic a 1 3 \ + ; 1 0 02647236 -atonic a 2 3 ! \ + 2 0 02647358 02320886 -atoxic a 1 2 & ^ 1 0 02450640 -atrabilious a 1 1 & 1 0 01135269 -atrial a 1 3 \ + ; 1 0 02647497 -atrioventricular a 1 1 \ 1 0 02647688 -atrip a 1 2 & ; 1 0 01062819 -atrocious a 3 2 & + 3 0 01131454 01126291 00193480 -atrophic a 1 1 \ 1 1 03009360 -atrophied a 1 1 ! 1 1 00554879 -attachable a 1 3 ! & + 1 0 00161431 -attached a 4 4 ! & ^ ; 4 1 01973311 00160425 00157925 01465468 -attacking a 1 1 & 1 0 01629349 -attainable a 1 2 & + 1 0 01822153 -attained a 1 1 & 1 1 00821603 -attempted a 1 1 & 1 1 02333880 -attendant a 2 2 & + 2 0 01846815 00122844 -attended a 2 1 & 2 0 02252053 00308488 -attention-getting a 2 1 & 2 0 00579498 00170717 -attentional a 1 2 \ ; 1 0 02647917 -attentive a 2 5 ! & ^ = + 2 1 00163592 01194483 -attenuate a 1 1 & 1 0 00882166 -attenuated a 2 2 & ; 2 0 00882312 00882166 -attested a 1 1 & 1 0 01115920 -attic a 1 2 \ + 1 1 03017286 -attired a 1 1 & 1 1 00454440 -attitudinal a 1 1 \ 1 0 02648021 -attractable a 1 2 & + 1 0 01469927 -attractive a 3 6 ! & ^ = + ; 3 2 00166146 00170847 00169955 -attributable a 1 4 ! & = + 1 1 00171590 -attributive a 1 3 ! & ; 1 0 00172562 -attributive_genitive a 1 2 & ; 1 0 00172774 -attrited a 1 1 & 1 0 02581172 -attritional a 1 2 \ + 1 0 02648106 -atypical a 2 5 ! & ^ = + 2 1 02469928 01596809 -au_courant a 1 1 & 1 0 01306645 -au_fait a 1 1 & 1 0 01306645 -au_gratin a 1 1 & 1 0 00616408 -au_jus a 1 2 & ; 1 0 01368948 -au_naturel a 1 1 & 1 0 00457998 -auburn a 1 1 & 1 0 00369831 -auctorial a 1 2 \ + 1 0 02651014 -audacious a 3 2 & + 3 1 00250119 00155144 00066146 -audenesque a 1 1 \ 1 0 03028778 -audible a 1 5 ! & ^ = + 1 1 00173764 -audile a 1 2 \ + 1 0 02868704 -audio-lingual a 1 0 1 0 03045457 -audiometric a 1 2 \ + 1 0 02648270 -audiovisual a 1 2 \ + 1 0 02648392 -auditive a 1 1 \ 1 0 02868704 -auditory a 1 1 \ 1 0 02868704 -augean a 1 2 & + 1 0 00420182 -augitic a 1 2 \ + 1 0 02648576 -augmentative a 2 2 & + 2 0 02535645 01340522 -augmented a 1 1 & 1 0 00880586 -august a 2 1 & 2 0 01591050 01226660 -augustan a 1 2 \ + 1 0 03045585 -auld a 1 1 & 1 0 01639636 -aural a 2 1 \ 2 0 02648847 02648698 -aureate a 2 1 & 2 0 01794771 00369941 -auric a 1 1 \ 1 0 02650083 -auricular a 3 2 \ + 3 0 02979028 02649125 02648988 -auriculate a 1 2 & + 1 0 00812417 -auriculated a 1 1 & 1 0 00812417 -auriculoventricular a 1 1 \ 1 0 02647688 -auriferous a 1 1 & 1 0 01528349 -auriform a 1 1 & 1 0 02045144 -auroral a 2 2 \ + 2 0 02649873 02649706 -aurorean a 1 2 \ + 1 0 02649706 -aurous a 1 1 \ 1 0 02650083 -auscultatory a 1 1 \ 1 0 02650214 -auspicious a 1 5 ! & ^ = + 1 0 00176150 -austenitic a 1 2 \ + 1 0 02650303 -austere a 3 2 & + 3 1 01792387 01300187 00009618 -austral a 1 1 & 1 0 01605327 -australasian a 1 2 \ + 1 0 02650425 -australian a 1 2 \ + 1 0 03045750 -australopithecine a 1 2 \ + 1 0 02650537 -austrian a 1 2 \ + 1 0 02961099 -austronesian a 1 2 \ + 1 0 02977638 -autacoidal a 1 3 \ + ; 1 0 02650672 -autarchic a 1 1 \ 1 0 02650795 -autarchical a 1 2 \ + 1 0 02650795 -autarkic a 1 1 & 1 0 00728103 -autarkical a 2 3 & \ + 2 0 02650795 00728103 -authentic a 2 2 & + 2 2 02465115 01115635 -authenticated a 1 1 & 1 0 01115920 -authorial a 1 2 \ + 1 0 02651014 -authorised a 2 3 & ^ = 2 0 00178575 01632808 -authoritarian a 2 1 & 2 1 00717684 00787357 -authoritative a 3 1 & 3 1 01830403 02295098 01632808 -authorized a 2 4 ! & ^ = 2 1 00178575 01632808 -autistic a 1 2 & + 1 0 02542878 -autobiographic a 2 1 \ 2 0 02651468 02651244 -autobiographical a 2 2 \ + 2 0 02651468 02651244 -autocatalytic a 1 2 \ + 1 0 02651696 -autochthonal a 1 1 & 1 0 01036383 -autochthonic a 1 2 & + 1 0 01036383 -autochthonous a 2 2 ! & 2 0 00180359 01036383 -autocratic a 2 2 & + 2 0 00787595 00717684 -autodidactic a 1 2 \ + 1 0 03005593 -autoecious a 1 1 ! 1 0 00180655 -autoerotic a 1 2 & + 1 0 02131834 -autofluorescent a 1 2 & + 1 0 00270732 -autogamic a 1 3 & + ; 1 0 00871494 -autogamous a 1 4 ! & + ; 1 0 00871494 -autogenetic a 1 2 \ + 1 0 02651816 -autogenic a 1 1 & 1 0 00181030 -autogenous a 1 2 ! & 1 0 00181030 -autographed a 1 1 & 1 0 02161016 -autographic a 1 1 \ 1 0 02651921 -autoicous a 1 1 & 1 0 01543088 -autoimmune a 1 2 \ + 1 0 02649399 -autoloading a 1 1 & 1 0 00181904 -autologous a 1 1 ! 1 0 01220487 -autolytic a 1 2 \ + 1 0 02652018 -automated a 1 1 & 1 0 00182086 -automatic a 3 5 ! & ^ + ; 3 3 00181476 01499999 02522669 -automatonlike a 1 1 & 1 0 01499999 -automotive a 2 2 & \ 2 1 02926936 01562488 -autonomic a 1 2 & ; 1 1 02522938 -autonomous a 3 2 & + 3 0 01062393 00728431 00728225 -autophytic a 1 3 \ + ; 1 0 02652590 -autoplastic a 1 2 \ + 1 0 02652124 -autoradiographic a 1 1 \ 1 0 02652261 -autosemantic a 1 2 & ; 1 0 02593124 -autosomal a 1 2 \ + 1 0 02956502 -autotelic a 1 2 \ + 1 0 02652372 -autotomic a 1 2 \ + 1 0 02652490 -autotrophic a 1 3 ! \ ; 1 0 02652590 -autotypic a 1 2 \ + 1 0 02653056 -autumn-blooming a 1 1 & 1 0 01255530 -autumn-flowering a 1 1 & 1 0 01255530 -autumnal a 2 3 ! & + 2 0 01255296 01491930 -auxetic a 1 2 \ + 1 0 02653174 -auxiliary a 2 2 & + 2 1 01854129 02354897 -auxinic a 1 2 \ + 1 0 02653281 -available a 3 4 ! & = + 3 1 00183053 01062631 00777650 -avant-garde a 1 1 & 1 1 01686906 -avaricious a 1 2 & + 1 0 00029933 -avascular a 1 1 ! 1 0 02874053 -avellan a 1 1 \ 1 0 02653806 -avellane a 1 1 \ 1 0 02653806 -avenged a 1 2 ! < 1 0 03147281 -average a 6 3 & + ; 6 4 01594146 00486290 01673061 01531957 01594811 01594472 -averse a 1 1 & 1 0 01293542 -aversive a 1 1 \ 1 0 02997632 -avertable a 1 1 + 1 0 00343700 -avertible a 1 1 + 1 0 00343700 -avestan a 1 3 \ + ; 1 0 02926519 -avian a 1 2 \ ; 1 0 02653924 -avid a 2 2 & + 2 0 00888477 00886253 -avifaunal a 1 2 \ + 1 0 02654035 -avifaunistic a 1 2 \ + 1 0 02654035 -avionic a 1 2 \ + 1 0 02654216 -avirulent a 1 1 ! 1 0 00046014 -avitaminotic a 1 2 \ + 1 0 02654314 -avocado a 1 1 & 1 0 00370160 -avocational a 1 2 \ + 1 0 02654442 -avoidable a 1 1 + 1 0 00343700 -avowed a 1 1 & 1 1 00688074 -avuncular a 2 2 \ + 2 0 02654652 02654548 -awaited a 1 1 & 1 1 00929815 -awake a 2 3 ! & ^ 2 1 00186616 00190653 -awakened a 2 2 ! & 2 1 02014387 00187049 -award-winning a 1 1 \ 1 0 02654752 -aware a 2 5 ! & ^ = + 2 1 00190115 01977155 -awash a 1 1 & 1 0 01083754 -away a 3 4 ! & + ; 3 1 01847864 01219938 00023655 -awe-inspiring a 1 1 & 1 1 01282510 -aweary a 1 1 & 1 0 02432428 -awed a 2 2 ! & 2 2 02012157 02014715 -aweigh a 2 2 & ; 2 0 02490831 01062819 -aweless a 2 1 & 2 0 02015134 02013083 -awesome a 1 1 & 1 0 01282510 -awestricken a 1 1 & 1 0 02014715 -awestruck a 1 1 & 1 1 02014715 -awful a 6 5 & ^ = + ; 6 2 01126291 00193799 01587077 02012157 01677200 01282510 -awheel a 1 1 & 1 0 01562668 -awing a 1 1 & 1 0 01282510 -awkward a 6 4 ! & ^ + 6 3 00605406 01140514 02564023 01001180 00746047 00480439 -awl-shaped a 1 1 & 1 0 02144913 -awless a 2 1 & 2 0 02015134 02013083 -awned a 1 2 ! & 1 0 00216858 -awninged a 1 1 & 1 0 01695041 -awnless a 1 1 ! 1 0 00217183 -awny a 1 2 & + 1 0 00216858 -awol a 1 2 & + 1 0 01848171 -awry a 2 1 & 2 1 02312450 01092371 -axenic a 2 1 & 2 0 02116783 01906173 -axial a 3 4 & \ + ; 3 1 02654894 02655015 01445063 -axile a 1 2 \ ; 1 0 02655015 -axillary a 2 3 \ + ; 2 0 03133666 02655180 -axiological a 1 2 \ + 1 0 02655318 -axiomatic a 3 3 & \ + 3 1 01618895 02653651 02653385 -axiomatical a 1 2 \ + 1 0 02653385 -axonal a 1 3 \ + ; 1 0 02655431 -azerbaijani a 1 2 \ + 1 0 02655560 -azido a 1 2 \ ; 1 0 02655723 -azimuthal a 1 2 \ + 1 0 02655838 -azo a 1 1 \ 1 0 02655943 -azoic a 1 2 & ; 1 0 00814468 -azonal a 1 2 ! & 1 0 02590057 -azonic a 1 1 & 1 0 02590168 -azotemic a 1 2 \ + 1 0 02656218 -azotic a 1 2 \ + 1 0 03091996 -azure a 1 2 & + 1 0 00370267 -azygos a 1 2 & ; 1 0 02214366 -azygous a 1 2 & ; 1 0 02214366 -babelike a 1 1 & 1 1 00726189 -baboonish a 1 1 \ 1 0 02656464 -baby-faced a 1 1 & 1 0 00235239 -babyish a 1 1 & 1 0 01492907 -babylonian a 1 2 \ + 1 0 02656539 -baccate a 2 2 & \ 2 0 02656699 01080717 -bacchanal a 1 2 & + 1 0 00797706 -bacchanalian a 1 2 & + 1 0 00797706 -bacchantic a 1 2 \ + 1 0 02656801 -bacchic a 1 1 & 1 0 00797706 -bacciferous a 1 1 & 1 0 01080717 -baccivorous a 1 1 & 1 0 00314390 -bacillar a 2 3 & \ ; 2 0 02656930 02144988 -bacillary a 2 4 & \ + ; 2 0 02656930 02144988 -bacilliform a 1 1 & 1 0 02144988 -back a 3 3 ! & ^ 3 2 00197576 00131692 00668816 -back-channel a 1 1 \ 1 0 02657100 -back-geared a 1 1 & 1 0 01100394 -back-to-back a 1 1 & 1 1 00127543 -backbreaking a 1 1 & 1 0 00836544 -backed a 2 3 ! & ; 2 0 00200026 01699410 -backhand a 2 3 ! & ; 2 0 01033840 02284892 -backhanded a 2 1 & 2 0 01033840 00767133 -backless a 1 2 ! & 1 0 00201130 -backmost a 1 1 & 1 0 00197773 -backstage a 1 1 & 1 0 01860328 -backstair a 1 1 & 1 0 01706111 -backstairs a 1 1 & 1 0 01706111 -backswept a 1 1 & 1 0 00201722 -backward a 4 5 ! & ^ + ; 4 1 00201354 00204077 01840673 00810636 -bacteremic a 1 2 \ + 1 0 02657221 -bacterial a 1 2 \ + 1 1 02833544 -bactericidal a 1 2 & + 1 0 02116054 -bacterioid a 1 1 \ 1 0 02657741 -bacterioidal a 1 2 \ + 1 0 02657741 -bacteriologic a 1 2 \ + 1 0 02914740 -bacteriological a 1 2 \ + 1 0 02914740 -bacteriolytic a 1 2 \ + 1 0 02657334 -bacteriophagic a 1 2 \ + 1 0 02657454 -bacteriophagous a 1 2 \ + 1 0 02657454 -bacteriostatic a 1 2 \ + 1 0 02657619 -bacteroid a 1 2 \ + 1 0 02657741 -bacteroidal a 1 2 \ + 1 0 02657741 -baculiform a 1 1 & 1 0 02144988 -bad a 14 6 ! & ^ = + ; 14 4 01125429 01510444 00478311 01069283 01150475 02500050 02345713 02298642 02274537 01174222 01160775 01131803 01117226 01092572 -bad-mannered a 1 1 & 1 0 00641944 -bad-tempered a 1 1 & 1 0 01136248 -baffled a 1 1 & 1 0 01766133 -baffling a 1 1 & 1 1 00746451 -bag-shaped a 1 1 & 1 0 02145135 -baggy a 1 1 & 1 1 01446991 -bahai a 1 1 \ 1 0 02657966 -bahamian a 1 2 \ + 1 0 03045992 -bahraini a 1 2 \ + 1 0 03046184 -bailable a 2 2 & + 2 0 01763683 00852101 -baked a 2 1 & 2 2 02551946 00616532 -baking a 1 1 & 1 0 01247975 -baking_hot a 1 1 & 1 0 01247975 -balanced a 1 2 ! & 1 1 00893441 -balconied a 1 1 ! 1 0 00206003 -bald a 3 2 & + 3 2 01705088 00210848 01698610 -bald-faced a 2 1 & 2 0 00235326 00155144 -bald-headed a 1 1 & 1 0 00210848 -bald-pated a 1 1 & 1 0 00210848 -balding a 1 1 & 1 1 00211026 -baleful a 2 2 & + 2 1 00224366 00194357 -balking a 1 1 & 1 1 02452379 -balky a 1 2 & + 1 0 02452379 -ball-hawking a 1 2 & ; 1 1 02226756 -ball-shaped a 1 1 & 1 0 02041229 -balletic a 1 2 \ + 1 0 02658043 -ballistic a 1 2 \ + 1 0 02658188 -bally a 1 1 & 1 0 01520655 -balmy a 2 2 & + 2 0 02074929 00438332 -balsam-scented a 1 1 & 1 0 01056001 -balsamic a 1 2 \ + 1 0 02658412 -balsamy a 1 2 \ + 1 0 02658412 -baltic a 2 2 \ + 2 0 02962659 02962551 -balzacian a 1 2 \ + 1 0 03028863 -banal a 1 2 & + 1 0 01688757 -banausic a 1 2 & ; 1 0 01673434 -bandaged a 1 1 & 1 1 01955494 -banded a 3 2 ! & 3 0 00222969 01787009 00223375 -bandy a 1 1 & 1 0 01018530 -bandy-legged a 1 1 & 1 0 01018530 -baneful a 2 1 & 2 0 01611329 00224366 -bang-up a 1 2 & ; 1 0 01123879 -banging a 1 2 & ; 1 0 01388062 -bangladeshi a 1 2 \ + 1 0 03046349 -bankable a 2 2 & + 2 0 01871204 00018069 -bankrupt a 1 2 & + 1 1 02026629 -banned a 1 1 & 1 0 01402498 -banner a 1 1 & 1 0 02342196 -bantam a 1 1 & 1 0 01392249 -bantering a 1 1 & 1 0 01264913 -bantoid a 1 1 \ 1 0 03046559 -bantu a 1 2 \ + 1 0 03046708 -bantu-speaking a 2 2 & \ 2 0 03046931 00496170 -baptised a 1 0 1 0 02594329 -baptismal a 1 2 \ + 1 0 03047071 -baptistic a 1 2 \ + 1 0 02954633 -baptized a 1 1 ! 1 0 02594329 -bar-shaped a 1 1 & 1 0 02145209 -barbadian a 1 2 \ + 1 0 03047188 -barbarian a 1 2 & + 1 0 00412788 -barbaric a 2 2 & + 2 1 00412788 02393670 -barbarous a 2 2 & + 2 0 01263013 00413224 -barbate a 1 1 & 1 0 02153965 -barbecued a 1 1 & 1 0 00616654 -barbed a 2 1 & 2 1 02079313 00145083 -barbellate a 1 2 & + 1 0 00145083 -bardic a 1 1 \ 1 0 03047388 -bare a 10 3 ! & + 10 2 00457998 00106821 02155524 01698400 02563466 01792573 01714157 01242750 01086915 00060605 -bare-ass a 1 2 & ; 1 0 00458266 -bare-assed a 1 2 & ; 1 0 00458266 -bare-breasted a 1 1 & 1 0 00458488 -bare-knuckle a 1 1 & 1 0 01667271 -bare-knuckled a 1 1 & 1 0 01667271 -bareback a 1 1 & 1 0 00460624 -barebacked a 1 1 & 1 0 00460624 -bared a 1 1 & 1 0 00458664 -barefaced a 2 1 & 2 0 01705088 00155144 -barefoot a 1 1 & 1 1 02156686 -barefooted a 1 1 & 1 0 02156686 -barehanded a 1 1 & 1 0 00143201 -bareheaded a 1 1 & 1 0 00458664 -barelegged a 1 1 & 1 0 00458810 -bargain-priced a 1 1 & 1 1 00934554 -baric a 1 2 \ + 1 0 02658629 -baritone a 1 1 & 1 0 01215797 -barky a 1 2 & + 1 0 02239607 -barmy a 2 1 & 2 0 02281182 02074929 -barographic a 1 1 \ 1 0 02658737 -barometric a 1 2 \ + 1 0 02658835 -barometrical a 1 2 \ + 1 0 02658835 -baronial a 1 2 & + 1 1 01283508 -baroque a 2 3 & \ + 2 1 01794995 02974023 -barred a 2 1 & 2 0 01620893 01480603 -barrel-shaped a 1 1 & 1 0 02041711 -barreled a 2 2 ! & 2 0 00206205 01810348 -barrelled a 2 1 & 2 0 00206205 01810348 -barren a 3 2 & + 3 0 01242750 01002664 00927978 -barricaded a 1 1 & 1 0 01620893 -barytic a 1 2 \ + 1 0 02659044 -basal a 3 3 & + ; 3 0 00318667 01856066 00901060 -basaltic a 1 2 \ + 1 0 02659154 -base a 7 3 & + ; 7 2 01856066 01592857 02345859 02036077 01589650 01407816 01117362 -base-forming a 1 1 & 1 0 00026294 -baseborn a 2 2 & ; 2 0 01592857 01407816 -based a 2 1 & 2 2 02351064 02126140 -baseless a 1 1 & 1 0 02353211 -bashful a 2 3 & + ; 2 1 00252130 00204249 -basic a 4 3 ! & ; 4 2 01855764 02295298 01011753 00026168 -basidial a 1 2 \ + 1 0 02659292 -basidiomycetous a 1 3 \ + ; 1 0 02659404 -basidiosporous a 1 3 \ + ; 1 0 02659571 -basifixed a 1 2 & ; 1 0 00158961 -basilar a 1 2 \ + 1 0 02659733 -basilary a 1 2 \ + 1 0 02659733 -basilican a 1 2 \ + 1 0 02659931 -basinal a 1 1 \ 1 0 02660065 -basined a 1 1 & 1 0 01657056 -basipetal a 1 2 ! ; 1 0 00031824 -basiscopic a 1 2 ! ; 1 0 00002843 -basket-shaped a 1 1 & 1 0 02145308 -basophilic a 1 3 \ + ; 1 1 03008659 -bass a 1 1 & 1 0 01215935 -bastard a 1 2 & + 1 0 01117477 -bastardised a 1 2 & ; 1 0 01908755 -bastardized a 1 2 & ; 1 0 01908755 -bastardly a 2 2 & + 2 0 01407909 00905039 -bastioned a 1 1 & 1 0 01885275 -bated a 1 1 & 1 0 00882462 -bathetic a 1 1 & 1 0 00854413 -batholithic a 1 3 \ + ; 1 0 02660164 -batholitic a 1 3 \ + ; 1 0 02660164 -bathyal a 1 1 \ 1 0 02974248 -bathymetric a 1 2 \ + 1 0 02660337 -bathymetrical a 1 2 \ + 1 0 02660337 -batrachian a 1 3 \ + ; 1 0 02631238 -bats a 1 1 & 1 0 02074929 -batter-fried a 1 1 & 1 0 00616748 -battered a 3 1 & 3 2 00679562 02581254 00017509 -battery-powered a 1 1 & 1 0 01828706 -battle-scarred a 1 1 & 1 0 01318252 -battleful a 1 1 & 1 1 00082766 -battlemented a 2 1 & 2 0 01885382 01796109 -batty a 1 1 & 1 0 02074929 -batwing a 1 1 & 1 0 02567473 -bauxitic a 1 2 \ + 1 0 02660546 -bavarian a 1 2 \ + 1 0 02969775 -bawdy a 1 2 & + 1 1 00424787 -bay a 1 2 & + 1 0 00395977 -bayesian a 1 1 \ 1 0 02625430 -beaded a 1 1 & 1 1 01695160 -beadlike a 1 1 & 1 0 00280245 -beady a 2 2 & + 2 1 00280245 00056660 -beady-eyed a 1 1 & 1 0 00225821 -beaked a 1 2 ! & 1 0 00206403 -beakless a 1 1 ! 1 0 00207467 -beaklike a 1 1 & 1 0 00206627 -beaming a 3 1 & 3 1 00362892 01890097 00280463 -beamish a 1 1 & 1 0 00363031 -beamy a 2 2 & + 2 0 02561014 00280463 -bean-shaped a 1 1 & 1 0 02045255 -bear-sized a 1 1 & 1 0 01383684 -bearable a 1 2 & + 1 0 02435206 -bearded a 2 1 & 2 1 02153965 00217075 -beardless a 2 1 & 2 0 02153620 00211092 -beardown a 1 1 & 1 1 02321575 -bearing a 1 2 ! & 1 0 00217297 -bearish a 1 2 & ; 1 0 01664783 -beastly a 2 2 & + 2 0 01802774 01263445 -beat a 1 2 & ; 1 0 02432154 -beat-up a 1 1 & 1 1 00679562 -beatable a 1 2 & + 1 0 00569304 -beaten a 2 2 & < 2 0 03147543 00966037 -beaten-up a 1 1 & 1 0 00679562 -beatific a 2 1 & 2 0 01363824 01130261 -beatified a 1 1 & 1 0 02054075 -beauteous a 1 2 & + 1 0 00218305 -beautiful a 2 4 ! & ^ = 2 1 00217728 01800764 -becalmed a 1 1 & 1 0 01564512 -becoming a 2 2 & + 2 0 01878870 00907972 -bedaubed a 1 1 & 1 0 00056849 -bedded a 2 3 ! & ; 2 0 00208229 00207547 -bedewed a 1 1 & 1 0 02547862 -bedfast a 1 1 & 1 1 02543034 -bedimmed a 1 1 & 1 0 00781539 -bedless a 1 1 ! 1 0 00207961 -bedraggled a 2 1 & 2 1 00420287 00679717 -bedrid a 1 1 & 1 0 02543034 -bedridden a 1 1 & 1 0 02543034 -beechen a 1 1 & 1 0 02575733 -beefed-up a 1 1 & 1 1 02321702 -beefy a 1 2 & ; 1 1 02038126 -beery a 1 2 & + 1 0 00798017 -beethovenian a 1 2 \ + 1 0 03028987 -beetle a 1 1 & 1 0 01353516 -beetle-browed a 1 1 & 1 0 01077158 -beetling a 1 1 & 1 0 01353516 -befitting a 1 1 & 1 0 00135092 -befogged a 1 1 & 1 0 00436385 -beforehand a 1 1 & 1 0 00813915 -befouled a 1 1 & 1 0 00420480 -befuddled a 3 1 & 3 1 00436385 01766133 00436115 -beggarly a 2 2 & + 2 0 02025718 01112969 -beginning a 1 1 & 1 0 01009206 -begotten a 1 1 & 1 0 01406058 -begrimed a 1 1 & 1 0 00420650 -beguiled a 1 1 & 1 0 00865620 -beguiling a 2 1 & 2 1 02097480 01223781 -behavioral a 1 1 \ 1 1 02941652 -behaviorist a 1 2 \ + 1 0 02660651 -behavioristic a 1 2 \ + 1 0 02660651 -behavioural a 1 1 \ 1 0 02941652 -behaviourist a 1 2 \ + 1 0 02660651 -behaviouristic a 1 2 \ + 1 0 02660651 -beheaded a 1 1 & 1 0 01184584 -behind a 1 1 & 1 1 02492383 -behind-the-scenes a 1 1 & 1 0 01707531 -behindhand a 1 1 & 1 0 01901082 -beholden a 1 1 & 1 0 01616798 -beige a 1 2 & + 1 0 00370501 -belarusian a 1 2 \ + 1 0 02660940 -belated a 1 1 & 1 1 01901186 -belemnitic a 1 2 \ + 1 0 02661099 -belgian a 1 2 \ + 1 1 02960507 -believable a 1 4 & ^ = + 1 1 00644839 -belittled a 1 1 & 1 0 00882580 -belittling a 1 1 & 1 0 00906655 -bell-bottom a 1 1 & 1 0 02442441 -bell-bottomed a 1 1 & 1 0 02442441 -bell-shaped a 1 1 & 1 0 00537644 -bellbottom a 1 1 & 1 0 02442441 -belletristic a 1 1 & 1 0 01421249 -bellicose a 1 1 & 1 0 00082766 -bellied a 2 2 ! & 2 0 00222662 01353618 -belligerent a 2 2 & + 2 1 01244846 01742537 -belly-up a 1 1 & 1 0 02026629 -bellying a 1 1 & 1 0 01353618 -bellyless a 1 1 ! 1 0 00222873 -beloved a 1 2 & + 1 1 01462324 -below_the_belt a 1 2 & ; 1 0 00957551 -belowground a 2 1 & 2 1 02471984 00292750 -belt-fed a 1 1 & 1 0 00223504 -belt-like a 1 1 & 1 0 00223582 -belt-shaped a 1 1 & 1 0 02145388 -belted a 1 2 ! & 1 0 00223220 -beltless a 1 0 1 0 00223683 -beltlike a 1 1 & 1 0 00223582 -bemused a 2 1 & 2 0 02419159 01766133 -bendable a 1 2 & + 1 0 01022367 -bended a 1 1 & 1 1 01238343 -benedictine a 2 2 \ + 2 0 03047611 03047501 -benedictive a 1 1 \ 1 0 02661202 -benedictory a 1 1 \ 1 0 02661202 -benefic a 1 1 & 1 0 00224031 -beneficed a 1 1 ! 1 0 00208052 -beneficent a 2 5 ! & ^ = + 2 0 00223802 00359645 -beneficial a 1 2 & + 1 1 00064787 -beneficiary a 1 2 \ + 1 0 02661314 -benevolent a 4 3 & \ + 4 0 02661446 01372948 01111312 00359645 -bengali a 1 2 \ + 1 0 03047714 -benighted a 2 1 & 2 0 01901496 00884501 -benign a 3 6 ! & ^ = + ; 3 0 02594565 00226618 01372773 -benignant a 2 3 & ^ = 2 0 00226618 01372568 -beninese a 1 2 \ + 1 0 03047898 -bent a 3 1 & 3 0 01990172 01238343 00680005 -bent_on a 1 1 & 1 0 01990172 -benthal a 1 2 \ + 1 0 02661574 -benthic a 1 1 \ 1 0 02661574 -benthonic a 1 2 \ + 1 0 02661574 -bentonitic a 1 2 \ + 1 0 02661806 -benumbed a 2 1 & 2 0 02103333 01343679 -benzenoid a 1 1 \ 1 0 02661922 -benzoic a 1 1 \ 1 0 02662020 -benzylic a 1 3 \ + ; 1 0 02662142 -bereaved a 1 1 & 1 0 01364817 -bereft a 2 1 & 2 0 01463414 01364817 -bermudan a 1 2 \ + 1 0 03048046 -berried a 1 1 & 1 0 01080717 -berrylike a 1 1 \ 1 0 02656699 -berserk a 1 1 & 1 0 02074673 -beseeching a 1 2 ! & 1 0 00713995 -besieged a 1 1 & 1 0 01657129 -besotted a 1 2 & ; 1 0 00798103 -bespectacled a 1 1 & 1 1 00056943 -bespoke a 1 1 & 1 0 00672382 -bespoken a 2 1 & 2 0 00672382 00158110 -besprent a 1 1 & 1 0 02547953 -best a 2 5 ! & ^ + ; 2 1 00227507 00067379 -best-known a 1 1 & 1 1 01375546 -best-loved a 1 1 & 1 0 01462882 -best-selling a 1 1 & 1 1 01816195 -bestial a 1 2 & + 1 1 01263445 -bestubbled a 1 1 & 1 1 02154118 -beta a 2 1 & 2 0 01276693 00877938 -betrothed a 1 2 & + 1 1 00158110 -better a 4 3 ! & ; 4 3 00230335 00231761 00067379 01471260 -better-known a 1 1 & 1 0 01375689 -better-looking a 1 1 & 1 1 00218950 -better_off a 1 1 & 1 1 01048202 -bettering a 1 2 ! & 1 0 00232234 -betting a 1 1 & 1 0 01297946 -betulaceous a 1 2 \ + 1 0 02662252 -bewhiskered a 1 1 & 1 1 02153965 -bewildered a 1 1 & 1 1 01766133 -bewitched a 1 1 & 1 1 00865765 -bewitching a 1 1 & 1 0 00166753 -beyond_doubt a 1 1 & 1 0 01918541 -bhutanese a 1 2 \ + 1 0 03048204 -biannual a 1 1 & 1 0 01969348 -bias a 1 1 & 1 0 01719393 -biased a 1 1 & 1 0 01723091 -biaural a 1 1 & 1 0 00240417 -biauricular a 1 1 \ 1 0 02649570 -biaxal a 1 1 \ 1 0 02662394 -biaxate a 1 1 \ 1 0 02662394 -biaxial a 1 1 \ 1 0 02662394 -bibbed a 1 1 ! 1 0 00236839 -bibless a 1 1 ! 1 0 00236922 -biblical a 2 2 \ + 2 1 02854521 02854747 -bibliographic a 1 1 \ 1 0 02662538 -bibliographical a 1 2 \ + 1 1 02662538 -bibliolatrous a 1 2 \ + 1 0 02662692 -bibliomaniacal a 1 2 \ + 1 0 02662792 -bibliophilic a 1 2 \ + 1 0 02662933 -bibliopolic a 1 2 \ + 1 0 02663040 -bibliothecal a 1 2 \ + 1 0 02663145 -bibliothecarial a 1 2 \ + 1 0 02663145 -bibliotic a 1 2 \ + 1 0 02663351 -bibulous a 1 1 & 1 0 00798491 -bicameral a 2 2 ! & 2 0 00233263 02479361 -bicapsular a 1 2 \ ; 1 0 02663453 -bicentenary a 1 2 \ + 1 0 02999190 -bicentennial a 1 2 \ + 1 0 02999190 -bicentric a 1 1 & 1 0 00330322 -bicephalous a 1 1 & 1 0 01183892 -bichromated a 1 1 \ 1 0 02663583 -bichrome a 1 1 & 1 0 00396115 -bicipital a 1 2 \ + 1 0 02663676 -bicolor a 1 1 & 1 0 00396115 -bicolored a 1 1 & 1 0 00396115 -bicolour a 1 1 & 1 0 00396115 -bicoloured a 1 1 & 1 0 00396115 -biconcave a 1 1 & 1 0 00536008 -biconvex a 1 1 & 1 0 00537745 -bicorn a 1 2 & + 1 0 02034324 -bicornate a 1 1 & 1 0 02034324 -bicorned a 1 1 & 1 0 02034324 -bicornuate a 1 1 & 1 0 02034324 -bicornuous a 1 1 & 1 0 02034324 -bicuspid a 1 2 & + 1 0 02048449 -bicuspidate a 1 1 & 1 0 02048449 -bicyclic a 1 1 & 1 0 00676754 -bicylindrical a 1 1 \ 1 0 02709036 -biddable a 1 2 & + 1 0 01612627 -bidentate a 1 1 & 1 0 02245944 -bidirectional a 1 2 ! & 1 0 00233442 -biedermeier a 1 1 \ 1 0 02625838 -biennial a 2 4 ! & + ; 2 0 00678221 01969477 -biface a 1 1 & 1 0 00233635 -bifacial a 1 1 & 1 0 00233635 -bifid a 1 2 & ; 1 0 02479492 -bifilar a 1 1 \ 1 0 02728303 -biflagellate a 1 1 \ 1 0 03015336 -bifocal a 1 2 & ; 1 0 00330396 -bifoliate a 1 1 & 1 0 01700944 -biform a 1 1 & 1 0 02145464 -bifurcate a 1 1 & 1 0 02479602 -bifurcated a 1 1 & 1 0 02480023 -big a 13 5 ! & = + ; 13 5 01382086 01276872 01510444 01453084 00579622 02402439 01890752 01890187 01488616 01191780 01114658 01111418 00173391 -big-bellied a 1 1 & 1 0 00222775 -big-boned a 1 1 & 1 0 02038421 -big-chested a 1 1 & 1 1 02038555 -big-shouldered a 1 1 & 1 1 02038735 -big-ticket a 1 2 & ; 1 1 00933415 -bigamous a 1 2 & + 1 0 01545059 -bigeminal a 1 1 & 1 0 02216890 -bigeneric a 1 1 & 1 0 01904371 -bigger a 1 1 & 1 1 01383756 -biggish a 1 1 & 1 0 01383857 -bigheaded a 1 1 & 1 0 01890382 -bighearted a 1 2 & + 1 0 01111418 -bigmouthed a 1 1 & 1 0 00773299 -bignoniaceous a 1 2 \ + 1 0 02663798 -bigoted a 1 1 & 1 0 02436794 -bilabial a 1 2 \ + 1 0 03048385 -bilabiate a 1 2 & ; 1 0 01704273 -bilateral a 3 2 & + 3 1 02372118 01946012 00237788 -bilaterally_symmetric a 1 1 & 1 0 02372118 -bilaterally_symmetrical a 2 2 & ; 2 0 02374697 02372118 -bilgy a 1 2 & + 1 0 01053539 -biliary a 2 2 \ + 2 0 02664067 02663950 -bilinear a 1 1 & 1 0 01417678 -bilingual a 1 2 & + 1 1 01545777 -bilious a 3 3 & \ + 3 0 02664067 02543149 01135269 -billed a 1 2 & ; 1 0 00206750 -billiard a 1 1 \ 1 0 02664215 -billion a 2 3 & + ; 2 1 02199342 02199523 -billionth a 1 1 & 1 0 02212698 -billowing a 1 1 & 1 0 00304455 -billowy a 1 2 & + 1 0 00304455 -bilobate a 1 1 & 1 0 02171724 -bilobated a 1 1 & 1 0 02171724 -bilobed a 1 1 & 1 0 02171724 -bilocular a 1 2 & ; 1 0 02480151 -biloculate a 1 2 & ; 1 0 02480151 -bimanual a 1 1 & 1 0 02028046 -bimestrial a 2 2 & + 2 0 01969881 01438853 -bimetal a 1 2 & + 1 0 01528463 -bimetallic a 2 3 & \ + 2 0 02664354 01528463 -bimetallistic a 1 2 \ + 1 0 02664354 -bimillenial a 1 2 \ + 1 0 02664592 -bimodal a 1 2 ! ; 1 0 00240197 -bimolecular a 1 1 \ 1 1 02900932 -bimonthly a 2 1 & 2 0 01970014 01969881 -bimorphemic a 1 1 \ 1 0 02936511 -bimotored a 1 1 & 1 0 01559655 -binary a 2 2 & \ 2 0 02664700 02216985 -binate a 1 1 & 1 0 02171836 -binaural a 1 2 ! & 1 0 00240417 -bindable a 1 2 & + 1 0 00161684 -binding a 1 1 & 1 1 02499036 -binocular a 1 1 \ 1 0 02872265 -binomial a 2 2 & + 2 1 03048558 00121183 -binominal a 1 1 & 1 0 00121183 -binuclear a 1 1 ; 1 0 00241260 -binucleate a 1 2 ! ; 1 0 00241260 -binucleated a 1 1 ; 1 0 00241260 -biocatalytic a 1 2 \ + 1 0 02664825 -biochemical a 1 2 \ + 1 1 02664932 -bioclimatic a 1 1 \ 1 0 02665088 -biodegradable a 1 1 & 1 0 01753652 -biogenetic a 1 2 \ + 1 0 02665212 -biogenic a 2 2 & \ 2 0 02665497 00901161 -biogenous a 1 2 \ + 1 0 02665367 -biogeographic a 1 1 \ 1 0 02665642 -biogeographical a 1 2 \ + 1 0 02665642 -biographic a 1 1 \ 1 0 03048680 -biographical a 1 2 \ + 1 1 03048680 -biologic a 1 2 \ + 1 0 02665803 -biological a 2 4 ! & \ + 2 1 02665803 01405904 -biologistic a 1 2 \ + 1 0 02666029 -bioluminescent a 1 3 & + ; 1 0 00270856 -biomedical a 1 2 \ + 1 1 02760316 -bionic a 2 3 & \ + 2 0 02666434 01572009 -bionomic a 1 3 \ + ; 1 0 02906478 -bionomical a 1 3 \ + ; 1 0 02906478 -biosynthetic a 1 2 \ + 1 0 02666530 -biosystematic a 1 2 \ + 1 0 02666637 -biotic a 1 1 \ 1 0 02983891 -biotitic a 1 2 \ + 1 0 02666747 -biotypic a 1 2 \ + 1 0 02666852 -biovular a 1 0 1 0 00292298 -biparous a 1 1 & 1 0 02475430 -bipartisan a 1 1 & 1 1 00731471 -bipartite a 2 1 & 2 0 02171938 00238037 -bipartizan a 1 1 & 1 0 00731471 -biped a 1 2 ! + 1 0 00241672 -bipedal a 1 2 ! + 1 0 00241672 -bipinnate a 1 1 & 1 0 02172038 -bipinnatifid a 1 1 & 1 0 02172152 -bipolar a 3 3 ! & \ 3 0 02838374 02838220 02475604 -biquadratic a 1 2 \ + 1 0 03107913 -biracial a 1 1 & 1 0 01927904 -biradial a 1 1 & 1 0 02372303 -biramous a 1 1 & 1 0 02479602 -birch a 1 1 & 1 0 02575834 -birchen a 1 1 & 1 0 02575834 -bird's-eye a 1 1 & 1 0 02561123 -birefringent a 1 2 \ + 1 0 02837278 -birken a 1 1 & 1 0 02575834 -bisectional a 1 1 \ 1 0 02837404 -biserrate a 1 1 & 1 0 02246056 -bisexual a 2 3 ! & + 2 0 01203147 01478907 -bismarckian a 1 2 \ + 1 0 03029133 -bismuthal a 1 2 \ + 1 0 02837489 -bismuthic a 1 1 \ 1 0 02837588 -bisontine a 1 1 \ 1 0 02837700 -bistered a 1 1 \ 1 0 02837794 -bistred a 1 1 \ 1 0 02837794 -bistroic a 1 1 \ 1 0 02837910 -bisulcate a 1 1 & 1 0 02480747 -bit-by-bit a 1 1 & 1 0 01143006 -bitchy a 1 2 & + 1 0 00225912 -biting a 2 1 & 2 1 02079313 01711910 -bitter a 7 2 & + 7 5 00116744 02435901 01802165 01364993 01245610 02396098 01711910 -bitterish a 1 1 & 1 0 02396267 -bittersweet a 2 1 & 2 1 01362273 02396354 -bittie a 1 2 & ; 1 0 01392633 -bitty a 1 3 & + ; 1 0 01392633 -bitumenoid a 1 1 \ 1 0 03048971 -bituminoid a 1 1 \ 1 0 03048971 -bituminous a 1 2 \ + 1 0 03048845 -bivalent a 2 4 ! \ = ; 2 0 03049071 01546826 -bivalve a 1 4 ! & + ; 1 0 02483908 -bivalved a 1 2 & ; 1 0 02483908 -bivariate a 1 2 \ ; 1 0 03049220 -biweekly a 2 1 & 2 0 01969038 01968721 -biyearly a 2 1 & 2 0 01969477 01969348 -bizarre a 1 2 & + 1 1 00608791 -bizonal a 1 1 \ 1 0 03132360 -blabbermouthed a 2 1 & 2 0 00773299 00496259 -blabby a 1 1 & 1 0 00773299 -black a 14 5 ! & ^ = + 14 8 00392812 00241952 00114797 01229561 01131935 01050088 00396296 00274068 02079507 01706341 01402580 01227546 00756897 00421002 -black-and-blue a 1 1 & 1 0 01318330 -black-and-tan a 1 1 & 1 0 01787138 -black-and-white a 3 4 ! & \ ; 3 0 02666952 00394331 02480317 -black-barred a 1 1 & 1 0 01787231 -black-coated a 1 1 & 1 0 01699576 -black-gray a 1 1 & 1 0 00387808 -black-grey a 1 1 & 1 0 00387808 -black-haired a 1 1 & 1 1 00245319 -black-marked a 1 1 & 1 0 01787331 -black-market a 1 1 & 1 1 01402580 -black-seeded a 1 1 & 1 0 02255317 -black-tie a 1 1 & 1 0 01043746 -black_and_white a 1 1 ; 1 1 00394331 -blackened a 2 1 & 2 1 02234187 00396296 -blackguardly a 1 2 & + 1 0 01224964 -blackish a 1 1 & 1 0 00387699 -blackish-brown a 1 1 & 1 0 00370601 -blackish-gray a 1 1 & 1 0 00387808 -blackish-grey a 1 1 & 1 0 00387808 -blackish-red a 1 1 & 1 0 00370688 -bladderlike a 1 1 \ 1 0 03049350 -bladdery a 1 2 \ + 1 0 03049350 -bladed a 3 3 & \ ; 3 1 03049475 03049642 02412732 -bladelike a 1 1 & 1 0 02168248 -blae a 1 2 & ; 1 0 00370771 -blamable a 1 2 & + 1 0 01321529 -blame a 1 1 & 1 0 00669942 -blameable a 1 2 & + 1 0 01321529 -blamed a 1 1 & 1 0 00669942 -blameful a 1 1 & 1 0 01321529 -blameless a 1 2 & + 1 0 01320705 -blameworthy a 1 2 & + 1 0 01321529 -blanched a 2 2 & ; 2 1 00404568 00405554 -bland a 3 2 & + 3 1 02399595 02307563 00758800 -blank a 3 2 & + 3 2 01087093 00500889 01425056 -blanket a 1 1 & 1 0 00526062 -blanketed a 1 1 & 1 0 01695269 -blaring a 1 1 & 1 0 01453187 -blase a 3 1 & 3 0 02270782 01343200 00545484 -blasphemous a 2 2 & + 2 1 02012748 00425002 -blasted a 1 1 & 1 0 00669942 -blastemal a 1 2 \ + 1 0 03049812 -blastematic a 1 2 \ + 1 0 03049812 -blastemic a 1 2 \ + 1 0 03049812 -blasting a 2 1 & 2 1 00586883 01453187 -blastocoelic a 1 2 \ + 1 0 03050012 -blastodermatic a 1 2 \ + 1 0 03050164 -blastodermic a 1 2 \ + 1 0 03050164 -blastogenetic a 1 2 \ + 1 0 02667148 -blastomeric a 1 2 \ + 1 0 03050324 -blastomycotic a 1 2 \ + 1 0 03050430 -blastoporal a 1 2 \ + 1 0 03050560 -blastoporic a 1 2 \ + 1 0 03050560 -blastospheric a 1 2 \ + 1 0 03050716 -blastular a 1 2 \ + 1 0 03050716 -blatant a 2 2 & + 2 2 02090567 01920367 -blate a 1 2 & ; 1 0 00204249 -blazing a 2 1 & 2 1 00280844 02090567 -bleached a 2 1 & 2 1 00404961 01572171 -bleak a 3 2 & + 3 2 01229561 01242750 01252399 -blear a 1 1 & 1 0 02432562 -blear-eyed a 1 1 & 1 0 02432562 -bleary a 2 1 & 2 1 02432562 00781644 -bleary-eyed a 1 1 & 1 0 02432562 -blebbed a 1 1 & 1 0 00246348 -blebby a 2 2 & + 2 0 01174438 00246348 -blemished a 2 3 ! & ^ 2 0 00245952 01752553 -blended a 1 2 ! & 1 0 01329138 -blessed a 6 3 ! & + 6 3 00670741 02054216 00669942 02054075 01451768 01148764 -blest a 1 1 & 1 0 00670741 -blighted a 1 1 & 1 1 00734906 -blimpish a 1 1 & 1 0 00574644 -blind a 3 3 ! & + 3 3 02158826 01746292 01926654 -blind_drunk a 1 2 & ; 1 0 00798103 -blinded a 1 1 & 1 1 02159293 -blindfold a 1 1 & 1 0 02159364 -blindfolded a 1 1 & 1 1 02159364 -blinding a 1 1 & 1 0 00280844 -blinking a 2 1 & 2 0 01655386 01520655 -blissful a 1 2 & + 1 1 01148897 -blistering a 3 1 & 3 2 01802165 01248064 00977372 -blistery a 2 2 & + 2 0 01248064 01174438 -blithe a 2 2 & + 2 2 00545600 00363291 -blithesome a 1 1 & 1 0 00363291 -blockaded a 1 1 & 1 0 01620893 -blockading a 1 1 & 1 1 01764183 -blocked a 2 1 & 2 0 01653857 01621080 -blockheaded a 1 1 & 1 0 00440292 -blockish a 1 1 & 1 0 00657473 -blocky a 1 2 & + 1 0 00657473 -blond a 1 4 ! & = + 1 1 00243606 -blonde a 1 2 & = 1 1 00243606 -blood-and-guts a 1 2 & ; 1 1 01510628 -blood-filled a 1 1 & 1 1 00247868 -blood-red a 1 1 & 1 0 00381097 -blood-related a 1 1 & 1 0 01971846 -bloodcurdling a 1 1 & 1 0 00194817 -blooded a 1 1 & 1 0 01903813 -bloodguilty a 1 2 & + 1 0 01321939 -bloodless a 5 2 ! & 5 1 00096239 00249433 02281813 01260451 00404568 -bloodshot a 1 1 & 1 0 01175007 -bloodstained a 1 1 & 1 1 00247993 -bloodsucking a 2 1 & 2 1 00248118 00726723 -bloodthirsty a 1 2 & + 1 1 00248251 -bloody a 2 4 ! & ^ + 2 1 00247439 01520655 -bloody-minded a 2 2 & ; 2 0 02327078 00248251 -blooming a 1 1 & 1 0 01520655 -blotched a 1 1 & 1 0 01787408 -blotchy a 2 2 & + 2 0 01787408 00246497 -blotted_out a 1 1 & 1 0 00735088 -blotto a 1 2 & ; 1 0 00798103 -blow-by-blow a 1 1 & 1 0 00309620 -blown a 2 1 & 2 1 01562809 00268748 -blown-up a 1 1 & 1 0 01383935 -blowsy a 1 1 & 1 0 02424716 -blowy a 1 2 & + 1 0 00305225 -blowzy a 1 1 & 1 0 02424716 -blubbery a 1 2 & + 1 0 00986611 -blue a 8 2 & + 8 4 00370869 01606058 00703615 00425002 02132224 01590484 01300370 00364881 -blue-black a 1 1 & 1 1 00388152 -blue-blind a 1 2 & + 1 0 02160696 -blue-blooded a 1 1 & 1 0 01590484 -blue-chip a 1 1 & 1 0 02501247 -blue-collar a 2 3 ! & ^ 2 2 02556720 00260100 -blue-eyed a 2 2 & ; 2 2 01462461 00953814 -blue-flowered a 1 1 & 1 0 00396444 -blue-fruited a 1 1 & 1 0 01080823 -blue-gray a 1 1 & 1 0 00388032 -blue-green a 1 1 & 1 0 00371163 -blue-grey a 1 1 & 1 0 00388032 -blue-lilac a 1 1 & 1 0 00371311 -blue-purple a 1 1 & 1 0 00371411 -blue-ribbon a 1 1 & 1 1 02342309 -blue-sky a 1 1 & 1 0 00484538 -blue-violet a 1 1 & 1 0 00371511 -blue-white a 1 1 & 1 0 00387922 -blueish a 1 1 & 1 0 00370869 -bluff a 2 2 & + 2 0 01145422 00764301 -bluish a 1 1 & 1 1 00370869 -bluish-gray a 1 1 & 1 0 00388032 -bluish-grey a 1 1 & 1 0 00388032 -bluish-lilac a 1 1 & 1 0 00371311 -bluish-purple a 1 1 & 1 0 00371411 -bluish-violet a 1 1 & 1 0 00371511 -bluish-white a 1 1 & 1 0 00387922 -bluish_black a 1 1 & 1 0 00388152 -bluish_green a 1 1 & 1 0 00371163 -blunt a 4 2 & + 4 3 01811683 00800464 00764484 00556881 -blunted a 1 1 & 1 0 00800597 -blurred a 2 1 & 2 1 00781644 00430545 -blurry a 1 2 & + 1 0 00781644 -blushful a 2 1 & 2 0 00531887 00371611 -blushing a 1 1 & 1 1 00531887 -blustering a 1 1 & 1 0 00304670 -blusterous a 1 2 & + 1 0 00304670 -blustery a 2 2 & + 2 1 00304670 00788032 -boastful a 1 2 & + 1 1 01890752 -boat-shaped a 1 1 & 1 0 00536103 -bobtail a 1 1 & 1 0 00319851 -bobtailed a 1 1 & 1 0 00319851 -bodacious a 2 2 & ; 2 0 01520908 00155144 -bodied a 2 3 ! & ^ 2 0 00627849 00630466 -bodiless a 2 1 & 2 0 00631040 00629269 -bodily a 3 3 & \ + 3 0 02667275 01778935 00630329 -bodyless a 1 1 & 1 0 00629269 -boeotian a 1 2 \ + 1 1 03017468 -boffo a 1 1 & 1 0 02331721 -bogartian a 1 2 \ + 1 1 03029274 -boggy a 1 2 & + 1 0 02548066 -bogus a 1 1 & 1 1 01117477 -bohemian a 2 3 & \ + 2 0 02667426 00606859 -boiled a 1 1 & 1 0 00616822 -boisterous a 3 2 & + 3 1 01666489 02279360 00304949 -bold a 3 5 ! & ^ = + 3 2 00249721 00579881 01145422 -bolivian a 1 2 \ + 1 0 02967485 -bolographic a 1 1 \ 1 0 02667550 -bolometric a 1 2 \ + 1 0 02667637 -bolshevik a 1 1 \ 1 0 02875499 -bolshevist a 1 1 \ 1 0 02875499 -bolshevistic a 1 2 \ + 1 0 02875499 -bolshy a 1 2 & ; 1 0 02327315 -bombastic a 1 2 & + 1 0 02016881 -bombproof a 1 1 & 1 0 02525732 -bona_fide a 2 1 & 2 0 02179707 01115635 -bondable a 2 2 & + 2 0 00161684 00053248 -bone a 1 1 & 1 0 00295924 -bone-covered a 1 2 & ; 1 0 00147052 -bone-dry a 1 1 & 1 0 02552646 -bone-idle a 1 2 & ; 1 0 00294463 -bone-lazy a 1 2 & ; 1 0 00294463 -bone_dry a 1 1 & 1 0 02552646 -boned a 2 2 & ; 2 0 00296482 00296061 -boneheaded a 1 1 & 1 0 00440292 -boneless a 1 2 ! & 1 0 00296354 -bonelike a 1 1 & 1 0 00296186 -boney a 2 2 & + 2 0 00295657 00990192 -bonkers a 1 1 & 1 0 02074929 -bonnie a 1 1 & 1 0 00218440 -bonny a 1 1 & 1 0 00218440 -bony a 3 4 ! & \ + 3 1 00988988 03138224 00295657 -bony-plated a 1 1 & 1 0 00144020 -bonzer a 1 2 & ; 1 0 01675931 -bookable a 1 2 & + 1 0 01988565 -booked a 1 1 & 1 1 01988468 -bookish a 1 2 & + 1 0 02084101 -boolean a 1 2 \ + 1 0 02667741 -booming a 2 1 & 2 0 02331857 01456977 -boon a 1 1 & 1 1 00452020 -boorish a 1 2 & + 1 0 01949859 -boot-shaped a 1 1 & 1 0 02145598 -booted a 1 1 & 1 1 02156111 -bootleg a 1 1 & 1 0 01402580 -bootless a 1 1 & 1 0 01866812 -bootlicking a 2 1 & 2 0 02181231 00790394 -boozy a 1 2 & + 1 0 00798491 -boracic a 1 1 \ 1 0 03050870 -borated a 1 1 \ 1 0 02667973 -bordered a 1 3 ! & ^ 1 0 00257742 -borderline a 1 1 & 1 1 01496311 -boreal a 3 3 & \ + 3 0 03133530 03133413 01604453 -bored a 2 1 & 2 2 02432682 01343200 -boric a 1 2 \ + 1 0 03050870 -boring a 1 2 & + 1 1 01345307 -born a 2 2 ! & 2 1 01733462 01335708 -born-again a 1 1 & 1 0 01957177 -boronic a 1 2 \ + 1 0 02668058 -boskopoid a 1 1 \ 1 0 02668153 -bosky a 1 2 & + 1 0 02573443 -bosnian a 1 2 \ + 1 0 02964629 -bosomed a 1 1 & 1 0 02142787 -bosomy a 1 2 & + 1 0 02138989 -boss a 1 2 & ; 1 0 02342463 -boss-eyed a 1 2 & ; 1 0 00653617 -bossy a 1 2 & + 1 0 00787595 -botanic a 1 2 \ + 1 0 02668258 -botanical a 1 2 \ + 1 0 02668258 -botched a 1 1 & 1 0 02229201 -botchy a 1 2 & + 1 0 02229000 -both a 1 1 & 1 1 02268133 -bothered a 1 1 & 1 0 00532147 -bothersome a 1 1 & 1 0 00089550 -botonee a 1 1 & 1 0 00296783 -botonnee a 1 1 & 1 0 00296783 -botryoid a 1 1 \ 1 0 02668432 -botryoidal a 1 1 \ 1 0 02668432 -botswanan a 1 1 \ 1 0 02668585 -bottle-fed a 1 1 ! 1 0 00267356 -bottle-green a 1 1 & 1 0 00371741 -bottle-shaped a 1 1 & 1 0 02145674 -bottom a 2 2 ! & 2 0 02440691 00229978 -bottom-dwelling a 1 1 \ 1 0 02668695 -bottom-feeding a 1 1 \ 1 0 02668839 -bottom-up a 1 1 ! 1 0 02443406 -bottomed a 1 2 ! & 1 0 02442274 -bottomless a 4 3 ! & + 4 1 00690892 02443005 01415917 00458940 -bottommost a 1 1 & 1 0 02440881 -botuliform a 1 1 & 1 0 02145754 -botulinal a 1 2 \ + 1 1 02986098 -bouffant a 1 1 & 1 1 01384081 -boughed a 1 1 & 1 0 01414488 -boughless a 1 1 & 1 0 01414938 -boughten a 1 1 & 1 0 00675228 -bouldered a 1 1 & 1 0 02241988 -bouldery a 1 2 & + 1 0 02241988 -bouncing a 2 1 & 2 0 01170984 00805309 -bouncy a 2 2 & + 2 0 00843595 00805309 -bound a 9 4 ! & ^ ; 9 6 00252954 01058854 00256636 00340626 01955494 01682822 02371495 01064806 00638396 -bound_up a 2 1 & 2 1 01973655 00518405 -bounded a 1 2 & + 1 1 01006788 -bounden a 1 1 & 1 0 00848375 -bounderish a 1 1 & 1 0 01950857 -boundless a 1 2 & + 1 1 01007657 -bounteous a 1 2 & + 1 0 01111418 -bountied a 1 1 & 1 0 02015767 -bountiful a 2 2 & + 2 0 01111418 01080900 -bourgeois a 3 1 & 3 0 00297598 00260780 00260695 -boustrophedonic a 1 2 \ + 1 0 02668981 -bovid a 1 1 \ 1 0 02842185 -bovine a 2 2 & \ 2 1 02842185 00807277 -bowed a 4 3 ! & ; 4 0 00945513 02315461 01018530 00789392 -bowed_down a 1 1 & 1 1 00869690 -bowelless a 1 1 & 1 0 01507808 -bowery a 1 2 & + 1 0 01701017 -bowfront a 1 1 & 1 0 02045345 -bowing a 1 1 & 1 0 00789392 -bowl-shaped a 1 1 & 1 0 00536195 -bowleg a 1 1 & 1 0 01018530 -bowlegged a 1 1 & 1 0 01018530 -box-shaped a 1 1 & 1 0 00657600 -boxed a 2 1 & 2 1 00258090 01657233 -boxed-in a 1 1 & 1 0 01657233 -boxed_in a 1 1 & 1 1 01657233 -boxlike a 1 1 & 1 0 00657600 -boxy a 1 2 & + 1 0 00657600 -boyish a 1 2 & + 1 1 01648313 -boylike a 1 1 & 1 0 01648313 -boytrose a 1 1 \ 1 0 02668432 -braced a 2 1 & 2 1 01843746 02351149 -brachial a 1 1 \ 1 0 02669125 -brachiate a 2 2 & ; 2 0 00613728 00146501 -brachiopod a 1 1 \ 1 0 02669223 -brachiopodous a 1 2 \ + 1 0 02669223 -brachycephalic a 1 3 ! & + 1 0 00262124 -brachycranial a 1 1 & 1 0 00262124 -brachycranic a 1 1 & 1 0 00262124 -brachydactylic a 1 2 & + 1 0 01597105 -brachydactylous a 1 1 & 1 0 01597105 -brachypterous a 1 1 & 1 0 02567593 -brachyurous a 1 2 \ + 1 0 02669373 -bracing a 1 1 & 1 0 01357027 -brackish a 2 2 & + 2 0 01716845 01074062 -bracteal a 1 2 \ + 1 0 02669490 -bracteate a 1 2 ! \ 1 0 02669616 -bracted a 1 1 \ 1 0 02669616 -bracteolate a 1 1 \ 1 0 02669731 -brag a 1 2 & ; 1 0 02342463 -braggart a 1 1 & 1 0 01890752 -bragging a 1 1 & 1 0 01890752 -braggy a 1 2 & + 1 0 01890752 -brahminic a 1 2 \ + 1 0 02669806 -brahminical a 1 2 \ + 1 0 02669806 -braided a 1 1 & 1 0 02579760 -brain_dead a 1 1 & 1 0 00096414 -brainish a 1 2 & ; 1 0 00326608 -brainless a 1 1 & 1 0 01336837 -brainsick a 1 1 & 1 0 02075321 -brainwashed a 1 1 ! 1 0 00629532 -brainy a 1 2 & + 1 1 01335156 -braised a 1 1 & 1 0 00616913 -braky a 2 2 & + 2 0 02573708 00209253 -braless a 1 1 & 1 0 00458488 -brambly a 1 2 & + 1 0 02573708 -bran-new a 1 1 & 1 0 01641460 -branched a 2 1 & 2 1 02479602 00613866 -branchial a 1 2 \ + 1 0 02670050 -branchiate a 1 1 ! 1 0 01106989 -branching a 2 1 & 2 0 00613866 00612891 -branchiopod a 1 1 \ 1 0 02670202 -branchiopodan a 1 1 \ 1 0 02670202 -branchiopodous a 1 2 \ + 1 0 02670202 -branchless a 1 2 ! & 1 0 00614680 -branchy a 1 3 ! & + 1 0 00613068 -brand-new a 1 2 & + 1 0 01641460 -branded a 2 2 ! & 2 1 01110251 01481402 -brash a 1 2 & + 1 1 00204779 -brassbound a 2 1 & 2 0 01025732 00256883 -brasslike a 1 1 \ 1 0 02670411 -brassy a 3 3 & \ + 3 1 02670411 02393791 00155144 -brattish a 1 1 & 1 0 00641813 -bratty a 1 2 & + 1 0 00641813 -brave a 3 5 ! & ^ = + 3 2 00262792 00250119 00407151 -braw a 1 2 & ; 1 0 00407151 -brawny a 1 2 & + 1 0 02321809 -brazen a 2 3 & \ + 2 1 00155144 02905485 -brazen-faced a 1 1 & 1 0 00155144 -brazilian a 1 2 \ + 1 1 02966829 -breakable a 1 4 ! & = + 1 0 00708017 -breakaway a 1 1 & 1 0 00728619 -breakneck a 1 1 & 1 0 02059280 -breast-fed a 1 2 ! & 1 0 00267145 -breasted a 1 2 ! & 1 0 02142592 -breastless a 1 1 ! 1 0 02142983 -breathed a 1 1 & 1 0 00174719 -breathing a 1 2 ! & 1 1 00267452 -breathless a 3 4 ! & ^ + 3 2 00267871 00921369 00096595 -breathtaking a 1 1 & 1 0 00921369 -breech-loading a 1 1 \ 1 0 02670572 -breeched a 1 1 & 1 0 00454984 -breeding a 1 1 & 1 1 01081068 -breezy a 2 2 & + 2 0 00805566 00305225 -bregmatic a 1 3 \ + ; 1 0 02670678 -briary a 1 2 & + 1 0 00145083 -bribable a 1 2 & + 1 0 00621207 -brick-shaped a 1 1 & 1 0 00657726 -brickle a 1 1 & 1 0 00708498 -brickly a 1 1 & 1 0 00708498 -bridal a 2 2 \ + 2 0 02843495 02843382 -bridgeable a 1 2 ! + 1 0 00278266 -brief a 3 2 & + 3 3 01442826 00547166 01436432 -briefless a 1 1 & 1 0 01739080 -briery a 1 1 & 1 0 00145083 -bright a 10 4 ! & = + 10 6 00278551 00402855 01335458 00271022 01812237 01121238 00284930 02009688 01149050 00176387 -bright-red a 1 1 & 1 0 00371841 -bright_as_a_new_penny a 1 1 & 1 0 00281075 -bright_blue a 1 1 & 1 1 00370267 -brightly-colored a 1 1 & 1 0 00396523 -brightly-coloured a 1 1 & 1 0 00396523 -brilliant a 6 2 & + 6 6 02342608 01335156 01285376 00402855 00281173 02009688 -brimful a 1 1 & 1 0 01084091 -brimfull a 1 1 & 1 0 01084091 -brimless a 1 1 \ 1 0 02670812 -brimming a 1 1 & 1 0 01084091 -brinded a 1 1 & 1 0 01787548 -brindle a 1 1 & 1 1 01787548 -brindled a 1 1 & 1 0 01787548 -brine-cured a 1 1 & 1 0 01073311 -briny a 1 2 & + 1 0 01074062 -brisant a 1 2 \ + 1 0 02670899 -brisk a 3 2 & + 3 2 00874226 01357027 00035779 -bristle-pointed a 1 1 & 1 0 01810453 -bristled a 1 1 & 1 0 00145083 -bristlelike a 1 1 & 1 0 00145628 -bristly a 2 2 & + 2 0 01135420 00145083 -britannic a 1 2 \ + 1 1 02958017 -british a 1 2 \ + 1 1 03022177 -briton a 1 2 \ + 1 0 03132826 -brittle a 3 2 & + 3 1 00708498 02533682 01522214 -broached a 1 1 & 1 0 01659762 -broad a 8 4 & ^ = + 8 5 02560548 00526062 01101891 00428878 01211531 01384212 01287160 00286837 -broad-brimmed a 1 1 & 1 0 02561302 -broad-headed a 1 1 & 1 0 00262328 -broad-leafed a 1 1 & 1 0 00914269 -broad-leaved a 1 1 & 1 0 00914269 -broad-minded a 2 3 ! & + 2 0 02155771 00286578 -broad-shouldered a 1 1 & 1 0 02038735 -broadband a 2 1 \ 2 0 02671202 02671038 -broadleaf a 1 1 & 1 0 00914269 -broadloom a 1 1 & 1 0 02254434 -broadnosed a 1 0 1 0 01408929 -broadside a 1 1 & 1 0 02441373 -brobdingnagian a 2 3 & \ + 2 0 02671423 01387319 -brocaded a 1 1 & 1 1 00057149 -broiled a 1 1 & 1 0 00617033 -broke a 1 1 & 1 1 02023287 -broken a 13 5 ! & ^ = ; 13 3 00289082 00289983 01893303 00289594 02388441 02239746 01752692 01669246 01274626 00735195 00680156 00540366 00524388 -broken-backed a 3 2 & ; 3 1 00680395 01018667 00537884 -broken-down a 2 1 & 2 1 00679717 02124886 -broken-field a 1 2 & ; 1 0 00290337 -broken_in a 1 1 & 1 0 02388441 -brokenhearted a 1 2 & + 1 0 01365103 -bromic a 1 2 \ + 1 0 02671577 -bromidic a 2 2 & \ 2 0 02671714 01689223 -bronchial a 1 2 \ + 1 1 02948482 -bronchiolar a 1 2 \ + 1 1 02948774 -bronchitic a 1 2 & + 1 0 02543324 -bronchoscopic a 1 2 \ + 1 0 03141026 -bronze a 2 1 & 2 1 00371945 01528644 -bronze-red a 1 1 & 1 0 00372029 -bronzed a 1 1 & 1 1 00244958 -bronzy a 1 1 & 1 0 00371945 -brooding a 1 1 & 1 1 02419434 -broody a 2 1 & 2 0 02519292 02419434 -brotherlike a 1 0 1 0 00291471 -brotherly a 1 2 ! + 1 1 00291471 -brown a 2 2 & + 2 1 00372111 00245112 -brown-black a 1 1 & 1 0 00388249 -brown-gray a 1 1 & 1 0 00388350 -brown-green a 1 1 & 1 0 00372266 -brown-grey a 1 1 & 1 0 00388350 -brown-haired a 1 1 & 1 0 00245319 -brown-purple a 1 1 & 1 0 00372367 -brown-speckled a 1 1 & 1 0 01787740 -brown-striped a 1 1 & 1 0 01787842 -browned a 1 1 & 1 0 00245112 -browned_off a 1 1 & 1 0 01806483 -brownish a 1 1 & 1 1 00372111 -brownish-black a 1 1 & 1 0 00388249 -brownish-gray a 1 1 & 1 0 00388350 -brownish-green a 1 1 & 1 0 00372266 -brownish-grey a 1 1 & 1 0 00388350 -brownish-orange a 1 1 & 1 0 00384099 -brownish-purple a 1 1 & 1 0 00372367 -brownish-red a 1 1 & 1 0 00377702 -brownish-speckled a 1 1 & 1 0 01787740 -brownish-striped a 1 1 & 1 0 01787842 -brownish-yellow a 1 1 & 1 0 00369504 -bruising a 2 1 & 2 0 01160880 00841800 -brumal a 1 1 & 1 0 01256076 -brummagem a 1 2 & ; 1 0 02394366 -brumous a 1 1 & 1 0 00461609 -bruneian a 1 2 \ + 1 0 03051035 -brunet a 1 3 ! & = 1 0 00244503 -brunette a 1 2 & = 1 0 00244503 -brushed a 3 1 & 3 2 02445207 02427412 01153141 -brushlike a 1 1 & 1 0 00145706 -brushy a 1 2 & + 1 1 02573443 -brusk a 1 1 & 1 0 00640660 -brusque a 1 2 & + 1 0 00640660 -brut a 1 1 & 1 0 02368068 -brutal a 4 2 & + 4 1 01263013 01510798 01263445 00765173 -brute a 1 1 & 1 1 01263445 -brutish a 1 1 & 1 0 01263445 -bryophytic a 1 3 \ + ; 1 0 03141177 -bubaline a 1 1 \ 1 0 02992363 -bubbling a 2 1 & 2 0 02276305 00805810 -bubbly a 2 2 & + 2 0 02276305 00805676 -bubonic a 1 2 \ + 1 0 03051194 -buccal a 3 2 & \ 3 0 02671795 01665581 01665457 -buck-toothed a 1 1 & 1 0 02438655 -bucked_up a 1 1 & 1 0 01805489 -buckram a 1 1 & 1 0 01043924 -buckshee a 1 2 & ; 1 0 01710054 -bucolic a 2 2 & \ 2 1 02051179 02895044 -buddhist a 1 1 \ 1 1 02924102 -buddhistic a 1 2 \ + 1 0 02924102 -budding a 1 1 & 1 0 00742620 -buddy-buddy a 1 2 & ; 1 0 00452114 -budgetary a 1 2 \ + 1 1 03022593 -buff a 1 1 & 1 0 00372476 -buff-brown a 1 1 & 1 0 00372571 -buff-colored a 1 1 & 1 0 00396627 -buff-coloured a 1 1 & 1 0 00396627 -buffeted a 1 1 & 1 0 02456530 -buffoonish a 1 1 & 1 0 01265108 -bugged a 1 1 & 1 0 02568738 -buggy a 2 2 & + 2 0 02074929 00421202 -built a 1 1 & 1 1 01288690 -built-in a 1 1 & 1 1 01348528 -built-up a 1 1 & 1 0 02126332 -buirdly a 1 2 & ; 1 0 02038126 -bulb-shaped a 1 1 & 1 0 02041807 -bulbaceous a 1 2 \ + 1 0 03141315 -bulbar a 1 2 \ + 1 0 03141487 -bulbed a 1 1 \ 1 0 03141421 -bulblike a 1 2 & + 1 0 02041807 -bulbous a 2 2 & + 2 0 02041807 01353618 -bulgarian a 1 2 \ + 1 0 03051307 -bulging a 2 2 & ^ 2 2 00537339 01353618 -bulgy a 1 2 & + 1 0 01353618 -bulimic a 1 2 \ + 1 0 02671885 -bulky a 1 2 & + 1 1 01384438 -bullate a 1 2 & ; 1 0 02239888 -bullet-headed a 2 1 & 2 0 02327428 00262444 -bulletproof a 2 2 & + 2 0 00591513 00144102 -bullheaded a 1 2 & + 1 0 02327428 -bullish a 1 2 & ; 1 0 01663916 -bullnecked a 1 1 & 1 1 02322157 -bullocky a 1 2 & + 1 0 02322248 -bully a 1 2 & ; 1 1 01123879 -bullying a 1 1 & 1 0 00788032 -bum a 1 3 & + ; 1 0 02346013 -bumbling a 1 1 & 1 0 00063563 -bumper-to-bumper a 1 1 & 1 0 00980961 -bumpkinly a 1 2 & + 1 0 00636891 -bumptious a 1 2 & + 1 0 00205033 -bumpy a 2 2 & + 2 0 02243567 02240006 -bunchy a 1 2 & + 1 0 00538891 -bundled-up a 1 1 & 1 1 00455084 -bungaloid a 1 1 \ 1 0 03051512 -bungled a 1 1 & 1 0 02229201 -bunglesome a 1 1 & 1 0 02564023 -bungling a 2 1 & 2 0 02229324 00063563 -buoyant a 2 2 & + 2 2 01187072 00363621 -burbling a 1 1 & 1 0 00806064 -burbly a 1 1 & 1 0 00806064 -burdened a 2 2 ! & 2 1 00869461 00868241 -burdenless a 1 1 & 1 0 00869138 -burdensome a 1 2 & + 1 0 01189109 -bureaucratic a 1 2 \ + 1 1 03051619 -burglarious a 1 2 \ + 1 0 03051889 -burglarproof a 1 1 & 1 0 01885532 -buried a 1 2 ! & 1 0 00292611 -burked a 1 1 & 1 0 00470284 -burled a 1 1 & 1 0 01787941 -burlesque a 1 2 \ + 1 0 02873654 -burly a 1 2 & ; 1 1 02038126 -burmese a 1 2 \ + 1 0 03052018 -burnable a 1 2 & + 1 0 00473243 -burned a 3 1 & 3 0 01954263 00735336 00617137 -burned-out a 3 1 & 3 0 02432851 02125057 00735336 -burned-over a 1 1 & 1 0 00735336 -burning a 1 1 & 1 0 01276992 -burnished a 1 1 & 1 0 01812237 -burnt a 3 1 & 3 1 00617137 01954263 00735336 -burnt-out a 3 1 & 3 0 02432851 02125057 00735336 -burr-headed a 1 1 & 1 1 01183966 -burred a 1 1 & 1 0 00145083 -burrlike a 1 1 \ 1 0 02672015 -burry a 1 2 & + 1 0 00145083 -bursal a 1 2 \ + 1 0 02672116 -bursiform a 1 1 & 1 0 00536304 -burundi a 1 1 \ 1 0 03052218 -burundian a 1 2 \ + 1 0 03052218 -bush a 1 1 & 1 0 02346242 -bush-league a 1 1 & 1 0 02346242 -bushed a 1 2 & ; 1 0 02432154 -bushwhacking a 1 1 & 1 1 02088760 -bushy a 2 2 & + 2 1 02428610 00613975 -businesslike a 2 1 & 2 1 00839959 01910114 -bust a 1 1 & 1 0 02023287 -busted a 1 2 & ; 1 0 00680156 -bustling a 1 1 & 1 1 00035868 -busty a 1 2 & + 1 0 02138989 -busy a 5 4 ! & ^ + 5 4 00292937 01795203 01352561 00035978 01623360 -busybodied a 1 1 & 1 0 01352561 -butch a 2 3 & + ; 2 0 01483562 01201758 -butcherly a 2 2 & + 2 0 02229000 00249104 -buteonine a 1 2 \ + 1 0 02672219 -butterfingered a 1 1 & 1 0 00063563 -butterfly-shaped a 1 1 & 1 0 02145832 -buttery a 2 2 & + 2 0 02181432 00992291 -button-down a 2 1 & 2 1 00607656 00296935 -button-shaped a 1 1 & 1 0 02145918 -buttoned a 1 2 ! & 1 1 00296625 -buttoned-down a 1 1 & 1 0 00607656 -buttoned-up a 2 2 & ; 2 0 02383564 00574744 -buttonlike a 1 1 & 1 0 00280245 -buttony a 2 2 & + 2 0 00280245 00057390 -buttressed a 1 1 & 1 1 02351149 -butyraceous a 1 2 \ + 1 0 02672344 -butyric a 1 1 \ 1 0 02672500 -buxom a 2 2 & + 2 0 02138989 00986975 -buzzing a 1 1 & 1 1 01920697 -bygone a 1 2 & + 1 1 01728919 -bypast a 1 1 & 1 0 01728919 -byzantine a 3 2 & \ 3 0 02970073 02969925 02176841 -c a 1 1 & 1 0 02196107 -cabalistic a 1 2 & + 1 0 00899738 -cachectic a 1 2 \ + 1 0 02672591 -cackly a 1 2 & + 1 1 00299144 -cacodaemonic a 1 2 \ + 1 0 02672729 -cacodemonic a 1 2 \ + 1 0 02672729 -cacodylic a 1 3 \ + ; 1 0 02672886 -cacogenic a 1 2 \ + 1 0 02715365 -cacophonic a 1 3 & ^ + 1 0 00298767 -cacophonous a 1 4 ! & ^ + 1 0 00298767 -cacuminal a 1 2 & ; 1 0 00201802 -cadastral a 1 2 \ + 1 0 02673022 -cadaveric a 1 2 \ + 1 0 02673139 -cadaverous a 2 3 & \ + 2 1 00988988 02673139 -caddish a 1 1 & 1 0 00640931 -cadenced a 1 1 & 1 0 02019635 -cadent a 1 2 & + 1 0 02019635 -caducean a 1 2 \ + 1 0 02673345 -caducous a 1 3 ! & ; 1 0 01758582 -caecal a 1 2 \ + 1 0 02684742 -caecilian a 1 2 \ + 1 0 02673446 -caesarean a 2 2 \ + 2 0 03029573 03029400 -caesarian a 2 2 \ + 2 0 03029573 03029400 -caespitose a 1 2 & ; 1 0 02253817 -caesural a 1 2 \ + 1 0 02673594 -caffeinic a 1 2 \ + 1 0 02673712 -cagey a 2 1 & 2 1 00439252 00325619 -cagy a 2 1 & 2 0 00439252 00325619 -cairned a 1 1 \ 1 0 02673810 -caitiff a 1 2 & + 1 0 00265214 -calamitous a 1 2 & + 1 0 01050088 -calando a 1 1 & 1 0 02538295 -calcaneal a 1 1 \ 1 0 02673880 -calcareous a 1 1 \ 1 0 02673969 -calced a 1 1 ! 1 0 02156934 -calceiform a 1 1 \ 1 0 02674148 -calceolate a 1 1 \ 1 0 02674148 -calcic a 1 1 \ 1 0 02674303 -calcicolous a 1 1 ! 1 0 02595071 -calciferous a 1 1 \ 1 0 02674398 -calcific a 1 1 \ 1 0 03009696 -calcifugous a 1 1 ! 1 0 02595167 -calcitic a 1 2 \ + 1 0 02674530 -calculable a 1 4 ! & ^ + 1 0 00301187 -calculated a 1 1 & 1 0 01337939 -calculating a 1 1 & 1 1 01155603 -calculative a 1 2 & + 1 0 01155603 -calculous a 1 2 \ + 1 0 02674642 -calcuttan a 1 2 \ + 1 0 02978495 -calefacient a 1 1 & 1 0 01248198 -calefactive a 1 1 & 1 0 01248358 -calefactory a 1 1 & 1 0 01248358 -calendered a 1 1 & 1 0 01120010 -calendric a 1 2 \ + 1 0 02674772 -calendrical a 1 2 \ + 1 0 02674772 -calibrated a 1 1 < 1 0 03147643 -caliche-topped a 1 1 & 1 1 01740085 -calico a 2 3 & \ + 2 0 02675055 00398978 -calicular a 1 2 \ + 1 0 02676046 -californian a 1 2 \ + 1 0 03052403 -caliginous a 1 1 & 1 0 00274291 -calisthenic a 1 2 \ + 1 0 02675196 -callable a 1 2 & + 1 0 00136589 -caller a 2 2 & ; 2 0 02530474 01068012 -calligraphic a 1 1 \ 1 0 02909651 -calligraphical a 1 2 \ + 1 0 02909651 -callipygian a 1 1 & 1 0 02139403 -callipygous a 1 1 & 1 0 02139403 -callithumpian a 1 2 \ + 1 0 02675320 -callous a 2 2 & + 2 1 02107162 02447569 -calloused a 1 1 & 1 1 02447569 -callow a 1 1 & 1 0 00936998 -calm a 2 4 ! & ^ + 2 1 00529657 00302761 -caloric a 2 2 \ + 2 0 02814453 02675446 -calorie-free a 1 1 & 1 0 00993117 -calorifacient a 1 1 & 1 0 01248477 -calorific a 1 1 & 1 0 01248605 -calorimetric a 1 2 \ + 1 1 02675738 -calumniatory a 1 1 & 1 0 01161233 -calumnious a 1 2 & + 1 0 01161233 -calvinist a 1 3 \ + ; 1 0 02952975 -calvinistic a 1 3 \ + ; 1 0 02952975 -calvinistical a 1 3 \ + ; 1 0 02952975 -calyceal a 1 3 \ + ; 1 0 02675856 -calycinal a 1 2 \ ; 1 0 02675856 -calycine a 1 2 \ ; 1 0 02675856 -calycled a 1 1 \ 1 0 02676205 -calycular a 1 2 \ + 1 0 02676046 -calyculate a 1 1 \ 1 0 02676205 -calyptrate a 2 1 \ 2 0 02676383 02676309 -cambial a 1 3 \ + ; 1 0 02676456 -cambodian a 1 2 \ + 1 0 02968828 -cambrian a 1 2 \ + 1 0 03130073 -cameroonian a 1 2 \ + 1 0 03052588 -camouflaged a 1 1 & 1 0 02517713 -camp a 1 1 & 1 0 02394487 -camp-made a 1 1 & 1 0 00673662 -campanular a 1 2 \ + 1 0 02676610 -campanulate a 1 1 \ 1 0 02676610 -campanulated a 1 1 \ 1 0 02676610 -campestral a 1 1 & 1 0 02051500 -camphoraceous a 1 2 \ + 1 0 02676825 -camphorated a 1 1 ! 1 0 00306131 -camphoric a 1 2 \ + 1 0 02676966 -campy a 1 2 & + 1 0 02394487 -campylotropous a 1 2 ! ; 1 0 01029399 -can-do a 1 2 & ; 1 0 00808614 -canadian a 1 2 \ + 1 1 02982473 -canalicular a 1 2 \ + 1 0 02677112 -canaliculate a 1 1 & 1 0 02244065 -canary a 1 2 & + 1 0 00372653 -canary-yellow a 1 1 & 1 0 00372653 -cancellate a 2 2 & ; 2 0 02006538 00327541 -cancellated a 2 2 & ; 2 0 02006538 00327541 -cancelled a 1 0 1 0 01651896 -cancellous a 1 2 & ; 1 0 00327541 -cancerous a 2 2 & + 2 0 02594940 00227301 -cancroid a 1 2 \ + 1 0 02677231 -candent a 1 1 & 1 0 00271813 -candescent a 1 1 & 1 0 00271208 -candid a 3 2 & + 3 1 00764484 01799297 01310273 -candied a 2 1 & 2 0 02337912 01071941 -candy-like a 1 1 & 1 0 00617271 -candy-scented a 1 1 & 1 0 01056086 -canescent a 2 2 & ; 2 0 00388477 00212949 -canicular a 2 2 \ + 2 0 02677549 02677332 -canine a 2 3 \ + ; 2 0 02677861 02677703 -cankerous a 1 2 & + 1 0 01175158 -canned a 2 2 & ; 2 0 01423187 01072112 -cannibalic a 1 2 & + 1 0 01263832 -cannibalistic a 1 2 \ + 1 0 03052770 -cannular a 1 2 & + 1 0 02264807 -canny a 1 1 & 1 0 00439252 -canonic a 4 3 & \ + 4 0 03001653 03001527 02295298 01690244 -canonical a 4 3 & \ + 4 0 03001653 03001527 02295298 01690244 -canonised a 1 1 & 1 0 00179190 -canonist a 1 2 \ + 1 1 03001853 -canonized a 1 1 & 1 1 00179190 -canopied a 1 1 & 1 0 01695363 -canorous a 1 1 & 1 0 01501619 -cantabile a 1 2 & ; 1 0 01501718 -cantankerous a 2 2 & ; 2 0 02327078 01135673 -canted a 1 1 & 1 0 01234527 -cantering a 1 1 < 1 1 03147793 -cantonal a 1 1 \ 1 0 03052963 -canty a 1 2 & ; 1 0 00874547 -capable a 5 5 ! & ^ = + 5 5 00306314 02361540 00308015 00051373 00510348 -capacious a 1 2 & + 1 0 01384572 -capacitive a 1 1 \ 1 0 02678001 -caparisoned a 1 1 & 1 0 00455190 -capetian a 1 2 \ + 1 0 02678087 -capillary a 2 3 & \ + 2 0 02926858 02412880 -capital a 3 3 & + ; 3 0 02342778 01852548 01467919 -capitalist a 2 3 & \ + 2 1 03000110 00297403 -capitalistic a 2 4 ! & \ + 2 1 00297403 03000110 -capitate a 1 3 & + ; 1 0 02041940 -capitular a 1 1 \ 1 0 02678218 -capitulary a 1 1 \ 1 0 02678218 -cappadocian a 1 2 \ + 1 0 02678371 -capped a 2 1 & 2 0 00655292 00654125 -capricious a 2 2 & + 2 0 01842304 00719442 -caprine a 1 1 \ 1 0 02678502 -capsular a 2 3 \ + ; 2 0 02678850 02678677 -capsulate a 1 2 & ; 1 0 01657420 -capsulated a 1 2 & ; 1 0 01657420 -captious a 1 2 & + 1 0 00647867 -captivated a 2 1 & 2 0 01465583 00865620 -captivating a 1 1 & 1 1 00166753 -captive a 2 2 & + 2 1 01065126 00163948 -caramel a 1 2 & + 1 0 00372799 -caramel_brown a 1 2 & + 1 0 00372799 -carangid a 1 3 \ + ; 1 0 02679063 -carbocyclic a 1 2 \ ; 1 0 02679202 -carbolated a 1 2 \ ; 1 0 02679352 -carbonaceous a 1 1 \ 1 0 02863724 -carbonated a 1 1 & 1 0 02276852 -carbonic a 1 2 \ + 1 0 02863724 -carboniferous a 2 2 \ + 2 0 03053044 02863724 -carbonous a 1 1 \ 1 0 02863724 -carbonyl a 1 3 \ + ; 1 0 02679468 -carbonylic a 1 3 \ + ; 1 0 02679468 -carboxyl a 1 3 \ + ; 1 0 02679653 -carboxylic a 1 3 \ + ; 1 0 02679653 -carbuncled a 2 1 & 2 0 01175298 00057490 -carbuncular a 1 2 & + 1 0 01175298 -carcinogenic a 1 2 \ + 1 0 02679858 -carcinomatous a 1 2 \ + 1 0 02680017 -card-playing a 1 1 & 1 1 01297946 -cardboard a 1 1 & 1 0 01572325 -cardiac a 1 1 \ 1 0 02843717 -cardinal a 2 2 ! & 2 1 01277097 02183611 -cardiographic a 1 1 \ 1 0 02680151 -cardiologic a 1 2 \ + 1 0 02914902 -cardiopulmonary a 1 1 \ 1 0 02680242 -cardiorespiratory a 1 1 \ 1 0 02680242 -cardiovascular a 1 1 \ 1 1 02874130 -care-laden a 1 1 & 1 0 02456875 -cared-for a 1 2 ! & 1 0 00308355 -carefree a 2 2 & + 2 1 02459465 01998260 -careful a 5 6 ! & ^ = + ; 5 3 00309021 01977488 01271961 02456698 01895099 -careless a 3 5 ! & ^ = + 3 2 00311663 00150055 01194099 -careworn a 1 1 & 1 1 02433000 -carinal a 1 1 \ 1 0 02680492 -carinate a 1 1 + 1 0 03153361 -carinated a 1 0 1 0 03153361 -caring a 1 2 & + 1 0 00506601 -carious a 1 2 & + 1 0 01175427 -carmelite a 1 2 \ + 1 0 03053199 -carminative a 1 2 & + 1 0 01165665 -carmine a 1 2 & + 1 0 00381097 -carnal a 2 3 & \ + 2 1 01778572 02976040 -carnassial a 1 1 & 1 0 00801328 -carnation a 1 2 & + 1 0 00372960 -carnivorous a 2 4 ! & \ ; 2 0 02680580 00313387 -carolean a 1 2 \ + 1 0 02680723 -caroline a 1 1 \ 1 0 02680723 -carolingian a 1 2 \ + 1 0 02680977 -carotid a 1 1 \ 1 0 02681141 -carousing a 1 1 & 1 0 00797706 -carpal a 1 2 \ + 1 0 03053336 -carpellary a 1 2 \ + 1 0 02681282 -carpellate a 1 2 ! ; 1 0 00316046 -carpetbag a 2 2 & \ 2 0 02681402 00932184 -carpetbagging a 1 1 & 1 0 00932184 -carpeted a 1 1 ! 1 1 00316274 -carpophagous a 1 1 & 1 0 00314466 -carposporic a 1 2 \ + 1 0 02681567 -carposporous a 1 2 \ + 1 0 02681681 -carroty a 1 2 \ + 1 0 03132982 -carsick a 1 2 & + 1 0 02542675 -cartesian a 1 2 \ + 1 1 03026758 -carthaginian a 1 2 \ + 1 0 03104740 -carthusian a 1 1 \ 1 0 02682039 -cartilaginous a 2 3 & \ + 2 0 02681776 02445863 -cartographic a 1 1 \ 1 0 02681881 -cartographical a 1 2 \ + 1 0 02681881 -caruncular a 1 2 \ + 1 0 02682134 -carunculate a 1 1 \ 1 0 02682298 -carunculated a 1 1 \ 1 0 02682298 -carunculous a 1 2 \ + 1 0 02682134 -carved a 1 3 ! & ; 1 1 00317008 -carved_in_stone a 1 1 & 1 0 00347880 -carvel-built a 1 3 ! & ; 1 0 00316572 -carven a 1 2 & ; 1 1 00317008 -caryophyllaceous a 1 2 \ + 1 0 02682406 -case-by-case a 1 1 & 1 0 00729246 -case-hardened a 1 1 & 1 0 01155815 -casebook a 1 2 & + 1 1 02295511 -cased a 2 1 & 2 0 02155054 00257032 -caseous a 1 1 & 1 0 01175541 -cash-and-carry a 1 1 \ 1 0 02682543 -cashable a 1 2 & + 1 0 00916965 -cashed a 1 1 & 1 0 01708563 -cassocked a 1 1 & 1 1 00455310 -cast-iron a 1 1 & 1 0 02038891 -cast-off a 1 1 & 1 0 02528206 -casteless a 1 2 & ; 1 0 02528566 -castellated a 1 1 & 1 0 01796109 -castled a 1 1 & 1 0 01796109 -castrated a 1 2 ! & 1 0 02136802 -casual a 9 2 & + 9 5 00545746 01798484 01044557 01798162 00312234 01961205 01190484 01044730 00749749 -casuistic a 2 2 \ + 2 0 03053657 03053460 -casuistical a 2 2 \ + 2 0 03053657 03053460 -cata-cornered a 1 1 & 1 0 01719507 -catabatic a 1 1 ; 1 0 00109782 -catabolic a 2 4 ! & \ + 2 0 02682699 00107984 -catachrestic a 1 2 \ + 1 0 02682863 -catachrestical a 1 2 \ + 1 0 02682863 -cataclinal a 1 2 ! ; 1 0 00108434 -cataclysmal a 1 2 & + 1 0 00587193 -cataclysmic a 1 2 & + 1 0 00587193 -catacorner a 1 1 & 1 0 01719507 -catadromous a 1 1 ! 1 0 00109382 -catalan a 2 2 \ + 2 0 03054020 03053859 -catalatic a 1 2 \ + 1 0 02683049 -catalectic a 1 2 ! + 1 0 00318082 -cataleptic a 1 2 \ + 1 0 03054216 -catalytic a 1 2 \ + 1 0 03054409 -catamenial a 1 1 + 1 0 02879273 -cataphatic a 1 1 \ 1 0 02683160 -cataphoretic a 1 2 \ + 1 0 02718845 -cataplastic a 1 2 \ + 1 0 02683315 -catapultian a 1 2 \ + 1 1 02683419 -catapultic a 1 2 \ + 1 0 02683419 -catarrhal a 1 2 \ + 1 0 02683650 -catarrhine a 1 1 ! 1 0 01408738 -catarrhinian a 1 1 + 1 0 01408738 -catastrophic a 1 1 & 1 1 01161635 -catatonic a 1 3 \ + ; 1 1 03054551 -catching a 1 2 & + 1 0 01303042 -catchpenny a 1 1 & 1 0 00934738 -catchy a 2 2 & + 2 0 00746819 00170717 -catechetic a 2 3 \ + ; 2 0 02982288 02982102 -catechetical a 1 3 \ + ; 1 0 02982102 -catechismal a 1 3 \ + ; 1 0 02981935 -catechistic a 1 2 \ + 1 0 02982288 -categorematic a 1 4 ! & + ; 1 0 02592890 -categorial a 1 2 \ + 1 0 02683869 -categoric a 2 3 & \ + 2 0 02684005 01913931 -categorical a 2 3 & \ + 2 0 02684005 01913931 -categorised a 1 1 & 1 0 00414823 -categorized a 1 1 & 1 1 00414823 -catenulate a 1 1 & 1 0 02146029 -cater-cornered a 1 1 & 1 0 01719507 -catercorner a 1 1 & 1 0 01719507 -caterpillar-tracked a 1 1 & 1 0 02453770 -cathartic a 3 3 & + ; 3 0 01165830 00854869 00638067 -cathectic a 1 3 \ + ; 1 0 02684198 -cathedral a 1 2 \ + 1 0 02684317 -cathodic a 1 2 ! \ 1 0 02626995 -catholic a 2 3 & \ + 2 1 02920951 00287128 -cationic a 1 3 ! \ + 1 0 02930387 -catkinate a 1 1 \ 1 0 02684482 -catoptric a 1 2 \ + 1 0 02684557 -catoptrical a 1 2 \ + 1 0 02684557 -cattish a 1 1 & 1 0 00225912 -catty a 1 2 & + 1 0 00225912 -catty-corner a 1 1 & 1 0 01719507 -catty-cornered a 1 1 & 1 0 01719507 -caucasian a 2 3 & \ + 2 0 02843959 00243395 -caucasic a 1 2 \ + 1 0 02843959 -caucasoid a 1 1 & 1 0 00243395 -caudal a 3 4 ! & \ + 3 0 02843816 00319965 00131863 -caudate a 2 4 ! & + ; 2 0 00319534 02167513 -caudated a 1 2 & ; 1 0 00319534 -caught_up a 1 1 & 1 1 01515525 -caulescent a 1 3 ! & ; 1 0 00321094 -cauline a 2 3 ! & ; 2 0 00321094 00318498 -caulked a 1 2 ! & 1 0 01399328 -causal a 1 2 & + 1 1 00323199 -causative a 1 3 ! & + 1 1 00322457 -causeless a 2 1 & 2 0 01559042 01339203 -caustic a 2 2 & + 2 0 01802165 00587376 -cautionary a 2 2 & + 2 0 01887638 01771124 -cautious a 2 4 ! & ^ + 2 1 00325281 01532149 -cavalier a 1 1 & 1 0 00788145 -cavernous a 2 3 & + ; 2 0 02264366 00947012 -cavitied a 1 1 & 1 0 00327690 -cc a 1 1 & 1 0 02198302 -ccc a 1 1 & 1 0 02198409 -cd a 1 1 & 1 0 02198520 -ceaseless a 1 2 & + 1 1 00595299 -cecal a 1 2 \ + 1 0 02684742 -cedar-scented a 1 1 & 1 0 01056163 -cedarn a 1 1 & 1 0 02575952 -ceilinged a 1 2 ! & 1 0 01209770 -celebrated a 2 1 & 2 0 01375831 01121402 -celebratory a 1 2 \ + 1 0 02684875 -celestial a 3 2 & \ 3 3 02685153 02684971 01179345 -celiac a 2 1 \ 2 0 03009016 03008885 -celibate a 1 2 & + 1 0 00360950 -cell-free a 1 1 & 1 1 00328270 -cell-like a 1 1 & 1 0 00327857 -cellular a 2 5 ! & \ + ; 2 0 02685299 00327031 -celluloid a 1 1 & 1 0 01572458 -cellulosid a 1 1 \ 1 0 02686322 -celtic a 1 2 \ + 1 1 02957823 -cementitious a 1 2 \ + 1 0 02686439 -cenobitic a 1 3 ! \ + 1 0 02686630 -cenobitical a 1 2 \ + 1 0 02686630 -cenogenetic a 1 4 ! \ + ; 1 0 02687191 -cenozoic a 1 1 \ 1 0 02687333 -censored a 1 2 ! & 1 0 00318942 -censorial a 1 2 \ + 1 0 02687578 -censorious a 1 2 & + 1 0 00648089 -censurable a 1 1 & 1 0 01321529 -centenarian a 1 2 & + 1 0 01645048 -centenary a 1 2 \ + 1 1 02998988 -centennial a 1 2 \ + 1 0 02998988 -center a 2 3 ! & + 2 1 00330506 02031624 -centered a 1 1 & 1 1 00330644 -centesimal a 2 2 & \ 2 0 02687727 02209423 -centigrade a 1 1 \ 1 0 02687822 -central a 2 3 ! & + 2 2 01277097 00329831 -central_american a 1 2 \ + 1 1 03004196 -centralised a 1 0 1 0 01107751 -centralising a 1 1 & 1 0 00334702 -centralist a 1 1 \ 1 0 02688016 -centralistic a 1 1 \ 1 0 02688016 -centralized a 1 1 ! 1 1 01107751 -centralizing a 1 2 ! & 1 0 00334702 -centric a 1 2 & + 1 0 00330728 -centrical a 1 2 & + 1 0 00330728 -centrifugal a 3 2 ! & 3 0 00332375 00335225 00334245 -centripetal a 3 2 ! & 3 0 00332869 00334852 00333611 -centrist a 1 2 & + 1 0 02031810 -centroidal a 1 2 \ + 1 0 02688131 -centromeric a 1 2 \ + 1 0 03139930 -centrosomic a 1 2 \ + 1 0 02688263 -centrosymmetric a 1 1 & 1 0 02373309 -cephalic a 1 2 ! \ 1 0 02844174 -cephalopod a 1 2 \ + 1 0 02688369 -cephalopodan a 1 1 \ 1 0 02688369 -ceramic a 1 2 \ + 1 1 03015441 -cercarial a 1 2 \ + 1 0 02688523 -cereal a 1 2 \ + 1 0 02688623 -cerebellar a 1 2 \ + 1 0 02688833 -cerebral a 2 2 ! \ 2 2 01927455 02688974 -cerebrospinal a 1 1 \ 1 0 02689112 -cerebrovascular a 1 1 \ 1 0 02689256 -ceremonial a 1 2 & + 1 0 01042491 -ceremonious a 2 3 & \ + 2 0 02782367 01042703 -ceric a 1 1 \ 1 0 02689542 -cerise a 1 2 & + 1 0 00381097 -cernuous a 1 2 & ; 1 0 01238486 -cerous a 1 2 \ + 1 0 02689658 -certain a 7 4 ! & ^ = 7 4 00700884 00336831 00335421 00340239 02087342 00724397 00309740 -certifiable a 2 2 & + 2 0 02075594 00342488 -certificated a 1 1 & 1 0 00342626 -certificatory a 1 2 & + 1 0 02355398 -certified a 3 3 ! & ^ 3 1 00342250 02075594 01958259 -cerulean a 1 2 & + 1 0 00370267 -ceruminous a 1 2 \ + 1 0 02689782 -cervical a 2 2 \ + 2 0 02927169 02689430 -cervine a 1 1 \ 1 0 02689889 -cesarean a 1 2 \ + 1 0 03029573 -cesarian a 1 2 \ + 1 0 03029573 -cespitose a 1 2 & ; 1 0 02253817 -cetacean a 1 2 \ + 1 0 02689973 -cetaceous a 1 2 \ + 1 0 02689973 -ceylonese a 1 1 \ 1 0 03118413 -chadian a 1 2 \ + 1 0 03054743 -chaetal a 1 2 \ + 1 0 02690153 -chaetognathan a 1 2 \ + 1 0 02690270 -chaetognathous a 1 2 \ + 1 0 02690270 -chafed a 1 1 & 1 0 01712076 -chafflike a 1 1 \ 1 0 02690429 -chaffy a 2 3 & \ + 2 0 02690429 02502468 -chagrined a 1 1 & 1 0 00531628 -chained a 1 1 & 1 0 00253196 -chainlike a 1 1 & 1 0 02146029 -chaldaean a 1 2 \ + 1 0 02690613 -chaldean a 1 2 \ + 1 0 02690613 -chaldee a 1 2 \ + 1 0 02690613 -chalky a 2 3 & \ + 2 0 02673969 00388571 -challengeable a 1 2 & + 1 0 00590564 -challenging a 3 1 & 3 1 00745642 02306598 01897106 -chalybeate a 1 1 \ 1 0 02690922 -chambered a 1 1 & 1 1 02480631 -champion a 1 1 & 1 0 00228025 -champleve a 1 1 & 1 0 00057566 -chance a 1 1 & 1 1 01798162 -chanceful a 1 1 & 1 0 02059381 -chancroidal a 1 2 \ + 1 0 02691028 -chancrous a 1 2 \ + 1 0 02691142 -chancy a 2 3 & + ; 2 0 02059381 00341655 -changeable a 4 5 ! & ^ = + 4 0 00356339 00344125 02504558 00403072 -changed a 3 3 ! & ; 3 2 00354433 00352716 01531019 -changeful a 1 4 & ^ = + 1 0 00344125 -changeless a 3 2 & + 3 0 00356648 02506029 00347400 -changing a 1 1 & 1 1 00808822 -chanted a 1 1 & 1 1 01504926 -chantlike a 1 1 & 1 1 02020609 -chaotic a 3 4 & \ + ; 3 2 01669507 02390569 02691237 -chapfallen a 1 1 & 1 0 00703454 -chapleted a 1 1 & 1 0 00654315 -chapped a 1 1 & 1 0 02240129 -characteristic a 1 4 ! & ^ + 1 1 00356926 -characterless a 1 1 & 1 0 01673590 -charcoal a 1 2 & + 1 0 00388725 -charcoal-gray a 1 1 & 1 0 00388725 -charcoal-grey a 1 1 & 1 0 00388725 -chargeable a 1 1 & 1 0 01322044 -charged a 4 2 ! & 4 2 00358132 00854989 02276660 01897224 -charismatic a 1 2 & + 1 0 00167077 -charitable a 3 5 ! & ^ \ + 3 2 02691390 00359459 01372948 -charmed a 2 1 & 2 0 01465583 00865620 -charming a 2 1 & 2 1 01807799 01576071 -charnel a 1 1 & 1 0 01625492 -chartaceous a 1 1 \ 1 0 02691531 -chartered a 1 1 ! 1 0 00360041 -chartless a 1 1 & 1 0 01377257 -chartreuse a 1 2 & + 1 0 00373067 -chary a 1 2 & + 1 0 00325619 -chasidic a 1 1 \ 1 0 02738464 -chassidic a 1 1 \ 1 0 02738464 -chaste a 3 5 ! & ^ = + 3 0 00360650 01792821 01548694 -chatoyant a 1 1 & 1 0 00403072 -chatty a 2 2 & + 2 0 02384077 00496422 -chauvinistic a 2 3 & \ + 2 0 02691680 01740358 -cheap a 4 4 ! & + ; 4 3 00934199 02393791 02346013 01113114 -cheapjack a 1 1 & 1 0 02346351 -cheating a 2 1 & 2 0 00961195 00957743 -chechen a 1 1 \ 1 0 02691839 -checked a 1 1 & 1 0 01788048 -checkered a 2 1 & 2 0 01788048 00344890 -cheeky a 1 2 & + 1 0 00204779 -cheerful a 2 5 ! & ^ = + 2 1 00362467 01664015 -cheering a 1 1 & 1 0 02081563 -cheerless a 1 4 & ^ = + 1 0 00364479 -cheery a 1 2 & + 1 1 00363938 -cheesed_off a 1 1 & 1 0 01806483 -cheeselike a 1 1 & 1 0 01153346 -cheeseparing a 1 1 & 1 0 01113225 -cheesy a 1 2 & ; 1 0 02346013 -chelate a 2 1 \ 2 0 02692105 02691944 -chelated a 1 1 \ 1 0 02692105 -cheliceral a 1 2 \ + 1 0 02692229 -chelicerate a 1 1 \ 1 0 02692229 -chelicerous a 1 2 \ + 1 0 02692378 -cheliferous a 1 1 \ 1 0 02692034 -chelonian a 1 2 \ + 1 0 02692471 -chemic a 1 2 \ + 1 0 02692624 -chemical a 2 2 \ + 2 2 02692624 02692966 -chemiluminescent a 1 2 \ + 1 0 02693278 -chemisorptive a 1 1 & 1 0 00008443 -chemoreceptive a 1 1 \ 1 0 02693440 -chemosorptive a 1 1 & 1 0 00008443 -chemotherapeutic a 1 2 \ + 1 0 02693533 -chemotherapeutical a 1 2 \ + 1 0 02693533 -chequered a 1 1 & 1 0 01788048 -cherished a 1 1 & 1 1 01462625 -cherry a 1 2 & + 1 0 00381097 -cherry-red a 1 1 & 1 0 00381097 -cherry-sized a 1 1 & 1 0 02222675 -cherty a 1 2 \ + 1 0 02693701 -cherubic a 1 1 & 1 0 01459949 -chestnut a 1 2 & + 1 1 00373209 -chestnut-brown a 1 1 & 1 0 00373381 -chestnut-colored a 1 1 & 1 0 00396721 -chestnut-coloured a 1 1 & 1 0 00396721 -chesty a 2 2 & + 2 0 02038555 01889819 -chewable a 1 1 & 1 0 02446846 -chewy a 2 2 & + 2 0 02445978 00843988 -chian a 1 2 \ + 1 0 02693802 -chiasmal a 1 3 \ + ; 1 0 02693895 -chiasmatic a 1 3 \ + ; 1 0 02693895 -chiasmic a 1 3 \ + ; 1 0 02693895 -chic a 1 2 & + 1 1 00975487 -chichi a 1 1 & 1 0 00975692 -chicken a 1 3 & + ; 1 0 00265314 -chicken-breasted a 1 1 & 1 0 02142139 -chickenhearted a 1 2 & ; 1 0 00265314 -chief a 1 1 & 1 1 01277426 -chilblained a 1 1 & 1 0 01175636 -child-centered a 1 1 & 1 0 01262128 -childbearing a 1 2 \ + 1 0 02694109 -childish a 1 2 & + 1 1 01493016 -childless a 1 2 & + 1 0 01082998 -childlike a 2 1 & 2 2 01648491 02272047 -childly a 1 2 & + 1 0 01648491 -chilean a 1 2 \ + 1 0 02965985 -chiliastic a 1 1 + 1 0 02865018 -chilling a 1 1 & 1 1 00194924 -chilly a 3 2 & + 3 1 00857206 01252566 01077263 -chimeral a 1 2 \ + 1 0 02694247 -chimeric a 1 2 \ + 1 0 02694247 -chimerical a 2 3 & \ + 2 0 02694247 01942279 -chinchy a 1 1 & 1 0 01113114 -chinese a 2 1 \ 2 1 02964782 03122400 -chinese-red a 1 1 & 1 0 00385188 -chinked a 1 1 & 1 1 01399469 -chinless a 1 1 & 1 1 01875929 -chintzy a 2 2 & ; 2 0 02346013 01113114 -chippendale a 1 1 \ 1 0 02694583 -chipper a 1 1 & 1 1 00364145 -chiromantic a 1 2 \ + 1 0 02911243 -chirpy a 2 4 & \ + ; 2 0 02694784 00363621 -chisel-like a 1 1 & 1 0 00801462 -chiseled a 1 1 & 1 1 00779819 -chitinous a 1 2 \ + 1 0 02694948 -chivalric a 1 2 & + 1 0 01729157 -chivalrous a 1 2 & + 1 1 00640106 -chlamydeous a 1 3 ! + ; 1 0 00365513 -chlamydial a 1 2 \ + 1 0 02695045 -chlorophyllose a 1 1 \ 1 0 02695229 -chlorophyllous a 1 2 \ + 1 0 02695229 -chlorotic a 1 1 \ 1 0 02695389 -chock-full a 1 1 & 1 0 01084297 -chockablock a 1 1 & 1 0 01084297 -chockful a 1 1 & 1 1 01084297 -chocolate-brown a 1 1 & 1 0 00372111 -chocolate-colored a 1 1 & 1 0 00396839 -chocolate-coloured a 1 1 & 1 0 00396839 -choice a 2 2 & + 2 1 02342899 02396484 -choke-full a 1 1 & 1 0 01084297 -choked a 1 1 & 1 1 01621268 -choky a 1 1 & 1 0 01447683 -choleraic a 1 2 \ + 1 0 02695522 -choleric a 3 2 & + 3 0 01726613 01135914 00114921 -cholinergic a 1 1 ! 1 0 00060969 -chondritic a 1 2 ! + 1 0 00365799 -choosey a 1 1 & 1 0 00984251 -choosy a 1 1 & 1 1 00984251 -chopfallen a 1 1 & 1 0 00703454 -chopped a 1 1 & 1 0 00661640 -choppy a 2 2 & + 2 0 01143750 00305464 -choragic a 1 2 \ + 1 0 02695647 -choral a 1 2 \ + 1 0 02874282 -chordal a 1 2 \ + 1 0 02695765 -chordate a 1 2 \ + 1 0 02695966 -choreographic a 1 1 \ 1 1 02938143 -choric a 1 2 \ + 1 0 02874543 -chorionic a 1 2 \ + 1 0 02874700 -christian a 2 5 ! & \ + ; 2 2 02952275 00411009 -christianly a 1 2 & + 1 0 00411215 -christless a 1 1 & 1 0 00411599 -christlike a 1 1 & 1 0 00411353 -christly a 1 2 & + 1 0 00411353 -christological a 1 2 \ + 1 0 02696090 -chromatic a 3 7 ! & ^ \ = + ; 3 0 02956623 00409750 00366691 -chromatinic a 1 3 ! \ + 1 0 02696234 -chromatographic a 1 1 \ 1 1 02987910 -chromatographical a 1 2 \ + 1 0 02987910 -chromosomal a 1 2 \ + 1 0 02956752 -chronic a 3 3 ! & ; 3 1 00045123 01438963 00489768 -chronological a 1 2 \ + 1 0 02956880 -chthonian a 1 1 & 1 0 01303946 -chthonic a 1 1 & 1 0 01303946 -chubby a 1 2 & + 1 0 00986766 -chuck-full a 1 1 & 1 0 01084297 -chuffed a 1 2 & ; 1 0 01805618 -chukker-brown a 1 1 & 1 0 00383957 -chummy a 2 3 & + ; 2 0 01075524 00452114 -chunky a 2 2 & + 2 1 02141021 02386962 -churchgoing a 1 1 & 1 1 01783434 -churchillian a 1 2 \ + 1 1 02696386 -churchly a 1 2 & + 1 0 01783522 -churlish a 2 1 & 2 0 01142595 01136127 -churned-up a 1 1 & 1 0 00087837 -churning a 2 1 & 2 2 00087837 00087597 -churrigueresco a 1 1 & 1 0 01794995 -churrigueresque a 1 1 & 1 0 01794995 -chylaceous a 1 2 \ + 1 0 02851122 -chylifactive a 1 1 \ 1 0 02851296 -chylifactory a 1 1 \ 1 0 02851296 -chyliferous a 1 1 \ 1 0 02851451 -chylific a 1 1 \ 1 0 02851296 -chylous a 1 2 \ + 1 0 02851122 -ci a 1 1 & 1 0 02196211 -cigar-shaped a 1 1 & 1 0 01810613 -cilial a 1 2 \ + 1 0 02845379 -ciliary a 3 2 \ + 3 0 02845585 02845379 02845244 -ciliate a 3 2 & \ 3 0 02845379 02845244 02246182 -ciliated a 1 1 & 1 0 02246182 -cimmerian a 1 1 & 1 0 00274373 -cinematic a 1 2 \ + 1 1 02696795 -cinerary a 1 1 \ 1 0 02951184 -cinnabar a 1 1 & 1 0 00385188 -cinnamon-colored a 1 1 & 1 0 00396958 -cinnamon-coloured a 1 1 & 1 0 00396958 -cinnamon-red a 1 1 & 1 0 00397108 -cinnamon-scented a 1 1 & 1 0 01056242 -cinnamon_colored a 1 1 & 1 0 00396958 -cinnamon_coloured a 1 1 & 1 0 00396958 -circadian a 1 1 \ 1 0 02978635 -circinate a 1 1 & 1 0 02044860 -circuitous a 2 1 & 2 0 00767349 00763013 -circular a 2 3 & ^ + 2 1 02040652 00676271 -circular-knit a 1 1 & 1 0 02254546 -circulating a 1 1 & 1 0 00666960 -circulative a 1 2 \ + 1 0 02951565 -circulatory a 2 1 \ 2 0 02951565 02951306 -circumboreal a 1 1 & 1 0 01604453 -circumferent a 1 2 & + 1 0 00449332 -circumferential a 1 2 & + 1 0 00331716 -circumlocutious a 1 2 & + 1 0 00767626 -circumlocutory a 1 1 & 1 0 00767626 -circumpolar a 2 1 & 2 0 02515808 02444375 -circumscribed a 1 1 & 1 0 02002470 -circumspect a 1 1 & 1 1 01898490 -circumstantial a 1 2 & + 1 0 01103676 -cisalpine a 1 1 & 1 0 00410268 -cislunar a 1 1 \ 1 0 02757446 -cismontane a 1 2 ! & 1 0 00410078 -cissy a 1 1 & 1 0 01476325 -citified a 1 1 & 1 0 02052603 -citric a 1 1 \ 1 0 03054978 -citrous a 2 2 \ + 2 0 03055237 03055059 -city-born a 1 1 & 1 0 02052603 -city-bred a 1 1 & 1 0 02052603 -city-like a 1 1 & 1 0 02052757 -cityfied a 1 1 & 1 0 02052603 -citywide a 1 1 & 1 0 00526696 -civic a 2 1 \ 2 1 02697329 02696920 -civil a 6 5 ! & \ = + 6 2 01518161 00642379 02697116 02696920 00642934 00412355 -civil-libertarian a 1 2 & + 1 0 00575520 -civilian a 1 3 ! & + 1 1 01517921 -civilised a 2 2 & ^ 2 0 00411886 01947741 -civilized a 2 3 ! & ^ 2 1 00411886 01947741 -cl a 1 1 & 1 0 02197364 -clad a 2 2 & ^ 2 1 00453726 02155233 -clairvoyant a 2 2 & + 2 0 02109012 01882474 -clamant a 2 1 & 2 0 01920367 00712877 -clamatorial a 1 2 \ + 1 0 02697677 -clammy a 1 2 & + 1 1 02548619 -clamorous a 1 2 & + 1 1 01920367 -clandestine a 1 1 & 1 1 01706465 -clanging a 1 1 & 1 1 01920834 -clangorous a 1 2 & + 1 0 01920834 -clanking a 1 1 & 1 1 01921011 -clannish a 2 2 & + 2 1 02111981 01858740 -clapped_out a 1 2 & ; 1 0 02581365 -clarifying a 1 1 & 1 0 01323815 -clarion a 1 1 & 1 0 01453381 -clashing a 1 1 & 1 0 00508592 -class-conscious a 1 1 & 1 0 01203703 -classic a 3 2 & ; 3 1 02295098 00413622 00413861 -classical a 5 4 ! & \ ; 5 2 00413622 02295098 02698145 02298152 00413861 -classicistic a 1 2 \ + 1 0 02919986 -classifiable a 1 1 & 1 0 01272718 -classificatory a 1 2 \ + 1 1 03018802 -classified a 2 2 ! & 2 1 00414709 00415228 -classless a 1 1 & 1 1 00715677 -classy a 1 3 & + ; 1 0 00975778 -clastic a 2 3 & + ; 2 0 01332070 00162248 -clathrate a 2 2 & ; 2 0 02006538 01657562 -clattery a 1 1 & 1 0 01921171 -clausal a 1 2 \ + 1 0 02936971 -claustrophobic a 2 1 & 2 0 00558612 00079356 -claw-shaped a 1 1 & 1 0 02146159 -clawed a 2 1 & 2 0 02489961 00145883 -clawlike a 1 1 & 1 0 02490098 -clayey a 2 1 & 2 0 00142270 00502487 -clean a 18 6 ! & ^ = + ; 18 5 00417413 01914108 01906464 01906320 01749915 00427331 00426347 00424008 02116473 01548808 01404898 01087093 00956733 00749947 00522101 00143294 00061664 00047653 -clean-burning a 1 1 & 1 0 01098678 -clean-cut a 2 1 & 2 0 02423073 00780011 -clean-handed a 1 2 & ^ 1 0 01319874 -clean-limbed a 1 1 & 1 0 02139563 -clean-living a 1 1 & 1 0 01548808 -clean-shaven a 1 1 & 1 1 02153705 -cleanable a 1 1 & 1 0 00417898 -cleanly a 1 2 & + 1 0 00417978 -cleansing a 2 1 & 2 1 02117866 02116304 -clear a 17 6 ! & ^ = + ; 17 9 00428404 00435190 01622505 00431447 01062938 02459667 01906464 00869253 00780011 00697923 00460735 01914108 01750073 01582598 01405047 01320184 00771616 -clear-cut a 3 2 & + 3 1 00429016 01290028 00780011 -clear-eyed a 1 1 & 1 0 00771803 -clear-sighted a 2 1 & 2 0 02158646 00771803 -clear-thinking a 1 1 & 1 0 00435013 -cleared a 2 3 ! & ^ 2 1 01289701 01320184 -clearheaded a 1 2 ! & 1 1 00435013 -cleavable a 1 1 & 1 0 00784922 -cleft a 1 1 & 1 0 02172255 -cleistogamic a 1 1 \ 1 0 02697781 -cleistogamous a 1 1 \ 1 0 02697781 -clement a 2 4 ! & ^ + 2 0 00438166 00437539 -clenched a 1 1 & 1 0 01447781 -clerical a 3 3 & \ + 3 2 02698031 02697911 02556229 -clever a 3 2 & + 3 2 00439252 01334958 00061885 -cliched a 1 1 & 1 0 01689442 -client-server a 1 1 \ 1 0 02885370 -cliff-hanging a 1 1 & 1 0 02405805 -climactic a 1 2 ! + 1 0 02487718 -climatic a 1 2 \ + 1 0 03055374 -climatical a 1 2 \ + 1 0 03055374 -climbable a 2 1 & 2 0 02083391 01725031 -clinched a 1 1 & 1 1 01447781 -clincher-built a 1 1 ; 1 0 00316827 -clinical a 2 3 & \ + 2 2 02885529 01615460 -clinker-built a 1 2 ! ; 1 0 00316827 -clinking a 1 1 & 1 0 02009880 -clinquant a 1 1 & 1 0 00057737 -clip-on a 1 1 & 1 0 00161878 -clipped a 2 1 & 2 0 02454885 01442974 -cliquish a 1 2 & + 1 0 01858740 -clitoral a 1 2 \ + 1 0 02840328 -clitoric a 1 2 \ + 1 0 02840328 -cloak-and-dagger a 1 1 & 1 0 01706465 -cloaked a 2 1 & 2 0 01707230 01695505 -clockwise a 1 3 ! & ^ 1 1 00441781 -cloddish a 1 1 & 1 0 00440489 -clogged a 3 1 & 3 1 02415764 01621268 00868448 -clogging a 1 1 & 1 1 01764351 -cloggy a 1 1 & 1 0 00502487 -cloisonne a 1 2 & + 1 0 00057566 -cloistered a 2 1 & 2 0 02578894 01859055 -cloistral a 1 2 & + 1 0 02578894 -clonal a 1 1 \ 1 0 02698301 -clonic a 1 3 \ + ; 1 1 02817113 -close a 15 4 ! & = + 15 7 00446921 00451510 00444519 00309945 00022219 00890622 00558738 02509484 02232739 02000298 01859368 01447937 01436567 01113225 00501004 -close-fitting a 1 1 & 1 0 01447937 -close-grained a 1 1 & 1 0 02232869 -close-hauled a 1 2 & ; 1 0 00448777 -close-knit a 1 1 & 1 0 00452407 -close-minded a 1 1 & 1 0 00287962 -close-packed a 1 1 & 1 1 00502646 -close-set a 1 1 & 1 0 00448924 -close_at_hand a 2 1 & 2 1 00448644 00448314 -close_set a 1 1 & 1 0 00448924 -close_together a 1 1 & 1 0 00448130 -closed a 9 4 ! & ^ ; 9 5 01653538 01660135 01652782 01655162 02474377 02256659 02002580 01986349 01657760 -closed-captioned a 1 2 < ; 1 0 03154986 -closed-chain a 1 1 & 1 0 00676855 -closed-circuit a 1 1 \ 1 0 02698379 -closed-door a 1 1 & 1 0 01859466 -closed-minded a 1 1 & 1 0 00287962 -closed-ring a 1 1 & 1 0 00676855 -closed_in a 1 1 & 1 0 01657760 -closefisted a 1 1 & 1 0 01113505 -closelipped a 1 1 & 1 0 00501004 -closely-held a 1 1 & 1 0 00360442 -closely_knit a 1 1 & 1 1 00452407 -closemouthed a 1 1 & 1 0 00501004 -closing a 1 2 ! & 1 1 01010025 -clothed a 2 3 ! & ^ 2 1 00453726 01695505 -clothesless a 1 1 & 1 0 00459102 -clotted a 1 1 & 1 1 02415764 -cloud-covered a 1 1 & 1 0 00461971 -clouded a 4 1 & 4 2 02457015 00461971 00436544 00430545 -cloudless a 1 2 & + 1 0 00460946 -cloudlike a 1 1 & 1 0 00462129 -cloudy a 3 4 ! & + ; 3 1 00781974 00461311 00433529 -clove-scented a 1 1 & 1 0 01056325 -cloven a 1 1 & 1 0 02480747 -cloven-footed a 1 1 \ 1 0 02698514 -cloven-hoofed a 1 1 \ 1 0 02698514 -clownish a 1 1 & 1 0 01265108 -clownlike a 1 1 & 1 0 01265108 -cloying a 1 1 & 1 0 02368566 -cloze a 1 1 \ 1 0 02698663 -club-shaped a 2 1 & 2 0 02146347 02146235 -clubable a 1 2 & ; 1 0 02257601 -clubbable a 1 2 & ; 1 0 02257601 -clubbish a 1 1 & 1 0 02257731 -clubby a 2 2 & + 2 0 02257731 01858740 -clubfooted a 1 1 & 1 0 02141209 -clueless a 1 1 & 1 0 01308736 -clumsy a 4 2 & + 4 2 01140896 01001180 02564023 02229324 -clunky a 2 2 & + 2 0 01140896 00174056 -clustered a 2 2 & ; 2 0 02253536 00467019 -cluttered a 1 1 & 1 1 02424949 -clv a 1 1 & 1 0 02197476 -clx a 1 1 & 1 0 02197595 -clxv a 1 1 & 1 0 02197708 -clxx a 1 1 & 1 0 02197828 -clxxv a 1 1 & 1 0 02197944 -clxxx a 1 1 & 1 0 02198069 -co-ed a 1 1 & 1 0 01326415 -co-occurrent a 1 2 & + 1 0 02378496 -co-ordinated a 3 1 & 3 0 01486704 01328229 00062152 -co-referent a 1 0 1 0 02704005 -coagulable a 1 1 & 1 0 02415938 -coagulate a 1 1 & 1 0 02416036 -coagulated a 2 1 & 2 0 02416036 02260382 -coal-black a 1 1 & 1 1 00388849 -coal-burning a 1 1 & 1 0 01098826 -coal-fired a 1 1 & 1 0 01098826 -coalesced a 1 1 & 1 0 02476637 -coalescent a 1 2 & + 1 0 02476870 -coalescing a 1 1 & 1 0 02476870 -coarctate a 1 1 & 1 0 01657867 -coarse a 3 5 ! & ^ = + 3 2 02230990 01950198 02346557 -coarse-furred a 1 1 & 1 0 00213071 -coarse-grained a 2 1 & 2 0 02231502 02231355 -coarse-haired a 1 1 & 1 0 00213071 -coarse-textured a 1 1 & 1 0 02243086 -coarsened a 1 1 & 1 1 02346785 -coastal a 2 4 ! & \ + 2 2 02698782 00462909 -coastwise a 1 1 & 1 0 00463162 -coated a 2 2 ! & 2 1 01699095 00455405 -coaxal a 1 1 & 1 0 00543117 -coaxial a 1 1 & 1 1 00543117 -coaxing a 1 1 & 1 1 01770177 -cobwebby a 2 2 & + 2 0 02413390 00421308 -coccal a 1 2 \ + 1 0 02698898 -coccoid a 1 1 & 1 0 02042078 -coccygeal a 1 2 \ + 1 0 02699011 -cochlear a 1 1 \ 1 0 03014655 -cock-a-hoop a 1 1 & 1 0 01890752 -cockamamie a 1 2 & ; 1 0 02571536 -cockamamy a 1 2 & ; 1 0 02571536 -cockeyed a 3 2 & ; 3 1 02312450 02570643 00798103 -cockney a 2 2 \ + 2 0 03055658 03055543 -cocksure a 1 2 & + 1 0 00339288 -cocky a 1 2 & + 1 1 00156440 -cod a 1 1 & 1 0 00136727 -codified a 1 1 & 1 0 02286790 -coeducational a 1 1 & 1 0 01326415 -coeliac a 1 1 \ 1 0 03008885 -coenobitic a 1 2 \ + 1 0 02686630 -coenobitical a 1 2 \ + 1 0 02686630 -coequal a 1 1 & 1 0 00890781 -coercive a 1 2 & + 1 0 01826327 -coetaneous a 1 1 & 1 0 02378191 -coeval a 1 2 & + 1 0 02378191 -coexistent a 1 2 & + 1 1 02378347 -coexisting a 1 1 & 1 0 02378347 -coextensive a 1 1 & 1 0 00481463 -cogent a 1 2 & + 1 0 01770392 -cogged a 1 1 & 1 0 02438749 -cogitable a 1 1 & 1 0 02418093 -cogitative a 2 3 & \ + 2 0 02898433 02419933 -cognate a 3 3 & + ; 3 1 01973969 01973823 01971846 -cognisable a 1 0 1 0 01374582 -cognisant a 1 4 & ^ = + 1 0 00190115 -cognitive a 1 2 \ + 1 0 02898584 -cognizable a 1 0 1 0 01374582 -cognizant a 1 4 & ^ = + 1 0 00190115 -cognoscible a 1 0 1 0 01374582 -coherent a 4 5 ! & ^ + ; 4 2 00464513 01925708 00328528 00053384 -cohesive a 2 2 & + 2 1 00053564 02477047 -coiled a 1 2 ! & 1 0 02317327 -coiling a 1 1 & 1 0 02317598 -coin-operated a 1 1 \ 1 0 02699121 -coincident a 2 2 & + 2 0 02378496 00561757 -coincidental a 1 1 & 1 0 02378496 -coinciding a 1 1 & 1 0 02378496 -coital a 1 2 \ + 1 0 02887741 -cold a 13 5 ! & ^ = + 13 3 01251128 01257612 01069454 02532398 01750256 01689580 01510914 01466775 01263971 00887317 00572060 00442827 00096815 -cold-blooded a 2 3 ! & ; 2 1 01263971 02532898 -cold-eyed a 1 1 & 1 0 01723648 -cold-temperate a 1 1 & 1 0 02402846 -cold_sober a 1 1 & 1 1 00799716 -coldhearted a 1 4 ! & ^ + 1 0 02533540 -coleridgean a 1 2 \ + 1 0 03029801 -coleridgian a 1 2 \ + 1 0 03029801 -colicky a 1 2 & + 1 0 01175741 -collaborative a 1 2 & + 1 0 00620208 -collagenic a 1 2 \ + 1 0 02699289 -collagenous a 1 2 \ + 1 0 02699289 -collapsable a 1 1 & 1 0 00465737 -collapsible a 1 3 ! & + 1 1 00465737 -collarless a 1 1 \ 1 0 02699451 -collateral a 4 4 ! & ^ + 4 0 01417228 02355521 01854420 01718609 -collect a 1 1 & 1 0 00136727 -collectable a 1 1 & 1 0 00136884 -collected a 2 3 ! & < 2 0 03147919 00530354 -collectible a 1 2 & + 1 0 00136884 -collective a 3 3 ! & ^ 3 1 02112701 00466808 00298293 -collectivised a 2 1 & 2 0 00467564 00298507 -collectivist a 1 2 & + 1 0 00298507 -collectivistic a 1 2 & + 1 0 00298507 -collectivized a 2 1 & 2 0 00467564 00298507 -collegial a 2 2 \ + 2 0 02699792 02699524 -collegiate a 1 1 \ 1 1 02699524 -collinear a 1 1 & 1 0 00658513 -colloidal a 1 2 \ + 1 1 02903946 -colloquial a 1 1 & 1 1 01045963 -collusive a 1 2 & + 1 0 01707084 -colombian a 1 2 \ + 1 1 02967618 -colonial a 3 4 & \ + ; 3 1 02700029 02700199 02177397 -colonic a 1 2 \ + 1 0 02700317 -colonised a 1 1 & 1 0 01311605 -colonized a 1 1 & 1 0 01311605 -colonnaded a 1 1 & 1 0 00141316 -color a 1 2 ! ; 1 1 00394135 -color-blind a 2 2 & + 2 0 02159453 00286470 -colorectal a 1 1 \ 1 0 02700434 -colored a 4 4 ! & = + 4 2 00394562 00242575 01723091 01572171 -colorfast a 1 1 & 1 0 01774376 -colorful a 3 4 ! & ^ = 3 2 00402419 00406867 00394562 -colorimetric a 1 2 \ + 1 0 02700615 -colorimetrical a 1 2 \ + 1 0 02700615 -colorless a 2 5 ! & ^ = + 2 0 00408031 00404202 -colossal a 1 2 & + 1 1 01384730 -colour a 1 1 ; 1 1 00394135 -colour-blind a 2 2 & + 2 0 02159453 00286470 -coloured a 4 2 & = 4 0 00394562 01723091 01572171 00242575 -colourful a 2 4 ! & ^ = 2 0 00406867 00402419 -colourless a 2 5 ! & ^ = + 2 0 00408031 00404202 -coltish a 1 1 & 1 0 02122132 -columbian a 1 2 \ + 1 0 03029984 -columnar a 2 2 & + 2 0 00141111 00140989 -columned a 1 3 ! & ; 1 1 00140542 -columniform a 1 1 & 1 0 00141111 -columnlike a 1 1 & 1 1 00141111 -comal a 1 3 & + ; 1 0 00213172 -comate a 2 2 & ; 2 0 00654394 00213172 -comatose a 2 3 & \ + 2 0 02844578 00572202 -comb-like a 1 1 \ 1 0 02707283 -combat-ready a 1 2 & ; 1 0 01660444 -combatant a 1 2 & + 1 1 01517632 -combative a 3 2 & + 3 0 00603804 00512769 00082766 -combed a 1 1 ! 1 0 02429066 -combinable a 1 1 & 1 1 00472694 -combinational a 1 1 & 1 0 00472694 -combinative a 2 4 ! & ^ + 2 0 00472336 01331244 -combinatorial a 2 3 & + ; 2 0 01331244 00472534 -combinatory a 3 2 & ^ 3 0 00472336 01331244 00472694 -combined a 1 2 ! & 1 1 01329830 -comburant a 1 1 & 1 0 00473502 -comburent a 1 1 & 1 0 00473502 -combustible a 1 3 ! & + 1 0 00472992 -combustive a 1 2 & + 1 0 00473502 -come-at-able a 2 2 & ; 2 0 01822153 00019505 -comely a 2 2 & + 2 0 01878870 00218440 -comestible a 1 3 & ^ + 1 0 00828779 -comet-like a 1 1 & 1 0 02299673 -cometary a 1 2 \ + 1 1 02980696 -cometic a 1 2 \ + 1 0 02980696 -comfortable a 5 6 ! & ^ = + ; 5 2 00476819 00479330 02563194 02336338 02022556 -comforted a 1 1 & 1 1 00479783 -comforting a 2 1 & 2 2 02081563 00197319 -comfortless a 1 1 & 1 0 00478590 -comfy a 1 3 & = ; 1 0 00476819 -comic a 2 4 & \ + ; 2 2 01265308 02973392 -comical a 1 2 & + 1 0 01265308 -coming a 1 1 & 1 1 01732601 -commanding a 1 1 & 1 1 01205232 -comme_il_faut a 1 1 & 1 0 01878870 -commemorating a 1 1 \ 1 0 03055809 -commemorative a 1 2 \ + 1 0 03055809 -commendable a 1 1 & 1 1 02585545 -commensal a 1 3 \ + ; 1 0 02700792 -commensurable a 1 1 & 1 0 00481592 -commensurate a 1 4 ! & ^ + 1 1 00481222 -commercial a 3 5 ! & \ = + 3 2 00483146 03137558 02346878 -commercial-grade a 1 1 & 1 0 02346878 -commercialised a 1 1 & 1 0 00483481 -commercialized a 1 1 & 1 0 00483481 -comminatory a 1 2 & + 1 0 00924635 -commiserative a 1 2 & + 1 0 02375312 -commissioned a 2 2 ! & 2 0 00485431 00178811 -committed a 2 4 ! & ^ + 2 1 00518164 00157925 -commodious a 1 4 ! & + ; 1 0 00475996 -common a 9 5 ! & ^ = + 9 6 00492677 00485711 02152473 00970610 01046226 01593079 02346557 01950198 01673815 -common-law a 1 1 & 1 0 02287175 -common_or_garden a 1 2 & ; 1 0 00970803 -commonplace a 3 2 & + 3 2 01673946 00922840 01688757 -commonsense a 1 1 & 1 1 01943746 -commonsensible a 1 1 & 1 0 01943746 -commonsensical a 1 2 & + 1 0 01943746 -communal a 2 3 & \ + 2 2 00493012 02700918 -communicable a 2 1 & 2 0 01303042 00496569 -communicational a 1 2 & + 1 1 00496670 -communicative a 2 5 ! & ^ \ + 2 1 02956371 00494907 -communicatory a 1 3 & ^ + 1 0 00494907 -communist a 1 1 \ 1 1 02874876 -communistic a 1 2 \ + 1 1 02874876 -commutable a 2 3 ! & + 2 0 00348198 00917768 -commutative a 1 3 & + ; 1 0 00728826 -comose a 2 2 & ; 2 0 00654394 00213172 -compact a 3 4 ! & ^ + 3 1 00502180 02387413 00547317 -companionable a 1 2 & + 1 0 02257856 -companionate a 1 1 & 1 0 01075742 -comparable a 2 4 ! & ^ + 2 2 00503982 02063554 -comparable_to a 1 1 & 1 1 00504431 -comparable_with a 1 1 & 1 1 00504172 -comparative a 2 3 & \ + 2 1 02990954 00006032 -compartmental a 1 2 & + 1 0 00329034 -compartmentalised a 1 1 & 1 0 00329034 -compartmentalized a 1 1 & 1 0 00329034 -compartmented a 1 2 ! & 1 0 00328798 -compassionate a 1 4 ! & ^ + 1 0 00506299 -compatible a 3 5 ! & ^ + ; 3 1 00507464 00509039 00509576 -compelling a 2 1 & 2 0 01826477 01770591 -compendious a 1 2 & + 1 0 00547317 -compensable a 1 1 & 1 0 01708663 -compensated a 1 1 & 1 0 01708898 -competent a 3 4 ! & ^ + 3 2 00510050 00051571 00512130 -competitive a 3 3 ! & + 3 3 00512487 00297755 00083003 -competitory a 1 2 & + 1 0 00512487 -complacent a 1 2 & + 1 0 00589067 -complaining a 1 2 ! & 1 0 00513799 -complaintive a 1 1 & 1 0 00513799 -complaisant a 1 2 & + 1 0 00021110 -complemental a 1 2 & + 1 0 00049016 -complementary a 2 2 & + 2 0 02381963 00049016 -complete a 5 5 ! & ^ = + 5 2 00520214 01750386 02226028 01520091 01003277 -completed a 3 2 & ; 3 1 00521329 00551950 00522240 -completing a 1 1 & 1 0 00049016 -complex a 1 5 ! & ^ = + 1 1 02176178 -compliant a 1 4 ! & ^ + 1 0 00696518 -complicated a 1 2 & + 1 1 02177584 -complimentary a 2 4 ! & ^ + 2 1 00905905 01710260 -compos_mentis a 1 1 & 1 0 02073678 -composed a 1 3 ! & ^ 1 1 00529266 -composite a 2 4 & \ + ; 2 1 02177755 02701099 -compositional a 1 1 & 1 0 01331459 -compound a 3 5 ! & ^ + ; 3 0 02171024 02177872 02177397 -compounded a 1 1 & 1 0 01330008 -comprehended a 1 1 & 1 0 01378429 -comprehendible a 1 3 & ^ + 1 0 00532892 -comprehensible a 1 4 ! & ^ + 1 0 00532892 -comprehensive a 2 5 ! & ^ = + 2 1 00525453 01863970 -compressed a 3 2 & ; 3 2 01655538 00514613 02413037 -compressible a 2 3 ! & + 2 0 00514396 01153435 -compromising a 2 2 ! & 2 1 01026262 02523867 -compulsive a 2 2 & + 2 1 01583659 00104699 -compulsory a 1 1 & 1 0 00848466 -computable a 1 1 & 1 0 00301432 -computational a 1 2 \ + 1 0 02907473 -computer_readable a 1 1 ; 1 0 02902214 -comradely a 1 2 & + 1 0 01075864 -con_brio a 1 2 & ; 1 0 02279523 -concave a 1 4 ! & ^ + 1 1 00535452 -concavo-concave a 1 1 & 1 0 00536008 -concavo-convex a 1 1 & 1 0 00536416 -concealed a 2 3 ! & ^ 2 2 02517817 02088404 -concealing a 1 1 ! 1 0 02091020 -conceited a 1 1 & 1 0 01891773 -conceivable a 1 2 & + 1 1 02418249 -concentrated a 5 3 ! & ^ 5 3 00538565 00757001 01511031 01157762 00757923 -concentric a 1 3 ! & + 1 0 00542953 -concentrical a 1 1 & 1 0 00542953 -conceptional a 1 2 & + 1 0 00012071 -conceptive a 1 2 & + 1 0 01001945 -conceptual a 1 2 & + 1 1 00012362 -conceptualistic a 1 2 \ + 1 0 02701253 -concerned a 3 3 ! & ^ 3 2 00543603 01515692 01516346 -concerted a 1 1 & 1 1 02112108 -concessive a 1 2 \ + 1 0 03056010 -conciliable a 1 1 & 1 0 01784946 -conciliative a 1 2 & + 1 0 00759551 -conciliatory a 2 3 ! & + 2 1 01026262 00759551 -concise a 1 5 ! & ^ = + 1 1 00546646 -concluded a 1 1 & 1 0 01003277 -concluding a 1 1 & 1 1 01010271 -conclusive a 1 5 ! & ^ = + 1 1 00550282 -concomitant a 1 2 & + 1 0 00122844 -concordant a 2 2 & + 2 1 00577122 00553478 -concrete a 2 5 ! & ^ = + 2 1 00013160 02260477 -concretistic a 1 2 \ + 1 1 02701377 -concupiscent a 1 2 & + 1 0 01727133 -concurrent a 1 2 & + 1 1 02378496 -concurring a 1 1 & 1 0 00553478 -condemnable a 1 1 & 1 0 02035765 -condemnatory a 1 2 & + 1 1 00924791 -condemning a 1 1 & 1 0 00924791 -condescending a 1 2 & + 1 1 02338917 -condign a 1 1 & 1 0 01371258 -conditional a 2 4 ! & ^ + 2 1 01913413 00555325 -conditioned a 2 3 ! & ; 2 0 01637032 01017600 -condolent a 1 2 & + 1 0 02375491 -conducive a 1 2 & + 1 0 00323426 -conductive a 1 3 ! & + 1 0 00557813 -condylar a 1 2 \ + 1 0 02701548 -cone-bearing a 1 1 & 1 0 00913720 -cone-shaped a 1 1 \ 1 0 02844728 -conelike a 1 1 \ 1 0 02844728 -confederate a 2 2 & + 2 1 01606942 02476485 -confederative a 1 2 & + 1 0 02476485 -confident a 3 4 ! & = + 3 1 00338817 00337172 00306909 -confidential a 4 2 & + 4 1 01859801 01859571 00452605 00415696 -confiding a 1 1 & 1 1 02462883 -configurational a 1 1 \ 1 0 02701662 -configured a 1 1 & 1 0 01670524 -confined a 3 3 ! & ^ 3 0 01356283 00558373 01065126 -confining a 2 1 & 2 1 02004023 00558738 -confirmable a 1 1 & 1 0 00859453 -confirmative a 1 2 & + 1 0 02355521 -confirmatory a 1 2 & + 1 0 02355521 -confirmed a 2 2 ! & 2 2 00347571 01634495 -confirming a 2 2 & ; 2 0 01820481 02355521 -confiscate a 1 1 & 1 0 01452385 -conflicting a 2 1 & 2 1 00578234 01662912 -confluent a 1 2 & + 1 1 00612383 -conformable a 3 1 & 3 0 01612878 00696828 00577122 -conforming a 1 2 & ; 1 0 01690448 -conformist a 2 3 ! & ; 2 0 00610057 01690448 -confounded a 1 1 & 1 0 01766133 -confounding a 1 1 & 1 0 02356579 -confrontational a 1 2 \ + 1 0 02701775 -confucian a 1 2 \ + 1 0 02924600 -confusable a 1 1 & 1 0 02072341 -confused a 5 4 ! & ^ + 5 5 01766133 00465221 01684133 01669246 00435492 -confusing a 2 1 & 2 2 01685706 00430756 -confutable a 1 1 & 1 0 00721371 -confutative a 1 2 & + 1 0 00721371 -congealed a 1 1 & 1 0 02260570 -congeneric a 1 1 \ 1 0 02989167 -congenerical a 1 1 \ 1 0 02989167 -congenerous a 1 1 \ 1 0 02989167 -congenial a 2 4 ! & ^ + 2 0 00560586 00507789 -congenital a 1 1 & 1 1 01315844 -congested a 1 1 & 1 1 01084486 -congestive a 1 2 \ + 1 1 03007354 -conglomerate a 1 2 & + 1 0 01330114 -congolese a 1 2 \ + 1 0 03056115 -congratulatory a 1 2 & + 1 1 01000093 -congregational a 2 2 \ ; 2 1 02701922 02954799 -congregationalist a 1 2 \ ; 1 0 02954799 -congressional a 1 1 \ 1 1 02981648 -congruent a 2 5 ! & ^ + ; 2 0 00562116 00561600 -congruous a 2 4 ! & ^ + 2 0 00562116 00507912 -conic a 1 2 \ + 1 0 02844728 -conical a 1 2 \ + 1 0 02844728 -coniferous a 1 2 & + 1 0 00913720 -conjectural a 1 2 & + 1 0 00861216 -conjoined a 1 1 & 1 1 02112455 -conjoint a 1 1 & 1 0 02112455 -conjugal a 1 1 \ 1 1 02872066 -conjugate a 4 2 & ; 4 0 02477211 02172377 01059252 01059058 -conjugated a 3 2 & ; 3 1 01059252 02477211 01059058 -conjunct a 3 3 ! & ; 3 0 00565799 02477335 02112108 -conjunctival a 1 2 \ + 1 0 02702099 -conjunctive a 2 3 ! & + 2 0 00563648 02112108 -connate a 2 3 ! & ; 2 0 02483540 01973969 -connatural a 2 1 & 2 0 02072537 01034153 -connected a 5 4 ! & = + 5 2 01973311 00566099 02568884 01651346 01650581 -connective a 1 2 & + 1 1 00563980 -conniving a 2 1 & 2 0 01707084 01155603 -connotational a 1 2 & + 1 0 00723395 -connotative a 1 3 ! & ^ 1 0 00723163 -connotative_of a 1 1 & 1 0 00723395 -connubial a 1 1 \ 1 0 02872066 -conquerable a 2 3 ! & ^ 2 0 00569090 02357006 -consanguine a 1 2 & + 1 0 01971846 -consanguineal a 1 1 & 1 0 01971846 -consanguineous a 1 1 & 1 0 01971846 -conscience-smitten a 1 1 & 1 0 01322236 -conscienceless a 1 1 & 1 0 02086472 -conscientious a 2 3 ! & + 2 1 00310138 02086115 -conscionable a 1 1 & 1 0 01370053 -conscious a 3 4 ! & ^ + 3 3 01337767 00570590 00190960 -consecrate a 1 2 & ^ 1 0 00573225 -consecrated a 2 3 ! & ^ 2 0 00573225 02054310 -consecutive a 3 1 & 3 1 00127543 01667729 00596511 -consensual a 1 3 & + ; 1 0 00553594 -consentaneous a 1 2 & + 1 0 00553732 -consentient a 1 1 & 1 0 00553732 -consenting a 1 1 & 1 0 02565327 -consequent a 1 2 & + 1 1 00122844 -consequential a 1 2 & + 1 0 01277753 -conservative a 5 4 ! & ^ = 5 3 00574422 02030312 01532149 00607656 00260780 -conserved a 1 1 & 1 0 00737432 -considerable a 1 3 ! & ^ 1 1 00624026 -considerate a 1 4 ! & ^ + 1 1 00638981 -considered a 1 1 & 1 0 00068180 -consistent a 4 4 ! & ^ + 4 1 00576680 01867996 00464513 01200095 -consolable a 1 2 ! + 1 0 01232204 -consolatory a 1 2 & + 1 0 00197319 -consolidated a 2 1 & 2 1 02476637 00502730 -consolidative a 2 2 & + 2 0 01331540 00334940 -consoling a 1 1 & 1 1 00197319 -consonant a 2 2 & + 2 0 01163320 00577122 -consonantal a 2 3 ! \ + 2 1 02287636 02702209 -conspecific a 1 1 \ 1 0 02989459 -conspicuous a 2 5 ! & ^ = + 2 1 00579084 02090567 -conspirative a 1 2 \ + 1 0 02919275 -conspiratorial a 1 2 \ + 1 0 02919275 -constant a 3 5 ! & ^ = + 3 2 02506029 00583239 00595299 -constipated a 1 2 ! & 1 0 00638253 -constituent a 1 2 & + 1 0 00901345 -constituted a 1 1 & 1 0 01635146 -constitutional a 4 3 ! & \ 4 0 02702332 00179925 01348528 00901345 -constitutive a 1 1 & 1 0 00901345 -constrained a 1 1 & 1 0 00073761 -constraining a 1 1 & 1 1 02004023 -constricted a 2 3 ! & ; 2 1 02405038 01448456 -constricting a 1 1 & 1 0 02562235 -constrictive a 2 1 & 2 0 02562235 02004023 -constructive a 2 4 ! & ^ + 2 1 00584820 01818077 -constructive-metabolic a 1 1 & 1 0 00107868 -consubstantial a 1 3 \ + ; 1 0 02702473 -consular a 1 2 \ + 1 0 03056304 -consultative a 1 2 & + 1 0 01304802 -consultatory a 1 2 & + 1 0 01304802 -consultive a 1 2 & + 1 0 01304802 -consumable a 1 2 & + 1 0 00932829 -consuming a 1 1 & 1 0 01511152 -consummate a 3 1 & 3 0 02226979 01750386 01520091 -consummated a 1 2 ! & 1 1 00551806 -consumptive a 2 3 ! & + 2 1 01867502 02543436 -contagious a 2 2 & + 2 0 01303298 01303042 -contained a 1 1 & 1 0 00599005 -contaminated a 2 2 ! & 2 0 01909491 01908889 -contaminating a 2 1 & 2 0 00426608 01303449 -contaminative a 1 2 & + 1 0 02114483 -contemplative a 1 2 & + 1 1 02419434 -contemporaneous a 2 2 & + 2 0 02378872 02378191 -contemporary a 3 1 & 3 3 01536094 00667079 02378872 -contemptible a 1 4 ! & ^ + 1 1 00904548 -contemptuous a 1 2 & + 1 1 01995288 -content a 1 3 & ^ + 1 0 00588797 -contented a 1 4 ! & ^ + 1 1 00588797 -contentious a 2 2 & + 2 0 00603804 00602293 -conterminous a 3 1 & 3 0 00566961 00566342 00481463 -contestable a 1 4 ! & ^ + 1 0 00590390 -contested a 1 2 ! < 1 0 03148333 -contextual a 1 2 \ + 1 0 03002190 -contiguous a 3 2 & + 3 1 00449079 00566961 00566342 -continent a 2 3 ! & + 2 0 00591817 00360950 -continent-wide a 1 1 & 1 0 01567203 -continental a 4 4 ! & \ + 4 1 02886263 02886406 02886090 01566916 -contingent a 3 2 & + 3 0 01822411 00555859 00341933 -contingent_on a 1 1 & 1 0 00555859 -contingent_upon a 1 1 & 1 0 00555859 -continual a 2 2 ! & 2 1 00592222 00595863 -continuant a 1 2 & + 1 0 01157179 -continued a 1 2 ! & 1 1 00597758 -continuing a 2 1 & 2 1 00597988 01438963 -continuous a 2 6 ! & ^ = + ; 2 2 00594413 00597424 -contorted a 1 1 & 1 0 02312719 -contraband a 1 2 & + 1 1 01402580 -contrabass a 1 1 & 1 0 01216145 -contraceptive a 1 1 & 1 0 01887819 -contraclockwise a 1 2 & ^ 1 0 00442057 -contractable a 1 1 & 1 0 01303042 -contracted a 1 2 ! & 1 0 00554478 -contractile a 1 2 & + 1 0 00554624 -contractual a 1 2 \ + 1 1 02702656 -contradictory a 4 2 & + 4 1 02382144 02356579 00578234 00508750 -contralateral a 1 1 ! 1 0 02591787 -contralto a 1 1 & 1 0 01215663 -contrapuntal a 2 2 \ ; 2 0 02855970 01544169 -contrarious a 1 1 & 1 0 02328012 -contrary a 4 2 & + 4 2 02065958 02382396 01613839 00995647 -contrary_to_fact a 1 1 & 1 0 00555709 -contrasting a 1 1 & 1 1 02066142 -contrastive a 3 3 & + ; 3 0 02382572 02066142 00564858 -contrasty a 1 3 ! + ; 1 0 01021923 -contributing a 1 1 & 1 1 00323426 -contributive a 1 2 & + 1 0 00323426 -contributory a 1 2 & + 1 1 00323426 -contrite a 1 2 & + 1 0 01743506 -contrived a 2 1 & 2 1 01797394 00073465 -controllable a 1 1 & 1 0 01474942 -controlled a 1 3 ! & ^ 1 1 00598679 -controlling a 1 1 & 1 0 00791944 -controversial a 1 3 ! & + 1 1 00601783 -contumacious a 1 2 & + 1 0 02330574 -contumelious a 1 2 & + 1 0 01995500 -convalescent a 1 2 & + 1 0 02543598 -convenient a 2 6 ! & ^ = + ; 2 1 00604617 00475996 -conventional a 7 6 ! & ^ = + ; 7 6 00605516 01690606 00610861 00607421 01980796 00611281 01042703 -conventionalised a 1 1 & 1 0 01572604 -conventionalized a 1 1 & 1 0 01572604 -conventual a 1 2 & + 1 0 02578894 -convergent a 1 4 ! & ^ + 1 0 00612114 -conversant a 1 2 & + 1 0 01307067 -conversational a 1 2 & + 1 1 01045963 -converse a 2 1 & 2 0 02382762 00201961 -converted a 1 1 & 1 0 01957177 -convertible a 3 4 ! & = + 3 0 00916706 01027988 00348537 -convex a 1 4 ! & ^ + 1 1 00537339 -convexo-concave a 1 1 & 1 0 00538017 -convexo-convex a 1 1 & 1 0 00537745 -conveyable a 1 2 & + 1 0 00093556 -convinced a 2 2 ! & 2 2 00337172 00338421 -convincible a 1 2 & + 1 0 02361848 -convincing a 1 3 ! & ^ 1 1 00614990 -convivial a 1 2 & + 1 1 02258002 -convolute a 1 2 & ; 1 0 02317800 -convoluted a 2 2 & ; 2 0 02317800 02176841 -convulsive a 2 2 & + 2 2 02303754 02511340 -cooccurring a 1 1 & 1 1 02378496 -cooked a 1 2 ! & 1 0 00615757 -cookie-cutter a 1 1 & 1 0 02063759 -cookie-sized a 1 1 & 1 0 02222773 -cool a 6 6 ! & ^ = + ; 6 2 02529945 00530772 02532200 02531422 01914250 00971660 -cool-white a 1 1 & 1 0 00387922 -coolheaded a 1 1 & 1 0 00530772 -cooperative a 3 4 ! & ^ + 3 2 02112108 00619972 00513388 -coordinate a 1 2 & + 1 1 00890874 -coordinated a 3 1 & 3 2 01328229 00062152 01486704 -coordinating a 1 2 ! ; 1 0 00552315 -coordinative a 1 1 ; 1 0 00552315 -copacetic a 1 1 & 1 0 02081672 -copasetic a 1 1 & 1 0 02081672 -copernican a 2 1 & 2 0 01277952 01119033 -copesetic a 1 1 & 1 0 02081672 -copesettic a 1 1 & 1 0 02081672 -copious a 2 2 & + 2 0 00014858 00014490 -coplanar a 1 1 & 1 0 00659181 -copper-bottomed a 1 1 & 1 0 02442604 -copper_colored a 1 1 & 1 0 00373493 -coppery a 1 2 & + 1 0 00373493 -coptic a 1 2 \ + 1 0 03056463 -copular a 1 2 \ + 1 0 02984491 -copulative a 1 3 & + ; 1 0 00563789 -copulatory a 1 2 \ + 1 0 02887741 -copyrighted a 1 2 & ; 1 0 01110470 -coquettish a 1 1 & 1 0 02131958 -coral a 1 2 & + 1 0 00373621 -coral-red a 1 1 & 1 0 00373731 -corbelled a 1 1 < 1 0 03148653 -cordate a 1 1 & 1 0 02167628 -corded a 1 1 & 1 0 02240275 -cordial a 3 2 & + 3 1 01075178 02531122 02179808 -cordiform a 1 1 & 1 0 02167628 -cordless a 1 1 \ 1 0 02703911 -coreferent a 1 2 & + 1 0 01974071 -coreferential a 1 2 \ + 1 0 02704005 -coriaceous a 1 1 & 1 0 02446070 -corinthian a 2 2 \ + 2 0 02845048 02704686 -corked a 1 1 & 1 0 01126683 -corking a 1 2 & ; 1 0 01123879 -corky a 1 2 & + 1 0 01126683 -cormose a 1 1 \ 1 0 02704120 -cormous a 1 2 \ + 1 0 02704120 -corn-fed a 2 1 & 2 0 02300413 00637172 -corneal a 1 2 \ + 1 0 02704245 -corned a 1 1 & 1 0 01072196 -corneous a 1 1 & 1 0 01151452 -cornered a 1 1 & 1 0 01064913 -cornish a 1 1 \ 1 0 02704344 -corny a 1 2 & + 1 0 01689223 -coronary a 1 2 \ + 1 0 02984607 -coroneted a 1 1 & 1 0 01591227 -corporal a 2 1 & 2 0 01778935 00630466 -corporate a 4 2 & \ 4 2 02984781 00630466 02112701 01670669 -corporatist a 1 1 \ 1 0 02984911 -corporeal a 2 5 ! & ^ = + 2 1 00629997 01778935 -corpulent a 1 2 & + 1 0 00987180 -corpuscular a 1 2 \ + 1 0 02984998 -correct a 4 5 ! & ^ = + 4 3 00631391 01879261 01879464 00633410 -correctable a 2 1 & 2 0 01759092 00635078 -corrected a 1 2 ! & 1 0 00634062 -correctional a 1 2 & + 1 0 01902703 -corrective a 2 2 & + 2 0 01300661 00232754 -correlate a 1 1 & 1 0 01974298 -correlated a 1 1 & 1 1 01974298 -correlational a 1 2 \ + 1 0 02704461 -correlative a 2 3 & + ; 2 0 01974298 01946267 -correspondent a 1 2 & + 1 0 02071973 -corresponding a 3 1 & 3 3 01974451 02072660 02063554 -corrigible a 1 3 ! & + 1 0 00634862 -corroborant a 1 2 & ; 1 0 01357206 -corroborative a 1 2 & + 1 0 02355521 -corroboratory a 1 2 & + 1 0 02355521 -corroded a 1 1 & 1 0 02275803 -corrosion-resistant a 1 1 & 1 0 01775034 -corrosive a 2 2 & + 2 1 00587376 02079732 -corrugated a 1 1 & 1 1 02244198 -corrupt a 4 5 ! & ^ = + 4 1 00620731 02319129 01752792 01070716 -corrupted a 2 1 & 2 0 01752792 00621100 -corruptible a 1 2 & + 1 0 00621207 -corrupting a 3 1 & 3 0 02097796 01611490 01303449 -corruptive a 1 2 & + 1 0 01132366 -corsican a 1 2 \ + 1 0 03025252 -cortical a 1 2 \ + 1 1 02974979 -corticifugal a 1 1 & 1 0 00334379 -corticipetal a 1 1 & 1 0 00333824 -cortico-hypothalamic a 1 1 \ 1 1 02982840 -corticoafferent a 1 1 & 1 0 00333824 -corticoefferent a 1 1 & 1 0 00334379 -corticofugal a 1 1 & 1 1 00334379 -coruscant a 1 2 & + 1 0 00279618 -corvine a 1 1 \ 1 0 02845158 -corymbose a 1 1 \ 1 0 02704611 -coseismal a 1 1 & 1 0 02292303 -coseismic a 1 1 & 1 0 02292303 -cosher a 1 2 & ; 1 0 00427644 -cosignatory a 1 1 & 1 0 02112891 -cosmetic a 2 1 & 2 0 01091234 00070111 -cosmic a 2 3 & \ + 2 1 02702807 01385663 -cosmogenic a 1 1 \ 1 0 02703438 -cosmogonic a 1 2 \ + 1 0 02703438 -cosmogonical a 1 2 \ + 1 0 02703438 -cosmologic a 2 2 \ + 2 0 02703438 02703001 -cosmological a 2 2 \ + 2 0 02703438 02703001 -cosmopolitan a 3 3 ! & ; 3 0 01106614 00635955 00527188 -cost-effective a 1 1 & 1 0 00840103 -cost-efficient a 1 1 & 1 0 00840103 -cost-plus a 1 1 & 1 1 00740767 -costa_rican a 1 2 \ + 1 0 03056693 -costal a 1 3 \ + ; 1 0 02704844 -costate a 2 2 & ; 2 0 02240379 02021664 -costive a 1 1 ! 1 0 00637751 -costless a 1 1 & 1 0 01710260 -costly a 2 2 & + 2 2 00933941 00933599 -costumed a 1 1 & 1 0 00455485 -cosy a 1 2 & + 1 0 00477284 -coterminous a 1 1 & 1 0 00481463 -cottony a 1 2 & + 1 0 01153595 -cottony-white a 1 1 & 1 0 00389035 -cotyloid a 1 1 & 1 0 00535844 -cotyloidal a 1 1 & 1 0 00535844 -couchant a 1 2 & ; 1 0 01238773 -countable a 1 2 & + 1 0 00301589 -counter a 1 1 & 1 1 01818680 -counteractive a 1 2 & + 1 0 00042837 -counterbalanced a 1 1 & 1 1 00893878 -counterclockwise a 1 3 ! & ^ 1 0 00442057 -counterfactual a 1 2 & + 1 0 00555709 -counterfeit a 1 3 ! & ^ 1 0 01116380 -counterinsurgent a 1 2 \ + 1 0 02845704 -counterintuitive a 1 1 & 1 0 01944904 -counterpoised a 1 1 & 1 0 00893878 -counterproductive a 1 1 & 1 0 01161877 -counterrevolutionary a 2 3 ! \ + 2 0 02845871 02015403 -countertenor a 1 1 & 1 0 01213961 -counterterror a 1 1 \ 1 0 02845996 -counterterrorist a 1 1 \ 1 0 02845996 -countless a 1 2 & + 1 1 00301951 -countrified a 1 1 & 1 0 02051616 -country-bred a 1 1 & 1 0 02051788 -country-style a 1 1 & 1 0 02051881 -countryfied a 1 1 & 1 0 02051616 -countrywide a 1 1 & 1 0 00526984 -countywide a 1 1 & 1 0 00526832 -coupled a 2 1 & 2 0 02477211 00567161 -courageous a 1 4 & ^ = + 1 1 00262792 -court-ordered a 1 1 & 1 0 01400876 -courteous a 2 4 ! & ^ = 2 1 00641460 00639842 -courtly a 1 2 & + 1 0 00751838 -cousinly a 1 2 ! + 1 0 00453529 -couth a 1 1 & 1 0 01948014 -couthie a 1 2 & ; 1 0 01076024 -couthy a 1 2 & ; 1 0 01076024 -covalent a 1 2 \ + 1 0 02705254 -covariant a 1 2 & + 1 0 02504830 -covered a 1 2 ! & 1 1 01694223 -covert a 2 5 ! & ^ + ; 2 0 01705655 01885614 -coveted a 1 1 & 1 0 00733297 -covetous a 2 2 & + 2 0 00888765 00029933 -cowardly a 1 5 ! & ^ = + 1 1 00264776 -cowl-shaped a 1 1 & 1 0 02146481 -cowled a 1 1 & 1 1 00455605 -coy a 3 2 & + 3 0 01538118 00701894 00252310 -cozy a 3 2 & + 3 1 00477284 01076145 00452773 -crabbed a 1 2 & + 1 0 01136248 -crabby a 1 2 & + 1 0 01136248 -crabwise a 1 1 & 1 0 01719779 -crack a 1 2 & ; 1 1 02341864 -crackbrained a 1 1 & 1 0 02075737 -cracked a 3 1 & 3 1 02240129 02239479 02074929 -cracker-barrel a 1 1 & 1 0 02052005 -crackers a 1 1 & 1 0 02074929 -cracking a 1 2 & ; 1 0 01123879 -crackle a 1 1 & 1 0 01795460 -crafty a 1 2 & + 1 1 00148078 -cragfast a 1 1 & 1 0 00161170 -cragged a 1 1 & 1 0 02240490 -craggy a 1 1 & 1 1 02240490 -cram_full a 1 1 & 1 0 01084297 -cramped a 1 1 & 1 0 00476663 -cranial a 1 2 \ + 1 0 02844273 -craniometric a 1 2 \ + 1 0 02844419 -craniometrical a 1 2 \ + 1 0 02844419 -crank a 1 2 & ; 1 0 02292421 -cranky a 2 3 & + ; 2 1 02292421 01136541 -crannied a 1 1 ! 1 0 00466577 -crappy a 1 3 & + ; 1 0 01127782 -crapulent a 1 2 & + 1 0 00010537 -crapulous a 2 2 & + 2 0 00010537 00010385 -crashing a 1 1 & 1 0 01520655 -crass a 1 2 & + 1 0 01950711 -craved a 1 1 & 1 1 02527220 -craven a 1 2 & + 1 1 00265496 -crazed a 1 1 & 1 1 02075847 -crazy a 5 3 & + ; 5 3 02075321 01836766 00919984 00967897 00886448 -creaky a 3 2 & + 3 0 02581530 01921335 01173795 -cream-colored a 1 1 & 1 0 00397191 -creamy a 2 2 & + 2 1 00373811 02416285 -creamy-colored a 1 1 & 1 0 00397191 -creamy-white a 1 1 & 1 0 00397191 -creamy-yellow a 1 1 & 1 0 00373915 -crease-resistant a 1 1 \ 1 0 03056871 -creaseless a 1 1 & 1 0 02237303 -creaseproof a 1 1 \ 1 0 03056871 -creative a 2 5 ! & ^ = + 2 2 00643250 00585202 -credal a 1 2 \ + 1 0 03057075 -credentialled a 1 1 & 1 0 00342755 -credible a 3 5 ! & ^ = + 3 2 00644839 00646691 00615191 -creditable a 1 1 & 1 1 02585919 -credited a 1 1 & 1 0 00172172 -creditworthy a 1 2 & + 1 0 02465350 -credulous a 2 4 ! & ^ + 2 0 00646413 02272305 -creedal a 1 2 \ + 1 1 03057075 -creepy a 2 2 & + 2 0 01625760 00195191 -creepy-crawly a 1 1 & 1 0 00195191 -crenate a 1 1 & 1 0 02246296 -crenated a 1 1 & 1 0 02246296 -crenulate a 1 1 & 1 0 02246410 -crenulated a 1 1 & 1 0 02246410 -creole a 2 1 \ 2 0 03057413 03057253 -crepuscular a 1 2 & + 1 0 00274551 -crescendo a 1 2 & + 1 1 02537946 -crescent a 1 2 & + 1 0 02045473 -crescent-shaped a 1 1 & 1 0 02045473 -cress_green a 1 1 & 1 0 00374001 -cresson a 1 1 & 1 0 00374001 -crested a 3 2 & ; 3 1 00058280 00057992 00057881 -crestfallen a 1 1 & 1 0 00703454 -cretaceous a 2 2 \ + 2 0 03057732 03057591 -cretinous a 1 2 & + 1 0 01841179 -criminal a 3 2 & + 3 2 02035765 01322323 01402763 -criminative a 1 2 & + 1 0 00924952 -criminatory a 1 2 & + 1 0 00924952 -criminological a 1 2 \ + 1 0 02919863 -crimson a 3 2 & + 3 2 00381097 00248560 00395626 -crimson-magenta a 1 1 & 1 0 00374214 -crimson-purple a 1 1 & 1 0 00374303 -crimson-yellow a 1 1 & 1 0 00374390 -cringing a 1 1 & 1 0 00789871 -crinkled a 1 1 & 1 0 00911762 -crinkly a 1 2 & + 1 0 00911762 -crinoid a 1 2 \ + 1 0 02842320 -crippled a 1 1 & 1 1 01018788 -crippling a 1 1 & 1 1 01168166 -crisp a 6 2 & + 6 1 00780352 02446931 01252714 01068104 01030372 00547641 -crispate a 1 1 & 1 0 02246539 -crispy a 1 2 & + 1 0 02446931 -crisscross a 1 1 & 1 0 02006700 -crisscrossed a 1 1 & 1 1 02006700 -criterial a 1 2 & + 1 0 02295710 -criterional a 1 2 & + 1 0 02295710 -critical a 7 7 ! & ^ \ = + ; 7 6 00647542 00651935 00649586 00903894 00656132 00650577 02830645 -croaky a 1 2 & + 1 0 00299313 -croatian a 1 2 \ + 1 0 02964107 -crocked a 1 2 & ; 1 1 00798103 -crocketed a 1 1 & 1 1 00058379 -cromwellian a 1 2 \ + 1 0 03030235 -crookback a 1 2 & + 1 0 01019000 -crookbacked a 1 1 & 1 0 01019000 -crooked a 4 5 ! & ^ = + 4 1 02311544 02319129 01961048 01239199 -cropped a 1 1 & 1 0 01831679 -cross a 2 2 & + 2 2 01445917 01136248 -cross-banded a 1 1 & 1 0 01788169 -cross-cultural a 1 1 \ 1 0 02872908 -cross-eyed a 1 2 ! & 1 0 00653514 -cross-grained a 2 1 & 2 0 02328012 00911935 -cross-linguistic a 1 1 \ 1 0 02843095 -cross-modal a 1 1 \ 1 0 02976164 -cross-ply a 1 1 \ 1 0 02705409 -cross-pollinating a 1 1 \ 1 0 02705572 -cross-section a 1 1 & 1 1 01446240 -cross-sectional a 2 3 & \ + 2 1 02943631 01446240 -cross-sentential a 1 1 \ 1 0 02991962 -cross-shaped a 1 1 & 1 0 02146557 -cross-town a 1 1 & 1 0 00652893 -crossbred a 1 4 ! & ^ = 1 0 01904156 -crossed a 2 2 ! & 2 1 00652692 00653295 -crosshatched a 1 1 & 1 0 00277749 -crosstown a 1 1 & 1 0 00652893 -crosswise a 2 2 ! & 2 0 01445705 01232917 -crotchety a 1 2 & + 1 1 01135673 -croupy a 1 2 \ + 1 0 02705692 -crow-sized a 1 1 & 1 0 02222871 -crowded a 1 2 ! & 1 1 00559690 -crowing a 1 1 & 1 0 01890752 -crowned a 3 3 ! & ; 3 1 00655136 01381777 00653822 -crowning a 2 1 & 2 1 01578683 02440292 -crownless a 1 1 & 1 0 00654829 -crucial a 3 4 ! & ^ + 3 2 00655779 01487943 01276150 -cruciate a 1 1 & 1 0 02372434 -cruciferous a 1 3 \ + ; 1 0 02937720 -cruciform a 1 1 & 1 0 02372434 -cruddy a 1 1 & 1 0 00425313 -crude a 6 2 & + 6 2 02229584 00683531 01953467 00818175 00556881 00417204 -cruel a 1 2 & + 1 1 01263013 -crumbly a 1 2 & + 1 0 00708738 -crummy a 1 2 & ; 1 1 02346013 -crumpled a 1 1 & 1 1 00680005 -crural a 1 2 \ + 1 0 02705809 -crushed a 2 1 & 2 2 02240668 01893303 -crushing a 1 1 & 1 1 00587697 -crustacean a 1 1 \ 1 0 02706160 -crustaceous a 2 2 \ + 2 0 02706160 02706051 -crustal a 1 1 \ 1 0 02705928 -crusted a 1 1 & 1 1 01695749 -crustlike a 1 1 & 1 0 01695749 -crustose a 1 1 \ 1 0 02706305 -crusty a 2 2 & + 2 0 01695749 01137000 -crying a 2 1 & 2 0 00712877 00580039 -cryogenic a 1 2 \ + 1 0 02706480 -cryonic a 1 2 \ + 1 0 02706593 -cryptanalytic a 1 2 \ + 1 0 02706691 -cryptic a 3 1 & 3 1 00939444 00899738 00547930 -cryptical a 2 1 & 2 0 00939444 00899738 -cryptobiotic a 1 2 \ + 1 0 02707164 -cryptogamic a 1 2 \ + 1 0 02707008 -cryptogamous a 1 2 \ + 1 0 02707008 -cryptographic a 1 1 \ 1 0 02706691 -cryptographical a 1 2 \ + 1 0 02706691 -cryptologic a 1 2 \ + 1 0 02706691 -cryptological a 1 2 \ + 1 0 02706691 -crystal_clear a 2 2 & ; 2 0 00431774 00429355 -crystalised a 2 1 & 2 0 01071941 00269063 -crystalized a 1 1 & 1 0 01071941 -crystalline a 3 2 ! & 3 0 00268869 00780575 00431774 -crystallised a 1 0 1 0 00656862 -crystallized a 2 2 ! & 2 0 00656862 00269063 -ctenoid a 1 1 \ 1 0 02707283 -cuban a 1 2 \ + 1 1 02969591 -cube-shaped a 1 1 & 1 0 00657804 -cubelike a 1 1 & 1 0 00657804 -cubic a 1 4 ! & = + 1 0 00657198 -cubical a 1 2 & + 1 0 00657804 -cubiform a 1 1 & 1 0 00657804 -cubist a 1 1 \ 1 1 03021194 -cubistic a 1 2 \ + 1 0 03021194 -cubital a 1 2 \ + 1 0 02707429 -cuboid a 1 1 & 1 0 00657804 -cuboidal a 1 2 & + 1 0 00657804 -cucumber-shaped a 1 1 & 1 0 02050368 -cucurbitaceous a 1 2 \ + 1 0 02707528 -cuddlesome a 1 1 & 1 0 01460266 -cuddly a 1 2 & + 1 0 01460266 -culinary a 1 1 \ 1 0 02707659 -culpable a 1 2 & + 1 0 01321529 -cultivable a 1 1 & 1 0 01865807 -cultivatable a 1 1 & 1 0 01865807 -cultivated a 3 2 ! & 3 0 01833643 02388596 01947741 -cultural a 4 3 & \ + 4 3 02898922 02248693 02872501 02872362 -cultured a 1 1 & 1 1 01947741 -cum_laude a 1 1 & 1 0 02586089 -cumbersome a 2 2 & + 2 1 02564330 01001180 -cumbrous a 1 1 & 1 0 02564330 -cumulative a 1 2 & + 1 1 00048460 -cumuliform a 1 1 & 1 0 02042183 -cumulous a 1 2 & + 1 0 00539207 -cuneal a 1 0 1 0 03144955 -cuneate a 1 1 & 1 0 02167740 -cuneiform a 2 2 \ ; 2 0 03144955 02707750 -cunning a 3 1 & 3 0 00167278 00148078 00061885 -cuplike a 1 1 & 1 0 00536572 -cupric a 1 2 \ + 1 0 02707889 -cuprous a 1 1 \ 1 0 02707889 -cupular a 1 2 & + 1 0 00536655 -cupulate a 1 1 & 1 0 00536655 -curable a 2 3 ! & + 2 0 00994410 01521776 -curative a 1 2 & + 1 0 01165943 -curatorial a 1 2 \ + 1 0 02990154 -curdled a 1 1 & 1 0 02416036 -cured a 6 1 & 6 0 02541012 01951943 01495066 01072297 01072196 01071794 -curious a 3 4 ! & ^ + 3 2 00968010 00664449 01342572 -curled a 1 1 & 1 0 01030289 -curling a 1 1 & 1 0 01030289 -curly a 1 4 ! & = + 1 1 01030022 -curly-coated a 1 1 & 1 0 00213387 -curly-grained a 1 1 & 1 0 00911935 -curly-haired a 1 1 & 1 0 00213387 -curly-leafed a 1 1 & 1 0 01701134 -curly-leaved a 1 1 & 1 0 01701134 -curmudgeonly a 1 2 & + 1 0 01137000 -current a 1 5 ! & ^ = + 1 1 00666058 -curricular a 1 2 \ + 1 1 02708020 -currish a 2 1 & 2 0 01590044 01137289 -cursed a 2 3 ! & ; 2 1 00669478 01451225 -cursed_with a 1 1 & 1 0 00670418 -cursive a 1 1 & 1 0 02285035 -cursorial a 1 1 ! 1 0 02590519 -cursory a 1 1 & 1 1 00312234 -curst a 1 1 & 1 0 00669478 -curt a 2 2 & + 2 0 00640660 00547641 -curtained a 1 2 ! & 1 1 00671831 -curtainless a 1 1 ! 1 0 00672079 -curtal a 1 2 & ; 1 0 01436671 -curvaceous a 1 2 & + 1 0 02138989 -curved a 1 2 ! & 1 1 02315002 -curvey a 1 2 & + 1 0 02316071 -curvilineal a 1 1 & 1 0 02315648 -curvilinear a 1 1 & 1 0 02315648 -curving a 1 1 & 1 1 02315002 -curvy a 2 2 & + 2 0 02316071 02138989 -cushioned a 1 1 & 1 0 01153703 -cushiony a 1 2 & + 1 0 01153703 -cushy a 1 2 & ; 1 0 00750054 -cuspate a 1 1 & 1 0 02048626 -cuspated a 1 1 & 1 0 02048626 -cusped a 1 1 & 1 0 02048626 -cuspidal a 1 2 & + 1 0 02048626 -cuspidate a 1 1 & 1 0 02048626 -cuspidated a 1 1 & 1 0 02048626 -cussed a 1 2 & + 1 0 01957712 -custard-like a 1 1 \ 1 0 02708140 -custodial a 1 2 & + 1 1 01888017 -custom a 1 1 & 1 0 00672226 -custom-built a 1 1 & 1 0 00672513 -custom-made a 1 2 ! & 1 0 00672226 -customary a 2 2 & + 2 2 00606079 00489491 -cut a 9 3 ! & ; 9 3 00661278 00663267 00004615 02454750 01566027 00662958 02137070 00882742 00756327 -cut-and-dried a 1 1 & 1 0 01674134 -cut-and-dry a 1 1 & 1 0 01674134 -cut-price a 1 1 & 1 0 00934554 -cut-rate a 1 1 & 1 0 00934554 -cut_off a 1 1 & 1 1 00662318 -cut_out a 1 1 & 1 0 00663468 -cut_up a 1 1 & 1 0 00661819 -cutaneal a 1 2 \ + 1 0 02875707 -cutaneous a 1 1 \ 1 0 02875707 -cute a 2 2 & + 2 2 00167278 00148642 -cuticular a 1 2 \ + 1 0 02876088 -cuttable a 1 1 & 1 0 02446846 -cutthroat a 1 1 & 1 0 01507808 -cutting a 3 1 & 3 0 01374004 01252399 00803432 -cutting-edge a 1 1 & 1 0 00972642 -cv a 1 1 & 1 0 02196333 -cx a 1 1 & 1 0 02196439 -cxl a 1 1 & 1 0 02197130 -cxlv a 1 1 & 1 0 02197244 -cxv a 1 1 & 1 0 02196543 -cxx a 1 1 & 1 0 02196657 -cxxv a 1 1 & 1 0 02196769 -cxxx a 1 1 & 1 0 02196891 -cxxxv a 1 1 & 1 0 02197007 -cyan a 1 2 & + 1 0 00371163 -cyanobacterial a 1 2 \ + 1 0 02833979 -cyanogenetic a 1 2 & + 1 0 02449775 -cyanogenic a 1 2 & + 1 0 02449775 -cyanophyte a 1 1 \ 1 0 02833979 -cybernetic a 1 2 \ + 1 0 03057807 -cyclic a 5 6 ! & \ = + ; 5 0 02708232 00677545 00676555 00675701 01967803 -cyclical a 1 3 & = + 1 0 00675701 -cycloid a 1 1 & 1 0 02045620 -cycloidal a 1 2 & + 1 0 02045620 -cyclonal a 2 3 \ + ; 2 0 03058223 03057949 -cyclonic a 2 3 \ + ; 2 0 03058223 03057949 -cyclonical a 2 3 \ + ; 2 0 03058223 03057949 -cyclopean a 1 2 \ + 1 0 03058501 -cyclothymic a 1 2 \ + 1 0 03058635 -cylindric a 1 2 & + 1 0 02045723 -cylindrical a 1 2 & + 1 1 02045723 -cylindrical-stemmed a 1 1 & 1 0 00321444 -cymose a 1 2 & ; 1 0 00741240 -cynical a 1 2 & + 1 1 02463582 -cyprian a 2 3 & \ + 2 0 03058754 00361720 -cyprinid a 1 2 \ + 1 0 02846168 -cyprinoid a 1 1 \ 1 0 02846168 -cypriot a 1 2 \ + 1 0 03058754 -cypriote a 1 2 \ + 1 0 03058754 -cyrillic a 1 2 \ + 1 0 03059033 -cystic a 2 2 \ + 2 0 02709299 02709190 -cytoarchitectonic a 1 2 \ + 1 0 02708334 -cytoarchitectural a 1 2 \ + 1 0 02708334 -cytogenetic a 1 2 \ + 1 0 02709441 -cytogenetical a 1 2 \ + 1 0 02709441 -cytokinetic a 1 1 \ 1 0 02709599 -cytologic a 1 2 \ + 1 0 02709752 -cytological a 1 2 \ + 1 0 02709752 -cytolytic a 1 2 \ + 1 0 02708506 -cytomegalic a 1 1 & 1 0 01175939 -cytopathogenic a 1 1 & 1 0 01168315 -cytophotometric a 1 1 \ 1 0 02708649 -cytoplasmatic a 1 2 \ + 1 0 02708776 -cytoplasmic a 1 2 \ + 1 0 02708776 -cytoplastic a 1 2 \ + 1 0 02708931 -cytotoxic a 1 2 \ + 1 0 02709917 -czarist a 1 1 \ 1 0 02710043 -czaristic a 1 2 \ + 1 0 02710043 -czech a 1 2 \ + 1 0 02961688 -czechoslovakian a 1 2 \ + 1 0 02961688 -d a 1 1 & 1 0 02198631 -d.o.a. a 1 1 & 1 0 00096913 -dabbled a 1 1 & 1 1 01695891 -dacitic a 1 2 \ + 1 0 03059198 -dactylic a 1 3 \ + ; 1 0 03059340 -daedal a 1 1 & 1 0 02178116 -daft a 1 2 & + 1 0 02074929 -dagger-like a 1 1 & 1 0 00801539 -daily a 2 2 & + 2 0 01968165 01044557 -dainty a 4 2 & + 4 2 01948092 00706311 02396578 00984333 -daisylike a 1 1 \ 1 0 03059477 -dalmatian a 1 2 \ + 1 0 03059551 -damaged a 2 3 ! & ^ 2 0 00679147 01984252 -damaging a 2 1 & 2 1 01161984 00587890 -damascene a 2 3 & \ + 2 0 03059688 01795610 -damask a 1 2 & + 1 0 01795799 -damn a 2 1 & 2 2 00670530 00669942 -damnable a 1 1 & 1 0 00670635 -damnatory a 1 2 & + 1 0 00925177 -damned a 2 3 & + ; 2 2 00669942 01451225 -damning a 1 1 & 1 0 00925177 -damp a 1 2 & + 1 1 02548820 -dampish a 1 1 & 1 0 02548820 -danceable a 1 1 & 1 0 02019805 -dandified a 1 1 & 1 0 00849912 -dandy a 1 2 & ; 1 0 01123879 -dandyish a 1 1 & 1 0 00849912 -dangerous a 2 4 ! & ^ + 2 2 02058794 00651039 -danish a 1 2 \ + 1 1 02960338 -dank a 1 2 & + 1 1 02548619 -dantean a 1 2 \ + 1 0 03030364 -dantesque a 1 1 \ 1 0 03030364 -dapper a 1 2 & + 1 1 00971933 -dappled a 1 1 & 1 1 01788273 -daredevil a 1 2 & + 1 0 00250483 -daring a 2 1 & 2 1 00066146 01686906 -dark a 11 5 ! & ^ = + 11 4 00273082 00409440 00245200 01131935 02088883 01137378 00884501 00534250 00364881 00242575 00036763 -dark-blue a 1 1 & 1 1 00374477 -dark-brown a 1 1 & 1 1 00372111 -dark-coated a 1 1 & 1 0 00213516 -dark-colored a 1 1 & 1 0 00397314 -dark-coloured a 1 1 & 1 0 00397314 -dark-fruited a 1 1 & 1 0 01081263 -dark-gray a 1 1 & 1 0 00390725 -dark-green a 1 1 & 1 1 00375969 -dark-grey a 1 1 & 1 0 00390725 -dark-haired a 2 1 & 2 1 00245319 00213516 -dark-skinned a 2 2 & ; 2 1 00242575 00245458 -dark-spotted a 1 1 & 1 0 01788369 -darkened a 2 1 & 2 0 01645152 00274698 -darkening a 1 1 & 1 1 00274833 -darkish a 1 1 & 1 0 00409668 -darkling a 2 2 & ; 2 0 00275106 00274971 -darling a 1 2 & + 1 1 01462324 -darned a 1 1 & 1 1 00669942 -darwinian a 1 2 \ + 1 0 03013550 -dashed a 1 1 & 1 0 00290483 -dashing a 2 1 & 2 1 02279622 00971933 -dastard a 1 2 & + 1 0 00265765 -dastardly a 1 2 & + 1 0 00265765 -data-based a 1 1 & 1 0 00859949 -datable a 1 1 ! 1 0 00681409 -dateable a 1 0 1 0 00681409 -dated a 1 1 & 1 1 00974404 -dateless a 4 1 & 4 0 01007947 00681777 00681673 00353431 -daughterly a 1 2 & + 1 0 01722846 -daunted a 1 1 & 1 0 00532147 -daunting a 1 1 & 1 0 00867520 -dauntless a 1 2 & + 1 1 00250119 -day-after-day a 1 1 & 1 0 01968165 -day-and-night a 1 1 & 1 0 00595147 -day-by-day a 1 1 & 1 0 01968165 -day-old a 1 1 & 1 0 01069607 -day-to-day a 1 1 & 1 0 01968165 -daylong a 1 1 & 1 0 01439072 -dazed a 2 1 & 2 2 00436645 00875962 -dazzled a 2 1 & 2 0 02159612 00436920 -dazzling a 2 1 & 2 1 01283787 00280844 -de-iodinating a 1 2 ! ; 1 1 01232105 -de_facto a 1 2 ! ^ 1 0 00693743 -de_jure a 1 1 ! 1 0 00693961 -de_luxe a 1 1 & 1 0 00850053 -de_rigueur a 1 1 & 1 0 00848679 -dead a 17 6 ! & ^ = + ; 17 5 00095280 00099874 02432154 01838151 00041202 02107386 02105603 02011445 01872265 01241248 00929443 00845737 00833878 00668919 00522349 00359260 00036879 -dead-end a 1 1 & 1 0 00037985 -dead-on a 1 2 & ; 1 0 00022437 -dead_on_target a 1 1 & 1 0 00023120 -dead_set a 1 1 & 1 0 01990172 -deadened a 2 1 & 2 2 02105603 00804106 -deadening a 1 1 & 1 0 01345307 -deadlocked a 1 1 & 1 0 01621424 -deadly a 6 3 & + ; 6 2 00993667 00993885 02449952 01721691 01611329 00045888 -deadpan a 1 1 & 1 0 00501313 -deaf a 2 3 ! & + 2 1 00681930 01194328 -deaf-and-dumb a 1 1 & 1 0 00682168 -deaf-mute a 1 2 & + 1 0 00682168 -deaf_as_a_post a 1 1 & 1 0 00682521 -deafened a 1 1 & 1 0 00682329 -deafening a 1 1 & 1 1 01453467 -dealt_out a 1 1 & 1 0 00540236 -dear a 4 2 & + 4 2 01462324 00452883 02179968 00933599 -dearly-won a 1 1 & 1 0 00933941 -deathless a 1 1 & 1 0 01558194 -deathlike a 1 1 & 1 1 00097022 -deathly a 2 2 & + 2 1 00097022 00993667 -debased a 3 1 & 3 0 01908539 01212732 00621100 -debasing a 1 1 & 1 0 01228050 -debatable a 3 2 & + 3 0 01916784 00602117 00590669 -debauched a 1 1 & 1 0 01549568 -debile a 1 2 & + 1 0 02040233 -debilitated a 1 1 & 1 0 02324944 -debilitating a 1 2 ! & 1 1 01357966 -debilitative a 1 2 & + 1 0 01358096 -debonair a 2 1 & 2 0 01948231 00364145 -debonaire a 2 1 & 2 0 01948231 00364145 -deboned a 1 1 & 1 0 00296482 -debonnaire a 1 1 & 1 0 01948231 -decadent a 1 2 & + 1 1 01297658 -decalescent a 1 2 & + 1 0 00872715 -decapitated a 1 1 & 1 0 01184584 -decasyllabic a 1 1 & 1 0 02289543 -decayable a 1 1 & 1 0 01753785 -decayed a 1 1 & 1 0 02275892 -deceased a 1 2 & ; 1 1 00095873 -deceitful a 2 2 & + 2 0 01223941 01223271 -decent a 6 5 ! & ^ + ; 6 2 01993408 01878870 00682932 02336109 01538583 01538311 -decentralised a 1 1 & 1 0 01107973 -decentralising a 1 1 & 1 0 00335090 -decentralized a 1 2 ! & 1 0 01107973 -decentralizing a 1 2 ! & 1 0 00335090 -deceptive a 2 2 & + 2 1 01938975 01224253 -decided a 1 1 & 1 0 00701299 -deciding a 1 2 & + 1 0 00684782 -deciduous a 2 3 ! & ; 2 0 00914104 01758790 -decimal a 1 1 & 1 0 01915353 -decipherable a 1 1 & 1 0 01405047 -deciphered a 1 1 ! 1 0 01405693 -decisive a 4 4 ! & ^ + 4 2 00684480 00701178 00685638 00656132 -deckle-edged a 1 1 & 1 0 00258255 -deckled a 1 1 & 1 0 00258255 -declamatory a 1 1 & 1 0 02016881 -declarable a 1 1 & 1 0 00028181 -declarative a 2 4 ! \ + ; 2 1 00686890 03094520 -declaratory a 1 2 ! + 1 0 00686890 -declared a 2 2 ! & 2 1 00687356 00940870 -declassified a 1 1 & 1 0 00416550 -declivitous a 1 2 & + 1 0 02485895 -decollete a 1 1 & 1 0 01209210 -decomposable a 1 1 & 1 0 02176741 -decompositional a 1 2 & + 1 0 01332285 -decompound a 1 1 & 1 0 02172488 -deconsecrated a 1 1 & 1 0 00573926 -deconstructionist a 1 1 \ 1 0 02909336 -decorated a 1 2 & ^ 1 0 00056002 -decorative a 1 2 & + 1 1 01091234 -decorous a 2 4 ! & ^ + 2 0 00688947 01878870 -decreased a 1 2 ! & 1 0 00881735 -decreasing a 2 2 ! & 2 1 02536740 02538050 -decreasing_monotonic a 1 1 & 1 0 01547470 -decreed a 1 1 & 1 0 02129718 -decrepit a 2 1 & 2 0 02581530 02040233 -decrescendo a 1 2 & + 1 0 02538389 -decumbent a 1 1 & 1 0 01238201 -decurved a 1 1 & 1 0 00123961 -decussate a 1 1 & 1 0 00653044 -dedicated a 2 3 ! & ^ 2 1 00519211 00573225 -dedifferentiated a 1 1 & 1 1 00744669 -deducible a 1 2 & + 1 0 01296718 -deductible a 1 4 ! & + ; 1 1 00689673 -deductive a 2 5 ! & ^ \ + 2 1 02710294 01296474 -deep a 15 5 ! & ^ = + 15 8 00692762 01873163 00690058 00445937 01511292 01215935 00403385 02410983 02561391 01513776 01385046 01206916 00939444 00899226 00149120 -deep-chested a 1 1 & 1 0 02411116 -deep-eyed a 1 1 & 1 1 00989416 -deep-fried a 1 1 & 1 0 00617422 -deep-laid a 1 1 & 1 0 01797528 -deep-lobed a 1 1 & 1 0 00237881 -deep-mined a 1 1 & 1 0 01504147 -deep-pink a 1 1 & 1 0 00374556 -deep-rooted a 1 1 & 1 0 01635633 -deep-sea a 1 1 & 1 0 01380926 -deep-seated a 1 1 & 1 1 01635633 -deep-set a 1 1 & 1 1 02264521 -deep-water a 1 1 & 1 0 00691022 -deep-yellow a 1 1 & 1 0 00374635 -deep_in_thought a 1 1 & 1 1 02419159 -deepening a 1 1 & 1 0 01340691 -defamatory a 1 2 & + 1 0 01161233 -defeasible a 1 1 ! 1 0 00694086 -defeated a 2 3 ! & ^ 2 0 00694608 02333976 -defective a 3 2 & + 3 2 01752953 01597240 01092572 -defenceless a 2 2 & + 2 0 02524032 00143376 -defendable a 1 1 & 1 0 02525876 -defending a 1 2 & ; 1 0 01630773 -defenseless a 3 2 & + 3 0 02524032 01886783 00143376 -defensible a 1 2 & + 1 1 02525876 -defensive a 2 4 ! & ^ + 2 2 01630117 01632066 -deferent a 1 2 & + 1 0 01994180 -deferential a 1 2 & + 1 0 01994180 -defervescent a 1 2 \ + 1 0 03059847 -defiant a 1 4 ! & ^ + 1 1 00695523 -deficient a 3 4 & ^ = + 3 1 00052012 02336449 02297409 -defiled a 1 1 & 1 0 01905552 -definable a 1 1 & 1 1 00739022 -defined a 2 3 ! & ^ 2 1 00697188 00780712 -definite a 2 4 ! & ^ + 2 2 00700451 00335768 -definitive a 3 1 & 3 1 00940969 02295098 00550574 -deflated a 1 1 & 1 1 00703454 -deflationary a 1 3 ! + ; 1 0 02538803 -deflective a 1 2 & + 1 0 02312918 -defoliate a 1 1 & 1 0 01703710 -defoliated a 1 1 & 1 0 01703710 -deformational a 1 2 \ + 1 1 02954143 -deformed a 1 2 & + 1 1 02141298 -deft a 1 2 & + 1 0 00062367 -defunct a 2 2 & + 2 0 00834048 00097147 -degage a 2 1 & 2 0 02407855 00546155 -degenerate a 1 2 & + 1 0 01549568 -degenerative a 1 2 & + 1 0 00045356 -degraded a 2 1 & 2 0 01549568 01212732 -degrading a 2 1 & 2 0 01611490 01228050 -degressive a 2 1 & 2 0 02486046 01877792 -dehiscent a 1 3 ! = + 1 0 00702773 -dehumanised a 1 1 & 1 0 01260584 -dehumanized a 1 1 & 1 0 01260584 -dehydrated a 2 1 & 2 0 01176057 01072382 -deictic a 1 2 \ + 1 0 03135403 -deific a 1 1 & 1 0 01558291 -deist a 1 1 \ 1 0 02931554 -deistic a 1 2 \ + 1 0 02931554 -dejected a 1 3 ! & ^ 1 1 00703109 -delayed a 1 1 & 1 0 01841295 -delectable a 2 1 & 2 0 02396720 00733406 -deleterious a 1 1 & 1 0 01161059 -deliberate a 2 2 & + 2 2 01337939 01271961 -deliberative a 1 2 & + 1 0 02420215 -delible a 1 1 & 1 0 00897681 -delicate a 7 4 ! & ^ = 7 6 00705891 02227344 00709215 02448324 01948389 00746994 02103982 -delicious a 2 1 & 2 1 01807964 02396720 -delighted a 2 1 & 2 1 01805730 00865620 -delightful a 1 1 & 1 1 01807964 -delimited a 1 1 & 1 0 01006788 -delineate a 1 1 & 1 0 01714985 -delineated a 1 2 ! & 1 0 01714985 -delineative a 1 2 & + 1 0 01979326 -delinquent a 3 2 & + 3 0 01322488 00755220 00137120 -deliquescent a 1 2 & + 1 0 00492157 -delirious a 2 2 & + 2 0 02543823 02390724 -deliverable a 1 1 \ 1 0 02710438 -delphian a 1 2 \ + 1 0 03060601 -delphic a 2 2 & \ 2 0 03060601 01882621 -deltoid a 1 1 & 1 0 02167894 -delusional a 1 2 & + 1 0 01583880 -delusive a 1 2 & + 1 0 01942507 -delusory a 1 2 & + 1 0 01938975 -deluxe a 2 1 & 2 0 02024928 00850053 -demagogic a 1 2 \ + 1 0 03060782 -demagogical a 1 2 \ + 1 0 03060782 -demanding a 1 3 ! & ^ 1 1 00710260 -demeaning a 1 1 & 1 0 00752555 -demented a 1 2 & + 1 0 02075321 -democratic a 3 5 ! & ^ \ + 3 2 00715140 02710530 00486539 -demode a 1 1 & 1 0 00974159 -demographic a 1 2 \ + 1 0 02906351 -demolished a 1 1 & 1 0 00735608 -demon-ridden a 1 1 & 1 1 01726775 -demoniac a 1 2 & + 1 0 02074673 -demoniacal a 1 1 & 1 0 02074673 -demonic a 1 2 & + 1 0 01132515 -demonstrable a 2 2 & + 2 1 00591147 01619105 -demonstrated a 1 1 & 1 1 00591298 -demonstrative a 2 4 ! & ^ + 2 0 00720296 01323962 -demonstrative_of a 1 1 & 1 0 02356048 -demoralised a 1 1 & 1 0 01664880 -demoralising a 1 1 & 1 0 00867615 -demoralized a 1 1 & 1 0 01664880 -demoralizing a 1 1 & 1 0 00867615 -demosthenic a 1 2 \ + 1 0 03030515 -demotic a 2 3 & \ + 2 0 02710672 00486819 -demulcent a 1 2 & + 1 0 01153844 -demure a 1 2 & + 1 1 01538118 -demythologised a 1 1 & 1 0 01925979 -demythologized a 1 1 & 1 1 01925979 -denary a 2 1 & 2 0 02220207 01915353 -denatured a 1 1 & 1 0 00354692 -denaturised a 1 1 & 1 0 00354692 -denaturized a 1 1 & 1 0 00354692 -dendriform a 1 1 & 1 0 00613382 -dendritic a 1 2 \ + 1 0 02934066 -dendroid a 1 1 & 1 0 00613382 -dendroidal a 1 1 & 1 0 00613382 -deniable a 1 2 ! & 1 0 00721157 -denigrating a 1 1 & 1 0 01161233 -denigrative a 1 2 & + 1 0 01161233 -denigratory a 1 2 & + 1 0 01161233 -denominational a 3 2 & \ 3 1 02710825 02710981 02091851 -denotative a 2 4 ! & ^ + 2 0 00722110 01418989 -denotive a 1 3 & ^ + 1 0 00722110 -dense a 4 2 & + 4 3 02416390 01771839 01185264 00440579 -dental a 2 1 \ 2 1 02711098 02711194 -dentate a 1 1 & 1 0 02246637 -dented a 1 1 & 1 0 00680005 -denticulate a 1 1 & 1 0 02246733 -denudate a 1 1 & 1 0 01698610 -denuded a 1 1 & 1 0 01698610 -denumerable a 1 1 & 1 0 00301589 -denunciative a 1 2 & + 1 0 00924635 -denunciatory a 1 1 & 1 0 00924635 -departed a 2 3 & + ; 2 0 01728919 00095873 -departmental a 1 2 \ + 1 1 03059966 -dependable a 4 4 ! & ^ + 4 2 00724081 02465519 02301969 02273643 -dependant a 2 2 & + 2 0 00556174 00047406 -dependant_on a 1 1 & 1 0 00555859 -dependant_upon a 1 1 & 1 0 00555859 -dependent a 6 6 ! & ^ = + ; 6 2 00725772 00556174 00730470 02351370 02329864 00047406 -dependent_on a 1 1 & 1 1 00555859 -dependent_upon a 1 1 & 1 0 00555859 -depending_on a 1 1 & 1 1 00555859 -depicted a 1 1 & 1 0 01715157 -depictive a 1 2 & + 1 0 01979326 -depilatory a 1 2 & + 1 0 00211221 -depilous a 1 1 & 1 0 00211370 -depletable a 1 1 & 1 0 00925560 -depleted a 1 1 & 1 0 02336759 -deplorable a 3 1 & 3 1 01126841 02347086 02035765 -depopulated a 1 1 & 1 0 01313178 -depraved a 1 2 & + 1 0 00621524 -deprecating a 1 1 & 1 1 00906655 -deprecative a 2 2 & + 2 0 00906655 00648238 -deprecatory a 1 2 & + 1 1 00906655 -depreciating a 1 1 & 1 0 02536911 -depreciative a 2 2 & + 2 0 02536911 00906655 -depreciatory a 2 2 & + 2 0 02536911 00906655 -depressant a 1 3 ! & + 1 0 02308214 -depressed a 3 2 & ; 3 1 01212867 02413221 00703615 -depressing a 1 4 ! & ^ = 1 0 00364479 -deprived a 1 1 & 1 0 01864666 -deranged a 1 1 & 1 1 02075847 -derelict a 4 2 & + 4 0 02581530 01313004 00755220 00679717 -derisive a 1 2 & + 1 1 01995596 -derisory a 1 2 & + 1 0 02570643 -derivable a 1 1 & 1 0 00698506 -derivational a 1 1 ! 1 0 00113245 -derivative a 1 2 & + 1 0 00698586 -derived a 1 2 ! & 1 1 00698262 -dermal a 3 2 \ + 3 0 02876088 02875930 02875707 -dermatologic a 1 2 \ + 1 0 02916230 -dermatological a 1 2 \ + 1 0 02916230 -dermic a 1 2 \ + 1 0 02875930 -derogative a 1 2 & + 1 0 00907032 -derogatory a 1 2 & + 1 0 00907032 -descendant a 2 2 & + 2 0 02486122 01972204 -descendent a 2 2 & + 2 0 02486122 01972204 -descending a 1 3 ! & ^ 1 1 02485650 -describable a 1 1 & 1 0 00943599 -described a 1 1 & 1 0 01715287 -descriptive a 2 3 ! + ; 2 1 00732682 00732318 -desecrated a 1 2 ! & 1 0 00573770 -desegrated a 1 1 & 1 0 01326516 -desensitising a 1 2 & = 1 0 02108359 -desensitizing a 1 3 ! & = 1 0 02108359 -deserted a 1 1 & 1 0 01313004 -deserved a 1 1 & 1 0 01371137 -deserving a 1 3 & + ; 1 1 02586206 -desiccate a 1 1 & 1 0 00806991 -desiccated a 3 1 & 3 0 02552849 01072382 00806991 -designate a 1 1 & 1 0 01294756 -designative a 1 2 & + 1 0 00722611 -designed a 1 2 ! & 1 0 01339730 -designing a 1 1 & 1 0 00148852 -desirable a 2 4 ! & ^ + 2 1 00732960 00852197 -desired a 2 1 & 2 2 00733297 02527220 -desirous a 1 3 ! & + 1 0 00887719 -desk-bound a 1 1 & 1 0 00033886 -deskbound a 1 1 & 1 0 00033886 -desolate a 2 1 & 2 1 01242750 01232507 -despairing a 1 1 & 1 1 01229826 -desperate a 6 1 & 6 4 01229826 01990507 02059626 00263463 00713351 00651451 -despicable a 1 2 & + 1 0 01133017 -despised a 1 1 & 1 1 01463537 -despiteful a 1 1 & 1 0 00225099 -despoiled a 1 1 & 1 0 00735709 -despondent a 1 2 & + 1 1 01230153 -despotic a 3 3 & \ + 3 0 02711292 00718137 00717684 -despotical a 1 2 \ + 1 0 02711292 -destined a 2 1 & 2 0 01682822 00340626 -destitute a 2 1 & 2 0 02023430 00927978 -destroyable a 1 1 & 1 0 00738284 -destroyed a 2 3 ! & ^ 2 2 00734318 01451402 -destructible a 1 4 ! & = + 1 0 00737973 -destructive a 1 4 ! & ^ + 1 1 00586183 -destructive-metabolic a 1 1 & 1 0 00108145 -desultory a 1 1 & 1 1 01910819 -detachable a 1 2 ! & 1 1 00162083 -detached a 6 3 ! & ; 6 3 00546155 02110447 00568304 00160573 01467046 01060947 -detailed a 1 1 & 1 1 00310433 -detectable a 2 1 & 2 2 01746995 01287282 -detected a 2 2 ! & 2 1 01609201 01608127 -detergent a 1 2 & + 1 0 02118181 -determinable a 1 3 ! & ^ 1 1 00738593 -determinant a 1 2 & + 1 0 00684782 -determinate a 3 4 ! & + ; 3 1 00739932 00741076 00550574 -determinative a 1 2 & + 1 0 00684782 -determined a 5 2 ! & 5 1 01990373 01610339 02328108 02129908 00104699 -determining a 1 1 & 1 1 00684782 -deterministic a 1 2 & + 1 0 02130137 -deterrent a 1 2 & + 1 0 01764543 -detersive a 1 2 & + 1 0 02118181 -detestable a 2 1 & 2 0 01625063 01460679 -detested a 1 1 & 1 0 01463537 -detonative a 1 2 & + 1 0 00474883 -detractive a 1 2 & + 1 0 02537181 -detrimental a 1 2 & + 1 0 01161984 -deuced a 1 1 & 1 0 00669942 -deuteranopic a 1 2 & + 1 0 02159787 -devalued a 1 1 & 1 0 01212732 -devastating a 3 1 & 3 2 01995047 00586617 00587697 -developed a 3 2 ! & 3 1 00741867 01301840 01288895 -developing a 1 1 & 1 1 01302544 -developmental a 1 2 \ + 1 1 02945820 -deviant a 1 2 & + 1 1 01596122 -deviate a 1 2 & + 1 0 01596122 -devil-may-care a 2 1 & 2 0 01998260 00609341 -devilish a 2 1 & 2 1 01133374 02122379 -devious a 3 2 & + 3 1 00768098 02466382 00763013 -devoid a 1 1 & 1 0 00927978 -devoted a 2 2 & + 2 1 00519668 00519477 -devotional a 1 1 & 1 1 01781781 -devouring a 1 1 & 1 0 00888477 -devout a 2 2 & + 2 1 01783710 02179968 -deweyan a 1 2 \ + 1 0 03030635 -dewy a 1 2 & + 1 0 02547862 -dewy-eyed a 1 1 & 1 0 02272047 -dexter a 1 2 & ; 1 0 00743183 -dexterous a 1 1 & 1 1 00062367 -dextral a 2 4 ! & ^ + 2 0 00742879 02028865 -dextrorotary a 1 1 & 1 0 00441927 -dextrorotatory a 1 1 & 1 0 00441927 -dextrorsal a 1 2 & ; 1 0 00743293 -dextrorse a 1 2 & ; 1 0 00743293 -dextrous a 1 2 & + 1 1 00062367 -diabatic a 1 2 ! ; 1 0 00744017 -diabetic a 2 3 & \ + 2 0 03060971 02543934 -diabolic a 2 2 & + 2 0 01133374 01132515 -diabolical a 2 1 & 2 0 01133374 01132515 -diachronic a 1 3 ! + ; 1 1 02377418 -diacritic a 1 2 & + 1 0 00774911 -diacritical a 1 2 & + 1 0 00774911 -diadromous a 1 1 ! 1 0 00109504 -diagnosable a 1 1 & 1 0 01272836 -diagnostic a 2 3 & \ + 2 1 02975538 00357254 -diagonal a 2 2 & + 2 1 01719870 01234747 -diagonalizable a 1 2 \ ; 1 1 02711468 -diagrammatic a 1 2 & + 1 0 01715430 -diagrammatical a 1 2 & + 1 0 01715430 -dialectal a 1 2 \ + 1 0 03004561 -dialectic a 1 2 \ + 1 0 03023644 -dialectical a 1 2 \ + 1 0 03023644 -diamagnetic a 1 2 \ + 1 0 02711599 -diamantine a 1 1 \ 1 0 02711744 -diametral a 1 2 \ + 1 0 02711846 -diametric a 2 3 & \ + 2 0 02711846 02066312 -diametrical a 2 3 & \ + 2 0 02711846 02066312 -dianoetic a 1 2 & ; 1 0 01430452 -diaphanous a 1 1 & 1 0 02413390 -diaphoretic a 1 2 \ + 1 0 02712125 -diaphyseal a 1 2 \ + 1 1 02990660 -diaphysial a 1 2 \ + 1 0 02990660 -diarrheal a 1 2 & + 1 0 00638622 -diarrheic a 1 1 & 1 0 00638622 -diarrhetic a 1 2 & + 1 0 00638622 -diarrhoeal a 1 2 & + 1 0 00638622 -diarrhoeic a 1 1 & 1 0 00638622 -diarrhoetic a 1 2 & + 1 0 00638622 -diastolic a 1 2 \ + 1 0 02712270 -diatomic a 1 1 \ 1 1 02884949 -diatonic a 2 3 ! & ; 2 0 00409889 02437534 -diazo a 1 1 \ 1 0 02656034 -dicarboxylic a 1 1 \ 1 0 02712403 -dicey a 1 1 & 1 0 02059381 -dichotomous a 1 2 & + 1 0 02480861 -dichromatic a 2 3 & \ + 2 0 03040740 00396115 -dickensian a 1 2 \ + 1 0 02712499 -dickey a 1 3 & + ; 1 0 01274741 -dicky a 1 3 & + ; 1 0 01274741 -diclinous a 1 2 ! ; 1 0 01542744 -dicotyledonous a 1 2 ! ; 1 0 00753786 -dictated a 1 1 & 1 1 02129908 -dictatorial a 3 3 & \ + 3 0 02712678 00787357 00717684 -dictyopteran a 1 1 \ 1 0 03137726 -didactic a 1 1 & 1 0 01324131 -didactical a 1 2 & + 1 0 01324131 -die-cast a 1 1 & 1 0 02146645 -die-hard a 1 1 & 1 0 01025212 -diestrous a 1 1 & 1 0 02138428 -diestrual a 1 2 & + 1 0 02138428 -dietary a 1 2 \ + 1 1 02846322 -dietetic a 1 2 \ + 1 0 02846322 -dietetical a 1 2 \ + 1 0 02846322 -different a 5 5 ! & ^ = + 5 4 02064745 02070030 00490413 01410363 02070342 -differentiable a 2 2 & \ 2 1 02712810 00582636 -differential a 2 3 \ + ; 2 1 02712922 02909168 -differentiated a 2 3 ! & ; 2 1 00744277 02277829 -difficult a 2 5 ! & ^ = + 2 1 00744916 01475282 -diffident a 2 4 ! & = + 2 1 01987856 00339941 -diffuse a 3 2 & + 3 1 00540487 01157887 00549133 -diffused a 2 1 & 2 1 00540632 01157887 -diffusing a 1 1 & 1 1 00468362 -diffusive a 1 2 & + 1 0 00468362 -digestible a 1 4 ! & ^ + 1 1 01182024 -digestive a 1 2 \ + 1 1 03060385 -dighted a 1 2 & ; 1 0 00455717 -digital a 3 4 ! \ + ; 3 0 02713232 02713096 00110701 -digitate a 1 1 & 1 0 00946281 -digitigrade a 1 2 ! ; 1 0 00751170 -dignified a 2 3 ! & ^ 2 2 00751525 01890988 -dignifying a 1 1 & 1 0 01588426 -digressive a 2 2 & + 2 0 01976360 00768397 -dilapidated a 1 1 & 1 1 00679717 -dilatory a 1 1 & 1 0 00981067 -dilettante a 1 2 & + 1 0 01874331 -dilettanteish a 1 1 & 1 0 01874331 -dilettantish a 1 1 & 1 0 01874331 -diligent a 2 4 ! & ^ + 2 1 01736122 00754107 -dilute a 1 1 & 1 1 00756091 -diluted a 1 2 ! & 1 0 00756091 -diluvial a 1 1 \ 1 0 02846630 -diluvian a 1 1 \ 1 0 02846630 -dim a 5 2 & + 5 2 00275290 00782216 00284575 01229561 00440579 -dim-sighted a 1 1 & 1 0 02159969 -dim-witted a 1 1 & 1 0 01841390 -dimensional a 2 3 & \ + 2 2 02985102 00660313 -dimensioning a 1 1 & 1 1 01684922 -diminished a 4 2 & ; 4 1 01274945 00554879 00882890 00882580 -diminishing a 1 1 & 1 1 02537351 -diminuendo a 1 1 & 1 0 02538389 -diminutive a 1 2 & + 1 1 01392249 -dimmed a 1 2 ! & 1 0 00284575 -dimorphic a 1 1 \ 1 0 02713368 -dimorphous a 1 1 \ 1 0 02713368 -dingy a 3 2 & + 3 1 00420650 01909077 00364881 -dinky a 2 2 & ; 2 0 01392896 00167520 -diocesan a 1 2 \ + 1 0 02871449 -dioecian a 1 0 1 0 01543633 -dioecious a 1 1 ! 1 0 01543633 -dioestrous a 1 1 & 1 0 02138428 -dioestrual a 1 1 & 1 0 02138428 -dionysian a 1 3 \ + ; 1 0 02713581 -diploid a 1 3 ! + ; 1 0 01147622 -diplomatic a 2 5 ! & ^ \ + 2 2 02713715 00758459 -diplomatical a 1 3 & ^ + 1 0 00758459 -dipolar a 1 1 \ 1 0 02953973 -dipped a 1 1 & 1 0 01020117 -dipterous a 1 2 \ + 1 0 02713855 -dipylon a 1 2 \ + 1 1 03017659 -dire a 2 1 & 2 0 00651451 00193799 -direct a 10 6 ! & ^ = + ; 10 3 00760916 00770480 00763901 01416508 00769926 00769239 00763633 01852666 00914808 00005473 -directed a 2 1 & 2 1 01683061 01475041 -directing a 1 1 & 1 1 00199114 -directional a 3 4 ! & \ + 3 1 02713974 02714263 00199114 -directionless a 1 1 & 1 0 01910652 -directive a 1 2 & + 1 0 00199114 -direful a 1 1 & 1 0 00193799 -dirigible a 1 2 & + 1 0 01475160 -dirt a 1 1 & 1 0 01289480 -dirt_cheap a 1 1 & 1 0 00934874 -dirty a 12 5 ! & ^ = + 12 3 00419289 00424370 01587474 00426608 02114296 01909077 01405390 01403012 01245778 00957743 00621857 00305590 -dirty-faced a 1 1 & 1 0 00421383 -dirty-minded a 1 1 & 1 0 00425234 -disabled a 1 2 & + 1 1 01019283 -disabling a 2 2 ! & 2 1 01168166 01195341 -disabused a 1 1 & 1 0 00866182 -disadvantaged a 1 1 & 1 0 01864666 -disadvantageous a 1 4 ! & ^ + 1 0 00065488 -disaffected a 1 1 & 1 0 00589960 -disagreeable a 3 3 ! & + 3 0 00089355 01137882 00561359 -disappointed a 1 1 & 1 1 02333976 -disappointing a 1 1 & 1 1 02082611 -disapproving a 1 1 & 1 0 00997298 -disarming a 1 2 & + 1 0 01897948 -disarranged a 1 2 ! & 1 0 01681607 -disarrayed a 1 1 & 1 0 01681789 -disastrous a 1 2 & + 1 1 01050088 -disavowable a 1 1 & 1 0 00721287 -disbelieving a 1 1 & 1 0 00647247 -disc-shaped a 1 1 & 1 0 02042267 -discalceate a 1 1 ; 1 0 02157041 -discalced a 1 2 ! ; 1 0 02157041 -discarded a 1 1 & 1 1 02528206 -discernable a 1 1 + 1 1 00581812 -discernible a 3 3 ! & + 3 2 00581812 01747195 01287486 -discerning a 4 3 ! & ^ 4 1 00771373 02384672 01745027 00775135 -discharged a 1 1 & 1 0 00864884 -disciform a 1 1 & 1 0 02045894 -disciplinal a 1 1 & 1 0 01300661 -disciplinary a 3 3 & \ + 3 0 03061455 03061081 01300661 -disciplined a 2 1 & 2 2 00599111 01911951 -disclike a 1 1 & 1 0 02042267 -disclosed a 1 1 & 1 0 02508514 -discoid a 1 1 & 1 0 02042267 -discoidal a 1 1 & 1 0 02042267 -discombobulated a 1 1 & 1 0 00532288 -discomfited a 1 2 & + 1 0 02333976 -discomposed a 1 3 ! & ^ 1 0 00531342 -discomycetous a 1 2 \ + 1 0 02714433 -disconcerted a 1 1 & 1 1 00532288 -disconcerting a 1 1 & 1 1 01809019 -disconfirming a 2 2 & ; 2 0 01820861 02356712 -disconnected a 5 3 & + ; 5 0 02293856 02481012 02294122 01651609 00465221 -disconsolate a 2 2 & + 2 0 01232298 00364881 -discontent a 1 3 & ^ + 1 0 00589624 -discontented a 1 4 ! & ^ + 1 1 00589624 -discontinued a 1 2 ! & 1 0 00598203 -discontinuous a 2 5 ! & ^ + ; 2 0 00597599 00596769 -discordant a 2 3 ! & + 2 0 00553899 01164250 -discorporate a 1 1 & 1 1 00631040 -discouraged a 2 1 & 2 1 01664880 01992418 -discouraging a 2 3 ! & ^ 2 1 00867213 01771381 -discourteous a 2 4 ! & ^ = 2 1 00640283 00642152 -discoverable a 1 1 & 1 0 00738829 -discovered a 1 1 & 1 1 01610484 -discreditable a 1 1 & 1 0 01984097 -discredited a 2 1 & 2 0 01984252 00154163 -discreet a 3 3 ! & + 3 0 00772910 02384672 01898490 -discrepant a 3 2 & + 3 0 00578523 00562803 00554098 -discrete a 1 2 & + 1 1 02110778 -discretional a 1 1 & 1 0 00719819 -discretionary a 2 2 & + 2 1 00719819 02003186 -discriminable a 1 1 & 1 0 00582762 -discriminate a 1 2 ! ^ 1 0 00773579 -discriminating a 2 3 ! & ^ 2 1 00774323 01744515 -discriminative a 2 2 & + 2 0 00775301 00650135 -discriminatory a 4 2 & + 4 0 00285148 00997394 00775301 00065184 -discursive a 2 3 & + ; 2 0 01430452 00768397 -disdainful a 2 2 & + 2 1 01995288 01891109 -diseased a 1 1 & 1 1 01176246 -disembodied a 1 1 & 1 1 00631040 -disenchanted a 1 3 ! & ^ 1 0 00866047 -disenchanting a 1 1 & 1 0 00615343 -disenfranchised a 1 1 ! 1 0 00876735 -disentangled a 1 1 & 1 0 00256538 -disfigured a 1 1 & 1 1 00221318 -disfranchised a 1 0 1 0 00876735 -disgraced a 1 1 & 1 0 00154163 -disgraceful a 2 2 & + 2 0 01549964 01227546 -disgruntled a 1 1 & 1 0 00590163 -disguised a 1 1 & 1 1 01707230 -disgusted a 1 1 & 1 1 01806677 -disgustful a 1 1 & 1 0 01625893 -disgusting a 1 2 & + 1 1 01625893 -dish-shaped a 1 1 & 1 0 00536792 -disharmonious a 1 1 & 1 0 01164250 -disheartened a 1 1 & 1 1 01664880 -disheartening a 1 1 & 1 1 00867615 -dished a 1 1 & 1 0 00536792 -disheveled a 1 1 & 1 1 02425220 -dishevelled a 1 1 & 1 0 02425220 -dishonest a 2 3 ! & ^ 2 1 01222884 00621207 -dishonorable a 2 5 ! & ^ = + 2 0 01227137 01222884 -dishonored a 1 1 & 1 0 00154163 -dishonourable a 1 4 & ^ = + 1 0 01227137 -dishy a 1 3 & + ; 1 0 00218673 -disillusioned a 1 1 & 1 0 00866392 -disillusioning a 1 1 & 1 1 00615343 -disinclined a 1 3 ! & ^ 1 0 01293158 -disinfectant a 1 2 & + 1 0 02116054 -disingenuous a 1 4 ! & ^ + 1 0 01310685 -disinherited a 1 1 & 1 0 01463642 -disintegrable a 1 1 & 1 0 02265594 -disintegrative a 1 3 ! & + 1 1 01331878 -disinterested a 1 2 & + 1 1 01723543 -disjoined a 1 1 & 1 0 00568541 -disjoint a 1 2 & ; 1 0 02110993 -disjointed a 3 2 & + 3 1 00465221 02481354 01318510 -disjunct a 4 3 ! & ; 4 0 00565962 02481457 02111095 00597267 -disjunctive a 1 3 ! & + 1 0 00564262 -disk-shaped a 1 1 & 1 0 02042267 -disklike a 1 1 & 1 0 02042267 -dislikable a 1 1 & 1 0 01461597 -disliked a 1 2 ! & 1 0 01461455 -dislocated a 1 1 & 1 0 01318510 -dislogistic a 1 1 & 1 0 00907243 -disloyal a 2 4 ! & ^ = 2 0 01740630 00962634 -dismal a 1 1 & 1 0 00364881 -dismantled a 1 1 & 1 0 00735608 -dismayed a 1 1 & 1 1 00078576 -dismaying a 1 1 & 1 1 00193367 -dismissed a 1 1 & 1 0 00864884 -dismissible a 1 2 & + 1 0 01526769 -dismissive a 2 2 & + 2 0 01343411 00076580 -disobedient a 2 5 ! & ^ = + 2 1 01613463 02330762 -disobliging a 1 1 & 1 0 00021592 -disordered a 3 2 ! & 3 2 01669246 00465221 01668250 -disorderly a 3 3 ! & + 3 2 01666275 02425529 02390569 -disorganised a 1 2 & ^ 1 0 01668858 -disorganized a 1 3 ! & ^ 1 1 01668858 -disoriented a 2 1 & 2 0 01684133 01683908 -disorienting a 1 3 ! & ^ 1 0 01685377 -disparaging a 1 1 & 1 0 00907032 -disparate a 2 2 & + 2 1 02066836 01199476 -dispassionate a 1 2 & + 1 1 01723648 -dispensable a 1 4 ! ^ = + 1 0 00903449 -dispensed a 1 1 & 1 0 00540826 -dispersed a 1 1 & 1 1 00540977 -dispersive a 1 2 & + 1 0 00468362 -dispirited a 2 2 & + 2 0 02281938 00703615 -dispiriting a 1 1 & 1 0 00867615 -displeased a 1 3 ! & ^ 1 1 01805889 -displeasing a 1 3 ! & ^ 1 0 01808822 -disposable a 2 2 ! & 2 0 00777418 00776570 -disposed a 2 1 & 2 0 02565425 01292411 -dispossessed a 1 1 & 1 1 01050603 -disproportional a 1 0 1 0 00483048 -disproportionate a 2 2 ! & 2 2 00483048 00482059 -disputable a 2 1 & 2 1 00590669 00602117 -disputatious a 1 2 & + 1 0 00603804 -disputative a 1 2 & + 1 0 00603804 -disputed a 1 1 & 1 0 00602474 -disqualified a 2 2 & ; 2 1 00853225 00853324 -disqualifying a 1 0 1 0 01195341 -disquieted a 1 1 & 1 0 02457167 -disquieting a 1 1 & 1 0 00480753 -disregarded a 1 1 & 1 0 01608465 -disreputable a 1 5 ! & ^ = + 1 0 01983797 -disrespectful a 2 3 ! & ^ 2 0 01994602 02013083 -disrupted a 1 1 & 1 0 00597148 -disruptive a 1 2 & + 1 1 01923720 -dissatisfactory a 1 2 & + 1 0 02082611 -dissatisfied a 1 1 & 1 1 00590163 -dissected a 1 1 & 1 0 02172255 -disseminative a 1 2 & + 1 0 00468362 -dissentient a 2 2 & + 2 0 01691302 00075737 -dissenting a 1 1 & 1 0 00075737 -dissentious a 1 2 & + 1 0 00554302 -dissident a 2 2 & + 2 0 01691474 00075737 -dissilient a 1 2 & + 1 0 00003700 -dissimilar a 3 3 ! = + 3 1 02073113 01410905 01410363 -dissimulative a 1 2 & + 1 0 02181926 -dissipated a 2 1 & 2 0 01549568 01297946 -dissociable a 1 1 & 1 0 00785002 -dissociative a 1 2 & + 1 0 00785298 -dissoluble a 1 2 & + 1 0 02265386 -dissolute a 1 2 & + 1 0 01549568 -dissolvable a 1 1 & 1 0 02265386 -dissolved a 1 1 & 1 1 01506258 -dissonant a 3 3 & + ; 3 0 01164561 01164250 00554098 -dissuasive a 1 4 ! & ^ + 1 0 01770903 -distaff a 1 2 & + 1 0 01484451 -distal a 2 3 ! & ; 2 1 00778363 00778680 -distant a 5 5 ! & ^ = + 5 2 00445548 00450606 01987646 00443075 00442917 -distasteful a 2 2 & + 2 0 01716971 01625893 -distensible a 1 2 & + 1 0 00946844 -distinct a 5 4 ! & ^ + 5 3 02067063 00779374 02110778 00701299 00429016 -distinctive a 2 2 & + 2 2 00357556 01272718 -distinguishable a 2 2 ! & 2 1 00582314 02067063 -distinguished a 2 1 & 2 2 01278080 00752110 -distortable a 1 1 & 1 1 00345005 -distorted a 2 1 & 2 0 02141298 01311067 -distracted a 1 1 & 1 0 00165458 -distrait a 1 1 & 1 0 00165458 -distraught a 1 1 & 1 1 00085870 -distressed a 4 2 & ^ 4 1 02457558 00909363 02458497 02457167 -distressful a 1 2 & + 1 0 01189386 -distressing a 2 1 & 2 1 01189386 01126841 -distributed a 1 3 ! & ^ 1 0 00539793 -distributional a 1 1 \ 1 0 02714578 -distributive a 1 4 ! & ^ + 1 1 00467913 -distrustful a 1 4 ! & ^ + 1 0 02463154 -disturbed a 4 1 & 4 3 01681882 02457167 01584017 02075321 -disturbing a 1 1 & 1 1 01189386 -disunited a 1 1 & 1 0 02481012 -disused a 1 1 & 1 0 00669021 -disyllabic a 1 1 & 1 0 02288904 -dithyrambic a 1 1 \ 1 0 02714708 -diurnal a 2 3 ! & ; 2 0 00678666 01968033 -divalent a 1 2 \ ; 1 0 03049071 -divergent a 2 4 ! & ^ + 2 1 02066662 00612652 -diverging a 1 2 & ^ 1 0 00612652 -divers a 1 1 & 1 0 02067719 -diverse a 2 2 & + 2 2 02067719 02067491 -diversified a 1 3 ! & ^ 1 1 00783129 -diversionary a 1 2 & + 1 0 00763272 -diverted a 1 1 & 1 0 01805355 -diverting a 1 1 & 1 0 01344485 -dividable a 1 2 & ; 1 0 00785406 -divided a 3 3 ! & ^ 3 1 02478749 02221550 00541189 -divided_up a 1 1 & 1 0 00541189 -divinatory a 2 2 & + 2 0 01882754 00861216 -divine a 6 2 & + 6 3 01179547 01180363 01179767 02055460 01261127 01121507 -divisible a 1 3 ! & + 1 0 00784533 -divisional a 3 3 & \ + 3 0 03061626 00565115 00517010 -divisive a 1 1 & 1 1 00554302 -divorced a 1 1 & 1 1 01482551 -dizygotic a 1 1 \ 1 0 02933807 -dizygous a 1 1 \ 1 0 02933807 -dizzy a 2 2 & + 2 2 02544048 02120828 -djiboutian a 1 2 \ + 1 0 03061762 -do-it-yourself a 1 1 & 1 1 00674476 -do-nothing a 1 2 & + 1 0 01998535 -do-or-die a 1 1 & 1 0 01990507 -doable a 1 1 & 1 0 01821690 -docile a 3 4 ! & ^ + 3 1 02328659 02451634 02388773 -doctoral a 1 2 \ + 1 0 02893338 -doctorial a 1 2 \ + 1 0 02893338 -doctrinaire a 1 2 & + 1 1 01324271 -doctrinal a 1 2 \ + 1 1 03006225 -documental a 1 2 \ + 1 0 02896789 -documentary a 2 3 & \ + 2 0 02896789 01934026 -documented a 2 2 ! & 2 0 00786291 01115920 -doddering a 1 1 & 1 0 01645296 -doddery a 1 1 & 1 0 01645296 -dodgy a 2 2 & + 2 0 02059381 00148078 -dog-eared a 1 1 & 1 0 02581829 -dog-sized a 1 1 & 1 0 02222965 -dog-tired a 1 1 & 1 0 02433451 -dogged a 1 2 & + 1 1 02327569 -dogging a 1 1 & 1 1 00596043 -doglike a 1 1 & 1 1 00961908 -dogmatic a 3 3 & \ + 3 1 00288070 03061982 03006389 -dogmatical a 1 2 & + 1 0 00288070 -dolabrate a 1 1 & 1 0 02168014 -dolabriform a 1 1 & 1 0 02168014 -doled_out a 1 1 & 1 1 00540236 -doleful a 1 2 & + 1 1 01362387 -dolichocephalic a 1 2 ! & 1 0 00262529 -dolichocranial a 1 1 & 1 0 00262529 -dolichocranic a 1 1 & 1 0 00262529 -dolled_up a 1 1 & 1 0 00455824 -dolomitic a 1 2 \ + 1 0 03062151 -dolorous a 1 2 & + 1 0 01365239 -dolourous a 1 2 & + 1 0 01365239 -doltish a 1 1 & 1 0 00440489 -dome-shaped a 1 1 & 1 0 02046115 -domed a 1 1 & 1 0 02046017 -domestic a 5 6 ! & ^ \ = + 5 3 01038102 02919594 01038808 02388921 01036754 -domesticated a 2 1 & 2 0 02388921 01039203 -domiciliary a 1 2 \ + 1 0 03062280 -dominant a 3 6 ! & ^ = + ; 3 1 00791227 00793793 01066787 -dominated a 2 1 & 2 1 00599186 00789988 -dominating a 3 1 & 3 1 00791631 01205232 00787595 -domineering a 1 4 ! & ^ + 1 1 00787136 -dominical a 2 1 \ 2 0 02847025 02846927 -dominican a 2 1 \ 2 0 03062595 03062466 -donatist a 1 1 \ 1 0 02847126 -done a 2 1 & 2 1 01003536 00617344 -done_for a 2 2 & ; 2 1 00735882 02334321 -done_with a 1 1 & 1 1 01003822 -donnean a 1 2 \ + 1 0 03030753 -donnian a 1 2 \ + 1 0 03030753 -donnish a 1 1 & 1 0 02083908 -doomed a 4 3 & + ; 4 1 00097305 01451225 01051410 00340827 -door-to-door a 2 1 & 2 0 00761260 00527551 -doped a 2 1 & 2 1 01954418 00798879 -dopey a 1 3 & + ; 1 0 00439905 -dopy a 1 3 & + ; 1 0 00439905 -dorian a 1 1 \ 1 0 02847207 -doric a 1 1 \ 1 0 02847370 -dormant a 4 5 ! & = + ; 4 1 00188155 00040685 01238914 00034032 -dormie a 1 2 & ; 1 0 02490949 -dormy a 1 2 & ; 1 0 02490949 -dorsal a 2 3 ! + ; 2 0 00132127 00002312 -dorsoventral a 1 1 & 1 0 00132754 -dosed a 1 1 & 1 1 01955670 -dostoevskian a 1 2 \ + 1 0 03030919 -dostoyevskian a 1 2 \ + 1 0 03030919 -dot-com a 1 2 \ + 1 0 02847473 -doting a 1 1 & 1 0 01464433 -dotted a 2 1 & 2 2 01788445 00290483 -dotty a 2 2 & ; 2 0 02074929 00886448 -double a 7 5 ! & = + ; 7 3 02217799 02217452 02217241 02220308 01546826 01385149 00896026 -double-barreled a 2 2 ! & 2 0 00794277 00102578 -double-barrelled a 2 1 & 2 0 00794277 00102578 -double-bass a 1 1 & 1 0 01216145 -double-bedded a 1 1 & 1 0 00207706 -double-breasted a 1 1 ! 1 1 00794426 -double-chinned a 1 1 & 1 0 00987349 -double-dealing a 1 2 & + 1 0 01223271 -double-dyed a 1 1 & 1 0 01520091 -double-edged a 1 1 & 1 0 00102786 -double-faced a 2 1 & 2 0 01759876 01223271 -double-geared a 2 1 & 2 0 01100595 01100394 -double-humped a 1 1 \ 1 0 02819475 -double-jointed a 1 1 & 1 0 01022657 -double-quick a 1 1 & 1 0 00977606 -double-spaced a 1 1 & 1 0 01655972 -double-tongued a 1 1 & 1 0 01223271 -doubled a 1 1 & 1 0 02217241 -doubtful a 3 2 & + 3 2 01916979 00338013 02130672 -doubting a 1 1 & 1 0 02463847 -doughnut-shaped a 1 1 & 1 0 02044860 -doughy a 1 2 & + 1 0 01185417 -dour a 3 1 & 3 0 02327569 01802932 01137378 -dovish a 1 2 & + 1 0 01741953 -dowdy a 2 2 & + 2 0 00976339 00974519 -dowered a 1 1 & 1 0 00671357 -dowerless a 1 2 & ; 1 0 00671593 -down a 9 3 ! & ^ 9 5 02491961 02486248 02487414 02061678 01750617 01212867 01208492 00833737 00703615 -down-and-out a 1 2 & + 1 0 02334436 -down-to-earth a 1 1 & 1 0 01940472 -down_in_the_mouth a 1 1 & 1 0 00703615 -down_pat a 1 1 & 1 0 01750617 -downbound a 1 1 & 1 0 02492565 -downcast a 2 1 & 2 1 02492719 00703615 -downfield a 1 2 & ; 1 0 02492812 -downhearted a 1 2 & + 1 0 00703615 -downhill a 1 2 & + 1 1 02485895 -downlike a 1 1 & 1 0 01154030 -downmarket a 1 2 ! & 1 0 02488445 -downright a 2 2 & + 2 0 01222722 00520892 -downscale a 1 1 & 1 0 02488553 -downstage a 1 1 ! 1 0 02493867 -downstair a 1 1 & 1 0 02494092 -downstairs a 1 2 ! & 1 0 02494092 -downstream a 1 1 ! 1 0 02494499 -downtown a 1 2 ! + 1 1 02494716 -downtrodden a 1 1 & 1 0 01051718 -downward a 2 1 & 2 2 02486248 02492981 -downward-arching a 1 1 & 1 0 02486425 -downward-sloping a 1 1 & 1 0 02485895 -downwind a 1 1 & 1 0 01400237 -downy a 2 3 & + ; 2 0 01154030 00213610 -dozen a 1 2 & + 1 1 02187465 -dozy a 1 1 & 1 0 00188436 -drab a 4 2 & + 4 2 00807399 00405179 00378687 00364881 -draconian a 1 2 \ + 1 0 03031102 -drafty a 1 2 & + 1 1 01397674 -dragging a 1 1 & 1 1 00837084 -draggled a 1 1 & 1 0 00420287 -drained a 3 3 ! & ; 3 0 01088478 02434115 00359260 -draining a 1 1 & 1 0 01358231 -dramatic a 4 6 ! & \ = + ; 4 2 00794825 01284212 02714800 01469161 -dramaturgic a 1 2 \ + 1 0 03005423 -dramaturgical a 1 2 \ + 1 0 03005423 -draped a 2 1 & 2 1 01695505 00671976 -drastic a 1 1 & 1 1 00841934 -draughty a 1 2 & + 1 1 01397674 -drawn a 2 1 & 2 2 02433000 01653992 -drawn-out a 2 1 & 2 0 01439155 00981195 -dread a 1 2 & + 1 0 00193799 -dreaded a 1 1 & 1 0 00193799 -dreadful a 3 2 & + 3 2 00193799 01126291 01803247 -dreamed a 1 1 & 1 1 01935139 -dreamless a 1 1 & 1 0 02459862 -dreamlike a 1 1 & 1 1 01939226 -dreamy a 2 2 & + 2 1 00165585 00876204 -drear a 1 1 & 1 0 00364881 -dreary a 2 2 & + 2 1 00807399 00364881 -drenched a 1 1 & 1 1 01696165 -drenched_in a 1 1 & 1 0 01696165 -dress a 2 1 & 2 0 01043226 01042921 -dressed a 4 1 & 4 1 00454440 01955796 01005306 00455824 -dressed-up a 1 1 & 1 0 00455824 -dressed_to_kill a 1 1 & 1 0 00455824 -dressed_to_the_nines a 1 1 & 1 0 00455824 -dressy a 1 3 & + ; 1 1 01795353 -dried a 2 1 & 2 2 02553017 01072382 -dried-out a 1 1 & 1 1 02552849 -dried-up a 2 2 & ; 2 0 02553234 02553137 -drifting a 1 1 & 1 0 02127159 -drill-like a 1 1 & 1 0 00801616 -drilled a 1 1 & 1 1 01912145 -drinkable a 1 1 ! 1 0 00797113 -drip-dry a 2 1 & 2 0 02534042 01360085 -dripless a 1 1 & 1 0 01398648 -drippy a 3 2 & + 3 0 02549234 01397786 00854413 -driven a 3 1 & 3 1 02521758 01558749 00104699 -driving a 2 1 & 2 1 00808940 00874634 -drizzling a 1 1 & 1 1 02486504 -drizzly a 1 2 & + 1 0 02549234 -droll a 1 1 & 1 0 01265938 -drooping a 3 2 & ; 3 0 02433365 02403944 01238486 -droopy a 1 2 & + 1 0 02403944 -dropping a 1 1 & 1 0 02486628 -dropsical a 1 2 & + 1 0 01176544 -drowsing a 1 1 & 1 0 00188436 -drowsy a 2 2 & + 2 1 00188436 00165766 -drudging a 1 1 & 1 0 00293376 -drug-addicted a 1 1 & 1 0 00047406 -drug-free a 1 1 & 1 0 00799800 -drugged a 1 1 & 1 1 00798879 -drugless a 1 1 & 1 1 01166314 -drum-like a 1 1 & 1 0 02146760 -drum-shaped a 1 1 & 1 0 02146760 -drumhead a 1 1 & 1 0 01633880 -drunk a 2 2 & + 2 2 00797299 00920260 -drunken a 1 2 & + 1 1 00798491 -drupaceous a 1 2 \ + 1 0 02714948 -dry a 16 5 ! & ^ = + 16 2 02551380 01266092 02555267 02554940 02554546 02367785 01178669 02474076 02307729 02260730 01867052 01793106 01792973 01158837 00857387 00799953 -dry-cleaned a 1 1 & 1 0 00418110 -dry-eyed a 1 1 & 1 1 02473977 -dry-shod a 1 1 & 1 0 02553560 -dual a 3 2 & + 3 1 02217452 02217799 02183135 -dual-lane a 1 1 & 1 0 02221550 -dualistic a 1 2 \ + 1 0 02947252 -dubious a 3 2 & + 3 2 00338013 01916979 00338669 -dubitable a 1 1 & 1 0 01916979 -ducal a 1 2 \ + 1 0 03062754 -duck-billed a 1 1 & 1 0 00206900 -duckbill a 1 1 & 1 0 00206900 -ductile a 2 2 & + 2 0 02451551 02144436 -ductless a 1 1 \ 1 0 03062899 -dud a 1 1 & 1 0 01425154 -due a 4 2 ! & 4 2 00136354 00929916 00137725 00171872 -dulcet a 2 1 & 2 0 01800873 01501821 -dull a 12 6 ! & ^ = + ; 12 8 00806512 00283703 01454985 01345307 00393992 00803971 00440579 00036998 00800248 02107634 02011622 00462249 -dull-purple a 1 1 & 1 0 00374735 -dull-white a 1 1 & 1 0 00389150 -dulled a 3 1 & 3 1 01343679 00800597 00405406 -dumb a 4 2 & + 4 1 00440579 00152629 00152004 00151855 -dumbfounded a 1 1 & 1 0 02358277 -dumbfounding a 1 1 & 1 0 00645856 -dumbstricken a 1 1 & 1 0 02358277 -dumbstruck a 1 1 & 1 0 02358277 -dumfounded a 1 1 & 1 1 02358277 -dumfounding a 1 1 & 1 0 00645856 -dummy a 1 1 & 1 0 01572831 -dumpy a 3 3 & \ + 3 0 02715047 02386962 00987510 -dun a 1 1 & 1 1 00374818 -dun-colored a 1 1 & 1 0 00397441 -dun-coloured a 1 1 & 1 0 00397441 -duncical a 1 1 & 1 0 00440292 -duncish a 1 1 & 1 0 00440292 -duodecimal a 1 1 & 1 0 01915482 -duodenal a 1 2 \ + 1 0 02908647 -duple a 1 1 & 1 0 02217452 -duplex a 2 2 & ; 2 0 02218179 00233756 -duplicable a 1 2 & + 1 1 01868185 -duplicatable a 1 1 & 1 0 01868185 -duplicate a 2 1 & 2 0 02063903 01486854 -duplicitous a 1 2 & + 1 0 01223271 -durable a 3 2 & + 3 1 01439496 02124096 01754049 -dural a 1 2 \ + 1 0 02715142 -dusky a 2 3 & + ; 2 2 00275486 00245458 -dusky-colored a 1 1 & 1 0 00397314 -dusky-coloured a 1 1 & 1 0 00397314 -dust-covered a 1 1 & 1 0 01696346 -dustlike a 1 1 & 1 0 02233072 -dusty a 2 2 & + 2 0 01696346 01689580 -dutch a 1 1 \ 1 1 02960686 -duteous a 1 2 & + 1 0 01613047 -dutiable a 1 1 & 1 0 02400628 -dutiful a 1 2 & + 1 0 01613047 -duty-bound a 1 1 & 1 0 01616891 -duty-free a 1 1 & 1 0 02401196 -dwarfish a 1 2 & + 1 0 01393024 -dwindling a 1 1 & 1 1 02537513 -dyadic a 1 1 \ 1 0 02854257 -dyed a 1 1 & 1 0 01572171 -dying a 2 3 ! & ; 2 1 00003939 00811248 -dynamic a 3 6 ! & ^ \ + ; 3 1 00808191 02979878 00041618 -dynamical a 1 3 & ^ + 1 0 00808191 -dynastic a 1 2 \ + 1 0 02715244 -dysfunctional a 2 2 & + 2 0 01275057 00046792 -dysgenic a 1 3 ! \ + 1 0 02715365 -dyslectic a 1 2 & + 1 0 01275195 -dyslexic a 2 3 & \ + 2 0 03040408 01275195 -dyslogistic a 1 1 & 1 0 00907243 -dyspeptic a 2 2 & + 2 0 02544427 01135269 -dysphemistic a 1 2 ! + 1 0 00908672 -dysphoric a 1 3 ! ^ + 1 0 00909363 -dysplastic a 1 2 \ + 1 0 02715567 -dyspneal a 1 3 & ^ + 1 0 00267871 -dyspneic a 1 2 & ^ 1 0 00267871 -dyspnoeal a 1 3 & ^ + 1 0 00267871 -dyspnoeic a 1 2 & ^ 1 0 00267871 -dystopian a 2 3 ! \ + 2 0 03020075 02498507 -each a 1 1 & 1 1 02269635 -eager a 1 4 ! & ^ + 1 1 00810916 -eagle-eyed a 1 1 & 1 1 02157594 -ear-like a 1 1 & 1 0 02045144 -ear-shaped a 1 1 & 1 0 02045144 -eared a 2 2 ! & 2 1 02581829 00812170 -earless a 1 1 ! 1 0 00812860 -earlier a 1 2 & ; 1 0 00814611 -earliest a 1 2 & ; 1 1 00814611 -early a 6 6 ! & ^ = + ; 6 5 00812952 00817424 01729384 01648617 00819852 01732958 -early-blooming a 1 1 & 1 0 01254607 -early-flowering a 1 1 & 1 0 01254607 -earlyish a 1 1 & 1 0 00814902 -earned a 1 2 ! & 1 1 00821367 -earnest a 3 2 & + 3 1 02118840 02179968 01910114 -earsplitting a 1 1 & 1 1 01453467 -earthborn a 3 1 & 3 0 01557790 01259280 01181116 -earthbound a 2 1 & 2 1 01181251 01346343 -earthen a 1 1 \ 1 0 02905050 -earthlike a 2 1 & 2 1 00374944 01181329 -earthly a 1 4 ! & ^ + 1 0 01180695 -earthshaking a 2 1 & 2 1 01453625 02162458 -earthy a 5 3 & \ + 5 3 00683531 01570286 01317362 02905151 01940472 -eased a 1 1 & 1 0 01519465 -east a 1 2 ! & 1 1 00823350 -east-central a 1 1 & 1 0 00827192 -east_african a 1 2 \ + 1 0 02941957 -east_german a 1 1 \ 1 1 02957699 -east_indian a 1 2 \ + 1 0 02942077 -east_pakistani a 1 1 \ 1 0 03046349 -eastbound a 1 1 & 1 0 00823556 -easterly a 2 2 & + 2 0 00823832 00823665 -eastern a 5 3 ! & = 5 3 00823971 00826959 00823832 00825604 00823665 -eastern_orthodox a 1 2 \ ; 1 0 02953598 -easternmost a 1 1 & 1 0 00824094 -eastmost a 1 1 & 1 0 00824094 -eastside a 1 1 & 1 0 00824183 -eastward a 1 1 & 1 1 00823556 -easy a 12 6 ! & ^ = + ; 12 5 00749230 01272176 00822115 01808139 01192035 02364721 02022556 01144571 00477553 00361837 00184075 00015097 -easygoing a 3 3 & + ; 3 0 01272176 00750054 00712004 -eatable a 1 2 & ^ 1 1 00828779 -ebionite a 1 1 \ 1 0 02716412 -ebon a 1 1 & 1 0 00389231 -ebony a 1 1 & 1 0 00389231 -ebracteate a 1 2 ! \ 1 0 02716516 -ebullient a 1 2 & + 1 1 02279723 -eccentric a 2 3 ! & + 2 2 00608791 00543200 -ecclesiastic a 1 1 \ 1 0 02899486 -ecclesiastical a 1 1 \ 1 1 02899486 -eccrine a 1 1 ! 1 0 00098736 -ecdemic a 1 1 ! 1 0 01427602 -echoic a 2 2 ! & 2 0 01217579 02008820 -echoing a 1 1 & 1 0 02009993 -echoless a 1 1 & 1 0 02008508 -echolike a 1 1 & 1 0 02008820 -echt a 1 2 & ^ 1 0 01115349 -eclectic a 1 2 & + 1 1 00775486 -ecologic a 2 3 \ + ; 2 0 02906778 02906478 -ecological a 2 3 \ + ; 2 0 02906778 02906478 -econometric a 1 2 \ + 1 0 02919733 -economic a 5 3 & \ + 5 3 02716739 02716605 00840212 02577454 01871565 -economical a 3 4 & \ + ; 3 3 00840212 02716739 02421364 -ecstatic a 1 2 & + 1 1 01367008 -ectodermal a 1 2 \ + 1 0 02876360 -ectodermic a 1 2 \ + 1 0 02876360 -ectomorphic a 1 3 ! & ^ 1 0 00827923 -ectopic a 1 3 \ + ; 1 0 02717149 -ectothermic a 1 1 & 1 0 02533075 -ectozoan a 1 2 \ + 1 0 03064239 -ecuadorian a 1 2 \ + 1 0 02966324 -ecumenic a 1 2 & + 1 0 02092460 -ecumenical a 2 2 & + 2 0 02092460 00527188 -edacious a 1 2 & + 1 0 00010726 -edematous a 1 2 & + 1 1 01176544 -edental a 1 1 & 1 0 02439740 -edentate a 1 1 & 1 0 02439740 -edentulate a 1 1 & 1 0 02439740 -edentulous a 1 1 & 1 1 02439875 -edged a 3 1 & 3 1 00258411 01374004 00801691 -edgeless a 1 1 & 1 0 00800678 -edgy a 1 2 & + 1 1 02406370 -edible a 1 4 ! & ^ + 1 0 00828779 -edified a 1 1 & 1 0 00884157 -edifying a 1 1 ! 1 1 01325451 -edited a 1 1 & 1 0 00352877 -editorial a 2 2 \ + 2 1 02717258 02717402 -educated a 2 3 ! & ^ 2 1 00829745 01307375 -educational a 2 3 & \ + 2 2 02946221 01324565 -educative a 1 2 & + 1 0 01324424 -edwardian a 1 2 \ + 1 0 03062990 -eel-shaped a 1 1 & 1 0 02146864 -eellike a 1 1 & 1 0 02315808 -eerie a 2 1 & 2 0 01575299 00968522 -eery a 1 2 & + 1 0 00968522 -effaceable a 1 1 & 1 0 00897759 -effected a 1 1 & 1 0 02129535 -effective a 6 6 ! & ^ = + ; 6 5 00834198 00510644 00839225 00832784 00044132 01660712 -effectual a 2 4 & ^ = + 2 0 00834198 02499148 -effeminate a 1 2 & + 1 0 01476325 -efferent a 1 4 ! & + ; 1 0 00333987 -effervescent a 3 3 ! & + 3 0 02277279 02276088 00805810 -effervescing a 1 1 & 1 0 02276305 -effete a 1 1 & 1 0 01297658 -efficacious a 2 5 ! & ^ = + 2 1 00838856 00834198 -efficient a 2 4 ! & ^ + 2 2 00839619 00510644 -efflorescent a 1 2 & + 1 0 01488856 -effluent a 1 2 & + 1 0 01295837 -effortful a 1 4 ! & ^ + 1 0 00836277 -effortless a 2 4 ! & ^ + 2 1 00838296 00749749 -effulgent a 1 2 & + 1 0 00280463 -effusive a 2 2 & + 2 0 00806064 00720524 -egalitarian a 1 2 & + 1 0 00715677 -egg-filled a 1 1 & 1 0 01084575 -egg-producing a 1 1 & 1 0 01478353 -egg-shaped a 1 1 & 1 0 02046199 -egocentric a 1 3 & ^ + 1 0 00101800 -egoistic a 1 4 ! & ^ + 1 0 00101800 -egoistical a 1 2 & ^ 1 0 00101800 -egotistic a 2 2 & + 2 0 02098694 01891773 -egotistical a 2 2 & + 2 0 02098694 01891773 -egregious a 1 1 & 1 0 00580039 -egyptian a 1 2 \ + 1 0 02971469 -eidetic a 1 1 & 1 0 01979501 -eight a 1 1 & 1 1 02187073 -eight-day a 1 1 & 1 0 01439706 -eight-fold a 1 1 & 1 0 02219988 -eight-membered a 1 1 & 1 0 01503504 -eight-sided a 1 1 & 1 0 00238712 -eighteen a 1 1 & 1 1 02188108 -eighteenth a 1 1 & 1 1 02204363 -eightfold a 1 1 & 1 0 02219988 -eighth a 1 1 & 1 1 02203123 -eightieth a 1 1 & 1 0 02208971 -eightpenny a 1 1 & 1 0 02223066 -eighty a 1 1 & 1 1 02194151 -eighty-eight a 1 1 & 1 0 02194946 -eighty-fifth a 1 1 & 1 0 02209080 -eighty-five a 1 1 & 1 0 02194649 -eighty-four a 1 1 & 1 0 02194550 -eighty-nine a 1 1 & 1 0 02195049 -eighty-one a 1 1 & 1 0 02194255 -eighty-seven a 1 1 & 1 0 02194844 -eighty-six a 1 1 & 1 0 02194747 -eighty-three a 1 1 & 1 0 02194448 -eighty-two a 1 1 & 1 0 02194351 -einsteinian a 1 2 \ + 1 0 03031247 -elaborate a 2 2 & + 2 2 01795933 00310433 -elaborated a 1 1 & 1 0 00310433 -elapsed a 1 1 < 1 1 03148724 -elastic a 2 4 ! & ^ + 2 2 00843146 01028163 -elasticised a 1 1 & 1 0 00844112 -elasticized a 1 1 & 1 0 00844112 -elated a 2 3 ! & ^ 2 0 00704609 01367211 -elating a 1 1 & 1 0 00921538 -elder a 1 2 & + 1 1 02100031 -elderly a 1 1 & 1 1 01644225 -eldest a 1 2 & + 1 1 01012100 -eldritch a 1 1 & 1 0 01575424 -elect a 2 2 & + 2 0 02123579 01294857 -elected a 1 1 & 1 1 00846052 -elective a 2 3 ! & + 2 0 00846052 00847577 -electoral a 2 3 & \ + 2 1 02717538 00846219 -electric a 3 3 & \ + 3 1 02826877 02406640 00921631 -electrical a 2 1 \ 2 1 02826701 02826877 -electrifying a 1 1 & 1 1 00921866 -electrocardiographic a 1 1 \ 1 0 02717678 -electrochemical a 1 2 \ + 1 0 02717784 -electroencephalographic a 1 1 \ 1 0 02717896 -electrolytic a 2 2 \ + 2 0 02718131 02718008 -electromagnetic a 1 2 \ + 1 1 02926320 -electromechanical a 1 1 \ 1 0 02718256 -electromotive a 1 1 \ 1 0 02718393 -electron_microscopic a 1 1 \ 1 1 02918724 -electronegative a 1 1 & 1 0 00358534 -electroneutral a 1 1 & 1 0 00359160 -electronic a 2 2 \ + 2 1 02718497 02718719 -electrophoretic a 1 2 \ + 1 0 02718845 -electropositive a 1 1 & 1 0 00358678 -electrostatic a 1 2 \ + 1 1 02719009 -eleemosynary a 1 1 & 1 0 00359645 -elegant a 3 4 ! & ^ + 3 1 00849357 01142069 01139613 -elegiac a 2 2 & \ 2 0 02719244 01365407 -elemental a 3 2 & \ 3 1 02719395 02719503 01856238 -elementary a 3 3 & \ + 3 1 00750296 02719685 01856238 -elephantine a 1 1 & 1 0 01385773 -elevated a 3 1 & 3 1 01208044 01588619 00881432 -eleven a 1 1 & 1 1 02187379 -eleven-sided a 1 1 & 1 0 00238934 -eleventh a 1 1 & 1 1 02203500 -elfin a 4 2 & \ 4 2 01575810 01393141 02719872 02122543 -elfish a 1 1 & 1 0 02122543 -elflike a 1 1 & 1 0 01393141 -elicited a 1 1 & 1 0 02283356 -eligible a 1 4 ! & ^ + 1 1 00851744 -elite a 1 2 & + 1 0 02123579 -elizabethan a 1 2 \ + 1 0 03031400 -ellipsoid a 1 2 & + 1 0 02046446 -ellipsoidal a 1 2 & + 1 0 02046446 -elliptic a 3 2 & + 3 0 02168132 02046199 00548029 -elliptical a 2 2 & + 2 0 02046199 00548029 -elocutionary a 2 3 & \ + 2 0 03063176 00073935 -elongate a 2 1 & 2 0 02168699 01434007 -elongated a 2 1 & 2 2 01434218 01434007 -eloquent a 1 2 & + 1 1 00150505 -elucidative a 1 2 & + 1 0 01323815 -elusive a 4 2 & + 4 2 01273316 00149262 01717901 00746451 -elvish a 1 1 & 1 0 02122543 -elysian a 2 3 & \ + 2 0 02871347 01121507 -emaciated a 1 1 & 1 1 00988988 -emancipated a 1 1 & 1 1 01063102 -emancipative a 1 2 & + 1 0 02005364 -emarginate a 1 1 & 1 0 02246826 -emasculate a 1 1 & 1 0 01476325 -emasculated a 1 1 & 1 0 02137070 -embarrassed a 2 1 & 2 1 00531628 00154270 -embarrassing a 2 1 & 2 2 00746047 01803335 -embattled a 2 1 & 2 0 01843906 01796109 -embedded a 2 1 & 2 1 01657967 01328419 -embezzled a 1 1 & 1 0 01403151 -emblematic a 2 2 & + 2 1 01982186 02469119 -emblematical a 1 2 & + 1 0 01982186 -embodied a 1 1 & 1 0 00630466 -emboldened a 1 1 & 1 1 00250659 -embolic a 1 2 \ + 1 0 02992453 -embonpoint a 1 1 & 1 0 00986766 -embossed a 1 1 & 1 0 00057149 -embroiled a 1 1 & 1 0 01516014 -embryologic a 1 2 & + 1 0 01490257 -embryonal a 1 2 & + 1 0 01490257 -embryonic a 2 2 & + 2 0 01490257 00818581 -embryotic a 1 2 & + 1 0 00818581 -emended a 1 1 & 1 0 00352877 -emergent a 2 2 & + 2 0 01143855 00003553 -emerging a 2 1 & 2 0 01733082 00003553 -emeritus a 1 1 & 1 1 01645490 -eminent a 2 2 & + 2 0 02339120 01205473 -emmetropic a 1 2 ! + 1 0 00105566 -emollient a 1 2 & + 1 0 01153844 -emotional a 4 6 ! & ^ \ = + 4 3 01927279 00853776 02983577 00085630 -emotionless a 1 2 & + 1 0 01257990 -emotive a 1 2 & + 1 0 00854255 -empathetic a 1 2 & + 1 0 02375639 -empathic a 1 1 & 1 0 02375639 -emphasised a 1 1 & 1 0 02319765 -emphasized a 1 1 & 1 0 02319765 -emphatic a 3 2 & + 3 1 02319765 00842041 00156575 -emphysematous a 1 2 \ + 1 1 03009131 -empiric a 2 4 & \ + ; 2 0 03063305 00858917 -empirical a 2 5 ! & \ + ; 2 1 00858917 03063305 -employable a 1 1 ! 1 0 00865201 -employed a 2 3 ! & ^ 2 1 00863946 00942806 -empowered a 1 1 & 1 0 00179315 -empty a 4 4 ! & = + 4 2 01086545 01498084 01269319 01088749 -empty-bellied a 1 1 & 1 0 01269319 -empty-handed a 2 1 & 2 0 02334561 01087300 -empty-headed a 1 1 & 1 0 02120828 -empurpled a 1 1 & 1 0 02017372 -empyreal a 2 3 & \ + 2 0 02720042 01121757 -empyrean a 2 2 & \ 2 0 02720042 01121757 -emulous a 2 2 & \ 2 0 02720203 00512941 -en_deshabille a 1 1 & 1 0 00459210 -en_garde a 1 1 & 1 0 01630939 -enabling a 1 2 ! & 1 1 01194806 -enamored a 1 2 & + 1 0 01465668 -enate a 1 1 & 1 0 01972349 -enatic a 1 1 & 1 0 01972349 -encased a 1 1 & 1 0 02155054 -enceinte a 1 1 & 1 0 00173391 -enchained a 1 1 & 1 1 00253196 -enchanted a 1 2 ! & 1 1 00865471 -enchanting a 1 1 & 1 0 00166753 -encircled a 1 1 & 1 0 01658666 -encircling a 1 1 & 1 0 00332091 -enclosed a 1 2 ! & 1 0 01656628 -encomiastic a 1 2 & + 1 0 00906099 -encompassing a 2 1 & 2 0 00526062 00449332 -encouraged a 1 1 & 1 0 01805489 -encouraging a 2 3 ! & ^ 2 0 00866471 02356244 -encroaching a 1 1 & 1 0 01352320 -encrusted a 1 1 & 1 0 01695749 -encumbered a 1 2 ! & 1 0 00867916 -encyclical a 1 1 & 1 0 00541349 -encyclopaedic a 1 1 & 1 0 00527744 -encyclopedic a 1 1 & 1 0 00527744 -encysted a 1 1 \ 1 0 02876514 -end-rhymed a 1 1 & 1 0 01966212 -end-stopped a 1 1 ! 1 0 00873387 -end-to-end a 1 1 & 1 0 01445184 -endangered a 1 2 & ; 1 0 02524192 -endearing a 1 1 & 1 1 01459755 -ended a 1 1 & 1 0 01003277 -endemic a 3 3 ! & ; 3 0 01427757 01106815 01036383 -endemical a 1 1 & 1 0 01427757 -endergonic a 1 2 ! ; 1 0 00292024 -endermatic a 1 1 \ 1 0 02876601 -endermic a 1 1 \ 1 0 02876601 -endless a 4 2 & + 4 2 01439784 01008174 01007947 00596211 -endocentric a 1 2 ! ; 1 0 00870614 -endocrinal a 1 2 \ + 1 0 02915055 -endocrine a 1 2 ! \ 1 0 02915055 -endodontic a 1 2 \ + 1 0 02915507 -endoergic a 1 2 ! ^ 1 0 00872195 -endogamic a 2 1 ; 2 0 00871816 00871051 -endogamous a 2 3 ! + ; 2 0 00871816 00871051 -endogenetic a 1 3 & + ; 1 0 01331675 -endogenic a 2 4 ! & + ; 2 0 00873113 01331675 -endogenous a 2 2 ! \ 2 0 02876745 00873113 -endometrial a 1 2 \ + 1 0 03063492 -endomorphic a 1 2 ! ^ 1 0 00828175 -endoparasitic a 1 2 \ + 1 0 02915666 -endoscopic a 1 2 \ + 1 0 03063601 -endothelial a 1 2 \ + 1 1 03018375 -endothermal a 1 2 & ^ 1 0 00872510 -endothermic a 1 3 ! & ^ 1 0 00872510 -endovenous a 1 1 \ 1 0 02890703 -endowed a 1 2 ! & 1 1 00671091 -endozoan a 1 2 \ + 1 0 03064076 -endozoic a 1 0 1 0 00889490 -endurable a 1 1 & 1 0 02435206 -enduring a 2 2 & + 2 1 01754873 01736384 -energetic a 2 4 ! & ^ + 2 2 00873603 00885099 -energising a 1 1 & 1 0 00809164 -energizing a 1 1 & 1 0 00809164 -energy-absorbing a 1 1 ^ 1 0 00872195 -energy-releasing a 2 2 & ^ 2 0 00872347 00108145 -energy-storing a 1 1 & 1 0 00107868 -enervated a 1 1 & 1 0 02324944 -enervating a 1 1 & 1 1 01358096 -enfeebling a 1 1 & 1 0 01358096 -enforceable a 1 1 ! 1 1 00557221 -enforced a 1 1 ! 1 1 00557478 -enfranchised a 1 1 ! 1 0 00876609 -engaged a 7 2 & ; 7 2 00293611 01516207 01988468 01623360 01100817 00864203 00567287 -engaging a 1 1 & 1 0 00167671 -english a 2 2 \ + 2 1 03003344 03003616 -english-speaking a 1 1 & 1 0 00496845 -engorged a 1 1 & 1 0 01084486 -engraved a 1 1 & 1 1 00317310 -engrossed a 2 1 & 2 2 00163948 02285147 -engrossing a 1 1 & 1 1 01344171 -enhanced a 1 1 & 1 0 00880765 -enhancive a 2 2 & + 2 0 01340522 00070111 -enigmatic a 2 2 & + 2 1 00534524 00102930 -enigmatical a 1 2 & + 1 0 00534524 -enjoyable a 1 2 & + 1 1 01801029 -enkindled a 1 1 & 1 0 00475625 -enlarged a 4 1 & 4 0 00555117 01383935 01176695 00881177 -enlightened a 2 4 ! & ^ + 2 1 00884007 01307375 -enlightening a 2 1 ! 2 0 01325777 01325451 -enlivened a 2 3 ! & ^ 2 0 00119875 00118844 -enlivening a 1 1 & 1 0 01356932 -enmeshed a 1 1 & 1 0 00255453 -ennobling a 2 1 & 2 0 01588426 01323207 -enolic a 1 2 \ + 1 0 02915271 -enormous a 1 2 & + 1 1 01385255 -enough a 1 2 & + 1 1 02336109 -enraged a 1 1 & 1 1 00114454 -enraptured a 1 1 & 1 0 01367008 -ensiform a 1 1 & 1 0 02168248 -ensorcelled a 1 1 & 1 0 00865765 -ensuant a 1 1 & 1 0 00122844 -ensuing a 1 1 & 1 1 00127661 -entangled a 3 1 & 3 2 01516014 00255582 01065321 -enteral a 2 2 \ + 2 0 03063721 02935530 -enteric a 2 2 \ + 2 0 03063721 02935530 -enterprising a 1 4 ! & ^ + 1 1 00884778 -entertained a 1 1 & 1 0 01805355 -entertaining a 1 1 & 1 0 01344344 -enthralled a 1 1 & 1 0 00865620 -enthralling a 1 1 & 1 0 00166753 -enthusiastic a 1 4 ! & ^ + 1 1 00885695 -enticing a 1 1 & 1 0 02097480 -entire a 4 2 & + 4 3 00515380 00515870 02244890 02137394 -entitled a 1 1 & 1 1 00852425 -entomologic a 1 2 \ + 1 0 03063868 -entomological a 1 2 \ + 1 0 03063868 -entomophilous a 1 1 ! 1 0 00196799 -entozoan a 2 2 \ + 2 0 03064076 00889490 -entozoic a 1 1 ! 1 0 00889490 -entranced a 1 1 & 1 0 00865620 -entrancing a 1 1 & 1 0 00166753 -entrenched a 2 1 & 2 0 02526061 01635962 -entrepreneurial a 2 3 & \ + 2 0 03064382 00885288 -enumerable a 1 1 & 1 0 00301589 -enured a 1 1 & 1 0 02447779 -enveloping a 1 1 & 1 1 00449525 -enviable a 1 1 & 1 0 00733541 -envious a 1 2 & + 1 1 00888765 -environmental a 2 2 \ + 2 1 02943303 02943151 -envisioned a 1 1 & 1 0 01935301 -enwrapped a 1 1 & 1 0 00163948 -enzootic a 1 1 & 1 0 01428122 -enzymatic a 1 2 \ + 1 1 03005039 -eolithic a 1 1 \ 1 0 03089804 -eolotropic a 1 2 & ; 1 0 01361264 -eonian a 2 3 & \ + 2 0 02720312 01755024 -eosinophilic a 1 2 \ + 1 1 03010071 -eparchial a 1 2 \ + 1 0 02871575 -epenthetic a 1 1 \ 1 0 02720484 -ephemeral a 1 2 & + 1 1 01756292 -ephesian a 1 1 \ 1 0 02715677 -epic a 2 3 & \ + 2 2 01386010 03015589 -epical a 1 2 \ + 1 0 03015589 -epicarpal a 1 2 \ + 1 0 02932231 -epicene a 2 1 & 2 0 01478907 01476325 -epicurean a 3 3 & \ + 3 0 03001153 01298884 01298239 -epicyclic a 1 2 \ + 1 0 02940115 -epicyclical a 1 2 \ + 1 0 02940115 -epideictic a 1 1 & 1 0 00720777 -epideictical a 1 1 & 1 0 00720777 -epidemic a 1 4 ! & + ; 1 1 01426375 -epidemiologic a 1 2 \ + 1 0 02976681 -epidemiological a 1 2 \ + 1 0 02976681 -epidermal a 1 2 \ + 1 0 02876088 -epidermic a 1 2 \ + 1 0 02876088 -epidural a 1 1 \ 1 0 02720601 -epigastric a 2 2 \ + 2 0 02720818 02720715 -epigrammatic a 1 2 & + 1 0 00546951 -epileptic a 1 2 \ + 1 1 02945660 -epilithic a 1 1 \ 1 0 02720965 -epimorphic a 1 2 & ; 1 0 01529897 -epiphyseal a 1 2 \ + 1 1 02990501 -epiphysial a 1 2 \ + 1 0 02990501 -epiphytic a 1 3 \ + ; 1 0 03022349 -epiphytotic a 1 2 & ; 1 0 01426749 -episcopal a 2 3 \ + ; 2 0 02954981 02721057 -episcopalian a 1 2 \ ; 1 0 02954981 -episodic a 3 1 & 3 0 02481608 01842468 01756758 -epistemic a 1 2 \ + 1 0 02850132 -epistemological a 1 2 \ + 1 0 02850132 -epistolary a 1 2 & + 1 0 01046553 -epistolatory a 1 1 & 1 1 01046553 -epithelial a 1 2 \ + 1 0 02932334 -epitheliod a 1 1 \ 1 0 02932462 -epizoan a 1 2 \ + 1 0 03064239 -epizoic a 1 1 ! 1 0 00889672 -epizootic a 1 2 & ; 1 0 01427010 -epoch-making a 1 1 & 1 0 02162179 -epochal a 1 2 & + 1 0 02162179 -eponymic a 1 2 \ + 1 0 03036595 -eponymous a 1 2 \ + 1 0 03036595 -equable a 2 1 & 2 0 02402943 01134486 -equal a 2 5 ! & ^ = + 2 1 00889831 00051045 -equal_to a 1 1 & 1 1 00051373 -equanimous a 1 2 & + 1 0 00530354 -equatorial a 3 4 ! & \ + 3 0 02929769 02929637 02443623 -equestrian a 2 2 \ + 2 0 02721342 02721220 -equiangular a 1 1 & 1 0 02048794 -equidistant a 1 1 & 1 0 00890985 -equilateral a 1 1 & 1 0 00891081 -equine a 2 2 \ + 2 0 02721547 02721439 -equinoctial a 2 2 \ + 2 0 02721762 02721618 -equipoised a 1 1 & 1 0 02029954 -equipotent a 1 1 & 1 1 01824563 -equipped a 4 3 ! & ; 4 1 01094049 01096990 01844002 00142622 -equiprobable a 1 1 & 1 0 01413501 -equipt a 1 1 & 1 0 01094049 -equitable a 1 3 ! & ^ 1 1 00958151 -equivalent a 1 2 & + 1 0 00890351 -equivocal a 3 4 ! & ^ + 3 1 00895442 01917370 00551120 -eradicable a 1 2 ! & 1 0 00897517 -erasable a 1 1 & 1 0 00897759 -erasmian a 1 2 \ + 1 0 03031615 -erect a 2 5 ! & = + ; 2 1 01235859 01151592 -erectile a 2 2 & ; 2 0 01236443 00947012 -eremitic a 2 4 ! & \ + 2 0 02686950 02578546 -eremitical a 2 3 & \ + 2 0 02686950 02578546 -ergodic a 1 2 & ; 1 0 01924585 -ergonomic a 1 2 \ + 1 0 02721877 -ergotic a 1 2 \ + 1 0 02721979 -ergotropic a 1 2 \ + 1 1 02722083 -eristic a 1 2 & + 1 0 00604221 -eristical a 1 1 & 1 0 00604221 -eritrean a 1 2 \ + 1 0 03064520 -eroded a 1 1 & 1 1 02582064 -erogenous a 1 1 & 1 0 02104190 -erose a 1 1 & 1 0 02246903 -erosive a 2 2 & + 2 0 00588062 00587376 -erotic a 1 2 & + 1 1 02132080 -errant a 2 2 & + 2 0 00964303 00600395 -erratic a 3 1 & 3 1 00345189 02127509 00725227 -errhine a 1 1 & 1 0 00323796 -erring a 1 1 & 1 0 00964470 -erroneous a 1 2 & + 1 1 00632949 -error-prone a 1 1 & 1 0 00964470 -errorless a 1 1 & 1 0 01750746 -ersatz a 1 1 & 1 1 01572974 -erstwhile a 1 1 & 1 0 01729566 -erudite a 1 2 & + 1 1 02084358 -eruptive a 3 4 & \ + ; 3 0 02722187 01354925 00040534 -erythematous a 1 2 \ + 1 0 02722304 -erythroid a 1 1 \ 1 1 02722421 -erythropoietic a 1 2 \ + 1 0 02722501 -escaped a 1 1 & 1 1 01062114 -eschatological a 1 2 \ + 1 0 02722630 -esophageal a 1 2 \ + 1 0 02722801 -esoteric a 1 3 ! & ^ 1 1 00898963 -especial a 1 1 & 1 0 00488187 -essene a 1 1 \ 1 0 02722901 -essential a 5 7 ! & ^ \ = + ; 5 3 01580306 00900616 01276150 02722988 00055539 -established a 5 2 ! & 5 3 01635146 02129535 01690606 01893939 01035422 -esteemed a 1 1 & 1 0 01982957 -esthetic a 3 2 & \ 3 1 00069531 02991287 02393086 -esthetical a 1 2 & + 1 0 00069531 -estimable a 3 3 ! & ^ 3 0 00904163 01983162 00301432 -estival a 1 1 & 1 0 01255022 -estonian a 1 2 \ + 1 0 02723158 -estranged a 1 1 & 1 1 01463326 -estranging a 1 1 & 1 1 01685906 -estrogenic a 1 2 \ + 1 0 02723312 -estrous a 1 4 ! & + ; 1 0 02137806 -estuarial a 1 2 \ + 1 0 02723420 -estuarine a 1 1 \ 1 0 02723420 -esurient a 3 2 & + 3 0 01269506 00888477 00010726 -etched a 1 1 & 1 0 00317310 -eternal a 2 2 & + 2 2 01755024 01439784 -ethereal a 4 4 & \ + ; 4 1 00626136 02871060 01179345 00706455 -ethical a 3 5 ! & ^ \ + 3 3 02723563 00905386 02035086 -ethiopian a 1 2 \ + 1 0 03064693 -ethnic a 2 2 & + 2 1 02248693 01784401 -ethnical a 1 1 & 1 0 02248693 -ethnocentric a 1 1 \ 1 0 03135290 -ethnographic a 1 1 \ 1 0 03064883 -ethnographical a 1 2 \ + 1 0 03064883 -ethnologic a 1 2 \ + 1 0 03065047 -ethnological a 1 2 \ + 1 0 03065047 -etiolate a 1 2 & ; 1 0 00405554 -etiolated a 1 2 & ; 1 0 00405554 -etiologic a 2 2 \ + 2 0 02941235 02940953 -etiological a 2 2 \ + 2 0 02941235 02940953 -etymological a 1 2 \ + 1 1 03022003 -eucaryotic a 1 3 ! \ + 1 0 02859974 -eucharistic a 1 2 \ + 1 0 02715802 -euclidean a 1 2 \ + 1 0 03065227 -euclidian a 1 2 \ + 1 0 03065227 -eudaemonic a 1 2 \ + 1 0 02859817 -eudemonic a 1 2 \ + 1 0 02859817 -eugenic a 1 3 ! \ + 1 1 02715949 -eukaryotic a 1 3 ! \ + 1 0 02859974 -eulogistic a 1 2 & + 1 0 00906099 -euphemistic a 1 2 ! + 1 0 00908483 -euphonic a 1 2 \ + 1 0 02951702 -euphonical a 1 2 \ + 1 0 02951702 -euphonious a 2 4 ! & + ; 2 0 00300738 01455221 -euphonous a 1 2 & + 1 0 00300738 -euphoriant a 1 2 & + 1 0 00909118 -euphoric a 1 4 ! & ^ + 1 1 00908929 -eupneic a 1 1 & 1 0 00267452 -eupnoeic a 1 1 & 1 0 00267452 -eurafrican a 1 2 \ + 1 0 03023995 -eurasian a 1 2 \ + 1 1 03024132 -eurasiatic a 1 2 \ + 1 0 03024132 -eurocentric a 1 2 \ + 1 0 02716101 -european a 1 2 \ + 1 1 02968325 -europocentric a 1 1 \ 1 0 02716101 -eusporangiate a 1 1 ! 1 0 01409379 -eutherian a 1 2 \ + 1 0 03018964 -eutrophic a 1 2 \ ; 1 0 02716247 -evacuant a 1 2 & + 1 0 00638067 -evaluative a 1 2 & + 1 1 00649892 -evanescent a 1 2 & + 1 0 01756940 -evangelical a 3 3 & \ + 3 1 02923005 02922814 00886681 -evangelistic a 2 3 & \ + 2 0 02923281 00886681 -evaporable a 1 1 & 1 0 02519813 -evaporated a 1 1 & 1 0 02263150 -evaporative a 1 2 \ + 1 0 02924428 -evasive a 2 2 & + 2 1 00896182 01888284 -even a 6 5 ! & ^ = + 6 3 00913387 00891170 00909545 02372520 02302187 00892243 -even-pinnate a 1 1 & 1 0 02172617 -even-tempered a 1 1 & 1 0 01134486 -even-textured a 1 1 & 1 0 02237420 -even-toed a 1 2 \ ; 1 0 02643673 -evenhanded a 1 1 & 1 0 00958615 -eventful a 2 2 ! & 2 0 00804220 01277753 -eventual a 1 1 & 1 1 01578856 -ever-changing a 1 1 & 1 1 00808822 -ever-present a 1 1 & 1 1 01847022 -evergreen a 1 3 ! & ; 1 0 00913551 -everlasting a 2 2 & + 2 1 01755024 01520091 -every a 2 1 & 2 2 02269794 02270186 -every_last a 1 2 & ; 1 1 02270057 -everyday a 3 2 & + 3 1 01674242 01044557 00970947 -evidenced a 1 1 & 1 0 01894077 -evident a 2 2 & + 2 2 01618376 01287486 -evidential a 1 2 & + 1 1 02162733 -evidentiary a 2 4 & \ + ; 2 0 02723723 02162733 -evil a 3 5 ! & ^ = + 3 2 01131043 02514099 00224515 -evil-looking a 1 1 & 1 0 00221469 -evil-minded a 1 1 & 1 0 01133784 -eviscerate a 1 1 & 1 0 01318659 -evitable a 1 1 ! 1 0 00343700 -evocative a 1 2 & + 1 0 01977669 -evoked a 1 1 & 1 0 02283356 -evolutionary a 1 2 \ + 1 1 03000725 -ex a 1 1 & 1 0 00974159 -ex-directory a 1 1 & 1 0 01418486 -ex_gratia a 1 1 & 1 0 00847715 -ex_officio a 1 1 & 1 0 01632988 -ex_post_facto a 1 1 & 1 0 01884744 -ex_vivo a 1 0 1 0 01359277 -exacerbating a 1 1 & 1 0 01340422 -exact a 2 4 ! & ^ + 2 2 00914421 00631798 -exacting a 3 2 & ; 3 0 00985608 00711308 00710585 -exaggerated a 2 1 & 2 1 01533806 00881177 -exalted a 1 1 & 1 1 01588619 -exalting a 1 1 & 1 0 01323207 -exanimate a 1 1 & 1 0 00097768 -exasperated a 1 1 & 1 1 01806483 -exasperating a 2 1 & 2 1 01809245 01340422 -exaugural a 1 2 ! & 1 0 01290947 -exceeding a 1 1 & 1 0 01676026 -excellent a 1 2 & + 1 1 02343110 -exceptionable a 1 1 & 1 0 00018850 -exceptional a 3 3 & + ; 3 2 01676026 00488187 01598859 -excess a 1 1 & 1 1 01581305 -excessive a 2 2 & + 2 1 01533974 02000968 -exchangeable a 3 4 ! & = + 3 0 00917613 00916706 01978532 -exchanged a 1 1 & 1 0 00354833 -excitable a 2 4 ! & + ; 2 0 00918779 02104277 -excitant a 1 2 & + 1 0 02309971 -excitative a 1 1 & 1 0 02309971 -excitatory a 1 2 & + 1 1 02309971 -excited a 4 4 ! & ^ ; 4 3 00085630 00919542 02390724 01928926 -exciting a 2 4 ! & ^ = 2 2 00921014 02306763 -exclamatory a 1 2 & + 1 0 00842041 -exclusive a 3 3 ! & + 3 1 02152985 01862386 00539389 -excogitative a 1 2 & + 1 0 02420390 -excrescent a 1 2 \ + 1 0 02723904 -excretory a 1 2 \ + 1 0 02724050 -excruciating a 1 1 & 1 1 01711724 -exculpated a 1 1 & 1 0 01320184 -exculpatory a 1 4 ! & ^ + 1 0 00923321 -excursive a 1 1 & 1 0 00768397 -excusable a 2 2 ! & 2 0 01722039 01721197 -excusatory a 1 2 & + 1 0 01631830 -excused a 1 1 & 1 0 02365776 -execrable a 3 1 & 3 0 02347086 01460679 00670635 -executable a 1 2 & + 1 0 01822563 -executed a 1 1 & 1 0 00097452 -executive a 1 2 \ + 1 1 03017922 -exegetic a 1 2 \ + 1 0 02724166 -exegetical a 1 2 \ + 1 0 02724166 -exemplary a 3 2 & + 3 0 02586446 02469119 01771124 -exemplifying a 1 1 & 1 0 01305123 -exempt a 2 3 ! & ^ 2 1 02365397 02400929 -exergonic a 1 2 ! ; 1 0 00291848 -exhausted a 3 2 ! & 3 1 02433451 00926141 01088881 -exhaustible a 2 2 ! & 2 0 00925460 01006967 -exhausting a 2 1 & 2 1 01358231 00837249 -exhaustive a 1 1 & 1 1 00522463 -exhibitionistic a 1 2 & + 1 0 02090823 -exhilarated a 1 1 & 1 0 00705336 -exhilarating a 2 1 & 2 1 01357342 00921538 -exhortative a 1 1 & 1 0 00866735 -exhortatory a 1 2 & + 1 0 00866735 -exigent a 2 2 & + 2 0 00712877 00710585 -exiguous a 1 2 & + 1 0 00107017 -exilic a 1 2 \ + 1 0 02724308 -existent a 3 5 ! & ^ = + 3 1 00927017 01932973 00043765 -existential a 3 3 & \ + 3 1 00859632 02724630 02724483 -existentialist a 1 1 \ 1 0 02724759 -existing a 3 3 & ^ = 3 3 01731786 00927017 01847101 -exocentric a 1 2 ! ; 1 0 00870827 -exocrine a 1 2 ! \ 1 0 02915381 -exodontic a 1 2 \ + 1 0 02916403 -exoergic a 1 2 ! ^ 1 0 00872347 -exogamic a 2 3 ^ + ; 2 0 00872010 00871255 -exogamous a 2 4 ! ^ + ; 2 0 00872010 00871255 -exogenic a 1 2 ! + 1 0 00873251 -exogenous a 1 1 ! 1 0 00873251 -exonerated a 1 1 & 1 0 01320184 -exonerative a 1 2 & + 1 0 00923495 -exorbitant a 1 2 & + 1 0 01534282 -exoteric a 1 2 ! ^ 1 0 00900478 -exothermal a 1 1 ^ 1 0 00872906 -exothermic a 1 3 ! ^ + 1 0 00872906 -exotic a 2 2 & + 2 1 01035007 00968730 -expandable a 2 1 & 2 0 00947264 00844263 -expanded a 1 1 ! 1 1 00554780 -expandible a 2 2 & + 2 0 00947264 00844263 -expansible a 2 2 & + 2 0 00947264 00844263 -expansile a 1 1 & 1 0 00844263 -expansionist a 1 1 \ 1 0 02940292 -expansive a 4 4 ! & + ; 4 0 00946499 01284544 00909220 00496938 -expectable a 1 1 & 1 1 00930022 -expectant a 2 2 & + 2 1 01228797 00173391 -expected a 1 4 ! & ^ + 1 1 00929567 -expedient a 2 4 ! & ^ + 2 1 00931555 01813733 -expeditionary a 1 3 & + ; 1 0 01517317 -expeditious a 1 2 & + 1 0 00840510 -expendable a 2 3 ! & ^ 2 1 00932695 00777891 -expensive a 1 4 ! & ^ + 1 1 00933154 -experienced a 1 3 ! & ^ 1 1 00935500 -experient a 1 3 & ^ + 1 0 00935500 -experiential a 2 3 & \ + 2 2 02989601 00859632 -experimental a 3 2 & \ 3 3 02940392 00859949 00860127 -expert a 2 2 & + 2 1 02226162 02227946 -expiable a 1 1 & 1 0 01721319 -expiative a 1 2 \ + 1 0 02940509 -expiatory a 1 2 \ + 1 0 02940509 -expiratory a 1 2 \ + 1 0 03110610 -expired a 1 2 ! & 1 0 00937985 -explainable a 1 1 & 1 0 00938979 -explanatory a 1 2 & + 1 1 01324683 -explicable a 1 3 ! & ^ 1 0 00938801 -explicit a 2 5 ! & ^ = + 2 1 00940437 01418989 -exploded a 1 1 & 1 0 00568658 -exploitative a 1 2 & + 1 0 01867768 -exploitatory a 1 2 & + 1 0 01867768 -exploited a 2 2 ! & 2 0 00942693 02495687 -exploitive a 1 2 & + 1 0 01867768 -explorative a 1 2 & + 1 0 00877345 -exploratory a 1 3 ! & + 1 1 00877345 -explosive a 3 3 ! & + 3 2 00474620 02292573 01144009 -exponential a 1 2 \ + 1 0 02965274 -exportable a 1 2 ! & 1 0 00876989 -exposed a 2 1 & 2 2 01886620 00459330 -expositive a 1 1 & 1 0 01324870 -expository a 1 2 & + 1 1 01324870 -express a 2 2 & + 2 1 00941148 00977699 -expressed a 2 3 & ^ = 2 2 02284023 00940437 -expressible a 1 3 ! & + 1 1 00943363 -expressionist a 1 2 \ + 1 0 02835145 -expressionistic a 1 2 \ + 1 1 02835145 -expressionless a 1 1 & 1 1 00501313 -expressive a 1 2 & + 1 1 00497148 -expurgated a 1 1 & 1 0 00319090 -exquisite a 4 2 & + 4 1 01511387 00850552 00706311 00218837 -exsanguine a 1 1 & 1 0 00096239 -exsanguinous a 1 1 & 1 0 00096239 -extant a 1 3 ! & ^ 1 1 00928525 -extemporaneous a 1 1 & 1 0 01845451 -extemporary a 1 1 & 1 0 01845451 -extempore a 1 1 & 1 0 01845451 -extendable a 1 1 & 1 0 01434530 -extended a 5 2 ! & 5 2 01439155 01431638 01434218 01419638 01386234 -extendible a 1 2 & + 1 0 01434530 -extensible a 1 2 & + 1 0 00944449 -extensile a 1 2 ! & 1 0 00944449 -extensional a 1 3 & + ; 1 0 00722707 -extensive a 3 3 ! & + 3 2 01386234 00526062 01514598 -extenuating a 1 1 & 1 0 00923671 -exterior a 1 4 ! & ^ = 1 1 00952395 -exterminable a 1 1 & 1 0 00898013 -exterminated a 1 1 & 1 0 00734798 -external a 4 5 ! & ^ = + 4 3 00948103 01350225 01037885 00951003 -exteroceptive a 1 1 \ 1 0 02868051 -exterritorial a 1 0 1 0 02409293 -extinct a 3 4 ! & ^ = 3 0 00929164 00041051 00100213 -extinguishable a 1 1 ! 1 0 00947789 -extinguished a 1 2 & ; 1 1 00736020 -extirpable a 1 1 & 1 0 00898013 -extortionate a 1 1 & 1 0 01534282 -extra a 3 1 & 3 1 01581305 02367319 00048858 -extracellular a 1 3 ! \ ; 1 0 02685539 -extractable a 1 1 & 1 0 01526905 -extractible a 1 2 & + 1 0 01526905 -extracurricular a 3 1 & 3 0 01693425 01693311 01550779 -extradural a 1 1 \ 1 0 02720601 -extragalactic a 1 1 \ 1 0 02849257 -extrajudicial a 1 1 & 1 0 01403316 -extralegal a 1 1 & 1 1 01403469 -extralinguistic a 1 1 \ 1 0 02879535 -extramarital a 1 1 & 1 1 01550779 -extramural a 1 2 ! & 1 0 01347138 -extraneous a 4 2 & + 4 2 01976532 01350494 02117464 01350225 -extraordinaire a 1 1 & 1 0 01676350 -extraordinary a 3 5 ! & ^ = + 3 3 01675190 01534648 00490650 -extrasensory a 1 3 ! & ^ 1 0 02108827 -extrasystolic a 1 1 \ 1 0 03122108 -extraterrestrial a 1 2 \ + 1 1 02780355 -extraterritorial a 1 1 ! 1 0 02409293 -extravagant a 2 2 & + 2 2 02000968 02422242 -extraversive a 1 3 & ^ ; 1 0 01351391 -extravert a 1 2 & + 1 0 01351637 -extraverted a 1 1 & 1 0 01351637 -extravertive a 1 1 & 1 0 01351637 -extreme a 4 2 & + 4 4 01511520 01534858 01535082 00446107 -extremist a 1 1 & 1 0 01535270 -extricable a 1 1 ! 1 0 00945123 -extrinsic a 1 3 ! & ^ 1 0 01349041 -extropic a 1 2 \ + 1 0 02724960 -extrospective a 1 2 ! = 1 0 01350876 -extroversive a 1 4 ! & ^ ; 1 0 01351391 -extrovert a 1 1 & 1 0 01351637 -extroverted a 3 2 & = 3 0 01350876 02258249 01351637 -extrovertish a 1 1 & 1 0 01351837 -extrovertive a 1 1 & 1 0 01351637 -extrusive a 1 4 ! & + ; 1 0 01355556 -exuberant a 3 2 & + 3 1 02279723 02000968 00015247 -exultant a 1 2 & + 1 1 00704898 -exulting a 1 1 & 1 0 00704898 -exuvial a 1 2 \ + 1 0 02941513 -eye-catching a 1 1 & 1 0 00579498 -eye-deceiving a 1 1 & 1 1 01935581 -eye-popping a 1 1 & 1 0 01283787 -eyed a 1 2 ! & 1 1 00953332 -eyeless a 2 3 ! & + 2 0 00954965 02160135 -eyelike a 1 1 & 1 1 00953886 -eyes-only a 1 1 & 1 0 00415543 -fab a 1 1 & 1 0 01808227 -fabian a 2 2 & \ 2 0 03065414 00325840 -fabled a 1 1 & 1 1 01935744 -fabricated a 1 1 & 1 0 01935935 -fabulous a 3 2 & + 3 1 01808227 01936184 00645982 -face-saving a 1 1 & 1 1 01196367 -face-to-face a 1 1 & 1 0 01767975 -faced a 1 2 ! & 1 1 00234872 -faceless a 1 2 ! & 1 0 00236483 -faceted a 1 1 ! 1 0 02591506 -facetious a 1 2 & + 1 1 01264913 -facial a 2 2 \ + 2 0 02877704 02725058 -facile a 3 2 & + 3 0 01874561 00838533 00150505 -facilitative a 1 2 & + 1 0 01196484 -facilitatory a 1 2 & + 1 1 01196648 -fact-finding a 1 1 & 1 0 00879030 -factious a 1 2 & + 1 0 00554302 -factitious a 1 1 & 1 0 01573101 -factor_analytic a 1 1 \ 1 0 02725181 -factor_analytical a 1 2 \ + 1 0 02725181 -factorial a 1 2 \ + 1 0 02725350 -factory-made a 1 2 ! & 1 0 00675064 -factual a 2 3 & \ + 2 1 01933731 02899112 -facultative a 4 4 ! & \ ; 4 0 02725452 01617859 01194974 00847861 -faddish a 1 1 & 1 0 00972236 -faddy a 1 2 & + 1 0 00972236 -faded a 2 1 & 2 2 00404961 00882166 -faecal a 1 1 + 1 0 03065685 -fagged a 1 1 & 1 0 02433451 -fahrenheit a 1 1 \ 1 0 02725548 -fail-safe a 2 1 & 2 0 02094514 02058148 -failing a 1 1 & 1 0 02082812 -fain a 1 1 & 1 0 02565425 -faineant a 1 2 & + 1 0 00294579 -faint a 6 2 & + 6 4 01747364 00782216 02325097 02544525 00782568 00265989 -faint-hearted a 1 1 & 1 0 00265989 -fainthearted a 1 2 & + 1 0 00265989 -fair a 10 6 ! & ^ = + ; 10 3 00956131 01532261 00218440 00955626 01673061 01484342 01404898 00958475 00461091 00244054 -fair-and-square a 1 1 & 1 0 00957099 -fair-haired a 1 2 & ; 1 0 01462461 -fair-minded a 1 2 & + 1 0 00956976 -fair_to_middling a 1 1 & 1 0 02080937 -fairish a 2 1 & 2 0 01532261 00244054 -faithful a 3 5 ! & ^ = + 3 2 00958880 00022219 00960629 -faithless a 1 2 & + 1 0 00962939 -fake a 2 2 & + 2 1 01117477 01573238 -falcate a 1 1 & 1 0 02315914 -falciform a 1 1 & 1 0 02315914 -falconine a 1 1 \ 1 0 02992601 -fall-blooming a 1 1 & 1 0 01255530 -fall-flowering a 1 1 & 1 0 01255530 -fallacious a 3 2 & + 3 0 02500179 01223941 00633084 -fallen a 4 1 & 4 1 02493137 00736196 00362173 00097577 -fallible a 2 3 ! & + 2 0 00964090 01259391 -falling a 3 2 ! & 3 1 02537636 02487244 02486628 -fallow a 2 2 & + 2 1 01833401 00943092 -false a 10 5 ! & ^ = + 10 2 02461723 00633235 02500379 02182088 01942507 01573238 01224650 01164420 01116857 00584403 -falsetto a 1 2 & + 1 0 01214115 -falsifiable a 1 1 & 1 0 00859453 -falstaffian a 1 2 \ + 1 0 03027692 -faltering a 1 1 & 1 1 02304035 -famed a 1 1 & 1 1 01375831 -familial a 2 3 & \ + 2 0 02940759 01314537 -familiar a 4 5 ! & ^ = + 4 3 00965606 00970249 01307067 00453053 -familiarised a 1 1 & 1 0 01682677 -familiarising a 1 1 & 1 0 01685131 -familiarized a 1 1 & 1 0 01682677 -familiarizing a 1 1 & 1 0 01685131 -famished a 1 1 & 1 0 01269506 -famous a 1 2 & + 1 1 01375831 -fan-leafed a 1 1 & 1 0 01701227 -fan-leaved a 1 1 & 1 0 01701227 -fan-shaped a 1 1 & 1 0 02146949 -fanatic a 1 2 & + 1 0 01726859 -fanatical a 1 2 & + 1 0 01726859 -fancied a 1 1 & 1 0 01935935 -fanciful a 3 1 & 3 1 00643598 01936528 01796304 -fancy a 1 3 ! & ^ 1 1 01794340 -fancy-free a 1 1 & 1 1 00518848 -fang-like a 1 1 & 1 0 00801874 -fanged a 1 1 \ 1 0 02725764 -fanlike a 1 1 & 1 0 02561490 -fanned a 1 1 & 1 0 00541460 -fantabulous a 1 1 & 1 0 02343110 -fantastic a 5 2 & + 5 4 00967646 01676517 01942732 01936778 01796452 -fantastical a 2 2 & + 2 0 01936778 00967646 -far a 4 4 ! & = + 4 3 00442361 01434717 02032386 01535481 -far-famed a 1 1 & 1 1 01375831 -far-flung a 2 1 & 2 0 00541614 00446236 -far-off a 1 1 & 1 1 00443274 -far-out a 1 1 & 1 0 00609564 -far-right a 1 1 & 1 0 02030562 -far_left a 1 1 & 1 0 02031165 -faraway a 2 2 & + 2 1 00443274 00450915 -farcical a 1 2 & + 1 0 01266397 -farfetched a 1 1 & 1 0 01412721 -farinaceous a 2 1 & 2 0 02299189 02231502 -farming a 1 1 & 1 0 02050841 -farseeing a 2 1 & 2 0 02157594 01895296 -farsighted a 2 3 ! & + 2 0 02157399 01895296 -farther a 2 1 & 2 2 00443490 00443988 -farthermost a 1 2 & ; 1 0 00443618 -farthest a 1 2 & ; 1 0 00443618 -fascinated a 1 1 & 1 1 00865848 -fascinating a 2 1 & 2 1 01344171 00166753 -fascist a 1 2 \ + 1 1 02920769 -fascistic a 1 2 \ + 1 0 02920769 -fashionable a 3 2 ! & 3 1 00971075 00975171 01816305 -fashioned a 1 1 & 1 0 01340016 -fast a 10 6 ! & ^ = + ; 10 1 00976508 00983573 00981818 02237502 01774091 01549568 01270486 01059711 00959244 00323873 -fast-breaking a 1 2 & ; 1 0 00977839 -fast-flying a 1 1 & 1 1 01562992 -fast-footed a 1 1 & 1 0 01031602 -fast-growing a 1 1 & 1 1 01356143 -fast-paced a 1 1 & 1 0 00978059 -fast_asleep a 1 1 & 1 0 00188738 -fastened a 3 2 ! & 3 1 02095936 00296625 00254746 -fastidious a 2 5 ! & ^ + ; 2 1 00983862 00985608 -fastigiate a 1 2 & ; 1 0 01236565 -fat a 5 6 ! & ^ = + ; 5 2 00986027 02411224 00991838 01871349 01081340 -fat-free a 1 1 & 1 0 00992955 -fat-soluble a 1 1 & 1 0 02265496 -fatal a 4 3 ! & + 4 2 00993529 00685113 01050088 00343226 -fatalist a 1 2 \ + 1 0 03065516 -fatalistic a 1 2 \ + 1 0 03065516 -fated a 1 1 & 1 0 00340827 -fateful a 4 1 & 4 1 00685113 01883106 01050088 00343226 -fatheaded a 1 1 & 1 0 00440292 -fatherless a 2 1 & 2 0 01734267 01408135 -fatherlike a 1 1 & 1 0 01734607 -fatherly a 1 2 & + 1 0 01734607 -fathomable a 2 2 ! & 2 0 00994744 00533738 -fatigued a 1 1 & 1 1 02433451 -fatless a 1 1 & 1 0 00992955 -fattened a 1 1 & 1 0 01005410 -fattening a 1 1 & 1 1 01005506 -fattish a 1 1 & 1 0 00987703 -fatty a 1 3 ! & + 1 1 00991838 -fatuous a 1 2 & + 1 0 02571277 -faucal a 1 3 \ + ; 1 0 02992796 -faultfinding a 2 2 & + 2 0 00649228 00647867 -faultless a 1 1 & 1 0 01750847 -faulty a 2 2 & + 2 0 01752953 00023854 -faustian a 1 2 \ + 1 0 03134282 -faux a 1 1 & 1 0 01573238 -faveolate a 1 1 & 1 0 00327690 -favorable a 5 4 ! & ^ + 5 3 00995775 00995119 00177547 01246801 00604978 -favored a 1 1 & 1 1 01462882 -favorite a 2 2 & + 2 2 01816376 01462882 -favourable a 4 3 & ^ + 4 0 00995775 00995119 00604978 00177547 -favourite a 2 2 & + 2 0 01816376 01462882 -fawn-colored a 1 1 & 1 0 00397532 -fawn-coloured a 1 1 & 1 0 00397532 -fawning a 2 1 & 2 0 02181231 00790394 -fazed a 1 1 & 1 0 00532147 -fearful a 5 4 & ^ = + 5 2 00079485 00193799 00264776 01127147 00252498 -fearless a 2 4 & ^ = + 2 1 00081671 00250119 -fearsome a 1 1 & 1 0 00193799 -feasible a 1 2 & + 1 1 01822563 -featherbrained a 1 1 & 1 0 02120828 -feathered a 2 2 ! & 2 1 00058554 00997604 -featheredged a 1 1 & 1 0 00258255 -featherless a 1 1 & 1 0 00999330 -featherlike a 1 1 & 1 0 00998207 -feathery a 3 2 & + 3 0 00998207 00998040 00058554 -featured a 2 1 & 2 2 00580346 00235429 -featureless a 1 1 & 1 1 01793254 -febrile a 1 2 ! \ 1 0 02726715 -fecal a 1 1 + 1 0 03065685 -feckless a 2 2 & + 2 0 01998730 00511526 -feculent a 1 1 & 1 0 00421513 -fecund a 2 2 & + 2 1 01002055 01865967 -fed_up a 1 1 & 1 0 01806677 -federal a 4 5 ! & \ + ; 4 3 01106129 02725829 01606214 01107206 -federate a 1 1 & 1 0 02477457 -federated a 1 1 & 1 0 02477457 -feeble a 4 2 & + 4 1 02325304 02325097 02040233 01827766 -feebleminded a 1 3 & + ; 1 0 01840673 -feigned a 1 1 & 1 0 02182217 -feisty a 2 1 & 2 0 02279900 02106509 -felicitous a 2 5 ! & ^ = + 2 0 00999817 01048406 -feline a 1 2 \ + 1 1 02881888 -fell a 1 1 & 1 0 01263013 -felonious a 1 2 & + 1 0 01402763 -felted a 1 1 & 1 0 02580126 -female a 3 6 ! & ^ = + ; 3 2 01477806 01484451 01478182 -feminine a 4 5 ! & ^ + ; 4 2 01484083 01486197 01484987 02320289 -feminist a 1 2 \ + 1 0 02839357 -femoral a 1 2 \ + 1 0 02726017 -fencelike a 1 1 & 1 0 01658195 -fenestral a 2 2 \ ; 2 0 02726232 02726151 -feral a 1 1 & 1 0 02389520 -ferial a 1 2 \ + 1 0 02992691 -ferine a 1 1 & 1 0 02389520 -fermentable a 1 1 \ 1 0 02726345 -ferned a 1 2 ! & 1 0 00209079 -fernless a 1 1 ! 1 0 00209550 -fernlike a 1 1 & 1 0 00209390 -ferny a 2 2 & + 2 0 00209079 00209390 -ferocious a 1 2 & + 1 1 02511528 -ferret-sized a 1 1 & 1 0 02223165 -ferric a 1 1 \ 1 0 02726429 -ferromagnetic a 1 2 \ + 1 1 03003223 -ferrous a 1 1 \ 1 0 02726429 -fertile a 4 5 ! & ^ = + 4 2 01001689 01865967 01082115 01081340 -fertilizable a 1 1 & 1 0 01002170 -fervent a 2 2 & + 2 1 01726235 01248713 -fervid a 2 2 & + 2 0 01726235 01248713 -festal a 1 1 & 1 0 01367431 -festive a 1 2 & + 1 1 01367431 -fetal a 1 2 \ + 1 0 02892819 -fetching a 1 1 & 1 1 00167829 -fetid a 1 2 & + 1 1 01053634 -fettered a 1 1 & 1 0 00253361 -feudal a 1 2 \ + 1 1 02726546 -feudalistic a 1 2 \ + 1 0 02726546 -feudatory a 2 3 & \ + 2 0 03065804 02329606 -fevered a 1 1 & 1 0 00920167 -feverish a 3 3 & \ + 3 1 00086210 02726715 02544892 -feverous a 1 2 & + 1 0 02544892 -few a 1 5 ! & ^ = + 1 1 01552885 -fewer a 1 4 ! & ^ ; 1 1 01556616 -fewest a 1 2 ! ; 1 0 01557386 -fey a 2 1 & 2 0 02075938 01575810 -fiber-optic a 1 2 \ + 1 0 02727009 -fiberoptic a 1 2 \ + 1 0 02727009 -fibre-optic a 1 2 \ + 1 0 02727009 -fibreoptic a 1 2 \ + 1 0 02727009 -fibrillose a 1 1 \ 1 0 02727263 -fibrinous a 1 2 \ + 1 0 02727369 -fibrocalcific a 1 1 \ 1 1 03009792 -fibrocartilaginous a 1 1 \ 1 0 02727482 -fibrous a 2 2 & + 2 0 02446380 02446239 -fickle a 2 2 & + 2 0 00584626 00345189 -fictile a 3 2 & \ 3 0 02727579 02362030 00844461 -fictional a 2 4 ! & \ + 2 2 02727706 01935935 -fictitious a 2 2 & + 2 0 01935935 01116857 -fictive a 2 1 & 2 1 01116857 00643760 -fiddle-shaped a 1 1 & 1 0 02170052 -fiddling a 1 2 & ; 1 0 01280908 -fidgety a 1 2 & + 1 0 02406166 -fiducial a 3 3 & \ ; 3 0 02848388 02848227 02465909 -fiduciary a 1 2 \ + 1 0 02848388 -field-crop a 1 1 \ 1 0 02728002 -fiendish a 1 1 & 1 1 01132515 -fierce a 4 2 & + 4 3 02511528 01511854 01507808 00304949 -fiery a 3 2 & + 3 2 01726235 01248958 01256735 -fifteen a 1 2 & + 1 1 02187793 -fifteenth a 1 2 & + 1 1 02203976 -fifth a 1 2 & + 1 1 02202712 -fiftieth a 1 2 & + 1 1 02208145 -fifty a 1 2 & + 1 1 02191232 -fifty-eight a 1 1 & 1 0 02191992 -fifty-fifth a 1 1 & 1 0 02208270 -fifty-fifty a 1 1 & 1 1 00891170 -fifty-five a 1 1 & 1 0 02191710 -fifty-four a 1 1 & 1 0 02191616 -fifty-nine a 1 1 & 1 0 02192090 -fifty-one a 1 1 & 1 0 02191336 -fifty-seven a 1 1 & 1 0 02191895 -fifty-six a 1 1 & 1 0 02191803 -fifty-three a 1 1 & 1 0 02191519 -fifty-two a 1 1 & 1 0 02191427 -fig-shaped a 1 1 & 1 0 02147033 -fighting a 1 2 & ; 1 1 01660444 -figural a 1 1 & 1 0 01979604 -figurative a 2 3 ! & ^ 2 1 01419149 01979604 -figured a 1 1 & 1 0 01788564 -fijian a 1 2 \ + 1 0 03065969 -filamentlike a 1 1 & 1 0 02413851 -filamentous a 1 2 & + 1 0 02413851 -filar a 1 2 \ + 1 0 02728113 -filarial a 1 2 \ + 1 0 02728532 -filariid a 1 2 \ ; 1 0 02728683 -file-like a 1 1 & 1 0 00801947 -filial a 2 4 ! & \ ; 2 0 02884275 01722699 -filiform a 1 1 & 1 0 02413851 -filipino a 1 2 \ + 1 0 03066180 -filled a 3 4 ! & < ; 3 1 01084644 03149732 01623744 -filmable a 1 2 & ; 1 0 01028467 -filmed a 1 1 & 1 1 01423344 -filmy a 1 2 & + 1 0 02413390 -filter-tipped a 1 1 & 1 0 02431024 -filthy a 3 2 & + 3 1 00421590 01587474 00425313 -fimbriate a 1 1 & 1 0 02247074 -fin_de_siecle a 1 2 & ; 1 0 01004051 -finable a 1 1 & 1 0 01322621 -final a 3 2 & + 3 3 01010271 01579128 00349894 -financial a 1 3 ! \ + 1 1 02847894 -fine a 6 6 ! & ^ = + ; 6 5 02081114 01838253 02414031 00850183 02232251 01906817 -fine-grained a 2 1 & 2 1 02233390 02232869 -fine-leafed a 1 1 & 1 0 01701321 -fine-leaved a 1 1 & 1 0 01701321 -fine-looking a 1 1 & 1 1 00218950 -fine-textured a 1 1 & 1 0 02237644 -fine-tooth a 1 1 & 1 0 02438831 -fine-toothed a 1 1 & 1 0 02438831 -fineable a 1 1 & 1 0 01322621 -finer a 1 2 & ; 1 0 00230940 -finespun a 2 1 & 2 0 01948389 01838379 -fingered a 1 2 ! & 1 1 00946050 -fingerless a 1 1 ! 1 0 00946409 -fingerlike a 1 1 & 1 0 00946281 -finical a 1 1 & 1 0 00984624 -finicky a 1 1 & 1 1 00984624 -finished a 5 3 ! & ^ 5 2 01005063 01003050 01812630 01713550 00736299 -finite a 2 5 ! & ^ + ; 2 1 01006566 01008439 -finnish a 1 2 \ + 1 0 02959553 -finno-ugric-speaking a 1 1 & 1 0 00497330 -fire-resistant a 1 1 & 1 0 00474311 -fire-resisting a 1 1 & 1 0 00474311 -fire-resistive a 1 1 & 1 0 00474311 -fire-retardant a 1 1 & 1 0 00474311 -fired a 1 1 & 1 0 00864884 -fireproof a 1 1 & 1 0 00474227 -firm a 10 2 & + 10 8 01990653 01151740 00842199 02130272 02302366 02291336 02094388 01171076 01059711 00959244 -firmamental a 1 2 \ + 1 0 02871229 -first a 6 4 ! & ^ ; 6 5 01010862 02202047 01009343 01009206 00228294 01016215 -first-class a 1 1 & 1 1 02343110 -first-come-first-serve a 1 1 & 1 0 01988829 -first-rate a 1 2 & ; 1 1 02341864 -first-string a 2 1 & 2 0 01959711 01852924 -first-year a 1 2 & ; 1 0 01012247 -firstborn a 1 2 & + 1 0 01012100 -firsthand a 1 1 & 1 1 01852812 -fiscal a 1 2 \ + 1 1 02847894 -fisheye a 1 1 \ 1 0 02728812 -fishy a 2 4 & \ + ; 2 0 02728929 01917594 -fissile a 2 2 ! ; 2 0 01016874 01016644 -fissionable a 1 2 ! ; 1 0 01016874 -fissiparous a 2 2 & ; 2 0 02136423 00728619 -fistular a 1 3 & + ; 1 0 02264657 -fistulate a 1 2 & ; 1 0 02264657 -fistulous a 2 4 & \ + ; 2 0 02729065 02264657 -fit a 3 4 ! & ^ + 3 3 01020393 01931203 01017161 -fitful a 2 2 & + 2 0 00593664 00290593 -fitted a 1 1 < 1 0 03149960 -fitted_out a 2 1 & 2 0 01844002 01097484 -fitter a 1 1 & 1 0 00231963 -fitting a 2 2 & + 2 2 01879667 01370141 -five a 1 1 & 1 1 02186750 -five-fold a 1 1 & 1 0 02219660 -five-hundredth a 1 1 & 1 0 02212352 -five-lobed a 1 1 & 1 0 00239594 -five-membered a 1 1 & 1 0 01503052 -five-needled a 1 1 & 1 0 02169267 -five-petaled a 1 1 & 1 0 01775874 -five-petalled a 1 1 & 1 0 01775874 -five-pointed a 1 1 & 1 0 01810536 -five-sided a 1 1 & 1 0 00238490 -five-year-old a 1 1 & 1 0 01647906 -five_hundred a 1 1 & 1 1 02198631 -fivefold a 1 1 & 1 0 02219660 -fixed a 4 4 ! & ^ + 4 4 00740217 01564603 01059400 00347707 -fizzing a 1 1 & 1 0 02276752 -fizzy a 1 2 & + 1 0 02276752 -flabbergasted a 1 1 & 1 0 02358277 -flabby a 1 2 & + 1 0 01019713 -flaccid a 2 2 & + 2 0 01154229 01019713 -flag-waving a 1 1 & 1 0 01740358 -flagellate a 1 2 \ + 1 0 03015113 -flagellated a 1 1 \ 1 0 03015113 -flagging a 1 1 & 1 0 02433365 -flagitious a 2 1 & 2 0 02514380 01131454 -flagrant a 1 1 & 1 0 00580039 -flakey a 3 3 & \ + 3 0 02729182 02447104 00608791 -flaky a 3 3 & \ + 3 0 02729182 02447104 00608791 -flamboyant a 2 2 & + 2 0 01848701 01794771 -flame-colored a 1 1 & 1 0 00397633 -flame-coloured a 1 1 & 1 0 00397633 -flame-orange a 1 1 & 1 0 00381861 -flame-retardant a 1 1 & 1 0 00474440 -flameproof a 1 1 & 1 0 00474440 -flaming a 2 1 & 2 0 01520655 01256735 -flammable a 1 2 & + 1 0 00473658 -flaring a 1 1 & 1 0 01563147 -flash a 1 2 & + 1 0 02393791 -flash-frozen a 1 1 & 1 0 01072586 -flashy a 2 2 & + 2 2 02393791 00407420 -flat a 15 4 ! & + ; 15 5 00910101 00659259 01913931 01239040 01021794 01578152 02413037 02399595 02307563 02277078 01541828 01233020 00660551 00283972 00038119 -flat-bellied a 1 0 1 0 00222873 -flat-bottom a 1 1 & 1 0 02442765 -flat-bottomed a 1 1 & 1 1 02442765 -flat-footed a 4 2 & ; 4 1 01031405 01932481 01032845 00765289 -flat-growing a 1 1 & 1 0 01207007 -flat-top a 1 1 & 1 0 02441786 -flat-topped a 1 1 & 1 0 02441786 -flatbottom a 1 1 & 1 0 00910404 -flatbottomed a 1 1 & 1 0 00910404 -flattened a 1 1 & 1 1 00659530 -flattering a 1 2 ! & 1 0 00907661 -flatulent a 2 2 & + 2 0 01182974 01175741 -flatus-relieving a 1 1 & 1 0 01165665 -flaunty a 1 2 & + 1 0 01848611 -flavorful a 1 1 & 1 0 02396911 -flavorless a 1 2 & + 1 0 02399595 -flavorous a 1 2 & + 1 0 02396911 -flavorsome a 1 1 & 1 0 02396911 -flavourful a 1 1 & 1 0 02396911 -flavourless a 1 2 & + 1 0 02399595 -flavourous a 1 2 & + 1 0 02396911 -flavoursome a 1 1 & 1 0 02396911 -flawed a 1 1 & 1 0 01752553 -flawless a 1 2 & + 1 1 01751080 -flaxen a 1 1 & 1 0 00244199 -flea-bitten a 1 1 & 1 0 02581530 -flecked a 1 1 & 1 1 01788445 -fledged a 2 2 ! & 2 0 01095914 00998381 -fledgeless a 1 1 & 1 0 00999671 -fledgeling a 1 2 & + 1 0 01096123 -fledgling a 2 2 & + 2 2 01096123 00936998 -fleeceable a 1 1 & 1 0 02272485 -fleecy a 1 2 & + 1 0 01153141 -fleet a 1 2 & + 1 1 00978199 -fleeting a 1 2 & + 1 1 01443097 -flemish a 1 2 \ + 1 0 03066448 -flemish-speaking a 1 1 & 1 0 00497442 -flesh-colored a 1 1 & 1 0 00397757 -flesh-coloured a 1 1 & 1 0 00397757 -flesh-eating a 1 2 & ; 1 0 00313701 -fleshed_out a 1 1 & 1 0 00522680 -fleshly a 1 1 & 1 0 01778572 -fleshy a 2 3 & \ + 2 1 00987769 02729339 -flexible a 5 4 ! & ^ + 5 4 01024073 01022064 01028163 00844719 01026262 -flexile a 1 2 & ^ 1 0 01022064 -flexuous a 1 1 & 1 0 02316253 -flickering a 1 1 & 1 0 02304119 -flighted a 1 2 & ; 1 0 00998479 -flightless a 1 1 & 1 0 02568480 -flighty a 2 2 & + 2 0 02121123 00919155 -flimsy a 3 3 & ^ + 3 1 02325484 00615457 02164913 -flint a 1 1 & 1 0 01158180 -flinty a 2 3 & \ + 2 0 02729457 01158180 -flip a 1 1 & 1 0 01996051 -flippant a 1 2 & + 1 0 02121290 -flipper-like a 1 1 & 1 0 01414566 -flirtatious a 1 2 & + 1 0 02131958 -floating a 5 1 & 5 1 00077196 02127159 01523136 01061100 00518981 -floaty a 1 2 & + 1 0 01187072 -floccose a 1 2 & ; 1 0 00213814 -flocculent a 1 2 & + 1 0 01154351 -flooded a 1 1 & 1 1 01083754 -floodlighted a 1 1 & 1 0 00271288 -floodlit a 1 1 & 1 0 00271288 -floored a 1 1 ! 1 0 01210300 -floppy a 1 2 & + 1 0 02404306 -floral a 3 3 & \ + 3 1 01788705 02847786 02847619 -florentine a 1 1 \ 1 1 02904916 -floricultural a 1 2 \ + 1 0 02729544 -florid a 2 2 & + 2 1 01794771 01172139 -flossy a 1 2 & + 1 0 01154030 -flourishing a 1 1 & 1 0 02331857 -floury a 1 2 & + 1 0 02233154 -flowered a 1 1 & 1 0 01788705 -flowering a 1 1 ! 1 0 02597850 -flowerless a 1 2 ! & 1 0 02597951 -flowery a 2 3 & \ + 2 0 02729665 02017141 -flowing a 1 1 & 1 0 02238128 -fluctuating a 1 1 & 1 0 02304208 -fluent a 2 2 & + 2 0 01139832 00150505 -fluffy a 1 2 & + 1 1 01154030 -fluid a 5 2 & + 5 1 00345494 02261746 01139832 00778017 00345694 -flukey a 1 3 & + ; 1 0 00341655 -fluky a 1 3 & + ; 1 0 00341655 -fluorescent a 2 2 & + 2 1 00271419 00403505 -flush a 2 2 & + 2 1 00910542 02022167 -flush-seamed a 1 1 & 1 0 00316733 -flushed a 2 1 & 2 2 01170823 00395626 -flustered a 1 2 & ; 1 0 00532560 -fluvial a 1 1 \ 1 0 02729812 -fly a 1 2 & ; 1 0 00092136 -fly-by-night a 2 2 & + 2 0 02466566 01757082 -flyaway a 2 1 & 2 0 02121123 01447178 -flyblown a 3 1 & 3 0 01069823 00421875 00246623 -flying a 2 1 & 2 1 01562992 01270486 -flyspeck a 1 1 & 1 0 01392249 -foaming a 2 1 & 2 0 02276305 01176787 -foamy a 2 2 & + 2 1 01176787 02276305 -focal a 2 3 & \ + 2 1 00330904 02881438 -focused a 3 2 ! & 3 0 00782856 00612504 00350876 -focussed a 2 1 & 2 0 00782856 00612504 -foetal a 1 2 \ + 1 0 02892819 -foetid a 1 1 & 1 0 01053634 -fogbound a 1 1 & 1 0 00461859 -fogged a 1 1 & 1 0 00433811 -foggy a 4 2 & + 4 0 00875962 00781644 00461609 00433811 -fogyish a 1 1 & 1 0 00974697 -foiled a 1 1 & 1 0 02333976 -foldable a 1 1 & 1 0 00465943 -foldaway a 1 1 & 1 0 00465943 -folding a 1 1 & 1 0 00465943 -foliaceous a 3 3 & \ + 3 0 02730102 01701411 00208447 -foliaged a 1 1 & 1 0 01701411 -foliate a 3 3 & \ ; 3 0 02729927 01701512 00208447 -foliated a 2 3 & \ ; 2 0 02729927 00208447 -foliolate a 1 2 & ; 1 0 01701769 -foliose a 1 1 & 1 0 01701411 -folksy a 2 2 & + 2 1 02052005 01044922 -follicular a 1 2 \ + 1 1 03019836 -following a 4 2 ! & 4 3 00127815 00127948 00199569 00995365 -fond a 4 2 & + 4 3 01464700 01464433 01292683 02571903 -foodless a 1 1 & 1 0 02301107 -foolhardy a 1 2 & + 1 1 00250739 -fooling a 1 1 & 1 1 01190484 -foolish a 2 5 ! & ^ + ; 2 1 02570282 00439905 -foolproof a 1 1 & 1 1 00965176 -foot-shaped a 1 1 & 1 0 02147117 -football-shaped a 1 1 & 1 0 02147203 -footed a 1 2 ! & 1 0 01031232 -footless a 1 2 ! & 1 0 01031797 -footling a 1 2 & ; 1 0 01280908 -footloose a 1 1 & 1 1 01063286 -footsore a 1 1 & 1 0 02433895 -footsure a 1 1 & 1 0 02302941 -foppish a 1 2 & + 1 1 00849912 -for_sale a 1 1 & 1 1 00185607 -for_sure a 1 1 & 1 1 01918660 -forbearing a 1 1 & 1 0 01736571 -forbidden a 1 1 & 1 1 01761375 -forbidding a 2 1 & 2 0 01802932 00194357 -forced a 4 2 & < 4 2 03148831 02521890 02367477 00073761 -forceful a 2 3 ! & + 2 1 00841403 00156575 -forceless a 1 2 ! & 1 1 00842914 -forcible a 1 2 & + 1 0 00842324 -forcipate a 1 1 \ 1 0 02730212 -fordable a 1 1 & 1 0 00692255 -fore a 1 4 ! & ^ ; 1 0 01033081 -fore-and-aft a 1 2 & ; 1 0 01445320 -foreboding a 1 1 & 1 0 01883106 -foregoing a 1 1 & 1 1 00126235 -foregone a 1 1 & 1 0 01728919 -forehand a 1 1 ! 1 0 01033708 -forehanded a 2 1 & 2 0 01033708 01895630 -foreign a 4 5 ! & ^ = + 4 4 01037540 01034457 01349927 02117464 -foreign-born a 1 1 & 1 0 01035559 -foremost a 3 1 & 3 2 00228294 00198610 01033249 -forensic a 2 1 & 2 1 02017613 00863361 -foreordained a 1 1 & 1 0 00341017 -foreseeable a 1 1 & 1 1 01841699 -foreshadowing a 1 1 & 1 0 01882162 -foresighted a 1 2 & + 1 0 01895296 -foresightful a 1 2 & + 1 0 01895296 -forested a 1 1 & 1 0 02573859 -forethoughtful a 1 1 & 1 0 01895717 -forfeit a 1 1 & 1 1 01452385 -forfeited a 1 1 & 1 0 01452385 -forficate a 1 1 & 1 0 02479602 -forged a 1 1 & 1 0 01117226 -forgetful a 3 4 & ^ = + 3 1 02006031 01978003 00165943 -forgettable a 1 2 ! & 1 0 01040239 -forgivable a 1 1 & 1 0 01721197 -forgiving a 2 3 ! & + 2 0 01040984 00923495 -forgotten a 1 1 & 1 1 01608465 -fork-like a 1 1 & 1 0 02479602 -forked a 2 1 & 2 1 02479602 00896026 -forlorn a 1 1 & 1 0 01230387 -form-only a 1 1 & 1 0 01043070 -formal a 6 6 ! & ^ = + ; 6 3 01041916 01633153 01045216 01980796 01430628 00751838 -formalised a 2 3 & \ ; 2 0 02730304 01633316 -formalistic a 1 3 \ + ; 1 0 02730304 -formalized a 2 3 & \ ; 2 1 02730304 01633316 -formative a 2 3 & + ; 2 0 00585597 00585398 -formed a 1 2 ! & 1 0 02143056 -former a 4 2 ! & 4 3 01047301 01729566 01729819 01729384 -formic a 2 1 \ 2 0 02730770 02730673 -formidable a 2 2 & + 2 2 01284836 00195383 -formless a 2 1 & 2 0 02151837 00629382 -formosan a 1 1 + 1 0 03122400 -formulaic a 1 1 & 1 0 00606240 -formulary a 1 2 \ + 1 0 02730861 -formulated a 1 1 & 1 0 00742164 -forte a 1 2 ! & 1 0 01458736 -fortemente a 1 1 & 1 0 01458941 -forthcoming a 3 2 & + 3 0 02258249 01732601 00184229 -forthright a 1 2 & + 1 1 00764484 -fortieth a 1 1 & 1 0 02206998 -fortified a 2 1 & 2 1 01885275 02322391 -fortissimo a 1 1 & 1 0 01459058 -fortnightly a 1 2 & + 1 0 01969038 -fortuitous a 2 2 & + 2 0 01339203 01048587 -fortunate a 3 3 ! & ^ 3 2 01047874 00670938 00176676 -forty a 1 1 & 1 1 02190278 -forty-eight a 1 1 & 1 0 02191040 -forty-eighth a 1 1 & 1 0 02207913 -forty-fifth a 1 1 & 1 0 02207566 -forty-first a 1 1 & 1 0 02207105 -forty-five a 1 1 & 1 0 02190755 -forty-four a 1 1 & 1 0 02190660 -forty-fourth a 1 1 & 1 0 02207450 -forty-nine a 1 1 & 1 0 02191139 -forty-ninth a 1 1 & 1 0 02208030 -forty-one a 1 1 & 1 0 02190377 -forty-second a 1 1 & 1 0 02207219 -forty-seven a 1 1 & 1 0 02190942 -forty-seventh a 1 1 & 1 0 02207795 -forty-six a 1 1 & 1 0 02190849 -forty-sixth a 1 1 & 1 0 02207681 -forty-third a 1 1 & 1 0 02207334 -forty-three a 1 1 & 1 0 02190562 -forty-two a 1 1 & 1 0 02190469 -forward a 4 4 ! & ^ + 4 1 00203237 00204491 00203774 01876555 -forward-looking a 1 1 & 1 0 01876261 -forward-moving a 1 1 & 1 1 01876555 -fossil a 1 1 \ 1 0 02730982 -fossiliferous a 1 1 \ 1 0 02731061 -fossilised a 1 1 & 1 0 01025397 -fossilized a 1 1 & 1 0 01025397 -fossorial a 1 1 ! 1 0 02590614 -foster a 1 1 & 1 0 01406418 -foul a 8 4 ! & + ; 8 3 01625893 01053634 00957743 00955915 01405390 00425313 00421590 00255308 -foul-mouthed a 1 1 & 1 0 00425588 -foul-smelling a 1 1 & 1 1 01053634 -foul-spoken a 1 1 & 1 0 00425588 -fouled a 2 1 & 2 1 00420480 00255308 -found a 1 3 ! & ^ 1 1 01450713 -four a 1 1 & 1 1 02186665 -four-dimensional a 1 1 & 1 0 00661146 -four-fold a 2 1 & 2 0 02219287 02219144 -four-footed a 1 0 1 0 00241816 -four-hundredth a 1 1 & 1 0 02212231 -four-lane a 1 1 & 1 0 02221951 -four-lobed a 1 1 & 1 0 00239520 -four-membered a 1 1 & 1 0 01502925 -four-needled a 1 1 & 1 0 02169175 -four-party a 1 1 & 1 0 00239090 -four-petaled a 1 1 & 1 0 01775768 -four-petalled a 1 1 & 1 0 01775768 -four-ply a 1 1 & 1 0 02411322 -four-pronged a 1 1 & 1 0 02481793 -four-sided a 1 1 & 1 1 00238400 -four-wheel a 1 1 \ 1 0 02731461 -four-wheeled a 1 1 \ 1 0 02731461 -four-year-old a 1 1 & 1 0 01647829 -four_hundred a 1 1 & 1 0 02198520 -fourfold a 2 1 & 2 1 02219144 02219287 -fourhanded a 1 2 \ ; 1 0 02731334 -fourpenny a 1 1 & 1 0 02223263 -fourscore a 1 1 & 1 0 02194151 -foursquare a 1 1 & 1 0 01991029 -fourteen a 1 1 & 1 1 02187699 -fourteenth a 1 1 & 1 1 02203868 -fourth a 1 1 & 1 1 02202443 -fourth-year a 1 1 & 1 0 01013681 -foxy a 1 2 & + 1 0 00148078 -fractional a 1 5 ! & ^ = + 1 1 00516539 -fractious a 3 2 & + 3 0 01614127 01136541 00747226 -fragile a 3 2 & + 3 2 00709215 00706688 02164913 -fragmental a 1 2 & + 1 0 00517314 -fragmentary a 1 2 & + 1 1 00517314 -fragmented a 1 1 & 1 0 02481012 -fragrant a 1 3 ! & + 1 1 01052248 -frail a 3 4 ! & ^ + 3 1 02040049 01259391 00709215 -framed a 1 1 ! 1 1 01096750 -franciscan a 1 2 \ + 1 0 03066658 -frangible a 1 2 & + 1 0 00709446 -frank a 2 2 & + 2 1 00764484 01619379 -frankish a 1 1 \ 1 0 02731616 -frantic a 2 1 & 2 2 00086341 02390724 -fraternal a 3 3 ! \ + 3 0 02731699 00292298 00291471 -fraudulent a 1 2 & + 1 0 01223941 -fraught a 2 1 & 2 0 02457932 01084900 -frayed a 1 1 & 1 1 02582163 -freakish a 3 2 & + 3 0 01842304 01597387 00608791 -freaky a 2 2 & ; 2 0 00968957 00608791 -freckled a 1 1 & 1 0 01788843 -free a 9 5 ! & ^ = ; 9 5 01061489 01058363 01710260 01624010 01060947 01065694 01624115 00927978 00916199 -free-and-easy a 1 1 & 1 0 01044730 -free-enterprise a 1 1 & 1 0 00297755 -free-flying a 1 1 & 1 0 01380571 -free-lance a 2 1 & 2 0 00863823 01709081 -free-living a 1 2 & ; 1 0 00728993 -free-range a 1 1 & 1 0 00559530 -free-soil a 1 1 & 1 0 01065941 -free-spoken a 1 1 & 1 0 00764484 -free-swimming a 1 2 & ; 1 1 00160288 -free-thinking a 1 2 & ; 1 0 00287275 -free_burning a 1 1 & 1 1 00596358 -freeborn a 1 1 & 1 0 01065861 -freehand a 1 1 & 1 1 01687030 -freehanded a 2 1 & 2 0 01687030 01111418 -freehearted a 1 1 & 1 0 01111312 -freelance a 2 3 ! & + 2 0 00863823 01709081 -freestanding a 1 1 & 1 0 00160768 -freewheeling a 2 1 & 2 1 02001240 01998260 -freewill a 1 1 & 1 0 02520824 -freeze-dried a 2 1 & 2 0 01072908 01072782 -french a 1 1 \ 1 1 02958392 -french-speaking a 1 1 & 1 0 00497535 -frenetic a 1 1 & 1 0 00086341 -frenzied a 2 1 & 2 1 02391003 00086341 -frequent a 2 3 ! & + 2 2 01066542 00486990 -fresh a 12 5 ! & ^ = + 12 5 01067694 01641648 01357027 01687167 01071198 01073707 02554420 02434797 02370083 01906320 00418198 00205295 -fresh-cut a 1 1 & 1 0 01068217 -freshman a 1 2 & ; 1 0 01012247 -fretful a 2 2 & + 2 0 02406166 00513981 -fretted a 2 4 ! & \ ; 2 0 02731850 02006798 -freudian a 1 2 \ + 1 1 03031733 -friable a 1 2 & + 1 1 00708738 -fricative a 1 1 & 1 0 01157179 -frictional a 1 2 \ + 1 0 02732059 -frictionless a 1 1 \ 1 0 02732266 -fried a 1 1 & 1 1 00617422 -friendless a 1 2 & + 1 0 02528440 -friendly a 4 6 ! & ^ = + ; 4 2 01074650 01246801 01077995 01077638 -frightened a 2 1 & 2 2 00079629 00080357 -frightening a 1 1 & 1 1 00193799 -frightful a 3 3 & + ; 3 2 00193480 01677200 01127147 -frigid a 3 2 & + 3 2 01466775 01252151 01258264 -frigorific a 1 1 & 1 0 01253022 -frilled a 1 1 & 1 0 00058696 -frilly a 1 2 & + 1 0 00058696 -fringed a 3 1 & 3 2 00258587 00058822 02247166 -fringy a 1 2 & + 1 0 00331889 -frisian a 1 2 \ + 1 0 02732405 -frisky a 1 2 & + 1 0 02123007 -frivolous a 1 5 ! & ^ = + 1 1 02120458 -frizzly a 1 1 & 1 0 01030372 -frizzy a 1 2 & + 1 0 01030372 -frolicky a 1 1 & 1 0 02122132 -frolicsome a 1 2 & + 1 0 02122132 -front a 1 3 ! & ^ 1 1 00198147 -frontal a 4 4 & \ + ; 4 1 00131018 02894878 00198757 00131176 -frontmost a 1 1 & 1 0 00198610 -frore a 1 2 & ; 1 0 01253112 -frost-bound a 1 1 & 1 0 01078840 -frostbitten a 1 1 & 1 1 01078673 -frosted a 1 1 & 1 0 00433972 -frostian a 1 2 \ + 1 0 03031886 -frosty a 3 2 & + 3 0 01258264 01253254 01252714 -frothing a 1 1 & 1 0 01176787 -frothy a 2 2 & + 2 0 02276305 00805810 -froward a 1 1 & 1 0 01614372 -frowning a 1 1 & 1 0 01806992 -frowsty a 1 1 & 1 0 01053915 -frowsy a 1 1 & 1 0 02425749 -frowzled a 1 1 & 1 1 02425220 -frowzy a 1 1 & 1 0 02425749 -frozen a 7 3 ! & ^ 7 3 01078302 01564881 01258264 01506945 01072586 00778270 00347707 -frugal a 1 3 & + ; 1 0 02421364 -fruit-eating a 1 1 & 1 0 00314466 -fruitful a 1 4 ! & ^ + 1 1 01080297 -fruiting a 1 1 & 1 0 01489006 -fruitless a 1 2 & + 1 1 01866812 -fruity a 2 2 & + 2 0 02397119 02074929 -frumpish a 1 1 & 1 0 00974519 -frumpy a 1 2 & + 1 0 00974519 -frustrated a 1 1 & 1 1 02333976 -frustrating a 2 1 & 2 1 00867758 01764745 -frustrative a 1 2 & + 1 0 01764745 -fruticose a 1 0 1 0 03021866 -fruticulose a 1 0 1 0 03021866 -fucked-up a 1 1 & 1 0 01669617 -fucking a 1 1 & 1 0 01520655 -fuddled a 1 2 & ; 1 0 00798103 -fueled a 1 2 ! & 1 1 01098492 -fugacious a 1 2 & + 1 0 01756292 -fugal a 1 2 \ + 1 1 03011126 -fuggy a 1 3 & + ; 1 0 02509710 -fugitive a 1 1 & 1 0 01443097 -fugly a 1 1 & 1 0 00221553 -fulfilled a 1 1 & 1 0 00552089 -fulgent a 1 1 & 1 0 00280844 -fulgid a 1 1 & 1 0 00279618 -fulgurant a 1 1 & 1 0 01283787 -fulgurating a 1 2 & ; 1 0 00803751 -fulgurous a 1 1 & 1 0 01283787 -full a 8 4 ! & = + 8 6 01083157 00515380 00522885 02300501 01456710 00106020 01211531 00106277 -full-blood a 1 1 & 1 0 01903813 -full-blooded a 2 1 & 2 0 01903813 01171746 -full-blown a 2 1 & 2 0 01489085 00523068 -full-bodied a 1 1 & 1 0 02397234 -full-bosomed a 1 1 & 1 0 02138989 -full-clad a 1 1 & 1 1 00522680 -full-dress a 3 1 & 3 0 01043226 01042921 00523229 -full-face a 1 2 & ; 1 0 00203495 -full-fashioned a 1 1 & 1 0 02139652 -full-fledged a 2 1 & 2 0 01096308 00935792 -full-grown a 1 2 & ; 1 1 01488616 -full-length a 2 1 & 2 0 00515622 00005107 -full-page a 1 1 & 1 0 00515753 -full-scale a 1 1 & 1 0 00521811 -full-size a 1 1 & 1 0 01388655 -full-strength a 1 1 & 1 0 00757120 -full-term a 1 2 ! ^ 1 0 01495381 -full-time a 1 2 ! & 1 1 01089136 -full_of_life a 1 1 & 1 1 00119006 -fully_fashioned a 1 1 & 1 0 02139652 -fully_fledged a 2 1 & 2 0 01096308 00935792 -fully_grown a 1 2 & ; 1 0 01488616 -fulminant a 1 2 & + 1 0 01144102 -fulsome a 1 2 & + 1 0 02181432 -fumbling a 1 1 & 1 1 02229324 -fumed a 1 1 & 1 0 01954517 -functional a 6 7 ! & ^ \ = + ; 6 2 01090308 01092989 02976260 02124253 01835023 01091728 -functionally_illiterate a 1 1 & 1 0 01422098 -functioning a 1 2 ! & 1 1 01091556 -fundamental a 3 1 & 3 3 01277097 01856419 02162934 -fundamentalist a 1 2 \ ; 1 1 02953235 -fundamentalistic a 1 3 \ + ; 1 0 02953235 -funded a 1 1 ! 1 0 01098293 -funerary a 1 2 \ + 1 0 02950588 -funereal a 1 2 & + 1 0 01368464 -fungal a 1 2 \ + 1 1 02832678 -fungible a 1 3 & + ; 1 0 00917956 -fungicidal a 1 2 \ + 1 0 02832818 -fungoid a 1 1 \ 1 0 02832969 -fungous a 1 2 \ + 1 0 02832678 -funguslike a 1 1 \ 1 0 02832969 -funicular a 1 2 \ + 1 0 02848658 -funky a 4 3 & + ; 4 0 01053634 00855158 00609750 00266228 -funnel-shaped a 1 1 & 1 0 02147297 -funny a 4 3 & + ; 4 3 01265308 00968010 01917594 02545023 -fur-bearing a 1 1 & 1 0 01866129 -furious a 3 2 & + 3 3 02511528 00114454 00304144 -furled a 1 1 & 1 0 00253469 -furlike a 1 1 & 1 0 00213933 -furnished a 1 3 ! & ; 1 1 01096990 -furred a 1 1 & 1 0 00214001 -furrowed a 1 2 ! & 1 0 02243806 -furry a 1 2 & + 1 1 00214001 -further a 1 1 & 1 1 00443988 -furthermost a 1 2 & ; 1 0 00443618 -furthest a 1 2 & ; 1 0 00443618 -furtive a 2 2 & + 2 1 02088974 01706111 -fuscous a 1 1 & 1 0 00375090 -fused a 1 1 & 1 0 02476637 -fusible a 1 2 & + 1 0 01506385 -fusiform a 1 1 & 1 1 01810613 -fussy a 3 2 & + 3 1 01136248 01795203 00984624 -fusty a 2 1 & 2 0 01053915 00574884 -futile a 2 2 & + 2 2 02497471 01866812 -future a 4 7 ! & ^ \ = + ; 4 3 01732270 01884353 01294975 02992914 -future_day a 1 1 & 1 1 01732855 -futureless a 1 1 & 1 0 01230521 -futurist a 1 1 \ 1 0 02993094 -futuristic a 1 2 \ + 1 0 02993094 -fuzzed a 1 1 & 1 1 00214165 -fuzzy a 3 2 & + 3 2 00214165 00781644 00465585 -gabby a 1 2 & + 1 0 02384077 -gabled a 1 1 ! 1 0 01221502 -gabonese a 1 2 \ + 1 0 03066825 -gaelic a 1 2 \ + 1 1 02957823 -gaelic-speaking a 1 1 & 1 0 00497626 -gaga a 2 2 & ; 2 0 01645296 00886448 -gainful a 1 1 & 1 1 01871473 -gainly a 1 1 & 1 0 01140054 -galactic a 2 3 & \ + 2 0 02849098 01383582 -galilaean a 1 2 \ + 1 0 02732569 -galilean a 2 2 \ + 2 0 02732806 02732569 -gallant a 4 2 & + 4 1 00263840 02279622 01285136 00640106 -galled a 1 1 & 1 0 01712076 -gallic a 2 2 \ + 2 0 03066978 02958392 -gallican a 1 1 \ 1 0 02732935 -gallinaceous a 1 1 \ 1 0 02993258 -galling a 1 1 & 1 1 00089550 -galore a 2 1 & 2 0 01552162 00014358 -galvanic a 2 4 & \ + ; 2 1 02827160 00921631 -galvanising a 1 1 & 1 0 00921631 -galvanizing a 1 1 & 1 0 00921631 -galwegian a 1 2 \ + 1 0 02978335 -gambian a 1 2 \ + 1 0 03067153 -game a 2 2 & + 2 0 01018788 00263994 -gamey a 3 2 & + 3 0 02132224 01054047 00263994 -gammy a 1 2 & ; 1 0 01019450 -gamopetalous a 1 1 & 1 0 01775980 -gamy a 3 2 & + 3 0 02132224 01054047 00263994 -gandhian a 1 2 \ + 1 0 03032009 -gangling a 2 1 & 2 0 02385492 00989544 -gangly a 2 1 & 2 0 02385492 00989544 -gangrenous a 1 2 & + 1 0 01176973 -gap-toothed a 1 1 & 1 0 02438968 -gaping a 1 1 & 1 1 01654582 -garbed a 1 1 & 1 1 00454440 -garbled a 1 1 & 1 1 00465221 -gardant a 1 2 & ; 1 0 00203495 -gargantuan a 1 2 & + 1 0 01385773 -garish a 1 2 & + 1 0 02393791 -garlicky a 1 2 \ + 1 0 02733034 -garmented a 1 1 & 1 0 00454440 -garmentless a 1 1 & 1 0 00459102 -garnet-colored a 1 1 & 1 0 00397870 -garnet-coloured a 1 1 & 1 0 00397870 -garrulous a 1 2 & + 1 0 02384077 -gas-filled a 1 1 & 1 0 01085097 -gas-tight a 1 1 & 1 0 01398528 -gaseous a 1 4 ! & = + 1 1 02262542 -gasified a 1 1 & 1 0 02263270 -gassy a 2 2 & + 2 0 02263407 01175741 -gastric a 1 1 \ 1 0 02733187 -gastroduodenal a 1 1 \ 1 0 02733390 -gastroesophageal a 1 1 \ 1 0 02733515 -gastrointestinal a 1 1 \ 1 1 02975697 -gastronomic a 1 2 \ + 1 0 02975840 -gastronomical a 1 2 \ + 1 0 02975840 -gathered a 1 2 ! < 1 0 03147919 -gauche a 1 2 & + 1 1 00851329 -gaudy a 2 2 & + 2 2 02393791 00407420 -gauguinesque a 1 1 \ 1 0 03032131 -gaumless a 1 1 & 1 0 00441154 -gaunt a 1 2 & + 1 1 00988988 -gauntleted a 1 1 & 1 1 01428389 -gaussian a 1 2 \ + 1 0 03028005 -gauze-like a 1 1 & 1 0 02413390 -gauzy a 1 2 & + 1 0 02413390 -gawky a 1 2 & + 1 0 01140896 -gay a 6 2 & + 6 6 00363938 01367651 01298708 00407151 01367431 01201937 -geared a 1 2 ! & 1 0 01100210 -gelatinlike a 1 1 & 1 0 02416610 -gelatinous a 1 2 & + 1 0 02416610 -gelded a 1 1 & 1 0 02137070 -gelid a 1 2 & + 1 0 01252151 -gemmed a 1 1 & 1 0 00056660 -gemmiferous a 1 1 \ 1 0 02733782 -genealogic a 1 2 \ + 1 0 03067329 -genealogical a 1 2 \ + 1 0 03067329 -general a 6 6 ! & ^ = + ; 6 3 01101391 00783840 00487198 01426077 01839663 00527188 -general-purpose a 1 1 & 1 1 01102058 -generalised a 1 2 & ; 1 0 02278513 -generalized a 1 2 & ; 1 1 02278513 -generational a 1 2 \ + 1 0 02733873 -generative a 2 3 ! & + 2 0 01867295 01081592 -generic a 3 4 & \ + ; 3 0 02734016 01109599 01102164 -generous a 3 5 ! & ^ = + 3 3 01111016 01114434 00106182 -genetic a 4 3 & \ + 4 1 01314537 02734544 02734391 02734192 -genetical a 2 2 \ + 2 0 02734544 02734192 -genial a 3 3 & \ + 3 1 01075178 02734776 01242282 -genic a 1 2 \ + 1 0 02734544 -geniculate a 1 2 & ; 1 0 02313138 -genital a 1 1 \ 1 0 02881567 -genitive a 1 2 \ ; 1 0 02862251 -genitourinary a 1 1 \ 1 0 02881711 -genoese a 1 1 \ 1 0 02973056 -genotypic a 1 2 \ + 1 0 02942542 -genotypical a 1 2 \ + 1 0 02942542 -genovese a 1 1 \ 1 0 02973056 -genteel a 1 2 & + 1 0 01947741 -gentile a 1 2 \ + 1 1 02735066 -gentle a 7 2 & + 7 4 01509066 01373314 01455412 01590484 02388773 01192035 01144571 -gentlemanlike a 1 1 & 1 0 01948573 -gentlemanly a 1 2 & + 1 1 01948573 -genuine a 3 4 ! & ^ + 3 3 01115349 02180277 02460964 -geocentric a 1 2 ! & 1 0 01118568 -geodesic a 1 2 \ + 1 0 02993362 -geodesical a 1 2 \ + 1 0 02993362 -geodetic a 1 2 \ + 1 0 02993362 -geographic a 2 3 ! & \ 2 1 03021543 01470496 -geographical a 2 3 & \ + 2 1 03021543 01470496 -geologic a 1 2 \ + 1 0 02905591 -geological a 1 2 \ + 1 1 02905591 -geometric a 2 4 & \ + ; 2 2 01981009 02735208 -geometrical a 2 4 & \ + ; 2 1 02735208 01981009 -geomorphologic a 1 3 \ + ; 1 0 02949511 -geomorphological a 1 3 \ + ; 1 0 02949511 -geophysical a 1 2 \ + 1 0 02908235 -geophytic a 1 2 \ + 1 0 02735375 -geopolitical a 1 2 \ + 1 0 02907935 -georgian a 4 2 \ + 4 0 03068198 03067957 03067712 03067506 -geostationary a 1 1 & 1 0 01059911 -geostrategic a 1 2 \ + 1 0 02735476 -geosynchronous a 1 1 & 1 0 01060110 -geothermal a 1 1 \ 1 0 02735669 -geothermic a 1 1 \ 1 0 02735669 -geriatric a 2 2 \ + 2 0 02916730 02916539 -german a 1 2 \ + 1 1 02957469 -german-american a 1 1 \ 1 0 02916852 -german-speaking a 1 1 & 1 0 00497717 -germane a 1 2 & + 1 0 01975671 -germanic a 2 2 \ + 2 0 03068330 02958126 -germfree a 1 3 ! & ^ 1 0 02116618 -germicidal a 1 2 & + 1 0 02116054 -germinal a 1 2 & + 1 1 01687363 -germy a 1 4 ! & ^ + 1 0 02116934 -gerontological a 1 2 \ + 1 0 02916539 -gerundial a 1 3 \ + ; 1 1 03121060 -gestational a 1 2 \ + 1 0 02983097 -gesticulating a 1 1 & 1 1 00497808 -gestural a 2 1 & 2 0 00498161 00497964 -get-at-able a 1 2 & ; 1 0 00019505 -getable a 1 1 & 1 0 00184363 -getatable a 1 2 & ; 1 0 00019505 -gettable a 1 1 & 1 0 00184363 -ghanaian a 1 2 \ + 1 0 03068473 -ghanese a 1 1 \ 1 0 03068473 -ghanian a 1 2 \ + 1 0 03068473 -ghastly a 2 2 & + 2 1 00195684 01625492 -ghostlike a 1 1 & 1 1 01574925 -ghostly a 1 2 & + 1 1 01574925 -ghoulish a 1 1 & 1 0 01626440 -gi a 1 0 1 0 02975697 -giant a 1 2 & + 1 1 01385773 -gibbose a 1 1 & 1 0 00538174 -gibbous a 2 2 & + 2 0 01019000 00538174 -gibelike a 1 1 & 1 1 01995596 -gibraltarian a 1 2 \ + 1 0 03068737 -giddy a 2 2 & + 2 0 02544048 02120828 -gifted a 1 0 1 0 01119192 -gigantic a 1 2 & + 1 1 01386538 -gilbertian a 2 3 & \ + 2 0 03068909 01266649 -gilded a 4 1 & 4 1 00369941 02182302 02024928 01528730 -gill-less a 1 0 1 0 01107094 -gilled a 1 0 1 0 01106989 -gilt a 1 2 & + 1 1 00369941 -gilt-edged a 2 1 & 2 0 02343378 00058929 -gimbaled a 1 1 & 1 0 02351246 -gimcrack a 1 1 & 1 0 02393791 -gimpy a 1 2 & + 1 0 01018788 -ginger a 1 1 & 1 0 00397975 -ginger-scented a 1 1 & 1 0 01056402 -gingerly a 1 1 & 1 1 00325995 -gingery a 2 1 & 2 0 02397644 00397975 -gingival a 1 2 \ + 1 0 02735812 -girlish a 1 2 & + 1 1 01648698 -given a 2 2 & + 2 2 00028280 01292411 -giving a 1 1 & 1 0 01111418 -glabellar a 1 2 \ + 1 0 02735911 -glabrescent a 1 1 & 1 0 00211444 -glabrous a 1 2 & ; 1 0 00211564 -glace a 1 1 & 1 0 01071941 -glacial a 3 3 & \ + 3 0 02736015 01258264 01252151 -glaciated a 1 1 & 1 0 01078932 -glad a 4 4 ! & ^ + 4 3 01361414 02565583 01146920 00362892 -gladdened a 1 1 & 1 0 00705336 -gladiatorial a 1 2 \ + 1 0 03069079 -gladsome a 1 2 & + 1 0 01361705 -glamorous a 1 2 & + 1 1 00922051 -glamourous a 1 2 & + 1 0 00922051 -glandular a 1 2 \ + 1 0 03069238 -glaring a 2 1 & 2 2 00280844 00580039 -glary a 1 1 & 1 0 00280844 -glass-like a 1 1 & 1 0 01119937 -glassed a 1 0 1 0 01120654 -glassless a 1 0 1 1 01120766 -glassy a 3 3 & + ; 3 2 02237761 01087388 01119661 -glaswegian a 1 2 \ + 1 0 02971311 -glaucous a 1 1 & 1 0 00434097 -glazed a 4 2 ! & 4 1 01087388 01120654 01119421 01699652 -gleaming a 1 1 & 1 1 00279092 -gleeful a 1 2 & + 1 1 01367211 -glial a 1 2 \ + 1 0 02736179 -glib a 3 2 & + 3 0 01874716 01799781 01770726 -glib-tongued a 1 1 & 1 0 01770726 -glimmery a 1 2 & + 1 0 00281527 -glinting a 1 1 & 1 1 00279618 -glistening a 1 1 & 1 1 00281657 -glistering a 1 1 & 1 0 00279618 -glittering a 1 1 & 1 1 00279618 -glittery a 1 2 & + 1 0 00279618 -global a 2 2 & + 2 1 01568684 02041229 -globose a 1 2 & + 1 0 02041229 -globular a 1 2 & + 1 0 02041229 -glomerular a 1 2 \ + 1 1 03009594 -gloomful a 1 1 & 1 0 00275764 -glooming a 1 1 & 1 0 00275764 -gloomy a 3 2 & + 3 1 00275764 00703615 00364881 -glorified a 1 1 & 1 1 00179190 -glorious a 3 4 ! & ^ + 3 1 01120925 01285376 00219389 -glossopharyngeal a 1 1 \ 1 0 02880808 -glossy a 3 2 & + 3 0 01120010 00281657 00168039 -glossy-coated a 1 1 & 1 0 00214323 -glossy-furred a 1 1 & 1 0 00214323 -glossy-haired a 1 1 & 1 0 00214323 -glottal a 1 2 \ + 1 0 02880924 -glottochronological a 1 2 \ + 1 1 02881057 -gloved a 1 2 ! & 1 1 01428282 -gloveless a 1 1 ! 1 0 01428509 -glowering a 1 1 & 1 1 01137378 -glowing a 1 1 & 1 1 00886804 -glued a 1 1 & 1 1 00159106 -gluey a 1 2 & + 1 0 00053691 -glum a 2 2 & + 2 1 00704270 01137378 -gluteal a 1 2 \ + 1 0 02736276 -glutinous a 1 2 & + 1 0 00053691 -glutted a 1 1 & 1 0 01085167 -gluttonous a 1 5 ! & ^ = + 1 0 00009978 -glycogenic a 1 2 \ + 1 0 02736393 -gnarled a 1 1 & 1 0 02313235 -gnarly a 1 2 & + 1 0 02313235 -gnomic a 1 2 \ + 1 0 02849475 -gnomish a 1 1 & 1 0 01393311 -gnostic a 2 3 ! \ + 2 0 02849594 01305792 -go a 1 2 ! & 1 0 01122776 -go-as-you-please a 1 1 & 1 0 00607009 -go-to-meeting a 1 1 & 1 0 00228485 -goaded a 1 1 & 1 0 02521758 -goal-directed a 1 1 & 1 0 01910249 -goalless a 1 1 & 1 0 02335119 -goateed a 1 1 & 1 0 02154247 -goblet-shaped a 1 1 & 1 0 02042411 -gobsmacked a 1 2 & ; 1 0 02358650 -god-awful a 1 1 & 1 0 01802774 -god-fearing a 1 1 & 1 0 01783710 -goddam a 1 1 & 1 1 00669942 -goddamn a 2 1 & 2 1 00670530 00669942 -goddamned a 1 1 & 1 1 00669942 -godforsaken a 1 1 & 1 1 01243102 -godless a 1 2 & + 1 1 01782717 -godlike a 2 1 & 2 1 01261127 01179767 -godly a 2 2 & + 2 0 01781882 01179547 -goethean a 1 2 \ + 1 0 03032219 -goethian a 1 2 \ + 1 0 03032219 -goggle-eyed a 1 2 & ; 1 0 02358762 -going a 1 1 & 1 1 00036163 -gold a 2 2 & + 2 2 01528730 00369941 -gold-bearing a 1 1 & 1 0 01528349 -gold-colored a 1 1 & 1 0 00398172 -gold-coloured a 1 1 & 1 0 00398172 -golden a 6 1 & 6 3 00369941 01149195 01528730 00670938 00300943 00177547 -golden-brown a 1 1 & 1 0 00375303 -golden-green a 1 1 & 1 0 00375387 -golden-yellow a 1 1 & 1 0 00375217 -gonadal a 1 2 \ + 1 0 02975349 -gonadotrophic a 1 1 \ 1 0 03069388 -gonadotropic a 1 2 \ + 1 0 03069388 -gone a 4 2 & ; 4 4 00735882 00095873 01728919 01450084 -gonzo a 1 1 & 1 0 00608791 -good a 21 5 ! & ^ = + 21 14 01123148 00106020 01129977 01983162 00064787 01586752 02036934 02226162 00523364 00452883 02273643 01661289 01048762 00832784 01808329 01333477 01171213 01166413 01116026 01068306 00775611 -good-for-naught a 1 2 & + 1 0 02502578 -good-for-nothing a 1 2 & + 1 0 02502578 -good-hearted a 1 1 & 1 0 01372948 -good-humored a 1 2 & + 1 0 01134232 -good-humoured a 1 2 & + 1 0 01134232 -good-looking a 1 1 & 1 1 00218950 -good-natured a 1 5 ! & ^ = + 1 1 01133876 -good-tempered a 1 2 & + 1 0 01134486 -good-time a 1 1 & 1 0 02258002 -good_enough a 1 1 & 1 1 01124192 -good_for_you a 1 1 & 1 1 02558184 -goodish a 2 1 & 2 0 01124342 00624576 -goodly a 1 1 & 1 0 00624576 -goody-goody a 1 2 & + 1 0 01130614 -gooey a 1 2 & + 1 0 00054109 -goofy a 1 3 & + ; 1 0 02571536 -gooselike a 1 2 & ; 1 0 00439905 -goosey a 1 3 & + ; 1 0 00439905 -goosy a 1 3 & + ; 1 0 00439905 -gordian a 1 1 & 1 0 02178241 -gorgeous a 1 1 & 1 1 00219705 -gormless a 1 1 & 1 0 00441154 -gory a 2 1 & 2 1 00247993 00249104 -gossamer a 2 2 & + 2 1 00706455 02413390 -gossipy a 1 2 & + 1 0 00496422 -gothic a 5 4 & \ + ; 5 0 03069797 03069643 03069542 01537448 00969103 -gouty a 1 2 & + 1 0 02545168 -governable a 1 1 & 1 0 01474942 -governing a 1 1 & 1 1 00792075 -governmental a 1 1 & 1 0 01814711 -gowned a 1 1 & 1 1 00456026 -grabby a 1 1 & 1 0 00029933 -graceful a 2 4 ! & ^ + 2 1 01139352 01142069 -graceless a 3 2 & + 3 0 01142666 01141242 00851329 -gracile a 1 2 & + 1 0 01140188 -gracious a 4 4 ! & ^ + 4 1 01141743 01372568 00641460 00177834 -gradable a 1 1 & 1 0 01203873 -gradational a 1 2 & + 1 0 01143138 -gradatory a 1 1 & 1 0 01143138 -grade-appropriate a 1 1 & 1 0 00135193 -grade-constructed a 1 1 & 1 1 02471466 -graded a 1 1 & 1 1 01203986 -gradual a 2 4 ! & ^ + 2 1 01142804 01144359 -graduate a 1 1 & 1 1 01211665 -graduated a 2 2 & < 2 0 03147643 01143138 -graeco-roman a 1 1 & 1 0 00413861 -graecophile a 1 1 + 1 0 03133141 -graecophilic a 1 1 + 1 0 03133141 -grainy a 1 2 & + 1 0 02231502 -gram-negative a 1 2 & ; 1 0 01821078 -gram-positive a 1 2 & ; 1 0 01820684 -grammatic a 1 2 \ + 1 1 02880322 -grammatical a 2 3 ! \ + 2 1 02880322 01146012 -grand a 8 2 & + 8 2 01284544 01591050 02024928 01676517 01588619 01387149 01278251 00752110 -grandiloquent a 2 2 & + 2 0 02017721 01849960 -grandiose a 2 2 & + 2 1 01285713 01850288 -granitelike a 1 1 & 1 0 01151951 -granitic a 2 2 & + 2 0 01158180 01151951 -granted a 1 1 & 1 1 00028280 -granular a 2 2 & + 2 1 02231502 00365799 -granulated a 1 1 & 1 0 02231886 -granuliferous a 1 1 \ 1 0 02736507 -granulocytic a 1 2 \ + 1 1 03009253 -granulomatous a 1 2 \ + 1 0 02736596 -granulose a 1 1 & 1 0 02231502 -grape-sized a 1 1 & 1 0 02223361 -grapelike a 1 1 \ 1 0 02736716 -grapey a 1 2 & + 1 0 02397903 -graphic a 5 2 & \ 5 2 02285278 00941242 02736983 02736808 01941026 -graphical a 2 3 & \ + 2 1 02736808 02285278 -grapy a 1 2 & + 1 0 02397903 -graspable a 1 1 & 1 0 00533452 -grasping a 1 2 & + 1 0 00029933 -grass-covered a 1 1 & 1 0 00209781 -grass-eating a 1 1 & 1 0 00314559 -grassless a 1 1 ! 1 0 00210212 -grasslike a 1 1 & 1 0 00209916 -grassroots a 2 1 & 2 1 01856686 00487327 -grassy a 1 3 ! & + 1 0 00209620 -grassy-leafed a 1 1 & 1 0 01702031 -grassy-leaved a 1 1 & 1 0 01702031 -grateful a 2 3 ! & + 2 1 01146493 01801327 -gratified a 1 1 & 1 1 01805801 -gratifying a 2 1 & 2 0 01808413 01801029 -grating a 1 1 & 1 0 00299476 -gratis a 1 1 & 1 0 01710260 -gratuitous a 3 1 & 3 1 01371553 01710260 01582049 -gratulatory a 1 1 & 1 0 01000093 -grave a 3 2 & + 3 2 02119213 00651039 01278423 -gravelly a 2 2 & + 2 0 02242223 00299476 -graven a 2 1 & 2 0 00317481 00317310 -gravid a 1 2 & + 1 1 00173391 -gravimetric a 1 2 \ + 1 0 03002841 -gravitational a 1 2 \ + 1 1 02737183 -gravitative a 1 2 \ + 1 0 02737183 -gray a 4 2 & + 4 3 00389310 01645678 01607120 01014685 -gray-black a 1 1 & 1 0 00389607 -gray-blue a 1 1 & 1 0 00375471 -gray-brown a 1 1 & 1 0 00375593 -gray-green a 1 1 & 1 0 00375720 -gray-haired a 1 1 & 1 1 01645678 -gray-headed a 1 1 & 1 0 01645678 -gray-pink a 1 1 & 1 0 00375847 -gray-white a 1 1 & 1 0 00389734 -grayish a 1 1 & 1 0 00389310 -grayish-black a 1 1 & 1 0 00389607 -grayish-blue a 1 1 & 1 0 00375471 -grayish-brown a 1 1 & 1 0 00375593 -grayish-green a 1 1 & 1 0 00375720 -grayish-pink a 1 1 & 1 0 00375847 -grayish-white a 1 1 & 1 0 00389734 -grazed a 1 1 & 1 0 02445394 -greased a 1 0 1 0 02236645 -greaseproof a 1 1 & 1 0 01774483 -greasy a 2 2 & + 2 1 00992432 00422168 -great a 6 3 & + ; 6 4 01386883 01278818 01677433 01123879 01467919 00173391 -great_bellied a 1 1 & 1 0 00222775 -greater a 1 1 ! 1 1 01395330 -greatest a 1 1 & 1 1 02343517 -greathearted a 1 1 & 1 0 01589045 -grecian a 1 2 \ + 1 1 03016202 -greco-roman a 1 1 & 1 0 00413861 -greedy a 3 2 & + 3 1 00029933 00888477 00011160 -greek a 1 2 \ + 1 1 03016202 -greek_orthodox a 1 2 \ ; 1 0 02953598 -green a 5 4 ! & \ + 5 1 00375969 03069937 01493897 02545257 02272485 -green-blind a 1 2 & + 1 0 02159787 -green-eyed a 1 1 & 1 0 02464105 -green-white a 1 1 & 1 0 00389962 -greenhouse a 1 1 \ 1 0 03070101 -greenish a 1 2 & + 1 0 00375969 -greenish-brown a 1 1 & 1 0 00376255 -greenish-gray a 1 1 & 1 0 00389861 -greenish-grey a 1 1 & 1 0 00389861 -greenish-white a 1 1 & 1 0 00389962 -greensick a 1 1 \ 1 0 02695389 -greenside a 1 2 \ ; 1 0 03070230 -gregarious a 3 6 ! & ^ = + ; 3 2 02252634 02248984 02253389 -gregorian a 2 2 \ + 2 0 03070517 03070352 -grenadian a 1 2 \ + 1 0 03070697 -grey a 4 2 & + 4 1 00389310 01645678 01607120 01014685 -grey-black a 1 1 & 1 0 00389607 -grey-blue a 1 1 & 1 0 00375471 -grey-brown a 1 1 & 1 0 00375593 -grey-green a 1 1 & 1 0 00375720 -grey-haired a 1 1 & 1 0 01645678 -grey-headed a 1 1 & 1 0 01645678 -grey-pink a 1 1 & 1 0 00375847 -grey-white a 1 1 & 1 0 00389734 -greyed a 1 1 & 1 0 00405406 -greyish a 1 1 & 1 0 00389310 -greyish-black a 1 1 & 1 0 00389607 -greyish-blue a 1 1 & 1 0 00375471 -greyish-brown a 1 1 & 1 0 00375593 -greyish-green a 1 1 & 1 0 00375720 -greyish-pink a 1 1 & 1 0 00375847 -greyish-white a 1 1 & 1 0 00389734 -grief-stricken a 1 1 & 1 1 01364817 -grieving a 1 1 & 1 0 01364817 -grievous a 4 1 & 4 1 00651039 01365544 01278423 01131454 -grilled a 2 1 & 2 0 00617033 00616654 -grim a 6 2 & + 6 4 01785341 00195684 02079507 01802932 00703615 00364881 -grimy a 1 2 & + 1 1 00420650 -gripping a 1 1 & 1 0 01344171 -grisly a 1 1 & 1 0 00195684 -gristly a 1 2 & + 1 0 02445863 -gritty a 2 2 & + 2 1 02231502 00263994 -grizzled a 1 1 & 1 1 00245763 -grizzly a 1 2 & + 1 0 01645678 -groggy a 1 2 & + 1 1 00875962 -groomed a 1 3 ! & ^ 1 1 02427087 -grooved a 1 1 & 1 1 01636090 -groovy a 2 2 & ; 2 0 01123879 00972354 -groping a 1 1 & 1 0 00338275 -gross a 7 3 ! & + 7 3 01582821 01102308 00987974 02516435 01520091 00683531 00580039 -grotesque a 2 2 & + 2 2 00221627 00967646 -grotty a 1 2 & ; 1 0 01587643 -grouchy a 1 2 & + 1 0 01136248 -ground-floor a 1 1 & 1 0 02494253 -ground-hugging a 1 1 & 1 0 01207007 -groundbreaking a 1 1 & 1 0 01687586 -groundless a 1 1 & 1 1 02353211 -grouped a 1 1 & 1 0 00414919 -groveling a 1 1 & 1 0 00789871 -grovelling a 1 1 & 1 0 00789871 -growing a 1 1 \ 1 0 03070879 -grown a 1 2 & ; 1 1 01488616 -grownup a 1 3 & + ; 1 0 01488616 -grubby a 2 3 & \ + 2 0 02737371 00420650 -grudging a 2 1 & 2 0 02566299 01113636 -grueling a 1 1 & 1 0 00836544 -gruelling a 1 1 & 1 0 00836544 -gruesome a 1 2 & + 1 1 00195684 -gruff a 2 2 & + 2 2 01137000 00299690 -grumbling a 1 1 & 1 0 01457079 -grumose a 1 1 & 1 0 02416036 -grumous a 1 2 & + 1 0 02416036 -grumpy a 1 2 & + 1 0 01136248 -grungy a 1 2 & + 1 0 00420650 -gu a 1 0 1 0 02881711 -guardant a 1 2 & ; 1 0 00203495 -guarded a 1 1 & 1 0 00326202 -guatemalan a 1 2 \ + 1 1 03071022 -gubernatorial a 1 2 \ + 1 1 02983978 -guided a 1 2 ! & 1 0 01428972 -guiding a 2 1 & 2 0 00199463 00199114 -guileful a 1 1 & 1 0 00148078 -guileless a 1 1 & 1 0 02318950 -guilt-ridden a 1 1 & 1 0 01322702 -guiltless a 1 3 & ^ + 1 0 01319874 -guilty a 2 4 ! & ^ + 2 2 01320988 00154583 -guinean a 1 2 \ + 1 0 03071201 -guitar-shaped a 1 1 & 1 0 02147387 -gullible a 2 2 & + 2 1 02272485 00163315 -gum-like a 1 1 & 1 0 00054201 -gummed a 1 1 & 1 0 00054278 -gummy a 2 2 & + 2 1 00053691 00054278 -gumptious a 1 1 & 1 0 00885099 -gung_ho a 1 1 & 1 0 00886895 -gushing a 3 1 & 3 0 01240805 00806064 00720524 -gushy a 1 2 & + 1 0 00720524 -gusseted a 1 1 ! 1 0 00210281 -gustative a 1 1 \ 1 0 02868916 -gustatorial a 1 2 \ + 1 0 02868916 -gustatory a 1 2 \ + 1 0 02868916 -gusty a 1 2 & + 1 0 00305700 -gutless a 2 3 ! & + 2 0 00266985 02325816 -gutsy a 1 2 ! + 1 0 00266634 -guttural a 2 3 & \ + 2 1 00299313 02737461 -guyanese a 1 2 \ + 1 0 03071374 -gymnastic a 2 3 & \ + 2 1 00032497 02849732 -gymnosophical a 1 2 \ + 1 0 02917221 -gymnospermous a 1 2 \ + 1 0 02917327 -gynaecological a 1 2 \ + 1 0 02916969 -gynandromorphic a 1 1 & 1 0 01479025 -gynandromorphous a 1 2 & + 1 0 01479025 -gynecologic a 1 2 \ + 1 0 02916969 -gynecological a 1 2 \ + 1 0 02916969 -gyral a 1 1 \ 1 0 02849904 -gyroscopic a 1 2 \ + 1 0 03071535 -h-shaped a 1 1 & 1 0 02147922 -habilimented a 1 1 & 1 0 00454440 -habit-forming a 1 0 1 0 00047786 -habitable a 1 2 & + 1 1 01423851 -habited a 1 1 & 1 0 00456121 -habitual a 1 2 & + 1 1 00489491 -hackneyed a 1 1 & 1 1 01688757 -hadal a 1 1 \ 1 0 02974393 -hadean a 1 2 & + 1 0 01304081 -haemal a 1 1 \ 1 0 02850309 -haematal a 1 1 \ 1 0 02850309 -haematic a 1 1 \ 1 0 02850483 -haematogenic a 1 1 \ 1 0 02739578 -haematological a 1 2 \ + 1 0 02917470 -haematopoietic a 1 2 \ + 1 0 02739578 -haemic a 1 1 \ 1 0 02850483 -haemolytic a 1 2 \ + 1 0 03007530 -haemophilic a 1 2 \ + 1 0 02850826 -haemopoietic a 1 2 \ + 1 0 02739578 -haemorrhagic a 1 2 \ + 1 0 02740223 -hag-ridden a 1 1 & 1 0 02458046 -haggard a 2 1 & 2 2 02433000 00988988 -hagridden a 1 1 & 1 0 02458046 -hail-fellow a 1 1 & 1 0 01075864 -hail-fellow-well-met a 1 1 & 1 0 01075864 -hair-raising a 1 1 & 1 0 00194817 -hair-shirt a 1 1 \ 1 0 02737655 -hair-shirted a 1 1 \ 1 0 02737655 -haired a 1 1 & 1 0 00212173 -hairless a 1 3 ! & + 1 1 00210446 -hairlike a 1 1 & 1 0 02412880 -hairsplitting a 1 2 & + 1 0 01838379 -hairy a 2 3 ! & + 2 1 00212173 00196122 -haitian a 1 2 \ + 1 0 03071651 -halal a 2 3 & + ; 2 0 01879912 00427496 -halcyon a 2 1 & 2 0 01741270 01149195 -hale a 1 2 & + 1 0 01171396 -half a 3 2 ! & 3 2 00517554 00524496 00518035 -half-and-half a 1 1 & 1 0 00891468 -half-baked a 2 2 & ; 2 0 01836766 00619601 -half-blooded a 1 2 & ; 1 0 01904698 -half-bound a 1 1 & 1 0 00257102 -half-bred a 1 2 & ; 1 0 01904698 -half-breed a 1 2 & ; 1 0 01904698 -half-clothed a 1 1 & 1 0 00459443 -half-crazed a 1 1 & 1 0 02075847 -half-dozen a 1 1 & 1 0 02186833 -half-evergreen a 1 1 & 1 0 00913889 -half-hardy a 1 2 & ; 1 0 02039491 -half-hearted a 1 1 & 1 0 00887472 -half-hourly a 1 1 & 1 0 01968956 -half-length a 2 1 & 2 0 02387662 00004723 -half-seas-over a 1 1 & 1 0 00799129 -half-size a 1 1 & 1 0 01393397 -half-timber a 1 1 & 1 0 02429721 -half-timbered a 1 1 & 1 0 02429721 -half-time a 1 1 & 1 1 01089616 -half-track a 1 1 & 1 0 02453921 -half-tracked a 1 1 & 1 0 02453921 -half-witted a 1 2 & ; 1 0 01840673 -half-yearly a 1 1 & 1 0 01969348 -half_dozen a 1 1 & 1 1 02186833 -halfhearted a 1 1 & 1 0 00887472 -halfway a 3 1 & 3 2 00330506 01014838 00517710 -hallowed a 1 1 & 1 1 02054610 -hallucinating a 1 1 & 1 0 02543823 -hallucinatory a 1 2 & + 1 0 01936997 -hallucinogenic a 1 2 & + 1 0 01777212 -halt a 1 1 & 1 0 01018788 -halting a 2 1 & 2 0 01018788 00290784 -ham-fisted a 1 1 & 1 0 00063563 -ham-handed a 1 1 & 1 0 00063563 -hammer-shaped a 1 1 & 1 0 02147477 -hammered a 1 1 < 1 0 03149025 -hammy a 1 2 & + 1 0 00795395 -hand-crafted a 1 1 & 1 0 00673456 -hand-down a 1 1 & 1 0 01639720 -hand-held a 1 1 < 1 0 03149169 -hand-hewn a 1 1 & 1 0 00663576 -hand-loomed a 1 1 & 1 0 00673807 -hand-me-down a 1 2 & + 1 0 01639720 -hand-operated a 1 1 & 1 0 00182961 -hand-to-hand a 1 1 & 1 1 00449662 -hand-to-mouth a 1 1 & 1 0 00107128 -handed a 1 3 ! & + 1 0 02027704 -handed-down a 1 1 & 1 0 00611527 -handelian a 1 2 \ + 1 0 03032383 -handheld a 1 1 < 1 0 03149169 -handicapped a 1 1 & 1 1 01019283 -handled a 1 1 ! 1 1 02028367 -handleless a 1 1 ! 1 0 02028488 -handless a 2 2 ! & 2 1 02028263 00063563 -handmade a 1 2 ! & 1 1 00673456 -hands-down a 1 1 & 1 0 00750602 -hands-off a 1 1 & 1 0 00039929 -hands-on a 1 1 & 1 0 00039259 -handsewn a 1 1 & 1 0 00673919 -handsome a 2 2 & + 2 2 00218950 01111418 -handstitched a 1 1 & 1 0 00673919 -handwoven a 1 1 & 1 1 00673807 -handwritten a 1 1 & 1 1 02285407 -handy a 3 2 & + 3 2 00019731 00604897 00062626 -hangdog a 2 1 & 2 0 00154583 00079262 -hanoverian a 1 2 \ + 1 0 03071838 -haphazard a 2 2 & + 2 0 01924803 00312519 -hapless a 1 1 & 1 1 01050890 -haploid a 1 3 ! + ; 1 0 01147433 -haploidic a 1 1 ; 1 0 01147433 -happy a 4 5 ! & ^ = + 4 2 01148283 01048406 02565583 01000442 -happy-go-lucky a 1 1 & 1 0 01998260 -haptic a 1 1 \ 1 0 02869097 -harassed a 1 1 & 1 1 02455845 -hard a 12 5 ! & ^ = + 12 5 00744916 01155354 01150915 02322512 00836544 02286294 01157762 01156505 01299173 01158974 01127302 01069715 -hard-and-fast a 1 1 & 1 0 02506267 -hard-baked a 1 1 & 1 0 00617510 -hard-bitten a 1 1 & 1 0 02448623 -hard-boiled a 3 1 & 3 1 02448623 01155815 00617583 -hard-core a 3 1 & 3 0 01025610 00962025 00941375 -hard-fought a 1 1 & 1 1 00747471 -hard-hitting a 2 1 & 2 0 00834959 00083296 -hard-line a 1 1 & 1 0 01026150 -hard-nosed a 1 1 & 1 0 01940651 -hard-of-hearing a 1 1 & 1 0 00682419 -hard-pressed a 1 1 & 1 1 02457558 -hard-shelled a 1 1 & 1 0 02596626 -hard-to-please a 1 1 & 1 0 00710741 -hard_put a 1 1 & 1 1 02457558 -hard_to_please a 1 1 & 1 0 00710741 -hard_up a 1 1 & 1 0 02023661 -hardback a 1 2 & + 1 0 00200258 -hardbacked a 1 1 & 1 0 00200258 -hardbound a 1 1 & 1 0 00200258 -hardcore a 2 1 & 2 0 00962025 00941375 -hardcover a 1 2 & + 1 0 00200258 -hardened a 5 2 ! & 5 1 01155815 01521542 01459158 02447779 01152091 -hardfisted a 1 1 & 1 0 01113505 -hardheaded a 2 1 & 2 0 02328297 01940651 -hardhearted a 2 3 ! & + 2 0 01158020 00507292 -hardline a 1 1 & 1 0 01026150 -hardly_a a 1 1 & 1 1 01553494 -hardscrabble a 1 1 & 1 0 00107250 -hardworking a 1 1 & 1 1 00754682 -hardy a 3 2 & + 3 1 02038994 02039304 00250119 -harebrained a 1 1 & 1 0 02572038 -harmful a 1 4 ! & ^ + 1 0 01160031 -harmless a 1 3 ! & ^ 1 1 01159655 -harmonic a 5 4 ! & \ + 5 1 02737772 02738346 02738091 01163589 01163320 -harmonical a 1 2 & + 1 0 01163320 -harmonious a 4 4 ! & ^ + 4 2 01163083 00894029 00562308 00508036 -harmonised a 1 1 & 1 0 01163320 -harmonizable a 1 1 & 1 0 01986654 -harmonized a 1 1 & 1 0 01163320 -harnessed a 1 1 & 1 0 00599292 -harp-shaped a 1 1 & 1 0 02147567 -harried a 1 1 & 1 0 02455845 -harrowing a 1 1 & 1 0 01711724 -harsh a 6 4 & ^ = + 6 2 01803583 01803792 02230990 01374183 01190916 00090219 -harsh-voiced a 1 1 & 1 0 01453719 -harum-scarum a 1 2 & + 1 0 01998260 -hasidic a 1 1 \ 1 0 02738464 -hassidic a 1 1 \ 1 0 02738464 -hastate a 1 1 & 1 0 02168400 -hasty a 2 2 & + 2 1 01270704 01270868 -hatched a 2 1 & 2 0 01733588 00277749 -hated a 1 1 & 1 1 01463537 -hateful a 2 4 ! & ^ + 2 2 01460421 01587787 -hatless a 1 1 ! 1 1 01428838 -hatted a 1 2 ! & 1 0 01428581 -haughty a 1 2 & + 1 1 01891109 -haunted a 3 1 & 3 1 00544478 02458262 01311705 -haunting a 2 1 & 2 1 01040544 01561079 -hawaiian a 1 2 \ + 1 0 02738760 -hawk-eyed a 1 1 & 1 0 02158438 -hawkish a 1 2 & + 1 0 01742715 -haywire a 2 1 & 2 0 02074929 01092371 -hazardous a 1 2 & + 1 0 02059811 -hazel a 1 2 & + 1 1 00376342 -hazel-brown a 1 1 & 1 0 00376453 -hazy a 2 2 & + 2 1 00461609 00781644 -head-in-the-clouds a 1 1 & 1 0 02121123 -head-on a 2 1 & 2 0 01245889 00198757 -head-to-head a 2 1 & 2 0 01860890 00551416 -headed a 4 2 ! & 4 3 01683221 01184706 01183601 01489207 -headfirst a 1 1 & 1 0 00203614 -headless a 2 2 ! & 2 1 01184261 01336837 -headlike a 1 1 & 1 0 01184085 -headlong a 2 1 & 2 0 01270704 00203614 -heads-up a 1 1 & 1 0 00092275 -headstrong a 1 1 & 1 1 01614372 -heady a 3 2 & + 3 0 01898722 00922228 00250739 -healed a 1 1 & 1 0 02541012 -healing a 1 1 & 1 1 01165943 -healthful a 2 4 ! & ^ + 2 1 01164763 02112976 -healthier a 1 1 & 1 0 00231963 -healthy a 5 5 ! & ^ = + 5 3 01170243 02273838 02558184 01944088 00624576 -hearable a 1 4 & ^ = + 1 0 00173764 -heard a 1 1 & 1 1 01609762 -hearing a 1 2 ! & 1 0 00682744 -hearing-impaired a 1 1 & 1 0 00682419 -hearsay a 1 1 & 1 0 00768808 -heart-healthy a 1 1 & 1 0 02558032 -heart-shaped a 1 1 & 1 0 02167628 -heart-to-heart a 1 2 & + 1 0 01310273 -heart-whole a 1 1 & 1 0 02180486 -heartbreaking a 1 1 & 1 0 01365544 -heartbroken a 1 1 & 1 0 01365103 -heartening a 1 1 & 1 1 00866894 -heartfelt a 1 1 & 1 0 02179968 -heartless a 2 3 & + ; 2 0 01158020 02282171 -heartrending a 1 1 & 1 0 01365544 -heartsick a 2 2 & + 2 0 01365103 01230153 -heartwarming a 1 1 & 1 0 01561280 -hearty a 5 2 & + 5 1 02531243 02558528 01171746 01171606 00523479 -heat-absorbing a 1 2 & ^ 1 0 00872510 -heat-releasing a 1 1 ^ 1 0 00872906 -heatable a 1 2 & + 1 0 01249137 -heated a 2 1 & 2 2 01249309 01256865 -heated_up a 1 1 & 1 0 01249309 -heathen a 1 2 & + 1 0 01784401 -heathenish a 1 1 & 1 0 01784401 -heathlike a 1 1 \ 1 0 02739013 -heatless a 1 1 & 1 0 01253469 -heaven-sent a 1 1 & 1 0 01048976 -heavenly a 3 5 ! & ^ \ + 3 1 02684971 02685153 01178974 -heavenward a 1 1 & 1 0 02491171 -heavier-than-air a 1 2 & ; 1 0 01185636 -heavily_traveled a 1 1 & 1 0 02454339 -heavy a 27 5 ! & = + ; 27 7 01184932 01190683 01193373 01188762 00987769 00502487 00462409 01191618 01191227 02514239 02416390 02411559 02411447 02402439 01457692 01299173 01278423 01192786 01188491 01183114 01145639 01085268 00837415 00836544 00807667 00693020 00173391 -heavy-armed a 1 1 & 1 1 02039632 -heavy-coated a 1 1 & 1 1 00456229 -heavy-duty a 1 2 ! & 1 1 01188328 -heavy-footed a 1 2 ! & 1 0 01192639 -heavy-handed a 2 1 & 2 1 00063563 00788268 -heavy-laden a 2 1 & 2 0 02456875 00868241 -heavy-limbed a 1 1 & 1 0 01414663 -heavyhearted a 1 2 & + 1 0 01362598 -heavyset a 1 1 & 1 0 02387413 -hebdomadal a 1 2 & + 1 0 01968503 -hebdomadary a 1 2 & + 1 0 01968503 -hebephrenic a 1 2 & + 1 1 02076016 -hebraic a 2 2 \ + 2 1 03039087 03039314 -hebraical a 2 2 \ + 2 0 03039314 03039087 -hebrew a 2 2 \ + 2 1 03039314 03039087 -hebridean a 1 2 \ + 1 0 02739085 -hectic a 1 1 & 1 1 00086210 -hedged a 1 1 & 1 0 01913514 -hedonic a 1 2 & + 1 0 01298884 -hedonistic a 1 2 & + 1 0 01298884 -heedful a 3 4 ! & = + 3 0 01194483 01977488 00164308 -heedless a 2 4 ! & = + 2 1 01193714 00312757 -hefty a 3 2 & + 3 1 02321809 01185775 00624576 -hegelian a 1 2 \ + 1 1 03032518 -heightening a 1 1 & 1 0 01340875 -heinous a 1 2 & + 1 0 02514380 -held a 1 1 < 1 1 03149347 -heliac a 1 1 \ 1 0 02739189 -heliacal a 1 1 \ 1 0 02739189 -helical a 1 2 & + 1 0 02317598 -heliocentric a 1 2 ! & 1 0 01118928 -hell-bent a 1 1 & 1 0 01991166 -hellenic a 3 3 & \ + 3 2 00413861 03015805 03016202 -hellenistic a 1 2 \ + 1 0 03015805 -hellenistical a 1 2 \ + 1 0 03015805 -hellish a 2 1 & 2 0 01802774 01132515 -helmet-shaped a 1 1 & 1 0 00538276 -helmeted a 1 1 & 1 0 01094767 -helminthic a 1 2 & + 1 0 01165266 -helpful a 1 4 ! & ^ + 1 1 01195536 -helpless a 3 2 & + 3 3 01827946 01230616 00726317 -helter-skelter a 2 1 & 2 0 01669507 01271410 -hemal a 1 1 \ 1 0 02850309 -hematal a 1 1 \ 1 0 02850309 -hematic a 1 1 \ 1 0 02850483 -hematogenic a 1 1 \ 1 0 02739578 -hematologic a 1 2 \ + 1 0 02917470 -hematological a 1 2 \ + 1 0 02917470 -hematopoietic a 1 2 \ + 1 0 02739578 -hemic a 1 1 \ 1 0 02850483 -hemimetabolic a 1 2 & + 1 0 01530076 -hemimetabolous a 1 2 & + 1 0 01530076 -hemimetamorphic a 1 1 & 1 0 01530076 -hemimetamorphous a 1 2 & + 1 0 01530076 -hemingwayesque a 1 1 \ 1 0 03032642 -hemiparasitic a 1 2 \ + 1 0 02850701 -hemispheric a 1 2 \ + 1 0 02934876 -hemispherical a 1 2 \ + 1 0 02740070 -hemodynamic a 1 1 \ 1 0 02739967 -hemolytic a 1 2 \ + 1 1 03007530 -hemophilic a 1 2 \ + 1 0 02850826 -hemopoietic a 1 2 \ + 1 0 02739578 -hemorrhagic a 1 2 \ + 1 0 02740223 -hemostatic a 1 2 & + 1 0 00189833 -hempen a 1 1 & 1 0 02446380 -henpecked a 1 1 & 1 1 00789988 -hep a 1 2 & ; 1 0 01307571 -hepatic a 1 1 \ 1 0 02740380 -hepatotoxic a 1 2 & + 1 0 02450175 -heralded a 1 1 & 1 0 00469879 -heraldic a 2 2 & \ 2 1 00498286 02993591 -heraldist a 1 1 \ 1 0 02993591 -herbaceous a 1 2 & ; 1 0 02576795 -herbal a 1 2 \ + 1 0 02893195 -herbivorous a 1 2 ! & 1 0 00314023 -herculean a 2 2 & + 2 2 01261363 00747576 -here a 1 2 & + 1 1 01847242 -hereditary a 2 3 & + ; 2 0 01314537 01314197 -heretical a 1 2 & + 1 0 01691474 -heritable a 1 1 & 1 0 01313929 -hermaphrodite a 1 3 & + ; 1 0 01479181 -hermaphroditic a 2 3 & + ; 2 0 01542629 01479181 -hermeneutic a 1 1 \ 1 0 02626294 -hermetic a 1 1 & 1 1 01398772 -hermitic a 1 2 & + 1 0 02578546 -hermitical a 1 2 & + 1 0 02578546 -heroic a 5 2 & \ 5 4 01386010 02740508 00251134 01284544 00263463 -heroical a 1 2 & + 1 0 00251134 -hertzian a 1 2 \ + 1 0 03072518 -hesitant a 1 2 & + 1 0 00686573 -hesitating a 1 1 & 1 1 00686573 -hesperian a 1 1 & 1 0 00825375 -het a 1 1 & 1 0 01249309 -het_up a 2 2 & ; 2 1 01249309 00855309 -heterocercal a 1 2 ! ; 1 0 02590891 -heterocyclic a 1 2 & + 1 0 00676999 -heterodactyl a 1 1 ! 1 0 01198433 -heterodox a 1 1 & 1 0 01691474 -heterodyne a 1 2 \ ; 1 0 02740649 -heteroecious a 1 1 ! 1 0 00180835 -heterogeneous a 2 4 ! & ^ + 2 1 01198737 00181373 -heterogenous a 2 3 ! & ^ 2 0 01198737 00181373 -heteroicous a 1 1 & 1 0 01543225 -heterologic a 1 2 + ; 1 0 01221057 -heterological a 1 2 + ; 1 0 01221057 -heterologous a 2 3 ! + ; 2 0 01221057 01220311 -heterometabolic a 1 2 & + 1 0 01530378 -heterometabolous a 1 1 & 1 0 01530378 -heterosexual a 1 4 ! & = + 1 0 01201100 -heterosporous a 1 2 \ + 1 0 02740793 -heterothermic a 1 1 & 1 0 02533075 -heterotrophic a 1 2 ! ; 1 0 02652877 -heterozygous a 1 3 ! + ; 1 1 01200915 -heuristic a 1 3 ! & + 1 0 00092933 -hewn a 1 1 & 1 0 00663576 -hex a 1 1 \ 1 0 02741658 -hexadecimal a 1 1 \ 1 0 02741658 -hexagonal a 1 2 \ + 1 0 02741797 -hexangular a 1 1 \ 1 0 02741797 -hexed a 1 2 & ; 1 0 01468850 -hi-fi a 1 1 & 1 0 00022680 -hi-tech a 1 1 & 1 0 01208571 -hibernal a 1 1 & 1 0 01256076 -hibernating a 1 2 & ; 1 0 00188155 -hick a 1 1 & 1 0 00636891 -hidden a 3 1 & 3 1 02517817 02089514 02089377 -hidebound a 1 1 & 1 0 00575012 -hideous a 2 2 & + 2 2 01626562 00221934 -hidrotic a 1 2 \ + 1 0 02741943 -hiemal a 1 1 & 1 0 01256076 -hierarchal a 1 1 & 1 0 01203288 -hierarchic a 1 1 & 1 0 01203288 -hierarchical a 1 3 ! & + 1 0 01203288 -hieratic a 3 4 & \ + ; 3 0 02899666 02742039 01981243 -hieratical a 1 1 \ 1 0 02899666 -hieroglyphic a 2 2 \ + 2 0 02742403 02742206 -hieroglyphical a 2 2 \ + 2 0 02742403 02742206 -hifalutin a 1 1 & 1 0 01850288 -higgledy-piggledy a 1 1 & 1 0 02425529 -high a 7 5 ! & ^ = + 7 5 01210854 01204557 02339120 01213197 00705498 01054047 00799224 -high-altitude a 1 1 & 1 0 01205746 -high-and-mighty a 1 1 & 1 0 00787595 -high-backed a 1 1 & 1 1 00200431 -high-ceilinged a 1 1 & 1 1 01209984 -high-class a 1 1 & 1 0 00850434 -high-crowned a 1 1 & 1 0 00654596 -high-energy a 3 2 & \ 3 0 02742564 00874781 00809343 -high-fidelity a 1 1 & 1 0 00022680 -high-flown a 2 2 & ; 2 0 01850446 01588619 -high-grade a 1 1 & 1 0 00228173 -high-handed a 1 2 & + 1 0 00788145 -high-interest a 1 1 ! 1 0 01210717 -high-keyed a 1 1 & 1 0 00918939 -high-level a 2 1 & 2 0 02339577 01205746 -high-minded a 1 2 & + 1 0 01588619 -high-necked a 1 1 & 1 0 01209351 -high-octane a 2 1 & 2 0 00840634 00809343 -high-performance a 1 1 & 1 0 02343636 -high-pitched a 2 2 & = 2 2 01213197 01234952 -high-potential a 1 1 & 1 0 01829835 -high-power a 1 1 & 1 0 00809343 -high-powered a 2 1 & 2 1 00809343 01828836 -high-pressure a 1 1 & 1 0 00083296 -high-priced a 1 1 & 1 1 00933599 -high-principled a 1 1 & 1 0 01551377 -high-ranking a 1 1 & 1 0 02339577 -high-resolution a 1 1 ! 1 1 01218007 -high-rise a 1 2 ! & 1 0 01218341 -high-risk a 1 1 & 1 0 02274537 -high-sounding a 1 2 & ; 1 0 01850446 -high-speed a 1 1 & 1 1 00978429 -high-spirited a 1 2 & + 1 1 02279723 -high-stepped a 1 1 & 1 1 01205886 -high-stepping a 1 1 & 1 0 01205886 -high-strung a 1 1 & 1 0 02406370 -high-sudsing a 1 1 ! 1 1 01210477 -high-tech a 1 3 ! & + 1 0 01208571 -high-tension a 1 3 ! & ; 1 0 01829652 -high-ticket a 1 2 & ; 1 0 00933415 -high-toned a 1 1 & 1 0 00850434 -high-top a 1 1 & 1 0 01206046 -high-topped a 1 1 & 1 1 01206046 -high-velocity a 1 1 & 1 0 00978429 -high-voltage a 2 1 & 2 0 01829835 00809343 -high-yield a 1 1 & 1 0 01081917 -highborn a 1 1 & 1 0 01591227 -highbrow a 1 3 & + ; 1 0 01332907 -highbrowed a 1 2 & ; 1 0 01332907 -higher a 2 1 & 2 2 01211962 01211828 -higher-ranking a 1 1 & 1 0 02100566 -highfalutin a 1 1 & 1 0 01850288 -highfaluting a 1 1 & 1 0 01850288 -highflying a 2 1 & 2 0 02485319 02001406 -highland a 1 2 & + 1 0 01219111 -highly-developed a 1 1 & 1 0 01301840 -highly-sexed a 1 1 & 1 0 02134286 -highly_infective a 1 2 & ; 1 0 00045735 -highly_sensitive a 1 1 & 1 0 02104396 -highly_strung a 1 1 & 1 0 02406370 -hilar a 1 2 \ + 1 1 02947799 -hilarious a 1 2 & + 1 1 01266841 -hilly a 1 2 & + 1 0 02240490 -himalayan a 1 2 \ + 1 0 02965861 -hind a 1 1 & 1 0 00131692 -hinder a 1 1 & 1 0 00131692 -hindering a 1 1 & 1 0 01764351 -hindermost a 1 1 & 1 0 00197773 -hindi a 1 2 \ + 1 0 02923745 -hindmost a 1 1 & 1 0 00197773 -hindoo a 1 2 \ + 1 0 02923745 -hindu a 1 2 \ + 1 0 02923745 -hindustani a 1 2 \ + 1 0 02971672 -hip a 1 2 & ; 1 0 01307571 -hip-length a 1 0 1 0 03072673 -hip_to a 1 2 & ; 1 0 01307571 -hiplength a 1 1 \ 1 0 03072673 -hipless a 1 1 ! 1 0 01222253 -hipped a 2 3 ! & ; 2 0 01222100 01221719 -hippocratic a 1 2 \ + 1 0 03072816 -hircine a 1 1 \ 1 0 02742719 -hired a 2 1 & 2 1 00864346 00360041 -hirsute a 1 2 & + 1 0 00212173 -hispanic a 1 2 \ + 1 0 03072158 -hispaniolan a 1 2 \ + 1 0 03072028 -hispid a 1 2 & ; 1 0 00214461 -histologic a 1 2 \ + 1 0 03072365 -histological a 1 2 \ + 1 0 03072365 -historic a 2 2 & + 2 0 01730060 01279028 -historical a 4 5 ! & \ + ; 4 3 02920121 01934284 01730060 02377418 -historied a 1 1 & 1 0 01121402 -histrionic a 1 2 & + 1 0 00796337 -hit-and-run a 2 1 & 2 1 01629493 00755742 -hit-or-miss a 1 1 & 1 0 01924803 -hitlerian a 1 2 \ + 1 0 03032736 -hitless a 2 2 & ; 2 1 02334717 02335119 -hittite a 1 1 \ 1 0 03032887 -hmong a 1 1 \ 1 0 02923981 -ho-hum a 1 1 & 1 0 01345307 -hoar a 1 1 & 1 0 01645678 -hoarse a 1 2 & + 1 1 00299690 -hoary a 3 3 & + ; 3 0 01645678 01639891 00212949 -hobnailed a 1 1 & 1 0 02052197 -hogged a 1 2 & ; 1 0 00537884 -hoggish a 1 2 & + 1 0 00011327 -hoity-toity a 1 1 & 1 0 01850288 -hokey a 2 1 & 2 0 00854413 00073465 -hole-and-corner a 2 1 & 2 0 02164713 01706465 -hole-in-corner a 1 1 & 1 0 02164713 -holey a 1 2 & + 1 0 01397998 -holier-than-thou a 1 1 & 1 0 01782100 -holistic a 1 2 ! + 1 0 01680689 -hollow a 3 5 ! & ^ = + 3 3 02263982 02010127 01498084 -hollow-eyed a 1 1 & 1 0 00989416 -hollow-horned a 1 1 & 1 0 02034504 -hollywood a 2 2 & \ 2 0 02740899 00683910 -holographic a 3 2 & \ 3 0 03001428 03001278 02285480 -holographical a 1 1 \ 1 0 03001278 -holometabolic a 1 2 & + 1 0 01530622 -holometabolous a 1 2 & + 1 0 01530622 -holophytic a 1 2 ! + 1 0 00315931 -holozoic a 1 1 ! 1 0 00315805 -holy a 1 5 ! & ^ = + 1 0 02053818 -home a 3 4 ! & \ ; 3 2 01219827 02742844 01038332 -home-baked a 1 1 & 1 0 00674633 -home-brewed a 1 1 & 1 0 00674732 -home-cured a 1 1 & 1 0 00674824 -home-loving a 1 1 & 1 0 01039366 -home-style a 1 1 & 1 0 01039460 -homebound a 1 2 & + 1 0 00558827 -homegrown a 1 1 & 1 1 01036874 -homeless a 2 2 & + 2 0 02127693 01050603 -homelike a 1 1 & 1 0 00477661 -homely a 4 2 & + 4 3 00169432 00477661 01793405 00851588 -homemade a 1 2 ! & 1 1 00674270 -homeopathic a 1 2 ! \ 1 0 03072966 -homeostatic a 1 2 \ + 1 0 02741032 -homeothermic a 1 2 & + 1 0 02532681 -homeric a 1 2 \ + 1 1 03073251 -homesick a 1 2 & + 1 0 00889239 -homespun a 3 2 & + 3 0 02240795 02052005 00674913 -homeward a 1 1 & 1 0 01683349 -homeward-bound a 1 1 & 1 0 01683349 -homey a 1 2 & + 1 0 00477661 -homicidal a 1 2 & + 1 1 00248837 -homiletic a 2 2 \ + 2 0 03073574 03073420 -homiletical a 2 2 \ + 2 0 03073574 03073420 -hominal a 1 1 & 1 0 01259644 -homing a 1 1 & 1 0 01685231 -hominian a 1 1 & 1 0 01259746 -hominid a 1 2 & + 1 0 01259746 -hominine a 1 1 & 1 0 01259941 -homocentric a 1 1 & 1 0 00542953 -homocercal a 1 2 ! ; 1 0 02590709 -homochromatic a 1 0 1 0 00366355 -homocyclic a 1 1 & 1 0 00677170 -homoecious a 1 0 1 0 00180655 -homoerotic a 1 2 & + 1 0 01202105 -homogeneous a 1 4 ! & ^ + 1 1 01199751 -homogenised a 2 1 & 2 0 01329413 01200617 -homogenized a 2 1 & 2 0 01329413 01200617 -homogenous a 1 3 & ^ + 1 0 01199751 -homoiothermic a 1 2 & + 1 0 02532681 -homologic a 1 3 & + ; 1 0 01220882 -homological a 1 3 & + ; 1 0 01220882 -homologous a 2 4 ! & + ; 2 0 01220640 01220052 -homonymic a 1 1 \ 1 0 02741150 -homonymous a 1 1 \ 1 0 02741150 -homophile a 1 1 & 1 0 01201937 -homophobic a 1 1 & 1 0 00285413 -homophonic a 2 2 & + 2 0 02064013 01543937 -homophonous a 1 3 \ + ; 1 0 02993853 -homosexual a 1 4 ! & = + 1 1 01201422 -homosporous a 1 2 \ + 1 0 02741271 -homostyled a 1 2 \ ; 1 0 02741373 -homostylic a 1 2 \ ; 1 0 02741373 -homostylous a 1 2 \ ; 1 0 02741373 -homothermic a 1 2 & + 1 0 02532681 -homozygous a 1 3 ! + ; 1 1 01200705 -homy a 1 2 & + 1 0 00477661 -honduran a 1 2 \ + 1 0 02969241 -honest a 7 4 ! & ^ + 7 3 01222360 02180157 02465519 01851795 01225643 01116026 00958475 -honest-to-god a 1 1 & 1 0 01116118 -honest-to-goodness a 1 1 & 1 0 01116118 -honey a 1 2 & + 1 1 00376537 -honey-colored a 1 1 & 1 0 00398271 -honey-coloured a 1 1 & 1 0 00398271 -honey-scented a 1 1 & 1 0 01056481 -honeycombed a 1 1 & 1 0 00327690 -honeyed a 2 1 & 2 0 02338037 01501821 -honeylike a 1 1 & 1 0 02338125 -honied a 1 1 & 1 0 02338037 -honorable a 4 5 ! & ^ = + 4 1 01222360 01226240 02035086 01983162 -honorary a 1 2 & + 1 0 00821959 -honored a 1 1 & 1 1 01982957 -honorific a 1 2 & + 1 0 01994404 -honourable a 2 4 & ^ = + 2 0 01226240 02035086 -hoofed a 1 1 & 1 0 02489485 -hooflike a 1 1 \ 1 0 02742972 -hook-nosed a 1 1 & 1 0 01607492 -hook-shaped a 1 1 & 1 0 02147653 -hooked a 3 1 & 3 2 02312354 00047406 02316366 -hooklike a 1 1 & 1 0 02316366 -hooved a 1 1 & 1 0 02489485 -hoped-for a 1 1 & 1 0 00929815 -hopeful a 2 4 ! & ^ + 2 2 01228530 00176387 -hopeless a 4 5 ! & ^ + ; 4 1 01229020 02229812 01823475 01127440 -hopped-up a 2 2 & ; 2 0 01828987 00799401 -horary a 1 3 \ + ; 1 0 02743112 -horizontal a 1 4 ! & = + 1 1 01232635 -hormonal a 1 2 \ + 1 0 02934744 -horn-rimmed a 1 1 & 1 0 02027319 -horn-shaped a 1 1 & 1 0 02147739 -horned a 1 2 ! & 1 0 02033868 -hornless a 1 1 ! 1 0 02034739 -hornlike a 1 1 & 1 0 01151452 -horny a 3 2 & + 3 0 02131668 02034592 01151452 -horrendous a 1 1 & 1 0 00193799 -horrible a 1 1 & 1 1 00193480 -horrid a 2 2 & + 2 1 01127661 01626562 -horrific a 2 1 & 2 0 01626562 00193799 -horrified a 1 1 & 1 1 00079786 -horrifying a 1 1 & 1 1 00193480 -horror-stricken a 1 1 & 1 1 00079786 -horror-struck a 1 1 & 1 0 00079786 -horse-and-buggy a 1 1 & 1 0 01537269 -horse-drawn a 1 1 \ 1 0 02741557 -hortative a 1 1 & 1 0 00866735 -hortatory a 1 1 & 1 0 00866735 -horticultural a 1 2 \ + 1 0 02927048 -hospitable a 3 4 ! & ^ + 3 1 01242101 01243825 01986134 -hostile a 5 5 ! & ^ + ; 5 2 01244410 01077829 01987093 01243373 00083478 -hot a 21 6 ! & ^ = + ; 21 7 01247240 02511800 01256332 02532114 02132607 01403632 00977372 02527402 02397732 02227485 01816525 01804034 01641791 01468420 01124441 01068438 00811421 00445440 00427105 00358392 00033077 -hot-blooded a 1 1 & 1 0 00855565 -hot-tempered a 1 1 & 1 0 01135914 -hot_and_bothered a 1 2 & ; 1 0 00532560 -hot_under_the_collar a 1 2 & ; 1 0 00115094 -hotheaded a 2 2 & ; 2 0 01135914 00326608 -hottish a 1 1 & 1 0 01249555 -hourglass-shaped a 1 1 & 1 0 02147825 -hourlong a 1 1 & 1 0 01440058 -hourly a 1 2 & + 1 0 01968811 -house-proud a 1 1 & 1 0 01892327 -house-to-house a 1 1 & 1 0 00527551 -house-trained a 1 1 & 1 0 01912280 -housebound a 1 1 & 1 0 00558827 -housebroken a 1 1 & 1 0 01912280 -housewifely a 1 2 & + 1 0 01039556 -howling a 1 1 & 1 0 01676517 -hoydenish a 1 1 & 1 0 01485708 -huddled a 1 1 & 1 1 00559930 -hueless a 1 1 & 1 0 00390071 -huffish a 1 2 & + 1 0 01137994 -huffy a 2 3 & + ; 2 0 02106509 00115193 -huge a 1 1 & 1 1 01387319 -hugger-mugger a 2 2 & + 2 0 02425529 01706465 -hugoesque a 1 1 \ 1 0 03033024 -hulking a 1 1 & 1 0 01387902 -hulky a 1 2 & + 1 0 01387902 -human a 3 5 ! & \ = + 3 3 02743261 02743391 01258617 -human-centered a 1 1 & 1 0 01262284 -human-centred a 1 1 & 1 0 01262284 -human-sized a 1 1 & 1 0 02223457 -humane a 3 6 ! & ^ \ = + 3 1 02743547 01261867 00412460 -humanist a 4 2 & \ 4 1 02743750 02743932 02743547 01262284 -humanistic a 4 3 & \ + 4 1 02743932 02743750 02743547 01262284 -humanitarian a 2 3 & \ + 2 1 01262284 02993702 -humanlike a 1 1 & 1 0 01259123 -humble a 4 5 ! & ^ = + 4 2 02340458 01892953 02229961 01592857 -humbled a 1 1 & 1 0 01893303 -humbling a 1 1 & 1 0 00752555 -humdrum a 2 1 & 2 0 00922840 00807817 -humic a 1 2 \ + 1 0 02744247 -humid a 1 2 & + 1 0 02549393 -humified a 1 1 \ 1 0 02744370 -humiliated a 2 1 & 2 0 01893303 00154270 -humiliating a 1 1 & 1 1 00752555 -humongous a 1 2 & ; 1 0 01388062 -humoral a 1 2 \ + 1 0 02851001 -humorless a 1 2 ! & 1 0 01268426 -humorous a 1 4 ! & ^ + 1 1 01264336 -humourless a 1 1 & 1 0 01268426 -humourous a 1 3 & ^ + 1 0 01264336 -humpbacked a 1 1 & 1 0 01019000 -humped a 1 1 & 1 0 01019000 -hunchbacked a 1 1 & 1 0 01019000 -hunched a 1 1 & 1 0 01239199 -hundred a 1 1 & 1 1 02196107 -hundred-and-eightieth a 1 1 & 1 0 02211716 -hundred-and-fifteenth a 1 1 & 1 0 02209933 -hundred-and-fifth a 1 1 & 1 0 02209678 -hundred-and-fiftieth a 1 1 & 1 0 02210892 -hundred-and-fifty-fifth a 1 1 & 1 0 02211024 -hundred-and-first a 1 1 & 1 0 02209551 -hundred-and-fortieth a 1 1 & 1 0 02210620 -hundred-and-forty-fifth a 1 1 & 1 0 02210752 -hundred-and-ninetieth a 1 1 & 1 0 02211850 -hundred-and-seventieth a 1 1 & 1 0 02211436 -hundred-and-seventy-fifth a 1 1 & 1 0 02211572 -hundred-and-sixtieth a 1 1 & 1 0 02211164 -hundred-and-sixty-fifth a 1 1 & 1 0 02211296 -hundred-and-tenth a 1 1 & 1 0 02209806 -hundred-and-thirtieth a 1 1 & 1 0 02210344 -hundred-and-thirty-fifth a 1 1 & 1 0 02210478 -hundred-and-twentieth a 1 1 & 1 0 02210068 -hundred-and-twenty-fifth a 1 1 & 1 0 02210202 -hundred_and_one a 1 1 & 1 0 02196211 -hundred_thousand a 1 1 & 1 0 02199005 -hundredth a 1 1 & 1 0 02209423 -hungarian a 1 2 \ + 1 1 02961505 -hungry a 2 3 ! & + 2 2 01269073 00888200 -hunky-dory a 1 2 & ; 1 0 02081114 -hunted a 1 1 & 1 1 00079896 -hurried a 1 4 ! & ^ + 1 1 01270175 -hurrying a 1 1 & 1 1 00978581 -hurt a 2 1 & 2 1 01318741 00680532 -hurtful a 2 1 & 2 0 01374361 01161059 -husbandly a 2 3 ! & + 2 0 01735622 01039687 -hush-hush a 1 1 & 1 0 01706465 -hushed a 1 1 & 1 0 01455540 -hushed-up a 1 1 & 1 0 00470372 -husky a 2 3 & + ; 2 2 02038126 00299690 -huxleian a 1 2 \ + 1 0 03033108 -huxleyan a 1 2 \ + 1 0 03033108 -hyaline a 1 2 & + 1 1 00432251 -hyaloid a 1 1 & 1 0 00432251 -hyaloplasmic a 1 2 \ + 1 0 02744460 -hybrid a 1 2 & + 1 0 01904485 -hydrated a 1 1 ; 1 0 02555387 -hydraulic a 2 2 \ + 2 0 03073888 03073751 -hydric a 1 2 ! & 1 0 02589086 -hydrocephalic a 1 2 \ + 1 0 02744565 -hydrodynamic a 1 3 \ + ; 1 0 02979995 -hydroelectric a 1 2 \ + 1 0 02827950 -hydrographic a 1 1 \ 1 0 02744720 -hydrographical a 1 2 \ + 1 0 02744720 -hydrokinetic a 1 3 ! \ + 1 0 02828310 -hydrolyzable a 1 2 \ + 1 0 02744876 -hydrometric a 1 2 \ + 1 0 03002841 -hydropathic a 1 1 \ 1 0 03074039 -hydrophilic a 1 3 ! & ; 1 1 00491971 -hydrophobic a 2 4 ! & + ; 2 1 00491749 00080098 -hydrophytic a 1 2 & + 1 0 02589258 -hydroponic a 1 2 \ + 1 0 02790474 -hydrostatic a 1 3 ! \ + 1 0 02828123 -hydrous a 1 2 ! ; 1 1 02555387 -hydroxy a 1 1 \ 1 0 02744985 -hygienic a 1 2 & + 1 0 02113191 -hygienical a 1 2 & + 1 0 02113191 -hygrophytic a 1 2 & + 1 0 02589402 -hygroscopic a 1 2 & + 1 0 00007096 -hymenal a 1 2 \ + 1 0 03137031 -hymeneal a 1 1 \ 1 0 03137130 -hymenopterous a 1 2 \ + 1 0 02745075 -hyoid a 1 1 \ 1 0 03021459 -hypaethral a 1 1 & 1 0 01659014 -hyperactive a 1 2 & + 1 0 00033206 -hyperbolic a 2 3 & \ + 2 1 00881030 02994089 -hyperboloidal a 1 2 & + 1 0 02046625 -hypercatalectic a 1 2 ! + 1 0 00318291 -hypercritical a 1 1 & 1 0 00648345 -hyperemic a 1 2 \ + 1 1 03011750 -hyperfine a 1 2 & ; 1 1 02414323 -hypermetropic a 1 3 & + ; 1 0 02157747 -hyperopic a 1 3 & + ; 1 0 02157747 -hypersensitised a 1 1 & 1 0 02360944 -hypersensitive a 1 2 & + 1 0 02360944 -hypersensitized a 1 1 & 1 0 02360944 -hypertensive a 1 1 ! 1 0 01599114 -hyperthermal a 1 2 \ + 1 0 02985782 -hypertonic a 2 2 ! + 2 0 02408293 00895126 -hypertrophied a 1 1 ! 1 1 00555117 -hypethral a 1 1 & 1 0 01659014 -hypnagogic a 1 1 & 1 0 02309187 -hypnogogic a 1 1 & 1 0 02309187 -hypnoid a 1 1 & 1 0 00188917 -hypnotic a 2 3 & \ + 2 0 02745203 00168188 -hypnotised a 1 1 & 1 0 00865848 -hypnotized a 1 1 & 1 0 00865848 -hypoactive a 1 1 & 1 1 00034232 -hypochondriac a 1 1 & 1 0 01584164 -hypochondriacal a 1 2 & + 1 0 01584164 -hypocritical a 1 2 & + 1 0 02182562 -hypodermal a 1 2 \ + 1 0 02876829 -hypodermic a 1 2 \ + 1 0 02876936 -hypoglycaemic a 1 2 \ + 1 0 02877131 -hypoglycemic a 1 2 \ + 1 0 02877131 -hypognathous a 1 1 & 1 0 01875560 -hypophyseal a 1 2 \ + 1 1 03011592 -hypophysectomised a 1 1 < 1 1 03150124 -hypophysectomized a 1 1 < 1 0 03150124 -hypophysial a 1 2 \ + 1 0 03011592 -hypotensive a 1 1 ! 1 0 01599228 -hypothalamic a 1 2 \ + 1 1 02982729 -hypothermic a 1 2 \ + 1 0 02985662 -hypothetic a 1 1 & 1 0 00861216 -hypothetical a 1 2 & + 1 1 00861216 -hypotonic a 2 2 ! + 2 0 02408470 00895276 -hypovolaemic a 1 2 \ + 1 0 02877313 -hypovolemic a 1 2 \ + 1 0 02877313 -hysteric a 1 2 & + 1 0 01584287 -hysterical a 2 2 & + 2 2 01584287 00086606 -i a 1 1 & 1 0 02186338 -iambic a 1 2 \ ; 1 0 02897040 -iatrogenic a 1 2 & ; 1 0 02283525 -iberian a 1 2 \ + 1 0 02958714 -ibsenian a 1 2 \ + 1 0 03033259 -ic a 1 1 & 1 0 02196012 -ice-clogged a 1 1 & 1 0 01079143 -ice-cold a 1 1 & 1 0 01253592 -ice-free a 1 1 & 1 0 01079857 -icebound a 1 1 & 1 0 01079052 -icelandic a 1 1 \ 1 0 03074173 -icelandic-speaking a 1 1 & 1 1 00498439 -ichorous a 1 2 \ + 1 0 02851709 -icky a 2 2 & ; 2 0 01127782 00054109 -iconic a 1 2 \ + 1 0 02851550 -iconoclastic a 2 2 & + 2 0 01691687 00588207 -icosahedral a 1 2 \ + 1 0 02851944 -ictal a 1 2 \ + 1 0 02852128 -icteric a 1 2 & + 1 0 01177556 -icterogenic a 1 1 \ 1 0 02852052 -ictic a 1 1 \ 1 0 02852128 -icy a 4 2 & + 4 3 01258264 01252151 01079240 01120242 -ideal a 3 3 & \ + 3 2 01751201 00012689 02745284 -idealised a 1 1 & 1 0 01751353 -idealistic a 2 3 & \ + 2 0 02745284 01588619 -idealized a 1 1 & 1 1 01751353 -ideational a 1 2 & + 1 0 00012071 -idempotent a 1 2 & ; 1 0 00355453 -identical a 5 4 ! & + ; 5 2 02064127 02068946 00292448 01360962 00561896 -identifiable a 1 3 ! & + 1 1 01272397 -identified a 1 1 & 1 1 01376208 -ideographic a 1 1 \ 1 0 02745453 -ideologic a 1 2 & + 1 0 00012932 -ideological a 2 3 & \ + 2 0 02745555 00012932 -idiographic a 1 2 ! ; 1 0 02593735 -idiomatic a 1 2 \ + 1 1 03004358 -idiomatical a 1 2 \ + 1 0 03004358 -idiopathic a 1 1 \ 1 0 02745739 -idiosyncratic a 1 2 & + 1 1 00493820 -idiotic a 3 2 & + 3 1 02075737 02570643 01840880 -idle a 7 4 ! & ^ + 7 3 00294175 02353211 00037188 02121424 01998835 01872265 00865007 -idolatrous a 2 3 & \ + 2 0 02931096 01465922 -idolised a 1 1 & 1 0 01462124 -idolized a 1 1 & 1 1 01462124 -idyllic a 2 2 & + 2 1 01751465 01801446 -iffy a 1 2 & ; 1 0 00341655 -igneous a 3 4 ! & \ ; 3 0 02852265 01354925 01248958 -ignescent a 1 1 & 1 0 00473778 -ignitable a 1 2 & + 1 0 00473243 -ignited a 1 1 & 1 0 00475625 -ignitible a 1 2 & + 1 0 00473243 -ignoble a 2 5 ! & ^ = + 2 0 01589217 01593480 -ignominious a 1 2 & + 1 0 01227546 -ignorant a 3 2 & + 3 2 00831225 00830981 01308894 -ignored a 1 1 & 1 0 01608656 -ii a 1 1 & 1 0 02186470 -iii a 1 1 & 1 0 02186580 -il a 1 1 & 1 0 02191139 -iliac a 1 2 \ ; 1 0 02934216 -ill a 5 4 ! & ^ + 5 3 02541302 01162267 01128010 01246004 00178126 -ill-advised a 1 2 ! ^ 1 0 00068278 -ill-affected a 1 1 & 1 0 00589960 -ill-bred a 1 1 & 1 0 01950857 -ill-chosen a 1 1 & 1 0 01001180 -ill-conceived a 1 1 & 1 1 02572267 -ill-considered a 1 1 & 1 0 01899742 -ill-defined a 1 1 ! 1 0 00698088 -ill-dressed a 1 1 & 1 0 02428810 -ill-equipped a 1 1 & 1 1 01095785 -ill-famed a 1 1 & 1 0 01984411 -ill-fated a 1 1 & 1 1 01051410 -ill-favored a 1 1 & 1 0 00222147 -ill-favoured a 1 1 & 1 0 00222147 -ill-fed a 1 1 & 1 0 02301180 -ill-fitting a 1 1 & 1 0 00480880 -ill-formed a 1 1 & 1 0 01146207 -ill-gotten a 1 1 & 1 0 01403012 -ill-humored a 1 1 & 1 0 01137000 -ill-humoured a 1 1 & 1 0 01137000 -ill-judged a 1 1 & 1 0 01899742 -ill-mannered a 1 1 & 1 0 00641944 -ill-natured a 1 4 ! & ^ = 1 0 01134769 -ill-omened a 1 1 & 1 0 01051410 -ill-proportioned a 1 1 & 1 0 02141644 -ill-scented a 1 1 & 1 0 01053634 -ill-shapen a 1 1 & 1 0 02141298 -ill-smelling a 1 1 & 1 0 01053144 -ill-sorted a 1 1 & 1 0 01487352 -ill-starred a 1 1 & 1 1 01051410 -ill-tempered a 1 1 & 1 0 01136248 -ill-timed a 1 1 & 1 0 01662119 -ill-treated a 1 1 & 1 0 00017352 -ill-used a 1 1 & 1 1 02495687 -ill_at_ease a 1 1 & 1 0 00480439 -illative a 3 3 & \ ; 3 0 02748952 01296961 01296816 -illegal a 1 5 ! & ^ = + 1 1 01401854 -illegible a 1 3 ! & + 1 0 01405214 -illegitimate a 2 3 ! & ^ 2 1 01403760 01407465 -illiberal a 1 2 & + 1 0 00288237 -illicit a 2 3 ! & + 2 1 01550572 01403760 -illimitable a 1 1 & 1 0 01499269 -illiterate a 3 4 ! & ^ = 3 2 01421679 00830981 01421491 -illogical a 2 5 ! & ^ = + 2 0 01430847 00465221 -illuminated a 1 1 & 1 0 00271580 -illuminating a 1 0 1 1 01325777 -illusional a 1 2 & + 1 0 01937187 -illusionary a 1 2 & + 1 1 01937187 -illusive a 1 1 & 1 0 01937390 -illusory a 1 2 & + 1 1 01937390 -illustrative a 2 2 & + 2 1 01305123 01323962 -illustrious a 2 2 & + 2 2 01375831 01121989 -ilx a 1 1 & 1 0 02192090 -ilxx a 1 1 & 1 0 02193046 -ilxxx a 1 1 & 1 0 02194051 -imaginable a 1 1 & 1 0 02418249 -imaginary a 1 1 & 1 1 01936528 -imaginative a 1 2 & + 1 1 00643863 -imbalanced a 1 1 & 1 0 00894757 -imbecile a 1 2 & + 1 0 01840880 -imbecilic a 1 2 & + 1 0 01840880 -imbricate a 1 2 & ; 1 0 02241078 -imbricated a 1 2 & ; 1 0 02241078 -imitation a 1 1 & 1 1 01573238 -imitative a 3 4 ! & ^ + 3 1 01216456 01217579 01116380 -immaculate a 3 2 & + 3 1 00418364 01905140 01750847 -immanent a 2 4 ! & + ; 2 0 01273910 00468574 -immaterial a 5 5 ! & ^ = + 5 1 01488066 00630802 00627410 01976532 01280576 -immature a 5 6 ! & ^ = + ; 5 1 01492394 01646941 01493897 01489722 01096471 -immeasurable a 2 2 ! & 2 0 01498957 00302436 -immediate a 5 4 ! & = + 5 4 01731882 00449079 00770316 01579853 00978754 -immemorial a 1 1 & 1 0 01639973 -immense a 1 2 & + 1 1 01387319 -immensurable a 1 1 & 1 0 01498957 -imminent a 1 2 & + 1 1 00448314 -immiscible a 1 3 ! & ; 1 0 00509735 -immobile a 2 4 ! & ^ + 2 0 01525116 01059711 -immoderate a 1 5 ! & ^ = + 1 0 01533120 -immodest a 2 4 ! & ^ = 2 0 01539642 01538858 -immoral a 2 5 ! & ^ = + 2 2 01549291 02036077 -immortal a 1 4 ! & ^ + 1 1 01557903 -immotile a 1 3 & + ; 1 0 01525502 -immovable a 1 2 & + 1 0 01525320 -immoveable a 1 1 & 1 0 01525320 -immune a 4 3 & \ + 4 0 02745862 02365900 02363614 00072281 -immunised a 1 1 & 1 0 02363811 -immunized a 1 1 & 1 0 02363811 -immunochemical a 1 2 \ + 1 0 02745991 -immunocompetent a 1 2 ! + 1 0 02595469 -immunocompromised a 1 1 \ 1 0 02746103 -immunodeficient a 1 2 ! + 1 0 02595647 -immunogenic a 1 2 & + 1 0 02363939 -immunologic a 1 2 \ + 1 0 02746290 -immunological a 1 2 \ + 1 0 02746290 -immunosuppressed a 1 1 \ 1 0 02746446 -immunosuppressive a 1 1 \ 1 0 02746555 -immunotherapeutic a 1 1 \ 1 0 02746724 -immutable a 1 2 ! + 1 0 00356648 -impacted a 1 1 & 1 1 00502809 -impaired a 2 3 ! & ^ 2 1 01274261 01018264 -impalpable a 3 4 ! & ^ + 3 0 02391867 01717669 01748716 -imparipinnate a 1 1 & 1 0 02172995 -impartial a 2 4 ! & ^ + 2 1 01723308 00286214 -impassable a 1 2 ! & 1 1 01725273 -impassioned a 1 1 & 1 1 01726235 -impassive a 2 2 & + 2 0 00857560 00501313 -impatient a 2 4 ! & ^ + 2 2 01737241 00811536 -impeccable a 2 2 & + 2 1 01750847 02513521 -impeccant a 1 1 & 1 0 02513614 -impecunious a 1 2 & + 1 0 02023661 -impeded a 1 1 & 1 0 01621680 -impeding a 1 1 & 1 0 01764351 -impelled a 1 1 & 1 1 01558749 -impellent a 1 2 & + 1 0 00842550 -impelling a 1 1 & 1 0 00835122 -impendent a 1 2 & + 1 0 00448314 -impending a 1 1 & 1 1 00448314 -impenetrable a 3 3 ! & + 3 0 01771632 02416390 00534918 -impenitent a 2 4 ! & ^ + 2 0 01743909 01957855 -imperative a 2 6 ! & ^ \ + ; 2 1 00712419 03094404 -imperceptible a 1 4 ! & ^ + 1 0 01748318 -imperfect a 2 5 ! & ^ = + 2 2 01752167 01259391 -imperfectible a 1 2 & + 1 0 01753140 -imperforate a 1 1 & 1 0 00662782 -imperial a 4 3 & \ + 4 1 02747036 02747246 02746897 01591394 -imperialist a 1 1 \ 1 0 03074368 -imperialistic a 1 2 \ + 1 0 03074368 -imperious a 1 2 & + 1 0 01891109 -imperishable a 2 3 ! & + 2 0 01753922 01754873 -impermanent a 2 5 ! & ^ = + 2 0 01755627 01007120 -impermeable a 1 4 ! & ^ + 1 0 01772609 -impermissible a 2 4 ! & ^ + 2 0 01761186 01762748 -impersonal a 2 2 ! & 2 2 01769565 01615625 -impertinent a 3 2 & + 3 0 02280090 01976532 00205295 -imperturbable a 1 2 & + 1 0 00530047 -imperviable a 1 2 & ^ 1 0 01773665 -impervious a 1 4 ! & ^ + 1 1 01773665 -impetiginous a 1 1 \ 1 0 02747371 -impetuous a 2 3 & + ; 2 1 00326608 00842704 -impious a 2 5 ! & ^ = + 2 1 01782519 01995863 -impish a 1 2 & + 1 0 02122715 -implacable a 1 3 ! & ^ 1 1 01785180 -implanted a 1 1 & 1 0 01635633 -implausible a 2 4 ! & ^ + 2 0 01799957 01412721 -implemental a 1 2 & + 1 0 01196775 -implemented a 1 0 1 0 00557478 -implicated a 1 1 & 1 1 01516346 -implicational a 1 2 \ + 1 0 03094239 -implicative a 1 2 & + 1 0 00723542 -implicit a 2 5 ! & ^ = + 2 1 00941485 00005599 -implicit_in a 1 1 & 1 1 00941940 -implike a 1 1 & 1 1 02122715 -imploring a 1 1 & 1 0 00713995 -impolite a 1 4 ! & = + 1 0 00641640 -impolitic a 1 3 ! & ^ 1 0 01814085 -imponderable a 1 1 ! 1 0 01815669 -important a 5 5 ! & ^ = + 5 4 01275562 02161432 00655779 01830403 01539887 -important-looking a 1 1 & 1 1 01285850 -imported a 1 1 & 1 0 01035725 -importunate a 1 1 & 1 0 00714320 -imposed a 1 1 & 1 0 00848838 -imposing a 2 1 & 2 1 01283508 00752110 -impossible a 3 5 ! & ^ = + 3 2 01823092 02418692 02436025 -impotent a 2 5 ! & ^ = + 2 1 01824751 01825550 -impoverished a 2 1 & 2 0 02023430 00735195 -impracticable a 1 2 & + 1 0 01823574 -impractical a 2 5 ! & ^ = + 2 1 01836350 02498213 -imprecise a 1 4 ! & ^ + 1 1 01839417 -impregnable a 3 2 & + 3 1 02526124 01001945 00569918 -impressed a 1 1 & 1 0 00071142 -impressible a 1 2 & + 1 0 02364448 -impressionable a 1 2 ! & 1 0 02364448 -impressionist a 1 1 \ 1 1 02747466 -impressionistic a 2 2 \ + 2 0 02747667 02747466 -impressive a 2 4 ! & ^ + 2 1 01282014 00835292 -imprisoned a 1 1 & 1 0 01065126 -improbable a 3 3 ! & + 3 1 01413871 01800169 00646117 -impromptu a 1 1 & 1 1 01845451 -improper a 3 5 ! & ^ = + 3 0 01880531 01961410 00136185 -improvable a 1 1 & 1 0 00635244 -improved a 3 2 ! & 3 2 01288396 00231103 01290174 -improvident a 2 4 ! & ^ + 2 0 01895837 01899742 -improving a 1 1 & 1 0 02487108 -improvised a 1 1 & 1 1 01757211 -imprudent a 2 4 ! & ^ + 2 0 01899360 00773455 -impudent a 2 2 & + 2 2 01996051 00205295 -impugnable a 1 1 & 1 0 01917916 -impuissant a 1 2 & + 1 0 01825310 -impulsive a 5 3 & + ; 5 0 02282651 01843205 00808940 00719442 00326608 -impure a 3 6 ! & ^ = + ; 3 0 01908039 01905377 00427786 -imputable a 1 1 & 1 0 00171872 -imputrescible a 1 1 & 1 0 01754341 -in a 3 2 & ; 3 0 02332204 01295143 00972501 -in-between a 1 1 & 1 0 01014953 -in-bounds a 1 2 & ; 1 0 00955802 -in-chief a 1 2 & ; 1 0 01279183 -in-person a 1 1 & 1 1 01768466 -in-situ a 1 1 & 1 0 00353604 -in-your-face a 1 1 & 1 0 00083749 -in_a_bad_way a 1 1 & 1 0 02457558 -in_advance a 1 1 & 1 1 00198383 -in_agreement a 1 1 & 1 0 02476338 -in_condition a 1 1 & 1 0 01017600 -in_demand a 1 1 & 1 0 00733297 -in_dishabille a 1 1 & 1 0 00459210 -in_effect a 1 1 & 1 1 00832784 -in_evidence a 1 1 & 1 1 00580497 -in_for a 1 1 & 1 1 00341292 -in_force a 1 1 & 1 0 00832784 -in_gear a 1 1 & 1 0 01101022 -in_good_taste a 1 1 & 1 0 00689215 -in_height a 1 1 & 1 1 02385726 -in_her_right_mind a 1 1 & 1 0 02073834 -in_high_spirits a 1 1 & 1 0 00705498 -in_his_right_mind a 1 1 & 1 1 02073834 -in_league a 1 1 & 1 0 02477691 -in_line a 2 1 & 2 1 00128137 00852576 -in_love a 1 1 & 1 0 01465668 -in_one's_birthday_suit a 1 1 & 1 0 00459553 -in_operation a 1 1 & 1 1 00833018 -in_order a 1 1 & 1 1 01931517 -in_play a 1 2 & ; 1 0 00099590 -in_question a 1 1 & 1 0 01916979 -in_series a 1 2 & ; 1 0 02380358 -in_sight a 1 1 & 1 1 02515993 -in_small_stages a 1 1 & 1 0 01143006 -in_stock a 1 1 & 1 1 00184543 -in_store a 1 1 & 1 1 01733189 -in_straitened_circumstances a 1 1 & 1 0 02023661 -in_style a 1 1 & 1 0 00971506 -in_the_altogether a 1 2 & ; 1 0 00458266 -in_the_buff a 1 2 & ; 1 0 00458266 -in_the_flesh a 1 1 & 1 1 01768466 -in_the_lead a 1 1 & 1 0 02490631 -in_the_public_eye a 1 1 & 1 0 01861648 -in_the_raw a 1 2 & ; 1 0 00458266 -in_their_right_minds a 1 1 & 1 0 02073834 -in_use a 2 1 & 2 2 01623360 02495156 -in_vitro a 1 1 ! 1 1 01359277 -in_vivo a 1 2 ! ; 1 0 01359424 -in_vogue a 1 1 & 1 1 00971506 -in_writing a 1 1 & 1 0 02285278 -in_your_birthday_suit a 1 1 & 1 0 00459553 -inaccessible a 2 4 ! & = + 2 0 00019874 00186193 -inaccurate a 1 4 ! & ^ = 1 1 00023383 -inactive a 10 6 ! & ^ = + ; 10 2 01929802 00037757 01660857 00043125 00040685 00039592 00036481 00035074 00033574 01564315 -inadequate a 2 5 ! & ^ = + 2 1 00051696 02336904 -inadmissible a 1 4 ! & = + 1 0 01762582 -inadvertent a 1 2 & + 1 0 01338909 -inadvisable a 2 4 ! & ^ + 2 1 00067767 00932565 -inaesthetic a 1 2 ! & 1 0 00070583 -inalienable a 2 3 ! & ^ 2 0 00093810 00694483 -inalterable a 1 1 & 1 0 00349523 -inane a 1 2 & + 1 1 02571277 -inanimate a 3 5 ! & = + ; 3 1 00120411 00118238 00096595 -inapplicable a 1 2 & + 1 0 01976851 -inapposite a 1 2 & + 1 0 00138782 -inappreciable a 1 1 & 1 0 02165171 -inappropriate a 2 5 ! & ^ = + 2 1 00135718 00562909 -inapt a 1 2 & + 1 0 01001180 -inarguable a 1 1 & 1 0 00591406 -inarticulate a 1 3 ! & ^ 1 0 00151105 -inartistic a 1 1 & 1 0 00070839 -inattentive a 2 5 ! & ^ = + 2 0 00164863 00755876 -inaudible a 1 5 ! & ^ = + 1 1 00174379 -inaugural a 2 2 ! & 2 2 01290766 01009343 -inauspicious a 3 4 ! & = + 3 0 00176838 00997036 00178126 -inauthentic a 1 1 & 1 0 01117677 -inboard a 1 1 ! 1 1 01291234 -inborn a 2 1 & 2 0 01315844 01034153 -inbound a 1 1 & 1 0 01294583 -inbred a 2 2 ! & 2 0 01291757 01034153 -inbuilt a 1 1 & 1 0 01348528 -incalculable a 1 3 ! & ^ 1 1 00301777 -incan a 1 1 \ 1 0 02747989 -incandescent a 2 2 & + 2 1 00271813 01122121 -incapable a 4 5 ! & ^ = + 4 2 00307474 02364066 00308188 00052246 -incapacitated a 1 1 & 1 0 01827946 -incapacitating a 1 1 & 1 0 01168166 -incarnate a 2 1 & 2 1 00630466 00628201 -incased a 1 1 & 1 0 02155054 -incautious a 2 4 ! & ^ + 2 0 00326436 00313041 -incendiary a 3 2 & \ 3 0 02748097 01897378 00473869 -incensed a 1 1 & 1 1 00115494 -incertain a 1 2 & = 1 1 00337404 -incessant a 1 2 & + 1 0 00595299 -incestuous a 2 2 \ + 2 0 02748322 02748216 -inchoate a 1 1 & 1 0 00818829 -inchoative a 1 1 & 1 0 01490505 -incident a 2 3 & \ + 2 1 02987623 01856929 -incidental a 3 2 ! & 3 1 01856929 00903264 00122844 -incipient a 1 2 & + 1 0 00818829 -incised a 3 1 & 3 0 02172770 00661887 00317310 -incisive a 2 2 & + 2 1 01744515 00802020 -incitive a 1 2 & + 1 0 01897378 -inclement a 2 4 ! & ^ + 2 0 00438567 00437852 -inclined a 3 4 ! & ^ = 3 1 01292128 01234167 02565425 -included a 1 1 & 1 0 01658269 -inclusive a 1 3 ! & + 1 1 01863680 -incognito a 1 1 & 1 0 02089724 -incognizable a 1 1 & 1 0 01748824 -incognizant a 1 4 & ^ = + 1 0 00191603 -incognoscible a 1 1 & 1 0 01748824 -incoherent a 3 5 ! & ^ + ; 3 1 00464962 00328653 00152104 -incombustible a 1 1 & 1 0 00474043 -incoming a 2 4 ! & ^ = 2 1 01294300 01294051 -incommensurable a 2 1 & 2 0 00505285 00482139 -incommensurate a 1 3 ! & ^ 1 0 00481855 -incommodious a 1 3 ! & + 1 0 00476494 -incommunicado a 1 1 & 1 0 00501552 -incommunicative a 1 2 & ^ 1 0 00500569 -incommutable a 2 3 ! & + 2 0 00348808 00918616 -incomparable a 1 3 ! & ^ 1 0 00504592 -incompatible a 9 5 ! & ^ + ; 9 1 00508192 00623565 00561036 00509206 02382572 01487352 00578523 00562909 00509896 -incompetent a 5 5 ! & ^ + ; 5 0 00512261 00511214 02229324 01128103 00052246 -incomplete a 2 5 ! & ^ = + 2 1 00523978 01004541 -incomprehensible a 2 4 ! & ^ + 2 2 00939105 00533851 -incomprehensive a 1 1 & 1 0 00529075 -incompressible a 1 2 ! + 1 0 00514717 -incomputable a 1 1 & 1 0 00302436 -inconceivable a 1 2 & + 1 1 02418692 -inconclusive a 1 5 ! & ^ = + 1 0 00550777 -incongruent a 1 2 ! ; 1 0 00562026 -incongruous a 1 3 ! & + 1 0 00562469 -inconsequent a 1 2 & + 1 0 01280349 -inconsequential a 2 1 & 2 1 01280349 01431369 -inconsiderable a 1 1 ! 1 1 00625170 -inconsiderate a 2 4 ! & ^ + 2 0 00639356 02420757 -inconsistent a 3 4 ! & ^ + 3 2 00577920 01987207 00562803 -inconsolable a 1 2 ! & 1 0 01232298 -inconspicuous a 1 4 ! & = + 1 0 00581401 -inconstant a 1 5 ! & ^ = + 1 0 00583990 -incontestable a 2 3 ! & ^ 2 0 00590923 00721636 -incontestible a 1 2 & ^ 1 0 00590923 -incontinent a 1 3 ! & + 1 0 00591953 -incontrovertible a 2 2 & + 2 0 00721838 00591147 -inconvenient a 2 4 ! & = + 2 1 00605128 01662384 -inconvertible a 2 4 ! & = + 2 0 00917207 00348938 -incorporate a 1 1 & 1 0 02477557 -incorporated a 3 1 & 3 0 02477557 01670669 01328604 -incorporative a 1 2 & + 1 0 02535831 -incorporeal a 1 5 ! & ^ = + 1 0 00630802 -incorrect a 4 5 ! & ^ = + 4 1 00632438 01881478 01146371 00023854 -incorrigible a 1 3 ! & ^ 1 0 00635456 -incorrupt a 2 4 ! & = + 2 0 00622581 01549185 -incorruptible a 1 2 & + 1 0 00622935 -increased a 1 2 ! & 1 1 00880207 -increasing a 2 2 ! & 2 1 02534877 02537743 -increasing_monotonic a 1 1 & 1 0 01547595 -incredible a 1 5 ! & ^ = + 1 1 00645493 -incredulous a 1 4 ! & ^ + 1 0 00647070 -incremental a 1 2 & + 1 0 00049266 -incriminating a 1 1 & 1 0 00924952 -incriminatory a 1 2 & + 1 0 00924952 -inculpable a 1 2 & + 1 0 01320705 -inculpative a 1 3 & ^ + 1 0 00923993 -inculpatory a 1 4 ! & ^ + 1 0 00923993 -incumbent a 3 3 & + ; 3 0 02349003 01580601 00667208 -incumbent_on a 1 1 & 1 0 00848983 -incurable a 2 3 ! & + 2 1 00994567 00349759 -incurious a 1 2 ! & 1 0 00665587 -incursive a 1 1 & 1 0 01629681 -incurvate a 1 1 & 1 0 02316524 -incurved a 1 1 & 1 0 02316524 -indebted a 2 2 & + 2 1 01617004 01617144 -indecent a 3 4 ! & ^ + 3 2 01880918 00683185 01539022 -indecipherable a 2 1 & 2 0 01405523 00535042 -indecisive a 3 4 ! & ^ + 3 0 00686081 00685483 00702118 -indecorous a 2 4 ! & ^ + 2 0 00689471 01880918 -indefatigable a 1 2 & + 1 1 00874920 -indefeasible a 1 2 ! & 1 0 00694284 -indefensible a 3 1 & 3 1 01945010 02524345 01722367 -indefinable a 2 1 & 2 1 00697691 00944111 -indefinite a 2 4 ! & ^ + 2 1 00701479 00336564 -indehiscent a 1 2 ! = 1 0 00702962 -indelible a 1 1 & 1 1 00898488 -indelicate a 3 2 & ^ 3 1 02394793 00689471 00684054 -indentured a 1 1 & 1 0 01064806 -independent a 4 6 ! & ^ = + ; 4 2 00727564 01062393 00730215 00731606 -indescribable a 1 1 & 1 1 00944111 -indestructible a 2 4 ! & = + 2 0 00738368 01754049 -indeterminable a 2 3 ! & ^ 2 0 00739273 00302658 -indeterminate a 5 5 ! & ^ + ; 5 1 00740336 00741459 00896378 00739495 00551267 -indexical a 1 2 \ + 1 0 02937534 -indexless a 1 1 \ 1 0 02937648 -indian a 2 2 \ + 2 2 02928347 02928066 -indicative a 2 4 & \ + ; 2 0 03094520 02091300 -indicatory a 1 1 & 1 0 02091300 -indictable a 1 2 & + 1 0 01322044 -indie a 1 1 & 1 0 00729133 -indifferent a 10 3 & + ; 10 4 01342949 00546452 01194328 01280576 02340710 01930004 01724072 01723856 01674604 01532454 -indigenous a 1 2 & + 1 0 01036383 -indigent a 1 2 & + 1 0 02023430 -indigestible a 1 4 ! & ^ + 1 0 01182747 -indignant a 1 1 & 1 1 00115494 -indigo a 1 1 & 1 0 00398373 -indirect a 5 5 ! & ^ = + 5 2 00770993 00762355 01417228 00766457 01854546 -indiscernible a 2 2 ! & 2 0 00582164 01748936 -indiscreet a 1 3 ! & + 1 0 00773109 -indiscrete a 1 1 & 1 0 00785889 -indiscriminate a 2 3 ! & ^ 2 1 00776090 00773759 -indiscriminating a 1 2 & ^ 1 0 00775900 -indispensable a 3 5 ! & ^ = + 3 2 00903668 01580306 00849108 -indisposed a 2 1 & 2 0 02542325 01293542 -indisputable a 2 2 & + 2 0 00721636 00335895 -indissoluble a 2 1 & 2 0 02265891 01755418 -indistinct a 1 4 ! & ^ + 1 1 00781168 -indistinguishable a 2 3 ! & + 2 1 02064127 00582876 -individual a 4 5 ! & ^ = + 4 4 00493460 00729246 02153174 01768086 -individualised a 1 1 & 1 0 01768252 -individualist a 1 1 & 1 0 00494027 -individualistic a 2 2 & + 2 2 00494027 00297897 -individualized a 1 1 & 1 1 01768252 -indivisible a 1 2 ! & 1 0 00785684 -indivisible_by a 1 2 & ; 1 0 00786031 -indo-aryan a 1 1 \ 1 0 03074565 -indo-european a 2 1 \ 2 0 03074777 03074565 -indo-germanic a 1 1 \ 1 0 03074777 -indocile a 1 1 & 1 0 01475526 -indolent a 2 3 & + ; 2 1 00294579 00038260 -indomitable a 1 2 & + 1 0 00570099 -indonesian a 1 2 \ + 1 0 02972194 -indoor a 2 3 ! & ^ 2 1 01692786 00953127 -indrawn a 1 1 & 1 0 01988024 -indubitable a 1 2 & + 1 1 01918541 -induced a 1 2 ! & 1 1 02283188 -inducive a 1 2 & + 1 0 00324013 -inductive a 3 5 ! & ^ \ ; 3 0 02748421 01296270 00324013 -indulgent a 3 4 ! & ^ + 3 2 01297315 01763159 00996343 -indurate a 1 1 & 1 0 02107162 -indusial a 1 1 \ 1 0 02748542 -industrial a 4 4 ! & ^ \ 4 3 02748635 01301624 02556901 01188648 -industrial-strength a 1 1 & 1 0 02322704 -industrialised a 1 1 & 1 0 01301992 -industrialized a 1 1 & 1 0 01301992 -industrious a 2 2 & + 2 1 00754682 00885099 -indwelling a 1 1 & 1 0 00951528 -inebriated a 1 1 & 1 0 00797299 -inedible a 1 3 ! & ^ 1 0 00829496 -ineffable a 2 1 & 2 1 00944111 02055617 -ineffective a 3 5 ! & ^ = + 3 0 00835609 01825080 00511739 -ineffectual a 3 4 & ^ = + 3 0 00835609 02497471 01825080 -inefficacious a 1 4 ! ^ = + 1 0 00839411 -inefficient a 2 4 ! & ^ + 2 0 00840902 00511739 -inelaborate a 1 1 & 1 0 01793557 -inelastic a 1 4 ! & ^ + 1 0 00845528 -inelegant a 1 4 ! & ^ + 1 0 00851103 -ineligible a 2 5 ! & ^ + ; 2 1 00852988 01404042 -ineluctable a 1 1 & 1 0 00343360 -inept a 3 2 & + 3 2 01001180 00511526 00063953 -inequitable a 1 1 ! 1 0 00958712 -ineradicable a 1 3 ! & ^ 1 0 00898289 -inerrable a 1 1 & 1 0 00965359 -inerrant a 1 2 & + 1 0 00965359 -inert a 3 3 & + ; 3 2 01565038 01930004 00034322 -inertial a 1 1 \ 1 0 02748757 -inescapable a 1 1 & 1 1 00343360 -inessential a 2 5 ! & ^ = + 2 0 00902652 01582224 -inestimable a 1 1 & 1 0 00302436 -inevitable a 2 3 ! & + 2 2 00343015 01841834 -inexact a 1 4 ! & ^ + 1 0 00915787 -inexcusable a 2 2 ! & 2 1 01722260 01721867 -inexhaustible a 2 2 ! & 2 1 01008289 00925642 -inexorable a 2 2 & + 2 2 01785341 01024812 -inexpedient a 2 4 ! & ^ + 2 0 00932367 01814252 -inexpensive a 1 2 & + 1 1 00934199 -inexperienced a 1 3 ! & ^ 1 1 00936740 -inexperient a 1 3 & ^ + 1 0 00936740 -inexpert a 1 1 & 1 0 01870636 -inexpiable a 1 1 & 1 0 01721953 -inexplicable a 1 3 ! & ^ 1 1 00939105 -inexplicit a 1 4 & ^ = + 1 0 00941485 -inexpressible a 1 2 ! & 1 1 00943999 -inexpressive a 1 1 & 1 0 00501723 -inexpugnable a 1 1 & 1 0 00569918 -inexpungeable a 1 1 & 1 0 00898628 -inexpungible a 1 1 & 1 0 00898628 -inextensible a 1 0 1 0 00945019 -inexterminable a 1 1 & 1 0 00898814 -inextinguishable a 1 1 ! 1 0 00947945 -inextirpable a 1 1 & 1 0 00898814 -inextricable a 1 2 ! & 1 1 00945207 -infallible a 1 3 ! & + 1 1 00964906 -infamous a 1 2 & + 1 1 01984411 -infantile a 3 2 & \ 3 1 01493016 02748837 01648189 -infatuated a 1 1 & 1 0 01465668 -infeasible a 1 2 & + 1 0 01823574 -infected a 1 2 & ^ 1 0 02113827 -infectious a 3 4 ! & \ + 3 2 02114746 01302811 02833070 -infective a 2 2 & + 2 1 01168434 02114746 -infelicitous a 2 5 ! & ^ = + 2 0 01000881 01051814 -inferential a 5 4 & \ + ; 5 2 02748952 01297152 01296961 00723786 00585751 -inferior a 6 6 ! & ^ = + ; 6 2 02340213 02345272 02349852 02348678 02440996 02297409 -infernal a 5 5 ! & ^ \ + 5 3 02859053 01132515 00669942 02974812 01303776 -infertile a 1 4 & ^ = + 1 1 01002377 -infinite a 4 5 ! & ^ + ; 4 1 01007354 01008745 00301951 00005718 -infinitesimal a 1 1 & 1 0 01393483 -infinitival a 1 2 \ + 1 0 02937294 -infirm a 2 2 & + 2 0 02040233 01992555 -inflamed a 3 2 & ; 3 2 01177105 00270496 00059028 -inflammable a 1 2 & + 1 0 00473658 -inflammatory a 2 2 & + 2 1 01177246 01897378 -inflatable a 1 2 & + 1 0 00947520 -inflated a 2 2 & ; 2 1 00881030 01850446 -inflationary a 1 3 ! + ; 1 0 02538626 -inflected a 2 3 ! & ; 2 0 00700016 00699651 -inflectional a 1 2 ! + 1 0 00113015 -inflexible a 4 4 ! & ^ + 4 1 01024597 01025913 01023289 01029151 -inflowing a 1 1 & 1 0 01295255 -influent a 1 1 & 1 1 01295255 -influential a 1 3 ! & + 1 1 01830134 -informal a 4 5 ! & ^ = + 4 2 01044240 01634027 01045711 01076145 -informational a 1 1 \ 1 0 02749150 -informative a 3 4 ! & ^ + 3 0 01325777 01323449 01304570 -informatory a 1 3 & ^ + 1 0 01304570 -informed a 1 3 ! & ^ 1 1 01306273 -infra_dig a 1 1 & 1 0 00752714 -infrahuman a 1 1 & 1 0 01261727 -inframaxillary a 1 1 \ 1 0 02877910 -infrangible a 2 1 & 2 0 00709959 00094069 -infrared a 1 1 & 1 1 02517999 -infrasonic a 1 1 & 1 0 00174879 -infrequent a 1 4 ! & ^ + 1 1 01067193 -infuriated a 1 1 & 1 0 00114454 -infuriating a 1 1 & 1 1 01809245 -ingenious a 1 2 & + 1 0 00061885 -ingenuous a 2 4 ! & ^ + 2 0 01309991 02272670 -inglorious a 2 3 ! & ^ 2 1 01227546 01122411 -ingrained a 1 1 & 1 0 01635633 -ingratiating a 2 1 & 2 0 01808544 00908143 -ingratiatory a 2 2 & + 2 0 01770177 00908143 -ingrowing a 1 1 & 1 0 01177435 -ingrown a 1 1 & 1 0 01177435 -inguinal a 1 2 \ + 1 0 02749257 -inhabitable a 1 1 & 1 0 01423851 -inhabited a 1 2 ! & 1 1 01311321 -inhalant a 1 2 \ + 1 0 02749365 -inharmonic a 1 1 & 1 0 01164250 -inharmonious a 2 4 ! & ^ + 2 0 01164072 00563116 -inherent a 2 2 & + 2 1 01348528 00941940 -inheritable a 1 2 ! & 1 0 01313929 -inherited a 1 1 & 1 0 01314537 -inheriting a 1 1 & 1 0 01315249 -inhibited a 1 3 ! & ^ 1 1 01316222 -inhibitory a 1 2 & + 1 1 02004176 -inhomogeneous a 1 1 & 1 0 01199663 -inhospitable a 2 4 ! & ^ + 2 1 01242489 01244195 -inhuman a 2 2 & + 2 2 01263971 01260707 -inhumane a 1 5 ! & ^ = + 1 1 01262611 -inhumed a 1 1 & 1 0 00292611 -inimical a 1 2 & + 1 0 01246388 -inimitable a 1 1 & 1 0 01868470 -iniquitous a 1 2 & + 1 0 02514543 -initial a 1 1 & 1 1 01011973 -initiative a 1 2 & + 1 0 01009343 -initiatory a 1 2 & + 1 0 01009343 -injectable a 1 3 ! + ; 1 0 01317678 -injudicious a 1 2 & + 1 0 01899970 -injured a 1 3 ! & ^ 1 1 01317954 -injurious a 1 2 & + 1 0 01161059 -ink-black a 1 1 & 1 0 00390195 -ink-jet a 1 1 \ 1 0 02749510 -inky a 1 2 & + 1 0 00390195 -inky-black a 1 1 & 1 0 00390195 -inlaid a 1 1 & 1 0 00059131 -inland a 1 2 ! & 1 0 00463784 -inmost a 2 1 & 2 0 00951709 00950465 -innate a 3 2 & + 3 0 01637184 01335708 01315844 -inner a 6 5 ! & ^ = ; 6 4 00951831 00950272 01348835 01863066 01862891 00948985 -innermost a 2 1 & 2 0 00951709 00950465 -innocent a 7 5 ! & ^ + ; 7 4 01319874 01159907 02513614 02272670 01309220 00927978 00572392 -innocuous a 3 3 ! & ^ 3 0 01611839 01627635 01159907 -innovational a 1 2 & + 1 0 01687586 -innovative a 2 2 & + 2 0 01876261 01687586 -innoxious a 1 1 & 1 0 01611973 -innumerable a 1 2 & + 1 1 00301951 -innumerate a 1 2 ! = 1 0 00832200 -innumerous a 1 1 & 1 0 00301951 -inodorous a 1 2 & = 1 0 01057775 -inoffensive a 3 3 ! & = 3 0 01628677 01627459 00908483 -inoperable a 2 2 ! & 2 1 02125198 01169940 -inoperative a 1 2 ! & 1 0 00833575 -inopportune a 1 4 ! & ^ + 1 0 01661914 -inordinate a 1 2 & + 1 0 01533974 -inorganic a 2 3 ! & ; 2 1 01679244 01680116 -inpouring a 1 1 & 1 0 01295337 -inquiring a 1 3 ! & ^ 1 1 00878829 -inquisitive a 2 2 & + 2 1 00664879 00879259 -inquisitorial a 3 4 ! & \ + 3 0 03042005 00879624 00879468 -inquisitory a 1 1 & 1 0 00879918 -insalubrious a 1 2 & + 1 0 02559534 -insane a 2 4 ! & ^ + 2 2 02074092 02572038 -insanitary a 1 1 & 1 0 02113449 -insatiable a 1 1 & 1 0 02078399 -insatiate a 1 2 ! & 1 0 02078399 -inscribed a 2 1 & 2 1 02285607 00317310 -inscriptive a 1 1 \ 1 0 02749600 -inscrutable a 1 2 & + 1 1 00939444 -insectan a 1 2 \ + 1 0 02832164 -insecticidal a 1 1 \ 1 0 02749690 -insectivorous a 1 4 ! & + ; 1 0 00315383 -insecure a 4 4 ! & ^ + 4 0 02095786 02094755 02093493 02524443 -insensate a 2 2 & = 2 0 00117754 01263971 -insensible a 4 4 ! & ^ + 4 0 02102796 02107827 01748936 00572534 -insensitive a 2 5 ! & ^ = + 2 1 02105375 02106761 -insentient a 1 4 ! & = + 1 0 00117754 -inseparable a 1 1 & 1 1 00786173 -inshore a 2 2 ! & 2 0 00464195 00463308 -inside a 4 3 ! & ^ 4 2 01693799 00953213 01863066 00950592 -inside-out a 1 1 & 1 0 02468208 -insidious a 3 2 & + 3 0 02097884 02060106 01162406 -insightful a 1 2 & + 1 0 01745296 -insignificant a 4 5 ! & ^ = + 4 3 01288298 01498298 01473353 02164402 -insincere a 1 5 ! & ^ = + 1 0 02180797 -insinuating a 1 1 & 1 0 00908143 -insipid a 2 2 & + 2 0 02399595 01345997 -insistent a 2 2 & + 2 2 00592539 00712877 -insolent a 2 2 & + 2 2 01996051 00155144 -insoluble a 3 4 ! & ^ + 3 1 02265891 02266600 01230728 -insolvable a 1 1 & 1 0 02266771 -insolvent a 1 3 ! & + 1 0 02026442 -insomniac a 1 1 & 1 0 00187176 -insouciant a 1 2 & + 1 0 00545746 -inspirational a 1 2 & + 1 1 02055773 -inspiratory a 1 2 \ + 1 0 03110485 -inspired a 1 1 & 1 1 01121507 -inspiring a 1 2 ! & 1 1 01323096 -inspiriting a 1 1 & 1 0 00866894 -inst a 1 1 & 1 0 01732012 -instant a 3 2 & + 3 1 00979031 01732012 00712877 -instantaneous a 1 2 & + 1 1 00979031 -instigative a 1 2 & + 1 0 01897378 -instinct a 1 1 & 1 0 01085442 -instinctive a 1 1 & 1 0 02282985 -institutional a 2 4 ! & \ + 2 1 02749778 01231191 -institutionalised a 2 1 & 2 0 01230850 01231369 -institutionalized a 2 2 ! & 2 2 01230850 01231369 -instructional a 1 2 \ + 1 1 02981759 -instructive a 1 4 ! & ^ + 1 1 01323449 -instrumental a 2 4 ! & \ + 2 1 02825770 01196775 -insubordinate a 2 3 ! & ^ 2 0 02330336 00695938 -insubstantial a 2 5 ! & ^ = + 2 1 00625774 02559694 -insufferable a 1 1 & 1 0 02436025 -insufficient a 1 5 ! & ^ = + 1 1 02336449 -insular a 3 3 & \ + 3 0 02750483 01859970 00637267 -insulting a 1 1 & 1 0 01995288 -insuperable a 2 1 & 2 1 00570225 02357322 -insupportable a 1 1 & 1 0 01722367 -insurable a 1 1 & 1 0 02096923 -insured a 1 2 ! & 1 1 02096759 -insurgent a 1 2 & + 1 0 00963283 -insurmountable a 2 3 ! & ^ 2 1 02357115 00570225 -insurrectional a 1 2 \ + 1 0 02919100 -insurrectionary a 1 2 \ + 1 0 02919100 -insusceptible a 1 3 & ^ = 1 0 02363358 -intact a 4 2 & + 4 2 00515870 01319434 02137394 00681268 -intangible a 4 5 ! & ^ + ; 4 0 02392654 02391867 01273454 00627643 -integral a 3 3 & \ + 3 2 01348528 00515870 02685703 -integrated a 4 3 ! & ^ 4 1 02477557 01327925 01326148 01679744 -integrative a 2 4 ! & ^ + 2 0 01330986 00334940 -integumental a 1 2 \ + 1 0 02685785 -integumentary a 1 2 \ + 1 0 02685785 -intellectual a 3 5 ! & ^ = + 3 2 01780343 01332386 01927455 -intelligent a 4 5 ! & ^ = + 4 4 01334398 02271052 01944088 01926089 -intelligible a 2 4 ! & ^ + 2 1 00533452 01336926 -intemperate a 3 4 ! & ^ + 3 0 02403030 02402268 01299173 -intended a 2 4 ! & ^ = 2 1 01337486 00158238 -intense a 3 5 ! & ^ = + 3 1 01509527 00803275 00393683 -intensified a 1 1 & 1 0 01512142 -intensifying a 1 2 ! & 1 1 01340256 -intensional a 1 3 & + ; 1 0 00723910 -intensive a 3 4 ! & \ + 3 1 01512275 02858941 01514374 -intent a 1 2 & + 1 1 00163948 -intentional a 2 2 & + 2 1 01338116 01339730 -interactional a 1 2 & + 1 0 01946439 -interactive a 2 2 & + 2 0 00623356 01946439 -interbred a 1 1 & 1 0 01291850 -intercalary a 1 1 & 1 0 00049469 -intercellular a 1 2 \ ; 1 0 02685946 -interchangeable a 2 3 & + ; 2 0 02372697 01978532 -interchurch a 1 1 & 1 0 02092741 -intercollegiate a 1 1 & 1 0 01347348 -interconnected a 2 2 & + 2 0 02006933 01328229 -intercontinental a 1 2 ! & 1 1 01567500 -intercostal a 1 3 \ + ; 1 0 02704983 -intercrossed a 1 1 & 1 0 01904485 -interdenominational a 1 1 & 1 0 02092741 -interdepartmental a 1 2 ! \ 1 1 03060114 -interdependent a 1 2 & + 1 1 00726445 -interdisciplinary a 1 1 \ 1 0 03061250 -interest-bearing a 1 1 \ 1 0 02686046 -interested a 2 3 ! & + 2 2 01342237 01515692 -interesting a 1 5 ! & ^ = + 1 1 01343918 -interfacial a 1 2 \ + 1 0 02878680 -interfaith a 1 1 & 1 1 01783863 -interfering a 1 1 & 1 1 01352561 -intergalactic a 1 1 \ 1 0 02849367 -interim a 1 1 & 1 1 01757483 -interior a 5 4 ! & ^ = 5 1 00952867 01038332 00951831 00949115 00463917 -interlaced a 1 1 & 1 0 02006798 -interlacing a 1 1 & 1 0 02178348 -interlineal a 1 1 \ 1 0 02749971 -interlinear a 1 1 \ 1 0 02749971 -interlinking a 1 1 & 1 0 02178348 -interlobular a 1 1 \ 1 1 02948198 -interlocking a 1 1 & 1 1 02178348 -interlocutory a 1 1 \ 1 0 02828482 -intermediate a 2 2 ! & 2 2 01014251 01531957 -intermeshed a 2 1 & 2 1 00255453 01100817 -interminable a 1 1 & 1 1 01439784 -intermittent a 1 2 & + 1 1 00593836 -intermolecular a 1 1 \ 1 1 02901178 -intermural a 1 1 & 1 0 01347492 -internal a 5 4 ! & ^ = 5 4 00948670 01346978 01038332 00951831 01348835 -international a 2 4 ! & ^ + 2 2 01568375 01037885 -internationalist a 1 1 & 1 0 01569002 -internationalistic a 1 2 & + 1 0 01569002 -internecine a 2 1 & 2 0 00949229 00249303 -interoceptive a 1 1 \ 1 0 02868235 -interoperable a 1 3 & + ; 1 0 01835276 -interpersonal a 1 1 & 1 1 02249183 -interplanetary a 1 1 \ 1 0 02779310 -interpretable a 1 1 & 1 1 00938979 -interpretative a 1 2 & + 1 1 01325017 -interpreted a 1 1 & 1 0 01378671 -interpretive a 1 2 & + 1 0 01325017 -interracial a 2 1 & 2 0 01928019 01326652 -interred a 1 1 & 1 0 00292611 -interrelated a 1 2 & + 1 1 02006933 -interrogative a 2 4 ! \ + ; 2 0 03094740 00687163 -interrogatory a 1 2 ! + 1 0 00687163 -interrupted a 2 1 & 2 0 00598413 00290593 -interscholastic a 1 1 & 1 0 01347613 -interschool a 1 1 & 1 0 01347613 -intersectant a 1 2 & + 1 0 00653044 -intersecting a 1 1 & 1 1 00653044 -intersexual a 2 1 & 2 0 02135595 01479376 -interspecies a 1 1 ! 1 1 01341920 -interspecific a 1 0 1 0 01341920 -interstate a 1 1 ! 1 1 01569549 -interstellar a 1 1 \ 1 1 02803150 -interstitial a 1 2 \ + 1 1 02828564 -intertidal a 1 1 \ 1 0 02705138 -intertribal a 1 1 \ 1 0 03075087 -intervening a 1 1 & 1 0 00816160 -intervertebral a 1 1 \ 1 0 02750377 -interwoven a 1 1 & 1 1 02178348 -intestate a 1 2 ! ; 1 0 02444894 -intestinal a 1 2 \ + 1 0 02935530 -intimal a 1 2 \ + 1 1 03008785 -intimate a 6 1 & 6 3 00453308 01076145 00453053 02132735 01348835 00936038 -intimidated a 1 1 & 1 0 00252733 -intimidating a 1 1 & 1 0 00867520 -intolerable a 1 3 ! & ^ 1 1 02435671 -intolerant a 2 4 ! & ^ + 2 0 02436622 00288237 -intoned a 1 1 & 1 0 02020609 -intoxicant a 1 2 & + 1 0 01159119 -intoxicated a 2 2 ! & 2 0 00797299 00920260 -intoxicating a 2 1 & 2 0 01159119 00922228 -intra_vires a 1 2 ! ; 1 0 01347935 -intracellular a 1 3 ! \ ; 1 0 02686159 -intracerebral a 1 1 \ 1 0 02750090 -intracranial a 1 1 \ 1 0 02750166 -intractable a 1 5 ! & ^ = + 1 1 02451951 -intracutaneous a 1 1 \ 1 0 02877503 -intradepartmental a 1 2 ! \ 1 1 03060257 -intradermal a 1 1 \ 1 0 02877503 -intradermic a 1 1 \ 1 0 02877503 -intragroup a 1 1 & 1 0 01346978 -intralinguistic a 1 1 \ 1 0 02842862 -intralobular a 1 1 \ 1 0 02948281 -intramolecular a 1 1 \ 1 0 02901028 -intramural a 1 2 ! & 1 0 01346755 -intramuscular a 1 1 \ 1 0 02882838 -intransigent a 1 2 & + 1 0 01024812 -intransitive a 1 3 ! + ; 1 0 02488907 -intrapulmonary a 1 1 \ 1 1 02935437 -intrasentential a 1 1 \ 1 0 02991819 -intraspecies a 1 1 ! 1 0 01342058 -intraspecific a 1 0 1 0 01342058 -intrastate a 1 1 ! 1 0 01569807 -intrauterine a 1 1 \ 1 0 02933230 -intravenous a 1 1 \ 1 0 02890703 -intraventricular a 1 1 \ 1 0 02750241 -intrepid a 1 2 & + 1 0 00250119 -intricate a 1 1 & 1 1 02178500 -intriguing a 2 1 & 2 0 01897106 01344684 -intrinsic a 2 4 ! & ^ ; 2 1 01348258 00949374 -intrinsical a 1 2 & ^ 1 0 01348258 -introductory a 3 2 & + 3 1 01009709 01011753 00126339 -introjected a 1 2 & ; 1 1 01328753 -introspective a 1 3 ! = + 1 1 01350674 -introuvable a 1 1 & 1 0 01848056 -introversive a 1 6 ! & ^ = + ; 1 0 01351021 -introverted a 1 1 = 1 0 01350674 -introvertish a 1 1 & 1 0 01351302 -introvertive a 1 5 & ^ = + ; 1 0 01351021 -intruding a 1 1 & 1 0 01353153 -intrusive a 3 6 ! & ^ = + ; 3 1 01352067 01355207 01353014 -intuitionist a 1 1 \ 1 0 02750663 -intuitive a 2 2 & + 2 0 02282843 01431471 -intumescent a 1 2 & + 1 0 01174565 -inundated a 1 1 & 1 0 01083754 -inured a 1 1 & 1 0 02447779 -inutile a 1 2 & + 1 0 02497743 -invading a 1 1 & 1 0 01629681 -invalid a 2 4 ! & ^ + 2 0 02499750 00938210 -invalidated a 1 1 & 1 0 02500497 -invalidating a 1 1 & 1 0 02356712 -invaluable a 1 2 & + 1 1 02501367 -invariable a 1 4 ! & ^ + 1 1 02505716 -invariant a 2 3 & + ; 2 1 02506408 02506029 -invasive a 4 4 ! & + ; 4 0 01356365 01355966 01629681 01352320 -inventive a 1 2 & + 1 1 00643863 -inverse a 2 3 ! & ; 2 1 00202095 00769489 -invertebrate a 1 2 ! ; 1 0 02510273 -inverted a 2 2 & ; 2 1 02467559 01029710 -invertible a 1 1 ! 1 0 02595255 -investigative a 1 2 & + 1 1 00879030 -investigatory a 1 2 & + 1 0 00879030 -inveterate a 1 1 & 1 0 00489768 -invidious a 1 1 & 1 0 00997394 -invigorated a 1 1 & 1 0 02434797 -invigorating a 1 3 ! & ^ 1 0 01356683 -invincible a 1 2 & + 1 1 00570322 -inviolable a 4 2 ! & 4 0 02510604 02526124 02055900 00094069 -inviolate a 2 1 & 2 1 01319434 02055900 -invisible a 2 5 ! & ^ = + 2 1 02517265 00581401 -invitational a 1 2 \ + 1 0 03134550 -invitatory a 1 2 & + 1 0 01358534 -inviting a 1 3 ! & ^ 1 1 01358363 -involucrate a 1 2 \ ; 1 0 03134675 -involuntary a 2 4 ! & ^ ; 2 1 02521353 02522417 -involute a 2 2 & ; 2 0 02318057 02317942 -involved a 5 2 ! & 5 3 01514827 00868603 00158332 02176841 01658386 -invulnerable a 1 4 ! & ^ + 1 1 02525206 -inward a 2 4 ! & = + 2 1 00951247 01294583 -inward-developing a 1 2 & ; 1 0 00333015 -inward-moving a 1 1 & 1 0 00333197 -inwrought a 1 1 & 1 0 00059201 -iodinated a 1 1 \ 1 1 03005276 -iodinating a 1 2 ! ; 1 1 01231917 -iodised a 1 1 \ 1 0 03005276 -iodized a 1 1 \ 1 0 03005276 -ionian a 1 1 \ 1 0 02751177 -ionic a 3 3 ! \ + 3 1 02750752 02751058 02750948 -ionised a 1 0 1 0 00356110 -ionized a 1 1 ! 1 1 00356110 -ipsilateral a 1 1 ! 1 0 02591684 -iraki a 1 2 \ + 1 0 03075470 -iranian a 1 2 \ + 1 0 03075191 -iraqi a 1 2 \ + 1 0 03075470 -irascible a 2 2 & + 2 0 01135914 00114921 -irate a 1 1 & 1 0 00115777 -ireful a 1 1 & 1 0 00115777 -irenic a 1 1 & 1 0 01741408 -iridaceous a 1 2 \ + 1 0 02751484 -iridescent a 2 2 & + 2 0 00403072 00282020 -iridic a 2 1 \ 2 0 02852679 02852589 -irish a 1 2 \ + 1 1 03003744 -iritic a 1 1 \ 1 0 02751630 -irksome a 1 1 & 1 1 01345307 -iron a 1 1 & 1 1 02038891 -iron-gray a 1 2 & + 1 0 00390332 -iron-grey a 1 2 & + 1 0 00390332 -ironclad a 2 1 & 2 0 02155361 01025732 -ironed a 1 3 ! & ^ 1 0 01359543 -ironic a 2 2 & + 2 1 01266092 00563288 -ironical a 2 2 & + 2 2 00563288 01266092 -ironlike a 1 1 & 1 1 02322885 -ironshod a 1 1 & 1 1 02156177 -irrational a 2 6 ! & ^ \ + ; 2 1 01926376 02930083 -irreclaimable a 1 1 & 1 0 02514819 -irreconcilable a 1 2 ! & 1 1 01986926 -irrecoverable a 1 1 & 1 0 01956523 -irredeemable a 2 1 & 2 0 02514819 00917482 -irreducible a 1 1 ! 1 1 00883830 -irrefutable a 1 1 & 1 0 00721838 -irregular a 9 5 ! & ^ = + 9 2 01960656 00594146 01971046 01962107 01753249 01596809 01089775 00912094 00607202 -irrelevant a 1 3 ! & + 1 1 01976084 -irreligious a 1 4 ! & ^ + 1 0 01784017 -irremediable a 1 1 ! 1 1 01962819 -irremovable a 1 2 ! & 1 0 01527075 -irreparable a 1 1 ! 1 1 01963792 -irreplaceable a 1 3 ! ^ + 1 0 01978894 -irrepressible a 1 2 & + 1 0 00600540 -irreproachable a 1 1 & 1 0 01320705 -irreproducible a 1 2 & + 1 0 01868302 -irresistible a 2 3 ! & + 2 1 01989175 00168551 -irresolute a 1 4 ! & ^ + 1 1 01992149 -irresponsible a 1 4 ! & = + 1 1 01997910 -irretrievable a 1 1 & 1 0 01956675 -irreverent a 3 4 ! & ^ + 3 0 02012504 02280090 01782717 -irreversible a 1 3 ! & + 1 1 01759362 -irrevocable a 1 2 ! & 1 1 01760670 -irrevokable a 1 1 & 1 0 01760670 -irritable a 3 3 & + ; 3 1 01136541 02104600 02104277 -irritated a 1 1 & 1 0 01806106 -irritating a 3 1 & 3 1 00089550 02310185 00478685 -irritative a 1 2 & + 1 0 02310185 -irruptive a 1 1 & 1 0 01355378 -ischaemic a 1 2 \ + 1 0 02751733 -ischemic a 1 2 \ + 1 0 02751733 -isentropic a 1 1 \ 1 0 02751889 -islamic a 1 2 \ + 1 0 02923510 -ismaili a 1 1 \ 1 0 02751990 -isobilateral a 1 1 & 1 0 02372118 -isochronal a 1 1 & 1 0 00891569 -isochronous a 1 1 & 1 0 00891569 -isoclinal a 1 1 & 1 0 00891705 -isoclinic a 1 1 & 1 0 00891705 -isocyclic a 1 1 & 1 0 00677170 -isogonic a 1 2 & + 1 0 02048875 -isolable a 1 2 & + 1 0 02111339 -isolated a 6 1 & 6 3 00594267 02110447 02111095 02251576 01327205 00567860 -isolating a 1 1 & 1 0 00111604 -isolationist a 1 2 \ + 1 1 03022917 -isolationistic a 1 2 \ + 1 0 03022917 -isomeric a 1 2 \ + 1 0 02828688 -isometric a 4 5 ! & \ + ; 4 0 02828802 00355782 00891807 00658022 -isometrical a 1 2 & + 1 0 00891807 -isomorphic a 1 2 \ ; 1 0 02828917 -isomorphous a 1 3 \ + ; 1 0 02828917 -isopteran a 1 1 \ 1 0 03137840 -isosceles a 1 1 & 1 0 02372951 -isosmotic a 1 0 1 0 00894980 -isothermal a 1 2 & + 1 1 00891970 -isothermic a 1 1 \ 1 0 02902658 -isotonic a 4 4 ! & \ ; 4 2 00894980 02829094 00355950 02406790 -isotopic a 1 2 \ + 1 1 02902531 -isotropic a 1 3 ! & + 1 1 01360804 -isotropous a 1 2 & + 1 0 01360804 -israeli a 1 2 \ + 1 0 02972925 -isthmian a 1 2 \ + 1 0 02752122 -italian a 1 2 \ + 1 1 02957066 -italian-speaking a 1 1 & 1 0 00498536 -italic a 2 2 \ + 2 0 03075798 03075662 -itchy a 2 2 & + 2 0 02406166 01712327 -item-by-item a 1 1 & 1 0 00729246 -iterative a 1 2 & + 1 0 01964632 -itinerant a 1 2 & + 1 0 02128566 -itsy-bitsy a 1 2 & ; 1 0 01392633 -itty-bitty a 1 2 & ; 1 0 01392633 -iv a 1 1 & 1 0 02186665 -ivied a 1 1 & 1 0 01702140 -ivy-covered a 1 1 & 1 0 01702140 -ix a 1 1 & 1 0 02187161 -ixc a 1 1 & 1 0 02195049 -ixl a 1 1 & 1 0 02190182 -jacksonian a 1 2 \ + 1 1 03075944 -jacobean a 1 1 \ 1 0 03076108 -jacobinic a 1 2 \ + 1 0 03076230 -jacobinical a 1 2 \ + 1 0 03076230 -jade a 1 2 & + 1 0 00376645 -jade-green a 1 1 & 1 0 00376645 -jaded a 2 1 & 2 2 02433975 02078153 -jagged a 2 2 & + 2 1 00912288 02246903 -jaggy a 2 2 & + 2 0 02246903 00912288 -jailed a 1 1 & 1 0 01065126 -jain a 1 1 \ 1 0 02925342 -jainist a 1 2 \ + 1 0 02925342 -jam-packed a 1 1 & 1 0 00560100 -jamaican a 1 2 \ + 1 0 03076432 -jamesian a 2 1 \ 2 0 02752354 02752234 -jammed a 1 1 & 1 1 00560100 -jangling a 1 1 & 1 1 00300007 -jangly a 1 2 & + 1 0 00300007 -janus-faced a 3 1 & 3 1 02475692 01223271 00235571 -japanese a 1 2 \ + 1 1 02965043 -japanese-speaking a 1 1 & 1 0 00498629 -jarring a 1 1 & 1 1 00300196 -jaundiced a 2 1 & 2 0 01177556 00285506 -jaunty a 2 2 & + 2 2 00971933 00364145 -javan a 1 2 \ + 1 0 03076663 -javanese a 1 2 \ + 1 0 03076663 -jawed a 1 2 ! & 1 0 02597115 -jawless a 1 1 ! 1 0 02597418 -jazzy a 2 2 & + 2 1 02019881 00407420 -jealous a 2 1 & 2 2 00888765 02464105 -jeering a 1 1 & 1 0 01995596 -jeffersonian a 1 2 \ + 1 1 02752496 -jejune a 3 2 & + 3 0 02559694 01492596 01345997 -jelled a 1 1 & 1 0 02260570 -jellied a 1 1 & 1 0 02260570 -jellylike a 1 1 & 1 0 02416610 -jerking a 1 1 & 1 0 02303575 -jerkwater a 1 1 & 1 0 00637455 -jerky a 3 3 & + ; 3 0 02303575 01143750 00439905 -jerry-built a 1 1 & 1 0 02325642 -jesting a 1 1 & 1 0 01267076 -jesuit a 1 1 \ 1 0 03076935 -jesuitic a 1 2 \ + 1 0 03076935 -jesuitical a 1 2 \ + 1 0 03076935 -jet a 1 1 & 1 0 00388849 -jet-black a 1 1 & 1 0 00388849 -jet-propelled a 1 1 \ 1 0 02752678 -jetting a 1 1 & 1 1 01240931 -jeweled a 1 1 & 1 1 00056660 -jewelled a 1 1 & 1 0 00056660 -jewish a 1 1 \ 1 1 02922263 -jewish-orthodox a 1 2 \ ; 1 0 02953420 -jiggered a 1 2 & ; 1 0 02358898 -jihadi a 1 1 \ 1 0 02752787 -jilted a 1 1 & 1 0 01463735 -jingling a 1 1 & 1 1 02010266 -jingly a 1 2 & + 1 0 02010266 -jingoistic a 1 2 & + 1 0 01740358 -jinxed a 1 2 & ; 1 0 01468850 -jittering a 1 1 & 1 0 00345860 -jittery a 2 3 & \ + 2 0 02752865 02406370 -jobless a 1 1 & 1 0 00865007 -jocose a 1 2 & + 1 1 01267076 -jocular a 1 2 & + 1 1 01267076 -jocund a 1 2 & + 1 0 01367651 -joined a 2 1 & 2 1 01481812 00567161 -joint a 3 3 ! & ^ 3 2 02111684 02152716 00238189 -jointed a 1 2 & ; 1 0 00153545 -joking a 1 1 & 1 0 01267076 -jolly a 1 2 & + 1 1 01367651 -jolted a 2 1 & 2 2 00088055 00086005 -jolting a 1 0 1 0 02243567 -jolty a 1 1 + 1 0 02243567 -jordanian a 1 2 \ + 1 0 03077235 -journalistic a 1 2 \ + 1 0 03077419 -jovial a 1 2 & + 1 1 01367651 -jovian a 2 2 \ + 2 0 03077765 03077599 -jowly a 1 2 & + 1 0 00987349 -joyful a 2 4 ! & ^ + 2 0 01363613 01367211 -joyless a 1 4 ! & ^ + 1 0 01368192 -joyous a 1 4 ! & ^ + 1 1 01366718 -jr. a 1 1 & 1 0 02101382 -jubilant a 2 2 & + 2 1 00704898 01367211 -judaic a 2 2 \ + 2 0 02922448 02922263 -judaical a 1 2 \ + 1 0 02922448 -judeo-christian a 1 1 \ 1 0 02952450 -judgmental a 1 3 ! & + 1 0 00648977 -judicable a 1 1 & 1 0 00739163 -judicial a 4 3 & \ + 4 1 01400961 02753205 02752987 00650135 -judicious a 1 2 & + 1 0 01898722 -jugular a 1 2 \ + 1 0 02852756 -juiceless a 2 2 ! & 2 0 01369404 02307729 -juicy a 4 4 ! & + ; 4 3 01368793 02132967 01871349 02132224 -julian a 1 2 \ + 1 0 03077930 -jumbled a 1 1 & 1 1 02425529 -jumbo a 1 1 & 1 0 01385773 -jumentous a 1 2 \ + 1 0 02753345 -jumped-up a 1 2 & ; 1 0 01850742 -jumpy a 2 2 & + 2 1 02406370 02243567 -jungian a 1 2 \ + 1 1 03033785 -jungly a 1 2 & + 1 0 02573987 -junior a 3 5 ! & ^ = + 3 2 02100709 01015185 01648891 -junior-grade a 1 1 & 1 1 02100968 -junoesque a 1 1 & 1 0 02139793 -jural a 1 1 & 1 0 01401105 -jurassic a 1 1 \ 1 0 02753478 -juridic a 2 1 \ 2 0 02753724 02752987 -juridical a 2 1 \ 2 0 02753724 02752987 -jurisdictional a 1 2 & + 1 0 02408793 -jurisprudential a 1 2 \ + 1 0 02753868 -juristic a 1 1 & 1 0 01401105 -jury-rigged a 1 1 & 1 0 01757211 -just a 4 5 ! & ^ = + 4 1 01369663 00958151 00956131 02036934 -justifiable a 1 2 & + 1 0 01722140 -justificative a 2 2 & + 2 0 01632066 00923790 -justificatory a 2 2 & + 2 0 01632066 00923790 -justified a 1 2 & ; 1 0 00910750 -jutting a 1 1 & 1 1 01353982 -juvenile a 2 3 & \ + 2 1 02892980 01492596 -juxtaposed a 1 1 & 1 0 00449769 -k a 1 1 & 1 0 02198752 -kabbalistic a 1 2 & + 1 0 00899738 -kafkaesque a 2 2 & \ 2 0 03134166 01942888 -kaleidoscopic a 1 2 & + 1 0 00345949 -kaleidoscopical a 1 2 & + 1 0 00345949 -kampuchean a 1 2 \ + 1 0 02968828 -kannada-speaking a 1 1 & 1 0 00498724 -kantian a 1 2 \ + 1 0 03033914 -kaput a 1 2 & ; 1 0 00735882 -karyokinetic a 1 2 \ + 1 0 03078076 -kashmiri a 1 2 \ + 1 0 03078234 -katabatic a 1 2 ! ; 1 0 00109782 -katabolic a 2 3 & \ + 2 0 02682699 00107984 -katari a 1 2 \ + 1 0 03107596 -katharobic a 1 2 \ ; 1 0 03021051 -kayoed a 1 1 & 1 0 00572714 -kazakhstani a 1 2 \ + 1 0 03078445 -kechuan a 1 2 \ + 1 0 03108623 -keel-shaped a 1 1 & 1 0 02148011 -keeled a 1 0 1 0 03153361 -keen a 5 3 & + ; 5 1 01744515 01511387 01123879 00803432 00802179 -keen-eyed a 1 1 & 1 0 00954064 -keen-sighted a 2 1 & 2 0 02158438 02157594 -kempt a 1 1 & 1 0 02427594 -kenyan a 1 2 \ + 1 0 03078586 -kept a 1 1 ; 1 0 00289799 -kept_up a 1 1 & 1 0 00737515 -key a 1 1 & 1 1 01277097 -keyed a 2 2 ! & 2 0 01371769 02437462 -keyless a 1 1 ! 1 0 01371911 -keynesian a 1 2 \ + 1 0 03034035 -khaki a 1 2 & + 1 1 00376821 -kid-glove a 1 1 & 1 0 00759169 -kidney-shaped a 1 1 & 1 0 02170546 -killable a 1 2 & + 1 1 00829041 -killing a 1 2 & ; 1 0 01267339 -kiln-dried a 1 1 & 1 0 02553725 -kin a 1 2 & + 1 0 01971846 -kinaesthetic a 1 2 \ + 1 0 02870453 -kind a 3 5 ! & ^ = + 3 1 01372049 01242282 01041209 -kind-hearted a 1 1 & 1 0 01373545 -kindhearted a 1 2 & + 1 0 01373545 -kindled a 1 1 & 1 1 00475625 -kindly a 2 2 & + 2 1 01372948 00226891 -kindred a 2 2 & + 2 1 02071782 01972479 -kinesthetic a 1 2 \ + 1 1 02870453 -kinetic a 3 3 & \ + 3 1 02893827 01563349 00809164 -king-size a 1 1 & 1 0 01388228 -king-sized a 1 1 & 1 0 01388228 -kinglike a 1 1 & 1 0 01591699 -kingly a 1 2 & + 1 0 01591699 -kinky a 3 2 & + 3 0 01597509 01030372 00609564 -kiplingesque a 1 1 \ 1 0 03034192 -kitschy a 1 1 & 1 0 00854413 -kittenish a 1 1 & 1 1 02123007 -kitty-corner a 1 1 & 1 0 01719507 -kitty-cornered a 1 1 & 1 0 01719507 -kiwi-sized a 1 1 & 1 0 02223559 -knackered a 1 2 & ; 1 0 02434115 -knavish a 1 1 & 1 0 00148078 -knee-deep a 1 1 & 1 1 00692154 -knee-length a 1 1 \ 1 0 03078753 -knifelike a 4 1 & 4 1 00802300 01744515 00803432 00780944 -knightly a 2 2 & + 2 1 01729157 00640106 -knitted a 1 1 & 1 0 02580267 -knobbed a 1 1 & 1 0 02313235 -knobbly a 1 2 & + 1 0 02141735 -knobby a 1 2 & + 1 0 02141735 -knock-down a 1 1 & 1 0 02323072 -knock-down-and-drag-out a 1 2 & ; 1 0 02512044 -knock-kneed a 1 1 & 1 0 01019587 -knockabout a 2 1 & 2 0 02279360 00707667 -knockdown a 1 2 & ; 1 0 00467737 -knockdown-dragout a 1 2 & ; 1 0 02512044 -knocked-out a 1 2 & ; 1 0 00680634 -knocked_out a 1 1 & 1 0 00572714 -knockout a 1 1 & 1 0 02322512 -knotted a 2 1 & 2 1 00254880 02313235 -knotty a 4 2 & + 4 1 00746451 02313235 02176841 00255720 -knowable a 1 2 ! + 1 0 01374582 -knowing a 4 2 & + 4 1 01307690 01338116 01307850 00830051 -knowledgeable a 3 2 & + 3 1 00830051 01307850 00936038 -known a 1 3 ! & ^ 1 1 01375174 -ko'd a 1 1 & 1 0 00572714 -kokka a 1 2 \ + 1 0 02924932 -kookie a 1 1 & 1 0 02074929 -kooky a 1 2 & + 1 0 02074929 -koranic a 1 2 \ + 1 0 02855055 -korean a 1 2 \ + 1 1 02967791 -kosher a 2 2 & ; 2 1 00427644 01880071 -kurdish a 1 1 \ 1 0 03078832 -kuwaiti a 2 2 \ + 2 0 03079151 03078975 -kyphotic a 1 2 & + 1 0 01019000 -kyrgyzstani a 1 1 \ 1 0 02963272 -l a 1 1 & 1 1 02191232 -l-shaped a 1 1 & 1 0 02148361 -la-di-da a 1 1 & 1 0 01850288 -labeled a 1 1 ! 1 1 01379705 -labelled a 1 0 1 0 01379705 -labial a 2 2 \ + 2 0 02754417 02754327 -labiate a 1 1 & 1 0 01704420 -labile a 2 2 & ; 2 0 01929062 00894879 -labor-intensive a 1 1 & 1 0 00837574 -labored a 2 1 & 2 0 01141468 00837415 -laboring a 1 1 & 1 0 00293376 -laborious a 1 2 & + 1 0 00836544 -laborsaving a 1 1 & 1 1 01197024 -labour-intensive a 1 1 & 1 0 00837574 -laboured a 2 1 & 2 0 01141468 00837415 -labouring a 1 1 & 1 0 00293376 -laboursaving a 1 1 & 1 0 01197024 -labyrinthian a 1 2 & + 1 0 02178628 -labyrinthine a 2 2 & \ 2 0 02947928 02178628 -laced a 2 2 ! & 2 1 00254516 01788994 -lacelike a 1 1 & 1 0 01796600 -lacerate a 2 1 & 2 0 02247295 01318937 -lacerated a 2 1 & 2 0 02247295 01318937 -lacertilian a 1 2 \ + 1 0 02853740 -lachrymal a 2 1 \ 2 0 02879044 02878902 -lachrymatory a 1 1 \ 1 0 02879152 -lachrymose a 1 1 & 1 0 01365239 -laciniate a 1 1 & 1 0 02247166 -lackadaisical a 2 1 & 2 0 00876204 00295011 -lacking a 2 1 & 2 1 00052012 00927832 -lackluster a 2 1 & 2 0 00808011 00284194 -lacklustre a 2 1 & 2 0 00808011 00284194 -laconic a 1 1 & 1 0 00547641 -lacrimal a 2 1 \ 2 0 02879044 02878902 -lacrimatory a 1 1 \ 1 0 02879152 -lactating a 1 1 & 1 1 02554267 -lacteal a 1 1 \ 1 0 02848948 -lactic a 1 1 \ 1 0 02848787 -lactogenic a 1 1 \ 1 0 02754543 -lacustrine a 1 1 \ 1 0 02994217 -lacy a 2 2 & + 2 1 01796600 02007067 -ladder-proof a 1 1 & 1 0 01775280 -laden a 2 1 & 2 1 01085661 00869972 -ladened a 1 1 & 1 1 01085661 -ladylike a 1 2 & + 1 1 01948721 -laggard a 1 1 & 1 0 00981067 -laic a 1 1 & 1 0 02057226 -laid a 1 1 & 1 1 01681307 -laid-back a 1 1 & 1 0 02408011 -laid-off a 1 1 & 1 0 00864884 -laid_low a 1 1 & 1 0 02545385 -laid_up a 1 1 & 1 1 02545484 -laissez-faire a 1 1 & 1 1 00297897 -lamarckian a 1 2 \ + 1 0 03013904 -lambent a 1 2 & + 1 0 00279332 -lamblike a 1 1 & 1 1 00696996 -lame a 2 2 & + 2 0 02325304 01018788 -lamellibranch a 1 1 & 1 0 02484078 -lamentable a 1 2 & + 1 0 01126841 -lamented a 1 1 ! 1 0 01379988 -lamenting a 1 1 & 1 0 01365785 -laminal a 1 2 & + 1 0 00208613 -laminar a 1 2 & + 1 0 00208613 -lamplit a 1 1 & 1 0 00271966 -lanate a 1 1 & 1 0 00214640 -lancastrian a 2 2 \ + 2 0 03079460 03079293 -lance-shaped a 1 1 & 1 0 02148109 -lancelike a 1 1 & 1 0 02168549 -lanceolate a 1 1 & 1 0 02168549 -lancet-shaped a 1 1 & 1 0 02148187 -lancinate a 1 1 & 1 0 00803432 -lancinating a 1 1 & 1 0 00803432 -landed a 1 1 ! 1 0 00269758 -landless a 1 1 ! 1 0 00269894 -landlocked a 1 1 & 1 1 00464068 -landlubberly a 1 2 & + 1 0 01566725 -landscaped a 1 1 & 1 1 01289083 -languid a 1 1 & 1 1 00876204 -languorous a 1 2 & + 1 0 00876204 -laniary a 1 1 \ 1 0 02677861 -lank a 2 1 & 2 0 01434841 00989647 -lanky a 2 2 & + 2 2 02385492 00989544 -lantern-jawed a 1 1 & 1 0 01875711 -lao a 1 1 \ 1 1 03079803 -laotian a 1 2 \ + 1 0 03079627 -lap-jointed a 1 1 & 1 0 00910885 -lap-strake a 1 1 ; 1 0 00316827 -lap-straked a 1 1 ; 1 0 00316827 -lap-streak a 1 1 ; 1 0 00316827 -lap-streaked a 1 1 ; 1 0 00316827 -lapidarian a 1 1 & 1 0 00317629 -lapidary a 1 1 \ 1 0 02829238 -lapsed a 1 1 & 1 1 01784602 -laputan a 2 3 & \ + 2 0 03079951 02498213 -larboard a 1 1 & 1 0 02033742 -large a 7 4 ! & = + 7 2 01382086 02163307 02016881 01114658 00579622 00527870 00173391 -large-cap a 1 1 \ 1 0 02754618 -large-capitalisation a 1 1 \ 1 0 02754618 -large-capitalization a 1 1 \ 1 0 02754618 -large-grained a 1 1 & 1 0 02231355 -large-headed a 1 1 & 1 0 01184183 -large-hearted a 1 1 & 1 0 01372948 -large-leafed a 1 1 & 1 0 01702253 -large-leaved a 1 1 & 1 0 01702253 -large-minded a 1 1 & 1 0 00286837 -large-mouthed a 1 1 & 1 0 01388327 -large-scale a 2 1 & 2 1 01388418 01388542 -larger a 1 1 & 1 1 01383756 -larger-than-life a 1 1 & 1 0 01386010 -larghetto a 1 1 & 1 0 00983304 -larghissimo a 1 1 & 1 0 00983401 -largish a 1 1 & 1 0 01383857 -largo a 1 2 & + 1 0 00983196 -larval a 2 3 & \ + 2 1 01490603 03014166 -laryngeal a 1 2 \ + 1 0 02881995 -laryngopharyngeal a 1 2 \ + 1 0 02882135 -lascivious a 1 2 & + 1 0 02133207 -lash-like a 1 1 \ 1 0 03015113 -lashing a 1 1 & 1 1 02512205 -last a 9 2 ! & 9 7 01730329 01013279 01010271 01412912 00004296 01579128 01212095 00349894 00230076 -last-ditch a 1 1 & 1 0 01579304 -last-minute a 1 1 & 1 1 01901649 -last-place a 1 1 & 1 0 00230076 -last_mentioned a 1 1 & 1 1 01047752 -lasting a 4 5 & ^ = + ; 4 2 01754421 01439496 01758339 02291500 -late a 7 5 ! & = + ; 7 6 00816481 01901186 01730444 00097674 00820721 00819235 01729819 -late-blooming a 1 1 & 1 0 01255530 -late-flowering a 1 1 & 1 0 01255530 -late-ripening a 1 1 & 1 0 01255715 -late-spring-blooming a 1 1 & 1 0 01254607 -lateen a 1 1 & 1 0 01093524 -lateen-rigged a 1 1 & 1 0 01093524 -latent a 2 3 & + ; 2 2 00044608 00038462 -later a 2 1 & 2 1 00123485 00819235 -lateral a 2 1 & 2 0 02441469 00778828 -latest a 2 1 & 2 1 00668366 00971506 -lathery a 1 2 \ + 1 0 02754839 -latin a 4 1 \ 4 1 03080101 03080492 03080351 03080238 -latin-american a 1 2 \ + 1 1 02754995 -latinate a 1 1 \ 1 0 02904691 -latino a 1 1 \ 1 0 03072158 -latish a 1 1 & 1 0 00817176 -latitudinal a 1 2 \ + 1 0 02904780 -latitudinarian a 1 3 & + ; 1 0 00287275 -latter a 1 2 ! & 1 1 01047561 -latter-day a 1 1 & 1 0 01732131 -latticed a 1 1 & 1 0 02006798 -latticelike a 1 1 & 1 0 02006798 -latvian a 1 2 \ + 1 0 02962818 -laudable a 1 2 & + 1 0 02585545 -laudatory a 1 2 & + 1 0 00906312 -laughable a 2 2 & + 2 0 02570643 01265308 -laughing a 1 1 & 1 0 01149358 -laureate a 1 1 & 1 0 01226809 -laureled a 1 1 ! 1 0 01381777 -laurelled a 1 0 1 0 01381777 -lavender a 1 1 & 1 1 00376917 -lavender-pink a 1 1 & 1 0 00377323 -lavender-tinged a 1 1 & 1 0 00377036 -lavish a 2 2 & + 2 1 01111965 02025274 -law-abiding a 1 1 & 1 0 01395821 -lawful a 4 5 ! & ^ = + 4 0 01395617 01959807 01407267 01401224 -lawfully-begotten a 1 1 & 1 0 01406853 -lawless a 3 2 & + 3 1 00600192 01396503 01396333 -lax a 4 5 ! & ^ + ; 4 1 00755482 02405160 02403671 00638841 -laxative a 1 2 ! & 1 0 00637857 -lay a 2 2 & + 2 1 02057226 01869975 -layered a 1 1 & 1 0 00208749 -lazy a 2 2 & + 2 2 00981304 00294579 -lead-colored a 1 1 & 1 0 00398482 -lead-coloured a 1 1 & 1 0 00398482 -lead-free a 1 1 & 1 0 01397251 -leaded a 3 3 ! & ; 3 1 01060304 01396800 01656129 -leaden a 5 2 & \ 5 2 00462249 01189853 02754012 00837756 00807667 -leading a 4 2 ! & 4 4 01472790 02339341 00198904 02490631 -leadless a 1 1 & 1 0 01397125 -leaf-like a 1 1 & 1 0 01702543 -leafed a 1 1 & 1 0 01702357 -leafless a 1 2 ! & 1 0 01703494 -leaflike a 1 1 & 1 0 01702543 -leafy a 1 3 ! & + 1 0 01700414 -leafy-stemmed a 1 1 & 1 0 00321535 -leakproof a 1 1 & 1 0 01398865 -leaky a 3 4 ! & ^ + 3 0 01397385 00592113 00496259 -leal a 1 2 & ; 1 0 00962135 -lean a 4 5 ! & ^ = + 4 1 00988232 02027003 02337188 01872374 -leaning a 1 1 & 1 1 01234527 -learned a 3 3 & + ; 3 2 02084358 00830051 01637032 -leased a 1 0 1 0 00360041 -least a 1 2 ! ; 1 1 01556061 -leather-leafed a 1 1 & 1 0 01702627 -leather-leaved a 1 1 & 1 0 01702627 -leathered a 1 1 & 1 1 02446070 -leatherlike a 1 1 & 1 0 02446070 -leathery a 1 2 & + 1 0 02446070 -leaved a 1 1 & 1 0 01702357 -leavened a 1 1 ! 1 1 01399748 -lebanese a 1 1 \ 1 0 03080619 -lecherous a 1 2 & + 1 0 02133431 -lee a 1 1 & 1 0 01400237 -leechlike a 1 1 & 1 0 00726723 -leering a 2 1 & 2 1 00225408 02133653 -leery a 1 2 & + 1 0 02464277 -leeward a 1 2 ! & 1 0 01400098 -left a 4 4 ! & ^ = 4 3 02032953 00926505 02029438 02030935 -left-eyed a 1 1 & 1 0 00954153 -left-hand a 2 1 & 2 1 02029438 02033323 -left-handed a 6 4 ! & ^ + 6 0 02029167 01408240 01406961 00442255 00103196 00063563 -left-of-center a 1 1 & 1 1 02031335 -left-slanting a 1 2 & ; 1 0 02284892 -left-wing a 1 1 & 1 0 02031335 -left_over a 1 1 & 1 1 00926505 -leftish a 1 1 & 1 0 02031248 -leftist a 1 1 & 1 0 02031335 -leftmost a 1 1 & 1 0 02033450 -leftover a 1 1 & 1 0 00926505 -legal a 5 7 ! & ^ \ = + ; 5 4 01400562 02754096 02499148 02754197 00852754 -legato a 1 2 ! ; 1 0 02294263 -legendary a 2 2 & + 2 1 01376355 01935744 -legged a 1 2 ! & 1 1 01429485 -leggy a 2 3 & + ; 2 1 02386002 02385851 -legible a 1 3 ! & + 1 0 01404702 -legion a 1 1 & 1 0 01552419 -legislative a 2 2 \ + 2 2 02829565 02829422 -legitimate a 4 3 ! & ^ 4 4 01406640 02499301 01636205 01401224 -legless a 1 1 ! 1 0 01430009 -leglike a 1 1 & 1 0 01429676 -leguminous a 1 2 \ + 1 0 02755190 -leibnitzian a 1 2 \ + 1 0 03034283 -leibnizian a 1 2 \ + 1 0 03034283 -leisured a 1 1 & 1 0 00295235 -leisurely a 1 2 & + 1 0 01272176 -lemon-scented a 1 1 & 1 0 01056558 -lemonlike a 1 1 & 1 0 02369460 -lemony a 1 2 & + 1 0 02369460 -lendable a 1 2 & + 1 0 00184676 -lengthened a 1 1 & 1 0 01434218 -lengthways a 1 1 & 1 0 01444813 -lengthwise a 1 2 ! & 1 0 01444813 -lengthy a 1 2 & + 1 1 01439155 -lenient a 3 2 & + 3 0 01763159 00711831 00437744 -lenitive a 1 2 & + 1 0 01341153 -lenten a 1 1 \ 1 0 03080756 -lentic a 1 2 ! ; 1 0 00259433 -lenticular a 1 1 & 1 0 00537745 -lentiform a 1 1 & 1 0 00537745 -lentiginose a 1 1 & 1 0 01788843 -lentiginous a 1 2 & + 1 0 01788843 -lentissimo a 1 1 & 1 0 00983119 -lento a 1 1 & 1 0 00983052 -leonardesque a 1 1 \ 1 0 03034487 -leonine a 1 1 \ 1 0 02755301 -lepidote a 1 2 & ; 1 0 02241247 -leprose a 1 2 & ; 1 0 02241247 -leprous a 1 2 \ + 1 0 02829711 -leptorhine a 1 0 1 0 01408593 -leptorrhine a 1 1 ! 1 0 01408593 -leptorrhinian a 1 0 1 0 01408593 -leptorrhinic a 1 0 1 0 01408593 -leptosporangiate a 1 1 ! 1 0 01409221 -lesbian a 1 2 & + 1 0 01202212 -less a 3 4 ! & ^ ; 3 1 01555416 02347371 01556913 -less-traveled a 1 1 & 1 0 01817155 -lessened a 2 1 & 2 1 01274945 01519580 -lesser a 2 2 ! & 2 1 01395488 01393681 -lethal a 1 2 & + 1 1 00993885 -lethargic a 1 4 ! & ^ + 1 0 00875712 -letter-perfect a 1 1 & 1 0 00632071 -lettered a 1 1 & 1 0 00830051 -levantine a 1 2 \ + 1 0 03080862 -level a 5 1 & 5 4 00910101 02302537 01233104 00911091 00892243 -level-headed a 1 1 & 1 0 01944088 -levelheaded a 1 1 & 1 1 01944088 -levitical a 1 2 \ + 1 0 02755399 -levorotary a 1 1 & 1 0 00442255 -levorotatory a 1 1 & 1 0 00442255 -lewd a 2 2 & + 2 1 00425740 02133207 -lexical a 2 2 \ + 2 1 02886629 02886869 -lexicalised a 1 1 \ 1 0 02755525 -lexicalized a 1 1 \ 1 0 02755525 -lexicographic a 1 1 \ 1 0 02909808 -lexicographical a 1 2 \ + 1 0 02909808 -lexicostatistic a 1 2 \ + 1 1 02881246 -li a 1 1 & 1 0 02191336 -liable a 4 2 & + 4 3 01411919 02366365 02362178 01997583 -libellous a 1 2 & + 1 0 01161233 -libelous a 1 2 & + 1 0 01161233 -liberal a 5 5 ! & ^ = + 5 4 00286837 02031473 00575230 01111418 00916199 -liberalistic a 1 2 & + 1 0 00575685 -liberated a 2 1 & 2 1 01058650 01063102 -liberian a 1 2 \ + 1 0 03081006 -libertine a 1 2 & + 1 0 01549568 -libidinal a 1 2 \ + 1 0 02945514 -libidinous a 1 2 & + 1 0 02133207 -libyan a 1 2 \ + 1 0 03081160 -licenced a 1 1 & 1 0 00178811 -licensed a 1 1 & 1 1 00178811 -licentious a 1 2 & + 1 0 00362269 -licit a 2 3 ! & + 2 0 01550438 01401224 -licked a 1 2 & ; 1 1 00694773 -lidded a 2 2 ! & 2 0 01446457 02441895 -lidless a 3 2 ! & 3 0 01446632 02442184 00092391 -liechtensteiner a 1 2 \ + 1 0 03081328 -liege a 1 2 & + 1 0 00962306 -lienal a 1 2 \ + 1 0 02801156 -life-and-death a 1 1 & 1 0 00656384 -life-giving a 1 1 & 1 0 01357484 -life-or-death a 1 1 & 1 0 00656384 -life-size a 1 1 & 1 1 01388655 -life-sized a 1 1 & 1 0 01388655 -life-support a 1 1 \ 1 0 02755634 -life-sustaining a 1 1 & 1 0 00902347 -life-threatening a 1 1 & 1 0 00651039 -lifeless a 4 2 & + 4 2 00097768 01087557 00119533 00100373 -lifelike a 2 1 & 2 2 01941026 00074594 -lifelong a 1 1 & 1 1 01440159 -lifesize a 1 1 & 1 0 01388655 -lifted a 1 1 & 1 1 01208221 -light a 25 6 ! & ^ = + ; 25 12 01186408 00408660 01193046 01190993 01190316 00269989 02320442 01182414 00503527 01906464 01192393 00712186 01191876 01191448 02544525 02414188 02401863 02337329 02165318 02121572 02121424 01188186 00993117 00693570 00361837 -light-armed a 2 1 & 2 0 01193275 00142704 -light-blue a 1 1 & 1 0 00377131 -light-boned a 1 1 & 1 0 02040519 -light-colored a 1 3 & ^ = 1 0 00408660 -light-duty a 1 2 ! & 1 1 01188058 -light-fingered a 1 1 & 1 0 00062740 -light-footed a 1 2 ! & 1 1 01192248 -light-green a 1 1 & 1 1 00375969 -light-haired a 1 2 & = 1 1 00243606 -light-handed a 1 1 & 1 0 00706800 -light-headed a 2 1 & 2 2 02544525 02120828 -light-hearted a 1 1 & 1 0 00363291 -light-minded a 1 2 & + 1 0 02121290 -light-sensitive a 1 1 & 1 0 02104727 -light-skinned a 1 1 & 1 0 00243515 -light-tight a 1 1 & 1 0 00434265 -lighted a 2 2 ! & 2 2 00475125 00271580 -lighter-than-air a 1 2 & ; 1 0 01187322 -lightheaded a 2 2 & + 2 0 02544525 02120828 -lighthearted a 1 2 & + 1 1 00363291 -lighting-up a 1 1 & 1 0 00272069 -lightless a 2 2 & + 2 0 02518229 00275985 -lightly-armed a 1 1 & 1 0 01193275 -lightly_armored a 1 1 & 1 0 00144244 -lightly_armoured a 1 1 & 1 0 00144244 -lightproof a 1 1 & 1 0 00434265 -lightsome a 2 2 & + 2 0 01192393 00363291 -lightweight a 2 2 & + 2 1 01186733 01281559 -ligneous a 1 3 & + ; 1 0 02576058 -lii a 1 1 & 1 0 02191427 -liii a 1 1 & 1 0 02191519 -likable a 2 3 & + ; 2 0 02376277 01461292 -like a 4 5 ! & ^ = + 4 3 01409581 01411065 01410606 02063554 -like-minded a 1 1 & 1 1 01410036 -likeable a 2 3 & + ; 2 0 02376277 01461292 -liked a 1 2 ! & 1 0 01461138 -likely a 4 5 ! & ^ = + 4 2 01411451 01413247 01884176 00645169 -lilac a 1 2 & + 1 1 00376917 -lilac-blue a 1 1 & 1 0 00377224 -lilac-colored a 1 1 & 1 0 00376917 -lilac-pink a 1 1 & 1 0 00377323 -lilac-purple a 1 1 & 1 0 00377438 -liliaceous a 1 2 \ + 1 0 02755772 -lilliputian a 3 4 & \ + ; 3 0 03081485 01392249 01280908 -lilting a 1 1 & 1 0 02020011 -lily-livered a 1 2 & ; 1 0 00265314 -lily-white a 2 1 & 2 0 01327680 00390461 -limacine a 1 1 \ 1 0 02755918 -limacoid a 1 1 \ 1 0 02755918 -limbed a 1 2 ! & 1 0 01414250 -limber a 3 1 & 3 0 01024228 01022926 01022785 -limbic a 1 1 \ 1 0 03011036 -limbless a 1 2 ! & 1 0 01414817 -limited a 7 3 ! & ^ 7 3 01415021 02002470 00529191 01913642 01532586 01103844 01007258 -limiting a 2 2 & ; 2 1 02004023 02004385 -limitless a 3 2 & + 3 1 01499269 01415605 01007657 -limnological a 1 2 \ + 1 0 02756025 -limp a 2 2 & + 2 1 01070002 02404081 -limpid a 3 3 & + ; 3 0 00432453 00431774 00429355 -lincolnesque a 1 1 \ 1 0 03034580 -lincolnian a 1 2 \ + 1 0 03034580 -lineal a 2 4 ! & ^ + 2 0 01416508 00658591 -linear a 5 4 ! & + ; 5 2 01417451 00658259 00110497 02168699 01445438 -lined a 3 2 ! & 3 2 00258797 02241543 01417941 -linelike a 1 1 & 1 0 00658680 -lingual a 2 2 \ + 2 1 02842445 02829826 -linguistic a 2 3 ! \ + 2 2 02842445 02843218 -lingulate a 1 1 & 1 0 02046736 -linked a 1 1 & 1 0 00567161 -linnaean a 1 2 \ + 1 0 02830010 -linnean a 1 2 \ + 1 0 02830010 -lionhearted a 1 1 & 1 0 00264178 -lip-shaped a 1 1 & 1 0 02148277 -lipless a 1 1 ! 1 0 01704675 -liplike a 1 1 & 1 0 01704420 -lipophilic a 1 2 & ; 1 0 00492477 -lipotropic a 1 2 & ; 1 0 00492477 -lipped a 1 2 ! & 1 1 01704073 -liquefiable a 1 2 & + 1 0 02261985 -liquefied a 2 1 & 2 0 02262173 01506526 -liquescent a 1 1 & 1 0 01079978 -liquid a 7 5 ! & ^ = + 7 3 02261386 02473371 00432453 01505991 01505041 01139832 00778017 -liquid-fueled a 1 1 & 1 0 01099051 -liquifiable a 1 2 & + 1 0 02261985 -liquified a 3 2 & ^ 3 0 01505991 02262173 01506526 -lissom a 1 1 & 1 0 01140290 -lissome a 1 2 & + 1 0 01140290 -listed a 1 1 ! 1 1 01418288 -listless a 2 2 & + 2 1 00876465 02281938 -lit a 2 1 & 2 1 00271580 00475125 -lite a 1 1 & 1 0 00993117 -literal a 4 4 ! & ^ + 4 2 02460964 00914983 01418789 01793674 -literary a 3 3 & \ + 3 1 02830501 01421368 01045518 -literate a 3 3 ! & ^ 3 1 01421602 01421077 00830381 -lithe a 1 2 & + 1 1 01140290 -lithe-bodied a 1 1 & 1 0 00628354 -lithesome a 1 1 & 1 0 01140290 -lithic a 2 1 \ 2 0 02830954 02830849 -lithographic a 1 1 \ 1 0 03081681 -lithomantic a 1 2 \ + 1 0 02911008 -lithophytic a 1 3 \ + ; 1 0 03022469 -lithuanian a 1 2 \ + 1 0 02962961 -litigious a 2 3 & \ + 2 0 02859221 00603804 -littered a 1 1 & 1 1 02424949 -little a 8 6 ! & ^ = + ; 8 5 01391351 01554510 01649031 01280908 01455732 02386612 01467534 00855670 -little-known a 1 1 & 1 0 01377407 -littler a 1 1 & 1 0 01394922 -littoral a 1 1 \ 1 0 02888659 -liturgical a 1 2 \ + 1 0 02994312 -liv a 1 1 & 1 0 02191616 -livable a 1 3 ! & + 1 1 01423676 -live a 11 6 ! & ^ = + ; 11 1 01422556 00099290 00094448 02010441 01424596 00843595 00806243 00667463 00667353 00358392 00041488 -live-bearing a 1 1 ; 1 0 02519029 -liveable a 1 2 & + 1 0 01423676 -liveborn a 1 1 & 1 0 00094799 -livelong a 1 1 & 1 0 00516231 -lively a 6 5 ! & ^ = + 6 1 00804695 02280333 00874226 00843595 00804371 00119006 -liver a 1 1 & 1 0 00398581 -liver-colored a 1 1 & 1 0 00398581 -liveried a 1 1 ! 1 0 01424238 -liverish a 2 1 & 2 0 02543149 01135269 -liverpudlian a 1 2 \ + 1 0 03081813 -livery a 1 2 & + 1 0 02543149 -livid a 4 3 & + ; 4 3 00404568 00272172 00115906 01318330 -living a 6 3 & \ ; 6 3 02756129 01941274 00005839 00928874 00928781 00099704 -livonian-speaking a 1 1 & 1 0 00498817 -load-bearing a 1 1 & 1 0 00217428 -loaded a 5 3 ! & ; 5 3 01085661 01424455 00285725 02022167 00798103 -loaded_down a 2 1 & 2 1 00869690 00868241 -loamless a 1 1 ! 1 0 01425435 -loamy a 1 2 ! + 1 0 01425300 -loath a 2 1 & 2 0 02566453 01293542 -loathly a 1 1 & 1 0 01625893 -loathsome a 2 2 & + 2 2 02560035 01625893 -lobar a 1 2 \ + 1 0 02934314 -lobate a 2 2 & \ 2 0 02934458 02172851 -lobated a 1 1 \ 1 0 02934458 -lobed a 1 1 & 1 0 02172851 -lobeliaceous a 1 2 \ + 1 0 02756234 -lobster-backed a 1 1 & 1 1 00456576 -lobular a 1 2 \ + 1 1 02948068 -local a 3 5 ! & \ + ; 3 2 01106405 02756346 01425529 -localised a 2 2 & ; 2 0 01425708 01108276 -localized a 2 2 & ; 2 0 01425708 01108276 -located a 1 1 & 1 1 02126430 -locker-room a 1 1 \ 1 0 02756620 -loco a 1 1 & 1 0 02074929 -locomotive a 1 2 \ + 1 0 02994448 -locomotor a 1 1 \ 1 0 02994448 -lofty a 3 2 & + 3 2 01588619 01205473 01285136 -logarithmic a 1 2 \ + 1 0 02994617 -loggerheaded a 1 1 & 1 0 00440292 -logical a 4 5 ! & ^ = + 4 2 01430111 02499301 00464513 01925708 -logistic a 1 2 \ + 1 1 02986218 -logistical a 1 2 \ + 1 0 02986218 -logogrammatic a 1 2 \ + 1 0 02756743 -logographic a 1 1 \ 1 0 02756743 -logy a 1 2 & + 1 0 00875962 -lone a 3 1 & 3 2 02251212 02250430 02214736 -lonely a 4 2 & + 4 2 02251212 00704360 02250430 01313649 -lonesome a 2 2 & + 2 0 02214736 00704360 -long a 9 6 ! & ^ = + ; 9 3 01437963 01433493 02386125 02005756 01444434 01444022 02274869 01895296 00015589 -long-acting a 1 1 & 1 1 01440331 -long-ago a 1 1 & 1 0 01640124 -long-armed a 1 1 & 1 0 00146609 -long-bodied a 1 1 & 1 0 00628432 -long-branched a 1 1 & 1 0 00614120 -long-chain a 1 1 \ 1 0 02830223 -long-dated a 1 2 & ; 1 0 01440422 -long-distance a 2 2 & \ 2 0 02756894 00446333 -long-faced a 1 1 & 1 0 00235731 -long-familiar a 1 1 & 1 1 00966167 -long-haired a 1 1 & 1 0 00214812 -long-handled a 1 1 & 1 0 01434966 -long-headed a 1 1 & 1 0 00262705 -long-jawed a 1 1 & 1 0 02597245 -long-lasting a 1 1 & 1 0 01439496 -long-legged a 1 1 & 1 1 02385851 -long-life a 1 1 & 1 0 01440641 -long-lived a 1 1 & 1 1 01439496 -long-play a 1 1 & 1 0 00981455 -long-playing a 1 1 & 1 0 00981455 -long-range a 2 1 & 2 2 01440889 01435060 -long-run a 1 1 & 1 1 01441000 -long-shanked a 1 1 & 1 1 02385851 -long-snouted a 1 1 & 1 0 01435189 -long-spurred a 1 1 ! 1 0 02596222 -long-stalked a 1 1 & 1 0 02386305 -long-staple a 1 1 & 1 0 01435290 -long-suffering a 1 1 & 1 0 01736384 -long-term a 1 1 & 1 1 01441000 -long-wearing a 1 1 & 1 0 02124096 -long-winded a 1 2 & + 1 1 00549236 -long-wool a 1 1 & 1 0 01435399 -long-wooled a 1 1 & 1 0 01435399 -longanimous a 1 2 & + 1 0 01736571 -longed-for a 1 1 & 1 0 02527489 -longhand a 1 1 & 1 1 02285739 -longish a 1 1 & 1 0 01440574 -longitudinal a 3 3 & \ + 3 0 02830345 01445558 01440776 -longsighted a 2 2 & + 2 0 02157594 01895296 -longstanding a 1 1 & 1 1 01441271 -longtime a 1 1 & 1 0 01640261 -look-alike a 1 1 & 1 0 01410118 -looking a 1 1 & 1 1 01874886 -loony a 1 2 & + 1 0 02074929 -loopy a 2 3 & \ + 2 0 02757100 02074929 -loose a 13 5 ! & ^ + ; 13 6 00503321 00600725 01446749 01634027 00916199 00638841 00159381 02404421 02232112 01998835 01739582 01062114 00361837 -loose-fitting a 1 1 & 1 0 01446991 -loose-jointed a 1 1 & 1 1 02404670 -loose-jowled a 1 1 & 1 1 00987349 -looseleaf a 1 1 & 1 0 00257579 -loosely_knit a 1 1 & 1 1 00451032 -loosened a 1 1 & 1 0 00256538 -looted a 1 1 & 1 1 01087757 -lop-eared a 1 1 & 1 1 00812521 -lopsided a 2 2 & + 2 0 02373868 02312450 -loquacious a 1 2 & + 1 0 02384077 -lordless a 1 1 & 1 0 00600879 -lordly a 2 2 & + 2 1 01591050 01891109 -lordotic a 1 2 & + 1 0 01020117 -lossless a 1 1 ! 1 0 01433386 -lossy a 1 2 ! + 1 0 01433267 -lost a 9 3 ! & ^ 9 6 01449564 01684133 01450969 01452266 01956855 00535170 02419159 01766133 01230616 -loth a 2 1 & 2 0 02566453 01293542 -lotic a 1 1 ! 1 0 00259329 -louche a 1 1 & 1 0 01984669 -loud a 3 5 ! & ^ = + 3 2 01452593 02393791 01458736 -loud-mouthed a 1 1 & 1 0 01453809 -loud-voiced a 1 1 & 1 1 01453896 -lousy a 3 3 & + ; 3 2 01127782 00422374 01587474 -loutish a 1 1 & 1 0 01949859 -louvered a 1 1 & 1 0 02509059 -lovable a 1 4 ! & ^ + 1 0 01459422 -loveable a 1 3 & ^ + 1 0 01459422 -loved a 1 3 ! & ^ 1 0 01461822 -loveless a 2 1 & 2 0 01466956 01463869 -lovelorn a 1 1 & 1 0 01463414 -lovely a 2 2 & + 2 2 00219809 01459755 -loverlike a 1 1 & 1 0 01466038 -loverly a 1 1 & 1 0 01466038 -lovesick a 1 2 & + 1 0 01150063 -lovesome a 1 1 & 1 0 01464700 -loving a 1 4 ! & ^ + 1 1 01463965 -low a 10 5 ! & ^ = + 10 6 01212469 01206474 01455888 01951008 01215421 00904745 02340458 02336759 01893303 00703615 -low-altitude a 1 1 & 1 0 01207145 -low-backed a 1 1 & 1 0 00200529 -low-beam a 1 1 & 1 0 00284816 -low-budget a 1 1 & 1 0 00934966 -low-cal a 1 1 & 1 0 00993117 -low-ceilinged a 1 1 & 1 1 01210080 -low-class a 1 3 & ^ = 1 1 00259568 -low-cost a 1 1 & 1 1 00935103 -low-cut a 2 1 & 2 0 01209210 00201259 -low-density a 2 1 & 2 0 01187503 00541823 -low-down a 2 2 & ; 2 1 00904745 00855158 -low-grade a 1 1 & 1 1 02347489 -low-growing a 1 1 & 1 0 01207007 -low-interest a 1 1 ! 1 0 01210581 -low-key a 1 1 & 1 0 02000406 -low-keyed a 1 1 & 1 0 02000406 -low-level a 4 3 & ^ = 4 1 01213000 00792991 02340878 01207145 -low-lying a 2 1 & 2 1 01207282 01219709 -low-necked a 1 1 & 1 0 01209210 -low-pitched a 2 2 & = 2 1 01215421 01235071 -low-powered a 1 1 & 1 0 01828130 -low-pressure a 1 1 & 1 0 00085139 -low-priced a 1 1 & 1 0 00935103 -low-resolution a 1 1 ! 1 0 01218207 -low-rise a 1 2 ! & 1 0 01218797 -low-set a 2 1 & 2 0 02386962 01207423 -low-spirited a 1 2 & + 1 0 00703615 -low-sudsing a 1 1 ! 1 1 01210375 -low-tech a 1 1 ! 1 0 01208919 -low-tension a 1 2 ! ; 1 0 01829980 -low-toned a 1 1 & 1 1 01455888 -low-voltage a 1 1 ; 1 0 01829980 -lowborn a 1 3 ! & ^ 1 0 01592642 -lowbred a 1 1 & 1 0 01950857 -lowbrow a 1 2 & + 1 0 01334075 -lowbrowed a 1 1 & 1 0 01334075 -lower-class a 1 4 ! & ^ = 1 1 00259568 -lower-middle-class a 1 1 & 1 1 00260973 -lower-ranking a 1 1 & 1 0 02100968 -lowercase a 1 3 ! & ^ 1 0 01467298 -lowered a 1 2 ! & 1 1 01208352 -lowering a 1 1 & 1 1 00462409 -lowermost a 1 1 & 1 0 02440881 -lowest a 1 1 & 1 0 00230076 -lowland a 1 2 ! & 1 0 01219603 -lowly a 4 1 & 4 2 02340458 02100968 02229961 01592857 -lowset a 1 1 & 1 0 01207423 -loyal a 3 4 ! & ^ = 3 1 00961392 01740207 00959244 -lubberly a 2 2 & + 2 0 02230080 01566725 -lubricated a 1 1 ! 1 0 02236645 -lubricious a 2 1 & 2 0 02235188 02133779 -lucent a 1 1 & 1 0 00279332 -lucid a 4 3 & + ; 4 1 00429355 02073970 01925708 00431774 -lucifugal a 1 1 \ 1 0 02757215 -lucifugous a 1 1 \ 1 0 02757215 -luckless a 1 2 & ^ 1 0 01468682 -lucky a 3 4 ! & ^ + 3 2 01049210 01468097 00177547 -lucrative a 1 1 & 1 0 01871774 -luculent a 1 2 & ; 1 0 00429355 -lucullan a 1 2 & + 1 0 02025274 -ludicrous a 2 1 & 2 1 01266397 02570643 -lugubrious a 1 2 & + 1 1 01366062 -lukewarm a 2 2 & + 2 2 02529581 00887472 -lumbar a 1 2 \ + 1 1 03014770 -lumbering a 1 1 & 1 0 01192786 -lumbosacral a 1 1 \ 1 0 03014941 -luminescent a 1 2 & + 1 1 00272410 -luminous a 1 2 & + 1 1 00279332 -lumpen a 1 1 & 1 0 00441272 -lumpish a 1 1 & 1 1 00441272 -lumpy a 2 2 & + 2 0 02141021 00912490 -lunar a 1 1 \ 1 1 02757316 -lunate a 1 1 & 1 0 02045473 -lunatic a 1 3 & + ; 1 1 02076234 -lung-like a 1 1 \ 1 0 02757863 -lunisolar a 1 1 \ 1 0 02757975 -lupine a 1 1 \ 1 0 02758124 -lurid a 4 2 & + 4 3 02512334 02101757 00282389 00405750 -luscious a 2 1 & 2 1 02132967 02396720 -lush a 3 2 & + 3 1 00015247 02025274 01369078 -lusitanian a 2 2 \ + 2 0 02959007 02958844 -lusterless a 2 2 & + 2 0 00808011 00284194 -lustful a 3 2 & + 3 0 02133779 02133207 01727133 -lustreless a 2 2 & + 2 0 00808011 00284194 -lustrous a 3 2 & + 3 0 01812237 01122269 00281657 -lusty a 2 2 & + 2 2 01727133 01171746 -luteal a 1 2 \ + 1 0 02758222 -lutheran a 2 2 \ ; 2 0 03034741 02955358 -luxe a 1 1 & 1 0 00850053 -luxembourgian a 1 2 \ + 1 0 02960832 -luxemburger a 2 1 \ 2 0 03082125 03081986 -luxuriant a 3 2 & + 3 0 01795933 01298239 00015247 -luxurious a 2 2 & + 2 1 01298239 02024928 -lv a 1 1 & 1 0 02191710 -lvi a 1 1 & 1 0 02191803 -lvii a 1 1 & 1 0 02191895 -lviii a 1 1 & 1 0 02191992 -lx a 1 1 & 1 0 02192184 -lxi a 1 1 & 1 0 02192284 -lxii a 1 1 & 1 0 02192376 -lxiii a 1 1 & 1 0 02192469 -lxiv a 1 1 & 1 0 02192567 -lxv a 1 1 & 1 0 02192662 -lxvi a 1 1 & 1 0 02192756 -lxvii a 1 1 & 1 0 02192849 -lxviii a 1 1 & 1 0 02192947 -lxx a 1 1 & 1 0 02193141 -lxxi a 1 1 & 1 0 02193249 -lxxii a 1 1 & 1 0 02193346 -lxxiii a 1 1 & 1 0 02193444 -lxxiv a 1 1 & 1 0 02193547 -lxxv a 1 1 & 1 0 02193647 -lxxvi a 1 1 & 1 0 02193746 -lxxvii a 1 1 & 1 0 02193844 -lxxviii a 1 1 & 1 0 02193947 -lxxx a 1 1 & 1 0 02194151 -lxxxi a 1 1 & 1 0 02194255 -lxxxii a 1 1 & 1 0 02194351 -lxxxiii a 1 1 & 1 0 02194448 -lxxxiv a 1 1 & 1 0 02194550 -lxxxv a 1 1 & 1 0 02194649 -lxxxvi a 1 1 & 1 0 02194747 -lxxxvii a 1 1 & 1 0 02194844 -lxxxviii a 1 1 & 1 0 02194946 -lying_in_wait a 1 1 & 1 0 02089811 -lymphatic a 1 2 \ + 1 0 02831031 -lymphoblast-like a 1 1 & 1 0 00327930 -lymphocytic a 1 2 \ + 1 0 02831143 -lymphoid a 1 1 \ 1 0 02831272 -lynx-eyed a 1 1 & 1 0 02158438 -lyonnaise a 1 1 & 1 0 00617678 -lyophilised a 1 1 & 1 0 01072908 -lyophilized a 1 1 & 1 0 01072908 -lyrate a 1 1 & 1 0 02168796 -lyre-shaped a 1 1 & 1 0 02148450 -lyric a 4 4 ! & \ ; 4 2 00856011 01468994 02856460 02856286 -lyrical a 2 2 & + 2 1 01501990 00856011 -lysogenic a 2 2 \ + 2 0 02831478 02831364 -m a 1 1 & 1 0 02198752 -macabre a 1 1 & 1 1 00195684 -macaronic a 1 1 \ 1 0 02758328 -macedonian a 1 2 \ + 1 0 03082253 -macerative a 1 2 \ + 1 0 02901331 -machiavellian a 1 2 \ + 1 0 03082394 -machine-accessible a 1 1 & 1 0 01650581 -machine-controlled a 1 1 & 1 0 00182086 -machine-driven a 1 1 & 1 0 00182086 -machine-made a 1 1 ! 1 0 00674196 -machine_readable a 1 2 \ ; 1 0 02902214 -machinelike a 1 1 & 1 1 01499999 -macho a 1 1 & 1 0 01483562 -macrencephalic a 1 2 \ + 1 0 02901491 -macrencephalous a 1 2 \ + 1 0 02901491 -macro a 1 1 & 1 0 01388928 -macrobiotic a 1 2 \ + 1 0 02983739 -macrocephalic a 1 2 \ + 1 0 02901649 -macrocephalous a 1 1 \ 1 0 02901649 -macrocosmic a 1 2 \ + 1 0 02903062 -macroeconomic a 1 2 \ + 1 0 02758500 -macromolecular a 1 2 \ + 1 1 02902361 -macroscopic a 2 1 & 2 0 02516316 01388809 -macroscopical a 2 1 & 2 0 02516316 01388809 -maculate a 2 1 & 2 0 01905552 00422546 -mad a 4 3 & + ; 4 3 00115193 02075321 02390724 02572038 -madagascan a 1 2 \ + 1 0 03082589 -madcap a 1 2 & ; 1 0 00326608 -maddened a 1 1 & 1 1 00114454 -maddening a 1 1 & 1 1 01809245 -made a 3 2 ! & 3 2 00672785 01469390 02332286 -made-to-order a 2 1 & 2 0 00672513 00672382 -made-up a 1 2 & ; 1 0 01739808 -magenta a 1 2 & + 1 0 00377524 -magenta_pink a 1 1 & 1 0 00377616 -maggoty a 1 2 & + 1 0 01069823 -magic a 1 1 & 1 1 01576071 -magical a 1 2 & + 1 1 01576071 -magisterial a 3 3 & \ + 3 0 02831596 00787595 00752110 -magna_cum_laude a 1 1 & 1 0 02586608 -magnanimous a 2 2 & + 2 0 01589045 01114658 -magnetic a 5 4 ! & \ + 5 2 02926188 01469677 01470813 01470298 00167077 -magnetised a 1 1 & 1 0 01469677 -magnetized a 1 1 & 1 0 01469677 -magnificent a 1 2 & + 1 1 01285376 -magnified a 1 1 & 1 1 00881177 -magniloquent a 1 2 & + 1 0 02017721 -magyar a 1 1 + 1 0 02961505 -mahogany-red a 1 1 & 1 0 00381525 -maiden a 1 1 & 1 0 01009343 -maidenlike a 1 1 & 1 0 01484651 -maidenly a 1 2 & + 1 0 01484651 -mail-cheeked a 1 1 & 1 0 00144408 -mail-clad a 1 1 & 1 0 00144510 -mailed a 1 1 & 1 0 00144510 -maimed a 1 1 & 1 0 01020282 -main a 3 2 & ; 3 1 01277426 00730215 01512527 -mainstreamed a 1 1 & 1 0 01326805 -maintainable a 1 2 & + 1 0 01963688 -maintained a 2 1 & 2 1 00737515 00737801 -majestic a 3 2 & + 3 2 02339791 01285136 01591394 -major a 8 5 ! & = + ; 8 5 01472628 01471538 01471002 01472351 01472098 01473680 01471848 02100236 -majuscular a 1 2 & + 1 0 01474196 -majuscule a 2 3 ! & ^ 2 0 01473996 01467919 -make-believe a 1 2 & + 1 0 01937759 -makeshift a 1 2 & + 1 1 01757211 -maladaptive a 1 2 ! & 1 0 00046673 -maladjusted a 3 3 ! & ; 3 0 00351818 01584017 00351420 -maladjustive a 1 1 & 1 0 00046955 -maladroit a 1 4 ! & ^ + 1 1 00063277 -malapropos a 1 4 ! & ^ = 1 0 00138622 -malarial a 1 2 \ + 1 0 03082745 -malawian a 1 2 \ + 1 0 03082875 -malay a 1 2 \ + 1 0 03083069 -malayan a 2 2 \ + 2 0 03083417 03083069 -malayo-polynesian a 1 1 \ 1 0 02758610 -malaysian a 1 2 \ + 1 0 03083417 -malcontent a 1 2 & + 1 0 00589960 -male a 3 6 ! & ^ = + ; 3 1 01476685 01483677 01477077 -maledict a 1 1 & 1 0 00669853 -malefic a 1 1 & 1 0 00224515 -maleficent a 1 5 ! & ^ = + 1 0 00224166 -malevolent a 2 2 & + 2 0 00225564 00224515 -malformed a 1 1 & 1 1 02141298 -malfunctioning a 1 2 ! & 1 0 01092142 -malian a 1 2 \ + 1 0 03083678 -malicious a 1 3 ! & + 1 0 00224731 -malign a 2 5 ! & ^ = + 2 1 00227003 00224515 -malignant a 1 4 ! & + ; 1 0 02594714 -malleable a 2 2 & + 2 0 02451551 02144436 -malnourished a 1 2 ! & 1 0 02300914 -malodorous a 1 3 ! & + 1 0 01053144 -malodourous a 1 1 & 1 0 01053144 -malposed a 1 1 & 1 1 02313454 -malted a 1 2 ! < 1 0 03150301 -maltese a 1 1 \ 1 0 03083842 -malthusian a 1 2 \ + 1 0 03084010 -maltreated a 1 1 & 1 0 00017352 -mammalian a 1 2 \ + 1 1 02832272 -mammary a 1 2 \ + 1 0 02893994 -mammoth a 1 2 & + 1 1 01386538 -man-made a 1 2 & ; 1 0 01573568 -man-portable a 1 1 & 1 0 01525984 -man-sized a 2 2 & ; 2 0 01476046 01389022 -man-to-man a 2 2 & ; 2 0 00765410 00494198 -manageable a 2 4 ! & ^ + 2 0 01474513 01821690 -managerial a 1 2 \ + 1 0 02904223 -manchurian a 1 2 \ + 1 0 02969060 -mancunian a 1 2 \ + 1 0 03084196 -mandaean a 1 1 \ 1 0 02758750 -mandatory a 1 2 & + 1 1 00848466 -mandean a 1 1 \ 1 0 02758750 -mandibular a 1 2 \ + 1 0 02877910 -mandibulate a 1 1 \ 1 0 02758935 -mandibulofacial a 1 1 \ 1 0 02878045 -maneuverable a 1 2 & + 1 0 01523249 -manful a 2 3 & ^ + 2 0 01475831 01483677 -mangey a 1 2 & + 1 0 02582269 -mangled a 1 1 & 1 1 01318937 -mangy a 1 2 & + 1 0 02582269 -maniac a 1 2 & + 1 0 02076416 -maniacal a 1 2 & + 1 1 02076416 -manic a 1 2 & + 1 1 02391003 -manic-depressive a 1 2 & + 1 0 02076557 -manichaean a 2 2 \ + 2 0 02947252 02759009 -manichean a 1 2 \ + 1 0 02759009 -manichee a 1 1 \ 1 0 02759009 -maniclike a 1 1 & 1 1 02076713 -manifest a 1 1 & 1 0 01618376 -manifold a 1 1 & 1 1 02218314 -manipulable a 1 4 & ^ = + 1 0 02451113 -manipulative a 1 2 & + 1 0 00149461 -manky a 1 2 & ; 1 0 02502901 -manlike a 3 2 & ^ 3 0 01475831 01483677 01259015 -manly a 2 4 ! & ^ + 2 0 01475831 01483677 -manned a 1 1 ! 1 1 01479805 -mannered a 1 1 & 1 0 00074094 -mannerly a 1 2 & + 1 0 00641343 -mannish a 2 1 & 2 0 01485828 01483950 -manoeuvrable a 1 2 & + 1 0 01523249 -manorial a 1 2 \ + 1 0 03084397 -manque a 1 1 & 1 0 00104825 -mansard a 1 2 & + 1 0 01221875 -mantic a 1 1 & 1 1 01882754 -mantled a 1 1 & 1 0 01695505 -manual a 3 3 ! & \ 3 0 02759190 00182843 02557023 -manufactured a 1 1 & 1 1 00675368 -manx a 1 2 \ + 1 0 03084548 -many a 1 4 ! & ^ = 1 1 01551633 -many-chambered a 1 1 & 1 0 02481870 -many-lobed a 1 1 & 1 0 00239668 -many-sided a 3 1 & 3 0 00237240 02506922 00407654 -many_a a 1 1 & 1 1 01552255 -many_an a 1 1 & 1 0 01552255 -many_another a 1 1 & 1 1 01552255 -maoist a 1 1 \ 1 0 02759290 -maple-like a 1 1 & 1 0 00614200 -maplelike a 1 1 & 1 0 00614200 -marauding a 1 1 & 1 0 01629832 -marbled a 1 1 & 1 0 01789117 -marbleised a 1 1 & 1 0 01789117 -marbleized a 1 1 & 1 1 01789117 -marched_upon a 1 1 < 1 1 03150569 -marginal a 4 2 & + 4 2 00331889 01496311 02563466 01872486 -marian a 1 2 \ + 1 0 03034903 -marine a 5 3 & \ ; 5 1 02887899 02889746 02888000 01380721 00124353 -marital a 1 1 \ 1 1 02852920 -maritime a 2 2 & \ 2 0 02889746 00463399 -marked a 3 2 ! & 3 3 01287808 00580684 01480186 -marked-up a 1 1 & 1 0 01405390 -marketable a 3 2 & + 3 1 02061998 02062133 00877119 -markovian a 1 2 \ + 1 0 02994754 -marly a 1 2 \ + 1 0 02995039 -marmoreal a 1 2 \ + 1 0 02994872 -marmorean a 1 2 \ + 1 0 02994872 -maroc a 1 1 \ 1 0 03024420 -maroon a 1 1 & 1 1 00377702 -maroon-purple a 1 1 & 1 0 00377802 -maroon-spotted a 1 1 & 1 0 01789279 -marooned a 1 1 & 1 0 02251576 -marred a 1 1 & 1 0 00246727 -marriageable a 1 2 & + 1 0 01489325 -married a 2 4 ! & ^ \ 2 1 01481612 02852920 -marshy a 1 2 & + 1 0 02548066 -marsupial a 1 1 \ 1 0 02995373 -martial a 3 1 & 3 1 01518694 01518860 01517526 -martian a 1 2 \ + 1 1 02939406 -marvellous a 3 2 & + 3 0 01676517 01576551 00646117 -marvelous a 3 2 & + 3 2 01676517 00646117 01576551 -marxist a 1 1 \ 1 1 02875282 -marxist-leninist a 1 1 \ 1 0 02875374 -masculine a 3 5 ! & ^ + ; 3 2 01486084 01483324 02319922 -masked a 2 1 & 2 0 01707230 01481014 -masochistic a 1 2 ! + 1 0 02057681 -masonic a 2 2 \ + 2 0 02895418 02895268 -masoretic a 1 2 \ + 1 0 02895565 -mass a 1 1 & 1 0 00467240 -mass-produced a 1 1 & 1 0 00675473 -mass-spectrometric a 1 1 \ 1 1 02918615 -mass_spectroscopic a 1 2 \ + 1 0 02918490 -massive a 4 2 & + 4 1 01389170 02263875 01389451 01185916 -masted a 1 1 \ 1 1 02895668 -master a 1 1 & 1 0 01277426 -mastered a 1 1 & 1 0 01750617 -masterful a 1 1 & 1 0 02226979 -masterless a 1 1 & 1 0 00600879 -masterly a 1 2 & + 1 1 02226979 -mastoid a 2 2 \ + 2 0 02853534 02853434 -mastoidal a 1 0 1 0 02853434 -mat a 1 1 & 1 0 00283972 -matched a 2 3 ! & ^ 2 1 00513048 01486489 -matching a 2 1 & 2 2 01486854 01486704 -matchless a 1 1 & 1 0 00505410 -mated a 3 3 ! & ^ 3 0 01482956 01486960 01481932 -mateless a 2 1 & 2 0 01483251 01482658 -material a 6 5 ! & ^ = + 6 4 02577734 00626800 01487627 01779193 00629997 00625393 -materialistic a 2 2 & + 2 0 02577907 00260780 -maternal a 4 6 ! & ^ \ = + 4 1 01734884 02759367 01722529 01972349 -maternalistic a 1 2 & + 1 0 01735130 -matey a 1 3 & + ; 1 0 01075524 -mathematical a 5 4 & \ + ; 5 1 02937876 02230795 01918771 01822933 00915141 -matriarchal a 1 4 ! & ^ + 1 0 01738335 -matriarchic a 1 1 & 1 0 01738495 -matricentric a 1 1 & 1 0 01738663 -matrilineal a 1 1 & 1 0 01416809 -matrilinear a 1 1 & 1 0 01416809 -matrimonial a 1 2 \ + 1 0 02852920 -matronly a 1 2 & + 1 0 01485254 -matt a 1 2 & + 1 0 00283972 -matte a 1 2 & + 1 0 00283972 -matted a 2 1 & 2 1 00255918 00283972 -matter-of-course a 1 1 & 1 0 00930170 -matter-of-fact a 2 1 & 2 0 02018649 01835409 -maturational a 1 2 \ + 1 0 02979722 -mature a 5 5 ! & ^ = + 5 3 01491775 00742316 01488245 01493173 01095914 -matured a 2 1 & 2 0 01489085 00742316 -matutinal a 1 1 \ 1 0 02759480 -maudlin a 1 1 & 1 0 00854413 -mauritanian a 1 2 \ + 1 0 03084759 -mauritian a 1 2 \ + 1 0 03084759 -mauve a 1 2 & + 1 1 00377890 -mauve-blue a 1 1 & 1 0 00378002 -mauve-pink a 1 1 & 1 0 00378084 -maverick a 1 2 & + 1 0 00607202 -mawkish a 1 2 & + 1 0 00854413 -maxi a 1 2 ! ; 1 0 01433081 -maxillary a 1 2 \ + 1 0 02878147 -maxillodental a 1 1 \ 1 0 02878252 -maxillofacial a 1 2 \ ; 1 0 02878368 -maxillomandibular a 1 1 \ 1 0 02878580 -maximal a 1 2 ! & 1 1 01495725 -maximising a 1 1 & 1 0 02536026 -maximizing a 1 1 & 1 0 02536026 -maximum a 1 2 ! & 1 1 01495725 -mayoral a 1 2 \ + 1 0 03085072 -mazed a 1 1 & 1 0 01766133 -mazy a 1 2 & + 1 0 02178628 -meager a 1 5 ! & ^ = + 1 1 00106456 -meagerly a 1 3 & ^ = 1 0 00106456 -meagre a 1 4 & ^ = + 1 0 00106456 -mealy a 2 3 & \ + 2 0 02759910 02231502 -mealy-mouthed a 1 1 & 1 0 00768927 -mealymouthed a 1 1 & 1 0 00768927 -mean a 8 3 & + ; 8 3 01594146 01587787 01589650 02227663 02025718 01113807 01112969 00905039 -meandering a 1 1 & 1 1 00763407 -meaning a 1 1 & 1 0 01497387 -meaningful a 1 4 ! & ^ + 1 1 01496976 -meaningless a 1 4 ! & ^ + 1 1 01497736 -meanspirited a 2 2 & ^ 2 0 01115081 01589650 -measly a 1 1 & 1 0 00107384 -measurable a 2 4 ! & = + 2 2 01498769 01279310 -measured a 4 2 & ; 4 0 02931947 02020310 01337939 01271961 -measureless a 1 1 & 1 0 01499269 -meat-eating a 1 2 & ; 1 0 00313701 -meatless a 1 1 ! 1 0 01499602 -meaty a 2 3 ! & + 2 1 01499457 01497245 -mechanic a 1 1 & 1 0 01500247 -mechanical a 3 4 ! & \ + 3 3 01499686 02891236 02890983 -mechanically_skillful a 1 1 \ 1 0 02891236 -mechanised a 2 1 & 2 0 01523450 01500555 -mechanistic a 2 3 & \ + 2 1 01500416 02911112 -mechanized a 2 1 & 2 1 01500555 01523450 -mecopterous a 1 2 \ + 1 0 02760011 -meddlesome a 1 2 & + 1 0 01352561 -meddling a 1 1 & 1 1 01352561 -mediaeval a 2 2 & \ 2 0 02989754 01537448 -medial a 2 2 & + 2 0 00779133 00331030 -median a 3 3 & + ; 3 1 01594472 00779133 00331030 -mediate a 2 4 ! & = + 2 0 00770756 01014953 -mediated a 1 1 & 1 0 00771203 -mediatorial a 1 1 \ 1 0 02989921 -mediatory a 1 1 \ 1 0 02990035 -medical a 3 3 ! \ + 3 3 02760116 01168988 02607455 -medicative a 1 2 & + 1 0 01166656 -medicinal a 1 2 & + 1 0 01166656 -medicolegal a 1 1 \ 1 0 02760615 -medieval a 3 2 & \ 3 2 02989754 01537448 01729157 -mediocre a 3 2 & + 3 0 02347564 01673061 01128253 -meditative a 1 2 & + 1 1 02419434 -mediterranean a 1 2 \ + 1 0 03085213 -medium a 2 1 & 2 1 01531957 00617752 -medium-dry a 1 1 & 1 0 02368147 -medium-large a 1 1 & 1 0 01389634 -medium-size a 1 1 & 1 0 02223659 -medium-sized a 1 1 & 1 0 02223659 -medullary a 3 2 \ + 3 0 02761053 02760940 02760820 -medullated a 1 1 \ 1 0 02766699 -medusoid a 1 1 \ 1 0 02761162 -meek a 3 2 & + 3 1 01893510 02328916 00789494 -meet a 1 1 & 1 0 01370141 -megakaryocytic a 1 2 \ + 1 1 03012477 -megalithic a 1 2 \ + 1 0 03085394 -megaloblastic a 1 2 \ + 1 0 03012599 -megalomaniacal a 1 2 & + 1 0 01584569 -megalomanic a 1 2 & + 1 0 01584569 -megascopic a 1 1 & 1 0 02516435 -meiotic a 1 2 \ + 1 0 02763423 -melancholic a 1 2 & + 1 0 01362684 -melancholy a 2 1 & 2 1 01362684 00365261 -melanesian a 1 1 \ 1 0 02863959 -meliorative a 1 2 & + 1 0 00232385 -mellifluous a 1 1 & 1 0 01501821 -mellisonant a 1 1 & 1 0 01501821 -mellow a 5 2 & + 5 0 02408011 01493636 01492061 01156302 00799224 -mellowed a 2 1 & 2 0 01493636 01492061 -melodic a 2 2 & \ 2 1 01501113 02864068 -melodious a 2 3 ! & + 2 1 01502195 01501113 -melodramatic a 2 2 & + 2 1 00795078 00796337 -meltable a 1 2 & + 1 0 02265594 -melted a 1 3 ! & ^ 1 0 01505991 -melting a 1 1 & 1 1 01079978 -membered a 1 3 ! & ; 1 0 01502507 -memberless a 1 1 ! 1 0 01503886 -membrane-forming a 1 1 & 1 0 01177704 -membranous a 2 3 & \ + 2 0 03085572 01177704 -memorable a 1 1 & 1 1 01040752 -menacing a 1 1 & 1 1 00194357 -mendacious a 2 2 & + 2 1 01226129 02462089 -mendelian a 1 2 \ + 1 0 03085715 -mendicant a 1 2 & + 1 0 00714437 -menial a 1 1 & 1 1 02229961 -meningeal a 1 2 \ + 1 0 02761251 -menopausal a 1 2 \ + 1 0 02761349 -mensal a 1 1 \ 1 0 02932161 -menstrual a 1 1 \ 1 0 02879273 -mensurable a 2 2 = ; 2 0 02931947 01498769 -mensural a 2 2 \ ; 2 0 02932081 02931947 -mental a 5 5 ! & \ + ; 5 2 01779986 02898750 02734914 02734776 01177899 -mentally_ill a 1 1 & 1 1 02076817 -mentholated a 1 1 \ 1 0 03085877 -mephistophelean a 1 2 & + 1 0 01133374 -mephistophelian a 1 2 & + 1 0 01133374 -mephitic a 1 2 & + 1 0 01054204 -mercantile a 3 2 & \ 3 0 02995482 00483816 00483650 -mercenary a 3 2 & + 3 0 02577907 01709081 00483816 -mercerised a 1 1 < 1 0 03150670 -mercerized a 1 1 < 1 0 03150670 -merchantable a 1 1 & 1 0 02062133 -merciful a 2 4 ! & ^ + 2 1 01507134 01142196 -merciless a 1 4 ! & ^ + 1 1 01507402 -mercurial a 4 3 & \ + 4 1 00345189 02866674 02866448 02866278 -mercuric a 1 3 \ + ; 1 0 02763520 -mercurous a 1 3 \ + ; 1 0 02763520 -mercury-contaminated a 1 1 & 1 0 01909628 -mere a 2 1 & 2 2 01099707 01792573 -meretricious a 3 4 & \ + ; 3 0 02763684 02393791 02182302 -merged a 1 1 & 1 0 02477557 -merging a 1 1 & 1 0 00612383 -meridian a 2 3 & \ + 2 0 02866183 01489557 -meridional a 2 3 & \ + 2 0 02763824 01605445 -meritable a 1 2 & + 1 0 02586747 -merited a 1 2 ! & 1 0 01371137 -meritless a 1 1 & 1 0 02502578 -meritocratic a 1 2 \ + 1 0 03086002 -meritorious a 1 2 & + 1 1 02586747 -merovingian a 1 1 \ 1 0 02761455 -merry a 3 2 & + 3 2 01367651 01367431 00874226 -mesenteric a 1 2 \ + 1 1 03009476 -meshed a 2 1 & 2 0 02007225 01100817 -meshuga a 1 2 & ; 1 0 01837025 -meshugga a 1 2 & ; 1 0 01837025 -meshugge a 1 2 & ; 1 0 01837025 -meshuggeneh a 1 3 & + ; 1 0 01837025 -meshuggener a 1 2 & ; 1 0 01837025 -mesial a 1 3 ! & ; 1 0 00778958 -mesic a 2 5 ! & \ + ; 2 0 02995161 02589551 -mesmeric a 1 2 & + 1 0 00168188 -mesmerised a 1 1 & 1 0 00865848 -mesmerized a 1 1 & 1 0 00865848 -mesmerizing a 1 1 & 1 0 00168188 -mesoamerican a 1 2 \ + 1 0 02866825 -mesoblastic a 1 2 \ + 1 0 02866976 -mesodermal a 1 2 \ + 1 0 02866976 -mesolithic a 1 1 \ 1 0 03089951 -mesomorphic a 1 4 ! & + ; 1 0 00828336 -mesonic a 1 3 \ + ; 1 0 02995161 -mesophytic a 1 2 & + 1 0 02589730 -mesozoic a 1 1 \ 1 0 02867141 -messianic a 1 2 \ + 1 0 02867242 -messy a 1 2 & + 1 1 02426042 -metabolic a 2 4 ! \ + ; 2 1 02975096 01508444 -metabolous a 1 2 + ; 1 0 01508444 -metacarpal a 1 2 \ + 1 0 03086167 -metacentric a 2 3 \ + ; 2 0 03140494 03140338 -metagrabolised a 1 1 & 1 0 01766550 -metagrabolized a 1 1 & 1 0 01766550 -metagrobolised a 1 1 & 1 0 01766550 -metagrobolized a 1 1 & 1 0 01766550 -metal a 1 1 & 1 1 01527420 -metal-colored a 1 1 & 1 0 00398677 -metal-coloured a 1 1 & 1 0 00398677 -metal-cutting a 1 1 & 1 0 00802397 -metal-looking a 1 1 & 1 0 01528946 -metallic a 1 3 ! & + 1 1 01527420 -metallic-colored a 1 1 & 1 0 00398677 -metallic-coloured a 1 1 & 1 0 00398677 -metallic-looking a 1 1 & 1 0 01528946 -metallike a 1 1 & 1 0 01528946 -metalloid a 1 1 & 1 0 01529479 -metallurgic a 1 2 \ + 1 0 03086294 -metallurgical a 1 2 \ + 1 0 03086294 -metameric a 1 3 & + ; 1 0 02481951 -metamorphic a 2 4 ! & \ + 2 0 02951869 01529643 -metamorphous a 2 4 & \ + ; 2 0 02951869 01530801 -metaphoric a 1 2 & + 1 0 01419784 -metaphorical a 1 2 & + 1 0 01419784 -metaphysical a 3 3 & \ + 3 2 02865814 01576729 00862067 -metastable a 1 2 \ ; 1 0 02865963 -metastatic a 1 2 \ + 1 0 02975216 -metatarsal a 1 2 \ + 1 0 03086476 -meted_out a 1 1 & 1 1 00540236 -meteoric a 3 3 & \ + 3 0 02865479 02865315 00979234 -meteoritic a 1 2 \ + 1 1 02980416 -meteoritical a 1 2 \ + 1 0 02980416 -meteorologic a 1 2 \ + 1 0 02865479 -meteorological a 1 2 \ + 1 1 02865479 -methodical a 1 2 & + 1 1 01668567 -methodist a 1 2 \ ; 1 1 02955562 -methodological a 1 2 \ + 1 0 02943463 -methylated a 1 1 \ 1 0 03086603 -meticulous a 2 2 & + 2 0 01838529 00984879 -metonymic a 1 2 & + 1 0 01419999 -metonymical a 1 2 & + 1 0 01419999 -metric a 2 4 & \ + ; 2 0 02995636 02020310 -metrical a 2 4 & \ + ; 2 0 02995636 02020310 -metrological a 1 2 \ + 1 0 02763927 -metropolitan a 1 2 \ + 1 1 02865172 -mettlesome a 2 2 & + 2 0 02280457 00263994 -mexican a 1 2 \ + 1 1 03026902 -miasmal a 1 2 & + 1 0 00462546 -miasmic a 2 2 & + 2 0 01054204 00462546 -micaceous a 1 2 \ + 1 0 02764031 -michelangelesque a 1 1 \ 1 0 03035021 -micro a 1 1 & 1 0 01393976 -microbial a 1 2 \ + 1 1 03014485 -microbic a 1 1 \ 1 0 03014485 -microcephalic a 1 2 \ + 1 0 02901806 -microcephalous a 1 2 \ + 1 0 02901806 -microcosmic a 1 1 \ 1 0 02902744 -microcrystalline a 1 1 & 1 0 00269241 -microeconomic a 1 1 \ 1 0 02764159 -microelectronic a 1 2 \ + 1 0 02902068 -micrometeoric a 1 1 \ 1 0 02902883 -micrometeoritic a 1 2 \ + 1 1 02980583 -micropylar a 1 1 \ 1 0 02902976 -microscopic a 4 3 & \ + 4 1 02918844 02516570 01838772 01393822 -microscopical a 3 3 & \ + 3 0 02918844 02516570 01393822 -microsomal a 1 2 \ + 1 1 03019219 -mid a 1 1 & 1 1 00816324 -mid-atlantic a 1 1 & 1 0 00827327 -middle a 4 4 ! & = ; 4 4 01014953 00330506 00820458 00815941 -middle-aged a 1 1 & 1 1 01646021 -middle-class a 1 3 ! & = 1 1 00260430 -middle-level a 1 1 & 1 1 02341014 -middle-of-the-road a 2 1 & 2 0 02031810 01532653 -middle_atlantic a 1 1 & 1 1 00827327 -middle_eastern a 1 1 \ 1 0 02626379 -middlemost a 1 1 & 1 0 00331167 -middling a 1 1 & 1 0 01673061 -midget a 1 1 & 1 0 01392249 -midi a 1 2 ! ; 1 0 01432894 -midland a 1 1 & 1 0 00463917 -midmost a 1 1 & 1 0 00331167 -midway a 1 1 & 1 1 00330506 -midweekly a 1 2 & + 1 0 01970322 -midwestern a 1 1 & 1 1 00826403 -miffed a 1 1 & 1 0 01806106 -mighty a 1 2 & + 1 1 01826575 -migrant a 1 2 & + 1 0 02127815 -migrational a 1 2 \ + 1 0 02895861 -migratory a 2 3 ! & + 2 0 02129007 02127815 -milanese a 1 1 \ 1 0 02970576 -milch a 1 1 \ 1 0 03086712 -mild a 3 5 ! & ^ = + 3 1 01508719 01893510 00438332 -mild-mannered a 1 1 & 1 1 01509262 -mild-tasting a 1 1 & 1 0 02398051 -militant a 3 2 & + 3 2 01742715 00083003 01742537 -militarised a 1 1 & 1 0 00142825 -militaristic a 1 2 & + 1 0 01518577 -militarized a 1 1 & 1 0 00142825 -military a 3 3 ! & \ 3 3 02764251 01518386 01517081 -milk-sick a 1 1 & 1 0 02545592 -milk-white a 1 1 & 1 0 00390539 -milkless a 1 1 & 1 0 02554663 -milklike a 1 1 & 1 0 00434384 -milky a 1 2 & + 1 0 00434384 -milled a 1 1 & 1 0 01952153 -millenarian a 1 1 \ 1 0 02865018 -millenary a 2 2 \ + 2 0 03086852 02864699 -millennial a 1 2 \ + 1 0 02864824 -millennian a 1 2 \ + 1 0 02864824 -million a 1 1 & 1 1 02199177 -millionth a 1 1 & 1 0 02212591 -mimetic a 2 2 & + 2 1 01979803 01216807 -mimic a 1 2 & + 1 0 01216981 -minacious a 1 1 & 1 0 00194357 -minatory a 1 1 & 1 0 00194357 -mincing a 1 1 & 1 1 01948092 -mind-altering a 1 1 & 1 0 01777367 -mind-bending a 1 2 & ; 1 0 01777662 -mind-blowing a 2 2 & ; 2 0 01777662 00856132 -mind-boggling a 1 1 & 1 0 01285938 -mind-expanding a 1 1 & 1 0 01777526 -minded a 2 2 & ; 2 1 01683496 01292411 -mindful a 1 4 ! & = + 1 1 01977155 -mindless a 5 3 & = + 5 2 01498418 01334277 01978003 02571277 01945139 -mine_run a 1 1 & 1 0 01674926 -mined a 1 2 ! & 1 0 01503978 -mineral a 2 2 & \ 2 0 03086974 01680559 -mingy a 1 2 & + 1 0 01113807 -mini a 1 2 ! ; 1 0 01432712 -miniature a 1 1 & 1 1 01394075 -minimal a 1 2 ! & 1 1 01496021 -minimalist a 2 3 & \ ; 2 0 02764549 01532760 -minimized a 1 1 & 1 1 00883075 -minimum a 1 2 ! & 1 1 01496021 -miniscule a 1 1 & 1 0 01394180 -ministerial a 2 2 \ + 2 1 02764828 02764643 -ministrant a 1 2 & + 1 0 01197207 -minoan a 1 2 \ + 1 1 03016684 -minor a 10 5 ! & = + ; 10 5 01473083 01471723 01471368 01472225 01471954 01473826 01472509 02101240 01721401 01415219 -mint a 1 1 & 1 0 01751609 -mint-scented a 1 1 & 1 0 01056636 -minty a 1 1 \ 1 0 02764991 -minus a 2 2 ! & 2 0 01819821 00065667 -minuscular a 1 2 ^ + 1 0 01474324 -minuscule a 3 3 ! & ^ 3 0 01474324 01467534 01394180 -minute a 2 2 & + 2 1 01393483 00310716 -miotic a 1 2 \ + 1 0 02765308 -miraculous a 2 2 & + 2 1 01576551 01048976 -mired a 1 1 & 1 0 00868603 -mirky a 2 1 & 2 0 00433529 00276689 -mirrored a 1 1 & 1 0 02008917 -mirrorlike a 1 1 & 1 0 02008082 -mirthful a 2 2 & + 2 0 01367651 01265308 -mirthless a 1 1 & 1 0 01368657 -miry a 1 2 & + 1 0 02548066 -misanthropic a 2 2 & + 2 0 02463582 01138161 -misanthropical a 2 2 & + 2 0 02463582 01138161 -misappropriated a 1 1 & 1 0 01403151 -misbegot a 1 1 & 1 0 01407909 -misbegotten a 1 1 & 1 0 01407909 -misbranded a 1 1 & 1 1 01404195 -miscellaneous a 2 1 & 2 1 01199083 02506922 -mischievous a 2 2 & + 2 1 02122715 01162633 -miscible a 1 3 ! & ; 1 0 00509377 -miserable a 6 2 & + 6 3 01150205 01050890 00904745 02347086 00478872 00107384 -miserly a 1 2 & + 1 0 01113807 -misfortunate a 1 1 & 1 0 01050890 -misguided a 2 1 & 2 1 02572267 02036397 -mishnaic a 1 1 \ 1 0 02765076 -mislabeled a 1 1 & 1 0 01404195 -mislaid a 1 1 & 1 0 01449884 -misleading a 1 1 & 1 1 01224253 -mismatched a 2 3 ! & ^ 2 0 01487201 00892773 -mismated a 1 1 & 1 0 01487352 -misogynic a 1 2 & + 1 0 02464491 -misogynistic a 1 2 & + 1 0 01138316 -misogynous a 1 2 & + 1 0 01138316 -misplaced a 2 1 & 2 1 01682073 01449884 -misrelated a 1 1 & 1 1 01974904 -misrepresented a 1 1 & 1 0 01311067 -missed a 1 1 & 1 0 00535170 -misshapen a 1 2 & + 1 0 02141298 -missing a 2 1 & 2 1 01450178 00927832 -missional a 1 1 \ 1 0 02765506 -missionary a 1 1 \ 1 0 02765506 -mistakable a 1 1 & 1 0 02072341 -mistaken a 2 1 & 2 2 02036397 00633235 -mistreated a 1 1 & 1 0 00017352 -mistrustful a 1 1 & 1 0 02464277 -misty a 2 2 & + 2 1 00461609 02549569 -misty-eyed a 1 1 & 1 1 02473543 -misunderstood a 1 1 & 1 0 01379116 -misused a 1 2 ! & 1 1 02495346 -mithraic a 1 1 \ 1 0 03019322 -mithraistic a 1 2 \ + 1 0 03019322 -mitigable a 1 2 & + 1 0 01785079 -mitigated a 1 2 ! & 1 0 01519284 -mitigative a 1 2 & + 1 0 01341153 -mitigatory a 1 2 & + 1 0 01341153 -mitotic a 1 1 \ 1 0 03019483 -mitral a 2 2 \ + 2 1 03019576 03019709 -mixable a 1 3 & + ; 1 0 00509377 -mixed a 2 1 & 2 2 01199083 01326652 -mixed-up a 1 1 & 1 1 01766133 -mnemonic a 1 1 \ 1 0 02896017 -mnemotechnic a 1 1 \ 1 0 02896017 -mnemotechnical a 1 1 \ 1 0 02896017 -moated a 1 1 & 1 0 01885757 -mobbish a 1 1 & 1 0 01666927 -mobile a 5 4 ! & ^ + 5 1 02128084 01522376 01563494 00346103 00345694 -moblike a 1 1 & 1 1 01666927 -mock a 1 1 & 1 1 01117823 -mocking a 2 1 & 2 1 01995596 02123118 -mod a 1 1 & 1 0 00972902 -modal a 3 4 & \ + ; 3 1 01594811 02864551 02864400 -model a 1 1 & 1 1 02586446 -modeled a 1 1 & 1 1 02139884 -moderate a 3 5 ! & ^ = + 3 2 01531375 01509367 02402078 -moderate-size a 1 1 & 1 0 02223659 -moderate-sized a 1 1 & 1 0 02223659 -moderating a 1 2 ! & 1 0 01340990 -moderato a 1 1 & 1 0 00983499 -modern a 5 6 ! & ^ = + ; 5 4 01535709 00972902 00414354 01876261 00820975 -modern-day a 1 1 & 1 0 01536094 -moderne a 1 2 & ; 1 0 01536745 -modernised a 1 1 & 1 0 01876670 -modernistic a 1 2 & + 1 0 00972902 -modernized a 1 1 & 1 0 01876670 -modest a 7 5 ! & ^ = + 7 3 01539225 01532912 01851916 01537885 02340458 01893510 01415219 -modifiable a 1 2 ! + 1 0 00350069 -modified a 2 3 ! & ^ 2 2 01540365 01913642 -modish a 1 2 & + 1 0 00971506 -modular a 1 2 & + 1 0 02296415 -modulated a 2 2 ! & 2 0 01541448 00700214 -mohammedan a 1 2 \ + 1 0 03035113 -moire a 1 2 & + 1 0 01789359 -moist a 1 2 & + 1 1 02548820 -molal a 1 2 \ + 1 1 02900381 -molar a 4 4 ! \ + ; 4 0 02900545 02900219 02900081 01542071 -moldable a 1 2 & + 1 0 00844461 -molded a 1 1 & 1 0 02149787 -moldovan a 1 2 \ + 1 0 02963128 -moldy a 1 2 & + 1 0 01070088 -molecular a 2 4 ! \ + ; 2 1 02900700 01542252 -molten a 1 1 & 1 1 01506526 -momentaneous a 1 2 & + 1 0 01443097 -momentary a 1 2 & + 1 1 01443097 -momentous a 1 2 & + 1 1 02161982 -monacan a 1 2 \ + 1 0 02978155 -monandrous a 1 2 & + 1 0 01544580 -monarchal a 2 2 & + 2 0 01591895 00718339 -monarchic a 1 2 & + 1 0 00718339 -monarchical a 2 2 & + 2 0 01591895 00718339 -monastic a 1 2 & + 1 1 02578894 -monastical a 1 1 & 1 0 02578894 -monatomic a 1 1 \ 1 0 02884766 -monaural a 1 2 ! & 1 1 00240842 -monecious a 1 1 & 1 0 01542865 -monegasque a 1 2 \ + 1 0 02978155 -moneran a 1 1 \ 1 0 02834164 -monestrous a 1 1 & 1 0 02138034 -monetary a 1 2 \ + 1 0 02775934 -moneyed a 2 2 ! & 2 0 02026055 02022167 -moneyless a 2 2 ! & 2 0 02026197 02023914 -moneymaking a 2 2 & + 2 0 01871774 00483816 -mongol a 1 2 \ + 1 0 03087088 -mongolian a 2 2 \ + 2 0 03087424 03087088 -mongoloid a 3 2 \ ; 3 0 03087909 03087685 03087579 -monied a 1 0 1 0 02026055 -monistic a 1 2 \ + 1 0 02947019 -monitory a 1 1 & 1 0 01771124 -monkish a 1 1 & 1 1 01300961 -mono a 1 2 & ; 1 0 00241079 -monoatomic a 1 1 \ 1 0 02884766 -monocarboxylic a 1 1 \ 1 0 02765640 -monocarpic a 1 1 \ 1 0 03039556 -monochromatic a 3 4 ! & \ + 3 0 03040525 00366355 00398816 -monochrome a 1 2 & + 1 0 00398816 -monochromic a 1 1 & 1 0 00398816 -monochromous a 1 1 & 1 0 00398816 -monocled a 1 1 & 1 0 00056943 -monoclinal a 1 2 & ; 1 0 01235178 -monoclinic a 1 2 ! ; 1 0 00366025 -monoclinous a 1 3 ! & ; 1 0 01542489 -monoclonal a 1 1 \ 1 0 02765730 -monocotyledonous a 1 3 ! + ; 1 0 00753922 -monodic a 1 1 & 1 0 01544059 -monodical a 1 2 & + 1 0 01544059 -monoecious a 1 2 ! & 1 0 01542865 -monoestrous a 1 1 & 1 0 02138034 -monogamous a 1 3 ! & + 1 0 01544347 -monogenic a 1 2 & ; 1 0 01314863 -monogynic a 1 2 & + 1 0 01544688 -monogynous a 1 2 & + 1 0 01544688 -monoicous a 1 1 & 1 0 01542865 -monolingual a 1 1 ! 1 0 01545427 -monolithic a 2 1 & 2 0 01389170 00784037 -monomaniacal a 1 2 & + 1 0 01584724 -monometallic a 1 1 \ 1 0 02905356 -monomorphemic a 1 1 \ 1 0 02936627 -mononuclear a 1 2 ! ; 1 1 00241397 -mononucleate a 1 1 ; 1 0 00241397 -monophonic a 2 4 ! & + ; 2 1 00241079 01543772 -monophysite a 1 1 \ 1 0 02765825 -monophysitic a 1 2 \ + 1 0 02765825 -monoploid a 1 1 ; 1 0 01147433 -monopolistic a 1 2 & + 1 0 00513559 -monopteral a 1 1 & 1 0 00139990 -monosemous a 1 2 & + 1 0 00103953 -monosyllabic a 1 2 & + 1 0 02289018 -monotheistic a 1 2 ! + 1 0 01781243 -monotone a 2 3 & + ; 2 1 01547220 01541828 -monotonic a 2 4 ! & + ; 2 0 01547220 01541828 -monotonous a 2 1 & 2 1 00807817 01541828 -monotypic a 1 3 \ + ; 1 0 02765965 -monounsaturated a 1 1 & 1 0 00757634 -monovalent a 2 3 ! = ; 2 0 01547831 01546222 -monovular a 1 0 1 0 00292448 -monozygotic a 1 1 \ 1 0 02933692 -monstrous a 3 2 & + 3 3 01389738 01131454 00221627 -montane a 1 1 \ 1 0 02890874 -monthlong a 1 1 & 1 0 01441418 -monthly a 1 2 & + 1 0 01969707 -montserratian a 1 2 \ + 1 0 03088038 -monumental a 3 3 & \ + 3 1 02864165 02163468 01389170 -moody a 2 2 & + 2 0 01137378 00856325 -moon-faced a 1 1 & 1 0 00235823 -moon-round a 1 1 & 1 1 02042503 -moon-splashed a 1 1 & 1 1 01696502 -moonless a 1 1 ! 1 0 00278131 -moonlike a 1 1 & 1 0 02042503 -moonlit a 1 1 ! 1 1 00278006 -moonstruck a 1 2 & ; 1 0 02076234 -moony a 2 2 & + 2 0 00278006 00165585 -moorish a 1 2 \ + 1 0 03088220 -moot a 2 2 & ; 2 0 01977025 00602117 -mop-headed a 1 1 & 1 0 00614305 -moraceous a 1 2 \ + 1 0 02766085 -moral a 2 5 ! & ^ = + 2 1 01548193 01780596 -moralistic a 1 2 & + 1 1 01548925 -moravian a 1 1 \ 1 0 03040635 -morbid a 3 2 & + 3 0 02559862 01626440 01176246 -morbific a 1 1 & 1 0 01168434 -morbilliform a 1 1 \ 1 0 02766229 -mordacious a 2 2 & + 2 0 02079313 02060198 -mordant a 2 2 & + 2 0 02079507 00587376 -more a 2 3 ! ^ ; 2 2 01555133 01556355 -more_than a 1 2 ^ ; 1 0 01555133 -moresque a 1 1 \ 1 0 03088220 -morganatic a 1 1 & 1 0 01406961 -moribund a 2 1 & 2 0 00810764 00004171 -mormon a 1 2 \ ; 1 0 02955806 -moroccan a 1 2 \ + 1 1 03024420 -moronic a 1 2 & + 1 0 01841054 -morose a 1 2 & + 1 1 01137378 -morphemic a 1 2 \ + 1 1 02936410 -morphologic a 3 3 \ + ; 3 1 02949275 02949931 02949511 -morphological a 3 3 \ + ; 3 0 02949931 02949511 02949275 -morphophonemic a 1 2 \ + 1 1 02936859 -mortal a 4 5 ! & ^ + ; 4 2 01557614 01721691 01507992 00993667 -mortgaged a 1 1 & 1 0 00868815 -mortified a 2 1 & 2 0 01176973 00154270 -mortifying a 2 1 & 2 0 01803335 00752555 -mortuary a 2 2 \ + 2 0 02950471 02950371 -mosaic a 1 1 \ 1 0 03035313 -moslem a 1 2 \ + 1 0 02923510 -moss-grown a 2 1 & 2 0 01696632 00974697 -moss_green a 1 1 & 1 0 00378166 -mosstone a 1 1 & 1 0 00378166 -mossy a 2 2 & + 2 0 01696632 00974697 -most a 2 2 ! ; 2 2 01557120 01555732 -most-favored-nation a 1 1 \ 1 0 03035446 -most-valuable a 1 2 & ; 1 1 01279431 -moth-eaten a 3 1 & 3 0 02583043 02582473 01689580 -moth-resistant a 1 1 & 1 0 01774619 -mother-naked a 1 1 & 1 1 00459553 -motherless a 1 1 & 1 0 01734347 -motherlike a 1 1 & 1 0 01735252 -motherly a 1 2 & + 1 0 01735346 -mothproof a 1 1 & 1 0 01774619 -mothy a 2 2 & + 2 0 02582473 02458408 -motile a 1 3 & + ; 1 0 01523567 -motional a 1 2 \ + 1 1 03002724 -motionless a 1 2 & + 1 1 01564315 -motivated a 1 3 ! & ^ 1 1 01558385 -motivating a 1 2 & + 1 1 00324195 -motivational a 1 2 \ + 1 0 02766328 -motivative a 1 2 & + 1 0 00324195 -motive a 2 2 & + 2 1 00324481 00324195 -motiveless a 1 1 & 1 0 01559270 -motley a 2 2 & + 2 0 01199083 00398978 -motor a 2 2 & + 2 1 00334245 00324481 -motor-assisted a 1 1 & 1 0 02353849 -motored a 1 1 & 1 0 01559484 -motorial a 1 2 & ; 1 0 00333987 -motorised a 1 1 & 1 0 01559484 -motorized a 2 2 ! & 2 0 01559484 01523450 -motorless a 1 0 1 0 01559804 -mottled a 1 1 & 1 1 01788273 -mouldy a 1 2 & + 1 0 01070088 -mounded_over a 1 1 < 1 1 03150897 -mountainous a 3 2 & + 3 3 02240490 01389846 01219502 -mounted a 2 1 & 2 2 00159267 00059491 -mournful a 2 2 & + 2 1 01366157 01362387 -mourning a 1 1 & 1 0 01364817 -mouse-colored a 1 1 & 1 1 00378280 -mouse-eared a 1 1 & 1 0 00812626 -mouse-sized a 1 1 & 1 0 02223785 -mouselike a 1 1 & 1 0 00378280 -mousey a 3 3 & \ + 3 0 02766469 00378280 00252826 -mousy a 3 3 & \ + 3 1 00252826 02766469 00378280 -mouth-watering a 1 1 & 1 0 00133669 -mouthless a 1 1 ; 1 0 02310771 -mouthlike a 1 1 & 1 0 02310679 -movable a 2 2 & + 2 0 01526062 01523724 -moveable a 1 2 & + 1 0 01523724 -moved a 1 3 ! & ^ 1 0 01559903 -moving a 3 4 ! & ^ = 3 2 01561771 01560513 01565396 -mown a 1 3 ! & ; 1 0 01566027 -mozambican a 2 2 \ + 2 0 03088558 03088384 -mozartean a 1 2 \ + 1 0 03035675 -mozartian a 1 2 \ + 1 0 03035675 -much a 1 4 ! & ^ + 1 1 01553629 -muciferous a 1 1 \ 1 0 02867419 -mucilaginous a 1 2 & + 1 0 00053691 -mucinoid a 1 1 \ 1 0 02903281 -mucinous a 1 2 \ + 1 0 02903177 -mucky a 2 2 & + 2 0 02548066 00422620 -mucocutaneous a 1 1 \ 1 0 02903352 -mucoid a 1 2 \ + 1 0 02903793 -mucoidal a 1 1 \ 1 0 02903793 -mucopurulent a 1 1 \ 1 0 02903477 -mucosal a 1 2 \ + 1 0 02867505 -mucose a 1 1 \ 1 0 02903593 -mucous a 1 2 \ + 1 0 02903593 -mud-beplastered a 1 1 & 1 1 01696734 -mud-brick a 1 1 \ 1 0 03140621 -muddied a 1 1 & 1 1 01909077 -muddled a 1 1 & 1 0 00436115 -muddleheaded a 1 1 & 1 1 00435872 -muddy a 4 2 & + 4 2 02548066 00422620 01909077 00433529 -muffled a 2 1 & 2 2 01454985 01696855 -muggy a 1 2 & + 1 0 02549691 -muhammadan a 1 2 \ + 1 0 03035113 -mulish a 1 2 & + 1 0 02328297 -mullioned a 1 1 & 1 0 02482159 -multi-color a 1 1 & 1 0 00398978 -multi-colored a 1 1 & 1 0 00398978 -multi-colour a 1 1 & 1 0 00398978 -multi-coloured a 1 1 & 1 0 00398978 -multi-ethnic a 1 1 & 1 0 02249337 -multi-seeded a 1 1 & 1 0 02255394 -multi-stemmed a 1 1 & 1 0 00321614 -multi-valued a 1 1 & 1 0 00103302 -multicellular a 1 1 & 1 0 00328017 -multicolor a 1 1 & 1 0 00398978 -multicolored a 1 1 & 1 0 00398978 -multicolour a 1 1 & 1 0 00398978 -multicoloured a 1 1 & 1 0 00398978 -multicultural a 1 1 \ 1 0 02872776 -multidimensional a 1 2 ! & 1 1 00660019 -multiethnic a 1 1 & 1 0 02249337 -multifaceted a 1 1 & 1 0 02506922 -multifactorial a 1 1 & 1 0 02178837 -multifarious a 1 2 & + 1 0 02506922 -multiform a 1 2 ! & 1 0 01966853 -multilane a 1 2 ! & 1 0 02221362 -multilateral a 1 2 ! & 1 1 00237240 -multilevel a 1 1 \ 1 0 02888198 -multilingual a 1 2 ! & 1 0 01545571 -multinational a 1 1 & 1 0 01569166 -multinomial a 1 1 \ 1 0 03100751 -multinucleate a 1 2 ! \ 1 0 02882467 -multiparous a 1 3 ! & ; 1 0 02475292 -multipartite a 1 1 & 1 0 00238310 -multiphase a 1 2 \ ; 1 0 02888295 -multiple a 1 3 ! & + 1 1 02215977 -multiple-choice a 1 1 ! 1 1 02220788 -multiplex a 2 1 & 2 0 02218314 02179044 -multiplicative a 1 2 & + 1 0 02536123 -multiplied a 1 1 & 1 1 00881337 -multipotent a 1 1 & 1 0 01824653 -multipurpose a 1 1 & 1 0 02496323 -multiracial a 1 1 & 1 0 01928114 -multistorey a 1 1 & 1 0 01218548 -multistoried a 1 1 & 1 0 01218548 -multistory a 1 1 & 1 0 01218548 -multitudinous a 1 2 & + 1 1 00301951 -multivalent a 3 5 ! & = + ; 3 0 01547007 01546349 00103302 -multivariate a 1 2 & ; 1 0 02505004 -mum a 1 2 & + 1 1 00501820 -mummy-brown a 1 1 & 1 0 00383957 -mundane a 3 2 & + 3 1 01674242 02578035 01181446 -municipal a 2 3 & \ + 2 1 02697452 01038580 -munificent a 1 2 & + 1 0 01111965 -mural a 1 2 \ + 1 0 02879424 -murdered a 1 1 & 1 1 00097906 -murderous a 1 2 & + 1 0 00248837 -murine a 1 2 \ + 1 0 02867611 -murky a 2 2 & + 2 1 00433529 00276689 -murmuring a 1 1 & 1 0 01456038 -murmurous a 1 2 & + 1 0 01456221 -muscle-bound a 1 1 & 1 0 01023533 -muscovite a 1 2 \ + 1 0 03088695 -muscular a 4 4 & \ + ; 4 3 02882570 00828336 01826828 02321809 -musculoskeletal a 1 1 \ 1 0 02882726 -mushy a 2 2 & + 2 0 01154639 00854413 -musical a 4 5 ! & \ = + 4 2 02867783 01505462 01504625 01501113 -musicological a 1 2 \ + 1 0 02867945 -musing a 1 1 & 1 0 02419434 -musk-scented a 1 1 & 1 0 01056711 -musky a 1 2 & + 1 0 01053046 -musky-scented a 1 1 & 1 0 01056711 -muslim a 1 2 \ + 1 0 02923510 -mussy a 1 2 & + 1 0 02426042 -must a 1 1 & 1 0 00901547 -mustached a 1 1 & 1 1 02154334 -mustachioed a 1 1 & 1 0 02154334 -musty a 2 2 & + 2 0 01070088 01053915 -mutable a 1 2 ! + 1 0 00356339 -mutafacient a 1 1 \ 1 0 02986893 -mutagenic a 1 1 \ 1 0 02987017 -mutant a 1 2 \ + 1 0 02987454 -mutational a 1 2 \ + 1 1 02987177 -mutative a 1 2 \ + 1 0 02987332 -mute a 2 2 & + 2 1 00152285 00151855 -muted a 2 1 & 2 1 01455540 01454985 -mutilated a 1 1 & 1 0 01020282 -mutinous a 2 2 & + 2 0 02330935 00963502 -mutual a 2 2 & + 2 1 02152473 01945550 -mutualist a 1 1 & 1 0 00726445 -mutually_beneficial a 1 1 & 1 0 00726445 -mutually_exclusive a 1 1 & 1 1 00508750 -muzzle-loading a 1 1 \ 1 0 02888531 -muzzy a 2 1 & 2 0 00781644 00436115 -myalgic a 1 2 \ + 1 0 02766602 -mycenaean a 1 2 \ + 1 1 03016857 -myelic a 1 1 \ 1 0 03012707 -myelinated a 1 2 ! \ 1 0 02766699 -myelinic a 1 2 \ + 1 0 03012793 -myeloid a 2 1 \ 2 1 03012954 03013037 -myocardial a 1 2 \ + 1 1 03013124 -myoid a 1 1 \ 1 0 03013231 -myopathic a 1 2 \ + 1 0 02766952 -myopic a 2 2 & + 2 0 02157226 01896046 -myotic a 1 2 \ + 1 0 02765308 -myotonic a 1 2 \ + 1 0 03013300 -myriad a 1 2 & + 1 1 00301951 -myrmecophagous a 1 1 & 1 0 00315702 -myrmecophilous a 1 2 & ; 1 0 00726612 -myrmecophytic a 1 3 \ + ; 1 0 03025967 -mysophobic a 1 2 & + 1 0 00080213 -mysterious a 2 2 & + 2 2 00939444 00900071 -mystic a 3 3 & \ + 3 1 00900071 02863464 02863247 -mystical a 3 3 & \ + 3 1 02863247 02863464 00900071 -mystified a 1 1 & 1 0 01766550 -mystifying a 1 1 & 1 0 00939444 -mythic a 2 3 & \ + 2 1 02995972 01936184 -mythical a 1 2 & + 1 0 01936184 -mythologic a 1 2 & + 1 0 01936184 -mythological a 1 2 & + 1 1 01936184 -n-th a 1 1 & 1 0 02213144 -nacreous a 2 3 & \ + 2 0 02996123 00282020 -nagging a 1 1 & 1 1 01138610 -naiant a 1 2 & ; 1 0 01233225 -naif a 1 2 & ^ 1 0 02271544 -nail-biting a 1 1 & 1 0 02405805 -naive a 5 5 ! & ^ + ; 5 1 02271544 01912858 01637371 01309657 00937341 -naked a 5 2 & + 5 4 00457998 01886783 02354234 01705195 01698760 -naked-muzzled a 1 1 & 1 0 00211735 -naked-tailed a 1 1 & 1 0 00211827 -naked_as_a_jaybird a 1 2 & ; 1 0 00458266 -naked_as_the_day_one_was_born a 1 1 & 1 0 00459553 -naked_as_the_day_you_were_born a 1 1 & 1 0 00459553 -namby-pamby a 1 2 & + 1 0 02325816 -nameless a 1 2 & + 1 1 00120784 -namibian a 1 2 \ + 1 0 03088838 -naming a 1 1 & 1 0 00722386 -nanocephalic a 1 2 \ + 1 0 02901806 -napoleonic a 1 2 \ + 1 1 03035876 -napped a 1 1 & 1 0 01153141 -napping a 1 1 & 1 0 01932633 -nappy a 1 2 & + 1 0 01030372 -narcissistic a 1 2 & + 1 0 02098694 -narcoleptic a 1 2 \ + 1 0 02767110 -narcotic a 3 3 & \ + 3 0 02863111 02308840 01346198 -narcotised a 1 1 & 1 0 00798879 -narcotising a 1 1 & 1 0 02308840 -narcotized a 1 1 & 1 0 00798879 -narcotizing a 1 1 & 1 0 02308840 -narial a 1 2 \ + 1 0 03026652 -narrative a 1 2 & + 1 1 00498912 -narrow a 5 5 ! & ^ = + 5 3 02561888 01415480 00287640 02563310 00310716 -narrow-bodied a 1 1 & 1 0 00628519 -narrow-minded a 3 4 ! & ^ + 3 0 02155675 00287640 02091997 -narrow-mouthed a 1 1 & 1 0 02562484 -narrowed a 2 1 & 2 1 02562368 01448697 -narrowing a 2 1 & 2 0 02562909 02562235 -nary a 1 1 & 1 0 02268882 -nasal a 2 3 & \ + 2 2 02978781 01213550 -nascent a 1 3 ! & + 1 0 00003356 -nasopharyngeal a 1 2 \ + 1 0 02767250 -nasty a 4 5 ! & ^ = + 4 1 01587077 00747727 00425313 00421590 -natal a 2 1 \ 2 1 02767378 02767514 -national a 7 5 ! & ^ \ + 7 6 02988060 01567862 01105840 01861776 01038332 02988402 02988281 -national_socialist a 1 1 \ 1 0 02999718 -nationalist a 1 2 & + 1 0 01568092 -nationalistic a 2 2 & + 2 1 01740358 01568092 -nationwide a 1 1 & 1 0 00526984 -native a 4 3 ! & + 4 3 01036083 01033996 01037148 01906975 -native-born a 1 1 & 1 0 01037022 -native_american a 1 1 \ 1 0 02928066 -nativist a 2 1 \ 2 0 02988793 02988550 -nativistic a 2 2 \ + 2 0 02988793 02988550 -natriuretic a 1 2 \ + 1 0 02767596 -natty a 1 2 & + 1 0 00971933 -natural a 10 6 ! & ^ = + ; 10 4 01569965 01570892 01574036 01595050 01577771 02282985 01952643 01406180 01335708 00074594 -naturalised a 1 1 & 1 0 01831789 -naturalistic a 1 2 & + 1 0 01979985 -naturalized a 2 1 & 2 1 01035422 01831789 -naturally_occurring a 1 1 & 1 0 01847349 -naturistic a 1 2 \ + 1 0 02989069 -naughty a 2 2 & + 2 0 02132224 01128406 -nauruan a 1 2 \ + 1 0 03088968 -nauseated a 1 1 & 1 1 02545689 -nauseating a 1 2 & + 1 0 02560035 -nauseous a 2 2 & + 2 0 02560035 02545689 -nautical a 1 1 \ 1 1 02889746 -naval a 1 2 \ + 1 1 02767701 -navicular a 1 3 & + ; 1 0 02148526 -navigable a 1 2 & + 1 0 01724743 -navigational a 1 2 \ + 1 0 02909006 -nazarene a 2 1 \ 2 0 02768002 02767872 -nazi a 2 1 \ 2 2 02999904 02999718 -neandertal a 2 3 & \ + 2 0 03089121 01949859 -neanderthal a 2 3 & \ + 2 1 01949859 03089121 -neanderthalian a 1 2 \ + 1 0 03089121 -neapolitan a 1 2 \ + 1 0 02970442 -near a 6 4 ! & = + 6 1 00444519 02033556 01573762 01113225 00452883 00451872 -near-blind a 1 1 & 1 1 02159969 -nearby a 1 1 & 1 1 00445169 -nearsighted a 1 2 ! + 1 1 02157226 -neat a 6 3 & + ; 6 4 02423284 02423432 00850648 00061664 01123879 00757120 -nebular a 2 4 & \ + ; 2 0 03089377 00462129 -nebulose a 1 1 & 1 0 00781974 -nebulous a 3 4 & \ + ; 3 1 00781974 03089377 00702245 -necessary a 2 5 ! & ^ = + 2 2 01580050 00343552 -necessitous a 1 2 & + 1 0 02023430 -neck-deep a 1 1 & 1 0 01516605 -neck_and_neck a 1 1 & 1 0 00551416 -necked a 1 2 ! & 1 0 01209003 -neckless a 1 1 ! 1 0 01209679 -necklike a 1 1 & 1 0 01209470 -necromantic a 2 3 & \ + 2 0 02910789 01576845 -necromantical a 1 2 \ + 1 0 02910789 -necrotic a 1 2 \ + 1 1 02982602 -nectar-rich a 1 1 \ 1 0 03089713 -nectariferous a 1 2 \ + 1 0 03089615 -nectarous a 1 2 & + 1 0 02395910 -nee a 1 1 & 1 0 01315339 -needed a 1 1 & 1 1 01580775 -needful a 1 1 & 1 0 01580775 -needle-shaped a 1 1 & 1 0 02167133 -needled a 1 1 & 1 0 02168904 -needlelike a 1 1 & 1 0 01810189 -needless a 1 1 & 1 1 01582049 -needy a 2 2 & + 2 0 02023430 00710909 -nefarious a 1 2 & + 1 0 02515001 -negative a 9 6 ! & ^ = + ; 9 3 01818234 00075515 01128508 01820861 01820338 01819976 00587890 00358534 00065667 -negatively_charged a 1 1 & 1 1 00358534 -neglected a 2 1 & 2 2 01608656 00308720 -neglectful a 2 2 & + 2 0 00755876 00755220 -negligent a 1 4 ! & ^ + 1 1 00754873 -negligible a 2 1 & 2 1 01496462 02502994 -negotiable a 3 2 & + 3 0 01724916 01024400 00093556 -negro a 1 1 & 1 1 00242832 -negroid a 1 1 & 1 1 00243039 -neighboring a 1 1 & 1 0 00566342 -neighborly a 1 2 & + 1 0 01076435 -neighbourly a 1 2 & + 1 0 01076435 -neither a 1 1 & 1 0 00524607 -neo a 1 2 & ; 1 1 01536276 -neo-darwinian a 1 2 \ + 1 0 03013726 -neo-lamarckian a 1 1 \ 1 0 03014030 -neoclassic a 1 1 & 1 0 00414080 -neoclassical a 1 2 & + 1 0 00414080 -neoclassicist a 1 1 \ 1 0 02834992 -neoclassicistic a 1 2 \ + 1 0 02834992 -neocortical a 1 2 \ + 1 1 03010781 -neoliberal a 1 2 & + 1 1 00576011 -neolithic a 1 1 \ 1 0 03090086 -neonatal a 1 1 \ 1 0 02768106 -neoplastic a 1 2 \ + 1 0 02768271 -neotenic a 1 2 \ + 1 0 02768421 -neotenous a 1 2 \ + 1 0 02768421 -nepalese a 1 2 \ + 1 0 02971839 -nepali a 1 2 \ + 1 0 02971839 -nephritic a 2 2 \ + 2 0 02883710 02883599 -nephrotoxic a 1 2 & + 1 0 02450269 -neritic a 2 2 & \ 2 0 02973836 00692415 -nerve-racking a 1 1 & 1 0 00090408 -nerve-wracking a 1 1 & 1 0 00090408 -nerveless a 2 2 & + 2 1 00530772 01827766 -nervous a 5 3 & \ + 5 2 02406908 02456157 02904518 00919813 00919155 -nervy a 3 2 & + 3 0 02406370 00251373 00204779 -nescient a 2 2 & + 2 0 01306087 00831225 -nestled a 1 1 & 1 0 00449889 -nestorian a 1 2 \ + 1 0 02768611 -net a 2 2 ! & 2 2 01582461 01579128 -nether a 3 1 & 3 0 02441132 01303946 01207546 -nethermost a 1 1 & 1 0 02440881 -netlike a 1 1 & 1 1 02007067 -nett a 1 1 & 1 0 01582461 -netted a 1 1 & 1 0 02007067 -nettled a 1 1 & 1 0 01806106 -nettlesome a 2 1 & 2 1 00089550 01136541 -networklike a 1 1 & 1 0 02007322 -neural a 2 2 \ + 2 0 02904518 02894119 -neuralgic a 1 2 \ + 1 0 03090456 -neurasthenic a 1 2 \ + 1 0 03090612 -neuroanatomic a 1 2 \ + 1 0 02914414 -neuroanatomical a 1 2 \ + 1 0 02914414 -neurobiological a 1 2 \ + 1 0 02666294 -neuroendocrine a 1 1 \ 1 0 02882943 -neurogenic a 1 1 \ 1 0 02883112 -neuroglial a 1 2 \ + 1 0 02883210 -neurologic a 1 2 \ + 1 0 02917893 -neurological a 1 2 \ + 1 1 02917893 -neuromatous a 1 2 \ + 1 0 02883344 -neuromotor a 1 1 & 1 0 00334555 -neuromuscular a 1 1 \ 1 1 02883459 -neuronal a 1 2 \ + 1 1 02894119 -neuronic a 1 2 \ + 1 0 02894119 -neurophysiological a 1 2 \ + 1 0 02908887 -neuropsychiatric a 1 2 \ + 1 1 03011858 -neuropsychological a 1 2 \ + 1 0 02908768 -neurotic a 2 4 ! & \ + 2 2 02976525 01583040 -neurotoxic a 1 2 \ + 1 0 02883805 -neurotropic a 1 2 \ ; 1 0 02883914 -neuter a 2 3 ! & + 2 0 01486327 02136522 -neutered a 1 1 & 1 0 02136970 -neutral a 7 6 ! & ^ = + ; 7 3 01615625 01930004 00732160 01818992 00386392 00408284 00359160 -neutral-colored a 1 1 & 1 0 00399479 -neutral-coloured a 1 1 & 1 0 00399479 -neutralised a 1 1 & 1 0 01819152 -neutralized a 1 1 & 1 1 01819152 -never-ending a 1 1 & 1 0 00595299 -never-say-die a 1 1 & 1 0 00570099 -new a 11 6 ! & ^ = + ; 11 5 01640850 01687167 00937186 00128733 02070491 02584699 01687965 00821208 00820975 00818008 00024996 -new-made a 1 1 & 1 0 01068513 -new-mown a 1 1 & 1 0 01566223 -new-sprung a 1 1 & 1 0 01641921 -new_caledonian a 1 2 \ + 1 0 02768740 -new_zealander a 1 1 \ 1 0 03131480 -newborn a 2 1 & 2 2 01649184 01641921 -newfangled a 1 1 & 1 0 01687965 -newfound a 1 1 & 1 0 01642081 -newsless a 2 1 & 2 0 01309428 01305704 -newsworthy a 1 2 & + 1 0 01344834 -newsy a 2 2 & + 2 0 01305244 00496422 -newtonian a 1 2 \ + 1 1 03036014 -next a 3 1 & 3 3 00127948 00447472 01294975 -next-to-last a 2 1 & 2 0 01015392 01015185 -nibbed a 1 1 & 1 1 01810720 -nicaean a 1 2 \ + 1 0 03090782 -nicaraguan a 1 2 \ + 1 0 03090939 -nice a 5 5 ! & ^ = + 5 3 01586342 01993408 01838916 00984333 00641460 -nicene a 1 1 \ 1 0 03090782 -nickel-and-dime a 2 1 & 2 0 01281695 00935259 -nidicolous a 1 1 ! 1 0 01587950 -nidifugous a 1 1 ! 1 0 01588065 -niffy a 1 3 & + ; 1 0 01054367 -nifty a 1 2 & ; 1 0 01123879 -nigerian a 2 2 \ + 2 0 03091307 03091080 -nigerien a 1 1 \ 1 0 03091080 -niggardly a 1 2 & + 1 0 01113636 -niggling a 1 2 & ; 1 0 01280908 -nigh a 2 2 & = 2 0 00444519 02033556 -nighted a 1 1 & 1 1 01901496 -nightlong a 1 1 & 1 0 01441530 -nightly a 1 2 & + 1 0 01968352 -nightmarish a 1 1 & 1 1 00194817 -nihilistic a 1 2 \ + 1 1 02911757 -nilotic a 2 2 \ + 2 0 03091618 03091464 -nilpotent a 1 1 \ 1 1 03012377 -nimble a 2 2 & + 2 1 00032733 01334833 -nimble-fingered a 1 1 & 1 0 00062740 -niminy-piminy a 1 1 & 1 0 01948092 -nine a 1 1 & 1 1 02187161 -nine-fold a 1 1 & 1 0 02220099 -nine-membered a 1 1 & 1 0 01503633 -nine-sided a 1 1 & 1 0 00238788 -ninefold a 1 1 & 1 0 02220099 -ninepenny a 1 1 & 1 0 02223881 -nineteen a 1 2 & + 1 1 02188205 -nineteenth a 1 1 & 1 1 02204472 -ninetieth a 1 1 & 1 0 02209197 -ninety a 1 1 & 1 1 02195145 -ninety-eight a 1 1 & 1 0 02195911 -ninety-fifth a 1 1 & 1 0 02209306 -ninety-five a 1 1 & 1 0 02195620 -ninety-four a 1 1 & 1 0 02195523 -ninety-nine a 1 1 & 1 0 02196012 -ninety-one a 1 1 & 1 0 02195234 -ninety-seven a 1 1 & 1 0 02195811 -ninety-six a 1 1 & 1 0 02195716 -ninety-three a 1 1 & 1 0 02195423 -ninety-two a 1 1 & 1 0 02195328 -ninth a 1 1 & 1 1 02203249 -nip_and_tuck a 1 1 & 1 0 00551416 -nipping a 2 1 & 2 0 02079313 01252714 -nipponese a 1 1 + 1 0 02965043 -nippy a 2 2 & + 2 0 02398129 01252714 -nisi a 1 1 & 1 0 00551695 -nitid a 1 1 & 1 0 00279092 -nitric a 1 2 \ + 1 0 03091996 -nitrogen-bearing a 1 0 1 0 03091861 -nitrogen-fixing a 1 1 \ 1 0 03091751 -nitrogenous a 1 2 \ + 1 0 03091861 -nitrous a 1 2 \ + 1 0 03091996 -nitwitted a 1 1 & 1 0 00441365 -no a 1 2 ! & 1 1 02268485 -no-account a 1 1 & 1 1 02502578 -no-count a 1 1 & 1 0 02502578 -no-frills a 1 2 & ; 1 0 00901650 -no-go a 1 1 ! 1 0 01123002 -no-good a 2 2 & ; 2 0 02502578 01129021 -no-hit a 1 2 & ; 1 1 02332421 -no-nonsense a 1 1 & 1 1 00765537 -no-win a 1 1 & 1 0 02334854 -noachian a 1 1 \ 1 0 02768850 -noble a 4 5 ! & ^ = + 4 3 01283508 01590115 01588172 01930244 -noble-minded a 1 2 & + 1 0 01588619 -nocent a 1 1 & 1 0 01162817 -nociceptive a 1 1 & 1 1 02105055 -noctilucent a 1 1 & 1 0 00282557 -nocturnal a 2 3 ! \ ; 2 1 00678923 02931826 -nodding a 1 2 & ; 1 0 01238486 -nodular a 2 3 & \ + 2 1 03092198 02141867 -nodulated a 1 1 & 1 0 02141867 -noduled a 1 1 & 1 0 02141867 -nodulose a 1 1 & 1 0 02142063 -noetic a 1 2 & + 1 0 01780343 -noiseless a 1 2 & + 1 0 01919282 -noisome a 2 2 & + 2 0 02560035 01053634 -noisy a 2 4 ! & ^ + 2 1 01919931 00407766 -nomadic a 1 1 & 1 0 02128084 -nominal a 6 4 ! & \ ; 6 2 02769128 01496592 02768958 01939784 01099810 01043374 -nominalistic a 1 2 \ + 1 0 02769358 -nominated a 1 1 & 1 0 00846625 -nominative a 3 4 & \ + ; 3 0 02769463 01099810 00846625 -nomothetic a 1 2 ! ; 1 0 02593861 -non-aromatic a 1 1 & 1 0 01057958 -non-automatic a 1 1 & 1 0 00182961 -non-buoyant a 1 1 & 1 0 01186107 -non-conducting a 1 0 1 0 00558232 -non-elective a 1 1 & 1 0 00846789 -non-finite a 1 1 ; 1 0 01008745 -non-invertible a 1 1 ! 1 0 02595357 -non-living a 1 2 & = 1 0 00118238 -non-metric a 1 1 \ 1 0 02995864 -non-miscible a 1 2 & ; 1 0 00509735 -non-negotiable a 1 1 & 1 0 00094239 -non-paying a 1 1 & 1 0 01710421 -non-poisonous a 2 1 & 2 0 02450919 00829146 -non-profit-making a 1 1 & 1 0 00484680 -non-resinous a 1 1 & 1 0 00055142 -non-resiny a 1 1 & 1 0 00055142 -non-slave a 1 1 & 1 0 01065941 -non-u a 1 2 & ; 1 0 00259820 -non-water-soluble a 1 1 & 1 0 02266043 -non-white a 1 1 & 1 0 00242575 -non-zero a 1 1 & 1 0 02186265 -non_compos_mentis a 1 1 & 1 0 02076988 -nonabsorbent a 1 4 ! & = + 1 0 00007813 -nonabsorptive a 1 2 & = 1 0 00007813 -nonadaptive a 1 1 & 1 0 00046792 -nonaddictive a 1 1 ! 1 0 00047954 -nonadhesive a 1 2 ! & 1 0 00054908 -nonadjacent a 1 1 & 1 0 00446525 -nonadsorbent a 1 1 ! 1 0 00008595 -nonadsorptive a 1 0 1 0 00008595 -nonaged a 1 1 ; 1 0 01471954 -nonagenarian a 1 2 & + 1 0 01646120 -nonaggressive a 1 2 & ^ 1 0 00084956 -nonalcoholic a 1 1 ! 1 0 01159531 -nonaligned a 1 2 ! & 1 0 00732037 -nonappointive a 1 1 & 1 0 00846349 -nonarbitrable a 1 1 ! 1 0 00140437 -nonarbitrary a 1 2 ! & 1 0 00720082 -nonarboreal a 1 1 ! 1 0 00141947 -nonassertive a 1 1 & 1 1 00157080 -nonassociative a 1 1 ! 1 0 00157849 -nonastringent a 1 2 ! = 1 0 00190023 -nonautonomous a 1 1 & 1 0 01065401 -nonbearing a 1 1 ! 1 0 00217563 -nonbelligerent a 1 1 & 1 0 01741563 -noncaloric a 1 1 \ 1 0 02675626 -noncarbonated a 1 1 & 1 0 02277182 -noncausal a 1 0 1 0 00325197 -noncausative a 1 1 ! 1 0 00325197 -noncellular a 1 2 ! & 1 0 00328128 -nonchalant a 1 2 & + 1 1 00545746 -nonchristian a 1 1 & 1 0 00411599 -nonchurchgoing a 1 1 & 1 1 01784602 -noncivilised a 1 2 & ^ 1 0 00412567 -noncivilized a 1 3 ! & ^ 1 0 00412567 -nonclassical a 1 3 ! & ; 1 0 00414227 -noncollapsable a 1 1 & 1 0 00466365 -noncollapsible a 1 2 ! & 1 0 00466365 -noncolumned a 1 2 ! & 1 0 00141522 -noncombatant a 2 2 & + 2 0 01518295 01517755 -noncombinative a 1 2 ! & 1 0 00472810 -noncombining a 1 1 & 1 0 00472914 -noncombustible a 1 2 ! & 1 0 00474043 -noncommercial a 1 3 ! & = 1 0 00484333 -noncommissioned a 1 1 ! 1 1 00485593 -noncommittal a 1 1 & 1 0 00702444 -noncommunicable a 1 1 & 1 0 01303636 -noncompetitive a 1 2 ! & 1 1 00513165 -noncompliant a 1 3 & ^ + 1 0 00695523 -noncomprehensive a 1 2 ! & 1 0 00529075 -nonconcentric a 1 1 & 1 0 00543200 -nonconducting a 1 0 1 0 00558232 -nonconductive a 1 1 ! 1 0 00558232 -nonconforming a 1 1 & 1 0 01691826 -nonconformist a 2 2 ! & 2 0 00610249 01691826 -nonconscious a 2 1 & 2 0 00572845 00118451 -noncontagious a 1 1 & 1 0 01303636 -noncontentious a 1 1 & 1 0 00604520 -noncontinuous a 1 2 & ^ 1 0 00596769 -noncontroversial a 1 1 & 1 0 00602721 -nonconvergent a 1 1 & 1 0 01718732 -noncritical a 3 5 ! & ^ = ; 3 0 00652533 00651697 00650351 -noncrucial a 2 3 ! & = 2 0 00656771 00651697 -noncrystalline a 1 2 ! & 1 0 00269486 -noncurrent a 1 4 ! & ^ = 1 0 00668571 -noncyclic a 2 3 ! & = 2 0 00676457 01970604 -noncyclical a 1 1 = 1 0 00676457 -nondeductible a 1 1 ! 1 0 00689970 -nondenominational a 1 1 & 1 0 02092987 -nondescript a 1 2 & + 1 1 01673590 -nondigestible a 1 1 & 1 0 01183274 -nondisposable a 2 2 ! & 2 0 00778161 00776822 -none a 1 1 & 1 0 02269039 -nonechoic a 1 1 ! 1 0 01217919 -noneffervescent a 2 2 ! & 2 0 02277485 02276964 -nonelected a 1 1 & 1 0 00846789 -nonelective a 1 1 & 1 0 00846789 -nonenterprising a 1 2 & ^ 1 0 00885415 -nonenzymatic a 1 1 \ 1 1 03005155 -nonequivalent a 1 2 & + 1 1 00892976 -nonessential a 1 2 & + 1 0 00903264 -nonexempt a 2 3 ! & ^ 2 0 02400218 02366200 -nonexistent a 1 5 ! & ^ = + 1 1 00927578 -nonexplorative a 1 0 1 0 00878704 -nonexploratory a 1 1 ! 1 0 00878704 -nonexplosive a 1 1 ! 1 0 00475008 -nonextant a 2 2 & ^ 2 0 00929164 00928238 -nonextensile a 1 1 ! 1 0 00945019 -nonfat a 1 2 ! & 1 0 00992955 -nonfatal a 1 2 ! & 1 0 00994210 -nonfictional a 1 2 ! \ 1 0 02727912 -nonfigurative a 1 1 & 1 0 01980557 -nonfinancial a 1 2 ! \ 1 0 02848119 -nonfissile a 1 1 ! 1 0 01016806 -nonfissionable a 1 2 ! ; 1 0 01017048 -nonflammable a 1 1 & 1 0 00474541 -nonflavored a 1 1 & 1 0 02400002 -nonflavoured a 1 1 & 1 0 02400002 -nonflowering a 1 1 & 1 0 02597951 -nonfunctional a 2 4 ! & ^ = 2 1 01090993 01092142 -nonglutinous a 1 1 & 1 0 00055041 -nongranular a 1 1 & 1 0 02233282 -nongregarious a 1 1 & 1 0 02253205 -nonhairy a 1 1 & 1 0 00211916 -nonharmonic a 1 2 ! \ 1 0 02737981 -nonhereditary a 1 1 & 1 0 01316019 -nonheritable a 1 1 & 1 0 01315507 -nonhierarchic a 1 1 & 1 0 01204318 -nonhierarchical a 1 2 ! & 1 0 01204318 -nonhuman a 1 3 ! & = 1 0 01260023 -nonimitative a 1 1 ! 1 0 01217485 -nonimmune a 1 1 & 1 0 02362178 -nonindulgent a 1 4 ! & ^ + 1 0 01299888 -nonindustrial a 1 2 ! & 1 0 01302368 -noninfectious a 1 2 ! & 1 0 01303544 -noninflammatory a 1 1 & 1 0 01898051 -noninheritable a 1 2 ! & 1 0 01315507 -noninstitutional a 1 1 ! 1 0 01231837 -noninstitutionalised a 1 0 1 0 01231070 -noninstitutionalized a 1 1 ! 1 0 01231070 -nonintegrated a 1 1 ! 1 0 01329007 -nonintellectual a 1 4 ! & ^ = 1 0 01333718 -noninterchangeable a 1 2 & ; 1 0 02373981 -nonintersecting a 1 1 & 1 0 01718732 -noninvasive a 1 2 ! ; 1 0 01356515 -nonionic a 2 2 ! \ 2 1 00356211 02751367 -nonionised a 1 0 1 0 00356211 -nonionized a 1 1 ! 1 0 00356211 -nonjudgmental a 1 1 ! 1 0 00649405 -nonkosher a 1 2 & ; 1 0 00428121 -nonleaded a 1 1 & 1 0 01397251 -nonlegal a 1 1 & 1 0 01403469 -nonlethal a 1 1 & 1 0 00994326 -nonlexical a 1 1 \ 1 0 02886767 -nonlinear a 1 2 ! ; 1 0 01417790 -nonlinguistic a 1 2 ! \ 1 1 02842704 -nonliteral a 1 2 & ^ 1 0 01419149 -nonliterary a 1 1 & 1 0 01047144 -nonliterate a 1 1 & 1 0 00413312 -nonliving a 1 2 & = 1 0 00118238 -nonmagnetic a 1 1 ! 1 0 01470913 -nonmandatory a 1 1 & 1 0 00847972 -nonmaterial a 1 3 & ^ = 1 0 00627410 -nonmeaningful a 1 2 & ^ 1 0 01497736 -nonmechanical a 2 2 ! & 2 0 01500766 00064365 -nonmechanistic a 1 1 & 1 0 01500876 -nonmedicinal a 1 1 & 1 0 01168632 -nonmetal a 1 2 & + 1 0 01529293 -nonmetallic a 1 2 ! & 1 1 01529293 -nonmetamorphic a 1 2 ! & 1 0 01531180 -nonmigratory a 1 1 ! 1 0 02129136 -nonmilitary a 1 1 & 1 0 01518955 -nonmodern a 1 3 ! & ^ 1 0 01536911 -nonmonotonic a 1 2 ! ; 1 0 01547721 -nonmotile a 1 2 & ; 1 0 01525502 -nonmoving a 1 4 ! & ^ = 1 0 01564073 -nonmusical a 2 1 = 2 0 01505786 01505318 -nonnative a 3 2 ! & 3 0 01037405 01035559 01035277 -nonnatural a 1 1 & 1 0 01577086 -nonnegative a 1 2 & ; 1 0 01819592 -nonnomadic a 1 1 & 1 0 02126694 -nonnormative a 1 1 & 1 0 02297586 -nonobjective a 1 1 & 1 0 01980557 -nonobligatory a 1 1 & 1 0 00847972 -nonobservant a 1 1 & 1 1 01784723 -nonopening a 1 1 & 1 0 01654299 -nonoperational a 1 2 ! ; 1 0 01660857 -nonoscillatory a 1 1 & 1 0 01970686 -nonparallel a 2 2 & ; 2 0 02380358 01720091 -nonparametric a 1 2 \ ; 1 0 02911488 -nonparasitic a 1 2 & ; 1 0 00728993 -nonpareil a 1 1 & 1 0 00505410 -nonparticulate a 1 1 ! 1 1 01724456 -nonpartisan a 1 3 ! & + 1 0 00731292 -nonpartizan a 1 1 & 1 0 00731292 -nonpasserine a 1 2 ! \ 1 0 02775175 -nonperiodic a 1 1 & 1 0 01970464 -nonpersonal a 1 1 & 1 0 01769744 -nonphotosynthetic a 1 2 ! \ 1 0 02777831 -nonphysical a 1 1 & 1 0 00627643 -nonplused a 1 1 & 1 0 01765926 -nonplussed a 1 1 & 1 0 01765926 -nonpoisonous a 2 1 & 2 0 02450919 00829146 -nonpolar a 1 0 1 0 02751367 -nonpolitical a 1 2 ! & 1 1 01815129 -nonporous a 1 1 ! 1 0 00329695 -nonpregnant a 1 1 ! 1 0 00173694 -nonprehensile a 1 1 ! 1 0 00129029 -nonprescription a 1 2 ! ; 1 0 01846204 -nonproductive a 1 1 & 1 1 01867189 -nonprofessional a 1 2 ! & 1 0 01869370 -nonprofit a 1 1 & 1 0 00484680 -nonprognosticative a 1 1 & 1 0 01883719 -nonprogressive a 1 1 & 1 0 00574884 -nonproprietary a 1 2 ! & 1 0 01109359 -nonprotractile a 1 0 1 0 00945019 -nonpsychoactive a 1 1 ! 1 0 01778073 -nonpublic a 1 1 & 1 0 01860207 -nonpurulent a 1 1 & 1 0 02116397 -nonracial a 1 1 ! 1 0 01928381 -nonracist a 1 1 & 1 0 00286470 -nonradioactive a 1 1 ! 1 0 00427255 -nonrandom a 1 2 ! & 1 0 01925158 -nonrational a 2 1 & 2 0 01926921 01431471 -nonreciprocal a 1 2 ! & 1 0 01946911 -nonreciprocating a 1 1 & 1 0 01947021 -nonrecreational a 1 1 & 1 0 01869126 -nonreflecting a 1 1 & 1 0 02008380 -nonreflective a 1 2 ! & 1 0 02008380 -nonrenewable a 1 0 1 0 01963117 -nonrepetitive a 1 1 ! 1 0 01964775 -nonrepresentational a 1 4 ! & ^ ; 1 0 01980250 -nonrepresentative a 1 1 ! 1 0 01982538 -nonresident a 1 1 ! 1 1 02125601 -nonresidential a 1 1 ! 1 0 00485252 -nonresilient a 1 1 & 1 0 00845856 -nonresinous a 1 1 & 1 0 00055142 -nonresiny a 1 1 & 1 0 00055142 -nonresistant a 2 2 & + 2 0 02362178 00697089 -nonresonant a 1 1 & 1 0 02011142 -nonrestrictive a 1 2 & ; 1 0 02005460 -nonreticulate a 1 1 ! 1 0 02007413 -nonretractable a 1 0 1 0 02007775 -nonretractile a 1 1 ! 1 0 02007775 -nonreturnable a 1 1 ! 1 0 00777238 -nonreversible a 1 1 ! 1 0 01760009 -nonrhythmic a 1 1 & 1 0 02021332 -nonrigid a 1 2 ! ; 1 0 01027076 -nonruminant a 1 2 ! \ 1 0 02790134 -nonsectarian a 1 2 ! & 1 0 02092129 -nonsegmental a 1 2 & ; 1 0 02478589 -nonsegregated a 1 1 & 1 0 01326516 -nonsense a 1 1 & 1 1 01498594 -nonsensical a 2 2 & + 2 0 02570643 01498594 -nonsensitive a 1 1 & 1 0 00416651 -nonsexual a 1 2 & = 1 0 02135913 -nonsignificant a 1 2 ! ; 1 0 02165925 -nonskid a 1 1 & 1 0 02236423 -nonslip a 1 1 & 1 0 02236532 -nonslippery a 1 3 ! & ^ 1 0 02236271 -nonsocial a 1 1 & 1 0 02253205 -nonsovereign a 1 1 & 1 0 01065401 -nonspatial a 1 2 ! \ 1 0 02841422 -nonspeaking a 1 1 ! 1 0 00153239 -nonspecific a 1 2 ! ; 1 1 01105620 -nonspherical a 1 2 ! \ 1 0 02800851 -nonstandard a 3 4 ! & = ; 3 0 02298285 02297166 02295867 -nonsteroidal a 1 2 ! \ 1 0 02803740 -nonstick a 1 1 & 1 0 02235330 -nonstop a 2 1 & 2 0 00761449 00595147 -nonstructural a 1 1 & 1 0 01091160 -nonsubjective a 1 1 & 1 0 01615180 -nonsubmergible a 1 0 1 0 02473033 -nonsubmersible a 1 1 ! 1 0 02473033 -nonsuppurative a 1 2 ! \ 1 0 02805872 -nonsurgical a 1 2 ! \ 1 0 02889157 -nonsweet a 1 2 & ^ 1 0 02338327 -nonsyllabic a 2 2 ! & 2 0 02289738 02288490 -nonsymbiotic a 1 2 & ; 1 0 00728993 -nonsynchronous a 1 1 & 1 0 02380225 -nonsynthetic a 1 1 & 1 0 01679907 -nontaxable a 1 3 ! & ^ 1 0 02400929 -nontechnical a 1 1 ! 1 0 01109096 -nontelescopic a 1 1 & 1 0 00466486 -nontelescoping a 1 1 & 1 0 00466486 -nonterritorial a 1 2 ! ; 1 0 02409712 -nonthermal a 1 2 ! \ 1 0 02814758 -nontoxic a 2 3 ! & ^ 2 0 02450640 00829146 -nontraditional a 1 1 ! 1 0 00611938 -nontransferable a 1 1 & 1 0 00094324 -nontranslational a 1 2 ! \ 1 0 03092376 -nontransmissible a 2 1 & 2 0 01316019 01303636 -nonturbulent a 1 1 & 1 0 00088792 -nonuniform a 1 1 & 1 0 01199663 -nonunion a 1 2 ! & 1 0 02474674 -nonunionised a 1 1 & 1 0 02475001 -nonunionized a 1 1 & 1 0 02475001 -nonuple a 1 1 & 1 0 02220099 -nonvenomous a 1 1 & 1 0 02451014 -nonverbal a 3 1 & 3 1 00497964 00499183 00499062 -nonviable a 1 1 & 1 0 00098043 -nonviolent a 2 4 ! & ^ + 2 0 02512922 00249576 -nonviscid a 1 1 & 1 0 00055041 -nonvisual a 1 1 & 1 0 02518370 -nonvolatile a 1 1 ! 1 1 02520077 -nonvolatilisable a 1 0 1 0 02520077 -nonvolatilizable a 1 0 1 0 02520077 -nonvoluntary a 1 2 & ^ 1 0 02521353 -nonwashable a 1 1 ! 1 0 02534245 -nonwoody a 1 2 ! & 1 0 02576657 -nordic a 3 2 & \ 3 0 03092661 03092527 00244324 -normal a 4 6 ! & ^ = + ; 4 2 01593649 01599445 01598319 01720549 -norman a 2 1 \ 2 0 03092958 03092824 -normative a 2 2 \ ; 2 0 02996239 00732456 -normotensive a 1 1 ! 1 0 01599340 -norse a 2 1 \ 2 0 02960130 02959912 -north a 1 3 ! & = 1 1 01600333 -north-central a 2 1 & 2 0 01604566 01600888 -north-polar a 1 2 & + 1 0 02444475 -north_african a 1 1 \ 1 0 02996373 -north_american a 1 1 \ 1 0 02928566 -north_korean a 1 2 \ + 1 1 02967990 -north_vietnamese a 1 1 \ 1 0 02769692 -northbound a 1 1 & 1 0 01600713 -northeast a 2 1 & 2 1 01601592 01601763 -northeasterly a 2 2 & + 2 0 01601763 01601592 -northeastern a 2 1 & 2 0 01601592 00827556 -northeastward a 1 1 & 1 0 01601901 -northerly a 2 2 & + 2 1 01601297 01601069 -northern a 4 4 ! & = + 4 3 01605753 01601297 01601069 01604226 -northernmost a 1 1 & 1 0 01601462 -northmost a 1 1 & 1 0 01601462 -northward a 1 1 & 1 0 01600713 -northwest a 2 1 & 2 1 01601981 01602112 -northwesterly a 2 2 & + 2 0 01602112 01601981 -northwestern a 2 1 & 2 0 01601981 00826658 -northwestward a 1 1 & 1 0 01602250 -norwegian a 1 2 \ + 1 0 02959912 -nosed a 1 2 ! & 1 1 01607293 -noseless a 1 1 ! 1 0 01607909 -nosey a 1 2 & + 1 0 00665156 -nosocomial a 1 1 \ 1 0 02769811 -nosohusial a 1 0 1 0 03147163 -nostalgic a 1 2 & + 1 0 00889098 -nosy a 1 2 & + 1 0 00665156 -not_bad a 1 2 & ; 1 0 01123879 -not_guilty a 1 1 & 1 0 01320474 -not_intrusive a 1 1 = 1 0 01352895 -not_surprised a 1 0 1 0 02359308 -notable a 2 2 & + 2 2 02586957 01375831 -notched a 2 1 & 2 0 02247785 02246903 -noted a 2 1 & 2 1 01375831 01287972 -noteworthy a 2 1 & 2 1 02586957 02163602 -noticeable a 4 4 ! & = + 4 2 01286799 01746995 01614778 02323204 -noticed a 1 2 ! & 1 0 01607978 -notifiable a 1 2 & + 1 0 00471698 -notional a 4 2 & + 4 0 01936528 00861818 00643598 00012071 -notorious a 1 1 & 1 1 01984411 -nourished a 1 2 ! & 1 1 02300227 -nourishing a 1 1 & 1 0 02557719 -nouveau-riche a 1 2 & + 1 0 01850862 -novel a 2 1 & 2 1 01687167 01642245 -noxious a 1 4 ! & ^ + 1 0 01611067 -nth a 1 1 & 1 0 02213144 -nubbly a 1 2 & + 1 0 02240795 -nubby a 1 2 & + 1 0 02240795 -nubile a 1 1 & 1 1 01489325 -nuclear a 4 4 ! & \ ; 4 4 00610532 02862444 02862629 00331259 -nucleate a 1 2 \ ; 1 0 02862797 -nucleated a 1 2 \ ; 1 0 02862797 -nude a 1 2 & + 1 1 00457998 -nugatory a 1 1 & 1 0 02503216 -null a 1 3 & + ; 1 1 02500590 -nullified a 1 1 & 1 0 02500497 -numb a 3 2 & + 3 1 02103333 02107386 00080698 -numberless a 1 1 & 1 0 00301951 -numbing a 1 1 & 1 1 02108547 -numerable a 1 2 & + 1 0 00301589 -numeral a 1 1 \ 1 0 02769933 -numerate a 1 3 ! ^ = 1 0 00832075 -numeric a 2 2 & \ 2 0 02769933 01915586 -numerical a 3 4 ! & \ + 3 2 01915586 02769933 02230795 -numerological a 1 2 \ + 1 0 02770123 -numerous a 1 2 & + 1 1 01552419 -numidian a 1 2 \ + 1 0 02770229 -numinous a 2 3 & \ + 2 1 02056001 02770360 -nuptial a 1 1 \ 1 0 02843495 -nursed a 1 1 & 1 0 00267268 -nurtural a 1 2 & + 1 0 01316127 -nurturant a 1 1 & 1 0 00506743 -nut-bearing a 1 1 & 1 0 01866243 -nutbrown a 1 1 & 1 0 00245860 -nutlike a 2 1 & 2 0 02398255 02042599 -nutmeg-shaped a 1 1 & 1 0 02148648 -nutrient a 1 2 & + 1 1 02557719 -nutritional a 1 2 \ + 1 1 03002351 -nutritionary a 1 2 \ + 1 0 03002351 -nutritious a 1 2 & + 1 0 02557719 -nutritive a 1 2 & + 1 1 02557719 -nuts a 1 1 & 1 0 02074929 -nutty a 2 2 & + 2 0 02398255 02074929 -nymphomaniac a 1 2 & + 1 0 01584857 -nymphomaniacal a 1 2 & + 1 0 01584857 -o.k. a 1 2 & ; 1 1 02081114 -oafish a 1 1 & 1 0 01949859 -oaken a 1 1 & 1 1 02576223 -oaten a 1 1 \ 1 0 03130585 -obdurate a 2 1 & 2 1 01957712 01158180 -obedient a 1 5 ! & ^ = + 1 1 01612053 -obese a 1 2 & + 1 0 00987180 -objectionable a 2 2 & + 2 1 01626874 00018850 -objective a 4 5 ! & \ + ; 4 1 01615180 02861997 01934026 00013442 -oblanceolate a 1 1 & 1 0 02169467 -oblate a 1 3 ! ^ + 1 0 02049918 -obligate a 1 2 ! ; 1 0 01617675 -obligated a 1 3 ! & ^ 1 1 01616474 -obligational a 1 1 \ 1 1 03137958 -obligatory a 2 3 ! & ^ 2 0 00848074 01580968 -obliged a 1 1 & 1 1 01616891 -obliging a 1 2 & + 1 0 00021110 -oblique a 2 4 ! & ^ + 2 1 01718867 00768098 -oblique-angled a 1 1 & 1 0 01720198 -obliterable a 1 2 & + 1 0 00898132 -obliterate a 1 1 & 1 0 00735088 -obliterated a 1 1 & 1 0 00735088 -oblivious a 2 2 & + 2 1 00192026 00165943 -oblong a 2 2 & + 2 0 02169591 01435507 -obnoxious a 1 2 & + 1 1 01626874 -obovate a 1 1 & 1 0 02169728 -obscene a 3 2 & + 3 1 00684163 01625063 00425740 -obscure a 6 2 & + 6 2 00431004 00534250 02089377 01122595 00581637 00567860 -obsequious a 2 2 & + 2 1 02181231 00790540 -observable a 1 2 & + 1 1 01287486 -observant a 3 2 & + 3 1 00164462 01745517 01395821 -observational a 1 1 & 1 1 00859949 -observed a 1 1 & 1 1 01610484 -observing a 1 1 & 1 0 01745517 -obsessed a 2 1 & 2 1 00544478 00599468 -obsessional a 1 2 & + 1 0 01585022 -obsessive a 1 2 & + 1 0 01585022 -obsessive-compulsive a 1 2 & + 1 1 01585312 -obsolescent a 1 2 & + 1 1 00669367 -obsolete a 1 2 & + 1 0 00669021 -obstetric a 1 2 \ + 1 0 02917694 -obstetrical a 1 2 \ + 1 0 02917694 -obstinate a 3 2 & ^ 3 0 02326695 01957712 01613839 -obstreperous a 2 2 & + 2 0 00696207 00083876 -obstructed a 1 3 ! & ^ 1 0 01620509 -obstructive a 1 2 & + 1 0 01764351 -obtainable a 1 2 & + 1 1 00184363 -obtrusive a 2 3 ! & + 2 0 01614778 01353866 -obtuse a 4 3 ! & + 4 0 01811905 02169359 00772492 00440579 -obviating a 1 1 & 1 0 01765132 -obvious a 1 5 ! & ^ = + 1 1 01618053 -occasional a 4 1 & 4 2 01067415 01842468 01961205 00594004 -occidental a 1 2 & + 1 0 00825375 -occipital a 1 2 \ + 1 1 02934994 -occluded a 2 1 & 2 2 01621807 01330307 -occlusive a 1 2 \ + 1 1 02950154 -occult a 2 2 & + 2 0 02518470 00900071 -occupational a 1 1 \ 1 1 02894591 -occupied a 4 2 ! & 4 1 01623187 01624267 01311814 00293611 -occurrent a 1 2 & + 1 0 00667641 -oceangoing a 1 1 & 1 0 01381074 -oceanic a 3 3 & \ + 3 0 02890216 01416081 01381196 -ocellated a 1 1 \ 1 0 02869368 -ocher a 1 1 & 1 0 00378498 -ochre a 1 1 & 1 0 00378498 -octagonal a 1 1 \ 1 0 02834862 -octal a 1 1 \ 1 0 02869437 -octangular a 1 1 \ 1 0 02834862 -octogenarian a 1 1 & 1 0 01646278 -octosyllabic a 1 2 & + 1 0 02289151 -octuple a 1 1 & 1 0 02219988 -ocular a 3 2 & \ 3 1 02869823 02869563 02516148 -odd a 6 4 ! & + ; 6 4 00913454 00490845 00916383 00968010 01487496 00926505 -odd-job a 1 1 & 1 0 01089949 -odd-pinnate a 1 1 & 1 0 02172995 -oddish a 1 1 & 1 0 00969264 -odds-on a 1 1 & 1 0 00893118 -odious a 1 2 & + 1 1 01460679 -odoriferous a 3 1 & 3 0 01628200 01054504 01052611 -odorless a 1 3 ! & = 1 0 01057775 -odorous a 3 4 ! & = + 3 0 01055073 01054504 01052611 -odourless a 1 2 & = 1 0 01057775 -oecumenic a 1 1 & 1 0 02092460 -oecumenical a 2 2 & + 2 0 02092460 00527188 -of_age a 1 1 & 1 1 01644541 -of_import a 1 3 & ^ = 1 0 01275562 -of_sound_mind a 1 1 & 1 0 02073678 -of_the_essence a 1 1 & 1 0 01276150 -of_unsound_mind a 1 1 & 1 0 02076988 -off a 5 2 ! & 5 2 01651469 02082924 01651896 02369869 00035254 -off-and-on a 1 1 & 1 0 00290593 -off-base a 1 1 & 1 0 00332269 -off-center a 1 1 & 1 0 00543494 -off-centered a 1 1 & 1 0 00543494 -off-color a 2 1 & 2 0 02394793 00424787 -off-colour a 1 1 & 1 0 02394793 -off-guard a 1 1 & 1 0 01932633 -off-key a 1 1 & 1 0 01164420 -off-limits a 1 1 & 1 0 02002683 -off-line a 2 2 ! ; 2 0 01651044 01650752 -off-putting a 2 1 & 2 0 01809541 00171292 -off-site a 1 1 ! 1 0 01637766 -off-street a 1 1 ! 1 0 01638178 -off-the-cuff a 1 1 & 1 0 01845451 -off-the-peg a 1 1 & 1 0 00672932 -off-the-rack a 1 1 & 1 0 00672932 -off-the-shelf a 1 1 & 1 0 00672932 -off-the-shoulder a 1 1 & 1 0 00459746 -off-the-wall a 1 1 & 1 0 00608791 -off-white a 1 1 & 1 0 00392460 -off_guard a 1 1 & 1 1 01932633 -off_her_guard a 1 1 & 1 0 01932633 -off_his_guard a 1 1 & 1 0 01932633 -off_one's_guard a 1 1 & 1 0 01932633 -off_the_beaten_track a 1 1 & 1 1 00444220 -off_the_hook a 1 1 & 1 0 02058379 -off_your_guard a 1 1 & 1 0 01932633 -offbeat a 1 1 & 1 1 00609564 -offenceless a 1 1 & 1 0 01628839 -offended a 1 1 & 1 0 01807075 -offending a 1 2 ! & 1 0 01631025 -offenseless a 1 1 & 1 0 01628839 -offensive a 7 5 ! & ^ = + 7 1 01631386 01628946 01628302 01627965 01624633 00908672 02560035 -offhand a 2 1 & 2 0 01845451 00313217 -offhanded a 2 1 & 2 0 01845451 00313217 -official a 5 6 ! & ^ \ + ; 5 3 01632537 02991463 01634736 01959918 01636363 -officious a 1 2 & + 1 0 01352561 -offish a 1 1 & 1 0 00134562 -offshore a 2 2 ! & 2 0 00464399 01381340 -offside a 1 2 ! ; 1 0 01652158 -offsides a 1 1 ; 1 0 01652158 -offstage a 2 2 ! & 2 0 01637904 01860328 -ohmic a 1 2 \ + 1 1 02950264 -oil-bearing a 1 1 & 1 0 01866336 -oil-fired a 1 1 & 1 0 01099134 -oil-soluble a 1 1 & 1 0 02265719 -oiled a 1 1 ! 1 1 01955031 -oily a 4 2 & + 4 3 00992432 02181432 01699838 00422168 -ok a 1 2 & ; 1 0 02081114 -okay a 1 2 & ; 1 1 02081114 -old a 8 6 ! & ^ = + ; 8 4 01643620 01638438 00966357 00936297 01729566 01116118 00820219 00127137 -old-fashioned a 1 2 & + 1 1 00974159 -old-hat a 2 1 & 2 0 01688757 00974159 -old-line a 1 1 & 1 0 02030425 -old-maidish a 1 1 & 1 0 00985297 -old-time a 1 1 & 1 0 00973192 -old-womanish a 1 1 & 1 0 00985297 -old-world a 1 1 & 1 0 01537628 -olde_worlde a 1 1 & 1 0 00973192 -olden a 1 1 & 1 0 01730745 -older a 3 1 & 3 3 01644225 02100031 00936297 -oldish a 1 1 & 1 0 01646366 -oldline a 1 1 & 1 0 02030425 -oleaceous a 1 2 \ + 1 0 02770479 -oleaginous a 2 2 & + 2 0 02181432 00992432 -oleophilic a 1 3 ! & ; 1 1 00492332 -oleophobic a 1 1 ! 1 1 00492595 -olfactive a 1 1 \ 1 0 02770629 -olfactory a 1 1 \ 1 0 02770629 -oligarchic a 1 2 \ + 1 0 02770742 -oligarchical a 1 2 \ + 1 0 02770742 -olive a 1 1 & 1 1 00378782 -olive-brown a 1 1 & 1 0 00378591 -olive-colored a 1 1 & 1 0 00399606 -olive-coloured a 1 1 & 1 0 00399606 -olive-drab a 1 1 & 1 0 00378687 -olive-gray a 1 1 & 1 0 00390630 -olive-grey a 1 1 & 1 0 00390630 -olive-like a 1 1 & 1 0 02046828 -olive-sized a 1 1 & 1 0 01394316 -olivelike a 1 1 & 1 0 02046828 -olympian a 4 3 & \ + 4 0 03093379 03093184 02339791 01676026 -olympic a 2 2 \ + 2 1 03093076 03093379 -omani a 1 2 \ + 1 0 03093551 -ominous a 2 2 & + 2 1 00194357 00178126 -omissible a 1 2 & + 1 0 01857410 -omissive a 1 2 \ + 1 0 02765190 -omnibus a 1 2 & + 1 0 00528041 -omnidirectional a 1 2 ! \ 1 0 02714141 -omnifarious a 1 1 & 1 0 02507209 -omnipotent a 1 2 & + 1 0 01826186 -omnipresent a 1 2 & + 1 0 01847515 -omniscient a 1 2 & + 1 1 02569454 -omnivorous a 1 2 ! & 1 0 00315109 -on a 2 2 ! & 2 1 01651196 01651741 -on-going a 1 1 & 1 0 00667822 -on-key a 1 1 & 1 0 01163759 -on-line a 3 3 ! & ; 3 0 01650883 01650401 00667936 -on-site a 1 2 ! & 1 1 01637454 -on-street a 1 1 ! 1 0 01638311 -on-the-job a 1 1 \ 1 0 02771328 -on-the-scene a 1 1 & 1 1 01637583 -on-the-spot a 1 1 & 1 1 01637583 -on_fire a 1 1 & 1 1 00475308 -on_guard a 1 1 & 1 1 00162661 -on_hand a 1 1 & 1 1 00185020 -on_one's_guard a 1 1 & 1 0 00162661 -on_tap a 2 1 & 2 0 00185363 00185160 -on_the_button a 1 1 & 1 0 01839099 -on_the_fence a 1 1 & 1 0 00686356 -on_the_go a 1 1 & 1 0 00033359 -on_the_hook a 1 1 & 1 1 02060359 -on_the_job a 1 1 & 1 1 00864461 -on_the_loose a 1 1 & 1 0 01062114 -on_the_nose a 1 1 & 1 0 01839099 -on_the_offensive a 1 1 & 1 0 01630033 -on_the_table a 1 1 & 1 0 01024400 -on_trial a 1 1 & 1 1 01894576 -on_your_guard a 1 1 & 1 0 00162661 -oncologic a 1 2 \ + 1 0 02913243 -oncological a 1 2 \ + 1 0 02913243 -oncoming a 1 1 & 1 1 01562416 -one a 7 2 & + 7 5 02186338 02477885 02064427 01677623 00702642 01330506 00505410 -one-armed a 1 1 & 1 0 00146693 -one-celled a 1 1 & 1 0 00328401 -one-dimensional a 2 1 & 2 0 00659715 00658259 -one-eared a 1 1 & 1 0 00241004 -one-eyed a 1 1 & 1 0 00954233 -one-handed a 1 1 & 1 0 02027906 -one-horse a 1 1 & 1 1 00637455 -one-humped a 1 1 \ 1 0 02770951 -one-man a 1 1 & 1 0 02214518 -one-member a 1 2 & ; 1 0 02215769 -one-on-one a 2 2 & ; 2 0 01860465 00494198 -one-party a 1 1 & 1 0 00237156 -one-person a 1 1 & 1 0 02214518 -one-piece a 1 1 ! 1 0 01649876 -one-seed a 1 1 & 1 0 02255736 -one-seeded a 1 1 & 1 0 02255736 -one-sided a 3 1 & 3 0 01760009 00236989 01723091 -one-time a 1 1 & 1 0 01729566 -one-to-one a 1 1 & 1 0 01487048 -one-way a 1 1 & 1 0 00234378 -one-winged a 1 1 & 1 0 02567738 -one-woman a 1 1 & 1 0 02214518 -one-year a 1 1 ; 1 0 00678024 -one-year-old a 1 1 & 1 0 01647601 -one_and_only a 1 1 & 1 0 00505410 -one_hundred a 1 1 & 1 1 02196107 -one_hundred_eighty a 1 1 & 1 0 02198069 -one_hundred_fifteen a 1 1 & 1 0 02196543 -one_hundred_fifty a 1 1 & 1 0 02197364 -one_hundred_fifty-five a 1 1 & 1 0 02197476 -one_hundred_five a 1 1 & 1 0 02196333 -one_hundred_forty a 1 1 & 1 0 02197130 -one_hundred_forty-five a 1 1 & 1 0 02197244 -one_hundred_ninety a 1 1 & 1 0 02198187 -one_hundred_one a 1 1 & 1 0 02196211 -one_hundred_seventy a 1 1 & 1 0 02197828 -one_hundred_seventy-five a 1 1 & 1 0 02197944 -one_hundred_sixty a 1 1 & 1 0 02197595 -one_hundred_sixty-five a 1 1 & 1 0 02197708 -one_hundred_ten a 1 1 & 1 0 02196439 -one_hundred_thirty a 1 1 & 1 0 02196891 -one_hundred_thirty-five a 1 1 & 1 0 02197007 -one_hundred_twenty a 1 1 & 1 0 02196657 -one_hundred_twenty-five a 1 1 & 1 0 02196769 -one_thousand a 1 1 & 1 1 02198752 -oneiric a 1 1 \ 1 0 02771079 -onerous a 1 2 & + 1 0 01189109 -onetime a 1 1 & 1 1 01729566 -ongoing a 1 1 & 1 0 00667822 -online a 3 2 & ; 3 0 01650883 01650401 00667936 -only a 2 1 & 2 0 02214736 01862697 -onomastic a 1 2 \ + 1 0 02771174 -onomatopoeic a 2 1 \ 2 0 03137397 01217579 -onomatopoeical a 1 1 + 1 0 01217579 -onomatopoetic a 2 2 \ + 2 0 03137397 01217579 -onshore a 2 1 & 2 1 00464195 00125068 -onside a 1 2 ! ; 1 0 01652033 -onstage a 1 1 ! 1 0 01638053 -ontogenetic a 1 2 \ + 1 0 02942769 -ontological a 1 2 \ + 1 0 02920464 -onymous a 1 2 ! & 1 0 00121034 -oozing a 1 1 & 1 0 01397892 -oozy a 1 2 & + 1 0 01397892 -opalescent a 1 2 & + 1 1 00282020 -opaline a 1 1 & 1 0 00282020 -opaque a 2 5 ! & ^ = + 2 1 00433115 00535293 -open a 21 5 ! & ^ + ; 21 14 01652380 01652902 01886620 01861910 01654377 00185509 02003357 02523664 02232112 01659117 01659999 02130821 02087178 01449354 01985247 01704761 02474876 02361540 01622505 01310273 00036254 -open-air a 1 1 & 1 0 01692512 -open-and-shut a 1 1 & 1 0 01619475 -open-chain a 1 2 & ; 1 0 00677313 -open-collared a 1 1 & 1 1 00297250 -open-ended a 3 1 & 3 2 02003604 00740958 00346246 -open-eyed a 1 1 & 1 0 00091764 -open-hearth a 1 1 \ 1 0 02889271 -open-minded a 1 1 & 1 0 00287498 -open-plan a 1 1 & 1 0 02003477 -open-source a 1 2 \ ; 1 0 03093695 -opencast a 1 2 & ; 1 0 02471602 -opencut a 1 2 & ; 1 0 02471602 -opened a 3 1 & 3 2 01654377 01653135 02087178 -openhanded a 1 2 & + 1 0 01111418 -openhearted a 2 1 & 2 0 01372948 00499315 -opening a 1 3 ! & + 1 1 01008947 -openmouthed a 1 2 & ; 1 1 02358762 -operable a 3 2 ! & 3 0 01169817 02124253 01835663 -operant a 1 2 & + 1 0 00832609 -operatic a 1 2 \ + 1 1 02912383 -operating a 2 2 & < 2 1 03150985 00833018 -operational a 4 4 ! & \ ; 4 4 03014288 02124253 01660267 00833018 -operationalist a 1 1 \ 1 0 02912250 -operative a 4 3 ! & + 4 1 00832347 01169194 02164050 01091728 -operculate a 1 1 \ 1 0 02974507 -operculated a 1 1 \ 1 0 02974507 -operose a 1 2 & + 1 0 00836544 -ophthalmic a 2 1 \ 2 0 02889516 02889406 -opinionated a 1 1 & 1 1 00288362 -opinionative a 1 2 & + 1 0 00288362 -opisthognathous a 1 2 ! & 1 0 01875829 -opponent a 1 2 & + 1 0 01246148 -opportune a 1 4 ! & ^ + 1 0 01660994 -opportunist a 1 2 & + 1 0 00931974 -opportunistic a 1 2 & + 1 1 00931974 -opposable a 1 1 ! 1 0 01662510 -opposed a 1 2 ! & 1 1 01662756 -opposing a 1 1 & 1 1 01246148 -opposite a 6 4 ! & + ; 6 6 02070887 01663201 02071139 02070711 02067913 02066312 -oppositive a 1 1 & 1 0 00564504 -oppressed a 1 1 & 1 0 00869972 -oppressive a 2 2 & + 2 0 01189998 00788474 -opprobrious a 2 2 & + 2 0 01628531 01227546 -optative a 2 3 \ + ; 2 0 03094006 03093862 -opthalmic a 1 1 \ 1 0 02869823 -optic a 2 2 \ + 2 0 02869823 02869563 -optical a 3 2 \ + 3 2 02861859 02869563 02869823 -optimal a 1 2 & + 1 1 00228645 -optimistic a 2 4 ! & ^ + 2 1 01663571 01817908 -optimum a 1 2 & + 1 1 00228645 -optional a 1 2 ! & 1 0 00847399 -opulent a 1 2 & + 1 1 02024928 -oracular a 3 3 & \ + 3 0 03000868 01882621 00102930 -oral a 4 5 ! & \ + ; 4 1 02284169 02771485 01665184 00110252 -orange a 1 2 & + 1 1 00378892 -orange-brown a 1 1 & 1 0 00379181 -orange-colored a 1 1 & 1 0 00399715 -orange-coloured a 1 1 & 1 0 00399715 -orange-flowered a 1 1 & 1 0 00399840 -orange-hued a 1 1 & 1 0 00399715 -orange-red a 1 1 & 1 0 00379084 -orange-sized a 1 1 & 1 0 02223977 -orangish a 1 1 & 1 0 00378892 -orangish-red a 1 1 & 1 0 00379084 -oratorical a 1 2 & + 1 1 02017933 -orb-weaving a 1 1 \ 1 0 02771648 -orbicular a 2 1 & 2 0 02169844 02041229 -orbiculate a 1 1 & 1 0 02169844 -orbital a 2 2 \ + 2 1 02979285 02870178 -orbitual a 1 1 & 1 0 00676271 -orchestral a 1 2 \ + 1 1 02956137 -orchestrated a 1 1 \ 1 0 02956272 -ordained a 2 1 & 2 0 02129718 00573542 -ordered a 3 3 ! & ^ 3 1 01667519 01681028 00464513 -orderly a 2 3 ! & + 2 1 01666126 02423284 -ordinal a 2 4 ! & \ + 2 0 02996466 02200035 -ordinary a 2 5 ! & ^ = + 2 2 01672607 00486290 -organic a 6 4 ! & + ; 6 1 01679055 01679459 01093142 02558767 01166875 00901345 -organicistic a 1 2 \ + 1 0 02986392 -organisational a 1 1 \ 1 0 02898276 -organised a 1 1 & 1 0 02474476 -organismal a 1 2 \ + 1 0 02986509 -organismic a 1 2 \ + 1 0 02986509 -organizational a 1 1 \ 1 1 02898276 -organized a 3 3 ! & ^ 3 2 01670221 01668340 02474476 -orgiastic a 2 2 & + 2 0 02134162 00797706 -oriental a 1 2 & + 1 1 00825807 -orientated a 1 2 & ^ 1 0 01682229 -orientating a 1 2 & ^ 1 0 01684426 -oriented a 1 3 ! & ^ 1 1 01682229 -orienting a 1 3 ! & ^ 1 0 01684426 -original a 4 5 ! & ^ = + 4 3 01012503 01853039 01686439 00699207 -originative a 2 4 & ^ = + 2 0 00643250 01687363 -ornamental a 1 2 & + 1 0 01091234 -ornate a 1 2 & + 1 0 02017141 -ornery a 1 2 & + 1 1 01135673 -ornithological a 1 2 \ + 1 0 03094928 -oropharyngeal a 1 2 \ + 1 0 02771740 -orotund a 2 1 & 2 0 02016881 01457486 -orphaned a 1 1 & 1 0 01734171 -orphic a 2 3 & \ + 2 0 02771866 00900071 -orthodontic a 1 2 \ + 1 0 02915815 -orthodox a 3 6 ! & ^ \ = ; 3 2 02953420 01689880 02953598 -orthogonal a 3 2 & + 3 0 01976532 01974979 01720642 -orthographic a 1 2 \ + 1 1 02909952 -orthomolecular a 1 1 & 1 0 01166993 -orthopaedic a 1 1 \ 1 0 03095068 -orthopedic a 1 1 \ 1 1 03095068 -orthopedical a 1 2 \ + 1 0 03095068 -orthoptic a 1 2 \ + 1 0 03095257 -orthostatic a 1 1 & 1 0 01236716 -orthotropous a 1 2 ! ; 1 0 01029563 -orwellian a 1 2 \ + 1 0 02772012 -oscan-speaking a 1 1 & 1 0 00499441 -oscillating a 1 1 & 1 0 01967917 -oscillatory a 1 2 & + 1 0 01967917 -oscine a 1 2 \ + 1 0 03138122 -oscitant a 1 2 & + 1 0 00165766 -osmotic a 1 2 \ + 1 0 03000608 -osseous a 1 1 \ 1 1 03138224 -ossicular a 1 2 \ + 1 0 03138396 -ossiculate a 1 1 \ 1 0 03138396 -ossiferous a 1 1 \ 1 0 03138545 -ossified a 1 1 & 1 0 01025397 -osteal a 2 1 \ 2 0 03138664 03138224 -ostensible a 2 1 & 2 0 01873985 01117942 -ostensive a 2 1 & 2 0 01325193 01117942 -ostentatious a 2 3 ! & + 2 1 01848355 02394975 -otc a 1 1 & 1 0 01418647 -other a 4 5 ! & ^ = + 4 2 02069355 01730820 01729384 00969333 -otherwise a 1 1 & 1 0 02071301 -otherworldly a 1 2 & + 1 0 01577086 -otic a 1 1 \ 1 0 02979028 -otiose a 3 1 & 3 0 02503305 02497471 00294579 -ototoxic a 1 1 & 1 0 02450364 -ottoman a 1 1 \ 1 0 02970241 -out a 10 3 ! & ; 10 3 02061487 00100213 01823948 02334973 01761375 01295946 00974908 00952653 00949797 00572714 -out-and-out a 1 1 & 1 1 00520892 -out-of-bounds a 2 1 & 2 2 00956049 02002683 -out-of-date a 1 1 & 1 0 00669138 -out-of-door a 1 2 & ^ 1 0 01692222 -out-of-pocket a 1 1 & 1 0 00137373 -out-of-school a 1 1 & 1 1 01063490 -out-of-the-way a 3 1 & 3 1 00490979 01881365 00444220 -out-of-town a 1 1 & 1 1 00446605 -out_of_gear a 1 1 & 1 0 01101264 -out_of_place a 1 1 & 1 1 00138782 -out_of_play a 1 2 & ; 1 0 00100506 -out_of_practice a 1 1 & 1 0 02230205 -out_of_print a 1 1 & 1 0 00598536 -out_of_reach a 1 1 & 1 0 00020410 -out_of_sight a 1 1 & 1 1 02517817 -out_of_stock a 1 1 & 1 0 00186490 -out_of_the_blue a 1 1 & 1 1 00930765 -out_of_the_question a 1 1 & 1 1 02418692 -out_of_true a 1 1 & 1 0 00912637 -out_of_use a 1 1 & 1 0 01653857 -out_of_whack a 1 2 & ; 1 0 01092727 -out_of_work a 1 1 & 1 0 00865007 -out_or_keeping a 1 1 & 1 0 00562909 -out_to a 1 1 & 1 1 01990172 -outback a 1 2 & + 1 0 00020103 -outboard a 1 3 ! & + 1 0 01291391 -outbound a 1 1 & 1 0 01295660 -outbred a 1 3 ! ^ ; 1 0 01291937 -outcast a 1 2 & + 1 0 02528440 -outcaste a 1 3 & + ; 1 0 02528566 -outclassed a 1 1 & 1 1 02341132 -outdated a 1 1 & 1 1 00669138 -outdoor a 2 4 ! & ^ \ 2 2 01692222 03095372 -outdoorsy a 1 2 & + 1 0 01692640 -outer a 3 4 ! & = ; 3 2 00949548 00951163 00948384 -outermost a 1 1 & 1 0 00949883 -outfitted a 2 1 & 2 0 01097484 01094855 -outflowing a 1 1 & 1 0 01295837 -outgoing a 3 4 ! & ^ = 3 1 01295443 01294185 02258249 -outlandish a 1 2 & + 1 0 00608791 -outlaw a 2 2 & + 2 0 01403760 01396333 -outlawed a 1 1 & 1 0 01403760 -outlined a 1 1 & 1 1 00780712 -outlying a 1 1 & 1 1 00444399 -outmoded a 1 1 & 1 1 00974159 -outmost a 1 1 & 1 0 00949883 -outraged a 1 1 & 1 1 00115494 -outrageous a 2 2 & + 2 1 01626562 01534282 -outre a 1 1 & 1 0 00608791 -outrigged a 1 1 & 1 0 01093631 -outright a 1 1 & 1 1 01914407 -outside a 10 4 ! & ^ ; 10 7 01692969 01350225 00948514 01692222 01347749 00952761 01037885 01413084 00950002 00023655 -outsize a 1 2 & + 1 0 01389993 -outsized a 1 1 & 1 0 01389993 -outspoken a 2 2 & + 2 1 00499530 00764484 -outspread a 1 1 & 1 0 01431938 -outstanding a 4 1 & 4 2 02343762 00580805 01710543 01278818 -outstretched a 1 1 & 1 0 01432070 -outward a 2 5 ! & ^ = + 2 1 00950706 01295660 -outward-bound a 1 1 & 1 0 01295660 -outward-developing a 1 2 & ; 1 0 00332524 -outward-moving a 1 1 & 1 0 00332723 -oval a 1 2 & + 1 1 02046199 -oval-bodied a 1 1 & 1 0 00628610 -oval-fruited a 1 1 & 1 0 01082038 -oval-shaped a 1 1 & 1 0 02046199 -ovarian a 1 2 \ + 1 0 02932685 -ovate a 2 1 & 2 0 02169940 02046199 -oven-ready a 1 1 & 1 0 01844141 -oven-shaped a 1 1 & 1 0 02148728 -over a 1 1 & 1 1 01003277 -over-embellished a 1 1 & 1 0 02017372 -over-the-counter a 2 2 & ; 2 0 01846204 01418647 -over-the-hill a 1 1 & 1 0 01646435 -over-the-top a 1 1 & 1 0 01534648 -overabundant a 1 2 & + 1 0 00015720 -overactive a 1 2 & + 1 1 00033206 -overage a 1 1 & 1 0 01646435 -overaged a 1 1 & 1 0 01646435 -overall a 2 1 & 2 2 01102451 01582946 -overambitious a 1 1 & 1 0 00104942 -overanxious a 1 1 & 1 0 02093703 -overarm a 1 2 & ; 1 0 02470734 -overawed a 1 1 & 1 0 02014972 -overbearing a 2 2 & + 2 1 00787357 01891109 -overblown a 2 1 & 2 0 01849960 01489454 -overbold a 1 1 & 1 0 00205295 -overburdened a 1 1 & 1 0 00869690 -overbusy a 1 1 & 1 0 00293819 -overcareful a 1 1 & 1 0 00310943 -overcast a 1 2 & + 1 1 00461971 -overcautious a 1 1 & 1 0 00326296 -overconfident a 1 2 & + 1 1 00339288 -overcredulous a 1 1 & 1 0 00646890 -overcritical a 1 1 & 1 0 00648345 -overcurious a 1 1 & 1 1 00665502 -overdelicate a 1 1 & 1 0 00706974 -overdone a 2 1 & 2 1 01533806 00617864 -overdressed a 1 1 & 1 0 00456355 -overdue a 1 1 & 1 0 00137120 -overeager a 1 1 & 1 0 00811707 -overemotional a 1 1 & 1 0 00856511 -overenthusiastic a 1 1 & 1 0 00886980 -overexcited a 1 1 & 1 0 00920422 -overfamiliar a 1 1 & 1 0 00205150 -overfed a 1 1 & 1 0 02300714 -overflowing a 1 1 & 1 0 01083754 -overfond a 1 1 & 1 0 01466136 -overfull a 1 1 & 1 0 01085167 -overgenerous a 1 1 & 1 0 01111965 -overgreedy a 1 1 & 1 0 00011665 -overgrown a 2 1 & 2 1 01697235 02574092 -overhand a 2 3 ! & ; 2 1 02470734 00674021 -overhanded a 1 2 & ; 1 0 02470734 -overhasty a 1 1 & 1 0 01270868 -overhead a 1 1 ! 1 1 02472563 -overheated a 1 1 & 1 1 01249621 -overindulgent a 1 2 & + 1 0 01299385 -overjealous a 1 1 & 1 0 02464105 -overjoyed a 1 1 & 1 0 01363936 -overladen a 1 1 & 1 0 01085848 -overland a 1 1 & 1 0 00125170 -overlarge a 1 1 & 1 0 01390130 -overloaded a 1 1 & 1 1 01085848 -overlooked a 1 1 & 1 1 01608848 -overlooking a 1 1 & 1 0 01205232 -overlying a 1 1 & 1 0 02349149 -overmodest a 1 1 & 1 0 01538118 -overmuch a 1 2 & + 1 0 01553925 -overnice a 1 1 & 1 0 00984333 -overnight a 1 1 & 1 1 01441530 -overpowering a 1 1 & 1 0 01989446 -overpriced a 1 1 & 1 1 00934082 -overprotective a 1 1 & 1 1 01888450 -overproud a 1 1 & 1 0 01892433 -overreaching a 1 1 & 1 0 00251529 -overrefined a 1 1 & 1 0 01948958 -overriding a 1 1 & 1 1 00792202 -overripe a 1 1 & 1 0 01493807 -oversea a 1 1 & 1 0 01381473 -overseas a 2 1 & 2 1 01037763 01381473 -oversensitive a 1 2 & + 1 0 02106651 -overserious a 1 1 & 1 0 02119639 -oversewn a 1 1 & 1 0 00674021 -oversexed a 1 1 & 1 0 02134286 -overshot a 1 1 & 1 0 01354308 -oversize a 1 1 & 1 0 01389993 -oversized a 1 1 & 1 1 01389993 -oversolicitous a 1 1 & 1 0 00164598 -overstated a 1 1 & 1 0 01533806 -overstrung a 2 1 & 2 0 02406370 02403401 -overstuffed a 1 1 & 1 0 01154775 -oversubscribed a 1 1 & 1 0 02259380 -oversuspicious a 1 1 & 1 0 02464615 -overt a 1 3 ! & ^ 1 1 01704761 -overturned a 1 1 & 1 1 02467766 -overvaliant a 1 1 & 1 1 00251681 -overweening a 2 1 & 2 0 02000968 01540102 -overweight a 1 2 & + 1 1 00987769 -overwhelming a 2 1 & 2 1 01989446 01511152 -overwrought a 1 1 & 1 0 00085870 -overzealous a 1 1 & 1 0 01726859 -oviform a 1 1 & 1 0 02046199 -ovine a 1 1 \ 1 0 02932802 -oviparous a 1 3 ! & ; 1 0 02519171 -ovoid a 1 2 & + 1 0 02046199 -ovoviviparous a 1 2 ! ; 1 0 02519399 -ovular a 2 2 \ + 2 0 02933027 02932931 -owing a 1 1 & 1 1 01710543 -owlish a 1 1 & 1 0 02569945 -own a 1 1 & 1 1 01768724 -owned a 1 2 ! & 1 1 00360306 -owner-occupied a 1 1 & 1 0 01311973 -ownerless a 1 0 1 0 00360569 -ox-eyed a 1 1 & 1 0 00954390 -oxford-gray a 1 1 & 1 0 00390725 -oxford-grey a 1 1 & 1 0 00390725 -oxidative a 1 2 & + 1 0 00068883 -oxidised a 1 1 < 1 1 03151122 -oxidizable a 1 1 & 1 0 01929202 -oxidized a 1 1 < 1 0 03151122 -oxonian a 2 2 \ + 2 0 03095813 03095588 -p.m. a 1 1 & 1 0 00130701 -pachydermal a 1 2 \ + 1 0 02772186 -pachydermatous a 2 3 & \ + 2 0 02772186 02107162 -pachydermic a 1 2 \ + 1 0 02772186 -pachydermous a 1 2 \ + 1 0 02772186 -pacific a 3 3 & \ + 3 0 02946644 01741669 00760149 -pacifist a 1 2 & + 1 0 01741953 -pacifistic a 1 2 & + 1 0 01741953 -packable a 1 1 \ 1 0 02772465 -packaged a 1 2 ! & 1 0 01739178 -packed a 2 1 & 2 1 00560100 00502922 -padded a 1 1 & 1 1 01153703 -paddle-shaped a 1 1 & 1 0 02148805 -paederastic a 1 2 & + 1 0 01202367 -paediatric a 1 2 \ + 1 0 02893637 -pagan a 1 2 & + 1 0 01784401 -paid a 3 2 ! & 3 2 01708249 01869126 01871473 -paid-up a 1 1 & 1 0 01709245 -pain-free a 1 1 & 1 0 01713250 -pained a 1 1 & 1 0 01807075 -painful a 4 4 ! & ^ + 4 2 01711071 01804175 01126291 00478685 -painless a 2 3 ! & ^ 2 1 00750712 01713095 -painstaking a 1 2 & + 1 0 00310138 -paintable a 1 1 ! 1 0 01715872 -painted a 4 3 ! & ^ 4 2 01713373 01573889 01714516 00398978 -painterly a 1 3 & + ; 1 0 00070288 -paired a 3 2 & ; 3 1 01486960 01663201 01483076 -pakistani a 1 2 \ + 1 0 03095964 -palaeolithic a 1 1 \ 1 0 03090263 -palaeontological a 1 2 \ + 1 0 02772654 -palatable a 1 3 ! ^ + 1 0 01716227 -palatal a 2 3 & \ + 2 0 02996605 01157494 -palatalised a 1 1 & 1 0 01157494 -palatalized a 1 1 & 1 0 01157494 -palatial a 2 3 & \ + 2 0 03096141 01286093 -palatine a 3 2 \ + 3 0 02996605 02861483 02861402 -palatoglossal a 1 1 \ 1 0 02772543 -pale a 5 2 & + 5 4 00408992 02325984 00408445 00405879 01458200 -pale-colored a 1 1 & 1 0 00399923 -pale-faced a 1 1 & 1 0 00235913 -pale-hued a 1 1 & 1 0 00399923 -pale_blue a 1 1 & 1 0 00377131 -paleoanthropological a 1 2 \ + 1 0 02907330 -paleocortical a 1 2 \ + 1 1 03010904 -paleolithic a 1 1 \ 1 0 03090263 -paleontological a 1 2 \ + 1 0 02772654 -paleozoic a 1 1 \ 1 0 02996801 -palestinian a 1 2 \ + 1 0 02974615 -palingenetic a 1 4 ! \ + ; 1 0 02687434 -palish a 1 1 & 1 0 00409141 -palladian a 1 2 \ + 1 0 02772819 -palliative a 1 2 & + 1 0 01341153 -pallid a 3 2 & + 3 2 00405879 02325984 00408445 -pally a 1 2 & ; 1 0 01075524 -palm-shaped a 1 1 & 1 0 02173125 -palmar a 1 2 \ + 1 0 02773062 -palmate a 2 1 & 2 0 02591239 02173125 -palmately-lobed a 1 1 & 1 0 00239742 -palmatifid a 1 1 & 1 0 02173264 -palmlike a 1 1 & 1 0 00614791 -palmy a 1 1 & 1 0 02331857 -palpable a 2 5 ! & ^ + ; 2 1 01717117 01747713 -palpatory a 1 2 \ + 1 0 02773293 -palpebrate a 1 1 \ 1 0 02773401 -palpitant a 1 2 & + 1 0 02304322 -palpitating a 1 1 & 1 0 02304322 -palsied a 1 1 & 1 0 02545874 -palsy-walsy a 1 2 & ; 1 0 01075524 -paltry a 2 2 & + 2 0 02502994 00107384 -pampering a 1 2 & + 1 0 01299484 -pan-hellenic a 1 1 \ 1 0 03016027 -panamanian a 1 2 \ + 1 0 02966482 -pancake-like a 1 1 & 1 0 02042687 -pancake-style a 1 1 & 1 0 00617951 -pancreatic a 1 2 \ + 1 0 02932561 -pandemic a 2 2 & + 2 0 01427188 01102568 -pandurate a 1 1 & 1 0 02170052 -panduriform a 1 1 & 1 0 02170052 -panegyric a 1 2 & + 1 0 00906099 -panegyrical a 1 2 & + 1 0 00906099 -paneled a 1 1 & 1 0 00059669 -panhellenic a 1 1 \ 1 0 03016027 -panic-stricken a 1 1 & 1 1 00080357 -panic-struck a 1 1 & 1 0 00080357 -panicked a 1 1 & 1 1 00080357 -panicky a 1 2 & + 1 0 00080357 -panicled a 1 2 \ ; 1 0 02773472 -paniculate a 1 2 \ ; 1 0 03133791 -panoplied a 2 1 & 2 0 01094647 00454849 -panoptic a 2 1 & 2 0 02516785 00526062 -panoptical a 1 2 & + 1 0 02516785 -panoramic a 1 2 & + 1 1 02561123 -pantalooned a 1 1 & 1 0 00454984 -pantheist a 1 1 \ 1 0 02931675 -pantheistic a 1 2 \ + 1 0 02931675 -pantropic a 1 1 & 1 0 02443803 -pantropical a 1 1 & 1 0 02443803 -papal a 1 2 \ + 1 1 02879638 -paper_thin a 1 1 & 1 0 02414500 -paperback a 1 2 & + 1 0 00257232 -paperbacked a 1 1 & 1 0 00257232 -paperlike a 1 1 \ 1 0 02691531 -papery a 2 3 & \ + 2 1 02414599 02691531 -papillary a 1 2 \ + 1 1 03010176 -papillate a 1 1 \ 1 0 03010337 -papilliform a 1 1 \ 1 0 02773612 -papillose a 1 1 \ 1 0 03010176 -papist a 1 1 + 1 0 02921753 -papistic a 1 1 + 1 0 02921753 -papistical a 1 1 + 1 0 02921753 -pappose a 1 2 & ; 1 0 00214907 -papuan a 1 2 \ + 1 0 03096269 -parabolic a 2 3 & \ + 2 0 02996904 02046916 -parabolical a 2 3 & \ + 2 0 02996904 02046916 -paraboloidal a 1 2 & + 1 0 02047051 -paradigmatic a 3 3 ! \ + 3 0 02965552 02965415 02773691 -paradisaic a 1 1 & 1 0 01180084 -paradisaical a 1 1 & 1 0 01180084 -paradisal a 1 2 & + 1 0 01180084 -paradisiac a 1 1 & 1 0 01180084 -paradisiacal a 1 2 & + 1 0 01180084 -paradoxical a 1 2 & + 1 1 00939895 -paraguayan a 1 2 \ + 1 0 02967179 -parallel a 2 4 ! & ^ ; 2 1 01718158 02379157 -paralytic a 2 3 & \ + 2 0 03096448 02545989 -paralytical a 1 2 \ + 1 0 03096448 -paralyzed a 1 1 & 1 0 02545989 -paramagnetic a 1 2 \ + 1 1 03002617 -paramedical a 1 1 + 1 0 02773862 -parametric a 1 2 \ + 1 1 02911346 -paramilitary a 1 2 \ + 1 0 02764378 -paramount a 1 1 & 1 1 00792202 -paranasal a 1 1 \ 1 0 02774164 -paranoid a 1 2 & + 1 1 02077157 -paranormal a 2 3 ! & ^ 2 0 02108827 01599532 -paraphrastic a 1 2 & + 1 0 00353001 -paraplegic a 1 2 & + 1 0 02546116 -parapsychological a 1 2 & + 1 0 01599782 -parasitic a 3 3 & \ + 3 0 02833692 02720484 00726723 -parasitical a 2 3 & \ + 2 0 02833692 00726723 -parasiticidal a 1 1 & 1 0 01165266 -parasympathetic a 1 2 \ + 1 1 03011248 -parasympathomimetic a 1 1 \ 1 0 03011380 -parceled_out a 1 1 & 1 0 00540236 -parched a 2 1 & 2 1 02551946 00618040 -pardonable a 1 2 ! & 1 1 01721059 -parental a 2 4 ! \ + ; 2 1 02884085 01722529 -parented a 1 1 ! 1 0 01733867 -parenteral a 2 2 \ ; 2 0 03096747 03096635 -parenthetic a 1 2 & + 1 0 01857527 -parenthetical a 1 2 & + 1 0 01857527 -parentless a 1 1 & 1 0 01733982 -pareve a 1 2 & ; 1 0 00829243 -parheliacal a 1 1 \ 1 0 02774269 -parhelic a 1 2 \ + 1 0 02774269 -parietal a 1 2 \ ; 1 0 02896222 -paripinnate a 1 1 & 1 0 02172617 -parisian a 1 2 \ + 1 1 03023449 -parked a 1 1 < 1 1 03151302 -parky a 1 2 & ; 1 0 01252566 -parliamentary a 3 3 & \ + 3 2 02774411 00715830 00716056 -parlous a 1 1 & 1 0 02060496 -parochial a 2 3 & \ + 2 1 02871695 00637267 -paroicous a 1 1 & 1 0 01543502 -parotid a 1 1 \ 1 0 02774705 -parous a 1 2 \ + 1 0 02774585 -paroxysmal a 1 2 \ + 1 0 02774804 -parrotlike a 1 1 & 1 1 01217134 -parsimonious a 1 2 & + 1 0 01114116 -part-time a 1 2 ! & 1 1 01089369 -parted a 1 1 & 1 1 02173371 -parthenogenetic a 1 2 & + 1 0 02136158 -parthian a 1 2 \ + 1 0 03096931 -partial a 3 4 ! & ^ + 3 2 00524693 01722965 01292683 -partible a 1 1 & 1 0 00785555 -participating a 1 1 & 1 0 01515280 -participatory a 1 2 & + 1 0 00716211 -participial a 1 3 \ + ; 1 0 03097103 -particolored a 1 1 & 1 0 00398978 -particoloured a 1 1 & 1 0 00398978 -particular a 6 2 & + 6 3 01104026 01104460 00488187 01853228 00984624 00311044 -particularised a 1 1 & 1 0 01104709 -particularistic a 1 2 \ + 1 1 02860719 -particularized a 1 1 & 1 0 01104709 -particulate a 1 1 ! 1 1 01724368 -partisan a 1 3 ! & + 1 0 00730731 -partitive a 3 3 & \ + 3 0 03097502 03097289 00565289 -partizan a 1 2 & + 1 0 00730731 -parttime a 1 1 & 1 0 01089369 -parturient a 2 3 & \ + 2 0 02860919 00003829 -party-spirited a 1 1 & 1 0 00730896 -parve a 1 2 & ; 1 0 00829243 -parvenu a 2 2 & + 2 0 01850862 01642379 -parvenue a 2 1 & 2 0 01850862 01642379 -paschal a 1 1 \ 1 0 02774923 -pass a 1 1 ; 1 0 01241927 -passable a 2 2 ! & 2 0 01724551 02080937 -passant a 1 2 & ; 1 0 01236842 -passe a 1 1 & 1 0 00974159 -passee a 1 1 & 1 0 00974159 -passerine a 1 3 ! \ + 1 0 02775029 -passing a 4 3 ! & ; 4 1 01756292 01241927 02081933 00312234 -passionate a 1 4 ! & ^ + 1 1 01725712 -passionless a 2 3 ! & ^ 2 0 01727439 01257990 -passive a 3 5 ! & = + ; 3 2 00039592 02513101 00042228 -past a 2 5 ! & ^ = + 2 2 01727926 01296091 -pasted a 1 1 & 1 1 00159106 -pastel a 2 2 & + 2 2 00707087 00409207 -pastel-colored a 1 1 & 1 0 00400013 -pastelike a 1 1 & 1 1 00406140 -pasteurian a 1 2 \ + 1 0 03036191 -pasteurised a 1 1 < 1 0 03151423 -pasteurized a 1 1 < 1 0 03151423 -pastoral a 3 3 & \ + 3 1 02860564 02895044 02051179 -pasty a 2 2 & + 2 2 00406140 00053691 -pat a 2 2 & + 2 0 01799781 00135342 -patched a 2 1 & 2 1 01640356 01789481 -patchy a 1 2 & + 1 0 00912814 -patellar a 1 2 \ + 1 0 02861072 -patelliform a 1 1 & 1 0 00536792 -patent a 2 2 & + 2 0 01622748 01618376 -patented a 1 1 & 1 0 01110686 -paternal a 4 6 ! & ^ \ = + 4 0 02759604 01734436 01722529 01971671 -paternalistic a 1 2 & + 1 1 01734772 -pathetic a 3 2 & + 3 2 01050890 00905181 00752847 -pathless a 1 1 & 1 1 00020241 -pathogenic a 1 2 & + 1 1 01168434 -pathologic a 2 3 & \ + 2 1 01176246 02861206 -pathological a 3 3 & \ + 3 2 02861206 01585491 01176246 -patient a 1 4 ! & ^ + 1 1 01735736 -patient_of a 1 1 & 1 0 01736883 -patriarchal a 2 5 ! & ^ \ + 2 1 01737825 02759765 -patriarchic a 1 2 & + 1 0 01738100 -patricentric a 1 1 & 1 0 01738252 -patrician a 2 2 & + 2 0 01948848 01590484 -patrilineal a 1 1 & 1 0 01416959 -patrilinear a 1 1 & 1 0 01416959 -patrimonial a 1 3 & + ; 1 0 01314197 -patriotic a 1 4 ! & ^ + 1 1 01740207 -patristic a 1 2 \ + 1 1 03020463 -patristical a 1 2 \ + 1 0 03020463 -patronised a 1 0 1 0 01738746 -patronising a 1 1 & 1 0 02338917 -patronized a 1 1 ! 1 0 01738746 -patronizing a 1 1 & 1 1 02338917 -patronless a 1 1 & 1 0 01738895 -patronymic a 1 2 \ + 1 0 03097689 -patterned a 1 2 ! & 1 0 01786133 -pauline a 1 1 \ 1 0 02775318 -paunchy a 1 2 & + 1 0 00986457 -paved a 1 2 ! & 1 1 01739693 -pavlovian a 1 2 \ + 1 0 03036316 -pawky a 1 2 & ; 1 0 00149686 -payable a 1 1 & 1 1 00136884 -paying a 2 1 & 2 0 01871473 01708663 -paying_attention a 1 1 = 1 0 01194483 -pea-green a 1 1 & 1 0 00379495 -peace-loving a 1 1 & 1 1 01742119 -peaceable a 3 3 & ^ + 3 1 01742119 01740892 01741669 -peaceful a 2 4 ! & ^ + 2 1 01740892 02513101 -peacekeeping a 1 1 \ 1 0 02775417 -peach-colored a 1 1 & 1 0 00400101 -peachy a 2 3 & + ; 2 0 01123879 00379267 -peachy-colored a 1 1 & 1 0 00379267 -peachy-coloured a 1 1 & 1 0 00379267 -peacock-blue a 1 1 & 1 0 00379413 -peaked a 2 1 & 2 2 02542325 01810868 -peaky a 1 2 & + 1 1 01214255 -peanut a 1 1 & 1 0 01473353 -pear-shaped a 2 1 & 2 0 02042775 01457486 -pearl_gray a 1 1 & 1 0 00390844 -pearl_grey a 1 1 & 1 0 00390844 -pearlescent a 1 1 & 1 0 00282020 -pearly a 1 2 & + 1 1 00390943 -pearly-white a 1 1 & 1 0 00390943 -peaty a 1 2 \ + 1 0 02775599 -pebble-grained a 1 1 & 1 0 00912980 -pebbly a 1 2 & + 1 0 02242223 -peccable a 1 1 & 1 0 02515214 -peccant a 1 1 & 1 0 02515214 -peckish a 2 2 & ; 2 0 01269819 01136541 -pectic a 1 2 \ + 1 0 03097826 -pectinate a 1 1 & 1 0 02247422 -pectineal a 1 1 \ 1 0 02776296 -pectoral a 1 2 \ + 1 0 02860389 -peculiar a 4 2 & + 4 2 00968010 01104026 00491089 00357790 -pecuniary a 1 1 \ 1 0 02775934 -pedagogic a 1 2 \ + 1 0 02945971 -pedagogical a 1 2 \ + 1 1 02945971 -pedal a 1 1 \ 1 0 02776174 -pedantic a 1 2 & + 1 1 02083908 -pedate a 2 2 & ; 2 0 02173510 01031503 -pederastic a 1 2 & + 1 0 01202367 -pedestrian a 1 1 & 1 0 01346343 -pediatric a 1 2 \ + 1 0 02893637 -pedigree a 1 1 & 1 0 01903965 -pedigreed a 1 1 & 1 0 01903965 -pedunculate a 1 2 ! ; 1 0 00159735 -peeled a 1 2 & ; 1 0 00458266 -peerless a 1 1 & 1 0 00505410 -peeved a 1 1 & 1 0 01806106 -peevish a 1 2 & + 1 1 01136541 -pegged-down a 1 1 & 1 1 02096083 -pejorative a 1 1 & 1 0 00907243 -pelagic a 1 1 \ 1 0 02890216 -pelecypod a 1 2 & + 1 0 02484078 -pelecypodous a 1 2 & + 1 0 02484078 -pell-mell a 1 1 & 1 0 01271410 -pellucid a 2 3 & + ; 2 0 00431774 00429355 -peloponnesian a 1 2 \ + 1 0 02879947 -peltate a 1 1 & 1 0 02170199 -pelvic a 1 2 \ + 1 1 02894741 -pemphigous a 1 2 \ + 1 0 02776379 -penal a 3 2 & \ 3 0 02779420 01902866 01404370 -penciled a 1 1 < 1 1 03151711 -pencilled a 1 1 < 1 0 03151711 -pendant a 1 1 & 1 0 02351370 -pendent a 1 1 & 1 0 02351370 -pending a 1 1 & 1 1 01004703 -pendulous a 1 2 & ; 1 0 01238486 -penetrable a 2 3 ! & + 2 0 01771462 02524563 -penetrating a 2 1 & 2 1 01744515 00802514 -penetrative a 2 2 & + 2 0 01744515 00802514 -penial a 1 2 \ + 1 0 03097952 -penicillin-resistant a 1 1 \ 1 0 02779530 -penile a 1 1 \ 1 0 03097952 -peninsular a 1 2 \ + 1 0 03098252 -penitent a 1 4 ! & ^ + 1 0 01743217 -penitential a 1 2 & + 1 0 01743704 -penitentiary a 2 2 & + 2 0 01902980 01743704 -pennate a 1 1 & 1 0 00998598 -penniless a 1 2 & + 1 0 02023661 -penny-pinching a 1 2 & + 1 0 01113225 -penny-wise a 1 1 & 1 0 02421833 -pensionable a 1 1 & 1 0 00852875 -pensive a 2 2 & + 2 1 02419434 01362950 -pent a 1 1 & 1 0 00558951 -pent-up a 1 1 & 1 0 01316467 -pentagonal a 1 1 \ 1 0 02834730 -pentamerous a 1 2 & ; 1 0 02482298 -pentangular a 1 1 \ 1 0 02834730 -pentasyllabic a 1 1 & 1 0 02289287 -pentatonic a 1 2 \ + 1 0 02938485 -pentavalent a 1 2 \ ; 1 0 03098390 -pentecostal a 2 2 \ + 2 0 03098628 03098491 -penultimate a 1 1 & 1 0 01015392 -penumbral a 1 1 \ 1 0 02779654 -penurious a 2 2 & + 2 0 02023661 01114116 -peopled a 1 1 & 1 1 01312105 -peppery a 1 2 & + 1 0 02397496 -peppy a 1 2 & + 1 0 00805309 -peptic a 1 2 \ + 1 0 02908525 -per_capita a 1 1 & 1 1 00482452 -perambulating a 1 1 & 1 1 01523968 -perceivable a 2 1 & 2 0 01747849 00533452 -perceived a 2 1 & 2 1 01609501 01609373 -perceptible a 3 4 ! & ^ + 3 1 01746605 01717471 01287282 -perceptive a 2 4 ! & \ + 2 2 02868326 01744111 -perceptual a 1 2 \ + 1 1 02945377 -percipient a 1 2 & + 1 0 00771616 -percussive a 1 2 \ + 1 1 03004701 -percutaneous a 1 2 \ ; 1 0 02944327 -perdurable a 1 2 & + 1 0 01754049 -peregrine a 1 2 & + 1 0 02128084 -peremptory a 3 1 & 3 1 00787595 00713205 00685365 -perennial a 3 4 ! & + ; 3 1 00678473 01441729 00592880 -perfect a 3 4 ! & ^ = 3 1 01749320 01520091 00915321 -perfected a 1 1 & 1 0 02148917 -perfectible a 1 2 & + 1 0 01751693 -perfervid a 1 1 & 1 0 01726235 -perfidious a 1 2 & + 1 0 00960094 -perfoliate a 1 1 & 1 0 02170411 -perforate a 1 1 & 1 0 00662139 -perforated a 2 1 & 2 0 00662139 00661973 -perfumed a 2 1 & 2 1 01052888 01052611 -perfunctory a 2 1 & 2 1 00312234 01043619 -perianal a 1 1 \ 1 0 02856584 -pericardiac a 1 1 \ 1 0 02856654 -pericardial a 1 2 \ + 1 0 02856654 -perigonal a 1 1 \ 1 0 02775713 -perilous a 1 2 & + 1 1 02060496 -perinasal a 1 1 \ 1 0 02978928 -perinatal a 1 1 ! 1 0 00129276 -perineal a 1 2 \ + 1 0 02856851 -periodic a 2 3 ! & + 2 1 01967240 00594004 -periodical a 1 2 & + 1 0 01967240 -periodontal a 1 2 \ + 1 0 02916006 -periodontic a 1 2 \ + 1 0 02916006 -peripatetic a 2 3 & \ + 2 0 03028465 02128388 -peripheral a 2 3 ! & + 2 2 00331446 01857743 -periphrastic a 1 2 & + 1 0 00767626 -peripteral a 1 2 ! & 1 0 00139870 -perirhinal a 1 1 \ 1 0 02978928 -perishable a 1 4 ! & ^ + 1 0 01753365 -peristylar a 1 2 & + 1 0 00140075 -perithelial a 1 2 \ + 1 0 02775797 -peritoneal a 1 2 \ + 1 0 03001012 -peritrichous a 1 2 & ; 1 0 01696999 -periwigged a 1 1 & 1 0 02564683 -perked_up a 1 1 & 1 0 00119993 -perky a 1 2 & + 1 1 00363621 -permanent a 2 5 ! & ^ = + 2 1 01754421 01759527 -permanent-press a 1 1 & 1 0 01360085 -permeable a 1 4 ! & ^ + 1 0 01772032 -permeant a 1 2 & + 1 0 00468795 -permeating a 1 1 & 1 0 00468795 -permeative a 1 2 & + 1 0 00468795 -permed a 1 1 & 1 0 01030525 -permissible a 2 4 ! & ^ + 2 0 01760944 01762404 -permissive a 2 4 ! & = + 2 0 01763594 01762839 -permutable a 1 2 & + 1 0 00918200 -pernicious a 2 2 & + 2 0 01611329 01162406 -pernickety a 1 1 & 1 0 00985104 -peroneal a 1 1 \ 1 0 02856972 -perpendicular a 3 5 ! & ^ = + 3 0 01720280 01233347 01145724 -perpetual a 2 2 & + 2 1 01755024 00595299 -perplexed a 1 4 ! & ^ + 1 1 01765643 -perplexing a 1 1 & 1 1 00430756 -persevering a 1 1 & 1 0 01736122 -persian a 1 1 + 1 0 03075191 -persistent a 4 4 ! & + ; 4 2 00593071 01040544 01758339 02327569 -persisting a 1 1 & 1 0 00596043 -persnickety a 2 1 & 2 0 01890382 00985104 -person-to-person a 1 1 & 1 0 01769179 -personable a 1 2 & + 1 0 00168694 -personal a 5 5 ! & ^ \ + 5 4 01767329 01616157 02858816 01779428 02858707 -personalised a 1 1 & 1 0 01768252 -personalized a 2 1 & 2 1 01768252 01768969 -perspicacious a 2 2 & + 2 0 02569558 00771803 -perspicuous a 1 3 & + ; 1 0 00429355 -persuadable a 1 1 & 1 0 02361848 -persuasible a 1 2 & + 1 0 02361848 -persuasive a 1 4 ! & ^ + 1 1 01769843 -pert a 1 2 & + 1 1 02280090 -pertinacious a 1 2 & + 1 0 02327569 -pertinent a 2 2 & + 2 2 01975833 00138314 -perturbed a 1 2 & ; 1 0 00532560 -perturbing a 1 1 & 1 0 01189386 -peruked a 1 1 & 1 0 02564683 -peruvian a 1 2 \ + 1 0 02966154 -pervasive a 1 2 & + 1 0 00468795 -perverse a 3 2 & + 3 1 01818820 01613839 00621524 -perversive a 1 2 & + 1 0 01132366 -perverted a 3 1 & 3 0 01597509 01311067 00621524 -pervious a 1 4 ! & ^ + 1 0 01773234 -pesky a 1 1 & 1 0 00089550 -pessimal a 1 1 & 1 0 00230208 -pessimistic a 1 4 ! & ^ + 1 1 01664581 -pessimum a 1 1 & 1 0 00230208 -pestered a 1 1 & 1 1 02455845 -pestering a 1 1 & 1 1 00089550 -pestiferous a 4 1 & 4 0 02114296 01427333 01132366 00089550 -pestilent a 2 2 & + 2 0 01611329 01427333 -pestilential a 1 2 & + 1 1 01427333 -pet a 1 1 & 1 0 01462882 -petal-like a 1 1 & 1 0 01702727 -petaled a 1 1 & 1 0 01775540 -petalled a 1 1 & 1 0 01775540 -petalless a 1 0 1 0 01776532 -petallike a 1 1 & 1 0 01702727 -petaloid a 1 1 \ 1 0 02776496 -petalous a 1 3 ! & + 1 0 01775540 -petite a 1 2 & + 1 1 01392249 -petitionary a 1 2 & + 1 0 00714585 -petrifying a 1 1 & 1 0 00196233 -petrous a 1 1 & 1 0 01152320 -petticoated a 1 1 & 1 1 00456436 -pettish a 1 2 & + 1 0 01136541 -petty a 3 3 & + ; 3 0 02100968 01280908 00288498 -petulant a 1 2 & + 1 0 01136541 -phagocytic a 1 2 \ + 1 0 02776576 -phalangeal a 1 2 \ + 1 0 02776688 -phallic a 2 3 & \ + 2 0 02839179 01477391 -phantasmagoric a 1 2 & + 1 0 01943067 -phantasmagorical a 1 2 & + 1 0 01943067 -phantasmal a 1 2 & + 1 0 01574925 -phantom a 1 1 & 1 1 01939402 -pharaonic a 1 2 \ + 1 0 02776813 -pharisaic a 1 2 & + 1 0 01782100 -pharisaical a 1 2 & + 1 0 01782100 -pharmaceutic a 1 2 \ + 1 0 03098803 -pharmaceutical a 2 2 \ + 2 1 03098803 03099131 -pharmacologic a 1 2 \ + 1 0 02912686 -pharmacological a 1 2 \ + 1 1 02912686 -pharyngeal a 1 2 \ + 1 0 02997099 -phenomenal a 2 2 & \ 2 0 02859708 01676993 -phenotypic a 1 2 \ + 1 0 02942347 -phenotypical a 1 2 \ + 1 0 02942347 -philanthropic a 2 3 & \ + 2 1 00359645 03006699 -philatelic a 1 2 \ + 1 0 03006854 -philatelical a 1 2 \ + 1 0 03006854 -philharmonic a 2 2 & \ 2 1 03099259 01505619 -philhellene a 1 2 \ + 1 0 03133141 -philhellenic a 1 2 \ + 1 0 03133141 -philippine a 1 2 \ + 1 0 03066180 -philistine a 2 3 & \ + 2 0 03099392 01333886 -philological a 1 2 \ + 1 1 03019955 -philosophic a 2 3 & \ + 2 1 02858231 00858053 -philosophical a 2 3 & \ + 2 2 02858231 00858053 -phlegmatic a 1 2 & + 1 0 00858340 -phlegmatical a 1 2 & + 1 0 00858340 -phlegmy a 1 2 ! + 1 0 01178856 -phobic a 1 2 & + 1 0 01585679 -phocine a 1 1 \ 1 0 02853663 -phoenician a 1 1 \ 1 0 02776931 -phonemic a 1 2 \ + 1 1 02858086 -phonetic a 2 2 \ + 2 1 02857893 02857726 -phoney a 1 2 & + 1 0 01117477 -phonic a 3 2 \ + 3 1 03099638 03099549 02857893 -phonogramic a 1 2 \ + 1 0 02777055 -phonologic a 1 2 \ + 1 1 02777160 -phonological a 1 2 \ + 1 0 02777160 -phony a 1 2 & + 1 1 01117477 -phosphorescent a 1 2 & + 1 1 00272555 -phosphoric a 1 2 \ + 1 0 03099742 -phosphorous a 1 2 \ + 1 0 03099742 -photic a 1 1 \ 1 0 02838805 -photochemical a 1 2 \ + 1 0 02692815 -photoconductive a 1 2 \ + 1 0 02827413 -photoelectric a 1 1 \ 1 0 02827790 -photoelectrical a 1 1 \ 1 0 02827790 -photoemissive a 1 1 \ 1 0 02827571 -photogenic a 1 1 & 1 0 00168820 -photographic a 2 3 & \ + 2 1 02838592 00915420 -photomechanical a 1 2 \ + 1 0 02777355 -photometric a 1 1 \ 1 0 02777548 -photometrical a 1 2 \ + 1 0 02777548 -photosensitive a 1 2 & + 1 0 02104727 -photosynthetic a 1 3 ! \ + 1 0 02777686 -photovoltaic a 1 1 \ 1 0 02827662 -phrasal a 1 2 \ + 1 0 02937108 -phreatic a 1 1 \ 1 0 02777931 -phrenetic a 1 1 & 1 0 00086341 -phrenic a 1 1 \ 1 0 02997227 -phrenological a 1 2 \ + 1 0 02778016 -phyletic a 1 1 \ 1 0 02942958 -phylliform a 1 1 & 1 0 02149070 -phyllodial a 1 3 \ + ; 1 0 03133883 -phylogenetic a 1 2 \ + 1 0 02942958 -physical a 7 4 ! & \ + 7 5 01778212 02779774 00627004 01574259 00874092 00842324 00627204 -physicochemical a 1 1 \ 1 1 02693186 -physiologic a 1 2 & + 1 0 01779558 -physiological a 2 3 & \ + 2 1 02949082 01779558 -physiotherapeutic a 1 2 \ + 1 0 02889619 -phytophagic a 1 2 & ; 1 0 00314639 -phytophagous a 1 2 & ; 1 0 00314639 -phytophilous a 1 2 & ; 1 0 00314639 -piagetian a 1 2 \ + 1 0 03036464 -pianissimo a 1 2 & + 1 0 01458490 -pianissimo_assai a 1 1 & 1 0 01458619 -pianistic a 2 2 \ + 2 1 03023216 03023348 -piano a 1 2 ! & 1 0 01458303 -picaresque a 1 1 & 1 0 01224755 -picayune a 1 2 & ; 1 0 01280908 -pickled a 1 1 & 1 0 01073094 -picky a 1 1 & 1 0 00984624 -pictographic a 1 2 \ + 1 0 02778122 -pictorial a 2 3 & \ + 2 2 02861617 01941026 -pictural a 1 2 \ + 1 0 02861617 -pictured a 2 1 & 2 1 01935301 01715157 -picturesque a 2 2 & + 2 2 00219924 00407887 -piddling a 1 2 & ; 1 0 01280908 -pie-eyed a 1 2 & ; 1 0 00798103 -piebald a 1 1 & 1 0 00398978 -piecemeal a 1 1 & 1 0 01143006 -pied a 1 1 & 1 0 00398978 -pierced a 1 1 & 1 0 00662139 -piercing a 2 1 & 2 0 01744515 00803432 -pietistic a 2 3 & \ + 2 0 02920594 01782100 -pietistical a 2 3 & \ + 2 0 02920594 01782100 -piezoelectric a 1 2 \ + 1 1 02980972 -piffling a 1 2 & ; 1 0 01280908 -pig-sized a 1 1 & 1 0 02224076 -pigeon-breasted a 1 1 & 1 0 02142139 -pigeon-toed a 1 1 ! 1 1 01032624 -piggish a 1 2 & + 1 0 00011327 -piggy a 1 2 & + 1 0 00011327 -pigheaded a 1 2 & + 1 1 02327428 -pilar a 1 2 \ + 1 0 02778439 -pilary a 1 3 & + ; 1 0 00215087 -pillaged a 2 1 & 2 0 01087757 00735709 -pillar-shaped a 1 1 & 1 0 02047160 -pillared a 1 1 & 1 0 00141429 -pilose a 1 2 & ; 1 0 00215087 -pilosebaceous a 1 1 \ 1 0 02778533 -pilotless a 1 1 & 1 0 01480080 -pilous a 1 3 & + ; 1 0 00215087 -pimpled a 1 1 & 1 0 00246175 -pimply a 1 2 & + 1 0 00246175 -pinchbeck a 1 1 & 1 0 01118118 -pinched a 4 1 & 4 2 01213550 00988988 02023661 01448861 -pineal a 2 2 & \ 2 0 03099928 02047252 -pinioned a 2 1 & 2 0 02567815 00253654 -pink a 1 2 & + 1 1 00379595 -pink-collar a 1 1 & 1 0 02556568 -pink-lavender a 1 1 & 1 0 00379697 -pink-orange a 1 1 & 1 0 00379804 -pink-purple a 1 1 & 1 0 00380077 -pink-red a 1 1 & 1 0 00379914 -pink-slipped a 1 1 & 1 0 00864884 -pink-tinged a 1 1 & 1 0 00379992 -pink-tipped a 1 1 & 1 0 02431178 -pinkish a 1 1 & 1 0 00379595 -pinkish-lavender a 1 1 & 1 0 00379697 -pinkish-orange a 1 1 & 1 0 00379804 -pinkish-purple a 1 1 & 1 0 00380077 -pinkish-white a 1 1 & 1 0 00391077 -pinnate a 1 1 & 1 0 02173632 -pinnate-leafed a 1 1 & 1 0 01702814 -pinnate-leaved a 1 1 & 1 0 01702814 -pinnated a 1 1 & 1 0 02173632 -pinnatifid a 1 1 & 1 0 02173773 -pinnatisect a 1 1 & 1 0 02173930 -pinstriped a 1 1 & 1 0 01789873 -pint-size a 1 2 & ; 1 0 02387790 -pint-sized a 1 2 & ; 1 0 02387790 -pinwheel-shaped a 1 1 & 1 0 02042872 -pious a 1 5 ! & ^ = + 1 0 01781478 -piquant a 3 1 & 3 0 02398378 02306874 00167671 -piratical a 2 2 \ + 2 1 03100026 03100184 -piscatorial a 1 1 \ 1 0 03100315 -piscatory a 1 1 \ 1 0 03100315 -piscine a 1 1 \ 1 0 02832382 -piscivorous a 1 1 & 1 0 00313836 -pissed a 2 2 & ; 2 0 01806106 00798103 -pissed_off a 1 1 & 1 0 01806106 -pistillate a 2 2 & ; 2 0 00316046 01478482 -pitch-black a 1 2 & + 1 0 00274068 -pitch-dark a 1 1 & 1 0 00274068 -pitched a 2 2 & < 2 1 03151871 01235334 -pitcher-shaped a 1 1 & 1 0 02149153 -pitchy a 2 2 & + 2 0 00388849 00054364 -piteous a 1 2 & + 1 1 01050890 -pithy a 1 2 & + 1 1 00548316 -pitiable a 2 1 & 2 1 00905181 01050890 -pitiful a 3 1 & 3 1 00905181 01126841 01050890 -pitiless a 2 2 & + 2 1 01508086 01264179 -pitted a 1 1 & 1 0 00327690 -pituitary a 1 2 \ + 1 0 03100479 -pivotal a 1 2 & + 1 0 00656507 -pixilated a 2 2 & ; 2 0 02122715 00798103 -pizzicato a 1 1 & 1 0 00945927 -placable a 1 2 ! & 1 0 01784830 -placating a 1 1 & 1 0 00759826 -placative a 1 2 & + 1 0 00759826 -placatory a 1 2 & + 1 0 00759826 -placeable a 1 1 & 1 0 01272920 -placed a 2 1 & 2 0 02126430 01681477 -placental a 1 3 ! & + 1 0 01830946 -placid a 2 2 & + 2 2 00302951 01134486 -placoid a 1 1 & 1 0 00659421 -plagiarised a 1 1 & 1 0 00698848 -plagiaristic a 1 2 & + 1 0 00698848 -plagiarized a 1 1 & 1 0 00698848 -plagioclastic a 1 2 \ + 1 0 02778332 -plaguey a 2 2 & + 2 0 01427333 00089550 -plaguy a 1 2 & + 1 0 00089550 -plain a 7 4 ! & ^ + 7 6 01618376 01791911 01785906 01907103 00765666 00060605 00169432 -plain-woven a 1 1 & 1 0 02579864 -plainspoken a 2 1 & 2 0 02018899 00764484 -plaintive a 1 2 & + 1 0 01366157 -planar a 1 3 ! & + 1 1 00658942 -planate a 1 1 & 1 0 00659530 -plane a 1 2 & + 1 1 00910101 -plane-polarized a 1 1 \ 1 0 02779960 -planetal a 1 2 \ + 1 0 02778668 -planetary a 4 3 & \ + 4 1 02778668 02780093 02127509 01568684 -plangent a 1 2 & + 1 0 01457234 -planktonic a 1 2 \ + 1 0 02778943 -planless a 1 1 & 1 0 01910652 -planned a 2 3 ! & ^ 2 1 01797148 01842963 -planoconcave a 1 1 & 1 0 00536898 -planoconvex a 1 1 & 1 0 00538371 -planographic a 1 2 \ + 1 0 02779044 -plant-eating a 1 2 & ; 1 0 00314639 -plantal a 1 2 \ + 1 0 02833235 -plantar a 1 1 \ 1 0 02779163 -planted a 2 2 ! & 2 1 01635633 01831473 -plantigrade a 1 2 ! ; 1 0 00751353 -plastered a 3 2 & ; 3 1 02427718 01697129 00798103 -plastic a 3 2 & + 3 1 00844461 02364954 00585398 -platelike a 1 1 & 1 0 00659421 -platinum-blonde a 1 1 & 1 0 00243945 -platitudinal a 1 1 & 1 0 01689223 -platitudinous a 1 2 & + 1 1 01689223 -platonic a 2 3 & \ + 2 1 02780680 01727644 -platonistic a 1 2 \ + 1 0 02780538 -platyrhine a 1 0 1 0 01408929 -platyrhinian a 1 1 + 1 0 01408929 -platyrrhine a 1 1 ! 1 0 01408929 -platyrrhinian a 1 1 + 1 0 01408929 -platyrrhinic a 1 1 + 1 0 01408929 -plausible a 2 4 ! & ^ + 2 1 01799457 02182728 -plausive a 1 1 & 1 0 00996089 -playable a 1 1 ! 1 1 00955115 -played a 1 2 < ; 1 1 03152015 -played_out a 2 1 & 2 1 02433451 02582602 -playful a 1 4 ! & = + 1 1 02121859 -pleading a 1 1 & 1 0 00713995 -pleasant a 2 5 ! & ^ = + 2 2 01800349 01586866 -pleasant-smelling a 1 1 & 1 0 01056802 -pleasant-tasting a 1 1 & 1 0 02396720 -pleased a 2 3 ! & ^ 2 2 01805157 01892506 -pleasing a 1 3 ! & ^ 1 1 01807219 -pleasurable a 1 1 & 1 0 01801029 -plebeian a 1 2 & + 1 0 01593079 -pledged a 1 1 & 1 0 00518549 -plenary a 1 2 & + 1 0 00528167 -plenteous a 1 2 & + 1 0 00014490 -plentiful a 3 2 & + 3 2 00015854 00014490 01080900 -pleochroic a 1 1 \ 1 0 03007149 -pleomorphic a 1 2 \ + 1 0 02780837 -pleonastic a 1 2 & + 1 0 00549826 -plethoric a 1 2 & + 1 0 00015720 -pleural a 1 2 \ + 1 1 02947653 -pleurocarpous a 1 2 ! + 1 0 02590382 -pliable a 4 2 & + 4 0 02362030 02144436 01028163 01022367 -pliant a 4 2 & + 4 1 02364954 02144436 01028163 01022367 -plodding a 1 1 & 1 1 00837756 -plotted a 1 1 & 1 0 01842963 -ploughed a 1 1 & 1 0 01832945 -plowed a 1 2 ! & 1 0 01832945 -plucked a 2 3 ! & ; 2 0 00945772 00999519 -plucky a 2 2 & + 2 0 00266634 02279900 -plugged a 2 2 & < 2 0 03152135 01621080 -plumaged a 1 1 & 1 0 00998674 -plumate a 1 2 & ; 1 0 00998850 -plumb a 1 1 & 1 0 01233851 -plumbable a 1 0 1 0 00994744 -plumbaginaceous a 1 2 \ + 1 0 02780975 -plumbic a 1 1 \ 1 0 02781131 -plumbous a 1 1 \ 1 0 02781131 -plume-tipped a 1 1 & 1 0 02431262 -plumed a 3 2 & ; 3 0 00998985 00998850 00057881 -plumelike a 1 1 & 1 0 00999136 -plumlike a 1 1 & 1 0 02047335 -plummy a 2 2 & ; 2 0 00733632 00074216 -plumose a 1 2 & ; 1 0 00998850 -plump a 1 2 & + 1 1 00986766 -plumping a 1 1 & 1 1 01390215 -plumy a 3 1 & 3 0 00999136 00998985 00058554 -plundered a 1 1 & 1 0 01087757 -plundering a 1 1 & 1 0 00030701 -pluperfect a 1 1 & 1 0 01751828 -plural a 2 3 ! & + 2 0 02183512 02182979 -pluralistic a 1 2 \ + 1 1 02947477 -plus a 2 2 ! & 2 0 01819390 00065064 -plush a 1 1 & 1 1 02025274 -plush-like a 1 1 & 1 0 02231998 -plushy a 2 2 & + 2 0 02231998 02025274 -plutocratic a 1 2 \ + 1 0 02781247 -plutocratical a 1 2 \ + 1 0 02781247 -plutonian a 1 1 & 1 0 01304081 -plutonic a 1 2 & + 1 0 01355378 -pneumatic a 1 1 \ 1 0 02838894 -pneumococcal a 1 2 \ + 1 0 02839036 -pneumogastric a 2 3 \ + ; 2 0 02822055 02733652 -pneumonic a 2 2 \ + 2 0 02935285 02935115 -po-faced a 1 2 & ; 1 0 01268837 -poached a 1 1 & 1 0 00616822 -pocked a 2 1 & 2 0 02241714 00246878 -pocket-size a 2 1 & 2 0 01415219 01394400 -pocket-sized a 2 1 & 2 0 01415219 01394400 -pocketable a 1 1 & 1 0 01394400 -pockmarked a 2 1 & 2 0 02241714 00246878 -podgy a 1 1 & 1 0 00987510 -podlike a 1 1 & 1 0 02155454 -poetic a 4 3 & \ + 4 2 02857099 01420337 02857295 02018141 -poetical a 2 3 & \ + 2 0 02857099 02018141 -poignant a 2 2 & + 2 2 01560821 01712174 -poikilothermic a 1 2 & + 1 0 02533075 -poikilothermous a 1 2 & + 1 0 02533075 -point-blank a 2 1 & 2 1 00764484 00761592 -point-of-sale a 1 1 \ 1 0 03143374 -pointed a 2 4 ! & ^ + 2 1 01809655 00765862 -pointed-toe a 1 1 & 1 0 01032226 -pointillist a 1 2 & + 1 0 01789734 -pointillistic a 1 2 & + 1 0 01789734 -pointless a 2 3 ! & + 2 0 01811504 02503305 -pointy-toed a 1 1 & 1 0 01032226 -poised a 2 1 & 2 1 00894272 00530354 -poisonous a 3 2 & + 3 0 02450512 00829656 00226105 -poker-faced a 1 1 & 1 1 00501313 -pokey a 2 2 & + 2 0 00981067 00637455 -poky a 2 2 & + 2 0 00981067 00637455 -polar a 6 4 ! & \ + 6 2 00358820 02066312 02838005 02444147 01252151 00656507 -polarographic a 1 2 \ + 1 0 02781425 -pole-handled a 1 1 & 1 0 01434966 -polemic a 1 2 & + 1 0 00602563 -polemical a 1 2 & + 1 1 00602563 -polemoniaceous a 1 2 \ + 1 0 02781531 -policy-making a 1 1 & 1 0 01814929 -polish a 1 2 \ + 1 1 02961258 -polished a 4 3 ! & ^ 4 1 01811997 02271177 01952153 01005306 -polite a 3 4 ! & = + 3 2 00641158 01947741 00642379 -politic a 2 3 ! & ^ 2 1 01813400 00758800 -political a 3 4 ! & \ + 3 3 01814385 02857407 02857587 -politically_correct a 1 1 \ 1 0 02781685 -politically_incorrect a 1 1 \ 1 0 02781783 -polluted a 1 1 & 1 1 01908889 -pollyannaish a 1 1 & 1 0 01664015 -poltroon a 1 2 & + 1 0 00266309 -polyandrous a 1 2 & + 1 0 01545203 -polyatomic a 1 1 \ 1 0 02885076 -polychromatic a 2 2 ! & 2 0 00366526 00400193 -polychrome a 1 1 & 1 0 00400193 -polychromic a 1 1 & 1 0 00400193 -polycrystalline a 1 1 & 1 1 00269364 -polydactyl a 1 2 \ ; 1 0 02781885 -polydactylous a 1 3 \ + ; 1 0 02781885 -polyestrous a 1 1 & 1 0 02138138 -polygamous a 2 3 ! & + 2 0 01544856 01543225 -polygenic a 1 3 & + ; 1 0 01315025 -polyglot a 1 2 & + 1 0 01545904 -polygonal a 1 1 \ 1 0 03100611 -polygynous a 1 2 & + 1 0 01545317 -polyhedral a 1 2 \ + 1 0 02782106 -polymeric a 1 2 \ + 1 0 02782225 -polymorphemic a 1 1 \ 1 0 02936764 -polymorphic a 3 4 & \ + ; 3 0 02855503 02855185 01967041 -polymorphous a 3 4 & \ + ; 3 0 02855503 02855185 01967041 -polynesian a 1 1 \ 1 0 02961396 -polynomial a 1 2 \ + 1 0 03100751 -polyoestrous a 1 1 & 1 0 02138138 -polyoicous a 1 1 & 1 0 01543225 -polypetalous a 1 1 & 1 0 01776161 -polyphase a 1 2 \ ; 1 0 02888295 -polyphonic a 3 4 ! \ + ; 3 0 02856124 02855757 01544169 -polyphonous a 1 3 \ + ; 1 0 02855757 -polyploid a 1 4 ! & + ; 1 0 01147836 -polysemantic a 1 1 & 1 0 00103447 -polysemous a 1 2 & + 1 0 00103447 -polysyllabic a 2 2 & + 2 0 02289405 01435675 -polysynthetic a 1 1 & 1 0 00112018 -polytheistic a 1 2 ! + 1 0 01781356 -polytonal a 1 2 & + 1 1 02437685 -polyunsaturated a 1 1 & 1 0 00757783 -polyvalent a 2 4 ! = + ; 2 0 01547961 01546349 -pomaded a 1 1 & 1 1 02427882 -pompous a 2 3 & \ + 2 1 01849960 02782367 -ponderable a 2 2 ! & 2 0 01815309 02418093 -pondering a 1 1 & 1 0 02419434 -ponderous a 3 2 & + 3 2 01192786 01186207 01346538 -pontifical a 3 3 & \ + 3 0 02879638 02721057 01849960 -poor a 6 5 ! & ^ = + 6 3 01050890 02022953 02025498 02024411 02336904 01128719 -poor-spirited a 1 1 & 1 0 00266420 -poorly a 1 1 & 1 0 02542325 -pop a 1 2 & ; 1 0 00414518 -popeyed a 2 2 & ; 2 0 02358762 00954503 -popish a 1 0 1 0 02921753 -popliteal a 1 1 \ 1 0 02782525 -popular a 4 5 ! & = + ; 4 4 01815838 00716370 00486539 00414518 -populated a 1 1 & 1 1 01312215 -populous a 1 1 & 1 1 01312376 -porcine a 3 2 & \ 3 0 03100921 00987974 00011327 -poriferous a 1 2 & + 1 0 00329396 -pornographic a 1 2 & + 1 0 02134397 -porose a 1 1 & 1 0 00329585 -porous a 3 3 ! & + 3 1 01772305 00329396 01397998 -porphyritic a 1 2 \ + 1 0 03101056 -port a 1 2 & + 1 0 02033742 -portable a 2 3 ! & + 2 1 01525776 01291589 -portentous a 3 2 & + 3 2 02164165 01883106 01849960 -porticoed a 1 1 & 1 0 00139492 -portly a 1 1 & 1 0 00988077 -portrayed a 1 1 & 1 0 01715157 -portuguese a 1 2 \ + 1 0 02959007 -posed a 1 2 ! < 1 0 03152249 -posh a 1 2 & ; 1 0 00975778 -positionable a 1 1 \ 1 0 02782629 -positional a 1 1 \ 1 0 02782715 -positioning a 1 1 & 1 0 01684811 -positive a 11 7 ! & ^ \ = + ; 11 6 01817500 00337172 00065064 01820481 01043505 00721838 02782815 01820103 01819692 00358678 00339288 -positively_charged a 1 1 & 1 0 00358678 -positivist a 1 2 \ + 1 1 02782815 -positivistic a 1 2 \ + 1 0 02782815 -possessed a 2 1 & 2 1 00599468 02074673 -possessive a 3 4 & \ + ; 3 2 02862251 00030508 00792476 -possible a 2 5 ! & ^ = + 2 2 01821266 00044353 -post-communist a 1 1 \ 1 0 02875104 -post-free a 1 2 & ; 1 0 01709354 -post_meridiem a 1 1 & 1 0 00130701 -postal a 1 2 \ + 1 0 02885934 -postbiblical a 1 1 \ 1 0 02854968 -postdiluvian a 1 1 \ 1 0 02762522 -postdoctoral a 1 1 \ 1 0 02762621 -posted a 1 1 < 1 0 03152480 -posterior a 2 5 ! & ^ = + 2 1 00131426 00123485 -postexilic a 1 1 \ 1 0 02762782 -postganglionic a 1 1 \ 1 0 03101227 -postglacial a 1 1 \ 1 0 02762931 -postgraduate a 1 2 & + 1 0 01211665 -posthumous a 1 1 & 1 1 00817242 -postictal a 1 1 \ 1 0 03101415 -postindustrial a 1 1 & 1 0 01302137 -postmenopausal a 1 1 \ 1 0 02763056 -postmeridian a 1 3 ! & = 1 0 00130596 -postmillennial a 1 1 \ 1 0 03101553 -postmodern a 1 1 \ 1 0 02835329 -postmodernist a 1 1 \ 1 0 02835329 -postmortal a 1 1 + 1 0 00121649 -postmortem a 2 2 ! & 2 0 00121649 00128262 -postnatal a 1 1 ! 1 0 00129467 -postnuptial a 1 2 ! \ 1 0 03043371 -postoperative a 1 1 & 1 0 01169660 -postpaid a 1 1 & 1 0 01709437 -postpartum a 1 0 1 0 00129467 -postpositive a 1 1 \ 1 0 02763140 -postprandial a 1 1 ! 1 0 00129729 -postulational a 1 0 1 0 02653385 -postural a 1 2 \ + 1 0 03101667 -postwar a 1 1 ! 1 1 00130017 -pot-trained a 1 1 & 1 0 01912483 -potable a 1 1 + 1 0 00797113 -potbellied a 1 1 & 1 0 00986457 -potbound a 1 1 & 1 0 01831942 -potent a 4 5 ! & ^ = + 4 3 01830599 01826979 01824244 01825419 -potential a 2 4 ! & = + 2 2 00044353 01884176 -potholed a 1 1 & 1 0 02241714 -potted a 3 3 ! & ; 3 0 01834121 01073194 00004817 -potty a 3 2 & ; 3 0 01465668 01281874 00798384 -potty-trained a 1 1 & 1 0 01912483 -pouch-shaped a 1 1 & 1 0 00536304 -pouched a 1 1 \ 1 0 02763240 -pouchlike a 1 1 & 1 0 00536304 -pound-foolish a 1 1 & 1 0 02422499 -pouring a 1 1 & 1 0 01240805 -poverty-stricken a 1 1 & 1 0 02023430 -powder-puff a 1 1 & 1 1 01484814 -powder_blue a 1 2 & + 1 0 00380178 -powdered a 1 1 & 1 1 02233390 -powdery a 2 2 & + 2 2 02233390 00409319 -powdery-blue a 1 1 & 1 0 00380178 -power-assisted a 1 1 & 1 0 02354001 -power-driven a 1 1 & 1 0 01829149 -powered a 1 2 ! & 1 0 01828391 -powerful a 5 5 ! & ^ = + 5 4 01825671 02323072 01830599 02321809 01261363 -powerless a 1 5 ! & ^ = + 1 1 01827535 -practicable a 2 2 & + 2 2 01835663 01822563 -practical a 4 5 ! & ^ = + 4 2 01834304 01940651 01941814 00863555 -practiced a 2 1 & 2 1 02226162 00936427 -practised a 1 1 & 1 1 00936427 -praetorial a 1 2 \ + 1 0 03101818 -praetorian a 2 3 & \ + 2 0 03101818 00622014 -pragmatic a 3 3 & \ + 3 1 01835409 02783085 01940651 -pragmatical a 2 3 & \ + 2 0 02783085 01835409 -praiseful a 1 1 & 1 0 00906312 -praiseworthy a 1 2 & + 1 0 02585545 -praising a 1 1 & 1 0 00906312 -prakritic a 1 2 \ + 1 0 02761569 -prandial a 1 1 \ 1 0 02783250 -prankish a 1 2 & + 1 0 02122715 -prayerful a 1 1 & 1 0 01782426 -pre-christian a 1 1 \ 1 0 02761944 -pre-columbian a 1 1 \ 1 0 03030096 -pre-emptive a 1 2 & + 1 0 01765237 -pre-existent a 1 2 & + 1 0 00122386 -pre-existing a 1 1 & 1 0 00122386 -pre-jurassic a 1 1 \ 1 0 02753600 -pre-raphaelite a 1 2 \ + 1 0 03102110 -pre-socratic a 1 1 \ 1 0 02762404 -preachy a 1 1 & 1 0 01325273 -preadolescent a 1 1 & 1 0 01649271 -preanal a 1 1 \ 1 0 02783329 -precancerous a 1 1 \ 1 0 02783646 -precarious a 3 2 & + 3 2 00823192 02060496 02095037 -precast a 1 1 & 1 1 02149245 -precative a 1 1 & 1 0 00714763 -precatory a 1 1 & 1 0 00714763 -precautional a 1 1 & 1 0 01764895 -precautionary a 1 2 & + 1 0 01764895 -precedent a 1 2 & + 1 0 00126497 -precedented a 1 1 ! 1 0 00128467 -precedential a 1 2 & + 1 0 02100376 -preceding a 2 4 ! & ^ = 2 1 00125711 01296091 -precious a 4 2 & + 4 2 01462625 02501534 02587556 00148642 -precipitant a 1 2 & + 1 0 01270868 -precipitate a 1 2 & + 1 0 01270868 -precipitating a 1 1 & 1 0 00324680 -precipitous a 2 2 & + 2 0 01270868 01145151 -precise a 2 4 ! & ^ + 2 2 01837744 00631798 -preclinical a 1 1 \ 1 0 02783412 -preclusive a 1 2 & + 1 0 01765132 -precocial a 1 1 ! 1 0 00101452 -precocious a 2 5 ! & ^ + ; 2 1 01839829 00819051 -precognitive a 1 1 & 1 0 01882474 -preconceived a 1 1 < 1 1 03152577 -preconcerted a 1 1 & 1 0 02130391 -preconditioned a 1 1 & 1 0 01844241 -precooked a 1 1 & 1 1 01844441 -precooled a 1 1 & 1 1 02530620 -precordial a 1 2 \ + 1 0 02783795 -precursory a 1 1 & 1 0 01883226 -predaceous a 2 1 & 2 0 00313911 00030798 -predacious a 2 1 & 2 0 00313911 00030798 -predatory a 3 1 & 3 0 01629832 00084022 00030798 -predestinarian a 1 2 \ + 1 0 02783917 -predestinate a 1 1 & 1 0 00341017 -predestined a 1 1 & 1 0 00341017 -predetermined a 1 1 & 1 1 01797633 -predicative a 1 3 ! + ; 1 0 00172993 -predictable a 1 4 ! & ^ + 1 1 01841544 -predictive a 1 2 & + 1 1 01883325 -predigested a 1 1 & 1 1 01182554 -predisposed a 1 1 & 1 1 02362348 -predominant a 2 2 & + 2 0 01066787 00792202 -predominate a 1 1 & 1 0 00792202 -preeminent a 1 2 & + 1 1 02339341 -preemptive a 1 2 & + 1 0 01765237 -preexistent a 1 2 & + 1 1 00122386 -preexisting a 1 1 & 1 0 00122386 -prefab a 1 2 & + 1 0 00673172 -prefaded a 1 1 & 1 0 00406348 -prefatorial a 1 2 & + 1 0 00126339 -prefatory a 1 1 & 1 0 00126339 -prefectural a 1 2 \ + 1 0 03102723 -preferable a 1 1 & 1 1 00733743 -preferent a 1 2 & + 1 0 01462882 -preferential a 1 2 & + 1 1 00065184 -preferred a 2 1 & 2 1 00733743 01462882 -prefigurative a 1 2 & + 1 0 01882162 -prefrontal a 1 1 & 1 0 00131297 -pregnant a 3 3 ! & + 3 2 00173220 01497387 01084900 -prehensile a 3 2 ! & 3 0 00128882 01336084 00029933 -prehistoric a 3 4 & \ + ; 3 1 01730909 02946359 00975011 -prehistorical a 1 1 & 1 0 01730909 -prejudiced a 2 2 ! & 2 1 01616244 00285148 -prejudicial a 2 3 & \ + 2 1 01161984 02762081 -prejudicious a 2 3 & \ + 2 0 02762081 01161984 -prelapsarian a 1 1 \ 1 0 02784068 -preliminary a 1 2 & + 1 1 00878086 -preliterate a 2 1 & 2 2 01422243 00413312 -premarital a 1 1 \ 1 0 03043173 -premature a 3 4 ! & ^ + 3 0 01495535 00815227 00815000 -premedical a 2 2 & \ 2 0 02760500 00126702 -premeditated a 1 3 ! & ^ 1 0 01842763 -premenopausal a 1 1 \ 1 0 02762326 -premenstrual a 1 1 \ 1 0 02784185 -premier a 2 2 & + 2 0 01012990 01012855 -premiere a 1 2 & + 1 0 01012855 -premium a 1 1 & 1 1 02343931 -premonitory a 1 1 & 1 1 01883226 -prenatal a 1 1 ! 1 0 00129103 -prenominal a 1 2 & ; 1 0 00172562 -prenuptial a 1 2 ! \ 1 0 03043173 -preoccupied a 2 2 & + 2 2 02419159 00544478 -preoperative a 1 1 & 1 0 01169533 -prepackaged a 1 1 & 1 1 01739315 -prepacked a 1 1 & 1 0 01739315 -prepaid a 1 1 & 1 0 01709437 -preparative a 1 2 & + 1 1 00126830 -preparatory a 1 2 & + 1 1 00126830 -prepared a 3 4 ! & ^ + 3 2 01843380 02565425 01095085 -preponderant a 1 2 & + 1 0 00792202 -preponderating a 1 1 & 1 0 00792202 -prepositional a 1 2 \ ; 1 1 03102278 -prepossessing a 1 1 & 1 0 00168910 -preposterous a 1 1 & 1 1 02570643 -preprandial a 1 1 ! 1 0 00129612 -prepubertal a 1 3 & + ; 1 0 01490855 -prepubescent a 1 2 & ; 1 1 01490855 -prepupal a 1 1 & 1 1 01491067 -prerecorded a 1 1 & 1 0 01423491 -prerequisite a 1 2 & + 1 0 00849232 -presbyopic a 1 2 & + 1 0 02157399 -prescient a 1 2 & + 1 0 00772137 -prescribed a 4 1 & 4 2 00720212 02129718 01959918 01043505 -prescription a 1 2 ! ; 1 0 01846049 -prescriptive a 1 3 ! + ; 1 0 00732456 -present a 2 4 ! & = + 2 2 01731351 01846413 -present-day a 1 1 & 1 1 00667079 -presentable a 1 1 & 1 1 01993598 -presentational a 1 2 \ ; 1 1 02784317 -preservable a 1 1 & 1 0 00737619 -preservative a 1 2 & + 1 0 01888554 -preserved a 2 2 ! & 2 2 01071423 00737246 -preset a 1 1 & 1 0 01797633 -presidential a 2 4 ! ^ \ + 2 1 02984104 00753504 -presocratic a 1 1 \ 1 0 02762404 -pressed a 1 1 & 1 0 01359697 -pressing a 1 1 & 1 1 00713558 -pressor a 1 2 \ ; 1 0 02784558 -prestigious a 2 2 & + 2 0 01982957 01830703 -prestissimo a 1 1 & 1 0 00982430 -presto a 1 1 & 1 1 00982357 -presumable a 1 1 & 1 0 02418412 -presumptive a 2 2 & + 2 0 01413576 00645281 -presumptuous a 1 2 & + 1 0 00205696 -presymptomatic a 1 1 \ 1 0 02783412 -preteen a 1 2 & + 1 0 01649271 -pretend a 1 1 & 1 0 01937759 -pretended a 1 1 & 1 1 01116857 -pretentious a 3 4 ! & ^ + 3 0 01849288 01848355 02394975 -preternatural a 2 1 & 2 0 01677733 01577086 -pretorial a 1 2 \ + 1 0 03101818 -pretorian a 2 3 & \ + 2 0 03101818 00622014 -pretty a 2 3 & + ; 2 2 00220082 01128871 -pretty-pretty a 1 1 & 1 0 00220241 -prevailing a 1 1 & 1 0 01066787 -prevalent a 1 2 & + 1 0 01066787 -prevenient a 1 1 & 1 0 00122245 -preventable a 1 1 ! 1 0 00343883 -preventative a 2 3 & ^ + 2 0 01763813 01167269 -preventive a 2 4 ! & ^ + 2 1 01167269 01763813 -previous a 3 1 & 3 2 00127137 01729819 00815227 -prewar a 1 1 ! 1 1 00129878 -priapic a 2 1 & 2 0 01477564 01477391 -price-controlled a 1 1 & 1 0 00599628 -priceless a 1 2 & + 1 1 02501367 -pricey a 1 2 & + 1 0 00933599 -prickly a 2 2 & + 2 1 01135420 00145083 -prickly-leafed a 1 1 & 1 0 01702913 -prickly-leaved a 1 1 & 1 0 01702913 -pricy a 1 2 & + 1 0 00933599 -prideful a 2 2 & + 2 0 01891109 00704898 -priestlike a 1 0 1 0 00574114 -priestly a 2 3 ! \ + 2 0 02899666 00574114 -priggish a 1 2 & + 1 0 01880163 -prim a 2 2 & + 2 0 01948092 01880163 -prima a 1 1 & 1 0 01472790 -prima_facie a 1 1 & 1 0 00429793 -primaeval a 1 1 & 1 0 00813589 -primal a 2 1 & 2 0 01277097 00813589 -primary a 5 3 ! & ^ 5 3 01852174 00699521 01277426 01856238 00901060 -prime a 5 3 & \ ; 5 3 01012990 01013171 02342899 03012209 01489557 -primed a 1 1 & 1 1 01931203 -primeval a 1 1 & 1 1 00813589 -primiparous a 1 2 \ + 1 0 03102427 -primitive a 4 3 & + ; 4 3 00818175 00817731 00413432 01912858 -primo a 1 2 & ; 1 0 00228876 -primordial a 1 1 & 1 0 00813589 -princely a 2 2 & + 2 0 02024928 01592108 -principal a 1 1 & 1 1 01277426 -principled a 1 3 ! & ^ 1 0 01551130 -printable a 1 1 ! 1 1 01964933 -prior a 1 2 & + 1 1 00122128 -prismatic a 2 3 & \ + 2 0 03102558 00403654 -prisonlike a 1 1 & 1 0 01065538 -prissy a 2 1 & 2 0 01880163 00984333 -pristine a 2 1 & 2 0 01907293 00418679 -private a 4 4 ! & ^ + 4 1 01858094 01769378 01768086 00952181 -private-enterprise a 1 1 & 1 0 00297755 -privileged a 3 3 ! & ^ 3 1 01864123 02366078 01863066 -privy a 2 1 & 2 0 01860580 01308089 -prix_fixe a 1 0 1 0 02453035 -prize a 1 1 & 1 0 02342899 -prizewinning a 1 1 & 1 1 00228025 -pro a 1 1 ! 1 1 01817301 -pro-american a 1 2 ! \ 1 0 02927944 -pro-choice a 1 1 ! 1 0 02594006 -pro-inflammatory a 1 1 & 1 0 01178024 -pro-life a 1 1 ! 1 0 02594159 -pro_bono a 1 1 & 1 0 01710709 -pro_forma a 1 1 & 1 0 01043619 -pro_tem a 1 1 & 1 1 01757608 -pro_tempore a 1 1 & 1 0 01757608 -proactive a 2 3 ! & ; 2 0 02592147 00039394 -probabilistic a 2 2 \ + 2 0 03103058 03102871 -probable a 2 3 ! & + 2 2 01413247 01412134 -probationary a 1 2 & + 1 0 00556318 -probative a 1 2 & + 1 0 02163774 -probatory a 1 1 & 1 0 02163774 -probing a 1 1 & 1 0 00879918 -problematic a 2 2 & + 2 0 01916784 00746451 -problematical a 2 2 & + 2 0 01916784 00746451 -procaryotic a 1 3 ! \ + 1 0 02860183 -procedural a 2 3 \ + ; 2 1 03103198 00055340 -processed a 3 3 ! & ^ 3 1 01844585 01953297 01951684 -processional a 2 1 \ 2 0 03103520 03103380 -proclaimed a 1 1 & 1 1 00687750 -proconsular a 1 2 \ + 1 0 03103655 -procreative a 1 2 & + 1 1 01081592 -procrustean a 1 1 \ 1 0 02761686 -procumbent a 1 1 & 1 0 01239410 -procurable a 1 1 & 1 0 00184363 -prodigal a 1 2 & + 1 0 02422242 -prodigious a 3 2 & + 3 1 01384730 02164165 01676026 -prodromal a 1 2 \ + 1 0 02784701 -prodromic a 1 2 \ + 1 0 02784701 -productive a 4 4 ! & ^ + 4 3 01865197 01867295 02332604 01081340 -profanatory a 1 1 & 1 0 02057444 -profane a 4 4 ! & ^ + 4 1 00425002 02056880 02054926 02012748 -profaned a 1 1 & 1 0 00574010 -professed a 3 1 & 3 0 01869258 00688296 00688074 -professional a 5 3 ! & \ 5 5 01868724 02839695 01870100 02839505 02556402 -professorial a 1 2 \ + 1 0 02784873 -proficient a 2 3 & \ + 2 1 02226162 02809220 -profit-maximising a 1 1 & 1 0 02536365 -profit-maximizing a 1 1 & 1 1 02536365 -profitable a 1 4 ! & ^ + 1 1 01870889 -profitless a 1 1 & 1 0 02016295 -profligate a 2 2 & + 2 0 02422242 01549568 -profound a 6 4 ! & ^ + 6 2 01872745 01512645 02162934 00693237 00693020 00691141 -profoundly_deaf a 1 1 & 1 0 00682521 -profuse a 1 2 & + 1 1 00015247 -progestational a 2 1 \ 2 0 02983431 02983236 -prognathic a 1 2 & + 1 0 01875560 -prognathous a 1 2 ! & 1 0 01875560 -prognostic a 1 2 & + 1 0 01883325 -prognosticative a 1 2 & + 1 0 01883325 -progressive a 6 5 ! & ^ + ; 6 2 01876006 00576189 01877617 02536518 01668011 00037653 -prohibited a 2 1 & 2 0 01761375 01402498 -prohibitive a 1 1 & 1 0 01765498 -prohibitory a 1 1 & 1 0 01765498 -proinflammatory a 1 1 & 1 0 01178024 -projected a 1 1 & 1 1 01353982 -projectile a 1 2 & + 1 0 00809622 -projecting a 1 1 & 1 0 01353982 -prokaryotic a 1 3 ! \ + 1 0 02860183 -prolate a 2 3 ! & ^ 2 0 02050116 02046199 -proletarian a 1 2 & + 1 0 00259957 -prolific a 2 1 & 2 1 01865967 01082115 -prolix a 1 5 ! & ^ = + 1 0 00548781 -prolonged a 2 1 & 2 1 01439155 01434218 -prolusory a 1 1 \ 1 0 02785018 -prominent a 2 2 & + 2 2 00580805 00579622 -promiscuous a 2 2 & + 2 0 00774006 00361837 -promising a 2 1 & 2 2 01412286 00176387 -promissory a 1 2 \ + 1 0 02997740 -promotional a 2 1 \ 2 1 03103815 03103932 -promotive a 1 2 & + 1 0 00866987 -prompt a 3 2 & + 3 1 01900630 01931676 00978754 -promulgated a 1 1 & 1 0 00469999 -prone a 2 2 & + 2 2 01292884 01239534 -pronged a 2 1 & 2 0 02482509 02479602 -prongy a 1 2 & + 1 0 02479602 -pronominal a 1 1 \ 1 0 02937433 -pronounceable a 1 2 ! & 1 0 01878075 -pronounced a 1 1 & 1 1 01287808 -proof a 1 1 & 1 0 01774720 -proofed a 1 1 & 1 0 01954640 -propaedeutic a 1 2 & + 1 0 00126830 -propagandist a 1 2 \ + 1 0 03022739 -propagandistic a 1 2 \ + 1 1 03022739 -propagative a 1 2 \ + 1 0 02785130 -propellant a 1 2 & + 1 0 00809790 -propellent a 1 2 & + 1 0 00809790 -propelling a 1 1 & 1 0 00809790 -proper a 4 5 ! & ^ = + 4 4 01878466 01938322 01104889 00135455 -propertied a 1 1 & 1 0 00261602 -property-owning a 1 1 & 1 0 00261602 -propertyless a 1 1 & 1 0 00260100 -prophetic a 1 3 ! & + 1 1 01881696 -prophetical a 1 2 & + 1 0 01881696 -prophylactic a 3 2 & + 3 0 01887819 01887638 01167269 -propitiative a 1 2 & + 1 0 00760289 -propitiatory a 2 2 & + 2 0 02940509 00760289 -propitious a 1 5 ! & ^ = + 1 1 00177186 -proportionable a 1 2 & ; 1 0 00482580 -proportional a 2 2 & + 2 1 00482673 00482948 -proportionate a 3 3 ! & + 3 2 00482227 00481737 00894029 -proprietary a 1 3 ! & + 1 0 01109914 -proprioceptive a 1 1 \ 1 0 02868142 -propulsive a 2 3 & \ + 2 0 03104040 00809790 -prosaic a 3 2 & + 3 0 02018649 01346343 00922840 -proscribed a 1 1 & 1 0 01761375 -prosodic a 1 1 \ 1 1 02997329 -prospective a 1 3 ! & ^ 1 1 01883898 -prospering a 1 1 & 1 0 02331857 -prosperous a 4 2 & + 4 2 02022556 02331857 01149195 00177547 -prospicient a 1 2 & + 1 0 01895296 -prostate a 1 1 \ 1 0 02785279 -prostatic a 1 2 \ + 1 0 02785279 -prosthetic a 2 2 \ + 2 0 02785525 02785412 -prosthodontic a 1 2 \ + 1 0 02785647 -prostrate a 2 1 & 2 1 01239040 01239534 -prostyle a 1 1 & 1 0 00139702 -prosy a 1 2 & + 1 0 01346343 -protanopic a 1 2 & + 1 0 02160291 -protean a 1 2 & + 1 0 02505141 -protected a 2 3 ! & ^ 2 0 01884930 00737703 -protecting a 1 1 & 1 1 01888765 -protective a 3 4 ! & ^ + 3 2 01887076 02449177 00311187 -proteinaceous a 1 2 \ + 1 0 02785757 -proteolytic a 1 2 \ + 1 1 03019114 -proterozoic a 1 3 & + ; 1 0 00815406 -protestant a 2 4 & \ + ; 2 1 02952622 00514175 -proto a 1 2 & ; 1 1 00815586 -protogeometric a 1 1 & 1 1 01981448 -prototypal a 1 2 & + 1 0 01011392 -prototypic a 1 2 & + 1 0 01011392 -prototypical a 1 2 & + 1 1 01011392 -protozoal a 1 1 \ 1 0 02891869 -protozoan a 1 2 \ + 1 0 02891869 -protozoic a 1 1 \ 1 0 02891869 -protozoological a 1 2 \ + 1 0 02891733 -protracted a 1 1 & 1 0 01439155 -protractible a 1 1 & 1 0 00944734 -protractile a 1 1 & 1 0 00944734 -protruding a 1 1 & 1 0 01353982 -protrusible a 1 2 & + 1 0 00944848 -protrusile a 1 1 & 1 0 00944848 -protrusive a 1 4 ! & ^ + 1 0 01353226 -protuberant a 1 2 & + 1 0 01353618 -proud a 2 4 ! & ^ = 2 2 01889256 01285136 -proud_of a 1 1 & 1 1 01892506 -proustian a 1 2 \ + 1 0 03033397 -provable a 1 2 & + 1 0 01619105 -proved a 1 2 ! & 1 1 01893724 -proven a 1 1 & 1 0 01893724 -provencal a 1 1 \ 1 0 02761831 -proverbial a 2 3 & \ + 2 1 02990304 01376522 -provident a 2 4 ! & ^ + 2 0 01894758 01898974 -providential a 3 3 & \ + 3 1 01048976 03006513 01180363 -provincial a 2 4 ! & \ + 2 2 02785874 00636547 -provisional a 1 1 & 1 1 00556318 -provisionary a 1 2 & + 1 0 00556318 -provisory a 1 1 & 1 0 00556611 -provocative a 2 4 ! & ^ + 2 1 01896478 02134557 -provoked a 1 1 & 1 0 00114266 -provoking a 1 1 & 1 0 01896925 -prox a 1 1 & 1 0 01733330 -proximal a 1 3 ! + ; 1 1 00778509 -proximate a 2 2 ! & 2 1 01579608 00450147 -proximo a 1 1 & 1 0 01733330 -prudent a 1 4 ! & ^ + 1 0 01898129 -prudential a 1 2 & + 1 0 01899167 -prudish a 1 2 & + 1 0 01880163 -prurient a 1 2 & + 1 1 02133779 -prussian a 1 2 \ + 1 0 03104149 -prying a 1 1 & 1 0 00665156 -pseudo a 1 2 & ; 1 1 01118232 -pseudohermaphrodite a 1 1 & 1 0 01479509 -pseudohermaphroditic a 1 2 & + 1 0 01479509 -pseudonymous a 1 2 & + 1 0 00121376 -pseudoperipteral a 1 1 & 1 0 00140075 -pseudoprostyle a 1 1 & 1 0 00139702 -pseudoscientific a 1 1 & 1 0 02085322 -psychedelic a 3 2 & + 3 0 01777822 00403819 00086801 -psychiatric a 1 2 \ + 1 1 02913004 -psychiatrical a 1 2 \ + 1 0 02913004 -psychic a 2 2 & + 2 0 01780740 01599898 -psychical a 2 2 & + 2 1 01780740 01599898 -psychoactive a 1 2 ! & 1 0 01776974 -psychoanalytic a 1 2 \ + 1 0 02913428 -psychoanalytical a 1 2 \ + 1 0 02913428 -psychogenetic a 2 1 \ 2 0 02906059 02905943 -psychogenic a 2 2 & \ 2 0 02906059 01780937 -psychokinetic a 1 2 & + 1 0 01600041 -psycholinguistic a 1 2 \ + 1 0 02939656 -psychological a 2 3 & \ + 2 2 01781076 02905794 -psychometric a 1 2 \ + 1 0 02913737 -psychomotor a 1 1 \ 1 0 02913870 -psychoneurotic a 1 2 & + 1 0 01583040 -psychopathic a 1 2 & + 1 1 02077253 -psychopathologic a 1 2 & + 1 0 02077253 -psychopathological a 1 2 & + 1 0 02077253 -psychopharmacological a 1 2 \ + 1 1 03011972 -psychosexual a 1 2 \ + 1 0 02886971 -psychosomatic a 1 1 & 1 0 01585781 -psychotherapeutic a 2 3 & \ + 2 1 02914038 01165830 -psychotic a 1 3 & + ; 1 1 02077469 -psychotropic a 1 1 & 1 0 01776974 -pteridological a 1 2 \ + 1 0 02763308 -ptolemaic a 2 3 & \ + 2 0 03033522 01118673 -pubertal a 1 2 \ + 1 0 02786006 -puberulent a 1 2 & ; 1 0 00213610 -pubescent a 2 3 & + ; 2 1 01491240 00213610 -pubic a 1 2 \ + 1 0 02880076 -public a 2 4 ! & ^ + 2 2 01861205 00493297 -public-spirited a 1 1 & 1 0 02099303 -publicised a 1 1 & 1 0 00469603 -publicized a 1 2 ! & 1 1 00469603 -publishable a 1 1 ! 1 0 00471178 -published a 2 2 ! & 2 1 00470930 00469999 -pucka a 1 2 & ; 1 0 02344070 -puckish a 1 2 & + 1 1 02122715 -puddingheaded a 1 1 & 1 0 00435872 -pudendal a 1 2 \ + 1 0 03104332 -pudgy a 1 2 & + 1 0 00987510 -puerile a 2 3 & \ + 2 0 03104461 01492596 -puerperal a 1 2 \ + 1 0 03039648 -puff a 1 1 & 1 0 01796736 -puffed a 1 1 & 1 0 01796736 -puffy a 3 2 & + 3 0 01384081 01174565 00305700 -pug-faced a 1 1 & 1 0 00235988 -pug-nose a 1 1 & 1 0 01607572 -pug-nosed a 1 1 & 1 1 01607572 -pugilistic a 1 2 \ + 1 0 03104585 -pugnacious a 2 2 & + 2 0 02448623 00084353 -puissant a 1 3 & + ; 1 0 01827161 -pukka a 1 2 & ; 1 0 02344070 -pulchritudinous a 1 2 & + 1 0 00220341 -pulmonary a 1 1 \ 1 1 02935115 -pulmonic a 1 1 \ 1 0 02935115 -pulpy a 1 2 & + 1 0 02576918 -pulseless a 1 1 & 1 1 00096595 -pulverised a 1 1 & 1 0 02233390 -pulverized a 1 1 & 1 1 02233390 -pumped a 1 2 & ; 1 0 02407346 -pumped-up a 1 2 & ; 1 1 02407346 -pumped_up a 1 2 & ; 1 0 02407346 -pumpkin-shaped a 1 1 ^ 1 0 02049918 -punch-drunk a 1 2 & ; 1 0 00437223 -punctilious a 1 2 & + 1 0 01838529 -punctual a 1 3 ! & + 1 0 01900349 -puncturable a 1 1 ! 1 0 01776629 -punctured a 1 1 & 1 1 00662139 -punctureless a 1 2 ! & 1 0 01776713 -pungent a 2 2 & + 2 0 02398608 02079313 -punic a 2 2 & + 2 0 03104740 00960094 -punishable a 2 1 & 2 1 01322846 01404370 -punished a 1 2 ! & 1 0 01901777 -punishing a 2 2 & < 2 0 03152759 00836544 -punitive a 1 3 ! & + 1 1 01902468 -punitory a 1 2 & + 1 0 01902468 -punk a 1 2 & ; 1 0 02346013 -puny a 2 2 & + 2 1 02326342 01394558 -pupal a 1 2 & + 1 0 01491541 -pupillary a 1 2 \ + 1 0 02786103 -puppyish a 1 1 & 1 1 01649469 -puppylike a 1 1 & 1 0 01649469 -puranic a 1 2 \ + 1 0 02786215 -purblind a 2 1 & 2 0 02159969 00772492 -purchasable a 2 1 & 2 0 00621207 00185607 -pure a 7 5 ! & ^ = + 7 5 01905653 01520091 00393508 01163860 00862911 01904845 00361125 -pureblood a 1 2 & + 1 0 01903965 -pureblooded a 1 1 & 1 0 01903965 -purebred a 1 4 ! & = + 1 0 01903617 -purgative a 1 2 & + 1 0 00638067 -purgatorial a 2 2 \ + 2 0 03105129 03104988 -purging a 1 1 \ 1 0 03105129 -purifying a 3 3 ! & \ 3 0 03105129 02117694 02116304 -puritanic a 1 2 & + 1 0 01300370 -puritanical a 3 3 & \ + 3 0 03105296 01880163 01300370 -purple a 3 2 & + 3 1 00380312 02017372 01591394 -purple-black a 1 1 & 1 0 00391162 -purple-blue a 1 1 & 1 0 00380483 -purple-brown a 1 1 & 1 0 00380583 -purple-eyed a 1 1 & 1 0 00954576 -purple-flowered a 1 1 & 1 0 00400312 -purple-green a 1 1 & 1 0 00380686 -purple-lilac a 1 1 & 1 0 00380789 -purple-red a 1 1 & 1 0 00380895 -purple-spotted a 1 1 & 1 0 01790070 -purple-tinged a 1 1 & 1 0 00380992 -purple-tinted a 1 1 & 1 0 00380992 -purple-veined a 1 1 & 1 0 01789954 -purple-white a 1 1 & 1 0 00391265 -purplish a 1 1 & 1 0 00380312 -purplish-black a 1 1 & 1 0 00391162 -purplish-blue a 1 1 & 1 0 00380483 -purplish-brown a 1 1 & 1 0 00380583 -purplish-green a 1 1 & 1 0 00380686 -purplish-lilac a 1 1 & 1 0 00380789 -purplish-red a 1 1 & 1 0 00380895 -purplish-white a 1 1 & 1 0 00391265 -purpose-built a 1 1 & 1 0 01910359 -purpose-made a 1 1 & 1 0 01910359 -purposeful a 2 4 ! & ^ + 2 1 01909890 01497594 -purposeless a 2 4 ! & ^ + 2 0 01910488 02503305 -purposive a 2 1 & 2 0 01925242 01910249 -purse-proud a 1 1 & 1 0 01892683 -pursuant a 1 2 & + 1 1 00577405 -pursued a 1 1 < 1 1 03152874 -pursuing a 1 1 & 1 1 00199811 -pursy a 1 1 & 1 0 00268748 -purulent a 1 2 & + 1 0 02114613 -pushful a 1 1 & 1 0 00104318 -pushy a 1 2 & + 1 0 00104318 -pusillanimous a 1 2 & + 1 0 00266420 -pussy a 1 1 & 1 0 02114613 -pustulate a 1 2 & + 1 0 00246175 -put-up a 1 1 & 1 0 01797770 -put-upon a 1 1 & 1 0 02495687 -put_on a 1 1 & 1 0 01116857 -putative a 1 1 & 1 0 00028471 -putdownable a 1 1 & 1 0 01346650 -putrefacient a 1 2 & + 1 0 02115034 -putrefactive a 1 2 & + 1 0 02115034 -putrefiable a 1 1 & 1 0 01753785 -putrescent a 1 2 & + 1 0 01071049 -putrescible a 1 1 & 1 0 01753785 -putrid a 3 3 & \ + 3 0 02786315 01070844 00622354 -putrid-smelling a 1 1 & 1 0 01054630 -puzzled a 1 1 & 1 1 01765926 -puzzling a 2 1 & 2 2 00534524 00430756 -pyaemic a 1 2 \ + 1 0 03105430 -pycnotic a 1 2 \ + 1 0 03009911 -pyemic a 1 2 \ + 1 0 03105430 -pyknic a 1 1 ^ 1 0 00828175 -pyknotic a 1 2 \ + 1 1 03009911 -pyloric a 1 2 \ + 1 0 03105571 -pyogenic a 1 1 \ 1 0 03105674 -pyramidal a 1 2 & + 1 0 01810998 -pyramidic a 1 1 & 1 0 01810998 -pyramidical a 1 2 & + 1 0 01810998 -pyrectic a 1 2 \ + 1 0 03105742 -pyretic a 1 1 ! 1 0 01170069 -pyrochemical a 1 2 \ + 1 0 03105856 -pyroelectric a 1 2 \ + 1 0 03106005 -pyroelectrical a 1 2 \ + 1 0 03106005 -pyrogallic a 1 2 \ + 1 0 03106176 -pyrogenetic a 1 1 \ 1 0 03106279 -pyrogenic a 2 1 \ 2 0 03106279 02852265 -pyrogenous a 2 2 \ + 2 0 03106279 02852265 -pyrographic a 1 2 \ + 1 0 03106446 -pyroligneous a 1 1 \ 1 0 03106565 -pyrolignic a 1 1 \ 1 0 03106565 -pyrolytic a 1 2 \ + 1 0 03106748 -pyrotechnic a 2 3 & \ + 2 0 03106846 01677957 -pyrotechnical a 1 2 \ + 1 0 03106846 -pyrrhic a 3 2 \ + 3 0 03107450 03107285 03107061 -pythagorean a 1 2 \ + 1 0 03036805 -qabalistic a 1 2 & + 1 0 00899738 -qatari a 1 2 \ + 1 0 03107596 -quack a 1 1 & 1 1 01911589 -quadrangular a 1 2 \ + 1 0 02834340 -quadraphonic a 1 2 \ + 1 0 03108193 -quadrasonic a 1 1 \ 1 0 03108193 -quadrate a 1 1 & 1 0 02043499 -quadratic a 2 1 \ 2 0 03108077 03107801 -quadrilateral a 1 1 & 1 0 00238400 -quadrillionth a 1 1 & 1 0 02212914 -quadripartite a 1 1 & 1 0 00239090 -quadriphonic a 1 1 \ 1 0 03108193 -quadrisonic a 1 1 \ 1 0 03108193 -quadruped a 1 1 ! 1 0 00241816 -quadrupedal a 1 2 ! + 1 0 00241816 -quadruple a 2 1 & 2 0 02219287 02219144 -quadruplex a 1 1 & 1 0 02219287 -quadruplicate a 1 1 & 1 0 02219287 -quaggy a 1 2 & + 1 0 02548066 -quaint a 3 2 & + 3 2 00969556 00969763 00973192 -qualified a 5 4 ! & ^ ; 5 3 01911053 01913200 01958259 01540871 00556174 -qualitative a 2 3 ! & \ 2 1 01914521 02976870 -quality a 2 1 & 2 0 02342899 00261486 -quantal a 1 3 \ + ; 1 0 02976983 -quantifiable a 1 2 & + 1 0 01915745 -quantitative a 3 3 ! & \ 3 1 01914930 02977198 02290714 -quantized a 1 2 \ ; 1 0 02976983 -quarantined a 1 1 & 1 0 01327205 -quarrelsome a 1 2 & + 1 1 00603660 -quartan a 1 1 \ 1 0 02997900 -quarterly a 1 2 \ + 1 1 02998046 -quartzose a 1 1 \ 1 0 02998184 -quasi a 1 1 & 1 1 02072806 -quasi-religious a 1 1 & 1 0 02056165 -quasi-royal a 1 1 & 1 0 00654983 -quaternary a 2 1 & 2 0 02219492 02202443 -quaternate a 1 1 & 1 0 02219492 -quavering a 1 1 & 1 1 02304987 -queasy a 3 2 & + 3 0 02560035 02545689 02456157 -quebecois a 1 1 \ 1 0 02977320 -quechuan a 1 2 \ + 1 0 03108623 -queen-size a 1 1 & 1 0 01390344 -queen-sized a 1 1 & 1 0 01390344 -queenlike a 1 1 & 1 0 01592262 -queenly a 1 2 & + 1 0 01592262 -queer a 2 2 & + 2 1 00968010 01201937 -quelled a 1 1 & 1 0 00470528 -quenched a 2 1 & 2 0 01519673 00470528 -quenchless a 1 1 & 1 0 02078673 -querulous a 1 2 & + 1 1 00513981 -questionable a 2 3 ! & ^ 2 1 01916229 00721371 -questioning a 3 1 & 3 1 01766784 02463847 00664879 -quick a 6 2 & + 6 6 00979366 01270486 00032733 01335903 00978754 00919018 -quick-change a 1 1 & 1 0 00346368 -quick-drying a 1 1 & 1 0 00346527 -quick-eared a 1 1 & 1 0 00682841 -quick-frozen a 1 1 & 1 1 01072586 -quick-sighted a 2 1 & 2 0 02158438 01745653 -quick-tempered a 1 1 & 1 0 01135914 -quick-witted a 1 2 & + 1 0 00063087 -quickset a 1 1 & 1 0 01832108 -quicksilver a 1 1 & 1 1 00345189 -quiescent a 4 3 & + ; 4 1 00043231 01923118 00040909 00038623 -quiet a 6 5 ! & ^ + ; 6 5 01922763 01918984 01849170 01455540 00302951 00043615 -quilted a 1 1 & 1 1 02411683 -quincentenary a 1 1 \ 1 0 03108429 -quincentennial a 1 1 \ 1 0 03108429 -quinquefoliate a 1 1 & 1 0 02174089 -quintessential a 1 2 \ + 1 0 02998269 -quintillionth a 1 1 & 1 0 02213029 -quintuple a 1 1 & 1 0 02219660 -quirky a 1 2 & + 1 0 00609564 -quits a 1 1 & 1 0 00892104 -quixotic a 1 1 & 1 1 01837182 -quizzical a 2 1 & 2 0 02123118 01766784 -quondam a 1 1 & 1 0 01729566 -quotable a 2 3 ! & + 2 0 01963958 02587083 -quotidian a 1 1 & 1 0 01674242 -r.c. a 1 1 \ 1 0 02921753 -rabbinic a 1 2 \ + 1 0 02930765 -rabbinical a 1 2 \ + 1 0 02930765 -rabbit-sized a 1 1 & 1 0 02224168 -rabble-rousing a 1 1 & 1 0 01897378 -rabelaisian a 1 2 \ + 1 0 03108861 -rabid a 2 3 & \ + 2 0 02786473 01726859 -racemose a 1 2 & ; 1 0 00741633 -rachitic a 1 2 & + 1 0 02546316 -racial a 2 4 ! & \ + 2 2 03141609 01927654 -racist a 2 1 & 2 0 01928283 00285905 -rackety a 1 2 & + 1 0 01921466 -racking a 1 1 & 1 0 01712529 -racy a 4 2 & + 4 1 02280333 02397234 02132224 01524102 -raddled a 2 1 & 2 0 02582873 02433000 -radial a 4 3 & \ + 4 2 02836910 02836757 02836626 02373055 -radial-ply a 1 1 \ 1 0 02786549 -radially_symmetrical a 1 1 & 1 0 02373309 -radiant a 1 2 & + 1 1 00280463 -radiate a 2 1 & 2 0 02373055 02174188 -radiating a 1 1 & 1 0 00612980 -radical a 5 4 ! & \ ; 5 3 01535270 01642657 01856802 02836479 00318667 -radio a 1 2 \ ; 1 1 02953847 -radio-controlled a 1 1 & 1 0 01429138 -radio-opaque a 1 0 1 0 00434838 -radioactive a 1 3 ! & + 1 1 00426907 -radiographic a 1 2 \ + 1 0 02837145 -radiological a 1 2 \ + 1 0 02786744 -radiolucent a 1 1 ! 1 0 00434692 -radiopaque a 1 2 ! + 1 0 00434838 -radiophonic a 1 2 \ + 1 0 02786866 -radiosensitive a 1 2 & + 1 0 02104890 -radiotelephonic a 1 2 \ + 1 0 02786866 -raffish a 2 1 & 2 0 00971933 00609341 -raftered a 1 1 & 1 1 01210174 -ragged a 3 2 & + 3 3 02582697 02434210 00913131 -raging a 3 1 & 3 0 02511800 01512804 00304144 -raiding a 1 1 & 1 0 01629832 -raimentless a 1 1 & 1 0 00459102 -raining a 1 1 & 1 0 02486797 -rainless a 1 1 & 1 0 02553797 -rainproof a 1 1 & 1 0 01398941 -rainy a 1 2 & + 1 0 02550333 -raisable a 1 1 & 1 0 01524215 -raiseable a 1 1 & 1 0 01524215 -raised a 3 2 ! & 3 2 01207835 00057149 00881432 -raising a 1 1 & 1 1 02536605 -rakish a 2 2 & + 2 0 00971933 00609341 -rallentando a 1 1 & 1 0 02538508 -rallying a 1 1 & 1 1 00867092 -ramate a 1 1 & 1 0 00613866 -rambling a 3 1 & 3 0 02426679 00768397 00763407 -rambunctious a 1 1 & 1 0 01666489 -ramose a 1 1 & 1 0 00613866 -ramous a 1 1 & 1 0 00613866 -rampageous a 1 2 & + 1 0 02512470 -rampant a 3 3 & + ; 3 1 00601032 01236964 00016005 -ramshackle a 1 1 & 1 0 00679717 -rancid a 2 2 & + 2 0 01070321 01054922 -rancorous a 1 2 & + 1 0 00116940 -random a 1 3 ! & + 1 1 01924316 -randomised a 1 1 & 1 0 01961666 -randomized a 1 1 & 1 0 01961666 -randy a 1 1 & 1 0 02131668 -ranging a 1 1 < 1 1 03153018 -rangy a 3 2 & + 3 1 02385492 01524344 01390487 -rank a 5 2 & + 5 1 01002256 01627049 00580039 00520892 00016135 -rank-smelling a 1 1 & 1 0 01054741 -ranked a 1 1 & 1 1 01203986 -ranking a 1 1 & 1 0 02100566 -ransacked a 1 1 & 1 0 01087757 -ransomed a 2 2 & ; 2 0 01452024 01451850 -rapacious a 3 2 & + 3 0 00084022 00031138 00010726 -raped a 1 1 & 1 1 00735709 -rapid a 2 2 & + 2 1 00979697 00979862 -rapt a 1 1 & 1 0 01367008 -raptorial a 2 3 & \ + 2 0 02836314 00084022 -rapturous a 1 2 & + 1 0 01367008 -rare a 6 2 & + 6 3 00488561 01067538 00017024 02417725 01678112 00619691 -rare-roasted a 1 1 & 1 0 00618169 -rarefied a 2 1 & 2 0 02417725 01588619 -rarified a 2 1 & 2 1 02417725 01588619 -raring a 1 1 & 1 0 00811536 -rascally a 2 2 & + 2 0 02122379 01224964 -rash a 2 2 & + 2 0 01900188 00250739 -raspberry-red a 1 1 & 1 0 00371841 -rasping a 1 1 & 1 1 00299476 -raspy a 1 2 & + 1 0 00299476 -rastafarian a 1 2 \ + 1 0 02925195 -ratable a 1 3 & + ; 1 1 02400724 -rateable a 1 3 & + ; 1 0 02400724 -ratified a 1 1 & 1 0 01401413 -ratiocinative a 1 2 & + 1 0 01430716 -rational a 4 6 ! & ^ \ + ; 4 2 01925372 01780343 02929901 01333118 -rationalist a 1 1 \ 1 0 02909517 -rationalistic a 1 2 \ + 1 0 02787073 -rationed a 1 1 & 1 1 00541935 -ratlike a 1 1 \ 1 0 03144265 -rattlebrained a 1 1 & 1 0 02572420 -rattled a 1 2 & ; 1 0 00532560 -rattlepated a 1 1 & 1 0 02572420 -rattling a 2 1 & 2 0 01676517 00874226 -ratty a 3 3 & \ + 3 0 02787210 02583043 00422772 -raucous a 2 1 & 2 2 00300359 01667110 -raunchy a 3 2 & + 3 0 02134701 00425740 00420650 -ravaged a 1 1 & 1 0 00735709 -ravaging a 1 1 & 1 0 00588425 -ravening a 3 1 & 3 0 00084022 00031138 00010726 -ravenous a 2 2 & + 2 0 01269506 00010726 -raving_mad a 1 1 & 1 1 02077625 -ravishing a 1 1 & 1 0 00220502 -raw a 13 4 ! & + ; 13 7 01952643 01319061 00619433 01954943 01705195 00958020 00417204 01813081 01712753 01252399 01005914 00937186 00458266 -rawboned a 1 1 & 1 0 00989721 -rayless a 1 1 \ 1 0 03109032 -razed a 1 1 & 1 0 00735608 -razor-backed a 1 1 & 1 0 00200603 -razor-sharp a 2 1 & 2 1 00781061 00802767 -razorback a 1 2 & + 1 0 00200603 -re-created a 1 1 < 1 1 03153155 -re-entrant a 1 1 ! 1 0 02592015 -re-formed a 1 1 & 1 1 01670856 -reachable a 1 1 & 1 0 00019349 -reactionary a 1 2 & + 1 1 02030562 -reactionist a 1 1 & 1 0 02030562 -reactive a 2 4 ! & + ; 2 0 01928608 02105176 -readable a 1 2 & + 1 1 01405047 -ready a 5 5 ! & ^ = + 5 4 01930512 00185759 02565701 01844742 01335903 -ready-cooked a 1 1 & 1 0 00618274 -ready-made a 3 2 ! & 3 1 00672621 01689442 00675587 -ready-to-eat a 1 1 & 1 0 00673330 -ready-to-wear a 1 1 & 1 0 00672932 -ready_and_waiting a 1 1 & 1 0 01931926 -ready_to_hand a 1 1 & 1 0 00019731 -real a 9 6 ! & ^ = + ; 9 5 01932973 01937994 02119716 00013662 02460964 01939596 00625393 02392406 01941604 -real-time a 1 2 \ ; 1 0 02787452 -realised a 1 1 & 1 0 00521329 -realistic a 3 5 ! & ^ \ + 3 2 01939984 01979985 02787290 -realizable a 2 1 & 2 0 02392537 01821690 -realized a 1 1 & 1 0 00521329 -reanimated a 1 1 & 1 0 00119279 -rear a 1 2 & + 1 1 00197891 -rearing a 1 2 & ; 1 0 01236964 -rearmost a 1 1 & 1 0 00197773 -rearward a 2 2 & + 2 1 00197891 00202250 -reasonable a 3 5 ! & ^ = + 3 2 01943406 01532261 01926229 -reasoned a 1 1 & 1 0 02499511 -reasoning a 1 1 & 1 0 01926089 -reasonless a 3 1 & 3 0 01945139 01926803 01559042 -reassured a 1 1 & 1 1 00339599 -reassuring a 1 4 ! & ^ = 1 1 00196934 -rebarbative a 1 1 & 1 0 01804422 -rebellious a 3 2 & + 3 2 02331088 00589960 00963671 -reborn a 1 1 & 1 1 01957177 -recalcitrant a 2 2 & + 2 0 01614127 00696335 -receding a 1 1 & 1 0 00202411 -receivable a 1 1 & 1 0 00137277 -received a 2 2 & ; 2 0 02297664 00605893 -recent a 2 2 & + 2 2 01642477 01730444 -receptive a 4 3 ! & + 4 1 01773420 01985247 00333611 00007208 -recessed a 2 1 & 2 0 02264521 00536998 -recessional a 1 2 \ + 1 0 03109261 -recessionary a 1 1 \ 1 0 03109141 -recessive a 2 3 ! \ ; 2 0 03109141 00793988 -rechargeable a 1 1 & 1 0 01759251 -recherche a 1 1 & 1 0 00850552 -reciprocal a 2 3 ! & + 2 1 01945550 00769761 -reciprocative a 2 2 & + 2 0 01946764 01946595 -reciprocatory a 2 2 & + 2 0 01946764 01946595 -reckless a 2 2 & + 2 1 00250739 00312757 -reclaimable a 1 1 & 1 0 02496425 -reclaimed a 1 1 & 1 1 01451937 -recluse a 1 2 & + 1 0 02250691 -reclusive a 2 2 & + 2 0 02250691 01859055 -recognisable a 1 1 & 1 0 01272920 -recognised a 2 1 & 2 0 01636507 00027599 -recognizable a 2 1 & 2 2 01747996 01272920 -recognized a 2 1 & 2 1 00027599 01636507 -recoilless a 1 1 \ 1 0 02787627 -recollective a 1 2 ^ + 1 0 02005756 -recombinant a 1 1 \ 1 0 02787740 -reconcilable a 1 2 ! & 1 0 01986483 -reconciled a 1 1 & 1 0 00577612 -reconciling a 1 1 & 1 1 00046339 -recondite a 1 2 & + 1 0 00899226 -reconstructed a 1 1 ! 1 1 00288685 -reconstructive a 1 2 & + 1 0 00585856 -record-breaking a 1 1 & 1 0 00228967 -recorded a 2 2 ! & 2 1 01422956 01958512 -recoverable a 1 2 ! & 1 1 01956060 -recovered a 2 1 & 2 0 02541012 01450888 -recovering a 1 1 & 1 0 02543598 -recreant a 2 2 & + 2 0 00963858 00265496 -recreational a 2 3 & \ + 2 2 02787831 01869634 -recriminative a 1 2 & + 1 0 00925287 -recriminatory a 1 2 & + 1 0 00925287 -recrudescent a 1 2 & + 1 0 02013422 -rectal a 1 2 \ + 1 0 02933426 -rectangular a 2 2 & + 2 2 02048977 01720642 -rectifiable a 1 1 & 1 0 01963509 -rectified a 1 1 & 1 0 00634559 -rectilineal a 1 1 & 1 0 00658752 -rectilinear a 1 1 & 1 0 00658752 -rectosigmoid a 1 1 \ 1 0 02933540 -recumbent a 1 2 & + 1 0 01238201 -recuperative a 1 2 & + 1 0 01167540 -recurrent a 1 2 & + 1 1 00592880 -recurring a 1 1 & 1 0 00593276 -recursive a 1 1 & 1 0 00092848 -recurvate a 1 1 & 1 0 02316626 -recurved a 1 1 & 1 0 02316626 -recusant a 2 2 & + 2 0 01691302 01614558 -recyclable a 1 1 & 1 0 02496425 -red a 3 2 & + 3 3 00381097 00248560 00395626 -red-blind a 1 2 & + 1 0 02160291 -red-blooded a 1 1 & 1 0 01171746 -red-brick a 1 2 & ; 1 0 01536445 -red-brown a 1 1 & 1 0 00381525 -red-carpet a 1 1 & 1 0 00488697 -red-coated a 1 1 & 1 0 00456576 -red-faced a 2 1 & 2 1 00395626 00531887 -red-flowered a 1 1 & 1 0 00400395 -red-fruited a 1 1 & 1 0 01082302 -red-gray a 1 1 & 1 0 00391368 -red-grey a 1 1 & 1 0 00391368 -red-handed a 1 1 & 1 0 01322959 -red-hot a 5 1 & 5 0 02132967 01641791 01256973 01249768 00977372 -red-lavender a 1 1 & 1 0 00381636 -red-letter a 1 1 & 1 0 01040825 -red-orange a 1 1 & 1 0 00381861 -red-purple a 1 1 & 1 0 00381975 -red-rimmed a 1 1 & 1 1 02027480 -red-streaked a 1 1 & 1 0 01790150 -red-striped a 1 1 & 1 0 01790150 -red-violet a 1 1 & 1 0 00382074 -red_carpet a 1 1 & 1 0 00488697 -redbrick a 1 2 & ; 1 0 01536445 -reddened a 2 1 & 2 0 00395626 00270496 -reddish a 1 1 & 1 0 00381097 -reddish-brown a 1 1 & 1 0 00381525 -reddish-gray a 1 1 & 1 0 00391368 -reddish-grey a 1 1 & 1 0 00391368 -reddish-lavender a 1 1 & 1 0 00381636 -reddish-orange a 1 1 & 1 0 00381861 -reddish-pink a 1 1 & 1 0 00381766 -reddish-striped a 1 1 & 1 0 01790150 -reddish-violet a 1 1 & 1 0 00382074 -reddisn-purple a 1 1 & 1 0 00381975 -redeemable a 3 1 & 3 0 01956229 00916965 00635327 -redeemed a 1 2 & ; 1 0 01452024 -redeeming a 2 1 & 2 0 01130733 01124574 -redemptional a 1 2 \ + 1 0 03109399 -redemptive a 2 3 & \ + 2 0 03109399 01130733 -redemptory a 1 2 \ + 1 0 03109399 -redheaded a 1 1 & 1 1 00244410 -redistributed a 1 1 & 1 0 01108427 -redolent a 3 2 & + 3 0 01977669 01056897 01052428 -redoubled a 1 1 & 1 1 00881551 -redoubtable a 2 1 & 2 1 00195383 01983432 -reduced a 2 1 & 2 2 00881735 01213090 -reducible a 1 2 ! + 1 0 00883611 -reductionist a 1 1 \ 1 0 02979593 -reductive a 1 2 & + 1 0 00050446 -redundant a 2 2 & + 2 1 01581305 00549826 -redux a 1 1 & 1 0 02013630 -reechoing a 1 1 & 1 0 02009993 -reedlike a 1 1 & 1 0 00989830 -reedy a 2 2 & + 2 0 01921639 00989830 -reefy a 1 2 & + 1 0 00692548 -reeking a 2 1 & 2 1 02549857 01054832 -reentrant a 1 0 1 0 02592015 -referable a 1 1 & 1 0 00171872 -referenced a 1 1 & 1 0 00786485 -referent a 1 2 & + 1 0 00722886 -referential a 1 2 & + 1 0 00723015 -refined a 5 3 ! & ^ 5 2 01947266 01953297 02271177 01142069 00850648 -reflected a 1 2 ! & 1 0 02008615 -reflecting a 1 1 & 1 0 02008245 -reflective a 3 3 ! & + 3 1 02419434 02007882 01333331 -reflex a 1 3 & + ; 1 0 02522669 -reflexed a 1 1 & 1 0 02313563 -reflexive a 2 3 & + ; 2 0 02522669 00202508 -reform-minded a 1 2 & ; 1 0 00576189 -reformable a 1 1 & 1 0 00635327 -reformative a 1 2 & + 1 0 01197386 -reformatory a 1 2 & + 1 0 01197386 -reformed a 2 1 & 2 1 01691975 01957312 -reformist a 1 3 & + ; 1 0 00576189 -refractile a 1 1 \ 1 0 02788005 -refractive a 2 3 & \ + 2 0 02788005 02312918 -refractory a 3 3 & + ; 3 0 02452562 01999941 01614127 -refractory-lined a 1 1 \ 1 0 02788252 -refreshed a 1 1 & 1 1 02434797 -refreshful a 1 1 & 1 0 01357027 -refreshing a 2 1 & 2 1 01357027 01642245 -refrigerant a 1 2 & + 1 0 01253661 -refrigerated a 1 1 & 1 1 01253879 -refrigerating a 1 1 & 1 0 01253661 -refulgent a 1 2 & + 1 0 00280463 -refutable a 1 1 & 1 0 00721371 -regal a 1 1 & 1 1 01591394 -regardant a 1 2 & ; 1 1 00202677 -regardful a 1 1 & 1 0 01994180 -regardless a 1 1 & 1 0 01194099 -regenerate a 1 3 ! & ^ 1 0 01956964 -regenerating a 1 1 < 1 1 03153255 -regent a 1 3 & + ; 1 0 01827261 -regimental a 1 2 \ + 1 1 03109663 -regimented a 1 1 & 1 0 00599745 -regional a 2 2 & \ 2 2 02871858 02408977 -registered a 3 3 ! & ; 3 0 01958898 01958027 00786624 -regnant a 1 1 & 1 0 01827432 -regressive a 2 5 ! & ^ + ; 2 0 01877919 01876957 -regretful a 1 2 ! ^ 1 0 01150475 -regrettable a 1 1 & 1 0 01052038 -regular a 13 6 ! & ^ = + ; 13 7 01959294 02469577 02296632 02366927 00489863 02302187 01067003 01970777 01961937 00638501 02372520 01595312 01089275 -regulated a 1 1 ! 1 1 01962310 -regulation a 1 1 & 1 1 02296824 -regulative a 1 1 & 1 0 02004685 -regulatory a 1 2 & + 1 1 02004685 -rehabilitative a 2 3 ! & + 2 0 01903412 00585856 -reigning a 1 1 & 1 0 01827432 -reincarnate a 1 1 & 1 0 00630727 -reinforced a 2 1 & 2 0 02323358 01288690 -reinvigorated a 1 1 & 1 0 02434797 -reiterative a 1 2 & + 1 0 01964632 -rejected a 1 1 & 1 0 01463735 -rejective a 1 3 ! & + 1 0 00076341 -rejoicing a 1 1 & 1 1 00704898 -related a 2 4 ! & ^ + 2 2 01972820 01971237 -related_to a 1 1 & 1 1 01972820 -relatiative a 1 1 & 1 0 01903160 -relational a 1 1 & 1 0 00006245 -relative a 2 3 ! & + 2 2 00006032 00482673 -relativistic a 2 3 \ + ; 2 1 02835887 02836161 -relaxant a 1 2 & + 1 0 02309004 -relaxed a 1 3 ! & ^ 1 1 02407603 -relaxing a 1 1 & 1 0 01922227 -releasing a 1 2 & ; 1 0 00854869 -relentless a 2 2 & + 2 2 01785341 00593071 -relevant a 1 3 ! & + 1 1 01975138 -reliable a 3 4 ! & ^ + 3 3 00724081 02465519 02465115 -reliant a 1 2 & + 1 0 00727113 -relieved a 2 1 & 2 1 01519465 01353982 -religious a 4 4 ! & ^ + 4 2 02056265 01783158 01782981 02085740 -relinquished a 1 1 & 1 0 01624533 -relocated a 1 1 & 1 0 02126796 -reluctant a 3 2 & + 3 3 02566453 01293882 00811969 -remaining a 1 1 & 1 1 00926505 -remarkable a 2 1 & 2 2 01678417 02163602 -rembrandtesque a 1 1 \ 1 0 03037712 -remediable a 1 1 ! 1 0 01962631 -remedial a 2 2 & + 2 1 00232986 01165943 -remindful a 1 1 & 1 0 01977669 -reminiscent a 1 2 & + 1 0 01977669 -remiss a 1 2 & + 1 0 00755220 -remittent a 1 2 & + 1 0 00883188 -remorseful a 1 1 & 1 1 01743506 -remorseless a 1 1 & 1 1 01508086 -remote a 5 2 & + 5 4 00442917 01413084 00443075 00020103 00450606 -remote-controlled a 1 1 & 1 0 01479940 -removable a 2 2 ! & 2 0 01526582 00898132 -removed a 2 1 & 2 0 00451155 00443075 -remunerated a 1 1 & 1 0 01708898 -remunerative a 2 2 & + 2 1 01708663 01871774 -renal a 1 1 \ 1 0 02883599 -renascent a 1 2 & + 1 0 02013864 -rending a 1 1 & 1 1 00300469 -renegade a 1 2 & + 1 0 00963858 -renewable a 2 2 ! & 2 0 01962982 00925820 -renewed a 1 1 & 1 1 02013758 -renewing a 1 1 & 1 1 01357742 -reniform a 1 1 & 1 0 02170546 -renowned a 1 1 & 1 0 01375831 -rent-free a 1 1 & 1 0 01710809 -rentable a 1 1 ! 1 0 01963294 -rental a 2 2 \ + 2 0 02892164 02892033 -renunciant a 1 2 & + 1 0 01301056 -renunciative a 1 1 & 1 0 01301056 -reorganised a 1 1 & 1 0 01670982 -reorganized a 1 1 & 1 0 01670982 -repand a 1 1 & 1 0 02245020 -reparable a 1 2 ! & 1 0 01963509 -repayable a 1 1 & 1 1 00137501 -repeatable a 1 1 ! 1 0 01963958 -repeated a 1 1 & 1 1 00592880 -repellant a 2 2 & + 2 0 01804422 01625893 -repellent a 3 2 & + 3 0 01804422 01625893 00007990 -repelling a 1 1 & 1 0 01625893 -repentant a 1 4 ! & ^ + 1 1 01743217 -repetitious a 1 2 & + 1 0 01964367 -repetitive a 2 3 ! & + 2 1 00592539 01964367 -replaceable a 1 4 ! & ^ + 1 0 01978395 -replete a 2 1 & 2 0 02300501 01085442 -reply-paid a 1 1 & 1 0 01709542 -reportable a 2 2 ! & 2 0 00472057 00471842 -reported a 1 2 ! & 1 1 00471348 -reposeful a 1 1 & 1 0 01922227 -reprehensible a 1 2 & + 1 1 02035765 -representable a 1 2 & ; 1 0 00943683 -representational a 1 2 ! & 1 1 01979053 -representative a 3 3 ! & + 3 2 02469407 01981699 00716562 -represented a 1 1 & 1 0 01714985 -repressed a 1 1 & 1 1 01316467 -repressing a 1 1 & 1 0 02004176 -repressive a 1 2 & + 1 1 02004176 -reproachful a 1 1 & 1 0 00996864 -reprobate a 1 2 & + 1 0 00621524 -reproducible a 1 3 ! & + 1 1 01867996 -reproductive a 1 2 & + 1 0 01081592 -reproving a 1 1 & 1 0 00996864 -reptilian a 1 2 \ + 1 0 02832458 -republican a 2 3 & \ + 2 1 02788378 00716892 -repudiative a 1 2 & + 1 0 00076739 -repugnant a 1 2 & + 1 0 01625063 -repulsive a 3 5 ! & = + ; 3 1 01625063 00170156 00221934 -reputable a 1 5 ! & ^ = + 1 1 01982646 -requested a 1 1 ! 1 0 01965287 -required a 2 1 & 2 2 01580775 00848466 -requisite a 1 2 & + 1 0 01580775 -rescindable a 1 1 & 1 0 01760293 -rescued a 1 1 & 1 0 01451937 -resentful a 1 2 ! & 1 1 00116529 -reserved a 2 3 ! & ^ 2 0 01988324 01987341 -resettled a 1 1 & 1 0 02126796 -resident a 2 2 ! + 2 2 02125409 02129136 -residential a 2 3 ! \ + 2 2 00485044 03109795 -residual a 1 2 \ + 1 1 02835654 -residuary a 2 3 \ + ; 2 0 03109963 02835654 -resilient a 2 2 & + 2 0 02280566 00843595 -resinated a 1 1 \ 1 0 02853146 -resinlike a 1 1 \ 1 0 02788554 -resinous a 1 2 & + 1 0 00054364 -resiny a 1 2 & + 1 1 00054364 -resistant a 5 2 & + 5 1 02363614 02435383 01774869 00695938 00007990 -resistible a 1 1 ! 1 0 01989012 -resistive a 2 3 & \ + 2 1 03110183 00695938 -resistless a 2 1 & 2 0 01989175 00040058 -resolute a 2 4 ! & ^ + 2 1 01989669 00685924 -resolvable a 2 1 & 2 0 02266451 01986759 -resolved a 2 1 & 2 1 01991267 02267012 -resonant a 2 2 & + 2 1 02010536 01977669 -resonating a 1 1 & 1 0 02010536 -resounding a 1 1 & 1 1 02010536 -resourceful a 1 2 & + 1 0 00307182 -resourceless a 1 1 & 1 0 02024658 -respectable a 3 4 ! & ^ + 3 3 01993140 01983162 00624576 -respected a 1 1 & 1 1 01983548 -respectful a 2 4 ! & ^ + 2 1 01993940 02012333 -respective a 1 1 & 1 1 00494409 -respiratory a 1 2 \ + 1 1 03110322 -resplendent a 1 2 & + 1 1 00219389 -respondent a 1 2 & + 1 0 01999608 -responsible a 3 5 ! & ^ = + 3 2 01996377 00324878 02465350 -responsible_for a 1 1 & 1 1 00324878 -responsive a 3 5 ! & ^ \ + 3 0 03110741 01999306 02105176 -rested a 1 3 ! & ^ 1 0 02434605 -restful a 1 3 ! & + 1 0 01922227 -restive a 2 2 & + 2 1 02406370 01737503 -restless a 3 3 ! & + 3 2 00590271 01563578 01922562 -restorative a 2 2 & + 2 0 01357742 01167540 -restrained a 5 3 ! & ^ 5 2 00721050 02000118 02402078 01849170 00326202 -restricted a 3 4 ! & ^ ; 3 2 02002227 01540871 00415931 -restricting a 1 1 & 1 1 02004023 -restrictive a 2 3 ! & + 2 2 02003725 01888941 -resultant a 1 2 & + 1 1 00122844 -resupine a 1 1 & 1 0 01239781 -resurgent a 1 2 & + 1 0 02013864 -resuscitated a 1 1 & 1 0 02014048 -retained a 1 1 & 1 1 00737801 -retaliatory a 1 2 & + 1 0 01903160 -retarded a 1 3 ! & ^ 1 1 01840366 -retentive a 3 5 ! & ^ \ + 3 1 02005756 03110952 01772914 -reticent a 3 2 & + 3 0 02383709 00721050 00157268 -reticular a 1 2 & + 1 0 02006228 -reticulate a 1 2 ! & 1 1 02006228 -retinal a 1 2 \ + 1 1 02979139 -retired a 1 1 & 1 1 00035368 -retiring a 3 1 & 3 0 01539444 01296091 00157268 -retractable a 1 1 & 1 0 02007663 -retracted a 1 1 & 1 0 00202772 -retractile a 1 2 ! & 1 0 02007508 -retral a 2 1 & 2 0 00202875 00132040 -retributive a 2 1 & 2 0 01903160 01370305 -retributory a 2 1 & 2 0 01903160 01370305 -retrievable a 1 1 & 1 0 01956370 -retro a 1 2 & + 1 0 01884744 -retroactive a 2 3 ! & ; 2 0 02592396 01884744 -retroflex a 2 2 & ; 2 0 00203030 00201802 -retroflexed a 1 1 & 1 0 00203030 -retrograde a 4 4 ! & = ; 4 0 00770114 00130151 01877299 00202875 -retrogressive a 1 2 & + 1 1 01877299 -retrorse a 1 3 ! & ; 1 0 00123804 -retrospective a 1 4 ! & ^ + 1 0 01884539 -retrousse a 1 1 & 1 0 02140144 -returnable a 1 2 ! & 1 0 00776922 -returning a 2 1 & 2 0 01877416 00203123 -reusable a 1 1 & 1 0 02496425 -revealing a 2 2 ! & 2 1 01305344 02091165 -revelatory a 2 2 & + 2 0 02091300 01882292 -revenant a 2 2 & \ 2 0 02788651 00593276 -revengeful a 1 1 & 1 0 01041634 -reverberant a 1 3 ! & + 1 0 02009280 -reverberating a 1 1 & 1 0 02010536 -reverberative a 1 2 & + 1 0 02010536 -revered a 1 1 & 1 1 01226660 -reverend a 1 1 & 1 0 02056566 -reverent a 2 4 ! & ^ + 2 0 02011810 01781882 -reverential a 1 2 & + 1 0 02012333 -reverse a 3 3 ! & + 3 1 00202250 00203917 00202095 -reversed a 2 1 & 2 0 02467982 00201961 -reversible a 4 4 ! & + ; 4 1 01758934 01759676 01760488 00346626 -reversionary a 1 3 \ + ; 1 0 03111065 -reversive a 1 2 & + 1 0 00203123 -revertible a 1 2 & ; 1 0 00777106 -reverting a 1 1 & 1 0 01877416 -revised a 2 1 & 2 1 00353101 00354176 -revitalised a 1 1 & 1 0 02014140 -revitalising a 1 1 & 1 0 01357742 -revitalized a 1 1 & 1 0 02014140 -revitalizing a 1 1 & 1 0 01357742 -revivalistic a 1 3 \ + ; 1 0 02955216 -revived a 2 2 ! & 2 0 02013197 00119279 -reviving a 1 1 & 1 0 01357742 -revocable a 1 2 ! & 1 0 01760132 -revokable a 1 1 & 1 0 01760132 -revolting a 1 1 & 1 0 01625893 -revolutionary a 4 4 ! & \ + 4 1 01642657 02939919 02835481 02015238 -revolved a 1 1 & 1 0 02468110 -rewardful a 1 1 & 1 0 02015891 -rewarding a 1 3 ! & ^ 1 1 02015571 -rh-negative a 1 1 ! 1 0 02592750 -rh-positive a 1 1 ! 1 0 02592611 -rhapsodic a 1 1 & 1 0 01367008 -rhenish a 1 2 \ + 1 0 03111283 -rheologic a 1 3 \ + ; 1 0 02980247 -rheological a 1 3 \ + ; 1 0 02980247 -rhetorical a 2 5 ! & ^ \ + 2 0 02938854 02016535 -rheumatic a 1 2 & + 1 0 01173795 -rheumatoid a 1 1 & 1 0 01173795 -rheumy a 2 2 & + 2 0 02550023 01173795 -rhinal a 1 1 \ 1 0 02978781 -rhizoidal a 1 1 \ 1 0 03111573 -rhizomatous a 1 2 \ + 1 0 03111451 -rhodesian a 1 2 \ + 1 0 02788779 -rhombic a 1 2 \ + 1 0 02948892 -rhombohedral a 1 3 & + ; 1 0 02373467 -rhomboid a 1 2 \ + 1 0 03111656 -rhomboidal a 1 2 \ + 1 0 03111656 -rhymed a 1 2 ! & 1 0 01965636 -rhymeless a 1 0 1 0 01966315 -rhyming a 1 1 & 1 0 01965636 -rhythmic a 1 3 & ^ + 1 1 02019021 -rhythmical a 1 4 ! & ^ + 1 1 02019021 -riant a 1 1 & 1 0 01149358 -ribald a 1 2 & + 1 0 00424787 -ribbed a 2 2 ! & 2 0 02021540 02240379 -ribbon-shaped a 1 1 & 1 0 02149412 -ribbonlike a 1 1 & 1 0 02414749 -ribbony a 1 2 & + 1 0 02414749 -ribless a 1 1 ! 1 0 02021818 -riblike a 1 1 & 1 0 02021748 -rich a 12 6 ! & ^ = + ; 12 6 02021905 02024143 02501693 01081340 00403385 01866429 02026785 02024758 02560402 02397234 01457369 00014490 -rickettsial a 1 2 \ + 1 0 02892277 -rickety a 3 2 & + 3 1 02292797 02546316 02040233 -riddled a 2 1 & 2 1 00680791 01085937 -ridged a 1 1 < 1 0 03153361 -ridiculous a 3 2 & + 3 2 00752847 02570643 01266397 -riemannian a 1 2 \ + 1 0 03037799 -rife a 2 1 & 2 0 01066787 00015720 -rifled a 1 1 ! 1 0 02248078 -rigged a 1 3 ! & ; 1 0 01093323 -right a 14 6 ! & ^ = + ; 14 6 02031986 00631391 01879261 02034828 00633410 00135455 02030080 02082081 02029047 01879464 01720930 01693585 01661289 00023278 -right-angled a 1 1 & 1 0 02043587 -right-down a 1 1 & 1 0 00520892 -right-eyed a 1 1 & 1 0 00954678 -right-hand a 3 1 & 3 2 02032730 02029047 01197634 -right-handed a 2 4 ! & ^ + 2 0 02028612 00441927 -right-minded a 1 1 & 1 0 00633581 -right-side-out a 1 1 & 1 0 02468453 -right-side-up a 1 1 & 1 0 02468538 -right-wing a 1 1 & 1 0 02030793 -right_smart a 1 2 & ; 1 0 00624913 -righteous a 2 4 ! & ^ + 2 1 02036578 01549087 -rightful a 2 2 & + 2 1 01370475 01407267 -rightish a 1 1 & 1 0 02030704 -rightist a 1 2 & + 1 0 02030793 -rightmost a 1 1 & 1 0 02032617 -rigid a 5 4 ! & + ; 5 3 01023706 02436995 01029151 01026721 01564603 -rigorous a 2 2 & + 2 2 00915556 00711059 -riled a 1 1 & 1 0 01806106 -rimed a 1 1 & 1 0 01253254 -rimeless a 1 0 1 0 01966315 -riming a 1 1 & 1 0 01965636 -rimless a 1 1 ! 1 1 02027609 -rimmed a 1 2 ! & 1 0 02027147 -rimose a 1 1 & 1 0 02247489 -rimy a 1 1 & 1 0 01253254 -ring-shaped a 1 1 & 1 0 02044860 -ringed a 3 1 & 3 0 02044860 01790259 01482020 -ringleted a 1 1 & 1 0 01030605 -ringlike a 1 1 & 1 0 02042970 -riotous a 3 2 & + 3 2 00015247 01923720 01549568 -rip-roaring a 1 1 & 1 0 01921466 -riparian a 1 1 \ 1 0 02939272 -ripe a 5 3 ! & + 5 2 01493173 01931807 01661289 01492257 00816839 -ripened a 1 1 & 1 0 01493423 -ripping a 1 1 & 1 1 00300469 -rippled a 2 1 & 2 0 00911762 00088157 -risen a 1 1 & 1 0 02491308 -risible a 1 2 & + 1 0 01265308 -rising a 4 2 ! & 4 1 02486932 02484530 01733082 01642843 -risk-free a 1 1 & 1 0 02058529 -riskless a 1 2 & + 1 0 02058529 -risky a 2 2 & + 2 1 02059811 02274537 -risque a 1 1 & 1 0 02132224 -rit. a 1 1 & 1 0 02538508 -ritardando a 1 1 & 1 0 02538508 -ritenuto a 1 1 & 1 0 02538508 -ritual a 2 2 \ + 2 0 02892656 02892389 -ritualistic a 1 2 \ + 1 0 03111832 -ritzy a 1 3 & + ; 1 0 00850875 -rivalrous a 1 2 & + 1 0 00512941 -riveting a 1 1 & 1 0 01344171 -roadless a 1 1 & 1 0 00020241 -roan a 1 2 & + 1 0 00400472 -roaring a 1 1 & 1 0 02331857 -roast a 1 2 & + 1 0 00618377 -roasted a 1 1 & 1 1 00618377 -robed a 1 1 & 1 0 00454440 -robotic a 2 2 & \ 2 0 02939781 01499999 -robotlike a 1 1 & 1 0 01499999 -robust a 4 4 ! & ^ + 4 1 02037708 02397234 02323521 01951112 -robustious a 1 1 & 1 0 01666489 -rock-bottom a 1 1 & 1 0 01213090 -rock-inhabiting a 1 1 & 1 0 01312466 -rock-loving a 1 1 & 1 0 01172035 -rock-ribbed a 2 1 & 2 0 02241834 01025212 -rock-steady a 1 1 & 1 1 02301969 -rockbound a 1 1 & 1 0 02241834 -rocket-propelled a 1 1 \ 1 0 02788916 -rocklike a 1 1 & 1 1 01151951 -rocky a 4 2 & + 4 1 02241988 02243567 02293141 00747910 -rococo a 1 1 & 1 0 01796844 -rod-shaped a 2 1 & 2 0 02144988 02047413 -rodlike a 1 1 & 1 0 02047413 -roentgenographic a 1 2 \ + 1 0 02998438 -roguish a 2 2 & + 2 0 02122379 01224964 -roiled a 2 1 & 2 0 01806106 00087597 -roiling a 1 1 & 1 1 00087597 -roily a 1 1 & 1 0 00087597 -rolled a 3 2 & ; 3 0 02318057 01878227 00253469 -rolled_into_one a 1 1 & 1 1 01330662 -rollicking a 1 1 & 1 0 02122132 -rolling a 1 1 & 1 1 01878227 -roly-poly a 1 2 & + 1 0 00987510 -romaic a 1 2 \ + 1 0 03112046 -roman a 4 3 \ + ; 4 2 02921569 02921325 02922086 02921753 -roman_catholic a 1 1 \ 1 0 02921753 -romance a 1 1 \ 1 0 03080351 -romani a 1 1 \ 1 0 03112177 -romanian a 1 2 \ + 1 0 02962272 -romanic a 1 2 + ; 1 0 02921325 -romanist a 1 1 \ 1 0 02921753 -romansh a 1 1 \ 1 0 02789031 -romantic a 3 3 & \ + 3 2 02789151 01465214 01837182 -romanticist a 1 1 \ 1 0 02789151 -romanticistic a 1 2 \ + 1 0 02789151 -romany a 1 1 \ 1 0 03112177 -romish a 1 1 \ 1 0 02921753 -roofed a 1 2 ! ; 1 0 01700075 -roofless a 2 2 ! & 2 0 01700293 01050603 -roomy a 1 2 & + 1 0 00476249 -rooseveltian a 1 2 \ + 1 0 03037924 -rootbound a 2 1 & 2 0 01831942 00256042 -rooted a 1 1 & 1 0 01564881 -rootless a 1 1 & 1 0 02128736 -ropey a 3 4 & \ + ; 3 0 02789409 02416765 02347742 -ropy a 3 4 & \ + ; 3 0 02789409 02416765 02347742 -rosaceous a 2 3 & \ + 2 0 03141878 00382173 -rose a 1 1 & 1 1 00382173 -rose-cheeked a 1 1 & 1 0 01170823 -rose-colored a 2 1 & 2 0 01664156 00400644 -rose-lavender a 1 1 & 1 0 00382411 -rose-lilac a 1 1 & 1 0 00382411 -rose-mauve a 1 1 & 1 0 00382512 -rose-purple a 1 1 & 1 0 00382594 -rose-red a 1 1 & 1 0 00382321 -rose-tinged a 1 1 & 1 0 00382693 -rose-tinted a 1 1 & 1 0 00382693 -roseate a 1 1 & 1 0 00382173 -rosicrucian a 1 1 \ 1 0 03142022 -rostrate a 1 1 & 1 0 00207034 -rosy a 4 2 & + 4 3 01664156 01170823 00371611 00176676 -rosy-cheeked a 1 1 & 1 0 01170823 -rosy-colored a 1 1 & 1 0 00400644 -rosy-purple a 1 1 & 1 0 00382594 -rot-resistant a 1 1 & 1 0 01775200 -rotary a 2 2 & \ 2 1 02998561 00676271 -rotatable a 1 1 & 1 0 01524445 -rotated a 1 1 & 1 1 02468110 -rotational a 1 1 \ 1 0 03112379 -rotatory a 1 2 \ + 1 0 02939919 -rotted a 1 1 & 1 0 02275892 -rotten a 3 3 & + ; 3 1 01127782 02275892 01070538 -rotund a 3 2 & + 3 0 02047496 01457486 00987180 -rouged a 1 1 & 1 0 01714633 -rough a 14 5 ! & ^ + ; 14 7 02238462 01951197 00915976 00747910 00304949 00299476 00084353 02245403 02243567 00664167 02229584 01813183 01803583 01374183 -rough-and-ready a 1 1 & 1 0 00835504 -rough-and-tumble a 1 1 & 1 0 01667271 -rough-cut a 2 1 & 2 0 01950198 01006016 -rough-haired a 1 1 & 1 0 00215257 -rough-spoken a 1 1 & 1 0 01951372 -rough-textured a 1 1 & 1 0 02243086 -roughdried a 1 1 & 1 0 01360231 -roughened a 1 1 & 1 0 02240129 -roughhewn a 1 1 & 1 1 01006016 -roughish a 1 1 & 1 0 02242412 -roughshod a 3 1 & 3 0 02156293 01263013 00788268 -roumanian a 1 2 \ + 1 0 02962272 -round a 3 5 ! & ^ + ; 3 3 02040652 01457486 00916524 -round-arm a 1 2 & ; 1 0 02470952 -round-backed a 1 1 & 1 0 01239199 -round-bottom a 1 1 & 1 1 02442883 -round-bottomed a 1 1 & 1 0 02442883 -round-eyed a 2 1 & 2 0 02272047 00954760 -round-faced a 1 1 & 1 1 00235823 -round-fruited a 1 1 & 1 0 01082377 -round-shouldered a 1 1 & 1 0 01239199 -round-the-clock a 1 1 & 1 0 00595147 -round_the_bend a 1 1 & 1 0 02074929 -roundabout a 2 1 & 2 2 00767349 00763013 -rounded a 1 4 ! & ^ + 1 1 02043898 -roundheaded a 1 1 & 1 0 00262328 -roundish a 1 1 & 1 0 02043051 -rousing a 2 1 & 2 1 02307026 01897607 -rousseauan a 1 2 \ + 1 1 02858539 -routine a 1 1 & 1 1 01674242 -roving a 1 1 & 1 0 02128084 -rowdy a 1 2 & + 1 1 01667110 -royal a 5 2 & \ 5 2 02789579 02789798 01592509 01591394 00654685 -ruandan a 1 1 \ 1 0 03112486 -rubber a 1 2 & ; 1 0 01129021 -rubberlike a 1 1 & 1 1 00844869 -rubbery a 2 2 & + 2 1 00844869 02445863 -rubbishy a 1 2 & + 1 0 02503656 -rubicund a 1 1 & 1 0 01172139 -ruby a 1 1 & 1 0 00381097 -ruby-red a 1 1 & 1 0 00381097 -rudder-like a 1 1 & 1 0 02149502 -rudderless a 1 1 & 1 1 01910652 -ruddy a 2 2 & + 2 1 01172139 00381097 -rude a 5 3 & = + 5 2 00641944 01950857 00642725 01952643 00818175 -rudimentary a 3 3 & + ; 3 2 01856419 00524965 00742714 -rueful a 1 2 & + 1 0 01743506 -ruffianly a 1 2 & + 1 0 02512641 -ruffled a 2 1 & 2 2 00088157 00058696 -rugged a 4 5 ! & ^ = + 4 1 00707366 02243806 02239746 00748058 -rugose a 1 2 & ; 1 0 02242481 -ruined a 3 1 & 3 1 01451402 02334321 00736299 -ruinous a 2 2 & + 2 1 01161635 00586883 -rule-governed a 1 1 & 1 0 01959807 -ruled a 1 1 & 1 1 02329765 -ruling a 1 1 & 1 1 01827432 -ruly a 1 1 & 1 0 02423563 -rum a 1 1 & 1 0 00968010 -rumanian a 1 2 \ + 1 1 02962272 -rumansh a 1 1 \ 1 0 02789031 -rumbling a 1 1 & 1 0 01457079 -rumbustious a 1 1 & 1 0 01666489 -ruminant a 1 3 ! \ + 1 0 02789920 -ruminative a 1 2 & + 1 0 02419434 -rummy a 1 1 & 1 0 00968010 -rumpled a 1 1 & 1 0 02425220 -run-down a 2 1 & 2 2 02581530 01092889 -run-of-the-mill a 1 1 & 1 0 01674926 -run-of-the-mine a 1 1 & 1 0 01674926 -run-on a 1 1 ! 1 0 00873502 -run-resistant a 1 1 & 1 0 01775280 -runaway a 1 1 & 1 1 00601150 -runcinate a 1 1 & 1 0 02247637 -runic a 1 2 \ + 1 0 02938236 -running a 6 3 ! & ; 6 2 01240591 00592754 01241757 01240413 01445438 01091728 -runny a 1 2 & + 1 0 02261746 -runproof a 1 1 & 1 0 01775280 -runty a 2 3 & + ; 2 0 02387790 01394558 -rupestral a 1 1 \ 1 0 03133994 -rupicolous a 1 1 \ 1 0 03133994 -rural a 2 4 ! & \ + 2 2 02050452 02790726 -ruritanian a 1 2 \ + 1 0 02790900 -rush a 2 1 & 2 0 01988829 01271604 -rushed a 1 1 & 1 0 01271604 -rushlike a 1 1 & 1 0 00209988 -rushy a 1 2 & + 1 0 02574188 -russet a 1 1 & 1 0 00382792 -russian a 1 2 \ + 1 1 02957276 -russian-speaking a 1 1 & 1 0 00499730 -russian_orthodox a 1 2 \ ; 1 0 02953598 -rust a 1 1 & 1 0 00382874 -rust-brown a 1 1 & 1 0 00382874 -rust-colored a 1 1 & 1 0 00400737 -rust-free a 1 1 & 1 0 02053392 -rust-red a 1 1 & 1 0 00382990 -rust-resistant a 1 1 & 1 0 02053553 -rusted a 1 2 ! & 1 1 02052983 -rustic a 3 2 & + 3 2 02051616 00636891 02051013 -rustless a 1 2 ! & 1 0 02053253 -rustling a 1 1 & 1 0 01456221 -rustproof a 1 1 & 1 0 02053460 -rustproofed a 1 1 & 1 0 02053460 -rusty a 4 2 & + 4 2 02053094 00382874 02230205 01639891 -rusty-brown a 1 1 & 1 0 00383088 -rusty-red a 1 1 & 1 0 00382990 -ruthful a 1 2 & + 1 0 01743506 -ruthless a 1 2 & + 1 1 01508086 -rutted a 1 1 & 1 1 02244361 -ruttish a 1 1 & 1 0 02131668 -rutty a 1 2 & + 1 0 02244361 -rwandan a 1 1 \ 1 0 03112486 -s-shaped a 1 1 & 1 0 02150308 -sabahan a 1 2 \ + 1 0 03112615 -sabbatarian a 1 2 \ + 1 0 03112747 -sabbatic a 1 1 \ 1 0 03112989 -sabbatical a 2 2 \ + 2 0 03112989 03112867 -saber-toothed a 1 1 & 1 0 02439076 -sabertoothed a 1 1 & 1 0 02439076 -sabine a 1 1 \ 1 0 02791058 -sable a 1 1 & 1 0 00391487 -sabre-toothed a 1 1 & 1 0 02439076 -saccadic a 1 2 \ + 1 0 02791161 -saccharine a 1 2 & + 1 0 02368566 -sacculate a 1 1 \ 1 0 02791308 -sacculated a 1 1 \ 1 0 02791308 -sacerdotal a 2 2 \ + 2 0 02899912 02899666 -sacked a 1 1 & 1 0 00735709 -saclike a 1 1 & 1 0 00536304 -sacral a 2 3 & \ + 2 0 03113164 02056663 -sacramental a 1 2 \ + 1 0 02931227 -sacred a 5 4 ! & ^ + 5 3 02055062 02587261 02054310 02054610 00519823 -sacrificeable a 1 1 & 1 0 00932918 -sacrificial a 1 2 \ + 1 0 03113271 -sacrilegious a 1 2 & + 1 0 02012748 -sacrosanct a 1 1 & 1 0 02055900 -sad a 3 3 ! & + 3 1 01361863 01366277 01126841 -sad-faced a 1 1 & 1 0 00236086 -saddle-shaped a 1 1 & 1 0 02149597 -saddle-sore a 1 1 & 1 0 01712657 -saddled a 2 2 ! & 2 0 00460386 00870127 -sadducean a 1 2 \ + 1 0 02791630 -sadistic a 1 2 ! + 1 1 02057535 -sadomasochistic a 1 2 \ + 1 0 02791483 -safe a 4 5 ! & ^ + ; 4 2 02057829 00066933 02061307 02273643 -safe_and_sound a 1 1 & 1 0 02058656 -safety-related a 1 1 & 1 0 01889084 -sagacious a 2 2 & + 2 1 02569558 01813920 -sage a 2 1 & 2 0 02570183 00383189 -sage-green a 1 1 & 1 0 00383189 -sagging a 1 1 & 1 1 02403944 -sagittal a 1 1 & 1 0 00779240 -sagittate a 1 1 & 1 0 02170673 -sagittiform a 1 1 & 1 0 02170673 -saharan a 1 1 \ 1 0 02791735 -said a 1 1 & 1 1 02068730 -sainted a 1 1 & 1 0 01130261 -saintlike a 1 1 & 1 0 01130261 -saintly a 1 2 & + 1 0 01130261 -salable a 1 3 ! & + 1 1 02061799 -salacious a 2 2 & + 2 2 02133779 00425740 -salamandriform a 1 1 \ 1 0 03144356 -salaried a 3 2 ! & 3 0 00863717 01708898 01708663 -saleable a 1 1 & 1 0 02061799 -salient a 3 4 ! & + ; 3 1 00580805 02591896 01235439 -salientian a 1 3 \ + ; 1 0 02631238 -saliferous a 1 1 & 1 0 01074335 -saline a 1 2 & + 1 0 01074458 -salivary a 1 2 \ + 1 1 03012094 -sallow a 1 2 & + 1 1 01178134 -salmon a 1 1 & 1 0 00379804 -salt a 1 1 & 1 1 00803846 -salt-cured a 1 1 & 1 0 01073311 -salted a 1 1 & 1 0 01073311 -saltish a 1 1 & 1 0 01074582 -saltlike a 1 1 & 1 0 00026388 -salty a 3 4 ! & ^ + 3 1 02306874 01073822 02398773 -salubrious a 2 2 & + 2 1 02558184 02558996 -salutary a 1 1 & 1 1 01166413 -salvadoran a 1 1 \ 1 0 02969375 -salvadorean a 1 2 \ + 1 0 02969375 -salvageable a 1 1 & 1 0 01452138 -salverform a 1 1 & 1 0 01776282 -salvific a 1 1 \ 1 0 03144441 -salving a 1 1 & 1 0 01153844 -same a 4 5 ! & ^ = + 4 4 02068476 02062670 01411065 00355611 -samoan a 1 2 \ + 1 0 03113404 -samoyedic-speaking a 1 1 & 1 0 00499823 -san_marinese a 1 2 \ + 1 0 03113562 -sanative a 1 1 & 1 0 01165943 -sanctified a 1 1 & 1 1 02054310 -sanctimonious a 1 2 & + 1 0 01782100 -sanctionative a 1 2 & + 1 0 01195128 -sanctioned a 3 1 & 3 0 01690244 01401413 00179035 -sanctioning a 1 1 & 1 0 01195128 -sand-blind a 1 1 & 1 0 02159969 -sandaled a 1 1 & 1 0 02156421 -sandalled a 1 1 & 1 0 02156421 -sandlike a 1 0 1 0 00142040 -sandpapery a 1 2 & + 1 0 02242582 -sandy a 2 2 & + 2 1 00244199 00142040 -sane a 2 4 ! & ^ + 2 1 02073443 01926229 -sanguinary a 2 1 & 2 0 00249104 00248251 -sanguine a 2 2 & + 2 0 01664455 01172139 -sanguineous a 1 2 & + 1 1 00249104 -sanious a 1 2 \ + 1 0 02851709 -sanitary a 1 3 ! & + 1 0 02112976 -sanitised a 1 1 < 1 0 03153554 -sanitized a 1 1 < 1 0 03153554 -sapid a 1 2 & + 1 0 02396911 -sapiens a 1 1 \ 1 0 02791838 -sapient a 1 2 & + 1 0 02569558 -sapiential a 1 1 & 1 0 02570046 -sapless a 2 1 & 2 0 02040233 01369491 -saponaceous a 1 1 \ 1 0 03026319 -saponified a 1 2 ! < 1 0 03155193 -saporous a 1 1 & 1 0 02396911 -sapphic a 2 2 & + 2 0 02020495 01202212 -sapphire a 1 2 & + 1 1 00383291 -sapphirine a 1 1 \ 1 0 03020663 -sappy a 2 3 & + ; 2 0 02571536 01369274 -saprobic a 1 3 \ + ; 1 0 03020884 -saprophagous a 1 1 & 1 0 00314794 -saprophytic a 2 4 & \ + ; 2 0 03020750 00314927 -saprozoic a 1 1 & 1 0 00314794 -sarawakian a 1 2 \ + 1 0 03113705 -sarcastic a 1 5 ! & ^ = + 1 1 02079029 -sarcoid a 1 0 1 0 02729339 -sarcolemmal a 1 2 \ + 1 1 03007718 -sarcolemmic a 1 2 \ + 1 0 02791943 -sarcolemnous a 1 1 \ 1 0 02791943 -sarcosomal a 1 2 \ + 1 0 03007826 -sardinian a 1 2 \ + 1 0 03025403 -sardonic a 1 1 & 1 1 02079830 -sartorial a 2 2 \ + 2 0 02792214 02792080 -sassy a 1 2 & + 1 0 00205295 -satanic a 2 3 & \ + 2 1 01132515 02930503 -satellite a 1 1 & 1 0 00950119 -satiable a 1 1 & 1 0 02078264 -satiate a 1 2 ! & 1 0 02078011 -satiated a 1 1 & 1 0 02078011 -satiny a 1 2 & + 1 0 00282675 -satiric a 1 2 & + 1 1 02080110 -satirical a 1 2 & + 1 1 02080110 -satisfactory a 2 4 ! & ^ + 2 2 02080577 01124768 -satisfiable a 1 1 & 1 0 02078264 -satisfied a 2 1 & 2 1 00589344 01519673 -satisfying a 2 1 & 2 0 02558528 02081563 -saturated a 3 3 ! & ; 3 1 00757923 00757236 00393508 -saturnine a 2 1 & 2 0 02080318 01137378 -satyric a 1 2 \ + 1 0 03113881 -satyrical a 1 2 \ + 1 0 03113881 -saucer-eyed a 1 1 & 1 0 00954760 -saucer-shaped a 1 1 & 1 0 00537073 -saucy a 2 2 & + 2 0 02280090 00205295 -saudi a 1 2 \ + 1 0 03114139 -saudi-arabian a 1 2 \ + 1 0 03114139 -saurian a 1 2 \ + 1 0 02853740 -sausage-shaped a 1 1 & 1 0 02044642 -saute a 1 1 & 1 0 00618493 -sauteed a 1 1 & 1 0 00618493 -savage a 4 2 & + 4 3 01263013 02389520 00412788 02511528 -saved a 2 3 ! & ^ 2 1 01451498 00737703 -saving a 2 1 & 2 1 01130733 02421919 -savorless a 1 2 & + 1 0 02399595 -savory a 3 3 ! & + 3 1 01627836 02398378 00133669 -savourless a 1 2 & + 1 0 02399595 -savoury a 3 2 & + 3 0 01627836 02398378 00133669 -saw-like a 1 1 & 1 0 02242697 -saw-toothed a 1 1 & 1 0 02247785 -sawed-off a 2 2 & ; 2 0 02387790 01436791 -sawn-off a 2 2 & ; 2 0 02387790 01436791 -sawtoothed-edged a 1 1 & 1 0 00258899 -saxatile a 1 1 \ 1 0 03114359 -saxicoline a 1 1 \ 1 0 03114359 -saxicolous a 1 1 \ 1 0 03114359 -saxon a 1 3 \ + ; 1 0 03114508 -scabby a 1 2 & + 1 0 02242798 -scabrous a 2 2 & ; 2 0 02241247 00426068 -scalable a 1 3 ! & + 1 0 02083222 -scalar a 2 2 \ + 2 0 03134979 03134771 -scaled a 2 2 & ; 2 1 00147160 00144598 -scaleless a 1 1 & 1 0 00147659 -scalelike a 1 1 & 1 0 00450269 -scalene a 2 2 \ ; 2 0 02792424 02792326 -scaley a 1 3 & + ; 1 0 00147160 -scalic a 1 2 \ + 1 0 03141756 -scalloped a 1 1 & 1 1 02246296 -scaly a 2 3 & + ; 2 0 02241247 00147160 -scaly-tailed a 1 1 & 1 0 00320177 -scandalmongering a 1 2 & + 1 0 02101942 -scandalous a 1 2 & + 1 0 01549964 -scandent a 1 1 & 1 0 02485168 -scandinavian a 1 2 \ + 1 1 02960130 -scant a 1 2 & + 1 1 02337329 -scantily_clad a 1 1 & 1 0 00459443 -scanty a 1 2 & + 1 1 00106821 -scaphoid a 1 2 & ; 1 0 02148526 -scapose a 1 2 & ; 1 0 01703797 -scapular a 1 2 \ + 1 0 02792550 -scapulohumeral a 1 1 \ 1 0 02792661 -scarce a 1 5 ! & ^ = + 1 0 00016756 -scarecrowish a 1 1 & 1 1 00990053 -scared a 1 1 & 1 1 00079629 -scarey a 1 2 & + 1 0 00194924 -scarlet a 1 2 & + 1 0 00381097 -scarlet-crimson a 1 1 & 1 0 00383429 -scarlet-pink a 1 1 & 1 0 00383521 -scarred a 2 1 & 2 2 01480684 00246727 -scary a 1 1 & 1 0 00194924 -scathing a 1 1 & 1 1 00648614 -scatological a 1 2 & + 1 0 00426186 -scatterbrained a 2 1 & 2 0 02572420 02121123 -scattered a 2 1 & 2 1 00542099 00465221 -scattershot a 1 1 & 1 0 00776192 -scatty a 2 1 & 2 0 02572420 00165171 -scenic a 2 3 & \ + 2 1 00220600 02792789 -scented a 4 3 ! & ; 4 3 01058179 01052888 01052611 01057103 -scentless a 2 2 ! & 2 0 01058281 01058029 -sceptered a 1 1 & 1 0 00179315 -sceptical a 2 2 & + 2 0 02463847 00647247 -sceptred a 1 1 & 1 0 00179315 -scheduled a 1 2 ! & 1 1 02366716 -schematic a 1 3 & + ; 1 1 01980796 -scheming a 2 1 & 2 0 01155603 00148852 -schismatic a 1 2 \ + 1 0 03115053 -schismatical a 1 2 \ + 1 0 03115053 -schizoid a 2 2 & \ 2 0 03115277 01585892 -schizophrenic a 2 3 & \ + 2 2 02077741 03115277 -schmaltzy a 1 1 & 1 0 00854413 -schmalzy a 1 1 & 1 0 00854413 -scholarly a 1 4 ! & ^ + 1 1 02083615 -scholastic a 2 2 \ + 2 2 02792903 02793094 -schoolboyish a 1 1 & 1 0 01648313 -schoolgirlish a 1 1 & 1 1 01648698 -schoolwide a 1 1 & 1 0 00528495 -sciatic a 2 2 \ + 2 0 02841919 02841776 -scientific a 2 4 ! & \ = 2 2 02793273 02084804 -scintillant a 1 2 & + 1 0 00279618 -scintillating a 3 1 & 3 0 01336231 00805810 00279618 -sciolistic a 1 2 & + 1 0 01874331 -scissor-tailed a 1 1 & 1 0 00320255 -sclerosed a 1 1 \ 1 0 02793513 -sclerotic a 2 2 \ + 2 1 02793513 02793394 -scopal a 1 3 \ + ; 1 0 02992070 -scorbutic a 1 2 \ + 1 0 03115436 -scorched a 2 1 & 2 1 02551946 00736511 -scorching a 1 1 & 1 1 01249843 -scoreless a 1 1 & 1 1 02335119 -scorned a 1 1 & 1 0 01463537 -scornful a 1 1 & 1 1 01995288 -scotch a 2 3 & \ ; 2 0 03024647 02421364 -scotomatous a 1 2 \ + 1 0 03115598 -scots a 1 2 \ + 1 0 03024647 -scottish a 1 2 \ + 1 0 03024647 -scoundrelly a 1 2 & + 1 0 01224964 -scoured a 1 1 & 1 1 02582064 -scowling a 1 1 & 1 0 01077158 -scrabbly a 1 1 & 1 0 02574294 -scraggly a 1 1 & 1 1 02426270 -scraggy a 2 2 & + 2 0 00990192 00912288 -scrambled a 1 1 & 1 1 01669774 -scrappy a 1 2 & + 1 0 00084661 -scratchy a 4 2 & + 4 1 02239289 01136541 00578662 00299476 -scrawny a 2 2 & + 2 1 00990192 02347915 -screaky a 2 1 & 2 0 01921335 01214606 -screaming a 3 1 & 3 1 01512909 02102178 01266841 -screechy a 1 2 & + 1 1 01214606 -screw-loose a 1 2 & ; 1 1 02077904 -screw-topped a 1 1 & 1 0 02441990 -screwball a 1 3 & + ; 1 0 01836766 -screwy a 1 2 & ; 1 0 02077904 -scrimpy a 1 3 & ^ = 1 0 00106456 -scrimy a 2 1 & 2 0 01627166 01113636 -scripted a 1 1 ! 1 0 02213270 -scriptural a 2 3 \ + ; 2 1 02854521 02938361 -scrivened a 1 2 & ; 1 0 02285854 -scrofulous a 3 2 & + 3 0 02546526 01550304 00222272 -scrotal a 1 2 \ + 1 0 03098096 -scrub a 1 1 & 1 0 01289607 -scrubbed a 1 1 & 1 0 00418809 -scrubby a 2 2 & + 2 0 02574294 02347915 -scruffy a 1 1 & 1 0 02583271 -scrumptious a 1 1 & 1 0 02396720 -scrupulous a 2 4 ! & ^ + 2 0 02085449 00310138 -sculpted a 1 1 & 1 0 00317481 -sculptural a 2 3 & \ + 2 1 02924286 02139884 -sculptured a 2 1 & 2 1 00317481 02139884 -sculpturesque a 1 1 & 1 0 02139884 -scummy a 2 2 & + 2 0 00904745 00422870 -scurfy a 2 4 & \ + ; 2 0 02793681 02241247 -scurrilous a 1 2 & + 1 0 01628531 -scurrying a 1 1 & 1 1 00978581 -scurvy a 1 1 & 1 0 00904745 -scythian a 1 2 \ + 1 0 02793793 -sea-green a 1 1 & 1 0 00383607 -sea-level a 1 1 & 1 0 01219709 -seaborne a 1 1 & 1 0 01524562 -seafaring a 1 1 & 1 0 01381074 -seagirt a 1 1 & 1 0 00259011 -seagoing a 1 1 & 1 0 01381074 -sealed a 7 4 ! & ^ ; 7 0 02087342 02086667 02089943 01760847 01739898 01697318 01697129 -seamanlike a 1 1 ! 1 0 01566476 -seamanly a 1 1 + 1 0 01566476 -seamed a 2 2 ! & 2 0 02253964 02241543 -seamless a 3 2 ! & 3 0 02254264 02237978 00464845 -seamy a 2 2 & + 2 0 02254088 01984806 -sear a 1 2 & ; 1 0 02553234 -searching a 3 1 & 3 1 00879918 01336371 00878362 -seared a 1 1 & 1 0 00618584 -searing a 1 1 & 1 0 00648543 -seasick a 1 2 & + 1 0 02542675 -seasonable a 2 3 ! & + 2 0 01494586 01661529 -seasonal a 1 1 ! 1 1 01494273 -seasoned a 2 2 ! & 2 0 01494959 00936523 -seated a 1 1 ! 1 1 01240029 -seaward a 3 1 & 3 0 00464399 00464195 00463580 -seaworthy a 1 4 ! ^ = + 1 0 02087956 -sebaceous a 1 2 & + 1 0 00992432 -sec a 1 1 & 1 0 02368247 -secluded a 2 1 & 2 1 01860580 01859055 -second a 2 4 ! & + ; 2 1 02202146 01016436 -second-best a 1 1 & 1 0 00229130 -second-class a 1 1 & 1 0 02348140 -second-rate a 1 1 & 1 1 02347564 -second-sighted a 1 1 & 1 0 01882474 -second-string a 1 1 & 1 0 01854935 -second-year a 1 1 & 1 0 01015599 -secondary a 5 3 ! & ^ 5 1 01853461 02100968 01857956 01473558 00793592 -secondhand a 2 1 & 2 2 01854702 01640482 -secret a 11 1 & 11 5 02090069 01706465 00028984 01707404 00952181 02089514 01860580 01859571 01706986 00900071 00416045 -secretarial a 1 2 \ + 1 0 02794123 -secretive a 1 2 & + 1 0 00501004 -secretory a 1 1 \ 1 0 02794253 -sectarian a 2 4 ! & \ + 2 0 02794372 02091574 -sectional a 3 2 & \ 3 0 02943771 02482644 02409095 -sectioned a 1 1 & 1 1 02482644 -sectorial a 1 2 \ + 1 0 02794543 -secular a 5 4 ! & ^ \ 5 0 02793988 02577061 02056880 01782854 02057226 -secure a 5 4 ! & ^ + 5 2 02093305 02093888 02095311 02526124 02273643 -sedate a 2 2 & + 2 1 00689336 02119213 -sedative a 1 2 & + 1 0 02308472 -sedentary a 1 1 & 1 1 00034572 -sedgelike a 1 1 & 1 0 00209988 -sedgy a 1 3 & + ; 1 0 00210079 -sedimentary a 2 3 \ + ; 2 0 02952109 01355089 -seditious a 2 2 & + 2 0 01897378 00963283 -seductive a 1 3 ! & ^ 1 1 02097268 -sedulous a 1 2 & + 1 0 00754393 -see-through a 1 1 & 1 0 02413390 -seeable a 1 2 & ^ 1 0 02515341 -seeded a 5 3 ! & ; 5 0 02254778 02256209 02255608 02255487 01832245 -seedless a 1 2 ! & 1 0 02256082 -seedy a 4 3 ! & + 4 0 02255069 02583271 02542325 01984806 -seeing a 1 2 & + 1 0 02158731 -seeming a 1 1 & 1 1 01873985 -seemly a 1 2 & + 1 0 01878870 -seeping a 1 1 & 1 1 01397892 -seething a 1 1 & 1 1 00088328 -segmental a 2 2 & ; 2 2 02482790 02481951 -segmented a 1 2 & ; 1 0 02481951 -segregated a 1 3 ! & ^ 1 1 01326917 -seismal a 1 2 & + 1 0 02293230 -seismic a 1 2 & + 1 1 02293230 -seismologic a 1 2 \ + 1 0 02908366 -seismological a 1 2 \ + 1 0 02908366 -select a 2 1 & 2 1 02342899 02342309 -selected a 1 2 ! & 1 1 02123475 -selective a 2 2 & + 2 1 00775693 01863246 -self a 1 1 \ 1 1 02794670 -self-abnegating a 1 1 & 1 0 01301056 -self-absorbed a 1 1 & 1 0 00102079 -self-acting a 1 1 & 1 0 00182225 -self-activating a 1 1 & 1 0 00182225 -self-addressed a 1 1 & 1 0 00050799 -self-aggrandising a 2 2 & \ 2 0 02794853 01890752 -self-aggrandizing a 2 2 & \ 2 0 02794853 01890752 -self-appointed a 1 1 & 1 0 00179676 -self-asserting a 1 2 & ^ 1 0 00156101 -self-assertive a 2 2 & ^ 2 0 00156101 00205033 -self-assured a 1 1 & 1 0 00339742 -self-aware a 1 2 & + 1 0 00570991 -self-balancing a 1 1 & 1 0 00894435 -self-centered a 1 3 & ^ + 1 0 00101800 -self-centred a 1 2 & ^ 1 0 00101800 -self-collected a 1 1 & 1 0 00530354 -self-colored a 1 1 & 1 0 01200491 -self-coloured a 1 1 & 1 0 01200491 -self-complacent a 1 2 & + 1 0 00589067 -self-conceited a 1 1 & 1 1 01891773 -self-confessed a 1 1 & 1 0 00027833 -self-confident a 1 2 & + 1 1 00339742 -self-conscious a 2 2 & + 2 1 00570991 00480965 -self-consistent a 1 1 & 1 1 00577698 -self-constituted a 1 1 & 1 0 01636636 -self-contained a 2 1 & 2 1 00523587 00530354 -self-contradictory a 2 1 & 2 0 00939895 00578234 -self-defeating a 1 1 & 1 1 02335241 -self-denying a 2 1 & 2 0 02099442 01301056 -self-deprecating a 1 1 & 1 0 01632314 -self-destructive a 1 1 & 1 1 02060912 -self-directed a 1 1 & 1 0 00728225 -self-disciplined a 1 1 & 1 0 01301206 -self-educated a 1 1 & 1 0 00830508 -self-effacing a 1 1 & 1 1 00157268 -self-employed a 1 0 1 0 00863823 -self-enclosed a 1 1 & 1 1 01658533 -self-established a 1 1 & 1 0 01636636 -self-evident a 1 1 & 1 1 01618895 -self-examining a 1 1 = 1 0 01350674 -self-explanatory a 1 1 & 1 0 01619604 -self-fertilised a 1 1 & 1 0 00871690 -self-fertilized a 1 1 & 1 0 00871690 -self-forgetful a 1 1 & 1 0 02099561 -self-generated a 2 1 & 2 0 02282376 00181162 -self-giving a 1 1 & 1 0 02099442 -self-governing a 1 1 & 1 0 01062393 -self-important a 1 2 & + 1 0 01889819 -self-imposed a 1 1 & 1 1 02520925 -self-induced a 2 2 & \ 2 0 02795013 00181264 -self-indulgent a 1 2 & + 1 0 01299687 -self-involved a 1 1 & 1 0 00102079 -self-limited a 1 2 \ ; 1 0 02795109 -self-loading a 1 1 & 1 0 00181904 -self-locking a 1 1 & 1 1 00182418 -self-loving a 1 1 & 1 0 02098694 -self-luminous a 1 1 & 1 0 00283060 -self-made a 1 1 & 1 0 02332704 -self-moving a 1 1 & 1 0 00182225 -self-opinionated a 1 1 & 1 0 00288362 -self-pollinated a 1 1 & 1 0 00871690 -self-pollinating a 1 2 \ ; 1 0 02795262 -self-possessed a 1 1 & 1 0 00530354 -self-proclaimed a 1 1 & 1 0 00688413 -self-produced a 1 1 & 1 0 00181162 -self-propelled a 2 1 & 2 0 01562488 00810164 -self-propelling a 2 1 & 2 0 01562488 00810164 -self-referent a 1 2 & ; 1 0 00202508 -self-regulating a 1 1 & 1 0 00182225 -self-reliant a 1 2 & + 1 1 00728225 -self-renewing a 1 1 \ 1 0 02795399 -self-respectful a 1 1 & 1 0 01890988 -self-respecting a 1 1 & 1 0 01890988 -self-restraining a 1 1 & 1 0 01301206 -self-righteous a 1 1 & 1 0 01782100 -self-sacrificing a 1 1 & 1 0 02099442 -self-satisfied a 2 1 & 2 0 00589448 00589067 -self-sealing a 2 1 & 2 0 01776845 00054541 -self-seeded a 1 1 & 1 0 01832341 -self-seeking a 1 1 & 1 0 02098918 -self-service a 1 1 \ 1 0 02795489 -self-serving a 1 1 & 1 0 02098918 -self-sowed a 1 1 & 1 0 01832341 -self-sown a 1 1 & 1 0 01832341 -self-styled a 1 1 & 1 0 01918001 -self-sufficient a 1 2 & + 1 1 00729439 -self-sufficing a 1 1 & 1 0 00729439 -self-supporting a 1 1 & 1 0 00729647 -self-sustained a 1 1 & 1 0 01099348 -self-sustaining a 1 1 & 1 1 00729439 -self-whispered a 1 1 & 1 1 00952307 -self-willed a 1 1 & 1 0 01614372 -self-winding a 1 1 & 1 0 00182510 -selfish a 1 4 ! & ^ + 1 1 02098325 -selfless a 1 2 ^ + 1 0 00101609 -selfsame a 1 2 & + 1 0 02068946 -seljuk a 1 1 \ 1 0 02970360 -sellable a 1 1 & 1 0 02062133 -semantic a 1 2 \ + 1 1 02842042 -semestral a 1 2 & + 1 0 01970136 -semestrial a 1 2 & + 1 0 01970136 -semi-climbing a 1 1 & 1 0 01237162 -semi-dry a 1 1 & 1 0 02554019 -semi-erect a 1 1 & 1 0 01237254 -semi-evergreen a 1 1 & 1 0 00913889 -semi-formal a 1 1 & 1 0 01043746 -semi-processed a 1 1 & 1 1 01952301 -semi-prostrate a 1 1 & 1 0 01239617 -semi-tuberous a 1 1 \ 1 0 03026244 -semi-upright a 1 1 & 1 0 01237342 -semi-wild a 1 1 & 1 0 02389649 -semiabstract a 1 1 & 1 0 01981583 -semiannual a 1 1 & 1 0 01969348 -semiaquatic a 2 2 & ; 2 0 00125553 00124493 -semiarid a 1 1 & 1 0 02553902 -semiautobiographical a 1 1 \ 1 0 02795640 -semiautomatic a 2 1 & 2 0 00182639 00181904 -semicentenary a 1 1 \ 1 0 02998844 -semicentennial a 1 1 \ 1 0 02998844 -semicircular a 1 2 & + 1 0 02316718 -semicomatose a 1 1 & 1 0 00573008 -semiconducting a 1 1 & 1 0 00558019 -semiconductive a 1 1 & 1 0 00558019 -semiconscious a 1 2 & + 1 0 00571291 -semidark a 1 2 & + 1 0 00276226 -semidetached a 1 1 & 1 0 00160957 -semiempirical a 1 1 & 1 1 00860254 -semiformal a 1 1 & 1 0 01043746 -semihard a 1 1 & 1 0 01152453 -semiliquid a 1 1 & 1 0 02262293 -semiliterate a 3 1 & 3 2 00830630 01422354 01422468 -semilunar a 1 1 & 1 0 02045473 -semimonthly a 1 1 & 1 0 01970014 -seminal a 2 2 & \ 2 0 02795804 01687363 -seminiferous a 1 1 \ 1 0 02795925 -seminude a 1 1 & 1 0 00459881 -semiofficial a 1 1 & 1 0 01633490 -semiopaque a 1 1 & 1 0 00434524 -semiotic a 1 2 \ + 1 0 02796042 -semiotical a 1 1 + 1 0 02796042 -semiparasitic a 1 1 \ 1 0 02796194 -semipermanent a 1 1 & 1 0 01441000 -semipermeable a 1 1 & 1 0 01772512 -semipolitical a 1 1 & 1 0 01815030 -semiprecious a 1 1 & 1 1 02501820 -semiprivate a 1 1 & 1 0 01860765 -semipublic a 1 1 & 1 1 01862055 -semirigid a 2 2 & ; 2 0 01026911 01024002 -semiskilled a 1 1 & 1 1 02230324 -semisoft a 1 1 & 1 0 01154886 -semisolid a 1 1 & 1 0 02260847 -semisweet a 1 1 & 1 0 02396354 -semisynthetic a 1 2 & ; 1 0 01573568 -semite a 1 2 \ + 1 0 03115693 -semiterrestrial a 1 1 \ 1 0 02810316 -semitic a 2 2 \ + 2 0 03115874 03115693 -semitic-speaking a 1 1 & 1 0 00499920 -semitransparent a 1 2 & + 1 0 00432626 -semitropic a 1 0 1 0 02929216 -semitropical a 1 0 1 0 02929216 -semiweekly a 1 1 & 1 0 01968721 -sempiternal a 1 1 & 1 0 01007947 -senatorial a 1 2 \ + 1 1 02796301 -senecan a 1 2 \ + 1 0 03038065 -senegalese a 1 2 \ + 1 0 03116043 -senescent a 1 2 & + 1 0 01644709 -senile a 1 2 & + 1 1 01645296 -senior a 3 5 ! & ^ = + 3 2 02099774 01013681 01644225 -sensate a 1 1 & 1 0 00117654 -sensational a 3 4 ! & \ = 3 2 02101580 01282921 02796425 -sensationalistic a 1 2 & + 1 0 02101942 -sensed a 1 1 & 1 0 01609501 -senseless a 4 2 & + 4 2 01945139 00572534 02503305 00441365 -sensible a 4 5 ! & ^ = + 4 1 01943406 02102484 01748152 00191265 -sensitised a 1 1 & 1 0 02360944 -sensitising a 1 1 = 1 0 02108198 -sensitive a 5 5 ! & ^ = + 5 2 02103481 02105990 02102484 01712753 00416164 -sensitized a 1 1 & 1 0 02360944 -sensitizing a 1 2 ! = 1 0 02108198 -sensorial a 1 1 + 1 0 02108665 -sensorimotor a 1 1 \ 1 0 02894436 -sensorineural a 1 1 \ 1 0 02894327 -sensory a 3 3 ! & \ 3 2 00333611 02108665 02796425 -sensual a 2 2 & + 2 1 01778572 01257145 -sensuous a 1 2 & + 1 1 00070427 -sent a 1 1 ! 1 0 02109448 -sentential a 1 2 \ + 1 0 02991690 -sententious a 2 1 & 2 0 01851118 00548316 -sentient a 2 4 ! & = + 2 1 00117385 00571424 -sentimental a 2 2 & + 2 2 02449287 00854413 -sepaline a 1 1 \ 1 0 02796588 -sepaloid a 1 1 \ 1 0 02796588 -separable a 1 2 & + 1 1 00785002 -separate a 4 5 ! & ^ = + 4 2 02109678 00160768 01327371 00568541 -separated a 4 1 & 4 2 02110447 00542282 01318510 00568304 -separatist a 1 2 & + 1 0 00728619 -separative a 3 2 & + 3 0 00565565 00565289 00469170 -septal a 1 2 \ + 1 0 02796711 -septate a 1 1 \ 1 0 02796711 -septic a 2 5 ! & ^ \ + 2 1 02113827 02998669 -septicemic a 1 2 & + 1 0 02115187 -septrional a 1 1 & 1 0 01604945 -septuple a 1 1 & 1 0 02219876 -sepulchral a 3 3 & \ + 3 0 02796854 01625492 01368464 -sequent a 2 1 & 2 0 01667729 00122844 -sequential a 1 2 & + 1 1 01667729 -sequestered a 2 1 & 2 0 01859055 01327574 -sequined a 1 1 & 1 0 00056660 -seraphic a 2 3 & \ + 2 0 02870846 01459949 -seraphical a 1 2 \ + 1 0 02870846 -serbian a 1 2 \ + 1 0 02963942 -sere a 1 3 & + ; 1 0 02553234 -serendipitous a 1 2 & + 1 0 01468552 -serene a 2 1 & 2 0 00529657 00461195 -serflike a 1 1 & 1 0 01065614 -serial a 4 4 & \ + ; 4 1 01667729 02797257 02797021 02380358 -sericeous a 1 2 & ; 1 0 00213610 -sericultural a 1 2 \ + 1 0 03116224 -seriocomic a 1 1 & 1 0 01267480 -seriocomical a 1 1 & 1 0 01267480 -serious a 6 4 ! & = + 6 4 02118379 01279611 00651039 01333477 02123314 00748359 -serious-minded a 1 2 & + 1 0 02119971 -serologic a 1 2 \ + 1 0 02987760 -serological a 1 2 \ + 1 1 02987760 -serous a 1 2 \ + 1 0 03116391 -serpentine a 1 1 & 1 0 02316820 -serrate a 1 1 & 1 0 02247785 -serrated a 1 1 & 1 0 02247785 -serried a 1 1 & 1 0 00503020 -serrulate a 1 1 & 1 0 02247938 -serviceable a 3 4 ! & ^ + 3 1 02123812 02496534 01835843 -servile a 2 3 ! & + 2 0 00790086 01066226 -servo a 1 2 \ + 1 0 03137260 -servomechanical a 1 1 \ 1 0 03137260 -sesquipedalian a 2 2 & + 2 0 01851330 01435675 -sessile a 2 2 ! ; 2 0 00159975 00159498 -set a 7 1 & 7 4 01931203 01564603 02126430 01681307 02493300 02129908 01152091 -set-apart a 1 1 & 1 1 02110447 -set-aside a 1 1 & 1 0 01988468 -set_in_stone a 1 1 & 1 0 00347880 -setaceous a 1 2 & + 1 0 00145083 -setose a 1 1 & 1 0 00145083 -settled a 4 2 ! & 4 3 02129259 02125797 01311605 00303480 -seven a 1 2 & + 1 1 02186970 -seven-day a 1 1 & 1 0 01441965 -seven-fold a 1 1 & 1 0 02219876 -seven-membered a 1 1 & 1 0 01503375 -seven-sided a 1 1 & 1 0 00238636 -sevenfold a 1 1 & 1 0 02219876 -seventeen a 1 2 & + 1 1 02187995 -seventeenth a 1 2 & + 1 1 02204237 -seventh a 1 2 & + 1 1 02202979 -seventieth a 1 2 & + 1 0 02208723 -seventy a 1 2 & + 1 1 02193141 -seventy-eight a 1 1 & 1 0 02193947 -seventy-fifth a 1 1 & 1 0 02208852 -seventy-five a 1 1 & 1 0 02193647 -seventy-four a 1 1 & 1 0 02193547 -seventy-nine a 1 1 & 1 0 02194051 -seventy-one a 1 1 & 1 0 02193249 -seventy-seven a 1 1 & 1 0 02193844 -seventy-six a 1 1 & 1 0 02193746 -seventy-three a 1 1 & 1 0 02193444 -seventy-two a 1 1 & 1 0 02193346 -severable a 1 1 & 1 0 00785002 -several a 3 1 & 3 3 02268268 00494409 02068174 -several-seeded a 1 1 & 1 0 02255394 -severe a 6 2 & + 6 5 01513050 02322512 01792387 01301316 00651039 01129185 -severed a 1 1 & 1 0 00662318 -sewed a 1 1 & 1 0 02254172 -sewn a 1 1 & 1 0 02254172 -sex-limited a 1 1 \ 1 0 02887266 -sex-linked a 1 1 \ 1 0 02887399 -sex-starved a 1 1 & 1 0 02134896 -sexagenarian a 1 2 & + 1 0 01646646 -sexagesimal a 1 1 \ 1 0 02887115 -sexed a 2 1 & 2 0 02135692 02134802 -sexist a 1 2 & + 1 0 00286063 -sexless a 3 2 & + 3 0 02136522 02135213 02135138 -sextuple a 1 1 & 1 0 02219770 -sexual a 3 5 ! & \ = + 3 2 02887578 02135389 02132735 -sexually_attractive a 1 1 & 1 0 00733406 -sexy a 2 4 ! & ^ + 2 1 02131072 02137538 -seychellois a 1 2 \ + 1 0 03116517 -shabby a 2 2 & + 2 1 02583043 01228159 -shabby-genteel a 1 1 & 1 0 01892830 -shackled a 1 1 & 1 1 00253361 -shaded a 2 2 ! & 2 1 00276472 00277550 -shadowed a 1 1 & 1 1 00276862 -shadowy a 3 2 & + 3 1 00276862 00782216 00626483 -shady a 4 3 & + ; 4 0 02466566 01984669 01917594 00276862 -shagged a 1 1 & 1 0 02242887 -shaggy a 2 2 & + 2 1 02428610 02242887 -shaggy-coated a 1 1 & 1 0 02428610 -shaggy-haired a 1 1 & 1 0 02428610 -shakable a 1 1 & 1 0 00590782 -shakeable a 1 1 & 1 0 00590782 -shakedown a 1 1 \ 1 0 03144546 -shaken a 1 1 & 1 1 00086005 -shakespearean a 1 2 \ + 1 0 03027335 -shakespearian a 1 2 \ + 1 0 03027335 -shaky a 3 2 & + 3 1 02292797 02304565 02095037 -shallow a 3 4 ! & = + 3 1 00691696 00693356 01875227 -shallow-draft a 1 1 \ 1 0 03135608 -shallow-draught a 1 1 \ 1 0 03135608 -sham a 1 2 & + 1 0 01116857 -shamanist a 1 1 \ 1 0 03135786 -shamanistic a 1 2 \ + 1 0 03135786 -shambolic a 1 1 \ 1 0 03135937 -shamed a 2 1 & 2 0 00154583 00154163 -shamefaced a 3 2 & + 3 0 01538690 00154837 00154583 -shameful a 2 2 & + 2 1 01227546 01549964 -shameless a 1 2 & + 1 0 00155720 -shaped a 2 2 & \ 2 1 02149787 03136057 -shapeless a 2 2 & + 2 1 02151837 02142306 -shapely a 1 3 ! & + 1 1 02138659 -shaping a 1 1 & 1 0 00585398 -shared a 2 3 ! & ^ 2 1 02152216 00541189 -shared_out a 1 1 & 1 0 00541189 -sharing a 1 1 & 1 0 02099651 -sharp a 12 6 ! & ^ = + ; 12 9 00780352 01810189 01744515 00438909 01804728 01214430 01145151 00803038 00800826 01577973 01144230 00842810 -sharp-angled a 1 1 & 1 0 02049147 -sharp-cornered a 1 1 & 1 0 02049147 -sharp-eared a 1 1 & 1 0 00682841 -sharp-eyed a 3 1 & 3 0 02158438 01745653 00954064 -sharp-limbed a 1 1 & 1 1 01414740 -sharp-nosed a 1 1 & 1 0 01607744 -sharp-pointed a 1 1 \ 1 0 03136162 -sharp-set a 1 1 & 1 0 01269506 -sharp-sighted a 2 2 & + 2 0 02158438 01745653 -sharp-tasting a 1 1 & 1 0 02396267 -sharp-toothed a 1 1 & 1 0 00802960 -sharp-worded a 1 1 & 1 1 01804728 -sharpened a 2 1 & 2 0 01811172 00802844 -shattered a 1 1 & 1 0 00736671 -shattering a 1 1 & 1 1 01453984 -shatterproof a 1 1 & 1 0 00710097 -shaved a 1 1 & 1 1 02153472 -shaven a 1 2 ! & 1 1 02153472 -shavian a 1 2 \ + 1 0 03027213 -sheared a 2 2 ! & 2 0 02154422 00663807 -sheathed a 1 2 ! & 1 0 02154756 -shed a 1 2 & ; 1 0 01758582 -sheeny a 1 2 & + 1 0 00281657 -sheepish a 2 2 & + 2 0 02329075 00154837 -sheeplike a 1 1 & 1 1 02329075 -sheer a 4 1 & 4 3 00520892 01907103 01145422 02413390 -sheetlike a 1 1 & 1 0 00208872 -shelflike a 1 1 \ 1 0 03136242 -shelfy a 1 2 & + 1 0 00692548 -shell-less a 1 0 1 0 02597007 -shelled a 1 2 ! & 1 0 02596462 -shellproof a 1 1 & 1 0 02525732 -sheltered a 1 1 & 1 0 02526611 -shelvy a 1 1 & 1 0 00692548 -shield-shaped a 1 1 & 1 0 02170199 -shielded a 1 1 & 1 1 01885866 -shifting a 3 1 & 3 1 02505308 02305176 00503664 -shiftless a 1 2 & + 1 0 00105197 -shifty a 2 2 & + 2 0 02466382 02305176 -shimmery a 1 2 & + 1 0 00283167 -shingly a 1 2 & + 1 0 02242223 -shining a 3 1 & 3 1 02344241 01812237 00281657 -shinto a 1 1 \ 1 0 02924739 -shintoist a 1 1 \ 1 0 02924739 -shintoistic a 1 2 \ + 1 0 02924739 -shiny a 3 2 & + 3 1 00281657 01119421 01812237 -shipboard a 1 1 & 1 0 01757782 -shipshape a 1 1 & 1 1 02423649 -shirty a 1 2 & ; 1 0 01138450 -shitless a 1 2 & ; 1 0 00080861 -shitty a 1 3 & + ; 1 0 01127782 -shivering a 1 1 & 1 1 02304565 -shivery a 2 2 & + 2 1 01254026 00194924 -shoaly a 1 2 & + 1 0 00692548 -shock-absorbent a 1 1 & 1 0 00007331 -shock-headed a 1 1 & 1 0 00215344 -shockable a 1 1 ! 1 0 02155675 -shocked a 1 1 & 1 1 00078576 -shocking a 2 1 & 2 1 02101757 01549964 -shod a 2 2 ! & 2 1 02155936 02156934 -shodden a 1 1 & 1 0 02155936 -shoddy a 3 2 & + 3 0 02346351 02325642 01224253 -shoed a 1 1 & 1 0 02155936 -shoeless a 1 1 & 1 0 02156686 -shona a 1 1 \ 1 0 03136371 -shopsoiled a 1 1 & 1 0 02583467 -shopworn a 2 1 & 2 0 02583467 01688757 -shoreward a 1 0 1 0 00464195 -shorn a 1 0 1 0 02154422 -short a 11 6 ! & ^ = + ; 11 4 01442186 01436003 02386612 02336904 02006031 01444620 01444230 02337329 01896046 00709021 00640660 -short-beaked a 1 1 & 1 0 00207133 -short-billed a 1 1 & 1 0 00207133 -short-bodied a 1 1 & 1 0 00628687 -short-dated a 1 2 & ; 1 0 01443581 -short-eared a 1 1 & 1 0 00812710 -short-haired a 1 1 & 1 0 00215468 -short-handed a 1 1 & 1 0 00052431 -short-handled a 1 1 \ 1 0 03136487 -short-headed a 1 1 & 1 0 00262328 -short-lived a 1 1 & 1 1 01756292 -short-nosed a 1 1 & 1 0 01607572 -short-order a 1 1 \ 1 0 03136568 -short-range a 2 1 & 2 1 01443733 01437037 -short-run a 1 1 & 1 1 01443842 -short-snouted a 1 1 & 1 0 01437165 -short-spurred a 1 1 ! 1 0 02596342 -short-staffed a 1 1 & 1 0 00052431 -short-stalked a 1 1 & 1 0 02387970 -short-stemmed a 1 1 & 1 0 00321691 -short-tailed a 1 1 & 1 0 00320378 -short-tempered a 1 1 & 1 0 01135914 -short-term a 1 1 & 1 1 01443842 -short-winded a 1 1 & 1 0 00268748 -short-winged a 1 1 & 1 0 02567593 -short_and_sweet a 1 1 & 1 1 01443402 -shortened a 4 1 & 4 1 01436791 01442597 01437472 00004615 -shorthand a 1 1 & 1 0 02285969 -shortish a 1 1 & 1 0 01436968 -shortsighted a 3 2 & + 3 1 01896046 02157226 01899742 -shot a 1 1 & 1 0 00403072 -shouldered a 1 1 \ 1 1 03021693 -shouted a 1 1 & 1 0 01454244 -showery a 1 2 & + 1 0 02550333 -showy a 4 2 & + 4 1 01848701 00796591 00407420 00168039 -shredded a 1 1 & 1 0 00661640 -shrew-sized a 1 1 & 1 0 02224266 -shrewd a 2 2 & + 2 1 00438909 01155603 -shrewish a 1 2 & + 1 1 01138610 -shrieked a 1 1 < 1 1 03153653 -shrill a 3 2 & + 3 1 01214430 00713853 00403982 -shrimpy a 1 2 & + 1 0 01394558 -shrinkable a 1 1 ! 1 0 02158089 -shriveled a 3 2 & ; 3 1 02553234 00990442 00883345 -shrivelled a 3 2 & ; 3 0 02553234 00990442 00883345 -shrubby a 1 2 \ + 1 0 03021866 -shrunken a 2 1 & 2 0 00990442 00883345 -shuddering a 1 1 & 1 1 02305394 -shuddery a 1 2 & + 1 0 00194924 -shuha a 1 1 \ 1 0 02925084 -shut a 2 3 ! & ^ 2 2 01652782 01655162 -shut-in a 2 1 & 2 0 01351302 00558827 -shut_up a 1 1 & 1 1 00558951 -shuttered a 1 2 ! & 1 0 02256437 -shy a 3 4 & = + ; 3 0 00339941 02337558 00162863 -siamese a 3 2 \ + 3 0 03117012 03116809 03116651 -siberian a 1 2 \ + 1 0 03117272 -sibilant a 1 2 & + 1 0 01157179 -sibyllic a 1 2 & + 1 0 01882754 -sibylline a 2 1 & 2 0 01882754 00899738 -sicilian a 1 2 \ + 1 1 02959224 -sick a 7 3 & ^ + 7 4 02541302 02545689 02075321 01806677 02325984 01560165 00195684 -sick-abed a 1 1 & 1 0 02543034 -sick_of a 1 1 & 1 0 01806677 -sickening a 1 2 & + 1 0 02560035 -sickish a 1 1 & 1 1 02545689 -sickle-shaped a 1 1 & 1 0 02315914 -sickly a 2 1 & 2 1 01178134 02542325 -side a 1 2 ! & 1 1 02441215 -side-to-side a 1 1 \ 1 0 03136699 -side_by_side a 2 1 & 2 1 00447472 01974584 -sidearm a 1 1 \ 1 0 03144729 -sidelong a 3 1 & 3 1 00762721 02441469 01235568 -sidereal a 2 2 ! \ 2 0 02797408 00643116 -sidesplitting a 1 2 & ; 1 0 01267339 -sideways a 1 1 & 1 0 01719779 -sierra_leonean a 1 2 \ + 1 0 03117503 -sighted a 1 3 ! & + 1 0 02158301 -sightless a 1 2 & + 1 0 02160135 -sightly a 1 1 & 1 0 00218440 -sigmoid a 2 1 \ 2 0 02841678 02841534 -sigmoidal a 1 1 \ 1 0 02841534 -sign a 1 1 & 1 0 00498161 -sign-language a 1 1 & 1 0 00498161 -signal a 1 1 & 1 0 01286239 -signed a 2 2 ! & 2 1 02160878 00498161 -significant a 4 6 ! & ^ = + ; 4 4 02161432 00625055 02165655 01497387 -significative a 1 1 & 1 0 02091300 -sikh a 1 3 \ + ; 1 0 02797550 -silenced a 1 2 ! & 1 1 02166027 -silent a 6 2 & + 6 2 01919428 00501820 00942163 00175123 00174983 00151855 -siliceous a 1 2 \ + 1 0 02797704 -silicious a 1 2 \ + 1 0 02797704 -silk-lined a 1 1 & 1 0 01418104 -silken a 1 1 & 1 0 00282675 -silklike a 1 1 & 1 0 00282675 -silky a 1 2 & + 1 0 00282675 -silky-haired a 1 1 & 1 0 00215564 -silky-leafed a 1 1 & 1 0 01703012 -silky-leaved a 1 1 & 1 0 01703012 -silly a 4 3 & + ; 4 2 02571536 02120828 00752847 00437223 -silty a 1 2 & + 1 0 00503780 -silvan a 1 1 & 1 0 02574481 -silver a 4 1 & 4 3 01529053 00283327 00387392 00150505 -silver-blue a 1 1 & 1 0 00383700 -silver-bodied a 1 1 & 1 0 00628776 -silver-colored a 1 1 & 1 0 00400826 -silver-gray a 1 1 & 1 0 00391572 -silver-green a 1 1 & 1 0 00383827 -silver-grey a 1 1 & 1 0 00391572 -silver-haired a 1 1 & 1 0 00215654 -silver-leafed a 1 1 & 1 0 01703106 -silver-leaved a 1 1 & 1 0 01703106 -silver-scaled a 1 1 & 1 0 00147397 -silver-tongued a 1 1 & 1 0 00150505 -silver-white a 1 1 & 1 0 00391699 -silverish a 1 1 & 1 0 00387392 -silvern a 2 1 & 2 0 00301032 00283327 -silvery a 3 2 & + 3 2 00301032 00283327 00387392 -silvery-blue a 1 1 & 1 0 00383700 -silvery-bodied a 1 1 & 1 0 00628776 -silvery-gray a 1 1 & 1 0 00391572 -silvery-green a 1 1 & 1 0 00383827 -silvery-grey a 1 1 & 1 0 00391572 -silvery-leafed a 1 1 & 1 0 01703106 -silvery-leaved a 1 1 & 1 0 01703106 -silvery-white a 1 1 & 1 0 00391699 -simian a 1 2 \ + 1 0 02992241 -similar a 5 5 ! & ^ = + 5 2 02071420 01410606 01409581 02381495 01978532 -simple a 7 6 ! & ^ = + ; 7 5 02174896 00750296 01792573 02272047 01841390 02166346 01793812 -simple-minded a 2 2 & + 2 1 02272954 01841390 -simplex a 2 2 & ; 2 1 00234522 02175267 -simplified a 1 1 & 1 1 00750843 -simplistic a 1 1 & 1 1 02175487 -simulated a 2 1 & 2 1 01573238 01217338 -simultaneous a 1 2 & + 1 1 02378496 -sincere a 2 5 ! & ^ = + 2 1 02179279 02118840 -sinewy a 3 3 & \ + 3 1 02446239 02811265 02321809 -sinful a 3 2 & + 3 1 02514543 02037531 01534648 -singable a 1 1 & 1 0 01505181 -singaporean a 2 2 \ + 2 0 03117835 03117653 -singhalese a 2 1 \ 2 0 03118215 03118050 -singing a 1 2 & ; 1 0 01501718 -single a 7 6 ! & ^ = + ; 7 1 00493460 02220571 02213947 01482228 02153174 01966740 00539389 -single-barreled a 1 1 ! 1 0 00794146 -single-barrelled a 1 0 1 0 00794146 -single-bedded a 1 1 & 1 0 00207809 -single-breasted a 1 1 ! 1 0 00794650 -single-celled a 1 1 & 1 0 00328401 -single-channel a 1 2 & ; 1 0 00241079 -single-handed a 2 1 & 2 0 02353488 00729776 -single-humped a 1 1 \ 1 0 02770951 -single-lane a 1 1 ! 1 0 02221173 -single-minded a 1 2 & + 1 0 01991267 -single-seeded a 1 1 & 1 0 02255736 -single-shelled a 1 1 & 1 0 02483839 -single-spaced a 1 1 & 1 1 01656253 -single-stranded a 1 1 \ 1 0 02797907 -singsong a 1 1 & 1 0 02020609 -singular a 6 3 ! & + 6 3 01678417 00968010 00494622 02183421 02182862 02215087 -sinhala a 1 1 \ 1 0 03118215 -sinhalese a 2 1 \ 2 0 03118215 03118050 -sinister a 3 2 & ; 3 2 00194357 01131935 00743742 -sinistral a 2 4 ! & ^ + 2 0 00743435 02029568 -sinistrorsal a 1 2 & ; 1 0 00743869 -sinistrorse a 1 2 & ; 1 0 00743869 -sinitic a 1 1 \ 1 0 02964904 -sinkable a 1 1 ! 1 0 02213748 -sinless a 1 2 & + 1 0 02513614 -sinning a 1 1 & 1 0 01631217 -sintered a 1 1 < 1 1 03153755 -sinuate a 2 1 & 2 0 02316992 02245108 -sinuous a 1 2 & + 1 1 02316992 -sinusoidal a 1 2 & + 1 1 02317145 -siouan a 1 2 \ + 1 0 02798014 -siouan-speaking a 1 1 & 1 0 00500024 -sissified a 1 1 & 1 0 01476325 -sissy a 1 2 & + 1 0 01476325 -sissyish a 1 1 & 1 0 01476325 -sisterlike a 1 0 1 0 00291665 -sisterly a 1 2 ! + 1 0 00291665 -sisyphean a 2 3 & \ + 2 0 02798167 00837868 -sitting a 2 1 & 2 1 01240029 01565139 -situated a 1 1 & 1 1 02126430 -six a 1 1 & 1 1 02186833 -six-fold a 1 1 & 1 0 02219770 -six-membered a 1 1 & 1 0 01503179 -six-pointed a 1 1 & 1 0 01811277 -six-sided a 1 1 & 1 0 00238564 -sixfold a 1 1 & 1 0 02219770 -sixpenny a 1 1 & 1 0 00935359 -sixteen a 1 1 & 1 1 02187903 -sixteenth a 1 1 & 1 1 02204131 -sixth a 1 1 & 1 1 02202854 -sixtieth a 1 1 & 1 0 02208385 -sixty a 1 1 & 1 1 02192184 -sixty-eight a 1 1 & 1 0 02192947 -sixty-fifth a 1 1 & 1 0 02208608 -sixty-five a 1 1 & 1 0 02192662 -sixty-four a 1 1 & 1 0 02192567 -sixty-fourth a 1 1 & 1 0 02208492 -sixty-nine a 1 1 & 1 0 02193046 -sixty-one a 1 1 & 1 0 02192284 -sixty-seven a 1 1 & 1 0 02192849 -sixty-six a 1 1 & 1 0 02192756 -sixty-three a 1 1 & 1 0 02192469 -sixty-two a 1 1 & 1 0 02192376 -sizable a 2 1 & 2 1 01383394 00624576 -size a 1 2 & ; 1 1 02224362 -sizeable a 2 2 & + 2 0 01383394 00624576 -sized a 2 2 ! & 2 1 02222053 02225287 -sizzling a 2 1 & 2 1 01249962 01256973 -skanky a 1 2 & + 1 0 01625893 -skeletal a 2 3 & \ + 2 1 02935725 00988988 -skeptical a 2 2 & + 2 2 00647247 02463847 -sketchy a 1 2 & + 1 0 00525105 -skew a 1 2 & + 1 0 01235706 -skew-eyed a 1 1 & 1 0 00954864 -skew-whiff a 1 1 & 1 0 02312450 -skewed a 1 1 & 1 0 01235706 -skilful a 1 1 & 1 0 02226162 -skilled a 1 3 ! & ^ 1 1 02225510 -skillful a 2 2 & + 2 1 02226162 01838916 -skim a 1 1 & 1 0 00993316 -skimmed a 1 1 & 1 0 00993316 -skimpy a 1 1 & 1 0 02337188 -skin-deep a 1 1 & 1 0 01875437 -skin-tight a 1 1 & 1 0 01448058 -skinless a 1 1 ! 1 0 02597781 -skinned a 1 2 ! & 1 0 02597496 -skinnerian a 1 2 \ + 1 0 03027538 -skinny a 4 3 & \ + 4 1 00990192 02935913 01448178 01113225 -skint a 1 1 & 1 0 02023287 -skintight a 1 1 & 1 0 01448058 -skirting a 1 1 & 1 0 00332091 -skittish a 1 2 & + 1 0 00919155 -sky-blue a 1 1 & 1 0 00370267 -skyward a 1 1 & 1 0 02491171 -slack a 3 2 & + 3 1 02404421 01241455 00755482 -slain a 1 1 & 1 0 00098147 -slaked a 1 1 & 1 0 01519673 -slam-bang a 1 2 & ; 1 0 02512794 -slanderous a 1 2 & + 1 0 01161233 -slangy a 1 2 & + 1 0 01046784 -slanted a 2 1 & 2 1 01234747 01723091 -slanting a 1 1 & 1 1 01234747 -slap-up a 1 2 & ; 1 0 01123879 -slapdash a 1 1 & 1 0 00312519 -slaphappy a 2 2 & ; 2 0 01998260 00437223 -slapstick a 1 1 & 1 0 01267632 -slashed a 3 1 & 3 2 01790348 00663981 00882742 -slashing a 1 1 & 1 1 00810355 -slate-black a 1 1 & 1 0 00391806 -slate-gray a 1 1 & 1 0 00391897 -slate-grey a 1 1 & 1 0 00391897 -slatey a 1 1 & 1 0 00391897 -slatternly a 1 2 & + 1 0 02424716 -slaty a 1 1 & 1 0 00391897 -slaty-gray a 1 1 & 1 0 00391897 -slaty-grey a 1 1 & 1 0 00391897 -slaughterous a 1 2 & + 1 0 00249104 -slav a 1 2 \ + 1 0 03118661 -slaveholding a 1 1 & 1 0 01066441 -slaveless a 1 1 & 1 0 01065941 -slavelike a 1 1 & 1 0 00791044 -slavic a 1 2 \ + 1 0 03118790 -slavish a 2 1 & 2 0 01689775 00790691 -slavonic a 1 2 \ + 1 0 03118790 -sleazy a 3 3 & + ; 3 0 02414908 02346013 01984806 -sleek a 3 2 & + 3 0 02427981 02238128 00282675 -sleeping a 1 2 & ; 1 0 01238914 -sleepless a 2 2 & + 2 0 00187176 00092391 -sleepy a 1 2 & + 1 1 00189017 -sleepy-eyed a 1 1 & 1 1 00189017 -sleepyheaded a 1 1 & 1 0 00189017 -sleety a 1 2 & + 1 0 01079396 -sleeved a 1 1 ! 1 0 02256868 -sleeveless a 2 2 ! & 2 0 02257038 01866812 -slender a 5 2 & + 5 5 00990855 02562566 02415025 01394744 01140290 -slender-bodied a 1 1 & 1 0 00628881 -slender-waisted a 1 1 & 1 1 00991189 -slender-winged a 1 1 & 1 0 02567918 -sliced a 2 1 & 2 0 00661640 00317727 -slick a 4 2 & + 4 0 02235520 01799781 00282675 00148078 -slicked a 1 1 & 1 0 02427718 -slicked_up a 1 1 & 1 0 02423865 -sliding a 1 1 & 1 1 02235740 -slight a 3 3 & ^ + 3 0 01554510 02164913 00990855 -slighting a 1 1 & 1 0 00906655 -slim a 2 2 & + 2 1 00990855 01394744 -slim-bodied a 1 1 & 1 0 00628881 -slim-waisted a 1 1 & 1 1 00991189 -slimed a 1 1 & 1 0 02235826 -slimy a 2 2 & + 2 0 02235826 01133017 -slipper-shaped a 1 1 & 1 0 02149695 -slippered a 1 1 & 1 1 02156505 -slippery a 2 4 ! & ^ + 2 1 02234781 02466734 -slipping a 1 1 & 1 1 02235994 -slippy a 1 3 & ^ + 1 0 02234781 -slipshod a 1 1 & 1 0 00312519 -slithering a 1 1 & 1 0 02235994 -slithery a 1 1 & 1 0 02236146 -slivery a 1 2 \ + 1 1 02801349 -sloped a 1 1 & 1 0 01234747 -sloping a 2 1 & 2 2 01234747 01144730 -slopped a 1 2 & ; 1 0 00798103 -sloppy a 6 2 & + 6 1 02426420 02550170 02548066 01446991 00856511 00312519 -sloshed a 1 2 & ; 1 0 00798103 -slothful a 1 2 & + 1 0 00294579 -slouchy a 1 2 & + 1 0 02426550 -sloughy a 1 2 & + 1 0 02548066 -slovakian a 1 2 \ + 1 0 02964482 -slovenian a 1 2 \ + 1 0 02964291 -slovenly a 1 2 & + 1 1 02425749 -slow a 6 6 ! & ^ = + ; 6 3 00980527 00982602 00440579 00983722 01345307 00036998 -slow-moving a 1 1 & 1 1 00981612 -slow-witted a 1 3 & + ; 1 0 01840673 -slowgoing a 1 1 & 1 0 00885594 -slubbed a 1 1 & 1 0 02240795 -sluggish a 3 3 & + ; 3 1 00981703 00036998 00034322 -sluicing a 1 1 < 1 1 03153849 -slumberous a 2 2 & + 2 0 01922410 00189253 -slumbery a 1 2 & + 1 0 00189253 -slumbrous a 2 2 & + 2 0 01922410 00189253 -slummy a 1 2 & + 1 0 02025885 -slurred a 1 1 & 1 1 01337314 -slushy a 2 2 & + 2 0 01080060 00854413 -sluttish a 2 2 & + 2 0 02424716 00361837 -sly a 1 2 & + 1 1 00148078 -small a 10 5 ! & = + ; 10 7 01391351 01415219 01649031 01554940 02340458 01467534 01455732 02233680 01532912 00882580 -small-cap a 1 1 \ 1 0 03118960 -small-capitalisation a 1 1 \ 1 0 03118960 -small-capitalization a 1 1 \ 1 0 03118960 -small-eared a 1 1 & 1 0 00812785 -small-fruited a 1 1 & 1 0 01082456 -small-grained a 1 1 & 1 0 02233390 -small-minded a 1 1 & 1 0 00288498 -small-scale a 2 1 & 2 1 01395095 01415219 -small-seeded a 1 1 & 1 0 02255840 -small-time a 1 1 & 1 1 01281695 -small-toothed a 1 1 & 1 0 02439225 -small-winged a 1 1 & 1 0 02567999 -smaller a 1 1 & 1 1 01394922 -smallish a 1 1 & 1 1 01395028 -smarmy a 1 2 & + 1 0 02181432 -smart a 7 4 ! & ^ + 7 4 00438707 00975487 01335458 00205295 01513376 00980144 00182718 -smart_as_a_whip a 1 1 & 1 1 01335156 -smashed a 1 2 & ; 1 0 00798103 -smashing a 1 2 & ; 1 0 01123879 -smelling a 1 1 & 1 0 01056897 -smelly a 1 2 & + 1 0 01053634 -smiling a 1 2 & + 1 1 00363031 -smitten a 2 2 & ; 2 1 00071242 01465668 -smoggy a 1 2 & + 1 0 00462741 -smoke-cured a 1 1 & 1 0 01073435 -smoke-dried a 1 1 & 1 0 01073435 -smoke-filled a 1 1 & 1 0 02234388 -smoke-free a 1 1 & 1 0 02234673 -smoked a 1 1 & 1 0 01073435 -smokeless a 1 2 ! & 1 0 02234485 -smoking a 1 1 & 1 0 02234281 -smoky a 2 3 ! & + 2 0 02233927 02398928 -smoldering a 1 1 & 1 0 00116058 -smooth a 8 5 ! & ^ + ; 8 4 02236842 00758800 02244619 01139832 02294263 02243411 00750926 00302951 -smooth-bodied a 1 1 & 1 0 00628988 -smooth-faced a 1 1 & 1 0 00211092 -smooth-haired a 1 1 & 1 0 00215745 -smooth-shaven a 1 1 & 1 0 02153705 -smooth-shelled a 1 1 & 1 0 02596728 -smooth-skinned a 1 1 & 1 0 02597617 -smooth-spoken a 1 1 & 1 0 00150505 -smooth-textured a 1 1 & 1 0 02237644 -smooth-tongued a 1 1 & 1 0 01770726 -smoothbore a 1 0 1 0 02248204 -smoothed a 1 1 & 1 0 01359771 -smoothened a 1 1 & 1 0 01359771 -smothered a 2 1 & 2 1 01316808 01697425 -smothering a 1 1 & 1 1 00268383 -smouldering a 1 1 & 1 0 00116058 -smudgy a 1 2 & + 1 0 00423001 -smug a 1 2 & + 1 1 00589448 -smuggled a 1 1 & 1 0 01402580 -smutty a 2 2 & + 2 0 00425313 00421002 -snafu a 1 2 & + 1 0 01669617 -snake-haired a 1 1 & 1 0 00215834 -snakelike a 1 1 & 1 0 02316820 -snaky a 1 2 & + 1 0 02316820 -snappish a 1 2 & + 1 0 01138770 -snappy a 5 2 & + 5 1 01138770 02280680 01252714 00971933 00874226 -snarled a 1 1 & 1 0 00255720 -snarly a 1 2 & + 1 0 00255720 -snazzy a 1 2 & ; 1 0 00976016 -sneak a 1 2 & + 1 0 02088974 -sneaking a 1 1 & 1 0 02090228 -sneaky a 2 2 & + 2 0 02319346 02088974 -sneering a 1 1 & 1 0 00907400 -sneezy a 1 2 & + 1 0 02546624 -snide a 1 1 & 1 0 00907400 -sniffly a 1 2 & + 1 0 02473757 -sniffy a 1 1 & 1 0 01891109 -snobbish a 1 2 & + 1 1 01858740 -snobby a 1 2 & + 1 0 01858740 -snoopy a 1 2 & + 1 0 00665156 -snooty a 1 2 & + 1 0 01890382 -snorty a 1 3 & + ; 1 0 01138450 -snot-nosed a 2 1 & 2 0 01890382 00423269 -snotty a 2 2 & + 2 0 01890382 00423269 -snotty-nosed a 1 1 & 1 0 01996051 -snow-blind a 1 2 & + 1 0 02160465 -snow-blinded a 1 1 & 1 0 02160465 -snow-capped a 1 1 \ 1 0 02798267 -snow-clad a 1 1 & 1 0 01697592 -snow-covered a 1 1 & 1 0 01697592 -snow-white a 1 1 & 1 0 00392093 -snowbound a 1 1 & 1 0 00559031 -snowy a 3 2 & + 3 0 01698231 01697592 00392093 -snub a 1 1 & 1 0 01437268 -snub-nosed a 1 1 & 1 0 01607572 -snuff a 1 1 & 1 0 00383957 -snuff-brown a 1 1 & 1 0 00383957 -snuffling a 1 1 & 1 0 02473757 -snuffly a 1 2 & + 1 0 02473757 -snug a 4 2 & + 4 1 01885991 01447937 01399096 00477284 -snuggled a 1 1 & 1 1 00449889 -so-called a 1 1 & 1 1 01916555 -so-so a 1 1 & 1 1 01674604 -soaked a 1 2 & ; 1 0 00798103 -soapy a 2 3 & \ + 2 0 03026319 02181432 -soaring a 2 1 & 2 1 01212346 01205473 -sober a 4 4 ! & = + 4 3 00799517 02119213 00405179 02123314 -sobering a 1 1 & 1 1 02120150 -sobersided a 1 1 & 1 0 01268636 -sociable a 2 5 ! & ^ = + 2 0 02257141 00560900 -social a 6 7 ! & ^ \ = + ; 6 4 02798370 02248349 02798597 02258360 02252877 01076634 -socialised a 1 1 & 1 0 00576423 -socialist a 1 3 & ^ + 1 0 00298041 -socialistic a 1 4 ! & ^ + 1 1 00298041 -socialized a 1 1 & 1 1 00576423 -societal a 1 2 \ + 1 1 02798370 -sociobiologic a 1 2 \ + 1 0 02666132 -sociobiological a 1 2 \ + 1 0 02666132 -sociocultural a 1 1 \ 1 0 02872654 -socioeconomic a 1 1 \ 1 1 02717021 -sociolinguistic a 1 2 \ + 1 0 02842981 -sociological a 1 2 \ + 1 1 02906206 -sociopathic a 1 2 \ + 1 0 02799173 -socratic a 1 2 \ + 1 0 03033636 -sodden a 1 1 & 1 1 02549032 -sodding a 1 1 & 1 0 01520091 -soft a 19 6 ! & ^ = + ; 19 4 01152746 01156112 01454636 02448324 02286083 01459295 01458303 01157887 01156925 02487540 01914767 01763159 01509066 01192035 01019713 00760473 00750054 00438332 00284400 -soft-boiled a 2 1 & 2 0 01158453 00618752 -soft-finned a 1 1 \ 1 0 02798806 -soft-footed a 1 1 & 1 0 01456487 -soft-haired a 1 1 & 1 0 00215929 -soft-nosed a 1 1 \ 1 0 02798901 -soft-spoken a 1 1 & 1 1 01456572 -soft-witted a 1 1 & 1 0 00441365 -soft_on a 1 1 & 1 0 01465668 -softened a 2 1 & 2 1 01541567 01454985 -softening a 1 1 & 1 1 01153844 -softheaded a 1 2 & ; 1 0 01836766 -softhearted a 1 2 ! + 1 0 01158453 -softish a 1 1 & 1 0 01154886 -soggy a 3 2 & + 3 0 02548066 01185417 00034322 -soi-disant a 1 1 & 1 0 01918001 -soigne a 1 1 & 1 0 00850983 -soignee a 1 1 & 1 0 00850983 -soil-building a 1 1 & 1 0 01832491 -soiled a 1 3 & ^ = 1 1 00419289 -solanaceous a 1 2 \ + 1 0 02799301 -solar a 1 1 \ 1 1 02799016 -sold a 1 2 ! & 1 0 02259239 -sold-out a 2 1 & 2 1 00622468 02259540 -soldierlike a 1 1 & 1 0 01518694 -soldierly a 1 2 & + 1 0 01518694 -sole a 2 1 & 2 1 02152985 02214736 -soled a 1 1 ! 1 1 02259817 -soleless a 1 1 ! 1 0 02259966 -solemn a 2 2 & + 2 1 02119213 02118840 -solicitous a 2 2 & + 2 0 00544860 00164681 -solid a 15 5 ! & ^ = + 15 10 01125006 02260035 02263680 01200339 00291181 02558528 02275412 01151740 00658166 00434597 02273952 02120276 01993693 01200491 00784215 -solid-colored a 1 1 & 1 0 01786026 -solid-coloured a 1 1 & 1 0 01786026 -solid-hoofed a 1 1 & 1 0 02489667 -solid-state a 2 2 & ; 2 1 02261162 02261013 -solidified a 1 1 & 1 0 02260382 -solitary a 5 2 & + 5 2 02250430 02253205 02251212 02214736 01313649 -solo a 1 2 & ; 1 0 02252480 -solomonic a 1 2 \ + 1 0 02799446 -soluble a 2 4 ! & ^ + 2 1 02265015 02266145 -solvable a 1 2 & + 1 0 02266451 -solved a 1 1 ! 1 1 02267012 -solvent a 1 2 ! + 1 0 02026312 -somali a 1 2 \ + 1 0 03119182 -somalian a 1 2 \ + 1 0 03119182 -somatic a 1 1 & 1 1 01778935 -somatogenetic a 1 1 & 1 0 01779792 -somatogenic a 1 1 & 1 0 01779792 -somatosensory a 1 1 \ 1 0 02799595 -somber a 2 2 & + 2 1 00405179 00365261 -sombre a 2 2 & + 2 0 00405179 00365261 -some a 4 4 ! & ^ ; 4 3 02267308 01554063 01552634 01678586 -some_other a 1 1 & 1 1 02070188 -sometime a 1 1 & 1 0 01729566 -somniferous a 1 1 & 1 0 02309187 -somnific a 1 1 & 1 0 02309187 -somnolent a 1 2 & + 1 1 00189253 -sonant a 1 1 + 1 0 02286083 -songful a 1 2 & + 1 0 01501619 -songlike a 1 1 & 1 0 01501505 -sonic a 2 2 ! & 2 0 00175528 00174150 -sonorous a 1 2 & + 1 1 01457692 -sonsie a 1 1 & 1 0 02138989 -sonsy a 1 1 & 1 0 02138989 -soot-black a 1 1 & 1 0 00392184 -soothing a 2 1 & 2 0 00477896 00197151 -sooty a 2 2 & + 2 1 00388849 00423431 -sooty-black a 1 1 & 1 0 00392184 -sophistic a 2 3 & \ + 2 0 02999616 02500736 -sophistical a 1 2 & + 1 0 02500736 -sophisticated a 3 3 ! & ^ 3 2 02270342 01208738 01333609 -sophomore a 1 2 & + 1 0 01015599 -soporiferous a 2 1 & 2 0 02309187 01346198 -soporific a 2 2 & + 2 0 02309187 01346198 -soppy a 2 1 & 2 0 02549032 00854413 -sopranino a 1 1 & 1 0 01215028 -soprano a 1 1 & 1 0 01214842 -sorbed a 1 1 & 1 1 01330307 -sorbefacient a 1 1 & 1 0 00006777 -sorcerous a 1 2 & + 1 0 01576071 -sordid a 4 2 & + 4 1 01984806 00621857 00421875 00031384 -sore a 3 3 & + ; 3 3 01712753 01804175 00115193 -sore-eyed a 1 1 & 1 1 01178231 -sororal a 1 0 1 0 00291665 -sorrel a 1 1 & 1 1 00384099 -sorrowful a 1 4 ! & ^ + 1 1 01364008 -sorrowing a 1 1 & 1 0 01364817 -sorry a 4 3 & ^ + 4 2 01150475 01126841 02502578 00364881 -sorted a 2 1 & 2 0 02224509 00414919 -soteriological a 1 2 \ + 1 0 02799689 -sotho a 1 2 \ + 1 0 03119441 -sottish a 1 2 & + 1 0 00798491 -souffle-like a 1 1 & 1 0 00618865 -soughing a 1 1 & 1 0 01456221 -sought a 2 2 & < 2 1 03154886 02527588 -sought-after a 1 1 & 1 0 02527588 -sought_after a 1 1 & 1 0 00733297 -soul-destroying a 1 1 & 1 0 00588535 -soul-stirring a 1 1 & 1 0 01561429 -soulful a 1 2 & + 1 0 00856651 -soulless a 1 1 & 1 0 02107991 -sound a 9 4 ! & ^ + 9 4 02273326 01944088 02275209 01171213 02499511 02499148 02037152 00693020 00523786 -sound_asleep a 1 1 & 1 0 00188738 -soundable a 1 0 1 0 00994744 -sounding a 3 1 & 3 1 01874886 01457871 00174243 -soundless a 1 2 & + 1 0 01919428 -soundproof a 1 1 & 1 1 01775420 -soupy a 2 2 & + 2 0 02416898 00854413 -sour a 6 4 ! & ^ + 6 1 01054922 02368787 02399014 02369869 01164420 01137378 -sour-tasting a 1 1 & 1 0 02395810 -soured a 1 3 ! & ^ 1 0 02369763 -sourish a 1 1 & 1 0 02369460 -soused a 1 2 & ; 1 0 00798103 -south a 1 3 ! & = 1 1 01602330 -south-central a 2 1 & 2 1 01602797 01605569 -south-polar a 1 2 & + 1 0 02444627 -south_african a 1 2 \ + 1 0 02928926 -south_american a 1 2 \ + 1 0 02928728 -south_korean a 1 2 \ + 1 0 02968166 -southbound a 1 1 & 1 1 01602683 -southeast a 2 1 & 2 0 01603649 01603518 -southeasterly a 2 2 & + 2 0 01603649 01603518 -southeastern a 2 1 & 2 1 01603518 00827743 -southeastward a 1 1 & 1 0 01603789 -southerly a 2 2 & + 2 0 01603179 01602966 -southern a 4 4 ! & = + 4 4 01606648 01603179 01605081 01602966 -southernmost a 1 1 & 1 0 01603354 -southmost a 1 1 & 1 0 01603354 -southward a 1 1 & 1 0 01602683 -southwest a 2 1 & 2 0 01604000 01603869 -southwesterly a 2 2 & + 2 0 01604000 01603869 -southwestern a 2 1 & 2 0 01603869 00826215 -southwestward a 1 1 & 1 0 01604146 -sovereign a 2 1 & 2 2 01062393 00792641 -soviet a 1 1 \ 1 1 02959406 -sown a 1 1 & 1 0 01832245 -sozzled a 1 2 & ; 1 0 00798103 -spaced a 2 2 ! & 2 1 00542282 01655783 -spaced-out a 2 1 & 2 0 00609938 00437419 -spacey a 1 1 & 1 0 00609938 -spacial a 1 2 \ + 1 0 02841066 -spaciotemporal a 1 1 & 1 0 00528333 -spacious a 2 2 & + 2 1 01384212 00476249 -spacy a 1 1 & 1 0 00609938 -spade-like a 1 1 & 1 0 02150029 -spade-shaped a 1 1 & 1 0 02150029 -spangled a 1 1 & 1 0 00056660 -spangly a 1 2 & + 1 0 00056660 -spanish a 1 1 \ 1 1 02958576 -spanish-speaking a 1 1 & 1 0 00500126 -spanking a 1 1 & 1 0 00874226 -spare a 6 2 & + 6 2 00991301 01581305 01624115 01582306 00106821 00060605 -sparing a 1 2 & ; 1 0 02421364 -sparkling a 2 2 ! & 2 1 02299748 02277279 -sparkly a 2 2 & + 2 0 00805810 00279618 -sparrow-sized a 1 1 & 1 0 02224588 -sparse a 1 2 & + 1 1 00542359 -spartan a 4 3 & \ + 4 0 02972690 01991462 01301316 00009618 -spasmodic a 2 1 & 2 1 02303754 00593664 -spastic a 3 3 & \ + 3 0 03119608 02546713 02303754 -spatial a 1 3 ! \ + 1 1 02841066 -spatiotemporal a 2 2 & \ 2 0 02811081 00528333 -spattered a 1 1 & 1 0 01695891 -spatula-shaped a 1 1 & 1 0 02170821 -spatulate a 1 1 & 1 0 02170821 -spavined a 1 1 & 1 0 01020007 -spayed a 1 1 & 1 0 02137205 -speakable a 1 1 & 1 0 00943831 -speaking a 1 2 ! & 1 0 00152896 -spearhead-shaped a 1 1 & 1 0 02168400 -special a 7 2 & + 7 6 01104026 01678729 00488187 02278011 01103844 01853228 02367319 -specialised a 1 2 & ^ 1 0 02277607 -specialistic a 2 3 & \ + 2 0 02799988 02278195 -specialized a 1 3 ! & ^ 1 1 02277607 -specifiable a 1 1 & 1 0 01273033 -specific a 4 7 ! & ^ \ = + ; 4 2 01103021 01099951 02989316 01105233 -specified a 1 2 ! & 1 1 01099536 -specious a 2 2 & + 2 0 02462210 02182302 -specked a 1 1 & 1 0 01788445 -speckled a 1 1 & 1 1 01788445 -speckless a 1 1 & 1 0 00418364 -spectacled a 1 1 & 1 0 00056943 -spectacular a 3 2 & + 3 2 01284212 00795246 00580805 -spectral a 2 3 & \ + 2 2 02800132 01574925 -spectrographic a 1 2 \ + 1 0 02800291 -spectrometric a 1 2 \ + 1 0 02918132 -spectroscopic a 1 2 \ + 1 0 02918271 -spectroscopical a 1 2 \ + 1 0 02918271 -specular a 1 1 & 1 1 02008082 -speculative a 3 2 & + 3 2 02274537 00861818 00664879 -speech-endowed a 1 1 & 1 0 00150835 -speechless a 1 2 & + 1 0 00152629 -speedy a 2 2 & + 2 2 00979862 00979366 -spell-bound a 1 1 & 1 0 00865848 -spellbinding a 1 1 & 1 1 00168188 -spellbound a 1 1 & 1 1 00865848 -spendable a 1 1 & 1 0 00777891 -spendthrift a 1 1 & 1 0 02422242 -spent a 2 1 & 2 0 00926141 02433451 -sperm-filled a 1 1 & 1 0 01086042 -spermatic a 1 2 \ + 1 0 02800529 -spermicidal a 1 2 \ + 1 0 02800427 -spermous a 1 2 \ + 1 0 02800529 -spheric a 1 2 & + 1 0 02041229 -spherical a 2 4 ! & \ + 2 2 02800689 02041229 -spheroidal a 1 2 & + 1 0 02046446 -sphingine a 1 1 \ 1 0 02800941 -spic a 1 1 & 1 1 00418364 -spic-and-span a 2 1 & 2 0 01641460 00418364 -spicate a 1 2 \ ; 1 0 03119811 -spice-scented a 1 1 & 1 0 01057270 -spick a 1 1 & 1 0 00418364 -spick-and-span a 2 1 & 2 0 01641460 00418364 -spicy a 3 2 & + 3 0 02398378 02397732 02132224 -spider-shaped a 1 1 & 1 0 02150130 -spiderlike a 1 1 ; 1 0 02636811 -spiderly a 1 1 ; 1 0 02636811 -spidery a 1 2 + ; 1 1 02636811 -spiffed_up a 1 1 & 1 0 00455824 -spiffing a 1 2 & ; 1 0 02344381 -spiffy a 1 1 & 1 0 00971933 -spiked a 1 1 & 1 0 01811352 -spikelike a 1 1 & 1 0 01811430 -spiky a 1 1 & 1 0 01214255 -spinal a 1 2 \ + 1 0 02884456 -spindle-legged a 1 1 & 1 0 00991481 -spindle-shanked a 1 1 & 1 0 00991481 -spindle-shaped a 1 1 & 1 0 01810613 -spindly a 1 1 & 1 0 00989647 -spine-tipped a 1 1 & 1 0 02431351 -spineless a 4 4 ! & + ; 4 1 02325816 02510273 02278842 00146128 -spinnable a 2 2 & + 2 0 02364834 01023010 -spinnbar a 1 1 & 1 0 01023010 -spinose a 1 1 & 1 0 02248011 -spinous a 2 3 ! & + 2 0 02278738 01810011 -spiny a 2 2 & + 2 0 02278738 00145083 -spiny-backed a 1 1 & 1 0 00200760 -spiny-edged a 1 1 & 1 0 00259098 -spiny-finned a 1 1 \ 1 0 03119937 -spiny-leafed a 1 1 & 1 0 01703237 -spiny-leaved a 1 1 & 1 0 01703237 -spiny-stemmed a 1 1 & 1 0 00321770 -spiral a 1 1 & 1 0 02317598 -spiral-shelled a 1 1 & 1 0 02596810 -spiraling a 1 1 & 1 0 02317598 -spirant a 1 1 & 1 0 01157179 -spirited a 4 5 ! & ^ = + 4 1 02278939 00805309 00263994 00118844 -spiritless a 2 5 ! & ^ = + 2 0 02281325 00789494 -spiritous a 1 2 & + 1 0 01159217 -spiritual a 4 2 & + 4 3 02056265 02579136 00631193 01574925 -spiritualist a 1 1 \ 1 0 02911876 -spiritualistic a 1 2 \ + 1 0 02911876 -spirituous a 1 2 & + 1 0 01159217 -spiteful a 1 2 & + 1 1 00225099 -splanchnic a 1 0 1 0 02862964 -splashed a 2 1 & 2 1 00542501 01695891 -splashy a 3 3 & \ + 3 0 02801037 01848701 01697770 -splattered a 1 1 & 1 1 01695891 -splay a 1 1 & 1 0 01032978 -splayfoot a 1 1 & 1 0 01032710 -splayfooted a 1 2 ! & 1 0 01032710 -splendid a 3 1 & 3 1 00219389 02343110 01285376 -splendiferous a 1 1 & 1 0 00219389 -splenetic a 2 3 & \ + 2 0 02801156 01135420 -splenic a 1 2 \ + 1 0 02801156 -splinterless a 1 1 & 1 0 00710097 -splinterproof a 1 1 & 1 0 00710097 -splintery a 2 3 & \ + 2 1 00709625 02801349 -split a 2 1 & 2 1 02481012 00662529 -splitting a 1 1 & 1 1 00300469 -splotched a 1 1 & 1 0 01787408 -spoilable a 1 1 & 1 0 01753785 -spoiled a 2 1 & 2 1 01138902 01069283 -spoilt a 3 1 & 3 0 01138902 01069283 00734906 -spoken a 1 3 ! & ^ 1 1 02283703 -spondaic a 1 3 \ + ; 1 0 03120034 -spongelike a 2 1 & 2 0 01154964 00007516 -spongy a 2 2 & + 2 1 01154964 00007516 -spontaneous a 2 3 ! & + 2 1 02282376 02213557 -spooky a 1 1 & 1 0 00919155 -spoon-shaped a 1 1 & 1 0 02150220 -sporadic a 1 3 ! & ^ 1 1 00593374 -spore-bearing a 1 1 & 1 0 02598110 -sporogenous a 1 1 \ 1 0 02801641 -sporting a 4 2 & \ 4 3 00956733 02801839 00066565 01297946 -sportive a 2 3 & \ + 2 0 02801749 02122132 -sportsmanlike a 1 1 & 1 0 00956733 -sporty a 3 1 & 3 0 00956733 00407420 00033475 -spotless a 1 2 & + 1 1 00418364 -spotted a 1 1 & 1 0 01789481 -spotty a 2 1 & 2 0 01789481 00578662 -spousal a 2 2 \ + 2 0 02843495 02801964 -spouting a 1 1 & 1 0 01240931 -sprawling a 1 1 & 1 0 02426679 -sprawly a 1 2 & + 1 0 01432202 -spray-dried a 1 1 < 1 1 03153960 -spread a 3 1 & 3 3 00540977 01844858 01431938 -spread-eagle a 1 1 & 1 0 01432318 -spread-out a 1 1 & 1 1 00541460 -sprigged a 1 1 & 1 0 01790507 -sprightly a 1 2 & + 1 1 02280821 -spring-blooming a 1 1 & 1 0 01254607 -spring-flowering a 1 1 & 1 0 01254607 -spring-loaded a 1 1 \ 1 0 02802092 -springless a 1 1 & 1 0 00845928 -springlike a 1 1 & 1 0 00845025 -springy a 2 2 & + 2 0 00843595 00036346 -sprouted a 1 2 & ; 1 0 02491421 -spruce a 1 2 & + 1 0 00971933 -spruced_up a 1 1 & 1 0 00455824 -spry a 1 1 & 1 0 00032733 -spumy a 1 2 & + 1 0 02276305 -spunky a 2 2 & + 2 0 02279900 00263994 -spur-of-the-moment a 1 1 & 1 0 01845921 -spurious a 3 2 & + 3 0 02462210 01407909 01117677 -spurned a 1 1 & 1 0 01463735 -spurting a 1 1 & 1 0 01240931 -squab a 1 1 & 1 0 02388070 -squabby a 1 1 & 1 0 02388070 -squalid a 2 2 & + 2 0 01984806 00421875 -squalling a 1 1 & 1 1 01924148 -squally a 2 2 & + 2 0 01924148 00305882 -squamulose a 1 2 & ; 1 0 02241443 -squandered a 1 1 & 1 0 01450293 -square a 6 6 ! & ^ = + ; 6 1 02043217 02318464 02558528 01709681 00766102 00607857 -square-built a 1 1 & 1 0 02039763 -square-jawed a 1 1 & 1 0 02597329 -square-rigged a 1 1 & 1 0 01093850 -square-shaped a 1 1 & 1 0 02049243 -square-shouldered a 1 1 & 1 0 02038735 -square-tailed a 1 1 & 1 0 00320456 -square-toed a 2 1 & 2 0 01880163 01032339 -squared a 1 1 & 1 1 02043729 -squared-toe a 1 1 & 1 0 01032339 -squarish a 1 1 & 1 0 02043806 -squashed a 1 1 < 1 1 03154143 -squashy a 3 1 & 3 0 02576918 02548066 01154964 -squat a 2 2 & + 2 2 02386962 01207697 -squatty a 1 2 & + 1 0 02386962 -squawky a 1 2 & + 1 0 00299144 -squeaking a 1 1 & 1 0 01214606 -squeaky a 1 2 & + 1 1 01214606 -squealing a 1 1 & 1 0 01214606 -squeamish a 1 2 & + 1 0 00984333 -squeezable a 1 2 & + 1 0 01153435 -squelched a 1 1 & 1 0 00470528 -squiffy a 1 2 & ; 1 0 00798103 -squiggly a 1 2 & + 1 0 02313676 -squinched a 1 1 & 1 0 01655651 -squint a 1 1 & 1 0 00762721 -squint-eyed a 2 2 & \ 2 0 02799797 00762721 -squinting a 1 1 & 1 0 01655651 -squinty a 2 2 & \ 2 0 02799877 00762721 -squirrel-sized a 1 1 & 1 0 02224688 -squirting a 1 1 & 1 0 01240931 -squishy a 1 1 & 1 0 01154964 -sr. a 1 1 & 1 0 02100031 -sri_lankan a 1 2 \ + 1 0 03118413 -stabbing a 2 1 & 2 0 01162901 00803432 -stabile a 2 2 & ; 2 0 02291632 01525320 -stabilised a 1 1 & 1 0 02291754 -stabilising a 1 1 & 1 0 01197737 -stabilized a 1 1 & 1 1 02291754 -stabilizing a 1 1 & 1 1 01197737 -stable a 5 4 ! & ^ + 5 2 02290998 02274089 01930417 00894551 00348018 -staccato a 1 3 ! & ; 1 1 02293856 -stacked a 2 2 & < 2 1 03154289 02138989 -stage-struck a 1 1 & 1 0 00071427 -staged a 2 2 ! & 2 0 02294440 01571869 -stagey a 1 2 & + 1 0 00796715 -stagflationary a 1 2 \ + 1 0 02802220 -staggering a 1 1 & 1 1 01283155 -stagnant a 2 2 & + 2 1 01241248 00810764 -stagy a 1 2 & + 1 0 00796715 -staid a 1 2 & + 1 0 00689336 -stainable a 1 2 \ + 1 0 02802341 -stained a 2 2 ! & 2 2 00402004 01713713 -stainless a 1 1 & 1 0 00247247 -stale a 2 5 ! & ^ = + 2 1 01068726 01689580 -stalemated a 1 1 & 1 0 01621424 -stalinist a 1 1 \ 1 0 02802476 -stalked a 1 1 ; 1 1 00159735 -stalkless a 1 1 ; 1 0 00159498 -stall-fed a 1 1 & 1 0 02300786 -stalwart a 3 2 & + 3 0 02038994 01991586 00264262 -staminate a 1 2 & ; 1 1 01477251 -stand-alone a 1 2 & ; 1 0 00523867 -stand-up a 1 1 & 1 0 01237534 -standard a 5 5 ! & ^ = ; 5 3 02295998 00487525 02294777 02297664 01960076 -standardised a 2 1 & 2 0 02296950 01978532 -standardized a 2 1 & 2 1 02296950 01978532 -standby a 1 1 & 1 0 01855086 -standing a 6 2 ! & 6 2 01237433 01755508 01241065 01240235 01239862 01970963 -standoffish a 1 2 & + 1 0 00134562 -standpat a 1 1 & 1 0 00574884 -stannic a 1 1 \ 1 0 02802576 -stannous a 1 1 \ 1 0 02802576 -staphylococcal a 1 2 \ + 1 0 02802694 -staple a 1 1 & 1 0 00901826 -star a 1 1 & 1 1 01472790 -star-shaped a 1 1 & 1 0 02048344 -starboard a 1 1 & 1 0 02032850 -starchless a 1 1 ! 1 0 02299366 -starchlike a 1 1 & 1 0 02299189 -starchy a 2 3 ! & + 2 0 02299048 01043924 -staring a 2 1 & 2 0 01654769 01520091 -stark a 5 2 & + 5 1 00556881 01792387 01535583 01520091 01242750 -stark_naked a 1 2 & ; 1 0 00458266 -starkers a 1 2 & ; 1 0 00459953 -starless a 1 1 ! 1 0 02300101 -starlike a 1 1 & 1 0 02299889 -starlit a 1 1 & 1 0 02300002 -starred a 1 1 & 1 0 01480492 -starring a 1 1 & 1 0 01472790 -starry a 1 3 ! & + 1 0 02299437 -starry-eyed a 1 1 & 1 0 01664310 -starting a 2 1 & 2 2 01354430 01009865 -startled a 1 1 & 1 1 02359051 -startling a 1 1 & 1 1 02359958 -starved a 2 1 & 2 1 02301338 01269506 -starving a 1 1 & 1 1 02301338 -statant a 1 2 & ; 1 0 01237656 -state-controlled a 1 1 & 1 0 00298507 -state-of-the-art a 1 1 & 1 0 01876780 -state-supported a 1 1 & 1 1 01862161 -stated a 1 1 & 1 0 00940870 -stateless a 1 1 & 1 0 02127693 -stately a 3 2 & + 3 1 01283508 02386418 00751838 -statesmanlike a 1 2 ! ^ 1 1 00753093 -statesmanly a 1 2 ^ + 1 0 00753093 -statewide a 1 1 & 1 0 00528629 -static a 3 2 & \ 3 1 01564315 02719009 00348018 -stationary a 2 2 & + 2 0 01565252 01060445 -statistical a 1 2 \ + 1 1 02911627 -stative a 1 2 ! ; 1 0 00041841 -statuary a 1 2 \ + 1 0 02896383 -statuesque a 2 1 & 2 0 02386418 02139793 -statute a 1 1 & 1 0 02286790 -statutory a 2 2 & \ 2 1 02802848 01401532 -staunch a 1 2 & + 1 1 00583581 -stay-at-home a 1 1 & 1 0 00637645 -steadfast a 2 2 & + 2 0 01990653 00583581 -steadied a 1 1 & 1 1 02302705 -steady a 6 4 ! & ^ + 6 1 02301560 02291336 02095542 01990653 01067003 00919445 -steady-going a 1 1 & 1 0 02301969 -steadying a 1 1 & 1 0 01197899 -stealthy a 1 2 & + 1 1 02088974 -steam-powered a 1 1 & 1 0 01829254 -steamed a 2 1 & 2 1 00618944 01806106 -steaming a 1 1 & 1 1 02550517 -steamy a 3 2 & + 3 0 02550517 02549691 02131668 -stearic a 1 2 \ + 1 0 02853905 -steel-plated a 1 1 & 1 0 00143854 -steely a 2 2 & + 2 0 01155968 01152521 -steep a 3 4 ! & ^ + 3 1 01144887 01534282 01206164 -steep-sided a 1 1 & 1 0 01145931 -steepish a 1 1 & 1 0 01145862 -steerable a 1 1 & 1 0 01475160 -stellar a 2 2 & \ 2 1 01472790 02802976 -stellate a 1 1 & 1 0 02373055 -stemless a 2 3 ! & ; 2 0 02306080 00322321 -stemmatic a 1 1 \ 1 0 02803299 -stemmed a 3 3 ! & ; 3 1 02305906 00321094 02306192 -stenographic a 1 2 \ + 1 0 02803389 -stenographical a 1 2 \ + 1 0 02803389 -stenosed a 1 2 & ; 1 0 01449007 -stenotic a 1 3 & + ; 1 0 01449007 -stentorian a 1 2 & + 1 1 01456977 -step-by-step a 1 1 & 1 1 01143006 -stepwise a 1 1 & 1 1 01143006 -stereo a 1 2 & ; 1 1 00240655 -stereophonic a 1 3 & + ; 1 1 00240655 -stereoscopic a 2 2 \ + 2 0 03120323 03120176 -stereotyped a 1 1 & 1 1 00607977 -stereotypic a 1 2 & + 1 0 00607977 -stereotypical a 1 2 & + 1 0 00607977 -sterile a 3 5 ! & ^ = + 3 0 01002377 02115759 00644560 -sterilised a 1 1 & 1 0 01002827 -sterilized a 1 1 & 1 0 01002827 -sterling a 1 1 & 1 1 02343517 -stern a 4 2 & + 4 3 01300187 01785341 00711308 01792387 -sternal a 1 2 \ + 1 1 03007245 -sternutative a 1 1 & 1 0 00325069 -sternutatory a 2 2 & \ 2 0 03007929 00325069 -steroidal a 1 3 ! \ + 1 0 02803579 -stertorous a 1 2 & + 1 0 01921752 -stewed a 1 1 & 1 0 00616822 -stick-in-the-mud a 1 1 & 1 0 00974697 -stick-on a 1 1 & 1 0 00054667 -sticking a 1 1 & 1 1 01353982 -sticking_out a 1 1 & 1 0 01353982 -sticky a 5 2 & + 5 2 00053691 02550704 02549691 00746047 00054804 -stiff a 7 5 & ^ = + ; 7 3 01525659 02323726 01043924 01824244 01990653 01023706 00798103 -stiff-backed a 1 1 & 1 1 00200854 -stiff-branched a 1 1 & 1 0 00614436 -stiff-haired a 1 1 & 1 0 00216003 -stiff-necked a 1 1 & 1 0 02328445 -stiff-tailed a 1 1 & 1 0 00320536 -stifled a 1 1 & 1 0 01316808 -stifling a 1 1 & 1 0 01250121 -stigmatic a 3 2 \ + 3 0 03120454 02621609 00108595 -still a 6 3 ! & + 6 4 01564315 01919428 00302951 01565751 02277485 01241600 -stillborn a 2 1 & 2 0 01082714 00098307 -stilly a 1 2 & ; 1 0 01919676 -stilted a 1 1 & 1 1 00073465 -stimulant a 1 2 & + 1 0 02310371 -stimulated a 1 1 & 1 0 00920494 -stimulating a 3 3 ! & ^ 3 1 02306288 02310371 01357342 -stimulative a 1 4 ! & ^ + 1 0 02309341 -stinging a 1 1 & 1 0 01374004 -stingless a 1 1 \ 1 0 03120610 -stingy a 2 5 ! & ^ = + 2 0 01112573 00106456 -stinking a 2 2 & ; 2 1 01127782 01053634 -stinky a 2 3 & + ; 2 0 01053144 01127782 -stinting a 1 2 & ; 1 0 02421364 -stipendiary a 3 3 & \ + 3 0 03120681 01708898 01708663 -stippled a 1 1 & 1 0 01788445 -stipulatory a 1 2 & + 1 0 00603194 -stirred a 3 2 & ^ 3 0 01559903 00920494 00088545 -stirred_up a 1 1 & 1 0 00920494 -stirring a 2 1 & 2 0 02307026 01561429 -stirrup-shaped a 1 1 & 1 0 02150397 -stitched a 1 1 & 1 0 02254172 -stochastic a 1 2 & ; 1 0 01925000 -stock a 3 1 & 3 1 01688757 02297089 01960076 -stock-still a 1 1 & 1 0 01564881 -stocked a 1 1 & 1 0 01097690 -stocked_with a 1 1 & 1 0 01097690 -stockinged a 1 1 & 1 0 02156822 -stocky a 1 1 & 1 0 02387413 -stodgy a 3 2 & + 3 0 01183436 00974697 00606347 -stoic a 2 3 & \ + 2 1 00858558 03020354 -stoical a 1 2 & + 1 1 00858558 -stoichiometric a 1 2 \ + 1 0 02803876 -stolid a 1 2 & + 1 1 00857560 -stoloniferous a 1 1 \ 1 0 02645417 -stomachal a 1 2 \ + 1 0 02733187 -stomachic a 1 2 \ + 1 0 02733187 -stomatal a 2 2 \ + 2 0 02645677 02645494 -stomatous a 3 5 ! & \ + ; 3 0 02645677 02645494 02310533 -stone a 1 1 & 1 0 00384195 -stone-blind a 1 1 & 1 0 02160622 -stone-broke a 1 1 & 1 0 02023287 -stone-cold a 1 1 & 1 0 01254165 -stone-dead a 1 1 & 1 1 00098450 -stone-deaf a 1 1 & 1 0 00682521 -stone-gray a 1 1 & 1 1 00391897 -stone-grey a 1 1 & 1 0 00391897 -stone-sober a 1 1 & 1 0 00799716 -stoned a 1 2 & ; 1 0 00799401 -stoneless a 1 1 & 1 0 02256306 -stonelike a 1 1 & 1 0 01152320 -stony a 3 2 & + 3 0 02241988 01158180 01151951 -stony-broke a 1 1 & 1 0 02023287 -stonyhearted a 1 1 & 1 0 00507292 -stooped a 1 1 & 1 1 01239199 -stooping a 1 1 & 1 0 01239199 -stoppable a 1 2 ! & 1 0 02287878 -stopped a 1 1 & 1 0 01621894 -stopped-up a 2 1 & 2 0 01621894 01399469 -stopped_up a 1 1 & 1 0 01621894 -stoppered a 1 1 & 1 0 01654162 -store-bought a 1 1 & 1 0 00675228 -stored-program a 1 1 \ 1 0 02645950 -storeyed a 1 2 & ; 1 0 01218660 -storied a 2 2 & ; 2 1 01121402 01218660 -storm-beaten a 1 1 & 1 0 00681019 -storm-tossed a 1 1 & 1 0 02456530 -stormbound a 1 1 & 1 0 00559120 -stormproof a 1 1 & 1 0 01886139 -stormy a 2 4 ! & ^ + 2 2 00303727 01742912 -stout a 3 2 & + 3 3 01991586 00988077 02038994 -stout-billed a 1 1 & 1 0 00207226 -stout-stemmed a 1 1 & 1 0 00321849 -stouthearted a 1 2 & + 1 0 00264262 -stovepiped a 1 2 \ ; 1 0 02803986 -straggling a 1 1 & 1 1 02426679 -straggly a 2 2 & + 2 0 02426679 00542660 -straight a 15 6 ! & ^ = + ; 15 5 00596511 02310895 01030826 01237754 00022962 02318464 02318272 02314584 02423981 01201298 00911204 00766102 00757120 00632306 00607857 -straight-backed a 1 1 & 1 0 00200979 -straight-billed a 1 1 & 1 0 00207305 -straight-from-the-shoulder a 1 1 & 1 0 00764484 -straight-grained a 1 1 & 1 0 00910983 -straight-laced a 1 1 & 1 0 01880163 -straight-legged a 1 1 & 1 0 01429788 -straight-out a 1 1 & 1 1 01914407 -straightarrow a 1 1 & 1 0 02319034 -straightaway a 1 1 & 1 0 00978754 -straightforward a 4 2 & + 4 2 00897223 00766102 02318728 00761734 -straightlaced a 1 1 & 1 0 01880163 -strained a 4 1 & 4 2 01141468 02407041 00073761 00073358 -straining a 1 1 & 1 1 00837977 -strait a 1 2 & ; 1 0 02562705 -strait-laced a 1 1 & 1 0 01880163 -straitlaced a 1 1 & 1 1 01880163 -stranded a 1 1 & 1 1 02251576 -strange a 3 4 ! & = + 3 2 00967129 00966753 01034457 -strangled a 1 1 & 1 1 01316808 -strapless a 1 1 & 1 0 02352472 -straplike a 1 1 & 1 0 02562805 -strapping a 1 2 & ; 1 0 02038126 -strategic a 2 3 & \ + 2 2 02950711 01279735 -strategical a 1 2 \ + 1 0 02950711 -stratified a 3 3 ! & ; 3 1 01203986 00208229 01203703 -stravinskian a 1 2 \ + 1 0 03038199 -stravinskyan a 1 2 \ + 1 0 03038199 -straw a 1 2 & + 1 1 00384292 -straw-colored a 1 1 & 1 0 00400922 -straw-coloured a 1 1 & 1 0 00400922 -stray a 2 2 & + 2 1 00594267 01450443 -straying a 1 1 & 1 0 01450607 -streaked a 1 1 & 1 1 01790613 -streaky a 1 2 & + 1 0 01790613 -streaming a 2 3 & < ; 2 1 03149478 01952907 -streamlined a 2 1 & 2 1 00840737 02238128 -street_smart a 1 1 & 1 0 00439431 -streetwise a 1 1 & 1 0 00439431 -strengthened a 1 1 & 1 0 02323358 -strenuous a 2 2 & + 2 1 00875235 00837977 -strep a 1 2 \ + 1 0 03142114 -streptococcal a 1 2 \ + 1 0 03142114 -streptococcic a 1 1 \ 1 0 03142114 -stressed a 2 2 ! & 2 1 02458497 02319538 -stressful a 1 1 & 1 0 00090408 -stretch a 2 1 & 2 0 01435891 00845127 -stretchable a 1 2 & + 1 0 00845216 -stretched a 2 1 & 2 2 01023128 01432452 -stretchy a 1 2 & + 1 0 00845216 -striate a 1 1 \ 1 0 03136855 -stricken a 3 2 & ; 3 2 02542148 00071242 02545385 -strict a 5 3 & ^ + 5 2 00915556 02506267 01299888 02436995 00711308 -strident a 4 2 & + 4 0 01920367 01157179 00713853 00300359 -strikebound a 1 1 & 1 0 00037341 -striking a 2 2 & + 2 1 01284212 00580805 -stringent a 1 2 & + 1 0 00711059 -stringy a 4 1 & 4 1 00991584 02446239 02416765 00626701 -strip-mined a 1 1 & 1 0 01504430 -striped a 1 1 & 1 1 01790807 -stripped a 3 1 & 3 0 01496816 01086915 00460076 -stripped-down a 1 1 & 1 0 01496816 -stripy a 1 2 & + 1 0 01790807 -strong a 10 5 ! & ^ = ; 10 3 02321009 01513512 01826979 01824244 02526124 02275412 01961786 01158974 01068609 00842199 -strong-arm a 1 1 & 1 0 00842324 -strong-boned a 1 1 & 1 0 00296276 -strong-flavored a 1 1 & 1 0 02399176 -strong-growing a 1 1 & 1 0 01356143 -strong-minded a 2 1 & 2 0 02328559 00729894 -strong-scented a 1 1 & 1 0 01057348 -strong-smelling a 1 1 & 1 0 01057348 -strong-willed a 1 1 & 1 0 02328559 -stroppy a 1 2 & ; 1 0 02327315 -struck a 1 2 & ; 1 0 00071242 -structural a 6 3 & \ ; 6 4 02897335 02897158 01090593 00586060 02949511 02949275 -structured a 2 3 ! & ^ 2 1 01671732 01679744 -struggling a 1 1 & 1 1 02458691 -strung a 1 1 < 1 1 03154362 -strung-out a 1 1 & 1 0 00047406 -stubbled a 1 1 & 1 0 02154118 -stubbly a 1 1 & 1 0 02154118 -stubborn a 2 5 ! & ^ + ; 2 1 02326695 02452562 -stubby a 1 2 & + 1 0 01437349 -stuck a 2 3 ! & ; 2 0 00161065 01766958 -stuck-up a 1 1 & 1 1 01890382 -stuck_with a 1 1 & 1 1 00670418 -studded a 1 1 & 1 1 00059782 -studied a 1 2 ! ^ 1 0 01798828 -studious a 2 2 & + 2 1 00311354 02084101 -stuffed a 2 2 & ; 2 1 01086118 01086213 -stuffy a 3 2 & + 3 2 02509484 00606347 01622033 -stumpy a 1 1 & 1 0 02386962 -stung a 1 1 & 1 1 01806106 -stunned a 3 1 & 3 1 02357810 00572714 00436645 -stunning a 4 1 & 4 1 01282921 02360171 01686036 00220739 -stunted a 1 2 & + 1 0 02347915 -stupefied a 2 1 & 2 0 02358277 00436645 -stupefying a 3 1 & 3 1 01283155 01686269 00196312 -stupendous a 1 1 & 1 1 01384730 -stupid a 3 5 ! & ^ = + 3 2 00439588 00436645 01336587 -stuporous a 1 2 & + 1 0 00875962 -sturdy a 3 2 & + 3 1 02038994 01025913 00707795 -stygian a 2 1 & 2 0 01304250 00273652 -styleless a 1 2 ! & 1 0 00976123 -stylised a 1 1 & 1 0 01572604 -stylish a 2 3 ! & + 2 0 00975171 00971075 -stylistic a 1 2 & + 1 1 02018296 -stylized a 1 1 & 1 1 01572604 -styptic a 1 2 & + 1 0 00189833 -suasible a 1 1 & 1 0 02361848 -suave a 2 2 & + 2 2 01948231 00758800 -sub-rosa a 1 1 & 1 0 01707531 -sub-saharan a 1 1 \ 1 0 02804777 -sub_judice a 1 1 & 1 0 01401734 -subacid a 1 1 & 1 0 02369683 -subacute a 1 1 & 1 0 00044987 -subalpine a 1 1 & 1 0 01219279 -subaltern a 1 2 & + 1 0 02100968 -subaquatic a 2 2 & ; 2 0 00124685 00124493 -subaqueous a 1 2 & ; 1 0 00124685 -subarctic a 1 1 \ 1 0 02804139 -subartesian a 1 1 ! 1 0 00099097 -subatomic a 2 2 & \ 2 0 02885192 01392160 -subclavian a 1 1 \ 1 0 03142313 -subclinical a 1 1 \ 1 0 02885790 -subconscious a 1 2 & + 1 1 00573093 -subcortical a 1 1 \ 1 0 02804254 -subcutaneous a 1 1 \ 1 0 02876936 -subduable a 1 1 & 1 0 00569468 -subdued a 5 2 & + 5 2 01455540 02000406 02390194 00284400 00275290 -subdural a 1 1 \ 1 0 02804391 -subfusc a 1 1 & 1 0 00169692 -subgross a 1 1 & 1 0 02516690 -subhuman a 2 2 ! & 2 1 01261528 01021499 -subjacent a 1 2 ! & 1 0 02349477 -subject a 3 2 & + 3 0 02361540 02329864 00071559 -subjective a 2 4 ! & + ; 2 1 01615925 01273910 -subjugable a 1 1 & 1 0 00569468 -subjugated a 1 1 & 1 0 00694924 -subjunctive a 1 2 \ ; 1 0 03094107 -sublimate a 1 1 & 1 0 01907416 -sublimated a 1 1 < 1 0 03154463 -sublime a 4 3 & + ; 4 3 01121757 02056566 00705616 01588619 -sublimed a 1 1 < 1 0 03154463 -subliminal a 1 1 & 1 0 01749125 -sublingual a 1 1 \ 1 0 02804515 -subliterary a 1 1 & 1 1 01046994 -sublittoral a 1 1 \ 1 0 02888757 -sublunar a 2 2 & \ 2 0 02757446 01181661 -sublunary a 2 2 & \ 2 0 02757446 01181661 -submarine a 1 2 & + 1 0 02472137 -submerged a 2 2 & ; 2 0 02472252 00124685 -submergible a 1 1 + 1 0 02472693 -submersed a 2 2 & ; 2 0 02472252 00124685 -submersible a 1 2 ! + 1 0 02472693 -submissive a 2 4 ! & ^ + 2 1 00788821 00790691 -subnormal a 1 3 & + ; 1 0 01597702 -subocean a 1 1 & 1 0 01381615 -suboceanic a 1 1 & 1 0 01381615 -subocular a 1 0 1 0 02870315 -suborbital a 2 1 \ 2 0 02979443 02870315 -subordinate a 3 6 ! & ^ = + ; 3 1 00792991 02329355 00730470 -subordinating a 1 2 ! ; 1 0 00552618 -subordinative a 1 1 ; 1 0 00552618 -subscribed a 1 2 & ; 1 0 02161136 -subscript a 1 3 ! + ; 1 0 02349852 -subsequent a 1 4 ! & ^ + 1 1 00122626 -subservient a 3 2 & + 3 1 02330064 01196775 00790691 -subsidiary a 1 2 & + 1 0 01854129 -subsidised a 1 1 & 1 0 02352868 -subsidized a 1 1 & 1 1 02352868 -subsonic a 1 1 ! 1 0 00175719 -substandard a 1 1 & 1 0 02297409 -substantial a 5 5 ! & ^ = + 5 2 00625055 00901969 00625393 02558528 02275412 -substantiating a 1 1 & 1 0 02355521 -substantiative a 1 2 & + 1 0 02355521 -substantival a 1 3 \ + ; 1 0 03120834 -substantive a 3 3 ! & ; 3 1 00901969 00055539 01497245 -substitutable a 2 2 & + 2 0 02381613 00917768 -substitute a 3 2 & + 3 0 01855446 01853934 01572974 -subsurface a 1 2 ! & 1 1 02471782 -subterminal a 1 1 & 1 0 01015798 -subterranean a 2 1 & 2 0 02472384 01707733 -subterraneous a 2 1 & 2 0 02472384 01707733 -subtle a 3 1 & 3 1 01717901 01745846 01162406 -subtractive a 1 3 ! & + 1 0 00050083 -subtropic a 1 2 \ + 1 0 02929216 -subtropical a 1 1 \ 1 0 02929216 -suburban a 1 2 \ + 1 1 02804590 -suburbanised a 1 1 & 1 0 01108586 -suburbanized a 1 1 & 1 1 01108586 -subversive a 1 2 & + 1 0 00963283 -succeeding a 2 4 ! & ^ = 2 1 00127296 01294975 -successful a 1 5 ! & ^ = + 1 1 02331262 -successive a 1 2 & + 1 1 01667729 -succinct a 1 2 & + 1 0 00547317 -succinic a 1 1 \ 1 0 02840840 -succulent a 1 2 & + 1 0 01369078 -such a 1 1 & 1 1 01554230 -suchlike a 1 1 & 1 0 01410222 -suckled a 1 1 & 1 0 00267268 -suctorial a 1 2 \ + 1 0 02804905 -sudanese a 1 2 \ + 1 0 03121212 -sudden a 1 4 ! & ^ + 1 1 01143279 -sudorific a 1 1 \ 1 0 02712125 -sudsy a 1 1 \ 1 0 02754839 -suety a 1 2 & + 1 0 00992716 -sufferable a 1 1 & 1 0 02435206 -suffering a 2 1 & 2 2 02458871 01150205 -sufficient a 1 5 ! & ^ = + 1 1 02335828 -suffocating a 1 1 & 1 1 00268383 -suffocative a 1 2 & + 1 0 00268383 -suffrutescent a 1 1 & 1 0 02576365 -suffusive a 1 2 & + 1 0 00469468 -sufi a 1 1 \ 1 0 02805039 -sugar-coated a 1 1 & 1 0 02337912 -sugared a 1 1 & 1 0 02338197 -sugarless a 1 3 ! & ^ 1 0 02338327 -sugary a 1 4 ! & ^ + 1 0 02337667 -suggestible a 1 2 & + 1 0 02362708 -suggestive a 3 2 & + 3 1 00723542 02091300 00684334 -sui_generis a 1 1 & 1 0 02215382 -suicidal a 1 2 & + 1 0 02060912 -suitable a 2 2 & + 2 1 01020885 00852197 -suited a 2 1 & 2 2 01020885 00456739 -sulcate a 1 1 \ 1 0 03136940 -sulfur-yellow a 1 1 & 1 0 00384410 -sulfuretted a 1 1 \ 1 0 02853254 -sulfuric a 1 2 \ + 1 0 03121394 -sulfurized a 1 1 \ 1 0 02853254 -sulfurous a 3 3 & \ + 3 0 02805148 01802165 01250121 -sulky a 3 2 & + 3 1 01137994 00981703 00275764 -sullen a 2 2 & + 2 2 01137378 00462409 -sulphur-yellow a 1 1 & 1 0 00384410 -sulphuretted a 1 1 \ 1 0 02853254 -sulphuric a 1 2 \ + 1 0 03121394 -sulphurous a 3 3 & \ + 3 0 02805148 01802165 01250121 -sultry a 2 2 & + 2 2 01257145 01250121 -sumatran a 1 2 \ + 1 0 03121573 -sumerian a 1 2 \ + 1 0 02805331 -summa_cum_laude a 1 1 & 1 0 02587407 -summary a 2 2 & + 2 0 01633880 00547317 -summational a 1 2 & + 1 0 00049683 -summative a 1 1 & 1 0 00049683 -summer-blooming a 1 1 & 1 0 01255177 -summer-flowering a 1 1 & 1 0 01255177 -summery a 1 3 ! & + 1 0 01254784 -sumptuary a 1 1 & 1 0 02004838 -sumptuous a 1 2 & + 1 1 02024928 -sun-drenched a 1 1 & 1 0 01697878 -sun-dried a 1 1 & 1 1 01073592 -sun-loving a 1 1 & 1 0 01172394 -sunbaked a 2 1 & 2 1 02551946 01521905 -sunburned a 1 1 & 1 0 01178345 -sunburnt a 1 1 & 1 1 01178345 -sunday-go-to-meeting a 1 1 & 1 0 00228485 -sundried a 1 1 & 1 0 01073592 -sundry a 1 1 & 1 1 01199083 -sunk a 1 1 & 1 0 02334321 -sunken a 1 1 & 1 1 02264521 -sunken-eyed a 1 1 & 1 0 00989416 -sunless a 1 1 & 1 0 00461971 -sunlit a 1 1 & 1 0 00272771 -sunny a 1 2 & + 1 1 00363938 -sunny-side_up a 1 1 & 1 0 00619030 -sunrise a 1 1 & 1 0 01642951 -sunset a 2 1 & 2 0 01640618 01013843 -sunstruck a 1 1 & 1 1 00272771 -suntanned a 1 1 & 1 1 00244958 -super a 3 2 & ; 3 2 02341864 00528761 01390588 -superable a 1 1 & 1 0 02357006 -superabundant a 1 2 & + 1 0 00016247 -superannuated a 2 1 & 2 0 01646435 00669138 -superb a 2 1 & 2 1 02342608 01125154 -supercharged a 2 1 & 2 0 01829369 00854989 -supercilious a 2 2 & + 2 1 01891109 00907400 -supercritical a 1 1 & 1 0 00652351 -supererogatory a 1 1 & 1 0 01581305 -superfatted a 1 1 & 1 0 00992826 -superficial a 3 5 ! & ^ \ + 3 1 01873406 02805490 02165432 -superfine a 3 1 & 3 0 02233799 01948958 00229227 -superfluous a 2 2 & + 2 0 02503305 01581305 -superhuman a 1 2 ! & 1 0 01260873 -superimposed a 2 1 & 2 0 02349149 00208749 -superincumbent a 1 1 & 1 0 02349274 -superior a 7 6 ! & ^ = + ; 7 3 02341266 02338615 00792769 02349685 02348482 02100566 00072436 -superjacent a 1 2 ! & 1 0 02348847 -superlative a 1 2 & + 1 1 02343517 -superlunar a 2 2 & \ 2 0 02757599 01180549 -superlunary a 2 2 & \ 2 0 02757599 01180549 -supernal a 2 3 ! & ^ 2 0 01304374 01179345 -supernatant a 1 3 & + ; 1 1 02351490 -supernatural a 1 4 ! & ^ + 1 1 01574446 -supernaturalist a 1 1 \ 1 0 02912054 -supernaturalistic a 1 2 \ + 1 0 02912054 -supernormal a 2 2 & ; 2 0 01600174 01597928 -supernumerary a 1 2 & + 1 0 01581305 -superordinate a 1 1 & 1 0 02340003 -superpatriotic a 1 1 & 1 0 01740358 -superposable a 1 1 & 1 0 00561896 -supersaturated a 1 1 & 1 0 00758150 -superscript a 1 2 ! ; 1 0 02349685 -supersensitised a 1 1 & 1 0 02360944 -supersensitive a 1 1 & 1 0 02360944 -supersensitized a 1 1 & 1 0 02360944 -supersonic a 2 2 ! & 2 1 00175887 00175300 -superstitious a 1 2 & + 1 1 01927061 -supervised a 1 1 ! 1 0 02350205 -supervisory a 1 2 \ + 1 0 02904372 -supine a 2 1 & 2 1 01239781 00040058 -supperless a 1 1 & 1 0 01269907 -supple a 3 2 & + 3 0 01140290 01024228 01022785 -supplemental a 2 2 & + 2 1 01854129 00049879 -supplementary a 2 2 & + 2 1 01854129 00049879 -suppliant a 1 1 & 1 0 00714889 -supplicant a 1 2 & + 1 0 00714889 -supplicatory a 1 2 & + 1 0 00714889 -supportable a 1 1 & 1 0 02435206 -supported a 2 2 ! & 2 0 02352650 02350729 -supporting a 2 1 & 2 1 02356244 00217428 -supportive a 1 4 ! & ^ + 1 1 02354537 -supposable a 1 1 & 1 0 02418412 -supposed a 4 1 & 4 2 01617255 01414137 01916555 00861216 -suppositional a 1 2 & + 1 0 00861216 -suppositious a 1 2 & + 1 0 00861216 -supposititious a 1 2 & + 1 0 00861216 -suppressed a 3 2 ! & 3 0 00470111 02166159 01316808 -suppressive a 1 2 & + 1 0 02005065 -suppurative a 1 3 ! \ + 1 0 02805735 -supranational a 1 1 & 1 0 01569366 -supranormal a 1 1 & 1 0 01600174 -supraocular a 1 1 \ 1 0 02805966 -supraorbital a 1 1 \ 1 0 02805966 -suprasegmental a 1 2 & ; 1 0 02478052 -supreme a 4 1 & 4 4 01579467 00792641 02344512 01495912 -surd a 1 1 & 1 0 02286294 -sure a 9 5 ! & ^ = + 9 5 00336831 00309740 00340239 02094633 00724397 02465978 02461586 02302822 00335895 -sure-enough a 1 1 & 1 1 01116118 -sure-fire a 1 1 & 1 0 02332845 -sure-footed a 2 1 & 2 0 02302941 00306909 -sure-handed a 1 1 & 1 0 02227772 -sure_as_shooting a 1 1 & 1 0 00336041 -surefooted a 2 1 & 2 0 02302941 00306909 -surface a 1 2 ! & 1 1 02471091 -surface-active a 1 1 & 1 0 00042982 -surface-assimilative a 1 1 & 1 0 00008206 -surface-to-air a 1 1 ! 1 0 00091121 -surficial a 1 2 \ + 1 0 02806098 -surgical a 3 4 ! & \ + 3 0 02888968 01169194 00022852 -surging a 1 1 & 1 1 00304455 -surly a 1 2 & + 1 1 01139067 -surmisable a 1 1 & 1 0 02418412 -surmountable a 2 3 ! & ^ 2 0 02356820 01725031 -surmounted a 1 1 < 1 1 03149619 -surpassing a 2 1 & 2 0 02344793 01676026 -surpliced a 1 1 & 1 0 00456855 -surplus a 1 1 & 1 1 01581305 -surprised a 1 2 ! & 1 1 02357479 -surprising a 1 4 ! & ^ + 1 1 02359464 -surreal a 2 1 & 2 0 01943067 01939226 -surrealistic a 1 2 & + 1 0 01943067 -surreptitious a 2 1 & 2 0 02088974 01706465 -surrogate a 1 1 & 1 0 01406418 -surrounded a 1 1 & 1 1 01658666 -surrounding a 1 1 & 1 1 00449332 -surviving a 1 1 & 1 1 00928874 -susceptible a 2 5 ! & ^ = + 2 1 02360448 02365142 -suspect a 1 2 & ; 1 1 01917594 -suspected a 1 1 ! 1 0 02370212 -suspended a 1 1 & 1 1 02351692 -suspenseful a 1 1 & 1 0 02405805 -suspensive a 2 1 & 2 0 02405805 00686789 -suspicious a 2 3 & + ; 2 2 02464277 01917594 -sustainable a 1 2 \ + 1 0 02806261 -sustained a 2 1 & 2 0 00596639 00596358 -sustentacular a 1 2 \ + 1 0 02806435 -susurrant a 1 2 & + 1 0 01456038 -susurrous a 1 1 & 1 0 01456221 -svelte a 3 1 & 3 0 02271177 01140290 00990855 -swagger a 1 2 & ; 1 0 00972354 -swaggering a 2 1 & 2 1 01891109 00066703 -swallow-tailed a 1 1 & 1 0 00320614 -swampy a 1 2 & + 1 0 02548066 -swank a 1 1 & 1 0 00973434 -swanky a 1 2 & + 1 0 00973434 -swart a 1 2 & ; 1 1 00245458 -swarthy a 1 3 & + ; 1 1 00245458 -swashbuckling a 1 1 & 1 0 00066703 -swayback a 1 1 & 1 0 01020117 -swaybacked a 1 1 & 1 1 01020117 -swazi a 1 1 \ 1 0 03121723 -swedish a 1 1 \ 1 1 02959720 -sweeping a 2 1 & 2 1 02561560 00774182 -sweet a 10 4 ! & ^ + 10 7 02368336 01459949 01501821 01808671 01808413 01052611 02367604 01073707 02370083 02338197 -sweet-breathed a 1 1 & 1 0 00267774 -sweet-faced a 1 1 & 1 1 00236200 -sweet-flavored a 1 1 & 1 0 02338197 -sweet-scented a 1 1 & 1 0 01052611 -sweet-smelling a 1 1 & 1 1 01052611 -sweetened a 1 1 & 1 0 02338197 -sweetheart a 1 1 & 1 0 01864279 -sweetish a 1 1 & 1 0 02368718 -swell a 1 2 & ; 1 1 01123879 -swelled a 1 1 & 1 1 01890187 -sweltering a 1 1 & 1 1 01250393 -sweltry a 1 1 & 1 0 01250393 -swept a 1 2 ! & 1 0 02370752 -sweptback a 2 2 & ; 2 0 02370894 00201722 -sweptwing a 1 2 & ; 1 0 02371077 -swift a 1 2 & + 1 1 00978199 -swift-footed a 1 1 & 1 0 01031602 -swimming a 2 2 & ; 2 0 02473371 01233225 -swingeing a 1 2 & ; 1 0 01129371 -swinging a 1 1 & 1 0 02020011 -swingy a 1 2 & + 1 1 02020011 -swinish a 2 1 & 2 0 01949859 00011327 -swish a 1 2 & ; 1 0 00975778 -swishy a 1 2 & + 1 0 01921868 -swiss a 1 1 \ 1 1 02960975 -swollen a 1 1 & 1 0 01891773 -swollen-headed a 1 1 & 1 0 01891773 -swooning a 1 1 & 1 0 02544525 -sword-shaped a 1 1 & 1 0 02168248 -swordlike a 1 1 & 1 0 02168248 -sworn a 2 2 ! & 2 1 00518549 02371343 -sybaritic a 1 2 & + 1 0 01298239 -sycophantic a 2 2 & + 2 0 02181231 00790394 -syllabic a 5 4 ! & \ + 5 0 02806721 02806565 02290265 02288668 02288350 -syllabled a 1 1 & 1 0 02289659 -syllogistic a 1 2 \ + 1 0 02910644 -sylphlike a 1 1 & 1 0 01140290 -sylvan a 1 1 & 1 0 02574481 -symbiotic a 1 3 & + ; 1 0 00727268 -symbolic a 3 3 & \ + 3 3 02806907 01982186 02807163 -symbolical a 2 3 & \ + 2 0 02806907 01982186 -symmetric a 1 3 & ^ + 1 1 02371718 -symmetrical a 2 4 ! & ^ + 2 2 02371718 00894029 -sympathetic a 6 6 ! & ^ \ + ; 6 3 03008013 02374914 01372948 02376277 02072923 01163589 -sympathomimetic a 1 0 1 0 02604543 -sympatric a 1 3 ! + ; 1 0 02376809 -sympetalous a 1 1 & 1 0 01775980 -symphonic a 2 3 & \ + 2 1 03002040 01163941 -symphonious a 1 1 & 1 0 01163941 -symptomatic a 2 3 & \ + 2 1 00357254 02807249 -symptomless a 1 1 & 1 0 02540899 -synaesthetic a 1 2 \ + 1 0 02808126 -synaptic a 1 2 \ + 1 0 02933954 -syncarpous a 1 3 ! + ; 1 0 00113663 -syncategorematic a 1 4 ! & + ; 1 0 02593269 -synchronal a 1 2 & ^ 1 0 02377651 -synchronic a 3 5 ! & ^ + ; 3 0 02377651 02377186 02379323 -synchronised a 1 1 & 1 0 02379455 -synchronized a 1 1 & 1 0 02379455 -synchronous a 2 4 ! & ^ + 2 1 02377651 02380565 -synclinal a 1 2 ! ; 1 0 00109133 -syncopated a 1 1 & 1 0 02020810 -syncretic a 2 2 \ + 2 0 02807775 02807478 -syncretical a 2 2 \ + 2 0 02807775 02807478 -syncretistic a 2 2 \ + 2 0 02807775 02807478 -syncretistical a 2 2 \ + 2 0 02807775 02807478 -syndetic a 1 2 ! ; 1 0 02381089 -synecdochic a 1 2 & + 1 0 01420488 -synecdochical a 1 2 & + 1 0 01420488 -synergetic a 1 2 & + 1 0 00620341 -synergistic a 3 4 ! & \ + 3 1 00623356 02946888 00620341 -synesthetic a 1 2 \ + 1 0 02808126 -synoecious a 1 1 & 1 0 01543361 -synoicous a 1 1 & 1 0 01543361 -synonymous a 1 3 ! & + 1 1 02381302 -synoptic a 2 3 & \ + 2 0 02808380 02064537 -synoptical a 1 1 & 1 0 02064537 -synovial a 1 2 \ + 1 0 02808548 -synsemantic a 1 2 & ; 1 0 02593578 -syntactic a 1 2 \ + 1 1 02880557 -syntactical a 1 2 \ + 1 0 02880557 -syntagmatic a 1 3 ! \ + 1 0 02808653 -synthetic a 6 5 ! & ^ + ; 6 1 01573568 00112628 00111856 00111129 01572458 01118409 -synthetical a 2 3 ^ + ; 2 0 00112628 00111129 -syphilitic a 1 2 \ + 1 0 03121855 -syrian a 1 2 \ + 1 1 03016519 -syrupy a 3 1 & 3 1 02368566 02417028 02338037 -systematic a 2 4 ! ^ + ; 2 1 02382934 03018498 -systemic a 1 1 & 1 0 01426273 -systolic a 1 1 \ 1 0 03121996 -t-shaped a 1 1 & 1 0 02150569 -tabby a 1 1 & 1 0 01787548 -table_d'hote a 1 1 ! 1 0 02453035 -taboo a 2 1 & 2 1 01761375 02056761 -tabu a 2 1 & 2 0 02056761 01761375 -tabular a 2 3 & \ + 2 0 03122633 00659617 -tacit a 1 1 & 1 0 00942163 -taciturn a 1 4 ! & ^ + 1 0 02383380 -tacky a 2 2 & + 2 0 02550891 02393791 -tactful a 2 4 ! & ^ + 2 0 02384383 00759169 -tactical a 1 2 \ + 1 0 02951000 -tactile a 2 3 & \ + 2 1 02869097 02391683 -tactless a 2 4 ! & ^ + 2 0 02384843 00063953 -tactual a 2 2 & \ 2 1 02869097 02391683 -tadpole-shaped a 1 1 & 1 0 02150658 -tagged a 1 0 1 1 01379705 -tahitian a 1 2 \ + 1 0 03122221 -tai a 3 1 \ 3 0 03117012 03116809 03116651 -tail-shaped a 1 1 & 1 0 00320756 -tailed a 1 1 & 1 0 00320064 -tailless a 1 1 & 1 0 00320985 -taillike a 1 1 & 1 0 00319965 -tailor-made a 1 1 & 1 0 00672382 -tailored a 2 1 & 2 1 01793985 00672382 -tainted a 1 1 & 1 0 01070716 -taiwanese a 1 1 \ 1 0 03122400 -tajikistani a 1 1 \ 1 0 02963404 -take-away a 1 2 & ; 1 0 01526262 -take-home a 1 1 & 1 0 01582698 -taken a 2 1 & 2 1 01378671 00071739 -taken_for_granted a 1 1 & 1 1 01618895 -taken_up a 1 1 & 1 1 00544478 -taken_with a 1 1 & 1 0 01465668 -takeout a 1 2 & ; 1 0 01526262 -taking a 1 1 & 1 0 00167829 -talebearing a 1 1 & 1 0 00496259 -talented a 1 1 ! 1 0 01119192 -talentless a 1 1 + 1 0 01119305 -taliped a 1 1 & 1 0 02141209 -talismanic a 1 2 & + 1 1 01577327 -talkative a 3 2 & + 3 1 02384077 00773299 00496938 -talky a 1 2 & + 1 1 02384077 -tall a 4 6 ! & ^ = + ; 4 1 02385102 02017721 00748563 00646117 -tall-growing a 1 2 & ; 1 1 02386002 -tall-stalked a 1 1 & 1 0 02386305 -tallish a 1 1 & 1 0 02386545 -taloned a 1 1 & 1 0 00145883 -tamable a 1 2 & + 1 0 02451828 -tame a 4 5 ! & ^ = + 4 1 00923232 02389946 02388145 02328916 -tameable a 1 2 & + 1 0 02451828 -tamed a 2 3 & ^ = 2 0 02388145 02389099 -tamil a 1 1 \ 1 0 03122750 -tan a 1 1 & 1 0 00384533 -tangential a 2 3 & \ + 2 1 01976360 02808830 -tangerine a 1 1 & 1 0 00384694 -tangible a 4 5 ! & ^ + ; 4 2 02391455 00013662 02392134 01717117 -tangled a 2 2 ! & 2 2 00255057 02176841 -tangy a 1 2 & + 1 0 02369460 -tanned a 2 2 ! & 2 1 00244958 01659355 -tannic a 1 2 \ + 1 0 03122923 -tannish a 1 1 & 1 0 00384615 -tansy-scented a 1 1 & 1 0 01057447 -tansy-smelling a 1 1 & 1 0 01057447 -tantalising a 2 1 & 2 0 01358846 01358695 -tantalizing a 2 1 & 2 2 01358846 01358695 -tantamount a 1 1 & 1 0 00890351 -tantric a 1 2 \ + 1 0 02926025 -tantrik a 1 1 \ 1 0 02926025 -tanzanian a 1 2 \ + 1 0 03123013 -taoist a 2 1 \ 2 0 02925655 02925492 -tape-recorded a 1 1 & 1 0 01423592 -taped a 2 1 & 2 1 01060570 01423592 -tapered a 1 1 & 1 0 02562909 -tapering a 2 1 & 2 0 02562909 02537513 -tapering_off a 1 1 & 1 0 02537513 -tapestried a 1 1 & 1 0 00059965 -tapped a 1 2 ! & 1 0 01659577 -tardive a 1 1 & 1 0 00819709 -tardy a 1 2 & + 1 0 01901186 -target-hunting a 1 1 & 1 1 01429260 -tarred-and-feathered a 1 1 & 1 1 01902003 -tarry a 1 1 & 1 0 00054364 -tarsal a 1 2 \ + 1 0 03123143 -tart a 2 2 & + 2 1 02369460 01804728 -tartarean a 1 2 & + 1 0 01304081 -tartaric a 1 2 \ + 1 0 03123296 -tasmanian a 1 2 \ + 1 0 02809010 -tassel-shaped a 1 1 & 1 0 02150489 -tasseled a 1 1 & 1 0 00060053 -tasselled a 1 1 & 1 0 00060053 -tasteful a 2 5 ! & ^ = + 2 1 02392878 00850648 -tasteless a 2 5 ! & ^ = + 2 0 02399399 02393401 -tasty a 1 5 ! & ^ = + 1 0 02395115 -tatterdemalion a 2 2 & + 2 0 02583619 00679717 -tattered a 2 1 & 2 1 02583619 00736671 -tattling a 1 1 & 1 0 00496259 -tatty a 2 2 & + 2 0 02583043 02393791 -taunting a 1 1 & 1 1 01995596 -taupe a 1 2 & + 1 0 00375090 -taurine a 1 1 \ 1 0 02809128 -taut a 2 2 & + 2 2 02403505 02405959 -tautologic a 1 2 & + 1 0 00549826 -tautological a 1 2 & + 1 0 00549826 -tawdry a 2 2 & + 2 1 02393791 02346351 -tawny a 1 2 & + 1 1 00384782 -tawny-brown a 1 1 & 1 0 00384782 -tawny-colored a 1 1 & 1 0 00401028 -tawny-coloured a 1 1 & 1 0 00401028 -tax-exempt a 1 1 & 1 1 02401288 -tax-free a 1 1 & 1 0 02401288 -taxable a 1 4 ! & ^ + 1 1 02400218 -taxing a 1 1 & 1 1 01189109 -taxonomic a 1 3 \ + ; 1 0 03018498 -taxonomical a 1 3 \ + ; 1 0 03018498 -taxpaying a 1 1 & 1 1 02366474 -tea-scented a 1 1 & 1 0 01057541 -teachable a 1 2 & + 1 0 02451634 -teal a 1 2 & + 1 0 00371163 -tearaway a 1 2 & ; 1 0 00326608 -tearful a 2 3 ! & + 2 0 02473141 01365239 -tearing a 1 1 & 1 0 01511854 -tearless a 1 2 ! & 1 0 02473977 -teary a 1 1 & 1 0 02473655 -teary-eyed a 1 1 & 1 0 02473655 -teased a 1 1 & 1 0 00920603 -teasing a 3 1 & 3 0 02123118 02098002 00089550 -technical a 5 4 ! & \ + 5 3 02809220 01108716 02809692 02227946 00484070 -technical-grade a 1 2 & ; 1 0 01908341 -technical_grade a 1 2 & ; 1 0 01908341 -technological a 2 3 & \ + 2 2 02084979 02809692 -technophilic a 1 1 \ 1 0 02809492 -technophobic a 1 1 \ 1 0 02809592 -techy a 1 1 & 1 0 01136541 -tectonic a 2 2 \ ; 2 0 02939099 02898121 -tedious a 2 2 & + 2 1 01345307 00549236 -teeming a 1 2 & + 1 0 00016350 -teen a 1 1 & 1 1 01647983 -teenage a 1 1 & 1 1 01647983 -teenaged a 1 1 & 1 0 01647983 -teensy a 1 2 & ; 1 1 01392633 -teensy-weensy a 1 2 & ; 1 0 01392633 -teentsy a 1 2 & ; 1 0 01392633 -teeny a 1 2 & ; 1 0 01392633 -teeny-weeny a 1 2 & ; 1 0 01392633 -teetotal a 1 1 & 1 0 00799953 -tegular a 1 1 \ 1 0 02854154 -telegnostic a 1 2 & + 1 0 02109162 -telegraphic a 2 3 & \ + 2 1 02910074 00548579 -telemetered a 1 1 \ 1 0 02809958 -teleological a 1 2 \ + 1 0 02991586 -telepathic a 1 2 & + 1 0 02109326 -telephonic a 1 2 \ + 1 0 03123434 -telescoped a 1 1 & 1 0 01437472 -telescopic a 3 2 & + 3 0 02517002 02157936 00466077 -telling a 3 2 & + 3 1 01305344 01770392 00835292 -telltale a 1 2 & + 1 1 01305344 -tellurian a 1 1 \ 1 0 02810102 -telluric a 2 2 \ + 2 0 02810417 02810102 -telocentric a 1 1 \ 1 0 03140707 -temerarious a 1 2 & + 1 0 00250483 -temperamental a 3 3 & \ + 3 0 02810552 00856325 00725227 -temperate a 3 4 ! & ^ + 3 0 02402559 02401590 01509367 -tempered a 2 2 ! & 2 0 01521542 01521139 -tempering a 1 1 & 1 0 01341731 -tempest-swept a 1 1 & 1 0 02456530 -tempest-tossed a 1 1 & 1 0 02456530 -tempest-tost a 1 1 & 1 0 02456530 -tempestuous a 2 2 & + 2 0 01742912 00304144 -temporal a 5 3 & ^ \ 5 1 01757914 02810882 02810739 02577061 01181904 -temporary a 2 4 & ^ = + 2 1 01755627 01089775 -temptable a 1 2 & + 1 0 02362904 -tempting a 2 2 & + 2 0 02097480 01358695 -ten a 1 1 & 1 1 02187296 -ten-fold a 1 1 & 1 0 02220207 -ten-membered a 1 1 & 1 0 01503760 -ten-sided a 1 1 & 1 0 00238862 -ten_thousand a 1 1 & 1 0 02198891 -tenable a 1 2 & + 1 1 01944492 -tenacious a 3 3 & ^ + 3 0 02005756 02327569 00053384 -tenanted a 1 1 & 1 0 01311814 -tended_to a 1 1 & 1 0 00308488 -tendencious a 1 2 & + 1 0 00730985 -tendentious a 1 2 & + 1 0 00730985 -tender a 8 5 ! & ^ + ; 8 5 02448889 01712753 01649561 01464700 02446651 02448166 02292421 00707206 -tenderhearted a 2 2 & + 2 0 01466207 00506852 -tenderised a 1 1 & 1 0 02447215 -tenderized a 1 1 & 1 0 02447215 -tending a 1 1 & 1 0 01292411 -tendinous a 1 2 \ + 1 0 02811265 -tendril-climbing a 1 1 \ 1 0 02811428 -tenebrific a 1 1 & 1 0 00276355 -tenebrious a 1 1 & 1 0 00276355 -tenebrous a 1 1 & 1 1 00276355 -tenfold a 1 1 & 1 0 02220207 -tenor a 2 2 & ; 2 0 01215263 01215136 -tense a 3 5 ! & ^ + ; 3 0 02405326 02404868 02403206 -tensed a 1 1 & 1 0 01008656 -tensile a 2 2 & \ 2 0 02811547 02144436 -tensional a 1 2 \ + 1 1 02811660 -tensionless a 1 1 & 1 1 02404793 -tentacled a 1 1 \ 1 0 02811908 -tentacular a 1 2 \ + 1 0 02811774 -tentative a 2 1 & 2 1 00556318 02130672 -tenth a 1 1 & 1 1 02203373 -tenuous a 3 2 & + 3 0 02417611 02415172 02164913 -tenured a 1 1 & 1 0 01527245 -tepid a 2 2 & + 2 1 02529581 00887472 -teratogenic a 1 2 \ + 1 0 02811980 -terefah a 1 2 & ; 1 0 00428121 -terete a 1 2 & ; 1 0 02047603 -terminable a 1 1 & 1 0 01758038 -terminal a 5 3 ! & \ 5 0 02812306 02812147 01016035 01010271 00994073 -terminated a 2 2 & ; 2 0 01003277 00938305 -terminative a 1 2 & + 1 0 01010569 -terminological a 1 2 \ + 1 0 03123561 -ternary a 1 1 & 1 0 02218547 -ternate a 1 1 & 1 0 02174305 -terpsichorean a 1 2 \ + 1 0 03123695 -terrene a 2 2 & \ 2 0 02810102 01181446 -terrestrial a 5 3 ! & \ 5 2 02810102 02780093 00124918 02578035 01181661 -terrible a 4 3 & + ; 4 3 00193799 01126291 01513050 01677200 -terrific a 3 1 & 3 2 01513619 01676517 00196449 -terrified a 1 1 & 1 1 00080357 -terrifying a 1 1 & 1 1 00196449 -territorial a 3 5 ! & \ + ; 3 1 02812482 02409500 02408611 -terror-stricken a 1 1 & 1 1 00080981 -terror-struck a 1 1 & 1 1 00080981 -terse a 1 2 & + 1 1 00547641 -tertian a 2 1 \ 2 0 03123964 03123830 -tertiary a 1 1 & 1 0 02202307 -tessellated a 2 1 & 2 0 01790938 00059326 -testaceous a 1 2 \ + 1 0 02812697 -testamentary a 1 2 \ + 1 0 02812838 -testate a 1 3 ! + ; 1 0 02444758 -tested a 2 1 & 2 2 01894196 00724596 -testicular a 1 2 \ + 1 0 02933304 -testimonial a 2 2 \ + 2 0 02813162 02812989 -testy a 1 2 & + 1 0 01136541 -tetanic a 2 1 \ 2 0 03124201 03124111 -tetchy a 1 2 & + 1 0 01136541 -tete-a-tete a 1 2 & + 1 0 01860890 -tethered a 1 1 & 1 0 00253757 -tetragonal a 1 2 \ + 1 0 02834480 -tetramerous a 1 2 & ; 1 0 00239185 -tetrametric a 1 2 \ + 1 0 02834603 -tetravalent a 1 2 \ ; 1 0 03124290 -teutonic a 1 1 \ 1 1 02958126 -texan a 1 2 \ + 1 0 03124392 -textbook a 1 1 & 1 0 02295511 -textile a 1 1 \ 1 0 03124541 -textual a 1 2 \ + 1 0 02925879 -textured a 1 1 & 1 1 02243086 -thai a 3 2 \ + 3 0 03117012 03116809 03116651 -thalamocortical a 1 1 \ 1 0 02982956 -thalassic a 1 1 \ 1 0 02889978 -thalloid a 1 1 \ 1 0 03142399 -thallophytic a 1 2 \ + 1 0 03142512 -thankful a 1 2 & + 1 0 01146493 -thankless a 2 1 & 2 0 01147044 02016145 -thawed a 2 1 & 2 0 01506661 01080197 -theatrical a 2 4 ! & \ + 2 2 02813315 00796047 -theban a 2 1 \ 2 0 02813557 02813437 -theist a 1 2 \ + 1 0 02931345 -theistic a 1 2 \ + 1 1 02931345 -theistical a 1 2 \ + 1 0 02931345 -thematic a 2 3 ! \ + 2 1 02813680 02813978 -then a 1 1 & 1 1 01731108 -thenal a 1 2 \ + 1 0 02814104 -thenar a 1 2 \ + 1 0 02814104 -theocratic a 1 2 \ + 1 0 02990819 -theological a 1 2 \ + 1 1 02907000 -theoretic a 1 2 & + 1 0 00860611 -theoretical a 2 2 ! & 2 1 00860611 00862327 -theory-based a 1 1 & 1 0 00862190 -theosophical a 1 2 \ + 1 0 03124657 -therapeutic a 2 3 & \ + 2 2 01165943 02914213 -therapeutical a 1 2 \ + 1 0 02914213 -thermal a 3 4 ! & \ + 3 1 02814453 02814352 01250565 -thermic a 1 1 \ 1 0 02814453 -thermionic a 1 2 \ + 1 0 03124786 -thermodynamic a 1 2 \ + 1 1 02908041 -thermodynamical a 1 2 \ + 1 0 02908041 -thermoelectric a 1 2 \ + 1 0 02814878 -thermoelectrical a 1 1 \ 1 0 02814878 -thermogravimetric a 1 2 \ + 1 1 03003031 -thermohydrometric a 1 2 \ + 1 0 03003031 -thermolabile a 1 2 & ; 1 0 01929312 -thermometric a 1 2 \ + 1 1 03124931 -thermonuclear a 1 1 & 1 0 00610734 -thermoplastic a 1 2 ! + 1 0 02409849 -thermoset a 1 0 1 0 02410156 -thermosetting a 1 1 ! 1 0 02410156 -thermostatic a 1 2 \ + 1 0 03125096 -thespian a 1 2 \ + 1 0 03125227 -thick a 10 6 ! & ^ = + ; 10 4 02410393 00539009 02415390 01337314 02387413 01771839 01513776 00452114 00440292 00015480 -thick-billed a 1 1 & 1 0 00207389 -thick-bodied a 1 1 & 1 0 00629068 -thick-branched a 1 1 & 1 0 00614518 -thick-haired a 1 1 & 1 0 00216079 -thick-lipped a 1 1 & 1 0 01704523 -thick-skinned a 1 1 & 1 0 02108098 -thick-skulled a 1 1 & 1 1 00440292 -thick-stemmed a 1 1 & 1 0 00321928 -thickened a 3 1 & 3 1 02411798 02447569 02417170 -thickening a 2 1 & 2 1 01340691 02179167 -thicket-forming a 1 1 & 1 0 02574614 -thickheaded a 1 1 & 1 0 00440292 -thickly_settled a 1 1 & 1 1 01312376 -thickset a 2 1 & 2 0 02387413 00539687 -thickspread a 1 1 & 1 1 01698000 -thieving a 1 1 & 1 1 01225294 -thievish a 1 2 & + 1 0 01225294 -thimble-shaped a 1 1 & 1 0 02150750 -thin a 8 5 ! & ^ = + 8 5 02412164 00988232 02562566 00542359 02417301 01458054 02282277 02164913 -thin-bodied a 1 1 & 1 0 00628881 -thin-shelled a 1 1 & 1 0 02596905 -thin-skinned a 1 1 & 1 0 02106509 -thinkable a 1 3 ! & ^ 1 0 02417895 -thinking a 1 1 & 1 0 01926089 -thinned a 1 1 & 1 0 00756327 -third a 1 1 & 1 1 02202307 -third-dimensional a 1 1 & 1 1 00660809 -third-rate a 1 1 & 1 0 02348285 -third-year a 1 1 & 1 0 01015185 -thirdhand a 1 1 & 1 0 01855204 -thirsty a 4 3 ! & + 4 1 02554140 01270004 00888200 00007697 -thirteen a 1 1 & 1 1 02187606 -thirteenth a 1 1 & 1 1 02203763 -thirtieth a 1 1 & 1 1 02205838 -thirty a 1 1 & 1 1 02189306 -thirty-eight a 1 1 & 1 0 02190080 -thirty-eighth a 1 1 & 1 0 02206762 -thirty-fifth a 1 1 & 1 0 02206409 -thirty-first a 1 1 & 1 0 02205947 -thirty-five a 1 1 & 1 0 02189786 -thirty-four a 1 1 & 1 0 02189688 -thirty-fourth a 1 1 & 1 0 02206291 -thirty-nine a 1 1 & 1 0 02190182 -thirty-ninth a 1 1 & 1 0 02206881 -thirty-one a 1 1 & 1 0 02189396 -thirty-second a 1 1 & 1 0 02206056 -thirty-seven a 1 1 & 1 0 02189979 -thirty-seventh a 1 1 & 1 0 02206642 -thirty-six a 1 1 & 1 0 02189883 -thirty-sixth a 1 1 & 1 0 02206526 -thirty-third a 1 1 & 1 0 02206173 -thirty-three a 1 1 & 1 0 02189587 -thirty-two a 1 1 & 1 0 02189491 -thistlelike a 1 1 & 1 0 00145805 -thoracic a 1 1 \ 1 0 02860389 -thoreauvian a 1 2 \ + 1 0 03038401 -thoriated a 1 1 < 1 1 03154649 -thorn-tipped a 1 1 & 1 0 02431440 -thornless a 1 1 & 1 0 00146128 -thorny a 2 2 & + 2 0 00748674 00145083 -thorough a 2 2 & + 2 2 00311505 00522463 -thoroughbred a 1 1 & 1 0 01903965 -thoroughgoing a 2 1 & 2 1 00522463 01520091 -thought-provoking a 1 1 & 1 0 02306598 -thoughtful a 5 5 ! & ^ = + 5 3 01873295 02418872 02119971 01194483 00639230 -thoughtless a 2 5 ! & ^ = + 2 2 02420530 00639594 -thousand a 1 1 & 1 1 02198752 -thousandth a 1 1 & 1 0 02212473 -thracian a 1 1 \ 1 0 02972821 -threadbare a 2 1 & 2 1 01688757 02583898 -threaded a 1 1 \ 1 0 02815039 -threadlike a 1 1 & 1 0 02413851 -thready a 2 2 & + 2 0 02416765 02413851 -threatened a 1 2 & ; 1 1 02524688 -threatening a 2 1 & 2 1 00194357 00462409 -three a 1 1 & 1 1 02186580 -three-cornered a 2 1 & 2 0 02049323 00239325 -three-d a 1 1 & 1 0 00660809 -three-dimensional a 2 3 & = + 2 1 00660809 00657198 -three-figure a 1 1 & 1 0 01915849 -three-fold a 2 1 & 2 0 02218834 02217799 -three-hundredth a 1 1 & 1 0 02212108 -three-lane a 1 1 & 1 0 02221821 -three-legged a 1 1 & 1 0 01429870 -three-lipped a 1 1 & 1 0 01704599 -three-lobed a 2 1 & 2 0 02174542 00239444 -three-membered a 1 1 & 1 0 01502796 -three-needled a 1 1 & 1 0 02169081 -three-party a 1 1 & 1 0 00240008 -three-petaled a 1 1 & 1 0 01776423 -three-petalled a 1 1 & 1 0 01776423 -three-piece a 1 1 ! 1 0 01650193 -three-ply a 1 1 & 1 0 02411913 -three-pronged a 1 1 & 1 0 02482932 -three-seeded a 1 1 & 1 0 02255928 -three-sided a 1 1 & 1 0 00239847 -three-way a 1 1 & 1 1 00240008 -three-wheel a 1 1 \ 1 0 02731174 -three-wheeled a 1 1 \ 1 0 02731174 -three-year-old a 1 1 & 1 0 01647750 -three_hundred a 1 1 & 1 0 02198409 -threefold a 2 1 & 2 0 02218834 02217799 -threepenny a 2 1 & 2 0 02224790 00935359 -threescore a 1 1 & 1 0 02192184 -thriftless a 1 2 & + 1 0 01896299 -thrifty a 2 4 ! & ^ + 2 1 02421158 01895099 -thrilled a 1 1 & 1 0 00920704 -thrillful a 1 1 & 1 1 00920797 -thrilling a 2 1 & 2 1 00921866 02307199 -thriving a 1 1 & 1 1 02331857 -throated a 1 2 & ; 1 0 01209542 -throaty a 1 2 & + 1 0 01216317 -throbbing a 1 1 & 1 1 02020897 -thrombosed a 1 1 & 1 1 01622188 -thronged a 1 1 & 1 1 00560284 -through a 2 1 & 2 1 01003536 00762168 -through_with a 2 1 & 2 1 01003536 01003822 -throwaway a 2 1 & 2 0 02528206 00776706 -throwback a 1 1 & 1 0 01877182 -thrown a 2 2 & ; 2 0 02493395 00256237 -thrown-away a 1 1 & 1 0 02528206 -thrown_and_twisted a 1 2 & ; 1 1 00256237 -thudding a 1 1 & 1 1 02011622 -thumbed a 1 1 & 1 0 02584031 -thumping a 1 2 & ; 1 0 01388062 -thundering a 2 1 & 2 2 01922030 01286375 -thunderous a 2 2 & + 2 1 01453467 00178464 -thunderstruck a 1 1 & 1 0 02358277 -thundery a 2 2 & + 2 0 01453467 00306034 -thwarted a 1 1 & 1 0 02333976 -thwarting a 1 1 & 1 0 01764745 -thwartwise a 1 1 & 1 0 01445917 -thyroid a 2 1 \ 2 0 02981329 02981115 -thyroidal a 1 2 \ + 1 1 02981329 -thyrotoxic a 1 1 \ 1 1 02981224 -tibetan a 1 2 \ + 1 1 02965696 -tibial a 1 2 \ + 1 0 02815135 -tickling a 1 1 & 1 0 00922439 -ticklish a 1 1 & 1 0 00746994 -tidal a 1 2 \ + 1 0 02815241 -tiddly a 1 1 & 1 0 00798384 -tidy a 3 4 ! & ^ + 3 0 02422685 02427594 00624576 -tie-on a 1 1 & 1 0 00161993 -tied a 5 2 ! & 5 2 00253869 02478215 00254746 00254516 00892243 -tied_up a 1 1 & 1 1 00293882 -tiered a 1 1 \ 1 0 02815361 -tiger-striped a 1 1 & 1 0 01791036 -tigerish a 1 1 & 1 0 01508320 -tight a 14 5 ! & ^ + ; 14 6 01447302 02403505 02526441 01655538 01113807 00017186 01398199 02232739 02095670 00890622 00798103 00747727 00711059 00503157 -tight-fitting a 1 1 & 1 0 01448178 -tight-knit a 1 1 & 1 0 01328877 -tight-laced a 1 1 & 1 0 01880163 -tight_fitting a 1 1 & 1 0 01448178 -tightfisted a 1 2 & + 1 0 01113505 -tightfitting a 1 1 & 1 0 01448178 -tightlipped a 1 1 & 1 0 00501004 -tightly_fitting a 1 1 & 1 1 01448178 -tightly_knit a 1 1 & 1 1 01328877 -tiled a 1 1 & 1 1 01698103 -tillable a 1 1 & 1 0 01865807 -tilled a 1 1 & 1 1 01833092 -tilted a 1 1 & 1 1 01234527 -timber-framed a 1 1 & 1 0 02429880 -timbered a 2 2 ! & 2 2 02429571 02574706 -time-consuming a 1 1 & 1 0 01441866 -time-honored a 2 1 & 2 0 01983672 01226997 -time-honoured a 2 1 & 2 0 01983672 01226997 -time-release a 1 1 \ 1 0 02815459 -time-tested a 1 1 & 1 0 00724596 -timed a 1 1 & 1 1 01960207 -timeless a 1 2 & + 1 0 00353431 -timely a 2 2 & + 2 2 01900771 01661529 -timeserving a 1 1 & 1 0 00931974 -timeworn a 1 1 & 1 1 01688757 -timid a 3 5 ! & ^ = + 3 1 00251809 00339941 00265989 -timorese a 1 1 \ 1 0 02815635 -timorous a 1 2 & + 1 0 00252498 -tined a 1 1 & 1 0 02482509 -tingling a 1 1 & 1 1 00922439 -tinkling a 1 1 & 1 0 02010831 -tinkly a 1 2 & + 1 0 02010831 -tinned a 1 1 & 1 0 01072112 -tinny a 3 4 & \ + ; 3 0 02815753 02346013 01529167 -tinpot a 1 2 & ; 1 0 02503900 -tinseled a 1 1 & 1 0 00057737 -tinselly a 1 2 & + 1 0 00057737 -tiny a 1 2 & + 1 1 01392249 -tip-and-run a 1 1 & 1 0 01629493 -tip-tilted a 1 1 & 1 0 02140144 -tip-up a 1 1 & 1 0 00466229 -tipped a 2 3 ! & ; 2 1 02430756 01234527 -tippy a 1 2 & ; 1 0 02292421 -tipsy a 2 2 & + 2 1 00798384 02293386 -tiptoe a 1 1 & 1 0 01919793 -tiptop a 1 2 & ; 1 0 02341864 -tired a 2 3 ! & + 2 1 02431728 01688757 -tired_of a 1 1 & 1 1 01806677 -tireless a 2 2 & + 2 1 00874920 00754682 -tiresome a 1 2 & + 1 1 01345307 -tiring a 1 1 & 1 1 00837249 -titanic a 1 2 & + 1 1 01390683 -titillated a 1 1 & 1 0 00920603 -titillating a 3 1 & 3 1 00922344 02132080 00922439 -titled a 1 1 & 1 1 01591227 -tittering a 1 1 < 1 1 03154649 -titular a 5 3 & \ + 5 0 02816340 02816198 02815998 02815843 01043374 -titulary a 1 2 \ + 1 0 02816340 -toadyish a 2 1 & 2 0 02181231 00790394 -toasted a 1 1 & 1 0 00619119 -tobagonian a 1 2 \ + 1 0 03125370 -tod a 1 2 & ; 1 0 02251773 -toed a 1 2 ! & 1 0 01032029 -toeless a 1 1 ! 1 0 01032531 -toffee-nosed a 1 2 & ; 1 0 01861095 -together a 1 3 & + ; 1 1 01586194 -togged a 1 2 & ; 1 0 00456929 -togged_up a 1 1 & 1 0 00455824 -togolese a 1 1 \ 1 0 03125505 -toilet-trained a 1 1 & 1 0 01912483 -toiling a 1 1 & 1 1 00293376 -toilsome a 1 2 & + 1 0 00836544 -token a 1 1 & 1 0 01496592 -tokenish a 1 1 & 1 1 01496592 -tolerable a 2 3 ! & ^ 2 0 02435026 02080937 -tolerant a 5 4 ! & ^ + 5 3 02436341 01041209 00286837 02435383 01736883 -toll-free a 1 1 \ 1 0 02816522 -tomboyish a 1 2 & + 1 0 01485708 -tomentose a 2 3 & \ ; 2 0 03021347 00216155 -tomentous a 1 2 & ; 1 0 00216155 -tonal a 2 5 ! & \ + ; 2 2 02816663 02437148 -tone-deaf a 1 1 & 1 0 00682662 -toned a 2 2 ! & 2 1 02437853 02430096 -toneless a 1 1 ! 1 0 02430238 -tongan a 1 2 \ + 1 0 03125643 -tongue-in-cheek a 1 1 & 1 1 01264913 -tongue-shaped a 1 1 & 1 0 02046736 -tongue-tied a 1 1 & 1 0 00152104 -tongued a 2 2 ! & 2 1 02430355 00153083 -tongueless a 2 2 ! & 2 0 02430659 00152285 -tonguelike a 1 1 & 1 0 02430563 -tonic a 5 5 ! & \ + ; 5 0 02816888 02816663 02320751 02438043 01357027 -tonsorial a 1 1 \ 1 0 03125792 -tonsured a 1 1 & 1 0 00212057 -too-careful a 1 1 & 1 1 00310943 -too-generous a 1 1 & 1 0 01111965 -too-greedy a 1 1 & 1 0 00011665 -too_bad a 1 1 & 1 1 01052038 -too_big_for_one's_breeches a 1 1 & 1 0 01890382 -too_large a 1 1 & 1 1 01390130 -toothed a 3 2 ! & 3 0 02438346 02247785 02246903 -toothless a 2 2 ! & 2 0 02439582 00835978 -toothlike a 1 1 & 1 0 02439303 -toothsome a 3 3 & ^ + 3 0 01716227 02396720 02132967 -toothy a 1 2 & + 1 0 02439377 -top a 1 3 ! & ^ 1 1 02439949 -top-down a 1 1 ! 1 0 02443155 -top-flight a 1 2 & ; 1 0 02344672 -top-grade a 1 1 & 1 1 00228173 -top-heavy a 1 1 & 1 0 02293497 -top-hole a 1 2 & ; 1 0 02344672 -top-notch a 1 2 & ; 1 0 02341864 -top-quality a 1 1 & 1 1 00228173 -top-secret a 1 1 & 1 0 00416301 -topical a 3 4 & \ + ; 3 1 01425895 02817339 00668053 -topknotted a 1 2 & ; 1 0 00057992 -topless a 2 2 ! & 2 0 02442082 00458488 -topmost a 1 1 & 1 0 02440461 -topnotch a 1 2 & ; 1 1 02341864 -topographic a 1 2 \ + 1 0 03018112 -topographical a 1 2 \ + 1 1 03018112 -topologic a 1 1 \ 1 0 02817533 -topological a 1 1 \ 1 0 02817533 -topped a 1 2 ! & 1 1 02441642 -topping a 1 2 & ; 1 0 02344672 -tops a 1 2 & ; 1 0 02341864 -topsy-turvy a 1 2 & + 1 1 02425529 -tormented a 2 1 & 2 1 01364585 02458046 -torn a 2 1 & 2 2 01318937 02483011 -toroidal a 1 2 \ + 1 0 02817647 -torpid a 2 3 & + ; 2 1 00034322 00188155 -torrential a 3 3 & \ + 3 0 02817796 00601250 00016532 -torrid a 3 2 & + 3 0 01726235 01257330 01250694 -tortious a 1 1 \ 1 0 02817999 -tortuous a 3 2 & + 3 1 02176841 02313784 00769121 -tortured a 1 1 & 1 1 01364585 -torturesome a 1 1 & 1 0 01711724 -torturing a 1 1 & 1 1 01711724 -torturous a 1 2 & + 1 0 01711724 -torulose a 1 2 & ; 1 0 02142446 -total a 2 2 & + 2 2 00515380 00522885 -totaled a 1 1 & 1 0 00736879 -totalistic a 1 2 \ + 1 1 02818111 -totalitarian a 2 2 & \ 2 1 00718635 02818111 -totemic a 1 2 \ + 1 1 02954331 -totipotent a 1 3 \ + ; 1 0 02818402 -tottering a 2 1 & 2 1 02305484 02293592 -tottery a 1 1 & 1 0 02305484 -touch-and-go a 1 1 & 1 0 02060496 -touchable a 1 2 & ^ 1 0 02391455 -touched a 3 3 ! & ^ 3 0 02445093 01559903 02075938 -touching a 1 1 & 1 1 01560821 -touchy a 2 2 & + 2 0 02106509 00746994 -touchy-feely a 1 2 & ; 1 0 01466305 -tough a 9 5 ! & ^ + ; 9 6 02448437 00748058 02447344 00707795 02512641 00478311 02445636 01127302 00746451 -tough-minded a 1 1 & 1 0 02448749 -tough-skinned a 2 1 & 2 0 02446551 02108098 -toughened a 2 2 & ^ 2 0 02447344 01521542 -toupeed a 1 1 & 1 0 02564810 -touristed a 1 1 & 1 0 01816696 -touristy a 1 2 & + 1 0 01816696 -tousled a 1 1 & 1 1 02425220 -towering a 1 1 & 1 0 01205473 -towheaded a 1 1 & 1 0 00243945 -toxic a 1 4 ! & ^ + 1 1 02449430 -toxicant a 1 1 & 1 0 02450512 -toxicologic a 1 2 \ + 1 0 02912848 -toxicological a 1 2 \ + 1 0 02912848 -trabeate a 1 2 & ; 1 0 02314756 -trabeated a 1 2 & ; 1 0 02314756 -trabecular a 1 2 \ + 1 0 02943954 -trabeculate a 1 1 \ 1 0 02943954 -traceable a 2 2 ! & 2 1 00172308 02453323 -tracheal a 1 2 \ + 1 0 02944089 -trackable a 1 0 1 0 02453323 -tracked a 1 2 ! & 1 0 02453616 -trackless a 2 2 ! & 2 0 02454081 00020241 -tractable a 2 5 ! & ^ = + 2 0 02451113 02362499 -tractile a 1 1 & 1 0 02144436 -tractive a 1 1 \ 1 0 02944235 -trademarked a 1 1 & 1 0 01110819 -traditional a 2 3 ! & + 2 2 00611047 01690767 -traditionalist a 1 1 & 1 0 00575012 -traditionalistic a 1 2 & + 1 0 00611754 -tragic a 2 4 & \ + ; 2 2 01363153 02973241 -tragical a 1 2 & + 1 0 01363153 -tragicomic a 3 4 & \ + ; 3 1 02973540 01363370 01267762 -tragicomical a 2 2 & + 2 0 01363370 01267762 -trained a 1 2 ! & 1 1 01911683 -traitorous a 1 2 & + 1 1 00962939 -tralatitious a 1 1 & 1 0 00611527 -tramontane a 2 2 ! & 2 0 00410449 01035858 -trancelike a 1 1 & 1 0 00437149 -tranquil a 2 2 & + 2 1 00302951 00529657 -tranquilising a 1 1 & 1 0 02308472 -tranquilizing a 1 1 & 1 0 02308472 -tranquillising a 1 1 & 1 0 02308472 -tranquillizing a 1 1 & 1 0 02308472 -transactinide a 1 2 \ + 1 0 02873213 -transalpine a 1 2 & + 1 0 00410668 -transatlantic a 1 1 \ 1 0 02946777 -transcendent a 2 2 & + 2 0 02344793 01374912 -transcendental a 2 3 & \ + 2 2 01577086 02873359 -transcontinental a 1 1 & 1 0 01567294 -transcribed a 1 2 & ; 1 0 01423187 -transcultural a 1 1 \ 1 1 02873042 -transcutaneous a 1 2 \ ; 1 0 02944327 -transdermal a 1 2 \ ; 1 0 02944327 -transdermic a 1 2 \ ; 1 0 02944327 -transeunt a 1 2 ! ; 1 0 01274125 -transferable a 2 2 & + 2 0 01523724 00093556 -transferrable a 2 1 & 2 0 01523724 00093556 -transfixed a 1 1 & 1 0 00865848 -transformable a 1 1 & 1 0 00348537 -transformed a 1 1 & 1 1 00354934 -transgender a 1 1 & 1 0 01202514 -transgendered a 1 1 & 1 0 01202514 -transient a 2 3 & + ; 2 0 01274125 01756292 -transistorised a 1 1 & 1 0 01095277 -transistorized a 1 1 & 1 0 01095277 -transitional a 1 1 \ 1 1 02944694 -transitive a 1 3 ! + ; 1 0 02488705 -transitory a 1 2 & + 1 0 01756292 -translatable a 2 2 ! & 2 0 02489092 00348537 -translational a 1 2 ! \ 1 0 03125925 -translucent a 1 2 & + 1 1 00432626 -translunar a 2 2 & \ 2 0 02757599 01180549 -translunary a 2 2 & \ 2 0 02757599 01180549 -transmissible a 3 3 & + ; 3 1 01303042 01314537 01314197 -transmittable a 1 1 & 1 0 01303042 -transmitted a 1 1 & 1 0 01314537 -transmontane a 1 1 & 1 0 00410449 -transmundane a 1 1 & 1 0 01577498 -transmutable a 1 2 & + 1 0 00348537 -transnational a 1 1 & 1 0 01569166 -transoceanic a 1 1 \ 1 0 02890492 -transonic a 1 0 1 0 00175528 -transparent a 4 2 & + 4 2 00431774 02413390 02318950 01619689 -transpiring a 1 1 < 1 1 03154786 -transplacental a 1 1 & 1 0 01831203 -transplantable a 1 1 & 1 1 01524632 -transpolar a 1 1 \ 1 0 02838470 -transportable a 1 1 & 1 0 01523724 -transposable a 1 2 & + 1 0 00918200 -transposed a 1 1 & 1 0 00201961 -transsexual a 1 2 & + 1 0 01202634 -transuranic a 1 1 \ 1 0 02873557 -transversal a 1 1 & 1 0 01445917 -transverse a 1 1 & 1 1 01445917 -transvestic a 1 2 & + 1 0 01202813 -transvestite a 1 2 & + 1 0 01202813 -trapezoidal a 1 2 \ + 1 0 02948984 -trapped a 1 1 & 1 1 01064913 -trashy a 2 2 & + 2 0 02503656 02393791 -traumatic a 2 3 & \ + 2 0 02944872 01712940 -travel-soiled a 1 1 & 1 0 00423569 -travel-stained a 1 1 & 1 0 00423569 -travel-worn a 1 1 & 1 0 02434307 -travelable a 1 1 & 1 0 01725129 -traveled a 2 2 ! & 2 2 02454206 00636391 -travelled a 1 1 & 1 0 00636391 -traversable a 1 1 & 1 0 01725129 -treacherous a 2 2 & + 2 1 02061126 00960094 -treacly a 1 2 & + 1 0 02368566 -treasonable a 1 1 & 1 0 00962939 -treasonous a 1 2 & + 1 0 00962939 -treasured a 1 1 & 1 1 01462625 -treated a 3 3 ! & ^ 3 1 01953635 01955272 01521542 -treble a 4 1 & 4 1 01214842 02218834 02218547 02217799 -tree-living a 1 0 1 0 00141818 -tree-shaped a 1 1 & 1 0 00613382 -treed a 1 1 & 1 0 01064913 -treeless a 1 2 & ^ 1 0 02575008 -treelike a 1 1 & 1 0 00613382 -tref a 1 2 & ; 1 0 00428121 -trembling a 1 1 & 1 1 02304565 -tremendous a 3 2 & ; 3 2 01385255 01676517 01677200 -tremulous a 1 1 & 1 0 02304987 -trenchant a 3 2 & + 3 0 01336371 00834959 00429016 -trend-setting a 1 1 & 1 0 00973568 -trendsetting a 1 1 & 1 0 00973568 -trendy a 1 2 & + 1 0 00973677 -trepid a 1 1 & 1 0 00252498 -trespassing a 1 1 & 1 0 01352320 -trial-and-error a 2 1 & 2 0 00860365 00093108 -triangular a 2 2 & + 2 1 02049428 00239847 -triangulate a 1 1 \ 1 0 02834246 -triassic a 1 1 \ 1 0 03126054 -tribadistic a 1 2 & + 1 0 01202994 -tribal a 1 2 \ + 1 1 03074922 -tributary a 3 1 & 3 0 01855348 01617410 00323426 -tricentenary a 1 1 \ 1 0 02999398 -tricentennial a 1 1 \ 1 0 02999398 -trichromatic a 1 1 & 1 0 00401125 -trichrome a 1 1 & 1 1 00401125 -tricked-out a 1 1 & 1 0 00060151 -tricksy a 1 2 & + 1 0 00148078 -tricky a 3 2 & + 3 0 02466734 00746819 00148078 -triclinic a 1 2 ! ; 1 0 00366185 -tricolor a 1 1 & 1 1 00401125 -tricuspid a 1 1 & 1 0 02049648 -tricuspidate a 1 1 & 1 0 02049648 -tried a 2 1 & 2 0 01894196 00724596 -tried_and_true a 1 1 & 1 0 00724596 -triennial a 1 1 & 1 0 01969606 -trifid a 1 2 & ; 1 0 02483198 -trifling a 1 1 & 1 0 02502994 -trifoliate a 1 1 & 1 0 02174417 -trifoliated a 1 1 & 1 0 02174417 -trifoliolate a 1 1 & 1 0 02174417 -trig a 1 1 & 1 0 02423073 -trigger-happy a 2 1 & 2 1 01998989 01511854 -trigonal a 1 2 & ; 1 1 02373467 -trigonometric a 1 2 \ + 1 0 02912518 -trihydroxy a 1 1 \ 1 0 03126310 -trilateral a 2 1 & 2 0 01946167 00239847 -trilingual a 1 1 & 1 0 01546110 -trilled a 1 1 & 1 0 01878227 -trillion a 2 2 & ; 2 0 02199813 02199699 -trillionth a 1 1 & 1 0 02212805 -trilobate a 1 1 & 1 0 02174542 -trilobated a 1 1 & 1 0 02174542 -trilobed a 1 1 & 1 0 02174542 -trim a 4 2 & + 4 1 00991301 02423649 02423073 01793985 -trimmed a 1 2 ! & 1 0 02454750 -trimotored a 1 1 & 1 0 01559728 -trinidadian a 1 2 \ + 1 0 03126175 -trinuclear a 1 1 ; 1 0 00241530 -trinucleate a 1 2 ! ; 1 0 00241530 -trinucleated a 1 1 ; 1 0 00241530 -tripartite a 1 1 & 1 0 00240008 -tripinnate a 1 1 & 1 0 02174678 -tripinnated a 1 1 & 1 0 02174678 -tripinnatifid a 1 1 & 1 0 02174781 -triple a 2 1 & 2 1 02218547 02218834 -triple-crown a 2 2 & ; 2 0 02333147 02332956 -triplex a 1 1 & 1 0 02218547 -triploid a 1 2 & ; 1 0 01148086 -tripping a 2 1 & 2 0 02020011 01192393 -triskaidekaphobic a 1 2 & + 1 0 00081087 -tritanopic a 1 2 & + 1 0 02160696 -trite a 1 2 & + 1 1 01688757 -triumphal a 2 3 & \ + 2 0 03013412 00704898 -triumphant a 2 2 & + 2 2 00704898 00695209 -triune a 1 1 & 1 0 02219015 -trivalent a 1 2 \ ; 1 0 03126399 -trivial a 3 3 & + ; 3 1 01280908 02165432 02121735 -trochaic a 1 3 \ + ; 1 0 03126499 -trojan a 1 2 \ + 1 0 03126638 -trompe-l'oeil a 1 1 & 1 0 01935581 -trophic a 1 1 \ 1 0 02945002 -trophoblastic a 1 2 \ + 1 0 03126787 -trophotropic a 1 2 \ + 1 1 03126922 -tropic a 2 2 & + 2 0 02443907 01250835 -tropical a 4 4 & \ + ; 4 2 02443907 02929500 01420899 01250835 -trouble-free a 1 1 & 1 0 02459969 -troubled a 2 3 ! & ^ 2 2 02455297 01923720 -troublesome a 1 2 & + 1 1 00748795 -troubling a 1 1 & 1 0 01189386 -troublous a 1 2 & + 1 0 02458973 -trousered a 1 1 & 1 0 00454984 -truant a 1 2 & + 1 0 01848171 -truculent a 1 2 & + 1 1 00084795 -true a 12 5 ! & ^ = + 12 3 02460502 00023120 00959530 01225398 02469756 02465519 02180277 01938508 01470649 01407267 01163759 00911204 -true-blue a 1 1 & 1 0 00962476 -true-false a 1 1 ! 1 0 02221017 -true-to-life a 1 1 & 1 0 01941383 -true_to a 1 1 & 1 0 00960856 -true_to_life a 1 1 & 1 0 01941383 -truehearted a 1 1 & 1 0 00959244 -trumped-up a 1 1 & 1 0 02462375 -trumpet-like a 1 1 & 1 0 01454402 -trumpet-shaped a 1 1 & 1 0 02150842 -truncate a 1 1 & 1 0 01437752 -truncated a 2 1 & 2 0 01442597 01437752 -trussed a 1 1 & 1 0 00253869 -trusted a 1 1 & 1 1 02465978 -trustful a 1 4 ! & ^ + 1 0 02462619 -trusting a 1 3 & ^ + 1 0 02462619 -trustworthy a 2 4 ! & ^ + 2 2 02464693 01997748 -trusty a 1 3 & ^ + 1 0 02464693 -truthful a 2 4 ! & ^ + 2 2 01225398 02461438 -trying a 2 1 & 2 1 00748947 00090408 -tsarist a 1 1 \ 1 0 02710043 -tsaristic a 1 2 \ + 1 0 02710043 -tubal a 1 2 \ + 1 0 02896497 -tubby a 1 2 & + 1 0 00987510 -tube-nosed a 1 1 & 1 0 01607831 -tube-shaped a 1 1 & 1 0 02264807 -tubed a 1 1 ! 1 0 02466916 -tubeless a 1 2 ! + 1 0 02466999 -tubelike a 1 1 & 1 0 02264807 -tubercular a 4 3 & \ + 4 0 02818958 02818751 02818600 02546854 -tuberculate a 1 1 \ 1 0 02819139 -tuberculoid a 1 1 \ 1 0 02819219 -tuberculous a 1 2 & + 1 0 02546854 -tuberous a 1 2 \ + 1 0 03026095 -tubular a 1 2 & + 1 1 02264807 -tucked a 1 1 ! 1 0 02467108 -tudor a 1 1 \ 1 1 03027040 -tufted a 3 2 & ; 3 0 02253817 00060294 00057992 -tumble-down a 1 1 & 1 0 00679717 -tumescent a 1 2 & + 1 0 01174565 -tumid a 3 3 & + ; 3 0 02016881 01174565 01151592 -tumultuous a 1 2 & + 1 1 01923720 -tuneful a 1 2 ! + 1 1 01502195 -tuneless a 1 1 ! 1 0 01502383 -tunisian a 2 2 \ + 2 0 03127197 03127030 -tuppeny a 1 1 & 1 0 00935359 -turbaned a 1 1 & 1 0 01428767 -turbid a 1 2 & + 1 0 00433529 -turbinate a 2 2 & \ 2 0 02819346 02317598 -turbulent a 2 2 & + 2 2 01923720 00087597 -turgid a 2 2 & + 2 0 02016881 01174565 -turkey-sized a 1 1 & 1 0 02224879 -turkic a 1 1 \ 1 0 03127324 -turkic-speaking a 1 1 & 1 0 00500219 -turkish a 1 1 \ 1 1 03023852 -turkmen a 1 1 \ 1 0 02963535 -turned a 2 2 ! & 2 1 02467386 02369869 -turned_on a 1 1 & 1 0 02131668 -turned_out a 1 1 & 1 0 00457036 -turnip-shaped a 1 1 & 1 0 02150960 -tuscan a 1 2 \ + 1 0 02970689 -tusked a 1 2 & + 1 0 02439499 -tutelar a 1 1 & 1 0 01888017 -tutelary a 1 1 & 1 0 01888017 -tutorial a 1 2 \ + 1 0 03127435 -tuxedoed a 1 1 & 1 1 00457160 -twee a 1 1 & 1 0 01948092 -tweedy a 2 2 & + 2 1 02240795 00261885 -twelfth a 1 1 & 1 1 02203629 -twelve a 1 1 & 1 1 02187465 -twelve-sided a 1 1 & 1 0 00239012 -twentieth a 1 1 & 1 1 02204716 -twenty a 1 1 & 1 1 02188317 -twenty-eight a 1 1 & 1 0 02189108 -twenty-eighth a 1 1 & 1 1 02205610 -twenty-fifth a 1 1 & 1 1 02205271 -twenty-first a 1 1 & 1 1 02204823 -twenty-five a 1 1 & 1 1 02188817 -twenty-four a 1 1 & 1 1 02188720 -twenty-fourth a 1 1 & 1 0 02205158 -twenty-nine a 1 1 & 1 0 02189209 -twenty-ninth a 1 1 & 1 0 02205725 -twenty-one a 1 1 & 1 1 02188431 -twenty-second a 1 1 & 1 0 02204932 -twenty-seven a 1 1 & 1 0 02189008 -twenty-seventh a 1 1 & 1 0 02205496 -twenty-six a 1 1 & 1 1 02188913 -twenty-sixth a 1 1 & 1 0 02205384 -twenty-third a 1 1 & 1 0 02205045 -twenty-three a 1 1 & 1 1 02188620 -twenty-two a 1 1 & 1 0 02188525 -twiggy a 1 2 & + 1 0 00989957 -twiglike a 1 1 & 1 0 00989957 -twilight a 1 1 & 1 0 00275486 -twilit a 1 1 & 1 0 00275486 -twilled a 1 1 & 1 0 02240275 -twin a 1 1 & 1 1 01486854 -twin-bedded a 1 1 & 1 0 00207887 -twinkling a 1 1 & 1 1 00283580 -twinkly a 1 2 & + 1 0 00363031 -twinned a 1 1 & 1 0 01486854 -twinning a 1 1 & 1 0 02475430 -twisted a 1 1 & 1 1 01311067 -twisting a 1 1 & 1 0 02313784 -twisty a 1 1 & 1 0 02313784 -two a 1 1 & 1 1 02186470 -two-a-penny a 1 1 & 1 0 00935359 -two-chambered a 1 1 & 1 0 02479361 -two-channel a 1 2 & ; 1 0 00240655 -two-dimensional a 2 2 & + 2 0 00658942 00660551 -two-eared a 1 1 & 1 0 00240584 -two-faced a 2 1 & 2 0 01223271 00235571 -two-fold a 2 1 & 2 0 02217799 02217241 -two-footed a 1 0 1 0 00241672 -two-handed a 2 1 & 2 0 02029752 02028046 -two-humped a 1 1 \ 1 0 02819475 -two-hundredth a 1 1 & 1 0 02211989 -two-lane a 1 1 & 1 0 02221723 -two-leafed a 1 1 & 1 0 01703330 -two-leaved a 1 1 & 1 0 01703330 -two-lipped a 1 2 & ; 1 0 01704273 -two-lobed a 1 1 & 1 0 00237965 -two-needled a 1 1 & 1 0 02168991 -two-part a 1 1 & 1 0 00238037 -two-party a 1 1 & 1 0 00731471 -two-piece a 1 1 ! 1 0 01650037 -two-ply a 1 1 & 1 0 02412059 -two-pronged a 1 1 & 1 0 02483311 -two-sided a 2 1 & 2 0 01759676 00237788 -two-timing a 1 1 & 1 0 00961195 -two-toe a 1 1 & 1 0 01032451 -two-toed a 1 1 & 1 0 01032451 -two-way a 3 1 & 3 1 00731471 00238037 00233925 -two-wheel a 1 1 \ 1 0 02819582 -two-wheeled a 1 1 \ 1 0 02819582 -two-year a 1 1 ; 1 0 00678221 -two-year-old a 1 1 & 1 0 01647675 -two_hundred a 1 1 & 1 0 02198302 -twofold a 2 1 & 2 2 02217799 02217241 -twopenny a 1 1 & 1 0 00935359 -twopenny-halfpenny a 1 1 & 1 0 00935359 -twoscore a 1 1 & 1 1 02190278 -tympanic a 2 2 \ + 2 0 02945202 02945120 -tympanitic a 1 1 \ 1 0 02945292 -typic a 1 2 & + 1 0 02469119 -typical a 3 5 ! & ^ = + 3 2 02468635 00357556 01595440 -typographic a 1 2 \ + 1 1 02910248 -typographical a 1 2 \ + 1 0 02910248 -tyrannic a 1 2 & + 1 0 00717684 -tyrannical a 2 2 & + 2 0 00788474 00717684 -tyrannous a 1 2 & + 1 0 00788474 -tyrolean a 1 2 \ + 1 0 02971007 -tyrolese a 1 1 \ 1 0 02971007 -tzarist a 1 1 \ 1 0 02710043 -u a 1 2 & ; 1 0 00261735 -u-shaped a 1 1 & 1 0 02151145 -ubiquitous a 1 2 & + 1 1 01847515 -ugandan a 1 1 \ 1 0 03127583 -ugly a 4 5 ! & ^ = + 4 1 00220956 01139067 01133017 00193480 -ukrainian a 1 2 \ + 1 0 02963665 -ulcerated a 1 1 & 1 1 01175158 -ulcerative a 1 2 \ + 1 0 03142636 -ulcerous a 1 2 & + 1 0 01175158 -ulnar a 1 2 \ + 1 0 02837047 -ult a 1 1 & 1 0 01731208 -ulterior a 3 1 & 3 0 01707733 00451291 00123485 -ultimate a 2 4 ! & = + 2 2 01578312 01013961 -ultimo a 1 1 & 1 0 01731208 -ultra a 1 1 & 1 1 01535270 -ultra_vires a 1 2 ! ; 1 0 01348083 -ultraconservative a 1 2 & + 1 0 00575126 -ultramarine a 1 2 & + 1 0 00384936 -ultramicroscopic a 1 2 \ + 1 0 03142799 -ultramodern a 1 1 & 1 1 01536641 -ultramontane a 3 2 & \ 3 0 03142927 00410668 00410268 -ultranationalistic a 1 2 & + 1 0 01740358 -ultrasonic a 1 2 & + 1 1 00175300 -ultraviolet a 1 2 & + 1 1 02518601 -umbel-like a 1 1 & 1 0 00538469 -umbellar a 1 2 \ + 1 0 03026504 -umbellate a 2 2 & \ 2 0 03026504 00538469 -umbelliferous a 1 2 \ ; 1 0 02819848 -umbelliform a 1 2 \ ; 1 0 02819734 -umber a 1 2 & + 1 0 00385059 -umbilical a 1 2 \ + 1 0 02840935 -umbilicate a 1 1 & 1 0 00537169 -umbrageous a 2 2 & + 2 0 00276862 00115494 -umbrella a 1 1 & 1 0 00528875 -umbrella-shaped a 1 1 & 1 0 02151050 -umbrellalike a 1 1 & 1 0 02047726 -umpteen a 1 1 & 1 0 01552802 -umpteenth a 1 2 & ; 1 0 02204580 -umptieth a 1 2 & ; 1 0 02204580 -umteen a 1 1 & 1 0 01552802 -umteenth a 1 2 & ; 1 0 02204580 -un-american a 1 1 & 1 0 01740772 -un-come-at-able a 1 2 & ; 1 0 00020647 -un-get-at-able a 1 2 & ; 1 0 00020647 -unabashed a 1 1 & 1 0 00155886 -unabated a 1 1 & 1 1 01513951 -unable a 3 3 ! & = 3 2 00002098 00307794 01825080 -unabridged a 1 2 ! & 1 0 00004980 -unabused a 1 1 ! 1 0 00017688 -unaccented a 2 1 & 2 0 02320886 02320442 -unacceptable a 4 5 ! & ^ + ; 4 1 02083053 00018584 02436025 02298766 -unaccepted a 1 2 & ; 1 0 02298766 -unaccessible a 1 2 & = 1 0 00019874 -unaccommodating a 2 2 ! & 2 0 00021403 01198188 -unaccompanied a 3 2 ! & 3 1 02251057 02252182 02111486 -unaccountable a 2 1 & 2 1 00940108 01999085 -unaccredited a 1 1 & 1 0 00179815 -unaccustomed a 2 2 ! & 2 0 00024834 00491320 -unachievable a 1 1 & 1 1 01824081 -unacknowledged a 2 4 ! & ^ = 2 0 00028672 00688740 -unacquainted a 2 1 & 2 0 01309220 00966960 -unacquainted_with a 1 1 & 1 0 00966960 -unacquisitive a 1 2 ! = 1 0 00031533 -unactable a 1 1 ! 1 0 00795959 -unadaptable a 1 3 ! & + 1 0 01029044 -unadapted a 2 1 & 2 0 01541156 00351991 -unaddicted a 1 2 ! & 1 0 00047566 -unaddressed a 1 1 ! 1 0 00050947 -unadjustable a 1 1 & 1 0 01060712 -unadjusted a 2 2 ! & 2 1 00351226 00351991 -unadoptable a 1 1 ! 1 0 00055906 -unadorned a 1 3 ! & ^ 1 0 00060397 -unadulterated a 2 1 & 2 0 01907481 01520091 -unadventurous a 1 3 ! & ^ 1 0 00066800 -unadvisable a 1 1 ^ 1 0 00067767 -unadvised a 2 2 & ^ 2 0 00068278 01309526 -unaerated a 1 2 & ; 1 0 02509854 -unaesthetic a 1 1 & 1 0 00070583 -unaffected a 4 5 ! & ^ = + 4 2 00071992 02107827 01560320 00074346 -unaffecting a 1 1 & 1 0 01561694 -unaffectionate a 1 1 & 1 0 01467046 -unaffiliated a 1 1 & 1 0 00730009 -unaffixed a 1 1 ! 1 0 00159381 -unafraid a 2 4 ! & ^ = 2 1 00081671 02093305 -unaged a 1 1 & 1 0 01494146 -unaggressive a 1 3 ! & ^ 1 0 00084956 -unagitated a 3 3 ! & ^ 3 0 00088658 00087152 00529657 -unaided a 1 1 & 1 0 02354403 -unaired a 1 1 & 1 0 02509484 -unairworthy a 1 2 ! = 1 0 02088314 -unalarming a 1 2 ! = 1 0 00196560 -unalert a 1 2 ! ^ 1 0 00092551 -unalienable a 1 2 & ^ 1 0 00093810 -unalike a 1 2 ! = 1 0 01410905 -unalloyed a 1 1 & 1 0 01907595 -unalterable a 3 4 ! & + ; 3 1 00349523 00349148 00347400 -unaltered a 1 2 ! & 1 0 00353206 -unambiguous a 2 4 ! & ^ + 2 2 00103696 00896555 -unambitious a 1 4 ! & ^ = 1 0 00105023 -unamended a 1 2 ! ; 1 0 00354330 -unanalyzable a 1 1 & 1 0 02175684 -unanalyzed a 1 2 ! & 1 0 00417032 -unangry a 1 1 ! 1 0 00116463 -unanimated a 1 2 ! & 1 0 00119409 -unanimous a 2 2 & + 2 1 00553732 00784215 -unannealed a 1 1 & 1 0 01522214 -unannounced a 1 1 & 1 0 00930540 -unanswerable a 1 1 & 1 0 00591710 -unanswered a 1 1 & 1 1 01947127 -unanticipated a 1 1 & 1 0 00930765 -unapologetic a 1 1 ! 1 0 01632411 -unappareled a 1 1 & 1 0 00460157 -unapparent a 1 1 & 1 0 01620286 -unappealable a 1 1 ! 1 0 00133065 -unappealing a 2 3 ! & ; 2 0 02376562 00171044 -unappeasable a 1 1 & 1 0 01785341 -unappendaged a 1 1 ! 1 0 00133335 -unappetising a 1 3 ^ = + 1 0 00133851 -unappetizing a 1 4 ! ^ = + 1 0 00133851 -unappreciated a 2 1 & 2 0 02016145 00028867 -unappreciative a 1 1 & 1 0 01147300 -unapprehensive a 1 1 & 1 0 00081930 -unapproachable a 2 3 ! & + 2 0 00134401 00020410 -unarbitrary a 1 1 & 1 0 00720082 -unarguable a 1 1 & 1 0 00591406 -unargumentative a 1 2 ! & 1 0 00604399 -unarmed a 2 3 ! & ; 2 1 00142917 00145995 -unarmored a 2 3 ! & ; 2 0 00147528 00144728 -unarmoured a 2 2 & ; 2 0 00147528 00144728 -unarticulate a 1 2 & ^ 1 0 00151105 -unarticulated a 2 2 ! & 2 0 00153652 00152784 -unartistic a 1 1 & 1 0 00070839 -unary a 1 1 & 1 0 02215567 -unascertainable a 1 1 & 1 0 00739663 -unascribable a 1 1 = 1 0 00172452 -unashamed a 1 3 ! & ^ 1 0 00154965 -unasked a 1 1 & 1 1 01965512 -unassailable a 3 1 & 3 0 02526124 02510786 00591513 -unassertive a 1 4 ! & ^ + 1 0 00156839 -unassignable a 1 1 & 1 0 00094324 -unassigned a 1 1 ! 1 0 00847306 -unassisted a 2 2 ! & 2 1 02353488 02354129 -unassuming a 1 2 & + 1 0 01539444 -unassured a 1 1 & 1 0 02093802 -unasterisked a 1 1 & 1 1 01481282 -unattached a 3 3 ! & ; 3 1 00568881 00158407 00160288 -unattackable a 1 1 & 1 0 02526124 -unattainable a 1 2 & + 1 0 01824081 -unattended a 3 1 & 3 0 02350590 02251899 00308720 -unattired a 1 1 & 1 0 00460157 -unattractive a 3 5 ! & ^ = + 3 2 00169164 00171447 01359159 -unattributable a 1 2 ! = 1 0 00172452 -unauthentic a 1 1 & 1 1 01117677 -unauthorised a 2 3 & ^ = 2 0 00179486 01634199 -unauthorized a 2 4 ! & ^ = 2 1 00179486 01634199 -unavailable a 1 4 ! & = + 1 1 00185921 -unavailing a 1 1 & 1 1 02497471 -unavenged a 1 2 ! < 1 0 03147408 -unavoidable a 1 1 & 1 1 00343360 -unavowed a 3 1 & 3 0 02090228 00688855 00028984 -unawakened a 2 2 ! & 2 0 02014611 00189511 -unaware a 1 5 ! & ^ = + 1 1 00191603 -unawed a 1 2 ! & 1 0 02015055 -unbacked a 1 1 & 1 0 02353488 -unbaffled a 1 1 & 1 0 01767207 -unbalanced a 3 3 ! & ; 3 0 00894757 02075321 00893239 -unbalconied a 1 1 ! 1 0 00206127 -unbanded a 1 1 ! 1 0 00223119 -unbaptised a 1 0 1 0 02594443 -unbaptized a 1 1 ! 1 0 02594443 -unbarred a 1 1 & 1 0 02096382 -unbarreled a 1 1 ! 1 0 00206317 -unbarrelled a 1 0 1 0 00206317 -unbearable a 1 2 & ^ 1 0 02435671 -unbeatable a 2 1 & 2 0 02288252 00570322 -unbeaten a 1 1 & 1 0 00695335 -unbecoming a 1 2 & + 1 0 01880918 -unbefitting a 1 1 & 1 0 00136081 -unbeholden a 1 1 & 1 0 01617591 -unbeknown a 1 1 & 1 0 01377488 -unbeknownst a 1 1 & 1 0 01377488 -unbelievable a 2 3 & ^ = 2 1 00645493 01800169 -unbelieving a 3 1 & 3 0 01784217 01306087 00647247 -unbeloved a 1 1 & 1 0 01463414 -unbelted a 1 1 ! 1 0 00223683 -unbendable a 1 1 & 1 0 01990653 -unbending a 1 1 & 1 0 01029151 -unbeneficed a 1 1 ! 1 0 00208150 -unbent a 2 1 & 2 0 02311293 01237754 -unbiased a 2 1 & 2 0 01723856 00731725 -unbiassed a 2 1 & 2 0 01723856 00731725 -unbigoted a 1 1 & 1 0 02436551 -unbitter a 1 1 & 1 0 00117235 -unbleached a 1 1 & 1 0 01571181 -unblemished a 1 3 ! & ^ 1 0 00247013 -unblended a 1 2 ! & 1 0 01329616 -unblessed a 1 1 & 1 0 00671683 -unblinking a 2 1 & 2 0 00858780 00082034 -unbloody a 1 1 & 1 0 00249576 -unblushing a 1 1 & 1 0 00155720 -unbodied a 2 3 ! & ^ 2 0 00629146 00631040 -unbolted a 1 1 & 1 0 02096382 -unbooked a 1 1 & 1 0 01988934 -unbordered a 1 1 ! 1 0 00259256 -unborn a 1 2 ! & 1 1 01733661 -unbound a 3 3 ! & ^ 3 0 00257462 00254152 01058756 -unbounded a 1 2 & + 1 1 01007657 -unbowed a 2 1 & 2 0 01237754 00695432 -unbraced a 1 1 & 1 0 02352572 -unbrainwashed a 1 1 ! 1 0 00629808 -unbranched a 1 1 & 1 0 00614868 -unbranching a 1 1 & 1 0 00614868 -unbranded a 1 1 ! 1 0 01481513 -unbreakable a 1 4 ! & = + 1 1 00709744 -unbridgeable a 1 1 ! 1 0 00278418 -unbridled a 1 1 & 1 0 02001596 -unbroken a 5 5 ! & ^ = ; 5 2 00290923 02389719 01833226 00289799 00289365 -unbrushed a 1 1 & 1 0 02428884 -unburdened a 2 2 ! & 2 0 00870303 00869138 -unburied a 1 1 ! 1 0 00292872 -unburnished a 1 1 & 1 0 01813289 -unbuttoned a 2 2 ! & 2 1 00297097 02001776 -uncalled-for a 2 1 & 2 0 02528809 01582049 -uncamphorated a 1 1 ! 1 0 00306232 -uncanny a 2 1 & 2 1 01575424 01677733 -uncapped a 1 1 & 1 0 00655668 -uncarbonated a 1 1 & 1 0 02277182 -uncared-for a 1 2 ! & 1 0 00308593 -uncaring a 2 1 & 2 0 01467046 00639594 -uncarpeted a 1 1 ! 1 0 00316477 -uncarved a 1 1 ! 1 0 00317821 -uncastrated a 1 2 ! & 1 0 02137305 -uncategorised a 1 1 & 1 0 00415116 -uncategorized a 1 1 & 1 0 00415116 -uncaulked a 1 1 ! 1 0 01399671 -uncaused a 1 1 & 1 1 01339203 -unceasing a 2 1 & 2 0 01755024 00595299 -uncensored a 1 2 ! & 1 0 00319262 -unceremonial a 1 1 & 1 0 01045067 -unceremonious a 2 2 & + 2 0 01045067 00641036 -uncertain a 7 5 ! & ^ = + 7 2 00337404 00336168 02087450 00341405 02504558 00725522 00103567 -uncertified a 1 1 ! 1 1 00342902 -unchained a 1 1 & 1 0 00254296 -unchallengeable a 1 1 & 1 0 00602888 -unchallenged a 1 1 & 1 0 00603039 -unchangeable a 1 5 ! & ^ = + 1 1 00346991 -unchanged a 2 3 ! & ^ 2 2 00355258 00353206 -unchanging a 2 2 & + 2 0 00577782 00348018 -uncharacteristic a 1 2 ! ^ 1 0 00357983 -uncharged a 1 3 ! & ; 1 1 00358951 -uncharitable a 1 2 ! ^ 1 0 00359862 -uncharted a 1 1 & 1 0 01377257 -unchartered a 1 1 ! 1 0 00360235 -unchaste a 1 4 ! & ^ = 1 0 00361509 -uncheckable a 1 1 & 1 1 01475733 -unchecked a 1 1 & 1 0 02001596 -uncheerful a 1 4 & ^ = + 1 0 00364479 -unchewable a 1 1 & 1 0 02446239 -unchivalrous a 1 1 & 1 0 00640931 -unchristian a 1 2 ! & 1 0 00411481 -unchristianly a 1 1 & 1 0 00411694 -unchristlike a 1 1 & 1 0 00411694 -uncial a 1 2 \ + 1 0 02819988 -uncivil a 1 2 ! = 1 0 00642725 -uncivilised a 1 1 & 1 0 00412788 -uncivilized a 1 1 & 1 0 00412788 -unclad a 1 1 & 1 0 00460157 -unclaimed a 1 1 & 1 1 02528921 -unclassifiable a 1 1 & 1 0 01273604 -unclassified a 2 2 ! & 2 0 00416415 00415002 -unclean a 2 6 ! & ^ = + ; 2 1 00419289 00427786 -uncleanly a 1 2 & + 1 0 00423689 -unclear a 3 5 ! & ^ = + 3 0 00698088 00430191 01405523 -uncleared a 1 3 ! & ^ 1 0 01290333 -unclimbable a 2 1 & 2 0 02083516 01725422 -unclipped a 1 1 & 1 0 02455188 -unclogged a 1 1 & 1 0 01623088 -unclothed a 1 3 ! & ^ 1 0 00457598 -unclouded a 4 2 & + 4 1 01906464 00460946 00435374 00432861 -uncluttered a 1 1 & 1 0 02424095 -uncoated a 1 1 ! 1 0 01699982 -uncoerced a 1 1 & 1 0 02521036 -uncoiled a 1 2 ! & 1 0 02318272 -uncollected a 1 2 ! < 1 0 03148137 -uncollectible a 1 1 & 1 0 02500050 -uncolored a 2 4 ! & ^ = 2 0 00401650 01571181 -uncoloured a 1 3 & ^ = 1 0 00401650 -uncolumned a 1 1 & 1 0 00141522 -uncombable a 1 1 & 1 1 02429377 -uncombed a 1 2 ! & 1 0 02429182 -uncombined a 1 2 ! & 1 0 01330786 -uncomely a 1 1 & 1 0 01880918 -uncomfortable a 2 5 ! & ^ = + 2 2 00479933 00478015 -uncommercial a 1 1 & 1 0 00484782 -uncommercialised a 1 1 & 1 0 00484932 -uncommercialized a 1 1 & 1 0 00484932 -uncommitted a 3 2 ! & 3 0 00518716 00158407 01062631 -uncommon a 2 5 ! & ^ = + 2 1 00487653 01678112 -uncommunicative a 1 4 ! & ^ + 1 0 00500569 -uncomparable a 1 2 & ^ 1 0 00504592 -uncompartmented a 1 1 ! 1 0 00329268 -uncompassionate a 1 3 ! & ^ 1 0 00507053 -uncompensated a 1 1 & 1 0 01710946 -uncompetitive a 1 1 & 1 0 00513716 -uncomplaining a 1 2 ! ^ 1 0 00514278 -uncomplete a 1 3 & ^ = 1 0 00523978 -uncompleted a 2 2 & ; 2 0 01004541 00525315 -uncomplicated a 2 1 & 2 0 02175980 00750296 -uncomplimentary a 2 3 ! & ^ 2 0 00908315 00906455 -uncompounded a 1 1 & 1 0 01330890 -uncomprehended a 1 1 & 1 0 01379251 -uncomprehending a 1 1 & 1 0 00772776 -uncomprehensible a 1 2 & ^ 1 0 00533851 -uncompromising a 1 2 ! & 1 1 01025913 -unconcealed a 1 3 ! & ^ 1 0 02090341 -unconcerned a 3 3 ! & ^ 3 2 00545015 02460099 01516961 -unconditional a 3 3 ! & ^ 3 1 00556709 01913931 00730082 -unconditioned a 2 3 ! & ^ 2 0 01637184 00556709 -unconfessed a 1 2 & + 1 0 00029108 -unconfined a 2 3 ! & ^ 2 0 00559425 01063638 -unconfirmed a 1 2 ! & 1 0 01634851 -unconformable a 1 1 & 1 0 00578831 -unconformist a 1 0 1 0 00610249 -unconfused a 1 1 & 1 0 01767207 -uncongenial a 3 4 ! & ^ + 3 0 00561036 01243373 00508924 -unconnected a 3 5 ! & ^ = + 3 0 00567593 01972712 00465221 -unconquerable a 2 3 ! & ^ 2 1 00569568 02357322 -unconquered a 1 1 & 1 1 00695335 -unconscientious a 1 3 ! & + 1 0 02086356 -unconscionable a 2 1 & 2 0 02086472 01534282 -unconscious a 3 4 ! & ^ + 3 3 00571643 02521998 00192332 -unconsecrated a 1 1 & 1 0 02054926 -unconsidered a 1 1 & 1 0 02420757 -unconsolable a 1 1 & 1 0 01232298 -unconsolidated a 1 1 & 1 0 00503876 -unconstipated a 1 2 ! & 1 0 00638501 -unconstitutional a 1 1 ! 1 1 00180211 -unconstrained a 1 1 & 1 0 01063753 -unconstricted a 1 2 ! & 1 0 01449184 -unconstructive a 1 1 & 1 0 01198356 -unconsumed a 1 1 & 1 0 00926802 -unconsummated a 1 1 ! 1 0 00552168 -uncontaminated a 2 2 ! & 2 0 01909718 01907711 -uncontaminating a 1 0 1 0 00426347 -uncontested a 1 2 ! < 1 0 03148487 -uncontrived a 1 2 & ^ 1 0 01799035 -uncontrollable a 4 1 & 4 1 02452789 01475526 00635752 00600540 -uncontrolled a 1 3 ! & ^ 1 0 00599821 -uncontroversial a 1 2 ! & 1 0 00602721 -unconventional a 3 5 ! & ^ = + 3 1 00606602 00608421 01961410 -unconverted a 1 1 & 1 0 01957942 -unconvertible a 1 2 & = 1 0 00917207 -unconvinced a 1 2 ! & 1 0 00338551 -unconvincing a 2 3 ! & ^ 2 1 00615457 01800169 -uncooked a 1 1 & 1 0 00619808 -uncool a 1 2 & ; 1 0 01129533 -uncooperative a 2 3 ! & ^ 2 1 00620585 00021592 -uncoordinated a 2 1 & 2 0 01671336 00064176 -uncordial a 1 1 & 1 0 01077362 -uncorrectable a 1 1 & 1 0 00635752 -uncorrected a 2 2 ! & 2 0 00634636 01902313 -uncorrelated a 1 1 & 1 0 01975059 -uncorroborated a 1 1 & 1 0 02353599 -uncorrupted a 3 2 & ; 3 0 01751940 00623261 00623105 -uncounted a 1 1 & 1 0 00301951 -uncoupled a 1 1 & 1 0 00568959 -uncousinly a 1 1 ! 1 1 00453647 -uncouth a 1 2 & + 1 0 01950198 -uncovered a 1 1 & 1 0 00459330 -uncrannied a 1 1 ! 1 0 00466725 -uncreased a 1 1 & 1 0 02237303 -uncreative a 1 5 ! & ^ = + 1 0 00644372 -uncritical a 2 2 ! ^ 2 1 00650351 00648816 -uncropped a 1 1 & 1 0 01832707 -uncrossed a 2 1 ! 2 0 00653434 00653190 -uncrowded a 1 1 ! 1 0 00560453 -uncrowned a 2 3 ! & ; 2 0 00655445 00654829 -uncrystallised a 2 1 & 2 0 00657064 00269580 -uncrystallized a 2 2 ! & 2 0 00657064 00269580 -unctuous a 1 2 & + 1 0 02181432 -uncultivable a 1 1 & 1 0 01833939 -uncultivatable a 1 1 & 1 0 01833939 -uncultivated a 3 2 ! & 3 0 01833791 01949740 01334075 -uncultured a 1 1 & 1 0 01949740 -uncurbed a 1 1 & 1 0 02001596 -uncured a 1 1 & 1 0 01495298 -uncurled a 2 1 & 2 0 02318372 01031038 -uncurtained a 1 0 1 0 00672079 -uncurved a 1 1 & 1 0 02314919 -uncurving a 1 1 & 1 0 02314919 -uncut a 7 3 ! & ; 7 0 02455069 01566288 00664167 00663104 00662687 01319583 00005107 -undamaged a 1 3 ! & ^ 1 1 00681094 -undatable a 1 2 ! & 1 0 00681548 -undated a 1 1 & 1 0 00681673 -undaunted a 2 1 & 2 2 01991783 00264459 -undeceived a 1 1 & 1 0 00866182 -undecided a 3 1 & 3 0 02130821 00686356 00519103 -undecipherable a 1 1 & 1 0 01405523 -undeciphered a 1 1 ! 1 0 01405797 -undeclared a 1 2 ! & 1 1 00688581 -undecomposable a 1 1 & 1 0 02175684 -undecomposed a 1 1 & 1 0 01068306 -undecorated a 1 2 & ^ 1 0 00060397 -undedicated a 1 1 ! 1 0 00520081 -undefeated a 1 3 ! & ^ 1 0 00695024 -undefendable a 1 1 & 1 0 02523664 -undefended a 1 1 & 1 0 02523664 -undeferential a 1 1 & 1 0 01996288 -undefiled a 2 2 & ; 2 0 01905140 01751940 -undefinable a 1 1 & 1 0 00697691 -undefined a 1 3 ! & ^ 1 0 00697389 -undelineated a 1 2 ! & 1 0 01715574 -undemanding a 1 3 ! & ^ 1 0 00711528 -undemocratic a 1 2 ! & 1 0 00717417 -undemonstrative a 1 3 ! & ^ 1 0 00720913 -undeniable a 1 3 ! & ^ 1 1 00721505 -undenominational a 1 1 & 1 0 02093134 -undependable a 2 4 ! & ^ + 2 0 00724861 00964590 -undepicted a 1 1 & 1 1 01715708 -under a 2 1 & 2 2 01207546 00793682 -under-the-counter a 1 1 & 1 0 01404482 -under-the-table a 1 1 & 1 0 01707531 -under_attack a 1 1 & 1 0 02524900 -under_fire a 1 1 & 1 1 02524900 -under_the_weather a 1 1 & 1 0 02542325 -under_wraps a 1 1 & 1 0 01708049 -underactive a 1 1 & 1 0 00034232 -underage a 2 2 & ; 2 0 01471954 00727481 -underarm a 1 1 ; 1 0 02470531 -underbred a 2 1 & 2 0 01950857 01904596 -underclass a 1 1 & 1 0 01865043 -underclothed a 1 1 & 1 0 00459443 -undercoated a 1 2 & ; 1 0 02053631 -undercover a 1 1 & 1 1 01706465 -underdeveloped a 2 1 & 2 1 01302544 01491691 -underdone a 1 1 & 1 0 00619601 -underdressed a 1 1 & 1 0 00457258 -undereducated a 1 1 & 1 1 00831603 -underemployed a 1 1 & 1 0 01090061 -underfed a 1 1 & 1 0 02301180 -underground a 2 2 & + 2 1 02471984 01706465 -underhand a 2 3 ! & ; 2 0 02470531 02319346 -underhanded a 2 2 & ; 2 1 02319346 02470531 -underhung a 2 1 & 2 0 02351988 01354581 -underivative a 1 1 & 1 0 01688154 -underived a 1 2 ! & 1 0 00699085 -underlying a 3 1 & 3 1 00941940 02349604 01856419 -undermanned a 1 1 & 1 0 00052431 -undermentioned a 1 1 & 1 0 00127815 -undernourished a 1 1 & 1 0 02301180 -underpopulated a 1 1 & 1 0 01312567 -underprivileged a 1 3 ! & ^ 1 1 01864471 -undersea a 1 1 & 1 1 02472137 -undersealed a 1 2 & ; 1 0 02053631 -undersexed a 1 1 & 1 0 02135290 -undershot a 1 1 & 1 0 01354581 -undersize a 1 1 & 1 0 01395229 -undersized a 1 1 & 1 0 01395229 -underslung a 3 1 & 3 0 02352153 01354581 01207697 -understaffed a 1 1 & 1 0 00052431 -understandable a 1 2 & + 1 1 00533452 -understanding a 1 1 & 1 1 01745946 -understated a 1 1 & 1 0 02393220 -understood a 2 2 ! & 2 2 01378219 00942163 -underwater a 2 2 & ; 2 1 02472252 00124685 -underway a 1 1 & 1 1 00666784 -underweight a 1 1 & 1 0 00990192 -undescended a 1 1 \ 1 0 03143018 -undescriptive a 1 1 ! 1 0 00732872 -undeserved a 1 1 & 1 0 01371646 -undeserving a 1 1 & 1 0 02588421 -undesigned a 1 1 ! 1 0 01340147 -undesirable a 2 4 ! & ^ + 2 1 00733905 00853473 -undesired a 1 1 & 1 0 02529047 -undesiring a 1 0 1 0 00889334 -undesirous a 1 1 ! 1 0 00889334 -undestroyable a 2 1 & 2 0 01754049 00738503 -undetectable a 2 1 & 2 0 02518852 01748936 -undetected a 1 2 ! & 1 0 01609900 -undeterminable a 1 2 & ^ 1 0 00739273 -undetermined a 3 3 ! & ^ 3 0 01610803 00740336 02130821 -undeterred a 1 1 & 1 0 01991961 -undeveloped a 2 2 ! & 2 1 00742425 00942871 -undeviating a 2 1 & 2 0 00761844 00724720 -undiagnosable a 1 1 & 1 0 01273689 -undiagnosed a 1 1 & 1 0 01377721 -undifferentiated a 1 2 ! & 1 1 00744506 -undigested a 2 1 & 2 1 01379361 01183348 -undignified a 1 3 ! & ^ 1 0 00752392 -undiluted a 1 2 ! & 1 1 00756728 -undiminished a 1 1 & 1 1 01521017 -undimmed a 1 1 ! 1 0 00284930 -undiplomatic a 1 1 ! 1 0 00759458 -undirected a 1 1 & 1 0 01910652 -undiscerning a 1 3 ! & ^ 1 0 00772360 -undischarged a 2 1 & 2 0 01710543 01424706 -undisciplined a 3 1 & 3 0 01913089 01902313 00601499 -undisclosed a 1 1 & 1 0 01708164 -undiscouraged a 1 1 & 1 0 01991961 -undiscoverable a 1 1 & 1 0 00739663 -undiscovered a 2 1 & 2 0 01610126 01377819 -undiscriminating a 1 3 ! & ^ 1 0 00775900 -undisguised a 1 1 & 1 1 01705418 -undismayed a 1 1 & 1 0 01991783 -undisputable a 1 1 & 1 0 00721636 -undisputed a 1 1 & 1 1 00603039 -undissolved a 1 1 & 1 0 01507008 -undistinguishable a 1 0 1 0 00582876 -undistinguished a 1 1 & 1 0 01288298 -undistorted a 1 1 & 1 0 01310545 -undistributed a 1 1 & 1 0 00784411 -undisturbed a 1 1 & 1 0 02460262 -undiversified a 1 3 ! & ^ 1 0 00783675 -undividable a 1 2 & ; 1 0 00786031 -undivided a 4 1 & 4 0 02478383 02153359 00539389 00516360 -undoable a 1 1 & 1 0 01824081 -undocumented a 1 2 ! & 1 0 00786790 -undogmatic a 1 2 & ; 1 0 00287275 -undogmatical a 1 2 & ; 1 0 00287275 -undomestic a 1 3 ! & = 1 0 01039843 -undomesticated a 2 1 & 2 0 02389833 01040087 -undone a 4 1 & 4 1 01004818 02334321 02096604 01670037 -undrained a 1 1 ! 1 0 01089027 -undramatic a 1 3 ! & = 1 0 00795495 -undraped a 2 1 & 2 0 02508669 01698903 -undrawn a 1 1 & 1 0 01715790 -undreamed a 1 1 & 1 0 00646276 -undreamed_of a 1 1 & 1 0 00646276 -undreamt a 1 1 & 1 0 00646276 -undreamt_of a 1 1 & 1 0 00646276 -undressed a 2 1 & 2 0 01006136 00460157 -undried a 1 1 & 1 0 02551069 -undrinkable a 1 1 ! 1 1 00797218 -undue a 4 3 ! & ; 4 2 00137641 00137943 01945350 01533974 -undulant a 1 1 \ 1 0 03143155 -undulate a 1 1 & 1 0 02245223 -undulatory a 1 1 \ 1 0 03143155 -undutiful a 1 2 & + 1 0 01995863 -undyed a 1 1 & 1 0 01571181 -undying a 1 1 & 1 0 01558194 -undynamic a 1 2 ! & 1 0 00810481 -uneager a 1 2 ! & 1 0 00811820 -unearned a 1 2 ! & 1 0 00821723 -unearthly a 2 1 & 2 0 02579136 01575424 -uneasy a 5 4 ! & ^ + 5 1 00822449 01922562 02456157 00480439 00479073 -uneatable a 1 2 & ^ 1 0 00829496 -uneconomic a 1 1 & 1 0 02422592 -uneconomical a 2 1 & 2 1 00841159 02422592 -unedifying a 1 1 ! 1 0 01325691 -unedited a 1 1 & 1 0 00353812 -uneducated a 1 3 ! & ^ 1 0 00830717 -uneffective a 1 3 & ^ = 1 0 00835609 -unelaborate a 1 1 & 1 0 01793557 -unelaborated a 1 1 & 1 0 00525105 -unembarrassed a 1 1 & 1 0 00155886 -unembellished a 1 1 & 1 0 00060605 -unembodied a 1 1 & 1 0 00631040 -unemotional a 2 5 ! & ^ = + 2 0 00856860 00721050 -unemphatic a 1 1 & 1 0 02320680 -unemployable a 1 1 ! 1 0 00865331 -unemployed a 1 3 ! & ^ 1 1 00864693 -unenclosed a 1 2 ! & 1 0 01658814 -unencouraging a 1 1 & 1 0 00867841 -unencumbered a 2 2 ! & 2 0 00868988 00870481 -unended a 1 1 & 1 0 01004932 -unending a 1 1 & 1 1 01755024 -unendowed a 1 2 ! & 1 0 00671441 -unendurable a 1 2 & ^ 1 0 02435671 -unenergetic a 1 1 & 1 0 00885594 -unenforceable a 1 1 ! 1 0 00557304 -unenforced a 1 1 ! 1 0 00557637 -unengaged a 2 1 & 2 0 00295507 00158546 -unenlightened a 2 3 ! & ^ 2 0 00884286 01309657 -unenlightening a 2 1 ! 2 0 01326013 01325691 -unenlivened a 1 1 ! 1 0 00120132 -unenrgetic a 1 2 & ^ 1 0 00875712 -unenterprising a 1 3 ! & ^ 1 0 00885415 -unenthusiastic a 1 3 ! & ^ 1 1 00887062 -unentitled a 1 1 & 1 0 00853631 -unenviable a 2 1 & 2 0 00746047 00734187 -unequal a 2 4 ! & ^ = 2 0 00892379 00051696 -unequal_to a 1 1 & 1 0 00052246 -unequaled a 1 1 & 1 0 00505853 -unequalised a 1 1 & 1 0 00893347 -unequalized a 1 1 & 1 0 00893347 -unequalled a 1 1 & 1 0 00505853 -unequipped a 1 2 ! & 1 0 01095555 -unequivocal a 2 4 ! & ^ + 2 0 00896555 00940969 -unerasable a 1 1 & 1 0 00898488 -unerect a 1 3 ! & = 1 0 01237897 -unerring a 1 1 & 1 1 00965359 -unessential a 1 3 & ^ = 1 0 00902652 -unestablished a 1 2 ! & 1 0 01636757 -unethical a 1 2 ! ^ 1 0 00905728 -uneven a 5 5 ! & ^ = + 5 2 00911327 00892773 00913454 02305651 00578662 -uneventful a 1 1 ! 1 0 00804502 -unexacting a 1 1 & 1 0 00712314 -unexampled a 1 1 & 1 0 00128733 -unexceeded a 1 1 & 1 0 00229371 -unexcelled a 1 1 & 1 0 00229371 -unexceptionable a 1 1 & 1 0 00018222 -unexceptional a 1 1 & 1 0 01674926 -unexchangeable a 2 4 ! & = + 2 0 00918491 00917207 -unexcitable a 1 2 ! & 1 0 00919321 -unexcited a 1 2 ! ^ 1 0 00920881 -unexciting a 2 4 ! & ^ = 2 0 02307367 00922594 -unexclusive a 1 1 & 1 0 01862296 -unexcused a 1 1 & 1 0 02366618 -unexhausted a 1 2 ! & 1 0 00926348 -unexpansive a 2 2 ! & 2 0 00947680 02000559 -unexpected a 1 4 ! & ^ + 1 1 00930290 -unexpendable a 1 2 ! ^ 1 0 00933032 -unexpended a 2 1 & 2 0 00926871 00926505 -unexpired a 1 2 ! & 1 0 00938441 -unexplainable a 1 1 & 1 1 00940108 -unexplained a 2 1 & 2 2 01610952 00940314 -unexploded a 1 1 & 1 0 01424706 -unexploited a 1 2 ! & 1 0 00942871 -unexplorative a 1 0 1 0 00878704 -unexploratory a 1 0 1 0 00878704 -unexplored a 1 1 & 1 1 01377819 -unexportable a 1 1 ! 1 0 00877263 -unexpressed a 1 1 & 1 0 00942380 -unexpressible a 1 1 & 1 0 00943999 -unexpressive a 1 1 & 1 0 00501313 -unexpurgated a 1 1 & 1 0 00319389 -unextended a 1 1 ! 1 0 01432605 -unfaceted a 1 1 ! 1 0 02591594 -unfading a 1 1 & 1 0 01558086 -unfailing a 3 1 & 3 0 00965176 00925985 00583842 -unfair a 1 5 ! & ^ = + 1 1 00957176 -unfaithful a 4 5 ! & ^ = + 4 1 00959731 00960971 00962939 00024139 -unfaltering a 1 1 & 1 1 01990653 -unfamiliar a 1 5 ! & ^ = + 1 1 00966477 -unfamiliar_with a 1 1 & 1 0 00966960 -unfashionable a 1 3 ! & ^ 1 0 00973844 -unfastened a 4 3 ! & ^ 4 1 02096213 01652380 00297097 00254983 -unfastidious a 2 3 ! ^ ; 2 0 00985909 00985387 -unfathomable a 3 3 ! & ^ 3 0 00994882 00690683 00534827 -unfathomed a 1 1 & 1 0 00691141 -unfattened a 1 1 & 1 0 01006284 -unfavorable a 3 4 ! & ^ + 3 1 00996448 00995468 01129644 -unfavourable a 3 3 & ^ + 3 0 00996448 00995468 01129644 -unfearing a 1 1 & 1 0 00250119 -unfeasible a 1 2 & + 1 0 01823574 -unfeathered a 2 2 ! & 2 0 00999330 01096648 -unfed a 2 1 & 2 0 02301430 01099435 -unfeeling a 2 2 & + 2 0 00507292 00117961 -unfeigned a 1 1 & 1 0 02180277 -unfeminine a 1 1 & 1 0 01485971 -unfenced a 1 1 & 1 0 01659277 -unfermented a 1 1 & 1 0 02370083 -unfertile a 1 3 & ^ = 1 1 01002377 -unfertilised a 1 1 & 1 0 01002911 -unfertilized a 1 1 & 1 0 01002911 -unfettered a 1 1 & 1 1 00254296 -unfilled a 1 2 ! < 1 0 03149843 -unfilmed a 1 1 & 1 0 01422863 -unfinished a 3 3 ! & ^ 3 0 01005675 01004318 01714157 -unfirm a 2 1 & 2 0 01061310 00503664 -unfit a 3 4 ! & ^ + 3 1 01021301 01017738 01174222 -unfitting a 1 1 & 1 1 00562909 -unfixed a 2 3 ! & ^ 2 1 01060785 00702245 -unflagging a 2 1 & 2 0 00874920 00583842 -unflappable a 1 1 & 1 0 00530047 -unflattering a 1 1 ! 1 0 00908315 -unflavored a 1 1 & 1 0 02400002 -unflavoured a 1 1 & 1 0 02400002 -unflawed a 1 1 & 1 0 01751080 -unfledged a 3 2 ! & 3 0 01096471 00999671 00936998 -unflinching a 1 1 & 1 0 00082034 -unfluctuating a 1 1 & 1 0 02291336 -unflurried a 1 1 & 1 0 00531087 -unflustered a 1 1 & 1 0 00531087 -unfocused a 2 2 ! & 2 0 00782957 00542775 -unfocussed a 2 1 & 2 0 00782957 00542775 -unforbearing a 1 1 & 1 0 01737698 -unforced a 2 1 & 2 0 02521036 00838659 -unforceful a 1 1 & 1 0 00842914 -unforeseeable a 1 1 & 1 0 01842643 -unforeseen a 1 1 & 1 1 00930765 -unforesightful a 1 1 & 1 0 01896046 -unforested a 1 1 & 1 0 02575138 -unforethoughtful a 1 1 & 1 0 01896396 -unforfeitable a 1 1 & 1 0 00694483 -unforgettable a 1 2 ! & 1 1 01040410 -unforgivable a 1 1 & 1 0 01721867 -unforgiving a 2 2 ! & 2 0 01041481 01785341 -unformed a 2 2 ! & 2 0 02151705 01671509 -unfortunate a 3 5 ! & ^ = + 3 2 01049462 00176838 01001547 -unfounded a 1 1 & 1 0 02353211 -unframed a 1 1 ! 1 0 01096889 -unfree a 2 4 ! & ^ = 2 0 01066070 01064286 -unfrequented a 1 1 & 1 0 01313649 -unfretted a 1 3 ! \ ; 1 0 02731953 -unfriendly a 4 6 ! & ^ = + ; 4 0 01078178 01076793 01246388 01243373 -unfrightened a 1 1 & 1 0 00082160 -unfrosted a 1 1 & 1 1 00432998 -unfrozen a 1 3 ! & ^ 1 1 01079683 -unfruitful a 1 3 ! & ^ 1 0 01082535 -unfueled a 1 2 ! & 1 0 01099235 -unfulfilled a 1 1 & 1 0 02335393 -unfunctional a 1 1 & 1 0 01837487 -unfunded a 1 1 ! 1 0 01098390 -unfunny a 1 1 & 1 0 01268937 -unfurnished a 1 1 ! 1 0 01098154 -unfurrowed a 1 1 ! 1 0 02244472 -ungainly a 2 2 & + 2 1 01140896 02564023 -ungallant a 1 1 & 1 0 00640931 -ungarbed a 1 1 & 1 0 00460157 -ungarmented a 1 1 & 1 0 00460157 -ungathered a 1 2 ! < 1 0 03148137 -ungeared a 1 2 ! & 1 0 01101118 -ungenerous a 2 4 ! & ^ = 2 0 01115081 01112573 -ungentle a 1 1 & 1 0 01593480 -ungentlemanlike a 1 1 & 1 0 01951456 -ungentlemanly a 1 1 & 1 0 01951456 -ungetatable a 1 2 & ; 1 0 00020647 -unglamorous a 1 1 & 1 0 00922840 -unglamourous a 1 1 & 1 0 00922840 -unglazed a 2 2 ! & 2 0 01120766 01120398 -ungodly a 1 2 & + 1 1 02514543 -ungovernable a 1 1 & 1 0 01475526 -ungoverned a 2 1 & 2 0 02001596 00601499 -ungraceful a 1 2 & + 1 0 01141242 -ungracious a 2 4 ! & ^ + 2 0 01142349 00642152 -ungraded a 2 1 & 2 0 01289480 01204443 -ungrammatical a 1 2 ! & 1 0 01146207 -ungrasped a 1 1 & 1 0 01379562 -ungrateful a 2 3 ! & + 2 1 01147044 01804906 -ungratified a 1 1 & 1 0 00590271 -ungratifying a 1 1 & 1 0 02016145 -ungreased a 1 0 1 0 02236757 -ungregarious a 3 5 ! & ^ = ; 3 0 02253655 02253065 02259120 -ungroomed a 1 3 ! & ^ 1 0 02428377 -ungrudging a 1 1 & 1 0 01114973 -ungual a 1 1 \ 1 0 02840711 -unguaranteed a 1 1 & 1 0 02095193 -unguarded a 2 1 & 2 0 02525058 00163480 -unguiculate a 1 3 ! & + 1 0 02489745 -unguiculated a 1 1 & 1 0 02489745 -unguided a 1 1 ! 1 0 01429359 -ungulate a 1 3 ! & + 1 0 02489485 -ungulated a 1 1 & 1 0 02489485 -ungummed a 1 1 & 1 0 00055256 -ungusseted a 1 1 ! 1 0 00210371 -unhallowed a 1 2 & = 1 0 02054779 -unhampered a 2 1 & 2 0 02001984 01063958 -unhappy a 4 5 ! & ^ = + 4 2 01149494 00909363 01805064 01051814 -unhardened a 1 1 & 1 0 01522038 -unharmed a 1 1 & 1 0 01319712 -unharmonious a 1 2 & ^ 1 0 01164072 -unhatched a 1 1 & 1 0 01733784 -unhazardous a 1 1 & 1 0 02058529 -unheaded a 1 1 ! 1 0 01184825 -unhealed a 1 1 & 1 0 02547131 -unhealthful a 3 4 ! & ^ + 3 0 02113449 01167817 02559534 -unhealthy a 3 5 ! & ^ = + 3 1 01172889 02559534 01168845 -unhearable a 1 3 & ^ = 1 0 00174379 -unheard a 1 1 & 1 0 00175435 -unheard-of a 1 1 & 1 0 01377933 -unhearing a 1 1 & 1 0 00682521 -unheated a 1 1 & 1 1 01254296 -unheeded a 1 1 & 1 1 01608656 -unheeding a 1 2 & = 1 1 01193714 -unhelpful a 1 4 ! & ^ + 1 0 01198019 -unheralded a 1 1 & 1 0 00930540 -unhesitating a 1 1 & 1 0 00685924 -unhewn a 1 1 & 1 0 01006386 -unhindered a 1 1 & 1 0 02001984 -unhinged a 1 1 & 1 0 02075321 -unholy a 3 4 ! & = + 3 2 02054779 01132515 02037531 -unhomogenised a 1 1 & 1 0 01329719 -unhomogenized a 1 1 & 1 0 01329719 -unhoped a 1 1 & 1 0 00931070 -unhoped-for a 1 1 & 1 0 00931070 -unhopeful a 1 1 & 1 0 01229435 -unhuman a 1 1 & 1 0 01260584 -unhumorous a 1 1 & 1 0 01268426 -unhurried a 2 3 ! & + 2 1 01271700 01737084 -unhurt a 2 1 & 2 1 01319712 02058656 -unhygienic a 1 1 & 1 0 02113672 -uniate a 1 1 \ 1 0 02820153 -unicameral a 1 1 ! 1 0 00233353 -unicellular a 1 1 \ 1 0 02820395 -unicuspid a 1 1 & 1 0 02049812 -unidentifiable a 1 2 ! & 1 0 01273143 -unidentified a 2 1 & 2 0 01378088 00120784 -unidimensional a 1 1 ! 1 0 00659715 -unidirectional a 1 2 ! & 1 0 00234106 -unifacial a 1 1 & 1 0 00234733 -unified a 2 1 & 2 1 02477557 01328229 -unifilar a 1 1 \ 1 0 02728444 -unifoliate a 1 1 & 1 0 01703417 -uniform a 4 3 ! & + 4 2 01966488 01200095 00744506 01960310 -uniformed a 1 1 & 1 1 00457355 -unifying a 2 1 & 2 0 01331540 00334852 -unilateral a 2 2 ! & 2 1 00236989 01417105 -unilluminated a 1 1 & 1 0 00275985 -unilluminating a 1 0 1 0 01326013 -unimaginable a 1 1 & 1 1 02418692 -unimaginative a 3 1 & 3 1 00644560 01836025 00607977 -unimagined a 1 1 & 1 0 00646276 -unimodal a 1 2 ! ; 1 0 00240323 -unimpaired a 1 2 ! ^ 1 1 01275395 -unimpassioned a 1 1 & 1 1 01727741 -unimpeachable a 3 1 & 3 1 01918873 01320705 00018222 -unimpeded a 1 1 & 1 0 01622908 -unimportant a 2 5 ! & ^ = + 2 1 01279978 02164402 -unimposing a 1 1 & 1 1 01286659 -unimpregnated a 1 1 & 1 0 01002911 -unimpressed a 1 1 & 1 1 00072673 -unimpressionable a 1 1 ! 1 0 02365264 -unimpressive a 1 3 ! & ^ 1 1 01286539 -unimprisoned a 1 1 & 1 0 01063638 -unimproved a 2 2 ! & 2 1 01289229 01290547 -unincorporated a 1 1 & 1 0 01671620 -unindustrialised a 1 1 & 1 0 01302699 -unindustrialized a 1 1 & 1 0 01302699 -uninebriated a 1 1 & 1 0 00800159 -uninfected a 1 1 & 1 0 02116473 -uninflected a 3 3 ! & ; 3 0 00700312 00699876 00111415 -uninfluenced a 1 1 & 1 0 00072790 -uninfluential a 1 1 ! 1 0 01830871 -uninformative a 1 2 ! & 1 0 01305607 -uninformed a 1 3 ! & ^ 1 0 01308425 -uninhabitable a 1 1 & 1 0 01424156 -uninhabited a 1 2 ! & 1 0 01312739 -uninhibited a 1 3 ! & ^ 1 0 01317012 -uninitiate a 1 2 & + 1 0 00937341 -uninitiated a 1 1 & 1 1 00937341 -uninjectable a 1 2 ! ; 1 1 01317831 -uninjured a 1 3 ! & ^ 1 0 01319182 -uninominal a 1 2 & ; 1 0 02215769 -uninquiring a 2 2 ! & 2 0 00880120 00665962 -uninquisitive a 2 1 & 2 0 00880120 00665962 -uninspired a 2 1 & 2 0 00923066 00644560 -uninspiring a 1 1 ! 1 0 01323334 -uninstructed a 1 1 & 1 0 01309657 -uninstructive a 1 1 ! 1 0 01325372 -uninsurable a 1 1 & 1 0 02097152 -uninsured a 1 2 ! & 1 0 02097029 -unintegrated a 2 2 & ^ 2 0 01329007 01326917 -unintelligent a 1 4 ! & ^ = 1 1 01336587 -unintelligible a 2 4 ! & ^ + 2 0 01337121 00535293 -unintended a 1 4 ! & ^ = 1 1 01338730 -unintentional a 2 1 & 2 0 02566644 01339492 -uninterested a 2 2 ! & 2 0 01342759 00665829 -uninteresting a 2 5 ! & ^ = + 2 0 01344963 01231638 -uninterrupted a 2 3 & ^ = 2 1 00291338 00594413 -unintimidated a 1 1 & 1 0 00082034 -unintoxicated a 1 1 & 1 0 00800159 -unintrusive a 1 2 ! = 1 0 01352895 -uninucleate a 1 2 ! \ 1 0 02882373 -uninventive a 1 1 & 1 0 00644560 -uninvited a 1 1 & 1 1 02540458 -uninviting a 2 3 ! & ^ 2 0 01359035 02098243 -uninvolved a 2 2 ! & 2 1 01516832 00546155 -union a 2 2 ! & 2 1 01606214 02474191 -unionised a 2 1 & 2 0 00356211 02474476 -unionized a 2 1 & 2 0 00356211 02474476 -uniovular a 1 1 \ 1 0 02820490 -uniovulate a 1 1 \ 1 0 02820490 -uniparous a 1 2 ! ; 1 0 02475179 -unipolar a 1 1 ! 1 0 02475529 -unique a 4 2 & + 4 2 00505853 01105042 02215087 00491511 -unironed a 1 3 ! & ^ 1 0 01359861 -unisex a 1 1 & 1 0 01479715 -unisexual a 1 1 & 1 0 02135773 -unitarian a 1 3 \ + ; 1 0 02955996 -unitary a 4 4 ! & \ ; 4 0 02820808 02820598 01107521 02477885 -united a 2 3 ! & ^ 2 1 02475855 01481812 -univalent a 2 3 ! = ; 2 1 01546593 01546222 -univalve a 1 3 ! & ; 1 0 02483692 -universal a 3 2 & + 3 1 00527188 01102674 01028623 -universalist a 1 2 \ ; 1 0 02952814 -universalistic a 2 2 \ ; 2 1 02952814 03143286 -univocal a 1 2 & ^ 1 0 00896555 -unjointed a 1 2 & ; 1 0 00153789 -unjust a 3 5 ! & ^ = + 3 1 00957176 01370590 00958712 -unjustifiable a 1 1 & 1 0 01722367 -unjustified a 1 1 & 1 0 01945350 -unkempt a 2 2 & + 2 0 02429461 02426890 -unkept a 1 1 ; 1 0 00289594 -unkeyed a 1 1 ; 1 0 02438188 -unkind a 2 5 ! & ^ = + 2 1 01373728 01264179 -unkindled a 1 1 & 1 0 00475927 -unkindly a 1 1 & 1 0 01374461 -unknowable a 1 2 ! & 1 0 01374789 -unknowing a 1 2 & + 1 0 01308894 -unknowledgeable a 1 1 & 1 0 01308894 -unknown a 5 4 ! & ^ + 5 4 01376894 00120784 02370625 01122595 00966753 -unlabeled a 1 1 ! 1 0 01379844 -unlabelled a 1 0 1 0 01379844 -unlaced a 2 2 ! & 2 0 00254615 02001776 -unladylike a 1 1 & 1 0 01951559 -unlamented a 1 1 ! 1 0 01380127 -unlatched a 1 1 & 1 0 02096382 -unlaureled a 1 1 ! 1 0 01381907 -unlaurelled a 1 0 1 0 01381907 -unlawful a 5 5 ! & ^ = + 5 1 01961410 01396047 01551026 01408421 01403760 -unleaded a 2 3 ! & ; 2 0 01397125 01656520 -unlearned a 3 1 & 3 0 01637184 02084663 00831225 -unleavened a 1 1 ! 1 0 01399949 -unlettered a 2 1 & 2 0 01421887 00831225 -unlicenced a 1 1 & 1 0 00179815 -unlicensed a 1 1 & 1 0 00179815 -unlifelike a 1 1 & 1 0 01572325 -unlighted a 2 2 ! & 2 0 00475749 00275985 -unlikable a 2 2 & ; 2 0 02376562 01461680 -unlike a 2 3 ! ^ + 2 1 01410363 01411291 -unlikeable a 2 2 & ; 2 0 02376562 01461680 -unlikely a 3 4 ! & = + 3 2 01413871 01412415 01800169 -unlimited a 3 2 ! & 3 1 01415605 01914407 01008289 -unlined a 2 2 ! & 2 2 01418181 02237978 -unlipped a 1 0 1 0 01704675 -unlisted a 2 2 ! & 2 0 01418350 01958777 -unlit a 2 1 & 2 0 00475749 00275985 -unliterary a 1 1 & 1 1 01047144 -unlittered a 1 1 & 1 0 02424095 -unlivable a 1 2 ! & 1 0 01423998 -unliveable a 1 1 & 1 0 01423998 -unliveried a 1 1 ! 1 0 01424353 -unloaded a 1 2 ! & 1 1 01424868 -unlobed a 1 1 & 1 0 02170957 -unlocated a 1 1 & 1 0 02128922 -unlocked a 1 1 & 1 1 02096382 -unlogical a 1 3 & ^ = 1 0 01430847 -unlooked-for a 1 1 & 1 0 00930765 -unlovable a 1 1 & 1 0 01460982 -unloved a 1 3 ! & ^ 1 0 01463137 -unlovely a 1 1 & 1 1 00222449 -unloving a 1 3 ! & ^ 1 0 01466593 -unlubricated a 1 1 ! 1 0 02236757 -unlucky a 2 3 ! & ^ 2 1 01468682 01051410 -unmade a 1 1 ! 1 0 01469516 -unmalicious a 1 1 ! 1 1 00226535 -unmalleable a 1 2 & + 1 0 02452919 -unmalted a 1 2 ! < 1 0 03150431 -unmanageable a 4 4 ! & ^ + 4 0 02563727 01475282 02452789 00635752 -unmanful a 1 1 & 1 0 01476154 -unmanlike a 1 1 & 1 0 01476154 -unmanly a 2 3 ! & + 2 0 01476154 00266420 -unmanned a 1 2 ! & 1 0 01479940 -unmannered a 2 1 & 2 0 00641944 00074741 -unmannerly a 1 1 & 1 0 00641944 -unmapped a 1 1 & 1 0 01377257 -unmarked a 2 2 ! & 2 0 01481135 01608848 -unmarketable a 2 1 & 2 0 02062565 02062481 -unmarred a 1 2 & ^ 1 0 00247013 -unmarried a 1 3 ! & ^ 1 1 01482228 -unmatchable a 1 1 & 1 0 00505410 -unmatched a 2 1 & 2 0 01487496 00505410 -unmated a 2 3 ! & ^ 2 1 01483143 01487496 -unmeasurable a 1 1 & 1 0 01498957 -unmeasured a 2 1 & 2 0 01498957 02021415 -unmechanical a 1 1 & 1 0 00064365 -unmechanised a 1 1 & 1 0 01500952 -unmechanized a 1 1 & 1 0 01500952 -unmediated a 1 1 & 1 0 00770480 -unmedical a 1 1 & 1 0 01168632 -unmedicative a 1 1 & 1 0 01168632 -unmedicinal a 1 1 & 1 0 01168632 -unmelodic a 1 0 1 0 01502099 -unmelodious a 2 1 ! 2 0 01502383 01502099 -unmelted a 1 3 ! & ^ 1 0 01506770 -unmemorable a 1 1 & 1 0 01040331 -unmentionable a 1 1 & 1 0 01761609 -unmercenary a 1 1 & 1 0 02579363 -unmerchantable a 1 1 & 1 0 02062565 -unmerciful a 1 3 & ^ + 1 0 01507402 -unmerited a 2 2 ! & 2 0 01371397 02588527 -unmeritorious a 1 1 & 1 1 02588647 -unmethodical a 1 1 & 1 0 01669899 -unmilitary a 1 2 ! & 1 0 01518955 -unmindful a 2 4 ! & = + 2 0 01978003 00192026 -unmined a 1 1 ! 1 0 01504531 -unmingled a 1 1 & 1 0 01907103 -unmistakable a 2 1 & 2 1 00429909 01618376 -unmitigable a 1 1 & 1 0 01785783 -unmitigated a 1 2 ! & 1 0 01519803 -unmixable a 1 2 & ; 1 0 00509735 -unmixed a 2 1 & 2 0 01907103 01330890 -unmoderated a 1 1 & 1 0 01521427 -unmodernised a 1 1 & 1 0 01877521 -unmodernized a 1 1 & 1 0 01877521 -unmodifiable a 1 1 ! 1 0 00350384 -unmodified a 1 3 ! & ^ 1 0 01541013 -unmodulated a 1 2 ! & 1 0 01541632 -unmolested a 1 1 & 1 1 02460404 -unmortgaged a 1 1 & 1 0 00869253 -unmotivated a 1 3 ! & ^ 1 0 01558912 -unmotorised a 1 0 1 0 01559804 -unmotorized a 1 1 ! 1 0 01559804 -unmourned a 1 0 1 0 01380127 -unmovable a 1 1 & 1 0 01525320 -unmoved a 2 3 ! & ^ 2 1 01560320 00353604 -unmoving a 2 4 ! & ^ = 2 0 01564073 01561564 -unmown a 1 2 ! ; 1 0 01566288 -unmusical a 3 2 ! = 3 0 01505786 01505318 01502099 -unmutilated a 1 2 & ^ 1 0 00247013 -unmyelinated a 1 2 ! \ 1 0 02766848 -unnameable a 1 1 & 1 0 02055617 -unnamed a 1 1 & 1 0 00120784 -unnatural a 3 5 ! & ^ = + 3 1 01570470 01595596 00073048 -unnaturalised a 1 1 & 1 0 01035976 -unnaturalized a 1 1 & 1 0 01035976 -unnavigable a 1 1 & 1 0 01725537 -unnecessary a 1 4 ! & ^ = 1 1 01581115 -unneeded a 1 3 & ^ = 1 1 01581115 -unneighborly a 1 2 & + 1 0 01077485 -unneighbourly a 1 1 & 1 0 01077485 -unnerved a 1 1 & 1 0 00081234 -unnerving a 1 1 & 1 0 00195383 -unneurotic a 1 2 ! & 1 0 01586009 -unnotched a 1 1 & 1 0 02245318 -unnoted a 1 1 & 1 0 01608848 -unnoticeable a 3 4 ! & = + 3 0 01614988 01288091 00581637 -unnoticed a 1 2 ! & 1 1 01608264 -unnourished a 1 1 & 1 0 02301489 -unnumberable a 1 1 & 1 0 00301951 -unnumbered a 1 1 & 1 1 00301951 -unnumerable a 1 1 & 1 0 00301951 -unobjectionable a 3 2 & ^ 3 0 00424008 01627635 00018435 -unobjective a 1 1 & 1 0 01616350 -unobligated a 1 2 ! & 1 0 01617502 -unobliging a 1 1 & 1 0 00021403 -unobservable a 1 1 & 1 0 01749225 -unobservant a 1 1 & 1 0 01746464 -unobserved a 2 1 & 2 0 01610261 01608997 -unobstructed a 1 2 ! & 1 0 01622302 -unobtainable a 1 1 & 1 1 00186193 -unobtrusive a 1 2 ! + 1 0 01614988 -unobvious a 1 3 ! & = 1 0 01620052 -unoccupied a 3 2 ! & 3 1 01623836 01624403 01313346 -unoffending a 2 3 ! & = 2 0 01631703 01628677 -unofficial a 2 3 ! & ^ 2 1 01633591 01635018 -unoiled a 2 2 ! & 2 0 01955147 01714314 -unopen a 1 1 ^ 1 0 01652782 -unopened a 1 1 & 1 0 02086879 -unopposable a 1 1 ! 1 0 01662685 -unopposed a 1 1 ! 1 1 01663049 -unordered a 2 1 & 2 0 01668250 01204443 -unorganised a 2 2 & ^ 2 0 01671095 02475001 -unorganized a 2 3 ! & ^ 2 0 01671095 02475001 -unoriented a 1 3 ! & ^ 1 0 01683667 -unoriginal a 1 5 ! & ^ = + 1 0 01688271 -unornamented a 1 1 & 1 0 00060605 -unorthodox a 2 3 ! & = 2 2 00607202 01691073 -unostentatious a 2 2 ! & 2 0 01848970 02393220 -unowned a 1 1 ! 1 0 00360569 -unoxygenated a 1 2 & ; 1 0 02509854 -unpackaged a 1 2 ! & 1 0 01739456 -unpaid a 3 3 ! & ^ 3 1 01709815 02521183 01869634 -unpainful a 1 1 & 1 0 01713250 -unpaintable a 1 1 ! 1 1 01716034 -unpainted a 2 3 ! & ^ 2 0 01714774 01713925 -unpaired a 1 1 & 1 1 01487496 -unpalatable a 1 4 ! & ^ + 1 0 01716491 -unparallel a 1 1 & 1 0 00913306 -unparalleled a 1 1 & 1 1 00505853 -unpardonable a 1 2 ! & 1 0 01721530 -unparented a 1 2 ! & 1 0 01733982 -unparliamentary a 1 1 & 1 0 00642263 -unpartitioned a 1 1 & 1 0 02478504 -unpassable a 1 1 & 1 0 01725273 -unpasteurised a 1 1 < 1 0 03151582 -unpasteurized a 1 1 < 1 0 03151582 -unpatented a 1 1 & 1 0 01109782 -unpatriotic a 1 3 ! & ^ 1 1 01740630 -unpatronised a 1 1 & 1 0 01738895 -unpatronized a 1 2 ! & 1 0 01738895 -unpatterned a 1 1 & 1 0 01785906 -unpaved a 1 2 ! & 1 1 01739987 -unpeaceable a 1 1 & 1 0 01743138 -unpeaceful a 1 3 ! & ^ 1 0 01742296 -unpeopled a 1 1 & 1 0 01313525 -unperceivable a 1 2 & ^ 1 0 01748318 -unperceived a 1 1 & 1 0 01609101 -unperceiving a 1 1 & 1 0 01746114 -unperceptive a 2 3 ! & + 2 0 01746114 00776290 -unperformed a 1 1 & 1 1 02294662 -unpermed a 1 1 & 1 0 01031115 -unpermissive a 1 3 ! = + 1 0 01763445 -unperplexed a 1 2 ! & 1 0 01767076 -unpersuadable a 1 1 & 1 0 02364245 -unpersuaded a 1 1 & 1 0 01957942 -unpersuasive a 1 2 & + 1 0 00615655 -unperturbed a 1 1 & 1 0 00531087 -unpictured a 1 1 & 1 0 01715708 -unpicturesque a 1 1 & 1 1 00222449 -unpierced a 1 1 & 1 0 00662873 -unpigmented a 1 1 \ 1 0 02820991 -unpillared a 1 1 & 1 0 00141746 -unpitying a 1 1 & 1 0 01508086 -unplaced a 1 1 & 1 0 02335602 -unplanned a 2 3 ! & ^ 2 0 01797862 01339492 -unplanted a 1 2 ! & 1 0 01832604 -unplayable a 1 1 ! 1 0 00955405 -unplayful a 1 2 ! = 1 0 02123314 -unpleasant a 1 5 ! & ^ = + 1 1 01801600 -unpleasant-smelling a 1 1 & 1 0 01053144 -unpleasing a 1 2 & + 1 0 01142666 -unpledged a 1 1 & 1 0 00158546 -unploughed a 1 1 & 1 0 01833226 -unplowed a 1 2 ! & 1 1 01833226 -unplumbed a 1 1 & 1 1 00691141 -unpointed a 1 2 & + 1 0 01811504 -unpolished a 2 3 ! & ^ 2 0 01812846 00851329 -unpolitical a 1 1 & 1 0 01815219 -unpolluted a 1 1 & 1 0 01907711 -unpompous a 1 1 & 1 0 01852107 -unpopular a 1 4 ! & = + 1 1 01816956 -unpopulated a 1 1 & 1 0 01313525 -unportable a 1 1 ! 1 0 01526480 -unposed a 1 2 ! < 1 0 03152350 -unpotted a 1 1 ! 1 0 01834230 -unpowered a 1 1 ! 1 0 01829505 -unpracticed a 1 1 & 1 0 00937616 -unpractised a 1 1 & 1 0 00937616 -unprecedented a 1 2 ! & 1 1 00128572 -unpredictable a 3 4 ! & ^ + 3 1 01842001 00739789 00594146 -unpredicted a 1 1 & 1 0 00930540 -unpredictive a 1 1 & 1 0 01883813 -unprejudiced a 1 3 ! & ^ 1 0 00286214 -unpremeditated a 2 3 ! & ^ 2 1 01798697 01843092 -unprepared a 1 3 ! & ^ 1 1 01845160 -unprepossessing a 1 1 & 1 0 00169826 -unpresentable a 1 1 & 1 0 00169826 -unpresidential a 1 2 ! ^ 1 0 00753659 -unpressed a 1 1 & 1 0 01360321 -unpretending a 1 1 & 1 0 01848970 -unpretentious a 3 4 ! & ^ + 3 1 01851523 01848970 02393220 -unpreventable a 1 1 ! 1 0 00344024 -unpriestly a 1 1 ! 1 0 00574308 -unprincipled a 2 3 ! & ^ 2 0 01551461 01228282 -unprintable a 1 1 ! 1 0 01965096 -unproblematic a 1 1 & 1 1 00750296 -unprocessed a 3 3 ! & ^ 3 0 01953467 01952405 01071321 -unprocurable a 1 1 & 1 1 00186193 -unproductive a 2 4 ! & ^ + 2 0 01866535 00836111 -unprofessional a 1 2 ! & 1 0 01870321 -unprofitable a 1 4 ! & ^ + 1 0 01871949 -unprogressive a 1 1 & 1 0 00574884 -unpromised a 1 1 & 1 0 00158546 -unpromising a 1 1 & 1 1 00176991 -unprompted a 1 1 & 1 0 02282651 -unpronounceable a 2 2 ! & 2 0 01878358 00501998 -unprophetic a 1 2 ! & 1 0 01883586 -unpropitious a 1 5 ! & ^ = + 1 0 00177963 -unprotected a 1 4 ! & ^ + 1 1 01886407 -unprotective a 1 1 ! 1 0 01889173 -unprovable a 1 1 & 1 0 01620401 -unproved a 1 2 ! & 1 0 01894416 -unproven a 1 1 & 1 0 01894416 -unprovided_for a 2 1 & 2 0 02024022 00931306 -unprovocative a 1 3 ! & ^ 1 0 01897787 -unprovoked a 1 1 & 1 0 01559270 -unprovoking a 1 2 & ^ 1 0 01897787 -unpublishable a 1 1 ! 1 0 00471260 -unpublished a 1 1 ! 1 1 00471072 -unpunctual a 1 2 ! & 1 0 01900915 -unpunished a 1 2 ! & 1 1 01902171 -unpurified a 1 1 & 1 0 01909421 -unqualified a 4 4 ! & ^ ; 4 1 01913715 01911415 00512261 00853631 -unquenchable a 1 1 & 1 0 02078673 -unquestionable a 3 4 ! & ^ + 3 0 01918184 01115635 00897363 -unquestioned a 1 1 & 1 0 00603039 -unquestioning a 2 1 & 2 0 00646981 00005599 -unquiet a 2 3 ! & ^ 2 0 01923391 02456157 -unquotable a 1 1 ! 1 0 01964196 -unraised a 1 0 1 0 01399949 -unranked a 1 1 & 1 0 01204443 -unratable a 1 2 & ; 1 0 02401445 -unratified a 1 1 & 1 0 01404582 -unreachable a 1 1 & 1 0 00020410 -unreached a 1 1 & 1 0 00020410 -unreactive a 2 3 ! & ; 2 0 01929600 02105898 -unread a 1 1 & 1 0 01309835 -unreadable a 1 1 & 1 0 01405523 -unready a 1 4 ! & ^ = 1 1 01932234 -unreal a 4 5 ! & ^ = + 4 1 01934554 01938659 01571363 00625774 -unrealised a 1 1 & 1 0 02335393 -unrealistic a 1 3 ! & ^ 1 1 01941999 -unrealizable a 1 1 & 1 0 01824081 -unrealized a 1 1 & 1 0 02335393 -unreasonable a 2 4 ! & ^ = 2 0 01944660 01533974 -unreasoning a 1 1 & 1 1 01926654 -unreassuring a 1 2 ! = 1 0 00197447 -unreceptive a 1 2 ! & 1 0 01986260 -unreciprocated a 1 1 & 1 0 01947127 -unrecognisable a 1 1 & 1 0 01273773 -unrecognised a 2 1 & 2 0 01636887 00029216 -unrecognizable a 1 1 & 1 1 01273773 -unrecognized a 2 1 & 2 1 00029216 01636887 -unreconcilable a 1 1 & 1 0 01986926 -unreconciled a 1 1 & 1 0 00578960 -unreconstructed a 1 1 ! 1 1 00288809 -unrecorded a 1 1 & 1 0 01422556 -unrecoverable a 1 2 ! & 1 0 01956523 -unredeemable a 1 1 & 1 0 02514819 -unredeemed a 1 2 & ; 1 1 01451225 -unreduced a 1 1 & 1 0 00353889 -unrefined a 2 3 ! & ^ 2 0 01953467 01949149 -unreflected a 1 2 ! & 1 0 02009012 -unreflective a 1 1 & 1 1 02421003 -unreformable a 2 1 & 2 0 02514819 00635607 -unreformed a 1 1 & 1 0 01690987 -unrefreshed a 1 1 & 1 0 02434380 -unregenerate a 3 3 ! & ^ 3 0 02326695 01957454 00635607 -unregenerated a 1 2 & ^ 1 0 01957454 -unregistered a 3 3 ! & ; 3 0 01959111 01958659 00787002 -unregretful a 1 1 ! 1 0 01150771 -unregretting a 1 0 1 1 01150771 -unregulated a 2 2 ! & 2 0 01962492 01672487 -unrehearsed a 1 1 & 1 0 01845451 -unrelated a 2 3 ! & + 2 1 01974740 01972596 -unrelaxed a 1 1 & 1 0 02407193 -unreleased a 1 1 & 1 1 00470719 -unrelenting a 3 1 & 3 0 01785341 01510798 00593071 -unreliable a 4 4 ! & ^ + 4 1 00964590 00724861 02061126 01999180 -unrelieved a 1 1 & 1 0 01521017 -unremarkable a 1 1 & 1 1 01674242 -unremarked a 1 1 & 1 0 01609101 -unremedied a 1 1 & 1 0 00634759 -unremitting a 1 1 & 1 0 00595299 -unremorseful a 1 1 ^ 1 0 01743909 -unremunerative a 1 1 & 1 0 01872619 -unrenewable a 1 1 ! 1 0 01963117 -unrenewed a 1 0 1 0 02014308 -unrentable a 1 1 ! 1 0 01963378 -unrepaired a 1 1 & 1 0 02125294 -unrepeatable a 2 2 ! & 2 0 01964196 01868578 -unrepentant a 2 3 ! & ^ 2 0 01743909 01957712 -unreplaceable a 1 1 ^ 1 0 01978894 -unreportable a 1 1 ! 1 0 00472177 -unreported a 1 1 ! 1 0 00471966 -unrepresentative a 1 1 & 1 0 02470316 -unrepressed a 1 1 & 1 0 01317462 -unreproducible a 1 2 ! & 1 0 01868302 -unrequested a 1 2 ! & 1 0 01965388 -unrequited a 1 1 & 1 1 01947127 -unresentful a 1 2 ! & 1 0 00117106 -unreserved a 2 3 ! & ^ 2 0 01988724 01988166 -unresistant a 1 1 & 1 0 02362178 -unresisting a 1 1 & 1 0 00040058 -unresolvable a 2 1 & 2 0 02266771 00945399 -unresolved a 3 2 & ; 3 0 02267164 02130821 01164561 -unrespectable a 1 2 ! + 1 0 01993843 -unresponsive a 3 4 ! & ^ + 3 1 01999766 02531775 02364347 -unrested a 1 1 & 1 0 02434380 -unrestrained a 2 3 ! & ^ 2 0 02000680 02390724 -unrestricted a 5 4 ! & ^ ; 5 2 02002814 01064167 01862296 01541258 00416651 -unrestrictive a 1 2 ! & 1 0 02005245 -unretentive a 1 2 ! ^ 1 0 02006031 -unretrievable a 1 1 & 1 0 01956675 -unrevealed a 1 1 & 1 0 01708164 -unreverberant a 1 2 ! & 1 0 02011142 -unrevised a 1 1 & 1 0 00353969 -unrevived a 1 1 ! 1 0 02014308 -unrewarded a 1 1 & 1 0 02334561 -unrewarding a 1 2 ! & 1 0 02016001 -unrhetorical a 1 3 ! & ^ 1 0 02018486 -unrhymed a 1 1 ! 1 0 01966315 -unrhythmic a 1 2 & ^ 1 0 02021050 -unrhythmical a 1 3 ! & ^ 1 0 02021050 -unrifled a 1 1 ! 1 0 02248204 -unrigged a 1 2 ! ; 1 0 01093956 -unrighteous a 1 4 ! & ^ + 1 0 02037272 -unrimed a 1 0 1 0 01966315 -unripe a 2 1 & 2 0 01493897 01932902 -unripened a 1 1 & 1 0 01493897 -unrivaled a 1 1 & 1 0 00505410 -unrivalled a 1 1 & 1 0 00505410 -unromantic a 1 1 & 1 0 01467184 -unroofed a 1 1 & 1 0 01699006 -unrouged a 1 1 & 1 0 01714896 -unruffled a 2 1 & 2 0 00531087 00302951 -unruly a 3 2 & + 3 1 01666489 02330762 01475526 -unsaddled a 1 2 ! & 1 0 00460536 -unsafe a 3 2 & ^ 3 0 02094755 02058794 02524443 -unsaid a 1 1 & 1 1 00942380 -unsalable a 1 2 ! & 1 0 02062358 -unsalaried a 1 1 & 1 0 01710946 -unsaleable a 1 1 & 1 0 02062358 -unsalted a 1 1 & 1 0 02400125 -unsanctified a 1 1 & 1 0 02054926 -unsanctioned a 1 1 & 1 0 01634364 -unsanded a 1 1 & 1 0 01005914 -unsanitary a 1 3 ! & + 1 0 02113449 -unsaponified a 1 2 ! < 1 0 03155306 -unsarcastic a 1 2 ! = 1 0 02080488 -unsated a 1 1 & 1 0 02078788 -unsatiable a 1 1 & 1 0 02078399 -unsatiated a 1 1 & 1 0 02078788 -unsatisfactory a 1 4 ! & ^ + 1 1 02082218 -unsatisfiable a 1 1 & 1 0 02078894 -unsatisfied a 2 1 & 2 0 02078788 00590271 -unsatisfying a 1 1 & 1 0 02082611 -unsaturated a 3 3 ! & ; 3 1 00758290 00757408 00393852 -unsaved a 1 2 & ; 1 0 01451225 -unsavory a 2 3 ! & + 2 0 01627965 01716971 -unsavoury a 2 1 & 2 0 01627965 01716971 -unscalable a 1 1 ! 1 0 02083516 -unscathed a 1 1 & 1 1 01319712 -unscheduled a 1 2 ! & 1 0 02367095 -unscholarly a 1 3 ! & ^ 1 0 02084538 -unschooled a 1 1 & 1 0 00831696 -unscientific a 1 3 ! & = 1 1 02085132 -unscripted a 1 2 ! & 1 0 02213377 -unscrupulous a 1 3 ! ^ + 1 1 02085898 -unsealed a 2 3 ! & ^ 2 0 02087450 02086991 -unseamanlike a 1 2 ! & 1 0 01566634 -unseamed a 2 1 & 2 0 02254669 02237978 -unseasonable a 2 3 ! & + 2 0 01494740 01662119 -unseasoned a 3 2 ! & 3 0 01495181 02400125 00937732 -unseaworthy a 1 3 ! ^ = 1 0 02088086 -unsectarian a 1 1 & 1 0 02092129 -unsecured a 2 1 & 2 0 02096382 02095193 -unseductive a 1 3 ! & ^ 1 0 02098136 -unseeable a 1 2 & ^ 1 0 02517265 -unseeded a 2 2 ! & 2 0 02254971 01832807 -unseeing a 2 1 & 2 1 01746464 02160135 -unseemly a 1 2 & + 1 0 01880918 -unseen a 1 1 & 1 1 01610261 -unseeyn a 1 1 & 1 0 02518926 -unsegmented a 1 2 & ; 1 0 02478589 -unsegregated a 1 1 & 1 0 01326516 -unselected a 1 1 ! 1 0 02123743 -unselective a 1 1 & 1 0 00776406 -unselfconscious a 1 2 & + 1 1 00074867 -unselfish a 2 4 ! & ^ + 2 1 02099019 01112471 -unsensational a 1 2 ! = 1 0 02102321 -unsent a 1 1 ! 1 0 02109552 -unsentimental a 1 1 & 1 0 02448749 -unserviceable a 2 3 ! & ^ 2 0 02124654 02497830 -unservile a 1 1 ! 1 1 00791131 -unsettled a 4 2 ! & 4 1 02130514 02126889 02504558 01313835 -unsexed a 1 1 & 1 0 02136802 -unsexy a 1 2 ! & 1 0 02134999 -unshackled a 1 1 & 1 0 00254296 -unshaded a 2 2 ! & 2 0 00277867 00277183 -unshadowed a 1 1 & 1 0 00277339 -unshakable a 2 1 & 2 1 01990653 00591513 -unshaken a 1 1 & 1 0 01991783 -unshaped a 1 1 & 1 0 02152078 -unshapely a 1 3 ! & ^ 1 0 02140492 -unshapen a 1 1 & 1 0 02152078 -unshared a 1 3 ! & ^ 1 0 02152848 -unsharpened a 1 1 & 1 1 00800755 -unshaved a 1 1 & 1 1 02153817 -unshaven a 1 2 ! & 1 1 02153817 -unsheared a 2 2 ! & 2 0 02154635 00664317 -unsheathed a 1 1 ! 1 0 02155524 -unshelled a 1 1 ! 1 0 02597007 -unshielded a 1 1 & 1 1 01886963 -unshockable a 1 1 ! 1 0 02155771 -unshod a 2 3 ! & ; 2 0 02157041 02156579 -unshoed a 1 1 & 1 0 02156579 -unshorn a 1 0 1 0 02154635 -unshrinkable a 1 1 ! 1 0 02158192 -unshrinking a 1 1 & 1 0 00082034 -unshuttered a 1 1 ! 1 0 02256732 -unsighted a 1 1 & 1 0 02158826 -unsightly a 1 2 & + 1 0 00222543 -unsigned a 1 1 ! 1 1 02161314 -unsilenced a 1 1 ! 1 0 02166277 -unsinkable a 1 1 ! 1 0 02213824 -unsized a 2 2 ! & 2 0 02225387 02225071 -unskilled a 3 3 ! & ^ 3 0 02228335 01870636 01128103 -unskillful a 1 2 & + 1 0 02229000 -unsleeping a 1 1 & 1 0 00187443 -unsloped a 1 1 & 1 1 01234030 -unsmiling a 1 1 & 1 1 01368726 -unsmooth a 1 2 & ^ 1 0 02238462 -unsmoothed a 1 1 & 1 0 01360571 -unsnarled a 1 1 & 1 0 00256538 -unsociable a 1 5 ! & ^ = + 1 0 02258600 -unsocial a 1 4 ! & ^ = 1 0 02249441 -unsoiled a 1 1 & 1 0 00418950 -unsold a 1 1 ! 1 1 02259667 -unsoldierly a 1 1 & 1 0 01519167 -unsolicited a 1 1 & 1 0 01965512 -unsoluble a 1 1 & 1 0 02266771 -unsolvable a 1 1 & 1 0 02266771 -unsolved a 1 1 ! 1 1 02267164 -unsophisticated a 3 1 & 3 0 02273088 02175980 00636891 -unsorted a 2 1 & 2 0 02225202 00415116 -unsought a 1 1 & 1 0 02529047 -unsound a 6 4 ! & ^ + 6 0 02275629 02274253 02500179 02076817 01174222 00725704 -unsoundable a 1 1 & 1 0 00995027 -unsounded a 2 1 & 2 0 00691141 00175123 -unsoured a 1 2 ! & 1 0 02369989 -unsown a 1 1 & 1 0 01832807 -unspaced a 1 2 ! & 1 0 01656416 -unsparing a 2 1 & 2 0 01111965 00438063 -unspeakable a 3 1 & 3 2 00944111 01126291 02055617 -unspecialised a 1 2 & ^ 1 0 02278337 -unspecialized a 1 3 ! & ^ 1 0 02278337 -unspecific a 1 1 & 1 0 01101891 -unspecified a 1 1 ! 1 0 01100082 -unspectacular a 1 1 & 1 0 00795671 -unspent a 1 1 & 1 0 00926871 -unspoiled a 2 1 & 2 0 01068306 00623261 -unspoilt a 1 1 & 1 0 01068306 -unspoken a 2 1 & 2 1 00152285 00942380 -unsporting a 1 1 & 1 0 00957743 -unsportsmanlike a 1 1 & 1 0 00957743 -unspotted a 1 1 & 1 0 00418950 -unstable a 6 4 ! & ^ + 6 3 02291843 01929456 00823192 02076817 01992712 00345494 -unstaged a 1 2 ! & 1 0 02294563 -unstained a 4 2 ! & 4 2 00402159 01714406 00418950 00247247 -unstarred a 1 1 & 1 0 01481282 -unstated a 1 1 & 1 0 00942380 -unstatesmanlike a 1 2 ! ^ 1 0 00753378 -unsteady a 2 4 ! & ^ + 2 0 02303077 01061310 -unsterilised a 1 1 & 1 0 02117144 -unsterilized a 1 1 & 1 0 02117144 -unstilted a 1 1 & 1 1 00075019 -unstimulating a 1 3 ! & ^ 1 0 02307367 -unstinted a 1 1 & 1 0 01111965 -unstinting a 1 1 & 1 0 01111965 -unstirred a 1 1 & 1 0 00088899 -unstoppable a 1 2 ! & 1 0 02288118 -unstoppered a 1 1 & 1 0 01653231 -unstrained a 2 1 & 2 0 02408140 00838659 -unstratified a 1 2 ! ; 1 0 00208946 -unstressed a 1 2 ! & 1 1 02320117 -unstructured a 2 3 ! & ^ 2 1 01671881 01680283 -unstrung a 1 1 & 1 1 00532753 -unstuck a 2 2 ! & 2 0 00161276 01670037 -unstudied a 2 3 ! & ^ 2 0 01799035 00831903 -unstudious a 1 1 & 1 0 02084735 -unstylish a 2 2 & ^ 2 0 00976123 00973844 -unsuasible a 1 1 & 1 0 02364245 -unsubdivided a 1 3 & ^ ; 1 0 02166346 -unsubduable a 1 1 & 1 0 00570099 -unsubdued a 1 1 & 1 0 02391342 -unsubmissive a 1 0 1 0 00791131 -unsubstantial a 1 4 & ^ = + 1 0 00625774 -unsubstantiated a 1 1 & 1 0 02353599 -unsubtle a 1 1 & 1 0 00428878 -unsuccessful a 2 4 ! & ^ = 2 2 02333453 01082714 -unsufferable a 1 1 & 1 0 02436025 -unsugared a 1 1 & 1 0 02338468 -unsuitable a 4 2 & + 4 1 01021607 01976851 01129823 00853473 -unsuited a 1 1 & 1 1 01487352 -unsullied a 2 1 & 2 0 00419058 00247247 -unsung a 2 1 & 2 1 01122595 00028867 -unsupervised a 1 2 ! & 1 0 02350353 -unsupportable a 1 1 & 1 0 02436245 -unsupported a 2 2 ! & 2 0 02353026 02352301 -unsupportive a 1 3 ! & ^ 1 0 02356430 -unsuppressed a 1 1 & 1 0 01317560 -unsure a 2 3 ! & = 2 0 00339941 00337404 -unsurmountable a 2 2 & ^ 2 0 02357115 01725422 -unsurpassable a 1 1 & 1 0 00229487 -unsurpassed a 1 1 & 1 0 00229371 -unsurprised a 1 1 ! 1 0 02359308 -unsurprising a 1 2 ! ^ 1 0 02360351 -unsusceptible a 1 5 ! & ^ = + 1 0 02363358 -unsuspected a 1 2 ! & 1 0 02370329 -unsuspecting a 2 1 & 2 0 02463029 00192523 -unsuspicious a 1 1 & 1 0 02463029 -unswayed a 1 1 & 1 0 00072790 -unsweet a 2 1 & 2 0 02368247 00090628 -unsweetened a 1 1 & 1 0 02338543 -unswept a 2 2 ! & 2 0 02371215 00423781 -unswerving a 2 1 & 2 0 00761844 00583581 -unsworn a 1 1 ! 1 0 02371583 -unsyllabic a 1 1 & 1 0 02289738 -unsyllabled a 1 1 & 1 0 02290179 -unsymbolic a 1 0 1 0 01982538 -unsymmetric a 1 1 & 1 0 02374259 -unsymmetrical a 2 1 & 2 0 02374259 00892635 -unsympathetic a 5 4 ! & ^ ; 5 1 02375828 02376562 01986349 01374461 00561359 -unsympathising a 1 1 & 1 0 02376118 -unsympathizing a 1 1 & 1 0 02376118 -unsynchronised a 1 1 & 1 0 02380225 -unsynchronized a 1 1 & 1 0 02380225 -unsynchronous a 1 1 & 1 0 02380225 -unsystematic a 1 2 ! ^ 1 0 02383151 -untactful a 1 1 ^ 1 0 02384843 -untagged a 1 0 1 0 01379844 -untainted a 1 1 & 1 0 00247247 -untalented a 1 1 ! 1 0 01119305 -untalkative a 1 1 & 1 0 02383709 -untamed a 1 3 & ^ = 1 0 02389220 -untangled a 1 2 ! & 1 0 00256453 -untanned a 1 1 ! 1 0 01659447 -untaped a 1 1 & 1 0 01422863 -untapped a 2 2 ! & 2 0 01659874 00943203 -untarnished a 1 1 & 1 0 00247247 -untasted a 1 1 & 1 0 01086339 -untaught a 1 1 & 1 0 00831696 -untaxed a 1 1 & 1 0 02401288 -untechnical a 1 0 1 0 01109096 -untellable a 1 1 & 1 1 00944111 -untempered a 2 2 ! & 2 0 01522038 01521293 -untempting a 2 1 & 2 0 02098243 01359159 -untenable a 1 1 & 1 1 01945010 -untenanted a 1 1 & 1 0 01313346 -untended a 1 1 & 1 0 00308870 -untested a 2 1 & 2 1 00937732 01643094 -untethered a 1 1 & 1 0 00254419 -unthankful a 1 1 & 1 0 01147044 -unthawed a 1 1 & 1 0 01079532 -untheatrical a 1 1 ! 1 0 00796928 -unthematic a 1 2 ! \ 1 1 02813819 -unthinkable a 1 3 ! & ^ 1 0 02418538 -unthinking a 3 1 & 3 1 02421003 00639594 00441272 -unthought a 1 1 & 1 0 00931070 -unthought-of a 1 1 & 1 0 00931070 -unthoughtful a 1 2 & + 1 0 02421003 -unthreatening a 1 1 & 1 0 01247025 -untidy a 1 4 ! & ^ + 1 0 02424254 -untied a 3 2 ! & 3 0 00254983 00254615 00254296 -untilled a 1 1 & 1 0 01833541 -untimbered a 2 2 ! & 2 0 02430002 02575238 -untimely a 2 2 & + 2 0 01662119 00815000 -untipped a 1 1 ! 1 0 02431619 -untired a 1 1 & 1 0 02434929 -untiring a 1 1 & 1 0 00754682 -untitled a 1 1 & 1 0 01593480 -untoasted a 1 1 & 1 0 00619873 -untold a 1 1 & 1 1 01554412 -untoothed a 1 1 & 1 0 02245318 -untouchable a 5 2 & + 5 0 02526725 02510786 01761742 00428243 00186193 -untouched a 4 3 ! & ^ 4 2 01086339 00072790 02445554 01560320 -untoughened a 1 2 & ^ 1 0 02448166 -untoward a 2 1 & 2 1 01880918 00997036 -untraceable a 1 1 ! 1 0 02453492 -untracked a 1 1 & 1 0 00020241 -untraditional a 1 0 1 1 00611938 -untrained a 1 2 ! & 1 0 01912613 -untrammeled a 1 1 & 1 1 01416255 -untrammelled a 1 1 & 1 0 01416255 -untransferable a 1 1 & 1 0 00094324 -untranslatable a 1 1 ! 1 0 02489312 -untransmutable a 1 1 & 1 0 00348938 -untraveled a 1 2 ! & 1 0 02454482 -untravelled a 1 1 & 1 0 02454482 -untraversable a 1 1 & 1 0 01725624 -untraversed a 1 1 & 1 0 02454619 -untreated a 3 3 ! & ^ 3 0 01955898 01954781 00402285 -untried a 2 1 & 2 1 00937732 01643094 -untrimmed a 1 2 ! & 1 0 02455069 -untrod a 1 1 & 1 0 00020241 -untrodden a 1 1 & 1 0 00020241 -untroubled a 3 3 ! & ^ 3 0 02459109 02093305 01923286 -untrue a 4 1 & 4 1 02462489 00960481 00912637 00584403 -untrusting a 1 1 & 1 0 02464277 -untrustworthy a 1 4 ! & ^ + 1 0 02466111 -untrusty a 1 3 & ^ + 1 0 02466111 -untruthful a 1 4 ! & ^ + 1 0 01225898 -untucked a 1 1 ! 1 0 02467241 -untufted a 1 1 & 1 0 00060875 -untuneful a 1 0 1 0 01502383 -unturned a 1 2 ! & 1 0 02468326 -untutored a 1 1 & 1 0 00831696 -untwisted a 1 1 & 1 0 02311442 -untypical a 1 4 & ^ = + 1 0 02469928 -ununderstood a 1 2 ! & 1 0 01378878 -unusable a 1 1 & 1 0 02497830 -unuseable a 1 1 & 1 0 02497830 -unused a 4 1 & 4 1 00418198 01643260 00037188 00025138 -unusual a 3 5 ! & ^ = + 3 3 00490035 00967129 00488857 -unutterable a 3 1 & 3 0 02055617 00944111 00501998 -unuttered a 1 1 & 1 0 00942380 -unvaccinated a 1 1 & 1 0 02363093 -unvalued a 1 1 & 1 0 00028867 -unvaned a 1 1 & 1 0 00999671 -unvanquishable a 1 1 & 1 0 00570322 -unvanquished a 1 1 & 1 0 00695335 -unvaried a 1 4 ! ^ = + 1 0 02507968 -unvarnished a 2 1 & 2 0 01714406 00765666 -unvarying a 3 3 & ^ = 3 1 02506029 02507968 01966488 -unveiled a 1 2 ! & 1 0 02508277 -unvendible a 1 1 & 1 0 02062565 -unvented a 1 1 & 1 0 02509984 -unventilated a 1 3 ! & ^ 1 1 02509292 -unverbalised a 1 1 & 1 0 00942380 -unverbalized a 1 1 & 1 0 00942380 -unverifiable a 1 1 & 1 0 01616350 -unverified a 1 1 & 1 0 01894670 -unversed a 1 1 & 1 0 00937616 -unvigilant a 1 1 ^ 1 0 00092551 -unvindictive a 1 1 & 1 0 01041408 -unvitrified a 1 2 & ; 1 0 01120515 -unvoiced a 2 2 ! & 2 0 02286294 00942380 -unvoluntary a 1 2 & ^ 1 0 02521353 -unvulcanised a 1 1 & 1 0 01953161 -unvulcanized a 1 1 & 1 0 01953161 -unwanted a 2 3 ! & ^ 2 1 02527734 00733905 -unwarmed a 1 1 & 1 0 01254296 -unwarrantable a 1 1 & 1 0 01722367 -unwarranted a 3 1 & 3 1 01722367 02353211 01945350 -unwary a 1 4 ! & = + 1 0 00162990 -unwashed a 2 1 & 2 0 01593079 00423874 -unwatchful a 1 1 ^ 1 0 00092551 -unwavering a 2 1 & 2 1 01990653 02302537 -unwaxed a 1 1 ! 1 0 02534417 -unweaned a 1 1 ! 1 0 02539223 -unwearable a 1 1 ! 1 0 02539576 -unwearied a 1 1 & 1 0 02434929 -unweary a 1 1 & 1 0 02434929 -unwearying a 1 1 & 1 0 00874920 -unweathered a 1 1 & 1 0 02584817 -unwebbed a 1 1 ! 1 0 02591372 -unwed a 1 1 & 1 1 01482751 -unwedded a 1 1 & 1 0 01482751 -unwelcome a 2 3 ! & ^ 2 1 02540236 02529148 -unwell a 1 2 & + 1 0 02542325 -unwholesome a 1 4 ! & ^ + 1 0 02559180 -unwieldy a 3 3 ! & + 3 0 02563727 01837605 01140896 -unwilled a 2 1 & 2 0 02566644 02522082 -unwilling a 2 5 ! & ^ = + 2 1 02566015 02522164 -unwise a 2 2 & + 2 1 02572657 01814252 -unwished a 1 1 & 1 0 02529148 -unwished-for a 1 1 & 1 0 02529148 -unwitting a 3 3 ! & ^ 3 1 01339492 00192880 01308894 -unwomanly a 1 2 ! & 1 1 01485502 -unwonted a 1 1 & 1 0 00488998 -unwooded a 1 3 ! & ^ 1 0 02575008 -unworkable a 1 1 & 1 0 01823574 -unworkmanlike a 1 1 & 1 0 00511966 -unworldly a 2 3 ! & ^ 2 0 02578235 02273088 -unworried a 1 1 & 1 0 02459465 -unworthy a 3 5 ! & ^ = + 3 1 02588099 02588421 01133017 -unwounded a 1 1 & 1 0 01319807 -unwoven a 1 2 ! & 1 0 02579952 -unwrapped a 1 1 ! 1 0 02087723 -unwrinkled a 1 2 ! ^ 1 1 01360692 -unwritten a 3 2 ! & 3 1 02286927 02284169 02213557 -unyielding a 2 2 & + 2 0 02327569 01152620 -up a 8 4 ! & ^ ; 8 4 02490170 00186925 02487108 02485488 01845002 01208146 01091995 01004245 -up-and-coming a 1 1 & 1 0 00885099 -up-to-date a 2 2 & + 2 1 00668208 00972642 -up-to-the-minute a 1 1 & 1 0 00668366 -up_in_the_air a 2 1 & 2 1 00336724 00342139 -up_on a 1 1 & 1 0 01306645 -up_to a 2 1 & 2 2 00294056 00051373 -up_to_her_neck a 1 1 & 1 0 01516605 -up_to_his_neck a 1 1 & 1 0 01516605 -up_to_my_neck a 1 1 & 1 0 01516605 -up_to_our_necks a 1 1 & 1 0 01516605 -up_to_their_necks a 1 1 & 1 0 01516605 -up_to_your_neck a 1 1 & 1 0 01516605 -upbeat a 1 1 & 1 1 01664015 -upbound a 1 1 & 1 0 02491578 -upcoming a 1 1 & 1 1 01732601 -upcountry a 1 1 & 1 0 00463917 -upcurved a 1 1 & 1 0 02317258 -upended a 1 1 & 1 0 01233960 -upfield a 1 2 & ; 1 0 02491708 -upfront a 1 1 & 1 0 00766348 -uphill a 1 1 & 1 0 02484530 -upland a 1 2 ! & 1 1 01219111 -uplifted a 1 2 & ; 1 1 00705776 -upmarket a 1 2 ! & 1 0 02488118 -upmost a 1 1 & 1 0 02440461 -upon_one's_guard a 1 1 & 1 1 00162661 -upper a 3 1 & 3 2 02440617 01206318 02340096 -upper-class a 1 3 ! & = 1 0 00261245 -upper-level a 1 1 & 1 1 02339577 -upper-lower-class a 1 1 & 1 1 00260323 -upper-middle-class a 1 1 & 1 1 00261109 -uppercase a 1 3 ! & ^ 1 0 01467700 -uppermost a 1 1 & 1 1 02440461 -uppish a 1 2 & + 1 0 01890382 -uppity a 1 2 & + 1 0 01540102 -upraised a 1 1 & 1 1 01208221 -upright a 3 3 & = + 3 2 01234030 02036934 01235859 -uproarious a 2 2 & + 2 0 01921466 01266841 -upscale a 1 1 & 1 0 02488304 -upset a 5 1 & 5 3 02457167 01669246 00931395 02547217 02467766 -upsetting a 1 1 & 1 0 01809019 -upside-down a 1 1 & 1 1 02467559 -upstage a 2 2 ! & 2 0 02493700 01987646 -upstair a 1 0 1 0 02493951 -upstairs a 1 1 ! 1 1 02493951 -upstanding a 1 1 & 1 0 01993693 -upstart a 1 1 & 1 0 01850862 -upstream a 1 1 ! 1 1 02494401 -uptight a 1 1 & 1 0 02406370 -uptown a 1 1 ! 1 0 02494594 -upturned a 2 1 & 2 0 02467766 02140144 -upward a 2 1 & 2 2 02491836 02485488 -upwind a 1 1 & 1 0 01400464 -uraemic a 1 1 + 1 0 02656218 -urban a 2 4 ! & \ + 2 2 02821071 02052333 -urbane a 1 2 & + 1 0 02271177 -urbanised a 1 1 & 1 0 02052830 -urbanized a 1 1 & 1 1 02052830 -urceolate a 1 2 \ ; 1 0 02821243 -uremic a 1 2 \ + 1 0 02656218 -urethral a 1 2 \ + 1 0 02821373 -urgent a 1 2 & + 1 1 00713558 -uric a 1 1 \ 1 0 03127718 -uricosuric a 1 1 \ 1 0 03127822 -urinary a 2 2 \ + 2 1 03008207 03008345 -urn-shaped a 1 1 & 1 0 00537248 -urogenital a 1 1 \ 1 0 02821475 -ursine a 1 1 \ 1 0 02890613 -uruguayan a 1 2 \ + 1 0 02967333 -usable a 3 2 & + 3 1 02496674 02124253 00777650 -useable a 3 2 & + 3 1 02124253 02496674 00777650 -used a 3 2 ! & 3 3 02494923 02495687 01640482 -used_to a 1 1 & 1 1 00024619 -useful a 2 5 ! & ^ = + 2 1 02495922 01090820 -useless a 1 5 ! & ^ = + 1 1 02497141 -user-friendly a 1 1 & 1 0 00751099 -usual a 2 5 ! & ^ = + 2 2 00489108 00970610 -usufructuary a 1 2 \ + 1 0 02821586 -usurious a 1 2 & + 1 0 01534282 -uterine a 1 1 \ 1 0 02933132 -utile a 1 4 & ^ = + 1 0 02495922 -utilised a 1 1 & 1 0 02495270 -utilitarian a 2 2 & + 2 1 01090820 02496857 -utility a 2 1 & 2 0 02348376 01855446 -utility-grade a 1 1 & 1 0 02348376 -utilizable a 1 2 & + 1 0 02497013 -utilized a 1 1 & 1 0 02495270 -utmost a 3 3 & + ; 3 2 01511520 01212095 00443618 -utopian a 2 5 ! & ^ \ + 2 1 03020193 02497938 -utter a 2 1 & 2 1 01520091 00522349 -utterable a 1 2 & + 1 0 00943831 -uttered a 1 1 & 1 0 02284023 -uttermost a 2 3 & + ; 2 0 01511520 00443618 -uveal a 1 2 \ + 1 0 02821723 -uveous a 1 2 \ + 1 0 02821723 -uvular a 1 2 \ + 1 0 03127937 -uxorial a 1 1 + 1 0 01735475 -uxorious a 1 2 & + 1 0 01466476 -uzbekistani a 1 1 \ 1 0 02963810 -v a 1 1 & 1 0 02186750 -v-shaped a 1 1 & 1 0 02151438 -vacant a 2 2 & + 2 2 01088164 01087977 -vaccinated a 1 1 & 1 0 02363811 -vacillant a 1 2 & + 1 0 01992867 -vacillating a 1 1 & 1 0 01992867 -vacuolate a 1 1 \ 1 0 02821875 -vacuolated a 1 1 \ 1 1 02821875 -vacuous a 4 2 & + 4 0 02571277 01498084 01088262 00500889 -vagabond a 2 2 & + 2 0 02128736 02127159 -vagal a 1 3 \ + ; 1 0 02822055 -vagile a 1 3 ! & ; 1 0 00160144 -vaginal a 1 2 \ + 1 0 03128070 -vagrant a 1 2 & + 1 0 02127159 -vague a 3 3 & ^ + 3 3 00431004 00697389 00782216 -vain a 2 2 & + 2 2 01891773 01866812 -vainglorious a 1 2 & + 1 0 01890187 -valedictory a 2 3 & \ + 2 0 02822229 01291098 -valent a 1 3 \ + ; 1 0 02822601 -valetudinarian a 1 2 \ + 1 0 02822746 -valetudinary a 1 1 \ 1 0 02822746 -valiant a 1 2 & + 1 1 00264570 -valid a 2 4 ! & ^ + 2 1 02498708 00938659 -validated a 1 1 & 1 0 02499643 -validating a 1 1 & 1 0 02355521 -validatory a 1 2 & + 1 0 02355521 -valorous a 1 2 & + 1 0 00264570 -valuable a 2 4 ! & ^ + 2 2 02500884 02587738 -valued a 2 2 & ; 2 1 01915991 02587556 -valueless a 1 2 & + 1 1 02504046 -valved a 1 1 \ 1 0 02822929 -valvular a 1 2 \ + 1 0 03128193 -vaned a 1 1 & 1 0 00998381 -vanilla a 2 2 & \ 2 0 02823018 01794125 -vanilla-scented a 1 1 & 1 0 01057614 -vanished a 1 1 & 1 1 00928414 -vanquishable a 1 2 & + 1 0 00569304 -vapid a 2 2 & + 2 0 02399595 02308001 -vaporific a 2 1 & 2 0 02519813 02263491 -vaporish a 1 1 & 1 0 02263491 -vaporizable a 1 2 & + 1 0 02519813 -vaporized a 1 1 & 1 0 02263270 -vaporous a 3 2 & + 3 0 02413390 02263491 00462546 -vapourific a 2 1 & 2 0 02519813 02263491 -vapourisable a 1 1 & 1 0 02519813 -vapourised a 1 1 & 1 0 02263270 -vapourish a 1 1 & 1 0 02263491 -vapourous a 3 1 & 3 0 02413390 02263491 00462546 -variable a 3 4 ! & ^ + 3 3 02504131 02507515 01028796 -variant a 2 2 & + 2 1 02068277 02505415 -varicelliform a 1 1 \ 1 0 03144862 -varicolored a 2 1 & 2 0 02507324 00398978 -varicoloured a 2 1 & 2 0 02507324 00398978 -varicose a 1 2 & + 1 0 01178458 -varied a 3 5 ! & ^ = + 3 1 02506555 00783469 00355083 -variegated a 1 1 & 1 1 02507324 -variform a 1 1 & 1 0 02507436 -variolar a 1 1 \ 1 0 02823131 -variolic a 1 1 \ 1 0 02823131 -variolous a 1 1 \ 1 0 02823131 -various a 4 1 & 4 4 02065665 00494409 02067491 02507772 -varnished a 1 1 & 1 0 01713713 -varying a 1 1 & 1 1 02507515 -vascular a 1 3 ! \ + 1 1 02873811 -vase-shaped a 1 1 & 1 0 02151234 -vasiform a 1 1 & 1 0 02264807 -vasomotor a 1 1 \ 1 0 03143502 -vast a 1 2 & + 1 1 01387319 -vatic a 1 1 & 1 0 01882754 -vatical a 1 1 & 1 0 01882754 -vaulted a 1 1 & 1 0 02046017 -vaulting a 1 1 & 1 0 00251529 -vedic a 1 1 \ 1 0 02823266 -vegetal a 2 1 & 2 0 02598211 02136665 -vegetational a 1 1 + 1 0 02598211 -vegetative a 4 4 & \ + ; 4 0 02833331 02598211 02523092 02136665 -vegetive a 1 1 \ 1 0 02833331 -vehement a 2 2 & + 2 1 01511854 02323823 -vehicular a 1 2 \ + 1 0 03128327 -veiled a 2 2 ! & 2 1 02508104 00782738 -veinal a 1 2 \ + 1 0 02951425 -veined a 1 1 & 1 1 01791138 -veinlike a 1 1 & 1 0 01791138 -velar a 2 3 & \ + 2 0 02896692 01156750 -velvet a 2 2 & + 2 0 02238310 01155206 -velvet-textured a 1 1 & 1 0 02238310 -velvety a 2 2 & + 2 1 02238310 01155206 -velvety-furred a 1 1 & 1 0 00216308 -velvety-haired a 1 1 & 1 0 00216308 -velvety-plumaged a 1 1 & 1 0 00999242 -velvety-skinned a 1 1 & 1 0 02597696 -venal a 1 2 & + 1 0 00621207 -vendable a 1 2 & + 1 0 02062133 -vendible a 1 2 & + 1 0 02062133 -venerable a 2 2 & + 2 2 01646794 01226660 -venerating a 1 1 & 1 0 02012333 -venereal a 1 0 1 0 02881567 -venetian a 1 2 \ + 1 0 02970820 -venezuelan a 1 2 \ + 1 0 02966656 -vengeful a 1 2 & + 1 0 01041634 -venial a 2 2 & ; 2 0 01721401 01721197 -venomed a 1 1 & 1 0 00226339 -venomous a 2 2 & + 2 0 02449952 00226105 -venose a 1 1 & 1 0 01791138 -venous a 1 2 \ + 1 0 02642034 -vented a 1 1 & 1 0 02509170 -ventilated a 1 2 ! & 1 0 02508766 -ventilatory a 1 2 \ + 1 0 02823423 -ventral a 2 4 ! & + ; 2 0 00132385 00002527 -ventricose a 1 2 & ; 1 0 01354750 -ventricous a 1 2 & ; 1 0 01354750 -ventricular a 1 2 \ + 1 0 02823559 -venturesome a 1 2 & + 1 0 00066146 -venturous a 1 2 & + 1 0 00066146 -veracious a 2 2 & + 2 0 01225772 00023278 -verbal a 6 5 ! & \ + ; 6 2 00500310 02823920 02823724 02230581 02284324 00549675 -verbalised a 1 1 & 1 0 02284023 -verbalized a 1 1 & 1 0 02284023 -verbatim a 1 1 & 1 0 00914808 -verbose a 1 2 & + 1 0 00549236 -verboten a 1 1 & 1 0 01761375 -verdant a 1 2 & + 1 0 00016647 -veridical a 1 1 & 1 1 01941604 -verifiable a 2 2 & + 2 0 01615785 00859453 -verificatory a 1 2 & + 1 0 02355521 -verified a 1 1 & 1 0 01894324 -verifying a 1 1 & 1 0 02355521 -verisimilar a 1 1 & 1 0 01413763 -veritable a 2 1 & 2 2 02469577 01115635 -vermicular a 1 1 & 1 0 01796977 -vermiculate a 2 1 & 2 0 02584203 01796977 -vermiculated a 1 1 & 1 0 01796977 -vermiform a 1 1 & 1 0 02151320 -vermilion a 1 2 & + 1 1 00385188 -vermillion a 1 1 & 1 0 00385188 -verminous a 1 2 & + 1 0 01627315 -vernacular a 1 2 & + 1 0 01046226 -vernal a 2 2 ! & 2 1 01649720 01254432 -verrucose a 1 1 & 1 0 02243255 -versatile a 4 3 & + ; 4 0 02507772 02505617 02228163 01524722 -versed a 1 1 & 1 0 00936038 -vertebral a 1 2 \ + 1 1 03010664 -vertebrate a 1 3 ! + ; 1 0 02510062 -vertical a 4 6 ! & ^ \ = + 4 1 01233347 02824040 01235859 01204142 -verticillate a 1 1 & 1 0 00677721 -verticillated a 1 1 & 1 0 00677721 -vertiginous a 1 2 & + 1 0 02544048 -very a 2 1 & 2 2 01839317 02068946 -vesical a 1 2 \ + 1 0 03143662 -vesicant a 1 2 & + 1 0 01611683 -vesicatory a 1 2 & + 1 0 01611683 -vesicular a 1 1 \ 1 1 03010428 -vestal a 2 3 & \ + 2 0 03128472 00361125 -vested a 1 1 & 1 0 00557108 -vestiary a 1 2 \ + 1 0 03128583 -vestibular a 1 2 \ + 1 0 03010553 -vestigial a 1 2 & ; 1 0 00742714 -vestmental a 1 2 \ + 1 0 03128699 -vestmented a 1 1 & 1 0 00457482 -veteran a 1 2 & + 1 1 00936523 -veterinary a 1 2 \ + 1 1 03128816 -vexatious a 1 1 & 1 0 00089550 -vexed a 2 1 & 2 0 02455845 00749040 -vexing a 2 1 & 2 0 01809245 00089550 -vi a 1 1 & 1 0 02186833 -viable a 2 2 & + 2 1 01822563 00094941 -viatical a 1 2 \ + 1 0 02824194 -vibrant a 3 2 & + 3 1 02280969 02011002 00404110 -vibrational a 1 2 \ + 1 0 02824444 -vibratory a 1 2 & + 1 0 01563923 -vibrionic a 1 2 \ + 1 1 03128963 -vicarial a 1 2 \ + 1 0 02824585 -vicarious a 3 2 & ; 3 1 01855621 01598125 00918354 -vice-presidential a 1 2 \ + 1 0 02984333 -vicenary a 1 1 & 1 0 01916142 -vicennial a 1 1 \ 1 0 02824740 -viceregal a 1 2 \ + 1 0 03129098 -vicinal a 1 2 \ + 1 0 02871957 -vicious a 4 2 & + 4 2 01263013 02514099 02035765 00226105 -victimised a 1 1 & 1 0 02495687 -victimized a 1 1 & 1 0 02495687 -victorian a 3 3 & \ + 3 1 03027793 01880163 01537759 -victorious a 2 2 & + 2 0 02333314 00695209 -viennese a 1 1 \ 1 1 02971192 -vietnamese a 1 2 \ + 1 0 03129222 -viewable a 1 2 & + 1 0 02517169 -viewless a 1 1 & 1 0 01819293 -vigesimal a 1 1 \ 1 0 02824825 -vigilant a 1 2 & + 1 0 00091764 -vigorous a 2 2 & + 2 2 00875422 02039845 -vii a 1 1 & 1 0 02186970 -viii a 1 1 & 1 0 02187073 -vile a 2 2 & + 2 1 01133017 02560035 -villainous a 1 2 & + 1 1 02515001 -vinaceous a 2 3 & \ + 2 0 02854013 00385338 -vincible a 1 1 & 1 0 00569304 -vindicated a 1 1 & 1 0 01320184 -vindicatory a 3 2 & + 3 0 01903160 01370305 00923790 -vindictive a 2 2 & + 2 2 01041634 00225099 -vinegarish a 2 2 & + 2 0 02369179 01139245 -vinegary a 2 2 & + 2 0 02369179 01139245 -vinous a 1 2 \ + 1 0 02854013 -violable a 1 2 ! + 1 0 02510446 -violated a 1 1 & 1 0 00574010 -violative a 1 2 & + 1 0 01631386 -violent a 5 4 ! & ^ + 5 3 02510879 01570747 01514141 01511854 00248560 -violet a 1 2 & + 1 0 00380312 -violet-black a 1 1 & 1 0 00392281 -violet-blue a 1 1 & 1 0 00377224 -violet-colored a 1 1 & 1 0 00401444 -violet-coloured a 1 1 & 1 0 00401444 -violet-flowered a 1 1 & 1 0 00401444 -violet-pink a 1 1 & 1 0 00377323 -violet-purple a 1 1 & 1 0 00401562 -violet-scented a 1 1 & 1 0 01057695 -violet-streaked a 1 1 & 1 0 01791257 -violet-tinged a 1 1 & 1 0 00385432 -violet-tinted a 1 1 & 1 0 00385432 -viral a 1 2 \ + 1 0 02880201 -virgin a 2 2 & + 2 1 01643373 00361125 -virginal a 3 3 & \ + 3 0 02824922 01907878 00361125 -viricidal a 1 2 \ + 1 0 03144004 -virile a 3 2 & + 3 2 02324005 01483677 01825419 -virological a 1 2 \ + 1 0 02914599 -virtual a 2 1 & 2 1 01941814 00902157 -virtuoso a 1 2 & + 1 1 02226979 -virtuous a 2 4 ! & ^ + 2 0 02513269 00361125 -virucidal a 1 2 \ + 1 0 03144004 -virulent a 3 3 ! & + 3 1 02449952 00045561 01802165 -visaged a 1 2 & ; 1 0 00236338 -visceral a 2 2 & \ 2 1 02862964 01431471 -viscid a 1 2 & + 1 0 00053691 -viscoelastic a 1 2 & ; 1 1 00845406 -viscometric a 1 2 \ + 1 0 03143794 -viscosimetric a 1 2 \ + 1 0 03143794 -viscous a 2 2 & + 2 0 02417028 00053691 -viselike a 1 1 & 1 1 01448362 -visible a 3 4 ! & ^ + 3 2 02515341 01705513 00184792 -visionary a 1 2 & + 1 0 02498213 -visored a 1 1 & 1 1 01095406 -visual a 2 2 & \ 2 1 02869563 02516148 -visualised a 1 1 & 1 0 01935301 -visualized a 1 1 & 1 0 01935301 -visually_challenged a 1 1 & 1 0 02159969 -visually_impaired a 1 1 & 1 0 02159969 -vital a 4 2 & + 4 1 00903894 00902347 00119006 00095094 -vitalizing a 1 1 & 1 0 01357484 -vitiated a 2 1 & 2 0 01274945 00621100 -vitiliginous a 1 2 \ + 1 0 03144152 -vitreous a 3 3 & \ ; 3 0 02825213 02825060 01119661 -vitrified a 1 2 & ; 1 0 01119661 -vitriolic a 2 2 & + 2 0 01802165 00587376 -vituperative a 1 2 & + 1 0 00648614 -viva-voce a 1 1 & 1 0 02284423 -vivace a 1 1 & 1 0 00982518 -vivacious a 1 2 & + 1 1 02280969 -vivid a 4 2 & + 4 2 01941026 00430041 00402855 00393683 -viviparous a 1 2 ! ; 1 0 02519029 -vixenish a 1 1 & 1 0 00226434 -vocal a 4 4 ! & \ + 4 3 02825533 02825355 00499530 01454494 -vocalic a 2 4 ! & \ + 2 1 02287276 02825985 -vocational a 1 1 \ 1 1 02840478 -vocative a 1 3 \ + ; 1 0 03129490 -vociferous a 1 1 & 1 1 01920367 -voguish a 2 1 & 2 0 00975487 00973677 -voiced a 1 1 ! 1 1 02286083 -voiceless a 4 2 & + 4 0 02286294 00876735 00174719 00151661 -void a 2 3 & + ; 2 1 02500590 01088351 -voidable a 1 2 & + 1 0 01760293 -volant a 1 2 & ; 1 0 02568076 -volar a 1 1 \ 1 0 02773062 -volatile a 4 5 ! & ^ + ; 4 1 02519555 02292573 00584626 00346847 -volatilisable a 1 2 & + 1 0 02519813 -volatilised a 1 1 & 1 0 02263270 -volatilizable a 1 2 & + 1 0 02519813 -volatilized a 1 1 & 1 0 02263270 -volcanic a 3 3 & \ + 3 0 02826169 02293760 01355746 -volitional a 1 2 & + 1 0 02565801 -voltaic a 1 3 \ + ; 1 1 02827160 -voltarean a 1 2 \ + 1 0 03038536 -voltarian a 1 2 \ + 1 0 03038536 -voluble a 1 4 ! & ^ + 1 0 02383831 -volumed a 3 3 & \ ; 3 0 02985206 01390778 01097847 -volumetric a 1 2 \ + 1 1 02985474 -volumetrical a 1 2 \ + 1 0 02985474 -voluminous a 3 2 & + 3 1 01390900 02313784 00014858 -voluntary a 2 5 ! & ^ + ; 2 1 02520219 02522267 -volunteer a 1 1 & 1 0 02521183 -voluptuary a 1 2 & + 1 0 01298239 -voluptuous a 3 2 & + 3 1 02132967 02138989 01298239 -volute a 1 2 & + 1 0 02317598 -voluted a 1 1 & 1 0 02317598 -voracious a 2 2 & + 2 0 00031138 00010726 -voteless a 1 0 1 0 00876735 -votive a 1 1 & 1 1 00573666 -vowellike a 1 1 & 1 0 02287510 -voyeuristic a 1 2 \ + 1 0 03129648 -voyeuristical a 1 2 \ + 1 0 03129648 -vulcanised a 1 1 & 1 0 01951943 -vulcanized a 1 1 & 1 0 01951943 -vulgar a 4 2 & + 4 1 01950198 01593079 01046226 00683531 -vulnerable a 3 4 ! & ^ + 3 1 02523275 02363166 02326482 -vulpecular a 1 1 \ 1 0 02839865 -vulpine a 1 1 \ 1 1 02839865 -vulturine a 1 1 & 1 0 00084022 -vulturous a 1 2 & + 1 0 00084022 -vulval a 1 2 \ + 1 0 02840203 -vulvar a 1 1 \ 1 0 02840203 -w-shaped a 1 1 & 1 0 02151527 -wacky a 2 2 & ; 2 1 02571536 02074929 -wafer-like a 1 1 & 1 0 00619238 -wafer-thin a 1 1 & 1 0 02415294 -wage-earning a 2 1 & 2 0 02557145 00260100 -waggish a 1 2 & + 1 0 01268002 -wagnerian a 1 2 \ + 1 0 03036974 -wailful a 1 1 & 1 1 01365785 -wailing a 1 1 & 1 0 01365785 -wainscoted a 1 1 & 1 1 00059669 -waist-length a 1 1 & 1 0 00517816 -waiting a 1 1 & 1 1 01931926 -wakeful a 3 2 & + 3 1 00091764 00693570 00187590 -wakeless a 1 1 & 1 0 00693020 -waking a 1 1 & 1 0 00187590 -walk-in a 1 1 & 1 0 00691497 -walk-on a 1 0 1 0 00153239 -walk-to a 1 1 & 1 1 00450402 -walk-up a 1 1 & 1 0 01219007 -walking a 1 1 & 1 1 00450402 -walleyed a 1 1 ! 1 0 00653740 -walloping a 1 2 & ; 1 1 01388062 -wan a 3 2 & + 3 1 02325984 00405879 00119750 -wandering a 3 1 & 3 2 02128084 00763407 02127509 -waning a 1 1 ! 1 0 02534690 -wanted a 2 3 ! & ^ 2 0 02526925 01462625 -wanting a 2 1 & 2 0 00927832 00052012 -wanton a 2 2 & + 2 0 01559270 00361837 -war-ridden a 1 1 & 1 1 01742537 -war-torn a 1 1 & 1 0 00737033 -war-worn a 1 1 & 1 0 00737033 -warlike a 2 1 & 2 1 01742715 01518860 -warm a 10 5 ! & ^ = + 10 4 02529264 02530861 02531919 01464700 01068609 00919018 00886117 00806387 00479192 00445308 -warm-blooded a 1 3 ! & ; 1 0 02532508 -warm-toned a 1 1 & 1 1 00856790 -warmed a 1 1 & 1 1 02529761 -warmhearted a 1 3 ! ^ + 1 0 02533313 -warming a 2 1 & 2 1 02529859 01248198 -warning a 1 1 & 1 0 01771124 -warped a 1 1 & 1 1 02314070 -warring a 1 1 & 1 0 01742537 -warriorlike a 1 1 & 1 0 01518694 -wartlike a 1 1 & 1 0 02243255 -warty a 1 2 & + 1 0 02243255 -wary a 2 4 ! & = + 2 1 00162386 02464277 -wash-and-wear a 1 2 & + 1 0 02534042 -washable a 1 3 ! & + 1 0 02533810 -washed a 2 1 & 2 1 00419175 02551141 -washed-out a 2 1 & 2 0 02433451 00404961 -washed-up a 1 1 & 1 0 02334321 -washingtonian a 4 2 \ + 4 0 03037579 03037407 03037236 03037093 -washy a 2 1 & 2 0 00756459 00404961 -wasp-waisted a 1 1 & 1 0 00991189 -waspish a 1 1 & 1 0 01135420 -waste a 1 2 & + 1 0 01243102 -wasted a 4 1 & 4 2 02503305 01450293 00554879 00988988 -wasteful a 3 4 ! & ^ + 3 1 00841159 02422068 00588655 -watchful a 2 3 & ^ + 2 0 00091311 00187176 -water-cooled a 1 1 & 1 1 02530693 -water-insoluble a 1 1 & 1 0 02266043 -water-loving a 1 1 & 1 0 01172493 -water-repellent a 1 1 & 1 0 01773094 -water-resistant a 1 1 & 1 0 01773094 -water-soluble a 1 1 & 1 0 02265815 -water-washed a 2 1 & 2 0 01243609 00419175 -waterborne a 2 1 & 2 0 01525017 00077354 -watercress a 1 2 & + 1 0 00374001 -watered a 1 1 & 1 0 01789359 -waterless a 1 2 & + 1 0 02552415 -waterlogged a 1 1 & 1 0 02548066 -watermelon-shaped a 1 2 & ^ 1 0 02050116 -waterproof a 1 2 & + 1 1 01398941 -waterproofed a 1 1 & 1 0 01398941 -watertight a 2 1 & 2 0 01399235 00591513 -waterworn a 1 1 & 1 0 02584347 -watery a 4 2 & + 4 2 02551259 02549857 02262365 00756459 -watery-eyed a 1 1 & 1 0 02473655 -wavelike a 1 1 & 1 0 00911762 -wavering a 1 1 & 1 0 01992867 -wavy a 2 2 & + 2 2 01030691 00911762 -wavy-grained a 1 1 & 1 0 00911935 -waxed a 1 1 ! 1 1 02534315 -waxen a 2 2 & \ 2 1 03004852 00406495 -waxing a 1 1 ! 1 0 02534501 -waxlike a 1 1 & 1 1 00406495 -waxy a 4 3 & \ + 4 0 03004852 02364448 01022367 00406495 -way-out a 1 1 & 1 0 00609564 -wayfaring a 1 1 & 1 0 02128388 -wayward a 1 1 & 1 1 01613839 -weak a 12 6 ! & ^ = + ; 12 4 02324397 00756459 02320442 01259391 02493574 02230471 02040233 01960432 01828242 01747364 00964768 00441523 -weak-kneed a 1 1 & 1 0 01992996 -weak-stemmed a 1 1 & 1 0 00322007 -weakened a 5 1 & 5 1 01274945 02326621 00882166 00756327 00680532 -weakening a 2 1 & 2 0 01358096 01341822 -weakly a 1 1 & 1 0 02040233 -wealthy a 1 2 & + 1 1 02022167 -weaned a 1 2 ! ; 1 0 02539034 -weaponed a 1 1 & 1 0 00142622 -weaponless a 1 1 & 1 0 00143516 -weapons-grade a 2 1 & 2 0 02344998 02322704 -wearable a 1 2 ! + 1 0 02539359 -wearied a 1 1 & 1 1 02433975 -wearing a 1 1 & 1 0 00837249 -wearisome a 1 1 & 1 1 01345307 -weary a 1 2 & + 1 1 02432428 -wearying a 1 1 & 1 1 00837249 -weasel-worded a 1 1 & 1 0 01913514 -weather a 1 1 & 1 1 01400464 -weather-beaten a 2 1 & 2 1 02448040 02584459 -weather-bound a 1 1 & 1 0 00559271 -weather-stripped a 1 1 & 1 0 01399564 -weathered a 1 1 & 1 0 02584459 -weatherly a 1 3 \ + ; 1 0 03129915 -weatherproof a 1 1 & 1 0 01886241 -weatherworn a 1 1 & 1 0 02584459 -web-footed a 1 1 & 1 0 01031701 -web-toed a 1 1 & 1 0 01031701 -webbed a 2 2 ! & 2 0 02591088 02007067 -webby a 1 2 & + 1 0 02007067 -weblike a 1 1 & 1 0 02007067 -wed a 1 1 & 1 0 01482140 -wedded a 1 1 & 1 0 01482140 -wedge-shaped a 2 2 & \ 2 1 02167740 03144955 -wedged a 1 1 & 1 0 00502809 -wee a 2 3 & + ; 2 1 01392633 00815849 -weedless a 1 1 ! 1 0 02539877 -weedy a 2 3 ! & + 2 0 02539717 00990192 -weeklong a 1 1 & 1 0 01441965 -weekly a 1 2 & + 1 0 01968503 -weensy a 1 2 & ; 1 0 01392633 -weeny a 1 2 & ; 1 0 01392633 -weeping a 2 2 & ; 2 1 01365239 01238486 -weepy a 1 2 & + 1 0 02473886 -weighed_down a 2 1 & 2 0 01085268 00869690 -weighted a 2 1 & 2 1 01189853 00351012 -weightless a 1 2 ! + 1 0 01187777 -weighty a 5 3 ! & + 5 0 01187611 01770392 01278423 01190168 00987180 -weird a 2 2 & + 2 1 01575424 00970081 -welcome a 1 3 ! ^ + 1 1 02539968 -welcoming a 1 1 & 1 1 01244106 -welfare-statist a 1 1 & 1 0 00576573 -welfarist a 1 1 & 1 0 00576573 -well a 3 4 ! & ^ + 3 3 02540578 01048762 00067638 -well-adjusted a 1 1 & 1 0 00351679 -well-advised a 1 3 ! & ^ 1 0 00067966 -well-appointed a 1 1 & 1 0 01097966 -well-balanced a 2 1 & 2 1 00894627 00351679 -well-behaved a 1 1 & 1 0 01125241 -well-bound a 1 1 & 1 1 00257356 -well-branched a 1 1 & 1 0 00614600 -well-bred a 1 1 & 1 0 01949059 -well-chosen a 1 1 & 1 1 01000442 -well-conducted a 1 1 & 1 0 01668723 -well-connected a 1 1 & 1 0 00567414 -well-defined a 2 2 ! & 2 1 00779819 00697923 -well-disposed a 1 1 & 1 0 01246801 -well-done a 1 1 & 1 0 00619324 -well-dressed a 1 1 & 1 0 02428251 -well-educated a 1 1 & 1 1 00830051 -well-endowed a 1 1 & 1 0 02138989 -well-favored a 1 1 & 1 0 00218950 -well-favoured a 1 1 & 1 0 00218950 -well-fed a 1 1 & 1 1 02300624 -well-fixed a 1 1 & 1 0 02022556 -well-formed a 1 0 1 0 01146012 -well-found a 1 1 & 1 0 01097966 -well-founded a 1 1 & 1 0 01944492 -well-groomed a 2 1 & 2 0 02428251 02428150 -well-grooved a 1 1 & 1 0 01636090 -well-grounded a 1 1 & 1 0 02499511 -well-heeled a 1 1 & 1 0 02022556 -well-informed a 1 1 & 1 1 02271052 -well-intentioned a 1 1 & 1 0 01338363 -well-kept a 2 1 & 2 2 00737515 02423649 -well-knit a 1 1 & 1 0 02324165 -well-known a 2 1 & 2 2 01376705 00966167 -well-lighted a 1 1 & 1 0 00271580 -well-lined a 1 1 & 1 0 01086453 -well-made a 1 1 & 1 1 02345194 -well-mannered a 2 1 & 2 0 01949059 00641343 -well-marked a 1 1 & 1 0 01480916 -well-meaning a 2 1 & 2 1 01247025 01338363 -well-meant a 1 1 & 1 0 01338363 -well-mined a 1 1 & 1 0 01504282 -well-nourished a 1 1 & 1 0 02300624 -well-off a 2 1 & 2 0 02022556 01049352 -well-ordered a 1 1 & 1 0 01960557 -well-preserved a 1 1 & 1 0 01172594 -well-proportioned a 1 1 & 1 0 02140305 -well-qualified a 1 1 & 1 0 01911296 -well-read a 2 1 & 2 1 01308259 00830051 -well-rounded a 1 1 & 1 1 00526541 -well-set a 1 1 & 1 0 02324165 -well-shaven a 1 1 & 1 0 02153705 -well-situated a 1 1 & 1 0 02022556 -well-spoken a 1 1 & 1 0 00150936 -well-thought-of a 1 1 & 1 0 01983548 -well-timed a 1 1 & 1 0 01661529 -well-to-do a 1 1 & 1 0 02022556 -well-tried a 1 1 & 1 0 01894196 -well-turned a 2 2 & ; 2 0 02140392 01000592 -well-wishing a 1 2 & + 1 0 01000737 -well-worn a 2 1 & 2 0 02584610 01688757 -well_behaved a 1 1 & 1 0 01125241 -well_thought_out a 1 1 & 1 0 02420085 -well_timed a 1 1 & 1 0 01661529 -wellborn a 1 1 & 1 0 00262008 -welsh a 1 2 \ + 1 0 03130073 -wesleyan a 1 2 + ; 1 0 02955562 -west a 1 2 ! & 1 1 00824321 -west-central a 1 1 & 1 0 00826827 -west_african a 1 2 \ + 1 0 03042249 -westbound a 1 1 & 1 0 00824509 -westerly a 2 2 & + 2 0 00824753 00824509 -western a 4 4 ! & = + 4 3 00825089 00825970 00824631 00824753 -westernmost a 1 1 & 1 0 00824876 -westmost a 1 1 & 1 0 00824876 -westside a 1 1 & 1 0 00824965 -westward a 1 1 & 1 0 00824509 -wet a 6 5 ! & = + ; 6 1 02547317 02555126 02554752 02554267 01159405 00798103 -whacked a 1 2 & ; 1 0 02434473 -whacking a 1 2 & ; 1 0 01391074 -whacky a 2 2 & ; 2 0 02571536 02074929 -whatever a 1 1 & 1 0 02267686 -whatsoever a 1 1 & 1 0 02267686 -wheaten a 1 1 \ 1 0 03130337 -wheel-like a 1 1 & 1 0 02043142 -wheeled a 1 1 ! 1 0 02555683 -wheelless a 1 1 ! 1 0 02555777 -wheezing a 1 1 & 1 1 01174048 -wheezy a 2 2 & + 2 0 01921639 01174048 -whimsical a 1 2 & + 1 0 00719442 -whiney a 1 2 & + 1 0 00513981 -whiny a 1 2 & + 1 0 00513981 -whiplike a 1 1 \ 1 0 03015113 -whipping a 1 1 & 1 1 02280680 -whippy a 1 1 & 1 0 00844719 -whirring a 1 1 & 1 0 01922131 -whiskered a 1 1 & 1 1 02153965 -whiskerless a 1 1 & 1 0 02153620 -whiskery a 1 2 & + 1 0 02153965 -whispered a 1 1 & 1 0 02286507 -whispering a 1 1 & 1 0 01456038 -white a 12 5 ! & ^ = + 12 2 00393105 00243180 01905235 01698231 01327680 01250991 01130932 01087093 00756638 00406743 00404568 00272950 -white-blotched a 1 1 & 1 0 01791349 -white-bread a 1 1 & 1 0 00608245 -white-collar a 1 3 ! & ^ 1 1 02555954 -white-edged a 1 1 & 1 0 00259177 -white-flowered a 1 1 & 1 0 00392367 -white-haired a 2 2 & ; 2 0 01645678 01462461 -white-hot a 2 1 & 2 0 01257501 01250991 -white-lipped a 1 1 & 1 0 00081417 -white-livered a 1 2 & ; 1 0 00265314 -white-pink a 1 1 & 1 0 00385547 -white-ribbed a 1 1 & 1 0 01791434 -white-seeded a 1 1 & 1 0 02256005 -white-shoe a 1 2 & ; 1 0 01863442 -white-streaked a 1 1 & 1 0 01791510 -white-tie a 1 1 & 1 0 01044118 -whitened a 1 1 & 1 0 00406743 -whitewashed a 1 1 & 1 1 01713815 -whitish a 2 1 & 2 0 00434384 00392460 -whole a 5 5 ! & ^ = + 5 1 00514884 00517916 01319712 01171396 00784215 -whole-souled a 1 1 & 1 1 02180486 -whole-wheat a 1 1 \ 1 0 03130337 -wholehearted a 1 2 & + 1 0 02180486 -wholemeal a 1 1 \ 1 0 03130337 -wholesale a 1 1 & 1 0 00774182 -wholesome a 2 4 ! & ^ + 2 1 02557357 01172692 -whopping a 1 2 & ; 1 0 01388062 -whorled a 2 1 & 2 0 02317598 00677721 -wiccan a 1 1 \ 1 0 03130509 -wicked a 5 4 ! & ^ + 5 3 02513740 02037531 01513050 02122715 01625893 -wide a 7 5 ! & ^ = + 7 4 02560548 00526062 01654900 01384212 02563068 00106277 00024241 -wide-angle a 1 1 \ 1 0 02728812 -wide-awake a 2 1 & 2 0 00187443 00092275 -wide-cut a 1 1 & 1 1 00106277 -wide-eyed a 2 1 & 2 0 02272047 01654900 -wide-open a 2 1 & 2 1 01652689 01396503 -wide-ranging a 2 1 & 2 1 01391237 00783469 -wide-screen a 1 1 & 1 1 02561752 -wide_of_the_mark a 1 1 & 1 0 00024241 -wideband a 1 1 \ 1 0 02671038 -widely_distributed a 1 1 ; 1 0 01106614 -widespread a 2 1 & 2 2 01102876 00541614 -widowed a 1 1 & 1 1 01482865 -wieldy a 1 1 ! 1 0 02563616 -wifelike a 1 0 1 0 01735475 -wifely a 1 2 ! + 1 1 01735475 -wigged a 1 2 ! & 1 0 02564546 -wiggly a 2 2 & + 2 0 02316992 01563713 -wigless a 1 1 ! 1 0 02564915 -wild a 13 6 ! & ^ = + ; 13 5 02390335 02389220 01727303 00601650 01514141 02353211 02077625 02059811 01942732 01243102 00886448 00412788 00304144 -wild-eyed a 2 1 & 2 1 00087022 01837182 -wildcat a 3 2 & + 3 0 02274959 01634199 00878438 -wilful a 2 2 & + 2 0 02520693 01614372 -willful a 2 2 & + 2 1 02520693 01614372 -willing a 2 5 ! & ^ = + 2 1 02564986 02521036 -willing_and_able a 1 1 & 1 0 02565939 -willowy a 1 1 & 1 0 01140188 -wilsonian a 1 2 \ + 1 1 02696515 -wilted a 1 1 & 1 0 01070002 -wily a 1 2 & + 1 1 00148078 -wimpish a 1 1 & 1 0 00843046 -wimpy a 1 2 & + 1 0 00843046 -windblown a 1 1 & 1 1 02314236 -windburned a 1 1 & 1 0 01178577 -windburnt a 1 1 & 1 0 01178577 -winded a 1 1 & 1 0 00268748 -winding a 2 1 & 2 2 02313784 00763407 -windless a 1 2 & + 1 0 00303579 -windswept a 1 1 & 1 0 01243722 -windup a 1 1 & 1 0 01500672 -windward a 1 2 ! & 1 0 01400336 -windy a 4 2 & + 4 1 00305225 02498213 00980385 00549236 -wine-red a 1 1 & 1 0 00385651 -winey a 1 2 & + 1 0 02399259 -wing-shaped a 1 2 & ; 1 0 02567117 -winged a 2 2 ! & 2 0 02566799 00980287 -wingless a 1 2 ! & 1 0 02568285 -winglike a 1 1 & 1 0 02568192 -winking a 1 1 & 1 0 01655386 -winless a 1 1 & 1 1 02335708 -winning a 2 1 & 2 1 02333314 00167829 -winsome a 1 2 & + 1 0 00169056 -winter-blooming a 1 1 & 1 0 01256213 -winter-flowering a 1 1 & 1 0 01256213 -wintery a 1 2 & + 1 0 01255807 -wintry a 2 3 ! & + 2 1 01255807 01258264 -winy a 1 2 & + 1 0 02399259 -wiped_out a 2 1 & 2 1 00734798 00735195 -wire-haired a 1 1 & 1 0 00216420 -wired a 3 3 ! & ; 3 1 02568556 02407346 00254046 -wireless a 1 1 ! 1 0 02569030 -wiry a 3 3 & \ + 3 1 00991584 03145054 00216560 -wiry-coated a 1 1 & 1 0 00216420 -wiry-stemmed a 1 1 & 1 0 00322084 -wise a 4 4 ! & ^ + 4 2 02569130 01898722 01307690 00205295 -wise_to a 1 1 & 1 0 01307690 -wished-for a 1 1 & 1 0 02527489 -wishful a 2 2 & + 2 0 00887719 00104533 -wishy-washy a 1 1 & 1 0 02325816 -wisplike a 1 1 & 1 0 00991678 -wispy a 2 2 & + 2 0 00991678 00782216 -wistful a 1 2 & + 1 0 01362950 -witching a 1 1 & 1 0 01576071 -witchlike a 1 1 & 1 0 01577672 -with-it a 2 1 & 2 0 00972642 00439431 -with_child a 1 1 & 1 0 00173391 -withdrawn a 2 2 & + 2 0 02250691 01988024 -withered a 2 2 & ; 2 1 00990442 02553234 -withering a 2 1 & 2 1 00586617 01995047 -without_a_stitch a 1 1 & 1 0 00460296 -witless a 1 1 & 1 0 00441365 -wittgensteinian a 1 1 \ 1 0 03038796 -witting a 2 3 ! & ^ 2 0 00192756 01337767 -witty a 1 2 & + 1 1 01268194 -wizard a 1 2 & + 1 0 01576071 -wizardly a 1 2 & + 1 0 01576071 -wizen a 1 1 & 1 0 00990442 -wizened a 1 1 & 1 0 00990442 -wobbling a 1 1 & 1 1 02305786 -wobbly a 1 2 & + 1 1 02292797 -woebegone a 2 1 & 2 0 02581530 01366525 -woeful a 2 2 & + 2 1 01366525 02347086 -wolf-sized a 1 1 & 1 0 02224977 -wolfish a 2 2 & \ 2 0 02840006 00010726 -wolflike a 1 1 \ 1 1 02840006 -womanish a 1 2 & + 1 0 01476516 -womanlike a 1 1 & 1 0 01485401 -womanly a 1 3 ! & + 1 0 01484987 -womb-to-tomb a 1 1 & 1 1 01440159 -won a 1 1 ! 1 0 01452488 -wonder-struck a 1 1 & 1 0 00071897 -wonderful a 1 2 & + 1 1 01676517 -wondering a 1 1 & 1 0 00664879 -wonderworking a 1 1 & 1 1 01678946 -wondrous a 1 2 & + 1 1 01676517 -wonky a 2 1 & 2 0 02312450 02292797 -wont_to a 1 1 & 1 0 00024619 -wonted a 1 1 & 1 0 00489491 -wood-burning a 1 1 & 1 0 01098941 -wood-fired a 1 1 & 1 0 01098941 -wooded a 1 3 ! & ^ 1 1 02572823 -wooden a 2 2 & + 2 1 02576489 01141595 -wooden-headed a 1 1 & 1 0 00440292 -woodsy a 2 2 & + 2 0 02574890 02573192 -woody a 3 3 ! & + 3 0 02575330 02573192 01152189 -woody-stemmed a 1 1 & 1 0 00322242 -woolen a 1 2 \ + 1 1 03130689 -woolgathering a 1 1 & 1 0 00165585 -woollen a 1 2 \ + 1 0 03130689 -woolly a 4 2 & + 4 2 01154351 00436115 00216668 00214640 -woolly-haired a 1 1 & 1 0 00216668 -woolly-headed a 1 1 & 1 0 00436115 -woolly-stemmed a 1 1 & 1 0 00322161 -wooly a 3 2 & + 3 0 01154351 00436115 00216668 -wooly-haired a 1 1 & 1 0 00216668 -wooly-minded a 1 1 & 1 0 00436115 -woozy a 1 1 & 1 0 02544048 -word-blind a 1 1 \ 1 0 03040264 -word-of-mouth a 1 1 & 1 0 02284423 -word-perfect a 1 1 & 1 0 00632071 -wordless a 1 1 & 1 0 00152285 -wordsworthian a 1 2 \ + 1 0 03038683 -wordy a 1 2 & + 1 0 00549236 -work-shy a 1 1 & 1 0 00294579 -workable a 1 2 & + 1 1 01822563 -workaday a 1 1 & 1 0 01674242 -worked_up a 1 1 & 1 0 00085630 -working a 5 1 & 5 5 00864461 01836117 01758194 01091728 00833334 -working-class a 2 1 & 2 1 00260100 02557145 -workmanlike a 1 1 & 1 1 00511037 -world a 1 1 & 1 1 01568684 -world-class a 1 1 & 1 0 00228294 -world-shaking a 1 1 & 1 1 02162458 -world-shattering a 1 1 & 1 1 02162458 -world-weary a 1 2 & + 1 0 02432682 -world-wide a 3 1 & 3 0 01568684 01567694 00527188 -worldly a 2 4 ! & ^ + 2 1 02577061 02270782 -worldly-minded a 1 1 & 1 0 02577907 -worldly-wise a 1 1 & 1 0 02271437 -worldwide a 3 1 & 3 1 01567694 01568684 00527188 -worm-eaten a 1 1 & 1 0 02584203 -worm-shaped a 1 1 & 1 0 02151320 -wormlike a 1 1 & 1 0 00789871 -wormy a 2 2 & + 2 0 02584203 00789871 -worn a 2 3 ! & ^ 2 2 02580449 02433000 -worn-out a 2 1 & 2 0 02582873 02433451 -worn_out a 1 1 & 1 0 02433451 -worried a 2 1 & 2 1 02457167 00822907 -worrisome a 2 2 & = 2 0 00197447 01189386 -worrying a 1 1 & 1 0 01189386 -worse a 2 4 ! & + ; 2 1 00231252 00232068 -worsened a 2 1 & 2 0 00232068 00231591 -worsening a 1 1 ! 1 0 00233151 -worshipful a 2 1 & 2 0 02012073 01781882 -worshipped a 1 1 & 1 0 01462124 -worst a 1 5 ! & ^ + ; 1 1 00229630 -worth a 2 3 & + ; 2 2 02586206 02502016 -worthful a 1 1 & 1 0 02587738 -worthless a 2 4 ! & ^ + 2 1 02502163 01133017 -worthwhile a 1 2 & + 1 1 02587936 -worthy a 3 5 ! & ^ = + 3 2 02584981 00852197 01021120 -would-be a 1 1 & 1 0 00104825 -wound a 1 1 & 1 0 02318207 -wound_up a 1 1 & 1 1 02405677 -wounded a 1 1 & 1 1 01318741 -wounding a 1 1 & 1 0 01162901 -woven a 1 2 ! & 1 1 02579469 -wraithlike a 1 1 & 1 1 00626483 -wrapped a 3 2 ! & 3 2 01695505 00163948 02087594 -wrapped_up a 1 1 & 1 1 00518405 -wrathful a 1 1 & 1 1 00116245 -wrecked a 1 1 & 1 0 00737116 -wrenching a 1 1 & 1 1 01712529 -wretched a 5 2 & + 5 2 02347086 00478872 01150205 01133017 01050890 -wriggling a 1 1 & 1 0 01563713 -wriggly a 1 2 & + 1 0 01563713 -wrinkle-resistant a 1 1 \ 1 0 03056871 -wrinkled a 2 3 ! & ^ 2 0 01360413 01359861 -wrinkleless a 1 1 ^ 1 0 01360692 -wrinkleproof a 1 1 \ 1 0 03056871 -wrinkly a 1 2 & ^ 1 0 01360413 -writ_large a 1 1 & 1 1 01619880 -writhed a 1 1 & 1 1 02312719 -writhen a 1 1 & 1 0 02312719 -writhing a 1 1 & 1 1 01563713 -written a 3 3 ! & ^ 3 1 02284578 02286661 02213270 -wrong a 9 5 ! & ^ = + 9 4 00632438 02035337 00136185 01092371 00633778 01881478 01694081 01662119 00023854 -wrong-side-out a 1 1 & 1 0 02468208 -wrongful a 3 2 & + 3 0 01408421 01396628 01371009 -wrongheaded a 1 1 & 1 0 00633937 -wroth a 1 1 & 1 0 00116245 -wrothful a 1 1 & 1 0 00116245 -wrought a 1 1 & 1 0 02149787 -wry a 2 1 & 2 1 01266092 02314371 -wysiwyg a 1 1 \ 1 0 03145145 -x a 1 1 & 1 0 02187296 -x-linked a 1 1 \ 1 0 03145310 -xanthous a 1 1 & 1 0 00385756 -xc a 1 1 & 1 0 02195145 -xci a 1 1 & 1 0 02195234 -xcii a 1 1 & 1 0 02195328 -xciii a 1 1 & 1 0 02195423 -xciv a 1 1 & 1 0 02195523 -xcl a 1 1 & 1 0 02198187 -xcv a 1 1 & 1 0 02195620 -xcvi a 1 1 & 1 0 02195716 -xcvii a 1 1 & 1 0 02195811 -xcviii a 1 1 & 1 0 02195911 -xenogeneic a 1 2 ! + 1 0 02596059 -xenophobic a 1 2 & + 1 0 00081513 -xeric a 1 2 ! & 1 0 02588762 -xerographic a 1 2 \ + 1 0 03130858 -xerophytic a 1 2 & + 1 0 02588915 -xi a 1 1 & 1 0 02187379 -xii a 1 1 & 1 0 02187465 -xiii a 1 1 & 1 0 02187606 -xiv a 1 1 & 1 0 02187699 -xix a 1 1 & 1 0 02188205 -xl a 1 1 & 1 0 02190278 -xli a 1 1 & 1 0 02190377 -xlii a 1 1 & 1 0 02190469 -xliii a 1 1 & 1 0 02190562 -xliv a 1 1 & 1 0 02190660 -xlv a 1 1 & 1 0 02190755 -xlvi a 1 1 & 1 0 02190849 -xlvii a 1 1 & 1 0 02190942 -xlviii a 1 1 & 1 0 02191040 -xv a 1 1 & 1 0 02187793 -xvi a 1 1 & 1 0 02187903 -xvii a 1 1 & 1 0 02187995 -xviii a 1 1 & 1 0 02188108 -xx a 1 1 & 1 0 02188317 -xxi a 1 1 & 1 0 02188431 -xxii a 1 1 & 1 0 02188525 -xxiii a 1 1 & 1 0 02188620 -xxiv a 1 1 & 1 0 02188720 -xxix a 1 1 & 1 0 02189209 -xxv a 1 1 & 1 0 02188817 -xxvi a 1 1 & 1 0 02188913 -xxvii a 1 1 & 1 0 02189008 -xxviii a 1 1 & 1 0 02189108 -xxx a 1 1 & 1 0 02189306 -xxxi a 1 1 & 1 0 02189396 -xxxii a 1 1 & 1 0 02189491 -xxxiii a 1 1 & 1 0 02189587 -xxxiv a 1 1 & 1 0 02189688 -xxxv a 1 1 & 1 0 02189786 -xxxvi a 1 1 & 1 0 02189883 -xxxvii a 1 1 & 1 0 02189979 -xxxviii a 1 1 & 1 0 02190080 -y-shaped a 1 1 & 1 0 02151616 -y2k_compliant a 1 1 & 1 0 01613309 -yankee a 1 2 & + 1 1 01606470 -yarn-spinning a 1 1 & 1 0 00500434 -yawning a 3 1 & 3 1 01653379 01655025 00165766 -year-around a 1 0 1 0 01494429 -year-end a 1 1 & 1 0 01010747 -year-round a 1 1 ! 1 1 01494429 -yearlong a 1 1 & 1 0 01442079 -yearly a 1 2 & + 1 0 01969150 -yearned-for a 1 1 & 1 0 02527489 -yeastlike a 1 1 \ 1 0 03145467 -yeasty a 3 3 & \ + 3 0 03145467 02281182 00644299 -yeatsian a 1 2 \ + 1 0 03038894 -yelled a 1 1 & 1 1 01454244 -yellow a 6 3 & + ; 6 3 00385756 00265314 01640729 02101942 01228370 01177556 -yellow-banded a 1 1 & 1 0 01791591 -yellow-beige a 1 1 & 1 0 00385990 -yellow-bellied a 1 2 & ; 1 0 00265314 -yellow-brown a 1 1 & 1 1 00369504 -yellow-gray a 1 1 & 1 0 00392574 -yellow-green a 1 1 & 1 1 00386095 -yellow-grey a 1 1 & 1 0 00392574 -yellow-marked a 1 1 & 1 0 01791670 -yellow-orange a 1 1 & 1 0 00386196 -yellow-spotted a 1 1 & 1 0 01791749 -yellow-striped a 1 1 & 1 0 01791829 -yellow-tinged a 1 1 & 1 0 00386303 -yellow-tipped a 1 1 & 1 0 02431529 -yellow-white a 1 1 & 1 0 00392706 -yellowed a 1 1 & 1 0 01640729 -yellowish a 1 1 & 1 0 00385756 -yellowish-beige a 1 1 & 1 0 00385990 -yellowish-gray a 1 1 & 1 0 00392574 -yellowish-grey a 1 1 & 1 0 00392574 -yellowish-orange a 1 1 & 1 0 00386196 -yellowish-white a 1 1 & 1 0 00392706 -yemeni a 1 2 \ + 1 0 03130962 -yielding a 3 1 & 3 1 02329220 01154500 01026552 -yogic a 1 2 \ + 1 0 02985904 -yogistic a 1 2 \ + 1 0 02985904 -yokel-like a 1 1 & 1 1 00441630 -yokelish a 1 1 & 1 0 01950857 -yon a 1 1 & 1 0 00446758 -yonder a 1 1 & 1 1 00446758 -young a 5 6 ! & ^ = + ; 5 2 01646941 00818008 01649720 01643480 00937732 -young-bearing a 1 1 & 1 0 01478353 -young-begetting a 1 1 & 1 0 01477711 -younger a 1 1 & 1 1 02101382 -youngish a 1 1 & 1 1 01649651 -youthful a 1 2 & + 1 1 01649720 -yucky a 1 1 & 1 0 01625893 -yugoslav a 1 2 \ + 1 0 02962013 -yugoslavian a 1 2 \ + 1 0 02962013 -yuman a 1 1 \ 1 0 03145622 -yummy a 1 1 & 1 0 02396720 -zaftig a 1 1 & 1 0 00986975 -zairean a 1 2 \ + 1 0 03131116 -zairese a 1 2 \ + 1 0 03131116 -zambian a 1 2 \ + 1 0 03131331 -zany a 2 3 & + ; 2 0 02571536 01265108 -zapotec a 1 1 \ 1 0 03145734 -zealous a 1 2 & + 1 0 00886253 -zenithal a 1 2 \ + 1 0 03131633 -zero a 4 2 & \ 4 3 02186132 02269142 02201882 03145851 -zeroth a 1 1 & 1 0 02201970 -zestful a 1 2 & + 1 0 02281182 -zesty a 2 2 & + 2 0 02398378 02281182 -zig-zag a 1 2 & + 1 0 02314451 -zigzag a 1 2 & + 1 0 02314451 -zillion a 1 1 & 1 0 02199919 -zimbabwean a 1 2 \ + 1 0 03131750 -zionist a 2 2 \ + 2 0 03132067 03131904 -zippy a 2 2 & + 2 0 00874226 00805309 -zodiacal a 1 2 \ + 1 1 03132560 -zoftig a 1 1 & 1 0 00986975 -zoic a 1 1 \ 1 0 02656121 -zolaesque a 1 1 \ 1 0 03039004 -zonal a 2 2 ! \ 2 0 03132185 02589913 -zonary a 1 1 + 1 0 03132185 -zoological a 2 2 \ + 2 0 02891564 02891444 -zoonotic a 1 2 \ + 1 0 03145956 -zoophagous a 1 2 & ; 1 0 00313701 -zoroastrian a 1 2 \ + 1 0 02926708 -zygodactyl a 1 1 ! 1 0 01198586 -zygomatic a 1 2 \ + 1 0 03146117 -zygomorphic a 1 2 ! ; 1 0 02374697 -zygomorphous a 1 1 ; 1 0 02374697 -zygotic a 1 2 \ + 1 0 02882275 -zymoid a 1 1 \ 1 0 03146237 -zymolytic a 1 2 \ + 1 0 03000447 -zymotic a 2 2 \ + 2 0 03000447 03000341 diff --git a/corpora/en/wordnet/dict/index.adv b/corpora/en/wordnet/dict/index.adv deleted file mode 100644 index 7ce85d0eb..000000000 --- a/corpora/en/wordnet/dict/index.adv +++ /dev/null @@ -1,4510 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -'tween r 1 0 1 0 00250898 -'tween_decks r 1 0 1 0 00498293 -a.d. r 1 0 1 0 00001837 -a.k.a. r 1 0 1 0 00270446 -a.m. r 1 1 ; 1 0 00251304 -a_bit r 1 0 1 1 00033663 -a_cappella r 1 0 1 0 00001740 -a_fortiori r 1 0 1 1 00063483 -a_good_deal r 1 0 1 0 00059171 -a_great_deal r 2 0 2 1 00059171 00059413 -a_hundred_times r 1 0 1 1 00359932 -a_la_carte r 1 0 1 0 00257981 -a_la_mode r 1 0 1 0 00498182 -a_little r 1 0 1 1 00033663 -a_lot r 1 0 1 1 00059171 -a_million_times r 1 0 1 0 00344659 -a_posteriori r 1 1 ! 1 0 00251525 -a_priori r 1 1 ! 1 0 00251611 -a_trifle r 1 0 1 1 00033663 -ab_initio r 1 0 1 0 00103194 -aback r 2 0 2 0 00075739 00075656 -abaft r 1 0 1 0 00275409 -abaxially r 1 2 ! \ 1 0 00512503 -abeam r 1 0 1 0 00075881 -abed r 1 0 1 1 00229216 -abjectly r 1 1 \ 1 0 00264339 -ably r 1 1 \ 1 1 00185172 -abnormally r 1 1 \ 1 1 00227171 -aboard r 4 1 ; 4 2 00249878 00249736 00250056 00249964 -abominably r 2 1 \ 2 0 00309632 00055101 -aborad r 1 2 ! \ 1 0 00172875 -abortively r 1 1 \ 1 0 00264475 -about r 7 0 7 7 00007015 00071840 00071165 00072329 00072201 00358114 00073033 -above r 2 1 ! 2 2 00079947 00080169 -above_all r 2 0 2 1 00150671 00158190 -aboveboard r 1 0 1 0 00314384 -abreast r 1 0 1 0 00250484 -abroad r 3 0 3 3 00104003 00263180 00181676 -abruptly r 1 1 \ 1 1 00061528 -absently r 1 1 \ 1 1 00066190 -absentmindedly r 1 1 \ 1 1 00066190 -absolutely r 2 1 \ 2 1 00008997 00007488 -abstemiously r 1 1 \ 1 0 00264555 -abstractedly r 1 1 \ 1 0 00066190 -abstractly r 1 2 ! \ 1 0 00197947 -abstrusely r 1 1 \ 1 0 00264759 -absurdly r 1 1 \ 1 0 00301039 -abundantly r 1 1 \ 1 0 00214554 -abusively r 1 1 \ 1 0 00055739 -abysmally r 1 0 1 0 00055101 -academically r 1 1 \ 1 1 00121286 -accelerando r 1 2 \ ; 1 0 00264927 -acceptably r 1 2 ! \ 1 0 00055312 -accidentally r 3 2 ! \ 3 1 00040547 00212411 00062650 -accommodatingly r 1 1 \ 1 0 00231620 -accordingly r 2 0 2 2 00062857 00063089 -accurately r 2 2 ! \ 2 2 00204523 00204798 -accusingly r 1 1 \ 1 1 00066418 -acoustically r 1 1 \ 1 1 00134843 -across r 2 0 2 2 00272951 00272844 -across_the_board r 1 1 \ 1 0 00150925 -across_the_country r 1 0 1 0 00407215 -across_the_nation r 1 0 1 1 00407215 -actively r 1 2 ! \ 1 1 00079617 -actually r 4 1 \ 4 2 00149510 00149138 00150003 00149744 -acutely r 4 2 ! \ 4 2 00502325 00140759 00503102 00272587 -ad r 1 0 1 0 00001837 -ad_hoc r 1 0 1 1 00250987 -ad_infinitum r 1 1 \ 1 1 00087777 -ad_interim r 1 0 1 0 00088549 -ad_lib r 1 0 1 0 00088655 -ad_libitum r 1 0 1 0 00088655 -ad_nauseam r 1 0 1 0 00251073 -ad_val r 1 0 1 0 00251166 -ad_valorem r 1 0 1 0 00251166 -adagio r 1 2 \ ; 1 0 00265059 -adamantly r 1 1 \ 1 1 00177174 -adaxially r 1 2 ! \ 1 0 00512597 -additionally r 1 0 1 1 00046167 -adequately r 1 2 ! \ 1 1 00369718 -adjectivally r 1 1 \ 1 0 00512691 -adjectively r 1 1 \ 1 0 00267321 -administratively r 1 1 \ 1 0 00265166 -admirably r 1 1 \ 1 1 00218886 -admiringly r 1 0 1 0 00055859 -admittedly r 1 0 1 1 00184284 -adorably r 1 1 \ 1 0 00265298 -adoringly r 1 1 \ 1 0 00055949 -adrift r 2 1 \ 2 0 00267704 00267558 -adroitly r 1 2 ! \ 1 1 00056054 -adulterously r 1 1 \ 1 0 00134964 -advantageously r 1 2 ! \ 1 0 00013793 -adverbially r 1 1 \ 1 0 00267435 -adversely r 1 1 \ 1 0 00261102 -advertently r 1 2 ! \ 1 0 00153681 -advisedly r 1 0 1 1 00062330 -aerially r 1 1 \ 1 0 00202718 -aesthetically r 1 1 \ 1 0 00261231 -afar r 1 0 1 1 00100883 -affably r 1 1 \ 1 1 00220052 -affectedly r 1 1 \ 1 0 00066527 -affectingly r 1 1 \ 1 1 00066605 -affectionately r 1 1 \ 1 1 00077747 -affirmatively r 1 1 \ 1 0 00512790 -afield r 3 0 3 0 00263180 00262971 00262847 -afoot r 1 1 \ 1 1 00239064 -afresh r 1 0 1 0 00112843 -aft r 1 1 ! 1 1 00275409 -after r 2 0 2 1 00061203 00508070 -after_a_fashion r 1 0 1 1 00151040 -after_all r 2 0 2 2 00151149 00151305 -after_hours r 1 0 1 0 00151426 -afterward r 1 0 1 1 00061203 -afterwards r 1 0 1 1 00061203 -again r 1 0 1 1 00040365 -again_and_again r 1 0 1 1 00176981 -against_the_clock r 1 0 1 0 00151521 -against_the_wind r 1 0 1 0 00094893 -against_time r 1 0 1 0 00151521 -aggravatingly r 1 1 \ 1 1 00508884 -aggressively r 1 1 \ 1 0 00049947 -agilely r 1 1 \ 1 1 00189615 -ago r 1 0 1 1 00074095 -agonizingly r 1 1 \ 1 0 00261389 -agreeably r 1 2 ! \ 1 1 00219110 -aground r 1 0 1 0 00270011 -ahead r 7 1 ! 7 4 00066781 00075442 00067265 00067045 00068070 00067823 00067513 -ahead_of_the_game r 1 0 1 0 00151655 -ahead_of_time r 1 0 1 0 00100082 -ahorse r 1 0 1 0 00002436 -ahorseback r 1 0 1 0 00002436 -aimlessly r 1 1 \ 1 1 00205808 -airily r 1 0 1 1 00341835 -akimbo r 1 0 1 0 00270110 -alarmingly r 1 1 \ 1 1 00005674 -alas r 1 0 1 0 00042769 -alee r 1 0 1 0 00270218 -alertly r 1 1 \ 1 1 00270292 -alfresco r 1 0 1 0 00110659 -algebraically r 1 1 \ 1 1 00131550 -alias r 1 0 1 0 00270446 -alike r 2 0 2 1 00069672 00069603 -all r 1 1 ; 1 1 00008007 -all-fired r 1 1 ; 1 0 00025144 -all_along r 1 0 1 1 00068215 -all_at_once r 2 0 2 2 00461834 00151957 -all_day_long r 1 0 1 0 00304787 -all_in_all r 1 0 1 1 00151755 -all_of_a_sudden r 2 0 2 2 00151957 00061677 -all_over r 2 1 ; 2 2 00198039 00025728 -all_right r 3 1 ; 3 3 00053004 00053152 00015471 -all_the_same r 1 0 1 1 00027384 -all_the_time r 1 0 1 1 00157000 -all_the_way r 3 0 3 2 00152066 00285854 00152173 -all_together r 2 0 2 1 00461834 00063774 -all_told r 1 0 1 1 00063630 -all_too r 1 0 1 1 00250258 -allegedly r 1 1 \ 1 0 00154307 -allegorically r 1 1 \ 1 0 00135198 -allegretto r 1 2 \ ; 1 0 00270581 -allegro r 1 2 \ ; 1 0 00270713 -alliteratively r 1 1 \ 1 0 00270842 -allowably r 1 0 1 0 00086926 -almost r 1 0 1 1 00073033 -aloft r 4 0 4 0 00499084 00499004 00498610 00498499 -alone r 2 1 \ 2 2 00008600 00157967 -along r 5 0 5 4 00068368 00068577 00068986 00068753 00069164 -alongside r 1 0 1 0 00250056 -aloof r 1 1 \ 1 0 00122816 -aloud r 2 0 2 2 00069771 00069901 -alphabetically r 1 1 \ 1 0 00202833 -already r 1 0 1 1 00031798 -alright r 3 1 ; 3 0 00053152 00053004 00015471 -also r 1 0 1 1 00047534 -also_known_as r 1 0 1 1 00270446 -alternately r 1 1 \ 1 1 00137562 -alternatively r 1 1 \ 1 1 00063172 -altogether r 3 1 ; 3 2 00008007 00063630 00151755 -altruistically r 1 1 \ 1 0 00270974 -always r 5 0 5 1 00019339 00020476 00020280 00019757 00019609 -amain r 2 0 2 0 00273133 00273048 -amateurishly r 1 1 ! 1 0 00214433 -amazingly r 1 1 \ 1 0 00213301 -ambiguously r 1 2 ! \ 1 0 00220323 -ambitiously r 1 2 ! \ 1 0 00262206 -amiably r 1 1 \ 1 0 00220052 -amicably r 1 1 \ 1 0 00262552 -amidship r 2 0 2 0 00402030 00273238 -amidships r 1 0 1 0 00402030 -amiss r 3 0 3 0 00271998 00010276 00010047 -amok r 2 1 \ 2 0 00273504 00273306 -amorally r 1 0 1 0 00364623 -amorously r 1 1 \ 1 0 00267950 -amply r 2 2 ! \ 2 1 00397016 00178909 -amuck r 2 1 \ 2 0 00273504 00273306 -amusingly r 1 1 \ 1 0 00094177 -anachronistically r 1 1 \ 1 1 00228112 -analogously r 1 1 \ 1 1 00070650 -analytically r 1 1 \ 1 1 00240533 -anarchically r 1 1 \ 1 0 00240865 -anatomically r 1 1 \ 1 1 00064083 -anciently r 1 1 \ 1 1 00005210 -and_how r 1 0 1 0 00152345 -and_so r 1 0 1 0 00117620 -and_so_forth r 1 0 1 1 00103664 -and_so_on r 1 0 1 1 00103664 -and_then r 1 0 1 1 00117620 -and_then_some r 1 0 1 0 00152440 -andante r 1 2 \ ; 1 0 00267812 -anew r 1 0 1 1 00112843 -angelically r 1 1 \ 1 0 00268056 -angrily r 1 1 \ 1 1 00227323 -animatedly r 1 1 \ 1 0 00263323 -anisotropically r 1 1 \ 1 0 00003294 -anno_domini r 1 0 1 0 00001837 -annoyingly r 1 1 \ 1 0 00003380 -annually r 2 1 \ 2 1 00081737 00250570 -anomalously r 1 1 \ 1 0 00271152 -anon r 2 1 ; 2 0 00035320 00033809 -anonymously r 1 1 \ 1 0 00262655 -antagonistically r 1 1 \ 1 0 00265438 -ante_meridiem r 1 1 ; 1 0 00251304 -antecedently r 1 1 \ 1 0 00060632 -anteriorly r 1 1 \ 1 0 00265579 -anticlockwise r 1 0 1 0 00254059 -antithetically r 1 1 \ 1 0 00273649 -anxiously r 1 1 \ 1 1 00185970 -any r 1 0 1 1 00024509 -any_longer r 1 0 1 1 00031606 -anyhow r 2 0 2 1 00026571 00027258 -anymore r 1 0 1 1 00031606 -anyplace r 1 1 ; 1 0 00025290 -anyway r 2 0 2 1 00026571 00027258 -anyways r 1 0 1 0 00026571 -anywhere r 1 1 ; 1 1 00025290 -apace r 1 0 1 0 00085811 -apart r 6 0 6 3 00181075 00180756 00234389 00234201 00181253 00180944 -apathetically r 1 1 \ 1 0 00265660 -apiece r 1 0 1 1 00239908 -apologetically r 1 1 \ 1 1 00174106 -appallingly r 1 1 \ 1 0 00261575 -apparently r 2 2 \ ; 2 1 00039941 00039318 -appealingly r 1 2 ! \ 1 0 00261694 -appositively r 1 1 \ 1 0 00121413 -appreciably r 1 1 \ 1 1 00006610 -appreciatively r 1 2 ! \ 1 0 00271264 -apprehensively r 1 1 \ 1 0 00185970 -appropriately r 1 2 ! \ 1 1 00139508 -approvingly r 1 2 ! \ 1 1 00261966 -approximately r 1 0 1 1 00007015 -apropos r 2 0 2 0 00273752 00156222 -aptly r 1 1 \ 1 0 00185172 -arbitrarily r 1 0 1 1 00070765 -architecturally r 1 1 \ 1 0 00268165 -archly r 1 1 \ 1 0 00274160 -ardently r 1 1 \ 1 0 00265782 -arduously r 1 1 \ 1 0 00274268 -arguably r 1 1 \ 1 0 00005343 -argumentatively r 1 1 \ 1 0 00318830 -aright r 1 0 1 0 00203922 -aristocratically r 1 1 \ 1 0 00202955 -arithmetically r 1 1 \ 1 0 00271625 -around r 10 0 10 9 00071165 00071601 00072329 00071741 00007015 00072201 00072043 00071840 00071050 00071456 -around_the_clock r 1 0 1 0 00152559 -arrogantly r 1 1 \ 1 1 00266016 -artfully r 3 1 \ 3 1 00245953 00315595 00293926 -articulately r 2 2 ! \ 2 0 00327848 00268312 -artificially r 1 2 ! \ 1 1 00140566 -artistically r 1 1 \ 1 1 00248375 -artlessly r 2 1 \ 2 0 00274527 00274369 -as r 1 0 1 1 00022131 -as_a_formality r 1 0 1 0 00260328 -as_a_group r 1 0 1 1 00157304 -as_a_matter_of_fact r 1 0 1 1 00148869 -as_far_as_possible r 1 0 1 1 00119230 -as_follows r 1 0 1 1 00152684 -as_if_by_magic r 1 0 1 0 00129788 -as_it_is r 1 0 1 1 00027093 -as_it_were r 1 0 1 1 00152776 -as_luck_would_have_it r 1 0 1 0 00042254 -as_much_as_possible r 1 0 1 1 00119230 -as_needed r 1 0 1 1 00181418 -as_required r 1 0 1 1 00181418 -as_such r 1 0 1 1 00036762 -as_the_crow_flies r 1 0 1 0 00152998 -as_usual r 1 0 1 1 00107144 -as_we_say r 1 0 1 1 00152882 -as_well r 1 0 1 1 00047534 -as_yet r 1 0 1 1 00027918 -asap r 1 0 1 0 00034137 -ascetically r 1 1 \ 1 0 00266258 -asea r 1 0 1 0 00447578 -asexually r 1 1 \ 1 0 00073546 -ashamedly r 1 2 ! \ 1 0 00266393 -ashore r 1 0 1 1 00139173 -aside r 6 0 6 3 00233892 00234052 00180756 00234951 00234201 00233687 -askance r 2 0 2 0 00271899 00271751 -askew r 1 0 1 0 00272169 -aslant r 2 0 2 0 00274962 00274710 -asleep r 2 1 \ 2 1 00275035 00275127 -assertively r 1 2 ! \ 1 0 00266490 -assiduously r 1 1 \ 1 0 00272305 -assuredly r 1 1 \ 1 1 00266812 -astern r 3 1 ; 3 0 00275872 00275409 00275201 -astonishingly r 1 1 \ 1 1 00213301 -astraddle r 1 0 1 0 00275974 -astray r 2 0 2 1 00206386 00495858 -astride r 2 0 2 1 00275974 00276076 -astronomically r 1 1 \ 1 0 00121550 -astutely r 1 1 \ 1 0 00272587 -asunder r 1 0 1 0 00180944 -asymmetrically r 1 1 ! 1 1 00175778 -asymptotically r 1 1 \ 1 1 00073657 -at_a_loss r 1 0 1 0 00262773 -at_a_low_price r 1 0 1 0 00158575 -at_a_lower_place r 1 0 1 0 00080039 -at_a_time r 1 0 1 1 00153261 -at_all r 1 0 1 1 00056729 -at_all_costs r 1 0 1 0 00153116 -at_an_equal_rate r 1 0 1 0 00257026 -at_any_cost r 1 0 1 0 00153116 -at_any_expense r 1 0 1 0 00153116 -at_any_rate r 2 1 ; 2 1 00026571 00104661 -at_arm's_length r 1 0 1 1 00249549 -at_best r 1 1 ! 1 1 00105775 -at_bottom r 1 0 1 0 00104099 -at_close_range r 1 0 1 1 00410043 -at_first_blush r 1 0 1 0 00103426 -at_first_glance r 1 0 1 1 00103324 -at_first_hand r 1 0 1 0 00340403 -at_first_sight r 1 0 1 1 00103324 -at_heart r 1 0 1 1 00104099 -at_home r 2 1 ; 2 1 00098267 00098166 -at_large r 1 0 1 1 00104233 -at_last r 1 0 1 1 00047903 -at_least r 2 2 ! ; 2 2 00104661 00104345 -at_leisure r 1 0 1 0 00104990 -at_length r 1 0 1 0 00065575 -at_long_last r 1 0 1 0 00047903 -at_most r 1 1 ! 1 1 00104528 -at_once r 2 0 2 2 00048739 00153261 -at_one_time r 2 0 2 1 00153261 00118965 -at_present r 1 0 1 1 00049220 -at_random r 1 0 1 1 00070765 -at_stake r 2 0 2 0 00158936 00158831 -at_that_place r 1 0 1 0 00109151 -at_the_best r 1 0 1 0 00105775 -at_the_least r 1 1 ! 1 1 00104345 -at_the_most r 1 1 ! 1 1 00104528 -at_the_same_time r 2 0 2 2 00120095 00120223 -at_the_worst r 1 0 1 0 00105908 -at_times r 1 0 1 1 00021212 -at_will r 1 0 1 0 00153372 -at_worst r 1 1 ! 1 1 00105908 -athwart r 2 0 2 0 00276145 00274710 -atonally r 1 1 \ 1 1 00236668 -atop r 1 0 1 1 00276225 -atrociously r 2 1 \ 2 1 00055101 00117372 -attentively r 1 1 \ 1 1 00196417 -attractively r 1 2 ! \ 1 0 00242006 -attributively r 1 2 \ ; 1 0 00268651 -atypically r 1 2 ! \ 1 0 00128290 -audaciously r 1 1 \ 1 0 00266955 -audibly r 1 2 ! \ 1 0 00268797 -aurally r 1 1 \ 1 1 00076681 -auspiciously r 1 2 ! \ 1 1 00217434 -austerely r 1 1 \ 1 0 00276279 -authentically r 1 1 \ 1 0 00269153 -authoritatively r 1 1 \ 1 1 00241383 -autocratically r 2 1 \ 2 0 00311430 00203076 -automatically r 2 1 \ 2 1 00005567 00114029 -avariciously r 1 1 \ 1 0 00276391 -avidly r 1 1 \ 1 0 00267137 -avowedly r 2 1 \ 2 0 00276528 00184284 -away r 11 1 ; 11 7 00232936 00233295 00234052 00234553 00235254 00234747 00235438 00235570 00235070 00234951 00233687 -awful r 1 1 ; 1 1 00054950 -awfully r 3 2 \ ; 3 1 00054950 00056340 00055101 -awhile r 1 0 1 1 00144405 -awkwardly r 1 1 \ 1 1 00194737 -awry r 2 0 2 1 00271998 00272169 -axially r 1 1 \ 1 1 00076820 -axiomatically r 1 1 \ 1 0 00121657 -b.c. r 1 0 1 0 00002142 -b.c.e. r 1 0 1 0 00002296 -baby-like r 1 0 1 0 00510393 -baby-wise r 1 0 1 1 00510393 -back r 6 1 ! 6 6 00075161 00074407 00075269 00074201 00075367 00074964 -back_and_forth r 1 0 1 1 00076193 -backstage r 2 1 \ 2 0 00276840 00276729 -backward r 3 1 ! 3 2 00074407 00075966 00074201 -backward_and_forward r 1 0 1 1 00076193 -backwards r 2 0 2 1 00074407 00075966 -bacterially r 1 1 \ 1 0 00129908 -bad r 2 0 2 2 00016458 00016240 -badly r 10 3 ! \ ; 10 2 00015953 00011516 00016950 00016678 00016458 00016240 00014738 00014014 00013236 00012286 -baldly r 1 1 \ 1 0 00277209 -balefully r 1 1 \ 1 0 00277329 -balmily r 1 1 \ 1 0 00303930 -banefully r 1 1 \ 1 0 00277435 -bang r 1 1 ; 1 1 00277585 -bannerlike r 1 0 1 1 00138852 -banteringly r 1 1 \ 1 0 00277728 -barbarously r 1 1 \ 1 0 00277857 -bareback r 1 0 1 0 00277970 -barebacked r 1 0 1 0 00277970 -barefacedly r 1 1 \ 1 0 00209518 -barefoot r 1 0 1 1 00278078 -barefooted r 1 0 1 0 00278078 -barely r 2 1 \ 2 2 00002621 00073763 -basely r 1 1 \ 1 0 00397720 -bashfully r 1 1 \ 1 0 00228910 -basically r 1 0 1 1 00003483 -bawdily r 1 1 \ 1 0 00278188 -bc r 1 0 1 0 00002142 -bce r 1 0 1 0 00002296 -beastly r 1 1 \ 1 0 00269032 -beautifully r 1 1 \ 1 1 00242006 -becomingly r 1 1 \ 1 0 00278259 -befittingly r 1 1 \ 1 0 00139508 -before r 2 0 2 1 00060939 00066781 -before_christ r 1 0 1 0 00002142 -before_long r 1 0 1 1 00033922 -beforehand r 1 0 1 0 00067045 -behind r 5 0 5 2 00221985 00222180 00222879 00222713 00222479 -behindhand r 1 0 1 0 00222479 -belatedly r 1 1 \ 1 0 00100267 -believably r 2 2 ! \ 2 1 00244641 00296131 -believingly r 1 1 ! 1 0 00296658 -belike r 1 0 1 0 00138611 -belligerently r 1 1 \ 1 1 00242478 -below r 5 1 ! 5 4 00080039 00079866 00258282 00094396 00486067 -below_the_belt r 1 0 1 0 00285266 -beneath r 1 0 1 1 00080039 -beneficially r 1 1 \ 1 0 00278366 -benevolently r 1 2 ! \ 1 0 00394593 -benignantly r 1 1 \ 1 0 00278493 -benignly r 1 1 \ 1 0 00278493 -beseechingly r 1 1 \ 1 0 00278633 -besides r 2 0 2 2 00029037 00047534 -best r 3 0 3 2 00188137 00188057 00509846 -best_of_all r 1 0 1 0 00187953 -bestially r 1 1 \ 1 0 00280427 -betimes r 1 0 1 0 00100592 -better r 2 0 2 2 00059607 00509846 -between r 2 0 2 2 00498387 00250898 -between_decks r 1 0 1 0 00498293 -betwixt r 1 0 1 0 00498387 -bewilderedly r 1 1 \ 1 1 00194834 -bewilderingly r 1 0 1 1 00209227 -bewitchingly r 1 1 \ 1 0 00278834 -beyond r 3 0 3 2 00045704 00045897 00045607 -beyond_a_doubt r 1 0 1 0 00373216 -beyond_a_shadow_of_a_doubt r 1 0 1 0 00373216 -beyond_control r 1 0 1 0 00148422 -beyond_doubt r 1 0 1 0 00373216 -beyond_measure r 1 0 1 1 00046545 -biannually r 1 1 \ 1 0 00279174 -biennially r 1 1 \ 1 0 00279050 -big r 4 1 ! 4 2 00226054 00225672 00225892 00225805 -bilaterally r 2 1 \ 2 0 00252965 00252872 -bilingually r 1 1 \ 1 0 00129426 -bimonthly r 2 1 \ 2 0 00255181 00255075 -binaurally r 1 2 ! \ 1 0 00207945 -biochemically r 1 1 \ 1 0 00133987 -biologically r 1 1 \ 1 0 00133613 -biradially r 1 1 \ 1 0 00052659 -bit_by_bit r 2 0 2 0 00422281 00107987 -bitingly r 1 1 \ 1 0 00422435 -bitter r 1 0 1 0 00422435 -bitterly r 3 1 \ 3 2 00052762 00052882 00422435 -biweekly r 2 1 \ 2 0 00254851 00254711 -biyearly r 2 1 \ 2 0 00279050 00255315 -blamelessly r 1 1 \ 1 0 00498747 -blandly r 1 1 \ 1 1 00183716 -blankly r 1 1 \ 1 0 00279278 -blasphemously r 1 1 \ 1 0 00279398 -blatantly r 1 1 \ 1 0 00253498 -bleakly r 1 1 \ 1 1 00175255 -blessedly r 1 1 \ 1 0 00003771 -blindly r 2 1 \ 2 2 00173992 00064189 -blissfully r 1 1 \ 1 1 00274842 -blithely r 1 1 \ 1 1 00050297 -bloodily r 1 2 ! \ 1 0 00269488 -bloodlessly r 1 2 ! \ 1 0 00269299 -bloody r 1 1 ; 1 0 00025144 -bluffly r 1 1 \ 1 0 00279523 -bluntly r 1 1 \ 1 0 00279523 -boastfully r 1 1 \ 1 1 00225672 -bodily r 1 1 \ 1 1 00226353 -body_and_soul r 1 0 1 0 00164353 -boiling r 1 1 ; 1 0 00003846 -boisterously r 1 1 \ 1 0 00221287 -boldly r 1 1 \ 1 1 00185051 -bolt r 2 1 ; 2 1 00194578 00277585 -bombastically r 2 1 \ 2 0 00269726 00269588 -bonnily r 1 1 \ 1 0 00498933 -boorishly r 1 1 \ 1 0 00279763 -boringly r 1 1 \ 1 0 00215048 -boundlessly r 1 1 \ 1 0 00225264 -bounteously r 1 1 \ 1 0 00279867 -bountifully r 1 1 \ 1 0 00279867 -boyishly r 1 1 \ 1 0 00269881 -boylike r 1 1 \ 1 0 00269881 -brashly r 1 1 \ 1 0 00284319 -bravely r 1 1 \ 1 1 00172980 -brazenly r 1 1 \ 1 1 00076948 -breadthways r 1 0 1 0 00280042 -breadthwise r 1 0 1 0 00280042 -breast-deep r 1 0 1 0 00258904 -breast-high r 1 0 1 0 00258904 -breathlessly r 1 1 \ 1 1 00219748 -breezily r 1 1 \ 1 0 00280168 -briefly r 2 1 \ 2 2 00092682 00289860 -bright r 1 0 1 1 00077168 -brightly r 1 1 \ 1 1 00077168 -brilliantly r 2 1 \ 2 2 00077168 00077042 -briskly r 1 1 \ 1 1 00280283 -broad-mindedly r 1 2 ! \ 1 0 00406868 -broadly r 2 2 ! \ 2 1 00221583 00221795 -broadly_speaking r 1 0 1 0 00221583 -broadside r 1 0 1 0 00453422 -broadwise r 1 0 1 0 00280042 -brotherly r 1 2 \ ; 1 0 00289088 -brusquely r 1 1 \ 1 0 00279523 -brutally r 1 0 1 0 00201195 -brutishly r 1 1 \ 1 0 00280427 -bumptiously r 1 1 \ 1 0 00280593 -buoyantly r 1 1 \ 1 0 00280730 -bureaucratically r 2 1 \ 2 0 00281099 00280972 -busily r 1 1 \ 1 1 00208273 -but r 1 0 1 1 00004722 -but_then r 1 0 1 1 00119578 -buxomly r 1 1 \ 1 0 00237278 -by r 2 0 2 1 00417787 00233687 -by_a_long_shot r 1 0 1 1 00155343 -by_all_means r 1 2 ! ; 1 1 00056916 -by_all_odds r 1 0 1 0 00036935 -by_and_by r 1 0 1 0 00155488 -by_and_large r 1 0 1 1 00155621 -by_any_means r 1 0 1 1 00155765 -by_artificial_means r 1 0 1 0 00140566 -by_chance r 3 1 ; 3 0 00420004 00353485 00040547 -by_choice r 1 0 1 0 00062330 -by_design r 1 0 1 1 00062330 -by_experimentation r 1 0 1 0 00085339 -by_far r 1 0 1 1 00047056 -by_fits_and_starts r 1 0 1 0 00156117 -by_hand r 1 1 ! 1 1 00054524 -by_heart r 1 0 1 1 00155893 -by_hook_or_by_crook r 1 0 1 0 00155765 -by_inches r 1 0 1 0 00155995 -by_luck r 1 0 1 1 00353485 -by_machine r 1 1 ! 1 0 00054636 -by_memory r 1 0 1 0 00155893 -by_nature r 1 0 1 1 00505352 -by_no_means r 1 2 ! ; 1 1 00057042 -by_right_of_office r 1 0 1 0 00252499 -by_rights r 1 0 1 0 00505450 -by_small_degrees r 1 0 1 0 00155995 -by_the_bye r 1 0 1 0 00156222 -by_the_day r 1 0 1 0 00250798 -by_the_piece r 1 0 1 0 00156387 -by_the_way r 1 0 1 1 00156222 -by_trial_and_error r 1 0 1 0 00084038 -by_word_of_mouth r 2 0 2 1 00258088 00156496 -c.e. r 1 0 1 0 00001981 -c.o.d. r 1 0 1 0 00253938 -cagily r 1 1 \ 1 0 00281237 -cajolingly r 1 0 1 0 00286265 -calculatingly r 1 1 \ 1 1 00505979 -callously r 1 1 \ 1 1 00238529 -calmly r 2 1 \ 2 2 00186756 00448066 -calumniously r 1 1 \ 1 0 00456790 -candidly r 1 2 \ ; 1 1 00314835 -cannily r 1 1 \ 1 0 00430261 -canonically r 1 1 \ 1 0 00512874 -cantankerously r 1 1 \ 1 0 00281383 -cap-a-pie r 1 0 1 0 00251706 -capably r 1 1 \ 1 0 00185172 -capriciously r 2 1 \ 2 0 00281687 00281491 -captiously r 1 1 \ 1 0 00281834 -captivatingly r 1 1 \ 1 0 00278834 -carefully r 2 2 ! \ 2 2 00153568 00282103 -carelessly r 3 2 ! \ 3 1 00164150 00282444 00221130 -carnally r 1 1 \ 1 0 00430447 -cash_on_delivery r 1 0 1 0 00253938 -casually r 2 1 \ 2 2 00263893 00243086 -catalytically r 1 1 \ 1 0 00077345 -catastrophically r 1 1 \ 1 1 00132921 -categorically r 1 1 \ 1 0 00087188 -caudal r 1 1 \ 1 0 00505521 -caudally r 1 1 \ 1 0 00505521 -causally r 1 1 \ 1 1 00505639 -caustically r 1 1 \ 1 0 00281950 -cautiously r 2 2 ! \ 2 1 00282103 00292503 -cavalierly r 1 1 \ 1 0 00282700 -ce r 1 0 1 0 00001981 -ceaselessly r 1 1 \ 1 0 00282858 -centennially r 1 1 \ 1 0 00283454 -centrally r 1 2 ! \ 1 1 00114750 -cerebrally r 2 1 \ 2 0 00133413 00133321 -ceremonially r 2 1 \ 2 1 00220966 00220669 -ceremoniously r 1 2 ! \ 1 0 00220966 -certainly r 1 2 \ ; 1 1 00144722 -ceteris_paribus r 1 0 1 0 00255542 -cf r 1 0 1 0 00191467 -cf. r 1 0 1 0 00191467 -chaotically r 2 1 \ 2 0 00283743 00283613 -characteristically r 1 2 ! \ 1 1 00247567 -charily r 1 1 \ 1 0 00282364 -charitably r 1 1 \ 1 0 00205699 -charmingly r 1 1 \ 1 0 00236763 -chastely r 1 1 \ 1 0 00283873 -chattily r 1 1 \ 1 0 00284012 -cheaply r 3 2 ! \ 3 0 00466835 00334210 00284183 -cheek_by_jowl r 1 0 1 1 00163480 -cheekily r 1 1 \ 1 0 00284319 -cheerfully r 1 2 ! \ 1 1 00230749 -cheerily r 1 1 \ 1 0 00219325 -cheerlessly r 1 1 ! 1 0 00230877 -chemically r 2 1 \ 2 1 00129228 00129089 -chiefly r 1 1 \ 1 1 00073897 -childishly r 1 1 \ 1 1 00195680 -chintzily r 1 1 \ 1 0 00466835 -chirpily r 1 1 \ 1 0 00280730 -chivalrously r 1 2 ! \ 1 0 00284489 -chock r 1 0 1 0 00253609 -chock-a-block r 1 0 1 0 00253609 -chop-chop r 1 0 1 0 00085811 -chorally r 1 1 \ 1 0 00135998 -chromatically r 1 1 \ 1 0 00064361 -chromatographically r 1 1 \ 1 0 00137459 -chronically r 2 2 ! \ 2 0 00141033 00140884 -chronologically r 1 1 \ 1 1 00064464 -churlishly r 1 1 \ 1 0 00284656 -circularly r 1 1 \ 1 0 00284813 -circumspectly r 1 1 \ 1 0 00281237 -circumstantially r 4 1 \ 4 0 00499340 00499208 00402555 00040547 -civilly r 1 2 ! \ 1 0 00337892 -clammily r 1 1 \ 1 0 00499448 -clamorously r 1 1 \ 1 0 00412708 -clannishly r 1 1 \ 1 0 00284890 -classically r 1 1 \ 1 1 00246934 -clean r 2 1 ; 2 1 00009373 00285092 -cleanly r 3 1 \ 3 1 00230996 00285561 00285447 -clear r 2 0 2 1 00285854 00285687 -clearly r 4 1 \ 4 4 00039058 00202341 00181901 00285687 -cleverly r 1 1 \ 1 1 00187455 -climatically r 1 1 \ 1 0 00286026 -clinically r 1 1 \ 1 1 00064583 -cliquishly r 1 1 \ 1 0 00284890 -clockwise r 1 2 ! \ 1 0 00254369 -close r 2 0 2 2 00409709 00505226 -close_to r 1 0 1 1 00007015 -close_to_the_wind r 1 1 ; 1 0 00160288 -close_up r 1 0 1 1 00410043 -closely r 3 1 \ 3 3 00160440 00505226 00160659 -closer r 1 1 ; 1 1 00407802 -closest r 1 1 ; 1 0 00408021 -cloyingly r 1 1 \ 1 0 00253713 -clumsily r 1 1 \ 1 1 00190359 -coarsely r 1 2 ! \ 1 1 00190709 -coastward r 1 0 1 0 00447511 -coastwise r 1 0 1 0 00286166 -coaxingly r 1 0 1 0 00286265 -cod r 1 0 1 0 00253938 -cognitively r 1 1 \ 1 0 00512992 -coherently r 1 2 ! \ 1 0 00286371 -coincidentally r 1 1 \ 1 0 00510629 -coincidently r 1 1 \ 1 0 00510629 -cold-bloodedly r 1 1 \ 1 1 00342498 -coldly r 1 1 \ 1 1 00164890 -collect r 1 0 1 0 00253794 -collectedly r 1 1 \ 1 0 00286889 -collectively r 1 1 \ 1 1 00117082 -colloidally r 1 1 \ 1 0 00287074 -colloquially r 1 1 \ 1 0 00286667 -combatively r 1 1 \ 1 0 00287207 -come_hell_or_high_water r 1 0 1 0 00156833 -comfortably r 3 2 ! \ 3 2 00154885 00155020 00013626 -comfortingly r 1 1 \ 1 0 00287399 -comically r 1 1 \ 1 1 00081375 -commendable r 1 1 \ 1 0 00218886 -commensally r 1 1 \ 1 0 00243235 -commercially r 1 1 \ 1 1 00077497 -common_era r 1 0 1 0 00001981 -commonly r 1 1 \ 1 1 00106921 -communally r 1 1 \ 1 0 00162938 -compactly r 3 1 \ 3 0 00300002 00290308 00287601 -comparably r 1 2 ! \ 1 0 00370597 -comparatively r 1 1 \ 1 1 00160834 -compassionately r 1 1 \ 1 1 00238281 -compatibly r 1 2 ! \ 1 0 00287749 -competently r 1 2 ! \ 1 1 00185172 -competitively r 1 2 ! \ 1 1 00243314 -complacently r 1 1 \ 1 0 00287940 -complainingly r 1 2 ! \ 1 0 00288307 -completely r 2 2 \ ; 2 2 00008007 00157624 -complexly r 1 1 \ 1 0 00513098 -composedly r 1 1 \ 1 0 00286889 -comprehensively r 1 2 ! \ 1 1 00288450 -compulsively r 1 1 \ 1 1 00243608 -compulsorily r 1 1 \ 1 0 00288655 -computationally r 1 1 \ 1 0 00288955 -con r 1 1 ! 1 0 00289294 -con_brio r 1 2 \ ; 1 0 00019900 -concavely r 1 2 ! \ 1 0 00499823 -conceitedly r 1 1 \ 1 0 00289421 -conceivably r 1 1 \ 1 1 00193759 -conceptually r 1 1 \ 1 1 00289586 -concernedly r 1 0 1 0 00289748 -concisely r 1 1 \ 1 0 00289860 -conclusively r 1 2 ! \ 1 1 00092985 -concretely r 1 2 ! \ 1 1 00197811 -concurrently r 1 1 \ 1 0 00120223 -condescendingly r 1 1 \ 1 0 00292133 -conditionally r 1 1 ! 1 0 00292684 -confessedly r 1 0 1 0 00184284 -confidentially r 1 1 \ 1 1 00169312 -confidently r 1 1 \ 1 1 00212727 -confidingly r 1 1 \ 1 0 00320568 -conformably r 1 1 \ 1 0 00023493 -confoundedly r 1 1 \ 1 0 00420525 -confusedly r 1 1 \ 1 0 00294289 -confusingly r 1 1 \ 1 0 00209227 -congenially r 1 1 \ 1 0 00302340 -conically r 1 1 \ 1 0 00290527 -conjecturally r 1 1 \ 1 0 00020019 -conjointly r 1 1 \ 1 0 00117082 -conjugally r 1 1 \ 1 0 00499521 -connubial r 1 1 \ 1 0 00499521 -conscientiously r 1 1 \ 1 0 00178586 -consciously r 1 2 ! \ 1 1 00242663 -consecutive r 1 1 \ 1 0 00292349 -consecutively r 1 1 \ 1 0 00020142 -consequentially r 1 1 ! 1 0 00294702 -consequently r 2 1 \ 2 2 00062857 00294459 -conservatively r 1 0 1 1 00292503 -considerably r 1 1 \ 1 1 00014285 -considerately r 1 2 ! \ 1 1 00182775 -consistently r 1 2 ! \ 1 1 00120474 -consolingly r 1 1 \ 1 0 00287399 -conspicuously r 2 2 ! \ 2 2 00370920 00208390 -constantly r 2 1 \ 2 2 00020476 00020280 -constitutionally r 1 2 ! \ 1 0 00122124 -constrainedly r 1 1 \ 1 0 00499628 -constructively r 1 1 \ 1 1 00295006 -contagiously r 1 1 \ 1 0 00302477 -contemporaneously r 1 1 \ 1 0 00295176 -contemptibly r 1 1 \ 1 0 00080445 -contemptuously r 1 1 \ 1 1 00080534 -contentedly r 1 1 \ 1 1 00238169 -contextually r 1 1 \ 1 0 00510852 -continually r 1 1 \ 1 1 00088931 -continuously r 2 1 \ 2 2 00191656 00282858 -contractually r 1 1 \ 1 0 00080768 -contradictorily r 1 1 \ 1 1 00141146 -contrarily r 2 1 \ 2 0 00247969 00170412 -contrariwise r 3 0 3 0 00247969 00177686 00170412 -contrastingly r 1 1 \ 1 0 00295366 -contritely r 1 1 \ 1 0 00217998 -controversially r 1 2 ! \ 1 0 00302622 -contumaciously r 1 1 \ 1 0 00198661 -contumeliously r 1 1 \ 1 0 00080534 -conveniently r 1 2 ! \ 1 1 00197395 -conventionally r 1 2 ! \ 1 1 00023574 -conversationally r 1 1 \ 1 0 00286667 -conversely r 1 1 \ 1 1 00078050 -convexly r 1 2 ! \ 1 0 00499711 -convincingly r 1 2 ! \ 1 1 00192511 -convivially r 1 1 \ 1 0 00302902 -convulsively r 1 1 \ 1 1 00198531 -coolly r 1 1 \ 1 1 00295545 -cooperatively r 1 1 \ 1 0 00163340 -coordinately r 1 1 \ 1 0 00499933 -copiously r 1 1 \ 1 0 00214554 -coquettishly r 1 1 \ 1 0 00303034 -cordially r 1 1 \ 1 0 00219855 -correctly r 1 1 ! 1 1 00203922 -correspondingly r 1 0 1 1 00187228 -corruptedly r 1 0 1 0 00500015 -corruptly r 1 1 \ 1 0 00500015 -cortically r 1 1 \ 1 1 00093618 -cosily r 1 0 1 1 00187120 -cosmetically r 1 1 \ 1 0 00078187 -coterminously r 1 1 \ 1 0 00020676 -counter r 1 0 1 1 00293253 -counteractively r 1 1 \ 1 0 00293329 -counterclockwise r 1 2 ! \ 1 0 00254059 -counterintuitively r 1 1 \ 1 0 00254276 -courageously r 1 1 \ 1 0 00172980 -course r 1 0 1 1 00038625 -courteously r 1 2 ! \ 1 0 00218479 -covertly r 1 2 ! \ 1 1 00078445 -covetously r 2 1 \ 2 0 00303177 00276391 -coyly r 1 1 \ 1 0 00291916 -cozily r 1 1 \ 1 0 00187120 -craftily r 1 1 \ 1 0 00293926 -crazily r 1 1 \ 1 1 00080890 -creakily r 1 1 \ 1 0 00303376 -creakingly r 1 0 1 0 00303376 -creatively r 1 1 \ 1 1 00176139 -credibly r 1 2 ! \ 1 0 00296131 -creditably r 1 1 \ 1 0 00442384 -credulously r 1 2 ! \ 1 0 00296658 -criminally r 2 1 \ 2 0 00291765 00291589 -crisply r 1 1 \ 1 0 00211651 -crisscross r 1 0 1 0 00293171 -critically r 1 2 ! \ 1 1 00184778 -crookedly r 1 1 \ 1 0 00240954 -cross-country r 2 0 2 0 00293543 00293416 -cross-legged r 1 0 1 1 00292021 -cross-linguistically r 1 1 \ 1 0 00131289 -crossly r 1 1 \ 1 0 00293650 -crosstown r 1 1 \ 1 0 00293824 -crossways r 1 0 1 0 00272844 -crosswise r 2 0 2 0 00293077 00272844 -crucially r 1 1 \ 1 0 00292934 -crudely r 2 1 \ 2 1 00161523 00274527 -cruelly r 2 1 \ 2 1 00232425 00232499 -crushingly r 1 1 \ 1 0 00303534 -cryptically r 1 1 \ 1 0 00296836 -cryptographically r 1 1 \ 1 0 00297023 -culpably r 1 1 \ 1 0 00303647 -culturally r 1 1 \ 1 1 00135796 -cum_laude r 1 1 \ 1 0 00291276 -cumulatively r 1 1 \ 1 0 00291083 -cunningly r 2 1 \ 2 0 00297112 00293926 -curiously r 2 1 \ 2 2 00035491 00081881 -currently r 1 1 \ 1 1 00048268 -currishly r 1 1 \ 1 0 00303789 -cursedly r 1 1 \ 1 0 00297563 -cursively r 1 1 \ 1 0 00513173 -cursorily r 1 1 \ 1 0 00290935 -curtly r 1 1 \ 1 1 00297319 -curvaceously r 1 1 \ 1 1 00237278 -cussedly r 1 1 \ 1 0 00198845 -customarily r 1 1 \ 1 1 00211061 -cutely r 1 1 \ 1 0 00297112 -cuttingly r 1 1 \ 1 0 00370154 -cynically r 1 1 \ 1 0 00290622 -cytophotometrically r 1 1 \ 1 0 00290762 -cytoplasmically r 1 1 \ 1 0 00290852 -daftly r 1 1 \ 1 0 00303930 -daily r 2 1 \ 2 1 00081486 00177818 -daintily r 2 1 \ 2 1 00304173 00304283 -damn r 1 1 ; 1 1 00025144 -damnably r 1 1 \ 1 0 00297563 -damned r 1 0 1 1 00297563 -damply r 1 1 \ 1 0 00297741 -dandily r 1 1 \ 1 1 00503669 -dangerously r 1 1 \ 1 1 00090228 -daringly r 2 1 \ 2 0 00304561 00304425 -darkly r 2 1 \ 2 1 00206144 00206271 -dashingly r 1 1 \ 1 0 00304672 -dauntingly r 1 1 \ 1 0 00297943 -dauntlessly r 1 1 \ 1 0 00199687 -day_after_day r 1 0 1 1 00177926 -day_by_day r 1 0 1 1 00177818 -day_in_and_day_out r 1 0 1 0 00157000 -day_in_day_out r 1 0 1 0 00177926 -daylong r 1 0 1 0 00304787 -dazedly r 1 1 \ 1 0 00298062 -dazzlingly r 1 1 \ 1 0 00082039 -de_facto r 1 0 1 0 00060197 -de_jure r 1 0 1 0 00251820 -de_novo r 1 1 ; 1 0 00113009 -dead r 2 0 2 0 00061528 00008997 -dead_ahead r 1 0 1 0 00157114 -deadly r 2 2 \ ; 2 0 00304898 00046639 -deadpan r 1 0 1 0 00157210 -dear r 2 0 2 0 00077747 00077619 -dearly r 3 1 \ 3 2 00077912 00077619 00077747 -deathly r 1 0 1 0 00254527 -deceitfully r 1 1 \ 1 0 00314597 -deceivingly r 1 0 1 0 00082148 -decent r 1 0 1 1 00196203 -decently r 2 2 ! \ 2 1 00247194 00196203 -deceptively r 1 1 \ 1 1 00082148 -decidedly r 1 1 \ 1 1 00036935 -decipherably r 1 1 \ 1 0 00362276 -decisively r 3 2 ! \ 3 1 00298765 00298413 00298266 -decoratively r 1 1 \ 1 0 00078330 -decorously r 1 2 ! \ 1 0 00304992 -deep r 3 1 \ 3 1 00305570 00305821 00305683 -deep_down r 1 0 1 0 00104099 -deeply r 2 1 \ 2 2 00173353 00305570 -defectively r 1 1 \ 1 0 00500104 -defenceless r 1 1 \ 1 0 00306059 -defencelessly r 1 0 1 0 00306059 -defenseless r 1 1 \ 1 0 00306059 -defenselessly r 1 0 1 0 00306059 -defensively r 2 2 ! \ 2 0 00306520 00306268 -deferentially r 2 1 \ 2 0 00308031 00307906 -defiantly r 1 1 \ 1 0 00198661 -definitely r 1 0 1 1 00036935 -deftly r 2 1 \ 2 0 00310533 00299059 -dejectedly r 1 1 \ 1 0 00299161 -deliberately r 2 2 ! \ 2 2 00062330 00507323 -delicately r 1 1 \ 1 1 00102463 -deliciously r 2 1 \ 2 1 00228546 00393688 -delightedly r 1 1 \ 1 0 00299334 -delightfully r 1 1 \ 1 1 00299448 -deliriously r 2 1 \ 2 1 00308200 00308307 -delusively r 1 1 \ 1 0 00308427 -demandingly r 1 1 \ 1 1 00502447 -demeaningly r 1 1 \ 1 0 00211231 -dementedly r 1 1 \ 1 0 00080890 -democratically r 1 2 ! \ 1 0 00122427 -demoniacally r 1 0 1 0 00106036 -demonstrably r 1 1 \ 1 1 00308559 -demonstratively r 1 1 \ 1 0 00326968 -demurely r 1 1 \ 1 0 00299603 -denominationally r 1 1 \ 1 1 00093489 -densely r 2 1 \ 2 0 00323315 00299753 -departmentally r 1 1 \ 1 0 00510943 -dependably r 1 2 ! \ 1 0 00223395 -deplorably r 1 1 \ 1 1 00093270 -deprecatively r 1 1 \ 1 0 00082492 -depressingly r 1 1 \ 1 0 00082575 -derisively r 1 1 \ 1 0 00301168 -derisorily r 1 0 1 0 00301168 -descriptively r 1 1 \ 1 0 00301354 -deservedly r 1 1 ! 1 0 00301495 -designedly r 1 0 1 0 00062330 -desolately r 1 0 1 0 00308767 -despairingly r 1 1 \ 1 1 00301840 -desperately r 2 1 \ 2 2 00072849 00506807 -despicably r 1 1 \ 1 0 00309249 -despitefully r 1 1 \ 1 0 00309351 -despondently r 1 1 \ 1 0 00301840 -destructively r 1 1 \ 1 0 00309515 -determinedly r 2 1 \ 2 1 00212208 00262206 -detestably r 1 1 \ 1 0 00309632 -detrimentally r 1 1 \ 1 0 00309875 -deucedly r 1 1 ; 1 0 00046639 -developmentally r 1 1 \ 1 0 00302003 -devilish r 1 0 1 0 00302120 -devilishly r 3 2 \ ; 3 0 00308916 00302120 00046639 -deviously r 1 1 \ 1 0 00310169 -devotedly r 1 1 \ 1 0 00310290 -devoutly r 1 1 \ 1 0 00310393 -dexterously r 1 1 \ 1 1 00310533 -dextrously r 1 1 \ 1 0 00310533 -diabolically r 1 1 \ 1 0 00308916 -diagonally r 1 1 \ 1 0 00310720 -diagrammatically r 1 1 \ 1 0 00310847 -dialectically r 1 1 \ 1 1 00248104 -diametrically r 1 1 \ 1 1 00311057 -dichotomously r 1 1 \ 1 0 00082682 -dictatorially r 1 1 \ 1 0 00311430 -didactically r 1 1 \ 1 0 00311651 -differentially r 1 1 \ 1 0 00311803 -differently r 1 1 \ 1 1 00113082 -diffidently r 1 1 \ 1 1 00309111 -diffusely r 1 1 \ 1 1 00190466 -digitally r 2 1 \ 2 0 00123112 00123000 -digitately r 1 1 \ 1 0 00082765 -diligently r 1 1 \ 1 0 00312027 -dimly r 3 1 \ 3 1 00211815 00417139 00211964 -dingdong r 1 1 ; 1 0 00091032 -dingily r 1 1 \ 1 0 00500226 -diplomatically r 1 2 ! \ 1 0 00203201 -direct r 1 0 1 0 00051848 -directly r 4 2 ! \ 4 4 00051848 00504281 00048739 00058128 -direfully r 1 1 \ 1 0 00312252 -dirtily r 2 1 \ 2 0 00312520 00312377 -disadvantageously r 1 2 ! \ 1 0 00014014 -disagreeably r 1 2 ! \ 1 0 00312603 -disappointedly r 1 1 \ 1 0 00312775 -disappointingly r 1 1 \ 1 0 00312925 -disapprovingly r 1 1 ! 1 0 00262090 -disastrously r 1 1 \ 1 0 00313092 -disbelievingly r 1 1 \ 1 0 00296425 -disconcertingly r 1 1 \ 1 1 00313263 -disconsolately r 1 1 \ 1 0 00308767 -discontentedly r 1 1 \ 1 0 00313436 -discordantly r 1 1 \ 1 0 00236164 -discouragingly r 1 2 ! \ 1 0 00328830 -discourteously r 1 2 ! \ 1 0 00218681 -discreditably r 1 1 \ 1 0 00313633 -discreetly r 1 2 ! \ 1 1 00372660 -discursively r 1 1 \ 1 0 00500355 -disdainfully r 2 1 \ 2 0 00282700 00080534 -disgracefully r 1 1 \ 1 0 00313633 -disgustedly r 1 1 \ 1 0 00313981 -disgustingly r 1 1 \ 1 0 00314141 -dishonestly r 1 2 ! \ 1 0 00314597 -dishonorably r 3 2 ! \ 3 0 00491024 00315333 00313633 -dishonourably r 1 1 \ 1 0 00313633 -disingenuously r 1 1 \ 1 0 00315595 -disinterestedly r 1 1 \ 1 0 00315780 -disjointedly r 1 1 \ 1 0 00315918 -disloyally r 1 2 ! \ 1 0 00316318 -dismally r 2 1 \ 2 1 00316734 00316486 -disobediently r 1 2 ! \ 1 0 00317205 -disparagingly r 1 1 \ 1 0 00317562 -dispassionately r 1 1 \ 1 1 00317390 -dispiritedly r 1 1 \ 1 0 00317766 -displaying_incompetence r 1 0 1 0 00185400 -displeasingly r 1 1 \ 1 0 00318001 -disproportionately r 2 2 ! \ 2 0 00318501 00318143 -disputatiously r 1 1 \ 1 0 00318830 -disquietingly r 1 1 \ 1 0 00318951 -disregarding r 1 0 1 0 00118531 -disregardless r 1 0 1 1 00118531 -disreputably r 1 2 ! \ 1 0 00319079 -disrespectfully r 1 2 ! \ 1 0 00319482 -disruptively r 1 1 \ 1 0 00082842 -dissolutely r 1 1 \ 1 0 00500447 -distally r 1 2 \ ; 1 1 00176253 -distantly r 1 1 \ 1 0 00319635 -distastefully r 2 1 \ 2 1 00319765 00314141 -distinctively r 1 1 \ 1 1 00501452 -distinctly r 3 1 \ 3 1 00181901 00307639 00307479 -distractedly r 1 1 \ 1 1 00307790 -distressfully r 1 1 \ 1 0 00319931 -distressingly r 1 1 \ 1 0 00114609 -distributively r 2 1 \ 2 0 00320237 00320074 -distrustfully r 1 2 ! \ 1 0 00320408 -disturbingly r 1 1 \ 1 1 00320777 -diversely r 1 1 \ 1 0 00052231 -divertingly r 1 1 \ 1 0 00094177 -divinely r 1 1 \ 1 1 00190075 -dizzily r 1 1 \ 1 1 00082923 -doctrinally r 1 1 \ 1 1 00320934 -doggedly r 1 1 \ 1 1 00235701 -doggo r 1 0 1 0 00252249 -dogmatically r 1 1 \ 1 1 00321015 -dolce r 1 1 ; 1 0 00513248 -dolefully r 1 1 \ 1 0 00321165 -doltishly r 1 1 \ 1 0 00175344 -domestically r 2 1 \ 2 0 00321524 00321366 -domineeringly r 1 1 \ 1 0 00321707 -dorsally r 1 1 \ 1 0 00083080 -dorsoventrally r 1 1 \ 1 0 00083168 -dottily r 1 1 \ 1 0 00303930 -double r 3 0 3 0 00321906 00321824 00083393 -double_quick r 1 0 1 0 00321993 -double_time r 1 0 1 0 00321993 -doubly r 2 1 \ 2 1 00083393 00083947 -doubtfully r 1 1 \ 1 0 00322112 -doubtless r 1 0 1 1 00079107 -doubtlessly r 1 0 1 0 00079107 -dourly r 1 1 \ 1 1 00242321 -dowdily r 1 1 \ 1 0 00322255 -down r 6 1 ! 6 3 00095320 00095612 00095841 00096232 00096089 00095946 -down_the_stairs r 1 0 1 1 00094396 -downfield r 1 1 ; 1 0 00097358 -downhill r 2 0 2 0 00322533 00322423 -downright r 1 1 ; 1 1 00097522 -downriver r 1 1 ! 1 0 00097231 -downstage r 1 2 ! ; 1 0 00264179 -downstairs r 1 1 ! 1 1 00094396 -downstream r 1 1 ! 1 1 00097231 -downtown r 1 1 ! 1 0 00187852 -downward r 1 1 ! 1 1 00095320 -downwardly r 1 1 ! 1 0 00095320 -downwards r 1 1 ! 1 0 00095320 -downwind r 2 1 ! 2 1 00094765 00095063 -drably r 1 1 \ 1 0 00322666 -draggingly r 1 1 \ 1 0 00513319 -dramatically r 3 2 ! \ 3 3 00246802 00138945 00188353 -drastically r 1 1 \ 1 1 00056652 -dreadfully r 2 1 \ 2 1 00056340 00316486 -dreamfully r 1 0 1 1 00322757 -dreamily r 1 1 \ 1 0 00322757 -drearily r 1 1 \ 1 1 00316734 -drily r 1 1 \ 1 0 00231457 -drippily r 1 1 \ 1 0 00396200 -dripping r 1 0 1 0 00461405 -droopingly r 1 1 \ 1 0 00322939 -drop-dead r 1 1 ; 1 0 00046449 -drowsily r 1 1 \ 1 1 00323049 -drunkenly r 1 1 \ 1 1 00199220 -dryly r 1 1 \ 1 1 00231457 -dubiously r 2 1 \ 2 0 00437796 00322112 -due r 1 0 1 0 00052152 -dully r 2 1 \ 2 2 00236294 00236393 -duly r 1 1 \ 1 1 00064691 -dumbly r 2 1 \ 2 0 00323315 00323193 -dutifully r 1 1 \ 1 0 00323519 -dynamically r 1 1 \ 1 0 00323666 -e'en r 1 0 1 0 00018265 -e'er r 1 0 1 0 00019339 -e.g. r 1 0 1 1 00159040 -each r 1 0 1 1 00239908 -each_week r 1 0 1 1 00081591 -each_year r 2 0 2 1 00081737 00250570 -eagerly r 1 1 \ 1 1 00200777 -earlier r 3 0 3 3 00060939 00259096 00167286 -earliest r 1 0 1 1 00034641 -early r 3 1 ! 3 3 00100681 00100082 00100592 -early_on r 1 0 1 0 00100681 -earnestly r 1 1 \ 1 1 00165018 -easily r 3 2 \ ; 3 2 00147876 00054435 00012531 -east r 1 0 1 1 00323786 -easterly r 1 2 ! \ 1 0 00324235 -eastward r 1 0 1 1 00324135 -eastwards r 1 0 1 0 00324135 -easy r 3 2 \ ; 3 1 00147876 00161630 00148139 -ebulliently r 1 1 \ 1 0 00324589 -eccentrically r 2 1 \ 2 0 00513500 00513396 -ecclesiastically r 1 1 \ 1 0 00324841 -ecologically r 1 1 \ 1 0 00324976 -economically r 3 1 \ 3 1 00123229 00123500 00123365 -ecstatically r 1 1 \ 1 0 00325139 -edgeways r 2 0 2 0 00325493 00325343 -edgewise r 2 0 2 1 00325343 00325493 -editorially r 1 1 \ 1 1 00226891 -educationally r 1 1 \ 1 0 00325603 -eerily r 1 0 1 0 00325802 -effectively r 2 2 ! \ 2 2 00326324 00060032 -effectually r 1 1 ! 1 1 00325912 -efficaciously r 1 2 ! \ 1 0 00326324 -efficiently r 1 2 ! \ 1 1 00235843 -effortlessly r 1 1 \ 1 1 00196999 -effusively r 1 1 \ 1 0 00326852 -egotistically r 1 1 \ 1 0 00327089 -either r 1 0 1 1 00024893 -elaborately r 1 1 \ 1 1 00084840 -electrically r 1 1 \ 1 1 00128989 -electronically r 1 1 \ 1 0 00123582 -electrostatically r 1 1 \ 1 0 00141262 -elegantly r 2 2 ! \ 2 0 00327601 00327408 -elementarily r 1 1 \ 1 0 00326770 -eloquently r 2 2 ! \ 2 0 00327848 00268312 -elsewhere r 1 0 1 1 00085002 -embarrassingly r 1 1 \ 1 0 00328235 -eminently r 1 1 \ 1 1 00328378 -emotionally r 2 2 ! \ 2 2 00185670 00185567 -empathetically r 1 1 \ 1 0 00192153 -emphatically r 1 1 \ 1 1 00036935 -empirically r 1 2 ! \ 1 1 00084038 -emulously r 1 1 \ 1 0 00328539 -en_bloc r 1 0 1 0 00157304 -en_clair r 1 0 1 0 00252348 -en_famille r 1 0 1 0 00252405 -en_masse r 1 0 1 0 00157304 -en_passant r 1 0 1 0 00166375 -en_route r 1 0 1 0 00171322 -enchantingly r 1 1 \ 1 0 00278834 -encouragingly r 1 2 ! \ 1 1 00328679 -end-to-end r 1 0 1 0 00103087 -end_on r 1 0 1 0 00328992 -endearingly r 1 1 \ 1 0 00265298 -endlessly r 4 1 \ 4 2 00224941 00282858 00380325 00283235 -endogenously r 1 1 \ 1 0 00513593 -enduringly r 1 1 \ 1 1 00250363 -endways r 3 0 3 0 00329230 00329114 00328992 -endwise r 3 0 3 0 00329230 00329114 00328992 -energetically r 1 1 \ 1 1 00090651 -engagingly r 1 1 \ 1 1 00236840 -enigmatically r 1 1 \ 1 0 00296836 -enjoyably r 1 1 \ 1 0 00219110 -enormously r 1 1 \ 1 1 00196540 -enough r 1 0 1 1 00145713 -enquiringly r 1 0 1 0 00376428 -enterprisingly r 1 1 \ 1 0 00329336 -entertainingly r 1 0 1 0 00329478 -enthrallingly r 1 1 \ 1 0 00278834 -enthusiastically r 2 2 ! \ 2 1 00188779 00456484 -entirely r 2 2 \ ; 2 2 00008007 00008600 -entreatingly r 1 0 1 0 00278633 -enviably r 1 1 \ 1 1 00003925 -enviously r 1 1 \ 1 0 00303177 -environmentally r 1 1 \ 1 0 00329635 -episodically r 1 1 \ 1 0 00141405 -equably r 1 1 \ 1 0 00329768 -equally r 2 2 ! \ 2 2 00022131 00332069 -equitably r 1 2 ! \ 1 0 00329878 -equivocally r 1 1 \ 1 0 00220323 -erectly r 1 1 \ 1 0 00330203 -ergo r 1 0 1 0 00043347 -erotically r 1 1 \ 1 0 00513675 -erratically r 1 1 \ 1 1 00107722 -erroneously r 1 1 \ 1 0 00195542 -erst r 1 0 1 0 00118965 -erstwhile r 1 0 1 0 00118965 -eruditely r 1 1 \ 1 0 00330337 -eschatologically r 1 1 \ 1 0 00085116 -especially r 2 1 \ 2 1 00084223 00502710 -essentially r 1 1 \ 1 1 00003483 -esthetically r 1 1 \ 1 0 00261231 -et_al r 2 0 2 0 00191178 00191058 -et_al. r 2 0 2 1 00191178 00191058 -et_alia r 1 0 1 0 00191178 -et_aliae r 1 0 1 0 00191178 -et_alibi r 1 0 1 0 00191058 -et_alii r 1 0 1 0 00191178 -etc. r 1 0 1 1 00103664 -etcetera r 1 0 1 1 00103664 -eternally r 1 1 \ 1 1 00087542 -ethically r 1 2 ! \ 1 0 00330505 -ethnically r 1 1 \ 1 0 00123695 -euphemistically r 1 1 \ 1 0 00330833 -evasively r 1 1 \ 1 0 00330989 -even r 4 0 4 3 00017445 00018043 00017639 00018189 -even_a_little r 1 0 1 0 00150558 -even_as r 1 0 1 1 00017881 -even_so r 1 0 1 1 00027384 -evenhandedly r 1 0 1 0 00106759 -evenly r 2 2 ! \ 2 0 00332069 00331194 -eventually r 1 1 \ 1 1 00048138 -ever r 3 2 ! ; 3 3 00146387 00019339 00212604 -ever_so r 1 1 ; 1 0 00212604 -everlastingly r 1 1 \ 1 1 00087542 -evermore r 2 0 2 0 00332596 00087542 -every_bit r 1 0 1 1 00022131 -every_inch r 1 0 1 0 00157528 -every_night r 1 0 1 1 00410210 -every_now_and_then r 1 0 1 0 00157412 -every_quarter r 1 0 1 0 00436848 -every_so_often r 1 0 1 1 00157412 -every_week r 1 0 1 1 00081591 -every_which_way r 2 0 2 1 00070765 00163590 -every_year r 1 0 1 1 00081737 -everyplace r 1 1 ; 1 0 00025728 -everywhere r 1 1 ; 1 1 00025728 -evidently r 1 2 \ ; 1 1 00039318 -evilly r 1 1 \ 1 0 00144586 -evolutionarily r 1 1 \ 1 0 00331291 -ex_cathedra r 1 0 1 0 00084612 -ex_officio r 1 0 1 0 00252499 -ex_tempore r 1 0 1 0 00259467 -ex_vivo r 1 0 1 0 00513929 -exactly r 3 2 ! \ 3 2 00158309 00368663 00368287 -exaggeratedly r 1 0 1 0 00189514 -exasperatingly r 1 1 \ 1 0 00085253 -exceedingly r 1 0 1 1 00046299 -excellently r 1 1 \ 1 1 00182316 -exceptionally r 1 1 \ 1 1 00178793 -excessively r 1 1 \ 1 0 00047392 -excitedly r 1 1 \ 1 1 00153977 -excitingly r 1 2 ! \ 1 0 00332714 -exclusively r 1 1 \ 1 1 00008600 -excruciatingly r 1 1 \ 1 0 00261389 -excusably r 1 2 ! \ 1 0 00333096 -exhaustively r 1 0 1 1 00057257 -exorbitantly r 1 1 \ 1 0 00333613 -expansively r 2 1 \ 2 1 00504718 00324589 -expectantly r 1 1 \ 1 1 00246077 -expediently r 1 2 ! \ 1 0 00333808 -expeditiously r 1 1 \ 1 0 00235843 -expensively r 1 2 ! \ 1 0 00334040 -experimentally r 1 1 \ 1 1 00085339 -expertly r 1 2 ! \ 1 0 00214289 -explicitly r 1 2 ! \ 1 1 00367418 -explosively r 2 1 \ 2 1 00334396 00334516 -exponentially r 1 1 \ 1 0 00334668 -express r 1 0 1 1 00334790 -expressively r 1 1 ! 1 1 00334870 -expressly r 1 1 \ 1 1 00085512 -exquisitely r 1 1 \ 1 0 00102463 -extemporaneously r 1 1 \ 1 0 00335182 -extemporarily r 1 1 \ 1 0 00335182 -extempore r 1 0 1 0 00335182 -extensively r 1 1 \ 1 1 00036609 -externally r 2 2 ! \ 2 0 00249300 00230331 -extortionately r 1 1 \ 1 0 00333613 -extra r 1 0 1 0 00084759 -extraordinarily r 1 1 \ 1 1 00046863 -extravagantly r 3 1 \ 3 1 00214554 00335345 00187617 -extremely r 2 1 \ 2 2 00089408 00046299 -exuberantly r 2 1 \ 2 0 00335544 00324589 -exultantly r 1 1 \ 1 1 00227423 -exultingly r 1 1 \ 1 0 00227423 -fabulously r 1 0 1 0 00032180 -face-to-face r 2 0 2 1 00044754 00044861 -face_to_face r 1 0 1 1 00044394 -facetiously r 1 1 \ 1 1 00085667 -facially r 1 1 \ 1 0 00136188 -factually r 1 1 \ 1 0 00148627 -faddily r 1 1 \ 1 0 00335706 -faddishly r 1 1 \ 1 0 00335706 -fain r 1 0 1 0 00348110 -faintly r 1 1 \ 1 1 00070366 -fair r 2 0 2 0 00285092 00106759 -fairly r 3 2 ! \ 3 2 00035718 00106759 00285092 -faithfully r 1 2 ! \ 1 1 00223395 -faithlessly r 1 1 \ 1 0 00335809 -false r 1 0 1 0 00335809 -falsely r 2 1 \ 2 0 00336293 00336065 -falteringly r 1 1 \ 1 0 00174232 -familiarly r 1 1 \ 1 1 00336567 -famously r 2 1 \ 2 0 00336789 00182316 -fanatically r 1 1 \ 1 0 00336925 -fancifully r 1 1 \ 1 0 00337068 -fantastically r 1 0 1 0 00032180 -far r 5 0 5 4 00101323 00101051 00101490 00101201 00101655 -far_and_away r 1 0 1 0 00047056 -far_and_near r 1 0 1 0 00102029 -far_and_wide r 1 0 1 0 00102029 -farcically r 1 1 \ 1 0 00337206 -farther r 2 0 2 2 00029985 00029639 -farthest r 2 0 2 1 00030654 00030914 -fascinatingly r 1 1 \ 1 1 00237152 -fashionably r 1 2 ! \ 1 0 00337313 -fast r 2 0 2 2 00086000 00086404 -faster r 1 1 \ 1 1 00086528 -fastest r 1 1 \ 1 0 00086685 -fastidiously r 2 1 \ 2 0 00416553 00337681 -fatally r 1 1 \ 1 1 00506577 -fatefully r 1 1 \ 1 0 00338151 -fatuously r 1 1 \ 1 0 00201893 -faultily r 1 1 \ 1 0 00338292 -faultlessly r 1 1 \ 1 0 00338421 -favorably r 1 2 ! \ 1 1 00230444 -favourably r 1 0 1 0 00230444 -fearfully r 2 2 ! \ 2 2 00199565 00505744 -fearlessly r 1 2 ! \ 1 0 00199687 -fearsomely r 1 1 \ 1 0 00338559 -feasibly r 1 2 \ + 1 0 00428572 -fecklessly r 2 1 \ 2 0 00228253 00163881 -federally r 1 1 \ 1 0 00123819 -feebly r 2 1 \ 2 0 00338837 00338704 -feelingly r 1 1 ! 1 0 00339029 -feetfirst r 1 0 1 0 00245305 -felicitously r 1 2 ! \ 1 0 00339318 -ferociously r 1 1 \ 1 1 00245402 -fervently r 1 1 \ 1 1 00339599 -fervidly r 1 1 \ 1 0 00339599 -feudally r 1 1 \ 1 0 00141587 -feverishly r 1 1 \ 1 1 00141485 -fictitiously r 2 1 \ 2 0 00102367 00102258 -fiendishly r 1 1 \ 1 0 00308916 -fiercely r 2 1 \ 2 1 00245402 00245588 -fierily r 1 1 \ 1 0 00339599 -fifthly r 1 1 \ 1 0 00339866 -figuratively r 1 2 ! \ 1 1 00340006 -filthily r 1 1 \ 1 0 00312377 -finally r 3 1 \ 3 3 00048138 00047903 00065822 -financially r 1 1 \ 1 1 00207127 -fine r 2 0 2 2 00053004 00102463 -finely r 3 2 ! \ 3 2 00190837 00102637 00102463 -finitely r 1 2 ! \ 1 0 00225119 -firm r 1 0 1 1 00050817 -firmly r 3 1 \ 3 3 00050817 00224700 00091964 -first r 4 0 4 4 00102736 00103554 00506928 00254614 -first-rate r 1 0 1 0 00340523 -first_and_last r 1 0 1 0 00158190 -first_class r 1 0 1 0 00340273 -first_of_all r 1 0 1 1 00102736 -first_off r 1 0 1 1 00102736 -firsthand r 1 0 1 0 00340403 -firstly r 1 0 1 0 00102736 -fiscally r 1 1 \ 1 0 00131429 -fishily r 1 1 \ 1 0 00437246 -fitfully r 1 1 \ 1 0 00340621 -fitly r 1 1 \ 1 0 00139508 -fittingly r 1 0 1 0 00139508 -fixedly r 1 1 \ 1 0 00340715 -flabbily r 1 1 \ 1 0 00340813 -flagrantly r 1 1 \ 1 0 00340933 -flamboyantly r 1 1 \ 1 1 00341051 -flashily r 2 1 \ 2 0 00400722 00341051 -flat r 2 0 2 0 00341227 00058128 -flat_out r 2 0 2 0 00279523 00086255 -flatly r 1 1 \ 1 1 00087188 -flawlessly r 1 1 \ 1 0 00230996 -fleetly r 1 1 \ 1 0 00053274 -flexibly r 1 2 ! \ 1 0 00341305 -flimsily r 1 1 \ 1 0 00341602 -flip-flap r 1 0 1 0 00341724 -flippantly r 1 1 \ 1 0 00341835 -flirtatiously r 1 1 \ 1 0 00303034 -flop r 2 1 ; 2 0 00342024 00058033 -floridly r 1 1 \ 1 0 00500556 -fluently r 1 1 \ 1 0 00342110 -flush r 2 0 2 1 00087367 00087449 -focally r 1 1 \ 1 1 00093731 -fondly r 1 1 \ 1 1 00229074 -foolishly r 1 2 ! \ 1 0 00201733 -for_24_hours r 1 0 1 0 00152559 -for_a_bargain_price r 1 0 1 0 00158575 -for_a_song r 1 0 1 0 00158575 -for_a_while r 1 0 1 1 00144405 -for_all_intents_and_purposes r 1 0 1 0 00060300 -for_all_practical_purposes r 1 0 1 1 00060300 -for_all_the_world r 1 0 1 1 00159373 -for_any_price r 1 0 1 0 00159373 -for_anything r 1 0 1 0 00159373 -for_certain r 1 1 ; 1 0 00144722 -for_dear_life r 1 0 1 0 00158725 -for_each_one r 1 0 1 0 00239908 -for_each_person r 1 0 1 0 00501291 -for_example r 1 0 1 1 00159040 -for_free r 1 0 1 0 00258175 -for_good r 1 0 1 1 00087916 -for_good_measure r 1 0 1 1 00159150 -for_instance r 1 0 1 1 00159040 -for_keeps r 1 0 1 1 00159284 -for_love_or_money r 1 0 1 0 00159373 -for_one r 1 0 1 1 00159544 -for_short r 1 0 1 0 00159690 -for_sure r 1 1 ; 1 1 00144722 -for_that_matter r 1 0 1 1 00100773 -for_the_asking r 1 0 1 0 00159771 -for_the_first_time r 1 0 1 1 00103554 -for_the_moment r 1 0 1 1 00054327 -for_the_most_part r 1 0 1 1 00006105 -for_the_time_being r 1 0 1 1 00054327 -forbiddingly r 1 1 \ 1 0 00342213 -forcefully r 1 1 \ 1 0 00342351 -forcibly r 1 1 \ 1 0 00342624 -fore r 1 1 ! 1 0 00275694 -foremost r 2 0 2 0 00254614 00102736 -forever r 3 1 ; 3 3 00087542 00089076 00020280 -forever_and_a_day r 1 1 ; 1 0 00089076 -forevermore r 1 0 1 0 00332596 -forgetfully r 1 1 \ 1 0 00342782 -forgivably r 1 2 ! \ 1 0 00333096 -forgivingly r 1 2 ! \ 1 0 00342904 -forlornly r 1 1 \ 1 0 00343250 -formally r 2 2 ! \ 2 2 00186491 00186366 -formerly r 1 0 1 1 00118965 -formidably r 1 1 \ 1 0 00343382 -formlessly r 1 1 \ 1 0 00343542 -forrad r 1 1 ; 1 0 00074641 -forrader r 1 0 1 0 00067265 -forrard r 1 1 ; 1 0 00074641 -forsooth r 1 0 1 0 00038264 -forte r 1 2 ! \ 1 0 00343799 -forth r 3 1 ; 3 3 00232936 00103859 00103761 -forthright r 1 0 1 0 00051590 -forthrightly r 1 0 1 0 00051590 -forthwith r 1 0 1 1 00048739 -fortissimo r 1 2 ! \ 1 0 00344073 -fortnightly r 1 1 \ 1 0 00254711 -fortuitously r 1 1 \ 1 0 00042254 -fortunately r 1 2 ! \ 1 1 00042254 -forward r 5 2 ! ; 5 4 00074641 00103859 00075442 00067265 00275694 -forwards r 2 1 ; 2 0 00074641 00067265 -foully r 2 1 \ 2 0 00344312 00344208 -four_times r 1 0 1 1 00344500 -fourfold r 1 1 \ 1 0 00344500 -foursquare r 2 0 2 0 00231244 00051017 -fourth r 1 1 \ 1 1 00344771 -fourthly r 1 1 \ 1 0 00344771 -foxily r 1 1 \ 1 0 00293926 -fractiously r 2 1 \ 2 0 00419144 00344933 -frankly r 1 2 \ ; 1 1 00314835 -frantically r 1 1 \ 1 1 00503370 -fraternally r 1 1 \ 1 0 00345070 -fraudulently r 1 1 \ 1 0 00345149 -freakishly r 1 1 \ 1 0 00281687 -free r 1 0 1 0 00358021 -free_of_charge r 1 0 1 0 00258175 -freely r 1 1 \ 1 1 00210651 -frenetically r 1 1 \ 1 0 00106036 -frenziedly r 1 1 \ 1 1 00345284 -frequently r 1 2 ! \ 1 1 00035058 -fresh r 1 0 1 1 00112601 -freshly r 2 1 \ 2 1 00112601 00366490 -fretfully r 1 1 \ 1 0 00346185 -frighteningly r 1 1 \ 1 0 00345791 -frightfully r 1 1 ; 1 0 00054950 -frigidly r 1 1 \ 1 0 00346027 -friskily r 1 1 \ 1 0 00346302 -frivolously r 1 1 \ 1 0 00346428 -from_each_one r 1 0 1 0 00239908 -from_head_to_toe r 1 0 1 0 00251706 -from_nowhere r 1 0 1 1 00171543 -from_pillar_to_post r 1 0 1 1 00509287 -from_scratch r 1 0 1 1 00159889 -from_start_to_finish r 1 0 1 1 00152286 -from_the_heart r 1 0 1 1 00378804 -from_time_to_time r 1 0 1 1 00021212 -from_way_back r 1 0 1 0 00160177 -frontally r 1 1 \ 1 0 00141692 -frontward r 1 1 ; 1 0 00074641 -frontwards r 1 1 ; 1 0 00074641 -frostily r 1 1 \ 1 0 00346027 -frothily r 1 1 \ 1 0 00346592 -frowningly r 1 1 \ 1 1 00239572 -frugally r 1 1 \ 1 0 00345457 -fruitfully r 1 1 ! 1 0 00213875 -fruitlessly r 1 2 ! \ 1 0 00214084 -frumpily r 1 1 \ 1 0 00322255 -frumpishly r 1 1 \ 1 0 00322255 -fucking r 1 0 1 0 00032705 -fugally r 1 2 \ ; 1 0 00029278 -full r 1 1 ; 1 1 00010466 -full-time r 1 1 ! 1 1 00252629 -fully r 3 2 \ ; 3 3 00010466 00178909 00504620 -fulsomely r 1 1 \ 1 0 00485765 -functionally r 1 1 \ 1 0 00345659 -fundamentally r 1 1 \ 1 1 00003483 -funnily r 1 1 \ 1 0 00437381 -furiously r 3 1 \ 3 2 00224147 00224418 00224280 -further r 3 0 3 3 00029985 00030443 00029639 -furthermore r 1 0 1 1 00029367 -furthest r 2 0 2 0 00030914 00030654 -furtively r 1 1 \ 1 1 00106170 -fussily r 1 1 \ 1 1 00179579 -futilely r 1 1 \ 1 0 00031214 -gaily r 1 1 \ 1 1 00163236 -gainfully r 1 1 \ 1 0 00346715 -gainlessly r 1 0 1 0 00433120 -gallantly r 1 1 \ 1 0 00284489 -gamely r 1 1 \ 1 0 00346822 -garishly r 1 1 \ 1 0 00347009 -garrulously r 1 1 \ 1 0 00392875 -gaudily r 1 1 \ 1 0 00347009 -gayly r 1 1 \ 1 1 00050297 -genealogically r 1 1 \ 1 0 00347216 -generally r 3 2 ! \ 3 3 00155621 00041954 00221583 -generically r 2 1 \ 2 0 00347474 00347346 -generously r 1 1 \ 1 1 00196692 -genetically r 1 1 \ 1 0 00123924 -genially r 1 1 \ 1 0 00220052 -genteelly r 1 1 \ 1 0 00347602 -gently r 3 1 \ 3 3 00181576 00502847 00180279 -genuinely r 2 1 \ 2 1 00037226 00269153 -geographically r 1 1 \ 1 1 00232172 -geologically r 1 1 \ 1 0 00347717 -geometrically r 2 2 ! \ 2 0 00141775 00090103 -geothermally r 1 1 \ 1 0 00127952 -gibingly r 1 0 1 0 00347860 -giddily r 1 1 \ 1 0 00082923 -gingerly r 1 1 \ 1 1 00347990 -girlishly r 1 1 \ 1 1 00107895 -give_or_take r 1 0 1 1 00256693 -glacially r 1 1 \ 1 0 00141902 -gladly r 1 1 \ 1 0 00348110 -glaringly r 1 1 \ 1 0 00142002 -gleefully r 1 1 \ 1 0 00348247 -glibly r 1 1 \ 1 1 00238417 -glissando r 1 1 ; 1 0 00348592 -gloatingly r 1 0 1 0 00348782 -globally r 1 1 \ 1 0 00128882 -gloomily r 1 1 \ 1 1 00232314 -gloriously r 2 1 \ 2 1 00349053 00348911 -glossily r 1 1 \ 1 0 00349199 -gloweringly r 1 1 \ 1 0 00349587 -glowingly r 1 1 \ 1 0 00349719 -glumly r 1 1 \ 1 0 00242321 -gluttonously r 1 1 \ 1 0 00349855 -god_knows_how r 1 0 1 1 00190211 -goddam r 1 1 ; 1 0 00349967 -goddamn r 1 1 ; 1 0 00349967 -goddamned r 1 1 ; 1 0 00349967 -good r 2 1 ; 2 2 00011093 00057388 -good-naturedly r 1 1 \ 1 0 00350078 -good_and r 1 1 ; 1 0 00032598 -gorgeously r 1 1 \ 1 0 00350163 -governmentally r 1 1 \ 1 0 00130322 -gracefully r 2 2 ! \ 2 1 00179807 00194156 -gracelessly r 2 2 ! \ 2 0 00194362 00179928 -graciously r 1 2 ! \ 1 1 00194156 -gradually r 1 1 \ 1 1 00107987 -grammatically r 1 2 ! \ 1 1 00488143 -grandiloquently r 1 1 \ 1 0 00394292 -grandiosely r 1 1 \ 1 0 00269588 -grandly r 1 1 \ 1 1 00350393 -graphically r 3 1 \ 3 1 00310847 00132797 00124038 -gratefully r 2 2 ! \ 2 0 00271264 00199986 -gratifyingly r 1 1 \ 1 1 00183464 -gratingly r 1 1 \ 1 0 00350521 -gratis r 1 0 1 0 00258175 -gratuitously r 1 1 \ 1 1 00350704 -gravely r 2 1 \ 2 1 00183823 00015953 -gravitationally r 1 1 \ 1 0 00142105 -grayly r 1 1 \ 1 0 00351040 -greasily r 1 1 \ 1 0 00350819 -greatly r 1 1 \ 1 1 00056539 -greedily r 1 1 \ 1 1 00276391 -greenly r 1 1 \ 1 1 00242961 -gregariously r 1 1 \ 1 0 00350930 -greyly r 1 1 \ 1 0 00351040 -grievously r 1 1 \ 1 0 00351238 -grimly r 1 1 \ 1 1 00108137 -gropingly r 1 1 \ 1 0 00351456 -grossly r 1 1 \ 1 1 00006034 -grotesquely r 1 1 \ 1 1 00351542 -grouchily r 1 1 \ 1 0 00293650 -grubbily r 1 1 \ 1 0 00500226 -grudgingly r 1 2 ! \ 1 1 00351763 -gruesomely r 1 1 \ 1 0 00352132 -gruffly r 1 1 \ 1 0 00352238 -grumpily r 1 1 \ 1 0 00293650 -grungily r 1 1 \ 1 0 00500226 -guardedly r 1 1 \ 1 0 00292503 -guiltily r 1 1 \ 1 1 00352337 -gushingly r 1 1 \ 1 0 00352482 -gutturally r 1 1 \ 1 0 00142227 -habitually r 1 1 \ 1 1 00210768 -haggardly r 1 1 \ 1 1 00502987 -half r 1 1 \ 1 1 00007884 -half-and-half r 1 1 \ 1 0 00213195 -half-heartedly r 1 1 \ 1 1 00352588 -half-hourly r 1 1 \ 1 0 00352721 -half-price r 1 0 1 0 00500658 -half-time r 1 1 ! 1 1 00252740 -half-yearly r 1 1 \ 1 0 00352816 -halfway r 1 0 1 1 00255415 -haltingly r 1 0 1 1 00213116 -hand_and_foot r 1 0 1 0 00147502 -hand_and_glove r 1 0 1 0 00163340 -hand_in_glove r 1 0 1 0 00163340 -hand_in_hand r 2 0 2 2 00245166 00147597 -hand_over_fist r 1 0 1 0 00147693 -hand_to_hand r 1 0 1 0 00054750 -hand_to_mouth r 1 0 1 0 00054831 -handily r 2 1 \ 2 0 00197395 00147785 -hands_down r 1 0 1 0 00147785 -handsomely r 2 1 \ 2 0 00353052 00352907 -haphazard r 1 1 \ 1 0 00353178 -haphazardly r 2 1 \ 2 1 00070765 00353178 -haply r 1 0 1 0 00353485 -happily r 2 2 ! \ 2 1 00050297 00042484 -haptically r 1 1 \ 1 0 00198403 -hard r 10 1 \ 10 5 00091332 00091964 00092047 00091778 00091678 00176518 00092450 00092259 00092156 00091534 -hardly r 2 0 2 2 00002621 00003093 -harmfully r 1 2 ! \ 1 0 00309875 -harmlessly r 1 2 ! \ 1 1 00310036 -harmonically r 1 1 \ 1 0 00134727 -harmoniously r 1 1 \ 1 0 00353590 -harshly r 2 1 \ 2 2 00353796 00350521 -harum-scarum r 1 0 1 0 00163991 -hastily r 1 1 \ 1 1 00206479 -hatefully r 1 1 \ 1 1 00354244 -haughtily r 1 1 \ 1 1 00174623 -hazardously r 1 1 \ 1 0 00090228 -hazily r 2 1 \ 2 0 00354425 00354319 -head-on r 2 0 2 1 00218267 00218179 -head-to-head r 1 1 \ 1 0 00408632 -head_and_shoulders_above r 1 0 1 0 00047239 -head_over_heels r 1 0 1 0 00163704 -headfirst r 1 0 1 0 00354527 -headlong r 3 1 \ 3 1 00354527 00354938 00354642 -healthily r 1 1 \ 1 1 00182522 -heaps r 1 1 ; 1 0 00355080 -heart_and_soul r 1 0 1 0 00164353 -heartily r 2 1 \ 2 2 00209381 00219855 -heartlessly r 1 1 \ 1 0 00355158 -heatedly r 1 1 \ 1 0 00355291 -heavenward r 1 0 1 0 00355509 -heavenwardly r 1 0 1 0 00355509 -heavenwards r 1 0 1 0 00355509 -heavily r 7 2 ! \ 7 5 00176383 00507477 00508657 00502575 00355615 00176654 00176518 -heavy r 1 0 1 0 00355615 -hebdomadally r 1 1 \ 1 0 00081591 -hectically r 1 1 \ 1 0 00345284 -heedfully r 1 1 \ 1 0 00153681 -heedlessly r 1 1 \ 1 0 00164150 -heels_over_head r 1 0 1 0 00163704 -heinously r 1 1 \ 1 0 00355747 -hell-for-leather r 1 1 \ 1 0 00108244 -hellishly r 1 1 ; 1 0 00132532 -helpfully r 1 2 ! \ 1 1 00183998 -helplessly r 1 1 \ 1 1 00208773 -helter-skelter r 1 0 1 0 00163590 -hence r 3 1 ; 3 1 00043003 00043521 00043436 -henceforth r 1 0 1 1 00032863 -henceforward r 1 0 1 0 00032863 -here r 4 1 ! 4 4 00108479 00108773 00108647 00109021 -here_and_there r 1 0 1 1 00072649 -hereabout r 1 0 1 0 00108366 -hereabouts r 1 0 1 1 00108366 -hereafter r 3 0 3 1 00355896 00033139 00032996 -hereby r 1 1 ; 1 1 00255614 -herein r 1 0 1 1 00108913 -hereinafter r 1 0 1 1 00355896 -hereinbefore r 1 0 1 0 00356151 -hereof r 1 0 1 0 00356233 -hereto r 1 0 1 0 00356320 -heretofore r 1 0 1 1 00027918 -hereunder r 2 0 2 0 00355896 00033237 -hereupon r 1 0 1 0 00356412 -herewith r 1 1 ; 1 0 00255614 -hermetically r 1 1 \ 1 0 00356515 -heroically r 1 1 \ 1 0 00356630 -hesitantly r 1 2 ! \ 1 1 00146120 -hesitatingly r 1 0 1 0 00146120 -hideously r 1 1 \ 1 1 00356765 -hierarchically r 1 1 \ 1 0 00255741 -hieroglyphically r 1 1 \ 1 0 00142330 -higgledy-piggledy r 1 0 1 0 00255854 -high r 4 0 4 2 00356957 00357139 00357251 00357052 -high-handedly r 1 1 \ 1 0 00357376 -high-mindedly r 1 1 \ 1 0 00357520 -high_and_low r 1 0 1 1 00026061 -high_up r 1 0 1 1 00356957 -higher_up r 1 0 1 0 00080169 -highly r 3 1 \ 3 1 00089408 00089643 00089267 -hilariously r 1 1 \ 1 1 00182642 -hinderingly r 1 1 \ 1 0 00413387 -histologically r 1 1 \ 1 0 00089723 -historically r 2 1 \ 2 1 00109687 00109569 -hither r 1 0 1 1 00108647 -hither_and_thither r 1 0 1 0 00509287 -hitherto r 1 0 1 1 00027918 -hoarsely r 1 1 \ 1 1 00358200 -home r 3 0 3 2 00097840 00098520 00098380 -homeostatically r 1 1 \ 1 0 00142444 -homeward r 1 0 1 1 00098605 -homewards r 1 0 1 0 00098605 -homogeneously r 1 1 \ 1 1 00504874 -honestly r 2 3 ! \ ; 2 2 00314835 00314384 -honorably r 2 2 ! \ 2 1 00490876 00315457 -honourably r 1 0 1 0 00315457 -hook_line_and_sinker r 1 0 1 0 00164466 -hopefully r 2 2 ! \ 2 1 00200243 00200146 -hopelessly r 3 3 ! \ ; 3 1 00200614 00317766 00200392 -horizontally r 1 1 \ 1 0 00358342 -horribly r 1 1 \ 1 1 00056340 -horridly r 1 1 \ 1 0 00356765 -horrifyingly r 1 1 \ 1 1 00247459 -horseback r 1 0 1 0 00002436 -horticulturally r 1 1 \ 1 0 00142576 -hospitably r 1 2 ! \ 1 0 00358686 -hostilely r 1 1 \ 1 0 00242478 -hotfoot r 1 0 1 0 00206867 -hotly r 1 1 \ 1 0 00355291 -hourly r 1 1 \ 1 0 00358985 -however r 4 0 4 4 00027384 00028797 00028578 00028424 -huffily r 1 1 \ 1 0 00359095 -hugely r 1 0 1 0 00196540 -hugger-mugger r 1 0 1 0 00359217 -humanely r 1 2 ! \ 1 1 00359302 -humanly r 1 1 \ 1 0 00142662 -humbly r 2 1 \ 2 1 00110286 00397466 -humiliatingly r 1 1 \ 1 0 00211231 -humorlessly r 1 2 ! \ 1 0 00359771 -humorously r 1 2 ! \ 1 0 00359582 -humourlessly r 1 0 1 0 00359771 -hundredfold r 1 0 1 0 00359932 -hungrily r 1 1 \ 1 0 00360054 -hurriedly r 1 2 ! \ 1 1 00206479 -huskily r 1 1 \ 1 0 00358200 -hydraulically r 1 1 \ 1 0 00360218 -hydraulicly r 1 0 1 0 00360218 -hygienically r 1 2 ! \ 1 0 00360414 -hyperbolically r 1 1 \ 1 1 00189514 -hypnotically r 1 1 \ 1 0 00513751 -hypocritically r 1 1 \ 1 0 00315174 -hypothalamically r 1 1 \ 1 1 00093843 -hypothetically r 1 1 \ 1 0 00169971 -hysterically r 1 1 \ 1 1 00360710 -i.e. r 1 0 1 1 00191579 -ib. r 1 0 1 0 00255976 -ibid. r 1 0 1 0 00255976 -ibidem r 1 0 1 0 00255976 -icily r 1 1 \ 1 0 00360844 -id_est r 1 0 1 0 00191579 -ideally r 1 1 \ 1 1 00195428 -identically r 1 1 \ 1 0 00361065 -identifiably r 1 1 \ 1 0 00361217 -ideographically r 1 1 \ 1 0 00124150 -ideologically r 1 0 1 0 00361337 -idiomatically r 1 1 \ 1 0 00361446 -idiotically r 1 1 \ 1 1 00361566 -idly r 1 1 \ 1 1 00361781 -idolatrously r 1 1 \ 1 0 00361998 -idyllically r 1 1 \ 1 0 00124268 -ie r 1 0 1 0 00191579 -if_not r 1 0 1 1 00045379 -ignobly r 1 1 \ 1 0 00303789 -ignominiously r 1 1 \ 1 0 00313633 -ignorantly r 1 1 \ 1 0 00362134 -ill r 3 2 ! ; 3 1 00011516 00013236 00011916 -illegally r 1 1 \ 1 0 00154536 -illegibly r 1 2 ! \ 1 0 00362455 -illegitimately r 2 2 ! \ 2 0 00362998 00362650 -illiberally r 1 1 \ 1 0 00380675 -illicitly r 2 2 ! \ 2 0 00362998 00154536 -illogically r 1 2 ! \ 1 0 00363602 -illustriously r 1 1 \ 1 0 00363878 -imaginatively r 1 2 ! \ 1 1 00208934 -immaculately r 1 1 \ 1 0 00364030 -immaturely r 1 2 ! \ 1 0 00383798 -immeasurably r 2 2 ! \ 2 0 00398015 00225264 -immediately r 3 1 \ 3 2 00048739 00504043 00504153 -immensely r 1 1 \ 1 1 00005779 -imminently r 1 1 \ 1 0 00500759 -immoderately r 2 2 ! \ 2 0 00215373 00036068 -immodestly r 1 2 ! \ 1 0 00239402 -immorally r 1 2 ! \ 1 0 00364623 -immovably r 1 1 \ 1 0 00364221 -immunologically r 1 1 \ 1 0 00513831 -immutably r 1 1 \ 1 0 00482810 -impalpably r 1 0 1 0 00379556 -impartially r 1 1 \ 1 0 00364359 -impassively r 1 1 \ 1 0 00364794 -impatiently r 1 2 ! \ 1 1 00173498 -impeccably r 1 1 \ 1 1 00183612 -impenitently r 1 2 ! \ 1 0 00364916 -imperatively r 1 1 \ 1 0 00365284 -imperceptibly r 1 2 ! \ 1 1 00365414 -imperfectly r 1 2 ! \ 1 1 00010047 -imperially r 1 1 \ 1 0 00142765 -imperiously r 1 1 \ 1 0 00365868 -impermissibly r 1 2 ! \ 1 0 00087037 -impersonally r 2 2 ! \ 2 0 00366135 00365980 -impertinently r 1 1 \ 1 0 00366490 -impetuously r 1 1 \ 1 0 00366778 -impiously r 1 1 \ 1 0 00366975 -impishly r 1 1 \ 1 0 00367106 -implausibly r 1 1 \ 1 0 00295825 -implicitly r 2 2 ! \ 2 0 00367568 00367259 -imploringly r 1 0 1 0 00278633 -impolitely r 1 2 ! \ 1 0 00218681 -importantly r 2 1 \ 2 1 00367868 00367682 -importunately r 1 1 \ 1 0 00278633 -imposingly r 1 1 \ 1 0 00213524 -impossibly r 1 2 ! \ 1 0 00300682 -impotently r 1 1 \ 1 0 00208773 -impracticably r 1 1 \ 1 0 00368165 -imprecisely r 1 2 ! \ 1 0 00368481 -impregnably r 1 1 \ 1 0 00368807 -impressively r 1 2 ! \ 1 0 00213524 -improbably r 1 1 \ 1 0 00295825 -impromptu r 1 0 1 0 00088655 -improperly r 1 2 ! \ 1 1 00196056 -improvidently r 1 2 ! \ 1 0 00368989 -imprudently r 1 2 ! \ 1 0 00369552 -impudently r 1 1 \ 1 1 00366490 -impulsively r 1 1 \ 1 0 00366778 -in r 1 0 1 1 00501990 -in_a_beastly_manner r 1 0 1 0 00280427 -in_a_broad_way r 1 0 1 0 00104233 -in_a_flash r 1 0 1 0 00033421 -in_a_heartfelt_way r 1 0 1 0 00077912 -in_a_higher_place r 1 0 1 0 00080169 -in_a_low_voice r 1 0 1 0 00257418 -in_a_nutshell r 1 0 1 0 00290136 -in_a_pig's_eye r 1 1 ; 1 0 00164676 -in_a_similar_way r 1 0 1 1 00165561 -in_a_way r 1 0 1 1 00148540 -in_absentia r 1 0 1 1 00150824 -in_advance r 1 0 1 1 00067045 -in_all r 1 0 1 1 00063630 -in_all_likelihood r 1 0 1 1 00138611 -in_all_probability r 1 0 1 0 00138611 -in_an_elaborate_way r 1 0 1 0 00084840 -in_and_of_itself r 1 0 1 0 00036762 -in_any_case r 2 0 2 1 00026571 00029037 -in_any_event r 1 0 1 1 00026571 -in_apposition r 1 0 1 0 00121413 -in_arrears r 1 0 1 0 00222479 -in_both_ears r 1 0 1 0 00207945 -in_brief r 1 0 1 1 00289860 -in_camera r 1 0 1 0 00162137 -in_case r 1 0 1 1 00164751 -in_chorus r 1 0 1 1 00240343 -in_circles r 1 0 1 0 00164578 -in_cold_blood r 1 0 1 0 00164890 -in_common r 1 0 1 1 00503777 -in_concert r 1 0 1 1 00116705 -in_conclusion r 1 0 1 1 00065822 -in_darkness r 1 0 1 0 00206144 -in_detail r 1 0 1 1 00197275 -in_due_course r 1 0 1 1 00165269 -in_due_season r 1 0 1 0 00165269 -in_due_time r 1 0 1 0 00165269 -in_earnest r 1 0 1 0 00165018 -in_effect r 1 0 1 1 00060032 -in_essence r 1 0 1 0 00501140 -in_everyone's_thoughts r 1 0 1 0 00167175 -in_extremis r 1 0 1 1 00259242 -in_fact r 1 0 1 1 00148869 -in_fiscal_matters r 1 0 1 0 00131429 -in_flight r 1 0 1 0 00505010 -in_front r 1 0 1 1 00066781 -in_full r 1 0 1 1 00504620 -in_full_action r 1 0 1 0 00165445 -in_full_swing r 1 0 1 0 00165445 -in_general r 1 0 1 1 00041954 -in_good_order r 1 0 1 1 00196203 -in_good_spirits r 1 0 1 0 00236546 -in_good_time r 1 0 1 0 00165269 -in_great_confusion r 1 0 1 0 00163704 -in_hand r 1 1 ! 1 1 00148329 -in_haste r 1 0 1 1 00206479 -in_her_own_right r 1 0 1 0 00223138 -in_hiding r 1 0 1 0 00252249 -in_his_own_right r 1 0 1 0 00223138 -in_its_own_right r 1 0 1 0 00223138 -in_kind r 1 0 1 1 00165561 -in_large_quantities r 1 0 1 0 00260704 -in_line r 1 0 1 1 00165676 -in_loco_parentis r 1 0 1 0 00256073 -in_low_spirits r 1 0 1 0 00299161 -in_name r 1 0 1 1 00165788 -in_name_only r 1 0 1 0 00165788 -in_no_time r 1 0 1 0 00165906 -in_on r 1 0 1 0 00116899 -in_one's_own_right r 1 0 1 0 00223138 -in_one_case r 1 0 1 0 00118869 -in_one_ear r 1 0 1 0 00208111 -in_other_words r 1 0 1 1 00179333 -in_particular r 1 0 1 1 00248765 -in_passing r 1 0 1 1 00166375 -in_perpetuity r 2 0 2 0 00088186 00088073 -in_person r 1 0 1 1 00132158 -in_place r 1 0 1 1 00256189 -in_point_of_fact r 1 0 1 0 00148869 -in_practice r 1 0 1 1 00166512 -in_principle r 1 0 1 1 00501140 -in_private r 1 0 1 1 00162137 -in_public r 1 0 1 1 00161932 -in_reality r 1 0 1 1 00149138 -in_return r 1 0 1 0 00405868 -in_secret r 1 0 1 1 00166608 -in_short r 1 0 1 1 00289860 -in_short_order r 1 0 1 0 00166875 -in_situ r 1 0 1 0 00256189 -in_so_far r 1 0 1 1 00098959 -in_some_manner r 1 0 1 0 00026137 -in_some_way r 1 0 1 1 00026137 -in_someone's_way r 1 0 1 0 00041570 -in_spades r 1 0 1 0 00036935 -in_spite_of_appearance r 1 0 1 0 00104099 -in_stages r 1 0 1 0 00422281 -in_stride r 1 0 1 1 00236546 -in_tandem r 1 0 1 0 00257634 -in_that r 1 1 ; 1 1 00240707 -in_that_location r 1 0 1 0 00109151 -in_that_respect r 1 0 1 0 00109461 -in_the_adjacent_apartment r 1 0 1 0 00240082 -in_the_adjacent_house r 1 0 1 0 00240082 -in_the_air r 1 0 1 1 00167175 -in_the_bargain r 1 0 1 1 00080304 -in_the_beginning r 2 0 2 2 00431941 00167286 -in_the_end r 2 0 2 2 00167447 00047903 -in_the_first_place r 2 0 2 2 00167286 00138410 -in_the_lead r 1 0 1 1 00067513 -in_the_least r 2 0 2 0 00150558 00056729 -in_the_long_run r 1 0 1 1 00167447 -in_the_lurch r 1 1 ; 1 0 00037876 -in_the_main r 2 0 2 0 00073897 00041954 -in_the_meantime r 1 0 1 1 00064946 -in_the_midst r 1 0 1 1 00259303 -in_the_nick_of_time r 1 0 1 0 00167575 -in_the_same_breath r 1 0 1 0 00167702 -in_the_south r 1 0 1 0 00243938 -in_the_way r 1 0 1 0 00041570 -in_theory r 1 0 1 0 00501140 -in_this r 1 1 ; 1 1 00240707 -in_time r 2 0 2 2 00047641 00167816 -in_toto r 1 0 1 1 00150432 -in_truth r 1 1 ; 1 1 00038013 -in_turn r 1 0 1 1 00180420 -in_two_ways r 1 0 1 0 00083947 -in_unison r 2 0 2 1 00240343 00240265 -in_utero r 1 0 1 0 00038388 -in_vacuo r 2 0 2 0 00038537 00038489 -in_vain r 1 0 1 1 00167920 -in_vitro r 1 1 \ 1 0 00513929 -in_vivo r 1 1 \ 1 1 00182094 -in_writing r 1 0 1 1 00246672 -inaccessibly r 1 1 \ 1 0 00204390 -inaccurately r 1 2 ! \ 1 0 00204643 -inadequately r 1 2 ! \ 1 1 00369869 -inadvertently r 1 2 ! \ 1 1 00237833 -inadvisably r 1 1 \ 1 0 00333808 -inalienably r 1 1 \ 1 0 00139930 -inanely r 1 1 \ 1 0 00201893 -inappropriately r 1 2 ! \ 1 0 00139759 -inarticulately r 2 2 ! \ 2 0 00328025 00268464 -inattentively r 1 1 \ 1 0 00066190 -inaudibly r 1 2 ! \ 1 0 00268909 -inaugurally r 1 1 \ 1 0 00501856 -inauspiciously r 1 2 ! \ 1 0 00217640 -incautiously r 1 2 ! \ 1 0 00282444 -incessantly r 2 1 \ 2 0 00282858 00020280 -incestuously r 1 1 \ 1 0 00142865 -incidentally r 2 1 \ 2 2 00156222 00212411 -incisively r 2 1 \ 2 0 00370046 00368287 -incognito r 1 0 1 0 00370260 -incoherently r 1 2 ! \ 1 0 00286518 -incomparably r 1 2 ! \ 1 0 00370421 -incompatibly r 1 2 ! \ 1 0 00287842 -incompetently r 1 2 ! \ 1 0 00185400 -incompletely r 1 1 \ 1 1 00157811 -inconceivably r 1 1 \ 1 0 00142959 -inconclusively r 1 2 ! \ 1 0 00093139 -incongruously r 1 1 \ 1 0 00370763 -inconsequentially r 1 1 ! 1 0 00294782 -inconsequently r 1 1 \ 1 0 00294782 -inconsiderately r 1 2 ! \ 1 0 00182907 -inconsistently r 1 2 ! \ 1 0 00120841 -inconspicuously r 1 2 ! \ 1 0 00371171 -incontrovertibly r 1 1 \ 1 0 00308559 -inconveniently r 1 2 ! \ 1 1 00197561 -incorrectly r 2 2 ! \ 2 0 00336065 00204125 -increasingly r 1 1 \ 1 1 00059854 -incredibly r 2 2 ! \ 2 1 00295825 00032180 -incredulously r 1 2 ! \ 1 0 00296425 -incriminatingly r 1 1 \ 1 0 00371344 -incurably r 2 1 \ 2 1 00371541 00371432 -indecently r 1 2 ! \ 1 0 00247326 -indecisively r 2 2 ! \ 2 0 00298910 00298560 -indecorously r 1 2 ! \ 1 0 00305153 -indeed r 2 1 ; 2 1 00037641 00037470 -indefatigably r 1 1 \ 1 0 00052489 -indefinitely r 1 1 \ 1 1 00203783 -indelibly r 1 1 \ 1 0 00371651 -independently r 2 1 \ 2 1 00180611 00450647 -indescribably r 1 1 \ 1 0 00371853 -indeterminably r 1 1 \ 1 0 00372174 -indifferently r 1 1 \ 1 1 00372322 -indigenously r 1 1 \ 1 0 00058491 -indignantly r 1 1 \ 1 1 00372455 -indirectly r 1 2 ! \ 1 1 00058359 -indiscreetly r 1 2 ! \ 1 0 00372914 -indiscriminately r 2 1 \ 2 1 00070765 00433363 -indistinctly r 1 1 \ 1 0 00211815 -individualistically r 1 1 \ 1 0 00058573 -individually r 1 1 \ 1 1 00207668 -indolently r 1 1 \ 1 0 00373096 -indoors r 1 1 ! 1 1 00110533 -indubitably r 1 1 \ 1 0 00373216 -indulgently r 1 1 \ 1 0 00373531 -industrially r 1 1 \ 1 0 00124346 -industriously r 1 1 \ 1 1 00373723 -ineffably r 1 1 \ 1 0 00371853 -ineffectively r 1 2 ! \ 1 1 00326564 -ineffectually r 1 2 ! \ 1 0 00326146 -inefficaciously r 1 2 ! \ 1 0 00326564 -inefficiently r 1 2 ! \ 1 0 00236020 -inelegantly r 1 2 ! \ 1 0 00327756 -ineloquently r 1 1 ! 1 0 00328025 -ineluctably r 1 1 \ 1 0 00208557 -ineptly r 2 1 \ 2 1 00228253 00228417 -inequitably r 1 2 ! \ 1 0 00330033 -inescapably r 1 1 \ 1 1 00208557 -inevitably r 2 1 \ 2 2 00112393 00208557 -inexactly r 1 2 ! \ 1 0 00368481 -inexcusably r 2 2 ! \ 2 0 00333341 00238794 -inexhaustibly r 1 0 1 0 00052489 -inexorably r 1 1 \ 1 1 00218369 -inexpediently r 1 2 ! \ 1 0 00333938 -inexpensively r 2 0 2 0 00334210 00284183 -inexpertly r 1 1 \ 1 0 00274527 -inexpressively r 1 1 ! 1 0 00335040 -inextricably r 1 1 \ 1 0 00373855 -infectiously r 1 1 \ 1 0 00302477 -infelicitously r 1 2 ! \ 1 0 00339451 -infernally r 1 2 \ ; 1 0 00132532 -infinitely r 2 2 ! \ 2 2 00225264 00224941 -inflexibly r 1 2 ! \ 1 0 00341444 -influentially r 1 1 \ 1 0 00374045 -informally r 2 2 ! \ 2 1 00186246 00286667 -informatively r 1 2 ! \ 1 0 00374123 -infra r 1 0 1 0 00258282 -infrequently r 1 2 ! \ 1 0 00374520 -ingeniously r 1 0 1 0 00374804 -ingenuously r 1 1 \ 1 0 00274369 -ingloriously r 1 1 \ 1 0 00313633 -ingratiatingly r 1 1 \ 1 0 00375017 -inherently r 1 1 \ 1 0 00375163 -inhospitably r 1 2 ! \ 1 0 00358832 -inhumanely r 1 2 ! \ 1 0 00359438 -inimitably r 1 1 \ 1 0 00375356 -iniquitously r 1 1 \ 1 0 00375513 -initially r 1 1 \ 1 1 00103194 -injudiciously r 1 2 ! \ 1 0 00384912 -injuriously r 1 1 \ 1 0 00124449 -inland r 1 0 1 0 00258360 -innately r 1 1 \ 1 0 00375673 -innocently r 2 1 \ 2 0 00375927 00375810 -inoffensively r 1 2 ! \ 1 0 00307134 -inopportunely r 1 2 ! \ 1 0 00376066 -inordinately r 1 1 \ 1 0 00046863 -inorganically r 1 2 ! \ 1 0 00113441 -inquiringly r 1 1 \ 1 0 00376428 -inquisitively r 1 1 \ 1 0 00081881 -insanely r 2 3 ! \ ; 2 1 00080890 00046639 -insatiably r 2 1 \ 2 0 00376761 00376573 -inscriptively r 1 1 \ 1 0 00061995 -inscrutably r 1 1 \ 1 0 00062081 -insecticidally r 1 1 \ 1 0 00062163 -insecurely r 2 2 ! \ 2 0 00377684 00377334 -insensately r 1 1 \ 1 0 00062250 -insensibly r 1 1 \ 1 0 00411427 -insensitively r 1 2 ! \ 1 0 00378029 -inseparably r 1 2 ! \ 1 0 00450089 -inshore r 1 0 1 0 00258468 -inside r 4 1 ! 4 2 00110533 00110815 00230189 00104099 -inside_out r 2 0 2 1 00166964 00167068 -insidiously r 1 1 \ 1 1 00378212 -insignificantly r 2 2 ! \ 2 1 00506442 00006423 -insincerely r 1 2 ! \ 1 0 00378665 -insinuatingly r 1 0 1 0 00378888 -insipidly r 1 1 \ 1 0 00379125 -insistently r 1 1 \ 1 0 00143068 -insofar r 1 0 1 1 00098959 -insolently r 1 1 \ 1 1 00357897 -insomuch r 1 0 1 0 00379233 -inspirationally r 1 1 \ 1 0 00379301 -instantaneously r 1 1 \ 1 0 00033421 -instantly r 2 0 2 2 00048739 00033421 -instead r 2 0 2 2 00063172 00098714 -instinctively r 1 1 \ 1 1 00249043 -institutionally r 1 1 \ 1 0 00143148 -instructively r 1 2 ! \ 1 0 00374123 -insubstantially r 1 0 1 0 00379556 -insufficiently r 1 2 ! \ 1 1 00145854 -insultingly r 2 1 \ 2 0 00379674 00344312 -insuperably r 1 1 \ 1 0 00379816 -integrally r 1 1 \ 1 0 00500837 -intellectually r 1 1 \ 1 1 00189129 -intelligently r 1 2 ! \ 1 0 00202028 -intelligibly r 1 2 ! \ 1 0 00202341 -intemperately r 1 1 \ 1 0 00176518 -intensely r 1 1 \ 1 1 00190959 -intensively r 1 1 \ 1 1 00139392 -intentionally r 1 2 ! \ 1 1 00062330 -intently r 1 1 \ 1 1 00090897 -inter_alia r 1 0 1 1 00256344 -interchangeably r 1 1 \ 1 0 00379971 -interdepartmental r 1 1 \ 1 0 00380104 -interestingly r 1 2 ! \ 1 1 00214761 -intermediately r 1 0 1 0 00380235 -interminably r 1 1 \ 1 0 00283235 -intermittently r 1 1 \ 1 0 00380458 -internally r 1 2 ! \ 1 1 00249164 -internationally r 1 1 \ 1 1 00112279 -interracially r 1 1 \ 1 0 00135902 -interrogatively r 2 1 \ 2 0 00380590 00081881 -intimately r 2 1 \ 2 1 00160659 00015007 -into_the_bargain r 1 0 1 0 00080304 -into_the_wind r 1 0 1 0 00094893 -intolerably r 1 2 ! \ 1 0 00055518 -intolerantly r 2 2 ! \ 2 0 00380994 00380675 -intractably r 1 1 \ 1 0 00058667 -intradermally r 1 1 \ 1 0 00093980 -intramuscularly r 1 1 \ 1 1 00094053 -intransitively r 1 2 ! \ 1 0 00381254 -intravenously r 1 1 \ 1 0 00381430 -intrepidly r 1 1 \ 1 0 00199687 -intricately r 1 1 \ 1 0 00084840 -intrinsically r 1 1 \ 1 1 00036762 -intuitively r 1 1 \ 1 0 00381557 -invariably r 1 1 \ 1 1 00020476 -inventively r 1 1 \ 1 0 00381776 -inversely r 1 1 \ 1 1 00175919 -inveterate r 1 0 1 0 00141033 -invidiously r 1 1 \ 1 0 00381942 -invincibly r 1 1 \ 1 0 00382031 -invisibly r 1 2 ! \ 1 0 00382151 -invitingly r 1 1 \ 1 0 00195907 -involuntarily r 1 2 ! \ 1 0 00231916 -inward r 2 1 ! 2 1 00258549 00501990 -inwardly r 1 2 ! \ 1 1 00230189 -inwards r 2 0 2 0 00501990 00258549 -ipso_facto r 1 0 1 1 00256463 -irately r 1 1 \ 1 0 00382402 -ironically r 2 1 \ 2 0 00382620 00382507 -irrationally r 1 2 ! \ 1 1 00184651 -irregardless r 1 1 ; 1 0 00118727 -irregularly r 4 2 ! \ 4 1 00331697 00331940 00195185 00190581 -irrelevantly r 1 2 ! \ 1 0 00382749 -irreparably r 1 1 \ 1 0 00514080 -irreproachably r 1 1 \ 1 0 00498747 -irresistibly r 1 1 \ 1 0 00239688 -irresolutely r 1 2 ! \ 1 0 00241757 -irrespective r 1 0 1 1 00118531 -irresponsibly r 1 2 ! \ 1 0 00106629 -irretrievably r 1 1 \ 1 0 00382903 -irreverently r 2 2 ! \ 2 0 00383271 00383017 -irreversibly r 1 1 \ 1 0 00383428 -irrevocably r 1 1 \ 1 0 00124529 -irritably r 2 1 \ 2 2 00216592 00186644 -irritatingly r 1 1 \ 1 0 00514190 -isotropically r 1 1 \ 1 0 00012047 -item r 1 0 1 0 00256565 -jaggedly r 1 1 \ 1 0 00438846 -jarringly r 1 1 \ 1 0 00383563 -jauntily r 1 1 \ 1 0 00407547 -jealously r 2 1 \ 2 0 00383693 00303177 -jeeringly r 1 1 \ 1 0 00347860 -jejunely r 1 1 \ 1 0 00383798 -jerkily r 2 1 \ 2 0 00463471 00384101 -jestingly r 1 1 \ 1 0 00384207 -jocosely r 1 1 \ 1 0 00384387 -jocular r 1 1 \ 1 0 00384387 -jointly r 2 1 \ 2 2 00197710 00117082 -jokingly r 2 1 \ 2 0 00384207 00085667 -jolly r 1 0 1 0 00035718 -journalistically r 1 1 \ 1 0 00384538 -jovially r 1 1 \ 1 0 00384676 -joyfully r 1 2 ! \ 1 0 00348247 -joylessly r 1 2 ! \ 1 0 00348450 -joyously r 1 1 \ 1 0 00348247 -jubilantly r 1 1 \ 1 1 00050297 -judicially r 2 1 \ 2 0 00514272 00143257 -judiciously r 1 1 ! 1 0 00384783 -jurisprudentially r 1 1 \ 1 1 00252122 -just r 6 1 ; 6 5 00004722 00158309 00033308 00246296 00002621 00002950 -just_about r 1 0 1 1 00007015 -just_as r 1 0 1 1 00017881 -just_in_case r 1 0 1 0 00164751 -just_in_time r 1 0 1 1 00167575 -just_now r 1 0 1 1 00033308 -just_right r 1 0 1 1 00172020 -just_so r 1 0 1 0 00168230 -just_then r 1 0 1 0 00105240 -justifiably r 1 2 ! \ 1 1 00238674 -justifiedly r 1 0 1 0 00205375 -justly r 2 2 ! \ 2 2 00205375 00205226 -keenly r 1 1 \ 1 1 00385081 -killingly r 1 1 \ 1 0 00385216 -kinaesthetically r 1 0 1 0 00198232 -kind_of r 1 0 1 1 00018302 -kinda r 1 0 1 1 00018302 -kindly r 1 2 ! \ 1 1 00004394 -kinesthetically r 1 1 \ 1 1 00198232 -knavishly r 1 1 \ 1 0 00293926 -knee-deep r 1 0 1 0 00258796 -knee-high r 1 0 1 0 00258796 -knowingly r 1 2 ! \ 1 0 00237636 -laboriously r 1 1 \ 1 0 00385333 -lackadaisically r 1 1 \ 1 0 00385541 -laconically r 1 1 \ 1 0 00231457 -lamely r 1 1 \ 1 0 00385689 -lamentably r 1 0 1 0 00093270 -landward r 1 0 1 0 00385822 -landwards r 1 0 1 0 00385822 -lang_syne r 1 0 1 0 00022401 -langsyne r 1 1 ; 1 0 00385946 -languidly r 1 1 \ 1 0 00386050 -languorously r 1 1 \ 1 0 00386181 -large r 3 0 3 0 00386393 00386307 00225672 -largely r 2 0 2 1 00006105 00065359 -largo r 1 2 \ ; 1 0 00065486 -lasciviously r 1 1 \ 1 0 00386474 -last r 2 1 \ 2 2 00065748 00065822 -last_but_not_least r 1 0 1 0 00065963 -last_not_least r 1 0 1 0 00065963 -lastingly r 1 1 \ 1 0 00066100 -lastly r 1 0 1 1 00065822 -late r 4 1 ! 4 2 00100267 00305821 00305935 00107416 -lately r 1 0 1 1 00107416 -later r 3 1 \ 3 2 00061203 00155488 00508157 -later_on r 1 0 1 1 00061203 -laterally r 2 2 \ ; 2 0 00386765 00386587 -latterly r 1 0 1 0 00107416 -laudably r 1 1 \ 1 0 00218886 -laughably r 1 1 \ 1 0 00387017 -laughingly r 1 0 1 1 00220223 -lavishly r 2 1 \ 2 1 00335345 00187617 -lawfully r 2 2 ! \ 2 0 00363218 00251820 -lawlessly r 1 2 ! \ 1 0 00154536 -laxly r 1 1 \ 1 0 00387254 -lazily r 2 1 \ 2 1 00387525 00361781 -learnedly r 1 1 \ 1 0 00330337 -least r 1 1 ! 1 1 00111758 -least_of_all r 1 0 1 1 00111910 -leastways r 1 1 ; 1 0 00104661 -leastwise r 1 1 ; 1 0 00104661 -leeward r 1 1 ! 1 0 00095195 -left r 1 1 ! 1 1 00387666 -legally r 2 1 \ 2 2 00251820 00124611 -legato r 1 1 ! 1 0 00387983 -legibly r 1 2 ! \ 1 0 00362276 -legislatively r 1 1 \ 1 0 00129324 -legitimately r 2 2 ! \ 2 1 00363218 00362831 -leisurely r 1 1 \ 1 1 00104990 -lengthily r 1 1 \ 1 1 00065575 -lengthways r 1 0 1 0 00388209 -lengthwise r 1 0 1 1 00388209 -leniently r 1 1 \ 1 0 00387254 -lento r 1 0 1 0 00388494 -less r 2 1 ! 2 2 00099527 00099868 -let_alone r 1 0 1 1 00063369 -lethargically r 1 1 \ 1 0 00388590 -lewdly r 1 1 \ 1 0 00388747 -lexically r 1 1 \ 1 0 00136663 -liberally r 2 1 \ 2 1 00196874 00196692 -licentiously r 1 1 \ 1 0 00388944 -licitly r 1 2 ! \ 1 0 00363218 -lickety_cut r 1 0 1 0 00168322 -lickety_split r 1 0 1 0 00168322 -lief r 1 0 1 0 00348110 -lifelessly r 3 1 \ 3 0 00389299 00389183 00304898 -light r 1 0 1 0 00390941 -light-handedly r 1 1 \ 1 0 00391058 -light-headedly r 1 0 1 0 00082923 -light-heartedly r 1 0 1 0 00391143 -lightly r 7 2 ! \ 7 5 00509034 00390941 00180279 00176750 00028923 00477636 00180168 -lightsomely r 2 1 \ 2 0 00391308 00391143 -like_a_shot r 1 0 1 0 00048739 -like_an_expert r 1 0 1 0 00214289 -like_blue_murder r 1 0 1 0 00086255 -like_clockwork r 1 1 ; 1 0 00168428 -like_crazy r 1 1 ; 1 0 00168564 -like_hell r 2 1 ; 2 1 00168564 00168870 -like_kings r 1 0 1 0 00125985 -like_mad r 1 1 ; 1 1 00168564 -like_royalty r 1 0 1 0 00125985 -like_sin r 1 1 ; 1 1 00168564 -like_the_devil r 1 1 ; 1 1 00168564 -like_thunder r 1 1 ; 1 1 00168564 -likely r 1 0 1 1 00138611 -likewise r 3 0 3 2 00138060 00047534 00069672 -limitedly r 1 1 \ 1 0 00130758 -limnologically r 1 1 \ 1 0 00391476 -limpidly r 1 1 \ 1 0 00389595 -limply r 1 0 1 0 00391575 -lineally r 1 1 \ 1 0 00391671 -linearly r 1 2 ! \ 1 1 00129532 -lingeringly r 1 0 1 1 00391989 -lingually r 1 1 \ 1 1 00130833 -linguistically r 2 1 \ 2 1 00131151 00130833 -lispingly r 1 0 1 0 00392174 -listlessly r 1 1 \ 1 1 00392246 -literally r 2 3 ! \ ; 2 2 00340133 00111269 -literatim r 1 0 1 0 00511729 -little r 1 0 1 1 00100002 -little_by_little r 2 0 2 0 00422281 00155995 -live r 1 0 1 0 00259019 -lividly r 1 1 \ 1 0 00392361 -locally r 2 1 \ 2 1 00135314 00135418 -loftily r 1 1 \ 1 0 00392432 -logarithmically r 1 1 \ 1 0 00392531 -logically r 2 2 ! \ 2 2 00363744 00363463 -logogrammatically r 1 1 \ 1 0 00514350 -long r 2 0 2 1 00166025 00166318 -long-windedly r 1 1 \ 1 0 00492543 -long_ago r 1 0 1 1 00022401 -long_since r 1 0 1 1 00022401 -longer r 1 1 \ 1 1 00392690 -longest r 1 1 \ 1 0 00392782 -longingly r 1 0 1 0 00389421 -longitudinally r 3 1 \ 3 0 00388379 00388209 00129675 -longways r 1 0 1 0 00388209 -longwise r 1 0 1 0 00388209 -loose r 1 0 1 1 00358021 -loosely r 4 1 \ 4 1 00179442 00511481 00221583 00153473 -lopsidedly r 1 1 \ 1 1 00240954 -loquaciously r 1 1 \ 1 0 00392875 -lots r 1 0 1 0 00059171 -loud r 1 0 1 1 00069901 -loudly r 3 2 ! \ 3 2 00069901 00412708 00343799 -lovingly r 1 1 \ 1 1 00229074 -low r 1 0 1 1 00393149 -loweringly r 1 1 \ 1 1 00508771 -lowest r 1 0 1 0 00393240 -loyally r 1 2 ! \ 1 0 00316103 -lucidly r 1 1 \ 1 0 00389595 -luckily r 1 2 ! \ 1 1 00042254 -ludicrously r 1 1 \ 1 0 00387017 -lugubriously r 1 1 \ 1 0 00393370 -lukewarmly r 1 1 \ 1 0 00389804 -luridly r 1 1 \ 1 0 00393538 -lusciously r 1 1 \ 1 0 00393688 -lustfully r 1 1 \ 1 0 00393903 -lustily r 1 1 \ 1 1 00246190 -luxuriantly r 2 1 \ 2 0 00390147 00389958 -luxuriously r 2 1 \ 2 1 00508521 00357251 -lyrically r 1 1 \ 1 0 00394020 -macroscopically r 1 1 \ 1 1 00111138 -madly r 3 2 \ ; 3 1 00503370 00080890 00046639 -magically r 1 1 \ 1 0 00129788 -magisterially r 2 1 \ 2 0 00311430 00241383 -magna_cum_laude r 1 1 \ 1 0 00291368 -magnanimously r 1 1 \ 1 0 00394151 -magnetically r 2 1 \ 2 1 00506096 00089883 -magnificently r 2 1 \ 2 1 00182316 00350163 -magniloquently r 1 1 \ 1 0 00394292 -mainly r 1 0 1 1 00073897 -majestically r 1 1 \ 1 1 00394462 -maladroitly r 1 2 ! \ 1 0 00056200 -malapropos r 1 0 1 0 00376066 -malevolently r 1 2 ! \ 1 0 00394722 -maliciously r 1 1 \ 1 0 00201075 -malignantly r 1 1 \ 1 0 00394849 -malignly r 1 1 \ 1 0 00394956 -man-to-man r 1 0 1 1 00058749 -manageably r 1 2 ! \ 1 0 00390290 -managerially r 1 1 \ 1 0 00395038 -mandatorily r 1 1 \ 1 0 00288655 -manfully r 1 2 ! \ 1 0 00390576 -mangily r 1 1 \ 1 0 00395119 -maniacally r 1 1 \ 1 0 00395190 -manifestly r 1 2 \ ; 1 1 00039318 -manipulatively r 1 1 \ 1 0 00395335 -manly r 1 0 1 0 00390576 -manually r 1 1 \ 1 0 00124702 -marginally r 1 1 \ 1 1 00090000 -markedly r 1 1 \ 1 1 00161294 -martially r 1 1 \ 1 0 00500915 -marvellously r 1 2 \ ; 1 0 00183090 -marvelously r 1 1 ; 1 1 00183090 -masochistically r 1 1 \ 1 0 00395430 -massively r 1 1 \ 1 0 00395574 -masterfully r 1 1 \ 1 0 00395744 -materialistically r 1 1 \ 1 0 00395916 -materially r 2 1 \ 2 1 00136870 00137011 -maternally r 1 1 \ 1 0 00396055 -mathematically r 1 1 \ 1 1 00064829 -matrilineally r 1 1 \ 1 0 00391803 -maturely r 1 2 ! \ 1 0 00383972 -mawkishly r 1 1 \ 1 0 00396200 -maximally r 1 2 ! \ 1 0 00396363 -maybe r 1 0 1 1 00300247 -mayhap r 1 0 1 0 00300247 -meagerly r 1 2 ! \ 1 0 00396699 -meagrely r 1 0 1 0 00396699 -meanderingly r 1 1 \ 1 0 00397197 -meaningfully r 1 1 \ 1 0 00397327 -meanly r 4 1 \ 4 0 00407053 00397720 00397610 00397466 -meanspiritedly r 1 1 \ 1 0 00397930 -meantime r 1 0 1 0 00064946 -meanwhile r 2 0 2 2 00065184 00064946 -measurably r 1 2 ! \ 1 0 00398204 -measuredly r 1 1 \ 1 0 00507323 -mechanically r 2 1 \ 2 2 00114029 00113904 -mechanistically r 1 0 1 0 00398339 -medially r 1 1 \ 1 0 00398528 -medically r 1 1 \ 1 1 00124792 -medicinally r 1 1 \ 1 0 00124933 -meditatively r 1 1 \ 1 0 00398644 -meekly r 2 1 \ 2 2 00110414 00110286 -mellow r 1 1 ; 1 0 00398843 -mellowingly r 1 0 1 1 00507609 -mellowly r 1 2 \ ; 1 0 00398843 -melodically r 1 1 \ 1 0 00134613 -melodiously r 1 2 ! \ 1 0 00398955 -melodramatically r 2 1 \ 2 0 00399389 00399242 -memorably r 1 2 ! \ 1 0 00399533 -menacingly r 1 1 \ 1 0 00399802 -mendaciously r 1 1 \ 1 0 00399974 -menially r 1 1 \ 1 0 00400398 -mentally r 1 1 \ 1 1 00228724 -mercifully r 1 1 \ 1 0 00192866 -mercilessly r 1 1 \ 1 0 00400471 -merely r 1 1 \ 1 1 00004722 -meretriciously r 1 1 \ 1 0 00400722 -meritoriously r 1 1 \ 1 0 00400876 -merrily r 1 1 \ 1 1 00050297 -messily r 1 1 \ 1 0 00400998 -metabolically r 1 1 \ 1 0 00114192 -metaphorically r 1 1 \ 1 0 00135073 -metaphysically r 1 1 \ 1 0 00134419 -meteorologically r 1 1 \ 1 0 00134294 -methodically r 1 1 \ 1 1 00173884 -methodologically r 1 1 \ 1 0 00401345 -meticulously r 1 1 \ 1 1 00194037 -metonymically r 1 1 \ 1 0 00134532 -metrically r 1 1 \ 1 0 00401465 -microscopically r 2 1 \ 2 1 00078669 00078905 -middling r 1 0 1 0 00035718 -midmost r 1 0 1 0 00259303 -midships r 1 0 1 0 00402030 -midway r 1 0 1 1 00255415 -midweek r 1 0 1 0 00402217 -mightily r 2 1 ; 2 0 00091139 00032299 -mighty r 1 1 ; 1 1 00032299 -mildly r 2 1 \ 2 2 00033562 00502847 -militarily r 1 1 \ 1 1 00111016 -millionfold r 1 0 1 0 00344659 -mincingly r 1 1 \ 1 0 00402278 -mindfully r 1 2 ! \ 1 0 00153681 -mindlessly r 2 1 \ 2 0 00401893 00401708 -minimally r 1 2 ! \ 1 0 00396529 -ministerially r 1 1 \ 1 0 00402395 -minutely r 1 1 \ 1 0 00402555 -miraculously r 1 1 \ 1 1 00402764 -mirthfully r 1 1 \ 1 0 00050297 -mischievously r 1 0 1 0 00016678 -miserably r 1 1 \ 1 1 00402938 -misleadingly r 1 1 \ 1 0 00082148 -mistakenly r 1 1 \ 1 1 00195542 -mistily r 2 1 \ 2 0 00403052 00232600 -mistrustfully r 1 1 \ 1 0 00320408 -mockingly r 2 1 \ 2 0 00347860 00301168 -moderately r 2 2 ! \ 2 1 00035718 00215237 -modestly r 1 2 ! \ 1 1 00239215 -modishly r 1 1 \ 1 0 00006858 -moistly r 1 1 \ 1 0 00297741 -molto r 1 1 ; 1 0 00403175 -momentarily r 2 0 2 2 00092814 00034403 -momently r 2 0 2 0 00092814 00034403 -momentously r 1 1 \ 1 0 00403249 -monaurally r 1 2 ! \ 1 0 00208111 -monolingually r 1 1 \ 1 0 00209754 -monosyllabically r 1 1 \ 1 0 00143946 -monotonously r 1 1 \ 1 0 00403325 -monstrously r 3 1 \ 3 0 00356765 00355747 00351542 -month_by_month r 1 0 1 1 00178213 -monthly r 1 1 \ 1 0 00254978 -moodily r 1 1 \ 1 0 00403513 -moonily r 1 1 \ 1 0 00322757 -morally r 2 1 ! 2 1 00134203 00364477 -morbidly r 1 1 \ 1 0 00403667 -mordaciously r 1 1 \ 1 0 00099228 -more r 2 1 ! 2 2 00099341 00099712 -more_and_more r 1 0 1 1 00059854 -more_often_than_not r 1 0 1 1 00155621 -more_or_less r 2 0 2 1 00007015 00036291 -moreover r 1 0 1 1 00029367 -morosely r 1 1 \ 1 1 00403807 -morphologically r 1 1 \ 1 0 00403911 -mortally r 1 0 1 1 00404073 -most r 3 2 ! ; 3 3 00111609 00112009 00073033 -most_especially r 1 0 1 0 00150671 -most_importantly r 1 0 1 0 00150671 -mostly r 2 1 \ 2 2 00006105 00155621 -motherly r 1 0 1 0 00396055 -motionlessly r 1 1 \ 1 0 00404311 -mournfully r 1 1 \ 1 1 00404622 -movingly r 1 1 \ 1 1 00036515 -much r 5 0 5 5 00059086 00032803 00059171 00022829 00059413 -much_as r 1 0 1 1 00188600 -mulishly r 1 1 \ 1 0 00198845 -multifariously r 1 1 \ 1 0 00052231 -multilaterally r 1 2 ! \ 1 0 00253306 -multiplicatively r 1 1 \ 1 0 00083817 -multiply r 1 2 ! \ 1 0 00083666 -mundanely r 2 1 \ 2 0 00404879 00404749 -municipally r 1 1 \ 1 0 00130227 -munificently r 1 1 \ 1 0 00196692 -murderously r 2 1 \ 2 0 00405016 00273306 -murkily r 2 1 \ 2 0 00405169 00211964 -musically r 1 2 ! \ 1 1 00405269 -musicologically r 1 1 \ 1 0 00134115 -musingly r 1 1 \ 1 0 00405519 -mutatis_mutandis r 1 0 1 0 00256817 -mutely r 1 1 \ 1 1 00112090 -mutually r 1 1 \ 1 0 00405645 -mysteriously r 1 1 \ 1 0 00296836 -mystically r 1 1 \ 1 0 00133516 -naively r 1 1 \ 1 0 00406157 -nakedly r 2 1 \ 2 1 00406470 00406288 -namely r 1 0 1 1 00188510 -narrow-mindedly r 1 2 ! \ 1 0 00406638 -narrowly r 1 2 ! \ 1 1 00221429 -nasally r 1 1 \ 1 0 00143367 -nastily r 1 1 \ 1 0 00407053 -nationally r 2 1 \ 2 2 00135667 00407215 -nationwide r 1 0 1 0 00407215 -nattily r 1 1 \ 1 0 00407419 -naturally r 4 2 ! \ 4 4 00038625 00140403 00505352 00488773 -naughtily r 1 1 \ 1 0 00016678 -nay r 1 0 1 1 00407679 -ne'er r 1 0 1 0 00020759 -near r 2 0 2 2 00409709 00073033 -nearby r 1 0 1 1 00071321 -nearer r 1 1 ; 1 1 00407802 -nearest r 1 1 ; 1 0 00408021 -nearly r 2 0 2 1 00073033 00160659 -neatly r 1 1 \ 1 1 00180057 -nebulously r 1 1 \ 1 0 00511825 -necessarily r 3 2 ! \ 3 3 00408205 00112393 00408375 -neck_and_neck r 1 1 \ 1 0 00408632 -needfully r 1 1 \ 1 0 00408205 -needlessly r 1 1 \ 1 1 00195786 -needs r 1 0 1 0 00112393 -nefariously r 1 1 \ 1 0 00408865 -negatively r 2 1 \ 2 0 00004288 00004184 -neglectfully r 1 1 \ 1 0 00409009 -negligently r 1 1 \ 1 0 00409090 -nem_con r 1 0 1 0 00106316 -nemine_contradicente r 1 0 1 0 00106316 -nervelessly r 1 1 \ 1 0 00295545 -nervily r 1 1 \ 1 0 00284319 -nervously r 2 1 \ 2 2 00409200 00409459 -neurobiological r 1 1 \ 1 0 00133853 -neurotically r 1 1 \ 1 0 00409327 -never r 2 1 ! 2 1 00020759 00020997 -never_again r 1 0 1 1 00409597 -nevermore r 1 0 1 0 00409597 -nevertheless r 1 0 1 1 00027384 -new r 1 0 1 1 00112601 -newly r 1 0 1 1 00112601 -next r 1 0 1 1 00054212 -next_door r 1 0 1 1 00240082 -nicely r 1 1 \ 1 1 00187028 -nigh r 2 0 2 0 00409709 00073033 -nigher r 1 1 ; 1 0 00407802 -nighest r 1 1 ; 1 0 00408021 -nightly r 1 0 1 0 00410210 -nimbly r 1 1 \ 1 1 00189615 -nine_times r 1 0 1 0 00410317 -ninefold r 1 0 1 0 00410317 -nip_and_tuck r 1 1 \ 1 0 00408632 -no r 3 0 3 2 00050681 00024587 00024356 -no_doubt r 1 0 1 1 00150134 -no_end r 1 0 1 1 00169008 -no_longer r 1 1 ! 1 1 00031515 -no_matter r 1 0 1 1 00118531 -no_matter_what_happens r 1 0 1 1 00156833 -no_more r 2 0 2 2 00031515 00050681 -nobly r 1 1 \ 1 0 00410426 -nocturnally r 1 1 \ 1 0 00143457 -nohow r 1 0 1 0 00410520 -noiselessly r 1 1 \ 1 0 00462520 -noisily r 1 2 ! \ 1 1 00229255 -nominally r 1 1 \ 1 1 00125012 -non r 1 0 1 0 00024073 -non-verbally r 1 0 1 0 00128763 -nonchalantly r 2 1 \ 2 0 00295545 00243086 -noncompetitively r 1 2 ! \ 1 0 00243448 -noncomprehensively r 1 2 ! \ 1 0 00288556 -none r 1 0 1 1 00024682 -nonetheless r 1 0 1 1 00027384 -nonlexically r 1 1 \ 1 0 00136761 -nonspecifically r 1 1 \ 1 1 00042134 -nonstop r 1 0 1 0 00410620 -nonverbally r 1 1 \ 1 0 00128763 -nonviolently r 1 2 ! \ 1 0 00223979 -nor'-east r 1 0 1 0 00411661 -nor'-nor'-east r 1 0 1 0 00411849 -nor'-nor'-west r 1 0 1 0 00411947 -nor'-west r 1 0 1 0 00411755 -normally r 1 0 1 1 00106921 -north r 1 0 1 1 00244043 -north-east r 1 0 1 0 00411661 -north-northeast r 1 0 1 0 00411849 -north-northwest r 1 0 1 0 00411947 -north-west r 1 0 1 0 00411755 -northeast r 1 0 1 0 00411661 -northeastward r 1 1 \ 1 0 00511917 -northeastwardly r 1 1 \ 1 0 00511917 -northerly r 1 1 \ 1 0 00244043 -northward r 1 0 1 1 00244043 -northwards r 1 0 1 0 00244043 -northwest r 1 0 1 1 00411755 -northwestward r 1 1 \ 1 0 00512086 -northwestwardly r 1 1 \ 1 0 00512086 -nostalgically r 1 0 1 0 00410720 -not r 1 0 1 1 00024073 -not_by_a_blame_sight r 1 1 ; 1 1 00057042 -not_by_a_long_sight r 1 1 ; 1 0 00057042 -not_to_mention r 1 0 1 1 00063369 -notably r 1 0 1 1 00139266 -nothing r 1 0 1 0 00024257 -noticeably r 1 1 \ 1 1 00365668 -notoriously r 1 0 1 1 00410881 -notwithstanding r 1 0 1 1 00027384 -now r 7 0 7 5 00049433 00048475 00049102 00049220 00048739 00049758 00049685 -now_and_again r 1 0 1 1 00021212 -now_and_then r 1 0 1 1 00021212 -now_now r 1 0 1 0 00049889 -nowadays r 1 0 1 0 00048475 -nowhere r 1 0 1 1 00025464 -nowise r 1 0 1 1 00411570 -noxiously r 1 1 \ 1 0 00309875 -numbly r 1 1 \ 1 0 00411427 -numerically r 1 1 \ 1 0 00411171 -nutritionally r 1 1 \ 1 0 00411045 -nuttily r 1 1 \ 1 0 00303930 -o'clock r 1 0 1 1 00197182 -o'er r 1 0 1 0 00226458 -o.k. r 1 1 ; 1 0 00015471 -obdurately r 1 1 \ 1 0 00198845 -obediently r 1 2 ! \ 1 1 00317020 -objectionably r 1 1 \ 1 0 00306909 -objectively r 1 2 ! \ 1 0 00412045 -obligatorily r 2 2 ! \ 2 0 00414750 00288655 -obligingly r 1 1 \ 1 1 00231620 -obliquely r 2 1 \ 2 0 00453580 00274710 -obnoxiously r 1 1 \ 1 0 00306909 -obscenely r 2 1 \ 2 0 00412321 00388747 -obscurely r 1 1 \ 1 1 00247084 -obsequiously r 1 1 \ 1 0 00412409 -observably r 1 1 \ 1 0 00365668 -observantly r 1 1 \ 1 0 00412596 -observingly r 1 1 \ 1 0 00412596 -obsessionally r 1 1 \ 1 0 00243608 -obsessively r 1 1 \ 1 0 00243608 -obstinately r 1 1 \ 1 1 00198845 -obstreperously r 1 1 \ 1 0 00412708 -obstructively r 1 1 \ 1 0 00413387 -obtrusively r 1 2 ! \ 1 0 00412889 -obtusely r 1 1 \ 1 0 00323315 -obviously r 1 2 \ ; 1 1 00039318 -occasionally r 1 1 \ 1 1 00021212 -oddly r 2 1 \ 2 1 00035491 00437381 -odiously r 1 1 \ 1 0 00309632 -of_a_sudden r 1 0 1 1 00061677 -of_all_time r 1 0 1 1 00146387 -of_course r 1 0 1 1 00038625 -of_each_person r 1 0 1 0 00501291 -of_late r 1 0 1 1 00107416 -of_necessity r 1 0 1 1 00112393 -off r 3 1 ; 3 3 00232936 00235254 00193194 -off-hand r 1 0 1 0 00259467 -off-the-clock r 1 0 1 0 00259878 -off_and_on r 1 0 1 1 00169094 -off_the_cuff r 1 0 1 0 00169195 -off_the_record r 1 0 1 0 00169443 -offensively r 3 2 ! \ 3 0 00307333 00306909 00306682 -offhand r 2 0 2 0 00263657 00263427 -offhanded r 2 0 2 0 00263657 00263427 -offhandedly r 2 1 \ 2 0 00263657 00263427 -officially r 2 2 ! \ 2 2 00114310 00186491 -officiously r 1 1 \ 1 0 00413222 -offshore r 1 1 ! 1 1 00140049 -offside r 1 0 1 0 00413573 -offstage r 2 1 ! 2 0 00259653 00259573 -oft r 1 0 1 0 00035058 -often r 3 1 ! 3 2 00035058 00059413 00059547 -oftener r 1 0 1 0 00035255 -oftentimes r 1 0 1 1 00035058 -ofttimes r 1 0 1 0 00035058 -ok r 1 0 1 1 00053004 -okay r 1 1 ; 1 0 00015471 -ominously r 1 1 \ 1 1 00237423 -on r 3 0 3 3 00068368 00069346 00069472 -on_a_higher_floor r 1 0 1 0 00094545 -on_a_lower_floor r 1 0 1 0 00094396 -on_a_regular_basis r 1 0 1 0 00195024 -on_air r 1 0 1 0 00280886 -on_all_fours r 1 0 1 1 00169546 -on_an_individual_basis r 1 0 1 0 00207668 -on_an_irregular_basis r 1 0 1 0 00195185 -on_and_off r 1 0 1 0 00169094 -on_approval r 1 0 1 0 00169769 -on_average r 1 0 1 0 00169659 -on_base r 1 1 ; 1 0 00249736 -on_board r 1 0 1 0 00249878 -on_camera r 1 0 1 0 00514475 -on_earth r 1 0 1 0 00508255 -on_faith r 1 0 1 0 00169881 -on_it r 1 0 1 1 00468127 -on_occasion r 1 0 1 1 00021212 -on_one_hand r 1 0 1 0 00119798 -on_paper r 1 0 1 1 00246672 -on_purpose r 1 0 1 0 00062330 -on_request r 1 0 1 1 00159771 -on_that r 1 0 1 0 00468127 -on_that_point r 1 0 1 0 00109461 -on_the_average r 1 0 1 1 00169659 -on_the_button r 1 0 1 0 00368663 -on_the_coattails r 1 0 1 0 00119357 -on_the_contrary r 1 0 1 1 00170412 -on_the_dot r 1 0 1 0 00368663 -on_the_face_of_it r 1 0 1 1 00039941 -on_the_fly r 1 0 1 0 00170614 -on_the_nose r 1 0 1 0 00368663 -on_the_one_hand r 1 1 ! 1 1 00119798 -on_the_other_hand r 1 1 ! 1 1 00119578 -on_the_q.t. r 1 0 1 0 00166608 -on_the_qt r 1 0 1 0 00166608 -on_the_side r 1 0 1 1 00244201 -on_the_sly r 1 0 1 0 00106170 -on_the_spot r 3 0 3 1 00170715 00171027 00170867 -on_the_spur_of_the_moment r 1 0 1 0 00171135 -on_the_way r 1 0 1 1 00171322 -on_the_whole r 1 0 1 1 00151755 -on_the_wing r 1 0 1 1 00505010 -on_time r 1 0 1 0 00171457 -once r 3 0 3 3 00118869 00181342 00118965 -once_again r 1 0 1 1 00040365 -once_and_for_all r 1 0 1 1 00092985 -once_in_a_while r 1 0 1 1 00021212 -once_more r 1 0 1 1 00040365 -one-on-one r 1 0 1 0 00044579 -one-sidedly r 1 0 1 0 00253117 -one_after_another r 1 0 1 1 00505853 -one_at_a_time r 1 0 1 1 00505853 -one_by_one r 3 0 3 2 00505853 00156387 00207668 -one_one's_coattails r 1 0 1 0 00119357 -one_time r 1 0 1 0 00118869 -onerously r 1 1 \ 1 0 00413649 -only r 7 0 7 6 00004722 00008600 00010759 00010914 00028319 00505114 00011011 -only_if r 1 0 1 1 00505114 -only_too r 1 0 1 1 00250258 -only_when r 1 0 1 1 00505114 -onshore r 1 1 ! 1 1 00140168 -onstage r 1 1 ! 1 0 00259775 -onward r 2 0 2 0 00103859 00067265 -onwards r 1 0 1 0 00067265 -opaquely r 1 1 \ 1 0 00413725 -openly r 1 1 \ 1 1 00053394 -operationally r 1 1 \ 1 1 00413842 -operatively r 1 1 \ 1 0 00137262 -opportunely r 1 2 ! \ 1 0 00376266 -opposite r 1 0 1 0 00044861 -oppositely r 1 1 \ 1 0 00170332 -oppressively r 1 1 \ 1 0 00414031 -optically r 1 1 \ 1 1 00133041 -optimally r 1 1 \ 1 0 00414160 -optimistically r 1 2 ! \ 1 0 00414252 -optionally r 1 2 ! \ 1 0 00414619 -opulently r 1 1 \ 1 0 00414884 -or_else r 1 0 1 1 00063172 -or_so r 1 0 1 1 00007015 -orad r 1 2 ! \ 1 0 00172775 -orally r 2 2 \ ; 2 1 00156654 00156496 -ordinarily r 1 1 \ 1 1 00106921 -organically r 3 2 ! \ 3 2 00113582 00113311 00113722 -organizationally r 1 1 \ 1 0 00415058 -originally r 3 1 \ 3 2 00154725 00431941 00167286 -ornamentally r 1 1 \ 1 0 00207481 -ornately r 1 0 1 1 00207578 -osmotically r 1 1 \ 1 0 00415200 -ostensibly r 1 1 \ 1 1 00039941 -ostentatiously r 1 1 \ 1 0 00415277 -other_than r 1 0 1 0 00113082 -otherwise r 2 0 2 2 00046002 00113082 -out r 3 0 3 1 00232862 00233413 00233295 -out_and_away r 1 0 1 0 00047056 -out_front r 1 0 1 0 00067513 -out_loud r 1 0 1 1 00069771 -out_of r 1 0 1 0 00233573 -out_of_doors r 1 0 1 1 00110659 -out_of_hand r 1 1 ! 1 1 00148422 -out_of_nothing r 1 0 1 0 00171543 -out_of_place r 1 0 1 0 00510244 -out_of_sight r 2 0 2 2 00510105 00252249 -out_of_the_blue r 1 0 1 0 00040719 -out_of_the_way r 6 0 6 0 00041452 00041393 00041232 00041133 00041014 00040882 -out_of_thin_air r 1 0 1 0 00171543 -out_of_view r 1 0 1 0 00510105 -out_of_wedlock r 2 0 2 0 00362650 00171673 -outdoors r 1 1 ! 1 1 00110659 -outlandishly r 1 1 \ 1 0 00415496 -outrageously r 2 1 \ 2 0 00117508 00117372 -outright r 3 0 3 1 00097731 00097620 00033421 -outside r 2 1 ! 2 2 00110659 00110919 -outside_marriage r 1 0 1 0 00171673 -outspokenly r 1 1 \ 1 0 00415633 -outstandingly r 2 1 \ 2 1 00507053 00107230 -outward r 1 1 ! 1 1 00258677 -outwardly r 2 2 ! \ 2 1 00230331 00230058 -outwards r 1 0 1 0 00258677 -over r 5 0 5 3 00226550 00226677 00226458 00226758 00198039 -over_again r 1 0 1 1 00040365 -over_and_over r 1 0 1 1 00176981 -over_and_over_again r 1 0 1 1 00176981 -over_here r 1 0 1 1 00260998 -overbearingly r 1 1 \ 1 0 00415782 -overboard r 2 0 2 2 00506715 00173131 -overhead r 2 0 2 2 00249641 00249447 -overleaf r 1 0 1 0 00415866 -overly r 1 0 1 0 00047392 -overmuch r 1 0 1 0 00415963 -overnight r 2 0 2 1 00244342 00244449 -overpoweringly r 1 1 \ 1 0 00239688 -oversea r 1 0 1 0 00416084 -overseas r 2 0 2 2 00416084 00181676 -overside r 1 0 1 0 00416191 -overtime r 1 0 1 0 00259994 -overtly r 1 2 ! \ 1 1 00078558 -overwhelmingly r 1 1 \ 1 1 00239688 -owlishly r 1 1 \ 1 0 00416297 -p.a. r 1 0 1 0 00250570 -p.m. r 1 1 ; 1 0 00251408 -pacifically r 1 1 \ 1 0 00418712 -pacifistically r 1 1 \ 1 0 00416430 -painfully r 2 2 ! \ 2 2 00114609 00509533 -painlessly r 1 2 ! \ 1 0 00509702 -painstakingly r 1 1 \ 1 0 00416553 -palatably r 1 2 ! \ 1 0 00416763 -palely r 2 1 \ 2 0 00417139 00416996 -pallidly r 1 1 \ 1 0 00417139 -palmately r 1 1 \ 1 0 00023169 -palpably r 1 1 \ 1 1 00161420 -par_excellence r 1 0 1 0 00256912 -paradoxically r 1 1 \ 1 1 00023263 -parasitically r 1 1 \ 1 0 00023412 -pardonably r 1 2 ! \ 1 0 00333096 -parentally r 1 1 \ 1 0 00417299 -parenterally r 1 1 \ 1 0 00417376 -parenthetically r 1 1 \ 1 0 00417510 -pari_passu r 1 0 1 0 00257026 -parochially r 1 1 \ 1 0 00417671 -part r 1 0 1 1 00007703 -part-time r 1 0 1 0 00252740 -partially r 1 1 \ 1 1 00007703 -particularly r 3 1 \ 3 1 00084223 00248765 00248488 -partly r 1 1 ! 1 1 00007703 -passably r 1 0 1 0 00035718 -passim r 1 0 1 0 00257106 -passing r 1 0 1 0 00046299 -passionately r 2 1 \ 2 1 00209874 00034945 -passively r 1 2 ! \ 1 1 00079748 -past r 1 0 1 1 00417787 -pat r 1 0 1 0 00009859 -patchily r 1 1 \ 1 0 00417884 -patently r 1 2 \ ; 1 0 00039318 -paternally r 1 1 \ 1 1 00417947 -pathetically r 2 1 \ 2 0 00418223 00418077 -pathogenically r 1 1 \ 1 0 00023875 -pathologically r 1 1 \ 1 0 00132673 -patiently r 1 2 ! \ 1 1 00173644 -patrilineally r 1 1 \ 1 0 00391897 -patriotically r 1 2 ! \ 1 0 00418392 -patronisingly r 1 1 \ 1 0 00292133 -patronizingly r 1 1 \ 1 0 00292133 -peaceably r 1 1 \ 1 0 00418712 -peacefully r 1 1 \ 1 1 00109817 -peculiarly r 3 1 \ 3 3 00248488 00035491 00084223 -pedagogically r 1 1 \ 1 0 00311651 -pedantically r 1 1 \ 1 0 00418985 -peevishly r 1 1 \ 1 0 00419144 -pejoratively r 1 1 \ 1 0 00419283 -pell-mell r 1 0 1 0 00163991 -pellucidly r 1 1 \ 1 0 00389595 -penally r 1 1 \ 1 0 00435951 -penetratingly r 1 1 \ 1 0 00419404 -penetratively r 1 1 \ 1 0 00419404 -penitentially r 1 1 \ 1 0 00365110 -penitently r 1 2 ! \ 1 0 00365110 -pensively r 1 1 \ 1 0 00419576 -penuriously r 1 1 \ 1 0 00419690 -per_annum r 1 0 1 1 00250570 -per_capita r 1 0 1 0 00501291 -per_diem r 1 0 1 0 00250798 -per_se r 1 0 1 1 00036762 -per_year r 1 0 1 1 00250570 -peradventure r 1 0 1 0 00300247 -perceptibly r 1 2 ! \ 1 0 00365668 -perceptively r 1 1 \ 1 0 00419795 -perceptually r 1 1 \ 1 0 00419876 -perchance r 2 1 ; 2 2 00420004 00300247 -peremptorily r 1 1 \ 1 0 00365284 -perennially r 1 1 \ 1 1 00227818 -perfectly r 2 2 ! \ 2 2 00008997 00009650 -perfidiously r 1 1 \ 1 0 00420121 -perforce r 1 0 1 0 00260088 -perfunctorily r 1 1 \ 1 1 00260328 -perhaps r 1 0 1 1 00300247 -perilously r 1 1 \ 1 1 00090228 -periodically r 1 1 \ 1 1 00212974 -peripherally r 1 2 ! \ 1 1 00114932 -perkily r 1 1 \ 1 0 00420260 -permanently r 1 2 ! \ 1 1 00087916 -permissibly r 1 2 ! \ 1 0 00086926 -permissively r 1 1 \ 1 0 00086845 -perniciously r 2 1 \ 2 0 00378212 00277435 -perpendicularly r 2 1 \ 2 0 00452126 00420382 -perpetually r 2 1 \ 2 0 00227968 00020280 -perplexedly r 1 1 \ 1 0 00420525 -perseveringly r 1 1 \ 1 0 00272435 -persistently r 2 1 \ 2 2 00420679 00272512 -person-to-person r 1 0 1 0 00044579 -personally r 5 2 ! \ 5 5 00366393 00132060 00366266 00132158 00132322 -perspicuously r 1 1 \ 1 0 00389595 -persuasively r 1 1 \ 1 0 00420827 -pertinaciously r 1 1 \ 1 0 00420948 -pertinently r 1 1 \ 1 0 00421098 -pertly r 1 1 \ 1 0 00366490 -pervasively r 1 1 \ 1 0 00421324 -perversely r 2 1 \ 2 1 00247859 00247969 -pessimistically r 1 2 ! \ 1 0 00414436 -pettily r 1 1 \ 1 0 00421403 -pettishly r 1 1 \ 1 0 00216592 -petulantly r 1 1 \ 1 1 00216592 -pharmacologically r 1 1 \ 1 0 00421471 -phenomenally r 1 1 \ 1 0 00421629 -philanthropically r 1 1 \ 1 0 00421749 -philatelically r 1 1 \ 1 0 00421838 -philosophically r 2 1 \ 2 1 00132416 00501606 -phlegmatically r 1 1 \ 1 0 00421978 -phonemic r 1 1 \ 1 0 00131965 -phonetically r 1 1 \ 1 0 00131869 -photoelectrically r 1 1 \ 1 0 00121770 -photographically r 1 1 \ 1 1 00121894 -photometrically r 1 1 \ 1 0 00122014 -phylogenetically r 1 1 \ 1 0 00115117 -physically r 1 1 \ 1 1 00115254 -physiologically r 1 1 \ 1 0 00115370 -pianissimo r 1 2 ! \ 1 0 00343938 -piano r 1 2 ! \ 1 0 00343660 -pickaback r 2 0 2 0 00349454 00349309 -pictorially r 1 1 \ 1 1 00023958 -picturesquely r 1 1 \ 1 0 00422104 -piecemeal r 1 0 1 0 00422281 -piercingly r 2 1 \ 2 0 00422435 00050075 -pig-a-back r 2 0 2 0 00349454 00349309 -pig-headedly r 1 1 \ 1 0 00198845 -piggishly r 1 1 \ 1 0 00422619 -piggyback r 2 0 2 0 00349454 00349309 -pinnately r 1 1 \ 1 0 00422735 -piously r 1 1 \ 1 0 00310393 -piping r 1 0 1 0 00422842 -piquantly r 1 1 \ 1 0 00422944 -piratically r 1 1 \ 1 0 00424459 -pit-a-pat r 2 0 2 0 00424724 00424587 -piteously r 1 1 \ 1 1 00424862 -pithily r 1 1 \ 1 0 00424937 -pitiably r 1 1 \ 1 0 00418223 -pitifully r 1 1 \ 1 0 00425087 -pitilessly r 1 1 \ 1 1 00400471 -pitter-patter r 2 0 2 0 00424724 00424587 -pitty-pat r 2 0 2 0 00424724 00424587 -pitty-patty r 2 0 2 0 00424724 00424587 -pityingly r 1 0 1 1 00238281 -pizzicato r 1 1 ; 1 0 00423378 -placatingly r 1 1 \ 1 0 00425223 -placidly r 2 1 \ 2 1 00423243 00423098 -plaguey r 1 0 1 0 00425330 -plaguily r 1 1 \ 1 0 00425330 -plaguy r 1 0 1 0 00425330 -plain r 1 1 ; 1 0 00039318 -plainly r 2 2 \ ; 2 1 00039318 00005055 -plaintively r 1 1 \ 1 1 00425453 -plastically r 1 1 \ 1 1 00225563 -plausibly r 1 1 \ 1 0 00296131 -playfully r 1 1 \ 1 0 00425582 -pleadingly r 1 0 1 0 00278633 -pleasantly r 2 2 ! \ 2 2 00219325 00219110 -please r 1 0 1 0 00009966 -pleasingly r 1 1 \ 1 0 00425762 -pleasurably r 1 1 \ 1 0 00228546 -plenarily r 1 1 \ 1 0 00425872 -plenteously r 1 1 \ 1 0 00279867 -plentifully r 1 1 \ 1 0 00279867 -plenty r 1 0 1 1 00145713 -ploddingly r 1 1 \ 1 0 00426005 -plop r 1 1 ; 1 0 00426140 -pluckily r 1 1 \ 1 0 00426877 -plum r 2 1 ; 2 1 00009541 00009373 -plumb r 3 1 ; 3 1 00009373 00427057 00009541 -plump r 1 1 ; 1 0 00426278 -plunk r 1 1 ; 1 0 00426140 -pneumatically r 1 1 \ 1 0 00426457 -poetically r 1 1 \ 1 0 00131770 -poignantly r 1 1 \ 1 0 00066605 -point-blank r 1 0 1 0 00423471 -pointedly r 1 1 \ 1 0 00004038 -pointlessly r 1 1 \ 1 0 00426628 -poisonously r 1 1 \ 1 0 00426761 -polemically r 1 1 \ 1 0 00302622 -politely r 1 2 ! \ 1 1 00218479 -politically r 2 1 \ 2 2 00115859 00115745 -polygonally r 1 1 \ 1 0 00511029 -polyphonically r 1 1 \ 1 0 00131660 -polysyllabically r 1 1 \ 1 0 00144033 -pompously r 1 1 \ 1 1 00232744 -ponderously r 2 1 \ 2 0 00427243 00427134 -poorly r 1 2 \ ; 1 1 00011516 -pop r 1 0 1 0 00427394 -popishly r 1 1 \ 1 0 00427473 -popularly r 1 1 \ 1 1 00188669 -pornographically r 1 1 \ 1 0 00116004 -portentously r 1 1 \ 1 0 00427561 -positively r 2 2 \ ; 2 1 00182199 00511573 -possessively r 1 1 \ 1 0 00427685 -possibly r 2 2 ! \ 2 1 00300247 00300496 -post-free r 1 0 1 0 00427829 -post-haste r 1 0 1 0 00260163 -post-paid r 1 0 1 0 00427829 -post_meridiem r 1 1 ; 1 0 00251408 -posthumously r 1 1 \ 1 0 00423598 -postoperatively r 1 1 \ 1 0 00137352 -potentially r 1 1 \ 1 1 00300891 -potently r 1 1 \ 1 0 00427944 -poutingly r 1 0 1 0 00428173 -powerful r 1 1 ; 1 0 00032299 -powerfully r 2 1 \ 2 1 00428245 00427944 -powerlessly r 1 1 \ 1 0 00428493 -practicably r 1 1 \ 1 0 00428572 -practically r 3 1 \ 3 1 00053744 00053512 00022829 -pragmatically r 1 1 \ 1 0 00428722 -praiseworthily r 1 1 \ 1 0 00218886 -pre-eminently r 1 0 1 0 00428875 -precariously r 1 1 \ 1 0 00429097 -precedentedly r 1 2 ! \ 1 0 00488888 -precious r 1 1 ; 1 0 00429274 -preciously r 1 1 ; 1 0 00429274 -precipitately r 1 1 \ 1 0 00354938 -precipitously r 2 1 \ 2 0 00429534 00429390 -precisely r 3 2 ! \ 3 3 00158309 00368287 00368663 -precociously r 1 1 \ 1 0 00429700 -predicatively r 1 1 \ 1 0 00125108 -predictably r 1 1 \ 1 0 00429815 -predominantly r 1 1 \ 1 1 00161018 -preeminently r 1 1 \ 1 0 00428875 -preferably r 1 0 1 1 00115554 -preferentially r 1 1 \ 1 1 00184412 -prematurely r 2 1 \ 2 0 00430105 00429964 -preponderantly r 1 1 \ 1 0 00161018 -prepositionally r 1 1 \ 1 0 00514618 -preposterously r 1 0 1 0 00387017 -presciently r 1 1 \ 1 0 00430261 -presentably r 1 1 \ 1 0 00430520 -presently r 2 1 \ 2 2 00033922 00048268 -presidentially r 1 1 \ 1 0 00514696 -pressingly r 1 1 \ 1 0 00430706 -prestissimo r 1 1 ; 1 0 00423749 -presto r 2 1 ; 2 1 00061814 00061899 -presumably r 1 1 \ 1 1 00053952 -presumptively r 1 0 1 0 00053952 -presumptuously r 1 1 \ 1 0 00430783 -pretentiously r 1 2 ! \ 1 0 00430921 -preternaturally r 1 1 \ 1 0 00431238 -prettily r 1 1 \ 1 0 00431396 -pretty r 1 0 1 1 00035718 -pretty_much r 1 0 1 1 00022717 -previously r 1 1 \ 1 1 00060632 -priggishly r 1 1 \ 1 0 00431503 -prima_facie r 1 0 1 0 00260274 -primarily r 2 2 ! \ 2 1 00073897 00138410 -primitively r 2 1 \ 2 0 00431941 00431812 -primly r 1 1 \ 1 1 00431649 -principally r 1 1 \ 1 1 00073897 -prissily r 1 1 \ 1 0 00431649 -privately r 2 2 ! \ 2 2 00162137 00162645 -privily r 1 1 ; 1 0 00277064 -prn r 1 0 1 0 00181418 -pro r 1 1 ! 1 0 00289204 -pro_forma r 1 0 1 0 00260328 -pro_rata r 1 0 1 1 00260532 -pro_re_nata r 1 0 1 0 00181418 -pro_tem r 1 0 1 0 00257182 -pro_tempore r 1 0 1 0 00257182 -probabilistically r 1 1 \ 1 0 00432054 -probably r 2 1 \ 2 1 00138611 00296131 -problematically r 1 1 \ 1 0 00432218 -prodigally r 1 1 \ 1 0 00432446 -prodigiously r 1 1 \ 1 0 00432629 -productively r 1 2 ! \ 1 0 00213875 -profanely r 2 1 \ 2 1 00432907 00432751 -professedly r 2 1 \ 2 1 00189278 00276528 -professionally r 1 1 \ 1 1 00130432 -professorially r 1 1 \ 1 0 00125238 -proficiently r 1 1 \ 1 0 00432997 -profitably r 1 1 ! 1 1 00213875 -profitlessly r 1 1 \ 1 0 00433120 -profligately r 1 1 \ 1 0 00500447 -profoundly r 1 1 \ 1 1 00173353 -profusely r 1 0 1 1 00214554 -progressively r 1 1 \ 1 1 00059854 -prohibitively r 1 1 \ 1 0 00433247 -prominently r 1 1 \ 1 1 00208390 -promiscuously r 2 1 \ 2 0 00433363 00388944 -promisingly r 1 1 \ 1 0 00433514 -promptly r 3 1 \ 3 3 00105603 00105341 00105467 -pronto r 1 0 1 0 00105341 -properly r 2 2 ! \ 2 2 00196203 00505450 -properly_speaking r 1 0 1 1 00227023 -prophetically r 1 1 \ 1 1 00248249 -propitiously r 1 2 ! \ 1 0 00217434 -proportionally r 1 1 \ 1 1 00318303 -proportionately r 3 2 ! \ 3 1 00318303 00318641 00260532 -prosaically r 1 1 \ 1 0 00433637 -prosily r 1 1 \ 1 0 00433791 -prosperously r 1 1 \ 1 0 00015860 -protectively r 1 1 \ 1 1 00211397 -protractedly r 1 1 \ 1 0 00391989 -proudly r 1 1 \ 1 1 00189846 -provably r 1 1 \ 1 0 00308559 -proverbially r 1 1 \ 1 0 00433909 -providentially r 3 1 \ 3 0 00434213 00434063 00369288 -providently r 1 2 ! \ 1 0 00369132 -provincially r 1 1 \ 1 0 00125358 -provisionally r 1 1 \ 1 0 00088777 -provocatively r 1 1 \ 1 0 00434354 -provokingly r 1 1 \ 1 0 00434354 -prudently r 1 2 ! \ 1 0 00369288 -prudishly r 1 1 \ 1 0 00434504 -pruriently r 1 1 \ 1 0 00434687 -pryingly r 1 1 \ 1 0 00434764 -psychically r 1 1 \ 1 1 00207252 -psychologically r 2 1 \ 2 1 00434921 00435142 -publically r 1 0 1 0 00161932 -publicly r 2 2 ! \ 2 1 00161932 00162765 -puckishly r 1 1 \ 1 0 00367106 -pugnaciously r 1 1 \ 1 0 00435261 -punctiliously r 1 1 \ 1 0 00435342 -punctually r 1 1 \ 1 0 00064691 -pungently r 2 1 \ 2 1 00435666 00435546 -punily r 1 1 \ 1 0 00435803 -punishingly r 1 1 \ 1 0 00435872 -punitively r 1 1 \ 1 0 00435951 -punitorily r 1 1 \ 1 0 00435951 -purely r 1 0 1 1 00179112 -puritanically r 1 1 \ 1 0 00434504 -purportedly r 1 0 1 1 00154449 -purposefully r 1 1 \ 1 0 00436088 -purposelessly r 1 1 \ 1 0 00436282 -purposely r 1 0 1 1 00062330 -pusillanimously r 1 1 \ 1 0 00454869 -put_differently r 1 0 1 0 00179333 -pyramidically r 1 1 \ 1 0 00054084 -quaintly r 2 1 \ 2 0 00436531 00436409 -qualitatively r 1 1 \ 1 1 00436676 -quantitatively r 1 1 \ 1 1 00246547 -quarterly r 2 1 \ 2 0 00436980 00436848 -quaveringly r 1 1 \ 1 1 00509145 -queasily r 1 1 \ 1 0 00437102 -queerly r 2 1 \ 2 0 00437381 00437246 -querulously r 1 1 \ 1 1 00419144 -questionably r 1 1 \ 1 0 00437796 -questioningly r 2 1 \ 2 1 00357692 00437976 -quick r 1 0 1 1 00105603 -quicker r 1 1 \ 1 1 00086528 -quickest r 1 1 \ 1 0 00086685 -quickly r 3 2 ! \ 3 2 00085811 00105603 00290935 -quiet r 1 0 1 1 00229568 -quietly r 4 2 ! \ 4 3 00070166 00229399 00229568 00438146 -quite r 4 0 4 3 00018781 00018577 00018918 00019181 -quite_a r 1 0 1 0 00018918 -quite_an r 1 0 1 0 00018918 -quixotically r 1 1 \ 1 0 00438300 -quizzically r 1 1 \ 1 0 00437976 -racially r 1 1 \ 1 0 00130129 -racily r 1 1 \ 1 0 00438483 -radially r 1 1 \ 1 0 00438582 -radiantly r 1 1 \ 1 0 00438741 -radically r 1 1 \ 1 1 00178342 -radioactively r 1 1 \ 1 0 00514781 -raffishly r 1 1 \ 1 0 00221130 -raggedly r 3 1 \ 3 0 00439125 00438995 00438846 -rakishly r 1 1 \ 1 1 00221130 -rallentando r 1 1 ; 1 0 00423888 -ramblingly r 1 0 1 0 00500355 -rampantly r 1 1 \ 1 0 00439257 -randomly r 1 1 \ 1 1 00070765 -rapaciously r 1 1 \ 1 0 00439393 -rapidly r 1 1 \ 1 1 00085811 -rapturously r 1 1 \ 1 0 00325139 -rarely r 1 2 ! \ 1 1 00035385 -rashly r 1 1 \ 1 0 00354642 -raspingly r 1 1 \ 1 0 00350521 -rather r 4 0 4 3 00098714 00018302 00115554 00018781 -rationally r 1 2 ! \ 1 1 00184530 -rattling r 1 0 1 0 00031899 -raucously r 2 1 \ 2 1 00199333 00445487 -ravenously r 1 1 \ 1 0 00360054 -raving r 1 0 1 0 00439472 -ravingly r 1 0 1 0 00439472 -ravishingly r 1 1 \ 1 0 00439550 -readably r 1 1 \ 1 0 00362276 -readily r 2 0 2 1 00161193 00105341 -real r 1 0 1 1 00031899 -realistically r 2 2 ! \ 2 1 00215517 00125481 -really r 4 2 \ ; 4 2 00037226 00149510 00038013 00031899 -rearward r 1 0 1 1 00074407 -rearwards r 1 0 1 0 00074407 -reasonably r 2 2 ! \ 2 2 00035718 00215811 -reassuringly r 1 1 \ 1 1 00439687 -rebelliously r 1 1 \ 1 1 00198661 -rebukingly r 1 0 1 0 00439847 -recently r 1 1 \ 1 1 00107416 -receptively r 1 1 \ 1 0 00439930 -reciprocally r 3 1 \ 3 0 00405868 00405645 00175919 -recklessly r 1 1 \ 1 1 00354861 -recognizably r 1 2 ! \ 1 0 00424004 -recurrently r 1 1 \ 1 0 00514889 -red-handed r 1 0 1 0 00125602 -redly r 1 1 \ 1 1 00506216 -reflectively r 1 1 \ 1 1 00440009 -reflexly r 1 1 \ 1 1 00191776 -refreshfully r 1 0 1 0 00440250 -refreshingly r 2 1 \ 2 0 00440250 00440121 -regally r 1 1 \ 1 0 00440412 -regardless r 1 0 1 1 00118531 -regimentally r 1 1 \ 1 0 00511108 -regionally r 1 1 \ 1 1 00135567 -regretfully r 1 1 \ 1 1 00424313 -regrettably r 1 1 \ 1 0 00042769 -regularly r 3 2 ! \ 3 1 00195024 00331817 00331461 -relatively r 1 1 \ 1 1 00160834 -relativistically r 1 1 \ 1 0 00130000 -relentlessly r 1 1 \ 1 1 00217857 -relevantly r 1 2 ! \ 1 0 00440523 -reliably r 1 2 ! \ 1 1 00223395 -religiously r 2 1 \ 2 1 00178460 00178586 -reluctantly r 1 1 \ 1 1 00091259 -remarkably r 2 2 ! \ 2 1 00107230 00454512 -reminiscently r 1 1 \ 1 0 00440612 -remorsefully r 1 1 \ 1 0 00217998 -remorselessly r 1 1 \ 1 0 00400471 -remotely r 2 1 \ 2 0 00440845 00440745 -rent-free r 1 0 1 0 00260618 -repeatedly r 1 1 \ 1 1 00176880 -repellently r 1 1 \ 1 0 00441043 -repellingly r 1 1 \ 1 0 00441043 -repentantly r 1 2 ! \ 1 0 00365110 -repetitively r 1 1 \ 1 0 00441173 -reportedly r 1 1 \ 1 1 00200927 -reprehensibly r 1 1 \ 1 0 00303647 -reprehensively r 1 1 \ 1 0 00291765 -reproachfully r 1 1 \ 1 0 00163076 -reproducibly r 1 1 \ 1 1 00060541 -reprovingly r 1 1 \ 1 1 00163076 -repulsively r 1 1 \ 1 0 00309632 -reputably r 1 2 ! \ 1 0 00319180 -reputedly r 1 0 1 0 00441321 -resentfully r 1 1 \ 1 1 00441436 -reservedly r 1 1 \ 1 0 00441649 -residentially r 1 1 \ 1 0 00511205 -resignedly r 2 0 2 1 00441740 00264339 -resolutely r 2 2 ! \ 2 1 00241550 00298765 -resoundingly r 1 1 \ 1 0 00441999 -resourcefully r 1 1 \ 1 0 00442135 -respectably r 2 1 \ 2 0 00442384 00442218 -respectfully r 1 2 ! \ 1 0 00319275 -respectively r 1 1 \ 1 1 00137915 -resplendently r 1 1 \ 1 0 00350163 -responsibly r 1 2 ! \ 1 1 00106503 -restfully r 1 1 \ 1 0 00438146 -restively r 1 1 \ 1 1 00237529 -restlessly r 1 1 \ 1 1 00207012 -restrictively r 1 1 \ 1 0 00442540 -retail r 1 1 ! 1 0 00442669 -retentively r 1 1 \ 1 0 00442884 -reticently r 1 1 \ 1 0 00442963 -retroactively r 1 1 \ 1 0 00212866 -retrospectively r 1 1 \ 1 0 00443097 -revengefully r 1 1 \ 1 0 00443248 -reverentially r 1 1 \ 1 0 00443461 -reverently r 1 2 ! \ 1 0 00443461 -reversely r 1 0 1 0 00443646 -reversibly r 1 2 \ ; 1 0 00125763 -revoltingly r 1 1 \ 1 0 00314141 -rewardingly r 1 1 \ 1 0 00125906 -rhapsodically r 1 1 \ 1 0 00325139 -rhetorically r 1 1 \ 1 0 00443724 -rhythmically r 1 1 \ 1 1 00401581 -richly r 3 1 \ 3 1 00397016 00357251 00187617 -ridiculously r 1 1 \ 1 1 00387017 -right r 10 3 ! \ ; 10 9 00205052 00105162 00058033 00387828 00196203 00150351 00205125 00032299 00205226 00203922 -right-down r 1 0 1 0 00443850 -right_along r 1 0 1 0 00068215 -right_away r 2 0 2 1 00048739 00105467 -right_on r 1 0 1 0 00150351 -right_smart r 1 1 ; 1 0 00101752 -righteously r 1 2 ! \ 1 0 00443948 -rightfully r 1 1 \ 1 1 00223000 -rightly r 1 1 \ 1 1 00205375 -rigidly r 1 1 \ 1 1 00194578 -rigorously r 1 1 \ 1 1 00225410 -riotously r 2 1 \ 2 0 00481933 00335544 -ripely r 1 1 \ 1 0 00441911 -riskily r 1 1 \ 1 0 00444198 -ritually r 1 1 \ 1 0 00220669 -roaring r 1 0 1 0 00444324 -robustly r 1 1 \ 1 0 00444386 -roguishly r 2 1 \ 2 0 00444599 00444484 -rollickingly r 1 1 \ 1 1 00221287 -romantically r 2 2 ! \ 2 0 00470531 00444720 -roomily r 1 1 \ 1 0 00444832 -rotationally r 1 1 \ 1 0 00444975 -rottenly r 1 1 \ 1 0 00055101 -rotundly r 1 1 \ 1 0 00445187 -rough r 2 1 ; 2 1 00354033 00353916 -roughly r 3 2 \ ; 3 3 00007015 00354033 00353916 -round r 1 0 1 1 00071456 -round-arm r 1 0 1 0 00445374 -round_the_clock r 1 0 1 0 00152559 -roundly r 2 1 \ 2 1 00228815 00279523 -routinely r 1 0 1 1 00210935 -rowdily r 1 1 \ 1 0 00445487 -royally r 1 1 \ 1 0 00125985 -rudely r 1 1 \ 1 1 00218681 -ruefully r 1 1 \ 1 1 00217998 -ruggedly r 1 1 \ 1 0 00500990 -ruinously r 1 1 \ 1 0 00445641 -rurally r 1 1 \ 1 0 00143550 -ruthlessly r 1 1 \ 1 0 00445763 -sacredly r 1 1 \ 1 0 00178460 -sacrilegiously r 1 1 \ 1 0 00126113 -sadly r 3 2 ! \ 3 2 00042614 00404501 00093270 -safely r 1 0 1 1 00154213 -sagaciously r 1 1 \ 1 0 00272587 -sagely r 1 1 \ 1 0 00201570 -salaciously r 1 1 \ 1 0 00386474 -sanctimoniously r 1 1 \ 1 0 00446118 -sanely r 2 2 ! \ 2 0 00215811 00081194 -sapiently r 1 1 \ 1 0 00272587 -sarcastically r 1 1 \ 1 0 00445935 -sardonically r 1 1 \ 1 0 00445935 -satirically r 1 1 \ 1 1 00210342 -satisfactorily r 1 2 ! \ 1 1 00015368 -satisfyingly r 1 0 1 0 00183464 -saucily r 1 1 \ 1 0 00366490 -savagely r 2 1 \ 2 2 00201195 00201467 -scandalously r 1 1 \ 1 0 00446291 -scantily r 1 1 \ 1 0 00073763 -scarce r 1 0 1 1 00002621 -scarcely r 2 1 \ 2 1 00002621 00003093 -scarily r 1 1 \ 1 0 00345791 -scathingly r 1 1 \ 1 1 00446437 -scenically r 1 1 \ 1 0 00126198 -sceptically r 1 1 \ 1 0 00446593 -schematically r 1 1 \ 1 0 00446735 -schismatically r 1 1 \ 1 0 00511284 -scholastically r 1 1 \ 1 1 00126307 -scienter r 1 2 \ ; 1 0 00238064 -scientifically r 1 1 \ 1 1 00109949 -scoffingly r 1 0 1 0 00301168 -scorching r 1 1 \ 1 0 00446842 -scornfully r 1 1 \ 1 1 00080534 -scot_free r 1 0 1 1 00260835 -scrappily r 1 1 \ 1 0 00287207 -screakily r 1 1 \ 1 0 00303376 -screamingly r 1 1 \ 1 0 00446946 -scrumptiously r 1 1 \ 1 0 00393688 -scrupulously r 1 1 \ 1 1 00178586 -scurrilously r 1 1 \ 1 0 00447045 -scurvily r 1 1 \ 1 0 00397720 -searchingly r 1 1 \ 1 0 00447237 -seasonably r 2 2 ! \ 2 0 00273892 00273752 -seasonally r 1 1 \ 1 0 00447397 -seaward r 1 0 1 0 00447578 -seawards r 1 0 1 0 00447578 -second r 1 0 1 1 00102881 -second-best r 1 0 1 0 00447688 -second_class r 1 0 1 0 00447770 -second_hand r 1 1 \ 1 0 00504492 -secondarily r 1 2 ! \ 1 1 00138291 -secondhand r 1 1 \ 1 1 00058823 -secondly r 1 0 1 1 00102881 -secretively r 1 1 \ 1 0 00447865 -secretly r 2 1 \ 2 2 00166608 00162473 -securely r 4 2 ! \ 4 1 00224700 00377522 00377097 00376883 -sedately r 1 0 1 0 00448066 -seductively r 1 1 \ 1 0 00448130 -sedulously r 1 1 \ 1 1 00227558 -seemingly r 1 1 \ 1 1 00039941 -seldom r 1 0 1 1 00035385 -selectively r 1 1 \ 1 0 00448282 -self-conceitedly r 1 1 \ 1 0 00289421 -self-consciously r 1 2 ! \ 1 1 00448418 -self-evidently r 1 1 \ 1 0 00448773 -self-indulgently r 1 1 \ 1 0 00116091 -self-righteously r 1 1 \ 1 0 00446118 -selfishly r 1 2 ! \ 1 0 00327089 -selflessly r 1 1 \ 1 0 00270974 -semantically r 1 1 \ 1 1 00130646 -semiannually r 1 1 \ 1 0 00255315 -semimonthly r 1 1 \ 1 0 00255181 -semiweekly r 1 1 \ 1 0 00254851 -sensationally r 1 1 \ 1 0 00448858 -senselessly r 2 1 \ 2 0 00449016 00401708 -sensibly r 1 1 \ 1 1 00215811 -sensitively r 1 2 ! \ 1 0 00377864 -sensually r 1 1 \ 1 0 00449441 -sensuously r 1 1 \ 1 0 00449166 -sententiously r 1 1 \ 1 0 00424937 -sentimentally r 1 2 ! \ 1 0 00449609 -separably r 1 2 ! \ 1 0 00449925 -separately r 1 1 \ 1 1 00207668 -sequentially r 1 1 \ 1 0 00292349 -serenely r 1 1 \ 1 1 00450234 -serially r 1 1 \ 1 0 00126427 -seriatim r 1 0 1 0 00235634 -seriously r 2 1 \ 2 2 00165018 00015953 -servilely r 1 1 \ 1 0 00412409 -sevenfold r 1 0 1 0 00450382 -seventhly r 1 1 \ 1 0 00450507 -severally r 3 0 3 0 00450647 00207668 00137915 -severely r 3 1 \ 3 3 00015953 00241093 00091778 -sexually r 2 1 \ 2 2 00136561 00136469 -shabbily r 2 1 \ 2 0 00450893 00450753 -shaggily r 1 1 \ 1 0 00451024 -shakily r 2 1 \ 2 0 00451291 00451122 -shallowly r 1 1 \ 1 0 00451438 -shambolically r 1 1 \ 1 0 00451513 -shamefacedly r 1 1 \ 1 1 00451594 -shamefully r 1 1 \ 1 0 00313633 -shamelessly r 1 1 \ 1 0 00209518 -shapelessly r 1 1 \ 1 0 00451806 -sharp r 1 0 1 1 00503102 -sharply r 4 1 \ 4 3 00049947 00211651 00503102 00429534 -sheepishly r 1 1 \ 1 0 00451932 -sheer r 2 0 2 0 00452126 00452052 -shiftily r 1 1 \ 1 0 00452213 -shockingly r 2 1 \ 2 1 00452412 00452328 -shoddily r 1 1 \ 1 0 00452498 -short r 7 1 ; 7 1 00061528 00453009 00452931 00452810 00452708 00452624 00297319 -shortly r 5 1 \ 5 3 00034189 00033922 00297319 00289860 00034308 -shoulder-to-shoulder r 1 1 \ 1 0 00034500 -showily r 2 1 \ 2 0 00415277 00341051 -shrewdly r 1 1 \ 1 1 00272587 -shrewishly r 1 1 \ 1 0 00501063 -shrilly r 1 1 \ 1 1 00050075 -shudderingly r 1 0 1 0 00453189 -shyly r 1 1 \ 1 1 00228910 -sic r 1 0 1 1 00146500 -sickeningly r 1 1 \ 1 0 00314141 -sidearm r 1 1 \ 1 0 00514968 -sidelong r 3 0 3 0 00453852 00453720 00453580 -sidesaddle r 1 0 1 0 00453333 -sidesplittingly r 1 1 \ 1 0 00385216 -sideward r 1 0 1 0 00453939 -sidewards r 1 0 1 0 00453939 -sideway r 3 0 3 0 00454344 00454210 00454031 -sideways r 4 0 4 0 00454344 00454210 00454031 00453580 -sidewise r 3 0 3 1 00454031 00454344 00454210 -signally r 2 1 \ 2 0 00454647 00454512 -significantly r 3 2 ! \ 3 2 00509970 00006259 00367868 -silently r 1 1 \ 1 1 00112090 -silkily r 1 0 1 0 00454752 -similarly r 1 1 \ 1 1 00138060 -simperingly r 1 0 1 0 00454869 -simply r 4 2 \ ; 4 4 00004722 00246296 00004967 00005055 -simultaneously r 1 1 \ 1 1 00120095 -since_a_long_time_ago r 1 0 1 0 00160177 -sincerely r 2 2 ! \ 2 1 00378365 00160086 -sincerely_yours r 1 0 1 0 00160086 -sine_die r 1 0 1 1 00257338 -single-handed r 1 0 1 0 00455030 -single-handedly r 1 0 1 0 00455030 -single-mindedly r 1 1 \ 1 0 00455146 -singly r 2 2 ! \ 2 1 00083541 00207668 -singularly r 1 1 \ 1 1 00455233 -sinuously r 1 1 \ 1 0 00515072 -sinusoidally r 1 1 \ 1 0 00515147 -six_times r 1 0 1 0 00455508 -sixfold r 1 0 1 0 00455508 -sixthly r 1 1 \ 1 0 00455668 -skeptically r 1 0 1 0 00446593 -sketchily r 1 1 \ 1 0 00455780 -skew-whiff r 1 0 1 0 00272169 -skilfully r 1 0 1 0 00455933 -skillfully r 1 1 \ 1 1 00455933 -skimpily r 1 1 \ 1 0 00456103 -skittishly r 1 1 \ 1 0 00456204 -sky-high r 3 0 3 0 00456610 00456484 00456320 -skyward r 1 0 1 0 00260919 -skywards r 1 0 1 0 00260919 -slackly r 1 1 \ 1 0 00179442 -slam-bang r 3 0 3 0 00457545 00457428 00457288 -slanderously r 1 1 \ 1 0 00456790 -slangily r 1 1 \ 1 0 00456954 -slantingly r 1 1 \ 1 1 00457072 -slantways r 1 0 1 0 00457171 -slantwise r 1 0 1 1 00457171 -slap r 1 1 ; 1 0 00277585 -slap-bang r 2 0 2 0 00457662 00457288 -slapdash r 2 1 ; 2 0 00457545 00277585 -slavishly r 1 1 \ 1 0 00457757 -sleekly r 1 1 \ 1 0 00457884 -sleepily r 1 1 \ 1 1 00457998 -sleeplessly r 1 1 \ 1 0 00458141 -slenderly r 2 1 \ 2 0 00458270 00396699 -slickly r 1 0 1 0 00238417 -slightingly r 1 1 \ 1 0 00317562 -slightly r 2 1 \ 2 1 00036291 00458270 -slimly r 1 1 \ 1 0 00458270 -slopingly r 1 1 \ 1 0 00457072 -sloppily r 1 1 \ 1 0 00458610 -slouchily r 1 1 \ 1 0 00458836 -slouchingly r 1 0 1 0 00458721 -slow r 2 1 ; 2 1 00161630 00222879 -slower r 1 1 \ 1 0 00086621 -slowest r 1 1 \ 1 0 00086780 -slowly r 2 3 ! \ ; 2 1 00161630 00388494 -sluggishly r 1 1 \ 1 1 00205929 -slyly r 1 1 \ 1 0 00293926 -smack r 1 1 ; 1 0 00277585 -small r 1 1 ! 1 0 00225971 -small-mindedly r 1 1 \ 1 0 00406638 -smarmily r 1 1 \ 1 0 00485765 -smartly r 3 1 \ 3 0 00187455 00181748 00006858 -smash r 1 0 1 0 00458932 -smashingly r 1 0 1 0 00458932 -smilingly r 1 1 ! 1 1 00459036 -smolderingly r 1 1 \ 1 1 00503504 -smoothly r 2 1 \ 2 1 00210446 00458454 -smoulderingly r 1 1 \ 1 0 00503504 -smugly r 1 1 \ 1 0 00459345 -smuttily r 1 1 \ 1 0 00459521 -snappishly r 1 1 \ 1 0 00459623 -sneakily r 1 1 \ 1 0 00471757 -sneakingly r 1 1 \ 1 0 00459764 -sneeringly r 1 1 \ 1 0 00459905 -snidely r 1 1 \ 1 0 00459905 -snobbishly r 1 1 \ 1 0 00460134 -snootily r 1 1 \ 1 0 00460134 -snugly r 3 1 \ 3 2 00193316 00193407 00193511 -so r 10 1 ; 10 8 00146594 00118363 00146926 00147126 00147272 00121135 00146763 00117620 00043003 00037641 -so-so r 1 0 1 0 00055312 -so_far r 3 0 3 1 00027918 00098959 00028198 -so_to_speak r 2 0 2 2 00152776 00152882 -soaking r 1 0 1 0 00461405 -sobbingly r 1 0 1 0 00460339 -soberly r 1 1 \ 1 1 00183823 -sociably r 2 2 ! \ 2 1 00350930 00460439 -socially r 2 1 \ 2 1 00126527 00126638 -sociobiologically r 1 1 \ 1 0 00133719 -socioeconomically r 1 1 \ 1 0 00203526 -sociolinguistically r 1 1 \ 1 0 00131018 -sociologically r 1 1 \ 1 0 00460747 -soft r 1 2 \ ; 1 1 00148139 -softly r 4 2 ! \ 4 3 00070166 00503945 00180279 00343660 -solely r 1 1 \ 1 1 00008600 -solemnly r 1 1 \ 1 1 00189960 -solicitously r 1 1 \ 1 0 00460894 -solidly r 2 1 \ 2 2 00231336 00231138 -solitarily r 1 1 \ 1 0 00461045 -solo r 1 0 1 0 00157967 -somberly r 1 1 \ 1 0 00461152 -sombrely r 1 0 1 0 00461152 -some r 1 0 1 1 00007015 -someday r 1 0 1 1 00189401 -somehow r 2 0 2 2 00026137 00026416 -someplace r 1 1 ; 1 1 00025559 -sometime r 1 0 1 1 00021702 -sometimes r 1 0 1 1 00021878 -someway r 1 0 1 0 00026137 -someways r 1 0 1 0 00026137 -somewhat r 2 0 2 2 00036291 00035718 -somewhere r 1 1 ; 1 1 00025559 -somnolently r 1 1 \ 1 0 00323049 -sonorously r 1 1 \ 1 0 00445187 -soon r 1 0 1 1 00033922 -soon_enough r 1 0 1 1 00167816 -sooner r 2 0 2 1 00259096 00115554 -soonest r 1 0 1 0 00034641 -soothingly r 1 1 \ 1 1 00461283 -sopping r 1 0 1 0 00461405 -sordidly r 1 1 \ 1 0 00461506 -sorely r 2 1 \ 2 1 00461617 00509533 -sorrowfully r 2 1 \ 2 0 00461755 00321165 -sort_of r 1 0 1 1 00018302 -sottishly r 1 1 \ 1 0 00461941 -sotto_voce r 1 0 1 0 00257418 -sou'-east r 1 0 1 0 00462016 -sou'-sou'-east r 1 0 1 0 00462203 -sou'-sou'-west r 1 0 1 0 00462301 -sou'west r 1 0 1 0 00462110 -soughingly r 1 1 \ 1 1 00510495 -soulfully r 1 1 \ 1 1 00210237 -soullessly r 1 1 \ 1 0 00462399 -soundlessly r 1 1 \ 1 0 00462520 -soundly r 2 2 \ ; 2 0 00057892 00057388 -sourly r 1 1 \ 1 1 00462718 -south r 1 0 1 1 00243938 -south-east r 1 0 1 0 00462016 -south-southeast r 1 0 1 0 00462203 -south-southwest r 1 0 1 0 00462301 -south-west r 1 0 1 0 00462110 -southeast r 1 0 1 1 00462016 -southeastward r 1 1 \ 1 0 00512210 -southeastwardly r 1 1 \ 1 0 00512210 -southerly r 2 1 \ 2 0 00462954 00462859 -southward r 1 0 1 1 00462954 -southwards r 1 0 1 0 00462954 -southwest r 1 0 1 0 00462110 -southwestward r 1 1 \ 1 0 00512379 -southwestwardly r 1 1 \ 1 0 00512379 -spaceward r 1 0 1 0 00515228 -spacewards r 1 0 1 0 00515228 -spaciously r 1 1 \ 1 0 00444832 -sparely r 1 1 \ 1 0 00463080 -sparingly r 1 1 \ 1 0 00396699 -sparsely r 1 1 \ 1 1 00463245 -spasmodically r 2 1 \ 2 0 00463471 00463340 -spatially r 1 1 \ 1 1 00130549 -specially r 2 1 \ 2 2 00502710 00084223 -specifically r 1 2 ! \ 1 1 00041758 -speciously r 1 1 \ 1 0 00463655 -spectacularly r 1 1 \ 1 1 00209976 -spectrographically r 1 1 \ 1 0 00463732 -speculatively r 1 1 \ 1 1 00241871 -speechlessly r 1 1 \ 1 0 00463876 -speedily r 1 1 \ 1 1 00085811 -spherically r 1 1 \ 1 0 00143621 -spicily r 1 1 \ 1 0 00422944 -spinally r 1 1 \ 1 0 00136377 -spirally r 1 1 \ 1 0 00464044 -spiritedly r 1 1 \ 1 0 00034746 -spiritually r 1 1 \ 1 1 00211517 -spitefully r 2 1 \ 2 0 00309351 00201339 -splendidly r 2 1 \ 2 1 00182316 00350163 -spontaneously r 2 1 \ 2 1 00191889 00088655 -spookily r 1 0 1 0 00325802 -sporadically r 1 1 \ 1 0 00212974 -sportingly r 1 2 ! \ 1 0 00464138 -sportively r 1 1 \ 1 0 00034862 -spotlessly r 1 1 \ 1 0 00464523 -sprucely r 1 1 \ 1 0 00006858 -spuriously r 1 1 \ 1 0 00464714 -squalidly r 1 1 \ 1 0 00461506 -square r 3 0 3 1 00052026 00051440 00051268 -squarely r 5 1 \ 5 3 00051590 00052026 00051268 00051440 00051017 -squeamishly r 1 1 \ 1 0 00464878 -stably r 2 1 \ 2 0 00515429 00515298 -staccato r 1 1 ! 1 0 00388094 -staggeringly r 1 0 1 1 00196540 -stagily r 1 1 \ 1 0 00465008 -staidly r 1 1 \ 1 0 00183823 -stanchly r 1 0 1 0 00466005 -standoffishly r 1 1 \ 1 0 00465193 -stark r 1 0 1 0 00465341 -starkly r 3 1 \ 3 0 00465647 00465519 00465418 -startlingly r 1 1 \ 1 0 00465764 -statistically r 1 1 \ 1 1 00079232 -statutorily r 1 1 \ 1 0 00465873 -staunchly r 1 1 \ 1 0 00466005 -steadfastly r 1 1 \ 1 1 00050817 -steadily r 2 2 ! \ 2 1 00050186 00174491 -steady r 1 0 1 0 00174491 -stealthily r 1 1 \ 1 1 00192986 -steaming r 1 0 1 0 00422842 -steeply r 1 1 \ 1 1 00466131 -step_by_step r 2 0 2 1 00107987 00216278 -stepwise r 1 0 1 0 00216278 -stereotypically r 1 1 \ 1 0 00466246 -sternly r 1 1 \ 1 1 00241093 -stertorously r 1 1 \ 1 0 00466333 -stickily r 1 1 \ 1 0 00466457 -stiff r 2 0 2 0 00466652 00186142 -stiffly r 2 1 \ 2 2 00186142 00194578 -still r 4 2 ! \ 4 4 00031304 00027384 00017639 00467269 -stiltedly r 1 1 \ 1 0 00466730 -stingily r 1 1 \ 1 0 00466835 -stirringly r 1 1 \ 1 0 00467016 -stochastically r 1 1 \ 1 0 00467147 -stock-still r 1 0 1 0 00467269 -stockily r 1 1 \ 1 0 00468739 -stodgily r 1 1 \ 1 0 00469473 -stoically r 1 1 \ 1 0 00468837 -stolidly r 1 1 \ 1 1 00216387 -stonily r 1 1 \ 1 1 00468966 -stormily r 1 1 \ 1 0 00034945 -stoutly r 1 1 \ 1 1 00203667 -stragglingly r 1 0 1 0 00438995 -straight r 3 1 \ 3 3 00051848 00058128 00509432 -straight-backed r 1 0 1 0 00330203 -straight_off r 1 0 1 0 00048739 -straightaway r 1 0 1 1 00048739 -straightforwardly r 1 1 \ 1 0 00051017 -straightway r 2 0 2 0 00467596 00467496 -strangely r 1 1 \ 1 0 00437381 -strategically r 1 1 \ 1 0 00469068 -strenuously r 1 1 \ 1 1 00090733 -strictly r 3 1 \ 3 2 00179112 00469302 00225410 -strictly_speaking r 1 0 1 1 00227023 -stridently r 1 1 \ 1 0 00469188 -strikingly r 1 1 \ 1 1 00193886 -stringently r 1 1 \ 1 0 00469302 -strongly r 2 2 ! \ 2 1 00177289 00428245 -structurally r 1 1 \ 1 1 00243809 -stubbornly r 1 1 \ 1 1 00198845 -studiously r 1 1 \ 1 1 00187342 -stuffily r 1 1 \ 1 0 00469473 -stunningly r 1 1 \ 1 0 00209976 -stupendously r 1 1 \ 1 0 00469613 -stupidly r 1 1 \ 1 1 00175344 -sturdily r 1 1 \ 1 0 00469726 -stylishly r 1 1 \ 1 0 00469822 -stylistically r 1 1 \ 1 0 00469931 -suavely r 1 1 \ 1 0 00470050 -sub_rosa r 1 0 1 0 00257522 -subconsciously r 1 1 \ 1 1 00245716 -subcutaneously r 1 1 \ 1 0 00136088 -subjectively r 1 2 ! \ 1 0 00412178 -sublimely r 1 0 1 0 00470189 -submissively r 1 1 \ 1 0 00308031 -subsequently r 1 1 \ 1 1 00061203 -subserviently r 1 1 \ 1 0 00412409 -substantially r 2 1 \ 2 2 00014285 00379432 -subtly r 1 1 \ 1 1 00470354 -successfully r 1 2 ! \ 1 1 00119940 -successively r 1 1 \ 1 1 00180420 -succinctly r 1 1 \ 1 1 00290308 -such r 1 1 ; 1 1 00147386 -suddenly r 3 1 \ 3 3 00061677 00061528 00171135 -sufficiently r 1 2 ! \ 1 1 00145571 -suggestively r 1 1 \ 1 0 00515573 -suitably r 1 2 ! \ 1 1 00139508 -sulkily r 1 1 \ 1 1 00470870 -sullenly r 1 1 \ 1 1 00242321 -sultrily r 1 1 \ 1 0 00449441 -summa_cum_laude r 1 1 \ 1 0 00291477 -summarily r 1 1 \ 1 0 00470988 -sumptuously r 1 1 \ 1 0 00414884 -sunnily r 1 1 \ 1 0 00219325 -super r 1 0 1 1 00046299 -superbly r 1 2 \ ; 1 1 00183090 -superciliously r 1 1 \ 1 0 00459905 -superficially r 1 1 \ 1 1 00143722 -superfluously r 1 1 \ 1 0 00471122 -superlatively r 1 1 \ 1 0 00471269 -supernaturally r 1 1 \ 1 0 00431238 -superstitiously r 1 1 \ 1 0 00471352 -supinely r 2 1 \ 2 0 00471640 00471498 -supposedly r 1 0 1 1 00154449 -supra r 1 0 1 1 00079947 -supremely r 1 1 \ 1 1 00216485 -sure r 1 1 ; 1 1 00144722 -sure_as_shooting r 1 1 ; 1 1 00144722 -sure_enough r 2 1 ; 2 2 00150243 00144722 -surely r 1 2 \ ; 1 1 00144722 -surgically r 1 1 \ 1 0 00137142 -surlily r 1 1 \ 1 0 00284656 -surpassingly r 1 1 \ 1 0 00471945 -surprisedly r 1 1 \ 1 0 00472068 -surprisingly r 2 1 \ 2 2 00145228 00213301 -surreptitiously r 1 1 \ 1 1 00471757 -suspiciously r 1 1 \ 1 1 00241272 -sweepingly r 1 1 \ 1 0 00472163 -sweet r 1 1 ; 1 1 00472323 -sweetly r 1 2 \ ; 1 1 00472323 -swiftly r 1 1 \ 1 1 00053274 -swimmingly r 1 0 1 0 00210446 -syllabically r 1 1 \ 1 0 00143840 -symbiotically r 1 2 \ ; 1 0 00116180 -symbolically r 2 1 \ 2 1 00116280 00126733 -symmetrically r 1 2 ! \ 1 1 00175641 -sympathetically r 2 2 ! \ 2 1 00192007 00192153 -symptomatically r 1 1 \ 1 0 00144120 -synchronously r 1 1 \ 1 0 00472668 -synergistically r 2 1 \ 2 0 00515803 00515681 -synonymously r 1 1 \ 1 0 00515914 -syntactically r 1 1 \ 1 1 00136267 -synthetically r 1 1 \ 1 0 00472830 -systematically r 1 2 ! \ 1 1 00120474 -tacitly r 1 1 \ 1 0 00473021 -taciturnly r 1 1 \ 1 0 00112090 -tactfully r 1 2 ! \ 1 0 00473170 -tactically r 1 1 \ 1 1 00473548 -tactlessly r 1 2 ! \ 1 0 00473338 -tactually r 1 1 \ 1 1 00198403 -talkatively r 1 1 \ 1 0 00392875 -talkily r 1 1 \ 1 0 00392875 -tamely r 1 1 \ 1 0 00473698 -tandem r 1 0 1 0 00257634 -tangentially r 1 1 \ 1 0 00144193 -tangibly r 1 1 \ 1 1 00473835 -tantalizingly r 1 1 \ 1 1 00195907 -tardily r 2 2 \ ; 2 0 00161630 00100267 -tartly r 1 1 \ 1 1 00473941 -tastefully r 1 2 ! \ 1 0 00474062 -tastelessly r 1 2 ! \ 1 0 00474217 -tastily r 2 1 \ 2 0 00474385 00474062 -tattily r 1 1 \ 1 0 00334210 -tauntingly r 1 0 1 0 00474487 -tautly r 1 1 \ 1 0 00474656 -tawdrily r 1 1 \ 1 0 00347009 -taxonomically r 1 1 \ 1 0 00516034 -tearfully r 1 1 \ 1 1 00474758 -teasingly r 1 1 \ 1 0 00474487 -technically r 3 1 \ 3 2 00126972 00126837 00127130 -technologically r 1 1 \ 1 1 00145341 -tediously r 1 1 \ 1 0 00215048 -telegraphically r 1 1 \ 1 0 00474902 -telescopically r 1 1 \ 1 0 00475094 -tellingly r 1 1 \ 1 0 00475305 -temperamentally r 1 1 \ 1 0 00145455 -temperately r 3 1 \ 3 0 00475591 00475469 00264555 -temporally r 1 1 \ 1 0 00127339 -temporarily r 1 2 ! \ 1 1 00088303 -temptingly r 1 1 \ 1 0 00448130 -tenaciously r 1 1 \ 1 1 00235701 -tendentiously r 1 1 \ 1 0 00475697 -tenderly r 1 1 \ 1 1 00475845 -tenfold r 1 0 1 1 00246455 -tensely r 1 1 \ 1 1 00173790 -tentatively r 1 1 \ 1 1 00179212 -tenthly r 1 1 \ 1 0 00475977 -tenuously r 1 1 \ 1 1 00227681 -tepidly r 1 0 1 0 00389804 -terminally r 1 1 \ 1 0 00127449 -terrestrially r 2 1 \ 2 0 00404879 00127534 -terribly r 2 2 \ ; 2 1 00054950 00055101 -terrifically r 1 2 \ ; 1 0 00183090 -territorially r 1 1 \ 1 0 00127640 -tersely r 1 1 \ 1 1 00474902 -testily r 1 1 \ 1 1 00216592 -tetchily r 1 1 \ 1 0 00476116 -tete_a_tete r 1 0 1 0 00045254 -thankfully r 2 1 \ 2 0 00199986 00199882 -that_is_to_say r 1 0 1 1 00188510 -that_much r 1 0 1 1 00023074 -the_least_bit r 1 0 1 1 00056729 -the_other_way_around r 1 0 1 0 00177686 -the_right_way r 1 0 1 0 00196203 -the_whole_way r 1 0 1 0 00152066 -theatrically r 2 1 \ 2 1 00465008 00188248 -thematically r 1 1 \ 1 0 00127752 -then r 3 0 3 3 00117620 00118032 00117903 -then_again r 1 0 1 1 00119578 -thence r 3 0 3 1 00043608 00043794 00043003 -thenceforth r 1 0 1 1 00146281 -theologically r 2 1 \ 2 0 00476402 00476247 -theoretically r 2 2 ! \ 2 2 00170045 00170188 -therapeutically r 1 1 \ 1 0 00127866 -there r 3 1 ! 3 3 00109151 00109461 00109328 -thereabout r 2 0 2 0 00467810 00467686 -thereabouts r 2 0 2 0 00467810 00467686 -thereafter r 1 0 1 1 00146281 -thereby r 1 0 1 1 00121002 -therefor r 1 1 ; 1 1 00044076 -therefore r 2 0 2 1 00043003 00294459 -therefrom r 2 0 2 2 00043794 00043608 -therein r 1 1 ; 1 1 00240707 -thereinafter r 1 0 1 0 00467916 -thereof r 2 0 2 1 00468024 00043794 -thereon r 1 0 1 1 00468127 -thereto r 1 0 1 1 00468219 -theretofore r 1 0 1 1 00502228 -thereunder r 1 0 1 1 00468326 -therewith r 1 0 1 1 00468447 -therewithal r 1 0 1 0 00468587 -thermally r 1 1 \ 1 1 00128058 -thermodynamically r 1 1 \ 1 1 00079354 -thermostatically r 1 1 \ 1 0 00476528 -thick r 2 0 2 0 00478040 00476962 -thickly r 5 2 ! \ 5 2 00477194 00299753 00478040 00477359 00476962 -thievishly r 1 1 \ 1 0 00193100 -thin r 1 0 1 0 00477814 -thinly r 4 2 ! \ 4 1 00477939 00477814 00477636 00477060 -third r 1 0 1 1 00102986 -thirdhand r 1 1 \ 1 0 00058978 -thirdly r 1 0 1 0 00102986 -thirstily r 2 1 \ 2 0 00478175 00200777 -this_evening r 1 0 1 1 00079499 -this_night r 1 0 1 0 00079499 -thither r 1 0 1 1 00109328 -thoroughly r 2 2 \ ; 2 2 00057257 00057388 -though r 1 0 1 1 00119139 -thoughtfully r 2 2 ! \ 2 2 00217105 00216788 -thoughtlessly r 2 2 ! \ 2 0 00217245 00216964 -thousand-fold r 1 0 1 1 00140271 -thousand_times r 1 0 1 0 00140271 -threateningly r 1 1 \ 1 0 00399802 -three_times r 1 0 1 1 00476680 -threefold r 1 0 1 0 00476680 -thrice r 1 0 1 1 00257784 -thriftily r 1 1 \ 1 0 00478311 -thriftlessly r 1 1 \ 1 0 00478512 -through r 5 0 5 3 00478821 00478634 00478904 00478730 00057626 -through_an_experiment r 1 0 1 0 00085339 -through_and_through r 1 0 1 0 00057626 -through_empirical_observation r 1 0 1 0 00084038 -throughout r 2 0 2 1 00103087 00257106 -thus r 2 0 2 2 00043003 00121135 -thus_far r 1 0 1 1 00027918 -thusly r 1 0 1 0 00121135 -tidily r 1 1 \ 1 0 00401183 -tight r 2 0 2 2 00086404 00505226 -tightly r 2 1 \ 2 2 00300137 00092569 -til_now r 1 0 1 0 00027918 -time_and_again r 1 0 1 1 00176981 -time_and_time_again r 1 0 1 1 00176981 -timely r 1 0 1 1 00273752 -timidly r 1 1 \ 1 1 00228910 -timorously r 1 1 \ 1 0 00478991 -tip-top r 1 0 1 0 00479108 -tiptoe r 1 0 1 1 00479193 -tiredly r 1 1 \ 1 1 00090424 -tirelessly r 1 1 \ 1 0 00052489 -tiresomely r 1 1 \ 1 0 00215048 -to_a_fault r 1 0 1 0 00047392 -to_a_great_extent r 1 0 1 0 00176383 -to_a_greater_extent r 1 0 1 1 00099341 -to_a_higher_place r 1 0 1 0 00080169 -to_a_lesser_extent r 1 0 1 0 00099527 -to_a_lower_place r 1 0 1 0 00080039 -to_a_man r 1 0 1 0 00171931 -to_a_t r 1 0 1 0 00172020 -to_advantage r 1 0 1 0 00171781 -to_all_intents_and_purposes r 1 0 1 0 00060300 -to_and_fro r 1 0 1 1 00076193 -to_be_precise r 1 0 1 0 00227023 -to_be_sure r 1 0 1 1 00150134 -to_begin_with r 1 0 1 1 00167286 -to_boot r 1 0 1 1 00046167 -to_both_ears r 1 0 1 0 00207945 -to_date r 1 0 1 0 00172151 -to_each_one r 1 0 1 0 00239908 -to_it r 1 0 1 1 00468219 -to_no_degree r 1 0 1 0 00411570 -to_one_ear r 1 0 1 0 00208111 -to_order r 1 0 1 0 00172261 -to_perfection r 1 0 1 0 00172020 -to_that r 1 0 1 0 00468219 -to_that_degree r 1 0 1 0 00098959 -to_that_effect r 1 0 1 0 00172443 -to_that_extent r 1 0 1 1 00098959 -to_the_contrary r 1 0 1 1 00170412 -to_the_full r 1 1 ; 1 0 00010466 -to_the_highest_degree r 1 0 1 0 00111609 -to_the_hilt r 1 0 1 1 00172548 -to_the_letter r 1 0 1 0 00172020 -to_the_limit r 1 0 1 0 00172548 -to_the_lowest_degree r 1 0 1 0 00111758 -to_the_south r 1 0 1 0 00243938 -to_wit r 1 0 1 0 00188510 -today r 2 0 2 2 00048475 00207366 -toe-to-toe r 1 0 1 0 00116390 -together r 6 0 6 6 00116791 00116994 00507927 00116510 00116588 00116705 -together_with r 1 0 1 0 00117082 -tolerably r 1 2 ! \ 1 0 00055312 -tolerantly r 1 2 ! \ 1 0 00380833 -tomorrow r 1 0 1 1 00479275 -tonelessly r 1 1 \ 1 0 00479366 -tongue-in-cheek r 2 0 2 0 00277728 00085667 -tonight r 1 0 1 1 00079499 -too r 2 0 2 2 00047392 00047534 -too_much r 1 0 1 1 00415963 -too_soon r 1 0 1 1 00100082 -tooth_and_nail r 1 0 1 0 00172348 -topically r 1 1 \ 1 0 00135418 -topographically r 1 1 \ 1 0 00479470 -topologically r 1 1 \ 1 0 00516150 -toppingly r 1 2 \ ; 1 0 00183090 -topsy-turvily r 1 0 1 0 00163704 -topsy-turvy r 2 0 2 0 00255854 00163704 -torpidly r 1 1 \ 1 0 00298062 -tortuously r 2 0 2 0 00479790 00479693 -torturously r 1 1 \ 1 0 00261389 -totally r 1 2 \ ; 1 1 00008007 -touchily r 1 1 \ 1 0 00479850 -touchingly r 1 1 \ 1 0 00066605 -toughly r 1 1 \ 1 0 00479965 -tout_ensemble r 1 0 1 0 00151755 -traditionally r 1 1 \ 1 1 00476807 -tragically r 1 1 \ 1 1 00236982 -traitorously r 1 1 \ 1 0 00335809 -tranquilly r 1 1 \ 1 1 00186904 -transcendentally r 1 1 \ 1 0 00480079 -transiently r 1 1 \ 1 0 00480195 -transitionally r 1 1 \ 1 0 00480393 -transitively r 1 2 ! \ 1 0 00381094 -transitorily r 1 1 \ 1 0 00480504 -transparently r 2 1 \ 2 0 00480751 00480584 -transversally r 1 1 \ 1 1 00137770 -transversely r 1 1 \ 1 1 00137770 -treacherously r 1 1 \ 1 0 00335809 -treasonably r 1 1 \ 1 0 00335809 -tremendously r 1 1 \ 1 1 00196540 -tremulously r 1 1 \ 1 0 00480929 -trenchantly r 1 1 \ 1 0 00481054 -trepidly r 1 1 \ 1 0 00478991 -trickily r 1 1 \ 1 0 00293926 -trimly r 1 1 \ 1 0 00464620 -trippingly r 1 1 \ 1 0 00391308 -tritely r 1 1 \ 1 0 00481199 -triumphantly r 1 1 \ 1 1 00194915 -trivially r 2 1 \ 2 0 00481419 00481300 -tropically r 1 1 \ 1 0 00481528 -truculently r 2 1 \ 2 0 00481785 00481648 -true r 1 0 1 1 00184284 -truly r 4 2 \ ; 4 2 00037226 00223000 00378365 00038013 -trustfully r 2 2 ! \ 2 1 00320568 00206035 -trustingly r 1 1 \ 1 0 00320568 -truthfully r 1 2 ! \ 1 0 00400192 -tumultuously r 1 1 \ 1 0 00481933 -tunefully r 1 1 \ 1 0 00398955 -tunelessly r 1 1 \ 1 1 00507219 -turbulently r 2 1 \ 2 0 00482100 00034945 -turgidly r 1 1 \ 1 0 00269726 -tutorially r 1 1 \ 1 0 00482235 -twice r 2 0 2 2 00065294 00083393 -twirlingly r 1 0 1 1 00221887 -two_times r 1 0 1 0 00482373 -twofold r 1 0 1 0 00482373 -typically r 1 2 ! \ 1 1 00128168 -typographically r 1 1 \ 1 0 00482480 -ulteriorly r 1 1 \ 1 0 00516244 -ultimately r 1 1 \ 1 1 00047903 -ultra_vires r 1 0 1 0 00482562 -ultrasonically r 1 1 \ 1 1 00006729 -unabashedly r 1 1 \ 1 0 00005453 -unable_to_help r 1 0 1 0 00208773 -unacceptably r 1 2 ! \ 1 0 00055518 -unaccompanied r 1 1 \ 1 0 00157967 -unaccountably r 1 1 \ 1 0 00482659 -unachievably r 1 1 \ 1 0 00483461 -unadvisedly r 1 1 \ 1 0 00354781 -unalterably r 1 1 \ 1 0 00482810 -unambiguously r 2 2 ! \ 2 1 00220490 00175490 -unambitiously r 1 2 ! \ 1 0 00262403 -unanimously r 1 1 \ 1 1 00106316 -unappealingly r 1 2 ! \ 1 0 00261825 -unappreciatively r 1 2 ! \ 1 0 00271470 -unarguably r 1 1 \ 1 0 00483042 -unashamedly r 1 2 ! \ 1 1 00209518 -unassailably r 1 1 \ 1 0 00482810 -unassertively r 1 2 ! \ 1 0 00266647 -unassumingly r 1 1 \ 1 0 00483330 -unattainably r 1 1 \ 1 0 00483461 -unattractively r 1 2 ! \ 1 0 00242172 -unavoidably r 1 1 \ 1 1 00208557 -unawares r 3 0 3 1 00483850 00483647 00452624 -unbearably r 1 0 1 0 00483963 -unbecomingly r 1 1 \ 1 0 00305153 -unbeknown r 1 0 1 0 00484062 -unbeknownst r 1 0 1 0 00484062 -unbelievably r 2 2 ! \ 2 0 00295825 00244787 -unbelievingly r 1 2 ! \ 1 0 00296425 -unblinkingly r 1 1 \ 1 1 00508367 -unblushingly r 1 1 \ 1 0 00484193 -uncannily r 1 1 \ 1 0 00484360 -unceasingly r 1 1 \ 1 1 00282858 -unceremoniously r 1 2 ! \ 1 0 00220824 -uncertainly r 2 1 \ 2 1 00174232 00484462 -unchangeably r 1 1 \ 1 0 00482810 -uncharacteristically r 1 2 ! \ 1 0 00247712 -unchivalrously r 1 2 ! \ 1 0 00484570 -uncivilly r 1 2 ! \ 1 0 00338018 -unclearly r 1 1 \ 1 0 00039217 -unco r 1 0 1 0 00107230 -uncomfortably r 1 2 ! \ 1 1 00155187 -uncommonly r 1 1 \ 1 0 00484801 -uncomparably r 1 0 1 0 00370421 -uncomplainingly r 1 2 ! \ 1 0 00288091 -uncompromisingly r 1 1 \ 1 0 00484922 -unconcernedly r 1 1 \ 1 1 00485341 -unconditionally r 2 2 ! \ 2 1 00292805 00087188 -unconsciously r 1 2 ! \ 1 1 00242810 -unconstitutionally r 1 2 ! \ 1 0 00122273 -uncontrollably r 1 1 \ 1 1 00485504 -uncontroversially r 1 2 ! \ 1 0 00302791 -unconventionally r 1 2 ! \ 1 0 00023721 -unconvincingly r 1 2 ! \ 1 0 00192636 -uncouthly r 1 1 \ 1 0 00485620 -uncritically r 1 2 ! \ 1 0 00184909 -unctuously r 1 1 \ 1 0 00485765 -undecipherably r 1 1 \ 1 0 00362455 -undemocratically r 1 2 ! \ 1 0 00122630 -undeniably r 1 1 \ 1 0 00485902 -undependably r 1 2 ! \ 1 0 00223635 -under r 8 0 8 1 00486509 00486694 00486605 00486384 00486296 00486223 00486157 00486067 -under_arms r 1 0 1 1 00387455 -under_it r 1 0 1 0 00468326 -under_that r 1 0 1 1 00468326 -under_the_circumstances r 1 0 1 1 00172641 -under_way r 1 1 \ 1 0 00238958 -underarm r 1 0 1 0 00486800 -underfoot r 2 0 2 1 00244918 00245035 -underground r 2 0 2 0 00487018 00486917 -underhand r 2 0 2 0 00487138 00486800 -underhandedly r 1 1 \ 1 0 00487138 -underneath r 2 0 2 0 00487623 00487408 -understandably r 1 1 \ 1 0 00202341 -understandingly r 1 1 \ 1 1 00210127 -undeservedly r 1 2 ! \ 1 0 00301654 -undesirably r 1 1 \ 1 0 00485012 -undiplomatically r 1 2 ! \ 1 0 00203353 -undisputedly r 1 1 \ 1 0 00483042 -undoubtedly r 1 0 1 1 00079107 -undramatically r 1 2 ! \ 1 0 00139071 -unduly r 1 1 \ 1 1 00487759 -uneasily r 1 1 \ 1 1 00185970 -unemotionally r 1 2 ! \ 1 0 00185807 -unendingly r 1 1 \ 1 0 00282858 -unenergetically r 1 0 1 0 00388590 -unenthusiastically r 1 2 ! \ 1 0 00188950 -unequally r 1 2 ! \ 1 1 00332365 -unequivocally r 1 1 \ 1 1 00220490 -unerringly r 1 1 \ 1 1 00232057 -unethically r 1 2 ! \ 1 0 00330709 -unevenly r 3 2 ! \ 3 1 00331594 00439125 00332365 -uneventfully r 1 1 \ 1 0 00487877 -unexcitingly r 1 2 ! \ 1 0 00332906 -unexpectedly r 2 1 \ 2 2 00040719 00040547 -unfailingly r 1 1 \ 1 0 00113834 -unfairly r 1 2 ! \ 1 0 00285266 -unfaithfully r 1 2 ! \ 1 0 00223635 -unfalteringly r 1 1 \ 1 1 00212208 -unfashionably r 1 2 ! \ 1 0 00337516 -unfavorably r 1 2 ! \ 1 0 00230581 -unfavourably r 1 0 1 0 00230581 -unfeelingly r 2 2 ! \ 2 0 00339149 00238529 -unfeignedly r 1 1 \ 1 0 00378365 -unforgettably r 1 1 \ 1 0 00399533 -unforgivably r 1 2 ! \ 1 0 00333341 -unforgivingly r 1 2 ! \ 1 0 00343057 -unfortunately r 1 2 ! \ 1 1 00042769 -ungracefully r 1 2 ! \ 1 0 00194362 -ungraciously r 1 1 ! 1 0 00194362 -ungrammatically r 1 2 ! \ 1 0 00488000 -ungratefully r 1 2 ! \ 1 0 00271470 -ungrudgingly r 1 2 ! \ 1 0 00351918 -unhappily r 2 2 ! \ 2 0 00050556 00042614 -unharmoniously r 1 0 1 0 00236164 -unhelpfully r 1 2 ! \ 1 0 00184131 -unhesitatingly r 1 2 ! \ 1 1 00145992 -unhurriedly r 1 2 ! \ 1 1 00206749 -unhygienically r 1 2 ! \ 1 0 00360551 -uniformly r 1 1 \ 1 1 00250153 -unilaterally r 1 2 ! \ 1 0 00253117 -unimaginably r 1 1 \ 1 0 00488287 -unimaginatively r 2 2 ! \ 2 0 00433637 00209073 -unimpeachably r 1 1 \ 1 1 00437576 -unimpressively r 1 2 ! \ 1 0 00213700 -uninformatively r 1 2 ! \ 1 0 00374277 -uninstructively r 1 2 ! \ 1 0 00374277 -unintelligently r 1 2 ! \ 1 0 00202185 -unintelligibly r 1 2 ! \ 1 0 00202554 -unintentionally r 1 2 ! \ 1 1 00062650 -uninterestingly r 1 2 ! \ 1 0 00214942 -uninterruptedly r 1 1 \ 1 1 00488403 -uninvitedly r 1 1 \ 1 0 00485155 -uniquely r 1 1 \ 1 1 00175490 -unitedly r 1 0 1 0 00116588 -universally r 1 0 1 1 00195342 -unjustifiably r 1 2 ! \ 1 0 00238794 -unjustly r 1 2 ! \ 1 0 00205561 -unkindly r 1 2 ! \ 1 0 00004567 -unknowingly r 1 1 ! 1 0 00237833 -unlawfully r 1 2 ! \ 1 0 00251990 -unluckily r 1 2 ! \ 1 1 00042769 -unmanageably r 1 2 ! \ 1 1 00390421 -unmanfully r 1 2 ! \ 1 0 00390816 -unmanly r 1 0 1 0 00390816 -unmelodiously r 1 2 ! \ 1 0 00399106 -unmemorably r 1 2 ! \ 1 0 00399702 -unmercifully r 1 1 \ 1 0 00400471 -unmindfully r 1 2 ! \ 1 0 00153865 -unmistakably r 2 1 \ 2 1 00212062 00454512 -unmusically r 1 2 ! \ 1 0 00405389 -unnaturally r 3 2 ! \ 3 0 00488579 00140566 00038767 -unnecessarily r 2 2 ! \ 2 1 00408498 00179677 -unnoticeably r 1 1 \ 1 0 00365414 -unobtrusively r 1 2 ! \ 1 1 00412987 -unofficially r 2 2 ! \ 2 0 00244201 00114461 -unoriginally r 1 1 \ 1 0 00154803 -unpalatably r 1 2 ! \ 1 0 00416855 -unpardonably r 1 2 ! \ 1 0 00333341 -unpatriotically r 1 2 ! \ 1 0 00418541 -unpleasantly r 1 2 ! \ 1 1 00219503 -unprecedentedly r 1 2 ! \ 1 0 00488980 -unpredictably r 1 1 \ 1 1 00107722 -unpretentiously r 1 2 ! \ 1 0 00431058 -unproductively r 1 2 ! \ 1 0 00214084 -unprofitably r 2 2 ! \ 2 0 00433120 00214084 -unpropitiously r 1 2 ! \ 1 0 00217640 -unqualifiedly r 1 1 \ 1 1 00229963 -unquestionably r 2 1 \ 2 1 00437576 00036935 -unquestioningly r 1 1 \ 1 1 00502098 -unquietly r 1 2 ! \ 1 0 00229861 -unreadably r 1 1 \ 1 0 00362455 -unrealistically r 1 2 ! \ 1 1 00215661 -unreasonably r 2 2 ! \ 2 0 00216100 00036068 -unreasoningly r 1 0 1 0 00511375 -unrecognisable r 1 0 1 0 00424140 -unrecognizably r 1 2 ! \ 1 0 00424140 -unrelentingly r 1 1 \ 1 0 00217857 -unreliably r 1 2 ! \ 1 0 00223635 -unremarkably r 1 2 ! \ 1 0 00106921 -unrepentantly r 1 2 ! \ 1 0 00364916 -unreproducibly r 1 1 \ 1 0 00375356 -unreservedly r 1 0 1 1 00489086 -unrestrainedly r 1 1 \ 1 0 00489195 -unrighteously r 1 2 ! \ 1 0 00444070 -unromantically r 1 1 ! 1 0 00470692 -unsatiably r 2 0 2 0 00376761 00376573 -unsatisfactorily r 1 2 ! \ 1 0 00015706 -unscientifically r 1 1 \ 1 0 00110092 -unscrupulously r 1 1 \ 1 0 00489281 -unseasonably r 1 2 ! \ 1 0 00274022 -unselfconsciously r 1 2 ! \ 1 0 00448593 -unselfishly r 1 2 ! \ 1 0 00327249 -unsentimentally r 1 2 ! \ 1 0 00449765 -unshakably r 1 1 \ 1 0 00212208 -unsmilingly r 1 2 ! \ 1 1 00459193 -unsociably r 1 2 ! \ 1 0 00460604 -unsparingly r 1 1 \ 1 0 00446437 -unspeakably r 1 1 \ 1 0 00371853 -unsportingly r 1 2 ! \ 1 0 00464255 -unsteadily r 1 2 ! \ 1 1 00174232 -unstintingly r 1 1 \ 1 0 00489425 -unsuccessfully r 1 2 ! \ 1 0 00168075 -unsuitably r 1 1 ! 1 1 00139759 -unsuspectingly r 1 1 \ 1 0 00464360 -unswervingly r 2 1 \ 2 0 00489670 00489507 -unsymmetrically r 1 0 1 0 00175778 -unsympathetically r 1 2 ! \ 1 0 00192330 -unsystematically r 1 2 ! \ 1 0 00120678 -unthinkably r 1 1 \ 1 0 00488287 -unthinking r 1 0 1 0 00217245 -unthinkingly r 1 1 \ 1 0 00217245 -untidily r 1 1 \ 1 0 00400998 -until_now r 1 0 1 0 00027918 -untimely r 1 1 \ 1 0 00429964 -untruly r 1 1 \ 1 0 00489792 -untruthfully r 1 2 ! \ 1 0 00399974 -untypically r 1 1 \ 1 0 00128290 -ununderstandably r 1 0 1 0 00202554 -unusually r 1 1 \ 1 1 00107230 -unutterably r 1 1 \ 1 1 00371853 -unwantedly r 1 1 \ 1 0 00485012 -unwarily r 1 2 ! \ 1 0 00226257 -unwarrantably r 1 1 \ 1 0 00489972 -unwaveringly r 1 1 \ 1 0 00050817 -unwillingly r 1 2 ! \ 1 0 00305431 -unwisely r 1 0 1 1 00201733 -unwittingly r 1 2 ! \ 1 1 00237833 -unwontedly r 1 1 \ 1 0 00485264 -unworthily r 1 1 \ 1 0 00490226 -up r 5 1 ! 5 1 00096333 00097011 00096921 00096760 00096636 -up-country r 1 0 1 0 00490304 -up_and_down r 2 0 2 2 00076512 00224602 -up_here r 1 0 1 1 00260998 -up_the_stairs r 1 0 1 1 00094545 -up_to_now r 2 0 2 1 00027918 00172151 -uphill r 2 0 2 0 00490498 00490410 -uppermost r 2 0 2 0 00490678 00490579 -uppishly r 1 1 \ 1 0 00460134 -uprightly r 2 1 \ 2 0 00490876 00490798 -upriver r 1 1 ! 1 0 00097108 -uproariously r 1 1 \ 1 0 00182642 -upside_down r 1 0 1 1 00219641 -upstage r 1 2 ! ; 1 0 00264027 -upstairs r 2 1 ! 2 1 00094545 00094675 -upstate r 1 0 1 1 00173246 -upstream r 1 1 ! 1 1 00097108 -uptown r 1 1 ! 1 0 00187764 -upward r 2 1 ! 2 1 00096333 00096636 -upwardly r 1 1 ! 1 0 00096333 -upwards r 2 1 ! 2 1 00096333 00096636 -upwind r 2 1 ! 2 0 00095195 00094893 -urbanely r 1 1 \ 1 0 00491150 -urgently r 1 1 \ 1 1 00072849 -usefully r 1 2 ! \ 1 0 00491292 -uselessly r 1 2 ! \ 1 1 00491438 -usually r 1 1 \ 1 1 00106921 -usuriously r 1 1 \ 1 0 00333613 -utterly r 1 1 \ 1 1 00008997 -uxoriously r 1 1 \ 1 0 00491577 -vacantly r 1 1 \ 1 1 00491705 -vacuously r 1 1 \ 1 0 00491820 -vaguely r 1 1 \ 1 1 00232600 -vainly r 1 1 \ 1 0 00167920 -valiantly r 1 1 \ 1 0 00491895 -validly r 1 1 \ 1 0 00492050 -valorously r 1 1 \ 1 0 00491895 -vanishingly r 1 0 1 0 00501750 -vapidly r 1 1 \ 1 0 00492168 -variably r 1 1 \ 1 0 00492269 -variously r 1 1 \ 1 1 00052231 -vastly r 1 1 \ 1 1 00005779 -vauntingly r 1 0 1 0 00225672 -vehemently r 1 1 \ 1 0 00492414 -venally r 1 1 \ 1 0 00314597 -vengefully r 1 1 \ 1 0 00443248 -venomously r 1 1 \ 1 0 00426761 -ventrally r 1 1 \ 1 0 00083303 -verbally r 2 1 \ 2 0 00128554 00128456 -verbatim r 1 0 1 0 00257864 -verbosely r 1 1 \ 1 0 00492543 -verily r 1 1 ; 1 0 00492745 -vertically r 1 1 \ 1 0 00358516 -very r 2 0 2 2 00031899 00510749 -very_fast r 1 0 1 0 00165906 -very_loudly r 1 0 1 1 00344073 -very_much r 1 0 1 1 00059171 -very_much_like r 1 0 1 1 00188600 -very_softly r 1 0 1 0 00343938 -very_well r 2 0 2 2 00340523 00053004 -vexatiously r 1 1 \ 1 0 00516322 -vicariously r 1 1 \ 1 0 00492900 -vice_versa r 1 0 1 1 00177686 -viciously r 1 1 \ 1 0 00201195 -victoriously r 1 1 \ 1 1 00199437 -videlicet r 1 0 1 0 00188510 -vigilantly r 1 1 \ 1 0 00493040 -vigorously r 1 1 \ 1 1 00181748 -vilely r 1 1 \ 1 0 00493148 -vindictively r 1 1 \ 1 0 00443248 -violently r 1 2 ! \ 1 1 00223859 -virtually r 2 1 \ 2 2 00111451 00073033 -virtuously r 2 1 \ 2 0 00364477 00283873 -virulently r 1 1 \ 1 0 00493260 -vis-a-vis r 1 0 1 1 00045092 -viscerally r 2 1 \ 2 0 00511375 00133221 -viscidly r 1 1 \ 1 0 00466457 -visibly r 2 2 ! \ 2 2 00382287 00193652 -visually r 1 0 1 1 00133140 -vitally r 1 1 \ 1 1 00090551 -vitriolically r 1 1 \ 1 0 00281950 -viva_voce r 1 0 1 0 00258088 -vivace r 1 0 1 0 00493414 -vivaciously r 1 1 \ 1 0 00493494 -vividly r 1 1 \ 1 1 00245843 -viz. r 1 0 1 0 00188510 -vocally r 1 1 \ 1 0 00128660 -vocationally r 1 1 \ 1 1 00044262 -vociferously r 1 1 \ 1 1 00154102 -volcanically r 1 1 \ 1 0 00144292 -volitionally r 1 1 \ 1 0 00305283 -volubly r 1 1 \ 1 0 00284012 -volumetrically r 1 1 \ 1 1 00118253 -voluntarily r 1 2 ! \ 1 1 00231765 -voluptuously r 2 1 \ 2 0 00493608 00449308 -voraciously r 1 1 \ 1 0 00493732 -voyeuristically r 1 1 \ 1 0 00493845 -vulgarly r 1 1 \ 1 0 00459521 -vulnerably r 1 1 \ 1 0 00493974 -wackily r 1 1 \ 1 0 00303930 -wafer-thin r 1 1 \ 1 0 00516401 -waggishly r 1 1 \ 1 0 00494053 -waist-deep r 1 0 1 0 00494128 -waist-high r 1 0 1 0 00494128 -wanly r 1 1 \ 1 0 00494224 -wantonly r 2 1 \ 2 0 00494336 00388944 -warily r 1 2 ! \ 1 1 00226133 -warm r 1 1 \ 1 0 00432314 -warmly r 2 1 \ 2 1 00219855 00432314 -wastefully r 1 1 \ 1 0 00432446 -watchfully r 1 1 \ 1 1 00493040 -way r 1 1 ; 1 1 00101752 -weakly r 1 2 ! \ 1 1 00177483 -wealthily r 1 1 \ 1 0 00494455 -wearily r 1 1 \ 1 1 00090424 -week_after_week r 1 0 1 1 00178028 -week_by_week r 1 0 1 1 00178116 -weekly r 1 0 1 0 00081591 -weightily r 2 1 \ 2 0 00494624 00494522 -weirdly r 1 1 \ 1 1 00192768 -well r 13 2 ! ; 13 8 00011093 00012779 00012531 00015135 00013429 00013092 00014285 00015007 00014882 00014616 00013793 00013626 00012129 -well-nigh r 1 0 1 1 00073033 -well-timed r 1 0 1 0 00273752 -west r 1 0 1 1 00323908 -westerly r 2 2 ! \ 2 1 00324470 00324358 -westward r 1 0 1 1 00324022 -westwards r 1 0 1 1 00324022 -whacking r 1 0 1 0 00494756 -what_is_more r 1 0 1 1 00029367 -whatever_may_come r 1 0 1 0 00156833 -wheezily r 1 1 \ 1 0 00494827 -wheezingly r 1 1 \ 1 0 00494827 -when_first_seen r 1 0 1 0 00103426 -when_the_time_comes r 1 0 1 0 00165269 -whence r 1 0 1 1 00495309 -wheresoever r 1 0 1 0 00495377 -wherever r 1 0 1 0 00495377 -whimsically r 1 0 1 0 00337068 -whole r 1 1 ; 1 1 00008007 -wholeheartedly r 1 1 \ 1 0 00494948 -wholesale r 2 1 ! 2 0 00442774 00260704 -wholesomely r 1 1 \ 1 0 00495129 -wholly r 1 3 ! \ ; 1 1 00008007 -whopping r 1 0 1 0 00495446 -wickedly r 1 1 \ 1 1 00144586 -wide r 4 0 4 2 00495743 00496010 00495858 00495524 -widely r 3 0 3 3 00495663 00495524 00506342 -wild r 2 1 \ 2 1 00439257 00174870 -wildly r 3 1 \ 3 2 00174735 00175135 00174987 -wilfully r 1 1 \ 1 1 00496127 -willfully r 1 1 \ 1 0 00496127 -willingly r 1 2 ! \ 1 0 00305283 -willy-nilly r 2 0 2 2 00070765 00244578 -windily r 1 1 \ 1 0 00492543 -windward r 1 1 ! 1 0 00095063 -winsomely r 1 1 \ 1 0 00236840 -wisely r 1 2 ! \ 1 1 00201570 -wishfully r 1 1 \ 1 0 00496264 -wistfully r 1 1 \ 1 0 00496382 -withal r 2 0 2 1 00027384 00040494 -witheringly r 1 1 \ 1 0 00496555 -within r 1 0 1 1 00110815 -without_doubt r 1 0 1 0 00150134 -wittily r 1 1 \ 1 0 00496681 -wittingly r 1 2 ! \ 1 1 00237636 -woefully r 1 1 \ 1 1 00093270 -wolfishly r 1 1 \ 1 0 00496800 -wonderfully r 1 2 \ ; 1 1 00183090 -wonderingly r 1 1 \ 1 0 00357692 -wondrous r 1 1 ; 1 0 00183090 -wondrously r 1 2 \ ; 1 1 00183090 -woodenly r 1 1 \ 1 1 00194362 -word_for_word r 1 0 1 0 00257864 -wordily r 1 1 \ 1 0 00492543 -wordlessly r 1 1 \ 1 1 00112090 -worriedly r 1 1 \ 1 1 00496962 -worryingly r 1 1 \ 1 0 00496879 -worse r 1 1 ; 1 1 00017077 -worst r 1 0 1 0 00017241 -worthily r 1 1 \ 1 0 00497129 -worthlessly r 1 1 \ 1 0 00497219 -wrathfully r 1 1 \ 1 1 00497298 -wretchedly r 1 1 \ 1 0 00497432 -wrong r 1 0 1 1 00204125 -wrongfully r 1 1 \ 1 0 00516492 -wrongheadedly r 1 1 \ 1 0 00199137 -wrongly r 2 2 ! \ 2 2 00204906 00204125 -wryly r 1 1 \ 1 1 00224843 -yea r 1 0 1 0 00497560 -yeah r 1 0 1 0 00497560 -yearly r 1 0 1 0 00081737 -yearningly r 1 0 1 1 00389421 -yesterday r 2 0 2 1 00507716 00507819 -yet r 6 0 6 3 00027795 00027918 00017639 00047641 00028198 00027384 -yieldingly r 1 1 \ 1 0 00317020 -yon r 1 0 1 0 00082308 -yonder r 1 0 1 0 00082308 -you_bet r 1 0 1 1 00152345 -you_said_it r 1 0 1 0 00152345 -youthfully r 1 1 \ 1 0 00497662 -zealously r 1 1 \ 1 0 00497778 -zestfully r 1 1 \ 1 0 00497917 -zestily r 1 1 \ 1 0 00497917 -zigzag r 1 0 1 0 00498068 diff --git a/corpora/en/wordnet/dict/index.noun b/corpora/en/wordnet/dict/index.noun deleted file mode 100644 index 1a458379f..000000000 --- a/corpora/en/wordnet/dict/index.noun +++ /dev/null @@ -1,117827 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -'hood n 1 2 @ ; 1 0 08641944 -'s_gravenhage n 1 2 @ #p 1 0 08950407 -.22 n 1 2 @ ~ 1 0 04502851 -0 n 1 1 @ 1 1 13742358 -1 n 1 2 @ ~ 1 1 13742573 -1-dodecanol n 1 1 @ 1 0 14930670 -1-hitter n 1 1 @ 1 0 00475142 -10 n 1 1 @ 1 1 13746512 -100 n 1 1 @ 1 1 13750415 -1000 n 1 2 @ ~ 1 0 13750844 -10000 n 1 1 @ 1 0 13751265 -100000 n 1 1 @ 1 1 13751404 -1000000 n 1 1 @ 1 0 13751533 -1000000000 n 1 3 @ ~ ; 1 0 13751829 -1000000000000 n 2 2 @ ; 2 0 13752443 13752172 -11 n 1 1 @ 1 1 13746672 -11-plus n 1 2 @ ; 1 0 00637145 -11_november n 1 2 @ #p 1 0 15185837 -12 n 1 2 @ ~ 1 1 13746785 -12-tone_music n 1 1 @ 1 0 07057539 -12-tone_system n 1 1 @ 1 0 07057539 -120 n 1 1 @ 1 0 13750574 -13 n 1 1 @ 1 0 13747199 -14 n 1 1 @ 1 1 13747348 -144 n 1 1 @ 1 0 13750504 -14_july n 1 2 @ #p 1 0 15200493 -15 n 1 1 @ 1 1 13747469 -1530s n 1 1 @ 1 0 15148787 -15_august_1945 n 1 1 @ 1 0 15162882 -15_may_organization n 1 2 @ ; 1 0 08039312 -15_minutes n 1 2 @ #p 1 1 15228267 -16 n 1 1 @ 1 1 13747606 -16_pf n 1 1 @ 1 0 06475933 -17 n 1 1 @ 1 1 13747725 -1728 n 1 1 @ 1 0 13751158 -1750s n 1 1 @ 1 0 15149933 -1760s n 1 1 @ 1 0 15150304 -1770s n 1 1 @ 1 0 15150790 -1780s n 1 1 @ 1 0 15151175 -1790s n 1 1 @ 1 0 15151561 -17_november n 1 2 @ ; 1 0 08042536 -18 n 1 1 @ 1 0 13747865 -18-karat_gold n 1 1 @ 1 0 14639269 -1820s n 1 1 @ 1 0 15148958 -1830s n 1 1 @ 1 0 15149271 -1840s n 1 1 @ 1 0 15149562 -1850s n 1 1 @ 1 0 15149853 -1860s n 1 1 @ 1 0 15150224 -1870s n 1 1 @ 1 0 15150710 -1880s n 1 1 @ 1 0 15151084 -1890s n 1 1 @ 1 0 15151470 -19 n 1 1 @ 1 1 13747989 -1900s n 1 1 @ 1 0 15148707 -1920s n 1 1 @ 1 0 15148867 -1930s n 1 1 @ 1 0 15149180 -1940s n 1 1 @ 1 0 15149472 -1950s n 1 1 @ 1 0 15149763 -1960s n 1 1 @ 1 0 15150134 -1970s n 1 1 @ 1 0 15150618 -1980s n 1 1 @ 1 0 15150993 -1990s n 1 1 @ 1 0 15151379 -1_chronicles n 1 2 @ #p 1 0 06435651 -1_esdras n 1 2 @ #p 1 0 06459978 -1_kings n 1 2 @ #p 1 0 06435004 -1_maccabees n 1 2 @ #p 1 0 06460776 -1_samuel n 1 2 @ #p 1 0 06434650 -1st-class_mail n 1 2 @ ~ 1 0 06265272 -1st_baron_beaverbrook n 1 1 @ 1 0 10839791 -1st_baron_verulam n 1 1 @ 1 0 10830456 -1st_class n 1 2 @ ~ 1 0 06265272 -1st_earl_attlee n 1 1 @ 1 0 10827873 -1st_earl_baldwin_of_bewdley n 1 1 @ 1 0 10832085 -1st_earl_of_balfour n 1 1 @ 1 0 10832568 -1st_lieutenant n 1 1 @ 1 0 10092978 -1st_viscount_montgomery_of_alamein n 1 1 @ 1 0 11188316 -2 n 1 2 @ ~ 1 1 13743269 -2-hitter n 1 1 @ 1 0 00475273 -2-hydroxybenzoic_acid n 1 2 @ #s 1 0 15010038 -2-methylpropenoic_acid n 1 1 @ 1 0 14615822 -20 n 1 1 @ 1 1 13748128 -20/20 n 1 1 @ 1 0 05655810 -21 n 1 1 @ 1 1 13748246 -22 n 1 1 @ 1 1 13748367 -22-karat_gold n 1 1 @ 1 0 14639368 -23 n 1 1 @ 1 1 13748493 -24 n 1 1 @ 1 1 13748622 -24-hour_interval n 1 3 @ ~ %p 1 0 15155220 -24-karat_gold n 1 1 @ 1 0 14639467 -24/7 n 1 1 @ 1 0 15118011 -25 n 1 1 @ 1 1 13748763 -26 n 1 1 @ 1 1 13748890 -27 n 1 1 @ 1 1 13749017 -28 n 1 1 @ 1 0 13749146 -29 n 1 1 @ 1 1 13749278 -2_chronicles n 1 2 @ #p 1 0 06435916 -2_esdras n 1 2 @ #p 1 0 06460167 -2_kings n 1 2 @ #p 1 0 06435198 -2_maccabees n 1 2 @ #p 1 0 06460926 -2_samuel n 1 2 @ #p 1 0 06434826 -2nd_lieutenant n 1 1 @ 1 0 10569011 -3 n 1 1 @ 1 1 13744044 -3-d n 2 1 @ 2 0 06618937 05939948 -3-hitter n 1 1 @ 1 1 00475403 -30 n 1 1 @ 1 1 13749407 -30_minutes n 1 2 @ #p 1 1 15228162 -365_days n 1 1 @ 1 0 15202131 -366_days n 1 1 @ 1 0 15202230 -3d n 2 1 @ 2 0 06618937 05939948 -3d_radar n 1 1 @ 1 0 04427559 -3rd_october_organization n 1 2 @ ; 1 0 08016385 -3tc n 1 1 @ 1 0 03636062 -4 n 1 1 @ 1 1 13744304 -4-hitter n 1 1 @ 1 0 00475535 -40 n 1 1 @ 1 1 13749527 -401-k n 1 1 @ 1 0 05911560 -401-k_plan n 1 1 @ 1 0 05911560 -440_yards n 1 2 @ #p 1 0 13651931 -4to n 1 1 @ 1 0 05096820 -4wd n 2 1 @ 2 0 03389761 03389611 -5 n 1 1 @ 1 1 13744521 -5-hitter n 1 1 @ 1 0 00475661 -5-hydroxy-3-methylglutaryl-coenzyme_a_reductase n 1 1 @ 1 0 14612444 -5-hydroxytryptamine n 1 1 @ 1 0 14808273 -50 n 1 1 @ 1 1 13749644 -500 n 1 1 @ 1 0 13750712 -6 n 1 1 @ 1 1 13744722 -60 n 1 1 @ 1 0 13749778 -60_minutes n 1 4 @ ~ #p %p 1 0 15227846 -6_june_1944 n 1 1 @ 1 0 15162523 -7 n 1 1 @ 1 1 13744916 -70 n 1 1 @ 1 1 13749894 -78 n 2 1 @ 2 0 13750033 04178190 -8 n 1 1 @ 1 1 13745086 -80 n 1 1 @ 1 0 13750164 -880_yards n 1 2 @ #p 1 0 13651804 -8_may_1945 n 1 1 @ 1 0 15162764 -8vo n 1 1 @ 1 0 05096408 -9 n 1 1 @ 1 1 13745270 -9-11 n 1 3 @ #p ; 1 0 15300051 -9/11 n 1 3 @ #p ; 1 0 15300051 -90 n 1 1 @ 1 0 13750297 -a n 7 7 @ ~ #m #s #p %p ; 7 1 13658027 15089803 14829565 14706889 13637376 06831177 05400860 -a'man n 1 2 @ ; 1 0 08346286 -a-bomb n 1 3 @ ~ %p 1 0 02753044 -a-horizon n 1 2 @ %s 1 0 08658469 -a-line n 1 1 @ 1 0 02697221 -a-list n 1 1 @ 1 0 06485431 -a-scan_ultrasonography n 1 1 @ 1 0 00902108 -a-team n 1 1 @ 1 0 08077035 -a._a._michelson n 1 1 @ 1 0 11178393 -a._a._milne n 1 1 @ 1 0 11180812 -a._conan_doyle n 1 1 @ 1 0 10906462 -a._e._burnside n 1 1 @ 1 0 10873937 -a._e._housman n 1 1 @ 1 0 11061734 -a._e._kennelly n 1 1 @ 1 0 11101250 -a._e._w._mason n 1 1 @ 1 0 11162915 -a._noam_chomsky n 1 1 @ 1 0 10896452 -a._testudineus n 1 2 @ #m 1 0 02556373 -a.e. n 1 1 @ 1 0 11275035 -a_battery n 1 1 @ 1 0 02666624 -a_capella_singing n 1 2 @ - 1 0 00546070 -a_cappella_singing n 1 2 @ - 1 0 00546070 -a_horizon n 1 2 @ %s 1 0 08658469 -a_kempis n 1 1 @ 1 0 10810818 -a_la_carte n 1 1 @ 1 0 06497117 -a_level n 1 2 @ ; 1 0 14431015 -aa n 3 1 @ 3 0 14931472 08010191 06697935 -aaa n 1 1 @ 1 0 14106456 -aachen n 1 2 @ #p 1 0 08769439 -aaland_islands n 1 2 @ #p 1 0 08780510 -aalborg n 1 2 @ #p 1 0 08762243 -aalii n 1 2 @ #m 1 0 12740967 -aalst n 1 1 @ 1 0 08850663 -aalto n 1 1 @ 1 0 10806693 -aar n 1 2 @ #p 1 0 09186064 -aardvark n 1 2 @ #m 1 0 02082791 -aardwolf n 1 2 @ #m 1 0 02118176 -aare n 1 2 @ #p 1 0 09186064 -aare_river n 1 2 @ #p 1 0 09186064 -aarhus n 1 2 @ #p 1 0 08762104 -aaron n 2 2 @ ; 2 0 10807016 10806841 -aaron's_rod n 1 1 @ 1 0 12889713 -aaron_burr n 1 1 @ 1 0 10874162 -aaron_copland n 1 1 @ 1 0 10909929 -aaron_montgomery_ward n 1 1 @ 1 0 11373897 -aarp n 1 1 @ 1 0 08487149 -aas n 1 1 @ 1 0 06698031 -aave n 1 2 @ - 1 0 06947658 -ab n 4 3 @ ~ #p 4 1 06698640 15216563 05557339 05401096 -aba n 2 1 @ 2 0 02666079 02665985 -aba_transit_number n 1 1 @ 1 0 06425534 -abaca n 2 1 @ 2 0 14947558 12353431 -abacus n 2 1 @ 2 0 02666347 02666196 -abadan n 1 2 @ #p 1 0 08911602 -abalone n 1 3 @ ~ #m 1 0 01942869 -abamp n 1 2 @ %p 1 0 13637722 -abampere n 1 2 @ %p 1 0 13637722 -abandon n 2 1 @ 2 1 04885398 07481223 -abandoned_infant n 1 1 @ 1 0 10107883 -abandoned_person n 1 2 @ ~ 1 0 09753930 -abandoned_ship n 1 1 @ 1 0 02666501 -abandonment n 3 3 @ ~ + 3 2 00204439 00055315 00091013 -abarticulation n 1 1 @ 1 0 14294271 -abasement n 2 3 @ ~ + 2 1 14440623 00273449 -abashment n 1 2 @ + 1 0 07508092 -abasia n 1 3 @ ~ + 1 0 14549070 -abasia_trepidans n 1 1 @ 1 0 14549284 -abatable_nuisance n 1 1 @ 1 0 05830832 -abatement n 2 3 @ ~ + 2 0 07368256 00361333 -abatement_of_a_nuisance n 1 3 @ ~ ; 1 0 00361459 -abatis n 1 1 @ 1 0 02666735 -abator n 1 2 @ + 1 0 09754051 -abattis n 1 1 @ 1 0 02666735 -abattoir n 1 1 @ 1 0 02666943 -abaya n 1 2 @ ; 1 0 02667093 -abb n 1 2 @ ; 1 0 08011266 -abbacy n 1 1 @ 1 0 08550364 -abbe n 1 1 @ 1 0 09754152 -abbe_condenser n 1 1 @ 1 0 02667244 -abbess n 1 3 @ ~ + 1 0 09754217 -abbey n 3 2 @ + 3 1 02667576 02667478 02667379 -abbot n 1 3 @ ~ + 1 1 09754404 -abbott_lawrence_lowell n 1 1 @ 1 0 11142368 -abbreviation n 2 4 @ ~ + - 2 0 07091587 00359135 -abbreviator n 1 2 @ + 1 0 09754907 -abc n 1 2 @ ; 1 0 05872742 -abc's n 1 2 @ ; 1 0 05872742 -abcoulomb n 1 2 @ %p 1 0 13636866 -abcs n 1 2 @ ; 1 0 05872742 -abdias n 2 2 @ #p 2 0 11211236 06439712 -abdication n 2 2 @ + 2 0 07254456 06511762 -abdicator n 1 2 @ + 1 0 09755657 -abdomen n 2 5 @ ~ #p %p + 2 1 05556943 05558345 -abdominal n 1 3 @ ~ #p 1 0 05557339 -abdominal_actinomycosis n 1 1 @ 1 0 14259739 -abdominal_aorta n 1 2 @ #p 1 0 05336635 -abdominal_aortic_aneurysm n 1 1 @ 1 0 14106456 -abdominal_breathing n 1 1 @ 1 0 00833296 -abdominal_cavity n 1 2 @ #p 1 0 05558345 -abdominal_delivery n 1 2 @ %p 1 0 00185778 -abdominal_external_oblique_muscle n 1 1 @ 1 0 05557839 -abdominal_muscle n 1 3 @ ~ #p 1 0 05557339 -abdominal_nerve_plexus n 1 2 @ #p 1 0 05508735 -abdominal_pregnancy n 1 1 @ 1 0 14047440 -abdominal_wall n 1 2 @ #p 1 0 05604434 -abdominocentesis n 1 1 @ 1 0 00943471 -abdominoplasty n 1 1 @ 1 0 00034777 -abdominousness n 1 2 @ + 1 0 04999964 -abducens n 1 1 @ 1 0 05479108 -abducens_muscle n 1 1 @ 1 0 05316407 -abducens_nerve n 1 1 @ 1 0 05479108 -abducent n 1 1 @ 1 0 05479108 -abducent_nerve n 1 1 @ 1 0 05479108 -abduction n 2 3 @ + ; 2 0 00775460 00333037 -abductor n 2 3 @ ~ + 2 0 10230801 05291010 -abductor_muscle n 1 2 @ ~ 1 0 05291010 -abecedarian n 2 1 @ 2 0 09755788 08093653 -abecedarius n 1 1 @ 1 0 06377971 -abel n 2 2 @ ; 2 0 10807197 09587217 -abel_janszoon_tasman n 1 1 @ 1 0 11332068 -abel_tasman n 1 1 @ 1 0 11332068 -abelard n 1 1 @ 1 0 10807317 -abele n 1 1 @ 1 0 12732009 -abelia n 1 2 @ #m 1 0 12671651 -abelian_group n 1 1 @ 1 0 06017472 -abelmoschus n 1 3 @ #m %m 1 0 12171750 -abelmoschus_esculentus n 1 3 @ #m %p 1 0 12171966 -abelmoschus_moschatus n 1 2 @ #m 1 0 12172481 -abelmosk n 1 2 @ #m 1 0 12172481 -abenaki n 1 1 @ 1 0 09645871 -aberdare n 1 2 @ #p 1 0 08895148 -aberdeen n 4 3 @ #p + 4 0 09153570 09139380 09094093 08892186 -aberdeen_angus n 1 1 @ 1 0 02405929 -aberrance n 1 3 @ ~ + 1 0 14503665 -aberrancy n 1 3 @ ~ + 1 0 14503665 -aberrant n 1 2 @ + 1 0 09755893 -aberration n 3 3 @ ~ + 3 1 14503665 14386590 11420139 -abetalipoproteinemia n 1 1 @ 1 0 14151884 -abetment n 1 2 @ + 1 0 07251619 -abettal n 1 2 @ + 1 0 07251619 -abetter n 1 2 @ + 1 0 09756049 -abettor n 1 2 @ + 1 0 09756049 -abeyance n 1 3 @ ~ + 1 0 14010636 -abfarad n 1 2 @ %p 1 0 13636529 -abhenry n 1 2 @ #p 1 0 13639147 -abhorrence n 1 2 @ + 1 0 07503430 -abhorrer n 1 2 @ + 1 0 09756195 -abidance n 3 3 @ ~ + 3 0 01203676 01053920 01021889 -abidjan n 1 2 @ #p 1 0 08736779 -abience n 1 4 ! @ + ; 1 0 09180616 -abies n 1 3 @ #m %m 1 0 11620560 -abies_alba n 1 1 @ 1 0 11621547 -abies_amabilis n 1 1 @ 1 0 11621281 -abies_balsamea n 1 1 @ 1 0 11621950 -abies_bracteata n 1 1 @ 1 0 11622771 -abies_concolor n 1 1 @ 1 0 11621727 -abies_fraseri n 1 1 @ 1 0 11622184 -abies_grandis n 1 1 @ 1 0 11622368 -abies_lasiocarpa n 1 1 @ 1 0 11622591 -abies_lowiana n 1 1 @ 1 0 11621727 -abies_venusta n 1 1 @ 1 0 11622771 -abila n 1 2 @ #p 1 0 09321694 -abilene n 2 2 @ #p 2 0 09142674 09088151 -ability n 2 5 ! @ ~ = + 2 2 05200169 05616246 -abiogenesis n 1 2 @ + 1 0 11420376 -abiogenist n 1 2 @ + 1 0 09756400 -abiotrophy n 1 1 @ 1 0 07428111 -abjection n 1 2 @ ~ 1 1 14440623 -abjuration n 1 3 @ ~ + 1 0 07206096 -abjurer n 1 2 @ + 1 0 09754541 -abkhas n 2 3 @ #m ; 2 0 09639543 08487953 -abkhasian n 2 2 @ #m 2 0 09639543 06978656 -abkhaz n 3 6 @ #m #p %m ; - 3 0 09639543 09019355 08487953 -abkhazia n 1 4 @ #p %m - 1 0 09019355 -abkhazian n 2 2 @ #m 2 0 09639543 06978656 -ablactation n 2 1 @ 2 0 13423405 00198270 -ablation n 2 3 @ ~ + 2 1 00393369 13423489 -ablative n 1 1 @ 1 0 06312418 -ablative_absolute n 1 1 @ 1 0 06312612 -ablative_case n 1 1 @ 1 0 06312418 -ablaut n 1 2 @ ~ 1 0 07112103 -able-bodied_seaman n 1 1 @ 1 0 09756500 -able-bodiedism n 1 1 @ 1 0 01154237 -able-bodism n 1 1 @ 1 0 01154237 -able_seaman n 1 1 @ 1 0 09756500 -ableism n 1 1 @ 1 0 01154237 -ablepharia n 1 1 @ 1 0 14152169 -ablism n 1 1 @ 1 0 01154237 -abls n 1 1 @ 1 0 06698775 -ablution n 1 2 @ + 1 0 00255450 -abm n 1 1 @ 1 0 02716626 -abnaki n 2 1 @ 2 0 09645871 06908048 -abnegation n 2 2 @ + 2 0 07204665 00205649 -abnegator n 1 2 @ + 1 0 09754633 -abney_level n 1 1 @ 1 0 02667693 -abnormal_psychology n 1 1 @ 1 0 06137759 -abnormalcy n 1 2 @ ~ 1 0 14501726 -abnormality n 4 4 ! @ ~ + 4 1 14501726 05646535 04798185 00737188 -abo n 1 1 @ 1 1 09676490 -abo_antibodies n 1 1 @ 1 1 15027888 -abo_blood_group_system n 1 1 @ 1 0 05733361 -abo_group n 1 1 @ 1 0 05733361 -abo_system n 1 1 @ 1 0 05733361 -abocclusion n 1 1 @ 1 0 14053965 -abode n 2 3 @ ~ %p 2 2 08558963 03259505 -abohm n 1 2 @ #p 1 0 13646694 -abolishment n 1 2 @ + 1 0 00228283 -abolition n 1 2 @ + 1 1 00228283 -abolitionism n 1 2 @ + 1 0 05958208 -abolitionist n 1 3 @ ~ + 1 1 09756637 -abomasum n 1 3 @ #p + 1 0 02399942 -abominable_snowman n 1 1 @ 1 0 09487252 -abomination n 3 2 @ + 3 0 09756961 07503430 00745431 -abominator n 1 2 @ + 1 0 09754780 -abor n 1 1 @ 1 0 06933824 -aboriginal n 2 3 @ ~ + 2 0 09676490 09620794 -aboriginal_australian n 1 3 @ ~ ; 1 0 06940290 -aborigine n 2 3 @ ~ + 2 1 09620794 09676490 -abort n 1 1 @ 1 0 00034939 -aborticide n 2 2 @ ~ 2 0 02667906 00231315 -abortifacient n 1 3 @ ~ + 1 0 02667906 -abortion n 2 3 @ ~ + 2 1 00230324 07319652 -abortion-inducing_drug n 1 2 @ ~ 1 0 02667906 -abortion_pill n 1 1 @ 1 0 02668093 -abortionist n 1 2 @ + 1 0 09757175 -abortus n 1 1 @ 1 0 01460303 -aboulia n 1 2 @ + 1 0 14026166 -about-face n 2 3 @ ~ + 2 0 00346936 00163406 -about_turn n 1 1 @ 1 0 00346936 -above n 1 1 @ 1 0 06392660 -abracadabra n 1 1 @ 1 0 06610063 -abrachia n 1 1 @ 1 0 14466258 -abradant n 2 3 @ ~ + 2 0 14799244 02668393 -abrader n 1 3 @ ~ + 1 0 02668393 -abrading_stone n 1 1 @ 1 0 02668613 -abraham n 1 1 @ 1 0 10807487 -abraham's_bosom n 1 2 @ ; 1 0 05628031 -abraham_lincoln n 1 1 @ 1 1 11132462 -abraham_stoker n 1 1 @ 1 0 11318824 -abramis n 1 3 @ #m %m 1 0 01440344 -abramis_brama n 1 2 @ #m 1 0 01440467 -abrasion n 3 3 @ ~ + 3 0 14286549 13423615 11460063 -abrasive n 1 3 @ ~ + 1 0 14799244 -abrasive_material n 1 2 @ ~ 1 0 14799244 -abrasiveness n 2 2 @ + 2 0 04949066 04780114 -abreaction n 1 3 @ + ; 1 1 00253395 -abridgement n 1 2 @ + 1 0 06468123 -abridger n 1 2 @ + 1 0 09754907 -abridgment n 1 1 @ 1 1 06468123 -abrocoma n 1 3 @ #m %m 1 0 02368280 -abrocome n 1 2 @ #m 1 0 02368399 -abrogation n 1 3 @ ~ + 1 0 00231887 -abrogator n 1 2 @ + 1 0 09757311 -abronia n 1 3 @ #m %m 1 0 11836556 -abronia_elliptica n 1 1 @ 1 0 11837020 -abronia_fragrans n 1 1 @ 1 0 11837204 -abronia_latifolia n 1 1 @ 1 0 11837351 -abronia_maritima n 1 1 @ 1 0 11837562 -abronia_umbellata n 1 1 @ 1 0 11837743 -abronia_villosa n 1 1 @ 1 0 11837970 -abruptio_placentae n 1 1 @ 1 0 14054102 -abruption n 1 1 @ 1 0 01068528 -abruptly-pinnate_leaf n 1 1 @ 1 0 13160116 -abruptness n 3 3 ! @ + 3 1 04915462 05069624 05060476 -abruzzi n 1 3 @ #p %p 1 0 08804154 -abruzzi_e_molise n 1 3 @ #p %p 1 0 08804154 -abs n 1 1 @ 1 0 14592028 -abscess n 1 3 @ ~ %p 1 1 14312172 -abscessed_tooth n 1 1 @ 1 0 14312363 -abscissa n 1 1 @ 1 1 06011589 -abscission n 2 3 @ ~ + 2 0 13423779 00392709 -absconder n 1 3 @ ~ + 1 0 09755241 -abscondment n 1 2 @ + 1 0 00055633 -abseil n 1 2 @ ; 1 0 00326809 -abseiler n 1 1 @ 1 0 09757449 -absence n 4 5 ! @ ~ #p + 4 2 13960974 01234345 15270862 14088412 -absence_seizure n 1 3 @ ~ #p 1 0 14088412 -absence_without_leave n 1 2 @ ; 1 0 00055793 -absentee n 1 3 @ ~ + 1 0 09757653 -absentee_ballot n 1 2 @ ; 1 0 06476573 -absentee_rate n 1 1 @ 1 1 13817761 -absenteeism n 1 1 @ 1 1 01234528 -absentmindedness n 1 2 @ + 1 0 05701209 -absinth n 1 2 @ %s 1 0 07908411 -absinthe n 2 4 @ #m #s %s 2 0 11929477 07908411 -absinthe_oil n 1 1 @ 1 0 14893881 -absolute n 1 2 @ + 1 1 05854474 -absolute_alcohol n 1 1 @ 1 0 14709791 -absolute_ceiling n 1 1 @ 1 0 05132827 -absolute_frequency n 1 1 @ 1 0 13598237 -absolute_magnitude n 1 2 @ ; 1 0 05090979 -absolute_majority n 1 2 @ ; 1 0 13581067 -absolute_pitch n 1 1 @ 1 0 05658106 -absolute_scale n 1 1 @ 1 0 13853002 -absolute_space n 1 1 @ 1 0 00029007 -absolute_temperature n 1 1 @ 1 1 05013095 -absolute_threshold n 1 2 @ ~ 1 0 05712559 -absolute_value n 1 2 @ ~ 1 0 13581465 -absolute_viscosity n 1 1 @ 1 0 13589140 -absolute_zero n 1 2 @ ; 1 0 05013204 -absoluteness n 2 2 @ + 2 0 05124534 04738398 -absolution n 2 4 @ ~ #p + 2 0 14574349 00094240 -absolutism n 4 3 @ ~ + 4 0 14443912 08440630 06213688 05958337 -absolutist n 1 2 @ + 1 0 09755398 -absolver n 1 2 @ + 1 0 09755555 -absorbance n 1 2 @ ; 1 0 05089367 -absorbate n 1 2 @ + 1 0 14597628 -absorbency n 1 4 ! @ = + 1 1 04940964 -absorbent n 1 3 @ ~ + 1 0 14597413 -absorbent_cotton n 1 1 @ 1 0 14598251 -absorbent_material n 1 2 @ ~ 1 0 14597413 -absorber n 1 3 @ + ; 1 0 14598079 -absorptance n 1 1 @ 1 0 13586455 -absorption n 6 5 @ ~ #p + ; 6 2 13423922 13424183 13434878 13434688 05704266 05700087 -absorption_band n 1 1 @ 1 0 11420631 -absorption_coefficient n 1 1 @ 1 0 13586455 -absorption_factor n 1 2 @ ; 1 0 05010062 -absorption_indicator n 1 2 @ ~ 1 0 14598383 -absorption_spectrum n 1 1 @ 1 1 11421214 -absorption_unit n 1 2 @ ~ 1 0 13599871 -absorptivity n 1 3 @ + ; 1 0 05010062 -abstainer n 2 3 @ ~ + 2 0 09758173 09757944 -abstemiousness n 2 3 @ = + 2 0 05114262 04883942 -abstention n 1 2 @ + 1 1 04882622 -abstinence n 2 3 @ ~ + 2 0 04882622 01068773 -abstinent n 1 3 @ ~ + 1 0 09757944 -abstract n 2 3 @ ~ + 2 1 05854150 06468951 -abstract_art n 1 2 @ ~ 1 1 02669079 -abstract_artist n 1 2 @ ~ 1 0 09758424 -abstract_entity n 1 2 @ ~ 1 0 00002137 -abstract_expressionism n 1 1 @ 1 1 02668747 -abstract_thought n 1 2 @ ~ 1 0 05772356 -abstractedness n 1 3 @ ~ + 1 0 05700625 -abstracter n 1 2 @ + 1 0 09755086 -abstraction n 6 3 @ ~ + 6 4 05854150 00392848 05780104 02669001 05700625 00002137 -abstractionism n 2 3 @ ~ + 2 1 02669079 05940869 -abstractionist n 1 3 @ ~ + 1 0 09758424 -abstractness n 1 4 ! @ = + 1 0 04762134 -abstractor n 1 2 @ + 1 0 09755086 -abstruseness n 2 2 @ + 2 1 04823416 05926358 -abstrusity n 1 2 @ + 1 0 05926358 -absurd n 1 1 @ 1 0 13928191 -absurdity n 2 2 @ + 2 2 06607809 04891683 -absurdness n 1 2 @ + 1 0 06607809 -abu_ali_al-husain_ibn_abdallah_ibn_sina n 1 1 @ 1 0 10829733 -abu_dhabi n 1 2 @ #p 1 0 09044536 -abu_hafs_al-masri_brigades n 1 2 @ ; 1 0 08010364 -abu_nidal_organization n 1 2 @ ; 1 0 08020242 -abu_sayyaf n 1 2 @ ; 1 0 08010559 -abudefduf n 1 3 @ #m %m 1 0 02607345 -abudefduf_saxatilis n 1 2 @ #m 1 0 02607470 -abuja n 1 2 @ #p 1 0 08974171 -abukir n 1 2 @ #p 1 0 09186225 -abukir_bay n 1 2 @ #p 1 0 09186225 -abul-walid_mohammed_ibn-ahmad_ibn-mohammed_ibn-roshd n 1 1 @ 1 0 10829450 -abulia n 1 2 @ + 1 0 14026166 -abundance n 3 5 ! @ ~ + ; 3 1 05115040 13820239 13820000 -abuse n 3 3 @ ~ + 3 1 00419908 06715223 00947719 -abuser n 1 2 @ + 1 0 09758643 -abutilon n 1 3 @ #m %m 1 0 12172715 -abutilon_theophrasti n 1 2 @ #m 1 0 12173069 -abutment n 2 2 @ + 2 0 08620763 02669295 -abutment_arch n 1 1 @ 1 0 02669442 -abutter n 1 2 @ + 1 0 09758781 -abvolt n 1 2 @ #p 1 0 13642464 -abwatt n 1 2 @ #p 1 0 13644165 -aby_moritz_warburg n 1 1 @ 1 0 11373550 -aby_warburg n 1 1 @ 1 0 11373550 -abydos n 1 2 @ #p 1 0 09040299 -abyla n 1 2 @ #p 1 0 09321694 -abysm n 1 2 @ + 1 0 09186359 -abyss n 1 2 @ + 1 1 09186359 -abyssal_zone n 1 1 @ 1 0 09186592 -abyssinia n 1 5 @ #p %m %p - 1 0 08778061 -abyssinian n 1 1 @ 1 0 02124313 -abyssinian_banana n 1 2 @ #m 1 0 12353754 -abyssinian_cat n 1 1 @ 1 0 02124313 -ac n 2 2 @ #s 2 0 14627655 11423952 -acacia n 1 4 @ ~ #m %s 1 0 11756092 -acacia_auriculiformis n 1 2 @ #m 1 0 11756870 -acacia_cambegei n 1 2 @ #m 1 0 11757017 -acacia_catechu n 1 3 @ #m %s 1 0 11757190 -acacia_dealbata n 1 2 @ #m 1 0 11757653 -acacia_farnesiana n 1 2 @ #m 1 0 11757851 -acacia_melanoxylon n 1 2 @ #m 1 0 11758122 -acacia_pycnantha n 1 2 @ #m 1 0 11758276 -acacia_xanthophloea n 1 2 @ #m 1 0 11758483 -academe n 1 3 @ %p - 1 0 08274923 -academia n 1 4 @ %p + - 1 0 08274923 -academic n 1 3 @ ~ + 1 1 09759069 -academic_administrator n 1 2 @ ~ 1 0 09758885 -academic_costume n 1 2 @ %p 1 0 02669534 -academic_degree n 1 2 @ ~ 1 0 06697331 -academic_department n 1 2 @ ~ 1 0 08115204 -academic_freedom n 1 1 @ 1 0 13992194 -academic_gown n 1 3 @ ~ #p 1 0 02669723 -academic_program n 1 2 @ ; 1 1 05909730 -academic_relation n 1 2 @ ~ 1 0 13840404 -academic_requirement n 1 2 @ ~ 1 0 05892991 -academic_robe n 1 3 @ ~ #p 1 0 02669723 -academic_session n 1 3 @ ~ #p 1 0 15225249 -academic_term n 1 3 @ ~ #p 1 0 15225249 -academic_year n 1 2 @ %p 1 0 15203565 -academician n 3 4 @ ~ #m + 3 0 09759501 09759311 09759069 -academicianship n 1 2 @ + 1 1 00588473 -academicism n 1 1 @ 1 0 04802079 -academism n 1 1 @ 1 0 04802079 -academy n 4 4 @ ~ %m + 4 2 08279298 08280124 08277805 02669885 -academy_award n 1 1 @ 1 0 07268967 -academy_of_motion_picture_arts_and_sciences n 1 1 @ 1 0 08280462 -academy_of_television_arts_and_sciences n 1 1 @ 1 0 08280649 -acadia n 1 2 @ #p 1 0 08821187 -acadia_national_park n 1 2 @ #p 1 0 08602037 -acadian n 1 2 @ ~ 1 0 09677168 -acalypha n 1 3 @ #m %m 1 0 12922283 -acalypha_virginica n 1 2 @ #m 1 0 12922458 -acantha n 1 2 @ + 1 0 13912839 -acanthaceae n 1 3 @ #m %m 1 0 12811856 -acanthion n 1 1 @ 1 0 05231264 -acanthisitta n 1 3 @ #m %m 1 0 01588858 -acanthisitta_chloris n 1 2 @ #m 1 0 01588996 -acanthisittidae n 1 3 @ #m %m 1 0 01588172 -acanthocephala n 1 3 @ #m %m 1 0 01923171 -acanthocephalan n 1 2 @ #m 1 0 01923404 -acanthocereus n 1 2 @ #m 1 0 11842861 -acanthocereus_pentagonus n 1 2 @ %p 1 0 11843053 -acanthocereus_tetragonus n 1 2 @ %p 1 0 11843053 -acanthocybium n 1 3 @ #m %m 1 0 02625132 -acanthocybium_solandri n 1 2 @ #m 1 0 02625258 -acanthocyte n 1 1 @ 1 0 05454452 -acanthocytosis n 1 1 @ 1 0 14071758 -acantholysis n 1 2 @ #p 1 0 14221601 -acanthoma n 1 2 @ ~ 1 0 14235667 -acanthophis n 1 3 @ #m %m 1 0 01750027 -acanthophis_antarcticus n 1 2 @ #m 1 0 01750167 -acanthopterygian n 1 3 @ ~ #m 1 0 02552171 -acanthopterygii n 1 3 @ #m %m 1 0 02551824 -acanthoscelides n 1 3 @ #m %m 1 0 02182498 -acanthoscelides_obtectus n 1 2 @ #m 1 0 02182642 -acanthosis n 1 3 @ #p + 1 0 14221741 -acanthosis_nigricans n 1 1 @ 1 0 14221924 -acanthuridae n 1 3 @ #m %m 1 0 02621107 -acanthurus n 1 3 @ #m %m 1 0 02621419 -acanthurus_chirurgus n 1 2 @ #m 1 0 02621577 -acanthus n 1 3 @ ~ #m 1 0 12812235 -acanthus_family n 1 3 @ #m %m 1 0 12811856 -acanthus_mollis n 1 1 @ 1 0 12812478 -acapnia n 1 2 @ + 1 0 14042165 -acapulco n 1 2 @ #p 1 1 08742205 -acapulco_de_juarez n 1 2 @ #p 1 0 08742205 -acapulco_gold n 1 2 @ #p 1 0 02670049 -acaracide n 1 1 @ 1 0 14598834 -acardia n 1 2 @ #p 1 0 14019296 -acariasis n 1 1 @ 1 0 14453066 -acaricide n 1 1 @ 1 0 14598834 -acarid n 1 2 @ #m 1 0 01780142 -acaridae n 1 3 @ #m %m 1 0 01780026 -acaridiasis n 1 1 @ 1 0 14453066 -acarina n 1 3 @ #m %m 1 0 01775879 -acarine n 1 3 @ ~ #m 1 0 01776192 -acariosis n 1 1 @ 1 0 14453066 -acaroid_resin n 1 1 @ 1 0 14598937 -acarophobia n 1 1 @ 1 0 14381732 -acarus n 1 2 @ #m 1 0 01781570 -acaryote n 1 1 @ 1 0 05449538 -acatalectic n 1 3 @ + ; 1 0 06348215 -acataphasia n 1 1 @ 1 0 14096123 -acathexia n 1 1 @ 1 0 14014425 -acathexis n 1 2 @ ; 1 0 09185865 -acc n 1 2 @ #p 1 0 08196622 -accaroid_resin n 1 1 @ 1 0 14598937 -accelerando n 1 2 @ + 1 0 15264726 -acceleration n 3 5 ! @ ~ + ; 3 3 05060783 00330457 15275851 -acceleration_unit n 1 2 @ ~ 1 0 13599982 -accelerator n 4 6 @ ~ #p %p + ; 4 2 02670683 02670186 14723628 02670382 -accelerator_factor n 1 1 @ 1 0 15071366 -accelerator_pedal n 1 2 @ #p 1 0 02670683 -accelerometer n 1 1 @ 1 0 02670935 -accent n 5 5 @ ~ + ; - 5 2 07131511 14434866 07155661 07085375 06822198 -accent_mark n 1 3 @ ~ ; 1 0 06822198 -accenting n 1 1 @ 1 1 01264243 -accentor n 1 3 @ ~ #m 1 0 01527194 -accentual_system n 1 1 @ 1 1 07112805 -accentuation n 2 2 @ + 2 0 07085786 01264243 -acceptability n 1 4 ! @ ~ + 1 0 04792679 -acceptableness n 1 3 @ ~ + 1 0 04792679 -acceptance n 7 5 ! @ ~ + ; 7 4 06193727 00180413 13932421 07176073 13381602 04638175 00082525 -acceptance_sampling n 1 1 @ 1 0 00806621 -acceptation n 3 3 @ ~ + 3 0 14412725 06602801 00180413 -acceptor n 2 2 @ ; 2 0 14583843 09759684 -acceptor_rna n 1 1 @ 1 0 14833143 -access n 6 4 @ ~ + ; 6 3 05176188 05175467 02671062 06354204 02671224 00281132 -access_code n 1 2 @ ~ 1 0 06354204 -access_road n 1 1 @ 1 1 02671988 -access_time n 1 3 @ %p ; 1 0 15171857 -accessary n 1 2 @ ~ 1 0 09759875 -accessibility n 2 5 ! @ ~ = + 2 0 04718999 04655649 -accession n 6 4 @ ~ + ; 6 0 13424477 13341962 13253423 07177192 05176188 00236581 -accessory n 3 3 @ ~ + 3 2 02671780 02671421 09759875 -accessory_after_the_fact n 1 1 @ 1 0 09760080 -accessory_before_the_fact n 1 1 @ 1 0 09760290 -accessory_cephalic_vein n 1 2 @ #p 1 0 05356442 -accessory_during_the_fact n 1 1 @ 1 0 09760476 -accessory_fruit n 1 1 @ 1 0 13140367 -accessory_hemiazygos_vein n 1 1 @ 1 0 05356657 -accessory_hemiazygous_vein n 1 1 @ 1 0 05356657 -accessory_nerve n 1 1 @ 1 0 05480401 -accessory_vertebral_vein n 1 1 @ 1 0 05356889 -accho n 1 2 @ #p 1 0 08793310 -acciaccatura n 1 1 @ 1 0 06871983 -accidence n 1 1 @ 1 0 06178238 -accident n 2 3 @ ~ + 2 2 07301336 07300960 -accident_surgery n 1 1 @ 1 0 06064838 -accidental n 1 1 @ 1 0 06867345 -accidental_injury n 1 2 @ ~ 1 0 07313636 -accipiter n 1 3 @ #m %m 1 0 01606335 -accipiter_cooperii n 1 2 @ #m 1 0 01606809 -accipiter_gentilis n 1 2 @ #m 1 0 01606522 -accipiter_nisus n 1 2 @ #m 1 0 01606672 -accipitridae n 1 3 @ #m %m 1 0 01605119 -accipitriformes n 1 1 @ 1 0 01604968 -acclaim n 1 2 @ + 1 0 06691684 -acclamation n 1 2 @ + 1 0 06691684 -acclimation n 1 2 @ + 1 0 13424643 -acclimatisation n 1 2 @ + 1 0 13424643 -acclimatization n 1 2 @ + 1 0 13424643 -acclivity n 1 3 @ ~ + 1 0 09206985 -accolade n 1 2 @ ~ 1 0 06696483 -accommodating_iol n 1 1 @ 1 0 02672152 -accommodating_lens_implant n 1 1 @ 1 0 02672152 -accommodation n 6 4 @ ~ + ; 6 0 07369604 07177437 05755486 02672371 01210816 00193225 -accommodation_endorser n 1 1 @ 1 0 09760735 -accommodation_ladder n 1 2 @ ; 1 0 02672646 -accommodation_reflex n 1 1 @ 1 0 00117124 -accommodator n 1 2 @ + 1 0 10369166 -accompaniment n 4 3 @ ~ + 4 2 07284554 07031752 05109511 00827782 -accompanist n 1 2 @ + 1 0 09760913 -accompanying_vein n 1 1 @ 1 0 05357160 -accompanyist n 1 1 @ 1 0 09760913 -accomplice n 1 2 @ ~ 1 1 09761068 -accomplished_fact n 1 1 @ 1 0 00047941 -accomplishment n 2 3 @ ~ + 2 1 00035189 05637558 -accord n 4 3 @ ~ + 4 0 13971065 07176804 06773434 04713332 -accord_and_satisfaction n 1 1 @ 1 0 07178525 -accordance n 2 2 @ + 2 1 07176804 01086572 -accordance_of_rights n 1 1 @ 1 0 01086572 -accordion n 1 2 @ %p 1 0 02672831 -accordion_door n 1 1 @ 1 0 03376771 -accordionist n 1 1 @ 1 0 09761310 -accouchement n 1 3 @ ~ %p 1 0 13448334 -accoucheur n 1 2 @ ~ 1 0 10369699 -accoucheuse n 1 1 @ 1 0 10314836 -account n 10 5 @ ~ %p + ; 10 6 06514093 06681551 13929037 06738281 09179382 05169037 13354985 07217924 06516955 05157732 -account_book n 1 3 @ ~ %m 1 0 13404248 -account_executive n 1 1 @ 1 0 09761753 -account_payable n 1 1 @ 1 0 14490801 -account_representative n 1 1 @ 1 0 09761753 -account_statement n 1 3 @ ~ %p 1 0 13354985 -accountability n 1 2 @ + 1 0 04669828 -accountancy n 1 4 @ ~ + - 1 0 00618734 -accountant n 1 3 @ ~ + 1 1 09761403 -accountantship n 1 2 @ + 1 0 00588598 -accounting n 5 6 @ ~ #m %p + - 5 3 06739509 05662532 00618734 13405962 13354985 -accounting_data n 1 1 @ 1 0 08462534 -accounting_entry n 1 2 @ ~ 1 0 13405296 -accounting_firm n 1 1 @ 1 0 08062326 -accounting_principle n 1 2 @ #m 1 0 05955593 -accounting_standard n 1 2 @ #m 1 0 05955593 -accounting_system n 1 3 @ ~ #m 1 0 13405962 -accounts_payable n 1 1 @ 1 0 13407561 -accounts_receivable n 1 2 @ ; 1 0 13407208 -accouterment n 1 2 @ ~ 1 1 02671780 -accoutrement n 1 2 @ ~ 1 0 02671780 -accra n 1 2 @ #p 1 0 08946564 -accreditation n 1 2 @ + 1 1 01140193 -accretion n 6 4 @ ~ + ; 6 1 13424865 13754565 13425425 13425245 13425067 13263540 -accroides n 1 1 @ 1 0 14598937 -accroides_gum n 1 1 @ 1 0 14598937 -accroides_resin n 1 1 @ 1 0 14598937 -accrual n 1 3 @ ~ + 1 0 00372013 -accrual_basis n 1 2 ! @ 1 0 13406638 -accruement n 1 3 @ ~ + 1 0 00372013 -acculturation n 3 3 @ ~ + 3 1 01128984 05984936 05757049 -accumulation n 4 4 @ ~ + ; 4 3 13424865 07951464 00372013 13366693 -accumulator n 3 4 @ ~ %p ; 3 0 09936362 04328329 02673078 -accumulator_register n 1 2 @ ; 1 0 02673078 -accuracy n 2 5 ! @ ~ = ; 2 2 04802907 04803209 -accusal n 1 3 @ ~ + 1 0 07234230 -accusation n 2 3 @ ~ + 2 1 07234230 06730780 -accusative n 1 2 @ + 1 0 06311557 -accusative_case n 1 1 @ 1 0 06311557 -accused n 1 1 @ 1 0 09762011 -accuser n 1 2 @ + 1 0 09762385 -ace n 6 5 @ ~ #p %m + 6 3 13742573 02673291 09762509 14735642 08175498 00568701 -ace_inhibitor n 1 2 @ ~ 1 0 02673637 -ace_of_clubs n 1 1 @ 1 0 02674101 -ace_of_diamonds n 1 1 @ 1 0 02674184 -ace_of_hearts n 1 1 @ 1 0 02674273 -ace_of_spades n 1 1 @ 1 1 02674358 -acebutolol n 1 1 @ 1 0 02673480 -acedia n 1 1 @ 1 0 00758795 -acellular_slime_mold n 1 2 @ #m 1 0 12975804 -acentric_chromosome n 1 1 @ 1 0 05444610 -acephalia n 1 2 @ #p 1 0 14019441 -acephalism n 1 2 @ #p 1 0 14019441 -acephaly n 1 2 @ #p 1 0 14019441 -acer n 1 3 @ #m %m 1 0 12752039 -acer_argutum n 1 1 @ 1 0 12755559 -acer_campestre n 1 1 @ 1 0 12754648 -acer_circinatum n 1 1 @ 1 0 12754468 -acer_glabrum n 1 1 @ 1 0 12754174 -acer_japonicum n 1 1 @ 1 0 12755727 -acer_macrophyllum n 1 1 @ 1 0 12754003 -acer_negundo n 1 2 @ ~ 1 0 12755225 -acer_negundo_californicum n 1 1 @ 1 0 12755387 -acer_palmatum n 1 1 @ 1 0 12755876 -acer_pennsylvanicum n 1 1 @ 1 0 12753762 -acer_platanoides n 1 1 @ 1 0 12754781 -acer_pseudoplatanus n 1 1 @ 1 0 12754981 -acer_rubrum n 1 1 @ 1 0 12753573 -acer_saccharinum n 1 1 @ 1 0 12753007 -acer_saccharum n 1 1 @ 1 0 12753245 -acer_spicatum n 1 1 @ 1 0 12754311 -aceraceae n 1 3 @ #m %m 1 0 12751823 -acerate_leaf n 1 1 @ 1 0 13157595 -acerbity n 3 2 @ + 3 0 04995009 04994126 04643397 -acerola n 2 3 @ #p %p 2 0 12694486 07746334 -acervulus n 1 1 @ 1 0 11533026 -acetabulum n 1 3 @ #p + 1 0 05596224 -acetal n 1 1 @ 1 0 14710805 -acetaldehyde n 1 1 @ 1 0 14711008 -acetaldol n 1 1 @ 1 0 14710935 -acetamide n 1 1 @ 1 0 14711197 -acetaminophen n 1 1 @ 1 0 02674482 -acetanilid n 1 1 @ 1 0 02674912 -acetanilide n 1 1 @ 1 0 02674912 -acetate n 2 3 @ ~ %s 2 0 14599806 02675219 -acetate_disk n 1 2 @ #p 1 0 02675077 -acetate_rayon n 1 2 @ %s 1 0 02675219 -acetic_acid n 1 3 @ ~ #s 1 0 14599168 -acetic_anhydride n 1 1 @ 1 0 14768640 -acetin n 1 1 @ 1 0 14599494 -acetoacetic_acid n 1 1 @ 1 0 14927051 -acetone n 1 2 @ + 1 1 14600504 -acetone_body n 1 2 @ ~ 1 0 14926595 -acetonemia n 1 1 @ 1 1 14267205 -acetonuria n 1 2 @ ~ 1 0 14271480 -acetophenetidin n 1 1 @ 1 0 02675354 -acetphenetidin n 1 1 @ 1 0 02675354 -acetum n 2 3 @ ~ + 2 0 14599641 07828987 -acetyl n 1 2 @ + 1 0 14594456 -acetyl_chloride n 1 1 @ 1 0 14808911 -acetyl_group n 1 1 @ 1 0 14594456 -acetyl_radical n 1 1 @ 1 0 14594456 -acetylation n 1 2 @ + 1 0 13425637 -acetylcholine n 1 1 @ 1 0 14808418 -acetylene n 1 3 @ #s + 1 0 14600742 -acetylsalicylic_acid n 1 3 @ ~ %s 1 0 02748618 -achaea n 1 2 @ #p 1 0 08782490 -achaean n 2 1 @ 2 0 09710619 08160586 -achaian n 1 1 @ 1 0 09710619 -ache n 1 3 @ ~ + 1 1 14323683 -achene n 1 3 @ ~ + 1 0 12036067 -acheron n 1 4 @ #p + ; 1 0 09186709 -acherontia n 1 3 @ #m %m 1 0 02299715 -acherontia_atropos n 1 2 @ #m 1 0 02299846 -acheson n 1 1 @ 1 0 10807858 -acheson_process n 1 1 @ 1 0 13425839 -acheta n 1 3 @ #m %m 1 0 02229867 -acheta_assimilis n 1 2 @ #m 1 0 02230187 -acheta_domestica n 1 2 @ #m 1 0 02230023 -achievability n 1 2 @ + 1 0 14482444 -achievement n 1 3 @ ~ + 1 1 00035189 -achiever n 1 4 ! @ ~ + 1 0 09762821 -achille_ratti n 1 1 @ 1 0 11238303 -achillea n 1 3 @ ~ #m 1 0 11916467 -achillea_millefolium n 1 1 @ 1 0 11916696 -achillea_ptarmica n 1 1 @ 1 0 11916965 -achilles n 1 1 @ 1 0 09594298 -achilles'_heel n 1 1 @ 1 0 05042468 -achilles_tendon n 1 2 @ #p 1 0 05578740 -achimenes n 1 2 @ #m 1 0 12830222 -aching n 1 3 @ ~ + 1 0 14323683 -achira n 1 1 @ 1 0 12351091 -achlorhydria n 1 1 @ 1 0 14054262 -achmad_sukarno n 1 1 @ 1 0 11323849 -achoerodus n 1 3 @ #m %m 1 0 02608151 -achoerodus_gouldii n 1 2 @ #m 1 0 02608284 -acholia n 1 1 @ 1 0 14054465 -achomawi n 3 2 @ ; 3 0 09645996 08488081 06921755 -achondrite n 1 2 @ + 1 0 09186928 -achondroplasia n 1 2 @ + 1 0 14121804 -achondroplasty n 1 1 @ 1 0 14121804 -achras n 1 2 @ #m 1 0 12772419 -achras_zapota n 1 3 @ #p %p 1 0 12774641 -achromasia n 1 1 @ 1 0 04977561 -achromatic_color n 1 3 ! @ ~ 1 0 04960079 -achromatic_colour n 1 2 @ ~ 1 0 04960079 -achromatic_lens n 1 1 @ 1 0 02675522 -achromatic_vision n 1 1 @ 1 0 05655482 -achromaticity n 1 2 @ ~ 1 0 04958634 -achromatin n 1 3 @ #p + 1 0 05436381 -achromatism n 1 2 @ ~ 1 0 04958634 -achromia n 1 2 @ ; 1 0 04959061 -achromycin n 1 3 @ ~ ; 1 0 04416530 -achylia n 1 1 @ 1 0 14054642 -achylia_gastrica n 1 1 @ 1 0 14054642 -acicula n 1 2 @ + 1 0 09187036 -acid n 2 3 @ ~ + 2 1 14607521 02675657 -acid-base_balance n 1 2 @ ; 1 0 13425980 -acid-base_equilibrium n 1 2 @ ; 1 0 13425980 -acid-base_indicator n 1 2 @ ~ 1 0 14609198 -acid_anhydrides n 1 1 @ 1 0 14808617 -acid_dye n 1 2 @ ~ 1 0 14754378 -acid_halide n 1 2 @ ~ 1 0 14808752 -acid_head n 1 1 @ 1 0 09763272 -acid_hydrogen n 1 1 @ 1 0 14640890 -acid_precipitation n 1 1 @ 1 0 14517629 -acid_rain n 1 1 @ 1 0 14517629 -acid_rock n 1 1 @ 1 0 07065562 -acid_test n 1 1 @ 1 0 05747495 -acid_value n 1 2 @ ; 1 0 13581598 -acidemia n 1 1 @ 1 0 14020753 -acidic_hydrogen n 1 1 @ 1 0 14640890 -acidification n 1 2 @ + 1 0 13426238 -acidimetry n 1 2 @ + 1 0 00647919 -acidity n 3 4 ! @ ~ + 3 1 04993882 05716961 05039526 -acidophil n 1 2 @ + 1 0 01349333 -acidophile n 1 2 @ + 1 0 01349333 -acidophilus n 1 2 @ #m 1 0 01380298 -acidophilus_milk n 1 1 @ 1 0 07845571 -acidosis n 1 3 @ ~ + 1 0 14019600 -acidulousness n 1 2 @ + 1 0 05716961 -acinonyx n 1 3 @ #m %m 1 0 02130190 -acinonyx_jubatus n 1 2 @ #m 1 0 02130308 -acinos n 1 3 @ #m %m 1 0 12839409 -acinos_arvensis n 1 2 @ #m 1 0 12839574 -acinus n 2 3 @ #p + 2 0 13138155 05516366 -acipenser n 1 3 @ #m %m 1 0 02640453 -acipenser_huso n 1 3 @ #m %p 1 0 02640857 -acipenser_transmontanus n 1 2 @ #m 1 0 02640626 -acipenseridae n 1 3 @ #m %m 1 0 02640093 -ack-ack n 1 3 @ ~ %p 1 0 02715712 -ack-ack_gun n 1 3 @ ~ %p 1 0 02715712 -ackee n 1 2 @ #p 1 0 07762740 -acknowledgement n 2 3 @ ~ = 2 0 14411981 06628861 -acknowledgment n 3 4 @ ~ = + 3 0 14411981 06763681 06628861 -aclant n 1 3 @ #p %m 1 0 08174995 -aclinic_line n 1 1 @ 1 0 08490531 -acme n 2 2 @ ~ 2 0 13940456 08677801 -acne n 1 2 @ ~ 1 0 14222112 -acne_rosacea n 1 1 @ 1 0 14222352 -acne_vulgaris n 1 1 @ 1 0 14222541 -acnidosporidia n 1 3 @ #m %m 1 0 01425817 -acocanthera n 1 3 @ #m %m 1 0 11768242 -acocanthera_oblongifolia n 1 2 @ #m 1 0 11768505 -acocanthera_oppositifolia n 1 2 @ #m 1 0 11768816 -acocanthera_spectabilis n 1 2 @ #m 1 0 11768505 -acocanthera_venenata n 1 2 @ #m 1 0 11768816 -acokanthera n 1 3 @ #m %m 1 0 11768242 -acolyte n 1 2 @ ~ 1 1 09763349 -aconcagua n 1 2 @ #p 1 0 09187204 -aconite n 1 3 @ ~ #m 1 0 11722982 -aconitum n 1 3 @ #m %m 1 0 11722769 -aconitum_lycoctonum n 1 1 @ 1 0 11723452 -aconitum_napellus n 1 1 @ 1 0 11723227 -acoraceae n 1 2 @ #m 1 0 11780747 -acorea n 1 1 @ 1 0 14021853 -acores n 1 2 @ #p 1 0 08985345 -acorn n 1 3 @ #p %p 1 0 12267677 -acorn_barnacle n 1 2 @ #m 1 0 01998741 -acorn_cup n 1 2 @ #p 1 0 12267931 -acorn_squash n 2 3 @ #p %p 2 0 12160857 07717410 -acorn_tube n 1 1 @ 1 0 02675885 -acorus n 1 3 @ #m %m 1 0 11780589 -acorus_calamus n 1 4 @ #m %s %p 1 0 11780930 -acousma n 1 1 @ 1 0 14377830 -acoustic n 1 2 @ + 1 0 02675987 -acoustic_aphasia n 1 1 @ 1 0 14097893 -acoustic_buoy n 1 2 @ ~ 1 0 07266442 -acoustic_delay_line n 1 2 @ #p 1 0 02676097 -acoustic_device n 1 2 @ ~ 1 0 02676261 -acoustic_gramophone n 1 2 @ ~ 1 0 03452267 -acoustic_guitar n 1 1 @ 1 0 02676566 -acoustic_impedance n 1 1 @ 1 0 11504478 -acoustic_meatus n 1 3 @ #p %p 1 0 05248667 -acoustic_modem n 1 1 @ 1 0 02676670 -acoustic_nerve n 1 2 @ #p 1 0 05479503 -acoustic_phenomenon n 1 2 @ ~ 1 0 11425401 -acoustic_power n 1 1 @ 1 0 05100866 -acoustic_projection n 1 1 @ 1 0 11512331 -acoustic_radiation_pressure n 1 2 @ ; 1 0 05100981 -acoustic_reactance n 1 1 @ 1 0 11504478 -acoustic_resistance n 1 1 @ 1 0 11504478 -acoustic_spectrum n 1 2 @ ~ 1 0 11510714 -acoustic_storage n 1 2 @ %p 1 0 02676805 -acoustic_wave n 1 3 @ ~ ; 1 0 07347224 -acoustician n 1 2 @ + 1 0 09763668 -acousticophobia n 1 1 @ 1 0 14384227 -acoustics n 1 4 @ ~ + - 1 0 06094774 -acquaintance n 3 4 ! @ ~ + 3 3 05817145 13930245 09763784 -acquaintanceship n 1 2 @ + 1 0 13930245 -acquiescence n 2 3 @ ~ + 2 2 14413162 07175575 -acquired_hemochromatosis n 1 1 @ 1 0 14207388 -acquired_immune_deficiency_syndrome n 1 1 @ 1 0 14127782 -acquired_immunity n 1 2 @ ~ 1 0 14528193 -acquired_reflex n 1 2 @ ~ 1 0 00864226 -acquired_taste n 1 1 @ 1 0 07498455 -acquirement n 1 2 @ ~ 1 0 05637558 -acquirer n 4 3 @ ~ + 4 0 09764201 08419562 08419354 08419163 -acquiring n 1 3 @ ~ + 1 0 00041899 -acquisition n 4 3 @ ~ + 4 1 00077419 13253255 05752544 05637558 -acquisition_agreement n 1 1 @ 1 0 06527710 -acquisitiveness n 1 4 @ ~ = + 1 0 04946078 -acquittal n 1 4 ! @ + ; 1 0 01193886 -acquittance n 1 2 @ ; 1 0 06552814 -acragas n 1 2 @ #p 1 0 08811812 -acrasiomycetes n 1 3 @ #m %m 1 0 12975982 -acre n 3 2 @ #p 3 1 13613742 08854725 08793310 -acre-foot n 1 1 @ 1 0 13617468 -acre_inch n 1 1 @ 1 0 13617630 -acreage n 1 1 @ 1 1 05128870 -acres n 1 2 @ ~ 1 1 13246662 -acridid n 1 3 @ ~ #m 1 0 02226821 -acrididae n 1 3 @ #m %m 1 0 02226598 -acridity n 3 2 @ + 3 0 05717266 04995100 04780232 -acridness n 2 2 @ + 2 0 04995100 04780232 -acridotheres n 1 3 @ #m %m 1 0 01577818 -acridotheres_tristis n 1 2 @ #m 1 0 01577941 -acrilan n 1 2 @ ; 1 0 03979847 -acrimony n 1 2 @ + 1 0 04643397 -acris n 1 3 @ #m %m 1 0 01651370 -acris_crepitans n 1 1 @ 1 0 01651641 -acris_gryllus n 1 1 @ 1 0 01651778 -acroanaesthesia n 1 1 @ 1 0 14028291 -acroanesthesia n 1 1 @ 1 0 14028291 -acrobat n 1 2 @ ~ 1 0 09764381 -acrobates n 1 3 @ #m %m 1 0 01882372 -acrobatic_feat n 1 3 @ ~ #p 1 0 00438065 -acrobatic_stunt n 1 3 @ ~ #p 1 0 00438065 -acrobatics n 2 4 @ ~ %p + 2 1 00434075 00302861 -acrocarp n 1 2 ! @ 1 0 11539289 -acrocarpous_moss n 1 1 @ 1 0 11539289 -acrocarpus n 1 3 @ #m %m 1 0 12490330 -acrocarpus_fraxinifolius n 1 2 @ #m 1 0 12490490 -acrocentric_chromosome n 1 1 @ 1 0 05444709 -acrocephalus n 1 2 @ #m 1 0 01565480 -acrocephalus_schoenobaenus n 1 1 @ 1 0 01565599 -acrocephaly n 1 1 @ 1 0 14164190 -acroclinium n 1 2 @ %m 1 0 11917186 -acroclinium_roseum n 1 2 @ #m 1 0 11917407 -acrocomia n 1 3 @ #m %m 1 0 12583529 -acrocomia_aculeata n 1 2 @ %p 1 0 12583855 -acrocomia_vinifera n 1 2 @ #m 1 0 12583681 -acrocyanosis n 1 1 @ 1 0 14303448 -acrodont n 1 1 @ 1 0 01324916 -acrogen n 1 2 @ + 1 0 11536369 -acrolein n 1 1 @ 1 0 14998290 -acromegalia n 1 2 @ %p 1 0 14368483 -acromegaly n 1 3 @ %p + 1 0 14368483 -acromial_process n 1 2 @ #p 1 0 05280365 -acromicria n 1 1 @ 1 0 14021936 -acromikria n 1 1 @ 1 0 14021936 -acromion n 1 2 @ #p 1 0 05280365 -acromphalus n 1 1 @ 1 0 14022068 -acromyotonia n 1 1 @ 1 0 14545548 -acronym n 1 3 @ + - 1 0 07091902 -acrophobia n 1 2 @ + 1 0 14382766 -acrophony n 1 1 @ 1 0 07230796 -acropolis n 1 1 @ 1 0 02676938 -acropora n 1 3 @ #m %m 1 0 01917434 -acrosome n 1 2 @ #p 1 0 05457795 -acrostic n 2 1 @ 2 0 06786209 06366130 -acrostichum n 1 3 @ #m %m 1 0 13206001 -acrostichum_aureum n 1 3 @ #m ; 1 0 13206178 -acrylamide n 1 1 @ 1 0 14711364 -acrylate n 1 1 @ 1 0 14998421 -acrylate_resin n 1 2 @ ~ 1 0 14593671 -acrylic n 4 2 @ ~ 4 0 14965958 14593671 02677136 02677028 -acrylic_acid n 1 1 @ 1 0 14998522 -acrylic_fiber n 1 1 @ 1 0 14965958 -acrylic_paint n 1 1 @ 1 0 02677136 -acrylic_resin n 1 2 @ ~ 1 0 14593671 -acrylonitrile n 1 1 @ 1 0 14998677 -acrylonitrile-butadiene-styrene n 1 1 @ 1 0 14592028 -act n 5 6 @ ~ #p %p + ; 5 4 06532095 00030358 07009640 06892016 07014029 -act_of_god n 1 1 @ 1 0 07315350 -act_of_terrorism n 1 3 @ ~ - 1 0 00759694 -actaea n 1 3 @ #m %m 1 0 11723655 -actaea_alba n 1 1 @ 1 0 11724363 -actaea_rubra n 1 1 @ 1 0 11724109 -acth n 1 1 @ 1 0 05408113 -actias n 1 3 @ #m %m 1 0 02302853 -actias_luna n 1 2 @ #m 1 0 02302969 -actifed n 1 1 @ 1 0 02677232 -actin n 1 2 @ #s 1 0 14731334 -actinaria n 1 3 @ #m %m 1 0 01914415 -acting n 1 4 @ ~ #p + 1 1 00548326 -acting_out n 2 2 @ ; 2 0 07014596 06887962 -actinia n 2 2 @ #m 2 0 01914961 01914830 -actinian n 1 2 @ #m 1 0 01914830 -actiniaria n 1 3 @ #m %m 1 0 01914415 -actiniarian n 1 2 @ #m 1 0 01914830 -actinic_dermatitis n 1 1 @ 1 0 14222685 -actinic_keratosis n 1 1 @ 1 0 14228376 -actinic_radiation n 1 3 @ ~ #p 1 0 11421401 -actinic_ray n 1 3 @ ~ #p 1 0 11421401 -actinide n 1 1 @ 1 0 14584110 -actinide_series n 1 2 @ ; 1 0 14625110 -actinidia n 1 3 @ #m %m 1 0 12371002 -actinidia_arguta n 1 2 @ #m 1 0 12371202 -actinidia_chinensis n 1 3 @ #m %p 1 0 12371439 -actinidia_deliciosa n 1 3 @ #m %p 1 0 12371439 -actinidia_polygama n 1 2 @ #m 1 0 12371704 -actinidiaceae n 1 3 @ #m %m 1 0 12370842 -actiniopteris n 1 2 @ #m 1 0 13206438 -actinism n 1 2 @ + 1 0 04917292 -actinium n 1 2 @ #s 1 0 14627655 -actinoid n 1 1 @ 1 0 14584110 -actinolite n 1 2 @ #m 1 0 14725217 -actinomeris n 1 2 @ #m 1 0 12030479 -actinomeris_alternifolia n 1 1 @ 1 0 12030908 -actinometer n 1 1 @ 1 1 02677436 -actinometry n 1 2 @ + 1 0 00998037 -actinomyces n 1 2 @ #m 1 0 01375760 -actinomycetaceae n 1 3 @ #m %m 1 0 01375460 -actinomycetales n 1 3 @ #m %m 1 0 01374989 -actinomycete n 1 5 @ ~ #m + ; 1 0 01375204 -actinomycin n 1 1 @ 1 0 02677602 -actinomycosis n 1 3 @ ~ + 1 0 14254102 -actinomyxidia n 1 3 @ #m %m 1 0 01427005 -actinomyxidian n 1 2 @ #m 1 0 01427143 -actinon n 1 1 @ 1 0 14584110 -actinopod n 1 3 @ ~ #m 1 0 01390466 -actinopoda n 1 3 @ #m %m 1 0 01390287 -actinotherapy n 1 3 @ ~ ; 1 0 00705580 -actinozoa n 1 3 @ #m %m 1 0 01913838 -actinozoan n 1 3 @ ~ #m 1 0 01914163 -action n 10 8 ! @ ~ #p %p = + ; 10 8 00037396 14006945 00952963 13518963 06373513 04835950 02677718 01181902 01182312 00576451 -action_at_law n 1 3 @ ~ ; 1 0 01181902 -action_mechanism n 1 4 @ ~ #p %p 1 0 02677718 -action_officer n 1 1 @ 1 0 09764732 -action_painting n 1 1 @ 1 0 02668747 -action_plant n 1 2 @ #m 1 0 11755319 -action_potential n 1 1 @ 1 0 07308308 -action_replay n 1 2 @ ; 1 0 01020117 -action_spectrum n 1 1 @ 1 0 11421618 -actitis n 1 3 @ #m %m 1 0 02026798 -actitis_hypoleucos n 1 2 @ #m 1 0 02026948 -actitis_macularia n 1 2 @ #m 1 0 02027075 -actium n 2 3 @ #p ; 2 0 08786161 01268457 -activase n 1 2 @ ; 1 0 04441282 -activated_carbon n 1 1 @ 1 0 14796359 -activated_charcoal n 1 1 @ 1 0 14796359 -activating n 1 2 @ ~ 1 0 01046984 -activating_agent n 1 2 @ ; 1 0 14723425 -activation n 3 4 ! @ ~ + 3 0 13426376 01046984 00236821 -activation_energy n 1 1 @ 1 1 11421822 -activator n 1 5 ! @ ~ + ; 1 0 14723079 -active n 3 2 @ + 3 1 14776804 13803158 09764900 -active_agent n 1 1 @ 1 0 14776804 -active_air_defense n 1 1 @ 1 0 00960395 -active_application n 1 1 @ 1 0 06570520 -active_birth n 1 1 @ 1 0 13426591 -active_citizen n 1 1 @ 1 0 09765118 -active_immunity n 1 1 @ 1 0 14527553 -active_matrix_screen n 1 1 @ 1 0 02678010 -active_placebo n 1 1 @ 1 0 02678174 -active_site n 1 2 @ #p 1 0 08623260 -active_transport n 1 2 @ ; 1 0 13426726 -active_trust n 1 2 ! @ 1 0 13360950 -active_voice n 1 2 ! @ 1 0 13803158 -activeness n 2 5 ! @ ~ = + 2 0 14006945 04635104 -activewear n 1 2 @ ~ 1 0 04285803 -activism n 1 2 @ + 1 1 05901840 -activist n 1 3 @ ~ + 1 0 10315837 -activity n 6 6 ! @ ~ = + ; 6 3 00407535 14006945 13440063 14531203 13518963 04635104 -actomyosin n 1 2 @ %s 1 0 14729737 -actor n 2 3 @ ~ + 2 1 09765278 09767197 -actor's_agent n 1 1 @ 1 0 09767592 -actor's_assistant n 1 1 @ 1 0 10033082 -actor's_line n 1 3 @ ~ #p 1 0 07010821 -actress n 1 2 @ ~ 1 1 09767700 -acts n 1 2 @ #p 1 0 06442405 -acts_of_the_apostles n 1 2 @ #p 1 0 06442405 -actual_damages n 1 2 @ ; 1 0 13291356 -actual_eviction n 1 2 @ ; 1 0 01194711 -actual_possession n 1 2 @ ; 1 0 00809886 -actual_sin n 1 2 ! @ 1 0 00757337 -actualisation n 1 3 @ ~ + 1 0 00931847 -actuality n 1 4 @ ~ = + 1 1 13954818 -actualization n 1 3 @ ~ + 1 0 00931847 -actuarial_table n 1 2 @ ~ 1 0 08266542 -actuary n 1 4 @ ~ + ; 1 0 10652954 -actuation n 1 3 @ ~ + 1 0 00045250 -actuator n 1 3 @ ~ + 1 0 02678384 -actus_reus n 1 2 @ ~ 1 0 00732746 -acuity n 2 2 @ ~ 2 0 05655567 05620468 -acular n 1 3 @ %s ; 1 0 03612559 -aculea n 1 1 @ 1 0 01900985 -aculeus n 2 2 @ ~ 2 0 13089419 01901091 -acumen n 2 2 @ + 2 0 13089526 05621808 -acuminate_leaf n 1 1 @ 1 0 13157684 -acupressure n 1 2 @ ; 1 0 00710338 -acupuncture n 1 2 @ ; 1 0 00710155 -acute n 1 1 @ 1 0 06822576 -acute-angled_triangle n 1 1 @ 1 0 13879816 -acute_accent n 1 1 @ 1 0 06822576 -acute_angle n 1 1 @ 1 0 13891937 -acute_anterior_poliomyelitis n 1 1 @ 1 0 14140176 -acute_brain_disorder n 1 1 @ 1 0 14054762 -acute_gastritis n 1 1 @ 1 0 14346606 -acute_glaucoma n 1 1 @ 1 0 14255536 -acute_glossitis n 1 1 @ 1 0 14347045 -acute_hemorrhagic_encephalitis n 1 1 @ 1 0 14342742 -acute_inclusion_body_encephalitis n 1 1 @ 1 0 14343062 -acute_kidney_failure n 1 1 @ 1 0 14114886 -acute_leukemia n 1 2 @ ~ 1 0 14243268 -acute_lymphoblastic_leukemia n 1 1 @ 1 0 14243393 -acute_lymphocytic_leukemia n 1 1 @ 1 0 14243393 -acute_myelocytic_leukemia n 1 1 @ 1 0 14243649 -acute_myeloid_leukemia n 1 1 @ 1 0 14243649 -acute_organic_brain_syndrome n 1 1 @ 1 0 14054762 -acute_pyelonephritis n 1 1 @ 1 0 14566476 -acute_renal_failure n 1 1 @ 1 0 14114886 -acute_schizophrenic_episode n 1 1 @ 1 0 14400325 -acute_triangle n 1 1 @ 1 0 13879816 -acuteness n 3 4 ! @ ~ + 3 0 05653327 05620468 04705536 -acyclovir n 1 1 @ 1 0 02678528 -acyl n 1 2 @ ~ 1 0 14594708 -acyl_anhydrides n 1 1 @ 1 0 14808617 -acyl_group n 1 2 @ ~ 1 0 14594708 -acyl_halide n 1 2 @ ~ 1 0 14808752 -acylation n 1 2 @ ~ 1 0 13426948 -acylglycerol n 1 3 @ ~ #p 1 0 14885088 -ad n 1 2 @ ~ 1 1 07248801 -ad-lib n 1 2 @ + 1 0 06714697 -ad_agency n 1 1 @ 1 0 08353912 -ad_blitz n 1 2 @ ~ 1 0 00798959 -ad_campaign n 1 2 @ ~ 1 1 00798959 -ad_valorem_tax n 1 1 @ 1 0 13316722 -ada n 1 1 @ 1 0 14707361 -ada-scid n 1 1 @ 1 0 14129223 -adactylia n 1 1 @ 1 0 14152803 -adactylism n 1 1 @ 1 0 14152803 -adactyly n 1 1 @ 1 0 14152803 -adad n 1 2 @ ; 1 0 09515027 -adage n 1 1 @ 1 0 07153838 -adagio n 2 3 @ #p ; 2 0 07047804 00526259 -adalia n 2 4 @ #m #p %m 2 0 09040839 02165754 -adalia_bipunctata n 1 2 @ #m 1 0 02165877 -adam n 3 2 @ ; 3 1 09586553 10808045 02678738 -adam's_apple n 2 3 @ #m #p 2 0 11776511 05530296 -adam's_needle n 1 1 @ 1 0 12483427 -adam's_needle-and-thread n 1 1 @ 1 0 12483427 -adam's_peak n 1 2 @ #p 1 0 09187594 -adam-and-eve n 1 2 @ #m 1 0 12045514 -adam_smith n 1 1 @ 1 0 11305258 -adamance n 1 2 @ + 1 0 04863793 -adamant n 1 2 @ ~ 1 0 14834563 -adams n 4 2 @ #p 4 0 10808539 10808353 10808200 09187407 -adams-stokes_syndrome n 1 1 @ 1 0 14362593 -adana n 1 2 @ #p 1 0 09040475 -adansonia n 1 3 @ #m %m 1 0 12189620 -adansonia_digitata n 1 3 @ #m %p 1 0 12189987 -adansonia_gregorii n 1 3 @ #m %p 1 0 12189779 -adapa n 1 2 @ ; 1 0 09515131 -adapid n 1 2 @ #m 1 0 02496210 -adapid_group n 1 2 @ #m 1 0 02496210 -adapin n 1 1 @ 1 0 03229905 -adaptability n 1 4 ! @ ~ + 1 0 04659090 -adaptation n 3 4 @ ~ + ; 3 1 06408779 13427078 00193406 -adapter n 2 3 @ ~ + 2 0 09809925 02678897 -adaption n 1 3 @ ~ + 1 0 13427078 -adaptive_radiation n 1 1 @ 1 0 07440045 -adaptor n 1 2 @ + 1 0 02678897 -adar n 1 3 @ #p %p 1 0 15215480 -adar_sheni n 1 2 @ #p 1 0 15215693 -add n 1 2 @ %p 1 0 14056280 -add-in n 1 2 @ ~ 1 0 03033986 -add-on n 2 3 @ ~ + 2 0 02679415 02671421 -addax n 1 2 @ #m 1 0 02421136 -addax_nasomaculatus n 1 2 @ #m 1 0 02421136 -addend n 1 1 @ 1 0 13728818 -addendum n 1 3 @ ~ #p 1 0 06399631 -adder n 3 3 @ #m + 3 0 09768753 02679142 01752585 -adder's_fern n 1 1 @ 1 0 13173882 -adder's_tongue n 1 3 @ ~ #m 1 0 12960378 -adder's_tongue_fern n 1 3 @ ~ #m 1 0 12960378 -addict n 2 3 @ ~ + 2 0 09769076 09768830 -addiction n 3 4 @ ~ + ; 3 0 14062725 07486145 00087849 -adding_machine n 1 2 @ #p 1 0 02679257 -addis_ababa n 1 2 @ #p 1 0 08778401 -addison's_disease n 1 1 @ 1 0 14116908 -addison's_syndrome n 1 1 @ 1 0 14116908 -addition n 6 4 ! @ ~ + 6 3 02679415 00363788 13754293 13253423 08554872 00872107 -addition_reaction n 1 1 @ 1 0 13427356 -additions_to_esther n 1 2 @ #p 1 0 06458685 -additive n 1 3 @ ~ + 1 1 02679788 -additive_inverse n 1 2 @ ; 1 0 13843001 -addle-head n 1 1 @ 1 0 10598904 -addlehead n 1 1 @ 1 0 10598904 -address n 8 6 @ ~ #p %p + ; 8 4 06356515 08491027 07238694 07067591 06794216 06787150 05082648 04842232 -addressee n 1 2 @ + 1 0 09769345 -addressing_machine n 1 1 @ 1 0 02679961 -addressograph n 1 1 @ 1 0 02679961 -adducer n 1 1 @ 1 0 09769525 -adducing n 1 1 @ 1 0 06649704 -adduct n 1 1 @ 1 0 14584016 -adduction n 1 3 @ + ; 1 0 00333203 -adductor n 1 3 @ ~ + 1 0 05291728 -adductor_muscle n 1 2 @ ~ 1 0 05291728 -ade n 1 2 @ ~ 1 0 07925966 -adelaide n 1 2 @ #p 1 0 08834543 -adelges n 1 3 @ #m %m 1 0 02254531 -adelges_abietis n 1 2 @ #m 1 0 02255023 -adelges_piceae n 1 2 @ #m 1 0 02254901 -adelgid n 1 3 @ ~ #m 1 0 02254697 -adelgidae n 1 3 @ #m %m 1 0 02254370 -adelie n 1 2 @ #m 1 0 02056228 -adelie_coast n 1 2 @ #p 1 0 08494782 -adelie_land n 1 2 @ #p 1 0 08494782 -adelie_penguin n 1 2 @ #m 1 0 02056228 -adeline_virginia_stephen_woolf n 1 2 @ #m 1 0 11396667 -aden n 1 2 @ #p 1 0 09164903 -aden-abyan_islamic_army n 1 2 @ ; 1 0 08025112 -adenanthera n 1 3 @ #m %m 1 0 11758628 -adenanthera_pavonina n 1 2 @ #m 1 0 11758799 -adenauer n 1 1 @ 1 0 10808756 -adenine n 1 3 @ #s ; 1 0 14706889 -adenitis n 1 1 @ 1 0 14257687 -adenium n 1 3 @ #m %m 1 0 11769002 -adenium_multiflorum n 1 2 @ #m 1 0 11769176 -adenium_obesum n 1 2 @ #m 1 0 11769176 -adenocarcinoma n 1 3 @ ~ + 1 0 14246710 -adenohypophysis n 1 3 @ #p %p 1 0 05484355 -adenoid n 1 3 @ #p + 1 0 05529286 -adenoidectomy n 1 1 @ 1 0 00665970 -adenoma n 1 2 @ ~ 1 1 14235793 -adenomatous_polyp n 1 1 @ 1 0 14234611 -adenomegaly n 1 1 @ 1 0 14367005 -adenomyosarcoma n 1 1 @ 1 0 14246097 -adenomyosis n 1 1 @ 1 0 14204763 -adenopathy n 1 1 @ 1 0 14117173 -adenosine n 1 2 @ ; 1 0 14707101 -adenosine_deaminase n 1 1 @ 1 0 14707361 -adenosine_diphosphate n 1 1 @ 1 0 14707903 -adenosine_monophosphate n 1 1 @ 1 0 14707710 -adenosine_triphosphate n 1 1 @ 1 0 14708042 -adenosis n 1 2 @ ~ 1 0 14059928 -adenota n 1 3 @ #m %m 1 0 02427958 -adenota_vardoni n 1 2 @ #m 1 0 02428089 -adenovirus n 1 2 @ ~ 1 0 01330126 -adenylic_acid n 1 1 @ 1 0 14707710 -adept n 1 3 @ ~ + 1 0 09762509 -adeptness n 1 3 @ ~ + 1 0 05642175 -adequacy n 2 4 ! @ ~ = 2 2 04792357 05112609 -adequateness n 1 3 @ = + 1 0 04792357 -ader_wax n 1 1 @ 1 0 14665102 -adermin n 1 1 @ 1 0 15091669 -adesite n 1 1 @ 1 0 14932222 -adh n 1 1 @ 1 0 05414147 -adhd n 1 2 @ %p 1 0 14056280 -adherence n 2 3 @ ~ + 2 1 01212882 04935528 -adherent n 1 3 @ ~ + 1 1 10016103 -adhesion n 4 3 @ ~ + 4 0 14206224 05584008 04935528 01212882 -adhesion_contract n 1 1 @ 1 0 06521878 -adhesive n 1 4 @ ~ %s + 1 1 14702416 -adhesive_agent n 1 3 @ ~ %s 1 0 14702416 -adhesive_bandage n 1 2 @ ~ 1 0 02680110 -adhesive_friction n 1 2 @ ; 1 0 11460281 -adhesive_material n 1 3 @ ~ %s 1 0 14702416 -adhesive_plaster n 1 2 @ ~ 1 0 03957420 -adhesive_tape n 1 2 @ ~ 1 0 02680337 -adhesiveness n 1 2 @ + 1 0 04935528 -adhocracy n 1 1 @ 1 0 08009239 -adi_granth n 1 2 @ ; 1 0 06430784 -adiabatic_process n 1 2 @ ; 1 0 13427481 -adiantaceae n 1 2 @ #m 1 0 13179216 -adiantum n 1 3 @ #m %m 1 0 13206584 -adiantum_bellum n 1 1 @ 1 0 13207572 -adiantum_capillus-veneris n 1 1 @ 1 0 13207094 -adiantum_pedatum n 1 1 @ 1 0 13207335 -adiantum_tenerum n 1 2 @ ~ 1 0 13207736 -adiantum_tenerum_farleyense n 1 1 @ 1 0 13207923 -adience n 1 4 ! @ + ; 1 0 09180791 -adieu n 1 1 @ 1 1 06629610 -adige n 1 2 @ #p 1 0 09187743 -adios n 1 1 @ 1 1 06629610 -adipic_acid n 1 1 @ 1 0 14612317 -adipose_cell n 1 2 @ %s 1 0 05456622 -adipose_tissue n 1 2 @ ~ 1 0 05268965 -adipose_tumor n 1 1 @ 1 0 14239322 -adiposeness n 1 2 @ + 1 0 04999741 -adiposis n 1 1 @ 1 0 05000537 -adiposity n 1 2 @ + 1 0 04999741 -adirondack_mountains n 1 2 @ #p 1 0 09187923 -adirondacks n 1 2 @ #p 1 0 09187923 -adit n 1 2 @ #p 1 0 02680512 -aditi n 1 1 @ 1 0 09524027 -aditya n 1 1 @ 1 0 09524151 -adjacency n 1 2 @ + 1 0 05085991 -adjective n 2 5 @ ~ #p %p + 2 2 06321702 06319029 -adjoining_room n 1 1 @ 1 0 02680638 -adjournment n 2 2 @ + 2 1 00216038 01067070 -adjudication n 1 1 @ 1 1 00874457 -adjudicator n 1 3 @ ~ + 1 0 09769636 -adjunct n 3 3 @ ~ + 3 1 09188229 09769803 06312767 -adjunction n 1 2 @ + 1 0 00147454 -adjuration n 1 2 @ + 1 0 07187150 -adjustable_spanner n 1 2 @ ~ 1 0 02680754 -adjustable_wrench n 1 2 @ ~ 1 0 02680754 -adjuster n 1 2 @ + 1 0 09769929 -adjusting_entry n 1 1 @ 1 0 13405480 -adjustment n 5 3 @ ~ + 5 3 07369604 00199707 00999787 13427078 13274092 -adjustor n 1 2 @ + 1 0 09769929 -adjutant n 2 4 @ ~ #m ; 2 0 09770179 02003037 -adjutant_bird n 1 2 @ #m 1 0 02003037 -adjutant_general n 1 1 @ 1 0 09770359 -adjutant_stork n 1 2 @ #m 1 0 02003037 -adjuvant n 1 2 @ + 1 0 02680947 -adlai_ewing_stevenson n 1 1 @ 1 0 11317749 -adlai_stevenson n 1 1 @ 1 0 11317749 -adlumia n 1 2 @ #m 1 0 11909745 -adlumia_fungosa n 1 1 @ 1 0 11909864 -adman n 1 2 @ ~ 1 0 09773962 -admass n 1 2 @ ; 1 0 08180484 -administration n 6 8 @ ~ #p %m %p + ; - 6 4 01135952 08164585 00694990 15266265 01124794 00694866 -administrative_body n 1 2 @ ~ 1 0 08077292 -administrative_data_processing n 1 1 @ 1 0 13427633 -administrative_district n 1 2 @ ~ 1 0 08491826 -administrative_division n 1 2 @ ~ 1 0 08491826 -administrative_hearing n 1 2 @ ; 1 0 01200000 -administrative_law n 1 2 @ ; 1 0 08453108 -administrative_official n 1 2 @ ~ 1 1 09880427 -administrative_unit n 1 2 @ ~ 1 0 08077292 -administrator n 3 3 @ ~ + 3 2 09770949 09770743 09770472 -administrivia n 1 1 @ 1 0 01137206 -admirability n 1 2 @ + 1 0 04729127 -admirableness n 1 2 @ + 1 0 04729127 -admiral n 2 2 @ ~ 2 0 09771204 02276258 -admiral_byrd n 1 1 @ 1 0 10876798 -admiral_dewey n 1 1 @ 1 0 10933084 -admiral_nelson n 1 1 @ 1 0 11203059 -admiral_nimitz n 1 1 @ 1 0 11207929 -admiralty n 2 2 @ ; 2 0 08349548 00588703 -admiralty_brass n 1 1 @ 1 0 14960261 -admiralty_island n 1 2 @ #p 1 0 09057170 -admiralty_islands n 1 2 @ #p 1 0 08843085 -admiralty_law n 1 3 @ ; - 1 1 08454191 -admiralty_metal n 1 1 @ 1 0 14960261 -admiralty_mile n 1 1 @ 1 0 13660619 -admiralty_range n 1 2 @ #p 1 0 09188094 -admiration n 3 3 @ ~ + 3 2 07500741 07509996 01218593 -admirer n 3 3 @ ~ + 3 1 10677713 09771664 09771435 -admissibility n 1 5 ! @ ~ = + 1 0 04793016 -admission n 4 3 @ ~ + 4 2 01248191 07215948 13321495 05176188 -admission_charge n 1 1 @ 1 0 13321495 -admission_day n 1 1 @ 1 0 15158189 -admission_fee n 1 1 @ 1 0 13321495 -admission_price n 1 1 @ 1 0 13321495 -admittance n 2 3 @ ~ + 2 0 05176188 01248191 -admixture n 3 2 @ + 3 0 14487598 02681084 00380083 -admonisher n 1 2 @ + 1 0 09771855 -admonishment n 1 2 @ + 1 0 06714420 -admonition n 2 3 @ ~ + 2 1 06672297 06714420 -adnexa n 1 2 @ + 1 0 05221649 -adnoun n 1 1 @ 1 0 06320440 -ado n 1 1 @ 1 1 00555138 -adobe n 2 3 @ #s %s 2 0 14600927 02681392 -adobe_brick n 1 2 @ %s 1 0 02681392 -adobe_house n 1 1 @ 1 1 04255899 -adobe_lily n 1 1 @ 1 0 12453714 -adobo n 1 2 @ ; 1 0 07579917 -adolescence n 2 4 @ #p %p + 2 1 15147850 14426910 -adolescent n 1 3 @ ~ + 1 1 09772029 -adolf_eichmann n 1 1 @ 1 0 10953797 -adolf_hitler n 1 1 @ 1 0 11052672 -adolf_loos n 1 1 @ 1 0 11138085 -adolf_windaus n 1 1 @ 1 0 11392754 -adolph_simon_ochs n 1 1 @ 1 0 11211870 -adolphe_sax n 1 1 @ 1 0 11283158 -adonic n 1 1 @ 1 0 06385080 -adonic_line n 1 1 @ 1 0 06385080 -adonis n 3 4 @ #m %m ; 3 1 10288964 11724529 09547629 -adonis_annua n 1 2 @ #m 1 0 11724660 -adoptee n 1 2 @ + 1 0 09772330 -adopter n 1 2 @ + 1 0 09772448 -adoption n 3 4 @ ~ + ; 3 1 00180413 01185292 00084371 -adoptive_parent n 1 1 @ 1 0 09772448 -adorability n 1 2 @ + 1 0 04686257 -adorableness n 1 2 @ + 1 0 04686257 -adoration n 3 2 @ ~ 3 0 07501420 01218766 01043989 -adorer n 1 3 @ ~ + 1 0 09771435 -adornment n 2 3 @ ~ + 2 0 02681518 00262596 -adoxography n 1 1 @ 1 0 00930481 -adp n 2 2 @ ~ 2 0 14707903 13436063 -adp_system n 1 3 @ ~ %p 1 0 03085915 -adps n 1 3 @ ~ %p 1 0 03085915 -adrenal n 1 4 @ #p %p + 1 0 05331171 -adrenal_cortex n 1 2 @ #p 1 0 05490983 -adrenal_cortical_steroid n 1 2 @ ~ 1 0 14751417 -adrenal_gland n 1 3 @ #p %p 1 0 05331171 -adrenal_medulla n 1 2 @ #p 1 0 05491308 -adrenalectomy n 1 1 @ 1 0 00666107 -adrenalin n 1 2 @ ; 1 0 05408388 -adrenaline n 1 1 @ 1 0 05408388 -adrenarche n 1 1 @ 1 0 07325639 -adrenergic n 1 3 @ ~ + 1 0 02682038 -adrenergic_agonist_eyedrop n 1 1 @ 1 0 00656835 -adrenergic_drug n 1 2 @ ~ 1 0 02682038 -adrenocorticotrophic_hormone n 1 1 @ 1 0 05408113 -adrenocorticotrophin n 1 1 @ 1 0 05408113 -adrenocorticotropic_hormone n 1 1 @ 1 0 05408113 -adrenocorticotropin n 1 1 @ 1 0 05408113 -adrenosterone n 1 1 @ 1 0 14747838 -adrian n 2 1 @ 2 0 11021342 10808886 -adrianople n 1 2 @ #p 1 0 08916111 -adrianopolis n 1 2 @ #p 1 0 08916111 -adriatic n 1 3 @ #p %p 1 0 09188383 -adriatic_sea n 1 3 @ #p %p 1 0 09188383 -adroitness n 1 3 @ ~ + 1 1 05642175 -adsorbate n 1 2 @ + 1 0 14598704 -adsorbent n 1 2 @ + 1 0 14598525 -adsorbent_material n 1 1 @ 1 0 14598525 -adsorption n 1 3 @ ~ + 1 0 13427789 -adsuki_bean n 1 2 @ #m 1 0 12577686 -adulation n 1 1 @ 1 0 06695753 -adulator n 1 3 @ ~ + 1 0 10095869 -adult n 2 5 ! @ ~ %p + 2 2 09605289 01321456 -adult-onset_diabetes n 1 1 @ 1 0 14118936 -adult-onset_diabetes_mellitus n 1 1 @ 1 0 14118936 -adult_body n 1 4 @ ~ #p %p 1 0 05219561 -adult_education n 1 1 @ 1 1 00885297 -adult_female n 1 3 @ ~ %p 1 0 10787470 -adult_female_body n 1 3 @ #p %p 1 0 05220126 -adult_intelligence n 1 1 @ 1 0 13822249 -adult_male n 1 3 @ ~ %p 1 0 10287213 -adult_male_body n 1 3 @ #p %p 1 0 05220306 -adult_respiratory_distress_syndrome n 1 1 @ 1 0 14055052 -adult_tooth n 1 1 @ 1 0 05306708 -adulterant n 1 2 @ + 1 0 14616939 -adulteration n 2 1 @ 2 0 14487443 00163630 -adulterator n 2 2 @ + 2 0 14616939 09772606 -adulterer n 1 3 @ ~ + 1 1 09772746 -adulteress n 1 1 @ 1 0 09772930 -adultery n 1 2 @ + 1 0 00848466 -adulthood n 2 4 @ ~ %p + 2 1 15152817 14425103 -adumbration n 2 1 @ 2 0 05776015 02682207 -advance n 6 4 ! @ ~ + 6 4 07445265 07357388 07164349 00282050 13375891 00364260 -advance_death_benefit n 1 2 @ ~ 1 0 13297397 -advanced_research_and_development_activity n 1 2 @ #p 1 0 08340753 -advancement n 3 3 @ ~ + 3 0 07251984 00282050 00249501 -advancer n 1 2 @ + 1 0 09773076 -advantage n 3 5 ! @ ~ #p + 3 1 05155821 13610426 05142863 -advantageousness n 1 3 @ ~ + 1 0 05160796 -advection n 1 3 @ + ; 1 0 13427989 -advent n 3 4 @ #p %p ; 3 1 00048828 15241507 07322550 -advent_sunday n 1 2 @ #p 1 0 15241655 -adventism n 1 3 @ ~ + 1 0 06226934 -adventist n 1 2 @ + 1 0 09678747 -adventitia n 1 3 @ ~ + 1 0 05606633 -adventitious_root n 1 1 @ 1 0 13126192 -adventure n 1 2 @ + 1 1 00796315 -adventure_story n 1 2 @ ~ 1 0 06370268 -adventurer n 2 3 @ ~ + 2 1 09606009 10072708 -adventuress n 1 1 @ 1 0 09773169 -adventurism n 1 1 @ 1 0 04662182 -adventurousness n 1 2 @ + 1 0 04859177 -adverb n 2 5 @ ~ #p %p + 2 1 06319157 06323612 -adverbial n 1 2 @ + 1 0 06324355 -adversary n 1 2 @ ~ 1 1 09773245 -adversative_conjunction n 1 1 @ 1 0 13800267 -adverse_opinion n 1 1 @ 1 0 06782383 -adverse_witness n 1 1 @ 1 0 09773682 -adversity n 2 3 @ ~ + 2 1 14475661 07336612 -advert n 1 2 @ ~ 1 0 07248801 -advertence n 1 2 @ + 1 0 05704096 -advertency n 1 2 @ + 1 0 05704096 -advertisement n 1 3 @ ~ + 1 1 07248801 -advertiser n 1 3 @ ~ + 1 0 09773962 -advertising n 2 3 @ ~ + 2 2 07248801 01101329 -advertising_agency n 1 1 @ 1 1 08353912 -advertising_campaign n 1 2 @ ~ 1 1 00798959 -advertising_department n 1 1 @ 1 0 08118260 -advertising_division n 1 1 @ 1 0 08118260 -advertizement n 1 3 @ ~ + 1 0 07248801 -advertizer n 1 3 @ ~ + 1 0 09773962 -advertizing n 1 2 @ ~ 1 0 07248801 -advertorial n 1 1 @ 1 0 07249180 -advice n 1 2 @ ~ 1 1 06671484 -advice_and_consent n 1 3 @ #p ; 1 0 06535980 -advil n 1 3 @ %s ; 1 0 03556281 -advisability n 1 3 ! @ + 1 1 05160399 -advisee n 1 2 @ + 1 0 09774167 -advisement n 1 3 @ ~ + 1 0 05785067 -adviser n 1 3 @ ~ + 1 0 09774266 -advisor n 1 3 @ ~ + 1 1 09774266 -advisory n 1 2 @ + 1 0 06747008 -advisory_board n 1 3 @ ~ #m 1 0 08381636 -advisory_service n 1 1 @ 1 0 00577931 -advocacy n 1 3 @ ~ + 1 1 01214171 -advocate n 2 4 @ ~ + ; 2 1 09774783 09775663 -advocator n 1 3 @ ~ + 1 0 09774783 -advowson n 1 2 @ ; 1 0 05175613 -adynamia n 1 1 @ 1 0 05040833 -adz n 1 1 @ 1 0 02682311 -adze n 1 1 @ 1 0 02682311 -adzhar n 1 2 @ #p 1 0 09019592 -adzharia n 1 2 @ #p 1 0 09019592 -adzuki_bean n 1 2 @ #m 1 0 12577686 -aec n 1 2 @ #p 1 0 08122358 -aeciospore n 1 2 @ #p 1 0 13063666 -aecium n 1 3 @ #p + 1 0 13063514 -aedes n 1 3 @ #m %m 1 0 02200705 -aedes_aegypti n 1 2 @ #m 1 0 02200850 -aedes_albopictus n 1 2 @ #m 1 0 02201000 -aegadean_islands n 1 2 @ #p 1 0 08784905 -aegadean_isles n 2 2 @ #p 2 0 08784905 01268633 -aegates n 1 2 @ #p 1 0 08784905 -aegates_isles n 1 2 @ #p 1 0 01268633 -aegean n 1 4 @ #p %p + 1 1 09188609 -aegean_civilisation n 1 2 @ ~ 1 0 08290156 -aegean_civilization n 1 2 @ ~ 1 0 08290156 -aegean_culture n 1 2 @ ~ 1 0 08290156 -aegean_island n 1 3 @ ~ #p 1 1 08782627 -aegean_sea n 1 3 @ #p %p 1 0 09188609 -aegiceras n 1 3 @ #m %m 1 0 12916025 -aegiceras_majus n 1 2 @ #m 1 0 12916179 -aegilops n 1 3 @ #m %m 1 0 12104614 -aegilops_triuncalis n 1 2 @ #m 1 0 12104734 -aegina n 2 2 @ #p 2 0 08782847 01910998 -aegir n 1 1 @ 1 0 07403920 -aegis n 2 3 @ ~ #p 2 1 01214863 02895154 -aegisthus n 1 2 @ ; 1 0 09595717 -aegospotami n 2 2 @ #p 2 0 09188894 01268886 -aegospotamos n 2 2 @ #p 2 0 09188894 01268886 -aegypiidae n 1 1 @ 1 0 01616551 -aegypius n 1 3 @ #m %m 1 0 01617949 -aegypius_monachus n 1 2 @ #m 1 0 01618082 -aegyptopithecus n 1 2 @ #m 1 0 02479332 -aelius_donatus n 1 1 @ 1 0 10939187 -aeneas n 1 1 @ 1 0 09594604 -aeneas_silvius n 1 1 @ 1 0 11236852 -aeneid n 1 1 @ 1 0 06380055 -aengus n 1 2 @ ; 1 0 09507909 -aeolia n 1 3 @ #p %p 1 0 08784104 -aeolian n 2 2 @ + 2 0 09710753 08160697 -aeolian_harp n 1 1 @ 1 0 02682407 -aeolian_lyre n 1 1 @ 1 0 02682407 -aeolic n 1 1 @ 1 0 06977800 -aeolic_dialect n 1 1 @ 1 0 06977800 -aeolis n 1 3 @ #p %p 1 0 08784104 -aeolus n 1 2 @ + 1 0 09553490 -aeon n 3 5 @ ~ %p + ; 3 1 09536584 15243730 15243590 -aeonium n 1 3 @ #m %m 1 0 12786684 -aeonium_haworthii n 1 2 @ #m 1 0 12786836 -aepyceros n 1 3 @ #m %m 1 0 02422561 -aepyceros_melampus n 1 2 @ #m 1 0 02422699 -aepyornidae n 1 3 @ #m %m 1 0 01522147 -aepyorniformes n 1 3 @ #m %m 1 0 01521980 -aepyornis n 1 2 @ #m 1 0 01522450 -aeration n 2 2 @ + 2 1 13428159 00200244 -aerator n 1 2 @ + 1 1 02682569 -aerial n 2 3 @ ~ #p 2 1 00561226 02715229 -aerial_ladder n 1 1 @ 1 0 02682699 -aerial_ladder_truck n 1 1 @ 1 0 03632852 -aerial_torpedo n 1 1 @ 1 0 02682811 -aerial_tramway n 1 1 @ 1 0 04469813 -aerialist n 1 2 @ ~ 1 0 09764598 -aerides n 1 2 @ #m 1 0 12044467 -aerie n 2 1 @ 2 0 09189157 08492354 -aerobacter n 1 3 @ #m %m 1 0 01353773 -aerobacter_aerogenes n 1 2 @ #m 1 1 01353932 -aerobatics n 1 2 @ ~ 1 0 00302861 -aerobe n 1 1 @ 1 0 01326897 -aerobic_exercise n 1 1 @ 1 0 00625858 -aerobics n 1 2 @ + 1 0 00625858 -aerobiosis n 1 2 @ + 1 0 11473685 -aerodontalgia n 1 2 @ ; 1 0 14324099 -aerodrome n 1 3 @ ~ %p 1 0 02692232 -aerodynamic_force n 1 2 @ ~ 1 0 11422114 -aerodynamic_lift n 1 2 @ ~ 1 0 11422277 -aerodynamics n 1 2 @ + 1 0 06114351 -aeroembolism n 2 1 @ 2 0 14101317 14068344 -aerofoil n 1 3 @ ~ %p 1 0 02688443 -aerogenerator n 1 2 @ %p 1 0 04587404 -aerogram n 1 1 @ 1 0 06626060 -aerogramme n 1 1 @ 1 0 06626060 -aerolite n 1 2 @ + 1 0 09189289 -aerology n 1 2 @ + 1 0 06119226 -aeromechanics n 1 2 @ + 1 0 06114351 -aeromedicine n 1 2 @ + 1 0 06046037 -aeronaut n 1 2 @ ~ 1 0 09826204 -aeronautical_engineer n 1 2 @ ~ 1 0 09775907 -aeronautical_engineering n 2 1 @ 2 0 06126177 00949948 -aeronautics n 1 4 @ ~ + - 1 0 06096913 -aerophagia n 1 1 @ 1 0 00840057 -aerophilately n 1 2 @ + 1 0 01016628 -aerophile n 1 1 @ 1 0 09776186 -aerophyte n 1 2 @ ~ 1 0 13122985 -aeroplane n 1 4 @ ~ %p - 1 0 02691156 -aerosol n 2 3 @ ~ + 2 1 11422597 02682922 -aerosol_bomb n 2 2 @ ~ 2 0 04420461 02682922 -aerosol_can n 1 2 @ ~ 1 0 02682922 -aerosol_container n 1 2 @ ~ 1 0 02682922 -aerospace n 1 3 @ #p %p 1 0 08502171 -aerospace_engineer n 1 1 @ 1 0 09776079 -aerospace_medicine n 1 1 @ 1 0 06046037 -aertex n 1 1 @ 1 0 02683183 -aery n 2 1 @ 2 0 09189157 08492354 -aeschylus n 1 2 @ + 1 1 10809086 -aeschynanthus n 1 3 @ ~ #m 1 0 12830568 -aeschynanthus_radicans n 1 1 @ 1 0 12830789 -aesculapius n 1 2 @ + 1 0 09559201 -aesculus n 1 3 @ #m %m 1 0 12768177 -aesculus_hippocastanum n 1 3 @ ~ #m 1 0 12768369 -aesir n 1 2 @ ; 1 0 09579070 -aesop n 1 1 @ 1 0 10809223 -aesop's_fables n 1 1 @ 1 0 06372428 -aesthesia n 1 1 @ 1 0 05678148 -aesthesis n 1 2 @ ~ 1 0 05712076 -aesthete n 1 1 @ 1 0 10064537 -aesthetic n 1 3 @ + ; 1 0 05968971 -aesthetician n 2 2 @ + 2 0 10064831 10064669 -aesthetics n 1 3 @ + ; 1 0 06161223 -aestivation n 2 4 @ #p + ; 2 0 14014162 07947069 -aether n 2 1 @ 2 0 09553599 06254915 -aethionema n 1 3 @ #m %m 1 0 11869890 -aethusa n 1 3 @ #m %m 1 0 12931109 -aethusa_cynapium n 1 2 @ #m 1 0 12931231 -aetiologist n 1 2 @ + 1 0 10066059 -aetiology n 2 2 @ + 2 0 07327608 06161048 -aetobatus n 1 3 @ #m %m 1 0 01499261 -aetobatus_narinari n 1 2 @ #m 1 0 01499396 -afars_and_issas n 1 5 @ #m #p %m %p 1 0 08762495 -affability n 1 3 @ ~ + 1 0 04654652 -affableness n 1 3 @ ~ + 1 0 04654652 -affair n 3 2 @ ~ 3 3 05671325 13931889 07447261 -affaire n 1 1 @ 1 0 13931889 -affaire_d'honneur n 1 1 @ 1 0 01172784 -affairs n 2 2 @ ~ 2 2 05671676 01107359 -affect n 1 2 @ + 1 1 07479926 -affectation n 1 2 @ ~ 1 0 00755673 -affected_role n 1 1 @ 1 0 06332136 -affectedness n 2 5 ! @ ~ = + 2 0 04787763 00755673 -affection n 1 2 @ ~ 1 1 07544647 -affectionateness n 2 3 @ ~ + 2 0 07544647 04627000 -affective_disorder n 1 2 @ ~ 1 0 14388910 -affenpinscher n 1 1 @ 1 0 02110627 -afferent n 1 4 @ ~ %p + 1 0 05475134 -afferent_fiber n 1 2 @ #p 1 0 05475397 -afferent_nerve n 1 3 @ ~ %p 1 0 05475134 -afferent_neuron n 1 2 @ #p 1 0 05466892 -affiant n 1 1 @ 1 0 09776261 -affidavit n 1 3 @ ~ ; 1 1 06736529 -affiliate n 2 2 @ + 2 0 09776346 08009478 -affiliation n 2 3 @ ~ + 2 2 13930385 01082061 -affine n 1 3 @ + ; 1 0 09776522 -affine_geometry n 1 2 @ ; 1 0 06005399 -affine_transformation n 1 2 @ ; 1 0 13785965 -affinity n 7 5 ! @ ~ + ; 7 1 11426778 13813283 13812296 13811410 11422822 04747798 04688648 -affirmation n 4 5 ! @ ~ + ; 4 1 06732350 07203126 06684798 01186192 -affirmative n 1 4 ! @ ~ + 1 0 07203696 -affirmative_action n 1 1 @ 1 0 06659685 -affirmative_pleading n 1 2 @ ; 1 0 06559832 -affirmativeness n 1 2 @ + 1 0 05167117 -affirmed n 1 1 @ 1 0 02384639 -affirmer n 1 3 @ ~ + 1 0 09814660 -affix n 1 4 @ ~ #p + 1 0 06308049 -affixation n 3 3 @ ~ + 3 0 06177923 00927694 00379422 -afflatus n 1 1 @ 1 0 05835449 -affliction n 3 3 @ ~ + 3 0 14477342 14213199 07305234 -affluence n 1 3 @ ~ + 1 1 14491625 -affluent n 2 2 @ + 2 0 09776642 09278997 -afforestation n 1 2 @ + 1 0 00400278 -affray n 2 2 @ ~ 2 0 07184545 01176335 -affricate n 1 1 @ 1 0 07118990 -affricate_consonant n 1 1 @ 1 0 07118990 -affrication n 1 1 @ 1 0 07116641 -affricative n 1 1 @ 1 0 07118990 -affright n 1 3 @ ~ + 1 0 07520612 -affront n 1 3 @ ~ + 1 1 01225027 -affusion n 1 1 @ 1 0 01038147 -afghan n 5 5 @ ~ #m + - 5 1 02683323 09689435 06975132 04187970 02088094 -afghan_hound n 1 1 @ 1 0 02088094 -afghan_monetary_unit n 1 2 @ ~ 1 0 13663077 -afghani n 2 4 @ %p + - 2 0 13663229 06975132 -afghanistan n 1 6 @ #p %m %p + - 1 0 08703454 -afghanistani n 1 4 @ ~ #m + 1 0 09689435 -afibrinogenemia n 1 2 @ ~ 1 0 14170623 -aficionado n 2 1 @ 2 0 09776933 09776807 -afisr n 1 3 @ #m #p 1 0 08197386 -afl n 1 1 @ 1 0 08233913 -afl-cio n 1 1 @ 1 0 08234103 -aflatoxin n 1 1 @ 1 0 14714645 -aflaxen n 1 3 @ %s ; 1 0 03808144 -afp n 1 1 @ 1 0 15033846 -aframomum n 1 3 @ #m %m 1 0 12357802 -aframomum_melegueta n 1 2 @ #m 1 0 12357968 -afrasian n 1 2 @ ~ 1 0 06986558 -afrasian_language n 1 2 @ ~ 1 0 06986558 -africa n 1 5 @ #p %p + - 1 1 09189411 -african n 1 3 @ ~ + 1 0 09634494 -african-american n 1 2 @ + 1 0 09637013 -african-american_music n 1 2 @ ~ 1 0 07025604 -african_american n 1 1 @ 1 0 09637013 -african_american_english n 1 2 @ - 1 0 06947658 -african_american_vernacular_english n 1 2 @ - 1 0 06947658 -african_bowstring_hemp n 1 1 @ 1 0 12481150 -african_chameleon n 1 2 @ #m 1 0 01694178 -african_clawed_frog n 1 2 @ #m 1 0 01654637 -african_coral_snake n 1 2 @ #m 1 0 01746952 -african_country n 1 3 @ ~ #p 1 0 08698379 -african_crocodile n 1 1 @ 1 0 01697457 -african_daisy n 3 3 @ ~ #m 3 0 11992806 11971783 11925303 -african_elephant n 1 2 @ #m 1 0 02504458 -african_gray n 1 2 @ #m 1 0 01817953 -african_green_monkey n 1 1 @ 1 0 02485688 -african_grey n 1 2 @ #m 1 0 01817953 -african_hemp n 2 2 @ #m 2 0 12481150 12205460 -african_holly n 1 1 @ 1 0 12895298 -african_hunting_dog n 1 1 @ 1 0 02116738 -african_lily n 1 2 @ #m 1 0 12429352 -african_love_grass n 1 1 @ 1 0 12120578 -african_mahogany n 1 2 @ #m 1 0 12699031 -african_marigold n 1 1 @ 1 0 12020736 -african_millet n 1 2 @ #m 1 0 12118661 -african_monitor n 1 1 @ 1 0 01694955 -african_nation n 1 3 @ ~ #p 1 0 08698379 -african_oil_palm n 1 1 @ 1 0 12590499 -african_sandalwood n 1 2 @ #m 1 0 12509109 -african_scented_mahogany n 1 2 @ #m 1 0 12698027 -african_tea n 1 1 @ 1 0 03608870 -african_tulip n 1 2 @ #m 1 0 12429352 -african_violet n 1 2 @ #m 1 0 12833149 -african_walnut n 1 2 @ #m 1 0 12699618 -african_wild_ass n 1 1 @ 1 0 02390640 -african_yellowwood n 1 2 @ #m 1 0 11652578 -africander n 1 1 @ 1 0 02406046 -africanized_bee n 1 1 @ 1 0 02208498 -africanized_honey_bee n 1 1 @ 1 0 02208498 -afrikaans n 1 2 @ + 1 0 06952861 -afrikander n 1 1 @ 1 0 09635635 -afrikaner n 1 2 @ + 1 0 09635635 -afrl n 1 2 @ #p 1 0 02688895 -afro n 1 1 @ 1 0 05258889 -afro-american n 1 2 @ + 1 0 09637013 -afro-asiatic n 1 2 @ ~ 1 0 06986558 -afro-wig n 1 1 @ 1 0 02683454 -afro_hairdo n 1 1 @ 1 0 05258889 -afroasiatic n 1 2 @ ~ 1 0 06986558 -afroasiatic_language n 1 2 @ ~ 1 0 06986558 -afrocarpus n 1 3 @ #m %m 1 0 11653323 -afrocarpus_falcata n 1 2 @ #m 1 0 11653570 -afropavo n 1 1 @ 1 0 01803641 -afropavo_congensis n 1 1 @ 1 0 01803641 -afspc n 1 2 @ #p 1 0 08196892 -after-shave n 1 2 @ ~ 1 0 02683791 -after-shave_lotion n 1 2 @ ~ 1 0 02683791 -after_part n 1 3 @ #p %p 1 0 04316646 -afterbirth n 1 1 @ 1 0 05520965 -afterburner n 1 2 @ #p 1 0 02683558 -aftercare n 1 1 @ 1 0 00656192 -afterdamp n 1 1 @ 1 0 14726642 -afterdeck n 1 2 @ %p 1 0 02683692 -aftereffect n 2 1 @ 2 1 11411501 14311574 -afterglow n 2 1 @ 2 0 11517898 07492368 -afterimage n 1 2 @ ~ 1 0 05936130 -afterlife n 1 2 @ ~ 1 0 15143864 -aftermath n 2 2 @ ~ 2 0 11411610 07294019 -afternoon n 2 2 @ %p 2 2 15166191 06632807 -afternoon_tea n 1 2 @ ; 1 0 07575510 -afterpains n 1 1 @ 1 0 14330992 -afterpiece n 1 2 @ ~ 1 0 07008544 -afters n 1 2 @ ~ 1 0 07609840 -aftersensation n 1 2 @ ~ 1 0 05936130 -aftershaft n 1 1 @ 1 0 01897257 -aftershock n 1 1 @ 1 0 07429637 -aftertaste n 1 1 @ 1 0 05936300 -afterthought n 2 1 @ 2 0 05790012 02683936 -afterworld n 1 1 @ 1 0 05626524 -ag n 1 3 @ ~ #s 1 0 14654954 -aga n 1 2 @ ; 1 0 06340047 -agal n 1 1 @ 1 0 02684083 -agalactia n 1 1 @ 1 0 14022199 -agalactosis n 1 1 @ 1 0 14022199 -agalinis n 1 2 @ #m 1 0 12883733 -agama n 1 2 @ #m 1 0 01687978 -agamemnon n 1 2 @ ; 1 0 09594906 -agamete n 1 3 @ ~ + 1 0 11547737 -agamid n 1 3 @ ~ #m 1 0 01687665 -agamid_lizard n 1 3 @ ~ #m 1 0 01687665 -agamidae n 1 3 @ #m %m 1 0 01687441 -agammaglobulinemia n 1 1 @ 1 0 14128331 -agamogenesis n 1 3 @ ~ + 1 0 13434120 -agapanthus n 1 3 @ ~ #m 1 0 12429148 -agapanthus_africanus n 1 2 @ #m 1 0 12429352 -agape n 3 2 @ ; 3 0 07543910 07543732 01028534 -agape_love n 1 1 @ 1 0 07543732 -agapornis n 1 3 @ #m %m 1 0 01819918 -agar n 2 4 @ ~ #s %s 2 0 14900184 14900008 -agar-agar n 1 2 @ #s 1 0 14900008 -agaric n 2 3 @ ~ #m 2 0 13054073 12998815 -agaricaceae n 1 3 @ #m %m 1 0 13000372 -agaricales n 1 3 @ #m %m 1 0 12998349 -agaricus n 1 3 @ #m %m 1 0 13000668 -agaricus_arvensis n 1 2 @ #m 1 0 13001366 -agaricus_campestris n 1 2 @ #m 1 0 13001529 -agassiz n 1 1 @ 1 0 10809317 -agastache n 1 3 @ #m %m 1 0 12839839 -agastache_foeniculum n 1 1 @ 1 0 12840362 -agastache_mexicana n 1 1 @ 1 0 12840502 -agastache_nepetoides n 1 1 @ 1 0 12840168 -agate n 1 2 @ ~ 1 1 14708232 -agate_line n 1 1 @ 1 0 13713003 -agateware n 1 1 @ 1 0 02684248 -agatha_christie n 1 1 @ 1 0 10896987 -agathis n 1 3 @ #m %m 1 0 11647131 -agathis_alba n 1 1 @ 1 0 11647868 -agathis_australis n 1 2 @ #m 1 0 11647703 -agathis_dammara n 1 1 @ 1 0 11647868 -agathis_lanceolata n 1 2 @ #m 1 0 11648268 -agathis_robusta n 1 2 @ #m 1 0 11648039 -agavaceae n 1 3 @ #m %m 1 0 12476036 -agave n 1 3 @ ~ #m 1 0 12476510 -agave_americana n 1 2 @ #m 1 0 12477163 -agave_atrovirens n 1 3 @ #m %s 1 0 12477747 -agave_cantala n 1 2 @ #m 1 0 12477583 -agave_family n 1 3 @ #m %m 1 0 12476036 -agave_sisalana n 1 2 @ #m 1 0 12477401 -agave_tequilana n 1 3 @ #m %s 1 0 12477983 -agdestis n 1 2 @ #m 1 0 11856055 -agdistis n 1 1 @ 1 0 09576914 -age n 5 6 @ ~ #p %p = + 5 3 04924103 15254028 15145171 15242955 15153787 -age-related_macular_degeneration n 1 1 @ 1 0 14256889 -age_bracket n 1 2 @ ~ 1 0 07943480 -age_class n 1 1 @ 1 0 07974766 -age_group n 1 2 @ ~ 1 1 07943480 -age_limit n 1 1 @ 1 0 06664213 -age_norm n 1 1 @ 1 0 06023243 -age_of_consent n 1 1 @ 1 0 15151764 -age_of_fishes n 1 2 @ #p 1 0 15127982 -age_of_mammals n 1 3 @ #p %p 1 0 15124361 -age_of_man n 1 3 @ #p %p 1 0 15124545 -age_of_reason n 1 1 @ 1 1 08472590 -age_of_reptiles n 1 2 @ %p 1 0 15126175 -aged n 1 3 ! @ + 1 1 07943870 -agedness n 1 2 @ + 1 0 04927632 -agee n 1 1 @ 1 0 10809576 -ageing n 2 2 @ ~ 2 0 13551965 13429006 -ageism n 1 1 @ 1 0 01154373 -agelaius n 1 3 @ #m %m 1 0 01575270 -agelaius_phoeniceus n 1 2 @ #m 1 0 01575401 -agelessness n 1 2 @ + 1 0 04742418 -agency n 5 3 @ ~ + 5 3 08337324 08057206 14007546 14000403 00172710 -agency_security n 1 1 @ 1 0 13340080 -agenda n 2 3 @ ~ %p 2 1 05910940 06485261 -agenda_item n 1 2 @ #p 1 0 06482868 -agendum n 1 3 @ ~ %p 1 0 06485261 -agene n 1 3 @ + ; 1 0 15017121 -agenesia n 1 1 @ 1 0 13428308 -agenesis n 1 1 @ 1 0 13428308 -agent n 6 4 @ ~ #m + 6 4 09190918 09777353 14778436 09777012 10373801 06332364 -agent-in-place n 1 1 @ 1 0 09778266 -agent_bank n 2 1 @ 2 0 08418885 08418316 -agent_orange n 1 2 @ %s 1 0 14601039 -agent_provocateur n 1 1 @ 1 0 09778392 -agentive_role n 1 1 @ 1 0 06332364 -agerasia n 1 1 @ 1 0 04674624 -ageratina n 1 3 @ #m %m 1 0 11917633 -ageratina_altissima n 1 2 @ #m 1 0 11917835 -ageratum n 2 3 @ ~ #m 2 0 11955896 11918286 -ageratum_houstonianum n 1 1 @ 1 0 11918473 -aggeus n 2 2 @ #p 2 0 11021916 06440937 -agglomerate n 2 3 @ ~ + 2 0 14711647 07961480 -agglomeration n 2 2 @ ~ 2 1 07959269 01014490 -agglomerator n 1 2 @ + 1 0 02684356 -agglutinating_activity n 1 1 @ 1 1 13428804 -agglutination n 3 3 @ ~ + 3 2 13428608 13428421 13428804 -agglutination_test n 1 2 @ ~ 1 0 05739613 -agglutinin n 1 2 @ ~ 1 1 15028684 -agglutinogen n 1 2 @ ~ 1 0 15029002 -aggrandisement n 1 3 @ ~ + 1 0 00373544 -aggrandizement n 1 3 @ ~ + 1 0 00373544 -aggravated_assault n 1 1 @ 1 0 00768063 -aggravation n 3 3 @ ~ + 3 0 07518878 01221790 00374835 -aggravator n 1 2 @ + 1 0 09778537 -aggregate n 3 3 @ %m + 3 1 04353803 14594925 08418103 -aggregate_fruit n 1 2 @ ~ 1 0 13137672 -aggregation n 2 2 @ ~ 2 1 07951464 01014066 -aggregator n 1 3 @ ~ + 1 0 09936620 -aggression n 5 4 @ ~ #p + 5 3 04658268 07548567 00964569 01237167 01221611 -aggressiveness n 3 3 @ ~ + 3 2 04837232 07548567 04643662 -aggressor n 2 3 @ ~ + 2 2 09821253 09778676 -aggro n 1 2 @ ; 1 0 01172598 -agha n 1 2 @ ; 1 0 06340047 -aghan n 1 2 @ #p 1 0 15220864 -agility n 1 2 @ + 1 0 05003850 -agincourt n 1 2 @ ; 1 0 01269161 -aging n 2 2 @ ~ 2 0 13551965 13429006 -agio n 1 1 @ 1 0 13324297 -agiotage n 1 1 @ 1 0 13324297 -agism n 1 1 @ 1 0 01154373 -agitated_depression n 1 1 @ 1 0 14389584 -agitation n 5 3 ! @ ~ 5 1 14403107 13979503 07513508 00554300 00333366 -agitator n 1 2 @ + 1 0 09778783 -agitprop n 1 1 @ 1 0 06674791 -agkistrodon n 1 3 @ #m %m 1 0 01754190 -agkistrodon_contortrix n 1 2 @ #m 1 0 01754370 -agkistrodon_piscivorus n 1 2 @ #m 1 0 01754533 -aglaia n 1 2 @ ; 1 0 09495619 -aglaomorpha n 1 3 @ #m %m 1 0 13174206 -aglaomorpha_meyeniana n 1 2 @ #m 1 0 13174354 -aglaonema n 1 3 @ #m %m 1 0 11781430 -aglaonema_modestum n 1 2 @ #m 1 0 11781658 -aglet n 2 2 @ #p 2 0 02684649 02684515 -agnail n 1 1 @ 1 0 05584746 -agnate n 1 2 @ + 1 0 10236663 -agnatha n 1 3 @ #m %m 1 0 01473990 -agnathan n 1 3 @ ~ #m 1 0 01474283 -agnation n 1 1 @ 1 0 13814898 -agnes_de_mille n 1 1 @ 1 0 10929886 -agnes_george_de_mille n 1 1 @ 1 0 10929886 -agnes_gonxha_bojaxhiu n 1 1 @ 1 0 11335878 -agni n 1 2 @ ; 1 0 09524263 -agnomen n 1 1 @ 1 0 06334377 -agnosia n 1 2 @ ~ 1 0 14099933 -agnostic n 2 2 @ + 2 0 09779124 09778927 -agnosticism n 2 1 @ 2 0 06222508 05980051 -agnus_dei n 2 1 @ 2 0 06883274 06456276 -agon n 1 2 @ ~ 1 0 00035697 -agonic_line n 1 1 @ 1 0 08490685 -agonidae n 1 3 @ #m %m 1 0 02647503 -agonist n 4 5 ! @ ~ + ; 4 0 10172793 09779280 05293268 02684789 -agonus n 1 3 @ #m %m 1 0 02647903 -agonus_cataphractus n 1 2 @ #m 1 0 02648035 -agony n 2 3 @ ~ + 2 2 07495551 14324274 -agony_aunt n 1 1 @ 1 0 09779461 -agony_column n 1 1 @ 1 0 06271514 -agora n 3 2 @ #p 3 0 13706415 08492461 02684962 -agoraphobia n 1 2 @ + 1 0 14381840 -agouti n 1 2 @ #m 1 0 02366002 -agra n 1 2 @ #p 1 0 08904115 -agranulocytosis n 1 2 @ + 1 0 14071896 -agranulosis n 1 1 @ 1 0 14071896 -agrapha n 1 1 @ 1 0 07154760 -agraphia n 1 1 @ 1 0 14095948 -agreeability n 1 3 @ ~ + 1 0 04640927 -agreeableness n 2 4 ! @ ~ + 2 0 04779053 04640927 -agreement n 6 5 ! @ ~ %p + 6 4 06770275 04713428 13971065 05795044 13797313 07175241 -agribusiness n 1 1 @ 1 0 01104406 -agricola n 1 1 @ 1 0 10809675 -agricultural_agent n 1 1 @ 1 1 09971385 -agricultural_laborer n 1 2 @ ~ 1 0 09779623 -agricultural_labourer n 1 2 @ ~ 1 0 09779623 -agriculturalist n 1 2 @ ~ 1 0 09779790 -agriculture n 4 5 @ ~ %p + - 4 2 01104406 00916464 08128964 08075287 -agriculture_department n 1 1 @ 1 0 08128964 -agriculture_secretary n 2 2 @ #m 2 0 10570704 00600200 -agriculturist n 1 3 @ ~ + 1 0 09779790 -agrigento n 1 2 @ #p 1 0 08811812 -agrimonia n 1 3 @ ~ #m 1 0 12622875 -agrimonia_eupatoria n 1 1 @ 1 0 12623077 -agrimonia_procera n 1 1 @ 1 0 12623211 -agrimony n 1 3 @ ~ #m 1 0 12622875 -agriocharis n 1 3 @ #m %m 1 0 01794460 -agriocharis_ocellata n 1 2 @ #m 1 0 01794651 -agrippa n 1 1 @ 1 0 10809857 -agrippina n 2 1 @ 2 0 10810215 10810046 -agrippina_the_elder n 1 1 @ 1 0 10810046 -agrippina_the_younger n 1 1 @ 1 0 10810215 -agrobacterium n 1 3 @ #m %m 1 0 01354521 -agrobacterium_tumefaciens n 1 2 @ #m 1 1 01354724 -agrobiology n 1 3 @ #p + 1 0 06066072 -agrology n 1 3 @ #p + 1 0 06066267 -agromania n 1 1 @ 1 0 09181889 -agronomist n 1 2 @ + 1 0 09780120 -agronomy n 1 3 @ %p + 1 0 06065819 -agropyron n 1 3 @ #m %m 1 0 12104943 -agropyron_cristatum n 1 1 @ 1 0 12105353 -agropyron_intermedium n 1 1 @ 1 0 12106134 -agropyron_pauciflorum n 1 1 @ 1 0 12106323 -agropyron_repens n 1 1 @ 1 0 12105578 -agropyron_smithii n 1 1 @ 1 0 12105981 -agropyron_subsecundum n 1 1 @ 1 0 12105828 -agropyron_trachycaulum n 1 1 @ 1 0 12106323 -agrostemma n 1 3 @ #m %m 1 0 11805380 -agrostemma_githago n 1 2 @ #m 1 0 11805544 -agrostis n 1 3 @ #m %m 1 0 12106540 -agrostis_alba n 1 2 @ #m 1 0 12132092 -agrostis_canina n 1 1 @ 1 0 12107002 -agrostis_nebulosa n 1 1 @ 1 0 12107191 -agrostis_palustris n 1 1 @ 1 0 12107336 -agrypnia n 1 2 @ + 1 0 01030033 -agua n 1 1 @ 1 0 01646388 -agua_toad n 1 1 @ 1 0 01646388 -aguacate n 1 2 @ #p 1 0 07764847 -ague n 3 3 @ ~ #p 3 1 14065332 14340462 06822576 -ague_grass n 1 2 @ #m 1 0 12430471 -ague_root n 1 2 @ #m 1 0 12430471 -ague_weed n 1 2 @ #m 1 0 12295796 -agueweed n 2 2 @ #m 2 0 12295796 11968931 -ahab n 1 1 @ 1 0 10810397 -ahem n 1 1 @ 1 0 07126521 -ahimsa n 1 2 @ ; 1 0 06789801 -ahmad_shah_masoud n 1 1 @ 1 0 11163342 -ahmed_salman_rushdie n 1 1 @ 1 0 11274454 -ahmed_zoki_yamani n 1 1 @ 1 0 11401947 -ahpcrc n 1 2 @ #p 1 0 02741681 -ahriman n 1 1 @ 1 0 09532101 -ahuehuete n 1 2 @ #p 1 0 11642622 -ahura n 1 2 @ ; 1 0 09524555 -ahura_mazda n 1 1 @ 1 0 09531955 -ahvenanmaa n 1 2 @ #p 1 0 08780510 -ai n 4 5 @ ~ #m #p ; 4 0 08395682 06133203 02457408 00845352 -aiai n 1 2 @ ; 1 0 08012384 -aid n 4 3 @ ~ + 4 3 05154908 01207609 13265904 00654885 -aid_station n 1 2 @ ; 1 0 03238407 -aide n 2 3 @ ~ ; 2 2 09770179 09780249 -aide-de-camp n 1 3 @ ~ ; 1 0 09770179 -aide-memoire n 1 1 @ 1 0 06506430 -aides n 1 2 @ ; 1 0 09570298 -aidoneus n 1 2 @ ; 1 0 09570298 -aids n 1 1 @ 1 0 14127782 -aigina n 1 2 @ #p 1 0 08782847 -aiglet n 2 2 @ #p 2 0 02684649 02684515 -aigret n 1 1 @ 1 0 02685082 -aigrette n 1 1 @ 1 0 02685082 -aiguilette n 1 1 @ 1 0 02684515 -aiken n 1 1 @ 1 0 10810549 -aikido n 1 1 @ 1 0 00825331 -ail n 1 3 @ ~ #p 1 0 07818277 -ailanthus n 1 3 @ ~ #m 1 0 12717072 -ailanthus_altissima n 1 2 @ #m 1 0 12717224 -ailanthus_silkworm n 1 2 @ #m 1 0 02303777 -aileron n 1 2 @ #p 1 0 02685253 -ailey n 1 1 @ 1 0 10810671 -ailment n 1 3 @ ~ + 1 1 14055408 -ailurophobia n 1 1 @ 1 0 14385002 -ailuropoda n 1 3 @ #m %m 1 0 02510240 -ailuropoda_melanoleuca n 1 2 @ #m 1 0 02510455 -ailuropodidae n 1 2 @ #m 1 0 02510065 -ailurus n 1 3 @ #m %m 1 0 02509694 -ailurus_fulgens n 1 2 @ #m 1 0 02509815 -aim n 4 3 @ ~ + 4 3 05982152 05981230 00815644 08680888 -aimee_semple_mcpherson n 1 1 @ 1 0 11169943 -aimlessness n 1 2 @ + 1 1 05174326 -aioli n 1 1 @ 1 0 07834774 -aioli_sauce n 1 1 @ 1 0 07834774 -air n 9 9 @ ~ #s #p %s %p + ; - 9 5 14841267 08653314 04727214 11431754 08499057 14842703 07028373 06255354 00300441 -air-intake n 1 2 @ #p 1 0 02689961 -air-raid_shelter n 1 1 @ 1 0 02868638 -air-sleeve n 1 1 @ 1 0 07257582 -air-to-air_missile n 1 1 @ 1 0 02693413 -air-to-ground_missile n 1 1 @ 1 0 02693540 -air-to-surface_missile n 1 1 @ 1 1 02693540 -air_alert n 3 1 @ 3 0 15297859 14031922 06803023 -air_attache n 1 2 @ ; 1 0 09780395 -air_attack n 1 1 @ 1 0 00974111 -air_bag n 1 2 @ #p 1 0 02685365 -air_base n 1 2 @ ; 1 0 02685585 -air_bladder n 1 1 @ 1 0 02467581 -air_bubble n 1 1 @ 1 0 09191635 -air_castle n 1 1 @ 1 0 05769471 -air_cell n 1 2 @ #p 1 0 05528395 -air_cleaner n 1 3 @ ~ #p 1 0 02688273 -air_combat_command n 1 2 @ #p 1 0 08196622 -air_compressor n 1 1 @ 1 0 02686227 -air_conditioner n 1 2 @ + 1 0 02686379 -air_conditioning n 1 2 @ + 1 0 02686379 -air_corps n 1 1 @ 1 1 08194815 -air_cover n 1 2 @ ; 1 0 00818170 -air_crew n 1 3 @ ~ %m 1 0 08273406 -air_current n 1 3 @ ~ %s 1 0 11525955 -air_cushion n 3 1 @ 3 0 14842560 02687682 02687539 -air_defense n 1 2 @ ~ 1 1 00960192 -air_division n 1 2 @ %p 1 0 08219330 -air_duct n 1 3 @ ~ %p 1 0 02690941 -air_embolism n 2 1 @ 2 0 14101317 14068344 -air_filter n 1 3 @ ~ #p 1 0 02688273 -air_flow n 1 1 @ 1 0 07406601 -air_force n 2 6 @ ~ #p %m %p ; 2 1 08196024 08196230 -air_force_academy n 1 3 @ ~ ; 1 0 08279800 -air_force_intelligence_surveillance_and_reconnaissance n 1 3 @ #m #p 1 0 08197386 -air_force_isr n 1 3 @ #m #p 1 0 08197386 -air_force_officer n 1 1 @ 1 0 09780828 -air_force_research_laboratory n 1 2 @ #p 1 0 02688895 -air_force_space_command n 1 2 @ #p 1 0 08196892 -air_gas n 1 1 @ 1 0 14862481 -air_group n 1 1 @ 1 0 08219628 -air_gun n 1 2 @ ~ 1 0 02689274 -air_hammer n 1 1 @ 1 0 02689434 -air_hole n 2 1 @ 2 0 11423028 02689556 -air_horn n 2 2 @ #p 2 0 02689748 02689648 -air_hose n 1 1 @ 1 0 02690270 -air_hostess n 1 1 @ 1 0 10655875 -air_jacket n 1 1 @ 1 0 03703945 -air_lane n 1 2 @ ~ 1 0 08492546 -air_letter n 1 1 @ 1 0 06626060 -air_lock n 1 1 @ 1 0 02690583 -air_mail n 1 2 ! @ 1 0 06623100 -air_marshal n 1 2 @ ; 1 0 09781171 -air_mass n 1 2 @ ~ 1 0 14520518 -air_mattress n 1 2 @ ~ 1 1 02690809 -air_medal n 1 1 @ 1 0 06708007 -air_mile n 1 1 @ 1 0 13660337 -air_national_guard n 1 2 @ #p 1 0 08197149 -air_passage n 1 3 @ ~ %p 1 0 02690941 -air_plant n 1 2 @ ~ 1 0 13122985 -air_pocket n 1 1 @ 1 0 11423028 -air_pollution n 1 2 @ ~ 1 0 14517412 -air_potato n 1 1 @ 1 0 12088768 -air_power n 1 2 @ ; 1 0 08433727 -air_pressure n 1 2 @ ~ 1 0 11429458 -air_pump n 1 2 @ ~ 1 0 02692513 -air_raid n 1 1 @ 1 0 00974111 -air_reconnaissance n 1 1 @ 1 0 00985356 -air_rifle n 1 2 @ ~ 1 0 02689274 -air_sac n 3 2 @ #p 3 0 05528395 02467884 02467746 -air_search_radar n 1 1 @ 1 0 02692680 -air_shaft n 1 1 @ 1 0 02692787 -air_sickness n 1 2 @ + 1 0 14203605 -air_sock n 1 1 @ 1 0 07257582 -air_space n 1 2 @ #p 1 0 08555569 -air_spring n 1 1 @ 1 0 02687682 -air_station n 1 2 @ ; 1 0 02685585 -air_terminal n 1 3 @ #p %p 1 0 02693246 -air_thermometer n 1 1 @ 1 0 03426285 -air_traffic n 1 1 @ 1 0 08425556 -air_transport n 1 1 @ 1 0 01105635 -air_transportation n 1 1 @ 1 0 01105635 -air_transportation_system n 1 2 @ ~ 1 0 02693709 -air_travel n 1 3 @ ~ - 1 0 00300441 -air_traveler n 1 1 @ 1 0 09781398 -air_traveller n 1 1 @ 1 0 09781398 -air_unit n 1 4 @ ~ #m ; 1 0 08195797 -air_wave n 1 1 @ 1 1 07347373 -air_well n 1 1 @ 1 0 02692787 -airborne_patrol n 1 1 @ 1 0 00825005 -airborne_transmission n 1 1 @ 1 0 09191427 -airbrake n 2 2 @ #p 2 0 02685855 02685701 -airbrush n 1 2 @ + 1 0 02685995 -airburst n 1 1 @ 1 0 07408086 -airbus n 1 1 @ 1 0 02686121 -aircraft n 1 5 @ ~ #m %p - 1 1 02686568 -aircraft_carrier n 1 2 @ %p 1 1 02687172 -aircraft_engine n 1 2 @ #p 1 0 02687423 -aircraft_landing n 1 2 @ ~ 1 0 00305153 -aircraftman n 1 1 @ 1 0 09780547 -aircraftsman n 1 1 @ 1 0 09780547 -aircrew n 1 3 @ ~ %m 1 0 08273406 -aircrewman n 1 3 @ ~ #m 1 0 09780676 -airdock n 1 2 @ #p 1 0 02687821 -airdrome n 1 3 @ ~ %p 1 0 02692232 -airdrop n 1 1 @ 1 0 00317709 -aire n 1 2 @ #p 1 0 09191707 -aire_river n 1 2 @ #p 1 0 09191707 -airedale n 1 1 @ 1 0 02096051 -airedale_terrier n 1 1 @ 1 0 02096051 -airfare n 1 1 @ 1 0 13308336 -airfield n 1 4 @ ~ #p %p 1 0 02687992 -airflow n 1 1 @ 1 1 07406601 -airfoil n 1 3 @ ~ %p 1 0 02688443 -airforce n 1 4 @ ~ %m ; 1 0 08196024 -airframe n 1 1 @ 1 1 02689144 -airgun n 1 2 @ ~ 1 0 02689274 -airhead n 2 2 @ ; 2 0 09780984 08689357 -airiness n 3 2 @ + 3 0 05105745 05028963 04632866 -airing n 3 2 @ ~ 3 0 06253140 00312266 00266645 -airing_cupboard n 1 1 @ 1 0 02689819 -airlift n 1 3 @ ~ + 1 0 00316594 -airline n 2 3 @ %p + 2 0 02690270 02690081 -airline_business n 1 2 @ %p 1 0 02690081 -airliner n 1 4 @ ~ %p + 1 0 02690373 -airlock n 1 1 @ 1 0 02690583 -airmail n 2 2 @ + 2 0 06622993 06264812 -airmail_letter n 1 1 @ 1 0 06626060 -airmailer n 1 2 @ + 1 0 02690715 -airman n 1 3 @ ~ + 1 0 09826204 -airmanship n 1 2 @ + 1 0 05635188 -airplane n 1 4 @ ~ %p - 1 1 02691156 -airplane_landing n 1 2 @ ~ 1 0 00305153 -airplane_maneuver n 1 2 @ ~ 1 0 00170844 -airplane_mechanics n 1 1 @ 1 1 00607075 -airplane_pilot n 1 3 @ ~ ; 1 0 10433164 -airplane_propeller n 1 2 @ #p 1 0 02692086 -airplane_ticket n 1 1 @ 1 0 06519253 -airport n 1 3 @ ~ %p 1 1 02692232 -airport_terminal n 1 3 @ #p %p 1 0 02693246 -airpost n 1 1 @ 1 0 06264812 -airs n 1 1 @ 1 1 04788011 -airscrew n 1 2 @ #p 1 0 02692086 -airship n 1 3 @ ~ %p 1 0 02692877 -airsickness n 1 2 @ + 1 0 14203605 -airspace n 2 2 @ #p 2 0 08555569 08502317 -airspeed n 1 1 @ 1 1 15283433 -airstream n 2 2 @ ~ 2 0 11423356 11423197 -airstrip n 1 3 @ ~ %p 1 0 02693070 -airwave n 1 1 @ 1 0 06255354 -airway n 4 4 @ ~ #p %p 4 1 02690941 08492546 05510173 02690081 -airwoman n 1 1 @ 1 0 09826605 -airworthiness n 1 3 @ = + 1 0 14547188 -aisle n 3 1 @ 3 2 02694182 02693860 02694045 -aitchbone n 1 1 @ 1 0 07663118 -aix n 1 3 @ #m %m 1 0 01851996 -aix-la-chapelle n 1 2 @ #p 1 0 08769439 -aix_galericulata n 1 2 @ #m 1 0 01852400 -aix_sponsa n 1 3 @ ~ #m 1 0 01852142 -aizoaceae n 1 3 @ #m %m 1 0 11818945 -ajaia n 1 3 @ #m %m 1 0 02007161 -ajaia_ajaja n 1 2 @ #m 1 0 02007284 -ajax n 1 1 @ 1 0 09589323 -ajuga n 1 3 @ #m %m 1 0 12840640 -ajuga_chamaepitys n 1 1 @ 1 0 12841472 -ajuga_genevensis n 1 1 @ 1 0 12841193 -ajuga_pyramidalis n 1 1 @ 1 0 12841354 -ajuga_reptans n 1 1 @ 1 0 12841007 -ak n 1 3 @ #p %p 1 0 09055015 -akaba n 1 2 @ #p 1 0 08927678 -akan n 1 1 @ 1 0 06997486 -akaryocyte n 1 1 @ 1 0 05449538 -akaryote n 1 1 @ 1 0 05449538 -akee n 2 4 @ #m #p %p 2 0 12742290 07762740 -akee_tree n 1 3 @ #m %p 1 0 12742290 -aken n 1 2 @ #p 1 0 08769439 -akeridae n 1 3 @ #m %m 1 0 01951721 -akha n 1 1 @ 1 0 06932803 -akhbari n 1 2 @ ; 1 0 08474120 -akhenaten n 1 1 @ 1 0 10810923 -akhenaton n 1 1 @ 1 0 10810923 -akinesia n 1 1 @ 1 0 14085474 -akinesis n 1 1 @ 1 0 14085474 -akinetic_epilepsy n 1 1 @ 1 0 14086528 -akira_kurosawa n 1 1 @ 1 0 11112907 -akka n 1 2 @ #p 1 0 08793310 -akkadian n 1 3 @ ~ ; 1 0 06987525 -akko n 1 2 @ #p 1 0 08793310 -akmola n 1 1 @ 1 0 09020119 -akron n 1 2 @ #p 1 0 09130452 -aksa_martyrs_brigades n 1 2 @ ; 1 0 08010942 -aku n 1 1 @ 1 0 06997368 -akvavit n 1 2 @ %s 1 0 07902799 -akwa'ala n 3 2 @ ; 3 0 09646112 08488250 06922389 -al n 2 7 @ ~ #m #s #p %p - 2 0 14627820 09053185 -al-aksa_martyrs_brigades n 1 2 @ ; 1 0 08010942 -al-asifa n 1 3 @ #m ; 1 0 08011523 -al-fatah n 1 3 @ #m ; 1 0 08011523 -al-gama'a_al-islamiyya n 1 2 @ ; 1 0 08012028 -al-hakim n 1 1 @ 1 0 10813813 -al-hasan_ibn_al-haytham n 1 1 @ 1 0 10813986 -al-haytham n 1 1 @ 1 0 10813986 -al-hudaydah n 1 2 @ #p 1 0 09165146 -al-iraq n 1 6 @ #m #p %m %p - 1 0 08913434 -al-itihaad_al-islamiya n 1 2 @ ; 1 0 08012384 -al-jama'a_al-islamiyyah_al-muqatilah_bi-libya n 1 2 @ ; 1 0 08032594 -al-jihad n 1 2 @ ; 1 0 08012765 -al-ma'unah n 1 2 @ ; 1 0 08013176 -al-magrib n 1 5 @ #m #p %m %p 1 0 08969291 -al-muhajiroun n 1 2 @ ; 1 0 08013453 -al-mukalla n 1 2 @ #p 1 0 09165294 -al-qa'ida n 1 2 @ ; 1 0 08013845 -al-qaeda n 1 2 @ ; 1 0 08013845 -al-qaida n 1 2 @ ; 1 0 08013845 -al-qur'an n 1 2 @ %p 1 0 06461609 -al-rashid_trust n 1 2 @ ; 1 0 08014202 -al-tawhid n 1 2 @ ; 1 0 08014860 -al-ummah n 1 2 @ ; 1 0 08015116 -al_alamayn n 1 3 @ #p ; 1 0 01278232 -al_aqabah n 1 2 @ #p 1 0 08927678 -al_capone n 1 1 @ 1 0 10881784 -al_faran n 1 2 @ ; 1 0 08022972 -al_gore n 1 1 @ 1 0 11008313 -al_hirschfeld n 1 1 @ 1 0 11052043 -al_itihaad_al_islamiya n 1 2 @ ; 1 0 08012384 -al_jolson n 1 1 @ 1 0 11089669 -al_ladhiqiyah n 1 2 @ #p 1 0 09034402 -al_madinah n 1 2 @ #p 1 0 08994339 -al_nathir n 1 2 @ ; 1 0 08013653 -al_qahira n 1 3 @ #p %m 1 0 08898633 -al_qanoon n 1 2 @ ; 1 0 08030711 -al_sunna_wal_jamma n 1 2 @ ; 1 0 08014615 -al_tawhid n 1 2 @ ; 1 0 08014860 -ala n 2 3 @ #p + 2 0 05309965 02151940 -alabama n 4 5 @ #m #p %p - 4 1 09053185 09646220 09191875 06912248 -alabama_lip_fern n 1 1 @ 1 0 13208965 -alabama_river n 1 2 @ #p 1 0 09191875 -alabaman n 1 1 @ 1 1 09740856 -alabamian n 1 1 @ 1 1 09740856 -alabaster n 3 1 @ 3 1 14665351 14665469 04961062 -alacrity n 1 2 @ + 1 0 04632963 -aladdin n 1 1 @ 1 0 09589444 -aladdin's_lamp n 1 2 @ ; 1 0 02694279 -alalia n 1 1 @ 1 0 14085592 -alamo n 1 2 @ ; 1 0 01269360 -alan_alexander_milne n 1 1 @ 1 0 11180812 -alan_bartlett_shepard_jr. n 1 1 @ 1 0 11297263 -alan_hodgkin n 1 1 @ 1 0 11053559 -alan_jay_lerner n 1 1 @ 1 0 11129130 -alan_lloyd_hodgkin n 1 1 @ 1 0 11053559 -alan_mathison_turing n 1 1 @ 1 0 11352498 -alan_paton n 1 1 @ 1 0 11225350 -alan_seeger n 1 1 @ 1 0 11290864 -alan_shepard n 1 1 @ 1 0 11297263 -alan_stewart_paton n 1 1 @ 1 0 11225350 -alan_turing n 1 1 @ 1 0 11352498 -aland_islands n 1 2 @ #p 1 0 08780510 -alanine n 1 1 @ 1 0 14602490 -alar n 1 2 @ ; 1 0 14708531 -alaric n 1 1 @ 1 0 10811118 -alarm n 4 4 @ ~ = + 4 2 07519773 02694426 06803157 02694662 -alarm_bell n 1 1 @ 1 0 07265886 -alarm_clock n 1 1 @ 1 0 02694662 -alarm_system n 1 2 @ ~ 1 0 02694426 -alarmism n 1 2 @ + 1 0 07224684 -alarmist n 1 3 @ ~ + 1 0 09781504 -alarum n 1 2 @ ~ 1 0 06803157 -alaska n 1 4 @ #p %p + 1 1 09055015 -alaska_cedar n 1 2 @ #m 1 0 11635830 -alaska_cod n 1 1 @ 1 0 02522866 -alaska_crab n 2 4 @ #m #p %p 2 0 07788435 01981276 -alaska_fur_seal n 1 1 @ 1 0 02077787 -alaska_king_crab n 2 4 @ #m #p %p 2 0 07788435 01981276 -alaska_native n 1 1 @ 1 0 09741074 -alaska_peninsula n 1 2 @ #p 1 0 09192122 -alaska_range n 1 3 @ #p %p 1 0 09192280 -alaska_rein_orchid n 1 1 @ 1 0 12068615 -alaska_standard_time n 1 1 @ 1 0 15132865 -alaskan n 1 3 @ ~ + 1 0 09740954 -alaskan_brown_bear n 1 1 @ 1 0 02132788 -alaskan_king_crab n 2 4 @ #m #p %p 2 0 07788435 01981276 -alaskan_malamute n 1 1 @ 1 0 02110063 -alaskan_native n 1 1 @ 1 0 09741074 -alaskan_pipeline n 1 2 @ #p 1 0 02694776 -alastrim n 1 1 @ 1 0 14124688 -alauda n 1 3 @ #m %m 1 0 01527774 -alauda_arvensis n 1 2 @ #m 1 0 01527917 -alaudidae n 1 3 @ #m %m 1 0 01527480 -alb n 1 1 @ 1 0 02694966 -albacore n 2 3 @ #p %p 2 0 07780874 02627037 -alban_berg n 1 1 @ 1 0 10846089 -albania n 1 5 @ #p %m %p + 1 0 08704822 -albanian n 2 4 @ ~ #m + 2 0 09689958 06942252 -albanian_capital n 1 2 @ #p 1 0 08705091 -albanian_monetary_unit n 1 2 @ ~ 1 0 13684503 -albany n 2 2 @ #p 2 1 09118313 09076533 -albatrellus n 1 2 @ #m 1 0 13050555 -albatrellus_dispansus n 1 2 @ #m 1 0 13050705 -albatrellus_ovinus n 1 2 @ #m 1 0 13050940 -albatross n 2 3 @ ~ #m 2 0 05689645 02058221 -albedo n 1 1 @ 1 0 13820432 -albee n 1 1 @ 1 0 10811228 -alben_barkley n 1 1 @ 1 0 10834690 -alben_william_barkley n 1 1 @ 1 0 10834690 -albers n 1 1 @ 1 0 10811352 -albers-schonberg_disease n 1 1 @ 1 0 14210119 -albert n 1 1 @ 1 0 10811540 -albert_abraham_michelson n 1 1 @ 1 0 11178393 -albert_bruce_sabin n 1 1 @ 1 0 11277279 -albert_camus n 1 1 @ 1 0 10881092 -albert_edward n 1 2 @ #m 1 0 10951459 -albert_einstein n 1 1 @ 1 0 10954498 -albert_francis_charles_augustus_emmanuel n 1 1 @ 1 0 10811540 -albert_gore_jr. n 1 1 @ 1 0 11008313 -albert_michelson n 1 1 @ 1 0 11178393 -albert_sabin n 1 1 @ 1 0 11277279 -albert_schweitzer n 1 1 @ 1 0 11287964 -albert_speer n 1 1 @ 1 0 11309958 -albert_szent-gyorgyi n 1 1 @ 1 0 11328085 -albert_von_szent-gyorgyi n 1 1 @ 1 0 11328085 -alberta n 1 3 @ #p %p 1 0 08822202 -alberti n 1 1 @ 1 0 10811708 -alberto_giacometti n 1 1 @ 1 0 10997553 -albigenses n 1 2 @ + 1 0 08085159 -albigensianism n 1 1 @ 1 0 06227708 -albinism n 1 2 @ + 1 0 14152279 -albino n 1 2 @ + 1 0 09781650 -albino_luciano n 1 1 @ 1 0 11087612 -albion n 1 1 @ 1 0 08872936 -albite n 1 2 @ + 1 0 14865533 -albizia n 1 3 @ ~ #m 1 0 11759224 -albizia_julibrissin n 1 1 @ 1 0 11759404 -albizia_lebbeck n 1 1 @ 1 0 11759609 -albizia_saman n 1 1 @ 1 0 11759853 -albizzia n 1 3 @ ~ #m 1 0 11759224 -albizzia_julibrissin n 1 1 @ 1 0 11759404 -albizzia_lebbeck n 1 1 @ 1 0 11759609 -alborg n 1 2 @ #p 1 0 08762243 -albrecht_durer n 1 1 @ 1 0 10945977 -albrecht_eusebius_wenzel_von_wallenstein n 1 1 @ 1 0 11372054 -albright's_disease n 1 1 @ 1 0 14366486 -albuca n 1 2 @ #m 1 0 12429770 -albuginaceae n 1 3 @ #m %m 1 0 12981595 -albuginea n 1 2 @ ~ 1 0 05606528 -albugo n 1 3 @ #m %m 1 0 12981791 -albula n 1 3 @ #m %m 1 0 02542283 -albula_vulpes n 1 2 @ #m 1 0 02542432 -albulidae n 1 3 @ #m %m 1 0 02542162 -album n 2 2 @ ~ 2 2 06591815 02695079 -albumen n 2 3 @ ~ #p 2 0 14731509 07841037 -albumin n 1 3 @ ~ + 1 1 14731509 -albuminoid n 1 2 @ ~ 1 0 15026716 -albuminuria n 1 2 @ + 1 0 14265958 -albuquerque n 1 2 @ #p 1 0 09115315 -albuterol n 1 1 @ 1 0 02695321 -alca n 1 3 @ #m %m 1 0 02045705 -alca_torda n 1 2 @ #m 1 0 02045864 -alcaeus n 1 1 @ 1 0 10811900 -alcahest n 1 1 @ 1 0 15048463 -alcaic n 1 1 @ 1 0 06378104 -alcaic_verse n 1 1 @ 1 0 06378104 -alcalde n 1 1 @ 1 0 09781804 -alcapton n 1 1 @ 1 0 14585048 -alcaptonuria n 1 1 @ 1 0 14084709 -alcazar n 1 1 @ 1 0 02695627 -alcea n 1 3 @ #m %m 1 0 12173407 -alcea_rosea n 1 2 @ #m 1 0 12173912 -alcedinidae n 1 3 @ #m %m 1 0 01826998 -alcedo n 1 3 @ #m %m 1 0 01827658 -alcedo_atthis n 1 2 @ #m 1 0 01827793 -alcelaphus n 1 3 @ #m %m 1 0 02421962 -alces n 1 3 @ #m %m 1 0 02432867 -alces_alces n 1 2 @ #m 1 0 02432983 -alchemist n 1 2 @ + 1 0 09781921 -alchemy n 2 3 @ + - 2 0 13840958 05778749 -alcibiades n 1 1 @ 1 0 10812047 -alcidae n 1 3 @ #m %m 1 0 02045024 -alcides n 1 2 @ ; 1 0 09578005 -alcohol n 2 3 @ ~ + 2 1 07884567 14708720 -alcohol-in-glass_thermometer n 1 1 @ 1 0 02695762 -alcohol_abuse n 1 1 @ 1 0 00948064 -alcohol_addiction n 1 1 @ 1 0 14064644 -alcohol_amnestic_disorder n 1 1 @ 1 0 14395597 -alcohol_group n 1 1 @ 1 0 14595076 -alcohol_radical n 1 1 @ 1 0 14595076 -alcohol_thermometer n 1 1 @ 1 0 02695762 -alcoholic n 1 2 @ + 1 0 09782167 -alcoholic_abuse n 1 1 @ 1 0 00948064 -alcoholic_beverage n 1 2 @ ~ 1 0 07884567 -alcoholic_dementia n 1 1 @ 1 0 14395597 -alcoholic_drink n 1 2 @ ~ 1 0 07884567 -alcoholics_anonymous n 1 1 @ 1 0 08010191 -alcoholism n 2 1 @ 2 0 14064644 09181993 -alcoholism_abuse n 1 1 @ 1 0 00948064 -alcott n 1 1 @ 1 0 10812225 -alcove n 1 2 @ ~ 1 0 02696048 -alcyonacea n 1 2 @ #m 1 0 01915290 -alcyonaria n 1 3 @ #m %m 1 0 01915093 -alcyone n 1 2 @ ; 1 0 09486639 -aldactone n 1 2 @ ; 1 0 14754192 -aldebaran n 1 2 @ #m 1 0 09192462 -aldehyde n 1 2 @ ~ 1 0 14584765 -aldehyde-alcohol n 1 2 @ ~ 1 0 14711799 -aldehyde_group n 1 1 @ 1 0 14595176 -aldehyde_radical n 1 1 @ 1 0 14595176 -alder n 2 5 @ ~ #m #s %s 2 0 12284665 12284262 -alder-leaved_serviceberry n 1 1 @ 1 0 12623818 -alder_blight n 1 2 @ ; 1 0 14215908 -alder_buckthorn n 1 1 @ 1 0 13142380 -alder_dogwood n 1 1 @ 1 0 13142380 -alder_fly n 1 2 @ #m 1 0 02266864 -alder_tree n 1 4 @ ~ #m %s 1 0 12284262 -alderfly n 1 2 @ #m 1 0 02266864 -alderleaf_juneberry n 1 1 @ 1 0 12623818 -alderman n 1 2 @ + 1 1 09782397 -aldohexose n 1 2 @ ~ 1 0 14710501 -aldol n 1 2 @ ~ 1 0 14711799 -aldol_reaction n 1 1 @ 1 0 13429194 -aldomet n 1 2 @ ; 1 0 03755991 -aldose n 1 2 @ ~ 1 0 14710662 -aldosterone n 1 1 @ 1 0 14752511 -aldosteronism n 1 1 @ 1 0 14117317 -aldous_huxley n 1 1 @ 1 0 11069746 -aldous_leonard_huxley n 1 1 @ 1 0 11069746 -aldrovanda n 1 3 @ #m %m 1 0 12783173 -aldrovanda_vesiculosa n 1 2 @ #m 1 0 12783316 -ale n 1 2 @ ~ 1 0 07889510 -ale_drinker n 1 1 @ 1 0 09846894 -aleatory_contract n 1 1 @ 1 0 06522119 -alec_guinness n 1 1 @ 1 0 11019269 -alecost n 1 3 @ #m %p 1 0 12021499 -alectis n 1 3 @ #m %m 1 0 02577823 -alectis_ciliaris n 1 2 @ #m 1 0 02577952 -alecto n 1 1 @ 1 0 09506598 -alectoria n 1 3 @ #m %m 1 0 12990407 -alectoris n 1 3 @ #m %m 1 0 01807988 -alectoris_graeca n 1 2 @ #m 1 0 01808291 -alectoris_ruffa n 1 2 @ #m 1 0 01808140 -alectura n 1 3 @ #m %m 1 0 01801753 -alectura_lathami n 1 2 @ #m 1 0 01801876 -alehoof n 1 2 @ #m 1 0 12847374 -alehouse n 1 1 @ 1 0 02696165 -aleksandr_aleksandrovich_blok n 1 1 @ 1 0 10853628 -aleksandr_borodin n 1 1 @ 1 0 10858333 -aleksandr_feodorovich_kerensky n 1 1 @ 1 0 11102144 -aleksandr_i._solzhenitsyn n 1 1 @ 1 0 11308120 -aleksandr_mikjailovich_prokhorov n 1 1 @ 1 0 11246718 -aleksandr_nikolayevich_scriabin n 1 1 @ 1 0 11289830 -aleksandr_pavlovich n 1 2 @ ; 1 0 10812550 -aleksandr_porfirevich_borodin n 1 1 @ 1 0 10858333 -aleksandr_prokhorov n 1 1 @ 1 0 11246718 -aleksandr_scriabin n 1 1 @ 1 0 11289830 -aleksandr_sergeyevich_pushkin n 1 1 @ 1 0 11249191 -aleksandr_solzhenitsyn n 1 1 @ 1 0 11308120 -aleksey_maksimovich_peshkov n 1 1 @ 1 0 11008870 -aleksey_maximovich_peshkov n 1 1 @ 1 0 11008870 -alembic n 1 1 @ 1 0 02696246 -alendronate n 1 1 @ 1 0 02696384 -alep n 1 2 @ #p 1 0 09034286 -aleph n 1 2 @ #m 1 0 06836714 -aleph-nought n 1 1 @ 1 0 13753894 -aleph-null n 1 1 @ 1 0 13753894 -aleph-zero n 1 1 @ 1 0 13753894 -alepisaurus n 1 3 @ #m %m 1 0 02544086 -aleppo n 1 2 @ #p 1 0 09034286 -aleppo_boil n 1 1 @ 1 0 14181187 -aleppo_grass n 1 1 @ 1 0 12138905 -alert n 3 3 @ ~ + 3 0 14031660 07224774 06803157 -alerting n 2 2 @ ~ 2 1 14036043 07224774 -alertness n 3 3 @ ~ + 3 1 05705722 14036043 04664628 -alessandro_di_mariano_dei_filipepi n 1 1 @ 1 0 10859012 -alessandro_farnese n 1 1 @ 1 0 11226126 -alessandro_manzoni n 1 1 @ 1 0 11155331 -alethic_logic n 1 1 @ 1 0 06166046 -aletris n 1 3 @ #m %m 1 0 12429942 -aletris_aurea n 1 2 @ #m 1 0 12430675 -aletris_farinosa n 1 2 @ #m 1 0 12430471 -aletta_jacobs n 1 1 @ 1 0 11077762 -aleuria_aurantia n 1 1 @ 1 0 13029760 -aleurites n 1 3 @ #m %m 1 0 12927354 -aleurites_fordii n 1 2 @ #m 1 0 12927758 -aleurites_moluccana n 1 3 @ #m %p 1 0 12927494 -aleurone n 1 2 @ + 1 0 14729953 -aleut n 3 2 @ ; 3 0 09782589 08488411 06918312 -aleutian n 1 1 @ 1 0 09782589 -aleutian_islands n 1 3 @ #p - 1 0 08835675 -aleutians n 1 3 @ #p - 1 0 08835675 -aleve n 1 3 @ %s ; 1 0 03808144 -alewife n 2 4 @ #m #p %p 2 0 07785631 02531114 -alex_boncayao_brigade n 1 2 @ ; 1 0 08011266 -alex_haley n 1 1 @ 1 0 11024033 -alexander n 2 3 @ #m + 2 0 12945828 10812360 -alexander_alexandrovich_blok n 1 1 @ 1 0 10853628 -alexander_archipelago n 1 3 @ #p %p 1 0 09057021 -alexander_bell n 1 1 @ 1 0 10842213 -alexander_calder n 1 1 @ 1 0 10879009 -alexander_fleming n 1 1 @ 1 0 10972825 -alexander_graham_bell n 1 1 @ 1 0 10842213 -alexander_hamilton n 1 1 @ 1 0 11025668 -alexander_i n 1 2 @ ; 1 0 10812550 -alexander_ii n 1 2 @ ; 1 0 10812800 -alexander_iii n 1 2 @ ; 1 0 10813049 -alexander_isayevich_solzhenitsyn n 1 1 @ 1 0 11308120 -alexander_melville_bell n 1 1 @ 1 0 10842575 -alexander_pope n 1 1 @ 1 0 11242743 -alexander_pushkin n 1 1 @ 1 0 11249191 -alexander_selcraig n 1 1 @ 1 0 11291824 -alexander_selkirk n 1 1 @ 1 0 11291824 -alexander_the_great n 1 1 @ 1 1 10812360 -alexander_the_liberator n 1 2 @ ; 1 0 10812800 -alexander_vi n 1 1 @ 1 0 10813204 -alexander_wilson n 1 1 @ 1 0 11392082 -alexander_woollcott n 1 1 @ 1 0 11396943 -alexanders n 1 2 @ #m 1 0 12945828 -alexandre_dumas n 1 1 @ 1 0 10944902 -alexandre_emile_jean_yersin n 1 1 @ 1 0 11402801 -alexandre_gustave_eiffel n 1 1 @ 1 0 10954039 -alexandre_yersin n 1 1 @ 1 0 11402801 -alexandria n 2 2 @ #p 2 0 09091285 08898187 -alexandria_senna n 1 1 @ 1 0 12499979 -alexandrian n 1 1 @ 1 0 09782730 -alexandrian_laurel n 1 2 @ #m 1 0 12365462 -alexandrian_senna n 1 1 @ 1 0 12499979 -alexandrine n 1 2 @ ; 1 0 06348373 -alexandrite n 1 1 @ 1 0 14715679 -alexia n 1 1 @ 1 0 14099050 -alexic n 1 2 @ + 1 0 09782855 -alexis_carrel n 1 1 @ 1 0 10883688 -alexis_charles_henri_maurice_de_tocqueville n 1 1 @ 1 0 11344337 -alexis_de_tocqueville n 1 1 @ 1 0 11344337 -aleyrodes n 1 3 @ #m %m 1 0 02246487 -aleyrodidae n 1 3 @ #m %m 1 0 02246284 -alfalfa n 2 3 @ #p %p 2 0 12549420 07801779 -alfalfa_sprout n 1 1 @ 1 0 07719756 -alfilaria n 1 1 @ 1 0 12688903 -alfileria n 1 1 @ 1 0 12688903 -alfonso_borgia n 1 1 @ 1 0 10880024 -alfred n 1 1 @ 1 0 10813374 -alfred_alistair_cooke n 1 2 @ ; 1 0 10908756 -alfred_bernhard_nobel n 1 1 @ 1 0 11208688 -alfred_binet n 1 1 @ 1 0 10851282 -alfred_charles_kinsey n 1 1 @ 1 0 11105609 -alfred_charles_william_harmsworth n 1 1 @ 1 0 11029298 -alfred_damon_runyon n 1 1 @ 1 0 11273907 -alfred_de_musset n 1 1 @ 1 0 11198094 -alfred_dreyfus n 1 1 @ 1 0 10943405 -alfred_edward_housman n 1 1 @ 1 0 11061734 -alfred_edward_woodley_mason n 1 1 @ 1 0 11162915 -alfred_eisenstaedt n 1 1 @ 1 0 10955282 -alfred_habdank_skarbek_korzybski n 1 1 @ 1 0 11109563 -alfred_hawthorne n 1 1 @ 1 0 11049938 -alfred_hitchcock n 1 1 @ 1 0 11052299 -alfred_joseph_hitchcock n 1 1 @ 1 0 11052299 -alfred_kastler n 1 1 @ 1 0 11097525 -alfred_korzybski n 1 1 @ 1 0 11109563 -alfred_kroeber n 1 1 @ 1 0 11110917 -alfred_krupp n 1 1 @ 1 0 11111845 -alfred_lord_tennyson n 1 1 @ 1 0 11335330 -alfred_lothar_wegener n 1 1 @ 1 0 11379536 -alfred_louis_kroeber n 1 1 @ 1 0 11110917 -alfred_lunt n 1 1 @ 1 0 11145199 -alfred_nobel n 1 1 @ 1 0 11208688 -alfred_north_whitehead n 1 1 @ 1 0 11384566 -alfred_noyes n 1 1 @ 1 0 11210291 -alfred_russel_wallace n 1 1 @ 1 0 11371443 -alfred_stieglitz n 1 1 @ 1 0 11318348 -alfred_tennyson n 1 1 @ 1 0 11335330 -alfred_thayer_mahan n 1 1 @ 1 0 11149483 -alfred_the_great n 1 1 @ 1 0 10813374 -alga n 1 3 @ ~ + 1 0 01397114 -algae n 1 2 @ ~ 1 1 01397114 -algarobilla n 1 2 @ #p 1 0 11766046 -algarroba n 4 5 @ #m #s #p %p 4 0 12493426 12493208 11766046 11765859 -algarroba_bean n 1 3 @ #s #p 1 0 12493426 -algarrobilla n 1 2 @ #p 1 0 11766046 -algebra n 1 5 @ ~ + ; - 1 0 06012726 -algebraic_language n 1 2 @ ~ 1 0 06898794 -algebraic_number n 1 1 @ 1 0 13730902 -algebraist n 1 2 @ + 1 0 09784043 -alger n 1 1 @ 1 0 10813527 -algeria n 1 7 @ #m #p %m %p + - 1 0 08705397 -algerian n 1 3 @ #m + 1 0 09690083 -algerian_capital n 1 2 @ #p 1 0 08706058 -algerian_centime n 1 2 @ #p 1 0 13668632 -algerian_dinar n 1 2 @ %p 1 0 13668491 -algerian_monetary_unit n 1 2 @ ~ 1 0 13668380 -algerie n 1 6 @ #m #p %m %p - 1 0 08705397 -algeripithecus n 1 3 @ #m %m 1 0 02479482 -algeripithecus_minutus n 1 2 @ #m 1 0 02479634 -algernon_charles_swinburne n 1 1 @ 1 0 11327163 -algidity n 1 2 @ + 1 0 14204441 -algiers n 1 2 @ #p 1 0 08706058 -algin n 1 1 @ 1 0 14900454 -alginic_acid n 1 1 @ 1 0 14900454 -algol n 2 2 @ #m 2 0 09192566 06901764 -algolagnia n 1 2 @ + 1 0 07493682 -algology n 1 1 @ 1 0 06074507 -algometer n 1 1 @ 1 0 02696569 -algometry n 1 2 @ + 1 0 00998196 -algonkian n 2 2 @ + 2 0 09646432 06908159 -algonkin n 2 1 @ 2 0 09646432 06908159 -algonquian n 2 3 @ ~ + 2 0 09646608 06906971 -algonquian_language n 1 2 @ ~ 1 0 06906971 -algonquin n 2 3 @ ~ + 2 0 09646608 06906971 -algophilia n 1 1 @ 1 0 07493682 -algophobia n 1 2 @ + 1 0 14382871 -algorism n 2 1 @ 2 0 06810691 06004599 -algorithm n 1 3 @ ~ + 1 0 05847438 -algorithm_error n 1 2 @ ; 1 0 07300781 -algorithmic_language n 1 2 @ ~ 1 0 06898972 -algorithmic_program n 1 2 @ ~ 1 0 05847438 -algorithmic_rule n 1 2 @ ~ 1 0 05847438 -algren n 1 1 @ 1 0 10813711 -alhacen n 1 1 @ 1 0 10813986 -alhambra n 1 2 @ #p 1 0 02696669 -alhazen n 1 1 @ 1 0 10813986 -ali n 2 1 @ 2 0 10814574 10814328 -ali_baba n 1 1 @ 1 0 09782946 -alias n 1 1 @ 1 0 06338158 -alibi n 2 4 @ ~ + ; 2 1 06741099 06741305 -alice-josephine_pons n 1 1 @ 1 0 11242321 -alice_b._toklas n 1 1 @ 1 0 11345017 -alice_hamilton n 1 1 @ 1 0 11025926 -alice_malsenior_walker n 1 1 @ 1 0 11371125 -alice_paul n 1 1 @ 1 0 11226614 -alice_walker n 1 1 @ 1 0 11371125 -alicia_alonso n 1 1 @ 1 0 10815343 -alicyclic_compound n 1 1 @ 1 0 14601178 -alidad n 2 2 @ #p 2 0 02697022 02696843 -alidade n 2 2 @ #p 2 0 02697022 02696843 -alien n 3 3 @ ~ + 3 1 10103485 10661002 09484465 -alien_absconder n 1 1 @ 1 0 09783130 -alienage n 1 1 @ 1 0 04799789 -alienation n 4 3 @ ~ ; 4 1 07502387 14415773 01108150 00035891 -alienation_of_affection n 1 1 @ 1 0 00734107 -alienator n 1 2 @ + 1 0 09783369 -alienee n 1 1 @ 1 0 09783537 -alienism n 2 2 @ ; 2 0 06056787 04799789 -alienist n 1 1 @ 1 0 09783653 -alienor n 1 1 @ 1 0 09783776 -alignment n 4 6 ! @ ~ %m + ; 4 2 08293982 05077146 07415167 01000068 -alikeness n 1 4 @ ~ = + 1 0 04744814 -aliment n 1 3 @ ~ + 1 0 07570720 -alimentary_canal n 1 4 @ ~ #p %p 1 0 05532225 -alimentary_paste n 1 2 @ ~ 1 0 07698915 -alimentary_tract n 1 4 @ ~ #p %p 1 0 05532225 -alimentary_tract_smear n 1 2 @ ~ 1 0 05265417 -alimentation n 2 3 @ ~ + 2 0 07570720 01057759 -alimony n 1 1 @ 1 0 13283620 -alinement n 1 3 @ ~ %m 1 0 08293982 -aliphatic_compound n 1 2 @ ~ 1 0 14601294 -aliquant n 1 2 ! @ 1 0 13734816 -aliquant_part n 1 1 @ 1 0 13734816 -aliquot n 1 3 ! @ + 1 1 13734629 -aliquot_part n 1 1 @ 1 0 13734629 -alir n 1 2 @ ; 1 0 08016900 -alisma n 1 3 @ #m %m 1 0 12612020 -alisma_plantago-aquatica n 1 3 @ ~ #m 1 0 12612170 -alismales n 1 3 @ #m %m 1 0 12610933 -alismataceae n 1 3 @ #m %m 1 0 12611815 -alismatidae n 1 2 @ #m 1 0 11668340 -alistair_cooke n 1 2 @ ; 1 0 10908756 -aliterate n 1 1 @ 1 0 09783884 -aliterate_person n 1 1 @ 1 0 09783884 -aliveness n 2 4 @ ~ = + 2 0 13961642 05005447 -aliyah n 2 2 @ ; 2 0 06696991 00056551 -alizarin n 1 2 @ ~ 1 0 14986277 -alizarin_carmine n 1 1 @ 1 0 14986438 -alizarin_crimson n 1 1 @ 1 1 14986438 -alizarin_red n 1 1 @ 1 0 14986438 -alizarin_yellow n 1 1 @ 1 0 14754705 -alizarine n 1 2 @ ~ 1 0 14986277 -alizarine_red n 1 1 @ 1 0 04963307 -alka-seltzer n 1 2 @ ; 1 0 14776924 -alkahest n 1 2 @ + 1 0 15048463 -alkalemia n 1 1 @ 1 0 14020936 -alkali n 2 3 @ ~ + 2 1 14618253 14712036 -alkali_bee n 1 2 @ #m 1 1 02210921 -alkali_grass n 1 2 @ #m 1 0 12467018 -alkali_metal n 1 1 @ 1 0 14712224 -alkali_poisoning n 1 1 @ 1 0 14510104 -alkalimetry n 1 1 @ 1 0 00648087 -alkaline-earth_metal n 1 1 @ 1 0 14712489 -alkaline_earth n 1 1 @ 1 0 14712489 -alkaline_metal n 1 1 @ 1 0 14712224 -alkalinity n 1 3 ! @ + 1 0 05039709 -alkalinuria n 1 1 @ 1 0 14021118 -alkaliser n 1 2 @ ~ 1 0 14778019 -alkalizer n 1 3 @ ~ + 1 0 14778019 -alkaloid n 1 3 @ ~ + 1 0 14712692 -alkalosis n 1 3 @ ~ + 1 0 14021266 -alkaluria n 1 1 @ 1 0 14021118 -alkane n 1 2 @ ~ 1 0 14951377 -alkane_series n 1 2 @ ~ 1 0 14951377 -alkanet n 1 1 @ 1 0 12817694 -alkapton n 1 1 @ 1 0 14585048 -alkaptonuria n 1 1 @ 1 0 14084709 -alkene n 1 2 @ ~ 1 0 14713120 -alkeran n 1 2 @ ; 1 0 03743577 -alky n 1 1 @ 1 0 09782167 -alkyd n 1 1 @ 1 0 14902500 -alkyd_resin n 1 1 @ 1 0 14902500 -alkyl n 1 3 @ ~ + 1 0 14617189 -alkyl_group n 1 2 @ ~ 1 0 14617189 -alkyl_halide n 1 2 @ ~ 1 0 14601646 -alkyl_radical n 1 2 @ ~ 1 0 14617189 -alkylating_agent n 1 2 @ ~ 1 0 02697438 -alkylbenzene n 1 2 @ ~ 1 0 14601505 -alkylbenzenesulfonate n 1 1 @ 1 1 14713247 -alkyne n 1 2 @ #s 1 0 14600742 -all-day_sucker n 1 1 @ 1 0 07607605 -all-or-none_law n 1 2 @ ; 1 0 05874017 -all-rounder n 1 1 @ 1 0 09784870 -all-terrain_bike n 1 1 @ 1 0 03792782 -all_arounder n 1 1 @ 1 0 09784870 -all_clear n 2 1 @ 2 0 06804097 06689554 -all_fools'_day n 1 2 @ #p 1 0 15188505 -all_fours n 1 2 @ ~ 1 0 00489730 -all_get_out n 1 1 @ 1 0 13775319 -all_saints'_day n 1 2 @ #p 1 0 15195059 -all_souls'_day n 1 2 @ #p 1 0 15195477 -alla_breve n 1 1 @ 1 0 06865049 -alla_nazimova n 1 1 @ 1 0 11201941 -allah n 1 1 @ 1 0 09538544 -allamanda n 1 3 @ ~ #m 1 0 11769621 -allamanda_cathartica n 1 1 @ 1 0 11769803 -allantois n 1 2 @ ; 1 0 01473393 -allayer n 1 2 @ + 1 0 10518349 -allegation n 2 3 @ ~ ; 2 2 07236077 06731186 -allegement n 1 3 @ ~ + 1 0 06731186 -alleghany_plum n 1 2 @ %p 1 0 12638753 -alleghenies n 1 2 @ #p 1 0 09192708 -allegheny n 1 2 @ #p 1 0 09192973 -allegheny_chinkapin n 1 3 @ #m %p 1 0 12263738 -allegheny_mountain_spurge n 1 1 @ 1 0 12747120 -allegheny_mountains n 1 2 @ #p 1 0 09192708 -allegheny_plum n 1 2 @ %p 1 0 12638753 -allegheny_river n 1 2 @ #p 1 0 09192973 -allegheny_spurge n 1 1 @ 1 0 12747120 -allegheny_vine n 1 1 @ 1 0 11909864 -allegiance n 2 3 @ ~ + 2 1 01206153 04877938 -allegoriser n 1 2 @ + 1 0 09784160 -allegorizer n 1 2 @ + 1 0 09784160 -allegory n 3 3 @ ~ + 3 1 06372095 06880664 06366581 -allegretto n 2 2 @ + 2 0 15264891 07039949 -allegro n 2 3 @ ~ + 2 0 15265021 07039770 -allegro_con_spirito n 1 1 @ 1 1 15265135 -allele n 1 4 @ ~ + ; 1 0 05437785 -allelomorph n 1 3 @ ~ ; 1 0 05437785 -allemande n 1 1 @ 1 0 07840124 -allemande_sauce n 1 1 @ 1 0 07840124 -allen n 3 1 @ 3 0 10815113 10814953 10814776 -allen_ginsberg n 1 1 @ 1 0 11000660 -allen_screw n 1 1 @ 1 0 02697576 -allen_stewart_konigsberg n 1 1 @ 1 0 10814953 -allen_tate n 1 1 @ 1 0 11332423 -allen_wrench n 1 1 @ 1 0 02697675 -allentown n 1 2 @ #p 1 0 09134999 -allergen n 1 3 @ ~ + 1 0 14584260 -allergic_eczema n 1 2 @ ~ 1 0 14225346 -allergic_reaction n 1 2 @ ~ 1 0 14532816 -allergic_rhinitis n 1 2 @ ~ 1 0 14533937 -allergist n 1 2 @ + 1 0 09784306 -allergology n 1 1 @ 1 0 06046245 -allergy n 1 3 @ ~ + 1 0 14532816 -allergy_diet n 1 1 @ 1 0 07561730 -alleviant n 1 2 @ + 1 0 03879854 -alleviation n 2 3 @ ~ + 2 0 07493280 00354884 -alleviator n 2 2 @ + 2 0 09784443 03879854 -alley n 2 3 @ #p %p 2 1 02697759 02882014 -alley_cat n 1 1 @ 1 1 02122510 -alleyway n 1 1 @ 1 1 02697759 -allgood n 1 2 @ %p 1 0 11828973 -allhallows n 1 2 @ #p 1 0 15195059 -allhallows_eve n 1 1 @ 1 0 15191233 -allhallowtide n 1 1 @ 1 0 15195388 -alliaceae n 1 2 @ #m 1 0 12430878 -alliaceous_plant n 1 3 @ ~ #m 1 0 12431434 -alliance n 5 4 @ ~ %m + 5 0 14418822 13792183 08293982 06773684 01081456 -alliaria n 1 3 @ #m %m 1 0 11870212 -alliaria_officinalis n 1 2 @ #m 1 0 11870418 -allice n 1 1 @ 1 0 02530999 -allice_shad n 1 1 @ 1 0 02530999 -allied_command_atlantic n 1 3 @ #p %m 1 0 08174995 -allied_command_europe n 1 3 @ #p %m 1 0 08175498 -allies n 3 1 @ 3 0 08171592 08171210 08170978 -alligator n 2 4 @ ~ #m + 2 2 14760447 01698434 -alligator_clip n 1 3 @ #p %p 1 0 02915904 -alligator_grass n 1 2 @ #m 1 0 11824747 -alligator_lizard n 1 2 @ #m 1 0 01689811 -alligator_mississipiensis n 1 1 @ 1 0 01698640 -alligator_pear n 1 2 @ #p 1 0 07764847 -alligator_sinensis n 1 1 @ 1 0 01698782 -alligator_snapper n 1 2 @ #m 1 0 01666585 -alligator_snapping_turtle n 1 2 @ #m 1 0 01666585 -alligator_weed n 1 2 @ #m 1 0 11824747 -alligator_wrench n 1 1 @ 1 0 02697876 -alligatorfish n 1 2 @ #m 1 0 02648313 -alligatoridae n 1 3 @ #m %m 1 0 01698144 -allionia n 1 3 @ #m %m 1 0 11838266 -allionia_incarnata n 1 2 @ #m 1 0 11838413 -allioniaceae n 1 3 @ #m %m 1 0 11835806 -allis n 1 1 @ 1 0 02530999 -allis_shad n 1 1 @ 1 0 02530999 -alliteration n 1 2 @ + 1 0 07097094 -alliterator n 1 2 @ + 1 0 09784564 -allium n 1 4 @ #m %m + 1 0 12431128 -allium_acuminatum n 1 2 @ #m 1 0 12432069 -allium_ampeloprasum n 1 1 @ 1 0 12432356 -allium_ascalonicum n 1 2 @ %p 1 0 12433178 -allium_canadense n 1 1 @ 1 0 12432574 -allium_carinatum n 1 1 @ 1 0 12432707 -allium_cepa n 1 4 @ ~ %s %p 1 0 12432808 -allium_cepa_aggregatum n 1 2 @ %p 1 0 12433178 -allium_cepa_viviparum n 1 1 @ 1 0 12433540 -allium_cernuum n 1 1 @ 1 0 12433769 -allium_fistulosum n 1 1 @ 1 0 12433952 -allium_haematochiton n 1 1 @ 1 0 12434106 -allium_neopolitanum n 1 1 @ 1 0 12434483 -allium_paradoxum n 1 1 @ 1 0 12434634 -allium_porrum n 1 2 @ %p 1 0 12434239 -allium_sativum n 1 2 @ %p 1 0 12434775 -allium_schoenoprasum n 1 2 @ %p 1 0 12435152 -allium_scorodoprasum n 1 1 @ 1 0 12434985 -allium_sphaerocephalum n 1 1 @ 1 0 12435965 -allium_tricoccum n 1 1 @ 1 0 12435338 -allium_triquetrum n 1 1 @ 1 0 12436090 -allium_tuberosum n 1 2 @ %p 1 0 12435777 -allium_ursinum n 1 1 @ 1 0 12435649 -allium_vineale n 1 1 @ 1 0 12435486 -allmouth n 1 3 @ #m %p 1 0 02548247 -alloantibody n 1 1 @ 1 0 15029482 -allocation n 3 4 @ ~ + ; 3 2 13289467 01083645 00164579 -allocation_unit n 1 2 @ %p 1 0 13626942 -allocator n 1 2 @ + 1 0 09784707 -allocution n 1 2 @ ; 1 0 07239183 -allogamy n 1 3 ! @ + 1 0 07437870 -allograft n 1 1 @ 1 0 05583386 -allograph n 2 1 @ 2 0 06819557 06404806 -allomerism n 1 3 @ + ; 1 0 07337935 -allometry n 1 2 @ + 1 0 05998356 -allomorph n 2 2 @ ~ 2 0 14819856 06306606 -allopathy n 1 2 ! @ 1 0 00710692 -allopatry n 1 3 ! @ + 1 0 13959289 -allophone n 1 3 @ + ; 1 0 07111933 -allopurinol n 1 1 @ 1 0 02698036 -allosaur n 1 2 @ #m 1 0 01714231 -allosaurus n 1 2 @ #m 1 0 01714231 -allotment n 2 3 @ ~ + 2 2 13289467 01083645 -allotrope n 1 2 @ + 1 0 14624025 -allotropism n 1 2 @ + 1 0 11409329 -allotropy n 1 2 @ + 1 0 11409329 -allowance n 6 3 @ ~ + 6 4 13286254 13293377 13274092 04749991 13370215 01141841 -allowance_account n 1 1 @ 1 0 13370215 -alloy n 2 4 @ ~ %s + 2 0 14586769 14487598 -alloy_cast_iron n 1 2 @ ~ 1 0 14715786 -alloy_iron n 1 2 @ ~ 1 0 14715786 -alloy_steel n 1 2 @ ~ 1 0 14716042 -allspice n 3 5 @ ~ #m #p %p 3 0 12331066 11700864 07814007 -allspice_tree n 2 3 @ #m %p 2 0 12331263 12331066 -allure n 1 3 @ ~ + 1 0 04688842 -allurement n 3 3 @ ~ + 3 0 05695446 04688842 00161044 -allusion n 1 2 @ + 1 1 06766544 -allusiveness n 1 2 @ + 1 0 04919458 -alluvial_cone n 1 1 @ 1 0 11423471 -alluvial_deposit n 1 3 @ ~ %s 1 0 09193282 -alluvial_fan n 1 1 @ 1 0 11423471 -alluvial_flat n 1 1 @ 1 0 09193551 -alluvial_plain n 1 1 @ 1 0 09193551 -alluvial_sediment n 1 3 @ ~ %s 1 0 09193282 -alluvial_soil n 1 2 @ #s 1 0 14719725 -alluviation n 1 2 @ ~ 1 0 11445395 -alluvion n 3 3 @ ~ %s 3 0 13429300 11454591 09193282 -alluvium n 1 4 @ ~ %s + 1 0 09193282 -ally n 2 4 @ ~ #m + 2 2 08305942 09785042 -allyl n 1 2 @ + 1 0 14617427 -allyl_alcohol n 1 2 @ #s 1 0 14719893 -allyl_group n 1 1 @ 1 0 14617427 -allyl_radical n 1 1 @ 1 0 14617427 -allyl_resin n 1 1 @ 1 0 14720101 -alma-ata n 1 2 @ #p 1 0 09020299 -alma_mater n 1 1 @ 1 0 08402339 -almanac n 2 1 @ 2 0 06426655 06426279 -almandine n 2 1 @ 2 0 15051301 14676486 -almandite n 1 1 @ 1 0 14676486 -almaty n 1 2 @ #p 1 0 09020299 -almighty n 1 3 @ ~ + 1 0 09536363 -almond n 2 4 @ ~ #p %p 2 0 12645174 07750586 -almond-leaves_willow n 1 2 @ #m 1 0 12727729 -almond_cookie n 1 1 @ 1 0 07636126 -almond_crescent n 1 1 @ 1 0 07636126 -almond_extract n 1 1 @ 1 0 07826544 -almond_moth n 1 2 @ #m 1 0 02290664 -almond_oil n 1 1 @ 1 0 12645754 -almond_tree n 1 3 @ ~ #m 1 0 12644902 -almond_willow n 1 2 @ #m 1 0 12727960 -almoner n 1 1 @ 1 0 09785236 -almoravid n 1 1 @ 1 0 09682967 -alms n 1 2 @ ; 1 0 01090117 -alms-giving n 1 1 @ 1 0 01090225 -alms_box n 1 1 @ 1 0 03982767 -alms_dish n 1 1 @ 1 0 02698244 -alms_tray n 1 1 @ 1 0 02698244 -almsgiver n 1 1 @ 1 0 09785580 -almsgiving n 1 1 @ 1 0 01090225 -alnico n 1 1 @ 1 0 14716358 -alnus n 1 3 @ #m %m 1 0 12283981 -alnus_crispa n 1 2 @ #m 1 0 12286197 -alnus_glutinosa n 1 2 @ #m 1 0 12284821 -alnus_incana n 1 2 @ #m 1 0 12285049 -alnus_maritima n 1 2 @ #m 1 0 12285195 -alnus_rhombifolia n 1 2 @ #m 1 0 12285369 -alnus_rubra n 1 2 @ #m 1 0 12285512 -alnus_rugosa n 1 2 @ #m 1 0 12285705 -alnus_serrulata n 1 2 @ #m 1 0 12285900 -alnus_veridis n 1 2 @ #m 1 0 12286068 -alnus_veridis_crispa n 1 2 @ #m 1 0 12286197 -alnus_vulgaris n 1 2 @ #m 1 0 12284821 -alocasia n 1 3 @ ~ #m 1 0 11782036 -alocasia_macrorrhiza n 1 1 @ 1 0 11782266 -aloe n 1 3 @ ~ #m 1 0 12436677 -aloe_family n 1 2 @ #m 1 0 12436260 -aloe_ferox n 1 1 @ 1 0 12436907 -aloe_vera n 1 1 @ 1 0 12437047 -aloeaceae n 1 2 @ #m 1 0 12436260 -aloes n 1 1 @ 1 1 02698366 -aloha n 1 2 @ ; 1 0 06631921 -aloha_state n 1 4 @ #p %p - 1 0 09078231 -alois_senefelder n 1 1 @ 1 0 11292662 -aloneness n 1 3 @ ~ + 1 1 04622415 -alonso n 1 1 @ 1 0 10815343 -aloofness n 2 3 @ ~ + 2 1 07505871 04656996 -alopecia n 1 2 @ ~ 1 0 14457361 -alopecia_areata n 1 1 @ 1 0 14457630 -alopecurus n 1 3 @ #m %m 1 0 12107489 -alopecurus_pratensis n 1 2 @ #m 1 0 12107710 -alopex n 1 3 @ #m %m 1 0 02119961 -alopex_lagopus n 1 3 @ ~ #m 1 0 02120079 -alopiidae n 1 3 @ #m %m 1 0 01485673 -alopius n 1 3 @ #m %m 1 0 01485801 -alopius_vulpinus n 1 2 @ #m 1 0 01486010 -alosa n 1 3 @ #m %m 1 0 02530294 -alosa_alosa n 1 1 @ 1 0 02530999 -alosa_chrysocloris n 1 1 @ 1 0 02530831 -alosa_pseudoharengus n 1 3 @ #m %p 1 0 02531114 -alosa_sapidissima n 1 2 @ %p 1 0 02530637 -alouatta n 1 3 @ #m %m 1 0 02492536 -aloys_senefelder n 1 1 @ 1 0 11292662 -alp n 1 1 @ 1 0 09193705 -alpaca n 3 2 @ #m 3 0 15104598 02698473 02438272 -alpena n 1 2 @ #p 1 0 09100080 -alpenstock n 1 2 @ %p 1 0 02698634 -alpha n 2 3 @ #m + 2 1 06834138 07329169 -alpha-adrenergic_blocker n 1 2 @ ~ 1 0 02698769 -alpha-adrenergic_blocking_agent n 1 2 @ ~ 1 0 02698769 -alpha-adrenergic_receptor n 1 2 @ #p 1 0 05609111 -alpha-adrenoceptor n 1 2 @ #p 1 0 05609111 -alpha-beta_brass n 1 2 @ ~ 1 0 14720238 -alpha-blocker n 1 2 @ ~ 1 0 02698769 -alpha-interferon n 1 1 @ 1 0 02699096 -alpha-linolenic_acid n 1 1 @ 1 0 14609443 -alpha-lipoprotein n 1 2 @ %s 1 0 14907349 -alpha-naphthol n 1 1 @ 1 0 14609689 -alpha-naphthol_test n 1 1 @ 1 0 14609784 -alpha-tocopheral n 1 1 @ 1 0 14720833 -alpha_and_omega n 2 1 @ 2 0 15244094 06604209 -alpha_blocker n 1 2 @ ~ 1 0 02698769 -alpha_brass n 1 1 @ 1 0 14720474 -alpha_bronze n 1 1 @ 1 0 14720588 -alpha_centauri n 1 2 @ #m 1 0 09193772 -alpha_crucis n 1 2 @ #m 1 0 09193933 -alpha_decay n 1 1 @ 1 0 13429432 -alpha_fetoprotein n 1 1 @ 1 0 15033846 -alpha_foetoprotein n 1 1 @ 1 0 15033846 -alpha_geminorum n 1 2 @ #m 1 0 09237749 -alpha_globulin n 1 1 @ 1 0 14731964 -alpha_iron n 1 2 @ #s 1 0 14720692 -alpha_methyl_dopa n 1 1 @ 1 0 03755991 -alpha_orionis n 1 2 @ #m 1 0 09219731 -alpha_particle n 1 1 @ 1 0 09194052 -alpha_privative n 1 1 @ 1 0 06308674 -alpha_radiation n 1 1 @ 1 0 11423607 -alpha_ray n 1 1 @ 1 0 11423607 -alpha_receptor n 1 2 @ #p 1 0 05609111 -alpha_rhythm n 1 1 @ 1 0 11423756 -alpha_software n 1 1 @ 1 0 06566805 -alpha_test n 1 2 @ ; 1 0 05799761 -alpha_wave n 1 1 @ 1 0 11423756 -alphabet n 2 5 @ ~ %m + ; 2 0 06497459 05872742 -alphabet_soup n 2 1 @ 2 0 08400191 07583978 -alphabetic_character n 1 4 @ ~ #m #p 1 1 06828818 -alphabetic_script n 1 1 @ 1 0 06361314 -alphabetic_writing n 1 1 @ 1 0 06361314 -alphabetisation n 1 1 @ 1 0 01011028 -alphabetiser n 1 2 @ + 1 0 09785409 -alphabetization n 1 2 @ + 1 0 01011028 -alphabetizer n 1 2 @ + 1 0 09785409 -alphanumeric_characters n 1 1 @ 1 0 06500262 -alphanumeric_display n 1 4 @ ~ #p %p 1 0 03196598 -alphanumerics n 1 2 @ + 1 0 06500262 -alphavirus n 1 2 @ #m 1 0 01332488 -alphonse_bertillon n 1 1 @ 1 0 10849213 -alphonse_capone n 1 1 @ 1 0 10881784 -alpine_anemone n 1 1 @ 1 0 11725311 -alpine_ash n 1 1 @ 1 0 12336973 -alpine_azalea n 1 2 @ #m 1 0 12240477 -alpine_bearberry n 1 1 @ 1 0 12231709 -alpine_besseya n 1 1 @ 1 0 12878325 -alpine_celery_pine n 1 1 @ 1 0 11650430 -alpine_clover n 1 1 @ 1 0 11752798 -alpine_clubmoss n 1 1 @ 1 0 13222985 -alpine_coltsfoot n 1 2 @ #m 1 0 11982939 -alpine_enchanter's_nightshade n 1 1 @ 1 0 12341795 -alpine_fir n 1 1 @ 1 0 11622591 -alpine_glacier n 1 1 @ 1 0 09194227 -alpine_gold n 1 2 @ #m 1 0 11983375 -alpine_golden_chain n 1 2 @ #m 1 0 12538209 -alpine_goldenrod n 1 1 @ 1 0 12016914 -alpine_hulsea n 1 2 @ #m 1 0 11983375 -alpine_lady_fern n 1 1 @ 1 0 13194758 -alpine_lift n 1 1 @ 1 0 04396650 -alpine_milk_vetch n 1 1 @ 1 0 12508618 -alpine_mouse-ear n 1 1 @ 1 0 11807696 -alpine_salamander n 1 2 @ #m 1 0 01630148 -alpine_scurvy n 1 1 @ 1 0 14200873 -alpine_sunflower n 1 2 @ #m 1 0 12025507 -alpine_totara n 1 2 @ #m 1 0 11652966 -alpine_type_of_glacier n 1 1 @ 1 0 09194227 -alpine_woodsia n 1 1 @ 1 0 13202355 -alpinia n 1 3 @ #m %m 1 0 12356668 -alpinia_galanga n 1 2 @ #m 1 0 12356960 -alpinia_officinalis n 1 2 @ #m 1 0 12357100 -alpinia_officinarum n 1 2 @ #m 1 0 12357100 -alpinia_purpurata n 1 2 @ #m 1 0 12357343 -alpinia_speciosa n 1 2 @ #m 1 0 12357485 -alpinia_zerumbet n 1 2 @ #m 1 0 12357485 -alpinism n 1 2 @ + 1 0 00325975 -alpinist n 1 2 @ + 1 0 09785659 -alprazolam n 1 1 @ 1 0 02699343 -alps n 1 3 @ #p %p 1 0 09194357 -als n 1 1 @ 1 0 14105737 -alsace n 1 3 @ #p + 1 0 08940209 -alsatia n 1 2 @ #p 1 0 08940209 -alsatian n 2 2 @ + 2 0 09785786 02106662 -also-ran n 1 2 @ ~ 1 0 10272913 -alsobia n 1 3 @ #m %m 1 0 12830974 -alsobia_dianthiflora n 1 2 @ #m 1 0 12831141 -alsophila n 1 3 @ #m %m 1 0 02287476 -alsophila_pometaria n 1 2 @ #m 1 0 02287622 -alstonia n 1 3 @ #m %m 1 0 11770013 -alstonia_scholaris n 1 2 @ #m 1 0 11770256 -alstroemeria n 1 3 @ ~ #m 1 0 12438571 -alstroemeria_pelegrina n 1 2 @ #m 1 0 12438783 -alstroemeriaceae n 1 2 @ #m 1 0 12438046 -alt n 1 1 @ 1 0 13836550 -altace n 1 2 @ ; 1 0 04051068 -altai_mountains n 1 2 @ #p 1 0 09194710 -altaic n 2 3 @ ~ + 2 0 09690208 06926212 -altaic_language n 1 2 @ ~ 1 0 06926212 -altair n 1 2 @ #m 1 0 09194938 -altar n 2 2 @ ~ 2 0 02699629 02699494 -altar_boy n 1 1 @ 1 0 09785891 -altar_wine n 1 1 @ 1 0 07893425 -altarpiece n 1 1 @ 1 0 02699770 -altay_mountains n 1 2 @ #p 1 0 09194710 -altazimuth n 1 1 @ 1 0 02699915 -alter_ego n 1 1 @ 1 1 09785992 -alterability n 1 3 ! @ + 1 0 04741530 -alteration n 3 3 @ ~ + 3 2 07296428 00199707 00399393 -altercation n 1 2 @ ~ 1 1 07184545 -altering n 1 2 @ ~ 1 0 00692506 -alternanthera n 1 3 @ #m %m 1 0 11824548 -alternanthera_philoxeroides n 1 2 @ #m 1 0 11824747 -alternate n 1 2 @ + 1 0 10680153 -alternating_current n 1 2 ! @ 1 0 11423952 -alternating_electric_current n 1 1 @ 1 0 11423952 -alternation n 1 2 @ + 1 0 01010684 -alternation_of_generations n 1 2 @ ~ 1 0 11424194 -alternative n 1 3 @ ~ + 1 1 05790944 -alternative_birth n 1 1 @ 1 0 13429585 -alternative_birthing n 1 1 @ 1 0 13429585 -alternative_energy n 1 2 @ ~ 1 0 11424400 -alternative_medicine n 1 2 @ ~ 1 0 00613473 -alternative_pleading n 1 2 @ ; 1 0 06560021 -alternator n 1 3 @ #p ; 1 0 02700064 -althaea n 1 3 @ ~ #m 1 0 12174311 -althea n 1 3 @ ~ #m 1 0 12174311 -althea_gibson n 1 1 @ 1 0 10998117 -althea_officinalis n 1 2 @ #m 1 0 12174521 -althea_rosea n 1 2 @ #m 1 0 12173912 -altimeter n 1 3 @ ~ %p 1 0 02700258 -altitude n 3 3 @ ~ + 3 1 05131647 13897657 13836550 -altitude_sickness n 1 2 @ ~ 1 0 14042914 -alto n 5 3 @ ~ + 5 0 09786115 06872905 06872785 04986637 04986526 -alto_clef n 1 1 @ 1 0 06863086 -alto_relievo n 1 1 @ 1 0 02700422 -alto_rilievo n 1 1 @ 1 0 02700422 -alto_saxophonist n 1 1 @ 1 0 09786226 -altocumulus n 1 1 @ 1 0 09195098 -altocumulus_cloud n 1 1 @ 1 0 09195098 -altogether n 1 1 @ 1 0 14456586 -altoist n 1 1 @ 1 0 09786226 -alton_glenn_miller n 1 1 @ 1 0 11180209 -altoona n 1 2 @ #p 1 0 09135142 -altostratus n 1 1 @ 1 0 09195235 -altostratus_cloud n 1 1 @ 1 0 09195235 -altruism n 1 3 ! @ + 1 1 04833276 -altruist n 1 3 @ ~ + 1 0 10421956 -alula n 2 3 @ #p + 2 0 02190465 01897667 -alum n 4 2 @ ~ 4 0 14628307 14628119 09786338 02700622 -alumbloom n 1 3 @ ~ #m 1 0 12798284 -alumina n 1 3 @ ~ #s 1 0 14823944 -aluminate n 1 1 @ 1 0 14824140 -aluminium n 1 3 @ ~ #s 1 0 14627820 -aluminium_bronze n 1 1 @ 1 0 14722912 -aluminium_chloride n 1 1 @ 1 0 15017878 -aluminium_foil n 1 2 @ %s 1 0 02700767 -aluminium_hydroxide n 1 2 @ #s 1 0 14824238 -aluminium_oxide n 1 3 @ ~ #s 1 0 14823944 -aluminum n 1 4 @ ~ #s + 1 1 14627820 -aluminum_bronze n 1 1 @ 1 0 14722912 -aluminum_business n 1 1 @ 1 0 08066186 -aluminum_chloride n 1 1 @ 1 1 15017878 -aluminum_foil n 1 2 @ %s 1 1 02700767 -aluminum_hydroxide n 1 2 @ #s 1 0 14824238 -aluminum_industry n 1 1 @ 1 0 08066186 -aluminum_oxide n 1 3 @ ~ #s 1 0 14823944 -alumna n 1 2 @ ~ 1 0 09786338 -alumnus n 1 2 @ ~ 1 0 09786338 -alumroot n 1 3 @ ~ #m 1 0 12798284 -alundum n 1 1 @ 1 1 14824469 -alupent n 1 2 @ ; 1 0 03752649 -alvar_aalto n 1 1 @ 1 0 10806693 -alveolar n 1 2 @ + 1 0 07115493 -alveolar_arch n 1 2 @ #p 1 0 05310206 -alveolar_artery n 1 3 @ ~ #p 1 0 05335310 -alveolar_bed n 1 2 @ #p 1 1 05387842 -alveolar_consonant n 1 1 @ 1 0 07115493 -alveolar_ectasia n 1 1 @ 1 0 14064296 -alveolar_point n 1 1 @ 1 0 05234911 -alveolar_process n 1 3 @ #p %p 1 0 05310351 -alveolar_resorption n 1 1 @ 1 0 14081124 -alveolar_rhabdomyosarcoma n 1 1 @ 1 0 14245758 -alveolar_rhabdosarcoma n 1 1 @ 1 0 14245758 -alveolar_ridge n 1 3 @ #p %p 1 0 05310351 -alveolitis n 2 2 @ ~ 2 0 14257993 14257779 -alveolus n 2 3 @ #p + 2 1 05528395 05285480 -alvin_ailey n 1 1 @ 1 0 10810671 -alyssum n 2 3 @ #m %m 2 0 11870747 11870607 -alytes n 1 3 @ #m %m 1 0 01648001 -alytes_cisternasi n 1 2 @ #m 1 0 01648356 -alytes_obstetricans n 1 2 @ #m 1 0 01648139 -alzheimer's n 1 1 @ 1 0 14396096 -alzheimer's_disease n 1 1 @ 1 0 14396096 -alzheimers n 1 1 @ 1 0 14396096 -am n 3 1 @ 3 0 14628494 06701001 06281594 -amabilis_fir n 1 1 @ 1 0 11621281 -amadavat n 1 2 @ #m 1 0 01543936 -amaethon n 1 2 @ ; 1 0 09507639 -amah n 2 2 @ ~ 2 0 10774870 10282672 -amalgam n 2 2 @ + 2 0 14716550 07963987 -amalgamation n 1 1 @ 1 0 01238424 -amalgamator n 1 2 @ + 1 0 09786922 -amandine_aurore_lucie_dupin n 1 1 @ 1 0 11280013 -amanita n 1 4 @ ~ #m %m 1 0 13002433 -amanita_caesarea n 1 2 @ #m 1 0 13002750 -amanita_mappa n 1 2 @ #m 1 0 13002925 -amanita_muscaria n 1 2 @ #m 1 0 13003061 -amanita_phalloides n 1 2 @ #m 1 0 13003254 -amanita_rubescens n 1 2 @ #m 1 0 13003522 -amanita_verna n 1 2 @ #m 1 0 13003712 -amanuensis n 1 1 @ 1 0 10654015 -amaranth n 2 3 @ ~ #m 2 0 11823305 11823043 -amaranth_family n 1 3 @ #m %m 1 0 11822557 -amaranthaceae n 1 3 @ #m %m 1 0 11822557 -amaranthus n 1 3 @ #m %m 1 0 11822849 -amaranthus_albus n 1 1 @ 1 0 11823436 -amaranthus_caudatus n 1 1 @ 1 0 11823572 -amaranthus_cruentus n 1 1 @ 1 0 11823756 -amaranthus_graecizans n 1 1 @ 1 0 11823436 -amaranthus_hybridus_erythrostachys n 1 1 @ 1 0 11823756 -amaranthus_hybridus_hypochondriacus n 1 1 @ 1 0 11823756 -amaranthus_hypochondriacus n 1 1 @ 1 0 11824146 -amaranthus_spinosus n 1 2 @ #m 1 0 11824344 -amarelle n 2 3 @ #p %p 2 0 12643688 07758125 -amaretto n 1 1 @ 1 0 07908567 -amarillo n 1 2 @ #p 1 0 09142771 -amaryllidaceae n 1 3 @ #m %m 1 0 12418680 -amaryllis n 1 3 @ ~ #m 1 0 12419037 -amaryllis_belladonna n 1 2 @ #m 1 0 12419394 -amaryllis_family n 1 3 @ #m %m 1 0 12418680 -amastia n 1 2 @ ; 1 0 14022369 -amaterasu n 1 1 @ 1 0 09534675 -amaterasu_omikami n 1 1 @ 1 0 09534675 -amateur n 2 4 ! @ ~ + 2 1 09786585 09786760 -amateurishness n 1 2 @ + 1 1 05649116 -amateurism n 1 1 @ 1 0 06246076 -amati n 2 1 @ 2 0 10815477 02700895 -amativeness n 1 3 @ ~ + 1 0 07489059 -amatungulu n 1 2 @ %p 1 0 11771924 -amauropelta n 1 2 @ #m 1 0 13228194 -amaurosis n 1 2 @ + 1 0 14096412 -amazement n 1 3 @ ~ + 1 1 07509572 -amazon n 4 4 @ #m #p ; 4 0 09787293 09787076 09195372 01818299 -amazon_ant n 1 2 @ #m 1 0 02222582 -amazon_river n 1 2 @ #p 1 0 09195372 -amazona n 1 3 @ #m %m 1 0 01818169 -ambage n 1 2 @ + 1 0 07090379 -ambages n 1 2 @ ; 1 0 00415988 -ambassador n 2 3 @ ~ + 2 1 09787534 09787765 -ambassadorship n 1 2 @ + 1 0 00588780 -ambassadress n 1 1 @ 1 0 09787878 -amber n 2 2 @ + 2 1 04966240 14894880 -amber_lily n 1 2 @ #m 1 0 12439830 -amberbell n 1 1 @ 1 0 12450840 -amberboa n 1 3 @ #m %m 1 0 11918631 -amberboa_moschata n 1 2 @ #m 1 0 11918808 -amberfish n 1 2 @ #m 1 0 02578771 -ambergris n 1 1 @ 1 0 14700985 -amberjack n 1 2 @ #m 1 0 02578771 -ambiance n 2 2 @ ~ 2 1 14524849 08494133 -ambidexterity n 1 2 @ + 1 0 05067199 -ambidextrousness n 1 2 @ + 1 0 05067199 -ambience n 2 3 @ ~ + 2 0 14524849 08494133 -ambiguity n 2 4 ! @ ~ + 2 2 06604319 04825114 -ambit n 1 2 @ ~ 1 0 05125377 -ambition n 2 4 @ ~ = + 2 2 07484547 04836268 -ambitiousness n 1 4 @ ~ = + 1 0 04836268 -ambivalence n 1 3 @ ~ + 1 0 07483305 -ambivalency n 1 2 @ ~ 1 0 07483305 -ambiversion n 1 3 ! @ ; 1 0 04622216 -amble n 1 3 @ ~ + 1 0 00284101 -ambler n 1 2 @ + 1 0 10553235 -ambloplites n 1 3 @ #m %m 1 0 02564130 -ambloplites_rupestris n 1 2 @ #m 1 0 02564403 -amblygonite n 1 2 @ %s 1 0 14665605 -amblyopia n 1 2 @ + 1 0 14096598 -amblyrhynchus n 1 3 @ #m %m 1 0 01677613 -amblyrhynchus_cristatus n 1 2 @ #m 1 0 01677747 -ambo n 1 1 @ 1 0 03159640 -amboina_pine n 1 1 @ 1 0 11647868 -amboyna n 2 4 @ #m #s %s 2 0 12565590 12565368 -amboyna_pine n 1 1 @ 1 0 11647868 -ambrogio_damiano_achille_ratti n 1 1 @ 1 0 11238303 -ambrose n 1 3 @ + ; 1 0 10815648 -ambrose_bierce n 1 1 @ 1 0 10851139 -ambrose_everett_burnside n 1 1 @ 1 0 10873937 -ambrose_gwinett_bierce n 1 1 @ 1 0 10851139 -ambrosia n 4 5 @ ~ #m + ; 4 0 14774090 11919447 07610502 07610295 -ambrosia_artemisiifolia n 1 1 @ 1 0 11919761 -ambrosia_psilostachya n 1 1 @ 1 0 11920133 -ambrosia_trifida n 1 1 @ 1 0 11919975 -ambrosiaceae n 1 2 @ #m 1 0 11919232 -ambulacrum n 1 3 @ #p + 1 0 02317025 -ambulance n 1 2 @ ~ 1 1 02701002 -ambulance_chaser n 1 1 @ 1 0 09787955 -ambulant_plague n 1 1 @ 1 0 14139333 -ambulation n 1 2 @ + 1 0 00283951 -ambulatory n 1 1 @ 1 0 02701125 -ambulatory_plague n 1 1 @ 1 0 14139333 -ambuscade n 1 3 @ ~ + 1 1 01246926 -ambush n 1 3 @ ~ + 1 1 01246926 -ambusher n 1 2 @ + 1 0 09788073 -ambystoma n 1 3 @ #m %m 1 0 01631903 -ambystoma_maculatum n 1 1 @ 1 0 01632458 -ambystoma_mexicanum n 1 1 @ 1 0 01632777 -ambystoma_talpoideum n 1 1 @ 1 0 01632308 -ambystoma_tigrinum n 1 1 @ 1 0 01632601 -ambystomatidae n 1 3 @ #m %m 1 0 01631759 -ambystomid n 1 3 @ ~ #m 1 0 01632047 -ambystomid_salamander n 1 3 @ ~ #m 1 0 01632047 -amd n 1 1 @ 1 0 14256889 -ameba n 1 4 @ ~ #m + 1 0 01392380 -amebiasis n 1 2 @ ~ 1 0 14175165 -amebic_dysentery n 1 1 @ 1 0 14175313 -amebiosis n 1 2 @ ~ 1 0 14175165 -amedeo_avogadro n 1 1 @ 1 0 10830046 -amedeo_modigliano n 1 1 @ 1 0 11183955 -ameer n 1 3 @ ~ ; 1 0 10052497 -ameiuridae n 1 3 @ #m %m 1 0 02518813 -ameiurus n 1 3 @ #m %m 1 0 02518990 -ameiurus_melas n 1 1 @ 1 0 02519340 -amelanchier n 1 3 @ #m %m 1 0 12623368 -amelanchier_alnifolia n 1 1 @ 1 0 12623818 -amelanchier_bartramiana n 1 1 @ 1 0 12624055 -amelia n 1 1 @ 1 0 14466344 -amelia_earhart n 1 1 @ 1 0 10947403 -amelioration n 1 2 @ + 1 0 00261029 -ameloblast n 1 1 @ 1 0 05448053 -amelogenesis n 1 1 @ 1 0 13429780 -amen n 1 1 @ 1 0 09511368 -amen-ra n 1 1 @ 1 0 09511519 -amen_cadence n 1 1 @ 1 0 07046030 -amen_corner n 1 2 @ #p 1 1 02701260 -amenability n 1 2 @ + 1 0 04906026 -amenableness n 1 2 @ + 1 0 04906026 -amended_return n 1 1 @ 1 1 06548991 -amendment n 2 3 @ ~ + 2 2 01250101 06723635 -amends n 2 2 @ ~ 2 0 13290676 00095329 -amenhotep_iv n 1 1 @ 1 0 10810923 -amenia n 1 2 @ ~ 1 0 14302261 -amenities n 1 1 @ 1 0 13366137 -amenity n 1 1 @ 1 0 04779053 -amenorrhea n 1 3 @ ~ + 1 0 14302261 -amenorrhoea n 1 3 @ ~ + 1 0 14302261 -ament n 1 2 @ + 1 0 11674798 -amentia n 1 1 @ 1 0 05646926 -amentiferae n 1 2 @ #m 1 0 12313574 -amercement n 1 3 @ ~ + 1 0 13301328 -america n 2 8 @ ~ #m #p %m %p + - 2 2 09044862 09195615 -american n 3 4 @ ~ #m + 3 2 09738708 06947479 09738400 -american-indian_language n 1 2 @ ~ 1 0 06906439 -american_agave n 1 2 @ #m 1 0 12477163 -american_alligator n 1 1 @ 1 0 01698640 -american_aloe n 1 3 @ ~ #m 1 0 12476510 -american_angelica_tree n 1 2 @ #m 1 0 11797508 -american_antelope n 1 2 @ #m 1 0 02429456 -american_arborvitae n 1 2 @ #m 1 0 11644226 -american_arrowroot n 1 1 @ 1 0 12351790 -american_aspen n 1 1 @ 1 0 12734070 -american_badger n 1 2 @ #m 1 0 02447762 -american_baptist_convention n 1 2 @ %m 1 0 08089797 -american_barberry n 1 1 @ 1 0 11697802 -american_basswood n 1 1 @ 1 0 12203529 -american_beech n 1 2 @ #m 1 0 12261808 -american_bison n 1 3 @ #m %p 1 0 02410702 -american_bittern n 1 2 @ #m 1 0 02011805 -american_bittersweet n 1 2 @ #m 1 0 12748248 -american_black_bear n 1 3 @ ~ #m 1 0 02133161 -american_blight n 1 2 @ #m 1 0 02253913 -american_bog_asphodel n 1 1 @ 1 0 12464128 -american_brooklime n 1 2 @ #m 1 0 12890685 -american_buffalo n 1 3 @ #m %p 1 0 02410702 -american_bugbane n 1 1 @ 1 0 11728769 -american_capital n 1 4 @ ~ #p %p 1 0 09070793 -american_centaury n 1 1 @ 1 0 12298395 -american_chameleon n 1 2 @ #m 1 0 01682714 -american_cheese n 1 2 @ ~ 1 0 07852919 -american_chestnut n 1 2 @ #m 1 0 12263038 -american_civil_war n 1 3 @ %p ; 1 0 01301630 -american_cockroach n 1 2 @ #m 1 0 02234355 -american_columbo n 1 2 @ #m 1 0 12292877 -american_coot n 1 2 @ #m 1 0 02018207 -american_copper n 1 2 @ #m 1 0 02282553 -american_crab_apple n 1 2 @ #m 1 0 12635151 -american_cranberry n 1 2 @ %p 1 0 12245885 -american_cranberry_bush n 1 2 @ #m 1 0 12680402 -american_crayfish n 1 3 @ #m %p 1 0 01985797 -american_creeper n 1 2 @ #m 1 0 01589718 -american_cress n 1 2 @ #p 1 0 11873845 -american_crow n 1 1 @ 1 0 01579149 -american_dewberry n 2 2 @ %p 2 0 12655351 12655245 -american_dog_tick n 1 2 @ #m 1 0 01779148 -american_dog_violet n 1 1 @ 1 0 12388293 -american_dogwood n 1 1 @ 1 0 12947544 -american_dream n 1 1 @ 1 1 07484792 -american_dwarf_birch n 1 2 @ #m 1 0 12283790 -american_eagle n 1 2 @ #m 1 0 01614925 -american_egret n 1 2 @ #m 1 0 02009912 -american_elder n 1 2 @ %p 1 0 12678548 -american_elk n 2 3 @ ~ #m 2 0 02431785 02431122 -american_elm n 1 2 @ #m 1 0 12406488 -american_english n 1 2 @ ~ 1 0 06947479 -american_falls n 1 2 @ #p 1 0 09195796 -american_featherfoil n 1 1 @ 1 0 12094401 -american_federalist_party n 1 1 @ 1 0 08259753 -american_federation_of_labor n 1 1 @ 1 0 08233913 -american_federation_of_labor_and_congress_of_industrial_organizations n 1 1 @ 1 0 08234103 -american_feverfew n 1 2 @ #m 1 0 12001294 -american_flag n 1 1 @ 1 0 02701566 -american_flagfish n 1 2 @ #m 1 0 01447946 -american_fly_honeysuckle n 1 3 @ ~ #m 1 0 12674685 -american_flying_squirrel n 1 3 @ ~ #m 1 0 02360781 -american_football n 1 3 @ ~ - 1 0 00469651 -american_football_game n 1 3 @ ~ - 1 0 00469651 -american_foxhound n 1 1 @ 1 0 02089725 -american_frogbit n 1 2 @ #m 1 0 12614096 -american_gallinule n 1 2 @ #m 1 0 02017475 -american_gentian n 1 2 @ #m 1 0 12292877 -american_germander n 1 1 @ 1 0 12869668 -american_ginseng n 1 3 @ #m %p 1 0 11800020 -american_gray_birch n 1 2 @ #m 1 0 12282235 -american_green_toad n 1 1 @ 1 0 01647033 -american_grey_birch n 1 2 @ #m 1 0 12282235 -american_hackberry n 1 2 @ #m 1 0 12409651 -american_harvest_mouse n 1 2 @ #m 1 0 02336275 -american_hazel n 1 1 @ 1 0 12289310 -american_hellebore n 1 1 @ 1 0 12464649 -american_holly n 1 1 @ 1 0 12757816 -american_hop n 1 1 @ 1 0 12398384 -american_hornbeam n 1 2 @ #m 1 0 12287195 -american_indian n 2 3 @ ~ #m 2 0 09645091 06906439 -american_indian_day n 1 2 @ #p 1 0 15190779 -american_ivy n 1 2 @ #m 1 0 13148384 -american_kestrel n 1 2 @ #m 1 0 01612122 -american_labor_party n 1 1 @ 1 0 08257779 -american_lady_crab n 1 2 @ #m 1 0 01979526 -american_language n 1 2 @ ~ 1 0 06947479 -american_larch n 1 1 @ 1 0 11619227 -american_laurel n 1 1 @ 1 0 12237641 -american_legion n 1 2 @ %m 1 0 08228980 -american_leishmaniasis n 1 1 @ 1 0 14181409 -american_licorice n 1 2 @ #m 1 0 12533190 -american_lime n 1 1 @ 1 0 12203529 -american_liquorice n 1 2 @ #m 1 0 12533190 -american_lobster n 2 4 @ #m #p %p 2 0 07792926 01983481 -american_lotus n 1 3 @ #m %p 1 0 11717577 -american_magpie n 1 1 @ 1 0 01582498 -american_maidenhair_fern n 1 1 @ 1 0 13207335 -american_marten n 1 1 @ 1 0 02450561 -american_mastodon n 1 2 @ #m 1 0 02506248 -american_mastodont n 1 2 @ #m 1 0 02506248 -american_merganser n 1 2 @ #m 1 0 01854838 -american_mink n 1 1 @ 1 0 02443015 -american_mistletoe n 2 2 @ #m 2 0 12739966 12738259 -american_mountain_ash n 1 1 @ 1 0 12658603 -american_oil_palm n 1 1 @ 1 0 12590600 -american_olive n 1 2 @ #m 1 0 12309630 -american_organ n 1 1 @ 1 0 02701730 -american_oriole n 1 3 @ ~ #m 1 0 01571904 -american_parasol n 1 2 @ #m 1 0 13014409 -american_parsley_fern n 1 2 @ #m 1 0 13210350 -american_party n 1 1 @ 1 0 08257971 -american_pasqueflower n 1 1 @ 1 0 11737752 -american_pennyroyal n 1 3 @ #m %s 1 0 12847927 -american_persimmon n 1 3 @ #m %p 1 0 12771597 -american_pit_bull_terrier n 1 1 @ 1 0 02093428 -american_plaice n 1 1 @ 1 0 02660091 -american_plan n 1 2 @ ~ 1 0 13415744 -american_plane n 1 2 @ #m 1 0 12807409 -american_pulsatilla n 1 1 @ 1 0 11737752 -american_quaking_aspen n 1 1 @ 1 0 12734070 -american_raspberry n 1 2 @ %p 1 0 12656528 -american_rattlebox n 1 2 @ #m 1 0 12519824 -american_red_elder n 1 1 @ 1 0 12679432 -american_red_plum n 1 1 @ 1 0 12638964 -american_red_squirrel n 1 1 @ 1 0 02357401 -american_redstart n 1 1 @ 1 0 01568294 -american_revised_version n 1 1 @ 1 0 06449477 -american_revolution n 1 2 @ %p 1 1 01302086 -american_revolutionary_leader n 1 2 @ ~ 1 0 09740085 -american_revolutionary_war n 1 2 @ %p 1 0 01302086 -american_robin n 1 2 @ #m 1 0 01558993 -american_rock_brake n 1 2 @ #m 1 0 13210350 -american_sable n 1 1 @ 1 0 02450561 -american_saddle_horse n 1 1 @ 1 0 02379630 -american_samoa n 1 3 @ #p %p 1 0 08991878 -american_shrew_mole n 1 2 @ #m 1 0 01891274 -american_sign_language n 1 2 @ %p 1 0 06876007 -american_smelt n 1 2 @ #p 1 0 07798728 -american_smokewood n 1 1 @ 1 0 12760316 -american_smooth_dogfish n 1 2 @ #m 1 0 01492708 -american_spicebush n 1 2 @ #m 1 0 11706325 -american_spikenard n 1 2 @ #m 1 0 11797981 -american_staffordshire_terrier n 1 1 @ 1 0 02093428 -american_standard_code_for_information_interchange n 1 3 @ %p ; 1 0 06356755 -american_standard_version n 1 1 @ 1 0 06449477 -american_star_grass n 1 1 @ 1 0 12423444 -american_state n 1 4 @ ~ #p %p 1 0 08655464 -american_stock_exchange n 1 1 @ 1 0 02701871 -american_sweet_chestnut n 1 2 @ #m 1 0 12263038 -american_sweet_gum n 1 3 @ #m %s 1 0 12316572 -american_sycamore n 1 2 @ #m 1 0 12807409 -american_toad n 1 1 @ 1 0 01646802 -american_turkey_oak n 1 1 @ 1 0 12273515 -american_twinflower n 1 2 @ #m 1 0 12673588 -american_virgin_islands n 1 2 @ #p 1 0 08755003 -american_wall_fern n 1 1 @ 1 0 13173697 -american_war_of_independence n 1 2 @ %p 1 0 01302086 -american_water_ouzel n 1 2 @ #m 1 0 01602209 -american_water_shrew n 1 2 @ #m 1 0 01892744 -american_water_spaniel n 1 1 @ 1 0 02102806 -american_watercress n 2 2 @ #p 2 0 11882636 11873845 -american_white_birch n 1 2 @ #m 1 0 12281974 -american_white_oak n 1 1 @ 1 0 12270027 -american_white_pine n 1 1 @ 1 0 11613219 -american_widgeon n 1 1 @ 1 0 01848840 -american_wistaria n 1 1 @ 1 0 12580896 -american_wisteria n 1 1 @ 1 0 12580896 -american_woodcock n 1 2 @ #m 1 0 02031585 -american_wormseed n 1 1 @ 1 0 11828804 -americana n 1 2 @ ; 1 1 02701393 -americanisation n 1 2 @ + 1 0 13429888 -americanism n 3 1 @ 3 1 04878539 07081345 00413554 -americanization n 1 2 @ + 1 0 13429888 -americium n 1 1 @ 1 0 14628494 -americus_vespucius n 1 1 @ 1 0 11365100 -amerigo_vespucci n 1 1 @ 1 0 11365100 -amerind n 1 3 @ ~ + 1 0 06906439 -amerindian n 1 3 @ ~ - 1 0 09644820 -amerindian_language n 1 2 @ ~ 1 0 06906439 -amerindian_race n 1 2 @ %m 1 0 09648176 -amethopterin n 1 1 @ 1 0 03755712 -amethyst n 1 2 @ + 1 0 14722589 -amethystine_python n 1 1 @ 1 1 01744555 -ametria n 1 1 @ 1 0 14152924 -ametropia n 1 4 @ ~ + ; 1 0 14096724 -amex n 1 1 @ 1 0 02701871 -amhara n 1 1 @ 1 0 09705671 -amharic n 1 2 @ + 1 0 06987812 -amia n 1 3 @ #m %m 1 0 02638960 -amia_calva n 1 2 @ #m 1 0 02639087 -amiability n 2 3 @ ~ + 2 0 07551691 04654652 -amiableness n 1 3 @ ~ + 1 0 04654652 -amianthum n 1 3 @ #m %m 1 0 12438977 -amianthum_muscaetoxicum n 1 2 @ #m 1 0 12439154 -amianthum_muscitoxicum n 1 2 @ #m 1 0 12439154 -amicability n 2 2 @ + 2 0 07499830 04654998 -amicableness n 2 2 @ + 2 0 07499830 04654998 -amicus_curiae n 1 2 @ ; 1 1 09788237 -amicus_curiae_brief n 1 2 @ ; 1 0 06543949 -amide n 1 2 @ ~ 1 0 14724264 -amidopyrine n 1 1 @ 1 0 02702166 -amigo n 1 2 @ ; 1 0 09788521 -amiidae n 1 3 @ #m %m 1 0 02638835 -amine n 1 3 @ ~ + 1 0 14739004 -amino n 1 3 @ ~ + 1 0 14617597 -amino_acid n 1 3 @ ~ #s 1 1 14601829 -amino_group n 1 2 @ ~ 1 0 14617597 -amino_plastic n 1 1 @ 1 0 14743381 -amino_resin n 1 1 @ 1 0 14743381 -aminoaciduria n 1 1 @ 1 0 14266168 -aminoalkane n 1 2 @ ~ 1 0 14739004 -aminoalkanoic_acid n 1 3 @ ~ #s 1 0 14601829 -aminobenzine n 1 1 @ 1 0 14754505 -aminobenzoic_acid n 1 1 @ 1 0 14743289 -aminomethane n 1 1 @ 1 1 14617715 -aminopherase n 1 2 @ ~ 1 0 15077338 -aminophylline n 1 1 @ 1 0 02701984 -aminoplast n 1 1 @ 1 0 14743381 -aminopyrine n 1 1 @ 1 0 02702166 -aminotransferase n 1 2 @ ~ 1 0 15077338 -amiodarone n 1 1 @ 1 0 02702304 -amir n 1 3 @ ~ ; 1 0 10052497 -amish n 1 2 @ #m 1 0 09677713 -amish_sect n 1 2 @ %m 1 0 08093813 -amitosis n 1 2 @ + 1 0 13430074 -amitriptyline n 1 1 @ 1 0 02702575 -amitriptyline_hydrochloride n 1 1 @ 1 0 02702575 -amity n 2 3 @ ~ + 2 1 04655929 13970460 -amlodipine_besylate n 1 1 @ 1 0 02702809 -amman n 1 2 @ #p 1 0 08927548 -ammeter n 1 2 @ ~ 1 0 02702989 -ammine n 1 1 @ 1 0 14743727 -ammo n 1 2 @ ~ 1 1 02703275 -ammobium n 1 3 @ ~ #m 1 0 11920498 -ammobium_alatum n 1 1 @ 1 0 11920663 -ammodytes n 1 3 @ #m %m 1 0 02618372 -ammodytidae n 1 3 @ #m %m 1 0 02618244 -ammonia n 2 3 @ ~ + 2 0 14743840 14743582 -ammonia_alum n 1 1 @ 1 0 14628307 -ammonia_clock n 1 1 @ 1 0 02703124 -ammonia_water n 1 1 @ 1 0 14743840 -ammoniac n 1 2 @ + 1 1 14743976 -ammonification n 1 2 @ + 1 0 13430262 -ammonite n 1 2 @ + 1 0 09195958 -ammonium n 1 2 @ + 1 0 14744120 -ammonium_alum n 1 1 @ 1 0 14628307 -ammonium_carbamate n 1 1 @ 1 0 14744291 -ammonium_carbonate n 1 1 @ 1 0 14744417 -ammonium_chloride n 1 1 @ 1 0 14744589 -ammonium_hydroxide n 1 1 @ 1 0 14743840 -ammonium_ion n 1 1 @ 1 1 14744120 -ammonium_nitrate n 1 2 @ #s 1 0 15014012 -ammoniuria n 1 1 @ 1 0 14266313 -ammonoid n 1 1 @ 1 0 09195958 -ammotragus n 1 3 @ #m %m 1 0 02415971 -ammotragus_lervia n 1 2 @ #m 1 0 02416104 -ammunition n 3 2 @ ~ 3 1 02703275 14585808 06484696 -ammunition_chest n 1 1 @ 1 0 02937237 -amnesia n 1 3 @ ~ + 1 0 05672391 -amnesiac n 1 2 @ + 1 0 09788611 -amnesic n 1 2 @ + 1 0 09788611 -amnesic_aphasia n 1 1 @ 1 0 14098663 -amnestic_aphasia n 1 1 @ 1 0 14098663 -amnesty n 3 3 @ + ; 3 0 14529082 06552639 01249315 -amnio n 1 2 @ ; 1 0 00943600 -amniocentesis n 1 2 @ ; 1 0 00943600 -amnion n 1 4 @ #p + ; 1 0 01472638 -amnionic_fluid n 1 2 @ #p 1 0 05399627 -amnios n 1 3 @ #p ; 1 0 01472638 -amniota n 1 4 @ #m %m ; 1 0 01472303 -amniote n 1 3 @ #m %p 1 0 01472502 -amniotic_cavity n 1 2 @ %p 1 0 05399486 -amniotic_fluid n 1 2 @ #p 1 0 05399627 -amniotic_sac n 1 3 @ #p ; 1 0 01472638 -amobarbital n 1 2 @ ~ 1 0 02703499 -amobarbital_sodium n 1 1 @ 1 0 02703692 -amoeba n 1 4 @ ~ #m + 1 0 01392380 -amoebiasis n 1 2 @ ~ 1 0 14175165 -amoebic_dysentery n 1 1 @ 1 0 14175313 -amoebida n 1 3 @ #m %m 1 0 01391569 -amoebina n 1 3 @ #m %m 1 0 01391569 -amoebiosis n 1 2 @ ~ 1 0 14175165 -amon n 1 1 @ 1 0 09511368 -amon-ra n 1 1 @ 1 0 09511519 -amontillado n 1 1 @ 1 0 07901264 -amor n 1 2 @ ; 1 0 09560061 -amora n 1 1 @ 1 0 09788761 -amoralism n 1 2 @ + 1 0 05958427 -amoralist n 1 2 @ + 1 0 09789150 -amorality n 1 1 @ 1 0 04854893 -amorist n 1 2 @ + 1 1 09789304 -amorousness n 2 3 @ ~ + 2 0 07544213 07489059 -amorpha n 1 3 @ ~ #m 1 0 12504094 -amorpha_californica n 1 1 @ 1 0 12504570 -amorpha_canescens n 1 1 @ 1 0 12504306 -amorpha_fruticosa n 1 1 @ 1 0 12504783 -amorphophallus n 1 2 @ #m 1 0 11782761 -amorphophallus_campanulatus n 1 3 @ #m ; 1 0 11782878 -amorphophallus_paeonifolius n 1 3 @ #m ; 1 0 11782878 -amorphophallus_rivieri n 1 2 @ #m 1 0 11783162 -amorphophallus_titanum n 1 2 @ #m 1 0 11783488 -amorphous_shape n 1 2 @ ~ 1 0 13867492 -amortisation n 2 2 @ + 2 0 01122938 01121070 -amortization n 2 2 @ + 2 0 01122938 01121070 -amos n 2 2 @ #p 2 0 10816136 06439560 -amount n 4 4 @ ~ = + 4 4 13331198 05107765 00033615 05861067 -amount_of_money n 1 2 @ ~ 1 1 13331198 -amour n 1 1 @ 1 0 13931889 -amour_propre n 1 1 @ 1 0 07508996 -amoxicillin n 1 1 @ 1 0 02703894 -amoxil n 1 1 @ 1 0 02703894 -amoy n 1 1 @ 1 0 06930633 -amp n 2 3 @ #p %p 2 1 13637376 14707710 -amperage n 1 1 @ 1 0 11424704 -ampere n 2 3 @ #p %p 2 0 13637841 13637376 -ampere-hour n 1 2 @ %p 1 0 13637124 -ampere-minute n 1 3 @ #p %p 1 0 13636989 -ampere-second n 1 2 @ #p 1 0 13636648 -ampere-turn n 1 1 @ 1 0 13642122 -ampersand n 1 1 @ 1 0 06841873 -amphetamine n 1 2 @ ~ 1 0 02704153 -amphetamine_sulfate n 1 1 @ 1 0 02704462 -amphetamine_sulphate n 1 1 @ 1 0 02704462 -amphibia n 1 4 @ #m %m + 1 0 01625747 -amphibian n 3 5 @ ~ #m %p + 3 0 02704792 02704645 01627424 -amphibian_family n 1 3 @ ~ #m 1 0 01626134 -amphibian_genus n 1 3 @ ~ #m 1 0 01626600 -amphibious_aircraft n 1 2 @ %p 1 0 02704645 -amphibious_assault n 1 2 @ ~ 1 0 00981369 -amphibious_demonstration n 1 1 @ 1 0 00972319 -amphibious_landing n 1 2 @ ; 1 0 00057748 -amphibious_operation n 1 3 @ ~ ; 1 0 00981180 -amphibious_vehicle n 1 2 @ ~ 1 0 02704792 -amphibole n 1 4 @ ~ #m #s 1 0 14665767 -amphibole_group n 1 2 @ %m 1 0 14666012 -amphibolips n 1 2 @ #m 1 0 02217050 -amphibolite n 1 2 @ %s 1 0 14666369 -amphibology n 1 1 @ 1 1 06604743 -amphiboly n 1 1 @ 1 0 06604743 -amphibrach n 1 1 @ 1 0 07095516 -amphicarpa n 1 3 @ #m %m 1 0 12505032 -amphicarpa_bracteata n 1 2 @ #m 1 0 12505253 -amphicarpaea n 1 3 @ #m %m 1 0 12505032 -amphicarpaea_bracteata n 1 2 @ #m 1 0 12505253 -amphictyony n 1 1 @ 1 0 08360248 -amphidiploid n 1 2 @ ; 1 0 01319932 -amphidiploidy n 1 1 @ 1 0 14570581 -amphigory n 1 1 @ 1 0 06608035 -amphimixis n 2 4 @ ~ #m %m 2 0 13555240 07373481 -amphineura n 1 3 @ #m %m 1 0 01954202 -amphioxidae n 1 3 @ #m %m 1 0 01467504 -amphioxus n 1 2 @ #m 1 0 01467804 -amphipod n 1 3 @ ~ #m 1 0 01992773 -amphipoda n 1 3 @ #m %m 1 0 01992516 -amphiprion n 1 3 @ #m %m 1 0 02606926 -amphiprion_percula n 1 2 @ #m 1 0 02607201 -amphisbaena n 2 3 @ %m ; 2 0 09492733 01683036 -amphisbaenia n 1 2 @ %m 1 0 01683036 -amphisbaenidae n 1 2 @ #m 1 0 01682920 -amphitheater n 2 5 @ ~ %p + ; 2 0 02705201 02704949 -amphitheatre n 2 5 @ ~ %p + ; 2 0 02705201 02704949 -amphitheatrum_flavium n 1 2 @ #p 1 0 03072828 -amphitropous_ovule n 1 1 @ 1 0 11679528 -amphiuma n 1 2 @ #m 1 0 01638722 -amphiumidae n 1 3 @ #m %m 1 0 01638482 -amphora n 1 1 @ 1 0 02705429 -amphotericin n 1 1 @ 1 0 02705558 -ampicillin n 1 1 @ 1 0 02705651 -ampleness n 2 2 @ + 2 0 05112910 05104256 -amplexicaul_leaf n 1 1 @ 1 0 13153532 -amplification n 3 3 @ ~ ; 3 1 00371487 05109324 00365329 -amplifier n 1 4 @ ~ #p + 1 1 02705944 -amplitude n 3 3 @ ~ ; 3 1 07444882 05115418 05098311 -amplitude_distortion n 1 1 @ 1 0 11512144 -amplitude_level n 1 1 @ 1 0 05098425 -amplitude_modulation n 1 1 @ 1 0 06281594 -ampoule n 1 1 @ 1 0 03923379 -ampul n 1 1 @ 1 0 03923379 -ampule n 1 1 @ 1 0 03923379 -ampulla n 2 3 @ #p + 2 0 05254197 02706221 -amputation n 2 2 @ + 2 0 14550469 00666350 -amputator n 1 2 @ + 1 0 09789449 -amputee n 1 1 @ 1 0 09789566 -amrinone n 1 1 @ 1 0 02706373 -amsinckia n 1 3 @ #m %m 1 0 12816753 -amsinckia_grandiflora n 1 2 @ #m 1 0 12817129 -amsinckia_intermedia n 1 2 @ #m 1 0 12816942 -amsler_grid n 1 1 @ 1 0 05931658 -amsonia n 1 3 @ #m %m 1 0 11770526 -amsonia_tabernaemontana n 1 2 @ #m 1 0 11770753 -amsterdam n 1 2 @ #p 1 1 08949737 -amulet n 1 2 @ ~ 1 1 02706586 -amun n 1 1 @ 1 0 09511368 -amun_ra n 1 1 @ 1 0 09511519 -amundsen n 1 1 @ 1 0 10816223 -amur n 1 2 @ #p 1 0 09196103 -amur_privet n 1 1 @ 1 0 12308112 -amur_river n 1 2 @ #p 1 0 09196103 -amusd n 1 1 @ 1 0 06703522 -amusement n 2 3 @ ~ + 2 2 07491476 00429048 -amusement_arcade n 1 1 @ 1 0 02706806 -amusement_park n 1 3 @ ~ %p 1 0 08494231 -amy_lowell n 1 1 @ 1 0 11142517 -amy_lyon n 1 1 @ 1 0 11026078 -amygdala n 1 2 @ #p 1 0 05495571 -amygdalaceae n 1 3 @ #m %m 1 0 12644464 -amygdalin n 1 2 @ ~ 1 0 14887464 -amygdaloid n 1 1 @ 1 0 14722738 -amygdaloid_nucleus n 1 2 @ #p 1 0 05495571 -amygdalotomy n 1 1 @ 1 0 00683722 -amygdalus n 1 2 @ #m 1 0 12644713 -amygdalus_communis n 1 3 @ ~ %p 1 0 12645174 -amygdalus_communis_amara n 1 1 @ 1 0 12645530 -amyl n 1 1 @ 1 0 14617834 -amyl_alcohol n 1 1 @ 1 0 14744698 -amyl_nitrate n 1 1 @ 1 0 02706916 -amylase n 1 2 @ ~ 1 0 14735457 -amyloid n 2 3 @ + ; 2 0 15054862 14730105 -amyloid_plaque n 1 1 @ 1 0 05244421 -amyloid_protein_plaque n 1 1 @ 1 0 05244421 -amyloidosis n 1 1 @ 1 0 14065693 -amylolysis n 1 2 @ + 1 0 13430391 -amylum n 1 2 @ ~ 1 0 15053867 -amyotonia n 1 1 @ 1 0 14545845 -amyotrophia n 1 1 @ 1 0 14105629 -amyotrophic_lateral_sclerosis n 1 1 @ 1 0 14105737 -amyotrophy n 1 1 @ 1 0 14105629 -amytal n 1 1 @ 1 0 02703692 -amyxia n 1 1 @ 1 0 14338848 -an n 1 1 @ 1 0 06698150 -an_nafud n 1 2 @ #p 1 0 09171376 -an_nefud n 1 2 @ #p 1 0 09171376 -ana n 2 2 @ ; 2 0 09507756 08462964 -anabantidae n 1 3 @ #m %m 1 0 02556014 -anabaptism n 1 2 @ + 1 0 06231794 -anabaptist n 1 4 @ ~ #m + 1 1 09677427 -anabaptist_denomination n 1 2 @ %m 1 0 08093111 -anabas n 1 3 @ #m %m 1 0 02556195 -anabas_testudineus n 1 2 @ #m 1 0 02556373 -anabiosis n 1 2 @ + 1 0 14063290 -anabolic_steroid n 1 1 @ 1 0 15111116 -anabolism n 1 4 ! @ #p + 1 0 13430495 -anabrus n 1 3 @ #m %m 1 0 02228565 -anabrus_simplex n 1 2 @ #m 1 0 02228697 -anacanthini n 1 2 @ #m 1 0 02521472 -anacardiaceae n 1 3 @ #m %m 1 0 12758639 -anacardium n 1 3 @ #m %m 1 0 12759120 -anacardium_occidentale n 1 3 @ #m %p 1 0 12759273 -anachronism n 3 2 @ + 3 2 15180304 02707036 09606873 -anacin_iii n 1 2 @ ; 1 0 02674482 -anaclisis n 1 2 @ ; 1 0 13930725 -anaclitic_depression n 1 1 @ 1 0 14389739 -anacoluthia n 1 1 @ 1 0 07098989 -anacoluthon n 1 1 @ 1 0 07098989 -anaconda n 1 2 @ #m 1 1 01743086 -anacyclus n 1 3 @ #m %m 1 0 11920867 -anacyclus_pyrethrum n 1 2 @ #m 1 0 11920998 -anadama_bread n 1 2 @ ; 1 0 07680168 -anadenanthera n 1 3 @ #m %m 1 0 11760128 -anadenanthera_colubrina n 1 2 @ #m 1 0 11760294 -anadiplosis n 1 1 @ 1 0 07099598 -anaemia n 2 3 @ ~ + 2 0 14372738 14195315 -anaerobe n 1 3 @ ~ + 1 0 01327028 -anaerobic_exercise n 1 2 @ ~ 1 0 00625993 -anaesthesia n 1 3 @ ~ + 1 1 14023491 -anaesthetic n 1 3 @ ~ + 1 0 02710766 -anaesthetic_agent n 1 2 @ ~ 1 0 02710766 -anaesthetist n 1 2 @ + 1 0 09793495 -anagallis n 1 3 @ #m %m 1 0 12092127 -anagallis_arvensis n 1 1 @ 1 0 12092417 -anagallis_tenella n 1 1 @ 1 0 12092629 -anagasta n 1 3 @ #m %m 1 0 02289845 -anagasta_kuehniella n 1 2 @ #m 1 0 02289988 -anaglyph n 2 3 @ ~ + 2 0 02707344 02707188 -anaglyphy n 1 2 @ + 1 0 13430786 -anagnost n 1 1 @ 1 0 09789668 -anagoge n 1 1 @ 1 0 06246241 -anagram n 1 3 @ ~ + 1 0 06287620 -anagrams n 1 1 @ 1 0 00502030 -anagyris n 1 3 @ #m %m 1 0 12505563 -anagyris_foetida n 1 2 @ #m 1 0 12505752 -anaheim n 1 3 @ #p %p 1 0 09062015 -anal_intercourse n 1 1 @ 1 0 00849294 -anal_personality n 1 2 @ ; 1 0 04619083 -anal_phase n 1 3 @ #p ; 1 0 15145782 -anal_retentive_personality n 1 2 @ ; 1 0 04619083 -anal_sex n 1 1 @ 1 0 00849294 -anal_sphincter n 1 3 @ #p %p 1 0 05571713 -anal_stage n 1 3 @ #p ; 1 0 15145782 -analbuminemia n 1 1 @ 1 0 14072126 -analecta n 1 1 @ 1 0 06612538 -analects n 1 1 @ 1 0 06612538 -analeptic n 1 2 @ + 1 0 02707547 -analgesia n 1 2 @ + 1 0 14552205 -analgesic n 1 3 @ ~ + 1 0 02707683 -analog n 1 2 @ ~ 1 0 04746430 -analog-digital_converter n 1 1 @ 1 0 03197446 -analog-to-digital_converter n 1 1 @ 1 0 03197446 -analog_clock n 1 1 @ 1 0 02708093 -analog_computer n 1 2 @ ~ 1 0 02708224 -analog_watch n 1 1 @ 1 0 02708433 -analogist n 1 2 @ + 1 0 09789898 -analogue n 1 2 @ ~ 1 1 04746430 -analogue_computer n 1 2 @ ~ 1 1 02708224 -analogy n 3 2 @ + 3 2 05780339 00651176 05942579 -analphabet n 1 1 @ 1 0 09790047 -analphabetic n 1 2 @ + 1 0 09790047 -analphabetism n 1 2 @ + 1 0 05649256 -analysand n 1 1 @ 1 0 09790188 -analyser n 1 2 @ + 1 0 02708711 -analysis n 6 6 ! @ ~ + ; - 6 3 00634276 05772667 06376014 07067876 06014043 00704305 -analysis_of_variance n 1 2 @ ; 1 0 06030601 -analysis_situs n 1 2 @ ; 1 0 06017594 -analyst n 3 3 @ ~ + 3 1 09790482 09791530 09790278 -analytic_geometry n 1 2 @ ; 1 0 06008382 -analytic_thinking n 1 2 @ ~ 1 0 05772667 -analytical_balance n 1 1 @ 1 0 02708555 -analytical_cubism n 1 1 @ 1 1 08476988 -analytical_geometry n 1 2 @ ; 1 0 06008382 -analytical_review n 1 1 @ 1 0 13411785 -analyticity n 1 2 @ + 1 1 05208690 -analyzer n 1 2 @ + 1 1 02708711 -anamnesis n 2 3 @ %p + 2 0 06515297 05761918 -anamnestic_reaction n 1 1 @ 1 0 00860857 -anamnestic_response n 1 1 @ 1 0 00860857 -anamorphism n 3 2 ! @ 3 0 13431221 13431043 02708885 -anamorphosis n 2 1 @ 2 0 13431221 02708885 -ananas n 2 4 @ #m #p %m 2 0 12607198 07753275 -ananas_comosus n 1 3 @ #m %p 1 0 12607456 -ananias n 1 2 @ ; 1 0 09607055 -anapaest n 1 1 @ 1 0 07095390 -anapest n 1 1 @ 1 0 07095390 -anaphalis n 1 3 @ #m %m 1 0 11921200 -anaphalis_margaritacea n 1 2 @ #m 1 0 11921395 -anaphase n 1 3 @ #p + 1 0 13431380 -anaphor n 1 1 @ 1 0 06287859 -anaphora n 2 1 @ 2 0 07100815 07100678 -anaphoric_pronoun n 1 1 @ 1 0 06325576 -anaphoric_relation n 1 1 @ 1 0 13802805 -anaphrodisia n 1 2 ! @ 1 0 07488676 -anaphylactic_shock n 1 1 @ 1 0 14067902 -anaphylaxis n 1 4 @ ~ + ; 1 0 14533547 -anaplasia n 1 2 @ + 1 0 14369194 -anaplasmosis n 1 1 @ 1 1 14260044 -anaplasty n 1 2 @ ~ 1 0 00690501 -anaprox n 1 3 @ %s ; 1 0 03808144 -anapsid n 1 4 ! @ ~ #m 1 0 01661592 -anapsid_reptile n 1 3 @ ~ #m 1 0 01661592 -anapsida n 1 3 @ #m %m 1 0 01661404 -anapurna n 2 2 @ #p 2 0 09527560 09197945 -anarchism n 1 2 @ + 1 0 06213890 -anarchist n 1 3 @ ~ + 1 1 09791816 -anarchy n 1 4 @ ~ + ; 1 1 13973059 -anarhichadidae n 1 3 @ #m %m 1 0 02616572 -anarhichas n 1 3 @ #m %m 1 0 02616705 -anarthria n 1 1 @ 1 0 14100092 -anas n 1 3 @ #m %m 1 0 01847565 -anas_acuta n 1 2 @ #m 1 0 01849157 -anas_americana n 1 1 @ 1 0 01848840 -anas_clypeata n 1 2 @ #m 1 0 01848976 -anas_crecca n 1 1 @ 1 0 01848323 -anas_discors n 1 1 @ 1 0 01848453 -anas_penelope n 1 3 @ ~ #m 1 0 01848648 -anas_platyrhynchos n 1 2 @ #m 1 0 01847806 -anas_querquedula n 1 1 @ 1 0 01848555 -anas_rubripes n 1 2 @ #m 1 0 01847978 -anasa n 1 3 @ #m %m 1 0 02239659 -anasa_tristis n 1 2 @ #m 1 0 02239774 -anasarca n 1 2 @ + 1 0 14315897 -anasazi n 1 2 @ ~ 1 0 09647473 -anaspid n 1 2 @ #m 1 0 01475940 -anaspida n 1 3 @ #m %m 1 0 01475794 -anastalsis n 1 2 ! @ 1 0 13431569 -anastatica n 1 2 @ %m 1 0 11870916 -anastatica_hierochuntica n 1 2 @ #m 1 0 11871059 -anastigmat n 1 1 @ 1 0 02709101 -anastigmatic_lens n 1 1 @ 1 0 02709265 -anastomosis n 1 2 @ + 1 1 05249420 -anastomotic_vein n 1 1 @ 1 0 05357366 -anastomus n 1 3 @ #m %m 1 0 02003456 -anastrophe n 1 1 @ 1 0 07101140 -anastylosis n 1 2 @ ; 1 0 00269471 -anathema n 2 2 @ + 2 0 09792125 07233863 -anathematisation n 1 2 @ + 1 0 00206600 -anathematization n 1 2 @ + 1 0 00206600 -anatidae n 1 3 @ #m %m 1 0 01845627 -anatole_france n 1 1 @ 1 0 10977368 -anatoli_karpov n 1 1 @ 1 0 11096991 -anatoli_yevgenevich_karpov n 1 1 @ 1 0 11096991 -anatolia n 1 4 @ #p %p - 1 0 08701942 -anatolian n 1 2 @ ~ 1 0 06975594 -anatolian_language n 1 2 @ ~ 1 0 06975594 -anatomical n 1 2 @ + 1 1 07151892 -anatomical_reference n 1 1 @ 1 0 07151892 -anatomical_sphincter n 1 2 @ ~ 1 0 05570839 -anatomical_structure n 1 2 @ ~ 1 0 05225602 -anatomist n 1 3 @ ~ + 1 0 09792237 -anatomy n 3 5 @ ~ #p + - 3 3 06057539 05217168 00646187 -anatotitan n 1 2 @ #m 1 0 01706401 -anatoxin n 1 1 @ 1 0 15034454 -anatropous_ovule n 1 1 @ 1 0 11679652 -anaxagoras n 1 1 @ 1 0 10816424 -anaximander n 1 1 @ 1 0 10816644 -anaximenes n 1 1 @ 1 0 10816890 -ancestor n 1 4 ! @ ~ + 1 1 09792555 -ancestor_worship n 1 1 @ 1 0 01029323 -ancestress n 1 1 @ 1 0 09792896 -ancestry n 2 3 @ ~ = 2 1 08101937 04922787 -anchor n 3 5 @ ~ #p %p + 3 2 02709367 05694232 09792969 -anchor_chain n 1 1 @ 1 0 02709637 -anchor_light n 1 1 @ 1 0 02709763 -anchor_ring n 1 2 @ ~ 1 0 13875392 -anchor_rope n 1 1 @ 1 0 02709637 -anchorage n 5 4 @ ~ #p + 5 0 13923582 13320691 09055906 08639776 00052052 -anchorage_ground n 1 3 @ ~ #p 1 0 08639776 -anchorite n 1 2 @ + 1 0 10519126 -anchorman n 1 1 @ 1 0 09792969 -anchorperson n 1 1 @ 1 0 09792969 -anchovy n 2 4 @ ~ #m #s 2 0 07783667 02533834 -anchovy_butter n 1 1 @ 1 0 07856895 -anchovy_dressing n 1 1 @ 1 0 07834065 -anchovy_paste n 1 2 @ %s 1 0 07783827 -anchovy_pear n 2 4 @ #m #p %p 2 0 12327528 07753448 -anchovy_pear_tree n 1 3 @ #m %p 1 0 12327528 -anchovy_pizza n 1 1 @ 1 0 07874343 -anchovy_sauce n 1 1 @ 1 0 07830493 -anchusa n 1 3 @ ~ #m 1 0 12817464 -anchusa_capensis n 1 1 @ 1 0 12817855 -anchusa_officinalis n 1 1 @ 1 0 12817694 -anchusa_riparia n 1 1 @ 1 0 12818004 -anchylosis n 1 1 @ 1 0 14022520 -ancien_regime n 1 2 @ ; 1 0 08051739 -ancient n 2 2 @ + 2 0 09793248 09793141 -ancient_greek n 1 2 @ ~ 1 0 06977434 -ancient_history n 2 1 @ 2 0 06514529 05612531 -ancient_pine n 1 1 @ 1 0 11612575 -ancientness n 1 2 @ + 1 0 04925756 -ancients n 1 2 @ ; 1 0 07943646 -ancistrodon n 1 3 @ #m %m 1 1 01754190 -ancohuma n 1 2 @ #p 1 0 09196302 -anconeous_muscle n 1 2 @ #p 1 0 05292856 -ancylidae n 1 3 @ #m %m 1 0 01949684 -ancylostomatidae n 1 3 @ #m %m 1 0 01932800 -ancylus n 1 3 @ #m %m 1 0 01949817 -ancylus_fluviatilis n 1 2 @ #m 1 0 01949973 -and_circuit n 1 1 @ 1 0 02709908 -and_gate n 1 1 @ 1 0 02709908 -andalucia n 1 3 @ #p %p 1 0 08493261 -andalusia n 1 4 @ #p %p + 1 0 08493261 -andaman_marble n 1 3 @ #m %s 1 0 12770892 -andaman_redwood n 1 2 @ #s 1 0 12565590 -andaman_sea n 1 3 @ #p %p 1 0 09196454 -andante n 2 2 @ + 2 0 15265219 07040148 -andean_condor n 1 2 @ #m 1 0 01619835 -andelmin n 1 3 @ ~ #m 1 0 12506181 -anders_celsius n 1 1 @ 1 0 10888891 -andersen n 1 1 @ 1 0 10817102 -anderson n 5 1 @ 5 0 10817935 10817717 10817607 10817458 10817244 -andes n 1 4 @ #p %p + 1 0 09196611 -andesite n 1 1 @ 1 0 14725364 -andhra_pradesh n 1 2 @ #p 1 0 08904954 -andira n 1 3 @ #m %m 1 0 12505987 -andira_inermis n 1 2 @ #m 1 0 12506341 -andiron n 1 1 @ 1 0 02710044 -andorra n 1 3 @ #p %m 1 0 09023118 -andorran n 1 3 @ #m + 1 0 09690496 -andradite n 1 2 @ ~ 1 0 14829264 -andre_derain n 1 1 @ 1 0 10931333 -andre_eglevsky n 1 1 @ 1 0 10953344 -andre_gide n 1 1 @ 1 0 10998651 -andre_le_notre n 1 1 @ 1 0 11127011 -andre_maginot n 1 1 @ 1 0 11149243 -andre_malraux n 1 1 @ 1 0 11152758 -andre_markoff n 1 1 @ 1 0 11157275 -andre_maurois n 1 1 @ 1 0 11165712 -andre_paul_guillaume_gide n 1 1 @ 1 0 10998651 -andre_weil n 1 1 @ 1 0 11379691 -andrea_guarneri n 1 1 @ 1 0 11017831 -andrea_mantegna n 1 1 @ 1 0 11154857 -andrea_palladio n 1 1 @ 1 0 11221495 -andreaea n 1 2 @ #m 1 0 11539825 -andreaeales n 1 3 @ #m %m 1 0 11539675 -andreas_vesalius n 1 1 @ 1 0 11364419 -andrei_andreyevich_gromyko n 1 1 @ 1 0 11017118 -andrei_arsenevich_tarkovsky n 1 1 @ 1 0 11331669 -andrei_dimitrievich_sakharov n 1 1 @ 1 0 11278498 -andrei_gromyko n 1 1 @ 1 0 11017118 -andrei_markov n 1 1 @ 1 0 11157275 -andrei_sakharov n 1 1 @ 1 0 11278498 -andrei_tarkovsky n 1 1 @ 1 0 11331669 -andrei_voznesenski n 1 1 @ 1 0 11369444 -andrena n 1 2 @ #m 1 1 02210427 -andrenid n 1 2 @ #m 1 0 02210427 -andrenidae n 1 3 @ #m %m 1 0 02210096 -andres_martinez n 1 2 @ ; 1 0 11201386 -andres_segovia n 1 1 @ 1 0 11291284 -andrew n 1 2 @ ; 1 0 10818088 -andrew's_clintonia n 1 2 @ #m 1 0 12472326 -andrew_carnegie n 1 1 @ 1 0 10882988 -andrew_d._white n 1 1 @ 1 0 11383546 -andrew_dickson_white n 1 1 @ 1 0 11383546 -andrew_fielding_huxley n 1 1 @ 1 0 11069974 -andrew_huxley n 1 1 @ 1 0 11069974 -andrew_jackson n 1 1 @ 1 0 11075823 -andrew_jackson_downing n 1 1 @ 1 0 10942279 -andrew_johnson n 1 1 @ 1 0 11088059 -andrew_lloyd_webber n 1 1 @ 1 0 11136405 -andrew_marvell n 1 1 @ 1 0 11160361 -andrew_mellon n 1 1 @ 1 0 11172609 -andrew_w._mellon n 1 1 @ 1 0 11172609 -andrew_william_mellon n 1 1 @ 1 0 11172609 -andrew_wyeth n 1 1 @ 1 0 11400126 -andrews n 1 1 @ 1 0 10818312 -andricus n 1 2 @ #m 1 0 02217201 -andrija_mohorovicic n 1 1 @ 1 0 11184531 -androecium n 1 1 @ 1 0 13093928 -androgen n 1 2 @ ~ 1 0 14747587 -androgenesis n 1 2 @ + 1 0 13431722 -androgenic_hormone n 1 2 @ ~ 1 0 14747587 -androgeny n 1 2 @ + 1 0 13431722 -androglossia n 1 1 @ 1 0 04982113 -androgyne n 1 2 @ + 1 0 10172080 -androgyny n 1 2 @ + 1 0 05008746 -android n 1 1 @ 1 0 02710201 -andromeda n 4 4 @ ~ #m ; 4 0 12243459 12229443 09497364 09197271 -andromeda_galaxy n 1 1 @ 1 0 08271656 -andromeda_glaucophylla n 1 1 @ 1 0 12229651 -andromeda_polifolia n 1 1 @ 1 0 12229887 -androphobia n 1 1 @ 1 0 14381997 -andropogon n 1 3 @ #m %m 1 0 12108249 -andropogon_furcatus n 1 1 @ 1 0 12133682 -andropogon_gerardii n 1 1 @ 1 0 12133682 -andropogon_scoparius n 1 1 @ 1 0 12133462 -andropogon_virginicus n 1 1 @ 1 0 12108613 -androsterone n 1 1 @ 1 0 14747981 -andryala n 1 2 @ #m 1 0 11921792 -andrzej_wajda n 1 1 @ 1 0 11370554 -andvari n 1 2 @ ; 1 0 09579198 -andy_warhol n 1 1 @ 1 0 11374448 -anecdote n 1 2 @ + 1 1 07220586 -anecdotist n 1 3 @ ~ + 1 0 09793352 -anechoic_chamber n 1 1 @ 1 0 02710324 -aneides n 1 3 @ #m %m 1 0 01636984 -aneides_lugubris n 1 1 @ 1 0 01637338 -anemia n 3 5 @ ~ #m %m + 3 1 14195315 14372738 12955639 -anemia_adiantifolia n 1 2 @ #m 1 0 12955840 -anemic_anoxia n 1 1 @ 1 0 14043458 -anemic_hypoxia n 1 1 @ 1 0 14041508 -anemography n 1 1 @ 1 0 00998329 -anemometer n 1 2 @ + 1 0 02710429 -anemometry n 1 1 @ 1 0 00998423 -anemone n 2 3 @ ~ #m 2 0 11725015 01914609 -anemone_canadensis n 1 1 @ 1 0 11725480 -anemone_cylindrica n 1 2 @ ~ 1 0 11725623 -anemone_fish n 1 3 @ ~ #m 1 0 02607072 -anemone_ludoviciana n 1 1 @ 1 0 11737752 -anemone_nemorosa n 1 1 @ 1 0 11725821 -anemone_occidentalis n 1 1 @ 1 0 11738063 -anemone_pulsatilla n 1 1 @ 1 0 11738203 -anemone_quinquefolia n 1 1 @ 1 0 11725973 -anemone_riparia n 1 1 @ 1 0 11726145 -anemone_sylvestris n 1 1 @ 1 0 11726269 -anemone_tetonensis n 1 1 @ 1 0 11725311 -anemone_virginiana n 1 1 @ 1 0 11726433 -anemonella n 1 3 @ #m %m 1 0 11726569 -anemonella_thalictroides n 1 2 @ #m 1 0 11726707 -anemopsis n 1 3 @ #m %m 1 0 13152203 -anemopsis_californica n 1 2 @ #m 1 0 13152339 -anencephalia n 1 1 @ 1 0 14152617 -anencephaly n 1 2 @ + 1 0 14152617 -anergy n 2 1 @ 2 0 14128536 14010845 -aneroid n 1 3 @ #p + 1 0 02710600 -aneroid_barometer n 1 2 @ #p 1 0 02710600 -anesthesia n 1 3 @ ~ + 1 0 14023491 -anesthesiologist n 1 2 @ + 1 0 09793495 -anesthesiology n 1 2 @ + 1 0 06046383 -anesthetic n 1 3 @ ~ + 1 0 02710766 -anesthetic_agent n 1 2 @ ~ 1 0 02710766 -anesthetist n 1 2 @ + 1 0 09793495 -anesthyl n 1 1 @ 1 0 02711110 -anestrum n 1 2 @ ~ 1 0 14038482 -anestrus n 1 4 ! @ ~ + 1 0 14038482 -anethum n 1 2 @ #m 1 0 12931449 -anethum_graveolens n 1 2 @ %p 1 0 12931542 -aneuploidy n 1 1 @ 1 0 14022661 -aneurin n 1 1 @ 1 0 15091129 -aneurism n 1 3 @ ~ + 1 0 14106025 -aneurysm n 1 3 @ ~ + 1 0 14106025 -ang n 1 2 @ #p 1 0 08197149 -angara n 1 2 @ #p 1 0 09197432 -angara_river n 1 2 @ #p 1 0 09197432 -angas n 1 1 @ 1 0 06982989 -angel n 4 6 @ ~ #m #p %p + 4 1 09538915 10546850 09793717 09197660 -angel's_trumpet n 2 2 @ #m 2 0 12899752 12899537 -angel-wing_begonia n 1 1 @ 1 0 12361135 -angel_cake n 1 1 @ 1 0 07632240 -angel_dust n 1 1 @ 1 0 03921499 -angel_falls n 1 2 @ #p 1 0 09197660 -angel_food_cake n 1 1 @ 1 0 07632240 -angel_shark n 1 2 @ #m 1 0 01495493 -angelfish n 3 2 @ #m 3 0 02605936 02604954 01495493 -angelica n 3 3 @ ~ #m 3 0 12931906 07826453 07826340 -angelica_archangelica n 1 1 @ 1 0 12932173 -angelica_sylvestris n 1 1 @ 1 0 12932365 -angelim n 1 3 @ ~ #m 1 0 12506181 -angelique n 1 3 @ ~ #m 1 0 12931906 -angelo_correr n 1 1 @ 1 0 11014450 -angelo_guiseppe_roncalli n 1 1 @ 1 0 11086607 -angelology n 1 1 @ 1 0 06182757 -angelus n 2 1 @ 2 0 07446744 06456384 -angelus_bell n 1 1 @ 1 0 07446744 -anger n 3 3 @ ~ + 3 2 07516354 14036539 00758972 -angevin n 1 2 @ #m 1 0 09709229 -angevine n 1 2 @ #m 1 0 09709229 -angiitis n 1 1 @ 1 0 14258176 -angina n 2 3 @ ~ + 2 0 14173625 14108039 -angina_pectoris n 1 1 @ 1 0 14108039 -angiocardiogram n 1 1 @ 1 0 02711237 -angiocarp n 1 2 @ + 1 0 11665648 -angioedema n 1 1 @ 1 0 14120310 -angiogenesis n 1 1 @ 1 0 13431992 -angiogenesis_inhibitor n 1 1 @ 1 0 02711422 -angiogram n 1 2 @ ~ 1 0 02711573 -angiography n 1 2 @ ~ 1 0 00905336 -angiohemophilia n 1 1 @ 1 0 14171176 -angiologist n 1 2 @ + 1 0 09793830 -angiology n 1 2 @ + 1 0 06046528 -angioma n 1 3 @ ~ + 1 0 14235928 -angiopathy n 1 2 @ ~ 1 0 14071419 -angioplasty n 1 1 @ 1 0 00666468 -angiopteris n 1 2 @ #m 1 0 13215586 -angiopteris_evecta n 1 2 @ #m 1 0 13215586 -angiosarcoma n 1 1 @ 1 0 14240262 -angioscope n 1 1 @ 1 0 02711780 -angiosperm n 1 5 @ ~ #m %p + 1 0 11665372 -angiospermae n 1 3 @ #m %m 1 0 11664929 -angiospermous_tree n 1 3 @ ~ #m 1 0 13109733 -angiospermous_yellowwood n 1 2 @ ~ 1 0 11650919 -angiotelectasia n 1 1 @ 1 0 14014521 -angiotensin n 1 2 @ ~ 1 0 02711890 -angiotensin-converting_enzyme n 1 1 @ 1 0 14735642 -angiotensin-converting_enzyme_inhibitor n 1 2 @ ~ 1 0 02673637 -angiotensin_converting_enzyme n 1 1 @ 1 0 14735642 -angiotensin_i n 1 1 @ 1 0 02712134 -angiotensin_ii n 1 1 @ 1 0 02712280 -angiotensin_ii_inhibitor n 1 2 @ ~ 1 0 02712393 -angiotonin n 1 2 @ ~ 1 0 02711890 -angle n 3 3 @ ~ + 3 2 13887509 06211078 09702673 -angle-closure_glaucoma n 1 1 @ 1 0 14255536 -angle_bracket n 2 1 @ 2 0 06842452 02712545 -angle_iron n 1 1 @ 1 0 02712545 -angle_of_attack n 1 1 @ 1 0 13891082 -angle_of_dip n 1 2 @ ; 1 0 13892897 -angle_of_extinction n 1 1 @ 1 1 13891735 -angle_of_incidence n 1 2 @ ~ 1 0 13890869 -angle_of_inclination n 1 2 @ ; 1 0 13889602 -angle_of_reflection n 1 1 @ 1 0 13891371 -angle_of_refraction n 1 1 @ 1 0 13891547 -angle_of_view n 1 1 @ 1 0 13919059 -angled_loofah n 1 1 @ 1 0 12166929 -angledozer n 1 1 @ 1 0 02712643 -angler n 3 4 @ #m %p + 3 0 09794081 09793946 02548247 -angler_fish n 1 3 @ #m %p 1 0 02548247 -anglerfish n 1 3 @ #m %p 1 0 02548247 -anglesea n 1 2 @ #p 1 0 08895928 -anglesea_island n 1 2 @ #p 1 0 08895928 -anglesey n 1 2 @ #p 1 0 08895928 -anglesey_island n 1 2 @ #p 1 0 08895928 -anglewing n 1 1 @ 1 0 02277422 -angleworm n 1 2 @ #m 1 0 01935395 -anglia n 1 1 @ 1 0 08873067 -anglian n 1 1 @ 1 0 06949852 -anglican n 1 4 ! @ #m + 1 1 09958292 -anglican_catholic n 1 2 @ #m 1 0 09680235 -anglican_church n 1 5 @ ~ %m ; - 1 1 08087981 -anglican_communion n 1 5 @ ~ %m ; - 1 0 08087981 -anglicanism n 1 2 @ ~ 1 0 06229106 -anglicisation n 1 2 @ + 1 0 13432085 -anglicism n 2 1 @ 2 0 07081473 00413674 -anglicization n 1 2 @ + 1 0 13432085 -angling n 1 3 @ ~ - 1 0 00454237 -anglo-american n 1 1 @ 1 1 09740724 -anglo-catholicism n 1 1 @ 1 0 06229240 -anglo-french n 1 1 @ 1 0 06965834 -anglo-indian n 1 2 @ + 1 0 09702541 -anglo-norman n 1 1 @ 1 0 06965834 -anglo-saxon n 3 5 @ ~ + ; - 3 1 09701977 09702134 06949591 -anglo-saxon_deity n 1 3 @ ~ ; 1 0 09586011 -anglomania n 1 1 @ 1 0 05670512 -anglophil n 1 1 @ 1 0 09794211 -anglophile n 1 1 @ 1 0 09794211 -anglophilia n 1 3 ! @ + 1 1 07500957 -anglophobe n 1 1 @ 1 0 09794320 -anglophobia n 1 3 ! @ + 1 0 07502099 -angola n 1 5 @ #p %m %p + 1 0 08707917 -angolan n 1 4 @ ~ #m + 1 0 09690621 -angolan_capital n 1 2 @ #p 1 0 08708304 -angolan_monetary_unit n 1 2 @ ~ 1 0 13683805 -angolese n 1 1 @ 1 0 09690762 -angora n 4 2 @ #p 4 0 09040601 02417387 02328150 02123478 -angora_cat n 1 1 @ 1 0 02123478 -angora_goat n 1 1 @ 1 0 02417387 -angora_rabbit n 1 1 @ 1 0 02328150 -angostura n 1 1 @ 1 0 13163093 -angostura_bark n 1 1 @ 1 0 13163093 -angostura_bridge n 1 2 @ #p 1 0 02712762 -angoumois_grain_moth n 1 2 @ #m 1 0 02294097 -angoumois_moth n 1 2 @ #m 1 0 02294097 -angraecum n 1 3 @ #m %m 1 0 12044571 -angrecum n 1 2 @ #m 1 0 12044784 -angriness n 1 3 @ ~ + 1 0 14036539 -angry_walk n 1 1 @ 1 0 00290015 -angst n 1 1 @ 1 1 07526002 -angstrom n 1 3 @ #p %p 1 0 13658027 -angstrom_unit n 1 3 @ #p %p 1 0 13658027 -anguid_lizard n 1 3 @ ~ #m 1 0 01689411 -anguidae n 1 3 @ #m %m 1 0 01689226 -anguilla n 2 5 @ #m #p %m + 2 0 08708742 02526673 -anguilla_sucklandii n 1 1 @ 1 0 02527057 -anguillan n 1 3 @ #m + 1 0 09690864 -anguillidae n 1 3 @ #m %m 1 0 02526486 -anguilliformes n 1 3 @ #m %m 1 0 02525866 -anguillula n 1 3 @ #m %m 1 0 01931984 -anguillula_aceti n 1 2 @ #m 1 0 01932151 -anguis n 1 3 @ #m %m 1 0 01690005 -anguis_fragilis n 1 2 @ #m 1 0 01690149 -anguish n 2 2 @ + 2 2 07496755 14449022 -angular_acceleration n 1 2 @ ; 1 0 11469108 -angular_artery n 1 1 @ 1 0 05335850 -angular_distance n 1 2 @ ~ 1 0 13888491 -angular_momentum n 1 1 @ 1 0 05029327 -angular_position n 1 2 @ ~ 1 0 13836371 -angular_shape n 1 2 @ ~ 1 0 13864763 -angular_unit n 1 2 @ ~ 1 0 13600097 -angular_vein n 1 1 @ 1 0 05357500 -angular_velocity n 1 2 @ ; 1 0 11469265 -angularity n 2 4 ! @ ~ + 2 0 13864763 05070849 -angulation n 2 1 @ 2 0 00998514 00405106 -angus n 2 2 @ ; 2 0 09507909 02405929 -angus_frank_johnstone_wilson n 1 1 @ 1 0 11392210 -angus_og n 1 2 @ ; 1 0 09507909 -angwantibo n 1 2 @ #m 1 0 02499568 -anhedonia n 1 1 @ 1 0 14026285 -anhidrosis n 1 1 @ 1 0 14023804 -anhima n 1 3 @ #m %m 1 0 01860713 -anhima_cornuta n 1 2 @ #m 1 0 01860864 -anhimidae n 1 3 @ #m %m 1 0 01860337 -anhinga n 1 3 @ ~ #m 1 0 02054502 -anhinga_anhinga n 1 1 @ 1 0 02054711 -anhingidae n 1 3 @ #m %m 1 0 02054251 -anhydride n 1 2 @ ~ 1 0 14767291 -anhydrosis n 1 1 @ 1 0 14023804 -ani n 1 2 @ #m 1 0 01824344 -anicius_manlius_severinus_boethius n 1 1 @ 1 0 10854777 -anigozanthus n 1 3 @ #m %m 1 0 12312405 -anigozanthus_manglesii n 1 2 @ #m 1 0 12312728 -anil n 2 1 @ 2 0 14754860 12536291 -aniline n 1 1 @ 1 0 14754505 -aniline_dye n 1 1 @ 1 0 14754985 -aniline_oil n 1 1 @ 1 0 14754505 -anima n 1 2 @ ; 1 0 05675715 -animadversion n 1 3 @ ~ + 1 0 06709998 -animal n 1 7 @ ~ #m %s %p + - 1 1 00015388 -animal-worship n 1 2 @ ~ 1 0 01046441 -animal_black n 1 1 @ 1 0 14668895 -animal_charcoal n 1 1 @ 1 0 14668895 -animal_communication n 1 2 @ ~ 1 0 06796506 -animal_disease n 1 2 @ ~ 1 0 14253124 -animal_fancier n 1 2 @ ~ 1 0 09794426 -animal_fat n 1 2 @ ~ 1 0 14787520 -animal_fiber n 1 2 @ ~ 1 0 14959472 -animal_fibre n 1 2 @ ~ 1 0 14959472 -animal_foot n 1 2 @ ~ 1 0 02153445 -animal_glue n 1 1 @ 1 0 14703190 -animal_group n 1 3 @ ~ #m 1 0 07993929 -animal_husbandry n 1 2 @ - 1 0 00917211 -animal_kingdom n 1 2 @ %m 1 0 01313093 -animal_leg n 1 3 @ #p %p 1 0 02464327 -animal_magnetism n 1 1 @ 1 0 04686388 -animal_material n 1 2 @ ~ 1 0 14755804 -animal_nature n 1 1 @ 1 0 04623443 -animal_oil n 1 2 @ ~ 1 0 14755077 -animal_order n 1 3 @ ~ #m 1 0 01342529 -animal_pigment n 1 2 @ ~ 1 0 14756039 -animal_product n 1 2 @ ~ 1 0 14700745 -animal_psychology n 1 1 @ 1 0 06138789 -animal_scientist n 1 2 @ ~ 1 0 10806222 -animal_skin n 1 2 @ ~ 1 0 14758842 -animal_starch n 1 1 @ 1 0 14795749 -animal_stuffer n 1 1 @ 1 0 10693459 -animal_tissue n 1 3 @ ~ #s 1 0 05267548 -animal_toxin n 1 2 @ ~ 1 0 15034741 -animal_trainer n 1 2 @ ~ 1 0 10159045 -animal_virus n 1 2 @ ~ 1 0 01335659 -animalcule n 1 1 @ 1 0 01324019 -animalculum n 1 1 @ 1 0 01324019 -animalia n 1 2 @ %m 1 0 01313093 -animalisation n 1 1 @ 1 0 00271879 -animalism n 2 2 @ + 2 0 05958549 04624517 -animality n 1 2 @ + 1 0 04623443 -animalization n 2 1 @ 2 0 02712907 00271879 -animate_being n 1 6 @ ~ #m %s %p - 1 0 00015388 -animate_thing n 1 3 @ ~ - 1 0 00004258 -animated_cartoon n 1 1 @ 1 0 06616464 -animated_oat n 1 1 @ 1 0 12110475 -animateness n 1 5 ! @ ~ = + 1 0 05005447 -animation n 6 3 @ ~ = 6 0 13961642 05005809 04631700 01048466 00908405 00552436 -animatism n 1 2 @ + 1 0 05735256 -animator n 2 2 @ + 2 0 10056103 09794550 -animatronics n 1 1 @ 1 0 06133802 -anime n 2 1 @ 2 0 14896018 14766265 -animism n 1 2 @ + 1 0 05958712 -animist n 1 2 @ + 1 0 09794668 -animosity n 1 1 @ 1 1 07548100 -animus n 1 1 @ 1 0 07548100 -anion n 1 3 @ ~ + 1 1 09197815 -anionic n 1 2 @ + 1 1 14618050 -anionic_compound n 1 1 @ 1 0 14617944 -anionic_detergent n 1 1 @ 1 0 14618050 -anise n 2 5 @ #m #s #p %p 2 0 12943049 07826653 -anise_cookie n 1 2 @ %s 1 0 07637045 -anise_hyssop n 1 1 @ 1 0 12840362 -anise_plant n 1 3 @ #m %p 1 0 12943049 -anise_seed n 1 3 @ #s #p 1 0 07826653 -anise_tree n 1 3 @ ~ #m 1 0 11708658 -aniseed n 1 3 @ #s #p 1 0 07826653 -aniseikonia n 1 2 @ + 1 0 14097162 -anisette n 1 2 @ %s 1 0 07908647 -anisette_de_bordeaux n 1 2 @ %s 1 0 07908647 -anisogamete n 1 2 @ + 1 0 05457201 -anisogamy n 1 3 @ + ; 1 0 13432249 -anisometropia n 1 2 @ + 1 0 14555560 -anisoptera n 1 2 @ #m 1 0 02268334 -anisotremus n 1 3 @ #m %m 1 0 02589486 -anisotremus_surinamensis n 1 1 @ 1 0 02589796 -anisotremus_virginicus n 1 2 @ #m 1 0 02589623 -anisotropy n 1 3 ! @ + 1 0 04917680 -anjou n 2 3 @ #p %m 2 0 08940371 07768139 -ankara n 1 2 @ #p 1 0 09040601 -ankle n 1 4 @ #p %p + 1 1 05578442 -ankle_brace n 1 1 @ 1 0 02713003 -ankle_bracelet n 1 1 @ 1 0 02713097 -ankle_joint n 1 3 @ #p %p 1 0 05578442 -anklebone n 1 2 @ #p 1 0 05271383 -anklet n 3 2 @ + 3 0 02713364 02713218 02713097 -anklets n 1 1 @ 1 0 02713218 -ankus n 1 1 @ 1 0 02713496 -ankyloglossia n 1 1 @ 1 0 14472111 -ankylosaur n 1 3 @ ~ #m 1 0 01702256 -ankylosaurus n 1 3 @ ~ #m 1 0 01702256 -ankylosing_spondylitis n 1 1 @ 1 0 14220474 -ankylosis n 1 2 @ + 1 0 14022520 -anlage n 1 1 @ 1 0 05298159 -ann_arbor n 1 3 @ #p %p 1 0 09100223 -anna n 1 1 @ 1 0 13704418 -anna_amalia_mercouri n 1 1 @ 1 0 11175748 -anna_eleanor_roosevelt n 1 1 @ 1 0 11270380 -anna_howard_shaw n 1 1 @ 1 0 11296139 -anna_mary_robertson_moses n 1 1 @ 1 0 11193645 -anna_pavlova n 1 1 @ 1 0 11227400 -annaba n 1 2 @ #p 1 0 08706247 -annalist n 1 2 @ + 1 0 09794797 -annals n 2 2 @ + 2 0 06597617 06515662 -annam n 1 6 @ #m #p %m %p - 1 0 09163192 -annamese n 2 2 @ #m 2 0 09747191 06937229 -annamite n 1 1 @ 1 0 06937229 -annapolis n 1 2 @ #p 1 0 09094217 -annapurna n 2 2 @ #p 2 0 09527560 09197945 -anne n 1 1 @ 1 0 10818469 -anne_boleyn n 1 1 @ 1 0 10855431 -anne_bradstreet n 1 1 @ 1 0 10861174 -anne_bronte n 1 1 @ 1 0 10865860 -anne_dudley_bradstreet n 1 1 @ 1 0 10861174 -anne_hathaway n 1 1 @ 1 0 11034485 -anne_hutchinson n 1 1 @ 1 0 11069085 -anne_mansfield_sullivan n 1 1 @ 1 0 11324428 -anne_robert_jacques_turgot n 1 1 @ 1 0 11352192 -anne_sexton n 1 1 @ 1 0 11294582 -anne_sullivan n 1 1 @ 1 0 11324428 -annealing n 1 1 @ 1 0 00402951 -annelid n 1 4 @ ~ #m + 1 0 01934440 -annelid_worm n 1 3 @ ~ #m 1 0 01934440 -annelida n 1 3 @ #m %m 1 0 01934207 -annex n 1 4 @ ~ #p + 1 0 02713594 -annexa n 1 1 @ 1 0 05221649 -annexation n 2 2 @ + 2 0 00373418 00078536 -annexe n 1 3 @ ~ #p 1 0 02713594 -annie_oakley n 1 1 @ 1 0 11210806 -anniellidae n 1 3 @ #m %m 1 0 01691085 -annihilation n 2 3 @ ~ + 2 2 00218208 07330828 -annihilator n 1 2 @ + 1 0 09794917 -anniversary n 1 2 @ ~ 1 1 15249799 -annon n 1 2 @ #p 1 0 07761611 -annona n 1 3 @ #m %m 1 0 11693812 -annona_cherimola n 1 2 @ %p 1 0 11694300 -annona_diversifolia n 1 2 @ %p 1 0 11694469 -annona_glabra n 1 2 @ %p 1 0 11695285 -annona_muricata n 1 2 @ %p 1 0 11694664 -annona_reticulata n 1 2 @ %p 1 0 11694866 -annona_squamosa n 1 2 @ %p 1 0 11695085 -annonaceae n 1 3 @ #m %m 1 0 11693566 -annotating n 1 1 @ 1 0 00371735 -annotation n 2 3 @ ~ + 2 0 06763273 00371735 -annotator n 1 2 @ + 1 0 09795010 -announcement n 2 3 @ ~ + 2 2 06726158 06746580 -announcer n 2 3 @ ~ + 2 0 09795334 09795124 -annoyance n 5 3 @ ~ + 5 2 14406573 07518261 09778537 05830059 00418394 -annoyer n 1 2 @ + 1 0 10695555 -annoying n 1 2 @ ~ 1 0 00418394 -annual n 2 4 @ ~ + ; 2 0 11552806 06426468 -annual_fern n 1 2 @ #m 1 0 13208302 -annual_parallax n 1 2 @ ~ 1 0 11528636 -annual_ring n 1 1 @ 1 0 11424816 -annual_salt-marsh_aster n 1 1 @ 1 0 11935627 -annualry n 1 1 @ 1 0 05567489 -annuitant n 1 1 @ 1 0 09795556 -annuity n 1 2 @ ~ 1 0 13294503 -annuity_in_advance n 1 2 @ ~ 1 0 13294763 -annular_eclipse n 1 1 @ 1 0 07369099 -annular_scotoma n 1 1 @ 1 0 14556426 -annulet n 3 2 @ ; 3 0 02713992 02713835 02713769 -annulment n 3 4 @ ~ + ; 3 0 14564056 01240979 00231887 -annulus n 2 4 @ ~ #p ; 2 0 13875392 13095348 -annum n 1 2 @ ; 1 0 15204201 -annunciation n 3 4 @ ~ #p ; 3 0 15186147 06747190 06726158 -annunciation_day n 1 2 @ #p 1 0 15186147 -annunciation_lily n 1 1 @ 1 0 12426978 -annunciator n 1 2 @ + 1 0 02714139 -annwfn n 1 2 @ ; 1 0 05626618 -annwn n 1 2 @ ; 1 0 05626618 -ano n 1 2 @ ; 1 0 08020242 -anoa n 1 2 @ #m 1 0 02409038 -anoa_depressicornis n 1 2 @ #m 1 0 02409038 -anoa_mindorensis n 1 2 @ #m 1 0 02409202 -anobiidae n 1 3 @ #m %m 1 0 02177644 -anode n 2 5 ! @ ~ #p + 2 1 02714315 02714535 -anodonta n 1 3 @ #m %m 1 0 01965111 -anodyne n 1 3 @ ~ + 1 0 02707683 -anoectochilus n 1 3 @ #m %m 1 0 12045004 -anoestrum n 1 2 @ ~ 1 0 14038482 -anoestrus n 1 3 @ ~ + 1 0 14038482 -anogramma n 1 3 @ #m %m 1 0 13208138 -anogramma_leptophylla n 1 2 @ #m 1 0 13208302 -anointer n 1 2 @ + 1 0 09795639 -anointing n 1 2 @ ~ 1 0 00712833 -anointing_of_the_sick n 1 1 @ 1 0 01039637 -anointment n 1 3 @ ~ + 1 0 00712833 -anole n 1 2 @ #m 1 0 01682714 -anolis n 1 3 @ #m %m 1 0 01682588 -anolis_carolinensis n 1 2 @ #m 1 0 01682714 -anomala n 1 3 @ #m %m 1 0 02173571 -anomala_orientalis n 1 2 @ #m 1 0 02173784 -anomalist n 1 2 @ + 1 0 09606380 -anomalistic_month n 1 1 @ 1 0 15208036 -anomalistic_year n 1 1 @ 1 0 15201822 -anomalopidae n 1 3 @ #m %m 1 0 01451524 -anomalops n 1 2 @ #m 1 0 01451863 -anomalopteryx n 1 2 @ #m 1 0 01523493 -anomalopteryx_oweni n 1 2 @ #m 1 0 01523493 -anomalous_communication n 1 2 @ ~ 1 0 07255791 -anomalousness n 1 3 @ ~ + 1 0 14505821 -anomaly n 3 4 @ ~ + ; 3 0 14505821 09606527 08622763 -anomia n 2 3 @ #m %m 2 0 14098663 01962350 -anomia_ephippium n 1 2 @ #m 1 0 01962506 -anomic_aphasia n 1 1 @ 1 0 14098663 -anomie n 2 2 @ + 2 1 14415898 04851865 -anomiidae n 1 3 @ #m %m 1 0 01962223 -anomy n 2 2 @ + 2 0 14415898 04851865 -anonym n 1 2 @ ~ 1 0 06338278 -anonymity n 1 2 @ + 1 1 14436285 -anonymous_file_transfer_protocol n 1 1 @ 1 0 06665612 -anonymous_ftp n 1 1 @ 1 0 06665612 -anopheles n 1 3 @ #m %m 1 0 02201252 -anopheline n 1 3 @ #m + 1 0 02201497 -anopia n 1 1 @ 1 0 14553873 -anoplophora_glabripennis n 1 1 @ 1 0 02183096 -anoplura n 1 3 @ #m %m 1 0 02183697 -anorak n 1 3 @ ~ ; 1 0 03891051 -anorchia n 1 1 @ 1 0 14022849 -anorchidism n 1 1 @ 1 0 14022849 -anorchism n 1 1 @ 1 0 14022849 -anorectic n 1 2 @ + 1 0 09795751 -anorexia n 1 3 @ ~ + 1 1 14055796 -anorexia_nervosa n 1 2 @ ; 1 0 14061263 -anorexic n 1 2 @ + 1 0 09795751 -anorgasmia n 1 1 @ 1 0 14056588 -anorthite n 1 2 @ + 1 0 14865667 -anorthography n 1 1 @ 1 0 14095948 -anorthopia n 1 1 @ 1 0 14097321 -anosmia n 1 2 @ + 1 0 14552477 -anostraca n 1 3 @ #m %m 1 0 01995137 -anouilh n 1 1 @ 1 0 10818715 -anova n 1 2 @ ; 1 0 06030601 -anovulant n 1 3 @ ~ %s 1 0 03936895 -anovulation n 1 2 ! @ 1 0 13432443 -anovulatory_drug n 1 3 @ ~ %s 1 0 03936895 -anoxemia n 1 2 @ + 1 0 14503234 -anoxia n 1 3 @ ~ + 1 0 14043243 -anoxic_anoxia n 1 1 @ 1 0 14043579 -anpu n 1 1 @ 1 0 09511712 -ans n 1 3 @ #p %p 1 0 05504532 -ansaid n 1 3 @ %s ; 1 0 03371532 -ansar_al-islam n 1 2 @ ; 1 0 08015321 -ansar_al_islam n 1 2 @ ; 1 0 08015321 -anselm n 1 1 @ 1 0 10818860 -anser n 1 3 @ #m %m 1 0 01856225 -anser_anser n 1 2 @ #m 1 0 01856553 -anser_cygnoides n 1 2 @ #m 1 0 01856380 -anseres n 1 2 @ #m 1 0 01846156 -anseriform_bird n 1 3 @ ~ #m 1 0 01845477 -anseriformes n 1 3 @ #m %m 1 0 01845272 -anserinae n 1 2 @ #m 1 0 01858023 -anshar n 1 2 @ ; 1 0 09515269 -answer n 5 5 ! @ ~ + ; 5 3 06746005 06743506 07200527 06560254 01234952 -answerability n 1 2 @ + 1 0 04669828 -answerableness n 1 2 @ + 1 0 04669828 -answerer n 1 3 @ ~ + 1 0 10524413 -answering_machine n 1 1 @ 1 0 02714751 -ant n 1 3 @ ~ #m 1 1 02219486 -ant_bear n 2 2 @ #m 2 0 02460451 02082791 -ant_bird n 1 3 @ ~ #m 1 0 01553142 -ant_cow n 1 1 @ 1 0 02253494 -ant_lion n 2 2 @ #m 2 0 02264232 02264021 -ant_shrike n 1 2 @ #m 1 0 01553762 -ant_thrush n 1 2 @ #m 1 0 01553527 -antabuse n 1 2 @ ; 1 0 03214051 -antacid n 1 3 @ ~ + 1 0 14778019 -antagonism n 4 4 @ ~ + ; 4 0 13980288 13860548 07548366 01074252 -antagonist n 3 4 ! @ ~ + 3 1 09773245 05293420 02714883 -antagonistic_muscle n 1 3 @ ~ ; 1 0 05293040 -antakiya n 1 2 @ #p 1 0 09040998 -antakya n 1 2 @ #p 1 0 09040998 -antalya n 1 2 @ #p 1 0 09040839 -antananarivo n 1 2 @ #p 1 0 08962465 -antapex n 1 2 ! @ 1 0 08495249 -antarctic n 1 3 @ %p + 1 0 08494459 -antarctic_circle n 1 1 @ 1 0 08494676 -antarctic_continent n 1 3 @ #p %p 1 0 09198106 -antarctic_ocean n 1 2 @ #p 1 0 09198574 -antarctic_peninsula n 1 2 @ #p 1 0 09198755 -antarctic_zone n 1 2 @ %p 1 0 08494459 -antarctica n 1 3 @ #p %p 1 0 09198106 -antares n 1 2 @ #m 1 1 09198997 -antbird n 1 3 @ ~ #m 1 0 01553142 -ante n 1 3 @ + ; 1 0 13343917 -anteater n 6 3 @ ~ #m 6 1 02461830 02460009 02082791 01885498 01872772 01872401 -antecedence n 1 2 @ + 1 0 05047279 -antecedency n 1 2 @ + 1 0 05047279 -antecedent n 4 3 @ ~ + 4 2 09792555 07326880 13844923 06603651 -antechamber n 1 3 @ ~ #p 1 0 02715513 -antediluvian n 2 2 @ + 2 0 09795894 09793248 -antediluvian_patriarch n 1 1 @ 1 0 09795894 -antedon n 1 4 @ ~ #m %m 1 0 02320888 -antedonidae n 1 4 @ ~ #m %m 1 0 02320621 -antefix n 1 1 @ 1 0 02715096 -antelope n 1 2 @ ~ 1 1 02419796 -antelope_chipmunk n 1 1 @ 1 0 02357911 -antelope_squirrel n 1 1 @ 1 0 02357911 -antenna n 3 4 @ ~ #p + 3 2 02715229 04843270 02584915 -antennaria n 1 3 @ #m %m 1 0 11921949 -antennaria_dioica n 1 3 @ ~ #m 1 0 11922374 -antennaria_plantaginifolia n 1 2 @ #m 1 0 11922192 -antennariidae n 1 3 @ #m %m 1 0 02548990 -antepenult n 1 1 @ 1 0 06305223 -antepenultima n 1 2 @ + 1 0 06305223 -antepenultimate n 1 1 @ 1 0 06305223 -anterior n 1 3 @ ~ + 1 1 05306190 -anterior_cardinal_vein n 1 1 @ 1 0 05360042 -anterior_cerebral_artery n 1 1 @ 1 0 05341416 -anterior_cerebral_vein n 1 1 @ 1 0 05361640 -anterior_crural_nerve n 1 2 @ #p 1 0 05568104 -anterior_facial_vein n 1 1 @ 1 0 05361805 -anterior_fontanelle n 1 1 @ 1 0 05543425 -anterior_horn n 1 2 @ #p 1 0 05424963 -anterior_jugular_vein n 1 1 @ 1 0 05371144 -anterior_labial_veins n 1 1 @ 1 0 05424351 -anterior_meningeal_artery n 1 1 @ 1 0 05351278 -anterior_naris n 1 2 @ #p 1 0 05600109 -anterior_pituitary n 1 3 @ #p %p 1 0 05484355 -anterior_pituitary_gland n 1 3 @ #p %p 1 0 05484355 -anterior_root n 1 2 @ #p 1 0 05424963 -anterior_serratus_muscle n 1 1 @ 1 0 05550494 -anterior_synechia n 1 1 @ 1 0 14206722 -anterior_temporal_artery n 1 1 @ 1 0 05354955 -anterior_vertebral_vein n 1 1 @ 1 0 05357682 -anteriority n 2 3 ! @ + 2 0 05078289 05047279 -anterograde_amnesia n 1 1 @ 1 0 05672862 -anteroom n 1 3 @ ~ #p 1 0 02715513 -anthelminthic n 1 3 @ ~ + 1 0 04528630 -anthelmintic n 1 3 @ ~ + 1 0 04528630 -anthem n 2 2 @ ~ 2 0 07048928 07035870 -anthemis n 1 3 @ #m %m 1 0 11923016 -anthemis_arvensis n 1 2 @ #m 1 0 11923637 -anthemis_cotula n 1 2 @ #m 1 0 11923174 -anthemis_nobilis n 1 3 @ #m #s 1 0 11949402 -anthemis_tinctoria n 1 2 @ #m 1 0 11923397 -anther n 1 3 @ #p + 1 0 11675245 -antheraea n 1 3 @ #m %m 1 0 02304229 -antheraea_mylitta n 1 2 @ #m 1 0 02304797 -antheraea_pernyi n 1 2 @ #m 1 0 02304657 -antheraea_polyphemus n 1 2 @ #m 1 0 02304432 -anthericum n 1 3 @ #m %m 1 0 12439400 -anthericum_liliago n 1 2 @ #m 1 0 12439626 -anthericum_torreyi n 1 2 @ #m 1 0 12439830 -antheridiophore n 1 1 @ 1 0 13091492 -antheridium n 1 2 @ + 1 0 13091312 -antheropeas n 1 3 @ #m %m 1 0 11923827 -antheropeas_wallacei n 1 2 @ #m 1 0 11924014 -antherozoid n 1 1 @ 1 0 13095543 -anthesis n 1 1 @ 1 0 13439570 -anthidium n 1 3 @ #m %m 1 0 02211773 -anthill n 1 1 @ 1 1 09199101 -anthoceropsida n 1 3 @ #m %m 1 0 11538123 -anthoceros n 1 2 @ #m 1 0 11538716 -anthocerotaceae n 1 3 @ #m %m 1 0 11538582 -anthocerotales n 1 3 @ #m %m 1 0 11538341 -anthologist n 1 2 @ + 1 0 09796062 -anthology n 1 3 @ ~ + 1 0 06591609 -anthonomus n 1 3 @ #m %m 1 0 02178563 -anthonomus_grandis n 1 2 @ #m 1 0 02178717 -anthony n 2 1 @ 2 0 10820163 10819134 -anthony_burgess n 1 1 @ 1 0 10872505 -anthony_charles_lynton_blair n 1 1 @ 1 0 10852506 -anthony_comstock n 1 1 @ 1 0 10906048 -anthony_hopkins n 1 1 @ 1 0 11059438 -anthony_trollope n 1 1 @ 1 0 11349207 -anthony_vandyke n 1 1 @ 1 0 11359867 -anthony_wayne n 1 1 @ 1 0 11377564 -anthophyllite n 1 2 @ #m 1 0 14725444 -anthophyta n 1 3 @ #m %m 1 0 11664929 -anthozoa n 1 3 @ #m %m 1 0 01913838 -anthozoan n 1 3 @ ~ #m 1 0 01914163 -anthracite n 1 2 @ + 1 0 14814921 -anthracite_coal n 1 1 @ 1 0 14814921 -anthracosis n 1 1 @ 1 0 14150210 -anthrax n 2 2 @ ~ 2 0 14260182 14072423 -anthrax_bacillus n 1 1 @ 1 0 01350226 -anthrax_pneumonia n 1 1 @ 1 0 14072934 -anthrenus_scrophulariae n 1 1 @ 1 0 02170599 -anthriscus n 1 3 @ #m %m 1 0 12932532 -anthriscus_cereifolium n 1 3 @ #m %p 1 0 12932706 -anthriscus_sylvestris n 1 2 @ #m 1 0 12932966 -anthropocentricity n 1 2 @ + 1 0 06201476 -anthropocentrism n 1 2 @ + 1 0 06201476 -anthropogenesis n 1 2 @ + 1 0 13432647 -anthropogeny n 1 2 @ + 1 0 13432647 -anthropoid n 2 2 @ + 2 0 09796185 02470709 -anthropoid_ape n 1 3 @ ~ #m 1 0 02470899 -anthropoidea n 1 3 @ #m %m 1 0 02470451 -anthropolatry n 1 1 @ 1 0 01045202 -anthropologist n 1 3 @ ~ + 1 1 09796323 -anthropology n 1 5 @ ~ %p + - 1 1 06143546 -anthropology_department n 1 1 @ 1 0 08115602 -anthropometry n 1 2 @ + 1 0 00998604 -anthropomorphism n 1 2 @ + 1 0 05767386 -anthropophagite n 1 1 @ 1 0 09891079 -anthropophagus n 1 2 @ + 1 0 09891079 -anthropophagy n 1 1 @ 1 0 00412982 -anthroposophy n 1 1 @ 1 0 05953881 -anthurium n 1 3 @ ~ #m 1 0 11783920 -anthurium_andraeanum n 1 1 @ 1 0 11784126 -anthurium_scherzerianum n 1 1 @ 1 0 11784126 -anthus n 1 3 @ #m %m 1 0 01528542 -anthus_pratensis n 1 1 @ 1 0 01528845 -anthyllis n 1 3 @ #m %m 1 0 12506614 -anthyllis_barba-jovis n 1 2 @ #m 1 0 12506784 -anthyllis_vulneraria n 1 2 @ #m 1 0 12506991 -anti n 1 1 @ 1 0 09796809 -anti-american n 1 2 @ + 1 0 09796974 -anti-catholicism n 1 1 @ 1 1 06227453 -anti-drug_law n 1 2 @ ; 1 0 06532910 -anti-dumping_duty n 1 1 @ 1 0 13317759 -anti-g_suit n 1 1 @ 1 0 02720576 -anti-imperialist_international_brigade n 1 2 @ ; 1 0 08026904 -anti-impotence_drug n 1 2 @ ~ 1 0 04537602 -anti-inflammatory n 1 2 @ ~ 1 0 02721538 -anti-inflammatory_drug n 1 2 @ ~ 1 0 02721538 -anti-intellectual n 1 2 @ + 1 0 10423031 -anti-masonic_party n 1 1 @ 1 0 08258184 -anti-personnel_bomb n 1 3 @ ~ #p 1 0 03390327 -anti-racketeering_law n 1 2 @ ; 1 0 06533039 -anti-semite n 1 2 @ + 1 1 09797742 -anti-semitism n 1 2 @ + 1 1 06203956 -anti-submarine_rocket n 1 1 @ 1 0 02724722 -anti-sway_bar n 1 2 @ #p 1 0 04294614 -anti-takeover_defense n 1 1 @ 1 0 00790086 -anti-tnf_compound n 1 2 @ ~ 1 0 02724966 -anti-torque_rotor n 1 1 @ 1 0 04385799 -anti-virus_program n 1 1 @ 1 0 06569966 -anti-war_movement n 1 1 @ 1 0 00799125 -antiacid n 1 2 @ ~ 1 0 14778019 -antiaircraft n 1 4 @ ~ %p + 1 0 02715712 -antiaircraft_fire n 1 1 @ 1 0 00987775 -antiaircraft_gun n 1 3 @ ~ %p 1 0 02715712 -antialiasing n 1 2 @ ; 1 0 05665421 -antianxiety_agent n 1 2 @ ~ 1 0 04470232 -antianxiety_drug n 1 2 @ ~ 1 0 03771443 -antiarrhythmic n 1 2 @ ~ 1 0 02715941 -antiarrhythmic_drug n 1 2 @ ~ 1 0 02715941 -antiarrhythmic_medication n 1 2 @ ~ 1 0 02715941 -antibacterial n 1 2 @ ~ 1 0 02716205 -antibacterial_drug n 1 2 @ ~ 1 0 02716205 -antiballistic_missile n 1 1 @ 1 0 02716626 -antibaryon n 1 1 @ 1 0 09199219 -antiberiberi_factor n 1 1 @ 1 0 15091129 -antibiosis n 1 1 @ 1 0 07990648 -antibiotic n 1 3 @ ~ + 1 0 02716866 -antibiotic_drug n 1 2 @ ~ 1 0 02716866 -antibody n 1 3 @ ~ %p 1 1 15027189 -antic n 1 3 @ ~ + 1 0 00427580 -anticatalyst n 1 3 ! @ ; 1 0 14725024 -anticholinergic n 1 3 @ ~ + 1 0 02717901 -anticholinergic_drug n 1 2 @ ~ 1 0 02717901 -anticholinesterase n 1 2 @ ~ 1 0 02718084 -antichrist n 1 2 @ ; 1 0 10819285 -anticipant n 1 2 @ + 1 0 09797113 -anticipation n 4 2 @ ~ 4 3 07511080 05951323 05775081 14486122 -anticipator n 1 2 @ + 1 0 09797113 -anticipatory_breach n 1 1 @ 1 0 00069444 -anticlimax n 2 3 @ #p + 2 0 07427951 06373991 -anticoagulant n 1 2 @ ~ 1 0 02718259 -anticoagulant_medication n 1 2 @ ~ 1 0 02718259 -anticoagulation n 1 1 @ 1 1 00710015 -anticonvulsant n 1 2 @ ~ 1 0 02718469 -anticonvulsant_drug n 1 2 @ ~ 1 0 02718469 -anticyclone n 1 5 ! @ %p + ; 1 0 14521021 -antidepressant n 1 2 @ ~ 1 0 02718811 -antidepressant_drug n 1 2 @ ~ 1 0 02718811 -antidiabetic n 1 2 @ ~ 1 0 02719105 -antidiabetic_drug n 1 2 @ ~ 1 0 02719105 -antidiarrheal n 1 2 @ ~ 1 0 02719294 -antidiarrheal_drug n 1 2 @ ~ 1 0 02719294 -antidiuretic n 1 2 @ ~ 1 0 02719450 -antidiuretic_drug n 1 2 @ ~ 1 0 02719450 -antidiuretic_hormone n 1 1 @ 1 0 05414147 -antido n 1 1 @ 1 0 06895176 -antidorcas n 1 3 @ #m %m 1 0 02423465 -antidorcas_euchore n 1 2 @ #m 1 0 02423589 -antidorcas_marsupialis n 1 2 @ #m 1 0 02423589 -antidote n 1 2 @ ~ 1 0 02719588 -antielectron n 1 1 @ 1 0 09397896 -antiemetic n 1 2 @ ~ 1 0 02719750 -antiemetic_drug n 1 2 @ ~ 1 0 02719750 -antiepileptic n 1 2 @ ~ 1 0 02718469 -antiepileptic_drug n 1 2 @ ~ 1 0 02718469 -antiestablishmentarianism n 1 1 @ 1 0 05958919 -antiestablishmentism n 1 1 @ 1 0 05958919 -antifeminism n 1 2 @ + 1 0 01156070 -antifeminist n 1 3 @ ~ + 1 0 09912243 -antiferromagnetism n 1 3 @ ~ + 1 0 11479640 -antiflatulent n 1 1 @ 1 0 02719951 -antifouling_paint n 1 1 @ 1 0 02720048 -antifreeze n 1 2 @ ~ 1 0 14766364 -antifungal n 1 3 @ ~ + 1 0 02720201 -antifungal_agent n 1 2 @ ~ 1 0 02720201 -antigen n 1 5 @ ~ %p + ; 1 1 15037339 -antigenic_determinant n 1 3 @ #p ; 1 0 15037664 -antigone n 1 2 @ ; 1 0 09596374 -antigonia n 1 3 @ #m %m 1 0 01453591 -antigonus n 1 1 @ 1 0 10819533 -antigonus_cyclops n 1 1 @ 1 0 10819533 -antigram n 1 1 @ 1 0 06294147 -antigua n 1 4 @ #p %m + 1 0 08709945 -antigua_and_barbuda n 1 4 @ #m #p %p 1 0 08709704 -antiguan n 1 3 @ #m + 1 0 09691024 -antihaemophilic_factor n 1 1 @ 1 0 15071684 -antihaemophilic_globulin n 1 1 @ 1 0 15071684 -antihemophilic_factor n 1 1 @ 1 0 15071684 -antihemophilic_globulin n 1 1 @ 1 0 15071684 -antihemorrhagic_factor n 1 2 @ ~ 1 0 15092751 -antihero n 1 1 @ 1 0 10172942 -antihistamine n 1 2 @ ~ 1 0 02720725 -antihypertensive n 1 2 @ ~ 1 0 02721160 -antihypertensive_drug n 1 2 @ ~ 1 0 02721160 -antiknock n 1 3 @ ~ + 1 0 14585223 -antilepton n 1 2 @ ~ 1 0 09199341 -antilles n 1 3 @ #p %p 1 0 08747737 -antilocapra n 1 3 @ #m %m 1 0 02429276 -antilocapra_americana n 1 2 @ #m 1 0 02429456 -antilocapridae n 1 3 @ #m %m 1 0 02429123 -antilog n 1 1 @ 1 0 06812794 -antilogarithm n 1 1 @ 1 0 06812794 -antilope n 1 3 @ #m %m 1 0 02420389 -antilope_cervicapra n 1 2 @ #m 1 0 02420509 -antimacassar n 1 1 @ 1 0 02721813 -antimalarial n 1 2 @ ~ 1 0 02721948 -antimalarial_drug n 1 2 @ ~ 1 0 02721948 -antimatter n 1 2 @ %s 1 0 14582535 -antimeson n 1 1 @ 1 0 09199498 -antimetabolite n 1 2 @ ~ 1 0 02722166 -antimicrobial n 1 3 @ ~ + 1 0 03208229 -antimicrobic n 1 3 @ ~ + 1 0 03208229 -antimonial_lead n 1 2 @ ~ 1 0 14905197 -antimony n 1 3 @ #s + 1 0 14628668 -antimony_potassium_tartrate n 1 1 @ 1 0 14955391 -antimuon n 1 1 @ 1 0 09199581 -antimycin n 1 1 @ 1 0 02722349 -antimycotic n 1 2 @ ~ 1 0 02720201 -antimycotic_agent n 1 2 @ ~ 1 0 02720201 -antineoplastic n 1 3 @ ~ + 1 0 02722458 -antineoplastic_antibiotic n 1 2 @ ~ 1 0 02722997 -antineoplastic_drug n 1 2 @ ~ 1 0 02722458 -antineutrino n 1 1 @ 1 0 09199728 -antineutron n 1 1 @ 1 0 09199817 -antinode n 1 3 ! @ ; 1 0 08498732 -antinomasia n 1 1 @ 1 0 07101557 -antinomian n 1 2 @ + 1 0 09797257 -antinomianism n 1 1 @ 1 0 06187154 -antinomy n 1 1 @ 1 0 06724437 -antioch n 1 2 @ #p 1 0 09040998 -antiophthalmic_factor n 1 2 @ ~ 1 0 15089803 -antioxidant n 1 2 @ ~ 1 0 14724645 -antiparticle n 1 2 @ #s 1 0 09199904 -antipasto n 1 1 @ 1 0 07581249 -antipathy n 2 2 @ + 2 1 07502669 05811466 -antipernicious_anemia_factor n 1 1 @ 1 0 15091304 -antipersonnel_bomb n 1 3 @ ~ #p 1 0 03390327 -antiperspirant n 1 1 @ 1 0 02723165 -antiphon n 1 3 @ ~ + 1 0 07033245 -antiphonal n 1 2 @ + 1 0 07034516 -antiphonary n 1 1 @ 1 0 07034516 -antiphony n 2 3 @ ~ + 2 0 07048782 07033245 -antiphrasis n 1 2 @ #p 1 0 07101250 -antipodal n 1 2 @ + 1 0 13829243 -antipodal_opposition n 1 1 @ 1 0 13829243 -antipode n 1 2 @ + 1 0 13855100 -antipodes n 1 2 @ + 1 0 08631750 -antipope n 1 2 @ ~ 1 0 09797375 -antiproton n 1 1 @ 1 0 09200193 -antiprotozoal n 1 2 @ ~ 1 0 02723292 -antiprotozoal_drug n 1 2 @ ~ 1 0 02723292 -antipruritic n 1 1 @ 1 0 02723491 -antipsychotic n 1 2 @ ~ 1 0 03713736 -antipsychotic_agent n 1 2 @ ~ 1 0 03713736 -antipsychotic_drug n 1 2 @ ~ 1 0 03713736 -antipyresis n 1 1 @ 1 0 00664285 -antipyretic n 1 2 @ + 1 0 02723595 -antiquarian n 1 2 @ + 1 0 09797606 -antiquark n 1 2 @ #p 1 0 09200317 -antiquary n 1 1 @ 1 0 09797606 -antique n 2 2 @ + 2 0 10376890 02723754 -antiquity n 3 5 @ ~ #p + - 3 1 15253139 04925756 02724026 -antiredeposition n 1 1 @ 1 1 13432802 -antirrhinum n 1 3 @ #m %m 1 0 12877041 -antirrhinum_coulterianum n 1 1 @ 1 0 12877493 -antirrhinum_filipes n 1 1 @ 1 0 12877637 -antirrhinum_majus n 1 1 @ 1 0 12877838 -antisemitism n 1 2 @ + 1 0 06203956 -antisepsis n 2 2 @ + 2 0 14495230 13432903 -antiseptic n 1 3 @ ~ + 1 0 02724207 -antiserum n 1 1 @ 1 1 05403702 -antisocial_personality_disorder n 1 1 @ 1 0 14388139 -antispasmodic n 1 2 @ ~ 1 0 02724533 -antispasmodic_agent n 1 2 @ ~ 1 0 02724533 -antistrophe n 1 2 @ #p 1 0 06386832 -antisyphilitic n 1 1 @ 1 0 02724838 -antitauon n 1 1 @ 1 0 09200419 -antithesis n 2 2 @ + 2 1 13855230 07101406 -antitoxin n 1 3 @ ~ + 1 0 15028050 -antitrade n 1 1 @ 1 0 11520120 -antitrade_wind n 1 1 @ 1 0 11520120 -antitrades n 1 1 @ 1 0 11424938 -antitrust_case n 1 2 @ ; 1 1 01184045 -antitrust_law n 1 2 @ ; 1 0 06533297 -antitrust_legislation n 1 2 @ ; 1 0 06533297 -antitussive n 1 2 @ ~ 1 0 02725242 -antitype n 2 3 ! @ + 2 0 05927364 05841029 -antivenene n 1 1 @ 1 0 15028208 -antivenin n 1 1 @ 1 0 15028208 -antivert n 1 2 @ ; 1 0 03739136 -antiviral n 1 2 @ ~ 1 0 02725367 -antiviral_agent n 1 2 @ ~ 1 0 02725367 -antiviral_drug n 1 2 @ ~ 1 0 02725367 -antler n 1 2 @ #p 1 0 01325658 -antler_moth n 1 2 @ #m 1 0 02296276 -antlia n 1 1 @ 1 0 09200527 -antlion n 2 2 @ #m 2 0 02264232 02264021 -antlion_fly n 1 2 @ #m 1 0 02264021 -antofagasta n 1 2 @ #p 1 0 08721145 -antoine_domino n 1 1 @ 1 0 10938640 -antoine_henri_becquerel n 1 1 @ 1 0 10840563 -antoine_laurent_de_jussieu n 1 1 @ 1 0 11094928 -antoine_laurent_lavoisier n 1 1 @ 1 0 11119917 -antoine_lavoisier n 1 1 @ 1 0 11119917 -anton_bruckner n 1 1 @ 1 0 10868025 -anton_chekhov n 1 1 @ 1 0 10894652 -anton_chekov n 1 1 @ 1 0 10894652 -anton_gregor_rubinstein n 1 1 @ 1 0 11273286 -anton_grigorevich_rubinstein n 1 1 @ 1 0 11273286 -anton_pavlovich_chekhov n 1 1 @ 1 0 10894652 -anton_pavlovich_chekov n 1 1 @ 1 0 10894652 -anton_rubenstein n 1 1 @ 1 0 11273286 -anton_van_leeuwenhoek n 1 1 @ 1 0 11129808 -anton_van_leuwenhoek n 1 1 @ 1 0 11129808 -antonin_dvorak n 1 1 @ 1 0 10946961 -antonine_wall n 1 2 @ #p 1 0 02725596 -antoninus n 1 1 @ 1 0 10819755 -antonio_allegri_da_correggio n 1 1 @ 1 0 10912079 -antonio_gaudi n 1 1 @ 1 0 10992336 -antonio_gaudi_i_cornet n 1 1 @ 1 0 10992336 -antonio_ghislieri n 1 1 @ 1 0 11237075 -antonio_lopez_de_santa_ana n 1 1 @ 1 0 11280905 -antonio_lopez_de_santa_anna n 1 1 @ 1 0 11280905 -antonio_lucio_vivaldi n 1 1 @ 1 0 11367910 -antonio_pignatelli n 1 1 @ 1 0 11072673 -antonio_stradivari n 1 1 @ 1 0 11320821 -antonio_vivaldi n 1 1 @ 1 0 11367910 -antonius n 1 1 @ 1 0 10820163 -antonius_pius n 1 1 @ 1 0 10820053 -antonius_stradivarius n 1 1 @ 1 0 11320821 -antony n 1 1 @ 1 0 10820163 -antony_tudor n 1 1 @ 1 0 11351677 -antonym n 1 4 ! @ ~ + 1 0 06288024 -antonymy n 1 1 @ 1 0 13808405 -antrozous n 1 3 @ #m %m 1 0 02147452 -antrozous_pallidus n 1 2 @ #m 1 0 02147591 -antrum n 1 1 @ 1 0 05304252 -antum n 1 2 @ ; 1 0 09515473 -antwerp n 1 2 @ #p 1 0 08850741 -antwerpen n 1 2 @ #p 1 0 08850741 -anu n 1 2 @ ; 1 0 09515570 -anubis n 1 1 @ 1 0 09511712 -anunnaki n 1 2 @ ; 1 0 09515712 -anura n 1 3 @ #m %m 1 0 01639369 -anuran n 1 3 @ ~ + 1 0 01639765 -anuresis n 1 2 @ + 1 0 14065903 -anuria n 1 1 @ 1 0 14065903 -anus n 1 5 @ ~ #p %p + 1 0 05538016 -anvers n 1 2 @ #p 1 0 08850741 -anvil n 2 2 @ #p 2 1 02725872 05326340 -anwar_el-sadat n 1 1 @ 1 0 11277900 -anwar_sadat n 1 1 @ 1 0 11277900 -anxiety n 2 3 @ ~ ; 2 2 14374432 07523905 -anxiety_attack n 1 1 @ 1 0 14081665 -anxiety_disorder n 1 2 @ ~ 1 0 14380473 -anxiety_hysteria n 1 1 @ 1 0 14393716 -anxiety_neurosis n 1 1 @ 1 0 14393958 -anxiety_reaction n 1 1 @ 1 0 14380717 -anxiolytic n 1 3 @ ~ + 1 0 03771443 -anxiolytic_drug n 1 2 @ ~ 1 0 03771443 -anxiousness n 2 4 @ ~ + ; 2 0 14374432 07524760 -any-and-all_bid n 1 1 @ 1 0 00790677 -anzac n 1 1 @ 1 0 09797873 -anzio n 1 2 @ #p 1 0 08807716 -ao_dai n 1 1 @ 1 0 02726017 -aorist n 1 2 @ + 1 0 06330037 -aorta n 1 3 @ ~ + 1 1 05335971 -aortic_aneurysm n 1 2 @ ~ 1 0 14106352 -aortic_arch n 1 1 @ 1 0 05336377 -aortic_orifice n 1 1 @ 1 0 05246089 -aortic_plexus n 1 1 @ 1 0 05236582 -aortic_stenosis n 1 1 @ 1 0 14106609 -aortic_valve n 1 1 @ 1 0 05394526 -aortitis n 1 2 @ ~ 1 0 14258293 -aotus n 1 3 @ #m %m 1 0 02492240 -aotus_trivirgatus n 1 2 @ #m 1 0 02492356 -aoudad n 1 2 @ #m 1 0 02416104 -apache n 3 3 @ ~ ; 3 1 09649926 09607208 06919433 -apache_dance n 1 2 @ ; 1 0 00530386 -apache_devil_dance n 1 1 @ 1 0 00541972 -apadana n 1 1 @ 1 0 02726210 -apalachicola n 1 2 @ #p 1 0 09200649 -apalachicola_river n 1 2 @ #p 1 0 09200649 -apalachicola_rosemary n 1 2 @ #m 1 0 12845908 -apanage n 2 1 @ 2 0 13298287 13254443 -apar n 1 2 @ #m 1 0 02455135 -apartheid n 1 1 @ 1 0 06659168 -apartment n 1 4 @ ~ #p %p 1 1 02726305 -apartment_building n 1 3 @ ~ %p 1 1 02726681 -apartment_house n 1 3 @ ~ %p 1 1 02726681 -apatetic_coloration n 1 1 @ 1 0 04979203 -apathy n 2 3 @ ~ + 2 0 07483622 04636610 -apatite n 1 3 @ ~ %s 1 0 14666510 -apatosaur n 1 2 @ #m 1 0 01709484 -apatosaurus n 1 2 @ #m 1 0 01709484 -apatosaurus_excelsus n 1 2 @ #m 1 0 01709484 -apatura n 1 3 @ #m %m 1 0 02278704 -apatura_iris n 1 1 @ 1 0 02278980 -apc n 2 2 @ ; 2 0 02740300 02726861 -ape n 3 3 @ ~ + 3 1 02470325 09964411 09796185 -ape-man n 2 1 @ 2 0 10322801 09797998 -apeldoorn n 1 2 @ #p 1 0 08950035 -apennines n 1 3 @ #p - 1 0 09200874 -aper n 1 3 @ ~ + 1 0 09964411 -apercu n 1 1 @ 1 0 06468749 -aperea n 1 1 @ 1 0 02364840 -aperient n 1 3 @ ~ + 1 0 04025748 -aperitif n 1 1 @ 1 0 07886463 -aperture n 3 3 @ ~ #p 3 1 02727141 09201031 02727016 -apery n 1 3 @ ~ + 1 0 00549472 -apetalous_flower n 1 1 @ 1 0 11674019 -apex n 2 5 ! @ ~ #p + 2 1 08677801 08494987 -apex_of_the_sun's_way n 1 2 @ #p 1 0 08494987 -apgar_score n 1 1 @ 1 0 05739400 -aphaeresis n 1 3 @ + ; 1 0 13433061 -aphagia n 1 1 @ 1 0 14096328 -aphakia n 1 1 @ 1 0 14097432 -aphakic n 1 2 @ + 1 0 09798096 -aphanite n 1 2 @ + 1 0 14726315 -aphasia n 1 3 @ ~ + 1 0 14097574 -aphasic n 1 2 @ + 1 0 09798244 -aphasmidia n 1 2 @ #m 1 0 01929788 -aphelion n 1 2 ! @ 1 0 08495908 -apheresis n 2 4 @ ~ + ; 2 0 13433061 00649992 -aphesis n 1 2 @ + 1 0 13433283 -aphid n 1 3 @ ~ #m 1 0 02252226 -aphid_lion n 1 2 @ #m 1 0 02264591 -aphididae n 1 3 @ #m %m 1 0 02252429 -aphidoidea n 1 3 @ #m %m 1 0 02252039 -aphis n 1 3 @ #m %m 1 0 02252608 -aphis_fabae n 1 2 @ #m 1 0 02252972 -aphis_lion n 1 2 @ #m 1 0 02264591 -aphis_pomi n 1 2 @ #m 1 0 02252799 -aphonia n 1 2 @ + 1 0 14400507 -aphorism n 1 2 @ + 1 0 07153130 -aphorist n 1 2 @ + 1 0 09798404 -aphriza n 1 3 @ #m %m 1 0 02026498 -aphriza_virgata n 1 2 @ #m 1 0 02026629 -aphrodisia n 1 2 ! @ 1 0 07488567 -aphrodisiac n 1 2 @ + 1 0 02727281 -aphrodite n 1 1 @ 1 0 09554132 -aphrophora n 1 3 @ #m %m 1 0 02258354 -aphrophora_saratogensis n 1 2 @ #m 1 0 02258629 -aphthous_ulcer n 1 1 @ 1 0 14211985 -aphyllanthaceae n 1 2 @ #m 1 0 12440128 -aphyllanthes n 1 2 @ #m 1 0 12440385 -aphyllophorales n 1 3 @ #m %m 1 0 13049285 -apia n 1 2 @ #p 1 0 08991752 -apiaceae n 1 4 @ ~ #m %m 1 0 12930044 -apiarist n 1 1 @ 1 0 09846755 -apiary n 1 3 @ %p + 1 0 02727426 -apical_placentation n 1 1 @ 1 0 11681255 -apiculture n 1 2 @ + 1 0 00916285 -apiculturist n 1 2 @ + 1 0 09846755 -apidae n 1 3 @ #m %m 1 0 02207942 -apios n 1 3 @ #m %m 1 0 12507236 -apios_americana n 1 3 @ #m %p 1 0 12507379 -apios_tuberosa n 1 3 @ #m %p 1 0 12507379 -apis n 1 3 @ #m %m 1 0 02208143 -apis_mellifera n 1 3 @ ~ #m 1 0 02208280 -apis_mellifera_adansonii n 1 1 @ 1 0 02208498 -apis_mellifera_scutellata n 1 1 @ 1 0 02208498 -apishamore n 1 1 @ 1 0 02727566 -apium n 1 3 @ #m %m 1 0 12933164 -apium_graveolens n 1 2 @ #m 1 0 12933274 -apium_graveolens_dulce n 1 2 @ %p 1 0 12933403 -apium_graveolens_rapaceum n 1 2 @ %p 1 0 12933616 -aplacophora n 1 3 @ #m %m 1 0 01954340 -aplacophoran n 1 2 @ #m 1 0 01954516 -aplasia n 1 1 @ 1 0 14023901 -aplastic_anaemia n 1 1 @ 1 0 14164341 -aplastic_anemia n 1 1 @ 1 0 14164341 -aplectrum n 1 3 @ #m %m 1 0 12045352 -aplectrum_hyemale n 1 2 @ #m 1 0 12045514 -aplite n 1 2 @ + 1 0 14726484 -aplodontia n 1 3 @ #m %m 1 0 02363818 -aplodontia_rufa n 1 2 @ #m 1 0 02363996 -aplodontiidae n 1 3 @ #m %m 1 0 02363681 -aplomb n 1 1 @ 1 1 04904162 -aplysia n 1 3 @ #m %m 1 0 01951107 -aplysia_punctata n 1 2 @ #m 1 0 01951274 -aplysiidae n 1 3 @ #m %m 1 0 01950952 -apnea n 1 2 @ ~ 1 0 14369408 -apoapsis n 1 5 ! @ ~ #p ; 1 0 08495617 -apocalypse n 2 4 @ #p + - 2 0 07315631 06447897 -apocope n 1 1 @ 1 0 07091737 -apocrine_gland n 1 1 @ 1 0 05330848 -apocrypha n 1 5 @ #p %p + - 1 0 06457952 -apocynaceae n 1 3 @ #m %m 1 0 11766609 -apocynum n 1 3 @ #m %m 1 0 11767196 -apocynum_androsaemifolium n 1 1 @ 1 0 11767630 -apocynum_cannabinum n 1 1 @ 1 0 11767877 -apocynum_pumilum n 1 1 @ 1 0 11768108 -apodeme n 1 2 @ #p 1 0 01905121 -apodemus n 1 3 @ #m %m 1 0 02332606 -apodemus_sylvaticus n 1 2 @ #m 1 0 02333190 -apodidae n 1 3 @ #m %m 1 0 01831930 -apodiform_bird n 1 3 @ ~ #m 1 0 01831712 -apodiformes n 1 3 @ #m %m 1 0 01831519 -apoenzyme n 1 1 @ 1 0 14730301 -apogamy n 1 3 @ + ; 1 0 13433462 -apogee n 2 3 ! @ + 2 1 15291199 08495420 -apogon n 1 2 @ #m 1 0 02572369 -apogon_maculatus n 1 1 @ 1 0 02572484 -apogonidae n 1 3 @ #m %m 1 0 02571983 -apoidea n 1 3 @ #m %m 1 0 02206624 -apojove n 1 2 ! @ 1 0 08496095 -apolemia n 1 1 @ 1 0 01913440 -apollinaire n 1 1 @ 1 0 10820444 -apollo n 1 3 @ ~ ; 1 0 09553767 -apollo_asteroid n 1 1 @ 1 0 09201189 -apollo_program n 1 1 @ 1 0 05899621 -apologetics n 1 1 @ 1 0 06182866 -apologia n 1 1 @ 1 1 06740919 -apologist n 1 2 @ + 1 1 09798534 -apologue n 1 2 @ ~ 1 0 06372095 -apology n 3 2 @ + 3 1 06633363 06740919 05821102 -apolune n 1 2 ! @ 1 0 08496199 -apomict n 1 1 @ 1 0 11536567 -apomixis n 1 3 @ ~ + 1 0 13433727 -apomorphine n 1 1 @ 1 0 02727660 -aponeurosis n 1 2 @ + 1 0 05582690 -apophasis n 1 2 @ + 1 0 07101649 -apophatism n 1 2 ! @ 1 0 05942104 -apophthegm n 1 1 @ 1 0 07153130 -apophysis n 2 4 @ #p + ; 2 0 13088460 05473104 -apoplexy n 1 4 @ ~ %p + 1 0 14082303 -apoptosis n 1 1 @ 1 0 11486381 -aporocactus n 1 3 @ #m %m 1 0 11843285 -aporocactus_flagelliformis n 1 2 @ #m 1 0 11843441 -aposelene n 1 2 ! @ 1 0 08496199 -aposematic_coloration n 1 1 @ 1 0 04979002 -aposiopesis n 1 2 @ + 1 0 07101778 -apostasy n 2 1 @ 2 0 14413411 00204814 -apostate n 1 2 @ + 1 0 10007109 -apostelic_father n 1 2 @ ~ 1 0 09799213 -apostle n 3 4 @ ~ + ; 3 0 09799461 09799213 09798811 -apostle_of_germany n 1 2 @ ; 1 0 10856486 -apostle_of_the_gentiles n 1 2 @ ; 1 0 11225661 -apostle_paul n 1 2 @ ; 1 0 11225661 -apostleship n 1 2 @ + 1 0 00588881 -apostolic_delegate n 1 2 @ ; 1 0 09799607 -apostrophe n 2 2 @ + 2 0 07101937 06841987 -apothecaries'_ounce n 1 3 @ #p %p 1 0 13722522 -apothecaries'_pound n 1 2 @ %p 1 0 13722757 -apothecaries'_unit n 1 2 @ ~ 1 0 13716878 -apothecaries'_weight n 1 2 @ ~ 1 0 13716878 -apothecary n 1 2 @ ~ 1 1 10421470 -apothecary's_shop n 1 2 @ %p 1 0 03249342 -apothecium n 1 3 @ ~ + 1 0 11533622 -apothegm n 1 2 @ + 1 0 07153130 -apotheosis n 2 3 @ ~ + 2 0 10325243 01029114 -appalachia n 1 3 @ #p + 1 0 08493493 -appalachian n 1 2 @ + 1 0 09799808 -appalachian_mountains n 1 3 @ #p %p 1 0 09201301 -appalachians n 1 3 @ #p %p 1 0 09201301 -appalling n 1 1 @ 1 1 07285872 -appaloosa n 1 1 @ 1 0 02379743 -appanage n 2 1 @ 2 0 13298287 13254443 -apparatchik n 2 1 @ 2 0 09800056 09799920 -apparatus n 2 3 @ ~ ; 2 1 02727825 05218899 -apparatus_urogenitalis n 1 2 @ %p 1 0 05509452 -apparel n 1 3 @ ~ + 1 0 02728440 -apparel_chain n 1 1 @ 1 0 08061609 -apparel_industry n 1 1 @ 1 0 08066317 -apparency n 1 2 @ + 1 0 04706727 -apparent_horizon n 1 2 @ #p 1 0 08585657 -apparent_motion n 1 1 @ 1 0 11425088 -apparent_movement n 1 1 @ 1 0 11425088 -apparentness n 1 2 @ + 1 0 04706727 -apparition n 4 3 @ ~ + 4 1 09547111 07323436 05897553 00050484 -appeal n 4 4 @ ~ + ; 4 3 07186828 04687333 01185611 06513764 -appeal_board n 1 1 @ 1 1 08323301 -appealingness n 1 3 @ ~ + 1 0 04687333 -appeals_board n 1 1 @ 1 0 08323301 -appeals_court n 1 2 @ ~ 1 0 08330106 -appearance n 6 4 ! @ ~ + 6 5 04673965 07321772 01233627 05939432 00050195 00755277 -appearing n 1 1 @ 1 0 01233627 -appeasement n 1 2 @ ~ 1 0 01150938 -appeaser n 1 2 @ + 1 0 09800249 -appellant n 1 2 @ + 1 0 09800469 -appellate_court n 1 2 @ ~ 1 0 08330106 -appellation n 1 2 @ ~ 1 0 06338908 -appellative n 1 3 @ ~ + 1 0 06338908 -appendage n 3 3 @ ~ + 3 0 05559908 05470189 02728763 -appendectomy n 1 1 @ 1 0 00666232 -appendicectomy n 1 1 @ 1 0 00666232 -appendicitis n 1 1 @ 1 0 14258512 -appendicle n 1 2 @ + 1 0 02728968 -appendicular_artery n 1 1 @ 1 0 05336893 -appendicular_skeleton n 1 3 @ #p %p 1 0 05587034 -appendicular_vein n 1 1 @ 1 0 05357867 -appendicularia n 1 2 @ #m 1 0 01470733 -appendix n 2 3 @ ~ #p 2 1 06399337 05537576 -appenzeller n 1 1 @ 1 0 02107908 -apperception n 1 2 @ + 1 0 05708658 -appetence n 1 3 @ ~ + 1 0 07485626 -appetency n 1 3 @ ~ + 1 0 07485626 -appetiser n 1 2 @ ~ 1 0 07581346 -appetisingness n 1 4 @ ~ = + 1 0 04995531 -appetite n 1 2 @ ~ 1 1 07485626 -appetite_suppressant n 1 1 @ 1 0 04361529 -appetizer n 1 2 @ ~ 1 0 07581346 -appetizingness n 1 5 ! @ ~ = + 1 0 04995531 -appian_way n 1 2 @ #p 1 0 02729060 -applauder n 1 2 @ + 1 0 09926088 -applause n 1 3 @ ~ #p 1 1 06691989 -apple n 2 5 @ ~ #m #p %p 2 1 07739125 12633994 -apple_aphid n 1 2 @ #m 1 0 02252799 -apple_blight n 1 1 @ 1 0 14216054 -apple_butter n 1 1 @ 1 0 07642742 -apple_canker n 1 1 @ 1 0 14216054 -apple_dumpling n 1 1 @ 1 0 07614103 -apple_fritter n 1 1 @ 1 0 07640014 -apple_geranium n 1 2 @ #m 1 0 12688187 -apple_jelly n 1 2 @ ~ 1 0 07643474 -apple_juice n 1 1 @ 1 0 07924366 -apple_maggot n 1 2 @ #m 1 0 02196896 -apple_mint n 1 1 @ 1 0 12856479 -apple_nut n 1 2 @ #p 1 0 12594533 -apple_of_discord n 1 2 @ ; 1 0 02729345 -apple_of_peru n 2 2 @ #m 2 0 12907057 12903503 -apple_orchard n 1 1 @ 1 0 02729755 -apple_pie n 1 1 @ 1 0 07626174 -apple_polisher n 1 1 @ 1 0 09800631 -apple_rust n 1 2 @ #m 1 0 13065514 -apple_sauce n 1 1 @ 1 0 07825850 -apple_tart n 2 1 @ 2 0 07624130 07623834 -apple_tree n 1 4 @ ~ #m %s 1 1 12633638 -apple_turnover n 1 1 @ 1 0 07624666 -applecart n 2 1 @ 2 0 05795835 02729222 -applejack n 1 2 @ #s 1 1 07903543 -applemint n 1 1 @ 1 0 12856479 -applesauce n 2 2 @ ; 2 0 07825850 06611998 -applesauce_cake n 1 1 @ 1 0 07629697 -applet n 1 1 @ 1 0 06570647 -appleton n 2 2 @ #p 2 0 10820613 09157555 -appleton_layer n 1 2 @ #p 1 0 08582337 -applewood n 1 2 @ #s 1 0 12633866 -appliance n 2 2 @ ~ 2 0 02729965 02729837 -applicability n 1 4 ! @ ~ + 1 1 13795180 -applicant n 1 3 @ ~ + 1 1 09607280 -application n 7 3 @ ~ + 7 3 00949134 06512580 00712225 06570110 03691128 00633329 00036061 -application-oriented_language n 1 2 @ ~ 1 0 06899110 -application_form n 1 1 @ 1 1 06473837 -application_program n 1 2 @ ~ 1 0 06570110 -applications_programme n 1 2 @ ~ 1 0 06570110 -applicator n 1 2 @ ~ 1 1 02730265 -applied_anatomy n 1 1 @ 1 0 06059125 -applied_math n 1 2 @ ~ 1 0 06018022 -applied_mathematics n 1 2 @ ~ 1 0 06018022 -applied_psychology n 1 1 @ 1 0 06138347 -applied_science n 1 3 @ ~ - 1 0 06125041 -applied_scientist n 1 2 @ ~ 1 0 09615807 -applier n 2 3 @ ~ + 2 0 09607280 02730265 -applique n 1 2 @ + 1 0 02730437 -appoggiatura n 1 1 @ 1 0 06871983 -appointee n 2 3 @ ~ + 2 2 09800964 09607630 -appointment n 6 4 @ ~ %m ; 6 3 00163779 08385009 02730568 09607630 00586105 00090393 -appointment_book n 1 1 @ 1 0 06416049 -appointment_calendar n 1 1 @ 1 0 06416049 -apportioning n 1 2 @ ~ 1 0 01083645 -apportionment n 1 3 @ ~ + 1 0 01083645 -appositeness n 1 3 ! @ + 1 0 04716491 -apposition n 3 4 @ ~ + ; 3 0 13801217 13433948 01051801 -appraisal n 3 3 @ ~ + 3 1 05733583 06528783 00875519 -appraiser n 2 4 @ ~ + ; 2 1 09802050 09802239 -appreciation n 5 4 ! @ ~ = 5 5 05806623 05749619 07229111 01218593 00364440 -appreciativeness n 1 2 @ + 1 0 07504529 -appreciator n 1 3 @ ~ + 1 0 09802445 -apprehender n 2 2 @ + 2 0 10240082 09801102 -apprehension n 4 3 @ ~ + 4 2 07521674 05805475 05951566 00088725 -apprehensiveness n 1 3 @ ~ + 1 0 07521674 -apprentice n 1 3 @ ~ + 1 1 09801864 -apprenticeship n 1 2 @ + 1 1 00588998 -apprisal n 1 3 @ ~ + 1 0 07212424 -appro n 1 2 @ ; 1 0 14412564 -approach n 9 5 @ ~ #p + ; 9 3 00941140 00280853 02671062 08493961 07310507 07164349 05046471 04746134 00573268 -approach_path n 1 2 @ #p 1 0 08493961 -approach_pattern n 1 2 @ %p 1 0 08492747 -approach_shot n 1 3 @ ~ ; 1 0 00573268 -approach_trench n 1 1 @ 1 0 02730748 -approachability n 1 3 ! @ + 1 0 04655649 -approaching n 3 2 @ ~ 3 0 07310507 05046471 00280853 -approbation n 2 3 ! @ + 2 0 07500612 06687178 -appropriateness n 2 5 ! @ ~ = + 2 0 04899031 04715947 -appropriation n 3 3 @ ~ ; 3 1 13289845 00373418 00083975 -appropriation_bill n 1 3 @ %p ; 1 0 06537124 -appropriator n 1 3 @ ~ + 1 0 09802641 -approval n 4 4 ! @ ~ + 4 3 01215392 07500159 14412374 06686736 -approver n 1 2 @ + 1 0 09802844 -approving n 1 2 @ ~ 1 0 01215392 -approximate_range n 1 1 @ 1 0 05126066 -approximation n 4 2 @ ~ 4 2 05803379 04744032 06783442 00146277 -appurtenance n 2 3 @ ~ + 2 0 03430959 02671421 -apr n 1 3 @ #p %p 1 0 15211189 -apraxia n 1 2 @ + 1 0 14091126 -apresoline n 1 1 @ 1 0 03550671 -apricot n 3 4 @ ~ #m #p 3 0 12640607 07750872 04971675 -apricot_bar n 1 1 @ 1 0 07637949 -apricot_sauce n 1 1 @ 1 0 07832307 -apricot_tree n 1 3 @ ~ #m 1 0 12640607 -april n 1 3 @ #p %p 1 1 15211189 -april_14 n 1 2 @ #p 1 0 15188688 -april_fool n 2 1 @ 2 0 09801275 00514356 -april_fools' n 1 2 @ #p 1 0 15188505 -april_fools'_day n 1 2 @ #p 1 0 15188505 -apron n 4 4 @ #p %p ; 4 1 02730930 08496334 04013362 02731123 -apron_string n 1 2 @ #p 1 0 02731251 -apse n 1 4 @ ~ #p + 1 0 02731398 -apsis n 1 3 @ ~ #p 1 0 02731398 -apsu n 1 2 @ ; 1 0 09515877 -aptenodytes n 1 3 @ #m %m 1 0 02056421 -aptenodytes_forsteri n 1 2 @ #m 1 0 02056728 -aptenodytes_patagonica n 1 2 @ #m 1 0 02056570 -apterygidae n 1 3 @ #m %m 1 0 01520284 -apterygiformes n 1 3 @ #m %m 1 0 01520058 -apteryx n 1 2 @ #m 1 0 01520576 -aptitude n 1 4 ! @ ~ + 1 1 05622456 -aptness n 2 3 ! @ + 2 0 04943154 04716491 -apulia n 1 3 @ #p %p 1 0 08810358 -apus n 2 3 @ #m %m 2 0 09201714 01832381 -apus_apus n 1 2 @ #m 1 0 01832493 -apyretic_tetanus n 1 1 @ 1 0 14310504 -aqaba n 1 2 @ #p 1 0 08927678 -aqua n 1 1 @ 1 0 04969798 -aqua-lung n 1 3 @ %p ; 1 0 02731629 -aqua_fortis n 1 1 @ 1 0 14766532 -aqua_regia n 1 1 @ 1 0 14767477 -aqua_vitae n 1 1 @ 1 0 07902336 -aquaculture n 1 2 @ + 1 0 00916147 -aqualung n 1 2 @ %p 1 0 02731629 -aquamarine n 2 1 @ 2 0 14767663 04969798 -aquanaut n 2 1 @ 2 0 10607291 09801371 -aquaphobia n 1 2 @ + 1 0 14382967 -aquaplane n 1 2 @ + 1 0 02731900 -aquarium n 1 2 @ ~ 1 0 02732072 -aquarius n 3 3 @ #p ; 3 0 09753642 09201840 08687884 -aquarius_the_water_bearer n 1 1 @ 1 0 08687884 -aquatic n 1 2 @ + 1 0 11536673 -aquatic_bird n 1 2 @ ~ 1 0 01844917 -aquatic_fern n 1 2 @ ~ 1 0 12957076 -aquatic_mammal n 1 3 @ ~ %p 1 0 02062017 -aquatic_plant n 1 3 @ ~ %p 1 0 13121544 -aquatic_vertebrate n 1 3 @ ~ %p 1 0 01473806 -aquatics n 1 3 @ ~ - 1 0 00441824 -aquatint n 2 2 @ + 2 0 02732295 00939091 -aquavit n 1 2 @ %s 1 0 07902799 -aqueduct n 1 2 @ %p 1 0 02732433 -aqueductus_cerebri n 1 1 @ 1 0 05503401 -aqueous_humor n 1 1 @ 1 0 05318263 -aqueous_humour n 1 1 @ 1 0 05318263 -aqueous_solution n 1 1 @ 1 0 14589912 -aquiculture n 1 3 @ ~ + 1 0 00918976 -aquifer n 1 2 @ + 1 0 09201998 -aquifoliaceae n 1 3 @ #m %m 1 0 12756286 -aquila n 3 4 @ #m #p %m 3 0 09202142 08804319 01614195 -aquila_chrysaetos n 1 3 @ ~ #m 1 0 01614343 -aquila_degli_abruzzi n 1 2 @ #p 1 0 08804319 -aquila_rapax n 1 2 @ #m 1 0 01614556 -aquilege n 1 3 @ ~ #m 1 0 11727091 -aquilegia n 1 3 @ ~ #m 1 0 11727091 -aquilegia_caerulea n 1 2 @ #m 1 0 11727540 -aquilegia_canadensis n 1 2 @ #m 1 0 11727358 -aquilegia_scopulorum_calcarea n 1 2 @ #m 1 0 11727540 -aquilegia_vulgaris n 1 2 @ #m 1 0 11727738 -aquinas n 1 2 @ ; 1 0 10820790 -aquitaine n 1 2 @ #p 1 0 08940517 -aquitania n 1 2 @ #p 1 0 08940517 -ar n 3 5 @ #m #s #p %p 3 0 14628920 13613862 09059274 -ar_rimsal n 1 2 @ #p 1 0 09172111 -ara n 2 3 @ #m %m 2 0 09202285 01818409 -arab n 2 3 @ ~ #m 2 0 09729530 02379908 -arab-berbers n 1 1 @ 1 0 08483500 -arab-israeli_war n 2 2 @ ; 2 0 01302683 01302449 -arab_chief n 1 1 @ 1 0 10588357 -arab_league n 1 2 @ %m 1 0 08172103 -arab_republic_of_egypt n 1 6 @ #m #p %m %p - 1 0 08897065 -arab_revolutionary_brigades n 1 2 @ ; 1 0 08020242 -arabesque n 2 1 @ 2 0 05081802 02732572 -arabia n 1 6 @ #p %m %p + - 1 0 08847694 -arabian n 2 4 @ ~ #m + 2 0 09729530 02379908 -arabian_camel n 1 1 @ 1 0 02437312 -arabian_coffee n 1 1 @ 1 0 12663023 -arabian_desert n 2 3 @ #p %p 2 0 09168020 09167767 -arabian_gulf n 1 3 @ #p %p 1 0 09390424 -arabian_jasmine n 1 1 @ 1 0 12307455 -arabian_nights n 1 2 @ - 1 0 07222230 -arabian_nights'_entertainment n 1 2 @ - 1 0 07222230 -arabian_peninsula n 1 5 @ #p %m %p - 1 0 08847694 -arabian_sea n 1 3 @ #p %p 1 1 09202405 -arabian_tea n 1 1 @ 1 0 03608870 -arabic n 1 3 @ + - 1 0 06988057 -arabic_alphabet n 1 1 @ 1 0 06500062 -arabic_language n 1 2 @ - 1 0 06988057 -arabic_numeral n 1 2 ! @ 1 0 06807501 -arabidopsis n 1 2 @ #m 1 0 11871294 -arabidopsis_lyrata n 1 1 @ 1 0 11871748 -arabidopsis_thaliana n 1 1 @ 1 0 11871496 -arability n 1 2 @ + 1 0 04715818 -arabis n 1 3 @ #m %m 1 0 11871916 -arabis_canadensis n 1 2 @ #m 1 0 11872324 -arabis_glabra n 1 2 @ #m 1 0 11872658 -arabis_turrita n 1 2 @ #m 1 0 11872473 -arabist n 1 1 @ 1 0 09802951 -araceae n 1 4 @ #m %m + 1 0 11778534 -arachis n 1 3 @ #m %m 1 0 11748330 -arachis_hypogaea n 1 3 @ #m %p 1 0 11748501 -arachnid n 1 3 @ ~ #m 1 0 01769347 -arachnida n 1 4 @ #m %m + 1 0 01768969 -arachnoid n 2 5 @ ~ #m #p + 2 0 05482676 01769347 -arachnoid_membrane n 1 2 @ #p 1 0 05482676 -arachnophobia n 1 1 @ 1 0 14382075 -arafat n 1 1 @ 1 0 10821218 -arafura_sea n 1 2 @ #p 1 0 09202603 -aragon n 2 2 @ #p 2 0 10821379 09027460 -aragonite n 1 1 @ 1 0 14666758 -araguaia n 1 2 @ #p 1 0 09202810 -araguaia_river n 1 2 @ #p 1 0 09202810 -araguaya n 1 2 @ #p 1 0 09202810 -araguaya_river n 1 2 @ #p 1 0 09202810 -arak n 1 1 @ 1 0 07902937 -aral_sea n 1 1 @ 1 0 09330233 -arales n 1 3 @ #m %m 1 0 11778391 -aralia n 1 2 @ #m 1 0 11797321 -aralia_elata n 1 2 @ #m 1 0 11798496 -aralia_hispida n 1 2 @ #m 1 0 11798270 -aralia_nudicaulis n 1 2 @ #m 1 0 11797722 -aralia_racemosa n 1 2 @ #m 1 0 11797981 -aralia_spinosa n 1 2 @ #m 1 0 11797508 -aralia_stipulata n 1 1 @ 1 0 11798688 -araliaceae n 1 3 @ #m %m 1 0 11796744 -aram n 1 2 @ + 1 0 09033813 -aram_ilich_khachaturian n 1 1 @ 1 0 11103648 -aram_kachaturian n 1 1 @ 1 0 11095587 -aram_khachaturian n 1 1 @ 1 0 11103648 -aramaean n 1 1 @ 1 0 09803060 -aramaic n 2 3 @ ~ + 2 0 06988307 06351888 -aramaic_script n 1 1 @ 1 0 06351888 -arame n 1 1 @ 1 0 01397690 -aramean n 1 1 @ 1 0 09803060 -aramus n 1 2 @ #m 1 0 02013362 -aramus_guarauna n 1 2 @ #m 1 0 02013567 -aramus_pictus n 1 2 @ #m 1 0 02013706 -aran_islands n 1 2 @ #p 1 0 08708870 -aranea n 1 3 @ #m %m 1 0 01773319 -aranea_diademata n 1 2 @ #m 1 0 01773797 -araneae n 1 3 @ #m %m 1 0 01771966 -araneida n 1 4 @ #m %m + 1 0 01771966 -araneus n 1 3 @ #m %m 1 0 01773319 -araneus_cavaticus n 1 2 @ #m 1 0 01773549 -aranyaka n 1 1 @ 1 0 06465623 -arapaho n 2 1 @ 2 0 09650250 06908291 -arapahoe n 2 1 @ 2 0 09650250 06908291 -ararat n 1 2 @ #p 1 0 09203032 -arariba n 1 2 @ #m 1 0 11749603 -araroba n 1 1 @ 1 0 02732696 -aras n 1 2 @ #p 1 0 09203217 -arauca n 1 2 @ #p 1 0 09203481 -araucaria n 1 3 @ ~ #m 1 0 11645914 -araucaria_araucana n 1 1 @ 1 0 11646167 -araucaria_bidwillii n 1 2 @ %p 1 0 11646694 -araucaria_columnaris n 1 1 @ 1 0 11646517 -araucaria_cunninghamii n 1 1 @ 1 0 11646955 -araucaria_excelsa n 1 1 @ 1 0 11646344 -araucaria_family n 1 3 @ #m %m 1 0 11645271 -araucaria_heterophylla n 1 1 @ 1 0 11646344 -araucariaceae n 1 3 @ #m %m 1 0 11645271 -araujia n 1 3 @ #m %m 1 0 13235947 -araujia_sericofera n 1 2 @ #m 1 0 13236100 -arava n 1 2 @ ; 1 0 03654086 -arawak n 2 2 @ + 2 0 09803247 06917764 -arawakan n 2 2 @ + 2 0 09803247 06917764 -arawn n 1 2 @ ; 1 0 09508076 -araxes n 1 2 @ #p 1 0 09203217 -arb n 1 1 @ 1 0 09803800 -arbalest n 1 1 @ 1 0 02981911 -arbalist n 1 1 @ 1 0 02981911 -arbiter n 2 3 @ ~ + 2 0 09804053 09803429 -arbitrage n 1 3 @ ~ + 1 0 01093965 -arbitrager n 1 2 @ + 1 0 09803800 -arbitrageur n 1 1 @ 1 0 09803800 -arbitrament n 1 2 @ + 1 0 01190884 -arbitrariness n 1 2 @ + 1 0 04671841 -arbitration n 2 3 @ + ; 2 0 07150850 01190884 -arbitration_clause n 1 2 @ #p 1 0 06393253 -arbitrator n 1 3 @ ~ + 1 0 09803429 -arbitrement n 1 2 @ + 1 0 01190884 -arbor n 3 4 @ ~ #p + 3 0 13107891 04277493 02732827 -arbor_day n 1 1 @ 1 0 15158359 -arboreal_salamander n 1 1 @ 1 0 01637338 -arborescent_plant n 1 2 @ ~ 1 0 13103750 -arboretum n 1 1 @ 1 0 02733075 -arboriculture n 1 2 @ + 1 0 00917614 -arboriculturist n 1 2 @ + 1 0 10104756 -arborist n 1 2 @ + 1 0 10727818 -arborolatry n 1 1 @ 1 0 01045714 -arborvirus n 1 2 @ ~ 1 0 01329186 -arborvitae n 1 2 @ ~ 1 0 11643835 -arbour n 1 2 @ ~ 1 0 02732827 -arbovirus n 1 2 @ ~ 1 0 01329186 -arbutus n 1 3 @ ~ #m 1 0 12230347 -arbutus_menziesii n 1 1 @ 1 0 12230540 -arbutus_unedo n 1 1 @ 1 0 12230794 -arc n 3 4 @ ~ #p + 3 2 11511523 13874384 13896100 -arc-boutant n 1 1 @ 1 0 03373943 -arc_cosecant n 1 1 @ 1 0 13789136 -arc_cosine n 1 1 @ 1 0 13787853 -arc_cotangent n 1 1 @ 1 0 13788502 -arc_lamp n 1 2 @ ~ 1 0 02735361 -arc_light n 1 2 @ ~ 1 0 02735361 -arc_secant n 1 1 @ 1 0 13788820 -arc_sine n 1 1 @ 1 0 13787551 -arc_tangent n 1 1 @ 1 0 13788182 -arca n 1 3 @ #m %m 1 0 01963136 -arcade n 2 3 @ ~ %p 2 0 02733378 02733213 -arcadia n 1 3 @ #p %m 1 0 08790353 -arcadian n 1 3 @ #m + 1 0 09711754 -arcadic n 1 1 @ 1 0 06977948 -arcadic_dialect n 1 1 @ 1 0 06977948 -arcado-cyprians n 1 1 @ 1 0 08160586 -arcangelo_corelli n 1 1 @ 1 0 10910948 -arcanum n 1 2 @ ~ 1 0 06672953 -arccos n 1 1 @ 1 0 13787853 -arccosecant n 1 1 @ 1 0 13789136 -arccosine n 1 1 @ 1 0 13787853 -arccotangent n 1 1 @ 1 0 13788502 -arcdegree n 1 3 @ #p %p 1 0 13611207 -arcella n 1 2 @ #m 1 0 01394492 -arcellidae n 1 3 @ #m %m 1 0 01394193 -arceuthobium n 1 3 @ #m %m 1 0 12738087 -arceuthobium_pusillum n 1 2 @ #m 1 0 12738259 -arch n 4 6 @ ~ #p %p + ; 4 2 13886133 05576573 02734217 02733524 -arch_support n 1 1 @ 1 0 02735268 -archaebacteria n 1 3 @ ~ #m 1 0 01347583 -archaebacterium n 1 3 @ ~ #m 1 0 01347583 -archaeobacteria n 1 3 @ ~ #m 1 0 01347583 -archaeologist n 1 3 @ ~ + 1 1 09804806 -archaeology n 1 4 @ ~ + - 1 0 06144081 -archaeopteryx n 1 2 @ #m 1 0 01516212 -archaeopteryx_lithographica n 1 2 @ #m 1 0 01516212 -archaeornis n 1 2 @ #m 1 0 01517389 -archaeornithes n 1 3 @ #m %m 1 0 01515811 -archaeozoic n 1 3 @ #p + 1 0 15129220 -archaeozoic_aeon n 1 2 @ #p 1 0 15129220 -archaicism n 1 3 @ + - 1 0 07073447 -archaism n 1 3 @ + - 1 0 07073447 -archaist n 2 2 @ + 2 0 09804230 09797606 -archangel n 2 3 @ ~ + 2 1 09539183 12932173 -archbishop n 1 3 @ ~ + 1 1 09805151 -archbishopric n 1 1 @ 1 0 08550455 -archdeacon n 1 3 @ + ; 1 0 09804343 -archdeaconry n 1 1 @ 1 0 08550560 -archdiocese n 1 2 @ + 1 0 08550862 -archduchess n 1 1 @ 1 0 09804518 -archduchy n 1 1 @ 1 0 08556950 -archduke n 1 3 @ ~ + 1 0 09804658 -archean n 1 3 @ #p + 1 0 15129220 -archean_aeon n 1 2 @ #p 1 0 15129220 -archean_eon n 1 2 @ #p 1 0 15129220 -archegonium n 1 2 @ + 1 0 11689054 -archenteron n 1 3 @ #p %p 1 0 01462945 -archeobacteria n 1 3 @ ~ #m 1 0 01347583 -archeological_remains n 1 2 @ ; 1 0 09203677 -archeological_site n 1 3 @ ~ ; 1 0 08550076 -archeologist n 1 3 @ ~ + 1 0 09804806 -archeology n 1 4 @ ~ + - 1 0 06144081 -archeopteryx n 1 2 @ #m 1 0 01516212 -archeozoic n 1 3 @ #p + 1 0 15129220 -archeozoic_eon n 1 2 @ #p 1 0 15129220 -archer n 3 3 @ ~ ; 3 0 09805324 09753348 08687525 -archerfish n 1 2 @ #m 1 0 02620578 -archery n 1 1 @ 1 0 00446980 -arches_national_park n 1 2 @ #p 1 0 08602254 -archespore n 1 2 @ + 1 0 11688378 -archesporium n 1 2 @ + 1 0 11688378 -archetype n 1 2 @ + 1 0 05938400 -archiannelid n 1 2 @ #m 1 0 01934844 -archiannelida n 1 3 @ #m %m 1 0 01934705 -archibald_macleish n 1 1 @ 1 0 11148152 -archibald_percival_wavell n 1 1 @ 1 0 11377315 -archidiaconate n 1 1 @ 1 0 14432527 -archidiskidon n 1 3 @ #m %m 1 0 02505342 -archidiskidon_imperator n 1 2 @ #m 1 0 02505485 -archil n 2 2 @ #m 2 0 14989430 12988572 -archilochus n 1 3 @ #m %m 1 0 01834039 -archilochus_colubris n 1 2 @ #m 1 0 01834177 -archimandrite n 1 2 @ ~ 1 0 09754404 -archimedes n 1 1 @ 1 0 10821514 -archimedes'_principle n 1 2 @ ; 1 0 05874716 -archine n 1 1 @ 1 0 13652443 -archipallium n 1 1 @ 1 0 05481870 -archipelago n 1 4 @ ~ %m + 1 0 09203827 -architect n 1 2 @ ~ 1 1 09805475 -architectonics n 1 3 @ #p + 1 0 06124395 -architectural_engineering n 1 1 @ 1 0 06134075 -architectural_ornament n 1 3 @ ~ ; 1 0 02734423 -architectural_plan n 1 2 @ ~ 1 0 03954199 -architectural_style n 1 2 @ ~ 1 0 05841351 -architecture n 4 5 @ ~ %p ; - 4 3 02734725 06123363 00610738 04932278 -architeuthis n 1 2 @ #m 1 0 01972131 -architrave n 2 2 @ #p 2 0 02734994 02734835 -archive n 1 3 @ ~ + 1 0 02735086 -archives n 1 1 @ 1 1 06592991 -archivist n 1 2 @ + 1 0 09806944 -archness n 1 1 @ 1 0 04649651 -archosargus n 1 3 @ #m %m 1 0 02591757 -archosargus_probatocephalus n 1 2 @ #m 1 0 02592055 -archosargus_rhomboidalis n 1 2 @ #m 1 0 02591911 -archosaur n 1 4 @ ~ #m + 1 0 01695681 -archosauria n 1 3 @ #m %m 1 0 01695259 -archosaurian n 1 4 @ ~ #m + 1 0 01695681 -archosaurian_reptile n 1 3 @ ~ #m 1 0 01695681 -archpriest n 1 2 @ ~ 1 0 09807075 -archway n 1 2 @ #p 1 0 02734217 -arcidae n 1 3 @ #m %m 1 0 01963017 -arcminute n 1 3 @ #p %p 1 0 13611567 -arcsec n 1 1 @ 1 0 13788820 -arcsecant n 1 1 @ 1 0 13788820 -arcsecond n 1 2 @ #p 1 0 13611395 -arcsin n 1 1 @ 1 0 13787551 -arcsine n 1 1 @ 1 0 13787551 -arctan n 1 1 @ 1 0 13788182 -arctangent n 1 1 @ 1 0 13788182 -arctic n 2 2 @ + 2 1 08496477 02735538 -arctic_archipelago n 1 2 @ #p 1 0 08825987 -arctic_char n 1 1 @ 1 0 02538562 -arctic_circle n 1 1 @ 1 1 08496798 -arctic_fox n 1 3 @ ~ #m 1 0 02120079 -arctic_ground_squirrel n 1 1 @ 1 0 02359047 -arctic_hare n 1 2 @ #m 1 0 02327656 -arctic_moss n 1 2 @ #m 1 0 12991184 -arctic_mouse-ear n 1 1 @ 1 0 11807696 -arctic_ocean n 1 2 @ %p 1 0 09204977 -arctic_poppy n 1 2 @ #m 1 0 11901759 -arctic_skua n 1 2 @ #m 1 0 02044517 -arctic_willow n 1 2 @ #m 1 0 12726528 -arctic_wolf n 1 1 @ 1 0 02114548 -arctic_zone n 1 1 @ 1 0 08496477 -arctictis n 1 3 @ #m %m 1 0 02135981 -arctictis_bintourong n 1 2 @ #m 1 0 02136103 -arctiid n 1 3 @ ~ #m 1 0 02305407 -arctiid_moth n 1 3 @ ~ #m 1 0 02305407 -arctiidae n 1 3 @ #m %m 1 0 02305245 -arctium n 1 3 @ #m %m 1 0 11924330 -arctium_lappa n 1 1 @ 1 0 11924849 -arctium_minus n 1 1 @ 1 0 11924661 -arctocebus n 1 3 @ #m %m 1 0 02499434 -arctocebus_calabarensis n 1 2 @ #m 1 0 02499568 -arctocephalus n 1 3 @ #m %m 1 0 02077023 -arctocephalus_philippi n 1 1 @ 1 0 02077384 -arctonyx n 1 3 @ #m %m 1 0 02448754 -arctonyx_collaris n 1 2 @ #m 1 0 02448885 -arctostaphylos n 1 3 @ #m %m 1 0 12231031 -arctostaphylos_alpina n 1 1 @ 1 0 12231709 -arctostaphylos_andersonii n 1 1 @ 1 0 12232114 -arctostaphylos_manzanita n 1 1 @ 1 0 12232280 -arctostaphylos_tomentosa n 1 1 @ 1 0 12232503 -arctostaphylos_uva-ursi n 1 1 @ 1 0 12231358 -arctotis n 1 3 @ #m %m 1 0 11925140 -arctotis_stoechadifolia n 1 2 @ #m 1 0 11925450 -arctotis_venusta n 1 2 @ #m 1 0 11925450 -arcturus n 1 2 @ #m 1 0 09205334 -arcuate_artery n 1 2 @ #p 1 0 05337055 -arcuate_artery_of_the_kidney n 1 2 @ #p 1 0 05337178 -arcuate_vein_of_the_kidney n 1 2 @ #p 1 0 05358036 -arcus n 1 1 @ 1 0 05317815 -arcus_senilis n 1 1 @ 1 1 05317815 -arcus_zygomaticus n 1 2 @ #p 1 0 05284851 -arda n 1 2 @ #p 1 0 08340753 -ardea n 1 3 @ #m %m 1 0 02008316 -ardea_herodius n 1 2 @ #m 1 0 02008497 -ardea_occidentalis n 1 2 @ #m 1 0 02008643 -ardeb n 1 1 @ 1 0 13616340 -ardeidae n 1 3 @ #m %m 1 0 02007721 -ardennes n 1 3 @ #p - 1 0 08941681 -ardennes_counteroffensive n 1 3 @ #p ; 1 0 01271107 -ardent_spirits n 1 1 @ 1 0 07902336 -ardisia n 1 3 @ #m %m 1 0 12097180 -ardisia_crenata n 1 2 @ #m 1 0 12097396 -ardisia_escallonoides n 1 2 @ #m 1 0 12097556 -ardisia_paniculata n 1 2 @ #m 1 0 12097556 -ardor n 3 2 @ ~ 3 1 07555402 07544129 07481375 -ardour n 3 2 @ ~ 3 0 07555402 07544129 07481375 -ards n 1 1 @ 1 0 14055052 -arduousness n 1 2 @ + 1 0 04709759 -are n 1 2 @ #p 1 0 13613862 -area n 6 3 @ ~ + 6 6 08497294 05815517 05221895 14514039 02735688 05128519 -area_17_of_brodmann n 1 2 @ #p 1 0 05494617 -area_bombing n 1 1 @ 1 0 00978993 -area_code n 1 1 @ 1 0 06354626 -area_of_cardiac_dullness n 1 2 @ #p 1 0 05391540 -area_unit n 1 2 @ ~ 1 0 13600404 -areaway n 1 1 @ 1 1 02736396 -areca n 1 3 @ ~ #m 1 0 12584191 -areca_catechu n 1 2 @ %p 1 0 12584365 -areca_nut n 1 2 @ #p 1 0 07770869 -arecaceae n 1 3 @ #m %m 1 0 12581381 -arecidae n 1 3 @ #m %m 1 0 11668573 -areflexia n 1 1 @ 1 0 14406465 -arena n 4 3 @ ~ %p 4 1 14514039 08497107 04295881 02736511 -arena_theater n 1 1 @ 1 0 02736645 -arenaceous_rock n 1 2 @ ~ 1 0 14697485 -arenaria n 2 3 @ #m %m 2 0 11805837 02024923 -arenaria-melanocephala n 1 1 @ 1 0 02025389 -arenaria_caroliniana n 1 1 @ 1 0 11806369 -arenaria_groenlandica n 1 1 @ 1 0 11806219 -arenaria_interpres n 1 1 @ 1 0 02025239 -arenaria_peploides n 1 1 @ 1 0 11806521 -arenaria_serpyllifolia n 1 1 @ 1 0 11806814 -arenaria_stricta n 1 1 @ 1 0 11806679 -arenaviridae n 1 3 @ #m %m 1 0 01333082 -arenavirus n 1 3 @ ~ #m 1 0 01330497 -arendt n 1 1 @ 1 0 10821699 -arenga n 1 3 @ #m %m 1 0 12584559 -arenga_pinnata n 1 3 @ #m %s 1 0 12584715 -areola n 2 3 @ #p + 2 0 05555017 05554804 -areolar_tissue n 1 1 @ 1 0 05268255 -areopagite n 1 2 @ #m 1 0 09807379 -areopagus n 2 3 @ #p %m 2 0 08785743 08164110 -arequipa n 1 2 @ #p 1 0 08979590 -arere n 1 2 @ #m 1 0 12201938 -ares n 1 2 @ ; 1 0 09555236 -arete n 1 1 @ 1 0 09205509 -areteria_cervicalis n 1 2 @ #p 1 0 05341920 -arethusa n 1 3 @ ~ #m 1 0 12045860 -arethusa_bulbosa n 1 2 @ #m 1 0 12046028 -argal n 1 2 @ #m 1 0 02414763 -argali n 1 2 @ #m 1 0 02414763 -argasid n 1 2 @ #m 1 0 01779463 -argasidae n 1 3 @ #m %m 1 0 01779340 -argemone n 1 3 @ ~ #m 1 0 11902709 -argemone_mexicana n 1 1 @ 1 0 11902982 -argent n 1 2 @ + 1 0 14986144 -argentina n 2 6 @ #m #p %m %p + 2 0 08711974 02542804 -argentine n 1 2 @ #m 1 0 02542958 -argentine_hemorrhagic_fever n 1 1 @ 1 0 14073505 -argentine_monetary_unit n 1 2 @ ~ 1 0 13663448 -argentine_republic n 1 5 @ #m #p %m %p 1 0 08711974 -argentinian n 1 3 @ #m + 1 0 09691149 -argentinidae n 1 3 @ #m %m 1 0 02542598 -argentinosaur n 1 2 @ #m 1 0 01711160 -argentite n 1 2 @ %s 1 0 14666885 -argil n 1 2 @ + 1 0 14602597 -argillaceous_rock n 1 1 @ 1 0 14697600 -argillite n 1 1 @ 1 0 14667017 -arginine n 1 1 @ 1 0 14767796 -argiope n 1 3 @ #m %m 1 0 01772985 -argiope_aurantia n 1 2 @ #m 1 0 01773157 -argiopidae n 1 3 @ #m %m 1 0 01772782 -argive n 1 2 @ + 1 0 09807495 -argle-bargle n 1 2 @ ; 1 0 07182485 -argo n 1 2 @ %p 1 0 09205607 -argon n 1 2 @ #s 1 1 14628920 -argonaut n 3 3 @ #m ; 3 0 09607782 09589585 01970667 -argonauta n 1 3 @ #m %m 1 0 01970502 -argonauta_argo n 1 2 @ #m 1 0 01970667 -argonautidae n 1 3 @ #m %m 1 0 01970342 -argonne n 1 4 @ #p %p ; 1 0 01287431 -argonne_forest n 1 4 @ #p %p ; 1 0 01287431 -argonon n 1 2 @ ~ 1 0 14624369 -argos n 1 3 @ #p + 1 0 08786660 -argosy n 1 1 @ 1 0 08386280 -argot n 1 3 @ ~ - 1 1 07157273 -arguer n 1 3 @ ~ + 1 0 09997404 -arguing n 1 2 @ ~ 1 0 07183151 -argument n 7 4 @ ~ + ; 7 4 06648724 07183151 07140978 06467680 06356299 05857781 05773049 -argumentation n 2 3 @ ~ + 2 0 07140978 05773049 -argun n 1 2 @ #p 1 0 09205890 -argun_river n 1 2 @ #p 1 0 09205890 -argus n 2 3 @ #m ; 2 0 09489889 01803893 -argus_pheasant n 1 2 @ #m 1 0 01803893 -argusianus n 1 3 @ #m %m 1 0 01803764 -argy-bargy n 1 2 @ ; 1 0 07182485 -argyle n 3 1 @ 3 0 02737166 02736934 02736798 -argyll n 3 1 @ 3 0 02737166 02736934 02736798 -argynnis n 1 2 @ #m 1 0 02278601 -argyranthemum n 1 3 @ #m %m 1 0 11925720 -argyranthemum_frutescens n 1 2 @ #m 1 0 11925898 -argyreia n 1 3 @ #m %m 1 0 12824581 -argyrodite n 1 2 @ %s 1 0 14667181 -argyrol n 1 2 @ ; 1 0 03762809 -argyrotaenia n 1 2 @ #m 1 0 02284771 -argyrotaenia_citrana n 1 2 @ #m 1 0 02284884 -argyroxiphium n 1 3 @ #m %m 1 0 11926185 -argyroxiphium_sandwicense n 1 2 @ #m 1 0 11926365 -arhant n 1 1 @ 1 0 09532837 -arhat n 1 1 @ 1 0 09532837 -arhus n 1 2 @ #p 1 0 08762104 -aria n 1 3 @ ~ #p 1 0 07049514 -ariadne n 1 1 @ 1 0 09564889 -arial_mosaic n 1 1 @ 1 0 03787904 -ariana n 1 2 @ #p 1 0 09037991 -arianism n 1 3 ! @ + 1 1 06187756 -arianist n 1 2 @ + 1 1 09807609 -arianrhod n 1 2 @ ; 1 0 09508228 -arianrod n 1 2 @ ; 1 0 09508228 -aricara n 2 1 @ 2 0 09650456 06915821 -aridity n 2 3 @ ~ + 2 1 05148186 14537250 -aridness n 1 2 @ + 1 0 14537250 -aries n 3 3 @ #p ; 3 0 09752246 09206133 08686129 -aries_the_ram n 1 1 @ 1 0 08686129 -arietta n 1 1 @ 1 0 07049634 -ariidae n 1 3 @ #m %m 1 0 02520669 -arikara n 2 1 @ 2 0 09650456 06915821 -aril n 1 1 @ 1 0 13090871 -arilus n 1 3 @ #m %m 1 0 02244670 -arilus_cristatus n 1 2 @ #m 1 0 02244797 -ariocarpus n 1 3 @ #m %m 1 0 11843709 -ariocarpus_fissuratus n 1 2 @ #m 1 0 11843896 -ariomma n 1 3 @ #m %m 1 0 02634414 -arioso n 1 2 @ ; 1 0 07087508 -arisaema n 1 3 @ #m %m 1 0 11784323 -arisaema_atrorubens n 1 2 @ #m 1 0 11784497 -arisaema_dracontium n 1 2 @ #m 1 0 11784825 -arisaema_triphyllum n 1 2 @ #m 1 0 11784497 -arisarum n 1 3 @ #m %m 1 0 11785100 -arisarum_vulgare n 1 2 @ #m 1 0 11785276 -arishth n 1 3 @ #m %p 1 0 12696492 -arista n 1 1 @ 1 0 02585168 -aristarchus n 2 1 @ 2 0 10821867 09206289 -aristarchus_of_samos n 1 1 @ 1 0 10822027 -aristide_maillol n 1 1 @ 1 0 11149867 -aristocort n 1 2 @ ; 1 0 15078768 -aristocracy n 2 4 @ ~ %m + 2 2 08388207 08387213 -aristocrat n 1 4 @ ~ #m + 1 0 09807754 -aristolochia n 1 3 @ #m %m 1 0 11801247 -aristolochia_clematitis n 1 3 @ ~ #m 1 0 11801392 -aristolochia_durior n 1 1 @ 1 0 11801665 -aristolochia_macrophylla n 1 1 @ 1 0 11801665 -aristolochia_serpentaria n 1 1 @ 1 0 11801891 -aristolochiaceae n 1 3 @ #m %m 1 0 11801038 -aristolochiales n 1 3 @ #m %m 1 0 11800799 -aristopak n 1 2 @ ; 1 0 15078768 -aristophanes n 1 1 @ 1 0 10822211 -aristotelean n 1 2 @ + 1 0 09808080 -aristotelia n 1 3 @ #m %m 1 0 12193458 -aristotelia_racemosa n 1 2 @ #m 1 0 12193665 -aristotelia_serrata n 1 2 @ #m 1 0 12193665 -aristotelian n 1 2 @ + 1 0 09808080 -aristotelian_logic n 1 1 @ 1 0 05664344 -aristotelianism n 1 3 @ + ; 1 0 05969194 -aristotle n 1 3 @ + - 1 1 10822338 -arithmancy n 1 1 @ 1 0 05776592 -arithmetic n 1 5 @ ~ + ; - 1 1 06004067 -arithmetic_mean n 1 2 @ ; 1 0 06024230 -arithmetic_operation n 1 2 @ ~ 1 0 00872541 -arithmetic_progression n 1 2 @ ; 1 0 08460924 -arithmetician n 1 2 @ + 1 0 09808351 -arity n 1 2 @ ; 1 0 05857974 -arius n 2 3 @ #m %m 2 0 10822567 02520985 -arizona n 2 5 @ #m #p %m %p 2 1 09057311 01733346 -arizona_ash n 1 1 @ 1 0 12306270 -arizona_cypress n 1 1 @ 1 0 11631854 -arizona_elegans n 1 2 @ #m 1 0 01733466 -arizona_sycamore n 1 2 @ #m 1 0 12808007 -arizona_white_oak n 1 1 @ 1 0 12270278 -arizona_wild_cotton n 1 1 @ 1 0 12177455 -arizonan n 1 1 @ 1 0 09741233 -arizonian n 1 1 @ 1 0 09741233 -arjuna n 1 2 @ ; 1 0 09486781 -ark n 2 2 @ ; 2 0 02737467 02737351 -ark_of_the_covenant n 1 2 @ ; 1 0 02737467 -ark_shell n 1 2 @ #m 1 0 01963317 -arkansan n 1 1 @ 1 0 09741331 -arkansas n 2 4 @ #m #p %p 2 1 09059274 09206375 -arkansas_kingbird n 1 1 @ 1 0 01548492 -arkansas_river n 1 2 @ #p 1 0 09206375 -arkansawyer n 1 1 @ 1 0 09741331 -arles n 1 1 @ 1 0 13350322 -arlington n 1 2 @ #p 1 0 09142887 -arm n 6 5 @ ~ #p %p + 6 4 05563770 02737833 04565375 02737660 08401248 04236377 -arm's_length n 1 1 @ 1 1 05129928 -arm-twisting n 1 1 @ 1 0 07245472 -arm_band n 1 1 @ 1 0 02739427 -arm_bone n 1 3 @ ~ #p 1 0 05593017 -arm_exercise n 1 2 @ ~ 1 0 00629176 -arm_guard n 1 1 @ 1 0 02738859 -arm_pad n 1 1 @ 1 0 02738859 -armada n 1 2 @ ~ 1 0 08293003 -armadillidiidae n 1 3 @ #m %m 1 0 01991233 -armadillidium n 1 3 @ #m %m 1 0 01991367 -armadillo n 1 3 @ ~ #m 1 1 02454379 -armageddon n 2 2 @ ; 2 0 08506932 00956340 -armagnac n 1 1 @ 1 0 07903731 -armament n 2 5 ! @ ~ + ; 2 1 02738031 01156899 -armamentarium n 1 1 @ 1 0 07953367 -armand_jean_du_plessis n 1 1 @ 1 0 11261483 -armata_corsa n 1 2 @ ; 1 0 08015731 -armature n 1 3 @ ~ #p 1 0 02738271 -armband n 2 1 @ 2 0 07262942 02738449 -armchair n 1 3 @ ~ %p 1 1 02738535 -armchair_liberal n 1 1 @ 1 0 09808466 -armed_bullhead n 1 2 @ #m 1 0 02648035 -armed_combat n 1 4 @ ~ #p ; 1 0 00964343 -armed_forces n 1 4 @ ~ %m - 1 1 08199025 -armed_forces_censorship n 1 2 @ ~ 1 0 00822159 -armed_forces_day n 1 2 @ #p 1 0 15189347 -armed_islamic_group n 1 2 @ ; 1 0 08016035 -armed_robbery n 1 1 @ 1 0 00781912 -armed_service n 1 4 @ ~ %m ; 1 1 08198137 -armed_services n 1 4 @ ~ %m - 1 0 08199025 -armenia n 1 7 @ #m #p %m %p + - 1 0 09017526 -armenian n 3 3 @ #m + 3 0 09690371 06942699 06352117 -armenian_alphabet n 1 1 @ 1 0 06352117 -armenian_apostolic_orthodox_church n 1 2 @ #p 1 0 08083083 -armenian_church n 1 2 @ #p 1 0 08083083 -armenian_language n 1 1 @ 1 0 06942699 -armenian_monetary_unit n 1 2 @ ~ 1 0 13699313 -armenian_secret_army_for_the_liberation_of_armenia n 1 2 @ ; 1 0 08016385 -armeria n 1 3 @ #m %m 1 0 12098665 -armeria_maritima n 1 1 @ 1 0 12099031 -armerican_cheddar n 1 2 @ ~ 1 0 07852919 -armet n 1 2 @ #p 1 0 02738741 -armful n 1 1 @ 1 1 13764540 -armguard n 1 1 @ 1 0 02888270 -armhole n 1 2 @ #p 1 0 02738978 -armiger n 2 1 @ 2 0 09808686 09808591 -armilla n 2 2 @ ; 2 0 02739248 02739123 -armillaria n 1 3 @ #m %m 1 0 13231436 -armillaria_caligata n 1 2 @ #m 1 0 13231919 -armillaria_ponderosa n 1 1 @ 1 0 13232106 -armillaria_zelleri n 1 1 @ 1 0 13232363 -armillariella n 1 3 @ #m %m 1 0 13232515 -armillariella_mellea n 1 2 @ #m 1 0 13232779 -armillary_sphere n 1 1 @ 1 0 02739248 -armin n 1 1 @ 1 0 10822786 -arming n 1 3 ! @ ~ 1 0 01156899 -arminian n 1 2 @ #m 1 0 10738871 -arminian_baptist n 1 1 @ 1 0 08090083 -arminian_church n 1 2 @ %m 1 0 08092190 -arminianism n 1 2 @ + 1 0 06229586 -arminius n 2 1 @ 2 0 10822962 10822786 -armistice n 1 1 @ 1 0 13970912 -armistice_day n 1 2 @ #p 1 0 15200896 -armlet n 1 2 @ + 1 0 02739427 -armoire n 1 1 @ 1 1 02739550 -armor n 3 4 @ ~ + ; 3 1 02739668 08197742 01902750 -armor-bearer n 1 1 @ 1 0 09808686 -armor_plate n 1 2 @ ~ 1 0 02740764 -armor_plating n 1 2 @ ~ 1 0 02740764 -armoracia n 1 3 @ #m %m 1 0 11872850 -armoracia_rusticana n 1 3 @ #m %p 1 0 11872973 -armored_car n 2 2 @ ; 2 0 02740061 02739889 -armored_catfish n 1 2 @ #m 1 0 02520525 -armored_combat_vehicle n 1 4 @ ~ %p ; 1 0 04389033 -armored_dinosaur n 1 3 @ ~ #m 1 0 01701551 -armored_personnel_carrier n 1 2 @ ; 1 0 02740300 -armored_scale n 1 3 @ ~ #m 1 0 02249515 -armored_sea_robin n 1 2 @ #m 1 0 02651617 -armored_searobin n 1 2 @ #m 1 0 02651617 -armored_vehicle n 1 2 @ ~ 1 0 02740533 -armorer n 3 2 @ + 3 0 09808949 09808794 08066095 -armorial_bearing n 1 2 @ ~ 1 0 03008565 -armory n 4 2 @ ; 4 0 05634059 02743426 02743207 02741367 -armour n 3 4 @ ~ + ; 3 0 08197742 02739668 01902750 -armour_plate n 1 2 @ ~ 1 0 02740764 -armoured_car n 2 2 @ ; 2 0 02740061 02739889 -armoured_combat_vehicle n 1 4 @ ~ %p ; 1 0 04389033 -armoured_personnel_carrier n 1 2 @ ; 1 0 02740300 -armoured_vehicle n 1 2 @ ~ 1 0 02740533 -armourer n 3 2 @ + 3 0 09808949 09808794 08066095 -armoury n 4 2 @ ; 4 0 05634059 02743426 02743207 02741367 -armpit n 1 3 @ #p %p 1 1 05549576 -armrest n 1 3 @ ~ #p 1 0 02741475 -arms n 2 4 @ ~ %p ; 2 1 04566257 03058726 -arms-runner n 1 1 @ 1 0 10152440 -arms_control n 1 1 @ 1 0 00808485 -arms_deal n 1 1 @ 1 0 01110633 -arms_industry n 1 1 @ 1 0 08068924 -arms_manufacturer n 1 2 @ ~ 1 0 09809134 -arms_race n 1 1 @ 1 0 07472808 -armstrong n 2 1 @ 2 0 10823369 10823199 -army n 3 6 @ ~ #p %m %p ; 3 2 08191230 08183290 08394922 -army_ant n 1 2 @ #m 1 0 02220518 -army_attache n 1 2 @ ; 1 0 09809279 -army_base n 1 1 @ 1 0 02741587 -army_brat n 1 1 @ 1 0 09809427 -army_corps n 1 4 @ ~ #m %m 1 0 08212527 -army_cutworm n 1 2 @ #m 1 0 02296912 -army_engineer n 1 3 @ ~ ; 1 0 09809538 -army_for_the_liberation_of_rwanda n 1 2 @ ; 1 0 08016900 -army_high_performance_computing_research_center n 1 2 @ #p 1 0 02741681 -army_hut n 1 3 @ ~ ; 1 0 03550153 -army_intelligence n 1 4 @ #m #p ; 1 0 08395682 -army_national_guard n 1 3 @ #p ; 1 0 08396990 -army_of_muhammad n 1 2 @ ; 1 0 08026197 -army_of_the_confederacy n 1 1 @ 1 0 08394657 -army_of_the_pure n 1 2 @ ; 1 0 08031020 -army_of_the_righteous n 1 2 @ ; 1 0 08031020 -army_officer n 1 3 @ ~ ; 1 0 09809749 -army_tank n 1 4 @ ~ %p ; 1 0 04389033 -army_unit n 1 5 @ ~ #m %m ; 1 0 08190754 -army_worm n 1 2 @ #m 1 0 02297442 -armyworm n 3 2 @ #m 3 0 02297442 02297294 02204907 -arna_wendell_bontemps n 1 1 @ 1 0 10857159 -arng n 1 3 @ #p ; 1 0 08396990 -arnhem n 1 2 @ #p 1 0 08950230 -arnica n 3 3 @ #m #s 3 0 11927509 11926833 02741981 -arnica_bud n 1 1 @ 1 0 11989087 -arnica_cordifolia n 1 2 @ #m 1 0 11926976 -arnica_montana n 1 3 @ #m %s 1 0 11927215 -arno n 1 2 @ #p 1 0 09206693 -arno_river n 1 2 @ #p 1 0 09206693 -arnold n 2 1 @ 2 0 10823760 10823529 -arnold-chiari_deformity n 1 1 @ 1 0 14213867 -arnold_daniel_palmer n 1 1 @ 1 0 11221650 -arnold_gesell n 1 1 @ 1 0 10997234 -arnold_joseph_toynbee n 1 1 @ 1 0 11347317 -arnold_lucius_gesell n 1 1 @ 1 0 10997234 -arnold_of_brescia n 1 1 @ 1 0 10823894 -arnold_palmer n 1 1 @ 1 0 11221650 -arnold_schoenberg n 1 1 @ 1 0 11285902 -arnold_schonberg n 1 1 @ 1 0 11285902 -arnold_toynbee n 1 1 @ 1 0 11347317 -arnoseris n 1 3 @ #m %m 1 0 11927616 -arnoseris_minima n 1 2 @ #m 1 0 11927740 -aroeira_blanca n 1 2 @ #m 1 0 12764978 -aroid n 1 4 @ ~ #m + 1 0 11779300 -arolla_pine n 1 2 @ %p 1 0 11612018 -aroma n 2 4 @ ~ = + 2 1 04980008 05714466 -aromatherapy n 1 1 @ 1 0 00662196 -aromatic_aster n 1 1 @ 1 0 11935715 -aromatic_compound n 1 1 @ 1 0 14610088 -aromatic_hydrocarbon n 1 2 @ ~ 1 0 14767996 -arouet n 1 1 @ 1 0 11368638 -arousal n 4 3 @ ~ + 4 1 00242808 14023997 05678745 00853835 -arouser n 1 2 @ + 1 0 10763985 -arp n 1 1 @ 1 0 10824146 -arpeggio n 1 1 @ 1 0 06869610 -arpent n 1 1 @ 1 0 13614143 -arquebus n 1 1 @ 1 0 02742070 -arrack n 1 1 @ 1 0 07902937 -arraignment n 1 2 @ + 1 0 07235936 -arrangement n 6 3 @ ~ + 6 5 05795044 07938773 05726596 05075602 07038400 00939628 -arranger n 2 3 @ ~ + 2 0 10383237 09809925 -arranging n 1 2 @ ~ 1 0 00939628 -arras n 1 2 @ %p 1 0 04393404 -array n 4 3 @ ~ + 4 2 07939382 06888174 02742322 02742194 -arrears n 2 1 @ 2 0 14490685 13397443 -arrest n 2 3 @ ~ + 2 1 00088725 14010927 -arrest_warrant n 1 3 @ ~ ; 1 0 06547615 -arrested_development n 1 1 @ 1 0 14503354 -arrester n 1 3 @ #p + 1 0 02742468 -arrester_hook n 1 2 @ #p 1 0 02742468 -arrhenatherum n 1 3 @ #m %m 1 0 12108742 -arrhenatherum_elatius n 1 2 @ #m 1 0 12108871 -arrhenius n 1 1 @ 1 0 10824352 -arrhenius_theory_of_dissociation n 1 2 @ ; 1 0 06108850 -arrhythmia n 1 3 @ ~ + 1 0 14110674 -arriere_pensee n 1 1 @ 1 0 05698620 -arrival n 3 3 @ ~ + 3 3 00048225 00048374 09810166 -arrival_gate n 1 1 @ 1 0 02742663 -arrival_time n 1 1 @ 1 0 15180934 -arrivederci n 1 1 @ 1 0 06629610 -arriver n 1 3 @ ~ + 1 0 09810166 -arriviste n 1 2 @ ~ 1 0 10740868 -arroba n 2 1 @ 2 0 13717619 13616427 -arrogance n 1 3 @ ~ + 1 1 04887912 -arrogation n 1 3 @ ~ + 1 0 00085678 -arrogator n 1 2 @ + 1 0 09810364 -arrow n 2 4 @ ~ #p %p 2 2 06818121 02742753 -arrow-grass_family n 1 3 @ #m %m 1 0 12617140 -arrow_arum n 1 3 @ ~ #m 1 0 11790788 -arrow_grass n 1 2 @ #m 1 0 12617559 -arrow_leaved_aster n 1 1 @ 1 0 11935794 -arrow_wood n 2 2 @ #m 2 0 12681376 12681141 -arrowhead n 1 3 @ #p %p 1 0 02743050 -arrowleaf_groundsel n 1 1 @ 1 0 12012510 -arrowroot n 3 1 @ 3 0 15054347 12351790 12351091 -arrowroot_family n 1 3 @ #m %m 1 0 12351287 -arrowsmith n 1 1 @ 1 0 09810633 -arrowworm n 1 3 @ ~ #m 1 0 01923890 -arroyo n 1 2 @ ; 1 1 09206896 -arroyo_willow n 1 2 @ #m 1 0 12729023 -arroz_con_pollo n 1 1 @ 1 0 07862095 -arse n 2 3 @ #p ; 2 0 05559256 05538215 -arsehole n 1 2 @ ; 1 0 05538215 -arsenal n 3 2 @ ; 3 0 02743426 02743207 02741367 -arsenate n 1 1 @ 1 0 14610261 -arsenic n 2 3 @ #s + 2 1 14768201 14629149 -arsenic_acid n 1 1 @ 1 0 14610347 -arsenic_group n 1 1 @ 1 0 14788714 -arsenic_trioxide n 1 1 @ 1 0 14768201 -arsenical n 1 2 @ + 1 0 14602721 -arsenide n 1 1 @ 1 0 14610443 -arsenopyrite n 1 2 @ %s 1 0 14667328 -arsenous_anhydride n 1 1 @ 1 0 14768201 -arsenous_oxide n 1 1 @ 1 0 14768201 -arsine n 1 1 @ 1 0 14756200 -arson n 1 2 @ + 1 0 00378296 -arsonist n 1 3 @ ~ + 1 0 09810707 -art n 4 6 @ ~ #p + ; - 4 4 02743547 00933420 05638987 06998748 -art_class n 1 2 @ ~ 1 0 00885457 -art_collection n 1 2 @ ~ 1 0 07953499 -art_critic n 1 2 @ ~ 1 0 09810867 -art_dealer n 1 2 @ ~ 1 0 09810983 -art_deco n 1 1 @ 1 0 08465118 -art_department n 1 1 @ 1 0 08115778 -art_director n 1 1 @ 1 0 09811112 -art_editor n 1 1 @ 1 1 09811281 -art_exhibition n 1 2 @ ~ 1 0 08407839 -art_form n 1 3 @ ~ ; 1 0 05841151 -art_gallery n 1 2 @ ~ 1 0 03412058 -art_historian n 1 2 @ ~ 1 0 09811414 -art_history n 1 2 @ ~ 1 0 06156015 -art_movement n 1 2 @ ~ 1 0 08466643 -art_nouveau n 1 1 @ 1 0 08465312 -art_object n 1 2 @ ~ 1 0 03838535 -art_paper n 1 2 @ ; 1 0 14768854 -art_rock n 1 1 @ 1 0 07065333 -art_school n 1 1 @ 1 1 02746978 -art_student n 1 1 @ 1 1 09813351 -art_tatum n 1 1 @ 1 0 11332688 -art_teacher n 1 1 @ 1 1 09813441 -artamidae n 1 3 @ #m %m 1 0 01596761 -artamus n 1 3 @ #m %m 1 0 01596887 -artaxerxes n 2 1 @ 2 0 10824710 10824541 -artaxerxes_i n 1 1 @ 1 0 10824541 -artaxerxes_ii n 1 1 @ 1 0 10824710 -artefact n 1 3 @ ~ + 1 0 00021939 -artemia n 1 3 @ #m %m 1 0 01995323 -artemia_salina n 1 2 @ #m 1 0 01995686 -artemis n 1 2 @ ; 1 0 09556697 -artemis_pontica n 1 2 @ #m 1 0 11930994 -artemis_spinescens n 1 2 @ #m 1 0 11931135 -artemisia n 1 3 @ ~ #m 1 0 11928352 -artemisia_abrotanum n 1 2 @ #m 1 0 11929291 -artemisia_absinthium n 1 3 @ #m #s 1 0 11929477 -artemisia_annua n 1 2 @ #m 1 0 11929743 -artemisia_californica n 1 2 @ #m 1 0 11929880 -artemisia_campestris n 1 2 @ #m 1 0 11930038 -artemisia_cana n 1 2 @ #m 1 0 12014085 -artemisia_dracunculus n 1 2 @ %p 1 0 11930203 -artemisia_filifolia n 1 2 @ #m 1 0 11930353 -artemisia_frigida n 1 2 @ #m 1 0 11930571 -artemisia_gnaphalodes n 1 1 @ 1 0 11930788 -artemisia_ludoviciana n 1 1 @ 1 0 11930788 -artemisia_maritima n 1 2 @ #m 1 0 12014355 -artemisia_stelleriana n 1 2 @ #m 1 0 11931312 -artemisia_tridentata n 1 2 @ #m 1 0 12014524 -artemisia_vulgaris n 1 1 @ 1 0 11931540 -artemision_at_ephesus n 1 2 @ #m 1 0 02744077 -artemus_ward n 1 1 @ 1 0 10866571 -arteria n 1 2 @ ~ 1 0 05333777 -arteria_alveolaris n 1 3 @ ~ #p 1 0 05335310 -arteria_alveolaris_inferior n 1 1 @ 1 0 05335515 -arteria_alveolaris_superior n 1 1 @ 1 0 05335700 -arteria_angularis n 1 1 @ 1 0 05335850 -arteria_appendicularis n 1 1 @ 1 0 05336893 -arteria_arcuata n 1 2 @ #p 1 0 05337055 -arteria_ascendens n 1 2 @ #p 1 0 05337855 -arteria_auricularis n 1 2 @ #p 1 0 05338025 -arteria_axillaris n 1 2 @ #p 1 0 05338166 -arteria_basilaris n 1 2 @ #p 1 0 05338410 -arteria_brachialis n 1 2 @ #p 1 0 05338614 -arteria_buccalis n 1 2 @ #p 1 0 05339168 -arteria_bulbi_penis n 1 1 @ 1 0 05337485 -arteria_bulbi_vestibuli n 1 1 @ 1 0 05337663 -arteria_carotis n 1 3 @ ~ #p 1 0 05339357 -arteria_celiaca n 1 1 @ 1 0 05340317 -arteria_centralis_retinae n 1 2 @ #p 1 0 05340599 -arteria_cerebelli n 1 3 @ ~ #p 1 0 05340795 -arteria_cerebri n 1 2 @ ~ 1 0 05341206 -arteria_choroidea n 1 2 @ #p 1 0 05342070 -arteria_ciliaris n 1 2 @ #p 1 0 05342214 -arteria_circumflexa_femoris n 1 2 @ #p 1 0 05342673 -arteria_circumflexa_humeri n 1 2 @ #p 1 0 05342854 -arteria_circumflexa_ilium n 1 1 @ 1 0 05343037 -arteria_circumflexa_scapulae n 1 2 @ #p 1 0 05343218 -arteria_colica n 1 2 @ #p 1 0 05343408 -arteria_communicans n 1 2 @ #p 1 0 05343542 -arteria_coronaria n 1 3 @ ~ #p 1 0 05343718 -arteria_cystica n 1 1 @ 1 0 05344350 -arteria_digitalis n 1 2 @ #p 1 0 05344514 -arteria_epigastrica n 1 1 @ 1 0 05344697 -arteria_ethmoidalis n 1 2 @ #p 1 0 05344848 -arteria_facialis n 1 1 @ 1 0 05345038 -arteria_femoralis n 1 2 @ #p 1 0 05345247 -arteria_gastrica n 1 3 @ ~ #p 1 0 05345581 -arteria_gastrica_breves n 1 1 @ 1 0 05346191 -arteria_gastrica_sinistra n 1 1 @ 1 0 05345978 -arteria_glutes n 1 2 @ #p 1 0 05346406 -arteria_hepatica n 1 2 @ #p 1 0 05346585 -arteria_ileocolica n 1 1 @ 1 0 05346892 -arteria_ileum n 1 2 @ #p 1 0 05346714 -arteria_iliaca n 1 3 @ ~ #p 1 0 05347146 -arteria_iliolumbalis n 1 1 @ 1 0 05347871 -arteria_infraorbitalis n 1 1 @ 1 0 05348054 -arteria_intercostalis n 1 1 @ 1 0 05348540 -arteria_labialis n 1 3 @ ~ #p 1 0 05348884 -arteria_labialis_inferior n 1 1 @ 1 0 05349101 -arteria_labialis_superior n 1 1 @ 1 0 05349273 -arteria_lacrimalis n 1 2 @ #p 1 0 05349659 -arteria_laryngea n 1 2 @ #p 1 0 05349906 -arteria_lienalis n 1 2 @ #p 1 0 05350061 -arteria_lingualis n 1 2 @ #p 1 0 05350256 -arteria_lumbalis n 1 1 @ 1 0 05350453 -arteria_maxillaris n 1 2 @ ~ 1 0 05350679 -arteria_meningea n 1 2 @ ~ 1 0 05351058 -arteria_mesenterica n 1 2 @ ~ 1 0 05351746 -arteria_metacarpea n 1 2 @ #p 1 0 05352291 -arteria_metatarsea n 1 2 @ #p 1 0 05352433 -arteria_musculophrenica n 1 1 @ 1 0 05352601 -arteria_nutricia n 1 1 @ 1 0 05352754 -arteria_ophthalmica n 1 1 @ 1 0 05352896 -arteria_ovarica n 1 2 @ #p 1 0 05353070 -arteria_palatina n 1 1 @ 1 0 05353241 -arteria_pancreatica n 1 1 @ 1 0 05353364 -arteria_perinealis n 1 1 @ 1 0 05353507 -arteria_poplitea n 1 1 @ 1 0 05345421 -arteria_pudenda n 1 1 @ 1 0 05353683 -arteria_pulmonalis n 1 2 @ ~ 1 0 05353819 -arteria_radialis n 1 1 @ 1 0 05338847 -arteria_rectalis n 1 2 @ #p 1 0 05354238 -arteria_renalis n 1 2 @ #p 1 0 05354381 -arteria_subclavia n 1 2 @ #p 1 0 05354580 -arteria_temporalis_anterior n 1 1 @ 1 0 05354955 -arteria_temporalis_intermedia n 1 1 @ 1 0 05355146 -arteria_temporalis_posterior n 1 1 @ 1 0 05355341 -arteria_testicularis n 1 2 @ #p 1 0 05355527 -arteria_ulnaris n 1 1 @ 1 0 05355706 -arteria_uterina n 1 2 @ #p 1 0 05355890 -arteria_vaginalis n 1 2 @ #p 1 0 05356083 -arteria_vertebralis n 1 1 @ 1 0 05356291 -arterial_blood n 1 1 @ 1 0 05400445 -arterial_blood_gases n 1 1 @ 1 0 00998768 -arterial_blood_vessel n 1 2 @ ~ 1 0 05333777 -arterial_plaque n 1 1 @ 1 0 05244619 -arterial_pressure n 1 1 @ 1 0 11430863 -arterial_road n 1 2 @ ; 1 0 02744323 -arterial_sclerosis n 1 2 @ ~ 1 0 14108324 -arteriectasia n 1 1 @ 1 0 14024185 -arteriectasis n 1 1 @ 1 0 14024185 -arteriogram n 1 1 @ 1 0 02744423 -arteriography n 1 1 @ 1 0 00905742 -arteriola n 1 2 @ + 1 0 05337301 -arteriole n 1 2 @ + 1 1 05337301 -arteriolosclerosis n 1 1 @ 1 1 14108232 -arteriosclerosis n 1 3 @ ~ + 1 0 14108324 -arteriosclerosis_obliterans n 1 1 @ 1 1 14109889 -arteritis n 1 2 @ ~ 1 0 14258609 -artery n 2 3 @ ~ + 2 1 05333777 02744532 -artery_of_the_labyrinth n 1 2 @ #p 1 0 05349445 -artery_of_the_penis_bulb n 1 1 @ 1 0 05337485 -artery_of_the_vestibule_bulb n 1 1 @ 1 0 05337663 -artesian_well n 1 1 @ 1 0 02744634 -artfulness n 1 4 ! @ ~ + 1 0 04876705 -arthralgia n 1 2 @ + 1 0 14324572 -arthritic n 1 2 @ + 1 0 09811568 -arthritis n 1 3 @ ~ + 1 1 14186541 -arthrocentesis n 1 1 @ 1 0 00943861 -arthrodesis n 1 1 @ 1 0 00666600 -arthrogram n 1 1 @ 1 0 02744844 -arthrography n 1 2 @ ~ 1 0 00905842 -arthromere n 1 3 @ #p + 1 0 05225439 -arthropathy n 1 1 @ 1 0 14024296 -arthroplasty n 1 2 @ ~ 1 0 00666733 -arthropod n 1 5 @ ~ #m %p + 1 0 01767661 -arthropod_family n 1 3 @ ~ #m 1 0 01759182 -arthropod_genus n 1 3 @ ~ #m 1 0 01762525 -arthropoda n 1 4 @ #m %m + 1 0 01767199 -arthropteris n 1 2 @ #m 1 0 13204482 -arthroscope n 1 1 @ 1 0 02744961 -arthroscopy n 1 1 @ 1 0 00666884 -arthrospore n 2 2 @ + 2 0 13092548 13092385 -arthur n 2 2 @ + 2 0 10825180 10824888 -arthur_ashe n 1 1 @ 1 0 10825718 -arthur_compton n 1 1 @ 1 0 10905703 -arthur_conan_doyle n 1 1 @ 1 0 10906462 -arthur_edwin_kennelly n 1 1 @ 1 0 11101250 -arthur_evans n 1 1 @ 1 0 10963254 -arthur_fiedler n 1 1 @ 1 0 10970488 -arthur_garfield_hays n 1 1 @ 1 0 11036521 -arthur_holly_compton n 1 1 @ 1 0 10905703 -arthur_holmes n 1 1 @ 1 0 11056799 -arthur_honegger n 1 1 @ 1 0 11057679 -arthur_jacob_arshawsky n 1 1 @ 1 0 11296429 -arthur_james_balfour n 1 1 @ 1 0 10832568 -arthur_john_gielgud n 1 1 @ 1 0 10998860 -arthur_koestler n 1 1 @ 1 0 11108584 -arthur_laffer n 1 1 @ 1 0 11114285 -arthur_marx n 1 2 @ #m 1 0 11161045 -arthur_meier_schlesinger n 1 1 @ 1 0 11284742 -arthur_meier_schlesinger_jr. n 1 1 @ 1 0 11284884 -arthur_miller n 1 1 @ 1 0 11179923 -arthur_mitchell n 1 1 @ 1 0 11181937 -arthur_neville_chamberlain n 1 1 @ 1 0 10889689 -arthur_rimbaud n 1 1 @ 1 0 11262765 -arthur_robert_ashe n 1 1 @ 1 0 10825718 -arthur_rubinstein n 1 1 @ 1 0 11273479 -arthur_schlesinger n 2 1 @ 2 0 11284884 11284742 -arthur_schlesinger_jr. n 1 1 @ 1 0 11284884 -arthur_schopenhauer n 1 1 @ 1 0 11286354 -arthur_seymour_sullivan n 1 1 @ 1 0 11324212 -arthur_stanley_jefferson_laurel n 1 2 @ #m 1 0 11119190 -arthur_sullivan n 1 1 @ 1 0 11324212 -arthur_symons n 1 1 @ 1 0 11327650 -arthur_tappan n 1 1 @ 1 0 11331192 -arthur_tatum n 1 1 @ 1 0 11332688 -arthur_wellesley n 1 1 @ 1 0 11380923 -arthurian_legend n 1 2 @ - 1 0 06371734 -artichoke n 2 4 @ #m #p %p 2 0 11959632 07718747 -artichoke_heart n 1 2 @ #p 1 0 07718920 -artichoke_plant n 1 3 @ #m %p 1 0 11959632 -article n 4 5 @ ~ #p + ; 4 3 06268096 00022903 06392935 06324669 -article_of_clothing n 1 3 @ ~ %p 1 0 03051540 -article_of_commerce n 1 2 @ ~ 1 0 02745091 -article_of_faith n 2 3 @ ~ ; 2 0 06270690 05942888 -article_of_furniture n 1 3 @ ~ - 1 0 03405725 -articles_of_agreement n 1 1 @ 1 0 06526486 -articles_of_confederation n 1 1 @ 1 0 06533863 -articles_of_incorporation n 1 2 @ #p 1 0 06470688 -articular_muscle n 1 3 @ ~ #p 1 0 05293597 -articulated_ladder n 1 1 @ 1 0 02745228 -articulated_lorry n 1 3 @ ~ %p 1 0 04467665 -articulateness n 1 2 @ + 1 0 04651195 -articulatio n 1 5 @ ~ #p %p ; 1 0 05595083 -articulatio_coxae n 1 3 @ #p %p 1 0 05596004 -articulatio_cubiti n 1 3 @ #p %p 1 0 05579944 -articulatio_genus n 1 3 @ #p %p 1 0 05573602 -articulatio_humeri n 1 3 @ #p %p 1 0 05549061 -articulatio_plana n 1 2 @ ~ 1 0 05578251 -articulatio_radiocarpea n 1 3 @ #p %p 1 0 05584928 -articulatio_spheroidea n 1 2 @ ~ 1 0 05595531 -articulatio_synovialis n 1 2 @ ~ 1 0 05543177 -articulatio_talocruralis n 1 3 @ #p %p 1 0 05578442 -articulatio_temporomandibularis n 1 1 @ 1 0 05276668 -articulatio_trochoidea n 1 1 @ 1 0 05597188 -articulation n 5 6 @ ~ #p %p + ; 5 1 07131854 13911151 07073208 05595083 00147314 -articulator n 2 3 @ ~ + 2 0 09811712 05301392 -articulatory_system n 1 3 @ #p %p 1 0 05296639 -artie_shaw n 1 1 @ 1 0 11296429 -artifact n 1 4 ! @ ~ + 1 1 00021939 -artifice n 1 1 @ 1 1 00172598 -artificer n 3 2 @ ~ 3 0 10214637 09974648 09808794 -artificial_additive n 1 1 @ 1 0 03377845 -artificial_blood n 1 1 @ 1 0 14768480 -artificial_flower n 1 1 @ 1 0 02745395 -artificial_heart n 1 2 @ ~ 1 0 02745492 -artificial_horizon n 1 1 @ 1 0 02745611 -artificial_insemination n 1 1 @ 1 0 00845352 -artificial_intelligence n 1 2 @ ~ 1 0 06133203 -artificial_joint n 1 1 @ 1 0 02745816 -artificial_kidney n 1 1 @ 1 0 02746008 -artificial_lake n 1 3 @ ~ #p 1 1 04078747 -artificial_language n 1 3 ! @ ~ 1 0 06894544 -artificial_pacemaker n 1 1 @ 1 0 03870290 -artificial_respiration n 1 2 @ #p 1 0 00831919 -artificial_satellite n 1 3 @ ~ %p 1 0 04137444 -artificial_skin n 1 1 @ 1 0 02746225 -artificiality n 1 3 @ ~ + 1 0 04788494 -artillery n 3 5 @ ~ #p %p ; 3 3 02746365 08389297 07246932 -artillery_fire n 1 2 @ ~ 1 1 00994449 -artillery_plant n 1 2 @ #m 1 0 12395289 -artillery_shell n 1 1 @ 1 0 02746595 -artillery_unit n 1 3 @ ~ ; 1 0 08389297 -artilleryman n 1 1 @ 1 1 09811852 -artiodactyl n 1 3 @ ~ #m 1 0 02394477 -artiodactyl_mammal n 1 3 @ ~ #m 1 0 02394477 -artiodactyla n 1 4 @ #m %m + 1 0 02394068 -artisan n 1 2 @ ~ 1 1 09974648 -artisan's_lien n 1 1 @ 1 0 13401261 -artist n 1 3 @ ~ + 1 1 09812338 -artist's_loft n 1 1 @ 1 0 02746683 -artist's_model n 1 1 @ 1 0 09813219 -artist's_workroom n 1 2 @ ~ 1 0 02746841 -artiste n 1 1 @ 1 0 09813126 -artistic_creation n 1 3 @ ~ - 1 0 00933420 -artistic_movement n 1 2 @ ~ 1 0 08466643 -artistic_production n 1 3 @ ~ - 1 0 00933420 -artistic_style n 1 2 @ ~ 1 0 04929422 -artistry n 1 2 @ ~ 1 1 05638987 -artium_baccalaurens n 1 1 @ 1 0 06698640 -artium_magister n 1 1 @ 1 0 06701001 -artlessness n 2 4 ! @ ~ + 2 0 04880830 04872676 -artocarpus n 1 3 @ #m %m 1 0 12400261 -artocarpus_altilis n 1 3 @ #m %p 1 0 12400489 -artocarpus_communis n 1 3 @ #m %p 1 0 12400489 -artocarpus_heterophyllus n 1 3 @ #m %p 1 0 12400720 -artocarpus_odoratissima n 1 3 @ #m %p 1 0 12400924 -artois n 1 2 @ #p 1 0 08940670 -arts n 1 2 @ ~ 1 1 06153846 -arts_and_crafts n 1 3 @ ~ ; 1 0 00935005 -artsd n 1 1 @ 1 0 06705306 -artur_rubinstein n 1 1 @ 1 0 11273479 -artur_schnabel n 1 1 @ 1 0 11285456 -arturo_toscanini n 1 1 @ 1 0 11346257 -artwork n 1 3 @ ~ #p 1 0 06998748 -aruba n 1 2 @ #p 1 0 08748794 -arugula n 1 2 @ #m 1 0 11886537 -arui n 1 2 @ #m 1 0 02416104 -arulo n 1 1 @ 1 0 06895266 -arum n 2 4 @ ~ #m #p 2 0 11780018 11779300 -arum_family n 1 3 @ #m %m 1 0 11778534 -arum_lily n 1 3 @ ~ #m 1 0 11793779 -arum_maculatum n 1 3 @ #m %p 1 0 11780148 -arum_palaestinum n 1 2 @ #m 1 0 11780424 -arundinaria n 1 4 @ #m %m + 1 0 12148079 -arundinaria_gigantea n 1 3 @ #m #p 1 0 12148253 -arundinaria_tecta n 1 2 @ #m 1 0 12148439 -arundo n 1 3 @ #m %m 1 0 12109189 -arundo_conspicua n 1 1 @ 1 0 12109365 -arundo_donax n 1 2 @ #m 1 0 12109498 -arundo_richardii n 1 1 @ 1 0 12115383 -aruru n 1 2 @ ; 1 0 09515988 -arvicola n 1 3 @ #m %m 1 0 02341805 -arvicola_amphibius n 1 2 @ #m 1 0 02341974 -aryan n 2 2 @ + 2 0 09635973 09635823 -arytaenoid n 1 2 @ #p 1 0 05530092 -arytenoid n 1 2 @ #p 1 0 05530092 -arytenoid_cartilage n 1 2 @ #p 1 0 05530092 -as n 2 4 @ #s #p %p 2 0 14629149 08991878 -asa_dulcis n 1 1 @ 1 0 14897941 -asa_gray n 1 1 @ 1 0 11012474 -asa_yoelson n 1 1 @ 1 0 11089669 -asadha n 1 2 @ #p 1 0 15220267 -asafetida n 1 1 @ 1 0 14768989 -asafoetida n 1 1 @ 1 0 14768989 -asahikawa n 1 2 @ #p 1 0 08923177 -asala n 1 2 @ ; 1 0 08016385 -asama n 1 2 @ #p 1 0 08926681 -asamiya n 1 1 @ 1 0 06970784 -asana n 1 3 @ ~ ; 1 0 05081957 -asanga n 1 1 @ 1 0 10825407 -asaph_hall n 1 1 @ 1 0 11024419 -asarabacca n 1 1 @ 1 0 11802995 -asarh n 1 2 @ #p 1 0 15220267 -asarum n 1 3 @ #m %m 1 0 11802076 -asarum_canadense n 1 1 @ 1 0 11802410 -asarum_europaeum n 1 1 @ 1 0 11802995 -asarum_shuttleworthii n 1 2 @ #m 1 0 11802800 -asarum_virginicum n 1 1 @ 1 0 11802586 -asbat_al-ansar n 1 2 @ ; 1 0 08017257 -asbestos n 1 3 @ ~ #m 1 0 14725591 -asbestos_abatement n 1 1 @ 1 0 00361684 -asbestosis n 1 1 @ 1 0 14150363 -ascaphidae n 1 3 @ #m %m 1 0 01644542 -ascaphus n 1 3 @ #m %m 1 0 01644699 -ascaphus_trui n 1 2 @ #m 1 0 01644900 -ascariasis n 1 1 @ 1 0 14453175 -ascaridae n 1 3 @ #m %m 1 0 01930485 -ascaridia n 1 3 @ #m %m 1 0 01930995 -ascaridia_galli n 1 2 @ #m 1 0 01931140 -ascaris n 1 3 @ #m %m 1 0 01930672 -ascaris_lumbricoides n 1 2 @ #m 1 0 01930852 -ascendance n 1 3 @ ~ + 1 0 14441825 -ascendancy n 1 3 @ ~ + 1 1 14441825 -ascendant n 2 3 @ ~ + 2 0 14442361 09792555 -ascendence n 1 3 @ ~ + 1 0 14441825 -ascendency n 1 3 @ ~ + 1 0 14441825 -ascendent n 2 2 @ ~ 2 0 14442361 09792555 -ascender n 3 4 @ ~ + ; 3 0 09813522 06830561 06800532 -ascending n 1 2 @ ~ 1 0 00324384 -ascending_aorta n 1 1 @ 1 0 05336246 -ascending_artery n 1 2 @ #p 1 0 05337855 -ascending_colon n 1 3 @ #p %p 1 0 05537060 -ascending_node n 1 2 ! @ 1 0 08498279 -ascension n 5 4 @ ~ + ; 5 0 15193052 07445480 07311822 07311661 00324384 -ascension_day n 1 2 @ ; 1 0 15193052 -ascension_of_christ n 1 2 @ ; 1 0 07311822 -ascension_of_the_lord n 1 2 @ ; 1 0 15193052 -ascent n 3 4 ! @ ~ + 3 0 09206985 07445480 00324384 -ascesis n 1 1 @ 1 0 01069012 -ascetic n 1 3 @ ~ + 1 0 09758173 -asceticism n 3 2 @ ~ 3 0 05959082 04881998 01069012 -asch n 1 1 @ 1 0 10825554 -aschelminthes n 1 3 @ #m %m 1 0 01929396 -ascidiaceae n 1 3 @ #m %m 1 0 01468532 -ascidian n 1 3 @ ~ #m 1 0 01468712 -ascidian_tadpole n 1 2 @ #m 1 0 01470895 -ascii n 1 3 @ %p ; 1 0 06356755 -ascii_character n 1 3 @ ~ #p 1 0 06820425 -ascii_character_set n 1 2 @ ; 1 0 06357078 -ascii_control_character n 1 2 @ ~ 1 0 06820601 -ascii_text_file n 1 2 @ ~ 1 0 06511242 -ascites n 1 2 @ + 1 0 14110025 -asclepia_meadii n 1 1 @ 1 0 13234857 -asclepiad n 1 2 @ #m 1 0 13233435 -asclepiadaceae n 1 4 @ #m %m + 1 0 13233012 -asclepias n 1 3 @ #m %m 1 0 13233548 -asclepias_albicans n 1 1 @ 1 0 13234114 -asclepias_curassavica n 1 1 @ 1 0 13234293 -asclepias_exaltata n 1 1 @ 1 0 13234519 -asclepias_incarnata n 1 1 @ 1 0 13234678 -asclepias_meadii n 1 1 @ 1 0 13234857 -asclepias_purpurascens n 1 1 @ 1 0 13235011 -asclepias_speciosa n 1 1 @ 1 0 13235159 -asclepias_subverticillata n 1 1 @ 1 0 13235319 -asclepias_tuberosa n 1 1 @ 1 0 13235503 -asclepias_verticillata n 1 1 @ 1 0 13235766 -asclepius n 1 1 @ 1 0 09559201 -ascocarp n 1 4 @ ~ #p + 1 0 11532816 -ascolichen n 1 1 @ 1 0 12987423 -ascoma n 1 1 @ 1 0 11533472 -ascomycete n 1 5 @ ~ #m %p + 1 0 13024012 -ascomycetes n 1 3 @ #m %m 1 0 13023783 -ascomycetous_fungus n 1 4 @ ~ #m %p 1 0 13024012 -ascomycota n 1 3 @ #m %m 1 0 13023292 -ascomycotina n 1 3 @ #m %m 1 0 13023292 -ascophyllum n 1 2 @ #m 1 0 01405442 -ascophyllum_nodosum n 1 1 @ 1 0 01405616 -ascorbic_acid n 1 1 @ 1 0 15093298 -ascospore n 1 2 @ + 1 0 13092240 -ascot n 1 1 @ 1 0 02747063 -ascription n 2 4 @ ~ = + 2 0 05734909 05734559 -ascus n 1 2 @ #p 1 0 13092078 -asdic n 1 3 @ #p %p 1 0 04259771 -asean n 1 2 @ %m 1 0 08487504 -asepsis n 2 2 @ + 2 0 14495230 13432903 -asexual_reproduction n 1 2 @ ~ 1 0 13434120 -asexuality n 1 2 @ + 1 0 05008085 -asgard n 1 2 @ ; 1 0 05626767 -ash n 3 7 @ ~ #m #s %s %p + 3 2 14769160 12303462 12303921 -ash-bin n 1 1 @ 1 0 02747177 -ash-key n 1 2 @ #p 1 0 12306419 -ash-leaved_maple n 1 2 @ ~ 1 0 12755225 -ash-pan n 1 1 @ 1 0 02747672 -ash_bin n 1 1 @ 1 0 02747177 -ash_cake n 1 1 @ 1 0 07688265 -ash_can n 1 1 @ 1 0 02747379 -ash_gray n 1 1 @ 1 0 04962062 -ash_grey n 1 1 @ 1 0 04962062 -ash_tree n 1 5 @ ~ #m %s %p 1 0 12303462 -ash_wednesday n 1 2 @ #p 1 0 15195622 -ashbin n 1 1 @ 1 0 02747177 -ashcake n 1 1 @ 1 0 07688265 -ashcan n 1 1 @ 1 0 02747177 -ashcan_school n 2 1 @ 2 0 08275497 02747379 -ashe n 1 1 @ 1 0 10825718 -asheville n 1 2 @ #p 1 0 09128040 -ashir n 1 2 @ ; 1 0 09516146 -ashkenazi n 1 1 @ 1 0 09607903 -ashkhabad n 1 2 @ #p 1 0 09021812 -ashlar n 1 1 @ 1 0 02747541 -ashley_montagu n 1 1 @ 1 0 11186356 -ashram n 2 2 @ ; 2 0 08643386 08643267 -ashton n 1 1 @ 1 0 10825923 -ashtoreth n 1 2 @ ; 1 0 09516323 -ashtray n 1 1 @ 1 0 02747802 -ashur n 2 3 @ #p ; 2 0 09516146 08919241 -ashurbanipal n 1 1 @ 1 0 10826033 -asia n 2 6 @ ~ #p %p + - 2 1 09207288 08172877 -asia_minor n 1 4 @ #p %p - 1 1 08701942 -asian n 1 3 @ ~ + 1 0 09641757 -asian_american n 1 1 @ 1 0 09642821 -asian_black_grouse n 1 1 @ 1 0 01795900 -asian_coral_snake n 1 2 @ #m 1 0 01746727 -asian_country n 1 3 @ ~ #p 1 0 08700255 -asian_crocodile n 1 1 @ 1 0 01697611 -asian_horseshoe_crab n 1 2 @ #m 1 0 01788291 -asian_influenza n 1 1 @ 1 0 14122670 -asian_longhorned_beetle n 1 1 @ 1 0 02183096 -asian_nation n 1 3 @ ~ #p 1 0 08700255 -asian_russia n 1 2 @ #p 1 0 09007613 -asian_seabass n 1 2 @ #m 1 0 02560546 -asian_shamanism n 1 1 @ 1 0 06244852 -asian_tiger_mosquito n 1 2 @ #m 1 0 02201000 -asian_wild_ox n 1 3 @ ~ #m 1 0 02409870 -asiatic n 1 3 @ ~ + 1 0 09641757 -asiatic_beetle n 1 2 @ #m 1 0 02173784 -asiatic_black_bear n 1 2 @ #m 1 0 02133704 -asiatic_buffalo n 1 3 @ ~ #m 1 0 02408429 -asiatic_cholera n 1 1 @ 1 0 14129579 -asiatic_cockroach n 1 2 @ #m 1 0 02233943 -asiatic_flu n 1 1 @ 1 0 14122670 -asiatic_flying_squirrel n 1 3 @ ~ #m 1 0 02362194 -asiatic_shrew_mole n 1 2 @ #m 1 0 01891013 -asiatic_sweetleaf n 1 1 @ 1 0 12776774 -aside n 2 1 @ 2 0 07011075 06600684 -asilidae n 1 3 @ #m %m 1 0 02195996 -asimina n 1 3 @ #m %m 1 0 11695485 -asimina_triloba n 1 3 @ #m %p 1 0 11695599 -asimov n 1 1 @ 1 0 10826204 -asin n 1 2 @ #p 1 0 15220625 -asininity n 1 2 @ + 1 0 04891944 -asio n 1 3 @ #m %m 1 0 01624707 -asio_otus n 1 2 @ #m 1 0 01624833 -ask_jeeves n 1 2 @ ; 1 0 06579294 -asker n 1 3 @ ~ + 1 0 10207831 -asking n 1 2 @ ~ 1 0 07185325 -asking_price n 1 2 @ ~ 1 0 13304009 -asklepios n 1 1 @ 1 0 09559201 -asl n 1 2 @ %p 1 0 06876007 -asmara n 1 2 @ #p 1 0 08777815 -asmera n 1 2 @ #p 1 0 08777815 -asp n 2 2 @ #m 2 0 01752736 01748389 -asp_viper n 1 2 @ #m 1 0 01752736 -aspadana n 1 2 @ #p 1 0 08912012 -aspalathus n 1 3 @ #m %m 1 0 12507670 -aspalathus_cedcarbergensis n 1 2 @ #m 1 0 12507823 -aspalathus_linearis n 1 2 @ #m 1 0 12507823 -asparagaceae n 1 2 @ #m 1 0 12440623 -asparaginase n 1 1 @ 1 0 02747915 -asparagine n 1 1 @ 1 0 14602851 -asparagus n 2 4 @ #m #p %p 2 0 12441183 07719213 -asparagus_asparagoides n 1 2 @ #m 1 0 12441552 -asparagus_bean n 1 2 @ #m 1 0 12579038 -asparagus_bed n 1 1 @ 1 0 02748088 -asparagus_fern n 1 2 @ #m 1 0 12441390 -asparagus_officinales n 1 3 @ #m %p 1 0 12441183 -asparagus_pea n 1 1 @ 1 0 12545865 -asparagus_plumosus n 1 2 @ #m 1 0 12441390 -asparagus_setaceous n 1 2 @ #m 1 0 12441390 -aspartame n 1 1 @ 1 0 07858841 -aspartic_acid n 1 1 @ 1 0 14602987 -aspect n 5 3 @ ~ + 5 3 05850624 04733118 05933246 13804669 04679738 -aspect_ratio n 1 1 @ 1 0 13820544 -aspen n 1 2 @ ~ 1 0 12733647 -aspen_poplar n 1 1 @ 1 0 12732009 -asper n 1 2 @ #p 1 0 13687420 -asperger's_syndrome n 1 1 @ 1 0 14084291 -aspergill n 1 2 @ %p 1 0 02748183 -aspergillaceae n 1 3 @ #m %m 1 0 13027190 -aspergillales n 1 3 @ #m %m 1 0 13026763 -aspergillosis n 3 1 @ 3 0 14260349 14182871 14071559 -aspergillus n 1 2 @ #m 1 0 13027375 -aspergillus_fumigatus n 1 1 @ 1 0 13027557 -asperity n 2 2 @ ~ 2 0 04710127 04643099 -aspersion n 3 3 @ ~ + 3 0 06718543 01220336 01038261 -aspersorium n 2 2 @ %p 2 0 02748359 02748183 -asperula n 1 3 @ #m %m 1 0 12661420 -asperula_odorata n 1 3 @ #s %p 1 0 12665271 -asperula_tinctoria n 1 1 @ 1 0 12661661 -asphalt n 2 2 @ + 2 1 14769465 14667455 -asphodel n 1 3 @ ~ #m 1 0 12441958 -asphodelaceae n 1 2 @ #m 1 0 12441770 -asphodeline n 1 3 @ #m %m 1 0 12442220 -asphodeline_lutea n 1 2 @ #m 1 0 12442697 -asphodelus n 1 2 @ #m 1 0 12442865 -asphyxia n 1 3 @ %p + 1 0 14042423 -asphyxiation n 2 3 @ ~ + 2 0 14043882 00225593 -asphyxiator n 1 1 @ 1 0 03345837 -aspic n 1 1 @ 1 0 07808675 -aspidelaps n 1 3 @ #m %m 1 0 01746818 -aspidelaps_lubricus n 1 2 @ #m 1 0 01746952 -aspidiotus n 1 3 @ #m %m 1 0 02249673 -aspidiotus_perniciosus n 1 2 @ #m 1 0 02249809 -aspidistra n 1 2 @ #m 1 0 12443323 -aspidistra_elatio n 1 2 @ #m 1 0 12443323 -aspidophoroides n 1 3 @ #m %m 1 0 02648174 -aspidophoroides_monopterygius n 1 2 @ #m 1 0 02648313 -aspinwall n 1 2 @ #p 1 0 08739669 -aspirant n 1 2 @ + 1 1 09801533 -aspirate n 1 2 @ + 1 0 07116758 -aspiration n 4 4 @ ~ #p + 4 1 04836491 07484547 07116869 00836788 -aspiration_pneumonia n 1 1 @ 1 0 14260550 -aspirator n 1 2 @ + 1 0 02748491 -aspirer n 1 2 @ + 1 0 09801533 -aspirin n 1 3 @ ~ %s 1 1 02748618 -aspirin_powder n 1 1 @ 1 0 02749169 -aspis n 1 3 @ #m %m 1 0 01753354 -aspleniaceae n 1 3 @ #m %m 1 0 13179972 -asplenium n 1 3 @ #m %m 1 0 13180304 -asplenium_adiantum-nigrum n 1 1 @ 1 0 13180875 -asplenium_billotii n 1 1 @ 1 0 13182937 -asplenium_bradleyi n 1 1 @ 1 0 13182662 -asplenium_ceterach n 1 2 @ #m 1 0 13183489 -asplenium_montanum n 1 1 @ 1 0 13182338 -asplenium_nidus n 1 2 @ #m 1 0 13181055 -asplenium_nigripes n 1 2 @ #m 1 0 13184001 -asplenium_pinnatifidum n 1 1 @ 1 0 13182799 -asplenium_platyneuron n 1 1 @ 1 0 13181244 -asplenium_rhizophyllum n 1 1 @ 1 0 13181811 -asplenium_ruta-muraria n 1 1 @ 1 0 13182462 -asplenium_scolopendrium n 1 2 @ #m 1 0 13183056 -asplenium_trichomanes n 1 1 @ 1 0 13181988 -asplenium_viride n 1 1 @ 1 0 13182164 -ass n 4 5 @ ~ #m #p ; 4 2 05559256 09813632 02389346 00846021 -ass-kisser n 1 2 @ ~ 1 0 10684827 -assagai n 1 1 @ 1 0 02749670 -assailability n 1 2 @ + 1 0 05043349 -assailant n 1 3 @ ~ + 1 0 09821253 -assam n 1 2 @ #p 1 0 08902097 -assam_fever n 1 1 @ 1 0 14181049 -assam_rubber n 1 1 @ 1 0 12402840 -assamese n 2 2 @ + 2 0 09673779 06970784 -assassin n 2 4 @ ~ + ; 2 1 09813696 09814084 -assassin_bug n 1 3 @ ~ #m 1 0 02244173 -assassination n 2 2 @ + 2 0 06719974 00221056 -assassinator n 1 4 @ ~ + ; 1 0 09813696 -assault n 4 5 @ ~ #p + ; 4 2 00974444 00767826 02384225 00773402 -assault_and_battery n 1 2 @ ~ 1 0 00768203 -assault_gun n 2 2 @ ; 2 0 02749479 02749292 -assault_rifle n 1 2 @ ; 1 0 02749479 -assaulter n 1 3 @ ~ + 1 0 09821253 -assay n 4 3 @ ~ + 4 1 05738625 14584390 07219162 00791527 -assay-mark n 1 1 @ 1 0 06855035 -assayer n 1 2 @ + 1 0 09814252 -assegai n 1 1 @ 1 0 02749670 -assemblage n 4 3 @ ~ + 4 3 07975026 03533486 01229938 07951464 -assembler n 1 1 @ 1 0 06573337 -assemblies_of_god n 1 1 @ 1 0 08150770 -assembling n 1 2 @ ~ 1 0 01014066 -assembly n 6 3 ! @ ~ 6 3 02749790 00912001 03386420 08163792 02749953 01229938 -assembly_hall n 1 1 @ 1 0 02750070 -assembly_language n 1 1 @ 1 0 06899310 -assembly_line n 1 3 @ #p %p 1 1 04008385 -assembly_plant n 1 2 @ ~ 1 0 02750169 -assembly_program n 1 1 @ 1 0 06573337 -assemblyman n 1 1 @ 1 0 09814381 -assemblywoman n 1 1 @ 1 0 09814488 -assent n 1 3 @ ~ + 1 1 07175575 -assenter n 1 2 @ + 1 0 09814567 -assenting n 1 1 @ 1 0 07177192 -asserter n 1 3 @ ~ + 1 0 09814660 -assertion n 2 3 @ ~ + 2 2 06729499 07203126 -assertiveness n 1 3 @ ~ + 1 1 05167237 -assertiveness_training n 1 1 @ 1 0 00701325 -assessee n 1 2 @ + 1 0 09815076 -assessment n 4 3 @ ~ + 4 1 05733583 13403146 05146055 00874067 -assessor n 1 3 @ ~ + 1 1 10692883 -asset n 1 3 ! @ ~ 1 1 05154517 -assets n 1 3 @ ~ ; 1 0 13329641 -asseveration n 1 3 @ ~ + 1 0 06729499 -asseverator n 1 3 @ ~ + 1 0 09814660 -asshole n 2 2 @ ; 2 0 09815188 05538215 -assibilation n 2 2 @ + 2 0 13434406 07129202 -assiduity n 1 3 @ ~ + 1 1 04865502 -assiduousness n 1 3 @ ~ + 1 0 04865502 -assignation n 2 3 @ ~ + 2 0 01231435 01083645 -assignee n 1 3 @ + ; 1 1 09815455 -assigning n 1 2 @ ~ 1 1 00164345 -assignment n 6 4 @ ~ + ; 6 3 00730247 06545528 00164345 13254237 00796586 00163779 -assignor n 1 2 @ ; 1 0 09815677 -assimilation n 6 3 @ ~ + 6 0 13930928 13434878 13434688 13434537 05757049 05755714 -assimilator n 1 3 @ ~ + 1 0 10251779 -assist n 2 4 @ ~ + ; 2 2 01207609 00558008 -assistance n 2 3 @ ~ + 2 2 01207609 05154908 -assistant n 1 3 @ ~ + 1 1 09815790 -assistant_foreman n 1 1 @ 1 0 10661732 -assistant_professor n 1 1 @ 1 0 09816654 -assisted_suicide n 1 2 @ ~ 1 0 00222939 -assize n 2 2 @ ; 2 0 06664353 06553472 -assizes n 1 1 @ 1 0 08330843 -associability n 1 2 @ + 1 0 04688058 -associableness n 1 2 @ + 1 0 04688058 -associate n 5 4 @ ~ #m + 5 1 09816771 09945905 09817174 07284848 06697703 -associate_degree n 1 2 @ ~ 1 0 06697703 -associate_in_applied_science n 1 1 @ 1 0 06698031 -associate_in_arts n 1 1 @ 1 0 06697935 -associate_in_nursing n 1 1 @ 1 0 06698150 -associate_professor n 1 1 @ 1 1 09817386 -associated_state n 1 1 @ 1 0 08627316 -associateship n 1 1 @ 1 0 00589103 -association n 8 6 ! @ ~ %m + ; 8 5 08049401 01081628 14421139 05763916 13930385 13782769 13435152 07990377 -association_area n 1 1 @ 1 0 05487224 -association_cortex n 1 1 @ 1 0 05487224 -association_football n 1 3 @ %p - 1 0 00478262 -association_for_the_advancement_of_retired_persons n 1 1 @ 1 0 08487149 -association_of_islamic_groups_and_communities n 1 2 @ ; 1 0 08028623 -association_of_orangemen n 1 3 @ %m ; 1 0 08036669 -association_of_southeast_asian_nations n 1 2 @ %m 1 0 08487504 -association_theory n 1 2 @ ; 1 0 06137918 -associationism n 1 2 @ ; 1 0 06137918 -associative_aphasia n 1 1 @ 1 0 14098078 -assonance n 1 2 @ + 1 0 07097346 -assortative_mating n 1 2 ! @ 1 0 00847770 -assortment n 2 3 @ ~ + 2 1 08398773 01012712 -assouan n 1 2 @ #p 1 0 08898457 -assuagement n 1 2 @ + 1 0 07493280 -assuan n 1 2 @ #p 1 0 08898457 -assumed_name n 2 2 @ ; 2 0 06338158 06334512 -assumption n 7 5 @ ~ #p + ; 7 3 06753800 05892096 00082870 15193908 07357866 04838727 00083260 -assumption_of_mary n 1 2 @ #p 1 0 15193908 -assur n 1 2 @ #p 1 0 08919241 -assurance n 4 5 @ ~ = + ; 4 3 05697363 07227772 07227406 13345286 -assurbanipal n 1 1 @ 1 0 10826033 -assuredness n 1 2 @ + 1 0 04904162 -assyria n 1 4 @ #p %p - 1 0 08918944 -assyrian n 3 2 @ ; 3 2 09640490 06988684 06987659 -assyrian_akkadian n 1 2 @ ; 1 0 06987659 -assyrian_neo-aramaic n 1 2 @ ; 1 0 06988684 -assyriology n 1 1 @ 1 1 06144762 -astacidae n 1 3 @ #m %m 1 0 01984958 -astacura n 1 3 @ #m %m 1 0 01984958 -astacus n 1 3 @ #m %m 1 0 01985331 -astaire n 1 1 @ 1 0 10826352 -astana n 1 1 @ 1 0 09020119 -astarte n 1 2 @ ; 1 0 09516323 -astasia n 1 1 @ 1 0 14550366 -astatic_coils n 1 2 @ #p 1 0 02750320 -astatic_galvanometer n 1 2 @ %p 1 0 02750652 -astatine n 1 1 @ 1 0 14629561 -aster n 2 3 @ ~ #m 2 0 11931918 05446006 -aster_acuminatus n 1 1 @ 1 0 11932927 -aster_arenosus n 1 1 @ 1 0 11933099 -aster_cordifolius n 1 1 @ 1 0 11933257 -aster_divaricatus n 1 1 @ 1 0 11933387 -aster_dumosus n 1 1 @ 1 0 11933546 -aster_ericoides n 1 1 @ 1 0 11933728 -aster_falcatus n 1 1 @ 1 0 11933903 -aster_family n 1 3 @ #m %m 1 0 11911591 -aster_linarifolius n 1 1 @ 1 0 11934041 -aster_linosyris n 1 1 @ 1 0 11934239 -aster_macrophyllus n 1 1 @ 1 0 11934463 -aster_novae-angliae n 1 1 @ 1 0 11934616 -aster_novi-belgii n 1 1 @ 1 0 11934807 -aster_ptarmicoides n 1 1 @ 1 0 11935027 -aster_shortii n 1 1 @ 1 0 11935187 -aster_tripolium n 1 1 @ 1 0 11935330 -aster_turbinellis n 1 1 @ 1 0 11935469 -asteraceae n 1 3 @ #m %m 1 0 11911591 -astereognosis n 1 1 @ 1 0 14056143 -asterid_dicot_family n 1 3 @ ~ #m 1 0 11566230 -asterid_dicot_genus n 1 3 @ ~ #m 1 0 11579418 -asteridae n 1 3 @ #m %m 1 0 11910835 -asterion n 1 2 @ #p 1 0 05231397 -asterisk n 1 2 @ + 1 1 06828389 -asterism n 2 5 @ ~ #m + ; 2 0 13881810 09208496 -asteroid n 1 3 @ ~ + 1 0 09208702 -asteroid_belt n 1 2 @ #p 1 0 08498888 -asteroidea n 1 3 @ #m %m 1 0 02317212 -asterope n 2 3 @ #m ; 2 0 09549983 09445780 -asthenia n 1 2 @ + 1 0 14547976 -asthenic_type n 1 1 @ 1 0 04999111 -asthenopia n 1 1 @ 1 0 14016863 -asthenosphere n 1 2 @ #p 1 0 09209025 -astheny n 1 2 @ + 1 0 14547976 -asthma n 1 4 @ ~ %p + 1 0 14145911 -asthma_attack n 1 3 @ ~ %p 1 0 14145911 -asthmatic n 1 1 @ 1 0 09817536 -astigmatism n 2 5 ! @ ~ + ; 2 0 14553590 13938899 -astigmia n 2 4 @ ~ + ; 2 0 14553590 13938899 -astilbe n 1 3 @ ~ #m 1 0 12794985 -astilbe_biternata n 1 1 @ 1 0 12795209 -astilbe_chinensis_pumila n 1 1 @ 1 0 12795352 -astilbe_japonica n 1 1 @ 1 0 12795555 -astonishment n 1 3 @ ~ + 1 1 07509572 -astor n 2 1 @ 2 0 10826717 10826557 -astragal n 2 4 @ ~ #p + 2 0 05271383 02815237 -astragalus n 2 5 @ #m #p %m + 2 0 12508077 05271383 -astragalus_alpinus n 1 1 @ 1 0 12508618 -astragalus_danicus n 1 1 @ 1 0 12508762 -astragalus_glycyphyllos n 1 1 @ 1 0 12508497 -astrakhan n 2 2 @ #p 2 0 14764440 09004358 -astrantia n 1 3 @ ~ #m 1 0 12934036 -astrantia_major n 1 1 @ 1 0 12934174 -astraphobia n 1 1 @ 1 0 14383067 -astreus n 1 2 @ #m 1 0 13045834 -astreus_hygrometricus n 1 1 @ 1 0 13046130 -astreus_pteridis n 1 1 @ 1 0 13045975 -astringence n 1 2 @ + 1 0 05717549 -astringency n 2 3 @ = + 2 0 05717549 05202034 -astringent n 1 3 @ ~ + 1 0 02750835 -astringent_drug n 1 2 @ ~ 1 0 02750835 -astrobiology n 1 1 @ 1 0 06071722 -astrocyte n 1 4 @ ~ #p + 1 0 05467758 -astrodome n 1 1 @ 1 0 02751067 -astrodynamics n 1 1 @ 1 0 06096451 -astrogator n 1 2 @ + 1 0 09817694 -astroglia n 1 2 @ %p 1 0 05467619 -astrolabe n 1 1 @ 1 0 02751215 -astrolatry n 1 1 @ 1 0 01045807 -astrologer n 1 3 @ ~ + 1 0 09817816 -astrologist n 1 3 @ ~ + 1 0 09817816 -astrology n 1 4 @ ~ + - 1 0 05778131 -astroloma n 1 3 @ #m %m 1 0 12254014 -astroloma_humifusum n 1 2 @ #m 1 0 12254168 -astrometry n 1 1 @ 1 0 06096600 -astronaut n 1 3 @ ~ + 1 0 09818022 -astronautics n 1 3 @ ~ - 1 0 06096913 -astronavigation n 1 1 @ 1 0 00816530 -astronium n 1 3 @ #m %m 1 0 12759496 -astronium_fraxinifolium n 1 2 @ #m 1 0 12759668 -astronomer n 1 3 @ ~ ; 1 0 09818343 -astronomical_telescope n 1 2 @ ~ 1 0 02751295 -astronomical_unit n 1 1 @ 1 1 13657244 -astronomical_year n 1 1 @ 1 0 15202806 -astronomy n 1 4 @ ~ + - 1 1 06095022 -astronomy_satellite n 1 1 @ 1 0 02751490 -astronomy_unit n 1 2 @ ~ 1 0 13649054 -astrophysicist n 1 3 @ ~ + 1 0 09819291 -astrophysics n 1 3 @ ~ + 1 1 06097775 -astrophyton n 1 3 @ #m %m 1 0 02318538 -astrophyton_muricatum n 1 2 @ #m 1 0 02318687 -astropogon n 1 2 @ #m 1 0 02572628 -astropogon_stellatus n 1 1 @ 1 0 02572763 -astuteness n 2 4 @ ~ + ; 2 0 05621439 05613962 -asuncion n 1 2 @ #p 1 0 08978667 -asur n 1 2 @ #p 1 0 08919241 -asura n 1 1 @ 1 0 09524440 -asurbanipal n 1 1 @ 1 0 10826033 -asvina n 1 2 @ #p 1 0 15220625 -asvins n 1 2 @ ; 1 0 09524671 -aswan n 1 2 @ #p 1 0 08898457 -aswan_high_dam n 1 2 @ #p 1 0 02751623 -asylum n 2 2 @ ~ 2 0 04071102 03746574 -asymmetry n 1 5 ! @ ~ + ; 1 1 05065717 -asymptote n 1 2 @ + 1 0 13870935 -asynchronism n 1 2 ! @ 1 0 13845838 -asynchronous_operation n 1 2 ! @ 1 0 13435377 -asynchronous_transfer_mode n 1 1 @ 1 0 06279071 -asynchrony n 1 1 @ 1 1 13845838 -asynclitism n 1 2 @ #p 1 0 14049098 -asyndeton n 1 2 @ + 1 0 07099135 -asynergia n 1 2 @ + 1 0 14024391 -asynergy n 1 2 @ + 1 0 14024391 -asystole n 1 1 @ 1 0 14024581 -at n 2 2 @ #p 2 0 14629561 13681048 -at-bat n 1 2 @ ; 1 1 00458456 -at_home n 1 1 @ 1 1 08254540 -atabrine n 1 2 @ ; 1 0 04034641 -atacama_desert n 1 2 @ #p 1 0 09168193 -atacama_trench n 1 1 @ 1 0 09209132 -atactic_abasia n 1 1 @ 1 0 14549382 -atakapa n 2 1 @ 2 0 09647680 06907567 -atakapan n 1 1 @ 1 0 06907567 -atar n 1 2 @ ~ 1 0 14892989 -ataractic n 1 3 @ ~ + 1 0 04470232 -ataractic_agent n 1 2 @ ~ 1 0 04470232 -ataractic_drug n 1 2 @ ~ 1 0 04470232 -atarax n 1 2 @ ; 1 0 03554131 -ataraxia n 1 2 @ + 1 0 04904560 -ataraxis n 1 1 @ 1 0 07515790 -ataturk n 1 1 @ 1 0 10826952 -atavism n 1 2 @ + 1 0 07343574 -atavist n 1 2 @ + 1 0 09819860 -ataxia n 1 4 @ ~ #p + 1 0 14091254 -ataxic_abasia n 1 1 @ 1 0 14549382 -ataxic_aphasia n 1 1 @ 1 0 14098458 -ataxy n 1 3 @ ~ #p 1 0 14091254 -atayalic n 1 1 @ 1 0 06940854 -ate n 1 1 @ 1 0 09557289 -atelectasis n 1 1 @ 1 0 14502896 -ateleiosis n 1 2 @ + 1 0 14508799 -ateles n 1 3 @ #m %m 1 0 02493673 -ateles_geoffroyi n 1 2 @ #m 1 0 02493793 -atelier n 1 2 @ ~ 1 0 02746841 -ateliosis n 1 1 @ 1 0 14508799 -aten n 1 1 @ 1 0 09511875 -atenolol n 1 2 @ #s 1 0 02751782 -ateria_gastrica_dextra n 1 1 @ 1 0 05345783 -atf n 1 2 @ #p 1 0 08140219 -athabascan n 2 3 @ ~ ; 2 1 06907728 09647834 -athabaskan n 2 3 @ ~ ; 2 0 09647834 06907728 -athanasian_creed n 1 1 @ 1 0 05958114 -athanasianism n 1 2 ! @ 1 0 06187960 -athanasius n 1 2 @ ; 1 0 10827155 -athanasius_the_great n 1 2 @ ; 1 0 10827155 -athanor n 1 2 @ ; 1 0 02752039 -athapascan n 2 3 @ ~ ; 2 0 09647834 06907728 -athapaskan n 2 3 @ ~ ; 2 0 09647834 06907728 -athapaskan_language n 1 3 @ ~ ; 1 0 06907728 -athar n 1 2 @ ~ 1 0 14892989 -atharva-veda n 1 1 @ 1 0 06465255 -atheism n 2 3 ! @ + 2 0 06223468 05980256 -atheist n 1 2 @ + 1 1 09820044 -athelstan n 1 1 @ 1 0 10827513 -athena n 1 2 @ ; 1 0 09557387 -athenaeum n 2 1 @ 2 0 08228405 02752199 -athene n 2 4 @ #m %m ; 2 0 09557387 01621994 -athene_noctua n 1 2 @ #m 1 0 01622120 -atheneum n 2 1 @ 2 0 08228405 02752199 -athenian n 1 4 @ ~ #m + 1 0 09711132 -athens n 3 5 @ #p %m %p + 3 1 08785343 09130599 09076982 -atherinidae n 1 3 @ #m %m 1 0 02602215 -atherinopsis n 1 3 @ #m %m 1 0 02602620 -atherinopsis_californiensis n 1 2 @ #m 1 0 02602760 -atherodyde n 1 1 @ 1 0 04051269 -atherogenesis n 1 1 @ 1 0 14108576 -atheroma n 1 2 @ + 1 0 05269495 -atherosclerosis n 1 2 @ + 1 0 14108713 -atherurus n 1 3 @ #m %m 1 0 02347140 -athetosis n 1 1 @ 1 0 14108938 -athinai n 1 4 @ #p %m %p 1 0 08785343 -athiorhodaceae n 1 2 @ #m 1 0 01361840 -athlete n 1 3 @ ~ + 1 1 09820263 -athlete's_foot n 1 1 @ 1 0 14126078 -athlete's_heart n 1 1 @ 1 0 05389182 -athletic_competition n 1 2 @ ~ 1 0 07456638 -athletic_contest n 1 2 @ ~ 1 0 07456638 -athletic_facility n 1 3 @ ~ %p 1 0 02752311 -athletic_field n 1 4 @ ~ #p %p 1 0 08570758 -athletic_game n 1 3 @ ~ %p 1 0 00463246 -athletic_sock n 1 1 @ 1 0 02752496 -athletic_supporter n 1 1 @ 1 0 02752615 -athletic_training n 1 2 @ ~ 1 0 00893498 -athletic_type n 1 1 @ 1 0 04999306 -athletic_wear n 1 2 @ ~ 1 0 04285803 -athleticism n 1 1 @ 1 1 05036237 -athletics n 3 4 @ ~ + - 3 1 00523513 07456638 00886582 -athodyd n 1 1 @ 1 0 04051269 -athol_fugard n 1 1 @ 1 0 10984979 -athos n 1 2 @ #p 1 0 08785132 -athrotaxis n 1 3 @ #m %m 1 0 11632794 -athrotaxis_selaginoides n 1 2 @ #m 1 0 11632929 -athyriaceae n 1 3 @ #m %m 1 0 13192025 -athyrium n 1 3 @ #m %m 1 0 13194328 -athyrium_distentifolium n 1 1 @ 1 0 13194758 -athyrium_filix-femina n 1 3 @ ~ #m 1 0 13194572 -athyrium_pycnocarpon n 1 2 @ #m 1 0 13194918 -athyrium_thelypteroides n 1 2 @ #m 1 0 13196738 -ativan n 1 2 @ ; 1 0 03690005 -atlanta n 2 5 @ #p %p ; - 2 2 09076675 01269633 -atlantic n 1 4 @ %p + - 1 1 09209263 -atlantic_bonito n 1 2 @ #m 1 0 02628062 -atlantic_bottlenose_dolphin n 1 1 @ 1 0 02069974 -atlantic_city n 1 2 @ #p 1 0 09112857 -atlantic_coast n 1 2 @ #p 1 0 09210236 -atlantic_cod n 1 2 @ %p 1 0 02522722 -atlantic_croaker n 1 2 @ #m 1 0 02596720 -atlantic_halibut n 1 1 @ 1 0 02660519 -atlantic_herring n 1 2 @ #m 1 0 02532272 -atlantic_manta n 1 2 @ #m 1 0 01500476 -atlantic_moonfish n 1 2 @ ~ 1 0 02578233 -atlantic_ocean n 1 3 @ %p - 1 1 09209263 -atlantic_puffin n 1 2 @ #m 1 0 02047975 -atlantic_ridley n 1 1 @ 1 0 01664492 -atlantic_sailfish n 1 2 @ #m 1 0 02630615 -atlantic_salmon n 2 5 @ ~ #m #p %p 2 0 07796005 02535537 -atlantic_sea_bream n 1 2 @ #m 1 0 02591911 -atlantic_spiny_dogfish n 1 2 @ #m 1 0 01493829 -atlantic_standard_time n 1 1 @ 1 0 15131734 -atlantic_time n 1 1 @ 1 0 15131734 -atlantic_tripletail n 1 1 @ 1 0 02636405 -atlantic_walrus n 1 1 @ 1 0 02081798 -atlantic_white_cedar n 1 2 @ #m 1 0 11635152 -atlantides n 1 2 @ ; 1 0 09549216 -atlantis n 1 1 @ 1 0 05626929 -atlas n 4 4 @ ~ %p ; 4 0 09575548 06427086 05588746 02752810 -atlas_cedar n 1 1 @ 1 0 11624192 -atlas_moth n 1 2 @ #m 1 0 02305085 -atlas_mountains n 1 2 @ #p 1 0 09210346 -atlas_vertebra n 1 1 @ 1 0 05588746 -atm n 3 2 @ ~ 3 1 13711060 06279071 02977058 -atmometer n 1 1 @ 1 0 02752917 -atmosphere n 6 5 @ ~ #p %p + 6 5 14524849 13711060 08499057 14520278 09210604 04727214 -atmospheric_condition n 1 3 @ ~ ; 1 0 11524662 -atmospheric_electricity n 1 2 @ ~ 1 0 11476231 -atmospheric_phenomenon n 1 2 @ ~ 1 0 11425580 -atmospheric_pressure n 1 2 @ ~ 1 0 11429458 -atmospheric_state n 1 2 @ ~ 1 0 14520278 -atmospheric_static n 1 2 @ ~ 1 0 07431683 -atmospherics n 1 2 @ ~ 1 0 07431683 -atole n 1 1 @ 1 0 07703515 -atoll n 1 2 @ ~ 1 0 09210862 -atom n 2 6 @ ~ #p %p + ; 2 1 14619225 14585519 -atom_bomb n 1 3 @ ~ %p 1 1 02753044 -atom_smasher n 1 3 @ ~ %p 1 0 02670382 -atomic_bomb n 1 3 @ ~ %p 1 1 02753044 -atomic_clock n 1 2 @ ~ 1 0 02753394 -atomic_cocktail n 1 1 @ 1 0 02753569 -atomic_energy n 1 2 @ ~ 1 0 11425989 -atomic_energy_commission n 1 2 @ #p 1 1 08122358 -atomic_explosion n 1 2 @ %p 1 0 07408386 -atomic_mass n 1 3 @ ~ ; 1 0 05025935 -atomic_mass_unit n 1 1 @ 1 0 13715495 -atomic_number n 1 2 @ ~ 1 0 13598715 -atomic_number_1 n 1 3 @ ~ #s 1 0 14640434 -atomic_number_10 n 1 2 @ #s 1 0 14646152 -atomic_number_100 n 1 1 @ 1 0 14637339 -atomic_number_101 n 1 1 @ 1 0 14645092 -atomic_number_102 n 1 1 @ 1 0 14647722 -atomic_number_103 n 1 1 @ 1 0 14643323 -atomic_number_104 n 1 1 @ 1 0 14653416 -atomic_number_105 n 1 1 @ 1 0 14636523 -atomic_number_106 n 1 1 @ 1 0 14654058 -atomic_number_107 n 1 1 @ 1 0 14631757 -atomic_number_108 n 1 1 @ 1 0 14639795 -atomic_number_109 n 1 1 @ 1 0 14644963 -atomic_number_11 n 1 2 @ #s 1 0 14655371 -atomic_number_110 n 1 1 @ 1 0 14636392 -atomic_number_111 n 1 1 @ 1 0 14652824 -atomic_number_112 n 1 1 @ 1 0 14659794 -atomic_number_113 n 1 1 @ 1 0 14660314 -atomic_number_114 n 1 1 @ 1 0 14660183 -atomic_number_115 n 1 1 @ 1 0 14660052 -atomic_number_116 n 1 1 @ 1 0 14659922 -atomic_number_12 n 1 2 @ #s 1 0 14644249 -atomic_number_13 n 1 3 @ ~ #s 1 0 14627820 -atomic_number_14 n 1 2 @ #s 1 0 14654541 -atomic_number_15 n 1 2 @ #s 1 0 14649197 -atomic_number_16 n 1 3 @ ~ #s 1 0 14656219 -atomic_number_17 n 1 3 @ ~ #s 1 0 14634591 -atomic_number_18 n 1 2 @ #s 1 0 14628920 -atomic_number_19 n 1 2 @ #s 1 0 14650807 -atomic_number_2 n 1 1 @ 1 0 14639921 -atomic_number_20 n 1 3 @ ~ #s 1 0 14632648 -atomic_number_21 n 1 2 @ #s 1 0 14653831 -atomic_number_22 n 1 3 @ #s ; 1 0 14659211 -atomic_number_23 n 1 2 @ #s 1 0 14661020 -atomic_number_24 n 1 3 @ ~ #s 1 0 14635092 -atomic_number_25 n 1 2 @ #s 1 0 14644654 -atomic_number_26 n 1 3 @ ~ #s 1 0 14642417 -atomic_number_27 n 1 3 @ ~ #s 1 0 14635290 -atomic_number_28 n 1 2 @ #s 1 0 14646610 -atomic_number_29 n 1 3 @ ~ #s 1 0 14635722 -atomic_number_3 n 1 2 @ #s 1 0 14643793 -atomic_number_30 n 1 2 @ ~ 1 0 14661977 -atomic_number_31 n 1 2 @ #s 1 0 14638256 -atomic_number_32 n 1 2 @ #s 1 0 14638517 -atomic_number_33 n 1 2 @ #s 1 0 14629149 -atomic_number_34 n 1 2 @ #s 1 0 14654175 -atomic_number_35 n 1 2 @ #s 1 0 14632129 -atomic_number_36 n 1 2 @ #s 1 0 14642916 -atomic_number_37 n 1 2 @ #s 1 0 14652954 -atomic_number_38 n 1 3 @ ~ #s 1 0 14655731 -atomic_number_39 n 1 2 @ #s 1 0 14661740 -atomic_number_4 n 1 2 @ #s 1 0 14631295 -atomic_number_40 n 1 2 @ #s 1 0 14662281 -atomic_number_41 n 1 3 @ ~ #s 1 0 14646942 -atomic_number_42 n 1 2 @ #s 1 0 14645661 -atomic_number_43 n 1 1 @ 1 0 14657047 -atomic_number_44 n 1 1 @ 1 0 14653242 -atomic_number_45 n 1 1 @ 1 0 14652623 -atomic_number_46 n 1 1 @ 1 0 14648754 -atomic_number_47 n 1 3 @ ~ #s 1 0 14654954 -atomic_number_48 n 1 2 @ #s 1 0 14632444 -atomic_number_49 n 1 2 @ #s 1 0 14641223 -atomic_number_5 n 1 2 @ #s 1 0 14631871 -atomic_number_50 n 1 2 @ #s 1 0 14658855 -atomic_number_51 n 1 2 @ #s 1 0 14628668 -atomic_number_52 n 1 2 @ #s 1 0 14657228 -atomic_number_53 n 1 3 @ ~ #s 1 0 14641397 -atomic_number_54 n 1 2 @ #s 1 0 14661274 -atomic_number_55 n 1 3 @ ~ #s 1 0 14634232 -atomic_number_56 n 1 3 @ ~ #s 1 0 14629998 -atomic_number_57 n 1 1 @ 1 0 14643118 -atomic_number_58 n 1 2 @ #s 1 0 14633957 -atomic_number_59 n 1 2 @ #s 1 0 14651212 -atomic_number_6 n 1 3 @ ~ #s 1 0 14633206 -atomic_number_60 n 1 2 @ #s 1 0 14645882 -atomic_number_61 n 1 1 @ 1 0 14651479 -atomic_number_62 n 1 2 @ #s 1 0 14653596 -atomic_number_63 n 1 2 @ #s 1 0 14637176 -atomic_number_64 n 1 2 @ #s 1 0 14638041 -atomic_number_65 n 1 2 @ #s 1 0 14657566 -atomic_number_66 n 1 1 @ 1 0 14636647 -atomic_number_67 n 1 2 @ #s 1 0 14640222 -atomic_number_68 n 1 2 @ #s 1 0 14636988 -atomic_number_69 n 1 2 @ #s 1 0 14658546 -atomic_number_7 n 1 3 @ ~ #s 1 0 14647235 -atomic_number_70 n 1 2 @ #s 1 0 14661482 -atomic_number_71 n 1 1 @ 1 0 14644063 -atomic_number_72 n 1 1 @ 1 0 14639556 -atomic_number_73 n 1 2 @ #s 1 0 14656666 -atomic_number_74 n 1 2 @ #s 1 0 14659512 -atomic_number_75 n 1 1 @ 1 0 14652390 -atomic_number_76 n 1 1 @ 1 0 14647907 -atomic_number_77 n 1 1 @ 1 0 14642219 -atomic_number_78 n 1 1 @ 1 0 14649543 -atomic_number_79 n 1 3 @ ~ #s 1 0 14638799 -atomic_number_8 n 1 3 @ ~ #s 1 0 14648100 -atomic_number_80 n 1 2 @ #s 1 0 14645346 -atomic_number_81 n 1 2 @ #s 1 0 14657818 -atomic_number_82 n 1 3 @ ~ #s 1 0 14643467 -atomic_number_83 n 1 1 @ 1 0 14631502 -atomic_number_84 n 1 1 @ 1 0 14650556 -atomic_number_85 n 1 1 @ 1 0 14629561 -atomic_number_86 n 1 1 @ 1 0 14652104 -atomic_number_87 n 1 1 @ 1 0 14637864 -atomic_number_88 n 1 2 @ #s 1 0 14651921 -atomic_number_89 n 1 2 @ #s 1 0 14627655 -atomic_number_9 n 1 2 @ #s 1 0 14637507 -atomic_number_90 n 1 3 @ ~ #s 1 0 14658109 -atomic_number_91 n 1 1 @ 1 0 14651708 -atomic_number_92 n 1 3 @ ~ #s 1 0 14660443 -atomic_number_93 n 1 1 @ 1 0 14646403 -atomic_number_94 n 1 2 @ ~ 1 0 14649775 -atomic_number_95 n 1 1 @ 1 0 14628494 -atomic_number_96 n 1 1 @ 1 0 14636220 -atomic_number_97 n 1 1 @ 1 0 14631134 -atomic_number_98 n 1 1 @ 1 0 14633037 -atomic_number_99 n 1 1 @ 1 0 14636822 -atomic_physics n 1 3 @ %p - 1 1 06100555 -atomic_pile n 1 1 @ 1 0 02753710 -atomic_power n 1 1 @ 1 0 11426125 -atomic_reactor n 1 1 @ 1 0 02753710 -atomic_spectrum n 1 3 @ %p ; 1 0 11426288 -atomic_theory n 2 4 @ ~ #p ; 2 0 06103270 06102476 -atomic_warhead n 1 2 @ #p 1 0 02753881 -atomic_weapon n 1 3 @ ~ %p 1 0 03834604 -atomic_weight n 1 3 @ ~ ; 1 0 05025935 -atomisation n 2 2 @ + 2 0 00388210 00218602 -atomiser n 1 3 @ ~ + 1 0 02754103 -atomism n 2 4 ! @ + ; 2 0 06138099 06102476 -atomist_theory n 1 2 @ ; 1 0 06102476 -atomistic_theory n 1 2 @ ; 1 0 06102476 -atomization n 2 2 @ + 2 0 00388210 00218602 -atomizer n 1 3 @ ~ + 1 0 02754103 -aton n 1 1 @ 1 0 09511875 -atonalism n 1 2 @ + 1 0 06864014 -atonality n 1 3 ! @ + 1 0 06864014 -atonement n 2 3 @ ~ + 2 0 13292787 00095121 -atonia n 1 2 @ + 1 0 14545845 -atonicity n 1 3 ! @ + 1 0 14545845 -atony n 1 2 @ + 1 0 14545845 -atopic_allergy n 1 1 @ 1 0 14532250 -atopic_dermatitis n 1 1 @ 1 0 14222788 -atopic_eczema n 1 1 @ 1 0 14222788 -atopognosia n 1 1 @ 1 0 14091965 -atopognosis n 1 1 @ 1 0 14091965 -atopy n 1 1 @ 1 0 14532250 -atorvastatin n 1 1 @ 1 0 02754421 -atp n 1 1 @ 1 0 14708042 -atrazine n 1 1 @ 1 0 14629772 -atresia n 1 1 @ 1 0 14049262 -atreus n 1 2 @ ; 1 0 09594756 -atrial_artery n 1 1 @ 1 0 05343941 -atrial_auricle n 1 2 @ #p 1 0 05392348 -atrial_fibrillation n 1 1 @ 1 0 14362373 -atrial_septal_defect n 1 1 @ 1 0 14469334 -atrichornis n 1 3 @ #m %m 1 0 01545889 -atrichornithidae n 1 3 @ #m %m 1 0 01545752 -atrioventricular_block n 1 1 @ 1 0 14362593 -atrioventricular_bundle n 1 1 @ 1 0 05390479 -atrioventricular_nodal_rhythm n 1 1 @ 1 0 04768309 -atrioventricular_node n 1 1 @ 1 0 05390761 -atrioventricular_trunk n 1 1 @ 1 0 05390479 -atrioventricular_valve n 1 3 @ ~ %p 1 0 05394277 -atriplex n 1 3 @ #m %m 1 0 11830570 -atriplex_hortensis n 1 1 @ 1 0 11831100 -atriplex_hymenelytra n 1 1 @ 1 0 11831297 -atriplex_lentiformis n 1 1 @ 1 0 11831521 -atriplex_mexicana n 1 1 @ 1 0 11829205 -atrium n 2 3 @ ~ + 2 0 05393023 02754656 -atrium_cordis n 1 3 @ ~ %p 1 0 05393230 -atrium_dextrum n 1 1 @ 1 0 05393429 -atrium_of_the_heart n 1 3 @ ~ %p 1 0 05393230 -atrium_sinistrum n 1 1 @ 1 0 05393629 -atrociousness n 1 2 @ + 1 0 04830343 -atrocity n 2 3 @ ~ + 2 0 04830343 00424767 -atromid-s n 1 2 @ ; 1 0 03047353 -atropa n 1 3 @ #m %m 1 0 12898226 -atropa_belladonna n 1 2 @ #m 1 0 12898342 -atrophedema n 1 1 @ 1 0 14120310 -atrophic_arthritis n 1 3 @ ~ ; 1 0 14186738 -atrophy n 2 3 @ ~ + 2 1 14365741 07427060 -atropidae n 1 2 @ #m 1 0 02261184 -atropine n 1 2 @ ~ 1 0 02754756 -atropos n 1 2 @ #m 1 0 09565787 -atrovent n 1 2 @ ; 1 0 03584111 -atsugewi n 2 1 @ 2 0 09650609 06921853 -attacapa n 1 1 @ 1 0 06907567 -attacapan n 2 1 @ 2 0 09647680 06907567 -attache n 2 3 @ ~ #m 2 0 09821086 02755140 -attache_case n 1 1 @ 1 0 02755140 -attachment n 7 4 @ ~ + ; 7 2 07545161 02755244 06554981 02755352 01212882 00379422 00147595 -attack n 9 5 @ ~ %p + ; 9 6 00972621 00457723 06711159 00941140 00773814 00236953 14081375 13435548 01220619 -attack_aircraft n 1 3 @ ~ ; 1 0 03335030 -attack_aircraft_carrier n 1 2 @ %p 1 1 02687172 -attack_dog n 1 1 @ 1 0 02104184 -attack_submarine n 1 2 @ ; 1 0 02755529 -attacker n 1 3 @ ~ + 1 1 09821253 -attainability n 1 2 @ + 1 0 14482444 -attainableness n 1 2 @ + 1 0 14482444 -attainder n 1 1 @ 1 0 00232765 -attainment n 3 3 @ ~ + 3 2 00062806 00048656 05637558 -attalea n 1 3 @ #m %m 1 0 12584970 -attalea_funifera n 1 3 @ #m %p 1 0 12585137 -attar n 1 2 @ ~ 1 0 14892989 -attar_of_roses n 1 1 @ 1 0 14893128 -attempt n 2 3 @ ~ + 2 2 00786195 00773814 -attempter n 1 2 @ + 1 0 10728998 -attendance n 3 4 ! @ ~ + 3 1 01233397 15284999 08185063 -attendance_check n 1 1 @ 1 0 01012257 -attendant n 3 3 @ ~ + 3 1 09821831 09608002 07284554 -attendee n 1 2 @ ~ 1 0 09608002 -attender n 3 4 @ ~ #m + 3 0 10165448 09821831 09608002 -attending n 2 2 @ ~ 2 0 05702275 01233397 -attention n 6 6 ! @ ~ = + ; 6 6 05702275 00654885 05853636 01228645 05650579 05082790 -attention_deficit_disorder n 1 2 @ %p 1 0 14056280 -attention_deficit_hyperactivity_disorder n 1 2 @ %p 1 0 14056280 -attention_span n 1 1 @ 1 0 05702602 -attentiveness n 3 5 ! @ ~ = + 3 0 05702726 04663204 04662951 -attenuation n 2 2 @ + 2 0 07427534 05041712 -attenuator n 1 2 @ + 1 0 02755675 -attestant n 2 3 @ + ; 2 0 10786270 09822640 -attestation n 2 3 @ + ; 2 0 06736405 06649915 -attestation_report n 1 2 @ ~ 1 0 00578154 -attestation_service n 1 2 @ ~ 1 0 00578154 -attestator n 1 2 @ ; 1 0 10786270 -attester n 1 2 @ + 1 0 09822640 -attestor n 1 2 @ ; 1 0 10786270 -attic n 4 5 @ ~ #p + ; 4 1 03686130 06977610 05539454 02755823 -attic_fan n 1 1 @ 1 0 02755984 -attica n 1 2 @ #p 1 1 08786283 -atticus n 1 3 @ #m %m 1 0 02304967 -atticus_atlas n 1 2 @ #m 1 0 02305085 -attila n 1 1 @ 1 0 10827678 -attila_the_hun n 1 1 @ 1 0 10827678 -attilio n 1 1 @ 1 0 05263448 -attire n 1 3 @ ~ + 1 1 02756098 -attitude n 4 4 @ ~ = + 4 3 06193203 05079866 00755863 13828343 -attlee n 1 1 @ 1 0 10827873 -attorney n 1 5 @ ~ #m + ; 1 1 10249950 -attorney-client_privilege n 1 1 @ 1 0 05179838 -attorney-client_relation n 1 3 @ %m ; 1 0 13839662 -attorney_general n 3 3 @ #m ; 3 3 09822830 10570429 00599917 -attorney_general_of_the_united_states n 1 2 @ #m 1 0 00599917 -attorneyship n 1 2 @ + 1 0 00589217 -attosecond n 1 2 @ #p 1 0 15235540 -attracter n 3 3 @ ~ ; 3 0 10032676 05866199 05850823 -attraction n 5 4 ! @ ~ + 5 4 11426530 06615561 04688246 05850823 10032676 -attractive_feature n 1 2 @ ~ 1 0 05850823 -attractive_force n 1 2 @ ~ 1 0 11426530 -attractive_nuisance n 1 1 @ 1 0 05831057 -attractiveness n 2 5 ! @ ~ = + 2 0 04688246 04686003 -attractor n 3 4 @ ~ + ; 3 0 10032676 05866199 05850823 -attribute n 2 2 @ ~ 2 2 05849040 00024264 -attribution n 2 4 @ ~ = + 2 0 05734909 05734559 -attributive_genitive n 1 1 @ 1 0 06312001 -attributive_genitive_case n 1 1 @ 1 0 06312001 -attrition n 5 2 @ + 5 0 13423615 11460063 07534700 07356970 00361795 -attrition_rate n 1 1 @ 1 0 15276307 -atypical_pneumonia n 1 2 @ ~ 1 0 14147964 -atypicality n 1 3 ! @ + 1 0 14503060 -au n 2 3 @ ~ #s 2 0 14638799 13657244 -au_pair n 1 2 @ ~ 1 0 09823683 -au_pair_girl n 1 1 @ 1 0 09823832 -au_revoir n 1 1 @ 1 0 06629610 -auberge n 1 2 @ ~ 1 0 03541696 -aubergine n 2 4 @ #m #p %p 2 0 12896000 07713074 -auc n 1 2 @ ; 1 0 08047032 -auchincloss n 1 1 @ 1 0 10828091 -auckland n 1 2 @ #p 1 0 08972920 -auction n 2 3 @ + - 2 0 00491161 00092366 -auction_block n 1 1 @ 1 0 02756601 -auction_bridge n 1 1 @ 1 0 00491161 -auction_house n 1 1 @ 1 0 08076946 -auction_pitch n 1 1 @ 1 0 00498558 -auction_sale n 1 2 @ - 1 0 00092366 -auctioneer n 1 2 @ + 1 0 09608377 -aucuba n 1 2 @ #m 1 0 12946432 -audaciousness n 2 3 @ ~ + 2 0 04859449 04838510 -audacity n 2 3 @ ~ + 2 2 04859449 04838510 -audad n 1 2 @ #m 1 0 02416104 -auden n 1 1 @ 1 0 10828233 -audibility n 1 4 ! @ = + 1 0 05018934 -audible n 1 1 @ 1 0 00188183 -audibleness n 1 3 @ = + 1 0 05018934 -audience n 4 4 @ ~ #m %m 4 2 08221897 08222293 14484778 07143624 -audile n 1 2 @ + 1 0 10165673 -audio n 4 3 @ ~ #p 4 0 06278136 05056386 04262678 02756751 -audio_amplifier n 1 1 @ 1 0 02756854 -audio_cd n 1 2 @ ; 1 0 02757061 -audio_compact_disc n 1 2 @ ; 1 0 02757061 -audio_frequency n 1 1 @ 1 0 05056386 -audio_lingual_acquisition n 1 1 @ 1 0 05755007 -audio_recording n 1 2 @ ~ 1 0 04262678 -audio_system n 1 3 @ ~ %p 1 1 02757462 -audiocassette n 1 1 @ 1 0 02756977 -audiogram n 1 1 @ 1 0 02757211 -audiology n 1 1 @ 1 0 06060732 -audiometer n 1 1 @ 1 0 02757337 -audiometry n 2 2 @ + 2 0 06060732 00998982 -audiotape n 2 2 @ ~ 2 0 02757810 02757714 -audiovisual n 1 2 @ + 1 0 02757927 -audiovisual_aid n 1 1 @ 1 0 02757927 -audit n 2 4 @ ~ %p + 2 1 13411157 00141176 -audit_program n 1 1 @ 1 0 05891426 -audit_programme n 1 1 @ 1 0 05891426 -audited_account n 1 3 @ ~ %p 1 0 13411157 -audition n 2 4 @ ~ + - 2 0 05657718 00794614 -auditor n 3 4 @ ~ #m + 3 0 10165448 09823153 09822955 -auditorium n 1 2 @ ~ 1 1 02758134 -auditory_agnosia n 1 1 @ 1 0 14100243 -auditory_aphasia n 1 1 @ 1 0 14097893 -auditory_apparatus n 1 4 @ #p %p ; 1 0 05300675 -auditory_area n 1 1 @ 1 0 05488223 -auditory_canal n 1 3 @ #p %p 1 0 05248667 -auditory_center n 1 1 @ 1 0 05463873 -auditory_communication n 1 2 @ ~ 1 0 07109019 -auditory_cortex n 1 1 @ 1 0 05488223 -auditory_hallucination n 1 1 @ 1 0 14377830 -auditory_hyperesthesia n 1 1 @ 1 0 14551321 -auditory_image n 1 1 @ 1 0 05936995 -auditory_meatus n 1 3 @ #p %p 1 0 05248667 -auditory_modality n 1 3 @ ~ - 1 0 05657718 -auditory_nerve n 1 2 @ #p 1 0 05479503 -auditory_ossicle n 1 2 @ ~ 1 0 05277941 -auditory_perception n 1 2 @ ~ 1 0 05711503 -auditory_sensation n 1 2 @ ~ 1 0 05718254 -auditory_sense n 1 3 @ ~ - 1 0 05657718 -auditory_system n 1 3 @ %p ; 1 0 05300507 -auditory_tube n 1 2 @ #p 1 0 05325153 -audubon n 1 1 @ 1 0 10828368 -audubon's_caracara n 1 2 @ #m 1 0 01612955 -audubon's_warbler n 1 2 @ #m 1 0 01569262 -audubon_warbler n 1 2 @ #m 1 0 01569262 -auf_wiedersehen n 1 1 @ 1 0 06629610 -aug n 1 3 @ #p %p 1 1 15212455 -augean_stables n 1 2 @ ; 1 0 02758270 -augeas n 1 3 @ + ; 1 0 09486424 -augend n 1 1 @ 1 0 13728924 -auger n 2 1 @ 2 0 03968886 02758490 -aught n 1 2 @ ~ 1 0 13740168 -augite n 1 2 @ + 1 0 14667668 -augmentation n 3 3 ! @ + 3 0 07369470 07030376 00365231 -augmentin n 1 1 @ 1 0 02703894 -augsburg_confession n 1 1 @ 1 0 06472607 -augur n 1 3 @ + ; 1 0 09823287 -augury n 1 3 @ ~ + 1 0 07286014 -august n 1 3 @ #p %p 1 1 15212455 -august_1 n 1 1 @ 1 0 15190228 -august_15 n 1 2 @ #p 1 0 15193908 -august_6 n 1 2 @ ; 1 0 15299367 -august_f._mobius n 1 1 @ 1 0 11183791 -august_ferdinand_mobius n 1 1 @ 1 0 11183791 -august_friedrich_leopold_weismann n 1 1 @ 1 0 11380159 -august_plum n 1 1 @ 1 0 12638964 -august_strindberg n 1 1 @ 1 0 11322481 -august_von_wassermann n 1 1 @ 1 0 11375909 -august_wilhelm_von_hoffmann n 1 1 @ 1 0 11055042 -augusta n 2 2 @ #p 2 0 09092822 09077111 -auguste_comte n 1 1 @ 1 0 10906234 -auguste_rodin n 1 1 @ 1 0 11267949 -augustin_eugene_scribe n 1 1 @ 1 0 11289999 -augustin_jean_fresnel n 1 1 @ 1 0 10981961 -augustine n 1 2 @ ; 1 0 10828573 -augustine_of_hippo n 1 2 @ ; 1 0 10828573 -augustinian n 1 3 @ ~ #m 1 0 10778711 -augustinian_canons n 1 1 @ 1 0 08148294 -augustinian_hermits n 1 1 @ 1 0 08148388 -augustinian_order n 1 3 @ ~ %m 1 0 08148067 -augustus n 1 2 @ + 1 0 10828990 -augustus_welby_northmore_pugin n 1 1 @ 1 0 11248232 -auk n 1 3 @ ~ #m 1 0 02045369 -auklet n 1 1 @ 1 0 02045596 -aulacorhyncus n 1 3 @ #m %m 1 0 01843576 -auld_langsyne n 1 1 @ 1 0 15252635 -aulostomidae n 1 3 @ #m %m 1 0 01457576 -aulostomus n 1 3 @ #m %m 1 0 01457708 -aulostomus_maculatus n 1 2 @ #m 1 0 01457852 -aum n 1 2 @ ; 1 0 08017614 -aum_shinrikyo n 1 2 @ ; 1 0 08017614 -aunt n 1 3 ! @ ~ 1 1 09823502 -auntie n 1 2 @ ~ 1 0 09823502 -aunty n 1 2 @ ~ 1 0 09823502 -aura n 3 2 @ ~ 3 0 14302460 04951716 04727214 -aurelius n 1 1 @ 1 0 10819755 -aureolaria n 1 3 @ #m %m 1 0 12878525 -aureolaria_pedicularia n 1 2 @ #m 1 0 12878784 -aureolaria_virginica n 1 2 @ #m 1 0 12879068 -aureole n 2 2 @ #p 2 0 11427067 04951716 -aureomycin n 1 2 @ ; 1 1 03023415 -auricle n 2 5 @ ~ #p %p + 2 0 05392348 05323889 -auricula n 2 2 @ #p 2 0 12091806 05392562 -auricula_atrii n 1 2 @ #p 1 0 05392348 -auricular_appendage n 1 2 @ #p 1 0 05392562 -auricular_appendix n 1 2 @ #p 1 0 05392562 -auricular_artery n 1 2 @ #p 1 0 05338025 -auricular_point n 1 2 @ #p 1 0 05231592 -auricular_vein n 1 1 @ 1 0 05358226 -auriculare n 1 2 @ #p 1 0 05231592 -auricularia n 1 3 @ #m %m 1 0 13062272 -auricularia_auricula n 1 2 @ #m 1 0 13062421 -auriculariaceae n 1 3 @ #m %m 1 0 13062112 -auriculariales n 1 2 @ #m 1 0 13061921 -auriga n 1 2 @ %m 1 0 09211056 -auriparus n 1 3 @ #m %m 1 0 01593423 -auriparus_flaviceps n 1 2 @ #m 1 0 01593553 -auriscope n 1 1 @ 1 0 03858183 -aurochs n 2 2 @ #m 2 0 02410900 02405101 -aurora n 3 5 @ ~ %p + ; 3 0 15168790 11427241 09572113 -aurora_australis n 1 1 @ 1 0 11427501 -aurora_borealis n 1 1 @ 1 0 11427619 -auroscope n 1 1 @ 1 0 03858183 -auschwitz n 1 2 @ #p 1 0 02758600 -auscultation n 1 3 @ ~ + 1 0 00876542 -auspex n 1 2 @ ; 1 0 09823287 -auspice n 1 2 @ + 1 0 07286799 -auspices n 1 1 @ 1 0 01214863 -auspiciousness n 1 4 ! @ = + 1 0 05161150 -aussie n 1 3 @ ~ #m 1 0 09691279 -austen n 1 1 @ 1 0 10829293 -austenite n 1 4 @ #s %s + 1 0 14769760 -austenitic_manganese_steel n 1 1 @ 1 0 14947255 -austenitic_steel n 1 2 @ %s 1 0 14769962 -austereness n 1 2 @ + 1 0 04697666 -austerity n 1 3 @ ~ + 1 1 04881998 -austerlitz n 2 4 @ #p ; - 2 0 08758172 01269857 -austin n 1 3 @ #p %p 1 1 09143017 -austin_friar n 1 1 @ 1 0 10778888 -austin_friars n 1 1 @ 1 0 08148512 -austral n 1 2 @ %p 1 0 13663562 -austral_islands n 1 2 @ #p 1 0 08990701 -australasia n 1 3 @ #p + 1 0 08836165 -australia n 2 8 @ ~ #m #p %m %p + - 2 1 08831004 09211266 -australian n 2 5 @ ~ #m + ; 2 0 09691279 06940290 -australian_aborigine n 1 1 @ 1 0 09676490 -australian_alps n 1 2 @ #p 1 0 09211735 -australian_arowana n 1 2 @ #m 1 0 02545153 -australian_blacksnake n 1 2 @ #m 1 0 01750743 -australian_bonytongue n 1 2 @ #m 1 0 02545387 -australian_capital n 1 2 @ #p 1 0 08832269 -australian_chestnut n 1 2 @ #m 1 0 12512674 -australian_cockroach n 1 2 @ #m 1 0 02234570 -australian_coral_snake n 1 2 @ #m 1 0 01747285 -australian_crawl n 1 2 @ %p 1 0 00570366 -australian_desert n 1 3 @ #p %p 1 0 09168336 -australian_dollar n 1 1 @ 1 0 13671967 -australian_grass_tree n 2 2 @ #m 2 0 12466206 12254667 -australian_hare's_foot n 1 2 @ #m 1 0 13188619 -australian_heath n 1 3 @ ~ #m 1 0 12252866 -australian_honeysuckle n 1 1 @ 1 0 12215824 -australian_labor_party n 1 1 @ 1 0 08261162 -australian_lungfish n 1 1 @ 1 0 02516994 -australian_magpie n 1 3 @ ~ #m 1 0 01582856 -australian_nettle n 1 2 @ #m 1 0 12394328 -australian_nettle_tree n 1 2 @ #m 1 0 12394328 -australian_pea n 1 2 @ #m 1 0 12527081 -australian_pine n 1 2 @ #m 1 0 12225563 -australian_pitcher_plant n 1 2 @ #m 1 0 12784889 -australian_reed_grass n 1 1 @ 1 0 12113323 -australian_sea_lion n 1 2 @ #m 1 0 02078738 -australian_state n 1 3 @ ~ #p 1 0 08832447 -australian_stilt n 1 3 @ ~ #m 1 0 02036053 -australian_sumac n 1 2 @ #m 1 0 12762405 -australian_sword_lily n 1 2 @ #m 1 0 12312728 -australian_terrier n 1 1 @ 1 0 02096294 -australian_turtledove n 1 2 @ #m 1 0 01813948 -australopithecine n 1 4 @ ~ #m + 1 0 02476219 -australopithecus n 1 3 @ #m %m 1 0 02475821 -australopithecus_afarensis n 1 3 @ ~ #m 1 0 02476567 -australopithecus_africanus n 1 2 @ #m 1 0 02476870 -australopithecus_boisei n 1 2 @ #m 1 0 02477028 -australopithecus_robustus n 1 2 @ #m 1 0 02477329 -austria n 1 7 @ #m #p %m %p + - 1 0 08845555 -austria-hungary n 1 2 @ #p 1 0 08845366 -austrian n 1 3 @ #m + 1 0 09691604 -austrian_capital n 1 3 @ #p - 1 0 08846324 -austrian_monetary_unit n 1 2 @ ~ 1 0 13705800 -austrian_schilling n 1 2 @ %p 1 0 13705929 -austrian_winter_pea n 1 2 @ %p 1 0 12561309 -austro-asiatic n 1 2 @ ~ 1 0 06936620 -austro-asiatic_language n 1 2 @ ~ 1 0 06936620 -austrocedrus n 1 3 @ #m %m 1 0 11633116 -austrocedrus_chilensis n 1 2 @ #m 1 0 11633284 -austronesia n 1 6 @ #p %m %p + ; 1 0 08836329 -austronesian n 2 4 @ ~ #m + 2 0 09691435 06937531 -austronesian_language n 1 2 @ ~ 1 0 06937531 -austrotaxus n 1 3 @ #m %m 1 0 11662764 -austrotaxus_spicata n 1 2 @ #m 1 0 11662937 -autacoid n 1 3 @ ~ + 1 0 05414534 -autarchy n 2 3 @ ~ + 2 0 13993356 08361001 -autarky n 1 2 @ + 1 0 13993356 -auteur n 1 1 @ 1 0 09823927 -authentication n 2 2 @ + 2 0 06855035 00154233 -authenticator n 1 3 @ + ; 1 0 09802239 -authenticity n 1 3 @ ~ + 1 1 04783247 -author n 2 3 @ ~ + 2 2 10794014 10126177 -author's_name n 1 2 @ #p 1 0 06338744 -authoress n 1 1 @ 1 0 09824065 -authoring_language n 1 1 @ 1 0 06566949 -authorisation n 4 5 @ ~ = + ; 4 0 06556481 05196582 05176607 01138670 -authoriser n 1 2 @ + 1 0 09825096 -authoritarian n 1 2 @ ~ 1 0 09824135 -authoritarian_regime n 1 1 @ 1 0 08051384 -authoritarian_state n 1 1 @ 1 0 08051384 -authoritarianism n 1 2 @ ~ 1 0 08440630 -authorities n 1 5 @ ~ %m %p ; 1 1 08050678 -authority n 7 4 @ ~ = ; 7 6 05196582 09824609 09824361 05697363 08337324 05176607 06411592 -authority_figure n 1 1 @ 1 0 09824978 -authorization n 4 5 @ ~ = + ; 4 1 06556481 05196582 05176607 01138670 -authorized_shares n 1 1 @ 1 0 13342398 -authorized_stock n 1 1 @ 1 0 13342398 -authorized_version n 1 1 @ 1 0 06449095 -authorizer n 1 2 @ + 1 0 09825096 -authorship n 2 4 @ ~ + - 2 1 00929718 00240754 -autism n 1 4 @ ~ + ; 1 0 05896998 -auto n 1 4 @ ~ %p - 1 1 02958343 -auto-changer n 1 2 @ #p 1 0 04063154 -auto-da-fe n 1 2 @ ; 1 0 01164730 -auto-mechanic n 1 1 @ 1 0 09825750 -auto-suggestion n 1 1 @ 1 0 00158805 -auto_accessory n 1 2 @ #p 1 0 02758753 -auto_company n 1 1 @ 1 0 08002269 -auto_factory n 1 1 @ 1 0 02761696 -auto_limitation n 1 1 @ 1 1 01124110 -auto_loan n 1 1 @ 1 0 13400024 -auto_maker n 1 2 @ #m 1 0 08066763 -auto_manufacturer n 1 2 @ #m 1 0 08066763 -auto_mechanics n 1 1 @ 1 1 00607185 -auto_part n 1 1 @ 1 0 02762044 -auto_race n 1 2 @ ~ 1 0 07458892 -auto_racing n 1 2 @ - 1 0 00449517 -auto_tire n 1 2 @ ~ 1 0 02971167 -autoantibody n 1 2 @ ~ 1 0 15027618 -autobahn n 1 1 @ 1 0 02758863 -autobiographer n 1 2 @ + 1 0 09825296 -autobiography n 1 3 @ ~ + 1 0 06516087 -autobus n 1 5 @ ~ #m %p - 1 0 02924116 -autocatalysis n 1 2 @ + 1 0 13435770 -autochthon n 1 1 @ 1 0 09757076 -autochthony n 1 2 @ + 1 0 04800152 -autoclave n 1 3 @ ~ + 1 0 02758960 -autocoid n 1 2 @ ~ 1 0 05414534 -autocracy n 2 2 @ ~ 2 0 08361001 06214020 -autocrat n 1 3 @ ~ + 1 0 10735298 -autocue n 1 2 @ ~ 1 0 04010779 -autodefensas_unidas_de_colombia n 1 2 @ ; 1 0 08047032 -autodidact n 1 2 @ + 1 0 09825413 -autoeroticism n 1 3 @ ~ + 1 0 00855527 -autoerotism n 1 2 @ ~ 1 0 00855527 -autofluorescence n 1 2 @ + 1 1 11427736 -autofocus n 1 1 @ 1 0 02759257 -autogamy n 1 3 ! @ + 1 0 07438655 -autogenesis n 1 2 @ + 1 0 11420376 -autogenic_therapy n 1 1 @ 1 0 00710550 -autogenic_training n 1 1 @ 1 0 00710550 -autogenics n 1 1 @ 1 0 00710550 -autogeny n 1 1 @ 1 0 11420376 -autogiro n 1 1 @ 1 0 02759387 -autograft n 1 1 @ 1 0 05583158 -autograph n 2 3 @ ~ + 2 0 06407094 06404907 -autograph_album n 1 1 @ 1 0 02759615 -autogyro n 1 1 @ 1 0 02759387 -autoimmune_diabetes n 1 2 @ %p 1 0 14118423 -autoimmune_disease n 1 3 @ ~ %p 1 0 14187378 -autoimmune_disorder n 1 3 @ ~ %p 1 0 14187378 -autoimmunity n 1 3 @ #p + 1 0 14527977 -autoinjector n 1 1 @ 1 0 02759700 -autolatry n 1 1 @ 1 0 01044761 -autoloader n 1 2 @ ~ 1 1 02759963 -autolysis n 1 2 @ + 1 0 13435918 -automaker n 1 2 @ #m 1 0 08066763 -automat n 2 1 @ 2 0 02760199 02760099 -automated_teller n 1 1 @ 1 0 02977058 -automated_teller_machine n 1 1 @ 1 0 02977058 -automatic n 2 3 @ ~ + 2 0 02760855 02760658 -automatic_choke n 1 1 @ 1 0 02760298 -automatic_data_processing n 1 2 @ ~ 1 0 13436063 -automatic_data_processing_system n 1 3 @ ~ %p 1 0 03085915 -automatic_drive n 1 1 @ 1 0 02761034 -automatic_face_recognition n 1 2 @ ; 1 0 06644105 -automatic_firearm n 1 2 @ ~ 1 0 02760429 -automatic_gun n 1 2 @ ~ 1 0 02760429 -automatic_pilot n 2 2 @ %p 2 0 05679305 02762169 -automatic_pistol n 1 1 @ 1 0 02760658 -automatic_rifle n 1 2 @ ~ 1 0 02760855 -automatic_teller n 1 1 @ 1 0 02977058 -automatic_teller_machine n 1 1 @ 1 0 02977058 -automatic_transmission n 1 1 @ 1 0 02761034 -automatic_washer n 1 1 @ 1 0 04554684 -automatic_weapon n 1 2 @ ~ 1 0 02760429 -automation n 3 3 @ ~ + 3 1 00102457 14574504 02761206 -automatism n 1 1 @ 1 0 00859490 -automaton n 2 3 @ ~ + 2 0 09825519 02761392 -automeris n 1 3 @ #m %m 1 0 02303917 -automeris_io n 1 2 @ #m 1 0 02304036 -automobile n 1 5 @ ~ %p + - 1 1 02958343 -automobile_battery n 1 2 @ #p 1 0 02961225 -automobile_driver n 1 2 @ ~ 1 0 10502576 -automobile_engine n 1 3 @ #p %p 1 0 02761557 -automobile_factory n 1 1 @ 1 0 02761696 -automobile_horn n 1 3 @ #p %p 1 0 02761834 -automobile_industry n 1 2 @ %m 1 1 08067077 -automobile_insurance n 1 2 @ ~ 1 0 13345403 -automobile_loan n 1 1 @ 1 0 13400024 -automobile_mechanic n 1 1 @ 1 0 09825750 -automobile_race n 1 2 @ ~ 1 0 07458892 -automobile_tire n 1 2 @ ~ 1 0 02971167 -automobile_traffic n 1 1 @ 1 0 08426111 -automobile_trunk n 1 3 @ ~ #p 1 0 03696065 -automobilist n 1 2 @ + 1 0 10334101 -automotive_engineer n 1 1 @ 1 0 09825939 -automotive_engineering n 1 1 @ 1 0 00950070 -automotive_technology n 1 1 @ 1 0 00950070 -automotive_vehicle n 1 4 @ ~ %p - 1 0 03791235 -automysophobia n 1 1 @ 1 0 14383163 -autonomic_ganglion n 1 3 @ ~ #p 1 0 05297163 -autonomic_nervous_system n 1 3 @ #p %p 1 0 05504532 -autonomic_plexus n 1 1 @ 1 0 05236709 -autonomy n 2 3 @ ~ + 2 1 13992514 14001031 -autophyte n 1 2 @ + 1 0 13124654 -autophytic_plant n 1 1 @ 1 0 13124654 -autopilot n 2 2 @ %p 2 0 05679305 02762169 -autoplasty n 2 2 @ + 2 0 05583158 00667096 -autopsy n 1 2 @ + 1 1 00141396 -autoradiograph n 1 1 @ 1 0 02762371 -autoradiography n 1 1 @ 1 0 13436206 -autoregulation n 1 2 @ ; 1 0 13436503 -autosexing n 1 1 @ 1 0 00915347 -autosomal_dominant_disease n 1 2 @ ~ 1 0 14162025 -autosomal_dominant_disorder n 1 2 @ ~ 1 0 14162025 -autosomal_recessive_defect n 1 2 @ ~ 1 0 14162275 -autosomal_recessive_disease n 1 2 @ ~ 1 0 14162275 -autosome n 1 2 @ + 1 0 05443966 -autostrada n 1 1 @ 1 0 02762508 -autosuggestion n 1 1 @ 1 0 00158805 -autotelism n 1 2 @ + 1 0 05946089 -autotomy n 1 2 @ + 1 0 00394242 -autotroph n 1 1 @ 1 0 13124654 -autotrophic_organism n 1 1 @ 1 0 13124654 -autotype n 2 2 @ + 2 0 13436361 03316274 -autotypy n 1 1 @ 1 0 13436361 -autumn n 1 3 @ %p + 1 1 15236859 -autumn_crocus n 1 2 @ #m 1 0 12455540 -autumn_pumpkin n 1 3 @ #m %p 1 0 12158443 -autumn_sneezeweed n 1 1 @ 1 0 11977512 -autumnal_equinox n 2 4 ! @ #p ; 2 0 15223750 08521112 -auvergne n 1 2 @ #p 1 0 08940835 -auxesis n 1 2 @ + 1 0 13436682 -auxiliary n 1 3 @ ~ + 1 1 09780249 -auxiliary_airfield n 1 1 @ 1 0 02762609 -auxiliary_boiler n 1 2 @ ; 1 0 02762725 -auxiliary_cell n 1 1 @ 1 0 08359581 -auxiliary_engine n 1 2 @ ; 1 0 02762909 -auxiliary_equipment n 1 2 @ #p 1 0 03842377 -auxiliary_operation n 1 1 @ 1 0 13436809 -auxiliary_pump n 1 1 @ 1 0 02763083 -auxiliary_research_submarine n 1 1 @ 1 0 02763198 -auxiliary_storage n 1 1 @ 1 0 02763306 -auxiliary_verb n 1 2 @ ~ 1 0 06318513 -auxin n 1 3 @ ~ + 1 0 14745057 -av n 1 2 @ #p 1 0 15216563 -avadavat n 1 2 @ #m 1 0 01543936 -avahi n 1 3 @ #m %m 1 0 02500472 -avahi_laniger n 1 2 @ #m 1 0 02500596 -avail n 1 2 @ + 1 1 05149832 -availability n 1 5 ! @ ~ = + 1 1 04718999 -availableness n 1 4 @ ~ = + 1 0 04718999 -avalanche n 2 3 @ ~ + 2 0 07405137 07285036 -avalanche_lily n 1 2 @ #m 1 0 12451566 -avalokiteshvara n 1 1 @ 1 0 09532691 -avalokitesvara n 1 1 @ 1 0 09532691 -avant-garde n 1 1 @ 1 0 08465558 -avaram n 1 1 @ 1 0 12499757 -avarice n 2 2 @ + 2 1 00758525 04945758 -avariciousness n 1 2 @ + 1 0 04945758 -avaritia n 1 1 @ 1 0 00758525 -avatar n 2 2 @ ~ 2 0 10418302 09530238 -ave_maria n 1 1 @ 1 0 06456515 -avena n 1 3 @ #m %m 1 0 12109719 -avena_barbata n 1 1 @ 1 0 12110352 -avena_fatua n 1 1 @ 1 0 12110236 -avena_sativa n 1 2 @ %p 1 0 12110085 -avene_sterilis n 1 1 @ 1 0 12110475 -avenger n 1 2 @ + 1 0 09826074 -avens n 1 3 @ ~ #m 1 0 12631331 -aventail n 1 2 @ #p 1 0 02941845 -aventurine n 1 2 @ ~ 1 0 15064560 -avenue n 2 2 @ ~ 2 1 00941604 02763472 -average n 3 4 @ ~ + ; 3 1 06021761 13820655 05856979 -average_cost n 1 1 @ 1 1 05145573 -averageness n 2 2 @ + 2 0 14501172 04795061 -averell_harriman n 1 1 @ 1 0 11030025 -averment n 1 3 @ ~ + 1 0 06729499 -averrhoa n 1 2 @ #m 1 0 12704191 -averrhoa_bilimbi n 1 1 @ 1 0 12704513 -averrhoa_carambola n 1 2 @ %p 1 0 12704343 -averroes n 1 1 @ 1 0 10829450 -aversion n 2 2 @ + 2 1 07502669 00204022 -aversion_therapy n 1 1 @ 1 0 00701491 -aversive_conditioning n 1 1 @ 1 0 05758907 -aversive_stimulus n 1 1 @ 1 0 05832113 -averting n 2 1 @ 2 0 01077738 00204022 -aves n 1 4 @ #m %m ; 1 0 01502262 -avesta n 1 2 @ + 1 0 06430996 -avestan n 2 2 @ + 2 0 06973941 06352301 -aviary n 1 1 @ 1 1 02763604 -aviation n 4 5 @ ~ + ; - 4 1 08433727 08067218 05635188 00300441 -aviation_medicine n 1 1 @ 1 0 06046037 -aviator n 1 3 @ ~ + 1 0 09826204 -aviatress n 1 1 @ 1 0 09826605 -aviatrix n 1 1 @ 1 0 09826605 -avicenna n 1 1 @ 1 0 10829733 -avicennia n 1 3 @ #m %m 1 0 12915230 -avicennia_marina n 1 2 @ #m 1 0 12915568 -avicennia_officinalis n 1 2 @ #m 1 0 12915811 -avicenniaceae n 1 2 @ #m 1 0 12915400 -avidity n 1 3 @ ~ + 1 0 07555184 -avidness n 1 3 @ ~ + 1 0 07555184 -avifauna n 1 2 @ + 1 0 07993643 -avignon n 1 2 @ #p 1 0 08934313 -avionics n 1 2 @ + 1 0 06097231 -avitaminosis n 1 3 @ ~ + 1 0 14198576 -avo n 1 2 @ #p 1 0 13690549 -avocado n 2 4 @ #m #p %p 2 1 07764847 11706761 -avocado_pear n 1 2 @ #p 1 0 07764847 -avocado_tree n 1 3 @ #m %p 1 0 11706761 -avocation n 1 3 @ ~ + 1 0 00432689 -avocet n 1 2 @ #m 1 0 02036711 -avogadro n 1 1 @ 1 0 10830046 -avogadro's_hypothesis n 1 1 @ 1 0 05874941 -avogadro's_law n 1 1 @ 1 0 05874941 -avogadro's_number n 1 1 @ 1 0 13585819 -avogadro_number n 1 1 @ 1 0 13585819 -avoidance n 1 3 @ ~ + 1 1 00203753 -avoirdupois n 2 3 @ ~ %p 2 0 13715921 04999401 -avoirdupois_unit n 1 3 @ ~ #p 1 0 13716084 -avoirdupois_weight n 1 2 @ %p 1 0 13715921 -avon n 3 2 @ #p 3 0 09212151 09211944 08881153 -avouchment n 1 2 @ ~ 1 0 06732350 -avowal n 1 3 @ ~ + 1 0 06732350 -avower n 2 3 @ ~ + 2 0 09826698 09814660 -avulsion n 2 2 @ + 2 0 07297376 00384658 -awakening n 1 3 @ ~ + 1 1 01259773 -award n 3 4 @ ~ + ; 3 3 00087663 06696483 13268146 -awarding n 1 3 @ ~ ; 1 1 00087663 -awareness n 2 4 @ ~ = + 2 2 05675905 05677952 -away_game n 1 2 ! @ 1 0 00456690 -awayness n 1 2 @ + 1 0 13961273 -awe n 2 2 @ + 2 1 07510184 07521039 -awfulness n 1 3 @ ~ + 1 1 04782116 -awkwardness n 5 4 ! @ ~ + 5 0 05648459 05162807 05004294 04815624 04711665 -awl n 1 3 @ ~ %p 1 0 02763714 -awlwort n 1 2 @ #m 1 0 11898271 -awn n 1 2 @ + 1 0 13090743 -awning n 1 1 @ 1 0 02763901 -awning_deck n 1 2 @ #p 1 0 03549732 -awnless_bromegrass n 1 1 @ 1 0 12111043 -awol n 1 2 @ + 1 0 09757836 -ax n 1 4 @ ~ %p + 1 1 02764044 -ax_handle n 1 2 @ #p 1 0 02764398 -ax_head n 1 2 @ #p 1 0 02764505 -axe n 1 4 @ ~ %p + 1 1 02764044 -axe_handle n 1 2 @ #p 1 0 02764398 -axe_head n 1 2 @ #p 1 0 02764505 -axerophthol n 1 2 @ ~ 1 0 15089803 -axial_motion n 1 2 @ ~ 1 0 07441619 -axial_muscle n 1 1 @ 1 0 05587531 -axial_rotation n 1 2 @ ~ 1 0 07441619 -axial_skeleton n 1 3 @ #p %p 1 0 05587288 -axil n 1 2 @ + 1 0 13130423 -axile_placentation n 1 1 @ 1 0 11681393 -axilla n 1 4 @ #p %p + 1 0 05549576 -axillary_artery n 1 2 @ #p 1 0 05338166 -axillary_cavity n 1 3 @ #p %p 1 0 05549576 -axillary_fossa n 1 3 @ #p %p 1 0 05549576 -axillary_node n 1 1 @ 1 0 05430300 -axillary_vein n 1 1 @ 1 0 05358345 -axiology n 1 2 @ + 1 0 06161606 -axiom n 2 4 @ ~ + ; 2 1 07152948 06753550 -axis n 6 4 @ ~ %p + 6 1 06008609 13128771 08171792 08171094 05588840 02764614 -axis_of_rotation n 1 2 @ ~ 1 0 02764614 -axis_vertebra n 1 2 @ %p 1 0 05588840 -axle n 1 3 @ ~ #p 1 1 02764779 -axle_bar n 1 1 @ 1 0 02764935 -axle_grease n 1 1 @ 1 0 14770146 -axletree n 1 3 @ ~ #p 1 0 02765028 -axolemma n 1 2 @ #p 1 0 05286167 -axolotl n 1 1 @ 1 0 01632777 -axon n 1 4 @ #p %p + 1 0 05468849 -axone n 1 3 @ #p %p 1 0 05468849 -axseed n 1 2 @ #m 1 0 12519089 -ayah n 1 2 @ ; 1 0 09826821 -ayapana n 1 2 @ #m 1 0 11937692 -ayapana_triplinervis n 1 2 @ #m 1 0 11937692 -ayatollah n 1 2 @ ; 1 0 09826945 -ayatollah_khomeini n 1 1 @ 1 0 11104008 -ayatollah_ruholla_khomeini n 1 1 @ 1 0 11104008 -aye-aye n 1 2 @ #m 1 0 02498153 -ayin n 1 2 @ #m 1 0 06838329 -ayn_rand n 1 1 @ 1 0 11253630 -ayr n 1 1 @ 1 0 08892327 -ayrshire n 1 1 @ 1 0 02406432 -aythya n 1 3 @ #m %m 1 0 01850676 -aythya_affinis n 1 1 @ 1 0 01851731 -aythya_americana n 1 2 @ #m 1 0 01851207 -aythya_ferina n 1 2 @ #m 1 0 01851038 -aythya_marila n 1 1 @ 1 0 01851573 -aythya_valisineria n 1 2 @ #m 1 0 01850873 -ayurveda n 1 2 @ ; 1 0 06466030 -az n 2 3 @ #p %p 2 0 13893502 09057311 -az_zarqa n 1 2 @ #p 1 0 08928083 -azactam n 1 2 @ ; 1 0 02765868 -azadirachta n 1 3 @ #m %m 1 0 12696322 -azadirachta_indica n 1 3 @ #m %p 1 0 12696492 -azadirachtin n 1 2 @ #s 1 0 14739271 -azalea n 1 2 @ #m 1 0 12245319 -azaleastrum n 1 3 @ #m %m 1 0 12245067 -azathioprine n 1 1 @ 1 0 02765247 -azedarach n 1 2 @ #m 1 0 12695975 -azederach n 1 2 @ #m 1 0 12695975 -azerbaijan n 1 5 @ #m #p %p - 1 0 09018162 -azerbaijani n 2 2 @ + 2 0 09735542 06927007 -azerbaijani_monetary_unit n 1 2 @ ~ 1 0 13699612 -azerbaijani_republic n 1 5 @ #m #p %p - 1 0 09018162 -azerbajdzhan n 1 5 @ #m #p %p - 1 0 09018162 -azerbajdzhan_republic n 1 5 @ #m #p %p - 1 0 09018162 -azeri n 1 1 @ 1 0 08483265 -azide n 1 2 @ ~ 1 0 14770248 -azido_group n 1 1 @ 1 0 14621194 -azido_radical n 1 1 @ 1 0 14621194 -azimuth n 1 2 @ + 1 1 13893502 -azithromycin n 1 1 @ 1 0 02765656 -azo_dye n 1 2 @ ~ 1 0 14770500 -azo_group n 1 1 @ 1 0 14621319 -azo_radical n 1 1 @ 1 0 14621319 -azoimide n 1 2 @ %s 1 0 14612764 -azolla n 1 3 @ #m %m 1 0 12959371 -azolla_caroliniana n 1 2 @ #m 1 0 12959538 -azollaceae n 1 2 @ #m 1 0 12959226 -azores n 1 2 @ #p 1 0 08985345 -azotaemia n 1 1 @ 1 0 14210971 -azote n 1 2 @ + 1 0 14647623 -azotemia n 1 2 @ + 1 0 14210971 -azoturia n 1 1 @ 1 0 14211212 -azt n 1 1 @ 1 0 02765429 -aztec n 1 1 @ 1 0 09648911 -aztec_lily n 1 2 @ #m 1 0 12422559 -aztec_marigold n 1 1 @ 1 0 12020736 -aztecan n 1 1 @ 1 0 06918734 -aztreonam n 1 1 @ 1 0 02765868 -azure n 1 2 @ + 1 0 04969242 -azure_aster n 1 1 @ 1 0 11935877 -azurite n 1 1 @ 1 0 14667855 -azygos_vein n 1 1 @ 1 0 05358507 -azygous_vein n 1 1 @ 1 0 05358507 -azymia n 1 1 @ 1 0 14110146 -b n 7 5 @ ~ #m #s ; 7 1 01349948 15090742 14631871 13713521 13614256 06831284 05400978 -b-52 n 1 2 @ ; 1 1 02766044 -b-complex_vitamin n 1 2 @ ~ 1 0 15090742 -b-flat_clarinet n 1 1 @ 1 0 02834027 -b-girl n 1 1 @ 1 0 09852430 -b-horizon n 1 1 @ 1 0 08658612 -b-meson n 1 1 @ 1 0 09224828 -b-scan_ultrasonography n 1 1 @ 1 0 00902240 -b._b._king n 1 1 @ 1 0 11105298 -b._f._skinner n 1 1 @ 1 0 11304461 -b.o. n 1 1 @ 1 0 04980920 -b.t.u. n 1 2 @ %p 1 0 13727478 -b.th.u. n 1 2 @ #p 1 0 13726947 -b_battery n 1 1 @ 1 0 02813981 -b_cell n 1 1 @ 1 0 05451695 -b_complex n 1 2 @ ~ 1 0 15090742 -b_horizon n 1 1 @ 1 0 08658612 -b_lymphocyte n 1 1 @ 1 0 05451695 -b_vitamin n 1 2 @ ~ 1 1 15090742 -ba n 2 3 @ ~ #s 2 0 14629998 06698640 -baa n 1 2 @ + 1 0 07376168 -baa-lamb n 1 1 @ 1 0 02412700 -baader-meinhof_gang n 1 2 @ ; 1 0 08017974 -baader_meinhof_gang n 1 2 @ ; 1 0 08017974 -baal n 1 1 @ 1 0 09516700 -baal_merodach n 1 2 @ ; 1 0 09519288 -baas n 1 1 @ 1 0 09827166 -baba n 1 2 @ ~ 1 0 07629797 -baba_au_rhum n 1 1 @ 1 0 07629898 -babacu_oil n 1 2 @ #s 1 0 12592971 -babar n 1 1 @ 1 0 09589748 -babassu n 1 3 @ #m %p 1 0 12592544 -babassu_nut n 1 3 @ #p %s 1 0 12592839 -babassu_oil n 1 2 @ #s 1 0 12592971 -babassu_palm n 1 3 @ #m %p 1 0 12592544 -babbitt n 1 2 @ + 1 0 14772007 -babbitt_metal n 1 1 @ 1 0 14772007 -babbitting n 1 1 @ 1 0 00827535 -babble n 1 2 @ + 1 0 06610143 -babbler n 2 3 @ #m + 2 0 09911570 01566645 -babbling n 1 2 @ + 1 0 06610143 -babe n 2 3 @ ~ ; 2 1 09827683 09827363 -babe_didrikson n 1 1 @ 1 0 11404666 -babe_ruth n 1 1 @ 1 0 11276100 -babe_zaharias n 1 1 @ 1 0 11404666 -babel n 2 3 @ #p ; 2 0 04460634 00379993 -babesiidae n 1 3 @ #m %m 1 0 01425336 -babies'-breath n 1 2 @ #m 1 0 11810358 -babies'_slippers n 1 2 @ #m 1 0 12545635 -babinski n 1 1 @ 1 0 00117267 -babinski_reflex n 1 1 @ 1 0 00117267 -babinski_sign n 1 1 @ 1 0 00117267 -babiroussa n 1 2 @ #m 1 0 02396796 -babirusa n 1 2 @ #m 1 0 02396796 -babirussa n 1 2 @ #m 1 0 02396796 -babka n 1 1 @ 1 0 07630667 -baboo n 1 1 @ 1 0 09827246 -baboon n 1 2 @ ~ 1 0 02486410 -babu n 1 1 @ 1 0 09827246 -babushka n 1 1 @ 1 0 02766168 -baby n 7 4 @ ~ + ; 7 2 09827683 09827519 09918554 09828216 09827363 01322221 00796767 -baby's_bed n 1 2 @ ~ 1 0 02766320 -baby's_breath n 1 2 @ #m 1 0 11810358 -baby's_dummy n 1 1 @ 1 0 03075768 -baby's_room n 1 2 @ ~ 1 0 03836062 -baby's_tears n 1 2 @ #m 1 0 12393723 -baby-boom_generation n 1 2 @ %m 1 0 08371838 -baby-sitter n 1 2 @ + 1 0 09829305 -baby-walker n 1 1 @ 1 0 04545305 -baby_bed n 1 2 @ ~ 1 0 02766320 -baby_bird n 1 1 @ 1 0 01504344 -baby_blue-eyes n 1 2 @ #m 1 0 12836337 -baby_boom n 1 2 @ %m 1 0 08371838 -baby_boomer n 1 2 @ #m 1 0 09828403 -baby_buggy n 1 2 @ ~ 1 0 02766534 -baby_buster n 1 1 @ 1 0 09828600 -baby_carriage n 1 2 @ ~ 1 0 02766534 -baby_doc n 1 1 @ 1 0 10946750 -baby_doctor n 1 2 @ ~ 1 0 09828760 -baby_farmer n 1 1 @ 1 0 09828988 -baby_grand n 1 1 @ 1 0 02766792 -baby_grand_piano n 1 1 @ 1 0 02766792 -baby_minder n 1 1 @ 1 0 09829122 -baby_oil n 1 1 @ 1 0 02766961 -baby_powder n 1 1 @ 1 0 02767038 -baby_rose n 1 1 @ 1 0 12622072 -baby_shoe n 1 1 @ 1 0 02767147 -baby_sitting n 1 1 @ 1 0 00655727 -baby_talk n 2 1 @ 2 0 07155531 07155426 -baby_tears n 1 2 @ #m 1 0 12393723 -baby_tooth n 1 2 @ #p 1 0 05306894 -babyhood n 2 3 @ %p + 2 0 15145586 14427239 -babylon n 1 6 @ #p %p + ; - 1 0 08916832 -babylonia n 1 5 @ #p %p ; - 1 0 08917503 -babylonian n 2 3 @ ~ ; 2 1 09640220 06352446 -babylonian_captivity n 1 1 @ 1 0 00208141 -babylonian_weeping_willow n 1 2 @ #m 1 0 12726670 -babyminder n 1 1 @ 1 0 09829122 -babyrousa n 1 3 @ #m %m 1 0 02396667 -babyrousa_babyrussa n 1 2 @ #m 1 0 02396796 -babysitter n 1 2 @ + 1 0 09829305 -babysitting n 1 1 @ 1 0 00655727 -babytalk n 2 1 @ 2 0 07155531 07155426 -bacca n 1 1 @ 1 0 13137951 -baccalaureate n 2 3 @ ~ #p 2 0 07244154 06698252 -baccarat n 1 1 @ 1 0 00489933 -bacchanal n 3 2 @ + 3 0 10526300 09829798 00511212 -bacchanalia n 2 1 @ 2 0 00511676 00511212 -bacchant n 3 3 @ + ; 3 0 10526300 09829798 09829506 -bacchante n 1 2 @ ; 1 0 09829650 -baccharis n 1 3 @ #m %m 1 0 11937965 -baccharis_halimifolia n 1 2 @ #m 1 0 11938261 -baccharis_pilularis n 1 2 @ #m 1 0 11938732 -baccharis_viminea n 1 2 @ #m 1 0 11938556 -bacchus n 1 2 @ ; 1 0 09559404 -baccy n 1 3 @ ~ %s 1 0 04442831 -bach n 2 1 @ 2 0 10830229 07277915 -bachelor n 2 2 @ + 2 1 09829923 10238749 -bachelor's_button n 2 2 @ #m 2 0 11947802 11826198 -bachelor's_degree n 1 2 @ ~ 1 0 06698252 -bachelor-at-arms n 1 1 @ 1 0 10238749 -bachelor_girl n 1 1 @ 1 0 09830080 -bachelor_of_arts n 1 1 @ 1 0 06698640 -bachelor_of_arts_in_library_science n 1 1 @ 1 0 06698775 -bachelor_of_arts_in_nursing n 1 1 @ 1 0 06698902 -bachelor_of_divinity n 1 1 @ 1 0 06699012 -bachelor_of_laws n 1 1 @ 1 0 06704898 -bachelor_of_literature n 1 1 @ 1 0 06699115 -bachelor_of_medicine n 1 2 @ ; 1 0 06699225 -bachelor_of_music n 1 1 @ 1 0 06699366 -bachelor_of_naval_science n 1 1 @ 1 0 06699465 -bachelor_of_science n 1 1 @ 1 1 06699579 -bachelor_of_science_in_architecture n 1 1 @ 1 0 06699685 -bachelor_of_science_in_engineering n 1 1 @ 1 0 06699811 -bachelor_of_theology n 1 1 @ 1 0 06699926 -bachelor_party n 1 1 @ 1 0 08255660 -bachelorette n 1 1 @ 1 0 09830080 -bachelorhood n 2 2 @ + 2 0 15153353 13967715 -bacillaceae n 1 3 @ #m %m 1 0 01356459 -bacillariophyceae n 1 3 @ #m %m 1 0 01400891 -bacillary_dysentery n 1 1 @ 1 0 14184608 -bacillary_white_diarrhea n 1 1 @ 1 0 14275077 -bacillary_white_diarrhoea n 1 1 @ 1 0 14275077 -bacillus n 1 4 @ ~ #m + 1 0 01349948 -bacillus_anthracis n 1 1 @ 1 0 01350226 -bacillus_globigii n 1 1 @ 1 0 01350485 -bacillus_subtilis n 1 1 @ 1 0 01350485 -bacitracin n 1 1 @ 1 0 02767240 -back n 9 8 ! @ ~ #m #p %p + ; 9 3 05558717 04059701 08625846 09830194 05588174 02840619 02767665 02767433 00725775 -back-blast n 1 1 @ 1 0 07408519 -back-formation n 1 1 @ 1 0 06288350 -back-number n 1 1 @ 1 0 10161521 -back_brace n 1 1 @ 1 1 02768655 -back_breaker n 1 1 @ 1 0 02675657 -back_burner n 1 2 ! @ 1 0 13950143 -back_channel n 1 1 @ 1 0 06260817 -back_circle n 1 1 @ 1 1 00434396 -back_country n 1 1 @ 1 1 08502672 -back_door n 3 1 @ 3 1 00281291 06354481 02768744 -back_end n 1 2 @ ~ 1 0 08629508 -back_entrance n 1 1 @ 1 0 02768744 -back_exercise n 1 1 @ 1 0 00629803 -back_judge n 1 1 @ 1 0 09830553 -back_matter n 1 2 @ %p 1 0 06390805 -back_of_beyond n 1 1 @ 1 0 08499680 -back_pack n 1 2 @ ~ 1 0 02769748 -back_porch n 1 1 @ 1 1 02770211 -back_room n 1 1 @ 1 0 02770293 -back_saw n 1 1 @ 1 0 02770585 -back_street n 1 1 @ 1 0 02697759 -back_talk n 1 1 @ 1 0 06721949 -back_tooth n 1 1 @ 1 1 05306476 -backache n 1 2 @ ~ 1 0 14325335 -backband n 1 1 @ 1 0 02767815 -backbeat n 1 3 @ #p ; 1 0 07086861 -backbench n 1 3 @ + ; 1 0 02767956 -backbencher n 1 3 @ + ; 1 0 09830400 -backbend n 1 1 @ 1 1 00434231 -backbiter n 1 2 @ + 1 0 09999135 -backblast n 1 1 @ 1 0 07408519 -backboard n 2 2 @ ; 2 0 02768226 02768114 -backbone n 5 5 @ ~ #p %p ; 5 2 05694232 05032351 05588174 04277980 02768433 -backchat n 1 2 @ ~ 1 0 06777794 -backcloth n 1 1 @ 1 0 02768864 -backdoor n 3 1 @ 3 0 06354481 02768744 00281291 -backdown n 1 2 @ + 1 0 07206302 -backdrop n 1 1 @ 1 1 02768864 -backer n 1 2 @ + 1 1 09793717 -backfield n 1 3 @ #m %m 1 0 08429744 -backfire n 4 3 @ ~ + 4 0 07408965 07408621 07303153 00073032 -backflow n 1 2 @ ~ 1 0 07406350 -backflowing n 1 2 @ ~ 1 0 07406350 -backgammon n 1 1 @ 1 0 00502822 -backgammon_board n 1 1 @ 1 0 02768973 -background n 8 4 @ ~ + ; 8 6 04921417 05933834 05823517 07430480 07285191 14513259 02769075 02768864 -background_knowledge n 1 1 @ 1 0 05823517 -background_level n 1 1 @ 1 0 05098620 -background_noise n 1 2 @ ~ 1 0 07430770 -background_processing n 1 1 @ 1 0 13436992 -background_radiation n 1 1 @ 1 0 07431119 -background_signal n 1 2 @ ~ 1 0 07430480 -backgrounder n 1 2 @ + 1 0 07144571 -backgrounding n 1 1 @ 1 0 13436992 -backhand n 1 3 @ ~ + 1 0 00566690 -backhand_drive n 1 1 @ 1 0 00568057 -backhand_shot n 1 2 @ ~ 1 0 00566690 -backhand_stroke n 1 2 @ ~ 1 0 00566690 -backhander n 1 1 @ 1 0 00133160 -backhoe n 1 2 @ %p 1 0 02769290 -backing n 3 3 @ #p + 3 2 01213886 02769460 13365698 -backlash n 2 3 @ ~ + 2 0 07350192 00203020 -backlighting n 1 1 @ 1 0 02769669 -backlog n 3 3 @ ~ + 3 1 07953603 15100945 13368052 -backpack n 1 3 @ ~ + 1 0 02769748 -backpacker n 1 2 @ + 1 0 09830629 -backpacking n 1 1 @ 1 0 00319312 -backpacking_tent n 1 1 @ 1 0 02769963 -backplate n 1 2 @ #p 1 0 02770078 -backrest n 1 3 @ ~ #p 1 0 02767433 -backroom n 1 1 @ 1 0 02770441 -backroom_boy n 1 1 @ 1 0 09830759 -backsaw n 1 1 @ 1 0 02770585 -backscratcher n 2 1 @ 2 0 09830926 02770721 -backseat n 2 3 @ ~ ; 2 0 13951629 02770830 -backseat_driver n 1 1 @ 1 0 09831057 -backsheesh n 1 2 @ ~ 1 0 13298701 -backside n 2 3 @ ~ #p 2 0 08629508 05559256 -backslapper n 1 2 @ + 1 0 09831166 -backslider n 1 2 @ + 1 0 10511239 -backsliding n 1 2 @ ~ 1 0 00068333 -backspace n 1 2 @ #p 1 0 02771004 -backspace_character n 1 1 @ 1 0 06820837 -backspace_key n 1 2 @ #p 1 0 02771004 -backspacer n 1 3 @ #p + 1 0 02771004 -backspin n 1 1 @ 1 0 07442439 -backstage n 1 1 @ 1 1 04592962 -backstairs n 1 2 @ ; 1 0 02771166 -backstay n 1 1 @ 1 0 02771286 -backstitch n 1 2 @ + 1 0 02771383 -backstop n 3 3 @ + ; 3 0 09901143 02771547 00177638 -backstroke n 1 2 @ %p 1 0 00571283 -backstroker n 1 2 @ + 1 0 09831303 -backswimmer n 1 2 @ #m 1 0 02241008 -backsword n 2 1 @ 2 0 04223170 02771750 -backtalk n 1 1 @ 1 0 06721949 -backup n 5 4 @ ~ + ; 5 0 13437181 10648237 07031752 02771840 01213886 -backup_file n 1 2 @ ; 1 0 06509513 -backup_man n 1 2 @ ~ 1 0 10648237 -backup_system n 1 1 @ 1 0 02772101 -backwardness n 1 3 @ ~ + 1 0 05646218 -backwash n 3 1 @ 3 0 11423197 11411610 07344368 -backwater n 2 1 @ 2 0 09212360 08502507 -backwoods n 1 1 @ 1 1 08502672 -backwoodsman n 1 2 @ ~ 1 0 10113072 -backyard n 1 1 @ 1 1 02772197 -bacon n 3 3 @ ~ %p 3 1 07670433 10830731 10830456 -bacon-lettuce-tomato_sandwich n 1 1 @ 1 0 07698401 -bacon_and_eggs n 2 2 @ #m 2 0 12545635 07862244 -bacon_rind n 1 2 @ #p 1 0 07670902 -bacon_strip n 1 1 @ 1 0 07670657 -bacteremia n 1 3 @ + ; 1 0 14110219 -bacteria n 1 5 @ ~ + ; - 1 1 01348530 -bacteria_bed n 1 1 @ 1 0 02772282 -bacteria_family n 1 3 @ ~ #m 1 0 01352059 -bacteria_genus n 1 3 @ ~ #m 1 0 01352574 -bacteria_order n 1 2 @ #m 1 0 01351959 -bacteria_species n 1 3 @ ~ #m 1 0 01353411 -bacteriacide n 1 1 @ 1 0 14772185 -bacteriaemia n 1 2 @ ; 1 0 14110219 -bacterial_plaque n 1 1 @ 1 0 05244755 -bacterial_toxin n 1 2 @ ~ 1 0 15034939 -bactericide n 2 3 @ ~ + 2 0 14772185 02716205 -bacteriemia n 1 2 @ ; 1 0 14110219 -bacteriochlorophyll n 1 1 @ 1 0 01399065 -bacteriological_warfare n 1 1 @ 1 0 00996056 -bacteriologist n 1 3 @ ~ + 1 0 09831411 -bacteriology n 1 3 @ + - 1 0 06046692 -bacteriolysis n 1 2 @ + 1 0 13437379 -bacteriophage n 1 3 @ ~ + 1 0 01334862 -bacteriostasis n 1 2 @ + 1 0 13437495 -bacteriostat n 1 1 @ 1 0 14779082 -bacterium n 1 5 @ ~ + ; - 1 0 01348530 -bacteroid n 1 2 @ + 1 0 01349735 -bacteroidaceae n 1 3 @ #m %m 1 0 01364587 -bacteroides n 1 2 @ #m 1 0 01364866 -bactrian_camel n 1 1 @ 1 0 02437482 -bad n 1 3 ! @ ~ 1 1 05144079 -bad_block n 1 2 @ ; 1 0 13626789 -bad_blood n 1 1 @ 1 0 07548100 -bad_check n 1 1 @ 1 0 13382121 -bad_cheque n 1 1 @ 1 0 13382121 -bad_debt n 1 1 @ 1 0 13398768 -bad_egg n 1 3 ! @ ; 1 0 09831731 -bad_fairy n 1 1 @ 1 0 09542170 -bad_guy n 1 2 ! @ 1 1 09831856 -bad_hat n 1 2 @ ~ 1 1 10731244 -bad_lands n 1 2 @ #p 1 0 08502797 -bad_luck n 3 3 ! @ ~ 3 3 14475405 11427842 07304852 -bad_manners n 1 1 @ 1 0 04914881 -bad_person n 1 3 ! @ ~ 1 0 09831962 -bad_temper n 1 2 @ ~ 1 0 07518132 -bad_weather n 1 3 ! @ ~ 1 1 14523090 -badaga n 2 1 @ 2 0 09674307 06979853 -baddeleyite n 1 2 @ %s 1 0 14667949 -baddie n 1 2 @ ; 1 0 10753779 -bade n 1 1 @ 1 0 06983225 -badge n 2 3 @ ~ + 2 2 06882561 05851131 -badger n 2 2 @ ~ 2 0 09746536 02447366 -badger_dog n 1 2 @ ~ 1 0 02089232 -badger_skunk n 1 2 @ #m 1 0 02446645 -badger_state n 1 3 @ #p %p 1 0 09157163 -badgerer n 1 2 @ + 1 0 10167565 -badgering n 1 1 @ 1 0 00425278 -badinage n 1 1 @ 1 0 06777961 -badlands n 2 4 @ ~ #p ; 2 0 09212572 08502797 -badlands_national_park n 1 2 @ #p 1 0 08602456 -badminton n 1 3 @ ~ - 1 0 00480508 -badminton_court n 1 2 @ ; 1 0 02772435 -badminton_equipment n 1 3 @ ~ ; 1 0 02772554 -badminton_racket n 1 2 @ ; 1 0 02772700 -badminton_racquet n 1 2 @ ; 1 0 02772700 -badness n 3 4 ! @ ~ + 3 1 05144079 05036715 04909563 -baeda n 1 2 @ ; 1 0 10840769 -baedeker n 2 1 @ 2 0 10831003 06423233 -baffin_bay n 1 1 @ 1 0 09212690 -baffin_island n 1 2 @ #p 1 1 08819683 -baffle n 1 3 @ ~ + 1 0 02772868 -baffle_board n 1 2 @ ~ 1 0 02772868 -baffled n 1 1 @ 1 1 07944242 -bafflement n 1 2 @ + 1 0 05685030 -bag n 9 5 @ ~ #p %p + 9 6 02773037 13754778 02797881 02774152 13764639 02773838 09832321 02370360 00432881 -bag_lady n 1 1 @ 1 0 09832633 -bag_of_tricks n 1 1 @ 1 1 05616955 -bagascosis n 1 1 @ 1 0 14260774 -bagasse n 1 1 @ 1 0 14772317 -bagassosis n 1 1 @ 1 0 14260774 -bagatelle n 3 2 @ ; 3 0 07042498 02774502 00501479 -bagdad n 1 2 @ #p 1 0 08914193 -bagel n 1 3 @ ~ ; 1 0 07693725 -bagful n 1 1 @ 1 0 13764639 -baggage n 3 3 @ ~ %p 3 1 02774630 09832456 02774921 -baggage_car n 1 2 @ #m 1 0 02775039 -baggage_claim n 1 1 @ 1 0 02775178 -baggageman n 1 1 @ 1 0 09832538 -bagger n 2 2 @ + 2 0 10390427 02775359 -bagging n 1 4 @ ~ %s + 1 0 04123567 -baghdad n 1 2 @ #p 1 0 08914193 -bagman n 2 2 @ ~ 2 0 10726786 09832762 -bagnio n 2 2 @ ~ 2 0 04581595 02806875 -bagpipe n 1 3 @ ~ %p 1 1 02775483 -bagpiper n 1 2 @ ~ 1 0 10435041 -baguet n 1 1 @ 1 0 07687381 -baguette n 1 1 @ 1 0 07687381 -bahai n 1 1 @ 1 0 09832873 -bahaism n 1 1 @ 1 0 06244552 -bahama_grass n 1 2 @ #m 1 0 12115748 -bahama_islands n 1 5 @ #m #p %m %p 1 0 08847268 -bahamas n 1 6 @ #m #p %m %p + 1 0 08847268 -bahamian n 1 3 @ #m + 1 0 09691729 -bahamian_dollar n 1 1 @ 1 0 13672077 -bahasa n 1 2 @ ~ 1 0 06939198 -bahasa_indonesia n 1 2 @ ~ 1 0 06939198 -bahasa_kebangsaan n 1 1 @ 1 0 06939051 -bahasa_malaysia n 1 1 @ 1 0 06939051 -bahasa_melayu n 1 1 @ 1 0 06939051 -bahia_blanca n 1 1 @ 1 0 08712698 -bahia_coquilla n 1 3 @ #m %p 1 0 12585137 -bahia_grass n 1 2 @ #m 1 0 12128306 -bahia_piassava n 1 3 @ #m %p 1 0 12585137 -bahrain n 2 5 @ #m #p %m %p 2 0 08848421 08848094 -bahrain_dinar n 1 2 @ %p 1 0 13668864 -bahrain_island n 1 2 @ #p 1 0 08848421 -bahraini n 1 3 @ #m + 1 0 09691858 -bahrainian_monetary_unit n 1 2 @ ~ 1 0 13668751 -bahrein n 2 5 @ #m #p %m %p 2 0 08848421 08848094 -bahrein_island n 1 2 @ #p 1 0 08848421 -bahreini n 1 2 @ #m 1 0 09691858 -baht n 1 2 @ %p 1 0 13663820 -bai n 1 1 @ 1 0 06931605 -baic n 1 1 @ 1 0 06931605 -baikal n 1 2 @ #p 1 0 09242767 -bail n 2 3 @ + ; 2 0 13350976 05903445 -bail_bond n 1 2 @ ; 1 0 13350976 -bailee n 1 2 @ + 1 0 09832978 -bailey n 4 1 @ 4 0 10831363 10831136 02775813 02775689 -bailey_bridge n 1 1 @ 1 0 02775897 -bailiff n 1 2 @ + 1 0 09833111 -bailiffship n 1 2 @ + 1 0 00589318 -bailiwick n 2 2 @ ~ 2 0 08550664 05996646 -bailment n 1 2 @ + 1 0 01108971 -bailor n 1 2 @ + 1 0 09833275 -bain-marie n 1 1 @ 1 0 02776007 -baiomys n 1 3 @ #m %m 1 0 02337480 -baiomys_taylori n 1 2 @ #m 1 0 02337598 -bairava n 1 1 @ 1 0 09528919 -bairdiella n 1 3 @ #m %m 1 0 02595217 -bairdiella_chrysoura n 1 2 @ #m 1 0 02595339 -bairiki n 1 2 @ #p 1 0 08840964 -bairn n 1 2 @ ; 1 0 09833441 -baisa n 1 2 @ #p 1 0 13697262 -baisakh n 1 2 @ #p 1 0 15220027 -bait n 2 4 @ ~ #p + 2 1 05695232 02776205 -bait_and_switch n 1 1 @ 1 0 00091977 -bait_casting n 1 1 @ 1 0 00454855 -baiting n 1 1 @ 1 0 00425182 -baiza n 1 2 @ #p 1 0 13697262 -baize n 1 1 @ 1 0 02776505 -baja_california n 1 4 @ #p %p - 1 0 09343761 -bakeapple n 1 1 @ 1 0 12657294 -baked-apple_berry n 1 1 @ 1 0 12657294 -baked_alaska n 1 1 @ 1 0 07610620 -baked_egg n 1 1 @ 1 0 07842605 -baked_goods n 1 3 @ ~ %p 1 0 07622061 -baked_potato n 1 2 @ ~ 1 0 07710952 -bakehouse n 1 2 @ ~ 1 0 02776631 -bakelite n 1 2 @ ; 1 0 14596216 -baker n 2 2 @ + 2 0 09833651 09833536 -baker's_dozen n 1 1 @ 1 0 13747199 -baker's_eczema n 1 1 @ 1 0 14225215 -baker's_yeast n 1 2 @ #m 1 0 13025854 -bakersfield n 1 2 @ #p 1 0 09062320 -bakery n 1 2 @ ~ 1 0 02776631 -bakeshop n 1 2 @ ~ 1 0 02776631 -baking n 2 3 @ ~ + 2 0 00715843 00246341 -baking-powder_biscuit n 1 2 @ ~ 1 0 07694403 -baking_chocolate n 1 1 @ 1 0 07602279 -baking_powder n 1 1 @ 1 0 14772461 -baking_soda n 1 1 @ 1 0 14775995 -baking_tray n 1 2 @ ; 1 0 03101796 -bakke_decision n 1 2 @ ; 1 0 01191364 -baklava n 1 1 @ 1 0 07627790 -baksheesh n 1 2 @ ~ 1 0 13298701 -bakshis n 1 2 @ ~ 1 0 13298701 -bakshish n 1 2 @ ~ 1 0 13298701 -baku n 1 2 @ #p 1 0 09018426 -bakunin n 1 1 @ 1 0 10831483 -balaclava n 1 1 @ 1 0 02776825 -balaclava_helmet n 1 1 @ 1 0 02776825 -balaena n 1 3 @ #m %m 1 0 02063846 -balaena_mysticetus n 1 2 @ #m 1 0 02064000 -balaeniceps n 1 3 @ #m %m 1 0 02005238 -balaeniceps_rex n 1 2 @ #m 1 0 02005399 -balaenicipitidae n 1 3 @ #m %m 1 0 02005102 -balaenidae n 1 3 @ #m %m 1 0 02063516 -balaenoptera n 1 3 @ #m %m 1 0 02064608 -balaenoptera_acutorostrata n 1 2 @ #m 1 0 02065407 -balaenoptera_borealis n 1 2 @ #m 1 0 02065263 -balaenoptera_musculus n 1 2 @ #m 1 0 02064816 -balaenoptera_physalus n 1 2 @ #m 1 0 02065026 -balaenopteridae n 1 3 @ #m %m 1 0 02064154 -balagan n 1 2 @ ; 1 0 13976527 -balalaika n 1 1 @ 1 0 02776978 -balance n 12 6 ! @ ~ #p + ; 12 3 14002279 13408980 05076827 13897996 13810818 13409160 09753065 08687150 05064827 03118539 02777402 02777100 -balance-of-payments_problem n 1 1 @ 1 0 14411079 -balance_beam n 1 1 @ 1 0 02777292 -balance_of_international_payments n 1 2 @ %p 1 1 13410458 -balance_of_payments n 1 2 @ %p 1 1 13410458 -balance_of_power n 1 1 @ 1 1 14002813 -balance_of_trade n 1 1 @ 1 0 13409363 -balance_sheet n 1 1 @ 1 1 13403964 -balance_wheel n 1 2 @ #p 1 0 02777402 -balanced_budget n 1 1 @ 1 0 13421702 -balanced_diet n 1 1 @ 1 0 07561848 -balancer n 2 3 @ #p + 2 0 09833751 02152212 -balanchine n 1 1 @ 1 0 10831656 -balancing n 1 1 @ 1 0 00185104 -balanidae n 1 3 @ #m %m 1 0 01998467 -balanitis n 1 1 @ 1 0 14260898 -balanoposthitis n 1 1 @ 1 0 14260991 -balanus n 1 3 @ #m %m 1 0 01998599 -balanus_balanoides n 1 2 @ #m 1 0 01998741 -balarama n 1 1 @ 1 0 09531409 -balas n 1 1 @ 1 0 15051392 -balas_ruby n 1 1 @ 1 0 15051392 -balata n 2 3 @ #s %s 2 0 12774496 12774299 -balata_tree n 1 2 @ %s 1 0 12774299 -balaton n 1 2 @ #p 1 0 09212935 -balboa n 2 2 @ %p 2 0 13664153 10831860 -balbriggan n 1 1 @ 1 0 02777638 -balcony n 2 3 @ ~ %p 2 0 02777927 02777734 -bald-faced_hornet n 1 1 @ 1 0 02213663 -bald_cypress n 2 2 @ #m 2 0 11642243 11641963 -bald_eagle n 1 2 @ #m 1 0 01614925 -baldachin n 1 1 @ 1 0 02778131 -balder n 1 2 @ ; 1 0 09579491 -balderdash n 1 1 @ 1 0 06608143 -baldhead n 1 1 @ 1 0 09833896 -baldness n 1 3 @ ~ + 1 0 14457041 -baldpate n 2 1 @ 2 0 09833896 01848840 -baldr n 1 2 @ ; 1 0 09579491 -baldric n 1 1 @ 1 0 02778294 -baldrick n 1 1 @ 1 0 02778294 -baldwin n 3 1 @ 3 0 10832251 10832085 07739923 -baldy n 1 1 @ 1 0 09833896 -bale n 2 4 @ ~ #p + 2 1 02778456 09032483 -balearic_islands n 1 3 @ #p %p 1 0 09024668 -baleen n 1 1 @ 1 0 14758252 -baleen_whale n 1 3 @ ~ #m 1 0 02063224 -balefire n 1 1 @ 1 0 07303335 -balefulness n 1 3 @ = + 1 0 04846533 -balenciaga n 1 1 @ 1 0 10832415 -balfour n 1 1 @ 1 0 10832568 -bali n 1 3 @ #m #p 1 1 08908509 -balibago n 1 1 @ 1 0 12180168 -balinese n 1 1 @ 1 1 06939656 -baling_wire n 1 1 @ 1 0 02778588 -balistes n 1 3 @ #m %m 1 0 02653359 -balistes_vetula n 1 2 @ #m 1 0 02653497 -balistidae n 1 3 @ #m %m 1 0 02652979 -balk n 4 4 @ ~ #p + 4 0 08516080 05689249 04045644 00107279 -balkan n 1 2 @ #m 1 0 09709332 -balkan_country n 1 3 @ ~ #p 1 0 08698126 -balkan_mountain_range n 1 2 @ #p 1 0 09213076 -balkan_mountains n 1 2 @ #p 1 0 09213076 -balkan_nation n 1 3 @ ~ #p 1 0 08698126 -balkan_peninsula n 1 4 @ #p %m %p 1 0 08713772 -balkan_state n 1 3 @ ~ #p 1 0 08698126 -balkan_wars n 1 4 @ #p %p ; 1 0 01302935 -balkans n 3 4 @ #p %m %p 3 0 09213076 08713772 08698038 -balker n 1 3 @ ~ + 1 0 09833997 -balkiness n 1 2 @ + 1 1 04908721 -balkline n 1 1 @ 1 0 08516260 -ball n 12 5 @ ~ #p %p + 12 6 02778669 03802228 13899404 08253268 05524615 02779435 10832731 07961016 07448885 05576194 00474568 00107400 -ball-and-socket_joint n 2 3 @ ~ %p 2 0 05595531 02779719 -ball-breaker n 2 1 @ 2 0 09834258 00720166 -ball-buster n 2 1 @ 2 0 09834258 00720166 -ball-peen_hammer n 1 1 @ 1 0 02783035 -ball_and_chain n 1 1 @ 1 0 02779609 -ball_bearing n 1 1 @ 1 0 02780315 -ball_boy n 1 1 @ 1 0 09834159 -ball_carrier n 1 3 @ ~ ; 1 0 09834378 -ball_cartridge n 1 1 @ 1 0 02780445 -ball_club n 1 2 @ #m 1 1 08079613 -ball_cock n 1 1 @ 1 0 02780588 -ball_fern n 1 2 @ #m 1 0 13188767 -ball_field n 1 3 @ #p %p 1 1 02780916 -ball_game n 1 4 @ ~ ; - 1 1 00471437 -ball_gown n 1 1 @ 1 0 02781121 -ball_hawk n 1 1 @ 1 0 09835230 -ball_hawking n 1 1 @ 1 0 00557865 -ball_nettle n 1 1 @ 1 0 12893993 -ball_nightshade n 1 1 @ 1 0 12893993 -ball_of_fire n 2 2 @ ~ 2 0 10462429 10135709 -ball_valve n 1 1 @ 1 0 02783459 -ballad n 2 3 @ ~ + 2 2 07049713 06378298 -ballad_maker n 1 2 @ ~ 1 0 10624540 -ballade n 1 1 @ 1 0 06378427 -balladeer n 1 3 @ ~ + 1 0 09980090 -ballast n 5 2 @ + 5 1 02779845 14699209 04691992 02780121 02779971 -ballast_resistor n 1 1 @ 1 1 02780121 -ballcock n 1 1 @ 1 0 02780588 -balldress n 1 2 @ ; 1 0 02780704 -ballerina n 1 2 @ ~ 1 1 09834592 -ballet n 2 5 @ ~ %p + - 2 2 00528667 07054336 -ballet_company n 1 2 @ %m 1 1 08187707 -ballet_dancer n 1 3 @ ~ #m 1 1 09834699 -ballet_master n 1 1 @ 1 0 09834885 -ballet_mistress n 1 1 @ 1 0 09835017 -ballet_position n 1 2 @ ~ 1 0 05080382 -ballet_skirt n 1 1 @ 1 0 02780815 -balletomane n 1 1 @ 1 1 09835153 -balletomania n 1 1 @ 1 0 05670615 -ballgame n 2 4 @ ~ ; - 2 0 13932739 00471437 -ballista n 1 1 @ 1 0 02981911 -ballistic_capsule n 1 3 @ ~ %p 1 0 04264914 -ballistic_fingerprinting n 1 1 @ 1 0 06423994 -ballistic_galvanometer n 1 1 @ 1 0 02781213 -ballistic_identification n 1 1 @ 1 0 06423994 -ballistic_missile n 1 2 @ ~ 1 1 02781338 -ballistic_missile_defense_organization n 1 2 @ #p 1 0 08395991 -ballistic_pendulum n 1 2 @ ~ 1 0 02781517 -ballistic_trajectory n 1 1 @ 1 0 11481487 -ballistics n 2 2 @ + 2 0 11481487 06114246 -ballistite n 1 2 @ %s 1 0 15016503 -ballistocardiogram n 1 2 @ #p 1 0 07003672 -ballistocardiograph n 1 2 @ #p 1 0 02781764 -ballock n 1 4 @ ~ #p %p 1 0 05524615 -balloon n 2 4 @ ~ %p + 2 2 02782093 02782329 -balloon_bomb n 1 1 @ 1 0 02782432 -balloon_flower n 1 2 @ #m 1 0 12887293 -balloon_sail n 1 1 @ 1 0 02782602 -balloon_seat n 1 1 @ 1 0 02826683 -balloon_vine n 1 1 @ 1 0 12743009 -balloonfish n 1 2 @ #m 1 0 02656032 -ballooning n 1 1 @ 1 0 00303221 -balloonist n 1 3 @ ~ + 1 0 09835348 -ballot n 2 3 @ ~ + 2 2 06470922 00183505 -ballot_box n 1 1 @ 1 0 02782681 -ballota n 1 3 @ #m %m 1 0 12841686 -ballota_nigra n 1 2 @ #m 1 0 12841872 -balloting n 1 2 @ ~ 1 0 00183505 -ballottement n 1 1 @ 1 0 00144182 -ballpark n 2 3 @ %p ; 2 1 02782778 05126066 -ballpen n 1 1 @ 1 0 02783161 -ballplayer n 1 3 @ ~ ; 1 1 09835506 -ballpoint n 1 1 @ 1 0 02783161 -ballpoint_pen n 1 1 @ 1 0 02783161 -ballroom n 1 2 @ ~ 1 1 02783324 -ballroom_dance n 1 2 @ ~ 1 0 00534849 -ballroom_dancing n 1 2 @ ~ 1 0 00534849 -ballroom_music n 1 1 @ 1 0 07060697 -balls-up n 1 2 @ ; 1 0 00075618 -ballup n 1 3 @ + ; 1 0 00075618 -ballyhoo n 1 2 @ + 1 1 07248507 -ballyhoo_artist n 1 1 @ 1 0 10579835 -balm n 2 5 @ ~ %s + ; 2 0 14896923 03845550 -balm_of_gilead n 3 2 @ #m 3 1 11621950 14897083 12692521 -balminess n 1 1 @ 1 0 14522570 -balmoral n 2 1 @ 2 0 02783708 02783567 -balmoral_castle n 1 2 @ #p 1 0 08892428 -balochi n 1 1 @ 1 0 06974687 -baloney n 1 2 @ ; 1 0 06611147 -balsa n 2 4 @ #m #s %s 2 0 12191813 12191587 -balsa_raft n 1 1 @ 1 0 02783900 -balsa_wood n 1 2 @ #s 1 0 12191813 -balsam n 3 5 @ ~ #s %s + 3 1 11552686 14896714 02783790 -balsam_apple n 1 2 @ #m 1 0 12167436 -balsam_capivi n 1 1 @ 1 0 14897620 -balsam_family n 1 3 @ #m %m 1 0 12683950 -balsam_fir n 1 1 @ 1 0 11621950 -balsam_herb n 1 3 @ #m %p 1 0 12021499 -balsam_of_peru n 1 2 @ #s 1 0 12551877 -balsam_of_tolu n 1 3 @ ~ #s 1 0 12551669 -balsam_pear n 1 2 @ #m 1 0 12167602 -balsam_poplar n 1 1 @ 1 0 12731835 -balsam_willow n 1 2 @ #m 1 0 12729950 -balsam_woolly_aphid n 1 2 @ #m 1 0 02254901 -balsaminaceae n 1 3 @ #m %m 1 0 12683950 -balsamorhiza n 1 3 @ #m %m 1 0 11938977 -balsamroot n 1 2 @ #m 1 0 11939180 -balthasar n 1 3 @ #m ; 1 0 10832908 -balthazar n 1 3 @ #m ; 1 0 10832908 -baltic n 2 4 @ ~ %p + 2 0 09213254 06945679 -baltic-finnic n 1 2 @ ~ 1 0 06957524 -baltic_language n 1 2 @ ~ 1 0 06945679 -baltic_republic n 1 3 @ ~ #p 1 0 09012101 -baltic_sea n 1 2 @ %p 1 0 09213254 -baltic_state n 1 3 @ ~ #p 1 0 09012101 -baltimore n 1 3 @ #p %p 1 1 09094381 -baltimore_bird n 1 1 @ 1 0 01572489 -baltimore_oriole n 1 1 @ 1 0 01572489 -balto-slavic n 1 2 @ ~ 1 0 06943558 -balto-slavic_language n 1 2 @ ~ 1 0 06943558 -balto-slavonic n 1 2 @ ~ 1 0 06943558 -baluchi n 1 1 @ 1 0 06974687 -baluster n 1 2 @ #p 1 0 02783994 -balusters n 1 3 @ #p %p 1 0 02788148 -balustrade n 1 3 @ #p %p 1 1 02788148 -balzac n 1 2 @ + 1 1 10833111 -bam n 2 3 @ ~ #p 2 0 08911726 07376257 -bamako n 1 2 @ #p 1 0 08965958 -bambino n 1 1 @ 1 0 10714465 -bamboo n 2 5 @ ~ #m #s %s 2 0 12147539 12147226 -bamboo_curtain n 1 1 @ 1 0 05692094 -bamboo_fern n 1 2 @ #m 1 0 13209808 -bamboo_palm n 2 1 @ 2 0 12596148 12595699 -bamboo_shoot n 1 2 @ #p 1 0 07719330 -bambusa n 1 3 @ #m %m 1 0 12147699 -bambusa_vulgaris n 1 3 @ #m %p 1 0 12147835 -bambuseae n 1 3 @ #m %m 1 0 12147031 -ban n 5 4 @ ~ #p + 5 1 06542047 13702315 13685578 07255401 06698902 -banality n 1 2 @ + 1 0 07154046 -banana n 2 4 @ ~ #m #p 2 2 12352287 07753592 -banana_boat n 1 1 @ 1 0 02784124 -banana_bread n 1 1 @ 1 0 07684938 -banana_family n 1 3 @ #m %m 1 0 12351975 -banana_oil n 1 1 @ 1 0 14772594 -banana_passion_fruit n 1 1 @ 1 0 12384569 -banana_peel n 1 1 @ 1 0 07738570 -banana_quit n 1 2 @ #m 1 0 01539272 -banana_republic n 1 1 @ 1 0 08503004 -banana_skin n 1 1 @ 1 0 07738570 -banana_split n 1 1 @ 1 0 07616748 -banana_tree n 1 3 @ ~ #m 1 0 12352287 -band n 13 5 @ ~ #p %p + 13 7 08240169 08249038 04680465 02784732 08249960 06260518 02784218 05267211 04092609 02785570 02785365 02785191 02784998 -band-tail_pigeon n 1 2 @ #m 1 0 01812866 -band-tailed_pigeon n 1 2 @ #m 1 0 01812866 -band_aid n 2 2 @ ; 2 0 02786058 00268457 -band_of_partisans n 1 2 @ ; 1 0 08017257 -band_saw n 1 1 @ 1 0 02786837 -bandage n 1 4 @ ~ %p + 1 1 02785648 -bandaging n 1 1 @ 1 0 00696882 -bandana n 1 1 @ 1 0 02786198 -bandanna n 1 1 @ 1 0 02786198 -bandbox n 1 1 @ 1 0 02786331 -bandeau n 1 3 @ ~ %p 1 0 02892767 -banded_adder n 1 1 @ 1 0 01751215 -banded_anteater n 1 2 @ #m 1 0 01885498 -banded_gecko n 1 2 @ #m 1 0 01675722 -banded_krait n 1 1 @ 1 0 01751215 -banded_palm_civet n 1 2 @ #m 1 0 02137302 -banded_purple n 1 2 @ #m 1 0 02276902 -banded_rattlesnake n 1 3 @ ~ #m 1 0 01755740 -banded_rudderfish n 1 2 @ #m 1 0 02579091 -banded_sand_snake n 1 1 @ 1 0 01738731 -banded_stilt n 1 2 @ #m 1 0 02036228 -banded_water_snake n 1 2 @ #m 1 0 01737472 -bandelet n 1 1 @ 1 0 02713835 -bandelette n 1 1 @ 1 0 02713835 -banderilla n 1 1 @ 1 0 02786463 -banderillero n 1 1 @ 1 0 09836343 -bandicoot n 1 3 @ ~ #m 1 0 01876326 -bandicoot_rat n 1 2 @ #m 1 0 02334201 -banding n 2 3 @ ~ #p 2 0 04680465 02784732 -bandit n 1 1 @ 1 1 09837088 -banditry n 1 1 @ 1 0 00966294 -bandleader n 1 2 @ ~ 1 0 09837201 -bandlet n 1 1 @ 1 0 02713835 -bandmaster n 1 2 @ ~ 1 0 09837360 -bandoleer n 1 1 @ 1 1 02786611 -bandolier n 1 1 @ 1 0 02786611 -bandoneon n 1 1 @ 1 0 02786736 -bandsaw n 1 1 @ 1 0 02786837 -bandsman n 1 2 @ ; 1 0 09837459 -bandstand n 1 1 @ 1 1 02786984 -bandtail n 1 2 @ #m 1 0 01812866 -bandung n 1 2 @ #p 1 0 08909933 -bandwagon n 2 1 @ 2 0 05751533 02787120 -bandwagon_effect n 1 1 @ 1 0 11411839 -bandwidth n 1 1 @ 1 1 13579510 -bandy_leg n 1 1 @ 1 0 05561834 -bandy_legs n 1 1 @ 1 0 14560253 -bandyleg n 1 1 @ 1 0 05561834 -bane n 1 1 @ 1 0 14445226 -baneberry n 2 5 @ ~ #m #p %p 2 0 11723986 11723770 -banff n 1 2 @ #p 1 0 08822427 -bang n 5 3 @ ~ + 5 3 07410207 07376257 05258985 07528470 00064504 -bang's_disease n 1 1 @ 1 0 14261508 -bangalore n 1 2 @ #p 1 0 08903352 -bangalore_torpedo n 1 1 @ 1 0 02787269 -banger n 2 4 @ ~ + ; 2 0 07677860 03345115 -bangiaceae n 1 3 @ #m %m 1 0 01415256 -banging n 2 1 @ 2 2 07376539 01176115 -bangkok n 1 2 @ #p 1 0 09036880 -bangla n 1 1 @ 1 0 06970946 -bangla_desh n 1 5 @ #p %m %p - 1 0 08848731 -bangladesh n 1 5 @ #p %m %p - 1 0 08848731 -bangladeshi n 1 3 @ #m + 1 0 09691994 -bangladeshi_monetary_unit n 1 2 @ ~ 1 0 13707897 -bangle n 2 4 @ ~ #m %p 2 0 02887970 02787435 -bangor n 3 2 @ #p 3 0 09092948 08895254 08888367 -bangtail n 1 2 @ ~ 1 0 02382948 -bangui n 1 2 @ #p 1 0 08718801 -banian n 2 1 @ 2 0 12402348 02788462 -banian_tree n 1 1 @ 1 0 12402348 -banishment n 2 3 @ ~ + 2 0 14427633 00206302 -banister n 1 3 @ #p %p 1 1 02788148 -banjo n 1 2 @ %p 1 1 02787622 -banjul n 1 2 @ #p 1 0 08946042 -bank n 10 5 @ ~ #m %p + 10 4 09213565 08420278 09213434 08462066 13368318 13356402 09213828 04139859 02787772 00169305 -bank-depositor_relation n 1 2 @ ; 1 0 13838766 -bank_account n 1 2 @ ~ 1 1 13359690 -bank_bill n 1 2 @ ~ 1 0 13393762 -bank_building n 1 2 @ %p 1 0 02787772 -bank_card n 1 1 @ 1 0 13376426 -bank_charter n 1 1 @ 1 0 06476899 -bank_check n 1 2 @ ~ 1 0 13381734 -bank_clerk n 1 1 @ 1 0 10698970 -bank_closing n 1 1 @ 1 0 00229688 -bank_commissioner n 1 1 @ 1 0 09837580 -bank_deposit n 1 2 @ ~ 1 0 13381145 -bank_discount n 1 2 @ ~ 1 0 13319253 -bank_draft n 1 1 @ 1 0 13380530 -bank_examination n 1 1 @ 1 0 01265325 -bank_examiner n 1 1 @ 1 0 09837981 -bank_failure n 1 1 @ 1 0 14478862 -bank_gravel n 1 1 @ 1 0 14699321 -bank_guard n 1 1 @ 1 0 09838117 -bank_holding_company n 1 2 @ ~ 1 0 08185501 -bank_holiday n 1 1 @ 1 0 15200032 -bank_identification_number n 1 1 @ 1 0 06425534 -bank_line n 1 2 @ ~ 1 0 13379413 -bank_loan n 1 2 @ ~ 1 0 13374597 -bank_manager n 1 1 @ 1 0 09838200 -bank_martin n 1 2 @ #m 1 0 01596273 -bank_note n 1 2 @ ~ 1 0 13393762 -bank_of_england n 1 1 @ 1 0 08352035 -bank_of_japan n 1 1 @ 1 0 08352218 -bank_rate n 1 1 @ 1 0 13319415 -bank_robber n 1 1 @ 1 0 09838295 -bank_run n 1 1 @ 1 0 00396344 -bank_shot n 1 1 @ 1 0 00110415 -bank_statement n 1 1 @ 1 0 06516782 -bank_swallow n 1 2 @ #m 1 0 01596273 -bank_vault n 1 2 @ #p 1 0 04523831 -bank_withdrawal n 1 2 @ ~ 1 0 00396213 -bankbook n 1 1 @ 1 0 13414159 -banker n 2 3 @ ~ + 2 1 09837824 09837720 -banker's_acceptance n 1 1 @ 1 0 13381602 -banker's_bill n 1 2 @ ~ 1 0 13393762 -banker's_check n 1 1 @ 1 0 13380309 -banker's_draft n 1 1 @ 1 0 13380530 -bankhead n 1 1 @ 1 0 10833304 -bankia n 1 3 @ #m %m 1 0 01967396 -bankia_setaceae n 1 2 @ #m 1 0 01967517 -banking n 2 4 @ ~ + - 2 0 01100658 01100273 -banking_company n 1 3 @ ~ #m 1 0 08420278 -banking_concern n 1 3 @ ~ #m 1 0 08420278 -banking_game n 1 1 @ 1 0 00509566 -banking_industry n 1 3 @ ~ %m 1 0 08066491 -banking_system n 1 3 @ ~ %m 1 0 08066491 -banknote n 1 2 @ ~ 1 0 13393762 -bankroll n 1 2 @ ; 1 0 13356569 -bankrupt n 1 2 @ + 1 0 09838370 -bankruptcy n 3 3 @ + ; 3 2 14478684 14478433 01186397 -banks n 1 1 @ 1 0 10833425 -banksia n 1 3 @ ~ #m 1 0 12215579 -banksia_integrifolia n 1 1 @ 1 0 12215824 -banksia_rose n 1 1 @ 1 0 12620969 -banner n 3 2 @ ~ 3 1 02788021 06345878 04301140 -banneret n 1 1 @ 1 0 10238898 -banning n 1 2 @ ~ 1 0 07255401 -banning-order n 1 1 @ 1 0 06542742 -bannister n 2 3 @ #p %p 2 0 10833595 02788148 -bannock n 1 1 @ 1 0 07683360 -bannockburn n 1 2 @ ; 1 0 01270153 -banns n 1 2 @ ; 1 0 06747369 -banquet n 2 3 @ ~ + 2 1 08253640 07578093 -banquet_song n 1 1 @ 1 0 07053606 -banqueting n 1 1 @ 1 0 00840751 -banquette n 1 1 @ 1 0 02788386 -banshee n 1 2 @ ; 1 1 09544262 -banshie n 1 2 @ ; 1 0 09544262 -bantam n 1 1 @ 1 0 01791954 -bantamweight n 2 1 @ 2 0 09838621 09838511 -banteng n 1 2 @ #m 1 0 02405440 -banter n 1 3 @ ~ + 1 1 06777794 -banti's_disease n 1 1 @ 1 0 14072239 -banti's_syndrome n 1 1 @ 1 0 14072239 -banting n 2 2 @ #m 2 0 10833805 02405440 -bantoid_language n 1 2 @ ~ 1 0 06991980 -bantu n 2 3 @ ~ + 2 0 09692624 06991980 -banyan n 2 1 @ 2 0 12402348 02788462 -banyan_tree n 1 1 @ 1 0 12402348 -banzai n 1 1 @ 1 0 06692740 -banzai_attack n 1 1 @ 1 0 00975074 -banzai_charge n 1 1 @ 1 0 00975074 -baobab n 1 3 @ #m %p 1 0 12189987 -bap n 1 2 @ ; 1 0 07680313 -baphia n 1 3 @ #m %m 1 0 12508936 -baphia_nitida n 1 2 @ #m 1 0 12509109 -baptisia n 1 3 @ #m %m 1 0 12509297 -baptisia_australis n 1 1 @ 1 0 12509665 -baptisia_lactea n 1 1 @ 1 0 12509821 -baptisia_tinctoria n 1 1 @ 1 0 12509993 -baptism n 1 3 @ ~ + 1 0 01037819 -baptismal_font n 1 1 @ 1 0 02788572 -baptismal_name n 1 1 @ 1 0 06337458 -baptist n 1 4 @ ~ #m + 1 1 09838701 -baptist_church n 1 3 @ %m %p 1 0 08089420 -baptist_denomination n 1 3 @ ~ #p 1 0 08089627 -baptistery n 1 1 @ 1 0 02788572 -baptistic_doctrine n 1 1 @ 1 0 06232047 -baptistry n 1 1 @ 1 0 02788572 -baptists n 1 3 @ %m %p 1 0 08089420 -bar n 15 6 @ ~ #p %p + ; 15 6 02796995 02789487 02788689 06864725 02789271 01077350 13711855 09214060 08112402 04683136 02937469 02907391 02790154 02790012 02789770 -bar-room_plant n 1 2 @ #m 1 0 12443323 -bar_absolute n 1 2 @ #p 1 0 13712120 -bar_billiards n 1 2 @ ; 1 0 00501479 -bar_bit n 1 1 @ 1 0 02791795 -bar_chart n 1 2 @ ~ 1 0 07001717 -bar_code n 1 1 @ 1 0 06354774 -bar_exam n 1 1 @ 1 0 07197537 -bar_examination n 1 1 @ 1 0 07197537 -bar_fly n 1 1 @ 1 0 09839085 -bar_girl n 1 1 @ 1 0 09852430 -bar_graph n 1 2 @ ~ 1 0 07001717 -bar_line n 1 2 @ ~ 1 0 06800698 -bar_magnet n 1 1 @ 1 0 02793296 -bar_mask n 1 1 @ 1 0 02793414 -bar_mitzvah n 1 3 @ + ; 1 0 07453924 -bar_printer n 1 1 @ 1 0 02794664 -bar_sinister n 2 1 @ 2 0 13953215 06795290 -bar_soap n 1 1 @ 1 0 02797455 -baraka n 1 1 @ 1 0 10834011 -baranduki n 1 1 @ 1 0 02360480 -barany n 1 1 @ 1 0 10834176 -barb n 4 4 @ ~ #p + 4 1 06767922 02790550 02790322 01898185 -barbacan n 1 1 @ 1 0 02791665 -barbadian n 1 3 @ #m + 1 0 09693982 -barbados n 2 6 @ #m #p %m %p + 2 0 08755436 08755214 -barbados-gooseberry_vine n 1 3 @ #m %p 1 0 11852531 -barbados_cherry n 2 3 @ #p %p 2 0 12694486 07746334 -barbados_dollar n 1 1 @ 1 0 13672177 -barbados_gooseberry n 2 4 @ #m #p %p 2 0 11852531 07769102 -barbados_maidenhair n 1 1 @ 1 0 13207923 -barbados_pride n 1 2 @ #m 1 0 11758799 -barbara_hepworth n 1 1 @ 1 0 11044168 -barbara_tuchman n 1 1 @ 1 0 11351212 -barbara_ward n 1 1 @ 1 0 11374281 -barbara_wertheim_tuchman n 1 1 @ 1 0 11351212 -barbarea n 1 4 @ #m %m %p 1 0 11873396 -barbarea_praecox n 1 2 @ #p 1 0 11873845 -barbarea_verna n 1 2 @ #p 1 0 11873845 -barbarea_vulgaris n 1 2 @ #p 1 0 11874081 -barbarian n 2 3 @ ~ + 2 1 10553402 10410815 -barbarisation n 1 2 @ + 1 0 00272123 -barbarism n 1 1 @ 1 0 00424934 -barbarity n 2 2 @ + 2 0 04830343 00424934 -barbarization n 1 2 @ + 1 0 00272123 -barbarossa n 2 1 @ 2 0 10979887 10834337 -barbarousness n 1 2 @ + 1 0 04830343 -barbary n 1 3 @ #p %p 1 0 08503238 -barbary_ape n 1 1 @ 1 0 02487847 -barbary_coast n 2 2 @ #p 2 0 08503639 08503477 -barbary_pirate n 1 2 @ ~ 1 0 09966941 -barbary_sheep n 1 2 @ #m 1 0 02416104 -barbasco n 1 2 @ #m 1 0 12100187 -barbecue n 3 2 @ + 3 0 07654148 07576781 02790669 -barbecue_pit n 1 1 @ 1 0 09214269 -barbecue_sauce n 1 1 @ 1 0 07835331 -barbecued_spareribs n 1 1 @ 1 0 07862348 -barbecued_wing n 1 1 @ 1 0 07648997 -barbecuing n 1 1 @ 1 0 00247654 -barbed_wire n 1 3 @ ~ %p 1 1 02790823 -barbel n 1 2 @ + 1 0 02585285 -barbell n 1 1 @ 1 1 02790996 -barbeque n 3 1 @ 3 0 07654148 07576781 02790669 -barber n 2 2 @ + 2 0 10834439 09838895 -barber's_itch n 1 1 @ 1 0 14126181 -barber's_pole n 1 1 @ 1 0 07267067 -barber_chair n 1 2 @ #p 1 0 02791124 -barberry n 1 3 @ ~ #m 1 0 11697560 -barberry_family n 1 3 @ #m %m 1 0 11697158 -barbershop n 1 2 @ %p 1 0 02791270 -barbershop_quartet n 1 1 @ 1 0 08247400 -barberton_daisy n 1 2 @ #m 1 0 11971927 -barbet n 1 2 @ #m 1 0 01842235 -barbette n 1 1 @ 1 0 02791385 -barbette_carriage n 1 1 @ 1 0 02791532 -barbican n 1 1 @ 1 0 02791665 -barbital n 1 1 @ 1 1 02791894 -barbitone n 1 1 @ 1 0 02791894 -barbiturate n 1 2 @ ~ 1 1 02792049 -barbituric_acid n 1 1 @ 1 0 14772716 -barbra_joan_streisand n 1 1 @ 1 0 11322178 -barbra_streisand n 1 1 @ 1 0 11322178 -barbu n 1 2 @ #m 1 0 02611294 -barbuda n 1 2 @ #p 1 0 08710113 -barbwire n 1 3 @ ~ %p 1 0 02790823 -barcarole n 1 1 @ 1 0 07049931 -barcarolle n 1 1 @ 1 0 07049931 -barcelona n 1 2 @ #p 1 0 09025189 -bard n 2 2 @ + 2 0 09839022 02792305 -bard_of_avon n 1 1 @ 1 0 11295196 -bardeen n 1 1 @ 1 0 10834543 -bardolatry n 1 1 @ 1 0 01044268 -bare_bone n 1 1 @ 1 0 05271607 -bare_bones n 1 2 @ ; 1 0 05921685 -bareboat n 1 1 @ 1 0 02792409 -bareboating n 1 1 @ 1 0 00315534 -bareness n 3 2 @ + 3 0 14525548 14456893 04697819 -barents_sea n 1 3 @ #p %p 1 0 09214422 -barf n 1 1 @ 1 0 14855992 -bargain n 2 3 @ ~ + 2 1 06771159 13253751 -bargain_hunter n 1 1 @ 1 0 09839343 -bargain_rate n 1 1 @ 1 0 05147237 -bargainer n 2 3 @ ~ + 2 0 10720453 09839167 -bargaining n 1 3 @ ~ + 1 1 07149836 -bargaining_chip n 1 1 @ 1 0 05156673 -barge n 1 3 @ ~ + 1 1 02792552 -barge_pole n 1 1 @ 1 0 02792948 -bargee n 1 2 @ + 1 0 10261388 -bargello n 1 1 @ 1 0 02792822 -bargeman n 1 1 @ 1 0 10261388 -bari n 1 2 @ #p 1 0 08810505 -barilla n 2 2 @ #m 2 0 11834654 11833999 -baring n 1 2 @ ~ 1 0 00394803 -barish n 1 1 @ 1 0 06933689 -barite n 1 2 @ %s 1 0 14678230 -baritone n 3 1 @ 3 0 09839436 06872562 02793089 -baritone_horn n 1 1 @ 1 0 02793089 -baritone_voice n 1 1 @ 1 0 06872562 -barium n 1 4 @ ~ #s + 1 1 14629998 -barium_dioxide n 1 1 @ 1 0 14630630 -barium_enema n 1 1 @ 1 0 00696300 -barium_hydroxide n 1 1 @ 1 0 14630363 -barium_monoxide n 1 1 @ 1 0 14630492 -barium_oxide n 1 1 @ 1 0 14630492 -barium_peroxide n 1 1 @ 1 0 14630630 -barium_protoxide n 1 1 @ 1 0 14630492 -barium_sulfate n 1 1 @ 1 0 14772877 -barium_sulphate n 2 2 @ %s 2 0 14772877 14678230 -bark n 4 4 @ ~ #p + 4 3 13162297 07376731 02793199 07376621 -bark-louse n 1 1 @ 1 0 02261063 -bark_beetle n 1 3 @ ~ #m 1 0 02180233 -bark_louse n 1 1 @ 1 0 02261063 -barkeep n 1 2 @ ~ 1 1 09841188 -barkeeper n 1 2 @ ~ 1 0 09841188 -barker n 2 2 @ + 2 0 09839515 02084732 -barking_deer n 1 2 @ #m 1 0 02434954 -barking_frog n 1 2 @ #m 1 0 01643507 -barkley n 1 1 @ 1 0 10834690 -barley n 2 4 @ ~ #m #p 2 1 07803093 12123244 -barley-sugar n 1 1 @ 1 0 07598928 -barley_candy n 1 1 @ 1 0 07598928 -barley_grass n 1 1 @ 1 0 12123741 -barley_water n 1 1 @ 1 0 07584859 -barleycorn n 2 3 @ ~ #p 2 0 12123648 07803093 -barm n 1 2 @ ~ 1 0 15106271 -barmaid n 1 1 @ 1 0 09839702 -barman n 1 2 @ ~ 1 0 09841188 -barmbrack n 1 2 @ ; 1 0 07680416 -barn n 2 4 @ ~ %p ; 2 1 02793495 13614256 -barn_dance n 1 1 @ 1 0 07449452 -barn_door n 1 1 @ 1 0 02793842 -barn_grass n 1 2 @ #m 1 0 12117695 -barn_millet n 1 2 @ #m 1 0 12117695 -barn_owl n 1 2 @ #m 1 0 01625562 -barn_spider n 1 2 @ #m 1 0 01773549 -barn_swallow n 1 2 @ #m 1 0 01594787 -barnaba_chiaramonti n 1 1 @ 1 0 11237550 -barnaby's_thistle n 1 1 @ 1 0 11949015 -barnacle n 2 3 @ ~ #m 2 0 01998183 01857851 -barnacle_goose n 1 2 @ #m 1 0 01857851 -barnburner n 2 2 @ ; 2 1 09839774 07319399 -barndoor n 1 1 @ 1 0 02793684 -barndoor_skate n 1 2 @ #m 1 0 01502101 -barney_oldfield n 1 1 @ 1 0 11213966 -barnful n 1 1 @ 1 1 13764998 -barnstormer n 2 2 @ + 2 0 09840050 09839860 -barnum n 1 1 @ 1 0 10834869 -barnyard n 1 1 @ 1 1 02793930 -barnyard_grass n 1 2 @ #m 1 0 12117695 -barograph n 1 1 @ 1 0 02794008 -barometer n 1 3 @ ~ + 1 0 02794156 -barometric_pressure n 1 1 @ 1 1 11495708 -baron n 3 3 @ ~ + 3 0 09840520 09840435 09840217 -baron_adrian n 1 1 @ 1 0 10808886 -baron_alexander_von_humboldt n 1 1 @ 1 0 11065938 -baron_clive n 1 1 @ 1 0 10902934 -baron_clive_of_plassey n 1 1 @ 1 0 10902934 -baron_de_la_brede_et_de_montesquieu n 1 1 @ 1 0 11186911 -baron_friedrich_heinrich_alexander_von_humboldt n 1 1 @ 1 0 11065938 -baron_friedrich_wilhelm_ludolf_gerhard_augustin_von_steuben n 1 1 @ 1 0 11317086 -baron_georges_cuvier n 1 1 @ 1 0 10919278 -baron_hermann_ludwig_ferdinand_von_helmholtz n 1 1 @ 1 0 11039344 -baron_hugh_caswall_tremenheere_dowding n 1 1 @ 1 0 10941714 -baron_jean_baptiste_joseph_fourier n 1 1 @ 1 0 10976468 -baron_karl_maria_friedrich_ernst_von_weber n 1 1 @ 1 0 11378462 -baron_karl_wilhelm_von_humboldt n 1 1 @ 1 0 11066209 -baron_lister n 1 1 @ 1 0 11134895 -baron_lloyd_webber_of_sydmonton n 1 1 @ 1 0 11136405 -baron_munchausen n 1 1 @ 1 0 11196305 -baron_olivier_of_birghton n 1 1 @ 1 0 11214320 -baron_richard_von_krafft-ebing n 1 1 @ 1 0 11110205 -baron_snow_of_leicester n 1 1 @ 1 0 11307082 -baron_verulam n 1 1 @ 1 0 10830456 -baron_wilhelm_von_humboldt n 1 1 @ 1 0 11066209 -baronage n 1 2 @ %m 1 0 08388636 -baronduki n 1 1 @ 1 0 02360480 -baroness n 1 1 @ 1 0 09843309 -baroness_dudevant n 1 1 @ 1 0 11280013 -baroness_emmusca_orczy n 1 1 @ 1 0 11216264 -baroness_jackson_of_lodsworth n 1 1 @ 1 0 11374281 -baroness_karen_blixen n 1 1 @ 1 0 10935745 -baroness_thatcher_of_kesteven n 1 1 @ 1 0 11337779 -baronet n 1 2 @ + 1 0 09840639 -baronetage n 2 1 @ 2 0 08388783 00589415 -baronetcy n 2 1 @ 2 0 14432623 06343364 -barong n 1 1 @ 1 0 02794368 -baronne_anne_louise_germaine_necker_de_steal-holstein n 1 1 @ 1 0 11311959 -barony n 3 1 @ 3 1 13251906 14432623 08557057 -baroque n 2 1 @ 2 0 15259076 04698307 -baroque_era n 1 1 @ 1 0 15259076 -baroque_period n 1 1 @ 1 0 15259076 -baroqueness n 1 2 @ + 1 0 04698307 -baroreceptor n 1 1 @ 1 1 05300128 -barosaur n 1 2 @ #m 1 0 01709876 -barosaurus n 1 2 @ #m 1 0 01709876 -barouche n 1 1 @ 1 0 02794474 -barque n 1 1 @ 1 0 02793199 -barrack n 1 5 @ ~ %p + ; 1 1 02794779 -barracking n 1 1 @ 1 0 01068633 -barracouta n 1 1 @ 1 0 02514041 -barracuda n 1 2 @ ~ 1 0 02603317 -barrage n 2 2 @ + 2 2 07083441 00987863 -barrage_balloon n 1 2 @ ~ 1 0 02794972 -barrage_fire n 1 1 @ 1 0 00987863 -barrage_jamming n 1 1 @ 1 0 01251010 -barramundi n 1 2 @ #m 1 0 02560546 -barranquilla n 1 2 @ #p 1 0 08732807 -barrater n 1 1 @ 1 0 09840871 -barrator n 1 1 @ 1 0 09840871 -barratry n 4 2 @ ; 4 0 01114172 00776466 00769401 00765343 -barred_owl n 1 2 @ #m 1 0 01623110 -barred_pickerel n 1 1 @ 1 0 02561937 -barrel n 5 5 @ ~ #p %p + 5 3 02795528 02795169 13901211 13764764 13619920 -barrel_cactus n 2 3 @ ~ #m 2 0 11847169 11845557 -barrel_knot n 1 1 @ 1 0 02795783 -barrel_maker n 1 1 @ 1 0 09963773 -barrel_organ n 1 2 @ ; 1 0 02795978 -barrel_roll n 1 1 @ 1 1 00170536 -barrel_vault n 1 1 @ 1 0 02796207 -barrelfish n 1 2 @ #m 1 0 02635154 -barrelful n 1 1 @ 1 0 13764764 -barrelhouse n 1 1 @ 1 0 02795670 -barrels n 1 1 @ 1 0 13774311 -barren n 1 3 @ ~ + 1 0 08504594 -barren_ground_caribou n 1 1 @ 1 0 02434415 -barrenness n 2 3 @ ~ + 2 0 14045347 05148186 -barrenwort n 1 2 @ #m 1 0 11699071 -barrette n 1 1 @ 1 0 02796318 -barretter n 1 1 @ 1 0 02780121 -barricade n 2 2 @ + 2 2 04096848 02796412 -barrie n 1 1 @ 1 0 10835022 -barrier n 3 2 @ ~ 3 3 02796623 05690916 09214581 -barrier_island n 1 2 @ ~ 1 0 09214760 -barrier_reef n 1 1 @ 1 0 09214916 -barrier_strip n 1 1 @ 1 0 03606106 -barring n 1 1 @ 1 0 00207622 -barrio n 2 2 @ ; 2 0 08676349 08676253 -barrister n 1 3 @ ~ ; 1 0 09840963 -barroom n 1 3 @ ~ #p 1 0 02796995 -barrow n 3 2 @ ; 3 0 13764897 02922292 02797295 -barrow's_goldeneye n 1 1 @ 1 0 01850553 -barrow-boy n 1 1 @ 1 0 09968128 -barrow-man n 1 1 @ 1 0 09968128 -barrowful n 1 1 @ 1 0 13764897 -barrymore n 5 1 @ 5 0 10836029 10835866 10835709 10835450 10835218 -bars n 1 4 @ ~ %p ; 1 0 03888605 -barstow n 1 2 @ #p 1 0 09062478 -bart n 1 1 @ 1 0 09840639 -bartender n 1 2 @ ~ 1 1 09841188 -barter n 1 3 @ ~ + 1 0 01109687 -barterer n 1 2 @ + 1 0 09841400 -barth n 2 1 @ 2 0 10836308 10836184 -barthelme n 1 1 @ 1 0 10836413 -barthold_george_niebuhr n 1 1 @ 1 0 11206705 -bartholdi n 1 1 @ 1 0 10836555 -bartholin n 1 1 @ 1 0 10836725 -bartholin's_gland n 1 2 @ #p 1 0 05523859 -bartholomeu_dias n 1 1 @ 1 0 10934154 -bartholomeu_diaz n 1 1 @ 1 0 10934154 -bartholomew_roberts n 1 1 @ 1 0 11264193 -bartle_frere n 1 2 @ #m 1 0 12214245 -bartlesville n 1 2 @ #p 1 0 09132053 -bartlett n 3 1 @ 3 0 10837023 10836862 07768230 -bartlett_pear n 1 1 @ 1 1 07768230 -bartok n 1 1 @ 1 0 10837258 -bartolome_esteban_murillo n 1 1 @ 1 0 11197633 -bartolomeo_alberto_capillari n 1 1 @ 1 0 11014833 -bartolomeo_prignano n 1 1 @ 1 0 11357086 -bartolomeo_vanzetti n 1 1 @ 1 0 11360311 -bartolommeo_eustachio n 1 1 @ 1 0 10963050 -bartonia n 1 2 @ #m 1 0 12035907 -bartram_juneberry n 1 1 @ 1 0 12624055 -bartramia n 1 3 @ #m %m 1 0 02029571 -bartramia_longicauda n 1 2 @ #m 1 0 02029706 -bartramian_sandpiper n 1 2 @ #m 1 0 02029706 -baruch n 3 2 @ #p 3 0 10837567 10837461 06459323 -baruch_de_spinoza n 1 1 @ 1 0 11311450 -barunduki n 1 1 @ 1 0 02360480 -barycenter n 1 2 @ ; 1 0 08523064 -barye n 1 2 @ #p 1 0 13712120 -baryon n 1 2 @ ~ 1 0 09215023 -baryon_number n 1 1 @ 1 0 13599114 -baryshnikov n 1 1 @ 1 0 10837737 -baryta n 1 3 @ ~ + 1 0 14630204 -barytes n 1 2 @ %s 1 0 14678230 -barytone n 1 1 @ 1 0 09839436 -bas_bleu n 1 1 @ 1 0 09861599 -bas_mitzvah n 1 2 @ ; 1 0 07454196 -bas_relief n 1 1 @ 1 1 02803129 -basal_body_temperature n 1 1 @ 1 0 05014710 -basal_body_temperature_method n 1 1 @ 1 0 00852522 -basal_body_temperature_method_of_family_planning n 1 1 @ 1 0 00852522 -basal_ganglion n 1 3 @ ~ #p 1 0 05497363 -basal_metabolic_rate n 1 1 @ 1 0 13437610 -basal_metabolism n 1 1 @ 1 0 13437753 -basal_placentation n 1 1 @ 1 0 11681554 -basal_temperature n 1 1 @ 1 0 05014710 -basal_vein n 1 1 @ 1 0 05358764 -basalt n 1 3 @ %s + 1 0 14773022 -bascule n 1 1 @ 1 0 02797535 -base n 20 6 @ ~ #p %p + ; 20 8 02798290 03387016 02797881 09215315 08511777 06658118 05793554 02797692 14964590 14618253 13897837 13809769 13597794 08490402 08013845 06300193 03569964 02798769 02798574 02798117 -base_hit n 1 3 @ ~ ; 1 1 00131090 -base_metal n 1 1 @ 1 0 14618674 -base_of_operations n 1 3 @ ~ ; 1 0 02798290 -base_on_balls n 1 2 @ ; 1 1 00127286 -base_pair n 1 2 @ #p 1 0 14630769 -base_rate n 1 2 @ ; 1 0 13319726 -base_runner n 1 2 @ ; 1 1 09841696 -baseball n 2 3 @ ~ - 2 2 00471613 02799071 -baseball_bat n 1 2 @ %p 1 0 02799175 -baseball_cap n 1 2 @ %p 1 0 02799323 -baseball_card n 1 1 @ 1 0 02799442 -baseball_clinic n 1 1 @ 1 0 07146784 -baseball_club n 1 2 @ #m 1 0 08079613 -baseball_coach n 1 3 @ ~ ; 1 0 09841515 -baseball_diamond n 1 4 @ #p %p ; 1 0 02799593 -baseball_equipment n 1 3 @ ~ ; 1 0 02799897 -baseball_field n 1 3 @ #p %p 1 0 02780916 -baseball_game n 1 3 @ ~ - 1 1 00471613 -baseball_glove n 1 1 @ 1 0 02800213 -baseball_league n 1 3 @ ~ %m 1 0 08231874 -baseball_manager n 1 3 @ ~ ; 1 0 09841515 -baseball_mitt n 1 1 @ 1 0 02800213 -baseball_play n 1 3 @ ~ ; 1 0 00564177 -baseball_player n 1 3 @ ~ ; 1 0 09835506 -baseball_score n 1 1 @ 1 0 00189476 -baseball_season n 1 2 @ ~ 1 0 15240389 -baseball_swing n 1 1 @ 1 0 00571444 -baseball_team n 1 4 @ ~ %m %p 1 0 08079319 -baseboard n 1 1 @ 1 0 02800354 -basel n 1 2 @ #p 1 0 09032483 -baseline n 3 1 @ 3 1 13854318 08650919 08573140 -basement n 2 2 @ ~ 2 1 02800497 02800675 -baseness n 1 2 @ + 1 0 04807971 -basenji n 1 1 @ 1 0 02110806 -bash n 2 2 @ + 2 1 07410207 07448038 -bashfulness n 1 2 @ + 1 0 07508092 -basia n 1 2 @ #p 1 0 08914413 -basic n 2 2 @ ; 2 0 06902909 02800793 -basic_assumption n 1 1 @ 1 0 05893512 -basic_cognitive_process n 1 2 @ ~ 1 0 05701944 -basic_color n 1 1 @ 1 0 14773275 -basic_colour n 1 1 @ 1 0 14773275 -basic_dye n 1 1 @ 1 0 14773275 -basic_english n 1 1 @ 1 0 06895396 -basic_iron n 1 1 @ 1 0 14773447 -basic_point_defense_missile_system n 1 1 @ 1 0 02800940 -basic_principle n 1 2 @ ~ 1 0 05871362 -basic_slag n 1 1 @ 1 0 14773618 -basic_training n 1 2 @ ; 1 0 00895680 -basics n 2 2 @ ~ 2 0 06639563 05871362 -basidiocarp n 1 2 @ #p 1 0 11533212 -basidiolichen n 1 1 @ 1 0 12987535 -basidiomycete n 1 5 @ ~ #m %p + 1 0 12997654 -basidiomycetes n 1 3 @ #m %m 1 0 12996841 -basidiomycetous_fungi n 1 4 @ ~ #m %p 1 0 12997654 -basidiomycota n 1 3 @ #m %m 1 0 12996225 -basidiomycotina n 1 3 @ #m %m 1 0 12996225 -basidiospore n 1 2 @ + 1 0 11548465 -basidium n 1 4 @ ~ %p + 1 0 12994475 -basil n 3 5 @ ~ #m #p ; 3 0 12860365 10837918 07816164 -basil_balm n 2 2 @ #m 2 0 12859272 12839574 -basil_mint n 1 1 @ 1 0 12863819 -basil_of_caesarea n 1 2 @ ; 1 0 10837918 -basil_the_great n 1 2 @ ; 1 0 10837918 -basil_thyme n 1 2 @ #m 1 0 12839574 -basilar_artery n 1 2 @ #p 1 0 05338410 -basilar_membrane n 1 2 @ #p 1 0 05286272 -basileus n 1 1 @ 1 1 09841865 -basilic_vein n 1 2 @ #p 1 0 05358944 -basilica n 2 3 @ %p + 2 0 02801184 02801047 -basilicata n 1 3 @ #p ; 1 0 08804487 -basiliscus n 1 3 @ #m %m 1 0 01682293 -basilisk n 3 3 @ #m ; 3 0 09492877 02801450 01682435 -basin n 5 2 @ ~ 5 1 02801525 13765086 09215437 08518940 04553920 -basinet n 1 3 @ #p %p 1 0 02801823 -basinful n 1 1 @ 1 0 13765086 -basis n 3 3 @ ~ #p 3 2 13790912 05793554 13809769 -basivertebral_vein n 1 1 @ 1 0 05359124 -basket n 4 3 @ ~ + 4 2 02801938 13765207 02802215 00190431 -basket-handle_arch n 1 1 @ 1 0 04427216 -basket_ash n 1 1 @ 1 0 12305089 -basket_fern n 2 2 @ #m 2 0 13205249 13175682 -basket_fish n 1 3 @ ~ #m 1 0 02318167 -basket_flower n 1 1 @ 1 0 11947429 -basket_hilt n 1 1 @ 1 0 02802886 -basket_maker n 1 1 @ 1 0 09842395 -basket_oak n 1 1 @ 1 0 12276628 -basket_rummy n 1 2 @ ~ 1 0 00497060 -basket_spikemoss n 1 1 @ 1 0 13224922 -basket_star n 1 3 @ ~ #m 1 0 02318167 -basket_weave n 1 1 @ 1 1 02802990 -basket_willow n 1 2 @ #m 1 0 12729729 -basketball n 2 4 @ ~ %p - 2 1 00480993 02802426 -basketball_backboard n 1 2 @ ; 1 0 02768226 -basketball_clinic n 1 1 @ 1 0 07146640 -basketball_coach n 1 1 @ 1 0 09841955 -basketball_court n 1 4 @ ~ %p ; 1 0 02802544 -basketball_equipment n 1 3 @ ~ ; 1 0 02802721 -basketball_game n 1 4 @ ~ %p - 1 0 00480993 -basketball_hoop n 1 1 @ 1 0 02802215 -basketball_league n 1 2 @ %m 1 0 08232299 -basketball_play n 1 3 @ ~ #p 1 0 00563494 -basketball_player n 1 2 @ ~ 1 0 09842047 -basketball_score n 1 1 @ 1 0 00190338 -basketball_season n 1 1 @ 1 0 15240633 -basketball_shot n 1 3 @ ~ #p 1 0 00110057 -basketball_team n 1 3 @ #m %m 1 1 08079852 -basketeer n 1 3 @ ~ + 1 0 09842047 -basketful n 1 1 @ 1 0 13765207 -basketmaker n 1 1 @ 1 0 09842288 -basketry n 1 1 @ 1 0 00607293 -basketweaver n 1 1 @ 1 0 09842288 -basking_shark n 1 2 @ #m 1 0 01485479 -basle n 1 2 @ #p 1 0 09032483 -basophil n 1 1 @ 1 0 05453523 -basophile n 1 1 @ 1 0 05453523 -basophilia n 1 2 @ + 1 0 04944910 -basotho n 1 2 @ #m 1 0 09692125 -basque n 2 2 @ #m 2 0 09692250 06966695 -basque_fatherland_and_liberty n 1 2 @ ; 1 0 08018189 -basque_homeland_and_freedom n 1 2 @ ; 1 0 08018189 -basra n 1 2 @ #p 1 0 08914413 -bass n 8 3 @ ~ #p 8 2 04986796 07032292 09842528 07777945 07777512 06872354 02803349 02565573 -bass_clarinet n 1 1 @ 1 0 02803539 -bass_clef n 1 1 @ 1 0 06862954 -bass_drum n 1 1 @ 1 0 02803666 -bass_fiddle n 1 1 @ 1 0 02803934 -bass_guitar n 1 1 @ 1 0 02804123 -bass_horn n 1 2 @ ~ 1 0 02804252 -bass_part n 1 2 @ ~ 1 0 07032292 -bass_viol n 2 1 @ 2 0 04536595 02803934 -bass_voice n 1 2 @ ~ 1 0 06872354 -bassariscidae n 1 2 @ #m 1 0 02508458 -bassariscus n 1 3 @ #m %m 1 0 02508615 -bassariscus_astutus n 1 2 @ #m 1 0 02508742 -bassarisk n 1 2 @ #m 1 0 02508742 -basse-normandie n 1 2 @ #p 1 0 08940936 -basset n 1 1 @ 1 0 02088238 -basset_horn n 1 1 @ 1 0 02803809 -basset_hound n 1 1 @ 1 0 02088238 -basset_oboe n 1 1 @ 1 0 03510866 -basseterre n 1 2 @ #p 1 0 08988068 -bassia n 1 3 @ #m %m 1 0 11831730 -bassia_scoparia n 1 2 @ #m 1 0 11831874 -bassine n 1 2 @ #s 1 0 12585967 -bassinet n 2 1 @ 2 1 02804414 02804515 -bassist n 1 1 @ 1 0 09842629 -basso n 2 2 @ ~ 2 0 09842528 06872354 -basso_continuo n 1 1 @ 1 0 07032556 -basso_profundo n 1 1 @ 1 0 06872479 -basso_relievo n 1 1 @ 1 0 02803129 -basso_rilievo n 1 1 @ 1 0 02803129 -bassoon n 1 3 @ ~ + 1 0 02804610 -bassoonist n 1 2 @ + 1 0 09842716 -basswood n 2 5 @ ~ #m #s %s 2 0 12203331 12202936 -bast n 3 3 @ %p ; 3 0 13099444 13098962 09512028 -bast_fiber n 1 1 @ 1 0 13099444 -bastard n 3 3 @ + ; 3 1 09815188 09842823 02804772 -bastard_feverfew n 1 2 @ #m 1 0 12001077 -bastard_indigo n 3 1 @ 3 0 12572759 12504783 12504570 -bastard_lignum_vitae n 1 2 @ #m 1 0 12722567 -bastard_pennyroyal n 1 1 @ 1 0 12871859 -bastard_pimpernel n 1 2 @ #m 1 0 12092930 -bastard_ridley n 1 1 @ 1 0 01664492 -bastard_title n 1 1 @ 1 0 06257772 -bastard_toadflax n 1 2 @ #m 1 0 12736228 -bastard_turtle n 1 1 @ 1 0 01664492 -bastard_wing n 1 2 @ #p 1 0 01897667 -bastard_yellowwood n 1 2 @ #m 1 0 11653570 -bastardisation n 1 2 @ + 1 0 00272303 -bastardization n 2 2 @ + 2 0 06726478 00272303 -bastardy n 1 1 @ 1 0 13953215 -bastardy_proceeding n 1 2 @ ; 1 0 01183798 -baste n 1 2 @ + 1 0 02805111 -baster n 3 1 @ 3 0 09843200 09843048 02805283 -bastille n 2 3 @ #p ; 2 0 02805584 02805443 -bastille_day n 1 2 @ #p 1 0 15200493 -bastinado n 2 2 @ + 2 0 02805845 00422114 -basting n 2 2 @ #p 2 0 02805111 00247955 -basting_stitch n 1 1 @ 1 0 02805111 -bastion n 3 2 @ ~ 3 1 08064372 02806088 02805983 -bastnaesite n 1 2 @ %s 1 0 14668065 -bastnasite n 1 2 @ %s 1 0 14668065 -basuco n 1 1 @ 1 0 02806274 -basuto n 1 1 @ 1 0 06995526 -basutoland n 1 4 @ #p %m %p 1 0 08958830 -bat n 5 6 @ ~ #m %p + ; 5 2 02139199 00458456 04292414 03132076 02806379 -bat_boy n 1 2 @ ; 1 0 09843443 -bat_mitzvah n 1 3 @ + ; 1 0 07454196 -bata n 1 1 @ 1 0 06984556 -bataan n 1 3 @ #p ; 1 0 01270343 -batch n 3 3 @ ~ + 3 1 08400772 13774404 08400452 -batch_processing n 1 1 @ 1 0 13437902 -bateau_bridge n 1 2 @ %p 1 0 03981760 -batfish n 1 2 @ #m 1 0 02547733 -bath n 6 5 @ ~ #p %p + 6 3 02806530 00257770 02808440 13616560 08878202 02807731 -bath_asparagus n 1 1 @ 1 0 12460146 -bath_chair n 1 1 @ 1 0 02806762 -bath_linen n 1 2 @ ~ 1 0 02807260 -bath_mat n 1 1 @ 1 0 02807401 -bath_mitzvah n 1 2 @ ; 1 0 07454196 -bath_oil n 1 1 @ 1 0 02807523 -bath_powder n 1 2 @ ~ 1 0 04447276 -bath_salts n 1 2 @ ; 1 0 02808185 -bath_soap n 1 1 @ 1 0 04447965 -bath_towel n 1 2 @ ~ 1 1 02808304 -bath_water n 1 1 @ 1 0 14773787 -bathe n 1 2 @ + 1 0 00442437 -bather n 2 3 @ ~ + 2 1 10683126 09843602 -bathhouse n 2 3 @ ~ %p 2 0 02806992 02806875 -bathing n 2 3 @ ~ + 2 2 00427853 00255214 -bathing_cap n 1 1 @ 1 0 02807133 -bathing_costume n 1 2 @ ~ 1 0 04371563 -bathing_machine n 1 2 @ %p 1 0 02806992 -bathing_suit n 1 2 @ ~ 1 1 04371563 -bathing_trunks n 1 2 @ ; 1 0 04371430 -bathing_tub n 1 3 @ ~ #p 1 0 02808440 -batholite n 1 3 @ ~ + 1 0 14932303 -batholith n 1 3 @ ~ + 1 0 14932303 -bathometer n 1 1 @ 1 0 02808695 -bathos n 3 2 @ #p 3 1 07068048 07482267 06373991 -bathrobe n 1 1 @ 1 1 02807616 -bathroom n 2 4 @ ~ #p %p 2 1 02807731 04446276 -bathroom_cleaner n 1 1 @ 1 0 02807998 -bathroom_fixture n 1 1 @ 1 0 02808097 -bathroom_tissue n 1 2 @ ~ 1 0 15075141 -bathsheba n 1 2 @ ; 1 0 10838288 -bathtub n 1 3 @ ~ #p 1 1 02808440 -bathtub_gin n 1 1 @ 1 1 07902698 -bathyal_district n 1 1 @ 1 0 09255343 -bathyal_zone n 1 1 @ 1 0 09255343 -bathyergidae n 1 3 @ #m %m 1 0 02369012 -bathyergus n 1 3 @ #m %m 1 0 02369170 -bathymeter n 1 2 @ + 1 0 02808695 -bathymetry n 1 2 @ + 1 0 00999089 -bathyscape n 1 1 @ 1 0 02808829 -bathyscaph n 1 1 @ 1 0 02808829 -bathyscaphe n 1 1 @ 1 0 02808829 -bathysphere n 1 1 @ 1 0 02808968 -batidaceae n 1 3 @ #m %m 1 0 11827169 -batik n 1 2 @ + 1 0 02809105 -batis n 1 3 @ #m %m 1 0 11827348 -batis_maritima n 1 2 @ #m 1 0 11827541 -batiste n 1 1 @ 1 0 02809241 -batman n 1 1 @ 1 0 09843716 -batna n 1 2 @ #p 1 0 08706399 -batoidei n 1 3 @ #m %m 1 0 01496617 -batoko_palm n 1 2 @ #m 1 0 12378249 -baton n 5 1 @ 5 1 02809364 04491388 02809736 02809605 02809491 -baton_rouge n 1 3 @ #p %p 1 1 09091398 -baton_rouge_bridge n 1 2 @ #p 1 0 02809866 -baton_twirler n 1 2 @ ~ 1 0 09843824 -batrachia n 1 3 @ #m %m 1 0 01639369 -batrachian n 1 3 @ ~ + 1 0 01639765 -batrachoididae n 1 3 @ #m %m 1 0 02548522 -batrachomyomachia n 1 1 @ 1 0 07184652 -batrachoseps n 1 3 @ #m %m 1 0 01637478 -batsman n 1 3 @ ~ ; 1 0 09843956 -batswana n 1 2 @ #m 1 0 09693618 -battalion n 2 4 @ ~ #m %m 2 1 08214083 13775093 -batten n 2 2 @ + 2 0 02810930 02810008 -batter n 2 4 @ ~ + ; 2 1 09843956 07860805 -batter's_box n 1 2 @ #p 1 1 02810270 -batter_bread n 1 1 @ 1 0 07689313 -battercake n 1 2 @ ~ 1 0 07640203 -battering n 1 1 @ 1 0 01176115 -battering_ram n 1 1 @ 1 1 02810139 -battery n 7 6 @ ~ #p %m %p ; 7 3 08389572 02810471 07953827 08077177 02810782 00987863 00768203 -battery-acid n 1 1 @ 1 0 02675657 -battery_acid n 1 1 @ 1 0 14773865 -battery_charger n 1 1 @ 1 0 03008976 -batting n 2 3 @ + ; 2 1 00126584 02810930 -batting_average n 2 2 @ ; 2 2 13817872 13818143 -batting_cage n 1 1 @ 1 0 02811059 -batting_coach n 1 2 @ ; 1 1 09844221 -batting_glove n 1 1 @ 1 0 02811204 -batting_helmet n 1 1 @ 1 0 02811350 -batting_order n 1 3 @ %p ; 1 0 06486161 -battle n 3 5 @ ~ #p + ; 3 2 00953559 00788973 00958896 -battle-ax n 2 3 @ ~ #p 2 1 02811468 09844356 -battle-axe n 2 3 @ ~ #p 2 0 09844356 02811468 -battle_born_state n 1 3 @ #p %p 1 0 09110422 -battle_cruiser n 1 1 @ 1 0 02811618 -battle_cry n 2 1 @ 2 1 07123404 07152752 -battle_damage n 1 2 @ ; 1 0 07339808 -battle_dress n 1 2 @ ; 1 0 02811719 -battle_fatigue n 1 1 @ 1 0 14388596 -battle_flag n 1 1 @ 1 1 02811842 -battle_fleet n 1 1 @ 1 0 08293238 -battle_group n 1 3 @ #m %m 1 0 08213671 -battle_line n 1 2 @ ; 1 1 08595054 -battle_of_atlanta n 1 3 @ #p ; 1 0 01269633 -battle_of_austerlitz n 1 3 @ #p ; 1 0 01269857 -battle_of_boyne n 1 3 @ #p ; 1 0 01272787 -battle_of_britain n 1 3 @ #p ; 1 0 01270628 -battle_of_brunanburh n 1 2 @ ; 1 0 01273081 -battle_of_bull_run n 1 3 @ #p ; 1 0 01273491 -battle_of_bunker_hill n 1 3 @ #p ; 1 0 01273735 -battle_of_caporetto n 1 3 @ #p ; 1 0 01274171 -battle_of_chattanooga n 1 3 @ #p ; 1 0 01275389 -battle_of_chickamauga n 1 3 @ #p ; 1 0 01275697 -battle_of_cowpens n 1 3 @ #p ; 1 0 01276436 -battle_of_crecy n 1 3 @ #p ; 1 0 01276634 -battle_of_cunaxa n 1 2 @ ; 1 0 01276875 -battle_of_cynoscephalae n 1 2 @ ; 1 0 01277065 -battle_of_el_alamein n 1 3 @ #p ; 1 0 01278232 -battle_of_flodden_field n 1 2 @ ; 1 0 01278692 -battle_of_fontenoy n 1 3 @ #p ; 1 0 01278873 -battle_of_fredericksburg n 1 3 @ #p ; 1 0 01279342 -battle_of_gettysburg n 1 3 @ #p ; 1 0 01279615 -battle_of_granicus_river n 1 2 @ ; 1 0 01279866 -battle_of_guadalcanal n 1 3 @ #p ; 1 0 01280055 -battle_of_hastings n 1 3 @ #p ; 1 0 01280514 -battle_of_hohenlinden n 1 3 @ #p ; 1 0 01280792 -battle_of_ipsus n 1 2 @ ; 1 0 01281427 -battle_of_issus n 1 2 @ ; 1 0 01281638 -battle_of_ivry n 1 2 @ ; 1 0 01281813 -battle_of_jena n 1 3 @ #p ; 1 0 01282289 -battle_of_jutland n 1 3 @ #p ; 1 0 01282466 -battle_of_kerbala n 1 2 @ ; 1 0 01270860 -battle_of_lake_trasimenus n 1 3 @ #p ; 1 0 01283185 -battle_of_langside n 1 2 @ ; 1 0 01283389 -battle_of_lepanto n 1 2 @ ; 1 0 01283565 -battle_of_leuctra n 1 2 @ ; 1 0 01283753 -battle_of_little_bighorn n 1 2 @ ; 1 0 01284444 -battle_of_lule_burgas n 1 3 @ #p ; 1 0 01285101 -battle_of_lutzen n 1 3 @ #p ; 1 0 01285305 -battle_of_magenta n 1 2 @ ; 1 0 01285784 -battle_of_maldon n 1 2 @ ; 1 0 01286000 -battle_of_marathon n 1 2 @ ; 1 0 01286569 -battle_of_marston_moor n 1 3 @ #p ; 1 0 01286938 -battle_of_midway n 1 3 @ #p ; 1 0 01287782 -battle_of_minden n 1 3 @ #p ; 1 0 01288057 -battle_of_monmouth n 1 3 @ #p ; 1 0 01288272 -battle_of_monmouth_court_house n 1 3 @ #p ; 1 0 01288272 -battle_of_naseby n 1 3 @ #p ; 1 0 01288549 -battle_of_navarino n 1 2 @ ; 1 0 01288795 -battle_of_omdurman n 1 2 @ ; 1 0 01289444 -battle_of_panipat n 1 2 @ ; 1 0 01289997 -battle_of_pharsalus n 1 2 @ ; 1 0 01290711 -battle_of_philippi n 1 2 @ ; 1 0 01290840 -battle_of_pittsburgh_landing n 1 3 @ #p ; 1 0 01294502 -battle_of_plassey n 1 2 @ ; 1 0 01291310 -battle_of_plataea n 1 2 @ ; 1 0 01291517 -battle_of_poitiers n 1 2 @ ; 1 0 01291839 -battle_of_puebla n 1 2 @ ; 1 0 01292200 -battle_of_pydna n 1 2 @ ; 1 0 01292343 -battle_of_ravenna n 1 2 @ ; 1 0 01292553 -battle_of_rocroi n 1 3 @ #p ; 1 0 01292735 -battle_of_rossbach n 1 3 @ #p ; 1 0 01292928 -battle_of_saratoga n 1 3 @ #p ; 1 0 01294127 -battle_of_sempatch n 1 2 @ ; 1 0 01294330 -battle_of_shiloh n 1 3 @ #p ; 1 0 01294502 -battle_of_soissons-reims n 1 3 @ #p ; 1 0 01294791 -battle_of_solferino n 1 2 @ ; 1 0 01295153 -battle_of_spotsylvania_courthouse n 1 3 @ #p ; 1 0 01295918 -battle_of_st_mihiel n 1 3 @ #p ; 1 0 01293167 -battle_of_tannenberg n 1 3 @ #p ; 1 0 01296505 -battle_of_tertry n 1 2 @ ; 1 0 01296946 -battle_of_teutoburger_wald n 1 2 @ ; 1 0 01297095 -battle_of_tewkesbury n 1 2 @ ; 1 0 01297291 -battle_of_the_aisne n 1 3 @ #p ; 1 0 01294791 -battle_of_the_ardennes_bulge n 1 3 @ #p ; 1 0 01271107 -battle_of_the_bismarck_sea n 1 3 @ #p ; 1 0 01271669 -battle_of_the_bulge n 1 3 @ #p ; 1 0 01271107 -battle_of_the_chemin-des-dames n 1 3 @ #p ; 1 0 01294791 -battle_of_the_coral_sea n 1 3 @ #p ; 1 0 01276194 -battle_of_the_little_bighorn n 1 2 @ ; 1 0 01284444 -battle_of_the_marne n 1 3 @ #p ; 1 0 01271428 -battle_of_the_philippine_sea n 1 3 @ #p ; 1 0 01290997 -battle_of_the_somme n 2 3 @ #p ; 2 0 01295528 01295373 -battle_of_the_spanish_armada n 1 2 @ ; 1 0 01295684 -battle_of_thermopylae n 1 2 @ ; 1 0 01297484 -battle_of_trafalgar n 1 3 @ #p ; 1 0 01297706 -battle_of_trasimeno n 1 2 @ ; 1 0 01297978 -battle_of_valmy n 1 2 @ ; 1 0 01298371 -battle_of_verdun n 1 3 @ #p ; 1 0 01298573 -battle_of_wagram n 1 3 @ #p ; 1 0 01299037 -battle_of_wake n 1 3 @ #p ; 1 0 01299224 -battle_of_wake_island n 1 3 @ #p ; 1 0 01299224 -battle_of_waterloo n 1 3 @ #p ; 1 0 01299476 -battle_of_wits n 1 1 @ 1 0 01168840 -battle_of_ypres n 3 3 @ #p ; 3 0 01301080 01300782 01300508 -battle_of_zama n 1 3 @ #p ; 1 0 01301423 -battle_plan n 1 1 @ 1 0 05902786 -battle_royal n 1 1 @ 1 0 00554200 -battle_sight n 1 1 @ 1 0 02812342 -battledore n 2 2 @ ; 2 0 02772700 00480885 -battledore_and_shuttlecock n 1 1 @ 1 0 00480885 -battlefield n 1 3 @ ~ %p 1 1 08506641 -battlefront n 1 2 @ #p 1 1 08573674 -battleground n 1 3 @ ~ %p 1 1 08506641 -battlement n 1 3 @ #p %p 1 0 02811936 -battler n 1 3 @ ~ + 1 0 09939313 -battleship n 1 2 @ ~ 1 0 02812201 -battlesight n 1 1 @ 1 0 02812342 -battlewagon n 1 2 @ ~ 1 0 02812201 -battue n 2 1 @ 2 0 00452734 00224260 -batwing n 1 1 @ 1 1 02812505 -bauble n 2 2 @ #m 2 0 07267702 02787435 -baud n 1 2 @ ; 1 0 13579679 -baud_rate n 1 2 @ ; 1 0 13579679 -baudelaire n 1 1 @ 1 0 10838484 -bauhaus n 1 1 @ 1 0 05841624 -bauhinia n 1 3 @ #m %m 1 0 12490671 -bauhinia_monandra n 1 2 @ #m 1 0 12490827 -bauhinia_variegata n 1 2 @ #m 1 0 12491017 -baulk n 3 3 @ ~ #p 3 0 08516080 05689249 04045644 -baulk-line n 1 1 @ 1 0 08516260 -baulker n 1 3 @ ~ + 1 0 09833997 -baum n 1 1 @ 1 0 10838665 -bauxite n 1 3 @ %s + 1 0 14668277 -bavaria n 1 5 @ #p %p + - 1 1 08771596 -bavarian n 1 2 @ + 1 0 09844457 -bavarian_blue n 1 1 @ 1 0 07852532 -bavarian_cream n 1 1 @ 1 0 07620597 -bawbee n 1 1 @ 1 0 13389105 -bawd n 1 3 @ ~ + 1 0 10485440 -bawdiness n 1 3 @ ~ + 1 0 04903368 -bawdry n 1 1 @ 1 0 07124736 -bawdy n 1 2 @ + 1 0 07124736 -bawdyhouse n 1 2 @ ~ 1 1 04581595 -bawler n 2 3 @ ~ + 2 0 10533983 09844566 -bawling n 1 1 @ 1 0 00868799 -bawling_out n 1 1 @ 1 0 06713187 -bay n 7 6 @ ~ #m #p %p + 7 2 09215664 07376836 11704093 02812785 02812631 02696048 02388917 -bay-leaved_caper n 1 1 @ 1 0 11865574 -bay-rum_tree n 1 2 @ #m 1 0 12330891 -bay_grass n 1 3 @ ~ #m 1 0 12120114 -bay_laurel n 1 3 @ #m %p 1 0 11704093 -bay_leaf n 1 2 @ #p 1 0 07816296 -bay_lynx n 1 1 @ 1 0 02127482 -bay_myrtle n 1 1 @ 1 0 11741575 -bay_of_bengal n 1 3 @ #p %p 1 0 09216442 -bay_of_biscay n 1 2 @ #p 1 0 09216588 -bay_of_campeche n 1 2 @ #p 1 0 09297729 -bay_of_fundy n 1 2 @ #p 1 0 09216781 -bay_of_naples n 1 2 @ #p 1 0 09216968 -bay_of_ob n 1 2 @ #p 1 0 09298974 -bay_rum n 1 1 @ 1 0 02813252 -bay_scallop n 2 4 @ #m #p %p 2 0 07798025 01966377 -bay_state n 1 4 @ #p %p - 1 0 09095023 -bay_stater n 1 1 @ 1 0 09741432 -bay_tree n 1 3 @ #m %p 1 0 11704093 -bay_willow n 1 2 @ #m 1 0 12729521 -bay_window n 2 3 @ ~ ; 2 0 05556071 02813399 -bay_wreath n 1 2 @ ; 1 0 03648804 -baya n 1 1 @ 1 0 01543175 -bayard n 1 1 @ 1 0 10838802 -bayat n 1 2 @ ; 1 0 07227055 -bayberry n 2 2 @ #m 2 0 12330891 11741797 -bayberry_tallow n 1 2 @ #s 1 0 11742003 -bayberry_wax n 1 2 @ #s 1 0 11742003 -baycol n 1 2 @ ; 1 0 02998209 -bayer n 1 4 @ ~ %s ; 1 0 02748618 -bayes n 1 1 @ 1 0 10838997 -bayes'_postulate n 1 2 @ ; 1 0 05918704 -bayes'_theorem n 1 2 @ ; 1 0 05918379 -baykal n 1 2 @ #p 1 0 09242767 -bayonet n 1 2 @ + 1 1 02812949 -bayonne n 1 3 @ #p %p 1 0 09113207 -bayonne_bridge n 1 2 @ #p 1 0 02813089 -bayou n 1 1 @ 1 0 09217086 -bayrut n 1 2 @ #p 1 0 08957806 -bayt_lahm n 1 2 @ #p 1 0 08795232 -bazaar n 3 2 @ ~ 3 1 02813544 02813645 01118182 -bazar n 2 1 @ 2 0 02813645 02813544 -bazooka n 1 1 @ 1 0 02813752 -bb n 1 1 @ 1 0 02813874 -bb_gun n 1 1 @ 1 0 02814116 -bb_shot n 1 1 @ 1 0 02813874 -bbl n 1 3 @ #p %p 1 0 13619920 -bbs n 1 2 @ ; 1 0 02916684 -bd n 1 1 @ 1 0 06699012 -bdellium n 1 1 @ 1 0 14898273 -be n 1 2 @ #s 1 0 14631295 -be-all_and_end-all n 1 1 @ 1 0 05865454 -be_all_and_end_all n 1 1 @ 1 0 05865454 -beach n 1 5 @ ~ #p %s + 1 1 09217230 -beach_aster n 1 1 @ 1 0 11966617 -beach_ball n 1 1 @ 1 0 02814224 -beach_buggy n 1 1 @ 1 0 03256788 -beach_chair n 1 1 @ 1 0 03168217 -beach_erosion n 1 1 @ 1 0 13438006 -beach_flea n 1 2 @ #m 1 0 01993214 -beach_goldenrod n 1 1 @ 1 0 12017664 -beach_grass n 1 1 @ 1 0 12103349 -beach_heather n 1 2 @ #m 1 0 12376740 -beach_house n 1 1 @ 1 0 02814338 -beach_morning_glory n 1 1 @ 1 0 12828628 -beach_pancake n 1 1 @ 1 0 11837562 -beach_pea n 1 2 @ #m 1 0 12540250 -beach_plum n 2 3 @ #p %p 2 0 12639376 07751977 -beach_plum_bush n 1 2 @ %p 1 0 12639376 -beach_sand_verbena n 1 1 @ 1 0 11837743 -beach_strawberry n 1 2 @ #m 1 0 12630763 -beach_towel n 1 1 @ 1 0 02814428 -beach_waggon n 1 3 @ ~ %p 1 0 02814533 -beach_wagon n 1 3 @ ~ %p 1 0 02814533 -beach_wormwood n 1 2 @ #m 1 0 11931312 -beachball n 1 1 @ 1 0 02814224 -beachcomber n 1 1 @ 1 0 09844685 -beachfront n 1 1 @ 1 0 09217414 -beachhead n 2 1 @ 2 1 08689449 00036299 -beachwear n 1 1 @ 1 0 02814774 -beacon n 3 3 @ ~ + 3 1 07264213 04041930 02814860 -beacon_fire n 1 2 @ ~ 1 0 07264213 -beacon_hill n 1 2 @ #p 1 0 09096190 -beacon_light n 1 2 @ ~ 1 1 02814860 -bead n 3 3 @ ~ + 3 1 02815071 13901585 02815237 -bead_and_quirk n 1 1 @ 1 0 04035481 -bead_fern n 1 2 @ #m 1 0 13198914 -bead_tree n 1 2 @ #m 1 0 12553742 -beaded_lizard n 1 2 @ #m 1 0 01692523 -beading n 2 2 @ ~ 2 0 02815389 02815237 -beading_plane n 1 1 @ 1 0 02815478 -beadle n 2 2 @ ; 2 1 09844770 10839131 -beads n 1 2 @ ~ 1 0 02815600 -beadsman n 1 1 @ 1 1 09844898 -beadwork n 2 2 @ ~ 2 0 02815389 02815237 -beagle n 1 1 @ 1 0 02088364 -beagling n 1 1 @ 1 0 00452864 -beak n 4 5 @ ~ #p + ; 4 2 01758510 01758308 12875594 05598707 -beaked_hazelnut n 1 1 @ 1 0 12289585 -beaked_parsley n 1 3 @ #m %p 1 0 12932706 -beaked_salmon n 1 2 @ #m 1 0 02529293 -beaked_whale n 1 3 @ ~ #m 1 0 02068206 -beaker n 2 1 @ 2 0 02815834 02815749 -beam n 7 5 @ ~ %s + ; 7 4 06792645 02815950 11428379 11428023 05136546 02816381 02777292 -beam-ends n 1 2 @ ; 1 0 08511017 -beam_balance n 1 2 @ ~ 1 0 02816494 -beam_of_light n 1 2 @ ~ 1 0 11428023 -beam_scale n 1 1 @ 1 0 04312154 -bean n 4 6 @ ~ #m #p %p + 4 1 07724943 13136316 12556307 05539454 -bean-caper_family n 1 3 @ #m %m 1 0 12720532 -bean_aphid n 1 2 @ #m 1 0 02252972 -bean_beetle n 1 2 @ #m 1 0 02166229 -bean_blight n 1 1 @ 1 0 14217253 -bean_caper n 1 2 @ #m 1 0 12721122 -bean_counter n 1 1 @ 1 0 09845016 -bean_curd n 1 2 @ %s 1 0 07709881 -bean_dip n 1 1 @ 1 0 07582811 -bean_plant n 1 4 @ ~ #m %p 1 0 12556307 -bean_sprout n 1 1 @ 1 0 07719616 -bean_tostada n 1 1 @ 1 0 07881525 -bean_town n 1 4 @ #p %p - 1 0 09095751 -bean_tree n 1 2 @ ~ 1 0 13108131 -bean_trefoil n 1 2 @ #m 1 0 12505752 -bean_weevil n 1 2 @ #m 1 0 02182642 -beanbag n 1 1 @ 1 0 02816656 -beanball n 1 1 @ 1 0 00107551 -beaner n 1 2 @ + 1 0 00107551 -beanfeast n 1 2 @ ; 1 0 08254195 -beanie n 1 1 @ 1 0 02816768 -beano n 1 1 @ 1 0 00504660 -beanstalk n 1 1 @ 1 0 13129938 -beantown n 1 4 @ #p %p - 1 0 09095751 -beany n 1 1 @ 1 0 02816768 -bear n 2 4 ! @ ~ #m 2 1 02131653 09845191 -bear's-paw_fern n 1 2 @ #m 1 0 13174354 -bear's_breech n 1 1 @ 1 0 12812478 -bear's_breeches n 1 1 @ 1 0 12812478 -bear's_ear n 1 1 @ 1 0 12091806 -bear's_foot n 1 1 @ 1 0 11734093 -bear's_grape n 1 1 @ 1 0 12231358 -bear_cat n 1 2 @ #m 1 0 02509815 -bear_claw n 3 1 @ 3 0 07692887 02816895 02156320 -bear_cub n 1 1 @ 1 0 01322983 -bear_grass n 4 2 @ #m 4 0 12484029 12483625 12480004 12465557 -bear_hug n 2 1 @ 2 0 00813220 00174782 -bear_market n 1 1 @ 1 0 08073130 -bear_oak n 1 1 @ 1 0 12272735 -bear_paw n 1 1 @ 1 0 07692887 -bearberry n 3 4 @ ~ #m %p 3 0 13141564 12757303 12231192 -bearberry_willow n 1 2 @ #m 1 0 12730776 -bearcat n 1 2 @ #m 1 0 02136103 -beard n 5 5 @ ~ #p %p + 5 1 05261566 13090594 09845401 02416270 01955318 -beard_lichen n 1 2 @ #m 1 0 12989938 -beard_moss n 1 2 @ #m 1 0 12989938 -beard_worm n 1 2 @ #m 1 0 01928865 -bearded_darnel n 1 1 @ 1 0 12125183 -bearded_iris n 1 3 @ ~ #m 1 0 12412355 -bearded_seal n 1 2 @ #m 1 0 02080713 -bearded_vulture n 1 1 @ 1 0 01617443 -bearded_wheatgrass n 1 1 @ 1 0 12105828 -beardless_iris n 1 3 @ ~ #m 1 0 12412606 -bearer n 4 2 @ + 4 2 09897696 10311243 10395073 10179911 -bearer_bond n 1 1 @ 1 0 13338066 -bearer_of_the_sword n 1 2 @ ; 1 0 08010559 -bearing n 6 4 @ ~ #p + 6 3 13795695 08680888 04910377 05002822 03008565 02817031 -bearing_brass n 1 1 @ 1 0 14773989 -bearing_false_witness n 1 1 @ 1 0 00772381 -bearing_metal n 1 1 @ 1 0 14719597 -bearing_rein n 1 1 @ 1 0 02817251 -bearing_wall n 1 1 @ 1 0 02817386 -bearnaise n 1 1 @ 1 0 07835547 -bearskin n 2 1 @ 2 0 14764518 02817516 -bearwood n 1 2 @ %p 1 0 13141564 -beast n 2 7 @ ~ #m %s %p + - 2 2 00015388 09845589 -beast_of_burden n 1 2 @ ~ 1 0 01317089 -beastliness n 2 3 @ + ; 2 0 04845684 04781967 -beat n 10 5 @ ~ #m + ; 10 3 08507381 07400906 07086518 11477710 09845849 07376937 07094093 05058893 00547616 00314094 -beat_generation n 1 2 @ %m 1 0 08369615 -beater n 2 3 @ ~ + 2 0 09845737 02817650 -beatification n 3 4 @ ~ + ; 3 0 13987719 01265475 01040128 -beating n 2 3 @ ~ + 2 1 01176219 01160729 -beating-reed_instrument n 1 2 @ ~ 1 0 02817799 -beatitude n 2 3 @ ~ #p 2 0 13987719 06301012 -beatles n 1 2 @ %m 1 0 08369920 -beatnik n 1 2 @ #m 1 1 09845849 -beatniks n 1 2 @ %m 1 0 08369615 -beatrice n 1 1 @ 1 0 09589876 -beatrice_lillie n 1 1 @ 1 0 11132117 -beatrice_webb n 1 1 @ 1 0 11378087 -beats n 1 2 @ %m 1 0 08369615 -beats_per_minute n 1 3 @ #p ; 1 0 15286042 -beau n 2 2 @ ~ 2 1 09871364 09991026 -beau_brummell n 1 1 @ 1 0 10868397 -beau_geste n 1 1 @ 1 0 01228544 -beau_ideal n 1 2 @ ~ 1 0 05924519 -beau_monde n 1 2 @ %m 1 0 08387930 -beaufort_scale n 2 2 @ %p 2 0 13850674 13648947 -beaufort_sea n 1 2 @ #p 1 0 09217508 -beaugregory n 1 2 @ #m 1 0 02606751 -beaujolais n 1 1 @ 1 0 07894102 -beaumont n 3 2 @ #p 3 0 10839469 10839329 09143205 -beaumontia n 1 3 @ #m %m 1 0 11770969 -beaumontia_grandiflora n 1 2 @ #m 1 0 11771147 -beaut n 1 1 @ 1 0 05925702 -beauteousness n 1 2 @ + 1 0 04685396 -beautician n 1 3 @ ~ + 1 0 09845999 -beautification n 1 3 @ ~ + 1 0 00261604 -beauty n 3 5 ! @ ~ = + 3 3 04683814 10613996 05925702 -beauty_bush n 1 2 @ #m 1 0 12672631 -beauty_consultant n 1 1 @ 1 0 09846142 -beauty_parlor n 1 1 @ 1 0 04131208 -beauty_parlour n 1 1 @ 1 0 04131208 -beauty_quark n 1 1 @ 1 0 09227530 -beauty_salon n 1 1 @ 1 0 04131208 -beauty_shop n 1 1 @ 1 0 04131208 -beauty_sleep n 1 1 @ 1 0 15273875 -beauty_spot n 1 1 @ 1 0 02818027 -beauty_treatment n 1 2 @ ~ 1 0 00261797 -beauvoir n 1 1 @ 1 0 10839617 -beaux_arts n 1 3 @ ~ - 1 0 06156968 -beaver n 7 5 @ ~ #m #p + 7 0 14764617 09745229 05262120 03237416 02818254 02818135 02363005 -beaver_board n 1 1 @ 1 0 02818402 -beaver_fur n 1 1 @ 1 0 14764617 -beaver_rat n 1 2 @ #m 1 0 02335231 -beaver_state n 1 3 @ #p %p 1 0 09133010 -beaverbrook n 1 1 @ 1 0 10839791 -bebop n 1 2 @ + 1 0 07063101 -bechamel n 1 2 @ ~ 1 0 07837362 -bechamel_sauce n 1 2 @ ~ 1 0 07837362 -bechtel_crab n 1 1 @ 1 0 12635955 -bechuana n 1 2 @ #m 1 0 09693618 -beck n 1 1 @ 1 0 06877008 -becker_muscular_dystrophy n 1 1 @ 1 0 14161075 -becket n 2 2 @ ; 2 0 10840021 02818507 -becket_bend n 1 1 @ 1 0 04189092 -beckett n 1 1 @ 1 0 10840354 -beckley n 1 2 @ #p 1 0 09155692 -beckman_thermometer n 1 1 @ 1 0 02818687 -becomingness n 1 3 ! @ + 1 0 04900597 -becquerel n 1 1 @ 1 0 10840563 -bed n 8 6 @ ~ #p %p + ; 8 3 02818832 02819474 09217638 09217867 08659076 03650173 02819881 02819697 -bed-and-breakfast n 1 1 @ 1 0 02820085 -bed-ground n 1 1 @ 1 0 08499357 -bed-wetting n 1 1 @ 1 0 13438088 -bed_and_breakfast n 1 1 @ 1 0 02820085 -bed_bug n 1 2 @ #m 1 0 02240517 -bed_check n 1 1 @ 1 0 05825688 -bed_clothing n 1 2 @ ~ 1 0 02820210 -bed_cover n 1 2 @ ~ 1 0 02822220 -bed_covering n 1 2 @ ~ 1 0 02822220 -bed_ground n 1 1 @ 1 0 08499357 -bed_jacket n 1 1 @ 1 0 02820675 -bed_linen n 1 2 @ ~ 1 1 02821030 -bed_of_flowers n 1 2 @ ~ 1 0 03368352 -bed_of_roses n 1 2 @ #p 1 0 04109471 -bed_pillow n 1 1 @ 1 0 02821328 -bed_rest n 1 1 @ 1 0 01064468 -bed_sheet n 1 2 @ ~ 1 0 04188179 -bed_wetter n 1 1 @ 1 0 09846586 -beda n 1 2 @ ; 1 0 10840769 -bedbug n 1 2 @ #m 1 0 02240517 -bedchamber n 1 4 @ ~ #p %p 1 0 02821627 -bedclothes n 1 2 @ ~ 1 0 02820210 -bedcover n 1 2 @ ~ 1 0 02822220 -bedder n 1 1 @ 1 0 13083461 -bedding n 2 2 @ ~ 2 1 02820210 02820432 -bedding_geranium n 1 2 @ #m 1 0 12687698 -bedding_material n 1 1 @ 1 0 02820432 -bedding_plant n 1 1 @ 1 0 13083461 -bede n 1 2 @ ; 1 0 10840769 -bedesman n 1 1 @ 1 0 09844898 -bedevilment n 1 2 @ + 1 0 00425278 -bedfellow n 2 1 @ 2 0 09846355 09846265 -bedford_cord n 1 1 @ 1 0 02820556 -bedframe n 1 3 @ #p %p 1 0 02822579 -bedground n 1 1 @ 1 1 08499357 -bedlam n 2 2 @ ~ 2 0 13976322 02820798 -bedlamite n 1 1 @ 1 0 10276942 -bedlington_terrier n 1 1 @ 1 0 02093647 -bedloe's_island n 1 2 @ #p 1 0 09114401 -bedouin n 1 1 @ 1 0 09846469 -bedpan n 1 1 @ 1 0 02821202 -bedpost n 1 2 @ #p 1 1 02821415 -bedrest n 1 1 @ 1 0 01064468 -bedrich_smetana n 1 1 @ 1 0 11305159 -bedrock n 2 2 @ ~ 2 0 09218044 05871362 -bedroll n 1 1 @ 1 0 02821543 -bedroom n 1 4 @ ~ #p %p 1 1 02821627 -bedroom_community n 1 1 @ 1 0 08555001 -bedroom_furniture n 1 2 @ ~ 1 0 02821943 -bedroom_set n 1 1 @ 1 1 08007667 -bedroom_suite n 1 1 @ 1 0 08007667 -bedside n 1 1 @ 1 1 08649711 -bedside_manner n 1 1 @ 1 0 04910562 -bedsit n 1 1 @ 1 0 02822064 -bedsitter n 1 1 @ 1 0 02822064 -bedsitting_room n 1 1 @ 1 0 02822064 -bedsore n 1 1 @ 1 0 14212126 -bedspread n 1 2 @ ~ 1 0 02822220 -bedspring n 1 4 @ ~ #p ; 1 0 02822399 -bedstead n 1 3 @ #p %p 1 1 02822579 -bedstraw n 1 3 @ ~ #m 1 0 12665048 -bedtime n 1 2 @ ~ 1 1 15168475 -beduin n 1 1 @ 1 0 09846469 -bedwetter n 1 1 @ 1 0 09846586 -bee n 2 3 @ ~ #m 2 1 02206856 07975909 -bee_balm n 3 3 @ #m %p 3 0 12858871 12858397 12854600 -bee_beetle n 1 1 @ 1 0 02171164 -bee_eater n 1 2 @ #m 1 0 01828970 -bee_fly n 1 2 @ #m 1 0 02195819 -bee_house n 1 2 @ %p 1 0 02727426 -bee_killer n 1 2 @ #m 1 0 02196119 -bee_moth n 1 2 @ #m 1 0 02289307 -bee_orchid n 1 1 @ 1 0 12074867 -bee_sting n 1 1 @ 1 0 14287741 -beebalm n 3 3 @ #m %p 3 0 12858871 12858397 12854600 -beebread n 1 1 @ 1 1 14774090 -beech n 2 6 @ ~ #m #s %s %p 2 1 12260799 12261179 -beech_family n 1 3 @ #m %m 1 0 12260208 -beech_fern n 1 3 @ ~ #m 1 0 13230662 -beech_marten n 1 1 @ 1 0 02450677 -beech_tree n 1 5 @ ~ #m %s %p 1 0 12260799 -beecher n 1 1 @ 1 0 10841065 -beechnut n 1 2 @ #p 1 0 07771082 -beechwood n 1 2 @ #s 1 0 12261179 -beef n 3 5 @ ~ #p %p + 3 2 02404186 07663592 07209965 -beef_bourguignonne n 1 1 @ 1 0 07862461 -beef_broth n 1 1 @ 1 0 07585015 -beef_burrito n 1 1 @ 1 0 07881117 -beef_cattle n 1 2 @ ~ 1 1 02404186 -beef_fondue n 1 1 @ 1 0 07868045 -beef_goulash n 1 1 @ 1 0 07590752 -beef_jerky n 1 1 @ 1 0 07664936 -beef_loin n 1 3 @ #p %p 1 0 07658814 -beef_man n 1 1 @ 1 1 09902017 -beef_neck n 1 1 @ 1 0 07661486 -beef_patty n 1 1 @ 1 0 07664121 -beef_plant n 1 1 @ 1 0 11826715 -beef_roast n 1 1 @ 1 0 07663796 -beef_stew n 1 1 @ 1 0 07592481 -beef_stock n 1 1 @ 1 0 07585015 -beef_stroganoff n 1 1 @ 1 0 07878145 -beef_tallow n 1 1 @ 1 0 14774397 -beef_tea n 1 1 @ 1 0 07810633 -beef_tenderloin n 1 2 @ %p 1 0 07659968 -beef_tongue n 1 1 @ 1 0 07653126 -beef_wellington n 1 1 @ 1 0 07862611 -beefalo n 1 1 @ 1 0 02407763 -beefburger n 1 3 @ ~ %p 1 0 07697100 -beefcake n 1 1 @ 1 0 02822762 -beefeater n 1 1 @ 1 0 10803691 -beefsteak n 1 2 @ ~ 1 0 07658168 -beefsteak_begonia n 1 1 @ 1 0 12361560 -beefsteak_fungus n 1 2 @ #m 1 0 13053608 -beefsteak_geranium n 1 1 @ 1 0 12361946 -beefsteak_morel n 1 2 @ #m 1 0 13038068 -beefsteak_plant n 2 2 @ #m 2 0 12860978 11826715 -beefsteak_tomato n 1 1 @ 1 0 07734183 -beefwood n 5 5 @ ~ #m #s %s 5 0 12774299 12225769 12225349 12223160 12218490 -beehive n 4 4 @ ~ #p %p 4 1 02823030 09218159 05257393 02822865 -beehive_state n 1 3 @ #p %p 1 0 09147046 -beekeeper n 1 1 @ 1 0 09846755 -beekeeping n 1 1 @ 1 0 00916285 -beeline n 1 1 @ 1 0 08616872 -beelzebub n 1 2 @ ; 1 0 09543353 -beep n 1 2 @ + 1 0 07377082 -beeper n 1 2 @ + 1 0 02823124 -beer n 1 3 @ ~ + 1 1 07886849 -beer_barrel n 1 1 @ 1 0 02823335 -beer_bottle n 1 1 @ 1 1 02823428 -beer_can n 1 1 @ 1 0 02823510 -beer_drinker n 1 1 @ 1 0 09846894 -beer_garden n 1 1 @ 1 0 02823586 -beer_glass n 1 1 @ 1 0 02823750 -beer_hall n 1 1 @ 1 0 02823848 -beer_keg n 1 1 @ 1 0 02823335 -beer_maker n 1 1 @ 1 0 09874118 -beer_mat n 1 1 @ 1 0 02823964 -beer_mug n 1 1 @ 1 0 02824058 -beerbohm n 1 1 @ 1 0 10841241 -beeswax n 1 4 @ ~ %s + 1 0 15094824 -beet n 2 4 @ ~ #m #p 2 0 11832214 07719839 -beet_armyworm n 1 2 @ #m 1 0 02297938 -beet_blight n 1 1 @ 1 0 14216152 -beet_green n 1 2 @ #p 1 0 07719980 -beet_sugar n 2 1 @ 2 0 14774491 07596258 -beethoven n 2 2 @ + 2 0 10841405 07278014 -beetle n 2 4 @ ~ #m + 2 1 02164464 03715386 -beetleweed n 1 2 @ #m 1 0 12251278 -beetroot n 2 4 @ ~ #p %p 2 0 11832480 07719839 -befooling n 1 1 @ 1 0 06716992 -befoulment n 1 2 @ + 1 0 14498404 -befuddlement n 1 2 @ + 1 0 05685030 -begetter n 1 3 @ ~ + 1 0 10080869 -beggar n 1 3 @ ~ + 1 1 09847010 -beggar's-ticks n 1 4 @ ~ #m %p 1 0 11940006 -beggar's_lice n 2 3 @ ~ #m 2 0 12820113 12526516 -beggar-my-neighbor n 1 1 @ 1 0 00490155 -beggar-my-neighbor_policy n 1 1 @ 1 0 05902014 -beggar-my-neighbor_strategy n 1 1 @ 1 0 05902014 -beggar-my-neighbour n 1 1 @ 1 0 00490155 -beggar-my-neighbour_policy n 1 1 @ 1 0 05902014 -beggar-my-neighbour_strategy n 1 1 @ 1 0 05902014 -beggar-ticks n 2 5 @ ~ #m #p %p 2 0 11940478 11940006 -beggar_lice n 2 3 @ ~ #m 2 0 12820113 12526516 -beggarman n 1 1 @ 1 0 09847267 -beggarweed n 1 1 @ 1 0 12526754 -beggarwoman n 1 1 @ 1 0 09847344 -beggary n 2 2 @ + 2 1 07187996 14494032 -begging n 1 1 @ 1 0 07187996 -begin n 1 1 @ 1 0 10841657 -beginner n 2 3 @ ~ + 2 1 10363913 10107303 -beginning n 5 4 ! @ ~ + 5 5 07290905 15265518 05868051 08507558 00235435 -beginning_rhyme n 1 1 @ 1 0 07097094 -begonia n 1 3 @ ~ #m 1 0 12360108 -begonia_cheimantha n 1 1 @ 1 0 12360958 -begonia_cocchinea n 1 1 @ 1 0 12361135 -begonia_dregei n 1 1 @ 1 0 12361350 -begonia_erythrophylla n 1 1 @ 1 0 12361560 -begonia_family n 1 3 @ #m %m 1 0 12359734 -begonia_feastii n 1 1 @ 1 0 12361560 -begonia_heracleifolia n 1 1 @ 1 0 12361754 -begonia_rex n 1 1 @ 1 0 12361946 -begonia_semperflorens n 1 1 @ 1 0 12362274 -begonia_socotrana n 1 1 @ 1 0 12362514 -begonia_tuberhybrida n 1 1 @ 1 0 12362668 -begoniaceae n 1 3 @ #m %m 1 0 12359734 -beguilement n 2 2 @ + 2 0 04686388 00515414 -beguiler n 2 3 @ ~ + 2 0 09998101 09910374 -beguine n 3 3 @ #m ; 3 0 10602695 07054994 00535321 -begum n 1 1 @ 1 0 09847425 -behalf n 2 1 @ 2 2 00721660 05143300 -behavior n 4 3 @ ~ ; 4 3 01220984 14008342 04897762 01221254 -behavior_modification n 1 2 @ ~ 1 0 00700979 -behavior_therapy n 1 2 @ ~ 1 0 00700979 -behaviorism n 1 3 @ ~ + 1 0 06139764 -behaviorist n 1 2 @ + 1 0 09608520 -behavioristic_psychology n 1 2 @ ~ 1 0 06139764 -behaviour n 4 3 @ ~ ; 4 0 14008342 04897762 01221254 01220984 -behaviourism n 1 3 @ ~ + 1 0 06139764 -behaviourist n 1 2 @ + 1 0 09608520 -behaviouristic_psychology n 1 2 @ ~ 1 0 06139764 -beheading n 2 1 @ 2 0 01165224 00228181 -behemoth n 2 1 @ 2 0 10128909 09938991 -behest n 1 1 @ 1 0 07170572 -behind n 1 2 @ #p 1 1 05559256 -behmen n 1 1 @ 1 0 10854397 -behmenism n 1 1 @ 1 0 06188146 -beholder n 1 3 @ ~ + 1 0 09626589 -beholding n 1 2 @ ~ 1 0 05710860 -behrens n 1 1 @ 1 0 10841880 -behring n 1 1 @ 1 0 10846913 -beige n 1 2 @ + 1 0 04973291 -beigel n 1 3 @ ~ ; 1 0 07693725 -beignet n 1 1 @ 1 0 07639716 -beijing n 1 3 @ #p %p 1 0 08724726 -beijing_dialect n 1 1 @ 1 0 06930093 -being n 2 8 ! @ ~ %s %p = + - 2 2 13954253 00004475 -beingness n 1 3 @ ~ = 1 0 13954253 -beira n 1 2 @ #p 1 0 08971404 -beirut n 1 2 @ #p 1 0 08957806 -bel n 2 2 @ ; 2 0 13713521 09516881 -bel-merodach n 1 2 @ ; 1 0 09519288 -bel_and_the_dragon n 1 2 @ #p 1 0 06459173 -bel_canto n 1 1 @ 1 1 00546216 -bel_esprit n 1 1 @ 1 0 09847629 -bela_bartok n 1 1 @ 1 0 10837258 -bela_ferenc_blasko n 1 1 @ 1 0 11144431 -bela_lugosi n 1 1 @ 1 0 11144431 -belamcanda n 1 3 @ #m %m 1 0 12415911 -belamcanda_chinensis n 1 2 @ #m 1 0 12416073 -belarus n 1 6 @ #m #p %m %p + 1 0 09011151 -belarusian n 1 2 @ + 1 0 06944480 -belarusian_monetary_unit n 1 2 @ ~ 1 0 13699925 -belau n 1 3 @ #p %p 1 0 08977948 -belay n 1 2 @ + 1 0 09218494 -belaying_pin n 1 2 @ ; 1 0 02824152 -belch n 1 2 @ + 1 1 00117578 -belching n 2 1 @ 2 2 00117810 00117578 -beldam n 2 1 @ 2 0 10155485 09847543 -beldame n 2 1 @ 2 0 10155485 09847543 -beleaguering n 1 3 @ ~ ; 1 0 01075117 -belem n 1 2 @ #p 1 0 08854855 -belemnite n 1 3 @ #m + 1 0 01973723 -belemnitidae n 1 3 @ #m %m 1 0 01973566 -belemnoidea n 1 3 @ #m %m 1 0 01973375 -belfast n 1 2 @ #p 1 0 08888479 -belfry n 2 3 @ ~ #p 2 1 02946127 02824319 -belgian n 1 4 @ ~ #m + 1 0 09694109 -belgian_beef_stew n 1 1 @ 1 0 07863644 -belgian_capital n 1 2 @ #p 1 0 08850450 -belgian_congo n 1 4 @ #p %m %p 1 0 08734385 -belgian_endive n 1 2 @ #p 1 0 07731767 -belgian_franc n 1 2 @ %p 1 0 13676897 -belgian_griffon n 1 2 @ ~ 1 0 02112497 -belgian_hare n 1 1 @ 1 0 02328009 -belgian_sheepdog n 1 2 @ ~ 1 0 02104882 -belgian_shepherd n 1 2 @ ~ 1 0 02104882 -belgian_waffle n 1 1 @ 1 0 07641807 -belgique n 1 6 @ #m #p %m %p - 1 0 08849753 -belgium n 1 7 @ #m #p %m %p + - 1 0 08849753 -belgrade n 1 2 @ #p 1 0 08817418 -belief n 2 4 ! @ ~ + 2 2 05941423 05916739 -believability n 1 4 @ ~ = + 1 0 04782878 -believer n 2 4 @ ~ #m + 2 2 09848489 09847727 -believing n 1 2 @ ~ 1 0 05726093 -belisarius n 1 1 @ 1 0 10842030 -belittling n 2 1 @ 2 0 06718434 01220074 -belize n 1 2 @ #p 1 0 08737521 -belize_dollar n 1 1 @ 1 0 13672274 -bell n 10 7 @ ~ #m #p %p + ; 10 3 02824448 03222516 07377244 15227593 13886260 10842575 10842376 10842213 03017168 02824858 -bell-bottoms n 1 2 @ ; 1 0 02825442 -bell-like_call n 1 1 @ 1 0 06796942 -bell-shaped_curve n 1 2 @ ; 1 0 06026088 -bell_apple n 1 2 @ #p 1 0 07754279 -bell_arch n 1 1 @ 1 0 02825153 -bell_book n 1 1 @ 1 0 06504326 -bell_buoy n 1 1 @ 1 0 07266573 -bell_captain n 1 1 @ 1 0 09848916 -bell_cot n 1 1 @ 1 0 02825657 -bell_cote n 1 1 @ 1 0 02825657 -bell_deck n 1 1 @ 1 0 02825775 -bell_founder n 1 1 @ 1 0 09849167 -bell_foundry n 1 1 @ 1 0 02825872 -bell_gable n 1 1 @ 1 0 02825961 -bell_glass n 1 1 @ 1 0 02826068 -bell_heather n 2 1 @ 2 0 12228546 12228387 -bell_jar n 1 1 @ 1 0 02826068 -bell_magpie n 1 2 @ #m 1 0 01583495 -bell_metal n 1 1 @ 1 0 14774575 -bell_morel n 1 3 @ ~ #m 1 0 13032923 -bell_pepper n 2 4 @ #m %s %p 2 0 12901264 07720875 -bell_push n 1 1 @ 1 0 02826589 -bell_ringer n 3 2 @ ; 3 0 10714851 09849256 00064789 -bell_ringing n 3 2 @ ~ 3 0 07446920 07245885 00544441 -bell_seat n 1 1 @ 1 0 02826683 -bell_shape n 1 1 @ 1 0 13886260 -bell_tent n 1 1 @ 1 0 02826812 -bell_toad n 1 2 @ #m 1 0 01644900 -bell_tower n 1 3 @ ~ %p 1 0 02826886 -bella_sombra n 1 1 @ 1 0 11855842 -belladonna n 2 2 @ #m 2 0 12898342 02825004 -belladonna_lily n 1 2 @ #m 1 0 12419394 -belladonna_plant n 1 2 @ #m 1 0 12898342 -bellarmine n 2 1 @ 2 0 10842730 02825240 -bellarmino n 1 1 @ 1 0 10842730 -bellbird n 1 2 @ #m 1 0 01552034 -bellbottom_pants n 1 2 @ ; 1 0 02825442 -bellbottom_trousers n 1 2 @ ; 1 0 02825442 -bellboy n 1 1 @ 1 0 09848775 -belle n 1 1 @ 1 1 09849012 -belle_de_nuit n 1 1 @ 1 0 12827537 -belle_isle_cress n 1 2 @ #p 1 0 11873845 -belle_miriam_silverman n 1 1 @ 1 0 11300326 -belleau_wood n 1 3 @ #p ; 1 0 01271428 -bellerophon n 1 2 @ ; 1 0 09500003 -belles-lettres n 1 1 @ 1 0 06366269 -belles_lettres n 1 1 @ 1 0 06366269 -bellflower n 1 3 @ ~ #m 1 0 12036939 -bellflower_family n 1 3 @ #m %m 1 0 12036533 -bellhop n 1 1 @ 1 1 09848775 -bellicoseness n 1 1 @ 1 0 04643875 -bellicosity n 1 1 @ 1 0 04643875 -belligerence n 2 3 @ ~ + 2 0 07548695 04643662 -belligerency n 2 3 @ ~ + 2 0 07548695 00964781 -belligerent n 1 3 @ ~ + 1 0 09939313 -belling n 1 1 @ 1 0 07054122 -bellingham n 1 2 @ #p 1 0 09153710 -bellini n 1 1 @ 1 0 10842923 -bellis n 1 3 @ #m %m 1 0 11939380 -bellis_perennis n 1 1 @ 1 0 11939699 -bellman n 1 1 @ 1 0 09848775 -belloc n 1 1 @ 1 0 10843035 -bellow n 2 2 @ + 2 1 07121361 10843228 -bellower n 1 2 @ ~ 1 0 10533983 -bellowing n 1 2 @ + 1 0 07121361 -bellows n 1 2 @ ; 1 0 02826259 -bellows_fish n 1 2 @ #m 1 0 01457082 -bellpull n 1 1 @ 1 0 02826459 -bells_of_ireland n 1 2 @ #m 1 0 12857779 -bellwether n 2 1 @ 2 0 09849349 02412337 -bellwort n 1 3 @ ~ #m 1 0 12475035 -belly n 5 5 @ ~ #p %p + 5 2 05556943 05555917 13895262 08588486 02157415 -belly_button n 1 2 @ #p 1 0 05556595 -belly_dance n 1 2 @ + 1 0 00530554 -belly_dancer n 1 1 @ 1 0 09849462 -belly_dancing n 1 1 @ 1 0 00530554 -belly_flop n 1 1 @ 1 0 00443517 -belly_flopper n 1 1 @ 1 0 00443517 -belly_laugh n 2 1 @ 2 0 07127790 06778925 -belly_whop n 1 1 @ 1 0 00443517 -belly_whopper n 1 1 @ 1 0 00443517 -bellyache n 1 2 @ #p 1 0 14327266 -bellyacher n 1 3 @ ~ + 1 0 10776339 -bellyband n 2 1 @ 2 0 02827148 02827020 -bellybutton n 1 2 @ #p 1 0 05556595 -bellyful n 1 1 @ 1 0 05120000 -belmont n 1 2 @ #p 1 0 02827289 -belmont_park n 1 2 @ #p 1 0 02827289 -belmont_stakes n 1 1 @ 1 0 07462405 -belo_horizonte n 1 2 @ #p 1 0 08855126 -belonging n 1 2 @ ~ 1 0 07529817 -belongings n 1 3 @ ~ + 1 0 13244109 -belonidae n 1 3 @ #m %m 1 0 02549796 -belorussia n 1 5 @ #m #p %m %p 1 0 09011151 -belorussian n 1 2 @ #m 1 0 09695979 -belostomatidae n 1 3 @ #m %m 1 0 02242004 -beloved n 1 2 @ + 1 0 09849598 -belsen n 1 1 @ 1 0 02827466 -belshazzar n 1 2 @ ; 1 1 10843425 -belt n 7 5 @ ~ %s %p + 7 4 02827883 02827606 08509786 07410207 09452653 02828115 00133338 -belt_ammunition n 1 1 @ 1 0 02828115 -belt_bag n 1 2 @ ~ 1 0 04544450 -belt_buckle n 1 3 @ #p %p 1 1 02828299 -belt_maker n 1 1 @ 1 0 09849801 -belted_ammunition n 1 1 @ 1 0 02828115 -belted_kingfisher n 1 2 @ #m 1 0 01828096 -belted_sandfish n 1 2 @ #m 1 0 02568807 -belting n 1 2 @ #s 1 0 02828427 -beltway n 1 1 @ 1 0 02828648 -beluga n 2 3 @ #m %p 2 0 02640857 02072798 -beluga_caviar n 1 2 @ #p 1 0 07799738 -belvedere n 2 2 @ #m 2 0 11831874 02828555 -bema n 1 3 @ #p %p 1 0 03004824 -bemidji n 1 2 @ #p 1 0 09102415 -bemisia n 1 3 @ #m %m 1 0 02247363 -bemisia_tabaci n 1 2 @ #m 1 0 02247655 -bemusement n 1 2 @ + 1 0 05685030 -ben n 1 2 @ ; 1 0 09218641 -ben_gurion n 1 1 @ 1 0 10844805 -ben_hecht n 1 1 @ 1 0 11037966 -ben_hogan n 1 1 @ 1 0 11055454 -ben_jonson n 1 1 @ 1 0 11091184 -ben_shahn n 1 1 @ 1 0 11295033 -ben_sira n 1 2 @ #p 1 0 06460295 -benadryl n 1 1 @ 1 0 03203225 -bench n 7 7 @ ~ #m #p %m + ; 7 4 02828884 09456207 08166187 04600486 08328700 08209519 02829116 -bench_clamp n 1 1 @ 1 0 02829246 -bench_hook n 1 1 @ 1 0 02829353 -bench_lathe n 1 1 @ 1 0 02829510 -bench_mark n 1 1 @ 1 0 07259145 -bench_press n 2 2 @ ~ 2 1 00626574 02829596 -bench_vise n 1 3 @ ~ %p 1 0 04538552 -bench_warmer n 1 2 @ ; 1 0 09849874 -bench_warrant n 1 3 @ ~ ; 1 0 06547615 -benchley n 1 1 @ 1 0 10843705 -benchmark n 2 1 @ 2 0 07261143 07259145 -bend n 6 5 @ ~ #p + ; 6 3 13869327 07310991 02829696 13907415 09133364 02830013 -bend_dexter n 1 1 @ 1 0 02830013 -bend_sinister n 1 1 @ 1 0 06795290 -bendability n 1 3 @ ~ + 1 0 05022709 -benday_process n 1 1 @ 1 0 05665625 -bender n 3 2 @ + 3 0 02830157 00511041 00107875 -bending n 3 2 @ ~ 3 0 07310991 05011277 00405206 -bendopa n 1 2 @ ; 1 0 14605132 -bends n 1 1 @ 1 0 14068344 -bendy_tree n 1 2 @ #m 1 0 12188635 -benedetto_caetani n 1 1 @ 1 0 10856799 -benedetto_odescalchi n 1 1 @ 1 0 11072396 -benedick n 1 1 @ 1 0 09849990 -benedict n 3 1 @ 3 0 10844401 10843858 09849990 -benedict_arnold n 1 1 @ 1 0 10823529 -benedict_de_spinoza n 1 1 @ 1 0 11311450 -benedict_xiv n 1 1 @ 1 0 10844031 -benedict_xv n 1 1 @ 1 0 10844231 -benedictine n 2 3 @ #m + 2 0 10112434 07908812 -benedictine_order n 1 2 @ %m 1 0 08148601 -benediction n 2 2 @ ~ 2 1 01043693 07189411 -benefaction n 2 2 @ + 2 0 13270260 01226679 -benefactive_role n 1 1 @ 1 0 06332545 -benefactor n 1 2 @ ~ 1 0 09608709 -benefactress n 1 1 @ 1 0 09609155 -benefice n 1 3 @ ~ + 1 0 13248087 -beneficence n 2 5 ! @ ~ = + 2 0 07545833 04840537 -beneficiary n 2 3 @ ~ + 2 1 09850121 06332545 -beneficiation n 1 3 @ + - 1 0 13516312 -benefit n 3 3 @ ~ + 3 3 13296899 05142641 06892534 -benefit_album n 1 1 @ 1 0 06592421 -benefit_concert n 1 1 @ 1 0 06892657 -benefit_of_clergy n 1 1 @ 1 0 01139490 -benelux n 1 2 @ %m 1 0 08305766 -benet n 2 1 @ 2 0 10844667 10844527 -benevolence n 3 4 ! @ ~ + 3 0 07545717 04840285 01226679 -benford's_law n 1 1 @ 1 0 05875392 -bengal n 1 1 @ 1 0 08710535 -bengal_bean n 1 2 @ %p 1 0 12550408 -bengal_kino n 1 1 @ 1 0 14901265 -bengal_light n 1 1 @ 1 0 07264484 -bengal_rose n 1 1 @ 1 0 12621260 -bengal_tiger n 1 1 @ 1 0 02129837 -bengali n 3 4 @ #m + ; 3 0 09692430 08483353 06970946 -benghal_bean n 1 2 @ %p 1 0 12550408 -benghazi n 1 2 @ #p 1 0 08960363 -benign_prostatic_hyperplasia n 1 1 @ 1 0 14368917 -benign_tumor n 1 2 @ ~ 1 0 14236226 -benign_tumour n 1 2 @ ~ 1 0 14236226 -benignancy n 1 4 ! @ = + 1 0 04840981 -benignity n 2 5 ! @ ~ = + 2 0 04840981 00034574 -benin n 1 4 @ #p %m %p 1 0 08759420 -benin_franc n 1 1 @ 1 0 13677019 -beninese n 1 3 @ #m + 1 0 09694269 -benison n 1 1 @ 1 0 07189562 -benito_mussolini n 1 1 @ 1 0 11198253 -benjamin n 2 2 @ ; 2 0 14897941 10845050 -benjamin_britten n 1 1 @ 1 0 10864635 -benjamin_bush n 1 2 @ #m 1 0 11706325 -benjamin_david_goodman n 1 1 @ 1 0 11007332 -benjamin_disraeli n 1 1 @ 1 0 10937364 -benjamin_franklin n 1 1 @ 1 0 10979079 -benjamin_franklin_bridge n 1 2 @ #p 1 0 02830294 -benjamin_franklin_norris_jr. n 1 1 @ 1 0 11209543 -benjamin_harris n 1 1 @ 1 0 11030260 -benjamin_harrison n 1 1 @ 1 0 11031668 -benjamin_henry_latrobe n 1 1 @ 1 0 11118602 -benjamin_jonson n 1 1 @ 1 0 11091184 -benjamin_jowett n 1 1 @ 1 0 11092938 -benjamin_kubelsky n 1 1 @ 1 0 10845424 -benjamin_peirce n 1 1 @ 1 0 11228486 -benjamin_ricketson_tucker n 1 1 @ 1 0 11351529 -benjamin_rush n 1 1 @ 1 0 11274269 -benjamin_shahn n 1 1 @ 1 0 11295033 -benjamin_spock n 1 1 @ 1 0 11311623 -benjamin_thompson n 1 1 @ 1 0 11339669 -benjamin_west n 1 1 @ 1 0 11382112 -benne n 1 3 @ #m %p 1 0 12874783 -bennet n 2 1 @ 2 0 12632733 12631813 -bennett n 1 1 @ 1 0 10845248 -bennettitaceae n 1 3 @ #m %m 1 0 11604393 -bennettitales n 1 3 @ #m %m 1 0 11604225 -bennettitis n 1 2 @ #m 1 0 11604576 -benni n 1 3 @ #m %p 1 0 12874783 -bennie n 1 2 @ ; 1 0 02830596 -bennington n 1 2 @ #p 1 1 09148422 -benniseed n 1 3 @ #p %s 1 0 07827410 -benny n 2 3 @ #m %p 2 0 12874783 10845424 -benny_goodman n 1 1 @ 1 0 11007332 -benny_hill n 1 1 @ 1 0 11049938 -benoit_mandelbrot n 1 1 @ 1 0 11153456 -bent n 4 3 @ ~ #m 4 1 06199702 12106786 08570533 05624254 -bent-grass n 1 3 @ ~ #m 1 0 12106786 -bent_grass n 1 3 @ ~ #m 1 0 12106786 -bent_hang n 1 1 @ 1 0 00436609 -bentham n 1 1 @ 1 0 10845603 -benthic_division n 1 1 @ 1 0 08578517 -benthonic_zone n 1 1 @ 1 0 08578517 -benthos n 2 2 @ + 2 0 08578517 00005787 -benton n 2 1 @ 2 0 10845926 10845763 -bentonite n 1 2 @ + 1 0 14813709 -bentwood n 1 1 @ 1 0 02830430 -benvenuto_cellini n 1 1 @ 1 0 10888788 -benweed n 1 2 @ #m 1 0 12012253 -benzedrine n 1 2 @ ; 1 0 02830596 -benzene n 1 2 @ ~ 1 0 14774699 -benzene_formula n 1 1 @ 1 0 14774894 -benzene_nucleus n 1 1 @ 1 0 14774894 -benzene_ring n 1 1 @ 1 0 14774894 -benzine n 1 2 @ ~ 1 0 14774699 -benzoate n 1 2 @ ~ 1 0 14775067 -benzoate_of_soda n 1 1 @ 1 0 14775173 -benzocaine n 1 1 @ 1 0 02830721 -benzodiazepine n 1 2 @ ~ 1 0 02830852 -benzofuran n 1 1 @ 1 0 14898101 -benzoic_acid n 1 1 @ 1 0 14775321 -benzoin n 2 2 @ #m 2 0 14897941 11706120 -benzoin_odoriferum n 1 2 @ #m 1 0 11706325 -benzol n 1 2 @ ~ 1 0 14774699 -benzoquinone n 1 2 @ ~ 1 0 15000973 -benzoyl_group n 1 1 @ 1 0 14622768 -benzoyl_peroxide n 1 1 @ 1 0 14775430 -benzoyl_radical n 1 1 @ 1 0 14622768 -benzyl n 1 2 @ + 1 0 14622623 -benzyl_group n 1 1 @ 1 0 14622623 -benzyl_radical n 1 1 @ 1 0 14622623 -benzylpenicillin n 1 1 @ 1 0 03910723 -beograd n 1 2 @ #p 1 0 08817418 -beowulf n 1 1 @ 1 0 09589996 -bequest n 1 2 @ ; 1 1 13263779 -berating n 1 1 @ 1 0 06713377 -berber n 2 2 @ ~ 2 0 09850317 06990544 -berberidaceae n 1 3 @ #m %m 1 0 11697158 -berberis n 1 3 @ #m %m 1 0 11697388 -berberis_canadensis n 1 1 @ 1 0 11697802 -berberis_thunbergii n 1 1 @ 1 0 11698245 -berberis_vulgaris n 1 1 @ 1 0 11698042 -berbers n 1 1 @ 1 0 08483500 -berceuse n 1 1 @ 1 0 07051851 -bercy n 1 1 @ 1 0 07835701 -bercy_butter n 1 1 @ 1 0 07835701 -bereaved n 1 1 @ 1 0 09850457 -bereaved_person n 1 1 @ 1 0 09850457 -bereavement n 1 2 @ + 1 1 13989280 -beret n 1 1 @ 1 0 02831237 -berg n 2 2 @ ~ 2 1 09308572 10846089 -bergall n 1 2 @ #m 1 0 02610373 -bergamot n 1 1 @ 1 0 12708941 -bergamot_mint n 2 1 @ 2 0 12858397 12855710 -bergamot_orange n 1 1 @ 1 0 12708941 -bergen n 1 3 @ #m #p 1 0 08765315 -bergenia n 1 2 @ #m 1 0 12796022 -bergman n 2 1 @ 2 0 10846400 10846224 -bergson n 1 1 @ 1 0 10846504 -beria n 1 1 @ 1 0 10846693 -beriberi n 1 2 @ ~ 1 0 14199264 -bering n 1 1 @ 1 0 10846913 -bering_sea n 1 2 @ #p 1 0 09218782 -bering_standard_time n 1 1 @ 1 0 15133289 -bering_strait n 1 1 @ 1 0 09218963 -bering_time n 1 1 @ 1 0 15133289 -berit n 1 1 @ 1 0 01031392 -berith n 1 1 @ 1 0 01031392 -berk n 1 2 @ ; 1 0 09850642 -berkeley n 2 3 @ #p %p 2 0 10847125 09062585 -berkelium n 1 1 @ 1 0 14631134 -berkshire n 1 3 @ #p %p 1 0 08881256 -berkshire_hills n 1 2 @ #p 1 0 09219078 -berkshires n 1 2 @ #p 1 0 09219078 -berlage n 1 1 @ 1 0 10847330 -berlin n 3 5 @ #p %m %p + 3 1 08769645 10847454 02831335 -berlin_airlift n 1 1 @ 1 0 00316806 -berlin_doughnut n 1 1 @ 1 0 07639344 -berliner n 1 4 @ ~ #m + 1 0 09748408 -berlioz n 1 1 @ 1 0 10847653 -berm n 2 3 @ ~ #p 2 0 09219233 04206948 -bermuda n 1 3 @ #p %m 1 0 08710678 -bermuda_buttercup n 1 1 @ 1 0 12703383 -bermuda_cedar n 1 2 @ #m 1 0 11637482 -bermuda_chub n 1 2 @ #m 1 0 02604480 -bermuda_dollar n 1 1 @ 1 0 13672367 -bermuda_grass n 1 2 @ #m 1 0 12115748 -bermuda_lily n 1 1 @ 1 0 12427757 -bermuda_maidenhair n 1 1 @ 1 0 13207572 -bermuda_maidenhair_fern n 1 1 @ 1 0 13207572 -bermuda_onion n 1 1 @ 1 0 07722390 -bermuda_plan n 1 1 @ 1 0 13415998 -bermuda_rig n 1 1 @ 1 0 02831455 -bermuda_shorts n 1 2 @ ; 1 0 02831595 -bermuda_triangle n 1 2 @ #p 1 0 08710951 -bermudan n 1 3 @ #m + 1 0 09694392 -bermudan_rig n 1 1 @ 1 0 02831455 -bermudas n 1 3 @ #p %m 1 0 08710678 -bermudian n 1 2 @ #m 1 0 09694392 -bermudian_rig n 1 1 @ 1 0 02831455 -bern n 1 2 @ #p 1 1 09032321 -berna_eli_oldfield n 1 1 @ 1 0 11213966 -bernard n 1 1 @ 1 0 10847793 -bernard_arthur_owen_williams n 1 1 @ 1 0 11390170 -bernard_baruch n 1 1 @ 1 0 10837567 -bernard_hinault n 1 1 @ 1 0 11050723 -bernard_law_montgomery n 1 1 @ 1 0 11188316 -bernard_malamud n 1 1 @ 1 0 11151084 -bernard_mannes_baruch n 1 1 @ 1 0 10837567 -bernardo_bertolucci n 1 1 @ 1 0 10849323 -bernd_heinrich_wilhelm_von_kleist n 1 1 @ 1 0 11107436 -berne n 1 2 @ #p 1 0 09032321 -bernese_mountain_dog n 1 1 @ 1 0 02107683 -bernhard_riemann n 1 1 @ 1 0 11262168 -bernhardt n 1 1 @ 1 0 10847994 -bernini n 1 1 @ 1 0 10848122 -bernoulli n 3 1 @ 3 0 10848641 10848500 10848356 -bernoulli's_law n 1 2 @ ; 1 0 05875148 -bernoulli_distribution n 1 2 @ ; 1 0 06036697 -bernstein n 1 1 @ 1 0 10848802 -beroe n 1 2 @ #m 1 0 01919385 -berra n 1 1 @ 1 0 10848946 -berretta n 1 1 @ 1 0 02843909 -berry n 3 5 @ ~ #p %p + 3 1 07742704 13137409 10849083 -berry_fern n 1 1 @ 1 0 13196369 -berserk n 1 1 @ 1 0 09850760 -berserker n 1 1 @ 1 0 09850760 -berteroa n 1 3 @ #m %m 1 0 11874300 -berteroa_incana n 1 2 @ #m 1 0 11874423 -berth n 3 3 @ ~ + 3 1 00586262 08640111 02831724 -bertholletia n 1 3 @ #m %m 1 0 12327718 -bertholletia_excelsa n 1 3 @ #m %p 1 0 12327846 -bertillon n 1 1 @ 1 0 10849213 -bertillon_system n 1 1 @ 1 0 00152230 -bertolt_brecht n 1 1 @ 1 0 10863552 -bertolucci n 1 1 @ 1 0 10849323 -bertram_brockhouse n 1 1 @ 1 0 10865140 -bertrand_arthur_william_russell n 1 1 @ 1 0 11274812 -bertrand_russell n 1 1 @ 1 0 11274812 -berycomorphi n 1 3 @ #m %m 1 0 01450081 -beryl n 1 3 @ ~ %s 1 0 14668539 -beryllium n 1 2 @ #s 1 1 14631295 -beryllium_bronze n 1 1 @ 1 0 14775626 -berzelius n 1 1 @ 1 0 10849435 -besieger n 2 2 @ + 2 1 09850974 09851087 -besieging n 1 3 @ ~ ; 1 0 01075117 -besom n 1 1 @ 1 0 02831894 -bessel n 1 1 @ 1 0 10849625 -bessemer n 1 1 @ 1 0 10849873 -bessemer_converter n 1 2 @ #p 1 0 02831998 -bessemer_process n 1 1 @ 1 0 13438223 -bessera n 1 3 @ #m %m 1 0 12443547 -bessera_elegans n 1 2 @ #m 1 0 12443736 -besseya n 1 3 @ #m %m 1 0 12878019 -besseya_alpina n 1 1 @ 1 0 12878325 -bessie_smith n 1 1 @ 1 0 11305745 -bessy_cerca n 1 2 @ #m 1 0 02653497 -best n 3 3 ! @ + 3 2 00127531 09851165 10850049 -best_and_greatest n 1 1 @ 1 0 09574544 -best_evidence_rule n 1 1 @ 1 0 06653727 -best_friend n 1 1 @ 1 1 09851371 -best_man n 1 2 @ #m 1 0 09851465 -best_seller n 1 1 @ 1 1 06412497 -bestiality n 2 2 @ + 2 0 04830578 00858060 -bestiary n 1 1 @ 1 0 06412610 -bestowal n 2 2 @ + 2 1 01086356 13271937 -bestower n 1 2 @ ~ 1 0 10025730 -bestowment n 2 2 @ + 2 0 13271937 01086356 -bestseller n 1 1 @ 1 0 06412497 -bet n 2 4 @ ~ #p + 2 1 13343526 00506658 -beta n 2 3 @ #m %m 2 1 06834245 11832108 -beta-adrenergic_blocker n 1 2 @ ~ 1 0 02832168 -beta-adrenergic_blocking_agent n 1 2 @ ~ 1 0 02832168 -beta-adrenergic_receptor n 1 2 @ #p 1 0 05609524 -beta-adrenoceptor n 1 2 @ #p 1 0 05609524 -beta-blocking_agent n 1 2 @ ~ 1 0 02832168 -beta-carotene n 1 1 @ 1 0 14721470 -beta-hydroxybutyric_acid n 1 1 @ 1 0 14927250 -beta-interferon n 1 1 @ 1 0 02832652 -beta-lactamase n 1 1 @ 1 0 14978544 -beta-lipoprotein n 1 2 @ %s 1 0 14943009 -beta-naphthol n 1 1 @ 1 0 14730421 -beta_blocker n 1 2 @ ~ 1 0 02832168 -beta_blocker_eyedrop n 1 1 @ 1 0 00657080 -beta_cell n 1 1 @ 1 0 05268383 -beta_centauri n 1 2 @ #m 1 0 09219349 -beta_crucis n 1 2 @ #m 1 0 09219467 -beta_decay n 1 1 @ 1 0 13438521 -beta_endorphin n 1 1 @ 1 0 14809247 -beta_globulin n 1 1 @ 1 0 15077917 -beta_iron n 1 1 @ 1 0 14722056 -beta_orionis n 1 1 @ 1 0 09410365 -beta_particle n 1 1 @ 1 0 09219592 -beta_radiation n 1 1 @ 1 0 11428699 -beta_ray n 1 1 @ 1 0 11428699 -beta_receptor n 1 2 @ #p 1 0 05609524 -beta_rhythm n 1 1 @ 1 0 11428862 -beta_software n 1 1 @ 1 0 06567143 -beta_test n 1 2 @ ; 1 0 05799952 -beta_vulgaris n 1 3 @ ~ #m 1 0 11832214 -beta_vulgaris_cicla n 1 2 @ %p 1 0 11832671 -beta_vulgaris_rubra n 1 2 @ %p 1 0 11832480 -beta_vulgaris_vulgaris n 1 1 @ 1 0 11832899 -beta_wave n 1 1 @ 1 0 11428862 -betaine n 1 1 @ 1 0 14721951 -betatron n 1 1 @ 1 0 02832838 -bete_noire n 1 1 @ 1 0 09792125 -betel n 1 2 @ #m 1 0 13149970 -betel_nut n 1 2 @ #p 1 0 07770869 -betel_palm n 1 2 @ %p 1 0 12584365 -betel_pepper n 1 2 @ #m 1 0 13149970 -betelgeuse n 1 2 @ #m 1 0 09219731 -beth n 1 2 @ #m 1 0 06836822 -bethe n 1 1 @ 1 0 10850273 -bethel n 1 1 @ 1 0 02833040 -bethlehem n 2 2 @ #p 2 0 09135246 08795232 -bethlehem-judah n 1 2 @ #p 1 0 08795232 -bethlehem_ephrathah n 1 2 @ #p 1 0 08795232 -bethune n 1 1 @ 1 0 10850469 -betise n 1 1 @ 1 0 01248075 -betrayal n 2 3 @ ~ + 2 1 00749767 04879879 -betrayer n 2 3 @ ~ + 2 0 10206173 10027590 -betrothal n 2 3 @ ~ + 2 0 07228211 01036778 -betrothed n 1 3 @ ~ + 1 0 09851575 -betsy_griscom_ross n 1 1 @ 1 0 11270577 -betsy_ross n 1 1 @ 1 0 11270577 -bette_davis n 1 1 @ 1 0 10924347 -better n 4 3 @ ~ + 4 1 05143558 09851876 09851719 05143690 -better_half n 1 3 @ ~ #m 1 0 10640620 -betterment n 3 3 @ ~ + 3 1 07357388 14422751 00261029 -betting_odds n 1 1 @ 1 0 13823483 -betting_shop n 1 2 @ ; 1 0 02833140 -bettong n 1 2 @ #m 1 0 01880716 -bettongia n 1 3 @ #m %m 1 0 01880570 -bettor n 1 3 @ ~ + 1 0 09851876 -betty_friedan n 1 1 @ 1 0 10982450 -betty_naomi_friedan n 1 1 @ 1 0 10982450 -betty_naomi_goldstein_friedan n 1 1 @ 1 0 10982450 -betula n 1 3 @ #m %m 1 0 12280886 -betula_alleghaniensis n 1 2 @ #m 1 0 12281788 -betula_cordifolia n 1 2 @ #m 1 0 12281974 -betula_fontinalis n 1 2 @ #m 1 0 12283542 -betula_glandulosa n 1 2 @ #m 1 0 12283790 -betula_lenta n 1 2 @ #m 1 0 12283147 -betula_leutea n 1 2 @ #m 1 0 12281788 -betula_neoalaskana n 1 2 @ #m 1 0 12283395 -betula_nigra n 1 2 @ #m 1 0 12282933 -betula_papyrifera n 1 2 @ #m 1 0 12281974 -betula_pendula n 1 2 @ #m 1 0 12282527 -betula_populifolia n 1 2 @ #m 1 0 12282235 -betula_pubescens n 1 2 @ #m 1 0 12282737 -betulaceae n 1 4 @ #m %m + 1 0 12280487 -betweenbrain n 1 3 @ #p %p 1 0 05496990 -beurre_noisette n 1 1 @ 1 0 07849026 -bevatron n 1 1 @ 1 0 02833275 -bevel n 2 3 @ ~ + 2 0 02833576 02833403 -bevel_gear n 1 2 @ ~ 1 0 02833793 -bevel_square n 1 1 @ 1 0 02833403 -beverage n 1 2 @ ~ 1 1 07881800 -beveridge n 1 1 @ 1 0 10850667 -beverly_hills n 1 2 @ #p 1 0 09062791 -beverly_sills n 1 1 @ 1 0 11300326 -bevin n 1 1 @ 1 0 10850964 -bevy n 2 2 @ %m 2 1 08415774 07991579 -bewick's_swan n 1 1 @ 1 0 01859852 -bewilderment n 1 2 @ + 1 1 05685030 -bewitchery n 1 2 @ + 1 0 04686388 -bewitchment n 1 2 @ + 1 0 05979454 -bextra n 1 1 @ 1 0 04518468 -bey n 2 1 @ 2 0 09852289 09852179 -bezant n 1 1 @ 1 0 13389194 -bezel n 1 1 @ 1 0 02833943 -bezique n 1 1 @ 1 0 00494100 -bezoar_goat n 1 1 @ 1 0 02417663 -bezzant n 1 1 @ 1 0 13389194 -bh n 1 1 @ 1 0 14631757 -bhadon n 1 2 @ #p 1 0 15220503 -bhadrapada n 1 2 @ #p 1 0 15220503 -bhaga n 1 1 @ 1 0 09524840 -bhagavad-gita n 1 3 @ #p ; 1 0 06431156 -bhagavadgita n 1 3 @ #p ; 1 0 06431156 -bhakti n 1 2 @ ; 1 0 01042998 -bhang n 1 2 @ #p 1 0 02834147 -bharat n 1 6 @ #m #p %m %p - 1 0 08900535 -bhumi_devi n 1 1 @ 1 0 09525170 -bhutan n 1 3 @ #p %m 1 0 08852209 -bhutanese n 1 3 @ #m + 1 0 09694529 -bhutanese_monetary_unit n 1 2 @ ~ 1 0 13689282 -bhutani n 1 2 @ #m 1 0 09694529 -bi n 1 1 @ 1 0 14631502 -bi-fold_door n 1 2 @ %p 1 0 02836513 -bialy n 1 1 @ 1 0 07692517 -bialystoker n 1 1 @ 1 0 07692517 -bias n 2 3 @ ~ + 2 1 06201908 13904164 -biauriculate_heart n 1 2 @ ; 1 0 05389310 -bib n 2 2 @ #p 2 0 02834397 02834295 -bib-and-tucker n 1 2 @ ; 1 0 02834506 -bibb_lettuce n 1 1 @ 1 0 07724078 -bible n 2 5 @ ~ %p + - 2 1 06431740 06422643 -bible-worship n 1 1 @ 1 0 01044867 -bible_belt n 1 1 @ 1 1 08510030 -bible_leaf n 1 3 @ #m %p 1 0 12021499 -biblical_aramaic n 1 1 @ 1 0 06988540 -biblical_latin n 1 1 @ 1 0 06963571 -bibliographer n 1 2 @ + 1 0 09852558 -bibliography n 1 2 @ + 1 1 06486630 -bibliolatry n 1 2 @ + 1 0 01044867 -bibliomania n 1 2 @ + 1 0 04946266 -bibliophile n 1 2 @ + 1 0 09852679 -bibliopole n 1 2 @ + 1 0 09852826 -bibliopolist n 1 1 @ 1 0 09852826 -bibliothec n 1 2 @ ~ 1 0 10257948 -bibliotheca n 1 2 @ + 1 0 07978055 -bibliotics n 1 2 @ + 1 0 05998526 -bibliotist n 1 2 @ + 1 0 09852979 -bibos n 1 3 @ #m %m 1 0 02409702 -bibos_frontalis n 1 2 @ #m 1 0 02410141 -bibos_gaurus n 1 2 @ #m 1 0 02410011 -bicameral_script n 1 2 @ ~ 1 0 06825863 -bicarbonate n 1 2 @ ~ 1 0 14775729 -bicarbonate_of_soda n 1 1 @ 1 0 14775995 -bicentenary n 1 2 @ + 1 0 15251600 -bicentennial n 1 2 @ + 1 0 15251600 -biceps n 1 3 @ ~ + 1 1 05579239 -biceps_brachii n 1 2 @ #p 1 1 05579436 -biceps_humeri n 1 2 @ #p 1 0 05579436 -bichloride n 1 1 @ 1 0 15017343 -bichloride_of_mercury n 1 1 @ 1 0 14950694 -bichromate n 1 1 @ 1 0 15013764 -bicker n 1 2 @ + 1 0 07184735 -bickering n 1 1 @ 1 1 07184735 -bicolor_lespediza n 1 2 @ #m 1 0 12543186 -bicorn n 1 2 @ + 1 0 02834642 -bicorne n 1 1 @ 1 0 02834642 -bicuspid n 1 2 @ + 1 0 05307358 -bicuspid_valve n 1 1 @ 1 0 05393813 -bicycle n 1 4 @ ~ %p + 1 1 02834778 -bicycle-built-for-two n 1 1 @ 1 0 02835271 -bicycle_chain n 1 1 @ 1 0 02835412 -bicycle_clip n 1 1 @ 1 0 02835551 -bicycle_pump n 1 1 @ 1 0 02835724 -bicycle_race n 1 2 @ ~ 1 0 07459249 -bicycle_rack n 1 1 @ 1 0 02835829 -bicycle_seat n 1 2 @ #p 1 0 02835915 -bicycle_traffic n 1 1 @ 1 0 08426211 -bicycle_wheel n 1 3 @ #p %p 1 0 02836035 -bicycler n 1 3 @ ~ + 1 0 09986189 -bicycling n 1 1 @ 1 0 00451563 -bicyclist n 1 3 @ ~ + 1 0 09986189 -bid n 4 5 @ ~ #p + ; 4 2 07168131 00786887 07165086 06737112 -bid_price n 1 2 @ ; 1 0 13304186 -bida n 1 2 @ #p 1 0 08987262 -bidder n 2 3 @ ~ + 2 1 09853087 09853184 -bidding n 3 5 @ ~ #p + ; 3 1 07168131 07186528 06737112 -bidding_contest n 1 1 @ 1 0 01169112 -biddy n 2 2 @ ~ 2 0 01792640 01792042 -bidens n 1 3 @ #m %m 1 0 11939887 -bidens_bipinnata n 1 1 @ 1 0 11940349 -bidens_connata n 1 1 @ 1 0 11940915 -bidens_coronata n 1 1 @ 1 0 11940599 -bidens_trichosperma n 1 1 @ 1 0 11940599 -bidens_tripartita n 1 1 @ 1 0 11940750 -bidet n 1 1 @ 1 0 02836174 -biennial n 1 3 @ + ; 1 0 11552976 -bier n 2 2 @ ~ 2 0 02836392 02836268 -bierce n 1 1 @ 1 0 10851139 -biff n 1 4 @ ~ + ; 1 0 00134780 -bifocals n 1 2 @ ; 1 0 02836607 -bifurcation n 3 4 @ #p %p + 3 0 13887056 13886910 00388710 -big-bang_theory n 1 2 @ ; 1 0 05887911 -big-bud_hickory n 1 2 @ #m 1 0 12322099 -big-cone_douglas_fir n 1 1 @ 1 0 11629047 -big-cone_spruce n 1 1 @ 1 0 11629047 -big-eared_bat n 1 2 @ #m 1 0 02144936 -big-eyed_scad n 1 2 @ #m 1 0 02581108 -big-leaf_maple n 1 1 @ 1 0 12754003 -big-toothed_aspen n 1 1 @ 1 0 12734215 -big-tree_plum n 1 1 @ 1 0 12640081 -big_band n 1 1 @ 1 1 08250168 -big_bang n 1 2 @ ; 1 0 07408796 -big_bang_theory n 1 2 @ ; 1 0 05887911 -big_bedbug n 1 2 @ #m 1 0 02244515 -big_ben n 1 2 @ #p 1 0 02836766 -big_bend n 1 2 @ #p 1 0 08602650 -big_bend_national_park n 1 2 @ #p 1 0 08602822 -big_bill_haywood n 1 1 @ 1 0 11036911 -big_bill_tilden n 1 1 @ 1 0 11342440 -big_blue n 1 1 @ 1 0 02836900 -big_board n 2 3 @ #p %p 2 0 03822951 02837134 -big_brother n 2 1 @ 2 0 09853541 09853467 -big_brown_bat n 1 2 @ #m 1 0 02147173 -big_bucks n 1 2 @ ; 1 0 13250680 -big_business n 1 1 @ 1 0 07967129 -big_businessman n 1 2 @ ~ 1 0 09840217 -big_cat n 1 3 @ ~ #m 1 0 02127808 -big_cheese n 1 3 @ ~ ; 1 0 09853881 -big_deal n 2 3 @ ~ ; 2 0 09853881 05168697 -big_dipper n 2 3 @ ~ #p 2 0 09219858 04102406 -big_enchilada n 1 3 @ ~ ; 1 0 09853881 -big_fish n 1 3 @ ~ ; 1 0 09853881 -big_game n 1 1 @ 1 0 02153109 -big_gun n 1 3 @ ~ ; 1 0 09853881 -big_h n 1 2 @ ; 1 0 02837416 -big_hand n 1 1 @ 1 0 03772584 -big_league n 1 3 @ %m ; 1 1 08231499 -big_leaguer n 1 2 @ #m 1 1 10283931 -big_marigold n 1 1 @ 1 0 12020736 -big_money n 1 2 @ ; 1 0 13250680 -big_sagebrush n 1 2 @ #m 1 0 12014524 -big_science n 1 1 @ 1 0 00637912 -big_shagbark n 1 3 @ #m %p 1 0 12321395 -big_shellbark n 1 3 @ #m %p 1 0 12321395 -big_shellbark_hickory n 1 3 @ #m %p 1 0 12321395 -big_shot n 1 3 @ ~ ; 1 1 09853881 -big_sioux_river n 1 2 @ #p 1 0 09220574 -big_sister n 1 1 @ 1 0 09854218 -big_spender n 1 1 @ 1 0 10635625 -big_stick n 1 1 @ 1 0 06880013 -big_sur n 1 2 @ #p 1 0 09166756 -big_time n 1 1 @ 1 0 14475154 -big_toe n 1 2 @ #p 1 0 05577741 -big_top n 1 2 @ #p 1 0 03035252 -big_tree n 1 2 @ #m 1 0 11641494 -big_wheel n 1 3 @ ~ ; 1 0 09853881 -bigamist n 1 2 @ + 1 0 09853305 -bigamy n 2 3 @ + ; 2 0 13964466 00775095 -bigarade n 1 3 @ #m %p 1 0 12708654 -bigeye n 1 2 @ #m 1 0 02571652 -bigeye_scad n 1 2 @ #m 1 0 02581108 -bigfoot n 1 1 @ 1 0 09487385 -biggin n 1 1 @ 1 0 02837309 -bighead n 1 1 @ 1 0 14261112 -bigheartedness n 1 2 @ + 1 0 04832401 -bighorn n 2 3 @ #m #p 2 0 09220046 02415577 -bighorn_river n 1 2 @ #p 1 0 09220046 -bighorn_sheep n 1 2 @ #m 1 0 02415577 -bight n 4 4 @ ~ #p + 4 0 13875884 13869896 09220239 02837567 -bight_of_benin n 1 2 @ #p 1 0 09220434 -bigness n 1 4 ! @ ~ + 1 0 05103946 -bignonia n 1 3 @ #m %m 1 0 12813870 -bignonia_capreolata n 1 2 @ #m 1 0 12814003 -bignoniaceae n 1 5 @ ~ #m %m + 1 0 12813393 -bignoniad n 1 2 @ #m 1 0 12813753 -bigos n 1 1 @ 1 0 07589458 -bigot n 1 2 @ ~ 1 0 09853645 -bigotry n 1 1 @ 1 0 06206210 -bigram n 1 1 @ 1 0 06360599 -bigtooth_aspen n 1 1 @ 1 0 12734215 -bigtoothed_aspen n 1 1 @ 1 0 12734215 -bigwig n 1 1 @ 1 0 10235142 -bihar n 1 2 @ #p 1 0 08905085 -bihari n 1 1 @ 1 0 06970510 -bijou n 1 1 @ 1 0 02837702 -bijugate_leaf n 1 1 @ 1 0 13157346 -bijugous_leaf n 1 1 @ 1 0 13157346 -bike n 2 4 @ ~ %p + 2 0 03790512 02834778 -bikers n 1 2 @ %m 1 0 08370878 -bikini n 2 2 @ #p 2 0 08839296 02837789 -bikini_pants n 1 2 @ ; 1 0 02837887 -bilabial n 1 2 @ + 1 0 07117333 -bilateral_contract n 1 1 @ 1 0 06522357 -bilateral_descent n 1 1 @ 1 0 13814456 -bilateral_symmetry n 1 1 @ 1 0 05065386 -bilateralism n 1 1 @ 1 0 05065386 -bilaterality n 1 2 @ + 1 0 05065386 -bilberry n 3 3 @ #p %p 3 0 12248574 12248359 07743224 -bilby n 1 2 @ #m 1 0 01876667 -bile n 1 2 @ + 1 1 05406570 -bile_acid n 1 2 @ ~ 1 0 15059552 -bile_duct n 1 3 @ #p %p 1 0 05386845 -bile_salt n 1 1 @ 1 0 15012999 -bilestone n 1 1 @ 1 0 09286200 -bilge n 2 4 @ ~ #p + 2 0 15059797 02838014 -bilge_keel n 1 2 @ #p 1 0 02838178 -bilge_pump n 1 2 @ #p 1 0 02838345 -bilge_water n 1 1 @ 1 0 15059797 -bilge_well n 1 3 @ #p ; 1 0 02838577 -bilges n 1 1 @ 1 0 02838448 -bilgewater n 1 2 @ ; 1 0 06611147 -bilharzia n 1 1 @ 1 0 14180565 -bilharziasis n 1 1 @ 1 1 14180565 -biliary_ductule n 1 2 @ #p 1 0 05387028 -bilimbi n 1 1 @ 1 0 12704513 -bilingual n 1 2 @ + 1 0 09854290 -bilingual_dictionary n 1 1 @ 1 0 06419234 -bilingualism n 1 1 @ 1 0 05622617 -bilingualist n 1 1 @ 1 0 09854290 -biliousness n 2 3 @ ~ + 2 0 14062565 04642258 -bilirubin n 1 1 @ 1 0 14756369 -bill n 10 6 @ ~ #p %p + ; 10 4 06536853 06516955 13393762 00551407 07250339 06793426 06486874 02838958 02838728 01758308 -bill-me_order n 1 2 @ ~ 1 0 06529630 -bill_clinton n 1 1 @ 1 0 10902591 -bill_gates n 1 1 @ 1 0 10991936 -bill_haley n 1 1 @ 1 0 11024226 -bill_mauldin n 1 1 @ 1 0 11165164 -bill_of_attainder n 1 2 @ ; 1 0 06537323 -bill_of_entry n 1 1 @ 1 0 06487050 -bill_of_exchange n 1 2 @ ~ 1 0 13377268 -bill_of_fare n 1 2 @ ~ 1 0 06492939 -bill_of_goods n 2 1 @ 2 0 06610557 06487172 -bill_of_health n 1 1 @ 1 1 06479204 -bill_of_indictment n 1 3 @ ~ %p 1 0 07235335 -bill_of_lading n 1 1 @ 1 0 06520742 -bill_of_particulars n 1 3 @ #p ; 1 0 06559114 -bill_of_review n 1 1 @ 1 0 01197479 -bill_of_rights n 1 4 @ #p %p ; 1 0 06727758 -bill_of_sale n 1 2 @ ; 1 0 06545728 -bill_poster n 1 1 @ 1 0 09854510 -bill_russell n 1 1 @ 1 0 11275495 -bill_sticker n 1 1 @ 1 0 09854510 -billabong n 2 2 @ ; 2 0 09220922 09220770 -billboard n 1 1 @ 1 0 02839110 -billet n 3 4 @ ~ + ; 3 0 06626286 02839200 00586262 -billet_doux n 1 1 @ 1 0 06626618 -billfish n 4 3 @ ~ #m 4 0 02641379 02630739 02551668 02549989 -billfold n 1 1 @ 1 0 04548362 -billhook n 1 1 @ 1 0 02838958 -billiard_ball n 1 2 @ ~ 1 0 02839351 -billiard_hall n 1 1 @ 1 0 02839592 -billiard_marker n 1 1 @ 1 0 02839477 -billiard_parlor n 1 1 @ 1 0 02839592 -billiard_parlour n 1 1 @ 1 0 02839592 -billiard_player n 1 1 @ 1 0 09854421 -billiard_room n 1 1 @ 1 0 02839592 -billiard_saloon n 1 1 @ 1 0 02839592 -billiard_table n 1 2 @ %p 1 0 03982430 -billiards n 1 3 @ %p - 1 0 00499924 -billie_jean_king n 1 1 @ 1 0 11105463 -billie_jean_moffitt_king n 1 1 @ 1 0 11105463 -billie_the_kid n 1 1 @ 1 0 10857001 -billing n 1 2 @ ~ 1 0 07190941 -billings n 1 2 @ #p 1 0 09108728 -billingsgate n 1 1 @ 1 0 06721342 -billion n 3 4 @ ~ + ; 3 1 13752172 13776432 13751829 -billion-dollar_grass n 1 2 @ #m 1 0 12117912 -billionaire n 1 1 @ 1 0 10529684 -billionth n 2 2 @ ; 2 0 13850019 13739721 -billow n 1 2 @ + 1 0 07348545 -billy n 2 1 @ 2 0 04491388 02416880 -billy-ho n 1 1 @ 1 0 13775319 -billy_buttons n 1 2 @ #m 1 0 11958888 -billy_club n 1 1 @ 1 0 04491388 -billy_goat n 1 1 @ 1 0 02416880 -billy_graham n 1 1 @ 1 0 11010385 -billy_mitchell n 1 1 @ 1 0 11182621 -billy_sunday n 1 1 @ 1 0 11325534 -billy_wilder n 1 1 @ 1 0 11386503 -billyo n 1 1 @ 1 0 13775319 -billyoh n 1 1 @ 1 0 13775319 -billystick n 1 1 @ 1 0 04491388 -bilocation n 1 1 @ 1 0 08489890 -bilocular_capsule n 1 1 @ 1 0 11685400 -biloxi n 3 2 @ #p 3 0 09650729 09104474 06908401 -bilsted n 1 3 @ #m %s 1 0 12316572 -biltong n 1 2 @ ; 1 0 07665013 -bimbo n 1 1 @ 1 0 09854708 -bimester n 1 2 @ + 1 0 15204609 -bimetal n 1 2 @ + 1 0 14776237 -bimetallic_strip n 1 2 @ #p 1 0 02839758 -bimetallism n 1 2 @ + 1 0 13373746 -bimetallist n 1 2 @ + 1 0 09854813 -bimillenary n 2 1 @ 2 0 15252300 15141375 -bimillennium n 2 2 @ + 2 0 15252300 15141375 -bimli n 1 2 @ %p 1 0 12178129 -bimli_hemp n 1 2 @ %p 1 0 12178129 -bimonthly n 1 1 @ 1 0 06594751 -bin n 3 3 @ ~ + 3 1 02839910 13765306 06425534 -bin_laden n 1 1 @ 1 0 10851452 -bin_liner n 1 2 @ ; 1 0 02841063 -binary n 2 2 @ ~ 2 0 09221070 06570963 -binary_arithmetic_operation n 1 1 @ 1 0 13440935 -binary_code n 1 1 @ 1 0 06357304 -binary_compound n 1 2 @ ~ 1 0 14618834 -binary_digit n 1 1 @ 1 0 13741512 -binary_file n 1 2 @ ; 1 0 06509675 -binary_notation n 1 1 @ 1 0 06809905 -binary_number_system n 1 1 @ 1 0 06810020 -binary_numeration_system n 1 1 @ 1 0 06810020 -binary_operation n 1 1 @ 1 0 13440935 -binary_program n 1 1 @ 1 0 06570963 -binary_star n 1 2 @ ~ 1 0 09221070 -binary_system n 1 1 @ 1 0 06810020 -bind n 1 2 @ + 1 0 05689801 -binder n 4 2 @ + 4 1 02840361 14704465 02840245 02840134 -binder's_board n 1 1 @ 1 0 14776391 -binder_board n 1 1 @ 1 0 14776391 -bindery n 1 2 @ + 1 0 02840515 -binding n 5 4 @ ~ #p + 5 3 04689198 02840927 00696882 04228215 02840619 -binding_energy n 1 1 @ 1 0 11429057 -bindweed n 1 3 @ ~ #m 1 0 12823859 -bine n 1 1 @ 1 0 12398174 -binet n 1 1 @ 1 0 10851282 -binet-simon_scale n 1 1 @ 1 0 01007372 -binful n 1 1 @ 1 0 13765306 -bing_cherry n 1 1 @ 1 0 07757511 -bing_crosby n 1 1 @ 1 0 10916731 -binge n 2 3 @ ~ + 2 0 01073824 00510723 -binge-eating_syndrome n 1 1 @ 1 0 14057001 -binge-purge_syndrome n 1 1 @ 1 0 14056685 -binge-vomit_syndrome n 1 1 @ 1 0 14056685 -binger n 1 1 @ 1 0 09974177 -binghamton n 1 2 @ #p 1 0 09124589 -bingle n 1 2 @ ~ 1 0 00132601 -bingo n 1 1 @ 1 0 00504660 -binnacle n 1 1 @ 1 0 02841187 -binocular_microscope n 1 2 @ ~ 1 0 02841506 -binocular_vision n 1 2 @ ~ 1 0 05656042 -binoculars n 1 3 @ %p ; 1 1 02841315 -binomial n 1 3 @ + ; 1 1 06036506 -binomial_distribution n 1 2 @ ; 1 1 06036697 -binomial_theorem n 1 3 @ #p ; 1 0 06036939 -binturong n 1 2 @ #m 1 0 02136103 -bio-assay n 1 2 @ ~ 1 0 05740300 -bio_lab n 1 1 @ 1 0 02842008 -bioarm n 1 2 @ ~ 1 0 02842303 -bioassay n 1 3 @ ~ + 1 1 05740300 -bioattack n 1 2 @ ~ 1 0 00967780 -biocatalyst n 1 2 @ + 1 0 14723909 -biochemical_mechanism n 1 1 @ 1 1 13438671 -biochemist n 1 3 @ ~ + 1 0 09854915 -biochemistry n 1 4 @ ~ + - 1 0 06079620 -biochip n 1 1 @ 1 0 02841641 -bioclimatology n 1 1 @ 1 0 06119496 -biodefence n 1 1 @ 1 0 00961594 -biodefense n 1 1 @ 1 0 00961594 -biodegradable_pollution n 1 2 ! @ 1 0 14517067 -biodiversity n 1 1 @ 1 0 04751652 -bioelectricity n 1 2 @ ~ 1 0 11429238 -bioengineering n 1 1 @ 1 0 06126523 -bioethics n 1 2 @ ~ 1 0 06159777 -biofeedback n 1 1 @ 1 0 05910070 -bioflavinoid n 1 1 @ 1 0 15093137 -biogenesis n 2 2 @ + 2 0 13438817 00850260 -biogeny n 1 1 @ 1 0 00850260 -biogeographical_region n 1 2 @ ~ 1 0 08578364 -biogeography n 1 2 @ + 1 0 06066414 -biographer n 1 3 @ ~ + 1 0 09855433 -biography n 1 3 @ ~ + 1 1 06515827 -biohazard n 2 1 @ 2 0 14542441 09221424 -biohazard_suit n 1 1 @ 1 0 02841847 -bioko n 1 3 @ #p %p 1 0 08763932 -biologic_attack n 1 2 @ ~ 1 0 00967780 -biological_agent n 1 1 @ 1 0 09221424 -biological_attack n 1 2 @ ~ 1 0 00967780 -biological_clock n 1 1 @ 1 0 15135536 -biological_defence n 1 1 @ 1 0 00961594 -biological_defense n 1 1 @ 1 0 00961594 -biological_group n 1 2 @ ~ 1 0 07941170 -biological_process n 1 2 @ ~ 1 0 13526110 -biological_research n 1 2 @ ~ 1 0 00638080 -biological_science n 1 3 @ ~ - 1 0 06037666 -biological_terrorism n 1 2 @ ; 1 0 00763132 -biological_time n 1 2 @ ~ 1 0 15116532 -biological_warfare n 1 2 @ ~ 1 1 00967780 -biological_warfare_defence n 1 1 @ 1 0 00967993 -biological_warfare_defense n 1 1 @ 1 0 00967993 -biological_weapon n 1 2 @ ~ 1 0 02842303 -biologism n 1 2 @ + 1 0 00411235 -biologist n 1 4 @ ~ + ; 1 1 09855630 -biology n 3 5 @ ~ %m + - 3 1 06037666 11473488 07993109 -biology_department n 1 1 @ 1 0 08115912 -biology_lab n 1 1 @ 1 0 02842008 -biology_laboratory n 1 1 @ 1 0 02842008 -bioluminescence n 1 2 @ + 1 0 11476619 -biomass n 2 1 @ 2 0 14684918 05024691 -biome n 1 2 @ ~ 1 0 07941945 -biomedical_cloning n 1 1 @ 1 0 00639007 -biomedical_science n 1 1 @ 1 0 06041466 -biomedicine n 2 3 @ ~ + 2 1 06047096 06046898 -biometric_authentication n 1 3 @ ~ ; 1 0 06424275 -biometric_identification n 1 3 @ ~ ; 1 0 06424275 -biometrics n 1 1 @ 1 0 06041600 -biometry n 1 1 @ 1 0 06041600 -bionic_man n 1 1 @ 1 0 09985978 -bionic_woman n 1 1 @ 1 0 09985978 -bionics n 1 2 @ + 1 0 06126336 -bionomics n 1 4 @ ~ + - 1 0 06070929 -biont n 1 1 @ 1 0 00006400 -biophysicist n 1 2 @ + 1 1 09856267 -biophysics n 1 2 @ + 1 0 06097478 -biopiracy n 1 1 @ 1 0 00782629 -biopsy n 1 2 @ ~ 1 1 05740929 -bioremediation n 2 2 @ ; 2 0 06127057 01135163 -biosafety n 1 1 @ 1 0 14538811 -biosafety_level n 1 2 @ ~ 1 0 14428404 -biosafety_level_1 n 1 1 @ 1 0 14428655 -biosafety_level_2 n 1 1 @ 1 0 14428796 -biosafety_level_3 n 1 1 @ 1 0 14428970 -biosafety_level_4 n 1 1 @ 1 0 14429150 -bioscience n 1 2 @ ~ 1 0 06037298 -bioscope n 2 1 @ 2 0 02842219 02842133 -biosphere n 1 2 @ #p 1 0 08499504 -biostatistics n 1 1 @ 1 0 06041600 -biosynthesis n 1 2 @ + 1 0 13438817 -biosystematics n 1 2 @ + 1 0 06152973 -biosystematy n 1 1 @ 1 0 06152973 -biota n 1 2 @ %m 1 0 07993109 -biotech n 1 2 @ ~ 1 0 06126761 -biotechnology n 2 2 @ ~ 2 0 06126761 06126523 -bioterrorism n 1 2 @ ; 1 0 00763132 -biotic_community n 1 3 @ ~ ; 1 0 07941729 -biotin n 1 1 @ 1 0 15092650 -biotite n 1 3 @ ~ + 1 0 14668743 -biotype n 1 2 @ + 1 0 07941574 -bioweapon n 1 2 @ ~ 1 0 02842303 -biped n 1 3 @ %p + 1 0 02157285 -bipedalism n 1 1 @ 1 0 04998254 -bipinnate_leaf n 1 1 @ 1 0 13160015 -biplane n 1 1 @ 1 0 02842573 -biplane_flying_fish n 1 1 @ 1 0 02550780 -bipolar_disorder n 1 2 @ ~ 1 0 14392639 -biprism n 1 2 @ %p 1 0 02842684 -biquadrate n 1 2 @ + 1 0 13731356 -biquadratic n 3 2 @ + 3 0 13731356 06670390 05862113 -biquadratic_equation n 1 1 @ 1 0 06670390 -biquadratic_polynomial n 1 1 @ 1 0 05862113 -birch n 3 6 @ ~ #m #s %s + 3 0 12281600 12281241 02842809 -birch_bark n 1 1 @ 1 0 02843029 -birch_beer n 1 1 @ 1 0 07927716 -birch_family n 1 3 @ #m %m 1 0 12280487 -birch_leaf_miner n 1 1 @ 1 0 02219015 -birch_oil n 1 2 @ #s 1 0 14952441 -birch_rod n 1 1 @ 1 0 02842809 -birch_tree n 1 4 @ ~ #m %s 1 0 12281241 -birchbark n 1 1 @ 1 0 02843029 -birchbark_canoe n 1 1 @ 1 0 02843029 -bird n 5 7 @ ~ #m #p %p + - 5 2 01503061 07644382 09989045 07123870 04212282 -bird's-eye_bush n 1 2 @ #m 1 0 12382875 -bird's-eye_maple n 1 1 @ 1 0 12752892 -bird's-foot_fern n 1 1 @ 1 0 13212379 -bird's-foot_violet n 1 1 @ 1 0 12389501 -bird's-nest_fungus n 1 2 @ #m 1 0 13046669 -bird's_eye n 1 1 @ 1 0 12891305 -bird's_eye_view n 1 1 @ 1 0 06209101 -bird's_foot n 1 4 @ ~ #p %p 1 0 02154416 -bird's_foot_clover n 1 2 @ #m 1 0 12545635 -bird's_foot_trefoil n 2 2 @ #m 2 0 12574320 12545635 -bird's_nest n 1 2 @ ~ 1 0 09221571 -bird's_nest_fern n 1 2 @ #m 1 0 13181055 -bird-footed_dinosaur n 1 3 @ ~ #m 1 0 01712008 -bird-on-the-wing n 1 1 @ 1 0 12705698 -bird-scarer n 1 1 @ 1 0 04143712 -bird_cherry n 1 2 @ ~ 1 0 12647376 -bird_cherry_tree n 1 2 @ ~ 1 0 12647376 -bird_dog n 1 1 @ 1 0 02098806 -bird_family n 1 3 @ ~ #m 1 0 01504437 -bird_fancier n 1 1 @ 1 0 09856401 -bird_feed n 1 2 @ ~ 1 0 07805594 -bird_feeder n 1 1 @ 1 0 02843553 -bird_food n 1 2 @ ~ 1 0 07805594 -bird_genus n 1 3 @ ~ #m 1 0 01507175 -bird_louse n 1 3 @ ~ #m 1 0 02185481 -bird_nest n 1 2 @ ~ 1 0 09221571 -bird_of_jove n 1 3 @ ~ #m 1 0 01613294 -bird_of_juno n 1 3 @ ~ #m 1 0 01805801 -bird_of_minerva n 1 3 @ ~ #m 1 0 01621127 -bird_of_night n 1 3 @ ~ #m 1 0 01621127 -bird_of_paradise n 3 3 @ ~ #m 3 0 12489815 12354619 01571126 -bird_of_passage n 2 2 @ ~ 2 0 10765679 01515303 -bird_of_prey n 1 2 @ ~ 1 0 01604330 -bird_parker n 1 1 @ 1 0 11222914 -bird_pepper n 1 2 @ #m 1 0 12901724 -bird_sanctuary n 1 1 @ 1 0 02763604 -bird_shot n 1 2 @ #p 1 1 02843777 -bird_vetch n 1 1 @ 1 0 12575812 -bird_watcher n 2 3 @ ~ + 2 0 10384214 09856500 -birdbath n 1 1 @ 1 1 02843158 -birdbrain n 1 1 @ 1 0 10598904 -birdcage n 1 1 @ 1 0 02843276 -birdcage_mask n 1 1 @ 1 0 02843365 -birdcall n 2 2 @ ~ 2 0 06796642 02843465 -birder n 1 2 @ + 1 0 09856500 -birdfeeder n 1 1 @ 1 0 02843553 -birdhouse n 1 2 @ ~ 1 1 02843684 -birdie n 2 3 @ + ; 2 0 13595276 04212282 -birdlime n 1 2 @ + 1 0 14702703 -birdnest n 1 2 @ ~ 1 0 09221571 -birdnesting n 1 1 @ 1 0 00711799 -birdseed n 1 2 @ ~ 1 0 07805594 -birdseed_grass n 1 2 @ #m 1 0 12129986 -birdsong n 1 2 @ ~ 1 0 06796642 -birefringence n 1 2 @ + 1 1 11503482 -biretta n 1 1 @ 1 0 02843909 -biriani n 1 1 @ 1 0 07654298 -birling n 1 2 @ ; 1 0 00343894 -birmingham n 2 2 @ #p 2 2 09053947 08877613 -biro n 1 1 @ 1 0 02783161 -birr n 2 3 @ %p + 2 0 13664396 07399917 -birretta n 1 1 @ 1 0 02843909 -birth n 5 5 ! @ ~ #p + 5 3 15142167 07320302 13532886 13813765 09856671 -birth-control_campaigner n 1 2 @ ~ 1 0 09856827 -birth-control_reformer n 1 2 @ ~ 1 0 09856827 -birth_canal n 1 1 @ 1 0 05226937 -birth_certificate n 1 1 @ 1 0 06478452 -birth_control n 1 2 @ ~ 1 1 00851994 -birth_control_device n 1 2 @ ~ 1 0 03096593 -birth_control_pill n 1 3 @ ~ %s 1 0 03936895 -birth_defect n 1 2 @ ~ 1 0 14465048 -birth_pangs n 1 1 @ 1 0 14330833 -birth_prevention n 1 2 @ ~ 1 1 00851994 -birth_rate n 1 1 @ 1 0 15276427 -birth_trauma n 2 1 @ 2 0 14287995 14285461 -birthday n 2 1 @ 2 2 15250178 15252422 -birthday_cake n 1 1 @ 1 0 07629988 -birthday_card n 1 1 @ 1 0 06627260 -birthday_gift n 1 1 @ 1 0 13269054 -birthday_party n 1 1 @ 1 0 07448121 -birthday_present n 1 1 @ 1 0 13269054 -birthday_suit n 1 1 @ 1 0 14456586 -birthing n 1 3 @ ~ #p 1 0 13532886 -birthing_coach n 1 1 @ 1 0 10241024 -birthmark n 1 2 @ ~ 1 0 04692638 -birthplace n 2 1 @ 2 1 08510350 08510456 -birthrate n 1 1 @ 1 0 15276427 -birthright n 3 1 @ 3 1 04921576 13263920 04921308 -birthroot n 1 1 @ 1 0 12468900 -birthwort n 1 3 @ ~ #m 1 0 11801392 -birthwort_family n 1 3 @ #m %m 1 0 11801038 -biryani n 1 1 @ 1 0 07654298 -bisayan n 1 3 @ ~ #m 1 0 10755648 -bisayas n 1 2 @ #p 1 0 08982452 -biscayne_bay n 1 2 @ #p 1 0 09221723 -biscayne_national_park n 1 2 @ #p 1 0 08602997 -biscuit n 2 3 @ ~ ; 2 2 07693972 07635155 -biscutalla_laevigata n 1 2 @ #m 1 0 11874878 -biscutella n 1 3 @ #m %m 1 0 11874707 -bise n 1 1 @ 1 0 11429356 -bisection n 1 2 @ + 1 0 00386450 -biserial_correlation n 1 2 @ ; 1 0 06033889 -biserial_correlation_coefficient n 1 2 @ ; 1 0 06033889 -bisexual n 1 3 @ ~ + 1 0 09857007 -bisexual_person n 1 2 @ ~ 1 0 09857007 -bisexuality n 2 2 @ + 2 0 05008746 00857160 -bishkek n 1 2 @ #p 1 0 09020792 -bishop n 3 4 @ ~ + ; 3 1 09857200 07913300 02844056 -bishop's_cap n 1 3 @ ~ #m 1 0 12800586 -bishop's_hat n 1 2 @ #m 1 0 11699071 -bishop's_pine n 1 1 @ 1 0 11610437 -bishop's_throne n 1 2 @ #p 1 0 02983904 -bishop_berkeley n 1 1 @ 1 0 10847125 -bishop_of_rome n 1 3 @ ~ #m 1 0 10453533 -bishop_pine n 1 1 @ 1 0 11610437 -bishop_ulfila n 1 1 @ 1 0 11355669 -bishop_ulfilas n 1 1 @ 1 0 11355669 -bishop_wulfila n 1 1 @ 1 0 11355669 -bishopric n 1 3 @ ~ %p 1 0 08550966 -bishopry n 1 1 @ 1 1 00589494 -biskek n 1 2 @ #p 1 0 09020792 -bismarck n 2 3 @ #p + 2 0 10851599 09129719 -bismarck_archipelago n 1 3 @ #p %p 1 0 08842819 -bismarck_sea n 2 4 @ #p ; - 2 0 09221900 01271669 -bismark n 1 1 @ 1 0 07639344 -bismuth n 1 2 @ + 1 0 14631502 -bison n 1 3 @ ~ #m 1 0 02410509 -bison_bison n 1 3 @ #m %p 1 0 02410702 -bison_bonasus n 1 2 @ #m 1 0 02410900 -bisque n 1 1 @ 1 0 07584332 -bissau n 1 2 @ #p 1 0 08948027 -bissextile_day n 1 2 @ #p 1 0 15159426 -bissextile_year n 1 1 @ 1 0 15202230 -bister n 1 1 @ 1 0 14843640 -bistre n 1 1 @ 1 0 14843640 -bistro n 1 1 @ 1 0 02844214 -bit n 11 5 @ ~ #p %p + 11 5 13761407 09222051 15246853 07309457 02844714 13625237 07579076 07009042 06892016 02845002 02844307 -bit_field n 1 2 @ ; 1 0 08005761 -bit_part n 1 2 @ ~ 1 1 05929363 -bitartrate n 1 1 @ 1 0 14955682 -bitch n 4 4 @ ~ + ; 4 0 14408519 09982873 07209965 02083672 -bitchery n 1 2 @ + 1 0 01222333 -bitchiness n 1 2 @ + 1 0 04842515 -bite n 9 4 @ ~ + ; 9 2 14287408 07579076 14297870 07577374 07477413 06776986 04992834 00838816 00361041 -bite_plate n 1 1 @ 1 0 02845130 -biteplate n 1 1 @ 1 0 02845130 -biter n 1 3 @ ~ + 1 1 09857852 -bitewing n 1 1 @ 1 0 02845293 -bithynia n 1 3 @ #p %p 1 0 08503921 -biting_louse n 1 3 @ ~ #m 1 0 02185481 -biting_midge n 1 2 @ #m 1 0 02202678 -bitis n 1 3 @ #m %m 1 0 01752889 -bitis_arietans n 1 2 @ #m 1 0 01753032 -bitis_gabonica n 1 2 @ #m 1 0 01753180 -bitmap n 1 1 @ 1 0 02845425 -bitok n 1 1 @ 1 0 07862770 -bits_per_inch n 1 2 @ ; 1 0 05089048 -bits_per_second n 1 2 @ ; 1 0 15276642 -bitstock n 1 2 @ #p 1 0 02886907 -bitt n 1 6 @ ~ #p %p + ; 1 0 02864593 -bitt_pin n 1 1 @ 1 0 02845860 -bittacidae n 1 3 @ #m %m 1 0 02162831 -bitter n 3 4 @ ~ + ; 3 0 07889814 05717115 04994824 -bitter-bark n 1 2 @ #m 1 0 12669362 -bitter_almond n 1 1 @ 1 0 12645530 -bitter_almond_oil n 1 1 @ 1 0 12645913 -bitter_aloes n 1 1 @ 1 0 02698366 -bitter_betch n 1 1 @ 1 0 12576451 -bitter_cassava n 1 3 @ %s %p 1 0 12926689 -bitter_chocolate n 1 1 @ 1 0 07602279 -bitter_cress n 1 3 @ ~ #m 1 0 11881742 -bitter_dock n 1 1 @ 1 0 12604639 -bitter_end n 2 3 @ #p ; 2 1 14476697 02845576 -bitter_floom n 1 1 @ 1 0 12298395 -bitter_hickory n 1 2 @ #m 1 0 12320806 -bitter_lemon n 1 1 @ 1 0 07927836 -bitter_orange n 2 4 @ #m #p %p 2 0 12708654 07748753 -bitter_orange_tree n 1 3 @ #m %p 1 0 12708654 -bitter_pea n 1 2 @ #m 1 0 12525168 -bitter_pecan n 1 2 @ #m 1 0 12320414 -bitter_pignut n 1 2 @ #m 1 0 12320806 -bitter_principle n 1 1 @ 1 0 14776523 -bitter_salts n 1 1 @ 1 0 14945725 -bitter_spar n 1 2 @ %s 1 0 14673747 -bittercress n 1 3 @ ~ #m 1 0 11881742 -bittern n 1 2 @ ~ 1 0 02011460 -bitterness n 4 3 @ ~ + 4 2 07548978 04643397 05717115 04994824 -bitternut n 1 2 @ #m 1 0 12320806 -bitternut_hickory n 1 2 @ #m 1 0 12320806 -bitterroot n 1 2 @ #m 1 0 11860555 -bitters n 1 1 @ 1 1 07903101 -bittersweet n 2 2 @ #m 2 0 12894607 12748248 -bittersweet_chocolate n 1 1 @ 1 0 07603722 -bittersweet_nightshade n 1 2 @ #m 1 0 12894607 -bitterweed n 2 3 @ ~ #m 2 0 12003167 11919447 -bitterwood n 3 3 @ #m %s 3 0 12718995 12718483 12716594 -bitterwood_tree n 1 3 @ ~ #m 1 0 12715914 -bitthead n 1 2 @ #p 1 0 02845763 -bitumastic n 1 1 @ 1 0 02845985 -bitumen n 1 3 @ ~ + 1 0 14911530 -bituminous_coal n 1 2 @ ~ 1 0 14815086 -biu-mandara n 1 2 @ ~ 1 0 06984953 -bivalve n 1 4 @ ~ #m + 1 0 01955933 -bivalvia n 1 3 @ #m %m 1 0 01955463 -bivouac n 2 4 @ ~ + ; 2 1 02944826 08518171 -bivouacking n 1 1 @ 1 0 01055165 -biweekly n 1 1 @ 1 0 06594904 -biz n 1 2 @ ; 1 0 00583089 -bizarreness n 1 2 @ + 1 0 04798511 -bize n 1 1 @ 1 0 11429356 -bizet n 1 1 @ 1 0 10851865 -bja n 1 3 @ #p ; 1 0 08135770 -bjs n 1 2 @ #p 1 0 08136027 -bk n 1 1 @ 1 0 14631134 -blabber n 1 3 @ ~ + 1 0 10206173 -blabbermouth n 1 1 @ 1 0 10692696 -blaberus n 1 3 @ #m %m 1 0 02235078 -black n 7 6 ! @ ~ #m + ; 7 1 04960277 13983807 10852130 10851987 09636339 02846260 02846141 -black-and-tan_coonhound n 1 1 @ 1 0 02089078 -black-and-tan_terrier n 1 2 @ ~ 1 0 02094721 -black-backed_gull n 1 2 @ #m 1 0 02041875 -black-billed_cuckoo n 1 2 @ #m 1 0 01823740 -black-body_radiation n 1 1 @ 1 0 11429661 -black-capped_chickadee n 1 1 @ 1 0 01592257 -black-crowned_night_heron n 1 2 @ #m 1 0 02010728 -black-eyed_pea n 3 4 @ #m #p %p 3 0 12578916 12578626 07726672 -black-eyed_susan n 3 2 @ #m 3 0 12813189 12180456 12008487 -black-eyed_susan_vine n 1 2 @ #m 1 0 12813189 -black-footed_albatross n 1 2 @ #m 1 0 02058747 -black-footed_ferret n 1 2 @ #m 1 0 02443484 -black-fronted_bush_shrike n 1 2 @ #m 1 0 01600341 -black-headed_snake n 1 2 @ #m 1 0 01739094 -black-legged_tick n 1 2 @ #m 1 0 01777909 -black-necked_cobra n 1 2 @ #m 1 0 01748686 -black-necked_grebe n 1 1 @ 1 0 02050586 -black-necked_stilt n 1 2 @ #m 1 0 02034971 -black-necked_stork n 1 2 @ #m 1 0 02004492 -black-stem_spleenwort n 1 1 @ 1 0 13181406 -black-stemmed_spleenwort n 1 1 @ 1 0 13181406 -black-tailed_deer n 1 1 @ 1 0 02432704 -black-winged_stilt n 1 2 @ #m 1 0 02035210 -black_africa n 1 2 @ #p 1 0 09172480 -black_african n 1 2 @ ~ 1 0 09635534 -black_american n 1 1 @ 1 0 09637013 -black_and_gold_garden_spider n 1 2 @ #m 1 0 01773157 -black_and_tan n 1 1 @ 1 0 09857957 -black_and_white n 2 3 @ ~ %p 2 0 06349220 02846399 -black_angus n 1 1 @ 1 0 02405929 -black_apricot n 1 2 @ #m 1 0 12641180 -black_archangel n 1 2 @ #m 1 0 12841872 -black_art n 1 2 @ ~ 1 0 05978812 -black_ash n 1 1 @ 1 0 12305089 -black_bamboo n 1 2 @ #m 1 0 12149350 -black_bass n 2 3 @ ~ #m 2 0 02567772 02564720 -black_bead n 1 2 @ #m 1 0 11764814 -black_bean n 1 1 @ 1 0 07727458 -black_bear n 2 3 @ ~ #m 2 0 02133704 02133161 -black_bearberry n 1 1 @ 1 0 12231709 -black_bee n 1 1 @ 1 0 02208848 -black_beech n 1 2 @ #m 1 0 12267411 -black_belt n 2 1 @ 2 0 09858165 07268166 -black_bile n 1 1 @ 1 0 05406782 -black_bindweed n 1 2 @ #m 1 0 12089846 -black_birch n 2 2 @ #m 2 0 12283147 12282933 -black_body n 1 1 @ 1 1 09222406 -black_book n 1 1 @ 1 0 06487260 -black_box n 1 1 @ 1 0 02846733 -black_bread n 1 1 @ 1 1 07685918 -black_bream n 1 2 @ #m 1 0 02593191 -black_bryony n 1 2 @ #m 1 0 12089846 -black_buck n 1 2 @ #m 1 0 02420509 -black_buffalo n 1 2 @ #m 1 0 01445593 -black_calla n 1 2 @ #m 1 0 11780424 -black_caraway n 1 1 @ 1 0 11737125 -black_carpet_beetle n 1 1 @ 1 0 02170738 -black_cat n 1 1 @ 1 0 02450829 -black_catechu n 1 2 @ #s 1 0 11757433 -black_cherry n 2 3 @ ~ #p 2 0 12648888 07757312 -black_cherry_tree n 1 1 @ 1 0 12648888 -black_cock n 1 1 @ 1 0 01796019 -black_cohosh n 1 1 @ 1 0 11728945 -black_comedy n 1 1 @ 1 0 07015841 -black_cottonwood n 2 1 @ 2 0 12733428 12733218 -black_crappie n 1 1 @ 1 0 02562971 -black_currant n 2 4 @ #m #p %p 2 0 12805561 07744559 -black_cypress_pine n 1 1 @ 1 0 11633999 -black_death n 1 1 @ 1 0 14139462 -black_diamond n 1 1 @ 1 0 14793393 -black_disease n 1 1 @ 1 0 14265006 -black_duck n 1 2 @ #m 1 0 01847978 -black_economy n 1 2 @ #p 1 0 08364548 -black_elder n 1 1 @ 1 0 12679201 -black_elderberry n 1 2 @ %p 1 0 12678548 -black_english n 1 2 @ - 1 0 06947658 -black_english_vernacular n 1 2 @ - 1 0 06947658 -black_eye n 3 2 @ ~ 3 1 14289387 14438419 07475870 -black_felt_cup n 1 1 @ 1 0 12984160 -black_flag n 1 2 @ %p 1 1 02847009 -black_fly n 1 2 @ #m 1 0 02205673 -black_forest n 1 2 @ ; 1 0 09222742 -black_fox n 1 1 @ 1 0 02119247 -black_friar n 1 3 @ ~ #m 1 0 10778345 -black_fritillary n 1 1 @ 1 0 12452480 -black_grama n 1 1 @ 1 0 12112337 -black_greasewood n 1 2 @ #m 1 0 11835251 -black_grouse n 1 3 @ ~ #m 1 0 01795545 -black_guillemot n 1 1 @ 1 0 02046939 -black_gum n 2 1 @ 2 0 12340755 12338454 -black_hand n 1 2 @ ; 1 0 08246036 -black_haw n 2 2 @ #m 2 0 12773142 12681579 -black_hawk n 1 1 @ 1 0 10852320 -black_hellebore n 2 1 @ 2 0 11734493 11734300 -black_hemlock n 1 1 @ 1 0 11627908 -black_henbane n 1 2 @ #m 1 0 12904314 -black_hickory n 3 3 @ #m %p 3 0 12322099 12320627 12319204 -black_hills n 2 3 @ #p %p 2 0 09222880 09139993 -black_hole n 1 1 @ 1 1 09223177 -black_hole_of_calcutta n 1 1 @ 1 0 02847223 -black_hollander n 1 2 @ #m 1 0 12727960 -black_horehound n 1 2 @ #m 1 0 12841872 -black_huckleberry n 1 2 @ %p 1 0 12236768 -black_humor n 1 2 @ ; 1 0 07068133 -black_humour n 1 2 @ ; 1 0 07068133 -black_ice n 1 1 @ 1 0 14915462 -black_jack_pershing n 1 1 @ 1 0 11230780 -black_kite n 1 1 @ 1 0 01608814 -black_knapweed n 1 1 @ 1 0 11948656 -black_knot n 1 1 @ 1 0 14278219 -black_larch n 1 1 @ 1 0 11619227 -black_lead n 1 2 @ ~ 1 0 14796575 -black_letter n 1 1 @ 1 0 06826589 -black_locust n 2 4 @ #m #s %s 2 0 12568506 12568186 -black_lotion n 1 2 @ %s 1 0 02847942 -black_lovage n 1 2 @ #m 1 0 12945828 -black_lung n 1 1 @ 1 0 14150210 -black_lung_disease n 1 1 @ 1 0 14150210 -black_magic n 1 2 @ ~ 1 0 05978812 -black_maire n 1 2 @ #m 1 0 12301613 -black_mallee n 1 1 @ 1 0 12338454 -black_mamba n 1 2 @ ~ 1 0 01749742 -black_man n 1 2 @ ~ 1 1 09637211 -black_mangrove n 2 2 @ #m 2 0 12916179 12915568 -black_margate n 1 1 @ 1 0 02589796 -black_maria n 2 1 @ 2 0 03977966 00496599 -black_market n 2 3 @ %m + 2 0 08425173 01097739 -black_marketeer n 1 3 @ #m + 1 0 09858560 -black_marlin n 1 1 @ 1 0 02631475 -black_medick n 1 1 @ 1 0 12549192 -black_morel n 1 2 @ #m 1 0 13033577 -black_moss n 1 2 @ #m 1 0 12608127 -black_mulberry n 1 1 @ 1 0 12399534 -black_music n 1 2 @ ~ 1 0 07025604 -black_muslim n 1 3 @ ~ #m 1 0 09858733 -black_mustard n 1 3 @ #m %p 1 0 11879505 -black_nightshade n 1 2 @ ~ 1 0 12896307 -black_oak n 1 1 @ 1 0 12279458 -black_olive n 1 1 @ 1 1 07767549 -black_opal n 1 1 @ 1 0 14776686 -black_operation n 1 1 @ 1 0 00984357 -black_panther n 1 2 @ #m 1 0 09858913 -black_panthers n 1 2 @ %m 1 0 08258358 -black_pea n 1 2 @ #m 1 0 12540488 -black_pepper n 2 4 @ #m %s %p 2 0 13149506 07815839 -black_person n 1 4 @ ~ #m ; 1 0 09636339 -black_pine n 5 2 @ #m 5 0 11658544 11658331 11618290 11614713 11611233 -black_plague n 1 1 @ 1 0 14139462 -black_poplar n 1 2 @ ~ 1 0 12732491 -black_prince n 1 1 @ 1 0 10949782 -black_pudding n 1 1 @ 1 0 07676121 -black_race n 1 2 @ %m 1 0 09636890 -black_racer n 1 2 @ ~ 1 0 01730960 -black_raspberry n 1 2 @ %p 1 0 12656685 -black_rat n 1 2 @ #m 1 0 02333909 -black_rat_snake n 1 2 @ #m 1 0 01732789 -black_rhinoceros n 1 2 @ #m 1 0 02393161 -black_rock_desert n 1 2 @ #p 1 0 09168592 -black_rockweed n 1 2 @ #m 1 0 01405250 -black_root_rot_fungus n 1 2 @ #m 1 0 12966804 -black_rot n 1 1 @ 1 0 14278360 -black_rudderfish n 1 2 @ #m 1 0 02635154 -black_sage n 1 2 @ #m 1 0 12871484 -black_sally n 1 1 @ 1 0 12338454 -black_salsify n 2 4 @ #m #p %p 2 0 12013035 07735294 -black_saltwort n 1 2 @ #m 1 0 12093885 -black_sea n 1 2 @ %p 1 0 09223325 -black_sea_bass n 1 2 @ #m 1 0 02567772 -black_september n 1 2 @ ; 1 0 08020242 -black_september_movement n 1 2 @ ; 1 0 08018666 -black_sheep n 2 1 @ 2 0 10555430 02413050 -black_snakeroot n 2 1 @ 2 0 11802410 11728945 -black_spleenwort n 1 1 @ 1 0 13180875 -black_spot n 1 1 @ 1 0 14278500 -black_spruce n 1 1 @ 1 0 11625804 -black_squirrel n 1 2 @ #m 1 0 02356977 -black_stork n 1 2 @ #m 1 0 02002724 -black_sumac n 1 1 @ 1 0 12763762 -black_swan n 1 2 @ #m 1 0 01860187 -black_tai n 1 1 @ 1 0 06935016 -black_tea n 1 2 @ ~ 1 0 07934530 -black_tie n 2 1 @ 2 0 03201776 02847631 -black_tongue n 1 1 @ 1 0 14311801 -black_tree_fern n 1 2 @ #m 1 0 13187367 -black_turnstone n 1 1 @ 1 0 02025389 -black_vernacular n 1 2 @ - 1 0 06947658 -black_vernacular_english n 1 2 @ - 1 0 06947658 -black_vomit n 1 1 @ 1 0 14144960 -black_vulture n 2 2 @ #m 2 0 01620414 01618082 -black_walnut n 2 4 @ #m #p %p 2 0 12319204 07771405 -black_walnut_tree n 1 3 @ #m %p 1 0 12319204 -black_wattle n 1 2 @ #m 1 0 11756870 -black_weevil n 1 2 @ #m 1 0 02182930 -black_whale n 2 2 @ #m 2 0 02071636 02067240 -black_widow n 1 2 @ #m 1 0 01774384 -black_willow n 1 2 @ #m 1 0 12729315 -black_woman n 1 1 @ 1 0 09637339 -blackamoor n 1 4 @ ~ #m ; 1 0 09636339 -blackback_flounder n 1 2 @ %p 1 0 02659478 -blackball n 1 2 @ + 1 0 00207622 -blackbeard n 1 1 @ 1 0 11334003 -blackbeetle n 1 2 @ #m 1 0 02233943 -blackberry n 2 4 @ ~ #p + 2 1 07744811 12653762 -blackberry-lily n 1 2 @ #m 1 0 12416073 -blackberry_bush n 1 2 @ ~ 1 0 12653762 -blackbird n 2 3 @ ~ #m 2 0 01574045 01558594 -blackboard n 1 1 @ 1 1 02846511 -blackboard_eraser n 1 1 @ 1 0 02846619 -blackbody n 1 1 @ 1 0 09222406 -blackbody_radiation n 1 1 @ 1 0 11429661 -blackbuck n 1 2 @ #m 1 0 02420509 -blackburn n 1 2 @ #m 1 0 01569060 -blackburnian_warbler n 1 2 @ #m 1 0 01569060 -blackcap n 4 3 @ #m %p 4 0 12656685 02042180 01592257 01564773 -blackcap_raspberry n 1 2 @ %p 1 0 12656685 -blackcock n 1 1 @ 1 0 01796019 -blackdamp n 1 1 @ 1 0 14797264 -blackening n 1 2 @ ~ 1 1 00274437 -blackface n 1 1 @ 1 0 02846874 -blackfish n 3 2 @ #m 3 0 02610066 02535163 02071636 -blackfly n 2 2 @ #m 2 0 02252972 02205673 -blackfoot n 2 1 @ 2 0 09650839 06908494 -blackfoot_daisy n 1 2 @ #m 1 0 11995840 -blackfriar n 1 3 @ ~ #m 1 0 10778345 -blackguard n 1 3 @ ~ + 1 0 09886220 -blackhead n 1 2 @ #p 1 0 05245775 -blackheart n 2 1 @ 2 0 14278102 07757753 -blackheart_cherry n 1 1 @ 1 0 07757753 -blacking n 1 1 @ 1 0 15039568 -blackjack n 4 2 @ %p 4 0 12274863 02847461 02847009 00490350 -blackjack_oak n 1 1 @ 1 0 12274863 -blackleg n 1 2 @ + 1 0 10554455 -blacklist n 1 2 @ + 1 0 06487260 -blackmail n 1 2 @ + 1 0 00784598 -blackmailer n 1 2 @ + 1 1 09858299 -blackmouth_bass n 1 2 @ #m 1 0 02567334 -blackness n 2 3 @ ~ + 2 2 04960277 13983807 -blackout n 5 4 @ ~ + ; 5 2 15271619 13984082 07422506 05679800 05672391 -blackpoll n 1 2 @ #m 1 0 01569566 -blackpool n 1 2 @ #p 1 0 08878367 -blacksburg n 1 2 @ #p 1 0 09150284 -blackseed n 1 2 @ #m 1 0 12140511 -blackshirt n 1 1 @ 1 0 09859038 -blacksmith n 1 2 @ ~ 1 1 09859152 -blacksnake n 2 3 @ ~ #m 2 0 01732789 01730960 -blacktail n 1 1 @ 1 0 02432704 -blacktail_deer n 1 1 @ 1 0 02432704 -blacktail_jackrabbit n 1 1 @ 1 0 02327435 -blacktail_prairie_dog n 1 1 @ 1 0 02359556 -blackthorn n 2 2 @ #m 2 0 12649723 12627119 -blacktip_shark n 1 2 @ #m 1 0 01489920 -blacktop n 1 2 @ + 1 0 14976871 -blacktopping n 1 2 @ + 1 0 14976871 -blackwall_hitch n 1 1 @ 1 0 02847728 -blackwash n 3 2 @ %s 3 0 06719974 02847942 02847852 -blackwater n 1 1 @ 1 0 14073331 -blackwater_fever n 1 1 @ 1 0 14073647 -blackwood n 2 4 @ ~ #s %s 2 0 12524395 12524188 -blackwood_tree n 1 3 @ ~ %s 1 0 12524188 -bladder n 2 4 @ ~ #p + 2 0 05512139 02848118 -bladder_campion n 2 2 @ #m 2 0 11816829 11816336 -bladder_cherry n 1 1 @ 1 0 12910875 -bladder_disorder n 1 2 @ ~ 1 0 14057221 -bladder_fern n 1 3 @ ~ #m 1 0 13195761 -bladder_fucus n 1 2 @ #m 1 0 01405250 -bladder_ketmia n 1 1 @ 1 0 12180456 -bladder_senna n 1 2 @ #m 1 0 12518481 -bladder_sphincter n 1 2 @ #p 1 0 05572396 -bladder_stone n 1 1 @ 1 0 09223487 -bladder_worm n 1 2 @ #m 1 0 01924800 -bladdernose n 1 2 @ #m 1 0 02081060 -bladdernut_family n 1 3 @ #m %m 1 0 12769430 -bladderpod n 4 2 @ #m 4 0 12168898 11899762 11893640 11890884 -bladderwort n 1 2 @ #m 1 0 12872458 -bladderwort_family n 1 3 @ #m %m 1 0 12871992 -bladderwrack n 2 2 @ #m 2 0 01405616 01405250 -blade n 9 4 @ ~ #p %p 9 4 13131883 09859285 09223591 04373894 07661165 05236029 02848806 02848523 02848216 -blade_apple n 1 2 @ #p 1 0 07769102 -blade_bit n 1 1 @ 1 0 03353147 -blade_roast n 1 1 @ 1 0 07661273 -blaeberry n 1 2 @ %p 1 0 12248574 -blah n 1 1 @ 1 0 07087777 -blahs n 1 2 @ ; 1 0 07539962 -blaia_zimondal n 1 1 @ 1 0 06895601 -blain n 1 2 @ ~ 1 0 14183420 -blair n 1 1 @ 1 0 10852506 -blaise_pascal n 1 1 @ 1 0 11224419 -blake n 1 1 @ 1 0 10852669 -blame n 2 3 @ ~ + 2 2 07237758 06713752 -blame_game n 1 1 @ 1 0 07236307 -blamelessness n 1 2 @ + 1 0 13989863 -blameworthiness n 1 2 @ + 1 0 13990960 -blanc n 1 1 @ 1 0 07836600 -blanc_fixe n 1 1 @ 1 0 14772877 -blanching_agent n 1 3 @ ~ #s 1 0 14779205 -blancmange n 1 1 @ 1 0 07610746 -bland_diet n 1 1 @ 1 0 07562017 -blandfordia n 1 3 @ #m %m 1 0 12443929 -blandishment n 2 3 @ ~ + 2 0 06695862 00159899 -blandness n 3 2 @ + 3 1 04629417 04997282 04913322 -blank n 4 1 @ 4 0 06839190 03632189 02849051 02848921 -blank_check n 2 2 @ #m 2 0 13993685 13383696 -blank_cheque n 1 2 @ #m 1 0 13383696 -blank_endorsement n 1 1 @ 1 0 06405423 -blank_shell n 1 1 @ 1 0 02848921 -blank_space n 1 3 @ ~ #p 1 0 06389553 -blank_verse n 1 1 @ 1 0 06378524 -blanket n 3 4 @ ~ #p + 3 2 02849154 09223725 02849419 -blanket_flower n 1 1 @ 1 0 11970846 -blanket_stitch n 1 1 @ 1 0 02849565 -blankness n 1 2 @ + 1 0 14455419 -blanquillo n 1 2 @ #m 1 0 02583096 -blantyre n 1 2 @ #p 1 0 08962951 -blare n 1 2 @ + 1 1 07377473 -blarina n 1 3 @ #m %m 1 0 01892271 -blarina_brevicauda n 1 2 @ #m 1 0 01892385 -blaring n 1 1 @ 1 1 07377473 -blarney n 1 2 @ + 1 0 06696025 -blarney_stone n 1 1 @ 1 0 02849729 -blasphemer n 1 3 @ ~ + 1 0 09859412 -blasphemy n 2 2 @ + 2 1 07124172 00746587 -blast n 6 4 @ ~ + ; 6 2 00128867 07376257 11465017 07408171 07287288 06711159 -blast_furnace n 1 2 @ #p 1 0 02849885 -blast_trauma n 1 1 @ 1 0 14288107 -blast_wave n 1 2 @ ~ 1 0 07347846 -blastema n 1 2 @ + 1 0 05431402 -blaster n 1 2 @ + 1 0 09859557 -blasting_cap n 1 2 @ %p 1 0 02850060 -blasting_gelatin n 1 2 @ %s 1 0 02850218 -blastocele n 1 3 @ #p + 1 0 01459242 -blastocladia n 1 2 @ #m 1 0 12978826 -blastocladiales n 1 3 @ #m %m 1 0 12978381 -blastocoel n 1 3 @ #p + 1 0 01459242 -blastocoele n 1 3 @ #p + 1 0 01459242 -blastocyst n 1 1 @ 1 0 01462042 -blastocyte n 1 1 @ 1 0 05447962 -blastocytoma n 1 1 @ 1 0 14236595 -blastoderm n 1 2 @ + 1 0 01459480 -blastodermic_vessicle n 1 1 @ 1 0 01462042 -blastodiaceae n 1 3 @ #m %m 1 0 12978654 -blastodisc n 1 1 @ 1 0 01459480 -blastoff n 1 2 @ + 1 0 00103590 -blastogenesis n 2 2 @ + 2 0 13438979 05992804 -blastoma n 1 1 @ 1 0 14236595 -blastomere n 1 2 @ + 1 0 01459664 -blastomyces n 1 2 @ #m 1 0 13080174 -blastomycete n 1 1 @ 1 0 13080306 -blastomycosis n 1 3 @ ~ + 1 0 14125159 -blastopore n 1 3 @ #p + 1 0 01463115 -blastosphere n 1 4 @ ~ %p + 1 0 01461646 -blastula n 1 4 @ ~ %p + 1 0 01461646 -blatancy n 1 2 @ + 1 1 04706882 -blather n 1 2 @ + 1 0 06610332 -blatherskite n 1 1 @ 1 0 06610332 -blatta n 1 3 @ #m %m 1 0 02233767 -blatta_orientalis n 1 2 @ #m 1 0 02233943 -blattaria n 1 3 @ #m %m 1 0 02233096 -blattella n 1 3 @ #m %m 1 0 02234719 -blattella_germanica n 1 2 @ #m 1 0 02234848 -blattidae n 1 3 @ #m %m 1 0 02233577 -blattodea n 1 3 @ #m %m 1 0 02233096 -blaxploitation n 1 1 @ 1 0 00419315 -blaze n 5 2 @ + 5 3 13439088 07305907 00736786 04952570 04681058 -blazer n 1 1 @ 1 0 02850358 -blazing n 1 1 @ 1 0 13439088 -blazing_star n 2 3 @ ~ #m 2 0 12035631 11991263 -blazon n 1 5 @ ~ %p + ; 1 0 03058726 -blazonry n 1 5 @ ~ %p + ; 1 0 03058726 -bleach n 3 4 @ ~ #s + 3 1 04961136 14779205 00274009 -bleach_liquor n 1 2 @ %s 1 0 14781062 -bleacher n 1 2 @ + 1 0 09859684 -bleachers n 1 2 @ ; 1 1 02850552 -bleaching_agent n 1 3 @ ~ #s 1 0 14779205 -bleaching_clay n 1 1 @ 1 0 14780605 -bleaching_earth n 1 1 @ 1 0 14780605 -bleaching_powder n 1 1 @ 1 0 14780850 -bleakness n 1 2 @ + 1 0 14525548 -bleat n 1 2 @ + 1 1 07377931 -bleb n 1 4 @ ~ + ; 1 1 05517837 -blechnaceae n 1 3 @ #m %m 1 0 13184492 -blechnum n 1 3 @ #m %m 1 0 13184873 -blechnum_spicant n 1 1 @ 1 0 13185269 -bleeder n 1 2 @ + 1 0 10170989 -bleeder's_disease n 1 2 @ ~ 1 0 14170337 -bleeding n 1 3 @ ~ + 1 0 14288235 -bleeding_heart n 2 2 @ #m 2 0 11910271 09859818 -bleeding_tooth n 1 2 @ #m 1 0 01946827 -bleep n 1 2 @ + 1 0 07377082 -blemish n 1 3 @ ~ + 1 1 04692157 -blend n 3 4 @ ~ + - 3 1 07375405 06288527 00380696 -blende n 1 2 @ %s 1 0 15107876 -blended_whiskey n 1 1 @ 1 0 07906572 -blended_whisky n 1 1 @ 1 0 07906572 -blender n 1 2 @ + 1 0 02850732 -blending n 2 2 @ ~ 2 1 00380696 01003936 -blenheim n 1 3 @ #p ; 1 0 01271915 -blenheim_spaniel n 1 1 @ 1 0 02086646 -blenniidae n 1 3 @ #m %m 1 0 02612982 -blennioid n 1 3 @ ~ #m 1 0 02612657 -blennioid_fish n 1 3 @ ~ #m 1 0 02612657 -blennioidea n 1 3 @ #m %m 1 0 02612393 -blennius n 1 3 @ #m %m 1 0 02613434 -blennius_pholis n 1 2 @ #m 1 0 02613572 -blenny n 1 3 @ ~ #m 1 0 02613181 -blepharism n 1 1 @ 1 0 14362075 -blepharitis n 1 1 @ 1 0 14261244 -blepharospasm n 1 1 @ 1 0 14361064 -blephilia n 1 3 @ #m %m 1 0 12842105 -blephilia_celiata n 1 2 @ #m 1 0 12842642 -blephilia_hirsuta n 1 2 @ #m 1 0 12842519 -bleriot n 1 1 @ 1 0 10852803 -blessed_event n 1 2 @ ; 1 0 07320894 -blessed_thistle n 2 2 @ #m 2 0 12015525 11955532 -blessed_trinity n 1 2 @ %m 1 0 09536789 -blessed_virgin n 1 1 @ 1 0 11161412 -blessedness n 1 3 @ ~ + 1 0 13987719 -blessing n 5 3 @ ~ + 5 1 01215392 14474264 07190039 07189411 01043693 -blether n 1 2 @ + 1 0 07137129 -bletia n 1 2 @ #m 1 0 12046428 -bletia_striata n 1 2 @ #m 1 0 12046815 -bletilla n 1 3 @ #m %m 1 0 12046620 -bletilla_striata n 1 2 @ #m 1 0 12046815 -bleu n 1 2 @ ~ 1 0 07852045 -bleu_cheese_dressing n 1 1 @ 1 0 07833535 -blewits n 1 1 @ 1 0 13017102 -blida n 1 2 @ #p 1 0 08706502 -bligh n 1 1 @ 1 0 10852961 -blighia n 1 3 @ #m %m 1 0 12742041 -blighia_sapida n 1 3 @ #m %p 1 0 12742290 -blight n 2 3 @ ~ + 2 1 14562854 14215331 -blight_canker n 1 1 @ 1 0 14217147 -blighter n 2 2 @ ~ 2 0 10419630 09908025 -blighty n 1 1 @ 1 0 08873147 -blighty_wound n 1 1 @ 1 0 07340453 -blimp n 2 2 @ ; 2 0 09937489 02850950 -blind n 4 4 @ ~ %m + 4 3 07944408 02851384 02851099 06760508 -blind_alley n 2 2 @ ; 2 0 02851540 00038573 -blind_bend n 1 1 @ 1 0 02851795 -blind_corner n 1 1 @ 1 0 02851675 -blind_curve n 1 1 @ 1 0 02851795 -blind_date n 2 1 @ 2 0 09859975 08385490 -blind_eel n 1 2 @ #m 1 0 01638722 -blind_flying n 1 1 @ 1 0 00303049 -blind_gentian n 2 1 @ 2 0 12294723 12294331 -blind_gut n 1 3 @ #p %p 1 0 05536370 -blind_landing n 1 1 @ 1 0 00303049 -blind_person n 1 2 @ #m 1 0 09860130 -blind_side n 1 1 @ 1 0 08649873 -blind_snake n 1 3 @ ~ #m 1 0 01740551 -blind_spot n 2 2 @ #p 2 0 05815691 05456082 -blind_staggers n 1 1 @ 1 0 14275764 -blind_stitching n 1 1 @ 1 0 00715949 -blind_trust n 1 1 @ 1 0 13361083 -blinder n 1 2 @ + 1 0 04593629 -blindfold n 1 2 @ + 1 0 02851939 -blindman's_bluff n 1 1 @ 1 0 00484362 -blindman's_buff n 1 1 @ 1 0 00484362 -blindness n 1 3 @ ~ + 1 1 14126660 -blindworm n 2 2 @ #m 2 0 01690149 01655344 -bling n 1 1 @ 1 0 02852043 -bling_bling n 1 1 @ 1 0 02852043 -blini n 1 1 @ 1 0 07640844 -blink n 1 3 @ ~ + 1 0 00117959 -blink_of_an_eye n 1 1 @ 1 0 15247110 -blinker n 3 3 @ #p + 3 1 02852173 07262704 04593629 -blinking n 1 3 @ ~ + 1 0 00117959 -blinking_chickweed n 1 1 @ 1 0 11861487 -blinks n 1 1 @ 1 0 11861487 -blintz n 1 2 @ ; 1 0 07640991 -blintze n 1 2 @ ; 1 0 07640991 -bliny n 1 1 @ 1 0 07640844 -blip n 2 1 @ 2 0 07299203 07263358 -bliss n 1 2 @ ~ 1 0 13987905 -blissfulness n 1 3 @ ~ + 1 0 13987905 -blissus n 1 3 @ #m %m 1 0 02239073 -blissus_leucopterus n 1 2 @ #m 1 0 02239192 -blister n 3 4 @ ~ + ; 3 0 14464512 13088858 05517837 -blister_beetle n 1 3 @ ~ #m 1 0 02179012 -blister_blight n 2 1 @ 2 0 14216318 14216234 -blister_copper n 1 1 @ 1 0 14781513 -blister_pack n 1 1 @ 1 0 02852360 -blister_rust n 2 2 @ #m 2 0 14277833 13064457 -blistering n 1 1 @ 1 0 13573181 -blistering_agent n 1 1 @ 1 0 14957270 -blitheness n 1 3 @ ~ + 1 0 07530478 -blitt n 1 1 @ 1 0 06699115 -blitz n 2 3 @ + ; 2 0 00976085 00975781 -blitzkrieg n 1 2 @ ; 1 0 00975781 -blitzstein n 1 1 @ 1 0 10853244 -blixen n 1 1 @ 1 0 10935745 -blizzard n 2 1 @ 2 1 11509570 08459087 -bloat n 1 2 @ + 1 1 14315549 -bloater n 1 1 @ 1 0 07785235 -blob n 1 2 @ + 1 1 13910019 -bloc n 1 2 @ ~ 1 1 08171094 -blocadren n 1 2 @ ; 1 0 04438742 -bloch n 1 1 @ 1 0 10853413 -block n 12 6 @ ~ #p %p + ; 12 5 02852523 08642145 13914608 07954014 02853016 13626464 05645199 04020298 03288225 02853449 02756601 00562398 -block_anaesthesia n 1 1 @ 1 0 14027396 -block_and_tackle n 1 2 @ %p 1 0 02853745 -block_anesthesia n 1 1 @ 1 0 14027396 -block_capital n 1 1 @ 1 1 06839637 -block_diagram n 1 1 @ 1 1 02853991 -block_grant n 1 1 @ 1 0 00088154 -block_letter n 1 1 @ 1 0 06839637 -block_of_metal n 1 2 @ ~ 1 0 03570526 -block_plane n 1 1 @ 1 0 02854532 -block_vote n 1 1 @ 1 0 00183995 -blockade n 2 4 @ ~ + ; 2 1 00954086 02853218 -blockade-runner n 1 1 @ 1 0 02853336 -blockage n 3 3 @ ~ + 3 0 14507951 02853449 01074694 -blockbuster n 2 2 @ ; 2 0 02853870 00064151 -blocker n 2 3 @ ~ + 2 0 09860248 02854156 -blockhead n 1 1 @ 1 0 10039663 -blockhouse n 1 1 @ 1 0 02854378 -blocking n 1 3 @ ~ + 1 0 00562398 -blocking_agent n 1 2 @ ~ 1 0 02854156 -bloemfontein n 1 2 @ #p 1 0 09002325 -blog n 1 1 @ 1 0 06402202 -blogger n 1 1 @ 1 0 09860415 -blok n 1 1 @ 1 0 10853628 -bloke n 1 2 @ ~ 1 1 09908025 -blolly n 1 2 @ #m 1 0 12662379 -blond n 2 2 @ ~ 2 0 09860506 04966017 -blonde n 2 2 @ ~ 2 1 09860506 04966017 -blonde_lilian n 1 1 @ 1 0 12450607 -blondness n 1 2 @ + 1 0 04977247 -blood n 5 6 @ ~ %s %p + ; 5 4 05399847 04628747 10505942 08101937 07944618 -blood-brain_barrier n 1 1 @ 1 0 09223911 -blood-oxygenation_level_dependent_functional_magnetic_resonance_imaging n 1 1 @ 1 0 00902975 -blood-twig n 1 1 @ 1 0 12948053 -blood_agar n 1 1 @ 1 0 14900342 -blood_bank n 1 1 @ 1 0 13368517 -blood_berry n 1 2 @ #m 1 0 11856573 -blood_blister n 1 1 @ 1 0 14312889 -blood_brother n 2 2 @ ~ 2 0 09876454 09860653 -blood_brotherhood n 1 1 @ 1 0 13929477 -blood_cell n 1 3 @ ~ #p 1 0 05449268 -blood_clam n 1 2 @ #m 1 0 01963479 -blood_clot n 1 1 @ 1 0 05402333 -blood_clotting n 1 1 @ 1 0 13439230 -blood_coagulation n 1 1 @ 1 0 13439230 -blood_corpuscle n 1 3 @ ~ #p 1 0 05449268 -blood_count n 2 2 @ ~ 2 0 13592105 00652803 -blood_cup n 1 2 @ #m 1 0 13030852 -blood_cyst n 1 2 @ ~ 1 0 14201989 -blood_disease n 1 2 @ ~ 1 0 14189204 -blood_disorder n 1 2 @ ~ 1 0 14189204 -blood_donor n 1 2 @ ~ 1 0 09860813 -blood_dyscrasia n 1 2 @ ~ 1 0 14053850 -blood_extravasation n 1 1 @ 1 0 14370526 -blood_feud n 1 1 @ 1 0 01236947 -blood_flower n 1 1 @ 1 0 13234293 -blood_fluke n 1 2 @ #m 1 0 01927159 -blood_glucose n 1 1 @ 1 0 14884481 -blood_group n 1 2 @ ~ 1 0 05400601 -blood_heat n 1 2 @ ~ 1 0 05014879 -blood_kinship n 1 2 @ ; 1 0 13813591 -blood_knot n 1 1 @ 1 0 02795783 -blood_lily n 1 3 @ ~ #m 1 0 12420535 -blood_line n 1 2 @ ~ 1 0 08101937 -blood_meal n 1 1 @ 1 0 07570141 -blood_money n 3 1 @ 3 0 13290566 13284184 13281925 -blood_plasma n 1 2 @ %s 1 0 05403427 -blood_platelet n 1 1 @ 1 0 15023959 -blood_poisoning n 1 2 @ ~ 1 0 14189837 -blood_pressure n 1 3 @ ~ #p 1 1 11429968 -blood_profile n 1 1 @ 1 0 00652975 -blood_pudding n 1 1 @ 1 0 07676121 -blood_relation n 1 1 @ 1 0 10236114 -blood_relative n 1 1 @ 1 1 10236114 -blood_sausage n 1 1 @ 1 0 07676121 -blood_serum n 1 4 @ ~ #s %s 1 0 05403149 -blood_spavin n 1 1 @ 1 0 14273084 -blood_sport n 1 2 @ ~ 1 0 00451866 -blood_stream n 1 2 @ #p 1 0 05401951 -blood_sugar n 1 1 @ 1 0 14884481 -blood_test n 1 2 @ ~ 1 0 05742551 -blood_transfusion n 1 2 @ ~ 1 1 00324056 -blood_type n 1 2 @ ~ 1 0 05400601 -blood_typing n 1 1 @ 1 0 00152990 -blood_vessel n 1 3 @ ~ #p 1 1 05417975 -bloodbath n 1 1 @ 1 0 00224260 -bloodberry n 1 2 @ #m 1 0 11856573 -bloodguilt n 1 2 @ + 1 0 13991121 -bloodhound n 1 1 @ 1 1 02088466 -bloodiness n 2 2 @ + 2 0 13974937 04624687 -bloodleaf n 1 3 @ ~ #m 1 0 11826569 -bloodless_revolution n 1 1 @ 1 0 01304356 -bloodletting n 2 3 @ ~ ; 2 0 00698004 00224260 -bloodline n 2 2 @ ~ 2 0 08101937 04923907 -bloodlust n 1 1 @ 1 0 07485203 -bloodmobile n 1 1 @ 1 0 02854630 -bloodroot n 1 2 @ #m 1 0 11908077 -bloodshed n 2 1 @ 2 1 00221178 00224260 -bloodstain n 1 1 @ 1 0 04695605 -bloodstock n 1 1 @ 1 0 08101755 -bloodstone n 1 1 @ 1 0 14781631 -bloodstream n 1 2 @ #p 1 1 05401951 -bloodsucker n 1 3 @ ~ #m 1 0 01937909 -bloodthirstiness n 1 2 @ + 1 0 04624687 -bloodwood_tree n 2 3 @ #m %s 2 0 12565102 12496949 -bloodworm n 1 2 @ #m 1 0 01937579 -bloodwort n 1 2 @ #m 1 0 12312110 -bloodwort_family n 1 3 @ #m %m 1 0 12311894 -bloody_mary n 2 4 @ ~ #m %s 2 0 11161664 07913393 -bloody_shame n 1 1 @ 1 0 07913537 -bloom n 6 5 @ ~ #p %p + 6 4 13439390 11669335 15151641 14050871 15295045 11410527 -bloom_of_youth n 1 2 @ #p 1 0 15151641 -bloomer n 2 3 @ ~ + 2 0 11672269 00074790 -bloomeria n 1 3 @ #m %m 1 0 12444261 -bloomeria_crocea n 1 2 @ #m 1 0 12444490 -bloomers n 1 2 @ ; 1 0 02854739 -bloomfield n 1 1 @ 1 0 10853767 -blooming n 1 1 @ 1 1 13439390 -blooming-fool_begonia n 1 1 @ 1 0 12360958 -bloomington n 1 2 @ #p 1 0 09085089 -bloomsbury n 1 2 @ #p 1 0 08874920 -bloomsbury_group n 1 2 @ %m 1 0 08240966 -blooper n 1 2 @ ~ 1 0 00074790 -blossom n 2 5 @ ~ #p %p + 2 1 11669335 15295045 -blossoming n 1 1 @ 1 0 13439570 -blot n 2 3 @ ~ + 2 1 04694441 00072261 -blotch n 1 2 @ + 1 1 04694809 -blotter n 2 2 @ + 2 0 14781752 06502858 -blotting_paper n 1 1 @ 1 0 14781752 -blouse n 1 3 @ ~ %p 1 0 02854926 -blow n 7 4 @ ~ #p + 7 4 01173038 07338681 07475870 07298982 11465017 03066743 00835501 -blow_drier n 1 1 @ 1 0 03483316 -blow_dryer n 1 1 @ 1 0 03483316 -blow_fly n 1 3 @ ~ #m 1 0 02191773 -blow_gas n 1 1 @ 1 0 14781872 -blow_tube n 2 1 @ 2 0 02855560 02855253 -blowback n 2 2 @ ~ 2 0 07408965 06635104 -blowball n 1 3 @ ~ #m 1 0 12024176 -blower n 3 5 @ ~ #m %p + 3 1 02855089 03271574 02062430 -blowfish n 2 6 @ ~ #m #p %s %p 2 1 07781972 02655020 -blowfly n 1 3 @ ~ #m 1 0 02191773 -blowgun n 1 1 @ 1 0 02855253 -blowhard n 1 1 @ 1 0 09872066 -blowhole n 2 3 @ ~ #p 2 0 05250420 04526241 -blowing n 1 3 @ ~ + 1 1 13439807 -blowing_gas n 1 1 @ 1 1 14781872 -blowing_up n 1 1 @ 1 0 06713377 -blowjob n 1 2 @ ; 1 0 00855301 -blowlamp n 1 2 @ ~ 1 0 02855390 -blowout n 3 2 @ + 3 0 07475107 07318618 00518669 -blowpipe n 2 1 @ 2 0 02855560 02855253 -blowtorch n 1 2 @ ~ 1 0 02855390 -blowtube n 2 1 @ 2 0 02855560 02855253 -blowup n 3 3 @ ~ + 3 0 07308563 07014320 03289462 -blt n 1 1 @ 1 0 07698401 -blu-82 n 1 1 @ 1 0 02836900 -blubber n 2 3 @ ~ + 2 0 14781989 04999401 -blubberer n 1 2 @ + 1 0 09860940 -blucher n 2 1 @ 2 0 10853932 02855701 -bludgeon n 1 3 @ ~ + 1 1 02855793 -bludgeoner n 1 2 @ + 1 0 09861059 -blue n 7 4 @ ~ #m + 7 4 04968895 02855925 08480847 09224566 14986593 02703692 02282257 -blue-belly n 1 1 @ 1 0 01680655 -blue-blindness n 1 2 @ + 1 0 14155031 -blue-chip_stock n 1 1 @ 1 0 13334767 -blue-eyed_african_daisy n 1 2 @ #m 1 0 11925450 -blue-eyed_grass n 1 2 @ #m 1 0 12418221 -blue-eyed_mary n 1 2 @ #m 1 0 12882158 -blue-green_algae n 1 3 @ ~ #m 1 1 01358572 -blue-headed_vireo n 1 1 @ 1 0 01603152 -blue-winged_teal n 1 1 @ 1 0 01848453 -blue_african_lily n 1 2 @ #m 1 0 12429352 -blue_air n 1 1 @ 1 1 09224566 -blue_angel n 1 1 @ 1 0 02703692 -blue_ash n 1 1 @ 1 0 12305819 -blue_baby n 1 1 @ 1 0 09861166 -blue_blood n 1 3 @ ~ #m 1 0 09807754 -blue_book n 3 1 @ 3 0 07219636 06507711 06414151 -blue_bugle n 1 1 @ 1 0 12841193 -blue_bull n 1 2 @ #m 1 0 02425532 -blue_cardinal_flower n 1 1 @ 1 0 12169320 -blue_cat n 1 1 @ 1 0 02519862 -blue_catfish n 1 1 @ 1 0 02519862 -blue_channel_cat n 1 1 @ 1 0 02519862 -blue_channel_catfish n 1 1 @ 1 0 02519862 -blue_cheese n 1 2 @ ~ 1 0 07852045 -blue_cheese_dressing n 2 1 @ 2 0 07833672 07833535 -blue_chip n 2 1 @ 2 0 13334767 02856013 -blue_cohosh n 1 2 @ #m 1 0 11698562 -blue_columbine n 1 2 @ #m 1 0 11727540 -blue_copperas n 1 1 @ 1 0 14782252 -blue_crab n 2 4 @ #m #p %p 2 0 07787980 01979874 -blue_curls n 1 3 @ ~ #m 1 0 12871272 -blue_daisy n 1 2 @ #m 1 0 11969607 -blue_darter n 1 2 @ #m 1 0 01606809 -blue_devil n 2 2 @ #m 2 0 12819728 02703692 -blue_devils n 1 1 @ 1 0 14404460 -blue_elder n 1 2 @ #m 1 0 12678794 -blue_elderberry n 1 2 @ #m 1 0 12678794 -blue_false_indigo n 1 1 @ 1 0 12509665 -blue_fig n 2 4 @ #m #p %p 2 0 12193334 12192877 -blue_flag n 1 1 @ 1 0 12415089 -blue_fleabane n 1 1 @ 1 0 11965962 -blue_fox n 1 1 @ 1 0 02120278 -blue_funk n 1 1 @ 1 0 14404610 -blue_goose n 1 3 @ ~ #m 1 0 01856890 -blue_grama n 1 1 @ 1 0 12112219 -blue_grass n 1 3 @ ~ #m 1 0 12131405 -blue_green n 1 2 @ ~ 1 0 04968426 -blue_gum n 1 1 @ 1 0 12337617 -blue_jack n 1 3 @ #m %p 1 0 02536864 -blue_jasmine n 1 1 @ 1 0 11730015 -blue_jay n 1 2 @ #m 1 0 01580870 -blue_jean n 1 3 @ ~ ; 1 0 03594734 -blue_jessamine n 1 1 @ 1 0 11730015 -blue_jet n 1 1 @ 1 0 11475067 -blue_joke n 1 1 @ 1 0 06779096 -blue_law n 1 2 @ ; 1 0 06538105 -blue_lotus n 2 1 @ 2 0 11716167 11716041 -blue_mahoe n 1 1 @ 1 0 12178494 -blue_marguerite n 1 2 @ #m 1 0 11969607 -blue_marlin n 1 1 @ 1 0 02631330 -blue_mockingbird n 1 2 @ #m 1 0 01587278 -blue_mold_fungus n 1 2 @ #m 1 0 12981086 -blue_moon n 1 2 @ ; 1 0 15244200 -blue_mountain_tea n 1 1 @ 1 0 12017326 -blue_murder n 1 1 @ 1 0 07121904 -blue_nile n 1 1 @ 1 0 09224193 -blue_note n 1 2 @ #p 1 0 07051517 -blue_orchid n 1 2 @ #m 1 0 12086192 -blue_pea n 1 1 @ 1 0 12517642 -blue_peafowl n 1 1 @ 1 0 01806364 -blue_peter n 1 1 @ 1 0 06875552 -blue_pickerel n 1 1 @ 1 0 02557909 -blue_pike n 1 1 @ 1 0 02557909 -blue_pikeperch n 1 1 @ 1 0 02557909 -blue_pimpernel n 1 1 @ 1 0 12868019 -blue_point n 2 4 @ #m #p %p 2 0 07786484 01961059 -blue_point_siamese n 1 1 @ 1 0 02123785 -blue_pointed n 1 1 @ 1 0 01484562 -blue_poppy n 1 2 @ #m 1 0 11906917 -blue_racer n 1 1 @ 1 0 01731137 -blue_ribbon n 1 1 @ 1 0 07268302 -blue_ribbon_commission n 1 1 @ 1 0 08322756 -blue_ribbon_committee n 1 1 @ 1 0 08322756 -blue_ribbon_jury n 1 2 @ ; 1 0 08415469 -blue_ridge n 1 2 @ #p 1 0 09224325 -blue_ridge_mountains n 1 2 @ #p 1 0 09224325 -blue_runner n 1 1 @ 1 0 02577164 -blue_sage n 4 2 @ #m 4 0 12865367 12865239 12864902 12014524 -blue_shark n 1 2 @ #m 1 0 01491006 -blue_skullcap n 1 1 @ 1 0 12868019 -blue_sky n 1 1 @ 1 0 09224566 -blue_sky_law n 1 2 @ ; 1 0 06538215 -blue_star n 1 2 @ #m 1 0 11770753 -blue_stem n 1 1 @ 1 0 12133682 -blue_stone n 1 1 @ 1 0 14782252 -blue_story n 1 1 @ 1 0 06779096 -blue_succory n 1 1 @ 1 0 11946918 -blue_thistle n 1 2 @ #m 1 0 12819728 -blue_tit n 1 2 @ #m 1 0 01592694 -blue_toadflax n 1 1 @ 1 0 12884100 -blue_tulip n 1 1 @ 1 0 11737752 -blue_vitriol n 1 1 @ 1 0 14782252 -blue_wall n 1 1 @ 1 0 01050356 -blue_wall_of_silence n 1 1 @ 1 0 01050356 -blue_walleye n 1 1 @ 1 0 02557909 -blue_whale n 1 2 @ #m 1 0 02064816 -blueback_salmon n 1 3 @ #m %p 1 0 02536165 -bluebeard n 1 2 @ ; 1 0 09590205 -bluebell n 3 2 @ #m 3 0 12459275 12291959 12037328 -blueberry n 2 4 @ ~ #m #p 2 0 12246232 07743544 -blueberry_bush n 1 3 @ ~ #m 1 0 12246232 -blueberry_pie n 1 1 @ 1 1 07626405 -blueberry_root n 1 2 @ #m 1 0 11698562 -blueberry_yogurt n 1 1 @ 1 0 07849506 -bluebill n 1 3 @ ~ #m 1 0 01851375 -bluebird n 2 2 @ #m 2 0 01594004 01562014 -bluebonnet n 2 1 @ 2 0 12547215 02783567 -bluebottle n 2 2 @ #m 2 0 11947802 02191979 -bluecoat n 1 1 @ 1 0 09861287 -bluefin n 2 4 @ #m #p %p 2 0 07781207 02627292 -bluefin_tuna n 2 4 @ #m #p %p 2 0 07781207 02627292 -bluefish n 2 4 @ #m #p %p 2 1 02573704 07785783 -bluegill n 1 2 @ #m 1 0 02563792 -bluegrass n 3 3 @ ~ #m 3 0 12131405 09090389 07062190 -bluegrass_country n 1 1 @ 1 0 09090389 -bluegrass_region n 1 1 @ 1 0 09090389 -bluegrass_state n 1 3 @ #p %p 1 0 09089139 -bluegrass_stater n 1 1 @ 1 0 09743275 -bluehead n 1 2 @ #m 1 0 02609302 -blueing n 2 1 @ 2 0 14986593 13439935 -bluejack_oak n 1 1 @ 1 0 12273114 -bluejacket n 1 2 @ ~ 1 0 09861395 -blueness n 1 3 @ ~ + 1 0 04968895 -bluenose n 1 1 @ 1 0 09725546 -bluepoint n 2 4 @ #m #p %p 2 0 07786484 01961059 -blueprint n 2 2 @ + 2 0 05902327 02856109 -blueprint_paper n 1 1 @ 1 0 14782150 -blues n 2 3 @ ~ %p 2 1 07051185 14404460 -bluestem n 1 1 @ 1 0 12133682 -bluestem_wheatgrass n 1 1 @ 1 0 12105981 -bluestocking n 1 1 @ 1 1 09861599 -bluestone n 1 1 @ 1 0 14995812 -bluethroat n 1 2 @ #m 1 0 01562451 -bluethroat_pikeblenny n 1 2 @ #m 1 0 02614653 -bluetick n 1 1 @ 1 0 02088632 -bluetongue n 1 1 @ 1 0 14261717 -blueweed n 1 2 @ #m 1 0 12819728 -bluewing n 1 1 @ 1 0 01848453 -bluff n 3 2 @ + 3 2 09224725 06759602 00756598 -bluffer n 1 2 @ + 1 0 09861718 -bluffness n 1 2 @ + 1 0 04650913 -bluing n 2 2 @ + 2 0 14986593 13439935 -bluish_green n 1 2 @ ~ 1 0 04968426 -blunder n 1 3 @ ~ + 1 1 00074790 -blunderbuss n 1 2 @ %p 1 0 02856237 -blunderer n 1 2 @ + 1 0 09879744 -blunt-leaf_heath n 1 1 @ 1 0 12253664 -blunt_file n 1 2 ! @ 1 0 02856362 -blunt_trauma n 1 1 @ 1 0 14288725 -bluntness n 2 3 @ ~ + 2 0 04846383 04705671 -blur n 1 2 @ + 1 1 05940414 -blurb n 1 1 @ 1 0 07248060 -blurriness n 1 3 @ ~ + 1 0 04704346 -blush n 2 2 @ + 2 0 14050871 00118268 -blush_wine n 1 1 @ 1 0 07893253 -blusher n 2 3 @ #m + 2 0 13003522 04112752 -blushing_mushroom n 1 2 @ #m 1 0 13003522 -bluster n 4 2 @ + 4 2 13976182 06889591 11465297 07230089 -blusterer n 1 2 @ + 1 0 10274318 -bm n 2 3 @ ~ ; 2 0 14854262 13441387 -bmdo n 1 2 @ #p 1 0 08395991 -bmi n 1 1 @ 1 0 06640016 -bmr n 1 1 @ 1 0 13437610 -bmus n 1 1 @ 1 0 06699366 -bns n 1 1 @ 1 0 06699465 -bo's'n n 1 1 @ 1 0 09862183 -bo'sun n 1 1 @ 1 0 09862183 -bo_hai n 1 2 @ #p 1 0 09226209 -bo_tree n 1 1 @ 1 0 12402596 -boa n 2 3 @ ~ #m 2 0 03325584 01741943 -boa_constrictor n 1 1 @ 1 1 01742172 -boann n 1 2 @ ; 1 0 09508368 -boar n 2 3 @ #m %p 2 0 02396427 02396014 -boar_thistle n 1 1 @ 1 0 11955153 -board n 9 5 @ ~ %m %p + 9 3 08322981 15101854 02856463 07565259 03211616 03201208 03098140 03033986 02857023 -board_foot n 1 1 @ 1 0 13617835 -board_game n 1 3 @ ~ - 1 0 00502415 -board_measure n 1 1 @ 1 0 13617713 -board_meeting n 1 1 @ 1 0 08308039 -board_member n 1 2 @ #m 1 0 10308168 -board_of_appeals n 1 1 @ 1 0 08323301 -board_of_directors n 1 3 @ ~ #m 1 1 08380768 -board_of_education n 1 1 @ 1 0 08413408 -board_of_regents n 1 1 @ 1 1 08323658 -board_of_selectmen n 1 2 @ %m 1 0 08323471 -board_of_trade_unit n 1 2 @ %p 1 0 13727478 -board_of_trustees n 1 1 @ 1 1 08323825 -board_rule n 1 1 @ 1 0 02857812 -boarder n 3 2 @ + 3 0 10269458 09862479 09862345 -boarding n 2 2 @ ~ 2 1 00058337 02857365 -boarding_card n 1 1 @ 1 0 06690647 -boarding_house n 1 2 @ ~ 1 0 02857477 -boarding_pass n 1 1 @ 1 0 06690647 -boarding_school n 1 2 ! @ 1 0 08411701 -boardinghouse n 1 2 @ ~ 1 1 02857477 -boardroom n 1 2 @ ~ 1 0 02857644 -boards n 2 3 @ #p ; 2 0 02858044 02857907 -boardwalk n 1 2 @ ~ 1 0 02858179 -boarfish n 2 2 @ #m 2 0 01453742 01453475 -boarhound n 1 1 @ 1 0 02088745 -boast n 1 3 @ ~ + 1 1 07229530 -boaster n 1 2 @ + 1 0 09872066 -boastfulness n 1 2 @ + 1 0 04887373 -boasting n 1 2 @ ~ 1 0 07229530 -boat n 2 5 @ ~ %p + - 2 1 02858304 03456024 -boat-billed_heron n 1 2 @ #m 1 0 02011281 -boat_bug n 1 2 @ #m 1 0 02243209 -boat_club n 1 1 @ 1 0 08230785 -boat_deck n 1 1 @ 1 0 02859084 -boat_hook n 1 1 @ 1 0 02859343 -boat_paddle n 1 1 @ 1 0 03873416 -boat_race n 1 2 @ ~ 1 0 07459523 -boat_racing n 1 2 @ ~ 1 0 00449695 -boat_train n 1 1 @ 1 0 02859729 -boat_whistle n 1 2 @ #p 1 0 02859829 -boatbill n 1 2 @ #m 1 0 02011281 -boatbuilder n 1 1 @ 1 0 09861863 -boater n 2 3 @ ~ + 2 1 02859184 09861946 -boathouse n 1 1 @ 1 0 02859443 -boating n 1 3 @ ~ + 1 1 00315390 -boatload n 1 1 @ 1 1 13775523 -boatman n 1 3 @ ~ + 1 0 09861946 -boatmanship n 1 2 @ + 1 0 05639941 -boatswain n 1 1 @ 1 1 09862183 -boatswain's_chair n 1 1 @ 1 0 02859557 -boatswain_bird n 1 2 @ #m 1 0 02055107 -boatyard n 1 1 @ 1 0 02859955 -bob n 7 6 @ ~ #m #p %p + 7 0 13686877 05259109 02860847 02860239 02860063 02158066 00336274 -bob_dylan n 1 1 @ 1 0 10947108 -bob_hope n 1 1 @ 1 0 11059263 -bob_marley n 1 1 @ 1 0 11157580 -bob_mathias n 1 1 @ 1 0 11164332 -bob_woodward n 1 1 @ 1 0 11396338 -bobber n 1 3 @ #m + 1 0 02860063 -bobbin n 1 2 @ ~ 1 0 02860415 -bobbin_lace n 1 2 @ ~ 1 0 03938522 -bobble n 1 2 @ ; 1 0 00071864 -bobby n 1 1 @ 1 0 09862621 -bobby-socker n 1 1 @ 1 0 09862713 -bobby_fischer n 1 1 @ 1 0 10971528 -bobby_jones n 1 1 @ 1 0 11090512 -bobby_orr n 1 1 @ 1 0 11217072 -bobby_pin n 1 1 @ 1 1 02860640 -bobbysock n 1 1 @ 1 0 02713218 -bobbysocks n 1 1 @ 1 0 02713218 -bobbysoxer n 1 1 @ 1 1 09862713 -bobcat n 1 1 @ 1 0 02127482 -bobfloat n 1 2 @ #m 1 0 02860063 -bobolink n 1 2 @ #m 1 0 01573898 -bobsled n 2 2 @ + 2 0 02861022 02860847 -bobsledding n 1 1 @ 1 0 00447463 -bobsleigh n 2 1 @ 2 0 02861022 02860847 -bobtail n 2 1 @ 2 0 02158066 02105641 -bobwhite n 1 3 @ ~ #m 1 0 01804478 -bobwhite_quail n 1 3 @ ~ #m 1 0 01804478 -boccaccio n 1 1 @ 1 0 10854146 -bocce n 1 1 @ 1 0 00462997 -bocce_ball n 1 1 @ 1 0 02861147 -bocci n 1 1 @ 1 0 00462997 -bocci_ball n 1 1 @ 1 0 02861147 -boccie n 1 1 @ 1 0 00462997 -boccie_ball n 1 1 @ 1 0 02861147 -bocconia n 2 2 @ #m 2 0 11906514 11903333 -bocconia_frutescens n 1 2 @ #m 1 0 11903333 -boche n 1 2 @ ; 1 0 09748239 -bock n 1 1 @ 1 0 07887461 -bock_beer n 1 1 @ 1 0 07887461 -bod n 1 3 @ ~ #p 1 0 05217168 -boddhisatva n 1 2 @ ~ 1 0 09532384 -bodega n 1 1 @ 1 0 02861286 -bodensee n 1 2 @ #p 1 0 09252766 -bodhisattva n 1 2 @ ~ 1 0 09532384 -bodice n 1 3 @ #p %p 1 1 02861387 -bodice_ripper n 1 1 @ 1 0 06369554 -bodily_cavity n 1 4 @ ~ #p ; 1 0 05303402 -bodily_fluid n 1 2 @ ~ 1 0 05397468 -bodily_function n 1 2 @ ~ 1 1 13440063 -bodily_process n 1 2 @ ~ 1 0 13440063 -bodily_property n 1 2 @ ~ 1 0 04997988 -bodily_structure n 1 2 @ ~ 1 0 05225602 -boding n 1 2 @ ~ 1 0 07522128 -bodkin n 4 1 @ 4 0 03981094 02861777 02861658 02861509 -bodo-garo n 1 1 @ 1 0 06933689 -bodoni n 2 1 @ 2 0 10854265 06826726 -bodoni_font n 1 1 @ 1 0 06826726 -body n 11 7 @ ~ #p %p = + ; 11 8 05216365 07965085 05217859 09224911 05549830 08436288 04934546 06394701 05024616 04261506 02861886 -body-build n 1 2 @ ~ 1 0 04998530 -body_armor n 1 3 @ ~ %p 1 0 02862048 -body_armour n 1 3 @ ~ %p 1 0 02862048 -body_bag n 1 1 @ 1 0 02862770 -body_count n 1 1 @ 1 0 13592219 -body_covering n 1 3 @ ~ %p 1 0 05237755 -body_english n 1 1 @ 1 0 00333572 -body_fluid n 1 2 @ ~ 1 0 05397468 -body_hair n 1 2 @ #p 1 0 05255578 -body_language n 1 1 @ 1 0 06876892 -body_length n 1 1 @ 1 1 13653821 -body_lotion n 1 1 @ 1 0 02862916 -body_louse n 1 2 @ #m 1 0 02184720 -body_mass_index n 1 1 @ 1 0 06640016 -body_odor n 1 1 @ 1 0 04980920 -body_odour n 1 1 @ 1 0 04980920 -body_of_water n 1 5 @ ~ #p %s ; 1 1 09225146 -body_of_work n 1 2 @ ~ 1 0 03841417 -body_pad n 1 1 @ 1 0 02863340 -body_part n 1 4 @ ~ #p %p 1 1 05220461 -body_plethysmograph n 1 1 @ 1 0 02863176 -body_politic n 1 3 @ ~ %p 1 0 08168978 -body_process n 1 2 @ ~ 1 0 13440063 -body_servant n 1 2 @ ~ 1 1 09863238 -body_snatcher n 1 1 @ 1 0 10144571 -body_stocking n 1 1 @ 1 0 02863014 -body_structure n 1 2 @ ~ 1 0 05225602 -body_substance n 1 3 @ ~ #p 1 0 05263850 -body_suit n 1 1 @ 1 0 03657511 -body_temperature n 1 2 @ ~ 1 0 05014879 -body_type n 1 2 @ ~ 1 0 04998966 -body_waste n 1 2 @ ~ 1 0 14853947 -body_weight n 1 3 @ ~ = 1 1 05027135 -bodybuilder n 1 1 @ 1 1 09862845 -bodybuilding n 1 2 @ ~ 1 1 00625993 -bodyguard n 2 5 @ ~ #m #p + 2 1 09863031 08215801 -bodywork n 2 2 @ #p 2 0 02863426 00713493 -boehm n 1 1 @ 1 0 10854397 -boehme n 1 1 @ 1 0 10854397 -boehmenism n 1 1 @ 1 0 06188146 -boehmeria n 1 3 @ #m %m 1 0 12392943 -boehmeria_nivea n 1 2 @ #m 1 0 12393269 -boell n 1 1 @ 1 0 10854627 -boeotia n 1 5 @ #p %p + - 1 0 08789243 -boer n 1 1 @ 1 0 09635635 -boer_war n 1 2 @ ; 1 0 01303252 -boethius n 1 1 @ 1 0 10854777 -boeuf n 1 4 @ ~ #p %p 1 0 07663592 -boeuf_bourguignonne n 1 1 @ 1 0 07862461 -boeuf_fondu_bourguignon n 1 1 @ 1 0 07868045 -boffin n 1 2 @ ; 1 0 09863339 -bofors_gun n 1 1 @ 1 0 02863536 -bog n 1 3 @ ~ + 1 1 09225943 -bog_asphodel n 1 3 @ ~ #m 1 0 12463743 -bog_aster n 1 1 @ 1 0 11935953 -bog_bilberry n 1 1 @ 1 0 12248780 -bog_candles n 1 1 @ 1 0 12066018 -bog_hemp n 1 3 @ ~ #m 1 0 12393086 -bog_kalmia n 1 1 @ 1 0 12237855 -bog_laurel n 1 1 @ 1 0 12237855 -bog_moss n 1 2 @ #m 1 0 11542137 -bog_myrtle n 1 2 @ #m 1 0 12484784 -bog_pimpernel n 1 1 @ 1 0 12092629 -bog_plant n 1 2 @ ~ 1 0 13122364 -bog_rein_orchid n 1 1 @ 1 0 12066018 -bog_rhubarb n 1 2 @ #m 1 0 12002428 -bog_rose n 1 2 @ #m 1 0 12046028 -bog_rosemary n 1 1 @ 1 0 12229651 -bog_soil n 1 1 @ 1 0 14782403 -bog_spavin n 1 1 @ 1 0 14273183 -bog_star n 1 2 @ #m 1 0 12801781 -bog_whortleberry n 1 1 @ 1 0 12248780 -bogart n 1 2 @ + 1 0 10855047 -bogbean n 1 2 @ #m 1 0 12484784 -bogey n 3 3 @ + ; 3 1 09542258 13595414 02863638 -bogeyman n 1 1 @ 1 0 09488117 -bogie n 2 1 @ 2 0 09542258 02863638 -bogmat n 1 2 @ #m 1 0 11796573 -bogota n 1 2 @ #p 1 0 08732979 -bogy n 2 1 @ 2 1 02863638 09542258 -bohemia n 2 2 @ + 2 0 08758882 08241309 -bohemian n 3 3 @ ~ #p 3 0 10154186 09863620 09863500 -bohemian_waxwing n 1 1 @ 1 0 01603953 -bohemianism n 1 1 @ 1 0 01223672 -bohme n 1 1 @ 1 0 10854397 -bohr n 1 1 @ 1 0 10855200 -bohr_theory n 1 2 @ ; 1 0 06103422 -bohrium n 1 1 @ 1 0 14631757 -boidae n 1 3 @ #m %m 1 0 01741744 -boil n 2 3 @ ~ + 2 0 14183210 05014099 -boil_smut n 1 2 @ #m 1 0 13067330 -boiled_dinner n 1 1 @ 1 0 07862946 -boiled_egg n 1 2 @ ~ 1 0 07841495 -boiler n 2 6 @ ~ #p %m %p + 2 1 02863750 03612814 -boilerplate n 2 3 @ #m #p 2 0 07075006 02863995 -boilers_suit n 1 2 @ ; 1 0 03863262 -boilersuit n 1 2 @ ; 1 0 03863262 -boiling n 2 2 @ ~ 2 1 13440779 00247792 -boiling_point n 2 1 @ 2 0 05014099 04629030 -boiling_water_reactor n 1 1 @ 1 0 02864122 -boise n 1 2 @ #p 1 0 09081560 -boisterousness n 2 2 @ + 2 0 14523669 04985064 -bok_choi n 2 2 @ #m 2 0 11879054 07714448 -bok_choy n 2 2 @ #m 2 0 11879054 07714448 -bokkos n 1 1 @ 1 0 06983114 -bokmaal n 1 2 @ ~ 1 0 06954461 -bokmal n 1 2 @ ~ 1 0 06954461 -bola n 2 1 @ 2 0 02865351 02864342 -bola_tie n 1 1 @ 1 0 02865351 -bolanci n 1 1 @ 1 0 06982855 -bolbitis n 1 2 @ #m 1 0 13202933 -bold n 1 1 @ 1 0 06827219 -bold_face n 1 1 @ 1 0 06827219 -bold_fmri n 1 1 @ 1 0 00902975 -boldface n 1 2 @ + 1 0 06827219 -boldness n 3 5 ! @ ~ = + 3 1 04858785 04838210 04707252 -bole n 3 3 @ #p %p 3 0 14990864 13165815 06982855 -bolero n 3 1 @ 3 0 07055103 02864504 00530755 -boletaceae n 1 3 @ #m %m 1 0 13054211 -bolete n 1 3 @ ~ #m 1 0 13054560 -boletellus n 1 3 @ #m %m 1 0 13059852 -boletellus_russellii n 1 2 @ #m 1 0 13060017 -boletus n 1 3 @ #m %m 1 0 13055009 -boletus_chrysenteron n 1 2 @ #m 1 0 13055423 -boletus_edulis n 1 2 @ #m 1 0 13055577 -boletus_frostii n 1 2 @ #m 1 0 13055792 -boletus_luridus n 1 2 @ #m 1 0 13055949 -boletus_mirabilis n 1 2 @ #m 1 0 13056135 -boletus_pallidus n 1 2 @ #m 1 0 13056349 -boletus_pulcherrimus n 1 2 @ #m 1 0 13056607 -boletus_pulverulentus n 1 2 @ #m 1 0 13056799 -boletus_roxanae n 1 2 @ #m 1 0 13057054 -boletus_subvelutipes n 1 2 @ #m 1 0 13057242 -boletus_variipes n 1 2 @ #m 1 0 13057422 -boletus_zelleri n 1 2 @ #m 1 0 13057639 -boleyn n 1 1 @ 1 0 10855431 -bolide n 1 1 @ 1 0 11484260 -bolingbroke n 1 2 @ #m 1 0 11041814 -bolivar n 2 2 @ %p 2 0 13666790 10855604 -bolivia n 2 7 @ #m #p %m %p + - 2 0 08852843 00497321 -bolivian n 1 2 @ #m 1 0 09694664 -bolivian_monetary_unit n 1 2 @ ~ 1 0 13690911 -boliviano n 1 2 @ %p 1 0 13691022 -boll n 1 1 @ 1 0 11685512 -boll_weevil n 1 2 @ #m 1 0 02178717 -bollard n 1 5 @ ~ #p %p ; 1 0 02864593 -bollock n 2 4 @ ~ #p %p 2 0 05524615 02864878 -bollworm n 1 2 @ ~ 1 0 02310000 -bollywood n 1 1 @ 1 0 08068375 -bolo n 2 1 @ 2 1 02865351 02864987 -bolo_knife n 1 1 @ 1 0 02864987 -bolo_tie n 1 1 @ 1 0 02865351 -bologna n 2 3 @ ~ #p 2 0 08806458 07676273 -bologna_sausage n 1 2 @ ~ 1 0 07676273 -bolognese_pasta_sauce n 1 1 @ 1 0 07830986 -bologram n 1 1 @ 1 0 02865108 -bolograph n 1 1 @ 1 0 02865108 -bolometer n 1 2 @ + 1 0 02865214 -boloney n 1 2 @ ; 1 0 06611147 -bolshevik n 2 3 @ ~ + 2 1 09863749 09863936 -bolshevism n 1 3 @ ~ + 1 0 08368308 -bolshevist n 1 3 @ ~ + 1 0 09863936 -bolshie n 1 1 @ 1 0 09863749 -bolshy n 1 1 @ 1 0 09863749 -bolster n 1 2 @ + 1 1 02865509 -bolt n 7 6 @ ~ #p %p + ; 7 4 11519121 02866106 02865931 00555983 02866286 02865665 00204943 -bolt-hole n 1 1 @ 1 0 09226367 -bolt_cutter n 1 1 @ 1 0 02866386 -bolt_of_lightning n 1 1 @ 1 0 11519121 -bolti n 1 1 @ 1 0 02586238 -boltonia n 1 3 @ #m %m 1 0 11941261 -boltzmann n 1 1 @ 1 0 10855834 -boltzmann's_constant n 1 1 @ 1 0 13585997 -boltzmann_distribution_law n 1 2 @ ; 1 0 05877178 -bolus n 2 1 @ 2 0 13901490 02866474 -bolzano n 1 2 @ #p 1 0 08804662 -bomarea n 1 3 @ #m %m 1 0 12419592 -bomarea_edulis n 1 2 @ #m 1 0 12419878 -bomarea_salsilla n 1 2 @ #m 1 0 12420124 -bomb n 3 3 @ ~ + 3 2 02866578 02867592 07365193 -bomb_blast n 1 2 @ ~ 1 0 07408288 -bomb_calorimeter n 1 1 @ 1 1 02867592 -bomb_rack n 1 2 @ #p 1 0 02868429 -bomb_shelter n 1 1 @ 1 1 02868638 -bomb_site n 1 1 @ 1 0 08516431 -bombacaceae n 1 3 @ #m %m 1 0 12188985 -bombard n 1 1 @ 1 0 02867267 -bombardier n 2 2 @ #m 2 0 09864429 09864252 -bombardier_beetle n 1 2 @ #m 1 0 02167505 -bombardment n 4 3 @ ~ + 4 0 07083441 00987863 00978580 00978413 -bombardon n 2 1 @ 2 0 03512030 02867267 -bombast n 1 2 @ + 1 1 07087777 -bombax n 1 3 @ #m %m 1 0 12189293 -bombax_ceiba n 1 2 @ #m 1 0 12189429 -bombax_malabarica n 1 2 @ #m 1 0 12189429 -bombay n 1 2 @ #p 1 1 08903872 -bombay_ceiba n 1 1 @ 1 0 12190410 -bombay_hemp n 1 2 @ %p 1 0 12178129 -bombazine n 1 1 @ 1 0 02867401 -bomber n 3 5 @ ~ %p + ; 3 1 02867715 09864536 07697825 -bomber_aircrew n 1 2 @ %m 1 0 08273531 -bomber_crew n 1 2 @ %m 1 0 08273531 -bomber_harris n 1 1 @ 1 0 11030395 -bomber_jacket n 1 1 @ 1 0 02867966 -bombie n 1 1 @ 1 0 02868068 -bombilation n 1 2 @ + 1 0 07378234 -bombina n 1 3 @ #m %m 1 0 01648494 -bombina_bombina n 1 2 @ #m 1 0 01648620 -bombination n 1 2 @ + 1 0 07378234 -bombing n 2 4 @ ~ + ; 2 1 00978413 00979742 -bombing_run n 1 2 @ ~ 1 0 00978764 -bomblet n 1 4 @ ~ #p + 1 0 02868240 -bombproof n 1 2 @ + 1 1 02868638 -bombshell n 3 1 @ 3 0 09864632 07298396 02868546 -bombsight n 1 1 @ 1 0 02868870 -bombus n 1 3 @ #m %m 1 1 02209508 -bombycid n 1 3 @ ~ #m 1 0 02300173 -bombycid_moth n 1 3 @ ~ #m 1 0 02300173 -bombycidae n 1 3 @ #m %m 1 0 02300018 -bombycilla n 1 3 @ #m %m 1 0 01603478 -bombycilla_cedrorun n 1 1 @ 1 0 01603812 -bombycilla_garrulus n 1 1 @ 1 0 01603953 -bombycillidae n 1 3 @ #m %m 1 0 01603316 -bombyliidae n 1 3 @ #m %m 1 0 02195693 -bombyx n 1 3 @ #m %m 1 0 02300378 -bombyx_mori n 1 2 @ #m 1 0 02300554 -bon_mot n 1 2 @ ; 1 0 06776783 -bon_ton n 1 2 @ %m 1 0 08387930 -bon_vivant n 1 1 @ 1 0 10061656 -bon_voyage n 1 1 @ 1 0 06629858 -bonaire n 1 2 @ #p 1 0 08748917 -bonanza n 2 1 @ 2 0 09226498 07477587 -bonaparte n 1 1 @ 1 0 11200276 -bonasa n 1 3 @ #m %m 1 0 01797767 -bonasa_umbellus n 1 2 @ #m 1 0 01797886 -bonavist n 1 2 @ #m 1 0 12537569 -bonbon n 1 1 @ 1 0 07599649 -bonce n 1 1 @ 1 0 05539454 -bond n 10 4 @ ~ + ; 10 6 11436283 13417410 13792183 13350976 04181228 02755352 14782529 10855987 09590377 04935528 -bond-trading_activity n 1 1 @ 1 0 00079603 -bond_certificate n 1 2 @ ~ 1 0 13417410 -bond_issue n 1 1 @ 1 0 13337471 -bond_paper n 1 1 @ 1 0 14782529 -bond_rating n 1 1 @ 1 0 05738404 -bond_servant n 1 2 @ ~ 1 0 09865398 -bond_trading n 1 1 @ 1 0 00079603 -bondage n 3 2 @ ~ 3 0 13997529 13997253 00843681 -bonded_labor n 1 1 @ 1 0 13997778 -bondholder n 1 1 @ 1 0 09864761 -bonding n 3 3 @ ~ ; 3 0 13781820 05665769 00148653 -bondmaid n 2 1 @ 2 0 09865162 09865068 -bondman n 2 1 @ 2 0 09864968 09864891 -bondsman n 3 1 @ 3 1 09864891 09865279 09864968 -bondswoman n 3 1 @ 3 0 09865279 09865162 09865068 -bonduc n 2 3 @ #m %p 2 0 12496427 12488454 -bonduc_nut n 1 2 @ #p 1 0 11689197 -bonduc_tree n 1 3 @ #m %p 1 0 12488454 -bondwoman n 2 1 @ 2 0 09865162 09865068 -bone n 3 7 @ ~ #s #p %s %p + 3 2 05269901 14757848 04961331 -bone-ash_cup n 1 1 @ 1 0 02868975 -bone-forming_cell n 1 1 @ 1 0 05448149 -bone-headed_dinosaur n 1 3 @ ~ #m 1 0 01703011 -bone_age n 1 1 @ 1 0 04924674 -bone_ash n 1 1 @ 1 0 14782689 -bone_black n 1 1 @ 1 0 14668895 -bone_cell n 1 3 @ ~ #p 1 0 05447599 -bone_char n 1 1 @ 1 0 14668895 -bone_china n 1 1 @ 1 0 02869155 -bone_fat n 1 2 @ %p 1 0 14783038 -bone_marrow n 2 3 @ ~ #p 2 1 05285623 07873057 -bone_of_contention n 1 1 @ 1 0 06600139 -bone_oil n 2 2 @ #p 2 0 14783436 14783251 -bone_spavin n 1 1 @ 1 0 14273277 -bonefish n 1 2 @ #m 1 0 02542432 -bonehead n 1 1 @ 1 0 10039663 -bonelet n 1 4 @ ~ #p + 1 0 05277728 -bonemeal n 1 1 @ 1 1 14782833 -boner n 1 2 @ ~ 1 0 00074790 -bones n 1 2 @ ; 1 0 02869249 -boneset n 2 3 @ #m %p 2 0 12822955 11968931 -bonesetter n 1 1 @ 1 0 09865547 -boneshaker n 1 1 @ 1 0 02869563 -bonete n 1 2 @ #p 1 0 09226591 -bonfire n 1 1 @ 1 1 07303335 -bonfire_night n 1 1 @ 1 0 15159139 -bong n 1 1 @ 1 0 07376454 -bongo n 2 2 @ #m 2 0 02869737 02424085 -bongo_drum n 1 1 @ 1 0 02869737 -bonheur n 1 2 @ ; 1 0 07527061 -bonhoeffer n 1 1 @ 1 0 10856215 -bonhomie n 1 2 @ ~ 1 0 04654652 -boniface n 2 3 @ ~ ; 2 0 10856486 10186774 -boniface_viii n 1 1 @ 1 0 10856799 -boniness n 1 2 @ + 1 0 05001867 -bonito n 3 5 @ ~ #m #p %p 3 0 07781022 02629230 02627835 -bonito_shark n 1 1 @ 1 0 01484562 -bonn n 1 2 @ #p 1 1 08772137 -bonnet n 2 5 @ ~ #p %p + 2 1 02869837 03530910 -bonnet_macaque n 1 1 @ 1 0 02487675 -bonnet_monkey n 1 1 @ 1 0 02487675 -bonnet_shark n 1 1 @ 1 0 01495006 -bonnethead n 1 1 @ 1 0 01495006 -bonney n 1 1 @ 1 0 10857001 -bonobo n 1 2 @ #m 1 0 02482650 -bonsai n 1 2 @ ~ 1 0 13111881 -bontemps n 1 1 @ 1 0 10857159 -bonus n 2 3 @ ~ #p 2 1 05829656 13273154 -bonxie n 1 3 @ ~ #m 1 0 02044778 -bony_fish n 1 3 @ ~ #m 1 0 02514825 -bony_labyrinth n 1 2 @ #p 1 0 05321917 -bonyness n 1 2 @ + 1 0 05001867 -boo n 1 2 @ + 1 0 07123870 -boo-boo n 1 2 @ ~ 1 0 00074790 -boob n 2 4 @ #p %p + 2 0 10039391 05554405 -boob_tube n 1 4 @ #p %p ; 1 0 04405907 -booboisie n 1 1 @ 1 0 08181820 -booby n 2 2 @ #m 2 1 10039391 02053584 -booby_hatch n 1 1 @ 1 0 02820798 -booby_prize n 1 2 @ ~ 1 0 02869965 -booby_trap n 2 2 @ ~ 2 1 03639675 05688990 -boocercus_eurycerus n 1 2 @ #m 1 0 02424085 -boodle n 2 1 @ 2 0 13385216 00493308 -booger n 2 1 @ 2 0 09488117 05416128 -boogeyman n 1 1 @ 1 0 09488117 -boogie n 1 2 @ + 1 0 07063249 -boogie-woogie n 1 1 @ 1 0 07063249 -boojum_tree n 1 2 @ #m 1 0 12382233 -book n 11 8 @ ~ #p %m %p + ; - 11 4 06410904 02870092 06636524 07009946 13404248 07954441 07954211 06461609 06431740 06394865 02870526 -book_agent n 1 1 @ 1 0 09865672 -book_bag n 1 1 @ 1 0 02870676 -book_binding n 1 3 @ ~ #p 1 0 02840619 -book_fair n 2 1 @ 2 0 08408418 01118338 -book_jacket n 1 1 @ 1 1 07248320 -book_louse n 1 3 @ ~ #m 1 0 02261419 -book_lover n 1 1 @ 1 0 09852679 -book_lung n 1 1 @ 1 0 05528245 -book_matches n 1 1 @ 1 0 04126980 -book_of_account n 1 3 @ ~ %m 1 0 13404248 -book_of_amos n 1 2 @ #p 1 0 06439560 -book_of_baruch n 1 2 @ #p 1 0 06459323 -book_of_common_prayer n 1 2 @ %p 1 0 06457171 -book_of_daniel n 1 2 @ #p 1 0 06438995 -book_of_deuteronomy n 1 3 @ #p %p 1 0 06433475 -book_of_ecclesiastes n 1 2 @ #p 1 0 06437531 -book_of_esther n 1 2 @ #p 1 0 06436717 -book_of_exodus n 1 2 @ #p 1 0 06432715 -book_of_ezekiel n 1 2 @ #p 1 0 06438748 -book_of_ezra n 1 2 @ #p 1 0 06436183 -book_of_facts n 1 2 @ ~ 1 0 06417598 -book_of_genesis n 1 3 @ #p - 1 0 06432376 -book_of_habakkuk n 1 2 @ #p 1 0 06440489 -book_of_haggai n 1 2 @ #p 1 0 06440937 -book_of_hosea n 1 2 @ #p 1 0 06439253 -book_of_instructions n 1 1 @ 1 0 06422144 -book_of_isaiah n 1 2 @ #p 1 0 06438126 -book_of_jeremiah n 1 2 @ #p 1 0 06438290 -book_of_job n 1 2 @ #p 1 0 06436939 -book_of_joel n 1 2 @ #p 1 0 06439408 -book_of_jonah n 1 2 @ #p 1 0 06439924 -book_of_joshua n 1 2 @ #p 1 0 06433923 -book_of_judges n 1 2 @ #p 1 0 06434165 -book_of_judith n 1 2 @ #p 1 0 06459834 -book_of_knowledge n 1 1 @ 1 0 06427710 -book_of_lamentations n 1 2 @ #p 1 0 06438477 -book_of_leviticus n 1 2 @ #p 1 0 06433035 -book_of_malachi n 1 1 @ 1 0 06441464 -book_of_maps n 1 3 @ ~ %p 1 0 06427086 -book_of_micah n 1 2 @ #p 1 0 06440102 -book_of_mormon n 1 1 @ 1 0 06455775 -book_of_nahum n 1 2 @ #p 1 0 06440313 -book_of_nehemiah n 1 2 @ #p 1 0 06436443 -book_of_numbers n 1 2 @ #p 1 0 06433249 -book_of_obadiah n 1 2 @ #p 1 0 06439712 -book_of_proverbs n 1 2 @ #p 1 0 06437308 -book_of_psalms n 2 2 @ #p 2 0 06437137 06417467 -book_of_revelation n 1 3 @ #p - 1 0 06447897 -book_of_ruth n 1 2 @ #p 1 0 06434368 -book_of_susanna n 1 2 @ #p 1 0 06459016 -book_of_the_prophet_daniel n 1 2 @ #p 1 0 06438995 -book_of_tobit n 1 2 @ #p 1 0 06459681 -book_of_zachariah n 1 2 @ #p 1 0 06441195 -book_of_zephaniah n 1 2 @ #p 1 0 06440663 -book_review n 1 1 @ 1 0 06410655 -book_scorpion n 1 2 @ #m 1 0 01771100 -book_seller n 1 1 @ 1 0 09865838 -book_token n 1 2 @ ; 1 0 06518253 -book_value n 1 2 @ ~ 1 0 13337146 -bookbinder n 1 1 @ 1 0 09865744 -bookbindery n 1 1 @ 1 0 02870772 -bookbinding n 1 1 @ 1 0 00607374 -bookcase n 1 2 @ %p 1 1 02870880 -bookclub n 1 1 @ 1 0 08228538 -bookdealer n 1 1 @ 1 0 09865838 -bookend n 1 1 @ 1 0 02871005 -booker n 1 3 @ ~ + 1 1 09865954 -booker_t._washington n 1 1 @ 1 0 11375677 -booker_taliaferro_washington n 1 1 @ 1 0 11375677 -bookfair n 2 1 @ 2 0 08408418 01118338 -bookie n 1 1 @ 1 0 09866222 -booking n 2 3 @ ~ + 2 2 00270919 01218327 -booking_agent n 1 2 @ ~ 1 0 09865954 -booking_clerk n 1 2 @ ; 1 0 09629477 -bookishness n 1 2 @ + 1 0 04866365 -bookkeeper n 1 1 @ 1 0 09866115 -bookkeeping n 1 3 @ ~ - 1 0 00619230 -booklet n 1 3 @ ~ + 1 0 06413889 -booklouse n 1 3 @ ~ #m 1 0 02261419 -booklover n 1 1 @ 1 0 09852679 -bookmaker n 2 1 @ 2 0 09866354 09866222 -bookman n 1 2 @ ~ 1 0 10557854 -bookmark n 1 1 @ 1 0 02871147 -bookmarker n 1 1 @ 1 0 02871147 -bookmobile n 1 1 @ 1 0 02871314 -bookplate n 1 1 @ 1 0 07272416 -bookseller n 1 1 @ 1 0 09866473 -bookshelf n 1 1 @ 1 1 02871439 -bookshop n 1 1 @ 1 0 02871525 -bookstall n 1 1 @ 1 0 02871525 -bookstore n 1 1 @ 1 0 02871525 -bookworm n 2 2 @ ~ 2 0 10411356 09866559 -boole n 1 2 @ + 1 0 10857271 -boolean_algebra n 1 1 @ 1 0 06165000 -boolean_logic n 1 1 @ 1 0 06165000 -boolean_operation n 1 1 @ 1 0 13440935 -boom n 5 3 @ #p + 5 1 07377682 14488813 07477587 02871824 02871631 -boom_box n 1 2 @ ; 1 0 03436182 -boom_town n 1 1 @ 1 0 08671293 -boomer n 1 2 @ #m 1 0 09828403 -boomerang n 2 4 @ ~ + ; 2 0 02871963 00073032 -boon n 1 2 @ ~ 1 1 14474264 -boondocks n 1 1 @ 1 0 08502672 -boondoggle n 1 2 @ + 1 0 00041614 -boone n 1 1 @ 1 0 10857418 -boor n 1 1 @ 1 0 10410815 -boorishness n 2 2 @ + 2 0 04914576 04817788 -boost n 3 3 @ ~ + 3 2 01211019 05110408 01211339 -booster n 6 4 @ ~ #p + 6 0 10677713 10482220 09866661 02872529 02872333 02872172 -booster_amplifier n 1 2 @ #p 1 0 02872529 -booster_cable n 1 2 @ ~ 1 0 03604843 -booster_dose n 1 1 @ 1 0 02872172 -booster_rocket n 1 2 @ #p 1 0 02872333 -booster_shot n 1 1 @ 1 0 02872172 -booster_station n 1 2 @ #p 1 0 02872529 -booster_unit n 1 2 @ #p 1 0 02872333 -boot n 7 5 @ ~ %p + ; 7 2 02872752 02873244 07528470 02873520 02873363 00422261 00136329 -boot_camp n 1 2 @ ; 1 0 02873623 -boot_maker n 1 1 @ 1 0 09867069 -boot_sale n 1 2 @ ; 1 0 01118614 -bootblack n 1 1 @ 1 0 09866817 -bootboys n 1 2 @ %m 1 0 08371200 -booted_armillaria n 1 2 @ #m 1 0 13231919 -bootee n 1 1 @ 1 0 02873733 -bootes n 1 2 @ %m 1 0 09226738 -booth n 4 2 @ ~ 4 2 02874214 02873839 10857540 02874086 -boothose n 1 1 @ 1 0 02874336 -bootie n 1 1 @ 1 0 02873733 -bootjack n 1 1 @ 1 0 02874442 -bootlace n 1 2 @ #p 1 0 02874537 -bootleg n 2 3 @ #p + 2 0 07902520 02874642 -bootlegger n 1 2 @ + 1 1 09866922 -bootlegging n 2 1 @ 2 1 00092663 00092847 -bootlicker n 1 2 @ + 1 0 09800631 -bootmaker n 1 1 @ 1 0 09867069 -bootstrap n 1 1 @ 1 0 02874750 -boott's_goldenrod n 1 1 @ 1 0 12018014 -booty n 1 2 @ %p 1 1 13262663 -booyong n 1 1 @ 1 0 12199790 -booze n 1 3 @ ~ + 1 1 07901587 -booze-up n 1 1 @ 1 0 00511041 -boozer n 1 2 @ + 1 0 09782167 -boozing n 1 2 @ ~ 1 0 00748515 -bop n 2 3 @ #p + 2 0 08141664 07063101 -bopeep n 1 1 @ 1 0 00487072 -boracic_acid n 1 2 @ ~ 1 0 14783670 -borage n 2 4 @ #m #p %p 2 0 12816508 07816398 -borage_family n 1 3 @ #m %m 1 0 12815925 -boraginaceae n 1 3 @ #m %m 1 0 12815925 -borago n 1 3 @ #m %m 1 0 12816359 -borago_officinalis n 1 3 @ #m %p 1 0 12816508 -borassus n 1 3 @ #m %m 1 0 12585512 -borassus_flabellifer n 1 3 @ #m %s 1 0 12585629 -borate n 1 1 @ 1 1 14783588 -borax n 1 2 @ %s 1 0 14669084 -bordeaux n 2 3 @ ~ #p 2 0 08934532 07895237 -bordeaux_mixture n 1 1 @ 1 0 02874876 -bordeaux_wine n 1 2 @ ~ 1 0 07895237 -bordelaise n 1 1 @ 1 0 07835823 -bordello n 1 2 @ ~ 1 0 04581595 -border n 5 4 @ ~ #p + 5 3 08512736 13903387 08565701 03780247 02875013 -border_collie n 1 1 @ 1 0 02106166 -border_district n 1 1 @ 1 0 08513163 -border_patrol n 1 2 @ %m 1 0 08328876 -border_patrolman n 1 2 @ #m 1 1 09867311 -border_terrier n 1 1 @ 1 0 02093754 -borderer n 1 2 @ ; 1 0 09867154 -borderland n 1 1 @ 1 0 08513163 -borderline n 1 2 @ ~ 1 0 08512736 -borderline_intelligence n 1 1 @ 1 0 13822364 -borderline_schizophrenia n 1 1 @ 1 0 14398929 -bore n 4 4 @ ~ + ; 4 0 09867437 07403920 05103283 02875233 -bore-hole n 1 3 @ ~ ; 1 0 02875233 -bore_bit n 1 2 @ ~ 1 0 02875436 -boreas n 2 4 @ ~ + ; 2 0 11487950 09556915 -borecole n 1 3 @ ~ #m 1 0 11876976 -boredom n 1 2 @ ~ 1 1 07539790 -borer n 2 3 @ ~ + 2 0 02875436 01923025 -borges n 1 1 @ 1 0 10857697 -borgia n 4 1 @ 4 0 10880024 10858018 10857849 10813204 -boric_acid n 2 2 @ ~ 2 0 14783808 14783670 -boring n 2 1 @ 2 0 00942799 00923130 -boringness n 1 2 @ + 1 0 05206006 -boris_fyodorovich_godunov n 1 1 @ 1 0 11003599 -boris_godunov n 1 1 @ 1 0 11003599 -boris_karloff n 1 1 @ 1 0 11096801 -boris_leonidovich_pasternak n 1 1 @ 1 0 11224654 -boris_pasternak n 1 1 @ 1 0 11224654 -boris_spassky n 1 1 @ 1 0 11309772 -boris_vasilevich_spassky n 1 1 @ 1 0 11309772 -born n 1 1 @ 1 0 10858164 -born-again_christian n 1 1 @ 1 0 09867818 -bornean n 1 3 @ ~ #m 1 0 09694771 -borneo n 1 4 @ #p %m %p 1 0 08843215 -bornholm_disease n 1 1 @ 1 0 14330340 -bornite n 1 2 @ %s 1 0 14669242 -borodin n 1 1 @ 1 0 10858333 -borodino n 1 3 @ #p ; 1 0 01272134 -boron n 1 3 @ #s + 1 0 14631871 -boron_chamber n 1 2 @ #p 1 0 02875626 -boron_counter_tube n 1 2 @ %p 1 0 02875815 -boron_trifluoride n 1 1 @ 1 0 14784111 -borosilicate n 1 1 @ 1 0 14784198 -borough n 2 2 @ ~ 2 1 08540532 08540016 -borough_english n 1 1 @ 1 0 13263375 -borrelia n 1 2 @ #m 1 0 01383027 -borrelia_burgdorferi n 1 2 @ #m 1 0 01383151 -borrow_pit n 1 1 @ 1 0 09226869 -borrower n 1 4 ! @ ~ + 1 1 09867633 -borrower's_card n 1 1 @ 1 0 06478199 -borrowing n 2 2 @ ~ 2 1 00084371 01111133 -borrowing_cost n 1 1 @ 1 0 13302201 -borsch n 1 1 @ 1 0 07584423 -borscht n 1 1 @ 1 0 07584423 -borscht_belt n 1 3 @ #p ; 1 0 09125984 -borscht_circuit n 1 3 @ #p ; 1 0 09125984 -borsh n 1 1 @ 1 0 07584423 -borshch n 1 1 @ 1 0 07584423 -borsht n 1 1 @ 1 0 07584423 -borsht_belt n 1 3 @ #p ; 1 0 09125984 -borsht_circuit n 1 3 @ #p ; 1 0 09125984 -borstal n 1 1 @ 1 0 02875948 -bortsch n 1 1 @ 1 0 07584423 -borzoi n 1 1 @ 1 0 02090622 -bos n 1 3 @ #m %m 1 0 02401661 -bos'n n 1 1 @ 1 0 09862183 -bos_banteng n 1 2 @ #m 1 0 02405440 -bos_grunniens n 1 2 @ #m 1 0 02405302 -bos_indicus n 1 3 @ ~ #m 1 0 02404573 -bos_primigenius n 1 2 @ #m 1 0 02405101 -bos_taurus n 1 5 @ ~ #m %m %p 1 0 02402425 -bosc n 1 1 @ 1 0 07768068 -bosch n 1 1 @ 1 0 10858468 -bose n 1 1 @ 1 0 10858577 -bose-einstein_statistics n 1 2 @ ; 1 0 05875723 -boselaphus n 1 3 @ #m %m 1 0 02425393 -boselaphus_tragocamelus n 1 2 @ #m 1 0 02425532 -bosh n 1 2 @ ; 1 0 06611147 -bosie n 1 1 @ 1 0 00477097 -bosie_ball n 1 1 @ 1 0 00477097 -bosin's_disease n 1 1 @ 1 0 14344189 -bosk n 1 2 @ + 1 0 08438840 -boskop_man n 1 2 @ #m 1 0 02475478 -bosna_i_hercegovina n 1 2 @ %p 1 0 08817630 -bosnia n 2 4 @ #p %p + 2 0 08818135 08817630 -bosnia-herzegovina n 1 2 @ %p 1 0 08817630 -bosnia_and_herzegovina n 1 2 @ %p 1 0 08817630 -bosom n 6 5 @ #p %p + ; 6 4 14416473 05553486 02876084 00180770 05919263 05554405 -bosom_of_abraham n 1 2 @ ; 1 0 05628031 -boson n 1 2 @ ~ 1 0 09226997 -bosporus n 1 2 @ #p 1 0 09227219 -bosporus_bridge n 1 2 @ #p 1 0 02876193 -boss n 5 3 @ ~ + 5 3 10104209 09867956 10104064 10403162 03626115 -bossism n 1 1 @ 1 0 01128547 -boston n 1 4 @ #p %p - 1 1 09095751 -boston_baked_beans n 1 1 @ 1 0 07863107 -boston_brown_bread n 1 1 @ 1 0 07680761 -boston_bull n 1 1 @ 1 0 02096585 -boston_cream_pie n 1 1 @ 1 0 07634048 -boston_fern n 1 1 @ 1 0 13205058 -boston_harbor n 1 2 @ #p 1 0 09096089 -boston_ivy n 1 2 @ #m 1 0 13148208 -boston_lettuce n 1 1 @ 1 0 07724173 -boston_rocker n 1 1 @ 1 0 02876326 -boston_tea_party n 1 2 @ ; 1 0 01178415 -boston_terrier n 1 1 @ 1 0 02096585 -bostonian n 1 1 @ 1 0 09741526 -bosun n 1 1 @ 1 0 09862183 -bosun's_chair n 1 1 @ 1 0 02859557 -boswell n 2 1 @ 2 0 10858872 09868157 -boswellia n 1 3 @ #m %m 1 0 12691834 -boswellia_carteri n 1 2 @ #m 1 0 12692024 -boswellia_serrata n 1 2 @ #m 1 0 12692160 -bosworth_field n 1 3 @ #p ; 1 0 01272367 -bot n 1 1 @ 1 0 02311879 -bota n 1 1 @ 1 0 02876457 -botanical n 1 1 @ 1 0 02876537 -botanical_garden n 1 1 @ 1 0 02733075 -botanical_medicine n 1 2 @ ; 1 0 00700421 -botanist n 1 3 @ ~ + 1 0 09868270 -botany n 2 6 @ ~ #m + ; - 2 0 08436759 06066555 -botany_bay_fig n 1 1 @ 1 0 12403276 -botaurus n 1 3 @ #m %m 1 0 02011668 -botaurus_lentiginosus n 1 2 @ #m 1 0 02011805 -botaurus_stellaris n 1 2 @ #m 1 0 02011943 -botch n 1 3 @ ~ + 1 0 00074790 -botcher n 1 2 @ + 1 0 09879744 -botfly n 1 2 @ ~ 1 0 02193163 -bother n 2 3 @ ~ + 2 0 07372565 05830059 -botheration n 2 3 @ ~ + 2 0 14406573 05830059 -bothidae n 1 3 @ #m %m 1 0 02660769 -bothrops n 1 3 @ #m %m 1 0 01758019 -bothrops_atrops n 1 2 @ #m 1 0 01758141 -botox n 1 1 @ 1 0 14587886 -botrychium n 1 3 @ #m %m 1 0 12960729 -botrychium_lunaria n 1 1 @ 1 0 12961112 -botrychium_matricariifolium n 1 1 @ 1 0 12961242 -botrychium_multifidum n 1 1 @ 1 0 12961393 -botrychium_virginianum n 1 1 @ 1 0 12961536 -botswana n 1 4 @ #p %m %p 1 0 08852389 -botswana_monetary_unit n 1 2 @ ~ 1 0 13695815 -botticelli n 1 1 @ 1 0 10859012 -bottle n 3 4 @ ~ %p + 3 2 02876657 13765396 02877266 -bottle-grass n 1 1 @ 1 0 12135049 -bottle-nosed_dolphin n 1 3 @ ~ #m 1 0 02069701 -bottle-nosed_whale n 1 2 @ #m 1 0 02068541 -bottle-tree n 1 3 @ ~ #m 1 0 12196129 -bottle_bank n 1 2 @ ; 1 0 02877513 -bottle_bill n 1 2 @ ; 1 0 06537562 -bottle_collection n 3 1 @ 3 0 07954576 01015551 00949042 -bottle_cork n 1 2 @ #p 1 0 03108853 -bottle_gentian n 1 1 @ 1 0 12294331 -bottle_gourd n 1 2 @ #m 1 0 12166128 -bottle_grass n 1 1 @ 1 0 12135049 -bottle_green n 1 1 @ 1 0 04967882 -bottle_opener n 1 2 @ ~ 1 0 02877962 -bottle_screw n 1 1 @ 1 0 03109150 -bottle_tree n 1 3 @ ~ #m 1 0 12196129 -bottlebrush n 1 1 @ 1 0 02877642 -bottlebrush_buckeye n 1 1 @ 1 0 12769065 -bottlecap n 1 2 @ #p 1 0 02877765 -bottled_gas n 1 1 @ 1 0 14878483 -bottled_water n 1 1 @ 1 0 07935737 -bottleful n 1 2 @ ~ 1 0 13765396 -bottleneck n 2 2 @ + 2 1 13912992 02877865 -bottlenose n 2 3 @ ~ #m 2 0 02069701 02068541 -bottlenose_dolphin n 1 3 @ ~ #m 1 0 02069701 -bottlenose_whale n 1 2 @ #m 1 0 02068541 -bottler n 1 2 @ + 1 0 08066644 -bottling_plant n 1 1 @ 1 0 02878107 -bottom n 7 5 ! @ ~ #p + 7 5 08511241 08511970 05559256 15256245 09217638 09227428 02878222 -bottom-dweller n 1 2 @ ~ 1 0 01316579 -bottom-feeder n 2 2 @ ~ 2 0 01316734 01316579 -bottom_dog n 1 1 @ 1 0 09868703 -bottom_feeder n 1 1 @ 1 0 09868782 -bottom_fermentation n 1 1 @ 1 0 13441154 -bottom_fermenting_yeast n 1 1 @ 1 0 14784831 -bottom_fish n 1 1 @ 1 0 02513355 -bottom_line n 2 2 @ #p 2 0 13423267 06606618 -bottom_lurkers n 1 1 @ 1 0 01316838 -bottom_of_the_inning n 1 2 @ #p 1 0 15256245 -bottom_quark n 1 1 @ 1 0 09227530 -bottom_rot n 1 1 @ 1 0 14278642 -bottom_rot_fungus n 1 2 @ #m 1 0 13015688 -bottom_round n 1 1 @ 1 0 07662517 -bottomland n 1 1 @ 1 1 09227428 -bottomlessness n 1 2 @ + 1 0 05135582 -botulin n 1 2 @ + 1 0 15035123 -botulinum n 1 2 @ #m 1 0 01357328 -botulinum_toxin n 1 2 @ ~ 1 0 14587688 -botulinum_toxin_a n 1 1 @ 1 0 14587886 -botulinus n 1 2 @ #m 1 0 01357328 -botulinus_toxin n 1 1 @ 1 0 15035123 -botulism n 1 1 @ 1 0 14068894 -botulismotoxin n 1 1 @ 1 0 15035123 -bouchee n 1 1 @ 1 0 07627223 -boucle n 1 1 @ 1 1 02878425 -boudoir n 1 1 @ 1 0 02878534 -bouffant n 1 1 @ 1 0 05257476 -bouffe n 1 2 @ ~ 1 0 07026646 -bougainvillaea n 1 3 @ #m %m 1 0 11838741 -bougainville n 2 2 @ #p 2 0 10859194 08843571 -bougainville_trench n 1 1 @ 1 0 09227683 -bougainvillea n 1 3 @ ~ #m 1 0 11838916 -bougainvillea_glabra n 1 1 @ 1 0 11839167 -bough n 1 1 @ 1 1 13165727 -bouillabaisse n 1 1 @ 1 0 07591586 -bouillon n 1 1 @ 1 0 07584938 -bouillon_cube n 1 1 @ 1 0 07810531 -boulder n 2 4 @ ~ #p + 2 1 09227839 09067721 -boulder_clay n 1 1 @ 1 0 15074772 -boulder_fern n 1 2 @ #m 1 0 13189428 -boule n 1 1 @ 1 0 02878628 -boulevard n 1 2 @ ~ 1 1 02763472 -boulevardier n 1 1 @ 1 0 09868899 -boulez n 1 1 @ 1 0 10859369 -boulle n 1 1 @ 1 0 02878628 -bounce n 3 3 @ ~ + 3 2 05020981 00120202 07350401 -bouncer n 1 2 @ + 1 0 09869009 -bounciness n 1 2 @ + 1 0 05020981 -bouncing n 1 1 @ 1 1 07350401 -bouncing_bess n 1 2 @ #m 1 0 11814584 -bouncing_bet n 1 2 @ #m 1 0 11814584 -bouncing_betty n 1 1 @ 1 1 02878796 -bouncing_putty n 1 1 @ 1 0 14784290 -bound n 4 3 @ ~ + 4 1 13903079 08512259 05124057 00120202 -bound_form n 1 2 @ ~ 1 0 06306945 -bound_morpheme n 1 2 @ ~ 1 0 06306945 -boundary n 3 3 @ ~ + 3 2 08512259 13903079 05124057 -boundary_condition n 1 2 @ ; 1 0 06755776 -boundary_layer n 1 1 @ 1 0 11431191 -boundary_line n 1 2 @ ~ 1 0 08512736 -bounded_interval n 1 1 @ 1 0 06016462 -boundedness n 1 2 @ + 1 0 05209659 -bounder n 2 3 @ ~ + 2 0 09886220 09869171 -boundlessness n 1 2 @ + 1 0 05209324 -bounds n 1 2 @ ~ 1 1 08512259 -bounteousness n 1 2 @ + 1 0 04832244 -bountifulness n 1 2 @ + 1 0 05115418 -bounty n 4 3 @ + ; 4 0 13272059 05115418 04832244 02878883 -bounty_hunter n 2 1 @ 2 0 09869447 09869317 -bouquet n 2 1 @ 2 1 02879087 04980463 -bourbon n 4 4 @ #m #s %m 4 2 09869706 07906718 09869578 08154012 -bourbon_dynasty n 1 2 @ %m 1 0 08154012 -bourdon n 1 2 @ #p 1 0 03245724 -bourgeois n 2 3 @ ~ #m 2 0 09882716 09869830 -bourgeoisie n 1 3 @ ~ %m 1 1 08181658 -bourgogne n 1 2 @ #p 1 0 08941057 -bourguignon n 1 1 @ 1 0 07835921 -bourguignon_sauce n 1 1 @ 1 0 07835921 -bourn n 2 1 @ 2 0 08513072 05981546 -bourne n 2 1 @ 2 0 08513072 05981546 -bourse n 1 1 @ 1 0 02879228 -bourtree n 1 1 @ 1 0 12679201 -boustrophedon n 1 2 @ + 1 0 06361446 -bout n 4 4 @ ~ #p ; 4 1 15256714 15119072 07456906 00510723 -bouteloua n 1 3 @ #m %m 1 0 12111882 -bouteloua_eriopoda n 1 1 @ 1 0 12112337 -bouteloua_gracilis n 1 1 @ 1 0 12112219 -boutique n 1 1 @ 1 0 02879309 -boutonneuse_fever n 1 1 @ 1 0 14078120 -boutonniere n 1 1 @ 1 0 02879422 -bouvet_island n 1 2 @ #p 1 0 08711143 -bouvier_des_flandres n 1 1 @ 1 0 02106382 -bouviers_des_flandres n 1 1 @ 1 0 02106382 -bouvines n 1 2 @ ; 1 0 01272582 -bouyei n 1 1 @ 1 0 06936290 -bovid n 1 3 @ ~ #m 1 0 02401031 -bovidae n 1 3 @ #m %m 1 0 02400139 -bovinae n 1 2 @ #m 1 0 02401305 -bovine n 1 3 @ ~ #m 1 0 02402010 -bovine_spongiform_encephalitis n 1 1 @ 1 0 14261846 -bovini n 1 2 @ #m 1 0 02401509 -bovril n 1 1 @ 1 0 07810633 -bow n 9 5 @ ~ #p %p + 9 4 02880189 02879517 02880008 02879718 13896100 07274425 07229341 02880308 00547765 -bow-tie n 1 2 @ ~ 1 0 02883205 -bow-wow n 2 1 @ 2 0 07378163 02084732 -bow_and_arrow n 1 2 @ %p 1 0 02880393 -bow_leg n 2 1 @ 2 0 14560253 05561834 -bow_legs n 1 1 @ 1 0 14560253 -bow_tie n 1 2 @ ~ 1 0 02883205 -bow_window n 1 2 @ ~ 1 0 02813399 -bow_wood n 1 1 @ 1 0 12399899 -bowditch n 1 1 @ 1 0 10859485 -bowdler n 1 2 @ + 1 0 10859669 -bowdlerisation n 2 2 @ + 2 0 00397191 00396825 -bowdleriser n 1 2 @ + 1 0 10073992 -bowdlerism n 1 1 @ 1 0 00397545 -bowdlerization n 2 2 @ + 2 0 00397191 00396825 -bowdlerizer n 1 2 @ + 1 0 10073992 -bowed_stringed_instrument n 1 3 @ ~ %p 1 0 02880546 -bowel n 1 4 @ ~ #p %p 1 0 05534333 -bowel_movement n 1 2 @ ; 1 0 13441387 -bowels n 1 1 @ 1 0 08516584 -bower n 1 3 @ ~ + 1 1 02732827 -bower_actinidia n 1 2 @ #m 1 0 12371202 -bowerbird n 1 3 @ ~ #m 1 0 01600657 -bowery n 1 2 @ #p 1 0 09121936 -bowfin n 1 2 @ #m 1 0 02639087 -bowhead n 1 2 @ #m 1 0 02064000 -bowhead_whale n 1 2 @ #m 1 0 02064000 -bowie n 1 1 @ 1 0 10859857 -bowie_knife n 1 1 @ 1 0 02880842 -bowiea n 1 3 @ #m %m 1 0 12444666 -bowiea_volubilis n 1 2 @ #m 1 0 12444898 -bowing n 2 2 @ ~ 2 0 07274425 00101410 -bowknot n 1 1 @ 1 0 02880189 -bowl n 9 5 @ ~ #p %p + 9 3 02881193 13893694 02880940 13765531 04295881 02882301 02881546 02881397 00104409 -bowlder n 1 2 @ ~ 1 1 09227839 -bowleg n 1 1 @ 1 0 05561834 -bowler n 3 2 @ + 3 0 09870096 09869961 02881757 -bowler_hat n 1 1 @ 1 0 02881757 -bowlful n 1 1 @ 1 0 13765531 -bowline n 1 1 @ 1 0 02881906 -bowline_knot n 1 1 @ 1 0 02881906 -bowling n 3 5 @ ~ %p ; - 3 0 00461782 00104976 00041740 -bowling_alley n 2 3 @ #p %p 2 0 02882190 02882014 -bowling_ball n 1 3 @ #p %p 1 0 02882301 -bowling_equipment n 1 3 @ ~ %p 1 0 02882483 -bowling_green n 2 2 @ #p 2 0 09089524 08516660 -bowling_league n 1 1 @ 1 0 08232410 -bowling_pin n 1 2 @ ~ 1 0 02882647 -bowling_score n 1 1 @ 1 0 00187056 -bowling_shoe n 1 2 @ #p 1 0 02882894 -bowls n 1 2 @ %p 1 0 00462804 -bowman n 1 2 @ ~ 1 0 09805324 -bowman's_capsule n 1 2 @ #p 1 0 05247621 -bowsprit n 1 1 @ 1 0 02883004 -bowstring n 1 2 @ #p 1 1 02883101 -bowstring_hemp n 3 5 @ ~ #m #s %s 3 0 14784506 12481641 12480895 -bowtie n 1 2 @ ~ 1 0 02883205 -bowtie_pasta n 1 1 @ 1 0 07699430 -box n 10 7 @ ~ #m #p %s %p + 10 4 02883344 02884225 13765624 14408951 13883494 12746106 02884607 02884450 02884011 00135148 -box_beam n 1 1 @ 1 0 02884859 -box_calf n 1 1 @ 1 0 14784601 -box_camera n 1 1 @ 1 0 02884994 -box_coat n 1 1 @ 1 0 02885233 -box_elder n 1 2 @ ~ 1 0 12755225 -box_end_wrench n 1 2 @ %p 1 0 02886434 -box_family n 1 3 @ #m %m 1 0 12745788 -box_girder n 1 1 @ 1 0 02884859 -box_huckleberry n 1 1 @ 1 0 12237152 -box_kite n 1 1 @ 1 0 02885785 -box_kodak n 1 1 @ 1 1 02884994 -box_number n 2 1 @ 2 0 08491531 08491410 -box_office n 2 2 @ #p 2 0 13258167 02885882 -box_pleat n 1 2 @ #p 1 0 02886035 -box_seat n 2 2 @ #p 2 0 02886183 02884450 -box_spring n 1 1 @ 1 0 02886321 -box_tortoise n 1 3 @ ~ #m 1 0 01669191 -box_turtle n 1 3 @ ~ #m 1 0 01669191 -box_white_oak n 1 1 @ 1 0 12278371 -box_wrench n 1 2 @ %p 1 0 02886434 -boxberry n 2 3 @ #m #p 2 0 12668517 07743723 -boxcar n 1 2 @ ~ 1 1 02885108 -boxcars n 1 2 @ ; 1 0 13746946 -boxer n 4 3 @ ~ + 4 1 09870208 10390427 09870746 02108089 -boxers n 1 2 @ ; 1 0 03234164 -boxershorts n 1 2 @ ; 1 0 03234164 -boxfish n 1 3 @ ~ #m 1 0 02654425 -boxful n 1 1 @ 1 0 13765624 -boxing n 2 4 @ ~ + - 2 0 00445802 00322228 -boxing_day n 1 3 @ #p ; 1 0 15196746 -boxing_equipment n 1 3 @ ~ ; 1 0 02885338 -boxing_glove n 1 2 @ ; 1 0 02885462 -boxing_match n 1 2 @ ~ 1 0 07465960 -boxing_ring n 1 2 @ ; 1 0 02885663 -boxthorn n 1 3 @ ~ #m 1 0 12904938 -boxwood n 2 5 @ ~ #m #s %s 2 0 12746474 12746106 -boy n 4 5 ! @ ~ + ; 4 4 10285313 09870926 10624074 09637837 -boy_orator_of_the_platte n 1 1 @ 1 0 10869385 -boy_scout n 2 3 @ ~ #m 2 1 09871681 09871867 -boy_scouts n 1 2 @ %m 1 0 08470710 -boy_scouts_of_america n 1 2 @ #m 1 0 08470928 -boy_wonder n 1 1 @ 1 0 09871952 -boycott n 1 2 @ + 1 0 00206130 -boyfriend n 1 1 @ 1 0 09871364 -boyhood n 1 2 @ + 1 1 15147504 -boyishness n 1 2 @ + 1 0 04667076 -boykinia n 1 3 @ #m %m 1 0 12796192 -boykinia_elata n 1 2 @ #m 1 0 12796385 -boykinia_occidentalis n 1 2 @ #m 1 0 12796385 -boyle n 2 1 @ 2 0 10860347 10860108 -boyle's_law n 1 1 @ 1 0 05875988 -boyne n 1 3 @ #p ; 1 0 01272787 -boys-and-girls n 1 2 @ #m 1 0 12924036 -boysenberry n 2 3 @ #p %p 2 0 12654857 07745046 -boysenberry_bush n 1 2 @ %p 1 0 12654857 -bozeman n 1 2 @ #p 1 0 09108586 -bozo n 2 2 @ ~ 2 0 10157744 10153414 -bph n 1 1 @ 1 0 14368917 -bpi n 1 2 @ ; 1 0 05089048 -bpm n 1 3 @ #p ; 1 0 15286042 -bps n 1 2 @ ; 1 0 15276642 -br n 2 3 @ #s ; 2 0 14632129 08041484 -bra n 1 3 @ ~ %p 1 0 02892767 -brabancon_griffon n 1 1 @ 1 0 02112706 -brace n 9 6 @ ~ #p %p + ; 9 1 02887209 13743605 07985223 06842165 02887683 02887489 02887079 02886907 02886599 -brace_and_bit n 1 2 @ %p 1 0 02887832 -brace_wrench n 1 1 @ 1 0 02888429 -bracelet n 2 3 @ ~ %p 2 0 04556204 02887970 -bracelet_wood n 1 2 @ #m 1 0 12099972 -bracer n 2 2 @ + 2 0 02888270 02888133 -bracero n 1 1 @ 1 0 09872285 -braces n 1 1 @ 1 0 02887079 -brachial_artery n 1 2 @ #p 1 0 05338614 -brachial_plexus n 1 1 @ 1 0 05506034 -brachial_vein n 1 1 @ 1 0 05359347 -brachiation n 1 2 @ + 1 0 00283450 -brachinus n 1 3 @ #m %m 1 0 02167375 -brachiocephalic_vein n 1 1 @ 1 0 05359516 -brachiopod n 1 2 @ #m 1 0 02315487 -brachiopoda n 1 4 @ #m %m + 1 0 02315309 -brachium n 1 2 @ ; 1 0 13914141 -brachycephalic n 1 1 @ 1 0 09872464 -brachycephalism n 1 1 @ 1 0 05212362 -brachycephaly n 1 2 @ + 1 0 05212362 -brachychiton n 1 3 @ #m %m 1 0 12195965 -brachychiton_acerifolius n 1 1 @ 1 0 12196336 -brachychiton_australis n 1 1 @ 1 0 12196527 -brachychiton_populneus n 1 1 @ 1 0 12196694 -brachychiton_rupestris n 1 1 @ 1 0 12196954 -brachycome n 1 3 @ #m %m 1 0 11941719 -brachycome_iberidifolia n 1 2 @ #m 1 0 11941924 -brachydactylia n 1 1 @ 1 0 14092114 -brachydactyly n 1 2 @ + 1 0 14092114 -brachystegia n 1 3 @ #m %m 1 0 12491200 -brachystegia_speciformis n 1 2 @ #m 1 0 12491435 -brachyura n 1 4 @ #m %m + 1 0 01976477 -brachyuran n 1 2 @ #m 1 0 01976868 -bracing n 1 4 @ ~ #p + 1 1 02886599 -bracken n 2 2 @ #m 2 0 13190060 13189844 -bracket n 4 3 @ ~ + 4 0 08006094 06842452 06842290 02888569 -bracket_creep n 1 1 @ 1 0 13310415 -bracket_fungus n 1 1 @ 1 0 13050397 -bracketed_blenny n 1 3 @ ~ #m 1 0 02614978 -brackishness n 1 2 @ + 1 0 04993752 -bract n 1 4 @ ~ #p + 1 0 13154841 -bracteole n 1 1 @ 1 0 13155095 -bractlet n 1 1 @ 1 0 13155095 -brad n 1 2 @ + 1 1 02888817 -bradawl n 1 1 @ 1 0 02888898 -bradbury n 1 1 @ 1 0 10860444 -bradford n 1 1 @ 1 0 10860589 -bradley n 2 1 @ 2 0 10860999 10860807 -bradley's_spleenwort n 1 1 @ 1 0 13182662 -bradley_method n 1 1 @ 1 0 13441536 -bradley_method_of_childbirth n 1 1 @ 1 0 13441536 -bradstreet n 1 1 @ 1 0 10861174 -brady n 2 1 @ 2 0 10861535 10861329 -bradycardia n 1 1 @ 1 0 14362510 -bradypodidae n 1 3 @ #m %m 1 0 02456776 -bradypus n 1 3 @ #m %m 1 0 02457249 -bradypus_tridactylus n 1 2 @ #m 1 0 02457408 -brae n 1 2 @ ; 1 0 09228055 -brag n 1 2 @ + 1 0 07229747 -braga n 1 2 @ #p 1 0 08985958 -brage n 1 2 @ ; 1 0 09579714 -bragg n 1 1 @ 1 0 10861741 -braggadocio n 1 1 @ 1 1 07230089 -braggart n 1 2 @ + 1 0 09872066 -bragger n 1 2 @ + 1 0 09872066 -bragging n 1 1 @ 1 0 07229747 -bragi n 1 2 @ ; 1 0 09579714 -brahe n 1 1 @ 1 0 10861926 -brahma n 2 3 @ ~ #m 2 0 09524921 02404573 -brahman n 4 4 @ ~ #m %m 4 0 09872782 09872557 08306959 02404573 -brahmana n 1 1 @ 1 0 06465457 -brahmanism n 2 1 @ 2 0 08096950 06237865 -brahmaputra n 1 2 @ #p 1 0 09228144 -brahmaputra_river n 1 2 @ #p 1 0 09228144 -brahmi n 1 1 @ 1 0 06352618 -brahmin n 4 5 @ ~ #m %m + 4 0 09872782 09872557 08306959 02404573 -brahminism n 2 1 @ 2 0 08096950 06237865 -brahms n 2 1 @ 2 0 10862113 07278146 -brahui n 2 1 @ 2 0 09725935 06982581 -braid n 2 3 @ ~ + 2 1 05259512 02889035 -braiding n 1 2 @ ~ 1 0 02889035 -brail n 2 1 @ 2 0 02889332 02889228 -braille n 2 2 @ + 2 0 10862281 06362792 -brain n 5 5 @ ~ #p %p + 5 4 05481095 05618056 05611302 10126926 07652585 -brain-fag n 1 1 @ 1 0 14018203 -brain-stem n 1 3 @ #p %p 1 0 05501185 -brain-teaser n 1 1 @ 1 0 06785223 -brain-worker n 1 1 @ 1 0 09872996 -brain_cell n 1 3 @ ~ #p 1 0 05465868 -brain_coral n 1 2 @ #m 1 0 01917289 -brain_damage n 1 1 @ 1 0 14085220 -brain_death n 1 1 @ 1 0 11487078 -brain_disease n 1 2 @ ~ 1 0 14085708 -brain_disorder n 1 2 @ ~ 1 0 14085708 -brain_doctor n 1 2 @ ~ 1 0 10354265 -brain_drain n 1 1 @ 1 0 01062468 -brain_edema n 1 1 @ 1 0 14317064 -brain_fever n 1 1 @ 1 0 14138364 -brain_mushroom n 1 2 @ #m 1 0 13038068 -brain_science n 1 1 @ 1 0 06082025 -brain_stem n 1 3 @ #p %p 1 0 05501185 -brain_sugar n 1 1 @ 1 0 14876771 -brain_surgeon n 1 1 @ 1 0 10354754 -brain_surgery n 1 2 @ ~ 1 0 00667246 -brain_trust n 1 1 @ 1 0 08241512 -brain_truster n 1 1 @ 1 0 09830759 -brain_tumor n 1 2 @ ~ 1 1 14236743 -brain_tumour n 1 2 @ ~ 1 0 14236743 -brain_wave n 1 3 @ ~ ; 1 0 11431302 -braincase n 1 3 @ #p %p 1 0 05540513 -brainchild n 1 1 @ 1 0 03574004 -brainiac n 1 2 @ ~ 1 0 10126926 -brainpan n 1 3 @ #p %p 1 0 05540513 -brainpower n 1 1 @ 1 0 05618056 -brainstem n 1 3 @ #p %p 1 0 05501185 -brainstorm n 1 3 @ ~ + 1 0 05807306 -brainstorming n 1 2 @ + 1 0 01203277 -brainwashing n 1 1 @ 1 0 00888960 -brainwave n 2 3 @ ~ ; 2 0 11431302 05807306 -brainworker n 1 1 @ 1 0 09872996 -braising n 1 1 @ 1 0 00247229 -brake n 5 5 @ ~ #m #p + 5 1 02889425 13214031 13189844 08437721 02889646 -brake_band n 1 2 @ #p 1 0 02889856 -brake_cylinder n 1 2 @ #p 1 0 02889996 -brake_disk n 1 2 @ #p 1 0 02890188 -brake_drum n 1 2 @ #p 1 0 02890351 -brake_failure n 1 1 @ 1 0 07421580 -brake_light n 1 2 @ #p 1 0 07265990 -brake_lining n 1 2 @ #p 1 0 02890513 -brake_pad n 1 2 @ #p 1 0 02890662 -brake_pedal n 1 2 @ #p 1 0 02890804 -brake_shoe n 1 3 @ #p %p 1 0 02890940 -brake_system n 1 4 @ ~ #p %p 1 0 02891188 -brakeman n 1 1 @ 1 0 09873135 -brakes n 1 4 @ ~ #p %p 1 1 02891188 -bram_stoker n 1 1 @ 1 0 11318824 -brama n 1 3 @ #m %m 1 0 02582591 -brama_raii n 1 2 @ #m 1 0 02582721 -bramante n 1 1 @ 1 0 10862507 -bramble n 1 3 @ ~ + 1 1 13119870 -bramble_bush n 1 3 @ ~ #m 1 0 12653218 -brambling n 1 2 @ #m 1 0 01530575 -bramidae n 1 3 @ #m %m 1 0 02582437 -bramley's_seedling n 1 1 @ 1 0 07742224 -bran n 2 3 @ #s %s 2 0 14806176 07568991 -bran_flake n 1 1 @ 1 0 07705386 -bran_muffin n 1 1 @ 1 0 07690431 -branch n 6 5 @ ~ #p %p + 6 3 08401248 13163250 13913849 11415721 09228324 02737833 -branch_line n 1 2 @ ~ 1 0 02891430 -branch_water n 1 1 @ 1 0 07935878 -branched_chain n 1 1 @ 1 0 09228492 -branched_chain_ketoaciduria n 1 1 @ 1 0 14159887 -branchia n 1 3 @ ~ + 1 0 02510769 -branchial_arch n 1 1 @ 1 0 02511303 -branchial_cleft n 1 1 @ 1 0 02511107 -branching n 1 2 @ ~ 1 0 00388392 -branchiobdella n 1 2 @ #m 1 0 01935997 -branchiobdellidae n 1 3 @ #m %m 1 0 01935743 -branchiopod n 1 2 @ ~ 1 0 01994492 -branchiopod_crustacean n 1 2 @ ~ 1 0 01994492 -branchiopoda n 1 4 @ #m %m + 1 0 01994176 -branchiopodan n 1 2 @ ~ 1 0 01994492 -branchiostegidae n 1 3 @ #m %m 1 0 02582919 -branchiostomidae n 1 3 @ #m %m 1 0 01467504 -branchiura n 1 3 @ #m %m 1 0 01997436 -branchlet n 1 2 @ ~ 1 0 13163991 -brancusi n 1 1 @ 1 0 10862676 -brand n 6 5 @ ~ %p + - 6 3 06845599 05845140 06795543 15101157 06794666 04373894 -brand-name_drug n 1 2 ! @ 1 0 02891566 -brand-newness n 1 2 @ + 1 0 04926620 -brand_name n 1 3 @ ~ - 1 0 06845599 -brandenburg n 1 2 @ #p 1 0 08775597 -branding n 1 1 @ 1 0 01223488 -branding_iron n 1 1 @ 1 0 03585337 -brandish n 1 2 @ + 1 0 06890254 -brandt n 1 1 @ 1 0 10862822 -brandy n 1 3 @ ~ #s 1 1 07903208 -brandy_glass n 1 1 @ 1 0 04249882 -brandy_nose n 1 1 @ 1 0 14397040 -brandy_sling n 1 1 @ 1 0 07917791 -brandy_snifter n 1 1 @ 1 0 04249882 -brandyball n 1 1 @ 1 0 07599068 -brandysnap n 1 1 @ 1 0 07695097 -brant n 1 3 @ ~ #m 1 0 01857325 -brant_goose n 1 3 @ ~ #m 1 0 01857325 -branta n 1 3 @ #m %m 1 0 01857171 -branta_bernicla n 1 1 @ 1 0 01857512 -branta_canadensis n 1 2 @ #m 1 0 01857632 -branta_leucopsis n 1 2 @ #m 1 0 01857851 -braque n 1 1 @ 1 0 10862999 -brasenia n 1 3 @ #m %m 1 0 11718521 -brasenia_schreberi n 1 2 @ #m 1 0 11718681 -brash_oak n 1 1 @ 1 0 12278371 -brashness n 2 2 @ + 2 0 04818700 04662283 -brasier n 1 2 @ ~ 1 0 02893418 -brasil n 1 6 @ #m #p %m %p - 1 0 08853741 -brasilia n 1 2 @ #p 1 0 08855308 -brasov n 1 2 @ #p 1 0 08814333 -brass n 7 7 @ ~ #p %m %s %p + 7 5 14716997 02891788 08164585 04838210 02892304 08217135 02892201 -brass_band n 1 1 @ 1 0 08249336 -brass_buttons n 1 2 @ #m 1 0 11958499 -brass_family n 1 2 @ ; 1 0 07998206 -brass_hat n 1 2 @ ; 1 0 09873242 -brass_instrument n 1 3 @ ~ %p 1 0 02891788 -brass_knuckles n 1 2 @ ; 1 0 02892948 -brass_knucks n 1 2 @ ; 1 0 02892948 -brass_monkey n 1 1 @ 1 0 02893148 -brass_ring n 1 1 @ 1 0 14484378 -brass_section n 1 2 @ ~ 1 0 08217135 -brassaia_actinophylla n 1 2 @ #m 1 0 11800565 -brassard n 1 2 @ #p 1 0 02892392 -brassavola n 1 2 @ #m 1 0 12047345 -brasserie n 1 1 @ 1 0 02892499 -brassia n 1 3 @ #m %m 1 0 12047586 -brassia_lawrenceana n 1 2 @ #m 1 0 12047884 -brassia_verrucosa n 1 2 @ #m 1 0 12048056 -brassica n 1 3 @ #m %m 1 1 11875100 -brassica_hirta n 1 2 @ %p 1 0 11896519 -brassica_juncea n 1 2 @ #m 1 0 11878633 -brassica_kaber n 1 1 @ 1 0 11896722 -brassica_napus n 1 3 @ #m %s 1 0 11879722 -brassica_napus_napobrassica n 1 3 @ #m %p 1 0 11877860 -brassica_nigra n 1 3 @ #m %p 1 0 11879505 -brassica_oleracea n 2 4 @ ~ #m %p 2 0 11875691 11875523 -brassica_oleracea_acephala n 1 3 @ ~ #m 1 0 11876976 -brassica_oleracea_botrytis n 1 2 @ %p 1 0 11876634 -brassica_oleracea_capitata n 1 2 @ ~ 1 0 11875938 -brassica_oleracea_gemmifera n 1 2 @ %p 1 0 11876432 -brassica_oleracea_gongylodes n 1 3 @ #m %p 1 0 11877283 -brassica_oleracea_italica n 1 3 @ #m %p 1 0 11876803 -brassica_perviridis n 1 2 @ #m 1 0 11879291 -brassica_rapa n 1 3 @ #m %p 1 0 11877646 -brassica_rapa_chinensis n 1 2 @ #m 1 0 11879054 -brassica_rapa_pekinensis n 1 2 @ #m 1 0 11878808 -brassica_rapa_perviridis n 1 2 @ #m 1 0 11879291 -brassica_rapa_ruvo n 1 3 @ #m %p 1 0 11878101 -brassicaceae n 1 3 @ #m %m 1 0 11867525 -brassie n 1 1 @ 1 0 02892626 -brassiere n 1 3 @ ~ %p 1 0 02892767 -brat n 2 2 @ + 2 0 10702483 07677982 -bratislava n 1 2 @ #p 1 0 08759263 -brattice n 1 1 @ 1 0 02893269 -brattleboro n 1 2 @ #p 1 0 09148529 -bratwurst n 1 1 @ 1 0 07677982 -braun n 2 1 @ 2 0 10863440 10863124 -braun's_holly_fern n 1 1 @ 1 0 13200193 -braunschweig n 1 2 @ #p 1 0 08772551 -bravado n 1 1 @ 1 1 06889591 -bravais_lattice n 1 1 @ 1 0 05732086 -brave n 2 3 ! @ + 2 0 09645788 07944754 -braveness n 1 4 @ ~ = + 1 0 04857083 -bravery n 2 3 @ ~ = 2 1 04857083 07526182 -bravo n 2 4 @ ~ + ; 2 0 09813696 06692834 -bravura n 1 1 @ 1 0 05637356 -brawl n 2 2 @ + 2 0 07448038 01176431 -brawler n 1 2 @ + 1 0 09873348 -brawn n 1 2 @ + 1 0 05030418 -brawniness n 1 2 @ + 1 0 05030418 -braxton-hicks_contraction n 1 1 @ 1 0 00370688 -braxton_bragg n 1 1 @ 1 0 10861741 -bray n 1 2 @ + 1 0 07378059 -brazenness n 1 2 @ + 1 1 04859636 -brazier n 1 2 @ ~ 1 0 02893418 -brazil n 2 7 @ #m #p %m %p + - 2 1 08853741 07771731 -brazil-nut_tree n 1 3 @ #m %p 1 0 12327846 -brazil_nut n 2 4 @ #m #p %p 2 0 12327846 07771731 -brazilian n 1 3 @ ~ #m 1 0 09694894 -brazilian_capital n 1 2 @ #p 1 0 08855308 -brazilian_guava n 1 1 @ 1 0 12334153 -brazilian_ironwood n 1 2 @ #m 1 0 12489676 -brazilian_monetary_unit n 1 2 @ ~ 1 0 13667797 -brazilian_pepper_tree n 1 2 @ #m 1 0 12765402 -brazilian_potato_tree n 1 2 @ #m 1 0 12897999 -brazilian_rosewood n 1 2 @ #m 1 0 12523475 -brazilian_trumpeter n 1 1 @ 1 0 02021281 -brazilwood n 2 4 @ #m #s %s 2 0 12489524 12489268 -brazos n 1 2 @ #p 1 0 09228619 -brazos_river n 1 2 @ #p 1 0 09228619 -brazzaville n 1 2 @ #p 1 0 08734250 -breach n 3 3 @ ~ + 3 1 00068901 09228801 07313814 -breach_of_contract n 1 2 @ ~ 1 0 00069173 -breach_of_duty n 1 1 @ 1 0 00069604 -breach_of_promise n 1 1 @ 1 0 00069815 -breach_of_the_covenant_of_warranty n 1 1 @ 1 0 00069685 -breach_of_the_peace n 1 1 @ 1 0 00771713 -breach_of_trust n 1 1 @ 1 0 00069918 -breach_of_trust_with_fraudulent_intent n 1 1 @ 1 0 00070077 -breach_of_warranty n 1 1 @ 1 0 00070215 -bread n 2 5 @ ~ #p %s + 2 1 07679356 13385216 -bread-and-butter_issue n 1 1 @ 1 0 05815267 -bread-bin n 1 1 @ 1 0 02893692 -bread-stick n 1 2 @ ~ 1 0 07680517 -bread_and_butter n 1 2 @ ~ 1 1 13365286 -bread_and_butter_pickle n 1 1 @ 1 0 07825399 -bread_board n 1 1 @ 1 0 02893800 -bread_dough n 1 1 @ 1 1 07861158 -bread_knife n 1 1 @ 1 0 02893941 -bread_line n 1 1 @ 1 0 08432606 -bread_maker n 1 1 @ 1 0 09833536 -bread_mold n 1 2 @ #m 1 0 12973937 -bread_sauce n 1 1 @ 1 0 07831955 -breadbasket n 3 4 @ ~ #p %p 3 0 08516767 05395690 02893608 -breadboard n 1 1 @ 1 0 02893800 -breadbox n 1 1 @ 1 0 02893692 -breadcrumb n 1 1 @ 1 0 07622473 -breadfruit n 2 4 @ #m #p %p 2 0 12400489 07754451 -breadfruit_tree n 1 3 @ #m %p 1 0 12400489 -breadline n 1 1 @ 1 0 08432606 -breadroot n 1 2 @ #m 1 0 12564613 -breadstick n 1 2 @ ~ 1 0 07680517 -breadstuff n 2 4 @ ~ #p %s 2 0 07679356 07567039 -breadth n 2 3 @ ~ = 2 2 05618293 05136150 -breadth_index n 1 1 @ 1 0 13820826 -breadwinner n 1 1 @ 1 0 09873473 -break n 16 6 @ ~ #p %p + ; 16 6 07367812 07316856 09278537 07313814 01062997 00376400 15271008 14292090 07367548 07297633 00500280 00482892 00383952 00294748 00188007 00059989 -break-axe n 1 2 @ #m 1 0 12194613 -break-in n 1 3 @ ~ + 1 0 00785263 -break_dance n 1 2 @ + 1 0 00526412 -break_dancing n 1 1 @ 1 0 00526412 -break_of_day n 1 1 @ 1 1 15168790 -break_of_serve n 1 2 @ ; 1 0 00482892 -break_of_the_day n 1 1 @ 1 0 15168790 -break_seal n 1 1 @ 1 1 02894431 -breakability n 1 2 @ + 1 0 05043755 -breakable n 1 1 @ 1 1 02894024 -breakableness n 1 5 ! @ ~ = + 1 0 04939324 -breakage n 3 3 @ ~ + 3 0 13754948 13293512 00376400 -breakaway n 1 2 @ + 1 1 00385266 -breakax n 1 2 @ #m 1 0 12194613 -breakaxe n 1 2 @ #m 1 0 12194613 -breakbone_fever n 1 1 @ 1 0 14129784 -breakdown n 4 3 @ ~ + 4 1 00553362 14066492 07421316 05781800 -breaker n 3 3 @ ~ + 3 0 09873604 07344233 03034244 -breaker_point n 1 2 @ #p 1 0 03213826 -breakers n 1 1 @ 1 0 07344233 -breakfast n 1 3 @ ~ + 1 1 07574602 -breakfast_area n 1 1 @ 1 0 02894158 -breakfast_food n 1 2 @ ~ 1 0 07702642 -breakfast_nook n 1 1 @ 1 0 02894158 -breakfast_table n 1 1 @ 1 1 02894337 -breakfast_time n 1 1 @ 1 0 15165805 -breaking n 1 2 @ ~ 1 1 00376400 -breaking_and_entering n 1 2 @ ~ 1 0 00785263 -breaking_away n 2 1 @ 2 1 00385266 00053020 -breaking_ball n 1 1 @ 1 0 00107875 -breaking_off n 1 1 @ 1 0 01068528 -breaking_point n 2 2 @ ; 2 0 14376695 11515526 -breaking_wind n 1 1 @ 1 0 00839597 -breakout n 1 2 @ + 1 0 00059989 -breakstone n 1 3 @ ~ #m 1 0 12793015 -breakthrough n 3 2 @ + 3 2 05808218 00151409 00975955 -breakup n 2 3 @ ~ + 2 2 00215314 07331400 -breakwater n 1 1 @ 1 1 02894605 -bream n 4 5 @ ~ #m #p %p 4 0 07777358 07777189 02590702 02563182 -breast n 4 5 @ ~ #p %p + 4 2 05553288 05554405 07648408 01514431 -breast_cancer n 1 1 @ 1 0 14246899 -breast_drill n 1 1 @ 1 0 02894847 -breast_feeding n 1 1 @ 1 0 01058870 -breast_implant n 1 1 @ 1 0 02895008 -breast_of_lamb n 1 1 @ 1 0 07667480 -breast_of_veal n 1 1 @ 1 0 07665983 -breast_pocket n 1 2 @ #p 1 0 02895328 -breastbone n 1 3 @ #p %p 1 0 05281189 -breastpin n 1 2 @ ~ 1 0 02906438 -breastplate n 1 3 @ ~ #p 1 0 02895154 -breaststroke n 1 3 @ %p + 1 0 00571060 -breaststroker n 1 2 @ + 1 0 09873769 -breastwork n 1 2 @ ~ 1 1 03889503 -breath n 5 2 @ ~ 5 4 00835032 14841770 15274695 07163988 11432262 -breath_of_fresh_air n 1 1 @ 1 0 07357253 -breathalyser n 1 1 @ 1 0 02895438 -breathalyzer n 1 1 @ 1 0 02895438 -breather n 2 3 @ #p + 2 0 15274695 04250850 -breathing n 1 4 @ ~ %p + 1 1 00831191 -breathing_apparatus n 1 2 @ ~ 1 0 02895606 -breathing_device n 1 2 @ ~ 1 0 02895606 -breathing_in n 1 3 @ ~ #p 1 0 00836788 -breathing_machine n 1 2 @ ~ 1 0 02895606 -breathing_out n 1 3 @ ~ #p 1 0 00835267 -breathing_place n 1 1 @ 1 0 15274695 -breathing_room n 1 1 @ 1 0 13778089 -breathing_space n 2 1 @ 2 1 15274695 13778089 -breathing_spell n 1 1 @ 1 0 15274695 -breathing_time n 1 1 @ 1 0 15274695 -breathlessness n 1 2 @ + 1 0 14370122 -breccia n 1 2 @ + 1 0 14697839 -brecht n 1 1 @ 1 0 10863552 -breech n 1 3 @ #p %p 1 0 02895881 -breech_birth n 1 2 @ ~ 1 0 00185438 -breech_closer n 1 2 @ #p 1 0 02896074 -breech_delivery n 1 2 @ ~ 1 0 00185438 -breech_presentation n 1 2 @ ~ 1 0 00185438 -breechblock n 1 2 @ #p 1 0 02896074 -breechcloth n 1 2 @ ~ 1 0 02896294 -breechclout n 1 2 @ ~ 1 0 02896294 -breeches n 1 4 @ ~ %p ; 1 1 02896442 -breeches_buoy n 1 1 @ 1 0 02896694 -breechloader n 1 1 @ 1 0 02896856 -breed n 2 4 @ ~ #m + 2 1 08101410 05839547 -breed's_hill n 1 2 @ #p 1 0 09096343 -breeder n 1 2 @ + 1 0 09873899 -breeder_reactor n 1 2 @ %p 1 0 02896949 -breeding n 5 3 @ ~ + 5 1 04813540 04921900 01129532 00914929 00849523 -breeding_ground n 1 2 @ ~ 1 0 08516885 -breeze n 2 3 @ ~ + 2 1 11431754 00575365 -breeze_block n 1 1 @ 1 0 03031957 -breeziness n 2 2 @ + 2 0 14523787 04633797 -bregma n 1 2 @ + 1 0 05231769 -breiz n 1 3 @ #p %m 1 0 08941208 -bremen n 1 3 @ #m #p 1 0 08770013 -bremerhaven n 1 2 @ #p 1 0 08770274 -bren n 1 1 @ 1 0 02897097 -bren_gun n 1 1 @ 1 0 02897097 -brenner_pass n 1 2 @ #p 1 0 09228928 -brent n 1 3 @ ~ #m 1 0 01857325 -brent_goose n 1 3 @ ~ #m 1 0 01857325 -brer_rabbit n 1 1 @ 1 0 09590980 -brescia n 1 2 @ #p 1 0 08804845 -breslau n 1 2 @ #p 1 0 08984332 -brest n 1 2 @ #p 1 0 08934694 -bret_harte n 1 1 @ 1 0 11032840 -bretagne n 1 3 @ #p %m 1 0 08941208 -brethren n 1 2 @ ; 1 0 08147670 -breton n 2 2 @ #m 2 0 09709001 06961771 -breuer n 1 1 @ 1 0 10863717 -breughel n 1 1 @ 1 0 10868177 -breughel_the_elder n 1 1 @ 1 0 10868177 -breve n 1 1 @ 1 0 06822831 -brevet n 1 2 @ + 1 0 06471069 -breviary n 1 2 @ ; 1 0 06417096 -brevibloc n 1 2 @ ; 1 0 03296759 -brevicipitidae n 1 3 @ #m %m 1 0 01652583 -brevity n 2 2 @ + 2 2 07089431 05053042 -brevoortia n 1 3 @ #m %m 1 0 02531503 -brevoortia_tyrannis n 1 3 @ #m %s 1 0 02531625 -brew n 1 3 @ ~ + 1 0 07886572 -brewage n 1 3 @ ~ + 1 0 07886572 -brewer n 2 2 @ + 2 0 09874118 09874014 -brewer's_mole n 1 1 @ 1 0 01890144 -brewer's_mountain_heather n 1 2 @ #m 1 0 12243109 -brewer's_spruce n 1 1 @ 1 0 11625223 -brewer's_yeast n 2 3 @ ~ #m 2 0 14784705 13025854 -brewery n 1 3 @ ~ + 1 0 02897237 -brewing n 1 2 @ - 1 0 00915140 -brewpub n 1 1 @ 1 0 02897389 -brezhnev n 1 1 @ 1 0 10863896 -briar n 4 4 @ #m %p + 4 0 12621619 12470512 12227658 02897572 -briar_pipe n 1 1 @ 1 0 02897572 -briard n 1 1 @ 1 0 02105251 -briarroot n 1 3 @ #p %s 1 0 12227909 -briarwood n 1 2 @ #s 1 0 12228045 -bribe n 1 3 @ ~ + 1 1 13284562 -briber n 1 2 @ + 1 1 09874260 -bribery n 1 3 @ ~ + 1 0 00776262 -bric-a-brac n 1 1 @ 1 1 02897692 -brick n 2 3 @ ~ %s 2 2 02897820 09874428 -brick_cheese n 1 1 @ 1 0 07852712 -brick_red n 1 1 @ 1 0 04973585 -brick_trowel n 1 1 @ 1 0 02898269 -brickbat n 2 1 @ 2 0 09229158 06710960 -brickellia n 1 2 @ #m 1 0 11942144 -brickfield n 1 1 @ 1 0 02898478 -brickkiln n 1 1 @ 1 0 02898093 -bricklayer n 1 1 @ 1 1 09874518 -bricklayer's_hammer n 1 1 @ 1 0 02898173 -bricklaying n 1 1 @ 1 1 00607458 -bricks_and_mortar n 1 1 @ 1 0 14785065 -brickwork n 1 2 @ ~ 1 0 02898369 -brickyard n 1 1 @ 1 0 02898478 -bricole n 1 1 @ 1 0 02981911 -bridal n 1 1 @ 1 0 01037469 -bridal-wreath n 2 2 @ #m 2 0 12797860 12659539 -bridal_gown n 1 1 @ 1 0 02898585 -bridal_wreath n 2 2 @ #m 2 0 12797860 12659539 -bride n 3 4 @ ~ #m + 3 1 09874618 10864204 09874725 -bride's_bonnet n 1 2 @ #m 1 0 12472778 -bride-gift n 1 1 @ 1 1 13269596 -bride-to-be n 1 1 @ 1 0 10085970 -bride_price n 1 1 @ 1 0 13265603 -bridecake n 1 1 @ 1 0 07632802 -bridegroom n 2 2 @ #m 2 1 10147935 10148035 -bridesmaid n 1 2 @ #m 1 0 09874862 -bridge n 9 6 @ ~ #p %p + - 9 5 02898711 02899808 13793330 05599203 00490569 02899694 02899569 02899439 02899257 -bridge_agent n 1 1 @ 1 0 09875025 -bridge_circuit n 1 2 @ ~ 1 0 02899808 -bridge_deck n 1 3 @ ~ %p 1 0 02899257 -bridge_hand n 1 3 @ ~ %p 1 0 07957327 -bridge_partner n 1 2 @ ~ 1 0 09875188 -bridge_player n 1 2 @ ~ 1 0 09875353 -bridge_whist n 1 1 @ 1 0 00491037 -bridged-t n 1 1 @ 1 1 02900011 -bridgehead n 2 2 @ ~ 2 1 08689028 08517010 -bridgeport n 1 2 @ #p 1 0 09068921 -bridges n 1 1 @ 1 0 10864064 -bridget n 1 1 @ 1 0 10864204 -bridgetown n 1 2 @ #p 1 0 08755664 -bridgework n 1 1 @ 1 0 02899569 -bridle n 2 4 @ #p %p + 2 1 02900160 01146039 -bridle_path n 1 1 @ 1 0 02900459 -bridle_road n 1 1 @ 1 0 02900459 -bridoon n 1 1 @ 1 0 02900594 -brie n 1 1 @ 1 0 07852614 -brief n 2 4 @ ~ + ; 2 1 06543781 06468640 -briefcase n 1 3 @ ~ %p 1 1 02900705 -briefcase_bomb n 1 1 @ 1 0 02900857 -briefcase_computer n 1 1 @ 1 0 02900987 -briefing n 1 3 @ + ; 1 1 07217782 -briefness n 2 2 @ + 2 0 05134238 05053042 -briefs n 1 2 @ ; 1 0 02901114 -brier n 5 3 @ #m %p 5 1 12621836 13090018 12621619 12470512 12227658 -brier-wood n 1 2 @ #s 1 0 12228045 -brier_patch n 1 1 @ 1 0 12621836 -brierpatch n 1 1 @ 1 0 12621836 -brierwood n 1 2 @ #s 1 0 12228045 -brig n 2 2 @ ; 2 1 02901377 02901259 -brigade n 1 2 @ + 1 1 08213978 -brigadier n 1 1 @ 1 1 09875540 -brigadier_general n 1 1 @ 1 1 09875540 -brigand n 1 1 @ 1 0 09837088 -brigandine n 1 1 @ 1 0 02901481 -brigantine n 1 1 @ 1 0 02901620 -brigate_rosse n 1 2 @ ; 1 0 08041484 -brigham_young n 1 1 @ 1 0 11403220 -bright's_disease n 1 2 @ ~ 1 0 14113798 -bright_side n 1 1 @ 1 0 07493095 -brightness n 3 5 ! @ ~ = + 3 1 04952242 05620955 05018103 -brightness_constancy n 1 1 @ 1 0 05709148 -brightness_level n 1 3 @ ~ = 1 0 05018103 -brighton n 1 2 @ #p 1 0 08878533 -brigid n 1 1 @ 1 0 10864204 -brigit n 1 2 @ ; 1 0 09508474 -brigit_nilsson n 1 1 @ 1 0 11207768 -brihaspati n 1 1 @ 1 0 09525065 -brill n 1 1 @ 1 0 02662993 -brilliance n 3 3 @ ~ + 3 2 04952570 04814238 05619743 -brilliancy n 1 2 @ + 1 1 04954920 -brilliant_pebble n 1 1 @ 1 0 02901901 -brilliantine n 1 1 @ 1 0 02901793 -brim n 2 4 @ ~ #p + 2 1 02902250 02902079 -brimstone n 1 1 @ 1 0 14785325 -brindisi n 1 2 @ #p 1 0 08807894 -brine n 2 4 @ ~ %s + 2 0 15008847 07937203 -brine_shrimp n 1 2 @ #m 1 0 01995686 -brinell_number n 1 1 @ 1 0 13609948 -bringing n 1 2 @ ~ 1 1 00317207 -bringing_close_together n 1 1 @ 1 0 00146277 -bringing_up n 1 1 @ 1 0 01129532 -brininess n 1 2 @ + 1 0 04993604 -brinjal n 1 3 @ #m %p 1 0 12896000 -brink n 3 1 @ 3 1 13903738 08517127 05125193 -brinkmanship n 1 1 @ 1 0 06661243 -brinton n 1 1 @ 1 0 10864428 -briny n 1 4 @ #p %p + 1 0 09345932 -brio n 1 3 @ ~ = 1 0 04631700 -brioche n 1 1 @ 1 0 07691539 -briony n 1 3 @ ~ #m 1 0 12163035 -brioschi n 1 2 @ ; 1 0 14777104 -briquet n 1 1 @ 1 0 02902411 -briquette n 1 1 @ 1 0 02902411 -bris n 1 1 @ 1 0 01031392 -brisance n 1 2 @ + 1 0 11412179 -brisbane n 1 2 @ #p 1 0 08832877 -brisbane_quandong n 1 3 @ #m %p 1 0 12192877 -brisket n 1 1 @ 1 0 07657547 -briskness n 1 2 @ + 1 0 04632963 -brisling n 2 4 @ #m #p %p 2 0 07798985 02532918 -briss n 1 1 @ 1 0 01031392 -bristle n 2 3 @ #p + 2 2 02902535 01901610 -bristle_brush n 1 1 @ 1 0 02902687 -bristle_fern n 1 3 @ ~ #m 1 0 12952165 -bristle_grass n 1 2 @ #m 1 0 12134486 -bristlecone_fir n 1 1 @ 1 0 11622771 -bristlecone_pine n 1 1 @ 1 0 11617272 -bristlegrass n 1 2 @ #m 1 0 12134486 -bristletail n 1 2 @ ~ 1 0 02270200 -bristliness n 1 2 @ + 1 0 04949799 -bristly_locust n 1 2 @ #m 1 0 12567950 -bristly_oxtongue n 1 2 @ #m 1 0 12003167 -bristly_sarsaparilla n 1 2 @ #m 1 0 11798270 -bristly_sarsparilla n 1 2 @ #m 1 0 11798270 -bristol n 1 2 @ #p 1 0 08878708 -bristol_channel n 1 2 @ #p 1 0 09229249 -brit n 3 3 @ ~ #m 3 0 09700964 02530188 01996895 -britain n 1 7 @ ~ #m #p %p + - 1 1 08860123 -britannia_metal n 1 1 @ 1 0 14785436 -britches n 1 2 @ ; 1 0 02902816 -brith n 1 1 @ 1 0 01031392 -briticism n 1 1 @ 1 0 07081473 -british n 1 2 @ + 1 1 09732544 -british_cabinet n 1 3 @ %m ; 1 0 08382056 -british_capacity_unit n 1 2 @ ~ 1 0 13615557 -british_capital n 1 4 @ #p %m %p 1 0 08873622 -british_columbia n 1 4 @ #p %p - 1 0 08822855 -british_commonwealth n 1 2 @ %m 1 0 08049989 -british_crown n 1 1 @ 1 0 06884337 -british_east_africa n 1 2 @ #m 1 0 08858529 -british_empire n 1 2 @ %m 1 0 08857682 -british_empiricism n 1 1 @ 1 0 05959263 -british_guiana n 1 5 @ #m #p %m %p 1 0 08948346 -british_honduras n 1 2 @ #p 1 0 08737521 -british_house_of_commons n 1 3 @ #m %m 1 0 08162691 -british_house_of_lords n 1 3 @ #m %m 1 0 08162860 -british_imperial_system n 1 2 @ %p 1 0 13577731 -british_isles n 1 4 @ #m #p %p 1 0 08858248 -british_labour_party n 1 2 @ %m 1 0 08261320 -british_monetary_unit n 1 2 @ ~ 1 0 13686526 -british_parliament n 1 2 @ %m 1 0 08319408 -british_people n 1 1 @ 1 0 09732544 -british_pound n 1 2 @ %p 1 0 13686660 -british_pound_sterling n 1 2 @ %p 1 0 13686660 -british_shilling n 1 2 @ %p 1 0 13686877 -british_system n 1 2 @ %p 1 0 13577731 -british_thermal_unit n 1 2 @ #p 1 0 13726947 -british_virgin_islands n 1 2 @ #p 1 0 08754814 -british_west_africa n 1 3 @ #m #p 1 0 08858713 -british_west_indies n 1 2 @ #m 1 0 08747494 -britisher n 1 3 @ ~ #m 1 0 09700964 -britishism n 2 1 @ 2 0 07081473 00413674 -briton n 2 4 @ ~ #m + 2 0 09700964 09688366 -brits n 1 1 @ 1 0 09732544 -britt n 2 1 @ 2 0 02530188 01996895 -brittanic n 1 2 @ ~ 1 0 06961399 -brittany n 1 3 @ #p %m 1 0 08941208 -brittany_spaniel n 1 1 @ 1 0 02101388 -britten n 1 1 @ 1 0 10864635 -brittle n 1 2 @ ~ 1 0 07599783 -brittle-star n 1 2 @ #m 1 0 02317781 -brittle_bladder_fern n 1 1 @ 1 0 13196003 -brittle_bush n 1 2 @ #m 1 0 11963932 -brittle_fern n 1 1 @ 1 0 13196003 -brittle_maidenhair n 1 2 @ ~ 1 0 13207736 -brittle_maidenhair_fern n 1 2 @ ~ 1 0 13207736 -brittle_star n 1 2 @ #m 1 0 02317781 -brittle_willow n 1 2 @ #m 1 0 12728322 -brittlebush n 1 2 @ #m 1 0 11963932 -brittleness n 1 3 @ ~ + 1 0 04939547 -brix_scale n 1 1 @ 1 0 13610046 -brno n 1 2 @ #p 1 0 08758334 -broach n 1 2 @ ~ 1 0 02906438 -broad n 1 1 @ 1 0 09875663 -broad-bean n 1 3 @ #m %p 1 0 12576029 -broad-bean_plant n 1 3 @ #m %p 1 0 12576029 -broad-leaved_bottletree n 1 1 @ 1 0 12196527 -broad-leaved_dock n 1 1 @ 1 0 12604639 -broad-leaved_everlasting_pea n 1 2 @ #m 1 0 12540001 -broad-leaved_montia n 1 1 @ 1 0 11861238 -broad-leaved_plantain n 2 1 @ 2 0 12600095 12599435 -broad-leaved_twayblade n 1 2 @ #m 1 0 12071259 -broad-mindedness n 1 3 ! @ + 1 0 06204623 -broad_arrow n 3 1 @ 3 0 07271052 06818317 02902916 -broad_bean n 4 4 @ #m #p %p 4 0 12576323 12576029 07801892 07729384 -broad_beech_fern n 1 1 @ 1 0 13230843 -broad_buckler-fern n 1 2 @ #m 1 0 13193143 -broad_gauge n 1 1 @ 1 0 02903964 -broad_hatchet n 1 1 @ 1 0 02904109 -broad_interpretation n 1 1 @ 1 0 05766698 -broad_jump n 2 2 @ %p 2 0 07469609 00440382 -broad_leaved_centaury n 1 1 @ 1 0 12291564 -broad_leaved_goldenrod n 1 1 @ 1 0 12018530 -broadax n 1 2 @ ~ 1 0 02903006 -broadaxe n 1 2 @ ~ 1 0 02903006 -broadbill n 4 3 @ ~ #m 4 0 02011281 01851375 01848976 01546506 -broadcast n 2 3 @ ~ + 2 1 06254007 06619428 -broadcast_area n 1 1 @ 1 0 08517204 -broadcast_journalist n 1 2 @ ~ 1 0 09875979 -broadcast_medium n 1 2 @ - 1 0 06264176 -broadcast_station n 1 2 @ ~ 1 0 02903405 -broadcaster n 2 3 @ ~ + 2 0 09875786 02903204 -broadcasting n 2 3 @ ~ - 2 1 06264176 06276697 -broadcasting_company n 1 1 @ 1 1 08002015 -broadcasting_station n 1 2 @ ~ 1 0 02903405 -broadcasting_studio n 1 2 @ #p 1 0 02903588 -broadcloth n 2 1 @ 2 0 02903852 02903727 -broadening n 3 1 @ 3 2 00407270 00250597 13574804 -broadloom n 1 1 @ 1 0 02904233 -broadness n 1 3 @ ~ + 1 0 05136343 -broadsheet n 1 2 @ ~ 1 0 07250339 -broadside n 5 4 @ ~ + ; 5 1 07250339 07233415 02904505 02904348 00988177 -broadsword n 1 2 @ ~ 1 0 02904640 -broadtail n 2 1 @ 2 0 14765148 02414043 -broadway n 1 2 @ #p 1 1 09122086 -brobdingnag n 1 2 @ + 1 0 05627083 -broca n 1 1 @ 1 0 10864858 -broca's_aphasia n 1 1 @ 1 0 14098458 -broca's_area n 1 2 @ #p 1 0 05488385 -broca's_center n 1 2 @ #p 1 0 05488385 -broca's_convolution n 1 2 @ #p 1 0 05488385 -broca's_gyrus n 1 2 @ #p 1 0 05488385 -brocade n 1 2 @ + 1 0 02904803 -brocadopa n 1 2 @ ; 1 0 14605132 -broccoli n 2 4 @ #m #p %p 2 0 11876803 07714990 -broccoli_raab n 2 4 @ #m #p %p 2 0 11878101 07715407 -broccoli_rabe n 2 4 @ #m #p %p 2 0 11878101 07715407 -brochette n 1 1 @ 1 0 02903126 -brochure n 1 2 @ ~ 1 0 06413889 -brocket n 2 2 @ #m 2 0 02434712 02431542 -brockhouse n 1 1 @ 1 0 10865140 -brodiaea n 1 3 @ ~ #m 1 0 12445387 -brodiaea_elegans n 1 2 @ #m 1 0 12445628 -brodmann's_area n 1 1 @ 1 0 05488615 -brodmann's_area_17 n 1 2 @ #p 1 0 05494617 -brogan n 1 1 @ 1 0 02904927 -broglie n 1 1 @ 1 0 10865329 -brogue n 1 1 @ 1 0 02904927 -broil n 1 2 @ + 1 0 00246754 -broiler n 2 2 @ + 2 1 02905036 07645242 -broiling n 1 1 @ 1 0 00246754 -broken_arch n 1 1 @ 1 0 02905152 -broken_heart n 1 1 @ 1 0 07534847 -broken_home n 1 1 @ 1 0 07973373 -broken_wind n 1 1 @ 1 0 14265350 -brokenheartedness n 1 3 @ ~ + 1 0 07535010 -broker n 1 4 @ ~ #m + 1 1 09777012 -broker-dealer n 1 1 @ 1 0 09876152 -brokerage n 3 4 @ ~ %m + 3 1 08069878 08057460 02905288 -brokerage_account n 1 2 @ ~ 1 0 13351457 -brokerage_firm n 1 3 @ ~ %m 1 0 08069878 -brokerage_house n 1 1 @ 1 0 02905288 -brolly n 1 2 @ ; 1 0 03415252 -bromberg n 1 2 @ #p 1 0 08983274 -brome n 1 3 @ ~ #m 1 0 12110778 -bromegrass n 1 3 @ ~ #m 1 0 12110778 -bromelia n 1 2 @ #m 1 0 12607717 -bromeliaceae n 1 3 @ #m %m 1 0 12606907 -bromeosin n 1 1 @ 1 0 14987484 -bromic_acid n 1 1 @ 1 0 14785524 -bromide n 2 2 @ ~ 2 0 14785625 07154046 -bromine n 1 3 @ #s + 1 0 14632129 -bromo-seltzer n 1 2 @ ; 1 0 14777188 -bromoform n 1 1 @ 1 0 14620549 -bromophenol_blue n 1 1 @ 1 1 14986719 -bromothymol_blue n 1 1 @ 1 0 14986890 -brompheniramine_maleate n 1 2 @ #s 1 0 02905422 -bromphenol_blue n 1 1 @ 1 0 14986719 -brompton_stock n 1 2 @ #m 1 0 11892817 -bromthymol_blue n 1 1 @ 1 0 14986890 -bromus n 1 3 @ #m %m 1 0 12110630 -bromus_arvensis n 1 1 @ 1 0 12111627 -bromus_inermis n 1 1 @ 1 0 12111043 -bromus_japonicus n 1 1 @ 1 0 12111744 -bromus_secalinus n 1 1 @ 1 0 12111238 -bromus_tectorum n 1 1 @ 1 0 12111399 -bronc n 1 2 @ ~ 1 1 02380745 -bronchial_artery n 1 2 @ #p 1 1 05339047 -bronchial_asthma n 1 3 @ ~ %p 1 0 14145911 -bronchial_pneumonia n 1 2 @ ~ 1 0 14148231 -bronchial_tube n 1 2 @ #p 1 0 05531511 -bronchial_vein n 1 1 @ 1 0 05359695 -bronchiole n 1 3 @ #p + 1 1 05531666 -bronchiolitis n 1 1 @ 1 1 14146459 -bronchitis n 1 4 @ ~ %p + 1 0 14146273 -broncho n 1 2 @ ~ 1 0 02380745 -bronchodilator n 1 2 @ ~ 1 0 02905612 -bronchopneumonia n 1 2 @ ~ 1 0 14148231 -bronchoscope n 1 2 @ + 1 0 02905886 -bronchoscopic_smear n 1 1 @ 1 0 05266486 -bronchospasm n 1 2 @ #p 1 0 00226511 -bronchus n 1 3 @ #p + 1 1 05531511 -bronco n 1 2 @ ~ 1 0 02380745 -bronco_buster n 1 1 @ 1 0 09883630 -bronco_busting n 1 2 @ #p 1 0 00299826 -broncobuster n 1 1 @ 1 0 09883630 -bronislaw_kasper_malinowski n 1 1 @ 1 0 11151579 -bronislaw_malinowski n 1 1 @ 1 0 11151579 -bronte n 3 1 @ 3 0 10865860 10865700 10865567 -bronte_sisters n 1 1 @ 1 0 07989620 -brontosaur n 1 2 @ #m 1 0 01709484 -brontosaurus n 1 2 @ #m 1 0 01709484 -bronx n 1 2 @ #p 1 0 09119989 -bronx-whitestone_bridge n 1 2 @ #p 1 0 02906027 -bronx_cheer n 1 1 @ 1 0 07123870 -bronze n 2 4 @ ~ %s + 2 1 14717275 02906175 -bronze_age n 2 3 @ #p ; 2 0 15231415 15231263 -bronze_medal n 1 1 @ 1 0 02906254 -bronze_star n 1 1 @ 1 0 06708304 -bronze_star_medal n 1 1 @ 1 0 06708304 -bronzed_diabetes n 1 2 @ ~ 1 0 14206929 -brooch n 1 3 @ ~ + 1 0 02906438 -brood n 1 3 @ ~ + 1 1 07990824 -brood_bitch n 1 1 @ 1 0 02083780 -brood_hen n 1 1 @ 1 0 01792955 -brooder n 1 3 @ %p + 1 0 03567066 -brooder_pneumonia n 1 1 @ 1 0 14260349 -brooding n 2 1 @ 2 2 13441812 07533607 -broodmare n 1 1 @ 1 0 02377603 -broody n 1 1 @ 1 0 01792955 -broody_hen n 1 1 @ 1 1 01792955 -brook n 1 2 @ ~ 1 1 09229409 -brook_thistle n 1 1 @ 1 0 11955040 -brook_trout n 2 4 @ #m #p %p 2 0 07794893 02538216 -brooke n 1 1 @ 1 0 10865990 -brooklet n 1 1 @ 1 0 09229641 -brooklime n 2 2 @ #m 2 0 12891093 12890685 -brooklyn n 1 3 @ #p %p 1 1 09120087 -brooklyn_bridge n 1 2 @ #p 1 0 02906578 -brooks n 1 1 @ 1 0 10866090 -brookweed n 2 1 @ 2 0 12096674 12096563 -broom n 3 5 @ ~ #m %p + 3 1 02906734 12520864 12233529 -broom-weed n 1 2 @ #m 1 0 11974888 -broom_beard_grass n 1 1 @ 1 0 12133462 -broom_closet n 1 1 @ 1 0 02906963 -broom_grass n 1 3 @ ~ #m 1 0 12108432 -broom_handle n 1 2 @ #p 1 0 02907082 -broom_palm n 1 2 @ #m 1 0 12597798 -broom_sedge n 1 1 @ 1 0 12108613 -broom_snakeroot n 1 2 @ #m 1 0 11974557 -broom_snakeweed n 1 2 @ #m 1 0 11974557 -broom_tree n 1 2 @ #m 1 0 12530439 -broomcorn n 1 1 @ 1 0 12139196 -broomcorn_millet n 1 1 @ 1 0 12127575 -broomrape_family n 1 2 @ #m 1 0 12874231 -broomstick n 1 2 @ #p 1 0 02907082 -broomweed n 1 2 @ #m 1 0 11974888 -brosme_brosme n 1 2 @ %p 1 0 02525382 -brosmius n 1 2 @ #m 1 0 02525287 -broth n 2 2 @ ~ 2 0 07585208 07584593 -broth_of_a_boy n 1 1 @ 1 1 09876308 -broth_of_a_man n 1 1 @ 1 0 09876308 -brothel n 1 2 @ ~ 1 1 04581595 -brothel_keeper n 1 1 @ 1 0 10279669 -brother n 5 6 ! @ ~ #m + ; 5 2 09876454 09876892 09877951 09877124 09876701 -brother-in-law n 1 1 @ 1 1 09877288 -brotherhood n 4 5 @ ~ #p %m + 4 3 13814336 08075388 07500042 08233056 -brotherly_love n 1 1 @ 1 0 04840405 -brotula n 1 2 @ #m 1 0 02559144 -brotulidae n 1 3 @ #m %m 1 0 02558980 -brougham n 2 1 @ 2 0 02907296 02907194 -brouhaha n 2 1 @ 2 0 07385660 00552568 -broussonetia n 1 3 @ #m %m 1 0 12403862 -broussonetia_papyrifera n 1 2 @ #m 1 0 12403994 -brow n 3 3 @ #p %p 3 3 05602548 05313535 08584787 -brow_ptosis n 1 1 @ 1 0 14559134 -browallia n 1 2 @ #m 1 0 12898774 -brown n 4 5 @ ~ #m #p + 4 1 04971928 10866385 10866217 02907985 -brown-tail_moth n 1 2 @ #m 1 0 02286425 -brown_algae n 1 3 @ ~ #m 1 0 01402600 -brown_ash n 1 1 @ 1 0 12305089 -brown_bat n 1 1 @ 1 0 02146371 -brown_bear n 1 3 @ ~ #m 1 0 02132136 -brown_bells n 1 1 @ 1 0 12453539 -brown_bent n 1 1 @ 1 0 12107002 -brown_betty n 1 1 @ 1 0 07618587 -brown_bread n 2 2 @ ~ 2 0 07682316 07680761 -brown_bullhead n 1 1 @ 1 0 02519472 -brown_butter n 1 1 @ 1 0 07849026 -brown_coal n 1 2 @ ~ 1 0 14815263 -brown_creeper n 1 2 @ #m 1 0 01589718 -brown_cup n 1 2 @ #m 1 0 12968309 -brown_hickory n 1 2 @ #m 1 0 12320627 -brown_hyena n 1 2 @ #m 1 0 02117646 -brown_lacewing n 1 2 @ #m 1 0 02265330 -brown_lemming n 1 2 @ #m 1 0 02345078 -brown_oak n 1 1 @ 1 0 12199790 -brown_onion_sauce n 1 1 @ 1 0 07839864 -brown_pine n 1 2 @ #m 1 0 11652376 -brown_rat n 1 3 @ ~ #m 1 0 02333546 -brown_rice n 1 1 @ 1 0 07804543 -brown_root_rot_fungus n 1 2 @ #m 1 0 13027879 -brown_rot n 1 2 @ ~ 1 0 14278773 -brown_rot_gummosis n 1 1 @ 1 0 14278953 -brown_sauce n 2 2 @ ; 2 0 07836456 07836077 -brown_snail n 1 2 @ #m 1 0 01945143 -brown_soft_scale n 1 2 @ #m 1 0 02249134 -brown_study n 1 1 @ 1 0 05701107 -brown_sugar n 1 2 @ ~ 1 0 07596452 -brown_swiss n 1 1 @ 1 0 02406533 -brown_thrasher n 1 1 @ 1 0 01588002 -brown_thrush n 1 1 @ 1 0 01588002 -brown_trout n 1 4 @ ~ #m %p 1 0 02537319 -brown_university n 1 3 @ #m #p 1 0 02907985 -browne n 2 1 @ 2 0 10866738 10866571 -brownian_motion n 1 1 @ 1 0 11433140 -brownian_movement n 1 1 @ 1 0 11433140 -brownie n 3 3 @ ~ ; 3 0 09877370 09540739 07636271 -brownie_mix n 1 1 @ 1 0 07593972 -browning n 4 1 @ 4 0 10867238 10867064 10866883 00246552 -browning_automatic_rifle n 1 1 @ 1 0 02907391 -browning_machine_gun n 1 1 @ 1 0 02907656 -brownish_yellow n 1 1 @ 1 0 04966428 -brownness n 1 3 @ ~ + 1 0 04971928 -brownout n 1 2 @ ; 1 0 13984082 -brownshirt n 1 3 @ #m ; 1 0 09877443 -brownstone n 2 1 @ 2 0 14785840 02907873 -brownsville n 1 2 @ #p 1 0 09143321 -browntail n 1 2 @ #m 1 0 02286425 -browse n 3 2 @ + 3 0 08437317 06598648 00839023 -browser n 2 3 @ ~ + 2 0 09877587 06571301 -browsing n 2 1 @ 2 0 06598648 00839023 -bruce n 2 1 @ 2 0 10867708 10867473 -bruce_lee n 1 1 @ 1 0 11124300 -brucella n 1 1 @ 1 0 01351170 -brucellosis n 2 1 @ 2 1 14128029 14261508 -bruch n 1 1 @ 1 0 10867933 -bruchidae n 1 3 @ #m %m 1 0 02181863 -bruchus n 1 3 @ #m %m 1 0 02182220 -bruchus_pisorum n 1 2 @ #m 1 0 02182355 -brucine n 1 2 @ #s 1 0 14715189 -bruckenthalia n 1 3 @ #m %m 1 0 12232683 -bruckenthalia_spiculifolia n 1 2 @ #m 1 0 12232851 -bruckner n 1 1 @ 1 0 10868025 -bruegel n 1 1 @ 1 0 10868177 -brueghel n 1 1 @ 1 0 10868177 -bruges n 1 3 @ #m #p 1 0 08851034 -brugmansia n 1 3 @ #m %m 1 0 12899333 -brugmansia_arborea n 1 2 @ #m 1 0 12899537 -brugmansia_sanguinea n 1 1 @ 1 0 12899971 -brugmansia_suaveolens n 1 2 @ #m 1 0 12899752 -bruin n 2 3 @ ~ #m 2 0 02132320 02132136 -bruise n 1 3 @ ~ + 1 1 14288871 -bruiser n 1 2 @ + 1 0 09878702 -brule n 1 1 @ 1 0 09650989 -brumaire n 1 2 @ #p 1 0 15176161 -brummagem n 1 2 @ #p 1 0 08877613 -brummell n 1 1 @ 1 0 10868397 -brummie n 1 1 @ 1 0 09877750 -brummy n 1 1 @ 1 0 09877750 -brunanburh n 1 2 @ ; 1 0 01273081 -brunch n 1 3 @ + ; 1 0 07574923 -brunch_coat n 1 1 @ 1 0 02908123 -brunei n 1 5 @ #m #p %m + 1 0 08896092 -brunei_dollar n 1 1 @ 1 0 13672462 -bruneian n 1 2 @ #m 1 0 09695514 -brunelleschi n 1 1 @ 1 0 10868562 -brunet n 1 1 @ 1 0 09877856 -brunette n 1 1 @ 1 0 09877856 -brunfelsia n 1 3 @ #m %m 1 0 12898959 -brunfelsia_americana n 1 2 @ #m 1 0 12899166 -brunhild n 1 2 @ ; 1 0 09590495 -brunn n 1 2 @ #p 1 0 08758334 -brunnhilde n 1 2 @ ; 1 0 09590495 -bruno n 3 2 @ ; 3 0 11127565 10868980 10868738 -bruno_of_toul n 1 1 @ 1 0 11127565 -bruno_walter n 1 1 @ 1 0 11372799 -brunswick n 3 2 @ #p 3 0 09093072 09077266 08772551 -brunswick_stew n 1 1 @ 1 0 07589543 -brunt n 1 1 @ 1 0 05035712 -brusa n 1 2 @ #p 1 0 09042213 -brush n 9 5 @ ~ #p %p + 9 3 08437515 02908217 07413714 02908605 02157954 00959376 00656386 00256620 00039545 -brush-footed_butterfly n 1 3 @ ~ #m 1 0 02274822 -brush-off n 1 2 @ + 1 0 00203649 -brush-tail_porcupine n 1 2 @ #m 1 0 02347274 -brush-tailed_phalanger n 1 2 @ #m 1 0 01881857 -brush-tailed_porcupine n 1 2 @ #m 1 0 02347274 -brush_cut n 1 1 @ 1 1 05260714 -brush_discharge n 1 1 @ 1 0 11433297 -brush_fire n 1 1 @ 1 1 07303466 -brush_kangaroo n 1 2 @ ~ 1 0 01877812 -brush_turkey n 1 2 @ #m 1 0 01801876 -brush_wolf n 1 2 @ ~ 1 0 02114855 -brushing n 2 1 @ 2 1 00656386 00256620 -brushup n 1 3 @ ~ + 1 0 00897811 -brushwood n 2 2 @ ~ 2 0 14785197 08437515 -brushwork n 1 1 @ 1 0 05643491 -brusqueness n 1 2 @ + 1 0 04915462 -brussels n 1 2 @ #p 1 0 08850450 -brussels_biscuit n 1 1 @ 1 0 07689842 -brussels_carpet n 1 1 @ 1 0 02908773 -brussels_griffon n 1 2 @ ~ 1 0 02112497 -brussels_lace n 1 1 @ 1 0 02908951 -brussels_sprout n 1 2 @ %p 1 0 11876432 -brussels_sprouts n 1 3 @ #p ; 1 0 07715221 -brutalisation n 3 2 @ + 3 0 14574675 00733317 00271879 -brutality n 2 2 @ + 2 2 04830689 00424934 -brutalization n 3 2 @ + 3 0 14574675 00733317 00271879 -brute n 2 6 @ ~ #m %s %p - 2 1 09845589 00015388 -brutus n 1 1 @ 1 0 10869207 -bruxelles n 1 2 @ #p 1 0 08850450 -bruxism n 1 1 @ 1 0 00279534 -brya n 1 2 @ #m 1 0 11748936 -brya_ebenus n 1 2 @ %s 1 0 11749112 -bryaceae n 1 3 @ #m %m 1 0 11540970 -bryales n 1 2 @ #m 1 0 11540000 -bryan n 2 2 @ #p 2 0 10869385 09143549 -bryan_donkin n 1 1 @ 1 0 10939630 -bryanthus n 1 2 @ #m 1 0 12233249 -bryanthus_taxifolius n 1 2 @ #m 1 0 12242850 -bryce_canyon_national_park n 1 2 @ #p 1 0 08603158 -brynhild n 1 2 @ ; 1 0 09590495 -bryonia_alba n 1 1 @ 1 0 12163279 -bryonia_dioica n 1 1 @ 1 0 12163456 -bryony n 1 3 @ ~ #m 1 0 12163035 -bryophyta n 1 4 @ #m %m + 1 0 11536778 -bryophyte n 1 3 @ ~ #m 1 0 11537327 -bryopsida n 1 3 @ #m %m 1 0 11538935 -bryozoa n 1 3 @ #m %m 1 0 02313495 -bryozoan n 1 2 @ #m 1 0 02313709 -brythonic n 1 2 @ ~ 1 0 06961399 -bryum n 1 2 @ #m 1 0 11541111 -bs n 1 1 @ 1 0 06699579 -bsarch n 1 1 @ 1 0 06699685 -bse n 1 1 @ 1 0 14261846 -btu n 1 2 @ #p 1 0 13726947 -bubalus n 1 3 @ #m %m 1 0 02408217 -bubalus_bubalis n 1 3 @ ~ #m 1 0 02408429 -bubalus_mindorensis n 1 2 @ #m 1 0 02409202 -bubble n 4 3 @ ~ + 4 1 09229709 05907251 05896379 02909053 -bubble-jet_printer n 1 1 @ 1 0 02909285 -bubble_and_squeak n 1 2 @ ; 1 0 07863229 -bubble_bath n 1 1 @ 1 0 00257969 -bubble_chamber n 1 1 @ 1 0 02909165 -bubble_dance n 1 1 @ 1 0 00531745 -bubble_gum n 1 1 @ 1 1 07600285 -bubble_gum_dermatitis n 1 1 @ 1 0 14222918 -bubble_jet_printer n 1 1 @ 1 0 02909285 -bubble_pack n 1 1 @ 1 0 02852360 -bubble_shell n 1 2 @ #m 1 0 01952029 -bubblejet n 1 1 @ 1 0 02909285 -bubbler n 2 2 @ + 2 0 03241335 02909408 -bubbliness n 1 2 @ + 1 0 04733347 -bubbly n 1 1 @ 1 0 07893642 -buber n 1 1 @ 1 0 10869683 -bubo n 2 4 @ #m %m + 2 0 14315722 01622230 -bubo_virginianus n 1 1 @ 1 0 01622483 -bubonic_plague n 1 2 @ ~ 1 0 14139015 -bubulcus n 1 3 @ #m %m 1 0 02010144 -bubulcus_ibis n 1 2 @ #m 1 0 02010272 -buccal_artery n 1 2 @ #p 1 0 05339168 -buccal_cavity n 1 2 @ #p 1 0 05302899 -buccaneer n 1 3 @ ~ + 1 0 10435367 -buccaneering n 1 1 @ 1 0 00783527 -buccinator_muscle n 1 2 @ #p 1 0 05294068 -buccinidae n 1 3 @ #m %m 1 0 01947275 -bucconidae n 1 3 @ #m %m 1 0 01842380 -buccula n 1 1 @ 1 0 05599769 -bucephala n 1 3 @ #m %m 1 0 01850035 -bucephala_islandica n 1 1 @ 1 0 01850553 -bucephela_albeola n 1 2 @ #m 1 0 01850192 -bucephela_clangula n 1 3 @ ~ #m 1 0 01850373 -buceros n 1 2 @ #m 1 0 01829288 -bucerotidae n 1 3 @ #m %m 1 0 01829143 -buchanan n 1 1 @ 1 0 10869931 -bucharest n 1 2 @ #p 1 0 08814474 -bucharesti n 1 2 @ #p 1 0 08814474 -buchenwald n 1 2 @ #p 1 0 02909543 -buchloe n 1 3 @ #m %m 1 0 12112488 -buchloe_dactyloides n 1 2 @ #m 1 0 12112609 -buchner n 1 1 @ 1 0 10870072 -buck n 5 4 @ ~ + ; 5 1 04524142 13395897 10870235 04140631 01888264 -buck's_fizz n 1 1 @ 1 0 07930315 -buck-and-wing n 1 1 @ 1 0 00528298 -buck_fever n 1 1 @ 1 0 07511524 -buck_private n 1 1 @ 1 0 10476467 -buck_sergeant n 1 1 @ 1 0 09777870 -buckaroo n 1 1 @ 1 0 09973209 -buckbean n 1 2 @ #m 1 0 12484784 -buckbean_family n 1 3 @ #m %m 1 0 12484413 -buckboard n 1 1 @ 1 1 02909706 -buckeroo n 1 1 @ 1 0 09973209 -bucket n 2 4 @ ~ #p + 2 1 02909870 13765749 -bucket_seat n 1 1 @ 1 0 02910145 -bucket_shop n 2 1 @ 2 0 08070130 02910241 -bucketful n 1 1 @ 1 0 13765749 -buckeye n 3 3 @ ~ #m 3 0 12768682 12768369 09745041 -buckeye_state n 1 3 @ #p %p 1 0 09130076 -bucking_bronco n 1 1 @ 1 0 02380875 -buckingham_palace n 1 2 @ #p 1 0 08875843 -buckle n 2 4 @ ~ %p + 2 1 02910353 13885700 -buckler n 1 2 @ ~ 1 0 04192698 -buckler_fern n 1 3 @ ~ #m 1 0 13192625 -buckler_mustard n 1 2 @ #m 1 0 11874878 -buckleya n 1 2 @ #m 1 0 12735817 -buckleya_distichophylla n 1 2 @ #m 1 0 12735817 -buckminster_fuller n 1 1 @ 1 0 10985440 -buckminsterfullerene n 1 1 @ 1 0 14622350 -buckram n 1 2 @ + 1 0 02910542 -bucksaw n 1 1 @ 1 0 02910701 -buckshot n 1 2 @ #p 1 0 02843777 -buckskin n 2 1 @ 2 1 02381004 14760555 -buckskins n 1 2 @ ; 1 0 02910864 -buckthorn n 3 4 @ ~ #m %p 3 0 13141141 12772753 12599185 -buckthorn_berry n 1 2 @ #p 1 0 13141415 -buckthorn_family n 1 3 @ #m %m 1 0 13140699 -bucktooth n 1 1 @ 1 0 05306390 -buckwheat n 2 4 @ #m #p %p 2 0 12601494 07803310 -buckwheat_cake n 1 1 @ 1 0 07640653 -buckwheat_family n 1 3 @ #m %m 1 0 12600574 -buckwheat_tree n 1 2 @ #m 1 0 12751172 -buckyball n 1 1 @ 1 0 14622350 -bucolic n 2 2 @ ~ 2 0 10410668 06379439 -bucuresti n 1 2 @ #p 1 0 08814474 -bud n 2 3 @ ~ + 2 2 11674914 13165086 -bud_brush n 1 2 @ #m 1 0 11931135 -bud_sagebrush n 1 2 @ #m 1 0 11931135 -budapest n 1 2 @ #p 1 0 08952423 -buddha n 2 1 @ 2 1 09532214 09532942 -buddhism n 2 5 @ ~ %m + - 2 0 08098708 06240244 -buddhist n 1 4 @ ~ #m + 1 1 09683757 -budding n 1 1 @ 1 0 13441959 -buddleia n 1 2 @ #m 1 0 12485653 -buddy n 1 2 @ ~ 1 1 09877951 -buddy_holly n 1 1 @ 1 0 11056654 -buddy_system n 1 1 @ 1 0 00389763 -budge n 1 1 @ 1 0 10870440 -budgereegah n 1 2 @ #m 1 0 01821869 -budgerigar n 1 2 @ #m 1 0 01821869 -budgerygah n 1 2 @ #m 1 0 01821869 -budget n 2 3 @ ~ + 2 2 13421832 13421462 -budget_cut n 1 1 @ 1 0 00352585 -budget_deficit n 1 2 @ ~ 1 0 13396485 -budget_items n 1 3 @ #p ; 1 0 13277179 -budgie n 1 2 @ #m 1 0 01821869 -budorcas n 1 3 @ #m %m 1 0 02419515 -budorcas_taxicolor n 1 2 @ #m 1 0 02419634 -buena_vista n 1 3 @ #p ; 1 0 01273230 -buenos_aires n 1 2 @ #p 1 0 08712876 -buff n 5 4 @ ~ #m + 5 1 10077593 14760696 05239589 04973957 02910964 -buffalo n 4 5 @ ~ #m #p %p 4 1 02410702 09118505 07663492 02407959 -buffalo_bill n 1 1 @ 1 0 10904270 -buffalo_bill's_wild_west_show n 1 1 @ 1 0 00523263 -buffalo_bill_cody n 1 1 @ 1 0 10904270 -buffalo_bur n 1 1 @ 1 0 12897341 -buffalo_carpet_beetle n 1 1 @ 1 0 02170599 -buffalo_chip n 1 1 @ 1 0 09243906 -buffalo_clover n 2 1 @ 2 0 12547215 11753562 -buffalo_fish n 1 3 @ ~ %p 1 0 01445429 -buffalo_gnat n 1 2 @ #m 1 0 02205673 -buffalo_gourd n 1 3 @ #m %p 1 0 12162425 -buffalo_grass n 2 2 @ #m 2 0 12141167 12112609 -buffalo_indian n 1 2 @ ~ 1 0 09649554 -buffalo_nut n 2 4 @ #m #p %p 2 0 12737251 12736999 -buffalo_wing n 1 1 @ 1 0 07648913 -buffalofish n 2 4 @ ~ #p %p 2 0 07779263 01445429 -buffel_grass n 1 1 @ 1 0 12114010 -buffer n 7 7 @ ~ #s #p %p + ; 7 1 14785941 08688424 03328201 02911485 02911332 02911158 02910964 -buffer_country n 1 1 @ 1 0 08517327 -buffer_solution n 1 3 @ ~ %s 1 0 14786110 -buffer_state n 1 1 @ 1 0 08517327 -buffer_storage n 1 4 @ ~ #p ; 1 0 02911485 -buffer_store n 1 4 @ ~ #p ; 1 0 02911485 -buffer_zone n 1 1 @ 1 0 08688424 -buffered_aspirin n 1 1 @ 1 0 02911890 -bufferin n 1 2 @ ; 1 0 02911890 -buffet n 3 4 @ ~ #p %p 3 1 02912065 07576182 04247736 -buffet_car n 1 1 @ 1 0 03200357 -buffeting n 1 1 @ 1 0 07410526 -buffing_wheel n 1 2 @ #p 1 0 02912319 -bufflehead n 1 2 @ #m 1 0 01850192 -buffoon n 2 2 @ ~ 2 1 09931165 09930876 -buffoonery n 1 2 @ ~ 1 0 00513401 -bufo n 1 2 @ #m 1 0 01646292 -bufo_americanus n 1 1 @ 1 0 01646802 -bufo_boreas n 1 1 @ 1 0 01647640 -bufo_bufo n 1 1 @ 1 0 01646555 -bufo_calamita n 1 1 @ 1 0 01646648 -bufo_canorus n 1 1 @ 1 0 01647180 -bufo_debilis n 1 1 @ 1 0 01647033 -bufo_marinus n 1 1 @ 1 0 01646388 -bufo_microscaphus n 1 1 @ 1 0 01647466 -bufo_speciosus n 1 1 @ 1 0 01647303 -bufo_viridis n 1 1 @ 1 0 01646902 -bufonidae n 1 3 @ #m %m 1 0 01645634 -bug n 5 4 @ ~ #m + 5 1 02236355 14464675 02912440 02236896 01384491 -bug-hunter n 1 2 @ ~ 1 0 10059904 -bugaboo n 2 1 @ 2 0 09488117 05832621 -buganda n 1 3 @ #p %p 1 0 09043411 -bugbane n 2 3 @ ~ #m 2 0 12464649 11728530 -bugbear n 2 1 @ 2 0 09488117 05811662 -bugger n 1 2 @ + 1 0 10621514 -bugger_all n 1 2 @ ; 1 0 13740765 -buggery n 1 2 @ + 1 0 00849294 -bugginess n 1 2 @ + 1 0 14472526 -buggy n 1 1 @ 1 1 02912557 -buggy_whip n 1 1 @ 1 0 02912673 -bugle n 3 4 @ ~ #m + 3 1 02912894 12840749 02913035 -bugle_call n 1 2 @ ~ 1 0 06804199 -bugler n 1 2 @ + 1 1 09878179 -bugleweed n 2 3 @ ~ #m 2 0 12852234 12840749 -bugloss n 2 2 @ #m 2 0 12817694 12003167 -bugologist n 1 2 @ ~ 1 0 10059904 -bugology n 1 3 @ ~ - 1 0 06072275 -buhl n 1 1 @ 1 0 02878628 -build n 2 3 @ ~ #p 2 1 04998530 05217168 -builder n 3 3 @ ~ + 3 1 15097209 09878559 09878275 -building n 4 5 @ ~ %p + - 4 3 02913152 00911048 01104637 07973241 -building_block n 2 3 @ ~ %p 2 0 09465459 02914813 -building_code n 1 2 @ ; 1 0 06668432 -building_complex n 1 2 @ ~ 1 0 02914991 -building_department n 1 1 @ 1 0 08119226 -building_material n 1 2 @ ~ 1 0 14786479 -building_permit n 1 1 @ 1 0 06550046 -building_site n 1 2 @ ~ 1 0 08676622 -building_society n 1 1 @ 1 0 08422930 -building_supply_house n 1 1 @ 1 1 02915199 -building_supply_store n 1 1 @ 1 0 02915199 -buildup n 3 3 @ ~ + 3 1 00372226 13442168 07247451 -built-in_bed n 1 1 @ 1 0 02915379 -built-soap_powder n 1 1 @ 1 0 04254535 -built_in_bed n 1 2 @ ~ 1 0 02831724 -bujumbura n 1 2 @ #p 1 0 08716517 -bukharin n 1 1 @ 1 0 10870691 -bulawayo n 1 2 @ #p 1 0 09167652 -bulb n 6 5 @ ~ #p %p + 6 3 13134059 03665924 02915480 13864035 05495172 05227079 -bulbar_conjunctiva n 1 1 @ 1 0 05315382 -bulbil n 1 1 @ 1 0 13134531 -bulblet n 1 1 @ 1 0 13134531 -bulblet_bladder_fern n 1 1 @ 1 0 13196369 -bulblet_fern n 1 1 @ 1 0 13196369 -bulbourethral_gland n 1 2 @ #p 1 0 05523629 -bulbous_iris n 1 2 @ #m 1 0 12412850 -bulbous_plant n 1 2 @ ~ 1 0 13134302 -bulbul n 1 1 @ 1 0 01560419 -bulgaria n 1 7 @ #m #p %m %p + - 1 1 08714132 -bulgarian n 2 3 @ #m + 2 0 09695620 06945569 -bulgarian_capital n 1 2 @ #p 1 0 08714458 -bulgarian_monetary_unit n 1 2 @ ~ 1 0 13685678 -bulge n 1 3 @ ~ + 1 1 13894434 -bulghur n 1 3 @ #p ; 1 0 07803408 -bulginess n 1 3 @ ~ + 1 0 05070453 -bulgur n 1 3 @ #p ; 1 0 07803408 -bulgur_pilaf n 1 1 @ 1 0 07873679 -bulgur_wheat n 1 3 @ #p ; 1 0 07803408 -bulima_nervosa n 1 1 @ 1 0 14056685 -bulimarexia n 1 1 @ 1 0 14056685 -bulimia n 2 2 @ + 2 0 14057001 14039828 -bulimic n 1 2 @ + 1 0 09836057 -bulk n 3 4 @ ~ = + 3 2 05122557 05099389 05025413 -bulk_mail n 1 1 @ 1 0 06266077 -bulk_modulus n 1 1 @ 1 0 13588233 -bulkhead n 1 2 @ #p 1 0 02915675 -bulkiness n 1 2 @ + 1 0 05104421 -bull n 11 7 ! @ ~ #p %p + ; 11 4 02403325 09878702 06611376 00075790 09879144 09878921 09752381 08686332 08517449 06726761 01887623 -bull's-eye n 1 1 @ 1 0 03162297 -bull's_eye n 3 3 @ #p ; 3 3 00187144 08517449 00064789 -bull-snake n 1 3 @ ~ #m 1 0 01733757 -bull_bay n 1 1 @ 1 0 11710136 -bull_fiddle n 1 1 @ 1 0 02803934 -bull_market n 1 1 @ 1 0 08073243 -bull_mastiff n 1 1 @ 1 0 02108422 -bull_moose_party n 1 1 @ 1 0 08262695 -bull_neck n 1 1 @ 1 0 05547313 -bull_nettle n 1 1 @ 1 0 12893993 -bull_nose n 1 1 @ 1 0 14262045 -bull_pine n 1 1 @ 1 0 11614420 -bull_run n 2 3 @ #p ; 2 0 09151800 01273491 -bull_session n 1 2 @ ; 1 0 07142924 -bull_shark n 1 2 @ #m 1 0 01489501 -bull_snake n 1 3 @ ~ #m 1 0 01733757 -bull_terrier n 1 2 @ ~ 1 0 02093056 -bull_thistle n 1 1 @ 1 0 11955153 -bull_tongue n 1 1 @ 1 0 02918204 -bulla n 2 3 @ ~ ; 2 0 05517837 02915807 -bullace n 1 2 @ ~ 1 0 12639736 -bullace_grape n 1 3 @ ~ #p 1 0 07759424 -bullbat n 1 2 @ #m 1 0 01836384 -bullbrier n 1 2 @ #m 1 0 12470512 -bulldog n 1 3 @ ~ + 1 0 02108672 -bulldog_ant n 1 2 @ #m 1 0 02222321 -bulldog_clip n 1 3 @ #p %p 1 0 02915904 -bulldog_wrench n 1 1 @ 1 0 02916065 -bulldozer n 1 3 @ ~ + 1 0 02916179 -bullet n 3 4 @ ~ #p ; 3 1 02916350 02917067 00108181 -bullet_fingerprinting n 1 1 @ 1 0 06423994 -bullet_hole n 1 1 @ 1 1 09229941 -bullet_train n 1 1 @ 1 0 02917067 -bullethead n 1 1 @ 1 1 05539370 -bulletin n 1 3 @ ~ + 1 1 06682290 -bulletin_board n 2 3 @ ~ ; 2 0 02916684 02916538 -bulletin_board_system n 1 2 @ ; 1 0 02916684 -bulletproof_vest n 1 1 @ 1 0 02916936 -bullfight n 1 2 @ ~ 1 0 02917163 -bullfighter n 1 2 @ ~ 1 0 09836160 -bullfighting n 1 2 @ %p 1 0 00452034 -bullfinch n 2 2 @ #m 2 0 10870897 01534155 -bullfrog n 1 2 @ #m 1 0 01641577 -bullhead n 2 3 @ ~ #m 2 0 02645538 02519148 -bullhead_catfish n 1 3 @ ~ #m 1 0 02519148 -bullheadedness n 1 3 @ ~ + 1 0 04863074 -bullhorn n 1 1 @ 1 0 02917377 -bullion n 2 1 @ 2 0 13371682 02917521 -bullnose n 1 1 @ 1 0 02917607 -bullnosed_plane n 1 1 @ 1 0 02917607 -bullock n 2 2 @ + 2 0 02403820 02403231 -bullock's_heart n 2 3 @ #p %p 2 0 11694866 07761461 -bullock's_heart_tree n 1 2 @ %p 1 0 11694866 -bullock's_oriole n 1 1 @ 1 0 01572654 -bullock_block n 1 1 @ 1 0 02864878 -bullock_heart n 1 2 @ %p 1 0 11694866 -bullpen n 2 2 @ #p 2 0 02917964 02917742 -bullring n 1 1 @ 1 0 02918112 -bullrush n 2 2 @ #m 2 0 12155773 11743772 -bullshit n 1 3 @ + ; 1 0 06611376 -bullshot n 1 2 @ %s 1 0 07913644 -bullterrier n 1 2 @ ~ 1 0 02093056 -bully n 2 3 @ ~ + 2 1 09879297 09879552 -bully_beef n 1 1 @ 1 0 07664266 -bully_pulpit n 1 1 @ 1 0 00598439 -bully_tree n 1 2 @ %s 1 0 12774299 -bullyboy n 1 1 @ 1 1 09879616 -bullying n 1 2 @ ~ 1 0 01222477 -bulnesia n 1 3 @ #m %m 1 0 12721357 -bulnesia_sarmienti n 1 3 @ #m %s 1 0 12721477 -bulrush n 2 2 @ #m 2 0 12155773 11743772 -bulrush_millet n 1 2 @ #m 1 0 12128825 -bultmann n 1 1 @ 1 0 10871129 -bulwark n 3 4 @ ~ #p + 3 0 04051825 02918330 02894605 -bulwer-lytton n 1 1 @ 1 0 11146494 -bum n 4 4 @ ~ #p + 4 2 10539715 10723300 10197967 05559256 -bumblebee n 1 2 @ #m 1 1 02209624 -bumbler n 1 2 @ + 1 0 09879744 -bumboat n 1 1 @ 1 0 02918455 -bumelia n 1 3 @ #m %m 1 0 12772557 -bumelia_lanuginosa n 1 1 @ 1 0 12773142 -bumelia_lycioides n 1 1 @ 1 0 12772908 -bumf n 1 2 @ ; 1 0 06598244 -bummer n 2 1 @ 2 0 14406900 14311709 -bump n 3 3 @ ~ + 3 0 14289504 13894434 07338681 -bumper n 2 4 @ #p %p + 2 0 02918831 02918595 -bumper_car n 1 1 @ 1 0 02918964 -bumper_guard n 1 2 @ #p 1 0 02919148 -bumper_jack n 1 1 @ 1 0 02919308 -bumph n 1 2 @ ; 1 0 06598244 -bumpiness n 1 2 @ + 1 0 04949681 -bumpkin n 1 2 @ + 1 0 10804102 -bumptiousness n 1 2 @ + 1 0 05167412 -bun n 1 2 @ ~ 1 0 07680932 -bun-fight n 1 2 @ ; 1 0 07448232 -buna n 1 2 @ %s 1 0 15007803 -buna_rubber n 1 2 @ %s 1 0 15007803 -bunce n 1 1 @ 1 0 07477587 -bunch n 3 3 @ ~ + 3 3 07959943 08273843 07954731 -bunch_grass n 1 1 @ 1 0 12103476 -bunchberry n 1 1 @ 1 0 12948251 -bunche n 1 1 @ 1 0 10871270 -bunchgrass n 1 1 @ 1 0 12103476 -bunco n 1 3 @ ~ + 1 0 00779248 -bunco_game n 1 2 @ ~ 1 0 00779248 -buncombe n 1 2 @ ~ 1 0 06611681 -bundesbank n 1 1 @ 1 0 08352134 -bundle n 3 4 @ ~ + ; 3 2 08008017 02919414 13250680 -bundle_of_his n 1 1 @ 1 0 05390479 -bundling n 3 1 @ 3 0 07188979 00322391 00113954 -bunfight n 1 2 @ ; 1 0 07448232 -bung n 1 3 @ #p + 1 0 02919648 -bungalow n 1 1 @ 1 0 02919792 -bungarus n 1 3 @ #m %m 1 0 01750920 -bungarus_fasciatus n 1 1 @ 1 0 01751215 -bungee n 1 1 @ 1 0 02919890 -bungee_cord n 1 1 @ 1 0 02919890 -bunghole n 2 2 @ ; 2 0 05538215 02919976 -bungle n 1 3 @ ~ + 1 0 00074790 -bungler n 1 2 @ + 1 0 09879744 -bunion n 1 1 @ 1 0 14316352 -bunji-bunji n 1 1 @ 1 0 12698774 -bunk n 6 3 @ ~ + 6 3 02920164 02831724 02920083 06611681 06607339 02920259 -bunk_bed n 1 1 @ 1 0 02920259 -bunker n 3 4 @ ~ #p + 3 1 02920369 02920658 02920503 -bunker_buster n 1 1 @ 1 0 02920785 -bunker_hill n 1 3 @ #p ; 1 0 01273735 -bunker_mentality n 1 1 @ 1 0 04843675 -bunkmate n 1 1 @ 1 1 09880075 -bunko n 1 2 @ ~ 1 0 00779248 -bunko_game n 1 2 @ ~ 1 0 00779248 -bunkum n 1 2 @ ~ 1 0 06611681 -bunny n 2 2 @ ; 2 0 09880189 02324587 -bunny_girl n 1 1 @ 1 0 09880189 -bunny_hug n 1 1 @ 1 0 00536249 -bunny_rabbit n 1 2 @ ; 1 0 02324587 -buns n 1 2 @ #p 1 0 05559256 -bunsen n 2 1 @ 2 0 10871424 02921029 -bunsen_burner n 1 1 @ 1 0 02921029 -bunt n 4 4 @ #m + ; 4 1 00128477 14284026 13068434 13068255 -buntal n 1 2 @ #p 1 0 14867690 -bunter n 1 2 @ + 1 1 09880338 -bunting n 2 2 @ ~ 2 0 02921195 01537134 -bunuel n 1 1 @ 1 0 10871655 -bunya_bunya n 2 3 @ #p %p 2 0 11646694 07737594 -bunya_bunya_tree n 1 2 @ %p 1 0 11646694 -bunyan n 2 1 @ 2 0 10871756 09591155 -bunyaviridae n 1 2 @ #m 1 0 01331345 -bunyavirus n 1 1 @ 1 0 01331522 -buoy n 1 3 @ ~ + 1 0 07266178 -buoyancy n 4 2 @ + 4 0 07530723 05028963 04944412 04633959 -buphthalmum n 1 3 @ #m %m 1 0 11942366 -buphthalmum_salicifolium n 1 1 @ 1 0 11942659 -bur n 2 4 @ ~ #p + 2 0 12036368 02921292 -bur-reed_family n 1 3 @ #m %m 1 0 12156308 -bur_grass n 1 3 @ ~ #m 1 0 12113657 -bur_marigold n 1 4 @ ~ #m %p 1 0 11940006 -bur_oak n 1 1 @ 1 0 12274358 -bur_reed n 1 2 @ #m 1 0 12156679 -bura n 1 1 @ 1 0 06983895 -burbage n 1 1 @ 1 0 10871926 -burbank n 1 1 @ 1 0 10872105 -burberry n 1 1 @ 1 0 02921406 -burbot n 1 1 @ 1 0 02523427 -burchell's_zebra n 1 1 @ 1 0 02391234 -burden n 4 3 @ ~ + 4 2 05832745 03679986 06604066 05920159 -burden_of_proof n 1 1 @ 1 0 01130905 -burdensomeness n 1 2 @ + 1 0 04711031 -burdock n 1 3 @ ~ #m 1 0 11924445 -bureau n 2 3 @ ~ %p 2 2 08337324 03015254 -bureau_de_change n 1 2 @ ; 1 0 08002125 -bureau_of_alcohol_tobacco_and_firearms n 1 2 @ #p 1 0 08140219 -bureau_of_customs n 1 2 @ #p 1 0 08142972 -bureau_of_diplomatic_security n 1 2 @ #p 1 0 08138259 -bureau_of_engraving_and_printing n 1 2 @ #p 1 0 08143163 -bureau_of_intelligence_and_research n 1 3 @ #m #p 1 0 08138686 -bureau_of_justice_assistance n 1 3 @ #p ; 1 0 08135770 -bureau_of_justice_statistics n 1 2 @ #p 1 0 08136027 -bureau_of_the_census n 1 2 @ #p 1 0 08129621 -bureaucracy n 3 4 @ ~ %m + 3 1 08456727 08051565 08009659 -bureaucrat n 1 2 @ ~ 1 0 09880427 -bureaucratic_procedure n 1 1 @ 1 0 01025563 -bureaucratism n 1 3 @ ~ %m 1 0 08456727 -buret n 1 1 @ 1 0 02921592 -burette n 1 1 @ 1 0 02921592 -burg n 1 1 @ 1 0 08671168 -burger n 2 3 @ ~ %p 2 0 10872287 07697100 -burgess n 2 1 @ 2 0 10872505 09880646 -burgh n 1 1 @ 1 0 08540193 -burgher n 2 3 @ ~ #m 2 0 09880646 09869830 -burglar n 1 3 @ ~ + 1 1 09880741 -burglar_alarm n 2 1 @ 2 0 06803478 02921756 -burglary n 1 3 @ ~ + 1 1 00785045 -burgomaster n 1 1 @ 1 0 09880881 -burgoo n 3 1 @ 3 0 07874995 07589872 07589724 -burgoyne n 1 1 @ 1 0 10872624 -burgrass n 1 3 @ ~ #m 1 0 12113657 -burgrave n 2 1 @ 2 0 09881133 09881009 -burgundy n 3 3 @ ~ #p 3 0 08941057 07893891 04963905 -burgundy_sauce n 1 1 @ 1 0 07835921 -burgundy_wine n 1 2 @ ~ 1 0 07893891 -burhinidae n 1 3 @ #m %m 1 0 02039942 -burhinus n 1 3 @ #m %m 1 0 02040113 -burhinus_oedicnemus n 1 2 @ #m 1 0 02040266 -burial n 2 3 @ ~ + 2 1 07451687 01050627 -burial_chamber n 1 2 @ ~ 1 0 02921884 -burial_garment n 1 2 @ ~ 1 0 02922159 -burial_ground n 1 2 @ ~ 1 0 08521623 -burial_mound n 1 2 @ ; 1 0 02922292 -burial_site n 1 2 @ ~ 1 0 08521623 -burial_vault n 1 2 @ ~ 1 0 04523690 -burin n 1 1 @ 1 0 02922461 -burk n 1 1 @ 1 0 10872839 -burka n 1 1 @ 1 0 02922578 -burke n 2 1 @ 2 0 10873059 10872839 -burkina_faso n 1 1 @ 1 0 08896440 -burkina_faso_franc n 1 2 @ %p 1 0 13679038 -burl n 3 5 @ #s #p %s + 3 0 13166191 13166044 04948905 -burlap n 1 1 @ 1 0 02922798 -burlap_bag n 1 1 @ 1 0 03469903 -burlesque n 2 2 @ + 2 0 07017999 06780309 -burlington n 1 3 @ #p %p 1 0 09148662 -burma n 1 6 @ #m #p %m %p - 1 1 08715390 -burma_padauk n 1 2 @ #m 1 0 12565730 -burmannia n 1 2 @ #m 1 0 12087408 -burmanniaceae n 1 3 @ #m %m 1 0 12087207 -burmeisteria n 1 3 @ #m %m 1 0 02456505 -burmeisteria_retusa n 1 2 @ #m 1 0 02456645 -burmese n 2 3 @ #m + 2 0 09695747 06932435 -burmese-yi n 1 2 @ ~ 1 0 06932265 -burmese_cat n 1 1 @ 1 0 02123917 -burmese_rosewood n 1 2 @ #m 1 0 12565730 -burn n 5 3 @ ~ + 5 2 14325437 14290534 14289590 04694090 00403911 -burn_bag n 1 1 @ 1 0 02922877 -burn_center n 1 2 @ #p 1 0 02922996 -burn_mark n 1 2 @ ~ 1 0 04694090 -burn_plant n 1 1 @ 1 0 12437047 -burnability n 1 2 @ ~ 1 0 04712405 -burner n 2 3 @ ~ + 2 1 02923129 02923331 -burnet_bloodwort n 1 3 @ #m %p 1 0 12637485 -burnett n 1 1 @ 1 0 10873303 -burnham n 1 1 @ 1 0 10873505 -burning n 6 2 @ ~ 6 1 00378069 14325437 13450206 01165112 01164618 00422391 -burning_at_the_stake n 1 2 @ ~ 1 0 01164618 -burning_bush n 4 3 @ #m ; 4 0 13118398 12749679 12712626 11831874 -burnish n 1 3 @ ~ + 1 0 04955160 -burnoose n 1 1 @ 1 0 02923535 -burnous n 1 1 @ 1 0 02923535 -burnouse n 1 1 @ 1 0 02923535 -burns n 2 1 @ 2 0 10873783 10873679 -burnside n 2 1 @ 2 0 10873937 05262802 -burnt_lime n 1 2 @ %s 1 0 14789885 -burnt_sienna n 2 2 @ ~ 2 1 04973386 14843767 -burnt_umber n 2 1 @ 2 0 15083611 04972451 -burnup n 2 2 @ ; 2 0 07459642 00356516 -burp n 1 2 @ + 1 0 00117578 -burp_gun n 1 1 @ 1 0 02923682 -burping n 1 1 @ 1 0 00117578 -burqa n 1 1 @ 1 0 02922578 -burr n 5 4 @ ~ #p + 5 2 12036368 02923802 10874162 02923915 02921292 -burr_drill n 1 2 @ %p 1 0 03176238 -burr_marigold n 1 4 @ ~ #m %p 1 0 11940006 -burr_oak n 1 1 @ 1 0 12274358 -burrawong n 1 2 @ #m 1 0 11604046 -burrfish n 1 2 @ #m 1 0 02656301 -burrhus_frederic_skinner n 1 1 @ 1 0 11304461 -burrill_bernard_crohn n 1 1 @ 1 0 10915862 -burrito n 1 3 @ ~ ; 1 0 07880968 -burro n 1 1 @ 1 0 02389779 -burro_deer n 1 3 @ ~ #m 1 0 02432511 -burroughs n 3 1 @ 3 0 10874706 10874540 10874393 -burrow n 1 3 @ ~ + 1 1 09230041 -bursa n 2 3 @ #p + 2 0 09042213 05516554 -bursa_omentalis n 1 2 @ #p 1 0 05428136 -bursar n 1 1 @ 1 0 09881265 -bursary n 1 1 @ 1 0 13358151 -bursera n 1 3 @ #m %m 1 0 12691189 -bursera_microphylla n 1 2 @ #m 1 0 12691428 -bursera_simaruba n 1 2 @ #m 1 0 12691661 -burseraceae n 1 3 @ #m %m 1 0 12690388 -bursitis n 1 2 @ ~ 1 1 14261384 -burst n 4 3 @ ~ + 4 3 00377364 00988320 00555325 07434942 -burster n 1 3 @ ~ + 1 0 03008275 -bursting_charge n 1 2 @ ~ 1 0 03008275 -bursting_explosive n 1 1 @ 1 0 03212247 -burt n 1 1 @ 1 0 10874921 -burthen n 1 2 @ + 1 0 02924023 -burton n 3 1 @ 3 0 10875249 10875107 07889990 -burundi n 1 5 @ #p %m %p + 1 0 08716219 -burundi_franc n 1 2 @ %p 1 0 13677109 -burundian n 1 2 @ #m 1 0 09695871 -burunduki n 1 1 @ 1 0 02360480 -burweed_marsh_elder n 1 1 @ 1 0 11985321 -burying n 1 2 @ ~ 1 0 01050627 -burying_ground n 1 2 @ ~ 1 0 08521623 -bus n 4 7 @ ~ #m #p %p + - 4 1 02924116 05730591 02924713 02924554 -bus_company n 1 1 @ 1 1 08186761 -bus_depot n 1 1 @ 1 0 02926288 -bus_driver n 1 1 @ 1 0 09883362 -bus_fare n 1 1 @ 1 0 13308432 -bus_lane n 1 1 @ 1 0 02925808 -bus_line n 1 2 @ %p 1 1 02925901 -bus_route n 1 2 @ %p 1 0 08517554 -bus_service n 1 1 @ 1 0 08186761 -bus_station n 1 1 @ 1 0 02926288 -bus_stop n 1 2 @ #p 1 1 08517676 -bus_terminal n 1 1 @ 1 0 02926288 -bus_ticket n 1 1 @ 1 0 06519846 -bus_topology n 1 1 @ 1 0 05730591 -bus_traffic n 1 1 @ 1 0 08426298 -busbar n 1 2 @ #p 1 0 02924713 -busboy n 1 1 @ 1 1 09881358 -busby n 1 1 @ 1 0 02817516 -bush n 7 5 @ ~ #m #p + 7 3 13112664 08505018 08438223 10875910 10875681 10875468 05263587 -bush_administration n 2 1 @ 2 0 08165866 08165650 -bush_baby n 1 2 @ #m 1 0 02499808 -bush_bean n 1 2 @ ~ 1 0 12556533 -bush_clover n 1 3 @ ~ #m 1 0 12542910 -bush_hibiscus n 1 2 @ #m 1 0 12185859 -bush_honeysuckle n 3 2 @ #m 3 0 12676940 12672289 12672083 -bush_jacket n 1 1 @ 1 1 02925385 -bush_lawyer n 1 1 @ 1 0 12653436 -bush_league n 1 3 @ %m ; 1 0 08231678 -bush_leaguer n 1 2 @ #m 1 0 10321340 -bush_nasturtium n 1 1 @ 1 0 12720200 -bush_pea n 1 3 @ ~ #m 1 0 12573256 -bush_poppy n 1 2 @ #m 1 0 11905035 -bush_shrike n 1 3 @ ~ #m 1 0 01600085 -bush_tit n 1 2 @ #m 1 0 01593028 -bush_vetch n 1 1 @ 1 0 12576695 -bush_violet n 1 2 @ #m 1 0 12898774 -bush_willow n 2 2 @ #m 2 0 12324558 12324388 -bushbaby n 1 2 @ #m 1 0 02499808 -bushbuck n 1 2 @ #m 1 0 02425228 -bushel n 2 3 @ #p %p 2 1 13620871 13622591 -bushel_basket n 1 1 @ 1 0 02925009 -bushido n 1 1 @ 1 0 06667625 -bushing n 2 2 @ + 2 0 02925250 02925107 -bushman n 2 1 @ 2 0 09881613 09881519 -bushman's_poison n 1 2 @ #m 1 0 11768816 -bushnell n 1 1 @ 1 0 10876160 -bushtit n 1 2 @ #m 1 0 01593028 -bushwhacker n 2 2 @ + 2 1 10176357 09881748 -bushy_aster n 1 1 @ 1 0 11933546 -bushytail_woodrat n 1 3 @ ~ #m 1 0 02339922 -business n 9 7 @ ~ #p %m %p ; - 9 7 08061042 01094725 00582388 05833022 05983801 01096245 07966927 08401554 00550341 -business_activity n 1 3 @ ~ #p 1 1 01095753 -business_address n 1 1 @ 1 0 08559922 -business_agent n 1 2 @ ~ 1 1 09777975 -business_card n 1 1 @ 1 0 06425404 -business_college n 1 1 @ 1 0 08281682 -business_community n 1 1 @ 1 0 08113073 -business_concern n 1 5 @ ~ %m ; - 1 1 08061042 -business_cycle n 1 1 @ 1 0 07444100 -business_data_processing n 1 1 @ 1 0 13427633 -business_deal n 1 2 @ ~ 1 0 01110274 -business_deduction n 1 2 @ ~ 1 0 13310858 -business_department n 1 2 @ ~ 1 0 08118039 -business_district n 1 2 @ ~ 1 1 08539072 -business_editor n 1 1 @ 1 0 09881895 -business_enterprise n 1 5 @ ~ #p %p - 1 1 01094725 -business_establishment n 1 2 @ ~ 1 0 03953020 -business_executive n 1 2 @ ~ 1 1 09966255 -business_expense n 1 2 @ ~ 1 0 13276330 -business_firm n 1 2 @ ~ 1 1 08059870 -business_index n 1 1 @ 1 0 06640317 -business_interruption_insurance n 1 1 @ 1 0 13345962 -business_leader n 1 2 @ ~ 1 1 09840217 -business_letter n 1 1 @ 1 0 06624724 -business_life n 1 1 @ 1 0 00606227 -business_line n 1 3 @ ~ %p 1 0 03671668 -business_loan n 1 1 @ 1 0 13374764 -business_lunch n 1 1 @ 1 0 07575226 -business_news n 1 1 @ 1 0 06681454 -business_office n 1 3 @ ~ #p 1 0 03841666 -business_organisation n 1 5 @ ~ %m ; - 1 0 08061042 -business_organization n 1 5 @ ~ %m ; - 1 1 08061042 -business_people n 1 2 @ ; 1 0 07945077 -business_relation n 1 3 @ ~ %m 1 0 13836841 -business_relationship n 1 2 @ ~ 1 1 13929037 -business_school n 1 1 @ 1 0 08281812 -business_sector n 1 4 @ ~ ; - 1 0 07966927 -business_suit n 1 2 @ ~ 1 0 02925519 -business_traveler n 1 1 @ 1 0 09883047 -businessman n 1 2 @ ~ 1 1 09882007 -businessmen n 1 1 @ 1 1 08113073 -businesspeople n 1 2 @ ; 1 0 07945077 -businessperson n 1 2 @ ~ 1 0 09882716 -businesswoman n 1 2 @ ~ 1 0 09882615 -busker n 1 2 @ ; 1 0 09883174 -buskin n 1 1 @ 1 0 02925666 -busload n 1 1 @ 1 0 13765866 -busman n 1 1 @ 1 0 09883362 -busman's_holiday n 1 1 @ 1 0 01065945 -buspar n 1 2 @ ; 1 0 02926044 -buspirone n 1 1 @ 1 0 02926044 -buss n 1 3 @ ~ + 1 0 00138221 -bust n 4 4 @ ~ #p + 4 0 07365024 05551494 02926188 00510723 -bust-up n 1 1 @ 1 0 07184965 -bust-up_takeover n 1 1 @ 1 0 00175433 -bustard n 1 3 @ ~ #m 1 0 02018795 -bustard_quail n 1 3 @ ~ #m 1 0 02019929 -buster n 5 2 @ + 5 0 10083358 09883740 09883630 09883452 09828600 -buster_keaton n 1 1 @ 1 0 11098380 -bustier n 1 1 @ 1 0 02926426 -bustle n 2 2 @ + 2 1 00555138 02926591 -busy_bee n 1 2 @ ~ 1 0 10040945 -busybody n 1 1 @ 1 0 09883807 -busyness n 1 2 @ + 1 0 14008050 -busywork n 1 1 @ 1 0 00581621 -butacaine n 1 1 @ 1 0 02926727 -butacaine_sulfate n 1 1 @ 1 0 02926727 -butadiene n 1 3 @ ~ #s 1 0 14912092 -butane n 1 1 @ 1 0 14685017 -butanoic_acid n 1 2 @ ~ 1 0 14788332 -butanol n 1 1 @ 1 0 14788200 -butanone n 1 1 @ 1 0 14787954 -butat n 1 2 @ #p 1 0 13668266 -butazolidin n 1 2 @ ; 1 0 03922722 -butch n 1 3 @ + ; 1 0 09883947 -butcher n 4 3 @ ~ + 4 0 09884391 09884305 09884133 09879744 -butcher's_broom n 1 2 @ #m 1 0 12463134 -butcher_block n 1 1 @ 1 0 02926886 -butcher_board n 1 1 @ 1 0 02926886 -butcher_cumberland n 1 1 @ 1 0 10917164 -butcher_knife n 1 1 @ 1 0 02927053 -butcher_paper n 1 1 @ 1 0 14879115 -butcher_shop n 1 1 @ 1 0 02927161 -butcherbird n 2 3 @ ~ #m 2 0 01598988 01583209 -butchering n 1 2 @ %p 1 0 00620424 -butchery n 3 4 @ ~ %p + 3 0 02666943 00620424 00223983 -butea n 1 3 @ #m %m 1 0 12510197 -butea_frondosa n 1 2 @ #m 1 0 12510343 -butea_gum n 1 1 @ 1 0 14901265 -butea_kino n 1 1 @ 1 0 14901265 -butea_monosperma n 1 2 @ #m 1 0 12510343 -butene n 1 2 @ ~ 1 0 14787093 -buteo n 1 3 @ #m %m 1 0 01607103 -buteo_buteo n 1 2 @ #m 1 0 01607962 -buteo_jamaicensis n 1 2 @ #m 1 0 01607429 -buteo_lagopus n 1 2 @ #m 1 0 01607600 -buteo_lineatus n 1 2 @ #m 1 0 01607812 -buteonine n 1 3 @ #m + 1 0 01607309 -butler n 3 1 @ 3 1 09884509 10876513 10876419 -butt n 9 5 @ ~ #p %p + 9 1 02927296 13124855 09884666 05559256 04394261 03030663 02928413 02927608 02927399 -butt-weld n 1 2 @ + 1 0 02929582 -butt-welding n 1 3 @ ~ + 1 0 00149699 -butt_end n 1 2 @ ~ 1 0 02927296 -butt_hinge n 1 1 @ 1 0 02928299 -butt_joint n 1 2 @ ~ 1 0 02928413 -butt_pack n 1 1 @ 1 0 03321563 -butt_shaft n 1 1 @ 1 0 02929462 -butt_weld n 1 2 @ + 1 0 02929582 -butt_welding n 1 3 @ ~ + 1 0 00149699 -butte n 2 3 @ #p ; 2 0 09230202 09108884 -butter n 2 3 @ ~ + 2 1 07848338 09884815 -butter-and-eggs n 1 3 @ ~ #m 1 0 12884260 -butter-bean_plant n 1 3 @ #m %p 1 0 12558425 -butter-flower n 1 3 @ ~ #m 1 0 11720353 -butter-print n 1 2 @ #m 1 0 12173069 -butter_bean n 2 4 @ #m #p %p 2 0 12558425 07729225 -butter_churn n 1 1 @ 1 0 03029445 -butter_cookie n 1 2 @ ~ 1 0 07635827 -butter_daisy n 1 1 @ 1 0 12031139 -butter_dish n 1 1 @ 1 0 02927764 -butter_knife n 1 1 @ 1 0 02928049 -butterball n 2 2 @ #m 2 0 10082146 01850192 -butterbean n 1 2 @ #p 1 0 07729225 -butterbur n 1 2 @ #m 1 0 12002428 -buttercrunch n 1 1 @ 1 0 07723968 -buttercup n 1 3 @ ~ #m 1 0 11720353 -buttercup_family n 1 3 @ #m %m 1 0 11719468 -buttercup_squash n 2 2 @ #m 2 0 12161577 07718068 -butterfat n 1 1 @ 1 1 14787707 -butterfield n 1 1 @ 1 0 10876661 -butterfingers n 1 1 @ 1 0 09884934 -butterfish n 3 5 @ ~ #m #p %p 3 0 07786005 02632989 02615298 -butterflower n 1 3 @ ~ #m 1 0 11720353 -butterfly n 2 3 @ ~ %p 2 0 02274259 00570854 -butterfly_bush n 1 2 @ #m 1 0 12485653 -butterfly_collector n 1 1 @ 1 0 10254761 -butterfly_effect n 1 1 @ 1 0 11412334 -butterfly_fish n 1 3 @ ~ #m 1 0 02605316 -butterfly_flower n 2 2 @ #m 2 0 12913144 12490827 -butterfly_nut n 1 1 @ 1 0 04593185 -butterfly_orchid n 5 3 @ ~ #m 5 0 12080395 12074408 12061614 12061380 12043836 -butterfly_orchis n 2 2 @ #m 2 0 12061614 12043836 -butterfly_pea n 3 2 @ #m 3 0 12517642 12517445 12513172 -butterfly_plant n 2 2 @ #m 2 0 12076852 12074408 -butterfly_ray n 1 2 @ #m 1 0 01498699 -butterfly_stroke n 1 2 @ %p 1 0 00570854 -butterfly_valve n 1 2 @ #p 1 0 02927887 -butterfly_weed n 1 1 @ 1 0 13235503 -butterflyfish n 1 2 @ #m 1 0 02652132 -butterhead_lettuce n 1 3 @ ~ #p 1 0 07723753 -buttermilk n 1 1 @ 1 0 07847047 -buttermilk_biscuit n 1 1 @ 1 0 07694516 -buttermilk_pancake n 1 1 @ 1 0 07640749 -butternut n 2 4 @ #m #p %p 2 0 12318965 07771891 -butternut_squash n 2 3 @ #p %p 2 0 12161744 07717556 -butternut_tree n 1 3 @ #m %p 1 0 12318965 -butterscotch n 1 1 @ 1 0 07600394 -butterweed n 2 2 @ #m 2 0 12012111 12000191 -butterwort n 1 2 @ #m 1 0 12872914 -buttery n 2 2 @ ~ 2 0 03885535 02928172 -buttinsky n 1 1 @ 1 0 09885059 -buttock n 1 3 @ #p %p 1 0 05559727 -buttocks n 1 2 @ #p 1 1 05559256 -button n 7 5 @ ~ #p %p + 7 2 02928608 04027023 11531916 07268413 05523420 04073425 02928841 -button-quail n 1 3 @ ~ #m 1 0 02019929 -button_fern n 2 2 @ #m 2 0 13212559 13201423 -button_hole n 1 2 @ #p 1 0 02928930 -button_mangrove n 1 1 @ 1 0 12324906 -button_pink n 1 1 @ 1 0 11809437 -button_quail n 1 3 @ ~ #m 1 0 02019929 -button_snakeroot n 3 3 @ ~ #m 3 0 12938667 12938445 11991263 -button_tree n 1 1 @ 1 0 12324906 -buttonhole n 1 2 @ #p 1 0 02928930 -buttonhole_stitch n 1 1 @ 1 0 02929059 -buttonhook n 1 1 @ 1 0 02929184 -buttonwood n 1 2 @ #m 1 0 12807409 -buttress n 1 3 @ ~ + 1 0 02929289 -buttressing n 1 2 @ ~ 1 0 02929289 -butty n 1 2 @ ; 1 0 07696527 -butut n 1 2 @ #p 1 0 13668266 -butyl n 1 3 @ %s + 1 0 15008025 -butyl_alcohol n 1 1 @ 1 0 14788200 -butyl_nitrite n 1 1 @ 1 0 02929749 -butyl_rubber n 1 1 @ 1 0 15007917 -butylene n 1 2 @ ~ 1 0 14787093 -butyric_acid n 1 2 @ ~ 1 0 14788332 -butyrin n 1 2 @ ~ 1 0 14788485 -buxaceae n 1 3 @ #m %m 1 0 12745788 -buxomness n 1 2 @ + 1 0 05001302 -buxus n 1 3 @ #m %m 1 0 12745976 -buxus_sempervirens n 1 1 @ 1 0 12746253 -buy n 1 3 @ ~ + 1 0 13253751 -buy-and-bust_operation n 1 1 @ 1 0 00410096 -buyback n 1 2 @ + 1 0 00079212 -buyer n 1 3 @ ~ + 1 1 09885145 -buyer's_market n 1 1 @ 1 0 01097920 -buyers'_market n 1 1 @ 1 0 01097920 -buyi n 1 1 @ 1 0 06936290 -buying n 1 3 @ ~ + 1 1 00081572 -buyout n 1 3 @ ~ + 1 0 00789534 -buyout_bid n 1 1 @ 1 0 07165410 -buzz n 2 2 @ + 2 2 07378234 01260008 -buzz_bomb n 1 1 @ 1 0 02929923 -buzz_saw n 1 2 @ ~ 1 0 03034663 -buzzard n 2 2 @ #m 2 0 01619310 01607962 -buzzards_bay n 1 2 @ #p 1 0 09230361 -buzzer n 2 3 @ ~ + 2 0 03222516 02930080 -buzzword n 1 1 @ 1 0 06608277 -bvd n 1 2 @ ; 1 0 02930214 -bvd's n 1 2 @ ; 1 0 02930214 -bw n 1 2 @ ~ 1 1 00967780 -bw_defence n 1 1 @ 1 0 00967993 -bw_defense n 1 1 @ 1 0 00967993 -bwr n 1 1 @ 1 0 02864122 -by-and-by n 1 1 @ 1 0 15252770 -by-blow n 1 1 @ 1 0 09842823 -by-catch n 1 1 @ 1 0 01319685 -by-election n 1 1 @ 1 0 00183240 -by-line n 2 3 @ ~ %p 2 0 06348885 00432689 -by-product n 2 2 @ ~ 2 2 11412592 02930492 -byblos n 1 2 @ #p 1 0 08958535 -bycatch n 1 1 @ 1 0 01319685 -bydgoszcz n 1 2 @ #p 1 0 08983274 -bye n 2 1 @ 2 0 07176499 06629610 -bye-bye n 1 1 @ 1 0 06629610 -bye-election n 1 1 @ 1 0 00183240 -byelarus n 1 5 @ #m #p %m %p 1 0 09011151 -byelorussia n 1 5 @ #m #p %m %p 1 0 09011151 -byelorussian n 2 2 @ #m 2 0 09695979 06944480 -bygone n 1 2 @ + 1 1 15121153 -bylaw n 1 1 @ 1 0 06537951 -byname n 1 1 @ 1 0 06337693 -bypass n 3 3 @ #p + 3 1 02828648 05548203 04211001 -bypass_capacitor n 1 1 @ 1 0 02930339 -bypass_condenser n 1 1 @ 1 0 02930339 -bypath n 1 1 @ 1 0 02930645 -byplay n 1 2 @ ~ 1 0 00550341 -byproduct n 2 2 @ ~ 2 0 11412592 02930492 -byrd n 2 1 @ 2 0 10877015 10876798 -byre n 1 1 @ 1 0 03123809 -byrnie n 1 1 @ 1 0 03499468 -byroad n 1 1 @ 1 0 02930645 -byron n 1 1 @ 1 0 10877253 -byssus n 1 1 @ 1 0 01955318 -bystander n 1 1 @ 1 0 09885334 -byte n 1 3 @ #p %p 1 0 13626013 -byway n 1 1 @ 1 0 02930645 -byword n 1 1 @ 1 0 07153838 -byzant n 1 1 @ 1 0 13389194 -byzantine n 1 2 @ #m 1 0 09696124 -byzantine_architecture n 1 1 @ 1 0 05841740 -byzantine_church n 1 1 @ 1 0 08086219 -byzantine_empire n 1 4 @ #p %m %p 1 0 08800676 -byzantine_greek n 1 1 @ 1 0 06977190 -byzantinism n 1 1 @ 1 0 06188721 -byzantium n 2 4 @ #p %m %p 2 0 08801099 08800676 -c n 12 6 @ ~ #m #s #p ; 12 1 13714491 15284285 15093298 14829765 14828511 14633206 13750415 13636648 06902696 06866332 06831391 03066743 -c-clamp n 1 1 @ 1 0 02988066 -c-horizon n 1 1 @ 1 0 08658776 -c-note n 1 1 @ 1 0 13395074 -c-ration n 1 1 @ 1 0 07566231 -c-reactive_protein n 1 1 @ 1 0 14732299 -c-section n 1 2 @ %p 1 0 00185778 -c._d._gibson n 1 1 @ 1 0 10998474 -c._diphtheriae n 1 2 @ #m 1 0 01366700 -c._h._best n 1 1 @ 1 0 10850049 -c._k._ogden n 1 1 @ 1 0 11212786 -c._northcote_parkinson n 1 1 @ 1 0 11223119 -c._p._snow n 1 1 @ 1 0 11307082 -c._psittaci n 1 1 @ 1 0 01372944 -c._s._forester n 1 1 @ 1 0 10975404 -c._s._lewis n 1 1 @ 1 0 11130291 -c._trachomatis n 1 1 @ 1 0 01373090 -c._vann_woodward n 1 1 @ 1 0 11396535 -c._w._post n 1 1 @ 1 0 11243562 -c.p.u. n 1 4 @ #p %p ; 1 0 02995345 -c2h6 n 1 1 @ 1 0 14850826 -c_and_w n 1 2 @ ~ 1 0 07060440 -c_battery n 1 1 @ 1 0 02987950 -c_clef n 1 1 @ 1 0 06863209 -c_compiler n 1 1 @ 1 0 06573934 -c_horizon n 1 1 @ 1 0 08658776 -c_major n 1 2 @ ; 1 0 06866442 -c_major_scale n 1 2 @ ; 1 0 06866442 -c_program n 1 1 @ 1 0 06902831 -ca n 2 6 @ ~ #s #p %p - 2 0 14632648 09060768 -caaba n 1 3 @ #p ; 1 0 03606719 -cab n 3 4 @ ~ #m #p 3 1 02931148 02931013 02930766 -cab_fare n 1 1 @ 1 0 13308543 -cabal n 2 5 @ ~ %m + ; 2 0 08241798 05908882 -cabala n 2 3 @ + ; 2 0 06673770 05954100 -cabalism n 2 2 @ ; 2 0 05954366 01213406 -cabalist n 3 3 @ #m ; 3 0 09885676 09885534 09885416 -cabana n 1 1 @ 1 1 02931294 -cabaret n 2 2 @ ~ 2 0 02931417 00520672 -cabasset n 1 1 @ 1 0 03785721 -cabassous n 1 2 @ #m 1 0 02455428 -cabassous_unicinctus n 1 2 @ #m 1 0 02455428 -cabbage n 3 6 @ ~ #m #p %p + 3 1 07713895 13385216 11875691 -cabbage-bark_tree n 1 2 @ #m 1 0 12506341 -cabbage_bark n 1 2 @ #m 1 0 12506341 -cabbage_butterfly n 1 3 @ ~ #m 1 0 02280649 -cabbage_palm n 4 2 @ #m 4 0 12597134 12596849 12591351 12591017 -cabbage_palmetto n 1 2 @ #m 1 0 12597134 -cabbage_tree n 3 2 @ #m 3 0 12591351 12506341 12478768 -cabbageworm n 1 2 @ #m 1 0 02310585 -cabbala n 2 2 @ ; 2 0 06673770 05954100 -cabbalah n 2 2 @ ; 2 0 06673770 05954100 -cabby n 1 1 @ 1 0 10693646 -cabdriver n 1 1 @ 1 0 10693646 -cabell n 1 1 @ 1 0 10877456 -caber n 1 1 @ 1 0 02931836 -cabernet n 1 2 @ #s 1 0 07895710 -cabernet_sauvignon n 1 2 @ #s 1 0 07895710 -cabernet_sauvignon_grape n 1 2 @ %s 1 0 13146740 -cabg n 1 1 @ 1 0 00675808 -cabin n 3 5 @ ~ #p %p + 3 2 02932227 02932400 02932019 -cabin_boy n 1 1 @ 1 0 09885769 -cabin_car n 1 2 @ #m 1 0 02932523 -cabin_class n 1 1 @ 1 0 02932693 -cabin_cruiser n 1 1 @ 1 0 02932891 -cabin_liner n 1 1 @ 1 0 02933750 -cabinet n 4 5 @ ~ #p %m %p 4 1 02933112 08381820 02933462 02933340 -cabinet_minister n 2 3 @ ~ #m 2 0 09886010 00585964 -cabinet_wood n 1 1 @ 1 0 14787816 -cabinetmaker n 1 2 @ ~ 1 0 09885866 -cabinetmaking n 1 1 @ 1 0 00617601 -cabinetry n 1 3 @ ; - 1 0 00607542 -cabinetwork n 2 3 @ ; - 2 0 02933649 00607542 -cable n 6 5 @ ~ #p %p + 6 3 06275095 02934168 02933842 13652886 06278338 02933990 -cable's_length n 1 1 @ 1 0 13652886 -cable_car n 1 2 @ #p 1 0 02934451 -cable_length n 1 1 @ 1 0 13652886 -cable_railway n 1 2 @ %p 1 0 02934641 -cable_system n 1 2 @ %p 1 0 02933990 -cable_television n 2 2 @ %p 2 0 06278338 02933990 -cable_television_service n 1 2 @ %p 1 0 02933990 -cable_tramway n 1 1 @ 1 0 04469813 -cablegram n 1 1 @ 1 0 06275095 -cabman n 1 1 @ 1 0 10693646 -cabochon n 1 1 @ 1 0 14700046 -cabomba n 1 3 @ #m %m 1 0 11718096 -cabomba_caroliniana n 1 2 @ #m 1 0 11718296 -cabombaceae n 1 3 @ #m %m 1 0 11717820 -caboodle n 1 1 @ 1 0 07954731 -caboose n 2 4 @ ~ #m #p 2 0 03412220 02932523 -cabot n 2 1 @ 2 0 10877841 10877584 -cabotage n 2 1 @ 2 0 05175771 00315307 -cabriolet n 1 1 @ 1 0 02931013 -cabstand n 1 1 @ 1 0 08517966 -cacajao n 1 3 @ #m %m 1 0 02493109 -cacalia n 1 3 @ #m %m 1 0 11942875 -cacalia_javanica n 1 2 @ #m 1 0 11963305 -cacalia_lutea n 1 2 @ #m 1 0 11963305 -cacao n 1 3 @ ~ #m 1 0 12201580 -cacao_bean n 1 2 @ #s 1 0 07754894 -cacao_moth n 1 2 @ #m 1 0 02290340 -cacao_tree n 1 3 @ ~ #m 1 0 12201580 -cacatua n 1 3 @ #m %m 1 0 01818959 -cacatua_galerita n 1 1 @ 1 0 01819313 -cachalot n 1 2 @ #m 1 0 02067240 -cache n 3 4 @ ~ + ; 3 1 02934888 13366912 02935017 -cachet n 3 2 @ ; 3 0 06705984 06548110 02935316 -cachexia n 1 2 @ + 1 0 14548105 -cachexy n 1 2 @ + 1 0 14548105 -cachi n 1 2 @ #p 1 0 09230500 -cachinnation n 1 2 @ + 1 0 07127350 -cachou n 1 1 @ 1 0 07607832 -cacicus n 1 3 @ #m %m 1 0 01573483 -cacique n 1 2 @ #m 1 0 01573627 -cackle n 3 3 @ ~ + 3 0 07378437 07136940 07127451 -cackler n 2 3 @ #m + 2 0 01792808 01566645 -cacodaemon n 1 3 @ + ; 1 0 09542541 -cacodemon n 1 4 ! @ + ; 1 0 09542541 -cacodyl n 2 2 @ + 2 0 14788875 14788714 -cacodyl_group n 1 1 @ 1 0 14788714 -cacodyl_radical n 1 1 @ 1 0 14788714 -cacoethes n 1 2 @ ~ 1 0 09181557 -cacogenesis n 1 1 @ 1 0 14045835 -cacogenics n 1 2 @ + 1 0 06042690 -cacography n 1 2 @ ~ 1 0 06404147 -cacomistle n 1 2 @ #m 1 0 02508742 -cacomixle n 1 2 @ #m 1 0 02508742 -cacophony n 2 2 @ + 2 0 07377473 04984938 -cactaceae n 1 3 @ #m %m 1 0 11841529 -cactus n 1 3 @ ~ #m 1 0 11842204 -cactus_euphorbia n 1 2 @ #m 1 0 12921660 -cactus_family n 1 3 @ #m %m 1 0 11841529 -cactus_mouse n 1 2 @ #m 1 0 02337171 -cactus_wren n 1 2 @ #m 1 0 01586374 -cad n 2 2 @ ~ 2 0 09886220 06567689 -cadaster n 1 1 @ 1 0 06502192 -cadastre n 1 2 @ + 1 0 06502192 -cadaver n 1 3 @ ~ + 1 1 05218119 -cadaverine n 1 1 @ 1 0 15095771 -caddice-fly n 1 1 @ 1 0 02269340 -caddice_fly n 1 1 @ 1 0 02269340 -caddie n 1 2 @ + 1 0 09886403 -caddis-fly n 1 1 @ 1 0 02269340 -caddis_fly n 1 1 @ 1 0 02269340 -caddisworm n 1 2 @ #m 1 0 02269657 -caddo n 2 2 @ ~ 2 0 09651123 06915601 -caddoan n 1 2 @ ~ 1 0 06915601 -caddoan_language n 1 2 @ ~ 1 0 06915601 -caddy n 1 2 @ + 1 0 02935387 -cadence n 3 4 @ ~ + ; 3 1 07094093 07045928 04991879 -cadency n 1 2 @ + 1 0 04991879 -cadenza n 1 1 @ 1 1 07046218 -cadet n 1 4 @ ~ + ; 1 0 09886540 -cadetship n 1 2 @ + 1 0 00589596 -cadger n 1 3 @ ~ + 1 0 10330189 -cadiz n 1 2 @ #p 1 0 09025451 -cadmium n 1 2 @ #s 1 0 14632444 -cadmium_cell n 1 1 @ 1 0 04573379 -cadmium_orange n 1 1 @ 1 0 15096331 -cadmium_sulfide n 1 2 @ ~ 1 0 15095926 -cadmium_sulphide n 1 1 @ 1 0 14677610 -cadmium_yellow n 1 2 @ ~ 1 1 15096048 -cadmium_yellow_pale n 1 1 @ 1 0 15096233 -cadmus n 1 2 @ ; 1 0 09490054 -cadra n 1 3 @ #m %m 1 0 02290521 -cadra_cautella n 1 2 @ #m 1 0 02290664 -cadra_figulilella n 1 2 @ #m 1 0 02290870 -cadre n 2 3 @ ~ #m 2 2 08358594 08242100 -caduceus n 1 2 @ + 1 0 06884520 -caeciliadae n 1 3 @ #m %m 1 0 01655116 -caecilian n 1 3 @ #m + 1 0 01655344 -caeciliidae n 1 4 @ #m %m + 1 0 01655116 -caecum n 1 4 @ #p %p + 1 0 05536370 -caelum n 1 1 @ 1 0 09230646 -caenogenesis n 1 1 @ 1 0 13444940 -caenolestes n 1 3 @ #m %m 1 0 01875880 -caenolestidae n 1 3 @ #m %m 1 0 01875717 -caesalpinia n 1 3 @ #m %m 1 0 12488121 -caesalpinia_bonduc n 1 3 @ #m %p 1 0 12488454 -caesalpinia_bonducella n 1 3 @ #m %p 1 0 12488454 -caesalpinia_coriaria n 1 3 @ #m %p 1 0 12488709 -caesalpinia_decapetala n 1 2 @ #m 1 0 12489046 -caesalpinia_echinata n 1 3 @ #m %s 1 0 12489268 -caesalpinia_ferrea n 1 2 @ #m 1 0 12489676 -caesalpinia_gilliesii n 1 2 @ #m 1 0 12489815 -caesalpinia_pulcherrima n 1 2 @ #m 1 0 12490054 -caesalpinia_sepiaria n 1 2 @ #m 1 0 12489046 -caesalpiniaceae n 1 2 @ #m 1 0 12487394 -caesalpinioideae n 1 3 @ #m %m 1 0 12487647 -caesar n 2 2 @ + 2 1 10878161 10878375 -caesar's_agaric n 1 2 @ #m 1 0 13002750 -caesar_salad n 1 1 @ 1 0 07806879 -caesarea n 1 2 @ #p 1 0 08795492 -caesarean n 1 3 @ %p + 1 0 00185778 -caesarean_delivery n 1 2 @ %p 1 0 00185778 -caesarean_section n 1 2 @ %p 1 0 00185778 -caesarian n 1 2 @ %p 1 0 00185778 -caesarian_delivery n 1 2 @ %p 1 0 00185778 -caesarian_section n 1 2 @ %p 1 0 00185778 -caesarism n 1 2 @ ~ 1 0 08440630 -caesaropapism n 1 1 @ 1 0 06188721 -caesium n 1 3 @ ~ #s 1 0 14634232 -caesium_clock n 1 1 @ 1 0 02935490 -caesura n 2 2 @ + 2 0 15271732 07085072 -cafe n 1 2 @ ~ 1 1 02935658 -cafe_au_lait n 1 1 @ 1 0 07919572 -cafe_noir n 1 1 @ 1 0 07919665 -cafe_royale n 1 1 @ 1 0 07929940 -cafeteria n 1 2 @ ~ 1 1 02935891 -cafeteria_facility n 1 2 @ ; 1 0 02936020 -cafeteria_tray n 1 1 @ 1 0 02936176 -caff n 1 2 @ ; 1 0 02936281 -caffe_latte n 1 1 @ 1 0 07920222 -caffein n 1 3 @ #s + 1 0 14761122 -caffein_addict n 1 1 @ 1 0 09886700 -caffein_addiction n 1 1 @ 1 0 14065156 -caffeine n 1 2 @ #s 1 0 14761122 -caffeine_addict n 1 1 @ 1 0 09886700 -caffeine_intoxication n 1 1 @ 1 0 14510247 -caffeinism n 1 1 @ 1 0 14510247 -caffer n 1 2 @ ; 1 0 10228864 -caffer_cat n 1 2 @ #m 1 0 02125872 -caffre n 1 2 @ ; 1 0 10228864 -caftan n 2 1 @ 2 0 02936570 02936402 -cage n 5 3 @ ~ + 5 2 02936714 13998966 10878530 02936921 02811059 -cager n 1 2 @ ~ 1 0 09842047 -cagliostro n 1 1 @ 1 0 10878672 -cagney n 1 1 @ 1 0 10878844 -cagoule n 1 1 @ 1 0 02937010 -cahita n 2 1 @ 2 0 09670415 06918932 -cahoot n 1 1 @ 1 0 07177111 -caiman n 1 3 @ ~ #m 1 0 01699040 -caiman_lizard n 1 1 @ 1 0 01687290 -caiman_sclerops n 1 1 @ 1 0 01699254 -caimitillo n 1 1 @ 1 0 12773917 -caimito n 1 2 @ #m 1 0 12773651 -cain n 1 2 @ ; 1 0 09586994 -cainogenesis n 1 1 @ 1 0 13444940 -cairene n 1 2 @ #m 1 0 09886807 -cairina n 1 3 @ #m %m 1 0 01852544 -cairina_moschata n 1 2 @ #m 1 0 01852671 -cairn n 2 1 @ 2 0 07273802 02096177 -cairn_terrier n 1 1 @ 1 0 02096177 -cairngorm n 1 1 @ 1 0 14694571 -cairo n 2 3 @ #p %m 2 0 09082988 08898633 -caisson n 4 2 @ ; 4 0 03064443 02937336 02937237 02937093 -caisson_disease n 1 1 @ 1 0 14068344 -caitiff n 1 3 @ + ; 1 0 09886911 -caitra n 1 3 @ #p %p 1 0 15219694 -cajan_pea n 2 4 @ #m #p %p 2 0 12510774 07726230 -cajanus n 1 3 @ #m %m 1 0 12510569 -cajanus_cajan n 1 3 @ #m %p 1 0 12510774 -cajolery n 1 2 @ + 1 0 06695862 -cajun n 1 1 @ 1 0 09677280 -cakchiquel n 2 1 @ 2 0 09651418 06926112 -cake n 3 2 @ ~ 3 1 02937469 07663899 07628870 -cake_mix n 1 1 @ 1 0 07594066 -cakehole n 1 1 @ 1 0 05302307 -cakewalk n 2 3 @ + ; 2 0 00530874 00036580 -cakile n 1 3 @ #m %m 1 0 11880218 -cakile_maritima n 1 2 @ #m 1 0 11880411 -calaba n 1 2 @ #m 1 0 12364940 -calabar-bean_vine n 1 3 @ #m %p 1 0 12486882 -calabar_bean n 1 2 @ #p 1 0 12487058 -calabash n 5 2 @ #m 5 0 12815838 12815668 12166128 03449451 02937614 -calabash_pipe n 1 1 @ 1 0 02937614 -calabash_tree n 1 2 @ #m 1 0 12815668 -calabazilla n 1 3 @ #m %p 1 0 12162425 -calabria n 1 3 @ #p ; 1 0 08804962 -calabur_tree n 1 2 @ #m 1 0 12194147 -calabura n 1 2 @ #m 1 0 12194147 -caladenia n 1 3 @ ~ #m 1 0 12048399 -caladenia_cairnsiana n 1 2 @ #m 1 0 12048537 -caladium n 1 3 @ ~ #m 1 0 11785668 -caladium_bicolor n 1 1 @ 1 0 11785875 -calais n 1 2 @ #p 1 0 08934868 -calamagrostic_quadriseta n 1 1 @ 1 0 12113323 -calamagrostis n 1 2 @ %m 1 0 12112789 -calamagrostis_acutiflora n 1 1 @ 1 0 12113195 -calamari n 1 3 @ #p ; 1 0 07781801 -calamary n 1 3 @ #p ; 1 0 07781801 -calamine n 1 3 @ #s %s 1 0 14678406 -calamine_lotion n 1 2 @ %s 1 0 02937766 -calamint n 1 3 @ ~ #m 1 0 12842887 -calamintha n 1 3 @ #m %m 1 0 12842765 -calamintha_grandiflora n 1 1 @ 1 0 12843316 -calamintha_nepeta n 1 1 @ 1 0 12843557 -calamintha_nepeta_glantulosa n 1 1 @ 1 0 12843557 -calamintha_sylvatica n 1 1 @ 1 0 12843144 -calamity n 1 3 @ ~ + 1 1 07314838 -calamity_jane n 1 1 @ 1 0 10872839 -calamus n 5 7 @ ~ #m #p %m %s %p 5 0 12586298 11781176 11780930 02592607 02468617 -calamus_australis n 1 1 @ 1 0 12586725 -calamus_oil n 1 2 @ #s 1 0 11781301 -calamus_penna n 1 2 @ #m 1 0 02592734 -calamus_rotang n 1 2 @ %p 1 0 12586499 -calan n 1 2 @ ; 1 0 04527808 -calandrinia n 1 3 @ #m %m 1 0 11858406 -calandrinia_ciliata n 1 2 @ #m 1 0 11858814 -calanthe n 1 2 @ #m 1 0 12048928 -calapooya n 1 1 @ 1 0 09658254 -calapuya n 1 1 @ 1 0 09658254 -calash n 2 2 @ #p 2 0 02938095 02937958 -calash_top n 1 2 @ #p 1 0 02937958 -calathian_violet n 1 2 @ #m 1 0 12295033 -calc-tufa n 1 1 @ 1 0 14931323 -calcaneus n 1 2 @ #p 1 0 05274808 -calcarine_fissure n 1 2 @ #p 1 0 05224585 -calcarine_sulcus n 1 2 @ #p 1 0 05224585 -calcedony n 1 2 @ ~ 1 0 14806333 -calceolaria n 1 2 @ #m 1 0 12879527 -calceus n 1 1 @ 1 0 02938218 -calciferol n 1 2 @ %s 1 0 15092227 -calcification n 3 3 @ ~ + 3 1 13442312 14364980 14011408 -calcimine n 1 2 @ + 1 0 02938321 -calcination n 1 2 @ + 1 0 13442476 -calcined_lime n 1 2 @ %s 1 0 14789885 -calcite n 1 5 @ ~ #s %s + 1 0 14935751 -calcitonin n 1 1 @ 1 0 05413465 -calcium n 1 4 @ ~ #s + 1 1 14632648 -calcium-channel_blocker n 1 2 @ ~ 1 0 02938514 -calcium-cyanamide n 1 1 @ 1 0 14789220 -calcium_bicarbonate n 1 1 @ 1 0 14936790 -calcium_blocker n 1 2 @ ~ 1 0 02938514 -calcium_carbide n 1 1 @ 1 0 14789087 -calcium_carbonate n 1 3 @ ~ #s 1 0 14936905 -calcium_chloride n 1 2 @ #s 1 0 14937225 -calcium_hydrate n 1 1 @ 1 0 14936010 -calcium_hydride n 1 1 @ 1 1 14937366 -calcium_hydroxide n 1 1 @ 1 0 14936010 -calcium_hypochlorite n 1 1 @ 1 0 14789365 -calcium_ion n 1 1 @ 1 0 15071229 -calcium_lactate n 1 1 @ 1 1 14789504 -calcium_light n 1 2 @ #m 1 0 03669665 -calcium_nitrate n 1 1 @ 1 0 14789724 -calcium_octadecanoate n 1 1 @ 1 0 14790259 -calcium_oxide n 1 2 @ %s 1 0 14789885 -calcium_phosphate n 1 1 @ 1 0 14790137 -calcium_stearate n 1 1 @ 1 0 14790259 -calcium_sulfate n 1 2 @ ~ 1 0 14937521 -calcium_sulphate n 1 2 @ ~ 1 0 14937521 -calculating_machine n 1 2 @ ~ 1 0 02938886 -calculation n 3 3 @ ~ + 3 2 00868910 05802185 05796423 -calculator n 2 3 @ ~ + 2 0 09887034 02938886 -calculus n 3 4 @ ~ + ; 3 1 09230768 09454925 06013741 -calculus_of_variations n 1 2 @ ; 1 0 06015978 -calcutta n 1 3 @ #p + 1 0 08903636 -calder n 1 1 @ 1 0 10879009 -caldera n 1 1 @ 1 0 09231117 -calderon n 1 1 @ 1 0 10879155 -calderon_de_la_barca n 1 1 @ 1 0 10879155 -caldron n 1 1 @ 1 0 02939185 -caldwell n 1 1 @ 1 0 10879364 -calean n 1 1 @ 1 0 03533014 -caleche n 2 2 @ #p 2 0 02938095 02937958 -caledonia n 1 2 @ #p 1 0 08891415 -caledonian_canal n 1 2 @ #p 1 0 02939291 -calefaction n 1 1 @ 1 0 05016451 -calendar n 3 4 @ ~ %p + 3 2 15173479 06487395 08266849 -calendar_day n 1 3 @ ~ #p 1 0 15157041 -calendar_method n 1 1 @ 1 0 00853145 -calendar_method_of_birth_control n 1 1 @ 1 0 00853145 -calendar_month n 1 3 @ ~ %p 1 0 15209413 -calendar_week n 1 3 @ #p %p 1 0 15136147 -calendar_year n 1 2 @ ~ 1 1 15202634 -calender n 1 2 @ + 1 0 02939565 -calendula n 1 3 @ ~ #m 1 0 11943407 -calendula_officinalis n 1 1 @ 1 0 11943660 -caley_pea n 1 1 @ 1 0 12539564 -calf n 4 5 @ ~ #m #p %p 4 2 01887896 05574332 14761334 01888045 -calf's-foot_jelly n 1 1 @ 1 0 07595051 -calf's_brain n 1 1 @ 1 0 07652696 -calf's_liver n 1 1 @ 1 0 07652207 -calf's_tongue n 1 1 @ 1 0 07653217 -calf_bone n 1 2 @ #p 1 0 05594201 -calf_love n 1 1 @ 1 0 07544351 -calf_roping n 1 2 @ #p 1 0 00300206 -calfskin n 1 2 @ ~ 1 0 14761334 -calgary n 1 2 @ #p 1 0 08822546 -cali n 1 2 @ #p 1 0 08733163 -cali_cartel n 1 2 @ ; 1 0 08237400 -caliber n 2 4 @ ~ = + 2 2 04728068 05103283 -calibration n 1 3 @ ~ + 1 1 00999245 -calibre n 2 3 @ ~ = 2 1 04728068 05103283 -caliche n 2 1 @ 2 0 14845578 14699441 -calico n 1 2 @ + 1 0 02939763 -calico_aster n 1 1 @ 1 0 11937102 -calico_bush n 1 1 @ 1 0 12237641 -calico_cat n 1 1 @ 1 0 02123242 -calico_crab n 1 2 @ #m 1 0 01979526 -caliculus n 1 2 @ ~ 1 0 02155448 -calidris n 1 3 @ #m %m 1 0 02028556 -calidris_canutus n 1 2 @ #m 1 0 02028900 -calidris_ferruginea n 1 2 @ #m 1 0 02029087 -calidris_melanotos n 1 2 @ #m 1 0 02028727 -calif n 1 2 @ ~ 1 0 09887496 -calif. n 1 4 @ #p %p - 1 0 09060768 -california n 1 5 @ #p %p + - 1 1 09060768 -california_allspice n 1 1 @ 1 0 11701302 -california_bay_tree n 1 2 @ #m 1 0 11707827 -california_beauty n 1 2 @ #m 1 0 12198793 -california_black_oak n 1 1 @ 1 0 12273344 -california_black_walnut n 1 2 @ #m 1 0 12318782 -california_bluebell n 2 1 @ 2 0 12837259 12837052 -california_box_elder n 1 1 @ 1 0 12755387 -california_buckthorn n 1 1 @ 1 0 13142182 -california_buckwheat n 1 1 @ 1 0 12602612 -california_coffee n 1 1 @ 1 0 13142182 -california_condor n 1 1 @ 1 0 01620135 -california_dandelion n 1 2 @ #m 1 0 11984144 -california_false_morel n 1 2 @ #m 1 0 13037585 -california_fern n 1 2 @ #m 1 0 12935609 -california_four_o'clock n 1 2 @ #m 1 0 11840067 -california_fuchsia n 1 2 @ #m 1 0 12342852 -california_lady's_slipper n 1 1 @ 1 0 12057660 -california_laurel n 1 2 @ #m 1 0 11707827 -california_live_oak n 1 1 @ 1 0 12269406 -california_newt n 1 1 @ 1 0 01631512 -california_nutmeg n 1 2 @ #m 1 0 11649150 -california_olive n 1 2 @ #m 1 0 11707827 -california_personality_inventory n 1 1 @ 1 0 06474972 -california_pitcher_plant n 1 2 @ #m 1 0 12781007 -california_pompano n 1 2 @ #m 1 0 02633677 -california_poppy n 1 2 @ #m 1 0 11905392 -california_privet n 1 1 @ 1 0 12309052 -california_quail n 1 1 @ 1 0 01806847 -california_redbud n 1 1 @ 1 0 12514138 -california_redwood n 1 2 @ #m 1 0 11641034 -california_romero n 1 2 @ #m 1 0 12871484 -california_sage n 1 2 @ #m 1 0 11929880 -california_sagebrush n 1 2 @ #m 1 0 11929880 -california_sea_lion n 1 2 @ #m 1 0 02078574 -california_single-leaf_pinyon n 1 1 @ 1 0 11610602 -california_sycamore n 1 2 @ #m 1 0 12807773 -california_tree_poppy n 1 2 @ #m 1 0 11907689 -california_whipsnake n 1 1 @ 1 0 01731941 -california_white_fir n 1 1 @ 1 0 11621727 -california_white_oak n 1 1 @ 1 0 12273939 -california_wine n 1 1 @ 1 0 07896060 -california_yellow_bells n 1 2 @ #m 1 0 12835331 -california_yew n 1 2 @ #m 1 0 11662128 -californian n 1 2 @ + 1 1 09741612 -californium n 1 1 @ 1 0 14633037 -caligula n 1 1 @ 1 0 10879551 -caliper n 1 3 @ ~ + 1 0 02939866 -caliph n 1 2 @ ~ 1 1 09887496 -caliphate n 3 1 @ 3 0 15248812 08550766 00589691 -caliphate_state n 1 2 @ ; 1 0 08028623 -calisaya n 1 2 @ #m 1 0 12664187 -calisthenics n 2 3 @ + ; 2 0 00627664 00627437 -calixtus_ii n 1 1 @ 1 0 10879789 -calixtus_iii n 1 1 @ 1 0 10880024 -calk n 1 2 @ + 1 0 02940143 -calkin n 1 1 @ 1 0 02940143 -call n 13 5 @ ~ #p + ; 13 6 06272803 06198505 07120524 07192129 06796642 01055954 07192661 07192511 07190693 06582761 01055493 00164801 00080743 -call-back n 2 2 @ + 2 1 06273207 01218213 -call-board n 1 1 @ 1 1 02940289 -call-in n 1 2 @ + 1 0 06273555 -call-out n 1 2 @ + 1 0 07231840 -call_box n 2 1 @ 2 0 04401680 03990210 -call_center n 1 1 @ 1 0 02940385 -call_centre n 1 1 @ 1 0 02940385 -call_fire n 1 1 @ 1 0 00988556 -call_forwarding n 1 1 @ 1 0 06273414 -call_girl n 1 1 @ 1 0 09889065 -call_loan n 1 1 @ 1 0 13399275 -call_mark n 1 1 @ 1 0 06818439 -call_number n 1 1 @ 1 0 06818439 -call_option n 2 3 ! @ #p 2 0 13242410 00080743 -call_up n 1 3 @ + ; 1 0 07169353 -call_waiting n 1 1 @ 1 0 06273743 -calla n 2 4 @ ~ #m %m 2 0 11793779 11786017 -calla_lily n 1 3 @ ~ #m 1 0 11793779 -calla_palustris n 1 2 @ #m 1 0 11786131 -callas n 1 1 @ 1 0 10880189 -callathump n 2 1 @ 2 0 08428623 07054122 -callback n 1 2 @ + 1 0 07280072 -caller n 7 3 @ ~ + 7 1 09887850 09888978 09888832 09888635 09888429 09888269 09888017 -caller-out n 1 1 @ 1 0 09888635 -caller-up n 1 1 @ 1 0 09888017 -caller_id n 1 1 @ 1 0 02940570 -calliandra n 1 2 @ #m 1 0 11760785 -callicebus n 1 3 @ #m %m 1 0 02493390 -calligrapher n 1 2 @ + 1 0 09889170 -calligraphist n 1 2 @ + 1 0 09889170 -calligraphy n 1 2 @ + 1 0 06403969 -callimorpha n 1 3 @ #m %m 1 0 02305799 -callimorpha_jacobeae n 1 2 @ #m 1 0 02305929 -callinectes n 1 3 @ #m %m 1 0 01979738 -callinectes_sapidus n 1 3 @ #m %p 1 0 01979874 -calling n 1 3 @ ~ + 1 0 00583246 -calling_card n 3 1 @ 3 0 13376512 06633205 05852287 -calling_into_question n 1 1 @ 1 0 07232053 -calling_together n 1 1 @ 1 0 01230850 -callionymidae n 1 3 @ #m %m 1 0 02618697 -calliope n 2 3 @ %p ; 2 0 09566320 02940706 -calliophis n 1 3 @ #m %m 1 0 01746565 -calliopsis n 1 1 @ 1 0 11957678 -calliper n 1 3 @ ~ + 1 0 02939866 -calliphora n 1 3 @ #m %m 1 0 02191617 -calliphora_vicina n 1 1 @ 1 0 02191979 -calliphoridae n 1 3 @ #m %m 1 0 02191449 -callirhoe n 1 3 @ #m %m 1 0 12174742 -callirhoe_digitata n 1 1 @ 1 0 12175181 -callirhoe_involucrata n 1 1 @ 1 0 12175370 -callirhoe_triangulata n 1 1 @ 1 0 12175598 -callisaurus n 1 3 @ #m %m 1 0 01678522 -callisaurus_draconoides n 1 2 @ #m 1 0 01678657 -callistephus n 1 3 @ #m %m 1 0 11943824 -callistephus_chinensis n 1 2 @ #m 1 0 11943992 -callisthenics n 2 2 @ ; 2 0 00627664 00627437 -callisto n 1 1 @ 1 0 09231263 -callithricidae n 1 3 @ #m %m 1 0 02490030 -callithrix n 1 3 @ #m %m 1 0 02490435 -callithump n 2 2 @ + 2 0 08428623 07054122 -callithump_parade n 1 1 @ 1 0 08428623 -callitrichaceae n 1 3 @ #m %m 1 0 12693590 -callitriche n 1 3 @ #m %m 1 0 12693734 -callitris n 1 3 @ #m %m 1 0 11633459 -callitris_calcarata n 1 1 @ 1 0 11633999 -callitris_cupressiformis n 1 1 @ 1 0 11633863 -callitris_endlicheri n 1 1 @ 1 0 11633999 -callitris_glauca n 1 1 @ 1 0 11634243 -callitris_glaucophylla n 1 1 @ 1 0 11634243 -callitris_parlatorei n 1 1 @ 1 0 11634393 -callitris_quadrivalvis n 1 2 @ %s 1 0 11643022 -callophis n 1 3 @ #m %m 1 0 01746565 -callorhinus n 1 3 @ #m %m 1 0 02077533 -callorhinus_ursinus n 1 1 @ 1 0 02077787 -callosectomy n 1 1 @ 1 0 00683915 -callosity n 2 3 @ ~ + 2 0 14364566 04844625 -callosotomy n 1 1 @ 1 0 00683915 -callousness n 1 3 @ ~ + 1 1 04844625 -callowness n 1 1 @ 1 0 14426568 -calluna n 1 3 @ #m %m 1 0 12233410 -calluna_vulgaris n 1 2 @ #m 1 0 12233529 -callus n 3 4 @ ~ + ; 3 0 14364566 14363785 13088688 -calm n 2 4 @ ~ #p + 2 1 04903813 11431617 -calm_air n 1 2 @ #p 1 0 11431617 -calming n 1 2 @ ~ 1 0 01150938 -calmness n 3 4 ! @ ~ + 3 1 04903813 14522265 07514968 -calnada_pea n 1 1 @ 1 0 12575812 -calocarpum n 1 2 @ #m 1 0 12773334 -calocarpum_zapota n 1 3 @ #m %p 1 0 12775919 -calocedrus n 1 3 @ #m %m 1 0 11634526 -calocedrus_decurrens n 1 2 @ #m 1 0 11634736 -calochortus n 1 3 @ #m %m 1 0 12445848 -calochortus_albus n 1 2 @ #m 1 0 12446908 -calochortus_amabilis n 1 2 @ #m 1 0 12447121 -calochortus_amoenus n 1 2 @ #m 1 0 12447346 -calochortus_elegans n 1 2 @ #m 1 0 12447581 -calochortus_kennedyi n 1 2 @ #m 1 0 12447891 -calochortus_luteus n 1 2 @ #m 1 0 12448136 -calochortus_macrocarpus n 1 2 @ #m 1 0 12448361 -calochortus_nuttallii n 1 1 @ 1 0 12448700 -calomel n 1 3 @ #s %s 1 0 14950937 -caloocan n 1 2 @ #p 1 0 08981922 -caloosahatchee n 1 2 @ #p 1 0 09231361 -caloosahatchee_canal n 1 2 @ #p 1 0 02940878 -caloosahatchee_river n 1 2 @ #p 1 0 09231361 -calophyllum n 1 3 @ #m %m 1 0 12364379 -calophyllum_calaba n 1 2 @ #m 1 0 12364940 -calophyllum_candidissimum n 1 2 @ #m 1 0 12365285 -calophyllum_inophyllum n 1 2 @ #m 1 0 12365462 -calophyllum_longifolium n 1 2 @ #m 1 0 12365158 -calopogon n 1 3 @ #m %m 1 0 12049134 -calopogon_pulchellum n 1 2 @ #m 1 0 12049282 -calopogon_tuberosum n 1 2 @ #m 1 0 12049282 -calorie n 2 4 @ #p %p + 2 0 13726562 13726296 -calorie_chart n 1 1 @ 1 0 06487610 -calorimeter n 1 2 @ ~ 1 1 02941095 -calorimetry n 1 2 @ + 1 0 01001814 -caloscypha_fulgens n 1 1 @ 1 0 13029610 -calosoma n 1 3 @ ~ #m 1 0 02167820 -calosoma_scrutator n 1 1 @ 1 0 02167944 -calostoma_cinnabarina n 1 2 @ #m 1 0 13042134 -calostoma_lutescens n 1 2 @ #m 1 0 13041943 -calostoma_ravenelii n 1 2 @ #m 1 0 13042316 -calostomataceae n 1 3 @ #m %m 1 0 13041725 -calpac n 1 1 @ 1 0 02941228 -calpack n 1 1 @ 1 0 02941228 -calpe n 1 3 @ #p %m 1 0 09028841 -calque n 1 1 @ 1 0 06301445 -calque_formation n 1 1 @ 1 0 06301445 -caltha n 1 3 @ #m %m 1 0 11727976 -caltha_palustris n 1 2 @ #m 1 0 11728099 -caltrop n 3 3 @ ~ #m 3 0 12723610 12348294 11948044 -calumet n 1 1 @ 1 0 02941408 -calumniation n 1 2 @ ~ 1 0 06719579 -calumny n 2 3 @ ~ + 2 1 06719579 01220336 -calvados n 1 1 @ 1 0 07903643 -calvaria n 1 2 @ #p 1 0 05540407 -calvary n 2 2 @ #p 2 0 08796219 07306032 -calvary_clover n 1 1 @ 1 0 12549005 -calvary_cross n 1 1 @ 1 0 02941605 -calvatia n 1 3 @ #m %m 1 0 13044149 -calvatia_gigantea n 1 2 @ #m 1 0 13044375 -calvert_vaux n 1 1 @ 1 0 11361757 -calves'_feet n 1 1 @ 1 0 07666303 -calves'_liver n 1 1 @ 1 0 07652207 -calvin n 2 1 @ 2 0 10880669 10880398 -calvin_coolidge n 1 1 @ 1 0 10908919 -calvin_klein n 1 1 @ 1 0 11106943 -calvin_richard_klein n 1 1 @ 1 0 11106943 -calving n 1 1 @ 1 1 13442639 -calvinism n 1 2 @ + 1 0 06229853 -calvinist n 1 3 @ ~ + 1 0 09889346 -calvinistic_baptist n 1 1 @ 1 0 08090329 -calvino n 1 1 @ 1 0 10880841 -calx n 1 2 @ %s 1 0 14789885 -calycanthaceae n 1 3 @ #m %m 1 0 11700401 -calycanthus n 1 3 @ #m %m 1 0 11700676 -calycanthus_family n 1 3 @ #m %m 1 0 11700401 -calycanthus_floridus n 1 1 @ 1 0 11701066 -calycanthus_occidentalis n 1 1 @ 1 0 11701302 -calycle n 2 2 @ ~ 2 0 11692108 02155448 -calycophyllum n 1 3 @ #m %m 1 0 12661873 -calycophyllum_candidissimum n 1 2 @ #m 1 0 12662074 -calyculus n 2 3 @ ~ + 2 0 11692108 02155448 -calymmatobacterium n 1 2 @ %m 1 0 01365122 -calymmatobacterium_granulomatis n 1 2 @ #m 1 0 01365322 -calypso n 2 2 @ ; 2 0 12049562 09490210 -calypso_bulbosa n 1 1 @ 1 0 12049562 -calypter n 1 2 @ #p 1 0 02190465 -calyptra n 1 1 @ 1 0 11532547 -calyptridium_umbellatum n 1 2 @ #m 1 0 11862300 -calystegia n 1 3 @ #m %m 1 0 12824909 -calystegia_sepium n 1 2 @ #m 1 0 12825061 -calyx n 1 6 @ ~ #p %p + ; 1 0 11691523 -calyx_tube n 1 1 @ 1 0 11690254 -cam n 2 3 @ ~ #p 2 0 09231587 02941716 -cam_river n 1 2 @ #p 1 0 09231587 -cam_stroke n 1 2 @ ~ 1 0 07351195 -camachile n 1 2 @ #m 1 0 11764478 -camail n 1 2 @ #p 1 0 02941845 -camaraderie n 1 1 @ 1 1 04653627 -camarilla n 1 2 @ %m 1 0 08241798 -camas n 1 3 @ ~ #m 1 0 12449296 -camash n 1 3 @ ~ #m 1 0 12449296 -camass n 1 3 @ ~ #m 1 0 12449296 -camassia n 1 3 @ #m %m 1 0 12449024 -camassia_leichtlinii n 1 2 @ #m 1 0 12449784 -camassia_quamash n 1 2 @ #m 1 0 12449526 -camassia_scilloides n 1 2 @ #m 1 0 12449934 -cambarus n 1 3 @ #m %m 1 0 01985667 -camber n 3 2 @ + 3 0 13864423 09213828 01001344 -camber_arch n 1 1 @ 1 0 02942015 -camberwell_beauty n 1 2 @ #m 1 0 02275560 -cambium n 2 3 @ #p + 2 0 13097338 05286412 -cambodia n 1 7 @ #m #p %m %p + - 1 1 08716738 -cambodian n 1 4 @ ~ #m + 1 0 09696280 -cambodian_capital n 1 2 @ #p 1 0 08717059 -cambodian_monetary_unit n 1 2 @ ~ 1 0 13697727 -cambria n 1 6 @ #p %m %p + - 1 0 08894456 -cambrian n 2 4 @ #m #p + 2 0 15128549 09747329 -cambrian_mountains n 1 1 @ 1 0 09231761 -cambrian_period n 1 2 @ #p 1 0 15128549 -cambric n 1 1 @ 1 0 02942147 -cambric_tea n 1 1 @ 1 0 07933652 -cambridge n 3 4 @ #p %m %p 3 1 02942227 09096664 08878016 -cambridge_university n 1 2 @ #p 1 0 02942227 -camcorder n 1 1 @ 1 0 02942349 -camden n 1 2 @ #p 1 0 09113333 -camel n 1 3 @ ~ #m 1 0 02437136 -camel's_hair n 1 1 @ 1 0 02942460 -camel_racing n 1 1 @ 1 0 00449892 -camelhair n 1 1 @ 1 0 02942460 -camelia n 1 3 @ ~ #m 1 0 12929403 -camelidae n 1 3 @ #m %m 1 0 02436813 -camelina n 1 3 @ #m %m 1 0 11880610 -camelina_sativa n 1 2 @ #m 1 0 11880791 -camellia n 1 3 @ ~ #m 1 0 12929403 -camellia_japonica n 1 1 @ 1 0 12929600 -camellia_sinensis n 1 3 @ #m %p 1 0 12929783 -camellia_state n 1 5 @ #m #p %p - 1 0 09053185 -camelopard n 1 3 @ ~ #m 1 0 02439033 -camelot n 1 2 @ ; 1 0 08558289 -camelpox n 1 1 @ 1 0 14262153 -camelus n 1 3 @ #m %m 1 0 02436993 -camelus_bactrianus n 1 1 @ 1 0 02437482 -camelus_dromedarius n 1 1 @ 1 0 02437312 -camembert n 1 1 @ 1 0 07852833 -cameo n 1 1 @ 1 0 02942577 -camera n 2 3 @ ~ %p 2 2 02942699 04404997 -camera_angle n 1 1 @ 1 0 05076384 -camera_care n 1 1 @ 1 0 00267821 -camera_lens n 1 3 @ ~ #p 1 1 02943241 -camera_lucida n 1 2 @ #p 1 0 02943465 -camera_obscura n 1 1 @ 1 0 02943686 -camera_operator n 1 1 @ 1 0 09889539 -camera_tripod n 1 1 @ 1 0 02943871 -cameraman n 1 1 @ 1 0 09889539 -cameroon n 2 5 @ #p %m %p + 2 0 09173623 08717209 -cameroon_franc n 1 2 @ %p 1 0 13677222 -cameroonian n 1 3 @ #m + 1 0 09696456 -cameroun n 1 4 @ #p %m %p 1 0 08717209 -camillo_golgi n 1 1 @ 1 0 11005780 -camion n 2 1 @ 2 0 03690473 03235979 -camise n 1 1 @ 1 0 02943964 -camisole n 2 1 @ 2 0 02944146 02944075 -camlan n 1 2 @ ; 1 0 08507109 -camlet n 2 1 @ 2 0 02944375 02944256 -camo n 1 1 @ 1 0 02944579 -camomile n 1 3 @ #m #s 1 0 11949402 -camomile_tea n 1 2 @ %s 1 0 07934152 -camorra n 1 1 @ 1 0 08246185 -camosh n 1 3 @ ~ #m 1 0 12449296 -camouflage n 4 2 @ + 4 0 04679074 02944579 02944459 01049266 -camp n 8 4 @ ~ + ; 8 6 02944826 08478018 02945161 08240633 02945379 05649960 02945813 02945594 -camp_bed n 1 2 @ %p 1 0 03114504 -camp_chair n 1 1 @ 1 0 02946270 -camp_david n 1 1 @ 1 0 08643499 -camp_follower n 2 1 @ 2 0 09890296 09890192 -camp_meeting n 1 1 @ 1 0 08308156 -camp_robber n 1 3 @ ~ #m 1 0 01581166 -campaign n 4 4 @ ~ + ; 4 3 07472929 00798245 00968155 00309906 -campaign_for_governor n 1 1 @ 1 0 07473207 -campaign_hat n 1 1 @ 1 0 02945964 -campaigner n 1 3 @ ~ + 1 0 09889691 -campaigning n 1 3 @ ~ %p 1 0 00799537 -campana n 1 2 @ + 1 0 13886260 -campania n 1 4 @ #p %m %p 1 0 08805122 -campanile n 1 2 @ ~ 1 0 02946127 -campanula n 1 3 @ ~ #m 1 0 12036939 -campanula_americana n 1 1 @ 1 0 12038038 -campanula_aparinoides n 1 1 @ 1 0 12038208 -campanula_carpatica n 1 1 @ 1 0 12039317 -campanula_divaricata n 1 1 @ 1 0 12037864 -campanula_glomerata n 1 1 @ 1 0 12038406 -campanula_medium n 1 1 @ 1 0 12037691 -campanula_persicifolia n 1 1 @ 1 0 12038585 -campanula_pyramidalis n 1 1 @ 1 0 12038760 -campanula_rapunculoides n 1 1 @ 1 0 12037499 -campanula_rapunculus n 1 1 @ 1 0 12038898 -campanula_rotundifolia n 1 1 @ 1 0 12037328 -campanula_trachelium n 1 1 @ 1 0 12039122 -campanulaceae n 1 3 @ #m %m 1 0 12036533 -campanulales n 1 3 @ #m %m 1 0 11911274 -campbell n 1 1 @ 1 0 10880981 -campeachy n 1 3 @ #m %s 1 0 12496949 -campeche n 2 3 @ #p %p 2 0 08740617 08740483 -campephilus n 1 3 @ #m %m 1 0 01840278 -campephilus_principalis n 1 2 @ #m 1 0 01840412 -camper n 2 3 @ ~ + 2 1 09889941 02946348 -camper_trailer n 1 1 @ 1 1 02946509 -campfire n 1 1 @ 1 1 07303585 -campfire_girl n 1 1 @ 1 0 09890072 -campground n 1 1 @ 1 0 08518171 -camphor n 1 3 @ #s + 1 0 14790979 -camphor_ball n 1 2 @ %s 1 0 03788703 -camphor_daisy n 1 2 @ #m 1 0 11976314 -camphor_dune_tansy n 1 2 @ #m 1 0 12021882 -camphor_ice n 1 1 @ 1 0 02946633 -camphor_oil n 1 1 @ 1 0 14791202 -camphor_tree n 1 2 @ #m 1 0 11704620 -camphorated_tincture_of_opium n 1 1 @ 1 0 03889974 -camphorweed n 1 1 @ 1 0 12871696 -camping n 1 2 @ + 1 1 01055165 -camping_area n 1 1 @ 1 0 08518171 -camping_bus n 1 2 @ ~ 1 0 02946348 -camping_ground n 1 1 @ 1 0 08518171 -camping_site n 1 1 @ 1 0 08518171 -campion n 1 3 @ ~ #m 1 0 11815491 -campmate n 1 1 @ 1 1 09890411 -campong n 1 1 @ 1 0 08673039 -camponotus n 1 3 @ #m %m 1 0 02220676 -campsis_radicans n 1 1 @ 1 0 12814235 -campsite n 1 1 @ 1 0 08518171 -campstool n 1 1 @ 1 0 02946753 -camptosorus n 1 2 @ #m 1 0 13181616 -camptosorus_rhizophyllus n 1 1 @ 1 0 13181811 -campus n 1 2 @ %p 1 1 08518374 -campyloneurum n 1 3 @ #m %m 1 0 13174515 -campyloneurum_augustifolium n 1 1 @ 1 0 13175074 -campylorhynchus n 1 3 @ #m %m 1 0 01586170 -campylotropous_ovule n 1 1 @ 1 0 11679779 -camshaft n 1 2 @ #p 1 0 02946824 -camus n 1 1 @ 1 0 10881092 -camwood n 1 2 @ #m 1 0 12509109 -can n 6 5 @ ~ #p %p + 6 1 02946921 13765990 07266776 05559256 04446521 04446276 -can_buoy n 1 1 @ 1 0 07266776 -can_of_worms n 1 2 @ ; 1 0 05687832 -can_opener n 1 2 @ ~ 1 0 02951585 -canaan n 1 4 @ #p %p - 1 0 08798382 -canaanite n 2 1 @ 2 0 09890507 06989325 -canaanitic n 1 2 @ ~ 1 0 06989146 -canaanitic_language n 1 2 @ ~ 1 0 06989146 -canachites n 1 3 @ #m %m 1 0 01797180 -canachites_canadensis n 1 2 @ #m 1 0 01797307 -canada n 1 7 @ #m #p %m %p + - 1 1 08820121 -canada_anemone n 1 1 @ 1 0 11725480 -canada_balsam n 2 1 @ 2 0 14897164 11621950 -canada_garlic n 1 1 @ 1 0 12432574 -canada_ginger n 1 1 @ 1 0 11802410 -canada_goose n 1 2 @ #m 1 0 01857632 -canada_jay n 1 3 @ ~ #m 1 0 01581166 -canada_lily n 1 1 @ 1 0 12426749 -canada_lynx n 1 1 @ 1 0 02127381 -canada_moonseed n 1 2 @ #m 1 0 11713370 -canada_plum n 1 1 @ 1 0 12640284 -canada_porcupine n 1 2 @ #m 1 0 02348173 -canada_thistle n 1 1 @ 1 0 11954161 -canada_violet n 1 1 @ 1 0 12388652 -canada_wild_rye n 1 1 @ 1 0 12119717 -canadian n 2 5 @ ~ #m #p + 2 0 09696585 09231890 -canadian_aspen n 1 1 @ 1 0 12734215 -canadian_bacon n 1 2 @ #p 1 0 07670995 -canadian_capital n 1 2 @ #p 1 0 08827486 -canadian_dollar n 1 1 @ 1 0 13672794 -canadian_falls n 1 2 @ #p 1 0 09232165 -canadian_fleabane n 1 2 @ #m 1 0 11956348 -canadian_french n 1 1 @ 1 0 06965961 -canadian_goldenrod n 1 1 @ 1 0 12016567 -canadian_goose n 1 2 @ #m 1 0 01857632 -canadian_hemlock n 1 1 @ 1 0 11627512 -canadian_maritime_provinces n 1 3 @ #p %p 1 0 08821578 -canadian_pondweed n 1 1 @ 1 0 12614625 -canadian_province n 1 2 @ ~ 1 0 08821885 -canadian_red_pine n 1 1 @ 1 0 11616486 -canadian_river n 1 2 @ #p 1 0 09231890 -canadian_security_intelligence_service n 1 2 @ ; 1 0 08342419 -canadian_shield n 1 2 @ #p 1 0 08821319 -canafistola n 1 1 @ 1 0 12492106 -canafistula n 1 1 @ 1 0 12492106 -canakkale_bogazi n 1 2 @ #p 1 0 09041371 -canal n 3 5 @ ~ %p + ; 3 0 09232317 05250659 02947212 -canal_boat n 1 1 @ 1 0 02947660 -canal_of_schlemm n 1 1 @ 1 0 05251789 -canal_zone n 1 2 @ #p 1 0 08739829 -canaliculus n 1 2 @ + 1 0 05251655 -canalis_cervicis_uteri n 1 1 @ 1 0 05519559 -canalis_inguinalis n 1 1 @ 1 0 05386544 -canalis_vertebralis n 1 2 @ #p 1 0 05249232 -canalisation n 2 2 @ + 2 0 01142843 01142519 -canalization n 2 2 @ + 2 0 01142843 01142519 -canandaigua_lake n 1 2 @ #m 1 0 09232526 -cananga n 1 3 @ #m %m 1 0 11695813 -cananga_odorata n 1 2 @ #m 1 0 11695974 -canangium n 1 3 @ #m %m 1 0 11695813 -canape n 1 1 @ 1 0 07581607 -canara n 1 2 @ #p 1 0 08902753 -canard n 1 1 @ 1 0 06758135 -canarese n 1 1 @ 1 0 09674631 -canaries n 1 3 @ #p %p 1 0 09024972 -canary n 4 5 @ ~ #m + ; 4 0 10091012 09890662 04966114 01533339 -canary_bird n 1 3 @ ~ #m 1 0 01533339 -canary_creeper n 1 1 @ 1 0 12720354 -canary_grass n 1 2 @ #m 1 0 12129986 -canary_island_hare's_foot_fern n 1 2 @ #m 1 0 13188462 -canary_islands n 1 3 @ #p %p 1 0 09024972 -canary_seed n 1 1 @ 1 0 07806120 -canary_whitewood n 1 3 @ #m %s 1 0 11712282 -canary_wine n 1 1 @ 1 0 07894451 -canary_yellow n 1 1 @ 1 0 04966114 -canarybird_flower n 1 1 @ 1 0 12720354 -canarybird_vine n 1 1 @ 1 0 12720354 -canasta n 1 2 @ ~ 1 0 00497060 -canavalia n 1 3 @ #m %m 1 0 12511046 -canavalia_ensiformis n 1 2 @ #m 1 0 12511239 -canavalia_gladiata n 1 2 @ #m 1 0 12511488 -canavanine n 1 1 @ 1 0 14603143 -canberra n 1 2 @ #p 1 0 08832269 -cancan n 1 1 @ 1 0 00531077 -cancel n 1 2 @ + 1 0 06867218 -cancellation n 2 3 @ ~ + 2 1 00232386 07207142 -cancer n 5 7 @ ~ #m #p %m + ; 5 1 14239918 09752657 09232687 08686658 01977832 -cancer_body n 1 1 @ 1 0 09417926 -cancer_borealis n 1 2 @ #m 1 0 01978587 -cancer_cell n 1 2 @ #p 1 0 05431285 -cancer_drug n 1 2 @ ~ 1 0 02722458 -cancer_irroratus n 1 2 @ #m 1 0 01978455 -cancer_juice n 1 1 @ 1 0 05398760 -cancer_magister n 1 3 @ #m %p 1 0 01978287 -cancer_of_the_blood n 1 2 @ ~ 1 0 14242922 -cancer_of_the_liver n 1 1 @ 1 0 14131651 -cancer_the_crab n 1 1 @ 1 0 08686658 -cancer_weed n 1 1 @ 1 0 12865708 -cancerweed n 1 1 @ 1 0 12865708 -cancridae n 1 3 @ #m %m 1 0 01977684 -cancroid n 1 2 @ + 1 0 14242788 -cancun n 1 2 @ #p 1 0 08740729 -candela n 1 1 @ 1 0 13641534 -candelabra n 1 2 @ ~ 1 0 02947818 -candelabrum n 1 2 @ ~ 1 0 02947818 -candelilla n 2 3 @ #m %s 2 0 12928307 12921126 -candelilla_wax n 1 2 @ #s 1 0 14791292 -candid_camera n 1 1 @ 1 0 02947977 -candida n 1 3 @ ~ #m 1 0 13079419 -candida_albicans n 1 3 @ #m #p 1 0 13079567 -candidacy n 1 3 @ ~ %p 1 1 00799537 -candidate n 2 2 @ ~ 2 2 09889691 09890749 -candidature n 1 3 @ ~ %p 1 0 00799537 -candidiasis n 1 3 @ ~ %p 1 0 14181713 -candidness n 1 3 @ ~ + 1 0 04871720 -candied_apple n 1 1 @ 1 0 07600696 -candied_citrus_peel n 1 2 @ ~ 1 0 07601407 -candied_fruit n 1 2 @ ~ 1 0 07600506 -candle n 2 4 @ ~ %p + 2 1 02948072 13641534 -candle_flame n 1 1 @ 1 1 11433435 -candle_holder n 1 3 @ ~ %p 1 0 02948557 -candleberry n 1 1 @ 1 0 11741797 -candlelight n 1 1 @ 1 0 11433435 -candlemaker n 1 1 @ 1 0 09890894 -candlemas n 1 2 @ #p 1 0 15186681 -candlemas_day n 1 2 @ #p 1 0 15186681 -candlenut n 2 4 @ #m #p %p 2 0 12927494 11689957 -candlepin n 1 1 @ 1 0 02948293 -candlepin_bowling n 1 1 @ 1 0 00462686 -candlepins n 1 1 @ 1 0 00462686 -candlepower n 1 1 @ 1 0 05100751 -candlepower_unit n 1 2 @ ~ 1 0 13640050 -candlesnuffer n 1 1 @ 1 0 02948403 -candlestick n 1 3 @ ~ %p 1 0 02948557 -candlestick_tulip n 1 1 @ 1 0 12454556 -candlewick n 2 3 @ #p %p 2 1 02948719 02948834 -candlewood n 1 2 @ ~ 1 0 12381511 -candor n 2 2 @ ~ 2 0 06203030 04871720 -candour n 2 2 @ ~ 2 1 04871720 06203030 -candy n 1 2 @ ~ 1 1 07597365 -candy_apple n 1 1 @ 1 0 07600696 -candy_bar n 1 1 @ 1 0 07598256 -candy_cane n 1 1 @ 1 0 07601572 -candy_corn n 1 1 @ 1 0 07601686 -candy_egg n 1 1 @ 1 0 07842130 -candy_kiss n 1 2 @ ~ 1 0 07606764 -candy_store n 1 2 @ ~ 1 1 03089624 -candy_striper n 1 1 @ 1 0 09890987 -candy_thermometer n 1 1 @ 1 0 02948942 -candyfloss n 1 1 @ 1 0 07605040 -candymaker n 1 2 @ ~ 1 0 09953350 -candytuft n 1 2 @ #m 1 0 11889619 -candyweed n 1 1 @ 1 0 12705458 -cane n 3 3 @ ~ + 3 1 02949202 12136206 02949084 -cane_blight n 1 1 @ 1 0 14216404 -cane_reed n 1 3 @ #m #p 1 0 12148253 -cane_sugar n 2 2 @ ~ 2 0 14791453 07595649 -canebrake n 1 2 @ %p 1 0 08437847 -canebrake_rattler n 1 1 @ 1 0 01755952 -canebrake_rattlesnake n 1 1 @ 1 0 01755952 -canecutter n 1 2 @ #m 1 0 02325884 -canella n 1 2 @ #p 1 0 12372520 -canella-alba n 1 3 @ #m %p 1 0 12372233 -canella_bark n 1 2 @ #p 1 0 12372520 -canella_family n 1 3 @ #m %m 1 0 12371911 -canella_winterana n 1 3 @ #m %p 1 0 12372233 -canellaceae n 1 3 @ #m %m 1 0 12371911 -canetti n 1 1 @ 1 0 10881269 -canfield n 1 1 @ 1 0 00495677 -canful n 1 1 @ 1 0 13765990 -cangue n 1 1 @ 1 0 02949356 -canicola_fever n 1 1 @ 1 0 14273601 -canicula n 1 3 @ #m + 1 0 09435965 -canicular_days n 1 2 @ #p 1 0 15237567 -canicule n 1 3 @ #p + 1 0 15237567 -canid n 1 4 @ ~ #m %p 1 0 02083346 -canidae n 1 3 @ #m %m 1 0 02083038 -canine n 2 5 @ ~ #m %p + 2 0 05307091 02083346 -canine_chorea n 1 1 @ 1 0 14262336 -canine_distemper n 1 1 @ 1 0 14264203 -canine_tooth n 1 2 @ ~ 1 0 05307091 -caning n 1 1 @ 1 1 04582205 -canis n 1 3 @ #m %m 1 0 02083863 -canis_aureus n 1 2 @ #m 1 0 02115096 -canis_dingo n 1 1 @ 1 0 02115641 -canis_familiaris n 1 4 @ ~ #m %p 1 0 02084071 -canis_latrans n 1 2 @ ~ 1 0 02114855 -canis_lupus n 1 1 @ 1 0 02114367 -canis_lupus_tundrarum n 1 1 @ 1 0 02114548 -canis_major n 1 2 @ %m 1 0 09232841 -canis_minor n 1 2 @ %m 1 0 09232989 -canis_niger n 1 1 @ 1 0 02114712 -canis_rufus n 1 1 @ 1 0 02114712 -canistel n 2 4 @ #m #p %p 2 0 12775717 07755262 -canistel_tree n 1 3 @ #m %p 1 0 12775717 -canister n 2 2 @ %p 2 0 02976641 02949542 -canister_shot n 1 2 @ %p 1 0 02976641 -canker n 3 2 @ + 3 0 14279417 14212759 05693669 -canker_brake n 1 2 @ #m 1 0 13199717 -canker_sore n 1 1 @ 1 0 14212759 -cankerweed n 1 2 @ #m 1 0 11997160 -cankerworm n 1 3 @ ~ #m 1 0 02287799 -canna n 1 3 @ ~ #m 1 0 12350758 -canna_edulis n 1 1 @ 1 0 12351091 -canna_generalis n 1 1 @ 1 0 12350959 -canna_indica n 1 1 @ 1 0 12351091 -canna_lily n 1 1 @ 1 0 12350959 -cannabidaceae n 1 3 @ #m %m 1 0 12396255 -cannabin n 1 1 @ 1 0 14791560 -cannabis n 2 6 @ ~ #m #s #p %p 2 0 12396924 02949691 -cannabis_indica n 1 2 @ %p 1 0 12397431 -cannabis_resin n 1 1 @ 1 0 14791560 -cannabis_sativa n 1 2 @ %p 1 0 12397210 -cannaceae n 1 3 @ #m %m 1 0 12350433 -cannae n 1 3 @ #p ; 1 0 01274000 -canned_food n 1 2 @ ~ 1 0 07572957 -canned_foods n 1 2 @ ~ 1 0 07572957 -canned_goods n 1 2 @ ~ 1 0 07572957 -canned_hunt n 1 1 @ 1 0 00452947 -canned_meat n 1 2 @ ~ 1 0 07573103 -cannel_coal n 1 1 @ 1 0 14791722 -cannelloni n 1 1 @ 1 0 07863547 -cannery n 1 2 @ + 1 0 02950018 -cannes n 1 2 @ #p 1 0 08935212 -cannibal n 1 2 @ + 1 0 09891079 -cannibal_mound n 1 1 @ 1 0 07877675 -cannibalism n 1 3 @ ~ + 1 0 00412839 -cannikin n 2 1 @ 2 0 02950186 02950120 -cannister n 1 1 @ 1 0 02949542 -cannon n 6 6 @ ~ #p %p + ; 6 1 02950256 02950826 02950632 02950482 02462828 00500449 -cannon_ball n 1 1 @ 1 0 02950943 -cannon_bone n 1 2 @ #p 1 0 02463024 -cannon_cracker n 1 1 @ 1 0 02951090 -cannon_fire n 1 2 @ ~ 1 0 00994449 -cannon_fodder n 1 2 @ ; 1 1 09891300 -cannonade n 1 2 @ + 1 0 00994623 -cannonball n 1 1 @ 1 0 02950943 -cannoneer n 1 2 @ + 1 0 09811852 -cannula n 1 2 @ + 1 0 02951170 -cannulation n 1 2 @ + 1 0 00321195 -cannulisation n 1 2 @ + 1 0 00321195 -cannulization n 1 2 @ + 1 0 00321195 -canoe n 1 3 @ ~ + 1 0 02951358 -canoe_birch n 1 2 @ #m 1 0 12281974 -canoe_cedar n 1 2 @ #m 1 0 11644046 -canoeist n 1 2 @ + 1 0 09891470 -canola n 1 2 @ %s 1 0 07674001 -canola_oil n 1 2 @ %s 1 0 07674001 -canon n 6 5 @ ~ %p + ; 6 1 06664594 09891613 09233446 07042862 06487729 06430537 -canon_law n 1 2 @ - 1 0 08453299 -canonical_hour n 1 3 @ ~ ; 1 0 15229408 -canonisation n 1 3 @ + ; 1 0 01040390 -canonist n 1 2 @ + 1 0 09891730 -canonization n 1 3 @ + ; 1 0 01040390 -canopic_jar n 1 1 @ 1 0 02951703 -canopic_vase n 1 1 @ 1 0 02951703 -canopus n 1 2 @ #m 1 0 09233134 -canopy n 3 4 @ ~ #p + 3 0 02952237 02952109 02951843 -cant n 5 4 @ ~ + - 5 1 06608277 09213828 07157273 07136098 02833576 -cant_dog n 1 2 @ ~ 1 0 03903133 -cant_hook n 1 1 @ 1 0 02952935 -cantabrian_mountains n 1 2 @ #p 1 0 09233284 -cantabrigian n 1 2 @ #m 1 0 09703708 -cantala n 2 2 @ #m 2 0 12478131 12477583 -cantaloup n 2 3 @ #p %p 2 0 12164656 07755929 -cantaloup_vine n 1 2 @ %p 1 0 12164656 -cantaloupe n 2 3 @ #p %p 2 0 12164656 07755929 -cantaloupe_vine n 1 2 @ %p 1 0 12164656 -cantata n 1 2 @ ~ 1 0 07042249 -canteen n 5 1 @ 5 1 02952374 02952798 02952674 02952585 02952485 -canter n 1 2 @ + 1 1 00288486 -canterbury n 1 2 @ #p 1 0 08883772 -canterbury_bell n 2 2 @ #m 2 0 12832538 12037691 -canterbury_tales n 1 1 @ 1 0 07221623 -cantering_rhythm n 1 1 @ 1 0 14111540 -cantharellus n 1 3 @ #m %m 1 0 13004160 -cantharellus_cibarius n 1 2 @ #m 1 0 13004423 -cantharellus_cinnabarinus n 1 2 @ #m 1 0 13004992 -cantharellus_clavatus n 1 2 @ #m 1 0 13004826 -cantharellus_floccosus n 1 2 @ #m 1 0 13004640 -canthus n 1 3 @ ~ #p 1 0 05314075 -canticle n 1 2 @ ~ 1 0 07036443 -canticle_of_canticles n 1 2 @ #p 1 0 06437824 -canticle_of_simeon n 1 1 @ 1 0 06456642 -canticles n 1 2 @ #p 1 0 06437824 -cantilever n 1 2 @ + 1 1 02953056 -cantilever_bridge n 1 2 @ ~ 1 0 02953197 -cantillation n 1 2 @ + 1 0 01254882 -cantle n 1 2 @ #p 1 1 02953455 -canto n 2 2 @ #p 2 0 07031636 06384269 -canton n 2 4 @ ~ #p + 2 0 08725454 08540770 -canton_crepe n 1 1 @ 1 0 02953552 -canton_flannel n 1 1 @ 1 0 03115400 -canton_ginger n 1 2 @ %p 1 0 12356023 -canton_river n 1 2 @ #p 1 0 09483340 -cantonese n 1 1 @ 1 0 06930427 -cantonese_dialect n 1 1 @ 1 0 06930427 -cantonment n 1 4 @ ~ + ; 1 0 02944826 -cantor n 2 1 @ 2 0 09919771 09891864 -cantus_firmus n 1 1 @ 1 0 07035305 -canuck n 1 1 @ 1 0 09696944 -canulation n 1 2 @ + 1 0 00321195 -canulisation n 1 2 @ + 1 0 00321195 -canulization n 1 2 @ + 1 0 00321195 -canute n 1 1 @ 1 0 10881382 -canute_the_great n 1 1 @ 1 0 10881382 -canvas n 6 5 @ ~ #p %s %p 6 4 02953673 02954068 14513489 02954163 04127904 02953850 -canvas_tent n 1 2 @ ~ 1 0 02954163 -canvasback n 1 2 @ #m 1 0 01850873 -canvasback_duck n 1 2 @ #m 1 0 01850873 -canvass n 7 6 @ ~ #p %s %p + 7 0 14513489 05800998 04127904 02954163 02954068 02953850 02953673 -canvasser n 4 4 @ ~ + ; 4 0 10623354 10565502 10451590 09892066 -canvassing n 1 1 @ 1 0 07245885 -canyon n 1 3 @ %p ; 1 1 09233446 -canyon_live_oak n 1 1 @ 1 0 12270946 -canyon_oak n 1 1 @ 1 0 12270946 -canyon_treefrog n 1 2 @ #m 1 0 01651059 -canyonlands_national_park n 1 2 @ #p 1 0 08603308 -canyonside n 1 2 @ #p 1 1 09233603 -caoutchouc n 1 2 @ ~ 1 0 15006258 -caoutchouc_tree n 1 1 @ 1 0 12926039 -cap n 9 6 @ ~ #p %p + ; 9 4 02954340 02954938 03182232 02955065 11532351 09305358 06657646 03139089 02956247 -cap_opener n 1 1 @ 1 0 02956795 -cap_screw n 1 1 @ 1 0 02957135 -capability n 3 5 ! @ ~ = + 3 1 05202497 14530836 05623181 -capableness n 2 5 ! @ ~ = + 2 0 05623181 05202497 -capaciousness n 2 3 @ ~ + 2 0 05618607 05105265 -capacitance n 2 3 @ ~ #p 2 1 11433546 02955247 -capacitance_unit n 1 2 @ ~ 1 0 13632744 -capacitor n 1 3 @ ~ #p 1 1 02955247 -capacitor_microphone n 1 1 @ 1 0 03087816 -capacity n 9 5 ! @ ~ + ; 9 5 05203397 14530836 13779374 00914795 00720951 13755053 11433546 05622956 05033569 -capacity_measure n 1 3 @ ~ #p 1 0 13600822 -capacity_unit n 1 3 @ ~ #p 1 0 13600822 -caparison n 1 3 @ ~ + 1 0 02955540 -cape n 2 2 @ ~ 2 2 09233715 02955767 -cape_aloe n 1 1 @ 1 0 12436907 -cape_ann n 1 2 @ #p 1 0 09098027 -cape_breton_island n 1 2 @ #p 1 0 08826699 -cape_buffalo n 1 2 @ #m 1 0 02409508 -cape_canaveral n 1 2 @ #p 1 0 09234104 -cape_cod n 1 2 @ #p 1 0 09098184 -cape_cod_bay n 1 2 @ #p 1 0 09234374 -cape_cod_canal n 1 2 @ #p 1 0 09098358 -cape_colony n 1 2 @ #p 1 0 09001580 -cape_dagga n 1 2 @ #m 1 0 12850906 -cape_fear n 1 2 @ #p 1 0 09127014 -cape_fear_river n 1 2 @ #p 1 0 09234491 -cape_flattery n 1 2 @ #p 1 0 09127161 -cape_forget-me-not n 2 1 @ 2 0 12818004 12817855 -cape_froward n 1 2 @ #p 1 0 09127274 -cape_girardeau n 1 2 @ #p 1 0 09106393 -cape_gooseberry n 1 2 @ #m 1 0 12911079 -cape_hatteras n 1 2 @ #p 1 0 09127461 -cape_horn n 1 2 @ #p 1 0 08722645 -cape_hunting_dog n 1 1 @ 1 0 02116738 -cape_hyacinth n 1 1 @ 1 0 12458874 -cape_jasmine n 1 1 @ 1 0 12666965 -cape_jessamine n 1 1 @ 1 0 12666965 -cape_kafferboom n 1 1 @ 1 0 12528109 -cape_kennedy n 1 2 @ #p 1 0 09234104 -cape_lobster n 1 2 @ #m 1 0 01983829 -cape_marigold n 1 2 @ #m 1 0 11961446 -cape_may n 1 2 @ #p 1 0 09114262 -cape_may_warbler n 1 2 @ #m 1 0 01568720 -cape_of_good_hope n 2 1 @ 2 0 09002195 09002096 -cape_of_good_hope_province n 1 2 @ #p 1 0 09001580 -cape_passero n 2 3 @ #p ; 2 0 08811653 01290162 -cape_periwinkle n 1 2 @ #m 1 0 11772408 -cape_primrose n 1 2 @ #m 1 0 12834190 -cape_province n 1 2 @ #p 1 0 09001580 -cape_sable n 2 2 @ #p 2 0 09234885 09234756 -cape_town n 1 2 @ #p 1 0 09000462 -cape_trafalgar n 1 2 @ #p 1 0 09235053 -cape_tulip n 1 2 @ #m 1 0 12420722 -cape_verde n 1 3 @ #p %p 1 0 08717915 -cape_verde_escudo n 1 2 @ %p 1 0 13675824 -cape_verde_islands n 1 3 @ #p %p 1 0 08717730 -cape_verde_monetary_unit n 1 2 @ ~ 1 0 13675708 -cape_yellowwood n 1 2 @ #m 1 0 11652578 -cape_york n 1 2 @ #p 1 0 09235244 -cape_york_peninsula n 1 3 @ #p %p 1 0 09235469 -capek n 1 1 @ 1 0 10881616 -capelan n 1 2 @ #m 1 0 02541257 -capelin n 1 2 @ #m 1 0 02541257 -capeline_bandage n 1 1 @ 1 0 02955944 -capella n 2 3 @ #m %m 2 0 09234654 02031752 -caper n 6 5 @ ~ #m #p + 6 0 11865071 07822053 00782792 00512267 00511817 00427580 -caper_family n 1 3 @ #m %m 1 0 11864602 -caper_sauce n 1 1 @ 1 0 07840219 -caper_spurge n 1 2 @ #m 1 0 12918404 -caper_tree n 2 1 @ 2 0 11865574 11865429 -capercaillie n 1 2 @ #m 1 0 01797020 -capercailzie n 1 2 @ #m 1 0 01797020 -capet n 1 2 @ + 1 0 10891271 -capetian n 1 2 @ #m 1 0 09892156 -capetian_dynasty n 1 2 @ %m 1 0 08154213 -capeweed n 1 2 @ #m 1 0 11984144 -capful n 1 1 @ 1 0 13766080 -capibara n 1 1 @ 1 0 02365480 -capillarity n 1 2 @ + 1 0 11433806 -capillary n 2 3 @ ~ #p 2 1 02956069 05425910 -capillary_action n 1 1 @ 1 1 11433806 -capillary_artery n 1 1 @ 1 0 05337301 -capillary_bed n 1 1 @ 1 1 05268510 -capillary_fracture n 1 1 @ 1 0 14293505 -capillary_tube n 1 2 @ #p 1 0 02956069 -capillary_tubing n 1 2 @ #p 1 1 02956069 -capillary_vein n 1 2 @ ~ 1 0 05426087 -capillary_vessel n 1 2 @ ~ 1 0 05425910 -capital n 8 5 @ ~ #p %m + 8 4 13354420 13353607 08518505 06824227 08518747 08357129 07282929 02956247 -capital_account n 2 3 @ #p ; 2 0 13355656 13355504 -capital_cost n 1 1 @ 1 0 13305932 -capital_expenditure n 1 1 @ 1 0 13278275 -capital_gain n 1 1 @ 1 1 13311830 -capital_gains_tax n 1 1 @ 1 0 13312190 -capital_letter n 1 2 @ ~ 1 0 06824227 -capital_levy n 1 2 @ ~ 1 0 13312329 -capital_loss n 1 1 @ 1 1 13312010 -capital_of_afghanistan n 1 2 @ #p 1 0 08704237 -capital_of_alabama n 1 2 @ #p 1 0 09053801 -capital_of_alaska n 1 2 @ #p 1 0 09055786 -capital_of_antigua_and_barbuda n 1 2 @ #p 1 0 08710325 -capital_of_argentina n 1 2 @ #p 1 0 08712876 -capital_of_arizona n 1 2 @ #p 1 0 09058376 -capital_of_arkansas n 1 2 @ #p 1 0 09060280 -capital_of_armenia n 1 2 @ #p 1 0 09018030 -capital_of_australia n 1 2 @ #p 1 0 08832269 -capital_of_austria n 1 3 @ #p - 1 0 08846324 -capital_of_azerbaijan n 1 2 @ #p 1 0 09018426 -capital_of_bahrain n 1 2 @ #p 1 0 08848568 -capital_of_bangladesh n 1 2 @ #p 1 0 08849226 -capital_of_barbados n 1 2 @ #p 1 0 08755664 -capital_of_belarus n 1 2 @ #p 1 0 09011518 -capital_of_belgium n 1 2 @ #p 1 0 08850450 -capital_of_benin n 1 2 @ #p 1 0 08759684 -capital_of_bolivia n 1 2 @ #p 1 0 08853308 -capital_of_botswana n 1 2 @ #p 1 0 08852685 -capital_of_brazil n 1 2 @ #p 1 0 08855308 -capital_of_burundi n 1 2 @ #p 1 0 08716517 -capital_of_california n 1 2 @ #p 1 0 09064966 -capital_of_cameroon n 1 2 @ #p 1 0 08717510 -capital_of_canada n 1 2 @ #p 1 0 08827486 -capital_of_cape_verde n 1 2 @ #p 1 0 08718094 -capital_of_central_africa n 1 2 @ #p 1 0 08718801 -capital_of_chad n 1 2 @ #p 1 0 08720280 -capital_of_chile n 1 2 @ #p 1 0 08721559 -capital_of_colombia n 1 2 @ #p 1 0 08732979 -capital_of_colorado n 1 2 @ #p 1 0 09068107 -capital_of_connecticut n 1 2 @ #p 1 0 09069190 -capital_of_costa_rica n 1 2 @ #p 1 0 08736376 -capital_of_cuba n 1 2 @ #p 1 0 08750612 -capital_of_cyprus n 1 2 @ #p 1 0 08757132 -capital_of_delaware n 1 2 @ #p 1 0 09070233 -capital_of_djibouti n 1 2 @ #p 1 0 08762823 -capital_of_ecuador n 1 2 @ #p 1 0 08777233 -capital_of_egypt n 1 3 @ #p %m 1 0 08898633 -capital_of_estonia n 1 2 @ #p 1 0 09012530 -capital_of_ethiopia n 1 2 @ #p 1 0 08778401 -capital_of_finland n 1 2 @ #p 1 0 08780018 -capital_of_florida n 1 2 @ #p 1 0 09075170 -capital_of_france n 1 4 @ #p %m %p 1 0 08932568 -capital_of_gabon n 1 2 @ #p 1 0 08945705 -capital_of_gambia n 1 2 @ #p 1 0 08946042 -capital_of_georgia n 2 4 @ #p %p - 2 0 09076675 09019194 -capital_of_ghana n 1 2 @ #p 1 0 08946564 -capital_of_greece n 1 4 @ #p %m %p 1 0 08785343 -capital_of_grenada n 1 2 @ #p 1 0 08947180 -capital_of_guatemala n 1 2 @ #p 1 0 08737376 -capital_of_guinea n 1 2 @ #p 1 0 08947617 -capital_of_guinea-bissau n 1 2 @ #p 1 0 08948027 -capital_of_hawaii n 1 2 @ #p 1 0 09078784 -capital_of_hungary n 1 2 @ #p 1 0 08952423 -capital_of_iceland n 1 2 @ #p 1 0 08953596 -capital_of_idaho n 1 2 @ #p 1 0 09081560 -capital_of_illinois n 1 2 @ #p 1 0 09084483 -capital_of_india n 1 2 @ #p 1 0 08903049 -capital_of_indiana n 1 2 @ #p 1 0 09085593 -capital_of_indonesia n 1 2 @ #p 1 0 08909719 -capital_of_iowa n 1 2 @ #p 1 0 09086995 -capital_of_iran n 1 2 @ #p 1 0 08911421 -capital_of_iraq n 1 2 @ #p 1 0 08914193 -capital_of_ireland n 1 3 @ #p %m 1 0 08889191 -capital_of_israel n 1 3 @ #p %p 1 0 08794798 -capital_of_italy n 1 5 @ #p %m %p - 1 0 08806897 -capital_of_jamaica n 1 2 @ #p 1 0 08754238 -capital_of_japan n 1 2 @ #p 1 0 08923348 -capital_of_jordan n 1 2 @ #p 1 0 08927548 -capital_of_kansas n 1 2 @ #p 1 0 09088815 -capital_of_kazakhstan n 1 1 @ 1 0 09020119 -capital_of_kentucky n 1 2 @ #p 1 0 09089631 -capital_of_kenya n 1 2 @ #p 1 0 08928582 -capital_of_kuwait n 1 2 @ #p 1 0 08929555 -capital_of_kyrgyzstan n 1 2 @ #p 1 0 09020792 -capital_of_laos n 1 2 @ #p 1 0 08957064 -capital_of_latvia n 1 3 @ #m #p 1 0 09013353 -capital_of_lebanon n 1 2 @ #p 1 0 08957806 -capital_of_lesotho n 1 2 @ #p 1 0 08959105 -capital_of_liberia n 1 2 @ #p 1 0 08959495 -capital_of_libya n 1 2 @ #p 1 0 08960099 -capital_of_liechtenstein n 1 2 @ #p 1 0 08960843 -capital_of_lithuania n 1 2 @ #p 1 0 09014273 -capital_of_louisiana n 1 3 @ #p %p 1 0 09091398 -capital_of_luxembourg n 1 2 @ #p 1 0 08961402 -capital_of_madagascar n 1 2 @ #p 1 0 08962465 -capital_of_maine n 1 2 @ #p 1 0 09092822 -capital_of_malawi n 1 2 @ #p 1 0 08963095 -capital_of_malaysia n 1 2 @ #p 1 0 08963969 -capital_of_malta n 1 2 @ #p 1 0 08966647 -capital_of_maryland n 1 2 @ #p 1 0 09094217 -capital_of_massachusetts n 1 4 @ #p %p - 1 0 09095751 -capital_of_mexico n 1 2 @ #p 1 0 08744236 -capital_of_michigan n 1 2 @ #p 1 0 09101318 -capital_of_minnesota n 1 3 @ #m #p 1 0 09103377 -capital_of_mississippi n 1 2 @ #p 1 0 09105003 -capital_of_missouri n 1 2 @ #p 1 0 09106912 -capital_of_moldova n 1 2 @ #p 1 0 09014850 -capital_of_mongolia n 1 2 @ #p 1 0 08969123 -capital_of_montana n 1 2 @ #p 1 0 09109180 -capital_of_morocco n 1 2 @ #p 1 0 08970445 -capital_of_mozambique n 1 2 @ #p 1 0 08971554 -capital_of_nebraska n 1 3 @ #p %p 1 0 09109882 -capital_of_nepal n 1 2 @ #p 1 0 08906809 -capital_of_nevada n 1 2 @ #p 1 0 09110784 -capital_of_new_hampshire n 1 2 @ #p 1 0 09111754 -capital_of_new_jersey n 1 2 @ #p 1 0 09113022 -capital_of_new_mexico n 1 2 @ #p 1 0 09116318 -capital_of_new_york n 1 2 @ #p 1 0 09118313 -capital_of_new_zealand n 1 2 @ #p 1 0 08973202 -capital_of_nicaragua n 1 2 @ #p 1 0 08739047 -capital_of_niger n 1 2 @ #p 1 0 08973647 -capital_of_nigeria n 1 2 @ #p 1 0 08974171 -capital_of_north_carolina n 1 2 @ #p 1 0 09127844 -capital_of_north_dakota n 1 2 @ #p 1 0 09129719 -capital_of_north_korea n 1 2 @ #p 1 0 08955397 -capital_of_northern_ireland n 1 2 @ #p 1 0 08888479 -capital_of_norway n 1 2 @ #p 1 0 08765069 -capital_of_ohio n 1 3 @ #p %p 1 0 09131001 -capital_of_oklahoma n 1 2 @ #p 1 0 09132597 -capital_of_oman n 1 2 @ #p 1 0 08975435 -capital_of_oregon n 1 2 @ #p 1 0 09134202 -capital_of_pakistan n 1 2 @ #p 1 0 08977035 -capital_of_panama n 1 2 @ #p 1 0 08739512 -capital_of_papua_new_guinea n 1 2 @ #p 1 0 08845053 -capital_of_paraguay n 1 2 @ #p 1 0 08978667 -capital_of_pennsylvania n 1 2 @ #p 1 0 09135733 -capital_of_peru n 1 2 @ #p 1 0 08979878 -capital_of_poland n 1 2 @ #p 1 0 08983105 -capital_of_portugal n 1 3 @ #p %p 1 0 08986066 -capital_of_qatar n 1 2 @ #p 1 0 08987262 -capital_of_red_china n 1 3 @ #p %p 1 0 08724726 -capital_of_rhode_island n 1 2 @ #p 1 0 09137451 -capital_of_romania n 1 2 @ #p 1 0 08814474 -capital_of_rwanda n 1 2 @ #p 1 0 08815346 -capital_of_san_marino n 1 2 @ #p 1 0 08992508 -capital_of_saudi_arabia n 1 3 @ ~ #p 1 0 08993871 -capital_of_senegal n 1 2 @ #p 1 0 08996118 -capital_of_serbia_and_montenegro n 1 2 @ #p 1 0 08817418 -capital_of_seychelles n 1 2 @ #p 1 0 08996714 -capital_of_sierra_leone n 1 2 @ #p 1 0 08997132 -capital_of_singapore n 1 2 @ #p 1 0 08997801 -capital_of_slovakia n 1 2 @ #p 1 0 08759263 -capital_of_somalia n 1 2 @ #p 1 0 08998853 -capital_of_south_africa n 1 2 @ #p 1 0 09000272 -capital_of_south_carolina n 1 2 @ #p 1 0 09138358 -capital_of_south_dakota n 1 2 @ #p 1 0 09139508 -capital_of_south_korea n 1 2 @ #p 1 0 08955951 -capital_of_spain n 1 2 @ #p 1 0 09024467 -capital_of_sri_lanka n 1 2 @ #p 1 0 08719465 -capital_of_sudan n 1 2 @ #p 1 0 09030210 -capital_of_suriname n 1 2 @ #p 1 0 09031061 -capital_of_swaziland n 1 2 @ #p 1 0 09031501 -capital_of_sweden n 1 2 @ #p 1 0 08766236 -capital_of_switzerland n 1 2 @ #p 1 0 09032321 -capital_of_syria n 1 3 @ #p %m 1 0 09033936 -capital_of_taiwan n 1 2 @ #p 1 0 08730895 -capital_of_tajikistan n 1 2 @ #p 1 0 09021313 -capital_of_tanzania n 1 2 @ #p 1 0 09034967 -capital_of_tennessee n 1 2 @ #p 1 0 09141297 -capital_of_texas n 1 3 @ #p %p 1 0 09143017 -capital_of_thailand n 1 2 @ #p 1 0 09036880 -capital_of_the_bahamas n 1 2 @ #p 1 0 08847570 -capital_of_the_dominican_republic n 1 2 @ #p 1 0 08752293 -capital_of_the_netherlands n 1 2 @ #p 1 0 08949737 -capital_of_the_philippines n 1 2 @ #p 1 0 08981746 -capital_of_the_russian_federation n 1 3 @ #p %p 1 0 09004068 -capital_of_the_ukraine n 1 2 @ #p 1 0 09015907 -capital_of_the_united_kingdom n 1 4 @ #p %m %p 1 0 08873622 -capital_of_the_united_states n 1 4 @ ~ #p %p 1 0 09070793 -capital_of_tibet n 1 2 @ #p 1 0 08907377 -capital_of_togo n 1 2 @ #p 1 0 08760228 -capital_of_trinidad_and_tobago n 1 2 @ #p 1 0 08756511 -capital_of_tunisia n 1 2 @ #p 1 0 09037838 -capital_of_turkey n 1 2 @ #p 1 0 09040601 -capital_of_turkmenistan n 1 2 @ #p 1 0 09021812 -capital_of_uganda n 1 2 @ #p 1 0 09043926 -capital_of_uruguay n 1 2 @ #p 1 0 09160571 -capital_of_utah n 1 2 @ #p 1 0 09147737 -capital_of_uzbek n 1 2 @ #p 1 0 09022538 -capital_of_vanuatu n 1 2 @ #p 1 0 09160968 -capital_of_venezuela n 1 2 @ #p 1 0 09162276 -capital_of_vermont n 1 2 @ #p 1 0 09148259 -capital_of_vietnam n 1 2 @ #p 1 0 09164095 -capital_of_virginia n 1 2 @ #p 1 0 09150047 -capital_of_washington n 1 2 @ #p 1 0 09154000 -capital_of_west_virginia n 1 2 @ #p 1 0 09155798 -capital_of_western_samoa n 1 2 @ #p 1 0 08991752 -capital_of_wisconsin n 1 3 @ #p %p 1 0 09158024 -capital_of_wyoming n 1 2 @ #p 1 0 09159675 -capital_of_zambia n 1 2 @ #p 1 0 09165996 -capital_of_zimbabwe n 1 2 @ #p 1 0 09167505 -capital_offense n 1 1 @ 1 0 00768353 -capital_punishment n 1 2 @ ~ 1 1 01163779 -capital_ship n 1 1 @ 1 0 02956393 -capital_stock n 2 1 @ 2 1 13342398 13334650 -capitalisation n 4 3 @ ~ + 4 0 06402425 00952214 00951626 00093006 -capitalism n 1 4 ! @ ~ + 1 1 08364143 -capitalist n 2 4 @ ~ + ; 2 1 09892262 09609232 -capitalist_economy n 1 2 @ ~ 1 0 08364143 -capitalization n 4 3 @ ~ + 4 0 06402425 00952214 00951626 00093006 -capitate n 1 2 @ + 1 0 05273223 -capitate_bone n 1 1 @ 1 0 05273223 -capitation n 1 2 @ ~ 1 0 13314226 -capitol n 2 2 @ #p 2 0 02956699 02956500 -capitol_building n 1 2 @ #p 1 0 02956500 -capitol_hill n 1 2 @ #p 1 0 09071349 -capitol_reef_national_park n 1 2 @ #p 1 0 08603525 -capitonidae n 1 3 @ #m %m 1 0 01842111 -capitulation n 3 3 @ ~ + 3 0 06471242 06467868 00067707 -capitulum n 3 3 @ ~ #p 3 0 13133786 13133613 13128156 -capiz n 1 2 @ #m 1 0 01962788 -caplin n 1 2 @ #m 1 0 02541257 -capo n 1 1 @ 1 0 09892410 -capon n 2 2 @ + 2 0 07645384 01792530 -capone n 1 1 @ 1 0 10881784 -caporetto n 1 3 @ #p ; 1 0 01274171 -capote n 2 1 @ 2 0 02957008 02956883 -capoten n 1 2 @ ; 1 0 02958002 -cappadocia n 1 3 @ #p + 1 0 08701161 -capparidaceae n 1 3 @ #m %m 1 0 11864602 -capparis n 1 3 @ #m %m 1 0 11864906 -capparis_arborea n 1 1 @ 1 0 11865276 -capparis_cynophallophora n 1 1 @ 1 0 11865429 -capparis_flexuosa n 1 1 @ 1 0 11865574 -capparis_mitchellii n 1 1 @ 1 0 11865738 -capparis_spinosa n 1 2 @ %p 1 0 11865874 -capped_macaque n 1 1 @ 1 0 02487675 -cappelletti n 1 1 @ 1 0 07701244 -cappuccino n 1 1 @ 1 0 07920349 -cappuccino_coffee n 1 1 @ 1 0 07920349 -capra n 2 3 @ #m %m 2 0 10881986 02416410 -capra_aegagrus n 1 1 @ 1 0 02417663 -capra_falconeri n 1 1 @ 1 0 02417785 -capra_hircus n 1 2 @ ~ 1 0 02417070 -capra_ibex n 1 1 @ 1 0 02417914 -caprella n 1 3 @ #m %m 1 0 01993400 -capreolus n 1 3 @ #m %m 1 0 02433426 -capreolus_capreolus n 1 3 @ ~ #m 1 0 02433546 -capri n 1 2 @ #p 1 0 08805953 -capric_acid n 1 1 @ 1 0 14791830 -capriccio n 1 1 @ 1 0 07280424 -caprice n 1 2 @ + 1 0 07490579 -capriciousness n 2 2 @ + 2 0 04735075 04671841 -capricorn n 3 3 @ #p ; 3 0 09753498 09235713 08687709 -capricorn_the_goat n 1 1 @ 1 0 08687709 -capricornis n 1 3 @ #m %m 1 0 02418934 -capricornus n 1 2 @ #p 1 0 09235713 -caprifig n 1 1 @ 1 0 12401893 -caprifoliaceae n 1 3 @ #m %m 1 0 12671157 -caprimulgid n 1 3 @ ~ #m 1 0 01835276 -caprimulgidae n 1 3 @ #m %m 1 0 01835087 -caprimulgiform_bird n 1 3 @ ~ #m 1 0 01834918 -caprimulgiformes n 1 3 @ #m %m 1 0 01834702 -caprimulgus n 1 3 @ #m %m 1 0 01835584 -caprimulgus_carolinensis n 1 2 @ #m 1 0 01835918 -caprimulgus_europaeus n 1 2 @ #m 1 0 01835769 -caprimulgus_vociferus n 1 2 @ #m 1 0 01836087 -caprine_animal n 1 4 @ ~ #m %p 1 0 02416519 -capriole n 2 2 @ ; 2 0 00512351 00512267 -caproic_acid n 1 1 @ 1 0 14791988 -caproidae n 1 3 @ #m %m 1 0 01453188 -capromyidae n 1 3 @ #m %m 1 0 02366702 -capros n 1 3 @ #m %m 1 0 01453330 -capros_aper n 1 2 @ #m 1 0 01453475 -caprylic_acid n 1 1 @ 1 0 14792146 -capsaicin n 1 2 @ #s 1 0 15032829 -capsella n 1 3 @ #m %m 1 0 11881063 -capsella_bursa-pastoris n 1 2 @ #m 1 0 11881189 -capsicum n 2 6 @ ~ #m %m %s %p 2 0 12900462 12900148 -capsicum_annuum_cerasiforme n 1 2 @ #m 1 0 12901565 -capsicum_annuum_conoides n 1 2 @ #m 1 0 12900783 -capsicum_annuum_grossum n 1 4 @ #m %s %p 1 0 12901264 -capsicum_annuum_longum n 1 4 @ #m %s %p 1 0 12900987 -capsicum_baccatum n 1 2 @ #m 1 0 12901724 -capsicum_frutescens n 1 3 @ #m %p 1 0 12902021 -capsicum_frutescens_baccatum n 1 2 @ #m 1 0 12901724 -capsicum_pepper_plant n 1 5 @ ~ #m %s %p 1 0 12900462 -capsid n 2 4 @ ~ #m #p 2 0 02237581 01329794 -capsidae n 1 3 @ #m %m 1 0 02237239 -capsizing n 1 2 @ ; 1 0 07353232 -capstan n 1 1 @ 1 1 02957252 -capstone n 2 2 @ #p 2 0 05642678 02957427 -capsula_glomeruli n 1 2 @ #p 1 0 05247621 -capsule n 7 5 @ ~ #p %p + 7 2 02957755 02957586 11685179 06468123 05317191 04264765 03267468 -captain n 7 4 @ ~ + ; 7 5 09893191 09892831 09893015 10298912 09893344 09892693 09892513 -captain's_chair n 1 1 @ 1 0 02957862 -captain_bligh n 1 1 @ 1 0 10852961 -captain_bob n 1 1 @ 1 0 10837023 -captain_cook n 1 1 @ 1 0 10908313 -captain_hicks n 1 1 @ 1 0 13744722 -captain_horatio_hornblower n 1 1 @ 1 0 09600439 -captain_james_cook n 1 1 @ 1 0 10908313 -captain_john_smith n 1 1 @ 1 0 11305402 -captain_kidd n 1 1 @ 1 0 11104458 -captaincy n 1 1 @ 1 0 00589769 -captainship n 1 2 @ + 1 0 00589769 -caption n 3 3 @ #p + 3 0 07209691 06347588 06346891 -captivation n 2 2 @ + 2 0 14407899 07497976 -captive n 3 3 @ ~ + 3 2 10476086 09893502 09893600 -captive_finance_company n 1 1 @ 1 0 08421441 -captivity n 2 3 @ ~ + 2 2 13999206 13997050 -captopril n 1 1 @ 1 0 02958002 -captor n 1 3 ! @ ~ 1 1 09609561 -capture n 5 3 @ ~ + 5 2 00088481 13442867 13442715 00775286 00166702 -capturer n 1 3 @ ~ + 1 0 09609561 -capuchin n 2 2 @ #m 2 0 02958264 02492035 -capulin n 2 3 @ #p %p 2 0 12642964 07757874 -capulin_tree n 1 2 @ %p 1 0 12642964 -caput n 2 4 @ ~ #p %p 2 0 13895362 05538625 -capybara n 1 1 @ 1 0 02365480 -car n 5 6 @ ~ #m #p %p - 5 2 02958343 02959942 02960501 02960352 02934451 -car-ferry n 1 1 @ 1 0 02964295 -car-mechanic n 1 1 @ 1 0 09825750 -car_battery n 1 2 @ #p 1 0 02961225 -car_bomb n 1 1 @ 1 0 02961544 -car_boot_sale n 1 2 @ ; 1 0 01118614 -car_care n 1 2 @ ~ 1 0 00267917 -car_carrier n 1 1 @ 1 0 02962414 -car_company n 1 1 @ 1 0 08002269 -car_dealer n 1 1 @ 1 0 08063650 -car_door n 1 4 @ ~ #p %p 1 1 02963821 -car_factory n 1 1 @ 1 0 02761696 -car_horn n 1 3 @ #p %p 1 0 02761834 -car_insurance n 1 2 @ ~ 1 0 13345403 -car_loan n 1 1 @ 1 0 13400024 -car_maker n 1 2 @ #m 1 0 08066763 -car_manufacturer n 1 2 @ #m 1 0 08066763 -car_mirror n 1 3 @ ~ #p 1 0 02965783 -car_park n 1 2 @ ~ 1 0 08615638 -car_part n 1 1 @ 1 0 02762044 -car_pool n 1 1 @ 1 0 08240484 -car_port n 1 1 @ 1 0 02968074 -car_race n 1 2 @ ~ 1 0 07458892 -car_racing n 1 2 @ - 1 0 00449517 -car_rental n 1 1 @ 1 0 13248598 -car_seat n 1 4 @ ~ #p %p 1 0 02970685 -car_sickness n 1 2 @ + 1 0 14203813 -car_tire n 1 2 @ ~ 1 0 02971167 -car_traffic n 1 1 @ 1 0 08426111 -car_train n 1 1 @ 1 0 02971579 -car_transporter n 1 1 @ 1 0 04474035 -car_wheel n 1 4 @ ~ #p %p 1 0 02974003 -car_window n 1 3 @ ~ #p 1 0 02974219 -carabao n 1 1 @ 1 1 02408817 -carabid_beetle n 1 3 @ ~ #m 1 0 02167151 -carabidae n 1 3 @ #m %m 1 0 02166986 -carabineer n 1 2 @ + 1 0 09893746 -carabiner n 1 1 @ 1 0 02960690 -carabinier n 1 1 @ 1 0 09893746 -caracal n 1 1 @ 1 0 02127678 -caracara n 1 2 @ ~ 1 0 01612628 -caracas n 1 2 @ #p 1 0 09162276 -carack n 1 1 @ 1 0 02968210 -caracolito n 1 2 @ #m 1 0 12702124 -caracul n 1 1 @ 1 0 02414043 -carafate n 1 2 @ ; 1 0 04349701 -carafe n 1 1 @ 1 0 02960903 -caragana n 1 3 @ ~ #m 1 0 12511856 -caragana_arborescens n 1 1 @ 1 0 12512095 -caragana_sinica n 1 1 @ 1 0 12512294 -carageen n 1 2 @ #m 1 0 01414633 -carambola n 2 3 @ #p %p 2 0 12704343 07746551 -carambola_tree n 1 2 @ %p 1 0 12704343 -caramel n 3 3 @ ~ + 3 0 07601809 07595180 04973957 -caramel_apple n 1 1 @ 1 0 07600696 -caramel_brown n 1 3 @ ~ + 1 0 04973957 -caramel_bun n 1 1 @ 1 0 07693223 -caramelized_sugar n 1 1 @ 1 0 07595180 -carancha n 1 2 @ #m 1 0 01613177 -caranda n 1 2 @ #m 1 0 12588780 -caranda_palm n 1 2 @ #m 1 0 12588780 -caranday n 1 2 @ #m 1 0 12588780 -carangid n 1 4 @ ~ #m + 1 0 02576223 -carangid_fish n 1 3 @ ~ #m 1 0 02576223 -carangidae n 1 3 @ #m %m 1 0 02575766 -caranx n 1 2 @ #m 1 0 02576460 -caranx_bartholomaei n 1 1 @ 1 0 02577041 -caranx_crysos n 1 1 @ 1 0 02577164 -caranx_hippos n 1 1 @ 1 0 02576906 -carapace n 1 4 @ ~ #p %s 1 0 01903756 -carapidae n 1 3 @ #m %m 1 0 02559232 -carassius n 1 3 @ #m %m 1 0 01443398 -carassius_auratus n 1 3 @ ~ #m 1 0 01443537 -carassius_carassius n 1 2 @ #m 1 0 01443831 -carassius_vulgaris n 1 2 @ #m 1 0 01443831 -carat n 2 3 @ #p %p 2 0 13723577 13585127 -caravaggio n 1 1 @ 1 0 10882089 -caravan n 2 3 @ %m + 2 1 08427629 04520382 -caravan_inn n 1 1 @ 1 0 02961035 -caravanning n 1 1 @ 1 0 01066061 -caravansary n 1 1 @ 1 0 02961035 -caravanserai n 1 1 @ 1 0 02961035 -caraway n 2 5 @ ~ #m #p %p 2 0 12934479 07816726 -caraway_seed n 1 3 @ #s #p 1 0 07827554 -caraway_seed_bread n 1 1 @ 1 0 07681355 -carbamate n 1 2 @ ~ 1 0 14792281 -carbamic_acid n 1 1 @ 1 0 14792389 -carbamide n 1 1 @ 1 0 15085472 -carbide n 1 2 @ ~ 1 0 14792550 -carbine n 1 2 @ + 1 1 02961451 -carbineer n 1 1 @ 1 0 09893746 -carbo_loading n 1 1 @ 1 0 07562651 -carbohydrate n 1 2 @ ~ 1 0 14792703 -carbohydrate_loading n 1 1 @ 1 0 07562651 -carbolic_acid n 1 1 @ 1 0 14796073 -carboloy n 1 2 @ ; 1 0 14793223 -carbomycin n 1 1 @ 1 0 02961714 -carbon n 3 4 @ ~ #s + 3 1 14633206 14797813 02961851 -carbon-14_dating n 1 1 @ 1 0 00992732 -carbon_14 n 1 1 @ 1 0 14633856 -carbon_arc n 1 2 @ ~ 1 0 02961947 -carbon_arc_lamp n 1 2 @ ~ 1 0 02961947 -carbon_atom n 1 1 @ 1 0 14633781 -carbon_black n 1 1 @ 1 0 14793533 -carbon_copy n 1 1 @ 1 0 02961851 -carbon_cycle n 2 1 @ 2 0 13443228 13443120 -carbon_dating n 1 1 @ 1 0 00992732 -carbon_dichloride n 1 1 @ 1 0 04416338 -carbon_dioxide n 1 3 @ ~ + 1 1 14796969 -carbon_dioxide_acidosis n 1 1 @ 1 0 14020271 -carbon_disulfide n 1 1 @ 1 0 14797436 -carbon_monoxide n 1 1 @ 1 0 14797641 -carbon_monoxide_gas n 1 1 @ 1 0 14797641 -carbon_monoxide_poisoning n 1 2 @ %p 1 0 14510401 -carbon_nanotube n 1 1 @ 1 0 14622491 -carbon_paper n 1 1 @ 1 0 14797813 -carbon_process n 1 1 @ 1 0 06681035 -carbon_steel n 1 2 @ ~ 1 0 14803074 -carbon_tet n 1 1 @ 1 0 14798039 -carbon_tetrachloride n 1 1 @ 1 1 14798039 -carbon_tetrahalide n 1 1 @ 1 1 14798331 -carbonado n 2 1 @ 2 0 14793393 07664468 -carbonara n 1 1 @ 1 0 07831146 -carbonate n 1 3 @ ~ + 1 1 14798450 -carbonated_water n 1 2 @ #s 1 0 07936548 -carbonation n 1 2 @ + 1 0 13442998 -carbondale n 1 2 @ #p 1 0 09083151 -carbonic_acid n 1 2 @ + 1 0 14799084 -carbonic_acid_gas n 1 2 @ ~ 1 0 14796969 -carboniferous n 1 4 @ #p %p + 1 0 15127307 -carboniferous_period n 1 3 @ #p %p 1 0 15127307 -carbonisation n 1 2 @ + 1 0 13443370 -carbonization n 1 2 @ + 1 0 13443370 -carbonnade_flamande n 1 1 @ 1 0 07863644 -carbonyl n 1 3 @ %s + 1 0 14790526 -carbonyl_group n 1 2 @ #s 1 0 14790693 -carborundum n 1 2 @ ; 1 0 14799476 -carboxyl n 1 2 @ + 1 0 14790796 -carboxyl_group n 1 1 @ 1 0 14790796 -carboxylic_acid n 1 2 @ ~ 1 0 14739360 -carboxymethyl_cellulose n 1 1 @ 1 1 14794203 -carboy n 1 1 @ 1 0 02962061 -carbuncle n 2 2 @ + 2 0 14877486 14183774 -carburetor n 1 3 @ #p %p 1 0 02962200 -carburettor n 1 3 @ #p %p 1 0 02962200 -carcajou n 1 2 @ #m 1 0 02449183 -carcase n 1 1 @ 1 0 01758757 -carcass n 1 1 @ 1 1 01758757 -carcharhinidae n 1 3 @ #m %m 1 0 01488539 -carcharhinus n 1 3 @ #m %m 1 0 01489275 -carcharhinus_leucas n 1 2 @ #m 1 0 01489501 -carcharhinus_limbatus n 1 2 @ #m 1 0 01489920 -carcharhinus_obscurus n 1 2 @ #m 1 0 01490360 -carcharhinus_plumbeus n 1 2 @ #m 1 0 01489709 -carcharias n 1 3 @ #m %m 1 0 01487312 -carcharias_taurus n 1 2 @ #m 1 0 01487506 -carchariidae n 1 3 @ #m %m 1 0 01487077 -carcharinus_longimanus n 1 2 @ #m 1 0 01490112 -carcharodon n 1 3 @ #m %m 1 0 01484717 -carcharodon_carcharias n 1 2 @ #m 1 0 01484850 -carcinogen n 1 2 @ + 1 0 14793812 -carcinoid n 1 1 @ 1 0 14237148 -carcinoma n 1 3 @ ~ + 1 0 14242337 -carcinoma_in_situ n 1 1 @ 1 0 14247035 -carcinomatous_myopathy n 1 1 @ 1 0 14079156 -carcinosarcoma n 1 1 @ 1 0 14237351 -card n 11 5 @ ~ %p + ; 11 3 02962545 06477371 06627006 14800034 10762342 06793426 06633205 06507941 06492939 06486161 03033986 -card-house n 1 1 @ 1 0 03545756 -card_catalog n 2 2 @ ~ 2 0 06488473 02963302 -card_catalogue n 2 2 @ ~ 2 0 06488473 02963302 -card_game n 1 4 @ ~ %p - 1 0 00488225 -card_index n 1 2 @ ~ 1 0 02963302 -card_player n 1 2 @ ~ 1 0 09894654 -card_shark n 1 1 @ 1 0 09894909 -card_sharp n 1 1 @ 1 0 09894909 -card_sharper n 1 1 @ 1 0 09894909 -card_table n 2 1 @ 2 1 02964196 02964075 -card_trick n 1 1 @ 1 0 00552219 -cardamine n 1 3 @ #m %m 1 0 11881426 -cardamine_bulbifera n 1 1 @ 1 0 11882237 -cardamine_bulbosa n 1 1 @ 1 0 11882821 -cardamine_diphylla n 1 1 @ 1 0 11882426 -cardamine_douglasii n 1 1 @ 1 0 11882972 -cardamine_pratensis n 1 1 @ 1 0 11882074 -cardamine_rotundifolia n 1 1 @ 1 0 11882636 -cardamom n 2 4 @ #m #p %p 2 0 12358293 07822323 -cardamon n 2 4 @ #m #p %p 2 0 12358293 07822323 -cardamum n 1 2 @ #p 1 0 07822323 -cardboard n 1 2 @ ~ 1 1 14799601 -cardcase n 1 1 @ 1 0 02962843 -cardcastle n 1 1 @ 1 0 03545756 -cardholder n 2 1 @ 2 0 09894040 09893916 -cardhouse n 1 1 @ 1 0 03545756 -cardia n 1 1 @ 1 0 05396229 -cardiac_arrest n 1 1 @ 1 0 14024581 -cardiac_arrhythmia n 1 2 @ ~ 1 0 14110674 -cardiac_cycle n 1 1 @ 1 0 07341304 -cardiac_glucoside n 1 2 @ ~ 1 0 15059939 -cardiac_glycoside n 1 2 @ ~ 1 0 15059939 -cardiac_insufficiency n 1 1 @ 1 0 14113636 -cardiac_massage n 1 2 @ #p 1 0 00659349 -cardiac_monitor n 1 2 @ %p 1 0 02962938 -cardiac_murmur n 1 2 @ ~ 1 0 14334814 -cardiac_muscle n 1 3 @ ~ #p 1 0 05389939 -cardiac_output n 1 1 @ 1 0 15277926 -cardiac_pacemaker n 1 1 @ 1 0 05389460 -cardiac_plexus n 1 1 @ 1 0 05506229 -cardiac_resuscitation n 1 2 @ %p 1 0 00832626 -cardiac_rhythm n 1 2 @ ~ 1 0 04768186 -cardiac_sphincter n 1 2 @ #p 1 0 05571132 -cardiac_tamponade n 1 1 @ 1 0 14508578 -cardiac_valve n 1 4 @ ~ #p %p 1 0 05395098 -cardiff n 1 2 @ #p 1 0 08895386 -cardigan n 2 2 @ %p 2 0 02963159 02113186 -cardigan_welsh_corgi n 1 1 @ 1 0 02113186 -cardiidae n 1 3 @ #m %m 1 0 01959668 -cardinal n 4 5 @ ~ #m + ; 4 1 09894143 13597585 04963449 01541386 -cardinal_bellarmine n 1 1 @ 1 0 10842730 -cardinal_compass_point n 1 2 @ ~ 1 0 13831000 -cardinal_flower n 1 1 @ 1 0 12168750 -cardinal_grosbeak n 1 2 @ #m 1 0 01541386 -cardinal_newman n 1 1 @ 1 0 11204962 -cardinal_number n 1 2 @ ~ 1 0 13597585 -cardinal_richelieu n 1 1 @ 1 0 11261483 -cardinal_tetra n 1 2 @ #m 1 0 02584145 -cardinal_vein n 1 2 @ ~ 1 0 05359828 -cardinal_virtue n 1 2 @ ~ 1 0 04847600 -cardinalate n 1 1 @ 1 0 08153022 -cardinalfish n 1 3 @ ~ #m 1 0 02572196 -cardinalis_cardinalis n 1 2 @ #m 1 0 01541386 -cardinality n 1 2 @ ; 1 0 13591586 -cardinalship n 1 2 @ + 1 0 00589948 -cardiogenic_shock n 1 1 @ 1 0 14067481 -cardiogram n 1 2 @ #p 1 0 07004057 -cardiograph n 2 2 @ #p 2 0 02963503 02781764 -cardiography n 1 1 @ 1 0 00832092 -cardioid n 1 1 @ 1 0 13909632 -cardioid_microphone n 1 1 @ 1 0 02963692 -cardiologist n 1 2 @ + 1 0 09894445 -cardiology n 1 2 @ + 1 0 06047275 -cardiomegaly n 1 1 @ 1 1 14334631 -cardiomyopathy n 1 2 @ ~ 1 0 14110966 -cardiopathy n 1 2 @ ~ 1 0 14103288 -cardiopulmonary_arrest n 1 1 @ 1 0 14024581 -cardiopulmonary_exercise n 1 2 @ ~ 1 0 00435563 -cardiopulmonary_resuscitation n 1 2 @ %p 1 0 00832626 -cardiospasm n 1 1 @ 1 0 00226711 -cardiospermum n 1 3 @ #m %m 1 0 12742546 -cardiospermum_grandiflorum n 1 1 @ 1 0 12742878 -cardiospermum_halicacabum n 1 1 @ 1 0 12743009 -cardiovascular_disease n 1 2 @ ~ 1 0 14057371 -cardiovascular_system n 1 4 @ ~ #p %p 1 0 05511618 -carditis n 1 2 @ ~ 1 0 14338942 -cardium n 1 3 @ #m %m 1 0 01959834 -cardium_edule n 1 2 @ %p 1 0 01960177 -cardizem n 1 2 @ ; 1 0 03198637 -cardoon n 2 4 @ #m #p %p 2 0 11959862 07730033 -cardroom n 1 1 @ 1 1 02963987 -cards n 1 4 @ ~ %p - 1 1 00488225 -cardsharp n 1 1 @ 1 0 09894909 -cardsharper n 1 1 @ 1 0 09894909 -carducci n 1 1 @ 1 0 10882293 -carduelinae n 1 2 @ #m 1 0 01530691 -carduelis n 1 3 @ #m %m 1 0 01530846 -carduelis_cannabina n 1 2 @ #m 1 0 01531344 -carduelis_carduelis n 1 2 @ #m 1 0 01531178 -carduelis_cucullata n 1 2 @ #m 1 0 01531639 -carduelis_flammea n 1 2 @ #m 1 0 01531811 -carduelis_hornemanni n 1 2 @ #m 1 0 01531971 -carduelis_spinus n 1 1 @ 1 0 01531512 -cardura n 1 1 @ 1 0 03229656 -carduus n 1 3 @ #m %m 1 0 11944569 -carduus_crispus n 1 2 @ #m 1 0 11944751 -carduus_nutans n 1 2 @ #m 1 0 11944954 -care n 6 3 @ ~ + 6 6 00654885 05615869 07524529 07505047 00829378 00267522 -care_delivery n 1 1 @ 1 0 01060101 -careen n 1 2 @ + 1 0 00348008 -career n 2 3 @ ~ + 2 2 00583246 00282613 -career_counseling n 1 1 @ 1 0 06651047 -career_girl n 1 1 @ 1 0 09895138 -career_man n 1 1 @ 1 0 09895480 -careerism n 1 2 @ + 1 1 00413086 -careerist n 1 3 @ ~ + 1 0 09895222 -carefreeness n 2 3 @ ~ + 2 0 07530866 04672210 -carefulness n 2 5 ! @ ~ = + 2 0 04664058 04663494 -caregiver n 2 3 @ ~ #m 2 0 10165109 09895561 -carelessness n 2 4 ! @ ~ + 2 2 04664964 00739270 -carelian n 2 2 @ #m 2 0 09706746 06958063 -caress n 1 2 @ + 1 1 00144778 -caressing n 1 2 @ ~ 1 0 00854000 -caret n 1 1 @ 1 0 06818603 -caretaker n 2 2 @ ~ 2 1 09895701 09895902 -caretta n 1 3 @ #m %m 1 0 01663939 -caretta_caretta n 1 2 @ #m 1 0 01664065 -carew n 1 1 @ 1 0 10882436 -carex n 1 3 @ #m %m 1 0 12151814 -carex_arenaria n 1 2 @ #m 1 0 12152031 -carex_pseudocyperus n 1 2 @ #m 1 0 12152251 -carfare n 1 1 @ 1 0 13308432 -carful n 1 1 @ 1 0 13766166 -cargo n 1 1 @ 1 1 02964389 -cargo_area n 1 2 @ #p 1 0 02964634 -cargo_container n 1 1 @ 1 0 02964843 -cargo_cult n 2 2 @ ; 2 0 08151753 06225357 -cargo_deck n 1 2 @ #p 1 0 02964634 -cargo_door n 1 1 @ 1 0 02964934 -cargo_hatch n 1 1 @ 1 0 02965024 -cargo_helicopter n 1 1 @ 1 0 02965122 -cargo_hold n 1 2 @ #p 1 0 02964634 -cargo_liner n 1 1 @ 1 0 02965216 -cargo_ship n 1 3 @ ~ %p 1 0 02965300 -cargo_ships n 1 1 @ 1 0 04196502 -cargo_vessel n 1 3 @ ~ %p 1 0 02965300 -carhop n 1 1 @ 1 0 09896084 -cariama n 1 3 @ #m %m 1 0 02014061 -cariama_cristata n 1 2 @ #m 1 0 02014237 -cariamidae n 1 3 @ #m %m 1 0 02013889 -carib n 2 1 @ 2 0 09726811 06917926 -carib_indian n 1 1 @ 1 0 09726811 -carib_wood n 1 2 @ #m 1 0 12569037 -caribbean n 2 2 @ %p 2 1 09235894 08709038 -caribbean_island n 1 2 @ #p 1 1 08746942 -caribbean_language n 1 1 @ 1 0 06917926 -caribbean_sea n 1 2 @ %p 1 0 09235894 -caribe n 1 2 @ #m 1 0 02584449 -caribees n 1 3 @ #p %p 1 0 08748280 -caribou n 1 3 @ ~ #m 1 0 02433925 -carica n 1 3 @ #m %m 1 0 12372932 -carica_papaya n 1 3 @ #m %p 1 0 12373100 -caricaceae n 1 3 @ #m %m 1 0 12372708 -caricature n 1 3 @ ~ + 1 0 06780069 -caricature_plant n 1 2 @ #m 1 0 12812801 -caricaturist n 1 3 @ ~ + 1 0 09896170 -caries n 1 2 @ + 1 0 13444513 -carillon n 2 2 @ ~ 2 0 02965529 00544441 -carillon_playing n 1 2 @ ~ 1 0 00544441 -carillonneur n 1 1 @ 1 0 09896311 -carina n 2 4 @ ~ #p %m 2 0 09236077 05227209 -carina_fornicis n 1 2 @ #p 1 0 05227438 -carinate n 1 4 ! @ %p + 1 0 01517966 -carinate_bird n 1 2 @ %p 1 0 01517966 -caring n 1 3 @ ~ + 1 0 07546125 -carioca n 3 2 @ #m 3 0 09695019 07055203 00535455 -carissa n 1 3 @ ~ #m 1 0 11771539 -carissa_bispinosa n 1 1 @ 1 0 11771746 -carissa_grandiflora n 1 2 @ %p 1 0 11771924 -carissa_macrocarpa n 1 2 @ %p 1 0 11771924 -carissa_plum n 1 2 @ #p 1 0 07746910 -carjacking n 1 2 @ + 1 0 00227484 -carl_anderson n 1 1 @ 1 0 10817244 -carl_august_nielsen n 1 1 @ 1 0 11207006 -carl_clinton_van_doren n 1 1 @ 1 0 11359697 -carl_david_anderson n 1 1 @ 1 0 10817244 -carl_gustaf_mossander n 1 1 @ 1 0 11193250 -carl_gustav_jung n 1 2 @ - 1 0 11094611 -carl_jung n 1 2 @ - 1 0 11094611 -carl_lewis n 1 1 @ 1 0 11131135 -carl_maria_von_weber n 1 1 @ 1 0 11378462 -carl_nielsen n 1 1 @ 1 0 11207006 -carl_orff n 1 1 @ 1 0 11216386 -carl_rogers n 1 1 @ 1 0 11268523 -carl_sandburg n 1 1 @ 1 0 11280213 -carl_van_doren n 1 1 @ 1 0 11359697 -carl_von_linne n 1 1 @ 1 0 11133551 -carl_xvi_gustaf n 1 1 @ 1 0 10882588 -carl_xvi_gustav n 1 1 @ 1 0 10882588 -carl_yastrzemski n 1 1 @ 1 0 11402341 -carlina n 1 3 @ #m %m 1 0 11945228 -carlina_acaulis n 1 1 @ 1 0 11945514 -carlina_vulgaris n 1 1 @ 1 0 11945783 -carline_thistle n 1 3 @ ~ #m 1 0 11945367 -carling_float n 1 1 @ 1 0 03663781 -carlo_goldoni n 1 1 @ 1 0 11005320 -carload n 2 1 @ 2 1 07976069 13775523 -carlos n 1 2 @ ; 1 0 11201386 -carlos_chavez n 1 1 @ 1 0 10894365 -carlos_fuentes n 1 1 @ 1 0 10984876 -carlos_the_jackal n 1 2 @ ; 1 0 11201386 -carlovingian n 1 3 @ ~ #m 1 0 09896520 -carlovingian_dynasty n 1 2 @ %m 1 0 08154363 -carlsbad n 1 2 @ #p 1 0 09115478 -carlsbad_caverns n 1 2 @ #p 1 0 09236251 -carlsbad_caverns_national_park n 1 2 @ #p 1 0 08603704 -carlyle n 1 1 @ 1 0 10882706 -carmaker n 1 2 @ #m 1 0 08066763 -carmelite n 1 3 @ #m + 1 0 10778148 -carmelite_order n 1 2 @ %m 1 0 08148827 -carmichael n 1 1 @ 1 0 10882846 -carminative n 1 2 @ + 1 0 02965617 -carmine n 1 2 @ + 1 0 04963449 -carnage n 1 2 @ ~ 1 0 00223983 -carnal_abuse n 2 1 @ 2 0 00847167 00846961 -carnal_knowledge n 1 3 @ ~ %p 1 0 00845523 -carnality n 1 2 @ + 1 0 07490214 -carnallite n 1 2 @ %s 1 0 14669413 -carnassial_tooth n 1 1 @ 1 0 05283649 -carnation n 2 2 @ + 2 0 11808468 04971211 -carnation_family n 1 3 @ #m %m 1 0 11804604 -carnauba n 2 4 @ #m #s %s 2 0 12588584 12588320 -carnauba_palm n 1 3 @ #m %s 1 0 12588320 -carnauba_wax n 1 2 @ #s 1 0 12588584 -carnegie n 2 1 @ 2 0 10883202 10882988 -carnegie_mellon_university n 1 2 @ #p 1 0 02965936 -carnegiea n 1 3 @ #m %m 1 0 11844203 -carnegiea_gigantea n 1 2 @ #m 1 0 11844371 -carnelian n 1 1 @ 1 0 14801594 -carniolan_bee n 1 1 @ 1 0 02208979 -carnival n 3 3 @ ~ %p 3 1 00511555 00552679 00519333 -carnivora n 1 3 @ #m %m 1 0 02074915 -carnivore n 2 3 @ ~ #m 2 0 02075296 01324431 -carnivorous_bat n 1 3 @ ~ #m 1 0 02141306 -carnivorous_plant n 1 2 @ ~ 1 0 12778605 -carnosaur n 1 2 @ #m 1 0 01713508 -carnosaura n 1 3 @ #m %m 1 0 01713310 -carnot n 1 1 @ 1 0 10883380 -carnot's_ideal_cycle n 1 1 @ 1 0 07341665 -carnot_cycle n 1 1 @ 1 0 07341665 -carnotite n 1 2 @ %s 1 0 14669677 -carob n 3 6 @ #m #s #p %s %p 3 0 12493426 12493208 07598335 -carob_bar n 1 1 @ 1 0 07598529 -carob_bean n 1 3 @ #s #p 1 0 12493426 -carob_bean_tree n 1 3 @ #m %p 1 0 12493208 -carob_powder n 1 2 @ %s 1 0 07598335 -carob_tree n 1 3 @ #m %p 1 0 12493208 -caroche n 1 1 @ 1 0 02966068 -carol n 2 2 @ + 2 0 07035747 00546613 -caroler n 1 2 @ + 1 0 09896401 -carolina n 1 3 @ #p %p 1 0 09052835 -carolina_allspice n 1 1 @ 1 0 11701066 -carolina_buckthorn n 1 1 @ 1 0 13141972 -carolina_chickadee n 1 1 @ 1 0 01592540 -carolina_hemlock n 1 1 @ 1 0 11627714 -carolina_jasmine n 1 2 @ #m 1 0 12485981 -carolina_lupine n 1 1 @ 1 0 12573647 -carolina_moonseed n 1 2 @ #m 1 0 11713763 -carolina_parakeet n 1 2 @ #m 1 0 01821554 -carolina_pond_fern n 1 2 @ #m 1 0 12959538 -carolina_spring_beauty n 1 2 @ #m 1 0 11859275 -carolina_wren n 1 2 @ #m 1 0 01586020 -carolinas n 1 3 @ #p %p 1 0 09052835 -caroline_islands n 1 2 @ #p 1 0 08838716 -caroling n 1 1 @ 1 0 00546861 -carolingian n 1 3 @ ~ #m 1 0 09896520 -carolingian_dynasty n 1 2 @ %m 1 0 08154363 -carolinian n 1 1 @ 1 0 09741722 -caroller n 1 2 @ + 1 0 09896401 -carolus n 1 1 @ 1 0 10891981 -carolus_linnaeus n 1 1 @ 1 0 11133551 -carom n 2 3 @ #p + 2 0 07409475 00500449 -carotene n 2 2 @ ~ 2 0 15090535 14721236 -carotenemia n 1 1 @ 1 0 14566606 -carotenoid n 1 2 @ ~ 1 0 14720962 -carothers n 1 1 @ 1 0 10883533 -carotid_artery n 1 3 @ ~ #p 1 0 05339357 -carotid_body n 1 1 @ 1 0 05340121 -carotid_plexus n 1 1 @ 1 0 05506369 -carotin n 1 2 @ ~ 1 0 15090535 -carousal n 1 2 @ + 1 0 00511041 -carouse n 1 2 @ + 1 0 00511041 -carousel n 2 1 @ 2 0 02966372 02966193 -carouser n 1 2 @ + 1 0 10769321 -carp n 2 4 @ ~ #m #p 2 0 07779123 01439514 -carpal n 1 3 @ ~ #p 1 0 05271814 -carpal_bone n 1 3 @ ~ #p 1 0 05271814 -carpal_tunnel n 1 2 @ #p 1 0 05272110 -carpal_tunnel_syndrome n 1 1 @ 1 0 14057569 -carpathian_mountains n 1 3 @ #p %p 1 0 09236423 -carpathians n 1 3 @ #p %p 1 0 09236423 -carpel n 1 4 @ ~ #p + 1 0 11677743 -carpentaria n 1 2 @ #p 1 0 09297920 -carpenter n 1 3 @ ~ + 1 1 09896685 -carpenter's_hammer n 1 1 @ 1 0 02966545 -carpenter's_kit n 1 1 @ 1 0 02966687 -carpenter's_level n 1 3 @ ~ %p 1 0 02966786 -carpenter's_mallet n 1 1 @ 1 0 02966942 -carpenter's_plane n 1 2 @ ~ 1 0 03954731 -carpenter's_rule n 1 1 @ 1 0 02967081 -carpenter's_saw n 1 2 @ ~ 1 0 03488188 -carpenter's_square n 1 1 @ 1 0 02967170 -carpenter_ant n 1 2 @ #m 1 0 02220804 -carpenter_bee n 1 2 @ #m 1 0 02209354 -carpenteria n 1 2 @ #m 1 0 12789554 -carpenteria_californica n 1 2 @ #m 1 0 12789554 -carpentry n 1 4 @ ~ + - 1 1 00607775 -carper n 1 2 @ + 1 0 09896826 -carpet n 2 4 @ ~ %p + 2 1 04118021 09236766 -carpet_beater n 1 2 @ %p 1 0 02967407 -carpet_beetle n 1 3 @ ~ #m 1 0 02170400 -carpet_bombing n 1 2 @ + 1 0 00978993 -carpet_bug n 1 3 @ ~ #m 1 0 02170400 -carpet_grass n 1 2 @ #m 1 0 12140511 -carpet_knight n 1 1 @ 1 0 09897170 -carpet_loom n 1 1 @ 1 0 02967540 -carpet_moth n 1 2 @ #m 1 0 02292692 -carpet_pad n 1 2 @ ~ 1 0 02967626 -carpet_shark n 1 2 @ #m 1 0 01486540 -carpet_slipper n 1 2 @ ~ 1 0 04241394 -carpet_snake n 1 1 @ 1 0 01743936 -carpet_sweeper n 1 1 @ 1 0 02967782 -carpet_tack n 1 1 @ 1 0 02967991 -carpetbag n 1 1 @ 1 0 02967294 -carpetbagger n 1 1 @ 1 0 09896973 -carpeting n 1 4 @ ~ %p + 1 0 04118021 -carpetweed n 1 2 @ #m 1 0 11821534 -carpetweed_family n 1 3 @ #m %m 1 0 11818945 -carphophis n 1 3 @ #m %m 1 0 01728445 -carphophis_amoenus n 1 2 @ #m 1 0 01728572 -carpinaceae n 1 2 @ #m 1 0 12286372 -carping n 1 1 @ 1 1 06711030 -carpinus n 1 3 @ #m %m 1 0 12286581 -carpinus_betulus n 1 2 @ #m 1 0 12286988 -carpinus_caroliniana n 1 2 @ #m 1 0 12287195 -carpobrotus n 1 3 @ #m %m 1 0 11819354 -carpobrotus_edulis n 1 2 @ #m 1 0 11819509 -carpocapsa n 1 3 @ #m %m 1 0 02285052 -carpocapsa_pomonella n 1 2 @ #m 1 0 02285179 -carpodacus n 1 3 @ #m %m 1 0 01532664 -carpodacus_mexicanus n 1 2 @ #m 1 0 01532829 -carpodacus_purpureus n 1 2 @ #m 1 0 01533000 -carpophore n 1 1 @ 1 0 11677902 -carport n 1 1 @ 1 0 02968074 -carpospore n 1 3 @ #p + 1 0 11548728 -carpus n 1 4 @ #p %p + 1 0 05584928 -carrack n 1 1 @ 1 0 02968210 -carrageen n 1 2 @ #m 1 0 01414633 -carrageenan n 1 1 @ 1 0 14801711 -carrageenin n 1 1 @ 1 0 14801711 -carragheen n 1 2 @ #m 1 0 01414633 -carrefour n 1 3 @ ~ #p 1 0 03581125 -carrel n 2 2 @ #p 2 0 10883688 02968333 -carrell n 1 2 @ #p 1 0 02968333 -carrere n 1 1 @ 1 0 10883871 -carriage n 5 6 @ ~ #m #p %p + 5 2 03895866 02968473 05002822 02969010 02766534 -carriage_bolt n 1 1 @ 1 0 02969163 -carriage_dog n 1 2 @ ~ 1 0 02110341 -carriage_house n 1 1 @ 1 0 03055857 -carriage_return n 1 1 @ 1 0 13443537 -carriage_trade n 1 1 @ 1 0 01106715 -carriage_wrench n 1 1 @ 1 0 02969527 -carriageway n 1 3 @ #p ; 1 0 02969323 -carrick_bend n 1 1 @ 1 0 02969634 -carrick_bitt n 1 1 @ 1 0 02969754 -carrier n 11 5 @ ~ %p + ; 11 5 09897696 02970100 02687172 14727153 08057633 11501230 10283037 09897603 09897350 02969886 01314145 -carrier_bag n 1 2 @ ~ 1 0 04122825 -carrier_electrophoresis n 1 1 @ 1 0 13532059 -carrier_pigeon n 1 1 @ 1 0 01815036 -carrier_wave n 1 1 @ 1 0 11501230 -carrion n 1 1 @ 1 0 01758895 -carrion_crow n 1 2 @ #m 1 0 01620414 -carrion_flower n 1 3 @ ~ #m 1 0 13238375 -carrion_fungus n 1 3 @ ~ #m 1 0 13040303 -carrizo n 1 2 @ #m 1 0 12130937 -carroll n 1 1 @ 1 0 10884061 -carron_oil n 1 1 @ 1 0 02970311 -carrot n 4 5 @ #m #p %p + 4 0 12937678 12937388 07730207 01219722 -carrot_family n 1 4 @ ~ #m %m 1 0 12930044 -carrot_juice n 1 1 @ 1 0 07925608 -carrot_pudding n 1 1 @ 1 0 07617839 -carrot_stick n 1 1 @ 1 0 07730320 -carrottop n 1 1 @ 1 0 10513823 -carrousel n 2 1 @ 2 0 02966372 02966193 -carry n 1 3 @ ~ + 1 1 00318735 -carry-forward n 1 2 @ ; 1 0 13409647 -carry-over n 2 4 @ ~ + ; 2 1 05756203 13409647 -carry_amelia_moore_nation n 1 1 @ 1 0 11201061 -carry_nation n 1 1 @ 1 0 11201061 -carryall n 1 1 @ 1 0 02970408 -carrycot n 1 2 @ %p 1 0 02970534 -carrying_charge n 2 1 @ 2 0 13307370 13306190 -carrying_cost n 1 1 @ 1 0 13306190 -carrying_into_action n 1 2 @ ~ 1 1 00097504 -carrying_out n 2 2 @ ~ 2 0 01127379 00097504 -carson n 2 1 @ 2 0 10884597 10884369 -carson_city n 1 2 @ #p 1 0 09110784 -carson_mccullers n 1 1 @ 1 0 11168839 -carson_smith_mccullers n 1 1 @ 1 0 11168839 -cart n 2 4 @ ~ %p + 2 2 02970849 03484083 -cart-track_plant n 1 1 @ 1 0 12599435 -cart_horse n 1 1 @ 1 0 02386853 -cart_track n 1 2 @ ~ 1 0 04463510 -cartage n 1 2 @ + 1 0 01106118 -cartagena n 2 2 @ #p 2 0 09025584 08733415 -cartagena_bark n 1 2 @ #m 1 0 12664005 -carte n 1 2 @ ~ 1 0 06492939 -carte_blanche n 1 1 @ 1 0 05197701 -carte_du_jour n 1 2 @ ~ 1 0 06492939 -cartel n 1 2 @ ~ 1 0 08236621 -carter n 3 2 @ + 3 0 10885006 10884831 09897914 -carter_administration n 1 1 @ 1 0 08166083 -cartesian n 1 1 @ 1 0 09898020 -cartesian_coordinate n 1 2 @ ~ 1 0 06011092 -cartesian_coordinate_system n 1 1 @ 1 0 05728271 -cartesian_plane n 1 1 @ 1 0 13861449 -cartesian_product n 1 1 @ 1 0 07999068 -carthage n 1 4 @ #p %m + 1 0 08919949 -carthaginian n 1 4 @ ~ #m + 1 0 09697070 -carthamus n 1 3 @ #m %m 1 0 11945930 -carthamus_tinctorius n 1 4 @ #m %s %p 1 0 11946051 -carthorse n 1 1 @ 1 0 02386853 -carthusian n 1 2 @ #m 1 0 09898107 -carthusian_order n 1 2 @ %m 1 0 08149004 -cartier n 1 1 @ 1 0 10885176 -cartilage n 1 6 @ ~ #s %s %p + 1 1 05288091 -cartilage_bone n 1 1 @ 1 0 05273555 -cartilaginification n 1 1 @ 1 0 14183926 -cartilaginous_fish n 1 3 @ ~ #m 1 0 01480516 -cartilaginous_structure n 1 3 @ ~ %s 1 0 05531161 -cartilaginous_tube n 1 2 @ ~ 1 0 05531379 -carting n 1 1 @ 1 0 01106118 -cartload n 1 1 @ 1 0 13766252 -cartographer n 1 3 @ ~ + 1 0 09898215 -cartography n 1 2 @ + 1 0 00924579 -carton n 2 2 @ ~ 2 1 13766337 02971356 -cartonful n 1 1 @ 1 0 13766337 -cartoon n 2 4 @ ~ #p + 2 1 06780678 06616464 -cartoon_strip n 1 3 @ #p %p 1 0 07003352 -cartoonist n 1 3 @ ~ + 1 1 09898346 -cartouch n 1 1 @ 1 0 02971473 -cartouche n 1 1 @ 1 0 02971473 -cartridge n 4 4 @ ~ #p %p 4 1 02971691 03704376 02972182 02971940 -cartridge_belt n 1 2 @ ~ 1 1 02972397 -cartridge_brass n 1 1 @ 1 0 14794534 -cartridge_clip n 1 3 @ ~ #p 1 0 02973017 -cartridge_ejector n 1 2 @ #p 1 0 02972533 -cartridge_extractor n 1 2 @ #p 1 0 02972714 -cartridge_font n 1 2 @ ; 1 0 06826407 -cartridge_fuse n 1 1 @ 1 0 02972934 -cartridge_holder n 1 3 @ ~ #p 1 0 02973017 -cartridge_paper n 2 1 @ 2 0 14799927 14799833 -cartridge_remover n 1 2 @ #p 1 0 02972714 -cartroad n 1 2 @ ~ 1 0 04463510 -cartwheel n 3 4 @ #p %p + 3 2 02973236 00434657 13392262 -cartwright n 2 1 @ 2 0 10885352 09898692 -carum n 1 3 @ #m %m 1 0 12934368 -carum_carvi n 1 4 @ ~ #m %p 1 0 12934479 -caruncle n 1 3 @ ~ + 1 0 05471181 -caruncula n 1 3 @ ~ + 1 0 05471181 -caruso n 1 1 @ 1 0 10885487 -carvedilol n 1 1 @ 1 0 02973395 -carver n 4 3 @ ~ + 4 0 10885603 10789963 10566072 09985470 -carving n 3 3 @ ~ + 3 1 02973558 00942234 00937656 -carving_fork n 1 1 @ 1 0 02973805 -carving_knife n 1 1 @ 1 0 02973904 -cary_grant n 1 1 @ 1 0 11011398 -carya n 1 3 @ #m %m 1 0 12319687 -carya_aquatica n 1 2 @ #m 1 0 12320414 -carya_cordiformis n 1 2 @ #m 1 0 12320806 -carya_glabra n 1 2 @ #m 1 0 12320627 -carya_illinoensis n 1 4 @ #m %s %p 1 0 12321077 -carya_illinoinsis n 1 4 @ #m %s %p 1 0 12321077 -carya_laciniosa n 1 3 @ #m %p 1 0 12321395 -carya_myristicaeformis n 1 2 @ #m 1 0 12321669 -carya_myristiciformis n 1 2 @ #m 1 0 12321669 -carya_ovata n 1 3 @ #m %p 1 0 12321873 -carya_tomentosa n 1 2 @ #m 1 0 12322099 -caryatid n 1 1 @ 1 0 02974348 -caryocar n 1 3 @ #m %m 1 0 12373526 -caryocar_nuciferum n 1 3 @ #m %p 1 0 12373739 -caryocaraceae n 1 3 @ #m %m 1 0 12373361 -caryophyllaceae n 1 4 @ #m %m + 1 0 11804604 -caryophyllaceous_plant n 1 2 @ #m 1 0 11805255 -caryophyllales n 1 3 @ #m %m 1 0 11804082 -caryophyllidae n 1 3 @ #m %m 1 0 11803475 -caryophylloid_dicot_family n 1 3 @ ~ #m 1 0 11565040 -caryophylloid_dicot_genus n 1 3 @ ~ #m 1 0 11573660 -caryopsis n 1 2 @ ~ 1 0 12156819 -caryota n 1 3 @ #m %m 1 0 12586867 -caryota_urens n 1 1 @ 1 0 12587132 -casaba n 1 1 @ 1 0 07756838 -casaba_melon n 1 1 @ 1 0 07756838 -casablanca n 1 2 @ #p 1 0 08969798 -casals n 1 1 @ 1 0 10885831 -casanova n 2 1 @ 2 0 10885994 09898797 -casanova_de_seingalt n 1 1 @ 1 0 10885994 -casava n 1 3 @ ~ #m 1 0 12926480 -casbah n 1 1 @ 1 0 08628141 -cascabel n 1 1 @ 1 0 04236935 -cascade n 3 2 @ + 3 0 09236957 08460152 07363668 -cascade_everlasting n 1 2 @ #m 1 0 11999656 -cascade_liquefier n 1 1 @ 1 0 02974454 -cascade_mountains n 1 3 @ #p %p 1 0 09237076 -cascade_penstemon n 1 2 @ #m 1 0 12888234 -cascade_range n 1 3 @ #p %p 1 0 09237076 -cascade_transformer n 1 1 @ 1 0 02974565 -cascades n 1 3 @ #p %p 1 0 09237076 -cascades_frog n 1 2 @ #m 1 0 01641930 -cascading_menu n 1 2 @ ; 1 0 06493721 -cascara n 1 2 @ #p 1 0 13141797 -cascara_buckthorn n 1 2 @ %p 1 0 13141564 -cascara_sagrada n 1 2 @ #p 1 0 13141797 -cascarilla n 1 3 @ #m %p 1 0 12923108 -cascarilla_bark n 1 2 @ #p 1 0 12923257 -case n 20 6 @ ~ #m #p + ; 20 11 07308889 13943400 01182654 05817743 02974697 09898892 10668666 06784966 06649426 13766436 06310945 14015996 09909060 06825399 05238036 04190747 02977619 02975589 02975412 02975212 -case-fatality_proportion n 1 1 @ 1 0 13816071 -case-hardened_steel n 1 1 @ 1 0 14794693 -case-to-infection_proportion n 1 1 @ 1 0 13816313 -case-to-infection_ratio n 1 1 @ 1 0 13816313 -case_agreement n 1 1 @ 1 0 13797856 -case_history n 1 2 @ ~ 1 1 06514880 -case_in_point n 1 1 @ 1 1 05821486 -case_knife n 2 1 @ 2 0 02976249 02976123 -case_law n 2 3 @ ; - 2 0 08453722 06535035 -case_load n 1 1 @ 1 1 00581382 -case_officer n 1 2 @ ~ 1 0 09899134 -case_shot n 1 2 @ %p 1 0 02976641 -case_study n 2 2 @ ; 2 0 07219297 00646680 -casebook n 1 2 @ + 1 0 06503034 -caseful n 1 1 @ 1 0 13766436 -casein n 2 1 @ 2 0 14735347 02975994 -casein_glue n 1 1 @ 1 0 14703345 -casein_paint n 1 1 @ 1 0 02975994 -casemaking_clothes_moth n 1 2 @ #m 1 0 02292085 -casement n 1 1 @ 1 0 02976350 -casement_window n 1 1 @ 1 0 02976455 -casern n 1 1 @ 1 0 02976552 -casework n 1 1 @ 1 0 01209079 -caseworker n 1 2 @ ~ 1 0 10620027 -caseworm n 1 2 @ ~ 1 0 02269522 -casey_jones n 1 1 @ 1 0 11090631 -casey_stengel n 1 1 @ 1 0 11316429 -cash n 3 4 ! @ ~ + 3 1 13386614 13386465 10886222 -cash_account n 1 3 ! @ ~ 1 0 13351680 -cash_advance n 1 1 @ 1 0 13375891 -cash_bar n 1 1 @ 1 0 02976815 -cash_basis n 1 2 ! @ 1 1 13406852 -cash_card n 1 1 @ 1 0 13376643 -cash_cow n 1 1 @ 1 0 05910577 -cash_crop n 1 1 @ 1 0 13086063 -cash_dispenser n 1 1 @ 1 0 02977058 -cash_equivalent n 1 2 @ ~ 1 0 13364984 -cash_flow n 1 1 @ 1 0 13259199 -cash_in_hand n 1 2 @ ~ 1 0 13356112 -cash_machine n 1 1 @ 1 0 02977058 -cash_price n 1 1 @ 1 0 13305373 -cash_register n 1 2 @ %p 1 1 02977438 -cash_surrender_value n 1 1 @ 1 0 13269683 -cashbox n 1 2 @ ~ 1 0 02976939 -cashcard n 1 1 @ 1 0 13376643 -cashew n 2 4 @ #m #p %p 2 0 12759273 07772147 -cashew_nut n 1 2 @ #p 1 0 07772147 -cashew_tree n 1 3 @ #m %p 1 0 12759273 -cashier n 2 1 @ 2 0 10698970 09899289 -cashier's_check n 1 1 @ 1 0 13383439 -cashier's_cheque n 1 1 @ 1 0 13383439 -cashmere n 3 4 @ #p %p - 3 1 02977330 15104669 08975617 -cashmere_goat n 1 1 @ 1 0 02417242 -casimir_funk n 1 1 @ 1 0 10986022 -casing n 3 4 @ ~ #p + 3 0 04190747 02977822 02977619 -casino n 2 2 @ ~ 2 1 02977936 00491713 -casino-hotel n 2 1 @ 2 0 03542727 03542605 -cask n 2 3 @ ~ %p 2 0 13766547 02795169 -casket n 2 3 @ ~ + 2 0 03064758 02978055 -caskful n 1 1 @ 1 0 13766547 -casmerodius n 1 3 @ #m %m 1 0 02009620 -casmerodius_albus n 1 2 @ #m 1 0 02009750 -caspar n 1 3 @ #m ; 1 0 10886361 -caspar_bartholin n 1 1 @ 1 0 10836725 -caspase n 1 1 @ 1 0 14669823 -caspase-mediated_cell_death n 1 1 @ 1 0 11486381 -casper n 1 2 @ #p 1 0 09159546 -caspian n 1 2 @ #p 1 0 09237404 -caspian_sea n 1 2 @ #p 1 0 09237404 -casque n 1 3 @ ~ #p 1 0 02978205 -casquet n 1 1 @ 1 0 02978367 -casquetel n 1 1 @ 1 0 02978367 -cass_gilbert n 1 1 @ 1 0 10999048 -cassandra n 1 2 @ ; 1 0 09596186 -cassareep n 1 1 @ 1 0 07921090 -cassava n 3 6 @ ~ #m #s #p %s 3 0 14761578 12927013 12926480 -cassava_starch n 1 2 @ #s 1 0 14761578 -cassegrainian_telescope n 1 1 @ 1 0 02978478 -casserole n 2 2 @ ~ 2 0 07580359 02978753 -cassette n 1 3 @ ~ %p 1 0 02978881 -cassette_deck n 1 1 @ 1 0 02979074 -cassette_player n 1 1 @ 1 0 02979186 -cassette_recorder n 1 1 @ 1 0 02979290 -cassette_tape n 1 2 @ #p 1 0 02979399 -cassia n 3 5 @ ~ #m %m %p 3 0 12491826 12491626 11705171 -cassia-bark_tree n 1 3 @ #m %p 1 0 11705171 -cassia_acutifolia n 1 1 @ 1 0 12499979 -cassia_alata n 1 2 @ ; 1 0 12499439 -cassia_augustifolia n 1 1 @ 1 0 12499979 -cassia_auriculata n 1 1 @ 1 0 12499757 -cassia_bark n 1 2 @ #p 1 0 11705387 -cassia_fasciculata n 1 2 @ #m 1 0 12494358 -cassia_fistula n 1 1 @ 1 0 12492106 -cassia_grandis n 1 1 @ 1 0 12492460 -cassia_javonica n 1 1 @ 1 0 12492682 -cassia_marginata n 1 1 @ 1 0 12492900 -cassia_marilandica n 1 2 @ #m 1 0 12500309 -cassia_occidentalis n 1 1 @ 1 0 12500751 -cassia_roxburghii n 1 1 @ 1 0 12492900 -cassia_tora n 1 2 @ #m 1 0 12500518 -cassie n 1 2 @ #m 1 0 11757851 -cassin's_kingbird n 1 1 @ 1 0 01548694 -cassino n 1 2 @ ~ 1 0 00491713 -cassiope n 1 3 @ #m %m 1 0 12233759 -cassiope_mertensiana n 1 2 @ #m 1 0 12233998 -cassiopeia n 2 2 @ ; 2 0 09497775 09237627 -cassirer n 1 1 @ 1 0 10886558 -cassiri n 1 2 @ #s 1 0 07932323 -cassite n 2 1 @ 2 1 06968601 09640577 -cassiterite n 1 2 @ %s 1 0 14669927 -cassius n 1 1 @ 1 0 10886763 -cassius_clay n 1 1 @ 1 0 10814574 -cassius_longinus n 1 1 @ 1 0 10886763 -cassius_marcellus_clay n 1 1 @ 1 0 10814574 -cassock n 1 2 @ ~ 1 0 02979516 -cassowary n 1 2 @ #m 1 0 01519563 -cast n 9 5 @ ~ #m #p + 9 2 08237863 03779370 13913566 04677514 02979836 02979662 01245813 00454624 00105479 -cast-iron_plant n 1 2 @ #m 1 0 12443323 -cast_iron n 1 3 @ ~ %s 1 1 14801921 -cast_of_characters n 1 3 @ ~ #m 1 0 08237863 -castanea n 1 3 @ #m %m 1 0 12262327 -castanea_chrysophylla n 1 2 @ #m 1 0 12264786 -castanea_crenata n 1 2 @ #m 1 0 12263588 -castanea_dentata n 1 2 @ #m 1 0 12263038 -castanea_mollissima n 1 2 @ #m 1 0 12263410 -castanea_ozarkensis n 1 3 @ #m %p 1 0 12263987 -castanea_pumila n 1 3 @ #m %p 1 0 12263738 -castanea_sativa n 1 1 @ 1 0 12263204 -castanets n 1 2 @ ; 1 1 02869249 -castanopsis n 1 3 @ #m %m 1 0 12264254 -castanopsis_chrysophylla n 1 2 @ #m 1 0 12264786 -castanospermum n 1 3 @ #m %m 1 0 12512460 -castaway n 2 2 @ ~ 2 0 10386312 09899438 -caste n 4 4 @ ~ #p ; 4 0 14431738 08306194 08306047 07995617 -caste_system n 1 1 @ 1 0 08378698 -caster n 3 2 @ + 3 0 09609746 02980203 02980036 -caster_sugar n 1 2 @ ; 1 0 07595751 -castigation n 2 2 @ + 2 1 06713187 01161017 -castile n 1 2 @ #p 1 0 09027853 -castile_soap n 1 1 @ 1 0 02980325 -castilian n 1 1 @ 1 0 06967185 -castilla n 1 2 @ #p 1 0 09027853 -castilleia n 1 3 @ #m %m 1 0 12879719 -castilleja n 1 3 @ #m %m 1 0 12879719 -castilleja_chromosa n 1 1 @ 1 0 12880244 -castilleja_miniata n 1 1 @ 1 0 12880462 -castilleja_sessiliflora n 1 1 @ 1 0 12880638 -castilleja_sulphurea n 1 1 @ 1 0 12880799 -castillian n 1 1 @ 1 0 09709441 -casting n 4 3 @ ~ + 4 0 02979662 00909899 00454624 00161603 -casting_lots n 1 1 @ 1 0 00180054 -casting_vote n 1 1 @ 1 0 00184981 -castle n 4 5 @ ~ %p + ; 4 2 03878066 02980441 02980625 00166552 -castle_in_spain n 1 1 @ 1 0 05769471 -castle_in_the_air n 1 1 @ 1 0 05769471 -castling n 1 2 @ + 1 0 00166552 -castor n 5 3 @ #m %m 5 0 09237749 02980203 02980036 02818135 02362862 -castor-oil_plant n 1 3 @ #m %p 1 0 12924623 -castor_bean n 1 2 @ #p 1 0 11689678 -castor_bean_plant n 1 3 @ #m %p 1 0 12924623 -castor_canadensis n 1 1 @ 1 0 02363351 -castor_fiber n 1 1 @ 1 0 02363245 -castor_oil n 1 2 @ %s 1 0 02980841 -castor_sugar n 1 2 @ ; 1 0 07595751 -castoridae n 1 3 @ #m %m 1 0 02362721 -castoroides n 1 2 @ #m 1 0 02363511 -castrate n 1 2 @ + 1 0 10066452 -castration n 3 3 @ ~ + 3 0 00692349 00667847 00397010 -castration_anxiety n 1 2 @ ; 1 0 14374764 -castrato n 1 1 @ 1 0 09899534 -castries n 1 2 @ #p 1 0 08988861 -castro n 1 1 @ 1 0 10886929 -castroism n 1 1 @ 1 0 06215043 -casualness n 1 3 @ ~ + 1 0 04912240 -casualty n 4 3 @ ~ ; 4 0 09899782 09899671 07361717 07340094 -casualty_care_research_center n 1 2 @ #p 1 0 08396760 -casuaridae n 1 3 @ #m %m 1 0 01519228 -casuariiformes n 1 3 @ #m %m 1 0 01519046 -casuarina n 1 3 @ ~ #m 1 0 12224978 -casuarina_equisetfolia n 1 2 @ #m 1 0 12225563 -casuarinaceae n 1 3 @ #m %m 1 0 12224522 -casuarinales n 1 3 @ #m %m 1 0 12224309 -casuarius n 1 3 @ #m %m 1 0 01519401 -casuist n 1 2 @ + 1 0 09899929 -casuistry n 2 3 @ ~ + 2 0 06160244 06160055 -casus_belli n 1 1 @ 1 0 07291215 -cat n 8 5 @ ~ #m + ; 8 1 02121620 10153414 09900153 03608870 02985606 02983507 02127808 00901476 -cat's-claw n 1 2 @ #m 1 0 11764814 -cat's-ear n 2 2 @ #m 2 0 12446737 11984144 -cat's-paw n 2 1 @ 2 0 10209616 02985828 -cat's-tail n 1 1 @ 1 0 12155773 -cat's_cradle n 1 1 @ 1 0 00484802 -cat's_eye n 1 1 @ 1 0 14803886 -cat's_feet n 1 3 @ ~ #m 1 0 11922374 -cat's_foot n 1 3 @ ~ #m 1 0 11922374 -cat-o'-nine-tails n 1 1 @ 1 0 02985606 -cat_and_mouse n 1 1 @ 1 0 00484532 -cat_and_rat n 1 1 @ 1 0 00484532 -cat_bear n 1 2 @ #m 1 0 02509815 -cat_box n 1 1 @ 1 0 02982515 -cat_burglar n 1 1 @ 1 0 10188226 -cat_cracker n 1 2 @ #p 1 0 02981565 -cat_fancier n 1 1 @ 1 0 09901921 -cat_flea n 1 2 @ #m 1 0 02187279 -cat_food n 1 1 @ 1 0 07806043 -cat_rig n 1 1 @ 1 0 02985758 -cat_scan n 1 1 @ 1 0 04142549 -cat_scanner n 1 1 @ 1 0 03084834 -cat_scratch_disease n 1 1 @ 1 0 14073906 -cat_shark n 1 2 @ #m 1 0 01488385 -cat_sleep n 1 2 @ ~ 1 0 00858377 -cat_squirrel n 2 2 @ #m 2 0 02357111 02356381 -cat_suit n 1 1 @ 1 0 03657511 -cat_thyme n 1 1 @ 1 0 12870048 -cat_valium n 1 1 @ 1 0 03606572 -catabatic_wind n 1 1 @ 1 0 11443283 -catabiosis n 1 1 @ 1 0 13443709 -catabolism n 1 4 ! @ #p + 1 0 13443787 -catacala n 1 3 @ #m %m 1 0 02295717 -catachresis n 1 2 @ + 1 0 07102034 -cataclysm n 2 3 @ ~ + 2 0 11434016 07314838 -catacomb n 1 2 @ ; 1 0 02981024 -catafalque n 1 1 @ 1 0 02981198 -cataflam n 1 3 @ %s ; 1 0 03191967 -catalan n 2 3 @ + ; 2 0 09900284 06967529 -catalase n 1 2 @ + 1 0 14737639 -catalectic n 1 3 @ + ; 1 0 06348500 -catalepsy n 1 2 @ + 1 0 14070206 -cataleptic n 1 2 @ + 1 0 09900391 -catalexis n 1 2 @ + 1 0 07094355 -catalina_cherry n 1 1 @ 1 0 12647231 -catalina_island n 1 2 @ #p 1 0 09066948 -catalog n 2 3 @ ~ + 2 2 06416206 06487897 -catalog_buying n 1 1 @ 1 0 00082223 -cataloged_procedure n 1 2 @ #p 1 0 06583178 -cataloger n 1 2 @ + 1 0 09900499 -catalogue n 2 3 @ ~ + 2 1 06487897 06416206 -cataloguer n 1 2 @ + 1 0 09900499 -catalonia n 1 3 @ #p + 1 0 09028062 -catalpa n 1 3 @ ~ #m 1 0 12814643 -catalpa_bignioides n 1 1 @ 1 0 12814857 -catalpa_speciosa n 1 1 @ 1 0 12814960 -catalufa n 1 2 @ #m 1 0 02571810 -catalysis n 1 3 @ ~ + 1 0 13444131 -catalyst n 2 5 ! @ ~ + ; 2 0 14723628 09900711 -catalytic_converter n 1 1 @ 1 0 02981321 -catalytic_cracker n 1 2 @ #p 1 0 02981565 -catamaran n 1 1 @ 1 0 02981792 -catamenia n 1 3 @ ~ + 1 0 13513747 -catamite n 1 1 @ 1 0 09900873 -catamount n 2 3 @ ~ #m 2 0 02127052 02125311 -catamountain n 1 2 @ #m 1 0 02125081 -catananche n 1 3 @ ~ #m 1 0 11946727 -catananche_caerulea n 1 1 @ 1 0 11946918 -cataphasia n 1 1 @ 1 0 14401878 -cataphatism n 1 2 ! @ 1 0 05942338 -cataphoresis n 1 3 @ ~ + 1 0 13472518 -cataphract n 1 3 @ ~ %p 1 0 02862048 -cataphyll n 1 2 @ ~ 1 0 11686195 -cataplasia n 1 3 @ + ; 1 0 07428257 -cataplasm n 1 2 @ ~ 1 0 03993403 -catapres n 1 2 @ ; 1 0 03048412 -catapult n 3 2 @ + 3 0 04240097 02982232 02981911 -cataract n 2 2 @ ~ 2 0 14254570 09237918 -cataract_canyon n 1 2 @ #p 1 0 09238030 -cataract_surgery n 1 2 @ ~ 1 0 00678425 -catarrh n 1 2 @ + 1 0 14339772 -catarrhal_fever n 1 2 @ ~ 1 0 14262419 -catarrhine n 1 4 @ ~ #m + 1 0 02484473 -catasetum n 1 3 @ #m %m 1 0 12049796 -catasetum_macrocarpum n 1 2 @ #m 1 0 12050014 -catastrophe n 3 2 @ ~ 3 2 07314838 14476290 11434016 -catastrophic_illness n 1 1 @ 1 0 14066005 -catatonia n 2 4 @ #p %p + 2 0 14545045 14399116 -catatonic_schizophrenia n 1 2 @ %p 1 0 14399116 -catatonic_type_schizophrenia n 1 2 @ %p 1 0 14399116 -catawba n 3 1 @ 3 0 09651537 07759324 06908605 -catbird n 2 3 @ ~ #m 2 0 01600657 01587526 -catboat n 1 1 @ 1 0 02982416 -catbrier n 1 2 @ #m 1 0 12470512 -catcall n 1 2 @ + 1 1 07122018 -catch n 10 3 @ ~ + 10 1 05164673 13755822 09900981 09238143 07067760 02982790 02982599 00458641 00138956 00088725 -catch_crop n 1 1 @ 1 0 13086220 -catch_phrase n 1 1 @ 1 0 07152463 -catchall n 1 1 @ 1 0 02983072 -catcher n 2 4 @ #m + ; 2 1 09901143 00723241 -catcher's_mask n 1 2 @ ~ 1 0 02983189 -catchfly n 2 3 @ ~ #m 2 0 11815491 11811473 -catching n 3 3 @ + ; 3 1 00126886 00151087 00077981 -catchment n 1 2 @ + 1 0 02983357 -catchment_area n 1 2 @ ~ 1 0 08518940 -catchment_basin n 1 2 @ ~ 1 0 08518940 -catchphrase n 1 1 @ 1 0 07152463 -catchweed n 1 1 @ 1 0 12666159 -catchword n 2 2 @ ~ 2 0 07152259 06291603 -catclaw n 1 2 @ #m 1 0 11764814 -catechesis n 1 2 @ + 1 0 00887882 -catechetical_instruction n 1 1 @ 1 0 00888037 -catechin n 1 1 @ 1 0 15067237 -catechism n 2 3 @ + ; 2 0 07194293 06412771 -catechist n 1 2 @ + 1 0 09901337 -catecholamine n 1 2 @ ~ 1 1 14807929 -catechu n 2 4 @ #m #s %s 2 0 11757433 11757190 -catechumen n 1 1 @ 1 0 09901502 -categorem n 1 3 ! @ + 1 0 06752410 -categoreme n 1 3 ! @ + 1 0 06752410 -categorical_imperative n 1 1 @ 1 0 06656143 -categorisation n 3 2 @ ~ 3 0 07939638 05732756 01012712 -categorization n 3 3 @ ~ + 3 0 07939638 05732756 01012712 -category n 2 4 @ ~ %m + 2 2 07997703 05838765 -catena n 1 2 @ + 1 0 08376526 -catenary n 1 1 @ 1 0 13868607 -caterer n 1 2 @ + 1 1 09901642 -catering n 1 1 @ 1 0 01104324 -caterpillar n 2 4 @ ~ #m ; 2 1 02309337 02983507 -caterpillar_track n 1 3 @ ~ #p 1 0 04464418 -caterpillar_tread n 1 3 @ ~ #p 1 0 04464418 -caterwaul n 1 2 @ + 1 0 07378569 -catfish n 3 3 @ ~ #m 3 0 07780038 02616851 02517442 -catgut n 2 2 @ #s 2 0 12572858 02983741 -catha n 1 3 @ #m %m 1 0 11598100 -catha_edulis n 1 2 @ #m 1 0 11598287 -catharacta n 1 3 @ #m %m 1 0 02044659 -catharacta_skua n 1 1 @ 1 0 02044908 -catharanthus n 1 3 @ #m %m 1 0 11772154 -catharanthus_roseus n 1 2 @ #m 1 0 11772408 -cathari n 1 1 @ 1 0 08085159 -catharism n 1 1 @ 1 0 06227708 -cathars n 1 1 @ 1 0 08085159 -catharsis n 2 3 @ + ; 2 1 00253395 00253577 -cathartes n 1 3 @ #m %m 1 0 01619152 -cathartes_aura n 1 2 @ #m 1 0 01619310 -cathartic n 1 3 @ ~ + 1 0 04025748 -cathartid n 1 3 @ ~ #m 1 0 01618922 -cathartidae n 1 3 @ #m %m 1 0 01618671 -cathay n 1 5 @ #p %m %p - 1 0 08723006 -cathaya n 1 2 @ #m 1 0 11629354 -cathedra n 1 3 @ #p + 1 0 02983904 -cathedral n 2 3 @ ~ %p 2 1 02984061 02984203 -cather n 1 1 @ 1 0 10887137 -catherine n 2 1 @ 2 0 10887593 10887420 -catherine_de_medicis n 1 1 @ 1 0 10887790 -catherine_howard n 1 1 @ 1 0 11062111 -catherine_i n 1 1 @ 1 0 10887290 -catherine_ii n 1 1 @ 1 0 10887420 -catherine_of_aragon n 1 1 @ 1 0 10887593 -catherine_parr n 1 1 @ 1 0 11224046 -catherine_the_great n 1 1 @ 1 0 10887420 -catherine_wheel n 1 1 @ 1 0 02984328 -catheter n 1 3 @ ~ + 1 1 02984469 -catheterisation n 1 2 @ + 1 0 00321562 -catheterization n 1 2 @ + 1 0 00321562 -cathexis n 1 3 @ + ; 1 0 09185612 -cathode n 2 4 ! @ ~ #p 2 1 02984699 02984937 -cathode-ray_oscilloscope n 1 3 @ #p %p 1 0 03857828 -cathode-ray_tube n 1 4 @ ~ #p %p 1 0 02985137 -cathode_ray n 1 1 @ 1 0 11428567 -catholic n 1 4 @ ~ #m + 1 1 09679925 -catholic_church n 1 3 @ ~ %m 1 1 08083320 -catholic_pope n 1 3 @ ~ #m 1 0 10453533 -catholic_reaction_force n 1 2 @ ; 1 0 08024408 -catholic_school n 1 1 @ 1 0 08411369 -catholicism n 1 3 @ ~ + 1 1 06227263 -catholicity n 2 3 @ ~ + 2 0 06227263 04765691 -catholicon n 1 2 @ ~ 1 0 03880770 -catholicos n 1 1 @ 1 0 09901786 -cathouse n 1 2 @ ~ 1 0 04581595 -cation n 1 3 @ ~ + 1 0 09238294 -cationic_detergent n 1 2 @ ~ 1 0 14803695 -catjang_pea n 1 3 @ #m %p 1 0 12510774 -catkin n 1 1 @ 1 1 11674798 -catling n 1 1 @ 1 0 02985506 -catmint n 1 2 @ #m 1 0 12859986 -catnap n 1 3 @ ~ + 1 0 00858377 -catnip n 1 2 @ #m 1 0 12859986 -catocala_nupta n 1 1 @ 1 0 02296021 -catoptrics n 1 2 @ + 1 0 06101180 -catoptrophorus n 1 3 @ #m %m 1 0 02030709 -catoptrophorus_semipalmatus n 1 2 @ #m 1 0 02030837 -catostomid n 1 3 @ ~ #m 1 0 01444783 -catostomidae n 1 3 @ #m %m 1 0 01444520 -catostomus n 1 2 @ #m 1 0 01445173 -catskill_mountains n 1 3 @ #p %p 1 0 09238425 -catskills n 1 3 @ #p %p 1 0 09238425 -catsup n 1 1 @ 1 0 07822197 -catsup_bottle n 1 1 @ 1 0 02985963 -cattail n 1 3 @ ~ #m 1 0 12155583 -cattail_family n 1 3 @ #m %m 1 0 12155259 -cattail_millet n 1 2 @ #m 1 0 12128825 -cattalo n 1 1 @ 1 0 02407763 -cattell n 2 1 @ 2 0 10891569 10891428 -cattie n 1 2 @ ; 1 0 13717728 -cattiness n 1 2 @ + 1 0 04842515 -cattle n 1 6 @ ~ #m %m %p + 1 1 02402425 -cattle_boat n 1 1 @ 1 0 02986348 -cattle_breeding n 1 1 @ 1 0 00915497 -cattle_cake n 1 2 @ ; 1 0 07800487 -cattle_car n 1 1 @ 1 0 02986066 -cattle_drive n 1 1 @ 1 0 00317485 -cattle_egret n 1 2 @ #m 1 0 02010272 -cattle_farm n 1 1 @ 1 0 04052442 -cattle_grid n 1 1 @ 1 0 02986160 -cattle_guard n 1 1 @ 1 0 02986160 -cattle_pen n 1 1 @ 1 0 03124590 -cattle_plague n 1 1 @ 1 0 14272141 -cattle_ranch n 1 1 @ 1 0 04052442 -cattle_thief n 1 1 @ 1 1 10544480 -cattle_trail n 1 2 @ ~ 1 0 02986480 -cattleman n 2 2 @ ~ 2 1 09902017 09972661 -cattleship n 1 2 @ + 1 0 02986348 -cattley_guava n 1 1 @ 1 0 12333961 -cattleya n 1 2 @ #m 1 0 12050533 -cattleya_citrina n 1 2 @ #m 1 0 12061104 -catty n 1 2 @ ; 1 0 13717728 -catullus n 1 1 @ 1 0 10887981 -catwalk n 2 1 @ 2 0 02986757 02986605 -caucasia n 1 5 @ %m %p + - 1 0 08519624 -caucasian n 2 4 @ ~ #m + 2 0 09638875 06978180 -caucasian_language n 1 2 @ ~ 1 0 06978180 -caucasian_race n 1 2 @ %m 1 0 09639237 -caucasian_walnut n 1 1 @ 1 0 12322699 -caucasoid_race n 1 2 @ %m 1 0 09639237 -caucasus n 2 6 @ #p %m %p + - 2 0 09238674 08519624 -caucasus_mountains n 1 2 @ #p 1 0 09238674 -caucus n 1 2 @ + 1 0 08308313 -cauda n 1 2 @ + 1 0 05228264 -caudal_anaesthesia n 1 1 @ 1 0 14028406 -caudal_anesthesia n 1 1 @ 1 0 14028406 -caudal_appendage n 1 2 @ #p 1 0 02158213 -caudal_block n 1 1 @ 1 0 14028406 -caudal_fin n 1 3 @ ~ #p 1 0 02466957 -caudal_vertebra n 1 2 @ #p 1 0 05589756 -caudata n 1 3 @ #m %m 1 0 01628450 -caudate n 2 4 @ #m #p + 2 0 05497741 01628770 -caudate_nucleus n 1 2 @ #p 1 0 05497741 -caudex n 2 1 @ 2 0 13130305 13129078 -caudine_forks n 1 2 @ ; 1 0 01274374 -caul n 2 2 @ #p 2 0 05429658 05310596 -cauldron n 1 1 @ 1 0 02939185 -cauliflower n 2 3 @ #p %p 2 0 11876634 07715103 -cauliflower_ear n 1 1 @ 1 0 05324276 -caulk n 1 1 @ 1 0 15014696 -caulking n 1 1 @ 1 0 15014696 -caulophyllum n 1 3 @ #m %m 1 0 11698433 -caulophyllum_thalictrioides n 1 2 @ #m 1 0 11698562 -caulophyllum_thalictroides n 1 2 @ #m 1 0 11698562 -causa n 1 3 @ ~ ; 1 0 01182654 -causal_agency n 1 2 @ ~ 1 0 00007347 -causal_agent n 1 2 @ ~ 1 0 00007347 -causal_factor n 1 2 @ ~ 1 1 05692419 -causalgia n 1 1 @ 1 0 14325575 -causality n 1 2 @ + 1 0 13780606 -causation n 1 3 @ ~ + 1 0 00042311 -cause n 5 4 @ ~ + ; 5 5 07326557 06740402 00798245 00007347 01182654 -cause_celebre n 1 1 @ 1 0 07307646 -cause_of_action n 1 2 @ ; 1 0 06730068 -cause_of_death n 1 1 @ 1 0 14540564 -causerie n 1 1 @ 1 0 07135080 -causeway n 1 2 @ + 1 0 02986920 -causing n 1 2 @ ~ 1 0 00042311 -caustic n 1 3 @ ~ + 1 0 15014529 -caustic_lime n 1 1 @ 1 0 14936010 -caustic_potash n 1 1 @ 1 0 14996843 -caustic_remark n 1 2 @ = 1 0 06777164 -caustic_soda n 1 1 @ 1 0 15014990 -cauterant n 1 3 @ ~ + 1 0 02987047 -cauterisation n 1 3 @ ~ + 1 0 00668112 -cauterization n 1 3 @ ~ + 1 0 00668112 -cautery n 2 3 @ ~ + 2 0 02987047 00668112 -caution n 4 4 ! @ ~ + 4 3 04664058 07225167 05615869 04891184 -cautious n 1 2 @ + 1 1 07944900 -cautious_statement n 1 1 @ 1 0 06762602 -cautiousness n 1 2 @ + 1 0 04664058 -cavalcade n 1 1 @ 1 1 08427918 -cavalier n 2 1 @ 2 0 09902256 09902128 -cavalier_hat n 1 1 @ 1 0 02987379 -cavalla n 1 2 @ #m 1 0 02625851 -cavalry n 2 4 @ ~ %m ; 2 1 08397856 08389710 -cavalry_horse n 1 1 @ 1 0 02378541 -cavalry_sword n 1 2 @ ~ 1 0 02987492 -cavalryman n 2 3 @ ~ #m 2 2 09902611 09902353 -cave n 1 4 @ ~ %p + 1 1 09238926 -cave_bat n 1 2 @ #m 1 0 02147591 -cave_dweller n 1 1 @ 1 0 09902731 -cave_in n 1 2 @ + 1 0 07361416 -cave_man n 1 1 @ 1 0 09902731 -cave_myotis n 1 2 @ #m 1 0 02146879 -caveat n 2 2 @ ; 2 1 07225167 06747907 -caveat_emptor n 1 1 @ 1 0 06663785 -cavell n 1 1 @ 1 0 10888151 -caveman n 1 1 @ 1 1 09902731 -cavendish n 1 1 @ 1 0 10888401 -cavern n 2 3 @ ~ + 2 2 09239451 09239302 -cavernous_sinus n 1 1 @ 1 0 05252259 -cavetto n 1 1 @ 1 0 02987706 -cavia n 1 3 @ #m %m 1 0 02364377 -cavia_cobaya n 1 1 @ 1 0 02364673 -cavia_porcellus n 1 1 @ 1 0 02364840 -caviar n 1 2 @ ~ 1 0 07799579 -caviare n 1 2 @ ~ 1 0 07799579 -caviidae n 1 3 @ #m %m 1 0 02364221 -cavil n 1 2 @ + 1 0 06761798 -caviler n 1 2 @ + 1 0 10501203 -caviller n 1 2 @ + 1 0 10501203 -cavity n 4 4 @ ~ #p ; 4 1 09393108 13911517 13444513 05303402 -cavity_resonator n 1 2 @ ~ 1 0 04080454 -cavity_wall n 1 1 @ 1 0 02987823 -caviuna_wood n 1 2 @ #m 1 0 12523475 -cavum n 1 4 @ ~ #p ; 1 0 05303402 -cavy n 1 3 @ ~ #m 1 0 02364520 -caw n 1 2 @ + 1 0 07378682 -caxton n 1 1 @ 1 0 10888644 -cay n 1 2 @ #p 1 0 09325395 -cayenne n 3 5 @ #m #s %s %p 3 0 12900987 07822518 07721942 -cayenne_jasmine n 1 2 @ #m 1 0 11772408 -cayenne_pepper n 3 5 @ #m #s %s %p 3 0 12900987 07822518 07721942 -cayman n 1 3 @ ~ #m 1 0 01699040 -cayman_islands n 1 3 @ #p %p 1 0 08709399 -cayman_islands_dollar n 1 1 @ 1 0 13672967 -cayuga n 2 1 @ 2 0 09651653 06916217 -cayuga_lake n 1 2 @ #m 1 0 09239581 -cayuse n 1 1 @ 1 0 02382039 -cazique n 1 2 @ #m 1 0 01573627 -cbc n 1 1 @ 1 0 00652975 -cbr n 1 2 @ ; 1 0 11441077 -cc n 1 3 @ #p %p 1 1 13623636 -ccrc n 1 2 @ #p 1 0 08396760 -cd n 4 3 @ ~ #s 4 0 14632444 13641534 13365137 03079230 -cd-r n 1 1 @ 1 0 02988486 -cd-rom n 1 1 @ 1 0 02988679 -cd-rom_drive n 1 1 @ 1 0 02988963 -cd-wo n 1 1 @ 1 0 02988486 -cd4 n 1 1 @ 1 0 14888529 -cd4_cell n 1 1 @ 1 0 05452204 -cd4_t_cell n 1 1 @ 1 0 05452204 -cd8 n 1 1 @ 1 0 14888720 -cd8_cell n 1 1 @ 1 0 05452516 -cd8_t_cell n 1 1 @ 1 0 05452516 -cd_burner n 1 1 @ 1 0 03079494 -cd_drive n 1 2 @ #p 1 0 02988156 -cd_player n 1 2 @ %p 1 0 02988304 -cdc n 1 2 @ #p 1 0 08124649 -cdna n 1 2 @ ~ 1 0 14816899 -ce n 1 2 @ #s 1 0 14633957 -cease n 1 2 @ + 1 0 15268239 -cease-fire n 1 1 @ 1 0 13970912 -cease_and_desist_order n 1 3 @ ~ ; 1 0 06542830 -ceaselessness n 1 2 @ + 1 0 05052587 -cebidae n 1 3 @ #m %m 1 0 02491590 -cebu n 2 3 @ #p %m 2 0 08982037 08980640 -cebu_city n 1 2 @ #p 1 0 08982037 -cebu_maguey n 1 1 @ 1 0 12478131 -cebuan n 2 2 @ #m 2 0 09697246 06940109 -cebuano n 1 1 @ 1 0 06940109 -cebuella n 1 3 @ #m %m 1 0 02490686 -cebuella_pygmaea n 1 2 @ #m 1 0 02490811 -cebus n 1 3 @ #m %m 1 0 02491906 -cebus_capucinus n 1 2 @ #m 1 0 02492035 -cecal_appendage n 1 2 @ #p 1 0 05537576 -cecidomyidae n 1 3 @ #m %m 1 0 02189214 -cecil_b._demille n 1 1 @ 1 0 10930099 -cecil_blount_demille n 1 1 @ 1 0 10930099 -cecil_frank_powell n 1 1 @ 1 0 11244887 -cecil_j._rhodes n 1 1 @ 1 0 11259054 -cecil_john_rhodes n 1 1 @ 1 0 11259054 -cecil_rhodes n 1 1 @ 1 0 11259054 -cecil_scott_forester n 1 1 @ 1 0 10975404 -cecity n 1 2 @ ~ 1 0 14126660 -cecropia n 2 3 @ #m %m 2 0 12404484 02303284 -cecropia_moth n 1 1 @ 1 0 02303284 -cecropia_peltata n 1 2 @ #m 1 0 12404729 -cecropiaceae n 1 3 @ #m %m 1 0 12404314 -cecum n 1 4 @ #p %p + 1 0 05536370 -cedar n 3 5 @ ~ #m #s %s 3 0 11630017 11623304 11623105 -cedar-apple_rust n 1 2 @ #m 1 0 13065514 -cedar_chest n 1 1 @ 1 0 02989099 -cedar_elm n 1 2 @ #m 1 0 12406902 -cedar_mahogany n 1 2 @ #m 1 0 12698027 -cedar_nut n 1 2 @ #p 1 0 11612235 -cedar_of_goa n 1 1 @ 1 0 11632376 -cedar_of_lebanon n 1 1 @ 1 0 11623815 -cedar_rapids n 1 2 @ #p 1 0 09086793 -cedar_tree n 2 4 @ ~ #m %s 2 0 11630017 11623105 -cedar_waxwing n 1 1 @ 1 0 01603812 -cedarbird n 1 1 @ 1 0 01603812 -cedarwood n 1 3 @ ~ #s 1 0 11623304 -cedi n 1 2 @ %p 1 0 13667048 -cedilla n 1 1 @ 1 0 06822958 -ceding n 1 2 @ ~ 1 0 00213052 -ceding_back n 1 1 @ 1 0 01249991 -cedrela n 1 3 @ #m %m 1 0 12697021 -cedrela_calantas n 1 2 @ #m 1 0 12700357 -cedrela_odorata n 1 3 @ #m %s 1 0 12697152 -cedrus n 1 3 @ #m %m 1 0 11622988 -cedrus_atlantica n 1 1 @ 1 0 11624192 -cedrus_deodara n 1 1 @ 1 0 11623967 -cedrus_libani n 1 1 @ 1 0 11623815 -cefadroxil n 1 1 @ 1 0 02989178 -cefobid n 1 2 @ ; 1 0 02989313 -cefoperazone n 1 1 @ 1 0 02989313 -cefotaxime n 1 1 @ 1 0 02989475 -ceftazidime n 1 1 @ 1 0 02989685 -ceftin n 1 1 @ 1 0 02990103 -ceftriaxone n 1 1 @ 1 0 02989893 -cefuroxime n 1 1 @ 1 0 02990103 -ceiba n 1 2 @ #m 1 0 12190241 -ceiba_pentandra n 1 1 @ 1 0 12190410 -ceiba_tree n 1 1 @ 1 0 12190410 -ceibo n 1 1 @ 1 0 12528549 -ceilidh n 1 2 @ ; 1 0 07448394 -ceiling n 4 4 @ ~ #p ; 4 3 02990373 05132542 06657646 05132667 -celandine n 2 2 @ #m 2 0 12684379 11903671 -celandine_poppy n 1 2 @ #m 1 0 11908846 -celastraceae n 1 3 @ #m %m 1 0 12747563 -celastric_articulatus n 1 2 @ #m 1 0 12748534 -celastrus n 1 3 @ #m %m 1 0 12747961 -celastrus_orbiculatus n 1 2 @ #m 1 0 12748534 -celastrus_scandens n 1 2 @ #m 1 0 12748248 -celebes n 1 2 @ #p 1 0 08909107 -celebrant n 2 3 @ ~ + 2 1 09902954 09902851 -celebrater n 1 2 @ ~ 1 0 09902954 -celebration n 3 3 @ ~ + 3 2 07450651 00428000 00516086 -celebrator n 1 3 @ ~ + 1 0 09902954 -celebrex n 1 2 @ ; 1 0 02990561 -celebrity n 2 2 @ ~ 2 1 09903153 14437386 -celecoxib n 1 1 @ 1 0 02990561 -celeriac n 2 3 @ #p %p 2 0 12933616 07730708 -celerity n 1 2 @ ~ 1 1 05059132 -celery n 2 4 @ ~ #p %p 2 0 12933403 07730406 -celery-leaved_buttercup n 1 1 @ 1 0 11722621 -celery-topped_pine n 1 1 @ 1 0 11650160 -celery_blight n 1 1 @ 1 0 14216546 -celery_cabbage n 2 2 @ #m 2 0 11878808 07714287 -celery_pine n 1 3 @ ~ #m 1 0 11649878 -celery_root n 2 3 @ #p %p 2 0 12933616 07730708 -celery_salt n 1 1 @ 1 0 07813324 -celery_seed n 1 2 @ #p 1 0 07828156 -celery_stick n 1 2 @ #p 1 0 07708685 -celery_top_pine n 1 1 @ 1 0 11650160 -celesta n 1 1 @ 1 0 02990758 -celestial_body n 1 4 @ ~ #p - 1 1 09239740 -celestial_city n 1 1 @ 1 0 05628193 -celestial_equator n 1 1 @ 1 0 08520190 -celestial_globe n 1 2 @ ~ 1 0 02990920 -celestial_guidance n 1 1 @ 1 0 00816665 -celestial_hierarchy n 1 2 @ %m 1 0 08378066 -celestial_horizon n 1 1 @ 1 0 08585846 -celestial_latitude n 1 2 @ ; 1 0 08632894 -celestial_longitude n 1 2 @ ; 1 0 08633191 -celestial_mechanics n 1 1 @ 1 0 06097594 -celestial_navigation n 1 1 @ 1 0 00816530 -celestial_orbit n 1 3 @ ~ %p 1 0 08612049 -celestial_point n 1 3 @ ~ #p 1 0 08520401 -celestial_pole n 1 2 @ ~ 1 0 08621099 -celestial_sphere n 1 2 @ %p 1 0 08521267 -celestite n 1 2 @ %s 1 0 14670061 -celiac_artery n 1 1 @ 1 1 05340317 -celiac_disease n 1 1 @ 1 0 14057828 -celiac_trunk n 1 1 @ 1 0 05340317 -celibacy n 2 2 @ ; 2 0 13967507 01069125 -celibate n 1 2 @ + 1 0 09903367 -celiocentesis n 1 1 @ 1 0 00943963 -celioma n 1 1 @ 1 0 14237489 -celioscopy n 1 1 @ 1 0 00642325 -cell n 7 8 @ ~ #m #p %p + ; - 7 3 02991711 00006484 02991048 08358594 02992529 02991555 02991302 -cell-mediated_immune_response n 1 1 @ 1 0 00861199 -cell_death n 1 3 @ ~ ; 1 0 11486178 -cell_division n 1 2 @ ~ 1 0 13444703 -cell_doctrine n 1 2 @ ; 1 0 06105609 -cell_membrane n 1 2 @ #p 1 0 05312782 -cell_nucleus n 1 5 @ ~ #p %s %p 1 0 05434927 -cell_organ n 1 3 @ ~ #p 1 0 05445668 -cell_organelle n 1 3 @ ~ #p 1 0 05445668 -cell_theory n 1 2 @ ; 1 0 06105609 -cell_wall n 1 2 @ #p 1 0 11530283 -cellar n 3 2 @ ~ 3 1 02800497 04108137 02991847 -cellarage n 2 1 @ 2 0 13320766 02991950 -cellaret n 1 1 @ 1 0 03769610 -cellblock n 1 4 @ ~ #p %p 1 0 02992032 -cellini n 1 1 @ 1 0 10888788 -cellist n 1 3 @ ~ + 1 0 09903501 -cello n 1 2 @ + 1 0 02992211 -cellophane n 1 1 @ 1 0 02992368 -cellphone n 1 2 @ + 1 0 02992529 -cellular_division n 1 2 @ ~ 1 0 13444703 -cellular_inclusion n 1 2 @ ~ 1 0 09310806 -cellular_phone n 1 1 @ 1 0 02992529 -cellular_respiration n 1 1 @ 1 0 00830811 -cellular_slime_mold n 1 3 @ ~ #m 1 0 12976198 -cellular_telephone n 1 1 @ 1 0 02992529 -cellularity n 1 3 @ ~ + 1 0 14061462 -cellulite n 1 1 @ 1 0 05269668 -cellulitis n 1 1 @ 1 0 14339914 -celluloid n 2 5 @ ~ %s ; - 2 0 14965501 06262567 -cellulose n 1 3 @ ~ #s 1 1 14793921 -cellulose_acetate n 1 3 @ ~ #s 1 1 14965135 -cellulose_ester n 1 3 @ ~ %s 1 0 14794823 -cellulose_nitrate n 1 3 @ ~ #s 1 0 14794993 -cellulose_tape n 1 1 @ 1 0 02992795 -cellulose_triacetate n 1 1 @ 1 0 14965321 -cellulose_xanthate n 1 2 @ #s 1 0 14965780 -cellulosic n 1 2 @ %s 1 0 14804039 -celom n 1 1 @ 1 0 05606801 -celoma n 1 1 @ 1 0 05606801 -celosia n 1 3 @ #m %m 1 0 11825013 -celosia_argentea n 1 2 @ #m 1 0 11825211 -celosia_argentea_cristata n 1 1 @ 1 0 11825351 -celosia_cristata n 1 1 @ 1 0 11825351 -celsius n 1 1 @ 1 0 10888891 -celsius_scale n 1 1 @ 1 0 13852600 -celt n 1 3 @ ~ + 1 0 09688008 -celtic n 1 3 @ ~ + 1 0 06960298 -celtic_cross n 1 1 @ 1 0 02993081 -celtic_deity n 1 2 @ ~ 1 0 09507097 -celtic_language n 1 2 @ ~ 1 0 06960298 -celtis n 1 3 @ #m %m 1 0 12409016 -celtis_australis n 1 2 @ #m 1 0 12409470 -celtis_laevigata n 1 2 @ #m 1 0 12409840 -celtis_occidentalis n 1 2 @ #m 1 0 12409651 -celtuce n 2 3 @ #p %p 2 0 11987349 07724819 -cembalo n 1 2 @ ~ 1 0 03496296 -cembra_nut n 1 2 @ #p 1 0 11612235 -cembra_nut_tree n 1 2 @ %p 1 0 11612018 -cement n 5 5 @ ~ #s #p + 5 3 14804487 14804175 14704640 14804641 05308810 -cement_mixer n 1 1 @ 1 0 03087069 -cementite n 1 2 @ #s 1 0 14805145 -cementum n 1 2 @ #p 1 0 05308810 -cemetery n 1 2 @ ~ 1 1 08521623 -cenchrus n 1 3 @ #m %m 1 0 12113471 -cenchrus_ciliaris n 1 1 @ 1 0 12114010 -cenchrus_tribuloides n 1 2 @ #m 1 0 12113790 -cenobite n 1 3 ! @ + 1 0 10519291 -cenogenesis n 1 3 ! @ + 1 0 13444940 -cenotaph n 1 1 @ 1 0 02993194 -cenozoic n 1 3 @ #p %p 1 0 15124361 -cenozoic_era n 1 3 @ #p %p 1 0 15124361 -censer n 1 2 @ ; 1 0 02993368 -censor n 2 2 @ + 2 0 09903936 09903639 -censoring n 2 2 @ ~ 2 0 00821083 00397347 -censorship n 2 3 @ ~ + 2 1 00821083 00397347 -censure n 2 3 @ ~ + 2 1 06709998 14413993 -census n 1 2 @ + 1 1 00653388 -census_bureau n 1 2 @ #p 1 0 08129621 -census_taker n 1 1 @ 1 0 09904057 -cent n 2 3 @ ~ #p 2 2 13664521 13390626 -cental n 1 3 @ #p %p 1 0 13721177 -centare n 1 1 @ 1 0 13613294 -centas n 1 1 @ 1 0 13701703 -centaur n 2 4 @ ~ %m ; 2 0 09493043 09240051 -centaurea n 1 3 @ #m %m 1 0 11947079 -centaurea_americana n 1 1 @ 1 0 11947429 -centaurea_cineraria n 1 1 @ 1 0 11947629 -centaurea_cyanus n 1 2 @ #m 1 0 11947802 -centaurea_gymnocarpa n 1 1 @ 1 0 11947629 -centaurea_imperialis n 1 2 @ #m 1 0 11948469 -centaurea_moschata n 1 2 @ #m 1 0 11918808 -centaurea_nigra n 1 1 @ 1 0 11948656 -centaurea_scabiosa n 1 1 @ 1 0 11948864 -centaurea_solstitialis n 1 1 @ 1 0 11949015 -centauria_calcitrapa n 1 1 @ 1 0 11948044 -centaurium n 1 3 @ #m %m 1 0 12290522 -centaurium_calycosum n 1 1 @ 1 0 12290975 -centaurium_minus n 1 1 @ 1 0 12291143 -centaurium_scilloides n 1 1 @ 1 0 12291292 -centaurus n 1 2 @ %m 1 0 09240051 -centaury n 2 3 @ ~ #m 2 0 12290748 11947251 -centavo n 1 2 @ #p 1 0 13665256 -centenarian n 1 2 @ + 1 0 09904208 -centenary n 1 2 @ + 1 0 15251336 -centennial n 1 2 @ + 1 1 15251336 -centennial_state n 1 3 @ #p %p 1 0 09067277 -center n 18 9 @ ~ #m #s #p %m %p + ; 18 12 08523483 02994219 02993546 08521816 05921123 05812038 05463533 08481832 09904556 09904321 08514034 08416523 09904708 07602650 03965456 00728464 00727500 00725506 -center_bit n 1 1 @ 1 0 02993877 -center_field n 2 3 @ #m #p 2 0 02994219 00724684 -center_fielder n 1 1 @ 1 0 10387476 -center_for_disease_control_and_prevention n 1 2 @ #p 1 0 08124649 -center_line n 1 1 @ 1 1 13871967 -center_of_attention n 1 2 @ ~ 1 0 05812038 -center_of_buoyancy n 1 2 @ ; 1 0 08522287 -center_of_curvature n 1 1 @ 1 0 05102764 -center_of_flotation n 1 1 @ 1 0 08522742 -center_of_gravity n 1 2 @ ~ 1 0 08522518 -center_of_immersion n 1 2 @ ; 1 0 08522287 -center_of_mass n 1 2 @ ~ 1 0 08522872 -center_punch n 1 1 @ 1 0 02994573 -center_spread n 1 2 @ #p 1 0 06258228 -center_stage n 2 1 @ 2 0 13948654 08524021 -centerboard n 1 3 @ ~ #p 1 0 02994012 -centerfield n 2 3 @ #m #p 2 1 02994219 00724684 -centerfielder n 1 1 @ 1 0 10387476 -centerfold n 1 1 @ 1 0 06258361 -centering n 2 4 @ ~ + ; 2 1 05704694 00120943 -centerline n 1 1 @ 1 0 13871967 -centerpiece n 2 2 @ ~ 2 0 05851330 02994419 -centesimo n 1 2 @ #p 1 0 13664808 -centesis n 1 3 @ ~ ; 1 0 00943187 -centigrade_scale n 1 1 @ 1 0 13852600 -centigrade_thermometer n 1 1 @ 1 0 02994743 -centile n 1 2 @ ; 1 0 05737752 -centiliter n 1 3 @ #p %p 1 0 13623856 -centilitre n 1 3 @ #p %p 1 0 13623856 -centime n 2 3 @ ~ #p 2 0 13665965 13390626 -centimeter n 1 3 @ #p %p 1 1 13658828 -centimetre n 1 3 @ #p %p 1 0 13658828 -centimo n 1 2 @ #p 1 0 13665027 -centipede n 1 3 @ ~ #m 1 0 01784675 -centner n 3 3 @ #p %p 3 0 13725271 13725108 13721177 -central n 1 4 @ ~ #p + 1 0 02994858 -central_africa n 1 3 @ #p %p 1 0 08718577 -central_african_republic n 1 3 @ #p %p 1 0 08718577 -central_african_republic_franc n 1 1 @ 1 0 13677337 -central_america n 2 4 @ #p %m %p 2 0 08735705 08173165 -central_american n 1 4 @ ~ #m + 1 0 09697401 -central_american_country n 1 3 @ ~ #p 1 0 08703035 -central_american_nation n 1 3 @ ~ #p 1 0 08703035 -central_american_strap_fern n 1 1 @ 1 0 13175074 -central_artery_of_the_retina n 1 2 @ #p 1 0 05340599 -central_bank n 1 2 @ ~ 1 0 08349916 -central_body n 1 1 @ 1 0 05446767 -central_chimpanzee n 1 1 @ 1 0 02482474 -central_city n 1 2 @ #p 1 1 08524130 -central_dravidian n 1 2 @ ~ 1 0 06981498 -central_gyrus n 1 2 @ ~ 1 0 05492655 -central_heating n 1 1 @ 1 1 02995151 -central_intelligence_agency n 1 3 @ #m %p 1 0 08124971 -central_intelligence_machinery n 1 2 @ ; 1 0 08342670 -central_nervous_system n 1 4 @ #p %s %p 1 1 05480794 -central_office n 1 3 @ ~ ; 1 0 03504723 -central_park n 1 2 @ #p 1 0 09121230 -central_powers n 1 1 @ 1 0 08171415 -central_processing_unit n 1 4 @ #p %p ; 1 0 02995345 -central_processor n 1 4 @ #p %p ; 1 0 02995345 -central_scotoma n 1 1 @ 1 0 14556552 -central_standard_time n 1 1 @ 1 0 15132201 -central_sulcus n 1 2 @ #p 1 0 05223823 -central_thai n 1 1 @ 1 0 06936149 -central_time n 1 1 @ 1 0 15132201 -central_vein_of_retina n 1 1 @ 1 0 05360678 -central_vein_of_suprarenal_gland n 1 1 @ 1 0 05360880 -central_veins_of_liver n 1 1 @ 1 0 05360470 -central_vision n 1 1 @ 1 0 05656160 -centralisation n 2 2 @ + 2 0 01237872 01015175 -centralism n 1 1 @ 1 0 05986822 -centrality n 1 3 ! @ + 1 0 05078025 -centralization n 2 3 ! @ + 2 1 01237872 01015175 -centranthus n 1 3 @ #m %m 1 0 12950984 -centranthus_ruber n 1 2 @ #m 1 0 12951146 -centrarchid n 1 4 @ ~ #m %p 1 0 02562315 -centrarchidae n 1 3 @ #m %m 1 0 02562085 -centre n 9 5 @ ~ #s #p + 9 0 08941426 08523483 08521816 08514034 07602650 05921123 05812038 05463533 02993546 -centre_bit n 1 1 @ 1 0 02993877 -centre_for_international_crime_prevention n 1 2 @ #m 1 0 08302468 -centre_of_attention n 1 2 @ ~ 1 0 05812038 -centre_of_buoyancy n 1 2 @ ; 1 0 08522287 -centre_of_curvature n 1 1 @ 1 0 05102764 -centre_of_flotation n 1 1 @ 1 0 08522742 -centre_of_gravity n 1 2 @ ~ 1 0 08522518 -centre_of_immersion n 1 2 @ ; 1 0 08522287 -centre_of_mass n 1 2 @ ~ 1 0 08522872 -centre_spread n 1 2 @ #p 1 0 06258228 -centre_stage n 2 1 @ 2 0 13948654 08524021 -centreboard n 1 3 @ ~ #p 1 0 02994012 -centrefold n 1 1 @ 1 0 06258361 -centrepiece n 2 2 @ ~ 2 0 05851330 02994419 -centrex n 1 1 @ 1 0 02995770 -centrifugal_force n 1 2 ! @ 1 0 11434594 -centrifugal_pump n 1 1 @ 1 0 02995871 -centrifugation n 1 3 @ ~ + 1 1 13445296 -centrifuge n 1 3 @ ~ + 1 1 02995998 -centriole n 1 1 @ 1 0 05446181 -centripetal_acceleration n 1 1 @ 1 0 15276023 -centripetal_force n 1 2 ! @ 1 0 11434747 -centriscidae n 1 3 @ #m %m 1 0 01457276 -centrism n 1 2 @ + 1 0 06214379 -centrist n 1 3 @ #m + 1 0 09904837 -centrocercus n 1 3 @ #m %m 1 0 01797472 -centrocercus_urophasianus n 1 2 @ #m 1 0 01797601 -centroid n 1 2 @ + 1 0 08523217 -centrolobium n 1 3 @ #m %m 1 0 11749462 -centrolobium_robustum n 1 2 @ #m 1 0 11749603 -centromere n 1 3 @ #p + 1 0 05444324 -centropistes_striata n 1 2 @ #m 1 0 02567772 -centropomidae n 1 3 @ #m %m 1 0 02559606 -centropomus n 1 2 @ #m 1 0 02559974 -centropristis n 1 3 @ #m %m 1 0 02567484 -centropristis_philadelphica n 1 2 @ #m 1 0 02567633 -centropus n 1 3 @ #m %m 1 0 01824443 -centropus_phasianinus n 1 1 @ 1 0 01824862 -centropus_sinensis n 1 1 @ 1 0 01824749 -centrosema n 1 3 @ #m %m 1 0 12512947 -centrosema_virginianum n 1 2 @ #m 1 0 12513172 -centrosome n 1 2 @ + 1 0 05446767 -centrospermae n 1 1 @ 1 0 11804433 -centrum n 1 3 @ #p %p 1 0 05273684 -centunculus n 1 3 @ #m %m 1 0 12092766 -centurion n 1 2 @ ; 1 0 09905050 -century n 2 4 @ ~ #p %p 2 1 15205532 13750415 -century_plant n 1 3 @ ~ #m 1 0 12476510 -ceo n 1 1 @ 1 0 09916348 -cephalalgia n 1 2 @ ~ 1 0 14326607 -cephalanthera n 1 3 @ #m %m 1 0 12050766 -cephalanthera_rubra n 1 2 @ #m 1 0 12051103 -cephalaspid n 1 2 @ #m 1 0 01475648 -cephalaspida n 1 3 @ #m %m 1 0 01475421 -cephalexin n 1 1 @ 1 0 02996249 -cephalhematoma n 1 1 @ 1 0 14318552 -cephalic_index n 1 1 @ 1 0 13820826 -cephalic_vein n 1 2 @ #p 1 0 05361123 -cephalitis n 1 2 @ ~ 1 0 14342132 -cephalobidae n 1 3 @ #m %m 1 0 01931845 -cephalochordata n 1 3 @ #m %m 1 0 01467180 -cephalochordate n 1 3 @ ~ #m 1 0 01467336 -cephaloglycin n 1 1 @ 1 0 02996570 -cephalohematoma n 1 1 @ 1 0 14318552 -cephalometry n 1 1 @ 1 0 01001923 -cephalopod n 1 4 @ ~ #m + 1 0 01968315 -cephalopod_mollusk n 1 3 @ ~ #m 1 0 01968315 -cephalopoda n 1 3 @ #m %m 1 0 01968115 -cephalopterus n 1 3 @ #m %m 1 0 01552192 -cephalopterus_ornatus n 1 2 @ #m 1 0 01552333 -cephaloridine n 1 1 @ 1 0 02996703 -cephalosporin n 1 2 @ ~ 1 0 02996840 -cephalotaceae n 1 3 @ #m %m 1 0 12784543 -cephalotaxaceae n 1 3 @ #m %m 1 0 11648428 -cephalotaxus n 1 3 @ #m %m 1 0 11648617 -cephalothin n 1 1 @ 1 0 02997292 -cephalotus n 1 3 @ #m %m 1 0 12784738 -cephalotus_follicularis n 1 2 @ #m 1 0 12784889 -cepheus n 2 2 @ ; 2 0 09497641 09240272 -cepphus n 1 3 @ #m %m 1 0 02046613 -cepphus_columba n 1 1 @ 1 0 02047045 -cepphus_grylle n 1 1 @ 1 0 02046939 -cer n 1 1 @ 1 0 05759017 -cerambycidae n 1 3 @ #m %m 1 0 02168542 -ceramic n 1 4 @ ~ + ; 1 0 02997391 -ceramic_ware n 1 2 @ ~ 1 0 02997607 -ceramicist n 1 3 @ ~ + 1 0 10460806 -ceramics n 1 3 @ + - 1 0 00935247 -ceramist n 1 3 @ ~ + 1 0 10460806 -cerapteryx n 1 3 @ #m %m 1 0 02296150 -cerapteryx_graminis n 1 2 @ #m 1 0 02296276 -ceras n 1 1 @ 1 0 01954004 -cerastes n 1 2 @ #m 1 0 01753488 -cerastes_cornutus n 1 2 @ #m 1 0 01753488 -cerastium n 1 3 @ #m %m 1 0 11806975 -cerastium_alpinum n 1 1 @ 1 0 11807696 -cerastium_arvense n 1 1 @ 1 0 11807367 -cerastium_tomentosum n 1 1 @ 1 0 11807525 -cerate n 1 2 @ ~ 1 0 02997773 -ceratin n 1 2 @ #s 1 0 14732472 -ceratitis n 1 3 @ #m %m 1 0 02197048 -ceratitis_capitata n 1 2 @ #m 1 0 02197185 -ceratodontidae n 1 3 @ #m %m 1 0 02516427 -ceratodus n 1 2 @ #m 1 0 02516776 -ceratonia n 1 3 @ #m %m 1 0 12493090 -ceratonia_siliqua n 1 3 @ #m %p 1 0 12493208 -ceratopetalum n 1 3 @ #m %m 1 0 12787196 -ceratopetalum_gummiferum n 1 2 @ #m 1 0 12787364 -ceratophyllaceae n 1 3 @ #m %m 1 0 11701903 -ceratophyllum n 1 3 @ #m %m 1 0 11702081 -ceratopogon n 1 2 @ #m 1 0 02202878 -ceratopogonidae n 1 3 @ #m %m 1 0 02202509 -ceratopsia n 1 3 @ #m %m 1 0 01703341 -ceratopsian n 1 3 @ ~ #m 1 0 01703569 -ceratopsidae n 1 2 @ #m 1 0 01703866 -ceratopteris n 1 3 @ #m %m 1 0 13171649 -ceratopteris_pteridioides n 1 2 @ #m 1 0 13171797 -ceratopteris_thalictroides n 1 2 @ #m 1 0 13171975 -ceratosaur n 1 3 @ ~ #m 1 0 01712752 -ceratosaurus n 1 3 @ ~ #m 1 0 01712752 -ceratostomataceae n 1 3 @ #m %m 1 0 12964572 -ceratostomella n 1 3 @ #m %m 1 0 12964750 -ceratostomella_ulmi n 1 2 @ #m 1 0 12964920 -ceratotherium n 1 2 @ #m 1 0 02392710 -ceratotherium_simum n 1 1 @ 1 0 02392824 -ceratozamia n 1 2 @ #m 1 0 11602478 -cerberus n 1 2 @ ; 1 0 09493204 -cercaria n 1 3 @ #m + 1 0 01925916 -cercidiphyllaceae n 1 3 @ #m %m 1 0 11702428 -cercidiphyllum n 1 3 @ #m %m 1 0 11702566 -cercidiphyllum_japonicum n 1 2 @ #m 1 0 11702713 -cercidium n 1 2 @ #m 1 0 12493699 -cercidium_floridum n 1 2 @ #m 1 0 12498055 -cercis n 1 3 @ #m %m 1 0 12513426 -cercis_canadensis n 1 1 @ 1 0 12513933 -cercis_occidentalis n 1 1 @ 1 0 12514138 -cercocebus n 1 3 @ #m %m 1 0 02485865 -cercopidae n 1 3 @ #m %m 1 0 02257536 -cercopithecidae n 1 3 @ #m %m 1 0 02483915 -cercopithecus n 1 3 @ #m %m 1 0 02484813 -cercopithecus_aethiops n 1 1 @ 1 0 02485371 -cercopithecus_aethiops_pygerythrus n 1 1 @ 1 0 02485536 -cercopithecus_aethiops_sabaeus n 1 1 @ 1 0 02485688 -cercopithecus_talapoin n 1 1 @ 1 0 02485225 -cercospora n 1 3 @ #m %m 1 0 13080674 -cercospora_kopkei n 1 3 @ #m ; 1 0 13080866 -cercosporella n 1 2 @ #m 1 0 13079775 -cere n 1 1 @ 1 0 01758637 -cereal n 3 3 @ ~ + 3 0 12141495 07802417 07702796 -cereal_bowl n 1 1 @ 1 0 02997910 -cereal_box n 1 1 @ 1 0 02998003 -cereal_grass n 1 2 @ ~ 1 0 12141495 -cereal_oat n 1 2 @ %p 1 0 12110085 -cerebellar_artery n 1 3 @ ~ #p 1 0 05340795 -cerebellar_hemisphere n 1 2 @ #p 1 0 05485856 -cerebellar_vein n 1 1 @ 1 0 05361278 -cerebellum n 1 4 @ #p %p + 1 1 05485554 -cerebral_aneurysm n 1 1 @ 1 0 14107653 -cerebral_aqueduct n 1 1 @ 1 0 05503401 -cerebral_artery n 1 2 @ ~ 1 0 05341206 -cerebral_cortex n 1 5 @ ~ #p %s %p 1 1 05486510 -cerebral_death n 1 1 @ 1 0 11487078 -cerebral_edema n 1 1 @ 1 0 14317064 -cerebral_hemisphere n 1 3 @ ~ #p 1 0 05476915 -cerebral_hemorrhage n 1 2 @ #p 1 0 14370391 -cerebral_mantle n 1 5 @ ~ #p %s %p 1 0 05486510 -cerebral_palsy n 1 1 @ 1 1 14094653 -cerebral_peduncle n 1 2 @ #p 1 0 05476754 -cerebral_thrombosis n 1 1 @ 1 0 14102347 -cerebral_vein n 1 2 @ ~ 1 0 05361391 -cerebration n 1 3 @ ~ + 1 0 05770926 -cerebromeningitis n 1 1 @ 1 0 14343411 -cerebrospinal_fever n 1 1 @ 1 0 14138364 -cerebrospinal_fluid n 1 2 @ #p 1 0 05504107 -cerebrospinal_meningitis n 1 1 @ 1 0 14138364 -cerebrovascular_accident n 1 3 @ ~ %p 1 0 14082303 -cerebrum n 1 3 @ #p %p 1 0 05491993 -cerecloth n 1 1 @ 1 0 02998107 -cerement n 1 1 @ 1 0 03879116 -ceremonial n 1 3 @ ~ + 1 0 07450842 -ceremonial_dance n 1 3 @ ~ #p 1 0 00541479 -ceremonial_occasion n 1 2 @ ~ 1 0 07450842 -ceremoniousness n 1 3 ! @ + 1 0 04911777 -ceremony n 3 3 @ ~ + 3 3 07450842 01026897 01027379 -ceres n 2 2 @ ; 2 0 09558756 09240409 -ceresin n 1 1 @ 1 0 14805322 -cereus n 1 3 @ #m %m 1 0 11844651 -ceriman n 2 3 @ #p %p 2 0 11789589 07746749 -cerise n 1 2 @ + 1 0 04964443 -cerium n 1 3 @ #s + 1 0 14633957 -cerivastatin n 1 1 @ 1 0 02998209 -cero n 2 3 @ #m %p 2 0 02626265 02625851 -cerotic_acid n 1 2 @ #s 1 0 14610548 -ceroxylon n 1 3 @ #m %m 1 0 12587366 -ceroxylon_alpinum n 1 2 @ #m 1 0 12587487 -ceroxylon_andicola n 1 2 @ #m 1 0 12587487 -cert n 1 2 @ ; 1 0 04753799 -certainty n 2 4 ! @ ~ = 2 2 05697135 04753455 -certhia n 1 3 @ #m %m 1 0 01589582 -certhia_americana n 1 2 @ #m 1 0 01589718 -certhia_familiaris n 1 1 @ 1 0 01589893 -certhiidae n 1 3 @ #m %m 1 0 01589125 -certificate n 2 3 @ ~ + 2 1 06471345 13416345 -certificate_of_deposit n 1 2 @ ~ 1 0 13365137 -certificate_of_incorporation n 1 2 @ #p 1 0 06476741 -certificate_of_indebtedness n 1 2 @ ~ 1 0 13398241 -certification n 4 3 @ ~ + 4 2 01139830 06650431 06471345 00154233 -certified_check n 1 1 @ 1 0 13383090 -certified_cheque n 1 1 @ 1 0 13383090 -certified_milk n 1 1 @ 1 0 07846014 -certified_public_accountant n 1 1 @ 1 0 09905185 -certiorari n 1 2 @ ; 1 1 06553631 -certitude n 1 1 @ 1 1 05697789 -cerulean n 1 2 @ + 1 0 04969242 -cerulean_blue n 1 1 @ 1 1 14805412 -cerumen n 1 2 @ + 1 0 15095103 -ceruse n 1 1 @ 1 0 15097722 -cerussite n 1 2 @ %s 1 0 14670178 -cervantes n 1 1 @ 1 0 10889032 -cervantes_saavedra n 1 1 @ 1 0 10889032 -cervical_artery n 1 2 @ #p 1 0 05341920 -cervical_canal n 1 1 @ 1 0 05519559 -cervical_cap n 1 1 @ 1 0 02998363 -cervical_disc_syndrome n 1 1 @ 1 0 14304722 -cervical_glands n 1 1 @ 1 0 05524062 -cervical_glands_of_the_uterus n 1 1 @ 1 0 05524062 -cervical_nerve n 1 1 @ 1 0 05569427 -cervical_plexus n 1 1 @ 1 0 05506507 -cervical_root_syndrome n 1 1 @ 1 0 14304722 -cervical_smear n 1 2 @ #p 1 0 05266239 -cervical_vein n 1 1 @ 1 0 05363270 -cervical_vertebra n 1 3 @ ~ #p 1 0 05588551 -cervicitis n 1 1 @ 1 0 14340091 -cervicofacial_actinomycosis n 1 1 @ 1 0 14254397 -cervid n 1 4 @ ~ #m %p 1 0 02430045 -cervidae n 1 3 @ #m %m 1 0 02429695 -cervix n 2 5 @ ~ #p %p + 2 0 05546540 05303232 -cervix_uteri n 1 3 @ ~ #p 1 0 05303232 -cervus n 1 3 @ #m %m 1 0 02430929 -cervus_elaphus n 1 3 @ ~ #m 1 0 02431122 -cervus_elaphus_canadensis n 1 2 @ #m 1 0 02431785 -cervus_nipon n 1 2 @ #m 1 0 02431976 -cervus_sika n 1 2 @ #m 1 0 02431976 -cervus_unicolor n 1 2 @ #m 1 0 02431628 -ceryle n 1 3 @ #m %m 1 0 01827948 -ceryle_alcyon n 1 2 @ #m 1 0 01828096 -cesar_chavez n 1 1 @ 1 0 10894208 -cesar_estrada_chavez n 1 1 @ 1 0 10894208 -cesar_franck n 1 1 @ 1 0 10978693 -cesar_ritz n 1 1 @ 1 0 11263558 -cesare_borgia n 1 1 @ 1 0 10857849 -cesarean n 1 3 @ %p + 1 0 00185778 -cesarean_delivery n 1 2 @ %p 1 0 00185778 -cesarean_section n 1 2 @ %p 1 0 00185778 -cesarian n 1 3 @ %p + 1 0 00185778 -cesarian_section n 1 2 @ %p 1 0 00185778 -cesium n 1 3 @ ~ #s 1 0 14634232 -cesium_137 n 1 1 @ 1 0 14634477 -cessation n 1 3 @ ~ + 1 0 07362075 -cession n 1 3 @ ~ + 1 0 00213052 -cesspit n 1 1 @ 1 0 02998563 -cesspool n 1 1 @ 1 0 02998563 -cestida n 1 3 @ #m %m 1 0 01920582 -cestidae n 1 3 @ #m %m 1 0 01920735 -cestoda n 1 3 @ #m %m 1 0 01927301 -cestode n 1 3 @ ~ #m 1 0 01927456 -cestrum n 1 3 @ #m %m 1 0 12902297 -cestrum_diurnum n 1 2 @ #m 1 0 12902466 -cestrum_nocturnum n 1 2 @ #m 1 0 12902662 -cestum n 1 3 @ #m %m 1 0 01920939 -cestum_veneris n 1 2 @ #m 1 0 01921059 -cetacea n 1 4 @ #m %m + 1 0 02062209 -cetacean n 1 5 @ ~ #m %p + 1 0 02062430 -cetacean_mammal n 1 4 @ ~ #m %p 1 0 02062430 -cetchup n 1 1 @ 1 0 07822197 -ceterach n 1 2 @ #m 1 0 13183251 -ceterach_officinarum n 1 2 @ #m 1 0 13183489 -cetonia n 1 3 @ #m %m 1 0 02175440 -cetonia_aurata n 1 2 @ #m 1 0 02175569 -cetoniidae n 1 3 @ #m %m 1 0 02175263 -cetorhinidae n 1 2 @ #m 1 0 01485306 -cetorhinus n 1 3 @ #m %m 1 0 01485073 -cetorhinus_maximus n 1 2 @ #m 1 0 01485479 -cetraria n 1 3 @ #m %m 1 0 12992022 -cetraria_islandica n 1 2 @ #m 1 0 12992177 -cetrimide n 1 1 @ 1 0 14805550 -cetus n 1 1 @ 1 0 09240507 -cewa n 1 2 @ #m 1 0 09697771 -ceylon n 2 5 @ #p %m %p - 2 1 08718962 08719100 -ceylon_bowstring_hemp n 1 1 @ 1 0 12481289 -ceylon_cinnamon n 1 3 @ #m %p 1 0 11704791 -ceylon_cinnamon_tree n 1 3 @ #m %p 1 0 11704791 -ceylon_gooseberry n 1 3 @ #m %p 1 0 12378963 -ceylonite n 1 1 @ 1 0 15051503 -cezanne n 1 1 @ 1 0 10889316 -cf n 2 1 @ 2 0 14633037 14155506 -cfc n 1 2 @ ~ 1 0 14603497 -cfo n 1 1 @ 1 0 09916601 -cftr n 1 1 @ 1 0 05439810 -cgs n 1 1 @ 1 0 13578140 -cgs_system n 1 1 @ 1 0 13578140 -ch'i n 1 2 @ ; 1 0 14050559 -ch'in n 1 1 @ 1 0 08157182 -ch'in_dynasty n 1 1 @ 1 0 08157182 -ch'in_shih_huang_ti n 1 1 @ 1 0 11250581 -ch'ing n 1 1 @ 1 0 08157405 -ch'ing_dynasty n 1 1 @ 1 0 08157405 -cha-cha n 1 2 @ + 1 1 00535557 -cha-cha-cha n 1 1 @ 1 0 00535557 -chabad n 2 2 @ %m 2 0 08475332 06234415 -chabad-lubavitch n 1 2 @ %m 1 0 08475332 -chabad_hasidism n 1 1 @ 1 0 06234415 -chabasite n 1 1 @ 1 0 15107196 -chabazite n 1 1 @ 1 0 15107196 -chablis n 2 2 @ #p 2 0 08935381 07894551 -chachalaca n 1 3 @ ~ #m 1 0 01800424 -chachka n 2 2 @ ; 2 0 09905530 02998696 -chacma n 1 1 @ 1 0 02486657 -chacma_baboon n 1 1 @ 1 0 02486657 -chad n 4 6 @ ~ #p %m %p + 4 0 14805676 09330467 08720037 06986276 -chadar n 1 1 @ 1 0 02998841 -chaddar n 1 1 @ 1 0 02998841 -chadian n 1 3 @ #m + 1 0 09697650 -chadian_franc n 1 2 @ %p 1 0 13677469 -chadic n 1 2 @ ~ 1 0 06986276 -chadic_language n 1 2 @ ~ 1 0 06986276 -chadlock n 1 1 @ 1 0 11896722 -chador n 1 1 @ 1 0 02998841 -chaenactis n 1 2 @ #m 1 0 11949857 -chaenomeles n 1 3 @ #m %m 1 0 12624249 -chaenomeles_japonica n 1 1 @ 1 0 12624568 -chaenomeles_speciosa n 1 1 @ 1 0 12624721 -chaenopsis n 1 3 @ #m %m 1 0 02614288 -chaenopsis_ocellata n 1 2 @ #m 1 0 02614653 -chaeronea n 1 2 @ ; 1 0 01274531 -chaeta n 1 2 @ + 1 0 01901694 -chaetodipterus n 1 3 @ #m %m 1 0 02604811 -chaetodipterus_faber n 1 2 @ #m 1 0 02604954 -chaetodon n 1 2 @ #m 1 0 02605703 -chaetodontidae n 1 3 @ #m %m 1 0 02605139 -chaetognath n 1 3 @ ~ #m 1 0 01923890 -chaetognatha n 1 4 @ #m %m + 1 0 01923637 -chafe n 2 3 @ ~ + 2 0 14333136 07518261 -chafeweed n 1 1 @ 1 0 11972959 -chaff n 2 3 @ ~ + 2 0 14805899 02999001 -chaffinch n 1 2 @ #m 1 0 01530439 -chaffweed n 1 2 @ #m 1 0 12092930 -chafing n 1 2 @ ~ 1 0 07496166 -chafing_dish n 1 1 @ 1 0 02999138 -chafing_gear n 1 1 @ 1 0 02999272 -chaga n 1 1 @ 1 0 06993445 -chagall n 1 1 @ 1 0 10889533 -chagatai n 1 1 @ 1 0 06928047 -chagga n 1 1 @ 1 0 06993445 -chagrin n 1 2 @ + 1 1 07507742 -chahta n 1 1 @ 1 0 06912436 -chaim_azriel_weizmann n 1 1 @ 1 0 11380429 -chaim_soutine n 1 1 @ 1 0 11309318 -chaim_weizmann n 1 1 @ 1 0 11380429 -chain n 10 7 @ ~ #p %m %p + ; 10 5 08376250 09240621 02999410 08057816 02999936 13652994 10891029 09403734 03000021 02999757 -chain-smoker n 1 2 @ + 1 0 09905697 -chain_armor n 1 3 @ ~ ; 1 0 03000247 -chain_armour n 1 3 @ ~ ; 1 0 03000247 -chain_fern n 1 3 @ ~ #m 1 0 13186388 -chain_gang n 1 1 @ 1 0 08243248 -chain_letter n 1 1 @ 1 0 06625739 -chain_lightning n 1 1 @ 1 0 11459200 -chain_mail n 1 3 @ ~ ; 1 0 03000247 -chain_of_mountains n 1 3 @ ~ %p 1 0 09403734 -chain_pickerel n 1 1 @ 1 0 02561803 -chain_pike n 1 1 @ 1 0 02561803 -chain_printer n 1 2 @ %p 1 0 03000530 -chain_reaction n 2 1 @ 2 1 13445479 13445624 -chain_reactor n 1 1 @ 1 0 02753710 -chain_saw n 1 1 @ 1 0 03000684 -chain_stitch n 2 2 @ ~ 2 0 03000966 03000808 -chain_store n 1 2 @ #m 1 1 03001115 -chain_tongs n 1 4 @ ~ %p ; 1 0 03001282 -chain_wrench n 1 1 @ 1 0 03001540 -chainlink_fence n 1 1 @ 1 0 03000134 -chains n 1 2 @ ; 1 0 03585438 -chainsaw n 1 1 @ 1 0 03000684 -chair n 5 4 @ ~ %p + 5 2 03001627 00598056 10468962 03271030 03002096 -chair_car n 1 1 @ 1 0 03891664 -chair_lift n 1 1 @ 1 0 03002341 -chair_of_state n 1 2 @ ~ 1 0 03002210 -chairlift n 1 1 @ 1 0 03002341 -chairman n 1 3 @ ~ + 1 1 10468962 -chairman_of_the_board n 1 1 @ 1 1 09905842 -chairmanship n 1 2 @ + 1 0 00590047 -chairperson n 1 2 @ ~ 1 0 10468962 -chairwoman n 1 2 @ ~ 1 0 10468962 -chaise n 2 2 @ %p 2 1 03002711 03002555 -chaise_longue n 1 1 @ 1 0 03002711 -chait n 1 3 @ #p %p 1 0 15219694 -chaja n 1 1 @ 1 0 01861330 -chalaza n 2 2 @ #p 2 0 11679085 01460963 -chalazion n 1 1 @ 1 0 14202520 -chalcanthite n 1 1 @ 1 0 14782252 -chalcedon n 2 2 @ #p 2 0 09041199 08314153 -chalcedony n 1 2 @ ~ 1 0 14806333 -chalcid n 1 3 @ ~ #m 1 0 02217563 -chalcid_fly n 1 3 @ ~ #m 1 0 02217563 -chalcid_wasp n 1 3 @ ~ #m 1 0 02217563 -chalcidae n 1 3 @ #m %m 1 0 02217334 -chalcidfly n 1 3 @ ~ #m 1 0 02217563 -chalcididae n 1 3 @ #m %m 1 0 02217334 -chalcis n 1 3 @ #m %m 1 0 02217997 -chalcis_fly n 1 2 @ #m 1 0 02218134 -chalcocite n 1 2 @ %s 1 0 14670344 -chalcopyrite n 1 2 @ %s 1 0 14670481 -chalcostigma n 1 3 @ #m %m 1 0 01834284 -chaldaea n 2 5 @ #p %p ; - 2 0 08917881 08917503 -chaldaean n 2 2 @ + 2 0 09905965 09640327 -chaldea n 2 6 @ #p %p + ; - 2 0 08917881 08917503 -chaldean n 2 2 @ + 2 0 09905965 09640327 -chaldee n 2 2 @ + 2 0 09905965 09640327 -chaldron n 1 1 @ 1 0 13623329 -chalet n 1 1 @ 1 0 03002816 -chalice n 1 2 @ ~ 1 0 03002948 -chalice_vine n 1 2 @ #m 1 0 12913791 -chalk n 4 5 @ ~ #s %s + 4 0 14806598 04961472 03754295 03003091 -chalk_dust n 1 1 @ 1 0 14839698 -chalk_line n 1 1 @ 1 0 03003378 -chalk_pit n 1 1 @ 1 0 03003548 -chalk_talk n 1 1 @ 1 0 00893402 -chalkboard n 1 1 @ 1 0 02846511 -chalkpit n 1 1 @ 1 0 03003548 -chalkstone n 1 1 @ 1 0 15085925 -challah n 1 2 @ ; 1 0 07681450 -challenge n 5 3 @ ~ + 5 3 13932948 07231294 07193405 07208565 07191569 -challenger n 1 3 @ ~ + 1 0 10533013 -challis n 1 1 @ 1 0 03003633 -chalons n 1 2 @ ; 1 0 01274733 -chalons-sur-marne n 1 2 @ ; 1 0 01274733 -chalybite n 1 1 @ 1 0 15039827 -chamaea n 1 3 @ #m %m 1 0 01593156 -chamaea_fasciata n 1 2 @ #m 1 0 01593282 -chamaecrista n 1 3 @ #m %m 1 0 12494115 -chamaecrista_fasciculata n 1 2 @ #m 1 0 12494358 -chamaecyparis n 1 3 @ #m %m 1 0 11634970 -chamaecyparis_lawsoniana n 1 3 @ #m %s 1 0 11635433 -chamaecyparis_nootkatensis n 1 2 @ #m 1 0 11635830 -chamaecyparis_thyoides n 1 2 @ #m 1 0 11635152 -chamaecytisus n 1 3 @ #m %m 1 0 12514324 -chamaecytisus_palmensis n 1 2 @ #m 1 0 12514592 -chamaedaphne n 1 3 @ #m %m 1 0 12234176 -chamaedaphne_calyculata n 1 2 @ #m 1 0 12234318 -chamaeleo n 1 3 @ #m %m 1 0 01693995 -chamaeleo_chamaeleon n 1 2 @ #m 1 0 01694178 -chamaeleo_oweni n 1 2 @ #m 1 0 01694311 -chamaeleon n 2 3 @ ~ #m 2 0 09240889 01693783 -chamaeleonidae n 1 3 @ #m %m 1 0 01693472 -chamaeleontidae n 1 3 @ #m %m 1 0 01693472 -chamaemelum n 1 3 @ #m %m 1 0 11949217 -chamaemelum_nobilis n 1 3 @ #m #s 1 0 11949402 -chamber n 5 5 @ ~ #p %p + 5 3 03003730 05392744 03004146 08318904 02821627 -chamber_music n 1 1 @ 1 1 07026239 -chamber_of_commerce n 1 1 @ 1 1 08319061 -chamber_orchestra n 1 1 @ 1 0 08248411 -chambered_nautilus n 1 2 @ #m 1 0 01968897 -chamberlain n 3 1 @ 3 0 10889689 09906195 09906079 -chambermaid n 1 1 @ 1 1 09906293 -chamberpot n 1 1 @ 1 0 03004275 -chambers n 1 1 @ 1 0 10889905 -chambray n 1 1 @ 1 0 03004409 -chameleon n 3 3 @ ~ #m 3 0 09906449 09240889 01693783 -chameleon_tree_frog n 1 1 @ 1 0 01651285 -chamfer n 1 3 @ ~ + 1 0 02833576 -chamfer_bit n 1 1 @ 1 0 03004531 -chamfer_plane n 1 1 @ 1 0 03004620 -chamfron n 1 1 @ 1 0 03005619 -chammy n 1 2 @ ~ 1 0 14761806 -chammy_leather n 1 2 @ ~ 1 0 14761806 -chamois n 2 3 @ ~ #m 2 0 14761806 02419336 -chamois_cloth n 1 1 @ 1 0 03004713 -chamois_cress n 1 1 @ 1 0 11893916 -chamois_leather n 1 2 @ ~ 1 0 14761806 -chamomile n 1 3 @ #m #s 1 0 11949402 -chamosite n 1 1 @ 1 0 14806728 -champ n 1 2 @ ~ 1 1 09906704 -champagne n 2 3 @ #p %p 2 1 07893642 08941535 -champagne-ardenne n 1 3 @ #p %p 1 0 08941535 -champagne_cup n 1 1 @ 1 0 07931001 -champagne_flute n 1 1 @ 1 0 03372549 -champaign n 2 3 @ ~ #p 2 0 09393605 09083255 -champerty n 1 2 @ ; 1 0 00765488 -champion n 4 3 @ ~ + 4 2 09906704 09906538 10677713 09762509 -champion_lode n 1 1 @ 1 0 11445960 -championship n 3 2 @ ~ 3 1 13948912 07457834 01213886 -champlain n 2 2 @ #p 2 0 10890032 09330604 -champollion n 1 1 @ 1 0 10890211 -champs_elysees n 1 2 @ #p 1 0 08934174 -chanal n 1 2 @ #m 1 0 12531328 -chanar n 1 2 @ #m 1 0 12531328 -chance n 5 3 @ ~ + 5 4 14483917 11418138 00802629 05091770 14482968 -chance-half_correlation n 1 2 @ ; 1 0 06035674 -chance-medley n 1 2 @ ; 1 0 00221343 -chance_event n 1 2 @ ~ 1 0 07300960 -chance_variable n 1 1 @ 1 0 05864177 -chancel n 1 3 @ #p %p 1 1 03004824 -chancellery n 1 1 @ 1 0 03005033 -chancellor n 3 5 @ ~ #m + ; 3 0 09907408 09906986 09906848 -chancellor_of_the_exchequer n 1 2 @ #m 1 0 09907408 -chancellorship n 1 2 @ + 1 0 00590148 -chancellorsville n 2 3 @ #p ; 2 0 09151963 01274909 -chancery n 2 1 @ 2 0 08331011 03005147 -chancre n 1 3 @ #p + 1 0 14184067 -chancroid n 1 2 @ + 1 0 14212303 -chandelier n 1 1 @ 1 1 03005285 -chandelle n 1 1 @ 1 0 00169651 -chandi n 1 1 @ 1 0 09525486 -chandler n 3 2 @ ~ 3 0 10890437 09907804 09907566 -chandlery n 2 1 @ 2 0 03005515 03005425 -chanfron n 1 1 @ 1 0 03005619 -chang n 1 2 @ #p 1 0 09481523 -chang_jiang n 1 2 @ #p 1 0 09481523 -chang_kuo n 1 1 @ 1 0 09533301 -chang_kuo-lao n 1 1 @ 1 0 09533301 -changan n 1 2 @ #p 1 0 08729452 -change n 10 3 @ ~ + 10 7 07296428 13859043 00191142 11412727 13387689 03005920 03005769 13388111 13387479 04752034 -change-of-pace n 1 1 @ 1 0 00107684 -change-of-pace_ball n 1 1 @ 1 0 00107684 -change-up n 1 1 @ 1 0 00107684 -change_of_color n 1 2 @ ~ 1 0 00273690 -change_of_course n 1 2 @ ~ 1 0 00349886 -change_of_direction n 1 2 @ ~ 1 0 00346296 -change_of_integrity n 1 2 @ ~ 1 0 00376063 -change_of_life n 1 2 @ #p 1 0 15154462 -change_of_location n 1 2 @ ~ 1 0 07311115 -change_of_magnitude n 1 2 @ ~ 1 0 00351485 -change_of_mind n 1 2 @ ~ 1 0 05789808 -change_of_shape n 1 2 @ ~ 1 0 00404403 -change_of_state n 1 2 @ ~ 1 0 00199130 -change_ringing n 1 1 @ 1 0 00544605 -changeability n 1 4 @ ~ = + 1 0 04733640 -changeableness n 1 5 ! @ ~ = + 1 0 04733640 -changefulness n 1 3 @ ~ + 1 0 04734885 -changelessness n 2 4 ! @ ~ + 2 0 05054312 04737934 -changeling n 2 2 @ ~ 2 0 10197525 09907919 -changeover n 1 3 @ ~ + 1 0 07415730 -changer n 2 4 @ ~ #p + 2 0 09609871 04063154 -changjiang n 1 2 @ #p 1 0 09481523 -changtzu n 1 2 @ #p 1 0 09241047 -channel n 8 5 @ ~ %p + ; 8 2 06259898 03006105 13893786 09241247 06260121 05250659 03006398 01113595 -channel_bass n 1 2 @ #m 1 0 02595702 -channel_capacity n 1 1 @ 1 0 15287073 -channel_cat n 1 2 @ ~ 1 0 02519686 -channel_catfish n 1 2 @ ~ 1 0 02519686 -channel_island n 1 3 @ ~ #p 1 0 08887013 -channel_islands_national_park n 1 2 @ #p 1 0 08603924 -channel_tunnel n 1 1 @ 1 0 03027935 -channelisation n 1 2 @ + 1 0 01142519 -channelization n 1 2 @ + 1 0 01142519 -channels n 1 1 @ 1 0 06261464 -channidae n 1 3 @ #m %m 1 0 02514198 -channukah n 1 3 @ #p ; 1 0 15199033 -channukkah n 1 3 @ #p ; 1 0 15199033 -chanoyu n 1 2 @ ; 1 0 01027231 -chanson_de_geste n 1 1 @ 1 0 06382506 -chant n 1 3 @ ~ + 1 0 07034634 -chantarelle n 1 2 @ #m 1 0 13004423 -chanter n 1 3 @ #p + 1 0 03006626 -chanterelle n 1 2 @ #m 1 0 13004423 -chantey n 1 1 @ 1 0 07050042 -chanting n 1 3 @ ~ + 1 0 01254685 -chantry n 2 1 @ 2 0 13271705 03006788 -chanty n 1 1 @ 1 0 07050042 -chanukah n 1 3 @ #p ; 1 0 15199033 -chanukkah n 1 3 @ #p ; 1 0 15199033 -chao_phraya n 1 2 @ #p 1 0 09241712 -chaos n 4 4 @ ~ + ; 4 1 13976322 11434899 09557770 06246529 -chaotic_attractor n 1 1 @ 1 0 05866489 -chap n 4 4 @ ~ + ; 4 1 09908025 13907272 09241929 03006903 -chaparral n 1 1 @ 1 0 08438223 -chaparral_broom n 1 2 @ #m 1 0 11938732 -chaparral_cock n 1 2 @ #m 1 0 01824035 -chaparral_mallow n 1 2 @ #m 1 0 12183026 -chaparral_pea n 1 2 @ #m 1 0 12559044 -chaparral_sage n 1 1 @ 1 0 12865562 -chapati n 1 2 @ ; 1 0 07683490 -chapatti n 1 2 @ ; 1 0 07683490 -chapeau n 1 3 @ ~ %p 1 0 03497657 -chapel n 2 2 @ ~ 2 1 03007130 01033024 -chapel_hill n 1 3 @ #p %p 1 0 09128201 -chapel_service n 1 1 @ 1 0 01033024 -chapelgoer n 1 1 @ 1 0 09958133 -chaperon n 1 3 @ ~ + 1 0 09908273 -chaperone n 1 3 @ ~ + 1 0 09908273 -chapiter n 1 2 @ #p 1 0 02956247 -chaplain n 1 3 @ ~ + 1 0 09908508 -chaplaincy n 1 1 @ 1 0 00590269 -chaplainship n 1 2 @ + 1 0 00590269 -chaplet n 1 2 @ ~ 1 0 04606014 -chaplin n 1 1 @ 1 0 10890637 -chapman n 2 1 @ 2 0 10890868 09908678 -chapter n 5 3 @ #m #p 5 3 06396142 15252907 08228665 08228838 07307172 -chapterhouse n 2 1 @ 2 0 03007444 03007297 -chapultepec n 1 3 @ #p ; 1 0 01275142 -char n 3 4 @ ~ #m + 3 0 14685172 09911226 02538406 -chara n 1 2 @ #m 1 0 01412925 -charabanc n 1 5 @ ~ #m %p - 1 0 02924116 -characeae n 1 3 @ #m %m 1 0 01412479 -characid n 1 3 @ ~ #m 1 0 02583567 -characidae n 1 3 @ #m %m 1 0 02583211 -characin n 1 3 @ ~ #m 1 0 02583567 -characin_fish n 1 3 @ ~ #m 1 0 02583567 -characinidae n 1 1 @ 1 0 02583457 -character n 9 6 @ ~ #p %p + ; 9 7 09587565 05849284 04620216 05929008 09909060 14438693 06694796 06818970 04616916 -character-at-a-time_printer n 1 2 @ ~ 1 0 03007591 -character_actor n 1 1 @ 1 0 09909363 -character_assassination n 1 1 @ 1 0 06719974 -character_printer n 1 2 @ ~ 1 0 03007591 -character_reference n 1 1 @ 1 0 06694796 -character_set n 1 2 @ ~ 1 0 06488880 -character_witness n 1 1 @ 1 0 09909477 -characterisation n 2 3 @ ~ + 2 0 07201804 07201562 -characterisic_function n 1 3 @ ~ ; 1 0 07001065 -characteristic n 4 5 @ ~ #p + ; 4 2 05849789 04731497 06813310 04917870 -characteristic_curve n 1 3 @ ~ ; 1 0 07001065 -characteristic_root_of_a_square_matrix n 1 1 @ 1 0 05856589 -characterization n 3 3 @ ~ + 3 1 07201804 07201562 00548802 -charade n 2 2 @ #p 2 0 06780309 06288947 -charades n 1 2 @ %p 1 0 00459727 -charadrii n 1 3 @ #m %m 1 0 02022135 -charadriidae n 1 3 @ #m %m 1 0 02023133 -charadriiformes n 1 3 @ #m %m 1 0 02021438 -charadrius n 1 3 @ #m %m 1 0 02023664 -charadrius_melodus n 1 2 @ #m 1 0 02023855 -charadrius_morinellus n 1 2 @ #m 1 0 02024185 -charadrius_vociferus n 1 2 @ #m 1 0 02023992 -charales n 1 3 @ #m %m 1 0 01412279 -charcoal n 4 2 @ + 4 2 14685296 03007824 04962240 03007955 -charcoal_burner n 2 1 @ 2 0 09909660 03008080 -charcoal_gray n 1 1 @ 1 1 04962240 -charcoal_grey n 1 1 @ 1 0 04962240 -charcot n 1 1 @ 1 0 10891830 -charcot-marie-tooth_disease n 1 1 @ 1 0 14208587 -charcuterie n 1 1 @ 1 0 03008177 -chard n 2 3 @ #p %p 2 0 11832671 07720277 -chard_plant n 1 2 @ %p 1 0 11832671 -chardonnay n 2 3 @ #s %s 2 0 13145924 07894799 -chardonnay_grape n 1 2 @ %s 1 0 13145924 -charge n 15 5 @ ~ #p + ; 15 7 00974762 06561942 13306870 11435028 00829378 00731222 09909760 13400798 09185612 07528470 07190941 07169480 06730780 03008565 03008275 -charge-exchange_accelerator n 1 1 @ 1 0 03008817 -charge_account n 1 2 @ ~ 1 0 13375604 -charge_account_credit n 1 2 @ ~ 1 0 13375323 -charge_card n 1 3 @ ~ %p 1 0 13376012 -charge_d'affaires n 1 1 @ 1 0 09909929 -charge_of_quarters n 1 1 @ 1 0 09910084 -charge_per_unit n 1 2 @ ~ 1 0 13325010 -charge_plate n 1 3 @ ~ %p 1 0 13376012 -charge_sheet n 1 1 @ 1 0 06502858 -charge_unit n 1 2 @ ~ 1 0 13632961 -chargeman n 1 1 @ 1 0 09859557 -charger n 2 2 @ + 2 1 02378625 03008976 -chari n 1 2 @ #p 1 0 09431409 -chari-nile n 1 2 @ ~ 1 0 06997938 -chari_river n 1 2 @ #p 1 0 09431409 -charina n 1 3 @ #m %m 1 0 01742310 -charina_bottae n 1 2 @ #m 1 0 01742447 -chariness n 1 3 @ = + 1 0 04664413 -chariot n 2 2 @ + 2 1 03009111 03009269 -chariot_race n 1 1 @ 1 0 07459778 -charioteer n 2 3 @ %m + 2 0 09910222 09211056 -charisma n 1 2 @ + 1 1 04686537 -charitable_trust n 1 1 @ 1 0 13361465 -charitableness n 1 2 @ + 1 0 04832050 -charity n 5 2 @ ~ 5 3 08406619 04840405 01089635 12809626 08055824 -charity_case n 1 1 @ 1 0 10773800 -charity_shot n 1 2 @ ~ 1 0 00110964 -charity_throw n 1 2 @ ~ 1 0 00110964 -charity_toss n 1 2 @ ~ 1 0 00110964 -charivari n 1 1 @ 1 0 07054122 -charlatan n 1 2 @ ~ 1 1 10334782 -charlatanism n 1 1 @ 1 0 00750306 -charlemagne n 1 1 @ 1 0 10891981 -charleroi n 1 2 @ #p 1 0 08851364 -charles n 9 3 @ #p + 9 0 10893433 10893153 10892947 10892786 10892564 10892416 10892218 10891981 09242037 -charles's_law n 1 2 @ ; 1 0 05878229 -charles's_wain n 1 2 @ #p 1 0 09219858 -charles_a._lindbergh n 1 1 @ 1 0 11132948 -charles_andre_joseph_marie_de_gaulle n 1 1 @ 1 0 10927824 -charles_augustin_de_coulomb n 1 1 @ 1 0 10912802 -charles_augustus_lindbergh n 1 1 @ 1 0 11132948 -charles_baudelaire n 1 1 @ 1 0 10838484 -charles_bullfinch n 1 1 @ 1 0 10870897 -charles_camille_saint-saens n 1 1 @ 1 0 11278351 -charles_christopher_parker n 1 1 @ 1 0 11222914 -charles_cornwallis n 1 1 @ 1 0 10911687 -charles_dana_gibson n 1 1 @ 1 0 10998474 -charles_darwin n 1 1 @ 1 0 10923313 -charles_de_gaulle n 1 1 @ 1 0 10927824 -charles_dickens n 1 1 @ 1 0 10934410 -charles_digby_harrod n 1 1 @ 1 0 11032359 -charles_dillon_stengel n 1 1 @ 1 0 11316429 -charles_dodgson n 1 1 @ 1 0 10884061 -charles_dudley_warner n 1 1 @ 1 0 11374589 -charles_eames n 1 1 @ 1 0 10947259 -charles_edouard_jeanneret n 1 1 @ 1 0 11123124 -charles_edward_berry n 1 1 @ 1 0 10849083 -charles_edward_ives n 1 1 @ 1 0 11075670 -charles_evans_hughes n 1 1 @ 1 0 11064662 -charles_farrar_browne n 1 1 @ 1 0 10866571 -charles_follen_mckim n 1 1 @ 1 0 11169294 -charles_fourier n 1 1 @ 1 0 10976256 -charles_francis_hall n 1 1 @ 1 0 11024582 -charles_francois_gounod n 1 1 @ 1 0 11009635 -charles_franklin_kettering n 1 1 @ 1 0 11102878 -charles_frederick_menninger n 1 1 @ 1 0 11174354 -charles_frederick_worth n 1 1 @ 1 0 11397885 -charles_goodyear n 1 1 @ 1 0 11007620 -charles_grey n 1 1 @ 1 0 11015650 -charles_hard_townes n 1 1 @ 1 0 11346873 -charles_hardin_holley n 1 1 @ 1 0 11056654 -charles_henry_harrod n 1 1 @ 1 0 11032158 -charles_herbert_best n 1 1 @ 1 0 10850049 -charles_i n 3 1 @ 3 0 10892947 10892564 10891981 -charles_ii n 2 1 @ 2 0 10892947 10892786 -charles_ix n 1 1 @ 1 0 10893433 -charles_james_fox n 1 1 @ 1 0 10976997 -charles_john_huffam_dickens n 1 1 @ 1 0 10934410 -charles_joseph_clark n 1 1 @ 1 0 10898549 -charles_kay_ogden n 1 1 @ 1 0 11212786 -charles_kettering n 1 1 @ 1 0 11102878 -charles_l'enfant n 1 1 @ 1 0 11126295 -charles_lamb n 1 1 @ 1 0 11115029 -charles_laughton n 1 1 @ 1 0 11119061 -charles_lindbergh n 1 1 @ 1 0 11132948 -charles_liston n 1 1 @ 1 0 11135044 -charles_louis_de_secondat n 1 1 @ 1 0 11186911 -charles_louis_napoleon_bonaparte n 1 1 @ 1 0 11200492 -charles_lutwidge_dodgson n 1 1 @ 1 0 10884061 -charles_m._schulz n 1 1 @ 1 0 11286820 -charles_martin_hall n 1 1 @ 1 0 11024731 -charles_maurice_de_talleyrand n 1 1 @ 1 0 11329690 -charles_menninger n 1 1 @ 1 0 11174354 -charles_munroe_schulz n 1 1 @ 1 0 11286820 -charles_peirce n 1 1 @ 1 0 11228298 -charles_percy_snow n 1 1 @ 1 0 11307082 -charles_pierre_baudelaire n 1 1 @ 1 0 10838484 -charles_proteus_steinmetz n 1 1 @ 1 0 11315580 -charles_ringling n 1 1 @ 1 0 11263180 -charles_river n 1 2 @ #p 1 0 09242037 -charles_robert_darwin n 1 1 @ 1 0 10923313 -charles_robert_redford n 1 1 @ 1 0 11256125 -charles_sanders_peirce n 1 1 @ 1 0 11228298 -charles_schulz n 1 1 @ 1 0 11286820 -charles_stewart_parnell n 1 1 @ 1 0 11223929 -charles_stuart n 1 1 @ 1 0 10892564 -charles_taze_russell n 1 1 @ 1 0 11275772 -charles_the_bald n 1 1 @ 1 0 10892947 -charles_the_great n 1 1 @ 1 0 10891981 -charles_thomson_rees_wilson n 1 1 @ 1 0 11391234 -charles_townes n 1 1 @ 1 0 11346873 -charles_vii n 1 1 @ 1 0 10893153 -charles_watson-wentworth n 1 1 @ 1 0 11267343 -charles_wesley n 1 1 @ 1 0 11381964 -charles_wilkes n 1 1 @ 1 0 11387060 -charles_william_post n 1 1 @ 1 0 11243562 -charleston n 3 3 @ #p + 3 1 09155798 09138538 00536359 -charlestown n 1 3 @ #p %p 1 0 09096498 -charlestown_navy_yard n 1 2 @ #p 1 0 03009477 -charley-horse n 1 2 @ ; 1 0 14360742 -charley_horse n 1 2 @ ; 1 0 14360742 -charlie_chaplin n 1 1 @ 1 0 10890637 -charlie_parker n 1 1 @ 1 0 11222914 -charlock n 1 1 @ 1 0 11896722 -charlotte n 2 3 @ ~ #p 2 0 09128372 07610890 -charlotte_anna_perkins_gilman n 1 1 @ 1 0 11000349 -charlotte_bronte n 1 1 @ 1 0 10865567 -charlotte_corday n 1 1 @ 1 0 10910580 -charlotte_russe n 1 1 @ 1 0 07614004 -charlottetown n 1 2 @ #p 1 0 08828928 -charm n 4 4 @ ~ + ; 4 3 04687333 07159791 03009633 05844433 -charm_campaign n 1 1 @ 1 0 00799236 -charm_quark n 1 1 @ 1 0 09242232 -charmer n 2 3 @ ~ + 2 0 10615179 09910374 -charnel n 1 1 @ 1 1 03009794 -charnel_house n 1 1 @ 1 0 03009794 -charolais n 1 1 @ 1 0 02406647 -charon n 1 2 @ ; 1 0 09493374 -charophyceae n 1 3 @ #m %m 1 0 01412085 -charr n 1 3 @ ~ #m 1 0 02538406 -charred_pancake_cup n 1 1 @ 1 0 12984377 -charronia n 1 3 @ #m %m 1 0 02450992 -charronia_flavigula n 1 2 @ #m 1 0 02451125 -chart n 2 3 @ ~ + 2 2 06999802 03009920 -charter n 2 4 @ ~ %p + 2 1 06471737 06522501 -charter_member n 1 1 @ 1 0 09910719 -charter_school n 1 1 @ 1 0 08410454 -chartered_accountant n 1 1 @ 1 0 09910556 -charterhouse n 1 1 @ 1 0 03010057 -chartism n 1 2 @ + 1 0 05956287 -chartist n 2 2 @ + 2 0 09911051 09910840 -chartres n 1 3 @ #p %p 1 0 08935516 -chartres_cathedral n 1 2 @ #p 1 0 03010138 -chartreuse n 2 3 @ %s + 2 0 07908923 04968257 -charwoman n 1 1 @ 1 0 09911226 -charybdis n 1 2 @ ; 1 0 07433336 -chase n 3 3 @ ~ + 3 1 00319939 10893606 03010283 -chased n 1 1 @ 1 0 10494778 -chaser n 2 3 @ ~ + 2 0 10494935 07883860 -chasid n 1 2 @ #m 1 0 10161695 -chasidim n 1 2 @ %m 1 0 08094866 -chasidism n 1 2 @ ~ 1 0 06234257 -chasm n 1 2 @ ~ 1 0 09242389 -chasse n 1 3 @ + ; 1 0 00534152 -chassid n 1 2 @ #m 1 0 10161695 -chassidim n 1 2 @ %m 1 0 08094866 -chassidism n 1 2 @ ~ 1 0 06234257 -chassis n 3 3 @ ~ #p 3 0 05217168 03010656 03010473 -chasteness n 1 2 @ + 1 0 04697442 -chastening n 1 1 @ 1 0 06714288 -chastisement n 2 2 @ + 2 1 01161017 06714288 -chastity n 2 5 @ ~ = + ; 2 1 01069125 04849759 -chasuble n 1 1 @ 1 0 03010795 -chat n 3 4 @ ~ #m + 3 0 07134850 01569836 01560636 -chat_room n 1 1 @ 1 0 06359467 -chat_show n 1 2 @ ~ 1 0 06620227 -chateau n 1 1 @ 1 0 03010915 -chateau-thierry n 1 3 @ #p ; 1 0 01271428 -chateaubriand n 2 1 @ 2 0 10893830 07660361 -chatelaine n 2 1 @ 2 0 09911465 03011018 -chateura n 1 3 @ #m %m 1 0 01832684 -chateura_pelagica n 1 2 @ #m 1 0 01832813 -chatroom n 1 1 @ 1 0 06359467 -chattahoochee n 1 2 @ #p 1 0 09242514 -chattahoochee_river n 1 2 @ #p 1 0 09242514 -chattanooga n 2 3 @ #p ; 2 0 09140569 01275389 -chattel n 1 2 @ ; 1 0 13245846 -chattel_mortgage n 1 1 @ 1 0 13352722 -chatter n 3 3 @ ~ + 3 1 07136940 07378952 07378781 -chatter_mark n 2 1 @ 2 0 11436163 04692787 -chatterbox n 2 2 @ #m 2 0 12062781 09911570 -chatterer n 2 4 @ ~ #m + 2 0 09911570 01550761 -chattering n 2 2 @ + 2 1 07378952 07378781 -chaucer n 1 1 @ 1 0 10894065 -chauffeur n 1 3 @ ~ + 1 0 09908853 -chauffeuse n 1 1 @ 1 0 09908986 -chaulmoogra n 1 2 @ #m 1 0 12379531 -chaulmoogra_oil n 1 1 @ 1 1 15086672 -chaulmoogra_tree n 1 2 @ #m 1 0 12379531 -chaulmugra n 1 2 @ #m 1 0 12379531 -chauna n 1 3 @ #m %m 1 0 01861025 -chauna_torquata n 1 1 @ 1 0 01861330 -chauvinism n 2 2 @ + 2 0 04878646 01156070 -chauvinist n 2 2 @ + 2 0 09912075 09911849 -chavez n 2 1 @ 2 0 10894365 10894208 -chaw n 1 2 @ + 1 0 07579399 -chawbacon n 1 1 @ 1 0 10804102 -che_guevara n 1 1 @ 1 0 11018153 -cheap-jack n 1 1 @ 1 0 10190516 -cheap_money n 1 1 @ 1 1 13378717 -cheap_shot n 2 1 @ 2 0 06768259 01175831 -cheapjack n 1 1 @ 1 0 09912598 -cheapness n 2 2 @ + 2 0 05147237 04818460 -cheapskate n 1 1 @ 1 0 09912681 -cheat n 5 3 @ ~ + 5 0 12125183 12111238 09998101 00780148 00754424 -cheater n 1 3 @ ~ + 1 0 09998101 -cheatgrass n 1 1 @ 1 0 12111399 -cheating n 1 3 @ ~ + 1 0 00754424 -chebab n 1 2 @ ; 1 0 09912765 -chechen n 2 1 @ 2 0 09912907 06978422 -chechen_republic n 1 2 @ #p 1 0 09004625 -chechenia n 1 2 @ #p 1 0 09004625 -chechnya n 1 2 @ #p 1 0 09004625 -check n 13 5 @ ~ #p + ; 13 6 13381734 05738625 06517942 14010927 05825245 00141806 06818747 05689249 04692908 03011162 01146039 00562935 00167446 -check-in n 1 2 @ + 1 0 00141669 -check-out_procedure n 1 2 @ ~ 1 0 00141806 -check_bit n 1 2 @ ; 1 0 13625482 -check_character n 1 2 @ ; 1 0 06819824 -check_girl n 1 1 @ 1 0 09913240 -check_mark n 1 1 @ 1 1 06818747 -check_overdraft_credit n 1 1 @ 1 0 13380996 -check_register n 1 1 @ 1 0 06506926 -check_stub n 1 1 @ 1 0 06507815 -checkbook n 1 2 @ %m 1 1 13414310 -checker n 3 4 @ ~ + ; 3 0 09913110 09912995 03011355 -checker_board n 1 4 @ ~ #p %p 1 0 03011521 -checkerberry n 2 5 @ #m #p %s %p 2 0 12235765 07743723 -checkerbloom n 1 2 @ #m 1 0 12187247 -checkerboard n 1 4 @ ~ #p %p 1 0 03011521 -checkered_adder n 1 1 @ 1 0 01734808 -checkered_daffodil n 1 1 @ 1 0 12453186 -checkered_lily n 1 3 @ ~ #m 1 0 12451915 -checkered_whiptail n 1 1 @ 1 0 01686808 -checkers n 1 3 @ %p - 1 0 00502952 -checking_account n 1 2 @ ; 1 0 13363970 -checking_program n 1 1 @ 1 0 06573472 -checklist n 1 1 @ 1 1 06489070 -checkmate n 2 2 @ + 2 0 07475035 00167764 -checkout n 3 3 @ ~ + 3 1 00141806 15181282 03011741 -checkout_counter n 1 1 @ 1 0 03011741 -checkout_line n 1 1 @ 1 0 08432714 -checkout_time n 1 1 @ 1 0 15181282 -checkpoint n 1 1 @ 1 0 08517825 -checkrein n 1 1 @ 1 0 02817251 -checkroom n 1 1 @ 1 0 03011892 -checksum n 1 1 @ 1 0 05826092 -checkup n 1 2 @ %p 1 1 00142361 -cheddar n 2 3 @ ~ #p 2 0 08878885 07852919 -cheddar_cheese n 1 2 @ ~ 1 0 07852919 -cheddar_pink n 1 1 @ 1 0 11809271 -cheek n 4 5 @ ~ #p %p + 4 1 05602835 06721813 05559727 04838210 -cheek_muscle n 1 2 @ #p 1 0 05294068 -cheek_pouch n 1 1 @ 1 0 05517145 -cheekbone n 1 3 @ #p %p 1 1 05273822 -cheekiness n 1 3 @ ~ + 1 0 04915866 -cheekpiece n 1 2 @ #p 1 0 03012013 -cheep n 1 2 @ + 1 0 07379094 -cheer n 2 5 @ ~ #p = + 2 1 06692572 04630689 -cheerer n 1 2 @ + 1 0 09913329 -cheerfulness n 2 6 ! @ ~ #p = + 2 1 04630689 07530478 -cheering n 1 2 @ + 1 1 07251779 -cheerio n 1 1 @ 1 0 06629610 -cheerleader n 2 2 @ + 2 0 09913593 09913455 -cheerlessness n 1 4 ! @ ~ + 1 0 07537068 -cheese n 2 5 @ ~ #m %s %p 2 1 07850329 12171503 -cheese_cutter n 1 2 @ %p 1 0 03012499 -cheese_dip n 1 1 @ 1 0 07582892 -cheese_fondue n 1 1 @ 1 0 07867616 -cheese_pizza n 1 1 @ 1 0 07874259 -cheese_press n 1 1 @ 1 0 03012644 -cheese_rind n 1 2 @ #p 1 0 07850957 -cheese_sauce n 1 2 @ ~ 1 0 07836731 -cheese_souffle n 1 1 @ 1 0 07863802 -cheese_spread n 1 1 @ 1 0 07856756 -cheese_tray n 1 1 @ 1 0 03012159 -cheeseboard n 1 1 @ 1 0 03012159 -cheeseburger n 1 1 @ 1 0 07697313 -cheesecake n 2 1 @ 2 0 07630089 03012263 -cheesecloth n 1 1 @ 1 1 03012373 -cheeseflower n 1 2 @ #m 1 0 12171503 -cheesemonger n 1 1 @ 1 0 09913741 -cheetah n 1 2 @ #m 1 0 02130308 -cheever n 1 1 @ 1 0 10894522 -cheewink n 1 2 @ #m 1 0 01542168 -chef n 1 2 @ ~ 1 0 09963574 -chef's_salad n 1 1 @ 1 0 07807472 -chef-d'oeuvre n 1 1 @ 1 0 03727605 -cheilanthes n 1 3 @ #m %m 1 0 13208468 -cheilanthes_alabamensis n 1 1 @ 1 0 13208965 -cheilanthes_eatonii n 1 1 @ 1 0 13209460 -cheilanthes_gracillima n 1 2 @ #m 1 0 13209129 -cheilanthes_lanosa n 1 1 @ 1 0 13209270 -cheilitis n 1 1 @ 1 0 14340182 -cheiloschisis n 1 1 @ 1 0 14214355 -cheilosis n 1 1 @ 1 0 14058066 -cheiranthus n 1 3 @ #m %m 1 0 11883137 -cheiranthus_allionii n 1 2 @ #m 1 0 11887476 -cheiranthus_asperus n 1 2 @ #m 1 0 11887750 -cheiranthus_cheiri n 1 2 @ #m 1 0 11883328 -chekhov n 1 1 @ 1 0 10894652 -chekov n 1 1 @ 1 0 10894652 -chela n 2 2 @ #p 2 1 09685006 02156532 -chelate n 1 2 @ + 1 0 14619033 -chelate_compound n 1 1 @ 1 0 14619033 -chelation n 2 3 @ + ; 2 0 13445972 13445831 -chelicera n 1 2 @ + 1 0 01768596 -chelicerata n 1 3 @ #m %m 1 0 01768402 -chelidonium n 1 3 @ #m %m 1 0 11903525 -chelidonium_majus n 1 2 @ #m 1 0 11903671 -chelifer n 1 3 @ #m %m 1 0 01770967 -chelifer_cancroides n 1 2 @ #m 1 0 01771100 -cheloid n 1 1 @ 1 0 14363913 -chelone n 1 3 @ #m %m 1 0 12880963 -chelone_glabra n 1 2 @ #m 1 0 12881105 -chelonethida n 1 3 @ #m %m 1 0 01770553 -chelonia n 2 4 @ #m %m + 2 0 01663659 01662274 -chelonia_mydas n 1 2 @ #m 1 0 01663782 -chelonian n 1 4 @ ~ #m + 1 0 01662622 -chelonian_reptile n 1 3 @ ~ #m 1 0 01662622 -chelonidae n 1 3 @ #m %m 1 0 01663169 -cheloniidae n 1 3 @ #m %m 1 0 01663169 -chelyabinsk n 1 2 @ #p 1 0 09010453 -chelydra n 1 3 @ #m %m 1 0 01666102 -chelydra_serpentina n 1 2 @ #m 1 0 01666228 -chelydridae n 1 3 @ #m %m 1 0 01665761 -chem_lab n 1 1 @ 1 0 03013718 -chemakuan n 1 2 @ ~ 1 0 06913948 -chemakum n 1 1 @ 1 0 06914069 -chemical n 1 3 @ ~ + 1 1 14806838 -chemical_action n 1 3 @ ~ ; 1 0 13446390 -chemical_agent n 1 2 @ ~ 1 0 14779550 -chemical_analysis n 1 3 @ ~ - 1 0 00646833 -chemical_attraction n 1 1 @ 1 0 11422822 -chemical_balance n 1 1 @ 1 0 02708555 -chemical_bomb n 1 1 @ 1 0 03012734 -chemical_bond n 1 2 @ ~ 1 0 11436283 -chemical_chain n 1 4 @ ~ #p ; 1 0 09240621 -chemical_change n 1 3 @ ~ ; 1 0 13446390 -chemical_compound n 1 3 @ ~ ; 1 0 14818238 -chemical_decomposition_reaction n 1 3 @ ~ ; 1 0 13458268 -chemical_defence n 1 1 @ 1 0 00961794 -chemical_defense n 1 1 @ 1 0 00961794 -chemical_diabetes n 1 1 @ 1 0 14120096 -chemical_element n 1 3 @ ~ %p 1 0 14622893 -chemical_energy n 1 1 @ 1 0 11438468 -chemical_engineering n 2 1 @ 2 0 06127460 00950217 -chemical_equilibrium n 1 2 @ ~ 1 0 13446197 -chemical_formula n 1 3 @ ~ %p 1 1 06816935 -chemical_group n 1 4 @ ~ #p ; 1 0 14621446 -chemical_industry n 1 1 @ 1 0 08067342 -chemical_irritant n 1 2 @ ~ 1 0 15032661 -chemical_mace n 1 2 @ ; 1 0 14944617 -chemical_mechanism n 1 2 @ ~ 1 0 13512506 -chemical_notation n 1 2 @ #p 1 0 06816785 -chemical_operations n 1 1 @ 1 0 00967622 -chemical_phenomenon n 1 3 @ ~ ; 1 0 11409059 -chemical_plant n 1 1 @ 1 0 03012897 -chemical_process n 1 3 @ ~ ; 1 0 13446390 -chemical_property n 1 2 @ ~ 1 0 05009758 -chemical_reaction n 1 3 @ ~ ; 1 1 13447361 -chemical_reactor n 1 2 @ ~ 1 0 03013006 -chemical_science n 1 3 @ ~ - 1 0 06084469 -chemical_substance n 1 2 @ ~ 1 0 14806838 -chemical_terrorism n 1 2 @ ; 1 0 00763282 -chemical_warfare n 1 1 @ 1 0 00967622 -chemical_weapon n 1 2 @ ~ 1 0 03013162 -chemical_weapons_convention n 1 1 @ 1 0 06774468 -chemiluminescence n 1 2 @ + 1 0 11476767 -chemin_de_fer n 1 1 @ 1 0 00489933 -chemise n 2 2 @ %p 2 0 03013580 03013438 -chemisorption n 1 2 @ + 1 0 13447923 -chemist n 2 4 @ ~ + ; 2 2 09913824 10421470 -chemist's n 1 2 @ %p 1 0 03249342 -chemist's_shop n 1 2 @ %p 1 0 03249342 -chemistry n 3 4 @ ~ + - 3 1 06084469 14580752 13840958 -chemistry_department n 1 1 @ 1 0 08116073 -chemistry_lab n 1 1 @ 1 0 03013718 -chemistry_laboratory n 1 1 @ 1 1 03013718 -chemnitz n 1 2 @ #p 1 0 08770518 -chemoimmunology n 1 1 @ 1 0 06051925 -chemoreceptor n 1 2 @ ~ 1 0 05300231 -chemosis n 1 1 @ 1 0 14316048 -chemosorption n 1 2 @ + 1 0 13447923 -chemosurgery n 1 1 @ 1 0 00668404 -chemosynthesis n 1 1 @ 1 0 13448179 -chemotaxis n 1 2 @ ~ 1 0 00862859 -chemotherapy n 1 3 @ ~ + 1 0 00662340 -chemulpo n 1 2 @ #p 1 0 08956140 -chen n 1 3 @ #m %m 1 0 01856748 -chen_caerulescens n 1 3 @ ~ #m 1 0 01856890 -chen_n._yang n 1 1 @ 1 0 11402120 -chenfish n 1 2 @ #m 1 0 02598573 -chenille n 2 3 @ #s %s 2 0 03013992 03013850 -chenille_cord n 1 2 @ #s 1 0 03013992 -chenin_blanc n 2 3 @ #s %s 2 0 13147532 07899533 -chennai n 1 2 @ #p 1 0 08904392 -chenopodiaceae n 1 4 @ ~ #m %m 1 0 11827775 -chenopodiales n 1 3 @ #m %m 1 0 11804082 -chenopodium n 1 3 @ #m %m 1 0 11828113 -chenopodium_album n 1 2 @ %p 1 0 11828577 -chenopodium_ambrosioides n 1 1 @ 1 0 11828804 -chenopodium_bonus-henricus n 1 2 @ %p 1 0 11828973 -chenopodium_botrys n 1 1 @ 1 0 11829205 -chenopodium_capitatum n 1 1 @ 1 0 11829435 -chenopodium_glaucum n 1 1 @ 1 0 11829672 -chenopodium_hybridum n 1 1 @ 1 0 11829922 -chenopodium_murale n 1 1 @ 1 0 11830045 -chenopodium_rubrum n 1 1 @ 1 0 11830252 -chenopodium_vulvaria n 1 1 @ 1 0 11830400 -cheoplastic_metal n 1 1 @ 1 0 14809521 -cheops n 1 1 @ 1 0 09915434 -cheque n 1 3 @ ~ + 1 0 13381734 -chequebook n 1 2 @ %m 1 0 13414310 -chequer n 1 3 @ ~ ; 1 0 03011355 -chequing_account n 1 2 @ ; 1 0 13363970 -cherbourg n 1 2 @ #p 1 0 08935674 -cheremis n 2 2 @ #m 2 0 09706396 06957287 -cheremiss n 2 2 @ #m 2 0 09706396 06957287 -cherepovets n 1 2 @ #p 1 0 09004495 -cherimolla n 1 2 @ #p 1 0 07761141 -cherimoya n 2 3 @ #p %p 2 0 11694300 07761141 -cherimoya_tree n 1 2 @ %p 1 0 11694300 -chermidae n 1 3 @ #m %m 1 0 02256010 -chernobyl n 1 2 @ #p 1 0 09016365 -chernozemic_soil n 1 1 @ 1 0 14809666 -cherokee n 2 2 @ ~ 2 1 06916117 09651790 -cherokee_rose n 1 1 @ 1 0 12621945 -cheroot n 1 1 @ 1 0 03014119 -cherry n 4 8 @ ~ #m #s #p %s %p + 4 0 12641796 12641413 07757132 04964443 -cherry-tree_gum n 1 1 @ 1 0 14900571 -cherry_apple n 1 2 @ #m 1 0 12634734 -cherry_birch n 1 2 @ #m 1 0 12283147 -cherry_bomb n 1 1 @ 1 1 03014204 -cherry_crab n 1 2 @ #m 1 0 12634734 -cherry_laurel n 2 2 @ #m 2 0 12646950 12643113 -cherry_pepper n 1 2 @ #m 1 0 12901565 -cherry_plum n 1 1 @ 1 0 12643313 -cherry_red n 1 1 @ 1 0 04964443 -cherry_stone n 1 1 @ 1 0 11690169 -cherry_tomato n 2 5 @ ~ #m #p %p 2 0 12906021 07734292 -cherry_tree n 1 5 @ ~ #m %s %p 1 0 12641413 -cherrystone n 2 1 @ 2 0 07787270 01958435 -cherrystone_clam n 2 1 @ 2 0 07787270 01958435 -chert n 1 3 @ ~ + 1 0 14870525 -cherub n 2 1 @ 2 0 09915577 09539730 -cherubini n 1 1 @ 1 0 10894905 -chervil n 2 4 @ #m #p %p 2 0 12932706 07816839 -chesapeake_bay n 1 2 @ #p 1 0 09243405 -chesapeake_bay_retriever n 1 1 @ 1 0 02099849 -cheshire_cat n 1 1 @ 1 0 09591676 -cheshire_cheese n 1 1 @ 1 0 07853232 -chess n 2 4 @ ~ %p - 2 0 12111238 00503237 -chess_board n 1 2 @ #p 1 0 03014317 -chess_club n 1 1 @ 1 0 08229275 -chess_game n 1 4 @ ~ %p - 1 0 00503237 -chess_master n 1 2 @ ~ 1 0 09915651 -chess_match n 1 1 @ 1 0 07466108 -chess_move n 1 3 @ ~ #p 1 0 00166355 -chess_opening n 1 2 @ ; 1 0 00457890 -chess_piece n 1 3 @ ~ #p 1 0 03014440 -chess_player n 1 2 @ ~ 1 0 09915834 -chess_set n 1 2 @ %p 1 1 07997338 -chessboard n 1 2 @ #p 1 0 03014317 -chessman n 1 3 @ ~ #p 1 0 03014440 -chest n 4 5 @ ~ #p %p + 4 2 05552607 03014705 05553288 03015254 -chest_cavity n 1 3 @ #p %p 1 0 05553049 -chest_of_drawers n 1 3 @ ~ %p 1 0 03015254 -chest_pain n 1 1 @ 1 0 14325902 -chest_protector n 1 1 @ 1 0 03015478 -chest_register n 1 1 @ 1 0 05127500 -chest_tone n 1 1 @ 1 0 05127500 -chest_voice n 1 1 @ 1 0 05127500 -chester n 1 3 @ #p %p 1 0 09135993 -chester_a._arthur n 1 1 @ 1 0 10825180 -chester_alan_arthur n 1 1 @ 1 0 10825180 -chester_nimitz n 1 1 @ 1 0 11207929 -chester_william_nimitz n 1 1 @ 1 0 11207929 -chesterfield n 3 1 @ 3 0 10895073 03015149 03015052 -chesterton n 1 1 @ 1 0 10895274 -chestnut n 6 8 @ ~ #m #s #p %s %p + 6 0 12262905 12262553 07772274 04972350 02468504 02388735 -chestnut-bark_disease n 1 1 @ 1 0 14216653 -chestnut_blight n 1 1 @ 1 0 14216653 -chestnut_canker n 1 1 @ 1 0 14216653 -chestnut_oak n 1 2 @ ~ 1 0 12275489 -chestnut_tree n 1 5 @ ~ #m %s %p 1 0 12262553 -chetah n 1 2 @ #m 1 0 02130308 -chetrum n 1 2 @ #p 1 0 13689518 -cheval-de-frise n 1 1 @ 1 0 03015631 -cheval_glass n 1 1 @ 1 0 03015851 -chevalier n 2 1 @ 2 0 10895549 09902256 -chevalier_de_bayard n 1 1 @ 1 0 10838802 -chevalier_de_lamarck n 1 1 @ 1 0 11114791 -chevaux-de-frise n 1 1 @ 1 1 03015631 -cheviot n 1 1 @ 1 0 02413917 -cheviot_hills n 1 2 @ #p 1 0 08796844 -cheviots n 1 2 @ #p 1 0 08796844 -chevre n 1 1 @ 1 0 07853560 -chevron n 2 2 @ ; 2 0 07269552 03015975 -chevrotain n 1 3 @ ~ #m 1 0 02435853 -chew n 2 4 @ ~ #p + 2 0 07579399 00278810 -chewa n 1 2 @ #m 1 0 09697771 -chewer n 1 3 @ ~ + 1 0 09915964 -chewing n 1 4 @ ~ #p + 1 0 00278810 -chewing_gum n 1 3 @ ~ %s 1 0 07599998 -chewing_out n 1 1 @ 1 1 06713187 -chewink n 1 2 @ #m 1 0 01542168 -cheyenne n 3 2 @ #p 3 2 09159675 06908700 09651968 -cheyne-stokes_respiration n 1 1 @ 1 0 00834290 -chi n 2 3 @ #m ; 2 0 14050559 06836381 -chiacoan_peccary n 1 1 @ 1 0 02398141 -chian_turpentine n 1 1 @ 1 0 14897521 -chiang_chung-cheng n 1 1 @ 1 0 10895688 -chiang_kai-shek n 1 1 @ 1 0 10895688 -chianti n 1 1 @ 1 0 07895595 -chiaroscuro n 1 2 @ ~ 1 0 03016056 -chiasm n 1 3 @ ~ + 1 0 05228496 -chiasma n 1 2 @ ~ 1 0 05228496 -chiasma_opticum n 1 1 @ 1 0 05228881 -chiasmus n 1 1 @ 1 0 07102271 -chic n 1 3 @ ~ + 1 0 04813712 -chicago n 2 3 @ #p %p 2 1 09083390 00493308 -chicane n 3 3 @ ~ + 3 0 07957456 03016209 00752954 -chicanery n 1 3 @ ~ + 1 0 00752954 -chicano n 1 1 @ 1 0 09722817 -chicha n 1 1 @ 1 0 03533014 -chichewa n 2 2 @ #m 2 0 09697771 06992600 -chichi n 2 2 @ ~ 2 0 09916109 04813712 -chichipe n 1 2 @ #m 1 0 11848867 -chick n 2 1 @ 2 1 01792042 09989045 -chickadee n 1 3 @ ~ #m 1 0 01592084 -chickamauga n 1 3 @ #p ; 1 0 01275697 -chickasaw n 2 1 @ 2 0 09652149 06912340 -chickasaw_plum n 1 2 @ %p 1 0 12639168 -chicken n 4 5 @ ~ #p %p + 4 2 07644967 01791625 10781817 07457936 -chicken_and_rice n 1 2 @ ~ 1 0 07861813 -chicken_breast n 1 1 @ 1 0 14215199 -chicken_broth n 1 1 @ 1 0 07585107 -chicken_cacciatora n 1 1 @ 1 0 07580592 -chicken_cacciatore n 1 1 @ 1 0 07580592 -chicken_casserole n 1 2 @ ~ 1 0 07580470 -chicken_coop n 1 1 @ 1 0 03016389 -chicken_cordon_bleu n 1 1 @ 1 0 07864065 -chicken_drumstick n 1 1 @ 1 0 07648150 -chicken_farm n 1 1 @ 1 0 03016511 -chicken_feed n 2 1 @ 2 0 07805389 03754295 -chicken_hawk n 1 1 @ 1 0 01606978 -chicken_kiev n 1 1 @ 1 0 07864756 -chicken_leg n 1 1 @ 1 0 07648150 -chicken_little n 1 1 @ 1 0 09591814 -chicken_liver n 1 1 @ 1 0 07652310 -chicken_louse n 1 2 @ #m 1 0 02185814 -chicken_manure n 1 1 @ 1 0 14863788 -chicken_marengo n 1 1 @ 1 0 07863935 -chicken_mousse n 1 1 @ 1 0 07617526 -chicken_paprika n 1 1 @ 1 0 07864317 -chicken_paprikash n 1 1 @ 1 0 07864317 -chicken_provencale n 1 1 @ 1 0 07861681 -chicken_purloo n 1 1 @ 1 0 07590177 -chicken_roundworm n 1 2 @ #m 1 0 01931140 -chicken_run n 1 1 @ 1 0 03016737 -chicken_salad n 1 1 @ 1 0 07808479 -chicken_sandwich n 1 1 @ 1 0 07696728 -chicken_scratch n 1 1 @ 1 0 06404322 -chicken_snake n 1 2 @ #m 1 0 01732989 -chicken_soup n 1 1 @ 1 0 07585557 -chicken_stew n 1 1 @ 1 0 07592317 -chicken_stock n 1 1 @ 1 0 07585107 -chicken_taco n 1 1 @ 1 0 07880880 -chicken_tetrazzini n 1 1 @ 1 0 07864475 -chicken_wing n 1 2 @ #p 1 0 07648814 -chicken_wire n 1 1 @ 1 0 03016609 -chicken_yard n 1 1 @ 1 0 03016737 -chickenfeed n 1 1 @ 1 0 13388000 -chickenpox n 1 1 @ 1 0 14132975 -chickenshit n 1 2 @ ; 1 0 06611856 -chickeree n 1 1 @ 1 0 02357585 -chickpea n 3 3 @ #p %p 3 0 12515925 12515711 07726095 -chickpea_plant n 1 2 @ %p 1 0 12515711 -chickweed n 2 3 @ ~ #m 2 0 11817914 11807108 -chickweed_phlox n 1 2 @ #m 1 0 12810847 -chicle n 1 2 @ #s 1 0 14900695 -chicle_gum n 1 2 @ #s 1 0 14900695 -chicness n 1 3 @ ~ + 1 0 04813712 -chico n 1 2 @ #m 1 0 11160861 -chicory n 4 5 @ ~ #m #p %p 4 0 11953610 11953038 07731284 07730855 -chicory_escarole n 1 3 @ ~ #p 1 0 07731587 -chicory_plant n 1 3 @ #m %p 1 0 11953038 -chicory_root n 2 2 @ #p 2 0 11953610 07731284 -chicot n 1 2 @ #m 1 0 12496427 -chiding n 1 3 @ ~ + 1 0 06712833 -chief n 3 2 @ ~ 3 2 10162991 10104209 10164025 -chief_assistant n 1 1 @ 1 0 10531109 -chief_constable n 1 2 @ ; 1 0 09916209 -chief_executive n 2 3 @ ~ #p 2 0 10467395 00597265 -chief_executive_officer n 1 1 @ 1 0 09916348 -chief_financial_officer n 1 1 @ 1 0 09916601 -chief_joseph n 1 1 @ 1 0 11092126 -chief_justice n 1 3 @ ~ ; 1 1 09916788 -chief_of_staff n 1 2 @ ; 1 0 09917214 -chief_of_state n 1 2 @ ~ 1 0 10164747 -chief_operating_officer n 1 1 @ 1 0 09916348 -chief_petty_officer n 1 2 @ ; 1 0 09917345 -chief_secretary n 1 2 @ #m 1 0 09917481 -chieftain n 2 3 @ ~ + 2 1 09893344 10164025 -chieftaincy n 1 1 @ 1 0 00590383 -chieftainship n 1 2 @ + 1 0 00590383 -chiffon n 1 1 @ 1 0 03016868 -chiffon_cake n 1 1 @ 1 0 07630220 -chiffonier n 1 2 @ %p 1 0 03016953 -chigetai n 1 1 @ 1 0 02390938 -chigger n 2 2 @ #m 2 0 02187554 01781071 -chigger_flower n 1 1 @ 1 0 13235503 -chiggerflower n 1 1 @ 1 0 13235503 -chignon n 1 1 @ 1 1 05259726 -chigoe n 1 2 @ #m 1 0 02187554 -chigoe_flea n 1 2 @ #m 1 0 02187554 -chihuahua n 3 3 @ #p %p 3 0 08742578 08742455 02085620 -chihuahuan_desert n 1 2 @ #p 1 0 09168707 -chihuahuan_spotted_whiptail n 1 1 @ 1 0 01686403 -chilblain n 1 2 @ ~ 1 0 14183522 -chilblains n 1 2 @ ~ 1 0 14183522 -child n 4 6 ! @ ~ #m %p + 4 3 09917593 09918248 09918554 09918762 -child's_body n 1 3 @ #p %p 1 0 05219420 -child's_game n 1 2 @ ~ 1 0 00483935 -child's_play n 2 2 @ ~ 2 0 00575365 00431893 -child's_room n 1 2 @ ~ 1 0 03017070 -child_abuse n 1 1 @ 1 0 00420218 -child_care n 1 2 @ ~ 1 1 01209963 -child_molester n 1 1 @ 1 0 10411867 -child_neglect n 1 1 @ 1 0 00420336 -child_pornography n 1 1 @ 1 0 00747519 -child_prodigy n 1 1 @ 1 0 09918867 -child_psychology n 1 1 @ 1 0 06138941 -child_support n 1 1 @ 1 0 13299071 -child_welfare_agency n 1 1 @ 1 0 08423840 -child_welfare_service n 1 1 @ 1 1 08423840 -childbearing n 1 4 @ ~ %p + 1 0 13448334 -childbed n 1 4 @ ~ #p %p 1 0 14048441 -childbed_fever n 1 1 @ 1 0 14190493 -childbirth n 1 3 @ ~ %p 1 0 13448334 -childbirth-preparation_class n 1 1 @ 1 0 00885574 -childcare n 1 2 @ ~ 1 0 01209963 -childe_hassam n 1 1 @ 1 0 11033992 -childhood n 2 4 @ ~ %p + 2 2 15147097 14427065 -childishness n 1 2 @ + 1 1 04928760 -childlessness n 1 2 @ + 1 0 13933103 -chile n 2 9 @ ~ #m #s #p %m %p + - 2 0 08720481 07721456 -chile_bonito n 1 2 @ #m 1 0 02628259 -chile_hazel n 1 2 @ #m 1 0 12216968 -chile_nut n 1 2 @ #m 1 0 12216968 -chile_pine n 1 1 @ 1 0 11646167 -chile_tarweed n 1 2 @ %s 1 0 11994527 -chilean n 1 3 @ #m + 1 0 09697986 -chilean_bonito n 1 2 @ #m 1 0 02628259 -chilean_cedar n 1 2 @ #m 1 0 11633284 -chilean_firebush n 1 2 @ #m 1 0 12216628 -chilean_flameflower n 1 2 @ #m 1 0 12216628 -chilean_hazelnut n 1 2 @ #m 1 0 12216968 -chilean_jasmine n 1 2 @ #m 1 0 11773628 -chilean_monetary_unit n 1 2 @ ~ 1 0 13691401 -chilean_nut n 1 2 @ #m 1 0 12216968 -chilean_peso n 1 2 @ %p 1 0 13691509 -chilean_rimu n 1 2 @ #m 1 0 11656549 -chilean_strawberry n 1 2 @ #m 1 0 12630763 -chili n 2 5 @ ~ #s #p ; 2 0 07864934 07721456 -chili_con_carne n 1 2 @ ; 1 0 07864934 -chili_dog n 1 1 @ 1 0 07865105 -chili_pepper n 2 7 @ ~ #m #s #p %s %p 2 0 12900987 07721456 -chili_powder n 1 2 @ %s 1 0 07822687 -chili_sauce n 1 1 @ 1 0 07822845 -chili_vinegar n 1 1 @ 1 0 07823004 -chiliad n 1 2 @ ~ 1 0 13750844 -chiliasm n 1 2 @ + 1 0 06189551 -chiliast n 1 1 @ 1 0 10318414 -chill n 4 2 @ + 4 3 05015463 07520112 14340287 07537259 -chiller n 1 1 @ 1 0 01261113 -chilli n 1 4 @ ~ #s #p 1 0 07721456 -chilli_pepper n 1 4 @ #m %s %p 1 0 12900987 -chilliness n 2 3 @ ~ + 2 0 05015678 04629604 -chilling n 1 3 @ ~ + 1 0 13453160 -chills_and_fever n 1 3 @ ~ #p 1 0 14340462 -chilly n 1 4 @ ~ #s #p 1 0 07721456 -chiloe n 1 2 @ #p 1 0 08721286 -chilomastix n 1 2 @ #m 1 0 01420000 -chilomeniscus n 1 3 @ #m %m 1 0 01738470 -chilomeniscus_cinctus n 1 1 @ 1 0 01738731 -chilomycterus n 1 3 @ #m %m 1 0 02656171 -chilopoda n 1 3 @ #m %m 1 0 01784427 -chilopsis n 1 3 @ #m %m 1 0 12815060 -chilopsis_linearis n 1 2 @ #m 1 0 12815198 -chiluba n 1 2 @ #m 1 0 09693244 -chimaera n 3 4 @ ~ #m ; 3 0 09493562 05769314 01481331 -chimaera_monstrosa n 1 1 @ 1 0 01481498 -chimaeridae n 1 3 @ #m %m 1 0 01481063 -chimakum n 1 1 @ 1 0 09652278 -chimaphila n 1 3 @ #m %m 1 0 12257343 -chimaphila_corymbosa n 1 1 @ 1 0 12257725 -chimaphila_umbellata n 1 1 @ 1 0 12257725 -chimariko n 2 1 @ 2 0 09652398 06920994 -chimborazo n 1 2 @ #p 1 0 09243615 -chime n 1 3 @ ~ + 1 0 03017168 -chimera n 2 3 @ + ; 2 0 09493562 05769314 -chimney n 2 4 @ ~ #p %p 2 1 03017428 03636891 -chimney_bellflower n 1 1 @ 1 0 12038760 -chimney_breast n 1 1 @ 1 0 03017698 -chimney_corner n 1 1 @ 1 1 03017835 -chimney_plant n 1 1 @ 1 0 12038760 -chimney_swallow n 2 2 @ #m 2 0 01832813 01594787 -chimney_swift n 1 2 @ #m 1 0 01832813 -chimneypiece n 1 2 @ #p 1 0 03719343 -chimneypot n 1 1 @ 1 0 03017931 -chimneystack n 1 2 @ #p 1 0 03018058 -chimneysweep n 1 1 @ 1 0 09919061 -chimneysweeper n 1 1 @ 1 0 09919061 -chimonanthus n 1 3 @ #m %m 1 0 11701492 -chimonanthus_praecox n 1 2 @ #m 1 0 11701698 -chimp n 1 3 @ ~ #m 1 0 02481823 -chimpanzee n 1 3 @ ~ #m 1 0 02481823 -chimwini n 1 1 @ 1 0 06992709 -chin n 2 4 @ ~ #p %p 2 1 05599617 06933279 -chin-up n 1 2 @ + 1 1 00629597 -chin-wag n 1 1 @ 1 0 07135080 -chin-wagging n 1 1 @ 1 0 07135080 -chin_music n 1 1 @ 1 1 07137129 -chin_rest n 1 2 @ #p 1 0 03019685 -chin_strap n 1 1 @ 1 0 03019806 -chin_wag n 1 1 @ 1 0 07135080 -chin_wagging n 1 1 @ 1 0 07135080 -china n 4 6 @ ~ #p %m %p - 4 2 08723006 03018209 08730550 03018493 -china_aster n 1 2 @ #m 1 0 11943992 -china_cabinet n 1 1 @ 1 0 03018349 -china_clay n 1 3 @ #s - 1 0 14670639 -china_closet n 1 1 @ 1 0 03018349 -china_fleece_vine n 1 2 @ #m 1 0 12601106 -china_grass n 1 2 @ #m 1 0 12393269 -china_jute n 1 2 @ #m 1 0 12173069 -china_pink n 1 2 @ ~ 1 0 11808721 -china_rose n 2 1 @ 2 0 12621260 12179391 -china_stone n 1 3 @ #s - 1 0 14670639 -china_tree n 2 2 @ #m 2 0 12741792 12695975 -chinaberry n 2 2 @ #m 2 0 12741792 12695975 -chinaberry_tree n 1 2 @ #m 1 0 12695975 -chinaman n 2 2 @ ; 2 0 09698337 00476952 -chinaware n 1 2 @ ~ 1 0 03018493 -chincapin n 1 2 @ #p 1 0 07772413 -chinch n 1 2 @ #m 1 0 02240517 -chinch_bug n 1 2 @ #m 1 0 02239192 -chincherinchee n 1 1 @ 1 0 12460308 -chinchilla n 3 2 @ #m 3 0 14764715 03018614 02367492 -chinchilla_laniger n 1 2 @ #m 1 0 02367492 -chinchilla_rat n 1 2 @ #m 1 0 02368399 -chinchillidae n 1 3 @ #m %m 1 0 02367131 -chinchillon n 1 2 @ #m 1 0 02368116 -chinchona n 1 4 @ ~ #m %p 1 0 12663804 -chine n 2 2 @ + 2 0 07654538 01895128 -chinese n 2 4 @ ~ #m ; 2 1 06929742 09698108 -chinese_alligator n 1 1 @ 1 0 01698782 -chinese_angelica n 1 1 @ 1 0 11798688 -chinese_angelica_tree n 1 1 @ 1 0 11798688 -chinese_anise n 2 5 @ #m #s #p %p 2 0 11709205 07826930 -chinese_black_mushroom n 1 2 @ #m 1 0 13001930 -chinese_brown_sauce n 1 2 @ ; 1 0 07836456 -chinese_cabbage n 2 2 @ #m 2 0 11878808 07714287 -chinese_celery n 1 1 @ 1 0 07714287 -chinese_checkers n 1 1 @ 1 0 00503981 -chinese_chequers n 1 1 @ 1 0 00503981 -chinese_chestnut n 1 2 @ #m 1 0 12263410 -chinese_chive n 1 2 @ %p 1 0 12435777 -chinese_cinnamon n 1 2 @ #p 1 0 11705387 -chinese_cork_oak n 1 1 @ 1 0 12279293 -chinese_date n 1 2 @ #p 1 0 07765999 -chinese_deity n 1 3 @ ~ ; 1 0 09533048 -chinese_elm n 2 2 @ #m 2 0 12408077 12407715 -chinese_evergreen n 1 2 @ #m 1 0 11781658 -chinese_forget-me-not n 1 2 @ #m 1 0 12818966 -chinese_fried_rice n 1 1 @ 1 0 07868340 -chinese_goose n 1 2 @ #m 1 0 01856380 -chinese_gooseberry n 2 4 @ #m #p %p 2 0 12371439 07763629 -chinese_hibiscus n 1 1 @ 1 0 12179391 -chinese_holly n 1 2 @ #m 1 0 12757115 -chinese_jujube n 1 2 @ #p 1 0 07765999 -chinese_lacquer_tree n 1 2 @ #m 1 0 12767648 -chinese_lantern n 1 1 @ 1 0 03018712 -chinese_lantern_plant n 1 1 @ 1 0 12910875 -chinese_magnolia n 1 1 @ 1 0 11711289 -chinese_monetary_unit n 1 2 @ ~ 1 0 13709819 -chinese_mushroom n 1 2 @ #m 1 0 13020191 -chinese_mustard n 2 2 @ #m 2 0 11878633 07819682 -chinese_paddlefish n 1 2 @ #m 1 0 02639922 -chinese_parasol n 1 2 @ #m 1 0 12198286 -chinese_parasol_tree n 1 2 @ #m 1 0 12198286 -chinese_parsley n 2 4 @ #m #p %p 2 0 12936469 07817315 -chinese_pea_tree n 1 1 @ 1 0 12512294 -chinese_primrose n 1 1 @ 1 0 12091697 -chinese_privet n 1 1 @ 1 0 12308664 -chinese_puzzle n 1 1 @ 1 0 03018848 -chinese_restaurant_syndrome n 1 1 @ 1 0 14304964 -chinese_revolution n 1 2 @ ; 1 0 01303582 -chinese_rhubarb n 1 1 @ 1 0 12603672 -chinese_scholar_tree n 1 2 @ #m 1 0 12570394 -chinese_scholartree n 1 2 @ #m 1 0 12570394 -chinese_shan n 1 1 @ 1 0 06935111 -chinese_silk_plant n 1 2 @ #m 1 0 12393269 -chinese_wall n 1 2 @ #p 1 0 03018971 -chinese_water_chestnut n 1 2 @ %p 1 0 12153741 -chinese_white n 1 2 @ %s 1 0 15108745 -chinese_white_cabbage n 1 2 @ #m 1 0 11879054 -chinese_wistaria n 1 1 @ 1 0 12580786 -chinese_wood_oil n 1 1 @ 1 0 15086545 -chinese_yam n 1 1 @ 1 0 12088495 -chingpo n 1 1 @ 1 0 06933185 -chink n 3 3 @ + ; 3 0 09698337 09243769 07379223 -chinkapin n 1 2 @ #p 1 0 07772413 -chinkapin_oak n 1 1 @ 1 0 12275675 -chinning_bar n 1 1 @ 1 1 03019198 -chino n 2 3 @ #s %s 2 0 03019434 03019304 -chino-japanese_war n 1 2 @ ; 1 0 01275934 -chinoiserie n 1 1 @ 1 0 03019535 -chinook n 5 4 @ #m #p %p 5 0 11438612 09652535 07796321 06924996 02536456 -chinook_jargon n 1 1 @ 1 0 06905828 -chinook_salmon n 2 4 @ #m #p %p 2 0 07796321 02536456 -chinook_wind n 1 1 @ 1 0 11438612 -chinookan n 1 1 @ 1 0 06924996 -chinquapin n 3 4 @ #m #p %p 3 0 12263987 12263738 07772413 -chinquapin_oak n 1 1 @ 1 0 12275675 -chintz n 1 1 @ 1 0 03019938 -chiococca n 1 3 @ #m %m 1 0 12662223 -chiococca_alba n 1 2 @ #m 1 0 12662379 -chionanthus n 1 3 @ #m %m 1 0 12301917 -chionanthus_virginicus n 1 1 @ 1 0 12302248 -chionochloa_conspicua n 1 1 @ 1 0 12109365 -chios n 1 3 @ #p + 1 0 08782976 -chip n 9 6 @ ~ #p %p + ; 9 2 09222051 03020563 09243906 07712559 04692908 03020416 03020034 00573530 00377169 -chip_shot n 1 2 @ ; 1 0 00573530 -chipboard n 1 1 @ 1 0 15102455 -chipewyan n 2 1 @ 2 0 09652746 06920010 -chipmunk n 1 2 @ #m 1 0 02360282 -chipolata n 1 2 @ ; 1 0 07676425 -chipotle n 1 1 @ 1 0 07721833 -chippendale n 1 1 @ 1 0 10896046 -chippewa n 2 1 @ 2 0 09663472 06911366 -chippewaian n 1 1 @ 1 0 06920010 -chippewyan n 1 1 @ 1 0 06920010 -chipping n 1 2 @ + 1 0 00377169 -chipping_sparrow n 1 2 @ #m 1 0 01536035 -chips n 1 2 @ ; 1 0 07711080 -chiralgia n 1 1 @ 1 0 14325976 -chiricahua_apache n 1 1 @ 1 0 06919548 -chirico n 1 1 @ 1 0 10896255 -chirocephalus n 1 3 @ #m %m 1 0 01995323 -chirography n 1 1 @ 1 0 06403969 -chirology n 1 1 @ 1 0 05777830 -chiromancer n 1 2 @ + 1 0 10395209 -chiromancy n 1 2 @ + 1 0 05777830 -chiron n 2 2 @ ; 2 0 09493807 09244022 -chironomidae n 1 3 @ #m %m 1 0 02203008 -chironomus n 1 2 @ #m 1 0 02203332 -chiropodist n 1 2 @ + 1 0 09919297 -chiropody n 1 2 @ + 1 0 06062076 -chiropractic n 1 1 @ 1 0 00707967 -chiropractor n 1 1 @ 1 1 09919200 -chiroptera n 1 3 @ #m %m 1 0 02138921 -chiropteran n 1 4 @ ~ #m %p 1 0 02139199 -chirp n 1 3 @ ~ + 1 0 07379409 -chirpiness n 1 2 @ + 1 0 04632063 -chirrup n 1 2 @ + 1 0 07379577 -chisel n 1 3 @ ~ + 1 1 03020692 -chisel_steel n 1 1 @ 1 0 14809756 -chiseler n 1 3 @ ~ + 1 0 09955015 -chiseller n 1 3 @ ~ + 1 0 09955015 -chisholm_trail n 1 2 @ #p 1 0 03020927 -chishona n 1 1 @ 1 0 06992807 -chisinau n 1 2 @ #p 1 0 09014850 -chislev n 1 3 @ #p %p 1 0 15214840 -chit n 2 1 @ 2 0 09919451 06517942 -chit-chat n 1 2 @ + 1 0 07135080 -chit_chat n 1 2 @ + 1 0 07135080 -chitchat n 1 2 @ + 1 0 07135080 -chitin n 1 3 @ %s + 1 0 14732722 -chitlings n 1 1 @ 1 0 07671722 -chitlins n 1 1 @ 1 0 07671722 -chiton n 2 2 @ #m 2 0 03021121 01955084 -chittagong n 1 2 @ #p 1 0 08849372 -chittam_bark n 1 2 @ #p 1 0 13141797 -chittamwood n 3 2 @ %p 3 0 13141564 12773142 12760316 -chittem_bark n 1 2 @ #p 1 0 13141797 -chitterlings n 1 1 @ 1 0 07671722 -chittimwood n 2 2 @ %p 2 0 13141564 12773142 -chivalry n 2 2 @ + 2 1 04913738 05955848 -chivaree n 1 1 @ 1 0 07054122 -chive n 1 2 @ %p 1 0 12435152 -chives n 2 3 @ #p %p 2 0 12435152 07817024 -chiwere n 1 2 @ ~ 1 0 06908801 -chlamydera n 1 3 @ #m %m 1 0 01601268 -chlamydera_nuchalis n 1 2 @ #m 1 0 01601410 -chlamydia n 2 4 @ ~ #m + 2 0 14175579 01372709 -chlamydia_psittaci n 1 1 @ 1 0 01372944 -chlamydia_trachomatis n 1 1 @ 1 0 01373090 -chlamydiaceae n 1 3 @ #m %m 1 0 01372372 -chlamydomonadaceae n 1 3 @ #m %m 1 0 01409477 -chlamydomonas n 1 2 @ #m 1 0 01409665 -chlamydosaurus n 1 3 @ #m %m 1 0 01688106 -chlamydosaurus_kingi n 1 2 @ #m 1 0 01688243 -chlamydospore n 1 2 @ ~ 1 0 11548870 -chlamyphore n 1 2 @ #m 1 0 02456275 -chlamyphorus n 1 3 @ #m %m 1 0 02456147 -chlamyphorus_truncatus n 1 2 @ #m 1 0 02456275 -chlamys n 2 5 @ ~ #p %p + 2 0 11692265 03021228 -chloasma n 1 1 @ 1 0 14302652 -chloe_anthony_wofford n 1 1 @ 1 0 11192349 -chlor-trimeton n 1 2 @ ; 1 0 03022978 -chloral_hydrate n 1 2 @ ~ 1 0 03021360 -chlorambucil n 1 1 @ 1 0 03021531 -chloramine n 1 1 @ 1 0 03021696 -chloramine-t n 1 1 @ 1 0 03021696 -chloramphenicol n 1 1 @ 1 0 03021858 -chloranthaceae n 1 3 @ #m %m 1 0 13151265 -chloranthus n 1 2 @ #m 1 0 13151439 -chlorate n 1 1 @ 1 0 14610703 -chlordiazepoxide n 1 1 @ 1 0 03022041 -chlorella n 1 2 @ #m 1 0 01411450 -chlorenchyma n 1 1 @ 1 0 13096677 -chlorhexidine n 1 1 @ 1 0 03022250 -chloric_acid n 1 1 @ 1 0 14610782 -chloride n 2 2 @ ~ 2 1 15017604 15016852 -chloride_of_lime n 1 1 @ 1 0 14780850 -chlorinated_lime n 1 1 @ 1 0 14780850 -chlorination n 2 3 @ ~ + 2 0 13448622 00709659 -chlorine n 1 4 @ ~ #s + 1 1 14634591 -chlorine_dioxide n 1 1 @ 1 0 14809843 -chlorine_water n 1 1 @ 1 0 14810032 -chlorinity n 1 1 @ 1 0 13581871 -chloris n 1 2 @ #m 1 0 12114226 -chloris_gayana n 1 1 @ 1 0 12114590 -chloris_truncata n 1 1 @ 1 0 12114770 -chlorite n 1 1 @ 1 0 14670954 -chloroacetophenone n 1 2 @ ~ 1 0 14604038 -chlorobenzene n 1 1 @ 1 0 14603236 -chlorobenzylidenemalononitrile n 1 1 @ 1 0 14603798 -chlorococcales n 1 3 @ #m %m 1 0 01410847 -chlorococcum n 1 2 @ #m 1 0 01411036 -chlorofluorocarbon n 1 2 @ ~ 1 0 14603497 -chloroform n 1 2 @ + 1 0 03022406 -chlorofucin n 1 1 @ 1 0 01398803 -chlorohydric_acid n 1 2 @ ~ 1 0 14912387 -chloromycetin n 1 1 @ 1 0 03021858 -chlorophis n 1 3 @ #m %m 1 0 01730429 -chlorophoneus n 1 3 @ #m %m 1 0 01600197 -chlorophoneus_nigrifrons n 1 2 @ #m 1 0 01600341 -chlorophthalmidae n 1 3 @ #m %m 1 0 02543737 -chlorophyceae n 1 3 @ #m %m 1 0 01407465 -chlorophyl n 1 2 @ ~ 1 0 01398212 -chlorophyll n 1 3 @ ~ + 1 0 01398212 -chlorophyll_a n 1 1 @ 1 0 01398481 -chlorophyll_b n 1 1 @ 1 0 01398632 -chlorophyll_c n 1 1 @ 1 0 01398803 -chlorophyll_d n 1 1 @ 1 0 01398941 -chlorophyllum_molybdites n 1 1 @ 1 0 13012973 -chlorophyta n 1 3 @ #m %m 1 0 01407065 -chlorophyte n 1 3 @ ~ #m 1 0 01407798 -chloropicrin n 1 1 @ 1 0 14810168 -chloroplast n 1 1 @ 1 0 12962992 -chloroprene n 1 2 @ #s 1 0 14912245 -chloroquine n 1 1 @ 1 0 03022634 -chlorosis n 1 1 @ 1 0 14166775 -chlorothiazide n 1 1 @ 1 1 03022788 -chlorous_acid n 1 1 @ 1 0 14610914 -chloroxylon n 1 3 @ #m %m 1 0 12697360 -chloroxylon_swietenia n 1 3 @ #m %s 1 0 12697514 -chlorpheniramine_maleate n 1 1 @ 1 0 03022978 -chlorpromazine n 1 1 @ 1 1 03023175 -chlorpyrifos n 1 1 @ 1 0 14810466 -chlortetracycline n 1 1 @ 1 0 03023415 -chlorthalidone n 1 1 @ 1 0 03023623 -chlorura n 1 3 @ #m %m 1 0 01542316 -chlorura_chlorura n 1 2 @ #m 1 0 01542433 -choanocyte n 1 1 @ 1 0 01907287 -choc n 1 1 @ 1 0 07603411 -choc-ice n 1 1 @ 1 0 07614942 -chock n 1 3 @ ~ + 1 1 03023878 -chocolate n 3 3 @ ~ %s 3 1 07922764 07601999 04972451 -chocolate_bar n 1 2 @ ~ 1 0 07603511 -chocolate_cake n 1 2 @ ~ 1 0 07630294 -chocolate_candy n 1 3 @ ~ %s 1 0 07602454 -chocolate_chip_cookie n 1 1 @ 1 0 07638317 -chocolate_eclair n 1 1 @ 1 0 07628779 -chocolate_egg n 1 1 @ 1 0 07842044 -chocolate_fondue n 1 1 @ 1 0 07867751 -chocolate_fudge n 1 1 @ 1 0 07605597 -chocolate_ice_cream n 1 2 @ ~ 1 0 07614825 -chocolate_kiss n 1 1 @ 1 0 07607138 -chocolate_liquor n 1 1 @ 1 0 07602829 -chocolate_milk n 1 1 @ 1 0 07921360 -chocolate_mousse n 1 1 @ 1 0 07617611 -chocolate_pudding n 1 1 @ 1 0 07618432 -chocolate_root n 1 1 @ 1 0 12632072 -chocolate_sauce n 1 2 @ ~ 1 0 07836838 -chocolate_syrup n 1 2 @ ~ 1 0 07836838 -chocolate_tree n 1 3 @ ~ #m 1 0 12201580 -chocolate_truffle n 1 1 @ 1 0 07609632 -choctaw n 2 1 @ 2 0 09652900 06912436 -choeronycteris n 1 3 @ #m %m 1 0 02142993 -choeronycteris_mexicana n 1 2 @ #m 1 0 02143142 -choice n 3 2 @ ~ 3 3 05790242 00161243 05790944 -choice_morsel n 1 1 @ 1 0 07594737 -choice_of_words n 1 2 @ ~ 1 0 07081739 -choiceness n 1 2 @ + 1 0 04728604 -choir n 3 4 @ #p %m + 3 1 08188638 08188814 03024064 -choir_loft n 1 1 @ 1 0 03024233 -choir_school n 1 1 @ 1 0 08410092 -choirboy n 1 1 @ 1 1 09919690 -choirmaster n 1 1 @ 1 0 09919771 -choke n 2 4 @ ~ #p + 2 0 03024518 03024333 -choke_coil n 1 2 @ #p 1 0 03024518 -choke_hold n 1 1 @ 1 0 00417131 -chokecherry n 2 5 @ ~ #m #p %p 2 0 12650805 12650556 -chokecherry_tree n 1 4 @ ~ #m %p 1 0 12650556 -chokedamp n 1 1 @ 1 0 14797264 -chokehold n 2 1 @ 2 0 05193781 00417131 -chokepoint n 2 1 @ 2 0 13912992 08543776 -choker n 4 3 @ ~ + 4 0 10121246 09919899 03024882 03024746 -chokey n 1 1 @ 1 0 03025070 -choking n 2 2 @ + 2 0 14058252 00225786 -choking_coil n 1 2 @ #p 1 0 03024518 -choky n 1 1 @ 1 0 03025070 -cholangiography n 1 1 @ 1 0 00906140 -cholangitis n 1 1 @ 1 0 14340734 -cholecalciferol n 1 2 @ %s 1 0 15092227 -cholecystectomy n 1 2 @ ~ 1 0 00669000 -cholecystitis n 1 1 @ 1 0 14340822 -cholecystokinin n 1 1 @ 1 0 05409136 -cholelithiasis n 1 1 @ 1 1 14115245 -cholelithotomy n 1 1 @ 1 0 00683470 -choler n 3 3 @ ~ + 3 0 07552729 07516354 05406958 -cholera n 1 2 @ + 1 0 14129579 -cholera_infantum n 1 1 @ 1 0 14172217 -cholera_morbus n 1 1 @ 1 0 14172383 -cholestasis n 1 1 @ 1 0 14054465 -cholesterin n 1 2 @ ~ 1 0 15058544 -cholesterol n 1 2 @ ~ 1 1 15058544 -cholesterosis_cutis n 1 1 @ 1 0 14233717 -cholic_acid n 1 1 @ 1 0 15059694 -choline n 1 1 @ 1 0 14810561 -cholinesterase n 1 1 @ 1 0 14735822 -cholla n 1 2 @ #m 1 0 11851839 -choloepus n 1 3 @ #m %m 1 0 02457756 -choloepus_didactylus n 1 2 @ #m 1 0 02457945 -choloepus_hoffmanni n 1 2 @ #m 1 0 02458135 -chomp n 1 3 @ ~ + 1 1 00838816 -chomping n 1 2 @ + 1 0 00279136 -chomsky n 1 1 @ 1 0 10896452 -chon n 2 2 @ #p 2 0 13709486 13709118 -chondrichthian n 1 3 @ ~ #m 1 0 01480516 -chondrichthyes n 1 3 @ #m %m 1 0 01480336 -chondrin n 1 2 @ + 1 0 14730802 -chondriosome n 1 2 @ ~ 1 0 05445389 -chondrite n 1 3 @ %p + 1 0 09244191 -chondrodystrophy n 1 1 @ 1 0 14121804 -chondroma n 1 1 @ 1 0 14236130 -chondrosarcoma n 1 1 @ 1 0 14240487 -chondrule n 1 2 @ #p 1 0 09244331 -chondrus n 1 3 @ #m %m 1 0 01414502 -chondrus_crispus n 1 2 @ #m 1 0 01414633 -chongqing n 1 2 @ #p 1 0 08725161 -choo-choo n 1 1 @ 1 0 03025165 -chooser n 1 1 @ 1 0 10431625 -chop n 5 3 @ ~ + 5 0 11527767 07653982 05546298 00566889 00129317 -chop-suey_greens n 2 4 @ #m #p %p 2 0 11951052 07709701 -chop_shop n 1 1 @ 1 0 03025641 -chop_shot n 1 1 @ 1 0 00566889 -chop_steak n 1 1 @ 1 0 07664121 -chop_suey n 1 1 @ 1 0 07865196 -chophouse n 1 1 @ 1 0 04307878 -chopin n 3 1 @ 3 1 07278256 10896823 10896644 -chopine n 1 1 @ 1 0 03025250 -chopped_steak n 1 1 @ 1 0 07664121 -chopper n 4 4 @ ~ %p + 4 1 00129317 05283498 03512147 03041632 -choppiness n 1 2 @ + 1 0 14524029 -chopping_block n 1 2 @ %s 1 1 03025357 -chopping_board n 1 1 @ 1 0 03025513 -chopsteak n 1 1 @ 1 0 07664121 -chopstick n 1 1 @ 1 0 03025755 -choragus n 1 3 @ + ; 1 0 09920106 -choral n 1 1 @ 1 0 07036328 -choral_ode n 1 1 @ 1 0 06384165 -chorale n 1 1 @ 1 0 07036328 -chorale_prelude n 1 1 @ 1 0 07040693 -chord n 2 3 @ ~ + 2 2 13874927 06869951 -chordamesoderm n 1 1 @ 1 0 01464318 -chordata n 1 3 @ #m %m 1 0 01465994 -chordate n 1 4 @ ~ #m + 1 0 01466257 -chordate_family n 1 3 @ ~ #m 1 0 01466828 -chordate_genus n 1 3 @ ~ #m 1 0 01466996 -chordeiles n 1 3 @ #m %m 1 0 01836246 -chorditis n 2 1 @ 2 0 14341001 14340914 -chordomesoderm n 1 1 @ 1 0 01464318 -chordophone n 1 2 @ ~ 1 0 03025886 -chordospartium n 1 3 @ #m %m 1 0 12514802 -chore n 1 2 @ ~ 1 1 00719705 -chorea n 2 2 @ ~ 2 0 14262336 14094881 -choreic_abasia n 1 1 @ 1 0 14549491 -choreographer n 1 3 @ ~ + 1 0 09920283 -choreography n 3 2 @ ~ 3 1 00528397 07020763 06816445 -chorine n 1 2 @ #m 1 1 09920901 -chorioallantoic_membrane n 1 1 @ 1 0 01473620 -chorioallantois n 1 1 @ 1 0 01473620 -choriomeningitis n 1 2 @ ~ 1 0 14095128 -chorion n 1 5 @ #p %p + ; 1 0 01472939 -chorionic_villus n 1 2 @ #p 1 0 01473188 -chorionic_villus_biopsy n 1 1 @ 1 0 05742962 -chorionic_villus_sampling n 1 1 @ 1 0 05742962 -chorioretinitis n 1 1 @ 1 0 14354847 -choriotis n 1 3 @ #m %m 1 0 02019308 -choriotis_australis n 1 2 @ #m 1 0 02019438 -chorister n 1 4 @ ~ #m + 1 0 09920771 -chorizagrotis n 1 3 @ #m %m 1 0 02296756 -chorizagrotis_auxiliaris n 1 2 @ #m 1 0 02296912 -chorizema n 1 3 @ #m %m 1 0 12515219 -chorizo n 1 1 @ 1 0 07676520 -choroid n 1 2 @ #p 1 0 05313115 -choroid_coat n 1 2 @ #p 1 0 05313115 -choroid_plexus n 1 2 @ %p 1 0 05506648 -choroid_vein n 1 1 @ 1 0 05363428 -choroidal_artery n 1 2 @ #p 1 0 05342070 -choropleth_map n 1 1 @ 1 0 03026093 -chortle n 1 2 @ + 1 0 07127563 -chorus n 5 6 @ ~ #p %m + ; 5 3 07379695 08187837 07050177 08188449 08187988 -chorus_frog n 1 2 @ #m 1 0 01652026 -chorus_girl n 1 2 @ #m 1 0 09920901 -chorus_line n 1 3 @ ~ %m 1 0 08188449 -chosen n 3 1 @ 3 1 09921034 08954975 08386853 -chosen_people n 1 2 @ ~ 1 0 08483136 -chou n 3 3 @ ~ #p 3 0 08479407 07713895 07628576 -chou_dynasty n 1 1 @ 1 0 08479407 -chou_en-lai n 1 1 @ 1 0 11406314 -chough n 1 1 @ 1 0 01579729 -chow n 3 1 @ 3 0 08479407 07565161 02112137 -chow_chow n 1 1 @ 1 0 02112137 -chow_dynasty n 1 1 @ 1 0 08479407 -chow_line n 1 2 @ ; 1 0 08432820 -chow_mein n 1 1 @ 1 0 07865484 -chowchow n 2 1 @ 2 0 07825312 07642833 -chowder n 1 2 @ ~ 1 0 07587441 -chrestomathy n 1 1 @ 1 0 06400849 -chris_evert n 1 1 @ 1 0 10963815 -chrism n 1 1 @ 1 0 03026350 -chrisom n 1 1 @ 1 0 03026350 -chrissie_evert n 1 1 @ 1 0 10963815 -christ n 2 3 @ ~ + 2 1 11083656 09537660 -christ's-thorn n 2 3 @ #m %p 2 0 13143758 13143285 -christ's_resurrection n 1 2 @ ; 1 0 07312018 -christ_plant n 1 2 @ #m 1 0 12921868 -christ_thorn n 1 2 @ #m 1 0 12921868 -christ_within n 1 1 @ 1 0 09184668 -christchurch n 1 2 @ #p 1 0 08973064 -christella n 1 2 @ #m 1 0 13228536 -christendom n 1 3 @ %p + 1 1 08082236 -christening n 1 2 @ + 1 1 01038375 -christiaan_eijkman n 1 1 @ 1 0 10954328 -christiaan_huygens n 1 1 @ 1 0 11070218 -christian n 1 4 @ ~ #m + 1 1 09678009 -christian_bible n 1 4 @ ~ %p - 1 0 06431740 -christian_church n 2 4 @ ~ #p %m 2 1 08082602 08087776 -christian_dior n 1 1 @ 1 0 10936716 -christian_era n 1 1 @ 1 0 15249096 -christian_friedrich_hebbel n 1 1 @ 1 0 11037836 -christian_friedrich_schonbein n 1 1 @ 1 0 11285692 -christian_holy_day n 1 2 @ ~ 1 0 15184170 -christian_huygens n 1 1 @ 1 0 11070218 -christian_johann_doppler n 1 1 @ 1 0 10940315 -christian_liturgy n 1 2 @ %p 1 0 01033345 -christian_name n 1 1 @ 1 0 06337458 -christian_religion n 1 3 @ ~ - 1 0 06226057 -christian_schonbein n 1 1 @ 1 0 11285692 -christian_science n 2 2 @ %m 2 0 08090803 06230060 -christian_scientist n 1 2 @ #m 1 0 09678581 -christian_theology n 1 4 @ ~ %p - 1 0 06184270 -christian_year n 1 2 @ %p 1 0 15173064 -christiania n 1 2 @ #p 1 0 08765069 -christianisation n 1 2 @ + 1 0 07355347 -christianity n 2 5 @ ~ %p + - 2 1 06226057 08082236 -christianization n 1 2 @ + 1 0 07355347 -christie n 1 1 @ 1 0 10896987 -christine_marie_evert n 1 1 @ 1 0 10963815 -christmas n 2 3 @ #p %p 2 2 15196537 15196186 -christmas_begonia n 1 1 @ 1 0 12360958 -christmas_bells n 1 2 @ #m 1 0 12444095 -christmas_berry n 2 2 @ #m 2 0 12905412 12633061 -christmas_box n 1 2 @ ; 1 0 13298935 -christmas_bush n 1 2 @ #m 1 0 12787364 -christmas_cactus n 1 2 @ #m 1 0 11853356 -christmas_cake n 1 2 @ ; 1 0 07631511 -christmas_card n 1 1 @ 1 1 06627623 -christmas_carol n 1 1 @ 1 0 07035747 -christmas_day n 1 2 @ #p 1 0 15196186 -christmas_disease n 1 1 @ 1 0 14170987 -christmas_eve n 1 1 @ 1 1 15196444 -christmas_factor n 1 1 @ 1 0 15071960 -christmas_fern n 1 2 @ #m 1 0 13199717 -christmas_flower n 1 2 @ #m 1 0 12920204 -christmas_gift n 1 2 @ ~ 1 0 13269186 -christmas_green n 1 2 @ ~ 1 0 13223265 -christmas_holly n 1 1 @ 1 0 12757816 -christmas_present n 1 2 @ ~ 1 0 13269186 -christmas_pudding n 1 1 @ 1 0 07617708 -christmas_rose n 1 1 @ 1 0 11734300 -christmas_star n 1 2 @ #m 1 0 12920204 -christmas_stocking n 1 1 @ 1 0 03026506 -christmas_tree n 5 2 @ #m 5 0 12787364 12738599 11621547 11621281 03026626 -christmasberry n 2 2 @ #m 2 0 12905412 12633061 -christmastide n 1 3 @ #p %p 1 0 15196537 -christmastime n 1 3 @ #p %p 1 0 15196537 -christology n 2 2 @ + 2 0 06187013 06184574 -christoph_willibald_von_gluck n 1 1 @ 1 0 11002548 -christopher n 1 1 @ 1 0 10897154 -christopher_carson n 1 1 @ 1 0 10884369 -christopher_columbus n 1 1 @ 1 0 10905315 -christopher_fry n 1 1 @ 1 0 10984126 -christopher_isherwood n 1 1 @ 1 0 11074284 -christopher_marlowe n 1 1 @ 1 0 11157719 -christopher_william_bradshaw_isherwood n 1 1 @ 1 0 11074284 -chroma n 1 3 @ #s + 1 0 04975340 -chromaesthesia n 1 2 @ ~ 1 0 05720826 -chromate n 1 2 @ ~ 1 0 14811826 -chromatic_aberration n 1 1 @ 1 0 11438904 -chromatic_color n 1 4 ! @ ~ %s 1 0 04959672 -chromatic_colour n 1 3 @ ~ %s 1 0 04959672 -chromatic_scale n 1 1 @ 1 0 06861196 -chromatic_vision n 1 1 @ 1 0 05656294 -chromaticity n 1 3 @ = + 1 0 04975122 -chromatid n 1 2 @ #p 1 0 05444175 -chromatin n 1 4 @ ~ #p + 1 0 05436080 -chromatin_granule n 1 3 @ ~ #p 1 0 05436080 -chromatism n 2 1 @ 2 0 14377965 04976489 -chromatogram n 1 1 @ 1 1 03026741 -chromatography n 1 3 @ ~ + 1 1 13448778 -chromatography_column n 1 1 @ 1 0 03074574 -chrome n 1 2 @ + 1 1 14810704 -chrome-nickel_steel n 1 1 @ 1 0 14810854 -chrome-tungsten_steel n 1 1 @ 1 0 14811083 -chrome_alum n 1 1 @ 1 0 14955246 -chrome_green n 2 2 @ ~ 2 0 14811196 04967974 -chrome_red n 1 1 @ 1 0 04963201 -chrome_yellow n 1 1 @ 1 0 14811556 -chromesthesia n 1 2 @ ~ 1 0 05720826 -chromic_acid n 1 1 @ 1 1 14811706 -chromite n 1 2 @ %s 1 0 14671125 -chromium n 1 3 @ ~ #s 1 1 14635092 -chromium_steel n 1 1 @ 1 0 14802921 -chromoblastomycosis n 1 1 @ 1 0 14125333 -chromogen n 1 2 @ ~ 1 0 14671253 -chromolithography n 1 1 @ 1 0 06680333 -chromophore n 1 2 @ #p 1 0 14808147 -chromoplast n 1 1 @ 1 0 12962847 -chromosomal_aberration n 1 2 @ ~ 1 0 14504103 -chromosomal_anomaly n 1 2 @ ~ 1 0 14504103 -chromosomal_mutation n 1 4 @ ~ %p ; 1 0 07425011 -chromosome n 1 5 @ ~ #p %p + 1 0 05442131 -chromosome_mapping n 1 2 @ ; 1 0 01024643 -chromosonal_disorder n 1 2 @ ~ 1 0 14504103 -chromosphere n 1 2 @ #p 1 0 09244469 -chronic_bronchitis n 1 2 @ ~ 1 0 14146571 -chronic_eczema n 1 1 @ 1 0 14225877 -chronic_gastritis n 1 1 @ 1 0 14346731 -chronic_glaucoma n 1 1 @ 1 0 14256346 -chronic_glossitis n 1 1 @ 1 0 14347190 -chronic_kidney_failure n 1 1 @ 1 0 14115086 -chronic_leukemia n 1 2 @ ~ 1 0 14243877 -chronic_lymphocytic_leukemia n 1 1 @ 1 0 14244003 -chronic_myelocytic_leukemia n 1 1 @ 1 0 14244160 -chronic_obstructive_pulmonary_disease n 1 1 @ 1 0 14146774 -chronic_pyelonephritis n 1 1 @ 1 0 14566766 -chronic_renal_failure n 1 1 @ 1 0 14115086 -chronic_wasting_disease n 1 1 @ 1 0 14262585 -chronicle n 1 4 @ ~ + ; 1 0 06514093 -chronicler n 1 3 @ ~ + 1 0 09921168 -chronograph n 1 1 @ 1 0 03026907 -chronological_age n 1 1 @ 1 0 04924491 -chronological_record n 1 1 @ 1 0 06515662 -chronological_sequence n 1 2 @ ~ 1 0 05044822 -chronological_succession n 1 2 @ ~ 1 0 05044822 -chronology n 3 3 @ ~ + 3 0 13845114 06503224 06156346 -chronometer n 1 1 @ 1 0 03027001 -chronoperates n 1 3 @ #m %m 1 0 01720117 -chronoperates_paradoxus n 1 2 @ #m 1 0 01720266 -chronoscope n 1 2 @ ~ 1 0 03027108 -chrosomal_abnormality n 1 2 @ ~ 1 0 14504103 -chrysalis n 1 1 @ 1 0 02312640 -chrysanthemum n 2 5 @ ~ #m #p %p 2 1 11951271 11950345 -chrysanthemum_balsamita n 1 3 @ #m %p 1 0 12021499 -chrysanthemum_cinerariifolium n 1 2 @ #m 1 0 12022382 -chrysanthemum_coccineum n 1 2 @ #m 1 0 12022054 -chrysanthemum_coronarium n 1 2 @ #m 1 0 11950877 -chrysanthemum_coronarium_spatiosum n 1 3 @ #m %p 1 0 11951052 -chrysanthemum_dog n 1 1 @ 1 0 02097474 -chrysanthemum_frutescens n 1 2 @ #m 1 0 11925898 -chrysanthemum_lacustre n 1 2 @ #m 1 0 11990627 -chrysanthemum_leucanthemum n 1 2 @ #m 1 0 11989869 -chrysanthemum_maximum n 1 2 @ #m 1 0 11990167 -chrysanthemum_maximum_maximum n 1 2 @ #m 1 0 11990313 -chrysanthemum_morifolium n 1 1 @ 1 0 11961100 -chrysanthemum_parthenium n 1 2 @ #m 1 0 12023108 -chrysanthemum_ptarmiciflorum n 1 2 @ #m 1 0 12023407 -chrysanthemum_segetum n 1 2 @ #m 1 0 11950686 -chrysaora n 1 3 @ #m %m 1 0 01911271 -chrysaora_quinquecirrha n 1 2 @ #m 1 0 01911403 -chrysarobin n 1 1 @ 1 0 02732696 -chrysemys n 1 3 @ #m %m 1 0 01669527 -chrysemys_picta n 1 2 @ #m 1 0 01669654 -chrysobalanus n 1 3 @ #m %m 1 0 12624873 -chrysobalanus_icaco n 1 3 @ #m %p 1 0 12625003 -chrysoberyl n 1 3 @ ~ %s 1 0 14671372 -chrysochloridae n 1 3 @ #m %m 1 0 01890274 -chrysochloris n 1 3 @ #m %m 1 0 01890411 -chrysolepis n 1 3 @ #m %m 1 0 12264621 -chrysolepis_chrysophylla n 1 2 @ #m 1 0 12264786 -chrysolepis_sempervirens n 1 2 @ #m 1 0 12265083 -chrysolite n 1 2 @ ~ 1 0 14812047 -chrysolophus n 1 3 @ #m %m 1 0 01804029 -chrysolophus_pictus n 1 2 @ #m 1 0 01804163 -chrysomelid n 1 3 @ ~ #m 1 0 02169497 -chrysomelidae n 1 3 @ #m %m 1 0 02169345 -chrysophrys n 1 3 @ #m %m 1 0 02592866 -chrysophrys_auratus n 1 3 @ #m %p 1 0 02593019 -chrysophrys_australis n 1 2 @ #m 1 0 02593191 -chrysophyceae n 1 2 @ #m 1 0 01400575 -chrysophyllum n 1 3 @ #m %m 1 0 12773488 -chrysophyllum_cainito n 1 2 @ #m 1 0 12773651 -chrysophyllum_oliviforme n 1 1 @ 1 0 12773917 -chrysophyta n 1 3 @ #m %m 1 0 01399772 -chrysopid n 1 3 @ ~ #m 1 0 02264885 -chrysopidae n 1 3 @ #m %m 1 0 02264734 -chrysoprase n 1 1 @ 1 0 14812233 -chrysopsis n 1 3 @ #m %m 1 0 11951385 -chrysopsis_mariana n 1 1 @ 1 0 11951820 -chrysopsis_villosa n 1 2 @ #m 1 0 11981475 -chrysosplenium n 1 3 @ #m %m 1 0 12796617 -chrysosplenium_americanum n 1 2 @ #m 1 0 12797025 -chrysothamnus n 1 3 @ #m %m 1 0 11952153 -chrysothamnus_nauseosus n 1 2 @ #m 1 0 11952541 -chrysotherapy n 1 1 @ 1 0 00706222 -chrysotile n 1 1 @ 1 0 14725809 -chu_kiang n 1 2 @ #p 1 0 09483340 -chuang-tzu n 1 1 @ 1 0 09534058 -chub n 1 2 @ #m 1 0 01441272 -chub_mackerel n 1 2 @ #m 1 0 02624987 -chubbiness n 1 2 @ + 1 0 05001089 -chuck n 3 4 @ ~ #p %p 3 1 07565161 07656452 03027250 -chuck-will's-widow n 1 2 @ #m 1 0 01835918 -chuck_berry n 1 1 @ 1 0 10849083 -chuck_short_ribs n 1 1 @ 1 0 07656645 -chuck_wagon n 1 1 @ 1 1 03027505 -chucker-out n 1 1 @ 1 0 09869009 -chuckhole n 1 1 @ 1 0 09398076 -chuckle n 1 2 @ + 1 1 07127563 -chuckwalla n 1 1 @ 1 0 01678343 -chuddar n 1 1 @ 1 0 02998841 -chufa n 1 2 @ #m 1 0 12150969 -chug n 1 2 @ + 1 0 07379852 -chukaku-ha n 1 2 @ ; 1 0 08018983 -chukchi n 2 1 @ 2 0 09921291 06928234 -chukchi_language n 1 1 @ 1 0 06928234 -chukchi_peninsula n 1 1 @ 1 0 09244683 -chukchi_sea n 1 2 @ #p 1 0 09244831 -chukka n 2 3 @ #p ; 2 0 15255641 03027625 -chukka_boot n 1 1 @ 1 0 03027625 -chukker n 1 3 @ #p ; 1 0 15255641 -chula_vista n 1 2 @ #p 1 0 09062961 -chum n 3 4 @ ~ #m + 3 0 09877951 03027797 02536685 -chum_salmon n 1 2 @ #m 1 0 02536685 -chumminess n 1 2 @ + 1 0 04653627 -chump n 1 1 @ 1 1 09921409 -chump_change n 1 1 @ 1 0 13388000 -chunga n 1 2 @ #m 1 0 02014524 -chunga_burmeisteri n 1 2 @ #m 1 0 02014524 -chungking n 1 2 @ #p 1 0 08725161 -chunk n 2 3 @ ~ + 2 1 07961016 13758197 -chunking n 1 3 @ + ; 1 0 05731568 -chunnel n 1 1 @ 1 0 03027935 -church n 4 8 @ ~ #p %m %p + ; - 4 3 08082602 03028079 01032368 08082899 -church-state n 1 1 @ 1 1 08177863 -church_bell n 1 2 @ ; 1 1 03028596 -church_bench n 1 1 @ 1 0 03920867 -church_building n 1 4 @ ~ %p ; 1 0 03028079 -church_calendar n 1 2 @ %p 1 0 15181718 -church_doctrine n 1 2 @ ~ 1 0 06789411 -church_father n 1 3 @ ~ ; 1 1 09921792 -church_festival n 1 3 @ ~ %p 1 0 15162210 -church_hat n 1 1 @ 1 0 03028785 -church_key n 1 1 @ 1 0 03029066 -church_member n 1 2 @ ~ 1 1 09922485 -church_mode n 1 1 @ 1 0 06860481 -church_mouse n 1 1 @ 1 0 02451912 -church_music n 1 2 @ ~ 1 0 07033007 -church_of_christ_scientist n 1 2 @ %m 1 0 08090803 -church_of_england n 1 5 @ ~ %m ; - 1 1 08087981 -church_of_ireland n 1 1 @ 1 0 08088675 -church_of_jesus_christ_of_latter-day_saints n 1 2 @ %m 1 0 08089205 -church_of_rome n 1 4 @ %m %p - 1 1 08083599 -church_of_scientology n 1 1 @ 1 0 08100033 -church_of_the_brethren n 1 2 @ %m 1 0 08090547 -church_officer n 1 2 @ ~ 1 0 09922799 -church_property n 1 2 @ ~ 1 0 13247818 -church_roll n 1 1 @ 1 1 06496773 -church_school n 1 2 @ ~ 1 0 08284221 -church_service n 1 2 @ - 1 1 01032368 -church_slavic n 1 1 @ 1 0 06944156 -church_tower n 1 2 @ #p 1 1 03029197 -church_year n 1 2 @ %p 1 0 15173064 -churchgoer n 1 2 @ ~ 1 1 09922485 -churchill n 3 3 @ #p + 3 0 10897594 10897312 08824323 -churchill_downs n 1 2 @ #p 1 0 03028907 -churchman n 1 2 @ ~ 1 1 09928136 -churchwarden n 1 1 @ 1 0 09922659 -churchyard n 1 1 @ 1 1 08647354 -churidars n 1 1 @ 1 0 03029296 -churl n 3 2 @ ~ 3 0 10410815 10357737 10148305 -churn n 1 2 @ + 1 0 03029445 -chute n 2 4 @ ~ %p + 2 2 03888257 03029603 -chute-the-chute n 1 2 @ ~ 1 0 04102406 -chutney n 1 1 @ 1 0 07823105 -chutzpa n 1 2 @ ; 1 0 04916200 -chutzpah n 1 2 @ ; 1 0 04916200 -chutzpanik n 1 2 @ ; 1 0 09921673 -chuvash n 2 1 @ 2 0 09735654 06927952 -chyle n 1 3 @ %s + 1 0 05403849 -chyloderma n 1 1 @ 1 0 14367649 -chylomicron n 1 1 @ 1 0 14812359 -chyme n 1 1 @ 1 0 14583400 -chymosin n 1 2 @ #s 1 0 15004317 -chytridiaceae n 1 2 @ #m 1 0 12978232 -chytridiales n 1 3 @ #m %m 1 0 12977795 -chytridiomycetes n 1 3 @ #m %m 1 0 12977565 -ci n 1 2 @ %p 1 0 13645599 -cia n 1 3 @ #m %p 1 0 08124971 -cialis n 1 2 @ ; 1 0 04383537 -ciao n 1 2 @ ; 1 0 06631921 -ciardi n 1 1 @ 1 0 10897796 -cibotium n 1 3 @ #m %m 1 0 13190917 -cibotium_barometz n 1 2 @ #m 1 0 13191148 -cicada n 1 3 @ ~ #m 1 1 02256656 -cicada_killer n 1 2 @ #m 1 0 02216211 -cicadellidae n 1 3 @ #m %m 1 0 02258780 -cicadidae n 1 3 @ #m %m 1 0 02256365 -cicala n 1 3 @ ~ #m 1 0 02256656 -cicatrice n 1 2 @ ~ 1 0 14363483 -cicatrix n 1 3 @ ~ + 1 0 14363483 -cicer n 1 2 @ #m 1 0 12515597 -cicer_arietinum n 1 2 @ %p 1 0 12515711 -cicero n 2 1 @ 2 0 13712890 10897946 -cicerone n 1 1 @ 1 0 09923003 -cichlid n 1 3 @ ~ #m 1 0 02585872 -cichlid_fish n 1 3 @ ~ #m 1 0 02585872 -cichlidae n 1 3 @ #m %m 1 0 02585732 -cichorium n 1 3 @ #m %m 1 0 11952900 -cichorium_endivia n 1 3 @ #m %p 1 0 11953339 -cichorium_intybus n 1 3 @ #m %p 1 0 11953038 -cicily_isabel_fairfield n 1 1 @ 1 0 11382398 -cicindelidae n 1 3 @ #m %m 1 0 02164973 -ciconia n 1 3 @ #m %m 1 0 02002384 -ciconia_ciconia n 1 2 @ #m 1 0 02002556 -ciconia_nigra n 1 2 @ #m 1 0 02002724 -ciconiidae n 1 3 @ #m %m 1 0 02001821 -ciconiiformes n 1 3 @ #m %m 1 0 02001428 -cicuta n 1 3 @ #m %m 1 0 12934776 -cicuta_verosa n 1 2 @ #m 1 0 12934985 -cid n 1 3 @ #p %p 1 0 08141092 -cidade_de_praia n 1 2 @ #p 1 0 08718094 -cider n 1 2 @ ~ 1 0 07921455 -cider_gum n 1 1 @ 1 0 12337922 -cider_mill n 1 1 @ 1 0 03029812 -cider_vinegar n 1 1 @ 1 0 07829248 -ciderpress n 1 1 @ 1 0 03029925 -cigar n 1 3 @ ~ %p 1 1 03030035 -cigar-box_cedar n 1 2 @ #s 1 0 12700711 -cigar_band n 1 1 @ 1 0 03030262 -cigar_box n 1 1 @ 1 1 03030353 -cigar_butt n 1 2 @ #p 1 1 03030433 -cigar_cutter n 1 1 @ 1 0 03030557 -cigar_lighter n 1 1 @ 1 0 03031422 -cigar_smoker n 1 1 @ 1 0 09923186 -cigaret n 1 3 @ ~ %p 1 0 03030663 -cigarette n 1 3 @ ~ %p 1 1 03030663 -cigarette_burn n 1 1 @ 1 0 04694293 -cigarette_butt n 1 2 @ #p 1 0 03030880 -cigarette_case n 1 1 @ 1 0 03031012 -cigarette_holder n 1 2 @ %p 1 0 03031152 -cigarette_lighter n 1 1 @ 1 0 03031422 -cigarette_paper n 1 1 @ 1 0 14812566 -cigarette_smoker n 1 1 @ 1 0 09923101 -cigarfish n 1 2 @ #m 1 0 02581642 -cigarillo n 1 1 @ 1 0 03031306 -cilantro n 2 4 @ #m #p %p 2 0 12936469 07817315 -ciliary_artery n 1 2 @ #p 1 0 05342214 -ciliary_body n 1 2 @ #p 1 0 05313344 -ciliary_veins n 1 1 @ 1 0 05363559 -ciliata n 1 3 @ #m %m 1 0 01394901 -ciliate n 1 3 @ ~ #m 1 1 01395254 -ciliated_protozoan n 1 3 @ ~ #m 1 1 01395254 -cilioflagellata n 1 3 @ #m %m 1 0 01417041 -ciliophora n 1 3 @ #m %m 1 0 01394901 -ciliophoran n 1 3 @ ~ #m 1 0 01395254 -cilium n 2 3 @ #p + 2 1 01458105 05314919 -cim n 1 2 @ ; 1 0 08342670 -cimabue n 1 1 @ 1 0 10898133 -cimarron n 2 3 @ #m #p 2 0 09244972 02415577 -cimarron_river n 1 2 @ #p 1 0 09244972 -cimetidine n 1 1 @ 1 0 03031553 -cimex n 1 3 @ #m %m 1 0 02240377 -cimex_lectularius n 1 2 @ #m 1 0 02240517 -cimicidae n 1 3 @ #m %m 1 0 02240223 -cimicifuga n 1 3 @ #m %m 1 0 11728350 -cimicifuga_americana n 1 1 @ 1 0 11728769 -cimicifuga_foetida n 1 1 @ 1 0 11729142 -cimicifuga_racemosa n 1 1 @ 1 0 11728945 -cinch n 3 4 @ ~ #p + 3 1 00575365 03031756 00498427 -cinchona n 2 5 @ ~ #m #p %p 2 0 12664710 12663804 -cinchona_bark n 1 2 @ #p 1 0 12664710 -cinchona_calisaya n 1 2 @ #m 1 0 12664187 -cinchona_cordifolia n 1 2 @ #m 1 0 12664005 -cinchona_lancifolia n 1 2 @ #m 1 0 12664005 -cinchona_ledgeriana n 1 2 @ #m 1 0 12664187 -cinchona_officinalis n 1 2 @ #m 1 0 12664187 -cinchona_pubescens n 1 2 @ #m 1 0 12664469 -cinchona_tree n 1 2 @ #m 1 0 12664469 -cinchonine n 1 1 @ 1 0 14713341 -cincinnati n 1 2 @ #p 1 1 09130883 -cincinnatus n 1 1 @ 1 0 10898308 -cinclidae n 1 3 @ #m %m 1 0 01601550 -cinclus n 1 3 @ #m %m 1 0 01601919 -cinclus_aquaticus n 1 2 @ #m 1 0 01602080 -cinclus_mexicanus n 1 2 @ #m 1 0 01602209 -cinco_de_mayo n 1 1 @ 1 0 15158450 -cincture n 1 2 @ ~ 1 0 03438071 -cinder n 1 1 @ 1 0 09245212 -cinder_block n 1 1 @ 1 0 03031957 -cinder_pig n 1 1 @ 1 0 14812763 -cinder_track n 1 1 @ 1 0 03032158 -cinderella n 2 1 @ 2 0 09923263 09591973 -cine-camera n 1 2 @ ~ 1 0 03789171 -cine-film n 1 2 @ ~ 1 0 03789400 -cine_projector n 1 3 @ ~ %p 1 0 03795976 -cinema n 2 5 @ ~ + ; - 2 1 06262567 03032252 -cinema_verite n 1 1 @ 1 0 06617011 -cinematographer n 1 2 @ + 1 0 09889539 -cinematography n 1 3 @ ~ + 1 0 00907919 -cineraria n 1 2 @ #m 1 0 12001707 -cineraria_maritima n 1 2 @ #m 1 0 12011620 -cinerarium n 1 1 @ 1 0 03073694 -cingulate_gyrus n 1 2 @ #p 1 0 05496592 -cingulum n 1 2 @ ; 1 0 05228732 -cinnabar n 2 3 @ #m %s 2 0 14671587 02305929 -cinnabar_chanterelle n 1 2 @ #m 1 0 13004992 -cinnabar_moth n 1 2 @ #m 1 0 02305929 -cinnamene n 1 2 @ ~ 1 0 14595543 -cinnamomum n 1 3 @ #m %m 1 0 11704401 -cinnamomum_camphora n 1 2 @ #m 1 0 11704620 -cinnamomum_cassia n 1 3 @ #m %p 1 0 11705171 -cinnamomum_loureirii n 1 3 @ #m %p 1 0 11705573 -cinnamomum_zeylanicum n 1 3 @ #m %p 1 0 11704791 -cinnamon n 3 5 @ ~ #m #p %p 3 0 11705052 11704791 07814203 -cinnamon_bark n 2 2 @ #p 2 0 11705776 11705052 -cinnamon_bear n 1 1 @ 1 0 02133400 -cinnamon_bread n 1 1 @ 1 0 07681691 -cinnamon_bun n 1 1 @ 1 0 07693048 -cinnamon_fern n 1 1 @ 1 0 12953919 -cinnamon_roll n 1 1 @ 1 0 07693048 -cinnamon_snail n 1 1 @ 1 0 07693048 -cinnamon_stone n 1 1 @ 1 0 14903466 -cinnamon_toast n 1 1 @ 1 0 07689490 -cinnamon_vine n 1 1 @ 1 0 12088495 -cinque n 1 1 @ 1 0 13744521 -cinquefoil n 2 3 @ ~ #m 2 0 12636885 03032453 -cio n 1 1 @ 1 0 08234298 -cipher n 5 3 @ ~ + 5 1 06254239 13742358 13740168 09923418 06355307 -cipro n 1 2 @ ; 1 0 03032576 -ciprofloxacin n 1 1 @ 1 0 03032576 -cira n 1 2 @ ; 1 0 08019281 -circadian_rhythm n 1 1 @ 1 0 15135700 -circaea n 1 3 @ #m %m 1 0 12341412 -circaea_alpina n 1 1 @ 1 0 12341795 -circaea_lutetiana n 1 1 @ 1 0 12341931 -circaetus n 1 3 @ #m %m 1 0 01610426 -circassian n 3 4 @ ~ #m ; 3 0 09639382 08488675 06978527 -circassian_walnut n 1 3 @ #m %m 1 0 12319414 -circe n 1 2 @ ; 1 0 09493983 -circinus n 1 1 @ 1 0 09245370 -circis_siliquastrum n 1 2 @ #m 1 0 12513613 -circle n 8 5 @ ~ #p %p + 8 4 13873502 08240169 13873917 00295172 04465933 04036494 03033019 03032811 -circle_of_curvature n 1 1 @ 1 0 05102889 -circle_of_willis n 1 2 @ #p 1 0 05342374 -circlet n 2 1 @ 2 0 13873849 03033267 -circuit n 7 6 @ ~ #p %p + ; 7 2 03033362 00310666 08616985 08514592 08330514 04038109 00295172 -circuit_board n 1 2 @ ~ 1 0 03033986 -circuit_breaker n 1 1 @ 1 0 03034244 -circuit_card n 1 2 @ ~ 1 0 03033986 -circuit_court_of_appeals n 1 3 @ #m ; 1 0 08330298 -circuitry n 1 1 @ 1 1 03034405 -circular n 1 3 @ ~ + 1 0 07250339 -circular_file n 1 1 @ 1 0 04555700 -circular_function n 1 2 @ ~ 1 0 13786960 -circular_measure n 1 1 @ 1 0 13610987 -circular_plane n 1 1 @ 1 0 03034516 -circular_saw n 1 2 @ ~ 1 0 03034663 -circularisation n 1 2 @ + 1 0 01101753 -circularity n 1 3 @ ~ + 1 0 05073559 -circularization n 1 2 @ + 1 0 01101753 -circulating_decimal n 1 1 @ 1 0 13736376 -circulating_library n 1 1 @ 1 0 03656091 -circulation n 6 5 @ ~ %p + ; 6 2 06253371 11439031 13592598 13592384 07312221 00368302 -circulatory_failure n 1 1 @ 1 0 14112101 -circulatory_system n 1 4 @ ~ #p %p 1 1 05511618 -circumcision n 3 4 @ ~ + ; 3 0 15193271 01031194 00395654 -circumduction n 1 1 @ 1 0 00333733 -circumference n 3 4 @ ~ %p + 3 1 05101261 08514592 05101675 -circumflex n 1 1 @ 1 0 06823102 -circumflex_artery n 1 2 @ ~ 1 0 05342499 -circumflex_artery_of_the_thigh n 1 2 @ #p 1 0 05342673 -circumflex_femoral_vein n 1 1 @ 1 0 05364000 -circumflex_humeral_artery n 1 2 @ #p 1 0 05342854 -circumflex_iliac_artery n 1 1 @ 1 0 05343037 -circumflex_iliac_vein n 1 1 @ 1 0 05363868 -circumflex_scapular_artery n 1 2 @ #p 1 0 05343218 -circumflex_vein n 1 2 @ ~ 1 0 05363676 -circumlocution n 2 2 @ + 2 0 07090379 06761342 -circumnavigation n 1 3 @ + ; 1 0 00296263 -circumscription n 1 2 @ + 1 0 01149480 -circumspection n 2 2 @ ~ 2 0 05615500 04891184 -circumstance n 4 3 @ ~ + 4 3 13942875 14512817 05822746 07451338 -circumstances n 2 2 @ ~ 2 1 14473222 13329489 -circumstantial_evidence n 1 3 ! @ ; 1 0 06735533 -circumvention n 1 2 @ + 1 0 00741685 -circumvolution n 1 2 @ + 1 0 00342424 -circus n 6 6 @ ~ #m %m %p ; 6 3 08189211 00519739 00552679 03035089 03034860 01609549 -circus_acrobat n 1 1 @ 1 0 09923561 -circus_aeruginosus n 1 2 @ #m 1 0 01609956 -circus_cyaneus n 1 2 @ #m 1 0 01610226 -circus_pygargus n 1 2 @ #m 1 0 01610100 -circus_tent n 1 2 @ #p 1 0 03035252 -cirio n 1 2 @ #m 1 0 12382233 -cirque n 1 1 @ 1 0 09245515 -cirrhosis n 1 1 @ 1 0 14116482 -cirrhosis_of_the_liver n 1 1 @ 1 0 14116482 -cirrhus n 1 1 @ 1 0 13102946 -cirriped n 1 3 @ ~ #m 1 0 01998183 -cirripede n 1 3 @ ~ #m 1 0 01998183 -cirripedia n 1 3 @ #m %m 1 0 01998019 -cirrocumulus n 1 1 @ 1 0 09245650 -cirrocumulus_cloud n 1 1 @ 1 0 09245650 -cirrostratus n 1 1 @ 1 0 09245833 -cirrostratus_cloud n 1 1 @ 1 0 09245833 -cirrus n 3 2 @ ~ 3 0 13102946 09245964 01900341 -cirrus_cloud n 1 2 @ ~ 1 0 09245964 -cirsium n 1 3 @ #m %m 1 0 11953762 -cirsium_arvense n 1 1 @ 1 0 11954161 -cirsium_discolor n 1 1 @ 1 0 11954345 -cirsium_eriophorum n 1 1 @ 1 0 11954642 -cirsium_flodmanii n 1 2 @ ~ 1 0 11954484 -cirsium_helenioides n 1 1 @ 1 0 11954798 -cirsium_heterophylum n 1 1 @ 1 0 11954798 -cirsium_lanceolatum n 1 1 @ 1 0 11955153 -cirsium_rivulare n 1 1 @ 1 0 11955040 -cirsium_vulgare n 1 1 @ 1 0 11955153 -cis n 1 2 @ %m 1 0 08295138 -cisc n 2 3 ! @ ; 2 0 08343102 04932561 -cisco n 2 4 @ #m #p %p 2 0 07795459 02539573 -cistaceae n 1 3 @ #m %m 1 0 12374002 -cistercian n 1 1 @ 1 0 10726388 -cistern n 3 2 @ ~ 3 0 05516711 03035715 03035510 -cisterna n 1 1 @ 1 0 05516711 -cistothorus n 1 3 @ #m %m 1 0 01584994 -cistothorus_palustris n 1 1 @ 1 0 01585287 -cistothorus_platensis n 1 1 @ 1 0 01585422 -cistron n 1 4 @ ~ #p ; 1 0 05436752 -cistus n 1 3 @ #m %m 1 0 12374238 -cistus_albidus n 1 1 @ 1 0 12374705 -cistus_ladanifer n 1 2 @ %s 1 0 12374862 -cistus_ladanum n 1 2 @ %s 1 0 12374862 -citadel n 1 2 @ ~ 1 0 02806088 -citation n 6 4 @ ~ + ; 6 1 06706125 07180570 06763681 06613056 06558277 02384326 -citation_form n 1 2 @ #p 1 0 06300632 -cite n 1 2 @ ~ 1 0 06763681 -citellus n 1 3 @ #m %m 1 0 02357741 -citellus_citellus n 1 1 @ 1 0 02358584 -citellus_lateralis n 1 1 @ 1 0 02358390 -citellus_leucurus n 1 1 @ 1 0 02357911 -citellus_parryi n 1 1 @ 1 0 02359047 -citellus_richardsoni n 1 1 @ 1 0 02358712 -citellus_variegatus n 1 1 @ 1 0 02358890 -citharichthys n 1 3 @ #m %m 1 0 02662081 -citharichthys_cornutus n 1 1 @ 1 0 02662397 -cither n 2 2 @ ~ 2 0 04615226 03035832 -cithern n 1 1 @ 1 0 03035832 -citizen n 1 5 ! @ ~ #m + 1 1 09923673 -citizen_genet n 1 1 @ 1 0 10994097 -citizenry n 1 3 @ ~ %m 1 0 08160276 -citizens_committee n 1 2 @ ~ 1 1 08325686 -citizenship n 2 3 @ + ; 2 0 13953467 04898208 -citizenship_day n 1 2 @ #p 1 0 15190652 -citlaltepetl n 1 2 @ #p 1 0 09173777 -citole n 1 1 @ 1 0 03035832 -citrange n 2 4 @ #m #p %p 2 0 12712320 07750299 -citrange_tree n 1 3 @ #m %p 1 0 12712320 -citrate n 1 1 @ 1 0 14604184 -citric_acid n 1 3 @ #s + 1 0 14812872 -citric_acid_cycle n 1 3 @ #p %p 1 0 13505467 -citrin n 1 1 @ 1 0 15093137 -citrine n 1 1 @ 1 0 14813067 -citron n 2 4 @ #p %s %p 2 1 07750449 12709349 -citron_tree n 1 3 @ %s %p 1 0 12709349 -citroncirus n 1 3 @ #m %m 1 0 12712149 -citroncirus_webberi n 1 3 @ #m %p 1 0 12712320 -citronwood n 2 2 @ #s 2 0 12709591 11643506 -citrophilous_mealybug n 1 2 @ #m 1 0 02251067 -citrophilus_mealybug n 1 2 @ #m 1 0 02251067 -citrous_fruit n 1 4 @ ~ #p %p 1 0 07747055 -citrulline n 1 1 @ 1 0 14604286 -citrullus n 1 3 @ #m %m 1 0 12163649 -citrullus_vulgaris n 1 3 @ #m %p 1 0 12164065 -citrus n 2 6 @ ~ #m #p %p + 2 1 07747055 12707781 -citrus_aurantifolia n 1 3 @ #m %p 1 0 12711984 -citrus_aurantium n 1 3 @ #m %p 1 0 12708654 -citrus_bergamia n 1 1 @ 1 0 12708941 -citrus_decumana n 1 3 @ #m %p 1 0 12709103 -citrus_fruit n 1 4 @ ~ #p %p 1 0 07747055 -citrus_grandis n 1 3 @ #m %p 1 0 12709103 -citrus_limetta n 1 1 @ 1 0 12711817 -citrus_limon n 1 4 @ ~ #m %p 1 0 12711596 -citrus_limonia n 1 2 @ #m 1 0 12711398 -citrus_maxima n 1 3 @ #m %p 1 0 12709103 -citrus_mealybug n 1 2 @ #m 1 0 02251593 -citrus_medica n 1 3 @ %s %p 1 0 12709349 -citrus_nobilis n 1 3 @ #m %p 1 0 12710917 -citrus_paradisi n 1 3 @ #m %p 1 0 12709688 -citrus_reticulata n 1 4 @ ~ #m %p 1 0 12709901 -citrus_sinensis n 1 3 @ #m %p 1 0 12710693 -citrus_tangelo n 1 3 @ #m %p 1 0 12711182 -citrus_tree n 1 4 @ ~ #m %p 1 0 12707781 -citrus_whitefly n 1 2 @ #m 1 0 02246941 -citta_del_vaticano n 1 3 @ #p %p 1 0 09161452 -cittern n 1 1 @ 1 0 03035832 -city n 3 4 @ ~ %p + 3 3 08524735 08540903 08226335 -city-state n 1 2 @ ~ 1 0 08177958 -city_block n 1 1 @ 1 0 08642145 -city_boy n 1 1 @ 1 0 09924313 -city_center n 1 2 @ #p 1 0 08524130 -city_centre n 1 2 @ #p 1 0 08524130 -city_council n 1 1 @ 1 1 08311282 -city_desk n 1 1 @ 1 0 08118592 -city_district n 1 3 @ ~ #p 1 0 08537837 -city_editor n 1 1 @ 1 0 09923996 -city_father n 1 1 @ 1 0 09924106 -city_hall n 1 1 @ 1 0 03036022 -city_limit n 1 2 @ #p 1 0 08541130 -city_limits n 1 2 @ #p 1 0 08541130 -city_line n 1 1 @ 1 0 08516002 -city_man n 1 1 @ 1 0 09924195 -city_manager n 1 2 @ ~ 1 0 10303814 -city_of_bridges n 1 3 @ #m #p 1 0 08851034 -city_of_brotherly_love n 1 3 @ #p %p 1 0 09136182 -city_of_god n 1 1 @ 1 0 05628193 -city_of_light n 1 4 @ #p %m %p 1 0 08932568 -city_of_london n 1 2 @ #p 1 0 08874273 -city_of_the_angels n 1 3 @ #p %p 1 0 09063673 -city_of_westminster n 1 3 @ #p %p 1 0 08875547 -city_planning n 1 2 @ %m 1 0 00928542 -city_room n 1 1 @ 1 0 08118592 -city_slicker n 1 1 @ 1 0 09924313 -city_state n 1 2 @ ~ 1 0 08177958 -city_university n 1 1 @ 1 1 03036244 -cityscape n 2 1 @ 2 0 06209770 03036149 -ciudad_bolivar n 1 3 @ #p %p 1 0 09162414 -ciudad_de_mexico n 1 2 @ #p 1 0 08744236 -ciudad_juarez n 1 2 @ #p 1 0 08742743 -ciudad_trujillo n 1 2 @ #p 1 0 08752293 -ciudad_victoria n 1 2 @ #p 1 0 08742892 -cive n 1 2 @ %p 1 0 12435152 -civet n 1 3 @ ~ #m 1 0 02135220 -civet_bean n 1 2 @ #p 1 0 07729225 -civet_cat n 2 3 @ ~ #m 2 0 02508742 02135220 -civic_center n 2 2 @ #p 2 1 03078506 08543496 -civic_duty n 1 2 @ ~ 1 0 01131004 -civic_leader n 1 1 @ 1 0 09924437 -civic_pride n 1 1 @ 1 0 04886790 -civic_responsibility n 1 2 @ ~ 1 0 01131004 -civic_spirit n 1 1 @ 1 0 04886790 -civics n 1 1 @ 1 0 06143454 -civies n 1 2 @ ; 1 0 03036341 -civil_action n 1 1 @ 1 0 01184230 -civil_authority n 1 2 @ ~ 1 1 10541833 -civil_censorship n 1 1 @ 1 0 00821518 -civil_contempt n 1 2 @ ; 1 0 01180718 -civil_day n 1 3 @ ~ #p 1 0 15157041 -civil_death n 2 2 @ ; 2 0 13952792 00232765 -civil_defense n 1 2 @ ~ 1 1 00960688 -civil_disobedience n 1 2 @ ~ 1 0 01179927 -civil_engineer n 1 2 @ ~ 1 0 09924540 -civil_engineering n 1 2 @ ~ 1 0 06127683 -civil_law n 2 5 ! @ ~ ; - 2 1 08453464 06534659 -civil_leader n 1 1 @ 1 0 09924437 -civil_libertarian n 1 1 @ 1 0 09924854 -civil_liberty n 2 3 @ + ; 2 0 13995662 05183242 -civil_list n 1 2 @ ; 1 0 13422061 -civil_marriage n 1 1 @ 1 0 01037577 -civil_officer n 1 2 @ ~ 1 0 10541833 -civil_order n 1 1 @ 1 0 13968859 -civil_right n 1 3 @ ~ ; 1 0 05182563 -civil_rights_activist n 1 2 @ ~ 1 0 09924996 -civil_rights_leader n 1 2 @ ~ 1 0 09924996 -civil_rights_movement n 1 1 @ 1 0 08471369 -civil_rights_worker n 1 2 @ ~ 1 0 09924996 -civil_servant n 1 2 @ #m 1 0 09925459 -civil_service n 1 4 @ ~ #m %m 1 1 08357258 -civil_suit n 1 2 @ ; 1 0 01183031 -civil_time n 1 2 @ ~ 1 0 15116910 -civil_union n 1 2 @ ; 1 0 13964591 -civil_war n 1 2 @ ~ 1 1 00962567 -civil_wrong n 1 4 @ ~ ; - 1 0 00733883 -civil_year n 1 2 @ ~ 1 0 15202634 -civilian n 1 3 ! @ + 1 1 09924742 -civilian_clothing n 1 2 @ ~ 1 0 03036469 -civilian_dress n 1 2 @ ~ 1 0 03036469 -civilian_garb n 1 2 @ ~ 1 0 03036469 -civilisation n 4 5 @ ~ %p + ; 4 0 13448970 08287844 08111783 04811995 -civility n 2 5 ! @ ~ = + 2 0 04914133 01227908 -civilization n 4 5 @ ~ %p + ; 4 1 08111783 13448970 08287844 04811995 -civvies n 1 2 @ ; 1 0 03036341 -cjd n 1 1 @ 1 0 14100494 -cl n 2 5 @ ~ #s #p %p 2 0 14634591 13623856 -clabber n 1 2 @ + 1 0 07850219 -clack n 2 2 @ + 2 0 07379963 03036701 -clack_valve n 1 1 @ 1 0 03036701 -cladding n 1 2 @ ~ 1 0 03315644 -clade n 1 1 @ 1 0 07992308 -cladistic_analysis n 1 1 @ 1 0 06153402 -cladistics n 1 1 @ 1 0 06153402 -cladode n 1 1 @ 1 0 13130014 -cladogram n 1 1 @ 1 0 13912424 -cladonia n 1 3 @ #m %m 1 0 12990938 -cladonia_rangiferina n 1 2 @ #m 1 0 12991184 -cladoniaceae n 1 3 @ #m %m 1 0 12990800 -cladophyll n 1 1 @ 1 0 13130014 -cladorhyncus n 1 3 @ #m %m 1 0 02035845 -cladorhyncus_leucocephalum n 1 2 @ #m 1 0 02036228 -cladrastis n 1 3 @ #m %m 1 0 12516040 -cladrastis_kentukea n 1 2 @ #m 1 0 12516165 -cladrastis_lutea n 1 2 @ #m 1 0 12516165 -claes_oldenburg n 1 1 @ 1 0 11213726 -claes_thure_oldenburg n 1 1 @ 1 0 11213726 -claforan n 1 2 @ ; 1 0 02989475 -claim n 6 3 @ ~ + 6 5 06729864 06730563 01061945 05175904 05181199 07192129 -claim_agent n 1 1 @ 1 0 09769929 -claim_form n 1 1 @ 1 0 06473940 -claim_jumper n 1 1 @ 1 0 09925824 -claimant n 1 3 @ ~ + 1 1 09925592 -claiming_race n 1 1 @ 1 0 07461650 -claims_adjuster n 1 1 @ 1 0 09769929 -claims_adjustor n 1 1 @ 1 0 09769929 -clairvoyance n 1 3 @ ~ + 1 1 07256695 -clairvoyant n 1 2 @ + 1 0 09925953 -clam n 3 6 @ ~ #p %p + ; 3 1 01956481 13395897 07786686 -clam_chowder n 1 2 @ ~ 1 0 07587700 -clam_dip n 1 1 @ 1 0 07582970 -clamatores n 1 3 @ #m + 1 0 01547143 -clambake n 1 1 @ 1 0 07576969 -clamber n 1 2 @ + 1 0 00325502 -clamminess n 1 2 @ + 1 0 14536085 -clammy_chickweed n 1 3 @ ~ #m 1 0 11807108 -clammy_locust n 1 2 @ #m 1 0 12568649 -clammyweed n 1 2 @ #m 1 0 11867311 -clamor n 2 2 @ + 2 1 07377473 07122118 -clamoring n 1 2 @ + 1 1 07122118 -clamour n 1 2 @ + 1 0 07122118 -clamouring n 1 1 @ 1 0 07122118 -clamp n 1 3 @ ~ + 1 0 03036866 -clampdown n 1 2 @ + 1 0 00808967 -clams n 1 1 @ 1 0 13385216 -clamshell n 2 1 @ 2 1 01956849 03037108 -clan n 1 3 @ ~ %m 1 1 07969695 -clan_member n 1 2 @ #m 1 0 10308275 -clandestine_operation n 1 2 @ ~ 1 0 00983651 -clang n 1 2 @ + 1 1 07380144 -clanger n 1 3 @ + ; 1 0 00076393 -clangor n 1 2 @ + 1 1 07380144 -clangoring n 1 1 @ 1 1 07380144 -clangour n 1 2 @ + 1 0 07380144 -clangula n 1 2 @ %m 1 0 01853763 -clangula_hyemalis n 1 2 @ #m 1 0 01853870 -clank n 1 2 @ + 1 0 07380144 -clannishness n 1 2 @ + 1 1 04889337 -clansman n 1 2 @ #m 1 0 10308275 -clanswoman n 1 2 @ #m 1 0 10308275 -clap n 3 3 @ ~ + 3 1 07376257 14133543 07379963 -clapboard n 1 2 @ + 1 0 15103007 -clapper n 3 4 @ #p %p + 3 0 09926088 05301072 03037228 -clapper_valve n 1 1 @ 1 0 03036701 -clapperboard n 1 1 @ 1 0 03037404 -clappers n 1 2 @ ; 1 0 02869249 -clapping n 1 4 @ ~ #p + 1 1 06691989 -claptrap n 1 1 @ 1 0 07087777 -claque n 1 2 @ #p 1 0 08223137 -clara_josephine_schumann n 1 1 @ 1 0 11287186 -clare_booth_luce n 1 1 @ 1 0 11143806 -clarence n 1 1 @ 1 0 03037590 -clarence_darrow n 1 1 @ 1 0 10923146 -clarence_day n 1 1 @ 1 0 10925772 -clarence_malcolm_lowry n 1 1 @ 1 0 11142922 -clarence_seward_darrow n 1 1 @ 1 0 10923146 -clarence_shepard_day_jr. n 1 1 @ 1 0 10925772 -claret n 2 3 @ ~ + 2 1 04964001 07895435 -claret_cup n 1 2 @ %s 1 0 07931096 -clarification n 2 3 @ ~ + 2 0 07171206 00264192 -clarified_butter n 1 2 @ ~ 1 0 07848771 -clarinet n 1 3 @ ~ + 1 0 03037709 -clarinet_section n 1 1 @ 1 0 08218004 -clarinetist n 1 3 @ ~ + 1 0 09926246 -clarinettist n 1 3 @ ~ + 1 0 09926246 -clarion n 1 2 @ + 1 0 03037899 -clarity n 2 5 ! @ ~ = + 2 2 04820258 04701460 -clark n 4 1 @ 4 0 10899164 10898929 10898693 10898549 -clark's_nutcracker n 1 1 @ 1 0 01581984 -clark_cell n 1 1 @ 1 0 03038041 -clark_gable n 1 1 @ 1 0 10986437 -clark_standard_cell n 1 1 @ 1 0 03038041 -clarksburg n 1 2 @ #p 1 0 09155986 -claro n 1 1 @ 1 0 03038190 -clary n 1 1 @ 1 0 12866162 -clary_sage n 2 3 @ #p %p 2 0 12865037 07820683 -clash n 4 3 @ ~ + 4 2 07380144 13981137 13981271 00959376 -clasp n 2 4 @ ~ #p + 2 0 03038281 00812526 -clasp_knife n 1 1 @ 1 0 03038480 -class n 8 8 @ ~ #m #p %m %p + ; 8 5 07997703 08238463 07974025 00884466 08239808 08238660 08103777 04815177 -class-action_suit n 1 2 @ ; 1 0 01183166 -class_acrasiomycetes n 1 3 @ #m %m 1 0 12975982 -class_act n 1 1 @ 1 0 10325549 -class_actinozoa n 1 3 @ #m %m 1 0 01913838 -class_action n 1 2 @ ; 1 0 01183166 -class_amphibia n 1 3 @ #m %m 1 0 01625747 -class_angiospermae n 1 3 @ #m %m 1 0 11664929 -class_anthoceropsida n 1 3 @ #m %m 1 0 11538123 -class_anthozoa n 1 3 @ #m %m 1 0 01913838 -class_aphasmidia n 1 2 @ #m 1 0 01929788 -class_arachnida n 1 3 @ #m %m 1 0 01768969 -class_archiannelida n 1 3 @ #m %m 1 0 01934705 -class_ascidiaceae n 1 3 @ #m %m 1 0 01468532 -class_ascomycetes n 1 3 @ #m %m 1 0 13023783 -class_asteroidea n 1 3 @ #m %m 1 0 02317212 -class_aves n 1 4 @ #m %m ; 1 0 01502262 -class_bacillariophyceae n 1 3 @ #m %m 1 0 01400891 -class_basidiomycetes n 1 3 @ #m %m 1 0 12996841 -class_bivalvia n 1 3 @ #m %m 1 0 01955463 -class_bryopsida n 1 3 @ #m %m 1 0 11538935 -class_cephalopoda n 1 3 @ #m %m 1 0 01968115 -class_cestoda n 1 3 @ #m %m 1 0 01927301 -class_channidae n 1 3 @ #m %m 1 0 02514198 -class_charophyceae n 1 3 @ #m %m 1 0 01412085 -class_chilopoda n 1 3 @ #m %m 1 0 01784427 -class_chlorophyceae n 1 3 @ #m %m 1 0 01407465 -class_chondrichthyes n 1 3 @ #m %m 1 0 01480336 -class_chrysophyceae n 1 2 @ #m 1 0 01400575 -class_chytridiomycetes n 1 3 @ #m %m 1 0 12977565 -class_ciliata n 1 3 @ #m %m 1 0 01394901 -class_ciliophora n 1 3 @ #m %m 1 0 01394901 -class_coniferopsida n 1 3 @ #m %m 1 0 11605708 -class_crinoidea n 1 3 @ #m %m 1 0 02319967 -class_crustacea n 1 3 @ #m %m 1 0 01974399 -class_cryptophyceae n 1 3 @ #m %m 1 0 01421164 -class_cyanobacteria n 1 3 @ #m %m 1 0 01358259 -class_cyanophyceae n 1 3 @ #m %m 1 0 01358259 -class_cycadopsida n 1 3 @ #m %m 1 0 11599694 -class_cyclosporeae n 1 2 @ #m 1 0 01403968 -class_deuteromycetes n 1 2 @ #m 1 0 12996068 -class_diatomophyceae n 1 3 @ #m %m 1 0 01400891 -class_dicotyledonae n 1 3 @ #m %m 1 0 11665781 -class_dicotyledones n 1 3 @ #m %m 1 0 11665781 -class_diplopoda n 1 3 @ #m %m 1 0 01786402 -class_echinoidea n 1 3 @ #m %m 1 0 02318915 -class_equisetatae n 1 3 @ #m %m 1 0 13218722 -class_euglenophyceae n 1 3 @ #m %m 1 0 01406262 -class_eumycetes n 1 2 @ #m 1 0 12995435 -class_feeling n 1 1 @ 1 0 07548224 -class_fellow n 1 1 @ 1 0 10560106 -class_filicinae n 1 3 @ #m %m 1 0 13169219 -class_filicopsida n 1 3 @ #m %m 1 0 13169219 -class_flagellata n 1 3 @ #m %m 1 0 01416354 -class_gasteromycetes n 1 3 @ #m %m 1 0 13038944 -class_gasteropoda n 1 3 @ #m %m 1 0 01941670 -class_gastromycetes n 1 3 @ #m %m 1 0 13038944 -class_gastropoda n 1 3 @ #m %m 1 0 01941670 -class_ginkgophytina n 1 3 @ #m %m 1 0 11663449 -class_ginkgopsida n 1 3 @ #m %m 1 0 11663449 -class_gnetopsida n 1 3 @ #m %m 1 0 11596486 -class_gymnospermae n 1 3 @ #m %m 1 0 11595312 -class_hemiascomycetes n 1 3 @ #m %m 1 0 13024763 -class_hepaticae n 1 3 @ #m %m 1 0 11542341 -class_hepaticopsida n 1 3 @ #m %m 1 0 11542341 -class_heterokontae n 1 2 @ #m 1 0 01400575 -class_hexapoda n 1 3 @ #m %m 1 0 02159271 -class_hirudinea n 1 3 @ #m %m 1 0 01937719 -class_holothuroidea n 1 3 @ #m %m 1 0 02321342 -class_hyalospongiae n 1 3 @ #m %m 1 0 01907495 -class_hydrozoa n 1 3 @ #m %m 1 0 01911511 -class_hymenomycetes n 1 2 @ #m 1 0 12998130 -class_insecta n 1 3 @ #m %m 1 0 02159271 -class_lamellibranchia n 1 3 @ #m %m 1 0 01955463 -class_larvacea n 1 3 @ #m %m 1 0 01470287 -class_liliopsida n 1 3 @ #m %m 1 0 11667562 -class_list n 1 2 @ ; 1 0 06489190 -class_lycopodiate n 1 3 @ #m %m 1 0 13220842 -class_lycopodineae n 1 2 @ #m 1 0 13221383 -class_lycopsida n 1 3 @ #m %m 1 0 13220842 -class_magnoliopsida n 1 3 @ #m %m 1 0 11665781 -class_mammalia n 1 3 @ #m %m 1 0 01861465 -class_mastigophora n 1 3 @ #m %m 1 0 01416354 -class_merostomata n 1 3 @ #m %m 1 0 01787191 -class_monocotyledonae n 1 3 @ #m %m 1 0 11667562 -class_monocotyledones n 1 3 @ #m %m 1 0 11667562 -class_musci n 1 3 @ #m %m 1 0 11538935 -class_myriapoda n 1 3 @ #m %m 1 0 01786402 -class_myxomycetes n 1 3 @ #m %m 1 0 12975608 -class_nuda n 1 3 @ #m %m 1 0 01919099 -class_oligochaeta n 1 3 @ #m %m 1 0 01935012 -class_onychophora n 1 3 @ #m %m 1 0 01999374 -class_oomycetes n 1 3 @ #m %m 1 0 12977296 -class_ophiuroidea n 1 3 @ #m %m 1 0 02317488 -class_osteichthyes n 1 3 @ #m %m 1 0 02514575 -class_pauropoda n 1 2 @ #m 1 0 01783205 -class_pelecypoda n 1 3 @ #m %m 1 0 01955463 -class_period n 1 2 @ #p 1 0 01232246 -class_phaeophyceae n 1 3 @ #m %m 1 0 01402169 -class_phasmidia n 1 2 @ #m 1 0 01929951 -class_pinopsida n 1 2 @ #m 1 0 11607071 -class_placodermi n 1 3 @ #m %m 1 0 01479937 -class_plectomycetes n 1 3 @ #m %m 1 0 13026529 -class_polychaeta n 1 3 @ #m %m 1 0 01936219 -class_polyplacophora n 1 3 @ #m %m 1 0 01954729 -class_psilopsida n 1 3 @ #m %m 1 0 13215936 -class_psilotatae n 1 3 @ #m %m 1 0 13215936 -class_pteridospermopsida n 1 3 @ #m %m 1 0 11604698 -class_pyrenomycetes n 1 3 @ #m %m 1 0 13028070 -class_reptilia n 1 3 @ #m %m 1 0 01660719 -class_rhodophyceae n 1 3 @ #m %m 1 0 01413744 -class_sarcodina n 1 3 @ #m %m 1 0 01389875 -class_scaphopoda n 1 3 @ #m %m 1 0 01941030 -class_schizomycetes n 1 2 @ #m 1 0 01358135 -class_scyphozoa n 1 3 @ #m %m 1 0 01910529 -class_sphenopsida n 1 3 @ #m %m 1 0 13218722 -class_sporozoa n 1 3 @ #m %m 1 0 01421496 -class_structure n 1 3 @ ~ %m 1 0 08378555 -class_struggle n 1 1 @ 1 0 00959800 -class_symphyla n 1 3 @ #m %m 1 0 01783384 -class_tardigrada n 1 3 @ #m %m 1 0 01783936 -class_taxopsida n 1 2 @ #m 1 0 11660537 -class_tentaculata n 1 3 @ #m %m 1 0 01919504 -class_thaliacea n 1 3 @ #m %m 1 0 01469222 -class_tiliomycetes n 1 2 @ #m 1 0 13065702 -class_trematoda n 1 3 @ #m %m 1 0 01925469 -class_turbellaria n 1 3 @ #m %m 1 0 01925133 -class_ulvophyceae n 1 2 @ #m 1 0 01408088 -class_war n 1 1 @ 1 0 00959800 -class_warfare n 1 1 @ 1 0 00959800 -class_xanthophyceae n 1 2 @ #m 1 0 01400772 -class_zygomycetes n 1 3 @ #m %m 1 0 12972629 -classic n 2 1 @ 2 2 03038595 09926426 -classic_hemochromatosis n 1 1 @ 1 0 14207256 -classical n 1 2 @ ~ 1 0 07025900 -classical_architecture n 1 3 @ ~ - 1 0 05841985 -classical_ballet n 1 1 @ 1 0 00529622 -classical_conditioning n 1 1 @ 1 0 05759182 -classical_greek n 1 1 @ 1 0 06977610 -classical_haemophilia n 1 1 @ 1 0 14170772 -classical_hemophilia n 1 1 @ 1 0 14170772 -classical_latin n 1 1 @ 1 0 06963082 -classical_mechanics n 1 1 @ 1 0 06111335 -classical_music n 1 2 @ ~ 1 0 07025900 -classical_mythology n 1 3 @ ~ - 1 0 07978924 -classical_scholar n 1 2 @ ~ 1 0 09926656 -classical_style n 1 1 @ 1 0 04698511 -classicalism n 1 1 @ 1 0 06154724 -classicism n 1 3 ! @ + 1 0 06154724 -classicist n 2 4 ! @ ~ + 2 1 09926519 09926656 -classics n 1 2 @ + 1 1 06170371 -classification n 4 4 ! @ ~ + 4 2 01012712 07939638 05732756 01148904 -classification_system n 1 2 @ ~ 1 0 05727220 -classified n 1 2 @ ~ 1 0 07249585 -classified_ad n 1 2 @ ~ 1 0 07249585 -classified_advertisement n 1 2 @ ~ 1 0 07249585 -classified_stock n 1 1 @ 1 0 13335008 -classifier n 2 2 @ + 2 1 09926862 06308436 -classifying_adjective n 1 2 @ ~ 1 0 06322157 -classmate n 1 1 @ 1 1 10560106 -classroom n 1 3 @ ~ #p 1 1 03038685 -classroom_project n 1 2 @ #p 1 0 00728849 -classwork n 1 2 @ #p 1 0 00728975 -clast n 1 4 @ #p + ; 1 0 09246134 -clastic_rock n 1 4 @ %p + ; 1 0 09246292 -clathraceae n 1 3 @ #m %m 1 0 13042514 -clathrus n 1 2 @ #m 1 0 13042694 -clatonia_lanceolata n 1 2 @ #m 1 0 11859472 -clatter n 1 2 @ + 1 1 07380473 -claude_achille_debussy n 1 1 @ 1 0 10926597 -claude_bernard n 1 1 @ 1 0 10847793 -claude_debussey n 1 1 @ 1 0 10926597 -claude_e._shannon n 1 1 @ 1 0 11295619 -claude_elwood_shannon n 1 1 @ 1 0 11295619 -claude_levi-strauss n 1 1 @ 1 0 11130113 -claude_monet n 1 1 @ 1 0 11185392 -claude_shannon n 1 1 @ 1 0 11295619 -claudication n 1 2 @ ~ 1 0 14549937 -claudio_monteverdi n 1 1 @ 1 0 11187364 -claudius n 1 1 @ 1 0 10899414 -claudius_i n 1 1 @ 1 0 10899414 -claudius_ptolemaeus n 1 1 @ 1 0 11247413 -clause n 2 5 @ ~ #p + ; 2 2 06314144 06392935 -clausewitz n 1 1 @ 1 0 10899747 -claustrophobe n 1 1 @ 1 0 09926991 -claustrophobia n 1 1 @ 1 1 14383252 -claustrum n 1 1 @ 1 0 05497922 -clavariaceae n 1 3 @ #m %m 1 0 12985629 -claviceps n 1 3 @ #m %m 1 0 12965463 -claviceps_purpurea n 1 3 @ ~ #m 1 0 12965626 -clavichord n 1 1 @ 1 0 03038870 -clavicipitaceae n 1 2 @ ~ 1 0 13024500 -clavicle n 1 3 @ #p %p 1 0 05274105 -clavier n 2 3 @ ~ #p 2 0 03928814 03039015 -clavus n 1 1 @ 1 0 14364802 -claw n 4 4 @ ~ #p + 4 3 02156140 03532672 02156532 02154742 -claw_hammer n 1 1 @ 1 0 02966545 -claw_hatchet n 1 1 @ 1 0 03039156 -clawback n 1 2 @ ; 1 0 00089657 -clawfoot n 1 1 @ 1 0 14214001 -clawhammer n 1 1 @ 1 0 02966545 -claxon n 1 2 @ + 1 0 03622058 -clay n 5 4 @ ~ #s %s 5 1 14813182 14956325 10900146 10899951 05218119 -clay-colored_robin n 1 2 @ #m 1 0 01559160 -clay_pigeon n 1 1 @ 1 0 03039259 -clay_pipe n 1 2 @ ~ 1 0 03039618 -clay_sculpture n 1 1 @ 1 0 03779621 -claymore n 2 1 @ 2 0 03039493 03039353 -claymore_mine n 1 1 @ 1 0 03039353 -claystone n 1 1 @ 1 0 14814419 -claytonia n 1 3 @ #m %m 1 0 11859024 -claytonia_caroliniana n 1 2 @ #m 1 0 11859275 -claytonia_virginica n 1 2 @ #m 1 0 11859737 -clayware n 1 3 @ ~ %s 1 0 03992703 -clean n 1 2 @ %p 1 1 00626838 -clean_and_jerk n 1 2 @ %p 1 0 00626838 -clean_bill_of_health n 1 1 @ 1 0 07227589 -clean_bomb n 1 1 @ 1 0 03039711 -clean_room n 1 2 @ ~ 1 0 03040376 -clean_slate n 1 1 @ 1 1 14484646 -cleaner n 3 3 @ ~ + 3 1 03040587 09927305 09927089 -cleaners n 1 2 @ ; 1 0 03039827 -cleaning n 1 3 @ ~ + 1 1 00251013 -cleaning_device n 1 2 @ ~ 1 0 03039947 -cleaning_equipment n 1 2 @ ~ 1 0 03039947 -cleaning_implement n 1 2 @ ~ 1 0 03039947 -cleaning_lady n 1 1 @ 1 0 09911226 -cleaning_pad n 1 2 @ ~ 1 0 03040229 -cleaning_woman n 1 1 @ 1 0 09911226 -cleanliness n 2 4 ! @ ~ + 2 0 14496451 04896161 -cleanness n 2 5 ! @ ~ = + 2 0 14496193 13990389 -cleanser n 1 3 @ ~ + 1 0 03040587 -cleansing n 1 3 @ ~ + 1 1 00251013 -cleansing_agent n 1 2 @ ~ 1 0 03040587 -cleanthes n 1 1 @ 1 0 10900366 -cleanup n 3 5 @ ~ #p + ; 3 0 13259797 06486405 00251013 -cleanup_position n 1 3 @ #p ; 1 0 06486405 -cleanup_spot n 1 3 @ #p ; 1 0 06486405 -clear n 2 2 @ + 2 0 13990502 08632423 -clear-air_turbulence n 1 1 @ 1 0 14524487 -clear_and_present_danger n 1 1 @ 1 0 14541247 -clear_liquid_diet n 1 1 @ 1 0 07562172 -clear_sailing n 1 1 @ 1 0 00282953 -clearance n 3 2 @ + 3 1 05090111 13778261 01141593 -clearance_sale n 1 1 @ 1 0 01118776 -clearcutness n 1 2 @ + 1 0 04821451 -clearing n 3 3 @ ~ + 3 1 08541288 01247647 00264192 -clearing_house n 1 1 @ 1 1 08055516 -clearness n 2 5 ! @ ~ = + 2 1 04820258 04701460 -clearstory n 1 1 @ 1 0 03041810 -clearway n 1 2 @ ; 1 0 03040836 -clearweed n 1 2 @ #m 1 0 12395068 -cleat n 3 4 @ ~ #p + 3 1 03041265 03041114 03040983 -cleats n 1 3 @ %p ; 1 0 03041449 -cleavage n 5 4 @ #p + ; 5 0 13920012 13449319 13449156 05553897 00386345 -cleavage_cavity n 1 2 @ #p 1 0 01459242 -cleaver n 1 2 @ + 1 0 03041632 -cleavers n 1 1 @ 1 0 12666159 -clef n 1 2 @ ~ 1 0 06862562 -cleft n 2 3 @ ~ + 2 1 13908201 09258715 -cleft_foot n 1 1 @ 1 0 14214209 -cleft_lip n 1 1 @ 1 0 14214355 -cleft_palate n 1 1 @ 1 0 14214486 -cleg n 1 2 @ #m 1 0 02195526 -clegg n 1 2 @ #m 1 0 02195526 -cleistes n 1 3 @ #m %m 1 0 12051285 -cleistes_divaricata n 1 2 @ #m 1 0 12051514 -cleistes_rosea n 1 2 @ #m 1 0 12051792 -cleistocarp n 1 1 @ 1 0 11533772 -cleistogamy n 1 1 @ 1 0 07439167 -cleistothecium n 1 1 @ 1 0 11533772 -clematis n 1 3 @ ~ #m 1 0 11729478 -clematis_baldwinii n 1 1 @ 1 0 11729860 -clematis_crispa n 1 1 @ 1 0 11730015 -clematis_lasiantha n 1 1 @ 1 0 11730205 -clematis_ochreleuca n 1 1 @ 1 0 11730312 -clematis_tangutica n 1 1 @ 1 0 11730458 -clematis_texensis n 1 1 @ 1 0 11730602 -clematis_versicolor n 1 1 @ 1 0 11730750 -clematis_verticillaris n 1 1 @ 1 0 11731659 -clematis_viorna n 1 1 @ 1 0 11730933 -clematis_virginiana n 1 1 @ 1 0 11731157 -clematis_vitalba n 1 1 @ 1 0 11731411 -clemence_sophia_harned_lozier n 1 1 @ 1 0 11143163 -clemenceau n 1 1 @ 1 0 10900524 -clemency n 2 3 @ ~ + 2 0 14522408 01071411 -clemens n 1 1 @ 1 0 10900730 -clement_attlee n 1 1 @ 1 0 10827873 -clement_iii n 1 1 @ 1 0 10900953 -clement_philibert_leo_delibes n 1 1 @ 1 0 10928978 -clement_richard_attlee n 1 1 @ 1 0 10827873 -clement_vii n 1 1 @ 1 0 10901192 -clement_xi n 1 1 @ 1 0 10901420 -clement_xiv n 1 1 @ 1 0 10901589 -clementine n 2 1 @ 2 0 12710415 07748157 -clementine_tree n 1 1 @ 1 0 12710415 -clench n 2 4 @ ~ + ; 2 0 03042984 00812526 -clenched_fist n 1 1 @ 1 0 05565064 -cleome n 2 4 @ ~ #m %m 2 0 11866248 11866078 -cleome_hassleriana n 1 1 @ 1 0 11866469 -cleome_pinnata n 1 2 @ #m 1 0 11897466 -cleome_serrulata n 1 1 @ 1 0 11866706 -cleopatra n 1 1 @ 1 0 10901827 -clepsydra n 1 1 @ 1 0 04558347 -clerestory n 1 1 @ 1 0 03041810 -clergy n 1 5 ! @ ~ %m + 1 1 08152787 -clergyman n 1 4 ! @ ~ #m 1 1 09927451 -cleric n 1 2 @ ~ 1 1 09928136 -clerical_collar n 1 1 @ 1 0 03041964 -clericalism n 1 1 @ 1 0 06489410 -clericalist n 1 1 @ 1 0 09928364 -clerid n 1 3 @ ~ #m 1 0 02170993 -clerid_beetle n 1 3 @ ~ #m 1 0 02170993 -cleridae n 1 3 @ #m %m 1 0 02170848 -clerihew n 1 1 @ 1 0 06378627 -clerisy n 1 2 @ ~ 1 0 08387354 -clerk n 2 3 @ ~ + 2 2 09928451 10548227 -clerking n 1 4 @ ~ + - 1 1 00619230 -clerkship n 1 2 @ + 1 0 00590518 -clethra n 1 2 @ #m 1 0 12249993 -clethra_alnifolia n 1 1 @ 1 0 12250180 -clethraceae n 1 3 @ #m %m 1 0 12249821 -clethrionomys n 1 3 @ #m %m 1 0 02342109 -cleveland n 2 2 @ #p 2 1 09130714 10902051 -clever_clogs n 1 2 @ ; 1 0 09928845 -clever_dick n 1 2 @ ; 1 0 09928845 -cleverness n 3 3 @ ~ + 3 1 05633672 05620955 04730367 -clevis n 1 1 @ 1 0 03042139 -clew n 2 3 @ ~ + 2 0 07961379 06643763 -clews n 1 2 @ ; 1 0 03042384 -cli n 1 1 @ 1 0 06575505 -clianthus n 1 3 @ ~ #m 1 0 12516584 -clianthus_formosus n 1 1 @ 1 0 12516828 -clianthus_puniceus n 1 1 @ 1 0 12517077 -clianthus_speciosus n 1 1 @ 1 0 12516828 -cliche n 1 1 @ 1 1 07154046 -clichy n 1 2 @ #p 1 0 08933437 -clichy-la-garenne n 1 2 @ #p 1 0 08933437 -click n 4 3 @ #p + 4 1 07379223 07118210 03901548 00112828 -click-clack n 1 2 @ ~ 1 0 07380686 -click_beetle n 1 1 @ 1 0 02176439 -clickety-clack n 1 1 @ 1 0 07380784 -clickety-click n 1 1 @ 1 1 07380784 -client n 3 5 @ ~ #m #p ; 3 2 09985075 09984659 03827107 -client-centered_therapy n 1 1 @ 1 0 00703236 -clientage n 1 1 @ 1 0 13837351 -clientele n 1 1 @ 1 1 08401554 -cliff n 1 2 @ ~ 1 1 09246464 -cliff-brake n 1 3 @ ~ #m 1 0 13211790 -cliff_brake n 1 3 @ ~ #m 1 0 13211790 -cliff_diving n 1 1 @ 1 0 00443692 -cliff_dweller n 1 1 @ 1 0 09929005 -cliff_dwelling n 1 1 @ 1 0 03042490 -cliff_penstemon n 1 2 @ #m 1 0 12887713 -cliff_rose n 1 1 @ 1 0 12099031 -cliff_swallow n 1 2 @ #m 1 0 01594968 -cliffhanger n 2 1 @ 2 0 07458099 06621681 -clifford_odets n 1 1 @ 1 0 11212120 -clifford_trust n 1 1 @ 1 0 13361624 -cliftonia n 1 3 @ #m %m 1 0 12751043 -cliftonia_monophylla n 1 2 @ #m 1 0 12751172 -climacteric n 2 2 @ #p 2 0 15154646 15154462 -climate n 2 2 @ + 2 2 14519366 14524661 -climate_change n 1 1 @ 1 0 13449450 -climatic_zone n 1 2 @ ~ 1 0 08542081 -climatologist n 1 1 @ 1 0 09929202 -climatology n 1 2 @ ~ 1 0 06119377 -climax n 5 4 @ ~ #p + 5 3 07417043 06373747 00062133 14568516 07102373 -climb n 3 3 @ ~ + 3 0 09206985 07370410 00325110 -climb-down n 1 1 @ 1 0 07206302 -climber n 5 3 @ ~ + 5 0 13102409 10618685 10334957 09929298 03126385 -climbing n 1 2 @ + 1 0 07370410 -climbing_bird's_nest_fern n 1 2 @ #m 1 0 13176714 -climbing_bittersweet n 1 2 @ #m 1 0 12748248 -climbing_boneset n 1 2 @ #m 1 0 11996251 -climbing_corydalis n 1 2 @ #m 1 0 11904274 -climbing_fern n 1 3 @ ~ #m 1 0 12956170 -climbing_frame n 1 2 @ ; 1 0 03042697 -climbing_fumitory n 1 1 @ 1 0 11909864 -climbing_hemp-vine n 1 2 @ #m 1 0 11996251 -climbing_hempweed n 1 2 @ #m 1 0 11996251 -climbing_hydrangea n 3 2 @ #m 3 0 12791790 12789226 12788487 -climbing_iron n 1 1 @ 1 0 03126385 -climbing_lily n 1 2 @ #m 1 0 12455950 -climbing_maidenhair n 1 1 @ 1 0 12956588 -climbing_maidenhair_fern n 1 1 @ 1 0 12956588 -climbing_nightshade n 1 2 @ #m 1 0 12894607 -climbing_onion n 1 2 @ #m 1 0 12444898 -climbing_perch n 1 2 @ #m 1 0 02556373 -climbing_salamander n 1 3 @ ~ #m 1 0 01637112 -clime n 1 1 @ 1 0 14519366 -clinch n 5 5 @ ~ #p + ; 5 1 00059728 03042984 03042829 03036866 00417859 -clinch_river n 1 2 @ #p 1 0 09246660 -clincher n 3 2 @ + 3 0 06649567 05692758 03043173 -cline n 1 1 @ 1 0 10902232 -cling n 1 1 @ 1 0 07738224 -cling_film n 1 2 @ %s 1 0 04135710 -clingfilm n 1 2 @ %s 1 0 04135710 -clingfish n 1 3 @ ~ #m 1 0 02635580 -clingstone n 1 1 @ 1 0 07738224 -clinic n 3 4 @ ~ #p + 3 0 08054076 07146300 03043274 -clinical_anatomy n 1 1 @ 1 0 06059125 -clinical_depression n 1 2 @ ~ 1 0 14389240 -clinical_neurology n 1 2 @ ; 1 0 06052864 -clinical_psychologist n 1 2 @ ~ 1 0 10489944 -clinical_psychology n 1 1 @ 1 0 06057172 -clinical_test n 1 2 @ ~ 1 0 00792356 -clinical_thermometer n 1 1 @ 1 0 03043423 -clinical_trial n 1 2 @ ~ 1 0 00792356 -clinician n 1 2 @ ; 1 0 09929577 -clinid n 1 2 @ #m 1 0 02614140 -clinid_fish n 1 2 @ #m 1 0 02614140 -clinidae n 1 3 @ #m %m 1 0 02613960 -clink n 2 3 @ ~ + 2 0 07379223 03592245 -clinker n 2 2 @ + 2 0 09245212 03043693 -clinker_block n 1 1 @ 1 0 03031957 -clinker_brick n 1 1 @ 1 0 03043693 -clinocephalism n 1 1 @ 1 0 14159153 -clinocephaly n 1 1 @ 1 0 14159153 -clinodactyly n 1 1 @ 1 0 14159318 -clinometer n 1 1 @ 1 0 03043798 -clinopodium n 1 3 @ #m %m 1 0 12843844 -clinopodium_grandiflorum n 1 1 @ 1 0 12843316 -clinopodium_vulgare n 1 2 @ #m 1 0 12843970 -clinoril n 1 3 @ %s ; 1 0 04353410 -clinton n 4 2 @ #p 4 0 10902752 10902591 10902409 09086894 -clinton's_lily n 1 3 @ ~ #m 1 0 12472024 -clinton_administration n 1 1 @ 1 0 08165760 -clintonia n 1 3 @ ~ #m 1 0 12472024 -clintonia_andrewsiana n 1 2 @ #m 1 0 12472326 -clintonia_borealis n 1 2 @ #m 1 0 12472559 -clintonia_uniflora n 1 2 @ #m 1 0 12472778 -clio n 1 2 @ ; 1 0 09566436 -clioquinol n 1 1 @ 1 0 03583109 -clip n 6 4 @ ~ #p + 6 3 02973017 07309599 03043958 03044166 00359614 00133234 -clip-clop n 1 1 @ 1 0 07380934 -clip-on n 1 1 @ 1 0 03044801 -clip_art n 1 1 @ 1 0 03044278 -clip_artist n 1 1 @ 1 0 09929770 -clip_joint n 1 1 @ 1 0 03044537 -clip_lead n 1 2 @ %p 1 0 03044671 -clipboard n 1 1 @ 1 0 03044418 -clipper n 4 3 @ + ; 4 0 03669886 03045228 03045074 03044934 -clipper_ship n 1 1 @ 1 0 03045228 -clippety-clop n 1 1 @ 1 0 07380934 -clipping n 3 3 @ ~ + 3 0 06612649 00359903 00359614 -clique n 1 2 @ ~ 1 1 08240633 -cliquishness n 1 2 @ + 1 0 04889337 -clit n 1 3 @ #p %p 1 0 05523420 -clitocybe n 1 3 @ #m %m 1 0 13020623 -clitocybe_clavipes n 1 2 @ #m 1 0 13020964 -clitocybe_dealbata n 1 2 @ #m 1 0 13021166 -clitocybe_inornata n 1 2 @ #m 1 0 13021332 -clitocybe_irina n 1 2 @ #m 1 0 13021689 -clitocybe_nuda n 1 1 @ 1 0 13017102 -clitocybe_robusta n 1 2 @ #m 1 0 13021543 -clitocybe_subconnexa n 1 2 @ #m 1 0 13021867 -clitoral_vein n 1 2 @ ~ 1 0 05364184 -clitoria n 1 3 @ #m %m 1 0 12517253 -clitoria_mariana n 1 2 @ #m 1 0 12517445 -clitoria_turnatea n 1 1 @ 1 0 12517642 -clitoridectomy n 1 1 @ 1 0 00669155 -clitoris n 1 4 @ #p %p + 1 0 05523420 -clive n 1 1 @ 1 0 10902934 -clive_sinclair n 1 1 @ 1 0 11302224 -clive_staples_lewis n 1 1 @ 1 0 11130291 -clivers n 1 1 @ 1 0 12666159 -cloaca n 2 3 @ #p ; 2 0 05304341 04179126 -cloak n 2 3 @ ~ + 2 1 03045698 03045337 -cloakmaker n 1 1 @ 1 0 09929861 -cloakroom n 2 1 @ 2 0 03045928 03045800 -clobber n 1 1 @ 1 0 13251154 -cloche n 2 1 @ 2 0 03046133 03046029 -clock n 1 4 @ ~ %p + 1 1 03046257 -clock-watching n 1 1 @ 1 0 05703070 -clock_dial n 1 2 @ #p 1 0 03046657 -clock_face n 1 2 @ #p 1 0 03046657 -clock_golf n 1 1 @ 1 0 00573106 -clock_pendulum n 1 1 @ 1 0 03046802 -clock_radio n 1 1 @ 1 0 03046921 -clock_time n 1 3 @ ~ = 1 0 15129927 -clock_tower n 1 1 @ 1 0 03047052 -clock_watcher n 1 1 @ 1 0 09929988 -clocking n 1 2 @ + 1 1 15133903 -clockmaker n 1 2 @ ~ 1 0 09930102 -clocks n 1 1 @ 1 0 12688903 -clocksmith n 1 2 @ ~ 1 0 09930102 -clockwise_rotation n 1 1 @ 1 0 07441373 -clockwork n 1 2 @ %p 1 0 03047171 -clockwork_universe n 1 1 @ 1 0 06211529 -clod n 2 2 @ ~ 2 2 07961016 10274639 -clodhopper n 1 1 @ 1 1 02904927 -clofibrate n 1 1 @ 1 0 03047353 -clog n 3 2 @ + 3 0 03047690 03047553 00530208 -clog_dance n 1 1 @ 1 0 00530208 -clog_dancer n 1 1 @ 1 0 09990690 -clog_dancing n 1 1 @ 1 0 00530208 -cloisonne n 1 2 @ + 1 0 03047799 -cloister n 2 4 @ ~ + ; 2 0 04073948 03047941 -clomid n 1 2 @ ; 1 0 03048094 -clomiphene n 1 1 @ 1 0 03048094 -clomiphene_citrate n 1 1 @ 1 0 03048094 -clomipramine n 1 1 @ 1 0 03048322 -clon n 1 1 @ 1 0 07940242 -clone n 3 3 @ + ; 3 0 10531557 07940242 03626925 -clonidine n 1 1 @ 1 0 03048412 -cloning n 1 2 @ ~ 1 0 00638243 -clonus n 1 2 @ + 1 0 14083061 -clop n 1 1 @ 1 0 07380934 -clopidogrel_bisulfate n 1 1 @ 1 0 03048598 -clopping n 1 1 @ 1 0 07380934 -clorox n 1 2 @ ; 1 0 14815628 -close n 3 4 @ ~ #p + 3 1 15267536 06398401 00210797 -close-order_drill n 1 2 @ ; 1 0 00896526 -close-quarter_fighting n 1 1 @ 1 0 00959537 -close_call n 1 1 @ 1 0 00061014 -close_corporation n 1 2 @ ~ 1 0 08383690 -close_order n 1 2 @ ; 1 0 08427163 -close_quarters n 1 2 @ ; 1 0 08623424 -close_shave n 1 1 @ 1 0 00061014 -close_support n 1 1 @ 1 0 00971984 -close_supporting_fire n 1 1 @ 1 0 00988696 -closed-angle_glaucoma n 1 1 @ 1 0 14255536 -closed-circuit_television n 1 3 @ ~ ; 1 0 03049066 -closed-class_word n 1 3 @ ~ %p 1 0 06291318 -closed-end_fund n 1 1 @ 1 0 08071908 -closed-end_investment_company n 1 1 @ 1 0 08071908 -closed-heart_surgery n 1 2 @ ~ 1 0 00675357 -closed-loop_system n 1 1 @ 1 0 03049326 -closed_book n 1 1 @ 1 0 05685538 -closed_chain n 1 4 ! @ ~ ; 1 0 09246883 -closed_circuit n 1 3 ! @ ~ 1 1 03048883 -closed_corporation n 1 2 @ ~ 1 0 08383690 -closed_couplet n 1 1 @ 1 0 06385728 -closed_curve n 1 2 @ ~ 1 0 13868248 -closed_fracture n 1 1 @ 1 0 14294117 -closed_gentian n 2 1 @ 2 0 12294723 12294331 -closed_interval n 1 2 ! @ 1 1 06016462 -closed_loop n 1 1 @ 1 0 03049326 -closed_primary n 1 1 @ 1 0 00182897 -closed_session n 1 1 @ 1 0 07147116 -closed_shop n 1 1 @ 1 0 08235076 -closed_universe n 1 2 @ ; 1 0 09247071 -closedown n 1 3 @ ~ + 1 0 00229260 -closely_held_corporation n 1 1 @ 1 0 08384041 -closeness n 6 4 ! @ ~ + 6 0 07530124 05112474 05085572 04833687 04657407 04655442 -closeout n 1 2 @ + 1 0 01118890 -closer n 2 4 @ ~ + ; 2 0 09930464 09930257 -closet n 4 4 @ ~ %p + 4 3 03148324 04558478 04550184 03049457 -closet_auger n 1 1 @ 1 0 03049605 -closet_drama n 1 1 @ 1 0 07015400 -closet_queen n 1 1 @ 1 0 09930628 -closeup n 1 1 @ 1 1 03049695 -closeup_lens n 1 1 @ 1 0 03049782 -closing n 5 5 ! @ ~ #p + 5 1 00344040 06398401 00281462 00229260 00211110 -closing_curtain n 1 1 @ 1 0 00210797 -closing_off n 1 2 @ ~ 1 1 01202029 -closing_price n 1 2 @ ; 1 0 13304340 -closing_time n 1 1 @ 1 0 15168665 -clostridia n 1 2 @ #m 1 0 01357156 -clostridial_myonecrosis n 1 2 @ ; 1 0 14313943 -clostridium n 1 2 @ #m 1 0 01357156 -clostridium_botulinum n 1 2 @ #m 1 0 01357328 -clostridium_perfringens n 1 2 @ #m 1 0 01357507 -clostridium_perfringens_epsilon_toxin n 1 1 @ 1 0 14714353 -closure n 7 3 @ ~ + 7 1 00281462 06666829 06249421 05789089 02853449 01074694 00229260 -closure_by_compartment n 1 1 @ 1 0 06667027 -clot n 1 3 @ ~ + 1 1 05402091 -clot_buster n 1 2 @ ~ 1 0 04429169 -clotbur n 1 3 @ ~ #m 1 0 11924445 -cloth n 1 4 @ ~ %s %p 1 1 03309808 -cloth_cap n 1 1 @ 1 0 03049924 -cloth_covering n 1 2 @ ~ 1 0 03050026 -clothes n 1 2 @ ~ 1 1 02728440 -clothes_basket n 1 1 @ 1 0 03050864 -clothes_closet n 1 1 @ 1 0 03050546 -clothes_designer n 1 2 @ ~ 1 0 09972157 -clothes_drier n 1 2 @ ~ 1 0 03050655 -clothes_dryer n 1 2 @ ~ 1 0 03050655 -clothes_hamper n 1 1 @ 1 0 03050864 -clothes_hanger n 1 2 @ %p 1 0 03057920 -clothes_moth n 1 2 @ ~ 1 0 02291748 -clothes_peg n 1 1 @ 1 0 03051249 -clothes_pin n 1 1 @ 1 0 03051249 -clothes_tree n 1 1 @ 1 0 03051396 -clothesbrush n 1 1 @ 1 1 03050453 -clotheshorse n 2 2 @ ~ 2 1 03051041 09991026 -clothesline n 1 1 @ 1 1 03051152 -clothespin n 1 1 @ 1 0 03051249 -clothespress n 1 1 @ 1 0 03050546 -clothier n 1 1 @ 1 0 09930772 -clothing n 1 4 @ ~ %p + 1 1 03051540 -clothing_store n 1 2 @ ~ 1 0 03052464 -clotho n 1 2 @ #m 1 0 09565503 -clotted_cream n 1 2 @ ; 1 0 07847453 -clotting n 1 3 @ ~ + 1 0 13454479 -clotting_factor n 1 2 @ ~ 1 0 15022776 -clotting_time n 1 1 @ 1 0 15296920 -cloture n 1 3 @ ~ + 1 0 06666829 -cloud n 6 6 @ ~ #p %m %s + 6 3 11439690 09247410 13960357 14525108 13982999 07996149 -cloud-cuckoo-land n 1 1 @ 1 0 05627222 -cloud_bank n 1 1 @ 1 0 09247847 -cloud_chamber n 1 1 @ 1 0 03052628 -cloud_cover n 1 1 @ 1 0 14524198 -cloud_grass n 1 1 @ 1 0 12107191 -cloud_nine n 1 2 @ ~ 1 0 13987905 -cloud_seeder n 1 1 @ 1 0 10575594 -cloudberry n 1 1 @ 1 0 12657294 -cloudburst n 1 1 @ 1 1 11502102 -cloudiness n 3 3 @ ~ + 3 0 14524198 13984468 04703698 -clouding n 1 2 @ + 1 0 13449566 -clouding_up n 1 1 @ 1 0 13449566 -cloudlessness n 1 2 @ + 1 0 04951978 -clout n 4 4 @ ~ + ; 4 0 07262278 05157274 03052917 00134780 -clout_nail n 1 1 @ 1 0 03052917 -clove n 4 6 @ #m #s #p %s %p 4 0 12339831 12339526 07818422 07814487 -clove_hitch n 1 1 @ 1 0 03053047 -clove_oil n 1 1 @ 1 0 14893271 -clove_pink n 1 1 @ 1 0 11808468 -clove_tree n 1 3 @ #m %p 1 0 12339526 -cloven_foot n 2 1 @ 2 0 06795657 02154264 -cloven_hoof n 2 1 @ 2 0 06795657 02154264 -clover n 1 3 @ ~ #m 1 1 11752578 -clover-leaf_roll n 1 1 @ 1 0 07692248 -clover-root n 1 1 @ 1 0 12632526 -clover_fern n 1 3 @ ~ #m 1 0 12957608 -cloverleaf n 1 1 @ 1 0 03053163 -cloveroot n 1 1 @ 1 0 12632526 -clovis n 1 1 @ 1 0 10903172 -clovis_culture n 1 2 @ ; 1 0 08291582 -clovis_i n 1 1 @ 1 0 10903172 -clowder n 1 2 @ %m 1 0 07995365 -clown n 2 3 @ ~ + 2 2 09931165 09930876 -clown_anemone_fish n 1 2 @ #m 1 0 02607201 -clowning n 2 3 @ ~ + 2 1 00513401 06781383 -clozapine n 1 1 @ 1 0 03053272 -clozaril n 1 1 @ 1 0 03053272 -cloze_procedure n 1 1 @ 1 0 05741139 -cloze_test n 1 1 @ 1 0 05741139 -club n 7 6 @ ~ #m %m %p + 7 5 08079613 08227214 03053474 03054311 03446070 03053788 02931417 -club-head n 1 4 @ #p %p ; 1 0 03446268 -club-moss n 1 4 @ ~ #m %p 1 0 13221529 -club_car n 1 1 @ 1 0 03053976 -club_drug n 1 2 @ ~ 1 0 03054098 -club_fungus n 1 1 @ 1 0 12985773 -club_head n 1 4 @ #p %p ; 1 0 03446268 -club_member n 1 2 @ #m 1 0 10308394 -club_moss n 1 4 @ ~ #m %p 1 0 13221529 -club_sandwich n 1 1 @ 1 0 07696839 -club_soda n 1 2 @ #s 1 0 07936548 -club_steak n 1 1 @ 1 0 07660463 -clubbing n 1 1 @ 1 0 14302847 -clubfoot n 1 2 @ ~ 1 1 14214584 -clubhead n 1 4 @ #p %p ; 1 0 03446268 -clubhouse n 1 2 @ %p 1 1 03054311 -clubmoss_family n 1 3 @ #m %m 1 0 13222477 -clubroom n 1 2 @ #p 1 0 03054491 -clubroot_fungus n 1 2 @ #m 1 0 12983654 -cluck n 1 2 @ + 1 1 07381100 -clucking n 1 1 @ 1 0 07381100 -clue n 2 2 @ ~ 2 2 06802785 06643763 -clumber n 1 1 @ 1 0 02101556 -clumber_spaniel n 1 1 @ 1 0 02101556 -clump n 3 3 @ ~ + 3 2 07959943 07961016 07396945 -clumping n 1 1 @ 1 0 07380934 -clumsiness n 3 3 @ ~ + 3 0 05648459 05004294 04815624 -clumsy_person n 1 2 @ ~ 1 0 09931267 -clunch n 1 2 @ ; 1 0 14814531 -clunk n 1 2 @ + 1 0 07396945 -clunking n 1 1 @ 1 0 07380934 -clupea n 1 3 @ #m %m 1 0 02531820 -clupea_harangus n 1 4 @ ~ #m %p 1 0 02532028 -clupea_harengus_harengus n 1 2 @ #m 1 0 02532272 -clupea_harengus_pallasii n 1 2 @ #m 1 0 02532451 -clupea_sprattus n 1 3 @ #m %p 1 0 02532918 -clupeid n 1 3 @ ~ #m 1 0 02529772 -clupeid_fish n 1 3 @ ~ #m 1 0 02529772 -clupeidae n 1 3 @ #m %m 1 0 02529515 -clusia n 1 2 @ #m 1 0 12365900 -clusia_flava n 1 2 @ #m 1 0 12366053 -clusia_insignis n 1 2 @ #m 1 0 12366186 -clusia_major n 1 2 @ #m 1 0 12366313 -clusia_rosea n 1 2 @ #m 1 0 12366313 -clusiaceae n 1 3 @ #m %m 1 0 12363988 -cluster n 1 3 @ ~ + 1 1 07959943 -cluster_bean n 1 2 @ #m 1 0 12520406 -cluster_bomb n 1 2 @ %p 1 0 03054605 -cluster_bomblet n 1 3 @ ~ #p 1 0 02868240 -cluster_headache n 1 1 @ 1 0 14327543 -cluster_of_differentiation_4 n 1 1 @ 1 0 14888529 -cluster_of_differentiation_8 n 1 1 @ 1 0 14888720 -clustered_bellflower n 1 1 @ 1 0 12038406 -clustered_lady's_slipper n 1 1 @ 1 0 12057895 -clustered_poppy_mallow n 1 1 @ 1 0 12175598 -clustering n 1 3 @ ~ + 1 0 07959943 -clutch n 7 5 @ ~ #p %p + 7 2 00812526 14032737 08400870 08400452 03055418 03055159 03054901 -clutch_bag n 1 1 @ 1 0 03055418 -clutch_pedal n 1 2 @ #p 1 0 03055159 -clutches n 1 2 @ ~ 1 1 00812526 -clutter n 2 3 @ ~ + 2 0 14500567 07263745 -clyde n 1 2 @ #p 1 0 09247942 -clyde_tombaugh n 1 1 @ 1 0 11345539 -clyde_william_tombaugh n 1 1 @ 1 0 11345539 -clydesdale n 1 1 @ 1 0 02386968 -clydesdale_terrier n 1 1 @ 1 0 02097967 -clypeus n 1 2 @ #p 1 0 01903631 -clyster n 1 2 @ ~ 1 0 00695944 -clytemnestra n 1 2 @ ; 1 0 09595545 -clytocybe_alba n 1 2 @ #m 1 0 13021543 -cm n 2 3 @ #p %p 2 1 13658828 14636220 -cmb n 1 2 @ ; 1 0 11441077 -cmbr n 1 2 @ ; 1 0 11441077 -cmv n 1 1 @ 1 0 01339801 -cn_gas n 1 2 @ ~ 1 0 14604038 -cn_tower n 1 2 @ #p 1 0 03055537 -cnemidophorus n 1 3 @ #m %m 1 0 01685679 -cnemidophorus_exsanguis n 1 1 @ 1 0 01686403 -cnemidophorus_sexlineatus n 1 1 @ 1 0 01686044 -cnemidophorus_tesselatus n 1 1 @ 1 0 01686808 -cnemidophorus_tigris n 1 1 @ 1 0 01686609 -cnemidophorus_velox n 1 1 @ 1 0 01686220 -cnicus n 1 3 @ #m %m 1 0 11955398 -cnicus_benedictus n 1 2 @ #m 1 0 11955532 -cnidaria n 1 3 @ #m %m 1 0 01909111 -cnidarian n 1 4 @ ~ #m %p 1 0 01909422 -cnidoscolus n 1 3 @ #m %m 1 0 12924984 -cnidoscolus_urens n 1 2 @ #m 1 0 12925179 -cnidosporidia n 1 3 @ #m %m 1 0 01426784 -cnossos n 1 1 @ 1 0 08784581 -cnossus n 1 1 @ 1 0 08784581 -cnpz n 1 2 @ ; 1 0 08035233 -cns n 1 4 @ #p %s %p 1 0 05480794 -cnut n 1 1 @ 1 0 10881382 -co n 4 5 @ ~ #s #p %p 4 0 14797641 14635290 09957013 09067277 -co-beneficiary n 1 1 @ 1 0 09933972 -co-defendant n 1 2 @ ~ 1 0 09933411 -co-discoverer n 1 1 @ 1 0 09934085 -co-ed n 1 1 @ 1 0 09934213 -co-occurrence n 2 3 @ ~ + 2 0 07284554 05048301 -co-op n 1 1 @ 1 0 01100877 -co-operative_republic_of_guyana n 1 5 @ #m #p %m %p 1 0 08948346 -co-optation n 2 2 @ + 2 1 00181191 00164999 -co-option n 2 2 @ + 2 0 00181191 00164999 -co-ordinate n 1 2 @ ~ 1 0 06010930 -co-pilot n 1 2 @ #m 1 0 09964202 -co-respondent n 1 1 @ 1 0 09965625 -co-star n 1 2 @ + 1 0 09967967 -co-worker n 1 1 @ 1 1 09936215 -co2 n 1 2 @ ~ 1 0 14796969 -coach n 5 7 @ ~ #m %p + ; - 5 1 09931640 09931418 03895866 03055670 02924116 -coach-and-four n 1 3 @ ~ %p 1 0 03055670 -coach_dog n 1 2 @ ~ 1 0 02110341 -coach_horse n 1 1 @ 1 0 02387887 -coach_house n 1 1 @ 1 0 03055857 -coach_station n 1 1 @ 1 0 02926288 -coachbuilder n 1 1 @ 1 0 09932227 -coaching n 1 2 @ + 1 1 00270800 -coaching_job n 1 1 @ 1 1 00270800 -coachman n 1 1 @ 1 0 09932336 -coachwhip n 2 2 @ #m 2 0 12381931 01731764 -coachwhip_snake n 1 1 @ 1 0 01731764 -coaction n 1 2 @ + 1 0 01205156 -coadjutor n 1 1 @ 1 0 09610093 -coagulant n 1 2 @ + 1 0 14815728 -coagulase n 1 2 @ ~ 1 0 14735953 -coagulation n 1 3 @ ~ + 1 0 13454479 -coagulation_factor n 1 2 @ ~ 1 0 15022776 -coagulator n 1 2 @ + 1 0 14815728 -coagulum n 1 3 @ ~ + 1 0 05402091 -coahuila n 1 2 @ #p 1 0 08743003 -coal n 2 4 @ ~ %s + 2 1 14814616 09273130 -coal-tar_creosote n 1 1 @ 1 0 14825631 -coal_black n 1 1 @ 1 0 04960582 -coal_car n 1 1 @ 1 0 03056097 -coal_chute n 1 1 @ 1 0 03056215 -coal_gas n 1 2 @ ~ 1 0 14685475 -coal_house n 1 1 @ 1 0 03056288 -coal_industry n 1 1 @ 1 0 08067460 -coal_mine n 1 2 @ #p 1 0 03056368 -coal_miner n 1 1 @ 1 0 09932508 -coal_miner's_lung n 1 1 @ 1 0 14150210 -coal_oil n 1 2 @ ~ 1 0 14687633 -coal_scuttle n 1 1 @ 1 0 04158002 -coal_seam n 1 2 @ %p 1 0 08659242 -coal_shovel n 1 1 @ 1 0 03056493 -coal_tar n 1 2 @ %s 1 0 14911899 -coal_tongs n 1 2 @ ; 1 0 03347472 -coalbin n 1 1 @ 1 0 03056010 -coalescence n 1 2 @ + 1 1 00382109 -coalescency n 1 2 @ + 1 0 00382109 -coalface n 1 2 @ #p 1 0 08659331 -coalfield n 1 1 @ 1 0 08659663 -coalhole n 1 1 @ 1 0 03056010 -coaling_station n 1 1 @ 1 0 08639367 -coalition n 3 4 @ ~ %m + 3 1 08293982 14418662 00382109 -coalman n 1 1 @ 1 0 09932429 -coalpit n 1 2 @ #p 1 0 03056368 -coaming n 1 1 @ 1 0 03056583 -coarctation n 2 2 @ ; 2 0 07313518 05071185 -coarseness n 4 3 @ ~ + 4 0 07072838 04949256 04948722 04817280 -coast n 4 4 @ ~ %p + 4 1 09428293 09248153 05934029 00328502 -coast_banksia n 1 1 @ 1 0 12215824 -coast_boykinia n 1 2 @ #m 1 0 12796385 -coast_lily n 1 1 @ 1 0 12427946 -coast_live_oak n 1 1 @ 1 0 12269406 -coast_mountains n 1 3 @ #p %p 1 0 09248477 -coast_polypody n 1 1 @ 1 0 13173488 -coast_range n 1 3 @ #p %p 1 0 09248477 -coast_redwood n 1 2 @ #m 1 0 11641034 -coast_rhododendron n 1 1 @ 1 0 12244458 -coast_white_cedar n 1 2 @ #m 1 0 11635152 -coastal_diving_bird n 1 3 @ ~ #m 1 0 02040505 -coastal_plain n 1 2 @ ~ 1 0 09248294 -coastal_rein_orchid n 1 1 @ 1 0 12066821 -coaster n 3 2 @ + 3 0 09932706 09932616 03056701 -coaster_brake n 1 2 @ #p 1 0 03056873 -coaster_wagon n 1 1 @ 1 0 04543509 -coastguard n 1 4 @ ~ %m ; 1 0 08192361 -coastguardsman n 1 2 @ #m 1 0 09932788 -coastland n 1 1 @ 1 0 09248399 -coastline n 1 1 @ 1 0 08613000 -coat n 3 5 @ ~ #p %p + 3 2 03057021 03058107 01898731 -coat-of-mail_shell n 1 2 @ #m 1 0 01955084 -coat_button n 1 2 @ #p 1 0 03057541 -coat_closet n 1 1 @ 1 0 03057636 -coat_hanger n 1 2 @ %p 1 0 03057920 -coat_of_arms n 1 4 @ ~ %p ; 1 0 03058726 -coat_of_mail n 1 3 @ ~ %p 1 0 02862048 -coat_of_paint n 1 2 @ ~ 1 0 03058949 -coat_rack n 1 1 @ 1 0 03059103 -coat_stand n 1 1 @ 1 0 03051396 -coat_tree n 1 1 @ 1 0 03051396 -coatdress n 1 1 @ 1 0 03057724 -coatee n 1 1 @ 1 0 03057841 -coati n 1 2 @ #m 1 0 02509515 -coati-mondi n 1 2 @ #m 1 0 02509515 -coati-mundi n 1 2 @ #m 1 0 02509515 -coating n 4 3 @ ~ + 4 1 03058107 04700642 03058603 00712225 -coatrack n 1 1 @ 1 0 03059103 -coatroom n 1 1 @ 1 0 03045800 -coats_land n 1 2 @ #p 1 0 08541454 -coattail n 1 2 @ #p 1 1 03059236 -coattails_effect n 1 2 @ ; 1 0 11412993 -coauthor n 1 1 @ 1 0 09932892 -coax n 1 3 @ ~ + 1 0 03059366 -coax_cable n 1 2 @ ~ 1 0 03059366 -coaxer n 1 2 @ + 1 0 10775379 -coaxial_cable n 1 2 @ ~ 1 0 03059366 -coaxing n 1 2 @ + 1 0 06696025 -cob n 4 3 @ #m #p 4 0 07772788 02386141 02041875 01858780 -cobalamin n 1 1 @ 1 0 15091304 -cobalt n 1 3 @ ~ #s 1 0 14635290 -cobalt_60 n 1 1 @ 1 0 14635542 -cobalt_bloom n 1 1 @ 1 0 14674776 -cobalt_blue n 2 1 @ 2 1 04969798 14671744 -cobalt_ultramarine n 1 1 @ 1 0 14671744 -cobaltite n 1 2 @ %s 1 0 14671895 -cobber n 1 1 @ 1 0 09933020 -cobble n 1 2 @ + 1 0 03059528 -cobbler n 3 3 @ ~ + 3 1 09933098 07913774 07625831 -cobbler's_last n 1 1 @ 1 0 03644532 -cobblers n 2 2 @ ; 2 0 06608405 05525100 -cobblestone n 1 1 @ 1 0 03059528 -cobbling n 1 2 @ + 1 0 00617865 -cobia n 1 2 @ #m 1 0 02574271 -cobitidae n 1 3 @ #m %m 1 0 01438461 -cobnut n 2 2 @ #p 2 0 12289433 07772788 -cobol n 1 1 @ 1 0 06902611 -cobra n 1 2 @ ~ 1 0 01747885 -cobweb n 3 2 @ + 3 0 03059934 03059806 03059685 -coca n 3 4 @ #m %s ; 3 0 12690046 10903413 03060074 -coca_cola n 1 1 @ 1 1 07928696 -coca_plant n 1 2 @ #m 1 0 12690046 -cocain n 1 4 @ ~ #s + 1 0 03060294 -cocaine n 1 3 @ ~ #s 1 1 03060294 -cocaine_addict n 1 1 @ 1 0 09933235 -cocaine_addiction n 1 1 @ 1 0 14064984 -cocarboxylase n 1 1 @ 1 0 14800138 -cocci n 1 2 @ ~ 1 0 01350855 -coccid_insect n 1 3 @ ~ #m 1 0 02248368 -coccidae n 1 3 @ #m %m 1 0 02248744 -coccidia n 1 3 @ #m %m 1 0 01422835 -coccidioidomycosis n 1 1 @ 1 1 14147014 -coccidiomycosis n 1 1 @ 1 0 14147014 -coccidiosis n 1 2 @ ; 1 1 14453290 -coccidium n 1 2 @ #m 1 0 01423302 -coccinellidae n 1 3 @ #m %m 1 0 02165247 -coccobacillus n 1 2 @ ~ 1 0 01350994 -coccoidea n 1 3 @ #m %m 1 0 02248147 -coccothraustes n 1 3 @ #m %m 1 0 01540697 -coccothraustes_coccothraustes n 1 2 @ #m 1 0 01540832 -cocculus n 1 3 @ #m %m 1 0 11713628 -cocculus_carolinus n 1 2 @ #m 1 0 11713763 -coccus n 1 3 @ ~ + 1 0 01350855 -coccus_hesperidum n 1 2 @ #m 1 0 02249134 -coccygeal_nerve n 1 1 @ 1 0 05569577 -coccygeal_plexus n 1 1 @ 1 0 05506832 -coccygeal_vertebra n 1 2 @ #p 1 0 05589756 -coccyx n 1 4 @ #p %p + 1 0 05274247 -coccyzus n 1 3 @ #m %m 1 0 01823610 -coccyzus_erythropthalmus n 1 2 @ #m 1 0 01823740 -cochimi n 2 1 @ 2 0 09653014 06922485 -cochin n 1 1 @ 1 0 01790812 -cochin_china n 1 1 @ 1 0 01790812 -cochineal n 2 2 @ #m 2 0 14987025 02250280 -cochineal_insect n 1 2 @ #m 1 0 02250280 -cochise n 1 1 @ 1 0 10903570 -cochlea n 1 3 @ #p %p 1 0 05326624 -cochlearia n 1 3 @ #m %m 1 0 11883799 -cochlearia_officinalis n 1 2 @ #m 1 0 11883945 -cochlearius n 1 3 @ #m %m 1 0 02011156 -cochlearius_cochlearius n 1 2 @ #m 1 0 02011281 -cochon_de_lait n 1 1 @ 1 0 07669098 -cochran n 1 1 @ 1 0 10903722 -cock n 5 5 @ ~ #p + ; 5 0 05526713 04327682 03481824 01792158 01514668 -cock's_eggs n 1 2 @ #m 1 0 12912274 -cock-a-doodle-doo n 1 1 @ 1 0 07381231 -cock-a-leekie n 1 1 @ 1 0 07585644 -cock-and-bull_story n 1 1 @ 1 0 06757289 -cock_of_the_rock n 2 2 @ #m 2 0 01551300 01551080 -cock_sucking n 1 2 @ ; 1 0 00855301 -cockade n 1 1 @ 1 0 03060599 -cockaigne n 1 2 @ ; 1 0 05627385 -cockateel n 1 2 @ #m 1 0 01819734 -cockatiel n 1 2 @ #m 1 0 01819734 -cockatoo n 1 3 @ ~ #m 1 1 01819115 -cockatoo_parrot n 1 2 @ #m 1 0 01819734 -cockatrice n 1 1 @ 1 0 09494149 -cockchafer n 1 2 @ #m 1 0 02174659 -cockcroft n 1 1 @ 1 0 10903918 -cockcroft-walton_accelerator n 1 1 @ 1 0 03060728 -cockcroft-walton_voltage_multiplier n 1 1 @ 1 0 03060728 -cockcroft_and_walton_accelerator n 1 1 @ 1 0 03060728 -cockcroft_and_walton_voltage_multiplier n 1 1 @ 1 0 03060728 -cockcrow n 1 1 @ 1 0 15168790 -cocked_hat n 1 2 @ ~ 1 0 03061050 -cocker n 1 1 @ 1 0 02102318 -cocker_spaniel n 1 1 @ 1 0 02102318 -cockerel n 1 1 @ 1 0 01792429 -cockfight n 1 1 @ 1 0 07466195 -cockfighting n 1 2 @ - 1 0 00452152 -cockhorse n 1 1 @ 1 0 03061211 -cockiness n 1 2 @ + 1 0 05167412 -cockle n 2 4 @ ~ #m #p 2 0 07787613 01959985 -cockle-bur n 1 2 @ #m 1 0 12033139 -cockle-burr n 1 2 @ #m 1 0 12033139 -cocklebur n 2 2 @ #m 2 0 12033139 11924849 -cockleburr n 1 2 @ #m 1 0 12033139 -cockleshell n 1 1 @ 1 0 03061345 -cockloft n 1 1 @ 1 0 03061428 -cockney n 2 2 @ + 2 0 09704770 06948017 -cockpit n 3 4 @ #p %p ; 3 1 03061505 03061819 03061674 -cockroach n 1 3 @ ~ #m 1 1 02233338 -cockscomb n 4 2 @ #p 4 0 11825351 09973490 03061893 01792255 -cocksfoot n 1 1 @ 1 0 12116429 -cockspur n 2 2 @ #m 2 0 12116429 11841247 -cockspur_hawthorn n 1 2 @ #m 1 0 12627347 -cockspur_thorn n 1 2 @ #m 1 0 12627347 -cocksucker n 2 2 @ ; 2 0 09933324 09815188 -cocksureness n 1 2 @ + 1 0 05697789 -cocktail n 2 2 @ ~ 2 0 07911677 07581775 -cocktail_dress n 1 1 @ 1 0 03062015 -cocktail_lounge n 1 1 @ 1 0 03062122 -cocktail_party n 1 1 @ 1 1 07448608 -cocktail_sauce n 1 1 @ 1 0 07837110 -cocktail_shaker n 1 1 @ 1 0 03062245 -cocktail_table n 1 1 @ 1 0 03063968 -cockup n 1 2 @ ; 1 0 00075618 -cocky-leeky n 1 1 @ 1 0 07585644 -coco n 1 3 @ #m %p 1 0 12587803 -coco_de_macao n 1 3 @ #m %p 1 0 12592544 -coco_palm n 1 3 @ #m %p 1 1 12587803 -coco_plum n 2 4 @ #m #p %p 2 0 12625003 07758407 -coco_plum_tree n 1 3 @ #m %p 1 0 12625003 -cocoa n 2 4 @ ~ #s %s 2 0 07922764 07755089 -cocoa_bean n 1 2 @ #s 1 0 07754894 -cocoa_butter n 2 2 @ #s 2 0 14864731 07602996 -cocoa_palm n 1 3 @ #m %p 1 0 12587803 -cocoa_plum n 2 4 @ #m #p %p 2 0 12625003 07758407 -cocoa_powder n 1 2 @ ~ 1 0 07603177 -cocoanut n 1 3 @ #p %s 1 0 07772935 -cocobolo n 1 3 @ #m %s 1 0 12523850 -coconspirator n 1 4 @ ~ #m + 1 0 09958892 -coconut n 3 7 @ ~ #m #s #p %s %p 3 2 07773238 07772935 12587803 -coconut_cake n 1 1 @ 1 0 07630398 -coconut_cream n 1 1 @ 1 0 07840672 -coconut_macaroon n 1 1 @ 1 0 07636779 -coconut_meat n 1 3 @ ~ #s 1 0 07773238 -coconut_milk n 2 2 @ #s 2 0 07840672 07773428 -coconut_oil n 1 2 @ #s 1 0 07674161 -coconut_palm n 1 3 @ #m %p 1 0 12587803 -coconut_tree n 1 3 @ #m %p 1 0 12587803 -coconut_water n 1 2 @ #s 1 0 07773428 -cocoon n 1 2 @ + 1 1 02312744 -cocooning n 1 1 @ 1 0 01201906 -cocopa n 2 1 @ 2 0 09653144 06922579 -cocopah n 2 1 @ 2 0 09653144 06922579 -cocos n 1 3 @ #m %m 1 0 12587686 -cocos_nucifera n 1 3 @ #m %p 1 0 12587803 -cocoswood n 1 2 @ #s 1 0 11749273 -cocotte n 2 2 @ ~ 2 0 10485440 03062336 -cocoyam n 2 3 @ #s #p 2 0 11786843 07736813 -cocozelle n 2 3 @ #p %p 2 0 12159942 07716649 -cocteau n 1 1 @ 1 0 10904107 -cocus n 1 2 @ ; 1 0 09574926 -cocuswood n 1 2 @ #s 1 0 11749273 -cocytus n 1 3 @ #p ; 1 0 09248724 -cod n 3 5 @ ~ #m #p + 3 0 13140049 07789063 02522399 -cod-liver_oil n 1 2 @ ~ 1 0 14815867 -cod_liver_oil n 1 2 @ ~ 1 0 14815867 -cod_oil n 1 1 @ 1 0 14816064 -coda n 1 2 @ #p 1 0 07039478 -codariocalyx n 1 3 @ #m %m 1 0 12517820 -codariocalyx_motorius n 1 2 @ #m 1 0 12518013 -coddled_egg n 1 2 @ ~ 1 0 07841495 -coddler n 1 2 @ + 1 0 10395390 -code n 3 4 @ ~ + ; 3 2 06667317 06353934 06355894 -code_flag n 1 2 @ ~ 1 0 06875392 -code_of_behavior n 1 2 @ ~ 1 1 05668095 -code_of_conduct n 1 2 @ ~ 1 1 05668095 -codefendant n 1 2 @ ~ 1 0 09933411 -codeine n 1 1 @ 1 0 03062461 -coder n 1 4 @ ~ + ; 1 0 10481268 -codetalker n 1 1 @ 1 0 09933613 -codex n 2 1 @ 2 0 06489560 06407372 -codfish n 2 4 @ ~ #m #p 2 0 07789063 02522399 -codfish_ball n 1 1 @ 1 0 07865575 -codfish_cake n 1 1 @ 1 0 07865575 -codger n 1 1 @ 1 0 09933842 -codiaeum n 1 3 @ #m %m 1 0 12923439 -codiaeum_variegatum n 1 2 @ #m 1 0 12923652 -codicil n 1 3 @ #p ; 1 0 06544657 -codification n 2 3 @ ~ + 2 2 01009507 06667317 -coding n 1 3 @ ~ + 1 0 00614489 -coding_dna n 1 1 @ 1 0 14830992 -coding_system n 1 2 @ ~ 1 0 06353757 -codlin_moth n 1 2 @ #m 1 0 02285179 -codling n 1 2 @ + 1 0 02522637 -codling_moth n 1 2 @ #m 1 0 02285179 -codlins-and-cream n 1 1 @ 1 0 12343092 -codon n 1 1 @ 1 0 14816401 -codpiece n 1 2 @ #p 1 0 03062651 -codswallop n 1 2 @ ; 1 0 06611998 -cody n 1 1 @ 1 0 10904270 -coeducation n 1 1 @ 1 0 00884202 -coefficient n 1 2 @ ~ 1 1 13586122 -coefficient_of_absorption n 1 1 @ 1 0 13586455 -coefficient_of_concordance n 1 2 @ ; 1 0 06035014 -coefficient_of_correlation n 1 3 @ ~ ; 1 0 06032246 -coefficient_of_drag n 1 1 @ 1 0 13586831 -coefficient_of_elasticity n 1 3 @ ~ ; 1 0 13587963 -coefficient_of_expansion n 1 1 @ 1 0 13588625 -coefficient_of_friction n 1 1 @ 1 0 13587030 -coefficient_of_mutual_induction n 1 1 @ 1 0 13587236 -coefficient_of_reflection n 1 1 @ 1 0 13588819 -coefficient_of_self_induction n 1 1 @ 1 0 13587525 -coefficient_of_viscosity n 1 1 @ 1 0 13589140 -coelacanth n 1 2 @ #m 1 0 02515713 -coelenterata n 1 3 @ #m %m 1 0 01909111 -coelenterate n 1 4 @ ~ #m %p 1 0 01909422 -coelenterate_family n 1 3 @ ~ #m 1 0 01908287 -coelenterate_genus n 1 3 @ ~ #m 1 0 01908415 -coelenteron n 1 2 @ #p 1 0 01905543 -coeliac_plexus n 1 2 @ #p 1 0 05508735 -coeloglossum n 1 3 @ #m %m 1 0 12052053 -coeloglossum_bracteatum n 1 2 @ #m 1 0 12052267 -coeloglossum_viride n 1 2 @ #m 1 0 12052447 -coelogyne n 1 2 @ #m 1 0 12052787 -coelom n 1 1 @ 1 0 05606801 -coelophysis n 1 2 @ #m 1 0 01713170 -coelostat n 1 1 @ 1 0 03062798 -coenobite n 1 2 @ + 1 0 10519291 -coenzyme n 1 2 @ ~ 1 0 14800277 -coenzyme_a n 1 1 @ 1 0 14800539 -coenzyme_q n 1 2 @ ; 1 0 15082890 -coercion n 2 3 @ ~ + 2 0 01127245 00156812 -coereba n 1 3 @ #m %m 1 0 01539136 -coerebidae n 1 3 @ #m %m 1 0 01538775 -coeur_d'alene n 2 2 @ #p 2 0 09653295 09081688 -coeur_d'alene_lake n 1 2 @ #p 1 0 09243100 -coeval n 1 2 @ + 1 0 09960417 -coevals n 1 2 @ ~ 1 0 08369406 -coexistence n 1 2 @ + 1 1 13957268 -coextension n 1 1 @ 1 0 05133748 -cofactor n 1 1 @ 1 0 14800706 -coffea n 1 3 @ #m %m 1 0 12662654 -coffea_arabica n 1 1 @ 1 0 12663023 -coffea_canephora n 1 1 @ 1 0 12663359 -coffea_liberica n 1 1 @ 1 0 12663254 -coffea_robusta n 1 1 @ 1 0 12663359 -coffee n 4 7 @ ~ #m #s #p %s %p 4 1 07929519 12662772 07929351 04972451 -coffee-table_book n 1 1 @ 1 0 03064118 -coffee_bar n 1 2 @ ~ 1 0 02935658 -coffee_bean n 1 3 @ #s #p 1 0 07929351 -coffee_berry n 1 3 @ #s #p 1 0 07929351 -coffee_blight n 1 1 @ 1 0 14216793 -coffee_break n 1 1 @ 1 1 07577918 -coffee_cake n 1 2 @ ~ 1 0 07630512 -coffee_can n 1 1 @ 1 0 03062985 -coffee_cappuccino n 1 1 @ 1 0 07920349 -coffee_cream n 1 1 @ 1 0 07847917 -coffee_cup n 1 3 @ ~ %p 1 1 03063073 -coffee_fern n 1 2 @ #m 1 0 13212025 -coffee_filter n 1 1 @ 1 0 03063199 -coffee_fungus n 1 2 @ #m 1 0 13016289 -coffee_grinder n 1 1 @ 1 0 03063485 -coffee_grounds n 1 2 @ ; 1 0 09248914 -coffee_liqueur n 1 2 @ ~ 1 0 07909129 -coffee_maker n 1 2 @ ~ 1 0 03063338 -coffee_mill n 1 1 @ 1 0 03063485 -coffee_mug n 1 1 @ 1 0 03063599 -coffee_ring n 1 1 @ 1 0 07691424 -coffee_roll n 1 2 @ ~ 1 0 07692614 -coffee_rose n 1 2 @ #m 1 0 11776511 -coffee_royal n 1 1 @ 1 0 07929940 -coffee_senna n 1 1 @ 1 0 12500751 -coffee_shop n 1 2 @ ~ 1 1 02935658 -coffee_stall n 1 1 @ 1 0 03063834 -coffee_substitute n 1 2 @ ~ 1 0 07731122 -coffee_table n 1 1 @ 1 0 03063968 -coffee_tree n 1 4 @ ~ #m %p 1 0 12662772 -coffee_urn n 1 1 @ 1 0 03064250 -coffeeberry n 1 1 @ 1 0 13142182 -coffeecake n 1 2 @ ~ 1 0 07630512 -coffeehouse n 1 2 @ ~ 1 1 02935658 -coffeepot n 1 3 @ ~ %p 1 1 03063689 -coffer n 2 1 @ 2 0 03064443 03064350 -cofferdam n 1 1 @ 1 0 02937093 -coffey_still n 1 2 @ #p 1 0 03064562 -coffin n 1 3 @ ~ + 1 1 03064758 -coffin_nail n 1 3 @ ~ %p 1 0 03030663 -cofounder n 1 1 @ 1 0 09610173 -cog n 2 3 @ #p + 2 0 09934337 03064935 -cog_railway n 1 1 @ 1 0 03065063 -cogency n 2 2 @ + 2 0 13794793 04783567 -cogent_evidence n 1 2 @ ~ 1 0 05824739 -cogitation n 2 3 @ ~ + 2 0 05835568 05784242 -cognac n 1 1 @ 1 0 07903841 -cognate n 2 2 @ + 2 0 10236114 06289074 -cognate_word n 1 1 @ 1 0 06289074 -cognation n 2 2 @ ; 2 0 13814755 13813591 -cognisance n 1 4 @ ~ = + 1 0 05675905 -cognition n 1 2 @ ~ 1 0 00023271 -cognitive_content n 1 2 @ ~ 1 0 05809192 -cognitive_factor n 1 2 @ ~ 1 0 05686481 -cognitive_neuroscience n 1 2 @ #p 1 0 06082136 -cognitive_neuroscientist n 1 1 @ 1 0 09934488 -cognitive_operation n 1 3 @ ~ ; 1 0 05701363 -cognitive_process n 1 3 @ ~ ; 1 0 05701363 -cognitive_psychology n 1 3 @ ~ #p 1 0 06138582 -cognitive_science n 1 2 @ %p 1 0 06142861 -cognitive_scientist n 1 2 @ ~ 1 0 09934647 -cognitive_semantics n 1 1 @ 1 0 06180548 -cognitive_state n 1 2 @ ~ 1 0 05669934 -cognizance n 3 5 ! @ ~ = + 3 1 05675905 05805157 05710481 -cognomen n 2 2 @ ~ 2 0 06337693 06336904 -cognoscente n 1 2 @ ~ 1 0 09956387 -cognovit_judgement n 1 2 @ ; 1 0 01188273 -cognovit_judgment n 1 2 @ ; 1 0 01188273 -cogwheel n 1 3 @ ~ %p 1 0 03430551 -cohabitation n 1 3 @ ~ + 1 0 01054876 -cohan n 1 1 @ 1 0 10904463 -coherence n 2 4 ! @ ~ + 2 0 14420464 04821277 -coherency n 2 3 @ ~ + 2 0 14420464 04821277 -cohesion n 3 4 @ ~ + ; 3 1 14420464 13449714 11436585 -cohesiveness n 2 3 @ ~ + 2 1 14420464 04935904 -cohn n 1 1 @ 1 0 10904639 -coho n 2 4 @ #m #p %p 2 0 07796468 02536864 -coho_salmon n 2 4 @ #m #p %p 2 0 07796468 02536864 -cohoe n 2 4 @ #m #p %p 2 0 07796468 02536864 -cohort n 3 2 @ ~ 3 0 08251213 08251104 07943480 -cohosh n 1 4 @ ~ #m %p 1 0 11723770 -cohune n 1 3 @ #m %p 1 0 12593122 -cohune-nut_oil n 1 2 @ #s 1 0 12593508 -cohune_fat n 1 2 @ #s 1 0 12593508 -cohune_nut n 1 3 @ #p %s 1 0 12593341 -cohune_oil n 1 2 @ #s 1 0 12593508 -cohune_palm n 1 3 @ #m %p 1 0 12593122 -coif n 2 4 @ ~ %p + 2 0 05256862 03065243 -coiffeur n 1 1 @ 1 0 09934774 -coiffeuse n 1 1 @ 1 0 09934846 -coiffure n 1 4 @ ~ %p + 1 0 05256862 -coign n 2 1 @ 2 0 04036004 04035912 -coigne n 2 1 @ 2 0 04036004 04035912 -coigue n 1 2 @ #m 1 0 12266644 -coil n 6 3 @ ~ + 6 1 03065424 13875970 03066232 03066130 03066029 03065708 -coil_spring n 1 1 @ 1 0 03066359 -coin n 1 4 @ ~ %p + 1 1 13388245 -coin_bank n 1 2 @ ~ 1 0 04139859 -coin_blank n 1 1 @ 1 0 03954393 -coin_box n 1 2 @ #p 1 0 03066464 -coin_collecting n 1 1 @ 1 0 01015996 -coin_collection n 2 1 @ 2 0 07954863 01015996 -coin_collector n 1 1 @ 1 0 10366779 -coin_machine n 1 3 @ ~ %p 1 0 04243941 -coin_silver n 1 1 @ 1 0 14816613 -coin_slot n 1 2 @ #p 1 0 03066606 -coinage n 3 3 @ ~ + 3 0 13387877 06294441 00940560 -coincidence n 3 3 @ ~ + 3 1 07316999 05077661 05048301 -coiner n 3 3 @ + ; 3 0 09935233 09935107 09934921 -coinsurance n 1 2 @ + 1 0 13346209 -coir n 1 1 @ 1 0 12588054 -coition n 1 3 @ ~ %p 1 0 00845523 -coitus n 1 4 @ ~ %p + 1 0 00845523 -coitus_interruptus n 1 1 @ 1 0 00849059 -coke n 3 2 @ + 3 0 14685768 07928696 03066743 -col n 1 2 @ ~ 1 0 09249034 -cola n 2 6 @ ~ #m %m %s ; 2 0 12197211 07927931 -cola_acuminata n 1 4 @ #m %s %p 1 0 12197359 -cola_extract n 1 2 @ #s 1 0 07774479 -cola_nut n 1 3 @ #s #p 1 0 12197601 -colander n 1 1 @ 1 0 03066849 -colaptes n 1 3 @ #m %m 1 0 01839470 -colaptes_auratus n 1 1 @ 1 0 01839750 -colaptes_caper_collaris n 1 1 @ 1 0 01840120 -colaptes_chrysoides n 1 1 @ 1 0 01839949 -colbert n 1 1 @ 1 0 07837234 -colbert_butter n 1 1 @ 1 0 07837234 -colchicaceae n 1 2 @ #m 1 0 12455101 -colchicine n 1 1 @ 1 0 03066965 -colchicum n 1 3 @ #m %m 1 0 12455342 -colchicum_autumnale n 1 2 @ #m 1 0 12455540 -colchis n 1 2 @ ; 1 0 09015653 -cold n 3 4 @ ~ %p + 3 2 14145501 05015117 05725676 -cold-water_flat n 1 1 @ 1 0 03067810 -cold_cash n 1 1 @ 1 0 13422684 -cold_cathode n 1 1 @ 1 0 03067093 -cold_cereal n 1 2 @ ~ 1 0 07704755 -cold_chisel n 1 1 @ 1 0 03067212 -cold_comfort n 1 1 @ 1 0 07492928 -cold_cream n 1 1 @ 1 0 03067339 -cold_cuts n 1 2 @ ~ 1 0 07654438 -cold_duck n 1 1 @ 1 0 07893792 -cold_feet n 1 1 @ 1 0 07523016 -cold_fish n 1 1 @ 1 0 09935351 -cold_frame n 1 1 @ 1 1 03067518 -cold_front n 1 2 @ ~ 1 0 11460829 -cold_fusion n 1 1 @ 1 0 13449892 -cold_gangrene n 1 2 @ ; 1 0 14313661 -cold_medicine n 1 1 @ 1 0 03067690 -cold_rubber n 1 1 @ 1 0 15007190 -cold_shoulder n 1 2 @ + 1 0 01225997 -cold_snap n 1 1 @ 1 0 15246683 -cold_sore n 1 1 @ 1 0 14132375 -cold_spell n 1 1 @ 1 0 15246683 -cold_storage n 2 1 @ 2 0 14013549 00811825 -cold_stuffed_tomato n 1 1 @ 1 0 07878926 -cold_sweat n 1 2 @ #p 1 1 14405774 -cold_turkey n 2 1 @ 2 0 07140237 00229034 -cold_war n 2 2 ! @ 2 1 13982000 13982156 -cold_water n 1 1 @ 1 0 06718269 -cold_wave n 1 1 @ 1 0 11439924 -cold_weather n 1 2 @ ~ 1 1 11440012 -coldcream n 1 1 @ 1 0 03067339 -coldheartedness n 1 3 @ ~ + 1 0 07506149 -coldness n 3 4 ! @ ~ + 3 2 05725676 04629604 05015117 -cole n 2 3 @ ~ #m 2 0 11876976 07714078 -cole_albert_porter n 1 1 @ 1 0 11243268 -cole_porter n 1 1 @ 1 0 11243268 -coleman_hawkins n 1 1 @ 1 0 11035017 -coleonyx n 1 3 @ #m %m 1 0 01675599 -coleoptera n 1 3 @ #m %m 1 0 02163982 -coleridge n 1 3 @ #m + 1 1 10904821 -coleslaw n 1 1 @ 1 0 07808587 -colette n 1 1 @ 1 0 10904992 -coleus n 1 3 @ ~ #m 1 0 12844939 -coleus_amboinicus n 1 1 @ 1 0 12845187 -coleus_aromaticus n 1 1 @ 1 0 12845187 -coleus_blumei n 1 1 @ 1 0 12845413 -colewort n 1 3 @ ~ #m 1 0 11876976 -colic n 1 3 @ ~ + 1 0 14325732 -colic_artery n 1 2 @ #p 1 0 05343408 -colic_root n 1 3 @ ~ #m 1 0 12430198 -colic_vein n 1 1 @ 1 0 05364345 -colicroot n 1 3 @ ~ #m 1 0 12430198 -colima n 1 2 @ #p 1 0 09174015 -colin_luther_powell n 1 1 @ 1 0 11245110 -colin_powell n 1 1 @ 1 0 11245110 -colinus n 1 3 @ #m %m 1 0 01804340 -colinus_virginianus n 1 1 @ 1 0 01804653 -coliphage n 1 1 @ 1 0 01335218 -coliseum n 1 3 @ ~ %p 1 0 02704949 -colitis n 1 2 @ ~ 1 0 14341091 -collaboration n 2 2 @ + 2 1 01205156 01205341 -collaborationism n 1 2 @ + 1 0 01205341 -collaborationist n 1 2 @ + 1 0 09935793 -collaborator n 3 3 @ ~ + 3 1 09953483 09935793 09935434 -collage n 2 2 @ ~ 2 1 03067912 07954946 -collage_film n 1 1 @ 1 0 06615818 -collagen n 1 3 @ #s + 1 0 05287090 -collagenase n 1 1 @ 1 0 14736079 -collapse n 4 3 @ ~ + 4 3 14066203 07361128 00327510 07477945 -collapsible_shelter n 1 3 @ ~ %p 1 0 04411264 -collar n 9 6 @ ~ #p %p + ; 9 1 03068181 04680752 03068998 03068862 03068707 03068486 03024882 01145688 00088725 -collar_blight n 1 1 @ 1 0 14216888 -collar_cell n 1 1 @ 1 0 01907287 -collarbone n 1 3 @ #p %p 1 0 05274105 -collard n 1 1 @ 1 0 11877193 -collard_greens n 1 1 @ 1 0 07714188 -collards n 1 1 @ 1 0 07714188 -collared_lizard n 1 2 @ #m 1 0 01679626 -collared_peccary n 1 1 @ 1 0 02397744 -collared_pika n 1 2 @ #m 1 0 02328942 -collateral n 1 3 @ ~ + 1 0 13352865 -collateral_damage n 1 2 @ ; 1 0 07361863 -collateral_fraud n 1 1 @ 1 0 00778017 -collation n 3 3 @ ~ + 3 0 07577374 01014607 00651531 -colleague n 2 2 @ + 2 2 09936215 09935990 -collect n 1 1 @ 1 0 07189633 -collect_call n 1 1 @ 1 0 06273294 -collectable n 1 2 @ ~ 1 0 03069213 -collectible n 1 2 @ ~ 1 0 03069213 -collecting n 1 3 @ ~ + 1 0 01014066 -collection n 4 3 @ ~ + 4 4 07951464 06591442 06513764 01014066 -collection_plate n 1 1 @ 1 0 03960374 -collective n 1 3 @ ~ + 1 1 08056601 -collective_agreement n 1 2 @ ~ 1 0 06526961 -collective_bargaining n 1 1 @ 1 0 07150023 -collective_farm n 1 2 @ ~ 1 0 08056747 -collective_noun n 1 1 @ 1 0 06319575 -collective_security n 1 1 @ 1 0 14540220 -collectivisation n 1 2 @ + 1 0 01152787 -collectivism n 2 3 @ ~ + 2 0 08368308 06214580 -collectivist n 1 3 @ ~ + 1 0 10619176 -collectivization n 1 2 @ + 1 0 01152787 -collector n 4 5 @ ~ #p + ; 4 3 09936620 09936362 09249155 03069381 -collector's_item n 1 2 @ ~ 1 0 03069567 -collector_of_internal_revenue n 1 1 @ 1 0 10693052 -colleen n 1 1 @ 1 0 09936825 -college n 3 6 @ ~ #m #p %m + 3 1 08278169 08278324 03069752 -college_boy n 1 2 @ ~ 1 0 09937056 -college_girl n 1 1 @ 1 1 09934213 -college_level n 1 1 @ 1 1 14431338 -college_man n 1 2 @ ~ 1 0 09937056 -college_of_cardinals n 1 4 @ #p %m ; 1 0 08085824 -college_student n 1 2 @ ~ 1 1 09936892 -collegian n 1 2 @ ~ 1 1 09937056 -collegiate_dictionary n 1 1 @ 1 0 06419354 -collembola n 1 3 @ #m %m 1 0 02163144 -collembolan n 1 2 @ #m 1 0 02163297 -collet n 3 2 @ #p 3 0 03329536 03070059 03069919 -collet_chuck n 1 1 @ 1 0 03070059 -collider n 1 3 @ ~ + 1 0 03070193 -collie n 1 1 @ 1 0 02106030 -collier n 1 1 @ 1 0 09932508 -colliery n 1 2 @ %p 1 0 03070396 -colligation n 2 3 @ ~ + 2 0 14420954 05764197 -collimation n 1 2 @ + 1 0 01000276 -collimator n 2 3 @ #p + 2 0 03070854 03070587 -collins n 2 1 @ 2 0 10905159 07913882 -collinsia n 1 3 @ #m %m 1 0 12881429 -collinsia_bicolor n 1 2 @ #m 1 0 12881631 -collinsia_heterophylla n 1 2 @ #m 1 0 12881631 -collinsia_parviflora n 1 2 @ #m 1 0 12881913 -collinsia_verna n 1 2 @ #m 1 0 12882158 -collinsonia n 1 3 @ #m %m 1 0 12844220 -collinsonia_canadensis n 1 2 @ #m 1 0 12844409 -collis_potter_huntington n 1 1 @ 1 0 11067184 -collision n 3 4 @ ~ + ; 3 1 07302542 07301543 07183000 -collision_course n 2 1 @ 2 0 09249272 00038863 -collocalia n 1 3 @ #m %m 1 0 01832979 -collocalia_inexpectata n 1 2 @ #m 1 0 01833112 -collocation n 2 3 @ ~ + 2 0 07015151 01051801 -collodion n 1 1 @ 1 0 14795263 -colloid n 1 4 @ ~ + - 1 0 14588219 -colloidal_gel n 1 2 @ ~ 1 0 14590542 -colloidal_solution n 1 1 @ 1 0 14590795 -colloidal_suspension n 1 1 @ 1 0 14590795 -colloquialism n 1 2 @ - 1 0 07075172 -colloquium n 2 2 @ ~ 2 0 08327906 07239327 -colloquy n 2 1 @ 2 0 07143044 07137733 -collotype n 1 2 @ ~ 1 0 06679726 -collotype_printing n 1 2 @ ~ 1 0 06679726 -collusion n 2 3 @ ~ + 2 1 05795244 07176962 -collyrium n 1 1 @ 1 0 03309214 -collywobbles n 1 1 @ 1 0 14172383 -colobus n 1 3 @ ~ #m 1 0 02488702 -colobus_guereza n 1 1 @ 1 0 02488894 -colobus_monkey n 1 3 @ ~ #m 1 0 02488702 -colocasia n 1 3 @ #m %m 1 0 11786365 -colocasia_esculenta n 1 3 @ #m %p 1 0 11786539 -cologne n 2 3 @ #m #p 2 0 08772307 03071021 -cologne_water n 1 1 @ 1 0 03071021 -colombia n 1 7 @ #m #p %m %p + - 1 0 08732116 -colombian n 1 3 @ #m + 1 0 09698517 -colombian_monetary_unit n 1 2 @ ~ 1 0 13691651 -colombian_peso n 1 2 @ %p 1 0 13691764 -colombo n 1 2 @ #p 1 0 08719465 -colon n 5 5 @ ~ #p %p + 5 1 05535869 13667643 13667372 08739669 06842660 -colon_cancer n 1 1 @ 1 0 14247239 -colonel n 1 3 @ ~ ; 1 1 09937250 -colonel_blimp n 2 2 @ ; 2 0 09937489 09592147 -colonial n 1 3 @ #m + 1 1 09937688 -colonialism n 1 3 @ ~ + 1 0 00426526 -colonialist n 1 2 @ + 1 0 09937802 -colonic n 1 3 @ ~ + 1 0 00696147 -colonic_irrigation n 1 2 @ ~ 1 0 00696147 -colonisation n 1 3 @ ~ + 1 0 01252280 -coloniser n 1 3 @ ~ + 1 0 09937903 -colonist n 1 3 @ ~ + 1 0 10583387 -colonization n 1 3 @ ~ + 1 0 01252280 -colonizer n 1 3 @ ~ + 1 0 09937903 -colonnade n 2 3 @ ~ %p 2 0 03071160 02733213 -colonoscope n 1 1 @ 1 0 03071288 -colonoscopy n 1 1 @ 1 0 00642446 -colony n 6 7 @ ~ #p %m %p + ; 6 2 08374049 07995856 09048460 08514233 08499840 07996010 -colophon n 1 1 @ 1 0 03071431 -colophony n 1 1 @ 1 0 14896128 -color n 8 7 ! @ ~ %m = + ; 8 5 04956594 05193338 04988478 07968354 04677952 14984973 05844663 04674968 -color-blind_person n 1 2 @ ~ 1 0 09610255 -color_bar n 1 1 @ 1 0 05692234 -color_bearer n 1 2 @ ; 1 1 09938272 -color_blindness n 1 3 @ ~ + 1 0 14153010 -color_chart n 1 2 @ ~ 1 0 07001446 -color_circle n 1 1 @ 1 0 07001547 -color_code n 1 1 @ 1 0 06355078 -color_constancy n 1 1 @ 1 0 05709343 -color_force n 1 2 @ ; 1 0 11516819 -color_guard n 1 1 @ 1 0 09938449 -color_line n 1 1 @ 1 0 05692234 -color_of_law n 1 2 @ ; 1 0 04678401 -color_property n 1 2 @ ~ 1 0 04974968 -color_scheme n 1 1 @ 1 1 07964144 -color_sergeant n 1 1 @ 1 1 09938554 -color_spectrum n 1 2 @ #p 1 0 11523369 -color_television n 1 3 @ ~ %p 1 0 03072201 -color_television_system n 1 3 @ ~ %p 1 0 03072201 -color_television_tube n 1 3 @ ~ #p 1 0 03072440 -color_tube n 1 3 @ ~ #p 1 0 03072440 -color_tv n 1 3 @ ~ %p 1 1 03072201 -color_tv_tube n 1 3 @ ~ #p 1 0 03072440 -color_vision n 1 1 @ 1 0 05656294 -color_vision_deficiency n 1 2 @ ~ 1 0 14153010 -color_wash n 1 1 @ 1 0 03072682 -color_wheel n 1 1 @ 1 0 07001547 -coloradan n 1 1 @ 1 0 09741816 -coloradillo n 1 1 @ 1 0 12668131 -colorado n 3 3 @ #p %p 3 1 09067277 09250016 09249418 -colorado_beetle n 1 2 @ #m 1 0 02169974 -colorado_blue_spruce n 1 1 @ 1 0 11626585 -colorado_desert n 1 2 @ #p 1 0 09168915 -colorado_fir n 1 1 @ 1 0 11621727 -colorado_four_o'clock n 1 1 @ 1 0 11840476 -colorado_plateau n 1 3 @ #p %p 1 0 09250165 -colorado_potato_beetle n 1 2 @ #m 1 0 02169974 -colorado_river n 2 2 @ #p 2 0 09250016 09249418 -colorado_river_hemp n 1 1 @ 1 0 12569616 -colorado_springs n 1 2 @ #p 1 0 09067878 -colorado_spruce n 1 1 @ 1 0 11626585 -coloration n 3 3 @ ~ + 3 0 04988478 04975988 00161739 -coloratura n 2 2 @ ~ 2 1 09938080 00546299 -coloratura_soprano n 1 2 @ ~ 1 0 09938080 -colorcast n 1 1 @ 1 0 06620790 -colored n 1 3 @ + ; 1 0 09637512 -colored_audition n 1 1 @ 1 0 05721019 -colored_hearing n 1 1 @ 1 0 05721019 -colored_person n 1 2 @ ; 1 0 09637512 -colorimeter n 1 2 @ + 1 0 03071552 -colorimetric_analysis n 1 1 @ 1 0 00647536 -colorimetry n 1 2 @ + 1 0 00647536 -coloring n 3 4 @ ~ = + 3 0 07567139 04956594 00274941 -coloring_book n 1 1 @ 1 0 03071782 -coloring_material n 1 2 @ ~ 1 0 14984973 -colorist n 1 2 @ + 1 0 09938672 -colorlessness n 1 4 ! @ ~ + 1 0 04958634 -colors n 2 3 @ ~ ; 2 1 03071923 03072056 -colossae n 1 2 @ #p 1 0 08701555 -colosseum n 1 2 @ #p 1 0 03072828 -colossian n 1 2 @ ~ 1 0 09938851 -colossians n 1 2 @ #p 1 0 06444711 -colossus n 2 2 @ + 2 0 10128909 09938991 -colossus_of_rhodes n 1 2 @ #m 1 0 03073016 -colostomy n 1 2 @ %p 1 0 00668552 -colostrum n 1 1 @ 1 0 05399356 -colour n 8 6 @ ~ %m = + ; 8 0 14984973 07968354 05844663 05193338 04988478 04956594 04677952 04674968 -colour_bar n 1 1 @ 1 0 05692234 -colour_blindness n 1 2 @ ~ 1 0 14153010 -colour_constancy n 1 1 @ 1 0 05709343 -colour_line n 1 1 @ 1 0 05692234 -colour_of_law n 1 2 @ ; 1 0 04678401 -colour_scheme n 1 1 @ 1 0 07964144 -colour_supplement n 1 2 @ ; 1 0 06596179 -colour_television n 1 3 @ ~ %p 1 0 03072201 -colour_television_system n 1 3 @ ~ %p 1 0 03072201 -colour_television_tube n 1 3 @ ~ #p 1 0 03072440 -colour_tube n 1 3 @ ~ #p 1 0 03072440 -colour_tv n 1 3 @ ~ %p 1 0 03072201 -colour_tv_tube n 1 3 @ ~ #p 1 0 03072440 -colour_vision_deficiency n 1 2 @ ~ 1 0 14153010 -colour_wash n 1 1 @ 1 0 03072682 -colouration n 3 2 @ ~ 3 0 04988478 04975988 00161739 -colourcast n 1 1 @ 1 0 06620790 -colouring n 3 4 @ ~ = + 3 0 07567139 04956594 00274941 -colouring_material n 1 2 @ ~ 1 0 14984973 -colourlessness n 1 3 @ ~ + 1 0 04958634 -colours n 2 3 @ ~ ; 2 0 03072056 03071923 -colpitis n 1 1 @ 1 0 14341253 -colpocele n 1 2 @ ~ 1 0 14295691 -colpocystitis n 1 1 @ 1 0 14341334 -colpocystocele n 1 1 @ 1 0 14296966 -colpoxerosis n 1 1 @ 1 0 14058456 -colt n 2 3 @ ~ ; 2 2 02376791 03073296 -coltan n 1 1 @ 1 0 14672373 -colter n 1 2 @ #p 1 0 03073384 -coltsfoot n 2 2 @ #m 2 0 12251278 12029635 -coluber n 1 3 @ #m %m 1 0 01730679 -coluber_constrictor n 1 2 @ ~ 1 0 01730960 -coluber_constrictor_flaviventris n 1 1 @ 1 0 01731137 -coluber_hippocrepis n 1 2 @ #m 1 0 01731277 -colubrid n 1 3 @ ~ #m 1 0 01727646 -colubrid_snake n 1 3 @ ~ #m 1 0 01727646 -colubridae n 1 3 @ #m %m 1 0 01726960 -colubrina n 1 3 @ #m %m 1 0 13142695 -colugo n 1 3 @ ~ #m 1 0 02502514 -columba n 2 3 @ #m %m 2 0 09250551 01812471 -columba_fasciata n 1 2 @ #m 1 0 01812866 -columba_livia n 1 2 @ #m 1 0 01812662 -columba_palumbus n 1 2 @ #m 1 0 01813088 -columbarium n 3 1 @ 3 0 03228692 03073694 03073545 -columbary n 1 1 @ 1 0 03228692 -columbia n 5 3 @ #m #p 5 0 09250678 09140674 09138358 09106502 03073832 -columbia_river n 1 2 @ #p 1 0 09250678 -columbia_tiger_lily n 1 1 @ 1 0 12427391 -columbia_university n 1 3 @ #m #p 1 0 03073832 -columbian_mammoth n 1 1 @ 1 0 02505238 -columbidae n 1 3 @ #m %m 1 0 01811682 -columbiform_bird n 1 3 @ ~ #m 1 0 01810700 -columbiformes n 1 3 @ #m %m 1 0 01810466 -columbine n 1 3 @ ~ #m 1 1 11727091 -columbite n 1 2 @ %s 1 0 14683859 -columbite-tantalite n 1 1 @ 1 0 14672373 -columbium n 1 1 @ 1 0 14647154 -columbo n 1 2 @ #m 1 0 12292877 -columbus n 4 4 @ #p %p + 4 1 09131001 10905315 09104604 09077410 -columbus_day n 1 2 @ #p 1 0 15190895 -columella n 1 1 @ 1 0 13900914 -column n 9 7 @ ~ #m #p %p + ; 9 7 08429052 03074574 08433575 13900422 06268567 03074380 03073977 06268357 05585999 -column_chromatography n 1 1 @ 1 1 13450070 -column_inch n 1 1 @ 1 0 13713300 -columnar_cell n 1 2 @ ~ 1 0 05242070 -columnar_epithelial_cell n 1 2 @ ~ 1 0 05242070 -columnea n 1 2 @ #m 1 0 12831535 -columniation n 1 2 @ ; 1 0 05076069 -columnist n 1 3 @ ~ + 1 1 09939154 -colutea n 1 3 @ #m %m 1 0 12518305 -colutea_arborescens n 1 2 @ #m 1 0 12518481 -colymbiformes n 1 3 @ #m %m 1 0 02049299 -colza n 1 3 @ #m %s 1 0 11879722 -colza_oil n 1 2 @ #s 1 0 11880032 -coma n 3 5 @ ~ #p + ; 3 1 05680193 13090395 09251002 -coma_berenices n 1 1 @ 1 0 09251229 -comanche n 2 1 @ 2 0 09653438 06914930 -comandra n 1 3 @ #m %m 1 0 12736064 -comandra_pallida n 1 2 @ #m 1 0 12736228 -comatoseness n 1 3 @ ~ + 1 0 05680193 -comatula n 1 1 @ 1 0 02321062 -comatulid n 1 2 @ #m 1 0 02321170 -comatulidae n 1 1 @ 1 0 02320769 -comb n 5 5 @ ~ #p %p + 5 2 03074855 01792255 03075097 01921440 00256746 -comb-footed_spider n 1 2 @ #m 1 0 01774097 -comb-out n 2 2 @ + 2 0 00256961 00090610 -comb-plate n 1 2 @ #p 1 0 01918585 -comb_jelly n 1 4 @ ~ #m %p 1 0 01918744 -combat n 2 6 @ ~ #p %p + ; 2 2 00964343 01170962 -combat_area n 1 4 @ ~ #p ; 1 0 08688590 -combat_boot n 1 1 @ 1 0 02925666 -combat_casualty n 1 2 @ ; 1 0 07339808 -combat_ceiling n 1 1 @ 1 0 05132962 -combat_fatigue n 1 1 @ 1 0 14388596 -combat_injury n 1 3 @ ~ ; 1 0 07340249 -combat_intelligence n 1 2 @ ~ 1 0 00982347 -combat_mission n 1 1 @ 1 1 00970903 -combat_neurosis n 1 1 @ 1 0 14388596 -combat_pay n 1 1 @ 1 0 13279809 -combat_pilot n 1 3 @ ~ ; 1 0 09939827 -combat_ship n 1 5 @ ~ #m %p ; 1 0 04552696 -combat_zone n 2 4 @ ~ #p ; 2 0 08689646 08688590 -combatant n 1 3 @ ~ + 1 0 09939313 -combativeness n 1 3 @ ~ + 1 0 04837615 -comber n 3 1 @ 3 0 09940026 07352617 03075248 -combination n 7 4 @ ~ + ; 7 1 07963711 08373723 08373544 08272961 07964495 00870453 00378985 -combination_in_restraint_of_trade n 1 2 @ ; 1 1 07964809 -combination_lock n 1 1 @ 1 0 03075370 -combination_plane n 1 1 @ 1 0 03075500 -combination_salad n 1 2 @ ~ 1 0 07807317 -combine n 3 3 @ ~ + 3 1 03075634 08236621 07373803 -combined_dna_index_system n 1 1 @ 1 0 06509075 -combined_operation n 1 2 @ ; 1 0 00955565 -combing n 1 3 @ ~ + 1 0 00256746 -combining n 2 3 @ ~ + 2 0 07373803 00378985 -combining_form n 1 2 @ - 1 0 06307152 -combining_weight n 1 1 @ 1 0 05026508 -combo n 1 1 @ 1 1 08250302 -combretaceae n 1 3 @ #m %m 1 0 12323411 -combretum n 1 2 @ #m 1 0 12324056 -combretum_appiculatum n 1 2 @ #m 1 0 12324388 -combretum_bracteosum n 1 2 @ #m 1 0 12324222 -combretum_erythrophyllum n 1 2 @ #m 1 0 12324558 -combretum_family n 1 3 @ #m %m 1 0 12323411 -combtooth_blenny n 1 3 @ ~ #m 1 0 02613181 -combustibility n 1 2 @ ~ 1 0 04712405 -combustible n 1 2 @ + 1 0 14816745 -combustible_material n 1 1 @ 1 0 14816745 -combustibleness n 1 2 @ ~ 1 0 04712405 -combustion n 3 3 @ ~ + 3 1 13450206 13978914 00378069 -come n 1 3 @ ~ %p 1 0 05404336 -come-on n 2 1 @ 2 0 05695232 04689660 -comeback n 2 3 @ ~ + 2 1 07199922 00051077 -comedian n 2 2 @ ~ 2 1 09940146 09940725 -comedienne n 2 2 @ ~ 2 0 09940987 09940818 -comedo n 1 2 @ #p 1 0 05245775 -comedown n 1 1 @ 1 0 00273601 -comedy n 2 4 ! @ ~ + 2 2 07015510 06781383 -comedy_ballet n 1 1 @ 1 0 00529902 -comeliness n 1 2 @ + 1 0 04685396 -comenius n 1 1 @ 1 0 10905568 -comer n 2 3 @ ~ + 2 1 09941089 09810166 -comer_vann_woodward n 1 1 @ 1 0 11396535 -comestible n 1 3 @ ~ + 1 0 07556637 -comet n 1 4 @ %p + ; 1 1 09251407 -comeupance n 1 1 @ 1 0 07294423 -comeuppance n 1 1 @ 1 0 07294423 -comfit n 1 1 @ 1 0 07604956 -comfort n 7 5 ! @ ~ = + 7 3 14445379 07492516 01211667 14491889 13987219 04033995 01211185 -comfort_food n 1 1 @ 1 0 07556406 -comfort_station n 1 2 @ ~ 1 0 04018667 -comfort_woman n 1 1 @ 1 0 09941172 -comfort_zone n 1 1 @ 1 0 05725879 -comfortableness n 2 4 @ ~ = + 2 0 14445379 07530000 -comforter n 4 3 @ ~ + 4 0 10686313 10518349 04033995 03075768 -comforts n 1 1 @ 1 1 13366137 -comfrey n 2 4 @ ~ #m #p 2 0 12822769 07817160 -comic n 1 3 @ ~ + 1 0 09940146 -comic_book n 1 2 @ %p 1 1 06596364 -comic_opera n 1 2 @ ~ 1 0 07026646 -comic_strip n 1 3 @ #p %p 1 0 07003352 -comicality n 1 2 @ + 1 0 05210717 -coming n 4 3 @ ~ + 4 2 00280853 00048828 05046471 00062133 -coming_attraction n 1 1 @ 1 0 06615927 -coming_back n 1 1 @ 1 0 07447022 -coming_into_court n 1 1 @ 1 0 01233627 -coming_together n 2 2 @ ~ 2 0 01230965 00146856 -coming_upon n 1 1 @ 1 0 00147187 -comint n 1 1 @ 1 0 00983287 -comity n 1 2 @ ~ 1 0 13969854 -comity_of_nations n 1 1 @ 1 0 13969988 -comma n 2 2 @ #m 2 0 06842852 02278024 -comma_bacillus n 1 2 @ #m 1 0 01364329 -comma_butterfly n 1 2 @ #m 1 0 02278024 -command n 7 5 @ ~ #p + ; 7 6 07168131 08190292 05197797 04719376 13953608 05641959 06584891 -command_guidance n 1 1 @ 1 0 00817017 -command_key n 1 2 @ ; 1 0 03097673 -command_language n 1 1 @ 1 0 06899446 -command_line n 1 1 @ 1 0 06586355 -command_line_interface n 1 1 @ 1 0 06575505 -command_module n 1 1 @ 1 0 03075946 -command_overhead n 1 3 @ #p ; 1 0 15298011 -command_post n 1 2 @ ; 1 0 03076104 -command_processing_overhead n 1 3 @ #p ; 1 0 15298011 -command_processing_overhead_time n 1 3 @ #p ; 1 0 15298011 -command_prompt n 1 2 @ ; 1 0 06280604 -command_sergeant_major n 1 1 @ 1 0 10581278 -commandant n 1 4 @ ~ + ; 1 0 09941964 -commander n 4 4 @ ~ + ; 4 2 09941964 09941383 09941571 09780828 -commander_in_chief n 1 1 @ 1 0 09941787 -commandership n 1 2 @ + 1 0 00590626 -commandery n 1 1 @ 1 0 00590626 -commanding_officer n 1 3 @ ~ ; 1 1 09941964 -commandment n 2 3 @ ~ + 2 1 07169848 06185955 -commando n 2 3 @ ~ ; 2 1 09942275 08404373 -commedia_dell'arte n 1 1 @ 1 0 07015928 -commelina n 1 2 @ #m 1 0 12606438 -commelinaceae n 1 3 @ #m %m 1 0 12605965 -commelinales n 1 3 @ #m %m 1 0 12605019 -commelinidae n 1 3 @ #m %m 1 0 11668952 -commemoration n 2 3 @ ~ + 2 0 07452841 06688522 -commemorative n 1 1 @ 1 0 09251689 -commencement n 3 4 @ ~ %p + 3 0 15265518 07454758 00235435 -commencement_ceremony n 1 2 @ %p 1 0 07454758 -commencement_day n 1 1 @ 1 0 15158691 -commencement_exercise n 1 2 @ %p 1 0 07454758 -commendation n 2 3 @ ~ + 2 0 06706125 06686736 -commensal n 1 2 @ + 1 0 01386182 -commensalism n 1 1 @ 1 0 13842241 -commensurateness n 1 2 @ + 1 0 13817279 -comment n 3 3 @ ~ + 3 2 06765044 06762711 07223170 -commentary n 1 3 @ ~ + 1 1 06762711 -commentator n 2 3 @ ~ + 2 1 10369528 09942431 -commerce n 3 6 @ ~ %p = + - 3 1 01090446 08129268 07137622 -commerce_department n 1 2 @ %p 1 0 08129268 -commerce_secretary n 2 2 @ #m 2 0 10570961 00600435 -commercial n 1 3 @ ~ + 1 1 07250034 -commercial_activity n 1 3 @ ~ #p 1 0 01095753 -commercial_agency n 1 1 @ 1 0 08354842 -commercial_art n 1 1 @ 1 1 03076298 -commercial_artist n 1 1 @ 1 0 09942587 -commercial_bank n 1 2 @ ~ 1 0 08418420 -commercial_bribery n 1 1 @ 1 0 00776581 -commercial_credit n 1 1 @ 1 0 13379619 -commercial_credit_company n 1 1 @ 1 0 08421807 -commercial_document n 1 2 @ ~ 1 0 06472025 -commercial_enterprise n 2 5 @ ~ #p %p - 2 1 08065093 01094725 -commercial_finance_company n 1 1 @ 1 0 08421807 -commercial_instrument n 1 2 @ ~ 1 0 06472025 -commercial_law n 1 2 @ ; 1 0 08455037 -commercial_letter_of_credit n 1 1 @ 1 0 13380004 -commercial_loan n 1 1 @ 1 0 13374764 -commercial_message n 1 2 @ ~ 1 0 07250034 -commercial_paper n 1 1 @ 1 0 13414849 -commercial_traveler n 1 2 @ ~ 1 0 10726786 -commercial_traveller n 1 2 @ ~ 1 0 10726786 -commercial_treaty n 1 1 @ 1 0 06773857 -commercialisation n 1 2 @ + 1 0 00951781 -commercialism n 1 5 @ ~ %p = - 1 1 01090446 -commercialization n 1 2 @ + 1 1 00951781 -commie n 1 2 @ ~ 1 1 09945319 -commination n 2 1 @ 2 0 07189779 06733682 -comminuted_fracture n 1 1 @ 1 0 14292571 -commiphora n 1 3 @ #m %m 1 0 12692323 -commiphora_meccanensis n 1 2 @ #m 1 0 12692521 -commiphora_myrrha n 1 3 @ #m %s 1 0 12692714 -commiseration n 2 2 @ + 2 1 07553964 06633692 -commissaire_maigret n 1 1 @ 1 0 09600764 -commissar n 1 1 @ 1 0 09942697 -commissariat n 1 2 @ ~ 1 0 07572353 -commissary n 2 3 @ ~ ; 2 1 03076411 03076623 -commission n 9 5 @ ~ %m + ; 9 3 08324514 13320860 01140471 14009274 08402442 07169480 06478988 00773235 00731222 -commission_on_human_rights n 1 1 @ 1 0 08297284 -commission_on_narcotic_drugs n 1 1 @ 1 0 08297464 -commission_on_the_status_of_women n 1 1 @ 1 0 08297646 -commission_plan n 1 1 @ 1 0 08225853 -commissionaire n 1 2 @ ; 1 0 09942871 -commissioned_military_officer n 1 3 @ ~ ; 1 0 09943239 -commissioned_naval_officer n 1 3 @ ~ ; 1 0 09943541 -commissioned_officer n 1 3 @ ~ ; 1 0 09942970 -commissioner n 2 4 @ ~ #m + 2 1 09943811 09944022 -commissioning n 1 3 @ ~ + 1 0 01140471 -commissure n 1 2 @ ~ 1 0 05476094 -commitment n 5 3 @ ~ + 5 3 04646990 01206153 01239868 06684383 01165692 -committal n 2 2 @ + 2 0 01165692 00773235 -committal_service n 1 1 @ 1 0 01034233 -committal_to_memory n 1 2 @ ~ 1 0 05755156 -committal_to_writing n 1 2 @ ~ 1 0 00614224 -committedness n 1 3 @ ~ + 1 0 04646990 -committee n 2 4 @ ~ %m + 2 2 08324514 08325686 -committee_for_state_security n 1 1 @ 1 0 08485434 -committee_meeting n 1 1 @ 1 0 08308039 -committee_member n 1 3 @ ~ #m 1 1 09944160 -committeeman n 1 1 @ 1 1 09944337 -committeewoman n 1 1 @ 1 0 09944430 -commixture n 1 2 @ + 1 0 00380083 -commode n 2 4 @ ~ #p %p 2 0 04446521 03016953 -commodiousness n 1 3 @ ~ + 1 0 05105265 -commodities_exchange n 1 3 @ ~ %p 1 0 03077074 -commodities_market n 1 3 @ ~ %p 1 0 03077074 -commodity n 1 2 @ ~ 1 1 03076708 -commodity_brokerage n 1 1 @ 1 0 08070236 -commodity_exchange n 1 3 @ ~ %p 1 0 03077074 -commodore n 1 3 @ ~ ; 1 0 09945021 -commodore_john_barry_bridge n 1 2 @ #p 1 0 03077304 -commodore_perry n 1 1 @ 1 0 11230158 -commodore_vanderbilt n 1 1 @ 1 0 11359187 -common n 1 4 @ ~ #p + 1 1 08615374 -common-law_marriage n 1 2 @ ; 1 0 13964879 -common_ageratum n 1 1 @ 1 0 11918473 -common_alder n 1 2 @ #m 1 0 12284821 -common_allamanda n 1 1 @ 1 0 11769803 -common_american_shad n 1 2 @ %p 1 0 02530637 -common_amsinckia n 1 2 @ #m 1 0 12816942 -common_apricot n 1 3 @ #m %p 1 0 12641007 -common_arrowhead n 1 1 @ 1 0 12612640 -common_ax n 1 1 @ 1 0 03077442 -common_axe n 1 1 @ 1 0 03077442 -common_bamboo n 1 3 @ #m %p 1 0 12147835 -common_barberry n 1 1 @ 1 0 11698042 -common_barley n 1 2 @ %p 1 0 12123450 -common_basil n 1 2 @ %p 1 0 12860542 -common_bean n 2 5 @ ~ #m #p %p 2 0 12556793 07726796 -common_bean_plant n 1 4 @ ~ #m %p 1 0 12556793 -common_bearberry n 1 1 @ 1 0 12231358 -common_beech n 1 2 @ #m 1 0 12261359 -common_beet n 1 3 @ ~ #m 1 0 11832214 -common_bile_duct n 1 3 @ #p %p 1 0 05386845 -common_birch n 1 2 @ #m 1 0 12282527 -common_bird_cherry n 1 3 @ #m %p 1 0 12647560 -common_blackfish n 1 2 @ #m 1 0 02071636 -common_bog_rosemary n 1 1 @ 1 0 12229887 -common_booklouse n 1 2 @ #m 1 0 02261757 -common_box n 1 1 @ 1 0 12746253 -common_brant_goose n 1 1 @ 1 0 01857512 -common_broom n 1 2 @ #m 1 0 12521394 -common_burdock n 1 1 @ 1 0 11924661 -common_buttercup n 1 1 @ 1 0 11721124 -common_calamint n 1 1 @ 1 0 12843144 -common_camas n 1 2 @ #m 1 0 12449526 -common_canary n 1 1 @ 1 0 01533481 -common_caper n 1 2 @ %p 1 0 11865874 -common_cardinal_vein n 1 1 @ 1 0 05360297 -common_carline_thistle n 1 1 @ 1 0 11945783 -common_carotid n 1 1 @ 1 0 05339583 -common_carotid_artery n 1 1 @ 1 0 05339583 -common_carrier n 1 2 @ ~ 1 0 08057633 -common_chickweed n 1 1 @ 1 0 11818069 -common_chord n 1 1 @ 1 0 06870211 -common_cockscomb n 1 1 @ 1 0 11825351 -common_cold n 1 3 @ ~ %p 1 0 14145501 -common_comfrey n 1 2 @ %p 1 0 12822955 -common_coral_tree n 1 1 @ 1 0 12528549 -common_corn_salad n 1 1 @ 1 0 12950796 -common_cotton_grass n 1 1 @ 1 0 12152722 -common_daisy n 1 1 @ 1 0 11939699 -common_dandelion n 1 2 @ %p 1 0 12024445 -common_denominator n 2 1 @ 2 0 13735476 04617441 -common_devil's_claw n 1 2 @ #m 1 0 12875269 -common_divisor n 1 2 @ ~ 1 0 13734992 -common_dogbane n 1 1 @ 1 0 11767630 -common_dolphin n 1 2 @ #m 1 0 02069412 -common_duckweed n 1 2 @ #m 1 0 11795049 -common_eel n 1 3 @ #m %p 1 0 02526818 -common_eland n 1 2 @ #m 1 0 02427032 -common_elder n 1 1 @ 1 0 12679201 -common_era n 1 1 @ 1 0 15249096 -common_european_ash n 1 1 @ 1 0 12304703 -common_european_dogwood n 1 1 @ 1 0 12948053 -common_european_earwig n 1 2 @ #m 1 0 02273392 -common_european_jay n 1 1 @ 1 0 01580490 -common_evening_primrose n 1 1 @ 1 0 12344483 -common_facial_vein n 1 1 @ 1 0 05364448 -common_factor n 1 2 @ ~ 1 0 13734992 -common_fate n 1 1 @ 1 0 06249685 -common_fault n 1 1 @ 1 0 09372313 -common_fennel n 2 3 @ #p %p 2 0 12939282 07817758 -common_fig n 1 3 @ ~ %p 1 0 12401684 -common_fig_tree n 1 3 @ ~ %p 1 0 12401684 -common_flat_pea n 1 2 @ #m 1 0 12562141 -common_four-o'clock n 1 1 @ 1 0 11839823 -common_foxglove n 1 1 @ 1 0 12882945 -common_fraction n 1 2 @ ~ 1 0 13732295 -common_front n 1 1 @ 1 0 08471589 -common_garden_cress n 1 3 @ #m %p 1 0 11890507 -common_garter_snake n 1 1 @ 1 0 01735439 -common_ginger n 1 2 @ %p 1 0 12356023 -common_good n 1 1 @ 1 0 05159854 -common_grape_hyacinth n 1 1 @ 1 0 12460957 -common_grape_vine n 1 4 @ ~ #m %p 1 0 13145444 -common_ground n 1 1 @ 1 0 13791122 -common_gum_cistus n 1 2 @ %s 1 0 12374862 -common_heath n 2 1 @ 2 0 12253664 12253487 -common_hop n 1 1 @ 1 0 12398174 -common_hops n 1 1 @ 1 0 12398174 -common_horehound n 1 1 @ 1 0 12854193 -common_horsetail n 1 1 @ 1 0 13219833 -common_hyacinth n 1 1 @ 1 0 12458550 -common_iguana n 1 2 @ #m 1 0 01677366 -common_iliac_artery n 1 1 @ 1 1 05347359 -common_iliac_vein n 1 1 @ 1 0 05369924 -common_ivy n 1 2 @ #m 1 0 11798978 -common_jasmine n 1 1 @ 1 0 12307240 -common_juniper n 1 2 @ %p 1 0 11638109 -common_kingsnake n 1 1 @ 1 0 01734637 -common_knowledge n 1 2 @ ~ 1 0 05612241 -common_laburnum n 1 2 @ #m 1 0 12538380 -common_lady's-slipper n 1 1 @ 1 0 12056758 -common_land n 1 1 @ 1 0 08542304 -common_law n 2 3 @ ; - 2 1 06535035 08453722 -common_lettuce n 1 3 @ #m %p 1 0 11986511 -common_lilac n 1 1 @ 1 0 12311579 -common_limpet n 1 2 @ #m 1 0 01949085 -common_logarithm n 1 1 @ 1 0 06812915 -common_louse n 1 2 @ #m 1 0 02184473 -common_lynx n 1 1 @ 1 0 02127292 -common_mackerel n 1 3 @ #m %p 1 0 02624551 -common_madia n 1 2 @ #m 1 0 11994336 -common_maidenhair n 1 1 @ 1 0 13207094 -common_mallow n 1 2 @ #m 1 0 12171316 -common_man n 1 2 @ ~ 1 1 09610405 -common_marigold n 1 1 @ 1 0 11943660 -common_market n 1 2 @ %m 1 0 08173515 -common_matrimony_vine n 1 1 @ 1 0 12905135 -common_measure n 3 2 @ ~ 3 0 15264010 13734992 07094731 -common_meter n 1 1 @ 1 0 07094731 -common_milkwort n 1 1 @ 1 0 12706410 -common_mood n 1 1 @ 1 0 13801700 -common_moonseed n 1 2 @ #m 1 0 11713370 -common_moonwort n 1 1 @ 1 0 12961112 -common_morel n 1 2 @ #m 1 0 13032381 -common_morning_glory n 2 1 @ 2 0 12827068 12826895 -common_mosquito n 1 2 @ #m 1 0 02202006 -common_mugwort n 1 1 @ 1 0 11931540 -common_mullein n 1 1 @ 1 0 12889713 -common_multiple n 1 1 @ 1 0 13735355 -common_murre n 1 1 @ 1 0 02047411 -common_myrtle n 1 2 @ #m 1 0 12330587 -common_nardoo n 1 1 @ 1 0 12957803 -common_newt n 1 2 @ #m 1 0 01630670 -common_nightshade n 1 2 @ ~ 1 0 12896307 -common_noun n 1 3 ! @ ~ 1 0 06320153 -common_nuisance n 1 1 @ 1 0 05831566 -common_nutcracker n 1 1 @ 1 0 01581874 -common_oak n 1 1 @ 1 0 12277578 -common_opossum n 1 1 @ 1 0 01875313 -common_osier n 1 2 @ #m 1 0 12731029 -common_pea n 1 3 @ #m %p 1 0 12560420 -common_people n 1 3 @ ~ %m 1 0 07947255 -common_pepper n 1 4 @ #m %s %p 1 0 13149506 -common_person n 1 2 @ ~ 1 0 09610405 -common_pitcher_plant n 1 2 @ #m 1 0 12779851 -common_plantain n 1 1 @ 1 0 12599435 -common_plum n 1 1 @ 1 0 12639584 -common_polypody n 1 1 @ 1 0 13173882 -common_pond-skater n 1 2 @ #m 1 0 02243878 -common_privet n 1 1 @ 1 0 12309277 -common_purslane n 1 2 @ #m 1 0 11858077 -common_raccoon n 1 1 @ 1 0 02508213 -common_racoon n 1 1 @ 1 0 02508213 -common_ragweed n 1 1 @ 1 0 11919761 -common_reed n 1 2 @ #m 1 0 12130937 -common_room n 1 2 @ ; 1 0 03077616 -common_rorqual n 1 2 @ #m 1 0 02065026 -common_rose_mallow n 1 1 @ 1 0 12178896 -common_roundworm n 1 2 @ #m 1 0 01930852 -common_rush n 1 2 @ #m 1 0 11743772 -common_sage n 1 2 @ %p 1 0 12865824 -common_salt n 2 4 @ ~ #s %s 2 0 14672023 07813107 -common_scold n 1 2 @ ~ 1 0 10561861 -common_scoter n 1 1 @ 1 0 01853666 -common_scurvy_grass n 1 2 @ #m 1 0 11883945 -common_seal n 1 2 @ #m 1 0 02079851 -common_sense n 1 3 @ ~ + 1 1 05614657 -common_shares n 1 2 @ ~ 1 0 13335172 -common_shiner n 1 2 @ #m 1 0 01441910 -common_shrew n 1 2 @ #m 1 0 01892030 -common_sickle_pine n 1 2 @ #m 1 0 11654984 -common_snapping_turtle n 1 2 @ #m 1 0 01666228 -common_snowberry n 1 2 @ #m 1 0 12677612 -common_soldier n 1 1 @ 1 1 10476467 -common_sorrel n 1 2 @ #p 1 0 07736371 -common_speedwell n 1 1 @ 1 0 12891643 -common_spindle_tree n 1 1 @ 1 0 12749289 -common_spoonbill n 1 2 @ #m 1 0 02006985 -common_spotted_orchid n 1 2 @ #m 1 0 12058822 -common_st_john's_wort n 1 1 @ 1 0 12368028 -common_staghorn_fern n 1 2 @ #m 1 0 13177884 -common_starling n 1 2 @ #m 1 0 01577035 -common_stinkhorn n 1 2 @ #m 1 0 13040629 -common_stock n 1 2 @ ~ 1 0 13335172 -common_stock_equivalent n 1 1 @ 1 0 13336492 -common_sunflower n 1 2 @ %p 1 0 11978713 -common_tarweed n 1 2 @ #m 1 0 11994336 -common_teasel n 1 1 @ 1 0 12682668 -common_thorn_apple n 1 1 @ 1 0 12903503 -common_thyme n 1 2 @ %p 1 0 12870682 -common_time n 1 1 @ 1 0 15264010 -common_tobacco n 1 2 @ #s 1 0 12907857 -common_topaz n 1 1 @ 1 0 15076523 -common_touch n 1 1 @ 1 0 04931567 -common_unicorn_plant n 1 2 @ #m 1 0 12875269 -common_valerian n 1 1 @ 1 0 12950314 -common_vetchling n 1 2 @ #m 1 0 12541157 -common_viper n 1 2 @ #m 1 0 01752585 -common_wallaby n 1 2 @ #m 1 0 01878061 -common_wart n 1 1 @ 1 0 04696695 -common_wasp n 1 2 @ #m 1 0 02213543 -common_water_snake n 1 2 @ #m 1 0 01737472 -common_watercress n 1 2 @ #m 1 0 11893131 -common_wheat n 1 2 @ %p 1 0 12142874 -common_white_dogwood n 1 1 @ 1 0 12947313 -common_winterberry_holly n 1 1 @ 1 0 12758471 -common_wolffia n 1 1 @ 1 0 11796188 -common_wood_sorrel n 1 1 @ 1 0 12703190 -common_wormwood n 1 3 @ #m #s 1 0 11929477 -common_year n 1 1 @ 1 0 15202131 -common_yellowthroat n 1 1 @ 1 0 01570839 -common_yellowwood n 1 2 @ #m 1 0 11653570 -common_zebra n 1 1 @ 1 0 02391234 -commonage n 1 1 @ 1 0 13247149 -commonality n 2 5 ! @ ~ = + 2 0 08181930 04764741 -commonalty n 1 1 @ 1 0 08181930 -commoner n 1 2 @ ~ 1 1 09610405 -commonness n 4 5 ! @ ~ = + 4 0 14501375 04817280 04795545 04764741 -commonplace n 1 2 @ + 1 1 07154046 -commonplace_book n 1 1 @ 1 0 06415584 -commonplaceness n 1 4 @ ~ = + 1 0 04795545 -commons n 4 4 @ ~ #p ; 4 0 08615374 08542304 08181930 08168117 -commonweal n 1 1 @ 1 0 05159854 -commonwealth n 4 3 @ ~ %p 4 2 08542403 08168978 08375154 08361329 -commonwealth_country n 1 1 @ 1 0 08166931 -commonwealth_day n 1 2 @ #p 1 0 15200164 -commonwealth_of_australia n 1 6 @ #m #p %m %p - 1 0 08831004 -commonwealth_of_dominica n 1 4 @ #m #p %p 1 0 08763193 -commonwealth_of_independent_states n 1 2 @ %m 1 0 08295138 -commonwealth_of_nations n 1 2 @ %m 1 0 08049989 -commonwealth_of_puerto_rico n 1 3 @ #p %p 1 0 08752974 -commonwealth_of_the_bahamas n 1 5 @ #m #p %m %p 1 0 08847268 -commotion n 3 2 @ ~ 3 2 13977366 00553823 07442068 -communalism n 2 1 @ 2 0 01081346 01040943 -commune n 2 3 @ + ; 2 2 08541609 08375369 -communicable_disease n 1 2 @ ~ 1 0 14122053 -communicant n 1 1 @ 1 0 09945223 -communicating n 1 3 @ ~ + 1 1 06252138 -communicating_artery n 1 2 @ #p 1 0 05343542 -communication n 3 3 @ ~ + 3 3 06252138 00033020 13792842 -communication_channel n 1 3 @ ~ ; 1 0 06260121 -communication_equipment n 1 4 @ ~ #p %p 1 0 03077958 -communication_system n 2 4 @ ~ #p %p 2 1 03078287 03077958 -communication_theory n 1 2 @ - 1 0 05997361 -communication_trench n 1 1 @ 1 0 02730748 -communications n 1 2 @ - 1 0 05997361 -communications_intelligence n 1 1 @ 1 0 00983287 -communications_protocol n 1 3 @ ~ ; 1 0 06665108 -communications_satellite n 1 3 @ #p %p 1 0 03077741 -communications_security_establishment n 1 2 @ ; 1 0 08342888 -communications_technology n 1 2 @ ~ 1 0 00950356 -communicativeness n 1 4 ! @ ~ + 1 0 04650527 -communicator n 1 3 @ ~ + 1 0 09610660 -communion n 3 5 @ ~ #p + ; 3 2 01036333 07134575 08147019 -communion_table n 1 1 @ 1 0 02699629 -communique n 1 2 @ %p 1 1 06682794 -communisation n 3 2 @ + 3 0 01153139 01152973 01151788 -communism n 2 3 @ ~ + 2 2 08365855 06214744 -communism_peak n 1 2 @ #p 1 0 09251832 -communist n 2 4 @ ~ #m + 2 2 09945603 09945319 -communist_china n 1 5 @ #p %m %p - 1 1 08723006 -communist_economy n 1 1 @ 1 0 08367579 -communist_manifesto n 1 1 @ 1 0 06727416 -communist_party n 1 2 @ %m 1 0 08258523 -communist_party_of_kampuchea n 1 2 @ ; 1 0 08028999 -community n 6 5 @ ~ %p + ; 6 4 08223802 13240839 08224274 13971382 08553535 07941729 -community_center n 1 1 @ 1 0 03078506 -community_chest n 1 1 @ 1 0 08055964 -community_college n 1 1 @ 1 1 08282542 -community_of_interests n 1 1 @ 1 0 13971382 -community_of_scholars n 1 1 @ 1 0 08113197 -community_property n 1 1 @ 1 0 13245504 -community_service n 2 1 @ 2 0 01210281 01210102 -communization n 3 2 @ + 3 0 01153139 01152973 01151788 -commutability n 2 2 @ + 2 0 04737234 04734145 -commutation n 4 4 @ ~ + ; 4 1 00315700 06548498 01165919 00196485 -commutation_ticket n 1 1 @ 1 0 06519077 -commutative_group n 1 1 @ 1 0 06017472 -commutator n 1 2 @ + 1 1 03078670 -commute n 1 1 @ 1 0 00307455 -commuter n 2 3 @ ~ + 2 2 03078802 09945745 -commuter_traffic n 1 1 @ 1 1 08425657 -commuter_train n 1 1 @ 1 0 03078802 -commuting n 1 2 @ + 1 1 00315700 -comoro_islands n 1 3 @ #p %p 1 0 08733690 -comoros n 1 2 @ #p 1 0 08733897 -comp n 1 1 @ 1 0 07197889 -compact n 3 2 @ ~ 3 1 03078995 06772260 03079136 -compact-disk_burner n 1 1 @ 1 0 03079494 -compact_car n 1 1 @ 1 0 03079136 -compact_disc n 1 2 @ ~ 1 0 03079230 -compact_disc_read-only_memory n 1 1 @ 1 0 02988679 -compact_disc_recordable n 1 1 @ 1 0 02988486 -compact_disc_write-once n 1 1 @ 1 0 02988486 -compact_disk n 1 2 @ ~ 1 0 03079230 -compaction n 2 3 @ ~ + 2 0 07419233 00358089 -compactness n 2 3 @ ~ + 2 0 05088804 04941325 -companion n 3 3 @ ~ + 3 2 09945905 09946278 09760609 -companionability n 1 2 @ + 1 0 04653479 -companionableness n 1 2 @ + 1 0 04653479 -companionship n 1 3 @ ~ + 1 1 13929588 -companionway n 1 1 @ 1 0 03079616 -company n 9 6 @ ~ #m %m + ; 9 6 08058098 08214272 13929588 08187033 09887850 08184861 08264897 08219059 08077711 -company_man n 1 1 @ 1 0 09946437 -company_name n 1 1 @ 1 0 06845199 -company_operator n 1 1 @ 1 1 09946574 -company_union n 1 1 @ 1 0 08234792 -comparability n 1 2 @ + 1 0 04746842 -comparative n 1 3 @ + - 1 0 06322693 -comparative_anatomist n 1 2 @ ~ 1 0 09946672 -comparative_anatomy n 1 1 @ 1 0 06059282 -comparative_degree n 1 2 @ - 1 0 06322693 -comparative_literature n 1 1 @ 1 1 06169667 -comparative_negligence n 1 2 @ ; 1 0 00739632 -comparative_psychology n 1 1 @ 1 0 06138789 -compare n 1 2 @ + 1 0 04746842 -comparing n 1 3 @ ~ + 1 0 00142665 -comparison n 3 3 @ ~ + 3 2 00142665 13853808 04746842 -compartment n 2 3 @ ~ + 2 2 03080309 03079741 -compartment_pressure n 1 1 @ 1 0 11495822 -compartmentalisation n 2 3 @ ~ + 2 0 14417146 01012712 -compartmentalization n 2 3 @ ~ + 2 0 14417146 01012712 -compass n 4 3 @ ~ + 4 2 03080497 05125377 05623628 03080633 -compass_card n 1 1 @ 1 0 03080731 -compass_flower n 1 3 @ ~ #m 1 0 11915658 -compass_north n 1 1 @ 1 0 13831441 -compass_plane n 1 1 @ 1 0 03034516 -compass_plant n 2 3 @ ~ #m 2 0 12545232 11915658 -compass_point n 1 2 @ ~ 1 0 13830305 -compass_saw n 1 1 @ 1 0 03080904 -compassion n 2 3 @ ~ + 2 2 07553741 04829550 -compassionate_leave n 1 2 @ ; 1 0 15139691 -compassionateness n 1 3 @ ~ + 1 0 07553741 -compatibility n 2 4 ! @ ~ + 2 0 07554758 04712735 -compatible_software n 2 1 @ 2 0 06567531 06567400 -compatriot n 1 2 @ ~ 1 1 09970699 -compeer n 1 3 @ ~ #m 1 0 09626238 -compendium n 2 3 @ ~ + 2 0 06591442 06467996 -compensating_balance n 1 1 @ 1 0 13409850 -compensation n 3 4 @ ~ + ; 3 1 13282550 13450636 00259643 -compensatory_damages n 1 2 @ ; 1 0 13291356 -compensatory_spending n 1 1 @ 1 0 01122754 -compensatory_time n 1 1 @ 1 0 15118935 -compere n 1 2 @ + 1 0 09946814 -competence n 1 4 ! @ ~ + 1 1 05153520 -competence_hearing n 1 2 @ ; 1 0 01200266 -competency n 1 3 @ ~ + 1 0 05153520 -competition n 4 4 ! @ ~ + 4 3 13837009 07456188 01168569 10533013 -competitiveness n 1 2 @ + 1 0 04837425 -competitor n 1 3 @ ~ + 1 1 10533013 -compilation n 2 2 @ + 2 0 06593099 01014731 -compiler n 2 5 @ ~ %p + ; 2 0 09946957 06573600 -compiling n 1 2 @ + 1 1 01014731 -compiling_program n 1 4 @ ~ %p ; 1 0 06573600 -complacence n 1 3 @ ~ + 1 0 07531713 -complacency n 1 3 @ ~ + 1 0 07531713 -complainant n 1 4 @ ~ + ; 1 0 10437852 -complainer n 1 3 @ ~ + 1 0 10776339 -complaint n 5 5 @ ~ #p + ; 5 3 14055408 07208930 07208708 06562217 06561942 -complaisance n 1 2 @ + 1 1 04641153 -complement n 6 4 @ ~ #p + 6 4 06315638 13591998 08218212 05109511 14736201 05696297 -complement_fixation n 1 1 @ 1 0 00861382 -complement_fixation_test n 1 2 @ ~ 1 0 05741949 -complementarity n 2 2 @ + 2 0 13857314 13841467 -complementary n 1 1 @ 1 0 04975739 -complementary_angles n 1 1 @ 1 0 13888387 -complementary_color n 1 1 @ 1 0 04975739 -complementary_distribution n 1 2 @ ; 1 0 05087664 -complementary_dna n 1 2 @ ~ 1 0 14816899 -complementary_medicine n 1 1 @ 1 0 00613819 -complementation n 2 2 @ ; 2 0 13800418 05087664 -complete_blood_count n 1 1 @ 1 0 00652975 -complete_fracture n 1 1 @ 1 0 14292688 -completeness n 2 6 ! @ ~ = + ; 2 1 14460974 04785414 -completion n 2 4 @ ~ + ; 2 2 00557419 00211110 -complex n 4 3 @ ~ ; 4 2 05870365 14817592 07482521 02914991 -complex_absence n 1 1 @ 1 0 14088758 -complex_body_part n 1 2 @ ~ 1 0 05225602 -complex_conjugate n 1 1 @ 1 0 13729732 -complex_fraction n 1 1 @ 1 0 13736057 -complex_instruction_set_computer n 1 3 ! @ ; 1 0 04932561 -complex_instruction_set_computing n 1 3 ! @ ; 1 0 04932561 -complex_number n 1 4 @ ~ %p ; 1 1 13729428 -complex_quantity n 1 4 @ ~ %p ; 1 0 13729428 -complex_sentence n 1 3 @ ~ %p 1 0 06285559 -complexifier n 1 2 @ + 1 0 09947127 -complexion n 5 5 @ ~ = + ; 5 1 04976952 07964324 06211206 04675193 04624289 -complexity n 1 5 ! @ ~ = + 1 1 04766275 -complexness n 1 4 @ ~ = + 1 0 04766275 -compliance n 3 4 ! @ ~ + 3 1 01203676 04641153 01166926 -compliancy n 1 2 @ + 1 0 04641153 -complicatedness n 1 2 @ + 1 0 04766620 -complication n 5 2 @ + 5 2 01076359 13933221 14074041 07423899 04766620 -complicity n 1 1 @ 1 1 13991245 -compliment n 1 3 @ ~ + 1 1 06695227 -compliments n 1 2 @ ; 1 0 06630627 -complin n 1 1 @ 1 0 15230363 -compline n 1 1 @ 1 0 15230363 -component n 3 4 @ ~ #p + 3 3 05868954 13809207 03081021 -component_part n 1 3 @ ~ #p 1 0 13809207 -comportment n 1 3 @ ~ + 1 1 04910377 -composer n 1 3 @ ~ + 1 1 09947232 -composing n 2 3 @ ~ + 2 1 05076472 00939452 -compositae n 1 3 @ #m %m 1 0 11911591 -composite n 2 4 @ ~ #m + 2 1 05870365 11915214 -composite_material n 1 1 @ 1 0 14817783 -composite_number n 1 1 @ 1 0 13594417 -composite_order n 1 1 @ 1 0 04699474 -composite_plant n 1 3 @ ~ #m 1 0 11915214 -composite_school n 1 1 @ 1 0 08413248 -compositeness n 1 1 @ 1 0 05208796 -composition n 9 5 @ ~ %p + - 9 6 05076472 04933544 14588492 07037465 00939452 00929718 06677974 06409752 03081660 -composition_board n 1 2 @ ~ 1 0 14799601 -compositor n 1 2 @ + 1 0 09949946 -compositor's_case n 1 2 @ ; 1 0 02975589 -compost n 1 2 @ + 1 1 14818101 -compost_heap n 1 1 @ 1 0 07961956 -compost_pile n 1 1 @ 1 0 07961956 -composure n 1 4 ! @ ~ + 1 1 04903813 -compote n 1 1 @ 1 0 07611046 -compound n 3 4 @ ~ + ; 3 3 05870180 14818238 03081859 -compound_eye n 1 2 @ %p 1 0 05312427 -compound_fraction n 1 1 @ 1 0 13736057 -compound_fracture n 1 1 @ 1 0 14292796 -compound_interest n 1 1 @ 1 0 13318804 -compound_leaf n 1 2 @ ~ 1 0 13156592 -compound_lens n 1 2 @ ~ 1 0 03081986 -compound_lever n 1 2 @ ~ 1 0 03082127 -compound_microscope n 1 2 @ %p 1 0 03082280 -compound_morphology n 1 1 @ 1 0 06178510 -compound_number n 1 1 @ 1 0 13597147 -compound_pendulum n 1 2 @ ~ 1 0 03927792 -compound_pistil n 1 1 @ 1 0 11677045 -compound_protein n 1 2 @ ~ 1 0 14731135 -compound_sentence n 1 1 @ 1 0 06286100 -compounding n 1 3 @ ~ + 1 1 00378985 -comprehensibility n 1 4 ! @ ~ + 1 0 04819026 -comprehension n 2 3 ! @ + 2 1 05805902 13794034 -comprehensive n 1 1 @ 1 0 07197889 -comprehensive_examination n 1 1 @ 1 0 07197889 -comprehensive_school n 1 1 @ 1 0 08413248 -comprehensiveness n 2 4 @ ~ = + 2 0 14461519 05618293 -compress n 1 2 @ %s 1 1 03082450 -compressed_air n 1 2 @ ~ 1 0 14842378 -compressed_gas n 1 2 @ ~ 1 0 14842226 -compressibility n 1 3 ! @ + 1 0 04938474 -compressing n 1 3 @ ~ + 1 0 00356790 -compression n 4 4 ! @ ~ + 4 0 07419233 07313241 00616083 00356790 -compression_bandage n 1 1 @ 1 0 03082656 -compression_fracture n 1 1 @ 1 0 14292944 -compressor n 1 4 @ ~ %p + 1 0 03082807 -compromise n 2 3 @ ~ + 2 2 01205564 07179342 -compromise_verdict n 1 3 @ ~ ; 1 0 01192633 -compromiser n 1 1 @ 1 0 09970822 -compsognathus n 1 2 @ #m 1 0 01714536 -compton n 1 1 @ 1 0 10905703 -comptonia n 1 3 @ #m %m 1 0 11742175 -comptonia_asplenifolia n 1 2 @ #m 1 0 11742310 -comptonia_peregrina n 1 2 @ #m 1 0 11742310 -comptroller n 1 3 @ ~ + 1 0 09761403 -comptroller_general n 1 1 @ 1 1 09950150 -comptroller_of_the_currency n 2 2 @ #p 2 0 09950318 08142801 -comptrollership n 1 2 @ + 1 0 00590806 -compulsion n 3 3 @ ~ + 3 3 09181330 09183255 00156812 -compulsive n 1 3 @ ~ + 1 1 09950457 -compulsiveness n 1 3 @ ~ + 1 0 04625882 -compulsivity n 1 3 @ ~ + 1 1 04625882 -compulsory_process n 1 1 @ 1 0 05177705 -compunction n 1 2 @ ~ 1 1 07536074 -computation n 2 3 @ ~ + 2 2 00868910 05802185 -computational_linguist n 1 1 @ 1 0 09950728 -computational_linguistics n 1 2 @ ~ 1 0 06168552 -computed_axial_tomography n 1 1 @ 1 0 00901476 -computed_tomography n 1 1 @ 1 0 00901476 -computer n 2 7 @ ~ #p %p + ; - 2 1 03082979 09887034 -computer-aided_design n 1 1 @ 1 0 06567689 -computer-oriented_language n 1 1 @ 1 0 06899633 -computer_accessory n 1 2 @ #p 1 0 03084204 -computer_address n 1 3 @ ~ ; 1 0 06356515 -computer_architecture n 2 3 @ ~ ; 2 0 06725249 04932278 -computer_backup n 1 2 @ ; 1 0 02771840 -computer_business n 1 1 @ 1 0 08066965 -computer_circuit n 1 4 @ ~ #p ; 1 0 03084420 -computer_code n 1 3 @ ~ ; 1 0 06355894 -computer_database n 1 3 @ ~ ; 1 0 06588511 -computer_dealer n 1 1 @ 1 0 08063738 -computer_display n 1 3 @ ~ %p 1 0 03085602 -computer_error n 1 3 @ ~ ; 1 0 07299569 -computer_expert n 1 2 @ ~ 1 0 09950917 -computer_file n 1 3 @ ~ ; 1 0 06509210 -computer_file_name n 1 3 @ %p ; 1 0 06335532 -computer_filename n 1 3 @ %p ; 1 0 06335532 -computer_game n 1 2 @ ~ 1 0 00458890 -computer_graphic n 1 1 @ 1 0 03453696 -computer_graphics n 1 3 @ ~ - 1 0 03084647 -computer_guru n 1 2 @ ~ 1 0 09950917 -computer_hardware n 1 4 @ ~ #p ; 1 0 03493333 -computer_industry n 1 1 @ 1 0 08067565 -computer_keyboard n 1 1 @ 1 0 03085013 -computer_language n 1 1 @ 1 0 06899633 -computer_memory n 1 4 @ ~ #p %p 1 0 03744276 -computer_memory_unit n 1 2 @ ~ 1 0 13601596 -computer_menu n 1 3 @ ~ ; 1 0 06493392 -computer_monitor n 1 1 @ 1 0 03085219 -computer_mouse n 1 2 @ %p 1 0 03793489 -computer_network n 1 4 @ ~ %p ; 1 0 03085333 -computer_operation n 1 2 @ ~ 1 0 13450862 -computer_paper n 1 1 @ 1 0 14820052 -computer_peripheral n 1 4 @ ~ #p ; 1 0 03916720 -computer_program n 1 4 @ ~ %p ; 1 0 06568978 -computer_programing n 1 3 @ ~ - 1 0 00928947 -computer_programme n 1 4 @ ~ %p ; 1 0 06568978 -computer_programmer n 1 3 @ ~ ; 1 0 10481268 -computer_programming n 1 3 @ ~ - 1 0 00928947 -computer_science n 1 5 @ ~ #p ; - 1 0 06128570 -computer_scientist n 1 2 @ ~ 1 0 09951070 -computer_screen n 1 3 @ ~ %p 1 0 03085602 -computer_simulation n 1 3 @ ; - 1 0 05666700 -computer_software n 1 3 @ ~ ; 1 0 06566077 -computer_storage n 1 4 @ ~ #p %p 1 0 03744276 -computer_store n 1 1 @ 1 0 03085781 -computer_system n 1 3 @ ~ %p 1 0 03085915 -computer_technology n 1 2 @ - 1 0 00950705 -computer_user n 1 2 @ ~ 1 0 09951274 -computer_virus n 1 1 @ 1 0 06585816 -computerization n 1 2 @ + 1 0 00102779 -computerized_axial_tomography n 1 1 @ 1 0 00901476 -computerized_axial_tomography_scanner n 1 1 @ 1 0 03084834 -computerized_tomography n 1 1 @ 1 0 00901476 -computing n 2 5 @ ~ #p ; - 2 0 06128570 00868910 -computing_device n 1 6 @ ~ #p %p ; - 1 0 03082979 -computing_machine n 1 6 @ ~ #p %p ; - 1 0 03082979 -computing_system n 1 3 @ ~ %p 1 0 03085915 -comrade n 3 3 @ ~ + 3 1 09945905 09951524 09877124 -comradeliness n 1 2 @ + 1 0 04653627 -comradery n 1 1 @ 1 0 04653627 -comradeship n 1 2 @ + 1 0 04653627 -comstock n 1 1 @ 1 0 10906048 -comstock's_mealybug n 1 2 @ #m 1 0 02251233 -comstock_mealybug n 1 2 @ #m 1 0 02251233 -comstockery n 1 1 @ 1 0 00397647 -comte n 1 1 @ 1 0 10906234 -comte_de_mirabeau n 1 1 @ 1 0 11181634 -comte_de_rochambeau n 1 1 @ 1 0 11266703 -comte_de_saxe n 1 1 @ 1 0 11283300 -comte_donatien_alphonse_francois_de_sade n 1 1 @ 1 0 11278120 -comtesse_du_barry n 1 1 @ 1 0 10943811 -comtism n 1 1 @ 1 0 05993622 -con n 3 4 ! @ ~ + 3 1 06649325 09962966 00779248 -con_artist n 1 1 @ 1 0 09954879 -con_game n 1 2 @ ~ 1 1 00779248 -con_man n 1 1 @ 1 0 09954879 -conacaste n 1 2 @ #m 1 0 11761202 -conakry n 1 2 @ #p 1 0 08947617 -conan_doyle n 1 1 @ 1 0 10906462 -concatenation n 4 3 @ ~ + 4 0 14419737 13793127 08376250 00146443 -concave_lens n 1 1 @ 1 0 03215337 -concave_polygon n 1 3 ! @ ~ 1 0 13866827 -concave_polyhedron n 1 1 @ 1 0 13884384 -concave_shape n 1 2 @ ~ 1 0 13864965 -concaveness n 1 3 @ ~ + 1 0 05070032 -concavity n 2 3 @ ~ + 2 0 13864965 05070032 -concealing n 1 3 @ ~ + 1 0 01048912 -concealment n 3 3 @ ~ + 3 0 14416089 04151940 01048912 -conceding n 1 3 @ ~ + 1 0 07176243 -conceit n 5 3 ! @ ~ 5 1 07508996 07106113 07088868 07068473 04887129 -conceitedness n 1 2 @ ~ 1 0 04887129 -conceivability n 1 2 @ + 1 0 14482299 -conceivableness n 1 2 @ + 1 0 14482299 -conceiver n 1 3 @ ~ + 1 0 10383816 -concentrate n 3 3 @ ~ + 3 3 14837506 07567390 05937878 -concentrated_fire n 1 1 @ 1 0 00989583 -concentration n 7 4 ! @ ~ + 7 6 05038593 05088804 00375071 07413899 05704266 01231980 04865502 -concentration_camp n 2 2 @ ~ 2 1 03086183 14448692 -concentration_gradient n 1 1 @ 1 0 13859692 -concentricity n 1 3 ! @ + 1 0 05073723 -concepcion n 1 1 @ 1 0 08721449 -concept n 1 3 @ ~ + 1 1 05835747 -concept_album n 1 2 @ ~ 1 0 06592078 -conception n 4 4 ! @ ~ + 4 4 05835747 00844847 07328942 05633385 -conceptual_semantics n 1 1 @ 1 0 06180548 -conceptualisation n 2 3 @ ~ + 2 0 05836275 00940842 -conceptualism n 1 2 @ + 1 0 05969537 -conceptuality n 1 3 @ ~ + 1 1 05836275 -conceptualization n 2 3 @ ~ + 2 1 00940842 05836275 -conceptus n 1 3 @ ~ %p 1 0 01458842 -concern n 5 7 ! @ ~ %m + ; - 5 5 05670710 07524529 07504841 05832264 08061042 -concert n 1 4 @ ~ + - 1 1 06892775 -concert-goer n 1 1 @ 1 0 09951616 -concert_band n 1 1 @ 1 0 08249459 -concert_dance n 1 4 @ ~ %p - 1 0 00528667 -concert_grand n 1 1 @ 1 0 03086457 -concert_hall n 1 1 @ 1 1 03086580 -concert_piano n 1 1 @ 1 0 03086457 -concert_pitch n 1 1 @ 1 0 04985580 -concerted_music n 1 2 @ ~ 1 0 07024929 -concertina n 2 3 @ ~ + 2 1 03086868 03086670 -concerto n 1 2 @ ~ 1 1 07043275 -concerto_grosso n 1 1 @ 1 0 07043389 -concession n 3 3 @ ~ + 3 2 06526619 07176243 07216412 -concessionaire n 1 1 @ 1 1 09951717 -concessioner n 1 1 @ 1 0 09951717 -conch n 1 3 @ ~ #m 1 0 01943899 -concha n 1 3 @ ~ ; 1 0 05229198 -conchfish n 1 1 @ 1 0 02572763 -conchologist n 1 2 @ + 1 0 09951835 -conchology n 1 2 @ + 1 0 01015689 -concierge n 1 1 @ 1 1 09951953 -conciliation n 3 2 @ + 3 0 13971561 07151122 01151407 -conciliator n 1 3 @ ~ + 1 0 09952163 -conciseness n 1 2 @ + 1 1 07089024 -concision n 1 1 @ 1 0 07089024 -conclave n 1 1 @ 1 1 08308410 -conclusion n 9 5 @ ~ #p %p + 9 6 05838176 05781541 15267536 07291312 06753030 00209943 07177622 06398401 00162632 -conclusion_of_law n 1 2 @ ; 1 0 01192463 -conclusiveness n 1 4 ! @ = + 1 0 04754440 -concoction n 4 3 @ ~ + 4 0 07882497 07375053 05634219 00926668 -concomitance n 1 2 @ + 1 0 05048690 -concomitant n 1 2 @ ~ 1 0 07284554 -concord n 6 5 @ ~ #p + ; 6 1 09111754 13969243 13797313 09096903 07180183 01283935 -concord_grape n 1 1 @ 1 0 07759194 -concordance n 3 3 @ ~ + 3 0 13969243 07180183 06492040 -concordat n 1 2 @ ~ 1 0 06772260 -concourse n 3 2 @ ~ 3 0 08182716 03086963 00147091 -concrete n 1 4 @ ~ %s + 1 1 14820180 -concrete_jungle n 1 3 @ #p %p 1 0 08509251 -concrete_mixer n 1 1 @ 1 0 03087069 -concrete_representation n 1 2 @ ~ 1 0 05941037 -concreteness n 1 5 ! @ ~ = + 1 0 04759849 -concretion n 4 3 @ ~ + 4 0 13451073 09230768 07419233 00382109 -concretism n 1 3 @ ~ + 1 0 05941037 -concubinage n 1 1 @ 1 0 01055065 -concubine n 1 2 @ ~ 1 0 09952393 -concupiscence n 1 3 @ ~ + 1 0 07487955 -concurrence n 4 3 @ ~ + 4 2 07176682 01205702 13971802 05048301 -concurrency n 2 1 @ 2 0 07176682 01205702 -concurrent_execution n 1 1 @ 1 0 13518279 -concurrent_negligence n 1 2 @ ; 1 0 00739850 -concurrent_operation n 1 1 @ 1 0 13451204 -concurring_opinion n 1 2 @ ; 1 0 06552116 -concussion n 2 2 @ + 2 2 07411490 07409930 -condemnation n 5 4 @ ~ + ; 5 3 06709692 01223257 07233634 14574846 01189282 -condensate n 2 3 @ ~ + 2 0 15008765 11446242 -condensation n 6 4 @ ~ + ; 6 1 06246700 13451348 11446242 07313241 06468123 00357680 -condensation_pump n 1 1 @ 1 0 03087245 -condensation_trail n 1 1 @ 1 0 09255519 -condensed_milk n 1 1 @ 1 1 07846471 -condenser n 4 4 @ ~ #p + 4 1 02955247 03087643 03087521 03087366 -condenser_microphone n 1 1 @ 1 0 03087816 -condensing n 1 3 @ ~ + 1 0 00357680 -condescendingness n 1 2 @ + 1 0 04655168 -condescension n 3 2 @ + 3 1 04888268 06719404 04655168 -condiment n 1 2 @ ~ 1 0 07810907 -condition n 8 5 @ ~ #p + ; 8 4 13920835 06755568 13920429 05822746 14546227 13923440 06770875 05798863 -conditional_contract n 1 1 @ 1 0 06522633 -conditional_probability n 1 1 @ 1 0 05092236 -conditional_reaction n 1 2 @ ~ 1 0 00864226 -conditional_reflex n 1 2 @ ~ 1 0 00864226 -conditional_relation n 1 1 @ 1 0 13860281 -conditional_response n 1 2 @ ~ 1 0 00864226 -conditional_sale n 2 1 @ 2 0 13352341 06528191 -conditionality n 1 2 @ + 1 0 13924069 -conditioned_avoidance n 1 1 @ 1 0 00864680 -conditioned_avoidance_response n 1 1 @ 1 0 00864680 -conditioned_emotion n 1 1 @ 1 0 05759017 -conditioned_emotional_response n 1 1 @ 1 0 05759017 -conditioned_reaction n 1 2 @ ~ 1 1 00864226 -conditioned_reflex n 1 2 @ ~ 1 1 00864226 -conditioned_response n 1 2 @ ~ 1 1 00864226 -conditioned_stimulus n 1 1 @ 1 1 05828425 -conditioner n 3 2 @ + 3 1 00625551 09953178 03088020 -conditioning n 1 3 @ ~ + 1 1 05752921 -conditions n 3 3 @ ~ ; 3 0 13923219 13923030 11524662 -condo n 1 2 @ #p 1 0 03088580 -condolence n 1 2 @ + 1 0 06633692 -condom n 1 1 @ 1 0 03088164 -condominium n 2 3 @ #p %p 2 0 03088580 03088389 -condonation n 1 2 @ + 1 0 01227351 -condor n 1 2 @ ~ 1 0 01619536 -condorcet n 1 1 @ 1 0 10906638 -conduct n 2 3 @ ~ + 2 2 01220984 04897762 -conductance n 1 1 @ 1 0 11503813 -conductance_unit n 1 2 @ ~ 1 0 13633229 -conducting n 2 2 @ + 2 0 01136265 01133760 -conducting_wire n 1 2 @ ~ 1 1 04594489 -conduction n 1 3 @ ~ + 1 1 11512818 -conduction_anaesthesia n 1 1 @ 1 0 14027396 -conduction_anesthesia n 1 1 @ 1 0 14027396 -conduction_aphasia n 1 1 @ 1 0 14098078 -conduction_deafness n 1 1 @ 1 0 14551146 -conductive_hearing_loss n 1 1 @ 1 0 14551146 -conductivity n 1 3 @ ~ + 1 1 11512818 -conductor n 4 4 ! @ ~ + 4 3 09952539 14821043 09953052 03088707 -conductress n 1 1 @ 1 0 09953275 -conduit n 1 2 @ ~ 1 0 03089014 -condylar_process n 1 2 @ #p 1 0 05471837 -condyle n 1 4 @ ~ #p + 1 0 05471629 -condylion n 1 2 @ #p 1 0 05231940 -condyloid_process n 1 2 @ #p 1 0 05471837 -condyloma_acuminatum n 1 1 @ 1 0 04696797 -condylura n 1 2 @ #m 1 0 01889740 -condylura_cristata n 1 1 @ 1 0 01889849 -cone n 4 5 @ ~ #p %p + 4 1 03089348 13872592 11682842 05456257 -cone-nosed_bug n 1 2 @ #m 1 0 02244515 -cone_cell n 1 3 @ #p %p 1 0 05456257 -cone_clutch n 1 1 @ 1 0 03089477 -cone_friction_clutch n 1 1 @ 1 0 03089477 -cone_pepper n 1 2 @ #m 1 0 12900783 -cone_shape n 1 3 @ ~ %p 1 0 13872592 -coneflower n 3 3 @ ~ #m 3 0 12008252 12006766 11962272 -conenose n 1 2 @ #m 1 0 02244515 -conenose_bug n 1 2 @ #m 1 0 02244515 -conepatus n 1 3 @ #m %m 1 0 02446512 -conepatus_leuconotus n 1 2 @ #m 1 0 02446645 -conessi n 1 2 @ #m 1 0 11772879 -conestoga n 1 2 @ #m 1 0 03122295 -conestoga_wagon n 1 2 @ #m 1 1 03122295 -coney n 4 4 @ ~ #m %p 4 0 02569334 02372584 02328429 02324045 -coney_island n 1 2 @ #p 1 0 09120207 -confab n 1 3 @ ~ + 1 0 07134850 -confabulation n 2 4 @ ~ + ; 2 0 07134850 05935535 -confect n 1 2 @ ~ 1 0 07597365 -confection n 2 3 @ ~ + 2 0 07596684 00926668 -confectionary n 1 2 @ ~ 1 0 03089624 -confectioner n 1 2 @ ~ 1 0 09953350 -confectionery n 3 2 @ ~ 3 0 07596967 03089624 00433113 -confederacy n 4 6 @ ~ %m %p = + 4 2 09050244 08303275 08251303 06524935 -confederate n 3 3 @ ~ + 3 1 09953615 09953483 09761068 -confederate_army n 1 1 @ 1 0 08394657 -confederate_flag n 1 1 @ 1 0 04304084 -confederate_jasmine n 1 2 @ #m 1 0 11777552 -confederate_rose n 1 1 @ 1 0 12179122 -confederate_rose_mallow n 1 1 @ 1 0 12179122 -confederate_soldier n 1 2 @ ~ 1 0 09953775 -confederate_states n 1 4 @ %m %p = 1 0 09050244 -confederate_states_of_america n 1 4 @ %m %p = 1 0 09050244 -confederation n 3 3 @ ~ + 3 0 14418822 08303275 01081456 -conferee n 2 3 @ #m + 2 0 09954081 09953965 -conference n 3 4 @ ~ %m + 3 3 08308497 08231184 07142566 -conference_call n 1 2 @ ~ 1 0 06274408 -conference_center n 1 1 @ 1 0 03089753 -conference_house n 1 1 @ 1 1 03089753 -conference_room n 1 2 @ %p 1 1 03089879 -conference_table n 1 2 @ #p 1 0 03090000 -conferment n 1 2 @ + 1 0 01086356 -conferral n 1 2 @ + 1 0 01086356 -conferrer n 2 2 @ ~ 2 0 10025730 09954246 -conferva n 1 2 @ #m 1 0 01401842 -confervoid_algae n 1 1 @ 1 0 01402039 -confession n 5 4 @ ~ + ; 5 3 07216083 06472242 01039307 06727133 06472409 -confession_of_judgement n 1 2 @ ; 1 0 01188273 -confession_of_judgment n 1 2 @ ; 1 0 01188273 -confessional n 1 1 @ 1 0 03090172 -confessor n 2 2 @ + 2 1 09954355 09954479 -confetti n 1 1 @ 1 0 03090278 -confidant n 1 3 @ ~ + 1 1 09954639 -confidante n 1 1 @ 1 1 09954804 -confidence n 5 4 ! @ = + 5 3 05697363 07526505 14483744 13929852 06673435 -confidence_game n 1 2 @ ~ 1 0 00779248 -confidence_man n 1 1 @ 1 0 09954879 -confidence_trick n 1 2 @ ~ 1 0 00779248 -confidential_adviser-advisee_relation n 1 2 @ ; 1 0 13838930 -confidential_information n 1 1 @ 1 0 06651577 -confidentiality n 2 2 @ + 2 1 14416668 05615749 -configuration n 2 4 @ ~ = + 2 2 05731779 05064037 -configurationism n 1 3 @ %p ; 1 0 06141324 -confinement n 4 5 @ ~ #p %p + 4 2 14048441 01146576 13998576 01148614 -confines n 1 2 @ ; 1 1 05126228 -confirmation n 5 3 @ ~ + 5 2 05825245 06650070 07179943 01038895 01038761 -confirmation_hearing n 1 1 @ 1 0 07147511 -confiscation n 1 3 @ ~ + 1 0 00085678 -confit n 1 1 @ 1 0 07581132 -confiture n 1 2 @ ~ 1 0 07597145 -conflagration n 1 2 @ ~ 1 0 07303697 -conflict n 7 5 @ ~ #p + ; 7 5 00958896 07483439 00953559 13980845 04714679 13855377 07181935 -conflict_of_interest n 1 1 @ 1 0 13933391 -confluence n 3 3 @ + ; 3 0 08542634 00380881 00147091 -confluent n 1 1 @ 1 0 09278997 -conflux n 1 1 @ 1 0 00380881 -conformal_projection n 1 1 @ 1 0 03090437 -conformance n 1 3 @ ~ + 1 0 04713692 -conformation n 3 4 @ ~ = + 3 0 13898207 05064037 01203676 -conformational_entropy n 1 1 @ 1 0 05012941 -conformism n 1 4 ! @ ~ + 1 0 06211963 -conformist n 1 4 ! @ + ; 1 0 09957614 -conformity n 5 3 ! @ ~ 5 3 04713692 01203676 06211963 07176804 04801763 -confrere n 1 1 @ 1 1 09935990 -confrontation n 5 3 @ ~ + 5 1 07231728 07181713 07181043 01169744 00651670 -confucian n 1 1 @ 1 0 09955406 -confucianism n 1 1 @ 1 0 05969758 -confucianist n 1 1 @ 1 0 09955406 -confucius n 1 2 @ + 1 0 10906822 -confusedness n 1 3 @ ~ + 1 0 05683582 -confusion n 5 3 @ ~ + 5 2 13975752 05683582 07507912 00379754 00072473 -confutation n 2 2 @ + 2 0 07201105 05826722 -confuter n 1 2 @ + 1 0 10510546 -conga n 2 2 @ + 2 0 07055295 00536516 -conga_line n 1 1 @ 1 0 08432149 -conge n 3 3 @ + ; 3 0 03090598 01141729 00216607 -congealment n 1 1 @ 1 0 13451508 -congee n 4 2 @ ; 4 0 07704205 03090598 01141729 00216607 -congelation n 1 2 @ + 1 0 13451508 -congenator n 1 1 @ 1 0 01328302 -congener n 3 1 @ 3 0 14800842 01328302 00003993 -congeneric n 1 1 @ 1 0 01328302 -congeniality n 2 3 ! @ + 2 0 04712978 04655829 -congenialness n 1 2 @ + 1 0 04712978 -congenital_abnormality n 1 2 @ ~ 1 0 14465048 -congenital_afibrinogenemia n 1 1 @ 1 0 14171492 -congenital_anomaly n 1 2 @ ~ 1 0 14465048 -congenital_defect n 1 2 @ ~ 1 0 14465048 -congenital_disease n 1 2 @ ~ 1 0 14151139 -congenital_disorder n 1 2 @ ~ 1 0 14465048 -congenital_heart_defect n 1 2 @ ~ 1 0 14469014 -congenital_megacolon n 1 1 @ 1 0 14156488 -congenital_pancytopenia n 1 1 @ 1 0 14164866 -conger n 1 2 @ #m 1 0 02527622 -conger_eel n 1 2 @ #m 1 0 02527622 -congeries n 1 2 @ %m 1 0 08418103 -congestion n 2 3 @ ~ + 2 2 14320394 13944747 -congestive_heart_failure n 1 1 @ 1 0 14112719 -congius n 1 3 @ #p %p 1 0 13622209 -conglobation n 2 2 @ + 2 0 13865786 07375214 -conglomerate n 2 3 @ ~ + 2 0 14863031 08058937 -conglomeration n 3 3 @ %m + 3 0 13865786 08418103 07375214 -conglutination n 2 2 @ + 2 0 13571365 00382109 -congo n 4 4 @ #p %m %p 4 1 08734385 09252078 08734044 07934678 -congo_copal n 1 1 @ 1 0 14895498 -congo_eel n 1 2 @ #m 1 0 01638722 -congo_franc n 1 2 @ %p 1 0 13677579 -congo_gum n 1 1 @ 1 0 14895498 -congo_peafowl n 1 1 @ 1 0 01803641 -congo_red n 1 2 @ ; 1 0 14770631 -congo_river n 1 2 @ #p 1 0 09252078 -congo_snake n 1 2 @ #m 1 0 01638722 -congolese n 1 3 @ #m + 1 0 09698644 -congoo_mallee n 1 1 @ 1 0 12337131 -congou n 1 1 @ 1 0 07934678 -congou_tea n 1 1 @ 1 0 07934678 -congratulation n 2 3 @ + ; 2 1 06633896 07140348 -congratulations n 1 2 @ ~ 1 1 06693198 -congregant n 1 1 @ 1 0 09955517 -congregating n 1 2 @ + 1 0 01231686 -congregation n 3 4 @ ~ #m + 3 2 07991364 07976181 01231686 -congregation_of_the_inquisition n 1 1 @ 1 0 08333639 -congregational_christian_church n 1 1 @ 1 0 08091152 -congregational_church n 1 2 @ %m 1 0 08090973 -congregationalism n 1 2 @ + 1 0 06230613 -congregationalist n 1 3 @ #m + 1 0 09955643 -congress n 4 5 @ ~ #m %m %p 4 2 08161757 08308800 08318691 00845523 -congress_boot n 1 1 @ 1 0 03090710 -congress_gaiter n 1 1 @ 1 1 03090710 -congress_of_industrial_organizations n 1 1 @ 1 0 08234298 -congress_of_racial_equality n 1 1 @ 1 0 08308922 -congress_shoe n 1 1 @ 1 0 03090710 -congressional_district n 1 2 @ #p 1 0 08542884 -congressional_medal_of_honor n 1 1 @ 1 0 06707178 -congressional_record n 1 1 @ 1 0 06508417 -congressman n 1 2 @ ~ 1 1 09955781 -congresswoman n 1 2 @ ~ 1 0 09955781 -congreve n 1 1 @ 1 0 10907103 -congridae n 1 3 @ #m %m 1 0 02527498 -congruence n 1 2 @ + 1 0 04714156 -congruity n 1 3 ! @ + 1 0 04714156 -congruousness n 1 3 ! @ + 1 0 04714156 -conic n 1 4 @ ~ + ; 1 0 13872975 -conic_morel n 1 2 @ #m 1 0 13033577 -conic_projection n 1 2 @ ~ 1 0 03090856 -conic_section n 1 3 @ ~ ; 1 0 13872975 -conic_verpa n 1 2 @ #m 1 0 13033396 -conic_waxycap n 1 2 @ #m 1 0 13070875 -conical_buoy n 1 1 @ 1 0 07266879 -conical_projection n 1 2 @ ~ 1 0 03090856 -conidiophore n 1 1 @ 1 0 11549138 -conidiospore n 1 1 @ 1 0 11549009 -conidium n 1 1 @ 1 0 11549009 -conifer n 1 4 @ ~ %p + 1 0 13108841 -coniferales n 1 3 @ #m %m 1 0 11607392 -coniferophyta n 1 3 @ #m %m 1 0 11605708 -coniferophytina n 1 3 @ #m %m 1 0 11605708 -coniferopsida n 1 3 @ #m %m 1 0 11605708 -coniferous_tree n 1 3 @ ~ %p 1 0 13108841 -conilurus n 1 3 @ #m %m 1 0 02334337 -conima n 1 1 @ 1 0 14820641 -coniogramme n 1 3 @ #m %m 1 0 13209647 -coniogramme_japonica n 1 2 @ #m 1 0 13209808 -conium n 1 3 @ #m %m 1 0 12935457 -conium_maculatum n 1 2 @ #m 1 0 12935609 -conjecture n 3 3 @ ~ + 3 1 05891783 06782680 05773923 -conjoined_twin n 1 1 @ 1 0 10595012 -conjugal_family n 1 1 @ 1 0 07973487 -conjugal_right n 1 1 @ 1 0 05177897 -conjugal_visitation n 1 1 @ 1 0 05178220 -conjugal_visitation_right n 1 1 @ 1 0 05178220 -conjugate n 1 2 @ + 1 1 14820425 -conjugate_solution n 1 1 @ 1 0 14820425 -conjugated_protein n 1 2 @ ~ 1 0 14731135 -conjugation n 6 4 @ ~ %m + 6 0 14420954 13804085 08006868 08006741 00847340 00381680 -conjunction n 6 3 @ ~ ; 6 3 05048301 14420954 06325826 13799392 07415167 03605915 -conjunctiva n 1 4 @ ~ #p + 1 0 05315095 -conjunctival_layer_of_bulb n 1 1 @ 1 0 05315382 -conjunctival_layer_of_eyelids n 1 1 @ 1 0 05315612 -conjunctival_veins n 1 1 @ 1 0 05364612 -conjunctive n 1 2 @ ~ 1 0 06325826 -conjunctivitis n 1 2 @ ~ 1 0 14341432 -conjunctivitis_arida n 1 1 @ 1 0 14538113 -conjuncture n 1 1 @ 1 0 07417298 -conjuration n 3 3 @ ~ + 3 0 07160116 05978159 00099951 -conjure_man n 1 1 @ 1 0 10055181 -conjurer n 2 3 @ ~ + 2 0 10280674 10055181 -conjuring n 1 3 @ ~ + 1 0 05978159 -conjuring_trick n 1 2 @ ~ 1 0 00099951 -conjuror n 2 3 @ ~ + 2 0 10280674 10055181 -conjury n 1 3 @ ~ + 1 0 05978159 -conk n 1 3 @ + ; 1 0 05598868 -conker n 1 1 @ 1 0 12768682 -conn's_syndrome n 1 1 @ 1 0 14305149 -connaraceae n 1 2 @ #m 1 0 11746224 -connarus n 1 3 @ #m %m 1 0 11746419 -connarus_guianensis n 1 2 @ #m 1 0 11746600 -connectedness n 2 5 ! @ ~ = + 2 0 14419164 13791389 -connecter n 1 3 @ ~ + 1 0 03091374 -connecticut n 3 3 @ #p %p 3 1 09068444 09252273 09068805 -connecticut_river n 1 2 @ #p 1 0 09252273 -connecticuter n 1 1 @ 1 0 09741904 -connecting_flight n 1 1 @ 1 0 00301443 -connecting_rod n 1 2 @ ~ 1 0 03091044 -connecting_room n 1 1 @ 1 0 03091223 -connection n 9 5 @ ~ = + ; 9 5 13791389 14419164 03091374 09956147 05763916 13870805 09956035 00316989 00145218 -connective n 2 2 @ ~ 2 0 06325826 03091374 -connective_tissue n 1 4 @ ~ %s %p 1 1 05286536 -connectivity n 1 2 @ + 1 0 04918053 -connector n 1 3 @ ~ + 1 0 03091374 -connemara_heath n 1 2 @ #m 1 0 12234669 -connexion n 6 4 @ ~ = + 6 0 13870805 13791389 05763916 03091374 00316989 00145218 -conning_tower n 2 2 @ #p 2 0 03092053 03091907 -conniption n 1 1 @ 1 0 14406303 -connivance n 2 4 @ ~ + ; 2 0 07176962 06689125 -connochaetes n 1 3 @ #m %m 1 0 02421308 -connoisseur n 1 3 @ ~ + 1 1 09956387 -connoisseurship n 1 2 @ + 1 0 05750027 -connolly n 1 1 @ 1 0 10907236 -connors n 1 1 @ 1 0 10907501 -connotation n 2 2 @ + 2 2 06602935 05923566 -conocarpus n 1 2 @ #m 1 0 12324756 -conocarpus_erectus n 1 1 @ 1 0 12324906 -conoclinium n 1 3 @ #m %m 1 0 11955770 -conoclinium_coelestinum n 1 2 @ #m 1 0 11955896 -conodont n 2 2 @ #m 2 0 01476696 01476418 -conodonta n 1 3 @ #m %m 1 0 01476135 -conodontophorida n 1 3 @ #m %m 1 0 01476135 -conoid n 1 3 @ ~ %p 1 0 13872592 -conopodium n 1 3 @ #m %m 1 0 12935982 -conopodium_denudatum n 1 2 @ #m 1 0 12936155 -conospermum n 1 3 @ #m %m 1 0 12216028 -conoy n 1 1 @ 1 0 09653616 -conquering n 1 3 @ ~ + 1 0 00089027 -conqueror n 1 3 @ ~ + 1 1 09956578 -conquest n 3 2 @ ~ 3 2 00089027 00065216 00160532 -conquistador n 1 3 @ ~ ; 1 0 09956780 -conrad n 1 1 @ 1 0 10907647 -conrad_aiken n 1 1 @ 1 0 10810549 -conrad_potter_aiken n 1 1 @ 1 0 10810549 -conradina n 1 3 @ #m %m 1 0 12845732 -conradina_glabra n 1 2 @ #m 1 0 12845908 -consanguinity n 1 4 ! @ + ; 1 0 13813591 -conscience n 3 3 @ ~ + 3 3 09184136 04848492 07506797 -conscience_money n 1 1 @ 1 0 13283187 -conscientious_objector n 1 1 @ 1 1 09957013 -conscientiousness n 2 4 ! @ ~ + 2 0 04848686 04672355 -consciousness n 2 5 ! @ ~ = + 2 2 05675130 05675905 -consciousness-altering_drug n 1 2 @ ~ 1 0 04017137 -conscript n 1 3 @ + ; 1 0 10028765 -conscription n 1 4 @ ~ + ; 1 1 01157850 -consecration n 2 3 @ + ; 2 0 01041111 01040646 -consecutive_operation n 1 1 @ 1 0 13554800 -consensus n 1 2 @ + 1 1 13971901 -consent n 1 3 @ ~ + 1 1 06689667 -consent_decree n 1 2 @ ; 1 0 06540284 -consequence n 3 4 ! @ ~ + 3 3 11410625 07294019 05170574 -conservancy n 2 2 @ ; 2 0 08325530 00819524 -conservation n 3 4 @ ~ + ; 3 2 07419599 00819274 06104073 -conservation_of_charge n 1 1 @ 1 0 06104372 -conservation_of_electricity n 1 1 @ 1 0 06104372 -conservation_of_energy n 1 1 @ 1 0 06104578 -conservation_of_mass n 1 1 @ 1 0 06104844 -conservation_of_matter n 1 1 @ 1 0 06104844 -conservation_of_momentum n 1 1 @ 1 0 06105107 -conservation_of_parity n 1 2 @ ; 1 0 06105314 -conservationist n 1 3 @ ~ + 1 0 10060621 -conservatism n 1 2 @ ~ 1 1 06216160 -conservative n 2 4 ! @ ~ + 2 1 09957156 09957523 -conservative_jew n 1 2 @ #m 1 0 09611548 -conservative_judaism n 2 3 @ %m ; 2 0 08095160 06234619 -conservative_party n 1 1 @ 1 0 08258744 -conservativism n 1 3 @ ~ + 1 0 06216160 -conservativist n 1 2 @ ~ 1 0 09957156 -conservatoire n 1 2 @ ~ 1 0 03092314 -conservator n 2 1 @ 2 0 09983889 09611722 -conservator-ward_relation n 1 2 @ ; 1 0 13839120 -conservatory n 3 2 @ ~ 3 0 08287436 03092314 03092166 -conserve n 1 3 @ ~ + 1 0 07642471 -conserves n 1 2 @ ~ 1 0 07642471 -considerateness n 1 3 @ ~ + 1 0 04841358 -consideration n 6 4 ! @ ~ + 6 4 05784831 05822746 07138915 04841358 13323313 01229793 -consignee n 1 2 @ + 1 0 09958447 -consigner n 1 2 @ + 1 0 09958569 -consignment n 3 2 @ + 3 0 02964389 01165692 00317917 -consignor n 1 2 @ + 1 0 09958569 -consistence n 2 4 @ ~ = + 2 1 04745932 04934546 -consistency n 4 6 ! @ ~ = + ; 4 2 04934546 04745932 14420780 04785195 -consistory n 1 1 @ 1 0 08331121 -consolation n 2 3 @ ~ + 2 1 07492655 01211667 -console n 4 2 @ ; 4 0 03092883 03092656 03092476 02933340 -console_table n 1 1 @ 1 0 03092883 -consolida n 1 3 @ #m %m 1 0 11732309 -consolida_ambigua n 1 2 @ #m 1 0 11732567 -consolidation n 3 3 @ ~ + 3 2 07374633 01237415 09252586 -consomme n 1 2 @ ~ 1 0 07584110 -consonance n 2 2 @ + 2 0 07097548 04984351 -consonant n 2 4 ! @ ~ + 2 2 07115021 07115381 -consonant_rhyme n 1 1 @ 1 0 07097548 -consonant_system n 1 1 @ 1 1 07112942 -consonantal_system n 1 1 @ 1 1 07112942 -consort n 2 3 @ ~ + 2 0 09958724 08188814 -consortium n 1 2 @ ~ 1 0 08236438 -conspecific n 1 1 @ 1 0 01314026 -conspectus n 1 1 @ 1 0 06468328 -conspicuous_consumption n 1 1 @ 1 0 13451665 -conspicuousness n 2 5 ! @ ~ = + 2 0 14434219 04706087 -conspiracy n 3 5 @ ~ %m + ; 3 3 06524935 05908882 08251303 -conspiracy_of_silence n 1 1 @ 1 0 06525406 -conspirator n 1 4 @ ~ #m + 1 1 09958892 -constable n 3 2 @ ; 3 1 09959142 10907851 09959258 -constabulary n 1 3 @ ~ %m 1 0 08209687 -constance n 2 2 @ #p 2 0 09252766 08316965 -constancy n 3 6 ! @ ~ = + ; 3 1 04738641 05708818 04877264 -constant n 2 2 @ ~ 2 1 05858936 13585429 -constant-width_font n 1 1 @ 1 0 06825996 -constant_lambert n 1 1 @ 1 0 11115131 -constant_of_gravitation n 1 3 @ #p ; 1 0 13590327 -constant_of_proportionality n 1 2 @ ~ 1 0 13593634 -constant_quantity n 1 2 @ ~ 1 0 05858936 -constantan n 1 1 @ 1 0 14820747 -constantin_brancusi n 1 1 @ 1 0 10862676 -constantina n 1 2 @ #p 1 0 08814664 -constantine n 2 2 @ #p 2 0 10907962 08706823 -constantine_i n 1 1 @ 1 0 10907962 -constantine_the_great n 1 1 @ 1 0 10907962 -constantinople n 5 3 @ #p %p 5 0 09041785 08314901 08314501 08314327 08313790 -constatation n 1 1 @ 1 1 05893512 -constellation n 2 4 @ ~ %m + 2 1 05731779 09252970 -consternation n 1 2 @ = 1 1 07519773 -constipation n 2 3 @ ~ + 2 0 14371161 00272878 -constituency n 1 3 @ #m %m 1 0 08238156 -constituent n 5 6 @ ~ #m #p + ; 5 2 03081021 09611884 13809207 06312966 05868954 -constitution n 5 5 @ ~ %p + ; 5 2 06533648 00237078 06534132 04933544 03093018 -constitution_of_the_united_states n 1 3 @ %p ; 1 0 06534132 -constitution_state n 1 3 @ #p %p 1 0 09068444 -constitutional n 1 2 @ + 1 0 00284544 -constitutional_convention n 1 2 @ %m 1 0 08309226 -constitutional_union_party n 1 1 @ 1 0 08258974 -constitutionalism n 2 2 @ + 2 0 08361172 06216948 -constitutionalist n 1 2 @ + 1 0 09959387 -constraint n 3 2 @ ~ 3 0 13998781 04081844 01149621 -constriction n 4 3 @ ~ + 4 1 13912992 07313518 05721728 01149911 -constrictor n 1 3 @ ~ + 1 0 01741562 -constrictor_constrictor n 1 1 @ 1 0 01742172 -construal n 1 2 @ + 1 0 06742630 -construct n 1 2 @ ~ 1 0 05835747 -construction n 7 6 ! @ ~ %p + - 7 5 00911048 06313651 05771836 04341686 00873381 07173959 01104637 -construction_industry n 1 1 @ 1 0 08067683 -construction_paper n 1 1 @ 1 0 14820933 -construction_worker n 1 1 @ 1 0 09959527 -constructive_breach n 1 1 @ 1 0 00069444 -constructive_eviction n 1 2 @ ; 1 0 01194904 -constructive_fraud n 1 2 @ ~ 1 0 00777806 -constructive_metabolism n 1 2 @ #p 1 0 13430495 -constructive_possession n 1 2 @ ; 1 0 00810026 -constructive_trust n 1 1 @ 1 0 13361962 -constructiveness n 1 3 ! @ + 1 0 05165745 -constructivism n 1 3 @ %m + 1 0 08465776 -constructivist n 1 3 @ #m + 1 0 09959658 -constructor n 1 3 @ ~ + 1 0 09878275 -consubstantiation n 1 2 @ + 1 0 06188292 -consuetude n 1 1 @ 1 0 00413795 -consuetudinal n 1 1 @ 1 0 06421844 -consuetudinary n 1 1 @ 1 0 06421844 -consul n 1 2 @ + 1 0 09959797 -consulate n 1 2 @ + 1 0 03093427 -consulship n 1 2 @ + 1 0 00590913 -consultancy n 1 2 @ + 1 0 00631712 -consultant n 1 3 @ ~ + 1 1 09774266 -consultation n 3 3 @ ~ + 3 2 07143624 07143137 01264050 -consulting_company n 1 1 @ 1 0 08062464 -consulting_firm n 1 1 @ 1 1 08062464 -consulting_service n 1 2 @ ~ 1 0 00577749 -consumer n 1 3 @ ~ + 1 1 09612848 -consumer_credit n 1 2 @ ~ 1 0 13374426 -consumer_durables n 1 3 @ ~ ; 1 0 03257877 -consumer_finance_company n 1 2 @ ~ 1 0 08421100 -consumer_goods n 1 3 @ ~ ; 1 0 03093574 -consumer_loan n 1 2 @ ~ 1 0 13399782 -consumer_price_index n 1 1 @ 1 0 06641654 -consumer_research n 1 1 @ 1 0 00640721 -consumerism n 2 1 @ 2 0 05995220 00799409 -consummation n 2 3 @ ~ + 2 0 00061792 00061598 -consumption n 4 4 @ ~ + ; 4 1 00838098 14144064 13451804 00356367 -consumption_weed n 1 2 @ #m 1 0 11938261 -consumptive n 1 1 @ 1 0 09960001 -contact n 9 4 @ ~ + ; 9 7 00039297 00124880 14419510 07339329 09960117 06261260 03093792 07279285 03094159 -contact_action n 1 2 @ ~ 1 0 13444131 -contact_arm n 1 2 @ #p 1 0 04593866 -contact_dermatitis n 1 2 @ ~ 1 0 14223074 -contact_lens n 1 1 @ 1 0 03094159 -contact_print n 1 1 @ 1 0 03094347 -contact_sport n 1 2 @ ~ 1 1 00433458 -contadino n 1 1 @ 1 0 09613118 -contagion n 3 3 @ ~ + 3 0 14122235 07360647 06282383 -contagious_abortion n 1 1 @ 1 0 14261508 -contagious_disease n 1 2 @ ~ 1 0 14122235 -container n 1 3 @ ~ + 1 1 03094503 -container_ship n 1 1 @ 1 0 03095699 -container_vessel n 1 1 @ 1 0 03095699 -containerful n 1 2 @ ~ 1 0 13756125 -containership n 1 1 @ 1 0 03095699 -containment n 3 4 @ ~ + ; 3 0 05986948 03095965 01147451 -contaminant n 1 2 @ + 1 0 14821984 -contamination n 3 4 ! @ ~ + 3 1 14487731 14821984 00276987 -conte_alessandro_giuseppe_antonio_anastasio_volta n 1 1 @ 1 0 11368368 -conte_alessandro_volta n 1 1 @ 1 0 11368368 -contemplation n 2 3 @ ~ + 2 2 00878926 05785508 -contemplative n 1 1 @ 1 0 09960315 -contemplativeness n 1 2 @ + 1 0 04660805 -contemporaneity n 2 3 @ = + 2 0 05050668 05048948 -contemporaneousness n 2 3 @ = + 2 0 05050668 05048948 -contemporaries n 1 2 @ ~ 1 1 08369406 -contemporary n 1 1 @ 1 1 09960417 -contemporary_world n 1 1 @ 1 0 15120528 -contempt n 4 4 @ ~ + ; 4 2 07502980 04915687 06715927 01180200 -contempt_of_congress n 1 2 @ ; 1 0 01180398 -contempt_of_court n 1 3 @ ~ ; 1 0 01180557 -contemptibility n 1 2 @ + 1 0 04807971 -contemptuousness n 1 2 @ + 1 0 04888510 -contender n 1 3 @ ~ + 1 0 10533013 -content n 7 4 @ ~ #p + 7 6 07955057 06598915 13816521 13779374 05809192 14412882 04347225 -content_word n 1 3 @ ~ %p 1 0 06289250 -contentedness n 1 2 @ + 1 0 14412882 -contention n 3 3 @ ~ + 3 2 06731378 07183151 01168569 -contentiousness n 1 3 @ ~ + 1 0 04643979 -contentment n 1 4 ! @ ~ + 1 0 07531105 -contents n 1 2 @ #p 1 0 06489659 -contest n 2 3 @ ~ + 2 2 07456188 01168961 -contestant n 2 2 @ ~ 2 1 09613191 10018021 -contestation n 1 3 @ ~ + 1 0 07183151 -contestee n 1 3 @ + ; 1 0 09612131 -contester n 1 3 @ + ; 1 0 09612291 -context n 2 3 @ ~ + 2 2 06284898 14512817 -context_of_use n 1 1 @ 1 0 06284898 -contextual_definition n 1 1 @ 1 0 06744663 -contextualism n 1 1 @ 1 0 05959407 -contiguity n 1 2 @ + 1 0 05085991 -contiguousness n 1 2 @ + 1 0 05085991 -continence n 2 2 @ + 2 1 04882813 04884177 -continency n 1 2 @ + 1 0 04882813 -continent n 2 5 @ ~ #p %p + 2 2 09254614 08696737 -continental_army n 1 1 @ 1 0 08394811 -continental_breakfast n 1 1 @ 1 0 07574780 -continental_congress n 1 1 @ 1 0 08318423 -continental_divide n 1 3 @ %p ; 1 0 08679562 -continental_drift n 1 1 @ 1 0 11434448 -continental_glacier n 1 2 @ ~ 1 0 09255070 -continental_plan n 1 1 @ 1 0 13416106 -continental_quilt n 1 2 @ %s 1 0 03266749 -continental_shelf n 1 1 @ 1 0 09255207 -continental_slope n 1 1 @ 1 0 09255343 -contingence n 1 1 @ 1 0 07290761 -contingency n 2 2 @ + 2 1 07290761 14001973 -contingency_fee n 1 1 @ 1 0 13321081 -contingency_procedure n 1 1 @ 1 0 06583354 -contingent n 2 2 @ ; 2 1 07976420 08404549 -contingent_probability n 1 1 @ 1 0 05092236 -continuance n 3 4 ! @ ~ + 3 1 01017987 15133621 15133488 -continuant n 1 2 @ ~ 1 0 07118367 -continuant_consonant n 1 3 ! @ ~ 1 0 07118367 -continuation n 4 4 ! @ ~ + 4 1 01017987 06399503 06250208 05051896 -continuative n 1 2 @ ~ 1 0 06325826 -continued_fraction n 1 1 @ 1 0 13736550 -continuing_education n 1 1 @ 1 0 00884311 -continuing_trespass n 1 1 @ 1 0 00734783 -continuity n 3 4 ! @ = + 3 1 14422035 07010393 05054130 -continuity_army_council n 1 2 @ ; 1 0 08019281 -continuity_irish_republican_army n 1 2 @ ; 1 0 08019281 -continuo n 1 1 @ 1 0 07032556 -continuous_creation_theory n 1 2 @ ; 1 0 05888572 -continuous_receiver_watch n 1 1 @ 1 0 00881257 -continuous_tense n 1 2 @ ~ 1 0 13805734 -continuousness n 1 2 @ + 1 0 05052587 -continuum n 1 3 @ ~ + 1 1 15123754 -conto n 1 2 @ %p 1 0 13676285 -contopus n 1 3 @ #m %m 1 0 01549314 -contopus_sordidulus n 1 1 @ 1 0 01549641 -contopus_virens n 1 3 @ ~ #m 1 0 01549430 -contortion n 2 2 @ + 2 2 00404726 13885370 -contortionist n 1 2 @ + 1 0 09960545 -contour n 3 4 @ ~ = + 3 2 06801580 05064037 05851517 -contour_feather n 1 1 @ 1 0 01897536 -contour_language n 1 1 @ 1 1 06905141 -contour_line n 1 2 @ ~ 1 0 06801580 -contour_map n 1 1 @ 1 0 03096142 -contour_sheet n 1 1 @ 1 0 03353467 -contra n 1 1 @ 1 0 09612447 -contra_danse n 1 3 @ ~ + 1 0 00539121 -contraband n 1 2 @ + 1 0 03096273 -contrabandist n 1 3 @ ~ + 1 0 10615334 -contrabass n 1 1 @ 1 1 02803934 -contrabassoon n 1 1 @ 1 0 03096439 -contraception n 1 2 @ ~ 1 1 00852181 -contraceptive n 1 2 @ ~ 1 1 03096593 -contraceptive_device n 1 2 @ ~ 1 1 03096593 -contraceptive_diaphragm n 1 1 @ 1 0 03189461 -contraceptive_method n 1 2 @ ~ 1 0 00852181 -contraceptive_pill n 1 3 @ ~ %s 1 0 03936895 -contract n 3 7 @ ~ #p %p + ; - 3 2 06520944 06737394 00491366 -contract_bridge n 1 2 @ ~ 1 0 00491366 -contract_killing n 1 1 @ 1 0 00221480 -contract_law n 1 2 @ - 1 0 06162042 -contract_of_adhesion n 1 1 @ 1 0 06521878 -contract_of_hazard n 1 1 @ 1 0 06528403 -contract_offer n 1 1 @ 1 0 07161613 -contract_under_seal n 1 1 @ 1 0 06524278 -contractile_organ n 1 2 @ ~ 1 0 05289601 -contractility n 1 3 @ ~ + 1 0 05201813 -contracting n 1 2 @ + 1 0 00077981 -contraction n 4 5 ! @ ~ + ; 4 1 00369802 07313241 06289472 00365471 -contractor n 4 4 @ ~ + ; 4 1 09960688 09961012 09960891 05289601 -contracture n 1 2 @ + 1 0 00369399 -contradance n 1 2 @ ~ 1 0 00539121 -contradiction n 3 4 @ ~ + ; 3 2 13857676 07206887 07206596 -contradiction_in_terms n 1 3 @ ~ ; 1 0 07206887 -contradictoriness n 1 3 @ ~ + 1 0 13857486 -contradictory n 1 1 @ 1 0 13783259 -contradistinction n 1 2 @ + 1 1 05748614 -contrafagotto n 1 1 @ 1 0 03096439 -contrail n 1 1 @ 1 0 09255519 -contraindication n 1 4 ! @ + ; 1 0 06797947 -contralto n 2 2 @ ~ 2 1 09961198 06872905 -contraption n 1 2 @ ~ 1 1 02729965 -contrapuntist n 1 2 @ + 1 0 09612580 -contrarian n 1 1 @ 1 0 09612700 -contrariety n 1 1 @ 1 0 13858392 -contrariness n 2 3 @ ~ + 2 0 04909018 04641869 -contrary n 3 1 @ 3 1 13858604 13858270 13783421 -contras n 1 1 @ 1 0 08030185 -contrast n 5 4 @ ~ + ; 5 4 13855627 00651813 05748786 05711084 05126362 -contrast_material n 1 1 @ 1 0 14899687 -contrast_medium n 1 1 @ 1 0 14899687 -contravention n 1 2 @ + 1 0 01170813 -contredanse n 1 3 @ ~ + 1 0 00539121 -contretemps n 1 2 @ ; 1 0 00959645 -contribution n 5 3 @ ~ + 5 4 00787465 13270038 01089778 13269890 01102712 -contributor n 2 2 @ + 2 2 10670310 09961331 -contributory_negligence n 1 2 @ ; 1 0 00740048 -contriteness n 1 2 @ + 1 0 07534700 -contrition n 1 1 @ 1 1 07534700 -contrivance n 6 3 @ ~ + 6 2 02729965 05634457 05905802 05727808 03644248 00940709 -contriver n 1 3 @ ~ + 1 0 10438172 -control n 11 5 @ ~ #p + ; 11 9 05196375 13827205 00830448 05798569 00803617 14441825 04882968 05641959 03096960 09504790 06657202 -control_account n 1 2 @ #p 1 0 13405015 -control_board n 1 3 @ ~ %p 1 0 03098140 -control_center n 1 1 @ 1 0 03097362 -control_character n 1 2 @ ~ 1 0 06820601 -control_circuit n 1 1 @ 1 0 03097535 -control_condition n 1 2 @ #p 1 1 05798569 -control_experiment n 1 1 @ 1 0 05798413 -control_freak n 1 1 @ 1 0 09961469 -control_function n 1 1 @ 1 0 13452117 -control_grid n 1 2 @ #p 1 0 03458552 -control_key n 1 2 @ ; 1 0 03097673 -control_operation n 1 1 @ 1 0 13452117 -control_panel n 1 3 @ ~ %p 1 0 03098140 -control_rod n 1 2 @ #p 1 0 03098515 -control_room n 1 1 @ 1 0 03098688 -control_stick n 1 1 @ 1 0 04317976 -control_stock n 1 1 @ 1 0 13336650 -control_surface n 1 3 @ ~ %p 1 0 02688443 -control_system n 1 2 @ ~ 1 0 03098806 -control_tower n 1 2 @ #p 1 1 03098959 -controlled_substance n 1 2 @ ~ 1 0 03097890 -controller n 3 3 @ ~ + 3 1 09761403 10525134 03096960 -controllership n 1 2 @ + 1 0 00591006 -controlling_interest n 1 1 @ 1 0 13287414 -controversialist n 1 2 @ ~ 1 0 09615465 -controversy n 1 3 @ ~ + 1 1 07183151 -contumacy n 2 3 @ + ; 2 0 01180858 01179564 -contumely n 1 3 @ ~ + 1 0 06715223 -contusion n 2 3 @ ~ + 2 1 14288871 00126100 -conundrum n 1 1 @ 1 0 06785223 -conurbation n 1 2 @ ~ 1 0 08539717 -conuropsis n 1 3 @ #m %m 1 0 01821418 -conuropsis_carolinensis n 1 2 @ #m 1 0 01821554 -convalescence n 1 3 @ ~ + 1 0 13452347 -convalescent n 1 2 @ + 1 0 09961605 -convallaria n 1 3 @ #m %m 1 0 12471366 -convallaria_majalis n 1 2 @ #m 1 0 12471544 -convallariaceae n 1 2 @ #m 1 0 12471150 -convection n 2 3 @ + ; 2 1 13452614 13452750 -convector n 1 1 @ 1 0 03099147 -convener n 1 3 @ + ; 1 0 09961739 -convenience n 4 5 ! @ ~ = + 4 2 14446493 04718563 04018667 02729965 -convenience_food n 1 2 @ ~ 1 0 07593549 -convenience_store n 1 1 @ 1 0 03099274 -conveniences n 1 1 @ 1 0 13366137 -convening n 1 2 @ + 1 0 01231819 -convent n 2 5 @ ~ #p %p + 2 1 03099454 08224413 -conventicle n 2 1 @ 2 0 08384900 03099622 -convention n 5 5 @ ~ = + ; 5 2 08309086 05667613 06774316 04801532 01231819 -conventionalisation n 1 2 @ + 1 0 01159964 -conventionalism n 1 3 @ ~ = 1 0 04801532 -conventionality n 3 5 ! @ ~ = + 3 0 06212155 05650180 04801532 -conventionalization n 1 2 @ + 1 0 01159964 -conventioneer n 1 2 @ + 1 0 09961889 -convergence n 4 4 ! @ ~ + 4 0 07414740 05863106 05764365 00146572 -convergency n 2 4 ! @ ~ + 2 0 05863106 00146572 -convergent_strabismus n 1 1 @ 1 0 14506233 -convergent_thinker n 1 1 @ 1 0 10458111 -convergent_thinking n 1 3 ! @ #p 1 0 05796937 -converging n 1 3 @ ~ + 1 0 00146572 -converging_lens n 1 2 @ ~ 1 0 03099771 -conversance n 1 2 @ + 1 0 05817145 -conversancy n 1 2 @ + 1 0 05817145 -conversation n 1 3 @ ~ + 1 1 07133701 -conversation_piece n 1 1 @ 1 0 05812370 -conversation_stopper n 1 1 @ 1 0 06768394 -conversational_partner n 1 1 @ 1 0 10210911 -conversationalist n 1 3 @ ~ + 1 0 09961999 -conversationist n 1 3 @ ~ + 1 0 09961999 -converse n 1 1 @ 1 0 06751742 -conversion n 9 4 @ ~ + ; 9 4 07415730 05802912 00189106 00094788 13452947 07355194 07102483 01093380 00400083 -conversion_disorder n 1 2 @ ~ 1 0 14386697 -conversion_factor n 1 1 @ 1 0 13593438 -conversion_hysteria n 1 2 @ ~ 1 0 14386697 -conversion_reaction n 1 2 @ ~ 1 0 14386697 -converso n 1 2 @ ~ 1 0 09962214 -convert n 1 3 @ ~ + 1 1 09962414 -converter n 1 3 @ ~ + 1 0 03099945 -convertibility n 1 4 ! @ = + 1 0 04736757 -convertible n 3 2 @ ~ 3 1 03100240 13419325 03100346 -convertible_bond n 1 1 @ 1 0 13337634 -convertible_security n 1 1 @ 1 0 13419325 -convertor n 1 3 @ ~ + 1 0 03099945 -convex_lens n 1 2 @ ~ 1 0 03099771 -convex_polygon n 1 2 ! @ 1 0 13866626 -convex_polyhedron n 1 1 @ 1 0 13884261 -convex_shape n 1 2 @ ~ 1 0 13864153 -convexity n 2 3 @ ~ + 2 1 05070290 13864153 -convexness n 1 3 @ ~ + 1 0 05070290 -conveyance n 5 5 @ ~ %p + ; 5 0 06546633 06252954 03100490 01108402 00315986 -conveyance_of_title n 1 2 @ ~ 1 0 01108402 -conveyancer n 1 3 @ + ; 1 0 09962612 -conveyancing n 1 2 @ ~ 1 0 01108402 -conveyer n 2 5 @ ~ #p + ; 2 0 09962789 03100897 -conveyer_belt n 1 4 @ ~ #p ; 1 0 03100897 -conveying n 1 3 @ ~ + 1 0 01108402 -conveyor n 2 5 @ ~ #p + ; 2 2 09962789 03100897 -conveyor_belt n 1 4 @ ~ #p ; 1 0 03100897 -convict n 2 3 @ ~ + 2 1 09962966 09963159 -convict_fish n 1 2 @ #m 1 0 02649218 -convictfish n 1 2 @ #m 1 0 02649218 -conviction n 2 5 ! @ ~ + ; 2 2 05942888 01189282 -convincingness n 1 1 @ 1 0 05192130 -conviviality n 2 3 @ ~ + 2 0 04653357 00509846 -convocation n 2 2 @ + 2 0 08402222 01230850 -convolution n 3 4 @ ~ #p + 3 0 13878112 05492426 00404959 -convolution_of_broca n 1 2 @ #p 1 0 05488385 -convolvulaceae n 1 3 @ #m %m 1 0 12823164 -convolvulus n 1 3 @ ~ #m 1 0 12823717 -convolvulus_arvensis n 1 2 @ #m 1 0 12824053 -convolvulus_scammonia n 1 1 @ 1 0 12824289 -convolvulus_sepium n 1 2 @ #m 1 0 12825061 -convoy n 3 2 @ + 3 1 08417801 08417673 00827974 -convulsion n 4 3 @ ~ + 4 0 14082788 14082595 13977732 07305438 -cony n 3 4 @ ~ #m %p 3 0 02372584 02328429 02324045 -conyza n 1 3 @ #m %m 1 0 11956208 -conyza_canadensis n 1 2 @ #m 1 0 11956348 -coo n 1 2 @ + 1 0 07381329 -cook n 2 3 @ ~ + 2 1 09963320 10908313 -cook_strait n 1 2 @ #p 1 0 09255768 -cookbook n 1 1 @ 1 0 06413020 -cooke n 2 2 @ ; 2 0 10908756 10908534 -cooker n 1 3 @ ~ + 1 0 03101156 -cookery n 1 5 @ ~ %p + - 1 0 00243918 -cookery_book n 1 1 @ 1 0 06413020 -cookfire n 1 1 @ 1 1 03101302 -cookhouse n 2 3 @ ~ #p 2 0 03412220 03101375 -cookie n 3 3 @ ~ ; 3 1 07635155 09963680 06387538 -cookie_cutter n 1 1 @ 1 0 03101517 -cookie_jar n 1 1 @ 1 0 03101664 -cookie_jar_reserve n 1 1 @ 1 0 13369723 -cookie_sheet n 1 1 @ 1 0 03101796 -cooking n 1 5 @ ~ %p + - 1 1 00243918 -cooking_apple n 1 3 ! @ ~ 1 0 07742012 -cooking_chocolate n 1 1 @ 1 0 07602279 -cooking_oil n 1 1 @ 1 0 07673145 -cooking_pan n 1 2 @ ~ 1 0 03880531 -cooking_stove n 1 3 @ ~ %p 1 0 04330340 -cooking_utensil n 1 2 @ ~ 1 1 03101986 -cookout n 1 3 @ ~ + 1 0 07576577 -cookstove n 1 2 @ %p 1 0 03102371 -cookware n 1 2 @ ~ 1 0 03101986 -cooky n 2 3 @ ~ ; 2 0 09963680 07635155 -cooky_jar n 1 1 @ 1 0 03101664 -cool n 2 2 @ + 2 0 05016001 04904162 -cool_jazz n 1 1 @ 1 0 07063413 -coolant n 1 2 @ + 1 1 14822141 -coolant_system n 1 1 @ 1 0 03102516 -cooler n 3 2 @ + 3 1 03102654 07914006 03102771 -cooley's_anaemia n 1 1 @ 1 0 14195939 -cooley's_anemia n 1 1 @ 1 0 14195939 -coolidge n 1 1 @ 1 0 10908919 -coolie n 1 2 @ ; 1 0 09642917 -cooling n 2 4 @ ~ %p + 2 2 13453160 03102859 -cooling_system n 2 4 @ ~ #p %p 2 0 03103128 03102859 -cooling_tower n 1 1 @ 1 0 03103396 -coolness n 4 3 @ ~ + 4 3 07515328 05015678 04858632 04629604 -coolwart n 1 2 @ #m 1 0 12803754 -cooly n 1 2 @ ; 1 0 09642917 -coon n 3 2 @ ; 3 1 09613559 09638009 02508213 -coon_bear n 1 2 @ #m 1 0 02510455 -coon_cat n 2 2 @ #m 2 0 02509515 02508742 -coondog n 1 1 @ 1 0 02088992 -coonhound n 1 2 @ ~ 1 0 02088839 -coonskin n 1 1 @ 1 0 03103563 -coonskin_cap n 1 1 @ 1 0 03103563 -coontie n 1 1 @ 1 0 11602091 -coop n 2 2 @ ~ 2 1 03016389 02936714 -cooper n 4 2 @ + 4 0 10909471 10909303 10909127 09963773 -cooper's_hawk n 1 2 @ #m 1 0 01606809 -cooper_union n 1 2 @ #p 1 0 03103682 -cooper_union_for_the_advancement_of_science_and_art n 1 2 @ #p 1 0 03103682 -cooperation n 2 4 ! @ ~ + 2 2 01202904 00411384 -cooperative n 2 1 @ 2 2 01100877 08227088 -cooperativeness n 1 2 @ + 1 0 04906026 -cooperator n 1 3 @ ~ + 1 0 09935434 -cooperstown n 1 3 @ #p %p 1 0 09118639 -coordinate n 1 2 @ ~ 1 1 06010930 -coordinate_axis n 1 3 @ ~ #p 1 0 06008896 -coordinate_bond n 1 1 @ 1 0 11437957 -coordinate_clause n 1 2 @ #p 1 0 06314595 -coordinate_geometry n 1 2 @ ; 1 0 06008382 -coordinate_system n 1 3 @ ~ %p 1 0 05728024 -coordinated_universal_time n 1 2 @ ~ 1 0 15130434 -coordinating_conjunction n 2 1 @ 2 0 13799655 06326054 -coordination n 4 4 ! @ ~ + 4 2 05641556 00807273 13800539 05641432 -coordination_compound n 1 2 @ ~ 1 0 14817592 -coordinator n 1 2 @ + 1 1 09963914 -coosa n 1 2 @ #p 1 0 09255921 -coosa_river n 1 2 @ #p 1 0 09255921 -coot n 1 3 @ ~ #m 1 0 02018027 -cooter n 1 2 @ #m 1 0 01668892 -cootie n 1 2 @ #m 1 0 02184720 -cop n 1 3 @ + ; 1 1 09879144 -copaiba n 1 1 @ 1 0 14897620 -copaiba_balsam n 1 1 @ 1 0 14897620 -copal n 1 2 @ ~ 1 0 14895189 -copaline n 1 1 @ 1 0 14895373 -copalite n 1 1 @ 1 0 14895373 -copartner n 1 3 @ + ; 1 0 09964064 -copartnership n 1 2 @ + 1 0 08060878 -cope n 2 2 @ #p 2 0 03503097 03103904 -copeck n 1 2 @ #p 1 0 13699189 -copehan n 1 2 @ ~ 1 0 06924214 -copenhagen n 1 2 @ #p 1 1 08761868 -copepod n 1 4 @ ~ #m #p 1 0 01996585 -copepod_crustacean n 1 4 @ ~ #m #p 1 0 01996585 -copepoda n 1 3 @ #m %m 1 0 01996392 -copernican_system n 1 2 @ ; 1 0 05890642 -copernicia n 1 3 @ #m %m 1 0 12588156 -copernicia_alba n 1 2 @ #m 1 0 12588780 -copernicia_australis n 1 2 @ #m 1 0 12588780 -copernicia_cerifera n 1 3 @ #m %s 1 0 12588320 -copernicia_prunifera n 1 3 @ #m %s 1 0 12588320 -copernicus n 2 1 @ 2 0 10909724 09256182 -copestone n 2 2 @ #p 2 0 05642678 02957427 -copier n 1 3 @ ~ + 1 0 03257586 -copilot n 1 2 @ #m 1 0 09964202 -coping n 1 2 @ #p 1 1 03503097 -coping_saw n 1 1 @ 1 0 03104019 -coping_stone n 1 2 @ #p 1 0 02957427 -copiousness n 1 3 @ ~ + 1 0 05115040 -copland n 1 1 @ 1 0 10909929 -copley n 1 1 @ 1 0 10910076 -copolymer n 1 2 @ + 1 0 14902949 -copout n 1 2 @ + 1 0 00069060 -copper n 5 6 @ ~ #m #s + ; 5 1 14635722 13391774 09879144 04973669 02282385 -copper's_nark n 1 2 @ ; 1 0 10345659 -copper-base_alloy n 1 2 @ ~ 1 0 14822563 -copper_beech n 1 2 @ #m 1 0 12261571 -copper_color n 1 1 @ 1 0 04973669 -copper_glance n 1 2 @ %s 1 0 14670344 -copper_mine n 1 1 @ 1 0 03104147 -copper_nose n 1 1 @ 1 0 14397040 -copper_oxide n 1 1 @ 1 0 14822762 -copper_pyrites n 1 2 @ %s 1 0 14670481 -copper_rockfish n 1 1 @ 1 0 02644360 -copper_sulfate n 1 2 @ ~ 1 0 14822839 -copper_sulphate n 1 2 @ ~ 1 0 14822839 -copperhead n 2 2 @ #m 2 0 01754370 01747589 -copperplate n 3 1 @ 3 0 06350777 03104413 03104247 -copperplate_engraving n 1 1 @ 1 0 03104247 -coppersmith n 1 1 @ 1 0 09964315 -copperware n 1 1 @ 1 0 03104512 -coppice n 1 2 @ ~ 1 0 08437515 -coppola n 1 1 @ 1 0 10910305 -copra n 1 2 @ #s 1 0 07773572 -copra_oil n 1 2 @ #s 1 0 07674161 -coprinaceae n 1 2 @ #m 1 0 13005835 -coprinus n 1 3 @ #m %m 1 0 13005568 -coprinus_atramentarius n 1 2 @ #m 1 0 13005984 -coprinus_comatus n 1 2 @ #m 1 0 13006171 -coprolalia n 1 1 @ 1 0 14503528 -coprolite n 1 1 @ 1 0 09256272 -coprolith n 1 1 @ 1 0 09256360 -coprophagia n 1 1 @ 1 0 00839163 -coprophagy n 1 1 @ 1 0 00839163 -copse n 1 2 @ ~ 1 0 08437515 -copt n 2 3 @ #m + 2 0 09700706 09681234 -coptic n 1 2 @ + 1 0 06990371 -coptic_church n 1 2 @ %m 1 0 08087203 -coptis n 1 3 @ #m %m 1 0 11731861 -coptis_groenlandica n 1 2 @ #m 1 0 11732052 -coptis_trifolia_groenlandica n 1 2 @ #m 1 0 11732052 -copula n 1 2 @ + 1 0 06472824 -copulation n 1 4 @ ~ %p + 1 0 00845523 -copulative n 1 2 @ + 1 0 06472824 -copulative_conjunction n 1 1 @ 1 0 13799967 -copy n 4 5 @ ~ #s + ; 4 3 06505517 03104594 06390512 06676109 -copy_editing n 1 1 @ 1 0 06428105 -copy_editor n 1 1 @ 1 0 09964659 -copybook n 1 1 @ 1 0 06415922 -copycat n 1 2 @ ~ 1 0 09964411 -copyhold n 1 1 @ 1 0 13242923 -copyholder n 1 1 @ 1 0 03105088 -copying n 1 3 @ ~ + 1 0 01019524 -copyist n 1 3 @ ~ + 1 0 09964805 -copyreader n 1 2 @ + 1 0 09964659 -copyright n 1 2 @ + 1 0 06473168 -copyright_infringement n 1 2 @ ~ 1 0 00770834 -copywriter n 1 1 @ 1 0 09965021 -coq_au_vin n 1 1 @ 1 0 07861557 -coquetry n 1 2 @ + 1 0 00512522 -coquette n 1 2 @ + 1 1 09965134 -coquilla_nut n 1 2 @ #p 1 0 12585373 -coquille n 2 1 @ 2 0 07865700 03105214 -coquilles_saint-jacques n 1 1 @ 1 0 07865788 -cor_anglais n 1 1 @ 1 0 03288742 -cor_pulmonale n 1 1 @ 1 0 14367080 -cora n 1 2 @ ; 1 0 09569467 -coracan n 1 2 @ #m 1 0 12118661 -coracias n 1 3 @ #m %m 1 0 01826542 -coracias_garrulus n 1 2 @ #m 1 0 01826680 -coraciidae n 1 3 @ #m %m 1 0 01826223 -coraciiform_bird n 1 3 @ ~ #m 1 0 01825930 -coraciiformes n 1 3 @ #m %m 1 0 01825417 -coracle n 1 1 @ 1 0 03105306 -coragyps n 1 3 @ #m %m 1 0 01620282 -coragyps_atratus n 1 2 @ #m 1 0 01620414 -corakan n 1 2 @ #m 1 0 12118661 -coral n 4 4 @ ~ #p + 4 1 04971820 14823036 07793795 01915811 -coral-root_bittercress n 1 1 @ 1 0 11882237 -coral-wood n 1 2 @ #m 1 0 11758799 -coral_bean n 1 2 @ #m 1 0 12570703 -coral_bean_tree n 1 1 @ 1 0 12528382 -coral_bush n 1 2 @ #m 1 0 12572188 -coral_drops n 1 2 @ #m 1 0 12443736 -coral_fungus n 1 3 @ ~ #m 1 0 12985857 -coral_gem n 1 1 @ 1 0 12545429 -coral_honeysuckle n 1 2 @ #m 1 0 12676703 -coral_necklace n 1 2 @ #m 1 0 11811059 -coral_pea n 1 3 @ ~ #m 1 0 12536871 -coral_reef n 1 2 @ ~ 1 0 09256479 -coral_root n 1 3 @ ~ #m 1 0 12053405 -coral_sea n 2 4 @ #p ; - 2 0 09256663 01276194 -coral_snake n 2 2 @ ~ 2 0 01746359 01745484 -coral_tree n 1 3 @ ~ #m 1 0 12527738 -coral_vine n 1 1 @ 1 0 12537068 -coralbells n 1 2 @ #m 1 0 12798910 -coralberry n 2 2 @ #m 2 0 12677841 12097396 -corallorhiza n 1 3 @ #m %m 1 0 12053138 -corallorhiza_maculata n 1 1 @ 1 0 12053690 -corallorhiza_striata n 1 1 @ 1 0 12053962 -corallorhiza_trifida n 1 1 @ 1 0 12054195 -coralroot n 1 1 @ 1 0 11882237 -coralwood n 1 2 @ #m 1 0 11758799 -coralwort n 1 1 @ 1 0 11882237 -corbel n 1 3 @ + ; 1 0 03105467 -corbel_arch n 1 2 @ ; 1 0 03105645 -corbel_step n 1 2 @ ; 1 0 03105810 -corbett n 1 1 @ 1 0 10910421 -corbie-step n 1 2 @ ; 1 0 03105810 -corbie_gable n 1 2 @ ; 1 0 03105974 -corbiestep n 1 2 @ ; 1 0 03105810 -corbina n 1 1 @ 1 0 02598134 -corchorus n 2 3 @ #m %m 2 0 12204730 12204546 -cord n 4 3 @ ~ + 4 1 03106110 13602401 03106898 03106722 -cord_blood n 1 1 @ 1 0 05402472 -cord_grass n 1 3 @ ~ #m 1 0 12139575 -cordage n 2 2 @ ~ 2 0 13579829 03107046 -cordaitaceae n 1 3 @ #m %m 1 0 11606661 -cordaitales n 1 3 @ #m %m 1 0 11606379 -cordaites n 1 2 @ #m 1 0 11606846 -cordarone n 1 2 @ ; 1 0 02702304 -cordate_leaf n 1 1 @ 1 0 13157780 -corday n 1 1 @ 1 0 10910580 -cordell_hull n 1 1 @ 1 0 11065562 -cordgrass n 1 3 @ ~ #m 1 0 12139575 -cordia n 1 3 @ #m %m 1 0 12818147 -cordia_alliodora n 1 2 @ #m 1 0 12818346 -cordia_gerascanthus n 1 2 @ #m 1 0 12818601 -cordial n 1 2 @ ~ 1 0 07907943 -cordial_reception n 1 1 @ 1 0 06631506 -cordiality n 1 2 @ + 1 0 04655929 -cordierite n 1 2 @ ~ 1 0 14672544 -cordite n 1 2 @ %s 1 0 03107152 -corditis n 1 1 @ 1 0 14341563 -cordoba n 4 3 @ #p %p 4 0 13691269 10910769 09025728 08713136 -cordon n 3 1 @ 3 0 08376948 07267931 03107383 -cordon_bleu n 2 1 @ 2 0 09965424 07268302 -cordova n 3 2 @ #p 3 0 10910769 09025728 08713136 -cordovan n 1 1 @ 1 0 14762145 -cords n 1 2 @ ; 1 0 03107488 -corduroy n 2 3 @ ~ + 2 1 03106722 03107609 -corduroys n 1 2 @ ; 1 1 03107488 -cordwood n 1 1 @ 1 0 15100834 -cordylidae n 1 3 @ #m %m 1 0 01684941 -cordyline n 1 3 @ #m %m 1 0 12478283 -cordyline_australis n 1 2 @ #m 1 0 12478768 -cordyline_terminalis n 1 2 @ #m 1 0 12478506 -cordylus n 1 2 @ #m 1 0 01685107 -core n 10 5 @ ~ #p + ; 10 5 08242223 08524262 09256815 05921123 09256895 08308922 06604066 03108069 03107904 03107716 -core_bit n 1 2 @ #p 1 0 03108455 -core_drill n 1 2 @ %p 1 0 03108624 -core_dump n 1 2 @ ; 1 0 06390051 -core_group n 1 2 @ ~ 1 0 08242223 -core_memory n 1 3 @ %p ; 1 0 03706415 -coreference n 1 3 @ ~ + 1 0 13799063 -coregonidae n 1 3 @ #m %m 1 0 02538730 -coregonus n 1 3 @ #m %m 1 0 02539251 -coregonus_artedi n 1 3 @ #m %p 1 0 02539573 -coregonus_clupeaformis n 1 2 @ #m 1 0 02539424 -coreid n 1 3 @ ~ #m 1 0 02239528 -coreid_bug n 1 3 @ ~ #m 1 0 02239528 -coreidae n 1 3 @ #m %m 1 0 02239347 -coreligionist n 1 1 @ 1 0 09965515 -corelli n 1 1 @ 1 0 10910948 -coreopsis n 1 3 @ ~ #m 1 0 11956850 -coreopsis_gigantea n 1 1 @ 1 0 11957317 -coreopsis_maritima n 1 1 @ 1 0 11957514 -coreopsis_tinctoria n 1 1 @ 1 0 11957678 -corer n 1 1 @ 1 0 03108759 -corespondent n 1 1 @ 1 0 09965625 -corgard n 1 2 @ ; 1 0 03804311 -corgi n 1 2 @ ~ 1 0 02112826 -coriander n 3 4 @ #m #p %p 3 0 12936469 07817465 07817315 -coriander_plant n 1 3 @ #m %p 1 0 12936469 -coriander_seed n 1 2 @ #p 1 0 07817465 -coriandrum n 1 2 @ %m 1 0 12936333 -coriandrum_sativum n 1 3 @ #m %p 1 0 12936469 -coricidin n 1 2 @ ; 1 0 03022978 -corinth n 1 4 @ #p %m + 1 0 08786432 -corinthian n 2 3 @ #m + 2 0 10439727 09711320 -corinthian_order n 1 1 @ 1 0 04699298 -coriolis_effect n 1 2 @ ; 1 0 11413263 -coriolis_force n 1 2 @ ; 1 0 11440123 -corium n 1 2 @ #p 1 0 05243879 -corixa n 1 3 @ #m %m 1 0 02243065 -corixidae n 1 3 @ #m %m 1 0 02242942 -cork n 5 5 @ #m #p + ; 5 1 14823227 14823547 08889400 03108853 02860063 -cork_jacket n 1 2 @ ~ 1 0 03662887 -cork_oak n 1 1 @ 1 0 12278650 -cork_tree n 2 2 @ #m 2 0 12713866 12529220 -corkage n 1 1 @ 1 0 13307995 -corkboard n 1 1 @ 1 0 14823376 -corker n 2 3 @ + ; 2 0 06506603 03109033 -corkscrew n 1 1 @ 1 1 03109150 -corkscrew_flower n 1 2 @ #m 1 0 12577895 -corkwood n 1 2 @ #m 1 0 11742878 -corkwood_family n 1 3 @ #m %m 1 0 11742531 -corkwood_tree n 1 2 @ #m 1 0 11742878 -corm n 1 2 @ + 1 0 13134680 -cormorant n 1 2 @ #m 1 0 02054036 -cormous_plant n 1 2 @ ~ 1 0 13134844 -corn n 7 7 @ ~ #m #p %s %p + 7 3 12143676 12144580 07731952 14364802 12144117 07906877 04627809 -corn_beef n 1 1 @ 1 0 07664266 -corn_belt n 1 2 @ %p 1 0 08543916 -corn_borer n 2 2 @ #m 2 0 02309841 02289610 -corn_borer_moth n 1 2 @ #m 1 0 02289610 -corn_cake n 1 1 @ 1 0 07688021 -corn_campion n 1 2 @ #m 1 0 11805544 -corn_chamomile n 1 2 @ #m 1 0 11923637 -corn_chip n 1 2 @ ~ 1 0 07712748 -corn_chowder n 1 1 @ 1 0 07587618 -corn_cob n 1 2 @ #p 1 0 08544125 -corn_cockle n 1 2 @ #m 1 0 11805544 -corn_dab n 1 1 @ 1 0 07688757 -corn_dance n 1 1 @ 1 0 00542065 -corn_dodger n 1 1 @ 1 0 07688757 -corn_earworm n 1 2 @ #m 1 0 02310334 -corn_exchange n 1 1 @ 1 0 03110937 -corn_field n 1 1 @ 1 0 08544719 -corn_flake n 1 1 @ 1 0 07705303 -corn_fritter n 1 1 @ 1 0 07640105 -corn_gluten n 1 1 @ 1 0 07570447 -corn_gluten_feed n 1 1 @ 1 0 07570530 -corn_lily n 1 2 @ #m 1 0 12417836 -corn_liquor n 1 1 @ 1 0 07902520 -corn_marigold n 1 2 @ #m 1 0 11950686 -corn_mayweed n 2 2 @ #m 2 0 12028424 11923637 -corn_mint n 1 1 @ 1 0 12855365 -corn_muffin n 1 1 @ 1 0 07690511 -corn_oil n 1 3 @ #s %s 1 0 07674267 -corn_poppy n 1 2 @ #m 1 0 11902200 -corn_pudding n 1 1 @ 1 0 07617932 -corn_salad n 1 3 @ ~ #m 1 0 12950669 -corn_silk n 1 1 @ 1 0 12145638 -corn_smut n 1 3 @ ~ #m 1 0 13067191 -corn_snake n 1 2 @ #m 1 0 01732614 -corn_snow n 1 1 @ 1 0 15044122 -corn_speedwell n 1 1 @ 1 0 12890928 -corn_spurrey n 1 2 @ #m 1 0 11817160 -corn_spurry n 1 2 @ #m 1 0 11817160 -corn_stalk n 1 2 @ #p 1 0 11678010 -corn_sugar n 2 1 @ 2 0 14823690 07596362 -corn_syrup n 1 1 @ 1 1 07860548 -corn_tash n 1 1 @ 1 0 07688265 -corn_whiskey n 1 2 @ ~ 1 0 07906877 -corn_whisky n 1 2 @ ~ 1 0 07906877 -cornaceae n 1 3 @ #m %m 1 0 12946088 -cornbread n 1 2 @ ~ 1 0 07687789 -corncob n 1 2 @ #p 1 0 08544125 -corncrake n 1 2 @ #m 1 0 02015797 -corncrib n 1 1 @ 1 0 03109253 -cornea n 1 4 @ ~ #p + 1 0 05317354 -corneal_graft n 1 2 @ ~ 1 0 00681613 -corneal_transplant n 1 2 @ ~ 1 0 00681613 -corned_beef n 1 1 @ 1 0 07664266 -corned_beef_hash n 1 1 @ 1 0 07869522 -corneille n 1 1 @ 1 0 10911104 -cornel n 1 4 @ ~ #m %s 1 0 12946849 -cornelia_otis_skinner n 1 1 @ 1 0 11304669 -cornelian n 1 1 @ 1 0 14801594 -cornelian_cherry n 1 1 @ 1 0 12948495 -cornelis_jansen n 1 1 @ 1 0 11080745 -cornelius_jansenius n 1 1 @ 1 0 11080745 -cornelius_vanderbilt n 1 1 @ 1 0 11359187 -cornell n 2 1 @ 2 0 10911534 10911288 -cornell_university n 1 3 @ #m #p 1 0 03109350 -corner n 11 5 @ ~ #p + ; 11 9 08544419 08544275 03109881 03109486 08659993 13872421 14445072 14408951 09257011 08544593 03109693 -corner_kick n 1 1 @ 1 0 00137709 -corner_man n 1 2 @ #m 1 0 10056719 -corner_pocket n 1 1 @ 1 0 03110100 -corner_post n 1 1 @ 1 1 03110202 -cornerback n 1 1 @ 1 0 09965787 -cornerstone n 3 3 @ ~ #p 3 0 05793554 03110470 03110332 -cornet n 1 3 @ ~ + 1 0 03110669 -cornetfish n 1 2 @ #m 1 0 01454545 -cornetist n 1 3 @ ~ + 1 0 10732010 -corneum n 1 2 @ #p 1 0 05243077 -cornfield n 1 1 @ 1 1 08544719 -cornflour n 1 1 @ 1 0 15054467 -cornflower n 2 2 @ #m 2 0 12475242 11947802 -cornflower_aster n 1 2 @ #m 1 0 12020184 -cornhusk n 1 1 @ 1 0 13139837 -cornhusker n 2 1 @ 2 0 09965905 09744161 -cornhusker_state n 1 3 @ #p %p 1 0 09109444 -cornhusking n 2 1 @ 2 0 08188967 01265071 -cornice n 3 3 @ #p + 3 0 03111296 03111177 03111041 -cornish n 2 1 @ 2 0 06961681 01790398 -cornish_fowl n 1 1 @ 1 0 01790398 -cornish_heath n 1 1 @ 1 0 12228689 -cornish_pasty n 1 1 @ 1 0 07865911 -cornishman n 1 2 @ #m 1 0 09703809 -cornishwoman n 1 2 @ #m 1 0 09703932 -cornmeal n 1 2 @ #s 1 1 07568095 -cornmeal_mush n 1 3 @ ~ %s 1 0 07703333 -cornpone n 1 1 @ 1 0 07688624 -cornsilk n 1 1 @ 1 0 12145638 -cornsmut n 1 3 @ ~ #m 1 0 13067191 -cornstalk n 1 2 @ #p 1 0 11678010 -cornstarch n 1 1 @ 1 0 15054467 -cornu n 1 2 @ ; 1 0 05607001 -cornucopia n 2 2 @ ~ 2 0 06808121 05115804 -cornus n 1 3 @ #m %m 1 0 12946578 -cornus_amomum n 1 1 @ 1 0 12947895 -cornus_canadensis n 1 1 @ 1 0 12948251 -cornus_florida n 1 1 @ 1 0 12947313 -cornus_mas n 1 1 @ 1 0 12948495 -cornus_obliqua n 1 1 @ 1 0 12947756 -cornus_sanguinea n 1 1 @ 1 0 12948053 -cornus_stolonifera n 1 1 @ 1 0 12947544 -cornwall n 1 3 @ #p %m 1 0 08881398 -cornwallis n 1 1 @ 1 0 10911687 -corokia n 1 2 @ #m 1 0 12948633 -corolla n 1 4 @ #p %p ; 1 0 11691046 -corollary n 2 2 @ ; 2 0 07294260 05780563 -corona n 6 4 @ #p + ; 6 1 11427067 11691332 11440802 11440691 05607126 03111483 -corona_borealis n 1 1 @ 1 0 09257141 -corona_discharge n 1 1 @ 1 0 11440802 -coronach n 1 2 @ ~ 1 0 07050619 -coronal n 1 2 @ ~ 1 0 04606014 -coronal_suture n 1 2 @ #p 1 0 05543917 -coronary n 1 2 @ #p 1 0 14102831 -coronary-artery_disease n 1 2 @ ~ 1 0 14108324 -coronary_artery n 1 3 @ ~ #p 1 1 05343718 -coronary_artery_bypass_graft n 1 1 @ 1 0 00675808 -coronary_artery_disease n 1 1 @ 1 0 14108713 -coronary_bypass n 1 1 @ 1 0 00675808 -coronary_bypass_surgery n 1 1 @ 1 0 00675808 -coronary_care_unit n 1 2 @ #p 1 0 08077842 -coronary_failure n 1 2 @ ~ 1 0 14112255 -coronary_heart_disease n 1 2 @ ~ 1 0 14102631 -coronary_insufficiency n 1 1 @ 1 0 14113636 -coronary_occlusion n 1 1 @ 1 0 14102454 -coronary_sinus n 1 1 @ 1 0 05252402 -coronary_thrombosis n 1 2 @ #p 1 0 14102831 -coronation n 1 2 @ + 1 0 07453638 -coroner n 1 1 @ 1 1 09965985 -coronet n 2 2 @ #p 2 0 03111564 02462213 -coronilla n 1 3 @ ~ #m 1 0 12518879 -coronilla_varia n 1 2 @ #m 1 0 12519089 -coronion n 1 2 @ #p 1 0 05232074 -coronoid_process n 1 3 @ ~ #p 1 0 05472032 -coronoid_process_of_the_mandible n 1 3 @ #p %p 1 0 05472205 -coropuna n 1 2 @ #p 1 0 09257280 -corot n 1 1 @ 1 0 10911948 -corozo n 1 2 @ #m 1 0 12589142 -corozo_palm n 1 2 @ #m 1 0 12589142 -corp n 1 3 @ ~ - 1 0 08059412 -corporal n 1 1 @ 1 1 09966139 -corporal_punishment n 1 2 @ ~ 1 0 01161161 -corporality n 1 3 @ ~ = 1 0 04760771 -corporate_bond n 1 1 @ 1 0 13337770 -corporate_executive n 1 2 @ ~ 1 0 09966255 -corporate_finance n 1 2 @ - 1 0 01098968 -corporate_investor n 1 2 @ ~ 1 0 08075929 -corporate_trust n 1 2 @ ~ 1 0 08236621 -corporation n 2 4 @ ~ ; - 2 1 08059412 05556071 -corporation_law n 1 2 @ - 1 0 06162223 -corporatism n 1 1 @ 1 0 05197043 -corporatist n 1 1 @ 1 0 09966470 -corporeality n 1 5 ! @ ~ = + 1 1 04760771 -corposant n 1 1 @ 1 0 11440802 -corps n 2 4 @ ~ #m %m 2 2 08212527 08213079 -corps_de_ballet n 1 2 @ #m 1 0 08189089 -corps_diplomatique n 1 1 @ 1 0 08357647 -corpse n 1 2 @ ~ 1 1 05218119 -corpulence n 1 2 @ + 1 1 05000537 -corpulency n 1 2 @ ~ 1 0 05000342 -corpus n 3 2 @ #p 3 0 13355868 07955455 05221526 -corpus_amygdaloideum n 1 2 @ #p 1 0 05495571 -corpus_callosum n 1 2 @ #p 1 0 05491461 -corpus_christi n 2 2 @ #p 2 0 15193660 09143649 -corpus_delicti n 1 2 @ ; 1 1 06734823 -corpus_geniculatum_laterale n 1 1 @ 1 0 05487694 -corpus_geniculatum_mediale n 1 1 @ 1 0 05487941 -corpus_luteum n 1 3 @ #p + 1 0 05518614 -corpus_mamillare n 1 2 @ #p 1 0 05228020 -corpus_sternum n 1 2 @ #p 1 0 05281452 -corpus_striatum n 1 2 @ %p 1 0 05499542 -corpuscle n 2 4 @ ~ #p + 2 0 14585519 05449268 -corpuscular-radiation_pressure n 1 2 @ ~ 1 1 11497173 -corpuscular_radiation n 1 2 @ ~ 1 1 11499510 -corpuscular_theory n 1 3 ! @ ; 1 0 06106084 -corpuscular_theory_of_light n 1 3 ! @ ; 1 0 06106084 -corral n 1 2 @ + 1 1 03124590 -corrasion n 1 2 @ + 1 0 13423615 -correction n 7 3 @ ~ + 7 3 00258854 13755957 06428537 06714288 05111511 01161821 00662527 -correctional_institution n 1 2 @ ~ 1 0 03111690 -correctional_rehabilitation n 1 1 @ 1 0 00400851 -corrections n 2 1 @ 2 0 08120624 01166092 -correctitude n 1 3 @ ~ = 1 0 04898437 -corrective n 1 2 @ ~ 1 0 03111899 -correctness n 2 5 ! @ ~ = + 2 1 04802198 04899201 -correggio n 1 1 @ 1 0 10912079 -corregidor n 1 3 @ #p ; 1 0 01270343 -correlate n 1 2 @ + 1 0 05858407 -correlation n 3 5 @ ~ #p + ; 3 2 13841651 06032246 06031248 -correlation_coefficient n 1 3 @ ~ ; 1 0 06032246 -correlation_matrix n 1 2 @ ; 1 0 06030049 -correlation_table n 1 2 @ ; 1 0 06030906 -correlational_analysis n 1 4 @ ~ %p ; 1 0 06029830 -correlational_statistics n 1 3 @ ~ #p 1 0 06031248 -correlative n 1 1 @ 1 0 05858407 -correlativity n 1 2 @ + 1 0 13841651 -correspondence n 5 5 @ ~ %p + ; 5 2 06623614 04713428 13817279 05064827 04745240 -correspondence_course n 1 1 @ 1 1 00890320 -correspondence_school n 1 1 @ 1 0 08278589 -correspondent n 2 3 @ ~ + 2 2 09966554 09966710 -corrida n 1 2 @ ~ 1 0 02917163 -corridor n 1 2 @ ~ 1 1 03112099 -corrie n 1 1 @ 1 0 09245515 -corrigenda n 1 1 @ 1 0 06489847 -corrigendum n 1 1 @ 1 0 06769578 -corroborating_evidence n 1 2 @ ; 1 0 06735731 -corroboration n 1 2 @ + 1 0 06650431 -corrodentia n 1 3 @ #m %m 1 0 02260183 -corroding n 1 3 @ ~ + 1 0 13453428 -corrosion n 2 3 @ ~ + 2 0 14561995 13453428 -corrosive n 1 2 @ + 1 0 14823788 -corrosive_sublimate n 1 1 @ 1 0 14950694 -corrugated_board n 1 1 @ 1 0 14800979 -corrugated_cardboard n 1 1 @ 1 0 14800979 -corrugated_fastener n 1 1 @ 1 0 03112240 -corrugated_iron n 1 2 @ %s 1 1 03112431 -corrugation n 2 2 @ + 2 0 13902229 00406485 -corruptibility n 1 3 ! @ + 1 0 04851585 -corruption n 6 4 @ ~ = + 6 1 04853948 14561102 13453640 04850996 00272448 00159396 -corruptness n 2 5 ! @ ~ = + 2 0 14440035 04853948 -corsage n 1 1 @ 1 1 02879087 -corsair n 2 2 @ ~ 2 0 09966941 03112605 -corse n 2 3 @ #p - 2 0 08942091 08941895 -corselet n 1 1 @ 1 0 03112719 -corset n 1 3 @ ~ + 1 0 03112869 -corsica n 2 4 @ #p + - 2 0 08942091 08941895 -corsican_army n 1 2 @ ; 1 0 08015731 -corslet n 1 1 @ 1 0 03112719 -cortaderia n 1 3 @ #m %m 1 0 12114981 -cortaderia_richardii n 1 1 @ 1 0 12115383 -cortaderia_selloana n 1 2 @ #m 1 0 12115180 -cortef n 1 2 @ ; 1 0 14752702 -cortege n 2 3 @ ~ %p 2 0 08429482 08429167 -cortes n 1 1 @ 1 0 10912243 -cortex n 3 7 ! @ ~ #p %s %p + 3 2 05486510 05490578 05320636 -cortez n 1 1 @ 1 0 10912243 -cortical_area n 1 3 @ ~ #p 1 0 05486920 -cortical_cataract n 1 1 @ 1 0 14256014 -cortical_epilepsy n 1 3 @ ~ %p 1 0 14086626 -cortical_potential n 1 3 @ ~ ; 1 1 11431302 -cortical_region n 1 3 @ ~ #p 1 0 05486920 -corticium n 1 3 @ #m %m 1 0 13015229 -corticium_salmonicolor n 1 2 @ #m 1 0 13015509 -corticium_solani n 1 2 @ #m 1 0 13015688 -corticoid n 1 2 @ ~ 1 0 14751417 -corticospinal_tract n 1 3 @ #p %p 1 0 05491612 -corticosteroid n 1 2 @ ~ 1 1 14751417 -corticosterone n 1 1 @ 1 0 14745891 -corticotrophin n 1 1 @ 1 0 05408113 -corticotropin n 1 1 @ 1 1 05408113 -cortina n 1 1 @ 1 0 13073979 -cortinariaceae n 1 3 @ #m %m 1 0 13074084 -cortinarius n 1 3 @ #m %m 1 0 13074277 -cortinarius_armillatus n 1 1 @ 1 0 13074619 -cortinarius_atkinsonianus n 1 2 @ #m 1 0 13074814 -cortinarius_corrugatus n 1 2 @ #m 1 0 13075020 -cortinarius_gentilis n 1 2 @ #m 1 0 13075272 -cortinarius_mutabilis n 1 2 @ #m 1 0 13075441 -cortinarius_semisanguineus n 1 2 @ #m 1 0 13075684 -cortinarius_subfoetidus n 1 2 @ #m 1 0 13075847 -cortinarius_violaceus n 1 2 @ #m 1 0 13076041 -cortisol n 1 1 @ 1 0 14752702 -cortisone n 1 1 @ 1 0 14752952 -cortland n 1 1 @ 1 0 07740033 -cortone_acetate n 1 2 @ ; 1 0 14752952 -corundom n 1 3 @ ~ #s 1 0 14672717 -corundum n 1 3 @ ~ #s 1 0 14672717 -coruscation n 2 2 @ + 2 0 07412668 05619903 -corvee n 1 1 @ 1 0 00621326 -corvette n 1 1 @ 1 0 03113035 -corvidae n 1 3 @ #m %m 1 0 01578341 -corvine_bird n 1 3 @ ~ #m 1 0 01578575 -corvus n 2 3 @ #m %m 2 0 09257429 01578821 -corvus_brachyrhyncos n 1 1 @ 1 0 01579149 -corvus_corax n 1 2 @ #m 1 0 01579260 -corvus_frugilegus n 1 2 @ #m 1 0 01579410 -corvus_monedula n 1 2 @ #m 1 0 01579578 -coryanthes n 1 3 @ #m %m 1 0 12054499 -corydalidae n 1 3 @ #m %m 1 0 02265717 -corydalis n 3 4 @ ~ #m %m 3 0 11904109 11903881 02265860 -corydalis_claviculata n 1 2 @ #m 1 0 11904274 -corydalis_sempervirens n 1 1 @ 1 0 11904477 -corydalis_solida n 1 1 @ 1 0 11904743 -corydalus n 1 3 @ #m %m 1 0 02265860 -corydalus_cornutus n 1 2 @ #m 1 0 02266050 -corylaceae n 1 2 @ #m 1 0 12288422 -corylopsis n 1 3 @ #m %m 1 0 12315424 -corylus n 1 3 @ #m %m 1 0 12288598 -corylus_americana n 1 1 @ 1 0 12289310 -corylus_avellana n 1 1 @ 1 0 12289433 -corylus_avellana_grandis n 1 1 @ 1 0 12289433 -corylus_cornuta n 1 1 @ 1 0 12289585 -corymb n 1 1 @ 1 0 13131282 -corynebacteriaceae n 1 3 @ #m %m 1 0 01366015 -corynebacterium n 1 3 @ ~ #m 1 0 01366276 -corynebacterium_diphtheriae n 1 2 @ #m 1 0 01366700 -corypha n 1 3 @ #m %m 1 0 12589286 -corypha_gebanga n 1 2 @ #m 1 0 12589458 -corypha_umbraculifera n 1 3 @ #m %p 1 0 12589841 -corypha_utan n 1 2 @ #m 1 0 12589458 -coryphaena_equisetis n 1 1 @ 1 0 02582349 -coryphaena_hippurus n 1 1 @ 1 0 02582220 -coryphaenidae n 1 3 @ #m %m 1 0 02581803 -coryphantha n 1 2 @ #m 1 0 11845277 -corythosaur n 1 2 @ #m 1 0 01706686 -corythosaurus n 1 2 @ #m 1 0 01706686 -coryza n 1 2 @ ~ 1 0 14355060 -cos n 2 1 @ 2 0 13787723 07724492 -cos_lettuce n 2 2 @ #m 2 0 11986729 07724492 -cosa_nostra n 1 3 @ %m - 1 0 08245802 -coscoroba n 1 2 @ #m 1 0 01858281 -cosec n 1 1 @ 1 0 13789002 -cosecant n 1 1 @ 1 1 13789002 -cosh n 1 2 @ + 1 0 02847461 -cosignatory n 1 1 @ 1 0 09613690 -cosigner n 2 2 @ + 2 1 09613690 09613853 -cosimo_de_medici n 1 1 @ 1 0 10912451 -cosimo_the_elder n 1 1 @ 1 0 10912451 -cosine n 1 1 @ 1 0 13787723 -cosiness n 1 2 @ + 1 0 14446298 -cosmea n 1 2 @ #m 1 0 11958080 -cosmetic n 1 2 @ ~ 1 0 03113152 -cosmetic_dentistry n 1 1 @ 1 0 06047923 -cosmetic_surgeon n 1 1 @ 1 0 09967270 -cosmetic_surgery n 1 2 @ ~ 1 0 00674158 -cosmetician n 2 2 @ ~ 2 0 09967063 09845999 -cosmetologist n 1 2 @ + 1 0 09967159 -cosmetology n 1 2 @ + 1 0 00631887 -cosmic_background_radiation n 1 2 @ ; 1 0 11441077 -cosmic_dust n 1 2 @ #s 1 0 11441416 -cosmic_microwave_background n 1 2 @ ; 1 0 11441077 -cosmic_microwave_background_radiation n 1 2 @ ; 1 0 11441077 -cosmic_radiation n 1 3 @ ~ %p 1 0 11441561 -cosmic_ray n 1 2 @ #p 1 0 11441707 -cosmic_string n 1 2 @ ; 1 0 09449282 -cosmic_time n 1 2 @ ~ 1 0 15116724 -cosmid n 1 2 @ ; 1 0 01372199 -cosmocampus n 1 3 @ #m %m 1 0 01456296 -cosmocampus_profundus n 1 2 @ #m 1 0 01456454 -cosmogeny n 1 2 @ - 1 0 06098195 -cosmogony n 1 3 @ + - 1 0 06098195 -cosmographer n 1 2 @ + 1 0 09819477 -cosmographist n 1 2 @ + 1 0 09819477 -cosmography n 2 2 @ + 2 0 06123126 03113337 -cosmolatry n 1 1 @ 1 0 01045924 -cosmological_constant n 1 1 @ 1 0 13589546 -cosmologist n 1 3 @ ~ + 1 0 09819667 -cosmology n 2 3 @ + - 2 0 06163223 06098195 -cosmonaut n 1 2 @ ~ 1 0 09818022 -cosmopolitan n 1 2 @ ~ 1 0 09967406 -cosmopolite n 1 2 @ ~ 1 0 09967406 -cosmos n 2 6 @ ~ #m %m %p + 2 1 09466280 11958080 -cosmotron n 1 1 @ 1 0 03113505 -coss n 1 1 @ 1 0 13652529 -cossack n 1 1 @ 1 0 09967555 -cost n 3 3 @ ~ + 3 3 13275847 05145118 05163807 -cost-benefit_analysis n 1 1 @ 1 0 05781953 -cost-of-living_allowance n 1 1 @ 1 0 13274364 -cost-of-living_benefit n 1 1 @ 1 0 13297097 -cost-of-living_index n 1 1 @ 1 0 06641654 -cost-plus_contract n 1 1 @ 1 0 06522784 -cost-pull_inflation n 1 1 @ 1 0 13453737 -cost_accountant n 1 1 @ 1 1 09967816 -cost_accounting n 1 2 @ ~ 1 0 00619011 -cost_analysis n 1 1 @ 1 1 00648790 -cost_cutting n 1 1 @ 1 0 00352778 -cost_increase n 1 1 @ 1 0 05110408 -cost_ledger n 1 1 @ 1 0 13404534 -cost_of_capital n 1 1 @ 1 0 13305932 -cost_of_living n 1 1 @ 1 1 13302001 -cost_overrun n 1 1 @ 1 0 13301835 -costa n 2 6 @ ~ #p %p + ; 2 0 05592126 05279026 -costa_rica n 1 6 @ #m #p %m %p + 1 0 08736107 -costa_rican n 1 2 @ #m 1 0 09698788 -costa_rican_colon n 1 2 @ %p 1 0 13667372 -costa_rican_monetary_unit n 1 2 @ ~ 1 0 13667255 -costal_cartilage n 1 2 @ #p 1 0 05592302 -costal_groove n 1 1 @ 1 0 05223248 -costalgia n 1 1 @ 1 0 14330046 -costanoan n 2 1 @ 2 0 09653805 06924560 -costermonger n 1 1 @ 1 0 09968128 -costia n 1 2 @ #m 1 0 01419573 -costia_necatrix n 1 2 @ #m 1 0 01419573 -costiasis n 1 1 @ 1 0 14262740 -costing n 1 2 @ ; 1 0 00619142 -costliness n 1 2 @ + 1 0 05146272 -costmary n 2 4 @ #m #p %p 2 0 12021499 07817599 -costoaxillary_vein n 1 1 @ 1 0 05364730 -costochondritis n 1 1 @ 1 0 14341652 -costs n 1 1 @ 1 0 13293625 -costume n 4 4 @ ~ %p + 4 2 03113657 03114041 03114236 03113835 -costume_designer n 1 1 @ 1 0 09968259 -costumer n 1 2 @ + 1 0 09968259 -costumier n 1 1 @ 1 0 09968259 -costus_oil n 1 1 @ 1 0 14893406 -costusroot n 1 2 @ #m 1 0 12010188 -cosy n 1 1 @ 1 0 03114379 -cot n 3 2 @ %p 3 0 03342432 03131574 03114504 -cot_death n 1 1 @ 1 0 14310292 -cotacachi n 1 2 @ #p 1 0 09174166 -cotan n 1 1 @ 1 0 13788369 -cotangent n 1 1 @ 1 0 13788369 -cote n 1 1 @ 1 0 03114634 -cote_d'azur n 1 2 @ #p 1 0 08939437 -cote_d'ivoire n 1 3 @ #p %p 1 0 08736517 -cote_d'ivoire_franc n 1 2 @ %p 1 0 13677998 -cotenant n 1 1 @ 1 0 09968433 -coterie n 1 2 @ ~ 1 0 08240633 -cotes_de_provence n 1 1 @ 1 0 07896165 -cothromboplastin n 1 1 @ 1 0 15071503 -cotilion n 2 1 @ 2 0 07449037 00536655 -cotillion n 2 1 @ 2 0 07449037 00536655 -cotinga n 1 3 @ ~ #m 1 0 01550761 -cotingidae n 1 3 @ #m %m 1 0 01550429 -cotinus n 1 3 @ #m %m 1 0 12760013 -cotinus_americanus n 1 1 @ 1 0 12760316 -cotinus_coggygria n 1 1 @ 1 0 12760539 -cotinus_obovatus n 1 1 @ 1 0 12760316 -cotoneaster n 1 3 @ ~ #m 1 0 12625383 -cotoneaster_dammeri n 1 1 @ 1 0 12625670 -cotoneaster_horizontalis n 1 1 @ 1 0 12625823 -cotonou n 1 2 @ #p 1 0 08759852 -cotopaxi n 1 2 @ #p 1 0 09174301 -cotswold n 1 1 @ 1 0 02413484 -cotswold_hills n 1 2 @ #p 1 0 08796707 -cotswolds n 1 2 @ #p 1 0 08796707 -cottage n 1 1 @ 1 1 02919792 -cottage_cheese n 1 1 @ 1 0 07851767 -cottage_dweller n 1 1 @ 1 0 09968549 -cottage_industry n 1 1 @ 1 0 00913427 -cottage_pie n 1 2 @ ; 1 0 07866151 -cottage_pink n 1 1 @ 1 0 11809594 -cottage_tent n 1 1 @ 1 1 03114743 -cottage_tulip n 1 1 @ 1 0 12454793 -cottager n 1 1 @ 1 0 09968549 -cottar n 2 2 @ ~ 2 0 09968741 03114839 -cotter n 3 2 @ ~ 3 0 09968741 09968652 03114839 -cotter_pin n 1 1 @ 1 1 03115014 -cottidae n 1 3 @ #m %m 1 0 02644967 -cottier n 1 1 @ 1 0 09968652 -cotton n 4 7 @ ~ #m #s %s %p + 4 2 14870078 03115180 12175949 03115301 -cotton-seed_tree n 1 2 @ #m 1 0 11938261 -cotton_ball n 1 1 @ 1 0 14279543 -cotton_bollworm n 1 2 @ #m 1 0 02310334 -cotton_cake n 1 1 @ 1 0 14824556 -cotton_candy n 1 1 @ 1 0 07605040 -cotton_fiber n 1 3 @ ~ #s 1 0 14870078 -cotton_flannel n 1 1 @ 1 0 03115400 -cotton_gin n 1 1 @ 1 0 03115525 -cotton_grass n 1 3 @ ~ #m 1 0 12152532 -cotton_mill n 1 1 @ 1 0 03115663 -cotton_mouse n 1 2 @ #m 1 0 02337332 -cotton_plant n 1 4 @ ~ #m %p 1 0 12175949 -cotton_rat n 1 2 @ #m 1 0 02338722 -cotton_rose n 2 3 @ ~ #m 2 0 12179122 11970101 -cotton_rush n 1 3 @ ~ #m 1 0 12152532 -cotton_stainer n 1 2 @ #m 1 0 02245443 -cotton_strain n 1 1 @ 1 0 02248062 -cotton_thistle n 1 2 @ #m 1 0 11998888 -cotton_wool n 1 3 @ ~ #s 1 0 14870078 -cottonmouth n 1 2 @ #m 1 1 01754533 -cottonmouth_moccasin n 1 2 @ #m 1 0 01754533 -cottonseed n 1 3 @ #p %s 1 0 11689815 -cottonseed_cake n 1 1 @ 1 0 14824556 -cottonseed_oil n 1 2 @ #s 1 0 07674393 -cottontail n 1 4 @ ~ #m %p 1 0 02325366 -cottontail_rabbit n 1 4 @ ~ #m %p 1 0 02325366 -cottonweed n 2 2 @ #m 2 0 11921395 11825749 -cottonwick n 1 2 @ #m 1 0 02589196 -cottonwood n 2 2 @ ~ 2 0 12732756 12203896 -cottrell_precipitator n 1 1 @ 1 0 03998673 -cottus n 1 3 @ #m %m 1 0 02645143 -cotula n 1 3 @ #m %m 1 0 11958316 -cotula_coronopifolia n 1 2 @ #m 1 0 11958499 -coturnix n 1 3 @ #m %m 1 0 01804796 -coturnix_communis n 1 1 @ 1 0 01805070 -coturnix_coturnix n 1 1 @ 1 0 01805070 -cotyledon n 1 1 @ 1 0 11686398 -cotyloid_cavity n 1 2 @ #p 1 0 05596224 -cotyloid_joint n 1 2 @ ~ 1 0 05595531 -coucal n 1 3 @ ~ #m 1 0 01824575 -couch n 3 2 @ ~ 3 1 04256520 03115897 03115762 -couch_grass n 1 1 @ 1 0 12105578 -couch_potato n 1 2 @ ; 1 0 09944529 -couchette n 1 2 @ #p 1 0 03116008 -coude_system n 1 1 @ 1 0 03116163 -coude_telescope n 1 1 @ 1 0 03116163 -coue n 1 1 @ 1 0 10912626 -cougar n 1 2 @ #m 1 0 02125311 -cough n 1 3 @ #p + 1 0 14359174 -cough_drop n 1 1 @ 1 0 07607967 -coughing n 1 3 @ #p + 1 0 14359174 -coughing_up n 1 1 @ 1 0 00118445 -coulisse n 2 1 @ 2 0 03116435 03116333 -coulomb n 2 2 @ #p 2 0 13636648 10912802 -coulomb's_law n 1 1 @ 1 0 05876148 -coulter n 1 2 @ #p 1 0 03073384 -coumadin n 1 2 @ ; 1 0 04551205 -coumara_nut n 1 1 @ 1 0 11750173 -coumarone n 1 1 @ 1 0 14898101 -coumarone-indene_resin n 1 1 @ 1 0 14824702 -coumarone_resin n 1 1 @ 1 0 14824702 -coumarouna n 1 3 @ #m %m 1 0 11749742 -coumarouna_odorata n 1 2 @ #m 1 0 11749920 -council n 3 4 @ ~ %m ; 3 1 08310949 08312559 08309409 -council_bluffs n 1 1 @ 1 0 09086509 -council_board n 1 2 @ #p 1 0 03090000 -council_chamber n 1 2 @ ~ 1 0 02857644 -council_member n 1 3 @ ~ #m 1 0 09944763 -council_of_basel-ferrara-florence n 1 1 @ 1 0 08317139 -council_of_chalcedon n 1 1 @ 1 0 08314153 -council_of_constance n 1 1 @ 1 0 08316965 -council_of_economic_advisors n 1 1 @ 1 0 08124496 -council_of_ephesus n 1 1 @ 1 0 08313983 -council_of_trent n 1 1 @ 1 0 08317529 -council_of_vienne n 1 1 @ 1 0 08316748 -council_on_environmental_policy n 1 1 @ 1 0 08128004 -council_table n 1 2 @ #p 1 0 03090000 -council_tax n 1 2 @ ; 1 0 13312754 -councillor n 1 4 @ ~ #m + 1 0 09944763 -councillorship n 1 2 @ + 1 0 00591111 -councilman n 1 1 @ 1 0 09944677 -councilorship n 1 1 @ 1 0 00591111 -councilwoman n 1 1 @ 1 0 09944931 -counsel n 2 4 @ ~ + ; 2 1 09775663 06650701 -counsel_to_the_crown n 1 2 @ ~ 1 0 10235385 -counseling n 1 3 @ ~ + 1 1 06650701 -counselling n 1 3 @ ~ + 1 0 06650701 -counsellor n 3 4 @ ~ + ; 3 0 09969062 09968845 09775663 -counsellorship n 1 2 @ + 1 0 00591236 -counselor n 3 4 @ ~ + ; 3 2 09968845 09969062 09775663 -counselor-at-law n 1 2 @ ; 1 0 09775663 -counselorship n 1 2 @ + 1 0 00591236 -count n 3 2 @ ~ 3 2 13591761 00634586 09969218 -count_alessandro_di_cagliostro n 1 1 @ 1 0 10878672 -count_alessandro_volta n 1 1 @ 1 0 11368368 -count_ferdinand_von_zeppelin n 1 1 @ 1 0 11406141 -count_fleet n 1 1 @ 1 0 02384120 -count_lev_nikolayevitch_tolstoy n 1 1 @ 1 0 11345378 -count_maurice_maeterlinck n 1 1 @ 1 0 11148899 -count_nikolaus_ludwig_von_zinzendorf n 1 1 @ 1 0 11407465 -count_noun n 1 1 @ 1 0 06319799 -count_palatine n 1 1 @ 1 0 09969375 -count_per_minute n 1 1 @ 1 0 15285180 -count_rumford n 1 1 @ 1 0 11339669 -countdown n 1 2 @ + 1 0 00653518 -countenance n 3 5 @ ~ #p + ; 3 3 04679549 06687358 05601357 -counter n 9 6 @ ~ #p %p + ; 9 4 03116530 03117199 03116767 02912065 09969491 07199922 03117420 03116942 00135504 -counter-revolutionist n 1 1 @ 1 0 09969869 -counter-sabotage n 1 1 @ 1 0 00986813 -counter_check n 1 1 @ 1 0 13382614 -counter_conditioning n 1 1 @ 1 0 05759949 -counter_reformation n 1 1 @ 1 0 08474623 -counter_tube n 1 2 @ ~ 1 0 03118346 -counteraction n 1 2 @ + 1 0 00233386 -counterargument n 1 1 @ 1 0 06649108 -counterattack n 2 4 @ ~ + ; 2 1 00978173 00458094 -counterattraction n 1 1 @ 1 0 06615736 -counterbalance n 3 3 @ ~ + 3 1 03118539 13897996 13291189 -counterbattery_fire n 1 1 @ 1 0 00989937 -counterblast n 1 1 @ 1 0 06711705 -counterblow n 1 1 @ 1 0 01173569 -counterbombardment n 1 1 @ 1 0 00990071 -counterbore n 1 1 @ 1 0 03117642 -countercharge n 2 1 @ 2 0 06731069 00974994 -countercheck n 2 1 @ 2 0 14015266 05738894 -counterclaim n 1 3 @ + ; 1 0 01184407 -counterclockwise_rotation n 1 1 @ 1 0 07441494 -countercoup n 1 1 @ 1 0 01145219 -counterculture n 1 2 @ ~ 1 0 05752020 -countercurrent n 2 1 @ 2 0 07404584 01168199 -counterdemonstration n 1 1 @ 1 0 01177990 -counterdemonstrator n 1 1 @ 1 0 09969589 -counterespionage n 1 1 @ 1 0 00654683 -counterexample n 1 1 @ 1 0 05826832 -counterfactuality n 1 3 ! @ + 1 0 04759712 -counterfeit n 1 2 @ + 1 0 03562262 -counterfeiter n 1 3 @ ~ + 1 0 10105085 -counterfire n 1 2 @ ~ 1 0 00989773 -counterfoil n 1 1 @ 1 0 06507815 -counterglow n 1 1 @ 1 0 11442298 -counterinsurgency n 1 2 @ + 1 0 00963749 -counterintelligence n 1 3 @ ~ ; 1 0 00986275 -counterirritant n 1 1 @ 1 0 03117776 -counterman n 1 2 @ ~ 1 0 09969718 -countermand n 1 2 @ + 1 0 07168486 -countermarch n 1 2 @ ; 1 0 00291004 -countermeasure n 1 2 @ ~ 1 0 00174663 -countermine n 1 3 @ + ; 1 0 01077190 -countermortar_fire n 1 1 @ 1 0 00990195 -countermove n 1 2 @ ~ 1 0 00978173 -counteroffensive n 1 1 @ 1 1 00980200 -counteroffer n 1 1 @ 1 0 07164972 -counterpane n 1 2 @ ~ 1 0 02822220 -counterpart n 2 2 @ ~ 2 2 05695806 03117939 -counterperson n 1 2 @ ~ 1 0 09969718 -counterplan n 1 1 @ 1 0 05908391 -counterplay n 1 2 @ ; 1 0 00458094 -counterplea n 1 2 @ ; 1 0 06561343 -counterplot n 1 2 @ + 1 0 05908391 -counterpoint n 1 3 @ + - 1 1 07025419 -counterpoise n 1 3 @ ~ + 1 0 03118539 -counterpoison n 1 2 @ ~ 1 0 02719588 -counterpreparation_fire n 1 1 @ 1 0 00990319 -counterproposal n 1 1 @ 1 1 07162424 -counterpunch n 1 1 @ 1 0 00135504 -counterreformation n 1 1 @ 1 0 14424384 -counterrevolution n 1 2 @ + 1 0 00963057 -counterrevolutionary n 1 1 @ 1 0 09969869 -counterrevolutionist n 1 2 @ + 1 0 09969869 -countershot n 1 1 @ 1 1 00123143 -countersign n 2 2 @ + 2 0 06674188 06405020 -countersignature n 1 2 @ + 1 0 06405020 -countersink n 2 2 @ + 2 0 03118051 03117642 -countersink_bit n 1 1 @ 1 0 03117642 -counterspy n 1 1 @ 1 0 09970192 -counterstain n 1 1 @ 1 0 15053212 -countersubversion n 1 1 @ 1 0 00986663 -countersuit n 1 2 @ ; 1 0 01183373 -countertenor n 2 1 @ 2 0 09970295 06872785 -counterterrorism n 1 2 @ ; 1 0 05906734 -counterterrorist n 1 1 @ 1 0 09970088 -counterterrorist_center n 1 3 @ #p ; 1 0 08125420 -countertop n 1 2 @ #p 1 0 03118245 -countertransference n 1 1 @ 1 0 06247484 -countervailing_duty n 1 1 @ 1 0 13318024 -counterweight n 1 3 @ ~ + 1 0 03118539 -counterwoman n 1 2 @ ~ 1 0 09969718 -countess n 1 1 @ 1 0 09970402 -counting n 1 3 @ ~ + 1 1 00634586 -countinghouse n 1 2 @ ; 1 0 03118846 -countlessness n 1 2 @ + 1 0 05122419 -country n 5 4 @ ~ %m %p 5 5 08168978 08544813 08166552 08644722 08497294 -country-dance n 1 3 @ ~ + 1 0 00539121 -country_and_western n 1 2 @ ~ 1 0 07060440 -country_borage n 1 1 @ 1 0 12845187 -country_club n 1 1 @ 1 1 08229362 -country_dancing n 1 2 @ ~ 1 0 00539121 -country_doctor n 1 1 @ 1 1 09970493 -country_house n 1 2 @ ~ 1 0 03118969 -country_music n 1 2 @ ~ 1 0 07060440 -country_of_origin n 1 2 @ ~ 1 0 08510169 -country_people n 2 1 @ 2 0 07945369 07945236 -country_store n 1 1 @ 1 1 03119203 -countryfolk n 2 1 @ 2 0 07945369 07945236 -countryman n 2 2 @ ~ 2 1 09970963 09971135 -countryseat n 1 1 @ 1 0 13251980 -countryside n 1 1 @ 1 1 08645033 -countrywoman n 2 1 @ 2 0 09971273 09971047 -counts/minute n 1 1 @ 1 0 15285180 -county n 2 4 @ ~ %p ; 2 1 08546183 08546870 -county_agent n 1 1 @ 1 0 09971385 -county_council n 1 2 @ ; 1 0 08357529 -county_courthouse n 1 2 @ #p 1 0 08547143 -county_line n 1 1 @ 1 0 08515911 -county_palatine n 1 1 @ 1 0 08547048 -county_seat n 1 2 @ #p 1 0 08547143 -county_town n 1 3 @ #p ; 1 0 08547300 -coup n 2 2 @ ~ 2 2 01145015 00065336 -coup_d'etat n 1 2 @ ~ 1 0 01145015 -coup_d'oeil n 1 2 @ ~ 1 0 00877625 -coup_de_grace n 1 1 @ 1 0 00219463 -coup_de_main n 1 2 @ ~ 1 0 01246541 -coup_de_theatre n 3 2 @ #p 3 0 07298543 07007444 07007341 -coupe n 1 1 @ 1 0 03119396 -couperin n 1 1 @ 1 0 10913010 -couple n 5 5 @ ~ %p + ; 5 4 07985628 07988857 13771290 13743605 09257563 -coupler n 1 3 @ ~ + 1 0 03119510 -couplet n 2 3 @ ~ %p 2 0 13743605 06378917 -coupling n 3 3 @ ~ + 3 1 04613158 03119510 00847340 -coupon n 2 2 @ ~ 2 2 06518068 05822001 -coupon_bond n 1 1 @ 1 0 13338066 -courage n 1 5 ! @ ~ = + 1 1 04857083 -courageousness n 1 4 @ ~ = + 1 0 04857083 -courante n 1 1 @ 1 0 00526663 -courbaril n 1 3 @ #m %s 1 0 11750508 -courbaril_copal n 1 2 @ #s 1 0 11750745 -courbet n 1 1 @ 1 0 10913203 -coureur_de_bois n 1 1 @ 1 0 09971595 -courgette n 2 3 @ #p %p 2 0 12159804 07716358 -courier n 1 2 @ ~ 1 1 10311021 -courlan n 1 2 @ #m 1 0 02013567 -course n 9 5 @ ~ #p %p + 9 5 00884466 08377085 08681222 00038262 09387222 08238463 07556970 03120029 03119790 -course_catalog n 1 2 @ ~ 1 0 06674947 -course_catalogue n 1 2 @ ~ 1 0 06674947 -course_credit n 1 2 @ ~ 1 0 00065855 -course_of_action n 1 2 @ ~ 1 0 00038262 -course_of_instruction n 1 3 @ ~ %p 1 0 00884466 -course_of_lectures n 1 2 @ #p 1 0 00890441 -course_of_study n 2 3 @ ~ %p 2 0 06676416 00884466 -course_session n 1 2 @ #p 1 0 01232246 -courser n 4 3 @ ~ #m 4 0 09971682 02378625 02087314 02039171 -coursework n 1 2 @ #p 1 0 00885088 -coursing n 1 2 @ + 1 0 00453126 -court n 11 7 @ ~ #p %m %p + ; 11 4 08329453 03120778 08051946 03120491 10913355 08329322 03790755 03649459 03121040 03120198 01229223 -court-martial n 2 4 @ ~ + ; 2 0 08331525 01196316 -court_card n 1 2 @ ~ 1 0 03314028 -court_game n 1 3 @ ~ - 1 0 00479076 -court_of_appeals n 1 2 @ ~ 1 0 08330106 -court_of_assize n 1 1 @ 1 0 08330843 -court_of_assize_and_nisi_prius n 1 1 @ 1 0 08330843 -court_of_chancery n 1 1 @ 1 0 08331011 -court_of_domestic_relations n 1 1 @ 1 0 08332090 -court_of_justice n 1 1 @ 1 0 03649459 -court_of_law n 1 1 @ 1 0 03649459 -court_of_saint_james's n 1 1 @ 1 0 08052135 -court_order n 1 3 @ ~ ; 1 1 06539502 -court_plaster n 1 1 @ 1 0 03121556 -court_tennis n 1 1 @ 1 0 00483705 -courtelle n 1 2 @ ; 1 0 03121190 -courtesan n 1 2 @ ~ 1 0 09952393 -courtesy n 3 4 ! @ ~ = 3 1 01228245 06714874 04912732 -courthouse n 2 3 @ %p ; 2 0 03121431 03121298 -courtier n 1 2 @ ~ 1 1 09971839 -courting n 1 3 @ ~ + 1 0 07188685 -courtliness n 1 2 @ + 1 0 04813283 -courtly_love n 1 2 @ ; 1 0 05668581 -courtroom n 1 4 @ #p %p ; 1 0 03120778 -courtship n 1 2 @ ~ 1 0 07188685 -courtyard n 1 3 @ ~ #p 1 1 03120198 -couscous n 2 1 @ 2 0 07937461 07701597 -cousin n 1 2 @ + 1 1 09972010 -cousin-german n 1 1 @ 1 0 09972010 -cousteau n 1 1 @ 1 0 10913503 -couture n 1 1 @ 1 0 00618642 -couturier n 1 2 @ ~ 1 0 09972157 -couvade n 1 1 @ 1 0 00413904 -couverture n 1 1 @ 1 0 07603930 -covalence n 1 2 @ + 1 0 05034761 -covalency n 1 2 @ + 1 0 05034761 -covalent_bond n 1 2 @ ~ 1 0 11436748 -covariance n 1 3 @ + ; 1 0 06025287 -covariation n 1 3 @ + ; 1 0 06032752 -cove n 2 2 @ ~ 2 1 09257761 09257843 -coven n 1 2 @ %m 1 0 08398467 -covenant n 2 4 @ ~ + ; 2 0 06772260 06525588 -coventry n 2 2 @ #p 2 0 14427633 08879867 -cover n 10 4 @ ~ #p + 10 7 04151940 02849154 01049685 02840619 09257949 04453910 00988893 13318411 03121698 01049992 -cover-up n 1 3 @ ~ + 1 0 01050187 -cover_charge n 1 1 @ 1 0 13318411 -cover_crop n 1 1 @ 1 0 13086438 -cover_girl n 1 1 @ 1 0 09972458 -cover_glass n 1 2 @ #p 1 0 03122573 -cover_letter n 1 1 @ 1 0 06624816 -cover_plate n 1 1 @ 1 0 03123666 -cover_slip n 1 2 @ #p 1 0 03122573 -cover_song n 1 1 @ 1 0 03121698 -cover_version n 1 1 @ 1 0 03121698 -coverage n 3 2 @ + 3 2 13344664 05123760 06683784 -coverall n 1 2 @ ~ 1 0 03121897 -covered_bridge n 1 1 @ 1 0 03122073 -covered_couch n 1 1 @ 1 0 03122202 -covered_option n 1 1 @ 1 0 00080619 -covered_smut n 1 1 @ 1 0 13066448 -covered_stadium n 1 1 @ 1 0 03220692 -covered_stand n 1 2 @ %p 1 0 03452953 -covered_wagon n 1 2 @ #m 1 1 03122295 -covering n 5 3 @ ~ + 5 0 09257949 03122748 01049685 00828082 00712225 -covering_fire n 1 1 @ 1 0 00988893 -covering_letter n 1 1 @ 1 0 06624816 -covering_material n 1 2 @ ~ 1 0 14825062 -coverlet n 1 2 @ + 1 1 03123553 -covert n 2 3 @ ~ %m 2 0 07991780 04151940 -covert_operation n 1 2 @ ~ 1 0 00984195 -covertness n 1 2 @ + 1 0 14416349 -covetousness n 3 2 @ + 3 1 07549979 04945758 00758525 -covey n 2 2 @ %m 2 0 08310309 07991868 -coville n 1 3 @ #m %p 1 0 12723062 -cow n 3 3 @ ~ %p 3 2 02403454 01887787 09972587 -cow's_head n 1 2 @ #m 1 0 13034062 -cow-nosed_ray n 1 2 @ #m 1 0 01499732 -cow-tongue_fern n 1 1 @ 1 0 13174823 -cow_barn n 1 1 @ 1 0 03123809 -cow_chip n 1 1 @ 1 0 09243906 -cow_cockle n 1 2 @ #m 1 0 11818636 -cow_dung n 1 1 @ 1 0 09243906 -cow_lily n 1 2 @ #m 1 0 11716422 -cow_man n 1 1 @ 1 0 09902017 -cow_manure n 1 1 @ 1 0 14863883 -cow_oak n 1 1 @ 1 0 12276628 -cow_parsley n 1 2 @ #m 1 0 12932966 -cow_parsnip n 1 2 @ #m 1 0 12939874 -cow_pasture n 1 1 @ 1 0 08547468 -cow_pen n 1 1 @ 1 0 03124590 -cow_pie n 1 1 @ 1 0 14855066 -cow_pony n 1 1 @ 1 0 02379081 -cow_shark n 1 2 @ #m 1 0 01483021 -cow_town n 1 1 @ 1 0 08671382 -cowage n 2 3 @ #p %p 2 0 12550788 12550408 -coward n 2 3 @ ~ + 2 1 09614047 10913641 -cowardice n 1 4 ! @ ~ = 1 1 04860065 -cowardliness n 1 4 @ ~ = + 1 0 04860065 -cowbarn n 1 1 @ 1 0 03123809 -cowbell n 1 1 @ 1 0 03123917 -cowberry n 2 3 @ #p %p 2 0 12249542 07744057 -cowbird n 1 2 @ #m 1 0 01575117 -cowboy n 3 2 @ ~ 3 1 09972661 09973072 09972946 -cowboy_boot n 1 1 @ 1 0 03124043 -cowboy_hat n 1 1 @ 1 0 03124170 -cowcatcher n 1 2 @ #p 1 0 03328201 -cowfish n 1 2 @ #m 1 0 02654745 -cowgirl n 1 1 @ 1 0 09973422 -cowhand n 1 2 @ ~ 1 1 09972661 -cowherb n 1 2 @ #m 1 0 11818636 -cowherd n 1 2 @ ~ 1 0 09972661 -cowhide n 3 4 @ #s %s + 3 1 14762248 14759444 03124313 -cowhouse n 1 1 @ 1 0 03123809 -cowl n 2 4 @ #p %p + 2 0 03530910 03124474 -cowl_muscle n 1 1 @ 1 0 05591770 -cowlick n 1 1 @ 1 0 05256702 -cowling n 1 4 @ #p %p + 1 1 03530910 -cowman n 1 2 @ ~ 1 0 09972661 -cownose_ray n 1 2 @ #m 1 0 01499732 -cowpea n 3 4 @ #m #p %p 3 0 12578916 12578626 07726672 -cowpea_plant n 1 3 @ #m %p 1 0 12578626 -cowpen_daisy n 1 1 @ 1 0 12031139 -cowpens n 1 3 @ #p ; 1 0 01276436 -cowper n 2 1 @ 2 0 10914006 10913871 -cowper's_gland n 1 2 @ #p 1 0 05523629 -cowpie n 1 1 @ 1 0 14855066 -cowpoke n 1 2 @ ~ 1 0 09972661 -cowpox n 1 1 @ 1 0 14262882 -cowpuncher n 1 2 @ ~ 1 1 09972661 -cowrie n 1 3 @ ~ #m 1 0 01953361 -cowry n 1 3 @ ~ #m 1 0 01953361 -cows n 1 5 @ ~ #m %m %p 1 1 02402425 -cows'_milk n 1 1 @ 1 0 07845335 -cowshed n 1 1 @ 1 0 03123809 -cowskin n 1 2 @ #s 1 0 14762248 -cowslip n 2 2 @ #m 2 0 12091377 11728099 -cowtown n 1 1 @ 1 0 08671382 -cox n 2 3 @ ~ + 2 0 14737847 09973624 -cox's_orange_pippin n 1 1 @ 1 0 07740115 -cox-1 n 1 1 @ 1 0 14738052 -cox-2 n 1 1 @ 1 0 14738295 -cox-2_inhibitor n 1 2 @ ~ 1 0 03124700 -coxa n 1 3 @ #p %p 1 0 05596004 -coxcomb n 3 2 @ #p 3 0 09973490 03061893 01792255 -coxsackie_virus n 1 1 @ 1 0 01338178 -coxsackievirus n 1 1 @ 1 0 01338178 -coxswain n 1 1 @ 1 0 09973624 -coydog n 1 1 @ 1 0 02115012 -coyness n 1 2 @ + 1 1 04788159 -coyol n 1 2 @ #m 1 0 12583681 -coyol_palm n 1 2 @ #m 1 0 12583681 -coyote n 3 2 @ ~ 3 1 02114855 09973903 09973749 -coyote_brush n 1 2 @ #m 1 0 11938732 -coyote_bush n 1 2 @ #m 1 0 11938732 -coyote_state n 1 3 @ #p %p 1 0 09138935 -coypu n 1 2 @ #m 1 0 02366959 -cozenage n 1 2 @ + 1 0 00754280 -coziness n 1 2 @ + 1 0 14446298 -cozy n 1 1 @ 1 0 03114379 -cpa n 1 1 @ 1 0 09905185 -cpi n 2 1 @ 2 0 06641654 06474972 -cpr n 1 2 @ %p 1 0 00832626 -cps n 1 2 @ #p 1 1 15279104 -cpu n 1 4 @ #p %p ; 1 0 02995345 -cpu_board n 1 2 @ #p 1 0 03125057 -cr n 1 3 @ ~ #s 1 1 14635092 -crab n 7 6 @ ~ #m #p + ; 7 1 01976957 09974054 09752657 08686658 07787715 02185167 00445529 -crab-eating_dog n 1 1 @ 1 0 02116185 -crab-eating_fox n 1 1 @ 1 0 02116185 -crab-eating_macaque n 1 1 @ 1 0 02488003 -crab-eating_opossum n 1 2 @ #m 1 0 01875610 -crab-eating_raccoon n 1 1 @ 1 0 02508346 -crab-eating_seal n 1 1 @ 1 0 02076402 -crab_apple n 3 4 @ ~ #p %p 3 0 12634429 12634211 07739344 -crab_cactus n 1 2 @ #m 1 0 11854479 -crab_cocktail n 1 2 @ %p 1 0 07582027 -crab_grass n 1 3 @ ~ #m 1 0 12117017 -crab_legs n 1 1 @ 1 0 07788106 -crab_louis n 1 1 @ 1 0 07808166 -crab_louse n 1 2 @ #m 1 0 02185167 -crab_nebula n 1 2 @ #m 1 0 09258587 -crabapple n 3 4 @ ~ #p %p 3 0 12634429 12634211 07739344 -crabapple_jelly n 1 1 @ 1 0 07643577 -crabbedness n 1 2 @ + 1 0 04641700 -crabbiness n 1 2 @ + 1 0 04641700 -crabby_person n 1 1 @ 1 0 09974054 -crabeater_seal n 1 1 @ 1 0 02076402 -crabgrass n 1 3 @ ~ #m 1 0 12117017 -crabmeat n 1 3 @ ~ #p 1 0 07787715 -crabs n 1 1 @ 1 0 14454874 -cracidae n 1 3 @ #m %m 1 0 01799086 -crack n 10 4 @ ~ + ; 10 4 09258715 03416329 13907272 07381423 14485673 06767777 04693096 03125184 00787061 00376994 -crack-up n 1 3 @ ~ + 1 0 14066492 -crack_addict n 1 1 @ 1 0 09974177 -crack_cocaine n 1 1 @ 1 0 03125184 -crack_of_doom n 1 2 @ ; 1 0 15171307 -crack_shot n 1 2 @ ~ 1 0 10294953 -crack_willow n 1 2 @ #m 1 0 12728322 -crackdown n 1 2 @ + 1 0 01148182 -cracked-wheat_bread n 1 1 @ 1 0 07681805 -cracked_wheat n 1 1 @ 1 0 07803779 -cracker n 5 3 @ ~ + 5 1 07681926 10513938 09974278 03345115 03125352 -cracker_bonbon n 1 1 @ 1 0 03125352 -cracker_crumbs n 1 1 @ 1 0 07622587 -crackerberry n 1 1 @ 1 0 12948251 -crackerjack n 2 1 @ 2 0 10222353 03599212 -cracking n 3 3 @ ~ + 3 2 07381423 00376994 13453861 -crackle n 2 3 @ ~ + 2 1 07381678 03125588 -crackle_china n 1 1 @ 1 0 03125588 -crackleware n 1 1 @ 1 0 03125588 -crackling n 2 3 @ ~ + 2 0 14677485 07381678 -cracklings n 1 1 @ 1 0 07671845 -crackpot n 1 1 @ 1 1 09974496 -cracksman n 1 1 @ 1 0 10546062 -cracow n 1 2 @ #p 1 0 08983413 -cracticidae n 1 3 @ #m %m 1 0 01582625 -cracticus n 1 3 @ #m %m 1 0 01583043 -cradle n 4 3 @ %p + 4 2 03125729 08510456 15142452 04098795 -cradle_cap n 1 1 @ 1 0 14223870 -cradlesong n 2 1 @ 2 0 07051851 00546738 -craft n 5 3 @ ~ + 5 2 00606370 03125870 08436562 05638063 05621178 -craft_fair n 1 1 @ 1 0 01118495 -craft_union n 1 1 @ 1 0 08234493 -crafter n 1 2 @ + 1 1 09975425 -craftiness n 2 2 @ + 2 0 05621178 04876561 -craftsman n 3 3 @ ~ + 3 3 09975630 09975425 09974648 -craftsmanship n 1 3 @ ~ + 1 1 05638063 -crag n 1 1 @ 1 1 09259025 -cragsman n 1 1 @ 1 0 10535604 -craig_ventner n 1 1 @ 1 0 11362573 -craigie n 1 1 @ 1 0 10914134 -crake n 1 2 @ ~ 1 0 02015554 -crambe n 1 3 @ #m %m 1 0 11884198 -crambe_maritima n 1 2 @ #m 1 0 11884384 -crammer n 4 2 @ + 4 0 09975933 09975806 08278707 06414727 -cramp n 3 3 @ ~ + 3 1 14360459 03126251 03126090 -cramp_iron n 1 1 @ 1 0 03126090 -crampbark n 1 2 @ #m 1 0 12680864 -crampfish n 1 2 @ #m 1 0 01496331 -crampon n 2 1 @ 2 0 03126580 03126385 -crampoon n 2 1 @ 2 0 03126580 03126385 -cran n 1 1 @ 1 0 13616688 -cranberry n 2 5 @ ~ #m #s #p 2 0 12245695 07743902 -cranberry_bush n 1 2 @ #m 1 0 12680402 -cranberry_culture n 1 1 @ 1 0 00917961 -cranberry_heath n 1 2 @ #m 1 0 12254168 -cranberry_juice n 1 1 @ 1 0 07924443 -cranberry_sauce n 1 2 @ %s 1 0 07823698 -cranberry_tree n 2 2 @ #m 2 0 12680864 12680402 -crane n 5 4 @ ~ #m + 5 0 10914447 10914331 09295455 03126707 02012849 -crane's_bill n 1 3 @ ~ #m 1 0 12685831 -crane_fly n 1 2 @ #m 1 0 02205219 -cranesbill n 1 3 @ ~ #m 1 0 12685831 -crangon n 1 2 @ #m 1 0 01986681 -crangonidae n 1 3 @ #m %m 1 0 01986538 -cranial_cavity n 1 1 @ 1 0 05392906 -cranial_index n 1 1 @ 1 0 13820826 -cranial_nerve n 1 2 @ ~ 1 0 05476256 -cranial_orbit n 1 3 @ #p %p 1 0 05285275 -craniata n 1 3 @ #m %m 1 0 01471070 -craniate n 1 5 @ ~ #m %p - 1 0 01471682 -craniologist n 1 2 @ + 1 0 10427467 -craniology n 1 3 @ ~ + 1 0 06041805 -craniometer n 1 1 @ 1 0 03126927 -craniometric_point n 1 3 @ ~ #p 1 0 05230603 -craniometry n 1 2 @ + 1 0 06147308 -craniotomy n 1 1 @ 1 0 00668736 -cranium n 1 4 @ #p %p + 1 0 05540513 -crank n 4 3 @ ~ + 4 0 10148305 09974496 03754295 03127024 -crank_call n 1 1 @ 1 1 06273890 -crank_handle n 1 1 @ 1 0 03127302 -crank_letter n 1 1 @ 1 0 06624967 -crankcase n 1 2 @ #p 1 0 03127203 -crankiness n 1 2 @ + 1 0 04641869 -crankshaft n 1 2 @ #p 1 0 03127408 -cranny n 2 1 @ 2 0 13907272 09259104 -crap n 2 3 @ + ; 2 0 14854581 06611376 -crap-shooter n 1 1 @ 1 0 10591678 -crap_game n 1 1 @ 1 0 00509302 -crap_shooting n 1 1 @ 1 0 00509302 -crapaud n 1 2 @ #m 1 0 01643896 -crape n 2 3 @ ~ + 2 0 07641138 03130563 -crape_fern n 1 2 @ #m 1 0 12954353 -crape_jasmine n 1 2 @ #m 1 0 11776511 -crape_myrtle n 1 2 @ #m 1 0 12329260 -crapette n 1 1 @ 1 0 00496760 -crapper n 1 5 @ ~ #p %p + 1 0 04446521 -crappie n 2 5 @ ~ #m #p %p 2 0 07780486 02562796 -craps n 2 5 @ ~ %p ; - 2 0 13743460 00508952 -crapshoot n 2 2 @ ; 2 0 00802785 00509302 -crapshooter n 1 1 @ 1 0 09976024 -crapulence n 1 3 @ ~ + 1 0 00748515 -crash n 5 4 @ ~ + ; 5 4 07380144 07301950 07477945 00126236 07478874 -crash_barrier n 1 1 @ 1 0 03127531 -crash_course n 1 1 @ 1 0 06676709 -crash_dive n 1 1 @ 1 0 00327279 -crash_helmet n 1 2 @ ~ 1 0 03127747 -crash_landing n 1 2 @ ; 1 0 00305519 -crash_program n 1 1 @ 1 0 06676709 -crash_programme n 1 1 @ 1 0 06676709 -crasher n 1 2 @ + 1 0 10121952 -craspedia n 1 3 @ #m %m 1 0 11958742 -crassitude n 1 1 @ 1 0 04844343 -crassness n 1 2 @ + 1 1 04844343 -crassostrea n 1 3 @ #m %m 1 0 01961468 -crassula n 1 2 @ #m 1 0 12785312 -crassulaceae n 1 3 @ #m %m 1 0 12785110 -crataegus n 1 3 @ #m %m 1 0 12626030 -crataegus_aestivalis n 1 2 @ #m 1 0 12627526 -crataegus_apiifolia n 1 2 @ #m 1 0 12626674 -crataegus_biltmoreana n 1 2 @ #m 1 0 12626878 -crataegus_calpodendron n 1 2 @ #m 1 0 12627119 -crataegus_coccinea n 1 1 @ 1 0 12628705 -crataegus_coccinea_mollis n 1 2 @ #m 1 0 12628356 -crataegus_crus-galli n 1 2 @ #m 1 0 12627347 -crataegus_laevigata n 1 2 @ #m 1 0 12627750 -crataegus_marshallii n 1 2 @ #m 1 0 12626674 -crataegus_mollis n 1 2 @ #m 1 0 12628356 -crataegus_monogyna n 1 2 @ #m 1 0 12628060 -crataegus_oxyacantha n 1 1 @ 1 0 12628579 -crataegus_oxycantha n 1 2 @ #m 1 0 12627750 -crataegus_pedicellata n 1 1 @ 1 0 12628705 -crataegus_tomentosa n 1 2 @ #m 1 0 12627119 -crate n 2 3 @ ~ + 2 1 03127925 13766637 -crateful n 1 1 @ 1 0 13766637 -crater n 3 3 @ ~ #p 3 0 09472413 09259376 09259219 -crater_lake_national_park n 1 2 @ #p 1 0 08604085 -crateva n 1 2 @ #m 1 0 11866942 -craton n 1 2 @ #p 1 0 09259500 -cravat n 1 2 @ ~ 1 0 03128085 -craven n 1 1 @ 1 0 10452024 -cravenness n 1 2 @ + 1 0 04860272 -craving n 1 3 @ ~ + 1 0 07485475 -craw n 1 1 @ 1 0 01974055 -crawdad n 2 4 @ ~ #m #p 2 0 07788885 01985128 -crawdaddy n 1 3 @ ~ #m 1 0 01985128 -crawfish n 3 5 @ ~ #m #p %p 3 0 07788885 01985128 01984695 -crawford n 2 1 @ 2 0 10914658 10914548 -crawl n 3 3 @ %p + 3 1 00330035 00570366 00294868 -crawl_space n 1 2 @ #p 1 0 08555710 -crawler n 3 4 @ ~ #m + 3 0 10684827 09976119 01935395 -crawling n 1 2 @ + 1 0 00294868 -crawlspace n 1 2 @ #p 1 0 08555710 -crax n 1 3 @ #m %m 1 0 01799540 -crayfish n 4 5 @ ~ #m #p %p 4 0 07793260 07788885 01985128 01984695 -crayon n 1 2 @ + 1 0 03128248 -craze n 3 3 @ ~ + 3 1 05751173 14391876 04693274 -craziness n 3 3 @ ~ + 3 0 14397889 05647156 00512843 -crazy n 1 2 @ ; 1 0 09976283 -crazy_bone n 1 2 @ #p 1 0 05580662 -crazy_glue n 1 2 @ ; 1 0 14703458 -crazy_horse n 1 1 @ 1 0 10914779 -crazy_house n 1 1 @ 1 0 02820798 -crazy_quilt n 1 1 @ 1 0 03128427 -crazy_weed n 1 3 @ ~ #m 1 0 12554526 -crazyweed n 1 3 @ ~ #m 1 0 12554526 -creak n 1 2 @ + 1 0 07381864 -creaking n 1 2 @ + 1 1 07381864 -cream n 3 3 @ ~ + 3 1 08387035 07847198 03128519 -cream-colored_courser n 1 2 @ #m 1 0 02039497 -cream-of-tartar_tree n 1 3 @ #m %p 1 0 12189779 -cream_cheese n 1 2 @ ~ 1 0 07851298 -cream_of_tartar n 1 1 @ 1 0 15013269 -cream_pitcher n 1 2 @ #m 1 0 03129001 -cream_puff n 1 2 @ ~ 1 0 07628576 -cream_sauce n 1 1 @ 1 0 07837545 -cream_soda n 1 1 @ 1 0 07928163 -cream_violet n 1 1 @ 1 0 12390099 -creamcups n 1 2 @ #m 1 0 11907405 -creamer n 1 2 @ #m 1 0 03129001 -creamery n 1 1 @ 1 0 03128868 -creaminess n 1 2 @ + 1 0 04936690 -crease n 3 4 @ ~ #p + 3 0 13907415 13905792 03628728 -creashak n 1 1 @ 1 0 12231358 -creatin n 1 1 @ 1 0 14825243 -creatine n 1 1 @ 1 0 14825243 -creatine_phosphate n 1 1 @ 1 0 14982421 -creatine_phosphoric_acid n 1 1 @ 1 0 14982421 -creating_by_mental_acts n 1 2 @ ~ 1 0 00927261 -creating_by_removal n 1 2 @ ~ 1 0 00941777 -creating_from_raw_materials n 1 2 @ ~ 1 0 00908909 -creation n 6 6 @ ~ %m %p + ; 6 5 00908492 03129123 07328942 00240184 00237869 09466280 -creation_science n 1 1 @ 1 0 05959785 -creationism n 1 2 @ ~ 1 0 05959578 -creative_activity n 1 2 @ ~ 1 0 00908492 -creative_person n 1 2 @ ~ 1 0 09812338 -creative_thinker n 1 1 @ 1 0 10708292 -creative_thinking n 1 4 @ ~ %p = 1 0 05624700 -creativeness n 1 6 ! @ ~ %p = + 1 1 05624700 -creativity n 1 5 @ ~ %p = + 1 1 05624700 -creator n 2 3 @ ~ + 2 2 09536363 09614315 -creature n 3 7 @ ~ #m %s %p + - 3 3 00015388 09976429 09976551 -creature_comforts n 1 1 @ 1 0 13366137 -creche n 2 1 @ 2 1 03129471 03129636 -crecy n 1 3 @ #p ; 1 0 01276634 -cred n 1 1 @ 1 0 04784525 -credence n 2 2 @ ~ 2 0 06193727 03129753 -credendum n 1 2 @ ; 1 0 06270690 -credential n 1 2 @ ~ 1 0 06471345 -credentials n 1 2 @ ~ 1 0 06471345 -credenza n 1 1 @ 1 0 03129753 -credibility n 1 5 ! @ ~ = + 1 0 04782878 -credibleness n 1 4 @ ~ = + 1 0 04782878 -credit n 9 5 ! @ ~ #p + 9 6 06688274 13378518 13405646 00037200 13374281 00065855 06763681 06346681 05803747 -credit_account n 1 2 @ ~ 1 0 13375604 -credit_analyst n 1 1 @ 1 0 09790666 -credit_application n 1 1 @ 1 0 06512943 -credit_bureau n 1 1 @ 1 0 08354065 -credit_card n 1 3 @ ~ %p 1 0 13376012 -credit_crunch n 1 1 @ 1 0 14488912 -credit_entry n 1 1 @ 1 0 13405646 -credit_hour n 1 1 @ 1 0 00066075 -credit_line n 2 3 @ ~ %p 2 0 13379413 06348885 -credit_order n 1 2 @ ~ 1 0 06529630 -credit_rating n 1 1 @ 1 0 05803747 -credit_side n 1 1 @ 1 0 13406374 -credit_system n 1 1 @ 1 1 05903112 -credit_union n 1 1 @ 1 0 08234628 -creditor n 1 4 ! @ ~ + 1 0 09976728 -credits n 1 2 @ #p 1 0 06489968 -creditworthiness n 1 2 @ + 1 0 04669063 -credo n 1 2 @ ~ 1 1 05959954 -credulity n 1 3 @ ~ + 1 0 04895558 -credulousness n 1 2 @ + 1 0 04881156 -cree n 2 1 @ 2 0 09653971 06909298 -creed n 2 3 @ ~ + 2 2 05959954 06789411 -creek n 2 2 @ ~ 2 1 09229409 09654079 -creek_bed n 1 2 @ ~ 1 0 09448690 -creek_confederacy n 1 2 @ %m 1 0 08303862 -creel n 1 1 @ 1 0 03129848 -creep n 4 2 @ + 4 0 09976917 07312503 03129944 00294868 -creep_feed n 1 1 @ 1 1 07800636 -creeper n 3 4 @ ~ #m + 3 1 13102648 09976119 01589286 -creepiness n 1 2 @ + 1 0 05723080 -creeping n 1 2 @ + 1 0 00294868 -creeping_bellflower n 1 1 @ 1 0 12037499 -creeping_bent n 1 1 @ 1 0 12107336 -creeping_bentgrass n 1 1 @ 1 0 12107336 -creeping_bugle n 1 1 @ 1 0 12841007 -creeping_buttercup n 1 1 @ 1 0 11722466 -creeping_charlie n 1 1 @ 1 0 12095647 -creeping_crowfoot n 1 1 @ 1 0 11722466 -creeping_fern n 1 1 @ 1 0 12956367 -creeping_jenny n 1 1 @ 1 0 12095647 -creeping_juniper n 1 1 @ 1 0 11638525 -creeping_lily n 1 2 @ #m 1 0 12455950 -creeping_oxalis n 1 1 @ 1 0 12703557 -creeping_snowberry n 1 2 @ #m 1 0 12235479 -creeping_soft_grass n 1 1 @ 1 0 12122918 -creeping_spike_rush n 1 1 @ 1 0 12154114 -creeping_st_john's_wort n 1 1 @ 1 0 12368451 -creeping_thistle n 1 1 @ 1 0 11954161 -creeping_thyme n 1 1 @ 1 0 12870891 -creeping_willow n 1 2 @ #m 1 0 12730143 -creeping_windmill_grass n 1 1 @ 1 0 12114770 -creeping_wintergreen n 1 4 @ #m %s %p 1 0 12235765 -creeping_wood_sorrel n 1 1 @ 1 0 12703557 -creeping_zinnia n 1 2 @ #m 1 0 12009792 -creeps n 2 2 @ ; 2 0 14263089 07519983 -creepy-crawlies n 1 1 @ 1 0 07503716 -creepy-crawly n 1 1 @ 1 0 01314781 -creese n 1 1 @ 1 0 03628728 -cremains n 1 1 @ 1 0 05218533 -cremation n 1 2 @ + 1 0 00378880 -cremation_chamber n 1 2 @ ~ 1 0 03130066 -crematorium n 2 2 @ ~ 2 0 03130233 03130066 -crematory n 2 2 @ ~ 2 0 03130233 03130066 -creme_anglais n 1 1 @ 1 0 07619301 -creme_brulee n 1 1 @ 1 0 07619409 -creme_caramel n 1 1 @ 1 0 07619208 -creme_de_cacao n 1 2 @ %s 1 0 07909231 -creme_de_fraise n 1 1 @ 1 0 07909504 -creme_de_menthe n 1 2 @ #s 1 0 07909362 -cremona n 1 2 @ #p 1 0 08808792 -crenate_leaf n 1 1 @ 1 0 13160604 -crenation n 1 1 @ 1 0 13874558 -crenature n 1 1 @ 1 0 13874558 -crenel n 2 3 @ #p + 2 0 13874558 03130340 -crenelation n 2 4 @ #p %p + 2 0 02811936 00911572 -crenellation n 2 4 @ #p %p + 2 0 02811936 00911572 -crenelle n 2 3 @ #p + 2 0 13874558 03130340 -creole n 3 3 @ ~ + 3 0 09709673 09709531 06905358 -creole-fish n 1 2 @ #m 1 0 02569905 -creon n 1 2 @ ; 1 0 09596547 -creosol n 1 2 @ #s 1 0 14825487 -creosote n 2 3 @ %s + 2 0 14825812 14825631 -creosote_bush n 1 3 @ #m %p 1 0 12723062 -crepe n 3 3 @ ~ + 3 0 14826173 07641138 03130563 -crepe_de_chine n 1 1 @ 1 0 03130761 -crepe_fern n 1 2 @ #m 1 0 12954799 -crepe_flower n 1 2 @ #m 1 0 12329260 -crepe_gardenia n 1 2 @ #m 1 0 11776511 -crepe_jasmine n 1 2 @ #m 1 0 11776511 -crepe_marocain n 1 1 @ 1 0 03722944 -crepe_myrtle n 1 2 @ #m 1 0 12329260 -crepe_paper n 1 1 @ 1 0 14826173 -crepe_rubber n 1 1 @ 1 0 15006682 -crepe_suzette n 1 1 @ 1 0 07641256 -crepis n 1 3 @ #m %m 1 0 11959104 -crepitation n 1 3 @ ~ + 1 0 07381678 -crepitation_rale n 1 1 @ 1 0 07382044 -crepuscle n 1 4 @ ~ #p + 1 0 15169421 -crepuscule n 1 4 @ ~ #p + 1 0 15169421 -crescendo n 1 4 @ ~ + ; 1 1 04990525 -crescent n 1 2 @ + 1 0 13896217 -crescent-cell_anaemia n 1 1 @ 1 0 14168792 -crescent-cell_anemia n 1 1 @ 1 0 14168792 -crescent_roll n 1 1 @ 1 0 07691650 -crescent_wrench n 1 1 @ 1 0 03130866 -crescentia n 1 3 @ #m %m 1 0 12815434 -crescentia_cujete n 1 2 @ #m 1 0 12815668 -cresol n 1 2 @ ~ 1 0 14825982 -cress n 2 3 @ ~ #m 2 0 11869351 07732747 -cress_plant n 1 3 @ ~ #m 1 0 11869351 -crest n 5 5 @ ~ #p + ; 5 2 08547544 08617963 03138981 03131038 01326015 -crested_cariama n 1 2 @ #m 1 0 02014237 -crested_coral_root n 1 2 @ #m 1 0 12069009 -crested_myna n 1 2 @ #m 1 0 01577941 -crested_penguin n 1 2 @ #m 1 0 02057330 -crested_screamer n 1 3 @ ~ #m 1 0 01861148 -crested_swift n 1 2 @ #m 1 0 01833415 -crested_wheat_grass n 1 1 @ 1 0 12105353 -crested_wheatgrass n 1 1 @ 1 0 12105353 -crestless_wave n 1 2 @ ~ 1 0 07348258 -cretaceous n 1 3 @ #p + 1 0 15126361 -cretaceous_period n 1 2 @ #p 1 0 15126361 -cretan n 1 3 @ ~ #m 1 0 09709795 -cretan_dittany n 1 2 @ #m 1 0 12853706 -crete n 1 4 @ #p %m %p 1 0 08784333 -crete_dittany n 1 2 @ #m 1 0 12853706 -cretin n 1 3 @ ~ + 1 0 10197525 -cretinism n 1 2 @ + 1 0 14121667 -cretonne n 1 1 @ 1 0 03131193 -creutzfeldt-jakob_disease n 1 1 @ 1 0 14100494 -crevalle_jack n 1 1 @ 1 0 02576906 -crevasse n 1 1 @ 1 0 09259677 -crevice n 2 2 @ ~ 2 1 13907272 09258715 -crew n 4 5 @ ~ #m %m + 4 2 08273167 08242799 08273843 08273736 -crew_cut n 1 1 @ 1 0 05260821 -crew_member n 1 3 @ ~ #m 1 1 09977178 -crew_neck n 1 1 @ 1 0 03131431 -crew_neckline n 1 1 @ 1 0 03131431 -crewelwork n 1 1 @ 1 0 03131325 -crewet n 1 1 @ 1 0 03140431 -crewman n 3 3 @ ~ #m 3 0 10546633 09977178 09977082 -crex n 1 3 @ #m %m 1 0 02015685 -crex_crex n 1 2 @ #m 1 0 02015797 -crib n 5 5 @ ~ #p %p + 5 1 03131574 06347225 03131669 00492083 00491901 -crib_death n 1 1 @ 1 0 14310292 -cribbage n 1 2 @ %p 1 0 00491901 -cribbage_board n 1 1 @ 1 0 03131791 -cricetidae n 1 3 @ #m %m 1 0 02335349 -cricetus n 1 3 @ #m %m 1 0 02342727 -cricetus_cricetus n 1 1 @ 1 0 02343058 -crichton n 1 1 @ 1 0 10915025 -crick n 2 3 @ + ; 2 0 14361182 10915173 -cricket n 2 6 @ ~ #m %p + - 2 1 02229544 00476389 -cricket-bat_willow n 1 2 @ #m 1 0 12726357 -cricket_ball n 1 1 @ 1 0 03131967 -cricket_bat n 1 2 @ %p 1 0 03132076 -cricket_equipment n 1 3 @ ~ ; 1 0 03132261 -cricket_frog n 1 3 @ ~ #m 1 0 01651487 -cricket_match n 1 1 @ 1 0 07466322 -cricketer n 1 3 @ ~ + 1 0 09977326 -crier n 3 3 @ ~ + 3 0 10773126 10719132 09977520 -crime n 2 5 @ ~ + ; - 2 2 00766234 00767477 -crime_rate n 1 1 @ 1 0 15276801 -crime_syndicate n 1 2 @ ~ 1 0 08246302 -crime_wave n 1 1 @ 1 0 07325102 -crimea n 1 4 @ #p %p - 1 0 09015460 -crimea-congo_hemorrhagic_fever n 1 1 @ 1 0 14179390 -crimean_war n 1 2 @ ; 1 0 01303739 -criminal n 1 3 @ ~ + 1 1 09977660 -criminal_congress n 1 2 @ ~ 1 0 00848098 -criminal_contempt n 1 2 @ ; 1 0 01181066 -criminal_conversation n 1 1 @ 1 0 00848466 -criminal_court n 1 2 @ ~ 1 0 08331213 -criminal_intelligence_services_of_canada n 1 2 @ ; 1 0 08343102 -criminal_investigation_command n 1 3 @ #p %p 1 0 08141092 -criminal_law n 1 4 @ %p ; - 1 1 06539178 -criminal_maintenance n 1 2 @ ; 1 0 00765791 -criminal_negligence n 1 2 @ ; 1 0 00740342 -criminal_offence n 1 4 @ ~ ; - 1 0 00766234 -criminal_offense n 1 4 @ ~ ; - 1 0 00766234 -criminal_possession n 1 3 @ ~ ; 1 0 00810234 -criminal_prosecution n 1 4 @ ~ #p ; 1 0 01198307 -criminal_record n 1 1 @ 1 0 06490173 -criminal_suit n 1 2 @ ; 1 0 01183497 -criminalisation n 1 2 ! @ 1 0 01125959 -criminalism n 1 1 @ 1 0 13991346 -criminality n 1 2 @ + 1 1 13991346 -criminalization n 1 2 ! @ 1 0 01125959 -criminalness n 1 2 @ + 1 0 13991346 -criminologist n 1 3 @ ~ + 1 0 09978442 -criminology n 1 3 @ ~ + 1 0 06151942 -crimp n 3 3 @ ~ + 3 0 13907415 09978566 05258299 -crimper n 2 1 @ 2 0 09978566 03150232 -crimson n 1 2 @ + 1 1 04963588 -crimson_clover n 1 1 @ 1 0 11753143 -cringle n 1 1 @ 1 0 03132438 -crinion n 1 2 @ #p 1 0 08523340 -crinkle n 1 4 @ ~ #p + 1 0 13905792 -crinkle-root n 1 1 @ 1 0 11882426 -crinkle_root n 1 1 @ 1 0 11882426 -crinkleroot n 1 1 @ 1 0 11882426 -crinoid n 1 4 @ ~ #m + 1 0 02320127 -crinoidea n 1 3 @ #m %m 1 0 02319967 -crinoline n 3 2 @ %p 3 0 03534580 03132776 03132666 -criollo n 2 2 @ ; 2 0 09978697 07922955 -cripple n 1 3 @ ~ + 1 1 09978889 -crisis n 2 4 @ ~ = + 2 2 13933560 07417644 -crisis_intervention n 1 1 @ 1 0 00703422 -crisp n 1 2 @ + 1 1 07712559 -crisphead_lettuce n 1 2 @ #p 1 0 07724269 -crispin n 1 1 @ 1 0 10915373 -crispiness n 1 3 @ ~ + 1 0 04939547 -crispness n 3 3 @ ~ + 3 1 04927098 07089276 04939547 -crisscross n 1 2 @ + 1 0 04681387 -cristal n 1 1 @ 1 0 02678738 -cristobal_balenciaga n 1 1 @ 1 0 10832415 -cristobal_colon n 1 1 @ 1 0 10905315 -cristobalite n 1 2 @ %s 1 0 14672893 -cristoforo_colombo n 1 1 @ 1 0 10905315 -criterion n 2 3 @ ~ + 2 2 07260623 05924920 -crith n 1 1 @ 1 0 13717914 -critic n 3 3 @ ~ + 3 2 09979589 09979321 09979072 -critical_analysis n 1 2 @ ~ 1 0 05733864 -critical_angle n 1 1 @ 1 0 13891242 -critical_appraisal n 1 2 @ ~ 1 0 05733864 -critical_mass n 2 1 @ 2 0 05108412 05024797 -critical_point n 1 2 @ ~ 1 0 14033185 -critical_review n 1 2 @ ~ 1 0 06410391 -criticality n 2 4 @ ~ = + 2 0 14451672 14033587 -criticalness n 1 2 @ + 1 0 14451672 -criticism n 3 3 @ ~ + 3 3 06710546 05734018 06374587 -critique n 2 3 @ ~ + 2 0 06410391 05734018 -critter n 1 1 @ 1 0 01314663 -critter_sitter n 1 1 @ 1 0 10420507 -crius n 1 2 @ ; 1 0 09575033 -crixivan n 1 1 @ 1 0 03568430 -crna_gora n 1 2 @ #p 1 0 08817235 -cro n 1 3 @ #p %p 1 0 03857828 -cro-magnon n 1 2 @ #m 1 0 02475358 -croak n 1 2 @ + 1 0 07125367 -croaker n 2 5 @ ~ #p %p + 2 0 07778342 02596381 -croaking n 1 2 @ + 1 1 07125367 -croat n 1 2 @ #m 1 0 09751256 -croatia n 1 5 @ #p %m %p + 1 0 08815858 -croatian n 1 3 @ #m + 1 0 09751256 -crocanthemum_canadense n 1 1 @ 1 0 12375769 -crocethia n 1 3 @ #m %m 1 0 02029243 -crocethia_alba n 1 2 @ #m 1 0 02029378 -crochet n 1 2 @ + 1 0 03132879 -crochet_hook n 1 1 @ 1 0 03133050 -crochet_needle n 1 1 @ 1 0 03133050 -crochet_stitch n 1 2 @ ~ 1 0 03133177 -crocheting n 2 2 @ + 2 0 03132879 00909565 -crock n 3 2 @ + 3 0 14793533 06608525 03133415 -crock_pot n 1 2 @ ; 1 0 03133878 -crockery n 1 2 @ ~ 1 0 03133538 -crocket n 1 1 @ 1 0 03133744 -crockett n 1 1 @ 1 0 10915566 -crocodile n 1 3 @ ~ #m 1 0 01697178 -crocodile_bird n 1 2 @ #m 1 0 02039780 -crocodile_river n 1 2 @ #p 1 0 09339512 -crocodile_tears n 1 1 @ 1 0 06760249 -crocodilia n 1 3 @ #m %m 1 0 01696282 -crocodilian n 1 3 @ ~ #m 1 0 01696633 -crocodilian_reptile n 1 3 @ ~ #m 1 0 01696633 -crocodilus n 1 3 @ #m %m 1 0 01697002 -crocodylia n 1 3 @ #m %m 1 0 01696282 -crocodylidae n 1 3 @ #m %m 1 0 01696849 -crocodylus n 1 3 @ #m %m 1 0 01697002 -crocodylus_niloticus n 1 1 @ 1 0 01697457 -crocodylus_porosus n 1 1 @ 1 0 01697611 -crocolite n 1 1 @ 1 0 14673032 -crocus n 1 3 @ ~ #m 1 0 12416423 -crocus_sativus n 1 2 @ %p 1 0 12416703 -crocuta n 1 3 @ #m %m 1 0 02117772 -crocuta_crocuta n 1 2 @ #m 1 0 02117900 -croesus n 2 1 @ 2 0 10915772 09979913 -croft n 1 2 @ ; 1 0 03134015 -crofter n 1 1 @ 1 1 09979985 -crohn n 1 1 @ 1 0 10915862 -crohn's_disease n 1 1 @ 1 0 14305990 -croissant n 1 1 @ 1 0 07691650 -croix_de_guerre n 1 1 @ 1 0 06709245 -cromlech n 1 1 @ 1 0 03220237 -cromorne n 1 1 @ 1 0 03628831 -cromwell n 1 2 @ + 1 0 10916105 -cronartium n 1 3 @ #m %m 1 0 13064247 -cronartium_ribicola n 1 2 @ #m 1 0 13064457 -crone n 1 1 @ 1 1 10155485 -cronus n 1 2 @ ; 1 0 09557965 -crony n 1 2 @ ~ 1 1 09877951 -cronyism n 1 1 @ 1 0 01154487 -cronyn n 1 1 @ 1 0 10916325 -croo_monkey n 1 1 @ 1 0 02488003 -crook n 3 3 @ ~ + 3 2 09977660 13869327 03134118 -crookback n 1 2 @ + 1 0 10192412 -crooked-stemmed_aster n 1 1 @ 1 0 11936027 -crookedness n 3 3 ! @ + 3 0 13885370 05074218 04875556 -crookes n 1 1 @ 1 0 10916505 -crookes_radiometer n 1 1 @ 1 0 03134232 -crookes_tube n 1 1 @ 1 0 03134394 -crookneck n 1 1 @ 1 0 07716203 -crookneck_squash n 1 1 @ 1 0 07716203 -crooner n 1 3 @ ~ + 1 0 09980090 -crooning n 2 2 @ + 2 0 00547101 00546972 -crop n 6 4 @ ~ #p + 6 1 13085864 11530512 07955566 03134595 03134496 01974055 -crop-dusting n 1 2 @ ; 1 0 00368939 -crop_failure n 1 1 @ 1 0 14478975 -cropper n 1 1 @ 1 0 10586444 -croquet n 1 3 @ + - 1 0 00466880 -croquet_ball n 1 1 @ 1 0 03134739 -croquet_equipment n 1 3 @ ~ ; 1 0 03134853 -croquet_mallet n 1 1 @ 1 0 03135030 -croquette n 1 1 @ 1 0 07866015 -crore n 1 2 @ ; 1 0 13751686 -crosby n 1 1 @ 1 0 10916731 -crosier n 1 1 @ 1 0 07267309 -cross n 6 4 @ ~ + ; 6 3 03135532 04681387 03135152 14477667 01327322 00850425 -cross-classification n 1 1 @ 1 0 05735789 -cross-country_jumping n 1 2 @ #p 1 0 00451186 -cross-country_riding n 1 2 @ #p 1 0 00451186 -cross-country_skiing n 1 1 @ 1 0 00440941 -cross-division n 1 1 @ 1 0 05735789 -cross-dresser n 1 2 @ + 1 0 10726031 -cross-examination n 1 4 @ %p + ; 1 1 07194950 -cross-examiner n 1 2 @ + 1 0 09980458 -cross-eye n 1 1 @ 1 0 14506233 -cross-fertilisation n 2 3 @ ~ + 2 0 07437575 00040545 -cross-fertilization n 2 4 ! @ ~ + 2 0 07437575 00040545 -cross-florida_waterway n 1 1 @ 1 0 09259746 -cross-index n 1 2 @ + 1 0 06764867 -cross-leaved_heath n 1 1 @ 1 0 12228546 -cross-link n 1 2 @ + 1 0 11436929 -cross-linkage n 1 2 @ + 1 0 11436929 -cross-pollination n 2 3 ! @ + 2 0 07438792 00157318 -cross-purpose n 1 1 @ 1 1 05983122 -cross-question n 1 3 @ #p + 1 0 07195630 -cross-questioner n 1 2 @ + 1 0 09980458 -cross-reference n 1 1 @ 1 0 06764867 -cross-stitch n 2 2 @ ~ 2 0 03137863 03137744 -cross_bit n 1 1 @ 1 0 03136254 -cross_bun n 1 1 @ 1 0 07691237 -cross_country n 1 2 @ ~ 1 0 07460793 -cross_dressing n 1 1 @ 1 0 01031858 -cross_hair n 1 2 @ #p 1 0 03136773 -cross_infection n 1 1 @ 1 0 14178326 -cross_of_calvary n 1 1 @ 1 0 02941605 -cross_of_lorraine n 1 1 @ 1 0 03690279 -cross_product n 1 1 @ 1 0 05864758 -cross_section n 3 4 @ ~ + ; 3 1 08548065 05822085 05092421 -cross_street n 1 1 @ 1 0 03137973 -cross_thwart n 1 2 @ #p 1 0 04432043 -cross_vine n 1 2 @ #m 1 0 12814003 -cross_wire n 1 2 @ #p 1 0 03136773 -crossbar n 3 3 @ ~ #p 3 0 03135917 03135788 03135656 -crossbeam n 1 1 @ 1 0 04475496 -crossbench n 1 2 @ ; 1 0 03136051 -crossbencher n 1 2 @ ; 1 0 09980275 -crossbill n 1 2 @ #m 1 0 01533893 -crossbones n 1 1 @ 1 0 06807971 -crossbow n 1 1 @ 1 0 03136369 -crossbreed n 1 4 @ ~ + ; 1 0 01327322 -crossbreeding n 2 3 @ ~ ; 2 0 00850425 00849768 -crosscheck n 2 1 @ 2 0 05825802 00563097 -crosscurrent n 2 1 @ 2 0 07404584 01168199 -crosscut n 2 2 @ + 2 0 08617311 04204953 -crosscut_handsaw n 1 1 @ 1 0 03136504 -crosscut_saw n 1 1 @ 1 0 03136504 -crosse n 1 1 @ 1 0 03136657 -crossed_eye n 1 1 @ 1 0 14506233 -crossfire n 2 1 @ 2 0 07134179 00990474 -crosshairs n 1 2 @ ; 1 0 05812485 -crosshatch n 1 2 @ + 1 0 04681797 -crosshead n 2 2 @ #p 2 0 06344329 03137044 -crossheading n 1 1 @ 1 0 06344329 -crossing n 7 5 @ ~ #p + ; 7 1 00297532 09283623 08547938 03581125 03137228 00850425 00313245 -crossing_guard n 1 2 @ ~ 1 0 09980658 -crossing_over n 1 2 @ #p 1 0 13454130 -crossjack n 1 1 @ 1 0 03137473 -crossness n 2 3 @ ~ + 2 0 07552729 04641700 -crossopterygian n 1 3 @ ~ #m 1 0 02515214 -crossopterygii n 1 3 @ #m %m 1 0 02514988 -crossover n 4 4 @ ~ #p ; 4 0 13454130 09980805 07032753 03137228 -crossover_voter n 1 1 @ 1 0 09980805 -crosspatch n 1 2 @ ~ 1 0 10148305 -crosspiece n 2 2 @ ~ 2 0 04475496 03137579 -crossroad n 1 3 @ ~ #p 1 1 03581125 -crossroads n 3 2 @ ~ 3 3 08226978 14033185 05764613 -crosstalk n 1 1 @ 1 0 07431247 -crosstie n 1 2 @ #p 1 0 04433585 -crosswalk n 1 2 @ ~ 1 0 03137228 -crossway n 1 3 @ ~ #p 1 0 03581125 -crosswind n 1 1 @ 1 0 11442524 -crossword n 1 1 @ 1 0 06785654 -crossword_puzzle n 1 1 @ 1 0 06785654 -crotal n 1 2 @ #m 1 0 12991837 -crotalaria n 1 3 @ ~ #m 1 0 12519563 -crotalaria_sagitallis n 1 2 @ #m 1 0 12519824 -crotalaria_spectabilis n 1 2 @ #m 1 0 12520015 -crotalidae n 1 3 @ #m %m 1 0 01753721 -crotalus n 1 3 @ #m %m 1 0 01755274 -crotalus_adamanteus n 1 1 @ 1 0 01755581 -crotalus_atrox n 1 2 @ #m 1 0 01756508 -crotalus_cerastes n 1 2 @ #m 1 0 01756291 -crotalus_horridus_atricaudatus n 1 1 @ 1 0 01755952 -crotalus_horridus_horridus n 1 3 @ ~ #m 1 0 01755740 -crotalus_lepidus n 1 2 @ #m 1 0 01756733 -crotalus_mitchellii n 1 2 @ #m 1 0 01757343 -crotalus_scutulatus n 1 2 @ #m 1 0 01757115 -crotalus_tigris n 1 2 @ #m 1 0 01756916 -crotalus_viridis n 1 2 @ #m 1 0 01756089 -crotaphion n 1 2 @ #p 1 0 05232221 -crotaphytus n 1 3 @ #m %m 1 0 01679494 -crotch n 3 3 @ ~ #p 3 0 13914265 05597436 05514081 -crotch_hair n 1 3 @ ~ #p 1 0 05263587 -crotchet n 4 3 @ ~ + 4 0 13869547 06871127 04797824 03138128 -crotchetiness n 1 2 @ + 1 0 04641869 -croton n 2 4 @ ~ #m %s 2 0 12923652 12922763 -croton_bug n 1 2 @ #m 1 0 02234848 -croton_eluteria n 1 3 @ #m %p 1 0 12923108 -croton_oil n 1 2 @ #s 1 0 12922933 -croton_tiglium n 1 4 @ ~ #m %s 1 0 12922763 -crotonbug n 1 2 @ #m 1 0 02234848 -crotophaga n 1 3 @ #m %m 1 0 01824227 -crottal n 1 2 @ #m 1 0 12991837 -crottle n 1 2 @ #m 1 0 12991837 -crouch n 1 2 @ + 1 1 00405766 -croup n 2 4 @ ~ #p + 2 0 14174011 02463611 -croupe n 1 3 @ ~ #p 1 0 02463611 -croupier n 1 1 @ 1 0 09980985 -croupier's_rake n 1 1 @ 1 0 03138217 -crouse n 1 1 @ 1 0 10916887 -crouton n 1 1 @ 1 0 07682197 -crow n 6 4 @ ~ #m + 6 2 01579028 07382286 09654259 09257429 07229747 06909391 -crow's_feet n 1 1 @ 1 0 13906345 -crow's_foot n 2 1 @ 2 0 13906345 12199790 -crow's_nest n 1 2 @ #p 1 0 03139998 -crow-bait n 1 1 @ 1 0 02381119 -crow_blackbird n 1 3 @ ~ #m 1 0 01574390 -crow_corn n 1 3 @ ~ #m 1 0 12430198 -crow_garlic n 1 1 @ 1 0 12435486 -crow_pheasant n 1 1 @ 1 0 01824749 -crow_step n 1 2 @ ; 1 0 03105810 -crowbait n 1 1 @ 1 1 02381119 -crowbar n 1 2 @ ~ 1 0 03138344 -crowberry n 1 2 @ #m 1 0 12751675 -crowberry_family n 1 3 @ #m %m 1 0 12751402 -crowd n 2 3 @ ~ + 2 2 08182379 08273843 -crowd_control n 1 1 @ 1 0 00804180 -crowding n 1 3 @ ~ + 1 0 13933841 -crowfoot n 1 3 @ ~ #m 1 0 11720353 -crowfoot_family n 1 3 @ #m %m 1 0 11719468 -crowfoot_grass n 1 1 @ 1 0 12116734 -crowing n 1 2 @ + 1 0 07229747 -crown n 12 6 @ ~ #p %p + ; 12 5 06884097 05308141 03138856 03138669 03138534 13389864 13128003 08617963 06705891 05539595 03139089 03138981 -crown-beard n 1 3 @ ~ #m 1 0 12030654 -crown-of-the-field n 1 2 @ #m 1 0 11805544 -crown_beard n 1 3 @ ~ #m 1 0 12030654 -crown_colony n 1 1 @ 1 0 08500079 -crown_daisy n 1 2 @ #m 1 0 11950877 -crown_fire n 1 1 @ 1 0 07304353 -crown_gall n 1 2 @ ~ 1 1 14279632 -crown_glass n 2 1 @ 2 0 14880557 14880273 -crown_imperial n 1 1 @ 1 0 12452836 -crown_jewel n 2 1 @ 2 0 13330425 03139341 -crown_jewels n 1 3 @ ~ ; 1 0 03139464 -crown_land n 1 2 @ ; 1 0 13252062 -crown_lens n 1 1 @ 1 0 03139640 -crown_monkey n 1 1 @ 1 0 02487675 -crown_of_thorns n 3 2 @ #m 3 0 14477667 12921868 03139731 -crown_prince n 1 1 @ 1 0 09981092 -crown_princess n 2 1 @ 2 0 09981278 09981183 -crown_roast n 1 1 @ 1 0 07668356 -crown_saw n 1 1 @ 1 0 03139887 -crown_vetch n 1 2 @ #m 1 0 12519089 -crown_wart n 1 1 @ 1 0 14280011 -crownbeard n 1 3 @ ~ #m 1 0 12030654 -crowned_head n 1 2 @ ~ 1 0 10628644 -crownwork n 1 2 @ ; 1 0 03139089 -crozier n 1 1 @ 1 0 07267309 -crp n 1 1 @ 1 0 14732299 -crt n 1 4 @ ~ #p %p 1 0 02985137 -crt_screen n 1 4 @ ~ #p %p 1 0 04152593 -cruciality n 1 2 @ + 1 0 14451672 -crucian_carp n 1 2 @ #m 1 0 01443831 -crucible n 1 1 @ 1 0 03140126 -crucible_steel n 1 1 @ 1 0 14803283 -crucifer n 1 4 @ ~ #m %p 1 0 11868814 -cruciferae n 1 4 @ #m %m + 1 0 11867525 -cruciferous_plant n 1 4 @ ~ #m %p 1 0 11868814 -cruciferous_vegetable n 1 3 @ ~ #p 1 0 07713395 -crucifix n 2 2 @ + 2 1 03140292 00434844 -crucifix_fish n 1 2 @ #m 1 0 02521129 -crucifixion n 3 2 @ + 3 1 01165337 07332864 00422551 -crud n 3 1 @ 3 0 15044232 14856752 14074267 -crude n 1 3 @ ~ %s 1 0 14980579 -crude_oil n 1 3 @ ~ %s 1 0 14980579 -crudeness n 3 2 @ + 3 0 14472624 04915121 04817564 -crudites n 1 3 @ ~ %s 1 0 07708512 -crudity n 2 2 @ + 2 2 14472624 04915121 -cruel_and_unusual_punishment n 1 1 @ 1 0 01161411 -cruel_plant n 1 2 @ #m 1 0 13236100 -cruelness n 1 3 @ ~ + 1 0 04845475 -cruelty n 3 2 @ ~ 3 3 00424599 07506382 04845475 -cruet n 1 1 @ 1 0 03140431 -cruet-stand n 1 1 @ 1 0 03140546 -cruise n 1 2 @ + 1 0 00312932 -cruise_control n 1 1 @ 1 0 03140652 -cruise_liner n 1 1 @ 1 0 03141327 -cruise_missile n 1 1 @ 1 0 03140771 -cruise_ship n 1 1 @ 1 0 03141327 -cruiser n 3 3 @ ~ + 3 0 03141065 03140900 02932891 -cruiserweight n 1 1 @ 1 0 10261624 -cruller n 1 1 @ 1 0 07639577 -crumb n 3 4 @ ~ #p + 3 0 13760980 10539715 07622261 -crumb_cake n 1 1 @ 1 0 07630782 -crumbliness n 1 2 @ + 1 0 04939742 -crumhorn n 1 1 @ 1 0 03628831 -crumpet n 1 1 @ 1 0 07630909 -crunch n 3 3 @ ~ + 3 1 07382414 13934070 00358089 -crupper n 1 1 @ 1 1 03141455 -crus n 1 3 @ #p + 1 0 05561390 -crusade n 2 3 @ ~ + 2 2 00798245 00968715 -crusader n 2 3 @ ~ + 2 0 10515194 09981365 -cruse n 1 1 @ 1 0 03141612 -crush n 4 3 @ ~ + 4 1 14762366 08183398 07544351 00358089 -crushed_leather n 1 1 @ 1 0 14762366 -crushed_rock n 1 2 @ ~ 1 0 14698884 -crusher n 1 2 @ + 1 1 03141702 -crushing n 1 3 @ ~ + 1 0 01079604 -crust n 3 6 @ ~ #p %s %p + 3 1 09260010 09260218 04915866 -crustacea n 1 4 @ #m %m + 1 0 01974399 -crustacean n 1 4 @ ~ #m %p 1 0 01974773 -crustal_movement n 1 2 @ ; 1 0 07310338 -crustal_plate n 1 1 @ 1 0 09395457 -crustose_thallus n 1 1 @ 1 0 11532194 -crutch n 2 1 @ 2 2 03141823 00178700 -crux n 2 4 @ ~ #m %m 2 0 09441352 06606694 -crux_australis n 1 3 @ #m %m 1 0 09441352 -crux_of_the_matter n 1 2 @ ~ 1 1 06606694 -cry n 5 3 @ ~ + 5 4 07120524 07121157 07152752 07014752 07382572 -cry-baby_tree n 1 1 @ 1 0 12528549 -cryaesthesia n 1 1 @ 1 0 14533106 -crybaby n 2 2 @ ~ 2 0 10781817 10776339 -crybaby_tree n 1 1 @ 1 0 12528549 -cryesthesia n 1 1 @ 1 0 14533106 -crying n 1 3 @ ~ + 1 0 00868196 -cryoanaesthesia n 1 1 @ 1 0 14026869 -cryoanesthesia n 1 1 @ 1 0 14026869 -cryobiology n 1 2 @ ~ 1 0 06069996 -cryocautery n 2 1 @ 2 0 03141991 00697614 -cryogen n 1 2 @ ~ 1 0 14826328 -cryogenics n 1 3 @ + - 1 0 06098687 -cryogeny n 1 2 @ - 1 0 06098687 -cryolite n 1 2 @ %s 1 0 14673150 -cryometer n 1 1 @ 1 0 03142099 -cryonics n 1 2 @ + 1 0 06070179 -cryopathy n 1 2 @ ~ 1 0 14294678 -cryophobia n 1 1 @ 1 0 14383362 -cryoscope n 1 1 @ 1 0 03142205 -cryostat n 1 1 @ 1 1 03142325 -cryosurgery n 1 1 @ 1 0 00668829 -crypt n 1 2 @ ; 1 0 03142431 -cryptacanthodes n 1 3 @ #m %m 1 0 02616251 -cryptacanthodes_maculatus n 1 2 @ #m 1 0 02616397 -cryptanalysis n 1 2 @ + 1 0 06172502 -cryptanalyst n 1 1 @ 1 0 09981540 -cryptanalytics n 1 1 @ 1 0 06172502 -cryptic_coloration n 1 1 @ 1 0 04979307 -cryptobiosis n 1 2 @ + 1 0 14063475 -cryptobranchidae n 1 3 @ #m %m 1 0 01633047 -cryptobranchus n 1 3 @ #m %m 1 0 01633250 -cryptobranchus_alleganiensis n 1 2 @ #m 1 0 01633406 -cryptocercidae n 1 3 @ #m %m 1 0 02235321 -cryptocercus n 1 2 @ #m 1 0 02235465 -cryptococcosis n 1 1 @ 1 0 14147212 -cryptocoryne n 1 2 @ #m 1 0 11787190 -cryptogam n 1 3 @ ~ + 1 0 11552133 -cryptogamia n 1 3 ! @ #m 1 0 11551898 -cryptogram n 1 1 @ 1 0 06355183 -cryptogramma n 1 3 @ #m %m 1 0 13210006 -cryptogramma_acrostichoides n 1 2 @ #m 1 0 13210350 -cryptogramma_crispa n 1 1 @ 1 0 13210597 -cryptogrammataceae n 1 2 @ #m 1 0 13227009 -cryptograph n 3 1 @ 3 0 06355307 06355183 03142579 -cryptographer n 1 2 @ + 1 0 09981540 -cryptography n 2 3 @ ~ + 2 0 06172502 00614489 -cryptologist n 1 2 @ + 1 0 09981540 -cryptology n 1 2 @ + 1 0 06172502 -cryptomeria n 1 3 @ #m %m 1 0 11636068 -cryptomeria_japonica n 1 2 @ #m 1 0 11636204 -cryptomonad n 1 2 @ #m 1 0 01421333 -cryptophyceae n 1 3 @ #m %m 1 0 01421164 -cryptophyta n 1 3 @ #m %m 1 0 01421012 -cryptophyte n 1 2 @ #m 1 0 01421333 -cryptoprocta n 1 2 @ #m 1 0 02136285 -cryptoprocta_ferox n 1 1 @ 1 0 02136452 -cryptorchidism n 1 3 @ ~ %p 1 0 14092247 -cryptorchidy n 1 3 @ ~ %p 1 0 14092247 -cryptorchism n 1 3 @ ~ %p 1 0 14092247 -cryptotermes n 1 3 @ #m %m 1 0 02225577 -cryptotermes_brevis n 1 2 @ #m 1 0 02225798 -cryptotis n 1 2 @ #m 1 0 01893294 -cryptotis_parva n 1 1 @ 1 0 01893399 -crystal n 6 5 @ ~ #p %s + 6 3 14883206 03142912 09260466 14879750 03142834 03142679 -crystal_ball n 1 1 @ 1 0 03143131 -crystal_counter n 1 2 @ %p 1 0 03143255 -crystal_detector n 1 2 @ %p 1 0 03143400 -crystal_gazing n 1 1 @ 1 0 05775695 -crystal_lattice n 1 1 @ 1 0 05732086 -crystal_microphone n 1 2 @ %p 1 0 03143572 -crystal_oscillator n 1 1 @ 1 0 03143754 -crystal_pickup n 1 2 @ %p 1 0 03143982 -crystal_rectifier n 1 2 @ ~ 1 0 03202760 -crystal_set n 1 1 @ 1 0 03144156 -crystal_tea n 1 2 @ #m 1 0 12238491 -crystal_violet n 1 1 @ 1 0 14770838 -crystalline_lens n 1 3 @ #p %p 1 0 05320362 -crystallisation n 1 3 @ ~ + 1 0 11410298 -crystallite n 1 1 @ 1 1 09260744 -crystallization n 3 3 @ ~ + 3 0 11410298 09260466 05772044 -crystallized_fruit n 1 2 @ ~ 1 0 07600506 -crystallized_ginger n 1 1 @ 1 0 07600895 -crystallizing n 1 3 @ ~ + 1 0 11410298 -crystallographer n 1 1 @ 1 0 09981740 -crystallography n 1 2 @ - 1 1 06098876 -cs n 1 3 @ ~ #s 1 0 14634232 -cs_gas n 1 1 @ 1 0 14603798 -cse n 1 2 @ ; 1 0 08342888 -csis n 1 2 @ ; 1 0 08342419 -cst n 1 1 @ 1 0 15132201 -ct n 2 3 @ #p %p 2 0 09068444 00901476 -ctc n 1 3 @ #p ; 1 0 08125420 -ctene n 1 2 @ #p 1 0 01918585 -ctenidium n 1 1 @ 1 0 01953877 -ctenizidae n 1 3 @ #m %m 1 0 01775592 -ctenocephalides n 1 4 @ ~ #m %m 1 0 02186834 -ctenocephalides_canis n 1 2 @ #m 1 0 02187150 -ctenocephalides_felis n 1 2 @ #m 1 0 02187279 -ctenocephalus n 1 1 @ 1 0 02187022 -ctenophora n 1 3 @ #m %m 1 0 01918310 -ctenophore n 1 4 @ ~ #m %p 1 0 01918744 -ctenophore_family n 1 3 @ ~ #m 1 0 01918010 -ctenophore_genus n 1 3 @ ~ #m 1 0 01918152 -cu n 1 3 @ ~ #s 1 0 14635722 -cu_ft n 1 1 @ 1 1 13601483 -cu_in n 1 1 @ 1 0 13601370 -cub n 3 3 @ ~ + 3 0 09981834 09871229 01322685 -cub_scout n 1 1 @ 1 0 09981939 -cub_shark n 1 2 @ #m 1 0 01489501 -cuba n 2 7 @ #m #p %m %p + - 2 1 08750334 08750151 -cubage_unit n 1 3 @ ~ #p 1 0 13600822 -cuban n 1 3 @ #m + 1 0 09698901 -cuban_bast n 1 1 @ 1 0 12178494 -cuban_capital n 1 2 @ #p 1 0 08750612 -cuban_heel n 1 1 @ 1 0 03144262 -cuban_itch n 1 1 @ 1 0 14124688 -cuban_mahogany n 1 2 @ #m 1 0 12699922 -cuban_monetary_unit n 1 2 @ ~ 1 0 13691909 -cuban_peso n 1 2 @ %p 1 0 13692014 -cuban_revolution n 1 1 @ 1 0 01303934 -cuban_sandwich n 1 1 @ 1 0 07697825 -cuban_spinach n 1 1 @ 1 0 11861853 -cubature_unit n 1 3 @ ~ #p 1 0 13600822 -cubby n 1 1 @ 1 0 03144365 -cubbyhole n 2 1 @ 2 0 03144486 03144365 -cube n 5 4 @ ~ #m + 5 2 13916721 13914608 13731241 12544862 03144592 -cube_root n 1 1 @ 1 0 13731959 -cubeb n 3 6 @ #m #s #p %s %p 3 0 13150378 13150178 03144756 -cubeb_cigarette n 1 2 @ %s 1 0 03144756 -cubeb_vine n 1 3 @ #m %p 1 0 13150178 -cubic_centimeter n 1 3 @ #p %p 1 0 13623636 -cubic_centimetre n 1 3 @ #p %p 1 0 13623636 -cubic_content_unit n 1 3 @ ~ #p 1 0 13600822 -cubic_decimeter n 1 3 @ #p %p 1 0 13624190 -cubic_decimetre n 1 3 @ #p %p 1 0 13624190 -cubic_foot n 1 1 @ 1 1 13601483 -cubic_inch n 1 1 @ 1 0 13601370 -cubic_kilometer n 1 2 @ %p 1 0 13625063 -cubic_kilometre n 1 2 @ %p 1 0 13625063 -cubic_measure n 1 3 @ ~ #p 1 0 13600822 -cubic_meter n 1 3 @ #p %p 1 0 13624873 -cubic_metre n 1 3 @ #p %p 1 0 13624873 -cubic_millimeter n 1 2 @ #p 1 0 13623455 -cubic_millimetre n 1 2 @ #p 1 0 13623455 -cubic_yard n 1 1 @ 1 0 13618076 -cubicity n 1 3 @ = + 1 0 05063729 -cubicle n 3 3 @ ~ #p 3 0 02991555 02968333 02873839 -cubism n 1 4 @ ~ %m + 1 1 08466175 -cubist n 1 3 @ #m + 1 0 09982013 -cubit n 1 1 @ 1 0 13653349 -cubital_joint n 1 3 @ #p %p 1 0 05579944 -cubital_nerve n 1 3 @ ~ #p 1 0 05568767 -cubitiere n 1 2 @ #p 1 0 03144873 -cubitus n 2 4 @ #p %p + 2 0 05579944 05564229 -cuboid n 1 1 @ 1 0 13884930 -cuboid_bone n 1 2 @ #p 1 0 05271685 -cuboidal_cell n 1 1 @ 1 0 05242396 -cuboidal_epithelial_cell n 1 1 @ 1 0 05242396 -cucking_stool n 1 1 @ 1 0 03144982 -cuckold n 1 3 @ ~ + 1 0 09982152 -cuckoldom n 1 1 @ 1 0 13966683 -cuckoldry n 1 1 @ 1 0 00160922 -cuckoo n 2 4 @ ~ #m + 2 0 10157744 01823013 -cuckoo's_nest n 1 1 @ 1 0 02820798 -cuckoo-bumblebee n 1 2 @ #m 1 1 02209964 -cuckoo_bread n 1 1 @ 1 0 12703190 -cuckoo_clock n 1 1 @ 1 0 03145147 -cuckoo_flower n 2 1 @ 2 0 11882074 11811706 -cuckooflower n 1 1 @ 1 0 11882074 -cuckoopint n 1 3 @ #m %p 1 0 11780148 -cuculidae n 1 3 @ #m %m 1 0 01822773 -cuculiform_bird n 1 3 @ ~ #m 1 0 01822602 -cuculiformes n 1 3 @ #m %m 1 0 01822423 -cuculus n 1 3 @ #m %m 1 0 01823279 -cuculus_canorus n 1 2 @ #m 1 0 01823414 -cucumber n 2 5 @ ~ #m #p %p 2 0 12165384 07718472 -cucumber_tree n 1 1 @ 1 0 11710827 -cucumber_vine n 1 3 @ #m %p 1 0 12165384 -cucumis n 1 3 @ #m %m 1 0 12164215 -cucumis_melo n 1 4 @ ~ #m %p 1 0 12164363 -cucumis_melo_cantalupensis n 1 2 @ %p 1 0 12164656 -cucumis_melo_inodorus n 1 2 @ %p 1 0 12164881 -cucumis_melo_reticulatus n 1 2 @ %p 1 0 12165170 -cucumis_sativus n 1 3 @ #m %p 1 0 12165384 -cucurbit n 1 1 @ 1 0 12157677 -cucurbita n 1 4 @ #m %m %p 1 0 12158148 -cucurbita_argyrosperma n 1 3 @ #p %p 1 0 12162181 -cucurbita_foetidissima n 1 3 @ #m %p 1 0 12162425 -cucurbita_maxima n 2 3 @ #m %p 2 0 12161744 12161056 -cucurbita_maxima_turbaniformis n 1 4 @ ~ #m %p 1 0 12161285 -cucurbita_mixta n 1 3 @ #p %p 1 0 12162181 -cucurbita_moschata n 1 2 @ %p 1 0 12161969 -cucurbita_pepo n 1 3 @ #m %p 1 0 12158443 -cucurbita_pepo_melopepo n 1 4 @ ~ #m %p 1 0 12159055 -cucurbitaceae n 1 5 @ ~ #m %m + 1 0 12157276 -cud n 2 1 @ 2 1 07805478 07579399 -cudbear n 1 1 @ 1 0 14989430 -cuddle n 1 2 @ + 1 0 00417643 -cuddling n 1 3 @ ~ + 1 0 00854000 -cuddy n 1 2 @ #p 1 0 03145277 -cudgel n 1 3 @ ~ + 1 0 03145384 -cudweed n 3 3 @ ~ #m 3 0 11972759 11970101 11930788 -cue n 4 4 @ ~ %p + 4 0 07011209 06643763 05829213 03145522 -cue_ball n 1 1 @ 1 0 03145719 -cue_stick n 1 2 @ %p 1 0 03145522 -cuff n 2 5 @ ~ #p %p + 2 1 03145843 03484576 -cufflink n 1 1 @ 1 1 03146075 -cuirass n 1 2 @ %p 1 0 03146219 -cuirassier n 1 1 @ 1 0 09982277 -cuisine n 1 2 @ ~ 1 0 07571324 -cuisse n 1 2 @ #p 1 0 03146342 -cuke n 1 3 @ ~ #p 1 0 07718472 -cul n 1 1 @ 1 0 03146449 -cul_de_sac n 2 1 @ 2 0 03146449 02851540 -culbertson n 1 1 @ 1 0 10916993 -culcita n 1 3 @ #m %m 1 0 13191318 -culcita_dubia n 1 2 @ #m 1 0 13191620 -culdoscope n 1 1 @ 1 0 03146560 -culdoscopy n 1 1 @ 1 0 00642604 -culebra n 1 2 @ #p 1 0 08753412 -culex n 1 3 @ #m %m 1 0 02201758 -culex_fatigans n 1 2 @ #m 1 0 02202124 -culex_pipiens n 1 2 @ #m 1 0 02202006 -culex_quinquefasciatus n 1 2 @ #m 1 0 02202124 -culiacan n 1 2 @ #p 1 0 08743125 -culicidae n 1 3 @ #m %m 1 0 02199999 -culinary_art n 1 2 @ ~ 1 0 07571324 -cull n 1 2 @ + 1 0 05790572 -cullender n 1 1 @ 1 0 03066849 -cullis n 1 2 @ #p 1 0 03146687 -culm n 1 1 @ 1 0 13163471 -culmination n 4 5 @ ~ #p + ; 4 1 15291199 08548239 06373747 00211110 -culotte n 1 1 @ 1 0 03146777 -culpability n 1 2 @ + 1 0 13990960 -culpable_negligence n 1 2 @ ; 1 0 00740342 -culpableness n 1 2 @ + 1 0 13990960 -culprit n 1 1 @ 1 1 10417168 -cult n 5 4 @ ~ %m + 5 2 08151490 05751173 08151229 05948537 05948264 -cult_of_personality n 1 1 @ 1 1 05672286 -cultism n 2 3 @ ~ + 2 0 01206774 01044448 -cultist n 2 3 @ #m + 2 1 09982370 09982525 -cultivar n 1 1 @ 1 0 13084834 -cultivated_cabbage n 1 4 @ ~ #m %p 1 0 11875691 -cultivated_carrot n 1 3 @ #m %p 1 0 12937388 -cultivated_celery n 1 2 @ %p 1 0 12933403 -cultivated_crab_apple n 1 3 @ ~ %p 1 0 12634429 -cultivated_land n 1 2 @ ~ 1 0 09260907 -cultivated_parsnip n 1 2 @ %p 1 0 12941717 -cultivated_plant n 1 2 ! @ 1 0 13084993 -cultivated_rice n 1 2 @ %p 1 0 12126084 -cultivated_strawberry n 1 3 @ #m %p 1 0 12630478 -cultivation n 5 4 @ ~ + ; 5 2 01129363 00915722 14459824 13454318 00916023 -cultivator n 2 3 @ ~ + 2 0 09779790 03146846 -cultural_anthropologist n 1 3 @ ~ + 1 0 10618465 -cultural_anthropology n 1 3 @ ~ + 1 0 06147522 -cultural_attache n 1 1 @ 1 0 09982760 -cultural_movement n 1 2 @ ~ 1 0 08471799 -cultural_revolution n 1 2 @ ; 1 0 07424436 -culturati n 1 1 @ 1 0 08387495 -culture n 7 5 @ ~ %p + ; 7 4 08287844 05751794 05984936 00920510 14459824 06194409 00917759 -culture_medium n 1 3 @ ~ ; 1 0 14899328 -culture_shock n 1 1 @ 1 0 05684249 -cultus n 1 2 @ ~ 1 0 05948264 -culver's_physic n 1 2 @ #m 1 0 12882321 -culver's_root n 1 2 @ #m 1 0 12882321 -culverin n 2 1 @ 2 0 03147156 03147084 -culvers_physic n 1 2 @ #m 1 0 12882321 -culvers_root n 1 2 @ #m 1 0 12882321 -culvert n 1 1 @ 1 0 03147280 -cum n 1 3 @ ~ %p 1 0 05404336 -cumana n 1 2 @ #p 1 0 09162581 -cumarone n 1 1 @ 1 0 14898101 -cumberland n 2 2 @ #p 2 0 10917164 09261138 -cumberland_gap n 1 2 @ #p 1 0 09261407 -cumberland_mountains n 1 3 @ #p %p 1 0 09261604 -cumberland_plateau n 1 3 @ #p %p 1 0 09261604 -cumberland_river n 1 2 @ #p 1 0 09261138 -cumbersomeness n 1 2 @ + 1 0 04711665 -cumbria n 2 3 @ #p %p 2 0 08881674 08881549 -cumfrey n 1 3 @ ~ #m 1 0 12822769 -cumin n 2 4 @ #s #p %p 2 0 12936826 07814634 -cumin_seed n 1 3 @ #s #p 1 0 07814634 -cuminum n 1 3 @ #m %p 1 0 12936713 -cuminum_cyminum n 1 3 @ #p %p 1 0 12936826 -cummerbund n 1 1 @ 1 0 03147397 -cummings n 1 1 @ 1 0 10917377 -cumquat n 1 4 @ ~ #m %p 1 0 12713063 -cumulation n 1 3 @ ~ + 1 0 07961480 -cumulative_preferred n 1 1 @ 1 0 13336204 -cumulative_preferred_stock n 1 1 @ 1 0 13336204 -cumulative_vote n 1 1 @ 1 0 00184135 -cumulonimbus n 1 1 @ 1 0 09261772 -cumulonimbus_cloud n 1 1 @ 1 0 09261772 -cumulus n 2 3 @ ~ + 2 1 09261960 07961480 -cumulus_cloud n 1 2 @ ~ 1 0 09261960 -cunaxa n 1 2 @ ; 1 0 01276875 -cunctation n 1 1 @ 1 0 01067362 -cunctator n 1 1 @ 1 0 10478626 -cuneate_leaf n 1 1 @ 1 0 13157858 -cuneiform n 1 2 @ ~ 1 0 06361635 -cuneiform_bone n 1 1 @ 1 0 05272545 -cuneus n 1 1 @ 1 0 13919547 -cuniculus n 1 2 @ #m 1 0 02366203 -cuniculus_paca n 1 1 @ 1 0 02366301 -cunner n 1 2 @ #m 1 0 02610373 -cunnilinctus n 1 1 @ 1 0 00855055 -cunnilingus n 1 1 @ 1 0 00855055 -cunning n 2 1 @ 2 0 05621178 04876888 -cunningham n 1 1 @ 1 0 10917554 -cunonia_family n 1 3 @ #m %m 1 0 12787007 -cunoniaceae n 1 3 @ #m %m 1 0 12787007 -cunt n 2 1 @ 2 0 09982873 05521514 -cuon n 1 3 @ #m %m 1 0 02115775 -cuon_alpinus n 1 2 @ #m 1 0 02115913 -cup n 8 5 @ ~ #p %p + 8 3 03147509 13766733 13904665 13619168 12267841 07930864 03148130 03147901 -cup_and_saucer n 1 1 @ 1 0 12037691 -cup_final n 1 2 @ ; 1 0 07467027 -cup_fungus n 1 3 @ ~ #m 1 0 13028611 -cup_hook n 1 1 @ 1 0 03148518 -cup_morel n 1 2 @ #m 1 0 13032618 -cup_of_tea n 1 1 @ 1 1 00432881 -cup_tie n 1 1 @ 1 0 00461294 -cupbearer n 1 1 @ 1 0 09983053 -cupboard n 1 2 @ ~ 1 1 03148324 -cupboard_love n 1 1 @ 1 0 01226837 -cupcake n 1 1 @ 1 0 07631023 -cupel n 1 1 @ 1 0 02868975 -cupflower n 2 3 @ ~ #m 2 0 12913791 12908645 -cupful n 1 1 @ 1 0 13766733 -cupid n 2 2 @ ; 2 0 09560061 06881224 -cupid's_bow n 2 1 @ 2 0 13868813 03148632 -cupid's_dart n 1 1 @ 1 0 11946918 -cupid's_disease n 1 2 @ ~ 1 0 14133159 -cupid's_itch n 1 2 @ ~ 1 0 14133159 -cupidity n 1 1 @ 1 0 04945758 -cupola n 2 1 @ 2 0 03148808 03148727 -cuppa n 1 2 @ ; 1 0 07933799 -cupper n 1 2 @ ; 1 0 07933799 -cupping n 1 2 @ + 1 0 00698794 -cupressaceae n 1 3 @ #m %m 1 0 11629501 -cupressus n 1 3 @ #m %m 1 0 11630351 -cupressus_abramsiana n 1 1 @ 1 0 11631619 -cupressus_arizonica n 1 1 @ 1 0 11631854 -cupressus_goveniana n 1 1 @ 1 0 11631159 -cupressus_goveniana_abramsiana n 1 1 @ 1 0 11631619 -cupressus_goveniana_pigmaea n 1 1 @ 1 0 11631405 -cupressus_guadalupensis n 1 1 @ 1 0 11631985 -cupressus_lusitanica n 1 1 @ 1 0 11632376 -cupressus_macrocarpa n 1 1 @ 1 0 11632167 -cupressus_pigmaea n 1 1 @ 1 0 11631405 -cupressus_sempervirens n 1 1 @ 1 0 11632619 -cupric_acetate n 1 1 @ 1 0 15096524 -cupric_sulfate n 1 2 @ ~ 1 0 14822839 -cupric_sulphate n 1 2 @ ~ 1 0 14822839 -cuprimine n 1 2 @ ; 1 0 03909835 -cuprite n 1 2 @ %s 1 0 14673325 -cupronickel n 1 1 @ 1 0 14717925 -cupule n 2 3 @ #p + 2 0 12267931 02465585 -cuquenan n 1 2 @ #p 1 0 09262082 -cuquenan_falls n 1 2 @ #p 1 0 09262082 -cur n 2 2 @ ~ 2 1 02084861 09983214 -curability n 1 3 ! @ + 1 0 04856721 -curableness n 1 3 ! @ + 1 0 04856721 -curacao n 2 2 @ #p 2 0 08749042 07909954 -curacoa n 1 1 @ 1 0 07909954 -curacy n 1 1 @ 1 0 00591446 -curandera n 1 1 @ 1 0 09983314 -curandero n 1 1 @ 1 0 09983444 -curare n 1 1 @ 1 0 15111609 -curassow n 1 2 @ #m 1 0 01799679 -curate n 1 2 @ ~ 1 0 09983572 -curate_cycloid n 1 1 @ 1 0 13908954 -curative n 1 3 @ ~ #p 1 0 04074482 -curator n 1 2 @ + 1 0 09983889 -curatorship n 1 2 @ + 1 0 00591523 -curb n 4 3 @ %p + 4 1 03148920 03149135 02701871 01146039 -curb_bit n 1 1 @ 1 0 03149135 -curb_market n 1 1 @ 1 0 03149261 -curb_roof n 1 2 @ ~ 1 0 03149401 -curb_service n 1 1 @ 1 0 00098822 -curbing n 1 2 @ %p 1 0 03148920 -curbside n 1 1 @ 1 1 03149531 -curbstone n 1 2 @ #p 1 0 03149686 -curculionidae n 1 3 @ #m %m 1 0 02178244 -curcuma n 1 3 @ #m %m 1 0 12356255 -curcuma_domestica n 1 3 @ #m %p 1 0 12356395 -curcuma_longa n 1 3 @ #m %p 1 0 12356395 -curd n 2 3 @ ~ #s 2 0 07850083 07849912 -curdling n 1 3 @ ~ + 1 0 13454479 -cure n 1 4 @ ~ #p + 1 1 04074482 -cure-all n 1 2 @ ~ 1 1 03880770 -curet n 1 1 @ 1 0 03149810 -curettage n 1 3 @ ~ #p 1 0 00669481 -curette n 1 1 @ 1 0 03149810 -curettement n 1 3 @ ~ #p 1 0 00669481 -curfew n 3 2 @ ; 3 0 15180209 06804606 06540527 -curia n 1 3 @ #p ; 1 0 08085648 -curie n 3 2 @ %p 3 0 13645599 10917999 10917703 -curie_point n 1 1 @ 1 0 05013461 -curie_temperature n 1 1 @ 1 0 05013461 -curietherapy n 1 1 @ 1 0 00706019 -curing n 1 4 @ ~ #p + 1 0 13491060 -curio n 1 2 @ ~ 1 1 03149951 -curiosa n 1 2 @ ; 1 0 06411753 -curiosity n 2 3 @ ~ + 2 1 05682570 03149951 -curiousness n 2 4 @ ~ = + 2 0 05683197 04799344 -curitiba n 1 2 @ #p 1 0 08855505 -curium n 1 1 @ 1 0 14636220 -curl n 3 4 @ ~ #p + 3 0 13875970 10918119 05257737 -curled_leaf_pondweed n 1 2 @ #m 1 0 12616248 -curler n 1 2 @ + 1 0 03150232 -curlew n 1 3 @ ~ #m 1 0 02033561 -curlew_sandpiper n 1 2 @ #m 1 0 02029087 -curlicue n 2 2 @ ~ 2 0 13875970 06801033 -curliness n 1 4 ! @ = + 1 0 05074374 -curling n 1 3 @ + ; 1 0 00461611 -curling_iron n 1 1 @ 1 0 03150511 -curly-coated_retriever n 1 1 @ 1 0 02099429 -curly-heads n 1 1 @ 1 0 11730312 -curly_clematis n 1 1 @ 1 0 11730015 -curly_endive n 1 3 @ ~ #p 1 0 07730855 -curly_grass n 1 2 @ #m 1 0 12955414 -curly_grass_fern n 1 2 @ #m 1 0 12955414 -curly_pondweed n 1 2 @ #m 1 0 12616248 -curlycup_gumweed n 1 1 @ 1 0 11973749 -curmudgeon n 1 2 @ + 1 0 09984047 -currajong n 1 1 @ 1 0 12196694 -currant n 3 3 @ ~ #m 3 1 07744246 12805146 07752966 -currant_bush n 1 3 @ ~ #m 1 0 12805146 -currawong n 1 2 @ #m 1 0 01583495 -currency n 3 4 @ ~ = + 3 2 13385913 04765586 05050379 -current n 3 2 @ ~ 3 3 11443532 07406765 08461595 -current_account n 2 3 @ #p ; 2 0 13410803 13363970 -current_assets n 1 3 @ #m ; 1 0 13333047 -current_electricity n 1 1 @ 1 0 11514559 -current_intelligence n 1 1 @ 1 0 00982153 -current_of_air n 1 3 @ ~ %s 1 0 11525955 -current_unit n 1 2 @ ~ 1 0 13633375 -currentness n 1 4 @ ~ = + 1 0 05050379 -currer_bell n 1 1 @ 1 0 10865700 -curriculum n 1 4 @ ~ %p + 1 1 06676416 -curriculum_vitae n 1 1 @ 1 0 06468403 -currier n 2 2 @ + 2 0 10918358 09984187 -curry n 1 4 @ ~ + ; 1 0 07823951 -curry_powder n 1 1 @ 1 0 07823814 -curry_sauce n 1 1 @ 1 0 07840395 -currycomb n 1 2 @ + 1 0 03150661 -curse n 5 3 @ ~ + 5 3 07125096 07233634 07160424 14445226 07420354 -curse_word n 1 1 @ 1 0 07125096 -cursed_crowfoot n 1 1 @ 1 0 11722621 -cursive n 1 2 @ ~ 1 0 06350274 -cursive_script n 1 2 @ ~ 1 0 06350274 -cursor n 1 2 @ ; 1 0 03150795 -cursorius n 1 3 @ #m %m 1 0 02039377 -cursorius_cursor n 1 2 @ #m 1 0 02039497 -curtailment n 3 2 @ + 3 0 05134122 01147950 00192910 -curtain n 2 4 @ ~ %p + 2 2 03151077 09262233 -curtain_call n 1 1 @ 1 1 07229341 -curtain_lecture n 1 1 @ 1 0 06714184 -curtain_raiser n 2 1 @ 2 1 00243577 07019396 -curtain_raising n 1 1 @ 1 0 07329363 -curtain_ring n 1 1 @ 1 0 03151401 -curtilage n 1 2 @ ~ 1 0 04610879 -curtis n 1 1 @ 1 0 10918558 -curtisia n 1 2 @ #m 1 0 12948849 -curtiss n 1 1 @ 1 0 10918679 -curtness n 1 2 @ + 1 1 04915462 -curtsey n 1 2 @ + 1 0 07274890 -curtsy n 1 2 @ + 1 0 07274890 -curvaceousness n 1 2 @ + 1 0 04686748 -curvature n 3 4 @ ~ + ; 3 0 14213328 05102435 05072663 -curve n 5 6 ! @ ~ #p + ; 5 3 13867641 07000941 00107875 05072663 02829696 -curve_ball n 1 1 @ 1 0 00107875 -curved_shape n 1 2 @ ~ 1 0 13867641 -curvet n 1 2 @ + 1 0 00288190 -curvilinear_correlation n 1 2 @ ; 1 0 06031657 -curvilinear_regression n 1 2 @ ; 1 0 06029118 -cusco n 1 1 @ 1 0 08979740 -cuscus n 1 2 @ #m 1 0 01881564 -cuscuta n 1 3 @ #m %m 1 0 12825301 -cuscuta_gronovii n 1 2 @ #m 1 0 12825721 -cush-cush n 1 1 @ 1 0 12089496 -cushat n 1 2 @ #m 1 0 01813088 -cushaw n 2 3 @ #p %p 2 0 12162181 07718195 -cushing n 1 1 @ 1 0 10918834 -cushing's_disease n 1 1 @ 1 0 14117449 -cushing's_syndrome n 1 1 @ 1 0 14117668 -cushion n 3 4 @ ~ #p + 3 1 04198797 03151800 03151500 -cushion_calamint n 1 2 @ #m 1 0 12843970 -cushion_flower n 1 2 @ #m 1 0 12218868 -cushioning n 1 4 @ ~ %s + 1 1 03873064 -cushitic n 1 2 @ ~ 1 0 06990836 -cusk n 3 3 @ #p %p 3 0 07778810 02525382 02523427 -cusk-eel n 1 2 @ #m 1 0 02558860 -cusp n 3 3 @ #p + 3 1 03151916 05389625 05307521 -cuspid n 1 3 @ ~ + 1 0 05307091 -cuspidation n 1 1 @ 1 0 03152062 -cuspidor n 1 1 @ 1 0 04281260 -cuss n 3 3 @ ~ + 3 2 10419630 09908025 07125096 -cussedness n 1 2 @ + 1 0 04909270 -custard n 1 2 @ ~ 1 0 07619004 -custard-apple_family n 1 3 @ #m %m 1 0 11693566 -custard_apple n 2 5 @ ~ #m #p %p 2 0 11693981 07760859 -custard_apple_tree n 1 4 @ ~ #m %p 1 0 11693981 -custard_pie n 1 1 @ 1 0 03152144 -custer n 1 1 @ 1 0 10919061 -custer's_last_stand n 1 2 @ ; 1 0 01284444 -custodial_account n 1 1 @ 1 0 13351860 -custodian n 1 3 @ ~ + 1 1 09984298 -custodianship n 1 2 @ + 1 0 00591622 -custody n 3 2 @ + 3 1 13999663 01147347 00818678 -custody_battle n 1 2 @ ; 1 0 01187085 -custody_case n 1 2 @ ; 1 0 01184565 -custom n 4 3 @ ~ + 4 2 00413239 05667404 13317002 01096873 -custom-built n 1 1 @ 1 0 03152483 -custom-made n 1 2 ! @ 1 0 03152483 -customer n 1 3 @ ~ #m 1 1 09984659 -customer's_broker n 1 1 @ 1 0 09761753 -customer's_man n 1 1 @ 1 0 09761753 -customer_agent n 1 1 @ 1 0 09984960 -customhouse n 1 1 @ 1 0 03152303 -customs n 1 2 @ ~ 1 0 13317002 -customs_bureau n 1 2 @ #p 1 0 08142972 -customs_duty n 1 2 @ ~ 1 0 13317002 -customs_service n 1 2 @ #p 1 0 08142972 -customs_union n 1 2 @ ~ 1 0 08305568 -customshouse n 1 1 @ 1 0 03152303 -cut n 20 4 @ ~ #p ; 20 3 13289159 06618234 03152619 14429885 14287113 07653394 06721461 06612865 06428216 05750948 03152743 01225997 00571444 00565809 00489475 00387657 00386915 00359238 00352331 00067254 -cut-and-thrust n 1 1 @ 1 0 01176540 -cut-in n 2 2 @ ; 2 0 00384510 00384329 -cut-rate_sale n 1 2 @ ~ 1 0 01117723 -cut-up n 1 1 @ 1 0 10463714 -cut_glass n 1 1 @ 1 1 03153145 -cut_of_beef n 1 3 @ ~ #p 1 0 07656077 -cut_of_lamb n 1 3 @ ~ #p 1 0 07667326 -cut_of_meat n 1 2 @ ~ 1 0 07653394 -cut_of_mutton n 1 2 @ ~ 1 0 07667042 -cut_of_pork n 1 3 @ ~ #p 1 0 07668902 -cut_of_veal n 1 3 @ ~ #p 1 0 07665595 -cut_price n 1 1 @ 1 0 05147237 -cut_rate n 1 1 @ 1 0 05147237 -cutaneous_anthrax n 1 1 @ 1 0 14072625 -cutaneous_leishmaniasis n 1 1 @ 1 0 14181187 -cutaneous_sensation n 1 2 @ ~ 1 0 05723210 -cutaneous_senses n 1 2 @ #p 1 0 05655119 -cutaneous_vein n 1 1 @ 1 0 05364905 -cutaway n 2 1 @ 2 0 03152951 03152830 -cutaway_drawing n 1 1 @ 1 0 03152951 -cutaway_model n 1 1 @ 1 0 03152951 -cutback n 1 3 @ ~ + 1 0 00353782 -cutch n 1 1 @ 1 0 12951331 -cuteness n 1 2 @ + 1 0 04685649 -cuterebra n 1 2 @ #m 1 0 02193955 -cuterebridae n 1 3 @ #m %m 1 0 02193799 -cuticle n 3 6 @ ~ #p %s %p + 3 0 05581932 05240211 01903756 -cuticula n 1 2 @ + 1 0 01895630 -cutin n 1 2 @ ; 1 0 14673462 -cutis n 1 6 @ ~ #p %s %p + 1 0 05238282 -cutlas n 1 1 @ 1 0 03153246 -cutlass n 1 1 @ 1 1 03153246 -cutlassfish n 1 2 @ #m 1 0 02622955 -cutleaved_coneflower n 1 3 @ ~ #m 1 0 12008749 -cutler n 1 1 @ 1 0 09985207 -cutlery n 2 3 @ ~ %p 2 0 03154073 03153375 -cutlet n 1 1 @ 1 0 07654886 -cutoff n 3 1 @ 3 0 13759014 04204953 03153585 -cutoff_saw n 1 1 @ 1 0 03136504 -cutout n 3 3 @ ~ + 3 0 03153948 03153821 03153681 -cutpurse n 1 1 @ 1 0 10431907 -cutter n 6 3 @ ~ + 6 0 10659294 09985470 09985279 04409128 03154316 03154073 -cutthroat n 1 1 @ 1 0 09985577 -cutting n 10 4 @ ~ #p + 10 3 00945205 13127473 00386915 09262371 06612649 00942234 00489475 00387657 00363052 00359238 -cutting_angle n 1 1 @ 1 0 13892765 -cutting_board n 1 1 @ 1 0 03025513 -cutting_edge n 2 2 @ #p 2 1 06209419 03624497 -cutting_implement n 1 2 @ ~ 1 0 03154446 -cutting_off n 2 2 @ ~ 2 0 00392709 00359238 -cutting_out n 1 2 @ ~ 1 0 00393369 -cutting_room n 1 1 @ 1 0 03154616 -cutting_tool n 1 2 @ ~ 1 0 03154073 -cuttle n 1 2 @ #m 1 0 01972541 -cuttlefish n 1 2 @ #m 1 0 01972541 -cutty_stool n 1 1 @ 1 0 03154745 -cutwork n 1 1 @ 1 0 03154895 -cutworm n 1 3 @ ~ #m 1 0 02295390 -cuvier n 1 1 @ 1 0 10919278 -cuzco n 1 1 @ 1 0 08979740 -cv n 1 1 @ 1 0 06468403 -cva n 1 3 @ ~ %p 1 0 14082303 -cwm n 1 1 @ 1 0 09245515 -cwt n 2 3 @ #p %p 2 0 13721177 13721003 -cy_pres n 1 1 @ 1 0 05848691 -cy_pres_doctrine n 1 1 @ 1 0 05848691 -cy_young n 1 1 @ 1 0 11403456 -cyamopsis n 1 3 @ #m %m 1 0 12520223 -cyamopsis_psoraloides n 1 2 @ #m 1 0 12520406 -cyamopsis_tetragonolobus n 1 2 @ #m 1 0 12520406 -cyamus n 1 3 @ #m %m 1 0 01993714 -cyan n 1 2 @ + 1 0 04968619 -cyanamid n 1 1 @ 1 0 14826482 -cyanamide n 2 1 @ 2 0 14826482 14789220 -cyanic_acid n 1 1 @ 1 0 14826613 -cyanide n 2 2 @ ~ 2 0 14827346 14826767 -cyanide_group n 1 1 @ 1 0 14827191 -cyanide_poisoning n 1 1 @ 1 0 14510648 -cyanide_process n 1 1 @ 1 0 13454789 -cyanide_radical n 1 1 @ 1 0 14827191 -cyanine_dye n 1 1 @ 1 0 14987150 -cyanite n 1 1 @ 1 0 14679584 -cyano_group n 1 1 @ 1 0 14827191 -cyano_radical n 1 1 @ 1 0 14827191 -cyanobacteria n 1 4 @ ~ #m + 1 0 01358572 -cyanocitta n 1 3 @ #m %m 1 0 01580644 -cyanocitta_cristata n 1 2 @ #m 1 0 01580870 -cyanocobalamin n 1 1 @ 1 0 15091304 -cyanogen n 1 2 @ + 1 0 14827017 -cyanohydrin n 1 1 @ 1 0 14827505 -cyanophyceae n 1 3 @ #m %m 1 0 01358259 -cyanophyta n 1 3 @ #m %m 1 0 01357707 -cyanosis n 1 3 @ ~ #p 1 0 14303009 -cyanuramide n 1 1 @ 1 0 14949746 -cyanuric_acid n 1 1 @ 1 0 14827680 -cyathea n 1 3 @ #m %m 1 0 13187167 -cyathea_medullaris n 1 2 @ #m 1 0 13187367 -cyatheaceae n 1 3 @ #m %m 1 0 13187031 -cybele n 1 1 @ 1 0 09594093 -cyber-terrorism n 1 3 @ + ; 1 0 00763630 -cyber-terrorist n 1 3 @ + ; 1 0 10155222 -cyberart n 1 1 @ 1 0 03155055 -cybercafe n 1 1 @ 1 0 03155178 -cybercrime n 1 1 @ 1 0 00768483 -cyberculture n 1 1 @ 1 0 06194736 -cybernation n 1 2 @ + 1 0 00102779 -cybernaut n 1 1 @ 1 0 09985683 -cybernetics n 1 3 @ + ; 1 0 06142598 -cyberphobia n 1 1 @ 1 0 14383444 -cyberpunk n 3 2 @ ; 3 0 10155222 09985809 06368814 -cybersex n 1 1 @ 1 0 14037816 -cyberspace n 1 1 @ 1 0 03580615 -cyberwar n 1 2 @ ; 1 0 00763630 -cyborg n 1 1 @ 1 0 09985978 -cycad n 1 2 @ ~ 1 0 11600372 -cycad_family n 1 3 @ #m %m 1 0 11600671 -cycadaceae n 1 3 @ #m %m 1 0 11600671 -cycadales n 1 3 @ #m %m 1 0 11600139 -cycadofilicales n 1 3 @ #m %m 1 0 11604904 -cycadophyta n 1 3 @ #m %m 1 0 11599694 -cycadophytina n 1 3 @ #m %m 1 0 11599694 -cycadopsida n 1 3 @ #m %m 1 0 11599694 -cycas n 1 3 @ #m %m 1 0 11600900 -cycas_circinalis n 1 2 @ #m 1 0 11601333 -cycas_revoluta n 1 3 @ ~ %s 1 0 11601177 -cyclades n 2 2 @ #p 2 1 08290928 08783149 -cycladic_civilisation n 1 1 @ 1 0 08290928 -cycladic_civilization n 1 1 @ 1 0 08290928 -cycladic_culture n 1 1 @ 1 0 08290928 -cyclamen n 1 2 @ #m 1 0 12093329 -cyclamen_hederifolium n 1 2 @ #m 1 0 12093600 -cyclamen_neopolitanum n 1 2 @ #m 1 0 12093600 -cyclamen_purpurascens n 1 2 @ #m 1 0 12093329 -cycle n 6 5 @ ~ #p %p + 6 5 15287830 08377332 07342495 15279104 07341038 02834778 -cycle_of_rebirth n 1 3 @ ~ ; 1 0 07321517 -cycle_per_second n 1 2 @ #p 1 0 15279104 -cycle_rickshaw n 1 1 @ 1 0 03904433 -cycles/second n 1 2 @ #p 1 0 15279104 -cyclic_disorder n 1 1 @ 1 0 14392862 -cyclic_neutropenia n 1 1 @ 1 0 14196722 -cyclic_redundancy_check n 1 1 @ 1 0 06357632 -cyclicity n 1 4 @ ~ = + 1 0 04767805 -cycling n 1 3 @ ~ + 1 0 00451370 -cycliophora n 1 3 @ #m %m 1 0 02314717 -cyclist n 1 3 @ ~ + 1 1 09986189 -cyclobenzaprine n 1 1 @ 1 0 03155334 -cyclodestructive_surgery n 1 1 @ 1 0 00678988 -cyclohexanol n 1 1 @ 1 0 14827763 -cyclohexanol_phthalate n 1 1 @ 1 1 14827871 -cycloid n 1 3 @ ~ + 1 0 13908777 -cycloloma n 1 3 @ #m %m 1 0 11833208 -cycloloma_atriplicifolium n 1 2 @ #m 1 0 11833373 -cyclone n 2 6 ! @ ~ %p + ; 2 0 14521302 11443721 -cyclone_cellar n 1 1 @ 1 0 04329681 -cyclooxygenase n 1 2 @ ~ 1 0 14737847 -cyclooxygenase-1 n 1 1 @ 1 0 14738052 -cyclooxygenase-2 n 1 1 @ 1 0 14738295 -cyclopaedia n 1 2 @ ~ 1 0 06427387 -cyclopean_masonry n 1 1 @ 1 0 03155502 -cyclopedia n 1 2 @ ~ 1 0 06427387 -cyclopes n 1 3 @ #m %m 1 0 02460684 -cyclopes_didactylus n 1 2 @ #m 1 0 02460817 -cyclophorus n 1 2 @ #m 1 0 13178883 -cyclophorus_lingua n 1 2 @ #m 1 0 13178284 -cyclopia n 1 1 @ 1 0 14503990 -cyclopropane n 1 1 @ 1 0 03155661 -cyclops n 2 4 @ #m + ; 2 0 09490572 01997119 -cyclopteridae n 1 3 @ #m %m 1 0 02646377 -cyclopterus n 1 3 @ #m %m 1 0 02646508 -cyclopterus_lumpus n 1 3 @ ~ #m 1 0 02646667 -cyclorama n 1 1 @ 1 0 03884072 -cycloserine n 1 1 @ 1 0 03155788 -cyclosis n 1 1 @ 1 0 11443929 -cyclosorus n 1 2 @ #m 1 0 13228692 -cyclosporeae n 1 2 @ #m 1 0 01403968 -cyclostomata n 1 3 @ #m %m 1 0 01476829 -cyclostome n 1 2 @ #m 1 0 01477080 -cyclostyle n 1 2 @ + 1 0 03155915 -cyclothymia n 1 2 @ + 1 0 14392862 -cyclothymic_disorder n 1 1 @ 1 0 14392862 -cyclotron n 1 2 @ ~ 1 0 03156071 -cycnoches n 1 3 @ #m %m 1 0 12054902 -cyder n 1 2 @ ~ 1 0 07921455 -cydippea n 1 2 @ #m 1 0 01919714 -cydippida n 1 2 @ #m 1 0 01919714 -cydippidea n 1 2 @ #m 1 0 01919714 -cydonia n 1 3 @ #m %m 1 0 12628872 -cydonia_oblonga n 1 3 @ #m %p 1 0 12628986 -cygnet n 1 1 @ 1 0 01858906 -cygnus n 2 3 @ #m %m 2 0 09262490 01858989 -cygnus_atratus n 1 2 @ #m 1 0 01860187 -cygnus_buccinator n 1 2 @ #m 1 0 01860002 -cygnus_columbianus n 1 3 @ ~ #m 1 0 01859496 -cygnus_columbianus_bewickii n 1 1 @ 1 0 01859852 -cygnus_columbianus_columbianus n 1 1 @ 1 0 01859689 -cygnus_cygnus n 1 2 @ #m 1 0 01859325 -cygnus_olor n 1 2 @ #m 1 0 01859190 -cylinder n 4 5 @ ~ #p %p + 4 1 13865298 13899804 03156405 03156279 -cylinder_block n 1 3 @ #p %p 1 0 03288225 -cylinder_head n 1 1 @ 1 0 03156606 -cylinder_lock n 1 2 @ %p 1 0 03156767 -cylinder_press n 1 1 @ 1 0 03360431 -cylindrical_lining n 1 1 @ 1 0 02925107 -cylindricality n 1 2 @ + 1 0 05073403 -cylindricalness n 1 2 @ + 1 0 05073403 -cylix n 1 1 @ 1 0 03629520 -cyma n 1 3 @ ~ ; 1 0 03156990 -cyma_recta n 1 1 @ 1 0 03157215 -cyma_reversa n 1 1 @ 1 0 03842585 -cymatiidae n 1 3 @ #m %m 1 0 01947613 -cymatium n 1 3 @ ~ ; 1 0 03156990 -cymbal n 1 2 @ ~ 1 0 03157348 -cymbalist n 1 1 @ 1 0 09986450 -cymbid n 1 2 @ #m 1 0 12055516 -cymbidium n 1 2 @ #m 1 0 12055516 -cyme n 1 2 @ ~ 1 0 13132940 -cymene n 1 1 @ 1 0 14827979 -cymling n 1 2 @ %p 1 0 12160125 -cymograph n 1 1 @ 1 0 03629643 -cymric n 1 2 @ ; 1 0 06961557 -cymru n 1 5 @ #p %m %p - 1 0 08894456 -cymry n 1 2 @ #m 1 0 09747329 -cymule n 1 1 @ 1 0 13133140 -cynancum n 1 2 @ #m 1 0 13236495 -cynara n 1 3 @ #m %m 1 0 11959489 -cynara_cardunculus n 1 3 @ #m %p 1 0 11959862 -cynara_scolymus n 1 3 @ #m %p 1 0 11959632 -cynewulf n 1 1 @ 1 0 10919496 -cynic n 2 3 @ ~ + 2 1 09986532 09986700 -cynicism n 1 1 @ 1 0 07543204 -cynipid_gall_wasp n 1 2 @ #m 1 0 02216740 -cynipid_wasp n 1 2 @ #m 1 0 02216740 -cynipidae n 1 3 @ #m %m 1 0 02216547 -cynips n 1 2 @ #m 1 0 02216924 -cynocephalidae n 1 3 @ #m %m 1 0 02502212 -cynocephalus n 1 3 @ #m %m 1 0 02502357 -cynocephalus_variegatus n 1 1 @ 1 0 02502807 -cynodon n 1 3 @ #m %m 1 0 12115563 -cynodon_dactylon n 1 2 @ #m 1 0 12115748 -cynodon_plectostachyum n 1 2 @ #m 1 0 12116058 -cynodont n 1 2 @ #m 1 0 01720767 -cynodontia n 1 3 @ #m %m 1 0 01720496 -cynoglossidae n 1 3 @ #m %m 1 0 02663352 -cynoglossum n 1 3 @ #m %m 1 0 12818742 -cynoglossum_amabile n 1 2 @ #m 1 0 12818966 -cynoglossum_officinale n 1 2 @ #m 1 0 12819141 -cynoglossum_virginaticum n 1 2 @ #m 1 0 12819354 -cynomys n 1 3 @ #m %m 1 0 02359204 -cynomys_gunnisoni n 1 1 @ 1 0 02359667 -cynomys_ludovicianus n 1 1 @ 1 0 02359556 -cynophobia n 1 1 @ 1 0 14385082 -cynopterus n 1 3 @ #m %m 1 0 02140719 -cynopterus_sphinx n 1 2 @ #m 1 0 02140858 -cynoscephalae n 2 3 @ #p ; 2 0 08790199 01277065 -cynoscion n 1 3 @ #m %m 1 0 02599207 -cynoscion_nebulosus n 1 3 @ #m %p 1 0 02599557 -cynoscion_regalis n 1 3 @ #m %p 1 0 02599347 -cynosure n 2 1 @ 2 0 06651145 05812646 -cynthia n 1 2 @ ; 1 0 09556697 -cynthia_moth n 1 2 @ #m 1 0 02303585 -cynwulf n 1 1 @ 1 0 10919496 -cyon n 1 3 @ #m %m 1 0 02115775 -cyperaceae n 1 4 @ ~ #m %m 1 0 12149751 -cyperus n 1 2 @ %m 1 0 12150447 -cyperus_alternifolius n 1 2 @ #m 1 0 12150722 -cyperus_esculentus n 1 2 @ #m 1 0 12150969 -cyperus_longus n 1 2 @ #m 1 0 12151170 -cyperus_papyrus n 1 2 @ #m 1 0 12151365 -cyperus_rotundus n 1 2 @ #m 1 0 12151615 -cypher n 5 3 @ ~ + 5 0 13742358 13740168 09923418 06355307 06254239 -cyphomandra n 1 3 @ #m %m 1 0 12902887 -cypraea n 1 3 @ #m %m 1 0 01953197 -cypraea_moneta n 1 1 @ 1 0 01953594 -cypraea_tigris n 1 1 @ 1 0 01953762 -cypraeidae n 1 3 @ #m %m 1 0 01953032 -cypre n 1 2 @ #m 1 0 12818346 -cypress n 2 6 @ ~ #m #s %s %p 2 0 11630890 11630489 -cypress_family n 1 3 @ #m %m 1 0 11629501 -cypress_pine n 1 3 @ ~ #m 1 0 11633633 -cypress_sedge n 1 2 @ #m 1 0 12152251 -cypress_spurge n 1 2 @ #m 1 0 12919646 -cypress_tree n 1 5 @ ~ #m %s %p 1 1 11630489 -cypress_vine n 1 1 @ 1 0 12827270 -cyprian n 2 4 @ ~ #m + 2 0 10485440 09699020 -cyprinid n 1 4 @ ~ #m + 1 0 01439121 -cyprinid_fish n 1 3 @ ~ #m 1 0 01439121 -cyprinidae n 1 3 @ #m %m 1 0 01438720 -cypriniform_fish n 1 3 @ ~ #m 1 0 01438208 -cypriniformes n 1 3 @ #m %m 1 0 01437805 -cyprinodont n 1 3 @ ~ #m 1 0 01446589 -cyprinodontidae n 1 3 @ #m %m 1 0 01446283 -cyprinus n 1 3 @ #m %m 1 0 01439657 -cyprinus_carpio n 1 4 @ ~ #m %p 1 0 01439808 -cypriot n 1 3 @ #m + 1 0 09699020 -cypriot_monetary_unit n 1 2 @ ~ 1 0 13693514 -cypriot_pound n 1 2 @ %p 1 0 13693641 -cypriote n 1 3 @ #m + 1 0 09699020 -cypripedia n 1 2 @ #m 1 0 12056099 -cypripedium n 1 3 @ #m %m 1 0 12055839 -cypripedium_acaule n 1 1 @ 1 0 12056601 -cypripedium_album n 1 1 @ 1 0 12056758 -cypripedium_arietinum n 1 1 @ 1 0 12056990 -cypripedium_calceolus n 1 2 @ ~ 1 0 12057211 -cypripedium_calceolus_pubescens n 1 1 @ 1 0 12057447 -cypripedium_californicum n 1 1 @ 1 0 12057660 -cypripedium_fasciculatum n 1 1 @ 1 0 12057895 -cypripedium_montanum n 1 1 @ 1 0 12058192 -cypripedium_parviflorum n 1 2 @ ~ 1 0 12057211 -cypripedium_reginae n 1 1 @ 1 0 12056758 -cyproheptadine n 1 1 @ 1 0 03157582 -cyprus n 2 6 @ #p %m %p + - 2 0 08756884 08756735 -cyrano_de_bergerac n 1 1 @ 1 0 10919598 -cyril n 1 1 @ 1 0 10919886 -cyril_burt n 1 1 @ 1 0 10874921 -cyril_lodowic_burt n 1 1 @ 1 0 10874921 -cyril_northcote_parkinson n 1 1 @ 1 0 11223119 -cyrilla n 1 2 @ #m 1 0 12750767 -cyrilla_family n 1 3 @ #m %m 1 0 12750306 -cyrilla_racemiflora n 1 2 @ #m 1 0 12750767 -cyrilliaceae n 1 3 @ #m %m 1 0 12750306 -cyrillic n 1 2 @ + 1 0 06499796 -cyrillic_alphabet n 1 1 @ 1 0 06499796 -cyrtomium n 1 2 @ #m 1 0 13195151 -cyrtomium_aculeatum n 1 1 @ 1 0 13195341 -cyrus n 1 1 @ 1 0 10920051 -cyrus_hall_mccormick n 1 1 @ 1 0 11168645 -cyrus_ii n 1 1 @ 1 0 10920207 -cyrus_mccormick n 1 1 @ 1 0 11168645 -cyrus_the_elder n 1 1 @ 1 0 10920207 -cyrus_the_great n 1 1 @ 1 0 10920207 -cyrus_the_younger n 1 1 @ 1 0 10920051 -cyst n 2 3 @ ~ + 2 1 14202996 05517578 -cysteine n 1 1 @ 1 0 14604454 -cystic_artery n 1 1 @ 1 0 05344350 -cystic_breast_disease n 1 1 @ 1 0 14198380 -cystic_fibrosis n 1 1 @ 1 0 14155506 -cystic_fibrosis_transport_regulator n 1 1 @ 1 0 05439810 -cystic_mastitis n 1 1 @ 1 0 14198380 -cystic_vein n 1 1 @ 1 0 05365059 -cystine n 1 1 @ 1 0 14604616 -cystitis n 1 1 @ 1 0 14188702 -cystocele n 1 1 @ 1 0 14296966 -cystoid_macular_edema n 1 1 @ 1 0 14254926 -cystolith n 1 1 @ 1 0 09223487 -cystoparalysis n 1 1 @ 1 0 14086036 -cystophora n 1 3 @ #m %m 1 0 02080934 -cystophora_cristata n 1 2 @ #m 1 0 02081060 -cystoplegia n 1 1 @ 1 0 14086036 -cystopteris n 1 3 @ #m %m 1 0 13195547 -cystopteris_bulbifera n 1 1 @ 1 0 13196369 -cystopteris_fragilis n 1 1 @ 1 0 13196003 -cystopteris_montana n 1 1 @ 1 0 13196234 -cytesis_proliferus n 1 2 @ #m 1 0 12514592 -cytherea n 1 1 @ 1 0 09554132 -cytidine n 1 1 @ 1 0 15073147 -cytisus n 1 3 @ #m %m 1 0 12520661 -cytisus_albus n 1 2 @ #m 1 0 12521186 -cytisus_multiflorus n 1 2 @ #m 1 0 12521186 -cytisus_ramentaceus n 1 2 @ #m 1 0 12498457 -cytisus_scoparius n 1 2 @ #m 1 0 12521394 -cytoarchitectonics n 1 1 @ 1 0 04933197 -cytoarchitecture n 1 2 @ + 1 0 04933197 -cytochrome n 1 4 @ ~ %s ; 1 0 15025571 -cytochrome_c n 1 1 @ 1 0 15025815 -cytogenesis n 1 2 @ + 1 0 13454950 -cytogeneticist n 1 1 @ 1 0 09986904 -cytogenetics n 1 2 @ + 1 0 06070738 -cytogeny n 1 1 @ 1 0 13454950 -cytokine n 1 2 @ ~ 1 0 14828193 -cytokinesis n 1 2 @ #p 1 0 13504497 -cytokinin n 1 1 @ 1 0 14745477 -cytol n 1 4 @ ~ #p %p 1 0 05432948 -cytologic_smear n 1 2 @ ~ 1 0 05265139 -cytologic_specimen n 1 2 @ ~ 1 0 05267073 -cytologist n 1 1 @ 1 0 09987045 -cytology n 1 4 @ ~ + - 1 0 06070503 -cytolysin n 1 1 @ 1 0 14828396 -cytolysis n 1 2 @ + 1 0 13455086 -cytomegalovirus n 1 1 @ 1 0 01339801 -cytomembrane n 1 2 @ #p 1 0 05312782 -cytopenia n 1 2 @ ~ 1 0 13973490 -cytophotometer n 1 1 @ 1 0 03157751 -cytophotometry n 1 1 @ 1 0 01003435 -cytoplasm n 1 5 @ ~ #p %p + 1 1 05432948 -cytoplast n 1 1 @ 1 0 05433400 -cytosine n 1 2 @ #s 1 0 14828511 -cytoskeleton n 1 2 @ #p 1 0 05433496 -cytosmear n 1 2 @ ~ 1 0 05265139 -cytosol n 1 1 @ 1 0 05433709 -cytostome n 1 2 @ #p 1 0 01458010 -cytotoxic_drug n 1 2 @ ~ 1 0 03157987 -cytotoxic_t_cell n 1 1 @ 1 0 05452516 -cytotoxicity n 1 1 @ 1 0 13583611 -cytotoxin n 1 3 @ ~ + 1 0 15035367 -czar n 2 4 @ ~ + ; 2 0 09987239 09987161 -czar_alexander_i n 1 2 @ ; 1 0 10812550 -czar_alexander_ii n 1 2 @ ; 1 0 10812800 -czar_alexander_iii n 1 2 @ ; 1 0 10813049 -czar_nicholas_i n 1 2 @ ; 1 0 11205975 -czar_peter_i n 1 1 @ 1 0 11231433 -czarina n 1 1 @ 1 0 09987573 -czaritza n 1 1 @ 1 0 09987573 -czech n 3 3 @ #m + 3 0 09699403 09699200 06944911 -czech_capital n 1 2 @ #p 1 0 08757926 -czech_monetary_unit n 1 2 @ ~ 1 0 13681142 -czech_republic n 1 4 @ #p %m %p 1 0 08757264 -czechoslovak n 1 2 @ #m 1 0 09699200 -czechoslovakia n 1 5 @ #p %m %p + 1 1 08757569 -czechoslovakian n 1 3 @ #m + 1 0 09699200 -czerny n 1 1 @ 1 0 10920366 -czestochowa n 1 2 @ #p 1 0 08983556 -d n 3 3 @ #m %s 3 0 15092227 13750712 06831498 -d'oyly_carte n 1 1 @ 1 0 10942473 -d-day n 1 1 @ 1 0 15162523 -d-layer n 1 2 @ #p 1 0 08582157 -d._h._lawrence n 1 1 @ 1 0 11120146 -d._w._griffith n 1 1 @ 1 0 11016374 -d.a. n 1 1 @ 1 0 06703834 -d.c. n 1 3 @ #p %p 1 0 09070487 -d.p.r.k. n 1 4 @ #p %p - 1 0 08955082 -d_and_c n 1 2 @ %p 1 0 00670250 -d_region n 1 2 @ #p 1 0 08582157 -da n 1 1 @ 1 0 10019072 -da'wah n 1 1 @ 1 0 00731136 -da_gamma n 1 1 @ 1 0 10920582 -da_vinci n 1 1 @ 1 0 11128394 -dab n 2 2 @ + 2 1 00125436 13761171 -daba n 1 1 @ 1 0 06984446 -dabbler n 2 2 @ + 2 0 09987696 01847407 -dabbling_duck n 1 2 ! @ 1 0 01847407 -dabchick n 1 1 @ 1 0 02050809 -daboecia n 1 3 @ #m %m 1 0 12234513 -daboecia_cantabrica n 1 2 @ #m 1 0 12234669 -dacca n 1 2 @ #p 1 0 08849226 -dace n 1 2 @ #m 1 0 01441117 -dacelo n 1 3 @ #m %m 1 0 01828267 -dacelo_gigas n 1 2 @ #m 1 0 01828556 -dacha n 1 1 @ 1 0 03158186 -dachau n 1 2 @ #p 1 0 03158259 -dachshund n 1 2 @ ~ 1 0 02089232 -dachsie n 1 2 @ ~ 1 0 02089232 -dacite n 1 3 @ %s + 1 0 14726823 -dacninae n 1 3 @ #m %m 1 0 01538775 -dacoit n 1 2 @ ; 1 0 09987927 -dacoity n 1 2 @ ; 1 0 00782927 -dacridium_laxifolius n 1 2 @ #m 1 0 11656771 -dacron n 1 2 @ ; 1 0 03158414 -dacrycarpus n 1 2 @ #m 1 0 11653728 -dacrycarpus_dacrydioides n 1 1 @ 1 0 11653904 -dacrydium n 1 3 @ #m %m 1 0 11654124 -dacrydium_bidwilli n 1 2 @ #m 1 0 11655592 -dacrydium_colensoi n 1 2 @ #m 1 0 11654438 -dacrydium_cupressinum n 1 2 @ #m 1 0 11654293 -dacrydium_franklinii n 1 2 @ #m 1 0 11656123 -dacrymyces n 1 2 @ #m 1 0 13062868 -dacrymycetaceae n 1 3 @ #m %m 1 0 13062630 -dacryocyst n 1 2 @ #p 1 0 05331988 -dacryocystitis n 1 1 @ 1 0 14341769 -dacryon n 1 1 @ 1 0 05232345 -dactyl n 2 5 @ ~ #p %p + 2 0 07095148 05566097 -dactylis n 1 2 @ #m 1 0 12116267 -dactylis_glomerata n 1 1 @ 1 0 12116429 -dactyloctenium n 1 2 @ #m 1 0 12116583 -dactyloctenium_aegypticum n 1 1 @ 1 0 12116734 -dactylomegaly n 1 1 @ 1 0 14367249 -dactylopiidae n 1 3 @ #m %m 1 0 02249995 -dactylopius n 1 3 @ #m %m 1 0 02250133 -dactylopius_coccus n 1 2 @ #m 1 0 02250280 -dactylopteridae n 1 3 @ #m %m 1 0 02651846 -dactylopterus n 1 2 @ #m 1 0 02652005 -dactylorhiza n 1 3 @ #m %m 1 0 12058429 -dactylorhiza_fuchsii n 1 2 @ #m 1 0 12058822 -dactylorhiza_maculata_fuchsii n 1 2 @ #m 1 0 12058822 -dactyloscopidae n 1 2 @ %m 1 0 02612046 -dad n 1 1 @ 1 1 09988063 -dada n 2 1 @ 2 0 09988063 08466412 -dadaism n 1 1 @ 1 1 08466412 -daddy n 1 1 @ 1 1 09988063 -daddy_longlegs n 2 2 @ #m 2 0 02205219 01770081 -dado n 3 2 @ #p 3 0 04544138 03158668 03158542 -dado_plane n 1 1 @ 1 0 03158796 -dae-han-min-gook n 1 5 @ ~ #p %p - 1 0 08954611 -daedal n 1 2 @ ; 1 0 09560196 -daedalus n 1 2 @ ; 1 0 09560196 -daemon n 2 2 @ ~ 2 0 09542339 09506216 -daffo n 1 1 @ 1 0 06983114 -daffodil n 1 2 @ ~ 1 1 12421683 -daffodil_garlic n 1 1 @ 1 0 12434483 -dafla n 1 1 @ 1 0 06933824 -daftness n 1 2 @ + 1 0 14397889 -dag n 2 3 @ #p %p 2 0 13724350 03591901 -dag_hammarskjold n 1 1 @ 1 0 11026372 -dag_hjalmar_agne_carl_hammarskjold n 1 1 @ 1 0 11026372 -dagame n 1 2 @ #m 1 0 12662074 -dagan n 1 2 @ ; 1 0 09517209 -dagda n 1 2 @ ; 1 0 09508666 -dagestani n 1 1 @ 1 0 08483650 -dagga n 1 2 @ #m 1 0 12850906 -dagger n 2 3 @ ~ %p 2 1 03158885 06828529 -dagger_fern n 1 2 @ #m 1 0 13199717 -daggerboard n 1 1 @ 1 0 03159176 -dago n 1 2 @ ; 1 0 09716439 -dagon n 1 2 @ ; 1 0 09517057 -daguerre n 1 1 @ 1 0 10920832 -daguerreotype n 1 1 @ 1 0 03159331 -dah n 1 2 @ #p 1 0 06805962 -dahl n 2 4 @ #m #p %p 2 0 12510774 07726230 -dahlia n 1 2 @ #m 1 0 11960245 -dahlia_pinnata n 1 2 @ #m 1 0 11960245 -dahna n 1 2 @ #p 1 0 09172111 -dahomey n 1 4 @ #p %m %p 1 0 08759420 -daikon n 1 1 @ 1 0 11895092 -dail n 1 2 @ #p 1 0 08319539 -dail_eireann n 1 2 @ #p 1 0 08319539 -daily n 1 1 @ 1 0 06267564 -daily_dew n 1 2 @ #m 1 0 12782530 -daily_double n 1 1 @ 1 0 00506919 -daily_round n 1 1 @ 1 0 00415098 -daily_variation n 1 1 @ 1 1 07444278 -daimler n 1 1 @ 1 0 10921009 -daimon n 1 2 @ ~ 1 0 09542339 -daintiness n 1 2 @ + 1 0 04813066 -dainty n 1 3 @ ~ + 1 0 07557165 -daiquiri n 1 3 @ ~ %s 1 1 07914413 -dairen n 1 2 @ #p 1 0 08727003 -dairy n 1 1 @ 1 1 03159535 -dairy_cattle n 1 2 @ ~ 1 1 02406174 -dairy_cow n 1 2 @ ~ 1 1 02406174 -dairy_farm n 1 1 @ 1 0 03159535 -dairy_farmer n 1 1 @ 1 0 09988392 -dairy_farming n 1 1 @ 1 0 00918289 -dairy_product n 1 3 @ ~ %s 1 0 07843775 -dairying n 1 1 @ 1 0 00918289 -dairymaid n 1 1 @ 1 0 09988216 -dairyman n 2 1 @ 2 1 09988392 09988311 -dais n 1 1 @ 1 1 03159640 -daishiki n 1 1 @ 1 0 03163381 -daisy n 1 3 @ ~ #m 1 1 11939491 -daisy-bush n 1 3 @ ~ #m 1 0 11997969 -daisy-leaved_grape_fern n 1 1 @ 1 0 12961242 -daisy_bush n 1 3 @ ~ #m 1 0 11997969 -daisy_chain n 2 1 @ 2 0 08376823 03159828 -daisy_cutter n 2 4 @ ~ #p ; 2 0 03390327 00131347 -daisy_fleabane n 1 1 @ 1 0 11966083 -daisy_print_wheel n 1 2 @ #p 1 0 03160001 -daisy_wheel n 1 2 @ #p 1 0 03160001 -daisybush n 1 3 @ ~ #m 1 0 11997969 -daisyleaf_grape_fern n 1 1 @ 1 0 12961242 -daisywheel_printer n 1 2 @ %p 1 0 03160186 -dak n 1 2 @ #m 1 0 12510343 -dakar n 1 2 @ #p 1 0 08996118 -dakoit n 1 2 @ ; 1 0 09987927 -dakoity n 1 2 @ ; 1 0 00782927 -dakota n 3 3 @ #p %p 3 0 09654374 09053019 06909478 -dal n 1 3 @ #p %p 1 0 13624509 -dalai_lama n 1 1 @ 1 0 09988493 -dalasi n 1 2 @ %p 1 0 13668161 -dalbergia n 1 3 @ #m %m 1 0 12521847 -dalbergia_cearensis n 1 3 @ #m %s 1 0 12523141 -dalbergia_latifolia n 1 2 @ #m 1 0 12522678 -dalbergia_nigra n 1 2 @ #m 1 0 12523475 -dalbergia_retusa n 1 3 @ #m %s 1 0 12523850 -dalbergia_sissoo n 1 2 @ #m 1 0 12522894 -dalbergia_stevensonii n 1 1 @ 1 0 12523698 -dale n 1 2 @ ; 1 0 09262690 -dale_carnegie n 1 1 @ 1 0 10883202 -dalea n 1 3 @ #m %m 1 0 12524518 -dalea_spinosa n 1 2 @ #m 1 0 12524633 -dalesman n 1 1 @ 1 0 09988597 -daleth n 1 2 @ #m 1 0 06837037 -dali n 1 1 @ 1 0 10921218 -dalian n 1 2 @ #p 1 0 08727003 -dall's_sheep n 1 2 @ #m 1 0 02415253 -dall_sheep n 1 2 @ #m 1 0 02415253 -dallas n 1 2 @ #p 1 1 09143786 -dalliance n 2 2 @ + 2 0 01067819 00512522 -dallier n 1 2 @ + 1 0 09988703 -dallis_grass n 1 2 @ #m 1 0 12128071 -dallisgrass n 1 2 @ #m 1 0 12128071 -dalmane n 1 2 @ ; 1 0 03371363 -dalmatia n 1 3 @ %m + 1 0 08819223 -dalmatia_pyrethrum n 1 2 @ #m 1 0 12022382 -dalmatian n 2 4 @ ~ #m + 2 0 09988918 02110341 -dalmatian_iris n 1 1 @ 1 0 12414329 -dalmatian_laburnum n 1 2 @ #m 1 0 12498457 -dalmatian_pyrethrum n 1 2 @ #m 1 0 12022382 -dalo n 1 3 @ #m %p 1 0 11786539 -dalton n 1 1 @ 1 0 10921324 -dalton's_law n 2 2 @ ; 2 0 05882226 05876469 -dalton's_law_of_partial_pressures n 1 2 @ ; 1 0 05876469 -dalton_trumbo n 1 1 @ 1 0 11350059 -daltonism n 1 1 @ 1 0 14154168 -dam n 3 5 @ ~ #p %p + 3 1 03160309 13659419 01323493 -dama n 1 3 @ #m %m 1 0 02433205 -dama_dama n 1 2 @ #m 1 0 02433318 -damage n 5 4 @ ~ + ; 5 3 07420770 07339653 00403092 13303315 00744131 -damage_control n 1 1 @ 1 0 00804271 -damages n 1 2 @ ~ 1 0 13290676 -damaliscus n 1 3 @ #m %m 1 0 02422249 -damaliscus_lunatus n 1 2 @ #m 1 0 02422391 -damar n 1 1 @ 1 0 14895807 -damaraland_mole_rat n 1 1 @ 1 0 02370137 -damascene n 2 3 @ #m + 2 0 09733580 03160593 -damascus n 1 3 @ #p %m 1 1 09033936 -damascus_steel n 1 1 @ 1 0 14803438 -damask n 2 2 @ + 2 0 03160894 03160740 -damask_rose n 1 1 @ 1 0 12621410 -damask_steel n 1 1 @ 1 0 14803438 -damask_violet n 1 2 @ #m 1 0 11888800 -dame n 2 2 @ ~ 2 1 09989045 09989290 -dame's_violet n 1 2 @ #m 1 0 11888800 -dame_agatha_mary_clarissa_christie n 1 1 @ 1 0 10896987 -dame_alice_ellen_terry n 1 1 @ 1 0 11336544 -dame_alicia_markova n 1 1 @ 1 0 11157140 -dame_barbara_hepworth n 1 1 @ 1 0 11044168 -dame_daphne_du_maurier n 1 1 @ 1 0 10945263 -dame_edith_louisa_sitwell n 1 1 @ 1 0 11304011 -dame_edith_sitwell n 1 1 @ 1 0 11304011 -dame_ellen_terry n 1 1 @ 1 0 11336544 -dame_jean_iris_murdoch n 1 1 @ 1 0 11196764 -dame_joan_sutherland n 1 1 @ 1 0 11325867 -dame_kiri_janette_te_kanawa n 1 1 @ 1 0 11334773 -dame_kiri_te_kanawa n 1 1 @ 1 0 11334773 -dame_margot_fonteyn n 1 1 @ 1 0 10974455 -dame_muriel_spark n 1 1 @ 1 0 11309613 -dame_myra_hess n 1 1 @ 1 0 11048109 -dame_nellie_melba n 1 1 @ 1 0 11172045 -dame_rebecca_west n 1 1 @ 1 0 11382398 -dame_sybil_thorndike n 1 1 @ 1 0 11341267 -damgalnunna n 1 2 @ ; 1 0 09517342 -daminozide n 1 1 @ 1 0 14708531 -damkina n 1 2 @ ; 1 0 09517342 -dammar n 1 1 @ 1 0 14895807 -dammar_pine n 1 4 @ ~ #m %s 1 0 11647306 -dammar_resin n 1 1 @ 1 0 14895807 -damn n 1 1 @ 1 1 05140793 -damnation n 2 3 @ ~ + 2 1 07233542 14458593 -damned n 1 2 @ + 1 1 07945490 -damocles n 1 1 @ 1 0 10921571 -damoiselle n 1 1 @ 1 0 09989168 -damon n 1 1 @ 1 0 10921879 -damon_and_pythias n 1 2 @ ; 1 0 09560426 -damon_runyon n 1 1 @ 1 0 11273907 -damosel n 1 1 @ 1 0 09989168 -damourite n 1 1 @ 1 0 14673669 -damozel n 1 1 @ 1 0 09989168 -damp n 1 3 @ ~ + 1 0 14535905 -damp-proof_course n 1 1 @ 1 0 03161228 -damp_course n 1 1 @ 1 0 03161228 -dampener n 1 2 @ + 1 0 03161016 -dampening n 1 3 @ ~ + 1 0 00278040 -damper n 3 4 @ ~ #p + 3 0 03161725 03161450 01145905 -damper_block n 1 2 @ #p 1 0 03161893 -damping_off n 1 1 @ 1 0 14280151 -damping_off_fungus n 1 1 @ 1 0 12982590 -dampness n 1 3 @ ~ + 1 0 14535905 -damsel n 1 1 @ 1 0 09989168 -damselfish n 1 3 @ ~ #m 1 0 02606384 -damselfly n 1 1 @ 1 0 02268853 -damson n 1 2 @ #p 1 0 07751737 -damson_plum n 3 3 @ #p %p 3 0 12773917 12639910 07751737 -damson_plum_tree n 1 2 @ %p 1 0 12639910 -dana n 1 2 @ ; 1 0 09508809 -danaea n 1 2 @ #m 1 0 13215799 -danaid n 1 3 @ ~ #m 1 0 02279637 -danaid_butterfly n 1 3 @ ~ #m 1 0 02279637 -danaidae n 1 3 @ #m %m 1 0 02279442 -danau n 1 2 @ #p 1 0 09263087 -danaus n 1 3 @ #m %m 1 0 02279819 -danaus_plexippus n 1 2 @ #m 1 0 02279972 -dance n 4 4 @ ~ + - 4 3 07020538 08253141 00428270 07448717 -dance_band n 1 2 @ ~ 1 0 08249960 -dance_floor n 1 1 @ 1 0 03162080 -dance_hall n 1 2 @ ~ 1 0 02783324 -dance_lesson n 1 1 @ 1 0 00889682 -dance_master n 1 1 @ 1 0 09990777 -dance_music n 2 2 @ ~ 2 0 07060697 07054433 -dance_of_death n 1 1 @ 1 0 00542149 -dance_orchestra n 1 2 @ ~ 1 0 08249960 -dance_palace n 1 2 @ ~ 1 0 02783324 -dance_school n 1 1 @ 1 0 08411483 -dance_step n 1 3 @ ~ #p 1 0 00533922 -dancer n 2 3 @ ~ + 2 1 09989502 09990415 -danceroom_music n 1 1 @ 1 0 07060697 -dancing n 1 4 @ ~ + - 1 1 00428270 -dancing-master n 1 1 @ 1 0 09990777 -dancing_lady_orchid n 1 2 @ #m 1 0 12074408 -dancing_partner n 1 1 @ 1 0 09990904 -dancing_school n 1 1 @ 1 1 08278822 -dandelion n 1 3 @ ~ #m 1 1 12024176 -dandelion_green n 2 2 @ #p 2 0 12024690 07733217 -dander n 2 1 @ 2 0 09262798 07518000 -dandie_dinmont n 1 1 @ 1 0 02096437 -dandie_dinmont_terrier n 1 1 @ 1 0 02096437 -dandle_board n 1 2 @ #p 1 0 04167759 -dandruff n 2 1 @ 2 0 14231207 09262955 -dandy n 2 3 @ ~ + 2 0 09991026 04612373 -dandy_fever n 1 1 @ 1 0 14129784 -dandyism n 1 1 @ 1 0 04910848 -dane n 1 3 @ ~ #m 1 1 09699642 -danewort n 1 2 @ #m 1 0 12679023 -dangaleat n 1 1 @ 1 0 06985573 -danger n 4 4 ! @ ~ + 4 4 14540765 00802238 14541044 08644213 -danger_line n 1 1 @ 1 1 08644327 -danger_zone n 1 1 @ 1 0 08689873 -dangerous_undertaking n 1 1 @ 1 0 00796315 -dangerousness n 1 4 ! @ ~ + 1 0 04856460 -dangla n 1 1 @ 1 0 06985573 -dangle-berry n 1 1 @ 1 0 12236977 -dangleberry n 1 1 @ 1 0 12236977 -dangling n 1 2 @ + 1 0 01017701 -dangling_modifier n 1 2 @ ~ 1 1 06323822 -dangling_participle n 1 1 @ 1 0 06324086 -daniel n 3 3 @ #p ; 3 0 10922019 09991285 06438995 -daniel_bernoulli n 1 1 @ 1 0 10848641 -daniel_boone n 1 1 @ 1 0 10857418 -daniel_chester_french n 1 1 @ 1 0 10981750 -daniel_defoe n 1 1 @ 1 0 10927270 -daniel_garrison_brinton n 1 1 @ 1 0 10864428 -daniel_hudson_burnham n 1 1 @ 1 0 10873505 -daniel_jones n 1 1 @ 1 0 11090136 -daniel_morgan n 1 1 @ 1 0 11190592 -daniel_ortega n 1 1 @ 1 0 11217182 -daniel_ortega_saavedra n 1 1 @ 1 0 11217182 -daniel_patrick_moynihan n 1 1 @ 1 0 11194205 -daniel_rutherford n 1 1 @ 1 0 11276549 -daniel_webster n 1 1 @ 1 0 11379217 -danish n 2 2 @ + 2 1 06954048 07693590 -danish_blue n 1 1 @ 1 0 07852452 -danish_capital n 1 2 @ #p 1 0 08761868 -danish_krone n 1 2 @ %p 1 0 13682740 -danish_monetary_unit n 1 2 @ ~ 1 0 13682631 -danish_pastry n 1 1 @ 1 0 07693590 -dankness n 1 2 @ + 1 0 14536085 -danmark n 1 6 @ #m #p %m %p - 1 0 08761244 -dano-norwegian n 1 2 @ ~ 1 0 06954461 -danse_du_ventre n 1 1 @ 1 0 00530554 -danse_macabre n 1 1 @ 1 0 00542149 -danseur n 1 1 @ 1 0 09991406 -danseur_noble n 1 1 @ 1 0 09991406 -danseuse n 1 2 @ ~ 1 0 09834592 -dante n 1 2 @ + 1 1 10922239 -dante_alighieri n 1 1 @ 1 0 10922239 -dante_gabriel_rossetti n 1 1 @ 1 0 11271563 -danton n 1 1 @ 1 0 10922501 -danton_true_young n 1 1 @ 1 0 11403456 -danu n 1 2 @ ; 1 0 09508809 -danube n 1 2 @ #p 1 0 09263087 -danube_river n 1 2 @ #p 1 0 09263087 -danzig n 1 3 @ #m #p 1 0 08983742 -daoism n 1 3 @ %p - 1 0 05977340 -daphne n 2 4 @ ~ #m ; 2 0 12346578 09550278 -daphne_cneorum n 1 1 @ 1 0 12346813 -daphne_du_maurier n 1 1 @ 1 0 10945263 -daphne_family n 1 3 @ #m %m 1 0 12346179 -daphne_laureola n 1 1 @ 1 0 12346986 -daphne_mezereum n 1 2 @ %p 1 0 12347158 -daphnia n 1 2 @ #m 1 0 01994910 -dapperness n 1 2 @ + 1 0 04814025 -dapple n 1 3 @ ~ + 1 0 04682462 -dapple-gray n 1 1 @ 1 0 04962395 -dapple-grey n 1 1 @ 1 0 04962395 -dappled-gray n 1 1 @ 1 0 04962395 -dappled-grey n 1 1 @ 1 0 04962395 -dapsang n 1 2 @ #p 1 0 09322701 -dapsone n 1 1 @ 1 0 03162171 -dar_al-harb n 1 1 @ 1 0 09178596 -dar_al-islam n 1 1 @ 1 0 09178481 -dar_es_salaam n 1 2 @ #p 1 0 09034967 -daraf n 1 1 @ 1 0 13637988 -dard n 1 2 @ ~ 1 0 06972311 -dardan n 1 2 @ #m 1 0 09750524 -dardanelles n 2 3 @ #p ; 2 0 09041371 01277288 -dardanelles_campaign n 1 3 @ #p ; 1 0 01277288 -dardanian n 1 2 @ #m 1 0 09750524 -dardanus n 1 2 @ ; 1 0 09494280 -dardic n 1 2 @ ~ 1 0 06972311 -dardic_language n 1 2 @ ~ 1 0 06972311 -dare n 1 2 @ + 1 0 07231532 -daredevil n 1 3 @ ~ + 1 0 09991530 -daredevilry n 1 1 @ 1 0 04859323 -daredeviltry n 1 1 @ 1 0 04859323 -darfur n 1 2 @ #p 1 0 09029884 -dari n 1 1 @ 1 0 06974283 -dari_persian n 1 1 @ 1 0 06974283 -daricon n 1 2 @ ; 1 0 03869222 -darier's_disease n 1 1 @ 1 0 14228712 -daring n 2 4 @ ~ = + 2 2 07231532 04858785 -darius_i n 1 1 @ 1 0 10922772 -darius_iii n 1 1 @ 1 0 10922968 -darius_milhaud n 1 1 @ 1 0 11179124 -darius_the_great n 1 1 @ 1 0 10922772 -darjeeling n 1 1 @ 1 0 07934800 -dark n 5 6 ! @ ~ #p %p + 5 5 13983515 14563564 08646306 15167027 05988498 -dark-eyed_junco n 1 1 @ 1 0 01534582 -dark-field_microscope n 1 1 @ 1 0 04506688 -dark_adaptation n 1 1 @ 1 0 00193622 -dark_ages n 1 3 @ #p - 1 1 15259284 -dark_blue n 1 1 @ 1 1 04969703 -dark_bread n 1 2 @ ~ 1 1 07682316 -dark_chocolate n 1 1 @ 1 0 07603722 -dark_comedy n 1 1 @ 1 0 07016098 -dark_field_illumination n 1 1 @ 1 1 00645622 -dark_glasses n 1 3 @ %p ; 1 0 04356056 -dark_ground_illumination n 1 1 @ 1 0 00645622 -dark_horse n 2 1 @ 2 0 09991740 02385580 -dark_lantern n 1 1 @ 1 0 03162297 -dark_matter n 1 3 @ %p ; 1 0 14582220 -dark_meat n 1 2 @ #p 1 0 07650637 -dark_red n 1 2 @ ~ 1 0 04963740 -darkening n 1 3 @ ~ + 1 0 00274437 -darkey n 1 2 @ ; 1 0 09637684 -darkie n 1 2 @ ; 1 0 09637684 -darkling_beetle n 1 3 @ ~ #m 1 0 02181235 -darkling_groung_beetle n 1 3 @ ~ #m 1 0 02181235 -darkness n 6 4 ! @ ~ + 6 4 13983515 08646306 14563564 05988498 04979870 04978216 -darkroom n 1 1 @ 1 0 03162460 -darky n 1 2 @ ; 1 0 09637684 -darling n 2 4 @ ~ #p + 2 1 09991867 09263479 -darling_pea n 1 3 @ ~ #m 1 0 11751765 -darling_river n 1 2 @ #p 1 0 09263479 -darlingtonia n 1 3 @ #m %m 1 0 12780852 -darlingtonia_californica n 1 2 @ #m 1 0 12781007 -darmera n 1 3 @ #m %m 1 0 12797213 -darmera_peltata n 1 2 @ #m 1 0 12797368 -darmstadtium n 1 1 @ 1 0 14636392 -darn n 2 1 @ 2 0 05140793 03745285 -darnel n 1 1 @ 1 0 12125183 -darner n 1 2 @ + 1 0 09992138 -darning n 1 2 @ + 1 0 00267217 -darning_needle n 2 1 @ 2 0 03162556 02268443 -darpa n 1 2 @ #p 1 0 08132046 -darrow n 1 1 @ 1 0 10923146 -darryl_francis_zanuck n 1 1 @ 1 0 11404971 -darryl_zanuck n 1 1 @ 1 0 11404971 -darsana n 1 2 @ ; 1 0 06238036 -dart n 3 4 @ ~ #p + 3 0 03162818 03162714 00334356 -dart_board n 1 1 @ 1 0 03162940 -dart_player n 1 1 @ 1 0 09992238 -dart_thrower n 1 1 @ 1 0 04430158 -dartboard n 1 1 @ 1 0 03162940 -darter n 2 4 @ ~ #m + 2 0 02054502 01314910 -dartmouth n 1 3 @ #m #p 1 0 03163081 -dartmouth_college n 1 3 @ #m #p 1 0 03163081 -darts n 1 1 @ 1 0 00504209 -darvon n 1 2 @ ; 1 0 04012852 -darwin n 2 3 @ #p + 2 1 10923313 08835058 -darwin_tulip n 1 1 @ 1 0 12454949 -darwinian n 1 2 @ + 1 0 09992331 -darwinism n 1 2 @ ~ 1 0 06110091 -daryacheh-ye_orumiyeh n 1 2 @ #p 1 0 09333706 -das n 1 3 @ ~ #m 1 0 02372584 -das_kapital n 1 1 @ 1 0 07282929 -dash n 6 4 @ ~ #p + 6 2 04812871 00294452 07469043 06843148 06805962 00555983 -dash-pot n 1 1 @ 1 0 03163488 -dashboard n 2 2 @ #p 2 0 04281375 03163222 -dasheen n 3 5 @ #m #s #p %p 3 0 11786843 11786539 07736813 -dashiell_hammett n 1 1 @ 1 0 11026816 -dashiki n 1 1 @ 1 0 03163381 -dashing_hopes n 1 1 @ 1 0 00068755 -dasht-e-kavir n 1 2 @ #p 1 0 09169038 -dasht-e-lut n 1 2 @ #p 1 0 09169188 -dassie n 1 3 @ ~ #m 1 0 02372584 -dastard n 1 2 @ + 1 0 09992429 -dastardliness n 1 2 @ + 1 0 04861221 -dasyatidae n 1 3 @ #m %m 1 0 01497878 -dasyatis n 1 3 @ #m %m 1 0 01498268 -dasyatis_centroura n 1 2 @ #m 1 0 01498406 -dasymeter n 1 1 @ 1 0 03163649 -dasypodidae n 1 3 @ #m %m 1 0 02454119 -dasyprocta n 1 3 @ #m %m 1 0 02365848 -dasyprocta_aguti n 1 2 @ #m 1 0 02366002 -dasyproctidae n 1 3 @ #m %m 1 0 02365672 -dasypus n 1 3 @ #m %m 1 0 02454657 -dasypus_novemcinctus n 1 2 @ #m 1 0 02454794 -dasyure n 1 3 @ ~ #m 1 0 01883920 -dasyurid n 1 3 @ ~ #m 1 0 01883513 -dasyurid_marsupial n 1 3 @ ~ #m 1 0 01883513 -dasyuridae n 1 3 @ #m %m 1 0 01883212 -dasyurus n 1 3 @ #m %m 1 0 01883762 -dasyurus_quoll n 1 1 @ 1 0 01884104 -dasyurus_viverrinus n 1 1 @ 1 0 01884203 -dat n 1 1 @ 1 0 03195959 -data n 1 2 @ ~ 1 1 08462320 -data-storage_medium n 1 2 @ ~ 1 0 06263762 -data_communication n 1 3 @ ~ ; 1 0 06278830 -data_conversion n 1 1 @ 1 0 05803095 -data_converter n 1 3 @ ~ #p 1 0 03163798 -data_encryption n 1 2 @ ; 1 0 00616807 -data_file n 1 2 @ ~ 1 0 06508816 -data_format n 1 3 @ ~ ; 1 0 06636806 -data_formatting n 1 3 @ ~ ; 1 0 06636806 -data_hierarchy n 1 1 @ 1 0 08378180 -data_input_device n 1 2 @ ~ 1 0 03163973 -data_link n 1 1 @ 1 0 03674270 -data_mining n 1 1 @ 1 0 13455234 -data_multiplexer n 1 1 @ 1 0 03164192 -data_point n 1 2 @ ~ 1 0 05816622 -data_processing n 1 4 @ ~ %p ; 1 1 13455487 -data_processor n 1 6 @ ~ #p %p ; - 1 0 03082979 -data_rate n 1 2 @ ~ 1 0 15276959 -data_structure n 1 3 @ ~ ; 1 0 05728493 -data_system n 1 2 @ ~ 1 0 03164344 -data_track n 1 2 @ ; 1 0 04464211 -database n 1 2 @ ~ 1 0 06637824 -database_management n 1 1 @ 1 0 01133933 -database_management_system n 1 2 @ ~ 1 0 06588785 -date n 8 6 @ ~ #m #p %m + 8 5 15159583 09992538 08385009 15179888 15120223 15160579 15159819 07765073 -date-nut_bread n 1 1 @ 1 0 07685118 -date_bar n 1 1 @ 1 0 07638039 -date_bread n 1 1 @ 1 0 07685031 -date_line n 1 1 @ 1 0 08599792 -date_of_reference n 1 2 @ ; 1 0 15296687 -date_palm n 1 2 @ %p 1 0 12593994 -date_plum n 1 1 @ 1 0 12771890 -date_rape n 1 1 @ 1 0 00773673 -dateline n 2 3 @ #p + 2 0 08599792 06349030 -dating n 1 3 @ ~ + 1 0 00992331 -dative n 1 1 @ 1 0 06311723 -dative_bond n 1 1 @ 1 0 11437957 -dative_case n 1 1 @ 1 0 06311723 -datril n 1 2 @ ; 1 0 02674482 -datum n 1 2 @ ~ 1 1 05816622 -datura n 1 3 @ #m %m 1 0 12903250 -datura_arborea n 1 2 @ #m 1 0 12899537 -datura_sanguinea n 1 1 @ 1 0 12899971 -datura_stramonium n 1 1 @ 1 0 12903503 -datura_suaveolens n 1 2 @ #m 1 0 12899752 -daub n 3 3 @ ~ + 3 0 14828683 04694441 03164532 -daubentonia n 1 3 @ #m %m 1 0 02497983 -daubentonia_madagascariensis n 1 2 @ #m 1 0 02498153 -daubentoniidae n 1 2 @ %m 1 0 02497832 -dauber n 1 2 @ + 1 0 09992746 -daubing n 1 3 @ ~ + 1 0 00718815 -daucus n 1 3 @ #m %m 1 0 12936999 -daucus_carota n 1 2 @ #m 1 0 12937130 -daucus_carota_sativa n 1 3 @ #m %p 1 0 12937388 -daugavpils n 1 2 @ #p 1 0 09013724 -daughter n 1 4 ! @ ~ + 1 1 09992837 -daughter-in-law n 1 1 @ 1 0 09993040 -daughter_cell n 1 1 @ 1 0 11688552 -daumier n 1 1 @ 1 0 10923521 -dauntlessness n 1 2 @ + 1 0 04858089 -dauphin n 1 1 @ 1 0 09993122 -davalia_bullata n 1 2 @ #m 1 0 13188767 -davalia_bullata_mariesii n 1 2 @ #m 1 0 13188767 -davallia n 1 3 @ ~ #m 1 0 13188096 -davallia_canariensis n 1 2 @ #m 1 0 13188462 -davallia_mariesii n 1 2 @ #m 1 0 13188767 -davallia_pyxidata n 1 2 @ #m 1 0 13188619 -davalliaceae n 1 3 @ #m %m 1 0 13187604 -davenport n 3 3 @ ~ #p 3 0 09086635 03164722 03164605 -david n 3 2 @ ; 3 0 10924231 10924072 10923700 -david_alfaro_siqueiros n 1 1 @ 1 0 11302962 -david_barnard_steinman n 1 1 @ 1 0 11315379 -david_ben_gurion n 1 1 @ 1 0 10844805 -david_bruce n 1 1 @ 1 0 10867708 -david_bushnell n 1 1 @ 1 0 10876160 -david_crockett n 1 1 @ 1 0 10915566 -david_garrick n 1 1 @ 1 0 10991415 -david_glasgow_farragut n 1 1 @ 1 0 10966982 -david_grun n 1 1 @ 1 0 10844805 -david_hartley n 1 1 @ 1 0 11033003 -david_herbert_lawrence n 1 1 @ 1 0 11120146 -david_hilbert n 1 1 @ 1 0 11049835 -david_hubel n 1 1 @ 1 0 11063944 -david_hume n 1 1 @ 1 0 11066425 -david_john_moore_cornwell n 1 1 @ 1 0 11122825 -david_lewelyn_wark_griffith n 1 1 @ 1 0 11016374 -david_livingstone n 1 1 @ 1 0 11135797 -david_low n 1 1 @ 1 0 11142155 -david_mamet n 1 1 @ 1 0 11153094 -david_o._selznick n 1 1 @ 1 0 11292207 -david_oliver_selznick n 1 1 @ 1 0 11292207 -david_ricardo n 1 1 @ 1 0 11259457 -david_riesman n 1 1 @ 1 0 11262340 -david_riesman_jr. n 1 1 @ 1 0 11262340 -david_rittenhouse n 1 1 @ 1 0 11263337 -david_roland_smith n 1 1 @ 1 0 11306175 -david_sarnoff n 1 1 @ 1 0 11281995 -david_siqueiros n 1 1 @ 1 0 11302962 -david_smith n 1 1 @ 1 0 11306175 -davidson's_penstemon n 1 2 @ #m 1 0 12885956 -daviesia n 1 3 @ #m %m 1 0 12524944 -davis n 6 1 @ 6 0 10925402 10924987 10924828 10924649 10924452 10924347 -davis'_birthday n 1 2 @ #p 1 0 15189684 -davis_cup n 1 1 @ 1 0 03164809 -davit n 1 2 @ #p 1 0 03164929 -davy n 1 1 @ 1 0 10925132 -davy's_gray n 1 1 @ 1 1 14923060 -davy's_grey n 1 1 @ 1 0 14923060 -davy_crockett n 1 1 @ 1 0 10915566 -davy_jones n 1 2 @ ~ 1 0 09376526 -davy_jones's_locker n 1 2 @ ~ 1 0 09376526 -davy_lamp n 1 1 @ 1 0 04126852 -davys n 1 1 @ 1 0 10925402 -daw n 1 2 @ #m 1 0 01579578 -dawah n 1 1 @ 1 0 00731136 -dawdler n 1 3 @ ~ + 1 0 09993252 -dawdling n 1 2 @ + 1 0 01067819 -dawes n 1 1 @ 1 0 10925584 -dawn n 3 3 @ + ; 3 2 15168790 07326108 15267945 -dawn_horse n 1 2 @ #m 1 0 02375862 -dawn_redwood n 1 2 @ #m 1 0 11640132 -dawning n 1 2 @ + 1 1 15168790 -dawson n 1 2 @ #p 1 0 08830256 -dawson's_encephalitis n 1 1 @ 1 0 14344189 -dawson_river_salmon n 1 2 @ #m 1 0 02545153 -day n 10 6 ! @ ~ #p %p + 10 6 15155220 15123115 15157225 15164957 15136453 15249236 15208540 15208333 14484516 10925772 -day_bed n 1 1 @ 1 0 04344873 -day_blindness n 1 1 @ 1 0 14554345 -day_boarder n 1 2 @ ~ 1 0 09993651 -day_book n 1 1 @ 1 0 06502858 -day_camp n 1 1 @ 1 1 03165343 -day_care n 1 1 @ 1 0 01210439 -day_care_center n 1 1 @ 1 0 03165466 -day_game n 1 2 ! @ 1 0 00456465 -day_jessamine n 1 2 @ #m 1 0 12902466 -day_laborer n 1 1 @ 1 0 09994400 -day_labourer n 1 1 @ 1 0 09994400 -day_lily n 2 3 @ ~ #m 2 0 12457771 12456845 -day_nursery n 1 1 @ 1 0 03165466 -day_of_atonement n 1 2 @ ; 1 0 15185471 -day_of_judgement n 1 2 @ ; 1 0 15171307 -day_of_judgment n 1 2 @ ; 1 0 15171307 -day_of_reckoning n 2 2 @ ; 2 0 15171307 07334206 -day_of_remembrance n 1 2 @ ~ 1 0 15249799 -day_of_rest n 1 2 @ ~ 1 0 15137047 -day_of_the_month n 1 2 @ ~ 1 0 15159583 -day_of_the_week n 1 3 @ ~ #p 1 0 15163005 -day_off n 1 1 @ 1 1 15137556 -day_return n 1 1 @ 1 0 06520092 -day_school n 3 2 ! @ 3 1 08411585 08411849 03165616 -day_shift n 2 1 @ 2 0 15292722 08218592 -day_watch n 1 1 @ 1 1 08218592 -dayan n 1 1 @ 1 0 10925939 -daybed n 2 1 @ 2 1 03165096 03002711 -daybook n 2 1 @ 2 0 13405166 03165211 -dayboy n 1 1 @ 1 0 09993822 -daybreak n 1 1 @ 1 1 15168790 -daycare n 1 1 @ 1 0 01210439 -daydream n 1 2 @ + 1 0 05769471 -daydreamer n 1 3 @ ~ + 1 0 09993901 -daydreaming n 1 2 @ + 1 0 05769471 -dayflower n 1 3 @ ~ #m 1 0 12606545 -dayfly n 1 2 @ #m 1 0 02262449 -daygirl n 1 1 @ 1 0 09994319 -daylight n 2 4 @ ~ #p %p 2 2 15164957 11444038 -daylight-saving_time n 1 1 @ 1 0 15117246 -daylight-savings_time n 1 1 @ 1 0 15117246 -daylight_saving n 1 1 @ 1 0 15117246 -daylight_savings n 1 1 @ 1 0 15117246 -daylight_vision n 1 2 @ ~ 1 0 05657166 -daylily n 1 3 @ ~ #m 1 0 12456845 -daypro n 1 3 @ %s ; 1 0 03867515 -days n 1 1 @ 1 1 15141059 -dayspring n 1 1 @ 1 0 15168790 -daystar n 1 1 @ 1 0 09359471 -daytime n 1 4 @ ~ #p %p 1 1 15164957 -dayton n 1 2 @ #p 1 0 09131205 -dayton_ax n 1 1 @ 1 0 03077442 -dayton_axe n 1 1 @ 1 0 03077442 -daytona_beach n 1 2 @ #p 1 0 09072611 -daze n 2 2 @ + 2 0 07510625 05684561 -dazzle n 1 2 @ + 1 0 04952821 -db n 2 1 @ 2 0 14636523 13713633 -dba n 1 2 @ ; 1 0 06334512 -dbms n 1 2 @ ~ 1 0 06588785 -dc n 2 3 @ #p %p 2 2 09070487 11447153 -dccp n 1 2 @ %m 1 0 08302257 -dci n 1 1 @ 1 0 10015607 -dd n 1 1 @ 1 0 06703114 -ddc n 1 1 @ 1 0 03190763 -ddi n 1 1 @ 1 0 03190897 -dds n 1 1 @ 1 0 06703002 -ddt n 1 1 @ 1 0 14599938 -de n 1 3 @ #p %p 1 0 09069862 -de-escalation n 1 3 @ + ; 1 0 00355252 -de-iodinase n 1 1 @ 1 1 14829073 -de-iodination n 1 2 @ + 1 1 13460863 -de-nazification n 1 1 @ 1 0 13461722 -de-stalinisation n 1 1 @ 1 0 13463656 -de-stalinization n 1 1 @ 1 0 13463656 -de_bakey n 1 1 @ 1 0 10926238 -de_broglie n 1 1 @ 1 0 10865329 -de_facto_segregation n 1 1 @ 1 0 08379630 -de_forest n 1 1 @ 1 0 10927424 -de_gaulle n 1 1 @ 1 0 10927824 -de_jure_segregation n 1 1 @ 1 0 08379782 -de_kooning n 1 1 @ 1 0 10928299 -de_l'orme n 1 1 @ 1 0 10929437 -de_la_mare n 1 1 @ 1 0 10928645 -de_mille n 1 1 @ 1 0 10929886 -de_niro n 1 1 @ 1 0 10930913 -de_quincey n 1 1 @ 1 0 10931167 -de_sade n 1 1 @ 1 0 11278120 -de_saussure n 1 1 @ 1 0 10931634 -de_sica n 1 1 @ 1 0 10932140 -de_spinoza n 1 1 @ 1 0 11311450 -de_valera n 1 1 @ 1 0 10932244 -de_vries n 1 1 @ 1 0 10932495 -dea n 1 2 @ #p 1 0 08141374 -deacon n 2 2 @ ~ 2 1 09994673 09994520 -deaconess n 1 1 @ 1 0 09994808 -deactivation n 2 4 ! @ + ; 2 0 00233795 00233614 -dead n 2 4 ! @ ~ %m 2 2 07945657 15123362 -dead-air_space n 1 1 @ 1 0 03165718 -dead-end_street n 1 1 @ 1 0 02851540 -dead-man's-fingers n 1 2 @ #m 1 0 12966945 -dead-man's_float n 1 1 @ 1 0 00443375 -dead-men's-fingers n 1 2 @ #m 1 0 12966945 -dead_air n 1 1 @ 1 0 15271901 -dead_axle n 1 2 @ ~ 1 0 03165823 -dead_body n 1 2 @ ~ 1 1 05217859 -dead_center n 1 1 @ 1 0 05077863 -dead_centre n 1 1 @ 1 0 05077863 -dead_drop n 1 1 @ 1 0 08583994 -dead_duck n 1 1 @ 1 0 14479086 -dead_end n 2 1 @ 2 1 03146449 14015361 -dead_hand n 2 2 @ ; 2 0 13250244 05194435 -dead_hand_of_the_past n 1 1 @ 1 0 05194435 -dead_heat n 1 1 @ 1 0 07354009 -dead_language n 1 1 @ 1 0 06283647 -dead_letter n 2 1 @ 2 1 14006821 06626743 -dead_load n 1 1 @ 1 0 03166360 -dead_mail n 1 1 @ 1 0 06626743 -dead_march n 1 1 @ 1 0 07059028 -dead_metaphor n 1 1 @ 1 0 07107083 -dead_nettle n 4 3 @ ~ #m 4 0 12868880 12849061 12847008 12395068 -dead_person n 1 3 @ ~ #m 1 1 09994943 -dead_reckoning n 2 1 @ 2 0 05803938 00817394 -dead_ringer n 1 2 @ ; 1 0 10531557 -dead_room n 1 2 @ ~ 1 1 03785499 -dead_sea n 1 2 @ #p 1 0 09263619 -dead_sea_scrolls n 1 2 @ ; 1 0 06407915 -dead_soul n 1 3 @ ~ #m 1 0 09994943 -dead_weight n 2 1 @ 2 0 05833169 05027446 -deadbeat n 1 2 @ ~ 1 0 09999532 -deadbeat_dad n 1 1 @ 1 0 09996149 -deadbolt n 1 3 @ ~ #p 1 0 02865931 -deadening n 1 2 @ + 1 0 00272878 -deadeye n 2 2 @ ; 2 0 09994878 03165955 -deadhead n 2 1 @ 2 1 09996304 03166120 -deadlight n 1 2 @ #p 1 0 03166213 -deadline n 1 2 @ ~ 1 1 15180082 -deadliness n 1 3 @ ~ + 1 0 04791081 -deadlock n 1 1 @ 1 1 14015361 -deadly_nightshade n 2 2 @ #m 2 0 12898342 12894607 -deadly_sin n 1 2 @ ~ 1 1 00757730 -deadness n 3 3 @ ~ + 3 0 05213201 05023404 05006519 -deadwood n 2 1 @ 2 0 13163553 05120564 -deae_cellulose n 1 1 @ 1 1 14794304 -deaf n 1 3 @ %m + 1 1 07945949 -deaf-aid n 1 1 @ 1 0 03506727 -deaf-and-dumb_person n 1 2 @ ~ 1 0 10342367 -deaf-mute n 1 3 @ ~ + 1 0 10342367 -deaf-muteness n 1 2 @ + 1 0 14551822 -deaf-mutism n 1 1 @ 1 0 14551822 -deaf_person n 1 3 @ ~ #m 1 0 09996481 -deafness n 1 3 @ ~ + 1 0 14550987 -deal n 9 6 @ ~ #p %p + ; 9 3 01110274 06771159 13774404 15102622 15100257 07956887 07293180 01085337 01084637 -dealer n 5 3 @ ~ + 5 2 10720453 08063446 10721470 10474446 09996636 -dealership n 1 2 @ + 1 0 08060193 -dealfish n 1 2 @ #m 1 0 02546627 -dealignment n 1 1 @ 1 0 13455906 -dealing n 2 3 @ ~ + 2 1 01135372 01106808 -dealings n 3 3 @ ~ + 3 1 00040804 13780449 01106808 -deamination n 1 2 @ + 1 0 13456071 -deaminization n 1 2 @ + 1 0 13456071 -dean n 4 3 @ + ; 4 1 09996784 10926066 09997068 09996920 -dean_acheson n 1 1 @ 1 0 10807858 -dean_gooderham_acheson n 1 1 @ 1 0 10807858 -dean_martin n 1 1 @ 1 0 11159698 -dean_swift n 1 1 @ 1 0 11326869 -deanery n 2 1 @ 2 0 03166514 00591725 -deanship n 1 2 @ + 1 0 00591725 -dear n 2 2 @ + 2 1 09849598 10243872 -dearest n 1 1 @ 1 0 09849598 -dearie n 1 2 @ ~ 1 0 09991867 -dearness n 1 2 @ + 1 0 05146272 -dearth n 2 1 @ 2 0 14449865 05117140 -deary n 1 2 @ ~ 1 0 09991867 -death n 8 5 ! @ ~ #p + 8 7 07355491 11444117 13962498 15143477 15143276 09488259 14562960 00219575 -death's-head_moth n 1 2 @ #m 1 0 02299846 -death's_head n 1 1 @ 1 0 06808271 -death-roll n 1 1 @ 1 0 06495220 -death_adder n 1 2 @ #m 1 0 01750167 -death_angel n 1 2 @ #m 1 0 13003254 -death_bell n 1 1 @ 1 0 03166951 -death_benefit n 1 2 @ ~ 1 0 13297254 -death_camas n 1 3 @ ~ #m 1 0 12466727 -death_camp n 1 1 @ 1 0 03166685 -death_cap n 1 2 @ #m 1 0 13003254 -death_chair n 1 1 @ 1 0 03271030 -death_chamber n 1 1 @ 1 0 03422288 -death_cup n 1 2 @ #m 1 0 13003254 -death_duty n 1 1 @ 1 0 13313322 -death_house n 1 1 @ 1 0 03166809 -death_instinct n 1 2 @ ; 1 0 09180967 -death_knell n 2 1 @ 2 0 07286999 03166951 -death_mask n 1 1 @ 1 0 03167053 -death_penalty n 1 2 @ ~ 1 0 01163779 -death_rate n 1 2 @ ~ 1 0 15277118 -death_row n 1 1 @ 1 0 03166809 -death_seat n 1 1 @ 1 0 03167153 -death_squad n 1 1 @ 1 0 08209187 -death_tax n 1 1 @ 1 0 13313322 -death_toll n 1 1 @ 1 0 05164353 -death_valley n 1 2 @ #p 1 0 09169303 -death_warrant n 1 2 @ ; 1 0 06547992 -death_wish n 1 2 @ ; 1 0 09180967 -deathbed n 2 1 @ 2 1 15154376 03166600 -deathblow n 1 1 @ 1 0 00219463 -deathrate n 1 2 @ ~ 1 0 15277118 -deathtrap n 1 1 @ 1 0 03167337 -deathwatch n 2 3 @ ~ #m 2 0 02261419 02177775 -deathwatch_beetle n 1 2 @ #m 1 0 02177775 -deb n 1 1 @ 1 0 09997834 -debacle n 3 1 @ 3 1 07365432 11454953 07476623 -debarkation n 1 3 @ ~ + 1 0 00058002 -debarment n 2 4 @ ~ + ; 2 0 14427991 01077881 -debasement n 2 3 @ ~ + 2 0 14487443 00271263 -debaser n 1 3 @ ~ + 1 0 09997212 -debate n 2 3 @ ~ + 2 2 07140978 07242104 -debater n 1 3 @ ~ + 1 0 09997404 -debauch n 1 2 @ + 1 1 00511212 -debauchee n 1 3 @ ~ + 1 0 10257647 -debaucher n 1 2 @ + 1 0 10754281 -debauchery n 1 2 @ + 1 0 00511212 -debenture n 2 2 @ ; 2 0 13339844 06526004 -debenture_bond n 1 1 @ 1 0 13339844 -debilitation n 1 2 @ + 1 0 07331210 -debility n 1 3 @ ~ + 1 1 14547643 -debit n 1 3 ! @ + 1 0 13405807 -debit_card n 1 2 @ %p 1 0 13376764 -debit_entry n 1 1 @ 1 0 13405807 -debit_side n 1 1 @ 1 0 13406509 -debitor n 1 2 @ ~ 1 0 09997622 -debridement n 1 1 @ 1 0 00669932 -debriefing n 1 2 @ + 1 0 07220466 -debris n 1 2 @ ~ 1 1 14857897 -debris_storm n 1 1 @ 1 0 07440411 -debris_surge n 1 1 @ 1 0 07440411 -debs n 1 1 @ 1 0 10926429 -debt n 3 2 @ ~ 3 2 14490564 13397174 06773347 -debt_ceiling n 1 2 @ ~ 1 0 13397932 -debt_instrument n 1 2 @ ~ 1 0 13398241 -debt_limit n 1 2 @ ~ 1 0 13397932 -debtor n 1 3 ! @ ~ 1 0 09997622 -debugger n 1 2 @ + 1 0 06574334 -debunking n 1 2 @ + 1 1 00522338 -debussy n 1 1 @ 1 0 10926597 -debut n 2 3 @ ~ + 2 1 00238022 07217579 -debutante n 1 1 @ 1 0 09997834 -dec n 2 4 @ #p %p ; 2 1 15213774 08632894 -dec_24 n 1 1 @ 1 0 15196444 -dec_25 n 1 2 @ #p 1 0 15196186 -decade n 2 4 @ ~ #p %p 2 1 15204983 13746512 -decadence n 1 2 @ + 1 0 14440875 -decadency n 1 2 @ + 1 0 14440875 -decadent n 1 2 @ + 1 0 09997939 -decadron n 1 2 @ ; 1 0 14753808 -decaf n 1 1 @ 1 0 07919787 -decaffeinated_coffee n 1 1 @ 1 0 07919787 -decagon n 1 1 @ 1 0 13882713 -decagram n 1 3 @ #p %p 1 0 13724350 -decahedron n 1 1 @ 1 0 13915690 -decal n 1 1 @ 1 0 03167464 -decalcification n 1 2 @ + 1 0 13456252 -decalcomania n 2 1 @ 2 0 03167464 00935453 -decalescence n 1 2 @ + 1 0 11444371 -decaliter n 1 3 @ #p %p 1 0 13624509 -decalitre n 1 3 @ #p %p 1 0 13624509 -decalogue n 1 1 @ 1 0 07169970 -decameter n 1 3 @ #p %p 1 0 13659419 -decametre n 1 3 @ #p %p 1 0 13659419 -decampment n 2 2 @ + 2 0 00055633 00055227 -decanedioic_acid n 1 1 @ 1 0 14739861 -decanoic_acid n 1 1 @ 1 0 14791830 -decantation n 1 2 @ + 1 0 00935608 -decanter n 1 2 @ + 1 0 02960903 -decapitation n 2 1 @ 2 0 01165224 00228181 -decapod n 2 3 @ ~ #m 2 0 01976146 01971094 -decapod_crustacean n 1 3 @ ~ #m 1 0 01976146 -decapoda n 2 3 @ #m %m 2 0 01975880 01970866 -decapterus n 1 3 @ #m %m 1 0 02581289 -decapterus_macarellus n 1 2 @ #m 1 0 02581482 -decapterus_punctatus n 1 2 @ #m 1 0 02581642 -decarboxylase n 1 1 @ 1 0 14828815 -decarboxylation n 1 2 @ + 1 0 13456367 -decasyllable n 1 1 @ 1 0 07096569 -decathlon n 1 1 @ 1 0 07457016 -decatur n 3 2 @ #p 3 0 10926773 09083659 09054110 -decay n 5 3 @ ~ + 5 3 13456715 13456567 11444643 14560612 13456899 -deccan_hemp n 2 3 @ #p %p 2 0 12178358 12178129 -decease n 1 3 @ ~ + 1 0 07355491 -deceased n 1 3 @ ~ #m 1 1 09994943 -deceased_person n 1 3 @ ~ #m 1 0 09994943 -decedent n 1 4 @ ~ #m + 1 1 09994943 -deceit n 3 2 @ ~ 3 1 04875352 06758225 00752431 -deceitfulness n 1 2 @ + 1 0 04876561 -deceiver n 1 3 @ ~ + 1 0 09998101 -deceleration n 3 4 ! @ + ; 3 1 05061345 15276171 00330674 -december n 1 3 @ #p %p 1 1 15213774 -december_31 n 1 3 @ ~ #p 1 1 15182053 -december_8 n 1 1 @ 1 0 15195259 -decency n 2 4 ! @ ~ + 2 2 04900739 04871259 -decennary n 1 4 @ ~ #p %p 1 0 15204983 -decennium n 1 4 @ ~ #p %p 1 0 15204983 -decentalisation n 1 1 @ 1 0 13457181 -decentralisation n 1 2 @ + 1 0 01238058 -decentralization n 2 3 ! @ + 2 0 13457181 01238058 -deception n 3 3 @ ~ + 3 0 06758225 00752431 00099951 -deceptiveness n 1 3 @ ~ + 1 0 04874939 -decibel n 1 1 @ 1 0 13713633 -deciding n 1 3 @ ~ + 1 0 05788149 -decidua n 1 2 @ #s 1 0 05519707 -deciduous_holly n 1 1 @ 1 0 12758176 -deciduous_plant n 1 2 ! @ 1 0 13099999 -deciduous_tooth n 1 2 @ #p 1 0 05306894 -decigram n 1 3 @ #p %p 1 0 13723470 -decile n 1 2 @ ; 1 0 05737982 -deciliter n 1 3 @ #p %p 1 0 13624026 -decilitre n 1 3 @ #p %p 1 0 13624026 -decimal n 2 3 @ ~ + 2 0 13736197 13585309 -decimal_digit n 1 1 @ 1 0 13741698 -decimal_fraction n 1 2 @ ~ 1 0 13736197 -decimal_notation n 1 1 @ 1 0 06810407 -decimal_number_system n 1 2 @ ~ 1 0 06810790 -decimal_numeration_system n 1 2 @ ~ 1 0 06810790 -decimal_point n 1 1 @ 1 0 06812289 -decimal_system n 1 2 @ ~ 1 0 06810790 -decimal_system_of_classification n 1 1 @ 1 0 05727427 -decimalisation n 1 2 @ + 1 0 00194414 -decimalization n 1 2 @ + 1 0 00194414 -decimation n 1 2 @ + 1 0 00218427 -decimeter n 1 3 @ #p %p 1 1 13658998 -decimetre n 1 3 @ #p %p 1 0 13658998 -decimus_junius_juvenalis n 1 1 @ 1 0 11095391 -decipherer n 2 3 @ ~ + 2 0 09995398 09995253 -decipherment n 1 3 @ ~ + 1 0 00617059 -decision n 5 5 ! @ ~ + ; 5 4 00162632 05838176 07293678 07293546 04863969 -decision_maker n 1 2 @ ~ 1 0 09770949 -decision_making n 1 2 @ ~ 1 1 05788149 -decision_table n 1 1 @ 1 0 06581959 -decisive_factor n 1 1 @ 1 0 05692758 -decisiveness n 2 4 ! @ = + 2 0 04863969 04754440 -decius n 1 1 @ 1 0 10926917 -deck n 4 5 @ ~ #p %m ; 4 3 03167666 03167978 07956721 03168107 -deck-house n 1 2 @ #p 1 0 03168543 -deck_chair n 1 1 @ 1 1 03168217 -deck_of_cards n 1 2 @ %m 1 1 07956721 -deck_tennis n 1 1 @ 1 0 00481938 -decker n 2 2 @ ; 2 0 10928140 03168364 -deckhand n 1 1 @ 1 0 09998788 -deckle n 2 1 @ 2 0 03168774 03168663 -deckle_edge n 1 1 @ 1 0 03168774 -declamation n 2 3 @ ~ + 2 1 07242324 07242470 -declaration n 6 5 @ ~ #p + ; 6 2 06725877 06736217 07204110 06737394 06726158 06511874 -declaration_of_estimated_tax n 1 1 @ 1 1 06549115 -declaration_of_independence n 1 1 @ 1 1 06512099 -declarative n 1 2 @ + 1 0 13801700 -declarative_mood n 1 1 @ 1 0 13801700 -declarative_sentence n 1 1 @ 1 0 06600903 -declaratory_sentence n 1 1 @ 1 0 06600903 -declarer n 2 3 @ ~ + 2 0 09961012 09814660 -declassification n 1 3 ! @ + 1 0 01149115 -declension n 4 4 @ ~ %m + 4 0 13804203 13464204 09265620 08006511 -declination n 4 4 @ ~ + ; 4 0 14422488 09265620 08632894 06634239 -decline n 4 4 ! @ ~ + 4 3 13457378 14422488 13456567 09265620 -decline_in_quality n 1 2 @ ~ 1 0 13464204 -declinometer n 1 1 @ 1 0 03168933 -declivity n 1 3 @ ~ + 1 1 09265620 -declomycin n 1 2 @ ; 1 0 03174211 -deco n 1 1 @ 1 0 08465118 -decoagulant n 1 2 @ ~ 1 0 02718259 -decoction n 1 3 @ + ; 1 0 13457665 -decoction_mashing n 1 2 @ ; 1 0 13457831 -decoction_process n 1 2 @ ; 1 0 13457831 -decoder n 2 2 @ ~ 2 0 09995398 03169063 -decoding n 1 3 @ ~ + 1 0 00617059 -decolletage n 1 1 @ 1 0 03169176 -decolonisation n 1 2 @ + 1 0 01082548 -decolonization n 1 2 @ + 1 0 01082548 -decomposition n 5 4 @ ~ + ; 5 2 06013471 14561327 13458268 13458019 11444643 -decomposition_reaction n 1 3 @ ~ ; 1 0 13458268 -decompound_leaf n 1 1 @ 1 0 13157481 -decompressing n 1 2 @ + 1 0 00357451 -decompression n 2 3 ! @ + 2 0 00616641 00357451 -decompression_sickness n 1 1 @ 1 0 14068344 -decongestant n 1 2 @ ~ 1 0 03169271 -deconstruction n 1 3 @ + ; 1 0 05970012 -deconstructionism n 1 2 @ ; 1 0 05970012 -deconstructivism n 1 1 @ 1 0 08275704 -decontamination n 1 3 ! @ + 1 0 00394485 -decor n 1 2 @ + 1 1 03579355 -decoration n 3 3 @ ~ + 3 1 03169390 06706676 00262249 -decoration_day n 1 2 @ #p 1 0 15189452 -decorativeness n 1 3 @ ~ + 1 1 04700327 -decorator n 2 3 @ ~ + 2 2 10210648 09998907 -decorousness n 1 4 ! @ ~ + 1 0 04898804 -decortication n 1 2 @ + 1 0 00670105 -decorum n 1 4 ! @ ~ + 1 1 04898804 -decoupage n 2 1 @ 2 0 03170292 00935786 -decoy n 2 4 @ ~ #p + 2 0 09995573 02776205 -decrease n 4 4 ! @ ~ + 4 1 07355887 13458571 05109808 00351638 -decree n 1 4 @ ~ + ; 1 1 06539770 -decree_nisi n 1 2 @ ; 1 0 06540702 -decrement n 2 3 ! @ ~ 2 1 05109808 13458571 -decrepitation n 1 2 @ + 1 0 07383092 -decrepitude n 1 1 @ 1 0 14562541 -decrescendo n 1 3 @ + ; 1 0 04991225 -decriminalisation n 1 2 ! @ 1 0 01126151 -decriminalization n 1 2 ! @ 1 0 01126151 -decryption n 1 3 @ ~ + 1 0 00617059 -decubitus n 1 1 @ 1 0 05080526 -decubitus_ulcer n 1 1 @ 1 0 14212126 -decumaria n 1 3 @ #m %m 1 0 12789767 -decumaria_barbara n 1 2 @ #m 1 0 12789977 -decumaria_barbata n 1 2 @ #m 1 0 12789977 -decumary n 1 2 @ #m 1 0 12789977 -decussation n 1 3 @ ~ + 1 0 05228496 -ded n 1 1 @ 1 0 06703213 -dedicated_file_server n 1 3 ! @ ; 1 0 03170459 -dedication n 5 4 @ ~ + ; 5 1 04877421 07452348 06684383 06406317 01206153 -dedifferentiation n 1 2 @ + 1 0 13458840 -deductible n 2 3 @ + ; 2 0 13273550 06393424 -deduction n 6 3 @ ~ + 6 5 13329047 13274597 05780885 05774129 00360757 00362103 -deductive_reasoning n 1 2 @ ~ 1 0 05774129 -deed n 2 3 @ ~ ; 2 1 06545137 00030358 -deed_of_conveyance n 1 3 @ ~ ; 1 0 06545137 -deed_of_trust n 1 2 @ ; 1 0 06546408 -deed_poll n 1 2 @ ; 1 0 06545843 -deedbox n 1 2 @ ~ 1 0 04340750 -deeds n 1 2 @ ; 1 0 00577357 -deems_taylor n 1 1 @ 1 0 11333601 -deep n 3 3 @ ~ + 3 0 15267373 09461315 09263811 -deep-dish_pie n 1 1 @ 1 0 07625831 -deep-freeze n 1 2 @ + 1 0 03170635 -deep-sea_diver n 1 1 @ 1 0 09999036 -deep_brown n 1 1 @ 1 0 04972451 -deep_cervical_vein n 1 1 @ 1 0 05363270 -deep_fording n 1 1 @ 1 0 00297951 -deep_freeze n 1 1 @ 1 0 14011557 -deep_freezer n 1 1 @ 1 0 03170635 -deep_kiss n 1 1 @ 1 0 00138799 -deep_middle_cerebral_vein n 1 1 @ 1 0 05362745 -deep_pocket n 1 2 @ ; 1 0 13330591 -deep_red n 1 1 @ 1 0 04963588 -deep_south n 1 3 @ #p %p 1 1 09051235 -deep_space n 1 2 @ #p 1 0 08502051 -deep_supporting_fire n 1 1 @ 1 0 00989122 -deep_temporal_vein n 1 1 @ 1 0 05382316 -deep_water n 1 1 @ 1 0 05687958 -deepening n 1 2 @ + 1 1 13458968 -deepfreeze n 1 1 @ 1 0 03170635 -deepness n 4 5 ! @ ~ = + 4 0 05613962 05134880 05134547 04986414 -deepwater_pipefish n 1 2 @ #m 1 0 01456454 -deepwater_squirrelfish n 1 2 @ #m 1 0 01451115 -deer n 1 4 @ ~ #m %p 1 1 02430045 -deer's-ear n 1 2 @ #m 1 0 12292877 -deer's-ears n 1 2 @ #m 1 0 12292877 -deer_fern n 1 1 @ 1 0 13185269 -deer_fly_fever n 1 2 @ %p 1 0 14276360 -deer_grass n 1 2 @ #m 1 0 12350032 -deer_hunt n 1 1 @ 1 0 00453313 -deer_hunter n 1 1 @ 1 0 09995757 -deer_hunting n 1 1 @ 1 0 00453313 -deer_mouse n 1 2 @ #m 1 0 02337001 -deer_mushroom n 1 2 @ #m 1 0 13019835 -deer_tick n 1 2 @ #m 1 0 01777304 -deer_trail n 1 1 @ 1 0 03171002 -deerberry n 1 1 @ 1 0 12249294 -deere n 1 1 @ 1 0 10927104 -deerhound n 1 1 @ 1 0 02092002 -deerskin n 1 1 @ 1 0 14762486 -deerstalker n 1 1 @ 1 0 03170872 -deerstalking n 1 1 @ 1 0 00711727 -defacement n 1 2 @ + 1 0 00403466 -defalcation n 2 3 @ ~ + 2 0 13273738 00776732 -defalcator n 1 2 @ + 1 0 10051337 -defamation n 2 3 @ ~ + 2 0 06719579 01220336 -defamer n 1 2 @ + 1 0 09999135 -default n 4 3 @ ~ + 4 1 00067397 13300411 13300141 05791864 -default_judgement n 1 2 @ ; 1 0 01188537 -default_judgment n 1 2 @ ; 1 0 01188537 -default_option n 1 1 @ 1 0 05791864 -defaulter n 3 3 @ ~ + 3 0 09999683 09999532 09999443 -defeat n 2 4 ! @ ~ + 2 2 07475364 07540866 -defeated n 1 1 @ 1 0 07946135 -defeatism n 1 2 @ + 1 0 07542560 -defeatist n 1 2 @ + 1 0 09999795 -defecation n 1 3 @ ~ + 1 0 13459088 -defecation_reflex n 1 1 @ 1 0 00811221 -defecator n 1 2 @ + 1 0 10000007 -defect n 4 2 @ ~ 4 4 14464005 05162642 14464203 04692157 -defect_of_speech n 1 2 @ ~ 1 0 14400677 -defection n 2 3 @ ~ + 2 1 00055315 14413411 -defective_pleading n 1 2 @ ; 1 0 06562615 -defectiveness n 1 3 @ ~ + 1 0 14472299 -defector n 1 4 @ ~ + ; 1 0 10006842 -defence n 11 6 ! @ ~ #p + ; 11 0 13459322 08081403 08064523 08064130 07200813 06740644 03171356 01198750 00954311 00823750 00823532 -defence_force n 1 2 @ ~ 1 0 08064130 -defence_mechanism n 1 3 @ ~ ; 1 0 13459322 -defence_policy n 1 1 @ 1 0 05900263 -defence_program n 1 1 @ 1 0 05900263 -defence_reaction n 1 3 @ ~ ; 1 0 13459322 -defence_system n 1 1 @ 1 0 03171228 -defencelessness n 1 2 @ + 1 0 05043091 -defendant n 1 5 ! @ ~ + ; 1 1 09762101 -defender n 2 3 @ ~ + 2 1 09614684 09615211 -defender_of_the_faith n 1 1 @ 1 0 06340182 -defending_team n 1 2 @ ; 1 0 08081403 -defenestration n 1 2 @ + 1 0 00116989 -defense n 12 6 ! @ ~ #p %p ; 12 8 00954311 00823750 08081403 06740644 13459322 08131530 08064523 07200813 08064130 03171356 01198750 00823532 -defense_advanced_research_projects_agency n 1 2 @ #p 1 0 08132046 -defense_attorney n 1 2 @ ; 1 0 10000158 -defense_contractor n 1 2 @ ; 1 0 10000294 -defense_department n 1 2 @ %p 1 0 08131530 -defense_force n 1 2 @ ~ 1 0 08064130 -defense_information_systems_agency n 1 2 @ #p 1 0 08396207 -defense_intelligence_agency n 1 4 @ #m #p ; 1 0 08340989 -defense_laboratory n 1 1 @ 1 0 03171094 -defense_lawyer n 1 2 @ ; 1 0 10000158 -defense_lawyers n 1 1 @ 1 0 08064523 -defense_logistics_agency n 1 3 @ #p %p 1 0 08341330 -defense_mechanism n 1 3 @ ~ ; 1 0 13459322 -defense_policy n 1 1 @ 1 1 05900263 -defense_program n 1 1 @ 1 1 05900263 -defense_reaction n 1 3 @ ~ ; 1 0 13459322 -defense_reutilization_and_marketing_service n 1 2 @ #p 1 0 08341551 -defense_secretary n 2 2 @ #m 2 0 10571202 00600655 -defense_system n 1 1 @ 1 0 03171228 -defense_team n 1 1 @ 1 0 08064523 -defense_technical_information_center n 1 2 @ #p 1 0 08341798 -defenselessness n 1 2 @ + 1 0 05043091 -defensibility n 1 2 @ + 1 0 05202954 -defensive n 1 2 @ + 1 0 06195249 -defensive_attitude n 1 1 @ 1 0 06195249 -defensive_measure n 1 3 @ ~ ; 1 0 00954311 -defensive_structure n 1 2 @ ~ 1 0 03171356 -defensiveness n 1 2 @ ~ 1 0 04843429 -deference n 3 3 @ ~ + 3 1 01228877 04913839 04641153 -deferment n 1 3 @ ~ + 1 0 01066881 -deferral n 2 3 @ ~ + 2 0 14013646 01066881 -deferred_payment n 1 1 @ 1 0 13374281 -defervescence n 1 2 @ + 1 0 07368482 -defiance n 3 3 @ ~ + 3 2 04907991 07231943 01170320 -defibrillation n 1 2 @ + 1 0 00698959 -defibrillator n 1 2 @ + 1 0 03171635 -deficiency n 2 3 @ ~ + 2 2 14449405 05113133 -deficiency_disease n 1 2 @ ~ 1 0 14198200 -deficit n 4 4 ! @ ~ ; 4 1 05114371 14449960 13595550 13396276 -deficit_spending n 1 1 @ 1 0 01122754 -defilade n 1 1 @ 1 0 03171910 -defile n 1 1 @ 1 0 09263912 -defilement n 1 2 @ + 1 0 14498404 -defiler n 1 2 @ + 1 0 10451858 -defining n 1 2 @ + 1 1 13555446 -definite_article n 1 1 @ 1 0 06324864 -definite_integral n 1 1 @ 1 0 06015863 -definite_quantity n 1 2 @ ~ 1 0 13576101 -definiteness n 1 3 @ ~ + 1 0 04754237 -definition n 2 3 @ ~ + 2 2 06744396 04702957 -definitive_host n 1 1 @ 1 0 01385878 -deflagration n 1 2 @ + 1 0 13450417 -deflation n 3 4 ! @ + ; 3 0 13499165 13459821 00361932 -deflationary_spiral n 1 2 ! @ 1 0 13499590 -deflator n 1 2 @ + 1 0 13257792 -deflection n 5 3 @ ~ + 5 1 14504726 07410883 07310839 05011277 00350380 -deflector n 1 2 @ + 1 0 03172038 -deflexion n 4 3 @ ~ + 4 0 07410883 07310839 05011277 00350380 -defloration n 2 2 @ + 2 0 00966718 00844994 -defoe n 1 1 @ 1 0 10927270 -defoliant n 1 2 @ + 1 0 14828927 -defoliation n 2 2 @ + 2 0 13460034 00279674 -defoliator n 1 2 @ + 1 0 02161338 -deforestation n 2 2 @ + 2 0 14519097 01262441 -deformation n 3 3 @ ~ + 3 1 07433973 07358060 00404726 -deformity n 2 3 @ ~ + 2 0 14213512 04691178 -defrauder n 1 3 @ ~ + 1 0 09955015 -defrayal n 1 3 @ ~ + 1 0 01120448 -defrayment n 1 3 @ ~ + 1 0 01120448 -defroster n 1 3 @ + ; 1 0 03172211 -deftness n 1 3 @ ~ + 1 0 05642175 -defunctness n 1 2 @ + 1 0 13963032 -defusing n 1 2 @ + 1 0 00233614 -degas n 1 1 @ 1 0 10927687 -degaussing n 1 2 @ + 1 0 13460129 -degeneracy n 2 1 @ 2 0 14440875 04850996 -degenerate n 1 3 @ ~ + 1 0 10419047 -degeneration n 3 3 @ ~ + 3 1 13460299 14440875 07426893 -degenerative_arthritis n 1 1 @ 1 0 14188238 -degenerative_disorder n 1 2 @ ~ 1 0 14058563 -degenerative_joint_disease n 1 1 @ 1 0 14188238 -deglutition n 1 2 @ ~ 1 0 00839778 -degradation n 2 3 @ ~ + 2 1 00271263 14440623 -degrader n 1 2 @ ~ 1 0 09997212 -degree n 7 5 @ ~ #p %p = 7 6 05093890 13939892 06697331 13611207 05861317 13714184 05094565 -degree_celsius n 1 2 @ ~ 1 0 13714491 -degree_centigrade n 1 2 @ ~ 1 0 13714491 -degree_day n 2 1 @ 2 0 15158691 13715001 -degree_fahrenheit n 1 1 @ 1 0 13714641 -degree_of_a_polynomial n 1 1 @ 1 0 05861579 -degree_of_a_term n 1 1 @ 1 0 05861463 -degree_of_freedom n 2 2 @ ; 2 1 05858551 05859477 -degree_program n 1 1 @ 1 0 06677194 -degressive_tax n 1 1 @ 1 0 13314796 -degustation n 1 2 @ + 1 0 00841901 -dehiscence n 1 4 @ = + ; 1 0 11444816 -dehong_dai n 1 1 @ 1 0 06935111 -dehumanisation n 1 2 @ + 1 0 00271636 -dehumanization n 1 2 @ + 1 0 00271636 -dehydrated_food n 1 1 @ 1 0 07573453 -dehydrated_foods n 1 1 @ 1 0 07573453 -dehydration n 3 4 @ ~ #p + 3 0 14536831 14040846 13460568 -dehydroretinol n 1 1 @ 1 0 15090238 -deicer n 1 3 @ + ; 1 0 03172211 -deictic n 1 2 @ + 1 0 06289693 -deictic_word n 1 1 @ 1 0 06289693 -deification n 3 2 @ + 3 0 14575063 10418577 01029114 -deimos n 1 1 @ 1 0 09264021 -deinocheirus n 1 2 @ #m 1 0 01716594 -deinonychus n 1 2 @ #m 1 0 01718096 -deipnosophist n 1 1 @ 1 0 09995829 -deism n 1 2 @ + 1 0 06223922 -deist n 1 2 @ + 1 0 10000459 -deity n 1 4 @ ~ #m + 1 1 09505418 -deixis n 1 2 @ + 1 0 06179985 -deja_vu n 1 1 @ 1 1 05810440 -dejectedness n 1 1 @ 1 0 07537668 -dejection n 2 3 @ ~ + 2 1 14486533 14854262 -dejeuner n 1 2 @ ~ 1 0 07575076 -dekagram n 1 3 @ #p %p 1 0 13724350 -dekaliter n 1 3 @ #p %p 1 0 13624509 -dekalitre n 1 3 @ #p %p 1 0 13624509 -dekameter n 1 3 @ #p %p 1 0 13659419 -dekametre n 1 3 @ #p %p 1 0 13659419 -dekker n 1 1 @ 1 0 10928140 -dekko n 1 2 @ ; 1 0 00882045 -del_rio n 1 2 @ #p 1 0 09143973 -delacroix n 1 1 @ 1 0 10928498 -delairea n 1 3 @ #m %m 1 0 11960540 -delairea_odorata n 1 2 @ #m 1 0 11960673 -delavirdine n 1 1 @ 1 0 03172432 -delaware n 5 3 @ #p %p 5 1 09264116 09654518 09070120 09069862 06909571 -delaware_bay n 1 2 @ #p 1 0 09264425 -delaware_memorial_bridge n 1 2 @ #p 1 0 03172602 -delaware_river n 1 2 @ #p 1 1 09264116 -delawarean n 1 1 @ 1 0 09741999 -delawarian n 1 1 @ 1 0 09741999 -delay n 2 3 @ ~ + 2 2 15272029 01066163 -delay_line n 1 2 @ ~ 1 0 03172965 -delayed_action n 1 2 @ #p 1 0 03172738 -delayed_allergy n 1 1 @ 1 0 14532659 -delayer n 1 2 @ ~ 1 0 10000616 -delbruck n 1 1 @ 1 0 10928810 -delectability n 1 1 @ 1 0 04995793 -delectation n 2 2 @ ~ 2 0 07491038 01072072 -delegacy n 3 3 @ ~ + 3 0 14000403 08402442 00165178 -delegate n 1 3 @ ~ + 1 1 10000787 -delegating n 1 3 @ ~ + 1 0 01140839 -delegation n 2 3 @ ~ + 2 1 08402442 01140839 -deletion n 4 4 @ ~ + ; 4 0 13524399 07425577 06428216 00394610 -delf n 1 2 @ ; 1 0 03173142 -delft n 1 1 @ 1 0 03173270 -delhi n 1 3 @ #p %p 1 0 08903220 -delhi_boil n 1 1 @ 1 1 14181187 -deli n 1 2 @ ~ 1 0 03173387 -deliberate_defence n 1 1 @ 1 0 00961328 -deliberate_defense n 1 1 @ 1 0 00961328 -deliberateness n 2 3 @ ~ + 2 0 05061977 04661151 -deliberation n 5 4 @ ~ + ; 5 2 07142365 05785067 05796423 05061977 04661151 -deliberative_assembly n 1 2 @ ~ 1 0 08295894 -delibes n 1 1 @ 1 0 10928978 -delicacy n 7 2 @ ~ 7 2 04813066 07557165 05751707 05107216 05041503 04842029 04632866 -delicatessen n 2 2 @ ~ 2 0 07594406 03173387 -delicatessen_food n 1 1 @ 1 0 07594406 -delichon n 1 3 @ #m %m 1 0 01595841 -delichon_urbica n 1 2 @ #m 1 0 01595974 -delicious n 1 2 @ ~ 1 0 07740220 -deliciousness n 1 1 @ 1 0 04995793 -delight n 2 3 @ ~ + 2 1 07491038 05829782 -delilah n 2 2 @ ; 2 0 10929116 10055410 -delimitation n 1 3 @ ~ + 1 0 08512736 -delineation n 3 3 @ ~ + 3 1 07201804 03173524 00900726 -delinquency n 3 3 @ + ; 3 0 13300324 04666083 00736219 -delinquent n 1 2 @ + 1 0 10000945 -deliquium n 1 1 @ 1 0 07478318 -delirium n 2 3 @ ~ + 2 1 14391876 14387202 -delirium_tremens n 1 1 @ 1 0 14398279 -delius n 1 1 @ 1 0 10929316 -deliverable n 1 1 @ 1 0 03173736 -deliverance n 1 3 @ ~ + 1 1 00093483 -deliverer n 4 3 @ ~ + 4 0 11083656 10553805 10001217 10001058 -delivery n 7 5 @ ~ #p + ; 7 1 00317207 07320622 07071483 01108753 00106272 00093483 00042541 -delivery_boy n 1 2 @ ~ 1 1 10001217 -delivery_truck n 1 1 @ 1 0 03173929 -delivery_van n 1 1 @ 1 0 03173929 -deliveryman n 1 2 @ ~ 1 0 10001217 -dell n 1 1 @ 1 0 09264599 -delmonico_steak n 1 1 @ 1 0 07660463 -delonix n 1 3 @ #m %m 1 0 12494629 -delonix_regia n 1 2 @ #m 1 0 12494794 -delorme n 1 1 @ 1 0 10929437 -delphi n 1 4 @ #p %p + 1 0 08786855 -delphic_oracle n 1 3 @ #p ; 1 0 04407844 -delphinapterus n 1 3 @ #m %m 1 0 02072665 -delphinapterus_leucas n 1 2 @ #m 1 0 02072798 -delphinidae n 1 3 @ #m %m 1 0 02068735 -delphinium n 1 3 @ ~ #m 1 0 11733054 -delphinium_ajacis n 1 2 @ #m 1 0 11732567 -delphinus n 2 3 @ #m %m 2 0 09264680 02069271 -delphinus_delphis n 1 2 @ #m 1 0 02069412 -delta n 3 2 @ #m 3 1 09264803 13880102 06834458 -delta_hepatitis n 1 1 @ 1 0 14131247 -delta_iron n 1 1 @ 1 0 14722426 -delta_ray n 1 1 @ 1 0 09265025 -delta_rhythm n 1 1 @ 1 0 11445187 -delta_wave n 1 1 @ 1 0 11445187 -delta_wing n 1 1 @ 1 0 03174079 -deltasone n 1 2 @ ; 1 0 14753414 -deltoid n 1 2 @ #p 1 1 05549350 -deltoid_eminence n 1 2 @ #p 1 0 05248921 -deltoid_leaf n 1 1 @ 1 0 13157971 -deltoid_muscle n 1 2 @ #p 1 0 05549350 -deltoid_tuberosity n 1 2 @ #p 1 0 05248921 -deluge n 3 3 @ ~ + 3 1 13775706 11502102 11454591 -delusion n 3 4 @ ~ + ; 3 0 14376855 05896733 00754767 -delusional_disorder n 1 1 @ 1 0 14387349 -delusions_of_grandeur n 1 2 @ #p 1 0 14377177 -delusions_of_persecution n 1 1 @ 1 0 14377375 -demagnetisation n 1 3 @ ~ + 1 0 13460991 -demagnetization n 1 3 @ ~ + 1 0 13460991 -demagog n 1 1 @ 1 0 10001481 -demagogue n 1 1 @ 1 1 10001481 -demagoguery n 1 2 @ ~ 1 0 07187297 -demagogy n 1 3 @ ~ + 1 0 07187297 -demand n 5 4 ! @ ~ + 5 5 07191279 13461162 05892651 01061333 14449126 -demand-pull_inflation n 1 1 @ 1 0 13461390 -demand_deposit n 1 1 @ 1 0 13381303 -demand_feeding n 1 1 @ 1 0 01058181 -demand_for_explanation n 1 1 @ 1 0 07232053 -demand_for_identification n 1 1 @ 1 0 07232189 -demand_loan n 1 1 @ 1 0 13399275 -demand_note n 1 1 @ 1 0 13400580 -demander n 1 2 @ + 1 1 10001647 -demantoid n 1 1 @ 1 0 14829172 -demarcation n 2 3 @ ~ + 2 1 08592656 05748786 -demarcation_line n 1 2 @ ~ 1 0 08592656 -demarche n 1 1 @ 1 0 00168121 -dematiaceae n 1 3 @ #m %m 1 0 13080471 -demavend n 1 2 @ #p 1 0 09174457 -demeanor n 1 2 @ ~ 1 1 04897762 -demeanour n 1 2 @ ~ 1 0 04897762 -demeclocycline_hydrochloride n 1 1 @ 1 0 03174211 -dementedness n 1 3 @ ~ + 1 0 14395403 -dementia n 1 2 @ ~ 1 0 14395403 -dementia_praecox n 1 2 @ ~ 1 0 14398523 -demerara n 5 2 @ #p 5 0 14829470 09265134 08948958 07905296 07596566 -demerara_rum n 1 1 @ 1 0 07905296 -demerara_sugar n 1 1 @ 1 0 07596566 -demerit n 2 2 ! @ 2 0 06794980 05139094 -demerol n 1 2 @ ; 1 0 03747103 -demesne n 2 3 @ ~ #p 2 0 13246662 08556491 -demeter n 1 2 @ ; 1 0 09558569 -demetrius n 1 1 @ 1 0 10929657 -demetrius_i n 1 1 @ 1 0 10929657 -demetrius_poliorcetes n 1 1 @ 1 0 10929657 -demi-glaze n 1 1 @ 1 0 07837755 -demiglace n 1 1 @ 1 0 07837755 -demigod n 2 2 @ ~ 2 0 10001764 09506216 -demijohn n 1 1 @ 1 0 03174450 -demilitarized_zone n 1 1 @ 1 0 08689947 -demille n 1 1 @ 1 0 10930099 -demimondaine n 1 2 @ #m 1 0 10001882 -demimonde n 1 2 @ %m 1 1 08244895 -demineralisation n 2 3 @ #p + 2 0 14210716 13461525 -demineralization n 2 3 @ #p + 2 1 14210716 13461525 -demise n 1 3 @ ~ #p 1 0 15143477 -demisemiquaver n 1 1 @ 1 0 06871675 -demister n 1 2 @ + 1 0 03174605 -demitasse n 2 1 @ 2 0 07919665 03174731 -demiurge n 1 1 @ 1 0 09538633 -demo n 1 3 @ ~ + 1 0 06879180 -demobilisation n 1 3 @ ~ + 1 0 01158190 -demobilization n 1 4 ! @ ~ + 1 0 01158190 -democracy n 3 3 @ ~ + 3 2 06217103 08361329 05964445 -democrat n 2 2 @ #m 2 2 10002151 10002031 -democratic-republican_party n 1 1 @ 1 0 08259318 -democratic_and_popular_republic_of_algeria n 1 6 @ #m #p %m %p - 1 0 08705397 -democratic_front_for_the_liberation_of_palestine n 1 2 @ ; 1 0 08019523 -democratic_party n 1 3 @ %m %p 1 0 08259156 -democratic_people's_republic_of_korea n 1 4 @ #p %p - 1 0 08955082 -democratic_republic_of_sao_tome_and_principe n 1 3 @ #p %p 1 0 08992648 -democratic_republic_of_the_congo n 1 4 @ #p %m %p 1 0 08734385 -democratic_socialist_republic_of_sri_lanka n 1 4 @ %m %p - 1 0 08719100 -democratisation n 1 1 @ 1 0 01237294 -democratization n 1 1 @ 1 0 01237294 -democritus n 1 1 @ 1 0 10930296 -demodulation n 1 3 @ + ; 1 0 06282209 -demodulator n 1 3 @ #p + 1 0 03181501 -demogorgon n 1 2 @ ; 1 0 09487546 -demographer n 1 2 @ + 1 0 10002257 -demographic n 1 3 @ + ; 1 0 06022076 -demographist n 1 2 @ + 1 0 10002257 -demography n 1 2 @ + 1 0 06152125 -demoiselle n 2 3 @ ~ #m 2 0 09989168 02606384 -demolishing n 1 2 @ + 1 0 00218045 -demolition n 2 3 @ ~ + 2 1 07334490 01249483 -demon n 3 3 @ ~ + 3 1 09542339 10329945 10002477 -demonetisation n 1 2 @ + 1 0 00155085 -demonetization n 1 3 ! @ + 1 0 00155085 -demoniac n 1 2 @ + 1 0 10002644 -demonisation n 1 2 @ + 1 0 06710152 -demonism n 1 2 @ + 1 0 05979595 -demonization n 1 2 @ + 1 0 06710152 -demonolatry n 1 2 @ + 1 0 01046006 -demonstrability n 1 2 @ + 1 0 04755466 -demonstration n 5 4 @ ~ + ; 5 4 00521562 00521970 01177703 06648046 06879180 -demonstrative n 1 2 @ + 1 1 06325678 -demonstrative_pronoun n 1 1 @ 1 0 06325678 -demonstrativeness n 1 2 @ + 1 0 04626879 -demonstrator n 3 3 @ ~ + 3 1 10003120 10002982 10002760 -demoralisation n 3 2 @ + 3 0 13975988 07537973 00272713 -demoralization n 3 2 @ + 3 1 00272713 13975988 07537973 -demosthenes n 1 2 @ + 1 0 10930428 -demotic n 2 2 @ + 2 0 06990193 06976833 -demotic_script n 1 1 @ 1 0 06990193 -demotion n 1 3 ! @ + 1 0 00198793 -dempsey n 1 1 @ 1 0 10930591 -demulcent n 1 2 @ + 1 0 03174829 -demulen n 1 1 @ 1 0 03174991 -demur n 1 3 @ + ; 1 0 07209089 -demureness n 2 2 @ + 2 0 04900236 04788159 -demurrage n 2 1 @ 2 0 13324427 01066545 -demurral n 1 3 @ + ; 1 0 07209089 -demurrer n 3 5 @ ~ #p + ; 3 0 07209089 06562802 01198750 -demyelination n 1 2 @ #p 1 0 14058770 -demythologisation n 1 3 @ + ; 1 0 06769032 -demythologization n 1 3 @ + ; 1 1 06769032 -den n 4 2 @ #p 4 0 08591399 08584218 08214966 03175081 -den_haag n 1 2 @ #p 1 0 08950407 -den_mother n 2 1 @ 2 0 10003575 10003476 -denali n 1 2 @ #p 1 0 09349425 -denali_fault n 1 2 @ #p 1 0 09265274 -denali_national_park n 1 2 @ #p 1 0 08604283 -denationalisation n 1 2 @ + 1 0 01152033 -denationalization n 1 3 ! @ + 1 0 01152033 -denaturant n 1 2 @ + 1 0 14710024 -denatured_alcohol n 1 2 @ ~ 1 0 14710164 -denazification n 1 2 @ + 1 0 13461722 -dendranthema n 1 2 @ #m 1 0 11960943 -dendranthema_grandifloruom n 1 1 @ 1 0 11961100 -dendraspis n 1 3 @ #m %m 1 0 01749428 -dendrite n 1 3 @ #p + 1 0 05469861 -dendroaspis n 1 3 @ #m %m 1 0 01749428 -dendroaspis_augusticeps n 1 2 @ ~ 1 0 01749742 -dendrobium n 1 2 @ #m 1 0 12059314 -dendrocalamus n 1 3 @ #m %m 1 0 12148610 -dendrocalamus_giganteus n 1 2 @ #m 1 0 12148757 -dendrocolaptes n 1 2 @ #m 1 0 01554311 -dendrocolaptidae n 1 3 @ #m %m 1 0 01554139 -dendroctonus n 1 3 @ #m %m 1 0 02180046 -dendroctonus_rufipennis n 1 2 @ #m 1 0 02180427 -dendroica n 1 3 @ #m %m 1 0 01568493 -dendroica_auduboni n 1 2 @ #m 1 0 01569262 -dendroica_coronata n 1 2 @ #m 1 0 01569423 -dendroica_fusca n 1 2 @ #m 1 0 01569060 -dendroica_petechia n 1 2 @ #m 1 0 01568892 -dendroica_striate n 1 2 @ #m 1 0 01569566 -dendroica_tigrina n 1 2 @ #m 1 0 01568720 -dendrolagus n 1 3 @ #m %m 1 0 01879379 -dendromecon n 1 3 @ #m %m 1 0 11904896 -deneb n 1 2 @ #m 1 0 09265392 -denebola n 1 2 @ #m 1 0 09265492 -deng_xiaoping n 1 1 @ 1 0 10930778 -dengue n 1 1 @ 1 0 14129784 -dengue_fever n 1 1 @ 1 0 14129784 -denial n 5 5 @ ~ #p + ; 5 4 07204401 07204240 13461951 00205649 01198750 -denier n 3 2 @ + 3 0 13584746 13389359 10003283 -denigration n 3 2 @ + 3 0 06718434 01220336 01220152 -denim n 2 3 @ ~ ; 2 0 03594734 03175189 -denis_diderot n 1 1 @ 1 0 10934758 -denisonia n 1 3 @ #m %m 1 0 01747466 -denisonia_superba n 1 2 @ #m 1 0 01747589 -denizen n 2 2 @ ~ 2 0 09620078 01315062 -denmark n 1 6 @ #m #p %m %p - 1 1 08761244 -denmark_vesey n 1 1 @ 1 0 11364570 -dennis_gabor n 1 1 @ 1 0 10986562 -dennstaedtia n 1 3 @ #m %m 1 0 13189222 -dennstaedtia_punctilobula n 1 2 @ #m 1 0 13189428 -dennstaedtiaceae n 1 3 @ #m %m 1 0 13188973 -denomination n 3 4 @ ~ %m + 3 1 08146782 08006989 06338908 -denominationalism n 2 1 @ 2 0 06206021 06198708 -denominator n 1 2 @ ~ 1 0 13733066 -denotation n 2 2 @ + 2 0 07231048 05922949 -denotatum n 1 1 @ 1 0 06603816 -denouement n 2 1 @ 2 1 07293080 06743867 -denouncement n 1 3 @ ~ + 1 0 07232988 -dense-leaved_elodea n 1 1 @ 1 0 12614763 -dense_blazing_star n 1 1 @ 1 0 11991777 -denseness n 3 3 @ ~ + 3 1 05645854 05088804 04941453 -densification n 1 1 @ 1 0 07419233 -densimeter n 1 2 @ ~ 1 0 03175301 -densitometer n 2 2 @ ~ 2 0 03175457 03175301 -densitometry n 1 1 @ 1 1 01002008 -density n 2 3 @ ~ + 2 2 04941453 05088804 -dent n 3 3 @ ~ + 3 1 11413661 13904843 04693384 -dent_corn n 1 1 @ 1 0 12144987 -dental n 1 1 @ 1 0 07115493 -dental_amalgam n 1 1 @ 1 0 14716550 -dental_anatomy n 1 1 @ 1 0 06059412 -dental_appliance n 1 3 @ ~ ; 1 0 03175604 -dental_assistant n 1 1 @ 1 0 10003782 -dental_care n 1 2 @ ~ 1 0 00656292 -dental_caries n 1 1 @ 1 0 13444513 -dental_consonant n 1 1 @ 1 0 07115493 -dental_floss n 1 1 @ 1 0 03175843 -dental_gold n 1 2 @ %s 1 0 14833618 -dental_hygienist n 1 1 @ 1 0 10003870 -dental_implant n 1 1 @ 1 0 03175983 -dental_medicine n 1 3 @ ~ - 1 0 06047430 -dental_orthopaedics n 1 1 @ 1 0 06048552 -dental_orthopedics n 1 1 @ 1 0 06048552 -dental_plaque n 1 1 @ 1 0 05244755 -dental_plate n 1 2 @ ~ 1 0 03176386 -dental_practice n 1 1 @ 1 0 00632017 -dental_practitioner n 1 2 @ ~ 1 0 10004282 -dental_procedure n 1 1 @ 1 0 01024547 -dental_school n 1 1 @ 1 0 08281963 -dental_surgeon n 1 1 @ 1 0 10004171 -dental_surgery n 1 2 @ ~ 1 0 06048052 -dental_technician n 1 1 @ 1 0 10004019 -dentaria n 1 2 @ #m 1 0 11881563 -dentaria_bulbifera n 1 1 @ 1 0 11882237 -dentaria_diphylla n 1 1 @ 1 0 11882426 -dentate_leaf n 1 2 @ ~ 1 0 13160831 -dentate_nucleus n 1 2 @ #p 1 0 05485988 -denticle n 1 1 @ 1 0 02156031 -denticulate_leaf n 1 1 @ 1 0 13160938 -dentifrice n 1 2 @ ~ 1 0 03176084 -dentin n 2 3 @ ~ #p 2 0 14757382 05274446 -dentine n 2 3 @ ~ #p 2 0 14757382 05274446 -dentist n 1 2 @ ~ 1 1 10004282 -dentist's_drill n 1 2 @ %p 1 0 03176238 -dentistry n 1 3 @ ~ - 1 0 06047430 -dentition n 2 4 @ ~ #p %m 2 0 13565781 05282433 -denture n 1 3 @ ~ + 1 1 03176386 -denturist n 1 2 @ + 1 0 10004019 -denudation n 1 3 @ ~ + 1 0 00394803 -denunciation n 1 2 @ ~ 1 1 07232988 -denver n 1 2 @ #p 1 1 09068107 -deodar n 1 1 @ 1 0 11623967 -deodar_cedar n 1 1 @ 1 0 11623967 -deodorant n 1 2 @ + 1 0 03176594 -deodourant n 1 2 @ + 1 0 03176594 -deontic_logic n 1 1 @ 1 0 06166166 -deossification n 1 1 @ 1 0 13462084 -deoxyadenosine n 1 1 @ 1 0 15073018 -deoxyadenosine_monophosphate n 1 1 @ 1 0 14829565 -deoxycytidine n 1 1 @ 1 0 15073147 -deoxycytidine_monophosphate n 1 1 @ 1 0 14829765 -deoxyephedrine n 1 1 @ 1 0 03754295 -deoxyguanosine n 1 1 @ 1 0 15073285 -deoxyguanosine_monophosphate n 1 1 @ 1 0 14829964 -deoxyribonucleic_acid n 1 5 @ ~ %s %p ; 1 0 14830364 -deoxyribose n 1 1 @ 1 0 14833514 -deoxythymidine n 1 1 @ 1 0 15073424 -deoxythymidine_monophosphate n 1 1 @ 1 0 14830164 -depardieu n 1 1 @ 1 0 10931059 -deparia n 1 3 @ #m %m 1 0 13196545 -deparia_acrostichoides n 1 2 @ #m 1 0 13196738 -departed n 1 4 @ ~ #m + 1 0 09994943 -departer n 1 2 @ + 1 0 10004539 -department n 3 5 @ ~ #m + ; 3 1 08114861 08548733 05853273 -department_head n 1 1 @ 1 0 10004718 -department_of_agriculture n 1 1 @ 1 1 08128964 -department_of_anthropology n 1 1 @ 1 0 08115602 -department_of_biology n 1 1 @ 1 0 08115912 -department_of_chemistry n 1 1 @ 1 0 08116073 -department_of_commerce n 1 2 @ %p 1 1 08129268 -department_of_commerce_and_labor n 1 1 @ 1 0 08144524 -department_of_computer_science n 1 1 @ 1 0 08116240 -department_of_corrections n 1 1 @ 1 0 08120624 -department_of_defense n 1 2 @ %p 1 1 08131530 -department_of_defense_laboratory_system n 1 2 @ #p 1 0 08132323 -department_of_economics n 1 1 @ 1 0 08116398 -department_of_education n 1 2 @ ; 1 0 08132637 -department_of_energy n 1 2 @ %p 1 0 08132955 -department_of_energy_intelligence n 1 3 @ #m #p 1 0 08133189 -department_of_english n 1 1 @ 1 0 08116565 -department_of_health_and_human_services n 1 2 @ %p 1 0 08133536 -department_of_health_education_and_welfare n 1 1 @ 1 1 08144720 -department_of_history n 1 1 @ 1 0 08116734 -department_of_homeland_security n 1 2 @ %p 1 0 08134807 -department_of_housing_and_urban_development n 1 2 @ %p 1 0 08135062 -department_of_justice n 1 3 @ %p ; 1 1 08135342 -department_of_justice_canada n 1 2 @ ; 1 0 08343324 -department_of_labor n 1 2 @ %p 1 1 08137495 -department_of_linguistics n 1 1 @ 1 0 08116879 -department_of_local_government n 1 2 @ ~ 1 0 08120384 -department_of_mathematics n 1 1 @ 1 0 08117052 -department_of_music n 1 1 @ 1 0 08117540 -department_of_philosophy n 1 1 @ 1 0 08117225 -department_of_physics n 1 1 @ 1 0 08117379 -department_of_psychology n 1 1 @ 1 0 08117702 -department_of_sociology n 1 1 @ 1 0 08117872 -department_of_state n 1 3 @ ~ %p 1 1 08137738 -department_of_the_federal_government n 1 3 @ ~ ; 1 0 08122141 -department_of_the_interior n 1 2 @ %p 1 0 08139000 -department_of_the_treasury n 1 2 @ %p 1 0 08139795 -department_of_transportation n 1 2 @ %p 1 0 08143653 -department_of_veterans_affairs n 1 1 @ 1 0 08144122 -department_store n 1 2 @ #m 1 1 03176763 -departure n 3 4 @ ~ + ; 3 2 00042757 07366289 07333649 -departure_gate n 1 1 @ 1 0 03176970 -departure_lounge n 1 1 @ 1 0 03177059 -departure_tax n 1 1 @ 1 0 13312434 -departure_time n 1 2 @ ~ 1 0 15181094 -dependability n 1 4 ! @ ~ + 1 0 04670022 -dependableness n 1 4 ! @ ~ + 1 0 04670022 -dependance n 2 3 @ ~ ; 2 0 14062725 14001348 -dependant n 1 2 @ ~ 1 0 10004804 -dependence n 2 4 @ ~ + ; 2 1 14001348 14062725 -dependency n 3 4 @ ~ + ; 3 1 14001348 14062725 08499840 -dependent n 1 3 @ ~ + 1 1 10004804 -dependent_clause n 1 3 @ ~ #p 1 0 06314808 -dependent_variable n 1 2 @ ; 1 0 05858699 -depersonalisation n 3 3 @ + ; 3 0 14394094 14026376 00932298 -depersonalisation_disorder n 1 1 @ 1 0 14394094 -depersonalisation_neurosis n 1 1 @ 1 0 14394094 -depersonalization n 3 3 @ + ; 3 0 14394094 14026376 00932298 -depersonalization_disorder n 1 1 @ 1 0 14394094 -depersonalization_neurosis n 1 1 @ 1 0 14394094 -depicted_object n 1 2 @ #p 1 1 04347225 -depicting n 1 3 @ ~ + 1 0 05766984 -depiction n 4 3 @ ~ + 4 0 07201804 05766984 03173524 00900726 -depigmentation n 1 3 ! @ ~ 1 0 04976687 -depilation n 2 3 @ ~ + 2 0 14457218 00254597 -depilator n 1 3 @ ~ + 1 0 03177165 -depilatory n 2 3 @ ~ + 2 0 14833729 03177165 -depletion n 2 3 @ ~ + 2 1 00356199 14017332 -deployment n 1 3 @ ~ + 1 0 01143409 -depokene n 1 2 @ ; 1 0 04518854 -depolarisation n 1 2 @ + 1 0 11492240 -depolarization n 1 2 @ + 1 0 11492240 -deponent n 1 2 @ + 1 0 10703905 -depopulation n 1 2 @ + 1 0 14519208 -deportation n 2 3 @ ~ + 2 0 00207761 00207306 -deportee n 1 2 @ + 1 1 10071139 -deportment n 1 3 @ ~ + 1 0 04897762 -deposer n 1 2 @ + 1 0 10703905 -deposit n 9 4 @ ~ %p + 9 2 11445395 09428967 13462191 13381145 13349834 13349662 06685860 03177349 00372448 -deposit_account n 1 1 @ 1 0 13364368 -deposit_box n 1 1 @ 1 0 04125257 -depositary n 1 3 @ ~ %p 1 0 03177349 -deposition n 4 4 @ ~ + ; 4 0 13462191 07194499 00372448 00208943 -depositor n 1 3 @ ~ + 1 1 10005006 -depository n 1 3 @ ~ %p 1 0 03177349 -depository_financial_institution n 1 3 @ ~ #m 1 0 08420278 -depository_library n 1 3 @ ~ %p 1 0 03660664 -depot n 2 3 @ ~ #p 2 1 04412901 04329190 -depravation n 1 2 @ + 1 0 04850996 -depravity n 2 2 @ + 2 2 04850996 00746866 -deprecation n 2 2 @ + 2 0 07189932 01220152 -depreciation n 3 5 ! @ ~ + - 3 2 00364600 13328357 06717170 -depreciation_allowance n 1 1 @ 1 0 13274487 -depreciation_charge n 1 1 @ 1 0 13307514 -depreciation_rate n 1 1 @ 1 0 13326450 -depreciator n 1 3 @ ~ + 1 0 10009671 -depredation n 2 2 @ ; 2 1 00967310 07334876 -depressant n 1 3 @ ~ + 1 0 04166553 -depressed_fracture n 1 1 @ 1 0 14293093 -depression n 10 5 ! @ ~ #p + 10 4 14404160 14489113 09366017 07537485 15294211 14520829 14389240 13896369 13836715 00112674 -depressive n 1 2 @ ~ 1 0 10005163 -depressive_disorder n 1 2 @ ~ 1 0 14389240 -depressor n 3 3 @ ~ + 3 0 05552467 05476592 03177708 -depressor_muscle n 1 1 @ 1 0 05552467 -depressor_nerve n 1 1 @ 1 0 05476592 -deprivation n 3 3 @ ~ + 3 0 14493426 05162985 01150200 -depth n 6 4 @ ~ = ; 6 3 05134547 05094725 08500213 14441083 05613962 05134353 -depth_bomb n 1 1 @ 1 0 03177856 -depth_charge n 1 1 @ 1 0 03177856 -depth_finder n 1 2 @ ~ 1 0 03178000 -depth_gage n 1 1 @ 1 0 03178173 -depth_gauge n 1 1 @ 1 0 03178173 -depth_psychology n 1 3 @ ~ - 1 0 00704305 -deputation n 2 3 @ ~ + 2 0 08402442 01140839 -deputy n 4 4 @ ~ + ; 4 2 10005548 10005280 10005934 10005721 -deputy_sheriff n 1 1 @ 1 1 10005548 -der_fuhrer n 1 1 @ 1 0 11052672 -deracination n 2 2 @ + 2 0 00315830 00115803 -derailment n 1 2 @ + 1 0 07302267 -derain n 1 1 @ 1 0 10931333 -derangement n 2 2 @ + 2 0 14397714 00554850 -derby n 1 1 @ 1 0 02881757 -derby_hat n 1 1 @ 1 0 02881757 -deregulating n 1 2 @ + 1 0 00805337 -deregulation n 1 2 @ + 1 0 00805337 -derelict n 2 2 @ + 2 0 10006081 02666501 -dereliction n 2 2 @ ~ 2 2 04666083 00738966 -derision n 2 3 @ ~ + 2 1 06715638 01224517 -derivation n 8 5 @ ~ = + ; 8 3 08508105 06744154 05780718 13462387 04922787 00392582 00392468 00392335 -derivational_morphology n 1 1 @ 1 0 06178380 -derivative n 4 4 @ ~ + ; 4 1 06014730 14833885 06480506 06290051 -derivative_instrument n 1 3 @ ~ ; 1 0 06480506 -derived_function n 1 2 @ ~ 1 0 06014730 -deriving n 1 3 @ + ; 1 0 06744154 -derma n 1 2 @ #p 1 0 05243879 -dermabrasion n 1 1 @ 1 0 00395017 -dermacentor n 1 3 @ #m %m 1 0 01778984 -dermacentor_variabilis n 1 2 @ #m 1 0 01779148 -dermaptera n 1 3 @ #m %m 1 0 02272707 -dermatitis n 1 2 @ ~ 1 0 14224757 -dermatobia n 1 3 @ #m %m 1 0 02194078 -dermatobia_hominis n 1 2 @ #m 1 0 02194249 -dermatoglyphic n 1 1 @ 1 0 13906484 -dermatoglyphics n 1 1 @ 1 0 06041955 -dermatologist n 1 2 @ + 1 0 10006177 -dermatology n 1 2 @ + 1 0 06049500 -dermatome n 1 1 @ 1 0 03178316 -dermatomycosis n 1 1 @ 1 0 14181948 -dermatomyositis n 1 1 @ 1 0 14209348 -dermatophytosis n 1 1 @ 1 0 14181948 -dermatosclerosis n 1 2 @ ~ 1 0 14565196 -dermatosis n 1 2 @ ~ 1 0 14225045 -dermestidae n 1 3 @ #m %m 1 0 02170269 -dermis n 1 3 @ #p + 1 0 05243879 -dermochelyidae n 1 3 @ #m %m 1 0 01665238 -dermochelys n 1 3 @ #m %m 1 0 01665372 -dermochelys_coriacea n 1 2 @ #m 1 0 01665541 -dermoid_cyst n 1 1 @ 1 0 14201682 -dermoptera n 1 3 @ #m %m 1 0 02502085 -derogation n 2 5 @ ~ + ; - 2 0 06717170 00232147 -derrick n 2 1 @ 2 1 03178538 03178430 -derrida n 1 1 @ 1 0 10931452 -derriere n 1 2 @ #p 1 0 05559256 -derring-do n 1 1 @ 1 0 00043116 -derringer n 1 1 @ 1 0 03178674 -derris n 1 2 @ #m 1 0 12525513 -derris_elliptica n 1 2 @ #m 1 0 12525753 -derris_root n 1 2 @ #m 1 0 12525753 -derv n 1 2 @ ; 1 0 14686020 -dervish n 1 2 @ ~ 1 1 10006337 -des n 2 1 @ 2 1 14750122 03193882 -des_moines n 1 2 @ #p 1 0 09086995 -desalination n 1 2 @ + 1 0 13462795 -desalinisation n 1 2 @ + 1 0 13462795 -desalinization n 1 2 @ + 1 0 13462795 -descant n 1 2 @ + 1 0 07032026 -descartes n 1 2 @ + 1 0 10931854 -descendant n 1 4 ! @ ~ + 1 1 10006511 -descendants n 1 1 @ 1 1 08369220 -descendent n 1 3 @ ~ + 1 1 10006511 -descender n 3 3 @ ~ ; 3 0 10006748 06830708 06800871 -descending_aorta n 1 1 @ 1 0 05336487 -descending_colon n 1 2 @ #p 1 0 05537243 -descending_node n 1 2 ! @ 1 0 08548924 -descensus n 1 2 @ ~ 1 0 14559208 -descensus_uteri n 1 1 @ 1 0 14558801 -descent n 6 4 ! @ ~ + 6 3 07363346 04923743 00326440 13813042 09265620 08101937 -description n 3 3 @ ~ + 3 1 06724763 07201365 05840076 -descriptive_adjective n 1 1 @ 1 0 06321932 -descriptive_anthropology n 1 1 @ 1 0 06146546 -descriptive_clause n 1 1 @ 1 0 06315454 -descriptive_geometry n 1 2 @ ; 1 0 06012340 -descriptive_grammar n 1 2 @ ; 1 0 06175829 -descriptive_linguistics n 1 4 ! @ ~ - 1 0 06181584 -descriptivism n 2 2 @ ; 2 0 06250061 06249910 -descriptor n 2 3 @ ~ ; 2 0 06290637 05823747 -descurainia n 1 3 @ #m %m 1 0 11884667 -descurainia_pinnata n 1 2 @ #m 1 0 11884967 -desecration n 1 2 @ + 1 1 00746587 -desegregation n 1 2 @ + 1 0 01202415 -desensitisation n 1 2 @ + 1 0 13463255 -desensitisation_procedure n 1 2 @ ~ 1 0 00701755 -desensitisation_technique n 1 2 @ ~ 1 0 00701755 -desensitization n 1 2 @ + 1 0 13463255 -desensitization_procedure n 1 2 @ ~ 1 0 00701755 -desensitization_technique n 1 2 @ ~ 1 0 00701755 -desert n 1 3 @ ~ %p 1 1 08505573 -desert_boot n 1 1 @ 1 0 02925666 -desert_four_o'clock n 1 1 @ 1 0 11840476 -desert_fox n 1 1 @ 1 0 11269515 -desert_holly n 1 1 @ 1 0 11831297 -desert_iguana n 1 2 @ #m 1 0 01678043 -desert_lynx n 1 1 @ 1 0 02127678 -desert_mariposa_tulip n 1 2 @ #m 1 0 12447891 -desert_olive n 1 1 @ 1 0 12302692 -desert_paintbrush n 1 1 @ 1 0 12880244 -desert_pea n 1 1 @ 1 0 12516828 -desert_plant n 1 2 @ ~ 1 0 13121104 -desert_plume n 1 2 @ #m 1 0 11897466 -desert_rat n 1 3 @ ~ #m 1 0 02350105 -desert_rheumatism n 1 1 @ 1 0 14147014 -desert_rose n 1 2 @ #m 1 0 11769176 -desert_sand_verbena n 1 1 @ 1 0 11837970 -desert_selaginella n 1 1 @ 1 0 13225244 -desert_soil n 1 1 @ 1 0 14834013 -desert_sunflower n 1 2 @ #m 1 0 11972291 -desert_tortoise n 1 2 @ #m 1 0 01671479 -desert_willow n 1 2 @ #m 1 0 12815198 -deserter n 2 4 @ ~ + ; 2 0 10007109 10006842 -desertic_soil n 1 1 @ 1 0 14834013 -desertification n 1 1 @ 1 0 13462989 -desertion n 2 3 @ ~ + 2 1 00055315 00204439 -deserts n 1 1 @ 1 0 07294423 -deservingness n 1 2 @ + 1 0 04807050 -deshabille n 1 2 @ ~ 1 0 14457838 -desiccant n 1 2 @ + 1 0 14779796 -desiccation n 2 4 @ ~ #p + 2 0 14536831 13460568 -desideratum n 1 1 @ 1 0 09265910 -desiderius_erasmus n 1 1 @ 1 0 10959857 -design n 7 3 @ ~ + 7 6 00928077 05728678 05902327 03178782 05982152 03179318 05633385 -design_criteria n 1 1 @ 1 0 05925177 -designated_driver n 1 1 @ 1 0 10007511 -designated_hitter n 1 1 @ 1 0 10007684 -designation n 3 3 @ ~ + 3 1 06338908 00163779 00152018 -designatum n 1 1 @ 1 0 06603927 -designer n 5 3 @ ~ + 5 2 10210648 09805475 10144055 10007809 09972157 -designer_drug n 1 1 @ 1 0 03179489 -designing n 1 3 @ ~ + 1 0 00928077 -desipramine n 1 1 @ 1 0 03180153 -desirability n 2 4 ! @ ~ + 2 0 05141840 04686935 -desirableness n 2 3 @ ~ + 2 0 05141840 04686935 -desire n 3 3 @ ~ + 3 3 07484265 04945057 14038993 -desire_to_know n 1 1 @ 1 0 05682798 -desk n 1 3 @ ~ %p 1 1 03179701 -desk_clerk n 1 2 @ ~ 1 0 10007995 -desk_dictionary n 1 1 @ 1 0 06419354 -desk_officer n 1 2 @ ; 1 1 10008123 -desk_phone n 1 1 @ 1 0 03179910 -desk_sergeant n 1 1 @ 1 0 10008254 -deskman n 1 1 @ 1 0 10008254 -desktop n 2 2 @ ; 2 0 08663703 02769075 -desktop_computer n 1 1 @ 1 0 03180011 -desktop_publishing n 1 2 @ ; 1 0 01102256 -desmanthus n 1 3 @ #m %m 1 0 12525975 -desmanthus_ilinoensis n 1 2 @ #m 1 0 12526178 -desmid n 1 2 @ #m 1 0 01413457 -desmidiaceae n 1 3 @ #m %m 1 0 01413188 -desmidium n 1 3 @ #m %m 1 0 01413324 -desmodium n 1 3 @ #m %m 1 0 12526380 -desmodium_gyrans n 1 2 @ #m 1 0 12518013 -desmodium_motorium n 1 2 @ #m 1 0 12518013 -desmodium_purpureum n 1 1 @ 1 0 12526754 -desmodium_tortuosum n 1 1 @ 1 0 12526754 -desmodontidae n 1 3 @ #m %m 1 0 02150306 -desmodus n 1 3 @ #m %m 1 0 02150730 -desmodus_rotundus n 1 2 @ #m 1 0 02150885 -desmograthus n 1 3 @ #m %m 1 0 01636675 -desmond_tutu n 1 1 @ 1 0 11354001 -desolation n 4 3 @ ~ + 4 1 14562142 14525548 07534108 07335414 -desorption n 1 2 @ + 1 1 13463490 -desoxyribonucleic_acid n 1 5 @ ~ %s %p ; 1 0 14830364 -despair n 2 4 ! @ ~ + 2 2 14486274 07541923 -despatch n 4 4 @ ~ %p + 4 0 06682794 05059830 00222248 00061290 -desperado n 1 2 @ ; 1 0 10008388 -desperate n 1 3 @ ~ + 1 1 10008535 -desperate_criminal n 1 2 @ ; 1 0 10008388 -desperate_measure n 1 1 @ 1 0 00179125 -desperate_straits n 1 1 @ 1 0 14033481 -desperation n 2 2 @ + 2 1 14486274 04662390 -despicability n 1 2 @ + 1 0 04807971 -despicableness n 1 2 @ + 1 0 04807971 -despisal n 1 2 @ + 1 0 07547674 -despising n 1 2 @ + 1 0 07547674 -despite n 2 1 @ 2 0 07502980 00418787 -despoilation n 1 1 @ 1 0 00966869 -despoiler n 1 4 @ ~ + ; 1 1 10443170 -despoilment n 1 2 @ + 1 0 00966869 -despoina n 1 2 @ ; 1 0 09569467 -despoliation n 1 2 @ + 1 0 00966869 -despondence n 1 2 @ + 1 0 07538395 -despondency n 1 2 @ + 1 1 07538395 -despot n 1 3 @ ~ + 1 0 10735298 -despotism n 2 2 @ ~ 2 1 14443912 08440630 -desquamation n 1 2 @ + 1 0 11445564 -dessert n 1 2 @ ~ 1 1 07609840 -dessert_apple n 1 2 @ ~ 1 0 07739506 -dessert_plate n 1 1 @ 1 0 03180280 -dessert_spoon n 1 1 @ 1 0 03180384 -dessert_wine n 1 2 @ ~ 1 0 07896287 -dessertspoon n 1 1 @ 1 0 13770416 -dessertspoonful n 1 1 @ 1 0 13770416 -dessiatine n 1 1 @ 1 0 13614467 -destabilisation n 1 4 ! @ + ; 1 0 01159461 -destabilization n 2 4 ! @ + ; 2 0 07356489 01159461 -destalinisation n 1 2 @ + 1 0 13463656 -destalinization n 1 2 @ + 1 0 13463656 -destination n 3 5 @ ~ #p %p + 3 2 08567877 05981768 06787150 -destiny n 3 3 @ ~ #p 3 2 07330007 09504915 14473222 -destitution n 1 1 @ 1 0 14493613 -destroyer n 2 3 @ ~ + 2 1 03180504 10008716 -destroyer_escort n 1 1 @ 1 0 03180732 -destroying_angel n 2 2 @ #m 2 0 13003712 13003254 -destructibility n 1 4 ! @ = + 1 0 05043459 -destruction n 3 3 @ ~ + 3 2 00217014 07334490 14562960 -destruction_fire n 1 1 @ 1 0 00990590 -destructive_distillation n 1 2 @ ~ 1 0 13464031 -destructive_metabolism n 1 2 @ #p 1 0 13443787 -destructiveness n 1 4 ! @ ~ + 1 0 05165904 -desuetude n 1 1 @ 1 0 14011724 -desynchronisation n 1 2 @ + 1 0 13845838 -desynchronization n 1 3 ! @ + 1 0 13845838 -desynchronizing n 1 3 ! @ + 1 1 13845838 -desyrel n 1 2 @ ; 1 0 04476633 -detached_house n 1 1 @ 1 0 03180865 -detached_retina n 1 1 @ 1 0 14555962 -detachment n 5 4 @ ~ %m + 5 2 07506031 00390906 14415518 08215248 07331400 -detachment_of_the_retina n 1 1 @ 1 0 14555962 -detail n 5 4 @ ~ + ; 5 4 05817845 13809920 07137807 08243081 08404549 -detail_file n 1 2 @ ; 1 0 06510271 -detailing n 1 2 @ + 1 0 07202812 -details n 1 2 @ ~ 1 1 06635944 -detainee n 1 2 @ + 1 0 10009162 -detainment n 1 1 @ 1 0 13999663 -detecting n 1 2 @ + 1 1 00635205 -detection n 4 2 @ + 4 2 05710687 00151087 06281175 00635205 -detective n 2 2 @ ~ 2 2 10009276 10009484 -detective_agency n 1 1 @ 1 0 08354243 -detective_novel n 1 1 @ 1 0 06368142 -detective_story n 1 1 @ 1 1 06370985 -detective_work n 1 1 @ 1 0 00635205 -detector n 3 4 @ ~ #p + 3 1 03180969 03181501 03181293 -detent n 1 2 @ #p 1 0 03901548 -detente n 1 1 @ 1 0 00355420 -detention n 2 2 @ + 2 0 13999663 01161635 -detention_basin n 1 1 @ 1 0 08519299 -detention_camp n 1 1 @ 1 0 03181667 -detention_cell n 1 1 @ 1 0 02917742 -detention_centre n 1 1 @ 1 0 02917742 -detention_home n 1 1 @ 1 0 03181667 -detention_house n 1 1 @ 1 0 03181667 -detergence n 1 2 @ + 1 0 05149127 -detergency n 1 2 @ + 1 1 05149127 -detergent n 2 3 @ ~ + 2 2 15097017 03181899 -detergent_builder n 1 2 @ ~ 1 1 15097209 -deterioration n 2 3 @ ~ + 2 1 14561618 13464204 -determent n 1 2 @ + 1 0 07254057 -determinant n 3 5 @ ~ #p + ; 3 1 05692419 15037664 08269396 -determinateness n 1 3 @ ~ + 1 0 04754237 -determination n 5 3 @ ~ + 5 3 00151497 04864200 05838176 05788552 00162632 -determinative n 2 3 @ ~ + 2 0 06324475 05692419 -determiner n 3 3 @ ~ + 3 0 06649567 06324475 05692419 -determining_factor n 2 2 @ ~ 2 1 05692419 06649567 -determinism n 1 4 @ ~ + ; 1 0 05971086 -determinist n 1 2 @ + 1 0 10080508 -deterrence n 3 3 @ ~ + 3 0 09180118 07254057 01076488 -deterrent n 1 3 @ ~ + 1 1 05689249 -deterrent_example n 1 1 @ 1 0 06672752 -detestation n 1 2 @ + 1 0 07503430 -dethronement n 1 2 @ + 1 0 00208943 -detonating_device n 1 2 @ ~ 1 0 03182232 -detonating_fuse n 1 1 @ 1 1 03182140 -detonation n 2 3 @ ~ + 2 0 07308563 00377686 -detonator n 1 3 @ ~ + 1 0 03182232 -detour n 1 2 @ + 1 0 03182506 -detox n 1 1 @ 1 0 03182683 -detoxification n 2 2 @ + 2 0 00699320 00699146 -detraction n 2 2 @ + 2 0 06719203 01220754 -detractor n 1 3 @ ~ + 1 1 10009671 -detribalisation n 2 3 ! @ + 2 0 01152583 00382906 -detribalization n 2 3 ! @ + 2 0 01152583 00382906 -detriment n 1 3 @ ~ + 1 0 07420538 -detrition n 3 2 @ ~ 3 0 13423615 11460063 00712031 -detritus n 2 2 @ ~ 2 0 14857897 14856134 -detroit n 1 2 @ #p 1 1 09100394 -detroit_river n 1 2 @ #p 1 0 09266052 -detumescence n 1 1 @ 1 0 13464440 -deuce n 4 2 @ ~ 4 0 13947272 13743269 07125786 03182795 -deuce-ace n 1 1 @ 1 0 13744044 -deus_ex_machina n 1 1 @ 1 0 10009926 -deuteranopia n 1 2 @ + 1 0 14154168 -deuterium n 1 1 @ 1 0 14641046 -deuterium_oxide n 1 1 @ 1 0 14727508 -deuteromycetes n 1 2 @ #m 1 0 12996068 -deuteromycota n 1 3 @ #m %m 1 0 12995724 -deuteromycotina n 1 3 @ #m %m 1 0 12995724 -deuteron n 1 1 @ 1 0 09266287 -deuteronomy n 1 3 @ #p %p 1 0 06433475 -deutsche_mark n 1 2 @ %p 1 0 13688033 -deutschland n 1 6 @ #m #p %m %p - 1 0 08766988 -deutschmark n 1 2 @ %p 1 0 13688033 -deutzia n 1 2 @ #m 1 0 12790430 -devaluation n 2 3 @ ~ + 2 0 00805524 00353992 -devanagari n 1 1 @ 1 0 06352782 -devanagari_script n 1 1 @ 1 0 06352782 -devastation n 5 3 @ ~ + 5 0 14562142 07509827 07335414 00967157 00217014 -developer n 2 3 @ ~ + 2 1 10010062 03182912 -developing n 1 3 @ ~ + 1 0 13464557 -developing_country n 1 1 @ 1 0 08167046 -development n 9 7 ! @ ~ %p + ; - 9 7 00250259 13464820 13489037 07423560 00948206 08549070 14422871 13464557 07068631 -developmental_age n 1 1 @ 1 0 04924878 -developmental_anatomy n 1 1 @ 1 0 06059540 -developmental_learning n 1 2 @ ~ 1 0 05753207 -developmental_psychology n 1 1 @ 1 0 06138941 -developmentally_challenged n 1 1 @ 1 0 07948971 -deverbal_noun n 1 2 @ ~ 1 0 06320314 -devi n 1 1 @ 1 0 09525279 -deviance n 2 3 @ ~ + 2 0 14503665 00737399 -deviant n 1 3 @ ~ + 1 0 10419047 -deviate n 1 3 @ ~ + 1 0 10419047 -deviated_nasal_septum n 1 1 @ 1 0 14093096 -deviated_septum n 1 2 @ ~ 1 0 14092925 -deviation n 5 4 @ ~ + ; 5 2 07366289 06022291 04802776 00737399 00350380 -deviationism n 1 2 @ + 1 0 00055932 -deviationist n 1 2 @ + 1 0 10010243 -device n 5 3 @ ~ ; 5 3 03183080 07068844 00171249 03185746 03185562 -device_characteristic n 1 2 @ ; 1 0 04917870 -device_driver n 1 2 @ ; 1 0 06574473 -devices n 1 1 @ 1 0 06198876 -devil n 5 4 @ ~ + ; 5 4 09543353 09542339 07125786 10169419 10329945 -devil's_advocate n 1 1 @ 1 0 10010400 -devil's_apples n 1 3 @ #m %p 1 0 12906498 -devil's_cigar n 1 1 @ 1 0 12984489 -devil's_claw n 1 2 @ #m 1 0 12875269 -devil's_darning_needle n 2 1 @ 2 0 11731157 02268443 -devil's_fig n 1 3 @ ~ #m 1 0 11902709 -devil's_flax n 1 3 @ ~ #m 1 0 12884260 -devil's_food n 1 1 @ 1 0 07631109 -devil's_food_cake n 1 1 @ 1 0 07631109 -devil's_milk n 2 2 @ #m 2 0 12918810 12918609 -devil's_tongue n 1 2 @ #m 1 0 11783162 -devil's_turnip n 1 1 @ 1 0 12163279 -devil's_urn n 1 1 @ 1 0 12984595 -devil's_walking_stick n 1 2 @ #m 1 0 11797508 -devil's_weed n 1 2 @ #m 1 0 12723610 -devil-worship n 1 1 @ 1 0 01046006 -devil_dog n 1 3 @ #m ; 1 0 10294139 -devil_grass n 1 2 @ #m 1 0 12115748 -devil_lily n 1 1 @ 1 0 12427566 -devil_nettle n 1 2 @ #m 1 0 12925179 -devil_ray n 1 2 @ #m 1 0 01500854 -devil_tree n 1 2 @ #m 1 0 11770256 -devil_worshiper n 1 2 @ ~ 1 0 10010525 -deviled_egg n 1 1 @ 1 0 07842433 -devilfish n 3 4 @ ~ #m %p 3 0 02066245 01970164 01500091 -devilment n 1 3 @ ~ + 1 1 00736375 -devilry n 2 3 @ ~ + 2 0 00745943 00736375 -deviltry n 2 3 @ ~ + 2 0 00745943 00736375 -devilwood n 1 2 @ #m 1 0 12309630 -deviousness n 2 2 @ + 2 0 04919712 04875556 -devisal n 1 2 @ + 1 0 00940709 -devise n 2 3 @ + ; 2 0 13416241 13264076 -devisee n 1 2 @ + 1 1 10010632 -deviser n 1 3 @ ~ + 1 0 10438172 -devising n 1 3 @ ~ + 1 0 00923995 -devisor n 1 1 @ 1 0 10010767 -devitalisation n 1 2 @ + 1 0 00354183 -devitalization n 1 2 @ + 1 0 00354183 -devoir n 1 1 @ 1 0 01229712 -devolution n 2 5 ! @ ~ + ; 2 0 13460299 01141160 -devolvement n 1 3 @ + ; 1 0 01141160 -devon n 2 2 @ #p 2 0 08881944 02406859 -devonian n 1 2 @ #p 1 0 15127982 -devonian_period n 1 2 @ #p 1 0 15127982 -devonshire n 1 2 @ #p 1 0 08881944 -devonshire_cream n 1 2 @ ; 1 0 07847453 -devotedness n 1 2 @ + 1 0 07544491 -devotee n 1 4 @ ~ #m + 1 1 10077593 -devotion n 4 4 @ ~ + ; 4 2 07544491 01206553 01044448 01042764 -devotional n 1 1 @ 1 0 01032810 -devourer n 1 2 @ + 1 0 10010864 -devoutness n 1 3 @ ~ + 1 0 04826999 -devries n 1 1 @ 1 0 10932495 -dew n 1 2 @ + 1 1 14834132 -dew_point n 1 1 @ 1 0 05013642 -dew_worm n 1 2 @ #m 1 0 01935395 -dewar n 2 1 @ 2 1 03185868 10932696 -dewar_flask n 1 1 @ 1 0 03185868 -dewberry n 2 4 @ ~ #m #p 2 0 12654387 07745197 -dewberry_bush n 1 3 @ ~ #m 1 0 12654387 -dewdrop n 1 1 @ 1 0 13901858 -dewey n 3 2 @ + 3 0 10933266 10933084 10932898 -dewey_decimal_classification n 1 1 @ 1 0 05727427 -dewey_decimal_system n 1 1 @ 1 0 05727427 -dewitt_clinton n 1 1 @ 1 0 10902409 -dewlap n 1 2 @ #p 1 0 05239680 -dexamethasone n 1 1 @ 1 1 14753808 -dexamethasone_intensol n 1 2 @ ; 1 0 14753808 -dexedrine n 1 2 @ ; 1 0 03186005 -dexone n 1 2 @ ; 1 0 14753808 -dexterity n 1 2 @ + 1 0 05642815 -dextrality n 1 2 @ + 1 0 05067514 -dextrin n 1 1 @ 1 0 14834325 -dextroamphetamine_sulphate n 1 1 @ 1 0 03186005 -dextrocardia n 1 1 @ 1 0 14093325 -dextroglucose n 1 1 @ 1 0 14884336 -dextrorotation n 1 2 ! @ 1 0 07441373 -dextrose n 1 1 @ 1 0 14884336 -dflp n 1 2 @ ; 1 0 08019523 -dg n 1 3 @ #p %p 1 0 13723470 -dhahran n 1 3 @ #p ; 1 0 08994540 -dhak n 1 2 @ #m 1 0 12510343 -dhaka n 1 2 @ #p 1 0 08849226 -dhal n 1 3 @ #m %p 1 0 12510774 -dharma n 1 1 @ 1 0 09525579 -dhaulagiri n 1 2 @ #p 1 0 09266453 -dhava n 1 2 @ #m 1 0 12323665 -dhawa n 1 2 @ #m 1 0 12323665 -dhegiha n 2 2 @ ~ 2 0 09654687 06909672 -dhobi_itch n 1 1 @ 1 0 14125774 -dhodhekanisos n 1 3 @ #p %p 1 0 08783286 -dhole n 1 2 @ #m 1 0 02115913 -dhoti n 1 1 @ 1 0 03186199 -dhow n 1 2 @ %p 1 0 03186285 -dhu'l-hijja n 1 2 @ #p 1 0 15218798 -dhu'l-hijjah n 1 2 @ #p 1 0 15218798 -dhu'l-qa'dah n 1 2 @ #p 1 0 15218663 -dhu_al-hijja n 1 2 @ #p 1 0 15218798 -dhu_al-hijjah n 1 2 @ #p 1 0 15218798 -dhu_al-qadah n 1 2 @ #p 1 0 15218663 -di-iodotyrosine n 1 1 @ 1 1 14834906 -dia n 1 4 @ #m #p ; 1 0 08340989 -diabeta n 1 2 @ ; 1 0 03441930 -diabetes n 1 4 @ ~ %p + 1 1 14117805 -diabetes_insipidus n 1 2 @ ~ 1 0 14119770 -diabetes_mellitus n 1 2 @ ~ 1 0 14118138 -diabetic n 1 2 @ + 1 1 10010977 -diabetic_acidosis n 1 2 @ #p 1 0 14019840 -diabetic_coma n 1 1 @ 1 0 05680423 -diabetic_diet n 1 1 @ 1 0 07562379 -diabetic_retinopathy n 1 1 @ 1 0 14257147 -diabolatry n 1 2 @ + 1 0 01046006 -diabolism n 1 2 @ + 1 0 05979595 -diabolist n 1 2 @ + 1 0 10552486 -diacalpa n 1 2 @ #m 1 0 13196942 -diacetylmorphine n 1 2 @ ~ 1 0 03516011 -diachronic_linguistics n 1 3 @ %p - 1 0 06169050 -diachrony n 1 4 @ %p + - 1 0 06169050 -diacritic n 1 3 @ ~ + 1 0 06820964 -diacritical_mark n 1 2 @ ~ 1 0 06820964 -diadem n 1 2 @ ~ 1 0 03138669 -diadophis n 1 3 @ #m %m 1 0 01728738 -diaeresis n 1 1 @ 1 0 06823760 -diaghilev n 1 1 @ 1 0 10933449 -diaglyph n 1 1 @ 1 0 03576443 -diagnosing n 1 3 @ ~ + 1 1 00152727 -diagnosis n 1 3 @ ~ + 1 1 00152727 -diagnostic_assay n 1 2 @ ~ 1 0 05739043 -diagnostic_procedure n 1 3 @ ~ #p 1 0 00177127 -diagnostic_program n 1 1 @ 1 0 06574680 -diagnostic_technique n 1 3 @ ~ #p 1 0 00177127 -diagnostic_test n 1 2 @ ~ 1 0 05739043 -diagnostician n 1 3 @ ~ + 1 1 10011074 -diagnostics n 1 2 @ + 1 0 06053280 -diagonal n 5 5 @ ~ #p + ; 5 0 13904325 13904164 08270417 08268321 06844903 -diagonal_matrix n 1 2 @ ~ 1 0 08268962 -diagonalisation n 1 3 @ + ; 1 0 05783357 -diagonalization n 1 3 @ + ; 1 0 05783357 -diagram n 1 3 @ ~ + 1 1 03186399 -diagramming n 1 2 @ + 1 0 00900207 -diakinesis n 1 2 @ #p 1 0 13465264 -dial n 4 4 @ #p %p + 4 1 03186696 03187153 03187037 03186818 -dial_phone n 1 2 @ %p 1 0 03187595 -dial_telephone n 1 2 @ %p 1 0 03187595 -dialect n 1 4 @ ~ + - 1 1 07155661 -dialect_atlas n 1 1 @ 1 0 06427240 -dialect_geography n 1 1 @ 1 0 06168703 -dialectic n 2 2 @ + 2 2 06163548 13857804 -dialectical_materialism n 1 1 @ 1 0 05993235 -dialectician n 1 2 @ + 1 0 10011360 -dialectics n 1 1 @ 1 0 06163396 -dialectology n 1 1 @ 1 0 06171265 -dialeurodes n 1 2 @ #m 1 0 02246822 -dialeurodes_citri n 1 2 @ #m 1 0 02246941 -dialog n 3 3 @ ~ %p 3 0 07136206 07010541 06366391 -dialog_box n 1 3 @ #p ; 1 0 03187268 -dialogue n 4 3 @ ~ %p 4 3 07136206 07010541 06366391 07148192 -dialysis n 1 4 @ ~ %p + 1 1 00649760 -dialysis_machine n 1 2 @ ~ 1 0 03187751 -dialyzer n 1 3 @ ~ + 1 0 03187751 -diam n 1 3 @ ~ %p 1 1 05101815 -diamagnet n 1 1 @ 1 0 14604763 -diamagnetism n 1 2 @ + 1 0 11479816 -diamante n 2 1 @ 2 0 04173698 03188290 -diameter n 2 4 @ ~ %p + 2 2 05101815 13871717 -diametrical_opposition n 1 1 @ 1 0 13829243 -diamine n 1 1 @ 1 0 14604857 -diamond n 6 6 @ ~ #m #p %p ; 6 2 13371958 14834563 13882961 03187972 02799593 02780916 -diamond_dust n 1 3 @ #p %s 1 0 11509377 -diamond_jim n 1 1 @ 1 0 10861329 -diamond_jim_brady n 1 1 @ 1 0 10861329 -diamond_jubilee n 1 1 @ 1 0 15250468 -diamond_point n 1 2 @ #p 1 1 03188168 -diamond_state n 1 3 @ #p %p 1 0 09069862 -diamond_wedding n 1 1 @ 1 0 15251092 -diamond_wedding_anniversary n 1 1 @ 1 0 15251092 -diamondback n 1 1 @ 1 0 01755581 -diamondback_rattlesnake n 1 1 @ 1 0 01755581 -diamondback_terrapin n 1 2 @ #m 1 0 01668091 -diana n 2 2 @ ; 2 0 10933658 09557130 -diane_de_poitiers n 1 1 @ 1 0 10933929 -diangus_gratianopolitanus n 1 1 @ 1 0 11809271 -dianthus n 1 3 @ #m %m 1 0 11807849 -dianthus_barbatus n 1 1 @ 1 0 11808299 -dianthus_caryophyllus n 1 1 @ 1 0 11808468 -dianthus_chinensis n 1 2 @ ~ 1 0 11808721 -dianthus_chinensis_heddewigii n 1 1 @ 1 0 11808932 -dianthus_deltoides n 1 1 @ 1 0 11809094 -dianthus_latifolius n 1 1 @ 1 0 11809437 -dianthus_plumarius n 1 1 @ 1 0 11809594 -dianthus_supurbus n 1 1 @ 1 0 11809754 -diapason n 1 1 @ 1 0 03188416 -diapason_stop n 1 1 @ 1 0 03188416 -diapedesis n 1 1 @ 1 0 11446598 -diapensia n 1 2 @ #m 1 0 12251001 -diapensia_family n 1 3 @ #m %m 1 0 12250413 -diapensiaceae n 1 3 @ #m %m 1 0 12250413 -diapensiales n 1 2 @ #m 1 0 12250708 -diaper n 2 1 @ 2 1 03188531 03188725 -diaper_dermatitis n 1 1 @ 1 0 14223978 -diaper_rash n 1 1 @ 1 0 14223978 -diapheromera n 1 2 @ #m 1 0 02231803 -diapheromera_femorata n 1 2 @ #m 1 0 02231803 -diaphone n 1 1 @ 1 0 03188871 -diaphoresis n 1 3 @ ~ + 1 0 13535261 -diaphoretic n 1 2 @ + 1 0 03188979 -diaphragm n 4 4 @ ~ #p ; 4 2 03189083 05318606 03189461 03189311 -diaphragmatic_hernia n 1 1 @ 1 0 14296399 -diaphragmatic_pleurisy n 1 1 @ 1 0 14330340 -diaphysis n 1 2 @ + 1 0 05592733 -diapir n 1 2 @ ; 1 0 09266604 -diapsid n 1 3 ! @ ~ 1 0 01661818 -diapsid_reptile n 1 2 @ ~ 1 0 01661818 -diapsida n 1 1 @ 1 0 01662060 -diarchy n 1 1 @ 1 0 08361612 -diarist n 1 3 @ ~ + 1 0 10011486 -diarrhea n 1 4 @ ~ #p + 1 1 14371913 -diarrhoea n 1 4 @ ~ #p + 1 1 14371913 -diarthrosis n 1 2 @ ~ 1 0 05543177 -diary n 2 3 @ ~ + 2 1 06402031 03189707 -diary_keeper n 1 2 @ ~ 1 0 10011486 -dias n 1 1 @ 1 0 10934154 -diaspididae n 1 3 @ #m %m 1 0 02249365 -diaspora n 3 1 @ 3 0 08481983 07331932 05087894 -diastasis n 1 1 @ 1 0 14294354 -diastema n 1 1 @ 1 0 05282652 -diastole n 1 2 @ + 1 0 07401236 -diastolic_pressure n 1 1 @ 1 0 11430659 -diastrophism n 1 1 @ 1 0 13465382 -diathermy n 1 1 @ 1 0 00662017 -diathermy_machine n 1 2 @ ~ 1 1 03189818 -diathesis n 1 1 @ 1 0 14534333 -diatom n 1 2 @ #m 1 1 01401106 -diatomaceous_earth n 1 1 @ 1 0 14843295 -diatomite n 1 1 @ 1 0 14843295 -diatomophyceae n 1 3 @ #m %m 1 0 01400891 -diatonic_scale n 1 2 @ ~ 1 0 06860323 -diatribe n 1 1 @ 1 0 07233304 -diaz n 1 1 @ 1 0 10934154 -diazepam n 1 1 @ 1 0 03189995 -diazonium n 1 1 @ 1 0 14771831 -diazoxide n 1 1 @ 1 0 03190303 -dibasic_acid n 1 1 @ 1 0 14611158 -dibasic_salt n 1 1 @ 1 0 14611279 -dibber n 1 1 @ 1 0 03190458 -dibble n 1 2 @ + 1 0 03190458 -dibbuk n 1 2 @ ; 1 0 09543154 -dibrach n 1 1 @ 1 0 07095895 -dibranch n 1 1 @ 1 0 01969429 -dibranchia n 1 3 @ #m %m 1 0 01969103 -dibranchiata n 1 3 @ #m %m 1 0 01969103 -dibranchiate n 1 1 @ 1 0 01969429 -dibranchiate_mollusk n 1 1 @ 1 0 01969429 -dibs n 1 2 @ ; 1 0 06730241 -dibucaine n 1 1 @ 1 0 03190655 -dicamptodon n 1 2 @ #m 1 0 01635027 -dicamptodon_ensatus n 1 2 @ #m 1 0 01635176 -dicamptodontid n 1 2 @ #m 1 0 01635027 -dicamptodontidae n 1 3 @ #m %m 1 0 01634684 -dice n 1 3 @ ~ + 1 1 03191029 -dice_box n 1 1 @ 1 0 03191286 -dice_cup n 1 1 @ 1 0 03191286 -dicentra n 1 3 @ #m %m 1 0 11910070 -dicentra_canadensis n 1 1 @ 1 0 11910666 -dicentra_cucullaria n 1 2 @ #m 1 0 11910460 -dicentra_spectabilis n 1 2 @ #m 1 0 11910271 -dicer n 1 2 @ + 1 0 03191451 -diceros n 1 3 @ #m %m 1 0 02393024 -diceros_bicornis n 1 2 @ #m 1 0 02393161 -diceros_simus n 1 1 @ 1 0 02392824 -dichloride n 1 1 @ 1 0 15017343 -dichlorodiphenyltrichloroethane n 1 1 @ 1 0 14599938 -dichloroethyl_sulfide n 1 1 @ 1 0 14957270 -dichloromethane n 1 1 @ 1 0 15018013 -dichondra n 1 2 @ #m 1 1 12826143 -dichondra_micrantha n 1 2 @ #m 1 0 12826143 -dichotomisation n 1 2 @ + 1 0 00389135 -dichotomization n 1 2 @ + 1 0 00389135 -dichotomy n 1 2 @ + 1 0 07939880 -dichroism n 1 1 @ 1 0 11446771 -dichromacy n 1 2 @ ~ 1 0 14153616 -dichromasy n 1 2 @ ~ 1 0 14153616 -dichromat n 1 2 @ ~ 1 0 10011659 -dichromate n 1 1 @ 1 0 15013764 -dichromatism n 1 3 @ ~ + 1 0 14153616 -dichromatopsia n 1 2 @ ~ 1 0 14153616 -dichromia n 1 2 @ ~ 1 0 14153616 -dichromic_acid n 1 1 @ 1 0 15013577 -dick n 2 2 @ ; 2 0 10011785 05526713 -dick_fosbury n 1 1 @ 1 0 10975583 -dick_test n 1 1 @ 1 0 05745369 -dick_turpin n 1 1 @ 1 0 11353412 -dickens n 2 2 @ + 2 1 07125786 10934410 -dickey n 2 4 @ #p + ; 2 0 03191776 03191561 -dickey-bird n 1 2 @ ; 1 0 01503976 -dickey-seat n 1 2 @ ; 1 0 03191776 -dickeybird n 1 2 @ ; 1 0 01503976 -dickhead n 1 2 @ ; 1 0 09815188 -dickie n 2 3 @ #p ; 2 0 03191776 03191561 -dickie-seat n 1 2 @ ; 1 0 03191776 -dickinson n 1 1 @ 1 0 10934611 -dicksonia n 1 3 @ #m %m 1 0 13190469 -dicksonia_antarctica n 1 2 @ #m 1 0 13190747 -dicksoniaceae n 1 3 @ #m %m 1 0 13190218 -dicky n 2 4 @ #p + ; 2 0 03191776 03191561 -dicky-bird n 1 2 @ ; 1 0 01503976 -dicky-seat n 1 2 @ ; 1 0 03191776 -dickybird n 1 2 @ ; 1 0 01503976 -diclofenac_potassium n 1 2 @ %s 1 0 03191967 -diclofenac_sodium n 1 2 @ %s 1 0 03192142 -dicloxacillin n 1 1 @ 1 0 03192347 -dicot n 1 3 @ ~ #m 1 0 11666854 -dicot_family n 1 3 @ ~ #m 1 0 11562747 -dicot_genus n 1 3 @ ~ #m 1 0 11567411 -dicotyledon n 1 3 @ ~ #m 1 0 11666854 -dicotyledonae n 1 3 @ #m %m 1 0 11665781 -dicotyledones n 1 3 @ #m %m 1 0 11665781 -dicoumarol n 1 1 @ 1 0 03192653 -dicranaceae n 1 3 @ #m %m 1 0 11540439 -dicranales n 1 3 @ #m %m 1 0 11540230 -dicranopteris n 1 2 @ #m 1 0 13170498 -dicranum n 1 2 @ #m 1 0 11540631 -dicrostonyx n 1 3 @ #m %m 1 0 02345471 -dicrostonyx_hudsonius n 1 1 @ 1 0 02345774 -dictamnus n 1 2 @ #m 1 0 12712488 -dictamnus_alba n 1 1 @ 1 0 12712626 -dictaphone n 1 1 @ 1 0 03192543 -dictate n 2 2 @ + 2 2 06663940 05871245 -dictation n 3 3 @ ~ + 3 0 07168131 07160635 06387332 -dictator n 3 3 @ ~ + 3 0 10012244 10011902 09824135 -dictatorship n 1 3 @ ~ + 1 1 08440630 -diction n 2 2 @ ~ 2 0 07132415 07081739 -dictionary n 1 3 @ ~ %p 1 1 06418901 -dictionary_definition n 1 1 @ 1 0 06745015 -dictionary_entry n 1 3 @ #p %p 1 1 06300823 -dictostylium n 1 2 @ #m 1 0 12976554 -dictum n 2 3 @ ~ ; 2 1 06727616 06765887 -dictyophera n 1 2 @ #m 1 0 13040971 -dictyoptera n 1 3 @ #m %m 1 0 02232606 -dictyopterous_insect n 1 3 @ ~ #m 1 0 02232951 -dictyosome n 1 2 @ #p 1 0 05434557 -dicumarol n 1 1 @ 1 0 03192653 -dicynodont n 1 2 @ #m 1 0 01721174 -dicynodontia n 1 3 @ #m %m 1 0 01721010 -didacticism n 1 2 @ + 1 0 06600421 -didactics n 1 5 @ ~ %p + - 1 0 00883297 -didanosine n 1 1 @ 1 0 03190897 -diddley n 1 1 @ 1 0 13773047 -diddly n 1 1 @ 1 0 13773047 -diddly-shit n 1 1 @ 1 0 13773047 -diddly-squat n 1 1 @ 1 0 13773047 -diddlyshit n 1 1 @ 1 0 13773047 -diddlysquat n 1 1 @ 1 0 13773047 -didelphidae n 1 3 @ #m %m 1 0 01874784 -didelphis n 1 3 @ #m %m 1 0 01875165 -didelphis_marsupialis n 1 1 @ 1 0 01875313 -didelphis_virginiana n 1 1 @ 1 0 01875313 -dideoxycytosine n 1 1 @ 1 0 03190763 -dideoxyinosine n 1 1 @ 1 0 03190897 -diderot n 1 1 @ 1 0 10934758 -didion n 1 1 @ 1 0 10935025 -dido n 1 2 @ ; 1 0 09558177 -didrikson n 1 1 @ 1 0 11404666 -die n 3 3 @ ~ + 3 2 03191029 03192790 03192907 -die-sinker n 1 1 @ 1 0 10012713 -dieback n 1 2 @ + 1 0 14280298 -dieffenbachia n 1 3 @ #m %m 1 0 11787391 -dieffenbachia_sequine n 1 2 @ #m 1 0 11787625 -diego_rivera n 1 1 @ 1 0 11263687 -diego_rodriguez_de_silva_y_velazquez n 1 1 @ 1 0 11362329 -diegueno n 2 1 @ 2 0 09654898 06922681 -diehard n 1 3 @ ~ + 1 0 10721124 -dielectric n 1 2 @ ~ 1 0 14821590 -dielectric_heating n 1 1 @ 1 0 11449784 -dielectrolysis n 1 2 @ ~ 1 0 13472518 -diemaker n 1 1 @ 1 0 10012713 -dien_bien_phu n 1 2 @ ; 1 0 01277540 -diencephalon n 1 3 @ #p %p 1 0 05496990 -dieresis n 1 1 @ 1 0 06823760 -diervilla n 1 3 @ #m %m 1 0 12671898 -diervilla_lonicera n 1 2 @ #m 1 0 12672083 -diervilla_sessilifolia n 1 2 @ #m 1 0 12672289 -dies_irae n 1 1 @ 1 0 07036546 -diesel n 2 2 @ #p 2 0 10935128 03193107 -diesel-electric n 1 1 @ 1 0 03193260 -diesel-electric_locomotive n 1 1 @ 1 0 03193260 -diesel-hydraulic n 1 1 @ 1 0 03193423 -diesel-hydraulic_locomotive n 1 1 @ 1 0 03193423 -diesel_engine n 1 2 @ #p 1 0 03193107 -diesel_fuel n 1 2 @ ~ 1 0 14685881 -diesel_locomotive n 1 3 @ ~ %p 1 0 03193597 -diesel_motor n 1 2 @ #p 1 0 03193107 -diesel_oil n 1 2 @ ~ 1 0 14685881 -diesinker n 1 1 @ 1 0 10012713 -diesis n 1 1 @ 1 0 06828662 -diestock n 1 1 @ 1 0 03193754 -diestrum n 1 2 @ + 1 0 14038743 -diestrus n 1 2 @ + 1 0 14038743 -diet n 4 4 @ ~ + ; 4 1 07561112 08318777 07560903 01070187 -dietary n 1 2 @ + 1 0 07561590 -dietary_supplement n 1 2 @ ~ 1 0 07562495 -dieter n 1 2 @ + 1 0 10012377 -dietetics n 1 2 @ ~ 1 0 06042187 -diethyl_ether n 1 2 @ ~ 1 0 03299929 -diethylaminoethyl_cellulose n 1 1 @ 1 1 14794304 -diethylbarbituric_acid n 1 1 @ 1 0 02791894 -diethylmalonylurea n 1 1 @ 1 0 02791894 -diethylstilbesterol n 1 1 @ 1 0 03193882 -diethylstilbestrol n 1 1 @ 1 1 14750122 -diethylstilboestrol n 1 1 @ 1 0 14750122 -dietician n 1 2 @ + 1 0 10012484 -dieting n 1 2 @ + 1 0 01070187 -dietitian n 1 1 @ 1 0 10012484 -dietrich n 1 1 @ 1 0 10935304 -dietrich_bonhoeffer n 1 1 @ 1 0 10856215 -difference n 5 5 ! @ ~ = + 5 4 04748836 07366289 07181935 13859307 13729236 -difference_limen n 1 2 @ ~ 1 0 05712892 -difference_of_opinion n 1 2 @ ~ 1 1 07181935 -difference_threshold n 1 2 @ ~ 1 0 05712892 -differentia n 1 1 @ 1 0 04749439 -differential n 3 3 @ ~ + 3 1 06014730 04749310 03194297 -differential_analyzer n 1 1 @ 1 0 03194170 -differential_blood_count n 1 1 @ 1 0 00653171 -differential_calculus n 1 2 @ ; 1 0 06014435 -differential_coefficient n 1 2 @ ~ 1 0 06014730 -differential_cost n 1 1 @ 1 0 05145708 -differential_diagnosis n 1 1 @ 1 0 00153499 -differential_equation n 1 2 @ ~ 1 1 06670521 -differential_gear n 1 1 @ 1 0 03194297 -differential_limen n 1 2 @ ~ 1 0 05712892 -differential_psychology n 1 1 @ 1 0 06139135 -differential_threshold n 1 2 @ ~ 1 0 05712892 -differentiation n 3 4 @ ~ + ; 3 2 05748285 00870640 13559782 -differentiator n 1 2 @ + 1 0 10012815 -difficultness n 1 4 @ ~ = + 1 0 04709253 -difficulty n 4 4 ! @ ~ = 4 4 00623862 05686955 14408086 04709253 -diffidence n 1 4 ! @ ~ + 1 0 07523286 -difflugia n 1 2 @ #m 1 0 01394771 -diffraction n 1 3 @ ~ + 1 1 11446934 -diffraction_grating n 1 2 @ ~ 1 0 03194538 -diffuse_nebula n 1 2 @ ~ 1 0 09266790 -diffuseness n 1 2 @ + 1 0 05088645 -diffuser n 2 2 @ #p 2 0 03194992 03194812 -diffusing_screen n 1 1 @ 1 0 03667060 -diffusion n 4 4 @ ~ + ; 4 3 13465530 07331600 05088056 00368592 -diffusion_pump n 1 1 @ 1 0 03087245 -diffusor n 2 3 @ #p + 2 0 03194992 03194812 -diflunisal n 1 2 @ %s 1 0 03195118 -dig n 5 4 @ ~ + ; 5 0 08550076 06767922 04693557 00941974 00135311 -digenesis n 1 1 @ 1 0 11424589 -digest n 2 2 @ + 2 0 06593542 06593099 -digester n 1 2 @ + 1 0 03195332 -digestibility n 1 3 ! @ + 1 0 04997645 -digestibleness n 1 2 @ + 1 0 04997645 -digestion n 3 3 @ ~ + 3 0 13465998 13465809 05753379 -digestive n 1 1 @ 1 0 14834714 -digestive_fluid n 1 3 @ ~ #p 1 0 05405946 -digestive_gland n 1 2 @ #p 1 0 05532795 -digestive_juice n 1 3 @ ~ #p 1 0 05405946 -digestive_system n 1 3 @ #p %p 1 0 05329215 -digestive_tract n 1 4 @ ~ #p %p 1 0 05532225 -digestive_tube n 1 4 @ ~ #p %p 1 0 05532225 -digger n 2 3 @ ~ + 2 0 10012989 03996416 -digger_wasp n 1 2 @ ~ 1 0 02215770 -digging n 1 2 @ + 1 0 00941974 -digging_up n 1 1 @ 1 0 00044900 -diggings n 2 2 @ ; 2 0 03195659 03195485 -digit n 3 5 @ ~ #p %p + 3 0 13741022 13653461 05566097 -digital-analog_converter n 1 1 @ 1 0 03195799 -digital-to-analog_converter n 1 1 @ 1 0 03195799 -digital_arteries n 1 2 @ #p 1 0 05344514 -digital_audiotape n 1 1 @ 1 0 03195959 -digital_camera n 1 2 @ ~ 1 0 03196062 -digital_clock n 1 1 @ 1 0 03196217 -digital_communication n 1 3 @ ~ ; 1 0 06278830 -digital_communications_technology n 1 1 @ 1 0 00950526 -digital_computer n 1 2 @ ~ 1 0 03196324 -digital_display n 1 4 @ ~ #p %p 1 0 03196598 -digital_photography n 1 1 @ 1 0 13466170 -digital_plethysmograph n 1 1 @ 1 0 03196841 -digital_scanner n 1 1 @ 1 0 04143140 -digital_subscriber_line n 1 1 @ 1 0 03196990 -digital_vein n 1 1 @ 1 0 05365164 -digital_voltmeter n 1 2 @ %p 1 0 03197201 -digital_watch n 1 2 @ %p 1 0 03197337 -digitalin n 1 2 @ ~ 1 0 15060131 -digitalis n 2 4 @ ~ #m + 2 0 15060131 12882779 -digitalis_glycoside n 1 2 @ ~ 1 1 15060131 -digitalis_lutea n 1 1 @ 1 0 12883265 -digitalis_purpurea n 1 1 @ 1 0 12882945 -digitalisation n 1 1 @ 1 0 00709843 -digitalization n 1 2 @ + 1 1 00709843 -digitaria n 1 3 @ #m %m 1 0 12116881 -digitaria_ischaemum n 1 1 @ 1 0 12117235 -digitaria_sanguinalis n 1 1 @ 1 0 12117326 -digitigrade n 1 1 @ 1 0 02507148 -digitigrade_mammal n 1 2 ! @ 1 0 02507148 -digitisation n 1 2 @ + 1 0 05803212 -digitiser n 1 2 @ + 1 0 03197446 -digitization n 1 2 @ + 1 0 05803212 -digitizer n 1 2 @ + 1 0 03197446 -digitoxin n 1 1 @ 1 0 03197666 -dignitary n 1 1 @ 1 1 10748620 -dignity n 3 2 @ + 3 2 04886881 04910684 14431902 -digoxin n 1 1 @ 1 0 03197804 -digram n 1 1 @ 1 0 06830838 -digraph n 1 1 @ 1 0 06830838 -digression n 3 3 @ ~ + 3 0 06600684 00350380 00310201 -digs n 2 2 @ ; 2 0 03195659 03195485 -dihybrid n 1 1 @ 1 0 01327765 -dihybrid_cross n 1 1 @ 1 0 00850873 -dihydric_alcohol n 1 1 @ 1 0 14835980 -dihydrostreptomycin n 1 1 @ 1 0 03198028 -dihydroxyphenylalanine n 1 2 @ ~ 1 0 14604959 -dijon n 1 2 @ #p 1 0 08935848 -dik-dik n 1 2 @ #m 1 0 02421792 -dika n 1 3 @ #m %p 1 0 12717644 -dika_bread n 1 2 @ %s 1 0 07773827 -dika_nut n 1 3 @ #s #p 1 0 07773700 -dike n 2 4 @ ~ + ; 2 0 09883947 03160309 -dilantin n 1 2 @ ; 1 0 03203441 -dilapidation n 2 2 @ + 2 0 14562541 13466312 -dilatation n 2 3 @ ~ + 2 0 14063633 00365995 -dilatation_and_curettage n 1 2 @ %p 1 0 00670250 -dilater n 1 1 @ 1 0 03198223 -dilation n 2 3 @ ~ + 2 0 07137950 00365995 -dilation_and_curettage n 1 2 @ %p 1 0 00670250 -dilator n 3 3 @ ~ + 3 0 05222467 03198383 03198223 -dilatoriness n 1 1 @ 1 0 05062370 -dilatory_plea n 1 2 @ ; 1 0 06561461 -dilaudid n 1 2 @ ; 1 0 03553708 -dildo n 1 1 @ 1 0 03198500 -dilemma n 1 2 @ ~ 1 1 05686086 -dilettante n 1 2 @ + 1 0 09987696 -diligence n 3 3 @ ~ + 3 1 04673006 04865114 00633329 -dill n 2 3 @ #p %p 2 0 12931542 07827896 -dill_pickle n 1 1 @ 1 0 07825194 -dill_seed n 1 2 @ #p 1 0 07828041 -dill_weed n 1 2 @ #p 1 0 07827896 -dillenia n 1 2 @ #m 1 0 12363301 -dilleniaceae n 1 3 @ #m %m 1 0 12362844 -dilleniid_dicot_family n 1 3 @ ~ #m 1 0 11565385 -dilleniid_dicot_genus n 1 3 @ ~ #m 1 0 11575425 -dilleniidae n 1 3 @ #m %m 1 0 12358485 -dilly-dallier n 1 1 @ 1 0 09988703 -dillydallier n 1 2 @ + 1 0 09988703 -diltiazem n 1 1 @ 1 0 03198637 -diluent n 1 1 @ 1 0 14835333 -dilutant n 1 2 @ + 1 0 14835333 -dilution n 2 4 ! @ ~ + 2 2 14835478 00362659 -dim_sum n 1 2 @ ; 1 0 07571547 -dimaggio n 1 1 @ 1 0 10935567 -dimash n 1 3 @ #p %m 1 0 09033936 -dime n 2 1 @ 2 1 13390040 03198819 -dime_bag n 1 1 @ 1 0 03198819 -dime_novel n 1 1 @ 1 0 06368321 -dimenhydrinate n 1 1 @ 1 0 03198951 -dimension n 4 3 @ ~ + 4 4 05093581 05849040 06011446 05091194 -dimensionality n 1 3 @ ~ + 1 0 05062993 -dimer n 1 1 @ 1 1 14835569 -dimetane n 1 2 @ #s 1 0 02905422 -dimetapp n 1 2 @ %s 1 0 03199142 -dimethyl_ketone n 1 1 @ 1 0 14600504 -dimethylglyoxime n 1 1 @ 1 1 14835686 -dimetrodon n 1 2 @ #m 1 0 01722670 -diminished_arch n 1 1 @ 1 0 04226172 -diminuendo n 1 2 @ ; 1 0 04991225 -diminution n 3 4 ! @ ~ + 3 1 13457378 07030549 00351638 -diminutive n 1 2 @ + 1 0 06290246 -diminutiveness n 1 2 @ + 1 0 05106928 -dimity n 1 1 @ 1 0 03199358 -dimmer n 1 1 @ 1 0 03199488 -dimness n 3 2 @ + 3 0 13985323 04955907 04704675 -dimocarpus n 1 3 @ #m %m 1 0 12743232 -dimocarpus_longan n 1 3 @ #m %p 1 0 12743352 -dimorphism n 2 2 @ ; 2 0 11493083 11492643 -dimorphotheca n 1 3 @ #m %m 1 0 11961266 -dimout n 1 2 @ ; 1 0 13984082 -dimple n 3 2 @ + 3 0 14835817 13896695 05599874 -dimpled_chad n 1 1 @ 1 0 14835817 -dimwit n 1 2 @ ; 1 0 10013114 -din n 2 3 @ ~ + 2 2 07377473 00553823 -din_land n 1 1 @ 1 0 11115558 -dinar n 9 3 @ #p %p 9 0 13696893 13671182 13670668 13670281 13669860 13669590 13669342 13668864 13668491 -dindymene n 1 1 @ 1 0 09594093 -diner n 3 3 @ ~ + 3 0 10013242 03200357 03199647 -dinero n 1 1 @ 1 0 13385216 -dinesen n 1 1 @ 1 0 10935745 -dinette n 1 2 @ #p 1 0 03199775 -ding n 2 2 @ ~ 2 0 07383257 04693384 -ding-dong n 1 1 @ 1 0 07383616 -dingbat n 1 1 @ 1 0 10013399 -dinge n 1 2 @ + 1 0 14498567 -dinghy n 1 3 @ ~ %p 1 0 03199901 -dinginess n 1 2 @ + 1 0 14498567 -dingle n 1 1 @ 1 0 09264599 -dingo n 1 1 @ 1 0 02115641 -dining n 1 3 @ ~ + 1 0 00840517 -dining-hall n 1 3 @ ~ %p 1 0 03200539 -dining-room n 1 4 @ ~ #p %p 1 0 03200701 -dining-room_attendant n 1 2 @ ~ 1 0 10013614 -dining-room_furniture n 1 2 @ ~ 1 0 03200906 -dining-room_table n 1 2 @ #p 1 0 03201035 -dining_area n 1 1 @ 1 0 03200231 -dining_car n 1 1 @ 1 0 03200357 -dining_companion n 1 1 @ 1 0 10687826 -dining_compartment n 1 1 @ 1 0 03200357 -dining_room n 1 4 @ ~ #p %p 1 1 03200701 -dining_table n 1 2 @ ~ 1 1 03201208 -diningroom_set n 1 1 @ 1 0 08007777 -diningroom_suite n 1 1 @ 1 0 08007777 -dink n 2 2 @ ; 2 0 07989220 00567280 -dinka n 1 1 @ 1 0 06998322 -dinkey n 1 1 @ 1 0 03200152 -dinky n 1 1 @ 1 0 03200152 -dinner n 2 3 @ ~ + 2 2 07575726 08253815 -dinner_bell n 1 1 @ 1 0 03201529 -dinner_bucket n 1 1 @ 1 0 03201996 -dinner_dress n 1 1 @ 1 0 03201638 -dinner_gown n 1 1 @ 1 0 03201638 -dinner_jacket n 1 1 @ 1 0 03201776 -dinner_napkin n 1 1 @ 1 0 03201895 -dinner_pail n 1 1 @ 1 1 03201996 -dinner_party n 1 2 @ ~ 1 1 08253815 -dinner_plate n 1 1 @ 1 0 03202123 -dinner_service n 1 1 @ 1 0 03202246 -dinner_set n 1 1 @ 1 0 03202246 -dinner_table n 1 2 @ %p 1 0 03202354 -dinner_theater n 1 1 @ 1 0 03202481 -dinner_theatre n 1 1 @ 1 0 03202481 -dinnertime n 1 1 @ 1 1 15166070 -dinnerware n 1 1 @ 1 0 03202622 -dino_paul_crocetti n 1 1 @ 1 0 11159698 -dinoceras n 1 2 @ #m 1 0 02372140 -dinocerata n 1 3 @ #m %m 1 0 02371471 -dinocerate n 1 2 @ ~ 1 0 02372046 -dinoflagellata n 1 3 @ #m %m 1 0 01417041 -dinoflagellate n 1 3 @ ~ #m 1 0 01417361 -dinornis n 1 3 @ #m %m 1 0 01522952 -dinornis_giganteus n 1 2 @ #m 1 0 01523248 -dinornithidae n 1 3 @ #m %m 1 0 01522789 -dinornithiformes n 1 3 @ #m %m 1 0 01522594 -dinosaur n 1 2 @ ~ 1 0 01699831 -dint n 1 1 @ 1 0 00173172 -diocesan n 1 2 @ + 1 0 10013811 -diocese n 1 4 @ ~ %p + 1 0 08550966 -diocletian n 1 1 @ 1 0 10935968 -diode n 2 2 @ ~ 2 0 03202940 03202760 -diodon n 1 3 @ #m %m 1 0 02655694 -diodon_holocanthus n 1 2 @ #m 1 0 02656032 -diodon_hystrix n 1 2 @ #m 1 0 02655848 -diodontidae n 1 3 @ #m %m 1 0 02655355 -diodora_apertura n 1 2 @ #m 1 0 01949499 -diogenes n 1 1 @ 1 0 10936279 -diol n 1 1 @ 1 0 14835980 -diomedea_exulans n 1 2 @ #m 1 0 02058594 -diomedea_nigripes n 1 2 @ #m 1 0 02058747 -diomedeidae n 1 3 @ #m %m 1 0 02058074 -dionaea n 1 3 @ #m %m 1 0 12782774 -dionaea_muscipula n 1 2 @ #m 1 0 12782915 -dionysia n 1 1 @ 1 0 00511676 -dionysius n 1 1 @ 1 0 10936424 -dionysius_the_elder n 1 1 @ 1 0 10936424 -dionysus n 1 3 @ + ; 1 0 09558898 -dioon n 1 2 @ #m 1 0 11602873 -diophantus n 1 1 @ 1 0 10936567 -diopter n 1 1 @ 1 0 13584918 -dioptre n 1 1 @ 1 0 13584918 -dior n 1 1 @ 1 0 10936716 -diorama n 1 1 @ 1 0 03884072 -diorite n 1 1 @ 1 0 14932554 -dioscorea n 1 3 @ #m %m 1 0 12087807 -dioscorea_alata n 1 1 @ 1 0 12088327 -dioscorea_batata n 1 1 @ 1 0 12088495 -dioscorea_bulbifera n 1 1 @ 1 0 12088768 -dioscorea_elephantipes n 1 3 @ #m %p 1 0 12088909 -dioscorea_paniculata n 1 2 @ #m 1 0 12089320 -dioscorea_trifida n 1 1 @ 1 0 12089496 -dioscoreaceae n 1 3 @ #m %m 1 0 12087650 -diospyros n 1 3 @ #m %m 1 0 12770277 -diospyros_ebenum n 1 3 @ #m %s 1 0 12770529 -diospyros_kaki n 1 3 @ #m %p 1 0 12771390 -diospyros_kurzii n 1 3 @ #m %s 1 0 12770892 -diospyros_lotus n 1 1 @ 1 0 12771890 -diospyros_virginiana n 1 3 @ #m %p 1 0 12771597 -diovan n 1 1 @ 1 0 04519019 -dioxide n 1 2 @ ~ 1 0 14836127 -dioxin n 1 2 @ #s 1 0 14836308 -dip n 9 4 @ ~ + ; 9 0 13904506 13892897 10431907 07582609 07364434 05111835 03203089 00442847 00435013 -dip_circle n 1 2 @ ; 1 0 03566555 -dip_switch n 1 2 @ ; 1 0 03204558 -diphenhydramine n 1 1 @ 1 0 03203225 -diphenylbutyl_piperidine n 1 2 @ ~ 1 0 03203641 -diphenylhydantoin n 1 1 @ 1 0 03203441 -diphtheria n 1 1 @ 1 0 14123510 -diphthong n 1 2 @ + 1 0 07112364 -diphylla n 1 3 @ #m %m 1 0 02151108 -diphylla_ecaudata n 1 2 @ #m 1 0 02151230 -dipladenia n 1 3 @ #m %m 1 0 11773138 -dipladenia_boliviensis n 1 2 @ #m 1 0 11773408 -diplazium_pycnocarpon n 1 2 @ #m 1 0 13194918 -diplegia n 1 1 @ 1 0 14087208 -diplococcus n 1 3 @ ~ #m 1 0 01380610 -diplococcus_pneumoniae n 1 1 @ 1 0 01380754 -diplodocus n 1 2 @ #m 1 0 01710177 -diploic_vein n 1 1 @ 1 0 05365284 -diploid n 1 3 @ + ; 1 0 01320093 -diploidy n 1 1 @ 1 0 14570676 -diploma n 1 2 @ ~ 1 0 06478582 -diplomacy n 3 4 @ ~ + - 3 2 07148573 04842029 04890865 -diplomat n 2 3 @ ~ + 2 1 10013927 10014658 -diplomate n 1 1 @ 1 0 10014771 -diplomatic_building n 1 2 @ ~ 1 0 03203806 -diplomatic_corps n 1 1 @ 1 0 08357647 -diplomatic_immunity n 1 2 @ ; 1 0 14529212 -diplomatic_minister n 1 1 @ 1 0 10320695 -diplomatic_mission n 1 3 @ ~ %m 1 0 08402693 -diplomatic_negotiations n 1 3 @ ~ - 1 0 07148573 -diplomatic_pouch n 1 1 @ 1 0 03203959 -diplomatic_service n 1 1 @ 1 0 08357647 -diplomatist n 1 3 @ ~ + 1 0 10013927 -diplopia n 1 1 @ 1 0 14153285 -diplopoda n 1 3 @ #m %m 1 0 01786402 -diplopterygium n 1 3 @ #m %m 1 0 13170661 -diplopterygium_longissimum n 1 2 @ #m 1 0 13170840 -diplotaxis n 1 3 @ #m %m 1 0 11885148 -diplotaxis_erucoides n 1 2 @ #m 1 0 11885524 -diplotaxis_muralis n 1 2 @ #m 1 0 11885292 -diplotaxis_tenuifolia n 1 2 @ #m 1 0 11885292 -diplotene n 1 3 @ #p %p 1 0 13466449 -dipnoi n 1 3 @ #m %m 1 0 02515914 -dipodidae n 1 3 @ #m %m 1 0 02351518 -dipodomys n 1 3 @ #m %m 1 0 02349980 -dipodomys_ordi n 1 1 @ 1 0 02350357 -dipodomys_phillipsii n 1 3 @ ~ #m 1 0 02350105 -dipogon n 1 3 @ #m %m 1 0 12526946 -dipogon_lignosus n 1 2 @ #m 1 0 12527081 -dipole n 2 2 @ ~ 2 1 09266946 03204134 -dipole_antenna n 1 1 @ 1 0 03204134 -dipole_molecule n 1 1 @ 1 0 09267128 -dipole_moment n 1 2 @ ~ 1 0 11483354 -dippel's_oil n 1 1 @ 1 0 14783251 -dipper n 5 6 @ ~ #m #p %m + 5 1 03204306 09340452 09219858 01850192 01601694 -dippers n 1 2 @ %m 1 0 08090547 -dipsacaceae n 1 3 @ #m %m 1 0 12682054 -dipsacus n 1 3 @ #m %m 1 0 12682264 -dipsacus_fullonum n 1 1 @ 1 0 12682668 -dipsacus_sativus n 1 1 @ 1 0 12682882 -dipsacus_sylvestris n 1 1 @ 1 0 12683096 -dipsomania n 1 1 @ 1 0 09181993 -dipsomaniac n 1 1 @ 1 0 09782167 -dipsosaurus n 1 3 @ #m %m 1 0 01677913 -dipsosaurus_dorsalis n 1 2 @ #m 1 0 01678043 -dipstick n 1 1 @ 1 0 03204436 -diptera n 1 4 @ #m %m + 1 0 02188065 -dipteran n 1 4 @ ~ #m %p 1 0 02188699 -dipterocarp n 1 3 @ ~ #m 1 0 12377198 -dipterocarpaceae n 1 3 @ #m %m 1 0 12376950 -dipteron n 1 4 @ ~ #m %p 1 0 02188699 -dipteronia n 1 2 @ #m 1 0 12756059 -dipterous_insect n 1 4 @ ~ #m %p 1 0 02188699 -dipteryx n 1 3 @ #m %m 1 0 11749742 -dipteryx_odorata n 1 2 @ #m 1 0 11749920 -diptych n 1 1 @ 1 0 03204810 -dipus n 1 3 @ #m %m 1 0 02351686 -dipylon n 1 3 @ #p + 1 0 08785958 -dipylon_gate n 1 2 @ #p 1 0 08785958 -dirac n 1 1 @ 1 0 10936894 -dirca n 1 3 @ #m %m 1 0 12347490 -dirca_palustris n 1 2 @ #m 1 0 12347639 -dire_straits n 1 1 @ 1 0 14033481 -direct-grant_school n 1 2 @ ; 1 0 08278924 -direct_action n 1 2 @ ~ 1 0 01168369 -direct_antonym n 1 1 @ 1 0 06305716 -direct_contrast n 1 1 @ 1 1 13855627 -direct_correlation n 1 2 @ ; 1 0 06032898 -direct_current n 1 2 ! @ 1 1 11447153 -direct_discourse n 1 2 ! @ 1 0 07138736 -direct_dye n 1 1 @ 1 0 14987341 -direct_electric_current n 1 1 @ 1 0 11447153 -direct_evidence n 1 3 ! @ ; 1 1 06735077 -direct_examination n 1 2 @ ; 1 0 07195241 -direct_fire n 1 1 @ 1 0 00990719 -direct_flight n 1 1 @ 1 0 00301598 -direct_loan n 1 1 @ 1 1 13399379 -direct_mail n 1 1 @ 1 0 06266296 -direct_mailer n 1 1 @ 1 0 08062092 -direct_marketing n 1 1 @ 1 0 01112739 -direct_object n 1 1 @ 1 0 06310578 -direct_primary n 1 2 @ ~ 1 0 00182723 -direct_quotation n 1 1 @ 1 0 07138736 -direct_sum n 1 1 @ 1 1 07998904 -direct_support n 1 1 @ 1 0 00972112 -direct_supporting_fire n 1 1 @ 1 0 00989385 -direct_tax n 1 1 @ 1 0 13313464 -direct_tide n 1 1 @ 1 0 07402873 -direct_transmission n 1 1 @ 1 0 09267227 -direct_trust n 1 1 @ 1 0 13362347 -directed_study n 1 1 @ 1 0 00890568 -directed_verdict n 1 2 @ ; 1 0 01192814 -direction n 9 3 @ ~ = 9 7 08679972 13827426 06197215 06650701 01133281 06786629 00815320 07169480 05704694 -direction_finder n 1 2 @ ~ 1 0 03205304 -directional_antenna n 1 2 @ ~ 1 0 03204955 -directional_microphone n 1 2 @ ~ 1 0 03205143 -directionality n 2 2 @ + 2 1 05066626 05063853 -directive n 1 3 @ ~ + 1 1 07170080 -directiveness n 1 2 @ + 1 0 05066867 -directivity n 2 2 @ + 2 1 05066626 05066867 -directness n 2 5 ! @ ~ = + 2 0 04918210 04871720 -director n 5 4 @ ~ #m + 5 3 10014939 10015485 10015215 10088200 09952539 -director-stockholder_relation n 1 2 @ ; 1 0 13839287 -director_of_central_intelligence n 1 1 @ 1 0 10015607 -director_of_research n 1 1 @ 1 0 10522956 -directorate n 1 3 @ ~ #m 1 0 08380768 -directorate_for_inter-services_intelligence n 1 2 @ ; 1 0 08343534 -directorship n 1 2 @ + 1 0 00591858 -directory n 2 3 @ ~ ; 2 1 06423619 06490451 -dirge n 1 2 @ ~ 1 1 07050619 -dirham n 6 3 @ #p %p 6 0 13698445 13671813 13671527 13670790 13670399 13669998 -dirigible n 1 4 @ ~ %p + 1 0 02692877 -diriment_impediment n 1 2 @ ; 1 0 05689909 -dirk n 1 2 @ ; 1 0 03205458 -dirndl n 2 1 @ 2 0 03205669 03205574 -dirt n 4 4 @ ~ + ; 4 2 14844693 14498096 14854581 07223811 -dirt_ball n 1 1 @ 1 0 10792028 -dirt_bike n 1 1 @ 1 0 04466871 -dirt_track n 1 2 @ ~ 1 0 03205760 -dirtiness n 3 4 ! @ ~ + 3 0 14497763 14488004 04903678 -dirty_bomb n 1 1 @ 1 0 03205903 -dirty_dog n 1 1 @ 1 0 10539715 -dirty_joke n 1 1 @ 1 0 06779096 -dirty_laundry n 1 1 @ 1 0 05671842 -dirty_linen n 1 1 @ 1 0 05671842 -dirty_money n 1 2 @ %p 1 0 13262663 -dirty_old_man n 1 1 @ 1 0 10015792 -dirty_pool n 1 1 @ 1 0 01223766 -dirty_story n 1 1 @ 1 0 06779096 -dirty_trick n 1 1 @ 1 0 00514041 -dirty_tricks n 1 2 @ ; 1 0 01223877 -dirty_war n 1 2 @ ; 1 0 00980394 -dirty_word n 2 3 @ ~ - 2 0 07124340 06290401 -dirtying n 1 3 @ ~ + 1 0 00276620 -dis n 1 1 @ 1 0 09570522 -disa n 2 3 @ #m #p 2 0 12059625 08396207 -disability n 1 3 @ ~ + 1 1 14548343 -disability_benefit n 1 1 @ 1 0 13297740 -disability_check n 1 1 @ 1 0 13383855 -disability_insurance n 1 1 @ 1 0 01088757 -disability_of_walking n 1 2 @ ~ 1 0 14548913 -disability_payment n 1 1 @ 1 0 13383855 -disabled n 1 3 @ ~ + 1 1 07946288 -disablement n 1 3 @ ~ + 1 0 14548343 -disaccharidase n 1 2 @ ~ 1 0 14836468 -disaccharide n 1 2 @ ~ 1 0 14836642 -disadvantage n 1 4 ! @ ~ + 1 1 05161614 -disaffection n 2 3 @ ~ + 2 0 07502387 04879498 -disaffirmation n 1 2 @ ~ 1 0 07204240 -disagreeable_person n 1 2 @ ~ 1 0 09631463 -disagreeable_woman n 1 2 @ ~ 1 0 10739636 -disagreeableness n 2 4 ! @ ~ + 2 0 04779895 04643221 -disagreement n 3 4 ! @ ~ + 3 2 13982357 04749709 07180787 -disambiguation n 1 3 @ ~ + 1 0 07171513 -disambiguator n 1 3 @ + ; 1 0 06572204 -disappearance n 4 4 ! @ ~ + 4 3 00053609 07335716 00230172 07336346 -disappearing n 1 3 @ ~ + 1 0 00053609 -disappointment n 2 3 @ ~ + 2 2 07540602 00068755 -disapprobation n 1 3 ! @ ~ 1 1 06709692 -disapproval n 4 4 ! @ ~ + 4 2 07502829 06709533 06200741 00874621 -disarmament n 1 3 ! @ + 1 1 01157557 -disarmer n 1 3 @ ~ + 1 0 10390199 -disarming n 1 3 ! @ + 1 0 01157557 -disarrangement n 1 2 @ + 1 0 14500341 -disarray n 2 3 @ ~ + 2 1 05683582 04897604 -disassembly n 1 2 ! @ 1 1 00912274 -disassociation n 2 4 ! @ ~ + 2 0 14421373 14416845 -disassortative_mating n 1 2 ! @ 1 0 00847932 -disaster n 3 3 @ ~ + 3 3 14476290 07314838 00217499 -disaster_area n 1 1 @ 1 0 08551177 -disavowal n 1 3 @ ~ + 1 0 07205946 -disbandment n 1 2 @ + 1 0 01082720 -disbarment n 1 3 @ + ; 1 0 00206779 -disbelief n 2 2 @ ~ 2 1 05698982 05979909 -disbeliever n 1 3 @ ~ + 1 0 10015897 -disbursal n 2 3 @ ~ + 2 0 13275495 01122149 -disbursement n 2 3 @ ~ + 2 0 13275495 01122149 -disburser n 1 2 @ + 1 0 10635275 -disc n 4 4 @ ~ %p ; 4 2 03924069 13875185 03706653 03208556 -disc_brake n 1 2 @ %p 1 0 03208938 -disc_drive n 1 3 @ %p ; 1 0 03209666 -disc_harrow n 1 1 @ 1 0 03210245 -disc_jockey n 1 1 @ 1 0 10017272 -disc_pack n 1 2 @ ; 1 0 07956552 -disc_space n 1 3 @ ~ ; 1 0 08555883 -discant n 1 1 @ 1 0 07032026 -discard n 3 5 @ ~ #p + ; 3 0 09267490 00091503 00091234 -disceptation n 1 2 @ ~ 1 0 07183151 -discernability n 1 2 @ + 1 0 04703104 -discernment n 5 4 @ ~ = + 5 0 05805475 05749619 05710210 05614175 04891010 -discharge n 9 3 @ ~ + 9 5 07307754 01253277 14852450 13466586 11511523 07407777 00216174 00213694 00123234 -discharge_lamp n 1 1 @ 1 0 03206023 -discharge_pipe n 1 2 @ ~ 1 0 03206158 -discina n 1 2 @ ~ 1 0 13036804 -discina_macrospora n 1 2 @ #m 1 0 13036907 -disciotis_venosa n 1 2 @ #m 1 0 13032618 -disciple n 1 3 @ ~ + 1 1 10016103 -disciples_of_christ n 1 1 @ 1 0 08087776 -discipleship n 1 2 @ + 1 0 00592001 -disciplinarian n 1 2 @ ~ 1 0 10296444 -discipline n 5 4 ! @ ~ + 5 4 05996646 05662876 04881623 00893836 01161821 -disclaimer n 2 4 @ ~ + ; 2 0 07207680 07205946 -disclosure n 1 3 @ ~ + 1 1 07213395 -disco n 2 1 @ 2 0 07059626 03206282 -disco_biscuit n 1 1 @ 1 0 02678738 -disco_music n 1 1 @ 1 0 07059626 -discocephali n 1 3 @ #m %m 1 0 02574489 -discoglossidae n 1 3 @ #m %m 1 0 01647803 -discography n 1 1 @ 1 0 06488224 -discoid_lupus_erythematosus n 1 1 @ 1 0 14220735 -discoloration n 2 3 @ ~ + 2 0 04695176 00274707 -discolouration n 2 3 @ ~ + 2 0 04695176 00274707 -discombobulation n 1 2 @ + 1 0 07507912 -discomfited n 1 2 @ + 1 1 07946135 -discomfiture n 1 2 @ + 1 0 07508232 -discomfort n 2 3 ! @ ~ 2 1 14446652 07495973 -discomposure n 2 4 ! @ ~ + 2 0 07508232 04904664 -discomycete n 1 3 @ ~ #m 1 0 13028611 -discomycetes n 1 4 @ #m %m + 1 0 13028337 -disconcertion n 1 2 @ + 1 0 07508232 -disconcertment n 1 2 @ + 1 0 07508232 -disconnect n 1 1 @ 1 0 04753060 -disconnectedness n 1 4 ! @ ~ + 1 0 14417697 -disconnection n 3 3 @ ~ + 3 0 14417697 04753060 00385649 -disconsolateness n 1 2 @ + 1 0 07538395 -discontent n 1 3 @ ~ + 1 1 07538965 -discontentedness n 1 3 @ ~ + 1 0 07538965 -discontentment n 1 4 ! @ ~ + 1 0 07538965 -discontinuance n 1 4 ! @ ~ + 1 1 01022483 -discontinuation n 1 4 ! @ ~ + 1 0 01022483 -discontinuity n 1 3 ! @ + 1 1 14417551 -discord n 4 3 @ ~ + 4 0 13979064 07181546 04984698 01170175 -discordance n 2 2 @ + 2 0 04984698 01170175 -discotheque n 1 1 @ 1 0 03206282 -discount n 4 3 @ ~ + 4 1 00362103 13319253 13282275 13274597 -discount_business n 1 1 @ 1 1 01101114 -discount_chain n 1 2 @ %m 1 0 08061695 -discount_house n 1 2 @ #m 1 0 03206405 -discount_rate n 2 3 @ ~ ; 2 0 13319512 13319253 -discount_store n 1 2 @ #m 1 0 03206405 -discounter n 1 3 @ #m + 1 0 03206405 -discouragement n 3 4 ! @ ~ + 3 0 07542675 07253637 01076724 -discourse n 3 4 @ ~ + ; 3 1 06284777 07243837 07138085 -discourtesy n 3 3 ! @ ~ 3 0 06714976 04914292 01224031 -discovered_check n 1 1 @ 1 0 00167580 -discoverer n 2 3 @ ~ + 2 0 10214637 10090498 -discovery n 4 4 @ ~ + ; 4 3 00043195 07214432 05808218 07214642 -discovery_day n 1 2 @ #p 1 0 15190895 -discredit n 1 3 @ ~ + 1 1 14439745 -discreetness n 2 3 @ ~ + 2 0 05615500 04842029 -discrepancy n 2 3 @ ~ + 2 2 04749709 07366627 -discreteness n 1 2 @ + 1 0 14414503 -discretion n 5 3 @ ~ + 5 2 13995824 05615500 05751707 05198756 04891010 -discretionary_trust n 1 1 @ 1 0 13362540 -discrimination n 2 3 @ ~ + 2 2 01153548 05748054 -discriminative_stimulus n 1 1 @ 1 0 05829213 -discriminator n 1 2 @ + 1 0 10012815 -discursiveness n 1 2 @ + 1 0 04919872 -discus n 2 1 @ 2 0 07470285 03206602 -discussant n 1 3 @ ~ + 1 0 09615336 -discussion n 2 3 @ ~ + 2 2 07138085 07140659 -discussion_section n 1 1 @ 1 0 08239152 -disdain n 2 2 @ + 2 1 07502980 06719404 -disdainfulness n 1 2 @ + 1 0 04888268 -disease n 1 3 @ ~ %p 1 1 14070360 -disease_of_the_neuromuscular_junction n 1 2 @ ~ 1 0 14071235 -disease_of_the_skin n 1 2 @ ~ 1 0 14219661 -diseased_person n 1 2 @ ~ 1 0 10595647 -disembarkation n 1 4 ! @ ~ + 1 0 00058002 -disembarkment n 1 3 @ ~ + 1 0 00058002 -disembarrassment n 1 3 ! @ + 1 0 07305760 -disembodied_spirit n 1 2 @ ~ 1 0 09545324 -disembowelment n 1 1 @ 1 0 00670703 -disenchantment n 1 2 @ + 1 0 05988097 -disenfranchisement n 1 3 ! @ + 1 1 01140029 -disengagement n 2 3 @ + ; 2 1 00390906 00057306 -disentanglement n 1 2 @ + 1 0 01244593 -disentangler n 1 1 @ 1 0 10016954 -disequilibrium n 1 3 ! @ ~ 1 0 13934274 -disestablishment n 1 2 @ + 1 0 01082886 -disesteem n 1 3 ! @ + 1 0 14437845 -disfavor n 2 3 @ ~ + 2 0 14413644 06200741 -disfavour n 2 3 @ ~ + 2 0 14413644 06200741 -disfiguration n 2 2 @ + 2 0 04691178 00403466 -disfigurement n 2 2 @ + 2 0 04691178 00403466 -disfluency n 1 2 ! @ 1 0 05643072 -disforestation n 1 2 @ + 1 0 01262441 -disfranchisement n 1 2 @ + 1 0 01022824 -disfunction n 1 3 @ ~ ; 1 0 14557898 -disgorgement n 1 3 @ ~ + 1 0 00118733 -disgrace n 1 3 @ ~ + 1 1 14440137 -disgracefulness n 1 3 @ ~ + 1 0 04808281 -disgruntlement n 1 2 @ + 1 0 07539259 -disguise n 3 3 @ ~ + 3 1 04679074 03206718 01049266 -disgust n 1 3 @ ~ + 1 1 07503260 -disgustingness n 2 2 @ + 2 0 04996571 04780605 -dish n 6 5 @ ~ #p %p + 6 2 03206908 07557434 13766896 10613996 03207305 00432881 -dish_aerial n 1 3 @ ~ #p 1 0 03207305 -dish_antenna n 1 3 @ ~ #p 1 0 03207305 -dish_rack n 1 1 @ 1 0 03207630 -dish_towel n 1 1 @ 1 0 03207835 -dish_washer n 1 1 @ 1 0 03207941 -dishabille n 1 2 @ ~ 1 0 14457838 -disharmony n 1 1 @ 1 0 04984809 -dishcloth n 1 1 @ 1 0 03207743 -dishcloth_gourd n 1 4 @ ~ #m %p 1 0 12166424 -disheartenment n 2 3 @ ~ + 2 0 07542675 07253814 -dishful n 1 1 @ 1 0 13766896 -dishonesty n 2 3 ! @ ~ 2 0 04874672 00749574 -dishonor n 2 4 ! @ ~ + 2 1 14439447 04873939 -dishonorable_discharge n 1 1 @ 1 0 00234105 -dishonorableness n 1 4 ! @ ~ + 1 0 04873550 -dishonour n 2 3 @ ~ + 2 0 14439447 04873939 -dishonourableness n 1 3 @ ~ + 1 0 04873550 -dishpan n 1 1 @ 1 0 03207548 -dishrag n 1 1 @ 1 0 03207743 -dishtowel n 1 1 @ 1 0 03207835 -dishware n 1 2 @ ~ 1 0 03133538 -dishwasher n 2 1 @ 2 1 03207941 10017190 -dishwasher_detergent n 1 1 @ 1 0 03208062 -dishwashing n 1 1 @ 1 0 00255600 -dishwashing_detergent n 1 1 @ 1 0 03208062 -dishwashing_liquid n 1 1 @ 1 0 03208062 -dishwashing_machine n 1 1 @ 1 0 03207941 -dishwater n 1 1 @ 1 1 14836851 -disillusion n 1 2 @ + 1 0 05988097 -disillusionment n 1 2 @ + 1 1 05988097 -disincentive n 1 2 ! @ 1 0 09180118 -disinclination n 2 4 ! @ ~ + 2 0 07501922 04645943 -disinfectant n 1 3 @ ~ + 1 0 03208229 -disinfection n 1 3 @ ~ + 1 0 00709521 -disinfestation n 1 2 @ + 1 0 00251520 -disinfestation_officer n 1 1 @ 1 0 10508008 -disinflation n 1 2 ! @ 1 0 13466849 -disinformation n 1 1 @ 1 0 06635313 -disingenuousness n 1 4 ! @ ~ + 1 0 04876374 -disinheritance n 1 2 @ + 1 0 01022992 -disintegration n 5 3 @ ~ + 5 1 14561327 14561461 13467916 13456899 07330828 -disinterest n 1 1 @ 1 1 06205018 -disinterestedness n 1 2 @ + 1 0 06202907 -disinterment n 1 2 @ + 1 0 00044900 -disinvestment n 1 2 @ + 1 0 00396509 -disjointedness n 1 2 @ + 1 0 14418290 -disjunction n 2 3 @ ~ + 2 0 14417697 00385649 -disjunctive_conjunction n 1 1 @ 1 0 13800115 -disjuncture n 1 3 @ ~ + 1 0 14417697 -disk n 4 5 @ ~ %p + ; 4 2 13875185 03208556 03924069 03706653 -disk_access n 1 1 @ 1 0 03208815 -disk_brake n 1 2 @ %p 1 0 03208938 -disk_cache n 1 2 @ #p 1 0 03209141 -disk_clutch n 1 1 @ 1 0 03209359 -disk_controller n 1 2 @ ; 1 0 03209477 -disk_drive n 1 3 @ %p ; 1 0 03209666 -disk_error n 1 2 @ ; 1 0 07299965 -disk_file n 1 2 @ ; 1 0 06510103 -disk_harrow n 1 1 @ 1 0 03210245 -disk_jockey n 1 1 @ 1 0 10017272 -disk_operating_system n 1 2 @ ~ 1 0 06568422 -disk_overhead n 1 2 @ ; 1 0 08556065 -disk_pack n 1 2 @ ; 1 0 07956552 -disk_shape n 1 2 @ ~ 1 0 05073559 -disk_space n 1 3 @ ~ ; 1 0 08555883 -diskette n 1 3 @ #p + 1 0 03209910 -dislike n 2 4 ! @ ~ + 2 2 06200741 07501545 -dislocation n 3 3 @ ~ + 3 2 07367385 00553362 14291561 -dislodgement n 1 2 @ + 1 0 00395199 -dislodgment n 1 1 @ 1 0 00395199 -disloyalty n 1 3 ! @ ~ 1 1 04879340 -dismantlement n 1 2 @ + 1 0 00912274 -dismantling n 1 2 @ + 1 0 00912274 -dismay n 2 4 @ ~ = + 2 2 07542675 07519773 -dismemberment n 1 2 @ + 1 0 07433510 -dismissal n 4 4 @ ~ + ; 4 1 01190172 07213079 06689829 00216174 -dismission n 2 3 @ ~ + 2 0 07213079 00216174 -dismount n 1 2 @ + 1 0 01252800 -disney n 1 1 @ 1 0 10937126 -disneyland n 1 2 @ #p 1 0 09062184 -disobedience n 2 4 ! @ ~ + 2 1 01179707 04909414 -disorder n 3 4 ! @ ~ + 3 1 14052403 14499262 13972797 -disorderliness n 3 4 ! @ ~ + 3 0 14499262 13977184 04897604 -disorderly_behavior n 1 1 @ 1 0 00771713 -disorderly_conduct n 1 1 @ 1 0 00771713 -disorganisation n 2 2 @ + 2 0 14500341 00552922 -disorganization n 2 2 @ + 2 0 14500341 00552922 -disorganized_schizophrenia n 1 1 @ 1 0 14399438 -disorganized_type_schizophrenia n 1 1 @ 1 0 14399438 -disorientation n 2 3 @ ~ + 2 0 05898430 05684003 -disowning n 1 2 @ + 1 0 07207860 -disownment n 1 2 @ + 1 0 07207860 -disparagement n 2 4 @ ~ + - 2 1 06717170 01219893 -disparager n 1 3 @ ~ + 1 0 10009671 -disparateness n 1 2 @ + 1 0 04750414 -disparity n 1 3 @ ~ + 1 0 04752530 -dispassion n 1 1 @ 1 0 04630137 -dispassionateness n 1 2 @ + 1 0 04630137 -dispatch n 4 4 @ ~ %p + 4 2 06682794 00061290 05059830 00222248 -dispatch_box n 1 1 @ 1 0 03210372 -dispatch_case n 1 1 @ 1 0 03210372 -dispatch_rider n 1 1 @ 1 0 10017664 -dispatcher n 2 3 @ ~ + 2 0 10649308 10017422 -dispensability n 1 4 ! @ = + 1 0 05172953 -dispensableness n 1 4 ! @ = + 1 0 05172953 -dispensary n 1 2 @ + 1 1 03210552 -dispensation n 3 3 @ ~ + 3 1 01142014 13285714 01083504 -dispenser n 2 3 @ ~ + 2 1 03210683 10017794 -dispersal n 1 3 @ ~ + 1 1 00368592 -dispersed_particles n 1 2 @ ; 1 0 14588646 -dispersed_phase n 1 2 @ ; 1 0 14588646 -dispersing_medium n 1 2 @ ; 1 0 14588797 -dispersing_phase n 1 2 @ ; 1 0 14588797 -dispersion n 3 3 @ ~ + 3 1 07331759 05087297 00368592 -dispersion_medium n 1 2 @ ; 1 0 14588797 -dispiritedness n 1 2 @ + 1 0 07537668 -displaced_fracture n 1 1 @ 1 0 14293207 -displaced_person n 1 1 @ 1 0 10017890 -displacement n 7 3 @ ~ ; 7 3 00197610 07444668 00330984 13467224 13467009 00315830 00209446 -displacement_reaction n 1 2 @ ; 1 0 13467224 -displacement_unit n 1 3 @ ~ #p 1 0 13600822 -display n 6 4 @ ~ %p + 6 3 06879521 00521209 03210940 07213717 06887726 03211117 -display_adapter n 1 2 @ ; 1 0 03211413 -display_adaptor n 1 2 @ ; 1 0 03211413 -display_board n 1 2 @ ~ 1 0 03211616 -display_case n 1 2 @ ~ 1 0 02975212 -display_panel n 1 2 @ ~ 1 0 03211616 -display_window n 1 2 @ #p 1 1 03211789 -displeasure n 1 2 @ + 1 1 07540424 -disposable n 1 1 @ 1 0 03212003 -disposable_income n 1 2 @ ; 1 0 13255562 -disposal n 4 4 @ ~ + ; 4 3 05198622 01135952 00043609 03212114 -disposal_plant n 1 1 @ 1 1 04178668 -disposition n 4 5 @ ~ %p = + 4 2 04623612 00043609 06196584 04942869 -dispossession n 2 5 @ ~ %p + ; 2 1 01194331 05978472 -dispraise n 1 2 @ ~ 1 0 01219893 -disproof n 2 2 @ ~ 2 0 05826469 00155298 -disproportion n 1 2 ! @ 1 0 13898509 -disprover n 1 2 @ + 1 0 10510546 -disputant n 1 3 @ ~ + 1 0 09615465 -disputation n 2 3 @ ~ + 2 0 07242104 07183151 -dispute n 2 3 @ ~ + 2 1 07181935 01170813 -disqualification n 2 3 @ ~ + 2 0 04722574 01078086 -disquiet n 2 2 @ + 2 0 07524760 04904851 -disquietude n 1 2 @ ~ 1 0 07525057 -disquisition n 1 1 @ 1 0 06410070 -disraeli n 1 1 @ 1 0 10937364 -disregard n 2 3 @ ~ + 2 2 05706629 00418615 -disrepair n 1 1 @ 1 1 14560538 -disreputability n 1 3 ! @ + 1 0 04874409 -disreputable_person n 1 1 @ 1 0 10530288 -disreputableness n 1 2 @ + 1 0 04874409 -disrepute n 1 3 ! @ ~ 1 1 14439745 -disrespect n 3 4 ! @ ~ + 3 0 06714976 06207437 04915687 -disrupting_explosive n 1 1 @ 1 0 03212247 -disruption n 4 3 @ ~ + 4 1 00383952 13977366 07367385 00553173 -dissatisfaction n 1 4 ! @ ~ + 1 1 07539511 -dissection n 3 2 @ + 3 2 00387214 05782140 00648931 -dissembler n 1 3 @ ~ + 1 0 10195593 -dissembling n 2 3 @ ~ + 2 0 06759349 00752431 -disseminated_lupus_erythematosus n 1 1 @ 1 0 14221311 -disseminated_multiple_sclerosis n 1 2 @ %p 1 0 14094068 -disseminated_sclerosis n 1 2 @ %p 1 0 14094068 -dissemination n 3 3 @ ~ + 3 1 06253140 05088056 00368592 -disseminator n 1 2 @ + 1 0 10483138 -dissension n 2 3 @ ~ + 2 1 07181546 13982357 -dissent n 3 4 @ ~ + ; 3 2 07209305 07181358 01177033 -dissenter n 1 3 @ ~ + 1 1 10018021 -dissenting_opinion n 1 2 @ ; 1 0 06552320 -dissertation n 1 2 @ + 1 0 06409085 -disservice n 1 2 ! @ 1 1 01209791 -dissidence n 1 2 @ + 1 0 07181208 -dissident n 1 3 @ ~ + 1 0 10018021 -dissident_irish_republican_army n 1 2 @ ; 1 0 08040762 -dissilience n 1 3 @ + ; 1 0 07434782 -dissimilarity n 1 4 ! @ ~ + 1 0 04750164 -dissimilation n 2 3 @ #p + 2 0 13467443 13443787 -dissimilitude n 1 2 ! @ 1 0 04750764 -dissimulation n 1 3 @ ~ + 1 0 00752431 -dissimulator n 1 2 @ ~ 1 0 10195593 -dissipation n 3 3 @ ~ + 3 0 07332148 00748307 00742645 -dissociation n 3 4 @ ~ + ; 3 1 00384802 14416845 13467700 -dissociation_constant n 1 1 @ 1 0 13589957 -dissociative_disorder n 1 2 @ ~ 1 0 14417300 -dissolubility n 1 2 @ + 1 0 05010314 -dissoluteness n 1 3 @ ~ + 1 0 04884817 -dissolution n 5 3 @ ~ + 5 1 13467916 13468094 00748307 00216038 00215314 -dissolution_of_marriage n 1 2 @ ; 1 0 01241216 -dissolve n 1 2 @ + 1 1 06618035 -dissolvent n 1 3 @ ~ + 1 0 15047313 -dissolver n 1 3 @ ~ + 1 0 15047313 -dissolving n 1 2 @ + 1 0 13468094 -dissolving_agent n 1 2 @ ~ 1 1 15047313 -dissonance n 3 4 ! @ ~ + 3 0 13982357 05720248 04984514 -dissuasion n 2 3 ! @ + 2 0 07253948 07245686 -dissyllable n 1 1 @ 1 0 06290539 -dissymmetry n 1 3 @ ~ ; 1 0 05065717 -distaff n 2 3 @ #p + 2 0 14514392 03212406 -distal_muscular_dystrophy n 1 1 @ 1 0 14161515 -distance n 6 4 @ ~ = + 6 5 05084201 08556386 05129565 07505871 15172212 15172423 -distance_vision n 1 1 @ 1 0 05656418 -distaste n 1 1 @ 1 1 07502669 -distastefulness n 2 4 @ ~ = + 2 0 04996571 04780958 -distemper n 5 3 @ ~ + 5 0 14264042 07552087 03212698 03212535 00936901 -distension n 2 3 @ ~ + 2 1 00366317 14063633 -distention n 2 3 @ ~ + 2 0 14063633 00366317 -distich n 1 3 @ ~ %p 1 0 13743605 -distillate n 1 2 @ + 1 0 14836960 -distillation n 2 2 @ + 2 1 13468306 14836960 -distilled_water n 1 1 @ 1 1 14837258 -distiller n 1 1 @ 1 0 10018653 -distillery n 1 4 @ ~ %p + 1 0 03212811 -distillment n 1 2 @ + 1 0 13468306 -distinction n 4 3 @ ~ + 4 4 05748285 14435445 04806655 04749572 -distinctive_feature n 1 2 @ ~ 1 0 05852125 -distinctiveness n 2 3 @ ~ + 2 0 04763925 04750414 -distinctness n 3 5 ! @ ~ = + 3 1 04702688 14414503 04742766 -distinguished_conduct_medal n 1 1 @ 1 0 06708970 -distinguished_flying_cross n 1 1 @ 1 0 06707846 -distinguished_service_cross n 1 1 @ 1 0 06707555 -distinguished_service_medal n 1 1 @ 1 1 06707382 -distinguished_service_order n 1 1 @ 1 0 06709112 -distinguishing_characteristic n 1 2 @ ~ 1 0 05852125 -distomatosis n 1 1 @ 1 0 14265006 -distorted_shape n 1 2 @ ~ 1 0 13867276 -distortion n 6 3 @ ~ + 6 3 07433973 13867276 11420139 11511765 00751529 00073713 -distortionist n 1 2 @ + 1 0 10018747 -distraction n 4 2 @ + 4 1 05684440 05706547 00515414 00200041 -distraint n 1 1 @ 1 0 00085829 -distress n 4 3 @ ~ + 4 2 07496463 14476852 14326072 00085829 -distress_call n 1 2 @ ~ 1 0 06803636 -distress_signal n 1 2 @ ~ 1 0 06803636 -distressfulness n 1 2 @ + 1 0 05037197 -distressingness n 1 2 @ ~ 1 0 04720024 -distributary n 1 2 ! @ 1 0 09267602 -distributed_data_processing n 1 1 @ 1 0 13468542 -distributed_fire n 1 1 @ 1 0 00990843 -distributer n 2 5 @ ~ #p %p + 2 0 10018861 03213014 -distribution n 4 6 ! @ ~ #p + ; 4 4 05729036 05087297 01083077 01112885 -distribution_agreement n 1 1 @ 1 0 06527447 -distribution_channel n 1 1 @ 1 0 01113595 -distribution_cost n 1 1 @ 1 1 13302293 -distribution_free_statistic n 1 3 @ ~ ; 1 0 06022727 -distribution_law n 1 3 @ ~ ; 1 0 05876912 -distribution_list n 1 1 @ 1 0 06490627 -distributive_shock n 1 1 @ 1 0 14067786 -distributor n 4 5 @ ~ #p %p + 4 1 10018861 09784707 08061905 03213014 -distributor_cam n 1 2 @ #p 1 0 03213361 -distributor_cap n 1 2 @ #p 1 0 03213538 -distributor_housing n 1 1 @ 1 0 03213715 -distributor_point n 1 2 @ #p 1 0 03213826 -district n 1 3 @ ~ + 1 1 08552138 -district_attorney n 1 1 @ 1 1 10019072 -district_line n 1 1 @ 1 0 08515817 -district_manager n 1 1 @ 1 1 10019187 -district_of_columbia n 1 3 @ #p %p 1 1 09070487 -distrust n 2 4 ! @ ~ + 2 1 05698791 04895773 -distrustfulness n 1 3 @ ~ + 1 0 04895773 -disturbance n 7 4 @ ~ + ; 7 5 07428450 14403282 13977366 01176335 00333829 14083790 07430211 -disturbance_of_the_peace n 1 1 @ 1 0 00771713 -disturber n 1 1 @ 1 0 10018373 -disulfiram n 1 1 @ 1 0 03214051 -disunion n 1 4 ! @ ~ + 1 0 00385501 -disunity n 1 1 @ 1 0 13982588 -disuse n 1 2 @ ~ 1 0 14423428 -disyllable n 1 1 @ 1 0 06290539 -dit n 1 2 @ #p 1 0 06805826 -dita n 1 2 @ #m 1 0 11770256 -dita_bark n 1 2 @ #m 1 0 11770256 -ditch n 2 3 @ ~ + 2 1 03214253 09267758 -ditch_digger n 1 1 @ 1 0 10019308 -ditch_fern n 1 1 @ 1 0 12953484 -ditch_reed n 1 2 @ #m 1 0 12130937 -ditch_spade n 1 1 @ 1 0 03214450 -ditchmoss n 1 3 @ #m %m 1 0 12614317 -dither n 1 2 @ + 1 0 14403772 -dithered_color n 1 2 @ ; 1 0 04978561 -dithered_colour n 1 2 @ ; 1 0 04978561 -dithering n 1 1 @ 1 0 13468786 -dithyramb n 2 2 @ ; 2 0 07239428 06379094 -dittany n 1 1 @ 1 0 12712626 -dittany_of_crete n 1 2 @ #m 1 0 12853706 -ditto n 1 2 @ + 1 0 06821279 -ditto_mark n 1 1 @ 1 0 06821279 -ditty n 1 1 @ 1 1 07050503 -ditty_bag n 1 1 @ 1 0 03214582 -diuresis n 1 1 @ 1 0 14303249 -diuretic n 1 2 @ ~ 1 0 03214670 -diuretic_drug n 1 2 @ ~ 1 0 03214670 -diuril n 1 2 @ ; 1 0 03022788 -diurnal_parallax n 1 2 @ ~ 1 0 11528939 -diurnal_variation n 1 1 @ 1 1 07444392 -diva n 1 1 @ 1 0 10471732 -divagation n 2 3 @ ~ + 2 0 06600684 00350380 -divan n 4 1 @ 4 1 03214966 08311848 06592576 03215076 -divan_bed n 1 1 @ 1 0 03165096 -divarication n 1 1 @ 1 0 00388959 -dive n 3 3 @ ~ + 3 2 03530803 00442981 00326677 -dive-bombing n 1 2 @ + 1 0 00979180 -dive_bomber n 1 2 @ + 1 0 03215191 -dive_brake n 1 1 @ 1 0 02685855 -diver n 3 4 @ ~ #m + 3 0 10019552 10019406 02049088 -divergence n 4 4 ! @ ~ + 4 1 01004072 07366289 05863302 04749709 -divergency n 2 3 ! @ + 2 0 05863302 01004072 -divergent_strabismus n 1 1 @ 1 0 14557573 -divergent_thinker n 1 1 @ 1 0 10019733 -divergent_thinking n 1 3 ! @ #p 1 0 05797177 -diverging_lens n 1 1 @ 1 0 03215337 -diverseness n 1 4 @ ~ = + 1 0 04751305 -diversification n 2 2 @ + 2 1 00195569 14575180 -diversion n 3 3 @ ~ + 3 3 00426928 00350380 00975270 -diversionary_attack n 1 2 @ ~ 1 1 00975270 -diversionary_landing n 1 1 @ 1 0 00972521 -diversionist n 1 3 @ ~ + 1 0 10544748 -diversity n 2 4 @ ~ = + 2 1 04751305 04735711 -diverticulitis n 1 1 @ 1 0 14341923 -diverticulosis n 1 1 @ 1 0 14032480 -diverticulum n 1 2 @ ~ 1 0 14295829 -divertimento n 1 1 @ 1 1 07042586 -divestiture n 2 3 @ + ; 2 1 06540863 01115017 -divi-divi n 2 4 @ #m #p %p 2 0 12488914 12488709 -divide n 2 3 @ ~ + 2 0 13982692 08679369 -divided_highway n 1 1 @ 1 0 03215508 -dividend n 3 2 @ ~ 3 1 13408023 13732953 13273836 -dividend_warrant n 1 1 @ 1 0 13380667 -divider n 4 3 @ ~ + 4 0 10637635 10019888 03894379 03215749 -dividing_line n 1 2 @ ~ 1 0 05748786 -divina_commedia n 1 1 @ 1 0 06380256 -divination n 3 3 @ ~ + 3 0 06783155 06750154 05776212 -divine n 2 2 @ ~ 2 1 09536363 09928136 -divine_comedy n 1 1 @ 1 0 06380256 -divine_guidance n 1 2 @ ; 1 0 05686690 -divine_law n 1 1 @ 1 1 05871140 -divine_messenger n 1 1 @ 1 0 09540329 -divine_office n 1 2 @ ; 1 0 01033714 -divine_revelation n 1 1 @ 1 0 07213232 -divine_right n 1 1 @ 1 0 05960121 -divine_right_of_kings n 1 1 @ 1 0 05960121 -divine_service n 1 3 @ ~ %p 1 0 01032040 -divine_unity n 1 2 @ ; 1 0 08014860 -diviner n 1 3 @ ~ + 1 0 10020031 -diving n 2 4 @ ~ #p + 2 1 07466415 00442981 -diving_bell n 1 1 @ 1 0 03215930 -diving_board n 1 2 @ ~ 1 1 03216080 -diving_dress n 1 1 @ 1 0 03216402 -diving_duck n 1 2 ! @ 1 0 01847253 -diving_event n 1 2 @ #p 1 0 07466415 -diving_petrel n 1 2 @ #m 1 0 02061853 -diving_suit n 1 1 @ 1 0 03216402 -divining_rod n 1 1 @ 1 0 03216199 -divinity n 4 5 @ ~ #m + - 4 2 09505418 04854976 07605693 06182144 -divinity_fudge n 1 1 @ 1 0 07605693 -divinyl_ether n 1 2 @ ~ 1 0 03299929 -divisibility n 1 2 @ ~ 1 0 04705013 -division n 12 8 @ ~ #m #p %m %p + ; 12 5 08213205 05867413 00385791 08220714 07181842 08239808 08221348 08220891 08219330 08219226 00870912 00397953 -division_anthophyta n 1 3 @ #m %m 1 0 11664929 -division_archaebacteria n 1 3 @ #m %m 1 0 01347431 -division_bryophyta n 1 3 @ #m %m 1 0 11536778 -division_chlorophyta n 1 3 @ #m %m 1 0 01407065 -division_chrysophyta n 1 3 @ #m %m 1 0 01399772 -division_cyanophyta n 1 3 @ #m %m 1 0 01357707 -division_cynodontia n 1 3 @ #m %m 1 0 01720496 -division_dicynodontia n 1 3 @ #m %m 1 0 01721010 -division_eubacteria n 1 3 @ #m %m 1 0 01354869 -division_euglenophyta n 1 3 @ #m %m 1 0 01406092 -division_eumycota n 1 3 @ #m %m 1 0 12994979 -division_gymnomycota n 1 3 @ #m %m 1 0 12975207 -division_gymnospermophyta n 1 3 @ #m %m 1 0 11595312 -division_heterokontophyta n 1 2 @ #m 1 0 01399529 -division_lichenes n 1 3 @ #m %m 1 0 12986447 -division_magnoliophyta n 1 3 @ #m %m 1 0 11664929 -division_myxomycota n 1 3 @ #m %m 1 0 12975207 -division_phaeophyta n 1 2 @ %m 1 0 01402381 -division_protista n 1 3 @ #m %m 1 0 01387208 -division_pteridophyta n 1 3 @ #m %m 1 0 11544769 -division_rhodophyta n 1 3 @ #m %m 1 0 01413551 -division_schizophyta n 1 3 @ #m %m 1 0 01357967 -division_spermatophyta n 1 3 @ #m %m 1 0 11551211 -division_tracheophyta n 1 3 @ #m %m 1 0 11534434 -divisor n 2 2 @ ~ 2 0 13733402 13733167 -divorce n 1 3 @ + ; 1 1 01201271 -divorce_court n 1 1 @ 1 0 08331960 -divorce_lawyer n 1 2 @ ; 1 0 10020670 -divorced_man n 1 1 @ 1 0 10144338 -divorcee n 1 3 @ ~ + 1 0 10020366 -divorcement n 1 3 @ + ; 1 0 01201271 -divot n 2 2 @ ; 2 0 09268007 09267854 -divulgement n 1 2 @ + 1 0 07214267 -divulgence n 1 2 @ + 1 0 07214267 -divvy n 1 2 @ ; 1 0 13408641 -diwan n 3 1 @ 3 0 08311848 06592576 03215076 -dix n 1 1 @ 1 0 10937611 -dixie n 2 5 @ %m %p = ; 2 0 09050244 03216562 -dixie_cup n 1 1 @ 1 0 03216710 -dixiecrats n 1 1 @ 1 0 08263870 -dixieland n 1 4 @ %m %p = 1 0 09050244 -dizygotic_twin n 1 1 @ 1 0 10109197 -dizziness n 1 2 @ + 1 0 14372513 -dizzy_gillespie n 1 1 @ 1 0 11000012 -dj n 1 2 @ + 1 0 10017272 -djakarta n 1 2 @ #p 1 0 08909719 -djanet n 1 2 @ #p 1 0 08707035 -djibouti n 2 6 @ #m #p %m %p + 2 0 08762823 08762495 -djibouti_franc n 1 1 @ 1 0 13677692 -djiboutian n 1 3 @ #m + 1 0 09700125 -djinn n 1 3 @ ~ ; 1 0 09544433 -djinni n 1 3 @ ~ ; 1 0 09544433 -djinny n 1 3 @ ~ ; 1 0 09544433 -dkg n 1 3 @ #p %p 1 0 13724350 -dkl n 1 3 @ #p %p 1 0 13624509 -dkm n 1 3 @ #p %p 1 0 13659419 -dl n 1 3 @ #p %p 1 0 13624026 -dle n 1 1 @ 1 0 14220735 -dm n 2 4 @ ~ #p %p 2 0 14118138 13658998 -dmd n 1 1 @ 1 0 06702888 -dmitri_dmitrievich_shostakovich n 1 1 @ 1 0 11299030 -dmitri_ivanovich_mendeleev n 1 1 @ 1 0 11173475 -dmitri_ivanovich_mendeleyev n 1 1 @ 1 0 11173475 -dmitri_mendeleev n 1 1 @ 1 0 11173475 -dmitri_mendeleyev n 1 1 @ 1 0 11173475 -dmitri_shostakovich n 1 1 @ 1 0 11299030 -dmus n 1 1 @ 1 0 06703420 -dmz n 1 1 @ 1 0 08689947 -dna n 1 5 @ ~ %s %p ; 1 0 14830364 -dna_chip n 1 1 @ 1 0 03433247 -dna_fingerprint n 1 1 @ 1 0 06643883 -dna_polymerase n 1 1 @ 1 0 14984584 -dneprodzerzhinsk n 1 1 @ 1 0 09016539 -dnieper n 1 2 @ #p 1 0 09268236 -dnieper_river n 1 2 @ #p 1 0 09268236 -dnipropetrovsk n 1 1 @ 1 0 09016698 -do n 3 1 @ 3 0 07448038 06868309 06703733 -do-gooder n 1 2 @ + 1 0 10191613 -do-nothing n 1 3 @ ~ + 1 0 10197967 -do-si-do n 1 2 @ #p 1 0 00540701 -dobbin n 1 1 @ 1 0 02387254 -doberman n 1 1 @ 1 0 02107142 -doberman_pinscher n 1 1 @ 1 0 02107142 -dobra n 1 2 @ %p 1 0 13675591 -dobrich n 1 1 @ 1 0 08714624 -dobson n 2 2 @ #m 2 0 02266269 02266050 -dobson_fly n 1 2 @ #m 1 0 02266050 -dobsonfly n 1 2 @ #m 1 0 02266050 -doc n 2 4 @ ~ #m %p 2 0 10020890 08129268 -docent n 1 1 @ 1 0 10020807 -docetism n 1 1 @ 1 0 06222731 -docility n 1 2 @ + 1 0 04905697 -dock n 7 7 @ ~ #m #p %p + ; 7 1 03217191 12603959 03933529 03217333 03216828 02158972 02158066 -dock-walloper n 1 1 @ 1 0 10655169 -dock_worker n 1 1 @ 1 0 10655169 -dockage n 3 4 @ ~ #p + 3 0 13321230 03216828 00052146 -docker n 1 2 @ + 1 0 10655169 -docket n 2 4 @ ~ + ; 2 0 06485593 05910940 -dockhand n 1 1 @ 1 0 10655169 -docking n 1 2 @ + 1 0 00052146 -docking_facility n 1 3 @ ~ #p 1 0 03216828 -docking_fee n 1 1 @ 1 0 13321230 -dockside n 1 1 @ 1 0 08649984 -dockworker n 1 1 @ 1 0 10655169 -dockyard n 1 1 @ 1 0 08640392 -docosahexaenoic_acid n 1 1 @ 1 0 14837900 -doctor n 4 5 @ ~ #m + ; 4 3 10020890 10022111 00432356 10021892 -doctor's_bill n 1 1 @ 1 0 06517547 -doctor's_degree n 1 2 @ ~ 1 0 06702458 -doctor-fish n 1 2 @ #m 1 0 02621577 -doctor-patient_relation n 1 2 @ %m 1 0 13837840 -doctor_of_arts n 2 1 @ 2 0 06705306 06703834 -doctor_of_dental_medicine n 1 1 @ 1 0 06702888 -doctor_of_dental_surgery n 1 1 @ 1 0 06703002 -doctor_of_divinity n 1 1 @ 1 0 06703114 -doctor_of_education n 1 1 @ 1 1 06703213 -doctor_of_fine_arts n 1 1 @ 1 0 06705398 -doctor_of_humane_letters n 1 1 @ 1 0 06705495 -doctor_of_humanities n 1 1 @ 1 0 06705595 -doctor_of_laws n 1 1 @ 1 0 06705698 -doctor_of_medicine n 1 1 @ 1 0 06703321 -doctor_of_music n 1 1 @ 1 0 06703420 -doctor_of_musical_arts n 1 1 @ 1 0 06703522 -doctor_of_optometry n 1 1 @ 1 0 06703632 -doctor_of_osteopathy n 1 1 @ 1 0 06703733 -doctor_of_philosophy n 1 2 @ ~ 1 1 06703953 -doctor_of_public_health n 1 1 @ 1 0 06704366 -doctor_of_sacred_theology n 1 1 @ 1 0 06704582 -doctor_of_science n 1 1 @ 1 0 06705787 -doctor_of_the_church n 1 3 @ ~ ; 1 0 10022111 -doctor_of_theology n 1 1 @ 1 0 06704482 -doctorate n 1 3 @ ~ + 1 1 06702458 -doctorfish n 1 2 @ #m 1 0 02621577 -doctorow n 1 1 @ 1 0 10937882 -doctorspeak n 1 1 @ 1 0 07069002 -doctrinaire n 1 2 @ + 1 0 10023656 -doctrine n 1 3 @ ~ + 1 1 05943300 -doctrine_of_analogy n 1 2 ! @ 1 0 05942579 -docudrama n 1 1 @ 1 0 06616806 -document n 4 5 @ ~ %p + ; 4 2 06470073 03217458 13403331 06510977 -documentary n 1 2 @ + 1 1 06616806 -documentary_film n 1 1 @ 1 0 06616806 -documentation n 3 2 @ + 3 0 06650431 06588326 00154433 -dod n 1 2 @ %p 1 0 08131530 -dodder n 1 3 @ ~ #m 1 0 12825497 -dodderer n 1 2 @ + 1 0 10022645 -doddle n 1 2 @ ; 1 0 00575657 -dodecagon n 1 1 @ 1 0 13882883 -dodecahedron n 1 1 @ 1 0 13915784 -dodecanese n 1 3 @ #p %p 1 0 08783286 -dodecanoic_acid n 1 1 @ 1 0 14930476 -dodge n 3 3 @ ~ + 3 2 05905802 00059895 06756680 -dodge_city n 1 2 @ #p 1 0 09087996 -dodgem n 1 1 @ 1 0 02918964 -dodger n 2 2 @ + 2 0 10022759 07688757 -dodging n 3 3 @ ~ + 3 1 00740712 06756680 00203753 -dodgson n 1 1 @ 1 0 10884061 -dodo n 2 3 @ #m ; 2 0 10022908 01811243 -dodoma n 1 2 @ #p 1 0 09035153 -dodonaea n 1 3 @ #m %m 1 0 12741079 -doe n 2 2 @ %p 2 0 08132955 01888411 -doei n 1 3 @ #m #p 1 0 08133189 -doer n 1 3 @ ~ + 1 0 09767197 -doeskin n 2 1 @ 2 0 14762572 03217653 -dog n 7 5 @ ~ #m #p %p 7 1 02084071 10114209 10023039 09886220 07676602 03901548 02710044 -dog's-tooth_check n 1 1 @ 1 0 03543945 -dog's-tooth_violet n 1 3 @ ~ #m 1 0 12450344 -dog's_breakfast n 1 2 @ ; 1 0 14409718 -dog's_dinner n 1 2 @ ; 1 0 14409718 -dog's_mercury n 1 2 @ #m 1 0 12924284 -dog-day_cicada n 1 2 @ #m 1 0 02257003 -dog-ear n 1 2 @ #p 1 0 06795168 -dog-iron n 1 1 @ 1 0 02710044 -dog_bent n 1 1 @ 1 0 12107002 -dog_biscuit n 1 1 @ 1 0 07635746 -dog_bite n 1 1 @ 1 0 14287567 -dog_breeding n 1 1 @ 1 0 00915574 -dog_catcher n 1 1 @ 1 0 10023129 -dog_collar n 3 1 @ 3 0 03217814 03041964 03024882 -dog_days n 1 2 @ #p 1 0 15237567 -dog_do n 1 1 @ 1 0 09268480 -dog_fennel n 2 2 @ #m 2 0 11968519 11923174 -dog_flea n 1 2 @ #m 1 0 02187150 -dog_food n 1 1 @ 1 0 07805966 -dog_grass n 1 1 @ 1 0 12105578 -dog_hobble n 1 2 @ #m 1 0 12239880 -dog_hook n 1 2 @ ~ 1 0 03903133 -dog_house n 1 1 @ 1 0 03610524 -dog_in_the_manger n 1 1 @ 1 0 10023506 -dog_laurel n 1 2 @ #m 1 0 12239880 -dog_mercury n 1 2 @ #m 1 0 12924284 -dog_paddle n 1 1 @ 1 0 00570572 -dog_pound n 1 1 @ 1 0 03993703 -dog_racing n 1 1 @ 1 0 07459868 -dog_rose n 1 1 @ 1 0 12621110 -dog_shit n 1 1 @ 1 0 09268480 -dog_show n 1 1 @ 1 0 00519492 -dog_sled n 1 2 @ ; 1 0 03218198 -dog_sleigh n 1 2 @ ; 1 0 03218198 -dog_star n 1 2 @ #m 1 0 09435965 -dog_stinkhorn n 1 2 @ #m 1 0 13041312 -dog_tag n 2 1 @ 2 0 07272807 07272694 -dog_turd n 1 1 @ 1 0 09268480 -dog_violet n 1 1 @ 1 0 12388858 -dog_wrench n 1 1 @ 1 0 03218446 -dogbane n 1 3 @ ~ #m 1 0 11767354 -dogbane_family n 1 3 @ #m %m 1 0 11766609 -dogcart n 1 1 @ 1 0 03217739 -doge n 1 1 @ 1 0 10023264 -dogfight n 4 2 @ + 4 0 07458212 01172441 00974224 00971802 -dogfighter n 1 2 @ + 1 0 10023381 -dogfish n 2 3 @ ~ #m 2 0 02639087 01491874 -doggedness n 1 2 @ + 1 0 04864515 -doggerel n 1 1 @ 1 1 06379253 -doggerel_verse n 1 1 @ 1 0 06379253 -doggie n 1 1 @ 1 0 02084732 -doggie_bag n 1 1 @ 1 0 03217889 -doggy n 1 1 @ 1 0 02084732 -doggy_bag n 1 1 @ 1 0 03217889 -doggy_do n 1 1 @ 1 0 09268480 -doghouse n 2 1 @ 2 1 03610524 06200929 -dogie n 1 1 @ 1 0 02403920 -dogleg n 2 1 @ 2 0 13892142 03218100 -dogma n 2 3 @ ~ + 2 1 06790042 05960464 -dogmatism n 1 2 @ + 1 0 06206210 -dogmatist n 1 2 @ + 1 0 10023656 -dogs-tooth_check n 1 1 @ 1 0 03543945 -dogsbody n 1 1 @ 1 0 10023885 -dogshit n 1 2 @ ; 1 0 06611376 -dogsled n 1 3 @ + ; 1 0 03218198 -dogstooth_check n 1 1 @ 1 0 03543945 -dogtooth n 3 3 @ ~ #m 3 0 12450344 05307091 03218334 -dogtooth_violet n 1 3 @ ~ #m 1 0 12450344 -dogtrot n 1 1 @ 1 0 00294366 -dogwatch n 1 1 @ 1 0 15292617 -dogwood n 2 5 @ ~ #m #s %s 2 1 12946849 12947171 -dogwood_family n 1 3 @ #m %m 1 0 12946088 -dogwood_tree n 1 4 @ ~ #m %s 1 0 12946849 -dogy n 1 1 @ 1 0 02403920 -doh n 1 1 @ 1 0 06868309 -doha n 1 2 @ #p 1 0 08987262 -doi n 1 2 @ %p 1 0 08139000 -doily n 1 1 @ 1 0 03219010 -doing_business_as n 1 2 @ ; 1 0 06334512 -doings n 1 2 @ ~ 1 0 01220984 -doj n 1 3 @ %p ; 1 0 08135342 -dojc n 1 2 @ ; 1 0 08343324 -dol n 2 2 @ %p 2 0 13710986 08137495 -dolby n 1 1 @ 1 0 10938019 -dolce_far_niente n 1 1 @ 1 0 01065607 -doldrums n 2 2 @ ; 2 0 14012667 11447691 -dole n 2 1 @ 2 0 13285855 01088304 -dolefulness n 1 2 @ + 1 0 07532832 -dolichocephalic n 1 1 @ 1 0 10024025 -dolichocephalism n 1 1 @ 1 0 05212493 -dolichocephaly n 1 1 @ 1 0 05212493 -dolichonyx n 1 3 @ #m %m 1 0 01573775 -dolichonyx_oryzivorus n 1 2 @ #m 1 0 01573898 -dolichos n 1 2 @ #m 1 0 12527391 -dolichos_biflorus n 1 2 @ #m 1 0 12547872 -dolichos_lablab n 1 2 @ #m 1 0 12537569 -dolichos_lignosus n 1 2 @ #m 1 0 12527081 -dolichotis n 1 3 @ #m %m 1 0 02364989 -dolichotis_patagonum n 1 2 @ #m 1 0 02365108 -doliolidae n 1 3 @ #m %m 1 0 01469886 -doliolum n 1 2 @ #m 1 0 01470145 -doll n 2 2 @ ~ 2 1 03219135 09989045 -doll's_eyes n 1 1 @ 1 0 11724363 -doll's_house n 2 1 @ 2 0 03219483 03219362 -dollar n 4 4 @ ~ %p ; 4 2 13661273 13395897 13391967 06821581 -dollar_bill n 1 2 @ ; 1 1 13395897 -dollar_diplomacy n 1 1 @ 1 0 07148828 -dollar_mark n 2 1 @ 2 0 06821581 06821422 -dollar_sign n 2 1 @ 2 1 06821581 06821422 -dollar_volume n 1 1 @ 1 1 05112308 -dollarfish n 2 3 @ ~ #m 2 0 02633422 02578233 -dollhouse n 2 1 @ 2 0 03219483 03219362 -dollop n 1 1 @ 1 0 13772020 -dolly n 3 2 @ ~ 3 0 03219732 03219612 03219135 -dolman n 2 2 @ %p 2 0 03219966 03219859 -dolman_jacket n 1 2 @ %p 1 0 03219966 -dolman_sleeve n 1 2 @ #p 1 0 03220095 -dolmas n 1 1 @ 1 0 07866409 -dolmen n 1 1 @ 1 0 03220237 -dolobid n 1 3 @ %s ; 1 0 03195118 -dolomite n 2 3 @ %s + 2 0 14838055 14673747 -dolomite_alps n 1 2 @ #p 1 0 09268592 -dolophine_hydrochloride n 1 1 @ 1 0 03754014 -dolor n 1 3 @ + ; 1 0 07535532 -dolour n 1 2 @ ; 1 0 07535532 -dolphin n 2 5 @ ~ #m %p ; 2 0 02581957 02068974 -dolphin_kick n 1 2 @ #p 1 0 00574790 -dolphin_oil n 1 1 @ 1 0 14996709 -dolphin_striker n 1 1 @ 1 0 03220401 -dolphinfish n 2 6 @ ~ #m #p %p ; 2 0 07778938 02581957 -dolt n 1 2 @ ~ 1 0 10667187 -dom_pedro n 1 1 @ 1 0 07912093 -domain n 5 4 @ ~ #p ; 5 2 14514039 08556491 08000118 07965937 05999266 -domain_name n 1 2 @ ; 1 0 06845303 -domain_of_a_function n 1 2 @ ; 1 0 08000118 -domatium n 1 1 @ 1 0 11533999 -dombeya n 1 2 @ #m 1 0 12197901 -dome n 4 2 @ ~ 4 0 13872072 05539454 03220692 03220513 -domed_stadium n 1 1 @ 1 0 03220692 -domenikos_theotocopoulos n 1 1 @ 1 0 10956377 -domesday_book n 1 1 @ 1 0 06503386 -domestic n 1 2 @ ~ 1 0 10024119 -domestic_animal n 1 2 @ ~ 1 1 01317541 -domestic_ass n 1 3 @ ~ #m 1 0 02389559 -domestic_carp n 1 4 @ ~ #m %p 1 0 01439808 -domestic_cat n 1 3 @ ~ #m 1 0 02121808 -domestic_dog n 1 4 @ ~ #m %p 1 0 02084071 -domestic_flight n 1 2 ! @ 1 0 00301728 -domestic_fowl n 1 4 @ ~ #m %p 1 0 01789740 -domestic_goat n 1 2 @ ~ 1 0 02417070 -domestic_help n 1 2 @ ~ 1 0 10024119 -domestic_llama n 1 2 @ #m 1 0 02437971 -domestic_partner n 1 2 @ ~ 1 0 10024362 -domestic_pigeon n 1 3 @ ~ %p 1 0 01814370 -domestic_prelate n 1 2 @ ; 1 0 10024621 -domestic_relations_court n 1 1 @ 1 0 08332090 -domestic_science n 1 1 @ 1 0 06149344 -domestic_sheep n 1 4 @ ~ #m %p 1 0 02413131 -domestic_silkworm_moth n 1 2 @ #m 1 0 02300554 -domestic_terrorism n 1 2 @ ; 1 0 00763787 -domestic_violence n 1 1 @ 1 0 00965718 -domesticated_animal n 1 2 @ ~ 1 0 01317541 -domesticated_silkworm_moth n 1 2 @ #m 1 0 02300554 -domestication n 3 2 @ = 3 0 13468954 04905842 00194257 -domesticity n 2 3 @ = + 2 0 05209113 00409075 -domicile n 2 5 @ ~ %p + ; 2 0 08559155 03259505 -domiciliation n 1 2 @ + 1 0 03195485 -dominance n 4 4 @ ~ + ; 4 2 04998417 14441825 11413800 05196582 -dominant n 2 3 @ + ; 2 0 06858266 05438130 -dominant_allele n 1 1 @ 1 0 05438130 -dominant_gene n 1 1 @ 1 0 05437600 -domination n 2 3 @ ~ + 2 2 01128390 14442530 -dominatrix n 1 1 @ 1 0 10024784 -domine n 1 1 @ 1 0 10025060 -dominee n 1 1 @ 1 0 10025060 -domineeringness n 1 2 @ + 1 0 04888788 -domingo n 1 1 @ 1 0 10938199 -domingo_de_guzman n 1 2 @ ; 1 0 10938363 -dominic n 1 2 @ ; 1 0 10938363 -dominica n 2 4 @ #m #p %p 2 0 08763193 08763010 -dominican n 2 3 @ ~ #m 2 0 10778345 10024937 -dominican_dollar n 1 1 @ 1 0 13673080 -dominican_mahogany n 1 2 @ #m 1 0 12699922 -dominican_monetary_unit n 1 2 @ ~ 1 0 13692151 -dominican_order n 1 2 @ %m 1 0 08149160 -dominican_peso n 1 2 @ %p 1 0 13692278 -dominican_republic n 1 5 @ #m #p %m %p 1 1 08752021 -dominick n 1 1 @ 1 0 01793565 -dominicus n 1 2 @ #p 1 0 15163797 -dominie n 1 1 @ 1 0 10025060 -dominion n 3 3 @ ~ + 3 1 14442933 08552138 08167249 -dominion_day n 1 3 @ #p ; 1 0 15200314 -dominique n 1 1 @ 1 0 01793565 -domino n 4 3 @ ~ #p 4 0 10938640 03221205 03221059 03220802 -domino_effect n 1 2 @ ; 1 0 11414041 -domino_theory n 1 1 @ 1 0 06217464 -dominoes n 1 1 @ 1 0 00499477 -dominos n 1 1 @ 1 0 00499477 -dominus n 1 1 @ 1 0 10025060 -domitian n 1 1 @ 1 0 10938821 -domoic_acid n 1 1 @ 1 0 14591901 -don n 6 3 @ #p ; 6 1 10025195 10464542 10025295 09508975 09268778 06340395 -don't-know n 1 2 @ ; 1 0 10026367 -don_budge n 1 1 @ 1 0 10870440 -don_juan n 2 2 @ ; 2 0 10939475 10025487 -don_luchino_visconti_conte_di_modrone n 1 1 @ 1 0 11367581 -don_marquis n 1 1 @ 1 0 11158364 -don_quixote n 2 1 @ 2 1 09598370 10026261 -don_river n 1 2 @ #p 1 0 09268778 -dona n 1 2 @ ; 1 0 06340563 -donald_arthur_glaser n 1 1 @ 1 0 11001848 -donald_barthelme n 1 1 @ 1 0 10836413 -donald_duck n 1 1 @ 1 0 02452225 -donald_glaser n 1 1 @ 1 0 11001848 -donald_robert_perry_marquis n 1 1 @ 1 0 11158364 -donar n 1 1 @ 1 0 09585650 -donatello n 1 1 @ 1 0 10939040 -donation n 2 3 @ ~ + 2 2 13270038 01089778 -donatism n 1 2 @ + 1 0 06228086 -donatist n 1 2 @ + 1 0 10025391 -donato_bramante n 1 1 @ 1 0 10862507 -donato_d'agnolo_bramante n 1 1 @ 1 0 10862507 -donato_di_betto_bardi n 1 1 @ 1 0 10939040 -donatus n 1 1 @ 1 0 10939187 -donbas n 1 2 @ #p 1 0 09016232 -donbass n 1 2 @ #p 1 0 09016232 -donee n 1 2 @ ~ 1 0 09850121 -donets_basin n 1 2 @ #p 1 0 09016232 -donetsk n 1 2 @ #p 1 0 09016099 -donetske n 1 2 @ #p 1 0 09016099 -dong n 1 2 @ %p 1 0 13674890 -dongle n 1 2 @ ; 1 0 03221351 -donizetti n 1 1 @ 1 0 10939360 -donjon n 1 3 @ ~ #p 1 0 03610098 -donkey n 2 3 @ ~ #m 2 0 06881360 02389559 -donkey_boiler n 1 2 @ ; 1 0 02762725 -donkey_cart n 1 1 @ 1 0 03981924 -donkey_engine n 2 2 @ ; 2 0 04373428 02762909 -donkey_jacket n 1 1 @ 1 0 03221540 -donkey_pump n 1 1 @ 1 0 02763083 -donkeywork n 1 1 @ 1 0 00621476 -donkin n 1 1 @ 1 0 10939630 -donna n 1 2 @ ; 1 0 10025635 -donne n 1 2 @ + 1 0 10939856 -donner_pass n 1 2 @ #p 1 0 09268927 -donor n 2 3 @ ~ ; 2 1 10025730 10026058 -donor_card n 1 1 @ 1 0 06477645 -donut n 1 2 @ ~ 1 0 07639069 -doo-wop n 1 1 @ 1 0 07061677 -doob n 1 2 @ #m 1 0 12115748 -doodad n 1 1 @ 1 0 03218545 -doodia n 2 3 @ #m %m 2 0 13185658 13185436 -doodle n 1 2 @ + 1 0 04155310 -doodlebug n 3 2 @ #m 3 0 03221643 02929923 02264232 -doodly-squat n 1 1 @ 1 0 13773047 -doofus n 1 2 @ ; 1 0 10013114 -doohickey n 1 1 @ 1 0 03218545 -doojigger n 1 1 @ 1 0 03218545 -doolittle n 1 1 @ 1 0 10940053 -doom n 1 2 @ + 1 1 07334206 -doomed n 1 2 @ + 1 1 07946694 -doomsday n 2 2 @ ; 2 0 15171307 07334206 -doomsday_book n 1 1 @ 1 0 06503386 -door n 5 4 @ ~ #p %p 5 3 03221720 03224032 05180881 03222318 03222176 -door_guard n 1 2 @ ~ 1 0 10026553 -door_latch n 1 1 @ 1 0 03645011 -door_prize n 1 1 @ 1 0 13268484 -doorbell n 1 2 @ ~ 1 1 03222516 -doorcase n 1 3 @ #p %p 1 0 03222722 -doorframe n 1 3 @ #p %p 1 0 03222722 -doorhandle n 1 3 @ #p ; 1 1 03222959 -doorjamb n 1 2 @ #p 1 0 03222857 -doorkeeper n 3 2 @ ~ 3 0 10742111 10026763 10026553 -doorknob n 1 3 @ #p ; 1 1 03222959 -doorknocker n 1 2 @ #p 1 0 03626760 -doorlock n 1 3 @ ~ #p 1 0 03223162 -doorman n 1 2 @ ~ 1 1 10026553 -doormat n 2 2 @ ~ 2 0 10771636 03223299 -doornail n 1 1 @ 1 0 03223441 -doorplate n 1 1 @ 1 0 03223553 -doorpost n 1 2 @ #p 1 0 03222857 -doorsill n 1 2 @ #p 1 0 03223686 -doorstep n 1 2 @ #p 1 0 03223686 -doorstop n 1 1 @ 1 0 03223923 -doorstopper n 1 1 @ 1 0 03223923 -doorway n 1 4 @ ~ #p %p 1 1 03224032 -dooryard n 1 1 @ 1 1 03224387 -dopa n 1 2 @ ~ 1 0 14604959 -dopamine n 1 1 @ 1 0 14838217 -dopastat n 1 2 @ ; 1 0 14838217 -dope n 4 5 @ ~ %s + ; 4 1 03990834 10039391 07927931 06636113 -dope_sheet n 1 1 @ 1 0 06596025 -doppelganger n 1 1 @ 1 0 09487692 -doppelzentner n 1 3 @ #p %p 1 0 13725271 -doppler n 1 1 @ 1 0 10940315 -doppler_effect n 1 1 @ 1 1 11513179 -doppler_radar n 1 1 @ 1 0 03224490 -doppler_shift n 1 1 @ 1 0 11513179 -dorado n 1 1 @ 1 0 09269174 -dorbeetle n 1 1 @ 1 0 02172761 -dorian n 2 1 @ 2 0 09710886 08160808 -dorian_order n 1 1 @ 1 0 04698998 -doric n 1 1 @ 1 0 06978068 -doric_dialect n 1 1 @ 1 0 06978068 -doric_order n 1 1 @ 1 0 04698998 -doriden n 1 2 @ ; 1 0 03441778 -doris n 2 3 @ #p ; 2 0 09559071 08783444 -doris_lessing n 1 1 @ 1 0 11129478 -doris_may_lessing n 1 1 @ 1 0 11129478 -dork n 1 2 @ ~ 1 0 10221040 -dorking n 1 1 @ 1 0 01790171 -dorm n 1 2 @ ~ 1 0 03224893 -dorm_room n 1 1 @ 1 0 03225108 -dormancy n 2 4 @ ~ = + 2 0 14011811 01064863 -dormant_account n 1 1 @ 1 0 13364602 -dormer n 1 1 @ 1 0 03224603 -dormer_window n 2 2 @ ~ 2 0 03224753 03224603 -dormition n 1 2 @ #p 1 0 15194194 -dormitory n 2 2 @ ~ 2 1 03224893 03225108 -dormitory_room n 1 1 @ 1 0 03225108 -dormouse n 1 3 @ ~ #m 1 0 02352591 -doronicum n 1 3 @ #m %m 1 0 11961686 -doroteo_arango n 1 1 @ 1 0 11366405 -dorothea_dix n 1 1 @ 1 0 10937611 -dorothea_lange n 1 1 @ 1 0 11116466 -dorothea_lynde_dix n 1 1 @ 1 0 10937611 -dorotheanthus n 1 3 @ #m %m 1 0 11819751 -dorotheanthus_bellidiformis n 1 2 @ #m 1 0 11819912 -dorothy_dix n 1 1 @ 1 0 11000469 -dorothy_hodgkin n 1 1 @ 1 0 11053817 -dorothy_l._sayers n 1 1 @ 1 0 11283682 -dorothy_leigh_sayers n 1 1 @ 1 0 11283682 -dorothy_mary_crowfoot_hodgkin n 1 1 @ 1 0 11053817 -dorothy_parker n 1 1 @ 1 0 11222759 -dorothy_rothschild_parker n 1 1 @ 1 0 11222759 -dorothy_sayers n 1 1 @ 1 0 11283682 -dorsal_fin n 1 1 @ 1 0 02466400 -dorsal_horn n 1 2 @ #p 1 0 05365633 -dorsal_root n 1 2 @ #p 1 0 05365633 -dorsal_scapular_vein n 1 1 @ 1 0 05365420 -dorsal_vertebra n 1 2 @ #p 1 0 05589132 -dorsiflexion n 1 1 @ 1 0 00405892 -dorsum n 2 4 @ #p %p + 2 0 05558717 05557500 -dortmund n 1 3 @ #m #p 1 0 08770718 -dory n 3 4 @ ~ #m %p 3 0 03199901 02557749 01452798 -dorylinae n 1 3 @ #m %m 1 0 02220393 -doryopteris n 1 3 @ #m %m 1 0 13210827 -doryopteris_pedata n 1 2 @ #m 1 0 13211020 -dos n 2 3 @ ~ %p 2 0 08137738 06568422 -dos_passos n 1 1 @ 1 0 10940474 -dosage n 2 3 @ ~ + 2 1 13772106 03225238 -dose n 4 3 @ ~ + 4 2 03225238 13772106 14133159 02675657 -dose_rate n 1 1 @ 1 0 15277358 -dosemeter n 1 1 @ 1 0 03225458 -dosimeter n 1 1 @ 1 0 03225458 -dosimetry n 1 1 @ 1 0 01002165 -dossal n 1 1 @ 1 0 03225616 -dossel n 1 1 @ 1 0 03225616 -dosser n 1 2 @ + 1 0 10026976 -dosshouse n 1 1 @ 1 0 03367321 -dossier n 1 1 @ 1 0 06503551 -dostoevski n 1 2 @ + 1 0 10940669 -dostoevsky n 1 1 @ 1 0 10940669 -dostoyevsky n 1 2 @ + 1 0 10940669 -dot n 4 4 @ #p %p + 4 1 13911872 08143653 06805826 02675657 -dot-com n 1 2 @ + 1 0 08002384 -dot_com n 1 1 @ 1 0 08002384 -dot_com_company n 1 1 @ 1 0 08002384 -dot_matrix n 1 1 @ 1 0 08267956 -dot_matrix_printer n 1 2 @ ~ 1 0 03225777 -dot_printer n 1 2 @ ~ 1 0 03225777 -dot_product n 1 1 @ 1 0 05864884 -dotage n 1 1 @ 1 0 15154190 -dotard n 1 2 @ + 1 0 10027105 -dotrel n 1 2 @ #m 1 0 02024185 -dotted_gayfeather n 1 1 @ 1 0 11991549 -dotted_line n 1 1 @ 1 0 06800344 -dotterel n 1 2 @ #m 1 0 02024185 -dottle n 1 1 @ 1 0 14838539 -douala n 1 2 @ #p 1 0 08717629 -douay-rheims_bible n 1 1 @ 1 0 06448868 -douay-rheims_version n 1 1 @ 1 0 06448868 -douay_bible n 1 1 @ 1 0 06448868 -douay_version n 1 1 @ 1 0 06448868 -double n 5 4 @ ~ #p + 5 1 00132756 10666846 10027246 05860200 00803394 -double-bitted_ax n 1 1 @ 1 0 03226090 -double-bitted_axe n 1 1 @ 1 0 03226090 -double-blind_experiment n 1 1 @ 1 0 00178177 -double-blind_procedure n 1 1 @ 1 0 00178177 -double-blind_study n 1 1 @ 1 0 00178177 -double-bogey n 1 3 @ + ; 1 0 13595699 -double-breasted_jacket n 1 2 @ #p 1 0 03226375 -double-breasted_suit n 1 2 @ %p 1 0 03226538 -double-crosser n 1 3 @ ~ + 1 1 10027590 -double-crossing n 1 2 @ + 1 1 00749991 -double-dealer n 1 2 @ ~ 1 0 10027590 -double-dealing n 1 2 @ + 1 0 00753240 -double-decker n 1 5 @ ~ #m %p - 1 0 02924116 -double-entry_bookkeeping n 1 1 @ 1 0 00619578 -double-hung_window n 1 2 @ %p 1 0 03227184 -double-magnum n 1 1 @ 1 0 03595409 -double-prop n 1 1 @ 1 0 03227505 -double-propeller_plane n 1 1 @ 1 0 03227505 -double-reed_instrument n 1 3 @ ~ %p 1 0 03228016 -double-spacing n 1 1 @ 1 0 06402770 -double-u n 1 2 @ #m 1 0 06833544 -double_agent n 1 1 @ 1 0 10027476 -double_bar n 1 1 @ 1 0 06864900 -double_bass n 1 1 @ 1 1 02803934 -double_bassoon n 1 1 @ 1 0 03096439 -double_bed n 1 1 @ 1 0 03225988 -double_bind n 1 2 @ ; 1 0 05686272 -double_blind n 1 1 @ 1 0 00793844 -double_boiler n 1 1 @ 1 0 03226254 -double_bond n 1 1 @ 1 0 11437823 -double_check n 1 2 @ + 1 0 05738894 -double_chin n 1 1 @ 1 0 05599769 -double_clinch n 1 1 @ 1 0 03226660 -double_cream n 1 1 @ 1 0 07851443 -double_creme n 1 1 @ 1 0 07847585 -double_crochet n 1 2 @ + 1 0 03226743 -double_cross n 1 2 @ + 1 0 00749991 -double_dagger n 1 1 @ 1 0 06828662 -double_damages n 1 1 @ 1 0 13292104 -double_date n 1 2 @ + 1 0 08385602 -double_decomposition n 1 2 @ ~ 1 0 13469066 -double_decomposition_reaction n 1 2 @ ~ 1 0 13469066 -double_digit n 1 1 @ 1 0 13746419 -double_dipper n 1 1 @ 1 0 10027798 -double_dipping n 1 1 @ 1 0 13255713 -double_door n 1 1 @ 1 0 03226880 -double_dribble n 1 2 @ ; 1 0 00478855 -double_dutch n 2 2 @ ; 2 0 06610436 00485815 -double_eagle n 2 2 @ ; 2 0 13596106 13392357 -double_entendre n 1 1 @ 1 1 06605780 -double_entry n 1 1 @ 1 0 00619578 -double_fault n 1 2 @ ; 1 0 00071546 -double_feature n 1 2 @ %p 1 0 00460951 -double_first n 1 2 @ ; 1 0 06700325 -double_flat n 1 1 @ 1 0 06867057 -double_glazing n 1 1 @ 1 0 03227010 -double_gloucester n 1 1 @ 1 0 07853345 -double_gold n 1 2 @ #m 1 0 12009047 -double_helix n 1 1 @ 1 0 13876753 -double_indemnity n 1 1 @ 1 0 06393620 -double_jeopardy n 1 2 @ ; 1 0 01198068 -double_knit n 1 1 @ 1 0 03227317 -double_leg_circle n 1 1 @ 1 0 00435182 -double_negative n 2 1 @ 2 0 07205439 07205308 -double_obelisk n 1 1 @ 1 0 06828662 -double_play n 1 1 @ 1 1 00564373 -double_pneumonia n 1 1 @ 1 0 14148411 -double_quotes n 1 1 @ 1 0 06844509 -double_reed n 2 4 @ ~ #p %p 2 0 03228016 03227856 -double_refraction n 1 1 @ 1 0 11503482 -double_replacement_reaction n 1 1 @ 1 0 13469317 -double_reverse n 1 1 @ 1 0 00560141 -double_rhyme n 1 1 @ 1 0 07097707 -double_salt n 1 2 @ ~ 1 0 15011987 -double_saucepan n 1 1 @ 1 0 03226254 -double_sharp n 1 1 @ 1 0 06866757 -double_standard n 1 2 @ ~ 1 1 06669513 -double_standard_of_sexual_behavior n 1 1 @ 1 0 06669673 -double_star n 1 2 @ ~ 1 0 09221070 -double_stitch n 1 2 @ + 1 0 03226743 -double_stopping n 1 1 @ 1 0 00102039 -double_take n 1 1 @ 1 0 00863417 -double_talk n 1 1 @ 1 0 06610897 -double_time n 2 1 @ 2 0 15283327 13279913 -double_vision n 1 1 @ 1 0 14153285 -doubleheader n 1 2 @ %p 1 1 00460951 -doubler n 1 1 @ 1 0 03227721 -doubles n 2 1 @ 2 0 00483605 00483508 -doublespeak n 1 1 @ 1 0 06761482 -doublet n 1 1 @ 1 0 03228254 -doublethink n 1 1 @ 1 0 05726237 -doubleton n 1 2 @ ; 1 0 13743869 -doubletree n 1 1 @ 1 0 03228365 -doubling n 2 3 @ #p + 2 0 13469526 00803394 -doubloon n 1 1 @ 1 0 13392896 -doubly_transitive_verb n 1 1 @ 1 0 06331477 -doubly_transitive_verb_form n 1 1 @ 1 0 06331477 -doubt n 2 3 @ ~ + 2 2 05698247 04757522 -doubter n 2 3 @ ~ + 2 0 10604634 09779124 -doubtfulness n 2 3 @ ~ + 2 0 05698247 04757522 -doubting_thomas n 2 1 @ 2 0 11338796 10027953 -douche n 2 2 @ + 2 0 03228533 00695717 -douche_bag n 1 1 @ 1 0 03228533 -dough n 2 4 @ ~ %s + 2 2 07860988 13385216 -doughboy n 2 1 @ 2 0 10205138 07638898 -doughnut n 2 2 @ ~ 2 0 13875392 07639069 -douglas n 1 1 @ 1 0 10941206 -douglas_elton_fairbanks n 1 1 @ 1 0 10965361 -douglas_fairbanks n 1 1 @ 1 0 10965361 -douglas_fairbanks_jr. n 1 1 @ 1 0 10965550 -douglas_fir n 2 5 @ ~ #m #s %s 2 0 11628678 11628456 -douglas_hemlock n 1 1 @ 1 0 11628793 -douglas_macarthur n 1 1 @ 1 0 11146670 -douglas_moore n 1 1 @ 1 0 11190024 -douglas_pine n 1 1 @ 1 0 11628793 -douglas_spruce n 1 1 @ 1 0 11628793 -douglas_squirrel n 1 1 @ 1 0 02357585 -douglass n 1 1 @ 1 0 10941515 -doula n 1 1 @ 1 0 10241024 -doura n 1 1 @ 1 0 12137791 -dourah n 1 1 @ 1 0 12137791 -douroucouli n 1 2 @ #m 1 0 02492356 -dousing n 1 2 @ + 1 0 00277569 -dove n 5 4 ! @ ~ #p 5 1 01812337 10028123 09250551 07646403 06881494 -dove's_foot_geranium n 1 1 @ 1 0 12687044 -dovecote n 1 1 @ 1 0 03228692 -dovekie n 1 2 @ #m 1 0 02046171 -dover n 1 2 @ #p 1 0 09070233 -dover's_powder n 1 1 @ 1 0 03228796 -dovetail n 1 2 @ + 1 0 03228967 -dovetail_joint n 1 1 @ 1 0 03228967 -dovetail_plane n 1 1 @ 1 0 03229115 -dovishness n 1 4 ! @ ~ + 1 0 06221485 -dovyalis n 1 3 @ #m %m 1 0 12378546 -dovyalis_caffra n 1 3 @ #m %p 1 0 12378753 -dovyalis_hebecarpa n 1 3 @ #m %p 1 0 12378963 -dow-jones_industrial_average n 1 1 @ 1 0 06640533 -dow_jones n 1 1 @ 1 0 06640533 -dowager n 1 1 @ 1 0 10028289 -dowager's_hump n 1 1 @ 1 0 14505469 -dowdiness n 1 2 @ + 1 0 04816528 -dowding n 1 1 @ 1 0 10941714 -dowdy n 2 1 @ 2 0 10941714 07623363 -dowel n 1 1 @ 1 0 03229244 -dowel_pin n 1 1 @ 1 0 03229244 -doweling n 1 1 @ 1 1 00148762 -dower n 2 2 @ + 2 0 13265425 13264203 -dowery n 1 2 @ + 1 0 13265425 -dowitcher n 1 3 @ ~ #m 1 0 02033041 -dowland n 1 1 @ 1 0 10941992 -down n 5 4 @ ~ + ; 5 2 01896561 00458286 10942144 09269341 05255692 -down's_syndrome n 1 1 @ 1 0 14159623 -down-and-out n 1 2 @ + 1 0 10028402 -down-bow n 1 1 @ 1 0 00547960 -down_easter n 1 1 @ 1 0 09743487 -down_feather n 1 2 @ ~ 1 0 01896561 -down_payment n 1 2 @ ~ 1 0 13349834 -down_quark n 1 1 @ 1 0 09269573 -down_syndrome n 1 1 @ 1 0 14159623 -down_town n 1 2 @ #p 1 0 08543496 -downbeat n 1 1 @ 1 0 07086972 -downcast n 1 1 @ 1 0 03229420 -downdraft n 1 1 @ 1 0 11522730 -downer n 1 3 @ ~ + 1 0 04166553 -downfall n 3 3 @ ~ %p 3 1 07318133 11494638 07427728 -downgrade n 1 1 @ 1 0 05069085 -downheartedness n 1 2 @ + 1 0 07537668 -downhill n 2 2 @ + 2 0 09269472 07463872 -downiness n 1 2 @ + 1 0 04938838 -downing n 1 1 @ 1 0 10942279 -downing_street n 2 2 @ #p 2 0 08875972 08052330 -downpour n 1 1 @ 1 1 11502102 -downrightness n 1 2 @ + 1 0 04918498 -downshift n 2 1 @ 2 0 00169147 00169047 -downside n 1 1 @ 1 0 05852819 -downsizing n 1 1 @ 1 0 00192910 -downslope n 1 2 @ ~ 1 0 09265620 -downspin n 1 1 @ 1 0 00266560 -downstage n 1 2 @ #p 1 0 03229526 -downstroke n 1 1 @ 1 0 06799485 -downswing n 2 2 @ ~ 2 0 00571956 00266401 -downtick n 1 2 ! @ 1 0 01110811 -downtime n 1 2 ! @ 1 0 15117621 -downtown n 1 3 @ ~ + 1 1 08539072 -downturn n 1 2 @ ~ 1 0 00266401 -downy_ash n 1 2 @ ~ 1 0 12305475 -downy_birch n 1 2 @ #m 1 0 12282737 -downy_brome n 1 1 @ 1 0 12111399 -downy_bromegrass n 1 1 @ 1 0 12111399 -downy_cheat n 1 1 @ 1 0 12111399 -downy_chess n 1 1 @ 1 0 12111399 -downy_ground_cherry n 1 1 @ 1 0 12910676 -downy_haw n 1 2 @ #m 1 0 12628356 -downy_manzanita n 1 1 @ 1 0 12232503 -downy_mildew n 1 3 @ ~ #m 1 0 12980840 -downy_poplar n 1 1 @ 1 0 12733428 -downy_wood_mint n 1 2 @ #m 1 0 12842642 -downy_woodpecker n 1 1 @ 1 0 01839330 -downy_yellow_violet n 1 1 @ 1 0 12389727 -dowry n 1 1 @ 1 1 13265425 -dowse n 1 2 @ + 1 0 05776679 -dowser n 2 2 @ + 2 0 10770891 03216199 -dowsing n 1 2 @ + 1 0 05776679 -dowsing_rod n 1 1 @ 1 0 03216199 -doxastic_logic n 1 1 @ 1 0 06166394 -doxazosin n 1 1 @ 1 0 03229656 -doxepin n 1 1 @ 1 0 03229905 -doxepin_hydrochloride n 1 1 @ 1 0 03229905 -doxology n 1 2 @ #p 1 0 07036203 -doxorubicin n 1 1 @ 1 0 03230149 -doxy n 1 2 @ ~ 1 0 09952393 -doxycycline n 1 1 @ 1 0 03230247 -doyen n 1 1 @ 1 0 09997068 -doyenne n 1 1 @ 1 0 10028541 -doyley n 1 1 @ 1 0 03219010 -doyly n 1 1 @ 1 0 03219010 -doze n 1 2 @ + 1 0 00858849 -dozen n 1 3 @ ~ + 1 1 13746785 -dozens n 1 1 @ 1 1 13777509 -dozer n 1 2 @ ~ 1 0 02916179 -dp n 1 1 @ 1 0 10017890 -dph n 1 1 @ 1 0 06704366 -dphil n 1 1 @ 1 0 06704295 -dprk n 1 4 @ #p %p - 1 0 08955082 -dpt_vaccine n 1 1 @ 1 0 03230446 -dr. n 2 3 @ ~ #m 2 0 10021892 10020890 -dr._j n 1 1 @ 1 0 10960772 -dr._johnson n 1 1 @ 1 0 11088622 -dr._seuss n 1 1 @ 1 0 10993636 -drab n 1 1 @ 1 0 04974463 -draba n 1 3 @ ~ #m 1 0 11885856 -draba_verna n 1 1 @ 1 0 11886157 -drabness n 1 2 @ + 1 0 04816528 -dracaena n 1 3 @ ~ #m 1 0 12479537 -dracaena_draco n 1 1 @ 1 0 12479689 -dracaenaceae n 1 2 @ #m 1 0 12479066 -dracenaceae n 1 2 @ #m 1 0 12479066 -drachm n 3 3 @ #p %p 3 0 13722340 13621190 13618629 -drachma n 2 3 @ #p %p 2 0 13722340 13675218 -draco n 3 4 @ #m %m + 3 0 10942675 09269717 01688428 -dracocephalum n 1 3 @ #m %m 1 0 12846143 -dracocephalum_parviflorum n 1 2 @ #m 1 0 12846335 -dracontium n 1 2 @ #m 1 0 11788039 -dracula n 2 2 @ #m 2 0 12059851 09592272 -dracunculiasis n 1 1 @ 1 0 14176051 -dracunculidae n 1 3 @ #m %m 1 0 01933686 -dracunculus n 2 3 @ #m %m 2 0 11788223 01933834 -dracunculus_medinensis n 1 2 @ #m 1 0 01933988 -dracunculus_vulgaris n 1 2 @ #m 1 0 11788382 -draft n 11 4 @ ~ + ; 11 3 13377268 11522448 03230785 07883980 06390962 05135155 03230914 03230670 01157850 00840189 00115667 -draft_animal n 1 1 @ 1 0 01317294 -draft_beer n 1 1 @ 1 0 07887099 -draft_board n 1 1 @ 1 0 08383067 -draft_copy n 1 1 @ 1 0 06390962 -draft_dodger n 1 1 @ 1 0 10028638 -draft_evader n 1 1 @ 1 0 10028638 -draft_horse n 1 2 @ ~ 1 0 02386496 -draftee n 1 4 ! @ + ; 1 0 10028765 -drafter n 1 2 @ + 1 0 10028977 -drafting n 3 3 @ ~ + 3 2 00930736 00608037 00935940 -drafting_board n 1 1 @ 1 1 03231024 -drafting_instrument n 1 2 @ ~ 1 0 03231160 -drafting_table n 1 1 @ 1 0 03231368 -draftsman n 2 3 @ ~ + 2 0 10029269 10029068 -draftsmanship n 1 3 @ ~ + 1 0 00935940 -draftsperson n 1 1 @ 1 0 10029269 -drag n 6 5 @ ~ #p + ; 6 1 11504898 05690091 05206445 03231476 00837675 00114871 -drag_coefficient n 1 1 @ 1 0 13586831 -dragee n 3 1 @ 3 0 07605282 07605198 03231723 -dragger n 2 2 @ + 2 0 10492202 04476116 -dragnet n 2 1 @ 2 0 08433861 04475749 -dragoman n 1 1 @ 1 0 10029429 -dragon n 4 3 @ ~ #m 4 1 09494388 10029729 09269717 01688589 -dragon's_blood n 1 1 @ 1 0 14838677 -dragon's_eye n 1 2 @ #p 1 0 07766409 -dragon's_head n 1 2 @ #m 1 0 12846335 -dragon's_mouth n 1 2 @ #m 1 0 12046028 -dragon_arum n 1 2 @ #m 1 0 11788382 -dragon_lizard n 1 1 @ 1 0 01695060 -dragon_tree n 1 1 @ 1 0 12479689 -dragonet n 1 2 @ #m 1 0 02618827 -dragonfly n 1 1 @ 1 0 02268443 -dragonhead n 1 2 @ #m 1 0 12846335 -dragoon n 1 2 @ + 1 0 10029831 -dragunov n 1 1 @ 1 0 03231819 -drain n 4 4 @ ~ + ; 4 1 00396029 03232158 03231912 01062255 -drain_basket n 1 2 @ #p 1 0 03232543 -drainage n 1 2 @ + 1 1 00396029 -drainage_area n 1 2 @ ~ 1 0 08518940 -drainage_basin n 1 2 @ ~ 1 0 08518940 -drainage_ditch n 1 1 @ 1 1 03232309 -drainage_system n 1 1 @ 1 0 03232417 -drainboard n 1 1 @ 1 0 03232676 -draining_board n 1 1 @ 1 0 03232676 -drainpipe n 1 2 @ ~ 1 0 03231912 -drainplug n 1 1 @ 1 0 03232815 -drake n 2 1 @ 2 0 10942866 01847000 -dram n 3 3 @ #p %p 3 0 13722340 13719808 13699442 -drama n 4 7 @ ~ %p = + ; - 4 4 07007945 07290278 06376154 04626705 -drama_critic n 1 2 @ ~ 1 0 10030147 -dramamine n 1 2 @ ; 1 0 03198951 -dramatic_art n 1 4 @ ~ %p - 1 0 07006119 -dramatic_composition n 1 4 @ ~ #p %p 1 0 07007684 -dramatic_event n 1 2 @ ~ 1 0 07290278 -dramatic_irony n 1 2 @ ; 1 0 07102593 -dramatic_performance n 1 1 @ 1 0 00099267 -dramatic_play n 1 4 @ ~ %p ; 1 0 07007945 -dramatic_production n 1 1 @ 1 0 00099267 -dramatic_work n 1 4 @ ~ #p %p 1 0 07007684 -dramatics n 2 4 @ ~ %p - 2 1 00886456 07006119 -dramatis_personae n 1 3 @ ~ #m 1 0 08237863 -dramatisation n 2 3 @ ~ + 2 0 00930868 00899292 -dramatist n 1 3 @ ~ + 1 1 10030277 -dramatization n 2 3 @ ~ + 2 0 00930868 00899292 -dramaturgy n 1 5 @ ~ %p + - 1 0 07006119 -drambuie n 1 2 @ ; 1 0 07909593 -drape n 3 4 @ ~ %p + 3 1 03151077 04930139 03232923 -draper n 1 2 @ ~ 1 1 10032190 -drapery n 2 4 @ ~ %p + 2 1 03151077 03233123 -draught n 6 3 @ ~ + 6 2 07883980 00840189 11522448 05135155 03230670 00115667 -draught_beer n 1 1 @ 1 0 07887099 -draught_horse n 1 2 @ ~ 1 0 02386496 -draughts n 1 3 @ %p - 1 0 00502952 -draughtsman n 1 1 @ 1 0 10029269 -dravidian n 2 2 @ ~ 2 0 09673916 06979014 -dravidian_language n 1 2 @ ~ 1 0 06979014 -dravidic n 1 2 @ ~ 1 0 06979014 -draw n 9 4 @ ~ + ; 9 1 09269882 10032676 07353716 03233423 03233246 00572285 00559329 00497536 00115036 -draw_play n 1 2 @ ; 1 0 00559329 -draw_poker n 1 1 @ 1 0 00497536 -drawback n 1 2 @ ~ 1 0 05164521 -drawbar n 1 1 @ 1 0 03233624 -drawbridge n 1 1 @ 1 0 03233744 -drawee n 1 3 @ ~ + 1 0 10032342 -drawer n 3 5 @ ~ #p %p + 3 1 03233905 10032524 10029068 -drawers n 2 2 @ ; 2 0 03234164 02854739 -drawing n 6 3 @ ~ + 6 3 07003119 03234306 00935940 00508091 00392093 00115667 -drawing-room_car n 1 1 @ 1 0 03891664 -drawing_board n 1 1 @ 1 1 03231024 -drawing_card n 2 1 @ 2 0 10032676 03234795 -drawing_chalk n 1 1 @ 1 0 03234952 -drawing_ink n 1 1 @ 1 0 14917080 -drawing_lots n 1 1 @ 1 0 00180054 -drawing_off n 1 2 @ ~ 1 0 00392093 -drawing_paper n 1 2 @ ~ 1 1 14838821 -drawing_pin n 1 1 @ 1 0 04431745 -drawing_power n 1 1 @ 1 1 04689330 -drawing_room n 2 2 @ #p 2 1 03235042 03235180 -drawing_string n 1 3 @ ~ #p 1 0 03235560 -drawing_table n 1 1 @ 1 0 03231368 -drawknife n 1 1 @ 1 0 03235327 -drawl n 1 2 @ + 1 1 07131741 -drawler n 1 2 @ + 1 0 10032884 -drawn_butter n 1 2 @ ~ 1 0 07848771 -drawnwork n 1 1 @ 1 0 03235433 -drawshave n 1 1 @ 1 0 03235327 -drawstring n 1 3 @ ~ #p 1 0 03235560 -drawstring_bag n 1 3 @ ~ %p 1 0 03235796 -dray n 1 1 @ 1 0 03235979 -dray_horse n 1 2 @ ~ 1 0 02386496 -drayhorse n 1 1 @ 1 0 02386853 -dread n 1 3 @ ~ + 1 1 07521674 -dreadfulness n 1 3 @ ~ + 1 0 04782116 -dreadlock n 1 1 @ 1 0 05258743 -dreadnaught n 1 1 @ 1 0 03236093 -dreadnought n 1 1 @ 1 0 03236093 -dream n 6 4 @ ~ #p + 6 5 05768553 05768806 07484547 05632732 05700925 14459715 -dreamer n 3 3 @ ~ + 3 1 10032987 10196965 10062996 -dreaminess n 1 2 @ + 1 0 07516222 -dreaming n 2 4 @ ~ #p + 2 0 05768806 05768553 -dreamland n 1 1 @ 1 0 05631304 -dreamworld n 1 1 @ 1 0 05631304 -dreariness n 1 2 @ + 1 0 05206006 -dreck n 1 2 @ ; 1 0 04145735 -dred_scott n 1 1 @ 1 0 11288930 -dredge n 1 4 @ #p %p + 1 0 03236217 -dredger n 1 3 @ %p + 1 0 03236423 -dredging_bucket n 1 3 @ ~ #p 1 0 03236580 -dreg n 1 1 @ 1 0 13772971 -dregs n 1 3 @ ~ ; 1 1 09269972 -dreiser n 1 1 @ 1 0 10943115 -dreissena n 1 3 @ #m %m 1 0 01965404 -dreissena_polymorpha n 1 2 @ #m 1 0 01965529 -drenching n 1 1 @ 1 0 00277811 -drepanididae n 1 3 @ #m %m 1 0 01544544 -drepanis n 1 3 @ #m %m 1 0 01544877 -drepanocytic_anaemia n 1 1 @ 1 0 14168792 -drepanocytic_anemia n 1 1 @ 1 0 14168792 -dresden n 1 2 @ #p 1 0 08770932 -dress n 3 4 @ ~ %p + 3 2 03236735 02756098 02728440 -dress_blues n 1 2 @ ; 1 0 03237212 -dress_circle n 1 2 @ #p 1 0 03033019 -dress_code n 1 1 @ 1 0 06668611 -dress_hanger n 1 2 @ %p 1 0 03057920 -dress_hat n 1 1 @ 1 0 03237416 -dress_rack n 1 1 @ 1 0 03238762 -dress_rehearsal n 1 1 @ 1 0 00897365 -dress_shirt n 1 2 @ %p 1 0 03238879 -dress_shop n 1 1 @ 1 1 02879309 -dress_suit n 1 2 @ %p 1 0 03239054 -dress_uniform n 1 3 @ ~ ; 1 0 03239259 -dress_whites n 1 2 @ ; 1 0 03237212 -dressage n 1 4 @ ~ #p - 1 0 00288000 -dressed_ore n 1 1 @ 1 0 14837506 -dresser n 5 4 @ ~ %p + 5 1 03015254 10033225 10033082 03238586 03237340 -dressing n 7 3 @ ~ + 7 0 07832902 07678729 07434473 03237639 00828862 00828237 00696882 -dressing_case n 1 1 @ 1 0 03237839 -dressing_down n 1 1 @ 1 0 06713187 -dressing_gown n 1 1 @ 1 1 03237992 -dressing_room n 1 2 @ #p 1 1 03238131 -dressing_sack n 1 1 @ 1 0 03238286 -dressing_sacque n 1 1 @ 1 0 03238286 -dressing_station n 1 2 @ ; 1 0 03238407 -dressing_table n 1 1 @ 1 0 03238586 -dressmaker n 1 2 @ ~ 1 0 10033412 -dressmaker's_model n 1 1 @ 1 0 10033572 -dressmaking n 1 2 @ ~ 1 0 00608162 -drew n 1 1 @ 1 0 10943256 -drey n 1 1 @ 1 0 09270160 -dreyfus n 1 1 @ 1 0 10943405 -drib n 1 2 @ ~ 1 0 13771404 -dribble n 3 4 @ ~ + ; 3 0 07432559 05416678 00478647 -dribbler n 2 2 @ + 2 0 10033888 10033663 -dribbling n 1 4 @ ~ + ; 1 0 00478647 -driblet n 1 2 @ ~ 1 0 13771404 -dried_apricot n 1 1 @ 1 0 07752514 -dried_fruit n 1 2 @ ~ 1 0 07752377 -dried_milk n 1 2 @ ~ 1 0 07846143 -drier n 2 3 @ ~ + 2 0 14779796 03251766 -drift n 7 4 @ ~ + ; 7 2 11447851 13469674 13469893 09270233 06197664 05922651 03239399 -drift_ice n 1 1 @ 1 0 09270414 -drift_net n 1 1 @ 1 0 03239607 -driftage n 1 3 @ + ; 1 0 07366799 -drifter n 1 3 @ ~ + 1 0 10744544 -driftfish n 2 2 @ #m 2 0 02634545 02634285 -drifting n 1 2 @ + 1 0 00297404 -driftwood n 1 1 @ 1 0 14837678 -drill n 4 5 @ ~ %p + ; 4 0 03239726 02487079 00894552 00894359 -drill_bit n 1 2 @ ~ 1 0 03240327 -drill_hole n 1 3 @ ~ ; 1 0 02875233 -drill_instructor n 1 2 @ ; 1 0 10034020 -drill_master n 1 2 @ ; 1 0 10034020 -drill_press n 1 2 @ %p 1 0 03240892 -drill_rig n 1 2 @ ~ 1 0 03241093 -drill_rod n 1 1 @ 1 0 14837786 -drill_site n 1 1 @ 1 0 03241236 -drill_steel n 1 1 @ 1 0 14837786 -drilling n 2 2 @ + 2 0 00942799 00923130 -drilling_bit n 1 2 @ ~ 1 0 03240327 -drilling_fluid n 1 1 @ 1 0 14838951 -drilling_mud n 1 1 @ 1 0 14838951 -drilling_pipe n 1 1 @ 1 0 03240482 -drilling_platform n 1 1 @ 1 0 03240683 -drilling_rig n 1 2 @ ~ 1 0 03241093 -drimys n 1 3 @ #m %m 1 0 11739809 -drimys_winteri n 1 3 @ #m %p 1 0 11739978 -drink n 5 4 @ ~ + ; 5 3 07885223 00748515 07881800 09270508 00839778 -drinkable n 1 2 @ ~ 1 0 07881800 -drinker n 2 4 ! @ ~ + 2 1 10034614 10034201 -drinking n 2 3 @ ~ + 2 2 00843128 00748515 -drinking_age n 1 2 @ #p 1 0 15152531 -drinking_bout n 1 1 @ 1 0 00748834 -drinking_chocolate n 1 2 @ %s 1 0 07922764 -drinking_fountain n 1 1 @ 1 0 03241335 -drinking_glass n 1 3 @ ~ %p 1 0 03438257 -drinking_song n 1 1 @ 1 0 07050827 -drinking_straw n 1 1 @ 1 0 04334232 -drinking_vessel n 1 2 @ ~ 1 0 03241496 -drinking_water n 1 2 @ ~ 1 1 07936263 -drip n 3 4 @ ~ + ; 3 0 07432559 07383323 03241660 -drip_coffee n 1 1 @ 1 0 07919894 -drip_culture n 1 1 @ 1 0 00919201 -drip_feed n 1 1 @ 1 0 00695160 -drip_loop n 1 2 @ #p 1 0 03241903 -drip_mat n 1 2 @ ~ 1 0 03242120 -drip_mold n 1 3 @ ~ ; 1 0 03241660 -drip_mould n 1 3 @ ~ ; 1 0 03241660 -drip_pan n 2 2 @ #p 2 0 03242390 03242264 -drip_pot n 1 1 @ 1 0 03242506 -drippage n 1 1 @ 1 0 07407459 -drippiness n 2 3 @ ~ + 2 0 05010506 04627506 -dripping n 2 1 @ 2 0 07407459 07383323 -dripping_pan n 1 1 @ 1 0 03242390 -drippings n 1 2 @ + 1 0 07673249 -dripstone n 2 2 @ #s 2 0 14936630 03242595 -drive n 12 5 @ ~ %p + ; 12 8 00103834 03242995 00798245 03244388 04835724 00572489 00317594 00307631 14035298 03243218 03242713 00567044 -drive-by_killing n 1 1 @ 1 0 00219738 -drive-by_shooting n 1 1 @ 1 0 00225361 -drive-in n 1 1 @ 1 0 03243501 -drive_line n 1 3 @ #p %p 1 0 03243625 -drive_line_system n 1 3 @ #p %p 1 0 03243625 -drivel n 2 3 @ ~ + 2 0 06612266 05416678 -driveller n 2 2 @ + 2 0 10034785 10033663 -driven_well n 1 1 @ 1 0 03243903 -driver n 5 5 ! @ ~ + ; 5 1 10034906 10035430 10035314 06574473 03244047 -driver's_licence n 1 1 @ 1 0 06550206 -driver's_license n 1 1 @ 1 0 06550206 -driver_ant n 1 2 @ #m 1 0 02220518 -driveshaft n 1 2 @ #p 1 0 03244231 -driveway n 1 2 @ %p 1 1 03244388 -driving n 2 4 @ ~ + - 2 0 00572489 00298497 -driving_axle n 1 2 @ #p 1 0 03678879 -driving_belt n 1 1 @ 1 0 03244660 -driving_force n 1 2 @ ~ 1 1 00103834 -driving_iron n 1 2 @ ; 1 0 03244775 -driving_licence n 1 1 @ 1 0 06550206 -driving_license n 1 1 @ 1 0 06550206 -driving_range n 1 2 @ ; 1 0 03447224 -driving_school n 1 1 @ 1 0 08279184 -driving_wheel n 1 2 @ #p 1 0 03244919 -drixoral n 1 1 @ 1 0 03245075 -drizzle n 1 2 @ + 1 1 11502322 -drms n 1 2 @ #p 1 0 08341551 -drogheda n 1 3 @ #p ; 1 0 01277755 -drogue n 4 2 @ #p 4 0 07262354 07257582 04158457 03245271 -drogue_chute n 1 1 @ 1 0 03245271 -drogue_parachute n 2 1 @ 2 0 03245421 03245271 -drollery n 2 1 @ 2 0 06781383 00515069 -dromaeosaur n 1 2 @ #m 1 0 01717860 -dromaeosauridae n 1 3 @ #m %m 1 0 01717666 -dromaius n 1 3 @ #m %m 1 0 01519719 -dromaius_novaehollandiae n 1 2 @ #m 1 0 01519873 -drome n 1 3 @ ~ %p 1 0 02692232 -dromedary n 1 1 @ 1 0 02437312 -dronabinol n 1 1 @ 1 0 03245553 -drone n 5 4 @ ~ #p + 5 2 02207179 07084560 09993252 03245889 03245724 -drone_pipe n 1 2 @ #p 1 0 03245724 -droning n 1 2 @ + 1 0 07084560 -drool n 2 3 @ + ; 2 0 06611147 05416678 -drooler n 1 2 @ + 1 0 10033663 -droop n 1 2 @ + 1 0 13905572 -drooping_brome n 1 1 @ 1 0 12111399 -drooping_juniper n 1 1 @ 1 0 11638698 -drop n 9 4 @ ~ + ; 9 3 13901585 13771404 05111835 09246464 08583793 07362386 03246454 03246052 00327366 -drop-down_menu n 1 1 @ 1 0 06493579 -drop-leaf n 1 2 @ #p 1 0 03246788 -drop-leaf_table n 1 3 @ ~ %p 1 0 03246933 -drop-off n 3 3 @ ~ + 3 0 13556509 09246464 07355887 -drop-off_charge n 1 1 @ 1 0 13321338 -drop-seed n 1 3 @ ~ #m 1 0 12140358 -drop_arch n 1 1 @ 1 0 03246197 -drop_biscuit n 1 1 @ 1 0 07694268 -drop_cloth n 2 1 @ 2 0 03246454 03246312 -drop_curtain n 1 1 @ 1 0 03246454 -drop_earring n 1 2 @ %p 1 0 03909020 -drop_forge n 1 2 @ #p 1 0 03246653 -drop_hammer n 1 2 @ #p 1 0 03246653 -drop_keel n 1 3 @ ~ #p 1 0 02994012 -drop_line n 1 1 @ 1 0 06345566 -drop_press n 1 2 @ #p 1 0 03246653 -drop_scone n 1 1 @ 1 0 07691091 -drop_shot n 1 1 @ 1 0 00567280 -drop_zone n 1 2 @ ; 1 0 08690194 -dropkick n 1 3 @ + ; 1 0 00137877 -dropkicker n 1 2 @ + 1 0 10035655 -droplet n 1 2 @ + 1 1 13771828 -dropline n 1 1 @ 1 0 06345566 -dropout n 2 2 @ + 2 1 09995925 09996039 -dropped_egg n 1 1 @ 1 0 07842202 -dropper n 1 2 @ + 1 0 03247083 -dropping_zone n 1 2 @ ; 1 0 08690194 -droppings n 1 2 @ ~ 1 1 14854847 -dropseed n 1 3 @ ~ #m 1 0 12140358 -dropsy n 1 3 @ ~ + 1 0 14316714 -drosera n 1 3 @ #m %m 1 0 12782338 -droseraceae n 1 3 @ #m %m 1 0 12782108 -droshky n 1 1 @ 1 0 03247351 -drosky n 1 1 @ 1 0 03247351 -drosophila n 1 2 @ #m 1 0 02197689 -drosophila_melanogaster n 1 2 @ #m 1 0 02197689 -drosophilidae n 1 3 @ #m %m 1 0 02197413 -drosophyllum n 1 3 @ #m %m 1 0 12783601 -drosophyllum_lusitanicum n 1 2 @ #m 1 0 12783730 -dross n 2 2 @ ~ 2 1 14583670 15042856 -drought n 2 1 @ 2 2 14537054 15244505 -drouth n 2 1 @ 2 0 15244505 14537054 -drove n 3 1 @ 3 0 08184335 08184217 03247495 -drove_chisel n 1 1 @ 1 0 03247495 -drover n 1 2 @ ~ 1 1 10171567 -drowse n 1 2 @ + 1 0 00858849 -drowsiness n 1 3 @ ~ + 1 1 14030435 -drubbing n 2 3 @ ~ + 2 0 07476623 01160729 -drudge n 2 3 @ ~ + 2 0 10154601 10035809 -drudgery n 1 2 @ + 1 0 00621476 -drug n 1 5 @ ~ #p + - 1 1 03247620 -drug_abuse n 1 2 @ ~ 1 0 00947923 -drug_addict n 1 2 @ ~ 1 0 10035952 -drug_addiction n 1 3 @ ~ ; 1 0 14064408 -drug_baron n 1 1 @ 1 0 10036135 -drug_bust n 1 1 @ 1 0 00086547 -drug_cartel n 1 2 @ ~ 1 0 08236963 -drug_cocktail n 1 2 @ %p 1 0 03248560 -drug_company n 1 1 @ 1 0 08002578 -drug_dealer n 1 1 @ 1 0 10495555 -drug_enforcement_administration n 1 2 @ #p 1 0 08141374 -drug_enforcement_agency n 1 2 @ #p 1 0 08141374 -drug_lord n 1 1 @ 1 0 10036135 -drug_of_abuse n 1 2 @ ~ 1 0 03248958 -drug_peddler n 1 1 @ 1 0 10495555 -drug_traffic n 1 1 @ 1 0 01114055 -drug_trafficker n 1 1 @ 1 0 10495555 -drug_trafficking n 1 1 @ 1 0 01114055 -drug_user n 1 2 @ ~ 1 0 10036266 -drug_war n 1 2 @ ; 1 0 01236491 -drug_withdrawal n 1 2 @ ~ 1 0 00228911 -drugget n 1 1 @ 1 0 03248835 -drugging n 1 2 @ + 1 1 00695300 -druggist n 1 3 @ ~ + 1 0 10421470 -drugs_bust n 1 1 @ 1 0 00086547 -drugstore n 1 2 @ %p 1 1 03249342 -druid n 1 1 @ 1 0 10036444 -druidism n 1 1 @ 1 0 06224831 -drum n 6 5 @ ~ #p %p + 6 2 03249569 07383475 13901211 03249956 02890351 02594552 -drum_brake n 1 2 @ %p 1 0 03250089 -drum_major n 1 2 @ + 1 1 10036574 -drum_majorette n 2 2 @ + 2 0 10036802 10036692 -drum_printer n 1 1 @ 1 0 03250405 -drum_roll n 1 1 @ 1 0 07388816 -drum_sander n 1 2 @ %p 1 0 03250588 -drumbeat n 3 3 @ ~ ; 3 0 07392373 06805128 01214408 -drumbeater n 1 2 @ ~ 1 0 10402086 -drumfire n 1 1 @ 1 0 00994623 -drumfish n 1 2 @ ~ 1 0 02594552 -drumhead n 1 2 @ #p 1 1 03250279 -drumhead_court-martial n 1 2 @ ; 1 0 08331357 -drumlin n 1 1 @ 1 1 09270657 -drummer n 1 3 @ ~ + 1 1 10036929 -drumming n 1 2 @ + 1 0 00545194 -drumstick n 2 4 @ ~ #p %p 2 0 07647870 03250847 -drumstick_tree n 1 1 @ 1 0 12492106 -drunk n 2 3 @ ~ + 2 1 10037385 10037080 -drunk-and-disorderly n 1 1 @ 1 1 10037194 -drunkard n 1 3 @ ~ + 1 1 10037385 -drunken_reveler n 1 1 @ 1 0 10526300 -drunken_reveller n 1 1 @ 1 0 10526300 -drunken_revelry n 1 1 @ 1 0 00511212 -drunkenness n 3 4 ! @ ~ + 3 1 14018567 14064644 00748515 -drupe n 1 3 @ ~ + 1 0 13138308 -drupelet n 1 3 @ ~ + 1 0 13138658 -druse n 1 1 @ 1 0 10037588 -drusen n 1 2 @ ; 1 0 14255064 -druthers n 1 2 @ ~ 1 0 05791452 -druze n 1 1 @ 1 0 10037588 -dry n 1 2 @ ~ 1 0 10037922 -dry-bulb_thermometer n 1 3 ! @ #p 1 0 03251100 -dry-gulching n 1 1 @ 1 0 01247306 -dry-stone_wall n 1 1 @ 1 0 03252637 -dry-wood_termite n 1 2 @ ~ 1 0 02223520 -dry_battery n 1 3 @ ~ %p 1 0 03250952 -dry_cell n 1 2 @ #p 1 0 03251280 -dry_cereal n 1 2 @ ~ 1 0 07704755 -dry_cleaner n 1 2 @ + 1 0 09927305 -dry_cleaners n 1 2 @ ; 1 0 03039827 -dry_cleaning n 1 2 @ + 1 0 00252169 -dry_dock n 1 3 @ ~ #p 1 0 03251533 -dry_fly n 1 2 ! @ 1 0 03251932 -dry_gangrene n 1 2 @ ; 1 0 14313661 -dry_ice n 1 1 @ 1 0 15047167 -dry_kiln n 1 1 @ 1 0 03252231 -dry_land n 1 3 @ ~ #p 1 0 09334396 -dry_masonry n 1 2 @ ~ 1 0 03252324 -dry_measure n 1 2 @ ~ 1 0 13615036 -dry_milk n 1 2 @ ~ 1 0 07846143 -dry_mop n 1 1 @ 1 0 03258905 -dry_mouth n 1 1 @ 1 0 14538329 -dry_mustard n 1 1 @ 1 0 03994417 -dry_nurse n 1 1 @ 1 0 10038119 -dry_pint n 1 2 @ #p 1 0 13620404 -dry_plate n 1 1 @ 1 0 13470015 -dry_plate_process n 1 1 @ 1 0 13470015 -dry_point n 2 1 @ 2 0 03252542 03252422 -dry_quart n 1 3 @ #p %p 1 0 13620549 -dry_rot n 2 1 @ 2 0 14280504 13081999 -dry_run n 1 3 @ ~ ; 1 0 00897026 -dry_season n 1 2 ! @ 1 0 15239174 -dry_socket n 1 1 @ 1 0 14257993 -dry_unit n 1 2 @ ~ 1 0 13615036 -dry_vermouth n 1 1 @ 1 0 07899434 -dry_wall n 2 2 @ ~ 2 0 04547991 03252637 -dry_walling n 1 1 @ 1 0 00912165 -dry_wash n 1 2 @ ; 1 0 09474895 -dryad n 1 2 @ ~ 1 0 09551040 -dryadella n 1 2 @ #m 1 0 12060118 -dryas n 1 3 @ #m %m 1 0 12629187 -dryas_octopetala n 1 2 @ #m 1 0 12629305 -dryden n 1 1 @ 1 0 10943659 -drydock n 1 3 @ ~ #p 1 0 03251533 -dryer n 1 2 @ ~ 1 0 03251766 -drygoods n 1 3 @ ~ ; 1 1 03252064 -drying_agent n 1 1 @ 1 1 14779796 -drying_oil n 1 1 @ 1 0 14755641 -drying_up n 1 3 @ ~ #p 1 0 13460568 -dryland_berry n 1 1 @ 1 0 12248941 -dryland_blueberry n 1 1 @ 1 0 12248941 -drymarchon n 1 2 @ #m 1 0 01741116 -drymarchon_corais n 1 2 @ ~ 1 0 01741232 -drymarchon_corais_couperi n 1 1 @ 1 0 01741442 -drymoglossum n 1 2 @ #m 1 0 13175324 -drynaria n 1 3 @ #m %m 1 0 13175484 -drynaria_rigidula n 1 2 @ #m 1 0 13175682 -dryness n 3 4 ! @ ~ + 3 1 14536438 04883804 04630137 -dryopithecine n 1 3 @ ~ #m 1 0 02478077 -dryopithecus n 1 3 @ #m %m 1 0 02477890 -dryopithecus_rudapithecus_hungaricus n 1 2 @ #m 1 0 02478239 -dryopteridaceae n 1 3 @ #m %m 1 0 13192025 -dryopteris n 1 3 @ #m %m 1 0 13192898 -dryopteris_dilatata n 1 2 @ #m 1 0 13193143 -dryopteris_filix-mas n 1 1 @ 1 0 13193856 -dryopteris_fragrans n 1 1 @ 1 0 13193269 -dryopteris_goldiana n 1 1 @ 1 0 13193466 -dryopteris_hexagonoptera n 1 1 @ 1 0 13230843 -dryopteris_marginalis n 1 1 @ 1 0 13194036 -dryopteris_noveboracensis n 1 2 @ #m 1 0 13229951 -dryopteris_oreades n 1 1 @ 1 0 13194212 -dryopteris_oreopteris n 1 2 @ #m 1 0 13229543 -dryopteris_phegopteris n 1 1 @ 1 0 13231078 -dryopteris_thelypteris n 1 3 @ ~ #m 1 0 13227778 -dryopteris_thelypteris_pubescens n 1 1 @ 1 0 13228017 -drypis n 1 2 @ #m 1 0 11810030 -drywall n 1 2 @ ~ 1 0 04547991 -ds n 3 2 @ #p 3 0 14636392 08138259 06705787 -dscdna n 1 1 @ 1 0 14817346 -dsl n 1 1 @ 1 0 03196990 -dtic n 1 2 @ #p 1 0 08341798 -dts n 1 1 @ 1 0 14398279 -du_barry n 1 1 @ 1 0 10943811 -du_bois n 1 1 @ 1 0 10944013 -du_maurier n 2 1 @ 2 0 10945263 10945048 -duad n 1 3 @ ~ %p 1 0 13743605 -dual_carriageway n 1 1 @ 1 0 03215508 -dual_inline_package_switch n 1 2 @ ; 1 0 03204558 -dual_scan_display n 1 1 @ 1 0 03252787 -dualism n 1 2 @ + 1 0 05960698 -dualist n 1 2 @ + 1 0 10038226 -duality n 3 3 @ + ; 3 0 07939880 04920568 04736337 -dub n 1 1 @ 1 0 05720521 -dubai n 1 2 @ #p 1 0 09044714 -dubbin n 1 1 @ 1 0 14839206 -dubbing n 1 2 @ + 1 0 03252959 -dubiety n 1 2 @ ~ 1 0 05698247 -dubiousness n 2 3 @ ~ + 2 0 05698247 04757522 -dublin n 1 3 @ #p %m 1 1 08889191 -dubliner n 1 2 @ #m 1 0 09715427 -dubnium n 1 1 @ 1 0 14636523 -dubois_heyward n 1 1 @ 1 0 11049001 -dubonnet n 1 1 @ 1 0 07896422 -dubrovnik n 1 2 @ #p 1 0 08818835 -dubuque n 1 2 @ #p 1 0 09087126 -dubya n 1 1 @ 1 0 10875910 -dubyuh n 1 1 @ 1 0 10875910 -duc_d'elchingen n 1 1 @ 1 0 11205647 -duc_de_richelieu n 1 1 @ 1 0 11261483 -duc_de_sully n 1 1 @ 1 0 11325146 -ducat n 1 1 @ 1 0 13389475 -duce n 1 1 @ 1 0 10038320 -duchamp n 1 1 @ 1 0 10944238 -duchenne's_muscular_dystrophy n 1 1 @ 1 0 14161795 -duchess n 1 2 @ ~ 1 0 10038409 -duchess_of_ferrara n 1 1 @ 1 0 10858018 -duchess_of_windsor n 1 1 @ 1 0 11301809 -duchesse_de_valentinois n 1 1 @ 1 0 10933929 -duchy n 1 1 @ 1 0 08557131 -duck n 4 7 @ ~ #m #p %p + ; 4 1 01846331 13595844 07646578 03253071 -duck's_egg n 1 2 @ ; 1 0 13595844 -duck-billed_dinosaur n 1 3 @ ~ #m 1 0 01705934 -duck-billed_platypus n 1 2 @ #m 1 0 01873310 -duck_down n 1 3 @ ~ #p 1 0 01896735 -duck_hunter n 1 1 @ 1 0 10038547 -duck_hunting n 1 1 @ 1 0 00453396 -duck_pate n 1 1 @ 1 0 07858114 -duck_sauce n 1 1 @ 1 0 07824268 -duck_shot n 1 2 @ #p 1 0 02843777 -duck_soup n 1 2 @ ~ 1 0 00575365 -duckbill n 2 2 @ #m 2 0 02639605 01873310 -duckbilled_platypus n 1 2 @ #m 1 0 01873310 -duckboard n 1 1 @ 1 0 03253187 -ducking n 2 2 @ + 2 1 00453396 00277569 -ducking_stool n 1 1 @ 1 0 03144982 -duckling n 2 2 @ + 2 0 07646718 01847170 -duckpin n 1 1 @ 1 0 03253279 -duckpins n 1 1 @ 1 0 00462557 -ducks_and_drakes n 1 1 @ 1 0 00459845 -duckweed n 1 3 @ ~ #m 1 0 11794519 -duckweed_family n 1 3 @ #m %m 1 0 11794267 -ducky n 1 2 @ ~ 1 0 09991867 -duct n 3 4 @ ~ #p %p 3 1 05250659 13091057 03253398 -duct_gland n 1 2 @ ~ 1 0 05328867 -duct_tape n 1 1 @ 1 0 03253516 -ductileness n 1 1 @ 1 0 05022173 -ductility n 1 2 @ + 1 0 05022173 -ductless_gland n 1 3 @ ~ #p 1 0 05329735 -ductule n 1 2 @ ~ 1 0 05251537 -ductulus n 1 2 @ ~ 1 0 05251537 -ductus_arteriosus n 1 3 @ ~ #p 1 0 05418177 -ductus_deferens n 1 2 @ #p 1 0 05526175 -dud n 3 2 @ ; 3 0 10097477 07421749 07365193 -dude n 2 2 @ ~ 2 0 10083358 09991026 -dude_ranch n 1 1 @ 1 0 08560295 -dudeen n 1 1 @ 1 0 03253714 -dudgeon n 1 1 @ 1 0 07516756 -dudley_moore n 1 1 @ 1 0 11189829 -dudley_stuart_john_moore n 1 1 @ 1 0 11189829 -duds n 1 2 @ ; 1 0 04446162 -due n 2 1 @ 2 1 05176082 13396861 -due_care n 1 1 @ 1 0 01131794 -due_date n 1 1 @ 1 1 15153225 -due_east n 1 1 @ 1 0 13832355 -due_north n 1 1 @ 1 0 13831176 -due_process n 1 3 @ ~ ; 1 1 01181475 -due_process_of_law n 1 3 @ ~ ; 1 1 01181475 -due_south n 1 1 @ 1 0 13833375 -due_west n 1 1 @ 1 0 13834399 -duel n 2 2 @ + 2 2 01172784 00789237 -dueler n 1 2 @ + 1 0 10038929 -duelist n 1 2 @ + 1 1 10038929 -dueller n 1 2 @ + 1 0 10038929 -duellist n 1 2 @ + 1 0 10038929 -duenna n 1 2 @ ; 1 0 10039164 -duet n 5 4 @ ~ #p %p 5 0 13743605 08247021 07985628 07041451 00529224 -duette n 2 3 @ ~ %p 2 0 08247021 07041451 -duff n 1 1 @ 1 0 07618119 -duffel n 2 1 @ 2 0 03253886 03253796 -duffel_bag n 1 1 @ 1 1 03253886 -duffel_coat n 1 1 @ 1 0 03254046 -duffer n 1 1 @ 1 1 10039271 -duffle n 2 1 @ 2 0 03253886 03253796 -duffle_bag n 1 1 @ 1 0 03253886 -duffle_coat n 1 1 @ 1 0 03254046 -dufy n 1 1 @ 1 0 10944468 -dug n 1 2 @ #p 1 0 02370265 -dugald_stewart n 1 1 @ 1 0 11318039 -dugong n 1 2 @ #m 1 0 02074367 -dugong_dugon n 1 2 @ #m 1 0 02074367 -dugongidae n 1 3 @ #m %m 1 0 02074004 -dugout n 3 3 @ ~ #p 3 1 03254189 03254374 02920503 -dugout_canoe n 1 1 @ 1 0 03254374 -dukas n 1 1 @ 1 0 10944593 -duke n 2 3 @ ~ + 2 1 10038620 10038778 -duke_ellington n 1 1 @ 1 0 10958010 -duke_of_argyll's_tea_tree n 1 1 @ 1 0 12905135 -duke_of_cumberland n 1 1 @ 1 0 10917164 -duke_of_edinburgh n 1 1 @ 1 0 11232475 -duke_of_lancaster n 1 1 @ 1 0 11087091 -duke_of_marlborough n 1 1 @ 1 0 10897594 -duke_of_wellington n 1 1 @ 1 0 11380923 -duke_of_windsor n 1 2 @ #m 1 0 10951697 -duke_university n 1 2 @ #p 1 0 03254505 -duke_wayne n 1 1 @ 1 0 11377712 -dukedom n 2 2 @ + 2 0 14432744 08557131 -dulciana n 1 1 @ 1 0 03254625 -dulcimer n 2 1 @ 2 0 03254862 03254737 -dulcinea n 1 1 @ 1 0 10243384 -dullard n 2 3 @ ~ + 2 1 10667187 09867437 -dulles n 1 1 @ 1 0 10944686 -dullness n 5 5 ! @ ~ = + 5 0 05646039 05205739 04955633 04844891 04705671 -dulse n 1 2 @ #m 1 0 01415139 -duluth n 1 2 @ #p 1 0 09102517 -duma n 1 1 @ 1 0 08320052 -dumas n 1 1 @ 1 0 10944902 -dumb_bomb n 1 2 ! @ 1 0 03255167 -dumb_cane n 1 2 @ #m 1 0 11787625 -dumb_show n 1 2 @ ~ 1 0 00550016 -dumbass n 1 1 @ 1 0 10039663 -dumbbell n 2 1 @ 2 1 03255030 10039391 -dumbness n 1 2 @ + 1 0 05645854 -dumbwaiter n 1 1 @ 1 0 03255322 -dumdum n 1 1 @ 1 0 03255488 -dumdum_bullet n 1 1 @ 1 0 03255488 -dumdum_fever n 1 1 @ 1 0 14181049 -dumetella n 1 3 @ #m %m 1 0 01587406 -dumetella_carolinensis n 1 2 @ #m 1 0 01587526 -dummy n 4 2 @ ~ 4 0 10039569 10039391 03255648 02848921 -dummy_whist n 1 1 @ 1 0 00496437 -dump n 4 4 @ ~ + ; 4 0 13555775 08560027 06390227 03255790 -dump_routine n 1 1 @ 1 0 06583518 -dump_truck n 1 1 @ 1 1 03256166 -dumpcart n 1 2 @ ~ 1 0 03255899 -dumper n 1 2 @ + 1 0 03256166 -dumpiness n 1 2 @ + 1 0 04998816 -dumping n 1 2 @ + 1 0 01115589 -dumpling n 2 2 @ ~ 2 0 07702193 07611148 -dumplings n 1 2 @ ~ 1 0 07702193 -dumps n 1 2 @ ; 1 0 14405061 -dumpsite n 1 2 @ ~ 1 0 08560027 -dumpster n 1 2 @ ; 1 0 03256032 -dumpy_level n 1 1 @ 1 0 03256472 -dumuzi n 1 1 @ 1 0 09517492 -dun n 2 2 @ + 2 1 02381261 04973110 -duncan n 1 1 @ 1 0 10945415 -duncan_grant n 1 2 @ #m 1 0 11011559 -duncan_james_corrow_grant n 1 2 @ #m 1 0 11011559 -dunce n 1 1 @ 1 0 10039663 -dunce's_cap n 1 1 @ 1 0 03256631 -dunce_cap n 1 1 @ 1 0 03256631 -dundathu_pine n 1 2 @ #m 1 0 11648039 -dunderhead n 1 1 @ 1 0 10039663 -dune n 1 2 @ ~ 1 1 09270735 -dune_buggy n 1 1 @ 1 0 03256788 -dune_cycling n 1 1 @ 1 0 00451768 -dung n 1 3 @ ~ + 1 1 14854847 -dung_beetle n 1 2 @ ~ 1 0 02172182 -dungaree n 1 1 @ 1 0 03175189 -dungeness_crab n 2 4 @ #m #p %p 2 0 07788609 01978287 -dungeon n 2 3 @ ~ #p 2 1 03610098 03256928 -dunghill n 2 1 @ 2 0 14495980 07962295 -dunk n 1 3 @ ~ + 1 0 00110554 -dunk_shot n 1 2 @ ~ 1 0 00110554 -dunkard n 1 3 @ #m + 1 0 09677830 -dunker n 3 2 @ #m 3 0 10040049 10039946 09677830 -dunkerque n 2 3 @ #p ; 2 0 08935978 01277938 -dunkers n 1 2 @ %m 1 0 08090547 -dunkirk n 3 3 @ #p ; 3 0 14032868 08935978 01277938 -dunlin n 1 2 @ #m 1 0 02027492 -dunnock n 1 1 @ 1 0 01527347 -duns_scotus n 1 1 @ 1 0 10945546 -duo n 4 3 @ ~ %p 4 0 13743605 08247021 07985628 07041451 -duodecimal n 1 1 @ 1 0 13738459 -duodecimal_digit n 1 1 @ 1 0 13741797 -duodecimal_notation n 1 1 @ 1 0 06810997 -duodecimal_number_system n 1 1 @ 1 0 06811109 -duodecimal_system n 1 1 @ 1 0 06811109 -duodenal_smear n 1 1 @ 1 0 05266096 -duodenal_ulcer n 1 1 @ 1 0 14212579 -duodenum n 1 2 @ + 1 0 05534955 -duologue n 2 1 @ 2 0 07136206 07010692 -duomo n 1 1 @ 1 0 02984203 -dupe n 1 3 @ ~ + 1 0 10752480 -dupery n 1 3 @ ~ + 1 0 00753685 -duple_time n 1 1 @ 1 0 15264168 -duplex n 2 1 @ 2 0 03257210 03257065 -duplex_apartment n 1 1 @ 1 0 03257065 -duplex_house n 1 1 @ 1 0 03257210 -duplicability n 1 2 @ + 1 0 04806169 -duplicate n 2 3 @ ~ + 2 0 03307981 03257343 -duplication n 2 3 @ ~ + 2 2 03257343 01019703 -duplicator n 1 3 @ ~ + 1 0 03257586 -duplicidentata n 1 2 @ #m 1 0 02322992 -duplicity n 2 2 @ + 2 0 06760969 00753240 -dura n 1 3 @ #s + 1 0 05482529 -dura_mater n 1 2 @ #s 1 0 05482529 -durability n 1 3 @ ~ + 1 1 05053688 -durable_goods n 1 3 @ ~ ; 1 0 03257877 -durable_press n 1 1 @ 1 0 03917814 -durables n 1 3 @ ~ ; 1 0 03257877 -durabolin n 1 2 @ ; 1 0 14748335 -duralumin n 1 3 @ %s ; 1 0 14839322 -duramen n 1 2 @ #s 1 0 13097752 -durance n 1 1 @ 1 0 14000105 -durango n 1 2 @ #p 1 0 08743229 -durant n 1 1 @ 1 0 10945699 -durante n 1 1 @ 1 0 10945825 -duration n 3 3 @ ~ = 3 3 15133621 15133488 05051249 -durative n 1 2 @ ~ 1 0 13805179 -durative_aspect n 1 2 @ ~ 1 0 13805179 -durazzo n 1 2 @ #p 1 0 08705251 -durban n 1 2 @ #p 1 0 09001007 -durbar n 1 1 @ 1 0 03258049 -durer n 1 1 @ 1 0 10945977 -duress n 1 1 @ 1 0 05195548 -durga n 1 1 @ 1 0 09525746 -durham n 2 3 @ #p %p 2 0 09128536 02407071 -durian n 2 4 @ #m #p %p 2 0 12190869 07762913 -durian_tree n 1 3 @ #m %p 1 0 12190869 -durio n 1 3 @ #m %m 1 0 12190712 -durio_zibethinus n 1 3 @ #m %p 1 0 12190869 -durion n 1 3 @ #m %p 1 0 12190869 -durkheim n 1 1 @ 1 0 10946134 -durmast n 1 1 @ 1 0 12276477 -durra n 1 1 @ 1 0 12137791 -durrell n 1 1 @ 1 0 10946286 -durres n 1 2 @ #p 1 0 08705251 -durum n 1 1 @ 1 0 12142450 -durum_wheat n 1 1 @ 1 0 12142450 -dusanbe n 1 2 @ #p 1 0 09021313 -duse n 1 1 @ 1 0 10946481 -dushanbe n 1 2 @ #p 1 0 09021313 -dusicyon n 1 2 @ #m 1 0 02116079 -dusicyon_cancrivorus n 1 1 @ 1 0 02116185 -dusk n 1 4 @ ~ #p + 1 1 15169421 -duskiness n 2 2 @ + 2 0 13985323 04978216 -dusky-footed_wood_rat n 1 1 @ 1 0 02339282 -dusky-footed_woodrat n 1 2 @ #m 1 0 02340186 -dusky_salamander n 1 2 @ #m 1 0 01636829 -dusky_shark n 1 2 @ #m 1 0 01490360 -dusseldorf n 1 2 @ #p 1 0 08772667 -dust n 3 3 @ ~ + 3 2 14839846 14857897 14840092 -dust_bag n 1 2 @ #p 1 0 03258192 -dust_bowl n 1 2 @ #p 1 0 08578174 -dust_cloud n 1 1 @ 1 1 11441980 -dust_coat n 1 1 @ 1 0 03258730 -dust_contamination n 2 1 @ 2 0 14487902 00277267 -dust_cover n 3 1 @ 3 0 07248320 03258577 03258456 -dust_devil n 1 1 @ 1 0 11448013 -dust_jacket n 1 1 @ 1 0 07248320 -dust_mop n 1 1 @ 1 0 03258905 -dust_sheet n 1 1 @ 1 0 03258577 -dust_storm n 1 1 @ 1 0 11448153 -dust_wrapper n 1 1 @ 1 0 07248320 -dustbin n 1 1 @ 1 1 02747177 -dustcart n 1 1 @ 1 0 03417042 -dustcloth n 1 1 @ 1 0 03258330 -duster n 4 2 @ + 4 0 11448153 03258730 03258330 00108081 -dustin_hoffman n 1 1 @ 1 0 11054442 -dustiness n 1 2 @ + 1 0 14498733 -dusting_powder n 1 2 @ ~ 1 0 04447276 -dustman n 1 1 @ 1 0 10120330 -dustmop n 1 1 @ 1 0 03258905 -dustpan n 2 1 @ 2 0 13767042 03259009 -dustpanful n 1 1 @ 1 1 13767042 -dustrag n 1 1 @ 1 0 03258330 -dustup n 1 2 @ ~ 1 0 07184149 -dusty_miller n 5 2 @ #m 5 0 12023407 12011620 11947629 11931312 11812094 -dutch n 2 2 @ ~ 2 0 09699763 06952572 -dutch-elm_beetle n 1 2 @ #m 1 0 02179891 -dutch-processed_cocoa n 1 1 @ 1 0 07604043 -dutch_auction n 1 1 @ 1 0 01115734 -dutch_capital n 1 2 @ #p 1 0 08949737 -dutch_case-knife_bean n 1 1 @ 1 0 12557681 -dutch_clover n 1 1 @ 1 0 11753700 -dutch_courage n 1 1 @ 1 0 04858222 -dutch_door n 1 1 @ 1 0 03259118 -dutch_east_indies n 1 6 @ #m #p %m %p - 1 0 08907606 -dutch_elm n 1 2 @ #m 1 0 12407222 -dutch_elm_disease n 1 1 @ 1 0 14282698 -dutch_elm_fungus n 1 2 @ #m 1 0 12964920 -dutch_florin n 1 2 @ %p 1 0 13679855 -dutch_guiana n 1 4 @ #m #p %p 1 0 09030752 -dutch_hoe n 1 1 @ 1 0 04156591 -dutch_iris n 2 1 @ 2 0 12414818 12413301 -dutch_leonard n 1 1 @ 1 0 11128236 -dutch_monetary_unit n 1 2 @ ~ 1 0 13679739 -dutch_oven n 2 1 @ 2 1 03259280 03259401 -dutch_people n 1 2 @ ~ 1 0 09699763 -dutch_treat n 1 1 @ 1 0 00841527 -dutch_uncle n 1 1 @ 1 0 10040240 -dutchman n 1 2 @ #m 1 0 09713108 -dutchman's-pipe n 1 1 @ 1 0 11801665 -dutchman's_breeches n 1 2 @ #m 1 0 11910460 -dutifulness n 1 2 @ + 1 0 04827392 -duty n 3 3 @ ~ + 3 3 01129920 00719494 13315999 -duty_assignment n 1 2 @ ~ 1 0 00730247 -duty_period n 1 3 @ ~ #p 1 0 15291801 -duty_tour n 1 1 @ 1 0 15293590 -duvalier n 2 1 @ 2 0 10946750 10946624 -duvet n 1 2 @ %s 1 0 03266749 -dvd n 1 1 @ 1 0 04533946 -dvorak n 1 1 @ 1 0 10946961 -dwarf n 3 3 @ ~ + 3 1 10040344 09541125 00005930 -dwarf-white_trillium n 1 1 @ 1 0 12468719 -dwarf_astilbe n 1 1 @ 1 0 12795352 -dwarf_banana n 1 2 @ %p 1 0 12352639 -dwarf_bilberry n 1 2 @ %p 1 0 12247407 -dwarf_blueberry n 1 2 @ %p 1 0 12247407 -dwarf_buckeye n 1 1 @ 1 0 12769065 -dwarf_buffalo n 1 2 @ #m 1 0 02409038 -dwarf_cape_gooseberry n 1 1 @ 1 0 12911264 -dwarf_chestnut n 1 3 @ #m %p 1 0 12263738 -dwarf_chinkapin_oak n 1 1 @ 1 0 12277334 -dwarf_chinquapin_oak n 1 1 @ 1 0 12277334 -dwarf_cornel n 1 1 @ 1 0 12948251 -dwarf_daisy n 1 2 @ #m 1 0 11924014 -dwarf_dandelion n 1 1 @ 1 0 11985903 -dwarf_elder n 2 2 @ #m 2 0 12679023 11798270 -dwarf_elm n 1 2 @ #m 1 0 12408077 -dwarf_flowering_almond n 1 1 @ 1 0 12646197 -dwarf_golden_chinkapin n 1 2 @ #m 1 0 12265083 -dwarf_gray_willow n 1 2 @ #m 1 0 12730544 -dwarf_grey_willow n 1 2 @ #m 1 0 12730544 -dwarf_hulsea n 1 2 @ #m 1 0 11983606 -dwarf_iris n 2 1 @ 2 0 12414932 12413165 -dwarf_juniper n 2 1 @ 2 0 11638378 11637991 -dwarf_lycopod n 1 1 @ 1 0 13225075 -dwarf_maple n 1 1 @ 1 0 12754174 -dwarf_mountain_pine n 1 1 @ 1 0 11612349 -dwarf_mulberry n 1 1 @ 1 0 12657294 -dwarf_nipplewort n 1 2 @ #m 1 0 11927740 -dwarf_oak n 1 1 @ 1 0 12277334 -dwarf_phlox n 1 1 @ 1 0 12811027 -dwarf_pipefish n 1 2 @ #m 1 0 01456137 -dwarf_pocket_rat n 1 2 @ #m 1 0 02350670 -dwarf_russian_almond n 1 1 @ 1 0 12650229 -dwarf_sperm_whale n 1 2 @ #m 1 0 02067768 -dwarf_spurge n 1 2 @ #m 1 0 12921315 -dwarf_sumac n 1 1 @ 1 0 12763762 -dwarf_tulip n 1 1 @ 1 0 12454436 -dwarf_willow n 1 2 @ #m 1 0 12728656 -dwarfishness n 1 2 @ + 1 0 05107668 -dwarfism n 1 2 @ ~ 1 0 14506403 -dweeb n 1 1 @ 1 0 10684630 -dweller n 1 3 @ ~ + 1 1 09620078 -dwelling n 1 4 @ ~ %p + 1 1 03259505 -dwelling_house n 1 3 @ ~ %p 1 1 03259505 -dwight_d._eisenhower n 1 1 @ 1 0 10954966 -dwight_david_eisenhower n 1 1 @ 1 0 10954966 -dwight_davis n 1 1 @ 1 0 10924452 -dwight_eisenhower n 1 1 @ 1 0 10954966 -dwight_filley_davis n 1 1 @ 1 0 10924452 -dwight_lyman_moody n 1 1 @ 1 0 11188742 -dwindling n 1 3 @ ~ + 1 0 07422800 -dwindling_away n 1 2 @ ~ 1 1 07422800 -dy n 1 1 @ 1 0 14636647 -dyad n 1 3 @ ~ %p 1 0 13743605 -dyadic_operation n 1 1 @ 1 0 13470392 -dyarchy n 1 1 @ 1 0 08361612 -dyaus n 1 1 @ 1 0 09525874 -dyaus-pitar n 1 1 @ 1 0 09525874 -dybbuk n 1 2 @ ; 1 0 09543154 -dye n 1 4 @ ~ %p + 1 0 14985383 -dye-works n 1 1 @ 1 0 03260206 -dyeing n 1 3 @ ~ + 1 1 00275424 -dyer n 1 2 @ + 1 0 10040515 -dyer's-broom n 1 2 @ #m 1 0 12530818 -dyer's_greenweed n 1 2 @ #m 1 0 12530818 -dyer's_mignonette n 1 2 @ #m 1 0 12385830 -dyer's_rocket n 1 2 @ #m 1 0 12385830 -dyer's_weed n 1 1 @ 1 0 12017511 -dyer's_woad n 1 2 @ #m 1 0 11890150 -dyer's_woodruff n 1 1 @ 1 0 12661661 -dyers'_chamomile n 1 2 @ #m 1 0 11923397 -dyestuff n 1 3 @ ~ %p 1 0 14985383 -dyeweed n 1 2 @ #m 1 0 12530818 -dyewood n 1 1 @ 1 0 15100023 -dying n 1 4 @ ~ #p + 1 1 15143477 -dyirbal n 1 1 @ 1 0 06940502 -dyke n 2 4 @ ~ + ; 2 0 09883947 03160309 -dylan n 2 2 @ ; 2 0 10947108 09509119 -dylan_marlais_thomas n 1 1 @ 1 0 11339041 -dylan_thomas n 1 1 @ 1 0 11339041 -dynamic n 1 1 @ 1 0 09179962 -dynamic_balance n 1 2 @ ; 1 0 14002915 -dynamic_electricity n 1 1 @ 1 0 11514559 -dynamic_headroom n 1 1 @ 1 0 01020628 -dynamic_viscosity n 1 1 @ 1 0 13589140 -dynamical_system n 1 3 @ ~ ; 1 0 06246361 -dynamics n 1 3 @ ~ + 1 1 06113597 -dynamism n 3 2 @ + 3 0 05960925 05030806 04635482 -dynamite n 1 4 @ ~ %s + 1 1 03260293 -dynamiter n 1 2 @ + 1 0 10040789 -dynamitist n 1 2 @ + 1 0 10040789 -dynamo n 1 2 @ %p 1 0 03260504 -dynamometer n 1 1 @ 1 0 03260733 -dynapen n 1 2 @ ; 1 0 03192347 -dynast n 1 1 @ 1 0 10541983 -dynasty n 1 3 @ ~ + 1 1 07971582 -dyne n 1 2 @ #p 1 0 13647498 -dysaphia n 1 1 @ 1 0 14058934 -dysarthria n 1 1 @ 1 0 14402015 -dyscalculia n 1 1 @ 1 0 14099439 -dyschezia n 1 1 @ 1 0 14371449 -dyscrasia n 1 2 @ ~ 1 0 14053717 -dysdercus n 1 3 @ #m %m 1 0 02245239 -dysentery n 1 3 @ ~ %p 1 1 14129999 -dysfunction n 1 4 @ ~ + ; 1 0 14557898 -dysgenesis n 1 1 @ 1 0 14045954 -dysgenics n 1 3 ! @ + 1 0 06042690 -dysgraphia n 1 1 @ 1 0 14099552 -dyskinesia n 1 2 @ ~ 1 0 14092577 -dyslectic n 1 1 @ 1 0 10040617 -dyslexia n 1 2 @ + 1 0 14099643 -dyslogia n 1 1 @ 1 0 14402184 -dysmenorrhea n 1 2 @ ~ 1 0 14326190 -dysomia n 1 2 @ ~ 1 0 14552355 -dysosmia n 1 1 @ 1 0 14059021 -dysostosis_multiplex n 1 1 @ 1 0 14157163 -dyspepsia n 1 3 @ %p + 1 0 14336317 -dyspeptic n 1 1 @ 1 0 10040698 -dysphagia n 1 1 @ 1 0 14059143 -dysphasia n 1 1 @ 1 0 14099785 -dysphemism n 1 4 ! @ ~ + 1 0 06605396 -dysphonia n 1 1 @ 1 0 14402377 -dysphoria n 1 3 ! @ + 1 0 07539367 -dysplasia n 1 3 @ ~ + 1 0 14365950 -dyspnea n 1 3 @ ~ + 1 0 14369744 -dyspnoea n 1 3 @ ~ + 1 0 14369744 -dysprosium n 1 1 @ 1 0 14636647 -dyssynergia n 1 3 @ ~ #p 1 0 14091254 -dysthymia n 1 1 @ 1 0 14389909 -dysthymic_depression n 1 1 @ 1 0 14389909 -dystopia n 2 3 ! @ + 2 0 13932213 06367702 -dystrophy n 2 2 @ ~ 2 0 14160365 14059336 -dysuria n 1 1 @ 1 0 14059252 -dytiscidae n 1 3 @ #m %m 1 0 02177068 -dyushambe n 1 2 @ #p 1 0 09021313 -dziggetai n 1 1 @ 1 0 02390938 -e n 5 3 @ ~ #m 5 0 15092409 14636822 13832355 13754165 06831605 -e-bomb n 1 1 @ 1 0 03761333 -e-commerce n 1 1 @ 1 0 01092974 -e-mail n 1 5 ! @ ~ + ; 1 0 06279326 -e-mycin n 1 2 @ ; 1 0 03295357 -e._a._von_willebrand n 1 1 @ 1 0 11388321 -e._b._white n 1 1 @ 1 0 11383767 -e._coli n 1 1 @ 1 0 01368338 -e._e._cummings n 1 1 @ 1 0 10917377 -e._g._marshall n 1 1 @ 1 0 11159214 -e._h._harriman n 1 1 @ 1 0 11029888 -e._h._weber n 1 1 @ 1 0 11378254 -e._l._doctorow n 1 1 @ 1 0 10937882 -e._o._lawrence n 1 1 @ 1 0 11120368 -e._o._wilson n 1 1 @ 1 0 11391379 -e._t._a._hoffmann n 1 1 @ 1 0 11054670 -e._t._s._walton n 1 1 @ 1 0 11372896 -e._w._morley n 1 1 @ 1 0 11191251 -e.s.p. n 1 2 @ ~ 1 0 07256695 -e_layer n 1 2 @ #p 1 0 08582613 -e_region n 1 2 @ #p 1 0 08582613 -ea n 1 2 @ ; 1 0 09517628 -eacles n 1 3 @ #m %m 1 0 02302124 -eacles_imperialis n 1 2 @ #m 1 0 02302244 -eadweard_muybridge n 1 1 @ 1 0 11198608 -eadwig n 1 1 @ 1 0 10953035 -eager n 1 1 @ 1 0 07403920 -eager_beaver n 1 2 @ ~ 1 0 10040945 -eagerness n 2 3 @ ~ + 2 1 07555184 04644719 -eagle n 4 5 @ ~ #m + ; 4 1 01613294 13595968 13392472 06881563 -eagle_ray n 1 3 @ ~ #m 1 0 01498989 -eagle_scout n 1 1 @ 1 0 10041093 -eaglet n 1 2 @ + 1 0 01613807 -eagre n 1 1 @ 1 0 07403920 -eames n 1 1 @ 1 0 10947259 -eames_chair n 1 1 @ 1 0 03260849 -eamon_de_valera n 1 1 @ 1 0 10932244 -ear n 5 4 @ ~ #p %p 5 4 05320899 05657999 05323889 05703205 13133613 -ear-nose-and-throat_doctor n 1 1 @ 1 0 10059323 -ear-shell n 1 3 @ ~ #m 1 0 01942869 -ear_canal n 1 3 @ #p %p 1 0 05248667 -ear_doctor n 1 2 @ ~ 1 0 10041195 -ear_fungus n 1 2 @ #m 1 0 13062421 -ear_hole n 1 1 @ 1 0 03261157 -ear_lobe n 1 2 @ #p 1 0 05323588 -ear_specialist n 1 2 @ ~ 1 0 10041195 -ear_trumpet n 1 1 @ 1 0 03506560 -earache n 1 1 @ 1 0 14327435 -eardrop n 1 2 @ %p 1 0 03909020 -eardrum n 1 4 @ ~ #p %p 1 0 05318831 -eared_grebe n 1 1 @ 1 0 02050586 -eared_seal n 1 3 @ ~ #m 1 0 02076779 -earflap n 1 2 @ #p 1 0 03261019 -earful n 2 1 @ 2 0 07223094 06713187 -earhart n 1 1 @ 1 0 10947403 -earl n 1 3 @ ~ + 1 1 10041373 -earl_marshal n 1 1 @ 1 0 10041539 -earl_of_leicester n 1 1 @ 1 0 11187754 -earl_of_warwick n 1 1 @ 1 0 11375087 -earl_russell n 1 1 @ 1 0 11274812 -earl_warren n 1 1 @ 1 0 11374789 -earlap n 1 2 @ #p 1 0 03261019 -earldom n 2 2 @ + 2 0 14432875 08557271 -earleaved_umbrella_tree n 1 1 @ 1 0 11710658 -earless_lizard n 1 2 @ #m 1 0 01679307 -earless_seal n 1 3 @ ~ #m 1 0 02079389 -earliness n 1 4 ! @ ~ + 1 0 05046659 -earlobe n 1 2 @ #p 1 0 05323588 -early-morning_hour n 1 2 @ #p 1 0 15169136 -early_bird n 2 1 @ 2 0 10041787 10041684 -early_childhood n 1 2 @ %p 1 1 15145586 -early_coral_root n 1 1 @ 1 0 12054195 -early_days n 1 1 @ 1 1 15266034 -early_morel n 1 1 @ 1 0 13033134 -early_purple_orchid n 1 1 @ 1 0 12043673 -early_spider_orchid n 1 1 @ 1 0 12075299 -early_wake-robin n 1 1 @ 1 0 12468719 -early_warning_radar n 1 2 @ #p 1 0 03261263 -early_warning_system n 1 2 @ %p 1 0 03261395 -early_winter_cress n 1 2 @ #p 1 0 11873845 -earmark n 2 3 @ ~ + 2 0 06795438 04732543 -earmuff n 1 1 @ 1 0 03261603 -earned_run n 1 2 ! @ 1 1 00189896 -earned_run_average n 1 2 @ ; 1 0 07261300 -earner n 1 3 @ ~ + 1 0 10041887 -earnest n 1 2 @ ~ 1 1 13350182 -earnest_money n 1 1 @ 1 0 13350322 -earnestness n 2 4 @ ~ = + 2 1 07512315 04646548 -earning_per_share n 1 1 @ 1 0 13259481 -earnings n 2 5 @ ~ #p %p + 2 2 13258362 13279262 -earnings_before_interest_taxes_depreciation_and_amortization n 1 1 @ 1 0 13255994 -earnings_report n 1 1 @ 1 0 13355301 -earphone n 1 2 @ ~ 1 1 03261776 -earpiece n 1 2 @ ~ 1 0 03261776 -earplug n 2 1 @ 2 0 03262248 03262072 -earreach n 1 1 @ 1 0 08560785 -earring n 1 2 @ ~ 1 0 03262349 -earshot n 1 1 @ 1 0 08560785 -earth n 7 7 @ ~ #m #p %p + ; 7 4 09270894 14842992 09334396 08562067 14844414 05670972 03462747 -earth's_crust n 1 5 @ ~ #p %s %p 1 0 09260010 -earth's_surface n 1 4 @ ~ #p %p 1 1 09451517 -earth-ball n 1 2 @ #m 1 0 12985420 -earth-closet n 1 1 @ 1 0 03860404 -earth-god n 1 1 @ 1 0 09535708 -earth-goddess n 1 2 @ ~ 1 0 09535809 -earth-nut_pea n 1 2 @ #m 1 0 12542240 -earth-received_time n 1 1 @ 1 0 15130612 -earth-tongue n 1 2 @ #m 1 0 13226871 -earth_almond n 1 2 @ #m 1 0 12150969 -earth_color n 1 2 @ ~ 1 0 14673978 -earth_god n 1 1 @ 1 0 09535708 -earth_goddess n 1 2 @ ~ 1 0 09535809 -earth_mother n 1 1 @ 1 0 09535940 -earth_science n 1 2 @ ~ 1 0 06115476 -earth_tremor n 1 2 @ ~ 1 0 07429484 -earth_wax n 1 1 @ 1 0 14665102 -earthball n 1 3 @ ~ #m 1 0 12969131 -earthenware n 1 2 @ ~ 1 0 03262519 -earthenware_jar n 1 1 @ 1 0 03133415 -earthing n 1 2 @ + 1 0 00148836 -earthling n 1 2 @ + 1 0 10699262 -earthly_concern n 1 1 @ 1 0 05670972 -earthman n 1 1 @ 1 1 10699262 -earthnut n 4 3 @ #m #p 4 0 12985420 12936155 07737745 07736971 -earthnut_pea n 1 2 @ #m 1 0 12542240 -earthquake n 2 2 @ ~ 2 1 07428954 13977870 -earthstar n 1 3 @ ~ #m 1 0 13044778 -earthtongue n 1 2 @ #m 1 0 13226871 -earthwork n 1 2 @ ~ 1 0 03262717 -earthworm n 1 2 @ #m 1 0 01935395 -earwax n 1 1 @ 1 0 15095103 -earwig n 1 3 @ ~ #m 1 0 02272871 -eas n 1 1 @ 1 0 07224923 -ease n 5 5 ! @ ~ = + 5 1 04708113 14491889 14445749 04786994 01064148 -easel n 1 1 @ 1 1 03262809 -easement n 2 4 @ ~ + ; 2 0 05179180 00354884 -easiness n 3 4 @ ~ = + 3 0 07515974 04708113 01224346 -easing n 2 3 @ ~ + 2 0 07357101 00354884 -east n 5 4 @ #p %p = 5 3 13832355 08562620 08563180 13835664 08561351 -east-sider n 1 1 @ 1 0 10042186 -east-west_direction n 1 1 @ 1 0 08681422 -east_africa n 1 4 @ #p %p + 1 0 08699426 -east_african_cedar n 1 2 @ #m 1 0 11637659 -east_anglia n 1 2 @ #p 1 0 08884673 -east_by_north n 1 1 @ 1 0 13832236 -east_by_south n 1 1 @ 1 0 13832480 -east_chadic n 1 2 @ ~ 1 0 06985892 -east_china_sea n 1 2 @ #p 1 0 09271291 -east_coast n 1 2 @ #p 1 0 09048127 -east_german n 1 2 @ #m 1 1 09748101 -east_germanic n 1 2 @ ~ 1 0 06955560 -east_germanic_language n 1 2 @ ~ 1 0 06955560 -east_germany n 1 2 @ %m 1 0 08768647 -east_india n 1 6 @ #p %m %p + - 1 0 08841956 -east_india_company n 1 1 @ 1 0 08002717 -east_india_kino n 1 2 @ #s 1 0 12566112 -east_india_rosewood n 1 2 @ #m 1 0 12522678 -east_indian n 1 2 @ #m 1 0 09700253 -east_indian_fig_tree n 1 1 @ 1 0 12402348 -east_indian_rosebay n 1 2 @ #m 1 0 11776511 -east_indian_rosewood n 1 2 @ #m 1 0 12522678 -east_indies n 1 5 @ #p %m %p - 1 0 08841956 -east_malaysia n 1 3 @ #p %p 1 0 08964099 -east_midland n 1 1 @ 1 0 06948943 -east_northeast n 1 1 @ 1 0 13832118 -east_pakistan n 1 5 @ #p %m %p - 1 0 08848731 -east_river n 1 2 @ #p 1 0 09123387 -east_saint_louis n 1 2 @ #p 1 0 09083795 -east_sea n 1 2 @ #p 1 0 09428036 -east_side n 1 1 @ 1 1 08650073 -east_southeast n 1 1 @ 1 0 13832599 -east_sussex n 1 3 @ #p %p 1 0 08883309 -east_timor n 1 2 @ #p 1 0 08776435 -east_tocharian n 1 1 @ 1 0 06968909 -east_turkestan_islamic_movement n 1 2 @ ; 1 0 08019913 -east_turkistan_islamic_movement n 1 2 @ ; 1 0 08019913 -east_wind n 1 2 @ ~ 1 0 11448343 -easter n 2 3 @ ~ + 2 1 15188154 11448343 -easter_bunny n 1 1 @ 1 0 02451818 -easter_cactus n 1 2 @ #m 1 0 11848009 -easter_card n 1 1 @ 1 1 06627722 -easter_daisy n 1 2 @ #m 1 0 12026476 -easter_day n 1 1 @ 1 0 15188359 -easter_egg n 2 2 @ ~ 2 0 07841907 07841800 -easter_lily n 1 1 @ 1 0 12427757 -easter_lily_vine n 1 2 @ #m 1 0 11771147 -easter_sunday n 1 1 @ 1 0 15188359 -easterly n 1 2 @ ~ 1 0 11448343 -eastern_catholicism n 1 1 @ 1 0 06228346 -eastern_chimpanzee n 1 1 @ 1 0 02482286 -eastern_chinquapin n 1 3 @ #m %p 1 0 12263738 -eastern_chipmunk n 1 2 @ #m 1 0 02359915 -eastern_church n 2 3 @ ~ - 2 0 08086356 08086219 -eastern_coral_snake n 1 2 @ #m 1 0 01745902 -eastern_cottontail n 1 1 @ 1 0 02325722 -eastern_cottonwood n 1 1 @ 1 0 12732966 -eastern_cricket_frog n 1 1 @ 1 0 01651778 -eastern_dasyure n 1 1 @ 1 0 01884104 -eastern_desert n 1 2 @ #p 1 0 09168020 -eastern_fence_lizard n 1 1 @ 1 0 01680813 -eastern_flowering_dogwood n 1 1 @ 1 0 12947313 -eastern_fox_squirrel n 1 2 @ #m 1 0 02356798 -eastern_gray_squirrel n 1 2 @ #m 1 0 02356381 -eastern_grey_squirrel n 1 2 @ #m 1 0 02356381 -eastern_ground_snake n 1 2 @ #m 1 0 01736796 -eastern_hemisphere n 1 2 @ %p 1 0 08562243 -eastern_hemlock n 1 1 @ 1 0 11627512 -eastern_highlands n 1 3 @ #p %p 1 0 09292545 -eastern_hop_hornbeam n 1 2 @ #m 1 0 12288005 -eastern_indigo_snake n 1 1 @ 1 0 01741442 -eastern_kingbird n 1 1 @ 1 0 01548865 -eastern_lowland_gorilla n 1 2 @ #m 1 0 02481235 -eastern_malayo-polynesian n 1 2 @ ~ 1 0 06937985 -eastern_meadowlark n 1 1 @ 1 0 01573240 -eastern_narrow-mouthed_toad n 1 2 @ #m 1 0 01653223 -eastern_orthodox n 1 3 @ ~ - 1 0 08086356 -eastern_orthodox_church n 1 3 @ ~ - 1 0 08086356 -eastern_pasque_flower n 1 1 @ 1 0 11737752 -eastern_pipistrel n 1 2 @ #m 1 0 02148088 -eastern_poison_oak n 1 2 @ #m 1 0 12767423 -eastern_red-backed_salamander n 1 2 @ #m 1 0 01636352 -eastern_red_cedar n 1 1 @ 1 0 11637247 -eastern_roman_empire n 1 4 @ #p %m %p 1 0 08800676 -eastern_samoa n 1 3 @ #p %p 1 0 08991878 -eastern_silvery_aster n 1 1 @ 1 0 11936113 -eastern_sioux n 1 1 @ 1 0 09667572 -eastern_spruce n 1 1 @ 1 0 11626826 -eastern_standard_time n 1 1 @ 1 0 15131994 -eastern_time n 1 1 @ 1 0 15131994 -eastern_turki n 1 1 @ 1 0 06928047 -eastern_united_states n 1 4 @ #p %p = 1 0 08563180 -eastern_white_pine n 1 1 @ 1 0 11613219 -eastern_woodrat n 1 2 @ #m 1 0 02340358 -easterner n 1 1 @ 1 0 10042074 -eastertide n 1 1 @ 1 0 15191587 -eastman n 1 1 @ 1 0 10947628 -eastward n 1 1 @ 1 0 13832355 -easy_chair n 1 2 @ ~ 1 1 03262932 -easy_going n 1 1 @ 1 0 00282953 -easy_lay n 1 1 @ 1 0 04253751 -easy_mark n 1 1 @ 1 0 10604089 -easy_money n 2 2 ! @ 2 1 13255883 13256303 -easy_street n 1 1 @ 1 0 13344386 -easygoingness n 1 2 @ + 1 0 04640722 -eatable n 1 2 @ ~ 1 0 07556637 -eatage n 1 1 @ 1 0 07801091 -eater n 2 3 @ ~ + 2 0 10042300 07708260 -eatery n 1 3 @ ~ #m 1 0 04081281 -eating n 1 4 @ ~ %p + 1 1 00838367 -eating_apple n 1 3 ! @ ~ 1 0 07739506 -eating_away n 1 3 @ ~ ; 1 0 13475538 -eating_disorder n 1 2 @ ~ 1 0 14055623 -eating_house n 1 3 @ ~ #m 1 0 04081281 -eating_place n 1 3 @ ~ #m 1 0 04081281 -eating_utensil n 1 3 @ ~ %p 1 0 03153375 -eaton-lambert_syndrome n 1 1 @ 1 0 14079156 -eats n 1 1 @ 1 0 07565161 -eau_claire n 1 2 @ #p 1 0 09157657 -eau_de_cologne n 1 1 @ 1 0 03071021 -eau_de_cologne_mint n 1 1 @ 1 0 12855710 -eau_de_javelle n 1 1 @ 1 0 14921974 -eau_de_toilette n 1 1 @ 1 0 04448070 -eau_de_vie n 1 1 @ 1 0 07902443 -eaves n 1 3 @ #p ; 1 0 03263076 -eavesdropper n 1 3 @ ~ + 1 0 10042690 -eb n 3 3 @ #p %p 3 0 13631194 13631037 13630864 -ebb n 2 3 @ #p + 2 0 13470491 07402147 -ebbing n 1 2 @ + 1 1 13470491 -ebbtide n 1 3 ! @ %p 1 0 07402393 -ebenaceae n 1 3 @ #m %m 1 0 12770068 -ebenales n 1 3 @ #m %m 1 0 12769815 -ebionite n 1 1 @ 1 0 10349836 -ebit n 1 3 @ #p %p 1 0 13631194 -ebitda n 1 1 @ 1 0 13255994 -eblis n 1 2 @ ; 1 0 09544876 -ebn n 1 1 @ 1 0 13832236 -ebola n 1 1 @ 1 0 14135623 -ebola_fever n 1 1 @ 1 0 14135623 -ebola_hemorrhagic_fever n 1 1 @ 1 0 14135623 -ebola_virus n 1 2 @ #m 1 0 01332009 -ebonics n 1 3 @ ; - 1 0 06947658 -ebonite n 1 1 @ 1 0 15007534 -ebony n 3 5 @ #m #s %s + 3 1 04960582 12770736 12770529 -ebony_family n 1 3 @ #m %m 1 0 12770068 -ebony_spleenwort n 1 1 @ 1 0 13181244 -ebony_tree n 1 3 @ #m %s 1 0 12770529 -ebro n 1 2 @ #p 1 0 09271415 -ebro_river n 1 2 @ #p 1 0 09271415 -ebs n 1 1 @ 1 0 13832480 -ebullience n 1 3 @ ~ + 1 0 04634540 -ebullition n 1 2 @ ~ 1 0 07014320 -eburnation n 1 1 @ 1 0 13470687 -eburophyton n 1 3 @ #m %m 1 0 12060380 -eburophyton_austinae n 1 2 @ #m 1 0 12060546 -ebv n 1 1 @ 1 0 01339623 -ec n 1 2 @ %m 1 0 08173515 -ecarte n 1 1 @ 1 0 00492195 -ecballium n 1 3 @ #m %m 1 0 12165608 -ecballium_elaterium n 1 2 @ #m 1 0 12165758 -ecc n 1 3 @ ~ ; 1 0 06357424 -ecce_homo n 1 1 @ 1 0 03263206 -eccentric n 2 2 @ ~ 2 1 10042845 09909060 -eccentric_person n 1 2 @ ~ 1 0 10042845 -eccentricity n 3 5 ! @ ~ + ; 3 1 04798881 13877129 05073888 -ecchymosis n 2 1 @ 2 0 14289079 13470868 -eccles n 1 1 @ 1 0 10947922 -eccles_cake n 1 2 @ ; 1 0 07631212 -ecclesiastes n 1 2 @ #p 1 0 06437531 -ecclesiastic n 1 2 @ ~ 1 0 09928136 -ecclesiastical_attire n 1 1 @ 1 0 03263338 -ecclesiastical_benefice n 1 2 @ ~ 1 0 13248087 -ecclesiastical_calendar n 1 2 @ %p 1 0 15181718 -ecclesiastical_law n 1 2 @ - 1 0 08453299 -ecclesiastical_mode n 1 1 @ 1 0 06860481 -ecclesiastical_province n 1 1 @ 1 0 14515816 -ecclesiastical_robe n 1 1 @ 1 0 03263338 -ecclesiasticism n 2 1 @ 2 1 01213234 05948716 -ecclesiasticus n 1 2 @ #p 1 0 06460295 -ecclesiology n 1 1 @ 1 0 06183004 -eccm n 1 1 @ 1 0 00995356 -eccrine_gland n 1 1 @ 1 0 05331035 -eccyesis n 1 2 @ ~ 1 0 14047740 -ecdysiast n 1 2 @ ~ 1 0 10664340 -ecdysis n 1 1 @ 1 0 13516842 -ecesis n 1 2 @ ; 1 0 13476267 -ecf n 1 2 @ ~ 1 0 05398023 -ecg n 1 2 @ #p 1 0 07004057 -echelon n 2 2 @ ; 2 0 08272352 03263474 -echeneididae n 1 3 @ #m %m 1 0 02574651 -echeneis n 1 3 @ #m %m 1 0 02575168 -echeneis_naucrates n 1 2 @ #m 1 0 02575325 -echidna n 2 2 @ #m 2 0 01872772 01872401 -echidnophaga n 1 3 @ #m %m 1 0 02187759 -echidnophaga_gallinacea n 1 2 @ #m 1 0 02187900 -echinacea n 1 3 @ #m %m 1 0 11962108 -echinocactus n 1 3 @ ~ #m 1 0 11845557 -echinocactus_grusonii n 1 1 @ 1 0 11845913 -echinocereus n 1 3 @ #m %m 1 0 11846087 -echinochloa n 1 3 @ #m %m 1 0 12117507 -echinochloa_crusgalli n 1 2 @ #m 1 0 12117695 -echinochloa_frumentacea n 1 2 @ #m 1 0 12117912 -echinococcosis n 1 1 @ 1 0 14453414 -echinococcus n 1 2 @ #m 1 0 01927928 -echinoderm n 1 4 @ ~ #m %p 1 0 02316707 -echinoderm_family n 1 3 @ ~ #m 1 0 02316038 -echinoderm_genus n 1 3 @ ~ #m 1 0 02316180 -echinodermata n 1 3 @ #m %m 1 0 02316392 -echinoidea n 1 3 @ #m %m 1 0 02318915 -echinops n 1 3 @ #m %m 1 0 11962500 -echinus n 1 1 @ 1 0 03263640 -echinus_esculentus n 1 1 @ 1 0 02319308 -echium n 1 3 @ #m %m 1 0 12819560 -echium_vulgare n 1 2 @ #m 1 0 12819728 -echo n 6 4 @ ~ + ; 6 1 05010801 09549047 07200290 05011162 04746607 01021119 -echo_chamber n 1 1 @ 1 0 03264021 -echo_sounder n 1 3 @ #p %p 1 0 04259771 -echo_sounding n 1 1 @ 1 0 00155797 -echocardiogram n 1 1 @ 1 0 07003935 -echocardiograph n 1 1 @ 1 0 03263758 -echocardiography n 1 1 @ 1 0 00832306 -echoencephalogram n 1 1 @ 1 0 07003807 -echoencephalograph n 1 1 @ 1 0 03263888 -echoencephalography n 1 1 @ 1 0 00832471 -echogram n 1 1 @ 1 0 04260364 -echography n 1 2 @ ~ 1 0 00901789 -echolalia n 2 2 @ ; 2 0 07200421 01018951 -echolocation n 1 1 @ 1 0 00155797 -echovirus n 1 1 @ 1 0 01338333 -eck n 1 1 @ 1 0 10948117 -eckhart n 1 1 @ 1 0 10948312 -eclair n 1 2 @ ~ 1 0 07628691 -eclampsia n 1 1 @ 1 0 14191284 -eclat n 3 1 @ 3 0 06691684 04815002 04814872 -eclectic n 1 1 @ 1 0 10043024 -eclectic_method n 1 1 @ 1 0 05788713 -eclecticism n 1 2 @ + 1 0 05788713 -eclecticist n 1 2 @ + 1 0 10043024 -eclipse n 1 4 @ ~ %p + 1 1 07368646 -eclipsis n 1 1 @ 1 0 13473716 -ecliptic n 1 1 @ 1 1 08565214 -eclogue n 1 1 @ 1 0 06379439 -ecm n 1 2 @ ~ 1 0 00995134 -eco-warfare n 1 2 @ ; 1 0 00764031 -ecobabble n 1 1 @ 1 0 07069074 -ecological_niche n 1 2 @ ; 1 0 13924336 -ecological_succession n 1 2 @ ; 1 0 13562862 -ecological_terrorism n 1 2 @ ; 1 0 00764031 -ecological_warfare n 1 2 @ ; 1 0 00764031 -ecologist n 1 2 @ + 1 0 10043163 -ecology n 2 4 @ ~ + - 2 0 14513062 06070929 -econometrician n 1 2 @ + 1 0 10043491 -econometrics n 1 2 @ + 1 0 06150449 -econometrist n 1 1 @ 1 0 10043491 -economic_aid n 1 2 @ ~ 1 0 13265904 -economic_and_social_council n 1 2 @ #m 1 0 08296720 -economic_and_social_council_commission n 1 3 @ ~ #m 1 0 08296911 -economic_commission_for_africa n 1 1 @ 1 0 08297863 -economic_commission_for_asia_and_the_far_east n 1 1 @ 1 0 08298074 -economic_commission_for_europe n 1 1 @ 1 0 08298319 -economic_commission_for_latin_america n 1 1 @ 1 0 08298521 -economic_condition n 1 2 @ ~ 1 0 14488594 -economic_consumption n 1 3 @ ~ ; 1 0 13451804 -economic_crisis n 1 2 @ ~ 1 0 14489113 -economic_expert n 1 3 @ ~ #m 1 0 10043643 -economic_geography n 1 1 @ 1 0 06122976 -economic_geology n 1 2 @ ~ 1 0 06121854 -economic_growth n 1 1 @ 1 0 13471052 -economic_libertarian n 1 1 @ 1 0 10043331 -economic_mobilisation n 1 1 @ 1 0 01230566 -economic_mobilization n 1 1 @ 1 0 01230566 -economic_policy n 1 2 @ ~ 1 1 06656741 -economic_process n 1 2 @ ~ 1 0 13471206 -economic_rent n 1 1 @ 1 0 13296270 -economic_science n 1 4 @ ~ %p - 1 0 06149484 -economic_strangulation n 1 1 @ 1 1 01162062 -economic_system n 1 3 @ ~ %p 1 1 08366753 -economic_theory n 1 4 @ ~ #p ; 1 0 05994935 -economic_value n 1 2 @ ~ 1 1 13413493 -economics n 1 4 @ ~ %p - 1 1 06149484 -economics_department n 1 1 @ 1 0 08116398 -economics_profession n 1 2 @ %m 1 0 08113322 -economiser n 1 3 @ ~ + 1 0 10044470 -economist n 1 4 @ ~ #m + 1 1 10043643 -economizer n 1 3 @ ~ + 1 0 10044470 -economy n 4 4 @ ~ %p + 4 4 08366753 05644727 04893787 00192613 -economy_class n 1 1 @ 1 0 02932693 -economy_of_scale n 1 1 @ 1 0 00193099 -ecosoc n 1 2 @ #m 1 0 08296720 -ecosoc_commission n 1 3 @ ~ #m 1 0 08296911 -ecosystem n 1 1 @ 1 0 08368757 -ecoterrorism n 1 2 @ ; 1 0 00764031 -ecotourism n 1 1 @ 1 0 00298351 -ecphonesis n 1 1 @ 1 0 07102802 -ecrevisse n 2 4 @ #m #p %p 2 0 07788885 01985493 -ecru n 1 1 @ 1 0 04973291 -ecstasy n 3 2 @ + 3 2 13986372 13988101 02678738 -ecstatic_state n 1 1 @ 1 0 05681855 -ect n 1 1 @ 1 0 00706605 -ectasia n 1 2 @ ~ 1 0 14064044 -ectasis n 1 2 @ ~ 1 0 14064044 -ectoblast n 1 2 @ ~ 1 0 01463739 -ectoderm n 1 3 @ ~ + 1 0 01463739 -ectomorph n 1 1 @ 1 0 10044682 -ectomorphy n 1 1 @ 1 0 04999111 -ectoparasite n 1 2 @ ~ 1 0 01385330 -ectopia n 1 2 @ + 1 0 05081660 -ectopic_gestation n 1 2 @ ~ 1 0 14047740 -ectopic_pregnancy n 1 2 @ ~ 1 0 14047740 -ectopistes n 1 3 @ #m %m 1 0 01815135 -ectopistes_migratorius n 1 2 @ #m 1 0 01815270 -ectoplasm n 2 2 @ ; 2 0 15109931 05433856 -ectoproct n 1 2 @ #m 1 0 02314158 -ectoprocta n 1 3 @ #m %m 1 0 02314001 -ectotherm n 1 1 @ 1 0 01315581 -ectozoan n 1 2 @ ~ 1 0 01385330 -ectozoon n 1 3 @ ~ + 1 0 01385330 -ectrodactyly n 1 1 @ 1 0 14093464 -ecuador n 1 7 @ #m #p %m %p + - 1 0 08776687 -ecuadoran n 1 2 @ #m 1 0 09700371 -ecuadoran_monetary_unit n 1 2 @ ~ 1 0 13707473 -ecuadorian n 1 2 @ #m 1 0 09700371 -ecumenical_council n 1 2 @ ~ 1 0 08312988 -ecumenical_movement n 1 1 @ 1 0 08474875 -ecumenicalism n 1 2 @ ; 1 0 06790235 -ecumenicism n 1 2 @ ; 1 0 06790235 -ecumenism n 2 3 @ + ; 2 0 08471949 06790235 -eczema n 1 2 @ ~ 1 0 14226056 -eczema_herpeticum n 1 1 @ 1 0 14225463 -eczema_hypertrophicum n 1 1 @ 1 0 14225877 -eczema_marginatum n 1 1 @ 1 0 14126519 -eczema_vaccinatum n 1 1 @ 1 0 14225632 -ed n 1 1 @ 1 0 14045141 -ed_sullivan n 1 1 @ 1 0 11324619 -edacity n 2 2 @ + 2 0 14040071 04886402 -edam n 1 1 @ 1 0 07853445 -edaphosauridae n 1 3 @ #m %m 1 0 01722085 -edaphosaurus n 1 2 @ #m 1 0 01722389 -edd n 1 1 @ 1 0 06703213 -edda n 2 3 @ #s #p 2 0 07736813 06953471 -eddie_rickenbacker n 1 1 @ 1 0 11261804 -eddington n 1 1 @ 1 0 10948478 -eddo n 1 2 @ #p 1 0 11786843 -eddy n 2 2 @ + 2 0 10948656 07432973 -eddy_merckx n 1 1 @ 1 0 11175605 -edecrin n 1 2 @ ; 1 0 03299648 -edelweiss n 1 2 @ #m 1 0 11989393 -edema n 1 3 @ ~ + 1 1 14316714 -eden n 2 1 @ 2 0 08565506 05628658 -edentata n 1 3 @ #m %m 1 0 02453373 -edentate n 1 3 @ ~ #m 1 0 02453611 -ederle n 1 1 @ 1 0 10948798 -edgar n 1 1 @ 1 0 10948993 -edgar_albert_guest n 1 1 @ 1 0 11018683 -edgar_allan_poe n 1 1 @ 1 0 11240480 -edgar_degas n 1 1 @ 1 0 10927687 -edgar_douglas_adrian n 1 1 @ 1 0 10808886 -edgar_guest n 1 1 @ 1 0 11018683 -edgar_lee_masters n 1 1 @ 1 0 11164058 -edgar_rice_burroughs n 1 1 @ 1 0 10874393 -edgar_varese n 1 1 @ 1 0 11360534 -edgar_wallace n 1 1 @ 1 0 11371622 -edgard_lawrence_doctorow n 1 1 @ 1 0 10937882 -edge n 6 3 @ ~ + 6 6 08565701 13903079 03264136 05171978 05158857 03264542 -edge_tool n 1 3 @ ~ %p 1 0 03265032 -edger n 2 2 @ + 2 0 10044763 03264906 -edgeworth-kuiper_belt n 1 2 @ #m 1 0 09327538 -edginess n 1 3 @ ~ + 1 0 07525057 -edging n 1 4 @ ~ #p + 1 0 03265479 -edibility n 1 3 @ ~ + 1 0 04997472 -edible n 1 2 @ ~ 1 0 07556637 -edible-pod_pea n 1 2 @ ~ 1 0 12560775 -edible-podded_pea n 1 2 @ ~ 1 0 12560775 -edible_asparagus n 1 3 @ #m %p 1 0 12441183 -edible_banana n 1 2 @ %p 1 0 12353203 -edible_bean n 1 3 @ ~ #p 1 0 07724943 -edible_cockle n 1 2 @ %p 1 0 01960177 -edible_corn n 1 4 @ ~ #p %p 1 0 07731952 -edible_fat n 1 2 @ ~ 1 0 07672135 -edible_fruit n 1 3 @ ~ %p 1 0 07705931 -edible_mussel n 1 3 @ #m %p 1 0 01964271 -edible_nut n 1 2 @ ~ 1 0 07737081 -edible_sea_urchin n 1 1 @ 1 0 02319308 -edible_seed n 1 2 @ ~ 1 0 07770571 -edible_snail n 1 3 @ #m %s 1 0 01944812 -edibleness n 1 3 @ ~ + 1 0 04997472 -edict n 2 3 @ ~ ; 2 0 06726671 06539770 -edification n 1 3 @ ~ + 1 0 05987835 -edifice n 1 3 @ ~ %p 1 1 02913152 -edinburgh n 1 2 @ #p 1 0 08892596 -edirne n 1 2 @ #p 1 0 08916111 -edison n 1 1 @ 1 0 10949192 -edith_cavell n 1 1 @ 1 0 10888151 -edith_giovanna_gassion n 1 1 @ 1 0 11234152 -edith_louisa_cavell n 1 1 @ 1 0 10888151 -edith_newbold_jones_wharton n 1 1 @ 1 0 11382795 -edith_piaf n 1 1 @ 1 0 11234152 -edith_wharton n 1 1 @ 1 0 11382795 -editing n 1 4 @ ~ + ; 1 0 06427831 -edition n 4 2 @ ~ 4 2 06590446 07959393 06597204 05840650 -editor n 2 4 @ ~ + ; 2 1 10044879 06574841 -editor_in_chief n 1 2 @ ~ 1 0 10044879 -editor_program n 1 3 @ ~ ; 1 0 06574841 -editorial n 1 4 @ ~ #p + 1 1 06268567 -editorial_department n 1 2 @ ~ 1 0 08118414 -editorialist n 1 3 @ ~ + 1 0 09939154 -editorship n 1 2 @ + 1 0 00592102 -edmond_de_goncourt n 1 1 @ 1 0 11006431 -edmond_halley n 1 1 @ 1 0 11025326 -edmond_hoyle n 1 1 @ 1 0 11063182 -edmond_louis_antoine_huot_de_goncourt n 1 1 @ 1 0 11006431 -edmond_malone n 1 1 @ 1 0 11152122 -edmond_rostand n 1 1 @ 1 0 11271859 -edmonton n 1 2 @ #p 1 0 08822742 -edmontonia n 1 2 @ #m 1 0 01702479 -edmontosaurus n 1 2 @ #m 1 0 01707000 -edmund_burke n 1 1 @ 1 0 10873059 -edmund_cartwright n 1 1 @ 1 0 10885352 -edmund_charles_edouard_genet n 1 1 @ 1 0 10994097 -edmund_halley n 1 1 @ 1 0 11025326 -edmund_hillary n 1 1 @ 1 0 11050183 -edmund_husserl n 1 1 @ 1 0 11068630 -edmund_i n 1 1 @ 1 0 10949424 -edmund_ii n 1 1 @ 1 0 10949586 -edmund_ironside n 1 1 @ 1 0 10949586 -edmund_john_millington_synge n 1 1 @ 1 0 11327744 -edmund_kean n 1 1 @ 1 0 11098223 -edmund_malone n 1 1 @ 1 0 11152122 -edmund_spenser n 1 1 @ 1 0 11310833 -edmund_wilson n 1 1 @ 1 0 11391123 -edna_ferber n 1 1 @ 1 0 10968504 -edna_millay n 1 1 @ 1 0 11179797 -edna_o'brien n 1 1 @ 1 0 11211322 -edna_saint_vincent_millay n 1 1 @ 1 0 11179797 -edo n 2 2 @ #p 2 0 09737981 08923348 -edouard_lemaitre n 1 1 @ 1 0 11125646 -edouard_manet n 1 1 @ 1 0 11153887 -edouard_vuillard n 1 1 @ 1 0 11369551 -edp n 1 1 @ 1 0 13472341 -edronax n 1 1 @ 1 0 04060316 -eds n 1 1 @ 1 0 03305300 -edsel_bryant_ford n 1 1 @ 1 0 10975101 -edta n 1 1 @ 1 0 14851668 -eduard_buchner n 1 1 @ 1 0 10870072 -educatee n 1 4 @ ~ #m + 1 0 10665698 -education n 6 6 @ ~ %p + ; - 6 5 00883297 05984287 05753564 00611433 04921900 08132637 -education_department n 1 2 @ ; 1 0 08132637 -education_secretary n 2 2 @ #m 2 0 10571435 00600871 -educational_activity n 1 4 @ ~ %p - 1 1 00883297 -educational_institution n 1 2 @ ~ 1 1 08276342 -educational_program n 1 2 @ ~ 1 0 05900430 -educationalist n 1 2 @ + 1 0 10045454 -educationist n 1 2 @ + 1 0 10045454 -educator n 1 3 @ ~ + 1 1 10045713 -edutainment n 1 1 @ 1 0 00515578 -edvard_grieg n 1 1 @ 1 0 11016199 -edvard_hagerup_grieg n 1 1 @ 1 0 11016199 -edvard_munch n 1 1 @ 1 0 11196208 -edward n 10 3 @ #m + 10 0 10951697 10951459 10951278 10951017 10950786 10950448 10950219 10950092 10949952 10949782 -edward_albee n 1 1 @ 1 0 10811228 -edward_antony_richard_louis n 1 1 @ 1 0 10949952 -edward_appleton n 1 1 @ 1 0 10820613 -edward_benjamin_britten n 1 1 @ 1 0 10864635 -edward_bouverie_pusey n 1 1 @ 1 0 11248997 -edward_calvin_kendall n 1 1 @ 1 0 11100462 -edward_d._white n 1 1 @ 1 0 11384291 -edward_douglas_white_jr. n 1 1 @ 1 0 11384291 -edward_durell_stone n 1 1 @ 1 0 11319134 -edward_estlin_cummings n 1 1 @ 1 0 10917377 -edward_everett_hale n 1 1 @ 1 0 11023327 -edward_fitzgerald n 1 1 @ 1 0 10972298 -edward_franklin_albeen n 1 1 @ 1 0 10811228 -edward_g._robinson n 1 1 @ 1 0 11265416 -edward_george_earle_bulwer-lytton n 1 1 @ 1 0 11146494 -edward_gibbon n 1 1 @ 1 0 10997742 -edward_goldenberg_robinson n 1 1 @ 1 0 11265416 -edward_henry_harriman n 1 1 @ 1 0 11029888 -edward_i n 1 1 @ 1 0 10950092 -edward_ii n 1 1 @ 1 0 10950219 -edward_iii n 1 1 @ 1 0 10950448 -edward_iv n 1 1 @ 1 0 10950786 -edward_james_hughes n 1 1 @ 1 0 11065229 -edward_james_muggeridge n 1 1 @ 1 0 11198608 -edward_jean_steichen n 1 1 @ 1 0 11314514 -edward_jenner n 1 1 @ 1 0 11082135 -edward_kendall n 1 1 @ 1 0 11100462 -edward_kennedy_ellington n 1 1 @ 1 0 10958010 -edward_lawrie_tatum n 1 1 @ 1 0 11332892 -edward_lear n 1 1 @ 1 0 11122439 -edward_lee_thorndike n 1 1 @ 1 0 11341137 -edward_macdowell n 1 1 @ 1 0 11147185 -edward_morley n 1 1 @ 1 0 11191251 -edward_osborne_wilson n 1 1 @ 1 0 11391379 -edward_pusey n 1 1 @ 1 0 11248997 -edward_r._murrow n 1 1 @ 1 0 11197743 -edward_roscoe_murrow n 1 1 @ 1 0 11197743 -edward_sapir n 1 1 @ 1 0 11281174 -edward_teach n 1 1 @ 1 0 11334003 -edward_teller n 1 1 @ 1 0 11335041 -edward_thatch n 1 1 @ 1 0 11334003 -edward_the_confessor n 1 1 @ 1 0 10952143 -edward_the_elder n 1 1 @ 1 0 10952421 -edward_the_martyr n 1 1 @ 1 0 10952629 -edward_v n 1 1 @ 1 0 10951017 -edward_vernon_rickenbacker n 1 1 @ 1 0 11261804 -edward_vi n 1 1 @ 1 0 10951278 -edward_vii n 1 2 @ #m 1 0 10951459 -edward_viii n 1 2 @ #m 1 0 10951697 -edward_vincent_sullivan n 1 1 @ 1 0 11324619 -edward_weston n 1 1 @ 1 0 11382688 -edward_white n 1 1 @ 1 0 11384291 -edward_williams_morley n 1 1 @ 1 0 11191251 -edward_winslow n 1 1 @ 1 0 11392913 -edward_wyllis_scripps n 1 1 @ 1 0 11290272 -edward_young n 1 1 @ 1 0 11403600 -edwardian n 1 2 @ + 1 0 10046387 -edwards n 1 1 @ 1 0 10951948 -edwin n 1 1 @ 1 0 10952919 -edwin_arlington_robinson n 1 1 @ 1 0 11265591 -edwin_dubois_hayward n 1 1 @ 1 0 11049001 -edwin_herbert_land n 1 1 @ 1 0 11115558 -edwin_hubble n 1 1 @ 1 0 11063687 -edwin_powell_hubble n 1 1 @ 1 0 11063687 -edwy n 1 1 @ 1 0 10953035 -ee n 1 3 @ ~ - 1 0 06128024 -eec n 1 2 @ %m 1 0 08173515 -eeg n 1 1 @ 1 1 07004241 -eel n 2 4 @ ~ #m #p 2 0 07783967 02526121 -eelam n 1 2 @ #p 1 0 08719892 -eelblenny n 1 2 @ #m 1 0 02616128 -eelgrass n 2 2 @ #m 2 0 12618727 12615232 -eelgrass_family n 1 2 @ #m 1 0 12618336 -eelpout n 2 3 @ ~ #m 2 0 02617207 02523427 -eelworm n 1 2 @ ~ 1 0 01931714 -eeriness n 1 2 @ + 1 0 04798020 -eero_saarinen n 1 1 @ 1 0 11276971 -effacement n 2 3 @ #p + 2 0 13471517 00054328 -effect n 6 4 @ ~ + ; 6 5 11410625 04675314 05917477 06604066 04809642 14311348 -effecter n 1 2 @ + 1 0 10046527 -effectiveness n 2 5 ! @ ~ = + 2 2 05199286 05034225 -effectivity n 1 4 @ ~ = + 1 0 05199286 -effector n 3 4 ! @ %p + 3 0 10046527 05465228 05298421 -effects n 1 1 @ 1 0 13246079 -effectuality n 1 4 @ ~ = + 1 0 05199286 -effectualness n 1 4 @ ~ = + 1 0 05199286 -effectuation n 1 3 @ ~ + 1 0 00044150 -effeminacy n 1 3 @ ~ ; 1 0 04668139 -effeminateness n 1 4 @ ~ + ; 1 0 04668139 -effendi n 1 1 @ 1 0 09735790 -efferent n 1 4 @ ~ %p + 1 0 05474738 -efferent_fiber n 1 2 @ #p 1 0 05474976 -efferent_nerve n 1 3 @ ~ %p 1 0 05474738 -efferent_neuron n 1 2 @ #p 1 0 05466696 -effervescence n 2 2 @ + 2 0 13471681 04733347 -efficaciousness n 1 3 @ = + 1 0 05199869 -efficacy n 1 4 ! @ = + 1 1 05199869 -efficiency n 2 4 ! @ ~ + 2 2 13820993 05644527 -efficiency_apartment n 1 1 @ 1 0 03265754 -efficiency_engineer n 1 1 @ 1 1 10046717 -efficiency_expert n 1 1 @ 1 0 10046717 -effigy n 1 2 @ ~ 1 0 03265874 -effleurage n 1 2 @ #p 1 0 00659667 -efflorescence n 4 3 @ ~ + 4 0 15295045 14321953 13439570 11410527 -effluence n 1 2 @ + 1 0 13529295 -effluent n 1 2 @ #s 1 1 14857021 -effluvium n 1 1 @ 1 0 14853530 -efflux n 1 2 ! @ 1 0 13529295 -effort n 4 2 @ ~ 4 3 00786195 00621627 00036762 00798245 -effortfulness n 1 4 ! @ ~ + 1 0 04709585 -effortlessness n 1 4 ! @ ~ + 1 0 04708543 -effrontery n 1 2 @ ~ 1 0 04838727 -effulgence n 1 3 @ ~ + 1 0 04953954 -effusion n 2 3 @ ~ + 2 0 07014320 00329943 -effusiveness n 1 2 @ + 1 0 04651009 -efrem_zimbalist n 1 1 @ 1 0 11407048 -eft n 1 1 @ 1 0 01631663 -egadi_islands n 1 2 @ #p 1 0 08784905 -egalitarian n 1 3 ! @ + 1 0 10046870 -egalitarianism n 1 1 @ 1 1 05967588 -egalite n 1 1 @ 1 0 13947010 -egality n 1 2 @ + 1 0 13947010 -egbert n 1 1 @ 1 0 10953188 -egeria n 1 2 @ #m 1 0 12614962 -egeria_densa n 1 1 @ 1 0 12614763 -egg n 3 6 @ ~ #p %s %p + 3 2 01460457 07840804 05524615 -egg-and-anchor n 1 1 @ 1 0 03266195 -egg-and-dart n 1 1 @ 1 0 03266195 -egg-and-tongue n 1 1 @ 1 0 03266195 -egg-laying_mammal n 1 2 @ ~ 1 0 01871875 -egg_cell n 1 3 @ ~ #p 1 0 05457973 -egg_cream n 1 1 @ 1 0 07928264 -egg_cup n 1 1 @ 1 0 03266498 -egg_en_cocotte n 1 1 @ 1 0 07842605 -egg_foo_yong n 1 2 @ ; 1 0 07866571 -egg_fu_yung n 1 2 @ ; 1 0 07866571 -egg_laying n 1 1 @ 1 1 13506477 -egg_noodle n 1 1 @ 1 0 07699815 -egg_roll n 1 2 @ ; 1 0 07866723 -egg_timer n 1 1 @ 1 0 03266620 -egg_white n 1 2 @ #p 1 0 07841037 -egg_yolk n 1 2 @ #p 1 0 07841345 -eggar n 1 2 @ #m 1 0 02306825 -eggbeater n 2 3 @ ~ %p 2 0 03512147 03266371 -eggcup n 1 1 @ 1 0 03266498 -eggdrop_soup n 1 1 @ 1 0 07587331 -egger n 1 2 @ #m 1 0 02306825 -eggfruit n 1 2 @ #p 1 0 07755262 -egghead n 1 1 @ 1 1 10047030 -eggnog n 1 1 @ 1 0 07932039 -eggplant n 2 4 @ #m #p %p 2 1 07713074 12896000 -eggplant_bush n 1 3 @ #m %p 1 0 12896000 -eggs n 1 3 @ %s %p 1 1 07840804 -eggs_benedict n 1 1 @ 1 0 07866868 -eggshake n 1 1 @ 1 0 07923495 -eggshell n 1 2 @ #p 1 0 09432430 -eggwhisk n 1 1 @ 1 0 03266371 -egis n 1 3 @ ~ #p 1 0 02895154 -eglantine n 1 1 @ 1 0 12621619 -eglevsky n 1 1 @ 1 0 10953344 -ego n 3 3 @ ~ ; 3 2 07508806 05675601 05613170 -ego_ideal n 1 2 @ ; 1 0 05925862 -ego_trip n 1 1 @ 1 0 00373862 -egocentric n 1 2 @ + 1 0 10047199 -egocentrism n 1 1 @ 1 0 04835028 -egoism n 2 4 ! @ + ; 2 0 05953263 04835028 -egoist n 2 3 @ ~ + 2 0 10047459 10047199 -egomania n 1 1 @ 1 0 09182142 -egomaniac n 1 1 @ 1 0 10047371 -egotism n 2 3 @ ~ + 2 1 04887497 07508806 -egotist n 1 3 @ ~ + 1 1 10047459 -egress n 3 6 ! @ ~ #p + ; 3 0 07322138 07319909 00044455 -egression n 1 3 @ ~ + 1 0 00044455 -egret n 1 2 @ ~ 1 0 02008796 -egretta n 1 3 @ #m %m 1 0 02009015 -egretta_albus n 1 2 @ #m 1 0 02009912 -egretta_caerulea n 1 2 @ #m 1 0 02009229 -egretta_garzetta n 1 2 @ #m 1 0 02009508 -egretta_thula n 1 2 @ #m 1 0 02009380 -egtk n 1 2 @ ; 1 0 08046032 -egypt n 2 7 @ #m #p %m %p + - 2 1 08897065 08896831 -egyptian n 2 4 @ ~ #m + 2 0 09700492 06990000 -egyptian_bean n 1 2 @ #m 1 0 12537569 -egyptian_capital n 1 3 @ #p %m 1 0 08898633 -egyptian_cat n 1 1 @ 1 0 02124075 -egyptian_cobra n 1 2 @ #m 1 0 01748389 -egyptian_corn n 1 1 @ 1 0 12137791 -egyptian_cotton n 1 1 @ 1 0 12177249 -egyptian_deity n 1 3 @ ~ ; 1 0 09510904 -egyptian_empire n 1 1 @ 1 0 08896831 -egyptian_grass n 1 1 @ 1 0 12116734 -egyptian_henbane n 1 2 @ #m 1 0 12904562 -egyptian_islamic_jihad n 1 2 @ ; 1 0 08012765 -egyptian_lupine n 1 1 @ 1 0 12546420 -egyptian_monetary_unit n 1 2 @ ~ 1 0 13693908 -egyptian_onion n 1 1 @ 1 0 12433540 -egyptian_paper_reed n 1 2 @ #m 1 0 12151365 -egyptian_paper_rush n 1 2 @ #m 1 0 12151365 -egyptian_pea n 1 2 @ %p 1 0 12515711 -egyptian_pound n 1 2 @ %p 1 0 13694017 -egyptian_vulture n 1 2 @ #m 1 0 01617766 -egyptian_water_lily n 1 2 @ #m 1 0 11715810 -egyptologist n 1 3 @ ~ + 1 0 10047822 -egyptology n 1 2 @ + 1 0 06144855 -ehadhamen n 1 2 @ #p 1 0 09038079 -ehf n 1 2 @ #p 1 0 05058025 -ehrenberg n 1 1 @ 1 0 10953473 -ehrlich n 1 1 @ 1 0 10953605 -eib n 1 3 @ #p %p 1 0 13630864 -eibit n 1 3 @ #p %p 1 0 13631355 -eichhornia n 1 3 @ #m %m 1 0 12610186 -eichhornia_crassipes n 1 2 @ #m 1 0 12610328 -eichhornia_spesiosa n 1 2 @ #m 1 0 12610328 -eichmann n 1 1 @ 1 0 10953797 -eicosapentaenoic_acid n 1 1 @ 1 0 14847654 -eider n 1 3 @ #m %p 1 0 01853195 -eider_duck n 1 3 @ #m %p 1 0 01853195 -eiderdown n 2 4 @ #s #p %s 2 0 03266749 01896844 -eidos n 1 2 @ ; 1 0 04723436 -eiffel n 1 1 @ 1 0 10954039 -eiffel_tower n 1 2 @ #p 1 0 03266906 -eigen n 1 1 @ 1 0 10954180 -eigenvalue n 1 1 @ 1 0 05856589 -eigenvalue_of_a_matrix n 1 1 @ 1 0 05856589 -eigenvalue_of_a_square_matrix n 1 1 @ 1 0 05856589 -eight n 3 1 @ 3 0 13745086 08275497 03267340 -eight-spot n 1 1 @ 1 0 03267340 -eight_ball n 1 1 @ 1 0 03267113 -eighteen n 1 1 @ 1 0 13747865 -eighteenth n 1 1 @ 1 0 13848684 -eighteenth_amendment n 1 3 @ #p ; 1 0 06728998 -eighter n 1 1 @ 1 0 13745086 -eighter_from_decatur n 1 1 @ 1 0 13745086 -eighth n 2 1 @ 2 0 13847616 13738140 -eighth_cranial_nerve n 1 2 @ #p 1 0 05479503 -eighth_note n 1 1 @ 1 0 06871384 -eighties n 3 2 @ #p 3 0 15151084 15150993 15150870 -eightieth n 1 1 @ 1 0 13849512 -eightpence n 1 1 @ 1 0 13391610 -eightpenny_nail n 1 1 @ 1 0 03267256 -eightsome n 2 1 @ 2 0 07987903 00540396 -eightvo n 1 1 @ 1 0 05096408 -eighty n 1 1 @ 1 0 13750164 -eijkman n 1 1 @ 1 0 10954328 -eileen_farrell n 1 1 @ 1 0 10967152 -eimeria n 1 2 @ #m 1 0 01423302 -eimeriidae n 1 3 @ #m %m 1 0 01423001 -eindhoven n 1 2 @ #p 1 0 08950649 -einstein n 2 3 @ ~ + 2 0 10954498 10126926 -einstein's_general_theory_of_relativity n 1 1 @ 1 0 06106820 -einstein's_special_theory_of_relativity n 1 1 @ 1 0 06107083 -einstein's_theory_of_relativity n 1 4 @ ~ ; - 1 0 06106502 -einsteinium n 1 1 @ 1 0 14636822 -einthoven n 1 1 @ 1 0 10954819 -eira n 1 3 @ #m %m 1 0 02451292 -eira_barbara n 1 2 @ #m 1 0 02451415 -eire n 1 5 @ #m #p %p - 1 0 08888676 -eisegesis n 1 2 @ ; 1 0 07171785 -eisenhower n 1 1 @ 1 0 10954966 -eisenstaedt n 1 1 @ 1 0 10955282 -eisenstein n 1 1 @ 1 0 10955483 -eisteddfod n 1 3 @ ~ ; 1 0 00517231 -eitchen_midden n 1 2 @ ; 1 0 08560560 -ejaculate n 1 4 @ ~ %p + 1 0 05404336 -ejaculation n 2 3 @ ~ + 2 1 07125958 13471815 -ejaculator n 2 2 @ + 2 0 10048117 10048001 -ejaculatory_duct n 1 2 @ #p 1 0 05527389 -ejection n 2 3 @ ~ + 2 1 00116687 00206927 -ejection_seat n 1 2 @ #p 1 0 03267468 -ejector n 2 3 @ #p + 2 0 10386071 02972533 -ejector_seat n 1 2 @ #p 1 0 03267468 -ekbom_syndrome n 1 1 @ 1 0 14309394 -ekg n 1 2 @ #p 1 0 07004057 -ekman n 1 1 @ 1 0 10955748 -el n 2 2 @ ~ 2 0 13836550 03280813 -el-aksur n 1 2 @ #p 1 0 08899577 -el_aaium n 1 2 @ #p 1 0 08969948 -el_alamein n 2 3 @ #p ; 2 0 08898941 01278232 -el_beda n 1 2 @ #p 1 0 08987262 -el_caudillo n 1 1 @ 1 0 10978842 -el_cid n 1 1 @ 1 0 09598491 -el_dorado n 1 1 @ 1 0 05627514 -el_giza n 1 2 @ #p 1 0 08899149 -el_greco n 1 1 @ 1 0 10956377 -el_iskandriyah n 1 2 @ #p 1 0 08898187 -el_libertador n 2 2 @ #p 2 0 10855604 09272773 -el_misti n 1 2 @ #p 1 0 09174566 -el_muerto n 1 2 @ #p 1 0 09272927 -el_nino n 2 3 @ ~ ; 2 0 11488601 11084110 -el_nino_southern_oscillation n 1 1 @ 1 0 11488828 -el_paso n 1 2 @ #p 1 0 09144117 -el_qahira n 1 3 @ #p %m 1 0 08898633 -el_salvador n 1 6 @ #m #p %m %p + 1 0 08738272 -el_salvadoran_colon n 1 2 @ %p 1 0 13667643 -el_salvadoran_monetary_unit n 1 2 @ ~ 1 0 13667523 -ela n 1 2 @ ; 1 0 08043169 -elaborateness n 2 3 @ ~ + 2 0 04766852 04698112 -elaboration n 5 3 @ ~ + 5 1 00371487 07357679 07172756 04766852 00250710 -elaeagnaceae n 1 3 @ #m %m 1 0 12325497 -elaeagnus n 1 3 @ #m %m 1 0 12325667 -elaeagnus_augustifolia n 1 1 @ 1 0 12326369 -elaeagnus_commutata n 1 1 @ 1 0 12326178 -elaeagnus_latifolia n 1 1 @ 1 0 12326033 -elaeis n 1 3 @ #m %m 1 0 12590117 -elaeis_guineensis n 1 1 @ 1 0 12590499 -elaeis_oleifera n 1 1 @ 1 0 12590600 -elaeocarpaceae n 1 3 @ #m %m 1 0 12192373 -elaeocarpus n 1 3 @ #m %m 1 0 12192722 -elaeocarpus_family n 1 3 @ #m %m 1 0 12192373 -elaeocarpus_grandis n 1 3 @ #m %p 1 0 12192877 -elaeostearic_acid n 1 1 @ 1 0 14847810 -elagatis n 1 2 @ #m 1 0 02577291 -elagatis_bipinnulata n 1 1 @ 1 0 02577403 -elaidic_acid n 1 1 @ 1 0 14840342 -elam n 1 1 @ 1 0 08913242 -elamite n 2 1 @ 2 0 09640715 06968454 -elamitic n 1 1 @ 1 0 06968454 -elan n 3 1 @ 3 0 07555402 04812871 04633570 -elan_vital n 1 2 @ ; 1 0 11523839 -eland n 1 3 @ ~ #m 1 0 02426813 -elanoides n 1 3 @ #m %m 1 0 01608934 -elanoides_forficatus n 1 2 @ #m 1 0 01609062 -elanus n 1 3 @ #m %m 1 0 01609236 -elanus_leucurus n 1 2 @ #m 1 0 01609391 -elaphe n 1 3 @ #m %m 1 0 01732445 -elaphe_guttata n 1 2 @ #m 1 0 01732614 -elaphe_obsoleta n 1 2 @ #m 1 0 01732789 -elaphure n 1 2 @ #m 1 0 02435517 -elaphurus n 1 3 @ #m %m 1 0 02435386 -elaphurus_davidianus n 1 2 @ #m 1 0 02435517 -elapid n 1 3 @ ~ #m 1 0 01745125 -elapid_snake n 1 3 @ ~ #m 1 0 01745125 -elapidae n 1 3 @ #m %m 1 0 01744657 -elapsed_time n 1 2 @ ~ 1 0 15131123 -elasmobranch n 1 3 @ ~ #m 1 0 01482071 -elasmobranchii n 1 3 @ #m %m 1 0 01481599 -elastance n 1 1 @ 1 0 11433698 -elastance_unit n 1 2 @ ~ 1 0 13633596 -elastase n 1 1 @ 1 0 14849540 -elastic n 2 2 @ + 2 0 04116098 03267696 -elastic_band n 1 1 @ 1 0 04116098 -elastic_bandage n 1 2 @ ~ 1 0 03267821 -elastic_device n 1 2 @ ~ 1 0 03267972 -elastic_energy n 1 1 @ 1 0 11448835 -elastic_modulus n 1 3 @ ~ ; 1 0 13587963 -elastic_potential_energy n 1 1 @ 1 0 11448835 -elastic_tissue n 1 2 @ %s 1 0 05287368 -elasticity n 1 4 ! @ ~ + 1 1 05020358 -elasticity_of_shear n 1 1 @ 1 0 05021740 -elastin n 1 2 @ #s 1 0 05287731 -elastomer n 1 1 @ 1 0 14840583 -elastoplast n 1 2 @ ; 1 0 03268142 -elastosis n 1 1 @ 1 0 14035502 -elater n 1 3 @ ~ #m 1 0 02176261 -elaterid n 1 3 @ ~ #m 1 0 02176261 -elaterid_beetle n 1 3 @ ~ #m 1 0 02176261 -elateridae n 1 3 @ #m %m 1 0 02176073 -elation n 2 4 ! @ ~ + 2 2 14405225 07527656 -elavil n 1 2 @ ; 1 0 02702575 -elbe n 1 2 @ #p 1 0 09271558 -elbe_river n 1 2 @ #p 1 0 09271558 -elbow n 5 4 @ #p %p + 5 2 05579944 03268470 03268553 03268311 02468368 -elbow_bone n 1 3 @ #p %p 1 0 05593476 -elbow_grease n 1 2 @ ~ 1 0 00621627 -elbow_joint n 1 3 @ #p %p 1 0 05579944 -elbow_pad n 1 1 @ 1 0 03268645 -elbow_room n 1 2 @ ~ 1 0 13777764 -elbowing n 1 2 @ + 1 0 00114298 -eld n 2 4 @ ~ #p %p 2 0 15153787 15145171 -elder n 3 4 @ ~ #m + 3 1 10048218 12678224 10048367 -elder_hand n 1 1 @ 1 0 10048729 -elder_statesman n 2 1 @ 2 0 10048612 10048485 -elderberry n 2 2 @ #p 2 0 12679201 07765208 -elderberry_bush n 1 3 @ ~ #m 1 0 12678224 -elderly n 1 1 @ 1 0 07943870 -eldership n 1 2 @ + 1 0 00592199 -eldest n 1 2 @ + 1 0 10092643 -eldest_hand n 1 1 @ 1 0 10048729 -eldorado n 1 1 @ 1 0 05627514 -eleanor_gwyn n 1 1 @ 1 0 11020888 -eleanor_gwynn n 1 1 @ 1 0 11020888 -eleanor_gwynne n 1 1 @ 1 0 11020888 -eleanor_of_aquitaine n 1 1 @ 1 0 10955920 -eleanor_roosevelt n 1 1 @ 1 0 11270380 -elecampane n 1 1 @ 1 0 11984659 -elect n 1 2 @ + 1 0 08386853 -elected_official n 1 2 @ ~ 1 0 10048836 -election n 4 4 @ ~ + - 4 2 00181781 00180962 13926329 05966798 -election_commission n 1 1 @ 1 0 08325124 -election_day n 1 1 @ 1 1 15172881 -election_district n 1 1 @ 1 0 08538730 -election_fraud n 1 1 @ 1 0 00777679 -electioneering n 2 4 @ ~ %p + 2 0 07245885 00799537 -elective n 1 1 @ 1 0 00890808 -elective_course n 1 1 @ 1 0 00890808 -elector n 2 4 @ ~ #m + 2 1 10760340 10473273 -electoral_college n 1 1 @ 1 0 08238313 -electoral_system n 1 3 @ ~ ; 1 0 05904135 -electorate n 1 3 @ %m + 1 0 08161068 -electra n 1 2 @ ; 1 0 09596884 -electra_complex n 1 1 @ 1 0 07483005 -electric n 1 1 @ 1 0 03268790 -electric-arc_furnace n 1 2 @ #p 1 0 04305016 -electric-discharge_lamp n 1 1 @ 1 0 03271376 -electric-light_bulb n 1 2 @ %p 1 0 03665924 -electric_arc n 1 2 @ ~ 1 0 11511523 -electric_automobile n 1 1 @ 1 0 03268790 -electric_battery n 1 3 @ ~ %p 1 0 02810471 -electric_bell n 1 3 @ ~ %p 1 0 03270695 -electric_bill n 1 1 @ 1 0 06517345 -electric_blanket n 1 1 @ 1 0 03270854 -electric_burn n 1 1 @ 1 0 14289829 -electric_car n 1 1 @ 1 0 03268790 -electric_catfish n 1 2 @ #m 1 0 02518622 -electric_cell n 1 2 @ ~ 1 0 02991048 -electric_chair n 1 1 @ 1 1 03271030 -electric_charge n 1 2 @ ~ 1 0 11435028 -electric_circuit n 1 4 @ ~ #p %p 1 1 03033362 -electric_clock n 1 2 @ %p 1 0 03271260 -electric_company n 1 1 @ 1 0 08186393 -electric_cord n 1 2 @ ~ 1 0 03106898 -electric_current n 1 2 @ ~ 1 1 11443532 -electric_dipole n 1 1 @ 1 0 09271774 -electric_dipole_moment n 1 1 @ 1 0 11483472 -electric_discharge n 1 2 @ ~ 1 1 11511523 -electric_doublet n 1 1 @ 1 0 09271774 -electric_drill n 1 4 @ #p %p + 1 0 03240140 -electric_eel n 1 2 @ #m 1 0 01444339 -electric_eye n 1 3 @ ~ %p 1 0 03924978 -electric_fan n 1 2 @ %p 1 0 03271574 -electric_field n 1 2 @ ~ 1 0 11449658 -electric_fire n 1 3 @ ~ %p 1 0 03272239 -electric_frying_pan n 1 1 @ 1 0 03271765 -electric_furnace n 1 2 @ ~ 1 0 03271865 -electric_glow n 1 1 @ 1 0 11440802 -electric_guitar n 1 1 @ 1 0 03272010 -electric_hammer n 1 2 @ %p 1 0 03272125 -electric_healing n 1 2 @ ~ 1 0 00662681 -electric_heater n 1 3 @ ~ %p 1 1 03272239 -electric_lamp n 1 2 @ ~ 1 0 03272383 -electric_light n 1 2 @ %p 1 1 03665924 -electric_locomotive n 1 2 @ %p 1 0 03272562 -electric_main n 1 2 @ #p 1 0 03272696 -electric_meter n 1 1 @ 1 0 03272810 -electric_mixer n 1 2 @ %p 1 0 03272940 -electric_motor n 1 4 @ ~ #p %p 1 0 03273061 -electric_organ n 1 2 @ ; 1 0 03273551 -electric_outlet n 1 2 @ ~ 1 1 04548771 -electric_pig n 1 1 @ 1 0 03212114 -electric_potential n 1 2 @ ~ 1 0 11493827 -electric_power n 1 2 @ ~ 1 1 11449419 -electric_range n 1 2 @ %p 1 0 03273740 -electric_ray n 1 2 @ #m 1 0 01496331 -electric_razor n 1 1 @ 1 1 04185804 -electric_receptacle n 1 2 @ ~ 1 0 04548771 -electric_refrigerator n 1 3 @ ~ %p 1 1 03273913 -electric_resistance n 1 2 @ ~ 1 0 11503968 -electric_sander n 1 2 @ %p 1 0 03250588 -electric_shaver n 1 1 @ 1 0 04185804 -electric_shock n 3 1 @ 3 1 01163586 14291823 00839292 -electric_socket n 1 2 @ #p 1 0 03274137 -electric_storm n 1 1 @ 1 0 11519253 -electric_switch n 1 2 @ ~ 1 0 04372370 -electric_thermometer n 1 1 @ 1 0 04421083 -electric_toothbrush n 1 2 @ %p 1 1 03274265 -electric_typewriter n 1 2 @ %p 1 0 03274435 -electrical_cable n 1 1 @ 1 0 03268918 -electrical_capacity n 1 1 @ 1 0 11433546 -electrical_circuit n 1 4 @ ~ #p %p 1 0 03033362 -electrical_condenser n 1 3 @ ~ #p 1 0 02955247 -electrical_conduction n 1 2 @ ~ 1 0 11512650 -electrical_contact n 1 1 @ 1 0 03269073 -electrical_converter n 1 2 @ ~ 1 0 03269203 -electrical_device n 1 3 @ ~ %p 1 0 03269401 -electrical_discharge n 1 2 @ ~ 1 0 07307895 -electrical_distributor n 1 3 @ #p %p 1 0 03213014 -electrical_disturbance n 1 1 @ 1 0 11514288 -electrical_elastance n 1 1 @ 1 0 11433698 -electrical_energy n 1 2 @ ~ 1 0 11450566 -electrical_engineer n 1 2 @ ~ 1 1 10049017 -electrical_engineering n 1 3 @ ~ - 1 0 06128024 -electrical_fuse n 1 2 @ ~ 1 0 03407369 -electrical_healing n 1 2 @ ~ 1 0 00662681 -electrical_line_of_force n 1 1 @ 1 0 11457283 -electrical_outlet n 1 2 @ ~ 1 0 04548771 -electrical_phenomenon n 1 2 @ ~ 1 0 11449002 -electrical_plant n 1 1 @ 1 0 03270579 -electrical_power n 1 2 @ ~ 1 0 11449419 -electrical_relay n 1 3 @ #p %p 1 0 04072960 -electrical_resistance n 1 2 @ ~ 1 0 11503968 -electrical_shock n 1 1 @ 1 1 00839292 -electrical_shunt n 1 2 @ #p 1 0 04211001 -electrical_skin_response n 1 2 @ #p 1 0 00860011 -electrical_storm n 1 1 @ 1 0 11519253 -electrical_switch n 1 2 @ ~ 1 0 04372370 -electrical_system n 2 3 @ #p %p 2 0 03270579 03270165 -electrical_work n 1 1 @ 1 1 00608265 -electrician n 1 2 @ ~ 1 0 10049363 -electricity n 3 4 @ ~ + - 3 3 11449907 11450566 07514600 -electrification n 2 2 @ + 2 0 01047191 00952615 -electro-acoustic_transducer n 1 3 @ ~ %p 1 0 03274561 -electrocardiogram n 1 2 @ #p 1 0 07004057 -electrocardiograph n 1 2 @ #p 1 1 02963503 -electrocardiography n 1 1 @ 1 0 00832092 -electrocautery n 1 1 @ 1 0 00697734 -electrochemical_series n 1 1 @ 1 0 08377454 -electrochemistry n 1 2 @ + 1 0 06089857 -electroconvulsive_therapy n 1 1 @ 1 0 00706605 -electrocution n 2 2 @ + 2 0 01165112 00228078 -electrocutioner n 1 1 @ 1 0 10049522 -electrode n 1 3 @ ~ #p 1 1 03274796 -electrodeposition n 1 1 @ 1 0 13471958 -electrodermal_response n 1 2 @ #p 1 0 00860011 -electrodynamometer n 1 1 @ 1 0 03275125 -electroencephalogram n 1 1 @ 1 0 07004241 -electroencephalograph n 1 1 @ 1 0 03275311 -electrograph n 2 1 @ 2 0 03275566 03275451 -electrologist n 1 1 @ 1 0 10049648 -electrolysis n 2 3 @ + ; 2 1 13472125 00255065 -electrolyte n 1 3 @ ~ + 1 0 14847929 -electrolyte_acid n 1 1 @ 1 0 14773865 -electrolyte_balance n 1 1 @ 1 0 14017665 -electrolytic n 1 1 @ 1 0 03275681 -electrolytic_capacitor n 1 1 @ 1 0 03275681 -electrolytic_cell n 1 3 ! @ %p 1 0 03275864 -electrolytic_condenser n 1 1 @ 1 0 03275681 -electromagnet n 1 4 @ ~ #p %p 1 1 03276179 -electromagnetic_delay_line n 1 1 @ 1 0 03276431 -electromagnetic_interaction n 1 1 @ 1 0 11516439 -electromagnetic_intrusion n 1 1 @ 1 0 00995855 -electromagnetic_radiation n 1 3 @ ~ %p 1 0 11450869 -electromagnetic_spectrum n 1 2 @ %p 1 0 11451442 -electromagnetic_unit n 1 2 @ ~ 1 0 13602526 -electromagnetic_wave n 1 3 @ ~ %p 1 0 11450869 -electromagnetics n 1 1 @ 1 0 06099107 -electromagnetism n 2 2 @ + 2 0 11479368 06099107 -electromechanical_device n 1 1 @ 1 0 03276574 -electrometer n 1 1 @ 1 0 03276696 -electromotive_drug_administration n 1 1 @ 1 0 00663878 -electromotive_force n 1 1 @ 1 0 11523538 -electromotive_force_series n 1 1 @ 1 0 08377454 -electromotive_series n 1 1 @ 1 0 08377454 -electromyogram n 1 1 @ 1 0 07004422 -electromyograph n 1 1 @ 1 0 03276839 -electromyography n 1 1 @ 1 1 01006054 -electron n 1 2 @ ~ 1 1 09271904 -electron_accelerator n 1 1 @ 1 0 03277004 -electron_beam n 1 2 @ ~ 1 0 11428379 -electron_gun n 1 2 @ #p 1 0 03277149 -electron_lens n 1 1 @ 1 0 03656957 -electron_microscope n 1 3 @ ~ %p 1 0 03279508 -electron_microscopy n 1 1 @ 1 0 00641109 -electron_multiplier n 1 1 @ 1 0 03279804 -electron_optics n 1 1 @ 1 0 06115004 -electron_orbit n 1 1 @ 1 0 08612340 -electron_paramagnetic_resonance n 1 1 @ 1 0 00641222 -electron_radiation n 1 1 @ 1 0 11428699 -electron_shell n 1 1 @ 1 0 07959659 -electron_spin_resonance n 1 1 @ 1 0 00641222 -electron_tube n 1 4 @ ~ #p %p 1 0 04494204 -electron_volt n 1 1 @ 1 0 13725902 -electronegativity n 1 2 @ ; 1 0 04944513 -electronic_balance n 1 1 @ 1 0 03277459 -electronic_bulletin_board n 1 2 @ ; 1 0 02916684 -electronic_communication n 1 2 @ ~ 1 0 06278662 -electronic_computer n 1 6 @ ~ #p %p ; - 1 0 03082979 -electronic_converter n 1 2 @ ; 1 0 03277602 -electronic_counter-countermeasures n 1 1 @ 1 0 00995356 -electronic_countermeasures n 1 2 @ ~ 1 0 00995134 -electronic_data_processing n 1 1 @ 1 0 13472341 -electronic_database n 1 3 @ ~ ; 1 0 06588511 -electronic_deception n 1 2 @ ~ 1 0 01251270 -electronic_device n 1 2 @ ~ 1 1 03277771 -electronic_dictionary n 1 1 @ 1 0 06639023 -electronic_equipment n 1 3 @ ~ %p 1 1 03278248 -electronic_fetal_monitor n 1 1 @ 1 0 03278914 -electronic_foetal_monitor n 1 1 @ 1 0 03278914 -electronic_image n 1 1 @ 1 0 02845425 -electronic_imitative_deception n 1 1 @ 1 0 01251923 -electronic_information_service n 1 3 @ ~ ; 1 0 06588511 -electronic_instrument n 1 2 @ ~ 1 0 03279153 -electronic_jamming n 1 2 @ ~ 1 0 01253379 -electronic_mail n 1 4 ! @ ~ ; 1 0 06279326 -electronic_manipulative_deception n 1 1 @ 1 0 01251489 -electronic_messaging n 1 1 @ 1 0 06280477 -electronic_musical_instrument n 1 2 @ ~ 1 0 03279153 -electronic_network n 1 3 @ ~ ; 1 0 03820728 -electronic_organ n 1 2 @ ; 1 0 03273551 -electronic_reconnaissance n 1 1 @ 1 0 00986080 -electronic_scanner n 1 1 @ 1 0 04142731 -electronic_signal n 1 2 @ ~ 1 0 07263220 -electronic_simulative_deception n 1 1 @ 1 0 01251724 -electronic_stylus n 1 2 @ ; 1 0 03668279 -electronic_surveillance n 1 1 @ 1 0 00654765 -electronic_text n 1 2 @ ~ 1 0 06391171 -electronic_transistor n 1 4 @ ~ %p ; 1 0 04471632 -electronic_voltmeter n 1 2 @ ~ 1 0 03279364 -electronic_warfare n 1 3 @ ~ ; 1 0 00954751 -electronic_warfare-support_measures n 1 1 @ 1 0 00995588 -electronics n 1 4 @ ~ + - 1 1 06099269 -electronics_company n 1 2 @ #m 1 0 08003035 -electronics_industry n 1 2 @ %m 1 0 08067801 -electronics_intelligence n 1 1 @ 1 0 00983102 -electrophoresis n 1 3 @ ~ + 1 1 13472518 -electrophoridae n 1 3 @ #m %m 1 0 01443998 -electrophorus n 2 3 @ #m %m 2 1 03279918 01444164 -electrophorus_electric n 1 2 @ #m 1 0 01444339 -electroplate n 1 2 @ + 1 0 03280064 -electroplater n 1 2 @ + 1 0 10049788 -electroretinogram n 1 1 @ 1 0 07004564 -electroscope n 1 1 @ 1 0 03280216 -electroshock n 1 1 @ 1 1 00706605 -electroshock_therapy n 1 1 @ 1 1 00706605 -electrosleep n 1 1 @ 1 0 05680684 -electrostatic_bond n 1 1 @ 1 0 11437344 -electrostatic_charge n 1 1 @ 1 0 11435358 -electrostatic_field n 1 1 @ 1 0 11435541 -electrostatic_generator n 1 2 @ ~ 1 0 03280394 -electrostatic_machine n 1 2 @ ~ 1 0 03280394 -electrostatic_precipitation n 1 1 @ 1 0 13472862 -electrostatic_precipitator n 1 1 @ 1 0 03998673 -electrostatic_printer n 1 3 @ ~ %p 1 0 03280644 -electrostatic_unit n 1 1 @ 1 0 13635698 -electrostatics n 1 2 @ + 1 0 06100101 -electrosurgery n 1 1 @ 1 0 00670897 -electrotherapist n 1 2 @ + 1 1 10049896 -electrotherapy n 1 3 @ ~ + 1 0 00662681 -electrovalent_bond n 1 1 @ 1 0 11437344 -electrum n 1 1 @ 1 0 14718017 -elegance n 2 4 ! @ ~ + 2 1 04812268 04812636 -elegant_brodiaea n 1 2 @ #m 1 0 12445628 -elegant_cat's_ears n 1 2 @ #m 1 0 12447581 -elegant_habenaria n 1 1 @ 1 0 12066451 -elegiac_stanza n 1 1 @ 1 0 06384593 -elegist n 1 2 @ + 1 0 10050043 -elegy n 1 2 @ + 1 0 06379568 -element n 7 4 @ ~ %p + 7 4 05868954 03081021 14622893 08568579 14840755 13934465 13877408 -element_104 n 1 1 @ 1 0 14653416 -element_105 n 1 1 @ 1 0 14636523 -element_106 n 1 1 @ 1 0 14654058 -element_107 n 1 1 @ 1 0 14631757 -element_108 n 1 1 @ 1 0 14639795 -element_109 n 1 1 @ 1 0 14644963 -element_110 n 1 1 @ 1 0 14636392 -element_111 n 1 1 @ 1 0 14652824 -element_112 n 1 1 @ 1 0 14659794 -element_113 n 1 1 @ 1 0 14660314 -element_114 n 1 1 @ 1 0 14660183 -element_115 n 1 1 @ 1 0 14660052 -element_116 n 1 1 @ 1 0 14659922 -element_of_a_cone n 1 1 @ 1 0 13877547 -element_of_a_cylinder n 1 1 @ 1 0 13877667 -elementary_education n 1 1 @ 1 0 00885858 -elementary_geometry n 1 2 @ ; 1 0 06005518 -elementary_particle n 1 4 @ ~ #p ; 1 0 09272085 -elementary_school n 1 2 @ ~ 1 1 08412749 -elements n 1 1 @ 1 0 11525303 -elemi n 1 2 @ #s 1 0 12691028 -eleocharis n 1 3 @ #m %m 1 0 12153393 -eleocharis_acicularis n 1 1 @ 1 0 12153914 -eleocharis_dulcis n 1 2 @ %p 1 0 12153741 -eleocharis_palustris n 1 1 @ 1 0 12154114 -eleonora_duse n 1 1 @ 1 0 10946481 -eleostearic_acid n 1 1 @ 1 0 14847810 -eleotridae n 1 3 @ #m %m 1 0 02619738 -elephant n 2 4 @ ~ #m %p 2 1 02503517 06881662 -elephant's-foot n 2 3 @ #m %p 2 0 12088909 11962994 -elephant's_ear n 2 3 @ ~ #m 2 0 11782036 11761202 -elephant-tusk n 1 2 @ #m 1 0 12875269 -elephant_bird n 1 2 @ #m 1 0 01522450 -elephant_ear n 1 3 @ ~ #m 1 0 11782036 -elephant_seal n 1 2 @ #m 1 0 02080415 -elephant_tree n 1 2 @ #m 1 0 12691428 -elephant_yam n 1 3 @ #m ; 1 0 11782878 -elephantiasis n 1 2 @ ~ 1 0 14367341 -elephantiasis_neuromatosa n 1 1 @ 1 0 14367556 -elephantiasis_scroti n 1 1 @ 1 0 14367649 -elephantidae n 1 3 @ #m %m 1 0 02503313 -elephantopus n 1 3 @ #m %m 1 0 11962853 -elephas n 1 3 @ #m %m 1 0 02503868 -elephas_maximus n 1 3 @ ~ #m 1 0 02504013 -elettaria n 1 3 @ #m %m 1 0 12358173 -elettaria_cardamomum n 1 3 @ #m %p 1 0 12358293 -eleusine n 1 3 @ #m %m 1 0 12118223 -eleusine_coracana n 1 2 @ #m 1 0 12118661 -eleusine_indica n 1 2 @ #m 1 0 12118414 -eleuthera_bark n 1 2 @ #p 1 0 12923257 -eleutherodactylus n 1 3 @ #m %m 1 0 01643092 -elevated n 1 2 @ ~ 1 0 03280813 -elevated_railroad n 1 2 @ ~ 1 0 03280813 -elevated_railway n 1 2 @ ~ 1 0 03280813 -elevation n 8 5 @ ~ %p + ; 8 3 07370671 13940456 13836550 09366317 05131283 05086903 03281052 00373544 -elevator n 2 5 @ ~ #p %p + 2 1 03281145 03281524 -elevator_boy n 1 1 @ 1 0 10050261 -elevator_car n 1 2 @ #p 1 0 02960352 -elevator_girl n 1 1 @ 1 0 10050163 -elevator_man n 1 1 @ 1 0 10050261 -elevator_operator n 1 2 @ ~ 1 0 10050432 -elevator_shaft n 1 1 @ 1 0 03281673 -eleven n 2 3 @ #m %m 2 0 13746672 08080025 -eleven-plus n 1 2 @ ; 1 0 00637145 -eleventh n 1 1 @ 1 0 13847954 -eleventh_cranial_nerve n 1 1 @ 1 0 05480401 -eleventh_hour n 1 1 @ 1 0 15244942 -elf n 2 4 @ ~ #p ; 2 0 09540739 05057163 -elf_cup n 1 1 @ 1 0 13030337 -elgar n 1 1 @ 1 0 10956134 -elgin_marbles n 1 1 @ 1 0 07958820 -eli_whitney n 1 1 @ 1 0 11385126 -elia n 1 1 @ 1 0 11115029 -elia_kazan n 1 1 @ 1 0 11098039 -elia_kazanjoglous n 1 1 @ 1 0 11098039 -elias_canetti n 1 1 @ 1 0 10881269 -elias_howe n 1 1 @ 1 0 11062424 -elicitation n 1 2 @ + 1 0 05827253 -elie_metchnikoff n 1 1 @ 1 0 11177151 -elie_metchnikov n 1 1 @ 1 0 11177151 -elie_wiesel n 1 1 @ 1 0 11385748 -eliel_saarinen n 1 1 @ 1 0 11277096 -eliezer_wiesel n 1 1 @ 1 0 11385748 -eligibility n 1 4 ! @ ~ + 1 0 04717552 -elihu_thomson n 1 1 @ 1 0 11340642 -elihu_yale n 1 1 @ 1 0 11401617 -elijah n 1 1 @ 1 0 10956612 -elijah_muhammad n 1 1 @ 1 0 11194749 -elimination n 5 3 @ ~ + 5 1 00395333 13473097 05782245 00395503 00223720 -elimination_reaction n 1 1 @ 1 0 13473392 -elimination_tournament n 1 2 @ %p 1 0 07464969 -eliminator n 1 3 @ ~ + 1 0 09272468 -elinor_morton_hoyt_wylie n 1 1 @ 1 0 11400594 -elint n 1 1 @ 1 0 00983102 -elinvar n 1 2 @ ; 1 0 14810854 -eliomys n 1 3 @ #m %m 1 0 02353297 -eliot n 2 1 @ 2 0 10957072 10956883 -elisa n 1 1 @ 1 0 00791875 -elisabeth_vigee-lebrun n 1 1 @ 1 0 11366232 -elisabethville n 1 2 @ #p 1 0 08735345 -elisha_graves_otis n 1 1 @ 1 0 11218290 -elision n 2 2 @ + 2 0 13473536 05707269 -elite n 1 4 @ ~ %m + 1 1 08386555 -elite_group n 1 3 @ ~ %m 1 0 08386555 -elitism n 1 2 @ + 1 0 06217657 -elitist n 1 4 ! @ ~ + 1 0 10050558 -elixir n 3 2 @ ~ 3 0 14841056 14582870 07883384 -elixir_of_life n 1 1 @ 1 0 07883510 -elixophyllin n 1 2 @ ; 1 0 04419315 -elizabeth n 2 2 @ #m 2 0 10957748 10957330 -elizabeth_barrett_browning n 1 1 @ 1 0 10866883 -elizabeth_cady_stanton n 1 1 @ 1 0 11313507 -elizabeth_cleghorn_stevenson_gaskell n 1 1 @ 1 0 10991740 -elizabeth_cochrane_seaman n 1 1 @ 1 0 11290653 -elizabeth_gaskell n 1 1 @ 1 0 10991740 -elizabeth_haldane n 1 1 @ 1 0 11022669 -elizabeth_i n 1 3 @ #m + 1 0 10957330 -elizabeth_ii n 1 2 @ #m 1 0 10957748 -elizabeth_merriwether_gilmer n 1 1 @ 1 0 11000469 -elizabeth_palmer_peabody n 1 1 @ 1 0 11227618 -elizabeth_peabody n 1 1 @ 1 0 11227618 -elizabeth_river n 1 2 @ #p 1 0 09272595 -elizabeth_sanderson_haldane n 1 1 @ 1 0 11022669 -elizabeth_seaman n 1 1 @ 1 0 11290653 -elizabeth_seton n 1 1 @ 1 0 11293972 -elizabeth_taylor n 1 1 @ 1 0 11333390 -elizabethan n 1 2 @ + 1 1 10050712 -elizabethan_age n 1 1 @ 1 0 15122648 -elizabethan_sonnet n 1 1 @ 1 0 06383107 -elk n 3 3 @ ~ #m 3 0 02432983 02431785 02431122 -elk-wood n 1 1 @ 1 0 11710393 -elk_nut n 1 2 @ #p 1 0 12737251 -elkhorn_fern n 1 2 @ #m 1 0 13177884 -elkhound n 1 1 @ 1 0 02091467 -elkwood n 1 1 @ 1 0 11710393 -ell n 1 1 @ 1 1 03281821 -ella_fitzgerald n 1 1 @ 1 0 10971981 -ellas n 1 6 @ #m #p %m %p - 1 0 08780881 -ellen_price_wood n 1 1 @ 1 0 11395609 -elli n 1 2 @ ; 1 0 09579848 -ellice_islands n 1 3 @ #p %p 1 0 08840200 -ellington n 1 1 @ 1 0 10958010 -elliott's_goldenrod n 1 1 @ 1 0 12018100 -ellipse n 1 3 @ ~ + 1 0 13878306 -ellipsis n 1 1 @ 1 0 13473716 -ellipsoid n 1 2 @ + 1 1 13897198 -ellipsoid_of_revolution n 1 1 @ 1 0 13898645 -elliptic_geometry n 1 2 @ ; 1 0 06007381 -elliptic_leaf n 1 1 @ 1 0 13158071 -ellipticity n 1 2 @ + 1 0 05070622 -ellis_island n 1 2 @ #p 1 0 09120353 -ellison n 1 1 @ 1 0 10958182 -ellsworth n 1 1 @ 1 0 10958381 -ellul n 1 2 @ #p 1 0 15216760 -elm n 2 5 @ ~ #m #s %s 2 1 12405714 12406155 -elm_family n 1 3 @ #m %m 1 0 12404943 -elm_tree n 1 4 @ ~ #m %s 1 0 12405714 -elmer_ambrose_sperry n 1 1 @ 1 0 11311011 -elmer_leopold_rice n 1 1 @ 1 0 11259635 -elmer_reizenstein n 1 1 @ 1 0 11259635 -elmer_rice n 1 1 @ 1 0 11259635 -elmont n 1 3 @ #p %p 1 0 09124252 -elmore_john_leonard n 1 1 @ 1 0 11128236 -elmore_leonard n 1 1 @ 1 0 11128236 -elmwood n 1 2 @ #s 1 0 12406155 -eln n 2 2 @ ; 2 0 08035601 08035233 -elocution n 1 2 @ + 1 0 07083246 -elocutionist n 1 2 @ + 1 0 10050880 -elodea n 1 3 @ #m %m 1 0 12614317 -elodea_canadensis n 1 1 @ 1 0 12614625 -elodea_densa n 1 1 @ 1 0 12614763 -elongate_leaf n 1 1 @ 1 0 13158512 -elongation n 3 2 @ + 3 0 05133839 03281935 00406007 -elopement n 1 2 @ + 1 0 00058608 -elopidae n 1 3 @ #m %m 1 0 02541431 -elops n 1 3 @ #m %m 1 0 02541875 -elops_saurus n 1 2 @ #m 1 0 02542017 -eloquence n 1 2 @ + 1 0 07069210 -elsa_schiaparelli n 1 1 @ 1 0 11284024 -elsass n 1 2 @ #p 1 0 08940209 -elsholtzia n 1 2 @ #m 1 0 12846690 -elspar n 1 2 @ ; 1 0 02747915 -eluate n 1 1 @ 1 1 14848149 -elucidation n 2 3 @ ~ + 2 0 07232655 07171206 -eluding n 1 2 @ + 1 0 00059376 -elul n 1 2 @ #p 1 0 15216760 -elusion n 1 2 @ + 1 0 00059376 -elusiveness n 1 2 @ + 1 0 04824118 -elution n 1 2 @ + 1 1 13473836 -elver n 2 1 @ 2 0 07784274 02526425 -elves n 1 1 @ 1 0 11474774 -elvis n 1 1 @ 1 0 02675657 -elvis_aron_presley n 1 1 @ 1 0 11246040 -elvis_presley n 1 1 @ 1 0 11246040 -elwyn_brooks_white n 1 1 @ 1 0 11383767 -ely_culbertson n 1 1 @ 1 0 10916993 -elymus n 1 3 @ #m %m 1 0 12118912 -elymus_arenarius n 1 1 @ 1 0 12119539 -elymus_canadensis n 1 1 @ 1 0 12119717 -elymus_caput-medusae n 1 1 @ 1 0 12119822 -elymus_condensatus n 1 1 @ 1 0 12119390 -elymus_hispidus n 1 1 @ 1 0 12106134 -elymus_trachycaulos n 1 1 @ 1 0 12106323 -elysian_fields n 1 2 @ ; 1 0 05628403 -elysium n 2 3 @ + ; 2 0 05628565 05628403 -elytron n 1 1 @ 1 0 02152559 -em n 2 3 @ #p %p 2 0 13712689 13712428 -em_quad n 1 1 @ 1 0 13712689 -emaciation n 1 2 @ + 1 0 05001867 -email n 1 5 ! @ ~ + ; 1 0 06279326 -emanation n 3 4 @ ~ + ; 3 2 15109745 01253060 07327288 -emancipation n 1 2 @ + 1 0 01247413 -emancipationist n 1 3 @ ~ + 1 0 09756637 -emancipator n 1 2 @ + 1 0 10051026 -emanuel_svedberg n 1 1 @ 1 0 11326591 -emanuel_swedenborg n 1 1 @ 1 0 11326591 -emarginate_leaf n 1 1 @ 1 0 13161056 -emasculation n 2 2 @ + 2 0 04668713 00692349 -embalmer n 1 2 @ + 1 0 10051215 -embalmment n 1 3 @ ~ + 1 0 00820406 -embankment n 1 4 @ ~ %p + 1 1 03282060 -embargo n 1 2 @ + 1 1 06660520 -embarkation n 1 2 ! @ 1 0 00058337 -embarkment n 1 2 @ + 1 0 00058337 -embarrassment n 4 4 ! @ ~ + 4 3 07507098 13986189 07305551 05120116 -embassador n 1 2 @ ~ 1 0 09787534 -embassy n 2 2 @ ~ 2 1 03282295 08402828 -embayment n 1 3 @ ~ #p 1 0 09215664 -embellishment n 3 3 @ ~ + 3 0 07172979 03282401 00262743 -ember n 1 1 @ 1 0 09273130 -ember_day n 1 1 @ 1 0 15195834 -emberiza n 1 3 @ #m %m 1 0 01537710 -emberiza_aureola n 1 2 @ #m 1 0 01538362 -emberiza_citrinella n 1 2 @ #m 1 0 01538200 -emberiza_hortulana n 1 2 @ #m 1 0 01537895 -emberiza_schoeniclus n 1 2 @ #m 1 0 01538059 -emberizidae n 1 3 @ #m %m 1 0 01536916 -embezzlement n 1 3 @ ~ + 1 0 00776732 -embezzler n 1 2 @ + 1 0 10051337 -embiodea n 1 3 @ #m %m 1 0 02183353 -embioptera n 1 3 @ #m %m 1 0 02183353 -embiotocidae n 1 3 @ #m %m 1 0 02570648 -embitterment n 1 2 @ + 1 0 13988871 -emblem n 2 3 @ ~ + 2 2 03282591 06880664 -embodiment n 3 3 @ ~ + 3 1 10418302 05941210 00933000 -embolectomy n 1 1 @ 1 0 00673234 -embolism n 2 5 @ ~ #p %p + 2 0 15172664 14101083 -embolus n 1 3 @ #p + 1 0 14373407 -embonpoint n 1 2 @ ~ 1 0 05000913 -embossment n 2 3 @ ~ + 2 0 06855432 04073669 -embothrium n 1 3 @ #m %m 1 0 12216382 -embothrium_coccineum n 1 2 @ #m 1 0 12216628 -embouchure n 1 2 @ #p 1 0 03794798 -embrace n 3 3 @ ~ + 3 2 00417397 14427408 00180770 -embracement n 1 3 @ ~ + 1 0 00417397 -embracing n 1 3 @ ~ + 1 1 00417397 -embrasure n 1 2 @ ; 1 0 03984908 -embrocation n 1 2 @ + 1 0 03673594 -embroiderer n 1 3 @ ~ + 1 0 10051552 -embroideress n 1 1 @ 1 0 10051683 -embroidery n 2 3 @ ~ + 2 0 07172979 03282933 -embroidery_frame n 1 1 @ 1 0 04387261 -embroidery_hoop n 1 1 @ 1 0 04387261 -embroidery_needle n 1 1 @ 1 0 03162556 -embroidery_stitch n 1 2 @ ~ 1 0 04180314 -embroilment n 1 2 @ + 1 0 13936153 -embryo n 2 5 @ ~ %p + ; 2 0 11686503 01458842 -embryologist n 1 1 @ 1 0 10051761 -embryology n 1 4 @ ~ + - 1 0 06071426 -embryoma_of_the_kidney n 1 1 @ 1 0 14246097 -embryonal_carcinoma n 1 1 @ 1 0 14247360 -embryonal_carcinosarcoma n 1 1 @ 1 0 14236595 -embryonal_rhabdomyosarcoma n 1 1 @ 1 0 14245594 -embryonal_rhabdosarcoma n 1 1 @ 1 0 14245594 -embryonic_cell n 1 2 @ ~ 1 0 05447757 -embryonic_membrane n 1 2 @ #p 1 0 05310596 -embryonic_stem-cell_research n 1 1 @ 1 0 00639398 -embryonic_tissue n 1 2 @ ~ 1 0 01463419 -emcee n 1 3 @ ~ + 1 0 10299250 -emda n 1 1 @ 1 0 00663878 -emeer n 1 3 @ ~ ; 1 0 10052497 -emendation n 1 1 @ 1 0 01250208 -emerald n 3 1 @ 3 0 14849655 13372665 04968056 -emerald_creeper n 1 2 @ #m 1 0 12571781 -emerald_isle n 1 6 @ ~ #p %m %p - 1 0 08859173 -emerald_shiner n 1 1 @ 1 0 01441742 -emergence n 4 3 @ ~ + 4 2 07324673 07319909 00050693 00044455 -emergency n 3 3 @ #p + 3 2 07417405 14032599 03483637 -emergency_alert_system n 1 1 @ 1 0 07224923 -emergency_brake n 1 2 @ #p 1 0 03483637 -emergency_exit n 1 1 @ 1 0 03345658 -emergency_landing n 1 2 @ ~ 1 0 00052791 -emergency_medicine n 1 1 @ 1 0 06049673 -emergency_procedure n 1 3 @ ~ ; 1 0 00177783 -emergency_room n 1 1 @ 1 0 03283221 -emergent_evolution n 1 1 @ 1 0 13474130 -emeritus n 1 1 @ 1 0 10051861 -emersion n 2 5 ! @ #p + ; 2 0 07322138 00050693 -emerson n 1 1 @ 1 0 10958552 -emery n 1 3 @ #s %s 1 0 14674143 -emery_cloth n 1 1 @ 1 0 14849789 -emery_paper n 1 2 @ %s 1 0 14849880 -emery_rock n 1 1 @ 1 0 14850051 -emery_stone n 1 1 @ 1 0 14850051 -emery_wheel n 1 2 @ #p 1 0 03460147 -emeside n 1 2 @ ; 1 0 03300578 -emesis n 1 2 @ ~ 1 0 00118733 -emesis_basin n 1 1 @ 1 0 03283413 -emetic n 1 2 @ ~ 1 0 03283519 -emetrol n 1 1 @ 1 0 03283717 -emf n 1 1 @ 1 0 11523538 -emg n 1 1 @ 1 0 07004422 -emigrant n 1 2 @ + 1 0 10051975 -emigration n 1 2 @ + 1 1 00056087 -emigre n 1 1 @ 1 0 10051975 -emigree n 1 1 @ 1 0 10051975 -emil_hermann_fischer n 1 1 @ 1 0 10971697 -emil_klaus_julius_fuchs n 1 1 @ 1 0 10984589 -emile n 1 1 @ 1 0 10052128 -emile_coue n 1 1 @ 1 0 10912626 -emile_durkheim n 1 1 @ 1 0 10946134 -emile_gaboriau n 1 1 @ 1 0 10986710 -emile_herzog n 1 1 @ 1 0 11165712 -emile_zola n 1 1 @ 1 0 11407591 -emilia n 1 3 @ #m %m 1 0 11963158 -emilia-romagna n 1 3 @ #p %p 1 0 08806311 -emilia_coccinea n 1 2 @ #m 1 0 11963305 -emilia_flammea n 1 2 @ #m 1 0 11963305 -emilia_javanica n 1 2 @ #m 1 0 11963305 -emilia_sagitta n 1 2 @ #m 1 0 11963572 -emiliano_zapata n 1 1 @ 1 0 11405176 -emilie_charlotte_le_breton n 1 1 @ 1 0 11117108 -emily_bronte n 1 1 @ 1 0 10865700 -emily_dickinson n 1 1 @ 1 0 10934611 -emily_jane_bronte n 1 1 @ 1 0 10865700 -emily_post n 1 1 @ 1 0 11243720 -emily_price_post n 1 1 @ 1 0 11243720 -eminence n 2 3 @ ~ + 2 1 14435445 05542686 -eminence_grise n 1 2 @ ; 1 0 10052244 -eminent_domain n 1 2 @ ; 1 1 05187187 -emir n 1 3 @ ~ ; 1 0 10052497 -emirate n 2 1 @ 2 0 08557396 00592292 -emissary n 1 2 @ ~ 1 0 10052694 -emissary_vein n 1 1 @ 1 0 05365838 -emission n 5 3 @ ~ + 5 1 01253060 14852450 13474290 13466586 07433868 -emission_spectrum n 1 1 @ 1 1 11451944 -emitter n 1 3 @ #p + 1 0 03283827 -emma_goldman n 1 1 @ 1 0 11004861 -emma_hart_willard n 1 1 @ 1 0 11387973 -emmanthe n 1 3 @ #m %m 1 0 12835196 -emmanthe_penduliflora n 1 2 @ #m 1 0 12835331 -emmenagogue n 1 1 @ 1 0 14852646 -emmental n 1 1 @ 1 0 07854982 -emmentaler n 1 1 @ 1 0 07854982 -emmenthal n 1 1 @ 1 0 07854982 -emmenthaler n 1 1 @ 1 0 07854982 -emmer n 1 1 @ 1 0 12143215 -emmet n 1 3 @ ~ #m 1 0 02219486 -emmetropia n 1 3 @ + ; 1 0 14096957 -emmett_kelly n 1 1 @ 1 0 11100139 -emmy n 1 1 @ 1 0 07268603 -emmy_noether n 1 1 @ 1 0 11208917 -emollient n 1 3 @ ~ + 1 0 03128519 -emolument n 1 1 @ 1 0 13290285 -emoticon n 1 2 @ ~ 1 0 06279939 -emotion n 1 3 @ ~ + 1 1 07480068 -emotional_arousal n 1 2 @ ~ 1 1 14036203 -emotional_disorder n 1 2 @ ~ 1 0 14388910 -emotional_disturbance n 1 2 @ ~ 1 1 14388910 -emotional_person n 1 3 ! @ ~ 1 0 10052843 -emotional_state n 1 2 @ ~ 1 1 13985818 -emotionalism n 1 3 @ ~ = 1 1 04626280 -emotionality n 1 5 ! @ ~ = + 1 1 04626280 -emotionlessness n 2 3 @ ~ + 2 0 07483782 04629194 -empathy n 1 2 @ + 1 0 07554856 -empedocles n 1 1 @ 1 0 10958703 -empennage n 1 3 @ #p %p 1 0 04384016 -emperor n 4 4 @ ~ #m + 4 0 10053004 07760070 02301935 02278839 -emperor_butterfly n 1 3 @ ~ #m 1 0 02278839 -emperor_francis_ii n 1 1 @ 1 0 10977542 -emperor_moth n 1 2 @ #m 1 0 02301935 -emperor_napoleon_iii n 1 1 @ 1 0 11200492 -emperor_of_rome n 1 2 @ ~ 1 0 10537240 -emperor_penguin n 1 2 @ #m 1 0 02056728 -empetraceae n 1 3 @ #m %m 1 0 12751402 -empetrum n 1 3 @ #m %m 1 0 12751554 -emphasis n 4 3 @ ~ + 4 3 14434866 05037394 07102945 07085375 -emphasizing n 1 2 @ + 1 0 01264243 -emphysema n 1 3 @ ~ + 1 1 14147380 -emphysematous_gangrene n 1 2 @ ; 1 0 14313943 -emphysematous_phlegmon n 1 2 @ ; 1 0 14313943 -empire n 5 3 @ ~ + 5 2 08557482 08052413 08405723 08058937 07740597 -empire_day n 1 2 @ #p 1 0 15200164 -empire_state n 1 4 @ #p %p - 1 0 09117351 -empire_state_building n 1 2 @ #p 1 0 03283973 -empire_state_of_the_south n 1 5 @ #m #p %p - 1 0 09075842 -empirical_formula n 1 1 @ 1 0 06817459 -empirical_research n 1 1 @ 1 0 05798315 -empiricism n 3 4 @ ~ + ; 3 1 05970311 00635699 00633108 -empiricist n 1 2 @ + 1 0 10053591 -empiricist_philosophy n 1 3 @ ~ ; 1 0 05970311 -empirin n 1 4 @ ~ %s ; 1 0 02748618 -emplacement n 2 4 @ ~ + ; 2 0 03284120 01051331 -employ n 1 2 @ + 1 1 13968092 -employable n 1 1 @ 1 0 10053708 -employee n 1 4 ! @ ~ + 1 1 10053808 -employee-owned_business n 1 1 @ 1 0 01098541 -employee-owned_enterprise n 1 1 @ 1 0 01098541 -employee_ownership n 1 1 @ 1 0 13243991 -employee_savings_plan n 1 1 @ 1 0 05912399 -employee_stock_ownership_plan n 1 1 @ 1 0 05912969 -employee_turnover n 1 1 @ 1 0 13826221 -employer n 1 4 ! @ ~ + 1 1 10054657 -employment n 4 4 ! @ ~ + 4 4 13968092 00584367 01217859 00947128 -employment_agency n 1 1 @ 1 0 08354352 -employment_agent n 1 1 @ 1 0 10054875 -employment_agreement n 1 1 @ 1 0 06527320 -employment_contract n 1 1 @ 1 0 06527320 -employment_interview n 1 1 @ 1 0 07196405 -employment_office n 1 1 @ 1 0 08354352 -emporium n 1 2 @ #m 1 0 03176763 -empowerment n 1 3 @ ~ + 1 0 01138670 -empress n 1 2 @ ~ 1 0 10053439 -emptiness n 4 4 ! @ ~ + 4 1 14455206 14039974 13910116 05141040 -emptor n 1 2 @ ~ 1 0 09885145 -empty n 1 2 @ + 1 0 03284308 -empty_nester n 1 1 @ 1 0 10054975 -empty_talk n 1 1 @ 1 0 06609503 -empty_tomb n 1 1 @ 1 0 02993194 -empty_words n 1 1 @ 1 0 06609503 -emptying n 1 3 @ ~ + 1 0 00395797 -empyema n 1 2 @ ~ 1 0 14172873 -empyrean n 1 3 @ %p + 1 0 08521267 -emu n 2 3 @ ~ #m 2 0 13602526 01519873 -emu_novaehollandiae n 1 2 @ #m 1 0 01519873 -emulation n 3 4 @ ~ + ; 3 0 07484929 05665984 01021270 -emulator n 1 3 @ ~ + 1 0 09964411 -emulsifier n 1 3 @ ~ + 1 0 14674408 -emulsion n 2 4 @ %s + ; 2 0 14674584 03284482 -emydidae n 1 3 @ #m %m 1 0 01667570 -en n 1 2 @ #p 1 0 13712592 -en-lil n 1 2 @ ; 1 0 09518020 -en_passant n 1 2 @ ; 1 0 00166865 -enabling_act n 1 2 @ ; 1 1 06565201 -enabling_clause n 1 2 @ ; 1 0 06565201 -enabling_legislation n 1 2 @ ; 1 1 06535476 -enactment n 3 4 @ ~ + ; 3 1 01126856 06532095 00548802 -enalapril n 1 1 @ 1 0 03285106 -enallage n 1 1 @ 1 0 07103106 -enamel n 4 4 @ ~ #p + 4 1 05308655 15110454 03284886 03284743 -enamelware n 1 2 @ ~ 1 0 03284981 -enamine n 1 1 @ 1 0 14883661 -enamoredness n 1 2 @ + 1 0 07544213 -enanthem n 1 1 @ 1 0 14321653 -enanthema n 1 1 @ 1 0 14321653 -enantiomer n 1 1 @ 1 0 14883766 -enantiomorph n 1 1 @ 1 0 14883766 -enantiomorphism n 1 1 @ 1 0 13829408 -enarthrodial_joint n 1 2 @ ~ 1 0 05595531 -enarthrosis n 1 2 @ ~ 1 0 05595531 -enate n 1 1 @ 1 0 10236521 -enation n 2 2 @ ~ 2 0 13814755 13088096 -enbrel n 1 2 @ ; 1 0 03299006 -encainide n 1 1 @ 1 0 03285348 -encampment n 3 4 @ ~ + ; 3 1 08518171 02944826 01055165 -encapsulation n 2 2 @ + 2 0 13998395 13474495 -encasement n 1 2 @ + 1 0 00322488 -encaustic n 1 1 @ 1 0 03285578 -encelia n 1 3 @ #m %m 1 0 11963755 -encelia_farinosa n 1 2 @ #m 1 0 11963932 -enceliopsis n 1 3 @ #m %m 1 0 11964269 -enceliopsis_nudicaulis n 1 2 @ #m 1 0 11964446 -encephalartos n 1 2 @ #m 1 0 11603246 -encephalartos_caffer n 1 2 @ #m 1 0 11603462 -encephalitis n 1 2 @ ~ 1 0 14342132 -encephalitis_lethargica n 1 1 @ 1 0 14343735 -encephalocele n 1 1 @ 1 0 14466846 -encephalogram n 2 1 @ 2 0 07004241 03285730 -encephalography n 1 1 @ 1 0 00906290 -encephalomeningitis n 1 1 @ 1 0 14343411 -encephalomyelitis n 1 1 @ 1 0 14342533 -encephalon n 1 3 @ #p %p 1 0 05481095 -encephalopathy n 1 2 @ ~ 1 0 14085708 -enchanter n 1 2 @ + 1 0 10055085 -enchanter's_nightshade n 1 3 @ ~ #m 1 0 12341542 -enchantment n 3 3 @ ~ + 3 1 07497976 14407536 05979454 -enchantress n 2 1 @ 2 0 10055410 10055297 -enchilada n 1 2 @ ; 1 0 07867021 -enchiridion n 1 2 @ ~ 1 0 06421301 -enchondroma n 1 1 @ 1 0 14238041 -encirclement n 1 4 @ ~ + ; 1 0 00954086 -enclave n 1 1 @ 1 1 08553132 -enclosed_space n 1 2 @ ~ 1 0 13911517 -enclosing n 1 3 @ ~ + 1 0 00321956 -enclosure n 4 3 @ ~ + 4 2 03285912 00321956 09273291 06473381 -encoding n 1 3 @ ~ + 1 0 00615887 -encolure n 1 3 @ #p %p 1 0 01899894 -encomium n 1 2 @ + 1 0 06694149 -encompassment n 1 2 @ + 1 0 14427537 -encopresis n 1 1 @ 1 0 14387477 -encore n 1 2 @ + 1 0 00099439 -encounter n 4 3 @ ~ + 4 3 00959376 07414922 00147187 07181043 -encounter_group n 1 1 @ 1 0 08309611 -encouragement n 3 4 ! @ ~ + 3 2 06691442 01211019 07541449 -encroacher n 1 2 @ + 1 0 10214062 -encroachment n 3 3 @ ~ + 3 1 07429976 00733483 00157957 -encrustation n 3 3 @ ~ + 3 0 13497650 09260218 03566860 -encryption n 1 3 @ ~ + 1 0 00615887 -enculturation n 1 2 @ ~ 1 0 01128984 -encumbrance n 3 2 @ ~ 3 1 05832745 13403025 03520811 -encyclia n 1 3 @ #m %m 1 0 12060816 -encyclia_citrina n 1 2 @ #m 1 0 12061104 -encyclia_tampensis n 1 2 @ #m 1 0 12061380 -encyclia_venosa n 1 2 @ #m 1 0 12061614 -encyclical n 1 1 @ 1 0 06625062 -encyclical_letter n 1 1 @ 1 0 06625062 -encyclopaedia n 1 2 @ ~ 1 0 06427387 -encyclopaedism n 1 3 @ ~ + 1 0 05985999 -encyclopaedist n 1 2 @ + 1 0 10055566 -encyclopedia n 1 2 @ ~ 1 1 06427387 -encyclopedism n 1 3 @ ~ + 1 0 05985999 -encyclopedist n 1 2 @ + 1 0 10055566 -end n 14 7 ! @ ~ #m #p + ; 14 11 08566028 15266911 07291794 05980875 05868477 14562960 08566707 10056398 08565894 08566884 00787727 06398401 03286383 00728065 -end-all n 1 1 @ 1 0 05981648 -end-plate n 1 2 @ #p 1 0 05466393 -end_game n 2 1 @ 2 0 07292273 07292118 -end_man n 2 2 @ #m 2 0 10056719 10056611 -end_matter n 1 2 @ %p 1 0 06390805 -end_of_the_world n 2 2 @ ; 2 0 15171307 07334206 -end_organ n 1 2 @ ~ 1 0 05465392 -end_point n 2 1 @ 2 1 08566554 13941337 -end_product n 1 2 @ ~ 1 0 03287178 -end_run n 1 2 @ ; 1 0 00559555 -end_user n 1 1 @ 1 0 10057491 -endaemonism n 1 1 @ 1 0 06160418 -endameba n 1 2 @ ~ 1 0 01392275 -endamoeba n 1 3 @ #m %m 1 0 01392122 -endamoeba_histolytica n 1 2 @ #m 1 0 01392692 -endamoebidae n 1 3 @ #m %m 1 0 01391933 -endangered_species n 1 2 @ ~ 1 0 08110866 -endangerment n 1 2 @ ~ 1 0 14541852 -endarterectomy n 1 1 @ 1 0 00673347 -endarteritis n 1 1 @ 1 0 14342638 -endearment n 1 2 @ + 1 0 01227805 -endeavor n 2 3 @ ~ + 2 2 00796886 00786195 -endeavour n 2 3 @ ~ + 2 0 00796886 00786195 -endecott n 1 1 @ 1 0 10958885 -endemic n 2 1 @ 2 0 14074394 11530715 -endemic_disease n 1 1 @ 1 0 14074394 -endemic_typhus n 1 1 @ 1 0 14141238 -endemism n 1 1 @ 1 0 04800152 -enderby_land n 1 2 @ #p 1 0 08567072 -endgame n 2 1 @ 2 0 07292273 07292118 -endicott n 1 1 @ 1 0 10958885 -ending n 5 5 ! @ ~ #p + 5 2 06308765 00209943 15266911 07291312 06398401 -endive n 2 5 @ ~ #m #p %p 2 0 11953339 07731587 -endlessness n 1 3 @ ~ + 1 0 05052387 -endoblast n 1 1 @ 1 0 01464573 -endocarditis n 1 2 @ ~ 1 0 14339094 -endocardium n 1 1 @ 1 0 05428331 -endocarp n 1 2 @ ~ 1 0 11684739 -endocervicitis n 1 1 @ 1 0 14344881 -endocranium n 1 2 @ #p 1 0 05319028 -endocrine n 2 4 @ ~ #p + 2 0 05407119 05329735 -endocrine_gland n 1 3 @ ~ #p 1 0 05329735 -endocrine_system n 1 3 @ #p %p 1 0 05329533 -endocrinologist n 1 3 @ ~ + 1 0 10056914 -endocrinology n 1 3 @ + - 1 0 06049850 -endoderm n 1 1 @ 1 0 01464573 -endodontia n 1 2 @ + 1 0 06048184 -endodontics n 1 2 @ + 1 0 06048184 -endodontist n 1 2 @ + 1 0 10057114 -endoergic_reaction n 1 1 @ 1 0 13474615 -endogamy n 1 3 ! @ + 1 0 13965049 -endogen n 1 3 @ #m + 1 0 11668117 -endogenous_depression n 1 1 @ 1 0 14390109 -endogeny n 1 2 @ + 1 0 11418011 -endolymph n 1 2 @ #p 1 0 05322103 -endometrial_cancer n 1 1 @ 1 0 14247458 -endometrial_carcinoma n 1 1 @ 1 0 14247458 -endometriosis n 1 1 @ 1 0 14204763 -endometritis n 1 1 @ 1 0 14349892 -endometrium n 1 5 @ #p %s + ; 1 0 05519820 -endomorph n 1 2 @ ~ 1 0 10055730 -endomorphy n 1 1 @ 1 0 04999214 -endomycetales n 1 3 @ #m %m 1 0 13024967 -endoneurium n 1 1 @ 1 0 05287607 -endonuclease n 1 2 @ ~ 1 0 14605415 -endoparasite n 1 2 @ + 1 0 01385017 -endoplasm n 1 1 @ 1 0 05433953 -endoprocta n 1 3 @ #m %m 1 0 02314321 -endorphin n 1 2 @ ~ 1 0 14809057 -endorsement n 5 3 @ ~ + 5 0 07248060 07180372 06687358 06405198 01215168 -endorsement_in_blank n 1 1 @ 1 0 06405423 -endorser n 2 3 @ ~ + 2 0 10670668 10057271 -endoscope n 1 3 @ ~ + 1 0 03286572 -endoscopy n 1 3 @ ~ + 1 0 00642045 -endoskeleton n 1 3 @ %p ; 1 0 05586446 -endosperm n 1 2 @ #p 1 0 11682512 -endospore n 1 1 @ 1 0 11548594 -endospore-forming_bacteria n 1 1 @ 1 0 01370816 -endosteum n 1 2 @ #p 1 0 05319144 -endothelial_myeloma n 1 1 @ 1 0 14240587 -endothelium n 1 2 @ + 1 0 05240522 -endothermic_reaction n 1 1 @ 1 1 13474734 -endotoxin n 1 2 ! @ 1 0 15035505 -endotracheal_tube n 1 2 @ ~ 1 0 03286878 -endowment n 3 3 @ ~ + 3 1 05624042 13271320 01086744 -endowment_fund n 1 2 @ ~ 1 0 13271320 -endowment_insurance n 1 1 @ 1 0 13347489 -endozoan n 1 2 @ + 1 0 01385017 -endplate n 1 2 @ #p 1 0 05466393 -endpoint n 1 1 @ 1 1 08566554 -endurance n 2 3 @ ~ + 2 1 05032565 13962166 -endurance_contest n 1 1 @ 1 0 00797361 -endurance_riding n 1 1 @ 1 0 00299933 -enduringness n 1 3 @ ~ + 1 0 05053688 -ene n 1 1 @ 1 0 13832118 -enea_silvio_piccolomini n 1 1 @ 1 0 11236852 -enema n 1 2 @ ~ 1 0 00695944 -enemy n 4 5 @ ~ #m %m ; 4 4 08190482 10055847 07946851 10098710 -energid n 1 2 @ #p 1 0 05431585 -energiser n 2 2 @ + 2 0 10056103 03287351 -energizer n 2 2 @ + 2 0 10056103 03287351 -energizing n 1 3 @ ~ + 1 0 01046984 -energy n 7 5 @ ~ %p + ; 7 4 11452218 05035961 04836683 04633197 14050143 11452079 08132955 -energy_department n 1 2 @ %p 1 0 08132955 -energy_level n 1 1 @ 1 0 11452750 -energy_of_activation n 1 1 @ 1 0 11421822 -energy_secretary n 2 2 @ #m 2 0 10571670 00601088 -energy_state n 1 1 @ 1 0 11452750 -energy_unit n 1 2 @ ~ 1 0 13609507 -enervation n 3 2 @ + 3 1 05041871 07331210 00673494 -enesco n 1 1 @ 1 0 10959074 -enets n 1 1 @ 1 0 06959932 -enfant_terrible n 1 1 @ 1 1 10057595 -enfeeblement n 1 2 @ + 1 0 07331210 -enfeoffment n 1 3 @ + ; 1 0 06545960 -enfilade n 1 1 @ 1 0 00124008 -enfilade_fire n 1 1 @ 1 0 00124008 -enflurane n 1 1 @ 1 0 03287459 -enfolding n 1 2 @ + 1 0 00406365 -enforcement n 1 3 @ ~ + 1 1 01127019 -enforcer n 1 2 @ + 1 0 10161867 -enfranchisement n 3 5 ! @ ~ + ; 3 0 13992387 05187446 01139830 -engagement n 7 7 ! @ ~ #p %m + ; 7 5 00953559 08385009 07228211 01217859 00270919 07338114 01239064 -engagement_ring n 1 1 @ 1 0 03287627 -engelbert_humperdinck n 1 1 @ 1 0 11066621 -engelmann's_spruce n 1 1 @ 1 0 11625391 -engelmann_spruce n 1 1 @ 1 0 11625391 -engelmannia n 1 2 @ #m 1 0 11964848 -engels n 1 1 @ 1 0 10959223 -engine n 4 5 @ ~ #m %p + 4 3 03287733 11417561 03684823 03288003 -engine_block n 1 3 @ #p %p 1 0 03288225 -engine_cooling_system n 1 3 @ #p %p 1 0 03103128 -engine_driver n 1 2 @ ~ 1 0 10057714 -engine_failure n 1 1 @ 1 0 07421669 -engine_room n 1 2 @ ; 1 0 03288500 -engineer n 2 3 @ ~ + 2 1 09615807 10057714 -engineer's_chain n 1 1 @ 1 0 13653261 -engineering n 3 5 @ ~ + ; - 3 2 00949619 06125041 03288500 -engineering_school n 1 1 @ 1 0 08285407 -engineering_science n 1 3 @ ~ - 1 0 06125041 -enginery n 1 1 @ 1 0 03288643 -england n 1 7 @ ~ #p %m %p + - 1 1 08871007 -english n 4 4 @ ~ + ; 4 3 06947032 09732668 06155432 07442569 -english-gothic n 1 2 @ ~ 1 0 05843236 -english-gothic_architecture n 1 2 @ ~ 1 0 05843236 -english-weed n 1 1 @ 1 0 12703383 -english_bean n 1 3 @ #m %p 1 0 12576029 -english_breakfast_tea n 1 1 @ 1 0 07934678 -english_bulldog n 1 2 @ ~ 1 0 02108672 -english_cavalry_saddle n 1 1 @ 1 0 03288886 -english_channel n 1 4 @ #p %p - 1 0 09273447 -english_civil_war n 1 3 @ %p ; 1 0 01304121 -english_cocker_spaniel n 1 1 @ 1 0 02102318 -english_daisy n 1 1 @ 1 0 11939699 -english_department n 1 1 @ 1 0 08116565 -english_elm n 1 2 @ #m 1 0 12407890 -english_foxhound n 1 1 @ 1 0 02089973 -english_hawthorn n 2 2 @ #m 2 0 12628060 12627750 -english_hippocrates n 1 1 @ 1 0 11327273 -english_horn n 1 1 @ 1 0 03288742 -english_iris n 1 1 @ 1 0 12415401 -english_ivy n 1 2 @ #m 1 0 11798978 -english_lady_crab n 1 2 @ #m 1 0 01979269 -english_language n 1 2 @ ~ 1 1 06947032 -english_lavender n 1 1 @ 1 0 12849952 -english_muffin n 1 1 @ 1 1 07682477 -english_oak n 1 1 @ 1 0 12277578 -english_people n 1 1 @ 1 1 09732668 -english_person n 1 3 @ ~ #m 1 0 09701148 -english_plantain n 1 1 @ 1 0 12599185 -english_primrose n 1 1 @ 1 0 12091213 -english_professor n 1 1 @ 1 1 10057918 -english_revolution n 1 1 @ 1 0 01304356 -english_runner_bean n 1 1 @ 1 0 07728391 -english_ryegrass n 1 1 @ 1 0 12124818 -english_saddle n 1 1 @ 1 0 03288886 -english_setter n 1 1 @ 1 0 02100735 -english_sole n 2 3 @ #m #p 2 0 07791535 02664642 -english_sonnet n 1 1 @ 1 0 06383107 -english_sparrow n 1 2 @ #m 1 0 01539925 -english_springer n 1 1 @ 1 0 02102040 -english_springer_spaniel n 1 1 @ 1 0 02102040 -english_system n 1 2 @ %p 1 0 13577731 -english_teacher n 1 1 @ 1 0 10057918 -english_toy_spaniel n 1 2 @ ~ 1 0 02086478 -english_violet n 1 1 @ 1 0 12389317 -english_walnut n 2 4 @ #m %m %s 2 0 12319414 07771539 -english_walnut_tree n 1 3 @ #m %m 1 0 12319414 -english_yew n 1 2 @ #m 1 0 11661909 -englishman n 1 3 @ ~ #m 1 1 09701603 -englishwoman n 1 3 @ ~ #m 1 0 09701833 -engorgement n 2 2 @ + 2 0 14321135 00840630 -engram n 1 1 @ 1 0 05935381 -engraulidae n 1 3 @ #m %m 1 0 02533708 -engraulis n 1 2 @ %m 1 0 02534036 -engraulis_encrasicholus n 1 2 @ #m 1 0 02534165 -engraver n 2 3 @ ~ + 2 1 10058155 10058027 -engraving n 3 3 @ ~ + 3 0 03289268 03289025 00938791 -engrossment n 3 3 @ ~ + 3 0 05704266 05700087 04865722 -enhancement n 1 2 @ + 1 0 00265992 -enhancer n 1 2 @ + 1 0 05853924 -enhydra n 1 3 @ #m %m 1 0 02445276 -enhydra_lutris n 1 2 @ #m 1 0 02445394 -enid n 1 2 @ #p 1 0 09132163 -enigma n 2 2 @ + 2 1 05685538 06785223 -enigma_canon n 1 1 @ 1 0 07043026 -enigmatic_canon n 1 1 @ 1 0 07043026 -enigmatical_canon n 1 1 @ 1 0 07043026 -eniwetok n 2 4 @ #p ; - 2 0 08839475 01278509 -enjambement n 1 1 @ 1 0 07085210 -enjambment n 1 1 @ 1 0 07085210 -enjoining n 1 4 @ ~ + ; 1 0 06542830 -enjoinment n 1 4 @ ~ + ; 1 0 06542830 -enjoyableness n 1 2 @ + 1 0 04779336 -enjoyer n 1 2 @ + 1 0 10058411 -enjoyment n 3 4 @ ~ + ; 3 3 07491708 01072072 05190106 -enkaid n 1 2 @ ; 1 0 03285348 -enkephalin n 1 1 @ 1 0 14809373 -enki n 1 2 @ ; 1 0 09517890 -enkidu n 1 2 @ ; 1 0 09522735 -enl n 1 2 @ #p 1 0 14227015 -enlarged_heart n 1 1 @ 1 0 14334631 -enlargement n 4 3 @ ~ + 4 1 00365709 14315071 07172756 03289462 -enlarger n 1 2 @ + 1 0 03289660 -enlightened n 1 2 @ + 1 0 07948518 -enlightenment n 3 5 ! @ ~ + ; 3 1 05986395 13988224 08472590 -enlil n 1 2 @ ; 1 0 09518020 -enlisted_man n 1 3 @ ~ #m 1 1 10058585 -enlisted_officer n 1 3 @ ~ ; 1 0 10360747 -enlisted_person n 1 2 @ ~ 1 0 10058777 -enlisted_woman n 1 1 @ 1 0 10058962 -enlistee n 1 2 @ + 1 0 10512201 -enlisting n 1 2 @ + 1 0 01263711 -enlistment n 2 3 @ ~ + 2 0 15293590 01206986 -enlivener n 1 2 @ + 1 0 09402704 -enmity n 2 3 @ ~ + 2 0 13980288 07547805 -ennead n 1 1 @ 1 0 13745270 -ennoblement n 2 2 @ + 2 0 14433505 00065098 -ennui n 1 2 @ ~ 1 0 07539790 -enol n 1 2 @ + 1 0 14605590 -enologist n 1 2 @ + 1 0 09616573 -enology n 1 2 @ + 1 0 05636171 -enophile n 1 1 @ 1 0 10059067 -enormity n 4 3 @ + ; 4 1 04903247 05105009 04853124 00746033 -enormousness n 1 3 @ ~ + 1 0 05104548 -enosis n 1 2 @ ; 1 0 08304744 -enough n 1 3 @ ~ + 1 1 13580415 -enovid n 1 2 @ %s 1 0 03289819 -enquirer n 1 3 @ ~ + 1 0 10207831 -enquiry n 3 3 @ ~ + 3 0 07193596 05797597 00636728 -enragement n 1 2 @ + 1 0 07517417 -enrichment n 2 3 @ ~ + 2 1 00264366 13271498 -enrico_caruso n 1 1 @ 1 0 10885487 -enrico_fermi n 1 1 @ 1 0 10969986 -enrollee n 1 3 @ ~ + 1 1 10059162 -enrollment n 2 2 @ + 2 1 00050037 08479986 -enrolment n 1 2 @ + 1 0 00050037 -ensemble n 5 4 @ ~ #m ; 5 1 08188235 08238048 08189089 07955280 03289985 -ensete n 1 3 @ #m %m 1 0 12353604 -ensete_ventricosum n 1 2 @ #m 1 0 12353754 -ensiform_leaf n 1 1 @ 1 0 13158167 -ensign n 3 2 @ ; 3 0 09616722 06882009 03290096 -ensilage n 1 2 @ + 1 0 07801342 -ensis n 1 3 @ #m %m 1 0 01958914 -enslavement n 2 2 @ + 2 0 13997050 00089234 -ent_man n 1 1 @ 1 0 10059323 -entablature n 1 4 @ #p %p ; 1 0 03290195 -entail n 2 1 @ 2 0 13288942 00049909 -entailment n 1 2 @ + 1 0 05780885 -entandrophragma n 1 3 @ #m %m 1 0 12697883 -entandrophragma_cylindricum n 1 2 @ #m 1 0 12698027 -entanglement n 1 3 @ ~ + 1 1 04568557 -entasis n 1 2 @ #p 1 0 13864542 -entebbe n 1 2 @ #p 1 0 09043556 -entelea n 1 2 @ #m 1 0 12204405 -entelechy n 1 2 @ ; 1 0 13955152 -entellus n 1 1 @ 1 0 02488415 -entente n 2 1 @ 2 0 08171992 06772461 -entente_cordiale n 2 1 @ 2 0 08171992 06772461 -enteric-coated_aspirin n 1 1 @ 1 0 03290489 -enteric_bacteria n 1 3 @ ~ #m 1 0 01367772 -enteric_fever n 1 1 @ 1 0 14144416 -enterics n 1 3 @ ~ #m 1 0 01367772 -entering n 2 3 @ ~ + 2 0 07370125 00049003 -enteritis n 1 2 @ ~ 1 0 14344997 -enterobacteria n 1 3 @ ~ #m 1 0 01367772 -enterobacteriaceae n 1 3 @ #m %m 1 0 01367430 -enterobiasis n 1 1 @ 1 0 14176372 -enterobius n 1 3 @ #m %m 1 0 01931398 -enterobius_vermicularis n 1 2 @ #m 1 0 01931520 -enteroceptor n 1 1 @ 1 0 05299687 -enterokinase n 1 1 @ 1 0 14850190 -enterolith n 1 1 @ 1 0 09273681 -enterolithiasis n 1 1 @ 1 0 14115351 -enterolobium n 1 3 @ #m %m 1 0 11761007 -enterolobium_cyclocarpa n 1 2 @ #m 1 0 11761202 -enteron n 1 2 @ + 1 0 05532641 -enteropathy n 1 2 @ ~ 1 0 14074606 -enteroptosis n 1 1 @ 1 0 14093591 -enterostenosis n 1 1 @ 1 0 14106727 -enterostomy n 1 1 @ 1 0 00671022 -enterotomy n 1 1 @ 1 0 00671022 -enterotoxemia n 1 1 @ 1 1 14264517 -enterotoxin n 1 2 @ ~ 1 0 15035697 -enterovirus n 1 2 @ ~ 1 0 01337915 -enterprise n 3 3 @ ~ + 3 2 00796886 08056231 04836074 -enterprise_zone n 1 1 @ 1 0 08690665 -enterpriser n 1 3 @ ~ + 1 0 10060352 -enterprisingness n 1 2 @ + 1 0 04836074 -entertainer n 1 3 @ ~ + 1 1 09616922 -entertainment n 1 3 @ ~ + 1 1 00429048 -entertainment_center n 1 1 @ 1 0 03290653 -entertainment_deduction n 1 1 @ 1 0 13311217 -entertainment_industry n 1 2 @ %p 1 0 08067951 -enthalpy n 1 2 @ ; 1 1 05012272 -enthrallment n 1 2 @ + 1 0 07497976 -enthronement n 1 2 @ + 1 0 07453638 -enthronisation n 1 2 @ + 1 0 07453638 -enthronization n 1 2 @ + 1 0 07453638 -enthusiasm n 3 3 @ ~ + 3 3 07555014 04634540 05670343 -enthusiast n 2 2 @ ~ 2 1 10059582 10078131 -enticement n 3 3 @ ~ + 3 0 05694791 04689660 00159620 -entire n 1 2 @ ~ 1 0 02377181 -entire_leaf n 1 1 @ 1 0 13160485 -entireness n 1 3 @ ~ + 1 0 14461231 -entirety n 1 2 @ ~ 1 1 14461231 -entitlement n 1 3 @ + ; 1 0 05181754 -entity n 1 1 ~ 1 1 00001740 -entlebucher n 1 1 @ 1 0 02108000 -entoblast n 1 1 @ 1 0 01464573 -entoderm n 1 1 @ 1 0 01464573 -entoloma n 1 3 @ #m %m 1 0 13012030 -entoloma_aprile n 1 2 @ #m 1 0 13012469 -entoloma_lividum n 1 2 @ #m 1 0 13012253 -entoloma_sinuatum n 1 2 @ #m 1 0 13012253 -entolomataceae n 1 3 @ #m %m 1 0 13011856 -entombment n 1 2 @ + 1 0 07451687 -entomion n 1 2 @ #p 1 0 05232503 -entomologist n 1 3 @ ~ + 1 0 10059904 -entomology n 1 4 @ ~ + - 1 0 06072275 -entomophobia n 1 1 @ 1 0 14385160 -entomophthora n 1 2 @ #m 1 0 12974662 -entomophthoraceae n 1 3 @ #m %m 1 0 12974457 -entomophthorales n 1 3 @ #m %m 1 0 12974286 -entomostraca n 1 2 @ #m 1 0 01993949 -entoparasite n 1 1 @ 1 0 01385017 -entopic_pregnancy n 1 1 @ 1 0 14048015 -entoproct n 1 2 @ #m 1 0 02314492 -entoprocta n 1 3 @ #m %m 1 0 02314321 -entourage n 1 3 @ ~ %p 1 0 08429167 -entozoan n 1 2 @ + 1 0 01385017 -entozoon n 1 2 @ + 1 0 01385017 -entr'acte n 2 2 @ ; 2 0 15272791 00520880 -entrails n 1 1 @ 1 0 05298988 -entrance n 3 3 @ ~ + 3 3 03290771 07370125 00049003 -entrance_exam n 1 1 @ 1 0 07198119 -entrance_examination n 1 1 @ 1 0 07198119 -entrance_fee n 1 1 @ 1 0 13321495 -entrance_hall n 1 3 @ ~ #p 1 1 02715513 -entrance_money n 1 1 @ 1 0 13321495 -entrancement n 1 2 @ + 1 0 07491286 -entranceway n 1 2 @ ~ 1 1 03290771 -entrant n 4 3 @ ~ + 4 1 03291243 10355449 10060175 10060075 -entrapment n 1 3 @ + ; 1 0 01199035 -entreaty n 1 2 @ ~ 1 0 07186828 -entrecote n 1 1 @ 1 0 07656866 -entree n 4 3 @ ~ + 4 0 07579575 05176188 03290771 00049789 -entremets n 1 3 @ ~ #p 1 0 07580053 -entrenching_tool n 1 1 @ 1 0 03291413 -entrenchment n 1 4 @ ~ %p + 1 0 03291551 -entrepot n 2 2 @ ~ 2 0 08637771 04329190 -entrepreneur n 1 3 @ ~ + 1 1 10060352 -entresol n 1 1 @ 1 0 03758089 -entric n 1 3 @ ~ #m 1 0 01367772 -entropy n 2 3 @ ~ ; 2 0 05091527 05012585 -entry n 6 3 @ ~ + 6 5 06503724 00238022 13405296 07167578 03290771 00049003 -entry_word n 1 2 @ #p 1 0 06300632 -entryway n 1 2 @ ~ 1 0 03290771 -entsi n 1 1 @ 1 0 06959932 -entsy n 1 1 @ 1 0 06959932 -enucleation n 1 2 @ + 1 0 00671190 -enuki n 1 2 @ ; 1 0 09515712 -enumeration n 2 3 @ ~ + 2 0 06490887 00634586 -enumerator n 1 2 @ + 1 0 09904057 -enunciation n 1 3 @ ~ + 1 0 07132415 -enuresis n 1 2 @ ~ 1 0 13474858 -envelope n 6 3 @ ~ #p 6 2 03291819 03291741 13869788 09273776 05204473 03291963 -envelopment n 1 3 @ ~ + 1 0 00321956 -enviousness n 1 3 @ ~ + 1 0 07549716 -environment n 2 3 @ ~ + 2 2 13934596 08567235 -environmental_condition n 1 2 @ ~ 1 0 14516501 -environmental_protection_agency n 1 1 @ 1 0 08122960 -environmental_science n 1 3 @ ~ - 1 0 06070929 -environmentalism n 2 3 ! @ + 2 0 05970564 00276189 -environmentalist n 1 3 @ ~ + 1 0 10060621 -environs n 2 2 @ ~ 2 1 08567235 08539457 -envisioning n 1 2 @ + 1 0 05768415 -envoi n 1 1 @ 1 0 06384371 -envoy n 3 2 @ ~ 3 0 10061043 10052694 06384371 -envoy_extraordinary n 1 1 @ 1 0 10061043 -envy n 2 3 @ ~ + 2 1 07549716 00758335 -enzyme n 1 4 @ ~ %p + 1 1 14732946 -enzyme-linked-immunosorbent_serologic_assay n 1 1 @ 1 0 00791875 -enzymologist n 1 2 @ + 1 0 10061195 -enzymology n 1 2 @ + 1 0 06080192 -eocene n 1 2 @ #p 1 0 15125845 -eocene_epoch n 1 2 @ #p 1 0 15125845 -eohippus n 1 2 @ #m 1 0 02375862 -eolian n 1 1 @ 1 0 09710753 -eolic n 1 1 @ 1 0 06977800 -eolith n 1 1 @ 1 0 03292085 -eolithic n 1 2 @ #p 1 0 15232236 -eolithic_age n 1 2 @ #p 1 0 15232236 -eon n 3 5 @ ~ %p + ; 3 0 15243730 15243590 09536584 -eoraptor n 1 2 @ #m 1 0 01715134 -eos n 1 2 @ ; 1 0 09571390 -eosin n 1 1 @ 1 0 14987484 -eosinopenia n 1 1 @ 1 0 14191646 -eosinophil n 1 2 @ + 1 0 05453943 -eosinophile n 1 1 @ 1 0 05453943 -eosinophilia n 1 1 @ 1 0 14534076 -epa n 1 1 @ 1 0 08122960 -epacridaceae n 1 3 @ #m %m 1 0 12252620 -epacris n 1 3 @ ~ #m 1 0 12253229 -epacris_family n 1 3 @ #m %m 1 0 12252620 -epacris_impressa n 1 1 @ 1 0 12253487 -epacris_obtusifolia n 1 1 @ 1 0 12253664 -epacris_purpurascens n 1 1 @ 1 0 12253835 -epanalepsis n 1 1 @ 1 0 07099752 -epanaphora n 1 1 @ 1 0 07100678 -epanodos n 2 2 @ ; 2 0 07099965 07099844 -epanorthosis n 1 1 @ 1 0 07103258 -eparch n 2 1 @ 2 0 10061431 10061323 -eparchy n 2 2 @ + 2 0 08654260 08551296 -epaulet n 1 2 @ ~ 1 1 03292210 -epaulette n 1 2 @ ~ 1 0 03292210 -epauliere n 1 2 @ #p 1 0 03292362 -epee n 1 2 @ ; 1 0 03292475 -ependyma n 1 1 @ 1 0 05319279 -epenthesis n 1 1 @ 1 0 07117788 -epergne n 1 1 @ 1 0 03292603 -epha n 1 2 @ #p 1 0 13616787 -ephah n 1 2 @ #p 1 0 13616787 -ephedra n 1 3 @ ~ #m 1 0 11598686 -ephedra_sinica n 1 1 @ 1 0 11598886 -ephedraceae n 1 3 @ #m %m 1 0 11597924 -ephedrine n 1 1 @ 1 0 14713487 -ephemera n 1 2 @ + 1 0 15247410 -ephemeral n 1 1 @ 1 0 02161078 -ephemerality n 1 2 @ + 1 0 05055689 -ephemeralness n 1 2 @ + 1 0 05055689 -ephemerid n 1 3 @ ~ #m 1 0 02262178 -ephemerida n 1 3 @ #m %m 1 0 02261883 -ephemeridae n 1 3 @ #m %m 1 0 02262324 -ephemeris n 1 1 @ 1 0 06426865 -ephemeris_time n 1 2 @ ; 1 0 15156746 -ephemeron n 1 1 @ 1 0 02161078 -ephemeroptera n 1 3 @ #m %m 1 0 02261883 -ephemeropteran n 1 3 @ ~ #m 1 0 02262178 -ephesian n 1 1 @ 1 0 10061554 -ephesians n 1 2 @ #p 1 0 06444148 -ephestia n 1 3 @ #m %m 1 0 02290153 -ephestia_elutella n 1 2 @ #m 1 0 02290340 -ephesus n 2 2 @ #p 2 0 08788326 08313983 -ephippidae n 1 3 @ #m %m 1 0 02604657 -ephippiorhynchus n 1 3 @ #m %m 1 0 02003994 -ephippiorhynchus_senegalensis n 1 2 @ #m 1 0 02004131 -epi n 1 1 @ 1 0 06475307 -epic n 1 3 @ ~ + 1 1 06379721 -epic_poem n 1 2 @ ~ 1 1 06379721 -epic_poetry n 1 1 @ 1 0 07093158 -epicalyx n 1 1 @ 1 0 11692108 -epicanthic_fold n 1 2 @ #p 1 0 05314255 -epicanthus n 1 2 @ #p 1 0 05314255 -epicardia n 1 2 @ #p 1 0 05534174 -epicardium n 1 2 @ #p 1 0 05428645 -epicarp n 1 2 @ + 1 0 11684499 -epicene n 1 1 @ 1 0 10172080 -epicene_person n 1 1 @ 1 0 10172080 -epicenter n 1 1 @ 1 1 08578032 -epicentre n 1 1 @ 1 0 08578032 -epicondyle n 1 2 @ ~ 1 0 05472681 -epicondylitis n 1 2 @ ~ 1 0 14345304 -epicranium n 1 1 @ 1 0 05539834 -epictetus n 1 1 @ 1 0 10959374 -epicure n 1 2 @ + 1 1 10061656 -epicurean n 1 2 @ + 1 0 10061656 -epicureanism n 1 1 @ 1 0 05961141 -epicurism n 1 1 @ 1 0 05212168 -epicurus n 1 1 @ 1 0 10959479 -epicycle n 1 2 @ + 1 0 13909296 -epicyclic_gear n 1 2 @ #p 1 0 03956331 -epicyclic_gear_train n 1 2 @ %p 1 0 03292736 -epicyclic_train n 1 2 @ %p 1 0 03292736 -epicycloid n 1 2 @ ~ 1 0 13909488 -epideictic_oratory n 1 1 @ 1 0 07242657 -epidemic n 1 3 @ ~ + 1 1 07435533 -epidemic_cholera n 1 1 @ 1 0 14129579 -epidemic_disease n 1 2 @ ~ 1 0 14130166 -epidemic_encephalitis n 1 1 @ 1 0 14343735 -epidemic_hysertia n 1 1 @ 1 0 14392143 -epidemic_meningitis n 1 1 @ 1 0 14138364 -epidemic_myalgia n 1 1 @ 1 0 14330340 -epidemic_parotitis n 1 2 @ %p 1 0 14138178 -epidemic_pleurodynia n 1 1 @ 1 0 14330340 -epidemic_roseola n 1 1 @ 1 0 14123259 -epidemiologist n 1 2 @ + 1 0 10061882 -epidemiology n 1 3 @ + - 1 0 06050024 -epidendron n 1 2 @ #m 1 0 12062105 -epidendrum n 1 3 @ #m %m 1 0 12061849 -epidendrum_tampense n 1 2 @ #m 1 0 12061380 -epidendrum_venosum n 1 2 @ #m 1 0 12061614 -epidermal_cell n 1 3 @ ~ #p 1 0 05241218 -epidermis n 1 5 @ ~ #p %p + 1 1 05240211 -epidiascope n 1 1 @ 1 0 03292960 -epididymis n 1 3 @ #p %p 1 0 05525628 -epididymitis n 1 1 @ 1 0 14345455 -epidural n 1 1 @ 1 0 14028652 -epidural_anaesthesia n 1 1 @ 1 0 14028652 -epidural_anesthesia n 1 1 @ 1 0 14028652 -epidural_injection n 1 1 @ 1 0 00322778 -epigaea n 1 2 @ #m 1 0 12234913 -epigaea_repens n 1 1 @ 1 0 12235051 -epigastric_artery n 1 1 @ 1 0 05344697 -epigastric_fossa n 1 2 @ #p 1 0 05508943 -epigastric_vein n 1 2 @ ~ 1 0 05366043 -epigastrium n 1 2 @ + 1 0 05396071 -epigenesis n 1 1 @ 1 0 13475072 -epiglottis n 1 3 @ #p %p 1 0 05301752 -epiglottitis n 1 1 @ 1 0 14345552 -epigon n 1 1 @ 1 0 10062042 -epigone n 1 1 @ 1 0 10062042 -epigram n 1 2 @ + 1 1 07153727 -epigraph n 2 1 @ 2 0 06613340 06406547 -epigraphy n 1 1 @ 1 0 06146053 -epikeratophakia n 1 1 @ 1 0 00681869 -epilachna n 1 3 @ #m %m 1 0 02166024 -epilachna_varivestis n 1 2 @ #m 1 0 02166229 -epilating_wax n 1 1 @ 1 0 03293095 -epilation n 2 2 @ ~ 2 0 13475205 00254597 -epilator n 1 2 @ ~ 1 0 03177165 -epilepsia_major n 2 1 @ 2 0 14087513 14083368 -epilepsia_minor n 2 2 @ %p 2 0 14088127 14083559 -epilepsy n 1 4 @ ~ %p + 1 0 14086143 -epileptic n 1 2 @ + 1 0 10062176 -epileptic_seizure n 1 3 @ ~ #p 1 0 14083200 -epilobium n 1 3 @ #m %m 1 0 12342043 -epilobium_angustifolium n 1 2 @ #m 1 0 12342498 -epilobium_canum_canum n 1 2 @ #m 1 0 12342852 -epilobium_hirsutum n 1 1 @ 1 0 12343092 -epilog n 2 2 @ #p 2 0 06398963 06398760 -epilogue n 2 2 @ #p 2 0 06398963 06398760 -epimedium n 1 3 @ #m %m 1 0 11698895 -epimedium_grandiflorum n 1 2 @ #m 1 0 11699071 -epimetheus n 1 2 @ ; 1 0 09575701 -epinephelus n 1 3 @ #m %m 1 0 02569151 -epinephelus_adscensionis n 1 2 @ #m 1 0 02569631 -epinephelus_fulvus n 1 2 @ #m 1 0 02569334 -epinephrin n 1 1 @ 1 0 05408388 -epinephrine n 1 1 @ 1 0 05408388 -epipactis n 1 3 @ #m %m 1 0 12062227 -epipactis_gigantea n 1 2 @ #m 1 0 12062781 -epipactis_helleborine n 1 2 @ #m 1 0 12062626 -epipaleolithic n 1 2 @ #p 1 0 15233239 -epiphany n 2 2 @ #p 2 1 07323605 15194506 -epiphany_of_our_lord n 1 2 @ #p 1 0 15194506 -epiphenomenon n 1 1 @ 1 0 11453735 -epiphora n 1 1 @ 1 0 07100113 -epiphyllum n 1 2 @ #m 1 0 11846765 -epiphysis n 2 2 @ + 2 1 05592504 05485098 -epiphysis_cerebri n 1 1 @ 1 0 05485098 -epiphyte n 1 3 @ ~ + 1 0 13122985 -epiphytic_plant n 1 2 @ ~ 1 0 13122985 -epiplexis n 1 1 @ 1 0 07103402 -epipremnum n 1 3 @ #m %m 1 0 11788536 -epipremnum_aureum n 1 2 @ #m 1 0 11788727 -epirus n 1 2 @ #p 1 0 08787466 -episcia n 1 2 @ #m 1 0 12831932 -episcia_dianthiflora n 1 2 @ #m 1 0 12831141 -episcleral_veins n 1 1 @ 1 0 05366640 -episcleritis n 1 1 @ 1 0 14345719 -episcopacy n 1 1 @ 1 0 07946969 -episcopal_church n 2 4 @ %m ; - 2 0 08088792 08088472 -episcopal_church_of_scotland n 1 2 @ ; 1 0 08088792 -episcopalian n 1 2 @ #m 1 0 10062275 -episcopalianism n 1 1 @ 1 0 06188603 -episcopate n 4 3 @ ~ %p 4 0 15291714 08550966 07946969 00589494 -episiotomy n 1 1 @ 1 0 00680914 -episode n 4 4 @ ~ #p %p 4 2 07289956 06396330 06621771 04173172 -episodic_memory n 1 1 @ 1 0 05761044 -episome n 1 1 @ 1 0 14817419 -epispadias n 1 1 @ 1 0 14153468 -episperm n 1 2 @ #p 1 0 11682349 -epistasis n 1 1 @ 1 0 13495507 -epistaxis n 1 1 @ 1 0 14370992 -episteme n 1 2 @ + 1 0 05612358 -epistemic_logic n 1 1 @ 1 0 06166274 -epistemologist n 1 2 @ + 1 0 10062385 -epistemology n 1 3 @ ~ + 1 1 06166748 -epistle n 2 4 @ ~ #p + 2 0 06626183 06442616 -epistle_of_james n 1 2 @ #p 1 0 06446711 -epistle_of_jeremiah n 1 2 @ #p 1 0 06459450 -epistle_of_jude n 1 2 @ #p 1 0 06447763 -epistle_of_paul_the_apostle_to_philemon n 1 1 @ 1 0 06446217 -epistle_of_paul_the_apostle_to_the_colossians n 1 2 @ #p 1 0 06444711 -epistle_of_paul_the_apostle_to_the_ephesians n 1 2 @ #p 1 0 06444148 -epistle_of_paul_the_apostle_to_the_galatians n 1 2 @ #p 1 0 06443922 -epistle_of_paul_the_apostle_to_the_philippians n 1 2 @ #p 1 0 06444458 -epistle_of_paul_the_apostle_to_the_romans n 1 2 @ #p 1 0 06443163 -epistle_of_paul_the_apostle_to_titus n 1 2 @ #p 1 0 06445989 -epistle_to_philemon n 1 1 @ 1 0 06446217 -epistle_to_the_colossians n 1 2 @ #p 1 0 06444711 -epistle_to_the_ephesians n 1 2 @ #p 1 0 06444148 -epistle_to_the_galatians n 1 2 @ #p 1 0 06443922 -epistle_to_the_hebrews n 1 2 @ #p 1 0 06446476 -epistle_to_the_philippians n 1 2 @ #p 1 0 06444458 -epistle_to_the_romans n 1 2 @ #p 1 0 06443163 -epistle_to_titus n 1 2 @ #p 1 0 06445989 -epistrophe n 1 1 @ 1 0 07100113 -epitaph n 2 1 @ 2 1 06406625 06406757 -epitaxy n 1 1 @ 1 0 13475320 -epithalamium n 1 2 @ ~ 1 0 06383819 -epithelial_cell n 1 3 @ ~ #p 1 0 05241827 -epithelial_duct n 1 3 @ ~ %p 1 0 05250659 -epithelial_tissue n 1 3 @ ~ %p 1 0 05239808 -epithelioma n 1 1 @ 1 0 14252464 -epithelium n 1 4 @ ~ %p + 1 0 05239808 -epithet n 2 2 @ ~ 2 1 06720964 07202311 -epitome n 2 3 @ ~ + 2 1 05937524 06468818 -epitope n 1 3 @ #p ; 1 0 15037664 -epitrochoidal_engine n 1 1 @ 1 0 04549721 -epizoan n 1 2 @ ~ 1 0 01385330 -epizoon n 1 3 @ ~ + 1 0 01385330 -epoch n 3 5 @ ~ #p + ; 3 1 15248564 15296687 15248269 -epona n 1 2 @ ; 1 0 09509232 -eponym n 2 2 @ + 2 0 06334985 06334778 -eponymy n 1 1 @ 1 0 13462680 -epos n 2 3 @ ~ + 2 0 06383523 06379721 -epoxy n 1 4 @ ~ #s + 1 1 14902733 -epoxy_glue n 1 3 @ ~ #s 1 0 14902733 -epoxy_resin n 1 3 @ ~ #s 1 0 14902733 -eprom n 1 2 @ ; 1 0 03294604 -epsilon n 1 2 @ #m 1 0 06834565 -epsilon_aurigae n 1 2 @ #m 1 0 09273928 -epsilon_toxin n 1 1 @ 1 0 14714353 -epsom_salts n 2 2 @ ; 2 0 14945725 03293321 -epstein n 1 1 @ 1 0 10959664 -epstein-barr_virus n 1 1 @ 1 0 01339623 -eptatretus n 1 2 @ #m 1 0 01479213 -eptesicus n 1 3 @ #m %m 1 0 02147034 -eptesicus_fuscus n 1 2 @ #m 1 0 02147173 -eptesicus_serotinus n 1 1 @ 1 0 02147328 -eq n 1 1 @ 1 0 05026508 -equador_laurel n 1 2 @ #m 1 0 12818346 -equal n 1 4 @ ~ #m + 1 1 09626238 -equal-area_map_projection n 1 2 @ ~ 1 0 03293471 -equal-area_projection n 1 2 @ ~ 1 0 03293471 -equal_opportunity n 1 2 @ ; 1 0 05186998 -equal_protection_of_the_laws n 1 2 @ ; 1 0 05186090 -equal_sign n 1 1 @ 1 0 06811867 -equal_temperament n 1 1 @ 1 0 01000610 -equalisation n 1 3 @ ~ + 1 0 00044673 -equaliser n 2 3 @ ~ + 2 0 03293741 03118539 -equalitarian n 1 1 @ 1 0 10046870 -equalitarianism n 1 1 @ 1 0 05967588 -equality n 2 5 ! @ ~ = + 2 2 04747899 13946760 -equality_before_the_law n 1 1 @ 1 0 05182452 -equality_state n 1 3 @ #p %p 1 0 09159003 -equalization n 1 3 @ ~ + 1 0 00044673 -equalizer n 3 3 @ ~ + 3 0 03293741 03118539 00483098 -equalizing_dividend n 1 1 @ 1 0 13408473 -equanil n 1 2 @ ; 1 0 03747746 -equanimity n 1 3 @ ~ + 1 1 04903813 -equatability n 1 1 @ 1 0 04748187 -equating n 1 2 @ + 1 0 00185307 -equation n 3 4 @ ~ + ; 3 1 06669864 13946760 00185307 -equator n 2 2 @ + 2 1 08568719 13874073 -equatorial n 1 1 @ 1 0 03293863 -equatorial_current n 1 2 @ ~ 1 0 11489070 -equatorial_guinea n 1 3 @ #p %p 1 0 08763500 -equerry n 2 1 @ 2 0 10062594 10062492 -equestrian n 1 3 @ ~ + 1 0 10185793 -equestrian_sport n 1 2 @ ~ 1 0 00450700 -equetus n 1 3 @ #m %m 1 0 02594807 -equetus_lanceolatus n 1 2 @ #m 1 0 02595056 -equetus_pulcher n 1 2 @ #m 1 0 02594942 -equiangular_triangle n 1 2 @ ~ 1 0 13879947 -equid n 1 3 @ ~ #m 1 0 02374149 -equidae n 1 3 @ #m %m 1 0 02373601 -equidistribution n 1 1 @ 1 0 05729362 -equilateral n 1 1 @ 1 0 13862552 -equilateral_triangle n 1 2 @ ~ 1 0 13879947 -equilibration n 1 1 @ 1 0 01265632 -equilibrium n 4 4 ! @ ~ + 4 2 13934900 13446197 13897996 05659365 -equilibrium_constant n 1 3 @ ~ ; 1 0 13589681 -equilibrium_law n 1 2 @ ; 1 0 05877412 -equine n 1 4 @ ~ #m + 1 0 02374149 -equine_distemper n 1 1 @ 1 0 14264352 -equine_encephalitis n 1 1 @ 1 0 14342882 -equine_encephalomyelitis n 1 1 @ 1 0 14342882 -equinoctial n 1 2 @ + 1 0 08520190 -equinoctial_circle n 1 1 @ 1 0 08520190 -equinoctial_line n 1 1 @ 1 0 08520190 -equinoctial_point n 1 3 @ ~ ; 1 0 08520728 -equinoctial_storm n 1 1 @ 1 0 11501864 -equinoctial_year n 1 1 @ 1 0 15202806 -equinox n 2 4 @ ~ + ; 2 0 15223343 08520728 -equipage n 2 5 @ ~ %p + ; 2 0 03730153 02968473 -equipment n 1 3 @ ~ + 1 1 03294048 -equipment_casualty n 1 3 @ ~ ; 1 0 07339653 -equipment_failure n 1 2 @ ~ 1 0 07421316 -equipoise n 1 2 @ ~ 1 0 13897996 -equipping n 1 3 @ ~ + 1 1 01156899 -equisetaceae n 1 3 @ #m %m 1 0 13219067 -equisetales n 1 3 @ #m %m 1 0 13218900 -equisetatae n 1 3 @ #m %m 1 0 13218722 -equisetum n 1 3 @ #m %m 1 0 13219258 -equisetum_arvense n 1 1 @ 1 0 13219833 -equisetum_fluviatile n 1 1 @ 1 0 13219976 -equisetum_hyemale n 1 1 @ 1 0 13220122 -equisetum_hyemale_robustum n 1 1 @ 1 0 13220122 -equisetum_palustre n 1 1 @ 1 0 13220355 -equisetum_robustum n 1 1 @ 1 0 13220122 -equisetum_sylvaticum n 1 1 @ 1 0 13220525 -equisetum_variegatum n 1 1 @ 1 0 13220663 -equitation n 1 3 @ ~ - 1 0 00450335 -equity n 3 4 ! @ ~ = 3 1 13333696 13333420 04839154 -equity_credit_line n 1 1 @ 1 0 13374979 -equivalence n 3 4 ! @ ~ + 3 1 13946760 04748273 04746842 -equivalent n 2 3 @ ~ + 2 1 05695554 05026508 -equivalent-binary-digit_factor n 1 1 @ 1 0 13734349 -equivalent_weight n 1 1 @ 1 0 05026508 -equivalent_word n 1 1 @ 1 0 06303682 -equivocalness n 1 4 ! @ ~ + 1 0 04825114 -equivocation n 3 3 @ ~ + 3 0 06761099 04825383 00751779 -equivocator n 1 2 @ + 1 0 10168012 -equus n 1 3 @ #m %m 1 0 02373843 -equus_asinus n 2 3 @ ~ #m 2 0 02390640 02389559 -equus_burchelli n 1 1 @ 1 0 02391234 -equus_caballus n 1 5 @ ~ #m %m %p 1 0 02374451 -equus_caballus_gomelini n 1 1 @ 1 0 02381609 -equus_caballus_przevalskii n 1 1 @ 1 0 02381831 -equus_caballus_przewalskii n 1 1 @ 1 0 02381831 -equus_grevyi n 1 1 @ 1 0 02391508 -equus_hemionus n 1 2 @ ~ 1 0 02390834 -equus_hemionus_hemionus n 1 1 @ 1 0 02390938 -equus_kiang n 1 1 @ 1 0 02390738 -equus_quagga n 1 2 @ #m 1 0 02391617 -equus_zebra_zebra n 1 1 @ 1 0 02391373 -er n 2 2 @ #s 2 0 14636988 03283221 -era n 3 5 @ ~ #p %p ; 3 1 15248564 15248020 07261300 -eradication n 1 2 @ + 1 0 07331013 -eradicator n 1 2 @ + 1 0 10074339 -eragrostic_abyssinica n 1 1 @ 1 0 12120347 -eragrostis n 1 3 @ #m %m 1 0 12119947 -eragrostis_curvula n 1 1 @ 1 0 12120578 -eragrostis_tef n 1 1 @ 1 0 12120347 -eranthis n 1 3 @ #m %m 1 0 11733424 -eranthis_hyemalis n 1 2 @ #m 1 0 11733548 -erasable_programmable_read-only_memory n 1 2 @ ; 1 0 03294604 -eraser n 1 3 @ ~ + 1 0 03294833 -erasmus n 1 2 @ + 1 0 10959857 -erastianism n 1 1 @ 1 0 06188721 -erasure n 3 2 @ + 3 0 06428646 06389230 00397760 -erato n 1 2 @ ; 1 0 09566544 -eratosthenes n 1 1 @ 1 0 10960230 -erb's_palsy n 1 1 @ 1 0 14090842 -erb-duchenne_paralysis n 1 1 @ 1 0 14090842 -erbium n 1 2 @ #s 1 0 14636988 -ercilla n 1 2 @ #m 1 0 11856271 -erebus n 1 2 @ ; 1 0 09559573 -erechtites_hieracifolia n 1 2 @ #m 1 0 11965218 -erect_bugle n 1 1 @ 1 0 12841193 -erectile_dysfunction n 1 1 @ 1 0 14045141 -erectile_organ n 1 3 @ ~ %p 1 0 05523269 -erectile_tissue n 1 2 @ #p 1 0 05288912 -erecting n 1 2 @ + 1 0 00911752 -erecting_prism n 1 1 @ 1 0 03295012 -erection n 3 2 @ + 3 0 14038185 03295140 00911752 -erectness n 2 2 @ + 2 0 05083054 05079638 -eremite n 1 4 ! @ ~ + 1 0 10518945 -eremitism n 1 1 @ 1 0 04882438 -eresh-kigal n 1 2 @ ; 1 0 09518145 -ereshkigal n 1 2 @ ; 1 0 09518145 -ereshkigel n 1 2 @ ; 1 0 09518145 -erethism n 1 1 @ 1 0 14093723 -erethizon n 1 3 @ #m %m 1 0 02348036 -erethizon_dorsatum n 1 2 @ #m 1 0 02348173 -erethizontidae n 1 3 @ #m %m 1 0 02347865 -eretmochelys n 1 3 @ #m %m 1 0 01664862 -eretmochelys_imbricata n 1 2 @ #m 1 0 01664990 -erewhon n 1 1 @ 1 0 07283065 -erg n 1 2 @ #p 1 0 13725726 -ergocalciferol n 1 2 @ %s 1 0 15092227 -ergodicity n 1 1 @ 1 0 04771535 -ergometer n 1 1 @ 1 0 03260733 -ergonomics n 1 2 @ + 1 0 06126523 -ergonovine n 1 1 @ 1 0 14713748 -ergosterol n 1 2 @ #s 1 0 15059404 -ergot n 2 4 @ ~ #m + 2 0 14282796 12965626 -ergotamine n 1 1 @ 1 0 14714028 -ergotism n 1 1 @ 1 0 14510955 -ergotrate_maleate n 1 2 @ ; 1 0 14713748 -ergotropism n 1 2 @ + 1 0 00861894 -ergun_he n 1 2 @ #p 1 0 09205890 -erianthus n 1 3 @ #m %m 1 0 12120812 -erianthus_ravennae n 1 2 @ #m 1 0 12121187 -eric_arthur_blair n 1 1 @ 1 0 11217479 -eric_blair n 1 1 @ 1 0 11217479 -erica n 1 3 @ ~ #m 1 0 12227420 -erica_arborea n 1 2 @ %p 1 0 12227658 -erica_carnea n 1 1 @ 1 0 12228229 -erica_cinerea n 1 1 @ 1 0 12228387 -erica_jong n 1 1 @ 1 0 11091084 -erica_lusitanica n 1 1 @ 1 0 12228886 -erica_perspicua n 1 1 @ 1 0 12229111 -erica_tetralix n 1 1 @ 1 0 12228546 -erica_vagans n 1 1 @ 1 0 12228689 -ericaceae n 1 2 @ %m 1 0 12226322 -ericales n 1 4 @ ~ #m %m 1 0 12226009 -erich_mendelsohn n 1 1 @ 1 0 11173778 -erich_von_stroheim n 1 1 @ 1 0 11322627 -eridanus n 1 1 @ 1 0 09274032 -erie n 3 2 @ #p 3 0 09655018 09331066 09135447 -erie_canal n 1 2 @ #p 1 0 09118817 -erigeron n 1 3 @ #m %m 1 0 11965378 -erigeron_acer n 1 1 @ 1 0 11965962 -erigeron_annuus n 1 1 @ 1 0 11966083 -erigeron_aurantiacus n 1 1 @ 1 0 11966215 -erigeron_canadensis n 1 2 @ #m 1 0 11956348 -erigeron_divergens n 1 1 @ 1 0 11966385 -erigeron_glaucous n 1 1 @ 1 0 11966617 -erigeron_philadelphicus n 1 1 @ 1 0 11966896 -erigeron_pulchellus n 1 1 @ 1 0 11967142 -erigeron_speciosus n 1 1 @ 1 0 11967315 -erignathus n 1 3 @ #m %m 1 0 02080586 -erignathus_barbatus n 1 2 @ #m 1 0 02080713 -erigonum_fasciculatum n 1 1 @ 1 0 12602612 -erik_adolf_von_willebrand n 1 1 @ 1 0 11388321 -erik_alfred_leslie_satie n 1 1 @ 1 0 11282434 -erik_axel_karlfeldt n 1 1 @ 1 0 11096645 -erik_satie n 1 1 @ 1 0 11282434 -erik_von_willebrand n 1 1 @ 1 0 11388321 -erik_weisz n 1 1 @ 1 0 11061317 -erin n 1 2 @ ; 1 0 08860001 -erinaceidae n 1 3 @ #m %m 1 0 01893535 -erinaceus n 1 3 @ #m %m 1 0 01893666 -erinaceus_europaeus n 1 3 @ #m %p 1 0 01893825 -erinaceus_europeaeus n 1 3 @ #m %p 1 0 01893825 -eringo n 1 2 @ #m 1 0 12938081 -erinyes n 1 3 @ ~ ; 1 0 09506337 -eriobotrya n 1 3 @ #m %m 1 0 12629523 -eriobotrya_japonica n 1 3 @ #m %p 1 0 12629666 -eriocaulaceae n 1 3 @ #m %m 1 0 12608941 -eriocaulon n 1 3 @ #m %m 1 0 12609128 -eriocaulon_aquaticum n 1 2 @ #m 1 0 12609379 -eriodictyon n 1 3 @ #m %m 1 0 12835578 -eriodictyon_californicum n 1 2 @ #m 1 0 12835766 -eriogonum n 1 3 @ ~ #m 1 0 12602262 -eriogonum_allenii n 1 1 @ 1 0 12602434 -eriophorum n 1 3 @ #m %m 1 0 12152406 -eriophorum_angustifolium n 1 1 @ 1 0 12152722 -eriophyllum n 1 3 @ #m %m 1 0 11967572 -eriophyllum_lanatum n 1 1 @ 1 0 11967878 -eriophyllum_wallacei n 1 2 @ #m 1 0 11924014 -eriosoma n 1 3 @ #m %m 1 0 02253592 -eriosoma_lanigerum n 1 2 @ #m 1 0 02253913 -eris n 1 2 @ ; 1 0 09555391 -eristic n 2 3 @ ~ + 2 0 09615465 05635321 -erithacus n 1 3 @ #m %m 1 0 01562116 -erithacus_rubecola n 1 2 @ #m 1 0 01562265 -erithacus_svecicus n 1 2 @ #m 1 0 01562451 -eritrea n 1 5 @ #p %m %p + 1 0 08777544 -eritrean n 1 3 @ #m + 1 0 09705784 -erivan n 1 2 @ #p 1 0 09018030 -erlang n 1 1 @ 1 0 13714082 -erle_stanley_gardner n 1 1 @ 1 0 10990371 -erlenmeyer n 1 1 @ 1 0 10960439 -erlenmeyer_flask n 1 1 @ 1 1 03295246 -ermine n 2 2 @ ~ 2 0 14764820 02442172 -ern n 1 1 @ 1 0 01615458 -erne n 1 1 @ 1 0 01615458 -ernest_bevin n 1 1 @ 1 0 10850964 -ernest_bloch n 1 1 @ 1 0 10853413 -ernest_hemingway n 1 1 @ 1 0 11039860 -ernest_orlando_lawrence n 1 1 @ 1 0 11120368 -ernest_rutherford n 1 1 @ 1 0 11276285 -ernest_solvay n 1 1 @ 1 0 11307937 -ernest_thomas_sinton_walton n 1 1 @ 1 0 11372896 -ernest_walton n 1 1 @ 1 0 11372896 -ernestine_schumann-heink n 1 1 @ 1 0 11287437 -ernesto_guevara n 1 1 @ 1 0 11018153 -ernst n 1 1 @ 1 0 10960561 -ernst_boris_chain n 1 1 @ 1 0 10891029 -ernst_cassirer n 1 1 @ 1 0 10886558 -ernst_heinrich_haeckel n 1 1 @ 1 0 11021667 -ernst_heinrich_weber n 1 1 @ 1 0 11378254 -ernst_lubitsch n 1 1 @ 1 0 11143331 -ernst_ludwig_kirchner n 1 1 @ 1 0 11106170 -ernst_mach n 1 1 @ 1 0 11147533 -ernst_theodor_amadeus_hoffmann n 1 1 @ 1 0 11054670 -ernst_theodor_wilhelm_hoffmann n 1 1 @ 1 0 11054670 -ernst_werner_von_siemens n 1 1 @ 1 0 11299770 -eroding n 1 4 @ ~ + ; 1 0 13475538 -erodium n 1 3 @ #m %m 1 0 12688526 -erodium_cicutarium n 1 1 @ 1 0 12688903 -erodium_moschatum n 1 1 @ 1 0 12689305 -erodium_texanum n 1 1 @ 1 0 12689491 -erogenous_zone n 1 1 @ 1 0 05224966 -erolia n 1 3 @ #m %m 1 0 02027209 -erolia_alpina n 1 2 @ #m 1 0 02027492 -erolia_minutilla n 1 2 @ #m 1 0 02027357 -eros n 2 4 @ ~ + ; 2 0 09559896 07487955 -erose_leaf n 1 1 @ 1 0 13161151 -erosion n 4 4 @ ~ + ; 4 1 13475538 14518924 13475944 13453428 -erotic n 1 1 @ 1 0 10062716 -erotic_love n 1 1 @ 1 0 07488340 -erotica n 1 2 @ ~ 1 0 00747215 -eroticism n 2 2 @ ~ 2 0 14037925 07489059 -erotism n 2 2 @ ~ 2 0 14037925 07489059 -errancy n 2 4 ! @ + ; 2 0 04805813 04805472 -errand n 1 1 @ 1 1 00731947 -errand_boy n 1 2 @ ~ 1 0 10311375 -erratum n 1 1 @ 1 0 06769670 -erroneous_belief n 1 1 @ 1 0 05895465 -erroneousness n 1 3 @ ~ + 1 0 04802629 -error n 7 4 @ ~ + ; 7 5 00070965 04802629 05895465 00072068 04853765 07299569 06769392 -error_correction_code n 1 3 @ ~ ; 1 0 06357424 -ersatz n 1 1 @ 1 0 05696701 -erse n 1 2 @ ~ 1 0 06960566 -erskine_caldwell n 1 1 @ 1 0 10879364 -erskine_preston_caldwell n 1 1 @ 1 0 10879364 -ert n 1 1 @ 1 0 15130612 -eruca n 1 3 @ #m %m 1 0 11886380 -eruca_sativa n 1 2 @ #m 1 0 11886537 -eruca_vesicaria_sativa n 1 2 @ #m 1 0 11886537 -eructation n 2 3 @ + ; 2 0 14008567 00117578 -eruditeness n 1 3 @ ~ + 1 0 05985999 -erudition n 1 2 @ ~ 1 0 05985999 -eruption n 6 4 @ ~ + ; 6 1 07436475 14321469 14008567 07435273 07376257 07320176 -erving n 1 1 @ 1 0 10960772 -erwin_panofsky n 1 1 @ 1 0 11221956 -erwin_rommel n 1 1 @ 1 0 11269515 -erwin_schrodinger n 1 1 @ 1 0 11286476 -erwinia n 1 2 @ #m 1 0 01370698 -eryngium n 1 3 @ #m %m 1 0 12937822 -eryngium_aquaticum n 1 2 @ #m 1 0 12938445 -eryngium_maritimum n 1 2 @ #m 1 0 12938193 -eryngium_yuccifolium n 1 2 @ #m 1 0 12938667 -eryngo n 1 2 @ #m 1 0 12938081 -erysimum n 1 3 @ #m %m 1 0 11886788 -erysimum_allionii n 1 2 @ #m 1 0 11887476 -erysimum_arkansanum n 1 2 @ #m 1 0 11887750 -erysimum_asperum n 1 2 @ #m 1 0 11887750 -erysimum_cheiranthoides n 1 2 @ #m 1 0 11888061 -erysimum_cheiri n 1 2 @ #m 1 0 11883328 -erysipelas n 1 1 @ 1 0 14232299 -erysiphaceae n 1 3 @ #m %m 1 0 12963307 -erysiphales n 1 3 @ #m %m 1 0 12963140 -erysiphe n 1 3 @ #m %m 1 0 12963494 -erythema n 1 3 @ ~ + 1 0 14226303 -erythema_multiforme n 1 1 @ 1 0 14226567 -erythema_nodosum n 1 2 @ ~ 1 0 14226709 -erythema_nodosum_leprosum n 1 2 @ #p 1 0 14227015 -erythema_solare n 1 1 @ 1 0 14290365 -erythrina n 1 3 @ ~ #m 1 0 12527738 -erythrina_caffra n 1 1 @ 1 0 12528109 -erythrina_corallodendrum n 1 1 @ 1 0 12528382 -erythrina_crista-galli n 1 1 @ 1 0 12528549 -erythrina_indica n 1 1 @ 1 0 12528974 -erythrina_lysistemon n 1 1 @ 1 0 12528768 -erythrina_variegata n 1 1 @ 1 0 12528974 -erythrina_vespertilio n 1 1 @ 1 0 12529220 -erythrite n 1 1 @ 1 0 14674776 -erythroblast n 1 2 @ ~ 1 0 05448257 -erythroblastosis n 1 1 @ 1 0 14191756 -erythroblastosis_fetalis n 1 1 @ 1 0 14164548 -erythrocebus n 1 3 @ #m %m 1 0 02486138 -erythrocebus_patas n 1 2 @ #m 1 0 02486261 -erythrocin n 1 2 @ ; 1 0 03295357 -erythrocyte n 1 3 @ ~ %s 1 0 05454070 -erythrocyte_sedimentation_rate n 1 1 @ 1 0 15277462 -erythrocytolysin n 1 2 @ ~ 1 0 14906261 -erythroderma n 1 2 @ ~ 1 0 14227218 -erythrolysin n 1 2 @ ~ 1 0 14906261 -erythromycin n 1 1 @ 1 0 03295357 -erythronium n 1 3 @ #m %m 1 0 12450099 -erythronium_albidum n 1 1 @ 1 0 12450607 -erythronium_americanum n 1 1 @ 1 0 12450840 -erythronium_californicum n 1 1 @ 1 0 12451240 -erythronium_dens-canis n 1 1 @ 1 0 12451070 -erythronium_grandiflorum n 1 1 @ 1 0 12451399 -erythronium_montanum n 1 2 @ #m 1 0 12451566 -erythropoiesis n 1 2 @ + 1 0 13476111 -erythropoietin n 1 1 @ 1 0 14850334 -erythroxylaceae n 1 2 @ #m 1 0 12689641 -erythroxylon n 1 2 @ %m 1 0 12689808 -erythroxylon_coca n 1 2 @ #m 1 0 12690046 -erythroxylon_truxiuense n 1 2 @ #m 1 0 12690240 -erythroxylum n 1 2 @ %m 1 0 12689808 -es n 1 1 @ 1 0 14636822 -esaki n 1 2 @ ; 1 0 10960922 -esau n 1 2 @ ; 1 0 10961087 -escadrille n 2 2 @ ; 2 0 08220367 08219923 -escalade n 1 2 @ + 1 0 00325631 -escalader n 1 2 @ + 1 0 10062785 -escalation n 1 2 @ + 1 1 00366846 -escalator n 2 1 @ 2 0 06393800 03295773 -escalator_clause n 1 1 @ 1 0 06393800 -escallop n 3 5 @ ~ #m #p %p 3 0 07797641 07654886 01965889 -escalope_de_veau_orloff n 1 1 @ 1 0 07655067 -escapade n 2 2 @ ~ 2 1 00796315 00429322 -escape n 8 3 @ ~ + 8 5 00058743 00429440 00740712 00204199 00173283 11553419 07436661 04127633 -escape_cock n 1 1 @ 1 0 04127633 -escape_expert n 1 2 @ ~ 1 0 10063177 -escape_hatch n 1 2 @ #p 1 0 03295928 -escape_mechanism n 1 1 @ 1 0 00741158 -escape_valve n 1 1 @ 1 0 04127633 -escape_velocity n 1 1 @ 1 0 15283554 -escape_wheel n 1 2 @ #p 1 0 03296217 -escapee n 1 2 @ + 1 0 10062905 -escapement n 1 3 @ #p %p 1 0 03296081 -escapism n 1 2 @ + 1 0 00429440 -escapist n 1 2 @ + 1 0 10062996 -escapologist n 1 3 @ ~ + 1 0 10063177 -escapology n 1 2 @ + 1 0 06248214 -escargot n 1 2 @ #s 1 0 07782475 -escarole n 1 3 @ ~ #p 1 0 07731587 -escarp n 1 1 @ 1 0 03296328 -escarpment n 2 1 @ 2 0 09274152 03296328 -eschalot n 1 2 @ %p 1 0 12433178 -eschar n 1 1 @ 1 0 05264417 -eschatologist n 1 2 @ + 1 0 10063340 -eschatology n 1 2 @ + 1 0 06183162 -eschaton n 1 2 @ ; 1 0 15171307 -escheat n 2 2 @ ; 2 1 13341593 13256599 -escherichia n 1 3 @ ~ #m 1 0 01368216 -escherichia_coli n 1 1 @ 1 0 01368338 -eschrichtiidae n 1 3 @ #m %m 1 0 02065932 -eschrichtius n 1 3 @ #m %m 1 0 02066086 -eschrichtius_gibbosus n 1 2 @ #m 1 0 02066245 -eschrichtius_robustus n 1 2 @ #m 1 0 02066245 -eschscholtzia n 1 3 @ #m %m 1 0 11905236 -eschscholtzia_californica n 1 2 @ #m 1 0 11905392 -escolar n 1 2 @ #m 1 0 02622547 -escort n 4 4 @ ~ #m + 4 2 09863031 00827782 10063461 09992538 -escritoire n 1 1 @ 1 1 04164868 -escrow n 1 1 @ 1 0 13414554 -escrow_funds n 1 1 @ 1 0 13414770 -escudo n 2 3 @ #p %p 2 0 13676108 13675824 -escutcheon n 3 3 @ #p ; 3 0 03342262 03296597 03296478 -ese n 1 1 @ 1 0 13832599 -esfahan n 1 2 @ #p 1 0 08912012 -esidrix n 1 3 @ #s ; 1 0 03552169 -eskalith n 1 1 @ 1 0 14941884 -esker n 1 2 @ ; 1 0 09274305 -eskimo n 2 1 @ 2 0 10063635 06918215 -eskimo-aleut n 1 2 @ ~ 1 0 06918042 -eskimo-aleut_language n 1 2 @ ~ 1 0 06918042 -eskimo_curlew n 1 1 @ 1 0 02033882 -eskimo_dog n 1 1 @ 1 0 02109961 -esm n 1 1 @ 1 0 00995588 -esme_stuart_lennox_robinson n 1 1 @ 1 0 11266117 -esmolol n 1 1 @ 1 0 03296759 -esocidae n 1 3 @ #m %m 1 0 02560823 -esop n 1 1 @ 1 0 05912969 -esophageal_reflux n 1 1 @ 1 0 14335485 -esophageal_smear n 1 1 @ 1 0 05265736 -esophageal_veins n 1 1 @ 1 0 05366812 -esophagitis n 1 1 @ 1 0 14345815 -esophagogastric_junction n 1 1 @ 1 0 05571341 -esophagoscope n 1 1 @ 1 0 03296963 -esophagus n 1 4 @ #p %p + 1 0 05533948 -esoterica n 1 1 @ 1 0 06673671 -esotropia n 1 1 @ 1 0 14506233 -esox n 1 3 @ #m %m 1 0 02560964 -esox_americanus n 1 1 @ 1 0 02561937 -esox_lucius n 1 1 @ 1 0 02561381 -esox_masquinongy n 1 2 @ %p 1 0 02561514 -esox_niger n 1 1 @ 1 0 02561803 -esp n 1 2 @ ~ 1 0 07256695 -espadrille n 1 1 @ 1 0 03297103 -espagnole n 1 1 @ 1 0 07836269 -espalier n 1 1 @ 1 0 03297226 -espana n 1 7 @ ~ #m #p %m %p - 1 0 09023321 -esparcet n 1 2 @ #m 1 0 12552309 -esperantido n 1 1 @ 1 0 06895684 -esperanto n 1 1 @ 1 0 06895791 -espial n 1 2 @ + 1 0 00151087 -espionage n 1 1 @ 1 1 00654563 -espionage_agent n 1 1 @ 1 1 10063919 -espionage_network n 1 1 @ 1 0 08434622 -esplanade n 1 1 @ 1 0 03297354 -espoo n 1 2 @ #p 1 0 08780282 -espousal n 3 3 @ ~ + 3 0 01037469 01036778 00180413 -espresso n 1 2 @ ~ 1 0 07920052 -espresso_maker n 1 1 @ 1 0 03297495 -espresso_shop n 1 1 @ 1 0 03297644 -esprit n 1 1 @ 1 0 04633716 -esprit_de_corps n 1 1 @ 1 1 04625129 -esprit_de_l'escalier n 1 1 @ 1 0 06776877 -esq n 1 2 @ ; 1 0 10064046 -esquimau n 2 1 @ 2 0 10063635 06918215 -esquire n 2 2 @ ; 2 0 10064229 10064046 -esr n 2 1 @ 2 0 15277462 00641222 -essay n 2 3 @ ~ + 2 2 06409562 00787218 -essayer n 1 2 @ + 1 0 10728998 -essayist n 1 3 @ ~ + 1 0 10064405 -esselen n 2 1 @ 2 0 09655213 06921092 -essen n 1 2 @ #p 1 0 08772794 -essence n 4 3 @ ~ + 4 1 05921123 15110096 06604066 03916031 -essene n 1 1 @ 1 0 09655354 -essential n 1 4 ! @ ~ + 1 1 09367203 -essential_amino_acid n 1 2 @ ~ 1 0 14605787 -essential_condition n 1 1 @ 1 0 05893261 -essential_hypertension n 1 1 @ 1 0 14104645 -essential_oil n 1 2 @ ~ 1 0 14892655 -essential_thrombocytopenia n 1 1 @ 1 0 14197780 -essential_tremor n 1 1 @ 1 0 14005302 -essentiality n 1 5 ! @ ~ = + 1 0 05171045 -essentialness n 1 4 @ ~ = + 1 0 05171045 -essex n 1 3 @ #m #p 1 0 08882061 -essonite n 1 1 @ 1 0 14903466 -est n 1 1 @ 1 0 15131994 -established_church n 1 1 @ 1 0 08100778 -establishment n 7 7 @ ~ #p %m %p + ; 7 5 00237078 08053576 08164585 03297735 08075847 13476267 05826291 -establishmentarianism n 1 1 @ 1 0 05961278 -establishmentism n 1 1 @ 1 0 05961278 -estaminet n 1 1 @ 1 0 03298089 -estate n 3 4 @ ~ #p ; 3 2 13250930 13246662 08167365 -estate_agent n 1 2 @ ~ 1 0 10509810 -estate_car n 1 3 @ ~ %p 1 0 02814533 -estate_for_life n 1 3 @ ~ ; 1 0 13251715 -estate_of_the_realm n 1 4 @ ~ #p ; 1 0 08167365 -estate_tax n 1 1 @ 1 0 13313322 -estates_general n 1 1 @ 1 0 08164464 -estazolam n 1 1 @ 1 0 03298211 -esteem n 3 4 ! @ ~ + 3 1 14437552 07500741 06206800 -ester n 1 3 @ ~ + 1 1 14850483 -esther n 2 3 @ #p ; 2 0 10961372 06436717 -esther_hobart_mcquigg_slack_morris n 1 1 @ 1 0 11192195 -esther_morris n 1 1 @ 1 0 11192195 -esthesia n 1 1 @ 1 0 05678148 -esthesis n 1 2 @ ~ 1 0 05712076 -esthete n 1 1 @ 1 0 10064537 -esthetic n 1 2 @ ; 1 1 05968971 -esthetician n 2 2 @ + 2 0 10064831 10064669 -esthetics n 1 3 @ + ; 1 0 06161223 -esthonia n 1 3 @ #p %p 1 0 09012297 -esthonian n 1 1 @ 1 0 06957896 -estimate n 5 3 @ ~ + 5 4 05803379 00875246 06528783 06783598 06207029 -estimated_tax n 1 1 @ 1 0 13310539 -estimated_tax_return n 1 1 @ 1 0 06549115 -estimation n 4 3 @ ~ + 4 0 06528783 06207029 05803379 00875246 -estimator n 1 3 @ ~ + 1 0 09887034 -estivation n 2 4 @ #p + ; 2 0 14014162 07947069 -estonia n 1 4 @ #p %p + 1 0 09012297 -estonian n 1 2 @ + 1 0 06957896 -estonian_monetary_unit n 1 2 @ ~ 1 0 13700233 -estoppel n 1 1 @ 1 0 06653911 -estradiol n 1 2 @ #s 1 0 14750316 -estradiol_patch n 1 1 @ 1 0 03298352 -estragon n 2 3 @ #p %p 2 0 11930203 07821610 -estrangement n 2 3 @ ~ + 2 1 14415773 07502387 -estraterrestrial_body n 1 3 @ ~ #p 1 0 09277686 -estrilda n 1 3 @ #m %m 1 0 01543817 -estriol n 1 1 @ 1 0 14750622 -estrogen n 1 3 @ ~ + 1 0 14749794 -estrogen_antagonist n 1 1 @ 1 0 03298565 -estrone n 1 1 @ 1 0 14750782 -estronol n 1 2 @ ; 1 0 14750782 -estrus n 1 3 ! @ + 1 0 14038264 -estuary n 1 4 @ ~ #p + 1 1 09274500 -esurience n 2 2 @ + 2 0 14040071 04886402 -eta n 2 3 @ #m ; 2 0 08018189 06834780 -etagere n 1 2 @ %p 1 0 03298716 -etamin n 1 1 @ 1 0 03298858 -etamine n 1 1 @ 1 0 03298858 -etanercept n 1 1 @ 1 0 03299006 -etcetera n 1 1 @ 1 1 03299261 -etcher n 1 2 @ + 1 0 10064977 -etching n 3 3 @ ~ + 3 0 03299519 03299406 00938791 -etd n 1 1 @ 1 0 03305953 -eternal_city n 1 5 @ #p %m %p - 1 0 08806897 -eternal_damnation n 1 2 @ ~ 1 0 14458593 -eternal_life n 1 1 @ 1 0 13957390 -eternal_rest n 1 1 @ 1 0 13962765 -eternal_sleep n 1 1 @ 1 0 13962765 -eternity n 3 3 @ ~ + 3 3 15243976 13956905 15273406 -etf n 1 1 @ 1 0 13359032 -ethacrynic_acid n 1 1 @ 1 0 03299648 -ethan_allen n 1 1 @ 1 0 10814776 -ethanal n 1 1 @ 1 0 14711008 -ethanal_trimer n 1 1 @ 1 0 14689325 -ethanamide n 1 1 @ 1 0 14711197 -ethane n 1 1 @ 1 0 14850826 -ethanedioic_acid n 1 1 @ 1 0 14971022 -ethanediol n 1 1 @ 1 0 14851850 -ethanoate n 1 2 @ ~ 1 0 14599806 -ethanoic_acid n 1 3 @ ~ #s 1 0 14599168 -ethanol n 1 3 @ ~ #s 1 1 14709265 -ethanoyl_chloride n 1 1 @ 1 0 14808911 -ethanoyl_group n 1 1 @ 1 0 14594456 -ethanoyl_radical n 1 1 @ 1 0 14594456 -ethchlorvynol n 1 1 @ 1 0 03299788 -ethel_barrymore n 1 1 @ 1 0 10835866 -ethel_merman n 1 1 @ 1 0 11176527 -ethel_waters n 1 1 @ 1 0 11376069 -ethelbert n 1 1 @ 1 0 10961650 -ethelred n 2 1 @ 2 0 10962041 10961816 -ethelred_i n 1 1 @ 1 0 10961816 -ethelred_ii n 1 1 @ 1 0 10962041 -ethelred_the_unready n 1 1 @ 1 0 10962041 -ethene n 1 2 @ ~ 1 0 14851157 -ether n 4 4 @ ~ + ; 4 0 14847103 14709102 06254915 03299929 -ethernet n 1 2 @ %p 1 0 03300216 -ethernet_cable n 1 2 @ #p 1 0 03300443 -ethic n 2 3 @ ~ %p 2 1 05956019 06663617 -ethical_code n 1 3 @ ~ %p 1 0 06663617 -ethical_drug n 1 2 @ ~ 1 0 03999280 -ethical_motive n 1 2 @ ~ 1 1 09183693 -ethician n 1 2 @ + 1 0 10065066 -ethicism n 1 2 @ + 1 0 05961429 -ethicist n 1 2 @ + 1 0 10065066 -ethics n 2 4 @ ~ + - 2 1 09183693 06159473 -ethics_committee n 1 1 @ 1 0 08326850 -ethics_panel n 1 1 @ 1 0 08326850 -ethiopia n 1 6 @ #p %m %p + - 1 0 08778061 -ethiopian n 1 4 @ ~ #m + 1 1 09705124 -ethiopian_banana n 1 2 @ #m 1 0 12353754 -ethiopian_language n 1 1 @ 1 0 06987812 -ethiopian_monetary_unit n 1 2 @ ~ 1 0 13664283 -ethmoid n 1 2 @ #p 1 0 05274590 -ethmoid_bone n 1 2 @ #p 1 0 05274590 -ethmoid_sinus n 1 1 @ 1 0 05253165 -ethmoidal_artery n 1 2 @ #p 1 0 05344848 -ethmoidal_sinus n 1 1 @ 1 0 05253165 -ethmoidal_vein n 1 1 @ 1 0 05367003 -ethnarch n 1 2 @ ~ 1 0 10065261 -ethnic n 1 1 @ 1 0 10065547 -ethnic_cleansing n 1 1 @ 1 0 01265734 -ethnic_group n 1 2 @ ~ 1 0 07967382 -ethnic_joke n 1 1 @ 1 0 06779210 -ethnic_minority n 1 2 @ ~ 1 0 07967736 -ethnic_music n 1 2 @ ~ 1 0 07060167 -ethnic_slur n 1 2 @ - 1 0 06718862 -ethnicity n 1 2 @ + 1 0 04799133 -ethnocentrism n 1 1 @ 1 0 06201667 -ethnographer n 1 2 @ + 1 0 10065643 -ethnography n 1 2 @ + 1 0 06146546 -ethnologist n 1 3 @ ~ + 1 0 10065758 -ethnology n 1 2 @ + 1 0 06146880 -ethnos n 1 2 @ ~ 1 0 07967382 -ethocaine n 1 3 @ ~ ; 1 0 04006727 -ethologist n 1 2 @ + 1 0 10065911 -ethology n 1 2 @ + 1 0 06072619 -ethos n 1 2 @ ; 1 1 04723286 -ethosuximide n 1 1 @ 1 0 03300578 -ethoxyethane n 1 2 @ ~ 1 0 03299929 -ethrane n 1 2 @ ; 1 0 03287459 -ethril n 1 2 @ ; 1 0 03295357 -ethyl n 1 1 @ 1 0 14710325 -ethyl_acetate n 1 1 @ 1 1 14850948 -ethyl_alcohol n 2 4 @ ~ #s %s 2 0 14709265 07902121 -ethyl_aminobenzoate n 1 1 @ 1 0 02830721 -ethyl_chloride n 1 1 @ 1 0 03300786 -ethyl_ether n 1 2 @ ~ 1 0 03299929 -ethyl_group n 1 1 @ 1 0 14710325 -ethyl_radical n 1 1 @ 1 0 14710325 -ethylene n 1 2 @ ~ 1 0 14851157 -ethylene_glycol n 1 1 @ 1 0 14851850 -ethylene_tetrachloride n 1 1 @ 1 0 04416338 -ethylenediaminetetraacetic_acid n 1 1 @ 1 0 14851668 -ethyne n 1 2 @ #s 1 0 14600742 -etienne-louis_arthur_fallot n 1 1 @ 1 0 10966145 -etiolation n 3 3 @ + ; 3 0 04700496 00362862 00274206 -etiologist n 1 2 @ + 1 0 10066059 -etiology n 2 2 @ + 2 0 07327608 06161048 -etiquette n 1 2 @ ~ 1 1 06664845 -etna n 2 2 @ #p 2 0 09174718 02921029 -etodolac n 1 2 @ %s 1 0 03300907 -eton_collar n 1 1 @ 1 0 03301066 -eton_college n 1 2 @ #p 1 0 08410891 -eton_jacket n 1 1 @ 1 0 03301175 -etonian n 1 1 @ 1 0 10066206 -etropus n 1 3 @ #m %m 1 0 02661765 -etropus_rimosus n 1 2 @ #m 1 0 02661892 -etruria n 1 3 @ #p %m 1 0 08813807 -etruscan n 1 2 @ #m 1 0 09716643 -etude n 1 1 @ 1 0 07043518 -etui n 1 1 @ 1 0 03301291 -etymological_dictionary n 1 1 @ 1 0 06419503 -etymologist n 1 2 @ + 1 0 10066314 -etymologizing n 1 3 @ + ; 1 0 06744154 -etymology n 2 3 @ ~ + 2 0 06514621 06168855 -etymon n 1 1 @ 1 0 06300445 -eu n 2 3 @ #s %m 2 0 14637176 08173515 -euarctos n 1 3 @ #m %m 1 0 02132974 -euarctos_americanus n 1 3 @ ~ #m 1 0 02133161 -euascomycetes n 1 2 @ #m 1 0 13024348 -eubacteria n 1 4 @ ~ #m %p 1 0 01355326 -eubacteriales n 1 3 @ #m %m 1 0 01356086 -eubacterium n 1 4 @ ~ #m %p 1 0 01355326 -eubryales n 1 3 @ #m %m 1 0 11540747 -eubstance n 1 3 @ ~ = 1 0 04934546 -eucalypt n 1 4 @ ~ #m %s 1 0 12334891 -eucalypt_grandis n 1 1 @ 1 0 12337800 -eucalypt_gunnii n 1 1 @ 1 0 12337922 -eucalypt_ovata n 1 1 @ 1 0 12338034 -eucalypt_tereticornis n 1 1 @ 1 0 12338655 -eucalyptus n 2 5 @ ~ #m #s %s 2 0 12335351 12334891 -eucalyptus_amygdalina n 1 1 @ 1 0 12336092 -eucalyptus_calophylla n 1 1 @ 1 0 12336224 -eucalyptus_camaldulensis n 1 2 @ %s 1 0 12336333 -eucalyptus_camphora n 1 1 @ 1 0 12336586 -eucalyptus_citriodora n 1 1 @ 1 0 12338258 -eucalyptus_coriacea n 1 1 @ 1 0 12336727 -eucalyptus_delegatensis n 1 1 @ 1 0 12336973 -eucalyptus_dumosa n 1 1 @ 1 0 12337131 -eucalyptus_fraxinoides n 1 1 @ 1 0 12337391 -eucalyptus_globulus n 1 1 @ 1 0 12337617 -eucalyptus_gum n 1 2 @ #s 1 0 12339090 -eucalyptus_kino n 1 2 @ #s 1 0 12339090 -eucalyptus_maculata n 1 1 @ 1 0 12338146 -eucalyptus_maculata_citriodora n 1 1 @ 1 0 12338258 -eucalyptus_oil n 1 1 @ 1 0 14893537 -eucalyptus_pauciflora n 1 1 @ 1 0 12336727 -eucalyptus_regnans n 1 1 @ 1 0 12338796 -eucalyptus_rostrata n 1 2 @ %s 1 0 12336333 -eucalyptus_tree n 1 4 @ ~ #m %s 1 0 12334891 -eucalyptus_viminalis n 1 1 @ 1 0 12338979 -eucalyptusd_eugenioides n 1 1 @ 1 0 12337246 -eucalytus_stellulata n 1 1 @ 1 0 12338454 -eucarya n 1 3 @ #m %m 1 0 12736455 -eucarya_acuminata n 1 3 @ #m %p 1 0 12736603 -eucaryote n 1 2 @ + 1 0 01415626 -eucharist n 1 3 @ %p + 1 0 01035853 -eucharistic_liturgy n 1 2 @ %p 1 0 01035853 -euchre n 1 1 @ 1 0 00492309 -eucinostomus n 1 3 @ #m %m 1 0 02637337 -eucinostomus_gula n 1 2 @ #m 1 0 02637475 -euclid n 1 2 @ + 1 0 10962302 -euclid's_axiom n 1 3 @ ~ ; 1 0 06005692 -euclid's_fifth_axiom n 1 1 @ 1 0 06006458 -euclid's_first_axiom n 1 1 @ 1 0 06005999 -euclid's_fourth_axiom n 1 1 @ 1 0 06006364 -euclid's_postulate n 1 3 @ ~ ; 1 0 06005692 -euclid's_second_axiom n 1 1 @ 1 0 06006117 -euclid's_third_axiom n 1 1 @ 1 0 06006243 -euclidean_axiom n 1 3 @ ~ ; 1 0 06005692 -euclidean_geometry n 1 2 @ ; 1 0 06005518 -euclidean_space n 1 1 @ 1 0 08004953 -eudaemon n 1 3 @ + ; 1 0 09542697 -eudaemonia n 1 2 @ ~ 1 0 14447525 -eudaimonia n 1 2 @ ~ 1 0 14447525 -eudemon n 1 4 ! @ + ; 1 0 09542697 -eudemonism n 1 1 @ 1 0 06160418 -euderma n 1 3 @ #m %m 1 0 02148377 -euderma_maculata n 1 2 @ #m 1 0 02148512 -eudiometer n 1 1 @ 1 0 03301389 -eudora_welty n 1 1 @ 1 0 11381457 -eudromias_morinellus n 1 2 @ #m 1 0 02024185 -eudyptes n 1 3 @ #m %m 1 0 02057208 -eugene n 2 2 @ #p 2 0 10962423 09133500 -eugene_curran_kelly n 1 1 @ 1 0 11099729 -eugene_delacroix n 1 1 @ 1 0 10928498 -eugene_gladstone_o'neill n 1 1 @ 1 0 11215070 -eugene_ionesco n 1 1 @ 1 0 11072887 -eugene_luther_vidal n 1 1 @ 1 0 11366109 -eugene_o'neill n 1 1 @ 1 0 11215070 -eugene_ormandy n 1 1 @ 1 0 11216797 -eugene_paul_wigner n 1 1 @ 1 0 11386138 -eugene_sue n 1 1 @ 1 0 11323580 -eugene_v._debs n 1 1 @ 1 0 10926429 -eugene_victor_debs n 1 1 @ 1 0 10926429 -eugene_wigner n 1 1 @ 1 0 11386138 -eugenia n 1 3 @ #m %m 1 0 12331415 -eugenia_aromaticum n 1 3 @ #m %p 1 0 12339526 -eugenia_caryophyllatum n 1 3 @ #m %p 1 0 12339526 -eugenia_corynantha n 1 2 @ #m 1 0 12331655 -eugenia_dicrana n 1 2 @ #m 1 0 12331788 -eugenia_jambos n 1 3 @ #m %p 1 0 12332218 -eugenia_uniflora n 1 2 @ #m 1 0 12332030 -eugenics n 1 3 ! @ + 1 0 06042486 -eugenio_pacelli n 1 1 @ 1 0 11238511 -euglena n 1 2 @ #m 1 0 01406736 -euglenaceae n 1 3 @ #m %m 1 0 01406426 -euglenid n 1 2 @ #m 1 0 01406904 -euglenoid n 1 2 @ #m 1 0 01406904 -euglenophyceae n 1 3 @ #m %m 1 0 01406262 -euglenophyta n 1 3 @ #m %m 1 0 01406092 -euglenophyte n 1 2 @ #m 1 0 01406904 -eukaryote n 1 3 ! @ + 1 0 01415626 -euler n 1 1 @ 1 0 10962611 -eulogist n 1 1 @ 1 0 09617161 -eulogium n 1 1 @ 1 0 06694359 -eulogy n 2 2 @ + 2 0 06694359 06694149 -eumeces n 1 3 @ #m %m 1 0 01684435 -eumeces_callicephalus n 1 2 @ #m 1 0 01684741 -eumeces_skiltonianus n 1 2 @ #m 1 0 01684578 -eumenes n 1 3 @ #m %m 1 0 02214203 -eumenides n 1 3 @ ~ ; 1 0 09506337 -eumetopias n 1 3 @ #m %m 1 0 02078882 -eumetopias_jubatus n 1 2 @ #m 1 0 02079005 -eumops n 1 3 @ #m %m 1 0 02150016 -eumycetes n 1 2 @ #m 1 0 12995435 -eumycota n 1 3 @ #m %m 1 0 12994979 -eunectes n 1 3 @ #m %m 1 0 01742967 -eunectes_murinus n 1 2 @ #m 1 0 01743086 -eunuch n 1 1 @ 1 0 10066452 -eunuchoidism n 1 1 @ 1 0 14075660 -euonymous_alatus n 1 1 @ 1 0 12749456 -euonymus n 1 3 @ #m %m 1 0 12748815 -euonymus_americanus n 1 2 @ #m 1 0 12749852 -euonymus_atropurpureus n 1 2 @ #m 1 0 12749679 -euonymus_europaeus n 1 1 @ 1 0 12749289 -euonymus_fortunei_radicans n 1 2 @ #m 1 0 12750076 -euonymus_radicans_vegetus n 1 2 @ #m 1 0 12750076 -euopean_hoopoe n 1 2 @ #m 1 0 01830042 -eupatorium n 1 3 @ #m %m 1 0 11968104 -eupatorium_aya-pana n 1 2 @ #m 1 0 11937692 -eupatorium_cannabinum n 1 1 @ 1 0 11968335 -eupatorium_capillifolium n 1 1 @ 1 0 11968519 -eupatorium_coelestinum n 1 2 @ #m 1 0 11955896 -eupatorium_maculatum n 1 2 @ #m 1 0 11968704 -eupatorium_perfoliatum n 1 2 @ #m 1 0 11968931 -eupatorium_purpureum n 1 2 @ #m 1 0 11969166 -eupatorium_rugosum n 1 2 @ #m 1 0 11917835 -euphagus n 1 3 @ #m %m 1 0 01574671 -euphagus_carilonus n 1 2 @ #m 1 0 01574801 -euphausia_pacifica n 1 2 @ #m 1 0 01988869 -euphausiacea n 1 3 @ #m %m 1 0 01988481 -euphemism n 1 4 ! @ + - 1 0 06605046 -euphonium n 1 1 @ 1 0 03301568 -euphony n 1 4 @ ~ + - 1 0 05718556 -euphorbia n 1 3 @ #m %m 1 0 12917338 -euphorbia_amygdaloides n 1 2 @ #m 1 0 12920955 -euphorbia_antisyphilitica n 1 3 @ #m %s 1 0 12921126 -euphorbia_caput-medusae n 1 2 @ #m 1 0 12918991 -euphorbia_corollata n 1 2 @ #m 1 0 12919195 -euphorbia_cyathophora n 1 2 @ #m 1 0 12920719 -euphorbia_cyparissias n 1 2 @ #m 1 0 12919646 -euphorbia_dentata n 1 2 @ #m 1 0 12922119 -euphorbia_esula n 1 2 @ #m 1 0 12919847 -euphorbia_exigua n 1 2 @ #m 1 0 12921315 -euphorbia_fulgens n 1 2 @ #m 1 0 12921499 -euphorbia_helioscopia n 1 2 @ #m 1 0 12918609 -euphorbia_heterophylla n 1 2 @ #m 1 0 12920521 -euphorbia_hirsuta n 1 2 @ #m 1 0 12920043 -euphorbia_ingens n 1 2 @ #m 1 0 12921660 -euphorbia_lathyris n 1 2 @ #m 1 0 12918404 -euphorbia_litchi n 1 3 @ #m %p 1 0 12743352 -euphorbia_marginata n 1 2 @ #m 1 0 12919403 -euphorbia_medusae n 1 2 @ #m 1 0 12918991 -euphorbia_milii n 1 2 @ #m 1 0 12921868 -euphorbia_peplus n 1 2 @ #m 1 0 12918810 -euphorbia_pulcherrima n 1 2 @ #m 1 0 12920204 -euphorbiaceae n 1 3 @ #m %m 1 0 12916935 -euphorbium n 1 1 @ 1 0 14852312 -euphoria n 1 2 ! @ 1 1 07529096 -euphoriant n 1 2 @ + 1 0 03301696 -euphory n 1 2 @ + 1 0 07529096 -euphractus n 1 3 @ #m %m 1 0 02455584 -euphractus_sexcinctus n 1 2 @ #m 1 0 02455720 -euphrates n 1 2 @ #p 1 0 09274739 -euphrates_river n 1 2 @ #p 1 0 09274739 -euphrosyne n 1 2 @ ; 1 0 09495732 -euphuism n 2 2 @ ~ 2 0 07069517 06366879 -euplectella n 1 3 @ #m %m 1 0 01907902 -eupnea n 1 1 @ 1 0 00833491 -eupnoea n 1 1 @ 1 0 00833491 -euproctis n 1 3 @ #m %m 1 0 02286271 -euproctis_chrysorrhoea n 1 2 @ #m 1 0 02286654 -euproctis_phaeorrhoea n 1 2 @ #m 1 0 02286425 -eurafrican n 1 2 @ + 1 0 09686262 -eurasia n 1 4 @ #p %p + 1 0 09275016 -eurasian n 1 2 @ + 1 0 09686401 -eurasian_badger n 1 2 @ #m 1 0 02448060 -eurasian_green_toad n 1 1 @ 1 0 01646902 -eurasian_hamster n 1 1 @ 1 0 02343058 -eurasian_kingfisher n 1 2 @ #m 1 0 01827793 -eurasian_otter n 1 1 @ 1 0 02445171 -eurasian_woodcock n 1 2 @ #m 1 0 02031298 -eureka n 2 2 @ #p 2 0 14820747 09063125 -eurhythmics n 1 1 @ 1 0 00429713 -eurhythmy n 1 1 @ 1 0 00429713 -euripides n 1 1 @ 1 0 10962712 -euro n 1 1 @ 1 0 13661820 -eurobabble n 1 1 @ 1 0 07069632 -eurocentrism n 1 2 @ + 1 0 06201778 -eurocurrency n 1 2 @ ~ 1 0 13386136 -eurodollar n 1 1 @ 1 0 13674479 -euronithopod n 1 3 @ #m %m 1 0 01705247 -euronithopoda n 1 3 @ #m %m 1 0 01705247 -europa n 1 1 @ 1 0 09275335 -europan n 1 1 @ 1 0 06895940 -europe n 3 6 @ #p %m %p + - 3 1 09275473 08173515 08172695 -european n 1 2 @ ~ 1 1 09686536 -european_ash n 1 1 @ 1 0 12304703 -european_barberry n 1 1 @ 1 0 11698042 -european_bean n 1 3 @ #m %p 1 0 12576029 -european_beech n 1 2 @ #m 1 0 12261359 -european_beggar-ticks n 1 1 @ 1 0 11940750 -european_bird_cherry n 1 3 @ #m %p 1 0 12647560 -european_bittern n 1 2 @ #m 1 0 02011943 -european_black_alder n 1 2 @ #m 1 0 12284821 -european_black_currant n 1 3 @ #m %p 1 0 12805561 -european_black_grouse n 1 1 @ 1 0 01795735 -european_blackbird n 1 2 @ #m 1 0 01558594 -european_blueberry n 1 2 @ #p 1 0 07743224 -european_bog_asphodel n 1 1 @ 1 0 12463975 -european_box n 1 1 @ 1 0 12746253 -european_bream n 1 2 @ #m 1 0 01440467 -european_brooklime n 1 2 @ #m 1 0 12891093 -european_brown_bat n 1 1 @ 1 0 02147328 -european_catfish n 1 2 @ #m 1 0 02518324 -european_central_bank n 1 1 @ 1 0 08350244 -european_chestnut n 1 1 @ 1 0 12263204 -european_community n 1 2 @ %m 1 0 08173515 -european_corn_borer_moth n 1 2 @ #m 1 0 02289610 -european_country n 1 3 @ ~ #p 1 1 08696931 -european_cranberry n 1 1 @ 1 0 12246037 -european_cranberry_bush n 1 2 @ #m 1 0 12680864 -european_cranberrybush n 1 2 @ #m 1 0 12680864 -european_creeper n 1 1 @ 1 0 01589893 -european_cuckoo n 1 2 @ #m 1 0 01823414 -european_curlew n 1 1 @ 1 0 02033779 -european_dewberry n 1 2 @ %p 1 0 12655726 -european_dogtooth n 1 1 @ 1 0 12451070 -european_dune_grass n 1 1 @ 1 0 12119539 -european_economic_community n 1 2 @ %m 1 0 08173515 -european_elder n 1 1 @ 1 0 12679201 -european_elk n 1 2 @ #m 1 0 02432983 -european_elm n 1 2 @ #m 1 0 12407890 -european_field_elm n 1 2 @ #m 1 0 12406715 -european_fire_salamander n 1 2 @ #m 1 0 01629819 -european_flatfish n 1 2 @ #m 1 0 02658811 -european_fly_honeysuckle n 1 2 @ #m 1 0 12677120 -european_gallinule n 1 1 @ 1 0 02017213 -european_goatsucker n 1 2 @ #m 1 0 01835769 -european_hackberry n 1 2 @ #m 1 0 12409470 -european_hare n 1 2 @ #m 1 0 02326862 -european_honeysuckle n 1 2 @ #m 1 0 12677120 -european_hop n 1 1 @ 1 0 12398174 -european_hornbeam n 1 2 @ #m 1 0 12286988 -european_house_cricket n 1 2 @ #m 1 0 02230023 -european_ladies'_tresses n 1 2 @ #m 1 0 12084555 -european_larch n 1 1 @ 1 0 11619845 -european_law_enforcement_organisation n 1 1 @ 1 0 08210042 -european_lemming n 1 2 @ #m 1 0 02344918 -european_lobster n 2 3 @ #m %m 2 0 07793133 01983674 -european_magpie n 1 1 @ 1 0 01582398 -european_mountain_ash n 1 2 @ %p 1 0 12658308 -european_nation n 1 3 @ ~ #p 1 1 08696931 -european_nightjar n 1 2 @ #m 1 0 01835769 -european_nut_pine n 1 2 @ %p 1 0 11611758 -european_nuthatch n 1 2 @ #m 1 0 01591005 -european_olive_tree n 1 3 @ #m %p 1 0 12301180 -european_parsley_fern n 1 1 @ 1 0 13210597 -european_pasqueflower n 1 1 @ 1 0 11738203 -european_perch n 1 3 @ #m %p 1 0 02557318 -european_plan n 1 1 @ 1 0 13416106 -european_quaking_aspen n 1 1 @ 1 0 12733870 -european_rabbit n 1 3 @ #m %p 1 0 02324850 -european_raspberry n 1 1 @ 1 0 12656369 -european_recovery_program n 1 1 @ 1 0 13266690 -european_red_elder n 1 1 @ 1 0 12679593 -european_roller n 1 2 @ #m 1 0 01826680 -european_russia n 1 2 @ #p 1 0 09007471 -european_sandpiper n 1 2 @ #m 1 0 02026948 -european_sanicle n 1 1 @ 1 0 12944095 -european_sea_bream n 1 2 @ #m 1 0 02591613 -european_sea_eagle n 1 1 @ 1 0 01615458 -european_shrike n 1 1 @ 1 0 01599159 -european_silver_fir n 1 1 @ 1 0 11621547 -european_smelt n 2 4 @ #m #p %p 2 0 07798872 02540983 -european_sole n 1 2 @ #m 1 0 02664285 -european_spider_crab n 1 2 @ #m 1 0 01982068 -european_swift n 1 2 @ #m 1 0 01832493 -european_toad n 1 1 @ 1 0 01646555 -european_tortoise n 1 2 @ #m 1 0 01670535 -european_turkey_oak n 1 1 @ 1 0 12270741 -european_union n 1 2 @ %m 1 0 08173515 -european_water_ouzel n 1 2 @ #m 1 0 01602080 -european_water_shrew n 1 2 @ #m 1 0 01893021 -european_white_birch n 1 2 @ #m 1 0 12282527 -european_white_lily n 1 2 @ #m 1 0 11715678 -european_wildcat n 1 2 @ #m 1 0 02125081 -european_wolf_spider n 1 2 @ #m 1 0 01775370 -european_wood_mouse n 1 2 @ #m 1 0 02333190 -european_woolly_thistle n 1 1 @ 1 0 11954642 -europeanisation n 1 2 @ + 1 0 13476440 -europeanization n 1 2 @ + 1 0 13476440 -europium n 1 2 @ #s 1 0 14637176 -europol n 1 1 @ 1 0 08210042 -eurotiales n 1 3 @ #m %m 1 0 13026763 -eurotium n 1 2 @ #m 1 0 13027049 -euryale n 2 3 @ #m ; 2 0 09498186 02318437 -euryalida n 1 3 @ #m %m 1 0 02317983 -eurydice n 1 2 @ ; 1 0 09571581 -eurylaimi n 1 3 @ #m %m 1 0 01546223 -eurylaimidae n 1 3 @ #m %m 1 0 01546348 -eurypterid n 1 2 @ #m 1 0 01788579 -eurypterida n 1 3 @ #m %m 1 0 01788420 -eurythmics n 1 1 @ 1 0 00429713 -eurythmy n 1 1 @ 1 0 00429713 -eusebius n 1 1 @ 1 0 10962837 -eusebius_hieronymus n 1 2 @ ; 1 0 11083064 -eusebius_of_caesarea n 1 1 @ 1 0 10962837 -eusebius_sophronius_hieronymus n 1 2 @ ; 1 0 11083064 -euskadi_ta_askatasuna n 1 2 @ ; 1 0 08018189 -eusporangium n 1 1 @ 1 0 13092987 -eustachian_tube n 1 2 @ #p 1 0 05325153 -eustachio n 1 1 @ 1 0 10963050 -eustoma n 1 3 @ #m %m 1 0 12291763 -eustoma_grandiflorum n 1 2 @ #m 1 0 12291959 -eutamias n 1 3 @ #m %m 1 0 02360135 -eutamius_asiaticus n 1 1 @ 1 0 02360480 -eutamius_sibiricus n 1 1 @ 1 0 02360480 -eutectic n 1 1 @ 1 1 14589114 -eutectoid_steel n 1 1 @ 1 0 14852747 -euterpe n 2 4 @ #m %m ; 2 0 12590842 09566667 -euterpe_oleracea n 1 2 @ #m 1 0 12591017 -euthanasia n 1 1 @ 1 0 00219856 -euthenics n 1 1 @ 1 0 06042905 -eutheria n 1 4 @ #m %m + 1 0 01886220 -eutherian n 1 3 @ ~ #m 1 0 01886756 -eutherian_mammal n 1 3 @ ~ #m 1 0 01886756 -euthynnus n 1 3 @ #m %m 1 0 02628467 -euthynnus_pelamis n 1 2 @ #m 1 0 02628600 -eutrophication n 1 1 @ 1 0 13476590 -euxine_sea n 1 2 @ %p 1 0 09223325 -ev n 1 1 @ 1 0 13725902 -eva_braun n 1 1 @ 1 0 10863440 -eva_le_gallienne n 1 1 @ 1 0 11124831 -evacuation n 3 3 @ ~ + 3 2 00395797 00054821 13473097 -evacuee n 1 1 @ 1 0 10066624 -evaluation n 2 3 @ ~ + 2 2 00874806 05736149 -evaluator n 1 3 @ ~ + 1 0 10066732 -evanescence n 1 2 @ + 1 0 07335917 -evangel n 1 5 @ ~ #p %p + 1 0 06455138 -evangelical_and_reformed_church n 1 1 @ 1 0 08091290 -evangelical_united_brethren_church n 1 1 @ 1 0 08092855 -evangelicalism n 1 2 @ ~ 1 0 06231030 -evangelism n 1 3 @ ~ + 1 0 07244613 -evangelist n 2 3 @ ~ + 2 1 10067011 10067305 -evangelista_torricelli n 1 1 @ 1 0 11346110 -evans n 2 1 @ 2 0 10963467 10963254 -evansville n 1 2 @ #p 1 0 09085209 -evaporated_milk n 1 1 @ 1 0 07846359 -evaporation n 2 4 @ ~ #p + 2 1 13572436 13460568 -evaporative_cooler n 1 1 @ 1 1 03301833 -evaporite n 1 2 @ #s 1 0 15009192 -evaporometer n 1 1 @ 1 0 02752917 -evariste_galois n 1 1 @ 1 0 10988261 -evasion n 4 3 @ ~ + 4 0 06761099 01120855 00740712 00059127 -evasive_action n 1 2 @ ~ 1 0 00059552 -evasive_answer n 1 2 @ ; 1 0 06560758 -evasiveness n 1 2 @ + 1 0 04825383 -eve n 4 4 @ ~ %p ; 4 2 09586743 15156424 15167778 15166462 -evelyn_arthur_saint_john_waugh n 1 1 @ 1 0 11377168 -evelyn_waugh n 1 1 @ 1 0 11377168 -even n 1 3 @ ~ %p 1 0 15166462 -even-pinnate_leaf n 1 1 @ 1 0 13160116 -even-toed_ungulate n 1 4 ! @ ~ #m 1 0 02394477 -even_chance n 1 1 @ 1 0 11519799 -even_spacing n 1 1 @ 1 0 04769988 -evenfall n 1 3 @ ~ #p 1 0 15169421 -evening n 3 5 @ ~ #p %p ; 3 1 15166462 15268094 15167906 -evening-primrose_family n 1 3 @ #m %m 1 0 12341126 -evening-snow n 1 2 @ #m 1 0 12811713 -evening_bag n 1 1 @ 1 0 03301940 -evening_clothes n 1 2 @ ~ 1 0 03384891 -evening_dress n 1 2 @ ~ 1 0 03384891 -evening_gown n 1 1 @ 1 0 03201638 -evening_grosbeak n 1 2 @ #m 1 0 01540566 -evening_lychnis n 1 2 @ #m 1 0 11816336 -evening_prayer n 1 2 @ ; 1 0 06456759 -evening_primrose n 1 3 @ ~ #m 1 0 12344283 -evening_shift n 2 1 @ 2 0 15292829 08218713 -evening_shirt n 1 2 @ %p 1 0 03238879 -evening_star n 1 1 @ 1 0 09276872 -evening_trumpet_flower n 1 2 @ #m 1 0 12485981 -eveningwear n 1 2 @ ~ 1 0 03384891 -evenk n 1 1 @ 1 0 09737453 -evenki n 2 1 @ 2 0 09644008 06928610 -evenness n 3 5 ! @ ~ = + 3 0 13790492 04769456 04748498 -evensong n 2 2 @ ; 2 1 15230180 06456759 -event n 4 4 @ ~ + ; 4 2 00029378 13943400 11453860 11410625 -event_planner n 1 2 @ ; 1 0 10067600 -eventide n 1 3 @ ~ %p 1 0 15166462 -eventration n 1 1 @ 1 0 14296142 -eventuality n 1 1 @ 1 0 07290761 -everest n 1 2 @ #p 1 0 09277010 -everglade_state n 1 4 @ #m #p %p 1 0 09071690 -everglades n 1 2 @ #p 1 0 09277279 -everglades_national_park n 1 3 @ #p %p 1 0 08604487 -evergreen n 1 1 @ 1 0 13099833 -evergreen_beech n 1 3 @ ~ #m 1 0 12266217 -evergreen_bittersweet n 1 2 @ #m 1 0 12750076 -evergreen_blueberry n 1 1 @ 1 0 12247963 -evergreen_cherry n 1 1 @ 1 0 12646397 -evergreen_grass n 1 2 @ #m 1 0 12108871 -evergreen_huckleberry n 1 1 @ 1 0 12248141 -evergreen_magnolia n 1 1 @ 1 0 11710136 -evergreen_millet n 1 1 @ 1 0 12138905 -evergreen_oak n 1 1 @ 1 0 12272432 -evergreen_plant n 1 2 ! @ 1 0 13099833 -evergreen_state n 1 3 @ #p %p 1 0 09152944 -evergreen_thorn n 1 1 @ 1 0 12628579 -evergreen_winterberry n 1 1 @ 1 0 12757458 -evergreen_wood_fern n 2 2 @ #m 2 0 13199717 13194036 -everlasting n 1 3 @ ~ #m 1 0 11915899 -everlasting_flower n 1 3 @ ~ #m 1 0 11915899 -everlasting_pea n 1 3 @ ~ #m 1 0 12539832 -everlastingness n 1 2 @ + 1 0 05054426 -evernia n 1 2 @ #m 1 0 12990092 -evers n 1 1 @ 1 0 10963642 -eversion n 2 2 @ + 2 0 05080616 00335653 -evert n 1 2 @ + 1 0 10963815 -everting n 1 2 @ + 1 0 00335653 -everydayness n 1 4 @ ~ = + 1 0 04795545 -everyman n 1 1 @ 1 0 10067793 -eviction n 2 4 @ ~ + ; 2 0 01194904 01194331 -evidence n 3 4 @ ~ + ; 3 3 05823932 06643408 06733939 -evil n 3 4 ! @ ~ = 3 3 00745637 05144663 04852088 -evil_eye n 1 1 @ 1 0 00879156 -evil_spirit n 1 2 @ ~ 1 0 09541919 -evildoer n 1 2 @ ~ 1 1 10601078 -evildoing n 1 2 @ ~ 1 0 00745005 -evilness n 1 5 ! @ ~ = + 1 0 04852088 -evisceration n 3 2 @ + 3 0 00673578 00670703 00354342 -evocation n 3 3 @ #p + 3 1 05769833 05978623 05827253 -evoked_potential n 1 1 @ 1 0 11494076 -evolution n 2 6 ! @ ~ + ; - 2 1 13464820 13477023 -evolutionary_trend n 1 2 @ ~ 1 0 06197958 -evolutionism n 1 3 @ ~ ; 1 0 06109227 -evolutionist n 1 1 @ 1 0 10067867 -ew n 1 3 @ ~ ; 1 0 00954751 -ewe n 3 3 @ #m %p 3 0 09705287 06997587 02411999 -ewenki n 2 1 @ 2 0 09644008 06928610 -ewer n 1 2 @ ~ 1 0 03950228 -ewing's_sarcoma n 1 1 @ 1 0 14240587 -ewing's_tumor n 1 1 @ 1 0 14240587 -ewing's_tumour n 1 1 @ 1 0 14240587 -ex n 3 2 @ #m 3 0 10194231 10020533 06833663 -ex-boyfriend n 1 1 @ 1 0 09871580 -ex-gambler n 1 1 @ 1 1 09617435 -ex-husband n 1 1 @ 1 1 10194231 -ex-mayor n 1 1 @ 1 1 09617508 -ex-president n 1 1 @ 1 0 09618880 -ex-serviceman n 1 3 @ ~ #m 1 0 10749353 -ex-spouse n 1 1 @ 1 0 10074249 -ex-wife n 1 1 @ 1 0 10020533 -ex_libris n 1 1 @ 1 0 07272416 -exabit n 1 3 @ #p %p 1 0 13631194 -exabyte n 2 3 @ #p %p 2 0 13631037 13630864 -exacerbation n 2 2 @ + 2 1 00374835 01222157 -exacta n 1 1 @ 1 0 00507025 -exaction n 1 3 @ ~ + 1 0 01061526 -exactitude n 1 2 @ ~ 1 0 04803430 -exactness n 1 4 ! @ ~ + 1 0 04803430 -exacum n 1 3 @ #m %m 1 0 12292285 -exacum_affine n 1 2 @ #m 1 0 12292463 -exaeretodon n 1 2 @ #m 1 0 01720867 -exaggeration n 3 2 @ + 3 2 07106502 00367552 06758835 -exaltation n 4 3 @ #p + 4 0 13986372 08685019 07991994 01029114 -exam n 1 2 @ ~ 1 0 07197021 -exam_paper n 1 1 @ 1 0 07199328 -examen n 2 1 @ 2 0 05787005 05734288 -examination n 5 3 @ ~ + 5 3 00635850 07197021 07193958 05787005 00636461 -examination_paper n 1 1 @ 1 0 07199328 -examinee n 1 3 @ ~ + 1 0 10703692 -examiner n 2 3 @ ~ + 2 0 10068234 10067968 -example n 6 3 @ ~ + 6 4 05820620 05937112 05925366 06672752 07308889 00729919 -exanthem n 1 1 @ 1 0 14321814 -exanthema n 1 1 @ 1 0 14321814 -exanthema_subitum n 1 1 @ 1 0 14123759 -exarch n 3 1 @ 3 0 10068682 10068537 10068425 -exarchate n 1 1 @ 1 0 08551296 -exasperation n 2 3 @ ~ + 2 1 07518878 00425451 -exbibit n 1 3 @ #p %p 1 0 13631355 -exbibyte n 1 3 @ #p %p 1 0 13630864 -excalibur n 1 1 @ 1 0 03302030 -excavation n 4 5 @ ~ + ; - 4 1 00941974 08550076 03302121 00922327 -excavator n 2 3 @ ~ + 2 0 09617292 03996416 -exceedance n 1 3 @ + ; 1 0 05092635 -excellence n 2 3 @ ~ + 2 1 04728786 05851744 -excellency n 2 2 @ + 2 0 10068928 05851744 -excelsior n 1 1 @ 1 1 14976634 -exception n 3 3 @ ~ + 3 2 05707269 05821246 07209533 -excerpt n 1 3 @ ~ + 1 0 06400510 -excerption n 1 2 @ ~ 1 0 06400510 -excess n 4 2 @ ~ 4 2 05119714 05118437 14452294 01073655 -excessiveness n 1 3 @ ~ + 1 0 05118437 -exchange n 11 6 @ ~ #p %p + ; 11 5 11409538 07134706 01166258 01109467 02994858 03302487 01166517 01093085 00196485 00167278 00167063 -exchange_premium n 1 1 @ 1 0 13324297 -exchange_rate n 1 1 @ 1 0 13326620 -exchange_traded_fund n 1 1 @ 1 0 13359032 -exchange_transfusion n 1 1 @ 1 0 00323766 -exchangeability n 1 4 ! @ ~ + 1 0 04735929 -exchanger n 1 2 @ + 1 0 10069120 -exchequer n 1 2 @ ~ 1 0 13356985 -excise n 1 3 @ ~ + 1 0 13316332 -excise_tax n 1 2 @ ~ 1 1 13316332 -exciseman n 1 1 @ 1 0 10693052 -excision n 4 3 @ ~ + 4 0 06428216 00393369 00208277 00115803 -excitability n 2 3 @ ~ + 2 1 05653710 04628850 -excitable_area n 1 1 @ 1 0 05489640 -excitableness n 1 3 @ ~ + 1 0 04628850 -excitant n 1 2 @ ~ 1 0 04320126 -excitation n 3 4 @ ~ = + 3 0 14037011 14036356 01260867 -excitement n 4 4 @ ~ = + 4 4 07528212 14037011 01260867 00554300 -exclaiming n 1 3 @ ~ + 1 1 07125523 -exclamation n 3 3 @ ~ + 3 1 07125523 07209868 07102802 -exclamation_mark n 1 1 @ 1 0 06843017 -exclamation_point n 1 1 @ 1 0 06843017 -exclusion n 4 4 ! @ ~ + 4 1 13935227 14413993 05707269 00206927 -exclusion_principle n 1 1 @ 1 0 05886939 -exclusionary_rule n 1 1 @ 1 0 06654074 -exclusive n 1 1 @ 1 0 06683183 -exclusive_right n 1 2 @ ~ 1 0 05178715 -exclusiveness n 1 2 @ + 1 1 04889337 -excogitation n 2 3 @ ~ + 2 0 05792842 05633385 -excogitator n 1 2 @ + 1 0 10068804 -excommunication n 2 2 @ + 2 0 14413993 00208277 -excoriation n 2 3 @ ~ + 2 0 14286549 07233214 -excrement n 1 2 @ ~ 1 0 14853947 -excrescence n 2 4 @ ~ + ; 2 0 13894434 05603650 -excreta n 1 2 @ ~ 1 0 14853947 -excreting n 1 3 @ ~ + 1 0 13473097 -excretion n 2 3 @ ~ + 2 1 13473097 14853947 -excretory_organ n 1 3 @ ~ #p 1 0 05333259 -excretory_product n 1 2 @ ~ 1 0 14853947 -excruciation n 2 3 @ ~ + 2 0 14324274 00422551 -exculpation n 2 3 @ ~ + 2 0 06741305 01227691 -excursion n 2 3 @ ~ + 2 1 00311809 00310201 -excursion_rate n 1 1 @ 1 0 13326772 -excursionist n 1 2 @ + 1 0 10596689 -excursus n 1 1 @ 1 1 06600684 -excuse n 3 3 @ ~ + 3 1 06741305 06626446 05821102 -excuser n 1 2 @ + 1 0 10399299 -exec n 1 1 @ 1 0 08128837 -execration n 3 3 @ ~ + 3 0 07503430 07233634 05811884 -executability n 1 2 @ + 1 0 05203207 -executant n 1 3 @ + ; 1 0 10069296 -executing n 1 3 @ ~ + 1 0 01163779 -execution n 7 5 @ ~ #p + ; 7 2 01163779 00097504 13477462 06554078 06553846 01127379 00220522 -execution_of_instrument n 1 2 @ ; 1 0 06554078 -execution_sale n 1 1 @ 1 0 06528557 -execution_speed n 1 2 @ ; 1 0 05061619 -executioner n 1 3 @ ~ + 1 1 10069427 -executive n 3 3 @ ~ #m 3 2 10069645 08165455 09770472 -executive_agency n 1 3 @ ~ #p 1 0 08123696 -executive_branch n 1 4 @ #m %m %p 1 1 08356074 -executive_clemency n 1 1 @ 1 0 13945495 -executive_council n 1 1 @ 1 0 08311409 -executive_department n 1 3 @ ~ #m 1 0 08123167 -executive_director n 1 2 @ ~ 1 0 10069645 -executive_office_of_the_president n 1 4 @ #m %m %p 1 0 08356074 -executive_officer n 1 2 @ ; 1 0 10069869 -executive_program n 1 3 @ #p %p 1 0 06580351 -executive_routine n 1 2 @ #p 1 0 06584376 -executive_secretary n 1 1 @ 1 1 10069981 -executive_session n 1 1 @ 1 0 07147116 -executive_vice_president n 1 1 @ 1 0 10070108 -executor n 1 3 @ ~ + 1 1 10070219 -executor-heir_relation n 1 2 @ ; 1 0 13839468 -executrix n 1 1 @ 1 0 10070377 -exegesis n 1 3 @ + ; 1 0 07171940 -exegete n 1 1 @ 1 0 10070449 -exemplar n 1 3 @ ~ + 1 1 05925366 -exemplary_damages n 1 3 @ ~ ; 1 0 13291831 -exemplification n 2 3 @ ~ + 2 0 06880533 05765901 -exemption n 3 3 @ ~ + 3 1 14528873 13310985 00213903 -exenteration n 1 2 @ + 1 0 00673710 -exercise n 5 4 @ ~ + ; 5 4 00624738 00947128 00894552 00729919 07454452 -exercise_bike n 1 1 @ 1 0 03302671 -exercise_device n 1 2 @ ~ 1 0 03302790 -exercise_set n 1 1 @ 1 0 00625699 -exerciser n 1 4 @ ~ + ; 1 0 03472232 -exercising n 1 3 @ ~ + 1 1 00624738 -exercising_weight n 1 2 @ ~ 1 0 04571292 -exercycle n 1 1 @ 1 0 03302671 -exertion n 1 3 @ ~ + 1 1 00621627 -exfiltration_operation n 1 1 @ 1 0 00983811 -exfoliation n 2 3 @ ~ + 2 0 11445753 09425607 -exhalation n 2 4 @ ~ #p + 2 0 14842091 00835267 -exhaust n 2 3 @ #p %p 2 0 14837364 03302938 -exhaust_fan n 1 2 @ ~ 1 0 03303217 -exhaust_fumes n 1 1 @ 1 0 14837364 -exhaust_hood n 1 2 @ ~ 1 0 03531546 -exhaust_manifold n 1 2 @ #p 1 0 03303333 -exhaust_pipe n 1 2 @ #p 1 0 03303510 -exhaust_system n 1 3 @ #p %p 1 0 03302938 -exhaust_valve n 1 2 @ #p 1 0 03303669 -exhaustion n 3 3 @ ~ + 3 1 14017206 07331210 00356621 -exhibit n 2 3 @ ~ + 2 1 06734322 00521209 -exhibition n 2 4 @ ~ + ; 2 2 00522145 08407619 -exhibition_area n 1 2 @ ~ 1 0 03303831 -exhibition_game n 1 1 @ 1 1 00456899 -exhibition_hall n 1 2 @ ~ 1 0 03303831 -exhibition_season n 1 1 @ 1 0 15240733 -exhibitioner n 1 1 @ 1 0 10070563 -exhibitionism n 2 2 @ + 2 0 06889701 00737894 -exhibitionist n 2 3 @ ~ + 2 0 10070942 10070711 -exhibitor n 1 2 @ + 1 0 10070563 -exhilaration n 1 3 @ ~ + 1 0 07528212 -exhortation n 2 3 @ ~ + 2 1 07139700 07246036 -exhumation n 1 2 @ + 1 1 00044900 -exigency n 2 2 @ + 2 1 14033054 07417405 -exiguity n 1 3 @ ~ + 1 0 05113462 -exile n 3 3 @ ~ + 3 0 10071332 10071139 00207761 -existence n 2 7 ! @ ~ %m %p = + 2 2 13954253 09466280 -existential_operator n 1 1 @ 1 0 06302755 -existential_philosopher n 1 2 @ ~ 1 0 10071557 -existential_philosophy n 1 3 @ ; - 1 0 05970755 -existential_quantifier n 1 1 @ 1 0 06302755 -existentialism n 1 4 @ + ; - 1 0 05970755 -existentialist n 1 3 @ ~ + 1 1 10071557 -existentialist_philosopher n 1 2 @ ~ 1 0 10071557 -existentialist_philosophy n 1 3 @ ; - 1 0 05970755 -exit n 3 4 @ ~ + ; 3 1 03303965 07333649 00058519 -exit_poll n 1 1 @ 1 0 05801286 -exmoor n 2 1 @ 2 0 02413824 02382850 -exobiology n 1 1 @ 1 0 06071722 -exocarp n 1 1 @ 1 0 11684499 -exocet n 1 1 @ 1 0 03304197 -exocoetidae n 1 3 @ #m %m 1 0 02550296 -exocrine n 1 2 @ ~ 1 0 05328867 -exocrine_gland n 1 2 @ ~ 1 0 05328867 -exocycloida n 1 3 @ #m %m 1 0 02319423 -exode n 1 1 @ 1 0 07018211 -exoderm n 1 2 @ ~ 1 0 01463739 -exodontia n 1 2 @ + 1 0 06048373 -exodontics n 1 2 @ + 1 0 06048373 -exodontist n 1 2 @ + 1 0 10071912 -exodus n 2 2 @ #p 2 1 00060414 06432715 -exoergic_reaction n 1 1 @ 1 0 13477691 -exogamy n 1 3 ! @ + 1 0 13965274 -exogen n 1 4 @ ~ #m + 1 0 11666854 -exogenous_depression n 1 1 @ 1 0 14390249 -exogenous_obesity n 1 1 @ 1 0 05000717 -exomphalos n 1 1 @ 1 0 14296254 -exon n 1 2 ! @ 1 0 14830992 -exoneration n 2 3 @ ~ + 2 0 14575399 01241331 -exonuclease n 1 1 @ 1 0 14606137 -exophthalmic_goiter n 1 1 @ 1 0 14121058 -exophthalmos n 1 3 @ ~ #p 1 0 14313017 -exopterygota n 1 2 @ #m 1 0 02232408 -exorbitance n 1 2 @ + 1 0 05119096 -exorciser n 1 2 @ + 1 0 10072054 -exorcism n 1 3 @ %p + 1 0 05978472 -exorcist n 2 2 @ + 2 0 10072187 10072054 -exordium n 1 2 @ ; 1 0 06397171 -exoskeleton n 1 3 @ ~ ; 1 0 05586759 -exosphere n 1 2 @ #p 1 0 09277432 -exostosis n 1 1 @ 1 0 14234317 -exotherm n 1 2 @ + 1 0 14883954 -exothermic_reaction n 1 1 @ 1 0 13477812 -exotic_belly_dancer n 1 1 @ 1 0 09849462 -exotic_dancer n 2 2 @ ~ 2 1 10664340 09849462 -exoticism n 1 1 @ 1 0 04799612 -exoticness n 1 2 @ + 1 0 04799612 -exotism n 1 1 @ 1 0 04799612 -exotoxin n 1 2 ! @ 1 0 15035832 -exotropia n 1 1 @ 1 0 14557573 -expanding_upon n 1 2 @ ~ 1 0 00371314 -expanse n 3 2 @ ~ 3 2 05127959 05128519 09277538 -expansion n 4 5 ! @ ~ + ; 4 1 00365709 13784366 07172756 00371314 -expansion_bit n 1 1 @ 1 0 03304323 -expansion_bolt n 1 1 @ 1 0 03304465 -expansion_slot n 1 2 @ ; 1 0 04243727 -expansionism n 1 1 @ 1 0 05961608 -expansive_bit n 1 1 @ 1 0 03304323 -expansiveness n 2 2 @ + 2 2 04729710 04651009 -expansivity n 3 2 @ + 3 0 13588625 04729710 04651009 -expat n 1 3 @ ~ ; 1 0 10071332 -expatiation n 1 2 @ + 1 0 07139151 -expatriate n 1 3 @ ~ + 1 0 10071332 -expatriation n 2 3 @ ~ + 2 0 00207761 00056087 -expectancy n 2 3 @ ~ + 2 2 07511080 05951323 -expectation n 4 4 @ ~ + ; 4 2 05944958 14486122 07510923 06024230 -expected_value n 1 2 @ ; 1 0 06024230 -expectedness n 2 4 ! @ ~ + 2 0 14501375 04795252 -expectorant n 1 2 @ ~ 1 0 03304605 -expectoration n 2 2 @ + 2 0 13477934 00118552 -expectorator n 2 3 @ ~ + 2 0 10636874 03304605 -expedience n 2 3 ! @ + 2 0 05158431 04835488 -expediency n 1 3 ! @ + 1 0 05158431 -expedient n 1 2 @ ~ 1 0 00177448 -expedition n 5 4 @ ~ + ; 5 4 00968479 08409130 00309647 00311809 05059830 -expeditiousness n 1 2 @ + 1 0 05059830 -expelling n 1 3 @ ~ + 1 0 13466586 -expender n 1 2 @ + 1 0 10635275 -expending n 1 2 @ + 1 0 01122601 -expenditure n 3 3 @ ~ + 3 2 13275288 01122601 00356367 -expense n 3 2 @ ~ 3 3 13275495 07420671 13277886 -expense_account n 1 1 @ 1 1 13411943 -expense_record n 1 1 @ 1 0 13404156 -expensiveness n 1 4 ! @ ~ + 1 0 05145891 -experience n 3 5 ! @ ~ %p + 3 3 05758059 05984584 07285403 -experiment n 3 4 @ ~ %p + 3 3 00639556 05798043 00785959 -experimental_condition n 1 2 @ #p 1 0 05798863 -experimental_extinction n 1 1 @ 1 0 05758692 -experimental_method n 1 1 @ 1 0 05660801 -experimental_procedure n 1 2 @ ~ 1 0 00178024 -experimental_psychology n 1 2 @ ~ 1 0 06139285 -experimental_variable n 1 3 @ ~ ; 1 0 05858093 -experimentalism n 2 1 @ 2 1 05961745 06208409 -experimentation n 2 4 @ ~ %p + 2 2 05798043 00639556 -experimenter n 2 3 @ ~ + 2 1 09617577 09617696 -experimenter_bias n 1 2 @ ; 1 0 06203222 -expert n 1 2 @ ~ 1 1 09617867 -expert_witness n 1 2 ! @ 1 0 10072346 -expertise n 1 3 @ ~ + 1 1 05640729 -expertness n 1 3 @ ~ + 1 0 05640729 -expiation n 2 3 @ ~ + 2 0 13292787 00095121 -expiration n 3 5 @ ~ #p + ; 3 1 15268682 07333649 00835267 -expiry n 2 2 @ ~ 2 0 15268682 07355491 -explanandum n 1 3 @ #p ; 1 0 06738823 -explanans n 1 3 @ #p ; 1 0 06739013 -explanation n 3 4 @ ~ %p + 3 2 06738281 05793000 07232421 -expletive n 2 1 @ 2 1 07125096 07126228 -explicandum n 1 3 @ #p ; 1 0 06738823 -explication n 2 2 @ + 2 0 07232811 06743362 -explication_de_texte n 1 1 @ 1 0 06374834 -explicit_definition n 1 1 @ 1 0 06745156 -explicitness n 1 4 ! @ = + 1 0 04822032 -exploding_cucumber n 1 2 @ #m 1 0 12165758 -exploit n 1 2 @ ~ 1 1 00036762 -exploitation n 2 3 @ ~ + 2 2 00948206 00418903 -exploiter n 1 2 @ + 1 0 10072546 -exploration n 3 3 @ ~ + 3 3 00310063 00945777 05785311 -exploratory_survey n 1 1 @ 1 0 00985106 -explorer n 2 3 @ ~ + 2 1 10072708 06571538 -explorer's_gentian n 1 1 @ 1 0 12294542 -explosion n 7 4 @ ~ #p + 7 2 07308563 00377364 07414068 07383696 07116443 07014854 00572706 -explosive n 1 4 @ ~ #p + 1 0 03304730 -explosive_charge n 1 2 @ ~ 1 0 03008275 -explosive_compound n 1 2 @ ~ 1 0 03305135 -explosive_detection_system n 1 1 @ 1 0 03305300 -explosive_device n 1 3 @ ~ %p 1 0 03305522 -explosive_mixture n 1 2 @ ~ 1 0 03305844 -explosive_trace_detection n 1 1 @ 1 0 03305953 -explosive_unit n 1 2 @ ~ 1 0 13602922 -expo n 1 3 @ ~ ; 1 0 08407619 -exponent n 3 3 @ ~ + 3 0 09774783 09618760 06812417 -exponential n 1 2 @ + 1 0 13789462 -exponential_curve n 1 1 @ 1 0 13789751 -exponential_decay n 1 2 @ ~ 1 0 13478055 -exponential_equation n 1 1 @ 1 0 13789627 -exponential_expression n 1 1 @ 1 0 13789849 -exponential_function n 1 1 @ 1 1 13789462 -exponential_return n 1 2 @ ~ 1 0 13478055 -exponential_series n 1 1 @ 1 0 13790004 -exponentiation n 1 1 @ 1 0 00872411 -export n 1 3 ! @ + 1 1 03306207 -export_credit n 1 1 @ 1 0 13379106 -export_duty n 1 1 @ 1 0 13317941 -exportation n 2 2 @ + 2 0 03306207 01111952 -exporter n 1 2 @ + 1 1 10073634 -exporting n 1 2 @ + 1 0 01111952 -expose n 1 2 @ + 1 0 07215568 -exposition n 4 4 @ ~ + ; 4 1 06742426 08407619 06742173 06741993 -expositor n 1 1 @ 1 0 10073762 -expostulation n 2 2 @ + 2 0 07246742 07126116 -exposure n 10 3 @ ~ + 10 4 05043973 00157463 07215377 05934123 14543931 13640206 03925226 00907340 00522537 00204659 -exposure_meter n 1 2 @ ~ 1 0 03667664 -exposure_therapy n 1 1 @ 1 0 00702202 -expounder n 1 1 @ 1 0 10073762 -expounding n 1 3 @ ~ + 1 0 06742426 -express n 3 4 ! @ ~ + 3 0 06265475 03306385 01106460 -express_luxury_liner n 1 1 @ 1 0 03698604 -express_mail n 1 2 @ ~ 1 0 06265475 -express_trust n 1 1 @ 1 0 13362347 -expressage n 1 2 @ + 1 0 01106460 -expressed_almond_oil n 1 1 @ 1 0 12645754 -expression n 9 4 @ ~ + ; 9 6 04679738 06880249 07139873 07151380 07069948 06731802 13478205 06313651 00358528 -expressionism n 1 3 @ ~ + 1 0 08467258 -expressionist n 1 2 @ + 1 0 10073851 -expressive_aphasia n 1 1 @ 1 0 14098458 -expressive_style n 1 3 @ ~ ; 1 0 07066659 -expressiveness n 1 3 @ ~ + 1 1 04819694 -expressway n 1 3 @ ~ %p 1 0 03306610 -expropriation n 1 2 @ + 1 0 00086140 -expulsion n 3 3 @ ~ + 3 1 00206927 00358702 00116687 -expunction n 1 2 @ + 1 0 00397760 -expunging n 1 2 @ + 1 0 00397760 -expurgation n 1 3 @ ~ + 1 1 00397010 -expurgator n 1 2 @ + 1 0 10073992 -exquisiteness n 1 2 @ + 1 0 04684654 -extemporisation n 1 2 @ + 1 0 00099588 -extemporization n 1 2 @ + 1 0 00099588 -extended_care_facility n 1 1 @ 1 0 08054226 -extended_family n 1 1 @ 1 0 07973653 -extended_order n 1 2 @ ; 1 0 08427282 -extended_time_scale n 1 2 @ ; 1 0 15135057 -extension n 12 6 ! @ ~ #p %p + 12 5 15272382 00367768 06253518 00886039 00369532 06335162 05922949 05214599 05133535 03306869 03281935 02713594 -extension_agent n 1 1 @ 1 0 09971385 -extension_cord n 1 1 @ 1 0 03307037 -extension_course n 1 2 @ #p 1 0 00890941 -extension_ladder n 1 2 @ ~ 1 0 03307156 -extension_phone n 1 1 @ 1 0 03306869 -extension_service n 1 2 @ %p 1 0 00886039 -extensiveness n 1 2 @ + 1 0 05106317 -extensor n 1 4 ! @ ~ + 1 0 05294606 -extensor_muscle n 1 2 @ ~ 1 0 05294606 -extent n 2 3 @ ~ + 2 2 13941125 05123416 -extenuation n 2 2 @ + 2 0 06741728 00354583 -exterior n 2 2 @ ~ 2 2 08613593 08613472 -exterior_angle n 1 2 @ ~ 1 0 13890535 -exterior_door n 1 4 @ ~ #p %p 1 0 03307274 -exteriorisation n 1 2 @ + 1 0 00932624 -exteriorization n 1 2 @ + 1 0 00932624 -extermination n 2 1 @ 2 0 07332691 01245061 -exterminator n 1 2 @ + 1 0 10074339 -extern n 1 1 @ 1 1 10074578 -external n 1 1 @ 1 0 05852007 -external-combustion_engine n 1 2 @ ~ 1 0 03307573 -external_angle n 1 2 @ ~ 1 0 13890535 -external_auditory_canal n 1 3 @ #p %p 1 0 05248667 -external_body_part n 1 2 @ ~ 1 0 05225090 -external_carotid n 1 1 @ 1 0 05339751 -external_carotid_artery n 1 1 @ 1 0 05339751 -external_drive n 1 1 @ 1 0 03307792 -external_ear n 1 3 @ #p %p 1 0 05323723 -external_gill n 1 1 @ 1 0 02510978 -external_iliac_artery n 1 1 @ 1 0 05347465 -external_iliac_vein n 1 1 @ 1 0 05369757 -external_jugular_vein n 1 1 @ 1 0 05371301 -external_maxillary_artery n 1 1 @ 1 0 05345038 -external_nasal_vein n 1 1 @ 1 0 05367165 -external_oblique_muscle n 1 1 @ 1 0 05557839 -external_organ n 1 2 @ ~ 1 0 05298572 -external_orifice n 1 2 @ #p 1 0 05512670 -external_respiration n 1 3 @ ~ %p 1 0 00831191 -external_storage n 1 1 @ 1 0 02763306 -externalisation n 2 1 @ 2 0 05735680 00932624 -externality n 1 3 @ ~ + 1 0 05078623 -externalization n 2 1 @ 2 0 05735680 00932624 -exteroception n 1 2 @ ~ 1 0 05653848 -exteroceptor n 1 1 @ 1 0 05299814 -extinction n 6 4 @ %p = + 6 0 14012173 13963032 13478342 07332691 05758692 00229934 -extinction_angle n 1 1 @ 1 0 13891735 -extinguisher n 1 2 @ + 1 0 03345837 -extinguishing n 1 2 @ + 1 0 00229934 -extirpation n 2 3 @ ~ + 2 0 00393369 00115803 -extoller n 1 3 @ ~ + 1 0 10248711 -extolment n 1 3 @ ~ + 1 0 06693198 -extortion n 3 3 @ ~ + 3 0 13307901 01061726 00784388 -extortioner n 1 1 @ 1 0 09858299 -extortionist n 1 2 @ + 1 0 09858299 -extra n 3 1 @ 3 0 10676569 06597349 03307981 -extra_dividend n 1 1 @ 1 0 13408361 -extra_innings n 1 1 @ 1 0 15234212 -extra_large n 1 1 @ 1 0 05096095 -extra_point n 1 2 @ ; 1 0 00189257 -extra_time n 1 3 @ ~ #p 1 0 15233989 -extracapsular_surgery n 1 2 @ ~ 1 0 00678752 -extracellular_fluid n 1 2 @ ~ 1 0 05398023 -extract n 2 3 @ ~ + 2 1 14848785 06400510 -extraction n 3 3 @ ~ + 3 0 13478525 04923743 00392950 -extractor n 3 4 @ ~ #p + 3 0 03308152 02995998 02972714 -extracurricular_activity n 1 2 @ ~ 1 0 00886272 -extradition n 1 2 @ + 1 0 00213482 -extrados n 1 1 @ 1 0 13869045 -extragalactic_nebula n 1 6 @ ~ #m %m %s ; 1 0 08271042 -extramarital_sex n 1 2 @ ~ 1 0 00848282 -extraneousness n 1 2 @ + 1 1 13796585 -extraordinariness n 1 4 ! @ ~ + 1 0 04796490 -extrapolation n 2 3 @ + ; 2 1 05802547 05781145 -extrasensory_perception n 1 2 @ ~ 1 0 07256695 -extrasystole n 1 1 @ 1 0 07401604 -extraterrestrial n 1 2 @ + 1 0 09484465 -extraterrestrial_being n 1 1 @ 1 0 09484465 -extraterrestrial_object n 1 3 @ ~ #p 1 0 09277686 -extrauterine_gestation n 1 2 @ ~ 1 0 14047740 -extrauterine_pregnancy n 1 2 @ ~ 1 0 14047740 -extravagance n 3 2 @ + 3 0 05118862 04894807 00743641 -extravagancy n 1 1 @ 1 0 05118862 -extravaganza n 1 1 @ 1 1 00515684 -extravasation n 3 4 @ ~ + ; 3 0 14858794 14008567 13478813 -extraversion n 1 4 ! @ ~ ; 1 0 04621738 -extravert n 1 3 @ + ; 1 0 10074841 -extreme n 2 2 @ ~ 2 2 05098099 08569165 -extreme_point n 1 2 @ ~ 1 0 08569165 -extreme_right-winger n 1 2 @ ~ 1 0 10508475 -extreme_unction n 1 1 @ 1 0 01039637 -extremely_high_frequency n 1 2 @ #p 1 0 05058025 -extremely_low_frequency n 1 2 @ #p 1 0 05057163 -extremeness n 1 1 @ 1 0 05098225 -extremism n 1 2 @ + 1 0 06217806 -extremist n 1 2 @ + 1 0 10074735 -extremity n 5 4 @ ~ #p + 5 1 05559908 14476521 13942405 08568978 05566919 -extremum n 2 2 @ ~ 2 1 08569165 13653902 -extrication n 1 2 @ + 1 0 01244593 -extrinsic_fraud n 1 1 @ 1 0 00778017 -extropy n 1 2 @ + 1 0 06749267 -extroversion n 1 3 @ ~ ; 1 0 04621738 -extrovert n 1 3 ! @ ; 1 0 10074841 -extrusion n 2 3 @ ~ + 2 0 13894434 00358702 -exuberance n 2 3 @ ~ + 2 0 07555647 04634540 -exudate n 1 3 @ ~ + 1 0 14852913 -exudation n 2 3 @ ~ + 2 0 14852913 07432337 -exultation n 2 3 @ ~ + 2 1 07527817 07129422 -exurbia n 1 1 @ 1 0 08554762 -exuviae n 1 2 @ + 1 0 05240076 -eyas n 1 1 @ 1 0 01606097 -eyck n 1 1 @ 1 0 10964052 -eye n 5 6 @ ~ #p %p + ; 5 3 05311054 05614476 05703307 08523483 03308297 -eye-beaming n 1 1 @ 1 1 00877786 -eye-catcher n 1 1 @ 1 0 05812813 -eye-drop n 2 2 @ ~ 2 0 13771929 00656643 -eye-lotion n 1 1 @ 1 0 03309214 -eye_bank n 1 1 @ 1 0 13368675 -eye_blink n 1 2 @ ~ 1 0 00117959 -eye_candy n 1 1 @ 1 0 05932709 -eye_chart n 1 1 @ 1 0 07002022 -eye_clinic n 1 1 @ 1 0 08054613 -eye_condition n 1 2 @ ~ 1 0 14555414 -eye_contact n 2 1 @ 2 0 06879766 00039740 -eye_cup n 1 1 @ 1 0 03308614 -eye_dialect n 1 1 @ 1 0 07156091 -eye_disease n 1 2 @ ~ 1 0 14252864 -eye_doctor n 1 2 @ ~ 1 0 10379073 -eye_dropper n 1 1 @ 1 0 03247083 -eye_infection n 1 1 @ 1 0 14185219 -eye_mask n 1 1 @ 1 0 03221059 -eye_movement n 1 2 @ ~ 1 0 00337486 -eye_muscle n 1 3 @ ~ #p 1 0 05316175 -eye_of_ra n 1 1 @ 1 0 09513430 -eye_opener n 2 1 @ 2 0 07912499 07298624 -eye_operation n 1 2 @ ~ 1 0 00673863 -eye_rhyme n 1 1 @ 1 0 07098093 -eye_socket n 1 3 @ #p %p 1 1 05285275 -eye_surgery n 1 2 @ ~ 1 0 00673863 -eye_tooth n 1 2 @ ~ 1 0 05307091 -eyeball n 1 3 @ #p + 1 1 05316025 -eyebath n 1 1 @ 1 0 03308614 -eyebrow n 1 3 @ #p %p 1 1 05313535 -eyebrow_pencil n 1 1 @ 1 0 03308481 -eyecup n 2 2 @ ; 2 0 03308614 02155678 -eyedness n 1 1 @ 1 0 05067807 -eyedrop n 2 2 @ ~ 2 0 13771929 00656643 -eyeful n 2 1 @ 2 0 10075063 00881914 -eyeglass n 1 1 @ 1 0 03783430 -eyeglass_wearer n 1 1 @ 1 0 10075185 -eyeglasses n 1 5 @ ~ #p %p ; 1 0 04272054 -eyehole n 2 3 @ ~ #p 2 0 03905208 03308853 -eyeish n 1 1 @ 1 0 09655466 -eyelash n 1 2 @ #p 1 0 05314919 -eyelessness n 1 2 @ + 1 0 14557206 -eyelet n 2 3 @ #p + 2 0 03308853 03132438 -eyelid n 1 3 @ #p %p 1 1 05313822 -eyeliner n 1 1 @ 1 0 03309110 -eyepatch n 1 1 @ 1 0 03309356 -eyepiece n 1 3 @ #p %p 1 1 03309465 -eyes n 1 1 @ 1 1 05949603 -eyeshade n 1 2 @ #p 1 0 02838728 -eyeshadow n 1 1 @ 1 1 03309687 -eyeshot n 1 1 @ 1 0 08560952 -eyesight n 1 1 @ 1 1 05656537 -eyesore n 1 1 @ 1 0 04693717 -eyespot n 1 1 @ 1 0 04681621 -eyestrain n 1 1 @ 1 1 14016863 -eyetooth n 1 2 @ ~ 1 0 05307091 -eyewash n 1 1 @ 1 0 03309214 -eyewitness n 1 2 @ + 1 0 10075299 -eyra n 1 2 @ #m 1 0 02125689 -eyre n 1 2 @ #p 1 0 09277913 -eyre_peninsula n 1 2 @ #p 1 0 09278162 -eyrie n 2 1 @ 2 0 09189157 08492354 -eyrir n 1 2 @ #p 1 0 13682116 -eyry n 2 1 @ 2 0 09189157 08492354 -eysenck n 1 1 @ 1 0 10964261 -eysenck_personality_inventory n 1 1 @ 1 0 06475307 -ezechiel n 2 2 @ #p 2 0 10964520 06438748 -ezed n 1 2 @ #m 1 0 06833890 -ezekias n 1 2 @ ; 1 0 11049128 -ezekiel n 2 2 @ #p 2 0 10964520 06438748 -ezo n 1 3 @ #p %p 1 0 08920722 -ezo-yama-hagi n 1 2 @ #m 1 0 12543186 -ezra n 2 2 @ #p 2 0 10964660 06436183 -ezra_cornell n 1 1 @ 1 0 10911288 -ezra_loomis_pound n 1 1 @ 1 0 11244550 -ezra_pound n 1 1 @ 1 0 11244550 -f n 4 5 @ #m #s #p %p 4 1 13714641 14637507 13636286 06831712 -f._d._roosevelt n 1 1 @ 1 0 11270023 -f._g._banting n 1 1 @ 1 0 10833805 -f._scott_fitzgerald n 1 1 @ 1 0 10972094 -f.i.s.c. n 1 2 @ #p 1 0 08332485 -f_clef n 1 1 @ 1 0 06862954 -f_layer n 1 2 @ #p 1 0 08582337 -f_number n 1 1 @ 1 0 13821408 -f_region n 1 2 @ #p 1 0 08582337 -fa n 1 1 @ 1 0 06868709 -fa_la n 1 1 @ 1 0 06608617 -faa n 1 2 @ #p 1 0 08143926 -fabaceae n 1 3 @ #m %m 1 0 11746776 -faberge n 1 1 @ 1 0 10964829 -fabian n 1 2 @ #m 1 0 10075416 -fabian_society n 1 2 @ %m 1 0 08243851 -fabiana n 1 3 @ #m %m 1 0 12903794 -fabiana_imbricata n 1 2 @ #m 1 0 12903964 -fabianism n 1 2 @ ; 1 0 06220819 -fable n 3 4 @ ~ + - 3 0 06757891 06372095 06371413 -fabric n 2 4 @ ~ %s %p 2 2 03309808 04933363 -fabrication n 5 3 @ ~ + 5 0 06757891 00931040 00924825 00912001 00751944 -fabricator n 1 2 @ + 1 0 10660333 -fabulist n 1 3 @ ~ + 1 0 10075529 -facade n 2 2 @ ~ 2 1 03313333 06758698 -face n 13 7 @ ~ #m #p %p + ; 13 8 05600637 04679738 04679419 03313873 09618957 08510666 05601198 03313602 06877578 06825399 05168795 04838210 03313456 -face-amount_certificate_company n 1 1 @ 1 0 08072104 -face-off n 2 4 @ #p + ; 2 0 07181043 00239024 -face_angle n 1 1 @ 1 0 13916495 -face_card n 1 2 @ ~ 1 0 03314028 -face_cloth n 1 1 @ 1 0 04554523 -face_cream n 1 1 @ 1 0 03067339 -face_fungus n 1 4 @ ~ #p %p 1 0 05261566 -face_guard n 1 2 @ #p 1 0 03314227 -face_lift n 2 2 @ ~ 2 0 00674158 00265472 -face_lifting n 2 3 @ ~ + 2 1 00265472 00674158 -face_mask n 1 2 @ ~ 1 0 03314378 -face_pack n 1 1 @ 1 0 03870980 -face_powder n 1 1 @ 1 1 03314780 -face_recognition n 2 2 @ ; 2 0 06644105 05711206 -face_saver n 1 1 @ 1 0 01263582 -face_saving n 1 1 @ 1 1 01263582 -face_soap n 1 1 @ 1 0 04447965 -face_time n 1 1 @ 1 0 15118724 -face_towel n 1 1 @ 1 0 03490006 -face_value n 2 1 @ 2 0 13335635 04678804 -face_veil n 1 2 @ ~ 1 0 03314884 -facelift n 2 2 @ ~ 2 0 00674158 00265472 -faceplate n 1 2 @ ; 1 0 03314608 -facer n 1 2 @ ; 1 0 05688486 -facet n 2 2 @ ~ 2 1 05850624 13913164 -facet_plane n 1 1 @ 1 1 13861580 -facetiousness n 1 2 @ + 1 0 04649560 -facia n 1 2 @ ~ 1 0 05582513 -facial n 2 3 @ #p + 2 0 05479314 00665781 -facial_artery n 1 1 @ 1 0 05345038 -facial_expression n 2 2 @ ~ 2 0 06877078 04679738 -facial_gesture n 1 2 @ ~ 1 0 06877078 -facial_hair n 1 2 @ ~ 1 0 05261404 -facial_index n 1 1 @ 1 0 13821272 -facial_muscle n 1 3 @ ~ #p 1 0 05602132 -facial_nerve n 1 2 @ #p 1 0 05479314 -facial_profiling n 1 2 @ ; 1 0 06886273 -facial_recognition n 1 2 @ ; 1 0 06644105 -facial_tissue n 1 1 @ 1 0 14864259 -facial_vein n 1 3 @ ~ #p 1 0 05367341 -facilitation n 3 3 @ + ; 3 0 14575531 11454042 01208291 -facilitator n 1 2 @ + 1 0 10075693 -facility n 5 3 @ ~ + 5 1 03315023 05642175 04708796 00585406 00578549 -facing n 4 4 @ ~ #p + 4 1 03315805 03315990 03315644 00827379 -facing_pages n 1 3 @ ~ #p 1 0 06258031 -facsimile n 2 2 @ + 2 1 03316274 03316105 -facsimile_machine n 1 1 @ 1 0 03316105 -fact n 4 2 @ ~ 4 4 05817396 06636259 13955874 05889896 -fact_mood n 1 1 @ 1 0 13801700 -faction n 2 4 @ ~ %m + 2 1 08241798 08251877 -factoid n 2 1 @ 2 0 06485001 06484887 -factor n 7 6 @ ~ #m #p + ; 7 4 07327805 05868954 13733402 09777012 13593219 05858317 05436752 -factor_analysis n 1 3 @ + ; 1 0 06030196 -factor_i n 1 1 @ 1 0 15023156 -factor_ii n 1 1 @ 1 0 15070897 -factor_iii n 1 1 @ 1 0 15071035 -factor_iv n 1 1 @ 1 0 15071229 -factor_ix n 1 1 @ 1 0 15071960 -factor_of_proportionality n 1 2 @ ~ 1 0 13593634 -factor_of_safety n 1 1 @ 1 0 13825490 -factor_v n 1 1 @ 1 0 15071366 -factor_vii n 1 1 @ 1 0 15071503 -factor_viii n 1 1 @ 1 0 15071684 -factor_x n 1 1 @ 1 0 15072099 -factor_xi n 1 1 @ 1 0 15072331 -factor_xii n 1 1 @ 1 0 15072491 -factor_xiii n 1 1 @ 1 0 15072657 -factorial n 1 2 @ + 1 0 05859811 -factoring n 1 3 @ + ; 1 0 05783041 -factorisation n 1 3 @ + ; 1 0 05783041 -factorization n 1 3 @ + ; 1 0 05783041 -factory n 1 4 @ ~ %p - 1 1 03316406 -factory_farm n 1 1 @ 1 0 01104406 -factory_price n 1 1 @ 1 0 13304819 -factory_ship n 1 1 @ 1 0 03316873 -factory_whistle n 1 1 @ 1 0 03316988 -factory_worker n 1 2 @ ~ 1 1 10318293 -factotum n 1 1 @ 1 0 10075802 -facts_of_life n 1 2 @ ~ 1 0 00849523 -factuality n 1 3 ! @ + 1 0 04759428 -factualness n 1 2 @ + 1 0 04759428 -facula n 2 1 @ 2 0 11511327 11511176 -faculty n 2 4 @ ~ #m %m 2 2 05650329 08287586 -faculty_member n 1 2 @ ~ 1 0 09759069 -fad n 1 2 @ + 1 0 05751173 -fad_diet n 1 1 @ 1 0 07562881 -faddist n 1 3 @ ~ + 1 0 10075899 -fade n 2 2 @ + 2 0 00572043 00230172 -fadeout n 2 2 @ + 2 1 07336214 07431369 -fading n 1 2 @ + 1 0 07427534 -fading_away n 1 1 @ 1 0 07423248 -fado n 1 1 @ 1 0 07051441 -fae n 1 2 @ ~ 1 0 03400389 -faecal_matter n 1 2 @ ~ 1 0 14854262 -faecal_occult_test n 1 1 @ 1 0 05741340 -faecalith n 1 1 @ 1 0 09256360 -faeces n 1 3 @ ~ + 1 0 14854262 -faerie n 2 2 @ ~ 2 0 09540430 05627682 -faeroe_islands n 2 3 @ #p %p 2 0 08952856 08952628 -faeroes n 2 3 @ #p %p 2 0 08952856 08952628 -faeroese n 1 1 @ 1 0 06955087 -faery n 2 2 @ ~ 2 0 09540430 05627682 -fafnir n 1 2 @ ; 1 0 09494609 -fag n 2 4 @ ~ %p ; 2 0 10076033 03030663 -fag_end n 2 1 @ 2 0 15268367 03317136 -fagaceae n 1 3 @ #m %m 1 0 12260208 -fagales n 1 3 @ #m %m 1 0 12260021 -faggot n 2 2 @ ; 2 0 10076033 03317233 -faggot_stitch n 1 2 @ #p 1 0 03317510 -faggoting n 1 2 @ %p 1 0 03317340 -fagin n 1 1 @ 1 0 09598598 -fagopyrum n 1 2 @ #m 1 0 12601335 -fagopyrum_esculentum n 1 3 @ #m %p 1 0 12601494 -fagot n 2 2 @ ; 2 0 10076033 03317233 -fagot_stitch n 1 2 @ #p 1 0 03317510 -fagoting n 1 2 @ %p 1 0 03317340 -fagus n 1 3 @ #m %m 1 0 12260593 -fagus_americana n 1 2 @ #m 1 0 12261808 -fagus_grandifolia n 1 2 @ #m 1 0 12261808 -fagus_pendula n 1 2 @ #m 1 0 12262018 -fagus_purpurea n 1 2 @ #m 1 0 12261571 -fagus_sylvatica n 1 2 @ #m 1 0 12261359 -fagus_sylvatica_atropunicea n 1 2 @ #m 1 0 12261571 -fagus_sylvatica_pendula n 1 2 @ #m 1 0 12262018 -fagus_sylvatica_purpurea n 1 2 @ #m 1 0 12261571 -fahd n 1 1 @ 1 0 10965019 -fahd_ibn_abdel_aziz_al-saud n 1 1 @ 1 0 10965019 -fahrenheit n 1 1 @ 1 0 10965151 -fahrenheit_scale n 1 1 @ 1 0 13852820 -fahrenheit_thermometer n 1 1 @ 1 0 03317673 -faience n 1 1 @ 1 0 03317788 -fail-safe n 1 1 @ 1 0 03317990 -failing n 2 4 ! @ ~ + 2 0 14462946 00066901 -faille n 1 1 @ 1 0 03317889 -failure n 7 4 ! @ ~ + 7 5 00066636 07317764 14477877 10273064 00066397 14478433 14059663 -faineance n 1 2 @ + 1 0 04637290 -faint n 1 2 @ + 1 0 07478318 -faintheartedness n 1 3 ! @ + 1 0 04860369 -faintness n 5 2 @ + 5 0 07480666 05041165 04991137 04860369 04704675 -fair n 4 3 @ ~ %p 4 1 00519333 08408557 08408267 01118182 -fair-maids-of-france n 1 2 @ #m 1 0 12793494 -fair-mindedness n 1 2 @ + 1 0 06203030 -fair-trade_act n 1 1 @ 1 0 06564640 -fair-trade_agreement n 1 1 @ 1 0 06525132 -fair_ball n 1 3 ! @ ; 1 0 00127866 -fair_catch n 1 2 @ ; 1 0 00139544 -fair_chance n 1 1 @ 1 0 05092969 -fair_copy n 1 1 @ 1 0 06390423 -fair_deal n 1 1 @ 1 0 07293391 -fair_game n 1 1 @ 1 0 10470460 -fair_hearing n 1 2 @ ; 1 0 01200502 -fair_sex n 1 2 @ #m 1 0 08477634 -fair_trade n 2 1 @ 2 0 01092403 01092315 -fair_use n 1 1 @ 1 0 05214211 -fair_weather n 1 1 @ 1 0 11456462 -fairbanks n 2 1 @ 2 0 10965550 10965361 -fairground n 1 1 @ 1 0 08614632 -fairlead n 1 2 @ ~ 1 0 03318136 -fairness n 4 5 ! @ ~ = + 4 1 04839154 06203030 04977247 04685396 -fairness_commission n 1 1 @ 1 0 08325237 -fairway n 3 3 @ #p %p 3 1 08569319 08617751 08614900 -fairway_crested_wheat_grass n 1 1 @ 1 0 12105353 -fairy n 2 3 @ ~ ; 2 1 09540430 10076033 -fairy-ring_mushroom n 1 2 @ #m 1 0 13006894 -fairy-slipper n 1 1 @ 1 0 12049562 -fairy_armadillo n 1 2 @ #m 1 0 02456275 -fairy_bell n 1 1 @ 1 0 12882945 -fairy_bluebird n 1 2 @ #m 1 0 01594004 -fairy_circle n 1 1 @ 1 0 13007034 -fairy_cup n 2 2 @ #m 2 0 13030852 12800832 -fairy_godmother n 2 1 @ 2 0 10076224 09540939 -fairy_lantern n 1 3 @ ~ #m 1 0 12446519 -fairy_light n 1 2 @ ; 1 0 03318294 -fairy_ring n 1 1 @ 1 0 13007034 -fairy_shrimp n 1 2 @ #m 1 0 01995514 -fairy_story n 2 2 @ - 2 0 07222581 06757289 -fairy_swallow n 1 1 @ 1 0 01814620 -fairy_tale n 2 2 @ - 2 0 07222581 06757289 -fairyland n 2 2 @ ~ 2 1 05633044 05627682 -fairytale n 2 2 @ - 2 1 07222581 06757289 -faisal n 1 1 @ 1 0 10965700 -faisal_ibn_abdel_aziz_al-saud n 1 1 @ 1 0 10965700 -faisalabad n 1 2 @ #p 1 0 08976799 -fait_accompli n 1 1 @ 1 0 00047941 -faith n 4 3 @ ~ - 4 4 05946687 05943066 08081668 01207187 -faith_cure n 1 2 @ ~ 1 0 00699736 -faith_healing n 1 2 @ ~ 1 0 00699736 -faithful n 2 4 @ ~ #m + 2 1 08223475 07991364 -faithfulness n 1 5 ! @ ~ = + 1 0 04876985 -faithlessness n 1 2 @ + 1 0 04879092 -fake n 3 4 @ ~ + ; 3 1 03318438 10201535 00172217 -fake_book n 1 1 @ 1 0 03318707 -fakeer n 1 2 @ ~ 1 0 10076307 -faker n 1 3 @ ~ + 1 1 10201535 -fakery n 1 2 @ + 1 0 00752298 -fakir n 1 2 @ ~ 1 0 10076307 -fal_la n 1 1 @ 1 0 06608617 -falafel n 1 2 @ ; 1 0 07867164 -falanga n 1 1 @ 1 0 00422114 -falange n 1 1 @ 1 0 08366664 -falangist n 1 1 @ 1 0 10076483 -falcatifolium n 1 3 @ #m %m 1 0 11654667 -falcatifolium_falciforme n 1 2 @ #m 1 0 11654984 -falcatifolium_taxoides n 1 2 @ #m 1 0 11655152 -falchion n 1 1 @ 1 0 03318865 -falciform_ligament n 1 1 @ 1 0 05295593 -falco n 1 3 @ #m %m 1 0 01611252 -falco_columbarius n 1 2 @ #m 1 0 01612275 -falco_peregrinus n 1 3 @ ~ #m 1 0 01611472 -falco_rusticolus n 1 2 @ #m 1 0 01611800 -falco_sparverius n 1 2 @ #m 1 0 01612122 -falco_subbuteo n 1 2 @ #m 1 0 01612476 -falco_tinnunculus n 1 2 @ #m 1 0 01611969 -falcon n 1 4 @ ~ #m + 1 1 01610955 -falcon-gentil n 1 1 @ 1 0 01611674 -falcon-gentle n 1 1 @ 1 0 01611674 -falconer n 1 2 @ + 1 0 10076604 -falconidae n 1 3 @ #m %m 1 0 01610758 -falconiformes n 1 3 @ #m %m 1 0 01604625 -falconry n 1 3 @ + - 1 0 05635448 -falderol n 1 1 @ 1 0 03376438 -falkland_islands n 1 2 @ #p 1 0 08718391 -falkner n 1 1 @ 1 0 10967633 -fall n 12 6 ! @ ~ #p %p + 12 8 15236859 00076884 07478531 09265620 00756919 07427728 07370270 00067707 15169421 07471371 07362386 05111835 -fall-blooming_hydrangea n 1 2 @ #m 1 0 12789054 -fall-board n 1 2 @ #p 1 0 03318983 -fall_armyworm n 1 1 @ 1 0 02298218 -fall_cankerworm n 1 2 @ #m 1 0 02288122 -fall_dandelion n 1 1 @ 1 0 11989087 -fall_equinox n 1 2 @ #p 1 0 15223750 -fall_guy n 1 1 @ 1 0 09921409 -fall_of_man n 1 2 @ ; 1 0 07418146 -fall_webworm n 1 2 @ #m 1 0 02308735 -falla n 1 1 @ 1 0 10965836 -fallaciousness n 1 2 @ + 1 0 04810727 -fallacy n 1 3 @ ~ + 1 0 05893916 -fallal n 1 2 @ #m 1 0 02787435 -fallback n 1 3 @ + ; 1 0 00057306 -fallboard n 1 2 @ #p 1 0 03318983 -fallen_arch n 1 1 @ 1 0 05577060 -faller n 2 3 @ ~ + 2 0 10276045 10076778 -fallibility n 1 4 ! @ ~ + 1 0 04806512 -falling_off n 1 1 @ 1 1 13556509 -falling_out n 1 2 @ ~ 1 0 07313814 -falloff n 1 2 @ + 1 1 13556509 -fallopian_tube n 1 2 @ #p 1 0 05518870 -fallopio n 1 1 @ 1 0 10965966 -fallopius n 1 1 @ 1 0 10965966 -fallot n 1 1 @ 1 0 10966145 -fallot's_syndrome n 1 2 @ %p 1 0 14469766 -fallot's_tetralogy n 1 2 @ %p 1 0 14469766 -fallout n 2 1 @ 2 1 14858950 11417387 -fallout_shelter n 1 1 @ 1 1 03319167 -fallow n 1 2 @ + 1 0 09278295 -fallow_deer n 1 2 @ #m 1 0 02433318 -falls n 2 3 @ ~ #p 2 0 12415765 09475292 -false_alarm n 1 1 @ 1 0 07225333 -false_alumroot n 1 2 @ #m 1 0 12803226 -false_asphodel n 1 3 @ ~ #m 1 0 12462032 -false_azalea n 1 2 @ #m 1 0 12241880 -false_baby's_breath n 1 1 @ 1 0 12666369 -false_beachdrops n 1 2 @ #m 1 0 12259316 -false_belief n 1 2 @ ~ 1 0 05893916 -false_bittersweet n 1 2 @ #m 1 0 12748248 -false_bottom n 1 1 @ 1 0 03319296 -false_bracken n 1 2 @ #m 1 0 13191620 -false_buckthorn n 1 1 @ 1 0 12773142 -false_bugbane n 1 2 @ #m 1 0 11738997 -false_calyx n 1 1 @ 1 0 11692108 -false_chamomile n 1 2 @ #m 1 0 11941478 -false_deathcap n 1 2 @ #m 1 0 13002925 -false_dogwood n 1 2 @ #m 1 0 12741792 -false_dragon_head n 1 1 @ 1 0 12862116 -false_dragonhead n 1 1 @ 1 0 12862116 -false_face n 1 2 @ #p 1 0 03319457 -false_flax n 1 3 @ #m %m 1 0 11880610 -false_foxglove n 2 2 @ #m 2 0 12879068 12878784 -false_fruit n 1 2 @ ~ 1 0 13138842 -false_garlic n 1 1 @ 1 0 12435486 -false_gavial n 1 2 @ #m 1 0 01697978 -false_glottis n 1 1 @ 1 0 05610365 -false_goatsbeard n 1 1 @ 1 0 12795209 -false_gromwell n 1 2 @ #m 1 0 12822466 -false_hair n 1 2 @ ~ 1 0 03476083 -false_heather n 1 2 @ #m 1 0 12376553 -false_hellebore n 1 3 @ ~ #m 1 0 12464476 -false_imprisonment n 1 2 @ ; 1 0 01147222 -false_indigo n 3 3 @ ~ #m 3 0 12509476 12504783 12504570 -false_labor n 1 1 @ 1 0 00370688 -false_lily_of_the_valley n 2 2 @ #m 2 0 12473840 12473608 -false_lupine n 1 1 @ 1 0 12573474 -false_mallow n 2 3 @ ~ #m 2 0 12187663 12183816 -false_mildew n 1 3 @ ~ #m 1 0 12980840 -false_mistletoe n 1 3 @ ~ #m 1 0 12739801 -false_miterwort n 2 2 @ #m 2 0 12803958 12803754 -false_mitrewort n 2 2 @ #m 2 0 12803958 12803754 -false_morel n 1 3 @ ~ #m 1 0 13035241 -false_name n 1 1 @ 1 0 06338158 -false_nettle n 1 3 @ ~ #m 1 0 12393086 -false_oat n 1 2 @ #m 1 0 12108871 -false_pimpernel n 1 2 @ #m 1 0 12092930 -false_pregnancy n 1 1 @ 1 0 14046038 -false_pretence n 1 2 @ ; 1 0 00772026 -false_pretense n 1 2 @ ; 1 0 00772026 -false_ragweed n 1 1 @ 1 0 11985321 -false_return n 1 1 @ 1 0 06549318 -false_rue n 1 2 @ #m 1 0 11735977 -false_rue_anemone n 1 2 @ #m 1 0 11735977 -false_saber-toothed_tiger n 1 2 @ #m 1 0 02131211 -false_saffron n 1 4 @ #m %s %p 1 0 11946051 -false_sago n 1 2 @ #m 1 0 11601333 -false_sarsaparilla n 1 2 @ #m 1 0 11797722 -false_scorpion n 1 3 @ ~ #m 1 0 01770795 -false_smut n 1 1 @ 1 0 14284309 -false_tamarisk n 1 2 @ #m 1 0 12386945 -false_teeth n 1 1 @ 1 0 03319576 -false_topaz n 1 1 @ 1 0 15076523 -false_truffle n 2 3 @ ~ #m 2 0 12971400 12969131 -false_vampire n 1 2 @ ~ 1 0 02144593 -false_vampire_bat n 1 2 @ ~ 1 0 02144593 -false_verdict n 1 2 @ ; 1 0 01193044 -false_vocal_cord n 1 1 @ 1 0 05530657 -false_vocal_fold n 1 1 @ 1 0 05530657 -false_wintergreen n 1 1 @ 1 0 12256325 -false_witness n 1 1 @ 1 0 10416909 -falsehood n 2 3 ! @ ~ 2 0 06756407 00750890 -falseness n 3 3 @ ~ + 3 0 13960464 04879092 04867871 -falsetto n 1 2 @ + 1 0 05127357 -falsie n 1 1 @ 1 0 03319653 -falsification n 4 3 @ ~ + 4 0 05826469 00751145 00750890 00155298 -falsifier n 1 2 @ + 1 0 10076957 -falsifying n 1 2 @ + 1 0 00155298 -falsity n 2 4 ! @ ~ + 2 2 13960464 06756407 -falstaff n 1 2 @ + 1 0 09598750 -falter n 1 2 @ + 1 0 01063350 -faltering n 1 2 @ + 1 1 01063350 -falun_gong n 1 2 @ ; 1 0 08472120 -fame n 2 3 ! @ + 2 1 14437386 14438898 -familial_hypercholesterolemia n 1 1 @ 1 0 14466974 -familiar n 3 3 @ ~ + 3 0 10077106 09945905 09545171 -familiar_spirit n 1 1 @ 1 0 09545171 -familiarisation n 1 2 @ + 1 0 05758382 -familiarity n 5 5 ! @ ~ = + 5 3 05817145 04796291 04655442 04912240 00737070 -familiarization n 1 2 @ + 1 0 05758382 -family n 8 6 @ ~ #m %m + ; 8 6 08078020 07970406 07997703 07970721 10236304 08107499 08246302 08227916 -family_acanthaceae n 1 3 @ #m %m 1 0 12811856 -family_acanthisittidae n 1 3 @ #m %m 1 0 01588172 -family_acanthuridae n 1 3 @ #m %m 1 0 02621107 -family_acaridae n 1 3 @ #m %m 1 0 01780026 -family_accipitridae n 1 3 @ #m %m 1 0 01605119 -family_aceraceae n 1 3 @ #m %m 1 0 12751823 -family_acipenseridae n 1 3 @ #m %m 1 0 02640093 -family_acrididae n 1 3 @ #m %m 1 0 02226598 -family_actinidiaceae n 1 3 @ #m %m 1 0 12370842 -family_actinomycetaceae n 1 3 @ #m %m 1 0 01375460 -family_adelgidae n 1 3 @ #m %m 1 0 02254370 -family_adiantaceae n 1 2 @ #m 1 0 13179216 -family_aegypiidae n 1 1 @ 1 0 01616551 -family_aepyornidae n 1 3 @ #m %m 1 0 01522147 -family_agamidae n 1 3 @ #m %m 1 0 01687441 -family_agaricaceae n 1 3 @ #m %m 1 0 13000372 -family_agavaceae n 1 3 @ #m %m 1 0 12476036 -family_agonidae n 1 3 @ #m %m 1 0 02647503 -family_ailuropodidae n 1 2 @ #m 1 0 02510065 -family_aizoaceae n 1 3 @ #m %m 1 0 11818945 -family_akeridae n 1 3 @ #m %m 1 0 01951721 -family_alaudidae n 1 3 @ #m %m 1 0 01527480 -family_albuginaceae n 1 3 @ #m %m 1 0 12981595 -family_albulidae n 1 3 @ #m %m 1 0 02542162 -family_alcedinidae n 1 3 @ #m %m 1 0 01826998 -family_alcidae n 1 3 @ #m %m 1 0 02045024 -family_aleyrodidae n 1 3 @ #m %m 1 0 02246284 -family_alismataceae n 1 3 @ #m %m 1 0 12611815 -family_alliaceae n 1 2 @ #m 1 0 12430878 -family_alligatoridae n 1 3 @ #m %m 1 0 01698144 -family_allioniaceae n 1 3 @ #m %m 1 0 11835806 -family_aloeaceae n 1 2 @ #m 1 0 12436260 -family_alopiidae n 1 3 @ #m %m 1 0 01485673 -family_alstroemeriaceae n 1 2 @ #m 1 0 12438046 -family_amaranthaceae n 1 3 @ #m %m 1 0 11822557 -family_amaryllidaceae n 1 3 @ #m %m 1 0 12418680 -family_ambrosiaceae n 1 2 @ #m 1 0 11919232 -family_ambystomatidae n 1 3 @ #m %m 1 0 01631759 -family_ameiuridae n 1 3 @ #m %m 1 0 02518813 -family_amiidae n 1 3 @ #m %m 1 0 02638835 -family_ammodytidae n 1 3 @ #m %m 1 0 02618244 -family_amphioxidae n 1 3 @ #m %m 1 0 01467504 -family_amphisbaenidae n 1 2 @ #m 1 0 01682920 -family_amphiumidae n 1 3 @ #m %m 1 0 01638482 -family_amygdalaceae n 1 3 @ #m %m 1 0 12644464 -family_anabantidae n 1 3 @ #m %m 1 0 02556014 -family_anacardiaceae n 1 3 @ #m %m 1 0 12758639 -family_anarhichadidae n 1 3 @ #m %m 1 0 02616572 -family_anatidae n 1 3 @ #m %m 1 0 01845627 -family_ancylidae n 1 3 @ #m %m 1 0 01949684 -family_ancylostomatidae n 1 3 @ #m %m 1 0 01932800 -family_andrenidae n 1 3 @ #m %m 1 0 02210096 -family_anguidae n 1 3 @ #m %m 1 0 01689226 -family_anguillidae n 1 3 @ #m %m 1 0 02526486 -family_anhimidae n 1 3 @ #m %m 1 0 01860337 -family_anhingidae n 1 3 @ #m %m 1 0 02054251 -family_anniellidae n 1 3 @ #m %m 1 0 01691085 -family_annonaceae n 1 3 @ #m %m 1 0 11693566 -family_anobiidae n 1 3 @ #m %m 1 0 02177644 -family_anomalopidae n 1 3 @ #m %m 1 0 01451524 -family_anomiidae n 1 3 @ #m %m 1 0 01962223 -family_antedonidae n 1 4 @ ~ #m %m 1 0 02320621 -family_antennariidae n 1 3 @ #m %m 1 0 02548990 -family_anthocerotaceae n 1 3 @ #m %m 1 0 11538582 -family_antilocapridae n 1 3 @ #m %m 1 0 02429123 -family_aphididae n 1 3 @ #m %m 1 0 02252429 -family_aphyllanthaceae n 1 2 @ #m 1 0 12440128 -family_apiaceae n 1 4 @ ~ #m %m 1 0 12930044 -family_apidae n 1 3 @ #m %m 1 0 02207942 -family_aplodontiidae n 1 3 @ #m %m 1 0 02363681 -family_aplysiidae n 1 3 @ #m %m 1 0 01950952 -family_apocynaceae n 1 3 @ #m %m 1 0 11766609 -family_apodidae n 1 3 @ #m %m 1 0 01831930 -family_apogonidae n 1 3 @ #m %m 1 0 02571983 -family_apterygidae n 1 3 @ #m %m 1 0 01520284 -family_aquifoliaceae n 1 3 @ #m %m 1 0 12756286 -family_araceae n 1 3 @ #m %m 1 0 11778534 -family_araliaceae n 1 3 @ #m %m 1 0 11796744 -family_araucariaceae n 1 3 @ #m %m 1 0 11645271 -family_arcellidae n 1 3 @ #m %m 1 0 01394193 -family_arcidae n 1 3 @ #m %m 1 0 01963017 -family_arctiidae n 1 3 @ #m %m 1 0 02305245 -family_ardeidae n 1 3 @ #m %m 1 0 02007721 -family_arecaceae n 1 3 @ #m %m 1 0 12581381 -family_argasidae n 1 3 @ #m %m 1 0 01779340 -family_argentinidae n 1 3 @ #m %m 1 0 02542598 -family_argiopidae n 1 3 @ #m %m 1 0 01772782 -family_argonautidae n 1 3 @ #m %m 1 0 01970342 -family_ariidae n 1 3 @ #m %m 1 0 02520669 -family_aristolochiaceae n 1 3 @ #m %m 1 0 11801038 -family_armadillidiidae n 1 3 @ #m %m 1 0 01991233 -family_artamidae n 1 3 @ #m %m 1 0 01596761 -family_ascaphidae n 1 3 @ #m %m 1 0 01644542 -family_ascaridae n 1 3 @ #m %m 1 0 01930485 -family_asclepiadaceae n 1 3 @ #m %m 1 0 13233012 -family_asilidae n 1 3 @ #m %m 1 0 02195996 -family_asparagaceae n 1 2 @ #m 1 0 12440623 -family_aspergillaceae n 1 3 @ #m %m 1 0 13027190 -family_asphodelaceae n 1 2 @ #m 1 0 12441770 -family_aspleniaceae n 1 3 @ #m %m 1 0 13179972 -family_astacidae n 1 3 @ #m %m 1 0 01984958 -family_asteraceae n 1 3 @ #m %m 1 0 11911591 -family_atherinidae n 1 3 @ #m %m 1 0 02602215 -family_athiorhodaceae n 1 2 @ #m 1 0 01361840 -family_athyriaceae n 1 3 @ #m %m 1 0 13192025 -family_atrichornithidae n 1 3 @ #m %m 1 0 01545752 -family_atropidae n 1 2 @ #m 1 0 02261184 -family_aulostomidae n 1 3 @ #m %m 1 0 01457576 -family_auriculariaceae n 1 3 @ #m %m 1 0 13062112 -family_avicenniaceae n 1 2 @ #m 1 0 12915400 -family_azollaceae n 1 2 @ #m 1 0 12959226 -family_babesiidae n 1 3 @ #m %m 1 0 01425336 -family_bacillaceae n 1 3 @ #m %m 1 0 01356459 -family_bacteroidaceae n 1 3 @ #m %m 1 0 01364587 -family_balaenicipitidae n 1 3 @ #m %m 1 0 02005102 -family_balaenidae n 1 3 @ #m %m 1 0 02063516 -family_balaenopteridae n 1 3 @ #m %m 1 0 02064154 -family_balanidae n 1 3 @ #m %m 1 0 01998467 -family_balistidae n 1 3 @ #m %m 1 0 02652979 -family_balsaminaceae n 1 3 @ #m %m 1 0 12683950 -family_bangiaceae n 1 3 @ #m %m 1 0 01415256 -family_bathyergidae n 1 3 @ #m %m 1 0 02369012 -family_batidaceae n 1 3 @ #m %m 1 0 11827169 -family_batrachoididae n 1 3 @ #m %m 1 0 02548522 -family_begoniaceae n 1 3 @ #m %m 1 0 12359734 -family_belemnitidae n 1 3 @ #m %m 1 0 01973566 -family_belonidae n 1 3 @ #m %m 1 0 02549796 -family_belostomatidae n 1 3 @ #m %m 1 0 02242004 -family_bennettitaceae n 1 3 @ #m %m 1 0 11604393 -family_berberidaceae n 1 3 @ #m %m 1 0 11697158 -family_betulaceae n 1 3 @ #m %m 1 0 12280487 -family_bible n 1 1 @ 1 0 06448283 -family_bignoniaceae n 1 4 @ ~ #m %m 1 0 12813393 -family_bittacidae n 1 3 @ #m %m 1 0 02162831 -family_blastodiaceae n 1 3 @ #m %m 1 0 12978654 -family_blattidae n 1 3 @ #m %m 1 0 02233577 -family_blechnaceae n 1 3 @ #m %m 1 0 13184492 -family_blenniidae n 1 3 @ #m %m 1 0 02612982 -family_boidae n 1 3 @ #m %m 1 0 01741744 -family_boletaceae n 1 3 @ #m %m 1 0 13054211 -family_bombacaceae n 1 3 @ #m %m 1 0 12188985 -family_bombycidae n 1 3 @ #m %m 1 0 02300018 -family_bombycillidae n 1 3 @ #m %m 1 0 01603316 -family_bombyliidae n 1 3 @ #m %m 1 0 02195693 -family_boraginaceae n 1 3 @ #m %m 1 0 12815925 -family_bothidae n 1 3 @ #m %m 1 0 02660769 -family_bovidae n 1 3 @ #m %m 1 0 02400139 -family_bradypodidae n 1 3 @ #m %m 1 0 02456776 -family_bramidae n 1 3 @ #m %m 1 0 02582437 -family_branchiobdellidae n 1 3 @ #m %m 1 0 01935743 -family_branchiostegidae n 1 3 @ #m %m 1 0 02582919 -family_branchiostomidae n 1 3 @ #m %m 1 0 01467504 -family_brassicaceae n 1 3 @ #m %m 1 0 11867525 -family_brevicipitidae n 1 3 @ #m %m 1 0 01652583 -family_bromeliaceae n 1 3 @ #m %m 1 0 12606907 -family_brotulidae n 1 3 @ #m %m 1 0 02558980 -family_bruchidae n 1 3 @ #m %m 1 0 02181863 -family_bryaceae n 1 3 @ #m %m 1 0 11540970 -family_buccinidae n 1 3 @ #m %m 1 0 01947275 -family_bucconidae n 1 3 @ #m %m 1 0 01842380 -family_bucerotidae n 1 3 @ #m %m 1 0 01829143 -family_bufonidae n 1 3 @ #m %m 1 0 01645634 -family_burhinidae n 1 3 @ #m %m 1 0 02039942 -family_burmanniaceae n 1 3 @ #m %m 1 0 12087207 -family_burseraceae n 1 3 @ #m %m 1 0 12690388 -family_business n 1 1 @ 1 1 08383909 -family_buxaceae n 1 3 @ #m %m 1 0 12745788 -family_cactaceae n 1 3 @ #m %m 1 0 11841529 -family_caeciliadae n 1 3 @ #m %m 1 0 01655116 -family_caeciliidae n 1 3 @ #m %m 1 0 01655116 -family_caenolestidae n 1 3 @ #m %m 1 0 01875717 -family_caesalpiniaceae n 1 2 @ #m 1 0 12487394 -family_callionymidae n 1 3 @ #m %m 1 0 02618697 -family_calliphoridae n 1 3 @ #m %m 1 0 02191449 -family_callithricidae n 1 3 @ #m %m 1 0 02490030 -family_callitrichaceae n 1 3 @ #m %m 1 0 12693590 -family_calostomataceae n 1 3 @ #m %m 1 0 13041725 -family_calycanthaceae n 1 3 @ #m %m 1 0 11700401 -family_camelidae n 1 3 @ #m %m 1 0 02436813 -family_campanulaceae n 1 3 @ #m %m 1 0 12036533 -family_cancridae n 1 3 @ #m %m 1 0 01977684 -family_canellaceae n 1 3 @ #m %m 1 0 12371911 -family_canidae n 1 3 @ #m %m 1 0 02083038 -family_cannabidaceae n 1 3 @ #m %m 1 0 12396255 -family_cannaceae n 1 3 @ #m %m 1 0 12350433 -family_capitonidae n 1 3 @ #m %m 1 0 01842111 -family_capparidaceae n 1 3 @ #m %m 1 0 11864602 -family_caprifoliaceae n 1 3 @ #m %m 1 0 12671157 -family_caprimulgidae n 1 3 @ #m %m 1 0 01835087 -family_caproidae n 1 3 @ #m %m 1 0 01453188 -family_capromyidae n 1 3 @ #m %m 1 0 02366702 -family_capsidae n 1 3 @ #m %m 1 0 02237239 -family_carabidae n 1 3 @ #m %m 1 0 02166986 -family_carangidae n 1 3 @ #m %m 1 0 02575766 -family_carapidae n 1 3 @ #m %m 1 0 02559232 -family_carcharhinidae n 1 3 @ #m %m 1 0 01488539 -family_carchariidae n 1 3 @ #m %m 1 0 01487077 -family_cardiidae n 1 3 @ #m %m 1 0 01959668 -family_cariamidae n 1 3 @ #m %m 1 0 02013889 -family_caricaceae n 1 3 @ #m %m 1 0 12372708 -family_carpinaceae n 1 2 @ #m 1 0 12286372 -family_caryocaraceae n 1 3 @ #m %m 1 0 12373361 -family_caryophyllaceae n 1 3 @ #m %m 1 0 11804604 -family_castoridae n 1 3 @ #m %m 1 0 02362721 -family_casuaridae n 1 3 @ #m %m 1 0 01519228 -family_casuarinaceae n 1 3 @ #m %m 1 0 12224522 -family_cathartidae n 1 3 @ #m %m 1 0 01618671 -family_catostomidae n 1 3 @ #m %m 1 0 01444520 -family_caviidae n 1 3 @ #m %m 1 0 02364221 -family_cebidae n 1 3 @ #m %m 1 0 02491590 -family_cecidomyidae n 1 3 @ #m %m 1 0 02189214 -family_cecropiaceae n 1 3 @ #m %m 1 0 12404314 -family_celastraceae n 1 3 @ #m %m 1 0 12747563 -family_centrarchidae n 1 3 @ #m %m 1 0 02562085 -family_centriscidae n 1 3 @ #m %m 1 0 01457276 -family_centropomidae n 1 3 @ #m %m 1 0 02559606 -family_cephalobidae n 1 3 @ #m %m 1 0 01931845 -family_cephalotaceae n 1 3 @ #m %m 1 0 12784543 -family_cephalotaxaceae n 1 3 @ #m %m 1 0 11648428 -family_cerambycidae n 1 3 @ #m %m 1 0 02168542 -family_ceratodontidae n 1 3 @ #m %m 1 0 02516427 -family_ceratophyllaceae n 1 3 @ #m %m 1 0 11701903 -family_ceratopogonidae n 1 3 @ #m %m 1 0 02202509 -family_ceratopsidae n 1 2 @ #m 1 0 01703866 -family_ceratostomataceae n 1 3 @ #m %m 1 0 12964572 -family_cercidiphyllaceae n 1 3 @ #m %m 1 0 11702428 -family_cercopidae n 1 3 @ #m %m 1 0 02257536 -family_cercopithecidae n 1 3 @ #m %m 1 0 02483915 -family_certhiidae n 1 3 @ #m %m 1 0 01589125 -family_cervidae n 1 3 @ #m %m 1 0 02429695 -family_cestidae n 1 3 @ #m %m 1 0 01920735 -family_cetorhinidae n 1 2 @ #m 1 0 01485306 -family_chaetodontidae n 1 3 @ #m %m 1 0 02605139 -family_chalcidae n 1 3 @ #m %m 1 0 02217334 -family_chalcididae n 1 3 @ #m %m 1 0 02217334 -family_chamaeleonidae n 1 3 @ #m %m 1 0 01693472 -family_chamaeleontidae n 1 3 @ #m %m 1 0 01693472 -family_characeae n 1 3 @ #m %m 1 0 01412479 -family_characidae n 1 3 @ #m %m 1 0 02583211 -family_characinidae n 1 1 @ 1 0 02583457 -family_charadriidae n 1 3 @ #m %m 1 0 02023133 -family_chelonidae n 1 3 @ #m %m 1 0 01663169 -family_cheloniidae n 1 3 @ #m %m 1 0 01663169 -family_chelydridae n 1 3 @ #m %m 1 0 01665761 -family_chenopodiaceae n 1 4 @ ~ #m %m 1 0 11827775 -family_chermidae n 1 3 @ #m %m 1 0 02256010 -family_chimaeridae n 1 3 @ #m %m 1 0 01481063 -family_chinchillidae n 1 3 @ #m %m 1 0 02367131 -family_chironomidae n 1 3 @ #m %m 1 0 02203008 -family_chlamydiaceae n 1 3 @ #m %m 1 0 01372372 -family_chlamydomonadaceae n 1 3 @ #m %m 1 0 01409477 -family_chloranthaceae n 1 3 @ #m %m 1 0 13151265 -family_chlorophthalmidae n 1 3 @ #m %m 1 0 02543737 -family_chrysochloridae n 1 3 @ #m %m 1 0 01890274 -family_chrysomelidae n 1 3 @ #m %m 1 0 02169345 -family_chrysopidae n 1 3 @ #m %m 1 0 02264734 -family_chytridiaceae n 1 2 @ #m 1 0 12978232 -family_cicadellidae n 1 3 @ #m %m 1 0 02258780 -family_cicadidae n 1 3 @ #m %m 1 0 02256365 -family_cichlidae n 1 3 @ #m %m 1 0 02585732 -family_cicindelidae n 1 3 @ #m %m 1 0 02164973 -family_ciconiidae n 1 3 @ #m %m 1 0 02001821 -family_cimicidae n 1 3 @ #m %m 1 0 02240223 -family_cinclidae n 1 3 @ #m %m 1 0 01601550 -family_circle n 1 2 @ #p 1 0 04164199 -family_cistaceae n 1 3 @ #m %m 1 0 12374002 -family_cladoniaceae n 1 3 @ #m %m 1 0 12990800 -family_clathraceae n 1 3 @ #m %m 1 0 13042514 -family_clavariaceae n 1 3 @ #m %m 1 0 12985629 -family_cleridae n 1 3 @ #m %m 1 0 02170848 -family_clethraceae n 1 3 @ #m %m 1 0 12249821 -family_clinidae n 1 3 @ #m %m 1 0 02613960 -family_clupeidae n 1 3 @ #m %m 1 0 02529515 -family_clusiaceae n 1 3 @ #m %m 1 0 12363988 -family_cobitidae n 1 3 @ #m %m 1 0 01438461 -family_coccidae n 1 3 @ #m %m 1 0 02248744 -family_coccinellidae n 1 3 @ #m %m 1 0 02165247 -family_coerebidae n 1 3 @ #m %m 1 0 01538775 -family_colchicaceae n 1 2 @ #m 1 0 12455101 -family_colubridae n 1 3 @ #m %m 1 0 01726960 -family_columbidae n 1 3 @ #m %m 1 0 01811682 -family_comatulidae n 1 1 @ 1 0 02320769 -family_combretaceae n 1 3 @ #m %m 1 0 12323411 -family_commelinaceae n 1 3 @ #m %m 1 0 12605965 -family_compositae n 1 3 @ #m %m 1 0 11911591 -family_congridae n 1 3 @ #m %m 1 0 02527498 -family_connaraceae n 1 2 @ #m 1 0 11746224 -family_convallariaceae n 1 2 @ #m 1 0 12471150 -family_convolvulaceae n 1 3 @ #m %m 1 0 12823164 -family_coprinaceae n 1 2 @ #m 1 0 13005835 -family_coraciidae n 1 3 @ #m %m 1 0 01826223 -family_cordaitaceae n 1 3 @ #m %m 1 0 11606661 -family_cordylidae n 1 3 @ #m %m 1 0 01684941 -family_coregonidae n 1 3 @ #m %m 1 0 02538730 -family_coreidae n 1 3 @ #m %m 1 0 02239347 -family_corixidae n 1 3 @ #m %m 1 0 02242942 -family_cornaceae n 1 3 @ #m %m 1 0 12946088 -family_cortinariaceae n 1 3 @ #m %m 1 0 13074084 -family_corvidae n 1 3 @ #m %m 1 0 01578341 -family_corydalidae n 1 3 @ #m %m 1 0 02265717 -family_corylaceae n 1 2 @ #m 1 0 12288422 -family_corynebacteriaceae n 1 3 @ #m %m 1 0 01366015 -family_coryphaenidae n 1 3 @ #m %m 1 0 02581803 -family_cotingidae n 1 3 @ #m %m 1 0 01550429 -family_cottidae n 1 3 @ #m %m 1 0 02644967 -family_court n 1 1 @ 1 0 08332090 -family_cracidae n 1 3 @ #m %m 1 0 01799086 -family_cracticidae n 1 3 @ #m %m 1 0 01582625 -family_crangonidae n 1 3 @ #m %m 1 0 01986538 -family_crassulaceae n 1 3 @ #m %m 1 0 12785110 -family_cricetidae n 1 3 @ #m %m 1 0 02335349 -family_crocodylidae n 1 3 @ #m %m 1 0 01696849 -family_crotalidae n 1 3 @ #m %m 1 0 01753721 -family_cruciferae n 1 3 @ #m %m 1 0 11867525 -family_cryptobranchidae n 1 3 @ #m %m 1 0 01633047 -family_cryptocercidae n 1 3 @ #m %m 1 0 02235321 -family_cryptogrammataceae n 1 2 @ #m 1 0 13227009 -family_ctenizidae n 1 3 @ #m %m 1 0 01775592 -family_cuculidae n 1 3 @ #m %m 1 0 01822773 -family_cucurbitaceae n 1 4 @ ~ #m %m 1 0 12157276 -family_culicidae n 1 3 @ #m %m 1 0 02199999 -family_cunoniaceae n 1 3 @ #m %m 1 0 12787007 -family_cupressaceae n 1 3 @ #m %m 1 0 11629501 -family_curculionidae n 1 3 @ #m %m 1 0 02178244 -family_cuterebridae n 1 3 @ #m %m 1 0 02193799 -family_cyatheaceae n 1 3 @ #m %m 1 0 13187031 -family_cycadaceae n 1 3 @ #m %m 1 0 11600671 -family_cyclopteridae n 1 3 @ #m %m 1 0 02646377 -family_cymatiidae n 1 3 @ #m %m 1 0 01947613 -family_cynipidae n 1 3 @ #m %m 1 0 02216547 -family_cynocephalidae n 1 3 @ #m %m 1 0 02502212 -family_cynoglossidae n 1 3 @ #m %m 1 0 02663352 -family_cyperaceae n 1 4 @ ~ #m %m 1 0 12149751 -family_cypraeidae n 1 3 @ #m %m 1 0 01953032 -family_cyprinidae n 1 3 @ #m %m 1 0 01438720 -family_cyprinodontidae n 1 3 @ #m %m 1 0 01446283 -family_cyrilliaceae n 1 3 @ #m %m 1 0 12750306 -family_dacninae n 1 3 @ #m %m 1 0 01538775 -family_dacrymycetaceae n 1 3 @ #m %m 1 0 13062630 -family_dactylopiidae n 1 3 @ #m %m 1 0 02249995 -family_dactylopteridae n 1 3 @ #m %m 1 0 02651846 -family_dactyloscopidae n 1 2 @ %m 1 0 02612046 -family_danaidae n 1 3 @ #m %m 1 0 02279442 -family_dasyatidae n 1 3 @ #m %m 1 0 01497878 -family_dasypodidae n 1 3 @ #m %m 1 0 02454119 -family_dasyproctidae n 1 3 @ #m %m 1 0 02365672 -family_dasyuridae n 1 3 @ #m %m 1 0 01883212 -family_dasyurinae n 1 3 @ #m %m 1 0 01883212 -family_daubentoniidae n 1 2 @ %m 1 0 02497832 -family_davalliaceae n 1 3 @ #m %m 1 0 13187604 -family_delphinidae n 1 3 @ #m %m 1 0 02068735 -family_dematiaceae n 1 3 @ #m %m 1 0 13080471 -family_dendrocolaptidae n 1 3 @ #m %m 1 0 01554139 -family_dennstaedtiaceae n 1 3 @ #m %m 1 0 13188973 -family_dermestidae n 1 3 @ #m %m 1 0 02170269 -family_dermochelyidae n 1 3 @ #m %m 1 0 01665238 -family_desmidiaceae n 1 3 @ #m %m 1 0 01413188 -family_desmodontidae n 1 3 @ #m %m 1 0 02150306 -family_diapensiaceae n 1 3 @ #m %m 1 0 12250413 -family_diaspididae n 1 3 @ #m %m 1 0 02249365 -family_dicamptodontidae n 1 3 @ #m %m 1 0 01634684 -family_dicksoniaceae n 1 3 @ #m %m 1 0 13190218 -family_dicranaceae n 1 3 @ #m %m 1 0 11540439 -family_didelphidae n 1 3 @ #m %m 1 0 01874784 -family_dilleniaceae n 1 3 @ #m %m 1 0 12362844 -family_dinornithidae n 1 3 @ #m %m 1 0 01522789 -family_diodontidae n 1 3 @ #m %m 1 0 02655355 -family_diomedeidae n 1 3 @ #m %m 1 0 02058074 -family_dioscoreaceae n 1 3 @ #m %m 1 0 12087650 -family_dipodidae n 1 3 @ #m %m 1 0 02351518 -family_dipsacaceae n 1 3 @ #m %m 1 0 12682054 -family_dipterocarpaceae n 1 3 @ #m %m 1 0 12376950 -family_discoglossidae n 1 3 @ #m %m 1 0 01647803 -family_doctor n 1 1 @ 1 0 10077278 -family_doliolidae n 1 3 @ #m %m 1 0 01469886 -family_dracunculidae n 1 3 @ #m %m 1 0 01933686 -family_drepanididae n 1 3 @ #m %m 1 0 01544544 -family_dromaeosauridae n 1 3 @ #m %m 1 0 01717666 -family_droseraceae n 1 3 @ #m %m 1 0 12782108 -family_drosophilidae n 1 3 @ #m %m 1 0 02197413 -family_dryopteridaceae n 1 3 @ #m %m 1 0 13192025 -family_dugongidae n 1 3 @ #m %m 1 0 02074004 -family_dytiscidae n 1 3 @ #m %m 1 0 02177068 -family_ebenaceae n 1 3 @ #m %m 1 0 12770068 -family_echeneidae n 1 3 @ #m %m 1 0 02574651 -family_echeneididae n 1 3 @ #m %m 1 0 02574651 -family_edaphosauridae n 1 3 @ #m %m 1 0 01722085 -family_eimeriidae n 1 3 @ #m %m 1 0 01423001 -family_elaeagnaceae n 1 3 @ #m %m 1 0 12325497 -family_elaeocarpaceae n 1 3 @ #m %m 1 0 12192373 -family_elapidae n 1 3 @ #m %m 1 0 01744657 -family_elateridae n 1 3 @ #m %m 1 0 02176073 -family_electrophoridae n 1 3 @ #m %m 1 0 01443998 -family_eleotridae n 1 3 @ #m %m 1 0 02619738 -family_elephantidae n 1 3 @ #m %m 1 0 02503313 -family_elopidae n 1 3 @ #m %m 1 0 02541431 -family_embiotocidae n 1 3 @ #m %m 1 0 02570648 -family_empetraceae n 1 3 @ #m %m 1 0 12751402 -family_emydidae n 1 3 @ #m %m 1 0 01667570 -family_endamoebidae n 1 3 @ #m %m 1 0 01391933 -family_engraulidae n 1 3 @ #m %m 1 0 02533708 -family_enterobacteriaceae n 1 3 @ #m %m 1 0 01367430 -family_entolomataceae n 1 3 @ #m %m 1 0 13011856 -family_entomophthoraceae n 1 3 @ #m %m 1 0 12974457 -family_epacridaceae n 1 3 @ #m %m 1 0 12252620 -family_ephedraceae n 1 3 @ #m %m 1 0 11597924 -family_ephemeridae n 1 3 @ #m %m 1 0 02262324 -family_ephippidae n 1 3 @ #m %m 1 0 02604657 -family_equidae n 1 3 @ #m %m 1 0 02373601 -family_equisetaceae n 1 3 @ #m %m 1 0 13219067 -family_erethizontidae n 1 3 @ #m %m 1 0 02347865 -family_ericaceae n 1 2 @ %m 1 0 12226322 -family_erinaceidae n 1 3 @ #m %m 1 0 01893535 -family_eriocaulaceae n 1 3 @ #m %m 1 0 12608941 -family_erysiphaceae n 1 3 @ #m %m 1 0 12963307 -family_erythroxylaceae n 1 2 @ #m 1 0 12689641 -family_eschrichtiidae n 1 3 @ #m %m 1 0 02065932 -family_esocidae n 1 3 @ #m %m 1 0 02560823 -family_euglenaceae n 1 3 @ #m %m 1 0 01406426 -family_euphorbiaceae n 1 3 @ #m %m 1 0 12916935 -family_eurylaimidae n 1 3 @ #m %m 1 0 01546348 -family_exocoetidae n 1 3 @ #m %m 1 0 02550296 -family_fabaceae n 1 3 @ #m %m 1 0 11746776 -family_fagaceae n 1 3 @ #m %m 1 0 12260208 -family_falconidae n 1 3 @ #m %m 1 0 01610758 -family_fasciolidae n 1 3 @ #m %m 1 0 01926090 -family_felidae n 1 3 @ #m %m 1 0 02120692 -family_filariidae n 1 3 @ #m %m 1 0 01933342 -family_fissurellidae n 1 3 @ #m %m 1 0 01949195 -family_fistulariidae n 1 3 @ #m %m 1 0 01454260 -family_fistulinaceae n 1 3 @ #m %m 1 0 13053187 -family_flacourtiaceae n 1 3 @ #m %m 1 0 12377809 -family_forficulidae n 1 3 @ #m %m 1 0 02273120 -family_formicariidae n 1 3 @ #m %m 1 0 01552956 -family_formicidae n 1 3 @ #m %m 1 0 02219234 -family_fouquieriaceae n 1 3 @ #m %m 1 0 12381321 -family_fregatidae n 1 3 @ #m %m 1 0 02052511 -family_fringillidae n 1 3 @ #m %m 1 0 01529036 -family_fucaceae n 1 3 @ #m %m 1 0 01404129 -family_fulgoridae n 1 3 @ #m %m 1 0 02259844 -family_fumariaceae n 1 3 @ #m %m 1 0 11909048 -family_funkaceae n 1 2 @ #m 1 0 12457250 -family_furnariidae n 1 3 @ #m %m 1 0 01552523 -family_gadidae n 1 3 @ #m %m 1 0 02521916 -family_galbulidae n 1 3 @ #m %m 1 0 01842942 -family_gasterophilidae n 1 3 @ #m %m 1 0 02193357 -family_gasterosteidae n 1 3 @ #m %m 1 0 01454702 -family_gavialidae n 1 3 @ #m %m 1 0 01699415 -family_gavidae n 1 3 @ #m %m 1 0 02048832 -family_geastraceae n 1 3 @ #m %m 1 0 13044541 -family_gekkonidae n 1 3 @ #m %m 1 0 01674850 -family_gelechiidae n 1 3 @ #m %m 1 0 02293135 -family_gempylidae n 1 3 @ #m %m 1 0 02621721 -family_gentianaceae n 1 3 @ #m %m 1 0 12290116 -family_geoglossaceae n 1 3 @ #m %m 1 0 13226526 -family_geometridae n 1 3 @ #m %m 1 0 02286815 -family_geomyidae n 1 3 @ #m %m 1 0 02353529 -family_geophilidae n 1 3 @ #m %m 1 0 01786048 -family_geraniaceae n 1 3 @ #m %m 1 0 12685214 -family_gerreidae n 1 3 @ #m %m 1 0 02636666 -family_gerridae n 2 3 @ #m %m 2 0 02636666 02243351 -family_gerrididae n 1 3 @ #m %m 1 0 02243351 -family_gesneriaceae n 1 3 @ #m %m 1 0 12829099 -family_gigartinaceae n 1 3 @ #m %m 1 0 01414359 -family_ginkgoaceae n 1 3 @ #m %m 1 0 11664090 -family_giraffidae n 1 2 @ %m 1 0 02438774 -family_glareolidae n 1 3 @ #m %m 1 0 02038617 -family_gleicheniaceae n 1 3 @ #m %m 1 0 13170060 -family_gliridae n 1 3 @ #m %m 1 0 02352390 -family_globigerinidae n 1 2 @ #m 1 0 01393237 -family_glossinidae n 1 3 @ #m %m 1 0 02190963 -family_gnetaceae n 1 3 @ #m %m 1 0 11597126 -family_gobiesocidae n 1 3 @ #m %m 1 0 02635310 -family_gobiidae n 1 3 @ #m %m 1 0 02619029 -family_gomphotheriidae n 1 3 @ #m %m 1 0 02506466 -family_gonorhynchidae n 1 3 @ #m %m 1 0 02528949 -family_goodeniaceae n 1 3 @ #m %m 1 0 12167749 -family_gracilariidae n 1 2 @ #m 1 0 02292850 -family_graminaceae n 1 4 @ ~ #m %m 1 0 12100538 -family_gramineae n 1 4 @ ~ #m %m 1 0 12100538 -family_grossulariaceae n 1 3 @ #m %m 1 0 12804621 -family_gruidae n 1 3 @ #m %m 1 0 02012715 -family_gryllidae n 1 3 @ #m %m 1 0 02229385 -family_guttiferae n 1 3 @ #m %m 1 0 12363988 -family_gyrinidae n 1 3 @ #m %m 1 0 02177376 -family_hadrosauridae n 1 3 @ #m %m 1 0 01705717 -family_haematopodidae n 1 2 @ #m 1 0 02036864 -family_haemodoraceae n 1 3 @ #m %m 1 0 12311894 -family_haemoproteidae n 1 3 @ #m %m 1 0 01424607 -family_haemulidae n 1 3 @ #m %m 1 0 02588108 -family_halictidae n 1 3 @ #m %m 1 0 02210728 -family_haliotidae n 1 3 @ #m %m 1 0 01942601 -family_haloragaceae n 1 3 @ #m %m 1 0 12326604 -family_haloragidaceae n 1 3 @ #m %m 1 0 12326604 -family_hamamelidaceae n 1 3 @ #m %m 1 0 12314315 -family_helicidae n 1 3 @ #m %m 1 0 01944217 -family_helodermatidae n 1 3 @ #m %m 1 0 01691782 -family_helotiaceae n 1 3 @ #m %m 1 0 12967504 -family_helvellaceae n 1 3 @ #m %m 1 0 13034953 -family_hemerobiidae n 1 3 @ #m %m 1 0 02265177 -family_hemerocallidaceae n 1 2 @ #m 1 0 12456278 -family_hemiprocnidae n 1 3 @ #m %m 1 0 01833283 -family_hemiramphidae n 1 3 @ #m %m 1 0 02550915 -family_heteromyidae n 1 3 @ #m %m 1 0 02348405 -family_hexagrammidae n 1 3 @ #m %m 1 0 02648456 -family_hexanchidae n 1 3 @ #m %m 1 0 01482754 -family_hippoboscidae n 1 3 @ #m %m 1 0 02198332 -family_hippocastanaceae n 1 3 @ #m %m 1 0 12767951 -family_hippopotamidae n 1 3 @ #m %m 1 0 02398252 -family_hipposideridae n 1 3 @ #m %m 1 0 02143594 -family_hirudinidae n 1 3 @ #m %m 1 0 01938155 -family_hirundinidae n 1 3 @ #m %m 1 0 01594157 -family_history n 1 2 @ #p 1 0 06515054 -family_holocentridae n 1 3 @ #m %m 1 0 01450281 -family_holothuridae n 1 3 @ #m %m 1 0 02321759 -family_homaridae n 1 3 @ #m %m 1 0 01982895 -family_hominidae n 1 3 @ #m %m 1 0 02471467 -family_hostaceae n 1 2 @ #m 1 0 12457250 -family_hyacinthaceae n 1 2 @ #m 1 0 12458002 -family_hyaenidae n 1 3 @ #m %m 1 0 02116959 -family_hydnaceae n 1 3 @ #m %m 1 0 12986084 -family_hydnoraceae n 1 2 @ #m 1 0 11803277 -family_hydrangeaceae n 1 3 @ #m %m 1 0 12787565 -family_hydrobatidae n 1 3 @ #m %m 1 0 02060719 -family_hydrocharidaceae n 1 3 @ #m %m 1 0 12612913 -family_hydrocharitaceae n 1 3 @ #m %m 1 0 12612913 -family_hydrochoeridae n 1 2 @ %m 1 0 02365244 -family_hydrophidae n 1 3 @ #m %m 1 0 01751621 -family_hydrophyllaceae n 1 3 @ #m %m 1 0 12834408 -family_hygrophoraceae n 1 3 @ #m %m 1 0 13070003 -family_hylidae n 1 3 @ #m %m 1 0 01649948 -family_hylobatidae n 1 3 @ #m %m 1 0 02482820 -family_hymenophyllaceae n 1 3 @ #m %m 1 0 12951465 -family_hypericaceae n 1 2 @ #m 1 0 12367122 -family_hyperodontidae n 1 3 @ #m %m 1 0 02067941 -family_hypocreaceae n 1 4 @ ~ #m %m 1 0 12965209 -family_hypodermatidae n 1 3 @ #m %m 1 0 02194414 -family_hypoxidaceae n 1 3 @ #m %m 1 0 12422751 -family_hystricidae n 1 3 @ #m %m 1 0 02346823 -family_ibidiidae n 1 3 @ #m %m 1 0 02005598 -family_ichneumonidae n 1 3 @ #m %m 1 0 02218235 -family_ichthyosauridae n 1 3 @ #m %m 1 0 01724470 -family_icteridae n 1 3 @ #m %m 1 0 01571578 -family_iguania n 1 3 @ #m %m 1 0 01676313 -family_iguanidae n 1 3 @ #m %m 1 0 01676313 -family_iguanodontidae n 1 3 @ #m %m 1 0 01707433 -family_indicatoridae n 1 3 @ #m %m 1 0 01842655 -family_indriidae n 1 3 @ #m %m 1 0 02499990 -family_ipidae n 1 3 @ #m %m 1 0 02179429 -family_irenidae n 1 3 @ #m %m 1 0 01593705 -family_iridaceae n 1 4 @ ~ #m %m 1 0 12411084 -family_isoetaceae n 1 3 @ #m %m 1 0 13225955 -family_istiophoridae n 1 3 @ #m %m 1 0 02630052 -family_isuridae n 1 2 @ %m 1 0 01483370 -family_ixodidae n 1 3 @ #m %m 1 0 01776546 -family_jassidae n 1 3 @ #m %m 1 0 02258910 -family_jewels n 1 3 @ #p %p 1 0 05514905 -family_juglandaceae n 1 3 @ #m %m 1 0 12317919 -family_juncaceae n 1 3 @ #m %m 1 0 11743109 -family_juncaginaceae n 1 3 @ #m %m 1 0 12617140 -family_jungermanniaceae n 1 2 @ #m 1 0 11543264 -family_kalotermitidae n 1 3 @ #m %m 1 0 02225231 -family_kasuwonidae n 1 2 @ #m 1 0 02629048 -family_kinosternidae n 1 3 @ #m %m 1 0 01666802 -family_kyphosidae n 1 3 @ #m %m 1 0 02604014 -family_labiatae n 1 4 @ ~ #m %m 1 0 12838027 -family_labridae n 1 3 @ #m %m 1 0 02607630 -family_lacertidae n 1 3 @ #m %m 1 0 01692713 -family_lactobacillaceae n 1 3 @ #m %m 1 0 01379636 -family_lactobacteriaceae n 1 3 @ #m %m 1 0 01379636 -family_lamiaceae n 1 4 @ ~ #m %m 1 0 12838027 -family_laminariaceae n 1 3 @ #m %m 1 0 01403052 -family_lamnidae n 1 3 @ #m %m 1 0 01483188 -family_lampridae n 1 3 @ #m %m 1 0 02545569 -family_lampyridae n 1 3 @ #m %m 1 0 02168121 -family_laniidae n 1 3 @ #m %m 1 0 01598432 -family_lanthanotidae n 1 3 @ #m %m 1 0 01691384 -family_lardizabalaceae n 1 3 @ #m %m 1 0 11702999 -family_laricariidae n 1 3 @ #m %m 1 0 02520391 -family_laridae n 1 3 @ #m %m 1 0 02040872 -family_lasiocampidae n 1 3 @ #m %m 1 0 02306159 -family_latimeridae n 1 3 @ #m %m 1 0 02515410 -family_lauraceae n 1 3 @ #m %m 1 0 11703386 -family_lecanoraceae n 1 3 @ #m %m 1 0 12987834 -family_lecythidaceae n 1 3 @ #m %m 1 0 12327209 -family_leguminosae n 1 3 @ #m %m 1 0 11746776 -family_leiopelmatidae n 1 3 @ #m %m 1 0 01645093 -family_leitneriaceae n 1 3 @ #m %m 1 0 11742531 -family_lemnaceae n 1 3 @ #m %m 1 0 11794267 -family_lemuridae n 1 3 @ #m %m 1 0 02497408 -family_lennoaceae n 1 2 @ #m 1 0 12255452 -family_lentibulariaceae n 1 3 @ #m %m 1 0 12871992 -family_lepadidae n 1 3 @ #m %m 1 0 01998920 -family_lepidobotryaceae n 1 3 @ #m %m 1 0 12701178 -family_lepidodendraceae n 1 2 @ #m 1 0 13222035 -family_lepiotaceae n 1 3 @ #m %m 1 0 13012613 -family_lepismatidae n 1 3 @ #m %m 1 0 02270326 -family_lepisosteidae n 1 3 @ #m %m 1 0 02641063 -family_leporidae n 1 3 @ #m %m 1 0 02323715 -family_leptodactylidae n 1 3 @ #m %m 1 0 01642671 -family_leptotyphlopidae n 1 3 @ #m %m 1 0 01740393 -family_liliaceae n 1 3 @ #m %m 1 0 12423565 -family_limacidae n 1 3 @ #m %m 1 0 01945443 -family_limulidae n 1 3 @ #m %m 1 0 01787546 -family_linaceae n 1 2 @ %m 1 0 12486254 -family_line n 1 2 @ ~ 1 0 07970721 -family_liopelmidae n 1 3 @ #m %m 1 0 01645093 -family_liparidae n 1 3 @ #m %m 1 0 02646985 -family_liparididae n 1 3 @ #m %m 1 0 02646985 -family_lithodidae n 1 3 @ #m %m 1 0 01980993 -family_littorinidae n 1 3 @ #m %m 1 0 01948154 -family_loasaceae n 1 3 @ #m %m 1 0 12034828 -family_lobeliaceae n 1 2 @ #m 1 0 12168126 -family_lobotidae n 1 3 @ #m %m 1 0 02635911 -family_locustidae n 1 3 @ #m %m 1 0 02226598 -family_loganiaceae n 1 3 @ #m %m 1 0 12485122 -family_lomariopsidaceae n 1 3 @ #m %m 1 0 13202749 -family_lophiidae n 1 3 @ #m %m 1 0 02547947 -family_lophosoriaceae n 1 3 @ #m %m 1 0 13203251 -family_loranthaceae n 1 3 @ #m %m 1 0 12737383 -family_lorisidae n 1 3 @ #m %m 1 0 02498355 -family_loxomataceae n 1 3 @ #m %m 1 0 13203551 -family_lucanidae n 1 3 @ #m %m 1 0 02175791 -family_lutjanidae n 1 3 @ #m %m 1 0 02586382 -family_luvaridae n 1 3 @ #m %m 1 0 02632239 -family_lycaenidae n 1 3 @ #m %m 1 0 02281552 -family_lycoperdaceae n 1 3 @ #m %m 1 0 13043516 -family_lycopodiaceae n 1 3 @ #m %m 1 0 13222477 -family_lycosidae n 1 3 @ #m %m 1 0 01774918 -family_lygaeidae n 1 3 @ #m %m 1 0 02238743 -family_lymantriidae n 1 3 @ #m %m 1 0 02285359 -family_lythraceae n 1 3 @ #m %m 1 0 12328026 -family_machilidae n 1 3 @ #m %m 1 0 02271087 -family_macropodidae n 1 3 @ #m %m 1 0 01876843 -family_macrorhamphosidae n 1 3 @ #m %m 1 0 01456939 -family_macrouridae n 1 3 @ #m %m 1 0 02525543 -family_macruridae n 1 3 @ #m %m 1 0 02525543 -family_magnoliaceae n 1 3 @ #m %m 1 0 11708181 -family_majidae n 1 3 @ #m %m 1 0 01981543 -family_malacanthidae n 1 3 @ #m %m 1 0 02572904 -family_malpighiaceae n 1 3 @ #m %m 1 0 12694048 -family_malvaceae n 1 3 @ #m %m 1 0 12169776 -family_mammutidae n 1 3 @ #m %m 1 0 02505646 -family_man n 1 1 @ 1 0 10077394 -family_manidae n 1 3 @ #m %m 1 0 02461556 -family_manteidae n 1 3 @ #m %m 1 0 02235761 -family_mantidae n 1 3 @ #m %m 1 0 02235761 -family_mantispidae n 1 3 @ #m %m 1 0 02267356 -family_marantaceae n 1 3 @ #m %m 1 0 12351287 -family_marattiaceae n 1 3 @ #m %m 1 0 13214813 -family_marchantiaceae n 1 3 @ #m %m 1 0 11543602 -family_marsileaceae n 1 3 @ #m %m 1 0 12957298 -family_martyniaceae n 1 2 @ #m 1 0 12873646 -family_mastodontidae n 1 3 @ #m %m 1 0 02505646 -family_mastotermitidae n 1 3 @ #m %m 1 0 02224323 -family_mayacaceae n 1 3 @ #m %m 1 0 12608447 -family_medicine n 1 1 @ 1 0 00632342 -family_megachilidae n 1 3 @ #m %m 1 0 02211099 -family_megadermatidae n 1 3 @ #m %m 1 0 02144442 -family_megalonychidae n 1 3 @ #m %m 1 0 02457586 -family_megalosauridae n 1 3 @ #m %m 1 0 01715249 -family_megapodiidae n 1 3 @ #m %m 1 0 01800759 -family_megatheriidae n 1 3 @ #m %m 1 0 02458356 -family_melampsoraceae n 1 3 @ #m %m 1 0 13063784 -family_melanthiaceae n 1 2 @ #m 1 0 12463322 -family_melastomaceae n 1 3 @ #m %m 1 0 12348774 -family_melastomataceae n 1 3 @ #m %m 1 0 12348774 -family_meleagrididae n 1 3 @ #m %m 1 0 01793818 -family_meliaceae n 1 3 @ #m %m 1 0 12694707 -family_meliphagidae n 1 3 @ #m %m 1 0 01526635 -family_meloidae n 1 3 @ #m %m 1 0 02178886 -family_membracidae n 1 3 @ #m %m 1 0 02259565 -family_menispermaceae n 1 3 @ #m %m 1 0 11712827 -family_menuridae n 1 3 @ #m %m 1 0 01545303 -family_menyanthaceae n 1 3 @ #m %m 1 0 12484413 -family_meropidae n 1 3 @ #m %m 1 0 01828714 -family_micrococcaceae n 1 3 @ #m %m 1 0 01378800 -family_microdesmidae n 1 3 @ #m %m 1 0 02620826 -family_microhylidae n 1 3 @ #m %m 1 0 01652583 -family_mimidae n 1 3 @ #m %m 1 0 01586541 -family_mimosaceae n 1 2 @ #m 1 0 11753936 -family_miridae n 1 3 @ #m %m 1 0 02237239 -family_mniaceae n 1 3 @ #m %m 1 0 11541322 -family_mobulidae n 1 3 @ #m %m 1 0 01499898 -family_molidae n 1 3 @ #m %m 1 0 02656426 -family_molossidae n 1 3 @ #m %m 1 0 02149136 -family_momotidae n 1 3 @ #m %m 1 0 01830623 -family_moniliaceae n 1 3 @ #m %m 1 0 13078133 -family_monocanthidae n 1 3 @ #m %m 1 0 02653655 -family_monodontidae n 1 3 @ #m %m 1 0 02072209 -family_monotropaceae n 1 3 @ #m %m 1 0 12258380 -family_moraceae n 1 3 @ #m %m 1 0 12398682 -family_morchellaceae n 1 3 @ #m %m 1 0 13031690 -family_motacillidae n 1 3 @ #m %m 1 0 01528087 -family_mucoraceae n 1 3 @ #m %m 1 0 12972966 -family_mugilidae n 1 3 @ #m %m 1 0 02601200 -family_mullidae n 1 3 @ #m %m 1 0 02599784 -family_muraenidae n 1 3 @ #m %m 1 0 02527145 -family_muridae n 1 3 @ #m %m 1 0 02331479 -family_musaceae n 1 3 @ #m %m 1 0 12351975 -family_muscicapidae n 1 3 @ #m %m 1 0 01555586 -family_muscidae n 1 3 @ #m %m 1 0 02190015 -family_musophagidae n 1 3 @ #m %m 1 0 01825009 -family_mustelidae n 1 3 @ #m %m 1 0 02440705 -family_mutillidae n 1 2 @ %m 1 0 02214660 -family_myacidae n 1 3 @ #m %m 1 0 01957075 -family_mycetophylidae n 1 3 @ #m %m 1 0 02203457 -family_mycobacteriaceae n 1 3 @ #m %m 1 0 01376801 -family_mycoplasmataceae n 1 3 @ #m %m 1 0 01373440 -family_myctophidae n 1 3 @ #m %m 1 0 02543093 -family_myliobatidae n 1 3 @ #m %m 1 0 01498822 -family_mylodontidae n 1 3 @ #m %m 1 0 02459001 -family_myricaceae n 1 3 @ #m %m 1 0 11740824 -family_myristicaceae n 1 3 @ #m %m 1 0 11713960 -family_myrmecophagidae n 1 3 @ #m %m 1 0 02459808 -family_myrmeleontidae n 1 3 @ #m %m 1 0 02263717 -family_myrsinaceae n 1 3 @ #m %m 1 0 12096798 -family_myrtaceae n 1 3 @ #m %m 1 0 12329899 -family_mysidae n 1 3 @ #m %m 1 0 01989097 -family_mytilidae n 1 3 @ #m %m 1 0 01963730 -family_myxinidae n 1 3 @ #m %m 1 0 01478300 -family_myxobacteriaceae n 1 3 @ #m %m 1 0 01378137 -family_myxophyceae n 1 2 @ #m 1 0 01358904 -family_naiadaceae n 1 3 @ #m %m 1 0 12611243 -family_najadaceae n 1 3 @ #m %m 1 0 12611243 -family_name n 1 2 @ ~ 1 0 06336904 -family_naticidae n 1 3 @ #m %m 1 0 01947874 -family_nautilidae n 1 3 @ #m %m 1 0 01968591 -family_nepenthaceae n 1 3 @ #m %m 1 0 12781659 -family_nephropsidae n 1 3 @ #m %m 1 0 01983958 -family_nepidae n 1 3 @ #m %m 1 0 02242293 -family_neritidae n 1 3 @ #m %m 1 0 01946118 -family_nidulariaceae n 1 3 @ #m %m 1 0 13046512 -family_nitrobacteriaceae n 1 3 @ #m %m 1 0 01361973 -family_noctuidae n 1 3 @ #m %m 1 0 02294761 -family_nostocaceae n 1 3 @ #m %m 1 0 01359070 -family_notonectidae n 1 3 @ #m %m 1 0 02240706 -family_notoryctidae n 1 3 @ #m %m 1 0 01885724 -family_nummulitidae n 1 3 @ #m %m 1 0 01393604 -family_nyctaginaceae n 1 3 @ #m %m 1 0 11835806 -family_nymphaeaceae n 1 3 @ #m %m 1 0 11714618 -family_nymphalidae n 1 3 @ #m %m 1 0 02274516 -family_nyssaceae n 1 3 @ #m %m 1 0 12339972 -family_ochnaceae n 1 3 @ #m %m 1 0 12382484 -family_ochotonidae n 1 3 @ #m %m 1 0 02328270 -family_octopodidae n 1 3 @ #m %m 1 0 01969893 -family_odobenidae n 1 3 @ #m %m 1 0 02081282 -family_odontaspididae n 1 3 @ #m %m 1 0 01487077 -family_oedogoniaceae n 1 3 @ #m %m 1 0 01411727 -family_oestridae n 1 3 @ #m %m 1 0 02194414 -family_ogcocephalidae n 1 3 @ #m %m 1 0 02547562 -family_oleaceae n 1 3 @ #m %m 1 0 12299988 -family_oleandraceae n 1 3 @ #m %m 1 0 13203842 -family_onagraceae n 1 3 @ #m %m 1 0 12341126 -family_oniscidae n 1 3 @ #m %m 1 0 01991676 -family_ophidiidae n 1 3 @ #m %m 1 0 02558724 -family_ophiodontidae n 1 3 @ #m %m 1 0 02552737 -family_ophioglossaceae n 1 3 @ #m %m 1 0 12959967 -family_opisthocomidae n 1 3 @ #m %m 1 0 01809446 -family_opisthognathidae n 1 3 @ #m %m 1 0 02611425 -family_orchestiidae n 1 3 @ #m %m 1 0 01992935 -family_orchidaceae n 1 3 @ #m %m 1 0 12039743 -family_orectolobidae n 1 3 @ #m %m 1 0 01486241 -family_oriolidae n 1 3 @ #m %m 1 0 01575577 -family_ornithorhynchidae n 1 3 @ #m %m 1 0 01873007 -family_orobanchaceae n 1 2 @ #m 1 0 12874231 -family_orycteropodidae n 1 3 @ #m %m 1 0 02082498 -family_oscillatoriaceae n 1 3 @ #m %m 1 0 01359488 -family_osmeridae n 1 3 @ #m %m 1 0 02540255 -family_osmundaceae n 1 3 @ #m %m 1 0 12952852 -family_osteoglossidae n 1 3 @ #m %m 1 0 02544754 -family_ostraciidae n 1 3 @ #m %m 1 0 02654256 -family_ostraciontidae n 1 3 @ #m %m 1 0 02654256 -family_ostreidae n 1 3 @ #m %m 1 0 01960301 -family_otariidae n 1 3 @ #m %m 1 0 02076535 -family_otididae n 1 3 @ #m %m 1 0 02018638 -family_oxalidaceae n 1 3 @ #m %m 1 0 12702443 -family_oxyuridae n 1 3 @ #m %m 1 0 01931277 -family_paeoniaceae n 1 3 @ #m %m 1 0 11718911 -family_paguridae n 1 3 @ #m %m 1 0 01985947 -family_palaemonidae n 1 3 @ #m %m 1 0 01987228 -family_palinuridae n 1 3 @ #m %m 1 0 01984416 -family_palmaceae n 1 3 @ #m %m 1 0 12581381 -family_palmae n 1 3 @ #m %m 1 0 12581381 -family_pandanaceae n 1 3 @ #m %m 1 0 12154426 -family_pandionidae n 1 3 @ #m %m 1 0 01615825 -family_panorpidae n 1 3 @ #m %m 1 0 02162404 -family_papaveraceae n 1 3 @ #m %m 1 0 11900058 -family_papilionacea n 1 2 @ #m 1 0 12501537 -family_paradisaeidae n 1 3 @ #m %m 1 0 01570969 -family_paridae n 1 3 @ #m %m 1 0 01591490 -family_parkeriaceae n 1 3 @ #m %m 1 0 13171447 -family_parmeliaceae n 1 3 @ #m %m 1 0 12991488 -family_parulidae n 1 3 @ #m %m 1 0 01566888 -family_passeridae n 1 3 @ #m %m 1 0 01539377 -family_passifloraceae n 1 3 @ #m %m 1 0 12383073 -family_patellidae n 1 3 @ #m %m 1 0 01948788 -family_pectinidae n 1 3 @ #m %m 1 0 01965747 -family_pedaliaceae n 1 3 @ #m %m 1 0 12874429 -family_pediculidae n 1 3 @ #m %m 1 0 02184114 -family_pelecanidae n 1 3 @ #m %m 1 0 02051701 -family_pelecanoididae n 1 3 @ #m %m 1 0 02061716 -family_pelobatidae n 1 3 @ #m %m 1 0 01648818 -family_pempheridae n 1 3 @ #m %m 1 0 02603737 -family_peneidae n 1 3 @ #m %m 1 0 01987938 -family_pennatulidae n 1 3 @ #m %m 1 0 01915414 -family_peramelidae n 1 3 @ #m %m 1 0 01876180 -family_percidae n 1 3 @ #m %m 1 0 02556623 -family_percophidae n 1 3 @ #m %m 1 0 02620033 -family_peridiniidae n 1 3 @ #m %m 1 0 01417807 -family_peripatidae n 1 3 @ #m %m 1 0 02000036 -family_peripatopsidae n 1 3 @ #m %m 1 0 02000618 -family_peronosporaceae n 1 3 @ #m %m 1 0 12980478 -family_pertusariaceae n 1 3 @ #m %m 1 0 12989142 -family_petromyzontidae n 1 3 @ #m %m 1 0 01477373 -family_pezizaceae n 1 3 @ #m %m 1 0 13030157 -family_phaethontidae n 1 3 @ #m %m 1 0 02054834 -family_phalacrocoracidae n 1 3 @ #m %m 1 0 02053720 -family_phalangeridae n 1 3 @ #m %m 1 0 01880937 -family_phalangiidae n 1 3 @ #m %m 1 0 01769789 -family_phalaropidae n 1 3 @ #m %m 1 0 02037278 -family_phallaceae n 1 3 @ #m %m 1 0 13039870 -family_phasianidae n 1 3 @ #m %m 1 0 01802309 -family_phasmatidae n 1 3 @ #m %m 1 0 02231307 -family_phasmidae n 1 3 @ #m %m 1 0 02231307 -family_phillidae n 1 3 @ #m %m 1 0 02231930 -family_phocidae n 1 3 @ #m %m 1 0 02079170 -family_phoenicopteridae n 1 3 @ #m %m 1 0 02007422 -family_phoeniculidae n 1 3 @ #m %m 1 0 01830183 -family_pholadidae n 1 3 @ #m %m 1 0 01967677 -family_pholidae n 1 3 @ #m %m 1 0 02614788 -family_pholididae n 1 3 @ #m %m 1 0 02614788 -family_phthiriidae n 1 3 @ #m %m 1 0 02184881 -family_phyllidae n 1 3 @ #m %m 1 0 02231930 -family_phyllocladaceae n 1 3 @ #m %m 1 0 11649597 -family_phyllostomatidae n 1 3 @ #m %m 1 0 02142064 -family_phyllostomidae n 1 3 @ #m %m 1 0 02142064 -family_phylloxeridae n 1 3 @ #m %m 1 0 02255567 -family_physeteridae n 1 3 @ #m %m 1 0 02066950 -family_physidae n 1 3 @ #m %m 1 0 01952429 -family_phytolaccaceae n 1 3 @ #m %m 1 0 11854760 -family_picidae n 1 3 @ #m %m 1 0 01838326 -family_pieridae n 1 3 @ #m %m 1 0 02280223 -family_pinaceae n 1 3 @ #m %m 1 0 11607739 -family_pinnotheridae n 1 3 @ #m %m 1 0 01980328 -family_piperaceae n 1 3 @ #m %m 1 0 13148791 -family_pipidae n 1 3 @ #m %m 1 0 01653610 -family_pipridae n 1 3 @ #m %m 1 0 01551430 -family_pittidae n 1 3 @ #m %m 1 0 01554708 -family_planning n 1 2 @ ~ 1 1 00851994 -family_plantaginaceae n 1 3 @ #m %m 1 0 12598409 -family_plasmodiidae n 1 2 @ #m 1 0 01424165 -family_plasmodiophoraceae n 1 3 @ #m %m 1 0 12983217 -family_plataleidae n 1 3 @ #m %m 1 0 02006510 -family_platanaceae n 1 3 @ #m %m 1 0 12806270 -family_platanistidae n 1 3 @ #m %m 1 0 02071905 -family_platycephalidae n 1 3 @ #m %m 1 0 02649400 -family_plethodontidae n 1 3 @ #m %m 1 0 01635659 -family_pleurobrachiidae n 1 2 @ #m 1 0 01920178 -family_pleuronectidae n 1 3 @ #m %m 1 0 02657805 -family_ploceidae n 1 3 @ #m %m 1 0 01542567 -family_plumbaginaceae n 1 3 @ #m %m 1 0 12097927 -family_pluteaceae n 1 3 @ #m %m 1 0 13019017 -family_poaceae n 1 4 @ ~ #m %m 1 0 12100538 -family_podargidae n 1 3 @ #m %m 1 0 01836809 -family_podicipedidae n 1 3 @ #m %m 1 0 02049672 -family_podocarpaceae n 1 3 @ #m %m 1 0 11651259 -family_poeciliidae n 1 3 @ #m %m 1 0 01448767 -family_polemoniaceae n 1 3 @ #m %m 1 0 12808933 -family_polyangiaceae n 1 3 @ #m %m 1 0 01378137 -family_polygalaceae n 1 3 @ #m %m 1 0 12704636 -family_polygonaceae n 1 3 @ #m %m 1 0 12600574 -family_polynemidae n 1 3 @ #m %m 1 0 02610834 -family_polyodontidae n 1 3 @ #m %m 1 0 02639312 -family_polypedatidae n 1 3 @ #m %m 1 0 01644104 -family_polypodiaceae n 1 3 @ #m %m 1 0 13172107 -family_polyporaceae n 1 3 @ #m %m 1 0 13049561 -family_pomacentridae n 1 3 @ #m %m 1 0 02606194 -family_pomatomidae n 1 3 @ #m %m 1 0 02573406 -family_pongidae n 1 3 @ #m %m 1 0 02479896 -family_pontederiaceae n 1 3 @ #m %m 1 0 12609638 -family_porcellionidae n 1 3 @ #m %m 1 0 01991982 -family_portulacaceae n 1 3 @ #m %m 1 0 11856981 -family_portunidae n 1 3 @ #m %m 1 0 01978744 -family_potamogalidae n 1 3 @ #m %m 1 0 01894670 -family_potamogetonaceae n 1 3 @ #m %m 1 0 12615427 -family_practice n 1 1 @ 1 0 00632342 -family_priacanthidae n 1 3 @ #m %m 1 0 02571300 -family_primulaceae n 1 3 @ #m %m 1 0 12090318 -family_pristidae n 1 3 @ #m %m 1 0 01496944 -family_procaviidae n 1 3 @ #m %m 1 0 02372397 -family_procellariidae n 1 3 @ #m %m 1 0 02058933 -family_procyonidae n 1 3 @ #m %m 1 0 02507337 -family_proteaceae n 1 3 @ #m %m 1 0 12213635 -family_proteidae n 1 3 @ #m %m 1 0 01633949 -family_prunellidae n 1 3 @ #m %m 1 0 01526925 -family_pseudococcidae n 1 3 @ #m %m 1 0 02250464 -family_pseudomonodaceae n 1 3 @ #m %m 1 0 01360712 -family_psilophytaceae n 1 3 @ #m %m 1 0 13217624 -family_psilotaceae n 1 3 @ #m %m 1 0 13216475 -family_psittacidae n 1 3 @ #m %m 1 0 01817424 -family_psocidae n 1 3 @ #m %m 1 0 02260623 -family_psophiidae n 1 3 @ #m %m 1 0 02020777 -family_psychodidae n 1 3 @ #m %m 1 0 02203739 -family_psyllidae n 1 3 @ #m %m 1 0 02256010 -family_pteridaceae n 1 3 @ #m %m 1 0 13205482 -family_pteriidae n 1 3 @ #m %m 1 0 01961736 -family_pteroclididae n 1 3 @ #m %m 1 0 01815431 -family_pterodactylidae n 1 3 @ #m %m 1 0 01723259 -family_ptilonorhynchidae n 1 3 @ #m %m 1 0 01600480 -family_pucciniaceae n 1 3 @ #m %m 1 0 13064678 -family_pulicidae n 1 3 @ #m %m 1 0 02186399 -family_punicaceae n 1 3 @ #m %m 1 0 12344996 -family_pygopodidae n 1 3 @ #m %m 1 0 01675964 -family_pyralidae n 1 3 @ #m %m 1 0 02288473 -family_pyralididae n 1 3 @ #m %m 1 0 02288473 -family_pyrolaceae n 1 3 @ #m %m 1 0 12255659 -family_pyrrhocoridae n 1 3 @ #m %m 1 0 02244963 -family_pythiaceae n 1 3 @ #m %m 1 0 12982103 -family_pythonidae n 1 1 @ 1 0 01743449 -family_rachycentridae n 1 3 @ #m %m 1 0 02573918 -family_rafflesiaceae n 1 2 @ #m 1 0 11803118 -family_rajidae n 1 3 @ #m %m 1 0 01500995 -family_rallidae n 1 3 @ #m %m 1 0 02014646 -family_ramphastidae n 1 3 @ #m %m 1 0 01843238 -family_ranidae n 1 3 @ #m %m 1 0 01640383 -family_ranunculaceae n 1 3 @ #m %m 1 0 11719468 -family_rapateaceae n 1 2 @ #m 1 0 12608778 -family_raphidae n 1 3 @ #m %m 1 0 01810946 -family_raphidiidae n 1 3 @ #m %m 1 0 02267019 -family_recurvirostridae n 1 3 @ #m %m 1 0 02036399 -family_reduviidae n 1 3 @ #m %m 1 0 02244007 -family_regalecidae n 1 3 @ #m %m 1 0 02546744 -family_relationship n 1 3 @ ~ ; 1 0 13812607 -family_resedaceae n 1 3 @ #m %m 1 0 12385046 -family_rhamnaceae n 1 3 @ #m %m 1 0 13140699 -family_rheidae n 1 3 @ #m %m 1 0 01521014 -family_rhincodontidae n 1 3 @ #m %m 1 0 01487743 -family_rhinobatidae n 1 3 @ #m %m 1 0 01497579 -family_rhinocerotidae n 1 3 @ #m %m 1 0 02391782 -family_rhinolophidae n 1 3 @ #m %m 1 0 02143293 -family_rhinotermitidae n 1 2 @ #m 1 0 02224141 -family_rhiptoglossa n 1 3 @ #m %m 1 0 01693472 -family_rhizobiaceae n 1 3 @ #m %m 1 0 01354149 -family_rhizophoraceae n 1 3 @ #m %m 1 0 12345495 -family_rhizopogonaceae n 1 3 @ #m %m 1 0 12971157 -family_rhodymeniaceae n 1 3 @ #m %m 1 0 01414841 -family_rhyniaceae n 1 3 @ #m %m 1 0 13218114 -family_rickettsiaceae n 1 3 @ #m %m 1 0 01371092 -family_roccellaceae n 1 3 @ #m %m 1 0 12988703 -family_room n 1 2 @ #p 1 0 03319745 -family_roridulaceae n 1 3 @ #m %m 1 0 12783996 -family_rosaceae n 1 3 @ #m %m 1 0 12619306 -family_rubiaceae n 1 3 @ #m %m 1 0 12660009 -family_ruscaceae n 1 2 @ #m 1 0 12464903 -family_russulaceae n 1 2 @ #m 1 0 13010064 -family_rutaceae n 1 3 @ #m %m 1 0 12706644 -family_rynchopidae n 1 3 @ #m %m 1 0 02043497 -family_saccharomycetaceae n 1 3 @ #m %m 1 0 13025197 -family_sagittariidae n 1 3 @ #m %m 1 0 01618220 -family_salamandridae n 1 3 @ #m %m 1 0 01628885 -family_salicaceae n 1 3 @ #m %m 1 0 12723985 -family_salmonidae n 1 3 @ #m %m 1 0 02534352 -family_salpidae n 1 3 @ #m %m 1 0 01469425 -family_salvadoraceae n 1 3 @ #m %m 1 0 12299165 -family_salviniaceae n 1 3 @ #m %m 1 0 12958772 -family_santalaceae n 1 3 @ #m %m 1 0 12734722 -family_sapindaceae n 1 3 @ #m %m 1 0 12740514 -family_sapotaceae n 1 3 @ #m %m 1 0 12772081 -family_sarcoptidae n 1 3 @ #m %m 1 0 01781274 -family_sarcoscyphaceae n 1 2 @ #m 1 0 13034277 -family_sarraceniaceae n 1 3 @ #m %m 1 0 12779233 -family_saturniidae n 1 3 @ #m %m 1 0 02301072 -family_satyridae n 1 3 @ #m %m 1 0 02277556 -family_saururaceae n 1 3 @ #m %m 1 0 13151568 -family_saxifragaceae n 1 3 @ #m %m 1 0 12792041 -family_scarabaeidae n 1 3 @ #m %m 1 0 02171633 -family_scaridae n 1 3 @ #m %m 1 0 02610541 -family_scheuchzeriaceae n 1 3 @ #m %m 1 0 12617140 -family_schistosomatidae n 1 3 @ #m %m 1 0 01926840 -family_schizaeaceae n 1 3 @ #m %m 1 0 12954978 -family_schizophyceae n 1 2 @ #m 1 0 01358904 -family_schizosaccharomycetaceae n 1 3 @ #m %m 1 0 13026146 -family_sciadopityaceae n 1 3 @ #m %m 1 0 11659909 -family_sciaenidae n 1 3 @ #m %m 1 0 02593863 -family_sciaridae n 1 3 @ #m %m 1 0 02204460 -family_scincidae n 1 3 @ #m %m 1 0 01683724 -family_sciuridae n 1 3 @ #m %m 1 0 02355711 -family_sclerodermataceae n 1 3 @ #m %m 1 0 12968658 -family_sclerotiniaceae n 1 3 @ #m %m 1 0 12967776 -family_scolopacidae n 1 3 @ #m %m 1 0 02025530 -family_scolytidae n 1 3 @ #m %m 1 0 02179429 -family_scomberesocidae n 1 3 @ #m %m 1 0 02551316 -family_scombresocidae n 1 3 @ #m %m 1 0 02551316 -family_scombridae n 1 3 @ #m %m 1 0 02623868 -family_scorpaenidae n 1 2 @ %m 1 0 02642430 -family_scrophulariaceae n 1 3 @ #m %m 1 0 12876032 -family_scutigeridae n 1 3 @ #m %m 1 0 01785392 -family_scyliorhinidae n 1 3 @ #m %m 1 0 01488234 -family_secotiaceae n 1 3 @ #m %m 1 0 13047385 -family_selaginellaceae n 1 3 @ #m %m 1 0 13224256 -family_sepiidae n 1 3 @ #m %m 1 0 01972283 -family_septobasidiaceae n 1 3 @ #m %m 1 0 13069348 -family_serranidae n 1 3 @ #m %m 1 0 02565728 -family_sialidae n 1 3 @ #m %m 1 0 02266580 -family_sillaginidae n 1 3 @ #m %m 1 0 02637637 -family_siluridae n 1 3 @ #m %m 1 0 02517768 -family_simaroubaceae n 1 3 @ #m %m 1 0 12715569 -family_simuliidae n 1 3 @ #m %m 1 0 02205383 -family_sirenidae n 1 3 @ #m %m 1 0 01638952 -family_sisyridae n 1 3 @ #m %m 1 0 02267644 -family_sittidae n 1 3 @ #m %m 1 0 01590443 -family_solanaceae n 1 3 @ #m %m 1 0 12892226 -family_soleidae n 1 3 @ #m %m 1 0 02663657 -family_solenidae n 1 3 @ #m %m 1 0 01958790 -family_soricidae n 1 3 @ #m %m 1 0 01891438 -family_spalacidae n 1 3 @ #m %m 1 0 02368563 -family_sparganiaceae n 1 3 @ #m %m 1 0 12156308 -family_sparidae n 1 3 @ #m %m 1 0 02590237 -family_sphaeriaceae n 1 3 @ #m %m 1 0 12964130 -family_sphaerobolaceae n 1 2 @ #m 1 0 13047011 -family_sphaerocarpaceae n 1 3 @ #m %m 1 0 11544314 -family_sphecidae n 1 3 @ #m %m 1 0 02215334 -family_spheniscidae n 1 3 @ #m %m 1 0 02055431 -family_sphingidae n 1 3 @ #m %m 1 0 02298379 -family_sphyraenidae n 1 3 @ #m %m 1 0 02602970 -family_sphyrnidae n 1 3 @ #m %m 1 0 01494188 -family_spirillaceae n 1 3 @ #m %m 1 0 01363423 -family_spirochaetaceae n 1 3 @ #m %m 1 0 01381604 -family_spirulidae n 1 3 @ #m %m 1 0 01972733 -family_squalidae n 1 3 @ #m %m 1 0 01493366 -family_squatinidae n 1 3 @ #m %m 1 0 01495192 -family_squillidae n 1 3 @ #m %m 1 0 01990186 -family_staphylaceae n 1 3 @ #m %m 1 0 12769430 -family_staphylinidae n 1 3 @ #m %m 1 0 02180742 -family_steatornithidae n 1 3 @ #m %m 1 0 01837230 -family_stenopelmatidae n 1 3 @ #m %m 1 0 02228874 -family_stercorariidae n 1 3 @ #m %m 1 0 02043999 -family_sterculiaceae n 1 3 @ #m %m 1 0 12194776 -family_stichaeidae n 1 3 @ #m %m 1 0 02615494 -family_stizidae n 1 3 @ #m %m 1 0 02215941 -family_strelitziaceae n 1 3 @ #m %m 1 0 12354068 -family_streptomycetaceae n 1 3 @ #m %m 1 0 01375913 -family_strigidae n 1 3 @ #m %m 1 0 01621714 -family_stromateidae n 1 3 @ #m %m 1 0 02632694 -family_strombidae n 1 3 @ #m %m 1 0 01943213 -family_strophariaceae n 1 3 @ #m %m 1 0 13010219 -family_struthionidae n 1 3 @ #m %m 1 0 01518564 -family_sturnidae n 1 3 @ #m %m 1 0 01576506 -family_styracaceae n 1 3 @ #m %m 1 0 12776946 -family_suidae n 1 3 @ #m %m 1 0 02394822 -family_sulidae n 1 3 @ #m %m 1 0 02052936 -family_sylviidae n 1 3 @ #m %m 1 0 01562584 -family_symplocaceae n 1 3 @ #m %m 1 0 12776212 -family_synchytriaceae n 1 3 @ #m %m 1 0 12978969 -family_syngnathidae n 1 3 @ #m %m 1 0 01455592 -family_synodontidae n 1 3 @ #m %m 1 0 02543412 -family_tabanidae n 1 3 @ #m %m 1 0 02195403 -family_taccaceae n 1 3 @ #m %m 1 0 12475450 -family_tachinidae n 1 3 @ #m %m 1 0 02192673 -family_tachyglossidae n 1 3 @ #m %m 1 0 01872094 -family_taeniidae n 1 3 @ #m %m 1 0 01927665 -family_talpidae n 1 3 @ #m %m 1 0 01889328 -family_tamaricaceae n 1 3 @ #m %m 1 0 12386039 -family_tapiridae n 1 3 @ #m %m 1 0 02393300 -family_tarsiidae n 1 3 @ #m %m 1 0 02501275 -family_taxaceae n 1 3 @ #m %m 1 0 11660979 -family_tayassuidae n 1 3 @ #m %m 1 0 02397251 -family_tecophilaeacea n 1 2 @ #m 1 0 12465107 -family_teiidae n 1 3 @ #m %m 1 0 01685277 -family_tenebrionidae n 1 3 @ #m %m 1 0 02181013 -family_tenrecidae n 1 3 @ #m %m 1 0 01894040 -family_tenthredinidae n 1 3 @ #m %m 1 0 02218563 -family_terebellidae n 1 3 @ #m %m 1 0 01937015 -family_teredinidae n 1 3 @ #m %m 1 0 01966797 -family_termitidae n 1 3 @ #m %m 1 0 02223009 -family_testudinidae n 1 3 @ #m %m 1 0 01669883 -family_tethyidae n 1 3 @ #m %m 1 0 01950952 -family_tetragoniaceae n 1 3 @ #m %m 1 0 11818945 -family_tetranychidae n 1 3 @ #m %m 1 0 01782050 -family_tetraodontidae n 1 3 @ #m %m 1 0 02654890 -family_tetraonidae n 1 3 @ #m %m 1 0 01794813 -family_tettigoniidae n 1 3 @ #m %m 1 0 02227773 -family_theaceae n 1 3 @ #m %m 1 0 12929061 -family_thelephoraceae n 1 3 @ #m %m 1 0 13015040 -family_thelypteridaceae n 1 3 @ #m %m 1 0 13227235 -family_theophrastaceae n 1 3 @ #m %m 1 0 12099556 -family_theraphosidae n 1 3 @ #m %m 1 0 01774595 -family_therapy n 1 1 @ 1 0 00703926 -family_theridiidae n 1 3 @ #m %m 1 0 01773930 -family_thiobacteriaceae n 1 3 @ #m %m 1 0 01362769 -family_thraupidae n 1 3 @ #m %m 1 0 01597194 -family_threskiornithidae n 1 3 @ #m %m 1 0 02005598 -family_thripidae n 1 3 @ #m %m 1 0 02271740 -family_thymelaeaceae n 1 3 @ #m %m 1 0 12346179 -family_tiliaceae n 1 3 @ #m %m 1 0 12202352 -family_tilletiaceae n 1 3 @ #m %m 1 0 13067845 -family_timaliidae n 1 3 @ #m %m 1 0 01566386 -family_tinamidae n 1 3 @ #m %m 1 0 01810132 -family_tineidae n 1 3 @ #m %m 1 0 02291391 -family_tingidae n 1 3 @ #m %m 1 0 02238474 -family_tipulidae n 1 3 @ #m %m 1 0 02205095 -family_titanosauridae n 1 3 @ #m %m 1 0 01710348 -family_todidae n 1 3 @ #m %m 1 0 01831078 -family_torpedinidae n 1 3 @ #m %m 1 0 01496199 -family_tortricidae n 1 3 @ #m %m 1 0 02283728 -family_toxotidae n 1 3 @ #m %m 1 0 02620318 -family_trachipteridae n 1 3 @ #m %m 1 0 02546177 -family_tragulidae n 1 3 @ #m %m 1 0 02435689 -family_trapaceae n 1 3 @ #m %m 1 0 12347892 -family_tree n 1 2 @ ~ 1 0 08102402 -family_tremellaceae n 1 3 @ #m %m 1 0 13060689 -family_trephritidae n 1 3 @ #m %m 1 0 02196542 -family_treponemataceae n 1 3 @ #m %m 1 0 01382273 -family_triakidae n 1 3 @ #m %m 1 0 01491991 -family_tribonemaceae n 1 3 @ #m %m 1 0 01401517 -family_trichechidae n 1 3 @ #m %m 1 0 02073532 -family_trichiuridae n 1 3 @ #m %m 1 0 02622823 -family_trichodontidae n 1 3 @ #m %m 1 0 02558350 -family_tricholomataceae n 1 3 @ #m %m 1 0 13016457 -family_tridacnidae n 1 3 @ #m %m 1 0 01959187 -family_triglidae n 1 3 @ #m %m 1 0 02649689 -family_trilliaceae n 1 3 @ #m %m 1 0 12467811 -family_trionychidae n 1 3 @ #m %m 1 0 01671874 -family_triopidae n 1 2 @ #m 1 0 01995975 -family_trochilidae n 1 3 @ #m %m 1 0 01833619 -family_troglodytidae n 1 3 @ #m %m 1 0 01584004 -family_trogonidae n 1 3 @ #m %m 1 0 01843932 -family_trombiculidae n 1 3 @ #m %m 1 0 01780551 -family_trombidiidae n 1 3 @ #m %m 1 0 01780302 -family_tropaeolaceae n 1 3 @ #m %m 1 0 12719277 -family_trypetidae n 1 3 @ #m %m 1 0 02196542 -family_tuberaceae n 1 3 @ #m %m 1 0 12985010 -family_tuberculariaceae n 1 3 @ #m %m 1 0 13081369 -family_tulostomaceae n 1 3 @ #m %m 1 0 12970379 -family_tulostomataceae n 1 3 @ #m %m 1 0 12970379 -family_tupaiidae n 1 3 @ #m %m 1 0 02494866 -family_turdidae n 1 3 @ #m %m 1 0 01556671 -family_turnicidae n 1 3 @ #m %m 1 0 02019566 -family_tylenchidae n 1 3 @ #m %m 1 0 01932358 -family_typhaceae n 1 3 @ #m %m 1 0 12155259 -family_typhlopidae n 1 2 @ #m 1 0 01740283 -family_tytonidae n 1 3 @ #m %m 1 0 01625275 -family_uintatheriidae n 1 3 @ #m %m 1 0 02371647 -family_ulmaceae n 1 3 @ #m %m 1 0 12404943 -family_ulvaceae n 1 3 @ #m %m 1 0 01408383 -family_umbelliferae n 1 4 @ ~ #m %m 1 0 12930044 -family_unionidae n 1 3 @ #m %m 1 0 01964636 -family_unit n 1 3 @ ~ %m 1 0 07970406 -family_upupidae n 1 3 @ #m %m 1 0 01829602 -family_uranoscopidae n 1 3 @ #m %m 1 0 02611767 -family_ursidae n 1 3 @ #m %m 1 0 02131418 -family_urticaceae n 1 3 @ #m %m 1 0 12391745 -family_usneaceae n 1 3 @ #m %m 1 0 12989462 -family_ustilaginaceae n 1 3 @ #m %m 1 0 13066631 -family_valerianaceae n 1 3 @ #m %m 1 0 12949722 -family_varanidae n 1 3 @ #m %m 1 0 01694430 -family_veneridae n 1 3 @ #m %m 1 0 01957591 -family_verbenaceae n 1 3 @ #m %m 1 0 12914433 -family_vespertilionidae n 1 3 @ #m %m 1 0 02145084 -family_vespidae n 1 3 @ #m %m 1 0 02212323 -family_violaceae n 1 3 @ #m %m 1 0 12387201 -family_viperidae n 1 3 @ #m %m 1 0 01751979 -family_vireonidae n 1 3 @ #m %m 1 0 01602353 -family_viscaceae n 1 3 @ #m %m 1 0 12738859 -family_vitaceae n 1 3 @ #m %m 1 0 13144303 -family_vittariaceae n 1 3 @ #m %m 1 0 13179410 -family_viverridae n 1 3 @ #m %m 1 0 02134589 -family_viverrinae n 1 3 @ #m %m 1 0 02134589 -family_volvariaceae n 1 3 @ #m %m 1 0 13018579 -family_volvocaceae n 1 3 @ #m %m 1 0 01409065 -family_vombatidae n 1 3 @ #m %m 1 0 01882948 -family_welwitschiaceae n 1 3 @ #m %m 1 0 11598991 -family_winteraceae n 1 3 @ #m %m 1 0 11739530 -family_xanthorrhoeaceae n 1 2 @ #m 1 0 12465796 -family_xantusiidae n 1 3 @ #m %m 1 0 01683428 -family_xenicidae n 1 3 @ #m %m 1 0 01588172 -family_xenopodidae n 1 1 @ 1 0 01654245 -family_xenosauridae n 1 3 @ #m %m 1 0 01690703 -family_xiphiidae n 1 3 @ #m %m 1 0 02629435 -family_xylariaceae n 1 3 @ #m %m 1 0 12966386 -family_xyridaceae n 1 3 @ #m %m 1 0 12605315 -family_zamiaceae n 1 3 @ #m %m 1 0 11601487 -family_zannichelliaceae n 1 3 @ #m %m 1 0 12617739 -family_zapodidae n 1 3 @ #m %m 1 0 02350845 -family_zeidae n 1 3 @ #m %m 1 0 01452633 -family_zingiberaceae n 1 3 @ #m %m 1 0 12355320 -family_ziphiidae n 1 3 @ #m %m 1 0 02067941 -family_zoarcidae n 1 3 @ #m %m 1 0 02617029 -family_zosteraceae n 1 2 @ #m 1 0 12618336 -family_zygnemataceae n 1 3 @ #m %m 1 0 01410109 -family_zygophyllaceae n 1 3 @ #m %m 1 0 12720532 -famine n 2 2 @ ~ 2 0 14449865 07315790 -famishment n 1 1 @ 1 0 14040310 -famotidine n 1 1 @ 1 0 03319858 -famous_person n 1 2 @ ~ 1 0 09903153 -famulus n 1 1 @ 1 0 10077504 -fan n 3 5 @ ~ #m #p + 3 3 03320046 10639925 10077593 -fan-jet n 2 3 @ #p %p 2 0 03321419 03321103 -fan_belt n 1 2 @ #p 1 0 03320262 -fan_blade n 1 2 @ #p 1 0 03320421 -fan_dance n 1 1 @ 1 0 00531355 -fan_fern n 1 2 @ #m 1 0 13171210 -fan_letter n 1 2 @ #p 1 0 06625217 -fan_mail n 1 2 @ %p 1 0 08463345 -fan_palm n 1 2 @ ~ 1 0 12583126 -fan_tan n 1 1 @ 1 0 00507887 -fan_tracery n 1 2 @ #p 1 0 03321843 -fan_vaulting n 1 2 @ %p 1 0 03321954 -fanaloka n 1 2 @ #m 1 0 02136794 -fanatic n 1 2 @ + 1 1 10077879 -fanaticism n 1 1 @ 1 1 06206334 -fanatism n 1 2 @ + 1 0 06206334 -fancier n 1 3 @ ~ + 1 0 10078131 -fanconi's_anaemia n 1 1 @ 1 0 14164866 -fanconi's_anemia n 1 1 @ 1 0 14164866 -fancy n 3 3 @ ~ + 3 2 05896059 05632272 07497797 -fancy-dress_ball n 1 1 @ 1 0 07449157 -fancy_dress n 1 2 @ %p 1 0 03320519 -fancy_goods n 1 2 @ ; 1 0 03320735 -fancy_man n 2 3 @ ~ ; 2 0 10433737 10078333 -fancy_woman n 2 2 @ ~ 2 0 10485440 10323752 -fancywork n 1 2 @ ~ 1 0 03282933 -fandango n 1 1 @ 1 0 00532739 -fandom n 1 2 @ + 1 0 08223581 -fanfare n 2 3 @ ~ ; 2 1 06889330 06856884 -fang n 4 2 @ ~ 4 0 06992929 01785234 01465593 01465472 -fanion n 1 1 @ 1 0 03320845 -fanjet n 2 3 @ #p %p 2 0 03321419 03321103 -fanjet_engine n 1 3 @ #p %p 1 0 03321103 -fanlight n 3 1 @ 3 0 04473108 04232800 03320959 -fannie_farmer n 1 1 @ 1 0 10966496 -fannie_mae n 1 1 @ 1 0 08384738 -fannie_merritt_farmer n 1 1 @ 1 0 10966496 -fanny n 2 4 @ ~ #p %p 2 0 05559256 05514410 -fanny_adams n 2 2 @ ; 2 0 13740765 07573241 -fanny_pack n 1 1 @ 1 0 03321563 -fanny_wright n 1 1 @ 1 0 11398344 -fantail n 1 2 @ #p 1 0 03321672 -fantan n 2 1 @ 2 0 00507887 00492497 -fantasia n 1 1 @ 1 1 07044543 -fantasist n 1 2 @ + 1 1 10078415 -fantasm n 2 2 @ ~ 2 0 09547111 05897553 -fantast n 1 1 @ 1 0 10078529 -fantasy n 3 3 @ ~ + 3 3 05632446 06368425 05896059 -fantasy_life n 1 1 @ 1 1 05632927 -fantasy_world n 1 2 @ ~ 1 0 05633044 -fantods n 1 1 @ 1 1 14059825 -fanweed n 1 2 @ #m 1 0 11898775 -fanwort n 1 2 @ #m 1 0 11718296 -fao n 1 1 @ 1 0 08300190 -faq n 1 1 @ 1 0 06491026 -faqir n 1 2 @ ~ 1 0 10076307 -faquir n 1 2 @ ~ 1 0 10076307 -far n 1 2 @ ; 1 0 08016900 -far_cry n 2 1 @ 2 0 05085436 04752734 -far_east n 1 2 @ #p 1 1 08562757 -farad n 1 3 @ #p %p 1 0 13636286 -faraday n 1 1 @ 1 0 10966318 -farandole n 1 1 @ 1 0 00532896 -farawayness n 1 3 @ ~ + 1 0 05085165 -farc n 1 2 @ ; 1 0 08042183 -farce n 2 2 @ + 2 1 07016250 07679140 -farce_comedy n 1 1 @ 1 0 07016250 -fardel n 1 2 @ ; 1 0 05833252 -fare n 4 3 @ ~ + 4 1 05911124 13308147 10078643 07560652 -fare-stage n 1 2 @ ; 1 0 00307314 -fare-thee-well n 1 1 @ 1 0 14460257 -fare_increase n 1 1 @ 1 0 05109986 -farewell n 2 2 @ ~ 2 1 06629392 00053097 -farfalle n 1 1 @ 1 0 07699430 -fargo n 1 2 @ #p 1 0 09129926 -farina n 1 1 @ 1 0 07568241 -farkleberry n 1 1 @ 1 0 12246773 -farley_maidenhair n 1 1 @ 1 0 13207923 -farley_maidenhair_fern n 1 1 @ 1 0 13207923 -farm n 1 4 @ ~ %p + 1 1 03322099 -farm-place n 1 1 @ 1 0 03323096 -farm_animal n 1 2 @ - 1 0 01887474 -farm_bill n 1 2 @ ; 1 0 06537701 -farm_boy n 1 1 @ 1 0 10078719 -farm_building n 1 2 @ ~ 1 1 03322570 -farm_cheese n 1 1 @ 1 0 07851767 -farm_club n 1 2 @ ; 1 1 08079151 -farm_credit_system n 1 1 @ 1 0 08421975 -farm_girl n 1 1 @ 1 0 10079310 -farm_horse n 1 1 @ 1 0 02387254 -farm_machine n 1 2 @ ~ 1 0 03322940 -farm_team n 1 2 @ ; 1 0 08079151 -farm_worker n 1 2 @ ~ 1 0 10079399 -farmer n 3 3 @ ~ + 3 1 10078806 10966665 10966496 -farmer's_calendar n 1 1 @ 1 0 06426655 -farmer's_cheese n 1 1 @ 1 0 07851767 -farmer's_lung n 1 1 @ 1 0 14259865 -farmer's_market n 1 1 @ 1 0 03322704 -farmer-labor_party n 1 1 @ 1 0 08259611 -farmerette n 1 2 @ + 1 0 10079210 -farmhand n 1 2 @ ~ 1 0 10079399 -farmhouse n 1 2 @ #p 1 1 03322836 -farming n 2 5 @ ~ %p + - 2 1 00916464 00453731 -farming_area n 1 1 @ 1 0 08569482 -farmington n 2 2 @ #p 2 0 09115646 09069072 -farmland n 2 2 @ ~ 2 1 08569482 09260907 -farmplace n 1 1 @ 1 0 03323096 -farmstead n 2 1 @ 2 0 13249599 03323096 -farmyard n 1 2 @ #p 1 0 03323211 -farness n 1 4 ! @ ~ + 1 0 05085165 -faro n 1 1 @ 1 0 00492724 -faroe_islands n 2 3 @ #p %p 2 0 08952856 08952628 -faroes n 2 3 @ #p %p 2 0 08952856 08952628 -faroese n 1 1 @ 1 0 06955087 -farouk_i n 1 1 @ 1 0 10966842 -farrago n 1 1 @ 1 0 08399977 -farragut n 1 1 @ 1 0 10966982 -farrell n 2 1 @ 2 0 10967311 10967152 -farrier n 1 1 @ 1 0 10079677 -farrow n 1 2 @ + 1 0 13479034 -farrowing n 1 2 @ + 1 0 13479034 -farsi n 2 2 @ - 2 0 10079769 06974127 -farsightedness n 3 3 @ ~ + 3 0 14555214 14554011 05805277 -fart n 1 2 @ + 1 0 00839597 -farthing n 1 1 @ 1 0 13392786 -farthingale n 1 1 @ 1 0 03323319 -farting n 1 2 @ + 1 0 00839597 -fartlek n 1 1 @ 1 0 00893649 -faruk_i n 1 1 @ 1 0 10966842 -fas n 1 1 @ 1 0 14305458 -fasces n 1 1 @ 1 0 06881798 -fascia n 2 3 @ ~ ; 2 0 05582513 03163222 -fascicle n 2 3 @ ~ #p 2 0 06391902 05475681 -fasciculation n 1 1 @ 1 1 14363367 -fascicule n 1 1 @ 1 0 06391902 -fasciculus n 1 3 @ ~ #p 1 0 05475681 -fascination n 3 2 @ + 3 1 14407899 07497976 04689450 -fasciola n 1 3 @ #m %m 1 0 01926247 -fasciola_hepatica n 1 2 @ #m 1 0 01926379 -fascioliasis n 1 1 @ 1 0 14175727 -fasciolidae n 1 3 @ #m %m 1 0 01926090 -fasciolopsiasis n 1 1 @ 1 0 14175903 -fasciolopsis n 1 3 @ #m %m 1 0 01926549 -fasciolopsis_buski n 1 2 @ #m 1 0 01926689 -fasciolosis n 1 1 @ 1 0 14175727 -fascism n 1 3 @ ~ + 1 1 06217944 -fascist n 1 3 @ ~ + 1 0 10079893 -fascista n 1 1 @ 1 0 10080117 -fashion n 4 3 @ ~ - 4 3 04928903 00415226 05750657 03323593 -fashion_arbiter n 1 1 @ 1 0 10728233 -fashion_business n 1 1 @ 1 0 08066317 -fashion_consultant n 1 1 @ 1 0 10080206 -fashion_designer n 1 2 @ ~ 1 0 09972157 -fashion_industry n 1 1 @ 1 0 08066317 -fashion_model n 1 2 @ ~ 1 0 10291240 -fashion_plate n 2 2 @ ~ 2 0 09991026 03323485 -fashioning n 1 3 @ ~ + 1 0 00923995 -fashionmonger n 1 1 @ 1 0 10080206 -fast n 1 3 @ ~ + 1 1 01069980 -fast_break n 1 2 @ ; 1 0 00294577 -fast_buck n 1 1 @ 1 0 13260510 -fast_day n 1 2 @ ~ 1 0 15161165 -fast_food n 1 1 @ 1 0 07560193 -fast_lane n 2 2 ! @ 2 0 04930850 03324502 -fast_of_ab n 1 2 @ ; 1 0 15197658 -fast_of_av n 1 2 @ ; 1 0 15197658 -fast_of_esther n 1 2 @ ; 1 0 15198401 -fast_of_gedaliah n 1 2 @ ; 1 0 15197954 -fast_of_tammuz n 1 2 @ ; 1 0 15198872 -fast_of_tevet n 1 2 @ ; 1 0 15198136 -fast_of_the_firstborn n 1 2 @ ; 1 0 15198662 -fast_one n 1 2 @ ~ 1 0 00171618 -fast_reactor n 1 2 ! @ 1 0 03324629 -fast_time_scale n 1 2 @ ; 1 0 15135258 -fast_track n 1 1 @ 1 0 00173487 -fastball n 1 3 @ ~ ; 1 1 00108181 -fastener n 2 3 @ ~ + 2 0 10080337 03323703 -fastening n 2 3 @ ~ + 2 0 03323703 00147595 -fastidiousness n 1 3 @ ~ + 1 0 04896317 -fasting n 1 3 @ ~ + 1 0 01069980 -fastnacht n 1 1 @ 1 0 07639475 -fastness n 3 4 @ ~ = + 3 0 05058140 04777098 04340935 -fat n 3 6 @ ~ #s %s %p + 3 2 14864360 05268965 04999401 -fat-soluble_vitamin n 1 2 @ ~ 1 0 15089472 -fat_cat n 1 1 @ 1 0 10080784 -fat_cell n 1 2 @ %s 1 0 05456622 -fat_chance n 1 1 @ 1 0 05093080 -fat_embolism n 1 1 @ 1 0 14101568 -fat_farm n 1 1 @ 1 0 03324814 -fat_hen n 1 2 @ %p 1 0 11828973 -fat_metabolism n 1 1 @ 1 0 13479169 -fat_person n 1 2 ! @ 1 0 10082146 -fat_tuesday n 1 2 @ #p 1 0 00520059 -fata_morgana n 1 1 @ 1 0 11456615 -fatah n 1 3 @ #m ; 1 0 08011523 -fatah-rc n 1 2 @ ; 1 0 08020242 -fatah_revolutionary_council n 1 2 @ ; 1 0 08020242 -fatah_tanzim n 1 2 @ ; 1 0 08020785 -fatal_accident n 1 2 @ ~ 1 0 07361717 -fatalism n 2 2 @ + 2 0 06194030 05971394 -fatalist n 1 2 @ + 1 0 10080508 -fatality n 2 3 @ ~ + 2 0 07332956 04791321 -fatality_rate n 1 2 @ ~ 1 0 15277118 -fatback n 1 1 @ 1 0 07671269 -fate n 3 4 @ ~ #p + 3 3 07330007 09504915 14473222 -fathead n 1 1 @ 1 0 10157744 -father n 8 5 ! @ ~ + ; 8 6 10080869 10102800 10081204 09921792 10081456 09536973 10107303 10025295 -father's_day n 1 2 @ #p 1 0 15189982 -father-figure n 1 1 @ 1 0 10081842 -father-god n 1 1 @ 1 1 09536973 -father-in-law n 1 1 @ 1 0 10082043 -father_brown n 1 1 @ 1 0 09598888 -father_christmas n 1 1 @ 1 0 10550673 -father_figure n 1 2 @ ~ 1 0 10081670 -father_of_radio n 1 1 @ 1 0 10927424 -father_of_the_church n 1 3 @ ~ ; 1 0 09921792 -father_of_the_submarine n 1 1 @ 1 0 10876160 -father_surrogate n 1 2 @ ~ 1 0 10081670 -fatherhood n 4 1 @ 4 0 13813898 09536973 00592446 00592367 -fatherland n 1 2 @ ~ 1 0 08510169 -fatherliness n 1 3 @ = + 1 0 04873305 -fathom n 2 4 @ %p + ; 2 0 13660178 13617308 -fathometer n 1 1 @ 1 0 04260192 -fatigability n 1 1 @ 1 0 05042012 -fatigue n 4 4 @ ~ + ; 4 1 14016361 14463676 07540081 00730708 -fatigue_crack n 1 1 @ 1 0 09278432 -fatigue_duty n 1 2 @ ; 1 0 00730708 -fatigue_fracture n 1 1 @ 1 0 14293352 -fatigue_party n 1 1 @ 1 0 08265252 -fatigues n 1 2 @ ; 1 0 03324928 -fatiha n 1 1 @ 1 0 06462002 -fatihah n 1 1 @ 1 0 06462002 -fatima n 1 1 @ 1 0 10967447 -fatimah n 1 1 @ 1 0 10967447 -fatism n 1 1 @ 1 0 01154661 -fatness n 1 4 ! @ ~ + 1 0 04999401 -fats_domino n 1 1 @ 1 0 10938640 -fats_waller n 1 1 @ 1 0 11372242 -fatso n 1 1 @ 1 0 10082146 -fattiness n 1 2 @ + 1 0 04999741 -fattism n 1 1 @ 1 0 01154661 -fatty n 1 2 @ + 1 0 10082146 -fatty_acid n 1 2 @ ~ 1 1 14740227 -fatty_liver n 1 1 @ 1 0 14116672 -fatty_oil n 1 1 @ 1 0 14967478 -fatty_tissue n 1 2 @ ~ 1 0 05268965 -fatuity n 1 2 @ + 1 0 04891683 -fatuousness n 1 2 @ + 1 0 04891683 -fatwa n 1 2 @ ; 1 0 01191610 -fatwah n 1 2 @ ; 1 0 06765656 -faubourg n 1 2 @ #p 1 0 08555102 -fauces n 1 2 @ + 1 0 05547904 -faucet n 1 3 @ ~ %p 1 1 03325088 -faucial_tonsil n 1 2 @ #p 1 0 05309050 -fauld n 1 2 @ #p 1 0 03325288 -faulkner n 1 1 @ 1 0 10967633 -fault n 7 5 @ ~ %p + ; 7 3 00070965 14464203 05139094 09278537 07422244 04669692 00568813 -fault_line n 1 3 @ #p ; 1 0 08569591 -faultfinder n 1 3 @ ~ + 1 0 09986532 -faultfinding n 1 2 @ + 1 0 06711030 -faultiness n 1 3 @ ~ + 1 0 14472299 -faulting n 1 4 @ ~ %p ; 1 0 09278537 -faultlessness n 1 1 @ 1 0 04899573 -faun n 1 1 @ 1 0 09538757 -fauna n 2 8 ! @ ~ #m %m %s %p - 2 0 07993279 00015388 -fauntleroy n 1 1 @ 1 0 10082299 -faunus n 1 2 @ ; 1 0 09568488 -faust n 1 2 @ + 1 0 09599023 -fausto_paolo_sozzini n 1 1 @ 1 0 11307262 -faustus n 1 1 @ 1 0 09599023 -faustus_socinus n 1 1 @ 1 0 11307262 -fauteuil n 1 1 @ 1 1 03325403 -fauve n 1 1 @ 1 0 10082423 -fauvism n 1 2 @ + 1 0 08467871 -fauvist n 1 2 @ + 1 0 10082423 -faux_pas n 1 1 @ 1 0 00076196 -fava_bean n 2 2 @ #p 2 0 12576323 07729384 -favism n 1 1 @ 1 0 14165081 -favor n 5 3 @ ~ + 5 3 01226941 05156319 06200617 07500414 03894762 -favorable_position n 1 2 @ ~ 1 1 05158619 -favorable_reception n 1 2 @ ~ 1 0 14412374 -favorableness n 1 4 ! @ ~ + 1 0 05160796 -favorite n 3 3 @ ~ + 3 2 05790758 09991867 10113753 -favorite_son n 1 1 @ 1 0 10082562 -favoritism n 2 2 @ ~ 2 0 06199446 01153548 -favour n 5 3 @ ~ + 5 0 07500414 06200617 05156319 03894762 01226941 -favourable_position n 1 2 @ ~ 1 0 05158619 -favourable_reception n 1 2 @ ~ 1 0 14412374 -favourableness n 1 3 @ ~ + 1 0 05160796 -favourite n 3 3 @ ~ + 3 0 10113753 09991867 05790758 -favouritism n 2 2 @ ~ 2 0 06199446 01153548 -favus n 1 1 @ 1 0 14182103 -fawkes n 1 1 @ 1 0 10967872 -fawn n 2 2 @ + 2 1 04973110 02430830 -fawn_lily n 1 1 @ 1 0 12451240 -fawner n 1 2 @ + 1 0 09800631 -fax n 1 2 @ + 1 0 03316105 -fay n 1 2 @ ~ 1 0 09540430 -fayetteville n 3 3 @ #p %p 3 0 09156095 09128691 09059741 -fbi n 1 4 @ #m #p ; 1 0 08136260 -fbi_agent n 1 1 @ 1 0 10133850 -fcc n 1 1 @ 1 0 08134415 -fcs n 1 1 @ 1 0 08421975 -fda n 1 2 @ #p 1 0 08124256 -fdic n 1 1 @ 1 0 08384342 -fdr n 1 1 @ 1 0 11270023 -fe n 1 3 @ ~ #s 1 0 14642417 -feabane_mullet n 1 2 @ #m 1 0 12005656 -fealty n 1 1 @ 1 0 04877938 -fear n 3 6 ! @ ~ %p = + 3 2 07519253 07524529 07521039 -fearfulness n 2 6 ! @ ~ %p = + 2 0 07519253 04860586 -fearlessness n 2 4 ! @ ~ + 2 0 07526182 04858455 -feasibility n 1 3 ! @ + 1 1 05152364 -feasibleness n 1 2 @ + 1 0 05152364 -feast n 4 3 @ ~ + 4 2 08253640 07290144 07578093 07449862 -feast_day n 1 3 @ ~ #p 1 0 15161631 -feast_of_booths n 1 3 @ #p ; 1 0 15161872 -feast_of_dedication n 1 3 @ #p ; 1 0 15199033 -feast_of_dormition n 1 2 @ #p 1 0 15194194 -feast_of_lights n 1 3 @ #p ; 1 0 15199033 -feast_of_sacrifice n 1 1 @ 1 0 15219022 -feast_of_tabernacles n 1 3 @ #p ; 1 0 15161872 -feast_of_the_circumcision n 1 2 @ ; 1 0 15193271 -feast_of_the_dedication n 1 3 @ #p ; 1 0 15199033 -feast_of_the_unleavened_bread n 1 3 @ ~ ; 1 0 15195928 -feast_of_weeks n 1 2 @ ; 1 0 15197042 -feasting n 1 2 @ + 1 0 00840751 -feat n 1 2 @ ~ 1 1 00036762 -feather n 2 6 @ ~ #p %s %p + 2 1 01896031 00342565 -feather-foil n 1 3 @ ~ #m 1 0 12094244 -feather_ball n 1 1 @ 1 0 11849983 -feather_bed n 1 1 @ 1 0 03325481 -feather_boa n 1 1 @ 1 0 03325584 -feather_geranium n 1 1 @ 1 0 11829205 -feather_palm n 1 2 @ ~ 1 0 12582846 -feather_reed_grass n 1 1 @ 1 0 12113195 -feather_star n 1 2 @ #m 1 0 02321170 -featherbed n 1 1 @ 1 0 03325481 -featherbedding n 1 1 @ 1 0 00411553 -featheredge n 1 1 @ 1 0 03325691 -featherfoil n 1 3 @ ~ #m 1 0 12094244 -featheriness n 1 2 @ + 1 0 04938838 -feathering n 1 3 @ #p + 1 0 00342565 -feathertop n 2 2 @ #m 2 0 12129349 12113195 -feathertop_grass n 1 2 @ #m 1 0 12129349 -featherweight n 3 1 @ 3 0 10082886 10082805 10082687 -feature n 6 5 @ ~ #p + ; 6 3 05849789 05601758 06615026 06268784 05850212 03325769 -feature_article n 1 2 @ #p 1 0 06268784 -feature_film n 1 2 @ ~ 1 0 06615026 -feature_of_speech n 1 2 @ ; 1 0 05850212 -feb n 1 3 @ #p %p 1 1 15210486 -feb_2 n 1 2 @ #p 1 0 15186681 -febricity n 1 2 @ ~ 1 0 14365356 -febrifuge n 1 1 @ 1 0 02723595 -febrility n 1 2 @ ~ 1 0 14365356 -february n 1 3 @ #p %p 1 1 15210486 -february_12 n 1 3 @ #p ; 1 0 15187077 -february_14 n 1 2 @ #p 1 0 15187250 -february_2 n 1 3 @ #p ; 1 0 15186871 -february_22 n 1 3 @ #p ; 1 0 15187451 -february_29 n 1 2 @ #p 1 0 15159426 -february_daphne n 1 2 @ %p 1 0 12347158 -february_revolution n 1 2 @ ; 1 0 01307754 -fecal_impaction n 1 1 @ 1 0 14371620 -fecal_matter n 1 2 @ ~ 1 0 14854262 -fecal_occult_test n 1 1 @ 1 0 05741340 -fecalith n 1 1 @ 1 0 09256360 -feces n 1 3 @ ~ + 1 0 14854262 -fechner n 1 1 @ 1 0 10968058 -fechner's_law n 1 2 @ ; 1 0 05877718 -fecklessness n 1 2 @ + 1 0 05139942 -fecula n 1 1 @ 1 0 14855428 -feculence n 1 1 @ 1 0 14488118 -fecundation n 2 3 @ ~ + 2 0 07436986 07434473 -fecundity n 3 4 @ ~ = + 3 1 05625066 14051494 05147381 -fed n 2 2 @ %m 2 0 10373525 08350470 -fedayeen n 1 2 @ ; 1 0 08207540 -fedayeen_saddam n 1 1 @ 1 0 08207672 -fedelline n 1 1 @ 1 0 07700439 -federal n 2 2 @ + 2 0 10373639 10373525 -federal_agency n 1 2 @ ~ 1 0 08337324 -federal_agent n 1 2 @ ~ 1 0 10373801 -federal_aviation_agency n 1 2 @ #p 1 0 08143926 -federal_bureau_of_investigation n 1 4 @ #m #p ; 1 0 08136260 -federal_bureau_of_prisons n 1 2 @ #p 1 0 08141664 -federal_communications_commission n 1 1 @ 1 0 08134415 -federal_court n 1 3 @ ~ #p 1 1 08332330 -federal_deficit n 1 1 @ 1 0 13396603 -federal_democratic_republic_of_ethiopia n 1 5 @ #p %m %p - 1 0 08778061 -federal_department n 1 3 @ ~ ; 1 1 08122141 -federal_deposit_insurance_corporation n 1 1 @ 1 0 08384342 -federal_district n 1 2 @ ~ 1 0 08553280 -federal_emergency_management_agency n 1 2 @ #p 1 0 08123970 -federal_government n 1 2 @ ~ 1 1 08052549 -federal_home_loan_bank_system n 1 2 @ %m 1 0 08423490 -federal_home_loan_mortgage_corporation n 1 1 @ 1 0 08384539 -federal_housing_administration n 1 2 @ #p 1 1 08423634 -federal_islamic_republic_of_the_comoros n 1 2 @ #p 1 0 08733897 -federal_job_safety_law n 1 2 @ ; 1 0 06535652 -federal_judiciary n 1 2 @ %p 1 0 08141951 -federal_law_enforcement_training_center n 1 2 @ #p 1 0 08137028 -federal_national_mortgage_association n 1 1 @ 1 0 08384738 -federal_office n 1 3 @ ~ ; 1 0 08122141 -federal_official n 1 1 @ 1 0 10373525 -federal_party n 1 1 @ 1 0 08259753 -federal_protective_service n 1 2 @ #p 1 0 08351777 -federal_republic_of_germany n 2 6 @ #m #p %m %p - 2 0 08768881 08766988 -federal_republic_of_nigeria n 1 5 @ #p %m %p - 1 0 08973776 -federal_republic_of_yugoslavia n 1 3 @ %m %p 1 0 08816236 -federal_reserve n 1 2 @ %m 1 0 08350470 -federal_reserve_bank n 1 2 @ #m 1 0 08350919 -federal_reserve_board n 1 1 @ 1 0 08323980 -federal_reserve_note n 1 2 @ ~ 1 0 13393762 -federal_reserve_system n 1 2 @ %m 1 0 08350470 -federal_savings_bank n 1 1 @ 1 0 08424662 -federal_security_bureau n 1 1 @ 1 0 08485598 -federal_security_service n 1 1 @ 1 0 08485598 -federal_soldier n 1 1 @ 1 1 10373639 -federal_tax_lien n 1 1 @ 1 0 13401412 -federal_trade_commission n 1 2 @ %p 1 0 08351107 -federalisation n 2 2 @ + 2 0 14418970 00804379 -federalism n 1 2 @ + 1 0 06218162 -federalist n 2 2 @ + 2 0 10083097 10082997 -federalist_party n 1 1 @ 1 0 08259753 -federalization n 2 2 @ + 2 0 14418970 00804379 -federated_states_of_micronesia n 1 3 @ #p %p 1 0 08837048 -federation n 3 3 @ ~ + 3 0 08303504 08303275 01153305 -federation_of_saint_kitts_and_nevis n 1 4 @ #m #p %p 1 0 08987423 -federation_of_tribes n 1 3 @ %m ; 1 0 08168531 -federative_republic_of_brazil n 1 6 @ #m #p %m %p - 1 0 08853741 -federico_fellini n 1 1 @ 1 0 10968401 -federita n 1 1 @ 1 0 12137954 -fedora n 1 1 @ 1 1 03325941 -fee n 2 2 @ ~ 2 1 13320168 13288529 -fee_simple n 1 1 @ 1 0 13288661 -fee_splitting n 1 1 @ 1 0 01121245 -fee_tail n 1 1 @ 1 0 13288798 -feeblemindedness n 1 2 @ + 1 0 05646723 -feebleness n 2 3 @ ~ + 2 1 14547643 05040939 -feed n 1 3 @ ~ + 1 1 07800091 -feed_bunk n 1 1 @ 1 1 02920164 -feed_grain n 1 1 @ 1 0 07801007 -feedback n 2 3 @ ~ + 2 2 13479380 06746471 -feedback_circuit n 1 2 @ ~ 1 0 03326073 -feedback_loop n 1 2 @ ~ 1 0 03326073 -feedbag n 1 1 @ 1 0 03831203 -feeder n 6 3 @ ~ + 6 1 01317813 10042300 09278997 04169707 02843553 01317916 -feeder_line n 1 1 @ 1 0 03326239 -feeding n 2 4 @ ~ %p + 2 2 00838367 01057759 -feeding_bottle n 1 2 @ %p 1 0 02877266 -feeding_chair n 1 2 @ %p 1 0 03518445 -feedlot n 1 1 @ 1 1 03326371 -feedstock n 1 1 @ 1 0 14596839 -feel n 4 3 @ ~ + 4 3 05677340 14526182 04946553 00854538 -feeler n 4 2 @ + 4 1 02584915 07164349 04843270 02585285 -feeling n 6 3 @ ~ + 6 5 00026192 05916739 14526182 05721500 05722427 05707718 -feeling_of_movement n 1 1 @ 1 0 05722208 -feelings n 1 2 @ + 1 1 07513035 -fehling's_solution n 1 1 @ 1 0 14848245 -feifer n 1 1 @ 1 0 10968257 -feigning n 2 3 @ ~ + 2 0 06759349 00754956 -feijoa n 2 4 @ #m #p %p 2 0 12332555 07763107 -feijoa_bush n 1 3 @ #m %p 1 0 12332555 -feint n 1 3 @ ~ + 1 0 00172073 -feist n 1 1 @ 1 0 02085019 -felafel n 1 2 @ ; 1 0 07867164 -feldene n 1 2 @ ; 1 0 03948041 -feldspar n 1 3 @ ~ %s 1 0 14864961 -felicia n 1 3 @ #m %m 1 0 11969410 -felicia_amelloides n 1 2 @ #m 1 0 11969607 -felicia_bergeriana n 1 2 @ #m 1 0 11969806 -felicitation n 2 3 @ + ; 2 0 07140348 06633896 -felicitousness n 1 3 @ = + 1 0 04716210 -felicity n 2 5 ! @ ~ = + 2 1 04716210 13987423 -felid n 1 4 @ ~ #m %p 1 0 02120997 -felidae n 1 3 @ #m %m 1 0 02120692 -feline n 1 5 @ ~ #m %p + 1 0 02120997 -felis n 1 3 @ #m %m 1 0 02121234 -felis_bengalensis n 1 2 @ #m 1 0 02126317 -felis_catus n 1 3 @ ~ #m 1 0 02121808 -felis_chaus n 1 2 @ #m 1 0 02126028 -felis_concolor n 1 2 @ #m 1 0 02125311 -felis_domesticus n 1 3 @ ~ #m 1 0 02121808 -felis_manul n 1 2 @ #m 1 0 02126787 -felis_ocreata n 1 2 @ #m 1 0 02125872 -felis_onca n 1 2 @ #m 1 0 02128925 -felis_pardalis n 1 2 @ #m 1 0 02125494 -felis_serval n 1 2 @ #m 1 0 02126139 -felis_silvestris n 1 2 @ #m 1 0 02125081 -felis_tigrina n 1 2 @ #m 1 0 02126465 -felis_wiedi n 1 2 @ #m 1 0 02126640 -felis_yagouaroundi n 1 2 @ #m 1 0 02125689 -felix_klein n 1 1 @ 1 0 11107308 -felix_mendelssohn n 1 1 @ 1 0 11173917 -feliz_lusitania n 1 2 @ #p 1 0 08854855 -fell n 3 3 @ ~ + 3 0 14759275 03326475 00222376 -fella n 1 2 @ ~ 1 1 09908025 -fellah n 1 1 @ 1 0 10083264 -fellata n 1 1 @ 1 0 09705471 -fellatio n 1 2 @ ~ 1 0 00855169 -fellation n 1 3 @ ~ + 1 0 00855169 -felled_seam n 1 1 @ 1 0 03326475 -feller n 2 3 @ ~ + 2 0 10276045 09908025 -fellini n 1 1 @ 1 0 10968401 -felloe n 1 2 @ #p 1 0 03326660 -fellow n 7 4 @ ~ #p + 7 3 09908025 09945905 09935990 13743100 10083526 10083358 09871364 -fellow_feeling n 1 2 @ ~ 1 1 07553301 -fellow_member n 1 2 @ ~ 1 0 10307234 -fellow_traveler n 2 1 @ 2 0 10083677 09946278 -fellow_traveller n 2 1 @ 2 0 10083677 09946278 -fellow_worker n 1 1 @ 1 1 09936215 -fellowship n 3 3 @ ~ + 3 2 08227916 13929588 13266348 -felly n 1 2 @ #p 1 0 03326660 -felo-de-se n 2 1 @ 2 0 10673669 00223268 -felon n 2 2 @ ~ 2 1 09977660 14176570 -felony n 1 3 @ ~ + 1 0 00768701 -felspar n 1 3 @ ~ %s 1 0 14864961 -felt n 1 2 @ + 1 0 03326795 -felt-tip_pen n 1 1 @ 1 0 03326948 -felt-tipped_pen n 1 1 @ 1 0 03326948 -felt_fern n 1 2 @ #m 1 0 13178284 -felt_fungus n 1 2 @ #m 1 0 13069773 -felt_hat n 1 1 @ 1 0 03325941 -felt_tip n 1 1 @ 1 0 03326948 -felucca n 1 1 @ 1 0 03327133 -felwort n 1 2 @ #m 1 0 12296045 -fema n 1 2 @ #p 1 0 08123970 -female n 2 5 ! @ ~ %p + 2 2 01320872 09619168 -female_aristocrat n 1 3 ! @ ~ 1 0 10083823 -female_body n 1 4 @ ~ #p %p 1 0 05219923 -female_bonding n 1 1 @ 1 0 13782208 -female_chest n 1 2 @ #p 1 0 05551494 -female_child n 1 3 ! @ ~ 1 0 10084295 -female_circumcision n 1 1 @ 1 0 00669155 -female_genital_organ n 1 4 @ ~ #p %p 1 0 05514410 -female_genitalia n 1 4 @ ~ #p %p 1 0 05514410 -female_genitals n 1 4 @ ~ #p %p 1 0 05514410 -female_horse n 1 3 @ ~ #m 1 0 02377480 -female_internal_reproductive_organ n 1 3 @ ~ #p 1 0 05514717 -female_mammal n 1 2 @ %p 1 0 01862399 -female_monarch n 1 4 ! @ ~ #m 1 0 10499355 -female_offspring n 1 3 ! @ ~ 1 0 10084043 -female_parent n 1 3 ! @ ~ 1 0 10332385 -female_person n 1 3 @ ~ %p 1 0 09619168 -female_reproductive_system n 1 3 @ #p %p 1 0 05513529 -female_sibling n 1 3 ! @ ~ 1 0 10084181 -femaleness n 1 3 ! @ + 1 0 05008943 -feminine n 1 2 @ + 1 0 06328996 -feminineness n 1 2 @ + 1 0 05008943 -femininity n 1 4 ! @ ~ + 1 1 04667406 -feminisation n 1 2 @ + 1 0 13479605 -feminism n 2 3 @ %m + 2 0 05967773 00800421 -feminist n 1 4 @ ~ #m + 1 0 10084635 -feminist_movement n 1 2 @ %m 1 0 00800421 -feminization n 1 2 @ + 1 0 13479605 -femme_fatale n 1 1 @ 1 0 10055410 -femoral_artery n 1 2 @ #p 1 0 05345247 -femoral_biceps n 1 2 @ #p 1 0 05579053 -femoral_nerve n 1 2 @ #p 1 0 05568104 -femoral_pulse n 1 1 @ 1 0 15280964 -femoral_vein n 1 2 @ #p 1 0 05367508 -femoris n 1 3 @ #p %p 1 0 05573895 -femtochemistry n 1 1 @ 1 0 06090064 -femtometer n 1 2 @ #p 1 0 13657691 -femtometre n 1 2 @ #p 1 0 13657691 -femtosecond n 1 3 @ #p %p 1 0 15235687 -femtovolt n 1 2 @ #p 1 0 13643109 -femur n 1 4 @ #p %p + 1 0 05573895 -fen n 2 3 @ ~ #p 2 0 13710219 09347779 -fen_orchid n 1 2 @ #m 1 0 12070712 -fen_orchis n 1 2 @ #m 1 0 12070712 -fence n 2 5 @ ~ #p + ; 2 1 03327234 10085101 -fence-sitter n 1 1 @ 1 0 10085344 -fence_line n 1 2 @ %p 1 1 08514865 -fence_lizard n 1 2 @ ~ 1 0 01680478 -fence_mending n 1 1 @ 1 0 06660009 -fence_rail n 1 2 @ #p 1 1 04282872 -fencer n 1 2 @ + 1 0 10085217 -fencer's_mask n 1 1 @ 1 0 03327553 -fencesitter n 1 2 @ ; 1 0 10337488 -fencing n 3 5 @ ~ #p + - 3 1 03327234 14859100 01171644 -fencing_mask n 1 1 @ 1 0 03327553 -fencing_material n 1 1 @ 1 0 14859100 -fencing_stick n 1 1 @ 1 0 04223170 -fencing_sword n 1 2 @ ~ 1 0 03327691 -fender n 4 4 @ ~ #p + 4 1 03327841 03328201 03328076 02911158 -fender-bender n 1 1 @ 1 0 07311540 -fenestella n 1 2 @ #p 1 0 03697665 -fenestra n 1 4 @ ~ #p ; 1 0 05325378 -fenestra_cochleae n 1 1 @ 1 0 05325786 -fenestra_of_the_cochlea n 1 1 @ 1 0 05325786 -fenestra_of_the_vestibule n 1 1 @ 1 0 05325606 -fenestra_ovalis n 1 1 @ 1 0 05325606 -fenestra_rotunda n 1 1 @ 1 0 05325786 -fenestra_vestibuli n 1 1 @ 1 0 05325606 -fenestration n 2 2 @ ; 2 0 05076709 00674562 -feng_shui n 1 2 @ ; 1 0 05915811 -fengtien n 1 2 @ #p 1 0 08728462 -fenland n 1 2 @ ~ 1 0 09347779 -fennel n 4 4 @ ~ #m #p 4 0 12939104 07817871 07817758 07814790 -fennel_flower n 1 1 @ 1 0 11737009 -fennel_seed n 1 2 @ #p 1 0 07818029 -fennic n 1 2 @ ~ 1 0 06956544 -fenoprofen n 1 2 @ %s 1 0 03328392 -fenoprofen_calcium n 1 2 @ %s 1 0 03328392 -fenrir n 1 2 @ ; 1 0 09584405 -fentanyl n 1 1 @ 1 0 03328650 -fenugreek n 2 4 @ #m #p %p 2 0 12574470 07818133 -fenugreek_seed n 1 2 @ #p 1 0 07818133 -fenusa n 1 2 @ #m 1 0 02218912 -fenusa_pusilla n 1 1 @ 1 0 02219015 -feodor_dostoevski n 1 1 @ 1 0 10940669 -feodor_dostoevsky n 1 1 @ 1 0 10940669 -feodor_dostoyevsky n 1 1 @ 1 0 10940669 -feodor_mikhailovich_dostoevski n 1 1 @ 1 0 10940669 -feodor_mikhailovich_dostoevsky n 1 1 @ 1 0 10940669 -feodor_mikhailovich_dostoyevsky n 1 1 @ 1 0 10940669 -feoff n 1 1 @ 1 0 13249927 -feosol n 1 1 @ 1 0 03329058 -fer-de-lance n 1 2 @ #m 1 0 01758141 -feral_man n 1 2 @ ~ 1 0 10781684 -ferber n 1 1 @ 1 0 10968504 -ferdinand n 1 1 @ 1 0 10969305 -ferdinand_and_isabella n 1 1 @ 1 0 08485160 -ferdinand_de_lesseps n 1 1 @ 1 0 11129286 -ferdinand_de_saussure n 1 1 @ 1 0 10931634 -ferdinand_i n 2 1 @ 2 0 10968835 10968640 -ferdinand_ii n 1 1 @ 1 0 10968956 -ferdinand_iii n 1 1 @ 1 0 10969118 -ferdinand_joseph_la_menthe_morton n 1 1 @ 1 0 11193058 -ferdinand_julius_cohn n 1 1 @ 1 0 10904639 -ferdinand_magellan n 1 1 @ 1 0 11149016 -ferdinand_of_aragon n 1 1 @ 1 0 10969305 -ferdinand_the_catholic n 1 1 @ 1 0 10969305 -ferdinand_the_great n 1 1 @ 1 0 10968640 -ferdinand_v n 1 1 @ 1 0 10969305 -ferdinand_victor_eugene_delacroix n 1 1 @ 1 0 10928498 -fere_phenomenon n 1 2 @ #p 1 0 00860011 -ferenc_molnar n 1 1 @ 1 0 11184825 -fergon n 1 1 @ 1 0 03329180 -fergusonite n 1 2 @ %s 1 0 14675012 -feria n 2 3 @ + ; 2 0 15163408 00517564 -fermat n 1 1 @ 1 0 10969799 -fermata n 2 2 @ ; 2 0 06867510 05052243 -ferment n 3 3 @ ~ + 3 1 13979503 14738752 13575433 -fermentation n 2 3 @ ~ + 2 2 13979503 13575433 -fermentation_alcohol n 1 3 @ ~ #s 1 0 14709265 -fermenting n 1 3 @ ~ + 1 0 13575433 -fermentologist n 1 1 @ 1 0 09616573 -fermi n 2 2 @ #p 2 0 13657691 10969986 -fermi-dirac_statistics n 1 2 @ ; 1 0 05877991 -fermion n 1 2 @ ~ 1 0 09279161 -fermium n 1 1 @ 1 0 14637339 -fern n 1 5 @ ~ #m %p + 1 0 11545714 -fern_ally n 1 2 @ ~ 1 0 11547562 -fern_family n 1 3 @ ~ #m 1 0 13166338 -fern_genus n 1 3 @ ~ #m 1 0 13167078 -fern_palm n 1 2 @ #m 1 0 11601333 -fern_rhapis n 1 1 @ 1 0 12596148 -fern_seed n 1 2 @ #p 1 0 11550022 -fernand_leger n 1 1 @ 1 0 11124961 -fernao_magalhaes n 1 1 @ 1 0 11149016 -ferocactus n 1 3 @ #m %m 1 0 11846970 -ferociousness n 1 2 @ + 1 0 04830689 -ferocity n 1 3 @ ~ + 1 1 05037813 -ferrara n 1 2 @ #p 1 0 08805386 -ferret n 2 3 @ #m + 2 0 02443484 02443346 -ferret_badger n 1 2 @ #m 1 0 02448633 -ferric_oxide n 1 3 @ ~ #s 1 0 14865800 -ferricyanic_acid n 1 1 @ 1 0 14865934 -ferricyanide n 1 1 @ 1 0 14866043 -ferrimagnetism n 1 1 @ 1 0 11480091 -ferris_wheel n 1 1 @ 1 0 03329302 -ferrite n 1 3 @ #s %s 1 0 14859201 -ferritin n 1 1 @ 1 0 14866166 -ferrocerium n 1 1 @ 1 0 14866369 -ferroconcrete n 1 1 @ 1 0 14804797 -ferrocyanic_acid n 1 1 @ 1 0 14866490 -ferrocyanide n 1 2 @ ~ 1 0 14866605 -ferromagnetism n 1 2 @ + 1 0 11480284 -ferrule n 1 1 @ 1 0 03329536 -ferry n 2 3 @ ~ + 2 0 03329663 01106587 -ferryboat n 1 2 @ ~ 1 0 03329663 -ferrying n 1 2 @ + 1 0 01106587 -ferryman n 1 2 @ ~ 1 0 10085449 -fertile_crescent n 1 2 @ #p 1 0 08792083 -fertile_period n 1 2 @ #p 1 0 15288489 -fertile_phase n 1 2 @ #p 1 0 15288489 -fertilisation n 2 2 @ ~ 2 0 07436986 07434473 -fertiliser n 1 3 @ ~ %s 1 0 14859344 -fertility n 3 4 ! @ = + 3 0 15276427 14051494 05147586 -fertility_drug n 1 2 @ ~ 1 0 03329880 -fertility_rate n 1 1 @ 1 0 15276427 -fertilization n 2 3 @ ~ + 2 0 07436986 07434473 -fertilization_age n 1 1 @ 1 0 04925064 -fertilization_membrane n 1 1 @ 1 0 05319419 -fertilized_egg n 1 3 @ ~ %p 1 0 01458842 -fertilized_ovum n 1 3 @ ~ ; 1 0 05431926 -fertilizer n 1 4 @ ~ %s + 1 1 14859344 -ferule n 1 1 @ 1 0 03330002 -fervency n 1 3 @ ~ + 1 0 07481375 -fervidness n 1 3 @ ~ + 1 0 07481375 -fervor n 2 3 @ ~ = 2 1 07481375 14037011 -fervour n 2 3 @ ~ = 2 0 14037011 07481375 -fes n 1 2 @ #p 1 0 08970064 -fescue n 1 2 @ #m 1 0 12121610 -fescue_grass n 1 2 @ #m 1 0 12121610 -fess n 1 2 @ ; 1 0 03330120 -fesse n 1 2 @ ; 1 0 03330120 -fester n 1 2 @ + 1 0 14184254 -festering n 2 4 @ ~ + ; 2 0 13479889 05417472 -festination n 1 2 @ + 1 0 14313154 -festival n 2 2 @ ~ 2 1 15162388 00517728 -festival_of_lights n 1 3 @ #p ; 1 0 15199033 -festivity n 1 3 @ ~ + 1 1 00428000 -festoon n 3 2 @ + 3 0 03330665 03330441 03330274 -festoonery n 1 2 @ + 1 0 03330274 -festschrift n 1 1 @ 1 0 06406865 -festuca n 1 3 @ #m %m 1 0 12121405 -festuca_elatior n 1 2 @ #m 1 0 12121610 -festuca_ovina n 1 2 @ #m 1 0 12121835 -fet n 1 1 @ 1 0 03332784 -fetal_age n 1 1 @ 1 0 04925064 -fetal_alcohol_syndrome n 1 1 @ 1 0 14305458 -fetal_circulation n 1 1 @ 1 0 05511975 -fetal_distress n 1 1 @ 1 0 14093874 -fetal_membrane n 1 3 @ ~ %p 1 0 05310790 -fetal_monitor n 1 1 @ 1 0 03278914 -fetal_movement n 1 2 @ ; 1 0 00334174 -fetch n 1 1 @ 1 0 00039916 -fete n 2 3 @ ~ + 2 0 07449862 00517728 -fete_champetre n 1 1 @ 1 0 08255508 -fete_day n 1 3 @ ~ #p 1 0 15161631 -feterita n 1 1 @ 1 0 12137954 -fetich n 2 1 @ 2 0 03603958 01207342 -fetichism n 2 1 @ 2 0 05945227 00738058 -feticide n 1 1 @ 1 0 00231315 -fetid_bugbane n 1 1 @ 1 0 11729142 -fetid_horehound n 1 2 @ #m 1 0 12841872 -fetidness n 1 3 @ ~ + 1 0 04980656 -fetish n 3 2 @ + 3 0 07489294 03603958 01207342 -fetishism n 2 2 @ + 2 0 05945227 00738058 -fetishist n 1 2 @ + 1 0 10085548 -fetlock n 2 2 @ #p 2 0 02462464 02462349 -fetlock_joint n 1 2 @ #p 1 0 02462464 -fetology n 1 1 @ 1 0 06053854 -fetometry n 1 1 @ 1 0 01002284 -fetoprotein n 1 2 @ ~ 1 0 15033662 -fetor n 1 2 @ ~ 1 0 05714894 -fetoscope n 1 1 @ 1 0 03330792 -fetoscopy n 1 1 @ 1 0 00944456 -fetter n 1 2 @ + 1 0 03330947 -fetter_bone n 1 3 @ #p %p 1 0 02462066 -fetter_bush n 1 2 @ #m 1 0 12241426 -fetterbush n 2 2 @ #m 2 0 12243693 12241426 -fettle n 1 1 @ 1 0 14546596 -fettuccine n 1 2 @ ~ 1 0 07700638 -fettuccine_alfredo n 1 1 @ 1 0 07700766 -fettuccini n 1 2 @ ~ 1 0 07700638 -fetus n 1 4 @ ~ %p + 1 0 01459791 -feud n 1 3 @ ~ + 1 0 01236173 -feudal_lord n 1 2 @ ~ 1 0 10085736 -feudal_lordship n 1 1 @ 1 0 00603866 -feudal_system n 1 1 @ 1 0 07972425 -feudalism n 1 2 @ + 1 0 07972425 -feudatory n 1 2 @ + 1 0 10746581 -fever n 2 3 @ ~ + 2 2 14365356 07511380 -fever_blister n 1 1 @ 1 0 14132375 -fever_pitch n 1 1 @ 1 0 14036892 -fever_tree n 4 2 @ #m 4 0 13111340 12669362 12337617 11758483 -feverfew n 1 2 @ #m 1 0 12023108 -feverishness n 1 3 @ ~ + 1 0 14365356 -feverroot n 1 2 @ #m 1 0 12679876 -few n 1 2 @ + 1 0 08388074 -few-flowered_leek n 1 1 @ 1 0 12434634 -fewness n 1 2 @ + 1 0 05123098 -feynman n 1 1 @ 1 0 10970279 -fez n 2 2 @ #p 2 0 08970064 03331077 -fha n 1 2 @ #p 1 0 08423634 -fhlmc n 1 1 @ 1 0 08384539 -fiance n 1 1 @ 1 0 10085869 -fiancee n 1 1 @ 1 0 10085970 -fiasco n 1 1 @ 1 0 07365432 -fiat n 1 3 @ ~ ; 1 1 06539770 -fiat_money n 1 1 @ 1 0 13393599 -fib n 1 3 @ ~ + 1 0 06757057 -fibber n 1 2 @ + 1 0 10660333 -fibbing n 1 2 @ + 1 0 00752144 -fiber n 5 6 @ ~ #p %s %p + 5 1 14866889 07568818 05229622 04620216 03331244 -fiber-optic_transmission_system n 1 2 @ %p 1 0 03331820 -fiber_bundle n 1 3 @ ~ #p 1 0 05475681 -fiber_optic_cable n 1 3 @ #p %p 1 0 03331599 -fiber_optics n 1 2 @ + 1 0 06280816 -fiberboard n 1 2 @ ~ 1 0 03331390 -fiberglass n 1 1 @ 1 1 14866769 -fiberoptics n 1 2 @ + 1 0 06280816 -fiberscope n 1 2 @ %p 1 0 03332005 -fibonacci_number n 1 1 @ 1 0 13593908 -fibonacci_sequence n 1 1 @ 1 0 08373818 -fibre n 4 5 @ ~ #p %s %p 4 0 14866889 05229622 04620216 03331244 -fibre-optic_transmission_system n 1 2 @ %p 1 0 03331820 -fibre_bundle n 1 3 @ ~ #p 1 0 05475681 -fibre_optic_cable n 1 3 @ #p %p 1 0 03331599 -fibre_optics n 1 1 @ 1 0 06280816 -fibreboard n 1 2 @ ~ 1 0 03331390 -fibreglass n 1 1 @ 1 0 14866769 -fibreoptics n 1 2 @ + 1 0 06280816 -fibril n 1 2 @ ~ 1 0 14867858 -fibrillation n 2 3 @ ~ + 2 0 14362179 00389043 -fibrin n 1 2 @ + 1 1 14733941 -fibrinase n 1 1 @ 1 0 15072657 -fibrinogen n 1 1 @ 1 0 15023156 -fibrinolysin n 1 2 @ ~ 1 0 14983774 -fibrinolysis n 1 1 @ 1 0 13480176 -fibrinopeptide n 1 1 @ 1 0 14742737 -fibroadenoma n 1 1 @ 1 0 14238211 -fibroblast n 1 1 @ 1 0 05448400 -fibrocartilage n 1 1 @ 1 0 05288593 -fibrocystic_breast_disease n 1 1 @ 1 0 14198380 -fibrocystic_disease_of_the_breast n 1 1 @ 1 0 14198380 -fibrocystic_disease_of_the_pancreas n 1 1 @ 1 0 14155506 -fibroid n 1 1 @ 1 0 14238393 -fibroid_tumor n 1 1 @ 1 0 14238393 -fibroma n 1 2 @ ~ 1 0 14238528 -fibromyositis n 1 1 @ 1 0 14346080 -fibrosis n 1 3 @ ~ #p 1 1 14207809 -fibrositis n 1 1 @ 1 0 14345958 -fibrosity n 1 1 @ 1 0 05022359 -fibrous-rooted_begonia n 1 1 @ 1 0 12360534 -fibrous_astrocyte n 1 2 @ #p 1 0 05467922 -fibrous_dysplasia_of_bone n 1 2 @ ~ 1 0 14366225 -fibrous_joint n 1 2 @ ~ 1 0 05542893 -fibrous_tissue n 1 2 @ ~ 1 1 05294995 -fibrousness n 1 1 @ 1 0 05022359 -fibrovascular_bundle n 1 2 @ ~ 1 0 13097949 -fibula n 1 2 @ #p 1 0 05594201 -fibular_vein n 1 2 @ #p 1 0 05376844 -fica n 1 1 @ 1 0 13310727 -fice n 1 1 @ 1 0 02085019 -fichu n 1 1 @ 1 0 03332173 -fickleness n 1 2 @ + 1 0 04879092 -fiction n 2 3 @ ~ + 2 1 06367107 06757891 -fictional_animal n 1 2 @ ~ 1 0 02451575 -fictional_character n 1 2 @ ~ 1 0 09587565 -fictionalisation n 2 2 @ + 2 0 06367373 00931040 -fictionalization n 2 2 @ + 2 0 06367373 00931040 -fictitious_character n 1 2 @ ~ 1 0 09587565 -fictitious_name n 1 2 @ ; 1 0 06334512 -fictitious_place n 1 2 @ ~ 1 0 05625879 -ficus n 1 3 @ #m %m 1 0 12401122 -ficus_aurea n 1 2 @ #m 1 0 12402051 -ficus_bengalensis n 1 1 @ 1 0 12402348 -ficus_carica n 1 3 @ ~ %p 1 0 12401684 -ficus_carica_sylvestris n 1 1 @ 1 0 12401893 -ficus_deltoidea n 1 1 @ 1 0 12403075 -ficus_diversifolia n 1 1 @ 1 0 12403075 -ficus_elastica n 1 1 @ 1 0 12402840 -ficus_religiosa n 1 1 @ 1 0 12402596 -ficus_rubiginosa n 1 1 @ 1 0 12403276 -ficus_sycomorus n 1 2 @ #m 1 0 12403513 -fiddle n 1 4 @ ~ %p + 1 1 04536866 -fiddle-faddle n 1 1 @ 1 0 06608143 -fiddlehead n 2 2 @ #m 2 0 13198054 12953919 -fiddlehead_fern n 1 1 @ 1 0 12953919 -fiddleneck n 1 1 @ 1 0 12837466 -fiddler n 3 3 @ ~ + 3 0 10754578 10734235 10712229 -fiddler_crab n 1 2 @ #m 1 0 01980166 -fiddlestick n 1 2 @ #p 1 0 03332271 -fidel_castro n 1 1 @ 1 0 10886929 -fidel_castro_ruz n 1 1 @ 1 0 10886929 -fidelity n 2 4 ! @ ~ = 2 1 04804306 04876985 -fidget n 1 3 @ ~ + 1 0 07513795 -fidgetiness n 1 3 @ ~ + 1 0 07513795 -fiduciary n 1 3 @ ~ + 1 0 10086074 -fiduciary_duty n 1 1 @ 1 0 01131656 -fiduciary_relation n 1 3 @ ~ ; 1 0 13838386 -fiedler n 1 1 @ 1 0 10970488 -fief n 1 2 @ + 1 0 13249927 -fiefdom n 2 2 @ + 2 0 08557754 08048625 -field n 17 6 @ ~ #p %p + ; 17 13 08569998 08506641 08569777 05996646 11456760 01097119 14514039 08570758 09393605 08005260 08551628 07999584 07999471 08659446 08005580 05932891 02687992 -field-effect_transistor n 1 1 @ 1 0 03332784 -field-emission_microscope n 1 1 @ 1 0 03332989 -field-grade_officer n 1 2 @ ; 1 0 10087080 -field-pea_plant n 1 2 @ %p 1 0 12561309 -field-sequential_color_television n 1 1 @ 1 0 03334017 -field-sequential_color_television_system n 1 1 @ 1 0 03334017 -field-sequential_color_tv n 1 1 @ 1 0 03334017 -field-sequential_color_tv_system n 1 1 @ 1 0 03334017 -field_artillery n 1 1 @ 1 0 03332393 -field_balm n 2 2 @ #m 2 0 12847374 12843557 -field_bean n 1 3 @ #m %p 1 0 12576029 -field_bindweed n 1 2 @ #m 1 0 12824053 -field_brome n 1 1 @ 1 0 12111627 -field_capacity n 1 1 @ 1 0 13616926 -field_chamomile n 1 2 @ #m 1 0 11923637 -field_chickweed n 1 1 @ 1 0 11807367 -field_coil n 1 1 @ 1 0 03332591 -field_corn n 1 2 @ ~ 1 0 12144399 -field_cricket n 1 2 @ #m 1 0 02230187 -field_crop n 1 2 @ ~ 1 0 13086556 -field_day n 4 2 @ ; 4 0 15173353 15173259 15138809 15138691 -field_emission n 1 1 @ 1 0 13480394 -field_event n 1 3 @ ~ #p 1 0 07466557 -field_game n 1 2 @ ~ 1 0 00467719 -field_garlic n 1 1 @ 1 0 12435486 -field_general n 2 3 @ #m ; 2 1 10498816 00726567 -field_glass n 1 1 @ 1 0 03333129 -field_glasses n 1 3 @ %p ; 1 1 02841315 -field_goal n 2 2 @ ; 2 1 00188934 00190431 -field_guide n 1 1 @ 1 0 06422912 -field_gun n 1 1 @ 1 0 03332393 -field_hand n 1 2 @ ~ 1 0 10079399 -field_hockey n 1 3 @ ~ - 1 0 00467995 -field_hockey_ball n 1 1 @ 1 0 03333252 -field_horsetail n 1 1 @ 1 0 13219833 -field_hospital n 1 2 @ ; 1 0 03333349 -field_house n 2 2 @ #p 2 0 03333610 03333480 -field_hut n 1 3 @ ~ ; 1 0 03550153 -field_intensity n 1 2 @ ~ 1 0 05100269 -field_judge n 1 1 @ 1 0 10086744 -field_lens n 1 1 @ 1 0 03333711 -field_line n 1 2 @ ~ 1 0 11457057 -field_lupine n 1 1 @ 1 0 12546420 -field_magnet n 1 2 @ #p 1 0 03333851 -field_maple n 1 1 @ 1 0 12754648 -field_marigold n 1 2 @ #m 1 0 11950686 -field_marshal n 1 3 @ ~ ; 1 0 10086821 -field_mint n 1 1 @ 1 0 12855365 -field_mouse n 2 3 @ ~ #m 2 0 02339376 02332755 -field_mouse-ear n 1 1 @ 1 0 11807367 -field_mushroom n 1 2 @ #m 1 0 13001529 -field_mustard n 1 1 @ 1 0 11896722 -field_of_battle n 1 3 @ ~ %p 1 1 08506641 -field_of_fire n 1 1 @ 1 0 08570242 -field_of_force n 1 2 @ ~ 1 0 11456760 -field_of_honor n 2 3 @ ~ %p 2 0 08646486 08506641 -field_of_operation n 1 1 @ 1 1 01097119 -field_of_operations n 1 4 @ #p %p ; 1 0 08551628 -field_of_regard n 1 1 @ 1 0 05933638 -field_of_study n 1 2 @ ~ 1 0 05996646 -field_of_view n 1 2 @ ~ 1 0 05932891 -field_of_vision n 1 1 @ 1 0 05933638 -field_officer n 1 2 @ ; 1 0 10087080 -field_pansy n 1 1 @ 1 0 12388143 -field_pea n 3 3 @ #p %p 3 0 12561594 12561309 07726386 -field_pennycress n 1 2 @ #m 1 0 11898775 -field_poppy n 1 2 @ #m 1 0 11902200 -field_press_censorship n 1 1 @ 1 0 00821752 -field_pussytoes n 1 1 @ 1 0 11922755 -field_ration n 1 2 @ ~ 1 0 07565945 -field_sandbur n 1 2 @ #m 1 0 12113790 -field_scabious n 1 1 @ 1 0 12683791 -field_soybean n 1 2 @ #s 1 0 07729926 -field_spaniel n 1 1 @ 1 0 02101670 -field_sparrow n 1 2 @ #m 1 0 01536186 -field_speedwell n 1 2 @ #m 1 0 12890490 -field_sport n 1 2 @ ~ 1 1 00433661 -field_strength n 1 2 @ ~ 1 0 05100269 -field_strength_unit n 1 2 @ ~ 1 0 13633704 -field_tent n 1 1 @ 1 0 03334291 -field_test n 1 2 @ + 1 0 05799581 -field_theory n 1 2 @ ; 1 0 05994484 -field_thistle n 1 1 @ 1 0 11954345 -field_trial n 3 1 @ 3 1 05799581 07467704 00794870 -field_trip n 1 1 @ 1 0 00312403 -field_winding n 1 1 @ 1 0 03332591 -field_work n 1 1 @ 1 0 00639833 -field_wormwood n 1 2 @ #m 1 0 11930038 -fielder n 2 3 @ ~ + 2 1 10086568 10086383 -fielder's_choice n 1 1 @ 1 0 00130673 -fieldfare n 1 2 @ #m 1 0 01558307 -fieldhand n 1 2 @ ~ 1 1 10079399 -fielding n 2 3 @ + ; 2 1 00126721 10970603 -fielding_average n 1 2 @ ; 1 1 13818354 -fieldmouse n 1 3 @ ~ #m 1 0 02332755 -fields n 1 1 @ 1 0 10970718 -fieldsman n 1 2 @ ~ 1 0 10086383 -fieldstone n 1 1 @ 1 1 14868116 -fieldwork n 1 1 @ 1 0 03334382 -fieldworker n 1 1 @ 1 0 10091256 -fiend n 3 2 @ ~ 3 2 10329945 09542339 10077879 -fierceness n 1 3 @ ~ + 1 1 05037813 -fieri_facias n 1 2 @ ; 1 0 06555191 -fieriness n 2 2 @ + 2 0 05016553 04628336 -fiesta n 1 2 @ ~ 1 0 07449862 -fiesta_flower n 1 2 @ #m 1 0 12837803 -fife n 1 1 @ 1 0 03334492 -fife_rail n 1 1 @ 1 0 03334667 -fifo n 1 1 @ 1 0 00620084 -fifteen n 1 2 @ + 1 1 13747469 -fifteenth n 1 2 @ + 1 0 13848349 -fifth n 4 2 @ + 4 1 13619475 13847240 13737830 06859800 -fifth_amendment n 1 3 @ #p ; 1 0 06728331 -fifth_avenue n 1 2 @ #p 1 0 09120939 -fifth_column n 1 2 @ %m 1 0 08359753 -fifth_columnist n 1 2 @ #m 1 0 10087255 -fifth_cranial_nerve n 1 1 @ 1 0 05478896 -fifth_crusade n 1 1 @ 1 0 00969858 -fifth_lateran_council n 1 1 @ 1 0 08317340 -fifth_part n 1 1 @ 1 0 13737830 -fifth_wheel n 3 1 @ 3 0 05120564 03334912 03334775 -fifties n 2 2 @ #p 2 1 15149763 15149642 -fiftieth n 1 2 @ + 1 0 13849180 -fifty n 2 2 @ + 2 1 13749644 13395187 -fifty-cent_piece n 1 1 @ 1 1 13390405 -fifty_dollar_bill n 1 1 @ 1 0 13395187 -fifty_percent n 1 1 @ 1 0 13736997 -fig n 4 5 @ ~ #p %p ; 4 1 06999647 12401684 08032594 07753113 -fig-bird n 1 2 @ #m 1 0 01576358 -fig_leaf n 2 1 @ 2 0 13156006 03335461 -fig_marigold n 1 3 @ ~ #m 1 0 11820965 -fig_moth n 1 2 @ #m 1 0 02290664 -fig_tree n 1 3 @ ~ #m 1 1 12401335 -fig_wax n 1 1 @ 1 0 14889973 -figeater n 1 1 @ 1 0 02173113 -fight n 5 6 @ ~ #p %p + ; 5 3 00953559 01170962 04837425 07184391 00446493 -fighter n 3 4 @ ~ + ; 3 3 09939313 03335030 09906538 -fighter_aircraft n 1 3 @ ~ ; 1 0 03335030 -fighter_pilot n 1 3 @ ~ ; 1 0 10087434 -fighting n 1 4 @ ~ %p + 1 1 01170962 -fighting_chair n 1 1 @ 1 0 03335333 -fighting_cock n 1 1 @ 1 0 01514752 -fighting_french n 1 2 @ ; 1 0 08114581 -fighting_joe_hooker n 1 1 @ 1 0 11058436 -figment n 1 1 @ 1 0 05913160 -figural_blindness n 1 1 @ 1 1 14557315 -figuration n 2 3 @ ~ + 2 0 00899927 00263272 -figure n 13 6 ! @ ~ #p + - 13 9 06999647 05217168 13741022 03335600 10344443 13862780 13331634 04675646 05121418 07105475 05930386 03178782 00556992 -figure_eight n 2 1 @ 2 0 03335846 00557184 -figure_loom n 1 1 @ 1 0 03336168 -figure_of_eight n 1 1 @ 1 0 03335846 -figure_of_merit n 1 1 @ 1 0 13821118 -figure_of_speech n 1 3 @ ~ - 1 1 07105475 -figure_skate n 1 1 @ 1 0 03336282 -figure_skating n 1 1 @ 1 0 00448748 -figured-fabric_loom n 1 1 @ 1 0 03336168 -figured_bass n 1 1 @ 1 1 07032556 -figurehead n 2 1 @ 2 0 10113583 03336070 -figurer n 1 3 @ ~ + 1 0 09887034 -figurine n 1 1 @ 1 1 03336459 -figuring n 1 3 @ ~ + 1 1 05802185 -figwort n 1 2 @ #m 1 0 12876899 -figwort_family n 1 3 @ #m %m 1 0 12876032 -fiji n 1 5 @ #p %m %p + 1 0 08779149 -fiji_dollar n 1 1 @ 1 0 13673178 -fiji_islands n 1 3 @ #p %p 1 0 08778597 -fijian n 2 3 @ #m + 2 0 09705909 06938623 -fijis n 1 3 @ #p %p 1 0 08778597 -filaggrin n 1 1 @ 1 0 14734164 -filago n 1 3 @ ~ #m 1 0 11970101 -filago_germanica n 1 1 @ 1 0 11970298 -filagree n 1 1 @ 1 0 03337822 -filament n 4 4 @ ~ #p + 4 0 14867858 11678123 05229468 03336575 -filaree n 1 1 @ 1 0 12688903 -filaria n 2 3 @ #m + 2 0 12688903 01933478 -filariasis n 1 1 @ 1 0 14368032 -filariidae n 1 3 @ #m %m 1 0 01933342 -filature n 1 1 @ 1 0 03336742 -filbert n 2 2 @ #p 2 0 12289433 07772788 -file n 4 4 @ ~ %p + 4 4 06508816 08428756 03337140 03336839 -file_allocation_table n 1 1 @ 1 0 08267197 -file_cabinet n 1 2 @ ~ 1 1 03337140 -file_clerk n 1 1 @ 1 0 10087574 -file_folder n 1 1 @ 1 0 03337383 -file_name n 1 3 @ %p ; 1 0 06335532 -file_name_extension n 1 2 @ #p 1 0 06335162 -file_server n 1 3 @ ~ ; 1 0 03337494 -file_system n 1 1 @ 1 0 05732614 -file_transfer_protocol n 1 3 @ ~ ; 1 0 06665370 -filefish n 1 3 @ ~ #m 1 0 02653786 -filename n 1 3 @ %p ; 1 0 06335532 -filename_extension n 1 2 @ #p 1 0 06335162 -filer n 2 3 @ + ; 2 0 10087736 10087574 -filet n 3 4 @ ~ #p + 3 0 07660065 07655337 03337727 -filet_de_boeuf_en_croute n 1 1 @ 1 0 07862611 -filet_mignon n 1 1 @ 1 0 07660686 -filial_duty n 1 2 @ ~ 1 0 01131224 -filial_love n 1 1 @ 1 0 07544039 -filiation n 2 4 @ ~ = + 2 0 13813042 04922787 -filibuster n 2 3 @ + ; 2 0 10087868 01068012 -filibusterer n 1 2 @ + 1 0 10087868 -filicales n 1 3 @ #m %m 1 0 13169674 -filicide n 2 1 @ 2 0 10088101 00222155 -filicinae n 1 3 @ #m %m 1 0 13169219 -filicopsida n 1 3 @ #m %m 1 0 13169219 -filigree n 1 2 @ + 1 0 03337822 -filing n 4 3 @ ~ + 4 1 07167954 09279345 00925489 00811491 -filing_cabinet n 1 2 @ ~ 1 0 03337140 -filing_clerk n 1 1 @ 1 0 10087574 -filing_system n 1 1 @ 1 0 05732614 -filipino n 2 4 @ ~ #m + 2 1 09727440 06939756 -filippino_lippi n 1 1 @ 1 0 11134339 -filippo_brunelleschi n 1 1 @ 1 0 10868562 -fill n 2 3 @ ~ + 2 1 13580723 14868243 -fill-in n 1 3 @ ~ + 1 1 10648237 -fillagree n 1 1 @ 1 0 03337822 -fille n 1 2 @ ~ 1 0 10129825 -fille_de_chambre n 1 1 @ 1 1 09906293 -filler n 5 4 @ ~ #p + 5 0 14706026 13676650 06676254 03714721 03338009 -fillet n 5 4 @ ~ #p + 5 0 07660065 07655337 05475562 04383696 03338143 -fillet_of_sole n 1 3 @ ~ #p 1 0 07791274 -filling n 6 6 @ ~ #s #p + ; 6 2 14868243 13480541 07883031 04598965 03338287 00402535 -filling_station n 1 1 @ 1 1 03425092 -fillip n 1 1 @ 1 1 05829656 -fillmore n 1 1 @ 1 0 10970864 -filly n 1 1 @ 1 1 02376679 -film n 5 6 @ ~ %p + ; - 5 4 06613686 06262567 03338821 03338648 03339296 -film_advance n 1 1 @ 1 0 03339529 -film_clip n 1 2 @ #p 1 1 06621323 -film_company n 1 2 @ ~ 1 0 08003173 -film_director n 1 2 @ ~ 1 0 10088200 -film_editing n 1 1 @ 1 0 00945205 -film_fern n 1 2 @ #m 1 0 12951835 -film_festival n 1 1 @ 1 0 00517418 -film_industry n 1 3 @ ~ #p 1 0 08068151 -film_maker n 1 2 @ ~ 1 1 10088390 -film_making n 1 1 @ 1 0 00924714 -film_noir n 1 1 @ 1 0 06617165 -film_producer n 1 2 @ ~ 1 0 10088390 -film_projector n 1 3 @ ~ %p 1 0 03795976 -film_star n 1 1 @ 1 0 10089484 -film_writer n 1 2 @ ~ 1 0 10564400 -filmdom n 1 1 @ 1 0 08068457 -filming n 1 3 @ ~ + 1 1 00907919 -filmmaker n 1 2 @ ~ 1 0 10088390 -filmy_fern n 2 3 @ ~ #m 2 0 12952165 12951835 -filoviridae n 1 2 @ %m 1 0 01331659 -filovirus n 1 2 @ ~ 1 0 01331867 -fils n 2 2 @ #p 2 0 13697621 13669006 -filter n 2 3 @ ~ + 2 2 03339643 03340009 -filter-tipped_cigarette n 1 2 @ %p 1 0 03340463 -filter_bed n 1 1 @ 1 0 03340183 -filter_paper n 1 1 @ 1 1 14868464 -filter_tip n 1 2 @ #p 1 0 03340306 -filth n 4 4 @ ~ + - 4 0 14856752 14498096 14495761 07124340 -filthiness n 2 2 @ + 2 0 14495761 04852962 -filthy_lucre n 1 1 @ 1 0 13260645 -filtrate n 1 3 @ ~ + 1 0 14868564 -filtration n 2 3 @ ~ + 2 0 13480667 00191980 -filtration_surgery n 1 1 @ 1 0 00679379 -filum n 1 3 @ ~ + 1 0 05229468 -fimbria n 1 1 @ 1 0 05472959 -fin n 6 5 @ ~ #p %p + 6 0 13744521 04384406 03692676 03364156 03340581 02466132 -fin_keel n 1 3 @ ~ #p 1 0 03343047 -fin_whale n 1 2 @ #m 1 0 02065026 -finagler n 1 2 @ + 1 0 10089615 -final n 2 4 @ ~ #p + 2 0 07466832 07198276 -final_cause n 1 2 @ ; 1 0 05983217 -final_cut n 1 1 @ 1 0 06615216 -final_decision n 1 3 @ ~ ; 1 0 01189001 -final_exam n 1 1 @ 1 0 07198276 -final_examination n 1 1 @ 1 0 07198276 -final_injunction n 1 2 @ ; 1 0 06543389 -final_judgment n 1 3 @ ~ ; 1 0 01189001 -final_payment n 1 1 @ 1 0 13299357 -final_period n 1 2 @ #p 1 1 15257692 -final_result n 1 2 @ ~ 1 0 07292694 -final_solution n 1 1 @ 1 0 01245471 -final_stage n 1 2 @ ~ 1 0 07291794 -finale n 3 2 @ #p 3 1 07039478 15267536 00210797 -finalisation n 1 2 @ + 1 0 00211462 -finalist n 1 1 @ 1 0 10089779 -finality n 1 3 @ = + 1 0 04754440 -finalization n 1 2 @ + 1 0 00211462 -finance n 3 5 @ ~ + ; - 3 1 01098698 06150633 01134037 -finance_committee n 1 1 @ 1 0 08326976 -finance_company n 1 2 @ ~ 1 0 08420839 -finance_minister n 1 1 @ 1 0 10089892 -finances n 1 2 @ ~ 1 0 13356112 -financial_aid n 1 2 @ ~ 1 0 13265904 -financial_analyst n 1 1 @ 1 0 09790865 -financial_audit n 1 1 @ 1 0 00578405 -financial_backing n 1 1 @ 1 0 13365698 -financial_center n 1 2 @ #p 1 0 08543081 -financial_condition n 1 3 @ ~ = 1 0 14488317 -financial_crimes_enforcement_network n 1 2 @ #p 1 0 08137251 -financial_forecast n 1 1 @ 1 0 06750514 -financial_gain n 1 2 @ ~ 1 0 13254985 -financial_institution n 1 2 @ ~ 1 0 08054721 -financial_loss n 1 2 @ ~ 1 0 13327896 -financial_management_service n 1 2 @ #p 1 0 08140506 -financial_obligation n 1 2 @ ~ 1 0 14490319 -financial_officer n 1 2 @ ~ 1 0 10727256 -financial_organisation n 1 2 @ ~ 1 0 08054721 -financial_organization n 1 2 @ ~ 1 0 08054721 -financial_statement n 1 2 @ ~ 1 0 06516595 -financial_support n 1 1 @ 1 0 13365698 -financial_year n 1 1 @ 1 0 15203120 -financier n 1 3 @ ~ + 1 0 10090020 -financing n 1 2 @ + 1 1 01099109 -finback n 1 2 @ #m 1 0 02065026 -finback_whale n 1 2 @ #m 1 0 02065026 -fincen n 1 2 @ #p 1 0 08137251 -finch n 1 3 @ ~ #m 1 0 01529672 -find n 2 3 @ ~ + 2 0 05808218 00043195 -finder n 3 4 @ ~ #p + 3 0 10090745 10090498 03340723 -finder's_fee n 1 1 @ 1 0 13321722 -finding n 3 4 @ ~ + ; 3 3 00151497 01191975 09279458 -finding_of_fact n 1 3 @ ~ ; 1 0 01192150 -finding_of_law n 1 2 @ ; 1 0 01192463 -findings n 1 1 @ 1 0 07955961 -fine n 1 3 @ ~ + 1 0 13301328 -fine-leaved_heath n 1 1 @ 1 0 12228387 -fine-tooth_comb n 2 1 @ 2 0 03341035 00143057 -fine-toothed_comb n 2 1 @ 2 0 03341035 00143057 -fine_art n 1 3 @ ~ ; 1 0 02743547 -fine_arts n 1 3 @ ~ - 1 1 06156968 -fine_print n 2 2 @ #p 2 0 06761994 06678506 -fine_spray n 1 1 @ 1 0 11457496 -fine_structure n 1 2 @ #p 1 0 11457586 -fineness n 4 2 @ + 4 1 04728604 05136978 04948069 04813066 -finery n 1 2 @ ~ 1 0 03340923 -fines_herbes n 1 1 @ 1 0 07812046 -finesse n 1 1 @ 1 0 04842029 -fingal's_cave n 1 2 @ #p 1 0 09279727 -finger n 3 5 @ ~ #p %p + 3 1 05566504 13653461 03341153 -finger's_breadth n 1 1 @ 1 0 13653461 -finger-flower n 1 1 @ 1 0 12882945 -finger-painting n 2 2 @ + 2 0 03342127 00718066 -finger-pointing n 1 1 @ 1 0 07237234 -finger-roll n 1 1 @ 1 0 00110834 -finger-root n 1 1 @ 1 0 12882945 -finger_alphabet n 1 2 @ #p 1 0 06500765 -finger_bowl n 1 1 @ 1 0 03341606 -finger_cymbals n 1 2 @ ; 1 0 02869249 -finger_food n 1 1 @ 1 0 07560331 -finger_grass n 2 3 @ ~ #m 2 0 12117017 12114397 -finger_hole n 2 3 @ ~ #p 2 0 03341850 03341707 -finger_lakes n 1 2 @ %m 1 0 08567600 -finger_millet n 1 2 @ #m 1 0 12118661 -finger_paint n 1 1 @ 1 0 03342015 -finger_plate n 1 1 @ 1 0 03342262 -finger_scan n 1 1 @ 1 0 06644658 -finger_scanning n 1 1 @ 1 0 06644658 -finger_spelling n 1 1 @ 1 0 06875883 -finger_wave n 1 1 @ 1 0 05259426 -fingerboard n 3 2 @ #p 3 0 06794537 03928814 03341297 -fingerbreadth n 1 1 @ 1 0 13653461 -fingerflower n 1 1 @ 1 0 12882945 -fingering n 2 3 @ #p + 2 1 01053207 00140900 -fingerling n 1 1 @ 1 0 02512752 -fingermark n 1 1 @ 1 0 04694980 -fingernail n 1 3 @ ~ #p 1 1 05584265 -fingerpaint n 1 1 @ 1 0 03342015 -fingerpointing n 1 1 @ 1 0 07237234 -fingerpost n 1 1 @ 1 0 06794537 -fingerprint n 3 3 @ ~ + 3 1 06644393 06886488 04694980 -fingerprint_expert n 1 1 @ 1 1 10090864 -fingerprint_man n 1 1 @ 1 1 10090864 -fingerprint_specialist n 1 1 @ 1 1 10090864 -fingerprinting n 1 2 @ + 1 1 00152338 -fingerroot n 1 1 @ 1 0 12882945 -fingerspelling n 1 2 @ + 1 0 06875883 -fingerstall n 1 1 @ 1 0 03342432 -fingertip n 1 2 @ #p 1 1 05567117 -finial n 1 1 @ 1 0 03342529 -finis n 2 1 @ 2 0 15267536 00210797 -finish n 9 5 ! @ ~ + ; 9 1 04700642 15267536 14459824 08567877 07353376 07333162 07291312 05717747 00210518 -finish_coat n 2 1 @ 2 0 03342863 03342657 -finish_line n 1 2 @ ~ 1 0 08571459 -finisher n 6 4 @ ~ + ; 6 0 09930257 09619734 09619605 09619452 03342961 02385002 -finishing n 2 3 @ ~ + 2 1 04700642 00210518 -finishing_coat n 2 1 @ 2 0 03342863 03342657 -finishing_line n 1 2 @ ~ 1 0 08571459 -finishing_school n 1 1 @ 1 0 08282109 -finishing_touch n 1 1 @ 1 0 05642678 -finiteness n 1 3 ! @ + 1 0 05209659 -finitude n 1 1 @ 1 0 05209659 -fink n 1 2 @ + 1 0 10091012 -finland n 1 5 @ #m #p %m %p 1 0 08779504 -finn n 1 2 @ #m 1 1 09706029 -finnan n 1 1 @ 1 0 07789745 -finnan_haddie n 1 1 @ 1 0 07789745 -finnan_haddock n 1 1 @ 1 0 07789745 -finnbogadottir n 1 1 @ 1 0 10971080 -finnic n 1 2 @ ~ 1 0 06956544 -finnish n 1 2 @ + 1 0 06958255 -finnish_capital n 1 2 @ #p 1 0 08780018 -finnish_mark n 1 2 @ %p 1 0 13688447 -finnish_monetary_unit n 1 2 @ ~ 1 0 13688319 -finno-ugrian n 1 2 @ ~ 1 0 06956287 -finno-ugric n 1 2 @ ~ 1 0 06956287 -finocchio n 1 2 @ #p 1 0 07817871 -fiord n 1 2 @ ~ 1 0 09281104 -fipple n 1 1 @ 1 0 03343234 -fipple_flute n 1 2 @ ~ 1 0 03343354 -fipple_pipe n 1 2 @ ~ 1 0 03343354 -fir n 2 6 @ ~ #m #s %s %p 2 0 11620912 11620673 -fir_clubmoss n 1 1 @ 1 0 13223090 -fir_cone n 1 2 @ #p 1 0 11683105 -fir_tree n 1 5 @ ~ #m %s %p 1 0 11620673 -fire n 9 4 @ ~ + ; 9 6 07302836 00986938 13480848 03343560 14842847 07481375 14686186 07420435 06711159 -fire-bellied_toad n 1 2 @ #m 1 0 01648620 -fire-bush n 2 2 @ #m 2 0 12914193 11831874 -fire-eater n 3 3 @ ~ #m 3 0 10091651 10091564 10091450 -fire-on-the-mountain n 1 2 @ #m 1 0 12920719 -fire-raising n 1 1 @ 1 0 00378296 -fire-swallower n 1 1 @ 1 0 10091450 -fire-wheel n 1 1 @ 1 0 11970846 -fire-worship n 1 1 @ 1 0 01046167 -fire_alarm n 2 1 @ 2 0 07265276 03343737 -fire_and_brimstone n 1 2 @ ; 1 1 14458763 -fire_ant n 1 2 @ #m 1 0 02221083 -fire_beetle n 1 2 @ #m 1 0 02176747 -fire_bell n 1 1 @ 1 0 03344305 -fire_blight n 1 2 @ ~ 1 0 14217002 -fire_brigade n 2 1 @ 2 0 08121394 08121301 -fire_bush n 2 2 @ #m 2 0 12914193 11831874 -fire_chief n 1 1 @ 1 0 10091349 -fire_code n 1 2 @ ; 1 0 06668813 -fire_company n 1 1 @ 1 1 08121394 -fire_control n 1 2 @ #p 1 0 00123652 -fire_control_radar n 1 2 @ ; 1 0 03344784 -fire_control_system n 1 2 @ ; 1 0 03344935 -fire_department n 1 3 @ ~ %m 1 0 08121117 -fire_door n 1 1 @ 1 0 03345362 -fire_drill n 1 1 @ 1 0 00894979 -fire_engine n 1 2 @ ~ 1 0 03345487 -fire_escape n 1 1 @ 1 0 03345658 -fire_extinguisher n 1 1 @ 1 0 03345837 -fire_fighter n 1 3 @ ~ #m 1 0 10091651 -fire_hook n 1 1 @ 1 0 03975926 -fire_hose n 1 1 @ 1 0 03346004 -fire_hydrant n 1 1 @ 1 0 03346898 -fire_insurance n 1 1 @ 1 0 13346337 -fire_iron n 1 3 @ ~ #p 1 0 03346135 -fire_marshal n 1 1 @ 1 0 10091349 -fire_marshall n 1 1 @ 1 0 10091861 -fire_opal n 1 1 @ 1 0 14868916 -fire_pink n 1 2 @ #m 1 0 11816649 -fire_pit n 1 1 @ 1 0 09280113 -fire_salamander n 1 2 @ #m 1 0 01629962 -fire_sale n 2 1 @ 2 0 01119116 01119012 -fire_screen n 1 1 @ 1 0 03347037 -fire_ship n 1 1 @ 1 0 03347191 -fire_station n 1 2 @ #p 1 0 03347338 -fire_thorn n 1 2 @ #m 1 0 12651229 -fire_tongs n 1 2 @ ; 1 0 03347472 -fire_tower n 1 1 @ 1 0 03347617 -fire_tree n 1 2 @ #m 1 0 12738599 -fire_trench n 1 1 @ 1 0 03347855 -fire_truck n 1 2 @ ~ 1 0 03345487 -fire_walker n 1 1 @ 1 0 10091997 -fire_walking n 1 1 @ 1 0 07454632 -fire_warden n 1 2 @ ~ 1 0 10092098 -fire_watcher n 1 2 @ ; 1 0 10092299 -fire_watching n 1 2 @ ; 1 0 00817507 -fire_wheel n 1 1 @ 1 0 11970846 -firearm n 1 3 @ ~ %p 1 1 03343853 -fireball n 4 3 @ ~ #p 4 0 11484260 10462429 09279986 09279870 -firebase n 1 1 @ 1 0 03344205 -firebird n 3 2 @ #m 3 0 01597737 01572489 01550172 -fireboat n 1 1 @ 1 0 03344393 -firebomb n 1 2 @ + 1 0 03565991 -firebox n 1 2 @ #p 1 0 03344509 -firebrand n 2 2 @ ~ 2 0 15101157 10209246 -firebrat n 1 2 @ #m 1 0 02270945 -firebreak n 1 1 @ 1 0 08571642 -firebrick n 1 2 @ %s 1 0 03344642 -firebug n 2 3 @ ~ #m 2 0 09810707 02245111 -fireclay n 1 2 @ #s 1 0 14813843 -firecracker n 1 2 @ ~ 1 1 03345115 -firedamp n 1 1 @ 1 0 14726998 -firedog n 1 1 @ 1 0 02710044 -firedrake n 1 2 @ ~ 1 0 09494388 -firefighter n 1 3 @ ~ #m 1 0 10091651 -firefly n 2 3 @ ~ #m 2 0 02176747 02168245 -fireguard n 2 1 @ 2 0 08571642 03347037 -firehouse n 1 2 @ #p 1 0 03347338 -firelight n 1 1 @ 1 1 11457841 -firelighter n 1 1 @ 1 0 14868771 -firelock n 1 2 @ %p 1 0 03363749 -fireman n 4 3 @ ~ #m 4 1 00432587 10659042 10518194 10091651 -fireman's_ax n 1 1 @ 1 0 03346289 -fireman's_axe n 1 1 @ 1 0 03346289 -fireman's_carry n 1 1 @ 1 0 00319608 -firenze n 1 3 @ #p %m 1 0 08812166 -fireplace n 1 4 @ ~ #p %p 1 1 03346455 -fireplug n 1 1 @ 1 0 03346898 -firepower n 1 2 @ ; 1 1 05204004 -fireroom n 1 2 @ ; 1 0 04325409 -fireside n 2 3 @ #p ; 2 1 08581699 03507241 -firestone n 2 1 @ 2 0 14870821 09280236 -firestorm n 2 1 @ 2 0 11457944 07182614 -firethorn n 1 2 @ #m 1 0 12651229 -firetrap n 1 1 @ 1 0 03347731 -firewall n 3 2 @ ; 3 1 00104088 03348142 03347980 -firewater n 1 2 @ ; 1 0 07907037 -fireweed n 2 2 @ #m 2 0 12342498 11965218 -firewheel_tree n 1 2 @ #m 1 0 12222900 -firewood n 1 2 @ ~ 1 1 15100644 -firework n 1 3 @ ~ ; 1 1 03348454 -firing n 4 3 @ ~ + 4 2 00986938 00123234 00378479 00216174 -firing_chamber n 1 2 @ #p 1 0 03348868 -firing_line n 2 1 @ 2 0 08571799 08415983 -firing_mechanism n 1 4 @ ~ #p %p 1 0 03469493 -firing_off n 1 2 @ ~ 1 0 00123234 -firing_party n 1 2 @ ; 1 0 08424769 -firing_pin n 1 2 @ #p 1 0 03349020 -firing_range n 1 2 @ ~ 1 1 03349150 -firing_squad n 1 2 @ ; 1 0 08424769 -firkin n 2 3 @ #p %p 2 0 13622769 03349296 -firm n 1 2 @ ~ 1 1 08059870 -firm_omelet n 1 2 @ ~ 1 0 07842972 -firmament n 1 3 @ %p + 1 0 08521267 -firmer_chisel n 1 1 @ 1 0 03349367 -firmiana n 1 3 @ #m %m 1 0 12198140 -firmiana_simplex n 1 2 @ #m 1 0 12198286 -firmness n 4 3 @ ~ + 4 2 05031849 04861486 04938110 04777852 -firmness_of_purpose n 1 2 @ ~ 1 0 04861486 -firmware n 1 2 @ ; 1 0 06357814 -first n 6 5 @ ~ #m #p ; 6 4 13846199 13597444 15265518 00723547 06700169 03350011 -first-aid_kit n 1 1 @ 1 0 03349469 -first-aid_station n 1 2 @ ~ 1 0 03349599 -first-class_honours_degree n 1 3 @ ~ ; 1 0 06700169 -first-class_mail n 1 2 @ ~ 1 0 06265272 -first-degree_burn n 1 2 @ ~ 1 0 14291173 -first-nighter n 1 1 @ 1 1 10093264 -first-order_correlation n 1 2 @ ; 1 0 06032066 -first-place_finish n 1 1 @ 1 0 07354911 -first-rater n 1 1 @ 1 0 10093396 -first_aid n 1 1 @ 1 1 00656524 -first_amendment n 1 3 @ #p ; 1 0 06728034 -first_appearance n 1 2 @ ~ 1 0 00238022 -first_balcony n 1 2 @ %p 1 0 03758220 -first_baron_beveridge n 1 1 @ 1 0 10850667 -first_baron_kelvin n 1 1 @ 1 0 11100260 -first_baron_lytton n 1 1 @ 1 0 11146494 -first_baron_macaulay n 1 1 @ 1 0 11146914 -first_baron_marks_of_broughton n 1 1 @ 1 0 11157422 -first_baron_passfield n 1 2 @ #m 1 0 11377851 -first_baron_rutherford n 1 1 @ 1 0 11276285 -first_baron_rutherford_of_nelson n 1 1 @ 1 0 11276285 -first_baron_tennyson n 1 1 @ 1 0 11335330 -first_base n 3 2 @ #m 3 0 03349771 00723547 00243662 -first_baseman n 1 2 @ ; 1 1 10092488 -first_battle_of_ypres n 1 3 @ #p ; 1 0 01300508 -first_blush n 1 1 @ 1 0 05917675 -first_cause n 1 1 @ 1 0 09504603 -first_class n 3 2 @ ~ 3 1 04730191 06265272 03349892 -first_council_of_constantinople n 1 1 @ 1 0 08313790 -first_council_of_lyons n 1 1 @ 1 0 08316346 -first_council_of_nicaea n 1 1 @ 1 0 08313592 -first_cousin n 1 1 @ 1 0 09972010 -first_cranial_nerve n 1 2 @ #p 1 0 05477946 -first_crusade n 1 1 @ 1 0 00969087 -first_degree n 1 1 @ 1 0 05861716 -first_derivative n 1 2 @ ~ 1 0 06014730 -first_duke_of_marlborough n 1 1 @ 1 0 10897594 -first_duke_of_wellington n 1 1 @ 1 0 11380923 -first_earl_kitchener_of_khartoum n 1 1 @ 1 0 11106479 -first_earl_of_beaconsfield n 1 1 @ 1 0 10937364 -first_earl_of_chatham n 1 1 @ 1 0 11236317 -first_earl_of_orford n 1 1 @ 1 0 11372372 -first_earl_wavell n 1 1 @ 1 0 11377315 -first_epistle_of_john n 1 2 @ #p 1 0 06447221 -first_epistle_of_paul_the_apostle_to_the_corinthians n 1 2 @ #p 1 0 06443398 -first_epistle_of_paul_the_apostle_to_the_thessalonians n 1 2 @ #p 1 0 06444959 -first_epistle_of_paul_the_apostle_to_timothy n 1 2 @ #p 1 0 06445473 -first_epistle_of_peter n 1 2 @ #p 1 0 06446860 -first_epistle_to_the_corinthians n 1 2 @ #p 1 0 06443398 -first_epistle_to_the_thessalonians n 1 2 @ #p 1 0 06444959 -first_epistle_to_timothy n 1 2 @ #p 1 0 06445473 -first_estate n 1 2 @ ; 1 0 08167779 -first_floor n 1 1 @ 1 0 03463381 -first_gear n 1 2 @ #p 1 0 03350011 -first_half n 1 1 @ 1 1 15258091 -first_harmonic n 1 1 @ 1 0 05719958 -first_in_first_out n 1 1 @ 1 0 00620084 -first_lady n 2 1 @ 2 0 10092880 10092794 -first_language n 1 1 @ 1 0 06904748 -first_lateran_council n 1 1 @ 1 0 08315442 -first_law_of_motion n 1 1 @ 1 0 05885822 -first_law_of_thermodynamics n 1 1 @ 1 0 06104578 -first_lieutenant n 1 1 @ 1 0 10092978 -first_light n 1 1 @ 1 0 15168790 -first_lord_of_the_treasury n 1 2 @ #m 1 0 10727458 -first_marquess_cornwallis n 1 1 @ 1 0 10911687 -first_mate n 1 1 @ 1 0 10300041 -first_moment n 1 2 @ ; 1 1 06024230 -first_mortgage n 1 1 @ 1 0 13352464 -first_name n 1 2 @ ~ 1 1 06337307 -first_of_may n 1 2 @ #p 1 0 15189033 -first_of_october_antifascist_resistance_group n 1 2 @ ; 1 0 08021129 -first_offender n 1 1 @ 1 0 10093167 -first_period n 1 2 @ #p 1 0 15257416 -first_person n 1 1 @ 1 0 06327718 -first_principle n 1 2 @ ; 1 0 05872742 -first_quarter n 1 1 @ 1 0 15207302 -first_reading n 1 1 @ 1 0 07163272 -first_rudiment n 1 2 @ ; 1 0 05872742 -first_sacker n 1 2 @ ; 1 0 10092488 -first_sergeant n 1 2 @ ~ 1 0 10093475 -first_state n 1 3 @ #p %p 1 0 09069862 -first_step n 1 2 @ ~ 1 1 00239230 -first_stomach n 1 2 @ #p 1 0 02399424 -first_strike n 1 1 @ 1 0 00977551 -first_team n 1 1 @ 1 0 08080652 -first_trimester n 1 1 @ 1 0 15226972 -first_vatican_council n 1 1 @ 1 0 08318032 -first_viscount_haldane_of_cloan n 1 1 @ 1 0 11022465 -first_viscount_nuffield n 1 1 @ 1 0 11210383 -first_visual_area n 1 2 @ #p 1 0 05494617 -first_water n 1 1 @ 1 0 04730285 -first_world_war n 1 2 @ %p 1 0 01311520 -firstborn n 1 2 @ + 1 0 10092643 -firth n 2 3 @ ~ ; 2 0 10971264 09280380 -firth_of_clyde n 1 2 @ #p 1 0 09280573 -firth_of_forth n 1 2 @ #p 1 0 09280731 -fisa n 1 1 @ 1 0 06565397 -fisc n 1 2 @ + 1 0 13358360 -fiscal_policy n 1 1 @ 1 1 06656961 -fiscal_year n 1 1 @ 1 1 15203120 -fischer n 3 1 @ 3 0 10971852 10971697 10971528 -fischer's_slime_mushroom n 1 1 @ 1 0 13004065 -fish n 4 6 @ ~ #m %p + ; 4 3 02512053 07775375 09753792 08688076 -fish-fly n 1 2 @ #m 1 0 02266421 -fish-liver_oil n 1 2 @ ~ 1 0 14869035 -fish-worship n 1 1 @ 1 0 01046571 -fish_and_chips n 1 1 @ 1 0 07867324 -fish_ball n 2 2 @ ~ 2 0 07868955 07641928 -fish_bowl n 2 1 @ 2 0 13935400 03350204 -fish_cake n 1 2 @ ~ 1 0 07641928 -fish_chowder n 1 1 @ 1 0 07588111 -fish_doctor n 1 2 @ #m 1 0 02617819 -fish_duck n 1 3 @ ~ #m 1 0 01854415 -fish_eagle n 1 2 @ #m 1 0 01616086 -fish_family n 1 3 @ ~ #m 1 0 01429349 -fish_farm n 1 1 @ 1 0 03351036 -fish_filet n 1 1 @ 1 0 07655337 -fish_fillet n 1 1 @ 1 0 07655337 -fish_finger n 1 1 @ 1 0 07642361 -fish_fly n 1 2 @ #m 1 0 02266421 -fish_fry n 1 1 @ 1 0 07577144 -fish_fuddle n 1 2 @ #m 1 0 12559518 -fish_genus n 1 3 @ ~ #m 1 0 01432517 -fish_geranium n 1 2 @ #m 1 0 12687698 -fish_glue n 1 1 @ 1 0 14703566 -fish_hawk n 1 2 @ #m 1 1 01616086 -fish_house_punch n 1 1 @ 1 0 07931733 -fish_joint n 1 1 @ 1 0 03352232 -fish_knife n 1 1 @ 1 0 03352366 -fish_ladder n 1 1 @ 1 0 03352484 -fish_loaf n 1 2 @ ~ 1 0 07875693 -fish_louse n 1 2 @ #m 1 0 01997605 -fish_lure n 1 3 @ ~ ; 1 0 03350602 -fish_meal n 1 1 @ 1 0 14867545 -fish_mousse n 1 1 @ 1 0 07617447 -fish_oil n 1 2 @ ~ 1 0 14869035 -fish_scale n 1 2 @ #p 1 0 01903110 -fish_slice n 1 2 @ ; 1 0 03352961 -fish_species n 1 2 @ ~ 1 0 08111027 -fish_steak n 1 2 @ ~ 1 0 07658058 -fish_stew n 1 2 @ ~ 1 0 07591473 -fish_stick n 1 1 @ 1 0 07642361 -fish_tank n 1 2 @ ~ 1 0 02732072 -fishbone n 1 2 @ #p 1 0 02467491 -fishbowl n 2 1 @ 2 0 13935400 03350204 -fisher n 2 3 @ ~ + 2 1 10093658 02450829 -fisher_cat n 1 1 @ 1 0 02450829 -fisherman n 1 2 @ ~ 1 1 10093658 -fisherman's_bend n 1 1 @ 1 0 03350352 -fisherman's_knot n 1 1 @ 1 0 03350456 -fisherman's_lure n 1 3 @ ~ ; 1 0 03350602 -fishery n 1 3 @ ~ + 1 0 03350880 -fisheye_lens n 1 1 @ 1 0 04583212 -fishgig n 1 3 @ ~ #m 1 0 04271148 -fishhook n 1 2 @ #m 1 0 03351151 -fishing n 2 4 @ ~ + - 2 1 00453935 00454121 -fishing_boat n 1 2 @ ~ 1 1 03351262 -fishing_eagle n 1 1 @ 1 0 01615703 -fishing_expedition n 1 1 @ 1 0 05800838 -fishing_gear n 1 3 @ %m %p 1 0 03351434 -fishing_licence n 1 1 @ 1 0 06550381 -fishing_license n 1 1 @ 1 0 06550381 -fishing_line n 1 3 @ ~ #m 1 0 03351768 -fishing_net n 1 2 @ ~ 1 1 03352628 -fishing_permit n 1 1 @ 1 0 06550381 -fishing_pole n 1 4 @ ~ #m %p 1 0 03351979 -fishing_rig n 1 3 @ %m %p 1 0 03351434 -fishing_rod n 1 4 @ ~ #m %p 1 1 03351979 -fishing_season n 1 1 @ 1 0 15240888 -fishing_smack n 1 2 @ ~ 1 0 03351262 -fishing_tackle n 1 3 @ %m %p 1 1 03351434 -fishing_vessel n 1 2 @ ~ 1 0 03351262 -fishing_worm n 1 2 @ #m 1 0 01935395 -fishmonger n 1 1 @ 1 1 10093818 -fishnet n 1 2 @ ~ 1 0 03352628 -fishpaste n 1 1 @ 1 0 07856992 -fishplate n 1 1 @ 1 0 03352853 -fishpole_bamboo n 1 2 @ #m 1 0 12149144 -fishpond n 1 1 @ 1 0 09280913 -fishtail_bit n 1 1 @ 1 0 03353147 -fishtail_palm n 1 2 @ #m 1 0 12586989 -fishwife n 1 1 @ 1 1 10093818 -fishworm n 1 2 @ #m 1 0 01935395 -fission n 2 2 @ ~ 2 0 13481408 13481224 -fission_bomb n 1 3 @ ~ %p 1 0 02753044 -fissiparity n 2 1 @ 2 0 13481580 04705196 -fissiped n 1 1 @ 1 0 02082190 -fissiped_mammal n 1 1 @ 1 0 02082190 -fissipedia n 1 2 @ #m 1 0 02082056 -fissure n 3 4 @ ~ + ; 3 0 13907272 09258715 05223370 -fissure_of_rolando n 1 2 @ #p 1 0 05223823 -fissure_of_sylvius n 1 2 @ #p 1 0 05224080 -fissurella n 1 3 @ #m %m 1 0 01949330 -fissurella_apertura n 1 2 @ #m 1 0 01949499 -fissurellidae n 1 3 @ #m %m 1 0 01949195 -fist n 1 1 @ 1 1 05565064 -fistfight n 1 3 @ ~ + 1 1 01173826 -fistful n 1 1 @ 1 0 13767350 -fisticuffs n 2 3 @ ~ - 2 0 01173826 00445802 -fistmele n 1 1 @ 1 0 13653615 -fistula n 2 2 @ + 2 0 14263440 05548032 -fistularia n 1 3 @ #m %m 1 0 01454393 -fistulariidae n 1 3 @ #m %m 1 0 01454260 -fistulina n 1 3 @ #m %m 1 0 13053450 -fistulina_hepatica n 1 2 @ #m 1 0 13053608 -fistulinaceae n 1 3 @ #m %m 1 0 13053187 -fistulous_withers n 1 1 @ 1 0 14263440 -fit n 4 3 @ ~ + 4 3 14406303 14082788 04930307 00555325 -fitch n 1 3 @ ~ #m 1 0 02443114 -fitfulness n 1 3 @ ~ + 1 0 04770535 -fitment n 1 2 @ ; 1 0 03353281 -fitness n 4 5 ! @ ~ = + 4 2 04716864 14546432 14547036 05153795 -fits_and_starts n 1 1 @ 1 0 00555525 -fitted_sheet n 1 1 @ 1 0 03353467 -fitter n 1 2 @ + 1 0 10093908 -fitting n 4 4 @ ~ + ; 4 0 07369604 03353616 02730568 00795008 -fittingness n 1 3 @ ~ + 1 0 04716864 -fitzgerald n 3 1 @ 3 0 10972298 10972094 10971981 -five n 3 3 @ #m %m 3 1 13744521 08079852 03353783 -five-finger n 1 3 @ ~ #m 1 0 12636885 -five-fingered_maidenhair_fern n 1 1 @ 1 0 13207335 -five-flowered_gentian n 1 2 @ #m 1 0 12295796 -five-hitter n 1 1 @ 1 0 00475661 -five-point_bishop's_cap n 1 2 @ #m 1 0 12801072 -five-spot n 3 2 @ ~ 3 0 13395515 12836508 03353783 -five-star_admiral n 1 1 @ 1 0 10096016 -five_dollar_bill n 1 2 @ ~ 1 0 13395515 -five_hundred n 2 1 @ 2 0 13750712 00492309 -five_iron n 1 1 @ 1 0 03724538 -five_nations n 1 1 @ 1 0 08305277 -five_spice_powder n 1 2 @ %s 1 0 07813833 -fivepence n 1 1 @ 1 0 13391373 -fiver n 1 2 @ ~ 1 0 13395515 -fives n 1 2 @ ; 1 0 00479734 -fivesome n 2 1 @ 2 0 13744521 07987580 -fix n 5 4 @ ~ + ; 5 1 14409489 00323262 00266806 00214148 00155487 -fix-it_shop n 1 2 @ ~ 1 0 04075916 -fixation n 4 4 @ #p + ; 4 0 14503354 05700401 01260182 00276342 -fixative n 2 1 @ 2 0 14869177 03353951 -fixed-combination_drug n 1 1 @ 1 0 03354082 -fixed-cycle_operation n 1 1 @ 1 0 13481727 -fixed-point_notation n 1 1 @ 1 0 06813506 -fixed-point_number n 1 1 @ 1 0 13598128 -fixed-point_part n 1 1 @ 1 0 06813115 -fixed-point_representation_system n 1 1 @ 1 0 06813506 -fixed-width_font n 1 2 ! @ 1 0 06825996 -fixed_charge n 1 2 @ ~ 1 0 13318147 -fixed_cost n 1 2 @ ~ 1 0 13318147 -fixed_costs n 1 2 @ ~ 1 0 13318147 -fixed_disk n 1 3 @ ~ #p 1 0 03492542 -fixed_intonation n 1 1 @ 1 0 01255125 -fixed_investment_trust n 1 1 @ 1 0 13362734 -fixed_oil n 1 1 @ 1 0 14967478 -fixed_phagocyte n 1 1 @ 1 0 05451099 -fixed_star n 1 1 @ 1 0 09280995 -fixed_storage n 1 3 @ ~ ; 1 0 04058239 -fixedness n 3 4 ! @ ~ + 3 0 14006490 04777098 04740655 -fixer n 4 3 @ ~ + 4 1 10094046 14869327 10308732 03754014 -fixer-upper n 1 1 @ 1 0 03354207 -fixing n 4 5 @ ~ #p + ; 4 1 00266806 03323703 00692506 00276342 -fixing_agent n 1 2 @ ~ 1 0 14869327 -fixings n 2 4 @ ~ #p ; 2 0 07809096 03354350 -fixity n 2 3 @ ~ + 2 0 04777098 04741807 -fixture n 4 3 @ ~ + 4 1 03354613 10517405 04777098 00266806 -fizgig n 2 3 @ ~ #m 2 0 04271148 03354816 -fizz n 1 2 @ + 1 0 07919310 -fizzle n 2 2 @ ~ 2 0 07384898 07365024 -fjord n 1 2 @ ~ 1 0 09281104 -fl n 1 4 @ #m #p %p 1 0 09071690 -flab n 1 2 @ + 1 0 05269401 -flabbiness n 1 2 @ + 1 0 04939046 -flaccid_bladder n 1 1 @ 1 0 14401240 -flaccid_paralysis n 1 1 @ 1 0 14095273 -flaccidity n 1 2 @ + 1 0 04939046 -flack n 3 3 @ ~ %p 3 0 10094782 06711159 02715712 -flack_catcher n 1 1 @ 1 0 10094782 -flacourtia n 1 3 @ #m %m 1 0 12378080 -flacourtia_family n 1 3 @ #m %m 1 0 12377809 -flacourtia_indica n 1 2 @ #m 1 0 12378249 -flacourtiaceae n 1 3 @ #m %m 1 0 12377809 -flag n 7 5 @ ~ #m #p + 7 3 03354903 06493158 12411922 06875094 03940894 03355339 02158846 -flag-waver n 1 1 @ 1 1 09911849 -flag_captain n 1 1 @ 1 0 10094236 -flag_day n 1 2 @ #p 1 0 15189838 -flag_of_truce n 1 1 @ 1 1 04580126 -flag_officer n 1 3 @ ~ ; 1 0 10094584 -flag_rank n 1 2 @ ; 1 0 14431637 -flag_smut n 1 1 @ 1 0 14284193 -flag_smut_fungus n 1 3 @ ~ #m 1 0 13068917 -flag_stop n 1 1 @ 1 0 04579795 -flag_waving n 1 1 @ 1 0 07187486 -flagellant n 2 2 @ + 2 0 10094444 10094320 -flagellata n 1 3 @ #m %m 1 0 01416354 -flagellate n 1 4 @ ~ #m + 1 0 01416585 -flagellate_protozoan n 1 3 @ ~ #m 1 0 01416585 -flagellated_cell n 1 2 @ ~ 1 0 01907149 -flagellated_protozoan n 1 3 @ ~ #m 1 1 01416585 -flagellation n 2 3 @ ~ + 2 0 01163316 01163047 -flagellum n 2 3 @ #p + 2 0 04149968 01458302 -flageolet n 2 2 @ ~ 2 0 07727741 03355468 -flagfish n 1 2 @ #m 1 0 01447946 -flagging n 2 1 @ 2 0 07956112 03355641 -flagon n 1 1 @ 1 0 03355768 -flagpole n 2 1 @ 2 0 04053767 03355925 -flagroot n 1 4 @ #m %s %p 1 0 11780930 -flagship n 2 1 @ 2 0 03356158 03356038 -flagstaff n 2 2 @ #p 2 0 09057930 03355925 -flagstone n 1 1 @ 1 0 03355339 -flagyl n 1 2 @ ; 1 0 03757428 -flail n 1 2 @ + 1 1 03356279 -flair n 3 1 @ 3 2 05624461 04812871 13862644 -flak n 3 3 @ ~ %p 3 0 10094782 06711159 02715712 -flak_catcher n 1 1 @ 1 0 10094782 -flake n 3 6 @ ~ #s #p %s + 3 0 11509066 10042845 09222051 -flakiness n 2 2 @ + 2 0 14397889 04939872 -flambeau n 1 1 @ 1 0 03356446 -flamboyance n 1 2 @ + 1 0 04699936 -flamboyant n 1 3 @ #m + 1 0 12494794 -flamboyant_tree n 1 2 @ #m 1 0 12490054 -flame n 1 3 @ ~ + 1 1 13480848 -flame-flower n 2 3 @ ~ #m 2 0 12437513 11862835 -flame-out n 2 2 @ ; 2 0 07422629 07318299 -flame_bush n 1 2 @ #m 1 0 12572188 -flame_cell n 1 2 @ #p 1 0 01458509 -flame_durrajong n 1 1 @ 1 0 12196336 -flame_fish n 1 1 @ 1 0 02572484 -flame_flower n 2 3 @ ~ #m 2 0 12437513 11862835 -flame_nettle n 1 3 @ ~ #m 1 0 12844939 -flame_pea n 1 2 @ #m 1 0 12515393 -flame_stitch n 1 1 @ 1 0 02792822 -flame_tokay n 1 1 @ 1 0 07760673 -flame_tree n 5 2 @ #m 5 0 12738599 12494794 12196527 12196336 11757851 -flamefish n 1 1 @ 1 0 02572484 -flameflower n 2 3 @ ~ #m 2 0 12437513 11862835 -flamen n 1 1 @ 1 0 10094954 -flamenco n 2 1 @ 2 0 07055401 00533036 -flamethrower n 1 1 @ 1 0 03356559 -flaming n 1 3 @ ~ + 1 0 13480848 -flaming_poppy n 1 1 @ 1 0 11908549 -flamingo n 1 2 @ #m 1 0 02007558 -flamingo_flower n 1 1 @ 1 0 11784126 -flamingo_plant n 1 1 @ 1 0 11784126 -flaminian_way n 1 2 @ #p 1 0 03356670 -flaminius n 1 1 @ 1 0 10972495 -flammability n 1 2 @ + 1 0 04712568 -flammulina n 1 3 @ #m %m 1 0 13022078 -flammulina_velutipes n 1 2 @ #m 1 0 13022210 -flan n 1 1 @ 1 0 07611267 -flanders n 1 2 @ #p 1 0 08849549 -flanders_poppy n 1 2 @ #m 1 0 11902200 -flange n 1 1 @ 1 0 03356858 -flank n 4 6 @ ~ #p %p + ; 4 1 08482113 13897377 07657757 02464223 -flank_steak n 1 2 @ #p 1 0 07658461 -flanker n 2 4 @ #m + ; 2 0 10095265 10095061 -flanker_back n 1 1 @ 1 0 10095265 -flannel n 3 2 @ ; 3 1 03356982 04554523 03357081 -flannel-cake n 1 2 @ ~ 1 0 07640203 -flannel_bush n 1 2 @ #m 1 0 12198793 -flannel_cake n 1 2 @ ~ 1 0 07640203 -flannel_leaf n 1 3 @ ~ #m 1 0 12888906 -flannel_mullein n 1 1 @ 1 0 12889713 -flannelbush n 1 2 @ #m 1 0 12198793 -flannelette n 1 2 @ ~ 1 0 03357267 -flannery_o'connor n 1 1 @ 1 0 11211987 -flap n 5 4 @ ~ #p + 5 1 03357376 14403772 07439284 05389762 03357716 -flapcake n 1 2 @ ~ 1 0 07640203 -flapjack n 1 2 @ ~ 1 0 07640203 -flapper n 1 1 @ 1 1 10095420 -flapping n 1 2 @ + 1 0 07439284 -flaps n 1 3 @ ~ #p 1 0 03357716 -flare n 11 4 @ ~ + ; 11 3 13862644 13481883 06874930 14227357 14081789 11510223 11454310 07014997 03357893 00561376 00150097 -flare-up n 1 3 @ ~ + 1 0 07434942 -flare_pass n 1 1 @ 1 0 00561376 -flare_path n 1 1 @ 1 0 03358046 -flare_star n 1 2 @ ~ 1 0 09281252 -flash n 10 4 @ ~ #p + 10 4 07412092 04953186 07287088 05808442 15247110 06889330 06874930 06682494 03358380 03358172 -flash-forward n 1 3 ! @ ; 1 0 06401787 -flash_bulb n 1 2 @ #p 1 0 03358172 -flash_butt_welding n 1 1 @ 1 0 00150379 -flash_camera n 1 2 @ %p 1 0 03358726 -flash_card n 1 1 @ 1 0 06793959 -flash_flood n 1 2 @ ~ 1 1 11455092 -flash_in_the_pan n 1 1 @ 1 0 10095550 -flash_lamp n 1 2 @ #p 1 0 03358172 -flash_memory n 1 1 @ 1 0 03359436 -flash_point n 2 1 @ 2 0 14033802 05013809 -flash_welding n 1 1 @ 1 0 00150379 -flashback n 2 4 ! @ + ; 2 1 06401526 07343713 -flashboard n 1 1 @ 1 0 03358593 -flashboarding n 1 1 @ 1 0 03358593 -flashbulb n 1 2 @ #p 1 0 03358172 -flashcard n 1 1 @ 1 0 06793959 -flasher n 3 3 @ ~ + 3 0 10070942 03358841 02852173 -flashflood n 1 2 @ ~ 1 0 11455092 -flashgun n 1 2 @ #p 1 0 03358172 -flashiness n 1 2 @ + 1 0 04818700 -flashing n 2 2 @ + 2 1 07287088 03359008 -flashlight n 1 3 @ ~ %p 1 1 03359137 -flashlight_battery n 1 2 @ #p 1 1 03359285 -flashlight_fish n 2 2 @ #m 2 0 01452345 01451863 -flashover n 1 1 @ 1 0 11454470 -flashpoint n 2 1 @ 2 0 14033802 05013809 -flask n 2 2 @ ~ 2 1 03359566 13767146 -flaskful n 1 1 @ 1 0 13767146 -flat n 7 5 @ ~ #p %p + 7 2 09281411 03360038 06866919 03360731 03359950 03359755 02726305 -flat-coated_retriever n 1 1 @ 1 0 02099267 -flat-leaf_parsley n 1 1 @ 1 0 12942572 -flat-topped_white_aster n 1 1 @ 1 0 11936199 -flat_arch n 1 1 @ 1 0 03360133 -flat_bench n 1 1 @ 1 1 03360622 -flat_bone n 1 2 @ #p 1 0 07659308 -flat_cap n 1 1 @ 1 0 03049924 -flat_coat n 1 2 @ ~ 1 0 03360845 -flat_file n 1 1 @ 1 0 03361109 -flat_knot n 1 2 @ ~ 1 0 04067353 -flat_panel_display n 1 2 @ #p 1 0 03361380 -flat_pea n 2 2 @ #m 2 0 12561897 12541805 -flat_solid n 1 2 @ ~ 1 0 04188643 -flat_tip_screwdriver n 1 1 @ 1 0 03361683 -flat_tire n 1 1 @ 1 0 03359950 -flat_wash n 1 1 @ 1 0 03362119 -flatbed n 2 1 @ 2 0 03360731 03360300 -flatbed_press n 1 1 @ 1 0 03360431 -flatboat n 1 2 @ ~ 1 0 02792552 -flatbread n 1 2 @ ~ 1 0 07682624 -flatbrod n 1 1 @ 1 0 07683265 -flatcar n 1 1 @ 1 0 03360731 -flatfish n 2 3 @ ~ #m 2 0 07790400 02657368 -flatfoot n 2 1 @ 2 0 10095664 05576421 -flathead n 2 2 @ #m 2 0 02649546 02620167 -flathead_catfish n 1 2 @ #m 1 0 02520147 -flatiron n 1 1 @ 1 0 03361194 -flatlet n 1 2 @ + 1 0 03361297 -flatmate n 1 1 @ 1 0 10095769 -flatness n 5 2 @ + 5 1 05063349 07069747 05717953 04956110 04635953 -flats n 1 2 @ ; 1 1 03361550 -flatterer n 1 3 @ ~ + 1 0 10095869 -flattery n 1 3 @ ~ + 1 1 06695579 -flattop n 2 2 @ %p 2 0 05260821 02687172 -flatulence n 2 2 @ + 2 0 14035695 07090573 -flatulency n 1 2 @ + 1 0 14035695 -flatus n 1 1 @ 1 1 00839597 -flatware n 2 2 @ ~ 2 0 03361945 03361837 -flatwork n 1 1 @ 1 0 03362119 -flatworm n 1 4 @ ~ #m %p 1 0 01924916 -flaubert n 1 1 @ 1 0 10972697 -flaunt n 1 2 @ + 1 0 06890846 -flautist n 1 2 @ + 1 1 10098245 -flavian_dynasty n 1 1 @ 1 0 08154548 -flavin n 1 2 @ #s 1 0 14870924 -flavius_claudius_julianus n 1 1 @ 1 0 11094312 -flavius_josephus n 1 1 @ 1 0 11092292 -flavius_theodosius n 1 1 @ 1 0 11338172 -flavius_valerius_constantinus n 1 1 @ 1 0 10907962 -flaviviridae n 1 3 @ #m %m 1 0 01332653 -flavivirus n 1 3 @ ~ #m 1 0 01332795 -flavone n 1 1 @ 1 0 14869513 -flavonoid n 1 1 @ 1 0 14869658 -flavor n 3 4 @ ~ + ; 3 2 14526182 05715864 05844282 -flavorer n 1 3 @ ~ + 1 0 07809368 -flavoring n 1 3 @ ~ + 1 0 07809368 -flavorlessness n 1 2 @ + 1 0 04997032 -flavorsomeness n 1 2 @ ~ 1 0 04995940 -flavour n 3 4 @ ~ + ; 3 0 14526182 05844282 05715864 -flavourer n 1 3 @ ~ + 1 0 07809368 -flavouring n 1 3 @ ~ + 1 0 07809368 -flavourlessness n 1 2 @ + 1 0 04997032 -flavoursomeness n 1 2 @ ~ 1 0 04995940 -flaw n 3 3 @ ~ + 3 1 14464203 14463826 14463170 -flawlessness n 1 4 @ ~ = + 1 0 14459422 -flax n 2 3 @ #m #s 2 0 14869829 12486574 -flax_family n 1 2 @ %m 1 0 12486254 -flax_rust n 1 2 @ #m 1 0 13064111 -flax_rust_fungus n 1 2 @ #m 1 0 13064111 -flaxedil n 1 2 @ ; 1 0 14859622 -flaxseed n 1 1 @ 1 0 15086247 -flaxseed_oil n 1 2 @ %s 1 0 15086352 -flea n 1 3 @ ~ #m 1 1 02186153 -flea_beetle n 1 1 @ 1 0 02169705 -flea_bite n 2 1 @ 2 0 14287823 04711919 -flea_market n 1 1 @ 1 1 08571898 -fleabag n 1 1 @ 1 0 03362223 -fleabane n 3 3 @ ~ #m 3 0 12005656 11965627 11956348 -fleapit n 1 2 @ ; 1 0 03362293 -fleawort n 1 1 @ 1 0 12599874 -flecainide n 1 1 @ 1 0 03362393 -fleck n 2 3 @ ~ + 2 1 09222051 04682462 -flection n 2 1 @ 2 0 14035909 07366971 -fledgeling n 2 3 @ ~ + 2 0 10355449 01504179 -fledgling n 2 3 @ ~ + 2 1 10355449 01504179 -fleece n 4 3 @ ~ + 4 0 15104752 14763508 03362639 01899593 -fleer n 2 2 @ + 2 0 10115082 06716117 -fleet n 4 5 @ ~ #m #p %m 4 1 08293831 08293490 08293336 08292756 -fleet_admiral n 1 1 @ 1 0 10096016 -fleet_ballistic_missile_submarine n 1 1 @ 1 0 03362771 -fleet_street n 2 2 @ #p 2 0 08572020 06266633 -fleetingness n 1 2 @ + 1 0 05055689 -fleetness n 1 2 @ + 1 0 05059017 -fleming n 3 2 @ #m 3 0 10972985 10972825 09706132 -flemish n 2 2 @ + 2 0 08483788 06952705 -flemish_dialect n 1 1 @ 1 0 06952705 -flesh n 3 5 @ ~ #p %s + 3 2 05268112 05217168 13096035 -flesh_fly n 1 2 @ #m 1 0 02192513 -flesh_wound n 1 1 @ 1 0 07340592 -fleshiness n 1 3 @ ~ + 1 0 05000342 -fletc n 1 2 @ #p 1 0 08137028 -fletcher n 1 1 @ 1 0 10973164 -fleur-de-lis n 2 4 @ ~ #m ; 2 0 12411922 03362890 -fleur-de-lys n 1 2 @ ; 1 0 03362890 -flex n 1 2 @ + 1 0 00405628 -flexeril n 1 2 @ ; 1 0 03155334 -flexibility n 3 5 ! @ ~ = + 3 2 05022457 04659287 04905188 -flexible_joint n 1 4 @ ~ #p %p 1 0 03521076 -flexible_sigmoidoscope n 1 1 @ 1 0 04217387 -flexible_sigmoidoscopy n 1 1 @ 1 0 00643208 -flexibleness n 2 3 @ ~ + 2 0 05022457 04659287 -flexion n 3 3 ! @ ~ 3 0 14035909 07366971 00405360 -flexor n 1 2 ! @ 1 0 05296503 -flexor_muscle n 1 1 @ 1 0 05296503 -flexure n 3 3 @ ~ + 3 0 14035909 13907415 00405360 -flibbertigibbet n 1 1 @ 1 0 10096126 -flick n 3 5 @ ~ %p + - 3 1 07338358 06799688 06613686 -flick-knife n 1 1 @ 1 0 04373089 -flick_knife n 1 1 @ 1 0 04373089 -flicker n 3 4 @ ~ #m + 3 0 07412310 01839598 00348571 -flickertail n 1 1 @ 1 0 02358712 -flier n 3 3 @ ~ + 3 0 10096217 09826204 07250339 -flies n 1 2 @ ; 1 0 08572162 -flight n 9 3 @ ~ + 9 6 08220534 00302394 03363059 00058743 08220440 05625210 11481334 08220620 00301192 -flight_attendant n 1 2 @ ~ 1 0 10655594 -flight_control n 1 1 @ 1 0 00804535 -flight_deck n 1 2 @ #p 1 0 03363216 -flight_engineer n 1 1 @ 1 0 10096375 -flight_feather n 1 3 @ ~ #p 1 0 02468864 -flight_indicator n 1 1 @ 1 0 02745611 -flight_line n 1 2 @ #p 1 0 08594543 -flight_maneuver n 1 2 @ ~ 1 0 00170844 -flight_of_stairs n 1 1 @ 1 1 03363059 -flight_of_steps n 1 1 @ 1 0 03363059 -flight_path n 2 2 @ ~ 2 0 08493705 08492546 -flight_simulator n 1 2 @ ~ 1 0 03363363 -flight_strip n 1 3 @ ~ %p 1 0 02693070 -flight_surgeon n 1 1 @ 1 0 10096508 -flightiness n 1 2 @ + 1 0 04671841 -flightless_bird n 1 2 @ ~ 1 0 01517565 -flimflam n 1 3 @ ~ + 1 0 00779248 -flimsiness n 1 2 @ + 1 0 05041320 -flimsy n 1 2 @ + 1 0 14969254 -flinch n 1 2 @ + 1 0 00865471 -flinders n 2 2 @ ; 2 0 10973339 07956250 -flindersia n 1 3 @ #m %m 1 0 12698283 -flindersia_australis n 1 1 @ 1 0 12698598 -flindersia_schottiana n 1 1 @ 1 0 12698774 -flindosa n 1 1 @ 1 0 12698598 -flindosy n 1 1 @ 1 0 12698598 -fling n 3 3 @ ~ + 3 0 00787061 00510475 00105164 -flint n 3 4 @ ~ #p + 3 1 14871078 09281545 09100690 -flint_corn n 1 1 @ 1 0 12145148 -flint_glass n 1 1 @ 1 0 14880425 -flint_maize n 1 1 @ 1 0 12145148 -flint_river n 1 2 @ #p 1 0 09281545 -flinthead n 1 2 @ #m 1 0 02004855 -flintlock n 2 3 @ #p %p 2 0 03363749 03363549 -flintstone n 1 1 @ 1 0 14871268 -flip n 6 4 @ ~ + ; 6 1 00439484 07914887 01246206 01246086 00443803 00105820 -flip-flop n 4 3 @ ~ + 4 0 05789808 03364008 03363887 00439749 -flip_chart n 1 1 @ 1 0 07002146 -flip_side n 1 2 @ ; 1 0 13855828 -flippancy n 1 2 @ + 1 0 04648866 -flipper n 2 3 @ #p + 2 0 03364156 02465084 -flirt n 2 2 @ + 2 0 09965134 00512522 -flirtation n 1 2 @ + 1 0 00512522 -flirting n 1 2 @ + 1 0 00512522 -flit n 2 3 @ + ; 2 0 00334356 00168911 -flitch n 2 3 @ #p %p 2 0 07791937 07669211 -flittering_scotoma n 1 1 @ 1 0 14556879 -flnc n 1 2 @ ; 1 0 08036005 -flo_ziegfeld n 1 1 @ 1 0 11406700 -float n 7 3 @ ~ + 7 0 15294085 13336368 07923034 03364775 03364599 03364340 02467581 -floatation n 2 2 @ + 2 0 11527967 01100147 -floater n 8 3 @ ~ + 8 0 14365119 13415381 10744544 10096855 10096725 10096620 09281777 06526124 -floating n 1 3 @ ~ + 1 0 00443231 -floating-moss n 1 2 @ #m 1 0 12959074 -floating-point_notation n 1 1 @ 1 0 06813700 -floating-point_number n 1 1 @ 1 0 13598013 -floating-point_operation n 1 1 @ 1 0 13481994 -floating-point_representation_system n 1 1 @ 1 0 06813700 -floating_bridge n 1 2 @ %p 1 0 03981760 -floating_dock n 1 1 @ 1 0 03364937 -floating_dry_dock n 1 1 @ 1 0 03364937 -floating_fern n 3 2 @ #m 3 0 13171975 13171797 12959538 -floating_mine n 1 2 @ ~ 1 0 03365078 -floating_policy n 1 1 @ 1 0 06526124 -floating_voter n 1 1 @ 1 0 10683927 -floatplane n 1 1 @ 1 0 03365231 -floc n 1 1 @ 1 1 14585960 -floccose_chanterelle n 1 2 @ #m 1 0 13004640 -flocculation n 1 2 @ + 1 1 13482187 -floccule n 1 1 @ 1 0 14585960 -flock n 5 4 @ ~ %m + 5 4 07991272 07990956 13774404 08274565 07991169 -flodden n 2 3 @ #p ; 2 0 08884513 01278692 -floe n 1 1 @ 1 0 09309168 -flogger n 1 1 @ 1 0 10096964 -flogging n 1 3 @ ~ + 1 0 01163047 -flood n 6 4 @ ~ #p + 6 5 11454591 13775706 03365374 00329819 01257542 07403030 -flood_control n 1 2 @ ; 1 0 00804708 -flood_lamp n 1 2 @ #p 1 0 03365374 -flood_plain n 1 1 @ 1 0 09281914 -flood_tide n 2 2 ! @ 2 0 07417043 07403030 -flooded_gum n 1 2 @ ~ 1 0 12335483 -floodgate n 2 2 @ #p 2 0 06247867 04244615 -floodhead n 1 1 @ 1 1 11455236 -flooding n 1 2 @ + 1 0 00702418 -floodlight n 1 3 @ #p + 1 0 03365374 -floodplain n 1 1 @ 1 0 09281914 -floor n 10 4 @ ~ #p + 10 5 03365592 03365991 06658118 09282208 09282084 09282363 07976596 05176341 03366464 03366301 -floor_board n 1 1 @ 1 1 03366630 -floor_cover n 1 2 @ ~ 1 0 03366823 -floor_covering n 1 2 @ ~ 1 1 03366823 -floor_joist n 1 1 @ 1 0 03366974 -floor_lamp n 1 1 @ 1 0 03367059 -floor_leader n 1 1 @ 1 0 10097154 -floor_plan n 1 2 @ ~ 1 1 03367147 -floor_show n 1 1 @ 1 0 00520672 -floor_wax n 1 1 @ 1 0 14871464 -floorboard n 2 2 @ #p 2 1 03366630 03366721 -flooring n 2 3 @ ~ #p 2 1 03365592 14871370 -floorshow n 1 1 @ 1 0 00520672 -floorwalker n 1 1 @ 1 0 10097262 -floozie n 1 1 @ 1 0 10663315 -floozy n 1 1 @ 1 0 10663315 -flop n 4 4 @ ~ + ; 4 0 13481994 10097477 07365024 00327510 -flophouse n 1 1 @ 1 0 03367321 -floppy n 1 2 @ #p 1 0 03209910 -floppy_disk n 1 2 @ #p 1 0 03209910 -flora n 2 8 ! @ ~ #m %p + ; - 2 0 08436759 00017222 -floral_arrangement n 1 2 @ ~ 1 0 03368141 -floral_cup n 1 1 @ 1 0 11690254 -floral_envelope n 1 4 @ ~ #p %p 1 0 11692265 -floral_leaf n 1 3 @ ~ #p 1 0 11690893 -floreal n 1 2 @ #p 1 0 15177091 -florence n 2 3 @ #p %m 2 1 08812166 09138676 -florence_fennel n 2 3 @ #p %p 2 0 12939479 07817871 -florence_nightingale n 1 1 @ 1 0 11207410 -florentine n 1 2 @ #m 1 0 10097590 -florentine_iris n 1 2 @ %m 1 0 12413419 -florenz_ziegfeld n 1 1 @ 1 0 11406700 -florescence n 1 1 @ 1 0 13439570 -florest's_cineraria n 1 2 @ #m 1 0 12001924 -floret n 1 1 @ 1 0 11669786 -florey n 1 1 @ 1 0 10973497 -floriculture n 1 2 @ + 1 0 00921399 -florida n 1 4 @ #m #p %p 1 1 09071690 -florida_arrowroot n 1 1 @ 1 0 11602091 -florida_bean n 1 2 @ %p 1 0 12550408 -florida_gallinule n 1 2 @ #m 1 0 02016659 -florida_key n 1 2 @ #p 1 0 09325395 -florida_pompano n 1 1 @ 1 0 02579762 -florida_selaginella n 1 1 @ 1 0 13225617 -florida_smoothhound n 1 2 @ #m 1 0 01492860 -florida_strangler_fig n 1 2 @ #m 1 0 12402051 -florida_strap_fern n 1 1 @ 1 0 13174823 -florida_water_rat n 1 2 @ #m 1 0 02338449 -florida_yew n 1 2 @ #m 1 0 11662585 -floridian n 1 1 @ 1 1 09742101 -floridity n 1 1 @ 1 0 04699936 -floridness n 1 2 @ + 1 0 04699936 -florilegium n 1 1 @ 1 0 06592699 -florin n 2 2 @ %p 2 0 13680146 13679855 -florio n 1 1 @ 1 0 10973722 -florist n 2 1 @ 2 2 10097705 03367410 -florist's_chrysanthemum n 1 1 @ 1 0 11961100 -florist's_gloxinia n 1 2 @ #m 1 0 12833526 -florist's_willow n 1 2 @ #m 1 0 12727518 -florist_shop n 1 1 @ 1 0 03367410 -florists'_chrysanthemum n 1 1 @ 1 0 11961100 -flory n 1 1 @ 1 0 10973873 -floss n 2 2 @ + 2 0 03367545 03175843 -flotation n 2 2 @ + 2 0 11527967 01100147 -flotation_device n 1 2 @ ~ 1 0 03663531 -flotilla n 2 1 @ 2 0 03367740 03367663 -flotsam n 1 1 @ 1 0 03367875 -flounce n 2 3 @ ~ + 2 0 03397532 00289267 -flounder n 2 2 @ ~ 2 0 07790601 02657694 -flour n 1 4 @ ~ #s + 1 1 07569106 -flour_beetle n 1 2 @ #m 1 0 02181724 -flour_bin n 1 1 @ 1 0 03367969 -flour_corn n 1 1 @ 1 0 12145325 -flour_mill n 1 1 @ 1 0 03368048 -flour_weevil n 1 2 @ #m 1 0 02181724 -flourish n 5 4 @ ~ + ; 5 1 06890470 06890577 06890373 06890254 06856884 -flouter n 1 2 @ + 1 0 10561320 -flow n 7 3 @ ~ + 7 6 07405893 15277730 00329227 13482330 14005892 08461595 13513747 -flow_chart n 1 1 @ 1 0 06582085 -flow_diagram n 1 1 @ 1 0 06582085 -flow_of_air n 1 1 @ 1 0 07406601 -flow_rate n 1 2 @ ~ 1 1 15277730 -flow_sheet n 1 1 @ 1 0 06582085 -flowage n 3 2 @ + 3 0 13482580 09282534 01257542 -flowchart n 1 1 @ 1 0 06582085 -flower n 3 5 @ ~ #p %p + 3 2 11669921 11669335 15295045 -flower-cup_fern n 1 1 @ 1 0 13202355 -flower-of-an-hour n 1 1 @ 1 0 12180456 -flower_arrangement n 1 2 @ ~ 1 0 03368141 -flower_bed n 1 2 @ ~ 1 0 03368352 -flower_bud n 1 3 @ ~ %p 1 0 13165409 -flower_chain n 1 2 @ ~ 1 0 03368508 -flower_child n 1 2 @ #m 1 0 10176475 -flower_cluster n 1 2 @ ~ 1 0 13132338 -flower_garden n 1 2 @ ~ 1 1 03368637 -flower_gardening n 1 1 @ 1 0 00921399 -flower_girl n 2 2 @ #m 2 0 10097995 10097842 -flower_head n 1 2 @ %p 1 0 11674105 -flower_people n 1 2 @ %m 1 0 08289841 -flower_petal n 1 2 @ #p 1 0 11690455 -flower_power n 1 1 @ 1 0 05752296 -flower_stalk n 1 2 @ ~ 1 0 13130726 -flower_store n 1 1 @ 1 0 03367410 -flowerbed n 1 2 @ ~ 1 1 03368352 -floweret n 1 1 @ 1 0 11669786 -flowering n 2 2 @ + 2 2 13439570 13571217 -flowering_almond n 2 1 @ 2 0 12650379 12646740 -flowering_ash n 3 1 @ 3 0 12305293 12304572 12304420 -flowering_cherry n 1 2 @ ~ 1 0 12649065 -flowering_crab n 2 1 @ 2 0 12635955 12635532 -flowering_fern n 2 3 @ ~ #m 2 0 12961879 12953206 -flowering_glume n 1 1 @ 1 0 13155451 -flowering_hazel n 1 2 @ #m 1 0 12315598 -flowering_maple n 1 2 @ #m 1 0 12172906 -flowering_onion n 1 1 @ 1 0 12434483 -flowering_plant n 1 4 @ ~ #m %p 1 0 11665372 -flowering_quince n 1 3 @ ~ #m 1 0 12624381 -flowering_raspberry n 1 1 @ 1 0 12657509 -flowering_shrub n 1 3 @ ~ #m 1 0 13120003 -flowering_spurge n 1 2 @ #m 1 0 12919195 -flowering_stone n 1 2 @ #m 1 0 11820463 -flowering_tobacco n 1 1 @ 1 0 12907671 -flowering_tree n 1 3 @ ~ #m 1 0 13109733 -flowering_wintergreen n 1 1 @ 1 0 12705698 -flowerpot n 1 2 @ ~ 1 0 03991062 -flowers-of-an-hour n 1 1 @ 1 0 12180456 -flowers_of_zinc n 1 2 @ #s 1 0 15108087 -flowing n 1 3 @ ~ + 1 1 07405893 -floxuridine n 1 1 @ 1 0 03368750 -floyd_bennett n 1 1 @ 1 0 10845248 -flu n 1 2 @ ~ 1 1 14122497 -flub n 1 3 @ ~ + 1 0 00074790 -fluctuation n 3 3 @ ~ + 3 0 07346057 07337390 04770911 -flue n 3 3 @ ~ #p 3 0 03369640 03369011 03368878 -flue_pipe n 1 1 @ 1 0 03369011 -flue_stop n 1 1 @ 1 0 03369178 -fluegelhorn n 1 1 @ 1 0 03369276 -fluency n 3 3 ! @ + 3 0 07069210 05642947 04651195 -fluent_aphasia n 1 1 @ 1 0 14099172 -fluff n 3 2 @ + 3 1 14757754 02774502 00076072 -fluffiness n 1 2 @ + 1 0 04938838 -fluffy_omelet n 1 1 @ 1 0 07843220 -flugelhorn n 1 1 @ 1 0 03369276 -fluid n 2 3 @ ~ + 2 2 14939900 14939445 -fluid_drachm n 2 3 @ #p %p 2 0 13621190 13618629 -fluid_dram n 2 3 @ #p %p 2 0 13621190 13618629 -fluid_drive n 1 2 @ #p 1 0 03369407 -fluid_flywheel n 1 1 @ 1 0 03369512 -fluid_mechanics n 1 2 @ ~ 1 0 06113009 -fluid_ounce n 2 3 @ #p %p 2 0 13621418 13618849 -fluidity n 2 2 @ + 2 0 04937043 04734272 -fluidness n 2 2 @ + 2 0 04937043 04734272 -fluidounce n 2 3 @ #p %p 2 0 13621418 13618849 -fluidram n 2 3 @ #p %p 2 0 13621190 13618629 -fluke n 5 5 @ ~ #m #p + 5 0 11463746 03369767 03369640 02158619 01925695 -flume n 2 1 @ 2 0 09295946 03369866 -flummery n 2 1 @ 2 0 07617344 06609403 -flunitrazepan n 1 2 @ ~ 1 0 03370020 -flunk n 1 1 @ 1 0 00066901 -flunkey n 2 2 @ ~ 2 0 10242573 10098092 -flunky n 2 2 @ ~ 2 0 10242573 10098092 -fluor n 1 2 @ %s 1 0 14675356 -fluorapatite n 1 2 @ %s 1 0 14675216 -fluorescein n 1 3 @ ~ ; 1 1 14987695 -fluorescein_isocyanate n 1 1 @ 1 0 14988150 -fluorescein_isothiocyanate n 1 1 @ 1 0 14988150 -fluoresceine n 1 3 @ ~ ; 1 0 14987695 -fluorescence n 1 3 @ ~ + 1 1 11458102 -fluorescence_microscopy n 1 2 @ ~ 1 0 00645843 -fluorescent n 1 1 @ 1 0 03370260 -fluorescent_dye n 1 3 @ ~ ; 1 0 14987695 -fluorescent_fixture n 1 1 @ 1 0 03370260 -fluorescent_lamp n 1 1 @ 1 0 03370387 -fluoridation n 1 2 @ + 1 0 00365012 -fluoride n 1 3 @ ~ + 1 1 14871601 -fluoridisation n 1 2 @ + 1 0 00365012 -fluoridization n 1 2 @ + 1 0 00365012 -fluorine n 1 2 @ #s 1 1 14637507 -fluorite n 1 2 @ %s 1 0 14675356 -fluoroboric_acid n 1 1 @ 1 0 14871791 -fluoroboride n 1 1 @ 1 1 14871883 -fluorocarbon n 1 3 @ ~ ; 1 0 14871968 -fluorocarbon_plastic n 1 1 @ 1 0 14872226 -fluorochrome n 1 2 @ ~ 1 0 14988337 -fluoroform n 1 1 @ 1 0 14620654 -fluoroscope n 1 1 @ 1 0 03370646 -fluoroscopy n 1 1 @ 1 0 00903201 -fluorosis n 1 1 @ 1 0 14068528 -fluorouracil n 1 1 @ 1 0 03370821 -fluorspar n 1 2 @ %s 1 0 14675356 -fluosilicate n 1 1 @ 1 0 14872325 -fluosilicic_acid n 1 1 @ 1 0 14872408 -fluoxetine n 1 1 @ 1 0 03370927 -fluoxetine_hydrocholoride n 1 1 @ 1 0 03370927 -fluphenazine n 1 1 @ 1 0 03371258 -flurazepam n 1 1 @ 1 0 03371363 -flurazepam_hydrochloride n 1 1 @ 1 0 03371363 -flurbiprofen n 1 2 @ %s 1 0 03371532 -flurry n 2 2 @ + 2 2 00555138 11508578 -flush n 7 3 @ ~ + 7 2 15295045 14050871 14336169 07958196 07528470 07439570 00118268 -flush_toilet n 1 2 @ %p 1 0 03371875 -flushless_toilet n 1 1 @ 1 0 03371728 -fluster n 1 2 @ + 1 0 04904996 -flute n 3 3 @ ~ + 3 1 03372029 03372549 03372355 -flute_glass n 1 1 @ 1 0 03372549 -flute_player n 1 1 @ 1 0 10098245 -fluting n 1 2 @ + 1 0 03372355 -flutist n 1 2 @ + 1 0 10098245 -flutter n 4 3 @ ~ + 4 1 00348571 14111355 13977366 07439284 -flutter_kick n 1 2 @ #p 1 0 00574430 -fluttering n 1 2 @ + 1 0 07439284 -fluvastatin n 1 1 @ 1 0 03372656 -flux n 8 4 @ ~ + ; 8 2 15278132 07407970 14860102 14044592 14033917 11477384 05089199 00195938 -flux_applicator n 1 1 @ 1 0 03372822 -flux_density n 1 2 @ ; 1 0 05089199 -flux_density_unit n 1 2 @ ~ 1 0 13633851 -flux_unit n 1 2 @ ~ 1 0 13634033 -fluxing_lime n 1 2 @ %s 1 0 14789885 -fluxion n 1 2 @ + 1 0 07407970 -fluxmeter n 1 1 @ 1 0 03372933 -fly n 5 7 @ ~ #m #p %p + ; 5 4 02190166 04412097 03373060 00128638 03373237 -fly-by n 1 2 @ ; 1 0 00303297 -fly-by-night n 1 2 @ + 1 0 10098388 -fly-fishing n 1 1 @ 1 0 00454395 -fly_agaric n 1 2 @ #m 1 0 13003061 -fly_ash n 1 1 @ 1 0 14769331 -fly_ball n 1 3 @ ~ ; 1 0 00128638 -fly_bridge n 1 1 @ 1 0 03373752 -fly_casting n 1 1 @ 1 0 00454983 -fly_floor n 1 1 @ 1 0 03373415 -fly_front n 1 2 @ #p 1 0 03373060 -fly_gallery n 1 1 @ 1 0 03373415 -fly_honeysuckle n 1 3 @ ~ #m 1 0 12674685 -fly_in_the_ointment n 1 1 @ 1 1 04712001 -fly_orchid n 2 2 @ #m 2 0 12085664 12075010 -fly_poison n 1 2 @ #m 1 0 12439154 -fly_rod n 1 1 @ 1 0 03374372 -fly_sheet n 1 2 @ #p 1 0 04412097 -fly_tent n 1 2 @ %p 1 0 03374473 -flybridge n 1 1 @ 1 0 03373752 -flycatcher n 2 3 @ ~ #m 2 0 01555809 01547832 -flycatching_warbler n 1 2 @ ~ 1 0 01568132 -flyer n 3 3 @ ~ + 3 1 07250339 10096217 09826204 -flying n 1 3 @ ~ + 1 0 00302394 -flying_bird n 1 2 @ %p 1 0 01517966 -flying_boat n 1 1 @ 1 0 03373611 -flying_bomb n 1 1 @ 1 0 02929923 -flying_bridge n 1 1 @ 1 0 03373752 -flying_buttress n 1 1 @ 1 0 03373943 -flying_carpet n 1 2 @ ; 1 0 03374102 -flying_cat n 2 3 @ ~ #m 2 0 02502514 02362569 -flying_colors n 1 2 @ ; 1 0 00065418 -flying_colours n 1 2 @ ; 1 0 00065418 -flying_dragon n 1 2 @ #m 1 0 01688589 -flying_drainpipe n 1 1 @ 1 0 04051269 -flying_dutchman n 2 1 @ 2 0 09547353 05898035 -flying_field n 1 4 @ ~ #p %p 1 0 02687992 -flying_fish n 1 3 @ ~ #m 1 0 02550460 -flying_fox n 1 2 @ #m 1 0 02140049 -flying_gecko n 1 2 @ #m 1 0 01675352 -flying_gurnard n 1 2 @ #m 1 0 02652132 -flying_jib n 1 1 @ 1 0 03374282 -flying_lemur n 1 3 @ ~ #m 1 0 02502514 -flying_lizard n 1 2 @ #m 1 0 01688589 -flying_mare n 1 1 @ 1 0 00447879 -flying_marmot n 1 2 @ #m 1 0 02362569 -flying_mouse n 1 2 @ #m 1 0 01882508 -flying_opossum n 1 3 @ ~ #m 1 0 01882125 -flying_phalanger n 1 3 @ ~ #m 1 0 01882125 -flying_reptile n 1 3 @ ~ #m 1 0 01722998 -flying_robin n 1 2 @ #m 1 0 02652132 -flying_saucer n 1 1 @ 1 0 05897825 -flying_school n 1 1 @ 1 0 08282257 -flying_squad n 1 1 @ 1 0 08078644 -flying_squirrel n 1 3 @ ~ #m 1 0 01882125 -flying_start n 2 1 @ 2 0 07329833 07326262 -flying_visit n 1 1 @ 1 0 01232978 -flyleaf n 1 1 @ 1 0 06256494 -flyover n 2 2 @ ; 2 0 03865557 00303297 -flypaper n 1 1 @ 1 0 14872572 -flypast n 1 2 @ ; 1 0 00303297 -flyspeck n 1 1 @ 1 0 14869975 -flyswat n 1 1 @ 1 0 04369282 -flyswatter n 1 1 @ 1 0 04369282 -flytrap n 1 1 @ 1 0 03374570 -flyway n 1 1 @ 1 1 08617622 -flyweight n 2 1 @ 2 0 10098624 10098517 -flywheel n 1 2 @ ~ 1 0 03374649 -fm n 2 1 @ 2 1 06281721 14637339 -fmri n 1 2 @ ~ 1 0 00902757 -fnma n 1 1 @ 1 0 08384738 -fo n 1 2 @ ; 1 0 10087080 -fo'c'sle n 1 2 @ #p 1 0 03382104 -foal n 1 4 @ ~ #m + 1 0 02376542 -foam n 2 3 @ ~ + 2 2 09282724 14872697 -foam_rubber n 1 1 @ 1 0 14872875 -foamflower n 1 2 @ #m 1 0 12803754 -foaminess n 1 2 @ + 1 0 04733539 -fob n 3 1 @ 3 0 03375070 03374978 03374838 -focal_distance n 1 1 @ 1 0 05086450 -focal_epilepsy n 1 3 @ ~ %p 1 0 14086626 -focal_infection n 1 2 @ %p 1 0 14176715 -focal_length n 1 1 @ 1 0 05086450 -focal_point n 3 3 @ ~ #p 3 1 11455695 14182697 05704694 -focal_ratio n 1 1 @ 1 0 13821408 -focal_seizure n 1 2 @ #p 1 0 14086924 -focalisation n 2 3 @ ~ + 2 0 13482781 00375625 -focalization n 2 3 @ ~ + 2 0 13482781 00375625 -focus n 7 4 @ ~ #p + 7 4 05704694 04703235 04821084 14182697 14435187 11455695 08572335 -focusing n 2 3 @ ~ + 2 1 05704694 00375625 -focussing n 1 3 @ ~ + 1 0 05704694 -fodder n 2 4 @ ~ + ; 2 0 09891300 07800740 -foe n 2 5 ! @ ~ #m ; 2 2 10055847 10098710 -foehn n 1 1 @ 1 0 11442630 -foeman n 1 4 @ ~ #m ; 1 0 10055847 -foeniculum n 1 3 @ #m %m 1 0 12938897 -foeniculum_dulce n 1 2 @ %p 1 0 12939479 -foeniculum_vulgare n 1 2 @ %p 1 0 12939282 -foeniculum_vulgare_dulce n 1 2 @ %p 1 0 12939479 -foetal_circulation n 1 1 @ 1 0 05511975 -foetal_distress n 1 1 @ 1 0 14093874 -foetal_monitor n 1 1 @ 1 0 03278914 -foetal_movement n 1 2 @ ; 1 0 00334174 -foetid_bugbane n 1 1 @ 1 0 11729142 -foetid_pothos n 1 2 @ #m 1 0 11792742 -foetology n 1 1 @ 1 0 06053854 -foetometry n 1 1 @ 1 0 01002284 -foetoprotein n 1 2 @ ~ 1 0 15033662 -foetor n 1 2 @ ~ 1 0 05714894 -foetoscope n 1 1 @ 1 0 03330792 -foetoscopy n 1 1 @ 1 0 00944456 -foetus n 1 4 @ ~ %p + 1 0 01459791 -fog n 3 3 @ ~ + 3 3 11458314 14521648 05684561 -fogbank n 1 1 @ 1 0 11458514 -fogey n 1 2 @ ; 1 0 10022908 -fogginess n 2 3 @ ~ + 2 0 14521648 04704346 -foggy_bottom n 1 1 @ 1 0 08138079 -foghorn n 2 2 @ ~ 2 0 07265381 03375171 -foglamp n 1 1 @ 1 0 03375329 -fogsignal n 1 1 @ 1 0 07265381 -fogy n 1 2 @ ; 1 0 10022908 -fohn n 1 1 @ 1 0 11442630 -foible n 2 2 @ #p 2 1 04764242 03375443 -foie_gras n 1 1 @ 1 0 07858197 -foil n 5 4 @ ~ + ; 5 1 03375694 05853924 03553019 03375956 03375575 -foiling n 1 2 @ + 1 0 00067990 -folacin n 1 1 @ 1 0 15091846 -folate n 1 1 @ 1 0 15091846 -fold n 7 5 @ ~ #m %m + 7 2 13907415 07991364 13482940 07991169 05492259 03376159 00406612 -folder n 2 3 @ ~ + 2 0 06413889 03376279 -folderal n 1 1 @ 1 0 03376438 -folderol n 1 2 @ ; 1 0 06611998 -folding n 3 3 @ ~ + 3 0 13569226 13482940 00406612 -folding_chair n 1 3 @ ~ %p 1 1 03376595 -folding_door n 1 1 @ 1 0 03376771 -folding_money n 1 2 @ ~ 1 0 13387209 -folding_saw n 1 1 @ 1 0 03376938 -foldout n 1 2 @ ~ 1 0 06258541 -foliage n 2 6 @ ~ %s %p + ; 2 2 13152742 03377077 -foliation n 5 3 @ + ; 5 0 13483190 13483061 03377077 00924438 00713135 -folic_acid n 1 1 @ 1 0 15091846 -folie n 1 3 @ ~ ; 1 0 14083790 -folie_a_deux n 1 1 @ 1 0 14387604 -folio n 3 3 @ ~ #p 3 0 06258680 06256229 03377245 -folium n 1 2 @ + 1 0 09283066 -folk n 4 3 @ ~ %m 4 3 07947255 08372411 07970721 07060167 -folk_art n 1 1 @ 1 0 03377451 -folk_ballad n 1 2 @ ~ 1 0 07050952 -folk_dance n 1 3 @ ~ + 1 1 00537682 -folk_dancer n 1 2 @ ~ 1 0 10098862 -folk_dancing n 1 3 @ ~ + 1 0 00537682 -folk_etymology n 1 1 @ 1 0 06514786 -folk_music n 1 2 @ ~ 1 1 07060167 -folk_poet n 1 1 @ 1 1 10099002 -folk_singer n 1 2 @ ~ 1 0 10099093 -folk_song n 1 2 @ ~ 1 0 07050952 -folk_tale n 1 4 @ ~ #p - 1 0 07222050 -folk_writer n 1 2 @ ~ 1 1 10099278 -folklore n 1 3 @ %p - 1 1 05985602 -folks n 2 5 @ ~ %m + ; 2 1 07971023 07947255 -folksong n 1 2 @ ~ 1 0 07050952 -folktale n 1 4 @ ~ #p - 1 0 07222050 -follicle n 1 3 @ ~ + 1 0 05518094 -follicle-stimulating_hormone n 1 1 @ 1 0 14748765 -folliculitis n 1 1 @ 1 0 14346190 -follies n 1 2 @ ~ 1 0 07020017 -follow-on n 1 1 @ 1 0 00457038 -follow-through n 2 3 @ #p + 2 1 00211593 00211776 -follow-up n 3 2 @ + 3 0 03377582 00455348 00143251 -follower n 2 4 ! @ ~ + 2 1 10099375 10100124 -followers n 1 3 @ ~ %m 1 0 08223263 -followers_of_the_phrophet n 1 2 @ ; 1 0 08014615 -following n 2 4 @ ~ %m + 2 1 08223263 00319939 -followup n 3 2 @ + 3 0 03377582 00455348 00143251 -folly n 4 3 ! @ ~ 4 2 04891333 01248075 05647156 00512843 -folsom_culture n 1 2 @ ; 1 0 08291813 -fomentation n 3 3 @ #s + 3 0 14873056 00708168 00156625 -fomenter n 1 2 @ + 1 0 09778783 -fomes n 1 3 @ #m %m 1 0 13053816 -fomes_igniarius n 1 2 @ #m 1 0 13054073 -fomite n 1 1 @ 1 0 09283193 -fomor n 1 2 @ ; 1 0 09509375 -fomorian n 1 2 @ ; 1 0 09509375 -fond_regard n 1 1 @ 1 0 07545161 -fonda n 2 1 @ 2 0 10974136 10974033 -fondant n 1 1 @ 1 0 07605380 -fondler n 2 1 @ 2 0 10420649 10100314 -fondling n 1 3 @ ~ + 1 0 00854000 -fondness n 3 3 @ ~ + 3 1 07497797 07544647 04627000 -fondu n 2 2 @ ~ 2 0 07867883 07867421 -fondue n 2 2 @ ~ 2 0 07867883 07867421 -font n 2 3 @ ~ #m 2 0 06825399 02788572 -font_cartridge n 1 2 @ ; 1 0 06826407 -fontanel n 1 3 @ ~ #p 1 0 05545212 -fontanelle n 1 3 @ ~ #p 1 0 05545212 -fontanne n 1 1 @ 1 0 10974271 -fontenoy n 1 3 @ #p ; 1 0 01278873 -fonteyn n 1 1 @ 1 0 10974455 -food n 3 4 @ ~ #p %p 3 1 00021265 07555863 05811214 -food_additive n 1 1 @ 1 0 03377845 -food_allergy n 1 1 @ 1 0 14532142 -food_and_agriculture_organization n 1 1 @ 1 0 08300190 -food_and_agriculture_organization_of_the_united_nations n 1 1 @ 1 0 08300190 -food_and_drug_administration n 1 2 @ #p 1 0 08124256 -food_bank n 1 1 @ 1 0 13368900 -food_cache n 1 1 @ 1 0 07572519 -food_chain n 1 3 @ #p ; 1 0 11455901 -food_color n 1 1 @ 1 0 07567139 -food_coloring n 1 1 @ 1 0 07567139 -food_colour n 1 1 @ 1 0 07567139 -food_colouring n 1 1 @ 1 0 07567139 -food_company n 1 1 @ 1 0 08003427 -food_court n 1 2 @ #p 1 0 03378005 -food_cycle n 1 3 @ %p ; 1 0 11456273 -food_elevator n 1 1 @ 1 0 03255322 -food_faddist n 1 1 @ 1 0 10100514 -food_fish n 1 2 @ ~ 1 0 02512938 -food_for_thought n 1 2 @ ~ 1 1 05811214 -food_grain n 1 2 @ ~ 1 0 07802417 -food_hamper n 1 1 @ 1 0 03378342 -food_manufacturer n 1 2 @ ~ 1 0 10100620 -food_market n 1 3 @ ~ %p 1 0 03461385 -food_poisoning n 1 2 @ ~ 1 0 14068685 -food_processor n 1 1 @ 1 0 03378174 -food_product n 1 2 @ ~ 1 0 07566340 -food_pyramid n 1 2 @ ; 1 0 11456083 -food_shop n 1 2 @ ~ 1 0 03173387 -food_stamp n 1 1 @ 1 0 13374161 -food_turner n 1 2 @ ~ 1 0 04500060 -food_waste n 1 1 @ 1 0 14857151 -food_web n 1 3 @ %p ; 1 0 11456273 -foodie n 1 1 @ 1 0 10061656 -foodstuff n 2 3 @ ~ ; 2 1 03461119 07566340 -fool n 3 3 @ ~ + 3 3 10100761 09921409 10221312 -fool's_cap n 1 1 @ 1 0 03256631 -fool's_errand n 1 1 @ 1 0 00731569 -fool's_gold n 1 2 @ %s 1 0 14692682 -fool's_huckleberry n 1 2 @ #m 1 0 12241880 -fool's_paradise n 1 1 @ 1 0 14447816 -fool's_parsley n 1 2 @ #m 1 0 12931231 -foolery n 1 3 @ ~ + 1 0 00512843 -foolhardiness n 1 3 @ ~ + 1 0 04661926 -foolish_woman n 1 1 @ 1 0 10096126 -foolishness n 3 3 @ ~ + 3 1 04891333 05647156 01248075 -foolscap n 1 1 @ 1 0 06259487 -foot n 11 7 ! @ ~ #p %p + ; 11 7 05563266 13650045 08511570 02153445 03387016 02322213 00284665 10101078 08390157 07094843 03378442 -foot-and-mouth_disease n 1 1 @ 1 0 14264664 -foot-lambert n 1 1 @ 1 0 13641175 -foot-pound n 1 2 @ #p 1 0 13727683 -foot-poundal n 1 1 @ 1 0 13727931 -foot-ton n 1 2 @ %p 1 0 13727841 -foot_brake n 1 1 @ 1 0 03379719 -foot_doctor n 1 1 @ 1 0 09919297 -foot_lever n 1 3 @ ~ #p 1 0 03903424 -foot_pedal n 1 3 @ ~ #p 1 0 03903424 -foot_race n 1 2 @ ~ 1 0 07460104 -foot_rot n 2 1 @ 2 1 14264858 14282890 -foot_rule n 1 1 @ 1 0 03380647 -foot_soldier n 2 2 @ ~ 2 1 10204921 10669991 -foot_traffic n 1 1 @ 1 0 08425777 -footage n 2 1 @ 2 1 03378593 13326871 -football n 2 5 @ ~ %p + - 2 2 00468480 03378765 -football_coach n 1 2 @ ~ 1 0 10101202 -football_field n 1 2 @ #p 1 0 03378915 -football_game n 1 4 @ ~ %p - 1 0 00468480 -football_helmet n 1 2 @ %p 1 0 03379051 -football_hero n 1 1 @ 1 0 10101308 -football_league n 1 2 @ %m 1 0 08232496 -football_official n 1 2 @ ~ 1 0 10101427 -football_play n 1 3 @ ~ ; 1 0 00558630 -football_player n 1 2 @ ~ 1 1 10101634 -football_score n 1 2 @ ; 1 0 00188341 -football_season n 1 1 @ 1 0 15240998 -football_stadium n 1 2 @ %p 1 0 03379204 -football_team n 1 3 @ #m %m 1 1 08080025 -football_tee n 1 1 @ 1 0 04399700 -footballer n 1 3 @ ~ + 1 0 10101634 -footbath n 1 1 @ 1 0 03379343 -footboard n 2 3 @ ~ #p 2 0 03379592 03379461 -footbridge n 1 2 @ ~ 1 1 03379828 -footcandle n 1 1 @ 1 0 13640371 -footedness n 1 1 @ 1 0 05067679 -footer n 3 4 @ ~ + ; 3 0 13650225 10412055 06764244 -footfall n 1 2 @ ~ 1 0 07383823 -footfault n 1 2 @ #p 1 0 00071700 -footgear n 1 3 @ ~ %p 1 0 03380867 -foothill n 1 1 @ 1 0 09283405 -foothold n 3 2 @ ~ 3 0 08689028 03379989 00036299 -footing n 3 2 @ ~ 3 1 13953936 13790912 03379989 -footlights n 1 3 @ #p ; 1 0 03380134 -footlocker n 1 1 @ 1 0 03380301 -footman n 1 1 @ 1 0 10101981 -footmark n 1 2 @ ~ 1 0 06645039 -footnote n 1 2 @ + 1 1 06764244 -footpad n 1 1 @ 1 0 10102130 -footpath n 1 1 @ 1 1 03899533 -footplate n 1 3 @ #p ; 1 0 03380461 -footprint n 3 2 @ ~ 3 1 06645039 06646854 05129054 -footprint_evidence n 1 1 @ 1 0 06645266 -footrace n 1 2 @ ~ 1 0 07460104 -footrest n 1 1 @ 1 0 03380724 -footslogger n 1 3 @ ~ + 1 0 10204921 -footstall n 1 4 @ ~ #p %p 1 0 03903868 -footstep n 3 2 @ ~ 3 3 07383823 00288880 13757249 -footsteps-of-spring n 1 1 @ 1 0 12943743 -footstool n 1 1 @ 1 0 03380724 -footwall n 1 2 @ #p 1 0 09283514 -footwear n 2 3 @ ~ %p 2 0 03381126 03380867 -footwork n 2 1 @ 2 0 00565219 00172347 -fop n 1 2 @ ~ 1 0 09991026 -foppishness n 1 2 @ + 1 0 04910848 -forage n 2 2 @ + 2 0 07801091 00945916 -forager n 1 1 @ 1 0 10102222 -foraging n 1 2 @ + 1 1 00945916 -foram n 1 3 @ ~ #m 1 0 01393030 -foramen n 1 2 @ ~ 1 0 05545439 -foramen_magnum n 1 2 @ #p 1 0 05545879 -foramen_of_monro n 1 1 @ 1 0 05545611 -foraminifer n 1 3 @ ~ #m 1 0 01393030 -foraminifera n 1 3 @ #m %m 1 0 01392843 -foray n 2 3 @ ~ + 2 0 00976953 00787307 -forbear n 1 2 @ ~ 1 0 10102369 -forbearance n 2 2 @ + 2 0 04640538 01066689 -forbiddance n 2 3 @ ~ + 2 0 07255401 00201923 -forbidden_city n 2 2 @ #p 2 0 08907377 08724972 -forbidden_fruit n 1 1 @ 1 0 05695002 -forbidding n 1 3 @ ~ + 1 0 07255401 -force n 10 6 @ ~ #m %m + ; 10 7 05194578 11458624 05035353 08208016 08198398 00965404 10461424 08207863 04809642 00129743 -force-feed_lubricating_system n 1 3 @ #p %p 1 0 03695122 -force-out n 1 2 @ ; 1 0 00129743 -force_17 n 1 2 @ ; 1 0 08021464 -force_feed n 1 3 @ #p %p 1 0 03695122 -force_field n 1 2 @ ~ 1 0 11456760 -force_majeure n 1 1 @ 1 0 07315350 -force_out n 1 2 @ ; 1 0 00129743 -force_per_unit_area n 1 2 @ ~ 1 0 11495041 -force_play n 1 2 @ ; 1 0 00129743 -force_pump n 1 1 @ 1 0 03381450 -force_unit n 1 2 @ ~ 1 0 13603065 -forced_feeding n 1 3 @ ~ + 1 0 01058291 -forced_landing n 1 2 @ ~ 1 0 00052791 -forced_sale n 1 1 @ 1 1 06528557 -forcefulness n 1 3 @ ~ + 1 0 05035353 -forcemeat n 1 1 @ 1 0 07679140 -forceps n 1 3 @ ~ ; 1 0 03381231 -forceps_delivery n 1 1 @ 1 0 00186251 -forces_of_umar_al-mukhtar n 1 2 @ ; 1 0 08021785 -forcing_out n 1 2 @ ~ 1 0 00116687 -ford n 8 4 @ ~ #p + 8 0 10975304 10975202 10975101 10974971 10974740 10974592 09283623 00297657 -ford_hermann_hueffer n 1 1 @ 1 0 10974971 -ford_madox_ford n 1 1 @ 1 0 10974971 -fordhooks n 1 1 @ 1 0 07729142 -fording n 1 3 @ ~ + 1 0 00297657 -fore n 1 2 @ #p 1 0 02880008 -fore-and-aft_rig n 1 1 @ 1 0 03381664 -fore-and-aft_sail n 1 3 @ ~ %p 1 0 03381776 -fore-and-aft_topsail n 1 1 @ 1 0 03410571 -fore-and-after n 1 1 @ 1 0 03381565 -fore-topmast n 1 1 @ 1 0 03383468 -fore-topsail n 1 1 @ 1 0 03383562 -fore-wing n 1 1 @ 1 0 02152064 -fore_edge n 1 2 @ #p 1 0 03382533 -fore_plane n 1 1 @ 1 0 03382969 -fore_wing n 1 1 @ 1 0 02152064 -forearm n 1 3 @ #p %p 1 1 05564323 -forebear n 1 2 @ ~ 1 0 10102369 -foreboding n 2 3 @ ~ + 2 1 07522128 07286905 -forebrain n 1 3 @ #p %p 1 0 05495981 -forecast n 1 3 @ ~ + 1 1 06749881 -forecaster n 1 3 @ ~ + 1 0 10102506 -forecasting n 1 3 @ ~ + 1 1 06748969 -forecastle n 1 2 @ #p 1 0 03382104 -foreclosure n 1 2 @ + 1 0 00090076 -forecourt n 1 1 @ 1 0 03382292 -foredeck n 1 2 @ #p 1 0 03382413 -foredge n 1 2 @ #p 1 0 03382533 -forefather n 2 2 @ ~ 2 1 10102800 10102969 -forefinger n 1 1 @ 1 1 05567381 -forefoot n 1 2 @ #p 1 0 02439728 -forefront n 2 1 @ 2 0 08572467 06209419 -foregone_conclusion n 2 3 @ ~ = 2 0 07295850 04753455 -foreground n 2 4 @ #p + ; 2 1 05934278 03382708 -foreground_processing n 1 1 @ 1 0 13483331 -foregrounding n 1 1 @ 1 0 13483331 -forehand n 1 2 @ ; 1 0 00567418 -forehand_drive n 1 2 @ ; 1 0 00567685 -forehand_shot n 1 2 @ ; 1 0 00567418 -forehand_stroke n 1 2 @ ; 1 0 00567418 -forehead n 2 3 @ #p %p 2 1 05602548 05541231 -foreign_agent n 1 1 @ 1 0 10103228 -foreign_aid n 1 3 @ ~ ; 1 0 13266515 -foreign_bill n 1 1 @ 1 0 13377749 -foreign_correspondent n 1 1 @ 1 0 10103315 -foreign_country n 1 1 @ 1 0 08168367 -foreign_direct_investment n 2 1 @ 2 0 01099768 00785818 -foreign_draft n 1 1 @ 1 0 13377749 -foreign_exchange n 1 1 @ 1 1 13378348 -foreign_intelligence_service n 1 2 @ ; 1 0 08343905 -foreign_intelligence_surveillance_act n 1 1 @ 1 0 06565397 -foreign_intelligence_surveillance_court n 1 2 @ #p 1 0 08332485 -foreign_legion n 1 2 @ ~ 1 0 08271941 -foreign_minister n 1 1 @ 1 0 10103794 -foreign_mission n 2 2 @ %m 2 0 08403225 08403082 -foreign_office n 1 2 @ ~ 1 1 08114152 -foreign_policy n 1 2 @ ~ 1 1 06660942 -foreign_service n 1 3 @ #p - 1 0 08138466 -foreign_terrorist_organization n 1 3 @ ~ ; 1 0 08392137 -foreigner n 2 2 @ ~ 2 1 10103485 10103921 -foreignness n 1 5 ! @ ~ = + 1 0 04799344 -foreknowledge n 1 1 @ 1 1 07256932 -forelady n 1 1 @ 1 0 10104983 -foreland n 2 2 @ ~ 2 0 09399592 09283767 -foreleg n 1 3 @ #p %p 1 0 02464965 -forelimb n 1 3 @ ~ %p 1 0 02464785 -forelock n 2 3 @ ~ #p 2 0 05258051 01900006 -foreman n 2 3 @ ~ + 2 1 10104209 10104487 -foremanship n 1 2 @ + 1 0 00592535 -foremast n 1 1 @ 1 0 03382856 -foremilk n 1 1 @ 1 0 05399356 -foremother n 1 1 @ 1 0 10103155 -forename n 1 2 @ ~ 1 0 06337307 -forenoon n 1 3 @ #p %p 1 0 15165289 -forensic_medicine n 1 1 @ 1 0 06050257 -forensic_pathology n 1 1 @ 1 0 06050257 -forensics n 1 1 @ 1 0 00635422 -foreordination n 1 4 @ ~ + ; 1 0 05966129 -forepart n 1 2 @ ~ 1 0 08573472 -forepaw n 1 3 @ ~ #p 1 0 02440121 -foreperson n 1 2 @ ~ 1 0 10104592 -foreplay n 1 2 @ ~ 1 0 00853835 -forequarter n 1 1 @ 1 0 07655898 -forerunner n 3 2 @ ~ 3 2 09627117 06802571 13844923 -foresail n 1 1 @ 1 0 03383099 -foreshadowing n 1 2 @ + 1 0 05776015 -foreshank n 1 1 @ 1 0 07657233 -foreshock n 1 1 @ 1 0 07429782 -foreshore n 1 2 @ #p 1 0 09283866 -foresight n 2 1 @ 2 1 04893172 05805277 -foresightedness n 1 2 @ + 1 0 04893172 -foresightfulness n 1 2 @ + 1 0 04893172 -foreskin n 2 2 @ #p 2 0 05527085 05526957 -forest n 2 4 @ ~ %m + 2 2 08438533 09284015 -forest_fire n 1 2 @ ~ 1 0 07303839 -forest_fire_fighter n 1 2 @ ~ 1 0 10092098 -forest_goat n 1 2 @ #m 1 0 02428842 -forest_god n 1 2 @ ~ 1 0 09548111 -forest_red_gum n 1 1 @ 1 0 12338655 -forest_tent_caterpillar n 1 1 @ 1 0 02307681 -forestage n 1 3 @ #p %p 1 0 04013362 -forestalling n 1 2 @ + 1 0 01079042 -forestay n 1 2 @ ~ 1 0 03383211 -forester n 2 1 @ 2 0 10975404 10104756 -forestiera n 1 3 @ ~ #m 1 0 12302565 -forestiera_neomexicana n 1 1 @ 1 0 12302692 -forestry n 1 4 @ ~ + - 1 0 06071934 -foretaste n 1 1 @ 1 0 05951072 -foretelling n 2 3 @ ~ + 2 0 06748969 05776212 -forethought n 2 1 @ 2 0 05796617 05615869 -foretoken n 1 2 @ ~ 1 0 07286014 -foretop n 2 2 @ #p 2 0 03383378 01900006 -forewarning n 1 2 @ + 1 0 07225450 -forewing n 1 1 @ 1 0 02152064 -forewoman n 2 1 @ 2 0 10104983 10104888 -foreword n 1 2 @ #p 1 0 06397903 -forfeit n 3 2 @ + 3 0 13301174 13300922 00205891 -forfeiture n 3 2 @ + 3 0 13301174 13300922 00205891 -forficula n 1 3 @ #m %m 1 0 02273254 -forficula_auricularia n 1 2 @ #m 1 0 02273392 -forficulidae n 1 3 @ #m %m 1 0 02273120 -forge n 2 3 @ %p + 2 0 03383821 03383646 -forger n 2 3 @ ~ + 2 0 10105260 10105085 -forgery n 2 2 @ + 2 0 03562262 00768921 -forget-me-not n 1 2 @ #m 1 0 12822115 -forget_me_drug n 1 1 @ 1 0 04036494 -forgetful_person n 1 1 @ 1 0 10555825 -forgetfulness n 2 3 @ ~ + 2 1 05673209 05673908 -forging n 1 2 @ + 1 0 00925622 -forgiveness n 2 2 @ ~ 2 0 07554640 01227190 -forgiver n 1 2 @ + 1 0 10399299 -forgivingness n 1 2 @ + 1 0 04829764 -forgoing n 1 2 @ ~ 1 0 00205079 -forint n 1 2 @ %p 1 0 13676544 -fork n 5 5 @ ~ #p %p + 5 4 03383948 00388392 13914265 03384167 05597436 -forked_lightning n 1 1 @ 1 0 11459200 -forking n 2 4 @ ~ %p + 2 0 13886724 00388392 -forklift n 1 1 @ 1 0 03384352 -forlorn_hope n 1 1 @ 1 0 00786102 -forlornness n 1 1 @ 1 0 07534108 -form n 16 8 @ ~ #m #p %p = + ; 16 11 06290637 05839024 05930736 05064037 05217168 00027807 04677514 06473563 08111157 07092356 04930478 14480065 08238463 05200670 03717921 03384535 -form_class n 1 2 @ ~ 1 0 06317464 -form_division n 1 1 @ 1 0 08221747 -form_family n 1 2 @ ; 1 0 08108450 -form_genus n 2 2 @ ; 2 0 08110197 01325206 -form_genus_rhizoctinia n 1 3 @ #m %m 1 0 13082293 -form_letter n 1 1 @ 1 0 06625465 -form_of_address n 1 2 @ ~ 1 0 06339416 -form_of_government n 1 4 @ ~ #m %m 1 1 08367880 -formal n 2 2 @ ~ 2 0 07448885 03201638 -formal_garden n 1 2 @ ~ 1 0 03384706 -formal_logic n 1 2 @ ~ 1 1 06164665 -formal_semantics n 1 1 @ 1 0 06180282 -formaldehyde n 1 1 @ 1 0 14873196 -formalin n 1 1 @ 1 0 14848479 -formalisation n 1 2 @ + 1 0 01009637 -formalism n 3 4 ! @ + ; 3 1 05961867 05971621 00411717 -formalities n 1 1 @ 1 0 07455007 -formality n 3 6 ! @ ~ = + - 3 0 07455007 04911420 01204055 -formalization n 1 2 @ + 1 0 01009637 -formalness n 1 4 @ ~ = + 1 0 04911420 -formalwear n 1 2 @ ~ 1 0 03384891 -format n 2 5 @ ~ #p + ; 2 0 06636806 04677385 -formation n 7 4 @ ~ + ; 7 5 08426461 00925207 00237078 09287968 03385117 13483488 00927516 -formative n 1 1 @ 1 1 06306480 -formative_cell n 1 2 @ ~ 1 0 05447757 -formatted_capacity n 1 2 @ ; 1 0 13755342 -formatting n 1 4 @ ~ + ; 1 0 06636806 -former n 1 2 ! @ 1 0 13846356 -former_armed_forces n 1 2 @ ; 1 0 08016900 -formic_acid n 1 1 @ 1 0 14873344 -formica n 2 4 @ #m %m ; 2 0 03385295 02221240 -formica_fusca n 1 2 @ #m 1 0 02221715 -formica_rufa n 1 2 @ #m 1 0 02221414 -formica_sanguinea n 1 2 @ #m 1 0 02222035 -formicariidae n 1 3 @ #m %m 1 0 01552956 -formicarius n 1 3 @ #m %m 1 0 01553380 -formicary n 1 1 @ 1 0 09199101 -formication n 1 2 @ + 1 0 14325006 -formicidae n 1 3 @ #m %m 1 0 02219234 -formidability n 1 2 @ + 1 0 04710866 -formol n 1 1 @ 1 0 14848479 -formosa n 1 3 @ #p + 1 0 08730354 -formosan n 1 2 @ ~ 1 0 06940701 -formula n 7 5 @ ~ %p + ; 7 5 06731802 06788785 06732013 06816935 05667613 07845087 05846932 -formulary n 1 2 @ ; 1 0 06411883 -formulation n 3 3 @ ~ + 3 3 14873641 00940842 07069948 -fornax n 1 1 @ 1 0 09284308 -fornication n 2 2 @ + 2 0 00848745 00848466 -fornicator n 1 3 @ ~ + 1 0 09772746 -fornicatress n 1 1 @ 1 0 09772930 -fornix n 2 3 @ #p %p 2 0 05227868 05227572 -forsaking n 2 3 @ ~ + 2 0 00205543 00204439 -forseti n 1 2 @ ; 1 0 09579994 -forssman_antibody n 1 1 @ 1 0 15029292 -forswearing n 1 3 @ ~ + 1 0 00205079 -forsythia n 1 2 @ #m 1 0 12303083 -fort n 2 5 @ ~ %p + ; 2 2 03420559 03386011 -fort-lamy n 1 2 @ #p 1 0 08720280 -fort_george_g._meade n 1 2 @ #p 1 0 09094581 -fort_george_gordon_meade n 1 2 @ #p 1 0 09094581 -fort_lauderdale n 1 2 @ #p 1 0 09072810 -fort_meade n 1 2 @ #p 1 0 09094581 -fort_myers n 1 2 @ #p 1 0 09073034 -fort_smith n 1 2 @ #p 1 0 09059876 -fort_ticonderoga n 1 3 @ #p ; 1 0 01279120 -fort_wayne n 1 2 @ #p 1 0 09085334 -fort_worth n 1 2 @ #p 1 1 09144323 -fortaz n 1 2 @ ; 1 0 02989685 -forte n 3 4 @ ~ #p ; 3 1 05159225 04990781 03385420 -forte-piano n 1 3 @ ~ %p 1 1 03928116 -forth n 1 2 @ #p 1 0 09284433 -forth_river n 1 2 @ #p 1 0 09284433 -forthcomingness n 1 2 @ + 1 0 14030820 -forthrightness n 1 3 @ ~ + 1 0 04871720 -forties n 2 2 @ #p 2 1 15149351 15149472 -fortieth n 1 1 @ 1 0 13849082 -fortification n 3 4 @ ~ %p + 3 1 03385557 05635624 00264529 -fortified_wine n 1 2 @ ~ 1 0 07900406 -fortissimo n 1 2 @ ; 1 0 04990781 -fortitude n 1 2 @ ~ 1 1 05032193 -fortnight n 1 2 @ + 1 0 15170331 -fortran n 1 1 @ 1 0 06902362 -fortran_compiler n 1 1 @ 1 0 06574027 -fortran_program n 1 1 @ 1 0 06902521 -fortress n 1 3 @ ~ %p 1 1 03386011 -fortuitousness n 1 2 @ + 1 0 04758980 -fortuity n 1 2 @ ~ 1 0 07300960 -fortuna n 1 2 @ ; 1 0 09573405 -fortune n 4 2 @ ~ 4 4 11418138 13370938 11418460 14473222 -fortune_cookie n 1 2 @ ; 1 0 07638439 -fortune_hunter n 1 1 @ 1 0 10105359 -fortune_teller n 1 2 @ ~ 1 0 10105462 -fortune_telling n 1 2 @ ~ 1 0 05776212 -fortunella n 1 3 @ #m %m 1 0 12712820 -fortunella_japonica n 1 2 @ #m 1 0 12713358 -fortunella_margarita n 1 1 @ 1 0 12713521 -fortuneteller n 1 2 @ ~ 1 0 10105462 -fortunetelling n 1 1 @ 1 0 06749468 -forty n 1 1 @ 1 0 13749527 -forty-five n 1 1 @ 1 0 03386343 -forty-niner n 1 1 @ 1 0 10105618 -forty_winks n 1 2 @ ~ 1 0 00858377 -forum n 2 1 @ 2 0 08309754 03386420 -forward n 2 3 @ ~ #m 2 0 10105733 00725383 -forward_market n 1 1 @ 1 0 03408918 -forward_motion n 1 2 @ ~ 1 0 00282050 -forward_pass n 1 2 @ ~ 1 0 00561226 -forward_passer n 1 2 @ ; 1 0 10404242 -forwarding n 2 3 @ ~ + 2 1 00121645 00249780 -forwardness n 3 2 @ + 3 0 05167412 05046865 04644719 -foryml n 1 2 @ ; 1 0 14860455 -fosamax n 1 2 @ ; 1 0 02696384 -fosbury n 1 1 @ 1 0 10975583 -fosbury_flop n 1 1 @ 1 0 00440643 -fossa n 3 4 @ ~ #m %m 3 0 13872211 02136623 02136452 -fossa_cat n 1 1 @ 1 0 02136452 -fossa_fossa n 1 2 @ #m 1 0 02136794 -fosse n 1 1 @ 1 0 03776050 -fossil n 2 4 @ ~ + ; 2 0 10022908 09284589 -fossil_copal n 1 1 @ 1 0 14895373 -fossil_fuel n 1 2 @ ~ 1 0 14686352 -fossil_oil n 1 3 @ ~ %s 1 0 14980579 -fossilisation n 2 3 @ ~ + 2 0 13483726 00201269 -fossilist n 1 3 @ ~ + 1 0 10394786 -fossilization n 2 3 @ ~ + 2 0 13483726 00201269 -fossilology n 1 3 @ ~ - 1 0 06073888 -fossorial_foot n 1 1 @ 1 0 02153712 -fossorial_mammal n 1 2 @ ~ 1 0 02153809 -foster n 1 1 @ 1 0 10975796 -foster-brother n 1 1 @ 1 0 10105906 -foster-child n 1 2 @ ~ 1 0 10106080 -foster-daughter n 1 1 @ 1 0 10106242 -foster-father n 1 1 @ 1 0 10106387 -foster-mother n 1 1 @ 1 0 10106509 -foster-nurse n 1 1 @ 1 0 10106642 -foster-parent n 1 2 @ ~ 1 0 10106752 -foster-sister n 1 1 @ 1 0 10106995 -foster-son n 1 1 @ 1 0 10107173 -foster_brother n 1 1 @ 1 0 10105906 -foster_care n 1 1 @ 1 0 01131993 -foster_child n 1 2 @ ~ 1 0 10106080 -foster_daughter n 1 1 @ 1 0 10106242 -foster_family n 1 1 @ 1 0 07973782 -foster_father n 1 1 @ 1 0 10106387 -foster_home n 1 1 @ 1 1 07973868 -foster_mother n 1 1 @ 1 0 10106509 -foster_parent n 1 2 @ ~ 1 1 10106752 -foster_sister n 1 1 @ 1 0 10106995 -foster_son n 1 1 @ 1 0 10107173 -fosterage n 2 2 @ + 2 0 07252206 01129532 -fostering n 2 2 @ + 2 1 07252206 01129532 -fosterling n 1 2 @ ~ 1 0 10106080 -fothergilla n 2 3 @ #m %m 2 0 12315999 12315818 -fots n 1 2 @ %p 1 0 03331820 -foucault n 1 1 @ 1 0 10976004 -foucault_pendulum n 1 1 @ 1 0 03386544 -foul n 1 4 @ ~ + ; 1 0 00770997 -foul-up n 1 3 @ ~ + 1 0 00074790 -foul-weather_gear n 1 1 @ 1 0 03386870 -foul_ball n 1 3 ! @ ; 1 0 00128091 -foul_line n 3 2 @ #p 3 0 08573010 08572877 08572726 -foul_play n 1 1 @ 1 0 00746116 -foul_shot n 1 2 @ ~ 1 0 00110964 -foulard n 1 1 @ 1 0 03386726 -foulmart n 1 3 @ ~ #m 1 0 02443114 -foulness n 4 3 @ ~ + 4 0 14563222 14495761 05037037 04980656 -foumart n 1 3 @ ~ #m 1 0 02443114 -found n 1 1 @ 1 1 13280008 -foundation n 7 4 @ ~ #p + 7 3 13790712 08406486 03387016 05986594 05793554 03387323 00240184 -foundation_garment n 1 2 @ ~ 1 0 03387323 -foundation_stone n 1 2 @ #p 1 0 03387506 -founder n 3 3 @ ~ + 3 2 14348895 10107303 10107778 -foundering n 1 3 @ + ; 1 0 07364573 -founding n 1 3 @ ~ + 1 1 00240184 -founding_father n 2 3 @ ~ #m 2 0 10107604 10107303 -foundling n 1 1 @ 1 0 10107883 -foundling_hospital n 1 1 @ 1 0 03129471 -foundress n 1 1 @ 1 0 10108018 -foundry n 1 2 @ ~ 1 1 03387653 -foundry_proof n 1 1 @ 1 0 06591224 -fount n 2 3 @ ~ #m 2 0 06825399 03387815 -fountain n 4 2 @ ~ 4 1 03388043 09443453 03387926 03387815 -fountain_grass n 1 2 @ #m 1 0 12129134 -fountain_of_youth n 1 1 @ 1 0 09284917 -fountain_pen n 1 2 @ %p 1 0 03388183 -fountainhead n 2 1 @ 2 1 06675979 08508449 -fouquieria n 1 3 @ #m %m 1 0 12381666 -fouquieria_columnaris n 1 2 @ #m 1 0 12382233 -fouquieria_splendens n 1 2 @ #m 1 0 12381931 -fouquieriaceae n 1 3 @ #m %m 1 0 12381321 -four n 2 1 @ 2 1 13744304 03388826 -four-card_monte n 1 1 @ 1 0 00493031 -four-centered_arch n 1 1 @ 1 0 04495555 -four-flusher n 1 1 @ 1 0 09861718 -four-footed_butterfly n 1 3 @ ~ #m 1 0 02274822 -four-four_time n 1 1 @ 1 0 15264010 -four-hitter n 1 1 @ 1 0 00475535 -four-in-hand n 2 3 @ ~ %p 2 0 03388323 03055670 -four-letter_anglo-saxon_word n 1 1 @ 1 0 06291122 -four-letter_word n 1 1 @ 1 0 06291122 -four-lined_leaf_bug n 1 2 @ #m 1 0 02237868 -four-lined_plant_bug n 1 2 @ #m 1 0 02237868 -four-minute_man n 1 2 @ ~ 1 0 10108089 -four-o'clock_family n 1 3 @ #m %m 1 0 11835806 -four-part_harmony n 1 1 @ 1 0 07027805 -four-poster n 1 2 @ %p 1 0 03388549 -four-pounder n 1 1 @ 1 0 03388711 -four-spot n 1 1 @ 1 0 03388826 -four-stroke_engine n 1 1 @ 1 0 03388990 -four-stroke_internal-combustion_engine n 1 1 @ 1 0 03388990 -four-tailed_bandage n 1 1 @ 1 0 03389353 -four-wheel_drive n 2 1 @ 2 0 03389761 03389611 -four-wheeler n 1 1 @ 1 0 03389889 -four-wing_flying_fish n 1 1 @ 1 0 02550780 -four_flush n 1 1 @ 1 0 00756598 -four_horsemen n 1 2 @ ; 1 0 05144880 -four_hundred n 1 2 @ #m 1 1 08251493 -four_o'clock n 1 3 @ ~ #m 1 0 11839568 -fourfold_point_correlation n 1 2 @ ; 1 0 06035413 -fourier n 2 1 @ 2 0 10976468 10976256 -fourier_analysis n 1 1 @ 1 0 06014278 -fourier_series n 1 1 @ 1 0 05863583 -fourpence n 1 1 @ 1 0 13391262 -fourpenny_nail n 1 1 @ 1 0 03388466 -fourscore n 1 1 @ 1 0 13750164 -foursome n 2 2 @ ~ 2 1 07987380 13744304 -foursquare n 1 3 @ ~ ; 1 0 13878634 -fourteen n 1 1 @ 1 1 13747348 -fourteenth n 1 1 @ 1 0 13848249 -fourteenth_amendment n 1 3 @ #p ; 1 0 06728726 -fourth n 3 1 @ 3 1 13847124 13737480 06859674 -fourth_council_of_constantinople n 1 1 @ 1 0 08314901 -fourth_cranial_nerve n 1 1 @ 1 0 05478684 -fourth_crusade n 1 1 @ 1 0 00969684 -fourth_deck n 1 1 @ 1 0 03855908 -fourth_dimension n 1 1 @ 1 1 15135822 -fourth_earl_of_chesterfield n 1 1 @ 1 0 10895073 -fourth_earl_of_orford n 1 1 @ 1 0 11372599 -fourth_estate n 1 1 @ 1 0 08168241 -fourth_lateran_council n 1 1 @ 1 0 08316019 -fourth_of_july n 1 2 @ #p 1 1 15190084 -fourth_part n 1 1 @ 1 0 13737480 -fourth_power n 1 1 @ 1 0 13731356 -fourth_stomach n 1 2 @ #p 1 0 02399942 -fourth_ventricle n 1 1 @ 1 0 05502855 -fovea n 1 2 @ #p 1 0 05455375 -fovea_centralis n 1 2 @ #p 1 0 05455375 -foveal_vision n 1 1 @ 1 0 05656722 -fowl n 2 6 @ ~ #m #p %p + 2 1 01789740 07644382 -fowl_cholera n 1 1 @ 1 0 14263562 -fowl_pest n 1 1 @ 1 0 14263753 -fowl_run n 1 1 @ 1 0 03016737 -fowler n 2 2 @ + 2 0 10976708 10108240 -fowling_piece n 1 1 @ 1 0 03389983 -fox n 7 3 @ ~ + 7 2 02118333 10022759 14764910 10976997 10976862 09655569 06909848 -fox-trot n 1 1 @ 1 0 00535956 -fox_grape n 2 5 @ ~ #m #p %p 2 0 13145040 07758950 -fox_hole n 1 1 @ 1 0 03390075 -fox_hunter n 1 1 @ 1 0 10108348 -fox_hunting n 1 2 @ + 1 0 00453478 -fox_river n 1 2 @ #p 1 0 09285128 -fox_shark n 1 2 @ #m 1 0 01486010 -fox_squirrel n 1 2 @ #m 1 0 02356798 -fox_talbot n 1 1 @ 1 0 11329281 -fox_terrier n 1 2 @ ~ 1 1 02095050 -foxberry n 1 2 @ %p 1 0 12249542 -foxglove n 1 3 @ ~ #m 1 0 12882779 -foxglove_family n 1 3 @ #m %m 1 0 12876032 -foxhole n 1 1 @ 1 0 03390075 -foxhound n 1 2 @ ~ 1 0 02089555 -foxhunt n 1 2 @ + 1 0 00453478 -foxiness n 1 2 @ + 1 0 05621178 -foxtail n 1 2 @ ~ 1 0 12107970 -foxtail_barley n 1 1 @ 1 0 12123932 -foxtail_grass n 2 2 @ ~ 2 0 13223843 12107970 -foxtail_millet n 1 3 @ ~ #m 1 0 12135270 -foxtail_orchid n 1 2 @ #m 1 0 12081649 -foxtrot n 1 1 @ 1 0 00535956 -foyer n 1 3 @ ~ #p 1 1 02715513 -fpd n 1 2 @ #p 1 0 03361380 -fps n 1 2 @ #p 1 0 08351777 -fr n 1 1 @ 1 0 14637864 -fra_filippo_lippi n 1 1 @ 1 0 11134196 -fracas n 1 2 @ ~ 1 1 07184545 -fractal n 1 2 @ ; 1 0 05931152 -fractal_geometry n 1 2 @ ; 1 0 06006609 -fraction n 3 3 @ ~ + 3 3 14922107 03390207 13732078 -fractional_currency n 1 1 @ 1 0 13386334 -fractional_distillation n 1 1 @ 1 0 13483971 -fractional_monetary_unit n 1 2 @ ~ 1 0 13662703 -fractional_process n 1 2 @ ~ 1 0 13484082 -fractionation n 2 3 @ ~ + 2 2 13484082 00389508 -fractiousness n 1 3 @ ~ + 1 0 04908396 -fracture n 3 5 @ ~ %p + ; 3 0 14292090 09278537 00376994 -fradicin n 1 1 @ 1 0 03818090 -fragaria n 1 3 @ #m %m 1 0 12629946 -fragaria_ananassa n 1 3 @ #m %p 1 0 12630478 -fragaria_chiloensis n 1 2 @ #m 1 0 12630763 -fragaria_vesca n 1 2 @ #m 1 0 12630641 -fragaria_virginiana n 1 2 @ #m 1 0 12630999 -fragile_fern n 1 1 @ 1 0 13196003 -fragility n 2 2 @ + 2 0 05043755 05041503 -fragment n 3 3 @ ~ + 3 2 09285254 04184701 07008680 -fragmentation n 4 3 @ + ; 4 1 00388210 13993517 13484303 07409121 -fragmentation_bomb n 1 3 @ ~ #p 1 0 03390327 -fragonard n 1 1 @ 1 0 10977159 -fragrance n 2 3 @ ~ + 2 1 05714466 04980463 -fragrancy n 1 1 @ 1 0 04980463 -fragrant_agrimony n 1 1 @ 1 0 12623211 -fragrant_bedstraw n 1 3 @ #s %p 1 0 12665271 -fragrant_cliff_fern n 1 1 @ 1 0 13193269 -fragrant_orchid n 1 2 @ #m 1 0 12064389 -fragrant_shield_fern n 1 1 @ 1 0 13193269 -fragrant_sumac n 1 1 @ 1 0 12763291 -fragrant_water_lily n 1 2 @ #m 1 0 11715430 -fragrant_wood_fern n 1 1 @ 1 0 13193269 -fragrant_woodsia n 1 1 @ 1 0 13202125 -frail n 2 1 @ 2 0 13718046 03390673 -frailness n 1 3 @ ~ + 1 0 14547643 -frailty n 2 2 @ ~ 2 0 14547643 04853873 -fraise n 2 1 @ 2 0 03390886 03390786 -frambesia n 1 1 @ 1 1 14144761 -framboesia n 1 1 @ 1 0 14144761 -framboise n 1 1 @ 1 0 12656369 -frame n 11 6 @ ~ #p %p + ; 11 4 03391301 03391464 05217168 15255804 07003568 06570805 05663104 05585383 04226537 03390983 00462116 -frame-up n 1 1 @ 1 0 00751398 -frame_buffer n 1 2 @ ; 1 0 03391613 -frame_of_mind n 1 2 @ ~ 1 0 14016114 -frame_of_reference n 2 3 @ ~ %p 2 0 05728024 05663104 -framer n 2 2 @ + 2 0 10108606 10108464 -framework n 3 3 @ ~ %p 3 2 05890249 04933363 03391770 -framing n 2 2 @ + 2 1 00941451 03390983 -franc n 1 3 @ ~ %p 1 1 13662190 -franc-tireur n 1 2 @ ; 1 0 10108937 -france n 2 6 @ #m #p %m %p - 2 1 08929922 10977368 -frances_eliza_hodgson_burnett n 1 1 @ 1 0 10873303 -frances_elizabeth_caroline_willard n 1 1 @ 1 0 11388141 -frances_hodgson_burnett n 1 1 @ 1 0 10873303 -frances_wright n 1 1 @ 1 0 11398344 -francesco_della_rovere n 1 1 @ 1 0 11304139 -francesco_petrarca n 1 1 @ 1 0 11231683 -franche-comte n 1 2 @ #p 1 0 08942277 -franchise n 3 4 @ ~ + ; 3 1 06526811 08060193 05187446 -franchise_tax n 1 1 @ 1 0 13312962 -francis_albert_sinatra n 1 1 @ 1 0 11302062 -francis_bacon n 1 1 @ 1 0 10830456 -francis_beaumont n 1 1 @ 1 0 10839329 -francis_crick n 1 1 @ 1 0 10915173 -francis_drake n 1 1 @ 1 0 10942866 -francis_edgar_stanley n 1 1 @ 1 0 11313357 -francis_everett_townsend n 1 1 @ 1 0 11347080 -francis_ferdinand n 1 1 @ 1 0 10977660 -francis_ford_coppola n 1 1 @ 1 0 10910305 -francis_galton n 1 1 @ 1 0 10988570 -francis_henry_compton_crick n 1 1 @ 1 0 10915173 -francis_hopkinson n 1 1 @ 1 0 11060241 -francis_ii n 1 1 @ 1 0 10977542 -francis_joseph n 1 1 @ 1 0 10977881 -francis_joseph_i n 1 1 @ 1 0 10977881 -francis_of_assisi n 1 2 @ ; 1 0 10978098 -francis_peyton_rous n 1 1 @ 1 0 11272523 -francis_poulenc n 1 1 @ 1 0 11244419 -francis_richard_stockton n 1 1 @ 1 0 11318692 -francis_scott_key n 1 1 @ 1 0 11103104 -francis_scott_key_fitzgerald n 1 1 @ 1 0 10972094 -francis_turbine n 1 1 @ 1 0 03392648 -francis_turner_palgrave n 1 1 @ 1 0 11221389 -franciscan n 1 2 @ #m 1 0 10778553 -franciscan_order n 1 2 @ %m 1 0 08149314 -francisco_de_goya n 1 1 @ 1 0 11009773 -francisco_fernandez_cordoba n 1 1 @ 1 0 10910769 -francisco_fernandez_de_cordova n 1 1 @ 1 0 10910769 -francisco_franco n 1 1 @ 1 0 10978842 -francisco_goya n 1 1 @ 1 0 11009773 -francisco_jimenez_de_cisneros n 1 1 @ 1 0 11084895 -francisco_jose_de_goya n 1 1 @ 1 0 11009773 -francisco_jose_de_goya_y_lucientes n 1 1 @ 1 0 11009773 -francisco_pizarro n 1 1 @ 1 0 11238726 -francisco_villa n 1 1 @ 1 0 11366405 -francisella n 1 2 @ %m 1 0 01365474 -francisella_tularensis n 1 2 @ #m 1 0 01365684 -francium n 1 1 @ 1 0 14637864 -franck n 2 1 @ 2 0 10978693 10978422 -franco n 1 1 @ 1 0 10978842 -franco-american n 1 1 @ 1 0 09742188 -franco-prussian_war n 1 1 @ 1 0 01304629 -francoa n 1 3 @ #m %m 1 0 12797693 -francoa_ramosa n 1 2 @ #m 1 0 12797860 -francois-marie_arouet n 1 1 @ 1 0 11368638 -francois_auguste_rene_rodin n 1 1 @ 1 0 11267949 -francois_charles_mauriac n 1 1 @ 1 0 11165519 -francois_couperin n 1 1 @ 1 0 10913010 -francois_de_la_rochefoucauld n 1 1 @ 1 0 11117931 -francois_duvalier n 1 1 @ 1 0 10946624 -francois_jacob n 1 1 @ 1 0 11077484 -francois_mansart n 1 1 @ 1 0 11154355 -francois_marie_charles_fourier n 1 1 @ 1 0 10976256 -francois_mauriac n 1 1 @ 1 0 11165519 -francois_maurice_marie_mitterrand n 1 1 @ 1 0 11183605 -francois_mitterrand n 1 1 @ 1 0 11183605 -francois_rabelais n 1 1 @ 1 0 11251225 -francois_rene_chateaubriand n 1 1 @ 1 0 10893830 -francois_truffaut n 1 1 @ 1 0 11349635 -francois_villon n 1 1 @ 1 0 11366787 -francoise-athenais_de_rochechouart n 1 1 @ 1 0 11186685 -francoise_d'aubigne n 1 1 @ 1 0 11150224 -francophil n 1 1 @ 1 0 10108719 -francophile n 1 1 @ 1 0 10108719 -francophobe n 1 1 @ 1 0 10108832 -frangibility n 1 2 @ + 1 0 05043755 -frangibleness n 1 2 @ + 1 0 05043755 -frangipane n 1 1 @ 1 0 07623475 -frangipani n 1 3 @ ~ #m 1 1 11774513 -frangipanni n 1 3 @ ~ #m 1 0 11774513 -frank n 2 3 @ ~ #p 2 0 09688804 07676602 -frank_baum n 1 1 @ 1 0 10838665 -frank_breech n 1 1 @ 1 0 00185612 -frank_breech_delivery n 1 1 @ 1 0 00185612 -frank_capra n 1 1 @ 1 0 10881986 -frank_cooper n 1 1 @ 1 0 10909303 -frank_harris n 1 1 @ 1 0 11030679 -frank_lloyd_wright n 1 1 @ 1 0 11398489 -frank_morrison_spillane n 1 1 @ 1 0 11311287 -frank_norris n 1 1 @ 1 0 11209543 -frank_philip_stella n 1 1 @ 1 0 11316003 -frank_sinatra n 1 1 @ 1 0 11302062 -frank_stella n 1 1 @ 1 0 11316003 -frank_stockton n 1 1 @ 1 0 11318692 -frank_whittle n 1 1 @ 1 0 11385442 -frank_winfield_woolworth n 1 1 @ 1 0 11397271 -frankenstein n 3 1 @ 3 0 14007750 09599401 09599195 -frankenstein's_monster n 1 1 @ 1 0 09599401 -frankfort n 2 2 @ #p 2 0 09089631 08772922 -frankfurt n 1 2 @ #p 1 0 08772922 -frankfurt_on_the_main n 1 2 @ #p 1 0 08772922 -frankfurter n 1 3 @ ~ #p 1 0 07676602 -frankfurter_bun n 1 2 @ #p 1 0 07690019 -frankincense n 1 1 @ 1 0 14873951 -frankincense_pine n 1 1 @ 1 0 11615387 -franking_machine n 1 1 @ 1 0 03392741 -franklin n 3 2 @ ; 3 0 10979535 10979079 10109050 -franklin_delano_roosevelt n 1 1 @ 1 0 11270023 -franklin_pierce n 1 1 @ 1 0 11234813 -franklin_roosevelt n 1 1 @ 1 0 11270023 -frankliniella n 1 3 @ #m %m 1 0 02272152 -frankliniella_fusca n 1 2 @ #m 1 0 02272286 -frankness n 2 3 @ ~ + 2 0 04871720 04650731 -frans_hals n 1 1 @ 1 0 11025508 -franz_anton_mesmer n 1 1 @ 1 0 11176932 -franz_ferdinand n 1 1 @ 1 0 10977660 -franz_josef_i n 1 1 @ 1 0 10977881 -franz_joseph n 1 1 @ 1 0 10977881 -franz_joseph_haydn n 1 1 @ 1 0 11035780 -franz_joseph_kline n 1 1 @ 1 0 11107757 -franz_kafka n 1 1 @ 1 0 11095731 -franz_kline n 1 1 @ 1 0 11107757 -franz_lehar n 1 1 @ 1 0 11125080 -franz_liszt n 1 1 @ 1 0 11135236 -franz_peter_schubert n 1 1 @ 1 0 11286618 -franz_schubert n 1 1 @ 1 0 11286618 -franz_seraph_peter_schubert n 1 1 @ 1 0 11286618 -franz_werfel n 1 1 @ 1 0 11381583 -frappe n 3 2 @ ~ 3 0 07923665 07923576 07614198 -fraser_fir n 1 1 @ 1 0 11622184 -frasera n 1 3 @ #m %m 1 0 12292655 -frasera_speciosa n 1 2 @ #m 1 0 12293180 -frat n 1 2 @ %m 1 0 08229467 -frat_house n 1 1 @ 1 0 03007297 -fratercula n 1 3 @ #m %m 1 0 02047835 -fratercula_arctica n 1 2 @ #m 1 0 02047975 -fratercula_corniculata n 1 2 @ #m 1 0 02048115 -fraternal_twin n 1 1 @ 1 0 10109197 -fraternisation n 1 2 @ + 1 1 01081867 -fraternity n 2 3 @ %m + 2 2 08229467 08075388 -fraternity_house n 1 1 @ 1 0 03007297 -fraternization n 1 2 @ + 1 0 01081867 -fratricide n 3 1 @ 3 0 10109342 00990963 00221981 -frau n 1 2 @ ; 1 0 06340707 -fraud n 3 2 @ ~ 3 3 00769092 10201535 00753685 -fraud_in_fact n 1 1 @ 1 0 00778213 -fraud_in_law n 1 1 @ 1 0 00778405 -fraud_in_the_factum n 1 1 @ 1 0 00778575 -fraud_in_the_inducement n 1 1 @ 1 0 00778809 -fraudulence n 3 3 @ ~ + 3 0 06760969 04875352 00753685 -fraudulent_scheme n 1 1 @ 1 0 00775943 -fraulein n 1 2 @ ; 1 0 06340838 -fraxinella n 1 1 @ 1 0 12712626 -fraxinus n 1 3 @ #m %m 1 0 12303349 -fraxinus_americana n 1 1 @ 1 0 12304115 -fraxinus_caroliniana n 1 1 @ 1 0 12304286 -fraxinus_cuspidata n 1 1 @ 1 0 12304420 -fraxinus_dipetala n 1 1 @ 1 0 12304572 -fraxinus_excelsior n 1 1 @ 1 0 12304703 -fraxinus_latifolia n 1 1 @ 1 0 12304899 -fraxinus_nigra n 1 1 @ 1 0 12305089 -fraxinus_oregona n 1 1 @ 1 0 12304899 -fraxinus_ornus n 1 1 @ 1 0 12305293 -fraxinus_pennsylvanica n 1 2 @ ~ 1 0 12305475 -fraxinus_pennsylvanica_subintegerrima n 1 1 @ 1 0 12305654 -fraxinus_quadrangulata n 1 1 @ 1 0 12305819 -fraxinus_texensis n 1 1 @ 1 0 12305986 -fraxinus_tomentosa n 1 1 @ 1 0 12306089 -fraxinus_velutina n 1 1 @ 1 0 12306270 -fray n 1 1 @ 1 0 01176335 -frazer n 1 1 @ 1 0 10979694 -frazzle n 1 3 @ + ; 1 0 14018055 -freak n 2 2 @ ~ 2 1 10109443 09769076 -freak_out n 1 1 @ 1 0 05898430 -freakishness n 1 2 @ + 1 0 04798185 -freckle n 1 3 @ #p + 1 1 05245192 -fred_astaire n 1 1 @ 1 0 10826352 -fred_hoyle n 1 1 @ 1 0 11063309 -fred_sanger n 1 1 @ 1 0 11280653 -fred_skinner n 1 1 @ 1 0 11304461 -fred_zinnemann n 1 1 @ 1 0 11407175 -freddie_mac n 1 1 @ 1 0 08384539 -frederic_auguste_bartholdi n 1 1 @ 1 0 10836555 -frederic_francois_chopin n 1 1 @ 1 0 10896644 -frederic_goudy n 1 1 @ 1 0 11009115 -frederic_william_goudy n 1 1 @ 1 0 11009115 -frederic_william_maitland n 1 1 @ 1 0 11150471 -frederick n 1 2 @ #p 1 0 09094791 -frederick_barbarossa n 1 1 @ 1 0 10979887 -frederick_carleton_lewis n 1 1 @ 1 0 11131135 -frederick_childe_hassam n 1 1 @ 1 0 11033992 -frederick_delius n 1 1 @ 1 0 10929316 -frederick_douglass n 1 1 @ 1 0 10941515 -frederick_i n 2 2 @ #m 2 0 10980097 10979887 -frederick_ii n 2 1 @ 2 0 10980448 10980256 -frederick_jackson_turner n 1 1 @ 1 0 11352701 -frederick_james_furnivall n 1 1 @ 1 0 10986272 -frederick_law_olmsted n 1 1 @ 1 0 11214513 -frederick_loewe n 1 1 @ 1 0 11137334 -frederick_moore_vinson n 1 1 @ 1 0 11367035 -frederick_north n 1 1 @ 1 0 11209790 -frederick_sanger n 1 1 @ 1 0 11280653 -frederick_soddy n 1 1 @ 1 0 11307587 -frederick_the_great n 1 1 @ 1 0 10980448 -frederick_william n 1 2 @ #m 1 0 10980681 -frederick_william_i n 1 2 @ #m 1 0 10980893 -frederick_william_ii n 1 2 @ #m 1 0 10981089 -frederick_william_iii n 1 2 @ #m 1 0 10981251 -frederick_william_iv n 1 2 @ #m 1 0 10981409 -fredericksburg n 2 3 @ #p ; 2 0 09152080 01279342 -frederico_garcia_lorca n 1 1 @ 1 0 10989977 -fredericton n 1 2 @ #p 1 0 08824654 -free n 1 2 @ + 1 0 07947958 -free-for-all n 1 1 @ 1 0 01176431 -free-lance n 1 2 @ + 1 0 10110421 -free-liver n 1 1 @ 1 0 10110731 -free-reed n 1 2 @ #p 1 0 03393199 -free-reed_instrument n 1 3 @ ~ %p 1 0 03393324 -free-tailed_bat n 1 3 @ ~ #m 1 0 02149420 -free_agency n 1 2 @ ; 1 0 14000642 -free_agent n 2 3 @ ~ ; 2 0 10109826 10109662 -free_association n 1 1 @ 1 0 05771532 -free_central_placentation n 1 1 @ 1 0 11681692 -free_electron n 1 1 @ 1 0 09285648 -free_energy n 1 3 @ ~ ; 1 0 11452218 -free_enterprise n 1 2 @ ~ 1 0 08364959 -free_fall n 2 2 @ ~ 2 0 07362699 05111835 -free_form n 1 1 @ 1 0 06306842 -free_french n 1 2 @ ; 1 0 08114581 -free_grace n 1 2 @ ; 1 0 04840715 -free_hand n 1 1 @ 1 0 13993685 -free_house n 1 2 @ ; 1 0 03393017 -free_kick n 1 3 @ ~ ; 1 0 00137534 -free_lance n 1 2 @ + 1 0 10110421 -free_list n 1 1 @ 1 0 06491168 -free_living n 1 1 @ 1 0 04931041 -free_love n 1 2 @ ~ 1 0 00848282 -free_lunch n 1 1 @ 1 0 13264522 -free_morpheme n 1 1 @ 1 0 06306842 -free_nerve_ending n 1 2 @ #p 1 0 05469240 -free_pardon n 1 2 @ ; 1 0 01249315 -free_people n 1 1 @ 1 0 07947958 -free_phagocyte n 1 2 @ ~ 1 0 05451265 -free_port n 2 1 @ 2 0 08639586 08638033 -free_press n 1 2 @ ~ 1 0 06263202 -free_radical n 1 1 @ 1 1 14874196 -free_rein n 1 1 @ 1 1 13993842 -free_soil_party n 1 1 @ 1 0 08260002 -free_spirit n 1 2 @ ~ 1 0 10109662 -free_state n 3 4 ! @ #p %p 3 0 09093608 09050089 09001184 -free_thought n 1 1 @ 1 0 06223922 -free_throw n 1 2 @ ~ 1 0 00110964 -free_throw_lane n 1 2 @ #p 1 0 03393534 -free_time n 2 1 @ 2 0 15137425 01065687 -free_trade n 1 2 @ ~ 1 0 01092643 -free_trader n 1 1 @ 1 1 10111358 -free_verse n 1 1 @ 1 0 06380373 -free_weight n 1 2 @ ~ 1 0 04571292 -free_will n 1 2 @ ~ 1 1 05198756 -free_world n 1 1 @ 1 1 08168737 -free_zone n 1 1 @ 1 0 08639586 -freebee n 1 1 @ 1 0 13272545 -freebie n 1 1 @ 1 0 13272545 -freeboard_deck n 1 2 @ #p 1 0 03392908 -freebooter n 1 3 @ ~ ; 1 0 10443170 -freedman n 1 1 @ 1 0 10109985 -freedom n 2 3 @ ~ = 2 2 13991823 14528873 -freedom_fighter n 1 2 @ ~ 1 0 10210137 -freedom_from_cruel_and_unusual_punishment n 1 2 @ ; 1 0 05185752 -freedom_from_discrimination n 1 2 @ ; 1 0 05186766 -freedom_from_double_jeopardy n 1 2 @ ; 1 0 05185106 -freedom_from_involuntary_servitude n 1 2 @ ; 1 0 05185921 -freedom_from_search_and_seizure n 1 2 @ ; 1 0 05184461 -freedom_from_self-incrimination n 1 2 @ ; 1 0 05184810 -freedom_of_assembly n 1 2 @ ; 1 0 05184082 -freedom_of_religion n 1 2 @ ; 1 0 05183624 -freedom_of_speech n 1 2 @ ; 1 0 05183779 -freedom_of_the_press n 1 2 @ ; 1 0 05183932 -freedom_of_the_seas n 1 1 @ 1 0 13994014 -freedom_of_thought n 1 1 @ 1 1 05182354 -freedom_party n 1 2 @ ; 1 0 08023843 -freedom_rider n 1 1 @ 1 0 10110093 -freedom_to_bear_arms n 1 2 @ ; 1 0 05184313 -freedwoman n 1 1 @ 1 0 10109985 -freehold n 2 2 @ + 2 0 13243261 13243134 -freeholder n 1 3 @ ~ + 1 0 10110287 -freeing n 1 3 @ ~ + 1 0 00095502 -freelance n 1 2 @ + 1 0 10110421 -freelancer n 1 2 @ + 1 0 10110421 -freeloader n 1 2 @ + 1 0 10110893 -freemail n 1 1 @ 1 0 06279805 -freeman n 1 2 @ ~ 1 1 10111023 -freemason n 1 3 @ ~ #m 1 0 10111144 -freemasonry n 2 2 @ %m 2 0 13930073 08235513 -freesia n 1 2 @ #m 1 0 12417062 -freestone n 1 1 @ 1 0 07738105 -freestyle n 1 1 @ 1 0 07460651 -freetail n 1 3 @ ~ #m 1 0 02149420 -freetailed_bat n 1 3 @ ~ #m 1 0 02149420 -freethinker n 1 1 @ 1 0 10000459 -freethinking n 1 1 @ 1 0 05966958 -freetown n 1 2 @ #p 1 0 08997132 -freeware n 1 1 @ 1 0 06567865 -freeway n 1 3 @ ~ %p 1 1 03306610 -freewheel n 1 1 @ 1 0 03393761 -freewheeler n 1 3 @ ~ + 1 1 10109662 -freewoman n 1 2 @ ~ 1 0 10111023 -freeze n 4 3 @ ~ + 4 0 13484644 11440521 01063697 00808767 -freeze-drying n 1 1 @ 1 0 13484937 -freezer n 1 2 @ + 1 0 03170635 -freezing n 1 3 @ ~ + 1 1 13484644 -freezing_mixture n 1 1 @ 1 0 14874564 -freezing_point n 1 1 @ 1 0 05013967 -fregata n 1 3 @ #m %m 1 0 02052639 -fregatidae n 1 3 @ #m %m 1 0 02052511 -freight n 3 2 @ + 3 2 02964389 01106272 13326198 -freight_agent n 1 1 @ 1 0 10111463 -freight_car n 1 3 @ ~ #m 1 1 03393912 -freight_elevator n 1 1 @ 1 0 03394149 -freight_liner n 1 1 @ 1 0 03394272 -freight_rate n 1 1 @ 1 0 13326198 -freight_train n 1 3 @ ~ %m 1 0 03394480 -freightage n 2 2 @ + 2 0 13326198 01106272 -freighter n 1 2 @ + 1 1 02878222 -fremont n 1 1 @ 1 0 10981569 -fremontia n 1 3 @ #m %m 1 0 12198628 -fremontodendron n 1 3 @ #m %m 1 0 12198628 -french n 3 5 @ ~ + ; - 3 2 06964901 09732903 10981750 -french-fried_potatoes n 1 1 @ 1 0 07711080 -french_academy n 1 1 @ 1 0 08280813 -french_and_indian_war n 1 2 @ #p 1 0 01304820 -french_bean n 1 1 @ 1 0 07728585 -french_blue n 1 1 @ 1 0 15083283 -french_bracken n 1 1 @ 1 0 12953484 -french_bread n 1 2 @ ~ 1 0 07687469 -french_bulldog n 1 1 @ 1 0 02108915 -french_canadian n 1 2 @ ~ 1 1 09696763 -french_capital n 1 4 @ #p %m %p 1 0 08932568 -french_chalk n 1 1 @ 1 0 15066666 -french_congo n 1 3 @ #p %p 1 0 08734044 -french_door n 1 3 @ ~ %p 1 0 03394649 -french_dressing n 1 1 @ 1 0 07833816 -french_endive n 1 2 @ #p 1 0 07731767 -french_foreign_legion n 1 1 @ 1 0 08272086 -french_foreign_office n 1 1 @ 1 0 08114400 -french_franc n 1 1 @ 1 0 13677788 -french_fries n 1 1 @ 1 0 07711080 -french_fritter n 1 1 @ 1 0 07639716 -french_guinea n 1 4 @ #p %m %p 1 0 08947319 -french_heel n 1 1 @ 1 0 03394816 -french_honeysuckle n 2 2 @ #m 2 0 12951146 12534862 -french_horn n 1 1 @ 1 1 03394916 -french_indochina n 1 2 @ #p 1 0 08731953 -french_kiss n 1 1 @ 1 0 00138799 -french_knot n 1 1 @ 1 0 03395095 -french_lavender n 2 2 @ %s 2 0 12850336 12850168 -french_leave n 1 1 @ 1 0 00053405 -french_lesson n 1 1 @ 1 0 00729637 -french_loaf n 1 1 @ 1 0 07684084 -french_marigold n 1 1 @ 1 0 12020941 -french_oceania n 1 3 @ #p %p 1 0 08989697 -french_omelet n 1 1 @ 1 0 07843117 -french_pancake n 1 2 @ ~ 1 0 07641138 -french_pastry n 1 2 @ ~ 1 0 07626959 -french_people n 1 1 @ 1 0 09732903 -french_person n 1 3 @ ~ #m 1 0 09708405 -french_polish n 2 1 @ 2 0 04955426 03395256 -french_polish_shellac n 1 1 @ 1 0 03395256 -french_polynesia n 1 3 @ #p %p 1 0 08989697 -french_region n 1 3 @ ~ #p 1 0 08939562 -french_republic n 1 6 @ #m #p %m %p - 1 0 08929922 -french_revolution n 1 2 @ ; 1 1 01305007 -french_riviera n 1 2 @ #p 1 0 08939437 -french_roof n 1 1 @ 1 0 03395401 -french_rye n 1 2 @ #m 1 0 12108871 -french_sorrel n 2 3 @ #p %p 2 0 12604845 07736527 -french_spinach n 1 1 @ 1 0 11830252 -french_sudan n 1 4 @ #p %m %p 1 0 08965598 -french_teacher n 1 1 @ 1 1 10111601 -french_telephone n 1 2 @ %p 1 0 03488438 -french_toast n 1 1 @ 1 0 07868200 -french_ultramarine n 1 1 @ 1 0 15083283 -french_ultramarine_blue n 1 1 @ 1 1 15083283 -french_vermouth n 1 1 @ 1 0 07899434 -french_weed n 1 2 @ #m 1 0 11898775 -french_west_indies n 1 3 @ #p %m 1 0 08747887 -french_window n 1 1 @ 1 1 03395514 -frenchman n 1 3 @ ~ #m 1 1 09708405 -frenchwoman n 1 3 @ ~ #m 1 0 09708405 -frenzy n 1 2 @ ~ 1 1 14391876 -freon n 1 2 @ ; 1 0 14874731 -frequence n 1 3 @ ~ + 1 0 15278281 -frequency n 3 3 @ ~ + 3 3 15278281 13821570 13598237 -frequency-response_characteristic n 1 2 @ ; 1 0 07000716 -frequency-response_curve n 1 2 @ ; 1 0 07000716 -frequency_band n 1 2 @ ; 1 0 06260628 -frequency_distribution n 1 2 @ ; 1 0 06025521 -frequency_modulation n 1 1 @ 1 0 06281721 -frequency_response n 1 3 @ %p ; 1 0 05020019 -frequentative n 1 1 @ 1 0 06473041 -frequenter n 1 3 @ ~ + 1 0 10407726 -fresco n 2 2 @ + 2 0 03395630 00937105 -fresh_bean n 1 2 @ ~ 1 0 07727578 -fresh_breeze n 1 2 @ #p 1 0 11432887 -fresh_fish n 1 2 @ ; 1 1 09891300 -fresh_food n 1 1 @ 1 0 07572712 -fresh_foods n 1 1 @ 1 0 07572712 -fresh_gale n 1 2 @ #p 1 0 11462152 -fresh_start n 1 1 @ 1 0 14484646 -fresh_water n 1 3 ! @ ~ 1 0 15009326 -freshener n 1 2 @ + 1 0 03395745 -fresher n 1 1 @ 1 0 10111688 -freshet n 1 1 @ 1 0 07407137 -freshman n 2 2 @ ~ 2 2 10111688 10355449 -freshman_class n 1 1 @ 1 0 08239706 -freshness n 5 5 ! @ ~ = + 5 2 04926728 04800596 14051056 05635055 04915866 -freshwater n 1 2 @ ~ 1 0 15009326 -freshwater_bass n 2 5 @ ~ #m #p %p 2 0 07777512 02564270 -freshwater_bream n 2 5 @ ~ #m #p %p 2 0 07777358 02563182 -freshwater_clam n 1 2 @ ~ 1 0 01964441 -freshwater_cordgrass n 1 1 @ 1 0 12139921 -freshwater_eel n 1 3 @ #m %p 1 0 02526818 -freshwater_fish n 1 2 @ ~ 1 0 07776545 -freshwater_limpet n 1 2 @ #m 1 0 01949973 -freshwater_mussel n 1 2 @ ~ 1 0 01964441 -fresnel n 1 1 @ 1 0 10981961 -fresnel_lens n 1 2 @ #p 1 0 03395859 -fresno n 1 2 @ #p 1 0 09063259 -fret n 4 2 @ + 4 0 14403560 04683002 03396311 03396074 -fretfulness n 1 3 @ ~ + 1 0 07552729 -fretsaw n 1 1 @ 1 0 03598783 -fretwork n 1 3 @ ~ %p 1 0 03646916 -freud n 1 2 @ + 1 1 10982127 -freudian n 1 1 @ 1 0 10111779 -freudian_psychology n 1 1 @ 1 0 06057326 -freudian_slip n 1 1 @ 1 0 00074092 -frey n 1 2 @ ; 1 0 09580125 -freya n 1 2 @ ; 1 0 09580354 -freyja n 1 2 @ ; 1 0 09580354 -freyr n 1 2 @ ; 1 0 09580125 -frg n 1 6 @ #m #p %m %p - 1 0 08766988 -fri n 1 1 @ 1 0 15164463 -friability n 1 2 @ + 1 0 04939742 -friar n 1 2 @ ~ 1 0 10111903 -friar's-cowl n 1 2 @ #m 1 0 11785276 -friar's_lantern n 1 1 @ 1 0 11459369 -friar_preacher n 1 3 @ ~ #m 1 0 10778345 -friary n 1 1 @ 1 0 03396580 -fricandeau n 1 1 @ 1 0 07666071 -fricassee n 1 3 @ ~ + 1 0 07592094 -fricative n 1 2 @ ~ 1 0 07118554 -fricative_consonant n 1 2 @ ~ 1 0 07118554 -frick n 1 1 @ 1 0 10982295 -friction n 3 3 @ ~ + 3 1 13981137 11459538 00712031 -friction_clutch n 1 2 @ ~ 1 0 03396654 -friction_match n 1 3 @ ~ %p 1 0 03728437 -friction_tape n 1 1 @ 1 0 03396841 -friday n 1 1 @ 1 1 15164463 -fridge n 1 3 @ ~ %p 1 0 03273913 -fridtjof_nansen n 1 1 @ 1 0 11199727 -fried_egg n 1 1 @ 1 1 07843636 -fried_rice n 1 1 @ 1 0 07868340 -friedan n 1 1 @ 1 0 10982450 -friedcake n 1 2 @ ~ 1 0 07638676 -friedman n 1 1 @ 1 0 10982658 -friedman_test n 1 1 @ 1 0 05744010 -friedreich's_ataxia n 1 1 @ 1 0 14091525 -friedrich_anton_mesmer n 1 1 @ 1 0 11176932 -friedrich_august_kekule n 1 1 @ 1 0 11098876 -friedrich_august_kekule_von_stradonitz n 1 1 @ 1 0 11098876 -friedrich_august_von_hayek n 1 1 @ 1 0 11035957 -friedrich_august_wolf n 1 1 @ 1 0 11394214 -friedrich_engels n 1 1 @ 1 0 10959223 -friedrich_froebel n 1 1 @ 1 0 10983758 -friedrich_gottlieb_klopstock n 1 1 @ 1 0 11108084 -friedrich_hebbel n 1 1 @ 1 0 11037836 -friedrich_krupp n 1 1 @ 1 0 11111710 -friedrich_max_muller n 1 1 @ 1 0 11195452 -friedrich_wilhelm_august_froebel n 1 1 @ 1 0 10983758 -friedrich_wilhelm_bessel n 1 1 @ 1 0 10849625 -friedrich_wilhelm_nietzsche n 1 1 @ 1 0 11207125 -friend n 5 5 ! @ ~ #m + 5 3 10112591 09785042 09763784 10677713 09679708 -friend_of_the_court n 1 2 @ ; 1 0 09788237 -friendlessness n 1 2 @ + 1 0 04622672 -friendliness n 2 5 ! @ ~ = + 2 1 07499615 04654337 -friendly n 1 3 ! @ ; 1 0 08397489 -friendly_fire n 1 1 @ 1 0 00990963 -friendly_islands n 1 3 @ #p %m 1 0 09037133 -friendly_relationship n 1 2 @ ~ 1 0 13931145 -friendly_takeover n 1 1 @ 1 0 00790947 -friendship n 1 3 @ ~ + 1 1 13931145 -friendship_plant n 1 2 @ #m 1 0 12395463 -frier n 1 2 @ + 1 0 07645469 -fries n 1 1 @ 1 0 07711080 -friesian n 1 1 @ 1 0 02407390 -friesland n 2 2 @ #p 2 0 08951513 08951385 -frieze n 2 2 @ #p 2 1 03397087 03396997 -frigate n 2 2 @ ~ 2 0 03397412 03397266 -frigate_bird n 1 2 @ #m 1 0 02052775 -frigg n 1 2 @ ; 1 0 09580521 -frigga n 1 2 @ ; 1 0 09580521 -fright n 1 5 @ ~ %p = + 1 1 07519253 -frightening n 1 3 @ + ; 1 0 01222666 -frightfulness n 1 3 @ ~ + 1 0 04782466 -frigid_zone n 1 2 @ ~ 1 0 08573258 -frigidity n 3 3 @ ~ + 3 0 05213693 05015117 04629604 -frigidness n 3 3 @ ~ + 3 0 05213693 05015117 04629604 -frijol n 1 2 @ #m 1 0 12557064 -frijole n 2 2 @ #m 2 0 12557064 07727377 -frijoles_refritos n 1 2 @ ; 1 0 07881625 -frijolillo n 1 2 @ #m 1 0 12570703 -frijolito n 1 2 @ #m 1 0 12570703 -frill n 4 4 @ ~ + ; 4 0 05547149 05546997 03397532 03376438 -frilled_lizard n 1 2 @ #m 1 0 01688243 -frimaire n 1 2 @ #p 1 0 15176319 -fringe n 6 3 @ %p + 6 2 13903576 08690792 11459748 07974850 05258985 03397762 -fringe-toed_lizard n 1 2 @ #m 1 0 01679005 -fringe_benefit n 1 2 @ ~ 1 1 13298011 -fringe_bush n 1 1 @ 1 0 12302248 -fringe_cups n 1 2 @ #m 1 0 12803226 -fringe_tree n 1 3 @ ~ #m 1 0 12302071 -fringed_gecko n 1 2 @ #m 1 0 01675352 -fringed_gentian n 1 3 @ ~ #m 1 0 12296432 -fringed_grass_of_parnassus n 1 2 @ #m 1 0 12801966 -fringed_loosestrife n 1 1 @ 1 0 12095543 -fringed_orchid n 1 3 @ ~ #m 1 0 12065316 -fringed_orchis n 1 3 @ ~ #m 1 0 12065316 -fringed_pink n 2 2 @ #m 2 0 12811501 11809754 -fringed_polygala n 1 1 @ 1 0 12705698 -fringed_poppy_mallow n 1 1 @ 1 0 12175181 -fringepod n 1 2 @ #m 1 0 11899223 -fringilla n 1 3 @ #m %m 1 0 01530256 -fringilla_coelebs n 1 2 @ #m 1 0 01530439 -fringilla_montifringilla n 1 2 @ #m 1 0 01530575 -fringillidae n 1 3 @ #m %m 1 0 01529036 -frippery n 1 1 @ 1 0 02774502 -frisbee n 1 2 @ ; 1 0 03397947 -frisch n 3 1 @ 3 0 10983172 10983007 10982870 -frisia n 1 4 @ #p %p + 1 0 08951777 -frisian n 2 2 @ ~ 2 0 09699918 06955242 -frisian_islands n 1 2 @ #p 1 0 08951957 -frisk n 1 3 @ ~ + 1 0 00946060 -friskiness n 1 2 @ + 1 0 04649835 -frisking n 1 3 @ ~ + 1 0 00946060 -frisson n 1 1 @ 1 0 07520112 -fritillaria n 1 3 @ #m %m 1 0 12451789 -fritillaria_affinis n 1 1 @ 1 0 12452256 -fritillaria_agrestis n 1 1 @ 1 0 12452673 -fritillaria_biflora n 1 1 @ 1 0 12452480 -fritillaria_imperialis n 1 1 @ 1 0 12452836 -fritillaria_lanceolata n 1 1 @ 1 0 12452256 -fritillaria_liliaceae n 1 1 @ 1 0 12453018 -fritillaria_meleagris n 1 1 @ 1 0 12453186 -fritillaria_micrantha n 1 1 @ 1 0 12453539 -fritillaria_mutica n 1 1 @ 1 0 12452256 -fritillaria_parviflora n 1 1 @ 1 0 12453539 -fritillaria_pluriflora n 1 1 @ 1 0 12453714 -fritillaria_recurva n 1 1 @ 1 0 12453857 -fritillary n 2 3 @ ~ #m 2 0 12451915 02278210 -frittata n 1 1 @ 1 0 07868508 -fritter n 1 2 @ ~ 1 0 07639855 -fritter_batter n 1 1 @ 1 0 07861334 -fritz_albert_lipmann n 1 1 @ 1 0 11133938 -fritz_haber n 1 1 @ 1 0 11021178 -fritz_kreisler n 1 1 @ 1 0 11110791 -fritz_w._meissner n 1 1 @ 1 0 11171409 -friuli n 1 1 @ 1 0 06967935 -friuli-venezia_giulia n 1 2 @ #p 1 0 08806617 -friulian n 1 1 @ 1 0 06967935 -frivolity n 3 4 ! @ ~ + 3 0 04648207 02774502 00513401 -frivolousness n 1 3 @ ~ + 1 0 04648207 -frizz n 1 2 @ + 1 0 14575700 -frobisher n 1 1 @ 1 0 10983503 -frock n 2 4 @ ~ %p + 2 0 03398153 03236735 -frock_coat n 1 2 @ ~ 1 0 03398228 -froebel n 1 1 @ 1 0 10983758 -froelichia n 1 3 @ #m %m 1 0 11825535 -frog n 3 3 @ ~ + 3 1 01639765 09708648 03398382 -frog's-bit n 1 2 @ #m 1 0 12613408 -frog's-bit_family n 1 3 @ #m %m 1 0 12612913 -frog's_lettuce n 1 2 @ #m 1 0 12616996 -frog_kick n 1 2 @ #p 1 0 00574608 -frog_legs n 1 2 @ #p 1 0 07868684 -frog_orchid n 2 2 @ #m 2 0 12065649 12052447 -frogbit n 1 2 @ #m 1 0 12613408 -frogbit_family n 1 3 @ #m %m 1 0 12612913 -frogfish n 1 2 @ #m 1 0 02549248 -froghopper n 1 1 @ 1 0 02257985 -frogman n 1 2 @ ~ 1 0 10019552 -frogmouth n 1 2 @ #m 1 0 01837072 -frolic n 1 3 @ ~ + 1 1 00511817 -frolicsomeness n 1 2 @ + 1 0 04649835 -fromental_halevy n 1 1 @ 1 0 11023883 -frond n 1 1 @ 1 0 13154494 -front n 10 6 ! @ ~ #p + ; 10 5 08573472 08573674 05940302 03398467 10113583 14514491 11460488 08642632 08626080 08464601 -front-porch_campaign n 1 1 @ 1 0 00799809 -front-porch_campaigning n 1 1 @ 1 0 00799809 -front-runner n 1 1 @ 1 0 10113753 -front-stall n 1 1 @ 1 0 03005619 -front_bench n 1 3 @ + ; 1 0 03399047 -front_burner n 1 2 ! @ 1 0 13950282 -front_crawl n 1 2 @ %p 1 0 00570366 -front_door n 1 2 @ %p 1 1 03399240 -front_end n 1 2 @ ~ 1 0 08573472 -front_entrance n 1 2 @ %p 1 0 03399240 -front_line n 1 2 @ #p 1 1 08573674 -front_man n 1 1 @ 1 0 10113583 -front_matter n 1 1 @ 1 0 06390688 -front_porch n 1 1 @ 1 1 03399677 -front_projector n 1 1 @ 1 0 03399761 -front_room n 1 3 @ ~ #p 1 1 03679712 -front_tooth n 1 2 @ ~ 1 0 05306190 -front_yard n 1 1 @ 1 1 03399852 -frontage n 3 4 @ ~ + ; 3 1 05123935 13827943 03313333 -frontage_road n 1 1 @ 1 0 03398775 -frontal n 3 2 @ ~ 3 0 03399579 03398950 03313333 -frontal_bone n 1 3 @ #p %p 1 0 05541231 -frontal_cortex n 1 3 @ #p %p 1 0 05493758 -frontal_eminence n 1 2 @ #p 1 0 05541509 -frontal_gyrus n 1 2 @ #p 1 0 05488750 -frontal_lobe n 1 3 @ #p %p 1 0 05493758 -frontal_lobotomy n 1 2 @ ~ 1 0 00684128 -frontal_sinus n 1 1 @ 1 0 05253338 -frontal_suture n 1 2 @ #p 1 0 05544078 -frontbencher n 1 3 @ + ; 1 0 10113362 -frontier n 3 2 @ ~ 3 1 08505402 08501114 05998052 -frontier_settlement n 1 1 @ 1 1 08374653 -frontiersman n 1 2 @ ~ 1 0 10113072 -frontierswoman n 1 2 @ ~ 1 0 10113249 -frontispiece n 2 1 @ 2 0 03399500 03399391 -frontlet n 1 1 @ 1 0 03399579 -frontstall n 1 1 @ 1 0 03005619 -frost n 4 2 @ + 4 2 14915622 11440521 13485270 10983931 -frost's_bolete n 1 2 @ #m 1 0 13055792 -frost-weed n 2 1 @ 2 0 12375769 12031547 -frost_fish n 1 2 @ #m 1 0 02622955 -frost_heave n 1 1 @ 1 0 11461684 -frost_heaving n 1 1 @ 1 0 11461684 -frost_mist n 1 3 @ #p %s 1 0 11509377 -frost_snow n 1 3 @ #p %s 1 0 11509377 -frostbite n 1 2 @ ~ 1 1 14294678 -frosted_bat n 1 2 @ #m 1 0 02145910 -frostiness n 2 2 @ + 2 0 05015878 04961583 -frosting n 1 2 @ + 1 0 07620822 -frostweed n 2 1 @ 2 0 12375769 12031547 -frostwort n 1 1 @ 1 0 12375769 -froth n 1 3 @ ~ + 1 1 09282724 -frothiness n 1 2 @ + 1 0 04733347 -frottage n 1 1 @ 1 0 00856076 -frotteur n 1 1 @ 1 0 10113869 -frown n 1 2 @ + 1 0 06877849 -frown_line n 1 1 @ 1 0 13906669 -frozen_custard n 1 1 @ 1 0 07617051 -frozen_dessert n 1 2 @ ~ 1 0 07611358 -frozen_food n 1 1 @ 1 0 07572858 -frozen_foods n 1 1 @ 1 0 07572858 -frozen_metaphor n 1 1 @ 1 0 07107083 -frozen_orange_juice n 1 1 @ 1 0 07924955 -frozen_pudding n 1 1 @ 1 0 07616906 -frozen_yogurt n 1 1 @ 1 0 07616046 -frs n 1 2 @ %m 1 0 08350470 -fructidor n 1 2 @ #p 1 0 15177705 -fructification n 2 2 @ + 2 0 13485408 11550205 -fructose n 1 1 @ 1 0 14874932 -fructosuria n 1 1 @ 1 0 14267588 -frugality n 1 3 @ ~ + 1 0 04893358 -frugalness n 1 3 @ ~ + 1 0 04893358 -fruit n 3 3 @ ~ + 3 3 13134947 04612722 07294550 -fruit_bar n 1 2 @ ~ 1 0 07637737 -fruit_bat n 1 3 @ ~ #m 1 0 02139671 -fruit_cocktail n 1 1 @ 1 0 07581931 -fruit_compote n 1 1 @ 1 0 07611046 -fruit_crush n 1 2 @ ~ 1 0 07924033 -fruit_custard n 1 1 @ 1 0 07619508 -fruit_drink n 1 2 @ ~ 1 0 07925966 -fruit_fly n 1 2 @ ~ 1 0 02196344 -fruit_grower n 1 1 @ 1 0 10114114 -fruit_juice n 1 2 @ ~ 1 0 07924033 -fruit_machine n 1 2 @ ; 1 0 03399971 -fruit_of_the_poisonous_tree n 1 1 @ 1 0 06654275 -fruit_punch n 1 1 @ 1 0 07930062 -fruit_salad n 1 2 @ ~ 1 0 07807922 -fruit_sugar n 1 1 @ 1 0 14874932 -fruit_tree n 1 3 @ ~ %s 1 1 12651821 -fruitage n 1 2 @ + 1 0 13086753 -fruitcake n 2 2 @ ~ 2 0 09974496 07631350 -fruiterer n 1 3 @ + ; 1 0 10113997 -fruitfulness n 2 4 ! @ ~ + 2 1 05147381 05625066 -fruiting_body n 1 2 @ ~ 1 0 13089246 -fruition n 3 2 @ + 3 0 14575849 05214374 00061917 -fruitlessness n 2 4 ! @ ~ + 2 0 05649538 05148186 -fruitlet n 1 2 @ + 1 0 13135692 -fruitwood n 1 3 @ ~ #s 1 0 12652876 -frumenty n 1 1 @ 1 0 07704656 -frump n 1 2 @ + 1 0 10114209 -frunze n 1 2 @ #p 1 0 09020792 -frustration n 3 2 @ + 3 2 07540866 00067990 07518663 -frustum n 1 2 @ ~ 1 0 13917457 -fry n 3 4 @ ~ #m %p 3 0 10984257 10984126 09917593 -fry_bread n 1 1 @ 1 0 07685546 -fry_cook n 1 1 @ 1 0 10114384 -frye n 1 1 @ 1 0 10984418 -fryer n 1 2 @ + 1 0 07645469 -frying n 1 2 @ + 1 0 00246940 -frying_pan n 1 3 @ ~ %p 1 0 03400231 -frypan n 1 3 @ ~ %p 1 0 03400231 -fsb n 2 1 @ 2 0 08485598 08424662 -fsh n 1 1 @ 1 0 14748765 -ft n 1 3 @ #p %p 1 0 13650045 -ft-l n 1 1 @ 1 0 13641175 -ftc n 1 2 @ %p 1 0 08351107 -fthm n 2 3 @ %p ; 2 0 13660178 13617308 -fto n 1 3 @ ~ ; 1 0 08392137 -ftp n 1 4 @ ~ + ; 1 0 06665370 -fucaceae n 1 3 @ #m %m 1 0 01404129 -fucales n 1 3 @ #m %m 1 0 01403805 -fuchs n 1 1 @ 1 0 10984589 -fuchsia n 1 3 @ ~ #m 1 0 12343480 -fuchsia_coccinea n 1 1 @ 1 0 12343753 -fuchsia_excorticata n 1 1 @ 1 0 12343951 -fuck n 1 3 @ + ; 1 0 00846021 -fuck_all n 1 2 @ ; 1 0 13740765 -fucker n 2 2 @ + 2 0 10114550 10114476 -fuckhead n 1 1 @ 1 0 10039663 -fucking n 1 3 @ + ; 1 0 00846021 -fuckup n 2 3 @ ~ + 2 0 09879744 00074790 -fucoid n 2 2 @ #m 2 0 01404495 01404365 -fucoid_algae n 1 2 @ #m 1 0 01404365 -fucus n 1 2 @ #m 1 0 01405007 -fucus_serratus n 1 2 @ #m 1 0 01405107 -fucus_vesiculosus n 1 2 @ #m 1 0 01405250 -fuddle n 1 2 @ ~ 1 0 14500567 -fuddy-duddy n 1 2 @ ; 1 0 10114662 -fudge n 1 2 @ ~ 1 0 07605474 -fudge_factor n 1 1 @ 1 0 13755957 -fudge_sauce n 1 1 @ 1 0 07837002 -fuego n 1 2 @ #p 1 0 09174908 -fuel n 1 3 @ ~ + 1 1 14875077 -fuel-air_bomb n 1 1 @ 1 0 04420461 -fuel-air_explosive n 1 2 @ ~ 1 0 03400389 -fuel_cell n 1 1 @ 1 0 03400798 -fuel_consumption_rate n 1 1 @ 1 0 13823287 -fuel_filter n 1 2 @ #p 1 0 03400972 -fuel_gauge n 1 2 @ #p 1 0 03401129 -fuel_indicator n 1 2 @ #p 1 0 03401129 -fuel_injection n 1 1 @ 1 0 03401279 -fuel_injection_system n 1 1 @ 1 0 03401279 -fuel_level n 1 1 @ 1 0 13369074 -fuel_line n 1 2 @ #p 1 0 03401500 -fuel_oil n 1 2 @ ~ 1 0 14686585 -fuel_pod n 1 2 @ #p 1 0 03973945 -fuel_system n 1 3 @ #p %p 1 0 03401721 -fueling n 1 2 @ + 1 0 01059719 -fuentes n 1 1 @ 1 0 10984876 -fuerzas_armadas_revolucionarios_de_colombia n 1 2 @ ; 1 0 08042183 -fug n 1 3 @ + ; 1 0 14521954 -fugaciousness n 1 3 @ + ; 1 0 05055503 -fugacity n 2 3 @ + ; 2 0 05055878 05055503 -fugard n 1 1 @ 1 0 10984979 -fugitive n 2 2 @ ~ 2 1 10115082 10114897 -fugitive_from_justice n 1 2 @ ~ 1 0 10114897 -fugleman n 1 1 @ 1 0 10115271 -fugo n 1 1 @ 1 0 02782432 -fugu n 1 1 @ 1 0 07782204 -fugue n 3 2 @ + 3 0 14394479 14030291 07043675 -fuji n 2 2 @ #p 2 0 12646605 09175016 -fuji-san n 1 2 @ #p 1 0 09175016 -fuji_cherry n 1 1 @ 1 0 12646605 -fujinoyama n 1 2 @ #p 1 0 09175016 -fujiyama n 1 2 @ #p 1 0 09175016 -fukien n 1 1 @ 1 0 06930633 -fukkianese n 1 1 @ 1 0 06930633 -fukuoka n 1 2 @ #p 1 0 08925830 -ful n 1 1 @ 1 0 06996510 -fula n 2 1 @ 2 0 09705471 06996510 -fulah n 1 1 @ 1 0 09705471 -fulani n 2 1 @ 2 0 09705471 06996510 -fulbe n 1 1 @ 1 0 09705471 -fulbright n 1 1 @ 1 0 10985160 -fulcrum n 1 2 @ #p 1 0 03402080 -fulfillment n 2 3 @ ~ + 2 2 07532112 00062451 -fulfilment n 2 3 @ ~ + 2 0 07532112 00062451 -fulgoridae n 1 3 @ #m %m 1 0 02259844 -fulica n 1 3 @ #m %m 1 0 02017878 -fulica_americana n 1 2 @ #m 1 0 02018207 -fulica_atra n 1 2 @ #m 1 0 02018368 -full n 1 3 @ ~ #p 1 0 15207556 -full-dress_uniform n 1 2 @ ; 1 0 03402188 -full-of-the-moon n 1 3 @ ~ #p 1 1 15207556 -full-wave_rectifier n 1 1 @ 1 0 03402621 -full_admiral n 1 2 @ ~ 1 0 09771204 -full_blood n 1 1 @ 1 0 04924003 -full_complement n 1 2 @ ~ 1 1 08218212 -full_cousin n 1 1 @ 1 0 09972010 -full_dress n 1 2 @ %p 1 0 03239054 -full_employment n 1 1 @ 1 0 14489523 -full_faith_and_credit n 1 1 @ 1 0 06686573 -full_gainer n 1 1 @ 1 0 00443917 -full_general n 1 3 @ ~ ; 1 0 10123844 -full_house n 1 1 @ 1 0 07958099 -full_metal_jacket n 1 1 @ 1 0 03402369 -full_moon n 1 3 @ ~ #p 1 1 15207556 -full_moon_maple n 1 1 @ 1 0 12755727 -full_nelson n 1 2 @ ; 1 0 00813571 -full_page n 1 1 @ 1 0 06257250 -full_phase_of_the_moon n 1 3 @ ~ #p 1 0 15207556 -full_point n 1 2 @ ~ 1 0 06843520 -full_professor n 1 1 @ 1 0 10115748 -full_radiator n 1 1 @ 1 0 09222406 -full_service_bank n 1 2 @ ~ 1 0 08418420 -full_skirt n 1 2 @ %p 1 0 03402511 -full_stop n 1 2 @ ~ 1 0 06843520 -full_term n 1 2 @ #p 1 0 15226451 -full_treatment n 1 1 @ 1 0 14461679 -fullback n 2 4 @ #m + ; 2 1 10115430 00726867 -fuller n 3 2 @ + 3 0 10985653 10985440 10115603 -fuller's_earth n 1 1 @ 1 0 14875707 -fuller's_teasel n 1 1 @ 1 0 12682882 -fullerene n 1 3 @ ~ ; 1 0 14622141 -fullness n 4 5 ! @ ~ = + 4 2 14461519 04989015 14451911 05106024 -fulmar n 1 2 @ #m 1 0 02060133 -fulmar_petrel n 1 2 @ #m 1 0 02060133 -fulmarus n 1 3 @ #m %m 1 0 02060016 -fulmarus_glacialis n 1 2 @ #m 1 0 02060133 -fulminate n 1 2 @ ~ 1 0 14798709 -fulminate_of_mercury n 1 2 @ #p 1 0 14798815 -fulminating_mercury n 1 2 @ #p 1 0 14798815 -fulmination n 2 2 @ + 2 0 07233304 00377907 -fulminic_acid n 1 1 @ 1 0 14611804 -fulsomeness n 2 2 @ + 2 0 06696308 04868505 -fulton n 1 1 @ 1 0 10985838 -fulvic_acid n 1 1 @ 1 0 14875878 -fulvicin n 1 2 @ ; 1 0 03460674 -fumaria n 1 3 @ #m %m 1 0 11909353 -fumaria_claviculata n 1 2 @ #m 1 0 11904274 -fumaria_fungosa n 1 1 @ 1 0 11909864 -fumaria_officinalis n 1 2 @ #m 1 0 11909527 -fumaria_sempervirens n 1 1 @ 1 0 11904477 -fumariaceae n 1 3 @ #m %m 1 0 11909048 -fumaric_acid n 1 1 @ 1 0 14876066 -fumble n 1 3 @ + ; 1 1 00075912 -fumbler n 1 2 @ + 1 0 09879744 -fume n 1 3 @ ~ + 1 0 11508092 -fumed_oak n 1 1 @ 1 1 12269099 -fumeroot n 2 2 @ #m 2 0 11909527 11904743 -fumes n 1 1 @ 1 1 14837364 -fumewort n 2 2 @ #m 2 0 11909527 11904743 -fumigant n 1 2 @ + 1 0 14876206 -fumigation n 1 2 @ + 1 0 00712979 -fumigator n 2 2 @ + 2 0 10115840 03402785 -fumimaro_konoe n 1 1 @ 1 0 11108767 -fumimaro_konoye n 1 1 @ 1 0 11108767 -fumitory n 1 2 @ #m 1 0 11909527 -fumitory_family n 1 3 @ #m %m 1 0 11909048 -fun n 4 5 @ ~ = + ; 4 3 00429949 06780882 01260556 04649261 -fun_run n 1 1 @ 1 0 07460403 -funafuti n 1 2 @ #p 1 0 08840657 -funambulism n 1 2 @ + 1 0 00324978 -funambulist n 1 2 @ + 1 0 10115946 -function n 7 6 @ ~ #p = + ; 7 3 13783816 05149325 00720565 13781164 08252467 07447261 06582403 -function_call n 1 1 @ 1 0 06582986 -function_word n 1 3 @ ~ %p 1 0 06291318 -functional_anatomy n 1 1 @ 1 0 06059709 -functional_calculus n 1 2 @ %p 1 0 06165364 -functional_disorder n 1 2 ! @ 1 0 14053384 -functional_genomics n 1 1 @ 1 0 06075218 -functional_illiterate n 1 1 @ 1 0 10116093 -functional_magnetic_resonance_imaging n 1 2 @ ~ 1 0 00902757 -functionalism n 2 3 @ + ; 2 0 06140054 05962043 -functionalist n 1 2 @ + 1 0 10116246 -functionality n 1 2 @ + 1 0 05151372 -functionary n 1 3 @ ~ + 1 0 10372373 -functioning n 1 2 @ + 1 0 13525549 -fund n 3 3 @ ~ + 3 2 13358549 13367070 08070850 -fund-raising_campaign n 1 1 @ 1 0 00800270 -fund-raising_drive n 1 1 @ 1 1 00800270 -fund-raising_effort n 1 1 @ 1 0 00800270 -fundament n 3 3 @ ~ #p 3 0 05793554 05559256 03387016 -fundamental n 2 1 @ 2 0 07328058 05719958 -fundamental_analysis n 1 2 @ ; 1 0 00649090 -fundamental_frequency n 1 1 @ 1 0 05719958 -fundamental_interaction n 1 3 @ ~ ; 1 0 11516113 -fundamental_law n 1 3 @ ~ ; 1 1 06533648 -fundamental_measure n 1 2 @ ~ 1 0 13575869 -fundamental_particle n 1 4 @ ~ #p ; 1 0 09272085 -fundamental_principle n 1 2 @ ~ 1 0 05871362 -fundamental_quantity n 1 2 @ ~ 1 0 13575869 -fundamentalism n 1 2 @ + 1 0 06231328 -fundamentalist n 1 2 @ + 1 0 10116370 -fundamentals n 1 2 @ ~ 1 1 05871362 -fundamentals_analysis n 1 2 @ ; 1 0 00649090 -funding n 2 2 @ + 2 0 13365698 01099109 -fundraiser n 2 1 @ 2 0 10116478 07455640 -funds n 1 2 @ ~ 1 1 13356112 -fundulus n 1 3 @ #m %m 1 0 01447001 -fundulus_heteroclitus n 1 2 @ #m 1 0 01447139 -fundulus_majalis n 1 2 @ #m 1 0 01447331 -fundus n 1 2 @ ; 1 0 05264545 -funeral n 1 3 @ ~ + 1 1 07451463 -funeral-residence n 1 1 @ 1 0 03402941 -funeral_chapel n 1 1 @ 1 0 03402941 -funeral_church n 1 1 @ 1 0 03402941 -funeral_director n 1 2 @ ~ 1 0 10331841 -funeral_home n 1 1 @ 1 0 03402941 -funeral_march n 1 1 @ 1 0 07059028 -funeral_parlor n 1 1 @ 1 1 03402941 -funeral_parlour n 1 1 @ 1 0 03402941 -funeral_pyre n 1 1 @ 1 0 07963494 -funeral_undertaker n 1 2 @ ~ 1 0 10331841 -funfair n 2 3 @ ~ %p 2 0 08494231 00519333 -fungal_infection n 1 2 @ ~ 1 0 14176895 -fungi n 1 3 @ %m - 1 0 12992464 -fungi_imperfecti n 1 3 @ #m %m 1 0 12995724 -fungia n 1 2 @ #m 1 0 01917751 -fungibility n 1 3 @ ~ + 1 0 04735929 -fungible n 1 2 @ + 1 0 03403169 -fungicide n 1 3 @ ~ + 1 0 02720201 -fungus n 1 6 @ ~ #m %p + - 1 0 12992868 -fungus_family n 1 3 @ ~ #m 1 0 11590783 -fungus_genus n 1 3 @ ~ #m 1 0 11592146 -fungus_gnat n 2 3 @ ~ #m 2 0 02204722 02203592 -fungus_kingdom n 1 3 @ %m - 1 0 12992464 -fungus_order n 1 3 @ ~ #m 1 0 11594676 -funicle n 1 1 @ 1 0 11678199 -funicular n 1 3 @ %p + 1 0 02934641 -funicular_railway n 1 2 @ %p 1 0 02934641 -funiculitis n 1 1 @ 1 0 14346280 -funiculus n 2 2 @ ~ 2 0 11678199 05264756 -funk n 3 2 @ + 3 0 14404610 10986022 07063585 -funk_hole n 1 1 @ 1 0 03403325 -funka n 1 3 @ #m %m 1 0 12457519 -funkaceae n 1 2 @ #m 1 0 12457250 -funnel n 3 5 @ #p %p + ; 3 1 13872822 03403643 03403431 -funnel-crest_rosebud_orchid n 1 2 @ #m 1 0 12051514 -funnel_shape n 1 1 @ 1 0 13872822 -funnel_web n 1 1 @ 1 0 03403873 -funnies n 1 3 @ #p %p 1 0 07003352 -funniness n 1 2 @ + 1 0 06781383 -funny n 1 1 @ 1 0 06779310 -funny_bone n 1 2 @ #p 1 0 05580662 -funny_farm n 1 1 @ 1 0 02820798 -funny_house n 1 1 @ 1 1 02820798 -funny_remark n 1 1 @ 1 0 06779310 -funny_story n 1 1 @ 1 0 06779310 -funny_wagon n 1 2 @ ; 1 1 03404012 -funrun n 1 1 @ 1 0 07460403 -fuqra n 1 2 @ ; 1 0 08026539 -fur n 3 4 @ ~ %p + 3 2 14764061 01899062 03404149 -fur-piece n 1 1 @ 1 1 03406759 -fur_coat n 1 2 @ ~ 1 0 03404251 -fur_hat n 1 2 @ ~ 1 0 03404360 -fur_seal n 2 3 @ ~ #m 2 0 02077658 02077152 -furan n 1 2 @ ~ 1 0 14876318 -furane n 1 2 @ ~ 1 0 14876318 -furbelow n 1 2 @ ~ 1 0 03397532 -furcation n 1 4 @ ~ %p + 1 0 13886724 -furcula n 1 3 @ ~ #p 1 0 01895355 -furfural n 1 1 @ 1 0 14876473 -furfuraldehyde n 1 1 @ 1 0 14876473 -furfuran n 1 2 @ ~ 1 0 14876318 -furiousness n 1 3 @ ~ + 1 0 05037813 -furlong n 1 3 @ #p %p 1 1 13651072 -furlough n 1 2 @ + 1 1 15139432 -furnace n 1 3 @ ~ %p 1 1 03404449 -furnace_lining n 1 2 @ %s 1 0 03404900 -furnace_room n 1 1 @ 1 0 03405111 -furnariidae n 1 3 @ #m %m 1 0 01552523 -furnarius n 1 3 @ #m %m 1 0 01552654 -furnishing n 3 4 @ ~ + ; 3 0 03405595 03405265 00608551 -furniture n 1 4 @ ~ + - 1 1 03405725 -furniture_company n 1 1 @ 1 0 08003525 -furniture_maker n 1 2 @ ~ 1 0 09885866 -furnivall n 1 1 @ 1 0 10986272 -furor n 2 2 @ ~ 2 1 05751173 00553995 -furore n 2 2 @ ~ 2 0 05751173 00553995 -furosemide n 1 1 @ 1 0 03406597 -furrier n 1 1 @ 1 0 09929861 -furring n 2 1 @ 2 0 14313342 03406838 -furring_strip n 1 1 @ 1 0 03406838 -furrow n 2 4 @ ~ #p + 2 1 03406966 13905792 -furry_tongue n 1 1 @ 1 0 14311801 -furtherance n 2 2 @ + 2 0 07251984 00249780 -furtiveness n 1 2 @ + 1 0 04657631 -furuncle n 1 2 @ ~ 1 0 14183210 -furunculosis n 1 1 @ 1 0 14227488 -fury n 4 4 @ ~ + ; 4 3 07516997 14391876 05037813 09506337 -furze n 1 2 @ #m 1 0 12574866 -fusain n 1 1 @ 1 0 03007824 -fusanus n 1 3 @ #m %m 1 0 12736455 -fusanus_acuminatus n 1 3 @ #m %p 1 0 12736603 -fusarium_wilt n 1 1 @ 1 0 14283423 -fuschia n 1 1 @ 1 0 04964799 -fuscoboletinus n 1 3 @ #m %m 1 0 13057845 -fuscoboletinus_paluster n 1 2 @ #m 1 0 13058037 -fuscoboletinus_serotinus n 1 2 @ #m 1 0 13058272 -fuse n 2 3 @ ~ + 2 1 03407369 03407122 -fusee n 4 3 @ ~ #p 4 0 03407865 03407744 03407616 03407122 -fusee_drive n 1 2 @ #p 1 0 03407865 -fusel_oil n 1 1 @ 1 0 14967577 -fuselage n 1 3 @ #p %p 1 0 03408054 -fusible_metal n 1 1 @ 1 0 14716845 -fusil n 1 1 @ 1 0 03408264 -fusilier n 1 1 @ 1 0 10116579 -fusillade n 1 2 @ + 1 0 00988320 -fusion n 7 3 @ ~ + 7 1 07373602 14418662 13485767 13485525 05936561 00699517 00380568 -fusion_bomb n 1 1 @ 1 0 03553248 -fusion_cooking n 1 1 @ 1 0 00247081 -fusion_reactor n 1 1 @ 1 0 04422409 -fuss n 4 2 @ + 4 1 14403772 07372565 07184735 00555138 -fuss-budget n 1 1 @ 1 0 10792178 -fussiness n 2 3 @ ~ + 2 0 07552729 04700199 -fusspot n 1 1 @ 1 0 10792178 -fustian n 2 1 @ 2 0 07087777 03408340 -futility n 1 2 @ + 1 1 05150855 -futon n 1 2 @ ; 1 0 03408444 -futtock_shroud n 1 1 @ 1 0 03408621 -future n 3 3 ! @ ~ 3 2 15121625 06330401 03408721 -future_date n 1 1 @ 1 0 15160076 -future_perfect n 1 1 @ 1 0 13807178 -future_perfect_tense n 1 1 @ 1 0 13807178 -future_progressive n 1 1 @ 1 0 13807403 -future_progressive_tense n 1 1 @ 1 0 13807403 -future_tense n 1 1 @ 1 0 06330401 -futures_contract n 1 2 @ ~ 1 0 06480723 -futures_exchange n 1 1 @ 1 0 03408918 -futures_market n 1 1 @ 1 0 03408918 -futurism n 2 2 @ + 2 0 08468084 06209242 -futurist n 2 2 @ + 2 0 10116702 10078529 -futuristics n 1 1 @ 1 0 06136105 -futurity n 2 4 ! @ ~ + 2 0 15121625 05049930 -futurology n 1 1 @ 1 0 06136105 -fuze n 1 2 @ ~ 1 0 03407122 -fuzee n 3 2 @ ~ 3 0 03407744 03407616 03407122 -fuzz n 4 4 @ ~ + ; 4 1 13090091 09879144 05940414 05261894 -fuzziness n 1 3 @ ~ + 1 0 04704346 -fuzzy_logic n 1 1 @ 1 0 06166494 -fws n 1 2 @ #p 1 0 08139270 -fyodor_dostoevski n 1 1 @ 1 0 10940669 -fyodor_dostoevsky n 1 1 @ 1 0 10940669 -fyodor_dostoyevsky n 1 1 @ 1 0 10940669 -fyodor_mikhailovich_dostoevski n 1 1 @ 1 0 10940669 -fyodor_mikhailovich_dostoevsky n 1 1 @ 1 0 10940669 -fyodor_mikhailovich_dostoyevsky n 1 1 @ 1 0 10940669 -g n 9 7 @ ~ #m #s #p %p ; 9 1 13723712 14892138 14829964 13750844 13648596 13628955 13628761 13590327 06831819 -g-force n 1 1 @ 1 0 13648596 -g-jo n 1 2 @ ; 1 0 00710338 -g-man n 1 1 @ 1 0 10133850 -g-string n 1 1 @ 1 0 03464053 -g._b._shaw n 1 1 @ 1 0 11295936 -g._e._moore n 1 1 @ 1 0 11189709 -g._k._chesterton n 1 1 @ 1 0 10895274 -g._l._von_blucher n 1 1 @ 1 0 10853932 -g._r._kirchhoff n 1 1 @ 1 0 11105945 -g._stanley_hall n 1 1 @ 1 0 11024908 -g_clef n 1 1 @ 1 0 06862805 -g_suit n 1 1 @ 1 0 02720576 -ga n 3 6 @ #m #s #p %p - 3 0 15066125 14638256 09075842 -gaap n 1 2 @ %m 1 0 08145871 -gab n 1 2 @ + 1 0 07135080 -gaba n 1 1 @ 1 0 14606290 -gabapentin n 1 1 @ 1 0 03409070 -gabardine n 3 2 @ ; 3 1 03409297 03357081 03258730 -gabble n 1 2 @ + 1 0 06610992 -gabbro n 1 1 @ 1 0 14932645 -gaberdine n 1 1 @ 1 0 03258730 -gabfest n 1 1 @ 1 0 07135080 -gable n 2 2 @ ~ 2 1 03409393 10986437 -gable_end n 1 2 @ ~ 1 0 03409393 -gable_roof n 1 3 @ ~ %p 1 0 03409591 -gable_wall n 1 2 @ ~ 1 0 03409393 -gabon n 1 4 @ #p %m %p 1 0 08945529 -gabon_franc n 1 2 @ %p 1 0 13677889 -gabonese n 1 3 @ #m + 1 0 09710041 -gabonese_republic n 1 4 @ #p %m %p 1 0 08945529 -gaboon_viper n 1 2 @ #m 1 0 01753180 -gabor n 1 1 @ 1 0 10986562 -gaboriau n 1 1 @ 1 0 10986710 -gaborone n 1 2 @ #p 1 0 08852685 -gabriel n 1 2 @ ; 1 0 09539394 -gabriel_daniel_fahrenheit n 1 1 @ 1 0 10965151 -gabriel_lippmann n 1 1 @ 1 0 11134466 -gabriel_tellez n 1 1 @ 1 0 11343333 -gabriele_fallopius n 1 1 @ 1 0 10965966 -gabriello_fallopio n 1 1 @ 1 0 10965966 -gabun n 1 4 @ #p %m %p 1 0 08945529 -gad n 2 3 @ #p %p 2 0 14380717 04290259 -gadaba n 2 1 @ 2 0 09674412 06982125 -gadabout n 1 1 @ 1 0 10116905 -gaddafi n 1 1 @ 1 0 11250287 -gaddi n 1 2 @ #p 1 0 03409806 -gadfly n 2 2 @ ~ 2 1 10419630 02193009 -gadget n 1 3 @ ~ + 1 1 02729965 -gadgeteer n 1 2 @ + 1 0 10117017 -gadgetry n 1 1 @ 1 1 03409920 -gadidae n 1 3 @ #m %m 1 0 02521916 -gadiformes n 1 3 @ #m %m 1 0 02521241 -gadoid n 1 3 @ ~ #m 1 0 02521646 -gadoid_fish n 1 3 @ ~ #m 1 0 02521646 -gadolinite n 1 2 @ %s 1 0 14675569 -gadolinium n 1 2 @ #s 1 0 14638041 -gadsden n 1 2 @ #p 1 0 09054233 -gadus n 1 3 @ #m %m 1 0 02522247 -gadus_macrocephalus n 1 1 @ 1 0 02522866 -gadus_merlangus n 1 3 @ #m %p 1 0 02523110 -gadus_morhua n 1 2 @ %p 1 0 02522722 -gaea n 1 2 @ ; 1 0 09560762 -gael n 1 2 @ + 1 0 09688233 -gaelic n 1 3 @ ~ + 1 0 06960566 -gaetan_vestris n 1 1 @ 1 0 11365300 -gaetano_donizetti n 1 1 @ 1 0 10939360 -gaff n 3 3 @ #m #p 3 0 03410303 03410147 03410022 -gaff-headed_sail n 1 2 @ #p 1 0 03410423 -gaff_topsail n 1 1 @ 1 0 03410571 -gaffe n 1 1 @ 1 0 00076196 -gaffer n 3 2 @ ~ 3 0 10376890 10117154 10104209 -gaffsail n 1 2 @ #p 1 0 03410423 -gafsa n 1 2 @ #p 1 0 09038170 -gag n 2 4 @ ~ %p + 2 1 06778102 03410740 -gag_law n 2 3 @ ~ ; 2 0 06666829 06538412 -gag_line n 1 2 @ #p 1 1 06778777 -gag_order n 1 2 @ ; 1 0 06557585 -gag_reflex n 1 1 @ 1 0 00866423 -gag_rule n 1 2 @ ~ 1 0 06666829 -gagarin n 1 1 @ 1 0 10986866 -gage n 2 2 @ ~ 2 2 03990834 03429288 -gaggle n 1 3 @ %m + 1 0 07992116 -gagman n 2 1 @ 2 0 10117415 10117267 -gagster n 1 2 @ + 1 0 10117267 -gagwriter n 1 1 @ 1 1 10117267 -gai_choi n 1 2 @ #m 1 0 11878633 -gaia n 1 2 @ ; 1 0 09560762 -gaiety n 2 2 @ ~ 2 1 07529245 07512039 -gaillardia n 1 3 @ ~ #m 1 0 11970586 -gaillardia_pulchella n 1 1 @ 1 0 11970846 -gain n 4 3 ! @ ~ 4 4 13754293 05157574 05109324 13254805 -gainer n 3 2 @ + 3 0 10117739 10117511 00443917 -gainesville n 1 2 @ #p 1 0 09073138 -gainfulness n 1 1 @ 1 0 05157866 -gaining_control n 1 2 @ ~ 1 0 00088481 -gainsborough n 1 1 @ 1 0 10987044 -gaiseric n 1 1 @ 1 0 10994500 -gait n 3 2 @ ~ 3 1 15280497 00286957 00286497 -gaiter n 3 2 @ %p 3 0 04269822 03411079 03410938 -gaius n 1 1 @ 1 0 10879551 -gaius_aurelius_valerius_diocletian n 1 1 @ 1 0 10935968 -gaius_caesar n 1 1 @ 1 0 10879551 -gaius_cassius_longinus n 1 1 @ 1 0 10886763 -gaius_cornelius_tacitus n 1 1 @ 1 0 11328524 -gaius_flaminius n 1 1 @ 1 0 10972495 -gaius_julius_caesar n 1 1 @ 1 0 10878161 -gaius_julius_caesar_octavianus n 1 1 @ 1 0 10828990 -gaius_octavianus n 1 1 @ 1 0 10828990 -gaius_petronius n 1 1 @ 1 0 11231821 -gaius_plinius_caecilius_secundus n 1 1 @ 1 0 11239765 -gaius_plinius_secundus n 1 1 @ 1 0 11239567 -gaius_valerius_catullus n 1 1 @ 1 0 10887981 -gal n 3 4 @ #p %p ; 3 1 13619764 13648793 10117851 -gala n 1 1 @ 1 0 00518669 -gala_affair n 1 1 @ 1 0 00518669 -galactagogue n 1 1 @ 1 0 14876679 -galactocele n 1 1 @ 1 0 14201845 -galactose n 1 1 @ 1 0 14876771 -galactosemia n 1 1 @ 1 0 14156134 -galactosis n 1 1 @ 1 0 13485890 -galago n 1 2 @ #m 1 0 02499808 -galahad n 1 2 @ ; 1 0 10987176 -galan n 1 2 @ #p 1 0 09285828 -galangal n 2 2 @ #m 2 0 12356960 12151170 -galantine n 1 1 @ 1 0 07868830 -galanty_show n 1 1 @ 1 0 07019500 -galapagos n 1 2 @ #p 1 0 08777348 -galapagos_islands n 1 2 @ #p 1 0 08777348 -galatea n 1 2 @ ; 1 0 09554910 -galatia n 1 2 @ #p 1 0 08701296 -galatian n 1 1 @ 1 0 09688596 -galatians n 1 2 @ #p 1 0 06443922 -galax n 1 2 @ #m 1 0 12251278 -galax_urceolata n 1 2 @ #m 1 0 12251278 -galaxy n 3 7 @ ~ #m %m %s + ; 3 1 08270938 12251278 08271042 -galbanum n 1 1 @ 1 0 14876872 -galbraith n 1 1 @ 1 0 10987358 -galbulidae n 1 3 @ #m %m 1 0 01842942 -galbulus n 1 2 @ #p 1 0 11683216 -gale n 1 2 @ ~ 1 0 11461825 -galea n 1 1 @ 1 0 13011461 -galega n 1 3 @ #m %m 1 0 12529353 -galega_officinalis n 1 2 @ #m 1 0 12529500 -galen n 1 1 @ 1 0 10987565 -galena n 1 2 @ %s 1 0 14675910 -galeocerdo n 1 3 @ #m %m 1 0 01491235 -galeocerdo_cuvieri n 1 2 @ #m 1 0 01491361 -galeopsis n 1 3 @ #m %m 1 0 12846869 -galeopsis_tetrahit n 1 2 @ #m 1 0 12847008 -galeorhinus n 1 3 @ #m %m 1 0 01491520 -galeorhinus_zyopterus n 1 2 @ #m 1 0 01491661 -galeras n 1 2 @ #p 1 0 09175322 -galere n 1 1 @ 1 0 08406259 -galicia n 1 2 @ #p 1 0 09028204 -galician n 1 2 @ ; 1 0 06966454 -galictis_vittatus n 1 2 @ #m 1 0 02449699 -galiella_rufa n 1 1 @ 1 0 13031323 -galilaean n 1 2 @ + 1 0 10117957 -galilean n 2 3 @ ~ + 2 0 10117957 09285979 -galilean_satellite n 1 2 @ ~ 1 0 09285979 -galilean_telescope n 1 1 @ 1 0 03411208 -galilee n 1 4 @ #p %p + 1 0 08793914 -galileo n 1 2 @ + 1 0 10987724 -galileo_galilei n 1 1 @ 1 0 10987724 -galina_sergeevna_ulanova n 1 1 @ 1 0 11355537 -galina_ulanova n 1 1 @ 1 0 11355537 -galingale n 1 2 @ #m 1 0 12151170 -galium n 1 3 @ #m %m 1 0 12664897 -galium_aparine n 1 1 @ 1 0 12666159 -galium_boreale n 1 1 @ 1 0 12665659 -galium_lanceolatum n 1 1 @ 1 0 12666050 -galium_mollugo n 1 1 @ 1 0 12666369 -galium_odoratum n 1 3 @ #s %p 1 0 12665271 -galium_verum n 1 1 @ 1 0 12665857 -gall n 6 3 @ ~ + 6 0 14275240 14184390 13099586 07548978 05406570 04915866 -gall-berry n 1 1 @ 1 0 12757458 -gall_bladder n 1 2 @ #p 1 0 05385161 -gall_gnat n 1 3 @ ~ #m 1 0 02189363 -gall_midge n 1 3 @ ~ #m 1 0 02189363 -gall_of_the_earth n 1 2 @ #m 1 0 11997409 -gall_wasp n 1 2 @ #m 1 0 02216740 -gallamine n 1 1 @ 1 0 14859622 -gallant n 2 3 @ ~ + 2 1 09991026 10644062 -gallant_fox n 1 1 @ 1 0 02383708 -gallantry n 3 1 @ 3 1 04857738 04913738 01228792 -gallaudet n 1 1 @ 1 0 10988059 -gallberry n 1 1 @ 1 0 12757458 -gallbladder n 1 2 @ #p 1 1 05385161 -galleon n 1 2 @ ~ 1 0 03411339 -galleria n 1 3 @ #m %m 1 0 02289177 -galleria_mellonella n 1 2 @ #m 1 0 02289307 -gallery n 7 3 @ ~ ; 7 0 08222203 04527648 03412058 03411927 03411762 03411544 03239399 -galley n 4 4 @ ~ #p ; 4 0 03412674 03412511 03412387 03412220 -galley_proof n 1 1 @ 1 0 06591108 -galley_slave n 2 1 @ 2 0 10118113 10035809 -gallfly n 3 3 @ ~ #m 3 0 02216740 02189363 02161588 -gallia n 1 1 @ 1 0 08929722 -galliano n 1 1 @ 1 0 07909714 -gallic_acid n 1 1 @ 1 0 14876993 -gallicanism n 1 1 @ 1 0 08475070 -gallicism n 1 1 @ 1 0 07081646 -galliformes n 1 3 @ #m %m 1 0 01789064 -gallimaufry n 1 1 @ 1 0 08399977 -gallina n 1 3 @ ~ #m 1 0 01791107 -gallinacean n 1 4 @ ~ #m %p 1 0 01789386 -gallinaceous_bird n 1 4 @ ~ #m %p 1 0 01789386 -gallinago n 1 3 @ #m %m 1 0 02031752 -gallinago_gallinago n 1 2 @ #m 1 0 02032222 -gallinago_gallinago_delicata n 1 2 @ #m 1 0 02032355 -gallinago_media n 1 2 @ #m 1 0 02032480 -gallinula n 1 3 @ #m %m 1 0 02016198 -gallinula_chloropus n 1 2 @ #m 1 0 02016816 -gallinula_chloropus_cachinnans n 1 2 @ #m 1 0 02016659 -gallinule n 1 3 @ ~ #m 1 0 02016358 -gallirallus n 1 3 @ #m %m 1 0 02015221 -gallium n 1 2 @ #s 1 0 14638256 -gallon n 2 3 @ #p %p 2 1 13619764 13622209 -gallop n 1 2 @ + 1 1 00288671 -gallop_rhythm n 1 1 @ 1 0 14111540 -gallous n 1 1 @ 1 0 03413124 -galloway n 2 3 @ #p + 2 0 08892058 02407276 -gallows n 1 4 @ ~ %p ; 1 1 03412906 -gallows-tree n 1 1 @ 1 0 03413124 -gallows_bird n 1 1 @ 1 0 10118208 -gallows_tree n 1 1 @ 1 0 03413124 -gallstone n 1 1 @ 1 0 09286200 -gallup n 1 2 @ #p 1 0 09115756 -gallus n 2 5 @ #m %m %p ; 2 1 02887489 01790943 -gallus_gallus n 2 3 @ ~ %p 2 0 01791625 01791463 -galois n 1 1 @ 1 0 10988261 -galois_theory n 1 2 @ ; 1 0 06017334 -galoot n 1 1 @ 1 0 10118301 -galosh n 1 1 @ 1 0 02735538 -galsworthy n 1 1 @ 1 0 10988466 -galton n 1 1 @ 1 0 10988570 -galtonia_candicans n 1 1 @ 1 0 12458874 -galvani n 1 1 @ 1 0 10988887 -galvanic_battery n 1 3 @ ~ %p 1 0 04540547 -galvanic_cell n 1 4 @ ~ #p %p 1 0 04540761 -galvanic_pile n 1 1 @ 1 0 04541136 -galvanic_skin_response n 1 2 @ #p 1 0 00860011 -galvanisation n 3 2 @ + 3 0 13485968 01262109 00713250 -galvaniser n 2 2 @ + 2 0 10118587 10118382 -galvanism n 2 3 @ ~ + 2 1 11450453 00662681 -galvanization n 3 2 @ + 3 0 13485968 01262109 00713250 -galvanized_iron n 1 2 @ #s 1 0 14877100 -galvanizer n 2 2 @ + 2 0 10118587 10118382 -galvanometer n 1 2 @ ~ 1 0 03413264 -galveston n 1 2 @ #p 1 0 09144484 -galveston_bay n 1 2 @ #p 1 0 09286318 -galveston_island n 1 2 @ #p 1 0 09144605 -galway n 1 2 @ #p 1 0 08889521 -galway_bay n 1 3 @ #p %p 1 0 09286478 -gam n 1 1 @ 1 0 07994752 -gamal_abdel_nasser n 1 1 @ 1 0 11200812 -gamba n 1 1 @ 1 0 04536595 -gambelia n 1 3 @ #m %m 1 0 01679837 -gambia n 1 5 @ #p %m %p + 1 0 08945821 -gambian n 1 3 @ #m + 1 0 09747495 -gambian_monetary_unit n 1 2 @ ~ 1 0 13668034 -gambier_islands n 1 2 @ #p 1 0 08990844 -gambist n 1 1 @ 1 0 10118743 -gambit n 3 1 @ 3 0 06765531 00172490 00167950 -gamble n 2 3 @ ~ + 2 0 13342987 00802962 -gambler n 2 3 @ ~ + 2 1 10118844 10119200 -gambling n 1 3 @ ~ + 1 1 00430140 -gambling_casino n 1 1 @ 1 0 02977936 -gambling_contract n 1 1 @ 1 0 06522941 -gambling_den n 1 3 @ ~ ; 1 0 03413428 -gambling_game n 1 2 @ ~ 1 0 00507673 -gambling_hell n 1 3 @ ~ ; 1 0 03413428 -gambling_house n 1 3 @ ~ ; 1 1 03413428 -gambling_system n 1 1 @ 1 0 05663491 -gamboge n 2 1 @ 2 0 14898364 04966543 -gamboge_tree n 1 2 @ #m 1 0 12366870 -gambol n 1 3 @ ~ + 1 0 00511817 -gambrel n 1 1 @ 1 0 03413684 -gambrel_roof n 1 1 @ 1 0 03413684 -gambusia n 1 3 @ #m %m 1 0 01449252 -gambusia_affinis n 1 2 @ #m 1 0 01449374 -game n 11 6 @ ~ #p + ; - 11 4 00455599 00456199 00430606 02152991 15256567 13596235 07650449 05907682 03413828 00583089 00513089 -game_bird n 1 3 @ ~ - 1 1 02153203 -game_equipment n 1 2 @ ~ 1 0 03414162 -game_fish n 1 1 @ 1 0 02512830 -game_fowl n 1 1 @ 1 0 01790711 -game_law n 1 2 @ ; 1 0 06538525 -game_license n 1 1 @ 1 0 06550552 -game_misconduct n 1 2 @ ; 1 0 05163582 -game_of_chance n 1 2 @ ~ 1 0 00507673 -game_plan n 2 2 @ ; 2 0 05906998 05906867 -game_room n 1 1 @ 1 0 04119478 -game_show n 1 2 @ ~ 1 0 06621061 -game_theory n 1 3 @ ; - 1 0 06150222 -game_warden n 1 2 @ ~ 1 0 10119351 -gamebag n 1 1 @ 1 0 03414029 -gameboard n 1 2 @ ~ 1 0 02857023 -gamecock n 2 1 @ 2 1 01514752 10169678 -gamekeeper n 1 2 @ ~ 1 0 10119351 -gamelan n 1 2 @ ; 1 0 08248521 -gameness n 1 3 @ ~ + 1 0 14549937 -games-master n 1 1 @ 1 0 10119491 -games-mistress n 1 1 @ 1 0 10119491 -gamesmanship n 1 1 @ 1 0 04839877 -gametangium n 1 1 @ 1 0 13093629 -gamete n 1 2 @ ~ 1 0 05456945 -gametocyte n 1 2 @ ~ 1 0 05458412 -gametoecium n 1 2 @ ~ 1 0 13093725 -gametogenesis n 1 2 @ ~ 1 0 13486115 -gametophore n 1 2 @ ~ 1 0 13094003 -gametophyte n 1 2 @ ~ 1 0 11687071 -gamin n 1 2 @ ; 1 1 10663137 -gamine n 2 1 @ 2 0 10119685 10119609 -gaminess n 1 2 @ + 1 0 04902283 -gaming n 1 3 @ ~ + 1 0 00430140 -gaming_card n 1 1 @ 1 1 03414574 -gaming_house n 1 3 @ ~ ; 1 0 03413428 -gaming_table n 1 1 @ 1 0 03414676 -gamma n 3 3 @ #m #p 3 1 06834351 13638094 10920582 -gamma-interferon n 1 1 @ 1 0 03415083 -gamma_acid n 1 1 @ 1 0 14611980 -gamma_aminobutyric_acid n 1 1 @ 1 0 14606290 -gamma_globulin n 1 3 @ ~ #s 1 1 15022389 -gamma_hydroxybutyrate n 1 2 @ ~ 1 0 03414814 -gamma_iron n 1 2 @ #s 1 0 14722240 -gamma_radiation n 1 2 @ #p 1 0 11463073 -gamma_ray n 1 2 @ #p 1 0 11463073 -gammon n 2 3 @ ~ #p 2 0 07669891 07669367 -gammopathy n 1 1 @ 1 0 14069212 -gamow n 1 1 @ 1 0 10989099 -gamp n 1 2 @ ; 1 0 03415252 -gamut n 2 2 @ ; 2 1 05128096 06857487 -gan_jiang n 1 2 @ #p 1 0 09286843 -ganapati n 1 1 @ 1 0 09525961 -gand n 1 2 @ #p 1 0 08851500 -gand_flower n 1 1 @ 1 0 12706410 -gander n 1 1 @ 1 0 01856155 -gandhi n 2 2 @ + 2 0 10989610 10989339 -gandy_dancer n 1 1 @ 1 0 10119775 -ganef n 1 2 @ ; 1 0 10133458 -ganesa n 1 1 @ 1 0 09525961 -ganesh n 1 1 @ 1 0 09525961 -ganesha n 1 1 @ 1 0 09525961 -gang n 4 5 @ ~ #m %m + 4 3 08244062 08273843 08242799 03415363 -gang_fight n 1 1 @ 1 0 01176649 -gangboard n 1 1 @ 1 0 03415486 -gangdom n 1 5 @ ~ #m %m + 1 0 08245172 -ganger n 1 1 @ 1 0 10119874 -ganges n 1 2 @ #p 1 0 09286630 -ganges_river n 1 2 @ #p 1 0 09286630 -gangland n 1 4 @ ~ #m %m 1 0 08245172 -gangliocyte n 1 1 @ 1 0 05427346 -ganglion n 1 3 @ ~ #p 1 0 05296968 -ganglion_cell n 1 1 @ 1 0 05427346 -gangplank n 1 1 @ 1 0 03415486 -gangrene n 2 3 @ ~ + 2 0 14313440 11486708 -gangrenous_emphysema n 1 2 @ ; 1 0 14313943 -gangsaw n 1 1 @ 1 0 03415626 -gangsta n 1 3 @ #m ; 1 0 10119953 -gangster n 1 4 @ ~ #m + 1 1 10120085 -gangster's_moll n 1 1 @ 1 0 10327475 -gangway n 3 1 @ 3 0 03415749 03415486 02693860 -ganja n 2 5 @ ~ #s #p %p 2 0 12397210 02949691 -gannet n 1 3 @ ~ #m 1 0 02053083 -ganof n 1 2 @ ; 1 0 10133458 -ganoid n 1 3 @ ~ #m 1 0 02638596 -ganoid_fish n 1 3 @ ~ #m 1 0 02638596 -ganoidei n 1 3 @ #m %m 1 0 02638323 -ganoin n 1 1 @ 1 0 02638104 -ganoine n 1 1 @ 1 0 02638104 -gansu n 1 3 @ #p %p 1 0 08725692 -gansu_province n 1 3 @ #p %p 1 0 08725692 -gantanol n 1 1 @ 1 0 04352580 -gantlet n 5 2 @ #p 5 0 07232275 03429771 03429682 03415868 01164063 -gantrisin n 1 2 @ ; 1 0 04353016 -gantry n 1 1 @ 1 0 03416094 -ganymede n 2 2 @ ; 2 0 09494764 09287033 -gao n 1 1 @ 1 0 08162245 -gaol n 1 3 @ ~ + 1 0 03592245 -gaolbird n 1 1 @ 1 0 10219121 -gaolbreak n 1 1 @ 1 0 00059989 -gaoler n 1 2 @ + 1 0 10149867 -gap n 6 4 @ ~ #p + 6 3 04752859 09379111 03416329 09249034 07183853 00383952 -gape n 2 3 @ ~ + 2 0 06877381 00879037 -gapped_scale n 1 2 @ ~ 1 0 06861315 -gar n 2 3 @ ~ #m 2 0 02641379 02549989 -garage n 2 3 @ ~ + 2 1 03416489 03416640 -garage_sale n 1 1 @ 1 0 01119250 -garageman's_lien n 1 1 @ 1 0 13402389 -garambulla n 2 4 @ #m #p %p 2 0 11850521 07769005 -garambulla_cactus n 1 3 @ #m %p 1 0 11850521 -garamycin n 1 2 @ ; 1 0 03435382 -garand n 1 1 @ 1 0 03416775 -garand_rifle n 1 1 @ 1 0 03416775 -garb n 1 3 @ ~ + 1 1 02756098 -garbage n 3 2 @ ~ 3 1 14857151 06612266 03416900 -garbage_can n 1 1 @ 1 1 02747177 -garbage_carter n 1 1 @ 1 0 10120330 -garbage_collection n 1 1 @ 1 0 01015843 -garbage_collector n 1 1 @ 1 1 10120330 -garbage_disposal n 1 1 @ 1 0 03212114 -garbage_dump n 1 2 @ ~ 1 0 08560027 -garbage_hauler n 1 1 @ 1 0 10120330 -garbage_heap n 1 1 @ 1 0 08573842 -garbage_man n 1 1 @ 1 0 10120330 -garbage_pickup n 1 1 @ 1 0 01015843 -garbage_truck n 1 1 @ 1 0 03417042 -garbageman n 1 1 @ 1 0 10120330 -garbanzo n 2 2 @ #p 2 0 12515925 07726095 -garbo n 1 1 @ 1 0 10989801 -garboard n 1 1 @ 1 0 03417202 -garboard_plank n 1 1 @ 1 0 03417202 -garboard_strake n 1 1 @ 1 0 03417202 -garboil n 1 2 @ ~ 1 0 13978709 -garbology n 1 1 @ 1 0 06147770 -garcia_lorca n 1 1 @ 1 0 10989977 -garcinia n 1 3 @ #m %m 1 0 12366507 -garcinia_cambogia n 1 2 @ #m 1 0 12366870 -garcinia_gummi-gutta n 1 2 @ #m 1 0 12366870 -garcinia_hanburyi n 1 2 @ #m 1 0 12366870 -garcinia_mangostana n 1 3 @ #m %p 1 0 12366675 -garden n 3 4 @ ~ %p + 3 3 03417345 08439808 03417749 -garden_angelica n 1 1 @ 1 0 12932173 -garden_balm n 1 3 @ #m %p 1 0 12854600 -garden_cart n 1 1 @ 1 0 02797295 -garden_centipede n 1 2 @ #m 1 0 01783706 -garden_chair n 1 1 @ 1 0 03649674 -garden_cress n 1 2 @ #p 1 0 07733005 -garden_current n 1 3 @ #m %p 1 0 12805373 -garden_egg n 1 3 @ #m %p 1 0 12896000 -garden_forget-me-not n 1 2 @ #m 1 0 12821895 -garden_heliotrope n 1 1 @ 1 1 12950314 -garden_hose n 1 1 @ 1 0 03417871 -garden_huckleberry n 1 1 @ 1 0 12896615 -garden_lettuce n 1 3 @ #m %p 1 0 11986511 -garden_loosestrife n 1 1 @ 1 0 12095781 -garden_nasturtium n 1 1 @ 1 0 12719944 -garden_of_eden n 1 1 @ 1 0 05628658 -garden_orache n 1 1 @ 1 0 11831100 -garden_party n 1 1 @ 1 0 08255508 -garden_pea n 3 5 @ ~ #m #p %p 3 0 12560621 12560420 07725531 -garden_pea_plant n 1 3 @ #m %p 1 0 12560420 -garden_pepper_cress n 1 3 @ #m %p 1 0 11890507 -garden_pink n 1 3 @ ~ #m 1 0 11807979 -garden_plant n 1 2 @ ~ 1 0 13083306 -garden_rake n 1 1 @ 1 0 03417970 -garden_rhubarb n 1 1 @ 1 0 12603449 -garden_rocket n 1 2 @ #m 1 0 11886537 -garden_roller n 1 1 @ 1 0 03418052 -garden_snail n 1 3 @ ~ #m 1 0 01944955 -garden_sorrel n 2 2 @ %p 2 0 12604845 12604228 -garden_spade n 1 1 @ 1 0 03418158 -garden_spider n 1 2 @ #m 1 0 01773797 -garden_state n 1 4 @ #p %p - 1 0 09112282 -garden_stater n 1 1 @ 1 0 09744462 -garden_strawberry n 1 3 @ #m %p 1 0 12630478 -garden_symphilid n 1 2 @ #m 1 0 01783706 -garden_tool n 1 2 @ ~ 1 0 03418242 -garden_trowel n 1 1 @ 1 0 03418402 -garden_truck n 1 2 @ ~ 1 0 07705711 -garden_violet n 1 1 @ 1 0 12389317 -garden_webworm n 1 2 @ #m 1 0 02309120 -gardener n 2 3 @ ~ + 2 1 10120533 10120671 -gardener's_delight n 1 1 @ 1 0 11812094 -gardener's_garters n 1 2 @ #m 1 0 12129738 -gardenia n 1 3 @ ~ #m 1 0 12666768 -gardenia_augusta n 1 1 @ 1 0 12666965 -gardenia_jasminoides n 1 1 @ 1 0 12666965 -gardening n 1 4 @ ~ + - 1 1 00918383 -gardiner n 1 1 @ 1 0 10990212 -gardner n 2 1 @ 2 0 10990509 10990371 -garfield n 1 1 @ 1 0 10990733 -garfish n 1 2 @ #m 1 0 02641379 -garganey n 1 1 @ 1 0 01848555 -gargantua n 1 2 @ + 1 0 09488448 -garget n 1 1 @ 1 0 11855553 -gargle n 2 2 @ + 2 0 14848642 07384023 -gargoyle n 2 1 @ 2 0 03418618 03418488 -gargoylism n 1 1 @ 1 0 14157163 -gari n 1 3 @ %s %p 1 0 12926689 -garibaldi n 2 1 @ 2 0 10990963 03418749 -garishness n 2 2 @ + 2 0 04818700 04690769 -garland n 4 4 @ ~ #p + 4 0 10991165 09144730 06592699 04606014 -garland_crab n 1 2 @ #m 1 0 12635151 -garland_flower n 1 1 @ 1 0 12346813 -garlic n 2 5 @ ~ #p %p + 2 0 12434775 07818277 -garlic_bread n 1 1 @ 1 0 07682808 -garlic_butter n 1 1 @ 1 0 07857076 -garlic_chive n 2 3 @ #p %p 2 0 12435777 07818572 -garlic_clove n 1 1 @ 1 0 07818422 -garlic_mustard n 1 2 @ #m 1 0 11870418 -garlic_press n 1 1 @ 1 0 03418915 -garlic_salt n 1 1 @ 1 0 07813409 -garlic_sauce n 1 1 @ 1 0 07834774 -garment n 1 4 @ ~ %p + 1 1 03419014 -garment-worker n 1 2 @ ~ 1 0 10120816 -garment_bag n 1 1 @ 1 0 03420345 -garment_cutter n 1 1 @ 1 0 10121026 -garment_industry n 1 1 @ 1 0 08066317 -garment_worker n 1 2 @ ~ 1 0 10120816 -garmentmaker n 1 2 @ ~ 1 0 10120816 -garner n 1 3 @ ~ + 1 0 03452449 -garnet n 1 2 @ ~ 1 0 14676042 -garnet_lac n 1 1 @ 1 0 14701412 -garnier n 1 1 @ 1 0 10991303 -garnierite n 1 2 @ %s 1 0 14676326 -garnish n 2 3 @ ~ + 2 0 07621618 03420440 -garnishee n 1 1 @ 1 0 10121144 -garnishment n 1 3 @ + ; 1 0 06557827 -garonne n 1 2 @ #p 1 0 09287124 -garonne_river n 1 2 @ #p 1 0 09287124 -garotte n 1 2 @ + 1 0 03420935 -garpike n 1 2 @ #m 1 0 02641379 -garret n 1 3 @ ~ #p 1 0 03686130 -garrick n 1 1 @ 1 0 10991415 -garrison n 3 4 @ ~ + ; 3 1 03420559 10991583 08398036 -garrison_cap n 1 1 @ 1 0 03420801 -garrote n 1 1 @ 1 0 03420935 -garroter n 1 2 @ + 1 0 10121246 -garrotte n 1 2 @ + 1 0 03420935 -garrotter n 1 2 @ + 1 0 10121246 -garrulinae n 1 3 @ #m %m 1 0 01579868 -garrulity n 1 3 @ ~ + 1 0 04651382 -garrulousness n 1 3 @ ~ + 1 0 04651382 -garrulus n 1 3 @ #m %m 1 0 01580225 -garry_oak n 1 1 @ 1 0 12272239 -garter n 1 2 @ + 1 0 03421117 -garter_belt n 1 1 @ 1 0 03421324 -garter_snake n 1 3 @ ~ #m 1 1 01735189 -garter_stitch n 1 1 @ 1 0 03421485 -gartner's_bacillus n 1 1 @ 1 0 01369210 -garuda n 1 1 @ 1 0 09526107 -garullus_garullus n 1 1 @ 1 0 01580490 -gary n 1 2 @ #p 1 0 09085441 -gary_cooper n 1 1 @ 1 0 10909303 -gary_kasparov n 1 1 @ 1 0 11097335 -gary_weinstein n 1 1 @ 1 0 11097335 -gas n 6 6 @ ~ #s #p %s + 6 5 14481080 14877585 14686913 14035695 02670683 14960090 -gas-cooled_reactor n 1 1 @ 1 0 03422484 -gas-discharge_lamp n 1 1 @ 1 0 03271376 -gas-discharge_tube n 1 2 @ ~ 1 0 03422589 -gas-turbine_ship n 1 2 @ %p 1 0 03426871 -gas_bomb n 1 1 @ 1 0 03012734 -gas_bracket n 1 1 @ 1 0 03421960 -gas_burner n 1 3 @ ~ %p 1 0 03422072 -gas_chamber n 1 1 @ 1 1 03422288 -gas_company n 1 1 @ 1 0 08186655 -gas_constant n 1 2 @ ; 1 0 13590079 -gas_cooker n 1 2 @ %p 1 0 03425595 -gas_embolism n 2 1 @ 2 0 14101317 14068344 -gas_engine n 1 1 @ 1 0 03422771 -gas_fitter n 1 1 @ 1 0 10121595 -gas_fitting n 1 1 @ 1 0 03422934 -gas_fixture n 1 1 @ 1 0 03423099 -gas_furnace n 1 1 @ 1 0 03423224 -gas_gage n 1 2 @ #p 1 0 03424862 -gas_gangrene n 1 2 @ ; 1 0 14313943 -gas_gauge n 1 2 @ #p 1 0 03424862 -gas_giant n 1 2 @ ~ 1 0 09322087 -gas_gun n 1 1 @ 1 1 03423306 -gas_guzzler n 1 1 @ 1 0 03421669 -gas_heat n 1 1 @ 1 0 03423387 -gas_heater n 1 1 @ 1 0 03423479 -gas_helmet n 1 1 @ 1 0 03424325 -gas_holder n 1 1 @ 1 0 03423568 -gas_jet n 1 3 @ ~ %p 1 1 03422072 -gas_lamp n 1 1 @ 1 1 03423877 -gas_line n 3 2 @ #p 3 0 08432974 03423966 03401500 -gas_main n 1 2 @ #p 1 0 03424103 -gas_maser n 1 1 @ 1 0 03424204 -gas_meter n 1 1 @ 1 0 03424489 -gas_mileage n 1 1 @ 1 0 13823287 -gas_oil n 1 1 @ 1 0 14967730 -gas_oven n 2 1 @ 2 0 03425325 03425241 -gas_pedal n 1 2 @ #p 1 0 02670683 -gas_phlegmon n 1 2 @ ; 1 0 14313943 -gas_plant n 1 1 @ 1 0 12712626 -gas_pressure n 1 2 @ ~ 1 0 11494935 -gas_pump n 1 1 @ 1 0 03425413 -gas_range n 1 2 @ %p 1 0 03425595 -gas_ring n 1 2 @ #p 1 0 03425769 -gas_service n 1 1 @ 1 0 08186655 -gas_shell n 1 2 @ ; 1 0 03421768 -gas_station n 1 1 @ 1 0 03425092 -gas_stove n 1 2 @ %p 1 1 03425595 -gas_system n 1 4 @ #p %p ; 1 0 03425956 -gas_tank n 1 2 @ #p 1 0 03426134 -gas_thermometer n 1 1 @ 1 1 03426285 -gas_turbine n 1 2 @ #p 1 0 03426574 -gas_well n 1 1 @ 1 0 03426984 -gasbag n 2 2 @ #p 2 0 10121467 03291963 -gascogne n 1 2 @ #p 1 0 08942392 -gasconade n 1 2 @ + 1 0 07229747 -gascony n 1 2 @ #p 1 0 08942392 -gaseous_nebula n 1 2 @ ~ 1 0 09266790 -gaseous_state n 1 1 @ 1 0 14481080 -gaseousness n 1 3 @ ~ + 1 0 04733204 -gasfield n 1 1 @ 1 0 08659759 -gash n 3 2 @ + 3 0 14287113 03152619 00388065 -gasherbrum n 1 2 @ #p 1 0 09287289 -gasification n 1 2 @ + 1 0 13486270 -gaskell n 1 1 @ 1 0 10991740 -gasket n 1 2 @ ~ 1 0 03423719 -gaskin n 1 2 @ #p 1 0 02463913 -gaslight n 1 1 @ 1 0 11463265 -gasman n 1 1 @ 1 0 10121714 -gasmask n 1 1 @ 1 0 03424325 -gasohol n 1 2 @ %s 1 0 14686723 -gasolene n 1 3 @ ~ #s 1 0 14686913 -gasoline n 1 3 @ ~ #s 1 1 14686913 -gasoline_bomb n 1 1 @ 1 0 03781055 -gasoline_engine n 1 4 @ ~ #p %p 1 0 03424630 -gasoline_gage n 1 2 @ #p 1 0 03424862 -gasoline_gauge n 1 2 @ #p 1 0 03424862 -gasoline_mileage n 1 1 @ 1 0 13823287 -gasoline_pump n 1 1 @ 1 0 03425413 -gasoline_station n 1 1 @ 1 0 03425092 -gasoline_tank n 1 2 @ #p 1 0 03426134 -gasoline_tax n 1 1 @ 1 0 13316905 -gasometer n 2 1 @ 2 0 03424489 03423568 -gasp n 1 2 @ + 1 1 00837098 -gaspar n 1 3 @ #m ; 1 0 10886361 -gassing n 2 2 @ + 2 2 13486431 00224936 -gasteromycete n 1 3 @ ~ #m 1 0 13039349 -gasteromycetes n 1 3 @ #m %m 1 0 13038944 -gasterophilidae n 1 3 @ #m %m 1 0 02193357 -gasterophilus n 1 3 @ #m %m 1 0 02193496 -gasterophilus_intestinalis n 1 2 @ #m 1 0 02193665 -gasteropoda n 1 3 @ #m %m 1 0 01941670 -gasterosteidae n 1 3 @ #m %m 1 0 01454702 -gasterosteus n 1 3 @ #m %m 1 0 01455141 -gasterosteus_aculeatus n 1 2 @ #m 1 0 01455317 -gasterosteus_pungitius n 1 2 @ #m 1 0 01455461 -gaston_lachaise n 1 1 @ 1 0 11113898 -gastralgia n 1 2 @ #p 1 0 14327266 -gastrectomy n 1 1 @ 1 0 00674760 -gastric_acid n 1 2 @ %s 1 0 05406128 -gastric_antacid n 1 2 @ ~ 1 0 14778019 -gastric_artery n 1 3 @ ~ #p 1 0 05345581 -gastric_digestion n 1 1 @ 1 0 13486520 -gastric_juice n 1 2 @ %s 1 0 05406128 -gastric_lavage n 1 1 @ 1 0 00696650 -gastric_mill n 1 1 @ 1 0 01974229 -gastric_smear n 1 1 @ 1 0 05265861 -gastric_ulcer n 1 1 @ 1 0 14212670 -gastric_vein n 1 3 @ ~ #p 1 0 05367735 -gastrin n 1 1 @ 1 0 05408908 -gastritis n 1 2 @ ~ 1 0 14346416 -gastroboletus n 1 3 @ #m %m 1 0 13048666 -gastroboletus_scabrosus n 1 2 @ #m 1 0 13048932 -gastroboletus_turbinatus n 1 2 @ #m 1 0 13049105 -gastrocnemius n 1 2 @ #p 1 1 05574633 -gastrocnemius_muscle n 1 2 @ #p 1 0 05574633 -gastrocolic_omentum n 1 1 @ 1 0 05429658 -gastrocybe n 1 3 @ #m %m 1 0 13047706 -gastrocybe_lateritia n 1 2 @ #m 1 0 13047862 -gastroenteritis n 1 2 @ ~ 1 0 14172005 -gastroenterologist n 1 2 @ + 1 0 10121800 -gastroenterology n 1 2 @ + 1 0 06050490 -gastroenterostomy n 1 1 @ 1 0 00674864 -gastroepiploic_vein n 1 2 @ #p 1 0 05367912 -gastroesophageal_reflux n 1 1 @ 1 0 14335485 -gastrogavage n 1 1 @ 1 0 01058715 -gastrointestinal_disorder n 1 2 @ ~ 1 0 14068685 -gastrointestinal_hormone n 1 2 @ ~ 1 0 05408684 -gastrointestinal_system n 1 3 @ #p %p 1 0 05329215 -gastrointestinal_tract n 1 4 @ ~ #p %p 1 0 05532225 -gastrolobium n 1 2 @ #m 1 0 12529905 -gastromy n 1 1 @ 1 0 00677719 -gastromycete n 1 3 @ ~ #m 1 0 13039349 -gastromycetes n 1 3 @ #m %m 1 0 13038944 -gastronome n 1 1 @ 1 0 10061656 -gastronomy n 2 2 @ + 2 0 07572206 00936296 -gastroomental_vein n 1 2 @ #p 1 0 05367912 -gastrophryne n 1 3 @ #m %m 1 0 01652850 -gastrophryne_carolinensis n 1 2 @ #m 1 0 01653223 -gastrophryne_olivacea n 1 2 @ #m 1 0 01653026 -gastropod n 1 3 @ ~ #m 1 0 01942177 -gastropoda n 1 3 @ #m %m 1 0 01941670 -gastroscope n 1 1 @ 1 0 03426462 -gastroscopy n 1 1 @ 1 0 00642762 -gastrostomy n 1 1 @ 1 0 00675064 -gastrula n 1 2 @ %p 1 0 01462544 -gastrulation n 1 2 @ #p 1 0 13486671 -gasworks n 1 2 @ ; 1 0 03427084 -gat n 1 2 @ ; 1 0 03427202 -gate n 4 5 @ ~ #p %p + 4 2 03427296 03427656 13258269 03427909 -gateau n 1 1 @ 1 0 07631834 -gatecrasher n 1 1 @ 1 0 10121952 -gatefold n 1 2 @ ~ 1 0 06258541 -gatehouse n 1 2 @ ~ 1 0 03428090 -gatekeeper n 2 2 @ ~ 2 0 10122128 10026553 -gateleg_table n 1 1 @ 1 0 03428226 -gatepost n 1 2 @ ~ 1 1 03428349 -gates n 1 1 @ 1 0 10991936 -gates_of_the_arctic_national_park n 1 2 @ #p 1 0 08604721 -gateway n 1 1 @ 1 1 03428477 -gateway_drug n 1 1 @ 1 0 03428571 -gateway_to_the_west n 1 2 @ #p 1 0 09107626 -gather n 2 3 @ ~ + 2 0 03428805 01014990 -gathered_skirt n 1 2 @ ~ 1 0 03429003 -gatherer n 2 4 @ ~ + ; 2 0 10122300 09936362 -gathering n 4 3 @ ~ + 4 3 07975026 01229938 01014990 03428805 -gathering_place n 1 1 @ 1 0 08574216 -gathic n 1 1 @ 1 0 06974047 -gatling n 1 1 @ 1 0 10992192 -gatling_gun n 1 1 @ 1 0 03429137 -gator n 1 3 @ ~ #m 1 0 01698434 -gatt n 1 1 @ 1 0 08300429 -gaucheness n 1 2 @ + 1 0 04915121 -gaucher's_disease n 1 1 @ 1 0 14156345 -gaucherie n 2 1 @ 2 0 04816125 00076196 -gaucho n 1 1 @ 1 0 10122441 -gaud n 1 3 @ #m + 1 0 02787435 -gaudery n 1 1 @ 1 0 06880134 -gaudi n 1 1 @ 1 0 10992336 -gaudi_i_cornet n 1 1 @ 1 0 10992336 -gaudiness n 2 2 @ + 2 0 04818700 04690769 -gaudy n 1 2 @ ; 1 0 08254055 -gauffer n 2 1 @ 2 0 03443775 03443669 -gauffering_iron n 1 1 @ 1 0 03443775 -gauge n 5 3 @ ~ + 5 1 03429288 13854101 05130028 05103430 05103283 -gauge_boson n 1 2 @ ~ 1 0 09287415 -gauguin n 1 1 @ 1 0 10992528 -gaul n 3 3 @ ~ + 3 0 09708648 09688487 08929722 -gaultheria n 1 3 @ #m %m 1 0 12235263 -gaultheria_hispidula n 1 2 @ #m 1 0 12235479 -gaultheria_procumbens n 1 4 @ #m %s %p 1 0 12235765 -gaultheria_shallon n 1 2 @ #m 1 0 12236160 -gauntlet n 4 2 @ #p 4 0 07232275 03429771 03429682 01164063 -gauntness n 1 2 @ + 1 0 05001867 -gauntry n 1 1 @ 1 0 03416094 -gaur n 1 2 @ #m 1 0 02410011 -gauri n 1 1 @ 1 0 09526221 -gauss n 2 4 @ #p %p + 2 1 13638847 10992675 -gaussian_curve n 1 2 @ ; 1 0 06026088 -gaussian_distribution n 1 2 @ ; 1 0 06025689 -gaussian_shape n 1 2 @ ; 1 1 06026088 -gaussmeter n 1 1 @ 1 0 03708843 -gautama n 1 1 @ 1 0 09532214 -gautama_buddha n 1 1 @ 1 0 09532214 -gautama_siddhartha n 1 1 @ 1 0 09532214 -gauze n 2 5 @ ~ #p + ; 2 0 03430091 03429914 -gauze_bandage n 1 4 @ ~ #p ; 1 0 03430091 -gavage n 1 2 @ ~ 1 0 01058291 -gavel n 1 1 @ 1 0 03430313 -gavia n 1 3 @ #m %m 1 0 02048952 -gavial n 1 2 @ #m 1 0 01699675 -gavialidae n 1 3 @ #m %m 1 0 01699415 -gavialis n 1 3 @ #m %m 1 0 01699537 -gavialis_gangeticus n 1 2 @ #m 1 0 01699675 -gavidae n 1 3 @ #m %m 1 0 02048832 -gaviiform_seabird n 1 3 @ ~ #m 1 0 02048698 -gaviiformes n 1 3 @ #m %m 1 0 02048514 -gavotte n 2 1 @ 2 1 00533224 07055502 -gawain n 1 2 @ ; 1 0 10992933 -gawk n 1 2 @ + 1 0 10274639 -gawker n 1 1 @ 1 0 10122531 -gawkiness n 1 2 @ + 1 0 05004700 -gay n 1 3 @ ~ + 1 0 10182913 -gay-feather n 1 3 @ ~ #m 1 0 11991263 -gay-lussac n 1 1 @ 1 0 10993098 -gay-lussac's_law n 1 2 @ ; 1 0 05878229 -gay_lib n 1 1 @ 1 0 00800657 -gay_liberation_movement n 1 1 @ 1 0 00800657 -gay_man n 1 2 @ ~ 1 0 10122645 -gay_woman n 1 2 @ ~ 1 0 10254965 -gayal n 1 2 @ #m 1 0 02410141 -gayfeather n 1 3 @ ~ #m 1 0 11991263 -gaylussacia n 1 3 @ #m %m 1 0 12236363 -gaylussacia_baccata n 1 2 @ %p 1 0 12236768 -gaylussacia_brachycera n 1 1 @ 1 0 12237152 -gaylussacia_frondosa n 1 1 @ 1 0 12236977 -gayness n 1 3 @ ~ + 1 0 00856847 -gaywings n 1 1 @ 1 0 12705698 -gaza n 1 2 @ #p 1 0 08794366 -gaza_strip n 1 2 @ #p 1 0 08794366 -gazania n 1 3 @ ~ #m 1 0 11971248 -gazania_rigens n 1 1 @ 1 0 11971406 -gaze n 1 2 @ + 1 1 00878648 -gazebo n 1 2 @ ~ 1 0 03430418 -gazella n 1 3 @ #m %m 1 0 02422860 -gazella_subgutturosa n 1 2 @ #m 1 0 02423362 -gazella_thomsoni n 1 2 @ #m 1 0 02423218 -gazelle n 1 3 @ ~ #m 1 0 02423022 -gazelle_hound n 1 1 @ 1 0 02091831 -gazette n 1 2 @ + 1 0 06267655 -gazetteer n 2 2 @ #p 2 0 10122765 06419628 -gazillion n 1 1 @ 1 0 13776432 -gazpacho n 1 1 @ 1 0 07585758 -gb n 6 6 @ ~ #p %m %p ; 6 0 14961375 13642000 13629132 13628955 13628761 08858942 -gbit n 1 3 @ #p %p 1 0 13629132 -gbu-28 n 1 1 @ 1 0 02920785 -gc n 1 1 @ 1 0 15278691 -gca n 1 1 @ 1 0 00305326 -gcse n 1 2 @ ; 1 0 14431169 -gd n 2 2 @ #s 2 0 15056372 14638041 -gdansk n 1 3 @ #m #p 1 0 08983742 -gdp n 1 1 @ 1 0 13257511 -ge n 2 3 @ #s ; 2 0 14638517 09560762 -gean n 1 1 @ 1 0 12642600 -gear n 4 4 @ ~ #p %p 4 1 03430551 03431745 03431243 03430959 -gear_box n 1 3 @ #p %p 1 0 03431570 -gear_case n 1 3 @ #p %p 1 0 03431570 -gear_lever n 1 2 @ #p 1 0 03432129 -gear_mechanism n 1 2 @ ~ 1 0 03431243 -gear_wheel n 1 3 @ ~ %p 1 0 03430551 -gearbox n 1 3 @ #p %p 1 0 03431570 -geared_wheel n 1 3 @ ~ %p 1 0 03430551 -gearing n 1 3 @ ~ #p 1 0 03431745 -gearset n 1 1 @ 1 1 03432061 -gearshift n 1 2 @ #p 1 0 03432129 -gearstick n 1 2 @ #p 1 0 03432129 -geartrain n 1 3 @ ~ #p 1 0 03431745 -geastraceae n 1 3 @ #m %m 1 0 13044541 -geastrum n 1 2 @ #m 1 0 13045027 -geastrum_coronatum n 1 1 @ 1 0 13045210 -geb n 1 1 @ 1 0 09512157 -gebang_palm n 1 2 @ #m 1 0 12589458 -gebhard_leberecht_von_blucher n 1 1 @ 1 0 10853932 -gecko n 1 2 @ ~ 1 0 01674990 -gee n 1 1 @ 1 1 13648596 -gee-gee n 1 1 @ 1 0 02375757 -geebung n 1 2 @ #m 1 0 12222493 -geek n 2 2 @ ~ 2 0 10123615 10042845 -geert_geerts n 1 1 @ 1 0 10959857 -geezer n 1 3 @ + ; 1 0 10123711 -geezerhood n 1 4 @ ~ %p + 1 0 15153787 -gefilte_fish n 1 1 @ 1 0 07868955 -gegenschein n 1 1 @ 1 1 11442298 -geglossaceae n 1 1 @ 1 0 12983873 -gehenna n 1 1 @ 1 0 05630277 -gehrig n 1 1 @ 1 0 10993350 -geiger n 1 1 @ 1 0 10993507 -geiger-muller_counter n 1 2 @ %p 1 0 03432360 -geiger-muller_tube n 1 2 @ #p 1 0 03432509 -geiger_counter n 1 2 @ %p 1 0 03432360 -geiger_tube n 1 2 @ #p 1 1 03432509 -geisel n 1 1 @ 1 0 10993636 -geisha n 1 1 @ 1 0 10122858 -geisha_girl n 1 1 @ 1 0 10122858 -gekkonidae n 1 3 @ #m %m 1 0 01674850 -gel n 2 3 @ ~ + 2 0 14590542 03432668 -gelatin n 3 3 @ ~ + 3 0 14730553 07643981 03432668 -gelatin_dessert n 1 2 @ ~ 1 0 07644244 -gelatine n 1 2 @ + 1 0 14730553 -gelatinousness n 1 2 @ + 1 0 04936213 -gelding n 1 2 @ + 1 1 02377388 -gelechia n 1 3 @ #m %m 1 0 02293560 -gelechia_gossypiella n 2 2 @ #m 2 0 02310149 02293715 -gelechiid n 1 3 @ ~ #m 1 0 02293352 -gelechiid_moth n 1 3 @ ~ #m 1 0 02293352 -gelechiidae n 1 3 @ #m %m 1 0 02293135 -gelidity n 1 2 @ + 1 0 05015463 -gelignite n 1 1 @ 1 0 03432796 -gell-mann n 1 1 @ 1 0 10993777 -gelly n 1 1 @ 1 0 03432796 -gelsemium n 1 3 @ #m %m 1 0 12485811 -gelsemium_sempervirens n 1 2 @ #m 1 0 12485981 -gelt n 1 1 @ 1 0 13385216 -gem n 5 3 @ ~ #p 5 1 03432972 14699752 10221656 07690273 03596787 -gem_clip n 1 1 @ 1 0 03886762 -gem_cutter n 1 1 @ 1 0 10123026 -gem_state n 1 3 @ #p %p 1 0 09081213 -gemara n 1 2 @ #p 1 0 06462656 -gemfibrozil n 1 1 @ 1 0 03433079 -geminate n 1 1 @ 1 0 07119776 -gemination n 2 2 @ + 2 0 07100253 01019703 -gemini n 3 4 @ #p %m ; 3 0 09752519 09287613 08686495 -gemini_program n 1 1 @ 1 0 05899831 -gemini_the_twins n 1 1 @ 1 0 08686495 -gemma n 1 1 @ 1 0 11682659 -gemmation n 1 1 @ 1 0 13544073 -gemmule n 1 1 @ 1 0 05889762 -gemonil n 1 2 @ ; 1 0 03754979 -gempylid n 1 3 @ ~ #m 1 0 02621908 -gempylidae n 1 3 @ #m %m 1 0 02621721 -gempylus n 1 2 @ #m 1 0 02622130 -gempylus_serpens n 1 2 @ #m 1 0 02622249 -gemsbok n 1 1 @ 1 0 02428508 -gemsbuck n 1 1 @ 1 0 02428508 -gemstone n 1 3 @ ~ #p 1 0 14699752 -gen n 1 2 @ ; 1 0 06637677 -gen_x n 1 1 @ 1 0 08372020 -gendarme n 1 2 @ #m 1 0 10123122 -gendarmerie n 1 2 @ %m 1 0 08210254 -gendarmery n 1 2 @ %m 1 0 08210254 -gender n 2 3 @ ~ = 2 1 06328643 05006898 -gender_agreement n 1 1 @ 1 0 13797985 -gender_identity n 1 1 @ 1 0 04618359 -gender_role n 1 1 @ 1 0 00722253 -gene n 1 5 @ ~ #p + ; 1 0 05436752 -gene-splicing n 1 1 @ 1 0 06127209 -gene_chip n 1 1 @ 1 0 03433247 -gene_delivery_vector n 1 2 @ ~ 1 0 09460516 -gene_expression n 1 1 @ 1 0 11459907 -gene_kelly n 1 1 @ 1 0 11099729 -gene_linkage n 1 2 @ ; 1 0 04923024 -gene_mutation n 1 2 @ ; 1 0 07426406 -gene_sarazen n 1 1 @ 1 0 11281682 -gene_tunney n 1 1 @ 1 0 11351832 -genealogist n 1 2 @ + 1 0 10123214 -genealogy n 2 3 @ ~ + 2 0 08102402 05998225 -general n 3 5 ! @ ~ + ; 3 1 10123844 10125561 05818388 -general-purpose_bomb n 1 2 @ ~ 1 0 03433637 -general_agent n 2 2 ! @ 2 0 10738968 10209731 -general_agreement_on_tariffs_and_trade n 1 1 @ 1 0 08300429 -general_anaesthesia n 1 2 @ ~ 1 0 14026981 -general_anaesthetic n 1 2 @ ~ 1 0 03433434 -general_anatomy n 1 3 @ ~ - 1 0 06057539 -general_anesthesia n 1 2 @ ~ 1 0 14026981 -general_anesthetic n 1 2 @ ~ 1 0 03433434 -general_assembly n 2 4 @ ~ #m - 2 0 08296059 08163273 -general_baptist n 1 1 @ 1 0 08090083 -general_certificate_of_secondary_education n 1 2 @ ; 1 0 14431169 -general_charles_de_gaulle n 1 1 @ 1 0 10927824 -general_custer n 1 1 @ 1 0 10919061 -general_damages n 1 2 @ ; 1 0 13291356 -general_de_gaulle n 1 1 @ 1 0 10927824 -general_delivery n 1 2 @ #p 1 0 08145701 -general_election n 1 1 @ 1 1 00182435 -general_franco n 1 1 @ 1 0 10978842 -general_headquarters n 1 2 @ ; 1 0 03076104 -general_knowledge n 1 2 @ ~ 1 0 05612067 -general_ledger n 1 2 @ %p 1 0 13404655 -general_lien n 1 1 @ 1 0 13401610 -general_manager n 1 1 @ 1 1 10125697 -general_medicine n 1 1 @ 1 0 06052300 -general_officer n 1 3 @ ~ ; 1 0 10125786 -general_practitioner n 1 2 @ ~ 1 0 10126009 -general_relativity n 1 1 @ 1 0 06106820 -general_relativity_theory n 1 1 @ 1 0 06106820 -general_security_services n 1 2 @ ; 1 0 08347457 -general_services_administration n 1 2 @ %p 1 0 08351532 -general_staff n 1 2 @ ; 1 0 08404735 -general_store n 1 1 @ 1 0 03119203 -general_theory_of_relativity n 1 1 @ 1 0 06106820 -general_verdict n 1 3 ! @ ; 1 0 01193176 -generalcy n 1 1 @ 1 0 00592652 -generalisation n 4 4 @ ~ + ; 4 0 05913275 05780104 05774415 05756414 -generalissimo n 1 1 @ 1 0 09941787 -generalist n 1 2 ! @ 1 1 10520286 -generality n 2 5 ! @ ~ = + 2 0 05913275 04764412 -generalization n 4 4 @ ~ + ; 4 3 05774415 05913275 05780104 05756414 -generalized_anxiety_disorder n 1 1 @ 1 0 14380717 -generalized_epilepsy n 1 1 @ 1 0 14087513 -generalized_seizure n 1 1 @ 1 0 14083368 -generally_accepted_accounting_principles n 1 2 @ %m 1 0 08145871 -generalship n 2 3 @ + ; 2 0 05617467 00592652 -generation n 7 3 @ ~ + 7 3 08369406 08368907 15249636 15290930 07324380 00922144 00849982 -generation_gap n 1 1 @ 1 0 07184024 -generation_x n 1 1 @ 1 0 08372020 -generative_grammar n 1 2 @ ; 1 0 06176519 -generator n 4 4 @ ~ %p + 4 2 03434188 03433877 10126177 03434285 -generic n 2 3 ! @ ~ 2 0 07899976 03434428 -generic_drug n 1 2 ! @ 1 0 03434549 -generic_noun n 1 1 @ 1 0 06319881 -generic_wine n 1 2 ! @ 1 0 07899976 -generosity n 2 5 ! @ ~ = + 2 1 04831727 01085937 -generousness n 1 4 @ ~ = + 1 0 04831727 -genesis n 2 3 @ #p - 2 1 07324380 06432376 -genet n 3 2 @ #m 3 0 10994097 10993936 02137015 -genetic_abnormality n 1 2 @ ~ 1 0 14151139 -genetic_code n 1 2 @ ~ 1 0 08457369 -genetic_constitution n 1 1 @ 1 0 04934043 -genetic_counseling n 1 1 @ 1 0 06651302 -genetic_defect n 1 2 @ ~ 1 0 14151139 -genetic_disease n 1 2 @ ~ 1 0 14151139 -genetic_disorder n 1 2 @ ~ 1 0 14151139 -genetic_endowment n 1 2 @ ~ 1 0 04920867 -genetic_engineering n 1 1 @ 1 0 06127209 -genetic_fingerprint n 1 1 @ 1 0 06643883 -genetic_fingerprinting n 1 1 @ 1 0 00152519 -genetic_map n 1 1 @ 1 0 05729483 -genetic_marker n 1 1 @ 1 0 05438483 -genetic_mutation n 1 4 @ ~ %p ; 1 0 07425011 -genetic_profiling n 1 1 @ 1 0 00152519 -genetic_psychology n 1 1 @ 1 0 06138941 -genetic_science n 1 3 @ ~ - 1 0 06075527 -genetic_screening n 1 1 @ 1 0 00645162 -geneticism n 1 1 @ 1 0 05945383 -geneticist n 1 3 @ ~ + 1 1 10126424 -genetics n 1 4 @ ~ + - 1 0 06075527 -genetta n 1 3 @ #m %m 1 0 02136901 -genetta_genetta n 1 2 @ #m 1 0 02137015 -geneva n 2 3 @ #p %m 2 0 09032604 07904760 -geneva_convention n 1 1 @ 1 0 06774650 -geneva_gown n 1 1 @ 1 0 03434830 -genevan n 2 3 @ ~ #m 2 0 10123312 09889346 -geneve n 1 3 @ #p %m 1 0 09032604 -genf n 1 3 @ #p %m 1 0 09032604 -genghis_khan n 1 1 @ 1 0 10994308 -geniality n 1 3 @ ~ + 1 0 04654652 -genicular_vein n 1 2 @ #p 1 0 05368100 -geniculate_body n 1 3 @ ~ #p 1 0 05487423 -genie n 1 3 @ ~ ; 1 1 09544433 -genip n 2 4 @ #m #p %p 2 0 12744850 07763290 -genipa n 1 3 @ ~ #m 1 0 12667406 -genipa_americana n 1 3 @ #m %p 1 0 12667582 -genipap n 1 2 @ #p 1 0 07763483 -genipap_fruit n 2 4 @ #m #p %p 2 0 12667582 07763483 -genista n 1 3 @ #m %m 1 0 12530208 -genista_anglica n 1 2 @ #m 1 0 12530439 -genista_hispanica n 1 2 @ #m 1 0 12530629 -genista_raetam n 1 2 @ #m 1 0 12567490 -genista_tinctoria n 1 2 @ #m 1 0 12530818 -genital_herpes n 1 1 @ 1 0 14132524 -genital_organ n 1 2 @ ~ 1 0 05514081 -genital_personality n 1 2 @ ; 1 0 04619420 -genital_phase n 1 3 @ #p ; 1 0 15146004 -genital_stage n 1 3 @ #p ; 1 0 15146004 -genital_system n 1 4 @ ~ #p %p 1 0 05509146 -genital_torture n 1 1 @ 1 0 00422719 -genital_wart n 1 1 @ 1 0 04696797 -genitalia n 1 2 @ ~ 1 0 05514081 -genitals n 1 2 @ ~ 1 0 05514081 -genitive n 1 2 @ ~ 1 0 06311852 -genitive_case n 1 2 @ ~ 1 0 06311852 -genitor n 1 2 @ ~ 1 0 10126708 -genitourinary_apparatus n 1 2 @ %p 1 0 05509452 -genitourinary_system n 1 2 @ %p 1 0 05509452 -genius n 5 2 @ ~ 5 3 10126926 05619743 09762509 05625373 05624461 -genius_loci n 2 1 @ 2 0 14525274 09540241 -genlisea n 1 2 @ #m 1 0 12873341 -genoa n 1 3 @ #p %m 1 0 08808452 -genocide n 1 2 @ ~ 1 0 01245159 -genoese n 1 2 @ #m 1 0 10123415 -genoise n 1 1 @ 1 0 07634514 -genome n 1 1 @ 1 0 08457543 -genomics n 1 2 @ ~ 1 0 06077087 -genotype n 2 3 @ ~ + 2 0 07941405 04934043 -genova n 1 3 @ #p %m 1 0 08808452 -genre n 4 3 @ ~ - 4 1 05845332 07092158 07071942 03434943 -genre_painter n 1 1 @ 1 0 10123517 -genre_painting n 1 1 @ 1 0 03435290 -gens n 1 1 @ 1 0 07972279 -genseric n 1 1 @ 1 0 10994500 -gent n 3 3 @ ~ #p 3 0 10127186 09908025 08851500 -gentamicin n 1 1 @ 1 0 03435382 -genteelness n 1 2 @ + 1 0 04813540 -gentian n 1 3 @ ~ #m 1 1 12293723 -gentian_family n 1 3 @ #m %m 1 0 12290116 -gentian_violet n 1 1 @ 1 0 14770838 -gentiana n 1 3 @ #m %m 1 0 12293419 -gentiana_acaulis n 1 1 @ 1 0 12294124 -gentiana_andrewsii n 1 1 @ 1 0 12294331 -gentiana_calycosa n 1 1 @ 1 0 12294542 -gentiana_clausa n 1 1 @ 1 0 12294723 -gentiana_crinita n 1 1 @ 1 0 12296735 -gentiana_detonsa n 1 1 @ 1 0 12296929 -gentiana_holopetala n 1 1 @ 1 0 12297507 -gentiana_lutea n 1 2 @ #m 1 0 12294871 -gentiana_pneumonanthe n 1 2 @ #m 1 0 12295033 -gentiana_procera n 1 2 @ #m 1 0 12297110 -gentiana_quinquefolia n 1 2 @ #m 1 0 12295796 -gentiana_saponaria n 1 1 @ 1 0 12295237 -gentiana_thermalis n 1 1 @ 1 0 12297280 -gentiana_villosa n 1 1 @ 1 0 12295429 -gentianaceae n 1 3 @ #m %m 1 0 12290116 -gentianales n 1 3 @ #m %m 1 0 12289744 -gentianella n 2 3 @ #m %m 2 0 12295560 12294124 -gentianella_amarella n 1 2 @ #m 1 0 12296045 -gentianella_quinquefolia n 1 2 @ #m 1 0 12295796 -gentianopsid_procera n 1 2 @ #m 1 0 12297110 -gentianopsis n 1 3 @ #m %m 1 0 12296218 -gentianopsis_crinita n 1 1 @ 1 0 12296735 -gentianopsis_detonsa n 1 1 @ 1 0 12296929 -gentianopsis_holopetala n 1 1 @ 1 0 12297507 -gentianopsis_thermalis n 1 1 @ 1 0 12297280 -gentile n 4 3 @ ~ + 4 0 10166394 09679170 09679028 09678917 -gentility n 1 2 @ + 1 0 04813540 -gentle_breeze n 1 2 @ #p 1 0 11432632 -gentle_wind n 1 2 @ ~ 1 0 11431754 -gentlefolk n 1 1 @ 1 0 07947675 -gentleman n 2 3 @ ~ + 2 1 10127273 10745332 -gentleman's-cane n 1 1 @ 1 0 11823756 -gentleman's_gentleman n 1 1 @ 1 0 10745332 -gentleman-at-arms n 1 1 @ 1 0 10127420 -gentleman_jim n 1 1 @ 1 0 10910421 -gentleman_johnny n 1 1 @ 1 0 10872624 -gentlemen's_agreement n 1 1 @ 1 0 06771526 -gentleness n 2 2 @ + 2 0 05069853 04910973 -gentlewoman n 1 2 @ ~ 1 0 09989290 -gentrification n 1 2 @ + 1 0 00268824 -gentry n 1 2 @ ~ 1 1 08387213 -genu n 1 3 @ #p %p 1 0 05573602 -genu_valgum n 1 2 @ #p 1 0 14559983 -genu_varum n 1 1 @ 1 0 05561834 -genuflection n 1 2 @ + 1 0 07275078 -genuflexion n 1 2 @ + 1 0 07275078 -genuineness n 2 4 ! @ ~ + 2 0 13955341 04783247 -genus n 2 6 @ ~ #m %m + ; 2 2 05845013 08108972 -genus-fenusa n 1 2 @ #m 1 0 02218912 -genus-megapodius n 1 2 @ #m 1 0 01800963 -genus-milvus n 1 2 @ #m 1 0 01608685 -genus_abelia n 1 3 @ #m %m 1 0 12671529 -genus_abelmoschus n 1 3 @ #m %m 1 0 12171750 -genus_abies n 1 3 @ #m %m 1 0 11620560 -genus_abramis n 1 3 @ #m %m 1 0 01440344 -genus_abrocoma n 1 3 @ #m %m 1 0 02368280 -genus_abronia n 1 3 @ #m %m 1 0 11836556 -genus_abudefduf n 1 3 @ #m %m 1 0 02607345 -genus_abutilon n 1 3 @ #m %m 1 0 12172715 -genus_acacia n 1 3 @ #m %m 1 0 11755694 -genus_acalypha n 1 3 @ #m %m 1 0 12922283 -genus_acanthisitta n 1 3 @ #m %m 1 0 01588858 -genus_acanthocereus n 1 2 @ #m 1 0 11842861 -genus_acanthocybium n 1 3 @ #m %m 1 0 02625132 -genus_acanthophis n 1 3 @ #m %m 1 0 01750027 -genus_acanthoscelides n 1 3 @ #m %m 1 0 02182498 -genus_acanthurus n 1 3 @ #m %m 1 0 02621419 -genus_acanthus n 1 3 @ #m %m 1 0 12812121 -genus_acarus n 1 2 @ #m 1 0 01781570 -genus_accipiter n 1 3 @ #m %m 1 0 01606335 -genus_acer n 1 3 @ #m %m 1 0 12752039 -genus_acherontia n 1 3 @ #m %m 1 0 02299715 -genus_acheta n 1 3 @ #m %m 1 0 02229867 -genus_achillea n 1 3 @ #m %m 1 0 11916268 -genus_achimenes n 1 3 @ #m %m 1 0 12830080 -genus_achoerodus n 1 3 @ #m %m 1 0 02608151 -genus_achras n 1 2 @ #m 1 0 12772419 -genus_acinonyx n 1 3 @ #m %m 1 0 02130190 -genus_acinos n 1 3 @ #m %m 1 0 12839409 -genus_acipenser n 1 3 @ #m %m 1 0 02640453 -genus_acocanthera n 1 3 @ #m %m 1 0 11768242 -genus_acokanthera n 1 3 @ #m %m 1 0 11768242 -genus_aconitum n 1 3 @ #m %m 1 0 11722769 -genus_acorus n 1 3 @ #m %m 1 0 11780589 -genus_acridotheres n 1 3 @ #m %m 1 0 01577818 -genus_acris n 1 3 @ #m %m 1 0 01651370 -genus_acrobates n 1 3 @ #m %m 1 0 01882372 -genus_acrocarpus n 1 3 @ #m %m 1 0 12490330 -genus_acrocephalus n 1 2 @ #m 1 0 01565480 -genus_acroclinium n 1 2 @ %m 1 0 11917186 -genus_acrocomia n 1 3 @ #m %m 1 0 12583529 -genus_acropora n 1 3 @ #m %m 1 0 01917434 -genus_acrostichum n 1 3 @ #m %m 1 0 13206001 -genus_actaea n 1 3 @ #m %m 1 0 11723655 -genus_actias n 1 3 @ #m %m 1 0 02302853 -genus_actinia n 1 2 @ #m 1 0 01914961 -genus_actinidia n 1 3 @ #m %m 1 0 12371002 -genus_actiniopteris n 1 2 @ #m 1 0 13206438 -genus_actinomeris n 1 2 @ #m 1 0 12030479 -genus_actinomyces n 1 3 @ #m %m 1 0 01375617 -genus_actitis n 1 3 @ #m %m 1 0 02026798 -genus_adalia n 1 3 @ #m %m 1 0 02165754 -genus_adansonia n 1 3 @ #m %m 1 0 12189620 -genus_addax n 1 3 @ #m %m 1 0 02420994 -genus_adelges n 1 3 @ #m %m 1 0 02254531 -genus_adenanthera n 1 3 @ #m %m 1 0 11758628 -genus_adenium n 1 3 @ #m %m 1 0 11769002 -genus_adenota n 1 3 @ #m %m 1 0 02427958 -genus_adiantum n 1 3 @ #m %m 1 0 13206584 -genus_adlumia n 1 2 @ #m 1 0 11909745 -genus_adonis n 1 3 @ #m %m 1 0 11724529 -genus_aedes n 1 3 @ #m %m 1 0 02200705 -genus_aegiceras n 1 3 @ #m %m 1 0 12916025 -genus_aegilops n 1 3 @ #m %m 1 0 12104614 -genus_aegypius n 1 3 @ #m %m 1 0 01617949 -genus_aegyptopithecus n 1 3 @ #m %m 1 0 02479205 -genus_aeonium n 1 3 @ #m %m 1 0 12786684 -genus_aepyceros n 1 3 @ #m %m 1 0 02422561 -genus_aepyornis n 1 3 @ #m %m 1 0 01522305 -genus_aerides n 1 3 @ #m %m 1 0 12044269 -genus_aerobacter n 1 3 @ #m %m 1 0 01353773 -genus_aeschynanthus n 1 3 @ #m %m 1 0 12830404 -genus_aesculus n 1 3 @ #m %m 1 0 12768177 -genus_aethionema n 1 3 @ #m %m 1 0 11869890 -genus_aethusa n 1 3 @ #m %m 1 0 12931109 -genus_aetobatus n 1 3 @ #m %m 1 0 01499261 -genus_aframomum n 1 3 @ #m %m 1 0 12357802 -genus_afrocarpus n 1 3 @ #m %m 1 0 11653323 -genus_afropavo n 1 2 @ #m 1 0 01803548 -genus_agalinis n 1 2 @ #m 1 0 12883733 -genus_agama n 1 3 @ #m %m 1 0 01687856 -genus_agapanthus n 1 3 @ #m %m 1 0 12428915 -genus_agapornis n 1 3 @ #m %m 1 0 01819918 -genus_agaricus n 1 3 @ #m %m 1 0 13000668 -genus_agastache n 1 3 @ #m %m 1 0 12839839 -genus_agathis n 1 3 @ #m %m 1 0 11647131 -genus_agave n 1 3 @ #m %m 1 0 12476902 -genus_agdestis n 1 2 @ #m 1 0 11856055 -genus_agelaius n 1 3 @ #m %m 1 0 01575270 -genus_ageratina n 1 3 @ #m %m 1 0 11917633 -genus_ageratum n 1 3 @ #m %m 1 0 11918131 -genus_agkistrodon n 1 3 @ #m %m 1 0 01754190 -genus_aglaomorpha n 1 3 @ #m %m 1 0 13174206 -genus_aglaonema n 1 3 @ #m %m 1 0 11781430 -genus_agonus n 1 3 @ #m %m 1 0 02647903 -genus_agrimonia n 1 3 @ #m %m 1 0 12622653 -genus_agriocharis n 1 3 @ #m %m 1 0 01794460 -genus_agrobacterium n 1 3 @ #m %m 1 0 01354521 -genus_agropyron n 1 3 @ #m %m 1 0 12104943 -genus_agrostemma n 1 3 @ #m %m 1 0 11805380 -genus_agrostis n 1 3 @ #m %m 1 0 12106540 -genus_ailanthus n 1 3 @ #m %m 1 0 12716861 -genus_ailuropoda n 1 3 @ #m %m 1 0 02510240 -genus_ailurus n 1 3 @ #m %m 1 0 02509694 -genus_aix n 1 3 @ #m %m 1 0 01851996 -genus_ajaia n 1 3 @ #m %m 1 0 02007161 -genus_ajuga n 1 3 @ #m %m 1 0 12840640 -genus_alauda n 1 3 @ #m %m 1 0 01527774 -genus_albatrellus n 1 2 @ #m 1 0 13050555 -genus_albizia n 1 3 @ #m %m 1 0 11759049 -genus_albizzia n 1 3 @ #m %m 1 0 11759049 -genus_albuca n 1 3 @ #m %m 1 0 12429589 -genus_albugo n 1 3 @ #m %m 1 0 12981791 -genus_albula n 1 3 @ #m %m 1 0 02542283 -genus_alca n 1 3 @ #m %m 1 0 02045705 -genus_alcea n 1 3 @ #m %m 1 0 12173407 -genus_alcedo n 1 3 @ #m %m 1 0 01827658 -genus_alcelaphus n 1 3 @ #m %m 1 0 02421962 -genus_alces n 1 3 @ #m %m 1 0 02432867 -genus_aldrovanda n 1 3 @ #m %m 1 0 12783173 -genus_alectis n 1 3 @ #m %m 1 0 02577823 -genus_alectoria n 1 3 @ #m %m 1 0 12990407 -genus_alectoris n 1 3 @ #m %m 1 0 01807988 -genus_alectura n 1 3 @ #m %m 1 0 01801753 -genus_alepisaurus n 1 3 @ #m %m 1 0 02544086 -genus_aletris n 1 3 @ #m %m 1 0 12429942 -genus_aleurites n 1 3 @ #m %m 1 0 12927354 -genus_aleyrodes n 1 3 @ #m %m 1 0 02246487 -genus_algeripithecus n 1 3 @ #m %m 1 0 02479482 -genus_alisma n 1 3 @ #m %m 1 0 12612020 -genus_allamanda n 1 3 @ #m %m 1 0 11769483 -genus_alliaria n 1 3 @ #m %m 1 0 11870212 -genus_alligator n 1 3 @ #m %m 1 0 01698303 -genus_allionia n 1 3 @ #m %m 1 0 11838266 -genus_allium n 1 3 @ #m %m 1 0 12431128 -genus_allosaurus n 1 3 @ #m %m 1 0 01714059 -genus_alnus n 1 3 @ #m %m 1 0 12283981 -genus_alocasia n 1 3 @ #m %m 1 0 11781850 -genus_aloe n 1 3 @ #m %m 1 0 12436490 -genus_alopecurus n 1 3 @ #m %m 1 0 12107489 -genus_alopex n 1 3 @ #m %m 1 0 02119961 -genus_alopius n 1 3 @ #m %m 1 0 01485801 -genus_alosa n 1 3 @ #m %m 1 0 02530294 -genus_alouatta n 1 3 @ #m %m 1 0 02492536 -genus_alpinia n 1 3 @ #m %m 1 0 12356668 -genus_alsobia n 1 3 @ #m %m 1 0 12830974 -genus_alsophila n 1 3 @ #m %m 1 0 02287476 -genus_alstonia n 1 3 @ #m %m 1 0 11770013 -genus_alstroemeria n 1 3 @ #m %m 1 0 12438324 -genus_alternanthera n 1 3 @ #m %m 1 0 11824548 -genus_althaea n 1 3 @ #m %m 1 0 12174124 -genus_alyssum n 1 3 @ #m %m 1 0 11870607 -genus_alytes n 1 3 @ #m %m 1 0 01648001 -genus_amanita n 1 4 @ ~ #m %m 1 0 13002433 -genus_amaranthus n 1 3 @ #m %m 1 0 11822849 -genus_amaryllis n 1 3 @ #m %m 1 0 12419217 -genus_amauropelta n 1 2 @ #m 1 0 13228194 -genus_amazona n 1 3 @ #m %m 1 0 01818169 -genus_amberboa n 1 3 @ #m %m 1 0 11918631 -genus_ambloplites n 1 3 @ #m %m 1 0 02564130 -genus_amblyrhynchus n 1 3 @ #m %m 1 0 01677613 -genus_ambrosia n 1 3 @ #m %m 1 0 11919026 -genus_ambystoma n 1 3 @ #m %m 1 0 01631903 -genus_ameiurus n 1 3 @ #m %m 1 0 02518990 -genus_amelanchier n 1 3 @ #m %m 1 0 12623368 -genus_amia n 1 3 @ #m %m 1 0 02638960 -genus_amianthum n 1 3 @ #m %m 1 0 12438977 -genus_ammobium n 1 3 @ #m %m 1 0 11920344 -genus_ammodytes n 1 3 @ #m %m 1 0 02618372 -genus_ammotragus n 1 3 @ #m %m 1 0 02415971 -genus_amoeba n 1 2 @ #m 1 0 01391779 -genus_amorpha n 1 3 @ #m %m 1 0 12503908 -genus_amorphophallus n 1 3 @ #m %m 1 0 11782522 -genus_amphibolips n 1 2 @ #m 1 0 02217050 -genus_amphicarpa n 1 3 @ #m %m 1 0 12505032 -genus_amphicarpaea n 1 3 @ #m %m 1 0 12505032 -genus_amphioxus n 1 3 @ #m %m 1 0 01467675 -genus_amphiprion n 1 3 @ #m %m 1 0 02606926 -genus_amphisbaena n 1 2 @ %m 1 0 01683036 -genus_amphisbaenia n 1 2 @ %m 1 0 01683036 -genus_amphiuma n 1 3 @ #m %m 1 0 01638611 -genus_amsinckia n 1 3 @ #m %m 1 0 12816753 -genus_amsonia n 1 3 @ #m %m 1 0 11770526 -genus_amygdalus n 1 2 @ #m 1 0 12644713 -genus_anabas n 1 3 @ #m %m 1 0 02556195 -genus_anabrus n 1 3 @ #m %m 1 0 02228565 -genus_anacardium n 1 3 @ #m %m 1 0 12759120 -genus_anacyclus n 1 3 @ #m %m 1 0 11920867 -genus_anadenanthera n 1 3 @ #m %m 1 0 11760128 -genus_anagallis n 1 3 @ #m %m 1 0 12092127 -genus_anagasta n 1 3 @ #m %m 1 0 02289845 -genus_anagyris n 1 3 @ #m %m 1 0 12505563 -genus_ananas n 1 3 @ #m %m 1 0 12607198 -genus_anaphalis n 1 3 @ #m %m 1 0 11921200 -genus_anarhichas n 1 3 @ #m %m 1 0 02616705 -genus_anas n 1 3 @ #m %m 1 0 01847565 -genus_anasa n 1 3 @ #m %m 1 0 02239659 -genus_anastatica n 1 2 @ %m 1 0 11870916 -genus_anastomus n 1 3 @ #m %m 1 0 02003456 -genus_anatotitan n 1 3 @ #m %m 1 0 01706247 -genus_anchusa n 1 3 @ #m %m 1 0 12817335 -genus_ancistrodon n 1 3 @ #m %m 1 0 01754190 -genus_ancylus n 1 3 @ #m %m 1 0 01949817 -genus_andira n 1 3 @ #m %m 1 0 12505987 -genus_andreaea n 1 2 @ #m 1 0 11539825 -genus_andrena n 1 3 @ #m %m 1 0 02210291 -genus_andricus n 1 2 @ #m 1 0 02217201 -genus_andromeda n 1 3 @ #m %m 1 0 12229282 -genus_andropogon n 1 3 @ #m %m 1 0 12108249 -genus_andryala n 1 3 @ #m %m 1 0 11921622 -genus_aneides n 1 3 @ #m %m 1 0 01636984 -genus_anemia n 1 3 @ #m %m 1 0 12955639 -genus_anemone n 1 3 @ #m %m 1 0 11724822 -genus_anemonella n 1 3 @ #m %m 1 0 11726569 -genus_anemopsis n 1 3 @ #m %m 1 0 13152203 -genus_anethum n 1 2 @ #m 1 0 12931449 -genus_angelica n 1 2 @ %m 1 0 12931738 -genus_angiopteris n 1 3 @ #m %m 1 0 13215462 -genus_angraecum n 1 3 @ #m %m 1 0 12044571 -genus_angrecum n 1 3 @ #m %m 1 0 12044571 -genus_anguilla n 1 3 @ #m %m 1 0 02526673 -genus_anguillula n 1 3 @ #m %m 1 0 01931984 -genus_anguis n 1 3 @ #m %m 1 0 01690005 -genus_anhima n 1 3 @ #m %m 1 0 01860713 -genus_anhinga n 1 3 @ #m %m 1 0 02054376 -genus_anigozanthus n 1 3 @ #m %m 1 0 12312405 -genus_anisotremus n 1 3 @ #m %m 1 0 02589486 -genus_ankylosaurus n 1 3 @ #m %m 1 0 01702087 -genus_annona n 1 3 @ #m %m 1 0 11693812 -genus_anoa n 1 3 @ #m %m 1 0 02408903 -genus_anodonta n 1 3 @ #m %m 1 0 01965111 -genus_anoectochilus n 1 3 @ #m %m 1 0 12045004 -genus_anogramma n 1 3 @ #m %m 1 0 13208138 -genus_anolis n 1 3 @ #m %m 1 0 01682588 -genus_anomala n 1 3 @ #m %m 1 0 02173571 -genus_anomalops n 1 3 @ #m %m 1 0 01451726 -genus_anomalopteryx n 1 3 @ #m %m 1 0 01523379 -genus_anomia n 1 3 @ #m %m 1 0 01962350 -genus_anopheles n 1 3 @ #m %m 1 0 02201252 -genus_anser n 1 3 @ #m %m 1 0 01856225 -genus_antedon n 1 4 @ ~ #m %m 1 0 02320888 -genus_antennaria n 1 3 @ #m %m 1 0 11921949 -genus_anthemis n 1 3 @ #m %m 1 0 11923016 -genus_antheraea n 1 3 @ #m %m 1 0 02304229 -genus_anthericum n 1 3 @ #m %m 1 0 12439400 -genus_antheropeas n 1 3 @ #m %m 1 0 11923827 -genus_anthidium n 1 3 @ #m %m 1 0 02211773 -genus_anthoceros n 1 2 @ #m 1 0 11538716 -genus_anthonomus n 1 3 @ #m %m 1 0 02178563 -genus_anthriscus n 1 3 @ #m %m 1 0 12932532 -genus_anthurium n 1 3 @ #m %m 1 0 11783723 -genus_anthus n 1 3 @ #m %m 1 0 01528542 -genus_anthyllis n 1 3 @ #m %m 1 0 12506614 -genus_antidorcas n 1 3 @ #m %m 1 0 02423465 -genus_antigonia n 1 3 @ #m %m 1 0 01453591 -genus_antilocapra n 1 3 @ #m %m 1 0 02429276 -genus_antilope n 1 3 @ #m %m 1 0 02420389 -genus_antirrhinum n 1 3 @ #m %m 1 0 12877041 -genus_antrodemus n 1 3 @ #m %m 1 0 01714059 -genus_antrozous n 1 3 @ #m %m 1 0 02147452 -genus_aotus n 1 3 @ #m %m 1 0 02492240 -genus_apatosaurus n 1 3 @ #m %m 1 0 01709278 -genus_apatura n 1 3 @ #m %m 1 0 02278704 -genus_aphis n 1 3 @ #m %m 1 0 02252608 -genus_aphriza n 1 3 @ #m %m 1 0 02026498 -genus_aphrophora n 1 3 @ #m %m 1 0 02258354 -genus_aphyllanthes n 1 2 @ #m 1 0 12440385 -genus_apios n 1 3 @ #m %m 1 0 12507236 -genus_apis n 1 3 @ #m %m 1 0 02208143 -genus_apium n 1 3 @ #m %m 1 0 12933164 -genus_aplectrum n 1 3 @ #m %m 1 0 12045352 -genus_aplodontia n 1 3 @ #m %m 1 0 02363818 -genus_aplysia n 1 3 @ #m %m 1 0 01951107 -genus_apocynum n 1 3 @ #m %m 1 0 11767196 -genus_apodemus n 1 3 @ #m %m 1 0 02332606 -genus_apogon n 1 2 @ #m 1 0 02572369 -genus_aporocactus n 1 3 @ #m %m 1 0 11843285 -genus_appendicularia n 1 3 @ #m %m 1 0 01470586 -genus_aptenodytes n 1 3 @ #m %m 1 0 02056421 -genus_apteryx n 1 3 @ #m %m 1 0 01520442 -genus_apus n 1 3 @ #m %m 1 0 01832381 -genus_aquila n 1 3 @ #m %m 1 0 01614195 -genus_aquilegia n 1 3 @ #m %m 1 0 11726925 -genus_ara n 1 3 @ #m %m 1 0 01818409 -genus_arabidopsis n 1 2 @ #m 1 0 11871294 -genus_arabis n 1 3 @ #m %m 1 0 11871916 -genus_arachis n 1 3 @ #m %m 1 0 11748330 -genus_aralia n 1 3 @ #m %m 1 0 11797016 -genus_aramus n 1 2 @ #m 1 0 02013362 -genus_aranea n 1 3 @ #m %m 1 0 01773319 -genus_araneus n 1 3 @ #m %m 1 0 01773319 -genus_araucaria n 1 3 @ #m %m 1 0 11645783 -genus_araujia n 1 3 @ #m %m 1 0 13235947 -genus_arbutus n 1 3 @ #m %m 1 0 12230146 -genus_arca n 1 3 @ #m %m 1 0 01963136 -genus_arcella n 1 3 @ #m %m 1 0 01394366 -genus_arceuthobium n 1 3 @ #m %m 1 0 12738087 -genus_archaeopteryx n 1 3 @ #m %m 1 0 01516064 -genus_archaeornis n 1 3 @ #m %m 1 0 01517265 -genus_archeopteryx n 1 3 @ #m %m 1 0 01516064 -genus_archidiskidon n 1 3 @ #m %m 1 0 02505342 -genus_archilochus n 1 3 @ #m %m 1 0 01834039 -genus_architeuthis n 1 3 @ #m %m 1 0 01972017 -genus_archosargus n 1 3 @ #m %m 1 0 02591757 -genus_arctictis n 1 3 @ #m %m 1 0 02135981 -genus_arctium n 1 3 @ #m %m 1 0 11924330 -genus_arctocebus n 1 3 @ #m %m 1 0 02499434 -genus_arctocephalus n 1 3 @ #m %m 1 0 02077023 -genus_arctonyx n 1 3 @ #m %m 1 0 02448754 -genus_arctostaphylos n 1 3 @ #m %m 1 0 12231031 -genus_arctotis n 1 3 @ #m %m 1 0 11925140 -genus_ardea n 1 3 @ #m %m 1 0 02008316 -genus_ardisia n 1 3 @ #m %m 1 0 12097180 -genus_areca n 1 3 @ #m %m 1 0 12584057 -genus_arenaria n 2 3 @ #m %m 2 0 11805837 02024923 -genus_arenga n 1 3 @ #m %m 1 0 12584559 -genus_arethusa n 1 3 @ #m %m 1 0 12045695 -genus_argemone n 1 3 @ #m %m 1 0 11902595 -genus_argentina n 1 3 @ #m %m 1 0 02542804 -genus_argentinosaurus n 1 3 @ #m %m 1 0 01710993 -genus_argiope n 1 3 @ #m %m 1 0 01772985 -genus_argonauta n 1 3 @ #m %m 1 0 01970502 -genus_argusianus n 1 3 @ #m %m 1 0 01803764 -genus_argynnis n 1 2 @ #m 1 0 02278601 -genus_argyranthemum n 1 3 @ #m %m 1 0 11925720 -genus_argyreia n 1 3 @ #m %m 1 0 12824581 -genus_argyrotaenia n 1 2 @ #m 1 0 02284771 -genus_argyroxiphium n 1 3 @ #m %m 1 0 11926185 -genus_arilus n 1 3 @ #m %m 1 0 02244670 -genus_ariocarpus n 1 3 @ #m %m 1 0 11843709 -genus_ariomma n 1 3 @ #m %m 1 0 02634414 -genus_arisaema n 1 3 @ #m %m 1 0 11784323 -genus_arisarum n 1 3 @ #m %m 1 0 11785100 -genus_aristolochia n 1 3 @ #m %m 1 0 11801247 -genus_aristotelia n 1 3 @ #m %m 1 0 12193458 -genus_arius n 1 3 @ #m %m 1 0 02520985 -genus_arizona n 1 3 @ #m %m 1 0 01733346 -genus_armadillidium n 1 3 @ #m %m 1 0 01991367 -genus_armeria n 1 3 @ #m %m 1 0 12098665 -genus_armillaria n 1 3 @ #m %m 1 0 13231436 -genus_armillariella n 1 3 @ #m %m 1 0 13232515 -genus_armoracia n 1 3 @ #m %m 1 0 11872850 -genus_arnica n 1 3 @ #m %m 1 0 11926640 -genus_arnoseris n 1 3 @ #m %m 1 0 11927616 -genus_arrhenatherum n 1 3 @ #m %m 1 0 12108742 -genus_artamus n 1 3 @ #m %m 1 0 01596887 -genus_artemia n 1 3 @ #m %m 1 0 01995323 -genus_artemisia n 1 3 @ #m %m 1 0 11927901 -genus_arthropteris n 1 2 @ #m 1 0 13204482 -genus_artocarpus n 1 3 @ #m %m 1 0 12400261 -genus_arum n 1 3 @ #m %m 1 0 11779801 -genus_arundinaria n 1 3 @ #m %m 1 0 12148079 -genus_arundo n 1 3 @ #m %m 1 0 12109189 -genus_arvicola n 1 3 @ #m %m 1 0 02341805 -genus_asarum n 1 3 @ #m %m 1 0 11802076 -genus_ascaphus n 1 3 @ #m %m 1 0 01644699 -genus_ascaridia n 1 3 @ #m %m 1 0 01930995 -genus_ascaris n 1 3 @ #m %m 1 0 01930672 -genus_asclepias n 1 3 @ #m %m 1 0 13233548 -genus_ascophyllum n 1 2 @ #m 1 0 01405442 -genus_asimina n 1 3 @ #m %m 1 0 11695485 -genus_asio n 1 3 @ #m %m 1 0 01624707 -genus_aspalathus n 1 3 @ #m %m 1 0 12507670 -genus_asparagus n 1 3 @ #m %m 1 0 12440869 -genus_aspergillus n 1 2 @ #m 1 0 13027375 -genus_asperula n 1 3 @ #m %m 1 0 12661420 -genus_asphodeline n 1 3 @ #m %m 1 0 12442220 -genus_asphodelus n 1 2 @ #m 1 0 12442865 -genus_aspidelaps n 1 3 @ #m %m 1 0 01746818 -genus_aspidiotus n 1 3 @ #m %m 1 0 02249673 -genus_aspidistra n 1 3 @ #m %m 1 0 12443144 -genus_aspidophoroides n 1 3 @ #m %m 1 0 02648174 -genus_aspis n 1 3 @ #m %m 1 0 01753354 -genus_asplenium n 1 3 @ #m %m 1 0 13180304 -genus_astacus n 1 3 @ #m %m 1 0 01985331 -genus_aster n 1 3 @ #m %m 1 0 11931756 -genus_astilbe n 1 3 @ #m %m 1 0 12794853 -genus_astragalus n 1 3 @ #m %m 1 0 12508077 -genus_astrantia n 1 3 @ #m %m 1 0 12933827 -genus_astreus n 1 2 @ #m 1 0 13045834 -genus_astroloma n 1 3 @ #m %m 1 0 12254014 -genus_astronium n 1 3 @ #m %m 1 0 12759496 -genus_astrophyton n 1 3 @ #m %m 1 0 02318538 -genus_astropogon n 1 2 @ #m 1 0 02572628 -genus_ateles n 1 3 @ #m %m 1 0 02493673 -genus_athene n 1 3 @ #m %m 1 0 01621994 -genus_atherinopsis n 1 3 @ #m %m 1 0 02602620 -genus_atherurus n 1 3 @ #m %m 1 0 02347140 -genus_athrotaxis n 1 3 @ #m %m 1 0 11632794 -genus_athyrium n 1 3 @ #m %m 1 0 13194328 -genus_atrichornis n 1 3 @ #m %m 1 0 01545889 -genus_atriplex n 1 3 @ #m %m 1 0 11830570 -genus_atropa n 1 3 @ #m %m 1 0 12898226 -genus_attalea n 1 3 @ #m %m 1 0 12584970 -genus_atticus n 1 3 @ #m %m 1 0 02304967 -genus_aucuba n 1 2 @ #m 1 0 12946432 -genus_aulacorhyncus n 1 3 @ #m %m 1 0 01843576 -genus_aulostomus n 1 3 @ #m %m 1 0 01457708 -genus_aureolaria n 1 3 @ #m %m 1 0 12878525 -genus_auricularia n 1 3 @ #m %m 1 0 13062272 -genus_auriparus n 1 3 @ #m %m 1 0 01593423 -genus_australopithecus n 1 3 @ #m %m 1 0 02475821 -genus_austrocedrus n 1 3 @ #m %m 1 0 11633116 -genus_austrotaxus n 1 3 @ #m %m 1 0 11662764 -genus_automeris n 1 3 @ #m %m 1 0 02303917 -genus_avahi n 1 3 @ #m %m 1 0 02500472 -genus_avena n 1 3 @ #m %m 1 0 12109719 -genus_averrhoa n 1 2 @ #m 1 0 12704191 -genus_avicennia n 1 3 @ #m %m 1 0 12915230 -genus_ayapana n 1 3 @ #m %m 1 0 11937523 -genus_aythya n 1 3 @ #m %m 1 0 01850676 -genus_azadirachta n 1 3 @ #m %m 1 0 12696322 -genus_azolla n 1 3 @ #m %m 1 0 12959371 -genus_babesia n 1 2 @ #m 1 0 01425501 -genus_babyrousa n 1 3 @ #m %m 1 0 02396667 -genus_baccharis n 1 3 @ #m %m 1 0 11937965 -genus_bacillus n 1 3 @ #m %m 1 0 01356670 -genus_bacteroides n 1 2 @ #m 1 0 01364866 -genus_baiomys n 1 3 @ #m %m 1 0 02337480 -genus_bairdiella n 1 3 @ #m %m 1 0 02595217 -genus_balaena n 1 3 @ #m %m 1 0 02063846 -genus_balaeniceps n 1 3 @ #m %m 1 0 02005238 -genus_balaenoptera n 1 3 @ #m %m 1 0 02064608 -genus_balanus n 1 3 @ #m %m 1 0 01998599 -genus_balistes n 1 3 @ #m %m 1 0 02653359 -genus_ballota n 1 3 @ #m %m 1 0 12841686 -genus_balsamorhiza n 1 3 @ #m %m 1 0 11938977 -genus_bambusa n 1 3 @ #m %m 1 0 12147699 -genus_bankia n 1 3 @ #m %m 1 0 01967396 -genus_banksia n 1 3 @ #m %m 1 0 12215373 -genus_baphia n 1 3 @ #m %m 1 0 12508936 -genus_baptisia n 1 3 @ #m %m 1 0 12509297 -genus_barbarea n 1 4 @ #m %m %p 1 0 11873396 -genus_barosaurus n 1 3 @ #m %m 1 0 01709723 -genus_bartle-frere n 1 2 @ #m 1 0 12214245 -genus_bartramia n 1 3 @ #m %m 1 0 02029571 -genus_basiliscus n 1 3 @ #m %m 1 0 01682293 -genus_bassariscus n 1 3 @ #m %m 1 0 02508615 -genus_bassia n 1 3 @ #m %m 1 0 11831730 -genus_bathyergus n 1 3 @ #m %m 1 0 02369170 -genus_batis n 1 3 @ #m %m 1 0 11827348 -genus_batrachoseps n 1 3 @ #m %m 1 0 01637478 -genus_bauhinia n 1 3 @ #m %m 1 0 12490671 -genus_beaumontia n 1 3 @ #m %m 1 0 11770969 -genus_begonia n 1 3 @ #m %m 1 0 12359952 -genus_belamcanda n 1 3 @ #m %m 1 0 12415911 -genus_bellis n 1 3 @ #m %m 1 0 11939380 -genus_bemisia n 1 3 @ #m %m 1 0 02247363 -genus_bennettitis n 1 2 @ #m 1 0 11604576 -genus_benzoin n 1 2 @ #m 1 0 11706120 -genus_berberis n 1 3 @ #m %m 1 0 11697388 -genus_bergenia n 1 3 @ #m %m 1 0 12795829 -genus_beroe n 1 3 @ #m %m 1 0 01919258 -genus_berteroa n 1 3 @ #m %m 1 0 11874300 -genus_bertholletia n 1 3 @ #m %m 1 0 12327718 -genus_bessera n 1 3 @ #m %m 1 0 12443547 -genus_besseya n 1 3 @ #m %m 1 0 12878019 -genus_beta n 1 2 @ %m 1 0 11832108 -genus_bettongia n 1 3 @ #m %m 1 0 01880570 -genus_betula n 1 3 @ #m %m 1 0 12280886 -genus_bibos n 1 3 @ #m %m 1 0 02409702 -genus_bidens n 1 3 @ #m %m 1 0 11939887 -genus_bignonia n 1 3 @ #m %m 1 0 12813870 -genus_biscutella n 1 3 @ #m %m 1 0 11874707 -genus_bison n 1 3 @ #m %m 1 0 02410313 -genus_bitis n 1 3 @ #m %m 1 0 01752889 -genus_blaberus n 1 3 @ #m %m 1 0 02235078 -genus_blandfordia n 1 3 @ #m %m 1 0 12443929 -genus_blarina n 1 3 @ #m %m 1 0 01892271 -genus_blastocladia n 1 2 @ #m 1 0 12978826 -genus_blastomyces n 1 2 @ #m 1 0 13080174 -genus_blatta n 1 3 @ #m %m 1 0 02233767 -genus_blattella n 1 3 @ #m %m 1 0 02234719 -genus_blechnum n 1 3 @ #m %m 1 0 13184873 -genus_blennius n 1 3 @ #m %m 1 0 02613434 -genus_blephilia n 1 3 @ #m %m 1 0 12842105 -genus_bletia n 1 3 @ #m %m 1 0 12046251 -genus_bletilla n 1 3 @ #m %m 1 0 12046620 -genus_blighia n 1 3 @ #m %m 1 0 12742041 -genus_blissus n 1 3 @ #m %m 1 0 02239073 -genus_bloomeria n 1 3 @ #m %m 1 0 12444261 -genus_bocconia n 1 3 @ #m %m 1 0 11903167 -genus_boehmeria n 1 3 @ #m %m 1 0 12392943 -genus_bolbitis n 1 2 @ #m 1 0 13202933 -genus_boletellus n 1 3 @ #m %m 1 0 13059852 -genus_boletus n 1 3 @ #m %m 1 0 13055009 -genus_boltonia n 1 3 @ #m %m 1 0 11941261 -genus_bomarea n 1 3 @ #m %m 1 0 12419592 -genus_bombax n 1 3 @ #m %m 1 0 12189293 -genus_bombina n 1 3 @ #m %m 1 0 01648494 -genus_bombus n 1 3 @ #m %m 1 0 02209508 -genus_bombycilla n 1 3 @ #m %m 1 0 01603478 -genus_bombyx n 1 3 @ #m %m 1 0 02300378 -genus_bonasa n 1 3 @ #m %m 1 0 01797767 -genus_borago n 1 3 @ #m %m 1 0 12816359 -genus_borassus n 1 3 @ #m %m 1 0 12585512 -genus_borrelia n 1 3 @ #m %m 1 0 01382839 -genus_bos n 1 3 @ #m %m 1 0 02401661 -genus_boselaphus n 1 3 @ #m %m 1 0 02425393 -genus_boswellia n 1 3 @ #m %m 1 0 12691834 -genus_botaurus n 1 3 @ #m %m 1 0 02011668 -genus_bothrops n 1 3 @ #m %m 1 0 01758019 -genus_botrychium n 1 3 @ #m %m 1 0 12960729 -genus_bougainvillaea n 1 3 @ #m %m 1 0 11838741 -genus_bougainvillea n 1 3 @ #m %m 1 0 11838741 -genus_bouteloua n 1 3 @ #m %m 1 0 12111882 -genus_bowiea n 1 3 @ #m %m 1 0 12444666 -genus_boykinia n 1 3 @ #m %m 1 0 12796192 -genus_brachinus n 1 3 @ #m %m 1 0 02167375 -genus_brachychiton n 1 3 @ #m %m 1 0 12195965 -genus_brachycome n 1 3 @ #m %m 1 0 11941719 -genus_brachystegia n 1 3 @ #m %m 1 0 12491200 -genus_bradypus n 1 3 @ #m %m 1 0 02457249 -genus_brama n 1 3 @ #m %m 1 0 02582591 -genus_branchiobdella n 1 2 @ #m 1 0 01935997 -genus_branta n 1 3 @ #m %m 1 0 01857171 -genus_brasenia n 1 3 @ #m %m 1 0 11718521 -genus_brassavola n 1 3 @ #m %m 1 0 12047173 -genus_brassia n 1 3 @ #m %m 1 0 12047586 -genus_brassica n 1 3 @ #m %m 1 0 11875100 -genus_brevoortia n 1 3 @ #m %m 1 0 02531503 -genus_brickelia n 1 2 @ #m 1 0 11942144 -genus_brodiaea n 1 3 @ #m %m 1 0 12445138 -genus_bromus n 1 3 @ #m %m 1 0 12110630 -genus_brontosaurus n 1 3 @ #m %m 1 0 01709278 -genus_broussonetia n 1 3 @ #m %m 1 0 12403862 -genus_browallia n 1 3 @ #m %m 1 0 12898628 -genus_browmius n 1 2 @ #m 1 0 02525287 -genus_bruchus n 1 3 @ #m %m 1 0 02182220 -genus_bruckenthalia n 1 3 @ #m %m 1 0 12232683 -genus_brugmansia n 1 3 @ #m %m 1 0 12899333 -genus_brunfelsia n 1 3 @ #m %m 1 0 12898959 -genus_brya n 1 2 @ #m 1 0 11748936 -genus_bryanthus n 1 3 @ #m %m 1 0 12233094 -genus_bryonia n 1 3 @ #m %m 1 0 12162905 -genus_bryum n 1 2 @ #m 1 0 11541111 -genus_bubalus n 1 3 @ #m %m 1 0 02408217 -genus_bubo n 1 3 @ #m %m 1 0 01622230 -genus_bubulcus n 1 3 @ #m %m 1 0 02010144 -genus_bucephala n 1 3 @ #m %m 1 0 01850035 -genus_buceros n 1 2 @ #m 1 0 01829288 -genus_buchloe n 1 3 @ #m %m 1 0 12112488 -genus_buckleya n 1 3 @ #m %m 1 0 12735666 -genus_buddleia n 1 3 @ #m %m 1 0 12485523 -genus_budorcas n 1 3 @ #m %m 1 0 02419515 -genus_bufo n 1 3 @ #m %m 1 0 01646134 -genus_bulnesia n 1 3 @ #m %m 1 0 12721357 -genus_bumelia n 1 3 @ #m %m 1 0 12772557 -genus_bungarus n 1 3 @ #m %m 1 0 01750920 -genus_buphthalmum n 1 3 @ #m %m 1 0 11942366 -genus_burhinus n 1 3 @ #m %m 1 0 02040113 -genus_burmannia n 1 2 @ #m 1 0 12087408 -genus_burmeisteria n 1 3 @ #m %m 1 0 02456505 -genus_bursera n 1 3 @ #m %m 1 0 12691189 -genus_butea n 1 3 @ #m %m 1 0 12510197 -genus_buteo n 1 3 @ #m %m 1 0 01607103 -genus_buxus n 1 3 @ #m %m 1 0 12745976 -genus_cabassous n 1 3 @ #m %m 1 0 02455310 -genus_cabomba n 1 3 @ #m %m 1 0 11718096 -genus_cacajao n 1 3 @ #m %m 1 0 02493109 -genus_cacalia n 1 3 @ #m %m 1 0 11942875 -genus_cacatua n 1 3 @ #m %m 1 0 01818959 -genus_cacicus n 1 3 @ #m %m 1 0 01573483 -genus_cadra n 1 3 @ #m %m 1 0 02290521 -genus_caenolestes n 1 3 @ #m %m 1 0 01875880 -genus_caesalpinia n 1 3 @ #m %m 1 0 12488121 -genus_caiman n 1 3 @ #m %m 1 0 01698936 -genus_cairina n 1 3 @ #m %m 1 0 01852544 -genus_cajanus n 1 3 @ #m %m 1 0 12510569 -genus_cakile n 1 3 @ #m %m 1 0 11880218 -genus_caladenia n 1 3 @ #m %m 1 0 12048231 -genus_caladium n 1 3 @ #m %m 1 0 11785475 -genus_calamagrostis n 1 2 @ %m 1 0 12112789 -genus_calamintha n 1 3 @ #m %m 1 0 12842765 -genus_calamus n 2 3 @ #m %m 2 0 12586110 02592607 -genus_calandrinia n 1 3 @ #m %m 1 0 11858406 -genus_calanthe n 1 3 @ #m %m 1 0 12048772 -genus_calceolaria n 1 3 @ #m %m 1 0 12879350 -genus_calendula n 1 3 @ #m %m 1 0 11943299 -genus_calidris n 1 3 @ #m %m 1 0 02028556 -genus_calla n 1 3 @ #m %m 1 0 11786017 -genus_calliandra n 1 3 @ #m %m 1 0 11760560 -genus_callicebus n 1 3 @ #m %m 1 0 02493390 -genus_callimorpha n 1 3 @ #m %m 1 0 02305799 -genus_callinectes n 1 3 @ #m %m 1 0 01979738 -genus_calliophis n 1 3 @ #m %m 1 0 01746565 -genus_calliphora n 1 3 @ #m %m 1 0 02191617 -genus_callirhoe n 1 3 @ #m %m 1 0 12174742 -genus_callisaurus n 1 3 @ #m %m 1 0 01678522 -genus_callistephus n 1 3 @ #m %m 1 0 11943824 -genus_callithrix n 1 3 @ #m %m 1 0 02490435 -genus_callitriche n 1 3 @ #m %m 1 0 12693734 -genus_callitris n 1 3 @ #m %m 1 0 11633459 -genus_callophis n 1 3 @ #m %m 1 0 01746565 -genus_callorhinus n 1 3 @ #m %m 1 0 02077533 -genus_calluna n 1 3 @ #m %m 1 0 12233410 -genus_calocarpum n 1 2 @ #m 1 0 12773334 -genus_calocedrus n 1 3 @ #m %m 1 0 11634526 -genus_calochortus n 1 3 @ #m %m 1 0 12445848 -genus_calophyllum n 1 3 @ #m %m 1 0 12364379 -genus_calopogon n 1 3 @ #m %m 1 0 12049134 -genus_calosoma n 1 3 @ #m %m 1 0 02167645 -genus_caltha n 1 3 @ #m %m 1 0 11727976 -genus_calvatia n 1 3 @ #m %m 1 0 13044149 -genus_calycanthus n 1 3 @ #m %m 1 0 11700676 -genus_calycophyllum n 1 3 @ #m %m 1 0 12661873 -genus_calymmatobacterium n 1 2 @ %m 1 0 01365122 -genus_calypso n 1 2 @ #m 1 0 12049412 -genus_calystegia n 1 3 @ #m %m 1 0 12824909 -genus_camassia n 1 3 @ #m %m 1 0 12449024 -genus_cambarus n 1 3 @ #m %m 1 0 01985667 -genus_camelina n 1 3 @ #m %m 1 0 11880610 -genus_camellia n 1 3 @ #m %m 1 0 12929237 -genus_camelus n 1 3 @ #m %m 1 0 02436993 -genus_campanula n 1 3 @ #m %m 1 0 12036781 -genus_campephilus n 1 3 @ #m %m 1 0 01840278 -genus_camponotus n 1 3 @ #m %m 1 0 02220676 -genus_camptosorus n 1 2 @ #m 1 0 13181616 -genus_campyloneurum n 1 3 @ #m %m 1 0 13174515 -genus_campylorhynchus n 1 3 @ #m %m 1 0 01586170 -genus_canachites n 1 3 @ #m %m 1 0 01797180 -genus_cananga n 1 3 @ #m %m 1 0 11695813 -genus_canangium n 1 3 @ #m %m 1 0 11695813 -genus_canavalia n 1 3 @ #m %m 1 0 12511046 -genus_cancer n 1 3 @ #m %m 1 0 01977832 -genus_candida n 1 3 @ #m %m 1 0 13079203 -genus_canella n 1 3 @ #m %m 1 0 12372124 -genus_canis n 1 3 @ #m %m 1 0 02083863 -genus_canna n 1 3 @ #m %m 1 0 12350578 -genus_cannabis n 1 3 @ #m %m 1 0 12396666 -genus_cantharellus n 1 3 @ #m %m 1 0 13004160 -genus_capella n 1 3 @ #m %m 1 0 02031752 -genus_capparis n 1 3 @ #m %m 1 0 11864906 -genus_capra n 1 3 @ #m %m 1 0 02416410 -genus_caprella n 1 3 @ #m %m 1 0 01993400 -genus_capreolus n 1 3 @ #m %m 1 0 02433426 -genus_capricornis n 1 3 @ #m %m 1 0 02418934 -genus_caprimulgus n 1 3 @ #m %m 1 0 01835584 -genus_capros n 1 3 @ #m %m 1 0 01453330 -genus_capsella n 1 3 @ #m %m 1 0 11881063 -genus_capsicum n 1 3 @ #m %m 1 0 12900148 -genus_caragana n 1 3 @ #m %m 1 0 12511703 -genus_caranx n 1 2 @ #m 1 0 02576460 -genus_carassius n 1 3 @ #m %m 1 0 01443398 -genus_carcharhinus n 1 3 @ #m %m 1 0 01489275 -genus_carcharias n 1 3 @ #m %m 1 0 01487312 -genus_carcharodon n 1 3 @ #m %m 1 0 01484717 -genus_cardamine n 1 3 @ #m %m 1 0 11881426 -genus_cardiospermum n 1 3 @ #m %m 1 0 12742546 -genus_cardium n 1 3 @ #m %m 1 0 01959834 -genus_carduelis n 1 3 @ #m %m 1 0 01530846 -genus_carduus n 1 3 @ #m %m 1 0 11944569 -genus_caretta n 1 3 @ #m %m 1 0 01663939 -genus_carex n 1 3 @ #m %m 1 0 12151814 -genus_cariama n 1 3 @ #m %m 1 0 02014061 -genus_carica n 1 3 @ #m %m 1 0 12372932 -genus_carissa n 1 3 @ #m %m 1 0 11771383 -genus_carlina n 1 3 @ #m %m 1 0 11945228 -genus_carnegiea n 1 3 @ #m %m 1 0 11844203 -genus_carpenteria n 1 3 @ #m %m 1 0 12789399 -genus_carphophis n 1 3 @ #m %m 1 0 01728445 -genus_carpinus n 1 3 @ #m %m 1 0 12286581 -genus_carpobrotus n 1 3 @ #m %m 1 0 11819354 -genus_carpocapsa n 1 3 @ #m %m 1 0 02285052 -genus_carpodacus n 1 3 @ #m %m 1 0 01532664 -genus_carthamus n 1 3 @ #m %m 1 0 11945930 -genus_carum n 1 3 @ #m %m 1 0 12934368 -genus_carya n 1 3 @ #m %m 1 0 12319687 -genus_caryocar n 1 3 @ #m %m 1 0 12373526 -genus_caryota n 1 3 @ #m %m 1 0 12586867 -genus_casmerodius n 1 3 @ #m %m 1 0 02009620 -genus_cassia n 1 3 @ #m %m 1 0 12491626 -genus_cassiope n 1 3 @ #m %m 1 0 12233759 -genus_castanea n 1 3 @ #m %m 1 0 12262327 -genus_castanopsis n 1 3 @ #m %m 1 0 12264254 -genus_castanospermum n 1 3 @ #m %m 1 0 12512460 -genus_castilleia n 1 3 @ #m %m 1 0 12879719 -genus_castilleja n 1 3 @ #m %m 1 0 12879719 -genus_castor n 1 3 @ #m %m 1 0 02362862 -genus_castoroides n 1 2 @ #m 1 0 02363511 -genus_casuarina n 1 3 @ #m %m 1 0 12224669 -genus_casuarius n 1 3 @ #m %m 1 0 01519401 -genus_catacala n 1 3 @ #m %m 1 0 02295717 -genus_catalpa n 1 3 @ #m %m 1 0 12814417 -genus_catananche n 1 3 @ #m %m 1 0 11946584 -genus_catasetum n 1 3 @ #m %m 1 0 12049796 -genus_catha n 1 3 @ #m %m 1 0 11598100 -genus_catharacta n 1 3 @ #m %m 1 0 02044659 -genus_catharanthus n 1 3 @ #m %m 1 0 11772154 -genus_cathartes n 1 3 @ #m %m 1 0 01619152 -genus_cathaya n 1 3 @ #m %m 1 0 11629211 -genus_catoptrophorus n 1 3 @ #m %m 1 0 02030709 -genus_catostomus n 1 2 @ #m 1 0 01445173 -genus_cattleya n 1 3 @ #m %m 1 0 12050295 -genus_caulophyllum n 1 3 @ #m %m 1 0 11698433 -genus_cavia n 1 3 @ #m %m 1 0 02364377 -genus_cebuella n 1 3 @ #m %m 1 0 02490686 -genus_cebus n 1 3 @ #m %m 1 0 02491906 -genus_cecropia n 1 3 @ #m %m 1 0 12404484 -genus_cedrela n 1 3 @ #m %m 1 0 12697021 -genus_cedrus n 1 3 @ #m %m 1 0 11622988 -genus_ceiba n 1 2 @ #m 1 0 12190241 -genus_celastrus n 1 3 @ #m %m 1 0 12747961 -genus_celosia n 1 3 @ #m %m 1 0 11825013 -genus_celtis n 1 3 @ #m %m 1 0 12409016 -genus_cenchrus n 1 3 @ #m %m 1 0 12113471 -genus_centaurea n 1 3 @ #m %m 1 0 11947079 -genus_centaurium n 1 3 @ #m %m 1 0 12290522 -genus_centranthus n 1 3 @ #m %m 1 0 12950984 -genus_centrocercus n 1 3 @ #m %m 1 0 01797472 -genus_centrolobium n 1 3 @ #m %m 1 0 11749462 -genus_centropomus n 1 2 @ #m 1 0 02559974 -genus_centropristis n 1 3 @ #m %m 1 0 02567484 -genus_centropus n 1 3 @ #m %m 1 0 01824443 -genus_centrosema n 1 3 @ #m %m 1 0 12512947 -genus_centunculus n 1 3 @ #m %m 1 0 12092766 -genus_cephalanthera n 1 3 @ #m %m 1 0 12050766 -genus_cephalopterus n 1 3 @ #m %m 1 0 01552192 -genus_cephalotaxus n 1 3 @ #m %m 1 0 11648617 -genus_cephalotus n 1 3 @ #m %m 1 0 12784738 -genus_cepphus n 1 3 @ #m %m 1 0 02046613 -genus_cerapteryx n 1 3 @ #m %m 1 0 02296150 -genus_cerastes n 1 3 @ #m %m 1 0 01753354 -genus_cerastium n 1 3 @ #m %m 1 0 11806975 -genus_ceratitis n 1 3 @ #m %m 1 0 02197048 -genus_ceratodus n 1 3 @ #m %m 1 0 02516615 -genus_ceratonia n 1 3 @ #m %m 1 0 12493090 -genus_ceratopetalum n 1 3 @ #m %m 1 0 12787196 -genus_ceratophyllum n 1 3 @ #m %m 1 0 11702081 -genus_ceratopogon n 1 2 @ #m 1 0 02202878 -genus_ceratopteris n 1 3 @ #m %m 1 0 13171649 -genus_ceratosaurus n 1 3 @ #m %m 1 0 01712606 -genus_ceratostomella n 1 3 @ #m %m 1 0 12964750 -genus_ceratotherium n 1 2 @ #m 1 0 02392710 -genus_ceratozamia n 1 3 @ #m %m 1 0 11602304 -genus_cercidiphyllum n 1 3 @ #m %m 1 0 11702566 -genus_cercidium n 1 2 @ #m 1 0 12493699 -genus_cercis n 1 3 @ #m %m 1 0 12513426 -genus_cercocebus n 1 3 @ #m %m 1 0 02485865 -genus_cercopithecus n 1 3 @ #m %m 1 0 02484813 -genus_cercospora n 1 3 @ #m %m 1 0 13080674 -genus_cercosporella n 1 2 @ #m 1 0 13079775 -genus_cereus n 1 3 @ #m %m 1 0 11844651 -genus_ceroxylon n 1 3 @ #m %m 1 0 12587366 -genus_certhia n 1 3 @ #m %m 1 0 01589582 -genus_cervus n 1 3 @ #m %m 1 0 02430929 -genus_ceryle n 1 3 @ #m %m 1 0 01827948 -genus_cestrum n 1 3 @ #m %m 1 0 12902297 -genus_cestum n 1 3 @ #m %m 1 0 01920939 -genus_ceterach n 1 2 @ #m 1 0 13183251 -genus_cetonia n 1 3 @ #m %m 1 0 02175440 -genus_cetorhinus n 1 3 @ #m %m 1 0 01485073 -genus_cetraria n 1 3 @ #m %m 1 0 12992022 -genus_chaenactis n 1 3 @ #m %m 1 0 11949707 -genus_chaenomeles n 1 3 @ #m %m 1 0 12624249 -genus_chaenopsis n 1 3 @ #m %m 1 0 02614288 -genus_chaetodipterus n 1 3 @ #m %m 1 0 02604811 -genus_chaetodon n 1 3 @ #m %m 1 0 02605571 -genus_chalcis n 1 3 @ #m %m 1 0 02217997 -genus_chalcostigma n 1 3 @ #m %m 1 0 01834284 -genus_chamaea n 1 3 @ #m %m 1 0 01593156 -genus_chamaecrista n 1 3 @ #m %m 1 0 12494115 -genus_chamaecyparis n 1 3 @ #m %m 1 0 11634970 -genus_chamaecytisus n 1 3 @ #m %m 1 0 12514324 -genus_chamaedaphne n 1 3 @ #m %m 1 0 12234176 -genus_chamaeleo n 1 3 @ #m %m 1 0 01693995 -genus_chamaeleon n 1 3 @ #m %m 1 0 01693995 -genus_chamaemelum n 1 3 @ #m %m 1 0 11949217 -genus_chara n 1 2 @ #m 1 0 01412925 -genus_charadrius n 1 3 @ #m %m 1 0 02023664 -genus_charina n 1 3 @ #m %m 1 0 01742310 -genus_charronia n 1 3 @ #m %m 1 0 02450992 -genus_chateura n 1 3 @ #m %m 1 0 01832684 -genus_chauna n 1 3 @ #m %m 1 0 01861025 -genus_cheilanthes n 1 3 @ #m %m 1 0 13208468 -genus_cheiranthus n 1 3 @ #m %m 1 0 11883137 -genus_chelidonium n 1 3 @ #m %m 1 0 11903525 -genus_chelifer n 1 3 @ #m %m 1 0 01770967 -genus_chelone n 1 3 @ #m %m 1 0 12880963 -genus_chelonia n 1 3 @ #m %m 1 0 01663659 -genus_chelydra n 1 3 @ #m %m 1 0 01666102 -genus_chenopodium n 1 3 @ #m %m 1 0 11828113 -genus_chilomastix n 1 2 @ #m 1 0 01420000 -genus_chilomeniscus n 1 3 @ #m %m 1 0 01738470 -genus_chilomycterus n 1 3 @ #m %m 1 0 02656171 -genus_chilopsis n 1 3 @ #m %m 1 0 12815060 -genus_chimaera n 1 3 @ #m %m 1 0 01481203 -genus_chimaphila n 1 3 @ #m %m 1 0 12257343 -genus_chimonanthus n 1 3 @ #m %m 1 0 11701492 -genus_chinchilla n 1 3 @ #m %m 1 0 02367360 -genus_chinchona n 1 3 @ #m %m 1 0 12663554 -genus_chiococca n 1 3 @ #m %m 1 0 12662223 -genus_chionanthus n 1 3 @ #m %m 1 0 12301917 -genus_chirocephalus n 1 3 @ #m %m 1 0 01995323 -genus_chironomus n 1 2 @ #m 1 0 02203332 -genus_chiton n 1 3 @ #m %m 1 0 01954962 -genus_chlamydera n 1 3 @ #m %m 1 0 01601268 -genus_chlamydia n 1 3 @ #m %m 1 0 01372544 -genus_chlamydomonas n 1 2 @ #m 1 0 01409665 -genus_chlamydosaurus n 1 3 @ #m %m 1 0 01688106 -genus_chlamyphorus n 1 3 @ #m %m 1 0 02456147 -genus_chloranthus n 1 2 @ #m 1 0 13151439 -genus_chlorella n 1 3 @ #m %m 1 0 01411240 -genus_chloris n 1 2 @ #m 1 0 12114226 -genus_chlorococcum n 1 2 @ #m 1 0 01411036 -genus_chlorophis n 1 3 @ #m %m 1 0 01730429 -genus_chlorophoneus n 1 3 @ #m %m 1 0 01600197 -genus_chlorophyllum n 1 2 @ #m 1 0 13012835 -genus_chloroxylon n 1 3 @ #m %m 1 0 12697360 -genus_chlorura n 1 3 @ #m %m 1 0 01542316 -genus_choeronycteris n 1 3 @ #m %m 1 0 02142993 -genus_choloepus n 1 3 @ #m %m 1 0 02457756 -genus_chondrus n 1 3 @ #m %m 1 0 01414502 -genus_chordeiles n 1 3 @ #m %m 1 0 01836246 -genus_chordospartium n 1 3 @ #m %m 1 0 12514802 -genus_choriotis n 1 3 @ #m %m 1 0 02019308 -genus_chorizagrotis n 1 3 @ #m %m 1 0 02296756 -genus_chorizema n 1 3 @ #m %m 1 0 12515219 -genus_christella n 1 3 @ #m %m 1 0 13228357 -genus_chronoperates n 1 3 @ #m %m 1 0 01720117 -genus_chrysanthemum n 1 3 @ #m %m 1 0 11950028 -genus_chrysaora n 1 3 @ #m %m 1 0 01911271 -genus_chrysemys n 1 3 @ #m %m 1 0 01669527 -genus_chrysobalanus n 1 3 @ #m %m 1 0 12624873 -genus_chrysochloris n 1 3 @ #m %m 1 0 01890411 -genus_chrysolepis n 1 3 @ #m %m 1 0 12264621 -genus_chrysolophus n 1 3 @ #m %m 1 0 01804029 -genus_chrysophrys n 1 3 @ #m %m 1 0 02592866 -genus_chrysophyllum n 1 3 @ #m %m 1 0 12773488 -genus_chrysopsis n 1 3 @ #m %m 1 0 11951385 -genus_chrysosplenium n 1 3 @ #m %m 1 0 12796617 -genus_chrysothamnus n 1 3 @ #m %m 1 0 11952153 -genus_chunga n 1 3 @ #m %m 1 0 02014406 -genus_cibotium n 1 3 @ #m %m 1 0 13190917 -genus_cicada n 1 2 @ #m 1 0 02256542 -genus_cicer n 1 2 @ #m 1 0 12515597 -genus_cichorium n 1 3 @ #m %m 1 0 11952900 -genus_ciconia n 1 3 @ #m %m 1 0 02002384 -genus_cicuta n 1 3 @ #m %m 1 0 12934776 -genus_cimex n 1 3 @ #m %m 1 0 02240377 -genus_cimicifuga n 1 3 @ #m %m 1 0 11728350 -genus_cinchona n 1 3 @ #m %m 1 0 12663554 -genus_cinclus n 1 3 @ #m %m 1 0 01601919 -genus_cinnamomum n 1 3 @ #m %m 1 0 11704401 -genus_circaea n 1 3 @ #m %m 1 0 12341412 -genus_circaetus n 1 3 @ #m %m 1 0 01610426 -genus_circus n 1 3 @ #m %m 1 0 01609549 -genus_cirsium n 1 3 @ #m %m 1 0 11953762 -genus_cistothorus n 1 3 @ #m %m 1 0 01584994 -genus_cistus n 1 3 @ #m %m 1 0 12374238 -genus_citellus n 1 3 @ #m %m 1 0 02357741 -genus_citharichthys n 1 3 @ #m %m 1 0 02662081 -genus_citroncirus n 1 3 @ #m %m 1 0 12712149 -genus_citrullus n 1 3 @ #m %m 1 0 12163649 -genus_citrus n 1 4 @ ~ #m %m 1 0 12707432 -genus_cladonia n 1 3 @ #m %m 1 0 12990938 -genus_cladorhyncus n 1 3 @ #m %m 1 0 02035845 -genus_cladrastis n 1 3 @ #m %m 1 0 12516040 -genus_clangula n 1 2 @ %m 1 0 01853763 -genus_clathrus n 1 2 @ #m 1 0 13042694 -genus_claviceps n 1 3 @ #m %m 1 0 12965463 -genus_claytonia n 1 3 @ #m %m 1 0 11859024 -genus_cleistes n 1 3 @ #m %m 1 0 12051285 -genus_clematis n 1 3 @ #m %m 1 0 11729315 -genus_cleome n 1 3 @ #m %m 1 0 11866078 -genus_clethra n 1 2 @ #m 1 0 12249993 -genus_clethrionomys n 1 3 @ #m %m 1 0 02342109 -genus_clianthus n 1 3 @ #m %m 1 0 12516432 -genus_cliftonia n 1 3 @ #m %m 1 0 12751043 -genus_clinopodium n 1 3 @ #m %m 1 0 12843844 -genus_clintonia n 1 3 @ #m %m 1 0 12471825 -genus_clitocybe n 1 3 @ #m %m 1 0 13020623 -genus_clitoria n 1 3 @ #m %m 1 0 12517253 -genus_clostridium n 1 3 @ #m %m 1 0 01356888 -genus_clupea n 1 3 @ #m %m 1 0 02531820 -genus_clusia n 1 3 @ #m %m 1 0 12365670 -genus_cnemidophorus n 1 3 @ #m %m 1 0 01685679 -genus_cnicus n 1 3 @ #m %m 1 0 11955398 -genus_cnidoscolus n 1 3 @ #m %m 1 0 12924984 -genus_coccothraustes n 1 3 @ #m %m 1 0 01540697 -genus_cocculus n 1 3 @ #m %m 1 0 11713628 -genus_coccus n 1 3 @ #m %m 1 0 02249011 -genus_coccyzus n 1 3 @ #m %m 1 0 01823610 -genus_cochlearia n 1 3 @ #m %m 1 0 11883799 -genus_cochlearius n 1 3 @ #m %m 1 0 02011156 -genus_cocos n 1 3 @ #m %m 1 0 12587686 -genus_codariocalyx n 1 3 @ #m %m 1 0 12517820 -genus_codiaeum n 1 3 @ #m %m 1 0 12923439 -genus_coeloglossum n 1 3 @ #m %m 1 0 12052053 -genus_coelogyne n 1 3 @ #m %m 1 0 12052630 -genus_coelophysis n 1 2 @ #m 1 0 01713040 -genus_coereba n 1 3 @ #m %m 1 0 01539136 -genus_coffea n 1 3 @ #m %m 1 0 12662654 -genus_cola n 1 3 @ #m %m 1 0 12197211 -genus_colaptes n 1 3 @ #m %m 1 0 01839470 -genus_colchicum n 1 3 @ #m %m 1 0 12455342 -genus_coleonyx n 1 3 @ #m %m 1 0 01675599 -genus_coleus n 1 3 @ #m %m 1 0 12844697 -genus_colinus n 1 3 @ #m %m 1 0 01804340 -genus_collinsia n 1 3 @ #m %m 1 0 12881429 -genus_collinsonia n 1 3 @ #m %m 1 0 12844220 -genus_collocalia n 1 3 @ #m %m 1 0 01832979 -genus_colobus n 1 3 @ #m %m 1 0 02488578 -genus_colocasia n 1 3 @ #m %m 1 0 11786365 -genus_coluber n 1 3 @ #m %m 1 0 01730679 -genus_colubrina n 1 3 @ #m %m 1 0 13142695 -genus_columba n 1 3 @ #m %m 1 0 01812471 -genus_columnea n 1 3 @ #m %m 1 0 12831389 -genus_colutea n 1 3 @ #m %m 1 0 12518305 -genus_comandra n 1 3 @ #m %m 1 0 12736064 -genus_comatula n 1 1 @ 1 0 02321062 -genus_combretum n 1 3 @ #m %m 1 0 12323820 -genus_commelina n 1 3 @ #m %m 1 0 12606227 -genus_commiphora n 1 3 @ #m %m 1 0 12692323 -genus_compsognathus n 1 3 @ #m %m 1 0 01714404 -genus_comptonia n 1 3 @ #m %m 1 0 11742175 -genus_condylura n 1 2 @ #m 1 0 01889740 -genus_conepatus n 1 3 @ #m %m 1 0 02446512 -genus_conferva n 1 3 @ #m %m 1 0 01401686 -genus_conilurus n 1 3 @ #m %m 1 0 02334337 -genus_coniogramme n 1 3 @ #m %m 1 0 13209647 -genus_conium n 1 3 @ #m %m 1 0 12935457 -genus_connarus n 1 3 @ #m %m 1 0 11746419 -genus_connochaetes n 1 3 @ #m %m 1 0 02421308 -genus_conocarpus n 1 2 @ #m 1 0 12324756 -genus_conoclinium n 1 3 @ #m %m 1 0 11955770 -genus_conopodium n 1 3 @ #m %m 1 0 12935982 -genus_conospermum n 1 3 @ #m %m 1 0 12216028 -genus_conradina n 1 3 @ #m %m 1 0 12845732 -genus_consolida n 1 3 @ #m %m 1 0 11732309 -genus_contopus n 1 3 @ #m %m 1 0 01549314 -genus_conuropsis n 1 3 @ #m %m 1 0 01821418 -genus_convallaria n 1 3 @ #m %m 1 0 12471366 -genus_convolvulus n 1 3 @ #m %m 1 0 12823531 -genus_conyza n 1 3 @ #m %m 1 0 11956208 -genus_copernicia n 1 3 @ #m %m 1 0 12588156 -genus_coprinus n 1 3 @ #m %m 1 0 13005568 -genus_coptis n 1 3 @ #m %m 1 0 11731861 -genus_coracias n 1 3 @ #m %m 1 0 01826542 -genus_coragyps n 1 3 @ #m %m 1 0 01620282 -genus_corallorhiza n 1 3 @ #m %m 1 0 12053138 -genus_corchorus n 1 3 @ #m %m 1 0 12204546 -genus_cordaites n 1 2 @ #m 1 0 11606846 -genus_cordia n 1 3 @ #m %m 1 0 12818147 -genus_cordyline n 1 3 @ #m %m 1 0 12478283 -genus_cordylus n 1 2 @ #m 1 0 01685107 -genus_coregonus n 1 3 @ #m %m 1 0 02539251 -genus_coreopsis n 1 3 @ #m %m 1 0 11956671 -genus_coriandrum n 1 2 @ %m 1 0 12936333 -genus_corixa n 1 3 @ #m %m 1 0 02243065 -genus_cornus n 1 3 @ #m %m 1 0 12946578 -genus_corokia n 1 2 @ #m 1 0 12948633 -genus_coronilla n 1 3 @ #m %m 1 0 12518725 -genus_corozo n 1 3 @ #m %m 1 0 12588989 -genus_cortaderia n 1 3 @ #m %m 1 0 12114981 -genus_corticium n 1 3 @ #m %m 1 0 13015229 -genus_cortinarius n 1 3 @ #m %m 1 0 13074277 -genus_corvus n 1 3 @ #m %m 1 0 01578821 -genus_coryanthes n 1 3 @ #m %m 1 0 12054499 -genus_corydalis n 2 4 @ ~ #m %m 2 0 11903881 02265860 -genus_corydalus n 1 3 @ #m %m 1 0 02265860 -genus_corylopsis n 1 3 @ #m %m 1 0 12315424 -genus_corylus n 1 3 @ #m %m 1 0 12288598 -genus_corynebacterium n 1 3 @ #m %m 1 0 01366415 -genus_corypha n 1 3 @ #m %m 1 0 12589286 -genus_coryphantha n 1 3 @ #m %m 1 0 11845019 -genus_corythosaurus n 1 3 @ #m %m 1 0 01706533 -genus_coscoroba n 1 3 @ #m %m 1 0 01858162 -genus_cosmocampus n 1 3 @ #m %m 1 0 01456296 -genus_cosmos n 1 3 @ #m %m 1 0 11957912 -genus_costia n 1 3 @ #m %m 1 0 01419444 -genus_cotinga n 1 3 @ #m %m 1 0 01550625 -genus_cotinus n 1 3 @ #m %m 1 0 12760013 -genus_cotoneaster n 1 3 @ #m %m 1 0 12625215 -genus_cottus n 1 3 @ #m %m 1 0 02645143 -genus_cotula n 1 3 @ #m %m 1 0 11958316 -genus_coturnix n 1 3 @ #m %m 1 0 01804796 -genus_coumarouna n 1 3 @ #m %m 1 0 11749742 -genus_cracticus n 1 3 @ #m %m 1 0 01583043 -genus_crambe n 1 3 @ #m %m 1 0 11884198 -genus_crangon n 1 2 @ #m 1 0 01986681 -genus_craspedia n 1 3 @ #m %m 1 0 11958742 -genus_crassostrea n 1 3 @ #m %m 1 0 01961468 -genus_crassula n 1 2 @ #m 1 0 12785312 -genus_crataegus n 1 3 @ #m %m 1 0 12626030 -genus_crateva n 1 2 @ #m 1 0 11866942 -genus_crax n 1 3 @ #m %m 1 0 01799540 -genus_crepis n 1 3 @ #m %m 1 0 11959104 -genus_crescentia n 1 3 @ #m %m 1 0 12815434 -genus_crex n 1 3 @ #m %m 1 0 02015685 -genus_cricetus n 1 3 @ #m %m 1 0 02342727 -genus_crocethia n 1 3 @ #m %m 1 0 02029243 -genus_crocodilus n 1 3 @ #m %m 1 0 01697002 -genus_crocodylus n 1 3 @ #m %m 1 0 01697002 -genus_crocus n 1 3 @ #m %m 1 0 12416278 -genus_crocuta n 1 3 @ #m %m 1 0 02117772 -genus_cronartium n 1 3 @ #m %m 1 0 13064247 -genus_crotalaria n 1 3 @ #m %m 1 0 12519328 -genus_crotalus n 1 3 @ #m %m 1 0 01755274 -genus_crotaphytus n 1 3 @ #m %m 1 0 01679494 -genus_croton n 1 3 @ #m %m 1 0 12922600 -genus_crotophaga n 1 3 @ #m %m 1 0 01824227 -genus_cryptacanthodes n 1 3 @ #m %m 1 0 02616251 -genus_cryptobranchus n 1 3 @ #m %m 1 0 01633250 -genus_cryptocercus n 1 2 @ #m 1 0 02235465 -genus_cryptocoryne n 1 3 @ #m %m 1 0 11786983 -genus_cryptogramma n 1 3 @ #m %m 1 0 13210006 -genus_cryptomeria n 1 3 @ #m %m 1 0 11636068 -genus_cryptoprocta n 1 2 @ #m 1 0 02136285 -genus_cryptotermes n 1 3 @ #m %m 1 0 02225577 -genus_cryptotis n 1 2 @ #m 1 0 01893294 -genus_ctenocephalides n 1 4 @ ~ #m %m 1 0 02186834 -genus_ctenocephalus n 1 1 @ 1 0 02187022 -genus_cuculus n 1 3 @ #m %m 1 0 01823279 -genus_cucumis n 1 3 @ #m %m 1 0 12164215 -genus_cucurbita n 1 4 @ #m %m %p 1 0 12158148 -genus_culcita n 1 3 @ #m %m 1 0 13191318 -genus_culex n 1 3 @ #m %m 1 0 02201758 -genus_cuminum n 1 3 @ #m %p 1 0 12936713 -genus_cuniculus n 1 2 @ #m 1 0 02366203 -genus_cuon n 1 3 @ #m %m 1 0 02115775 -genus_cupressus n 1 3 @ #m %m 1 0 11630351 -genus_curcuma n 1 3 @ #m %m 1 0 12356255 -genus_cursorius n 1 3 @ #m %m 1 0 02039377 -genus_curtisia n 1 2 @ #m 1 0 12948849 -genus_cuscuta n 1 3 @ #m %m 1 0 12825301 -genus_cuterebra n 1 2 @ #m 1 0 02193955 -genus_cyamopsis n 1 3 @ #m %m 1 0 12520223 -genus_cyamus n 1 3 @ #m %m 1 0 01993714 -genus_cyanocitta n 1 3 @ #m %m 1 0 01580644 -genus_cyathea n 1 3 @ #m %m 1 0 13187167 -genus_cycas n 1 3 @ #m %m 1 0 11600900 -genus_cyclamen n 1 3 @ #m %m 1 0 12093088 -genus_cycloloma n 1 3 @ #m %m 1 0 11833208 -genus_cyclopes n 1 3 @ #m %m 1 0 02460684 -genus_cyclophorus n 1 2 @ #m 1 0 13178883 -genus_cyclops n 1 3 @ #m %m 1 0 01997002 -genus_cyclopterus n 1 3 @ #m %m 1 0 02646508 -genus_cyclosorus n 1 2 @ #m 1 0 13228692 -genus_cycnoches n 1 3 @ #m %m 1 0 12054902 -genus_cydonia n 1 3 @ #m %m 1 0 12628872 -genus_cygnus n 1 3 @ #m %m 1 0 01858989 -genus_cymbidium n 1 3 @ #m %m 1 0 12055317 -genus_cynancum n 1 3 @ #m %m 1 0 13236354 -genus_cynara n 1 3 @ #m %m 1 0 11959489 -genus_cynips n 1 2 @ #m 1 0 02216924 -genus_cynocephalus n 1 3 @ #m %m 1 0 02502357 -genus_cynodon n 1 3 @ #m %m 1 0 12115563 -genus_cynoglossum n 1 3 @ #m %m 1 0 12818742 -genus_cynomys n 1 3 @ #m %m 1 0 02359204 -genus_cynopterus n 1 3 @ #m %m 1 0 02140719 -genus_cynoscion n 1 3 @ #m %m 1 0 02599207 -genus_cyon n 1 3 @ #m %m 1 0 02115775 -genus_cyperus n 1 2 @ %m 1 0 12150447 -genus_cyphomandra n 1 3 @ #m %m 1 0 12902887 -genus_cypraea n 1 3 @ #m %m 1 0 01953197 -genus_cyprinus n 1 3 @ #m %m 1 0 01439657 -genus_cypripedium n 1 3 @ #m %m 1 0 12055839 -genus_cyrilla n 1 3 @ #m %m 1 0 12750577 -genus_cyrtomium n 1 2 @ #m 1 0 13195151 -genus_cystophora n 1 3 @ #m %m 1 0 02080934 -genus_cystopteris n 1 3 @ #m %m 1 0 13195547 -genus_cytisus n 1 3 @ #m %m 1 0 12520661 -genus_daboecia n 1 3 @ #m %m 1 0 12234513 -genus_dacelo n 1 3 @ #m %m 1 0 01828267 -genus_dacrycarpus n 1 2 @ #m 1 0 11653728 -genus_dacrydium n 1 3 @ #m %m 1 0 11654124 -genus_dacrymyces n 1 2 @ #m 1 0 13062868 -genus_dactylis n 1 2 @ #m 1 0 12116267 -genus_dactyloctenium n 1 2 @ #m 1 0 12116583 -genus_dactylopius n 1 3 @ #m %m 1 0 02250133 -genus_dactylopterus n 1 2 @ #m 1 0 02652005 -genus_dactylorhiza n 1 3 @ #m %m 1 0 12058429 -genus_dahlia n 1 3 @ #m %m 1 0 11960084 -genus_dalbergia n 1 3 @ #m %m 1 0 12521847 -genus_dalea n 1 3 @ #m %m 1 0 12524518 -genus_dama n 1 3 @ #m %m 1 0 02433205 -genus_damaliscus n 1 3 @ #m %m 1 0 02422249 -genus_danaea n 1 2 @ #m 1 0 13215799 -genus_danaus n 1 3 @ #m %m 1 0 02279819 -genus_daphne n 1 3 @ #m %m 1 0 12346448 -genus_daphnia n 1 3 @ #m %m 1 0 01994801 -genus_darlingtonia n 1 3 @ #m %m 1 0 12780852 -genus_darmera n 1 3 @ #m %m 1 0 12797213 -genus_dasyatis n 1 3 @ #m %m 1 0 01498268 -genus_dasyprocta n 1 3 @ #m %m 1 0 02365848 -genus_dasypus n 1 3 @ #m %m 1 0 02454657 -genus_dasyurus n 1 3 @ #m %m 1 0 01883762 -genus_datura n 1 3 @ #m %m 1 0 12903250 -genus_daubentonia n 1 3 @ #m %m 1 0 02497983 -genus_daucus n 1 3 @ #m %m 1 0 12936999 -genus_davallia n 1 3 @ #m %m 1 0 13187826 -genus_daviesia n 1 3 @ #m %m 1 0 12524944 -genus_decapterus n 1 3 @ #m %m 1 0 02581289 -genus_decumaria n 1 3 @ #m %m 1 0 12789767 -genus_deinocheirus n 1 3 @ #m %m 1 0 01716459 -genus_deinonychus n 1 3 @ #m %m 1 0 01717957 -genus_delairea n 1 3 @ #m %m 1 0 11960540 -genus_delichon n 1 3 @ #m %m 1 0 01595841 -genus_delonix n 1 3 @ #m %m 1 0 12494629 -genus_delphinapterus n 1 3 @ #m %m 1 0 02072665 -genus_delphinium n 1 3 @ #m %m 1 0 11732857 -genus_delphinus n 1 3 @ #m %m 1 0 02069271 -genus_dendranthema n 1 2 @ #m 1 0 11960943 -genus_dendraspis n 1 3 @ #m %m 1 0 01749428 -genus_dendroaspis n 1 3 @ #m %m 1 0 01749428 -genus_dendrobium n 1 3 @ #m %m 1 0 12059090 -genus_dendrocalamus n 1 3 @ #m %m 1 0 12148610 -genus_dendrocolaptes n 1 2 @ #m 1 0 01554311 -genus_dendroctonus n 1 3 @ #m %m 1 0 02180046 -genus_dendroica n 1 3 @ #m %m 1 0 01568493 -genus_dendrolagus n 1 3 @ #m %m 1 0 01879379 -genus_dendromecon n 1 3 @ #m %m 1 0 11904896 -genus_denisonia n 1 3 @ #m %m 1 0 01747466 -genus_dennstaedtia n 1 3 @ #m %m 1 0 13189222 -genus_dentaria n 1 2 @ #m 1 0 11881563 -genus_deparia n 1 3 @ #m %m 1 0 13196545 -genus_dermacentor n 1 3 @ #m %m 1 0 01778984 -genus_dermatobia n 1 3 @ #m %m 1 0 02194078 -genus_dermochelys n 1 3 @ #m %m 1 0 01665372 -genus_derris n 1 3 @ #m %m 1 0 12525347 -genus_descurainia n 1 3 @ #m %m 1 0 11884667 -genus_desmanthus n 1 3 @ #m %m 1 0 12525975 -genus_desmidium n 1 3 @ #m %m 1 0 01413324 -genus_desmodium n 1 3 @ #m %m 1 0 12526380 -genus_desmodus n 1 3 @ #m %m 1 0 02150730 -genus_desmograthus n 1 3 @ #m %m 1 0 01636675 -genus_deutzia n 1 3 @ #m %m 1 0 12790185 -genus_diacalpa n 1 2 @ #m 1 0 13196942 -genus_diadophis n 1 3 @ #m %m 1 0 01728738 -genus_dialeurodes n 1 2 @ #m 1 0 02246822 -genus_dianthus n 1 3 @ #m %m 1 0 11807849 -genus_diapensia n 1 3 @ #m %m 1 0 12250874 -genus_diapheromera n 1 3 @ #m %m 1 0 02231680 -genus_dicamptodon n 1 3 @ #m %m 1 0 01634891 -genus_dicentra n 1 3 @ #m %m 1 0 11910070 -genus_diceros n 1 3 @ #m %m 1 0 02393024 -genus_dichondra n 1 3 @ #m %m 1 0 12825949 -genus_dicksonia n 1 3 @ #m %m 1 0 13190469 -genus_dicranopteris n 1 2 @ #m 1 0 13170498 -genus_dicranum n 1 2 @ #m 1 0 11540631 -genus_dicrostonyx n 1 3 @ #m %m 1 0 02345471 -genus_dictamnus n 1 2 @ #m 1 0 12712488 -genus_dictostylium n 1 3 @ #m %m 1 0 12976389 -genus_dictyophera n 1 2 @ #m 1 0 13040971 -genus_didelphis n 1 3 @ #m %m 1 0 01875165 -genus_dieffenbachia n 1 3 @ #m %m 1 0 11787391 -genus_diervilla n 1 3 @ #m %m 1 0 12671898 -genus_difflugia n 1 3 @ #m %m 1 0 01394635 -genus_digitalis n 1 3 @ #m %m 1 0 12882591 -genus_digitaria n 1 3 @ #m %m 1 0 12116881 -genus_dillenia n 1 3 @ #m %m 1 0 12363110 -genus_dimetrodon n 1 3 @ #m %m 1 0 01722538 -genus_dimocarpus n 1 3 @ #m %m 1 0 12743232 -genus_dimorphotheca n 1 3 @ #m %m 1 0 11961266 -genus_dinornis n 1 3 @ #m %m 1 0 01522952 -genus_diodon n 1 3 @ #m %m 1 0 02655694 -genus_diomedea n 1 3 @ #m %m 1 0 02058453 -genus_dionaea n 1 3 @ #m %m 1 0 12782774 -genus_dioon n 1 3 @ #m %m 1 0 11602671 -genus_dioscorea n 1 3 @ #m %m 1 0 12087807 -genus_diospyros n 1 3 @ #m %m 1 0 12770277 -genus_diphylla n 1 3 @ #m %m 1 0 02151108 -genus_dipladenia n 1 3 @ #m %m 1 0 11773138 -genus_diplococcus n 1 3 @ #m %m 1 0 01380489 -genus_diplodocus n 1 3 @ #m %m 1 0 01710035 -genus_diplopterygium n 1 3 @ #m %m 1 0 13170661 -genus_diplotaxis n 1 3 @ #m %m 1 0 11885148 -genus_dipodomys n 1 3 @ #m %m 1 0 02349980 -genus_dipogon n 1 3 @ #m %m 1 0 12526946 -genus_dipsacus n 1 3 @ #m %m 1 0 12682264 -genus_dipsosaurus n 1 3 @ #m %m 1 0 01677913 -genus_dipteronia n 1 2 @ #m 1 0 12756059 -genus_dipteryx n 1 3 @ #m %m 1 0 11749742 -genus_dipus n 1 3 @ #m %m 1 0 02351686 -genus_dirca n 1 3 @ #m %m 1 0 12347490 -genus_disa n 1 3 @ #m %m 1 0 12059479 -genus_discina n 1 3 @ #m %m 1 0 13036592 -genus_dodonaea n 1 3 @ #m %m 1 0 12741079 -genus_dolichonyx n 1 3 @ #m %m 1 0 01573775 -genus_dolichos n 1 2 @ #m 1 0 12527391 -genus_dolichotis n 1 3 @ #m %m 1 0 02364989 -genus_doliolum n 1 3 @ #m %m 1 0 01470018 -genus_dombeya n 1 3 @ #m %m 1 0 12197765 -genus_doodia n 1 3 @ #m %m 1 0 13185436 -genus_doronicum n 1 3 @ #m %m 1 0 11961686 -genus_dorotheanthus n 1 3 @ #m %m 1 0 11819751 -genus_doryopteris n 1 3 @ #m %m 1 0 13210827 -genus_dovyalis n 1 3 @ #m %m 1 0 12378546 -genus_draba n 1 3 @ #m %m 1 0 11885697 -genus_dracaena n 1 3 @ #m %m 1 0 12479303 -genus_draco n 1 3 @ #m %m 1 0 01688428 -genus_dracocephalum n 1 3 @ #m %m 1 0 12846143 -genus_dracontium n 1 3 @ #m %m 1 0 11787892 -genus_dracula n 1 2 @ #m 1 0 12059851 -genus_dracunculus n 2 3 @ #m %m 2 0 11788223 01933834 -genus_dreissena n 1 3 @ #m %m 1 0 01965404 -genus_drepanis n 1 3 @ #m %m 1 0 01544877 -genus_drimys n 1 3 @ #m %m 1 0 11739809 -genus_dromaius n 1 3 @ #m %m 1 0 01519719 -genus_drosera n 1 3 @ #m %m 1 0 12782338 -genus_drosophila n 1 3 @ #m %m 1 0 02197545 -genus_drosophyllum n 1 3 @ #m %m 1 0 12783601 -genus_dryadella n 1 2 @ #m 1 0 12060118 -genus_dryas n 1 3 @ #m %m 1 0 12629187 -genus_drymarchon n 1 2 @ #m 1 0 01741116 -genus_drymoglossum n 1 2 @ #m 1 0 13175324 -genus_drynaria n 1 3 @ #m %m 1 0 13175484 -genus_dryopithecus n 1 3 @ #m %m 1 0 02477890 -genus_dryopteris n 1 3 @ #m %m 1 0 13192898 -genus_drypis n 1 3 @ #m %m 1 0 11809922 -genus_dugong n 1 3 @ #m %m 1 0 02074214 -genus_dumetella n 1 3 @ #m %m 1 0 01587406 -genus_durio n 1 3 @ #m %m 1 0 12190712 -genus_dusicyon n 1 2 @ #m 1 0 02116079 -genus_dysdercus n 1 3 @ #m %m 1 0 02245239 -genus_eacles n 1 3 @ #m %m 1 0 02302124 -genus_eburophyton n 1 3 @ #m %m 1 0 12060380 -genus_ecballium n 1 3 @ #m %m 1 0 12165608 -genus_echeneis n 1 3 @ #m %m 1 0 02575168 -genus_echidnophaga n 1 3 @ #m %m 1 0 02187759 -genus_echinacea n 1 3 @ #m %m 1 0 11962108 -genus_echinocactus n 1 3 @ #m %m 1 0 11845387 -genus_echinocereus n 1 3 @ #m %m 1 0 11846087 -genus_echinochloa n 1 3 @ #m %m 1 0 12117507 -genus_echinococcus n 1 3 @ #m %m 1 0 01927816 -genus_echinops n 1 3 @ #m %m 1 0 11962500 -genus_echium n 1 3 @ #m %m 1 0 12819560 -genus_ectopistes n 1 3 @ #m %m 1 0 01815135 -genus_edaphosaurus n 1 3 @ #m %m 1 0 01722254 -genus_edmontosaurus n 1 3 @ #m %m 1 0 01706865 -genus_egeria n 1 2 @ #m 1 0 12614962 -genus_egretta n 1 3 @ #m %m 1 0 02009015 -genus_eichhornia n 1 3 @ #m %m 1 0 12610186 -genus_eimeria n 1 2 @ #m 1 0 01423160 -genus_eira n 1 3 @ #m %m 1 0 02451292 -genus_elaeagnus n 1 3 @ #m %m 1 0 12325667 -genus_elaeis n 1 3 @ #m %m 1 0 12590117 -genus_elaeocarpus n 1 3 @ #m %m 1 0 12192722 -genus_elagatis n 1 2 @ #m 1 0 02577291 -genus_elanoides n 1 3 @ #m %m 1 0 01608934 -genus_elanus n 1 3 @ #m %m 1 0 01609236 -genus_elaphe n 1 3 @ #m %m 1 0 01732445 -genus_elaphurus n 1 3 @ #m %m 1 0 02435386 -genus_electrophorus n 1 3 @ #m %m 1 0 01444164 -genus_eleocharis n 1 3 @ #m %m 1 0 12153393 -genus_elephantopus n 1 3 @ #m %m 1 0 11962853 -genus_elephas n 1 3 @ #m %m 1 0 02503868 -genus_elettaria n 1 3 @ #m %m 1 0 12358173 -genus_eleusine n 1 3 @ #m %m 1 0 12118223 -genus_eleutherodactylus n 1 3 @ #m %m 1 0 01643092 -genus_eliomys n 1 3 @ #m %m 1 0 02353297 -genus_elodea n 1 3 @ #m %m 1 0 12614317 -genus_elops n 1 3 @ #m %m 1 0 02541875 -genus_elsholtzia n 1 3 @ #m %m 1 0 12846546 -genus_elymus n 1 3 @ #m %m 1 0 12118912 -genus_emberiza n 1 3 @ #m %m 1 0 01537710 -genus_embothrium n 1 3 @ #m %m 1 0 12216382 -genus_emilia n 1 3 @ #m %m 1 0 11963158 -genus_emmanthe n 1 3 @ #m %m 1 0 12835196 -genus_empetrum n 1 3 @ #m %m 1 0 12751554 -genus_encelia n 1 3 @ #m %m 1 0 11963755 -genus_enceliopsis n 1 3 @ #m %m 1 0 11964269 -genus_encephalartos n 1 3 @ #m %m 1 0 11603045 -genus_encyclia n 1 3 @ #m %m 1 0 12060816 -genus_endamoeba n 1 3 @ #m %m 1 0 01392122 -genus_engelmannia n 1 3 @ #m %m 1 0 11964688 -genus_engraulis n 1 2 @ %m 1 0 02534036 -genus_enhydra n 1 3 @ #m %m 1 0 02445276 -genus_ensete n 1 3 @ #m %m 1 0 12353604 -genus_ensis n 1 3 @ #m %m 1 0 01958914 -genus_entandrophragma n 1 3 @ #m %m 1 0 12697883 -genus_entelea n 1 2 @ #m 1 0 12204405 -genus_enterobius n 1 3 @ #m %m 1 0 01931398 -genus_enterolobium n 1 3 @ #m %m 1 0 11761007 -genus_entoloma n 1 3 @ #m %m 1 0 13012030 -genus_entomophthora n 1 2 @ #m 1 0 12974662 -genus_eoraptor n 1 3 @ #m %m 1 0 01714982 -genus_epacris n 1 3 @ #m %m 1 0 12253083 -genus_ephedra n 1 3 @ #m %m 1 0 11598452 -genus_ephestia n 1 3 @ #m %m 1 0 02290153 -genus_ephippiorhynchus n 1 3 @ #m %m 1 0 02003994 -genus_epidendrum n 1 3 @ #m %m 1 0 12061849 -genus_epigaea n 1 2 @ #m 1 0 12234913 -genus_epilachna n 1 3 @ #m %m 1 0 02166024 -genus_epilobium n 1 3 @ #m %m 1 0 12342043 -genus_epimedium n 1 3 @ #m %m 1 0 11698895 -genus_epinephelus n 1 3 @ #m %m 1 0 02569151 -genus_epipactis n 1 3 @ #m %m 1 0 12062227 -genus_epiphyllum n 1 4 @ #m %m ; 1 0 11846582 -genus_epipremnum n 1 3 @ #m %m 1 0 11788536 -genus_episcia n 1 3 @ #m %m 1 0 12831776 -genus_eptatretus n 1 3 @ #m %m 1 0 01479066 -genus_eptesicus n 1 3 @ #m %m 1 0 02147034 -genus_equetus n 1 3 @ #m %m 1 0 02594807 -genus_equisetum n 1 3 @ #m %m 1 0 13219258 -genus_equus n 1 3 @ #m %m 1 0 02373843 -genus_eragrostis n 1 3 @ #m %m 1 0 12119947 -genus_eranthis n 1 3 @ #m %m 1 0 11733424 -genus_ercilla n 1 2 @ #m 1 0 11856271 -genus_erechtites n 1 3 @ #m %m 1 0 11965054 -genus_erethizon n 1 3 @ #m %m 1 0 02348036 -genus_eretmochelys n 1 3 @ #m %m 1 0 01664862 -genus_erianthus n 1 3 @ #m %m 1 0 12120812 -genus_erica n 1 3 @ #m %m 1 0 12227220 -genus_erigeron n 1 3 @ #m %m 1 0 11965378 -genus_erignathus n 1 3 @ #m %m 1 0 02080586 -genus_erinaceus n 1 3 @ #m %m 1 0 01893666 -genus_eriobotrya n 1 3 @ #m %m 1 0 12629523 -genus_eriocaulon n 1 3 @ #m %m 1 0 12609128 -genus_eriodictyon n 1 3 @ #m %m 1 0 12835578 -genus_eriogonum n 1 3 @ #m %m 1 0 12602118 -genus_eriophorum n 1 3 @ #m %m 1 0 12152406 -genus_eriophyllum n 1 3 @ #m %m 1 0 11967572 -genus_eriosoma n 1 3 @ #m %m 1 0 02253592 -genus_erithacus n 1 3 @ #m %m 1 0 01562116 -genus_erodium n 1 3 @ #m %m 1 0 12688526 -genus_erolia n 1 3 @ #m %m 1 0 02027209 -genus_eruca n 1 3 @ #m %m 1 0 11886380 -genus_erwinia n 1 3 @ #m %m 1 0 01370581 -genus_eryngium n 1 3 @ #m %m 1 0 12937822 -genus_erysimum n 1 3 @ #m %m 1 0 11886788 -genus_erysiphe n 1 3 @ #m %m 1 0 12963494 -genus_erythrina n 1 3 @ #m %m 1 0 12527569 -genus_erythrocebus n 1 3 @ #m %m 1 0 02486138 -genus_erythronium n 1 3 @ #m %m 1 0 12450099 -genus_erythroxylon n 1 2 @ %m 1 0 12689808 -genus_erythroxylum n 1 2 @ %m 1 0 12689808 -genus_escherichia n 1 3 @ #m %m 1 0 01368095 -genus_eschrichtius n 1 3 @ #m %m 1 0 02066086 -genus_eschscholtzia n 1 3 @ #m %m 1 0 11905236 -genus_esox n 1 3 @ #m %m 1 0 02560964 -genus_estrilda n 1 3 @ #m %m 1 0 01543817 -genus_etropus n 1 3 @ #m %m 1 0 02661765 -genus_euarctos n 1 3 @ #m %m 1 0 02132974 -genus_eucalyptus n 1 3 @ #m %m 1 0 12334686 -genus_eucarya n 1 3 @ #m %m 1 0 12736455 -genus_eucinostomus n 1 3 @ #m %m 1 0 02637337 -genus_euderma n 1 3 @ #m %m 1 0 02148377 -genus_eudyptes n 1 3 @ #m %m 1 0 02057208 -genus_eugenia n 1 3 @ #m %m 1 0 12331415 -genus_euglena n 1 3 @ #m %m 1 0 01406565 -genus_eumeces n 1 3 @ #m %m 1 0 01684435 -genus_eumenes n 1 3 @ #m %m 1 0 02214203 -genus_eumetopias n 1 3 @ #m %m 1 0 02078882 -genus_eumops n 1 3 @ #m %m 1 0 02150016 -genus_eunectes n 1 3 @ #m %m 1 0 01742967 -genus_euonymus n 1 3 @ #m %m 1 0 12748815 -genus_eupatorium n 1 3 @ #m %m 1 0 11968104 -genus_euphagus n 1 3 @ #m %m 1 0 01574671 -genus_euphorbia n 1 3 @ #m %m 1 0 12917338 -genus_euphractus n 1 3 @ #m %m 1 0 02455584 -genus_euplectella n 1 3 @ #m %m 1 0 01907902 -genus_euproctis n 1 3 @ #m %m 1 0 02286271 -genus_eurotium n 1 2 @ #m 1 0 13027049 -genus_euryale n 1 2 @ #m 1 0 02318437 -genus_eustoma n 1 3 @ #m %m 1 0 12291763 -genus_eutamias n 1 3 @ #m %m 1 0 02360135 -genus_euterpe n 1 3 @ #m %m 1 0 12590842 -genus_euthynnus n 1 3 @ #m %m 1 0 02628467 -genus_evernia n 1 2 @ #m 1 0 12990092 -genus_exacum n 1 3 @ #m %m 1 0 12292285 -genus_exaeretodon n 1 2 @ #m 1 0 01720867 -genus_fabiana n 1 3 @ #m %m 1 0 12903794 -genus_fagopyrum n 1 2 @ #m 1 0 12601335 -genus_fagus n 1 3 @ #m %m 1 0 12260593 -genus_falcatifolium n 1 3 @ #m %m 1 0 11654667 -genus_falco n 1 3 @ #m %m 1 0 01611252 -genus_fasciola n 1 3 @ #m %m 1 0 01926247 -genus_fasciolopsis n 1 3 @ #m %m 1 0 01926549 -genus_feijoa n 1 3 @ #m %m 1 0 12332422 -genus_felicia n 1 3 @ #m %m 1 0 11969410 -genus_felis n 1 3 @ #m %m 1 0 02121234 -genus_ferocactus n 1 3 @ #m %m 1 0 11846970 -genus_festuca n 1 3 @ #m %m 1 0 12121405 -genus_ficus n 1 3 @ #m %m 1 0 12401122 -genus_filago n 1 3 @ #m %m 1 0 11969977 -genus_firmiana n 1 3 @ #m %m 1 0 12198140 -genus_fissurella n 1 3 @ #m %m 1 0 01949330 -genus_fistularia n 1 3 @ #m %m 1 0 01454393 -genus_fistulina n 1 3 @ #m %m 1 0 13053450 -genus_flacourtia n 1 3 @ #m %m 1 0 12378080 -genus_flammulina n 1 3 @ #m %m 1 0 13022078 -genus_flindersia n 1 3 @ #m %m 1 0 12698283 -genus_foeniculum n 1 3 @ #m %m 1 0 12938897 -genus_fomes n 1 3 @ #m %m 1 0 13053816 -genus_forestiera n 1 3 @ #m %m 1 0 12302418 -genus_forficula n 1 3 @ #m %m 1 0 02273254 -genus_formica n 1 3 @ #m %m 1 0 02221240 -genus_formicarius n 1 3 @ #m %m 1 0 01553380 -genus_forsythia n 1 3 @ #m %m 1 0 12302974 -genus_fortunella n 1 3 @ #m %m 1 0 12712820 -genus_fossa n 1 3 @ #m %m 1 0 02136623 -genus_fothergilla n 1 3 @ #m %m 1 0 12315818 -genus_fouquieria n 1 3 @ #m %m 1 0 12381666 -genus_fragaria n 1 3 @ #m %m 1 0 12629946 -genus_francisella n 1 2 @ %m 1 0 01365474 -genus_francoa n 1 3 @ #m %m 1 0 12797693 -genus_frankliniella n 1 3 @ #m %m 1 0 02272152 -genus_frasera n 1 3 @ #m %m 1 0 12292655 -genus_fratercula n 1 3 @ #m %m 1 0 02047835 -genus_fraxinus n 1 3 @ #m %m 1 0 12303349 -genus_freesia n 1 3 @ #m %m 1 0 12416917 -genus_fregata n 1 3 @ #m %m 1 0 02052639 -genus_fremontia n 1 3 @ #m %m 1 0 12198628 -genus_fremontodendron n 1 3 @ #m %m 1 0 12198628 -genus_fringilla n 1 3 @ #m %m 1 0 01530256 -genus_fritillaria n 1 3 @ #m %m 1 0 12451789 -genus_froelichia n 1 3 @ #m %m 1 0 11825535 -genus_fuchsia n 1 3 @ #m %m 1 0 12343306 -genus_fucus n 1 3 @ #m %m 1 0 01404813 -genus_fulica n 1 3 @ #m %m 1 0 02017878 -genus_fulmarus n 1 3 @ #m %m 1 0 02060016 -genus_fumaria n 1 3 @ #m %m 1 0 11909353 -genus_fundulus n 1 3 @ #m %m 1 0 01447001 -genus_fungia n 1 2 @ #m 1 0 01917751 -genus_funka n 1 3 @ #m %m 1 0 12457519 -genus_furnarius n 1 3 @ #m %m 1 0 01552654 -genus_fusanus n 1 3 @ #m %m 1 0 12736455 -genus_fusarium n 1 2 @ #m 1 0 13081778 -genus_fuscoboletinus n 1 3 @ #m %m 1 0 13057845 -genus_gadus n 1 3 @ #m %m 1 0 02522247 -genus_gaillardia n 1 3 @ #m %m 1 0 11970429 -genus_galago n 1 3 @ #m %m 1 0 02499700 -genus_galax n 1 3 @ #m %m 1 0 12251137 -genus_galega n 1 3 @ #m %m 1 0 12529353 -genus_galeocerdo n 1 3 @ #m %m 1 0 01491235 -genus_galeopsis n 1 3 @ #m %m 1 0 12846869 -genus_galeorhinus n 1 3 @ #m %m 1 0 01491520 -genus_galictis n 1 2 @ #m 1 0 02449582 -genus_galium n 1 3 @ #m %m 1 0 12664897 -genus_galleria n 1 3 @ #m %m 1 0 02289177 -genus_gallinago n 1 3 @ #m %m 1 0 02031752 -genus_gallinula n 1 3 @ #m %m 1 0 02016198 -genus_gallirallus n 1 3 @ #m %m 1 0 02015221 -genus_gallus n 1 3 @ #m %m 1 0 01790943 -genus_gambelia n 1 3 @ #m %m 1 0 01679837 -genus_gambusia n 1 3 @ #m %m 1 0 01449252 -genus_garcinia n 1 3 @ #m %m 1 0 12366507 -genus_gardenia n 1 3 @ #m %m 1 0 12666602 -genus_garrulus n 1 3 @ #m %m 1 0 01580225 -genus_gasterophilus n 1 3 @ #m %m 1 0 02193496 -genus_gasterosteus n 1 3 @ #m %m 1 0 01455141 -genus_gastroboletus n 1 3 @ #m %m 1 0 13048666 -genus_gastrocybe n 1 3 @ #m %m 1 0 13047706 -genus_gastrolobium n 1 3 @ #m %m 1 0 12529730 -genus_gastrophryne n 1 3 @ #m %m 1 0 01652850 -genus_gaultheria n 1 3 @ #m %m 1 0 12235263 -genus_gavia n 1 3 @ #m %m 1 0 02048952 -genus_gavialis n 1 3 @ #m %m 1 0 01699537 -genus_gaylussacia n 1 3 @ #m %m 1 0 12236363 -genus_gazania n 1 3 @ #m %m 1 0 11971094 -genus_gazella n 1 3 @ #m %m 1 0 02422860 -genus_geastrum n 1 2 @ #m 1 0 13045027 -genus_gelechia n 1 3 @ #m %m 1 0 02293560 -genus_gelsemium n 1 3 @ #m %m 1 0 12485811 -genus_gempylus n 1 2 @ #m 1 0 02622130 -genus_genetta n 1 3 @ #m %m 1 0 02136901 -genus_genipa n 1 3 @ #m %m 1 0 12667179 -genus_genista n 1 3 @ #m %m 1 0 12530208 -genus_genlisea n 1 3 @ #m %m 1 0 12873182 -genus_gentiana n 1 3 @ #m %m 1 0 12293419 -genus_gentianella n 1 3 @ #m %m 1 0 12295560 -genus_gentianopsis n 1 3 @ #m %m 1 0 12296218 -genus_genyonemus n 1 3 @ #m %m 1 0 02598438 -genus_geochelone n 1 3 @ #m %m 1 0 01670673 -genus_geococcyx n 1 3 @ #m %m 1 0 01823912 -genus_geoffroea n 1 3 @ #m %m 1 0 12531144 -genus_geoglossum n 1 3 @ #m %m 1 0 13226698 -genus_geomys n 1 3 @ #m %m 1 0 02353709 -genus_geophilus n 1 2 @ #m 1 0 01786219 -genus_geothlypis n 1 3 @ #m %m 1 0 01570549 -genus_geranium n 1 3 @ #m %m 1 0 12685679 -genus_gerardia n 1 3 @ #m %m 1 0 12883395 -genus_gerbera n 1 3 @ #m %m 1 0 11971600 -genus_gerbillus n 1 2 @ #m 1 0 02343633 -genus_gerea n 1 3 @ #m %m 1 0 11972141 -genus_gerres n 1 3 @ #m %m 1 0 02637046 -genus_gerrhonotus n 1 3 @ #m %m 1 0 01689678 -genus_gerris n 1 3 @ #m %m 1 0 02243744 -genus_gesneria n 1 3 @ #m %m 1 0 12829809 -genus_geum n 1 3 @ #m %m 1 0 12631224 -genus_giardia n 1 3 @ #m %m 1 0 01419740 -genus_ginglymostoma n 1 3 @ #m %m 1 0 01486706 -genus_ginkgo n 1 2 @ #m 1 0 11664301 -genus_giraffa n 1 3 @ #m %m 1 0 02438897 -genus_gladiolus n 1 3 @ #m %m 1 0 12417273 -genus_glareola n 1 3 @ #m %m 1 0 02038837 -genus_glaucium n 1 3 @ #m %m 1 0 11905584 -genus_glaucomys n 1 3 @ #m %m 1 0 02360643 -genus_glaux n 1 3 @ #m %m 1 0 12093769 -genus_glechoma n 1 3 @ #m %m 1 0 12847254 -genus_gleditsia n 1 3 @ #m %m 1 0 12495509 -genus_gleichenia n 1 2 @ #m 1 0 13170286 -genus_gliricidia n 1 3 @ #m %m 1 0 12531552 -genus_glis n 1 3 @ #m %m 1 0 02352804 -genus_globicephala n 1 3 @ #m %m 1 0 02071506 -genus_globigerina n 1 2 @ #m 1 0 01393364 -genus_gloriosa n 1 3 @ #m %m 1 0 12455787 -genus_glossina n 1 3 @ #m %m 1 0 02191131 -genus_glossodia n 1 3 @ #m %m 1 0 12063066 -genus_glossopsitta n 1 3 @ #m %m 1 0 01820664 -genus_gloxinia n 1 3 @ #m %m 1 0 12832140 -genus_glyceria n 1 3 @ #m %m 1 0 12122124 -genus_glycine n 1 3 @ #m %m 1 0 12532008 -genus_glycyrrhiza n 1 3 @ #m %m 1 0 12532720 -genus_gnaphalium n 1 3 @ #m %m 1 0 11972569 -genus_gnetum n 1 3 @ #m %m 1 0 11597396 -genus_gobiesox n 1 2 @ #m 1 0 02635459 -genus_gobio n 1 3 @ #m %m 1 0 01443126 -genus_gomphotherium n 1 3 @ #m %m 1 0 02506630 -genus_gomphrena n 1 3 @ #m %m 1 0 11825988 -genus_goniopteris n 1 1 @ 1 0 13228867 -genus_gonorhynchus n 1 3 @ #m %m 1 0 02529111 -genus_goodyera n 1 3 @ #m %m 1 0 12063414 -genus_gopherus n 1 3 @ #m %m 1 0 01670961 -genus_gorgonocephalus n 1 2 @ #m 1 0 02318798 -genus_gorilla n 1 3 @ #m %m 1 0 02480673 -genus_gossypium n 1 3 @ #m %m 1 0 12175797 -genus_gracula n 1 2 @ #m 1 0 01578086 -genus_grammatophyllum n 1 2 @ #m 1 0 12063887 -genus_grampus n 1 3 @ #m %m 1 0 02070923 -genus_graptophyllum n 1 3 @ #m %m 1 0 12812665 -genus_grevillea n 1 3 @ #m %m 1 0 12217211 -genus_grewia n 1 3 @ #m %m 1 0 12204925 -genus_grias n 1 3 @ #m %m 1 0 12327407 -genus_grindelia n 1 3 @ #m %m 1 0 11973159 -genus_griselinia n 1 3 @ #m %m 1 0 12948978 -genus_grison n 1 3 @ #m %m 1 0 02449464 -genus_groenlandia n 1 3 @ #m %m 1 0 12616825 -genus_grus n 1 3 @ #m %m 1 0 02013034 -genus_guaiacum n 1 3 @ #m %m 1 0 12721864 -genus_guevina n 1 3 @ #m %m 1 0 12216836 -genus_gulo n 1 3 @ #m %m 1 0 02449060 -genus_gutierrezia n 1 3 @ #m %m 1 0 11973888 -genus_gymnadenia n 1 3 @ #m %m 1 0 12064183 -genus_gymnadeniopsis n 1 2 @ #m 1 0 12064814 -genus_gymnelis n 1 3 @ #m %m 1 0 02617689 -genus_gymnocalycium n 1 2 @ #m 1 0 11847414 -genus_gymnocarpium n 1 3 @ #m %m 1 0 13197085 -genus_gymnocladus n 1 3 @ #m %m 1 0 12496207 -genus_gymnogyps n 1 2 @ #m 1 0 01620003 -genus_gymnopilus n 1 3 @ #m %m 1 0 13076181 -genus_gymnorhina n 1 3 @ #m %m 1 0 01583636 -genus_gymnosporangium n 1 3 @ #m %m 1 0 13065215 -genus_gymnura n 1 3 @ #m %m 1 0 01498577 -genus_gynura n 1 3 @ #m %m 1 0 11975100 -genus_gypaetus n 1 2 @ #m 1 0 01617289 -genus_gyps n 1 3 @ #m %m 1 0 01616970 -genus_gypsophila n 1 3 @ #m %m 1 0 11810190 -genus_gyromitra n 1 3 @ #m %m 1 0 13037124 -genus_haastia n 1 3 @ #m %m 1 0 11975482 -genus_habenaria n 1 3 @ #m %m 1 0 12064996 -genus_hackelia n 1 3 @ #m %m 1 0 12819953 -genus_haemanthus n 1 3 @ #m %m 1 0 12420335 -genus_haematobia n 1 3 @ #m %m 1 0 02199352 -genus_haematopus n 1 3 @ #m %m 1 0 02036982 -genus_haematoxylon n 1 3 @ #m %m 1 0 12496735 -genus_haematoxylum n 1 3 @ #m %m 1 0 12496735 -genus_haemodorum n 1 2 @ #m 1 0 12312276 -genus_haemopis n 1 3 @ #m %m 1 0 01938618 -genus_haemoproteus n 1 2 @ #m 1 0 01424938 -genus_haemulon n 1 3 @ #m %m 1 0 02588580 -genus_hakea n 1 3 @ #m %m 1 0 12218621 -genus_halcyon n 1 2 @ #m 1 0 01828397 -genus_haldea n 1 2 @ #m 1 0 01736696 -genus_halenia n 1 3 @ #m %m 1 0 12297678 -genus_halesia n 1 3 @ #m %m 1 0 12778045 -genus_haliaeetus n 1 3 @ #m %m 1 0 01614769 -genus_halicoeres n 1 3 @ #m %m 1 0 02608708 -genus_halimodendron n 1 3 @ #m %m 1 0 12533588 -genus_haliotis n 1 3 @ #m %m 1 0 01942724 -genus_halocarpus n 1 3 @ #m %m 1 0 11655407 -genus_halogeton n 1 3 @ #m %m 1 0 11833577 -genus_hamamelidanthum n 1 2 @ #m 1 0 12313735 -genus_hamamelidoxylon n 1 2 @ #m 1 0 12313954 -genus_hamamelis n 1 3 @ #m %m 1 0 12314652 -genus_hamamelites n 1 2 @ #m 1 0 12314146 -genus_hamelia n 1 3 @ #m %m 1 0 12667817 -genus_haminoea n 1 3 @ #m %m 1 0 01951845 -genus_haplopappus n 1 3 @ #m %m 1 0 11975853 -genus_hardenbergia n 1 3 @ #m %m 1 0 12533992 -genus_harpia n 1 3 @ #m %m 1 0 01613909 -genus_harpullia n 1 3 @ #m %m 1 0 12743680 -genus_harrisia n 1 2 @ #m 1 0 11847615 -genus_hatiora n 1 3 @ #m %m 1 0 11847841 -genus_hazardia n 1 3 @ #m %m 1 0 11976715 -genus_hedeoma n 1 4 @ #m %m ; 1 0 12847749 -genus_hedera n 1 3 @ #m %m 1 0 11798851 -genus_hedysarum n 1 3 @ #m %m 1 0 12534453 -genus_helenium n 1 3 @ #m %m 1 0 11977125 -genus_heleodytes n 1 3 @ #m %m 1 0 01586170 -genus_heliamphora n 1 3 @ #m %m 1 0 12781241 -genus_helianthemum n 1 3 @ #m %m 1 0 12375294 -genus_helianthus n 1 3 @ #m %m 1 0 11978035 -genus_helichrysum n 1 2 @ #m 1 0 11980088 -genus_helicteres n 1 3 @ #m %m 1 0 12199030 -genus_heliobacter n 1 1 @ 1 0 01351453 -genus_heliophila n 1 3 @ #m %m 1 0 11888271 -genus_heliopsis n 1 3 @ #m %m 1 0 11980577 -genus_heliothis n 1 3 @ #m %m 1 0 02296480 -genus_helipterum n 1 3 @ #m %m 1 0 11980867 -genus_helix n 1 3 @ #m %m 1 0 01944617 -genus_helleborus n 1 3 @ #m %m 1 0 11733769 -genus_helminthostachys n 1 3 @ #m %m 1 0 12961689 -genus_heloderma n 1 3 @ #m %m 1 0 01692143 -genus_helotium n 1 2 @ #m 1 0 12967656 -genus_helvella n 1 3 @ #m %m 1 0 13035521 -genus_helwingia n 1 2 @ #m 1 0 12949549 -genus_helxine n 1 3 @ #m %m 1 0 12393527 -genus_hemachatus n 1 2 @ #m 1 0 01749141 -genus_hemerocallis n 1 3 @ #m %m 1 0 12456527 -genus_hemigalus n 1 3 @ #m %m 1 0 02137172 -genus_hemigrammus n 1 3 @ #m %m 1 0 02583768 -genus_hemipteronatus n 1 3 @ #m %m 1 0 02609466 -genus_hemitripterus n 1 3 @ #m %m 1 0 02645823 -genus_hepatica n 1 3 @ #m %m 1 0 11734872 -genus_heracleum n 1 3 @ #m %m 1 0 12939664 -genus_heritiera n 1 2 @ #m 1 0 12199564 -genus_hermannia n 1 3 @ #m %m 1 0 12200315 -genus_hermissenda n 1 3 @ #m %m 1 0 01951472 -genus_hernaria n 1 3 @ #m %m 1 0 11810559 -genus_herpestes n 1 3 @ #m %m 1 0 02137428 -genus_herrerasaurus n 1 3 @ #m %m 1 0 01714686 -genus_hesperiphona n 1 3 @ #m %m 1 0 01540432 -genus_hesperis n 1 3 @ #m %m 1 0 11888621 -genus_heteranthera n 1 3 @ #m %m 1 0 12610609 -genus_heterocephalus n 1 3 @ #m %m 1 0 02369424 -genus_heterodon n 1 3 @ #m %m 1 0 01729133 -genus_heteromeles n 1 3 @ #m %m 1 0 12632875 -genus_heteroscelus n 1 3 @ #m %m 1 0 02030442 -genus_heterotheca n 1 3 @ #m %m 1 0 11981314 -genus_heuchera n 1 3 @ #m %m 1 0 12798041 -genus_hevea n 1 2 @ #m 1 0 12925836 -genus_hexagrammos n 1 3 @ #m %m 1 0 02648769 -genus_hexalectris n 1 3 @ #m %m 1 0 12068824 -genus_hexamita n 1 2 @ #m 1 0 01420164 -genus_hexanchus n 1 3 @ #m %m 1 0 01482887 -genus_hibbertia n 1 3 @ #m %m 1 0 12363580 -genus_hibiscus n 1 3 @ #m %m 1 0 12177592 -genus_hieracium n 1 3 @ #m %m 1 0 11981817 -genus_himantoglossum n 1 3 @ #m %m 1 0 12069488 -genus_himantopus n 1 3 @ #m %m 1 0 02034394 -genus_hippeastrum n 1 3 @ #m %m 1 0 12420991 -genus_hippobosca n 1 3 @ #m %m 1 0 02198714 -genus_hippocampus n 1 3 @ #m %m 1 0 01456631 -genus_hippocrepis n 1 2 @ #m 1 0 12535101 -genus_hippodamia n 1 3 @ #m %m 1 0 02166436 -genus_hippoglossoides n 1 2 @ #m 1 0 02659961 -genus_hippoglossus n 1 2 @ #m 1 0 02660412 -genus_hippopotamus n 1 3 @ #m %m 1 0 02398386 -genus_hipposideros n 1 3 @ #m %m 1 0 02143759 -genus_hippotragus n 1 3 @ #m %m 1 0 02425756 -genus_hipsurus n 1 3 @ #m %m 1 0 02571034 -genus_hirudo n 1 3 @ #m %m 1 0 01938312 -genus_hirundo n 1 3 @ #m %m 1 0 01594611 -genus_hoheria n 1 3 @ #m %m 1 0 12180714 -genus_holarrhena n 1 3 @ #m %m 1 0 11772702 -genus_holbrookia n 1 3 @ #m %m 1 0 01679178 -genus_holcus n 1 2 @ #m 1 0 12122581 -genus_holocentrus n 1 3 @ #m %m 1 0 01450453 -genus_holothuria n 1 3 @ #m %m 1 0 02321903 -genus_homarus n 1 3 @ #m %m 1 0 01983277 -genus_homo n 1 3 @ #m %m 1 0 02472012 -genus_homogyne n 1 3 @ #m %m 1 0 11982724 -genus_homona n 1 2 @ #m 1 0 02284513 -genus_hordeum n 1 3 @ #m %m 1 0 12123050 -genus_horneophyton n 1 2 @ #m 1 0 13218504 -genus_hosta n 1 3 @ #m %m 1 0 12457519 -genus_hottonia n 1 3 @ #m %m 1 0 12094121 -genus_houttuynia n 1 2 @ #m 1 0 13152592 -genus_hovea n 1 3 @ #m %m 1 0 12535461 -genus_hoya n 1 3 @ #m %m 1 0 13236726 -genus_hudsonia n 1 3 @ #m %m 1 0 12376382 -genus_hugueninia n 1 2 @ %m 1 0 11889078 -genus_hulsea n 1 3 @ #m %m 1 0 11983160 -genus_humulus n 1 3 @ #m %m 1 0 12397594 -genus_hunnemania n 1 3 @ #m %m 1 0 11905989 -genus_hyacinthoides n 1 3 @ #m %m 1 0 12459048 -genus_hyacinthus n 1 3 @ #m %m 1 0 12458224 -genus_hyaena n 1 3 @ #m %m 1 0 02117369 -genus_hyalophora n 1 2 @ #m 1 0 02303167 -genus_hyalosperma n 1 2 @ #m 1 0 11983739 -genus_hybanthus n 1 2 @ #m 1 0 12390914 -genus_hydnocarpus n 1 3 @ #m %m 1 0 12379278 -genus_hydnum n 1 2 @ #m 1 0 12986337 -genus_hydra n 1 3 @ #m %m 1 0 01912050 -genus_hydrangea n 1 3 @ #m %m 1 0 12787846 -genus_hydrastis n 1 3 @ #m %m 1 0 11735325 -genus_hydrilla n 1 3 @ #m %m 1 0 12613596 -genus_hydrobates n 1 3 @ #m %m 1 0 02061073 -genus_hydrocharis n 1 3 @ #m %m 1 0 12613285 -genus_hydrochoerus n 1 2 @ #m 1 0 02365356 -genus_hydrodamalis n 1 3 @ #m %m 1 0 02074542 -genus_hydromantes n 1 3 @ #m %m 1 0 01637796 -genus_hydromys n 1 3 @ #m %m 1 0 02335007 -genus_hydrophyllum n 1 3 @ #m %m 1 0 12834671 -genus_hyemoschus n 1 3 @ #m %m 1 0 02436514 -genus_hygrocybe n 1 3 @ #m %m 1 0 13070708 -genus_hygrophorus n 1 3 @ #m %m 1 0 13071029 -genus_hygrotrama n 1 3 @ #m %m 1 0 13073211 -genus_hyla n 1 3 @ #m %m 1 0 01650509 -genus_hylactophryne n 1 3 @ #m %m 1 0 01643374 -genus_hylobates n 1 3 @ #m %m 1 0 02483224 -genus_hylocereus n 1 3 @ #m %m 1 0 11848253 -genus_hylocichla n 1 3 @ #m %m 1 0 01559294 -genus_hylophylax n 1 3 @ #m %m 1 0 01553879 -genus_hymenaea n 1 3 @ #m %m 1 0 11750359 -genus_hymenanthera n 1 2 @ #m 1 0 12391111 -genus_hymenophyllum n 1 3 @ #m %m 1 0 12951668 -genus_hynerpeton n 1 3 @ #m %m 1 0 01627786 -genus_hyoscyamus n 1 3 @ #m %m 1 0 12904148 -genus_hypentelium n 1 2 @ #m 1 0 01445718 -genus_hypericum n 1 3 @ #m %m 1 0 12367306 -genus_hyperoglyphe n 1 3 @ #m %m 1 0 02635013 -genus_hyperoodon n 1 3 @ #m %m 1 0 02068408 -genus_hyphantria n 1 3 @ #m %m 1 0 02308325 -genus_hypochaeris n 1 3 @ #m %m 1 0 11983910 -genus_hypochoeris n 1 3 @ #m %m 1 0 11983910 -genus_hypoderma n 1 3 @ #m %m 1 0 02194887 -genus_hypopachus n 1 3 @ #m %m 1 0 01653384 -genus_hypopitys n 1 2 @ #m 1 0 12259122 -genus_hypoxis n 1 3 @ #m %m 1 0 12422931 -genus_hypsiglena n 1 3 @ #m %m 1 0 01740005 -genus_hypsiprymnodon n 1 3 @ #m %m 1 0 01879701 -genus_hyracotherium n 1 3 @ #m %m 1 0 02375592 -genus_hyssopus n 1 3 @ #m %m 1 0 12848343 -genus_iberis n 1 3 @ #m %m 1 0 11889473 -genus_ibero-mesornis n 1 3 @ #m %m 1 0 01516878 -genus_ibis n 1 3 @ #m %m 1 0 02005962 -genus_ichthyosaurus n 1 3 @ #m %m 1 0 01724703 -genus_ichthyostega n 1 3 @ #m %m 1 0 01628148 -genus_ictalurus n 1 2 @ #m 1 0 02519576 -genus_icteria n 1 3 @ #m %m 1 0 01569713 -genus_icterus n 1 3 @ #m %m 1 0 01572174 -genus_ictiobus n 1 3 @ #m %m 1 0 01445305 -genus_ictonyx n 1 3 @ #m %m 1 0 02444103 -genus_idesia n 1 3 @ #m %m 1 0 12380197 -genus_iguana n 1 3 @ #m %m 1 0 01677242 -genus_iguanodon n 1 3 @ #m %m 1 0 01707566 -genus_ilex n 1 3 @ #m %m 1 0 12756862 -genus_iliamna n 1 3 @ #m %m 1 0 12181147 -genus_illecebrum n 1 3 @ #m %m 1 0 11810918 -genus_illicium n 1 3 @ #m %m 1 0 11708442 -genus_impatiens n 1 3 @ #m %m 1 0 12684153 -genus_inachis n 1 3 @ #m %m 1 0 02279127 -genus_indigofera n 1 3 @ #m %m 1 0 12535820 -genus_indri n 1 3 @ #m %m 1 0 02500144 -genus_inga n 1 3 @ #m %m 1 0 11761484 -genus_inula n 1 3 @ #m %m 1 0 11984397 -genus_ipomoea n 1 3 @ #m %m 1 0 12826395 -genus_irena n 1 3 @ #m %m 1 0 01593857 -genus_iresine n 1 3 @ #m %m 1 0 11826416 -genus_iridoprocne n 1 2 @ #m 1 0 01595330 -genus_iris n 1 2 @ %m 1 0 12411710 -genus_irvingia n 1 3 @ #m %m 1 0 12717524 -genus_isatis n 1 3 @ #m %m 1 0 11889847 -genus_ischigualastia n 1 2 @ #m 1 0 01721269 -genus_isoetes n 1 3 @ #m %m 1 0 13226135 -genus_isopyrum n 1 3 @ #m %m 1 0 11735822 -genus_istiophorus n 1 3 @ #m %m 1 0 02630468 -genus_isurus n 1 3 @ #m %m 1 0 01483980 -genus_iva n 1 3 @ #m %m 1 0 11984854 -genus_ixia n 1 3 @ #m %m 1 0 12417686 -genus_ixobrychus n 1 3 @ #m %m 1 0 02012063 -genus_ixodes n 1 3 @ #m %m 1 0 01777032 -genus_jabiru n 1 3 @ #m %m 1 0 02003735 -genus_jacksonia n 1 2 @ #m 1 0 12536455 -genus_jacquinia n 1 3 @ #m %m 1 0 12099803 -genus_jaculus n 1 3 @ #m %m 1 0 02352175 -genus_jambos n 1 2 @ #m 1 0 12332718 -genus_jamesonia n 1 2 @ #m 1 0 13211179 -genus_jasminum n 1 3 @ #m %m 1 0 12306519 -genus_jatropha n 1 3 @ #m %m 1 0 12925394 -genus_javanthropus n 1 1 @ 1 0 02474282 -genus_jordanella n 1 3 @ #m %m 1 0 01447822 -genus_juglans n 1 3 @ #m %m 1 0 12318164 -genus_junco n 1 3 @ #m %m 1 0 01534321 -genus_juncus n 1 3 @ #m %m 1 0 11743570 -genus_juniperus n 1 3 @ #m %m 1 0 11636389 -genus_jynx n 1 3 @ #m %m 1 0 01841569 -genus_kakatoe n 1 3 @ #m %m 1 0 01818959 -genus_kalmia n 1 3 @ #m %m 1 0 12237350 -genus_kalotermes n 1 2 @ #m 1 0 02225407 -genus_katsuwonus n 1 3 @ #m %m 1 0 02628856 -genus_kennedia n 1 3 @ #m %m 1 0 12536665 -genus_kennedya n 1 3 @ #m %m 1 0 12536665 -genus_kenyapithecus n 1 2 @ #m 1 0 02478990 -genus_keteleeria n 1 3 @ #m %m 1 0 11645041 -genus_khaya n 1 3 @ #m %m 1 0 12698905 -genus_kiggelaria n 1 3 @ #m %m 1 0 12380597 -genus_kinosternon n 1 3 @ #m %m 1 0 01666967 -genus_kirkia n 1 3 @ #m %m 1 0 12717914 -genus_klebsiella n 1 3 @ #m %m 1 0 01368552 -genus_knightia n 1 3 @ #m %m 1 0 12219495 -genus_kniphofia n 1 3 @ #m %m 1 0 12437311 -genus_kobus n 1 3 @ #m %m 1 0 02427337 -genus_kochia n 1 3 @ #m %m 1 0 11831730 -genus_koellia n 1 3 @ #m %m 1 0 12863458 -genus_kogia n 1 3 @ #m %m 1 0 02067462 -genus_kohleria n 1 3 @ #m %m 1 0 12832690 -genus_kolkwitzia n 1 2 @ %m 1 0 12672497 -genus_kosteletzya n 1 3 @ #m %m 1 0 12181851 -genus_krigia n 1 3 @ #m %m 1 0 11985586 -genus_krypterophaneron n 1 2 @ #m 1 0 01452051 -genus_kyphosus n 1 3 @ #m %m 1 0 02604342 -genus_lablab n 1 3 @ #m %m 1 0 12537437 -genus_laburnum n 1 3 @ #m %m 1 0 12537988 -genus_laccopetalum n 1 3 @ #m %m 1 0 11736216 -genus_lacerta n 1 3 @ #m %m 1 0 01693020 -genus_lachnolaimus n 1 2 @ #m 1 0 02608429 -genus_lactarius n 1 3 @ #m %m 1 0 13006377 -genus_lactobacillus n 1 3 @ #m %m 1 0 01379954 -genus_lactophrys n 1 3 @ #m %m 1 0 02654609 -genus_lactuca n 1 3 @ #m %m 1 0 11986091 -genus_laelia n 1 3 @ #m %m 1 0 12069821 -genus_lagarostrobus n 1 3 @ #m %m 1 0 11655764 -genus_lagenaria n 1 3 @ #m %m 1 0 12166003 -genus_lagenophera n 1 2 @ #m 1 0 11987722 -genus_lagerstroemia n 1 3 @ #m %m 1 0 12329020 -genus_lagidium n 1 3 @ #m %m 1 0 02367678 -genus_lagodon n 1 3 @ #m %m 1 0 02592244 -genus_lagopus n 1 3 @ #m %m 1 0 01796222 -genus_lagorchestes n 1 3 @ #m %m 1 0 01878203 -genus_lagostomus n 1 3 @ #m %m 1 0 02367993 -genus_lagothrix n 1 3 @ #m %m 1 0 02494257 -genus_laguncularia n 1 3 @ #m %m 1 0 12325093 -genus_lama n 1 3 @ #m %m 1 0 02437825 -genus_lambertia n 1 3 @ #m %m 1 0 12219875 -genus_lambis n 1 3 @ #m %m 1 0 01943367 -genus_laminaria n 1 3 @ #m %m 1 0 01403284 -genus_lamium n 1 3 @ #m %m 1 0 12848870 -genus_lamna n 1 3 @ #m %m 1 0 01483707 -genus_lampris n 1 3 @ #m %m 1 0 02545687 -genus_lampropeltis n 1 3 @ #m %m 1 0 01734273 -genus_languas n 1 3 @ #m %m 1 0 12356668 -genus_lanius n 1 3 @ #m %m 1 0 01598820 -genus_lansium n 1 3 @ #m %m 1 0 12699157 -genus_lanthanotus n 1 3 @ #m %m 1 0 01691525 -genus_laportea n 1 3 @ #m %m 1 0 12393942 -genus_lappula n 1 3 @ #m %m 1 0 12819953 -genus_lardizabala n 1 2 @ #m 1 0 11703205 -genus_larix n 1 3 @ #m %m 1 0 11618750 -genus_larrea n 1 3 @ #m %m 1 0 12722884 -genus_larus n 1 3 @ #m %m 1 0 02041492 -genus_lasiocampa n 1 3 @ #m %m 1 0 02306672 -genus_lasiurus n 1 3 @ #m %m 1 0 02146064 -genus_lasthenia n 1 3 @ #m %m 1 0 11987956 -genus_lastreopsis n 1 2 @ #m 1 0 13197670 -genus_lates n 1 3 @ #m %m 1 0 02560383 -genus_lathyrus n 1 3 @ #m %m 1 0 12538603 -genus_latimeria n 1 3 @ #m %m 1 0 02515560 -genus_latrodectus n 1 3 @ #m %m 1 0 01774252 -genus_laurus n 1 3 @ #m %m 1 0 11703935 -genus_lavandula n 1 3 @ #m %m 1 0 12849597 -genus_lavatera n 1 3 @ #m %m 1 0 12182414 -genus_layia n 1 3 @ #m %m 1 0 11988419 -genus_lebistes n 1 2 @ #m 1 0 01448496 -genus_lecanopteris n 1 3 @ #m %m 1 0 13175847 -genus_lecanora n 1 3 @ #m %m 1 0 12987993 -genus_leccinum n 1 3 @ #m %m 1 0 13058447 -genus_ledum n 1 3 @ #m %m 1 0 12238306 -genus_leiopelma n 1 3 @ #m %m 1 0 01645278 -genus_leiophyllum n 1 3 @ #m %m 1 0 12239100 -genus_leipoa n 1 3 @ #m %m 1 0 01801371 -genus_leishmania n 1 1 @ 1 0 01418498 -genus_leitneria n 1 3 @ #m %m 1 0 11742745 -genus_lemaireocereus n 1 3 @ #m %m 1 0 11848610 -genus_lemmus n 1 3 @ #m %m 1 0 02344785 -genus_lemna n 1 3 @ #m %m 1 0 11794791 -genus_lemur n 1 3 @ #m %m 1 0 02497550 -genus_lens n 1 2 @ #m 1 0 12544027 -genus_lentinus n 1 3 @ #m %m 1 0 13001743 -genus_leonotis n 1 3 @ #m %m 1 0 12850718 -genus_leontideus n 1 3 @ #m %m 1 0 02490964 -genus_leontocebus n 1 3 @ #m %m 1 0 02490964 -genus_leontodon n 1 3 @ #m %m 1 0 11988774 -genus_leontopodium n 1 3 @ #m %m 1 0 11989266 -genus_leonurus n 1 3 @ #m %m 1 0 12851304 -genus_lepas n 1 3 @ #m %m 1 0 01999048 -genus_lepechinia n 1 3 @ #m %m 1 0 12851673 -genus_lepidium n 1 3 @ #m %m 1 0 11890329 -genus_lepidobotrys n 1 3 @ #m %m 1 0 12701491 -genus_lepidochelys n 1 3 @ #m %m 1 0 01664244 -genus_lepidocybium n 1 3 @ #m %m 1 0 02622408 -genus_lepidothamnus n 1 3 @ #m %m 1 0 11656380 -genus_lepiota n 1 3 @ #m %m 1 0 13013187 -genus_lepisma n 1 3 @ #m %m 1 0 02270473 -genus_lepisosteus n 1 3 @ #m %m 1 0 02641215 -genus_lepomis n 1 3 @ #m %m 1 0 02563497 -genus_leptarrhena n 1 3 @ #m %m 1 0 12799119 -genus_leptinotarsa n 1 3 @ #m %m 1 0 02169833 -genus_leptodactylus n 1 3 @ #m %m 1 0 01643687 -genus_leptoglossus n 1 3 @ #m %m 1 0 02239934 -genus_leptopteris n 1 3 @ #m %m 1 0 12954185 -genus_leptoptilus n 1 3 @ #m %m 1 0 02002875 -genus_leptospira n 1 3 @ #m %m 1 0 01383332 -genus_leptotyphlops n 1 3 @ #m %m 1 0 01740721 -genus_lepus n 1 3 @ #m %m 1 0 02326237 -genus_lespedeza n 1 3 @ #m %m 1 0 12542649 -genus_lesquerella n 1 3 @ #m %m 1 0 11890723 -genus_leucadendron n 1 3 @ #m %m 1 0 12220247 -genus_leucaena n 1 3 @ #m %m 1 0 11762237 -genus_leucanthemum n 1 3 @ #m %m 1 0 11989636 -genus_leuciscus n 1 3 @ #m %m 1 0 01440949 -genus_leucocytozoan n 1 3 @ #m %m 1 0 01425076 -genus_leucocytozoon n 1 3 @ #m %m 1 0 01425076 -genus_leucogenes n 1 2 @ #m 1 0 11990804 -genus_leucothoe n 1 3 @ #m %m 1 0 12239458 -genus_levisticum n 1 3 @ #m %m 1 0 12940060 -genus_lewisia n 1 3 @ #m %m 1 0 11859981 -genus_leycesteria n 1 3 @ #m %m 1 0 12672843 -genus_leymus n 1 2 @ #m 1 0 12124358 -genus_liatris n 1 3 @ #m %m 1 0 11991080 -genus_libocedrus n 1 3 @ #m %m 1 0 11638902 -genus_lichanura n 1 3 @ #m %m 1 0 01742680 -genus_ligularia n 1 3 @ #m %m 1 0 11991993 -genus_ligustrum n 1 3 @ #m %m 1 0 12307611 -genus_lilium n 1 3 @ #m %m 1 0 12426100 -genus_limanda n 1 3 @ #m %m 1 0 02658944 -genus_limax n 1 2 @ #m 1 0 01945580 -genus_limenitis n 1 3 @ #m %m 1 0 02276527 -genus_limnobium n 1 3 @ #m %m 1 0 12613968 -genus_limnocryptes n 1 3 @ #m %m 1 0 02032646 -genus_limnodromus n 1 3 @ #m %m 1 0 02032915 -genus_limonium n 1 3 @ #m %m 1 0 12099220 -genus_limosa n 1 3 @ #m %m 1 0 02034016 -genus_limulus n 1 3 @ #m %m 1 0 01787693 -genus_linanthus n 1 3 @ #m %m 1 0 12811294 -genus_linaria n 1 3 @ #m %m 1 0 12883923 -genus_lindera n 1 3 @ #m %m 1 0 11705921 -genus_lindheimera n 1 3 @ #m %m 1 0 11992340 -genus_linnaea n 1 3 @ #m %m 1 0 12673178 -genus_linum n 1 3 @ #m %m 1 0 12486397 -genus_liomys n 1 3 @ #m %m 1 0 02349730 -genus_liopelma n 1 3 @ #m %m 1 0 01645278 -genus_liparis n 2 3 @ #m %m 2 0 12070177 02647144 -genus_liposcelis n 1 3 @ #m %m 1 0 02261286 -genus_liquidambar n 1 3 @ #m %m 1 0 12316300 -genus_liriodendron n 1 3 @ #m %m 1 0 11712153 -genus_liriope n 1 3 @ #m %m 1 0 12473011 -genus_listera n 1 3 @ #m %m 1 0 12070950 -genus_listeria n 1 3 @ #m %m 1 0 01366881 -genus_litchi n 1 3 @ #m %m 1 0 12744277 -genus_lithocarpus n 1 3 @ #m %m 1 0 12265266 -genus_lithophragma n 1 3 @ #m %m 1 0 12799580 -genus_lithops n 1 3 @ #m %m 1 0 11820323 -genus_lithospermum n 1 3 @ #m %m 1 0 12820434 -genus_litocranius n 1 3 @ #m %m 1 0 02420675 -genus_littorina n 1 3 @ #m %m 1 0 01948284 -genus_livistona n 1 3 @ #m %m 1 0 12591195 -genus_loasa n 1 3 @ #m %m 1 0 12035064 -genus_lobelia n 1 3 @ #m %m 1 0 12168385 -genus_lobipes n 1 3 @ #m %m 1 0 02038010 -genus_lobotes n 1 3 @ #m %m 1 0 02636035 -genus_lobularia n 1 3 @ #m %m 1 0 11891050 -genus_locusta n 1 3 @ #m %m 1 0 02227119 -genus_lofortyx n 1 2 @ #m 1 0 01806740 -genus_logania n 1 2 @ #m 1 0 12485331 -genus_loiseleuria n 1 3 @ #m %m 1 0 12240335 -genus_loligo n 1 3 @ #m %m 1 0 01971517 -genus_lolium n 1 3 @ #m %m 1 0 12124505 -genus_lomatia n 1 3 @ #m %m 1 0 12220654 -genus_lomogramma n 1 2 @ #m 1 0 13203115 -genus_lonas n 1 3 @ #m %m 1 0 11992674 -genus_lonchocarpus n 1 3 @ #m %m 1 0 12544646 -genus_lonicera n 1 3 @ #m %m 1 0 12673755 -genus_lophius n 1 2 @ #m 1 0 02548128 -genus_lophodytes n 1 3 @ #m %m 1 0 01855343 -genus_lopholatilus n 1 3 @ #m %m 1 0 02573075 -genus_lophophora n 1 3 @ #m %m 1 0 11849017 -genus_lophophorus n 1 3 @ #m %m 1 0 01805199 -genus_lophosoria n 1 2 @ #m 1 0 13203405 -genus_loranthus n 1 3 @ #m %m 1 0 12737745 -genus_loris n 1 3 @ #m %m 1 0 02498620 -genus_lota n 1 2 @ #m 1 0 02523338 -genus_lotus n 1 3 @ #m %m 1 0 12545090 -genus_lovoa n 1 3 @ #m %m 1 0 12699485 -genus_loxia n 1 3 @ #m %m 1 0 01533780 -genus_loxodonta n 1 3 @ #m %m 1 0 02504323 -genus_loxoma n 1 2 @ #m 1 0 13203708 -genus_loxostege n 1 3 @ #m %m 1 0 02308852 -genus_lucilia n 1 3 @ #m %m 1 0 02192127 -genus_lufengpithecus n 1 2 @ #m 1 0 02478539 -genus_luffa n 1 3 @ #m %m 1 0 12166312 -genus_lumpenus n 1 3 @ #m %m 1 0 02615829 -genus_lunaria n 1 3 @ #m %m 1 0 11891395 -genus_lunda n 1 3 @ #m %m 1 0 02048242 -genus_lupinus n 1 3 @ #m %m 1 0 12546015 -genus_luscinia n 1 3 @ #m %m 1 0 01559964 -genus_lutjanus n 1 3 @ #m %m 1 0 02586865 -genus_lutra n 1 3 @ #m %m 1 0 02444647 -genus_luvarus n 1 3 @ #m %m 1 0 02632359 -genus_lycaena n 1 3 @ #m %m 1 0 02281987 -genus_lycaeon n 1 2 @ #m 1 0 02116630 -genus_lychnis n 1 3 @ #m %m 1 0 11811308 -genus_lycium n 1 3 @ #m %m 1 0 12904720 -genus_lycoperdon n 1 2 @ #m 1 0 13043746 -genus_lycopersicon n 1 3 @ #m %m 1 0 12905655 -genus_lycopersicum n 1 3 @ #m %m 1 0 12905655 -genus_lycopodium n 1 2 @ #m 1 0 13222669 -genus_lycopus n 1 3 @ #m %m 1 0 12852049 -genus_lycosa n 1 3 @ #m %m 1 0 01775230 -genus_lyginopteris n 1 2 @ #m 1 0 11605396 -genus_lygodium n 1 3 @ #m %m 1 0 12956029 -genus_lygus n 1 3 @ #m %m 1 0 02238113 -genus_lymantria n 1 3 @ #m %m 1 0 02285909 -genus_lynx n 1 3 @ #m %m 1 0 02126951 -genus_lyonia n 1 3 @ #m %m 1 0 12240715 -genus_lyrurus n 1 3 @ #m %m 1 0 01795425 -genus_lysichiton n 1 2 @ #m 1 0 11788926 -genus_lysichitum n 1 2 @ #m 1 0 11788926 -genus_lysiloma n 1 3 @ #m %m 1 0 11762706 -genus_lysimachia n 1 3 @ #m %m 1 0 12094786 -genus_lythrum n 1 3 @ #m %m 1 0 12328241 -genus_macaca n 1 3 @ #m %m 1 0 02487217 -genus_macadamia n 1 3 @ #m %m 1 0 12220994 -genus_machaeranthera n 1 3 @ #m %m 1 0 11993007 -genus_macleaya n 1 3 @ #m %m 1 0 11906359 -genus_maclura n 1 2 @ #m 1 0 12399784 -genus_macowanites n 1 3 @ #m %m 1 0 13048212 -genus_macrocephalon n 1 3 @ #m %m 1 0 01802033 -genus_macrocheira n 1 3 @ #m %m 1 0 01982211 -genus_macroclemys n 1 3 @ #m %m 1 0 01666431 -genus_macrodactylus n 1 3 @ #m %m 1 0 02174870 -genus_macronectes n 1 3 @ #m %m 1 0 02059723 -genus_macropus n 1 3 @ #m %m 1 0 01877407 -genus_macrothelypteris n 1 2 @ #m 1 0 13229018 -genus_macrotis n 1 3 @ #m %m 1 0 01876535 -genus_macrotus n 1 3 @ #m %m 1 0 02142295 -genus_macrotyloma n 1 3 @ #m %m 1 0 12547658 -genus_macrozamia n 1 3 @ #m %m 1 0 11603630 -genus_macrozoarces n 1 3 @ #m %m 1 0 02617956 -genus_madia n 1 3 @ #m %m 1 0 11993932 -genus_madoqua n 1 3 @ #m %m 1 0 02421612 -genus_maeandra n 1 3 @ #m %m 1 0 01917167 -genus_magicicada n 1 3 @ #m %m 1 0 02257149 -genus_magnolia n 1 3 @ #m %m 1 0 11709450 -genus_mahonia n 1 2 @ #m 1 0 11699283 -genus_maia n 1 3 @ #m %m 1 0 01981884 -genus_maianthemum n 1 3 @ #m %m 1 0 12473405 -genus_maja n 1 3 @ #m %m 1 0 01981884 -genus_majorana n 1 2 @ #m 1 0 12852930 -genus_makaira n 1 3 @ #m %m 1 0 02630926 -genus_malaclemys n 1 3 @ #m %m 1 0 01667959 -genus_malacosoma n 1 3 @ #m %m 1 0 02307007 -genus_malacothamnus n 1 3 @ #m %m 1 0 12182858 -genus_malaxis n 1 3 @ #m %m 1 0 12071965 -genus_malcolmia n 1 3 @ #m %m 1 0 11891838 -genus_mallotus n 1 3 @ #m %m 1 0 02541139 -genus_malope n 1 3 @ #m %m 1 0 12183318 -genus_malopterurus n 1 3 @ #m %m 1 0 02518488 -genus_malosma n 1 3 @ #m %m 1 0 12760722 -genus_malpighia n 1 3 @ #m %m 1 0 12694193 -genus_malus n 1 3 @ #m %m 1 0 12633386 -genus_malva n 1 3 @ #m %m 1 0 12170415 -genus_malvastrum n 1 2 @ #m 1 0 12183636 -genus_malvaviscus n 1 3 @ #m %m 1 0 12183916 -genus_mammea n 1 3 @ #m %m 1 0 12370011 -genus_mammillaria n 1 3 @ #m %m 1 0 11849666 -genus_mammut n 1 3 @ #m %m 1 0 02505809 -genus_mammuthus n 1 3 @ #m %m 1 0 02504635 -genus_mandevilla n 1 3 @ #m %m 1 0 11773138 -genus_mandragora n 1 3 @ #m %m 1 0 12906334 -genus_mandrillus n 1 3 @ #m %m 1 0 02486787 -genus_manduca n 1 3 @ #m %m 1 0 02298833 -genus_mangifera n 1 3 @ #m %m 1 0 12761123 -genus_manglietia n 1 2 @ #m 1 0 11711971 -genus_manihot n 1 3 @ #m %m 1 0 12926316 -genus_manilkara n 1 3 @ #m %p 1 0 12774127 -genus_manis n 1 3 @ #m %m 1 0 02461701 -genus_manta n 1 3 @ #m %m 1 0 01500360 -genus_mantis n 1 3 @ #m %m 1 0 02235911 -genus_maranta n 1 3 @ #m %m 1 0 12351477 -genus_marasmius n 1 3 @ #m %m 1 0 13006741 -genus_marattia n 1 3 @ #m %m 1 0 13215063 -genus_marchantia n 1 3 @ #m %m 1 0 11543792 -genus_marmota n 1 3 @ #m %m 1 0 02361222 -genus_marrubium n 1 3 @ #m %m 1 0 12853901 -genus_marsilea n 1 3 @ #m %m 1 0 12957467 -genus_martes n 1 3 @ #m %m 1 0 02449921 -genus_martynia n 1 3 @ #m %m 1 0 12873834 -genus_masdevallia n 1 3 @ #m %m 1 0 12072419 -genus_masticophis n 1 3 @ #m %m 1 0 01731418 -genus_mastigoproctus n 1 3 @ #m %m 1 0 01771624 -genus_mastodon n 1 3 @ #m %m 1 0 02505809 -genus_mastotermes n 1 3 @ #m %m 1 0 02224466 -genus_matricaria n 1 3 @ #m %m 1 0 11994827 -genus_matteuccia n 1 3 @ #m %m 1 0 13197800 -genus_matthiola n 1 3 @ #m %m 1 0 11892460 -genus_maxillaria n 1 3 @ #m %m 1 0 12073007 -genus_maxostoma n 1 3 @ #m %m 1 0 01445998 -genus_mayaca n 1 2 @ #m 1 0 12608620 -genus_mayetiola n 1 3 @ #m %m 1 0 02189535 -genus_mazama n 1 3 @ #m %m 1 0 02434598 -genus_meconopsis n 1 3 @ #m %m 1 0 11906713 -genus_medicago n 1 2 @ %m 1 0 12548134 -genus_medinilla n 1 3 @ #m %m 1 0 12349491 -genus_megachile n 1 3 @ #m %m 1 0 02211283 -genus_megaderma n 1 3 @ #m %m 1 0 02144792 -genus_megalobatrachus n 1 3 @ #m %m 1 0 01633578 -genus_megalosaurus n 1 3 @ #m %m 1 0 01715383 -genus_megaptera n 1 3 @ #m %m 1 0 02065599 -genus_megatherium n 1 3 @ #m %m 1 0 02458675 -genus_melampodium n 1 3 @ #m %m 1 0 11995683 -genus_melampsora n 1 3 @ #m %m 1 0 13063936 -genus_melanerpes n 1 3 @ #m %m 1 0 01840643 -genus_melanitta n 1 3 @ #m %m 1 0 01853379 -genus_melanogrammus n 1 3 @ #m %m 1 0 02523750 -genus_melanoplus n 1 3 @ #m %m 1 0 02227430 -genus_melanotis n 1 3 @ #m %m 1 0 01587148 -genus_melastoma n 1 2 @ #m 1 0 12349091 -genus_meleagris n 1 3 @ #m %m 1 0 01793988 -genus_meles n 1 3 @ #m %m 1 0 02447896 -genus_melia n 1 3 @ #m %m 1 0 12695760 -genus_melicocca n 1 3 @ #m %m 1 0 12744656 -genus_melicoccus n 1 3 @ #m %m 1 0 12744656 -genus_melicytus n 1 2 @ #m 1 0 12391280 -genus_melilotus n 1 3 @ #m %m 1 0 11750855 -genus_melissa n 1 3 @ #m %m 1 0 12854443 -genus_mellivora n 1 3 @ #m %m 1 0 02448200 -genus_melocactus n 1 2 @ #m 1 0 11850136 -genus_melogale n 1 3 @ #m %m 1 0 02448502 -genus_melolontha n 1 3 @ #m %m 1 0 02174521 -genus_melophagus n 1 3 @ #m %m 1 0 02198996 -genus_melopsittacus n 1 3 @ #m %m 1 0 01821727 -genus_melospiza n 1 3 @ #m %m 1 0 01536474 -genus_melursus n 1 3 @ #m %m 1 0 02134240 -genus_menippe n 1 3 @ #m %m 1 0 01977366 -genus_meniscium n 1 2 @ #m 1 0 13229227 -genus_menispermum n 1 3 @ #m %m 1 0 11713034 -genus_menopon n 1 3 @ #m %m 1 0 02185694 -genus_mentha n 1 3 @ #m %m 1 0 12854925 -genus_menticirrhus n 1 3 @ #m %m 1 0 02597173 -genus_mentzelia n 1 3 @ #m %m 1 0 12035423 -genus_menura n 1 3 @ #m %m 1 0 01545425 -genus_menyanthes n 1 3 @ #m %m 1 0 12484612 -genus_menziesia n 1 3 @ #m %m 1 0 12241699 -genus_mephitis n 1 3 @ #m %m 1 0 02446014 -genus_mercenaria n 1 2 @ #m 1 0 01957923 -genus_mercurialis n 1 3 @ #m %m 1 0 12923839 -genus_mergus n 1 3 @ #m %m 1 0 01854223 -genus_meriones n 1 3 @ #m %m 1 0 02344006 -genus_merlangus n 1 3 @ #m %m 1 0 02522990 -genus_merluccius n 1 2 @ #m 1 0 02524424 -genus_merops n 1 2 @ #m 1 0 01828856 -genus_mertensia n 1 3 @ #m %m 1 0 12821257 -genus_meryta n 1 3 @ #m %m 1 0 11799158 -genus_mesembryanthemum n 1 3 @ #m %m 1 0 11820751 -genus_mesocricetus n 1 3 @ #m %m 1 0 02343187 -genus_mesohippus n 1 3 @ #m %m 1 0 02376016 -genus_mespilus n 1 3 @ #m %m 1 0 12636107 -genus_mesua n 1 3 @ #m %m 1 0 12370384 -genus_metasequoia n 1 3 @ #m %m 1 0 11639863 -genus_metroxylon n 1 2 @ #m 1 0 12591523 -genus_microcentrum n 1 3 @ #m %m 1 0 02228215 -genus_micrococcus n 1 2 @ #m 1 0 01379116 -genus_microdipodops n 1 3 @ #m %m 1 0 02350537 -genus_microgramma n 1 3 @ #m %m 1 0 13176201 -genus_micromeria n 1 3 @ #m %m 1 0 12857024 -genus_micromyx n 1 3 @ #m %m 1 0 02332315 -genus_micropogonias n 1 3 @ #m %m 1 0 02596592 -genus_micropterus n 1 3 @ #m %m 1 0 02564572 -genus_microsorium n 1 3 @ #m %m 1 0 13176523 -genus_microsporum n 1 2 @ #m 1 0 13078652 -genus_microstomus n 1 3 @ #m %m 1 0 02659667 -genus_microstrobos n 1 3 @ #m %m 1 0 11656974 -genus_microtus n 1 3 @ #m %m 1 0 02341108 -genus_micruroides n 1 3 @ #m %m 1 0 01746063 -genus_micrurus n 1 3 @ #m %m 1 0 01745780 -genus_mikania n 1 3 @ #m %m 1 0 11996092 -genus_millettia n 1 3 @ #m %m 1 0 12549649 -genus_miltonia n 1 3 @ #m %m 1 0 12073410 -genus_mimosa n 1 3 @ #m %m 1 0 11754633 -genus_mimus n 1 3 @ #m %m 1 0 01586791 -genus_minuartia n 1 2 @ #m 1 0 11812358 -genus_mirabilis n 1 3 @ #m %m 1 0 11839297 -genus_mirounga n 1 3 @ #m %m 1 0 02080291 -genus_mitchella n 1 3 @ #m %m 1 0 12668364 -genus_mitella n 1 3 @ #m %m 1 0 12800327 -genus_mnium n 1 2 @ #m 1 0 11541579 -genus_mobula n 1 3 @ #m %m 1 0 01500721 -genus_moehringia n 1 3 @ #m %m 1 0 11812573 -genus_mohria n 1 3 @ #m %m 1 0 12956791 -genus_mola n 1 3 @ #m %m 1 0 02656550 -genus_mollienesia n 1 3 @ #m %m 1 0 01449857 -genus_molluga n 1 3 @ #m %m 1 0 11821415 -genus_moloch n 1 3 @ #m %m 1 0 01688812 -genus_molothrus n 1 3 @ #m %m 1 0 01574997 -genus_molucella n 1 3 @ #m %m 1 0 12857594 -genus_molva n 1 3 @ #m %m 1 0 02525012 -genus_momordica n 1 3 @ #m %m 1 0 12167282 -genus_momotus n 1 2 @ #m 1 0 01830799 -genus_monarda n 1 3 @ #m %m 1 0 12858019 -genus_monardella n 1 3 @ #m %m 1 0 12859488 -genus_moneses n 1 3 @ #m %m 1 0 12257920 -genus_monilia n 1 3 @ #m %m 1 0 13078809 -genus_monocanthus n 1 3 @ #m %m 1 0 02653965 -genus_monochamus n 1 3 @ #m %m 1 0 02168876 -genus_monodon n 1 3 @ #m %m 1 0 02072355 -genus_monomorium n 1 3 @ #m %m 1 0 02219901 -genus_mononychus n 1 3 @ #m %m 1 0 01718632 -genus_monotropa n 1 3 @ #m %m 1 0 12258663 -genus_monstera n 1 3 @ #m %m 1 0 11789280 -genus_montezuma n 1 3 @ #m %m 1 0 12191075 -genus_montia n 1 3 @ #m %m 1 0 11860801 -genus_morchella n 1 3 @ #m %m 1 0 13031956 -genus_morone n 1 3 @ #m %m 1 0 02566325 -genus_morus n 1 3 @ #m %m 1 0 12398990 -genus_moschus n 1 3 @ #m %m 1 0 02435099 -genus_motacilla n 1 3 @ #m %m 1 0 01528244 -genus_mucor n 1 3 @ #m %m 1 0 12973202 -genus_mucuna n 1 3 @ #m %m 1 0 12549976 -genus_mugil n 1 3 @ #m %m 1 0 02601589 -genus_muhlenbergia n 1 3 @ #m %m 1 0 12125398 -genus_mulloidichthys n 1 3 @ #m %m 1 0 02600657 -genus_mullus n 1 3 @ #m %m 1 0 02600135 -genus_muntiacus n 1 3 @ #m %m 1 0 02434834 -genus_muntingia n 1 3 @ #m %m 1 0 12193964 -genus_mus n 1 3 @ #m %m 1 0 02331960 -genus_musa n 1 3 @ #m %m 1 0 12352150 -genus_musca n 1 3 @ #m %m 1 0 02190648 -genus_muscardinus n 1 3 @ #m %m 1 0 02353037 -genus_muscari n 1 3 @ #m %m 1 0 12460549 -genus_muscicapa n 1 3 @ #m %m 1 0 01556040 -genus_muscivora n 1 3 @ #m %m 1 0 01555172 -genus_musophaga n 1 2 @ #m 1 0 01825155 -genus_mustela n 1 3 @ #m %m 1 0 02441723 -genus_mustelus n 1 3 @ #m %m 1 0 01492212 -genus_mutinus n 1 2 @ #m 1 0 13041172 -genus_mutisia n 1 3 @ #m %m 1 0 11996490 -genus_mya n 1 3 @ #m %m 1 0 01957202 -genus_myadestes n 1 3 @ #m %m 1 0 01561059 -genus_mycobacterium n 1 3 @ #m %m 1 0 01376948 -genus_mycoplasma n 1 3 @ #m %m 1 0 01373675 -genus_mycteria n 1 3 @ #m %m 1 0 02004661 -genus_mycteroperca n 1 3 @ #m %m 1 0 02570038 -genus_mylodon n 1 3 @ #m %m 1 0 02459313 -genus_myocastor n 1 3 @ #m %m 1 0 02366825 -genus_myopus n 1 3 @ #m %m 1 0 02345213 -genus_myosotis n 1 3 @ #m %m 1 0 12821736 -genus_myotis n 1 3 @ #m %m 1 0 02146526 -genus_myrciaria n 1 3 @ #m %m 1 0 12332866 -genus_myrica n 1 3 @ #m %m 1 0 11741010 -genus_myricaria n 1 3 @ #m %m 1 0 12386724 -genus_myriophyllum n 1 3 @ #m %m 1 0 12326842 -genus_myristica n 1 3 @ #m %m 1 0 11714150 -genus_myrmecia n 1 3 @ #m %m 1 0 02222199 -genus_myrmecobius n 1 3 @ #m %m 1 0 01885367 -genus_myrmecophaga n 1 3 @ #m %m 1 0 02460275 -genus_myrmeleon n 1 3 @ #m %m 1 0 02263848 -genus_myroxylon n 1 3 @ #m %m 1 0 12550968 -genus_myrrhis n 1 3 @ #m %m 1 0 12940427 -genus_myrsine n 1 2 @ #m 1 0 12097013 -genus_myrtillocactus n 1 3 @ #m %m 1 0 11850337 -genus_myrtus n 1 3 @ #m %m 1 0 12330336 -genus_mysis n 1 3 @ #m %m 1 0 01989254 -genus_mytilus n 1 3 @ #m %m 1 0 01963876 -genus_myxine n 1 3 @ #m %m 1 0 01478816 -genus_myxinikela n 1 3 @ #m %m 1 0 01479329 -genus_myxocephalus n 1 3 @ #m %m 1 0 02646117 -genus_nabalus n 1 3 @ #m %m 1 0 11996792 -genus_naemorhedus n 1 3 @ #m %m 1 0 02418648 -genus_nageia n 1 3 @ #m %m 1 0 11657314 -genus_naias n 1 3 @ #m %m 1 0 12611479 -genus_naja n 1 3 @ #m %m 1 0 01747739 -genus_najas n 1 3 @ #m %m 1 0 12611479 -genus_nanomia n 1 3 @ #m %m 1 0 01912688 -genus_napaea n 1 3 @ #m %m 1 0 12184337 -genus_narcissus n 1 3 @ #m %m 1 0 12421334 -genus_narthecium n 1 3 @ #m %m 1 0 12463574 -genus_nasalis n 1 2 @ #m 1 0 02489060 -genus_nasturtium n 1 3 @ #m %m 1 0 11893004 -genus_nasua n 1 3 @ #m %m 1 0 02509405 -genus_natrix n 1 3 @ #m %m 1 0 01737197 -genus_nauclea n 1 3 @ #m %m 1 0 12668732 -genus_naucrates n 1 3 @ #m %m 1 0 02580055 -genus_nautilus n 1 3 @ #m %m 1 0 01968732 -genus_necturus n 1 3 @ #m %m 1 0 01634392 -genus_negaprion n 1 3 @ #m %m 1 0 01490546 -genus_nelumbo n 1 3 @ #m %m 1 0 11717239 -genus_nemophila n 1 3 @ #m %m 1 0 12836033 -genus_neoceratodus n 1 2 @ #m 1 0 02516867 -genus_neofiber n 1 3 @ #m %m 1 0 02338319 -genus_neohygrophorus n 1 3 @ #m %m 1 0 13073526 -genus_neolentinus n 1 2 @ #m 1 0 13051196 -genus_neomys n 1 3 @ #m %m 1 0 01892876 -genus_neophron n 1 3 @ #m %m 1 0 01617633 -genus_neotoma n 1 3 @ #m %m 1 0 02339768 -genus_nepa n 1 2 @ #m 1 0 02242669 -genus_nepenthes n 1 3 @ #m %m 1 0 12781814 -genus_nepeta n 1 3 @ #m %m 1 0 12859873 -genus_nephelium n 1 3 @ #m %m 1 0 12745160 -genus_nephrolepis n 1 3 @ #m %m 1 0 13204646 -genus_nephrops n 1 2 @ #m 1 0 01984131 -genus_nephthytis n 1 3 @ #m %m 1 0 11789796 -genus_nerita n 1 3 @ #m %m 1 0 01946487 -genus_neritina n 1 3 @ #m %m 1 0 01947020 -genus_nerium n 1 3 @ #m %m 1 0 11773860 -genus_nerodia n 1 2 @ #m 1 0 01737356 -genus_nesokia n 1 3 @ #m %m 1 0 02334079 -genus_nestor n 1 3 @ #m %m 1 0 01818704 -genus_neurospora n 1 2 @ #m 1 0 12964321 -genus_neurotrichus n 1 3 @ #m %m 1 0 01891145 -genus_nicandra n 1 3 @ #m %m 1 0 12906926 -genus_nicotiana n 1 3 @ #m %m 1 0 12907287 -genus_nidularia n 1 2 @ #m 1 0 13046887 -genus_nierembergia n 1 3 @ #m %m 1 0 12908432 -genus_nigella n 1 3 @ #m %m 1 0 11736569 -genus_nigroporus n 1 2 @ #m 1 0 13051546 -genus_nimravus n 1 3 @ #m %m 1 0 02131076 -genus_nipa n 1 3 @ #m %m 1 0 12591897 -genus_nitella n 1 2 @ #m 1 0 01413071 -genus_nitrobacter n 1 3 @ #m %m 1 0 01362196 -genus_nitrosomonas n 1 3 @ #m %m 1 0 01362480 -genus_noctiluca n 1 3 @ #m %m 1 0 01417553 -genus_noctua n 1 2 @ #m 1 0 02295570 -genus_nolina n 1 3 @ #m %m 1 0 12479821 -genus_nomia n 1 3 @ #m %m 1 0 02210567 -genus_nopalea n 1 3 @ #m %m 1 0 11851101 -genus_nostoc n 1 3 @ #m %m 1 0 01359203 -genus_notechis n 1 3 @ #m %m 1 0 01750315 -genus_notemigonus n 1 2 @ #m 1 0 01442055 -genus_nothofagus n 1 3 @ #m %m 1 0 12265900 -genus_nothosaurus n 1 3 @ #m %m 1 0 01726079 -genus_notomys n 1 3 @ #m %m 1 0 02334609 -genus_notonecta n 1 3 @ #m %m 1 0 02240852 -genus_notophthalmus n 1 2 @ #m 1 0 01630795 -genus_notornis n 1 3 @ #m %m 1 0 02017607 -genus_notoryctus n 1 3 @ #m %m 1 0 01885856 -genus_notropis n 1 3 @ #m %m 1 0 01441625 -genus_nucifraga n 1 3 @ #m %m 1 0 01581607 -genus_numenius n 1 3 @ #m %m 1 0 02033444 -genus_numida n 1 3 @ #m %m 1 0 01808989 -genus_nuphar n 1 3 @ #m %m 1 0 11716285 -genus_nuytsia n 1 3 @ #m %m 1 0 12738480 -genus_nyctaginia n 1 3 @ #m %m 1 0 11836137 -genus_nyctanassa n 1 3 @ #m %m 1 0 02010881 -genus_nyctereutes n 1 3 @ #m %m 1 0 02116322 -genus_nycticebus n 1 3 @ #m %m 1 0 02498888 -genus_nycticorax n 1 3 @ #m %m 1 0 02010592 -genus_nyctimene n 1 3 @ #m %m 1 0 02140357 -genus_nymphaea n 1 3 @ #m %m 1 0 11715207 -genus_nymphalis n 1 3 @ #m %m 1 0 02275372 -genus_nymphicus n 1 3 @ #m %m 1 0 01819600 -genus_nypa n 1 3 @ #m %m 1 0 12591897 -genus_nyssa n 1 3 @ #m %m 1 0 12340202 -genus_oceanites n 1 3 @ #m %m 1 0 02061425 -genus_ochna n 1 3 @ #m %m 1 0 12382699 -genus_ochotona n 1 3 @ #m %m 1 0 02328662 -genus_ochroma n 1 3 @ #m %m 1 0 12191461 -genus_ocimum n 1 3 @ #m %m 1 0 12860254 -genus_octopus n 1 3 @ #m %m 1 0 01970030 -genus_ocyurus n 1 3 @ #m %m 1 0 02587761 -genus_odobenus n 1 3 @ #m %m 1 0 02081423 -genus_odocoileus n 1 3 @ #m %m 1 0 02432139 -genus_odontaspis n 1 3 @ #m %m 1 0 01487312 -genus_odontoglossum n 1 3 @ #m %m 1 0 12073744 -genus_odontophorus n 1 2 @ #m 1 0 01805446 -genus_oecanthus n 1 3 @ #m %m 1 0 02230355 -genus_oedogonium n 1 2 @ #m 1 0 01411871 -genus_oenanthe n 2 3 @ #m %m 2 0 12940778 01561613 -genus_oenothera n 1 2 @ #m 1 0 12344131 -genus_oestrus n 1 3 @ #m %m 1 0 02194599 -genus_okapia n 1 3 @ #m %m 1 0 02439286 -genus_olea n 1 3 @ #m %m 1 0 12300625 -genus_oleandra n 1 3 @ #m %m 1 0 13204102 -genus_olearia n 1 3 @ #m %m 1 0 11997775 -genus_olfersia n 1 2 @ #m 1 0 13198354 -genus_oligoplites n 1 3 @ #m %m 1 0 02577532 -genus_oligoporus n 1 2 @ #m 1 0 13051866 -genus_ommastrephes n 1 3 @ #m %m 1 0 01971728 -genus_omphalotus n 1 3 @ #m %m 1 0 13005166 -genus_oncidium n 1 3 @ #m %m 1 0 12074205 -genus_oncorhynchus n 1 3 @ #m %m 1 0 02535909 -genus_ondatra n 1 3 @ #m %m 1 0 02338029 -genus_oniscus n 1 3 @ #m %m 1 0 01991808 -genus_onobrychis n 1 3 @ #m %m 1 0 12552081 -genus_onoclea n 1 3 @ #m %m 1 0 13198728 -genus_ononis n 1 3 @ #m %m 1 0 12552658 -genus_onopordon n 1 3 @ #m %m 1 0 11998648 -genus_onopordum n 1 3 @ #m %m 1 0 11998648 -genus_onosmodium n 1 3 @ #m %m 1 0 12822284 -genus_onychium n 1 2 @ #m 1 0 13211305 -genus_onychogalea n 1 3 @ #m %m 1 0 01878500 -genus_onychomys n 1 3 @ #m %m 1 0 02337774 -genus_opheodrys n 1 3 @ #m %m 1 0 01729838 -genus_ophiodon n 1 3 @ #m %m 1 0 02552894 -genus_ophioglossum n 1 3 @ #m %m 1 0 12960211 -genus_ophiophagus n 1 3 @ #m %m 1 0 01748560 -genus_ophisaurus n 1 3 @ #m %m 1 0 01690339 -genus_ophrys n 1 3 @ #m %m 1 0 12074678 -genus_opisthocomus n 1 3 @ #m %m 1 0 01809592 -genus_opuntia n 1 3 @ #m %m 1 0 11851395 -genus_orbignya n 1 3 @ #m %m 1 0 12592351 -genus_orchestia n 1 3 @ #m %m 1 0 01993065 -genus_orchis n 1 3 @ #m %m 1 0 12043248 -genus_orcinus n 1 3 @ #m %m 1 0 02071173 -genus_oreamnos n 1 3 @ #m %m 1 0 02418341 -genus_orectolobus n 1 3 @ #m %m 1 0 01486411 -genus_oreopteris n 1 3 @ #m %m 1 0 13229358 -genus_oreortyx n 1 3 @ #m %m 1 0 01808447 -genus_origanum n 1 3 @ #m %m 1 0 12852726 -genus_oriolus n 1 3 @ #m %m 1 0 01575941 -genus_orites n 1 3 @ #m %m 1 0 12221943 -genus_ormosia n 1 3 @ #m %m 1 0 12553314 -genus_ornithogalum n 1 3 @ #m %m 1 0 12459471 -genus_ornithorhynchus n 1 3 @ #m %m 1 0 01873144 -genus_orontium n 1 3 @ #m %m 1 0 11790239 -genus_ortalis n 1 3 @ #m %m 1 0 01800286 -genus_orthilia n 1 2 @ #m 1 0 12257140 -genus_orthopristis n 1 3 @ #m %m 1 0 02589955 -genus_orthotomus n 1 3 @ #m %m 1 0 01566082 -genus_orycteropus n 1 3 @ #m %m 1 0 02082632 -genus_oryctolagus n 1 3 @ #m %m 1 0 02324717 -genus_oryx n 1 3 @ #m %m 1 0 02428229 -genus_oryza n 1 3 @ #m %m 1 0 12125782 -genus_oryzomys n 1 3 @ #m %m 1 0 02340521 -genus_oryzopsis n 1 3 @ #m %m 1 0 12126238 -genus_osmanthus n 1 3 @ #m %m 1 0 12309403 -genus_osmerus n 1 3 @ #m %m 1 0 02540637 -genus_osmunda n 1 3 @ #m %m 1 0 12953079 -genus_ostrea n 1 3 @ #m %m 1 0 01960900 -genus_ostrya n 1 3 @ #m %m 1 0 12287388 -genus_ostryopsis n 1 2 @ #m 1 0 12288188 -genus_otaria n 1 3 @ #m %m 1 0 02078159 -genus_othonna n 1 3 @ #m %m 1 0 11999140 -genus_otis n 1 3 @ #m %m 1 0 02019044 -genus_otus n 1 3 @ #m %m 1 0 01623284 -genus_ouranopithecus n 1 2 @ #m 1 0 02478416 -genus_ovalipes n 1 3 @ #m %m 1 0 01979395 -genus_ovibos n 1 3 @ #m %m 1 0 02411075 -genus_ovis n 1 3 @ #m %m 1 0 02411427 -genus_oxalis n 1 3 @ #m %m 1 0 12702706 -genus_oxandra n 1 2 @ #m 1 0 11696338 -genus_oxybelis n 1 3 @ #m %m 1 0 01739260 -genus_oxydendrum n 1 3 @ #m %m 1 0 12242287 -genus_oxylebius n 1 3 @ #m %m 1 0 02649082 -genus_oxytropis n 1 3 @ #m %m 1 0 12554242 -genus_oxyura n 1 3 @ #m %m 1 0 01849747 -genus_oxyuranus n 1 3 @ #m %m 1 0 01751353 -genus_ozonium n 1 2 @ #m 1 0 13082711 -genus_ozothamnus n 1 3 @ #m %m 1 0 11999455 -genus_pachycephala n 1 3 @ #m %m 1 0 01556368 -genus_pachyrhizus n 1 3 @ #m %m 1 0 12555069 -genus_pachysandra n 1 3 @ #m %m 1 0 12746733 -genus_packera n 1 3 @ #m %m 1 0 11999958 -genus_padda n 1 3 @ #m %m 1 0 01543508 -genus_paeonia n 1 3 @ #m %m 1 0 11719120 -genus_pagellus n 1 3 @ #m %m 1 0 02591493 -genus_pagophila n 1 3 @ #m %m 1 0 02042342 -genus_pagophilus n 1 3 @ #m %m 1 0 02080022 -genus_pagrus n 1 3 @ #m %m 1 0 02591205 -genus_pagurus n 1 3 @ #m %m 1 0 01986072 -genus_palaemon n 1 3 @ #m %m 1 0 01987353 -genus_palaquium n 1 3 @ #m %m 1 0 12774891 -genus_paleacrita n 1 3 @ #m %m 1 0 02287204 -genus_palinurus n 1 3 @ #m %m 1 0 01984547 -genus_paliurus n 1 3 @ #m %m 1 0 13143626 -genus_palometa n 1 3 @ #m %m 1 0 02633555 -genus_pan n 1 3 @ #m %m 1 0 02481629 -genus_panax n 1 3 @ #m %m 1 0 11799520 -genus_pandanus n 1 3 @ #m %m 1 0 12154628 -genus_pandion n 1 3 @ #m %m 1 0 01615949 -genus_panicum n 1 3 @ #m %m 1 0 12126911 -genus_panonychus n 1 3 @ #m %m 1 0 01782378 -genus_panthera n 1 3 @ #m %m 1 0 02128120 -genus_papaver n 1 3 @ #m %m 1 0 11900986 -genus_paphiopedilum n 1 3 @ #m %m 1 0 12075495 -genus_papio n 1 2 @ #m 1 0 02486565 -genus_paprilus n 1 3 @ #m %m 1 0 02633844 -genus_paracheirodon n 1 3 @ #m %m 1 0 02584004 -genus_paradoxurus n 1 3 @ #m %m 1 0 02138042 -genus_paralichthys n 1 3 @ #m %m 1 0 02661317 -genus_paralithodes n 1 3 @ #m %m 1 0 01981137 -genus_paramecium n 1 3 @ #m %m 1 0 01395885 -genus_paranthias n 1 3 @ #m %m 1 0 02569770 -genus_paranthropus n 1 1 @ 1 0 02477516 -genus_parascalops n 1 2 @ #m 1 0 01890033 -genus_parasitaxus n 1 3 @ #m %m 1 0 11657763 -genus_parathelypteris n 1 3 @ #m %m 1 0 13229747 -genus_parietaria n 1 3 @ #m %m 1 0 12394494 -genus_paris n 1 3 @ #m %m 1 0 12469372 -genus_parkia n 1 3 @ #m %m 1 0 11763473 -genus_parkinsonia n 1 3 @ #m %m 1 0 12497492 -genus_parmelia n 1 3 @ #m %m 1 0 12991645 -genus_parnassia n 1 3 @ #m %m 1 0 12801323 -genus_parochetus n 1 3 @ #m %m 1 0 12555720 -genus_paronychia n 1 3 @ #m %m 1 0 11813309 -genus_parophrys n 1 3 @ #m %m 1 0 02664511 -genus_parrotia n 1 3 @ #m %m 1 0 12317164 -genus_parrotiopsis n 1 2 @ #m 1 0 12317611 -genus_parthenium n 1 3 @ #m %m 1 0 12000609 -genus_parthenocissus n 1 3 @ #m %m 1 0 13148019 -genus_parula n 1 3 @ #m %m 1 0 01567530 -genus_parus n 1 3 @ #m %m 1 0 01591910 -genus_paspalum n 1 3 @ #m %m 1 0 12127890 -genus_passer n 1 3 @ #m %m 1 0 01539772 -genus_passerina n 1 3 @ #m %m 1 0 01537360 -genus_passiflora n 1 3 @ #m %m 1 0 12383256 -genus_pastinaca n 1 2 @ %m 1 0 12941360 -genus_patella n 1 3 @ #m %m 1 0 01948917 -genus_pavo n 1 3 @ #m %m 1 0 01805692 -genus_pavonia n 1 3 @ #m %m 1 0 12184724 -genus_payena n 1 3 @ #m %m 1 0 12775225 -genus_pecari n 1 3 @ #m %m 1 0 02397377 -genus_pecopteris n 1 3 @ #m %m 1 0 11545214 -genus_pecten n 1 3 @ #m %m 1 0 01966204 -genus_pediculus n 1 3 @ #m %m 1 0 02184270 -genus_pedilanthus n 1 3 @ #m %m 1 0 12927921 -genus_pediocactus n 1 3 @ #m %m 1 0 11850748 -genus_pedioecetes n 1 2 @ #m 1 0 01798052 -genus_pedionomus n 1 3 @ #m %m 1 0 02020450 -genus_peireskia n 1 3 @ #m %m 1 0 11852255 -genus_pelargonium n 1 3 @ #m %m 1 0 12687211 -genus_pelecanus n 1 3 @ #m %m 1 0 02052044 -genus_pellaea n 1 3 @ #m %m 1 0 13211516 -genus_pellicularia n 1 3 @ #m %m 1 0 13015826 -genus_peltandra n 1 3 @ #m %m 1 0 11790624 -genus_peltiphyllum n 1 3 @ #m %m 1 0 12797213 -genus_penelope n 1 2 @ #m 1 0 01799876 -genus_peneus n 1 3 @ #m %m 1 0 01988064 -genus_penicillium n 1 2 @ #m 1 0 13079953 -genus_pennatula n 1 3 @ #m %m 1 0 01915541 -genus_pennisetum n 1 3 @ #m %m 1 0 12128645 -genus_penstemon n 1 3 @ #m %m 1 0 12884523 -genus_peperomia n 1 3 @ #m %m 1 0 13150741 -genus_perca n 1 3 @ #m %m 1 0 02557033 -genus_percina n 1 3 @ #m %m 1 0 02558079 -genus_perdix n 1 3 @ #m %m 1 0 01807701 -genus_pereskia n 1 3 @ #m %m 1 0 11852255 -genus_pericallis n 1 3 @ #m %m 1 0 12001565 -genus_peridinium n 1 2 @ #m 1 0 01417982 -genus_perilla n 1 3 @ #m %m 1 0 12860842 -genus_periophthalmus n 1 3 @ #m %m 1 0 02619409 -genus_peripatopsis n 1 2 @ #m 1 0 02000764 -genus_peripatus n 1 2 @ #m 1 0 02000195 -genus_periplaneta n 1 3 @ #m %m 1 0 02234181 -genus_periploca n 1 3 @ #m %m 1 0 13237343 -genus_perisoreus n 1 3 @ #m %m 1 0 01581041 -genus_peristedion n 1 3 @ #m %m 1 0 02651412 -genus_pernis n 1 3 @ #m %m 1 0 01608086 -genus_perodicticus n 1 3 @ #m %m 1 0 02499178 -genus_perognathus n 1 3 @ #m %m 1 0 02349040 -genus_peromyscus n 1 3 @ #m %m 1 0 02336451 -genus_peronospora n 1 3 @ #m %m 1 0 12980652 -genus_persea n 1 3 @ #m %m 1 0 11706629 -genus_persoonia n 1 3 @ #m %m 1 0 12222334 -genus_pertusaria n 1 2 @ #m 1 0 12989301 -genus_petasites n 1 3 @ #m %m 1 0 12002197 -genus_petaurista n 1 3 @ #m %m 1 0 02362420 -genus_petaurus n 1 3 @ #m %m 1 0 01881991 -genus_petrocoptis n 1 2 @ #m 1 0 11813830 -genus_petrogale n 1 3 @ #m %m 1 0 01878803 -genus_petromyzon n 1 3 @ #m %m 1 0 01477745 -genus_petroselinum n 1 3 @ #m %m 1 0 12942270 -genus_petteria n 1 3 @ #m %m 1 0 12498316 -genus_petunia n 1 3 @ #m %m 1 0 12909252 -genus_peziza n 1 3 @ #m %m 1 0 13030438 -genus_pezophaps n 1 3 @ #m %m 1 0 01811394 -genus_phacelia n 1 3 @ #m %m 1 0 12836663 -genus_phacochoerus n 1 3 @ #m %m 1 0 02396970 -genus_phaethon n 1 3 @ #m %m 1 0 02054966 -genus_phaius n 1 3 @ #m %m 1 0 12076075 -genus_phalacrocorax n 1 3 @ #m %m 1 0 02053859 -genus_phalaenopsis n 1 3 @ #m %m 1 0 12076381 -genus_phalaenoptilus n 1 3 @ #m %m 1 0 01836527 -genus_phalanger n 1 3 @ #m %m 1 0 01881416 -genus_phalangium n 1 3 @ #m %m 1 0 01769930 -genus_phalaris n 1 3 @ #m %m 1 0 12129525 -genus_phalaropus n 1 3 @ #m %m 1 0 02037713 -genus_phallus n 1 3 @ #m %m 1 0 13040108 -genus_pharomacrus n 1 3 @ #m %m 1 0 01844414 -genus_phascogale n 1 3 @ #m %m 1 0 01885032 -genus_phascolarctos n 1 2 @ #m 1 0 01882607 -genus_phaseolus n 1 3 @ #m %m 1 0 12556030 -genus_phasianus n 1 3 @ #m %m 1 0 01802895 -genus_phegopteris n 1 3 @ #m %m 1 0 13230421 -genus_phellodendron n 1 3 @ #m %m 1 0 12713664 -genus_phenacomys n 1 3 @ #m %m 1 0 02342413 -genus_philadelphus n 1 3 @ #m %m 1 0 12790835 -genus_philaenus n 1 3 @ #m %m 1 0 02258065 -genus_phillyrea n 1 3 @ #m %m 1 0 12309850 -genus_philodendron n 1 3 @ #m %m 1 0 11791155 -genus_philohela n 1 3 @ #m %m 1 0 02031455 -genus_philomachus n 1 3 @ #m %m 1 0 02029914 -genus_philophylla n 1 2 @ #m 1 0 02198021 -genus_phlebodium n 1 3 @ #m %m 1 0 13176873 -genus_phlebotomus n 1 3 @ #m %m 1 0 02204084 -genus_phleum n 1 3 @ #m %m 1 0 12130408 -genus_phlomis n 1 3 @ #m %m 1 0 12861139 -genus_phlox n 1 3 @ #m %m 1 0 12810318 -genus_phoca n 1 3 @ #m %m 1 0 02079706 -genus_phocoena n 1 3 @ #m %m 1 0 02070311 -genus_phoenicophorium n 1 3 @ #m %m 1 0 12593689 -genus_phoeniculus n 1 3 @ #m %m 1 0 01830316 -genus_phoenicurus n 1 3 @ #m %m 1 0 01561318 -genus_phoenix n 1 2 @ #m 1 0 12593826 -genus_pholas n 1 3 @ #m %m 1 0 01967812 -genus_pholidota n 1 3 @ #m %m 1 0 12077062 -genus_pholiota n 1 3 @ #m %m 1 0 13007770 -genus_pholis n 1 3 @ #m %m 1 0 02615157 -genus_pholistoma n 1 3 @ #m %m 1 0 12837643 -genus_phoradendron n 1 3 @ #m %m 1 0 12739595 -genus_photinia n 1 2 @ #m 1 0 12636430 -genus_photoblepharon n 1 2 @ #m 1 0 01452200 -genus_phoxinus n 1 3 @ #m %m 1 0 01442855 -genus_phragmipedium n 1 2 @ #m 1 0 12077505 -genus_phragmites n 1 3 @ #m %m 1 0 12130759 -genus_phrynosoma n 1 3 @ #m %m 1 0 01681812 -genus_phthirius n 1 3 @ #m %m 1 0 02185007 -genus_phthirus n 1 3 @ #m %m 1 0 02185007 -genus_phthorimaea n 1 3 @ #m %m 1 0 02294279 -genus_phyllitis n 1 2 @ #m 1 0 13184164 -genus_phyllium n 1 3 @ #m %m 1 0 02232086 -genus_phyllocladus n 1 3 @ #m %m 1 0 11649749 -genus_phyllodoce n 1 3 @ #m %m 1 0 12242668 -genus_phylloporus n 1 3 @ #m %m 1 0 13058796 -genus_phyllorhynchus n 1 3 @ #m %m 1 0 01729533 -genus_phylloscopus n 1 2 @ #m 1 0 01565238 -genus_phyllostachys n 1 3 @ #m %m 1 0 12148962 -genus_phyllostomus n 1 3 @ #m %m 1 0 02142575 -genus_phylloxera n 1 3 @ #m %m 1 0 02255698 -genus_physa n 1 3 @ #m %m 1 0 01952557 -genus_physalia n 1 3 @ #m %m 1 0 01913035 -genus_physalis n 1 3 @ #m %m 1 0 12910141 -genus_physaria n 1 3 @ #m %m 1 0 11893451 -genus_physeter n 1 3 @ #m %m 1 0 02067100 -genus_physostegia n 1 3 @ #m %m 1 0 12861751 -genus_physostigma n 1 3 @ #m %m 1 0 12486732 -genus_phytelephas n 1 3 @ #m %m 1 0 12594165 -genus_phytolacca n 1 3 @ #m %m 1 0 11855122 -genus_phytophthora n 1 3 @ #m %m 1 0 12982723 -genus_pica n 1 3 @ #m %m 1 0 01582111 -genus_picea n 1 3 @ #m %m 1 0 11624367 -genus_pickeringia n 1 3 @ #m %m 1 0 12558902 -genus_picoides n 1 2 @ #m 1 0 01839221 -genus_picrasma n 1 3 @ #m %m 1 0 12718314 -genus_picris n 1 3 @ #m %m 1 0 12002957 -genus_picumnus n 1 3 @ #m %m 1 0 01841815 -genus_picus n 1 3 @ #m %m 1 0 01838961 -genus_pieris n 2 3 @ #m %m 2 0 12243292 02280845 -genus_pilea n 1 3 @ #m %m 1 0 12394861 -genus_pilosella n 1 3 @ #m %m 1 0 12003407 -genus_pilularia n 1 3 @ #m %m 1 0 12958140 -genus_pimenta n 1 3 @ #m %m 1 0 12330751 -genus_pimpinella n 1 3 @ #m %m 1 0 12942930 -genus_pinckneya n 1 3 @ #m %m 1 0 12669157 -genus_pinctada n 1 3 @ #m %m 1 0 01961862 -genus_pineus n 1 3 @ #m %m 1 0 02255144 -genus_pinguicula n 1 3 @ #m %m 1 0 12872698 -genus_pinguinus n 1 3 @ #m %m 1 0 02046321 -genus_pinicola n 1 3 @ #m %m 1 0 01540969 -genus_pinnotheres n 1 3 @ #m %m 1 0 01980471 -genus_pinus n 1 3 @ #m %m 1 0 11608055 -genus_pipa n 1 2 @ #m 1 0 01653975 -genus_piper n 1 3 @ #m %m 1 0 13149039 -genus_pipile n 1 3 @ #m %m 1 0 01800042 -genus_pipilo n 1 3 @ #m %m 1 0 01542055 -genus_pipistrellus n 1 3 @ #m %m 1 0 02147747 -genus_pipra n 1 3 @ #m %m 1 0 01551549 -genus_piptadenia n 1 2 @ #m 1 0 11764072 -genus_pipturus n 1 3 @ #m %m 1 0 12395717 -genus_piqueria n 1 3 @ #m %m 1 0 12004310 -genus_piranga n 1 3 @ #m %m 1 0 01597551 -genus_piroplasma n 1 2 @ #m 1 0 01425501 -genus_pisanosaurus n 1 3 @ #m %m 1 0 01700754 -genus_piscidia n 1 3 @ #m %m 1 0 12559302 -genus_pisonia n 1 3 @ #m %m 1 0 11841061 -genus_pistacia n 1 3 @ #m %m 1 0 12761471 -genus_pistia n 1 3 @ #m %m 1 0 11791446 -genus_pisum n 1 3 @ #m %m 1 0 12559842 -genus_pithecanthropus n 1 1 @ 1 0 02473554 -genus_pithecellobium n 1 3 @ #m %m 1 0 11764231 -genus_pithecia n 1 3 @ #m %m 1 0 02492833 -genus_pithecolobium n 1 3 @ #m %m 1 0 11764231 -genus_pitta n 1 2 @ #m 1 0 01554825 -genus_pituophis n 1 3 @ #m %m 1 0 01733634 -genus_pitymys n 1 3 @ #m %m 1 0 02340813 -genus_pityrogramma n 1 3 @ #m %m 1 0 13212751 -genus_placuna n 1 3 @ #m %m 1 0 01962662 -genus_plagianthus n 1 3 @ #m %m 1 0 12185078 -genus_planera n 1 2 @ #m 1 0 12410032 -genus_planococcus n 1 3 @ #m %m 1 0 02251452 -genus_plantago n 1 3 @ #m %m 1 0 12598629 -genus_plasmodiophora n 1 3 @ #m %m 1 0 12983404 -genus_plasmodium n 1 3 @ #m %m 1 0 01424282 -genus_platalea n 1 3 @ #m %m 1 0 02006827 -genus_platanthera n 1 3 @ #m %m 1 0 12077732 -genus_platanus n 1 3 @ #m %m 1 0 12806455 -genus_platichthys n 1 3 @ #m %m 1 0 02658670 -genus_platycerium n 1 3 @ #m %m 1 0 13177354 -genus_platylobium n 1 3 @ #m %m 1 0 12561696 -genus_platymiscium n 1 3 @ #m %m 1 0 12562420 -genus_platypoecilus n 1 3 @ #m %m 1 0 01449586 -genus_platystemon n 1 3 @ #m %m 1 0 11907267 -genus_plautus n 1 3 @ #m %m 1 0 02046045 -genus_plecotus n 1 3 @ #m %m 1 0 02148698 -genus_plectania n 1 2 @ #m 1 0 13031007 -genus_plectorrhiza n 1 3 @ #m %m 1 0 12078596 -genus_plectranthus n 1 3 @ #m %m 1 0 12862312 -genus_plectrophenax n 1 3 @ #m %m 1 0 01538498 -genus_pleione n 1 3 @ #m %m 1 0 12078954 -genus_pleiospilos n 1 3 @ #m %m 1 0 11821777 -genus_plesianthropus n 1 2 @ #m 1 0 02476074 -genus_plesiosaurus n 1 3 @ #m %m 1 0 01725570 -genus_plethodon n 1 3 @ #m %m 1 0 01635964 -genus_pleurobrachia n 1 3 @ #m %m 1 0 01920302 -genus_pleuronectes n 1 3 @ #m %m 1 0 02658381 -genus_pleurosorus n 1 2 @ #m 1 0 13183669 -genus_pleurothallis n 1 3 @ #m %m 1 0 12079352 -genus_pleurotus n 1 3 @ #m %m 1 0 13007195 -genus_plicatoperipatus n 1 3 @ #m %m 1 0 02000354 -genus_ploceus n 1 2 @ #m 1 0 01543059 -genus_plumbago n 1 3 @ #m %m 1 0 12098227 -genus_plumeria n 1 3 @ #m %m 1 0 11774279 -genus_pluteus n 1 3 @ #m %m 1 0 13019202 -genus_pluvialis n 1 3 @ #m %m 1 0 02024353 -genus_pluvianus n 1 3 @ #m %m 1 0 02039660 -genus_poa n 1 3 @ #m %m 1 0 12131216 -genus_podalyria n 1 2 @ #m 1 0 12563404 -genus_podargus n 1 2 @ #m 1 0 01836953 -genus_podiceps n 1 3 @ #m %m 1 0 02049855 -genus_podilymbus n 1 3 @ #m %m 1 0 02050921 -genus_podocarpus n 1 3 @ #m %m 1 0 11651731 -genus_podophyllum n 1 3 @ #m %m 1 0 11699915 -genus_poecilocapsus n 1 3 @ #m %m 1 0 02237730 -genus_poecilogale n 1 3 @ #m %m 1 0 02443683 -genus_poephila n 1 3 @ #m %m 1 0 01544067 -genus_pogonia n 1 3 @ #m %m 1 0 12079737 -genus_pogostemon n 1 3 @ #m %m 1 0 12862648 -genus_polanisia n 1 3 @ #m %m 1 0 11867070 -genus_polemonium n 1 3 @ #m %m 1 0 12809233 -genus_polianthes n 1 3 @ #m %m 1 0 12480233 -genus_polioptila n 1 3 @ #m %m 1 0 01563313 -genus_polistes n 1 3 @ #m %m 1 0 02213967 -genus_pollachius n 1 3 @ #m %m 1 0 02524081 -genus_polyangium n 1 2 @ #m 1 0 01378346 -genus_polyborus n 1 3 @ #m %m 1 0 01612803 -genus_polybotria n 1 2 @ #m 1 0 13199244 -genus_polybotrya n 1 2 @ #m 1 0 13199244 -genus_polycirrus n 1 3 @ #m %m 1 0 01937422 -genus_polydactylus n 1 3 @ #m %m 1 0 02611154 -genus_polyergus n 1 3 @ #m %m 1 0 02222459 -genus_polygala n 1 3 @ #m %m 1 0 12704844 -genus_polygonatum n 1 3 @ #m %m 1 0 12474006 -genus_polygonia n 1 3 @ #m %m 1 0 02277895 -genus_polygonum n 1 3 @ #m %m 1 0 12600888 -genus_polyodon n 1 3 @ #m %m 1 0 02639464 -genus_polypedates n 1 2 @ #m 1 0 01644245 -genus_polypodium n 1 3 @ #m %m 1 0 13172725 -genus_polyporus n 1 3 @ #m %m 1 0 13052431 -genus_polyprion n 1 3 @ #m %m 1 0 02568326 -genus_polystichum n 1 3 @ #m %m 1 0 13199445 -genus_pomacanthus n 1 3 @ #m %m 1 0 02605809 -genus_pomacentrus n 1 3 @ #m %m 1 0 02606590 -genus_pomaderris n 1 3 @ #m %m 1 0 13143930 -genus_pomatomus n 1 3 @ #m %m 1 0 02573563 -genus_pomolobus n 1 2 @ #m 1 0 02531362 -genus_pomoxis n 1 3 @ #m %m 1 0 02562680 -genus_poncirus n 1 3 @ #m %m 1 0 12714114 -genus_pongamia n 1 3 @ #m %m 1 0 12563567 -genus_pongo n 1 3 @ #m %m 1 0 02480346 -genus_pontederia n 1 3 @ #m %m 1 0 12609842 -genus_pooecetes n 1 3 @ #m %m 1 0 01535005 -genus_popillia n 1 3 @ #m %m 1 0 02173240 -genus_populus n 1 3 @ #m %m 1 0 12731202 -genus_porcellio n 1 3 @ #m %m 1 0 01992113 -genus_poronotus n 1 3 @ #m %m 1 0 02633287 -genus_porphyra n 1 3 @ #m %m 1 0 01415393 -genus_porphyrio n 1 2 @ #m 1 0 02017093 -genus_porphyrula n 1 3 @ #m %m 1 0 02017335 -genus_portulaca n 1 3 @ #m %m 1 0 11857528 -genus_portunus n 1 3 @ #m %m 1 0 01979124 -genus_porzana n 1 3 @ #m %m 1 0 02015944 -genus_potamogale n 1 3 @ #m %m 1 0 01894803 -genus_potamogeton n 1 3 @ #m %m 1 0 12615986 -genus_potamophis n 1 3 @ #m %m 1 0 01736569 -genus_potentilla n 1 3 @ #m %m 1 0 12636705 -genus_poterium n 1 3 @ #m %m 1 0 12637319 -genus_pothos n 1 3 @ #m %m 1 0 11791819 -genus_potorous n 1 3 @ #m %m 1 0 01880355 -genus_potos n 1 3 @ #m %m 1 0 02509071 -genus_pouteria n 1 3 @ #m %m 1 0 12775530 -genus_praunus n 1 3 @ #m %m 1 0 01989390 -genus_prenanthes n 1 3 @ #m %m 1 0 12004686 -genus_presbytes n 1 3 @ #m %m 1 0 02488149 -genus_priacanthus n 1 3 @ #m %m 1 0 02571486 -genus_primula n 1 3 @ #m %m 1 0 12090702 -genus_prinia n 1 3 @ #m %m 1 0 01565804 -genus_priodontes n 1 2 @ #m 1 0 02455887 -genus_prionace n 1 3 @ #m %m 1 0 01490885 -genus_prionotus n 1 3 @ #m %m 1 0 02650928 -genus_pristis n 1 3 @ #m %m 1 0 01497278 -genus_pritzelago n 1 2 @ #m 1 0 11893808 -genus_proboscidea n 1 3 @ #m %m 1 0 12874996 -genus_procavia n 1 3 @ #m %m 1 0 02372813 -genus_procellaria n 1 3 @ #m %m 1 0 02059393 -genus_prociphilus n 1 3 @ #m %m 1 0 02254110 -genus_procnias n 1 3 @ #m %m 1 0 01551915 -genus_proconsul n 1 3 @ #m %m 1 0 02478662 -genus_procyon n 1 3 @ #m %m 1 0 02507863 -genus_progne n 1 3 @ #m %m 1 0 01596479 -genus_prosopis n 1 3 @ #m %m 1 0 11765099 -genus_prosopium n 1 3 @ #m %m 1 0 02539752 -genus_protea n 1 3 @ #m %m 1 0 12214605 -genus_proteles n 1 3 @ #m %m 1 0 02118058 -genus_proterochampsa n 1 2 @ #m 1 0 01696151 -genus_proteus n 1 3 @ #m %m 1 0 01634092 -genus_protium n 1 3 @ #m %m 1 0 12693033 -genus_protoavis n 1 3 @ #m %m 1 0 01515398 -genus_protoceratops n 1 2 @ #m 1 0 01703996 -genus_protohippus n 1 3 @ #m %m 1 0 02376303 -genus_prumnopitys n 1 3 @ #m %m 1 0 11658104 -genus_prunella n 2 3 @ #m %m 2 0 12863026 01527055 -genus_prunus n 1 3 @ #m %m 1 0 12637729 -genus_psaltriparus n 1 3 @ #m %m 1 0 01592892 -genus_psenes n 1 3 @ #m %m 1 0 02634156 -genus_psephurus n 1 3 @ #m %m 1 0 02639786 -genus_psetta n 1 3 @ #m %m 1 0 02663086 -genus_psettichthys n 1 3 @ #m %m 1 0 02664823 -genus_pseudacris n 1 3 @ #m %m 1 0 01651900 -genus_pseudaletia n 1 3 @ #m %m 1 0 02297127 -genus_pseudechis n 1 3 @ #m %m 1 0 01750598 -genus_pseudemys n 1 3 @ #m %m 1 0 01668257 -genus_pseudobombax n 1 3 @ #m %m 1 0 12191965 -genus_pseudococcus n 1 3 @ #m %m 1 0 02250653 -genus_pseudocolus n 1 3 @ #m %m 1 0 13042814 -genus_pseudolarix n 1 3 @ #m %m 1 0 11620248 -genus_pseudomonas n 1 3 @ #m %m 1 0 01360937 -genus_pseudopleuronectes n 1 2 @ #m 1 0 02659342 -genus_pseudoryx n 1 3 @ #m %m 1 0 02428653 -genus_pseudotaxus n 1 3 @ #m %m 1 0 11663136 -genus_pseudotsuga n 1 3 @ #m %m 1 0 11628284 -genus_pseudowintera n 1 3 @ #m %m 1 0 11740208 -genus_psidium n 1 3 @ #m %m 1 0 12333397 -genus_psilophyton n 1 3 @ #m %m 1 0 13217763 -genus_psilotum n 1 3 @ #m %m 1 0 13216673 -genus_psithyrus n 1 3 @ #m %m 1 0 02209755 -genus_psittacosaurus n 1 3 @ #m %m 1 0 01704847 -genus_psittacula n 1 3 @ #m %m 1 0 01822164 -genus_psittacus n 1 3 @ #m %m 1 0 01817772 -genus_psophia n 1 3 @ #m %m 1 0 02020902 -genus_psophocarpus n 1 3 @ #m %m 1 0 12563913 -genus_psoralea n 1 3 @ #m %m 1 0 12564381 -genus_psychopsis n 1 3 @ #m %m 1 0 12080199 -genus_psychotria n 1 3 @ #m %m 1 0 12669641 -genus_pteretis n 1 3 @ #m %m 1 0 13197800 -genus_pteridium n 1 3 @ #m %m 1 0 13189656 -genus_pteris n 1 3 @ #m %m 1 0 13213768 -genus_pternohyla n 1 3 @ #m %m 1 0 01652163 -genus_pterocarpus n 1 3 @ #m %m 1 0 12564840 -genus_pterocarya n 1 3 @ #m %m 1 0 12322359 -genus_pterocles n 1 3 @ #m %m 1 0 01815855 -genus_pterocnemia n 1 3 @ #m %m 1 0 01521602 -genus_pterodactylus n 1 3 @ #m %m 1 0 01723425 -genus_pterois n 1 3 @ #m %m 1 0 02643448 -genus_pteropogon n 1 3 @ #m %m 1 0 12005148 -genus_pteropus n 1 3 @ #m %m 1 0 02139914 -genus_pterospermum n 1 3 @ #m %m 1 0 12200747 -genus_pterostylis n 1 3 @ #m %m 1 0 12081022 -genus_ptilocercus n 1 3 @ #m %m 1 0 02495446 -genus_ptilocrinus n 1 3 @ #m %m 1 0 02320339 -genus_ptilonorhynchus n 1 3 @ #m %m 1 0 01600909 -genus_ptloris n 1 2 @ #m 1 0 01571297 -genus_ptyas n 1 3 @ #m %m 1 0 01733094 -genus_ptychozoon n 1 3 @ #m %m 1 0 01675225 -genus_puccinia n 1 3 @ #m %m 1 0 13064852 -genus_pueraria n 1 3 @ #m %m 1 0 12566809 -genus_puffinus n 1 3 @ #m %m 1 0 02060290 -genus_pulex n 1 3 @ #m %m 1 0 02186586 -genus_pulicaria n 1 3 @ #m %m 1 0 12005500 -genus_pulsatilla n 1 3 @ #m %m 1 0 11737316 -genus_punica n 1 3 @ #m %m 1 0 12345136 -genus_pycnanthemum n 1 3 @ #m %m 1 0 12863458 -genus_pygopus n 1 2 @ #m 1 0 01676113 -genus_pygoscelis n 1 3 @ #m %m 1 0 02056091 -genus_pylodictus n 1 3 @ #m %m 1 0 02520015 -genus_pyracantha n 1 3 @ #m %m 1 0 12651062 -genus_pyralis n 1 2 @ #m 1 0 02289061 -genus_pyrausta n 1 3 @ #m %m 1 0 02289466 -genus_pyrethrum n 1 2 @ #m 1 0 12005869 -genus_pyrocephalus n 1 3 @ #m %m 1 0 01550033 -genus_pyrola n 1 3 @ #m %m 1 0 12255934 -genus_pyrophorus n 1 3 @ #m %m 1 0 02176611 -genus_pyrrhula n 1 3 @ #m %m 1 0 01534034 -genus_pyrrhuloxia n 1 3 @ #m %m 1 0 01541618 -genus_pyrrosia n 1 3 @ #m %m 1 0 13178107 -genus_pyrularia n 1 3 @ #m %m 1 0 12736840 -genus_pyrus n 1 3 @ #m %m 1 0 12651465 -genus_pythium n 1 3 @ #m %m 1 0 12982338 -genus_python n 1 3 @ #m %m 1 0 01743787 -genus_pyxidanthera n 1 3 @ #m %m 1 0 12251577 -genus_quamassia n 1 3 @ #m %m 1 0 12449024 -genus_quassia n 1 3 @ #m %m 1 0 12718807 -genus_quercus n 1 3 @ #m %m 1 0 12268096 -genus_quiscalus n 1 3 @ #m %m 1 0 01574270 -genus_rachycentron n 1 3 @ #m %m 1 0 02574093 -genus_radiigera n 1 3 @ #m %m 1 0 13045429 -genus_radyera n 1 3 @ #m %m 1 0 12185687 -genus_raffia n 1 3 @ #m %m 1 0 12594746 -genus_raja n 1 3 @ #m %m 1 0 01501450 -genus_ramalina n 1 2 @ #m 1 0 12990250 -genus_ramphomicron n 1 3 @ #m %m 1 0 01834412 -genus_rana n 1 3 @ #m %m 1 0 01640567 -genus_ranatra n 1 2 @ #m 1 0 02242816 -genus_rangifer n 1 3 @ #m %m 1 0 02433796 -genus_ranunculus n 1 3 @ #m %m 1 0 11720088 -genus_raoulia n 1 3 @ #m %m 1 0 12006081 -genus_raphanus n 1 3 @ #m %m 1 0 11894173 -genus_raphia n 1 3 @ #m %m 1 0 12594746 -genus_raphicerus n 1 3 @ #m %m 1 0 02426339 -genus_raphus n 1 3 @ #m %m 1 0 01811104 -genus_ratibida n 1 3 @ #m %m 1 0 12006503 -genus_rattus n 1 3 @ #m %m 1 0 02333368 -genus_rauvolfia n 1 3 @ #m %m 1 0 11775160 -genus_rauwolfia n 1 3 @ #m %m 1 0 11775160 -genus_ravenala n 1 3 @ #m %m 1 0 12354849 -genus_recurvirostra n 1 3 @ #m %m 1 0 02036548 -genus_regalecus n 1 3 @ #m %m 1 0 02546873 -genus_regnellidium n 1 3 @ #m %m 1 0 12958470 -genus_regulus n 1 3 @ #m %m 1 0 01563579 -genus_reithrodontomys n 1 3 @ #m %m 1 0 02336129 -genus_remilegia n 1 3 @ #m %m 1 0 02575455 -genus_reseda n 1 3 @ #m %m 1 0 12385219 -genus_retama n 1 3 @ #m %m 1 0 12567316 -genus_reticulitermes n 1 3 @ #m %m 1 0 02223694 -genus_retrophyllum n 1 2 @ #m 1 0 11658872 -genus_rhagoletis n 1 3 @ #m %m 1 0 02196761 -genus_rhamnus n 1 3 @ #m %m 1 0 13140993 -genus_rhapis n 1 3 @ #m %m 1 0 12595801 -genus_rhea n 1 3 @ #m %m 1 0 01521197 -genus_rheum n 1 3 @ #m %m 1 0 12602850 -genus_rhexia n 1 3 @ #m %m 1 0 12349916 -genus_rhincodon n 1 3 @ #m %m 1 0 01487914 -genus_rhinoceros n 1 3 @ #m %m 1 0 02392282 -genus_rhinonicteris n 1 3 @ #m %m 1 0 02144110 -genus_rhinoptera n 1 3 @ #m %m 1 0 01499595 -genus_rhipsalis n 1 3 @ #m %m 1 0 11852814 -genus_rhizobium n 1 2 @ #m 1 0 01354324 -genus_rhizoctinia n 1 3 @ #m %m 1 0 13082293 -genus_rhizophora n 1 3 @ #m %m 1 0 12345709 -genus_rhizopogon n 1 3 @ #m %m 1 0 12971624 -genus_rhizopus n 1 3 @ #m %m 1 0 12973541 -genus_rhodanthe n 1 3 @ #m %m 1 0 12007560 -genus_rhododendron n 1 3 @ #m %m 1 0 12243927 -genus_rhodosphaera n 1 3 @ #m %m 1 0 12762245 -genus_rhodymenia n 1 3 @ #m %m 1 0 01414986 -genus_rhus n 1 3 @ #m %m 1 0 12762583 -genus_rhyacotriton n 1 3 @ #m %m 1 0 01635343 -genus_rhynchoelaps n 1 3 @ #m %m 1 0 01747144 -genus_rhyncostylis n 1 3 @ #m %m 1 0 12081488 -genus_rhynia n 1 2 @ #m 1 0 13218281 -genus_ribes n 1 3 @ #m %m 1 0 12804866 -genus_richea n 1 3 @ #m %m 1 0 12254478 -genus_richmondena n 1 3 @ #m %m 1 0 01541261 -genus_ricinus n 1 3 @ #m %m 1 0 12924452 -genus_rickettsia n 1 2 @ #m 1 0 01371342 -genus_riparia n 1 3 @ #m %m 1 0 01596142 -genus_rissa n 1 3 @ #m %m 1 0 02042637 -genus_rivina n 1 3 @ #m %m 1 0 11856389 -genus_rivulus n 1 3 @ #m %m 1 0 01447551 -genus_robinia n 1 3 @ #m %m 1 0 12567768 -genus_roccella n 1 3 @ #m %m 1 0 12988858 -genus_roccus n 1 3 @ #m %m 1 0 02567960 -genus_rodolia n 1 3 @ #m %m 1 0 02166674 -genus_romneya n 1 3 @ #m %m 1 0 11907554 -genus_roridula n 1 3 @ #m %m 1 0 12784173 -genus_rorippa n 1 3 @ #m %m 1 0 11895270 -genus_rosa n 1 3 @ #m %m 1 0 12620031 -genus_rosellinia n 1 2 @ #m 1 0 12967124 -genus_rosmarinus n 1 3 @ #m %m 1 0 12864038 -genus_roystonea n 1 3 @ #m %m 1 0 12596525 -genus_rubia n 1 3 @ #m %m 1 0 12660796 -genus_rubus n 1 3 @ #m %m 1 0 12653056 -genus_rudbeckia n 1 3 @ #m %m 1 0 12008017 -genus_rumex n 1 3 @ #m %m 1 0 12603784 -genus_rumohra n 1 3 @ #m %m 1 0 13200806 -genus_rupicapra n 1 3 @ #m %m 1 0 02419217 -genus_rupicola n 1 3 @ #m %m 1 0 01550953 -genus_ruptiliocarpon n 1 3 @ #m %m 1 0 12701901 -genus_ruscus n 1 3 @ #m %m 1 0 12462951 -genus_russula n 1 2 @ #m 1 0 13009780 -genus_ruta n 1 3 @ #m %m 1 0 12707040 -genus_rutilus n 1 3 @ #m %m 1 0 01442335 -genus_rynchops n 1 3 @ #m %m 1 0 02043659 -genus_rypticus n 1 3 @ #m %m 1 0 02570312 -genus_sabal n 1 3 @ #m %m 1 0 12597006 -genus_sabbatia n 1 3 @ #m %m 1 0 12298003 -genus_sabinea n 1 3 @ #m %m 1 0 12568865 -genus_saccharomyces n 1 3 @ #m %m 1 0 13025421 -genus_saccharum n 1 3 @ #m %m 1 0 12132299 -genus_sadleria n 1 2 @ #m 1 0 13185820 -genus_sagina n 1 3 @ #m %m 1 0 11814059 -genus_sagitta n 1 3 @ #m %m 1 0 01924151 -genus_sagittaria n 1 3 @ ~ #m 1 0 12612410 -genus_sagittarius n 1 3 @ #m %m 1 0 01618356 -genus_saiga n 1 3 @ #m %m 1 0 02426054 -genus_saimiri n 1 2 @ #m 1 0 02493974 -genus_saintpaulia n 1 3 @ #m %m 1 0 12832976 -genus_salamandra n 1 3 @ #m %m 1 0 01629093 -genus_salicornia n 1 3 @ #m %m 1 0 11834148 -genus_salix n 1 3 @ #m %m 1 0 12724201 -genus_salmo n 1 3 @ #m %m 1 0 02535349 -genus_salmonella n 1 3 @ #m %m 1 0 01368853 -genus_salpa n 1 3 @ #m %m 1 0 01469586 -genus_salpichroa n 1 3 @ #m %m 1 0 12912105 -genus_salpiglossis n 1 3 @ #m %m 1 0 12912498 -genus_salpinctes n 1 3 @ #m %m 1 0 01585577 -genus_salsola n 1 2 @ #m 1 0 11834521 -genus_salvadora n 1 3 @ #m %m 1 0 12299425 -genus_salvelinus n 1 3 @ #m %m 1 0 02537847 -genus_salvia n 1 3 @ #m %m 1 0 12864363 -genus_salvinia n 1 3 @ #m %m 1 0 12958921 -genus_sambucus n 1 3 @ #m %m 1 0 12678059 -genus_samia n 1 3 @ #m %m 1 0 02303448 -genus_samolus n 1 3 @ #m %m 1 0 12096223 -genus_sanguinaria n 1 3 @ #m %m 1 0 11907939 -genus_sanicula n 1 3 @ #m %m 1 0 12943302 -genus_sansevieria n 1 3 @ #m %m 1 0 12480677 -genus_santalum n 1 3 @ #m %m 1 0 12735009 -genus_santolina n 1 3 @ #m %m 1 0 12009250 -genus_sanvitalia n 1 3 @ #m %m 1 0 12009616 -genus_sapindus n 1 3 @ #m %m 1 0 12741409 -genus_saponaria n 1 3 @ #m %m 1 0 11814440 -genus_saprolegnia n 1 3 @ #m %m 1 0 12979630 -genus_sarcobatus n 1 3 @ #m %m 1 0 11835114 -genus_sarcocephalus n 1 3 @ #m %m 1 0 12670172 -genus_sarcochilus n 1 3 @ #m %m 1 0 12081851 -genus_sarcocystis n 1 3 @ #m %m 1 0 01426160 -genus_sarcodes n 1 3 @ #m %m 1 0 12259615 -genus_sarcophaga n 1 3 @ #m %m 1 0 02192388 -genus_sarcophilus n 1 3 @ #m %m 1 0 01884703 -genus_sarcoptes n 1 3 @ #m %m 1 0 01781410 -genus_sarcorhamphus n 1 3 @ #m %m 1 0 01620575 -genus_sarcostemma n 1 3 @ #m %m 1 0 13237788 -genus_sarda n 1 3 @ #m %m 1 0 02627686 -genus_sardina n 1 3 @ #m %m 1 0 02533075 -genus_sardinia n 1 3 @ #m %m 1 0 02533075 -genus_sardinops n 1 3 @ #m %m 1 0 02533424 -genus_sargassum n 1 3 @ #m %m 1 0 01405737 -genus_sarracenia n 1 3 @ #m %m 1 0 12779437 -genus_sassafras n 1 3 @ #m %m 1 0 11707109 -genus_satureia n 1 3 @ #m %m 1 0 12866824 -genus_satureja n 1 3 @ #m %m 1 0 12866824 -genus_saturnia n 1 3 @ #m %m 1 0 02301782 -genus_sauromalus n 1 2 @ #m 1 0 01678237 -genus_saurosuchus n 1 2 @ #m 1 0 01696026 -genus_saururus n 1 3 @ #m %m 1 0 13151820 -genus_saussurea n 1 3 @ #m %m 1 0 12010021 -genus_saxe-gothea n 1 3 @ #m %m 1 0 11659068 -genus_saxegothea n 1 3 @ #m %m 1 0 11659068 -genus_saxicola n 1 3 @ #m %m 1 0 01560511 -genus_saxifraga n 1 3 @ #m %m 1 0 12792638 -genus_sayornis n 1 3 @ #m %m 1 0 01549769 -genus_scabiosa n 1 3 @ #m %m 1 0 12683248 -genus_scaphiopus n 1 3 @ #m %m 1 0 01648993 -genus_scaphosepalum n 1 2 @ #m 1 0 12082357 -genus_scarabaeus n 1 3 @ #m %m 1 0 02172387 -genus_scardinius n 1 3 @ #m %m 1 0 01442591 -genus_scartella n 1 3 @ #m %m 1 0 02613687 -genus_sceliphron n 1 3 @ #m %m 1 0 02215496 -genus_sceloglaux n 1 3 @ #m %m 1 0 01624987 -genus_sceloporus n 1 3 @ #m %m 1 0 01680137 -genus_schaffneria n 1 3 @ #m %m 1 0 13183874 -genus_schefflera n 1 3 @ #m %m 1 0 11800359 -genus_schinus n 1 3 @ #m %m 1 0 12764703 -genus_schistosoma n 1 3 @ #m %m 1 0 01926988 -genus_schizachyrium n 1 2 @ #m 1 0 12133332 -genus_schizaea n 1 3 @ #m %m 1 0 12955191 -genus_schizanthus n 1 3 @ #m %m 1 0 12913004 -genus_schizopetalon n 1 3 @ #m %m 1 0 11895980 -genus_schizophragma n 1 3 @ #m %m 1 0 12791539 -genus_schizosaccharomyces n 1 2 @ #m 1 0 13026339 -genus_schlumbergera n 1 3 @ #m %m 1 0 11853191 -genus_schomburgkia n 1 2 @ #m 1 0 12082593 -genus_sciadopitys n 1 3 @ #m %m 1 0 11660121 -genus_sciaena n 1 3 @ #m %m 1 0 02595902 -genus_sciaenops n 1 3 @ #m %m 1 0 02595569 -genus_sciara n 1 3 @ #m %m 1 0 02204585 -genus_scilla n 1 3 @ #m %m 1 0 12461326 -genus_scincella n 1 2 @ #m 1 0 01684012 -genus_scincus n 1 2 @ #m 1 0 01683900 -genus_scindapsus n 1 3 @ #m %m 1 0 11791819 -genus_scirpus n 1 3 @ #m %m 1 0 12152869 -genus_sciurus n 1 3 @ #m %m 1 0 02356108 -genus_scleranthus n 1 3 @ #m %m 1 0 11814824 -genus_scleroderma n 1 3 @ #m %m 1 0 12968882 -genus_scleropages n 1 3 @ #m %m 1 0 02544960 -genus_sclerotinia n 1 3 @ #m %m 1 0 12967955 -genus_sclerotium n 1 2 @ #m 1 0 13082829 -genus_scolopax n 1 3 @ #m %m 1 0 02031143 -genus_scolopendrium n 1 2 @ #m 1 0 13184164 -genus_scolymus n 1 3 @ #m %m 1 0 12010458 -genus_scolytus n 1 3 @ #m %m 1 0 02179714 -genus_scomber n 1 3 @ #m %m 1 0 02624377 -genus_scomberesox n 1 3 @ #m %m 1 0 02551494 -genus_scomberomorus n 1 3 @ #m %m 1 0 02625418 -genus_scombresox n 1 3 @ #m %m 1 0 02551494 -genus_scophthalmus n 1 3 @ #m %m 1 0 02662688 -genus_scopolia n 1 3 @ #m %m 1 0 12913352 -genus_scorpaena n 1 3 @ #m %m 1 0 02642935 -genus_scorzonera n 1 3 @ #m %m 1 0 12012897 -genus_scrophularia n 1 3 @ #m %m 1 0 12876684 -genus_scutellaria n 1 2 @ #m 1 0 12867679 -genus_scutigera n 1 3 @ #m %m 1 0 01785532 -genus_scutigerella n 1 3 @ #m %m 1 0 01783571 -genus_sebastiana n 1 3 @ #m %p 1 0 12928690 -genus_sebastodes n 1 3 @ #m %m 1 0 02643989 -genus_secale n 1 3 @ #m %m 1 0 12133870 -genus_sedum n 1 3 @ #m %m 1 0 12785499 -genus_seismosaurus n 1 3 @ #m %m 1 0 01711297 -genus_seiurus n 1 3 @ #m %m 1 0 01570112 -genus_selaginella n 1 3 @ #m %m 1 0 13224454 -genus_selar n 1 3 @ #m %m 1 0 02580991 -genus_selenarctos n 1 3 @ #m %m 1 0 02133512 -genus_selene n 1 2 @ #m 1 0 02578125 -genus_selenicereus n 1 3 @ #m %m 1 0 11853644 -genus_selenipedium n 1 2 @ #m 1 0 12082764 -genus_senecio n 1 3 @ #m %m 1 0 12011067 -genus_senna n 1 3 @ #m %m 1 0 12498928 -genus_sepia n 1 3 @ #m %m 1 0 01972411 -genus_septobasidium n 1 3 @ #m %m 1 0 13069535 -genus_sequoia n 1 3 @ #m %m 1 0 11640471 -genus_sequoiadendron n 1 3 @ #m %m 1 0 11641275 -genus_serenoa n 1 3 @ #m %m 1 0 12597333 -genus_sericocarpus n 1 3 @ #m %m 1 0 12013323 -genus_serinus n 1 3 @ #m %m 1 0 01533169 -genus_seriola n 1 3 @ #m %m 1 0 02578604 -genus_seriphidium n 1 3 @ #m %m 1 0 12013811 -genus_seriphus n 1 3 @ #m %m 1 0 02598747 -genus_serranus n 1 3 @ #m %m 1 0 02568636 -genus_serrasalmus n 1 3 @ #m %m 1 0 02584325 -genus_serratia n 1 3 @ #m %m 1 0 01369633 -genus_serratula n 1 3 @ #m %m 1 0 12014739 -genus_sertularia n 1 3 @ #m %m 1 0 01913533 -genus_sesamum n 1 3 @ #m %m 1 0 12874642 -genus_sesbania n 1 3 @ #m %m 1 0 12569233 -genus_seseli n 1 3 @ #m %m 1 0 12944238 -genus_setaria n 1 3 @ #m %m 1 0 12134300 -genus_setophaga n 1 2 @ #m 1 0 01568019 -genus_shigella n 1 3 @ #m %m 1 0 01370142 -genus_shorea n 1 3 @ #m %m 1 0 12377328 -genus_shortia n 1 3 @ #m %m 1 0 12251997 -genus_sialia n 1 3 @ #m %m 1 0 01561884 -genus_sialis n 1 3 @ #m %m 1 0 02266732 -genus_sida n 1 3 @ #m %m 1 0 12186116 -genus_sidalcea n 1 3 @ #m %m 1 0 12187030 -genus_sideritis n 1 2 @ #m 1 0 12868248 -genus_sigmodon n 1 3 @ #m %m 1 0 02338592 -genus_silene n 1 3 @ #m %m 1 0 11815194 -genus_sillago n 1 3 @ #m %m 1 0 02637839 -genus_silphium n 1 3 @ #m %m 1 0 12015076 -genus_silurus n 1 3 @ #m %m 1 0 02518178 -genus_silvia n 1 3 @ #m %m 1 0 01564630 -genus_silybum n 1 3 @ #m %m 1 0 12015384 -genus_simarouba n 1 3 @ #m %m 1 0 12716166 -genus_simulium n 1 3 @ #m %m 1 0 02205523 -genus_sinanthropus n 1 1 @ 1 0 02473983 -genus_sinapis n 1 2 @ #m 1 0 11896365 -genus_sinningia n 1 3 @ #m %m 1 0 12833341 -genus_sinornis n 1 3 @ #m %m 1 0 01516487 -genus_siren n 1 3 @ #m %m 1 0 01639071 -genus_sison n 1 3 @ #m %m 1 0 12944590 -genus_sistrurus n 1 3 @ #m %m 1 0 01757547 -genus_sisymbrium n 1 3 @ #m %m 1 0 11896904 -genus_sisyrinchium n 1 3 @ #m %m 1 0 12418065 -genus_sitophylus n 1 3 @ #m %m 1 0 02182796 -genus_sitotroga n 1 3 @ #m %m 1 0 02293974 -genus_sitta n 1 3 @ #m %m 1 0 01590837 -genus_sium n 1 3 @ #m %m 1 0 12944960 -genus_sivapithecus n 1 3 @ #m %m 1 0 02477647 -genus_sloanea n 1 3 @ #m %m 1 0 12194466 -genus_smilax n 1 3 @ #m %m 1 0 12469936 -genus_smiledon n 1 3 @ #m %m 1 0 02130795 -genus_smyrnium n 1 3 @ #m %m 1 0 12945708 -genus_sobralia n 1 3 @ #m %m 1 0 12082980 -genus_solandra n 1 3 @ #m %m 1 0 12913645 -genus_solanopteris n 1 3 @ #m %m 1 0 13178500 -genus_solanum n 1 3 @ #m %m 1 0 12893094 -genus_solea n 1 3 @ #m %m 1 0 02664136 -genus_soleirolia n 1 3 @ #m %m 1 0 12393527 -genus_solenopsis n 1 3 @ #m %m 1 0 02220960 -genus_solenostemon n 1 2 @ #m 1 0 12868418 -genus_solidago n 1 3 @ #m %m 1 0 12015840 -genus_somateria n 1 3 @ #m %m 1 0 01853072 -genus_sonchus n 1 3 @ #m %m 1 0 12018640 -genus_sonora n 1 3 @ #m %m 1 0 01736256 -genus_sophora n 1 3 @ #m %m 1 0 12570126 -genus_sorbus n 1 3 @ #m %m 1 0 12657940 -genus_sorex n 1 3 @ #m %m 1 0 01891865 -genus_sorghum n 1 3 @ #m %m 1 0 12136944 -genus_spadella n 1 2 @ #m 1 0 01924416 -genus_spalax n 1 3 @ #m %m 1 0 02368687 -genus_sparaxis n 1 3 @ #m %m 1 0 12418356 -genus_sparganium n 1 3 @ #m %m 1 0 12156484 -genus_sparmannia n 1 3 @ #m %m 1 0 12205308 -genus_spartina n 1 3 @ #m %m 1 0 12139367 -genus_spartium n 1 3 @ #m %m 1 0 12571194 -genus_spathiphyllum n 1 3 @ #m %m 1 0 11792155 -genus_spergula n 1 3 @ #m %m 1 0 11817000 -genus_spergularia n 1 3 @ #m %m 1 0 11817329 -genus_spermophilus n 1 3 @ #m %m 1 0 02357741 -genus_sphacele n 1 3 @ #m %m 1 0 12851673 -genus_sphacelotheca n 1 3 @ #m %m 1 0 13067532 -genus_sphaeralcea n 1 3 @ #m %m 1 0 12187450 -genus_sphaerocarpos n 1 2 @ #m 1 0 11544540 -genus_sphaerocarpus n 1 2 @ #m 1 0 11544540 -genus_sphagnum n 1 3 @ #m %m 1 0 11541919 -genus_sphecius n 1 3 @ #m %m 1 0 02216066 -genus_sphecotheres n 1 3 @ #m %m 1 0 01576212 -genus_spheniscus n 1 3 @ #m %m 1 0 02056873 -genus_sphenodon n 1 3 @ #m %m 1 0 01673118 -genus_sphyraena n 1 2 @ #m 1 0 02603174 -genus_sphyrapicus n 1 3 @ #m %m 1 0 01840968 -genus_sphyrna n 1 3 @ #m %m 1 0 01494339 -genus_spilogale n 1 3 @ #m %m 1 0 02446888 -genus_spinacia n 1 3 @ #m %m 1 0 11835451 -genus_spinus n 1 3 @ #m %m 1 0 01532107 -genus_spiraea n 1 3 @ #m %m 1 0 12659203 -genus_spiranthes n 1 3 @ #m %m 1 0 12083339 -genus_spirillum n 1 3 @ #m %m 1 0 01363600 -genus_spirochaeta n 1 2 @ #m 1 0 01381829 -genus_spirodela n 1 3 @ #m %m 1 0 11795366 -genus_spirogyra n 1 3 @ #m %m 1 0 01410568 -genus_spirula n 1 3 @ #m %m 1 0 01972947 -genus_spizella n 1 3 @ #m %m 1 0 01535842 -genus_spodoptera n 1 3 @ #m %m 1 0 02297635 -genus_spondias n 1 3 @ #m %m 1 0 12765679 -genus_sporobolus n 1 3 @ #m %m 1 0 12140137 -genus_spraguea n 1 3 @ #m %m 1 0 11862089 -genus_spyeria n 1 3 @ #m %m 1 0 02278343 -genus_squalus n 1 3 @ #m %m 1 0 01493687 -genus_squatina n 1 3 @ #m %m 1 0 01495340 -genus_squilla n 1 3 @ #m %m 1 0 01990383 -genus_stachys n 1 3 @ #m %m 1 0 12868634 -genus_stanhopea n 1 3 @ #m %m 1 0 12084746 -genus_stanleya n 1 3 @ #m %m 1 0 11897342 -genus_stapelia n 1 3 @ #m %m 1 0 13238178 -genus_staphylea n 1 2 @ #m 1 0 12769663 -genus_staphylococcus n 1 3 @ #m %m 1 0 01379252 -genus_staurikosaurus n 1 3 @ #m %m 1 0 01701052 -genus_steatornis n 1 3 @ #m %m 1 0 01837363 -genus_steganopus n 1 3 @ #m %m 1 0 02038329 -genus_stegosaurus n 1 3 @ #m %m 1 0 01701697 -genus_stelis n 1 3 @ #m %m 1 0 12085117 -genus_stellaria n 1 3 @ #m %m 1 0 11817774 -genus_stenocarpus n 1 3 @ #m %m 1 0 12222715 -genus_stenochlaena n 1 2 @ #m 1 0 13185998 -genus_stenopelmatus n 1 3 @ #m %m 1 0 02229023 -genus_stenopterygius n 1 3 @ #m %m 1 0 01724947 -genus_stenotaphrum n 1 3 @ #m %m 1 0 12141037 -genus_stenotomus n 1 2 @ #m 1 0 02593353 -genus_stenotus n 1 3 @ #m %m 1 0 12019190 -genus_stentor n 1 3 @ #m %m 1 0 01396458 -genus_stephanomeria n 1 3 @ #m %m 1 0 11897760 -genus_stephanotis n 1 3 @ #m %m 1 0 13238828 -genus_stercorarius n 1 3 @ #m %m 1 0 02044358 -genus_sterculia n 1 3 @ #m %m 1 0 12195186 -genus_sterna n 1 3 @ #m %m 1 0 02043207 -genus_sternotherus n 1 3 @ #m %m 1 0 01667302 -genus_stevia n 1 3 @ #m %m 1 0 12019675 -genus_sticherus n 1 3 @ #m %m 1 0 13171041 -genus_stictomys n 1 3 @ #m %m 1 0 02366453 -genus_stictopelia n 1 3 @ #m %m 1 0 01813811 -genus_stizolobium n 1 3 @ #m %m 1 0 12549976 -genus_stizostedion n 1 3 @ #m %m 1 0 02557461 -genus_stokesia n 1 3 @ #m %m 1 0 12020048 -genus_storeria n 1 3 @ #m %m 1 0 01738175 -genus_strekelia n 1 3 @ #m %m 1 0 12422399 -genus_strelitzia n 1 3 @ #m %m 1 0 12354374 -genus_strepera n 1 3 @ #m %m 1 0 01583373 -genus_strepsiceros n 1 3 @ #m %m 1 0 02423787 -genus_streptocarpus n 1 3 @ #m %m 1 0 12833793 -genus_streptococcus n 1 3 @ #m %m 1 0 01380902 -genus_streptomyces n 1 3 @ #m %m 1 0 01376092 -genus_streptopelia n 1 3 @ #m %m 1 0 01813256 -genus_streptosolen n 1 3 @ #m %m 1 0 12914048 -genus_strix n 1 3 @ #m %m 1 0 01622596 -genus_strobilomyces n 1 3 @ #m %m 1 0 13059485 -genus_strombus n 1 3 @ #m %m 1 0 01943754 -genus_strongylodon n 1 3 @ #m %m 1 0 12571606 -genus_strophanthus n 1 3 @ #m %m 1 0 11775780 -genus_stropharia n 1 3 @ #m %m 1 0 13010401 -genus_struthio n 1 3 @ #m %m 1 0 01518718 -genus_struthiomimus n 1 3 @ #m %m 1 0 01716122 -genus_strymon n 1 3 @ #m %m 1 0 02282716 -genus_sturnella n 1 3 @ #m %m 1 0 01572910 -genus_sturnus n 1 3 @ #m %m 1 0 01576863 -genus_stylomecon n 1 2 @ #m 1 0 11908431 -genus_stylophorum n 1 3 @ #m %m 1 0 11908718 -genus_styphelia n 1 3 @ #m %m 1 0 12255086 -genus_styracosaurus n 1 3 @ #m %m 1 0 01704497 -genus_styrax n 1 3 @ #m %m 1 0 12777294 -genus_subularia n 1 3 @ #m %m 1 0 11898079 -genus_suillus n 1 3 @ #m %m 1 0 13059139 -genus_suksdorfia n 1 3 @ #m %m 1 0 12802248 -genus_sula n 1 3 @ #m %m 1 0 02053279 -genus_sundacarpus n 1 3 @ #m %m 1 0 11659500 -genus_suricata n 1 3 @ #m %m 1 0 02138323 -genus_surnia n 1 3 @ #m %m 1 0 01624406 -genus_sus n 1 3 @ #m %m 1 0 02395244 -genus_swainsona n 1 3 @ #m %m 1 0 11751598 -genus_swertia n 1 3 @ #m %m 1 0 12298783 -genus_swietinia n 1 3 @ #m %m 1 0 12699778 -genus_sylvilagus n 1 3 @ #m %m 1 0 02325211 -genus_symphalangus n 1 2 @ #m 1 0 02483564 -genus_symphoricarpos n 1 3 @ #m %m 1 0 12677427 -genus_symphytum n 1 3 @ #m %m 1 0 12822650 -genus_symplocarpus n 1 3 @ #m %m 1 0 11792598 -genus_symplocus n 1 3 @ #m %m 1 0 12776391 -genus_synagrops n 1 3 @ #m %m 1 0 02567201 -genus_synanceja n 1 3 @ #m %m 1 0 02643713 -genus_synaptomys n 1 2 @ #m 1 0 02345890 -genus_synchytrium n 1 3 @ #m %m 1 0 12979129 -genus_synercus n 1 3 @ #m %m 1 0 02409369 -genus_syngnathus n 1 3 @ #m %m 1 0 01455986 -genus_syngonium n 1 2 @ #m 1 0 11793032 -genus_syringa n 1 3 @ #m %m 1 0 12310153 -genus_syrrhaptes n 1 3 @ #m %m 1 0 01816336 -genus_syzygium n 1 3 @ #m %m 1 0 12339319 -genus_tabernaemontana n 1 3 @ #m %m 1 0 11776337 -genus_tacca n 1 3 @ #m %m 1 0 12475593 -genus_tachyglossus n 1 3 @ #m %m 1 0 01872244 -genus_tachypleus n 1 3 @ #m %m 1 0 01788157 -genus_tadarida n 1 3 @ #m %m 1 0 02149297 -genus_tadorna n 1 3 @ #m %m 1 0 01849348 -genus_taenia n 1 3 @ #m %m 1 0 01928073 -genus_tagetes n 1 3 @ #m %m 1 0 12020388 -genus_talinum n 1 3 @ #m %m 1 0 11862598 -genus_tamandua n 1 3 @ #m %m 1 0 02461014 -genus_tamarindus n 1 3 @ #m %m 1 0 12501035 -genus_tamarix n 1 3 @ #m %m 1 0 12386263 -genus_tamias n 1 3 @ #m %m 1 0 02359775 -genus_tamiasciurus n 1 2 @ #m 1 0 02357280 -genus_tamus n 1 3 @ #m %m 1 0 12089625 -genus_tanacetum n 1 3 @ #m %m 1 0 12021120 -genus_tantilla n 1 3 @ #m %m 1 0 01738965 -genus_tapirus n 1 3 @ #m %m 1 0 02393445 -genus_taraktagenos n 1 3 @ #m %m 1 0 12379278 -genus_taraktogenos n 1 3 @ #m %m 1 0 12379278 -genus_taraxacum n 1 3 @ #m %m 1 0 12023996 -genus_taricha n 1 3 @ #m %m 1 0 01631035 -genus_tarpon n 1 3 @ #m %m 1 0 02541583 -genus_tarrietia n 1 3 @ #m %m 1 0 12201166 -genus_tarsius n 1 3 @ #m %m 1 0 02501432 -genus_taurotragus n 1 3 @ #m %m 1 0 02426634 -genus_tautoga n 1 3 @ #m %m 1 0 02609951 -genus_tautogolabrus n 1 3 @ #m %m 1 0 02610234 -genus_taxidea n 1 3 @ #m %m 1 0 02447591 -genus_taxodium n 1 3 @ #m %m 1 0 11641788 -genus_taxus n 1 3 @ #m %m 1 0 11661207 -genus_tayassu n 1 3 @ #m %m 1 0 02397377 -genus_tectaria n 1 3 @ #m %m 1 0 13201239 -genus_tectona n 1 3 @ #m %m 1 0 12916356 -genus_telanthera n 1 2 @ #m 1 0 11826999 -genus_tellima n 1 3 @ #m %m 1 0 12802987 -genus_telopea n 1 3 @ #m %m 1 0 12223405 -genus_templetonia n 1 3 @ #m %m 1 0 12572021 -genus_tenrec n 1 3 @ #m %m 1 0 01894381 -genus_tephrosia n 1 3 @ #m %m 1 0 12572373 -genus_terebella n 1 2 @ #m 1 0 01937234 -genus_teredo n 1 3 @ #m %m 1 0 01966961 -genus_termes n 1 2 @ #m 1 0 02223151 -genus_terrapene n 1 3 @ #m %m 1 0 01669068 -genus_terrietia n 1 2 @ #m 1 0 12199564 -genus_testudo n 1 3 @ #m %m 1 0 01670378 -genus_tethus n 1 3 @ #m %m 1 0 01951107 -genus_tetraclinis n 1 2 @ #m 1 0 11642912 -genus_tetragonia n 1 3 @ #m %m 1 0 11822167 -genus_tetragonurus n 1 3 @ #m %m 1 0 02634717 -genus_tetrahymena n 1 3 @ #m %m 1 0 01396170 -genus_tetraneuris n 1 3 @ #m %m 1 0 12025019 -genus_tetrao n 1 3 @ #m %m 1 0 01796870 -genus_tetrapturus n 1 3 @ #m %m 1 0 02631899 -genus_teucrium n 1 3 @ #m %m 1 0 12869248 -genus_thalarctos n 1 3 @ #m %m 1 0 02133902 -genus_thalassoma n 1 3 @ #m %m 1 0 02609169 -genus_thalictrum n 1 3 @ #m %m 1 0 11738378 -genus_thamnophilus n 1 3 @ #m %m 1 0 01553620 -genus_thamnophis n 1 3 @ #m %m 1 0 01735062 -genus_thelypteris n 1 3 @ #m %m 1 0 13227557 -genus_theobroma n 1 3 @ #m %m 1 0 12201456 -genus_thermobia n 1 3 @ #m %m 1 0 02270810 -genus_thermopsis n 1 3 @ #m %m 1 0 12573078 -genus_thespesia n 1 3 @ #m %m 1 0 12188120 -genus_thevetia n 1 3 @ #m %m 1 0 11776861 -genus_thielavia n 1 3 @ #m %m 1 0 13027670 -genus_thiobacillus n 1 3 @ #m %m 1 0 01362999 -genus_thlaspi n 1 3 @ #m %m 1 0 11898474 -genus_thomomys n 1 3 @ #m %m 1 0 02354470 -genus_threskiornis n 1 3 @ #m %m 1 0 02006211 -genus_thrinax n 1 3 @ #m %m 1 0 12597640 -genus_thrips n 1 3 @ #m %m 1 0 02272428 -genus_thryothorus n 1 3 @ #m %m 1 0 01585890 -genus_thuja n 1 3 @ #m %m 1 0 11643684 -genus_thujopsis n 1 3 @ #m %m 1 0 11644712 -genus_thunbergia n 1 3 @ #m %m 1 0 12813024 -genus_thunnus n 1 3 @ #m %m 1 0 02626590 -genus_thylacinus n 1 3 @ #m %m 1 0 01884348 -genus_thylogale n 1 3 @ #m %m 1 0 01879095 -genus_thymus n 1 3 @ #m %m 1 0 12870392 -genus_thyrsopteris n 1 3 @ #m %m 1 0 13191770 -genus_thysanocarpus n 1 3 @ #m %m 1 0 11899027 -genus_tiarella n 1 3 @ #m %m 1 0 12803517 -genus_tibicen n 1 3 @ #m %m 1 0 02256882 -genus_tichodroma n 1 3 @ #m %m 1 0 01590042 -genus_tilapia n 1 2 @ #m 1 0 02586129 -genus_tilia n 1 3 @ #m %m 1 0 12202712 -genus_tillandsia n 1 3 @ #m %m 1 0 12607896 -genus_tilletia n 1 3 @ #m %m 1 0 13068073 -genus_timalia n 1 3 @ #m %m 1 0 01566509 -genus_tinca n 1 3 @ #m %m 1 0 01440655 -genus_tinea n 1 3 @ #m %m 1 0 02291940 -genus_tineola n 1 3 @ #m %m 1 0 02292272 -genus_tipuana n 1 3 @ #m %m 1 0 12573760 -genus_titanosaurus n 1 3 @ #m %m 1 0 01710529 -genus_tithonia n 1 3 @ #m %m 1 0 12025849 -genus_todea n 1 3 @ #m %m 1 0 12954634 -genus_todus n 1 3 @ #m %m 1 0 01831231 -genus_tofieldia n 1 3 @ #m %m 1 0 12461809 -genus_tolmiea n 1 3 @ #m %m 1 0 12804216 -genus_tolypeutes n 1 3 @ #m %m 1 0 02454999 -genus_tomistoma n 1 3 @ #m %m 1 0 01697837 -genus_toona n 1 3 @ #m %m 1 0 12700219 -genus_torreya n 1 3 @ #m %m 1 0 11649012 -genus_tortrix n 1 3 @ #m %m 1 0 02284367 -genus_townsendia n 1 3 @ #m %m 1 0 12026306 -genus_toxicodendron n 1 3 @ #m %m 1 0 12766241 -genus_toxostoma n 1 3 @ #m %m 1 0 01587713 -genus_toxotes n 1 3 @ #m %m 1 0 02620443 -genus_trachelospermum n 1 3 @ #m %m 1 0 11777365 -genus_trachinotus n 1 3 @ #m %m 1 0 02579420 -genus_trachipterus n 1 3 @ #m %m 1 0 02546477 -genus_trachodon n 1 3 @ #m %m 1 0 01707149 -genus_trachurus n 1 2 @ #m 1 0 02580546 -genus_tradescantia n 1 2 @ #m 1 0 12606797 -genus_tragelaphus n 1 3 @ #m %m 1 0 02423787 -genus_tragopan n 1 3 @ #m %m 1 0 01806984 -genus_tragopogon n 1 3 @ #m %m 1 0 12026764 -genus_tragulus n 1 3 @ #m %m 1 0 02436067 -genus_trapa n 1 3 @ #m %m 1 0 12348127 -genus_trautvetteria n 1 3 @ #m %m 1 0 11738832 -genus_trema n 1 2 @ #m 1 0 12410205 -genus_tremella n 1 3 @ #m %m 1 0 13060912 -genus_treponema n 1 3 @ #m %m 1 0 01382482 -genus_triaenodon n 1 3 @ #m %m 1 0 01493012 -genus_trialeurodes n 1 3 @ #m %m 1 0 02247076 -genus_triatoma n 1 3 @ #m %m 1 0 02244396 -genus_tribolium n 1 3 @ #m %m 1 0 02181599 -genus_tribonema n 1 3 @ #m %m 1 0 01401686 -genus_tribulus n 1 3 @ #m %m 1 0 12723446 -genus_triceratops n 1 3 @ #m %m 1 0 01704184 -genus_trichecus n 1 3 @ #m %m 1 0 02073679 -genus_trichoceros n 1 3 @ #m %m 1 0 12085469 -genus_trichodesmium n 1 3 @ #m %m 1 0 01359631 -genus_trichoglossus n 1 3 @ #m %m 1 0 01820937 -genus_tricholoma n 1 3 @ #m %m 1 0 13016749 -genus_trichomanes n 1 3 @ #m %m 1 0 12952022 -genus_trichomonas n 1 3 @ #m %m 1 0 01420314 -genus_trichophaga n 1 3 @ #m %m 1 0 02292564 -genus_trichophyton n 1 2 @ #m 1 0 13078483 -genus_trichostema n 1 3 @ #m %m 1 0 12871074 -genus_trichostigma n 1 2 @ #m 1 0 11856815 -genus_trichosurus n 1 3 @ #m %m 1 0 01881717 -genus_trichys n 1 3 @ #m %m 1 0 02347443 -genus_tridacna n 1 3 @ #m %m 1 0 01959333 -genus_trifolium n 1 3 @ #m %m 1 0 11752404 -genus_triga n 1 3 @ #m %m 1 0 02650282 -genus_triglochin n 1 3 @ #m %m 1 0 12617384 -genus_trigonella n 1 3 @ #m %m 1 0 12574143 -genus_trilisa n 1 3 @ #m %m 1 0 12027864 -genus_trillium n 1 3 @ #m %m 1 0 12468081 -genus_trimorphodon n 1 3 @ #m %m 1 0 01739518 -genus_trinectes n 1 3 @ #m %m 1 0 02665119 -genus_tringa n 1 3 @ #m %m 1 0 02027730 -genus_trionyx n 1 3 @ #m %m 1 0 01672275 -genus_triops n 1 3 @ #m %m 1 0 01996091 -genus_triostium n 1 3 @ #m %m 1 0 12679712 -genus_tripleurospermum n 1 3 @ #m %m 1 0 12028196 -genus_triplochiton n 1 3 @ #m %m 1 0 12201761 -genus_triticum n 1 3 @ #m %m 1 0 12141890 -genus_triturus n 1 3 @ #m %m 1 0 01630533 -genus_trogium n 1 3 @ #m %m 1 0 02261630 -genus_troglodytes n 1 3 @ #m %m 1 0 01584529 -genus_trogon n 1 2 @ #m 1 0 01844125 -genus_trollius n 1 3 @ #m %m 1 0 11739199 -genus_trombicula n 1 3 @ #m %m 1 0 01780919 -genus_tropaeolum n 1 3 @ #m %m 1 0 12719455 -genus_tropidoclonion n 1 3 @ #m %m 1 0 01735898 -genus_truncocolumella n 1 3 @ #m %m 1 0 12971956 -genus_tsuga n 1 3 @ #m %m 1 0 11627028 -genus_tuber n 1 3 @ #m %m 1 0 12985236 -genus_tubercularia n 1 2 @ #m 1 0 13081565 -genus_tulestoma n 1 3 @ #m %m 1 0 12970560 -genus_tulipa n 1 3 @ #m %m 1 0 12454021 -genus_tulostoma n 1 3 @ #m %m 1 0 12970560 -genus_tunga n 1 3 @ #m %m 1 0 02187427 -genus_tupaia n 1 2 @ #m 1 0 02495099 -genus_tupinambis n 1 3 @ #m %m 1 0 01687009 -genus_turbatrix n 1 3 @ #m %m 1 0 01931984 -genus_turdus n 1 3 @ #m %m 1 0 01557697 -genus_turnix n 1 3 @ #m %m 1 0 02019762 -genus_turreae n 1 3 @ #m %m 1 0 12700831 -genus_turritis n 1 3 @ #m %m 1 0 11899432 -genus_tursiops n 1 3 @ #m %m 1 0 02069569 -genus_tussilago n 1 3 @ #m %m 1 0 12029326 -genus_tylenchus n 1 3 @ #m %m 1 0 01932495 -genus_tympanuchus n 1 3 @ #m %m 1 0 01798352 -genus_typha n 1 3 @ #m %m 1 0 12155459 -genus_tyrannosaurus n 1 3 @ #m %m 1 0 01713635 -genus_tyrannus n 1 3 @ #m %m 1 0 01548143 -genus_tyto n 1 3 @ #m %m 1 0 01625417 -genus_uca n 1 3 @ #m %m 1 0 01980053 -genus_uintatherium n 1 3 @ #m %m 1 0 02371801 -genus_ulex n 1 3 @ #m %m 1 0 12574727 -genus_ulmus n 1 3 @ #m %m 1 0 12405209 -genus_ulva n 1 3 @ #m %m 1 0 01408547 -genus_uma n 1 3 @ #m %m 1 0 01678887 -genus_umbellularia n 1 3 @ #m %m 1 0 11707668 -genus_umbrina n 1 3 @ #m %m 1 0 02596888 -genus_unio n 1 3 @ #m %m 1 0 01964821 -genus_upupa n 1 3 @ #m %m 1 0 01829739 -genus_urginea n 1 3 @ #m %m 1 0 12462401 -genus_uria n 1 3 @ #m %m 1 0 02047152 -genus_urocyon n 1 3 @ #m %m 1 0 02120387 -genus_urocystis n 1 3 @ #m %m 1 0 13068565 -genus_urophycis n 1 3 @ #m %m 1 0 02524811 -genus_uropsilus n 1 3 @ #m %m 1 0 01890718 -genus_urosaurus n 1 3 @ #m %m 1 0 01681513 -genus_ursinia n 1 3 @ #m %m 1 0 12029929 -genus_ursus n 1 3 @ #m %m 1 0 02131942 -genus_urtica n 1 3 @ #m %m 1 0 12392385 -genus_usnea n 1 3 @ #m %m 1 0 12989739 -genus_ustilaginoidea n 1 3 @ #m %m 1 0 13081050 -genus_ustilago n 1 2 @ %m 1 0 13066803 -genus_uta n 1 3 @ #m %m 1 0 01681200 -genus_utahraptor n 1 3 @ #m %m 1 0 01718276 -genus_utricularia n 1 3 @ #m %m 1 0 12872257 -genus_uvularia n 1 3 @ #m %m 1 0 12474828 -genus_vaccaria n 1 3 @ #m %m 1 0 11818515 -genus_vaccinium n 1 3 @ #m %m 1 0 12245472 -genus_valeriana n 1 3 @ #m %m 1 0 12949955 -genus_valerianella n 1 3 @ #m %m 1 0 12950501 -genus_vallisneria n 1 3 @ #m %m 1 0 12615097 -genus_vanda n 1 3 @ #m %m 1 0 12085840 -genus_vanellus n 1 3 @ #m %m 1 0 02024636 -genus_vanessa n 1 3 @ #m %m 1 0 02275921 -genus_vangueria n 1 3 @ #m %m 1 0 12670558 -genus_vanilla n 1 3 @ #m %m 1 0 12086362 -genus_varanus n 1 3 @ #m %m 1 0 01694558 -genus_vedalia n 1 3 @ #m %m 1 0 02166674 -genus_velociraptor n 1 3 @ #m %m 1 0 01717335 -genus_venus n 1 3 @ #m %m 1 0 01957739 -genus_veratrum n 1 3 @ #m %m 1 0 12464278 -genus_verbascum n 1 3 @ #m %m 1 0 12888733 -genus_verbena n 1 3 @ #m %m 1 0 12914731 -genus_verbesina n 1 3 @ #m %m 1 0 12030265 -genus_vernonia n 1 3 @ #m %m 1 0 12031739 -genus_veronica n 1 3 @ #m %m 1 0 12890009 -genus_verticillium n 1 3 @ #m %m 1 0 13077811 -genus_vesicaria n 1 3 @ #m %m 1 0 11899595 -genus_vespa n 1 2 @ #m 1 0 02212811 -genus_vespertilio n 1 3 @ #m %m 1 0 02145767 -genus_vespula n 1 3 @ #m %m 1 0 02213362 -genus_vibrio n 1 3 @ #m %m 1 0 01364008 -genus_viburnum n 1 3 @ #m %m 1 0 12680125 -genus_vicia n 1 3 @ #m %m 1 0 12575089 -genus_vicugna n 1 3 @ #m %m 1 0 02438452 -genus_vidua n 1 3 @ #m %m 1 0 01543272 -genus_vigna n 1 3 @ #m %m 1 0 12577000 -genus_viminaria n 1 3 @ #m %m 1 0 12579242 -genus_vinca n 1 3 @ #m %m 1 0 11777779 -genus_vincetoxicum n 1 3 @ #m %m 1 0 13239471 -genus_viola n 1 3 @ #m %m 1 0 12387478 -genus_vipera n 1 3 @ #m %m 1 0 01752433 -genus_vireo n 1 3 @ #m %m 1 0 01602506 -genus_virgilia n 1 3 @ #m %m 1 0 12579593 -genus_viscum n 1 3 @ #m %m 1 0 12739072 -genus_vitis n 1 3 @ #m %m 1 0 13144511 -genus_vittaria n 1 3 @ #m %m 1 0 13179648 -genus_viverra n 1 2 @ #m 1 0 02135486 -genus_viverricula n 1 2 @ #m 1 0 02135726 -genus_volvaria n 1 3 @ #m %m 1 0 13018749 -genus_volvariella n 1 3 @ #m %m 1 0 13020011 -genus_volvox n 1 2 @ #m 1 0 01409244 -genus_vorticella n 1 3 @ #m %m 1 0 01396776 -genus_vulpes n 1 3 @ #m %m 1 0 02118854 -genus_vultur n 1 3 @ #m %m 1 0 01619675 -genus_weigela n 1 3 @ #m %m 1 0 12681768 -genus_welwitchia n 1 3 @ #m %m 1 0 11599165 -genus_welwitschia n 1 3 @ #m %m 1 0 11599165 -genus_wintera n 1 3 @ #m %m 1 0 11740208 -genus_wisteria n 1 3 @ #m %m 1 0 12580204 -genus_wolffia n 1 3 @ #m %m 1 0 11795774 -genus_wolffiella n 1 3 @ #m %m 1 0 11796318 -genus_woodsia n 1 3 @ #m %m 1 0 13201725 -genus_woodwardia n 1 3 @ #m %m 1 0 13186200 -genus_wyethia n 1 3 @ #m %m 1 0 12032215 -genus_wynnea n 1 1 @ 1 0 13034431 -genus_xanthium n 1 3 @ #m %m 1 0 12032939 -genus_xanthomonas n 1 3 @ #m %m 1 0 01361465 -genus_xanthorroea n 1 3 @ #m %m 1 0 12466034 -genus_xanthosoma n 1 3 @ #m %m 1 0 11793252 -genus_xenicus n 1 3 @ #m %m 1 0 01588589 -genus_xenopus n 1 3 @ #m %m 1 0 01654429 -genus_xenorhyncus n 1 3 @ #m %m 1 0 02004343 -genus_xenosaurus n 1 2 @ #m 1 0 01690857 -genus_xeranthemum n 1 3 @ #m %m 1 0 12033310 -genus_xerobates n 1 2 @ #m 1 0 01671312 -genus_xerophyllum n 1 3 @ #m %m 1 0 12465321 -genus_xiphias n 1 3 @ #m %m 1 0 02629581 -genus_xylaria n 1 3 @ #m %m 1 0 12966581 -genus_xylocopa n 1 3 @ #m %m 1 0 02209230 -genus_xylomelum n 1 3 @ #m %m 1 0 12223950 -genus_xylopia n 1 3 @ #m %m 1 0 11696776 -genus_xylosma n 1 3 @ #m %m 1 0 12380926 -genus_xyphophorus n 1 3 @ #m %m 1 0 01448165 -genus_xyris n 1 3 @ #m %m 1 0 12605519 -genus_yucca n 1 3 @ #m %m 1 0 12481806 -genus_zaglossus n 1 3 @ #m %m 1 0 01872635 -genus_zalophus n 1 3 @ #m %m 1 0 02078436 -genus_zamia n 1 3 @ #m %m 1 0 11601757 -genus_zannichellia n 1 2 @ #m 1 0 12617950 -genus_zantedeschia n 1 3 @ #m %m 1 0 11793651 -genus_zanthoxylum n 1 3 @ #m %m 1 0 12714550 -genus_zapus n 1 3 @ #m %m 1 0 02351212 -genus_zea n 1 3 @ #m %m 1 0 12143572 -genus_zenaidura n 1 3 @ #m %m 1 0 01814091 -genus_zerumbet n 1 3 @ #m %m 1 0 12356668 -genus_zeus n 1 3 @ #m %m 1 0 01452954 -genus_zigadenus n 1 3 @ #m %m 1 0 12466450 -genus_zingiber n 1 3 @ #m %m 1 0 12355594 -genus_zinjanthropus n 1 1 @ 1 0 02477187 -genus_zinnia n 1 3 @ #m %m 1 0 12033939 -genus_zizania n 1 3 @ #m %m 1 0 12145802 -genus_ziziphus n 1 3 @ #m %m 1 0 13143097 -genus_zoarces n 1 3 @ #m %m 1 0 02617402 -genus_zoisia n 1 3 @ #m %m 1 0 12146100 -genus_zonotrichia n 1 3 @ #m %m 1 0 01535310 -genus_zostera n 1 3 @ #m %m 1 0 12618524 -genus_zoysia n 1 3 @ #m %m 1 0 12146100 -genus_zygnema n 1 2 @ #m 1 0 01410330 -genus_zygocactus n 1 3 @ #m %m 1 0 11854232 -genus_zygophyllum n 1 3 @ #m %m 1 0 12720893 -genyonemus n 1 3 @ #m %m 1 0 02598438 -genyonemus_lineatus n 1 2 @ #m 1 0 02598573 -geocentric_parallax n 1 2 @ ~ 1 0 11528939 -geochelone n 1 3 @ #m %m 1 0 01670673 -geochemistry n 1 1 @ 1 1 06090304 -geococcyx n 1 3 @ #m %m 1 0 01823912 -geococcyx_californianus n 1 2 @ #m 1 0 01824035 -geode n 1 2 @ ; 1 0 09287817 -geodesic n 1 3 @ + ; 1 0 13870414 -geodesic_dome n 1 1 @ 1 0 03435593 -geodesic_line n 1 2 @ ; 1 0 13870414 -geodesy n 1 2 @ + 1 0 06120881 -geoduck n 1 1 @ 1 0 01958531 -geoffrey_chaucer n 1 1 @ 1 0 10894065 -geoffrey_of_monmouth n 1 1 @ 1 0 10994660 -geoffroea n 1 3 @ #m %m 1 0 12531144 -geoffroea_decorticans n 1 2 @ #m 1 0 12531328 -geogia_holly n 1 1 @ 1 0 12758399 -geoglossaceae n 1 3 @ #m %m 1 0 13226526 -geoglossum n 1 3 @ #m %m 1 0 13226698 -geographer n 1 3 @ ~ + 1 1 10127555 -geographic_area n 1 2 @ ~ 1 0 08574314 -geographic_expedition n 1 1 @ 1 0 00310063 -geographic_point n 1 2 @ ~ 1 0 08578706 -geographic_region n 1 2 @ ~ 1 0 08574314 -geographical_area n 1 2 @ ~ 1 1 08574314 -geographical_mile n 1 1 @ 1 0 13660619 -geographical_point n 1 2 @ ~ 1 0 08578706 -geographical_region n 1 2 @ ~ 1 0 08574314 -geographical_zone n 1 2 @ ~ 1 0 08541841 -geographics n 1 2 @ ~ 1 0 06122178 -geography n 1 3 @ ~ + 1 0 06122178 -geologic_process n 1 3 @ ~ ; 1 0 13486838 -geologic_time n 1 2 @ ~ 1 0 15116283 -geological_dating n 1 2 @ ~ 1 0 00992331 -geological_era n 1 4 @ ~ #p %p 1 0 15248020 -geological_fault n 1 4 @ ~ %p ; 1 0 09278537 -geological_formation n 1 3 @ ~ ; 1 0 09287968 -geological_horizon n 1 1 @ 1 0 08658918 -geological_period n 1 4 @ ~ #p %p 1 0 15247518 -geological_phenomenon n 1 3 @ ~ ; 1 0 11417672 -geological_process n 1 3 @ ~ ; 1 0 13486838 -geological_time n 1 2 @ ~ 1 0 15116283 -geologist n 1 3 @ ~ + 1 1 10127689 -geology n 1 4 @ ~ + - 1 1 06115701 -geomancer n 1 2 @ + 1 0 10127916 -geomancy n 1 2 @ + 1 0 05776875 -geometer n 1 2 @ ~ 1 0 10128016 -geometric_mean n 1 2 @ ; 1 0 06024431 -geometric_pace n 1 1 @ 1 0 13655790 -geometric_progression n 1 2 @ ; 1 0 08461172 -geometric_series n 1 1 @ 1 0 05863480 -geometrical_irregularity n 1 1 @ 1 0 05066012 -geometrical_regularity n 1 1 @ 1 0 05065211 -geometrician n 1 3 @ ~ + 1 0 10128016 -geometrid n 1 3 @ ~ #m 1 0 02287004 -geometrid_moth n 1 3 @ ~ #m 1 0 02287004 -geometridae n 1 3 @ #m %m 1 0 02286815 -geometry n 1 5 @ ~ + ; - 1 1 06004685 -geometry_teacher n 1 1 @ 1 0 10128163 -geomorphology n 1 3 @ ~ + 1 0 06117855 -geomyidae n 1 3 @ #m %m 1 0 02353529 -geomys n 1 3 @ #m %m 1 0 02353709 -geomys_bursarius n 1 2 @ #m 1 0 02354162 -geomys_pinetis n 1 2 @ #m 1 0 02354320 -geophagia n 1 1 @ 1 0 00840898 -geophagy n 1 1 @ 1 0 00840898 -geophilidae n 1 3 @ #m %m 1 0 01786048 -geophilomorpha n 1 3 @ #m %m 1 0 01785831 -geophilus n 1 2 @ #m 1 0 01786219 -geophysical_science n 1 2 @ ~ 1 0 06117562 -geophysicist n 1 3 @ ~ + 1 0 10128519 -geophysics n 1 3 @ ~ + 1 0 06117562 -geophyte n 1 2 @ + 1 0 13120958 -geopolitics n 1 3 @ ~ + 1 0 06148748 -geordie n 2 1 @ 2 0 09704283 06948149 -georg_friedrich_bernhard_riemann n 1 1 @ 1 0 11262168 -georg_friedrich_handel n 1 1 @ 1 0 11027631 -georg_meissner n 1 1 @ 1 0 11171513 -georg_philipp_telemann n 1 1 @ 1 0 11334925 -georg_simon_ohm n 1 1 @ 1 0 11213094 -georg_wilhelm_friedrich_hegel n 1 1 @ 1 0 11038084 -georg_wilhelm_steller n 1 1 @ 1 0 11316141 -george n 7 3 @ #m + 7 0 10996285 10996090 10995850 10995592 10995292 10995115 10994906 -george_armstrong_custer n 1 1 @ 1 0 10919061 -george_balanchine n 1 1 @ 1 0 10831656 -george_beadle n 1 1 @ 1 0 10839131 -george_berkeley n 1 1 @ 1 0 10847125 -george_bernard_shaw n 1 1 @ 1 0 11295936 -george_boole n 1 1 @ 1 0 10857271 -george_bryan_brummell n 1 1 @ 1 0 10868397 -george_burns n 1 1 @ 1 0 10873783 -george_bush n 2 1 @ 2 0 10875910 10875468 -george_c._scott n 1 1 @ 1 0 11289709 -george_catlett_marshall n 1 1 @ 1 0 11158982 -george_charles_hevesy_de_hevesy n 1 1 @ 1 0 11048389 -george_dewey n 1 1 @ 1 0 10933084 -george_dibdin-pitt n 1 1 @ 1 0 11236663 -george_dibdin_pitt n 1 1 @ 1 0 11236663 -george_du_maurier n 1 1 @ 1 0 10945048 -george_eastman n 1 1 @ 1 0 10947628 -george_edward_moore n 1 1 @ 1 0 11189709 -george_edward_pickett n 1 1 @ 1 0 11234472 -george_eliot n 1 1 @ 1 0 10956883 -george_ellery_hale n 1 1 @ 1 0 11023442 -george_enescu n 1 1 @ 1 0 10959074 -george_f._kennan n 1 1 @ 1 0 11100798 -george_fox n 1 1 @ 1 0 10976862 -george_frederick_handel n 1 1 @ 1 0 11027631 -george_frideric_handel n 1 1 @ 1 0 11027631 -george_frost_kennan n 1 1 @ 1 0 11100798 -george_gamow n 1 1 @ 1 0 10989099 -george_gershwin n 1 1 @ 1 0 10996876 -george_gilbert_aime_murphy n 1 1 @ 1 0 11197417 -george_gordon_meade n 1 1 @ 1 0 11170438 -george_guess n 1 1 @ 1 0 11293157 -george_h.w._bush n 1 1 @ 1 0 10875468 -george_harrison n 1 2 @ #m 1 0 11031842 -george_herbert_hitchings n 1 1 @ 1 0 11052498 -george_herbert_mead n 1 1 @ 1 0 11170123 -george_herbert_walker_bush n 1 1 @ 1 0 10875468 -george_herman_ruth n 1 1 @ 1 0 11276100 -george_hubert_wilkins n 1 1 @ 1 0 11387539 -george_huntington n 1 1 @ 1 0 11067604 -george_i n 1 2 @ #m 1 0 10994906 -george_ii n 1 2 @ #m 1 0 10995115 -george_iii n 1 2 @ #m 1 0 10995292 -george_iv n 1 2 @ #m 1 0 10995592 -george_louis_palmella_busson_du_maurier n 1 1 @ 1 0 10945048 -george_lucas n 1 1 @ 1 0 11143458 -george_m._cohan n 1 1 @ 1 0 10904463 -george_macaulay_trevelyan n 1 1 @ 1 0 11348584 -george_marshall n 1 1 @ 1 0 11158982 -george_mason n 1 1 @ 1 0 11163160 -george_meany n 1 1 @ 1 0 11170764 -george_meredith n 1 1 @ 1 0 11175875 -george_michael_cohan n 1 1 @ 1 0 10904463 -george_orson_welles n 1 1 @ 1 0 11380768 -george_orwell n 1 1 @ 1 0 11217479 -george_otto_trevelyan n 1 1 @ 1 0 11348356 -george_paget_thomson n 1 1 @ 1 0 11340411 -george_percy_aldridge_grainger n 1 1 @ 1 0 11010697 -george_pitt n 1 1 @ 1 0 11236663 -george_s._kaufman n 1 1 @ 1 0 11097625 -george_sand n 1 1 @ 1 0 11280013 -george_segal n 1 1 @ 1 0 11291179 -george_simon_kaufman n 1 1 @ 1 0 11097625 -george_stephenson n 1 1 @ 1 0 11316669 -george_stevens n 1 1 @ 1 0 11317309 -george_szell n 1 1 @ 1 0 11327964 -george_town n 1 2 @ #p 1 0 08709593 -george_v n 1 2 @ #m 1 0 10995850 -george_vancouver n 1 1 @ 1 0 11358863 -george_vi n 1 2 @ #m 1 0 10996090 -george_w._bush n 1 1 @ 1 0 10875910 -george_walker_bush n 1 1 @ 1 0 10875910 -george_washington n 1 1 @ 1 1 11375418 -george_washington_bridge n 1 2 @ #p 1 0 03435825 -george_washington_carver n 1 1 @ 1 0 10885603 -george_washington_goethals n 1 1 @ 1 0 11003918 -george_wells_beadle n 1 1 @ 1 0 10839131 -george_westinghouse n 1 1 @ 1 0 11382555 -george_william_russell n 1 1 @ 1 0 11275035 -georges_bizet n 1 1 @ 1 0 10851865 -georges_braque n 1 1 @ 1 0 10862999 -georges_clemenceau n 1 1 @ 1 0 10900524 -georges_cuvier n 1 1 @ 1 0 10919278 -georges_de_la_tour n 1 1 @ 1 0 11118481 -georges_enesco n 1 1 @ 1 0 10959074 -georges_eugene_benjamin_clemenceau n 1 1 @ 1 0 10900524 -georges_gilles_de_la_tourette n 1 1 @ 1 0 11346568 -georges_henri_lemaitre n 1 1 @ 1 0 11125646 -georges_jacques_danton n 1 1 @ 1 0 10922501 -georges_joseph_christian_simenon n 1 1 @ 1 0 11300678 -georges_leopold_chretien_frederic_dagobert_cuvier n 1 1 @ 1 0 10919278 -georges_pierre_seurat n 1 1 @ 1 0 11294202 -georges_seurat n 1 1 @ 1 0 11294202 -georges_simenon n 1 1 @ 1 0 11300678 -georgetown n 2 2 @ #p 2 0 09071571 08948704 -georgette n 1 1 @ 1 0 03435743 -georgi_konstantinovich_zhukov n 1 1 @ 1 0 11406460 -georgi_zhukov n 1 1 @ 1 0 11406460 -georgia n 3 7 @ #m #p %m %p + - 3 2 09075842 09076421 09018848 -georgia_bark n 1 2 @ #m 1 0 12669362 -georgia_home_boy n 1 1 @ 1 0 04253751 -georgia_okeeffe n 1 1 @ 1 0 11213216 -georgia_pine n 1 1 @ 1 0 11615967 -georgian n 3 3 @ #m + 3 1 09742443 09729156 06978766 -georgian_monetary_unit n 1 2 @ ~ 1 0 13700533 -georgiana_barrymore n 1 1 @ 1 0 10835450 -georgiana_emma_barrymore n 1 1 @ 1 0 10835450 -geosphere n 1 3 @ #p %p 1 0 09339810 -geostationary_orbit n 1 1 @ 1 0 08612644 -geostrategy n 1 2 @ + 1 0 06148915 -geosynchronous_orbit n 1 2 @ ~ 1 0 08612498 -geothermal_energy n 1 1 @ 1 0 11466337 -geothlypis n 1 3 @ #m %m 1 0 01570549 -geothlypis_trichas n 1 1 @ 1 0 01570839 -geotropism n 1 1 @ 1 0 00861990 -geraint n 1 2 @ ; 1 0 10996533 -gerald_ford n 1 1 @ 1 0 10974740 -gerald_r._ford n 1 1 @ 1 0 10974740 -gerald_rudolph_ford n 1 1 @ 1 0 10974740 -geraniaceae n 1 3 @ #m %m 1 0 12685214 -geraniales n 1 3 @ #m %m 1 0 12684640 -geranium n 1 3 @ ~ #m 1 0 12685431 -geranium_family n 1 3 @ #m %m 1 0 12685214 -geranium_maculatum n 1 1 @ 1 0 12686077 -geranium_molle n 1 1 @ 1 0 12687044 -geranium_pratense n 1 1 @ 1 0 12686274 -geranium_richardsonii n 1 1 @ 1 0 12686496 -geranium_robertianum n 1 1 @ 1 0 12686676 -geranium_viscosissimum n 1 1 @ 1 0 12686877 -gerard_depardieu n 1 1 @ 1 0 10931059 -gerard_kuiper n 1 1 @ 1 0 11112628 -gerard_manley_hopkins n 1 1 @ 1 0 11059772 -gerard_peter_kuiper n 1 1 @ 1 0 11112628 -gerardia n 1 2 @ #m 1 0 12883628 -gerardia_pedicularia n 1 2 @ #m 1 0 12878784 -gerardia_virginica n 1 2 @ #m 1 0 12879068 -gerardus_mercator n 1 1 @ 1 0 11175243 -gerbera n 1 3 @ #m %m 1 0 11971600 -gerbera_jamesonii n 1 2 @ #m 1 0 11971927 -gerbert n 1 1 @ 1 0 11327398 -gerbil n 1 3 @ ~ #m 1 0 02343772 -gerbille n 1 3 @ ~ #m 1 0 02343772 -gerbillinae n 1 3 @ #m %m 1 0 02343487 -gerbillus n 1 2 @ #m 1 0 02343633 -gerea n 1 3 @ #m %m 1 0 11972141 -gerea_canescens n 1 2 @ #m 1 0 11972291 -gerenuk n 1 2 @ #m 1 0 02420828 -gerfalcon n 1 2 @ #m 1 0 01611800 -gerhard_gerhards n 1 1 @ 1 0 10959857 -gerhard_herzberg n 1 1 @ 1 0 11047139 -gerhard_kremer n 1 1 @ 1 0 11175243 -geriatrician n 1 2 @ + 1 0 10128381 -geriatrics n 1 2 @ + 1 0 06050650 -germ n 3 3 @ ~ + 3 1 05834758 05229805 01384491 -germ_cell n 1 3 @ ~ #p 1 0 05456732 -germ_layer n 1 3 @ ~ ; 1 0 01463519 -germ_plasm n 1 1 @ 1 0 05435722 -germ_pore n 1 1 @ 1 0 11680277 -germ_theory n 1 2 @ ; 1 0 06108487 -germ_tube n 1 2 @ ; 1 0 11680457 -germ_warfare n 1 1 @ 1 0 00996056 -german n 2 6 @ ~ #m + ; - 2 2 09747722 06950528 -german_american n 1 1 @ 1 0 09742315 -german_bee n 1 1 @ 1 0 02208848 -german_capital n 1 4 @ #p %m %p 1 0 08769645 -german_chamomile n 1 2 @ #m 1 0 11995092 -german_cockroach n 1 2 @ #m 1 0 02234848 -german_democratic_republic n 1 2 @ %m 1 0 08768647 -german_iris n 2 1 @ 2 0 12414159 12413880 -german_ivy n 1 2 @ #m 1 0 11960673 -german_language n 1 4 @ ~ ; - 1 0 06950528 -german_lesson n 1 1 @ 1 0 00729731 -german_luftwaffe n 1 1 @ 1 0 08195229 -german_mark n 1 2 @ %p 1 0 13688033 -german_measles n 1 1 @ 1 0 14123259 -german_millet n 1 1 @ 1 0 12135729 -german_monetary_unit n 1 2 @ ~ 1 0 13687906 -german_nazi n 1 2 @ ~ 1 0 10350220 -german_pancake n 1 1 @ 1 0 07641380 -german_police_dog n 1 1 @ 1 0 02106662 -german_rampion n 1 1 @ 1 0 12344483 -german_shepherd n 1 1 @ 1 0 02106662 -german_shepherd_dog n 1 1 @ 1 0 02106662 -german_short-haired_pointer n 1 1 @ 1 0 02100236 -german_silver n 1 1 @ 1 0 14962387 -german_tamarisk n 1 2 @ #m 1 0 12386945 -germander n 1 3 @ ~ #m 1 0 12869478 -germander_speedwell n 1 1 @ 1 0 12891305 -germaneness n 1 2 @ + 1 0 13795042 -germanic n 1 3 @ ~ + 1 0 06946497 -germanic_language n 1 2 @ ~ 1 0 06946497 -germanism n 1 1 @ 1 0 00414071 -germanist n 1 1 @ 1 0 10128254 -germanite n 1 2 @ %s 1 0 14676608 -germanium n 1 2 @ #s 1 1 14638517 -germany n 1 6 @ #m #p %m %p - 1 1 08766988 -germicide n 1 3 @ ~ + 1 0 03208229 -germinal n 1 2 @ #p 1 0 15176937 -germinal_area n 1 1 @ 1 0 01459480 -germinal_disc n 1 1 @ 1 0 01459480 -germination n 2 2 @ + 2 0 13487207 07324235 -geronimo n 1 1 @ 1 0 10996677 -gerontocracy n 1 1 @ 1 0 08361720 -gerontologist n 1 2 @ + 1 0 10128381 -gerontology n 1 2 @ + 1 0 06050650 -gerreidae n 1 3 @ #m %m 1 0 02636666 -gerres n 1 3 @ #m %m 1 0 02637046 -gerres_cinereus n 1 2 @ #m 1 0 02637179 -gerrhonotus n 1 3 @ #m %m 1 0 01689678 -gerridae n 2 3 @ #m %m 2 0 02636666 02243351 -gerrididae n 1 3 @ #m %m 1 0 02243351 -gerris n 1 3 @ #m %m 1 0 02243744 -gerris_lacustris n 1 2 @ #m 1 0 02243878 -gerrymander n 1 2 @ + 1 0 00754593 -gershwin n 2 1 @ 2 0 10997068 10996876 -gertrude_caroline_ederle n 1 1 @ 1 0 10948798 -gertrude_ederle n 1 1 @ 1 0 10948798 -gertrude_lawrence n 1 1 @ 1 0 11120530 -gertrude_stein n 1 1 @ 1 0 11314666 -gerund n 1 2 @ + 1 0 06318352 -geryon n 1 2 @ ; 1 0 09494951 -gesell n 1 1 @ 1 0 10997234 -gesner n 1 1 @ 1 0 10997405 -gesneria n 1 2 @ #m 1 0 12829975 -gesneria_family n 1 3 @ #m %m 1 0 12829099 -gesneriaceae n 1 3 @ #m %m 1 0 12829099 -gesneriad n 1 2 @ #m 1 0 12829582 -gesso n 1 1 @ 1 0 14676756 -gestalt n 1 1 @ 1 0 05931341 -gestalt_law_of_organization n 1 3 @ ~ #p 1 0 05878440 -gestalt_principle_of_organization n 1 3 @ ~ #p 1 0 05878440 -gestalt_psychology n 1 3 @ %p ; 1 0 06141324 -gestapo n 1 3 @ #p ; 1 0 08211760 -gestation n 3 5 @ ~ %p + - 3 0 15226214 14046202 05772215 -gestation_period n 1 2 @ %p 1 0 15226214 -gestational_age n 1 1 @ 1 0 04925064 -gesticulation n 1 2 @ + 1 0 06876771 -gesture n 3 3 @ ~ + 3 3 00334509 06876309 01228380 -get n 1 1 @ 1 0 00567896 -get-go n 1 2 @ ~ 1 0 15265518 -get-up-and-go n 1 2 @ ~ 1 0 04836683 -get-well_card n 1 1 @ 1 0 06627357 -get_together n 1 3 @ ~ + 1 0 08310389 -geta n 1 1 @ 1 0 03047690 -getaway n 2 2 @ + 2 0 05061003 00060201 -getting n 1 3 @ ~ + 1 0 00041899 -getting_even n 1 2 @ ~ 1 0 01234729 -gettysburg n 2 3 @ #p ; 2 0 09135590 01279615 -gettysburg_address n 1 1 @ 1 0 07239550 -getulio_dornelles_vargas n 1 1 @ 1 0 11360744 -getup n 1 3 @ ~ + 1 0 03859958 -geum n 1 3 @ #m %m 1 0 12631224 -geum_alleppicum_strictum n 1 1 @ 1 0 12631637 -geum_canadense n 1 1 @ 1 0 12631813 -geum_macrophyllum n 1 1 @ 1 0 12631932 -geum_rivale n 1 1 @ 1 0 12632072 -geum_strictum n 1 1 @ 1 0 12631637 -geum_triflorum n 1 1 @ 1 0 12632335 -geum_urbanum n 1 1 @ 1 0 12632526 -geum_virginianum n 1 1 @ 1 0 12632733 -gewgaw n 1 2 @ #m 1 0 02787435 -geyser n 1 3 @ ~ + 1 0 09288635 -ghana n 1 5 @ #p %m %p + 1 1 08946187 -ghanian n 1 3 @ #m + 1 0 09748889 -ghanian_monetary_unit n 1 2 @ ~ 1 0 13666922 -gharry n 1 1 @ 1 0 03435991 -ghastliness n 1 2 @ + 1 0 04782610 -ghat n 1 1 @ 1 0 03436075 -ghatti n 1 1 @ 1 0 14878844 -ghatti_gum n 1 1 @ 1 0 14878844 -ghb n 1 2 @ ~ 1 0 03414814 -ghedda_wax n 1 1 @ 1 0 15095014 -ghee n 1 1 @ 1 0 07848936 -gheg n 1 1 @ 1 0 06942419 -gheg_dialect n 1 1 @ 1 0 06942419 -ghent n 1 2 @ #p 1 0 08851500 -gherkin n 2 1 @ 2 0 07758582 07718671 -ghetto n 3 2 @ + 3 1 08578951 13963342 08549292 -ghetto_blaster n 1 2 @ ; 1 0 03436182 -ghillie n 1 1 @ 1 0 03436290 -ghost n 4 3 @ ~ + 4 1 05898171 10128748 09545976 07164163 -ghost_dance n 1 1 @ 1 0 00542323 -ghost_gum n 1 1 @ 1 0 12336727 -ghost_town n 1 2 @ ; 1 0 08671509 -ghost_weed n 1 2 @ #m 1 0 12919403 -ghost_word n 1 1 @ 1 0 06300058 -ghostfish n 1 2 @ #m 1 0 02616397 -ghostliness n 1 2 @ + 1 0 04798020 -ghostwriter n 1 2 @ + 1 0 10128748 -ghoul n 2 1 @ 2 2 10144571 09543673 -ghq n 1 2 @ ; 1 0 03076104 -ghrelin n 1 1 @ 1 0 05409663 -ghrf n 1 1 @ 1 0 15023537 -ghz n 1 1 @ 1 0 15278691 -gi n 1 1 @ 1 0 13642000 -gi_hormones n 1 2 @ ~ 1 0 05408684 -gi_series n 1 1 @ 1 0 05741578 -gi_tract n 1 4 @ ~ #p %p 1 0 05532225 -gia n 1 2 @ ; 1 0 08016035 -giacometti n 1 1 @ 1 0 10997553 -giacomo_della_chiesa n 1 1 @ 1 0 10844231 -giacomo_meyerbeer n 1 1 @ 1 0 11177695 -giacomo_puccini n 1 1 @ 1 0 11248077 -giambattista_lulli n 1 1 @ 1 0 11144860 -giambattista_marini n 1 1 @ 1 0 11156812 -giambattista_marino n 1 1 @ 1 0 11156812 -gian_carlo_menotti n 1 1 @ 1 0 11174901 -gianbattista_bodoni n 1 1 @ 1 0 10854265 -giannangelo_braschi n 1 1 @ 1 0 11237275 -gianni_versace n 1 1 @ 1 0 11364135 -giant n 7 3 @ ~ + 7 3 01323781 09938991 08056471 10129133 10128909 09488711 09288769 -giant_anteater n 1 2 @ #m 1 0 02460451 -giant_armadillo n 1 1 @ 1 0 02456008 -giant_bamboo n 1 2 @ #m 1 0 12148757 -giant_buttercup n 1 2 @ #m 1 0 11736362 -giant_cane n 1 3 @ #m #p 1 0 12148253 -giant_chinkapin n 1 2 @ #m 1 0 12264786 -giant_clam n 1 2 @ #m 1 0 01959492 -giant_cockroach n 1 2 @ #m 1 0 02235205 -giant_conch n 1 1 @ 1 0 01944118 -giant_coreopsis n 1 1 @ 1 0 11957317 -giant_crab n 1 2 @ #m 1 0 01982347 -giant_eland n 1 2 @ #m 1 0 02427183 -giant_fern n 1 2 @ #m 1 0 13215586 -giant_fir n 1 1 @ 1 0 11622368 -giant_foxtail n 1 1 @ 1 0 12134695 -giant_fulmar n 1 2 @ #m 1 0 02059852 -giant_garlic n 1 1 @ 1 0 12434985 -giant_granadilla n 1 2 @ %p 1 0 12384037 -giant_helleborine n 1 2 @ #m 1 0 12062781 -giant_hives n 1 1 @ 1 0 14120310 -giant_hornet n 1 1 @ 1 0 02213239 -giant_hyssop n 1 3 @ ~ #m 1 0 12839979 -giant_kangaroo n 1 2 @ #m 1 0 01877606 -giant_lizard n 1 1 @ 1 0 01695060 -giant_moa n 1 2 @ #m 1 0 01523248 -giant_northwest_shipworm n 1 2 @ #m 1 0 01967517 -giant_panda n 1 2 @ #m 1 0 02510455 -giant_perch n 1 2 @ #m 1 0 02560546 -giant_petrel n 1 2 @ #m 1 0 02059852 -giant_pigfish n 1 2 @ #m 1 0 02608284 -giant_potato_creeper n 1 2 @ #m 1 0 12897788 -giant_puffball n 1 2 @ #m 1 0 13044375 -giant_red_paintbrush n 1 1 @ 1 0 12880462 -giant_reed n 1 2 @ #m 1 0 12109498 -giant_ryegrass n 1 1 @ 1 0 12119390 -giant_salamander n 1 2 @ #m 1 0 01633781 -giant_scallop n 1 3 @ #m %p 1 0 01966586 -giant_schnauzer n 1 1 @ 1 0 02097130 -giant_scrambling_fern n 1 2 @ #m 1 0 13170840 -giant_seaperch n 1 2 @ #m 1 0 02560546 -giant_sequoia n 1 2 @ #m 1 0 11641494 -giant_silkworm n 1 4 @ ~ #m %p 1 0 02302620 -giant_silkworm_moth n 1 2 @ ~ 1 0 02302459 -giant_squid n 1 2 @ #m 1 0 01972131 -giant_star n 1 2 @ ~ 1 0 09288769 -giant_star_grass n 1 2 @ #m 1 0 12116058 -giant_stock_bean n 1 2 @ #m 1 0 12511239 -giant_sunflower n 1 1 @ 1 0 11978961 -giant_taro n 1 1 @ 1 0 11782266 -giant_timber_bamboo n 1 2 @ #m 1 0 12149521 -giant_tortoise n 1 2 @ #m 1 0 01670802 -giant_water_bug n 1 2 @ #m 1 0 02242137 -giant_willowherb n 1 2 @ #m 1 0 12342498 -giantess n 1 1 @ 1 0 09490756 -giantism n 2 2 @ %p 2 0 14368288 05106220 -giardia n 1 2 @ #m 1 0 01419888 -giardiasis n 1 1 @ 1 0 14177210 -gib n 2 3 @ #p %p 2 0 13628761 02122810 -gibber n 1 3 @ ~ + 1 0 06608728 -gibberellic_acid n 1 1 @ 1 0 14745368 -gibberellin n 1 2 @ ~ 1 0 14745222 -gibberish n 1 3 @ ~ + 1 0 06608728 -gibbet n 1 2 @ + 1 1 03413124 -gibbon n 2 2 @ #m 2 0 10997742 02483362 -gibbosity n 1 3 @ ~ + 1 0 13894434 -gibbousness n 1 3 @ ~ + 1 0 13894434 -gibbs n 1 1 @ 1 0 10997888 -gibbsite n 1 3 @ #s %s 1 0 14676943 -gibe n 1 3 @ ~ + 1 0 06767922 -gibibit n 1 3 @ #p %p 1 0 13629309 -gibibyte n 1 3 @ #p %p 1 0 13628761 -gibit n 1 3 @ #p %p 1 0 13629309 -giblet n 1 2 @ #p 1 0 07649096 -giblets n 1 2 @ #p 1 0 07649096 -gibraltar n 1 4 @ #p %m + 1 0 09028841 -gibraltar_fever n 1 1 @ 1 0 14128029 -gibraltarian n 1 3 @ #m + 1 0 09749011 -gibran n 1 1 @ 1 0 10997997 -gibson n 3 2 @ ; 3 0 10998474 10998305 10998117 -gibson_desert n 1 2 @ #p 1 0 09169557 -gibson_girl n 1 1 @ 1 1 10129338 -gidar n 1 1 @ 1 0 06984858 -giddiness n 2 3 @ ~ + 2 1 04648440 14372513 -gide n 1 1 @ 1 0 10998651 -gideon_algernon_mantell n 1 1 @ 1 0 11155013 -gidgee n 1 2 @ #m 1 0 11757017 -gielgud n 1 1 @ 1 0 10998860 -gift n 3 3 @ ~ + 3 3 13265011 05624042 01086081 -gift_horse n 1 1 @ 1 1 13272860 -gift_shop n 1 1 @ 1 0 03436417 -gift_tax n 1 1 @ 1 0 13313188 -gift_wrap n 1 1 @ 1 0 14879247 -gift_wrapping n 1 2 @ + 1 0 03436549 -gig n 6 4 @ ~ #m #p 6 1 03436891 04271148 03436990 03436772 03436656 00271155 -gigabit n 1 3 @ #p %p 1 0 13629132 -gigabyte n 2 3 @ #p %p 2 0 13628955 13628761 -gigacycle n 1 1 @ 1 0 15278691 -gigacycle_per_second n 1 1 @ 1 0 15278691 -gigahertz n 1 1 @ 1 0 15278691 -gigantism n 2 2 @ %p 2 0 14368288 05106220 -gigartinaceae n 1 3 @ #m %m 1 0 01414359 -giggle n 1 2 @ + 1 1 07127693 -giggler n 1 2 @ + 1 0 10713124 -gigo n 1 2 @ ; 1 0 06655927 -gigolo n 1 2 @ ~ 1 0 10129464 -gigot n 1 1 @ 1 0 07668588 -gigue n 1 1 @ 1 0 07055805 -gikuyu n 1 1 @ 1 0 06993015 -gila n 1 2 @ #p 1 0 09288946 -gila_desert n 1 2 @ #p 1 0 09169690 -gila_monster n 1 2 @ #m 1 0 01692333 -gila_river n 1 2 @ #p 1 0 09288946 -gilbert n 5 2 @ + 5 0 13642000 10999584 10999410 10999202 10999048 -gilbert_and_ellice_islands n 1 2 @ #p 1 0 08841075 -gilbert_and_sullivan n 1 1 @ 1 0 07278365 -gilbert_charles_stuart n 1 1 @ 1 0 11322758 -gilbert_islands n 1 3 @ #p - 1 0 08839916 -gilbert_keith_chesterton n 1 1 @ 1 0 10895274 -gilbert_murray n 1 1 @ 1 0 11197417 -gilbert_stuart n 1 1 @ 1 0 11322758 -gild n 1 3 @ ~ %m 1 0 08227214 -gilded_flicker n 1 1 @ 1 0 01839949 -gilder n 1 2 @ + 1 0 10129585 -gildhall n 1 2 @ ; 1 0 03437184 -gilding n 1 2 @ + 1 0 03437430 -gilding_metal n 1 1 @ 1 0 14879356 -giles_lytton_strachey n 1 2 @ #m 1 0 11320631 -gilgai_soil n 1 2 @ ; 1 0 14879492 -gilgamesh n 1 1 @ 1 0 10999873 -gilgamish n 1 2 @ ; 1 0 09522837 -gill n 4 4 @ ~ #p %p 4 0 13621660 13619028 13011679 02510769 -gill-over-the-ground n 1 2 @ #m 1 0 12847374 -gill_arch n 1 1 @ 1 0 02511303 -gill_bar n 1 1 @ 1 0 02511303 -gill_cleft n 1 1 @ 1 0 02511107 -gill_fungus n 1 1 @ 1 0 13011595 -gill_net n 1 1 @ 1 0 03437295 -gill_slit n 1 1 @ 1 0 02511107 -gilles_de_la_tourette n 1 1 @ 1 0 11346568 -gilles_de_la_tourette_syndrome n 1 1 @ 1 0 14311117 -gillespie n 1 1 @ 1 0 11000012 -gillette n 1 1 @ 1 0 11000172 -gillie n 2 1 @ 2 0 10129719 03436290 -gillyflower n 2 3 @ ~ #m 2 0 11892637 11808468 -gilman n 1 1 @ 1 0 11000349 -gilmer n 1 1 @ 1 0 11000469 -giloacchino_antonio_rossini n 1 1 @ 1 0 11271720 -gilt n 1 2 @ + 1 0 03437430 -gimbal n 1 1 @ 1 0 03437581 -gimcrack n 1 1 @ 1 0 03376438 -gimcrackery n 1 1 @ 1 0 03376438 -gimel n 1 2 @ #m 1 0 06836929 -gimlet n 2 1 @ 2 0 07914995 02758490 -gimmick n 3 2 @ ~ 3 0 05164673 03218545 00171249 -gimmickry n 1 1 @ 1 0 07959863 -gimp n 1 3 @ ~ + 1 0 14549937 -gimpiness n 1 3 @ ~ + 1 0 14549937 -gin n 4 6 @ ~ #s %s %p + 4 0 07904395 04248851 03115525 00496877 -gin_and_it n 1 2 @ %s 1 0 07916183 -gin_and_tonic n 1 2 @ %s 1 0 07915094 -gin_mill n 1 4 @ ~ %p ; 1 0 04018399 -gin_rickey n 1 1 @ 1 0 07932762 -gin_rummy n 1 1 @ 1 0 00496877 -gin_sling n 1 1 @ 1 0 07917874 -ginep n 1 3 @ #m %p 1 0 12744850 -ginger n 4 7 @ ~ #m #s #p %s + 4 0 12355760 07815163 07814925 04634833 -ginger_ale n 1 2 @ %s 1 0 07928367 -ginger_beer n 1 1 @ 1 0 07891309 -ginger_family n 1 3 @ #m %m 1 0 12355320 -ginger_nut n 1 2 @ ~ 1 0 07636384 -ginger_pop n 1 2 @ %s 1 0 07928367 -ginger_rogers n 1 1 @ 1 0 11268667 -ginger_snap n 1 2 @ ~ 1 0 07636384 -gingerbread n 1 1 @ 1 0 07633146 -gingerbread_man n 1 1 @ 1 0 07638574 -gingerol n 1 2 @ #s 1 0 15033063 -gingerroot n 1 3 @ #s #p 1 0 07814925 -gingersnap n 1 2 @ ~ 1 0 07636384 -gingham n 1 1 @ 1 1 03437741 -gingiva n 1 3 @ #p + 1 0 05304932 -gingivitis n 1 1 @ 1 0 14081216 -gingko n 1 1 @ 1 0 11664418 -ginglymoid_joint n 1 2 @ ~ 1 0 05580416 -ginglymostoma n 1 3 @ #m %m 1 0 01486706 -ginglymostoma_cirratum n 1 2 @ #m 1 0 01486838 -ginglymus n 1 2 @ ~ 1 0 05580416 -ginkgo n 1 1 @ 1 1 11664418 -ginkgo_biloba n 1 1 @ 1 0 11664418 -ginkgo_family n 1 3 @ #m %m 1 0 11664090 -ginkgoaceae n 1 3 @ #m %m 1 0 11664090 -ginkgoales n 1 3 @ #m %m 1 0 11663813 -ginkgophytina n 1 3 @ #m %m 1 0 11663449 -ginkgopsida n 1 3 @ #m %m 1 0 11663449 -ginmill n 1 3 @ ~ #p 1 1 02796995 -ginsberg n 1 1 @ 1 0 11000660 -ginseng n 2 4 @ #m #p %p 2 0 11800236 11799732 -ginzo n 1 2 @ ; 1 0 09716439 -gioacchino_pecci n 1 1 @ 1 0 11127996 -giordano_bruno n 1 1 @ 1 0 10868738 -giorgio_de_chirico n 1 1 @ 1 0 10896255 -giorgio_vasari n 1 1 @ 1 0 11361288 -giosue_carducci n 1 1 @ 1 0 10882293 -giotto n 1 1 @ 1 0 11000786 -giotto_di_bondone n 1 1 @ 1 0 11000786 -giovanni_angelo_braschi n 1 1 @ 1 0 11237275 -giovanni_battista_cibo n 1 1 @ 1 0 11072189 -giovanni_battista_montini n 1 1 @ 1 0 11226427 -giovanni_battista_tiepolo n 1 1 @ 1 0 11342191 -giovanni_boccaccio n 1 1 @ 1 0 10854146 -giovanni_cabato n 1 1 @ 1 0 10877584 -giovanni_cimabue n 1 1 @ 1 0 10898133 -giovanni_da_verrazano n 1 1 @ 1 0 11363930 -giovanni_da_verrazzano n 1 1 @ 1 0 11363930 -giovanni_de'medici n 1 1 @ 1 0 11127752 -giovanni_di_bernardone n 1 2 @ ; 1 0 10978098 -giovanni_francesco_albani n 1 1 @ 1 0 10901420 -giovanni_jacopo_casanova n 1 1 @ 1 0 10885994 -giovanni_jacopo_casanova_de_seingalt n 1 1 @ 1 0 10885994 -giovanni_lorenzo_bernini n 1 1 @ 1 0 10848122 -giovanni_maria_mastai-ferretti n 1 1 @ 1 0 11237868 -giovanni_mastai-ferretti n 1 1 @ 1 0 11237868 -giovanni_pierluigi_da_palestrina n 1 1 @ 1 0 11221268 -giovanni_vincenzo_pecci n 1 1 @ 1 0 11127996 -giovanni_virginio_schiaparelli n 1 1 @ 1 0 11284216 -gipsy n 2 2 @ ~ 2 0 10217831 10154186 -gipsy_moth n 1 2 @ #m 1 0 02286089 -gipsywort n 1 2 @ #m 1 0 12852570 -giraffa n 1 3 @ #m %m 1 0 02438897 -giraffa_camelopardalis n 1 3 @ ~ #m 1 0 02439033 -giraffe n 1 3 @ ~ #m 1 0 02439033 -giraffidae n 1 2 @ %m 1 0 02438774 -girandola n 1 1 @ 1 0 03437829 -girandole n 1 1 @ 1 0 03437829 -girard n 1 1 @ 1 0 11001053 -girasol n 2 2 @ %p 2 0 14868916 11979715 -giraudoux n 1 1 @ 1 0 11001211 -girder n 1 2 @ ~ 1 0 03437941 -girdle n 3 3 @ ~ + 3 0 05578911 03438071 03112869 -giriama n 1 1 @ 1 0 06993108 -girl n 5 4 ! @ ~ + 5 5 10129825 10084295 09992837 10130686 10130447 -girl_friday n 1 1 @ 1 0 10130584 -girl_scout n 1 3 @ ~ #m 1 0 10131016 -girl_scouts n 1 2 @ %m 1 0 08471185 -girl_wonder n 1 1 @ 1 0 10131151 -girlfriend n 2 1 @ 2 2 10130877 10130686 -girlhood n 1 2 @ + 1 0 15147330 -girlishness n 1 2 @ + 1 0 04668033 -giro n 2 2 @ ; 2 0 13382766 08055321 -giro_account n 1 2 @ ; 1 0 13359941 -giro_cheque n 1 2 @ ; 1 0 13382766 -girolamo_savonarola n 1 1 @ 1 0 11282802 -gironde n 1 2 @ + 1 0 08260220 -girondin n 1 1 @ 1 0 10131268 -girondism n 1 1 @ 1 0 05962166 -girondist n 1 2 @ + 1 0 10131268 -girru n 1 2 @ ; 1 0 09518306 -girth n 2 4 @ ~ #p + 2 0 05101407 03031756 -gish n 1 1 @ 1 0 11001422 -gismo n 2 2 @ ~ 2 0 03218545 02729965 -gist n 2 2 @ ~ 2 0 06604066 05921123 -git n 1 1 @ 1 0 10539715 -gita n 1 3 @ #p ; 1 0 06431156 -gitana n 1 1 @ 1 0 10131515 -gitano n 1 1 @ 1 0 10131590 -gittern n 1 1 @ 1 0 03035832 -giulio_de'_medici n 1 1 @ 1 0 10901192 -giulio_natta n 1 1 @ 1 0 11201264 -giuseppe_balsamo n 1 1 @ 1 0 10878672 -giuseppe_garibaldi n 1 1 @ 1 0 10990963 -giuseppe_mazzini n 1 1 @ 1 0 11167418 -giuseppe_melchiorre_sarto n 1 1 @ 1 0 11238092 -giuseppe_sarto n 1 1 @ 1 0 11238092 -giuseppe_verdi n 1 1 @ 1 0 11363020 -give n 1 2 @ + 1 1 05021151 -give-and-go n 1 1 @ 1 0 00563998 -give-and-take n 3 2 @ ~ 3 0 07140659 06777794 00040152 -giveaway n 3 4 @ ~ + ; 3 1 13272712 07214894 06621061 -given n 1 2 @ + 1 1 05893356 -given_name n 1 2 @ ~ 1 0 06337307 -givenness n 1 2 @ + 1 1 04755630 -giver n 2 3 @ ~ + 2 1 10131663 10025730 -giving n 3 3 @ ~ + 3 1 01086081 06685198 00090779 -giving_birth n 1 3 @ ~ #p 1 0 13532886 -giving_medication n 1 2 @ ~ 1 0 00694990 -giving_up n 2 1 @ 2 1 07255027 00205543 -giza n 1 2 @ #p 1 0 08899149 -gizeh n 1 2 @ #p 1 0 08899149 -gizmo n 2 2 @ ~ 2 0 03218545 02729965 -gizzard n 1 1 @ 1 0 01974229 -gjellerup n 1 1 @ 1 0 11001567 -glabella n 1 3 @ #p + 1 0 05232691 -glacial_boulder n 1 1 @ 1 0 09289177 -glacial_epoch n 2 2 @ #p 2 0 15255195 15124864 -glacial_period n 1 2 @ #p 1 0 15255195 -glaciation n 2 3 @ ~ + 2 0 14519673 13487409 -glacier n 1 5 @ ~ %s %p + 1 1 09289331 -glacier_lily n 1 1 @ 1 0 12451399 -glad n 1 2 @ #m 1 0 12417382 -glad_hand n 1 1 @ 1 0 06631833 -gladdon n 1 1 @ 1 0 12413642 -gladdon_iris n 1 1 @ 1 0 12413642 -glade n 1 1 @ 1 0 08541288 -glade_fern n 1 2 @ #m 1 0 13194918 -glade_mallow n 1 2 @ #m 1 0 12184468 -gladfulness n 1 1 @ 1 0 07527167 -gladiator n 2 4 @ ~ + ; 2 1 10131815 10477077 -gladiola n 1 2 @ #m 1 0 12417382 -gladiolus n 2 3 @ #m #p 2 0 12417382 05281452 -gladness n 1 2 @ + 1 0 07527167 -gladsomeness n 1 2 @ + 1 0 07527167 -gladstone n 2 1 @ 2 0 11001668 03986949 -gladstone_bag n 1 1 @ 1 0 03986949 -gladys_smith n 1 1 @ 1 0 11234643 -glamor n 1 2 @ + 1 1 04685195 -glamorisation n 1 2 @ + 1 0 00261972 -glamorization n 1 2 @ + 1 0 00261972 -glamour n 1 2 @ + 1 0 04685195 -glamourisation n 1 2 @ + 1 0 00261972 -glamourization n 1 2 @ + 1 0 00261972 -glance n 1 3 @ ~ + 1 1 00877625 -gland n 1 4 @ ~ %p + 1 1 05327767 -gland_disease n 1 2 @ ~ 1 0 14059928 -glanders n 1 1 @ 1 1 14265205 -glandulae_cervicales_uteri n 1 1 @ 1 0 05524062 -glandulae_sebaceae n 1 3 @ ~ #p 1 0 05328232 -glandular_cancer n 1 2 @ ~ 1 0 14246710 -glandular_carcinoma n 1 2 @ ~ 1 0 14246710 -glandular_disease n 1 2 @ ~ 1 0 14059928 -glandular_disorder n 1 2 @ ~ 1 0 14059928 -glandular_fever n 1 1 @ 1 0 14135277 -glandular_labrador_tea n 1 2 @ #m 1 0 12238756 -glandular_plague n 1 2 @ ~ 1 0 14139015 -glans n 1 2 @ ~ 1 0 05368278 -glans_clitoridis n 1 2 @ #p 1 0 05368444 -glans_penis n 1 2 @ #p 1 0 05368594 -glare n 3 2 @ + 3 2 04952570 00878797 14433769 -glareola n 1 3 @ #m %m 1 0 02038837 -glareole n 1 2 @ #m 1 0 02038993 -glareolidae n 1 3 @ #m %m 1 0 02038617 -glaser n 1 1 @ 1 0 11001848 -glasgow n 1 4 @ #p %m + 1 0 08892971 -glasnost n 1 1 @ 1 0 06659397 -glass n 7 6 @ ~ #s #p %p + 7 4 14881303 03438257 13767239 03333129 03754295 03688832 03438661 -glass-cutter n 2 1 @ 2 0 10132305 10132145 -glass_ceiling n 1 1 @ 1 0 06657913 -glass_cutter n 3 1 @ 3 0 10132305 10132145 03438780 -glass_eye n 1 1 @ 1 0 03438952 -glass_fiber n 1 2 @ #p 1 0 03852031 -glass_fibre n 1 2 @ #p 1 0 03852031 -glass_lizard n 1 2 @ #m 1 0 01690466 -glass_snake n 1 2 @ #m 1 0 01690466 -glass_sponge n 1 3 @ ~ #m 1 0 01907738 -glass_wool n 1 1 @ 1 0 14821852 -glassblower n 1 1 @ 1 0 10132035 -glasses n 1 5 @ ~ #p %p ; 1 1 04272054 -glasses_case n 1 1 @ 1 0 03438863 -glassful n 1 1 @ 1 0 13767239 -glasshouse n 1 2 @ ~ 1 0 03457902 -glassmaker n 1 1 @ 1 0 10132422 -glassware n 1 3 @ ~ %s 1 0 03439064 -glasswork n 1 3 @ ~ %s 1 0 03439064 -glassworker n 1 1 @ 1 0 10132145 -glassworks n 1 1 @ 1 0 03439260 -glasswort n 2 2 @ #m 2 0 11834654 11834272 -glaswegian n 1 3 @ #m + 1 0 09749142 -glauber's_salt n 1 1 @ 1 0 15013139 -glauber's_salts n 1 1 @ 1 0 15013139 -glaucium n 1 3 @ #m %m 1 0 11905584 -glaucium_flavum n 1 2 @ #m 1 0 11905749 -glaucoma n 1 2 @ ~ 1 1 14255234 -glaucomys n 1 3 @ #m %m 1 0 02360643 -glaucomys_sabrinus n 1 1 @ 1 0 02361090 -glaucomys_volans n 1 1 @ 1 0 02360933 -glauconite n 1 1 @ 1 0 14677144 -glaucous_bristlegrass n 1 1 @ 1 0 12134836 -glaux n 1 3 @ #m %m 1 0 12093769 -glaux_maritima n 1 2 @ #m 1 0 12093885 -glaze n 3 3 @ ~ + 3 0 07621001 04955554 04701039 -glazer n 1 1 @ 1 0 10132145 -glazier n 1 2 @ + 1 0 10132145 -gleam n 2 2 @ + 2 2 04954534 07412478 -gleaming n 2 2 @ + 2 2 07412478 04954534 -gleaner n 2 2 @ + 2 0 10132641 10132502 -gleba n 1 2 @ #p 1 0 11550340 -glebe n 1 1 @ 1 0 13247228 -glebe_house n 1 2 @ ; 1 0 03439348 -glechoma n 1 3 @ #m %m 1 0 12847254 -glechoma_hederaceae n 1 2 @ #m 1 0 12847374 -gleditsia n 1 3 @ #m %m 1 0 12495509 -gleditsia_aquatica n 1 2 @ #m 1 0 12495670 -gleditsia_triacanthos n 1 2 @ #m 1 0 12495895 -glee n 2 1 @ 2 1 07529377 07532276 -glee_club n 1 1 @ 1 0 08229605 -gleefulness n 1 2 @ + 1 0 07529377 -gleet n 1 1 @ 1 0 05417698 -gleichenia n 1 2 @ #m 1 0 13170286 -gleichenia_flabellata n 1 2 @ #m 1 0 13171210 -gleicheniaceae n 1 3 @ #m %m 1 0 13170060 -glen n 1 2 @ ; 1 0 09289596 -glen_canyon_dam n 1 2 @ #p 1 0 03439491 -glen_gebhard n 1 2 @ ; 1 0 11201386 -glenda_jackson n 1 1 @ 1 0 11077195 -glendower n 1 1 @ 1 0 11002040 -glengarry n 1 1 @ 1 0 03439631 -glenn n 1 1 @ 1 0 11002191 -glenn_curtiss n 1 1 @ 1 0 10918679 -glenn_hammond_curtiss n 1 1 @ 1 0 10918679 -glenn_miller n 1 1 @ 1 0 11180209 -glenn_t._seaborg n 1 1 @ 1 0 11290477 -glenn_theodore_seaborg n 1 1 @ 1 0 11290477 -glenoid_cavity n 1 2 @ #p 1 0 05279953 -glenoid_fossa n 2 2 @ #p 2 0 05280154 05279953 -glia n 1 6 @ ~ #s #p %p + 1 0 05467054 -glial_cell n 1 3 @ ~ #p 1 0 05467432 -glibness n 1 2 @ + 1 1 05095324 -glide n 3 3 @ ~ + 3 0 07114409 00328502 00303495 -glide_path n 1 2 @ #p 1 0 08493961 -glide_slope n 1 2 @ #p 1 0 08493961 -glider n 1 3 @ ~ + 1 0 03439814 -gliding n 1 3 @ ~ + 1 0 00303495 -gliding_bacteria n 1 2 @ #m 1 0 01378545 -gliding_joint n 1 2 @ ~ 1 0 05578251 -glimmer n 2 2 @ + 2 1 07412478 05916306 -glimmering n 1 1 @ 1 0 05916306 -glimpse n 3 3 @ ~ + 3 2 00877625 05934396 06802444 -glinka n 1 1 @ 1 0 11002422 -glint n 2 2 @ + 2 1 07412310 04953296 -glioblastoma n 1 1 @ 1 0 14236872 -glioma n 1 2 @ %s 1 0 14237032 -glipizide n 1 1 @ 1 0 03440024 -gliricidia n 1 2 @ #m 1 0 12531727 -gliridae n 1 3 @ #m %m 1 0 02352390 -glis n 1 3 @ #m %m 1 0 02352804 -glis_glis n 1 2 @ #m 1 0 02352932 -glissade n 1 3 @ + ; 1 0 00534344 -glissando n 1 2 @ ~ 1 0 06857122 -glisten n 1 2 @ + 1 0 04952944 -glister n 1 1 @ 1 0 04952944 -glitch n 1 1 @ 1 0 14464675 -glitter n 2 2 @ + 2 1 04952944 07412668 -glitz n 1 1 @ 1 0 04818700 -gloam n 1 3 @ ~ #p 1 0 15169421 -gloaming n 1 3 @ ~ #p 1 0 15169421 -gloat n 1 2 @ + 1 0 07532276 -gloating n 1 2 @ + 1 0 07532276 -glob n 1 2 @ ~ 1 0 07961016 -global_aphasia n 1 1 @ 1 0 14098347 -global_climate_change n 1 1 @ 1 0 13449450 -global_organization n 1 2 @ ~ 1 0 08294696 -global_positioning_system n 1 1 @ 1 0 03440216 -global_warming n 1 1 @ 1 0 13488310 -globalisation n 1 2 @ + 1 0 13488110 -globalization n 1 2 @ + 1 0 13488110 -globe n 3 5 @ ~ #m %p + 3 1 09270894 13899404 03440512 -globe_amaranth n 1 2 @ #m 1 0 11826198 -globe_artichoke n 2 4 @ #m #p %p 2 0 11959632 07718747 -globe_flower n 1 2 @ #m 1 0 11739365 -globe_lily n 1 3 @ ~ #m 1 0 12446519 -globe_mallow n 1 3 @ ~ #m 1 0 12187663 -globe_pepper n 1 1 @ 1 0 07721118 -globe_thistle n 1 2 @ #m 1 0 11962667 -globefish n 1 3 @ #m %p 1 0 02655020 -globeflower n 1 2 @ #m 1 0 11739365 -globetrotter n 1 1 @ 1 0 10132775 -globicephala n 1 3 @ #m %m 1 0 02071506 -globicephala_melaena n 1 2 @ #m 1 0 02071636 -globigerina n 1 1 @ 1 0 01393486 -globigerinidae n 1 2 @ #m 1 0 01393237 -globin n 1 2 @ #s 1 0 15025942 -globosity n 1 2 @ + 1 0 05073131 -globular_pearlite n 1 1 @ 1 0 14890485 -globularness n 1 2 @ + 1 0 05073131 -globule n 1 2 @ ~ 1 0 09289709 -globulin n 1 2 @ ~ 1 1 15022171 -globus_pallidus n 1 2 @ #p 1 0 05498300 -glochid n 1 1 @ 1 0 13089902 -glochidium n 1 1 @ 1 0 13089902 -glockenspiel n 1 1 @ 1 0 03440682 -glogg n 1 1 @ 1 0 07932176 -glomerular_capsule n 1 2 @ #p 1 0 05247621 -glomerule n 1 1 @ 1 0 13133233 -glomerulonephritis n 1 1 @ 1 0 14116078 -glomerulus n 1 3 @ #p + 1 0 05247804 -gloom n 3 3 @ ~ + 3 2 13985462 07533257 14525365 -gloominess n 3 3 @ ~ + 3 0 14525365 07533257 04631470 -gloomy_dean n 1 1 @ 1 0 11071677 -gloomy_gus n 1 2 @ ; 1 0 10627899 -glop n 2 1 @ 2 0 14583573 06775969 -gloria_may_josephine_svensson n 1 1 @ 1 0 11326433 -gloria_steinem n 1 1 @ 1 0 11315140 -gloria_swanson n 1 1 @ 1 0 11326433 -glorification n 3 3 @ ~ + 3 0 14437134 01219075 01218932 -gloriole n 1 1 @ 1 0 04951716 -gloriosa n 1 2 @ #m 1 0 12455950 -gloriosa_superba n 1 2 @ #m 1 0 12455950 -glorious_revolution n 1 1 @ 1 0 01304356 -glory n 3 2 @ + 3 2 14437134 04684358 04951716 -glory_fern n 1 1 @ 1 0 13207923 -glory_hole n 1 1 @ 1 0 03440876 -glory_lily n 1 2 @ #m 1 0 12455950 -glory_pea n 1 3 @ ~ #m 1 0 12516584 -gloss n 4 3 @ ~ + 4 0 06744000 06420781 04955160 04677952 -glossa n 1 3 @ #p %p 1 0 05301072 -glossalgia n 1 1 @ 1 0 14326880 -glossarist n 1 1 @ 1 0 10132887 -glossary n 1 1 @ 1 1 06420781 -glossina n 1 2 @ #m 1 0 02191273 -glossiness n 1 3 @ ~ + 1 0 04955160 -glossinidae n 1 3 @ #m %m 1 0 02190963 -glossitis n 1 2 @ ~ 1 0 14346909 -glossodia n 1 3 @ #m %m 1 0 12063066 -glossodynia n 1 1 @ 1 0 14326880 -glossodynia_exfoliativa n 1 1 @ 1 0 14347334 -glossolalia n 1 1 @ 1 0 14069383 -glossopharyngeal_nerve n 1 1 @ 1 0 05479786 -glossopsitta n 1 3 @ #m %m 1 0 01820664 -glossopsitta_versicolor n 1 2 @ #m 1 0 01820801 -glossoptosis n 1 1 @ 1 0 14174208 -glossy n 2 1 @ 2 0 06596727 03441009 -glossy_snake n 1 2 @ #m 1 0 01733466 -glottal_catch n 1 1 @ 1 1 07117595 -glottal_plosive n 1 1 @ 1 0 07117595 -glottal_stop n 1 1 @ 1 0 07117595 -glottis n 1 4 @ #p %p + 1 0 05301526 -glottis_spuria n 1 1 @ 1 0 05610365 -glottis_vera n 1 2 @ #p 1 0 05610198 -glottochronology n 1 2 @ + 1 1 06156521 -gloucester n 2 2 @ #p 2 0 09097079 08880083 -gloucestershire n 1 2 @ #p 1 0 08882224 -glove n 3 4 @ ~ %p ; 3 1 02800213 03441112 02885462 -glove_anesthesia n 1 1 @ 1 0 14386968 -glove_compartment n 1 2 @ #p 1 0 03441345 -glove_doll n 1 1 @ 1 0 03487963 -glove_leather n 1 1 @ 1 0 14762664 -glove_puppet n 1 1 @ 1 0 03487963 -glow n 7 3 @ ~ + 7 4 14051056 05018785 11467786 07480521 11463544 11463371 04954534 -glow_lamp n 1 1 @ 1 0 03441465 -glow_tube n 1 1 @ 1 0 03441582 -glower n 1 2 @ + 1 0 00878797 -glowing n 1 2 @ ~ 1 0 11463371 -glowworm n 1 1 @ 1 0 02168427 -gloxinia n 1 3 @ ~ #m 1 0 12832315 -gloxinia_perennis n 1 2 @ #m 1 0 12832538 -gloxinia_spesiosa n 1 2 @ #m 1 0 12833526 -glucagon n 1 1 @ 1 0 05410131 -glucinium n 1 2 @ #s 1 0 14631295 -gluck n 1 1 @ 1 0 11002548 -glucocorticoid n 1 2 @ ~ 1 0 14752057 -glucophage n 1 2 @ ; 1 0 03753657 -glucosamine n 1 2 @ #s 1 0 14752323 -glucose n 1 2 @ ~ 1 0 14884120 -glucose_tolerance_test n 1 1 @ 1 0 05741765 -glucoside n 1 2 @ ~ 1 0 14887801 -glucosuria n 1 1 @ 1 0 14267722 -glucotrol n 1 2 @ ; 1 0 03440024 -glue n 1 3 @ ~ + 1 1 14702875 -glueyness n 1 2 @ + 1 0 04935904 -gluiness n 1 2 @ + 1 0 04935904 -glume n 1 2 @ ~ 1 0 13155611 -glumness n 2 3 @ ~ + 2 0 14525365 07552367 -gluon n 1 1 @ 1 0 09289802 -glut n 1 2 @ + 1 0 05119837 -glutamate n 1 1 @ 1 0 14884581 -glutamic_acid n 1 1 @ 1 0 14606482 -glutamic_oxalacetic_transaminase n 1 1 @ 1 0 14884669 -glutamic_oxaloacetic_transaminase n 1 1 @ 1 1 14884669 -glutamine n 1 1 @ 1 0 14606704 -glutaminic_acid n 1 1 @ 1 0 14606482 -glutathione_peroxidase n 1 1 @ 1 0 14606839 -glute n 1 3 @ ~ #p 1 0 05570129 -gluteal_artery n 1 2 @ #p 1 0 05346406 -gluteal_muscle n 1 3 @ ~ #p 1 0 05570129 -gluteal_vein n 1 1 @ 1 0 05368739 -glutelin n 1 1 @ 1 0 15026155 -gluten n 1 3 @ ~ + 1 0 07570237 -gluten-free_diet n 1 1 @ 1 0 07562984 -gluten_bread n 1 1 @ 1 0 07682952 -glutethimide n 1 1 @ 1 0 03441778 -gluteus n 1 4 @ ~ #p + 1 0 05570129 -gluteus_maximus n 1 1 @ 1 0 05570396 -gluteus_medius n 1 1 @ 1 0 05570500 -gluteus_minimus n 1 1 @ 1 0 05570600 -gluteus_muscle n 1 3 @ ~ #p 1 0 05570129 -glutinosity n 1 2 @ + 1 0 04936213 -glutinousness n 1 2 @ + 1 0 04936213 -glutton n 2 2 @ + 2 1 10132988 02449350 -gluttony n 2 3 @ ~ = 2 0 04886101 00759186 -glyburide n 1 1 @ 1 0 03441930 -glyceraldehyde n 1 1 @ 1 0 14884820 -glyceria n 1 3 @ #m %m 1 0 12122124 -glyceria_grandis n 1 1 @ 1 0 12122442 -glyceric_acid n 1 1 @ 1 0 14884963 -glyceric_aldehyde n 1 1 @ 1 0 14884820 -glyceride n 1 3 @ ~ #p 1 0 14885088 -glycerin n 1 1 @ 1 0 14885684 -glycerin_jelly n 1 1 @ 1 0 14886037 -glycerinated_gelatin n 1 1 @ 1 0 14885857 -glycerine n 1 1 @ 1 1 14885684 -glycerite n 1 1 @ 1 0 14886180 -glycerogel n 1 1 @ 1 0 14886297 -glycerogelatin n 1 1 @ 1 0 14886297 -glycerol n 1 2 @ + 1 1 14885684 -glycerol_trimargarate n 1 1 @ 1 0 15079445 -glycerol_tripalmitate n 1 1 @ 1 0 15080055 -glycerol_tristearate n 1 1 @ 1 0 15080942 -glycerole n 1 1 @ 1 0 14886180 -glyceryl n 1 1 @ 1 0 14886443 -glyceryl_ester n 1 2 @ ~ 1 0 14887026 -glyceryl_trinitrate n 1 2 @ #s 1 0 14886579 -glycine n 2 3 @ #m %m 2 0 14606993 12532008 -glycine_max n 1 3 @ #m %p 1 0 12532168 -glycogen n 1 2 @ + 1 0 14795749 -glycogenesis n 2 1 @ 2 0 13488498 07415962 -glycol n 2 1 @ 2 0 14851850 14835980 -glycolic_acid n 1 1 @ 1 0 14888124 -glycollic_acid n 1 1 @ 1 0 14888124 -glycolysis n 1 1 @ 1 0 13488606 -glycoprotein n 1 2 @ ~ 1 0 14888310 -glycoside n 1 2 @ ~ 1 0 14887305 -glycosuria n 1 2 @ ~ 1 0 14267841 -glycyrrhiza n 1 3 @ #m %m 1 0 12532720 -glycyrrhiza_glabra n 1 3 @ #m %p 1 0 12532886 -glycyrrhiza_lepidota n 1 2 @ #m 1 0 12533190 -glyoxaline n 1 1 @ 1 0 14916670 -glyph n 1 1 @ 1 0 03442164 -glyptic_art n 1 2 @ ~ 1 0 03442288 -glyptics n 1 1 @ 1 0 03442487 -glyptography n 2 2 @ ~ 2 0 03442288 00936194 -gm n 1 3 @ #p %p 1 1 13723712 -gmt n 1 2 @ ~ 1 0 15130205 -gnaeus_julius_agricola n 1 1 @ 1 0 10809675 -gnaeus_pompeius_magnus n 1 1 @ 1 0 11241854 -gnaphalium n 1 3 @ #m %m 1 0 11972569 -gnaphalium_sylvaticum n 1 1 @ 1 0 11972959 -gnarl n 1 2 @ + 1 0 13885836 -gnat n 2 2 @ ~ 2 0 02202287 02200630 -gnatcatcher n 1 2 @ #m 1 0 01563449 -gnathion n 1 2 @ #p 1 0 05232972 -gnathostomata n 1 3 @ #m %m 1 0 01479643 -gnathostome n 1 2 @ #m 1 0 01479820 -gnawer n 1 4 @ ~ #m + 1 0 02329401 -gnawing_mammal n 1 3 @ ~ #m 1 0 02323449 -gneiss n 1 1 @ 1 0 14889271 -gnetaceae n 1 3 @ #m %m 1 0 11597126 -gnetales n 1 3 @ #m %m 1 0 11596845 -gnetophyta n 1 3 @ #m %m 1 0 11596486 -gnetophytina n 1 3 @ #m %m 1 0 11596486 -gnetopsida n 1 3 @ #m %m 1 0 11596486 -gnetum n 1 2 @ #m 1 0 11597657 -gnetum_gnemon n 1 2 @ #m 1 0 11597657 -gnocchi n 1 1 @ 1 0 07701715 -gnome n 2 3 @ ~ + 2 1 09541125 07153385 -gnomon n 1 2 @ #p 1 0 03442597 -gnosis n 1 2 @ + 1 0 05708030 -gnostic n 1 2 @ + 1 0 10133210 -gnosticism n 1 3 @ ~ - 1 0 06222959 -gnp n 1 2 @ ~ 1 1 13257098 -gnu n 1 2 @ #m 1 0 02421449 -gnu_goat n 1 2 @ #m 1 0 02419634 -go n 4 3 @ + ; 4 0 15292069 02678738 00787061 00504325 -go-ahead n 2 2 @ + 2 0 06874391 04836074 -go-around n 1 1 @ 1 0 00281898 -go-between n 1 2 @ ~ 1 0 09624559 -go-cart n 3 3 @ ~ %p 3 0 04545305 03484083 02766534 -go-getter n 1 1 @ 1 0 10135709 -go-kart n 1 1 @ 1 0 03444034 -go-slow n 1 2 @ ; 1 0 01242354 -go_board n 1 1 @ 1 0 03443461 -go_fish n 1 1 @ 1 0 00492871 -go_game n 1 2 @ ; 1 0 00504325 -goa n 1 2 @ #p 1 0 08905186 -goa_bean n 2 4 @ #m #p %p 2 0 12564083 07725158 -goa_bean_vine n 1 3 @ #m %p 1 0 12564083 -goa_powder n 1 1 @ 1 0 02732696 -goad n 2 3 @ ~ + 2 1 04007664 07252378 -goading n 1 2 @ + 1 0 07252378 -goal n 4 4 @ ~ #p %p 4 2 05980875 08567877 03442756 00187337 -goal-kick n 2 2 @ ; 2 0 00136876 00136691 -goal_line n 1 1 @ 1 0 08579134 -goalie n 2 1 @ 2 0 10134001 00464037 -goalkeeper n 2 1 @ 2 0 10134001 00464037 -goalmouth n 1 2 @ ; 1 0 03443005 -goalpost n 1 3 @ #p %p 1 0 03443149 -goaltender n 2 1 @ 2 0 10134001 00464037 -goat n 4 5 @ ~ #m %p ; 4 1 02416519 09884666 09753498 08687709 -goat's_foot n 1 1 @ 1 0 12703716 -goat's_rue n 2 2 @ #m 2 0 12572858 12529500 -goat_antelope n 1 3 @ ~ #m 1 0 02418064 -goat_cheese n 1 1 @ 1 0 07853560 -goat_god n 1 2 @ ; 1 0 09568241 -goat_grass n 1 2 @ #m 1 0 12104734 -goat_herder n 1 1 @ 1 0 10134178 -goat_rue n 1 2 @ #m 1 0 12529500 -goat_willow n 1 2 @ #m 1 0 12727518 -goatee n 1 2 @ #p 1 0 05263029 -goatfish n 1 3 @ ~ #m 1 0 02600298 -goatherd n 1 1 @ 1 0 10134178 -goats'_milk n 1 1 @ 1 0 07845495 -goatsbeard n 1 2 @ #m 1 0 12027658 -goatsfoot n 1 1 @ 1 0 12703716 -goatskin n 1 1 @ 1 0 14759515 -goatsucker n 1 3 @ ~ #m 1 0 01835276 -gob n 3 3 @ ~ ; 3 0 10294602 07961270 05302307 -gobbet n 1 1 @ 1 0 07651245 -gobble n 1 2 @ + 1 0 07384127 -gobbledygook n 1 1 @ 1 0 07070321 -gobbler n 2 2 @ + 2 0 10134282 01794344 -gobi n 1 2 @ #p 1 0 09169801 -gobi_desert n 1 2 @ #p 1 0 09169801 -gobiesocidae n 1 3 @ #m %m 1 0 02635310 -gobiesox n 1 2 @ #m 1 0 02635459 -gobiesox_strumosus n 1 1 @ 1 0 02635781 -gobiidae n 1 3 @ #m %m 1 0 02619029 -gobio n 1 3 @ #m %m 1 0 01443126 -gobio_gobio n 1 2 @ #m 1 0 01443243 -goblet n 2 2 @ ~ 2 0 03443371 03002948 -goblet_cell n 1 1 @ 1 0 05242525 -goblin n 1 2 @ ; 1 0 09543748 -gobs n 1 1 @ 1 0 13777509 -goby n 1 3 @ ~ #m 1 0 02619165 -god n 4 4 @ ~ #m + 4 2 09536058 09505418 10133307 03560161 -god's_acre n 1 1 @ 1 0 08647354 -god's_will n 1 1 @ 1 0 14459332 -god's_wisdom n 1 1 @ 1 0 14459093 -god_almighty n 1 2 @ ~ 1 0 09536363 -god_of_war n 1 1 @ 1 0 10767654 -god_tree n 1 1 @ 1 0 12190410 -godard n 1 1 @ 1 0 11002684 -godchild n 1 2 @ ~ 1 0 10134396 -goddard n 1 1 @ 1 0 11002895 -goddaughter n 1 1 @ 1 0 10134552 -goddess n 1 2 @ ~ 1 1 09535622 -godel n 1 1 @ 1 0 11003068 -godfather n 2 1 @ 2 0 10134760 10134627 -godhead n 1 2 @ ~ 1 0 09536363 -godiva n 1 1 @ 1 0 11003276 -godlessness n 2 2 @ + 2 0 06223468 04828754 -godliness n 1 3 ! @ + 1 0 04827503 -godmother n 1 1 @ 1 0 10134870 -godown n 1 2 @ ; 1 0 03443543 -godparent n 1 2 @ ~ 1 0 10134982 -godsend n 1 1 @ 1 0 07477587 -godson n 1 1 @ 1 0 10135129 -godspeed n 1 1 @ 1 0 07319549 -godunov n 1 1 @ 1 0 11003599 -godwin_austen n 1 2 @ #p 1 0 09322701 -godwit n 1 3 @ ~ #m 1 0 02034129 -goebbels n 1 1 @ 1 0 11003724 -goer n 1 2 @ + 1 0 10004539 -goering n 1 1 @ 1 0 11008647 -goeteborg n 1 2 @ #p 1 0 08766667 -goethals n 1 1 @ 1 0 11003918 -goethe n 1 2 @ + 1 0 11004106 -goethite n 1 2 @ #s 1 0 14677314 -gofer n 1 1 @ 1 0 10135197 -goffer n 3 1 @ 3 0 10135297 03443775 03443669 -goffering_iron n 1 1 @ 1 0 03443775 -gog_and_magog n 1 1 @ 1 0 10135411 -goggle-eye n 1 2 @ #m 1 0 02581108 -goggle_box n 1 4 @ #p %p ; 1 0 04405907 -goggles n 1 2 @ ; 1 0 03443912 -gogh n 1 1 @ 1 0 11360022 -gogol n 1 1 @ 1 0 11004333 -goidelic n 1 2 @ ~ 1 0 06960566 -going n 3 4 @ ~ + ; 3 1 00042757 07333649 00048051 -going-out-of-business_sale n 1 1 @ 1 0 01119401 -going-over n 2 1 @ 2 1 00143536 06713187 -going_ashore n 1 1 @ 1 0 00058247 -going_away n 1 2 @ ~ 1 1 00042757 -going_to_jerusalem n 1 1 @ 1 0 00486670 -going_under n 1 2 @ ; 1 0 07364573 -goiter n 1 1 @ 1 0 14199477 -goitre n 1 1 @ 1 1 14199477 -goitrogen n 1 1 @ 1 1 14889728 -golan n 1 2 @ #p 1 0 08794574 -golan_heights n 1 2 @ #p 1 0 08794574 -golconda n 1 1 @ 1 0 03444169 -gold n 5 5 @ ~ #s %s + 5 3 13371760 04966240 14638799 13353446 05141492 -gold-beater n 1 1 @ 1 0 10135842 -gold-crowned_kinglet n 1 1 @ 1 0 01564101 -gold-tail_moth n 1 2 @ #m 1 0 02286654 -gold-worker n 1 2 @ ~ 1 0 10136615 -gold_braid n 1 2 @ ~ 1 0 02889035 -gold_coast n 2 4 @ #p %m %p 2 0 08946187 08641744 -gold_digger n 2 2 @ ~ 2 0 10136463 10136283 -gold_dust n 1 1 @ 1 0 14719025 -gold_fern n 1 2 @ #m 1 0 13213577 -gold_fever n 1 1 @ 1 0 07511626 -gold_foil n 1 3 @ ~ %s 1 0 03444728 -gold_leaf n 1 2 @ %s 1 1 03444838 -gold_medal n 1 1 @ 1 0 03444942 -gold_mine n 2 1 @ 2 0 03445217 03445120 -gold_miner n 1 2 @ ~ 1 0 10136463 -gold_of_pleasure n 1 2 @ #m 1 0 11880791 -gold_panner n 1 2 @ ~ 1 0 10136463 -gold_plate n 2 2 @ + 2 0 03445472 03445326 -gold_rush n 2 1 @ 2 0 07477587 01123304 -gold_standard n 2 1 @ 2 0 13373426 05924730 -golda_meir n 1 1 @ 1 0 11171298 -goldbeater n 1 1 @ 1 0 10135842 -goldberg n 1 1 @ 1 0 11004485 -goldbrick n 4 2 @ ; 4 0 10136146 10135953 03444268 00753973 -goldbricking n 1 2 @ + 1 0 00741478 -goldcrest n 1 1 @ 1 0 01563945 -goldcup n 1 3 @ ~ #m 1 0 11720353 -golden-beard_penstemon n 1 2 @ #m 1 0 12885045 -golden-crested_kinglet n 1 1 @ 1 0 01563945 -golden-eyed_fly n 1 1 @ 1 0 02265076 -golden_age n 3 2 @ ; 3 0 15295267 15253895 15230790 -golden_ager n 1 2 @ ~ 1 0 10376523 -golden_algae n 1 2 @ #m 1 0 01400247 -golden_aster n 1 3 @ ~ #m 1 0 11951511 -golden_barrel_cactus n 1 1 @ 1 0 11845913 -golden_boy n 1 1 @ 1 0 10789415 -golden_buttons n 1 2 @ #m 1 0 12023726 -golden_calf n 1 2 @ ; 1 0 03444376 -golden_calla n 1 1 @ 1 0 11794139 -golden_chain n 1 2 @ #m 1 0 12538380 -golden_chinkapin n 1 2 @ #m 1 0 12264786 -golden_clematis n 1 1 @ 1 0 11730458 -golden_club n 1 2 @ #m 1 0 11790390 -golden_crown_beard n 1 1 @ 1 0 12031139 -golden_crownbeard n 1 1 @ 1 0 12031139 -golden_cup n 1 2 @ #m 1 0 11906127 -golden_delicious n 1 1 @ 1 0 07740342 -golden_eagle n 1 3 @ ~ #m 1 0 01614343 -golden_everlasting n 1 1 @ 1 0 11980318 -golden_fairy_lantern n 1 2 @ #m 1 0 12447121 -golden_fern n 2 3 @ #m ; 2 0 13213397 13206178 -golden_fig n 1 2 @ #m 1 0 12402051 -golden_fleece n 1 1 @ 1 0 14763674 -golden_gate n 1 2 @ #p 1 0 09289913 -golden_gate_bridge n 1 2 @ #p 1 0 03444601 -golden_glow n 1 2 @ #m 1 1 12009047 -golden_gram n 1 2 @ #m 1 0 12578255 -golden_groundsel n 1 1 @ 1 0 12000356 -golden_hamster n 1 2 @ #m 1 0 02343320 -golden_handshake n 1 1 @ 1 0 07178839 -golden_heather n 1 2 @ #m 1 0 12376553 -golden_honey_plant n 1 1 @ 1 0 12030908 -golden_horde n 1 1 @ 1 0 08250978 -golden_ironweed n 1 1 @ 1 0 12030908 -golden_larch n 1 2 @ #m 1 0 11620389 -golden_maidenhair n 1 1 @ 1 0 13173882 -golden_marguerite n 1 2 @ #m 1 0 11923397 -golden_mean n 2 1 @ 2 0 13817066 05117977 -golden_mole n 1 2 @ #m 1 0 01890564 -golden_oak_mushroom n 1 2 @ #m 1 0 13001930 -golden_oldie n 1 1 @ 1 0 07052700 -golden_oriole n 1 2 @ #m 1 0 01576076 -golden_parachute n 1 1 @ 1 0 00175875 -golden_pea n 1 1 @ 1 0 12573474 -golden_pheasant n 1 2 @ #m 1 0 01804163 -golden_pholiota n 1 2 @ #m 1 0 13008315 -golden_plover n 1 2 @ #m 1 0 02024479 -golden_polypody n 2 2 @ #m 2 0 13177048 13173882 -golden_pothos n 1 2 @ #m 1 0 11788727 -golden_potto n 1 2 @ #m 1 0 02499568 -golden_ragwort n 1 1 @ 1 0 12000356 -golden_rain n 1 2 @ #m 1 0 12538380 -golden_retriever n 1 1 @ 1 0 02099601 -golden_rule n 2 1 @ 2 0 06655805 05957913 -golden_saxifrage n 1 3 @ ~ #m 1 0 12796849 -golden_seal n 1 2 @ #m 1 0 11735570 -golden_section n 1 1 @ 1 0 13817066 -golden_shiner n 1 1 @ 1 0 01442166 -golden_shower_tree n 1 1 @ 1 0 12492106 -golden_spleen n 1 3 @ ~ #m 1 0 12796849 -golden_star n 1 2 @ #m 1 0 12444490 -golden_stars n 1 2 @ #m 1 0 12444490 -golden_state n 1 4 @ #p %p - 1 0 09060768 -golden_syrup n 1 2 @ ; 1 0 07860208 -golden_thistle n 1 3 @ ~ #m 1 0 12010628 -golden_thread n 1 2 @ #m 1 0 11732052 -golden_trumpet n 1 1 @ 1 0 11769803 -golden_warbler n 1 2 @ #m 1 0 01568892 -golden_wattle n 1 2 @ #m 1 0 11758276 -golden_wedding_anniversary n 1 1 @ 1 0 15250991 -golden_willow n 1 2 @ #m 1 0 12726159 -golden_wonder_millet n 1 1 @ 1 0 12135729 -golden_yarrow n 1 1 @ 1 0 11967878 -golden_years n 1 1 @ 1 0 15150384 -goldenbush n 2 3 @ ~ #m 2 0 11976170 11952346 -goldeneye n 2 3 @ ~ #m 2 0 02265076 01850373 -goldenrod n 1 3 @ ~ #m 1 0 12015959 -goldenseal n 1 2 @ #m 1 0 11735570 -goldfield n 1 1 @ 1 0 08579266 -goldfields n 1 2 @ #m 1 0 11988132 -goldfinch n 2 2 @ #m 2 0 01532325 01531178 -goldfish n 1 3 @ ~ #m 1 0 01443537 -goldfish_bowl n 2 1 @ 2 0 13935400 03350204 -goldie's_fern n 1 1 @ 1 0 13193466 -goldie's_shield_fern n 1 1 @ 1 0 13193466 -goldie's_wood_fern n 1 1 @ 1 0 13193466 -goldilocks n 1 1 @ 1 0 11934239 -goldilocks_aster n 1 1 @ 1 0 11934239 -golding n 1 1 @ 1 0 11004731 -goldman n 1 1 @ 1 0 11004861 -goldmark n 1 1 @ 1 0 11005050 -goldmine n 2 1 @ 2 0 03445217 03445120 -goldoni n 1 1 @ 1 0 11005320 -goldsboro n 1 2 @ #p 1 0 09128808 -goldsmith n 2 2 @ ~ 2 1 10136615 11005429 -goldstone n 1 1 @ 1 0 14889857 -goldthread n 1 2 @ #m 1 0 11732052 -goldworker n 1 2 @ ~ 1 0 10136615 -goldwyn n 1 1 @ 1 0 11005571 -golem n 2 3 @ ~ ; 2 0 10136775 02761392 -golf n 1 4 @ ~ + - 1 1 00464894 -golf-club n 1 3 @ ~ %p 1 0 03446070 -golf-club_head n 1 4 @ #p %p ; 1 0 03446268 -golf_bag n 1 2 @ %p 1 0 03445617 -golf_ball n 1 1 @ 1 0 03445777 -golf_caddie n 1 1 @ 1 0 09886403 -golf_cap n 1 2 @ %p 1 0 02799323 -golf_cart n 1 1 @ 1 0 03445924 -golf_club n 2 3 @ ~ %p 2 0 08229694 03446070 -golf_course n 1 4 @ ~ %p ; 1 0 03446528 -golf_equipment n 1 3 @ ~ ; 1 0 03446832 -golf_game n 1 3 @ ~ - 1 0 00464894 -golf_glove n 1 1 @ 1 0 03447075 -golf_hole n 1 3 @ ~ #p 1 0 03526805 -golf_lesson n 1 1 @ 1 0 00890145 -golf_links n 1 2 @ ; 1 0 03674591 -golf_player n 1 2 @ ~ 1 0 10136959 -golf_pro n 1 1 @ 1 0 10137367 -golf_range n 1 2 @ ; 1 0 03447224 -golf_shot n 1 2 @ ~ 1 0 00571609 -golf_stroke n 1 2 @ ~ 1 0 00571609 -golf_tee n 1 1 @ 1 0 04399537 -golf_widow n 1 1 @ 1 1 10137498 -golfcart n 1 1 @ 1 0 03445924 -golfer n 1 3 @ ~ + 1 1 10136959 -golfing n 1 2 @ + 1 1 00127021 -golfo_de_campeche n 1 2 @ #p 1 0 09297729 -golfo_de_mexico n 1 3 @ #p %p 1 0 09298698 -golgi n 1 1 @ 1 0 11005780 -golgi's_cell n 1 2 @ #p 1 0 05466005 -golgi_apparatus n 1 2 @ #p 1 0 05434557 -golgi_body n 1 2 @ #p 1 0 05434557 -golgi_cell n 1 2 @ #p 1 0 05466005 -golgi_complex n 1 2 @ #p 1 0 05434557 -golgotha n 1 2 @ #p 1 0 08796219 -goliard n 1 1 @ 1 0 10137632 -goliath n 2 2 @ ; 2 0 11005972 10128909 -goliath_frog n 1 2 @ #m 1 0 01642097 -golliwog n 1 1 @ 1 0 03447358 -golliwogg n 1 1 @ 1 0 03447358 -golosh n 1 1 @ 1 0 02735538 -goma n 1 2 @ #p 1 0 08734853 -gombrowicz n 1 1 @ 1 0 11006128 -gomel n 1 2 @ #p 1 0 09011679 -gomorrah n 1 3 @ #p ; 1 0 08795974 -gomorrha n 1 3 @ #p ; 1 0 08795974 -gompers n 1 1 @ 1 0 11006231 -gomphothere n 1 2 @ #m 1 0 02506783 -gomphotheriidae n 1 3 @ #m %m 1 0 02506466 -gomphotherium n 1 3 @ #m %m 1 0 02506630 -gomphrena n 1 3 @ #m %m 1 0 11825988 -gomphrena_globosa n 1 2 @ #m 1 0 11826198 -gomuti n 1 3 @ #m %s 1 0 12584715 -gomuti_palm n 1 3 @ #m %s 1 0 12584715 -gonad n 1 3 @ ~ + 1 0 05524430 -gonadotrophic_hormone n 1 2 @ ~ 1 0 05410315 -gonadotrophin n 1 2 @ ~ 1 0 05410315 -gonadotropic_hormone n 1 2 @ ~ 1 0 05410315 -gonadotropin n 1 3 @ ~ + 1 0 05410315 -goncalo_alves n 1 2 @ #m 1 0 12759668 -goncourt n 2 1 @ 2 0 11006689 11006431 -gond n 1 1 @ 1 0 09674521 -gondang_wax n 1 1 @ 1 0 14889973 -gondi n 1 1 @ 1 0 06980971 -gondola n 3 2 @ #p 3 0 03447593 03447447 02960501 -gondola_car n 1 1 @ 1 0 03447593 -gondolier n 1 1 @ 1 0 10137825 -gondoliere n 1 1 @ 1 0 10137825 -gondwanaland n 1 2 @ #p 1 0 09290121 -goner n 1 1 @ 1 1 10137936 -gong n 2 3 @ ~ + 2 0 03447721 03017168 -gong_buoy n 1 1 @ 1 0 07266573 -gongora n 1 1 @ 1 0 11006889 -gongorism n 1 1 @ 1 0 07068324 -gongorist n 1 1 @ 1 0 10138114 -gonif n 1 2 @ ; 1 0 10133458 -goniff n 1 2 @ ; 1 0 10133458 -goniometer n 1 1 @ 1 0 03447894 -gonion n 1 2 @ #p 1 0 05233100 -goniopteris n 1 1 @ 1 0 13228867 -gonioscopy n 1 1 @ 1 0 00643389 -gonne n 1 1 @ 1 0 11007059 -gonococcus n 1 1 @ 1 0 01365885 -gonorhynchidae n 1 3 @ #m %m 1 0 02528949 -gonorhynchus n 1 3 @ #m %m 1 0 02529111 -gonorhynchus_gonorhynchus n 1 2 @ #m 1 0 02529293 -gonorrhea n 1 1 @ 1 0 14133543 -gonorrhoea n 1 1 @ 1 0 14133543 -goo n 1 3 @ ~ + 1 0 14956661 -goober n 1 2 @ #p 1 0 07737745 -goober_pea n 1 2 @ #p 1 0 07737745 -good n 4 4 ! @ ~ = 4 3 05159725 04849241 05142180 03076708 -good-by n 1 1 @ 1 0 06629610 -good-bye n 1 1 @ 1 1 06629610 -good-for-naught n 1 2 @ + 1 0 10135953 -good-for-nothing n 1 2 @ + 1 0 10135953 -good-humoredness n 1 2 @ + 1 0 04631067 -good-humouredness n 1 2 @ + 1 0 04631067 -good-king-henry n 1 2 @ %p 1 0 11828973 -good-naturedness n 1 2 @ + 1 0 04631067 -good-neighborliness n 1 1 @ 1 0 04656051 -good-neighbourliness n 1 1 @ 1 0 04656051 -good-temperedness n 1 2 @ + 1 0 04631067 -good_afternoon n 1 1 @ 1 0 06632807 -good_authority n 1 1 @ 1 0 06648462 -good_book n 1 4 @ ~ %p - 1 0 06431740 -good_continuation n 1 1 @ 1 0 06250208 -good_day n 1 1 @ 1 0 06629610 -good_deal n 1 2 @ ~ 1 1 13774404 -good_egg n 1 3 ! @ ; 1 0 10138242 -good_example n 1 2 @ ~ 1 1 05925366 -good_faith n 1 1 @ 1 1 04872016 -good_form n 1 1 @ 1 0 04899416 -good_fortune n 2 3 ! @ ~ 2 1 14473655 11463746 -good_friday n 1 2 @ #p 1 1 15191827 -good_guy n 1 2 ! @ 1 1 10138369 -good_health n 1 3 ! @ ~ 1 1 14049711 -good_humor n 1 3 ! @ ~ 1 1 07551691 -good_humour n 1 2 @ ~ 1 0 07551691 -good_looks n 1 1 @ 1 1 04685840 -good_luck n 3 3 ! @ ~ 3 1 14473655 11463746 07316856 -good_luck_charm n 1 2 @ ~ 1 0 03009633 -good_manners n 1 3 @ ~ = 1 0 04912732 -good_morning n 1 1 @ 1 0 06632671 -good_nature n 1 3 ! @ ~ 1 1 04640176 -good_night n 1 1 @ 1 1 06632947 -good_ol'_boy n 1 1 @ 1 0 10138472 -good_old_boy n 1 1 @ 1 0 10138472 -good_old_days n 1 1 @ 1 0 15252635 -good_ole_boy n 1 1 @ 1 0 10138472 -good_part n 1 2 ! @ 1 1 05030149 -good_person n 1 3 ! @ ~ 1 1 10138767 -good_samaritan n 1 1 @ 1 0 10139077 -good_sense n 1 2 @ ~ 1 0 05614657 -good_shepherd n 1 2 @ ~ 1 0 11083656 -good_speller n 1 1 @ 1 0 10635149 -good_spirit n 1 2 @ ; 1 0 09542697 -good_story n 1 1 @ 1 0 06779310 -good_temper n 1 2 @ ~ 1 0 07551691 -good_time n 1 1 @ 1 0 07287288 -good_turn n 1 1 @ 1 0 01227083 -good_weather n 1 3 ! @ ~ 1 0 14522113 -good_will n 3 2 @ ; 3 2 04640356 13332820 07499930 -good_word n 2 2 @ ~ 2 0 06694540 06643120 -goodall n 1 1 @ 1 0 11007181 -goodby n 1 1 @ 1 0 06629610 -goodbye n 1 1 @ 1 0 06629610 -goodenia n 1 2 @ #m 1 0 12167955 -goodenia_family n 1 3 @ #m %m 1 0 12167749 -goodeniaceae n 1 3 @ #m %m 1 0 12167749 -goodman n 1 1 @ 1 0 11007332 -goodness n 2 5 ! @ ~ = + 2 1 05142180 04849241 -goodwill n 3 2 @ ; 3 0 13332820 07499930 04640356 -goody n 1 2 @ ~ 1 0 07557165 -goody-goody n 1 2 @ + 1 0 10139206 -goodyear n 1 1 @ 1 0 11007620 -goodyera n 1 3 @ #m %m 1 0 12063414 -goof n 2 3 @ ~ + 2 0 10157744 09930876 -goof-off n 1 1 @ 1 0 10135953 -goofball n 2 2 @ ~ 2 0 10157744 09930876 -goofing_off n 1 1 @ 1 0 00741478 -goofy n 1 1 @ 1 0 09599633 -google n 1 3 @ + ; 1 0 06578905 -googly n 1 1 @ 1 0 00477097 -googol n 1 1 @ 1 0 13598408 -googolplex n 1 1 @ 1 0 13598556 -gook n 2 3 @ ~ ; 2 0 14956661 09643799 -goon n 2 2 @ ~ 2 0 10274639 10184081 -gooney n 1 2 @ #m 1 0 02058747 -gooney_bird n 1 2 @ #m 1 0 02058747 -goonie n 1 2 @ #m 1 0 02058747 -goony n 1 2 @ #m 1 0 02058747 -goop n 2 2 @ ~ 2 0 14956661 04253751 -goora_nut n 1 4 @ #m %s %p 1 0 12197359 -goosander n 1 2 @ #m 1 0 01854700 -goose n 3 6 @ ~ #m #p %p + 3 1 01855672 10157744 07646821 -goose-tansy n 1 1 @ 1 0 12637123 -goose_barnacle n 1 2 @ #m 1 0 01999186 -goose_bump n 1 1 @ 1 0 00866606 -goose_down n 1 2 @ #p 1 0 01896960 -goose_egg n 1 2 @ ~ 1 0 13740168 -goose_grass n 4 2 @ #m 4 0 12666159 12637123 12127768 12118414 -goose_grease n 1 1 @ 1 0 14890099 -goose_liver n 1 1 @ 1 0 07652401 -goose_pimple n 1 1 @ 1 0 00866606 -goose_plum n 1 1 @ 1 0 12638964 -goose_skin n 1 1 @ 1 0 00866606 -goose_step n 1 2 @ + 1 0 00291154 -gooseberry n 2 4 @ #m #p %p 2 0 12806015 07744430 -gooseberry_bush n 1 3 @ #m %p 1 0 12806015 -gooseberry_family n 1 3 @ #m %m 1 0 12804621 -goosebump n 1 1 @ 1 0 00866606 -goosefish n 1 3 @ #m %p 1 0 02548247 -gooseflesh n 1 1 @ 1 0 00866606 -goosefoot n 1 3 @ ~ #m 1 0 11828247 -goosefoot_family n 1 4 @ ~ #m %m 1 0 11827775 -goosefoot_maple n 1 1 @ 1 0 12753762 -gooseneck n 1 1 @ 1 0 13869129 -gooseneck_barnacle n 1 2 @ #m 1 0 01999186 -gooseneck_loosestrife n 1 1 @ 1 0 12095281 -gop n 1 2 @ %m 1 1 08263113 -gopher n 5 3 @ ~ #m 5 0 10135297 09743792 02358091 02353861 01671125 -gopher_hole n 1 1 @ 1 0 09290350 -gopher_snake n 2 2 @ ~ 2 0 01741232 01733957 -gopher_state n 1 3 @ #p %p 1 0 09102016 -gopher_tortoise n 1 2 @ #m 1 0 01671125 -gopher_turtle n 1 2 @ #m 1 0 01671125 -gopherus n 1 3 @ #m %m 1 0 01670961 -gopherus_agassizii n 1 2 @ #m 1 0 01671479 -gopherus_polypemus n 1 2 @ #m 1 0 01671125 -gopherwood n 1 2 @ #m 1 0 12516165 -goral n 1 2 @ #m 1 0 02418770 -gorbachev n 1 1 @ 1 0 11007750 -gordian_knot n 2 1 @ 2 0 06785541 03448031 -gordie_howe n 1 1 @ 1 0 11062801 -gordimer n 1 1 @ 1 0 11007993 -gordius n 1 1 @ 1 0 11008173 -gordon_howe n 1 1 @ 1 0 11062801 -gordon_setter n 1 1 @ 1 0 02101006 -gore n 4 3 @ #p + 4 0 11008313 05401753 03448253 00221178 -gore_vidal n 1 1 @ 1 0 11366109 -gorgas n 1 1 @ 1 0 11008462 -gorge n 3 4 @ ~ #p %p 3 0 09290444 09263912 05533948 -gorger n 1 2 @ + 1 0 10561613 -gorgerin n 1 1 @ 1 0 03448491 -gorget n 1 2 @ #p 1 0 03448590 -gorgon n 1 3 @ ~ ; 1 0 09495103 -gorgonacea n 1 3 @ #m %m 1 0 01916010 -gorgoniacea n 1 3 @ #m %m 1 0 01916010 -gorgonian n 1 3 @ ~ #m 1 0 01916187 -gorgonian_coral n 1 3 @ ~ #m 1 0 01916187 -gorgonocephalus n 1 2 @ #m 1 0 02318798 -gorgonzola n 1 1 @ 1 0 07852376 -gorilla n 1 3 @ ~ #m 1 0 02480855 -gorilla_gorilla n 1 3 @ ~ #m 1 0 02480855 -gorilla_gorilla_beringei n 1 2 @ #m 1 0 02481366 -gorilla_gorilla_gorilla n 1 2 @ #m 1 0 02481103 -gorilla_gorilla_grauri n 1 2 @ #m 1 0 02481235 -goring n 1 1 @ 1 0 11008647 -gorki n 2 2 @ #p 2 0 11008870 09008130 -gorkiy n 1 2 @ #p 1 0 09008130 -gorky n 2 2 @ #p 2 0 11008870 09008130 -gorse n 1 2 @ #m 1 0 12574866 -gosainthan n 1 2 @ #p 1 0 09290626 -gosan-chiku n 1 2 @ #m 1 0 12149144 -goshawk n 1 2 @ #m 1 0 01606522 -gosling n 1 2 @ + 1 0 01856072 -gosmore n 1 2 @ #m 1 0 11984144 -gospel n 5 5 @ ~ #p %p ; 5 2 06455138 06724323 07061334 06789411 05962252 -gospel_according_to_john n 1 2 @ #p 1 0 06442239 -gospel_according_to_luke n 1 3 @ #p - 1 0 06441973 -gospel_according_to_mark n 1 2 @ #p 1 0 06441803 -gospel_according_to_matthew n 1 2 @ #p 1 0 06441607 -gospel_of_luke n 1 3 @ #p - 1 0 06441973 -gospel_singing n 1 3 @ ~ ; 1 0 07061334 -gospel_truth n 1 1 @ 1 0 06724323 -gospeler n 1 2 @ ~ 1 1 10067011 -gospeller n 1 2 @ ~ 1 0 10067011 -gospels n 1 4 @ ~ #p %p 1 1 06455138 -gossamer n 2 2 @ + 2 0 03448696 03059806 -gossip n 3 3 @ ~ + 3 2 07135080 07223170 10139347 -gossip_columnist n 1 1 @ 1 0 10139651 -gossiper n 1 3 @ ~ + 1 0 10139347 -gossiping n 1 3 @ ~ + 1 0 07135450 -gossipmonger n 1 2 @ ~ 1 0 10139347 -gossipmongering n 1 2 @ ~ 1 0 07135450 -gossypium n 1 3 @ #m %m 1 0 12175797 -gossypium_arboreum n 1 1 @ 1 0 12176278 -gossypium_barbadense n 1 1 @ 1 0 12176453 -gossypium_herbaceum n 1 1 @ 1 0 12176709 -gossypium_hirsutum n 1 1 @ 1 0 12176953 -gossypium_peruvianum n 1 1 @ 1 0 12177129 -gossypium_thurberi n 1 1 @ 1 0 12177455 -gota_canal n 1 2 @ #p 1 0 03448814 -goteborg n 1 2 @ #p 1 0 08766667 -goth n 2 2 @ ~ 2 0 10410815 10139774 -gothenburg n 1 2 @ #p 1 0 08766667 -gothic n 3 3 @ ~ + 3 0 06955706 06826589 05842387 -gothic_arch n 1 2 @ ~ 1 0 03448956 -gothic_architecture n 1 2 @ ~ 1 0 05842387 -gothic_romance n 1 2 @ + 1 0 06369405 -gothic_romancer n 1 2 @ + 1 1 10139944 -gothite n 1 2 @ #s 1 0 14677314 -gotterdammerung n 1 1 @ 1 0 06372925 -gottfried_wilhelm_leibnitz n 1 1 @ 1 0 11125193 -gottfried_wilhelm_leibniz n 1 1 @ 1 0 11125193 -gotthold_ephraim_lessing n 1 1 @ 1 0 11129665 -gottlieb_daimler n 1 1 @ 1 0 10921009 -gouache n 2 1 @ 2 0 03449217 03449103 -gouda n 1 1 @ 1 0 07853648 -gouda_cheese n 1 1 @ 1 0 07853648 -goudy n 1 1 @ 1 0 11009115 -gouge n 3 3 @ ~ + 3 0 04693384 03449309 00942900 -gouger n 2 3 @ ~ + 2 0 10140051 09955015 -goujon n 1 2 @ #m 1 0 02520147 -goulash n 1 2 @ ~ 1 0 07590320 -gould n 2 1 @ 2 0 11009495 11009273 -gounod n 1 1 @ 1 0 11009635 -gourd n 3 3 @ ~ #m 3 1 03449451 12158031 12157769 -gourd_family n 1 4 @ ~ #m %m 1 0 12157276 -gourd_vine n 1 3 @ ~ #m 1 0 12157769 -gourde n 1 2 @ %p 1 0 13679273 -gourmand n 1 2 @ + 1 0 10132988 -gourmandism n 1 1 @ 1 0 05212264 -gourmandizer n 1 2 @ + 1 0 10132988 -gourmet n 1 1 @ 1 1 10061656 -gout n 1 2 @ + 1 1 14188804 -gouty_arthritis n 1 1 @ 1 0 14188804 -gouverneur_morris n 1 1 @ 1 0 11191653 -governador_valadares n 1 2 @ #p 1 0 08855763 -governance n 2 7 @ ~ #p %m %p + - 2 0 08164585 01124794 -governed n 1 1 @ 1 1 08161258 -governess n 1 1 @ 1 1 10140169 -governing n 1 4 @ ~ + - 1 0 01124794 -governing_board n 1 3 @ ~ %m 1 0 08324107 -governing_body n 1 5 @ ~ #p %m %p 1 0 08164585 -government n 4 7 @ ~ %m %p + ; - 4 3 08050678 01124794 05663671 06148148 -government-in-exile n 1 1 @ 1 0 08052690 -government_accounting_office n 1 1 @ 1 0 08162245 -government_activity n 1 3 @ ~ - 1 0 01124794 -government_agency n 1 2 @ ~ 1 0 08337324 -government_agent n 1 2 @ ~ 1 0 10133644 -government_bond n 1 2 @ ~ 1 0 13338234 -government_building n 1 2 @ ~ 1 0 03449564 -government_department n 1 4 @ ~ #m %p 1 0 08119821 -government_income n 1 2 @ ~ 1 0 13261779 -government_issue n 1 2 @ ; 1 0 13367593 -government_man n 1 1 @ 1 0 10133850 -government_minister n 1 2 @ ~ 1 0 10320863 -government_note n 1 2 @ ~ 1 0 13393762 -government_office n 1 2 @ ~ 1 1 03449858 -government_officials n 1 3 @ ~ #m 1 0 08357784 -government_printing_office n 1 2 @ #p 1 0 08356573 -government_revenue n 1 2 @ ~ 1 0 13261779 -government_security n 1 1 @ 1 0 13340080 -governor n 2 3 @ ~ + 2 1 10140314 03450018 -governor's_plum n 1 2 @ #m 1 0 12378249 -governor's_race n 1 1 @ 1 1 07473207 -governor_general n 1 1 @ 1 0 10140597 -governor_plum n 1 2 @ #m 1 0 12378249 -governorship n 1 2 @ + 1 0 00592795 -gowen_cypress n 1 1 @ 1 0 11631159 -gown n 5 4 @ ~ %p + 5 1 03450230 08286342 03824381 03450734 03450516 -goy n 1 2 @ ~ 1 0 09679028 -goya n 1 1 @ 1 0 11009773 -goya_y_lucientes n 1 1 @ 1 0 11009773 -gp n 1 2 @ ~ 1 0 10126009 -gp_bomb n 1 2 @ ~ 1 0 03433637 -gpa n 1 1 @ 1 0 07261542 -gpo n 1 2 @ #p 1 0 08356573 -gps n 1 1 @ 1 0 03440216 -graafian_follicle n 1 3 @ #p %p 1 0 05518449 -grab n 2 3 @ ~ + 2 0 03450881 00138956 -grab_bag n 2 1 @ 2 0 08399287 03450974 -grab_bar n 1 1 @ 1 0 03451120 -grab_sample n 1 2 @ ; 1 1 05822337 -grabber n 1 1 @ 1 0 10140683 -grace n 7 4 @ ~ + ; 7 4 14458181 05003590 04900357 04640356 09495382 07190039 04840715 -grace_cup n 1 1 @ 1 0 03451253 -grace_ethel_cecile_rosalie_allen n 1 1 @ 1 0 10815113 -grace_kelly n 1 1 @ 1 0 11099923 -grace_note n 1 1 @ 1 0 06871983 -grace_of_god n 1 2 @ ; 1 0 04840715 -grace_patricia_kelly n 1 1 @ 1 0 11099923 -gracefulness n 1 4 ! @ ~ + 1 0 05003423 -gracelessness n 2 3 @ ~ + 2 0 05004532 04815624 -gracie n 1 1 @ 1 0 10815113 -gracie_allen n 1 1 @ 1 0 10815113 -gracilariid n 1 1 @ 1 0 02292980 -gracilariid_moth n 1 1 @ 1 0 02292980 -gracilariidae n 1 2 @ #m 1 0 02292850 -gracility n 1 2 @ + 1 0 05003590 -gracillariidae n 1 2 @ #m 1 0 02292850 -graciousness n 2 5 ! @ ~ = + 2 0 04913568 04840981 -grackle n 2 3 @ ~ #m 2 0 01578180 01574390 -gracula n 1 2 @ #m 1 0 01578086 -gracula_religiosa n 1 1 @ 1 0 01578180 -grad n 2 3 @ ~ #p 2 0 13612319 09786338 -grad_school n 1 3 @ ~ #m 1 0 08282696 -grad_student n 1 1 @ 1 0 10141109 -gradable_opposition n 1 2 @ ~ 1 0 13856320 -gradation n 3 3 @ ~ + 3 0 14429608 07112282 01003729 -grade n 9 5 @ ~ #p = + 9 3 08238463 14428160 05068716 13612319 07112282 05737153 05132045 05093890 02406952 -grade_crossing n 1 1 @ 1 0 03659122 -grade_insignia n 1 2 @ ; 1 0 07269552 -grade_point n 1 1 @ 1 0 05737532 -grade_point_average n 1 1 @ 1 0 07261542 -grade_school n 1 2 @ ~ 1 1 08412749 -grade_separation n 1 1 @ 1 0 03451365 -grader n 1 3 @ ~ + 1 0 10140783 -gradient n 2 2 @ ~ 2 1 13859512 05068461 -grading n 3 2 @ + 3 1 01010334 00912576 00874977 -gradual n 1 2 @ ; 1 0 07033433 -graduality n 1 2 @ + 1 0 05061805 -gradualness n 2 3 ! @ + 2 0 05069853 05061805 -graduate n 2 3 @ ~ + 2 1 09786338 03451473 -graduate_nurse n 1 1 @ 1 0 10140929 -graduate_school n 1 3 @ ~ #m 1 1 08282696 -graduate_student n 1 1 @ 1 1 10141109 -graduated_cylinder n 1 1 @ 1 0 03451711 -graduated_table n 1 2 @ ~ 1 0 13850304 -graduated_tax n 1 1 @ 1 0 13314495 -graduating_class n 1 1 @ 1 1 08238909 -graduation n 4 4 @ ~ %p + 4 1 00212065 07454758 06801965 01003729 -graduation_exercise n 1 2 @ %p 1 0 07454758 -graeco-roman_deity n 1 2 @ ~ 1 0 09547903 -graecophile n 1 2 @ + 1 0 10422540 -graf n 1 1 @ 1 0 11010019 -graf_zeppelin n 1 1 @ 1 0 04614372 -graffiti n 1 1 @ 1 0 03451798 -graffito n 1 1 @ 1 0 03451798 -graft n 3 4 @ ~ + ; 3 0 05582859 00776262 00379588 -grafting n 1 2 @ + 1 0 00379588 -graham n 3 2 @ ; 3 0 11010385 11010187 07569644 -graham_bread n 1 1 @ 1 0 07683039 -graham_cracker n 1 1 @ 1 0 07695652 -graham_flour n 1 2 @ ; 1 0 07569644 -graham_greene n 1 1 @ 1 0 11013743 -grahame n 1 1 @ 1 0 11010557 -grail n 2 2 @ ; 2 0 05981936 03451909 -grain n 11 5 @ ~ #p %p + 11 2 09290777 07802417 14760339 13723304 13721893 13719683 12156819 12141385 05107322 04950713 04934220 -grain_alcohol n 1 3 @ ~ #s 1 0 14709265 -grain_field n 1 2 @ ~ 1 0 08579352 -grain_merchant n 1 1 @ 1 0 10141268 -grain_moth n 1 2 @ ~ 1 0 02293868 -grain_sorghum n 1 2 @ ~ 1 0 12137569 -grainfield n 1 2 @ ~ 1 0 08579352 -grainger n 1 1 @ 1 0 11010697 -graininess n 1 3 @ ~ + 1 0 04949256 -graining n 1 2 @ + 1 1 04951071 -grains_of_paradise n 1 2 @ #m 1 0 12357968 -grainy_club n 1 2 @ ~ 1 0 13024653 -grainy_club_mushrooms n 1 2 @ ~ 1 0 13024500 -gram n 2 3 @ #p %p 2 1 13723712 11010936 -gram's_method n 1 1 @ 1 0 00275751 -gram's_procedure n 1 1 @ 1 0 00275751 -gram's_solution n 1 1 @ 1 0 15053373 -gram's_stain n 1 1 @ 1 0 00275751 -gram-atomic_weight n 1 1 @ 1 0 13723899 -gram_atom n 1 1 @ 1 0 13723899 -gram_calorie n 1 2 @ #p 1 0 13726296 -gram_method n 1 1 @ 1 0 00275751 -gram_molecule n 1 1 @ 1 0 13724081 -gram_stain n 1 1 @ 1 0 00275751 -grama n 1 3 @ ~ #m 1 0 12112008 -grama_grass n 1 3 @ ~ #m 1 0 12112008 -gramicidin n 1 1 @ 1 0 03452055 -graminaceae n 1 4 @ ~ #m %m 1 0 12100538 -graminaceous_plant n 1 3 @ ~ #m 1 0 12101870 -graminales n 1 3 @ #m %m 1 0 12100382 -gramineae n 1 4 @ ~ #m %m 1 0 12100538 -gramineous_plant n 1 3 @ ~ #m 1 0 12101870 -gramma n 1 3 @ ~ #m 1 0 12112008 -gramma_grass n 1 3 @ ~ #m 1 0 12112008 -grammar n 1 5 @ ~ + ; - 1 0 06174404 -grammar_school n 2 2 @ ~ 2 0 08412958 08412749 -grammarian n 1 2 @ ~ 1 1 10141364 -grammatical_case n 1 2 @ ~ 1 0 06310945 -grammatical_category n 1 3 @ ~ ; 1 0 06309383 -grammatical_constituent n 1 4 @ ~ #p ; 1 0 06312966 -grammatical_construction n 1 2 @ ~ 1 0 06313651 -grammatical_gender n 1 2 @ ~ 1 0 06328643 -grammatical_meaning n 1 2 @ #p 1 0 06602148 -grammatical_relation n 1 2 @ ~ 1 0 13796779 -grammatical_rule n 1 2 @ ~ 1 0 07260175 -grammatolatry n 1 1 @ 1 0 01044983 -grammatophyllum n 1 2 @ #m 1 0 12063887 -gramme n 1 3 @ #p %p 1 0 13723712 -gramophone n 1 2 @ ~ 1 0 03452267 -gramps n 1 1 @ 1 0 10142391 -grampus n 2 2 @ #m 2 0 02071294 02071028 -grampus_griseus n 1 2 @ #m 1 0 02071028 -gran n 1 2 @ ~ 1 0 10142747 -gran_casa n 1 1 @ 1 0 02803666 -gran_santiago n 1 2 @ #p 1 0 08721559 -granada n 1 3 @ #p %p 1 0 09025863 -granadilla n 4 3 @ #p %p 4 0 12384037 12383894 12383737 07753980 -granadilla_tree n 1 2 @ %s 1 0 11749112 -granadilla_wood n 2 2 @ #s 2 0 12524010 11749273 -granadillo n 1 2 @ %s 1 0 11749112 -granary n 1 2 @ ~ 1 1 03452449 -grand n 2 3 @ ~ %p 2 0 13750844 03452741 -grand_canal n 2 2 @ #p 2 0 08813586 08729094 -grand_canyon n 1 2 @ #p 1 0 09291027 -grand_canyon_national_park n 1 2 @ #p 1 0 08604891 -grand_canyon_state n 1 3 @ #p %p 1 0 09057311 -grand_circle n 1 1 @ 1 0 00435401 -grand_dragon n 1 2 @ #m 1 0 10141811 -grand_duchess n 1 1 @ 1 0 10141930 -grand_duchy n 1 1 @ 1 0 08557864 -grand_duchy_of_luxembourg n 1 5 @ #m #p %m %p 1 0 08960987 -grand_duke n 1 2 @ ~ 1 0 10142060 -grand_fir n 1 1 @ 1 0 11622368 -grand_guignol n 1 1 @ 1 0 07008849 -grand_inquisitor n 1 3 @ ~ ; 1 0 10142537 -grand_island n 1 2 @ #p 1 0 09109771 -grand_jury n 1 2 @ ; 1 1 08414964 -grand_lama n 1 1 @ 1 0 09988493 -grand_larceny n 1 2 ! @ 1 0 00783902 -grand_mal n 2 1 @ 2 0 14087513 14083368 -grand_mal_epilepsy n 1 1 @ 1 0 14087513 -grand_marnier n 1 1 @ 1 0 07910152 -grand_mufti n 1 1 @ 1 0 10143085 -grand_national n 1 1 @ 1 0 07462808 -grand_opera n 1 1 @ 1 0 07026827 -grand_piano n 1 3 @ ~ %p 1 0 03452741 -grand_prix n 1 1 @ 1 0 07459066 -grand_rapids n 1 2 @ #p 1 0 09100837 -grand_river n 1 2 @ #p 1 0 09291185 -grand_slam n 1 1 @ 1 0 07474809 -grand_teton n 1 2 @ #p 1 0 09291340 -grand_teton_national_park n 1 2 @ #p 1 0 08605123 -grand_theft n 1 1 @ 1 0 00783902 -grand_total n 1 1 @ 1 0 05860869 -grand_tour n 2 1 @ 2 0 00311195 00311091 -grand_turk n 1 2 @ ~ 1 0 10674315 -grandad n 1 1 @ 1 0 10142391 -grandaunt n 1 1 @ 1 0 10145239 -grandchild n 1 2 @ ~ 1 1 10141590 -granddad n 1 1 @ 1 0 10142391 -granddaddy n 1 1 @ 1 0 10142391 -granddaughter n 1 1 @ 1 0 10141732 -grande_dame n 1 1 @ 1 0 10142166 -grandee n 1 1 @ 1 0 10142290 -grandeur n 2 3 @ ~ = 2 2 04814238 04870340 -grandfather n 1 1 @ 1 1 10142391 -grandfather_clause n 1 1 @ 1 1 14529612 -grandfather_clock n 1 2 @ %p 1 0 03452594 -grandiloquence n 1 3 @ ~ + 1 0 07070429 -grandiosity n 1 3 @ ~ + 1 0 07070429 -grandma n 1 2 @ ~ 1 1 10142747 -grandma_moses n 1 1 @ 1 0 11193645 -grandmaster n 1 2 @ ~ 1 0 10142946 -grandmother n 1 2 @ ~ 1 1 10142747 -grandnephew n 1 1 @ 1 0 10146002 -grandness n 4 3 @ ~ + 4 0 14434681 05104548 04814238 04729328 -grandniece n 1 1 @ 1 0 10146104 -grandpa n 1 1 @ 1 0 10142391 -grandparent n 1 2 @ ~ 1 1 10143172 -grandson n 1 1 @ 1 0 10143299 -grandstand n 2 2 @ %p 2 0 08222871 03452953 -grandstander n 1 2 @ + 1 0 10143371 -granduncle n 1 1 @ 1 0 10146209 -grange n 1 1 @ 1 0 03453162 -granger n 1 2 @ ~ 1 0 10078806 -granicus n 1 2 @ ; 1 0 01279866 -granite n 2 3 @ %s + 2 2 14890286 04778114 -granite_state n 1 3 @ #p %p 1 0 09111366 -granite_stater n 1 1 @ 1 0 09744346 -graniteware n 1 1 @ 1 0 03453231 -grannie n 1 2 @ ~ 1 0 10142747 -granny n 3 2 @ ~ 3 1 10142747 10143530 03453320 -granny's_bonnets n 1 2 @ #m 1 0 11727738 -granny_knot n 1 1 @ 1 0 03453320 -granny_smith n 1 1 @ 1 0 07742313 -granola n 1 1 @ 1 0 07704994 -granola_bar n 1 1 @ 1 0 07705137 -grant n 8 5 @ ~ #m + ; 8 3 13266892 00087423 13254237 11011559 11011398 11011123 06526619 05176477 -grant-in-aid n 2 2 @ ~ 2 1 00088367 13267534 -grant_wood n 1 1 @ 1 0 11395466 -grantee n 2 2 @ + 2 0 10143595 09783537 -granter n 1 4 ! @ ~ + 1 0 10143725 -granth n 1 2 @ ; 1 0 06430784 -granth_sahib n 1 2 @ ; 1 0 06430784 -granting_immunity n 1 2 @ ~ 1 0 00213903 -grantor n 1 3 @ ~ + 1 0 10143889 -grantor_trust n 1 1 @ 1 0 13361624 -granular_pearlite n 1 1 @ 1 0 14890485 -granularity n 1 3 @ ~ + 1 0 04949256 -granulated_sugar n 1 2 @ ~ 1 0 07596046 -granulation n 2 3 @ ~ + 2 0 14237818 00925866 -granulation_tissue n 1 2 @ ~ 1 0 14237818 -granule n 1 2 @ ~ 1 1 09291513 -granulocyte n 1 2 @ + 1 0 05453145 -granulocytic_leukemia n 1 2 @ ~ 1 0 14245163 -granulocytopenia n 1 1 @ 1 0 14071896 -granuloma n 1 3 @ ~ + 1 0 14238639 -granuloma_inguinale n 1 1 @ 1 0 14133750 -granuloma_venereum n 1 1 @ 1 0 14133750 -granville-barker n 1 1 @ 1 0 11011764 -granville_stanley_hall n 1 1 @ 1 0 11024908 -granville_wilt n 1 1 @ 1 1 14283002 -grape n 3 7 @ ~ #m #p %s %p + 3 1 07758680 13144794 03453547 -grape-leaf_begonia n 1 1 @ 1 0 12361350 -grape_arbor n 1 1 @ 1 1 03453443 -grape_arbour n 1 1 @ 1 0 03453443 -grape_fern n 1 3 @ ~ #m 1 0 12960863 -grape_hyacinth n 1 3 @ ~ #m 1 0 12460697 -grape_jelly n 1 1 @ 1 0 07643679 -grape_juice n 1 2 @ ~ 1 0 07924560 -grape_louse n 1 2 @ #m 1 0 02255855 -grape_phylloxera n 1 2 @ #m 1 0 02255855 -grape_sugar n 1 1 @ 1 0 14884336 -grape_vine n 1 4 @ ~ #m %p 1 0 13144794 -grapefruit n 2 4 @ #m #p %p 2 0 12709688 07749969 -grapefruit_juice n 1 1 @ 1 0 07924747 -grapefruit_peel n 1 2 @ #p 1 0 07601025 -grapeshot n 1 1 @ 1 0 03453547 -grapevine n 2 4 @ ~ #m %p 2 1 07223635 13144794 -grapevine_family n 1 3 @ #m %m 1 0 13144303 -graph n 1 4 @ ~ %p + 1 1 07000195 -graph_paper n 1 1 @ 1 0 14890183 -grapheme n 1 2 @ ~ 1 0 06818970 -graphic n 1 1 @ 1 0 03453696 -graphic_art n 1 2 @ ~ 1 0 03453809 -graphic_artist n 1 2 @ ~ 1 0 10475687 -graphic_design n 1 2 @ + 1 0 06999045 -graphic_designer n 1 2 @ + 1 0 10144055 -graphic_symbol n 1 2 @ ~ 1 0 06818970 -graphic_tellurium n 1 2 @ %s 1 0 15065713 -graphical_record n 1 3 @ ~ %p 1 0 07000195 -graphical_user_interface n 1 2 @ %p 1 0 06575681 -graphics n 2 3 @ ~ #p 2 0 06998748 03453985 -graphite n 1 2 @ ~ 1 1 14796575 -graphologist n 1 2 @ + 1 0 10144188 -graphology n 1 2 @ + 1 0 06248361 -graphospasm n 1 1 @ 1 0 14360915 -grapnel n 2 3 @ ~ %p 2 0 03454211 03454110 -grapnel_anchor n 1 1 @ 1 0 03454110 -grapo n 1 2 @ ; 1 0 08021129 -grappa n 1 1 @ 1 0 07903962 -grappelli n 1 1 @ 1 0 11012042 -grapple n 3 4 @ ~ %p + 3 0 03454211 03037108 00622266 -grappler n 2 4 @ ~ %p + 2 0 10793168 03454211 -grappling n 2 5 @ ~ %p + - 2 1 00622266 00447540 -grappling_hook n 1 3 @ ~ %p 1 0 03454211 -grappling_iron n 1 3 @ ~ %p 1 0 03454211 -graptophyllum n 1 3 @ #m %m 1 0 12812665 -graptophyllum_pictum n 1 2 @ #m 1 0 12812801 -grasp n 4 3 @ ~ + 4 0 05806623 05623628 05194874 00812526 -grasping n 2 3 @ ~ + 2 1 05806855 00812274 -grass n 5 4 @ ~ + ; 5 1 12102133 11012153 10675481 07801091 03990834 -grass-leaved_golden_aster n 1 1 @ 1 0 11951961 -grass-of-parnassus n 1 3 @ ~ #m 1 0 12801520 -grass_bacillus n 1 1 @ 1 0 01350485 -grass_family n 1 4 @ ~ #m %m 1 0 12100538 -grass_fern n 1 2 @ #m 1 0 13179804 -grass_finch n 2 3 @ ~ #m 2 0 01544208 01535140 -grass_frog n 1 2 @ #m 1 0 01642539 -grass_parakeet n 1 2 @ #m 1 0 01821869 -grass_pea n 1 2 @ #m 1 0 12541403 -grass_pink n 2 2 @ #m 2 0 12049282 11809594 -grass_poly n 1 2 @ #m 1 0 12328801 -grass_roots n 2 2 @ ; 2 0 13791250 07947789 -grass_skirt n 1 1 @ 1 0 03454442 -grass_snake n 3 3 @ ~ #m 3 0 01737875 01735189 01729977 -grass_tree n 3 2 @ #m 3 0 12478768 12466206 12254891 -grass_tree_family n 1 2 @ #m 1 0 12465796 -grass_vetch n 1 2 @ #m 1 0 12540647 -grass_vetchling n 1 2 @ #m 1 0 12540647 -grass_widow n 1 2 @ ~ 1 0 10020366 -grass_widower n 1 1 @ 1 0 10144338 -grass_wrack n 1 2 @ #m 1 0 12618727 -grassfinch n 1 3 @ ~ #m 1 0 01544208 -grassfire n 1 1 @ 1 1 07303988 -grasshopper n 2 3 @ ~ %s 2 1 02226429 07915213 -grasshopper_mouse n 1 2 @ #m 1 0 02337902 -grassland n 1 2 @ ~ 1 0 08598301 -grassy_death_camas n 1 2 @ #m 1 0 12467592 -grate n 3 4 @ ~ #p + 3 1 03454536 07384244 03454707 -grated_cheese n 1 1 @ 1 0 07853762 -gratefulness n 1 2 @ + 1 0 07504529 -grater n 1 2 @ + 1 0 03454885 -graticule n 1 3 @ #p %p 1 0 04082886 -gratification n 2 3 @ ~ + 2 2 13986679 01072780 -grating n 3 4 @ ~ #p + 3 1 03454707 03454536 03194538 -gratitude n 1 3 ! @ ~ 1 1 07504343 -gratuity n 2 2 @ ~ 2 0 13298701 13268020 -grave n 3 3 @ ~ %p 3 2 15143726 03455033 06822707 -grave_accent n 1 1 @ 1 0 06822707 -grave_mound n 1 2 @ ; 1 0 02922292 -gravedigger n 1 1 @ 1 0 10144468 -gravel n 1 3 @ ~ + 1 1 14698884 -gravel_pit n 1 1 @ 1 0 03455279 -gravelweed n 1 1 @ 1 0 12031388 -graven_image n 1 2 @ ~ 1 1 03560161 -graveness n 1 3 @ ~ + 1 0 04647478 -graver n 1 2 @ ~ 1 0 03455355 -graverobber n 2 1 @ 2 0 10144730 10144571 -graves n 1 1 @ 1 0 11012300 -graves'_disease n 1 1 @ 1 0 14121058 -gravestone n 1 2 @ #p 1 1 03455488 -graveyard n 1 2 @ ~ 1 1 08521623 -graveyard_shift n 2 1 @ 2 0 15292960 08218832 -graveyard_watch n 1 1 @ 1 0 15293435 -gravida n 2 2 @ ~ 2 0 14047009 10144838 -gravida_i n 1 2 @ ; 1 0 10472129 -gravida_ii n 1 1 @ 1 0 10574723 -gravida_iii n 1 1 @ 1 0 10703221 -gravidation n 1 1 @ 1 0 14046861 -gravidity n 1 2 @ + 1 0 14046861 -gravidness n 1 2 @ + 1 0 14046861 -gravimeter n 2 3 @ ~ + 2 0 03553486 03455642 -gravimetric_analysis n 1 1 @ 1 0 00648692 -gravimetry n 1 2 @ + 1 0 01002413 -graving_dock n 1 3 @ ~ #p 1 0 03251533 -graving_tool n 1 2 @ ~ 1 0 03455355 -gravitas n 1 1 @ 1 0 04910684 -gravitation n 3 5 ! @ ~ + ; 3 0 11464143 07362830 06198313 -gravitation_wave n 1 2 @ ; 1 0 07344875 -gravitational_attraction n 1 3 @ ~ ; 1 1 11464143 -gravitational_collapse n 1 1 @ 1 0 07365673 -gravitational_constant n 1 3 @ #p ; 1 0 13590327 -gravitational_field n 1 1 @ 1 1 11464027 -gravitational_force n 1 3 @ ~ ; 1 1 11464143 -gravitational_interaction n 1 1 @ 1 0 11516659 -gravitational_mass n 1 2 @ ; 1 0 05025520 -gravitational_theory n 1 3 @ %p ; 1 0 05990089 -graviton n 1 1 @ 1 0 09291633 -gravity n 3 5 ! @ ~ + ; 3 2 11464143 04647478 07512147 -gravity-assist n 1 2 @ ; 1 0 11481627 -gravity_bomb n 1 1 @ 1 0 03255167 -gravity_fault n 1 1 @ 1 0 09372313 -gravity_gradient n 1 1 @ 1 0 13859925 -gravity_meter n 1 1 @ 1 0 03455642 -gravity_wave n 1 2 @ ; 1 0 07344875 -gravure n 4 3 @ ~ + 4 0 06678784 03455923 03455802 01103374 -gravy n 3 1 @ 3 0 07838073 07837912 07477587 -gravy_boat n 1 2 @ ~ 1 0 03456024 -gravy_holder n 1 2 @ ~ 1 0 03456024 -gravy_train n 1 1 @ 1 0 13255883 -gray n 9 3 @ ~ + 9 4 04961691 03456186 08481009 02381364 13645812 11012993 11012846 11012676 11012474 -gray_alder n 1 2 @ #m 1 0 12285049 -gray_area n 1 1 @ 1 0 05998994 -gray_birch n 1 2 @ #m 1 0 12282235 -gray_catbird n 1 2 @ #m 1 0 01587526 -gray_flounder n 1 2 @ #m 1 0 02661892 -gray_fox n 1 2 @ #m 1 0 02120505 -gray_goldenrod n 1 1 @ 1 0 12017127 -gray_hen n 1 1 @ 1 0 01796105 -gray_jay n 1 3 @ ~ #m 1 0 01581166 -gray_kingbird n 1 1 @ 1 0 01549053 -gray_lemming n 1 2 @ #m 1 0 02345340 -gray_market n 1 1 @ 1 0 01098071 -gray_matter n 1 3 @ #s %s 1 0 05483388 -gray_mullet n 2 5 @ ~ #m #p %p 2 0 07784367 02601344 -gray_partridge n 1 2 @ #m 1 0 01807828 -gray_polypody n 1 1 @ 1 0 13173259 -gray_poplar n 1 1 @ 1 0 12732252 -gray_sage n 1 2 @ #m 1 0 12014085 -gray_sea_eagle n 1 1 @ 1 0 01615458 -gray_skate n 1 2 @ #m 1 0 01501641 -gray_snapper n 1 2 @ #m 1 0 02587300 -gray_sole n 1 1 @ 1 0 07791434 -gray_substance n 1 3 @ #s %s 1 0 05483388 -gray_whale n 1 2 @ #m 1 0 02066245 -gray_willow n 1 2 @ #m 1 0 12728864 -gray_wolf n 1 1 @ 1 0 02114367 -grayback n 2 2 @ #m 2 0 02033208 02028900 -graybeard n 1 2 @ ~ 1 1 10375506 -grayhen n 1 1 @ 1 0 01796105 -grayish_brown n 1 1 @ 1 0 04973110 -graylag n 1 2 @ #m 1 0 01856553 -graylag_goose n 1 2 @ #m 1 0 01856553 -grayness n 1 3 @ ~ + 1 0 04961691 -graz n 1 2 @ #p 1 0 08846626 -graze n 2 2 @ + 2 0 14286885 00841091 -grazier n 1 2 @ + 1 0 10144962 -grazing n 2 2 @ + 2 0 00841091 00150762 -grazing_fire n 1 1 @ 1 0 00991164 -grazing_land n 1 3 @ ~ #p 1 0 08616050 -grease n 2 3 @ ~ + 2 1 14890945 14498096 -grease-gun n 1 1 @ 1 0 03456299 -grease_monkey n 1 1 @ 1 0 09825750 -greaseball n 1 2 @ ; 1 0 09716439 -greasepaint n 1 1 @ 1 0 03456447 -greaseproof_paper n 1 1 @ 1 0 14891132 -greaser n 1 2 @ ; 1 0 09722898 -greasewood n 1 2 @ #m 1 0 11835251 -greasiness n 1 2 @ + 1 0 05000116 -greasy_spoon n 1 1 @ 1 0 03456548 -great n 1 1 @ 1 0 10145081 -great-aunt n 1 1 @ 1 0 10145239 -great-leaved_macrophylla n 1 1 @ 1 0 11710987 -great-nephew n 1 1 @ 1 0 10146002 -great-niece n 1 1 @ 1 1 10146104 -great-uncle n 1 1 @ 1 0 10146209 -great_adductor_muscle n 1 2 @ #p 1 0 05292200 -great_anteater n 1 2 @ #m 1 0 02460451 -great_ape n 1 3 @ ~ #m 1 0 02480153 -great_arabian_desert n 1 3 @ #p %p 1 0 09167767 -great_attractor n 1 1 @ 1 0 09291781 -great_auk n 1 2 @ #m 1 0 02046442 -great_australian_bight n 1 2 @ #p 1 0 09292007 -great_australian_desert n 1 3 @ #p %p 1 0 09168336 -great_barracuda n 1 1 @ 1 0 02603540 -great_barrier_reef n 1 2 @ #p 1 0 09292348 -great_bear n 1 2 @ %p 1 0 09292189 -great_black-backed_gull n 1 2 @ #m 1 0 02041875 -great_blue_heron n 1 2 @ #m 1 0 02008497 -great_blue_shark n 1 2 @ #m 1 0 01491006 -great_bowerbird n 1 2 @ #m 1 0 01601410 -great_britain n 2 8 @ ~ #m #p %m %p ; - 2 2 08860123 08858942 -great_burdock n 1 1 @ 1 0 11924849 -great_bustard n 1 2 @ #m 1 0 02019190 -great_care n 1 1 @ 1 0 01132148 -great_cerebral_vein n 1 1 @ 1 0 05362016 -great_circle n 1 2 @ ~ 1 0 08579487 -great_commoner n 1 1 @ 1 0 10869385 -great_crested_grebe n 1 1 @ 1 0 02050313 -great_dane n 1 1 @ 1 0 02109047 -great_deal n 1 2 @ ~ 1 1 13774404 -great_depression n 2 1 @ 2 1 14489361 15294211 -great_divide n 1 2 @ #p 1 0 08679807 -great_dividing_range n 1 3 @ #p %p 1 0 09292545 -great_dog n 1 2 @ %m 1 0 09232841 -great_duckweed n 1 2 @ #m 1 0 11795580 -great_elector n 1 2 @ #m 1 0 10980681 -great_falls n 1 2 @ #p 1 0 09109012 -great_grandchild n 1 2 @ ~ 1 0 10145340 -great_granddaughter n 1 1 @ 1 0 10145480 -great_grandfather n 1 1 @ 1 0 10145682 -great_grandmother n 1 1 @ 1 1 10145590 -great_grandparent n 1 2 @ ~ 1 0 10145774 -great_grandson n 1 1 @ 1 0 10145902 -great_gray_owl n 1 2 @ #m 1 0 01622779 -great_grey_kangaroo n 1 2 @ #m 1 0 01877606 -great_grey_owl n 1 2 @ #m 1 0 01622779 -great_gross n 1 1 @ 1 0 13751158 -great_hall n 1 3 @ ~ #p 1 0 03457008 -great_horned_owl n 1 1 @ 1 0 01622483 -great_hundred n 1 1 @ 1 0 13750574 -great_indian_desert n 1 2 @ #p 1 0 09173417 -great_knapweed n 1 1 @ 1 0 11948864 -great_lakes n 1 3 @ #p %p 1 0 09292751 -great_lakes_state n 1 3 @ #p %p 1 0 09099526 -great_lobelia n 1 1 @ 1 0 12169320 -great_maple n 1 1 @ 1 0 12754981 -great_mendenhall_glacier n 1 2 @ #p 1 0 09350922 -great_millet n 1 1 @ 1 0 12137337 -great_mother n 1 1 @ 1 0 09594093 -great_mullein n 1 1 @ 1 0 12889713 -great_plains n 1 3 @ #p %p 1 0 09293011 -great_plains_of_north_america n 1 3 @ #p %p 1 0 09293011 -great_plains_paintbrush n 1 1 @ 1 0 12880638 -great_power n 1 2 @ ~ 1 1 08177592 -great_proletarian_cultural_revolution n 1 2 @ ; 1 0 07424436 -great_pyramid n 1 2 @ #m 1 0 04029125 -great_pyrenees n 1 1 @ 1 0 02111500 -great_ragweed n 1 1 @ 1 0 11919975 -great_revolt n 1 2 @ ; 1 0 00964105 -great_rift_valley n 1 3 @ #p ; 1 0 09293340 -great_russian n 1 1 @ 1 0 09728850 -great_salt_desert n 1 2 @ #p 1 0 09169038 -great_salt_lake n 1 2 @ #p 1 0 09293613 -great_sandy_desert n 2 2 @ #p 2 0 09172111 09169930 -great_saphenous_vein n 1 1 @ 1 0 05379944 -great_schism n 1 2 @ ; 1 0 15298283 -great_seal n 1 2 @ ~ 1 0 03457184 -great_seal_of_the_united_states n 1 1 @ 1 0 03457332 -great_skua n 1 1 @ 1 0 02044908 -great_slave_lake n 1 2 @ #p 1 0 09293744 -great_smoky_mountains n 1 2 @ #p 1 0 09293917 -great_smoky_mountains_national_park n 1 2 @ #p 1 0 08605261 -great_snipe n 1 2 @ #m 1 0 02032480 -great_solomon's-seal n 1 1 @ 1 0 12474418 -great_st_john's_wort n 1 1 @ 1 0 12368257 -great_toe n 1 2 @ #p 1 0 05577741 -great_victoria_desert n 1 2 @ #p 1 0 09170109 -great_wall n 1 2 @ #p 1 0 03018971 -great_wall_of_china n 1 2 @ #p 1 0 03018971 -great_war n 1 2 @ %p 1 0 01311520 -great_white_heron n 3 2 @ #m 3 0 02009912 02009750 02008643 -great_white_hope n 1 1 @ 1 0 10778999 -great_white_shark n 1 2 @ #m 1 0 01484850 -great_white_way n 1 2 @ #p 1 0 09122086 -great_year n 1 1 @ 1 0 15233614 -great_yellow_gentian n 1 2 @ #m 1 0 12294871 -great_yellowcress n 1 2 @ #m 1 0 11895714 -greatcoat n 1 2 @ ~ 1 1 03456665 -greater_antilles n 1 3 @ #p %p 1 0 08748076 -greater_burdock n 1 1 @ 1 0 11924849 -greater_butterfly_orchid n 1 2 @ #m 1 0 12078172 -greater_celandine n 1 2 @ #m 1 0 11903671 -greater_knapweed n 1 1 @ 1 0 11948864 -greater_kudu n 1 1 @ 1 0 02424486 -greater_london n 1 4 @ #p %m %p 1 0 08873622 -greater_masterwort n 1 1 @ 1 0 12934174 -greater_new_orleans_bridge n 1 2 @ #p 1 0 03456854 -greater_new_york n 1 3 @ #p %p 1 0 09119277 -greater_omentum n 1 1 @ 1 0 05429658 -greater_pectoral_muscle n 1 1 @ 1 0 05551939 -greater_peritoneal_sac n 1 2 @ %p 1 0 05427946 -greater_pichiciego n 1 2 @ #m 1 0 02456645 -greater_prairie_chicken n 1 1 @ 1 0 01798706 -greater_rhomboid_muscle n 1 1 @ 1 0 05575185 -greater_scaup n 1 1 @ 1 0 01851573 -greater_spearwort n 1 2 @ #m 1 0 11722036 -greater_stitchwort n 1 1 @ 1 0 11818271 -greater_sunda_islands n 1 2 @ #p 1 0 08842427 -greater_swiss_mountain_dog n 1 1 @ 1 0 02107574 -greater_water_parsnip n 1 2 @ #m 1 0 12945366 -greater_whitethroat n 1 1 @ 1 0 01564914 -greater_yellowlegs n 1 1 @ 1 0 02028342 -greatest_common_divisor n 1 1 @ 1 0 13735163 -greatest_common_factor n 1 1 @ 1 0 13735163 -greatness n 2 3 @ ~ + 2 1 05169601 05104548 -greave n 1 2 @ #p 1 0 03457451 -greaves n 1 1 @ 1 0 14677485 -grebe n 1 3 @ ~ #m 1 0 02050004 -grecian n 1 2 @ #m 1 0 10146313 -greco n 1 1 @ 1 0 10956377 -greco-roman_architecture n 1 3 @ ~ - 1 0 05841985 -greco-roman_deity n 1 2 @ ~ 1 0 09547903 -greco-roman_wrestling n 1 1 @ 1 0 00447957 -greece n 2 6 @ #m #p %m %p - 2 1 08780881 08782319 -greed n 2 3 @ ~ + 2 1 04945530 00758525 -greediness n 2 2 @ + 2 0 04886235 04834817 -greegree n 1 1 @ 1 0 03459498 -greek n 2 5 @ ~ #m + ; 2 2 06976392 09710164 -greek_alphabet n 1 2 @ %m 1 0 06499244 -greek_architecture n 1 1 @ 1 0 05842191 -greek_capital n 1 4 @ #p %m %p 1 0 08785343 -greek_catholic n 1 2 @ #m 1 0 09680387 -greek_chorus n 1 2 @ ; 1 1 08187988 -greek_church n 1 2 @ %m 1 0 08086646 -greek_clover n 1 3 @ #m %p 1 0 12574470 -greek_cross n 1 1 @ 1 0 03457578 -greek_deity n 1 3 @ ~ ; 1 0 09551356 -greek_drachma n 1 2 @ %p 1 0 13675218 -greek_fire n 1 1 @ 1 0 14891255 -greek_fret n 1 1 @ 1 0 03396311 -greek_key n 1 1 @ 1 0 03396311 -greek_mode n 1 1 @ 1 0 06860699 -greek_monetary_unit n 1 2 @ ~ 1 0 13675093 -greek_mythology n 1 2 @ - 1 0 07979425 -greek_orthodox_church n 1 2 @ %m 1 0 08086646 -greek_partridge n 1 2 @ #m 1 0 01808291 -greek_valerian n 2 1 @ 2 0 12809868 12809626 -greeley n 1 1 @ 1 0 11013191 -green n 8 5 @ ~ #m #p + 8 2 04967191 08615374 11013324 10060904 09294066 08579780 07709333 03606572 -green-blindness n 1 2 @ + 1 0 14154168 -green-eyed_monster n 1 1 @ 1 0 07550079 -green-tailed_towhee n 1 2 @ #m 1 0 01542433 -green-winged_teal n 1 1 @ 1 0 01848323 -green_adder's_mouth n 1 2 @ #m 1 0 12072210 -green_alder n 2 2 @ #m 2 0 12286197 12286068 -green_algae n 1 3 @ ~ #m 1 1 01407798 -green_apple_aphid n 1 2 @ #m 1 0 02252799 -green_arrow_arum n 1 1 @ 1 0 11790936 -green_ash n 1 1 @ 1 0 12305654 -green_bay n 1 2 @ #p 1 0 09157766 -green_bean n 2 3 @ ~ #m 2 1 07727868 12557280 -green_beret n 1 2 @ #m 1 0 10146416 -green_bristlegrass n 1 1 @ 1 0 12135049 -green_broom n 1 2 @ #m 1 0 12521394 -green_card n 1 1 @ 1 0 06887055 -green_corn n 2 2 @ #p 2 0 12144742 07732168 -green_dinosaur n 1 2 @ #m 1 0 12214245 -green_douglas_fir n 1 1 @ 1 0 11628793 -green_dragon n 2 2 @ #m 2 0 11788382 11784825 -green_fingers n 1 1 @ 1 0 05159495 -green_foxtail n 1 1 @ 1 0 12135049 -green_fringed_orchis n 1 1 @ 1 0 12067193 -green_frog n 1 2 @ #m 1 0 01641739 -green_gentian n 1 2 @ #m 1 0 12293180 -green_gland n 1 2 @ #p 1 0 01975117 -green_goddess n 1 1 @ 1 0 03990834 -green_gold n 1 1 @ 1 0 14891425 -green_goods n 1 2 @ ~ 1 0 07705711 -green_gram n 1 2 @ #m 1 0 12578255 -green_groceries n 1 2 @ ~ 1 0 07705711 -green_hellebore n 1 1 @ 1 0 11734698 -green_june_beetle n 1 1 @ 1 0 02173113 -green_lacewing n 1 3 @ ~ #m 1 0 02264885 -green_lead_ore n 1 1 @ 1 0 14693124 -green_light n 2 1 @ 2 0 06874391 06689948 -green_line n 1 1 @ 1 0 08514975 -green_lizard n 1 2 @ #m 1 0 01693334 -green_mamba n 1 1 @ 1 0 01749939 -green_manure n 1 1 @ 1 0 14863970 -green_market n 1 1 @ 1 0 03322704 -green_mayonnaise n 1 1 @ 1 0 07834618 -green_monkey n 1 1 @ 1 0 02485688 -green_monkey_disease n 1 1 @ 1 0 14265722 -green_mountain_state n 1 3 @ #p %p 1 0 09147964 -green_mountains n 1 2 @ #p 1 0 09294413 -green_mushroom_pimple n 1 1 @ 1 0 12966290 -green_olive n 1 1 @ 1 0 07767709 -green_onion n 1 1 @ 1 0 07722485 -green_paper n 1 2 @ ; 1 0 07219751 -green_party n 1 2 @ %m 1 0 08260386 -green_pea n 1 2 @ ~ 1 0 07725531 -green_pea_soup n 1 1 @ 1 0 07588419 -green_peach_aphid n 1 1 @ 1 0 02253264 -green_peafowl n 1 1 @ 1 0 01806467 -green_pepper n 1 1 @ 1 0 07721018 -green_plover n 1 2 @ #m 1 0 02024763 -green_revolution n 1 1 @ 1 0 07424797 -green_river n 1 2 @ #p 1 0 09294066 -green_salad n 1 1 @ 1 0 07806774 -green_smut n 1 1 @ 1 0 14284309 -green_smut_fungus n 1 2 @ #m 1 0 13081229 -green_snake n 2 3 @ ~ #m 2 0 01730563 01729977 -green_soap n 1 1 @ 1 0 04257385 -green_soybean n 1 1 @ 1 0 07729828 -green_spleenwort n 1 1 @ 1 0 13182164 -green_tea n 1 2 @ ~ 1 0 07935152 -green_thumb n 1 1 @ 1 0 05159495 -green_turtle n 1 2 @ #m 1 0 01663782 -green_turtle_soup n 1 1 @ 1 0 07587206 -green_woodpecker n 1 2 @ #m 1 0 01839086 -greenback n 1 2 @ ~ 1 0 13393762 -greenback_party n 1 1 @ 1 0 08260498 -greenbelt n 1 1 @ 1 0 08580011 -greenberg n 1 1 @ 1 0 11013574 -greenbottle n 1 2 @ #m 1 0 02192252 -greenbottle_fly n 1 2 @ #m 1 0 02192252 -greenbrier n 1 2 @ #m 1 0 12470512 -greene n 1 1 @ 1 0 11013743 -greenery n 1 2 @ + 1 0 13153633 -greeneye n 1 2 @ #m 1 0 02543952 -greenfly n 1 2 @ ~ 1 0 02253127 -greengage n 1 1 @ 1 0 07751858 -greengage_plum n 1 1 @ 1 0 07751858 -greengrocer n 1 2 @ ; 1 0 10146559 -greengrocery n 2 2 @ ; 2 0 03457793 03457686 -greenhood n 1 2 @ #m 1 0 12081215 -greenhorn n 1 1 @ 1 0 09981834 -greenhouse n 1 2 @ ~ 1 1 03457902 -greenhouse_effect n 1 1 @ 1 0 11461268 -greenhouse_emission n 1 2 @ ~ 1 0 14877234 -greenhouse_gas n 1 2 @ ~ 1 0 14877234 -greenhouse_warming n 1 1 @ 1 0 11461268 -greenhouse_whitefly n 1 2 @ #m 1 0 02247216 -greening n 1 2 @ + 1 0 11505546 -greenish_blue n 1 1 @ 1 0 04969798 -greenish_yellow n 1 1 @ 1 0 04967094 -greenishness n 1 2 @ + 1 0 04967561 -greenland n 1 4 @ #p %p - 1 1 08819397 -greenland_caribou n 1 3 @ ~ #m 1 0 02433925 -greenland_sea n 1 2 @ #p 1 0 09294285 -greenland_spar n 1 2 @ %s 1 0 14673150 -greenland_whale n 1 2 @ #m 1 0 02064000 -greenling n 1 3 @ ~ #m 1 0 02648625 -greenmail n 1 2 @ ; 1 0 00176052 -greenmarket n 1 1 @ 1 0 03322704 -greenness n 3 4 ! @ ~ + 3 1 05116590 14426449 04967191 -greenockite n 1 1 @ 1 0 14677610 -greenpeace n 1 1 @ 1 0 08022087 -greenroom n 1 2 @ #p 1 1 03458128 -greens n 1 2 @ ~ 1 1 07709333 -greensand n 1 1 @ 1 0 14995918 -greensboro n 1 2 @ #p 1 0 09128947 -greenshank n 1 2 @ #m 1 0 02027897 -greensickness n 1 1 @ 1 0 14166775 -greenskeeper n 1 2 @ ; 1 0 10146682 -greenstick_fracture n 1 1 @ 1 0 14293678 -greensward n 1 2 @ ~ 1 0 09463919 -greenville n 3 2 @ #p 3 0 09138808 09129062 09104737 -greenway n 1 1 @ 1 0 08580011 -greenweed n 1 2 @ #m 1 0 12530818 -greenwich n 1 2 @ #p 1 0 08874703 -greenwich_mean_time n 1 2 @ ~ 1 0 15130205 -greenwich_meridian n 1 1 @ 1 0 08599488 -greenwich_time n 1 2 @ ~ 1 1 15130205 -greenwich_village n 1 2 @ #p 1 1 09122968 -greenwing n 1 1 @ 1 0 01848323 -greenwood n 1 1 @ 1 0 09294599 -greeter n 1 2 @ + 1 0 10146927 -greeting n 1 4 @ ~ + ; 1 1 06630017 -greeting_card n 1 2 @ ~ 1 0 06627450 -greg_norman n 1 1 @ 1 0 11209306 -gregarine n 1 2 @ #m 1 0 01423617 -gregarinida n 1 3 @ #m %m 1 0 01423464 -gregariousness n 1 3 @ = + 1 0 04653869 -gregor_mendel n 1 1 @ 1 0 11173199 -gregorian_calendar n 1 3 @ ~ %p 1 0 15174218 -gregorian_calendar_month n 1 3 @ ~ #p 1 0 15209706 -gregorian_chant n 1 2 @ ~ 1 0 07035153 -gregorian_mode n 1 1 @ 1 0 06860481 -gregorian_telescope n 1 1 @ 1 0 02978478 -gregory n 6 3 @ + ; 6 0 11015080 11014833 11014652 11014450 11014212 11013876 -gregory_goodwin_pincus n 1 1 @ 1 0 11235263 -gregory_i n 1 2 @ ; 1 0 11013876 -gregory_john_norman n 1 1 @ 1 0 11209306 -gregory_nazianzen n 1 2 @ ; 1 0 11015080 -gregory_of_nazianzen n 1 2 @ ; 1 0 11015080 -gregory_pincus n 1 1 @ 1 0 11235263 -gregory_the_great n 1 2 @ ; 1 0 11013876 -gregory_vii n 1 1 @ 1 0 11014212 -gregory_xii n 1 1 @ 1 0 11014450 -gregory_xiii n 1 1 @ 1 0 11014652 -gregory_xvi n 1 1 @ 1 0 11014833 -greisen n 1 1 @ 1 0 14891581 -gremlin n 1 3 @ ~ ; 1 0 09540739 -grenada n 1 6 @ #m #p %m %p + 1 0 08946909 -grenada_dollar n 1 1 @ 1 0 13673267 -grenade n 1 2 @ ~ 1 1 03458271 -grenade_thrower n 1 1 @ 1 0 10146816 -grenadian n 1 3 @ #m + 1 0 09749260 -grenadier n 2 2 @ #m 2 0 10146816 02525703 -grenadine n 1 1 @ 1 0 07860331 -grenoble n 1 2 @ #p 1 0 08936180 -gres-gris n 1 1 @ 1 0 03459498 -gresham n 1 1 @ 1 0 11015420 -gresham's_law n 1 2 @ ; 1 0 05883992 -greta_garbo n 1 1 @ 1 0 10989801 -greta_louisa_gustafsson n 1 1 @ 1 0 10989801 -gretzky n 1 1 @ 1 0 11015525 -grevillea n 1 3 @ ~ #m 1 0 12217453 -grevillea_banksii n 1 1 @ 1 0 12217851 -grevillea_robusta n 1 2 @ #m 1 0 12218274 -grevillea_striata n 1 2 @ %s 1 0 12218490 -grevillela_parallela n 1 2 @ #m 1 0 12218054 -grevy's_zebra n 1 1 @ 1 0 02391508 -grewia n 1 3 @ #m %m 1 0 12204925 -grewia_asiatica n 1 2 @ #m 1 0 12205104 -grey n 7 4 @ ~ #m + 7 0 11016075 11015872 11015650 08481009 04961691 03456186 02381364 -grey-leaf_pine n 1 1 @ 1 0 11618525 -grey_alder n 1 2 @ #m 1 0 12285049 -grey_area n 1 1 @ 1 0 05998994 -grey_birch n 1 2 @ #m 1 0 12282235 -grey_catbird n 1 2 @ #m 1 0 01587526 -grey_flounder n 1 2 @ #m 1 0 02661892 -grey_fox n 1 2 @ #m 1 0 02120505 -grey_friar n 1 2 @ #m 1 0 10778553 -grey_goldenrod n 1 1 @ 1 0 12017127 -grey_hen n 1 1 @ 1 0 01796105 -grey_jay n 1 3 @ ~ #m 1 0 01581166 -grey_kingbird n 1 1 @ 1 0 01549053 -grey_lemming n 1 2 @ #m 1 0 02345340 -grey_market n 1 1 @ 1 0 01098071 -grey_matter n 1 3 @ #s %s 1 0 05483388 -grey_mullet n 2 5 @ ~ #m #p %p 2 0 07784367 02601344 -grey_partridge n 1 2 @ #m 1 0 01807828 -grey_polypody n 1 1 @ 1 0 13173259 -grey_poplar n 1 1 @ 1 0 12732252 -grey_sage n 1 2 @ #m 1 0 12014085 -grey_sea_eagle n 1 1 @ 1 0 01615458 -grey_skate n 1 2 @ #m 1 0 01501641 -grey_snapper n 1 2 @ #m 1 0 02587300 -grey_sole n 1 1 @ 1 0 07791434 -grey_substance n 1 3 @ #s %s 1 0 05483388 -grey_whale n 1 2 @ #m 1 0 02066245 -grey_willow n 1 2 @ #m 1 0 12728864 -grey_wolf n 1 1 @ 1 0 02114367 -greyback n 3 3 @ #m ; 3 0 10628368 02033208 02028900 -greybeard n 2 2 @ ~ 2 0 10375506 02825240 -greyhen n 1 1 @ 1 0 01796105 -greyhound n 1 2 @ ~ 1 0 02090827 -greyhound_racing n 1 1 @ 1 0 00449977 -greyish_brown n 1 1 @ 1 0 04973110 -greylag n 1 2 @ #m 1 0 01856553 -greylag_goose n 1 2 @ #m 1 0 01856553 -greyness n 1 3 @ ~ + 1 0 04961691 -gri-gri n 1 2 @ %p 1 0 12583855 -grias n 1 3 @ #m %m 1 0 12327407 -grias_cauliflora n 1 3 @ #m %p 1 0 12327528 -grid n 5 4 @ ~ #p %p 5 0 05931512 03997027 03458753 03458552 03458422 -grid_metal n 1 1 @ 1 0 14891868 -griddle n 1 2 @ + 1 0 03459328 -griddlecake n 2 2 @ ~ 2 0 07691091 07640203 -gridiron n 2 2 @ #p 2 0 03458422 03378915 -gridiron-tailed_lizard n 1 2 @ #m 1 0 01678657 -gridlock n 1 1 @ 1 0 08183698 -grief n 2 2 @ ~ 2 1 07535010 05833683 -grieg n 1 1 @ 1 0 11016199 -grievance n 3 1 @ 3 3 07549536 07236466 07210801 -griever n 1 3 @ ~ + 1 0 10335246 -grievous_bodily_harm n 1 1 @ 1 0 04253751 -griffin n 1 1 @ 1 0 09495962 -griffith n 1 1 @ 1 0 11016374 -griffon n 4 3 @ ~ #m 4 0 09495962 02112497 02103181 01617095 -griffon_vulture n 1 2 @ #m 1 0 01617095 -grifola_frondosa n 1 2 @ #m 1 0 13052670 -grifter n 1 2 @ ~ 1 0 09955015 -grigori_aleksandrovich_potemkin n 1 1 @ 1 0 11244061 -grigori_efimovich_rasputin n 1 1 @ 1 0 11254683 -grigori_potemkin n 1 1 @ 1 0 11244061 -grigori_potyokin n 1 1 @ 1 0 11244061 -grigri n 1 1 @ 1 0 03459498 -grill n 2 2 @ + 2 1 03459914 03459591 -grille n 3 3 @ #p %p 3 1 04582454 03459775 03459591 -grilling n 1 2 @ + 1 0 00246754 -grillroom n 1 1 @ 1 0 03459914 -grillwork n 2 1 @ 2 0 04595762 03459591 -grim_reaper n 1 1 @ 1 0 09488584 -grimace n 1 3 @ ~ + 1 0 06877578 -grime n 1 2 @ + 1 0 14498096 -grimes'_golden n 1 1 @ 1 0 07740744 -griminess n 1 2 @ + 1 0 14498843 -grimm n 2 1 @ 2 0 11016841 11016563 -grimm's_law n 1 1 @ 1 0 06180890 -grimness n 2 3 @ ~ + 2 0 04782610 04710127 -grimoire n 1 1 @ 1 0 06422032 -grin n 1 3 @ ~ + 1 1 06878071 -grind n 4 2 @ + 4 0 10684630 05094424 00621476 00358290 -grind_organ n 1 2 @ ; 1 0 02795978 -grindelia n 1 3 @ #m %m 1 0 11973159 -grindelia_robusta n 1 1 @ 1 0 11973634 -grindelia_squarrosa n 1 1 @ 1 0 11973749 -grinder n 4 4 @ ~ %p + 4 0 07697825 05307773 03765561 03460040 -grinding n 3 2 @ + 3 2 09294716 07384344 11460063 -grinding_wheel n 1 2 @ #p 1 0 03460147 -grindle n 1 2 @ #m 1 0 02639087 -grindstone n 1 1 @ 1 0 03460297 -gringo n 1 1 @ 1 0 10147121 -grinner n 1 2 @ + 1 0 10147262 -grinning n 1 3 @ ~ + 1 1 06878071 -griot n 1 1 @ 1 0 10147352 -grip n 7 6 @ ~ #p %p + ; 7 3 00812526 03485997 02773838 11460281 10147488 05194874 02860640 -gripe n 1 2 @ + 1 1 07209965 -gripes n 1 2 @ ~ 1 0 14325732 -griping n 1 2 @ ~ 1 0 14325732 -grippe n 1 2 @ ~ 1 0 14122497 -gripsack n 1 1 @ 1 0 03460455 -gris n 1 1 @ 1 0 11017020 -grisaille n 1 1 @ 1 0 03460526 -griselinia n 1 3 @ #m %m 1 0 12948978 -griselinia_littoralis n 1 2 @ #m 1 0 12949361 -griselinia_lucida n 1 2 @ #m 1 0 12949160 -griseofulvin n 1 1 @ 1 0 03460674 -grison n 1 2 @ #m 1 0 02449699 -grison_vittatus n 1 2 @ #m 1 0 02449699 -grissino n 1 2 @ ; 1 0 07680655 -grist n 1 1 @ 1 0 07802767 -gristle n 1 6 @ ~ #s %s %p + 1 0 05288091 -gristmill n 1 2 @ %p 1 1 03460899 -grit n 2 3 @ + ; 2 0 14700594 05032351 -gritrock n 1 1 @ 1 0 14700594 -grits n 1 1 @ 1 0 07704428 -gritstone n 1 1 @ 1 0 14700594 -grivet n 1 1 @ 1 0 02485371 -grizzle n 1 2 @ + 1 0 03461037 -grizzly n 1 1 @ 1 0 02132580 -grizzly_bear n 1 1 @ 1 0 02132580 -groan n 1 2 @ + 1 1 07126383 -groaner n 1 2 @ + 1 0 10147619 -groat n 1 1 @ 1 0 13391262 -groats n 1 1 @ 1 0 07802863 -grocer n 1 2 @ ~ 1 1 10147710 -grocery n 2 4 @ ~ %p ; 2 1 03461385 03461119 -grocery_bag n 1 1 @ 1 0 03461288 -grocery_boy n 1 1 @ 1 0 10147849 -grocery_list n 2 1 @ 2 0 06491371 06491277 -grocery_store n 1 3 @ ~ %p 1 1 03461385 -groenendael n 1 1 @ 1 0 02105056 -groenlandia n 1 3 @ #m %m 1 0 12616825 -grog n 1 1 @ 1 0 07904865 -grogginess n 3 2 @ + 3 0 14018918 14018318 05679906 -grogram n 1 1 @ 1 0 03461651 -groin n 3 2 @ #p 3 1 05597734 03461783 02894605 -groined_vault n 1 1 @ 1 0 03461882 -grommet n 1 1 @ 1 0 03132438 -gromwell n 1 2 @ #m 1 0 12820669 -gromyko n 1 1 @ 1 0 11017118 -gronland n 1 4 @ #p %p - 1 0 08819397 -groom n 3 3 @ #m + 3 1 10148035 10644301 10147935 -groom-to-be n 1 1 @ 1 0 10085869 -grooming n 2 3 @ ~ + 2 0 00893955 00828237 -groomsman n 1 3 @ ~ #m 1 0 10148165 -groove n 3 4 @ ~ + ; 3 2 13893786 01026744 05222591 -groover n 1 2 @ + 1 0 03461988 -grooving n 1 2 @ + 1 0 00926026 -grope n 1 2 @ + 1 0 00141027 -gropius n 1 1 @ 1 0 11017295 -gros_point n 2 1 @ 2 0 03462315 03462211 -gros_ventre n 2 1 @ 2 0 09656205 06909932 -grosbeak n 1 2 @ ~ 1 0 01540233 -groschen n 1 2 @ #p 1 0 13706068 -grosgrain n 1 1 @ 1 0 03462110 -gross n 2 3 @ ~ + 2 0 13750504 13256691 -gross_anatomy n 1 2 @ ~ 1 0 06059865 -gross_domestic_product n 1 1 @ 1 0 13257511 -gross_estate n 1 1 @ 1 0 13251289 -gross_margin n 1 1 @ 1 0 13261242 -gross_national_product n 1 2 @ ~ 1 1 13257098 -gross_profit n 1 2 @ ; 1 0 13260762 -gross_profit_margin n 1 2 @ ; 1 0 13260762 -gross_revenue n 1 1 @ 1 0 13260936 -gross_sales n 1 1 @ 1 0 13260936 -gross_ton n 1 2 @ %p 1 0 13721387 -grossbeak n 1 2 @ ~ 1 0 01540233 -grossness n 1 2 @ + 1 0 04817280 -grossulariaceae n 1 3 @ #m %m 1 0 12804621 -grosz n 1 2 @ #p 1 0 13710881 -grot n 1 1 @ 1 0 09294877 -grotesque n 1 1 @ 1 1 03462441 -grotesqueness n 1 2 @ + 1 0 04690592 -grotesquerie n 1 1 @ 1 0 04690592 -grotesquery n 1 1 @ 1 0 04690592 -grotius n 1 1 @ 1 0 11017454 -grotto n 1 1 @ 1 0 09294877 -grouch n 1 3 @ ~ + 1 0 10148305 -groucho n 1 2 @ #m 1 0 11160676 -ground n 11 6 ! @ ~ #p + ; 11 6 09334396 09178999 14842992 13790912 08580134 05933834 09335240 05930574 03462747 03462594 03360845 -ground-berry n 2 4 @ #m %s %p 2 0 12254168 12235765 -ground-controlled_approach n 1 1 @ 1 0 00305326 -ground-effect_machine n 1 1 @ 1 0 03547229 -ground-emplaced_mine n 1 2 @ ~ 1 0 03639675 -ground-service_crew n 1 1 @ 1 0 08243340 -ground-shaker n 1 2 @ #m 1 0 01711496 -ground_almond n 1 2 @ #m 1 0 12150969 -ground_attack n 1 1 @ 1 0 00974358 -ground_bait n 1 1 @ 1 0 03462972 -ground_ball n 1 3 @ ~ ; 1 0 00129089 -ground_bass n 1 1 @ 1 0 07032426 -ground_beef n 1 2 @ #p 1 0 07664007 -ground_beetle n 1 3 @ ~ #m 1 0 02167151 -ground_cable n 1 1 @ 1 0 03463073 -ground_cedar n 2 1 @ 2 0 13223588 11638378 -ground_cherry n 1 3 @ ~ #m 1 0 12910285 -ground_cloth n 1 1 @ 1 0 03463666 -ground_control n 1 1 @ 1 0 03463185 -ground_cover n 2 2 @ ~ 2 0 13112427 13112296 -ground_crew n 1 1 @ 1 0 08243340 -ground_effect n 1 1 @ 1 0 11422446 -ground_fir n 1 1 @ 1 0 13223710 -ground_fire n 1 1 @ 1 0 07304507 -ground_floor n 2 1 @ 2 1 03463381 07324502 -ground_forces n 1 4 @ ~ %m ; 1 0 08191230 -ground_glass n 2 1 @ 2 1 14881861 14882000 -ground_ivy n 1 2 @ #m 1 0 12847374 -ground_level n 2 1 @ 2 1 05132045 03463381 -ground_loop n 1 1 @ 1 0 07302407 -ground_noise n 1 2 @ ~ 1 0 07430770 -ground_pine n 2 2 @ ~ 2 0 13223265 12841472 -ground_pink n 1 2 @ #m 1 0 12811501 -ground_plan n 1 1 @ 1 0 03463561 -ground_rattler n 1 1 @ 1 0 01757901 -ground_rent n 1 1 @ 1 0 13295972 -ground_roller n 1 1 @ 1 0 01826844 -ground_rose n 1 1 @ 1 0 12620779 -ground_rule n 1 2 @ ; 1 0 07275823 -ground_sloth n 1 2 @ #m 1 0 02458822 -ground_snake n 1 2 @ #m 1 0 01736375 -ground_squirrel n 2 3 @ ~ #m 2 0 02359915 02358091 -ground_state n 1 2 @ ; 1 0 13924196 -ground_stroke n 1 2 ! @ 1 0 00568286 -ground_substance n 2 2 @ #p 2 0 05582305 05434053 -ground_swell n 2 1 @ 2 0 07358768 07344120 -ground_tackle n 1 4 @ ~ #p %p 1 0 02709367 -ground_water n 1 1 @ 1 1 14847503 -ground_wave n 1 1 @ 1 0 11500458 -ground_zero n 3 2 @ #p 3 0 08661063 08580447 08580326 -groundball n 1 3 @ ~ ; 1 0 00129089 -groundberry n 2 4 @ #m %s %p 2 0 12254168 12235765 -groundbreaker n 1 1 @ 1 0 10434725 -groundbreaking n 1 1 @ 1 0 00239483 -groundbreaking_ceremony n 1 1 @ 1 0 00239483 -groundcover n 2 2 @ ~ 2 0 13112427 13112296 -grounder n 1 4 @ ~ + ; 1 1 00129089 -groundfish n 1 1 @ 1 0 02513355 -groundhog n 1 1 @ 1 0 02361587 -groundhog_day n 1 3 @ #p ; 1 0 15186871 -grounding n 2 2 @ + 2 0 05986594 00148836 -groundkeeper n 1 1 @ 1 0 10148663 -groundlessness n 1 1 @ 1 0 05140086 -groundling n 1 1 @ 1 0 10148542 -groundmass n 1 3 @ #s ; 1 0 14891678 -groundnut n 3 4 @ #m #p %p 3 0 12507379 07774032 07737745 -groundnut_oil n 1 3 @ #s ; 1 0 07674749 -groundnut_vine n 1 3 @ #m %p 1 0 12507379 -grounds n 5 2 @ ~ 5 4 05823932 04610879 08570402 06740402 09294984 -groundsel n 1 2 @ #m 1 0 12012755 -groundsel_bush n 1 2 @ #m 1 0 11938261 -groundsel_tree n 1 2 @ #m 1 0 11938261 -groundsheet n 1 1 @ 1 0 03463666 -groundskeeper n 1 1 @ 1 0 10148663 -groundsman n 1 1 @ 1 0 10148663 -groundspeed n 1 1 @ 1 0 15283675 -groundwater_level n 1 1 @ 1 0 09476123 -groundwork n 3 3 @ ~ #p 3 1 05793554 03387016 01143580 -group n 3 5 @ ~ #p + ; 3 2 00031264 14621446 06016853 -group_a n 1 1 @ 1 0 05400860 -group_ab n 1 1 @ 1 0 05401096 -group_action n 1 2 @ ~ 1 1 01080366 -group_amentiferae n 1 2 @ #m 1 0 12313574 -group_b n 1 1 @ 1 0 05400978 -group_captain n 1 1 @ 1 0 10148825 -group_centrospermae n 1 1 @ 1 0 11804433 -group_discussion n 1 2 @ ~ 1 0 07142566 -group_dynamics n 1 1 @ 1 0 06141962 -group_insurance n 1 1 @ 1 0 13346432 -group_meeting n 1 2 @ ~ 1 0 08307589 -group_o n 1 1 @ 1 0 05401229 -group_participation n 1 1 @ 1 1 01240745 -group_practice n 1 2 @ ; 1 0 00632531 -group_psychotherapy n 1 2 @ ~ 1 0 00703688 -group_pteridospermae n 1 1 @ 1 0 11605147 -group_pteridospermaphyta n 1 1 @ 1 0 11605147 -group_theory n 1 3 @ ~ ; 1 0 06017193 -group_therapy n 1 2 @ ~ 1 0 00703688 -grouper n 2 4 @ ~ #p %p 2 0 07778224 02568959 -groupie n 1 1 @ 1 0 10148991 -grouping n 3 3 @ ~ + 3 2 00031264 01012360 05733090 -groupthink n 1 1 @ 1 0 05788924 -groupware n 1 1 @ 1 0 06567960 -grouse n 2 7 @ ~ #m #p %p + ; 2 0 07647115 01795088 -grouse-berry n 1 1 @ 1 0 12249122 -grouse_whortleberry n 1 1 @ 1 0 12249122 -grouseberry n 1 1 @ 1 0 12249122 -grout n 1 2 @ + 1 0 14891988 -grove n 2 2 @ ~ 2 2 08438928 03463832 -groveler n 1 2 @ + 1 0 09800631 -groveller n 1 2 @ + 1 0 09800631 -grover_cleveland n 1 1 @ 1 0 10902051 -groves n 1 1 @ 1 0 11017661 -grower n 1 3 @ ~ + 1 1 09779790 -growing n 2 6 @ ~ %p + ; - 2 1 13489037 13488844 -growing_pains n 3 1 @ 3 0 14326969 07494682 05688030 -growing_season n 1 1 @ 1 1 15238169 -growl n 1 2 @ + 1 1 07384473 -growler n 2 2 @ + 2 0 10149128 09295210 -growling n 2 2 @ + 2 1 07210951 07384473 -grownup n 1 4 @ ~ %p + 1 1 09605289 -growth n 7 6 @ ~ %p + ; - 7 5 13489037 13490343 13497135 08438067 07324673 14234074 09295338 -growth-onset_diabetes n 1 2 @ %p 1 0 14118423 -growth_factor n 1 2 @ ~ 1 0 14734348 -growth_hormone n 1 2 @ ~ 1 0 05412649 -growth_hormone-releasing_factor n 1 1 @ 1 0 15023537 -growth_industry n 1 1 @ 1 0 08068691 -growth_rate n 1 2 @ ~ 1 1 15278825 -growth_regulator n 1 3 @ ~ ; 1 0 14744841 -growth_ring n 1 1 @ 1 0 11424816 -growth_stock n 1 1 @ 1 0 13336770 -groyne n 1 1 @ 1 0 02894605 -grozny n 1 2 @ #p 1 0 09004992 -groznyy n 1 2 @ #p 1 0 09004992 -grub n 2 3 @ ~ + 2 2 07565161 02312006 -grub_street n 1 2 @ %m 1 0 08275081 -grubbiness n 1 2 @ + 1 0 14498843 -grubby n 1 2 @ #m 1 0 02646241 -grubstake n 1 2 @ + 1 0 13287239 -grudge n 1 2 @ + 1 1 07549536 -gruel n 1 2 @ ~ 1 0 07704054 -gruesomeness n 1 2 @ + 1 0 04782610 -gruffness n 2 2 @ + 2 0 04988861 04915462 -grugru n 1 2 @ %p 1 0 12583855 -grugru_nut n 1 2 @ #p 1 0 07774182 -grugru_palm n 1 2 @ %p 1 0 12583855 -gruidae n 1 3 @ #m %m 1 0 02012715 -gruiformes n 1 3 @ #m %m 1 0 02012306 -grumble n 2 2 @ + 2 1 07392483 07211092 -grumbler n 1 3 @ ~ + 1 0 10776339 -grumbling n 2 2 @ + 2 2 07392483 07211092 -grume n 2 2 @ + 2 0 14939663 05402333 -grummet n 1 1 @ 1 0 03132438 -grump n 1 3 @ ~ + 1 0 10148305 -grumpiness n 1 2 @ + 1 0 04641869 -grundyism n 1 1 @ 1 0 04901152 -grunge n 1 2 @ + 1 0 14498096 -grunt n 3 4 @ ~ #m + 3 1 07384614 10149241 02588286 -grunter n 2 6 @ ~ #m %s %p + 2 0 10149436 02395406 -grus n 2 3 @ #m %m 2 0 09295455 02013034 -grus_americana n 1 2 @ #m 1 0 02013177 -gruyere n 1 1 @ 1 0 07855105 -gryllidae n 1 3 @ #m %m 1 0 02229385 -gryphon n 1 1 @ 1 0 09495962 -gsa n 1 2 @ %p 1 0 08351532 -gspc n 1 2 @ ; 1 0 08044265 -gsr n 1 2 @ #p 1 0 00860011 -gu n 1 2 @ #p 1 0 08838319 -guacamole n 1 1 @ 1 0 07583066 -guacharo n 1 2 @ #m 1 0 01837526 -guadalajara n 1 2 @ #p 1 0 08743370 -guadalcanal n 2 4 @ #p ; - 2 0 08843735 01280055 -guadalupe_cypress n 1 1 @ 1 0 11631985 -guadalupe_fur_seal n 1 1 @ 1 0 02077384 -guadalupe_island n 1 2 @ #p 1 0 08746797 -guadalupe_mountains n 1 2 @ #p 1 0 09295576 -guadalupe_mountains_national_park n 1 2 @ #p 1 0 08605493 -guadeloupe n 1 3 @ #m #p 1 0 08751126 -guaiac n 1 2 @ #s 1 0 12722382 -guaiac_wood n 1 2 @ #s 1 0 12721705 -guaiacum n 3 4 @ #m #s %m 3 0 12722768 12722382 12721864 -guaiacum_officinale n 1 3 @ #m %s 1 0 12722071 -guaiacum_sanctum n 1 2 @ #m 1 0 12722567 -guaiacum_wood n 1 2 @ #s 1 0 12721705 -guaira n 1 2 @ #p 1 0 09430416 -guaira_falls n 1 2 @ #p 1 0 09430416 -guallatiri n 1 2 @ #p 1 0 09175459 -guam n 1 2 @ #p 1 1 08838319 -guama n 1 2 @ #m 1 0 11762018 -guan n 1 3 @ ~ #m 1 0 01799302 -guanabana n 1 2 @ #p 1 0 07761309 -guanabenz n 1 1 @ 1 0 03464266 -guanaco n 1 2 @ #m 1 0 02438173 -guangdong n 1 1 @ 1 0 08725336 -guangdong_province n 1 1 @ 1 0 08725336 -guangzhou n 1 2 @ #p 1 0 08725454 -guanine n 1 2 @ #s 1 0 14892138 -guano n 1 1 @ 1 0 14892289 -guano_bat n 1 1 @ 1 0 02149653 -guanosine n 1 1 @ 1 0 15073285 -guantanamo n 1 2 @ #p 1 0 08750986 -guantanamo_bay n 1 1 @ 1 0 09295790 -guar n 1 2 @ #m 1 0 12520406 -guar_gum n 1 1 @ 1 0 14900817 -guarani n 3 2 @ %p 3 0 13679608 09695257 06917280 -guarantee n 3 3 @ ~ + 3 2 06685456 06686174 13353004 -guarantor n 1 2 @ + 1 0 10149527 -guaranty n 1 1 @ 1 0 13353004 -guard n 10 5 @ ~ #m %m + 10 4 10150071 10149720 03464467 05082222 10150281 08215603 00822970 00730538 00727743 00725673 -guard's_van n 1 1 @ 1 0 03465320 -guard_boat n 1 1 @ 1 0 03464628 -guard_dog n 1 2 @ ~ 1 0 02103841 -guard_duty n 1 1 @ 1 1 00730538 -guard_hair n 1 2 @ #p 1 0 01898906 -guard_of_honor n 1 1 @ 1 0 10183931 -guard_ship n 1 1 @ 1 0 03465151 -guardhouse n 1 2 @ ; 1 0 03464757 -guardian n 1 3 @ ~ + 1 1 09614684 -guardian_angel n 1 2 @ ~ 1 0 09540055 -guardian_spirit n 1 2 @ ~ 1 0 09540055 -guardianship n 2 3 @ ~ + 2 0 00829378 00818466 -guardrail n 1 1 @ 1 0 04127395 -guardroom n 2 1 @ 2 0 03465040 03464952 -guardsman n 1 2 @ #m 1 0 10150415 -guarneri n 2 1 @ 2 0 11017987 11017831 -guarnerius n 3 1 @ 3 0 11017987 11017831 03465500 -guarnieri n 2 1 @ 2 0 11017987 11017831 -guatemala n 1 6 @ #m #p %m %p + 1 1 08737041 -guatemala_city n 1 2 @ #p 1 0 08737376 -guatemalan n 1 3 @ #m + 1 0 09712195 -guatemalan_monetary_unit n 1 2 @ ~ 1 0 13696155 -guava n 3 4 @ #m #p %p 3 0 12333771 12333530 07765361 -guava_bush n 1 3 @ #m %p 1 0 12333530 -guayaquil n 1 2 @ #p 1 0 08777130 -guayule n 1 2 @ #m 1 0 12000851 -gubbins n 1 1 @ 1 0 03218545 -guck n 1 2 @ ~ 1 0 14956661 -gudgeon n 2 3 @ ~ #m 2 0 02619165 01443243 -gudgeon_pin n 1 1 @ 1 0 04607759 -guelder_rose n 1 2 @ #m 1 0 12680864 -guenevere n 1 2 @ ; 1 0 11018439 -guenon n 1 3 @ ~ #m 1 0 02484975 -guenon_monkey n 1 3 @ ~ #m 1 0 02484975 -guerdon n 1 1 @ 1 0 13284283 -guereza n 1 1 @ 1 0 02488894 -gueridon n 1 1 @ 1 0 03465426 -guerilla n 1 3 @ ~ #m 1 0 10150556 -guerilla_force n 1 3 @ ~ %m 1 0 08197895 -guernsey n 2 1 @ 2 0 08887344 02407521 -guernsey_elm n 1 2 @ #m 1 0 12408466 -guerrilla n 1 3 @ ~ #m 1 1 10150556 -guerrilla_force n 1 3 @ ~ %m 1 0 08197895 -guerrilla_theater n 1 1 @ 1 0 00899501 -guess n 2 3 @ ~ + 2 2 06782680 05803938 -guesser n 1 2 @ + 1 0 10150794 -guessing n 1 2 @ + 1 1 05803938 -guessing_game n 1 2 @ ~ 1 0 00459570 -guesstimate n 1 2 @ + 1 0 05804136 -guesswork n 1 1 @ 1 0 05803938 -guest n 4 4 @ ~ #p ; 4 1 10150940 11018683 10151133 03827107 -guest_night n 1 2 @ ; 1 0 15166742 -guest_of_honor n 1 1 @ 1 0 10151261 -guest_worker n 1 1 @ 1 0 10151367 -guesthouse n 1 1 @ 1 0 03465605 -guestimate n 1 1 @ 1 0 05804136 -guestroom n 1 1 @ 1 0 03465718 -guestworker n 1 1 @ 1 0 10151367 -guevara n 1 1 @ 1 0 11018153 -guevina n 1 3 @ #m %m 1 0 12216836 -guevina_avellana n 1 2 @ #m 1 0 12216968 -guevina_heterophylla n 1 2 @ #m 1 0 12216968 -guff n 1 2 @ ~ 1 0 06611681 -guffaw n 1 2 @ + 1 0 07127790 -guggenheim n 2 1 @ 2 0 11019073 11018862 -guglielmo_marconi n 1 1 @ 1 0 11156122 -gui n 1 2 @ %p 1 0 06575681 -guiana n 1 3 @ #p %p 1 0 08948155 -guiana_highlands n 1 2 @ #p 1 0 09161615 -guib n 1 2 @ #m 1 0 02425228 -guibert_of_ravenna n 1 1 @ 1 0 10900953 -guidance n 3 3 @ ~ + 3 3 06650701 01144876 00815320 -guidance_device n 1 3 @ ~ #p 1 0 03465818 -guidance_system n 1 3 @ ~ #p 1 0 03465818 -guide n 6 3 @ ~ + 6 4 10741821 10151570 06422740 05938976 10562749 03466027 -guide_dog n 1 2 @ ~ 1 0 02109150 -guide_fossil n 1 1 @ 1 0 09311067 -guide_rope n 1 1 @ 1 0 03466726 -guide_word n 1 1 @ 1 0 06291603 -guidebook n 1 2 @ ~ 1 0 06422740 -guided_bomb_unit-28 n 1 1 @ 1 0 02920785 -guided_missile n 1 3 @ ~ %p 1 1 03466162 -guided_missile_cruiser n 1 1 @ 1 0 03466493 -guided_missile_destroyer n 1 2 @ ~ 1 0 03180504 -guided_missile_frigate n 1 2 @ #m 1 0 03466600 -guideline n 3 1 @ 3 0 06802138 05912552 05848541 -guidepost n 2 2 @ ~ 2 1 05848541 06794374 -guideword n 1 1 @ 1 0 06291603 -guiding_light n 1 1 @ 1 1 10276238 -guild n 1 3 @ ~ %m 1 0 08227214 -guild_socialism n 1 1 @ 1 0 06220955 -guilder n 2 2 @ %p 2 0 13680146 13679855 -guildhall n 1 2 @ ~ 1 0 03466839 -guile n 3 2 @ ~ 3 0 05621178 04876561 00752954 -guillain-barre_syndrome n 1 1 @ 1 0 14353622 -guillaume_apollinaire n 1 1 @ 1 0 10820444 -guillaume_de_grimoard n 1 1 @ 1 0 11356822 -guillemot n 1 3 @ ~ #m 1 0 02046759 -guilloche n 1 1 @ 1 0 03466947 -guillotine n 2 2 @ + 2 0 06667027 03467068 -guilt n 2 4 ! @ ~ + 2 2 13990675 07536245 -guilt_by_association n 1 1 @ 1 0 13991516 -guilt_feelings n 1 2 @ ~ 1 0 07536245 -guilt_pang n 1 1 @ 1 1 07495156 -guilt_trip n 1 2 @ ~ 1 0 07536245 -guiltiness n 1 3 @ ~ + 1 0 13990675 -guiltlessness n 1 2 @ + 1 0 13989863 -guilty_conscience n 1 2 @ ~ 1 0 07536245 -guimpe n 2 2 @ #p 2 0 03467380 03467254 -guine-bissau n 1 3 @ #p %p 1 0 08947772 -guinea n 4 8 @ ~ #m #p %m %p + ; 4 0 13392688 09716439 08947319 01809106 -guinea-bissau n 1 3 @ #p %p 1 0 08947772 -guinea-bissau_monetary_unit n 1 2 @ ~ 1 0 13692437 -guinea-bissau_peso n 1 2 @ %p 1 0 13692559 -guinea-hen_flower n 1 1 @ 1 0 12453186 -guinea_corn n 1 1 @ 1 0 12137791 -guinea_flower n 1 2 @ #m 1 0 12363768 -guinea_fowl n 1 4 @ ~ #m %p 1 0 01809106 -guinea_gold n 2 1 @ 2 0 15003139 14892405 -guinea_gold_vine n 1 2 @ #m 1 0 12363768 -guinea_grains n 1 2 @ #m 1 0 12357968 -guinea_hen n 2 2 @ #p 2 0 07646284 01809371 -guinea_pepper n 2 2 @ #m 2 0 12357968 11696935 -guinea_pig n 2 1 @ 2 0 10668666 02364673 -guinea_worm n 2 2 @ #m 2 0 14176051 01933988 -guinea_worm_disease n 1 1 @ 1 0 14176051 -guinean n 1 3 @ #m + 1 0 09749386 -guinean_franc n 1 1 @ 1 0 13707804 -guinean_monetary_unit n 1 1 @ 1 0 13707713 -guinevere n 1 2 @ ; 1 0 11018439 -guinness n 2 1 @ 2 0 11019269 07890540 -guise n 1 1 @ 1 0 04678908 -guiseppe_fortunino_francesco_verdi n 1 1 @ 1 0 11363020 -guiseppe_guarneri n 1 1 @ 1 0 11017987 -guitar n 1 4 @ ~ %p + 1 1 03467517 -guitar_pick n 1 1 @ 1 0 03467796 -guitar_player n 1 2 @ ~ 1 0 10151760 -guitarfish n 1 2 @ #m 1 0 01497738 -guitarist n 1 3 @ ~ + 1 0 10151760 -gujarat n 2 2 @ #p 2 0 08905751 08905313 -gujarati n 2 1 @ 2 0 09675922 06971454 -gujerat n 2 2 @ #p 2 0 08905751 08905313 -gujerati n 2 1 @ 2 0 09675922 06971454 -gula n 2 2 @ ; 2 0 09518451 00759186 -gulag n 1 1 @ 1 0 03467887 -gulch n 1 1 @ 1 0 09295946 -gulden n 2 2 @ %p 2 0 13680146 13679855 -gulf n 3 3 @ ~ #p 3 2 09296121 04753060 09296053 -gulf_coast n 1 2 @ #p 1 0 09296695 -gulf_of_aden n 1 2 @ #p 1 0 09296804 -gulf_of_aegina n 1 2 @ #p 1 0 09424118 -gulf_of_akaba n 1 2 @ #p 1 0 09297240 -gulf_of_alaska n 1 2 @ #p 1 0 09296937 -gulf_of_antalya n 1 2 @ #p 1 0 09297104 -gulf_of_aqaba n 1 2 @ #p 1 0 09297240 -gulf_of_bothnia n 1 3 @ #p %p 1 0 09297423 -gulf_of_california n 1 2 @ #p 1 0 09297584 -gulf_of_campeche n 1 2 @ #p 1 0 09297729 -gulf_of_carpentaria n 1 2 @ #p 1 0 09297920 -gulf_of_corinth n 1 2 @ #p 1 0 09298100 -gulf_of_finland n 1 2 @ #p 1 0 09298267 -gulf_of_guinea n 1 3 @ #p %p 1 0 09298410 -gulf_of_lepanto n 1 2 @ #p 1 0 09298100 -gulf_of_martaban n 1 2 @ #p 1 0 09298569 -gulf_of_mexico n 1 3 @ #p %p 1 0 09298698 -gulf_of_ob n 1 2 @ #p 1 0 09298974 -gulf_of_oman n 1 2 @ #p 1 0 09299125 -gulf_of_riga n 1 2 @ #p 1 0 09299265 -gulf_of_saint_lawrence n 1 2 @ #p 1 0 09299397 -gulf_of_siam n 1 2 @ #p 1 0 09300030 -gulf_of_sidra n 1 2 @ #p 1 0 09299584 -gulf_of_st._lawrence n 1 2 @ #p 1 0 09299397 -gulf_of_suez n 1 2 @ #p 1 0 09299727 -gulf_of_tehuantepec n 1 2 @ #p 1 0 09299885 -gulf_of_thailand n 1 2 @ #p 1 0 09300030 -gulf_of_venice n 1 2 @ #p 1 0 09300199 -gulf_states n 2 3 @ #p %p 2 0 09049599 08910394 -gulf_stream n 1 1 @ 1 0 11489536 -gulf_war n 2 2 @ %p 2 0 01307090 01305310 -gulf_war_syndrome n 1 1 @ 1 0 14305699 -gulfweed n 1 2 @ #m 1 0 01405858 -gull n 2 3 @ ~ + 2 0 09921409 02041246 -gullet n 1 3 @ #p %p 1 0 05533948 -gullibility n 1 2 @ + 1 0 04881156 -gulliver n 1 1 @ 1 0 09599728 -gully n 1 2 @ ~ 1 1 09300306 -gulo n 1 3 @ #m %m 1 0 02449060 -gulo_gulo n 1 1 @ 1 0 02449350 -gulo_luscus n 1 2 @ #m 1 0 02449183 -gulp n 2 2 @ + 2 1 00840189 00840363 -gulper n 1 2 @ + 1 0 10151957 -gulping n 2 2 @ + 2 1 00840363 00843325 -gulu n 1 2 @ #p 1 0 09044094 -gulyas n 1 2 @ ~ 1 0 07590320 -gum n 6 6 @ ~ #s #p %s + 6 2 07599998 05304932 14898470 14702875 12334520 12334293 -gum-lac n 1 1 @ 1 0 14701521 -gum_acacia n 1 3 @ ~ #s 1 0 14900963 -gum_accroides n 1 1 @ 1 0 14598937 -gum_albanum n 1 1 @ 1 0 14876872 -gum_ammoniac n 1 1 @ 1 0 14743976 -gum_anime n 1 1 @ 1 0 14766265 -gum_arabic n 1 3 @ ~ #s 1 0 14900963 -gum_ball n 1 1 @ 1 0 07600177 -gum_benjamin n 1 1 @ 1 0 14897941 -gum_benzoin n 1 1 @ 1 0 14897941 -gum_boot n 1 1 @ 1 0 04116294 -gum_butea n 1 1 @ 1 0 14901265 -gum_dammar n 1 1 @ 1 0 14895807 -gum_elastic n 1 2 @ ~ 1 0 15006258 -gum_elemi n 1 2 @ #s 1 0 12691028 -gum_eurphorbium n 1 1 @ 1 0 14852312 -gum_kino n 1 1 @ 1 0 14901411 -gum_labdanum n 1 1 @ 1 0 14928518 -gum_myrrh n 1 2 @ #s 1 0 12692875 -gum_olibanum n 1 1 @ 1 0 14873951 -gum_plant n 1 3 @ ~ #m 1 0 11973341 -gum_resin n 1 2 @ ~ 1 0 14897751 -gum_ridge n 1 3 @ #p %p 1 0 05310351 -gum_sangapenum n 1 1 @ 1 0 15019267 -gum_terpentine n 1 3 @ ~ #s 1 0 14897369 -gum_tree n 1 3 @ ~ %s 1 0 12334293 -gumbo n 4 4 @ #m #p %p 4 0 14903596 12171966 07733394 07585906 -gumbo-limbo n 1 2 @ #m 1 0 12691661 -gumbo_soil n 1 1 @ 1 0 14903596 -gumboil n 1 1 @ 1 0 14183337 -gumdrop n 1 2 @ ~ 1 0 07605944 -gumma n 1 1 @ 1 0 14238820 -gummed_label n 1 2 @ ~ 1 0 07272545 -gumminess n 1 2 @ + 1 0 04935904 -gumming n 1 2 @ + 1 0 00279235 -gummite n 1 1 @ 1 0 14904052 -gummosis n 2 1 @ 2 0 14279099 14278953 -gumption n 2 3 @ ~ ; 2 0 05614657 05032351 -gumshield n 1 2 @ ; 1 0 03795269 -gumshoe n 2 2 @ ; 2 0 10011785 02735538 -gumweed n 1 3 @ ~ #m 1 0 11973341 -gumwood n 1 3 @ ~ #s 1 0 12334520 -gun n 7 6 @ ~ #p %p + ; 7 2 03467984 02746365 10593392 10152083 03456299 02670683 00123430 -gun-sight n 1 4 @ ~ #p %p 1 0 03470387 -gun_barrel n 1 2 @ #p 1 1 02795528 -gun_carriage n 1 2 @ ~ 1 0 03468696 -gun_case n 1 1 @ 1 0 03468821 -gun_chamber n 1 2 @ #p 1 0 03348868 -gun_control n 1 1 @ 1 0 00805766 -gun_deck n 1 1 @ 1 0 03468900 -gun_dog n 1 2 @ ~ 1 0 02098550 -gun_emplacement n 1 2 @ ~ 1 0 03469031 -gun_enclosure n 1 2 @ #p 1 0 03469175 -gun_for_hire n 1 1 @ 1 0 10152083 -gun_moll n 1 1 @ 1 0 10327475 -gun_muzzle n 1 3 @ ~ #p 1 0 03469687 -gun_pendulum n 1 1 @ 1 0 03470005 -gun_rest n 1 1 @ 1 0 03470802 -gun_room n 1 2 @ ; 1 0 03470222 -gun_smoke n 1 1 @ 1 1 11464926 -gun_trigger n 1 3 @ ~ #p 1 0 03470629 -gun_turret n 1 2 @ #p 1 0 03469175 -gunboat n 1 1 @ 1 0 03468570 -gunboat_diplomacy n 1 1 @ 1 0 07148938 -guncotton n 1 3 @ ~ #s 1 0 14794993 -gunfight n 1 1 @ 1 0 00124617 -gunfire n 1 2 @ ~ 1 1 00123783 -gunflint n 1 2 @ #p 1 0 03469346 -gunite n 1 1 @ 1 0 14892510 -gunk n 1 2 @ ~ 1 0 14956661 -gunlock n 1 4 @ ~ #p %p 1 0 03469493 -gunman n 2 1 @ 2 1 10152083 10593392 -gunmetal n 1 1 @ 1 0 14717634 -gunnar_myrdal n 1 1 @ 1 0 11198861 -gunnel n 2 3 @ ~ #m 2 0 03470802 02614978 -gunner n 1 2 @ + 1 1 09811852 -gunnery n 1 1 @ 1 0 03469832 -gunnery_sergeant n 1 1 @ 1 0 10152306 -gunny n 1 1 @ 1 0 02922798 -gunny_sack n 1 1 @ 1 0 03469903 -gunnysack n 1 1 @ 1 0 03469903 -gunplay n 1 1 @ 1 1 00124617 -gunpoint n 1 1 @ 1 0 03974769 -gunpowder n 1 1 @ 1 1 15016314 -gunpowder_plot n 1 1 @ 1 0 05909097 -gunrunner n 1 1 @ 1 0 10152440 -gunrunning n 1 1 @ 1 0 01112289 -gunshot n 1 2 @ ~ 1 1 00123783 -gunsight n 1 4 @ ~ #p %p 1 0 03470387 -gunslinger n 1 1 @ 1 1 10152083 -gunsmith n 1 1 @ 1 0 10152528 -gunstock n 1 3 @ ~ #p 1 0 04322026 -gunter's_chain n 1 2 @ #p 1 0 13653154 -gunter_grass n 1 1 @ 1 0 11012153 -gunter_wilhelm_grass n 1 1 @ 1 0 11012153 -gunwale n 1 1 @ 1 0 03470802 -guomindang n 1 1 @ 1 0 08260691 -guppy n 1 1 @ 1 0 01448594 -gur n 1 1 @ 1 0 06996160 -gurgle n 1 2 @ + 1 0 07384741 -gurkha n 2 1 @ 2 0 09724365 09724234 -gurnard n 1 3 @ ~ #m 1 0 02650050 -gurney n 1 1 @ 1 0 03470948 -guru n 3 2 @ ; 3 1 10152616 10152889 10152763 -guru_nanak n 1 2 @ ; 1 0 11199394 -gush n 2 3 @ ~ + 2 0 07439570 07014320 -gusher n 1 2 @ + 1 0 03471030 -gusset n 3 2 @ #p 3 0 04539648 03471347 03471190 -gusset_plate n 1 1 @ 1 0 03471347 -gust n 1 3 @ ~ + 1 1 11465017 -gustation n 1 2 @ + 1 0 05658226 -gustatory_cell n 1 2 @ #p 1 0 05305389 -gustatory_modality n 1 1 @ 1 0 05658226 -gustatory_organ n 1 3 @ #p %p 1 0 05305136 -gustatory_perception n 1 2 @ ~ 1 0 05715283 -gustatory_sensation n 1 2 @ ~ 1 0 05715283 -gustav_hertz n 1 1 @ 1 0 11046722 -gustav_klimt n 1 1 @ 1 0 11107635 -gustav_ludwig_hertz n 1 1 @ 1 0 11046722 -gustav_mahler n 1 1 @ 1 0 11149630 -gustav_robert_kirchhoff n 1 1 @ 1 0 11105945 -gustav_theodor_fechner n 1 1 @ 1 0 10968058 -gustave_courbet n 1 1 @ 1 0 10913203 -gustave_flaubert n 1 1 @ 1 0 10972697 -gustavus n 6 1 @ 6 0 11020375 11020225 11020069 11019900 11019570 11019425 -gustavus_adolphus n 1 1 @ 1 0 11019570 -gustavus_franklin_swift n 1 1 @ 1 0 11326999 -gustavus_i n 1 1 @ 1 0 11019425 -gustavus_ii n 1 1 @ 1 0 11019570 -gustavus_iii n 1 1 @ 1 0 11019900 -gustavus_iv n 1 1 @ 1 0 11020069 -gustavus_v n 1 1 @ 1 0 11020225 -gustavus_vi n 1 1 @ 1 0 11020375 -gusto n 1 1 @ 1 1 07491981 -gut n 3 6 @ ~ #s #p %p + 3 1 05534333 09300483 02983741 -gut_issue n 1 1 @ 1 0 05814952 -gutenberg n 1 1 @ 1 0 11020513 -guthrie n 1 1 @ 1 0 11020721 -gutierrezia n 1 3 @ #m %m 1 0 11973888 -gutierrezia_microcephala n 1 1 @ 1 0 11974373 -gutierrezia_sarothrae n 1 2 @ #m 1 0 11974557 -gutierrezia_texana n 1 2 @ #m 1 0 11974888 -gutlessness n 1 3 ! @ + 1 0 04861319 -guts n 1 3 @ + ; 1 1 05032351 -gutsiness n 1 3 ! @ + 1 0 04859816 -gutta-percha n 1 1 @ 1 0 14903763 -gutta-percha_tree n 2 2 @ #m 2 0 12775393 12775070 -gutta_balata n 1 2 @ #s 1 0 12774496 -gutter n 4 4 @ ~ #p + 4 1 03471473 14475992 10153009 03471685 -gutter_press n 1 2 @ ; 1 0 06263020 -guttersnipe n 1 2 @ ~ 1 0 10662952 -guttiferae n 1 3 @ #m %m 1 0 12363988 -guttiferales n 1 2 @ #m 1 0 12359578 -guttural n 1 2 @ + 1 0 07120176 -guttural_consonant n 1 1 @ 1 0 07120176 -guvnor n 1 2 @ ; 1 0 10153155 -guy n 3 5 @ ~ #p + ; 3 2 10153414 03471974 03471779 -guy_cable n 1 2 @ #p 1 0 03471779 -guy_de_maupassant n 1 1 @ 1 0 11165339 -guy_fawkes n 1 1 @ 1 0 10967872 -guy_fawkes_day n 1 2 @ ; 1 1 15158997 -guy_fawkes_night n 1 1 @ 1 0 15159139 -guy_of_burgundy n 1 1 @ 1 0 10879789 -guy_rope n 1 2 @ #p 1 0 03471779 -guy_wire n 1 2 @ #p 1 0 03471779 -guyana n 1 5 @ #m #p %m %p 1 0 08948346 -guyana_dollar n 1 1 @ 1 0 13673362 -guyanese n 1 3 @ #m + 1 0 09712324 -guyot n 1 1 @ 1 0 09300559 -guzzler n 2 1 @ 2 0 10153266 10151957 -guzzling n 1 2 @ + 1 0 00843325 -gwydion n 1 2 @ ; 1 0 09509546 -gwyn n 1 2 @ ; 1 0 09509678 -gwynn n 1 1 @ 1 0 11020888 -gy n 1 1 @ 1 0 13645812 -gym n 1 1 @ 1 1 03472112 -gym_mat n 1 2 @ ~ 1 0 03727946 -gym_rat n 1 1 @ 1 0 10153865 -gym_shoe n 1 2 @ ~ 1 0 03472535 -gym_suit n 1 1 @ 1 0 03472672 -gymkhana n 1 1 @ 1 0 07468116 -gymnadenia n 1 3 @ #m %m 1 0 12064183 -gymnadenia_conopsea n 1 2 @ #m 1 0 12064389 -gymnadenia_odoratissima n 1 2 @ #m 1 0 12064591 -gymnadeniopsis n 1 2 @ #m 1 0 12064814 -gymnasium n 2 2 @ ~ 2 0 08284481 03472112 -gymnast n 1 2 @ ~ 1 1 10153594 -gymnastic_apparatus n 1 3 @ ~ ; 1 0 03472232 -gymnastic_exercise n 2 4 @ ~ ; - 2 0 00435778 00433802 -gymnastic_horse n 1 2 @ ~ 1 0 03538037 -gymnastics n 1 4 @ ~ + - 1 1 00433802 -gymnelis n 1 3 @ #m %m 1 0 02617689 -gymnelis_viridis n 1 2 @ #m 1 0 02617819 -gymnocalycium n 1 2 @ #m 1 0 11847414 -gymnocarpium n 1 3 @ #m %m 1 0 13197085 -gymnocarpium_dryopteris n 1 2 @ #m 1 0 13197274 -gymnocarpium_robertianum n 1 1 @ 1 0 13197507 -gymnocladus n 1 3 @ #m %m 1 0 12496207 -gymnocladus_dioica n 1 2 @ #m 1 0 12496427 -gymnogyps n 1 2 @ #m 1 0 01620003 -gymnogyps_californianus n 1 1 @ 1 0 01620135 -gymnomycota n 1 3 @ #m %m 1 0 12975207 -gymnophiona n 1 3 @ #m %m 1 0 01654957 -gymnopilus n 1 3 @ #m %m 1 0 13076181 -gymnopilus_spectabilis n 1 2 @ #m 1 0 13076405 -gymnopilus_validipes n 1 2 @ #m 1 0 13076643 -gymnopilus_ventricosus n 1 2 @ #m 1 0 13076831 -gymnorhina n 1 3 @ #m %m 1 0 01583636 -gymnorhina_tibicen n 1 2 @ #m 1 0 01583828 -gymnosophist n 1 2 @ + 1 0 10153724 -gymnosophy n 1 2 @ + 1 0 05962414 -gymnosperm n 1 4 @ ~ #m + 1 0 11596108 -gymnosperm_family n 1 3 @ ~ #m 1 0 11553763 -gymnosperm_genus n 1 3 @ ~ #m 1 0 11554175 -gymnospermae n 1 3 @ #m %m 1 0 11595312 -gymnospermophyta n 1 3 @ #m %m 1 0 11595312 -gymnospermous_tree n 1 3 @ ~ #m 1 0 13108662 -gymnospermous_yellowwood n 1 2 @ ~ 1 0 11650759 -gymnosporangium n 1 3 @ #m %m 1 0 13065215 -gymnosporangium_juniperi-virginianae n 1 2 @ #m 1 0 13065514 -gymnura n 1 3 @ #m %m 1 0 01498577 -gymslip n 1 2 @ ; 1 0 03472796 -gynaecologist n 1 3 @ ~ + 1 0 10154013 -gynaecology n 1 2 @ + 1 0 06050901 -gynaeolatry n 1 1 @ 1 0 01045306 -gynandromorph n 1 2 @ + 1 0 10172080 -gynarchy n 1 1 @ 1 0 08361817 -gynecocracy n 1 1 @ 1 0 08361817 -gynecologist n 1 3 @ ~ + 1 1 10154013 -gynecology n 1 2 @ + 1 0 06050901 -gynecomastia n 1 1 @ 1 0 14506020 -gyneolatry n 1 1 @ 1 0 01045306 -gynne n 1 1 @ 1 0 11020888 -gynobase n 1 1 @ 1 0 11676743 -gynoecium n 1 1 @ 1 0 13093852 -gynogenesis n 1 1 @ 1 0 13490487 -gynophobia n 1 1 @ 1 0 14382159 -gynophore n 1 1 @ 1 0 11676850 -gynostegium n 1 2 @ #p 1 0 11675404 -gynura n 1 3 @ #m %m 1 0 11975100 -gynura_aurantiaca n 1 2 @ #m 1 0 11975254 -gyp n 1 3 @ ~ + 1 0 00779248 -gypaetus n 1 2 @ #m 1 0 01617289 -gypaetus_barbatus n 1 1 @ 1 0 01617443 -gyps n 1 3 @ #m %m 1 0 01616970 -gyps_fulvus n 1 2 @ #m 1 0 01617095 -gypsophila n 1 3 @ #m %m 1 0 11810190 -gypsophila_paniculata n 1 2 @ #m 1 0 11810358 -gypsum n 1 4 @ ~ #s %s 1 0 14677778 -gypsum_board n 1 2 @ ~ 1 0 03957762 -gypsy n 3 2 @ ~ 3 0 10217831 10154186 06969822 -gypsy_cab n 1 1 @ 1 0 03472937 -gypsy_dancing n 1 1 @ 1 0 00533036 -gypsy_moth n 1 2 @ #m 1 0 02286089 -gypsy_rose_lee n 1 1 @ 1 0 11124472 -gypsyweed n 1 1 @ 1 0 12891643 -gypsywort n 1 2 @ #m 1 0 12852570 -gyration n 2 3 @ ~ + 2 1 07440979 00342755 -gyre n 1 2 @ ~ 1 0 13875970 -gyrfalcon n 1 2 @ #m 1 0 01611800 -gyrinidae n 1 3 @ #m %m 1 0 02177376 -gyro n 2 3 @ #p %p 2 0 07698250 03473227 -gyro_horizon n 1 1 @ 1 0 02745611 -gyrocompass n 1 2 @ %p 1 0 03473078 -gyromitra n 1 2 @ ~ 1 0 13037406 -gyromitra_brunnea n 1 2 @ #m 1 0 13038577 -gyromitra_californica n 1 2 @ #m 1 0 13037585 -gyromitra_esculenta n 1 2 @ #m 1 0 13038068 -gyromitra_fastigiata n 1 2 @ #m 1 0 13038577 -gyromitra_gigas n 1 2 @ #m 1 0 13038744 -gyromitra_infula n 1 2 @ #m 1 0 13038376 -gyromitra_sphaerospora n 1 2 @ #m 1 0 13037805 -gyroplane n 1 1 @ 1 0 02759387 -gyroscope n 1 3 @ #p + 1 0 03473227 -gyrostabiliser n 1 3 @ #p %p 1 0 03473465 -gyrostabilizer n 1 3 @ #p %p 1 0 03473465 -gyrus n 1 3 @ ~ #p 1 0 05492426 -gyrus_cinguli n 1 2 @ #p 1 0 05496592 -gywn n 1 1 @ 1 0 11020888 -h n 5 6 @ ~ #m #s %p ; 5 0 14640434 13639405 13591123 06831926 05012272 -h-bomb n 1 1 @ 1 0 03553248 -h._g._wells n 1 1 @ 1 0 11381193 -h._h._munro n 1 1 @ 1 0 11196627 -h._j._eysenck n 1 1 @ 1 0 10964261 -h._l._mencken n 1 1 @ 1 0 11173031 -h._pylori n 1 1 @ 1 0 01351688 -h.m.s._bounty n 1 1 @ 1 0 02878883 -h.p. n 1 2 @ %p 1 0 13645010 -h2o n 1 4 @ ~ #s %s 1 0 14845743 -ha n 1 2 @ ; 1 0 13888783 -ha'p'orth n 1 1 @ 1 0 13661045 -ha'penny n 1 1 @ 1 0 13390525 -ha-ha n 2 1 @ 2 0 07127911 04356423 -haart n 1 2 @ %p 1 0 03248560 -haastia n 1 3 @ #m %m 1 0 11975482 -haastia_pulvinaris n 1 2 @ #m 1 0 11975658 -habacuc n 1 2 @ #p 1 0 06440489 -habakkuk n 2 2 @ #p 2 0 11021100 06440489 -habanera n 2 1 @ 2 0 07055612 00533322 -habeas_corpus n 2 2 @ ; 2 0 06554373 05183453 -habenaria n 1 3 @ #m %m 1 0 12064996 -habenaria_albiflora n 1 1 @ 1 0 12066261 -habenaria_bifolia n 1 2 @ #m 1 0 12077944 -habenaria_chlorantha n 1 2 @ #m 1 0 12078172 -habenaria_dilatata n 1 1 @ 1 0 12066018 -habenaria_elegans n 1 1 @ 1 0 12066451 -habenaria_fimbriata n 1 1 @ 1 0 12066630 -habenaria_greenei n 1 1 @ 1 0 12066821 -habenaria_hookeri n 1 1 @ 1 0 12067029 -habenaria_lacera n 1 1 @ 1 0 12067193 -habenaria_leucophaea n 1 1 @ 1 0 12067433 -habenaria_nivea n 1 1 @ 1 0 12067672 -habenaria_orbiculata n 1 1 @ 1 0 12067817 -habenaria_peramoena n 1 1 @ 1 0 12068138 -habenaria_psycodes n 1 1 @ 1 0 12068432 -habenaria_unalascensis n 1 1 @ 1 0 12068615 -haber n 1 1 @ 1 0 11021178 -haber-bosch_process n 1 1 @ 1 0 13490683 -haber_process n 1 1 @ 1 0 13490683 -haberdasher n 1 1 @ 1 0 09930772 -haberdashery n 2 2 @ ~ 2 1 03052464 03473704 -haberdashery_store n 1 2 @ ~ 1 1 03052464 -habergeon n 1 2 @ ; 1 0 03473817 -habiliment n 1 3 @ ~ %p 1 0 03051540 -habit n 6 5 @ ~ %p + ; 6 3 05669034 00414179 03473966 13490909 03474167 00947923 -habitability n 1 2 @ + 1 0 04722231 -habitableness n 1 2 @ + 1 0 04722231 -habitant n 1 2 @ ~ 1 0 09620078 -habitat n 1 2 @ ~ 1 1 08580583 -habitation n 3 3 @ ~ %p 3 0 08580803 03259505 01054545 -habitual_abortion n 1 1 @ 1 0 00230703 -habitual_criminal n 1 1 @ 1 0 10511425 -habituation n 2 4 @ ~ + ; 2 0 14062725 00194831 -habitude n 1 2 @ ~ 1 0 00415000 -habitue n 1 1 @ 1 0 10517405 -habitus n 2 2 @ ~ 2 0 14531056 04998530 -hablot_knight_browne n 1 1 @ 1 0 10866738 -habsburg n 1 1 @ 1 0 08155302 -hacek n 1 1 @ 1 0 06823259 -hachiman n 1 1 @ 1 0 09534843 -hachure n 1 2 @ + 1 0 04681797 -hacienda n 2 3 @ #p %p 2 0 13252395 03474352 -hack n 8 4 @ ~ #m + 8 1 10154601 10278805 10154740 03474467 02930766 02382204 02382132 02378969 -hack-driver n 1 1 @ 1 0 10693646 -hack_driver n 1 1 @ 1 0 10693646 -hack_saw n 1 1 @ 1 0 03474779 -hack_writer n 1 2 @ #m 1 0 10154740 -hackamore n 1 2 @ #p 1 0 03480719 -hackberry n 2 3 @ ~ #m 2 0 12409231 07746038 -hackbut n 1 1 @ 1 0 02742070 -hackee n 1 2 @ #m 1 0 02359915 -hackelia n 1 3 @ #m %m 1 0 12819953 -hacker n 4 4 @ ~ + ; 4 1 10155140 10155222 10154871 10154601 -hackle n 1 2 @ ~ 1 0 01898459 -hackles n 1 1 @ 1 0 07518000 -hackmatack n 1 1 @ 1 0 12731835 -hackney n 2 2 @ ~ 2 0 03474635 02386224 -hackney_carriage n 1 2 @ ~ 1 0 03474635 -hackney_coach n 1 2 @ ~ 1 0 03474635 -hacksaw n 1 1 @ 1 0 03474779 -hackwork n 1 1 @ 1 1 00622859 -had_crime n 1 2 @ ; 1 0 00769695 -haddock n 2 5 @ ~ #m #p %p 2 0 07789541 02523877 -hadean n 1 1 @ 1 0 15129572 -hadean_aeon n 1 1 @ 1 0 15129572 -hadean_eon n 1 1 @ 1 0 15129572 -hadean_time n 1 1 @ 1 0 15129572 -hades n 2 4 @ %p + ; 2 0 09570298 05629381 -hadith n 2 2 @ ; 2 0 05669181 00416409 -hadj n 1 1 @ 1 0 05915034 -hadji n 1 1 @ 1 0 10156284 -hadrian n 1 1 @ 1 0 11021342 -hadrian's_wall n 1 2 @ #p 1 0 08886814 -hadron n 1 3 @ ~ %p 1 0 09300674 -hadrosaur n 1 3 @ ~ #m 1 0 01705934 -hadrosauridae n 1 3 @ #m %m 1 0 01705717 -hadrosaurus n 1 3 @ ~ #m 1 0 01705934 -haecceity n 1 1 @ 1 0 05922014 -haeckel n 1 1 @ 1 0 11021667 -haem n 1 2 @ #s 1 0 15024997 -haemagglutination n 1 2 @ + 1 0 13492136 -haemal_arch n 1 2 @ #p 1 0 05587814 -haemangioma n 1 2 @ ~ 1 0 14247575 -haemanthus n 1 3 @ #m %m 1 0 12420335 -haemanthus_coccineus n 1 2 @ #m 1 0 12420722 -haematemesis n 1 1 @ 1 0 00119210 -haematinic n 1 1 @ 1 0 03513961 -haematite n 1 2 @ #s 1 0 14905720 -haematobia n 1 3 @ #m %m 1 0 02199352 -haematobia_irritans n 1 2 @ #m 1 0 02199502 -haematocele n 1 1 @ 1 0 14317221 -haematochezia n 1 1 @ 1 0 13492287 -haematocoele n 1 1 @ 1 0 14317221 -haematocolpometra n 1 1 @ 1 0 14317433 -haematocolpos n 1 1 @ 1 0 14317562 -haematocrit n 2 1 @ 2 0 13821766 03514129 -haematocytopenia n 1 1 @ 1 0 13973632 -haematocyturia n 1 1 @ 1 0 14266400 -haematogenesis n 1 1 @ 1 0 13492453 -haematohiston n 1 2 @ #s 1 0 15025942 -haematoidin n 1 1 @ 1 0 14756369 -haematologist n 1 2 @ + 1 0 10170681 -haematology n 1 2 @ + 1 0 06051134 -haematolysis n 1 1 @ 1 0 13493213 -haematoma n 1 1 @ 1 0 14318714 -haematopodidae n 1 2 @ #m 1 0 02036864 -haematopoiesis n 1 2 @ + 1 0 13492453 -haematopus n 1 3 @ #m %m 1 0 02036982 -haematoxylon n 1 3 @ #m %m 1 0 12496735 -haematoxylum n 1 3 @ #m %m 1 0 12496735 -haematoxylum_campechianum n 1 3 @ #m %s 1 0 12496949 -haematuria n 1 2 @ ~ 1 0 14314320 -haemitin n 1 2 @ #s 1 0 15024997 -haemodialysis n 1 1 @ 1 0 00650543 -haemodoraceae n 1 3 @ #m %m 1 0 12311894 -haemodorum n 1 2 @ #m 1 0 12312276 -haemogenesis n 1 1 @ 1 0 13492453 -haemoglobin n 1 4 @ ~ #s %s 1 0 15024240 -haemoglobinemia n 1 1 @ 1 0 14191903 -haemoglobinopathy n 1 1 @ 1 0 14192034 -haemoglobinuria n 1 1 @ 1 0 14314483 -haemolysin n 1 2 @ ~ 1 0 14906261 -haemolysis n 1 2 @ + 1 0 13493213 -haemolytic_anaemia n 1 1 @ 1 0 14165240 -haemophile n 1 2 @ + 1 0 10170989 -haemophilia n 1 3 @ ~ + 1 0 14170337 -haemophilia_a n 1 1 @ 1 0 14170772 -haemophilia_b n 1 1 @ 1 0 14170987 -haemophiliac n 1 1 @ 1 0 10170989 -haemopis n 1 3 @ #m %m 1 0 01938618 -haemopoiesis n 1 2 @ + 1 0 13492453 -haemoproteid n 1 2 @ #m 1 0 01424782 -haemoproteidae n 1 3 @ #m %m 1 0 01424607 -haemoprotein n 1 2 @ ~ 1 0 14888884 -haemoproteus n 1 2 @ #m 1 0 01424938 -haemoptysis n 1 1 @ 1 0 14192199 -haemorrhage n 1 3 @ ~ + 1 0 14288235 -haemorrhagic_fever n 1 2 @ ~ 1 0 14177423 -haemorrhagic_stroke n 1 1 @ 1 0 14288561 -haemorrhoid n 1 1 @ 1 0 14327125 -haemorrhoidectomy n 1 1 @ 1 0 00676693 -haemosiderin n 1 2 @ %s 1 0 15026963 -haemosiderosis n 1 1 @ 1 0 14314597 -haemosporidia n 1 3 @ #m %m 1 0 01423757 -haemosporidian n 1 2 @ #m 1 0 01423971 -haemostasia n 1 2 @ #p 1 0 00676834 -haemostasis n 1 2 @ #p 1 0 00676834 -haemostat n 1 1 @ 1 0 03514451 -haemothorax n 1 1 @ 1 0 14320813 -haemulidae n 1 3 @ #m %m 1 0 02588108 -haemulon n 1 3 @ #m %m 1 0 02588580 -haemulon_album n 1 2 @ #m 1 0 02588794 -haemulon_aurolineatum n 1 2 @ #m 1 0 02589062 -haemulon_macrostomum n 1 2 @ #m 1 0 02588945 -haemulon_malanurum n 1 2 @ #m 1 0 02589196 -haemulon_parra n 1 2 @ #m 1 0 02589316 -hafnium n 1 1 @ 1 0 14639556 -haft n 1 2 @ #p 1 0 03474896 -haftarah n 1 1 @ 1 0 06453119 -haftorah n 1 1 @ 1 0 06453119 -hag n 2 3 @ ~ #m 2 0 10155485 01478511 -hagada n 1 1 @ 1 0 06463011 -haganah n 1 2 @ ; 1 0 08345366 -hagberry n 1 2 @ #p 1 0 12647787 -hagberry_tree n 1 3 @ #m %p 1 0 12647560 -hagbut n 1 1 @ 1 0 02742070 -hageman_factor n 1 1 @ 1 0 15072491 -hagerstown n 1 2 @ #p 1 0 09094919 -hagfish n 1 3 @ ~ #m 1 0 01478511 -haggada n 1 1 @ 1 0 06463011 -haggadah n 1 1 @ 1 0 06463011 -haggai n 2 2 @ #p 2 0 11021916 06440937 -haggard n 1 1 @ 1 0 11022001 -haggis n 1 2 @ ; 1 0 07869111 -haggle n 1 2 @ + 1 0 07150138 -haggler n 1 2 @ + 1 0 10155600 -haggling n 1 2 @ + 1 0 07150138 -hagia_sofia n 1 2 @ #p 1 0 03475118 -hagia_sophia n 1 2 @ #p 1 0 03475118 -hagiographa n 1 3 @ #p %p 1 0 06453324 -hagiographer n 1 2 @ + 1 0 10155692 -hagiographist n 1 1 @ 1 0 10155692 -hagiography n 1 2 @ + 1 0 06516242 -hagiolatry n 1 1 @ 1 0 01046257 -hagiologist n 1 1 @ 1 0 10155692 -hagiology n 1 2 @ ; 1 0 06377000 -hahn n 1 1 @ 1 0 11022160 -hahnium n 1 1 @ 1 0 14636523 -haick n 1 1 @ 1 0 03475421 -haida n 2 1 @ 2 0 09655709 06910238 -haifa n 1 2 @ #p 1 0 08798062 -haik n 1 1 @ 1 0 03475421 -haiku n 1 1 @ 1 1 06380495 -hail n 3 3 @ %p + 3 1 11465530 09300905 06631050 -hail_mary n 1 1 @ 1 0 06456515 -haile_selassie n 1 1 @ 1 0 11022309 -hailstone n 1 2 @ #p 1 0 14915804 -hailstorm n 1 1 @ 1 0 11465688 -haiphong n 1 2 @ #p 1 0 09164417 -hair n 6 6 @ ~ #p %s %p + 6 1 05254795 13761603 13090091 05254393 03475674 01900150 -hair's-breadth n 1 1 @ 1 0 13761603 -hair-raiser n 1 1 @ 1 0 01261113 -hair-tailed_mole n 1 1 @ 1 0 01890144 -hair_ball n 1 1 @ 1 0 09301044 -hair_care n 1 2 @ ~ 1 0 00257228 -hair_cell n 1 2 @ #p 1 0 05242622 -hair_coloring n 3 2 @ ~ 3 0 14988502 04976188 00275307 -hair_curler n 1 1 @ 1 0 03150232 -hair_drier n 1 1 @ 1 0 03483316 -hair_dryer n 1 1 @ 1 0 03483316 -hair_dye n 1 2 @ ~ 1 0 14988502 -hair_follicle n 1 2 @ %p 1 0 05518257 -hair_gel n 1 1 @ 1 0 03794136 -hair_grass n 1 1 @ 1 0 12153914 -hair_grease n 1 2 @ ~ 1 0 03475823 -hair_mousse n 1 1 @ 1 0 03794136 -hair_of_the_dog n 1 1 @ 1 0 07912726 -hair_oil n 1 2 @ ~ 1 0 03475823 -hair_seal n 1 3 @ ~ #m 1 0 02079389 -hair_shirt n 1 1 @ 1 0 03476542 -hair_slide n 1 2 @ ; 1 0 03476684 -hair_space n 1 2 @ ; 1 0 03476843 -hair_spray n 1 1 @ 1 0 03476991 -hair_stroke n 1 1 @ 1 0 06802347 -hair_style n 1 4 @ ~ %p + 1 0 05256862 -hair_tonic n 1 2 @ ~ 1 0 03475823 -hair_trigger n 1 1 @ 1 0 03477303 -hairball n 1 1 @ 1 0 09301044 -hairbrush n 1 1 @ 1 0 03475581 -haircare n 1 2 @ ~ 1 0 00257228 -haircloth n 1 1 @ 1 0 03475674 -haircut n 2 2 @ ~ 2 1 05257593 00359822 -hairdo n 1 3 @ ~ %p 1 1 05256862 -hairdresser n 1 2 @ ~ 1 0 10155849 -hairdressing n 2 2 @ ~ 2 0 03475823 00257228 -hairgrip n 1 1 @ 1 0 02860640 -hairiness n 1 4 ! @ ~ + 1 0 04683453 -hairlessness n 2 4 ! @ ~ + 2 0 14457218 04683707 -hairline n 2 4 @ ~ #p %p 2 0 06802258 05256220 -hairline_fracture n 1 1 @ 1 0 14293505 -hairnet n 1 1 @ 1 0 03475961 -hairpiece n 1 2 @ ~ 1 0 03476083 -hairpin n 1 2 @ ~ 1 0 03476313 -hairpin_bend n 1 1 @ 1 0 03476458 -hairsbreadth n 1 1 @ 1 0 13761603 -hairsplitter n 1 1 @ 1 0 10156173 -hairsplitting n 1 2 @ + 1 0 05749210 -hairspring n 1 2 @ #p 1 0 03477143 -hairstreak n 1 3 @ ~ #m 1 0 02282903 -hairstreak_butterfly n 1 3 @ ~ #m 1 0 02282903 -hairstyle n 1 3 @ ~ %p 1 0 05256862 -hairstylist n 1 3 @ ~ + 1 0 10155849 -hairtail n 1 2 @ #m 1 0 02622955 -hairweaving n 1 1 @ 1 0 00257468 -hairy-legged_vampire_bat n 1 2 @ #m 1 0 02151230 -hairy_darling_pea n 1 1 @ 1 0 11752168 -hairy_finger_grass n 1 1 @ 1 0 12117326 -hairy_golden_aster n 1 2 @ #m 1 0 11981475 -hairy_honeysuckle n 1 2 @ #m 1 0 12675515 -hairy_lip_fern n 1 1 @ 1 0 13209270 -hairy_root n 1 1 @ 1 0 14279845 -hairy_spurge n 1 2 @ #m 1 0 12920043 -hairy_tare n 1 2 @ #m 1 0 12576838 -hairy_tongue n 1 1 @ 1 0 14311801 -hairy_vetch n 1 2 @ #m 1 0 12576838 -hairy_willowherb n 1 1 @ 1 0 12343092 -hairy_wood_mint n 1 2 @ #m 1 0 12842519 -haiti n 2 7 @ #m #p %m %p + - 2 0 08751494 08751317 -haitian n 1 3 @ #m + 1 0 09712448 -haitian_capital n 1 2 @ #p 1 0 08751885 -haitian_centime n 1 2 @ #p 1 0 13679377 -haitian_creole n 1 1 @ 1 0 06905513 -haitian_monetary_unit n 1 2 @ ~ 1 0 13679161 -haj n 1 1 @ 1 0 05915034 -haji n 1 1 @ 1 0 10156284 -hajj n 1 1 @ 1 0 05915034 -hajji n 2 1 @ 2 0 10156425 10156284 -hake n 2 2 @ ~ 2 0 07792027 02524524 -hakea n 1 3 @ #m %m 1 0 12218621 -hakea_laurina n 1 2 @ #m 1 0 12218868 -hakea_leucoptera n 1 2 @ #m 1 0 12219065 -hakea_lissosperma n 1 2 @ #m 1 0 12219289 -hakeem n 1 1 @ 1 0 10156629 -hakenkreuz n 1 2 @ ; 1 0 06883725 -hakham n 1 2 @ ; 1 0 06340977 -hakim n 2 1 @ 2 0 10156726 10156629 -hakka n 2 1 @ 2 0 10156831 06930804 -hakka_dialect n 1 1 @ 1 0 06930804 -halab n 1 2 @ #p 1 0 09034286 -halacha n 1 1 @ 1 0 06463170 -halaka n 1 1 @ 1 0 06463170 -halakah n 1 1 @ 1 0 06463170 -halal n 1 3 @ + ; 1 0 07664582 -halberd n 1 2 @ %p 1 0 03477410 -halberdier n 1 1 @ 1 0 10157016 -halchidhoma n 1 1 @ 1 0 09655891 -halcion n 1 2 @ ; 1 0 04480625 -halcyon n 3 3 @ #m ; 3 0 09486639 01828397 01827202 -haldane n 4 1 @ 4 0 11023070 11022848 11022669 11022465 -haldea n 1 2 @ #m 1 0 01736696 -haldea_striatula n 1 2 @ #m 1 0 01736796 -haldol n 1 2 @ ; 1 0 03480186 -hale n 3 1 @ 3 0 11023623 11023442 11023327 -haleakala_national_park n 1 2 @ #p 1 0 08605720 -haleness n 1 2 @ + 1 0 14050011 -halenia n 1 3 @ #m %m 1 0 12297678 -haler n 2 2 @ #p 2 0 13681749 13681407 -halesia n 1 3 @ #m %m 1 0 12778045 -halesia_carolina n 1 1 @ 1 0 12778398 -halesia_tetraptera n 1 1 @ 1 0 12778398 -halevy n 1 1 @ 1 0 11023883 -haley n 2 1 @ 2 0 11024226 11024033 -half n 2 3 @ ~ #p 2 1 13736799 15257829 -half-and-half n 1 1 @ 1 0 07847706 -half-and-half_dressing n 1 1 @ 1 0 07834286 -half-breed n 1 2 @ ; 1 1 10157549 -half-brother n 1 1 @ 1 1 10654321 -half-caste n 1 3 @ ~ ; 1 0 10157378 -half-century n 1 2 @ #p 1 0 15206097 -half-cock n 1 1 @ 1 0 05684739 -half-free_morel n 1 2 @ #m 1 0 13034062 -half-holiday n 1 1 @ 1 0 15138496 -half-hour n 1 2 @ #p 1 1 15228162 -half-intensity n 1 1 @ 1 1 05101174 -half-length n 1 1 @ 1 0 03478033 -half-life n 1 1 @ 1 0 15275094 -half-light n 1 1 @ 1 0 11465775 -half-mast n 1 1 @ 1 0 08580944 -half-moon n 2 3 @ ~ #p 2 1 05582038 15207103 -half-pay n 1 1 @ 1 0 13280139 -half-pint n 1 1 @ 1 0 10543544 -half-relief n 1 1 @ 1 0 03758334 -half-sister n 1 1 @ 1 0 10603242 -half-slip n 1 2 @ ~ 1 0 03920737 -half-staff n 1 1 @ 1 0 08580944 -half-term n 1 2 @ ; 1 0 15138241 -half-truth n 1 1 @ 1 0 06758584 -half-wit n 2 3 @ ~ ; 2 0 10197525 10013114 -half_a_dozen n 1 1 @ 1 1 13744722 -half_binding n 1 1 @ 1 0 03477512 -half_blood n 1 1 @ 1 0 10157271 -half_boot n 1 1 @ 1 0 02925666 -half_brother n 1 1 @ 1 0 10654321 -half_cross_stitch n 1 1 @ 1 0 03477674 -half_crown n 1 1 @ 1 0 13389949 -half_dollar n 1 1 @ 1 0 13390405 -half_door n 1 1 @ 1 0 03259118 -half_eagle n 1 1 @ 1 0 13392580 -half_gainer n 1 1 @ 1 1 00444142 -half_hatchet n 1 1 @ 1 0 03477773 -half_hitch n 1 1 @ 1 0 03477902 -half_life n 1 1 @ 1 1 15275094 -half_mask n 1 1 @ 1 0 03221059 -half_mile n 1 2 @ #p 1 1 13651804 -half_nelson n 1 1 @ 1 0 00813800 -half_note n 1 1 @ 1 0 06870844 -half_page n 1 1 @ 1 0 06257372 -half_pound n 1 2 @ #p 1 0 13720405 -half_rest n 1 1 @ 1 0 06870965 -half_sister n 1 1 @ 1 1 10603242 -half_snipe n 1 2 @ #m 1 0 02032769 -half_sole n 1 2 @ #p 1 0 03478141 -half_step n 1 1 @ 1 0 06859175 -half_title n 1 1 @ 1 0 06257772 -half_track n 2 2 @ ; 2 0 03478589 03478491 -half_volley n 1 1 @ 1 0 00569234 -halfback n 2 3 @ #m ; 2 1 10157128 00727002 -halfbeak n 1 2 @ #m 1 0 02551134 -halfpenny n 1 1 @ 1 0 13390525 -halfpennyworth n 1 1 @ 1 0 13661045 -halftime n 1 1 @ 1 1 15272571 -halftone n 2 1 @ 2 0 03478400 03478261 -halftone_engraving n 1 1 @ 1 0 03478261 -haliaeetus n 1 3 @ #m %m 1 0 01614769 -haliaeetus_leucocephalus n 1 2 @ #m 1 0 01614925 -haliaeetus_leucorhyphus n 1 1 @ 1 0 01615703 -haliaeetus_pelagicus n 1 1 @ 1 0 01615303 -haliatus_albicilla n 1 1 @ 1 0 01615458 -halibut n 2 3 @ #p %p 2 0 07791808 02660208 -halibut-liver_oil n 1 1 @ 1 0 14904226 -halicarnassus n 1 2 @ #p 1 0 09041582 -halicoeres n 1 3 @ #m %m 1 0 02608708 -halicoeres_bivittatus n 1 2 @ #m 1 0 02608860 -halicoeres_radiatus n 1 2 @ #m 1 0 02608996 -halictidae n 1 3 @ #m %m 1 0 02210728 -halide n 1 2 @ ~ 1 0 14904359 -halifax n 1 2 @ #p 1 0 08827002 -halimodendron n 1 3 @ #m %m 1 0 12533588 -halimodendron_argenteum n 1 2 @ #m 1 0 12533730 -halimodendron_halodendron n 1 2 @ #m 1 0 12533730 -haliotidae n 1 3 @ #m %m 1 0 01942601 -haliotis n 1 3 @ #m %m 1 0 01942724 -haliotis_tuberculata n 1 1 @ 1 0 01943087 -halite n 1 2 @ %s 1 0 14672224 -halitosis n 1 1 @ 1 0 14842019 -halitus n 1 2 @ ~ 1 0 14842091 -hall n 13 4 @ ~ #p %p 13 5 03479952 02715513 03478907 03224893 03718581 11025125 11024908 11024731 11024582 11024419 03719053 03479121 03478756 -hall's_honeysuckle n 1 2 @ #m 1 0 12676134 -hall_of_fame n 1 2 @ ~ 1 1 03479266 -hall_of_residence n 1 2 @ ; 1 0 03479397 -hall_pass n 1 1 @ 1 0 06690770 -hall_porter n 1 2 @ ~ 1 0 10026553 -hallah n 1 2 @ ; 1 0 07681450 -halle n 1 3 @ #m #p 1 0 08773098 -halle-an-der-saale n 1 3 @ #m #p 1 0 08773098 -hallel n 1 2 @ ; 1 0 07034865 -hallelujah n 1 1 @ 1 1 06693655 -halley n 1 1 @ 1 0 11025326 -halliard n 1 1 @ 1 0 03480863 -hallmark n 2 2 @ ~ 2 1 04732543 06855035 -halloo n 1 2 @ + 1 0 07122409 -hallowe'en n 1 1 @ 1 0 15191233 -halloween n 1 1 @ 1 1 15191233 -hallowmas n 1 2 @ #p 1 0 15195059 -hallowmass n 1 2 @ #p 1 0 15195059 -hallstand n 1 1 @ 1 0 03479502 -hallucination n 3 3 @ ~ + 3 1 14377617 05896733 05812921 -hallucinogen n 1 3 @ ~ + 1 0 03479647 -hallucinogenic_drug n 1 2 @ ~ 1 0 03479647 -hallucinosis n 1 1 @ 1 0 14375241 -hallux n 1 2 @ #p 1 0 05577741 -hallway n 1 3 @ ~ %p 1 1 03479952 -halm n 1 1 @ 1 0 13163649 -halma n 1 1 @ 1 0 00504526 -halo n 3 2 @ ~ 3 1 04951716 13875392 11487424 -halo_blight n 2 1 @ 2 0 14217360 14217253 -halo_spot n 1 1 @ 1 0 14217253 -haloalkane n 1 2 @ ~ 1 0 14601646 -halobacter n 1 1 @ 1 0 01348232 -halobacteria n 1 1 @ 1 0 01348232 -halobacterium n 1 1 @ 1 0 01348232 -halocarbon n 1 2 @ ~ 1 0 14904528 -halocarpus n 1 3 @ #m %m 1 0 11655407 -halocarpus_bidwilli n 1 2 @ #m 1 0 11655592 -haloform n 1 2 @ ~ 1 0 14620895 -halogen n 1 2 @ ~ 1 1 14904661 -halogeton n 1 2 @ #m 1 0 11833749 -halogeton_glomeratus n 1 2 @ #m 1 0 11833749 -halogeton_souda n 1 2 @ #m 1 0 11833999 -halon n 1 1 @ 1 0 14620257 -haloperidol n 1 1 @ 1 0 03480186 -halophil n 1 2 @ ~ 1 0 01348075 -halophile n 1 2 @ ~ 1 0 01348075 -halophyte n 1 1 @ 1 0 12387103 -haloragaceae n 1 3 @ #m %m 1 0 12326604 -haloragidaceae n 1 3 @ #m %m 1 0 12326604 -halothane n 1 1 @ 1 0 03480367 -hals n 1 1 @ 1 0 11025508 -halt n 3 3 @ ~ + 3 3 14010927 07365849 01063697 -halter n 4 4 @ #p %p + 4 1 03480719 03491724 03480579 02152212 -haltere n 1 2 @ #p 1 0 02152212 -halyard n 1 1 @ 1 0 03480863 -ham n 4 4 @ ~ + ; 4 1 07669891 10158222 10158139 10158010 -ham_actor n 1 1 @ 1 0 10158010 -ham_and_eggs n 1 1 @ 1 1 07869291 -ham_hock n 1 1 @ 1 0 07668481 -ham_sandwich n 1 1 @ 1 0 07696625 -hamadryad n 2 2 @ #m 2 0 09551260 01748906 -hamamelid_dicot_family n 1 3 @ ~ #m 1 0 11564734 -hamamelid_dicot_genus n 1 3 @ ~ #m 1 0 11573173 -hamamelidaceae n 1 3 @ #m %m 1 0 12314315 -hamamelidae n 1 3 @ #m %m 1 0 12313005 -hamamelidanthum n 1 2 @ #m 1 0 12313735 -hamamelidoxylon n 1 2 @ #m 1 0 12313954 -hamamelis n 1 3 @ #m %m 1 0 12314652 -hamamelis_vernalis n 1 1 @ 1 0 12315245 -hamamelis_virginiana n 1 1 @ 1 0 12315060 -hamamelites n 1 2 @ #m 1 0 12314146 -haman n 1 2 @ ; 1 0 10158319 -hamartia n 1 1 @ 1 0 14463331 -hamartoma n 1 1 @ 1 0 14238953 -hamas n 1 3 @ %p ; 1 0 08022259 -hamate n 1 1 @ 1 0 05273408 -hamate_bone n 1 1 @ 1 0 05273408 -hamburg n 1 3 @ #m #p 1 0 08773336 -hamburg_parsley n 1 1 @ 1 0 12942729 -hamburger n 2 4 @ ~ #p %p 2 0 07697100 07664007 -hamburger_bun n 1 1 @ 1 0 07690152 -hamburger_roll n 1 1 @ 1 0 07690152 -hamburger_steak n 1 1 @ 1 0 07664121 -hame n 1 2 @ #p 1 0 03480973 -hamelia n 1 3 @ ~ #m 1 0 12667964 -hamelia_erecta n 1 1 @ 1 0 12668131 -hamelia_patens n 1 1 @ 1 0 12668131 -hamelin n 1 2 @ #p 1 0 08771841 -hameln n 1 2 @ #p 1 0 08771841 -hamilton n 6 2 @ #p 6 0 11026231 11026078 11025926 11025668 08827689 08710873 -haminoea n 1 3 @ #m %m 1 0 01951845 -hamitic n 1 1 @ 1 0 06989869 -hamitic_language n 1 1 @ 1 0 06989869 -hamito-semitic n 1 2 @ ~ 1 0 06986558 -hamlet n 3 2 @ ~ 3 1 08226978 09599891 08672738 -hammarskjold n 1 1 @ 1 0 11026372 -hammer n 8 5 @ ~ #p %p + 8 2 03481824 03481172 05325943 03715669 03482001 03481674 03481521 01175316 -hammer_and_sickle n 1 1 @ 1 0 06882138 -hammer_nose n 1 1 @ 1 0 14397040 -hammer_throw n 1 1 @ 1 0 07470110 -hammerhead n 3 5 @ ~ #m #p %p 3 0 10039663 03482128 01494475 -hammerhead_shark n 1 3 @ ~ #m 1 0 01494475 -hammering n 1 2 @ + 1 0 01175316 -hammerlock n 1 1 @ 1 0 00813975 -hammerstein n 1 1 @ 1 0 11026597 -hammertoe n 1 1 @ 1 0 05577866 -hammett n 1 1 @ 1 0 11026816 -hamming n 1 2 @ + 1 1 00551585 -hammock n 2 2 @ ~ 2 0 09326662 03482252 -hammond_organ n 1 2 @ ; 1 0 03273551 -hammurabi n 1 1 @ 1 0 11026981 -hammurapi n 1 1 @ 1 0 11026981 -hamper n 2 3 @ ~ + 2 1 04181228 03482405 -hampshire n 2 3 @ #p %p 2 0 08882365 02413593 -hampshire_down n 1 1 @ 1 0 02413593 -hampton n 1 1 @ 1 0 11027127 -hampton_roads n 2 4 @ #p ; - 2 0 09301249 01280308 -hamster n 1 3 @ ~ #m 1 0 02342885 -hamstring n 1 2 @ + 1 0 05570704 -hamstring_tendon n 1 1 @ 1 0 05570704 -hamsun n 1 1 @ 1 0 11027294 -han n 1 1 @ 1 0 08154703 -han-gook n 1 5 @ ~ #p %p - 1 0 08954611 -han_dynasty n 1 1 @ 1 0 08154703 -hancock n 1 1 @ 1 0 11027416 -hand n 14 6 @ ~ #p %p + ; 14 8 05564590 10176679 06403393 05637965 08650157 07956887 05852973 03482523 13654093 10158506 09875353 06692238 02440250 01208460 -hand-held_computer n 1 1 @ 1 0 03485407 -hand-held_microcomputer n 1 1 @ 1 0 03485407 -hand-me-down n 1 2 @ + 1 0 03487642 -hand-schuller-christian_disease n 1 1 @ 1 0 14192376 -hand-to-hand_struggle n 1 1 @ 1 0 00622266 -hand_ax n 1 1 @ 1 0 03482727 -hand_axe n 1 1 @ 1 0 03482727 -hand_blower n 1 1 @ 1 1 03483316 -hand_brake n 1 2 @ #p 1 1 03483637 -hand_calculator n 1 1 @ 1 0 03483823 -hand_cheese n 1 1 @ 1 0 07853852 -hand_clapping n 1 3 @ ~ #p 1 0 06691989 -hand_cream n 1 1 @ 1 0 03484487 -hand_drill n 1 1 @ 1 0 03484809 -hand_fern n 1 2 @ #m 1 0 13211020 -hand_glass n 2 2 @ ~ 2 0 03485198 03484931 -hand_grenade n 1 1 @ 1 1 03485309 -hand_job n 1 2 @ ; 1 0 00856193 -hand_line n 1 1 @ 1 0 03487222 -hand_lotion n 1 1 @ 1 0 03487444 -hand_luggage n 1 1 @ 1 0 03487533 -hand_mirror n 1 1 @ 1 0 03485198 -hand_mower n 1 2 ! @ 1 0 03487774 -hand_organ n 1 2 @ ; 1 0 02795978 -hand_pump n 1 1 @ 1 0 03487886 -hand_puppet n 1 1 @ 1 0 03487963 -hand_saw n 1 2 @ ~ 1 0 03488188 -hand_shovel n 1 2 @ ~ 1 0 03488603 -hand_throttle n 1 1 @ 1 0 03489048 -hand_tool n 1 3 @ ~ %p 1 1 03489162 -hand_towel n 1 1 @ 1 0 03490006 -hand_truck n 1 1 @ 1 0 03490119 -hand_wear n 1 2 @ ~ 1 0 03490324 -handbag n 1 3 @ ~ %p 1 1 02774152 -handball n 2 1 @ 2 0 03482877 00479440 -handball_court n 1 1 @ 1 0 03482988 -handbarrow n 1 2 @ %p 1 0 03483086 -handbasin n 1 3 @ #p ; 1 0 04553703 -handbasket n 1 2 @ ~ 1 0 02801938 -handbell n 1 1 @ 1 0 03483230 -handbill n 1 2 @ ~ 1 0 07250339 -handbook n 1 2 @ ~ 1 0 06421301 -handbow n 1 1 @ 1 0 03483531 -handbreadth n 1 2 @ ~ 1 0 13654232 -handcar n 1 1 @ 1 0 03483971 -handcart n 1 3 @ ~ %p 1 0 03484083 -handclap n 1 1 @ 1 0 06692369 -handclasp n 1 2 @ ; 1 1 06632097 -handcraft n 1 2 @ + 1 0 03485655 -handcuff n 1 2 @ + 1 0 03484576 -handedness n 1 3 @ ~ + 1 0 05067007 -handel n 2 2 @ + 2 0 11027631 07278510 -handful n 2 1 @ 2 2 13771154 13767350 -handgrip n 1 4 @ ~ #p %p 1 0 03485997 -handgun n 1 3 @ ~ %p 1 0 03948459 -handheld_drill n 1 1 @ 1 0 03484809 -handhold n 1 1 @ 1 0 03485575 -handicap n 3 3 @ ~ + 3 2 14548343 05156822 05689249 -handicapped n 1 2 @ ~ 1 0 07946288 -handicapped_person n 1 2 @ ~ 1 0 10158756 -handicapper n 1 2 @ + 1 0 10370683 -handicraft n 2 3 @ ~ - 2 0 03485655 00714944 -handies_peak n 1 2 @ #p 1 0 09301461 -handiness n 2 4 @ ~ = + 2 0 05640924 04718999 -handing_over n 1 2 @ ~ 1 0 00318035 -handiwork n 1 1 @ 1 1 03485655 -handkerchief n 1 2 @ ~ 1 1 03485794 -handle n 1 5 @ ~ #p %p + 1 1 03485997 -handle-bars n 1 1 @ 1 0 05262534 -handlebar n 1 3 @ #p %p 1 1 03487090 -handler n 3 4 @ ~ + ; 3 0 10159045 10158608 09931640 -handline n 1 1 @ 1 0 03487222 -handling n 3 3 @ ~ + 3 3 00713594 00140652 01134861 -handling_charge n 1 1 @ 1 0 13302467 -handling_cost n 1 1 @ 1 0 13302467 -handlock n 1 1 @ 1 0 03484576 -handloom n 1 2 @ ~ 1 0 03487331 -handmaid n 2 1 @ 2 0 13952171 10159186 -handmaiden n 2 1 @ 2 0 13952171 10159186 -handoff n 1 2 @ ; 1 0 00561078 -handout n 2 1 @ 2 0 06747484 01090342 -handover n 1 2 @ + 1 0 00213186 -handrail n 1 3 @ #p %p 1 0 02788148 -handrest n 1 1 @ 1 0 03488111 -hands n 2 4 @ ~ %m %p 2 2 00818678 08212347 -handsaw n 1 2 @ ~ 1 0 03488188 -handsaw_fish n 1 2 @ #m 1 0 02544475 -handsbreadth n 1 2 @ ~ 1 0 13654232 -handset n 1 2 @ %p 1 0 03488438 -handshake n 1 3 @ + ; 1 0 06632097 -handshaking n 1 3 @ + ; 1 1 06632097 -handsomeness n 1 2 @ + 1 0 04685840 -handspike n 1 1 @ 1 1 03488784 -handspring n 1 1 @ 1 0 00437487 -handstamp n 1 2 @ + 1 0 03488887 -handstand n 1 2 @ %p 1 1 00436187 -handwear n 1 2 @ ~ 1 0 03490324 -handwheel n 2 3 @ ~ #p 2 0 03490649 03490449 -handwork n 1 1 @ 1 0 03485655 -handwriting n 2 5 @ ~ + ; - 2 1 06403393 00614730 -handwriting_expert n 1 1 @ 1 0 10144188 -handy n 1 1 @ 1 0 11027885 -handyman n 1 1 @ 1 1 10159289 -hang n 3 3 @ ~ + 3 0 05624254 04931837 00436339 -hang-up n 2 2 @ ; 2 0 05705484 05691144 -hang_glider n 2 1 @ 2 0 10159533 03491032 -hang_gliding n 1 2 @ + 1 0 00303748 -hangar n 1 2 @ #p 1 0 02687821 -hangar_queen n 1 1 @ 1 0 03490784 -hangbird n 1 1 @ 1 0 01572489 -hangchow n 1 3 @ #p ; 1 0 08727606 -hanger n 2 3 @ ~ + 2 0 10159434 03490884 -hanger-on n 1 1 @ 1 0 10688671 -hanging n 3 3 @ ~ + 3 0 03491178 01164874 01017701 -hanging_chad n 1 1 @ 1 0 14904956 -hanging_fly n 1 2 @ #m 1 0 02163008 -hanging_gardens_of_babylon n 1 3 @ #m #p 1 0 03491491 -hanging_geranium n 1 2 @ #m 1 0 12687957 -hanging_wall n 1 2 @ #p 1 0 09301625 -hangman n 1 1 @ 1 0 10159615 -hangman's_halter n 1 3 @ #p %p 1 0 03491724 -hangman's_rope n 1 3 @ #p %p 1 0 03491724 -hangnail n 1 1 @ 1 0 05584746 -hangout n 1 3 @ ~ + 1 1 08581503 -hangover n 3 1 @ 3 1 14447165 10180791 01022292 -hangzhou n 1 3 @ #p ; 1 0 08727606 -hangzhou_bay n 1 1 @ 1 0 09301738 -hani n 1 1 @ 1 0 06932803 -hank n 1 2 @ ~ 1 0 03491988 -hank_aaron n 1 1 @ 1 0 10807016 -hank_panky n 1 1 @ 1 0 00846432 -hank_williams n 1 1 @ 1 0 11390364 -hankering n 1 2 @ + 1 0 07486922 -hankey n 1 2 @ ~ 1 0 03485794 -hankie n 1 2 @ ~ 1 0 03485794 -hanks n 1 1 @ 1 0 11028074 -hanky n 1 2 @ ~ 1 0 03485794 -hanky_panky n 1 1 @ 1 0 06760722 -hannah_arendt n 1 1 @ 1 0 10821699 -hannibal n 2 2 @ #p 2 0 11028196 09106614 -hannover n 1 3 @ #m #p 1 0 08773679 -hannukah n 1 3 @ #p ; 1 0 15199033 -hanoi n 1 2 @ #p 1 0 09164095 -hanover n 2 5 @ #m #p %m + 2 0 08773679 08154960 -hanoverian n 2 3 @ #m + 2 0 10159852 09704368 -hanoverian_line n 1 2 @ %m 1 0 08154960 -hans_adolf_krebs n 1 1 @ 1 0 11110617 -hans_albrecht_bethe n 1 1 @ 1 0 10850273 -hans_arp n 1 1 @ 1 0 10824146 -hans_bethe n 1 1 @ 1 0 10850273 -hans_c._j._gram n 1 1 @ 1 0 11010936 -hans_christian_andersen n 1 1 @ 1 0 10817102 -hans_christian_oersted n 1 1 @ 1 0 11212426 -hans_conrad_julius_reiter n 1 1 @ 1 0 11257697 -hans_eysenck n 1 1 @ 1 0 10964261 -hans_fischer n 1 1 @ 1 0 10971852 -hans_geiger n 1 1 @ 1 0 10993507 -hans_holbein n 2 1 @ 2 0 11056195 11056060 -hans_jurgen_eysenck n 1 1 @ 1 0 10964261 -hans_zinsser n 1 1 @ 1 0 11407302 -hansard n 1 1 @ 1 0 06508579 -hanseatic_league n 1 2 @ %m 1 0 08304135 -hansen's_disease n 1 3 @ ~ %p 1 0 14136187 -hansom n 1 1 @ 1 0 03492087 -hansom_cab n 1 1 @ 1 0 03492087 -hanukah n 1 3 @ #p ; 1 0 15199033 -hanukkah n 1 3 @ #p ; 1 1 15199033 -hanuman n 2 1 @ 2 0 09526367 02488415 -hao n 1 2 @ #p 1 0 13674994 -haoma n 1 2 @ #m 1 0 13237988 -hap n 1 2 @ + 1 0 07314277 -hapax_legomenon n 1 1 @ 1 0 06294584 -haphazardness n 1 3 @ ~ + 1 0 04771332 -haphtarah n 1 1 @ 1 0 06453119 -haphtorah n 1 1 @ 1 0 06453119 -haploid n 1 3 @ + ; 1 0 01320314 -haploidy n 1 1 @ 1 0 14570761 -haplopappus n 1 3 @ #m %m 1 0 11975853 -haplopappus_acaulis n 1 2 @ #m 1 0 12019375 -haplopappus_phyllocephalus n 1 2 @ #m 1 0 11976314 -haplopappus_spinulosus n 1 2 @ #m 1 0 11976511 -haplosporidia n 1 3 @ #m %m 1 0 01426466 -haplosporidian n 1 2 @ #m 1 0 01426625 -haplotype n 1 2 @ ; 1 0 05439582 -happening n 1 3 @ ~ + 1 1 07283608 -happenstance n 1 1 @ 1 0 07316999 -happiness n 2 5 ! @ ~ = + 2 2 13987423 07526757 -happy_chance n 1 1 @ 1 0 07316856 -happy_event n 1 2 @ ; 1 0 07320894 -happy_hour n 1 1 @ 1 0 15229019 -hapsburg n 1 1 @ 1 0 08155302 -haptic_sensation n 1 2 @ ~ 1 0 05723210 -haptoglobin n 1 1 @ 1 0 14734625 -hara-kiri n 1 2 @ ; 1 0 00223362 -harakat_al-jihad_al-islami_al-filastini n 1 2 @ ; 1 0 08037118 -harakat_ul-jihad-i-islami n 1 2 @ ; 1 0 08022666 -harakiri n 1 2 @ ; 1 0 00223362 -harangue n 1 3 @ ~ + 1 1 07242912 -haranguer n 1 2 @ + 1 0 10159714 -harare n 1 2 @ #p 1 0 09167505 -harasser n 2 2 @ + 2 0 10161178 10160012 -harassing_fire n 1 1 @ 1 0 00991336 -harassment n 2 3 @ ~ + 2 0 07519040 00419644 -harbinger n 1 2 @ + 1 0 06802571 -harbor n 2 5 @ ~ #p %p + 2 1 08639058 03492250 -harbor_patrol n 1 1 @ 1 0 08329010 -harbor_porpoise n 1 1 @ 1 0 02070624 -harbor_seal n 1 2 @ #m 1 0 02079851 -harborage n 1 3 @ + ; 1 0 08644045 -harbour n 2 5 @ ~ #p %p + 2 0 08639058 03492250 -harbourage n 1 3 @ + ; 1 0 08644045 -hard-boiled_egg n 1 2 @ ~ 1 0 07841639 -hard-cooked_egg n 1 2 @ ~ 1 0 07841639 -hard-on n 1 1 @ 1 0 14038185 -hard-shell_clam n 2 5 @ ~ #m #p %p 2 0 07786856 01958038 -hard-shell_crab n 1 1 @ 1 0 01978010 -hard-skinned_puffball n 1 3 @ ~ #m 1 0 12969131 -hard_beech n 1 2 @ #m 1 0 12267534 -hard_candy n 1 2 @ ~ 1 0 07598734 -hard_cash n 1 2 @ ~ 1 0 13386614 -hard_cheese n 1 2 @ ; 1 0 14476205 -hard_cider n 1 2 @ %s 1 0 07921615 -hard_clam n 1 4 @ ~ #m %p 1 0 01958038 -hard_coal n 1 1 @ 1 0 14814921 -hard_copy n 1 2 @ ; 1 0 06391566 -hard_core n 1 1 @ 1 0 08406361 -hard_currency n 2 2 @ ~ 2 0 13386882 13386614 -hard_disc n 1 3 @ ~ #p 1 0 03492542 -hard_disk n 1 3 @ ~ #p 1 0 03492542 -hard_drink n 1 2 @ ~ 1 0 07901587 -hard_drive n 1 3 @ %p ; 1 0 03209666 -hard_drug n 1 3 ! @ ~ 1 0 03492717 -hard_fern n 1 3 @ ~ #m 1 0 13185134 -hard_hat n 2 1 @ 2 0 09959527 03492922 -hard_knocks n 1 2 @ ~ 1 0 14475661 -hard_lead n 2 2 @ ~ 2 0 14905197 14905076 -hard_line n 1 1 @ 1 0 06196442 -hard_liquor n 1 2 @ ~ 1 0 07901587 -hard_news n 1 1 @ 1 0 06684052 -hard_palate n 1 2 @ #p 1 0 05309591 -hard_right n 1 1 @ 1 0 08417099 -hard_roe n 1 2 @ ~ 1 0 07799278 -hard_roll n 1 1 @ 1 0 07691758 -hard_rubber n 1 1 @ 1 0 15007534 -hard_rush n 1 1 @ 1 0 11744251 -hard_sauce n 1 1 @ 1 0 07830690 -hard_sell n 1 1 @ 1 0 01101571 -hard_shoulder n 1 2 @ ; 1 0 03493079 -hard_solder n 1 1 @ 1 0 14718483 -hard_steel n 1 1 @ 1 0 14905333 -hard_tick n 1 3 @ ~ #m 1 0 01776705 -hard_time n 2 1 @ 2 1 14409880 15224978 -hard_times n 1 1 @ 1 1 15123512 -hard_water n 1 2 ! @ 1 0 14905422 -hard_wheat n 1 1 @ 1 0 12142450 -hard_worker n 1 1 @ 1 1 10609556 -hardback n 1 2 @ + 1 0 03492391 -hardbake n 1 1 @ 1 1 07598622 -hardball n 2 2 ! @ 2 0 06195418 00474769 -hardboard n 1 1 @ 1 0 15102455 -hardcover n 1 2 @ + 1 0 03492391 -hardenbergia n 1 3 @ #m %m 1 0 12533992 -hardenbergia_comnptoniana n 1 2 @ #m 1 0 12534208 -hardening n 3 4 @ ~ #p + 3 0 14364432 13491060 00402789 -hardening_of_the_arteries n 1 2 @ ~ 1 0 14108324 -hardheads n 1 1 @ 1 0 11948656 -hardheartedness n 1 3 @ ~ + 1 0 07506149 -hardihood n 1 3 @ ~ = 1 0 04858785 -hardiness n 2 4 @ ~ = + 2 0 05031012 04858785 -harding n 1 1 @ 1 0 11028446 -harding_grass n 1 2 @ #m 1 0 12130160 -hardinggrass n 1 2 @ #m 1 0 12130160 -hardliner n 1 1 @ 1 0 10160188 -hardness n 5 5 ! @ ~ = + 5 0 04937848 04937587 04844625 04710588 04639732 -hardpan n 1 1 @ 1 0 14845578 -hardship n 3 2 @ ~ 3 2 14475661 04710127 07336763 -hardstem_bulrush n 1 2 @ #m 1 0 12153033 -hardstemmed_bulrush n 1 2 @ #m 1 0 12153033 -hardtack n 2 1 @ 2 2 07694839 15100570 -hardtop n 1 1 @ 1 0 03493219 -hardware n 3 5 ! @ ~ #p ; 3 1 03493664 03493792 03493333 -hardware_error n 1 3 @ ~ ; 1 0 07299790 -hardware_store n 1 1 @ 1 1 03493911 -hardwareman n 1 1 @ 1 0 10216690 -hardwood n 1 1 @ 1 0 15100112 -hardy n 2 2 @ #m 2 0 11028780 11028675 -hare n 2 6 @ ~ #m #p %p + 2 1 02326432 07666521 -hare's-foot_bristle_fern n 1 1 @ 1 0 12952469 -hare's-foot_fern n 1 3 @ ~ #m 1 0 13188268 -hare_and_hounds n 1 1 @ 1 0 00460078 -hare_krishna n 3 3 @ #m %m 3 0 09685233 08097766 07035061 -hare_wallaby n 1 2 @ #m 1 0 01878335 -harebell n 2 2 @ #m 2 0 12459275 12037328 -haredi n 1 2 @ #m 1 0 08097531 -hareem n 1 1 @ 1 0 03494105 -harefoot n 1 1 @ 1 0 11029454 -harelip n 1 1 @ 1 0 14214355 -harem n 1 1 @ 1 1 03494105 -hargeisa n 1 2 @ #p 1 0 08999049 -hargreaves n 1 1 @ 1 0 11029005 -haricot n 2 1 @ 2 0 12557438 07727741 -haricot_vert n 1 1 @ 1 0 07728585 -haricots_verts n 1 1 @ 1 0 07728585 -harijan n 1 1 @ 1 0 10739881 -harikari n 1 2 @ ; 1 0 00223362 -harkat-ul-jihad-e-islami n 1 2 @ ; 1 0 08022666 -harkat-ul-mujahidin n 1 2 @ ; 1 0 08022972 -harkat_ul-ansar n 1 2 @ ; 1 0 08022972 -harkat_ul-mujahedeen n 1 2 @ ; 1 0 08022972 -harlan_f._stone n 1 1 @ 1 0 11319810 -harlan_fisk_stone n 1 1 @ 1 0 11319810 -harlan_fiske_stone n 1 1 @ 1 0 11319244 -harlan_stone n 1 1 @ 1 0 11319810 -harlean_carpenter n 1 1 @ 1 0 11029132 -harlem n 1 2 @ #p 1 1 09121334 -harlem_renaissance n 1 1 @ 1 0 15261306 -harlem_river n 1 2 @ #p 1 0 09123538 -harlequin n 1 1 @ 1 0 10160280 -harlequin-snake n 1 2 @ ~ 1 0 01745484 -harlequin_opal n 1 1 @ 1 0 14905607 -harlequinade n 1 2 @ ~ 1 0 00513401 -harley_granville-barker n 1 1 @ 1 0 11011764 -harley_street n 1 2 @ #p 1 0 08581122 -harlot n 1 2 @ ~ 1 0 10485440 -harlotry n 1 1 @ 1 0 00748155 -harlow n 1 1 @ 1 0 11029132 -harlow_shapley n 1 1 @ 1 0 11295828 -harm n 3 3 @ ~ + 3 3 14285662 07420770 00403092 -harmattan n 1 1 @ 1 0 11438756 -harmfulness n 2 3 @ ~ + 2 0 05166072 04790774 -harmonic n 2 3 @ ~ + 2 0 05719804 04988078 -harmonic_analysis n 1 1 @ 1 0 06014278 -harmonic_law n 1 1 @ 1 0 05880187 -harmonic_mean n 1 2 @ ; 1 0 06024576 -harmonic_motion n 1 2 @ ~ 1 0 07349880 -harmonic_progression n 1 2 @ ; 1 0 08461424 -harmonica n 1 1 @ 1 0 03494278 -harmonics n 1 1 @ 1 0 06111253 -harmoniousness n 2 3 @ ~ + 2 0 04984351 04713118 -harmonisation n 2 3 @ ~ + 2 0 07027458 01253778 -harmoniser n 2 2 @ + 2 0 10160624 10160412 -harmonium n 1 1 @ 1 0 03494537 -harmonization n 2 3 @ ~ + 2 0 07027458 01253778 -harmonizer n 2 2 @ + 2 0 10160624 10160412 -harmony n 5 4 ! @ ~ + 5 3 04713118 07027180 13969243 07180183 04984180 -harmsworth n 1 1 @ 1 0 11029298 -harness n 2 4 @ #p %p + 2 2 03495039 03494706 -harness_horse n 1 2 @ ~ 1 0 02386014 -harness_race n 1 1 @ 1 0 07461956 -harness_racing n 1 1 @ 1 0 07461956 -harnessed_antelope n 1 3 @ ~ #m 1 0 02424695 -harold_clayton_lloyd n 1 1 @ 1 0 11136214 -harold_clayton_urey n 1 1 @ 1 0 11357514 -harold_harefoot n 1 1 @ 1 0 11029454 -harold_hart_crane n 1 1 @ 1 0 10914331 -harold_hirschsprung n 1 1 @ 1 0 11052186 -harold_i n 1 1 @ 1 0 11029454 -harold_ii n 1 1 @ 1 0 11029637 -harold_kroto n 1 1 @ 1 0 11111335 -harold_lloyd n 1 1 @ 1 0 11136214 -harold_nicolson n 1 1 @ 1 0 11206544 -harold_pinter n 1 1 @ 1 0 11235619 -harold_urey n 1 1 @ 1 0 11357514 -harold_w._kroto n 1 1 @ 1 0 11111335 -harp n 3 3 @ ~ + 3 1 03495258 03495570 03494278 -harp_seal n 1 2 @ #m 1 0 02080146 -harper n 1 2 @ + 1 0 10160770 -harper's_ferry n 1 2 @ #p 1 0 09156395 -harpers_ferry n 1 2 @ #p 1 0 09156395 -harpia n 1 3 @ #m %m 1 0 01613909 -harpia_harpyja n 1 2 @ #m 1 0 01614038 -harpist n 1 2 @ + 1 0 10160770 -harpo n 1 2 @ #m 1 0 11161045 -harpoon n 1 4 @ #m %p + 1 0 03495671 -harpoon_gun n 1 1 @ 1 0 03495941 -harpoon_line n 1 2 @ #p 1 0 03496042 -harpoon_log n 1 1 @ 1 0 03496183 -harpooneer n 1 2 @ + 1 0 10160913 -harpooner n 1 2 @ + 1 0 10160913 -harpsichord n 1 3 @ ~ + 1 0 03496296 -harpsichordist n 1 3 @ ~ + 1 0 10161047 -harpulla n 1 1 @ 1 0 12743976 -harpullia n 1 3 @ ~ #m 1 0 12743823 -harpullia_cupanioides n 1 1 @ 1 0 12743976 -harpullia_pendula n 1 1 @ 1 0 12744142 -harpy n 4 3 @ #m ; 4 0 10758337 09496099 02140491 01614038 -harpy_bat n 1 2 @ #m 1 0 02140491 -harpy_eagle n 1 2 @ #m 1 1 01614038 -harquebus n 1 1 @ 1 0 02742070 -harridan n 1 1 @ 1 0 10161273 -harrier n 3 4 @ ~ #m + 3 0 10160012 02090129 01609751 -harrier_eagle n 1 2 @ #m 1 0 01610552 -harriet_beecher_stowe n 1 1 @ 1 0 11320405 -harriet_elizabeth_beecher_stowe n 1 1 @ 1 0 11320405 -harriet_tubman n 1 1 @ 1 0 11350959 -harriet_wilson n 1 1 @ 1 0 11392368 -harriman n 2 1 @ 2 0 11030025 11029888 -harris n 6 1 @ 6 0 11031257 11031016 11030855 11030679 11030395 11030260 -harris_tweed n 1 2 @ ; 1 0 03496486 -harrisburg n 1 2 @ #p 1 0 09135733 -harrisia n 1 2 @ #m 1 0 11847615 -harrison n 4 2 @ #m 4 0 11031995 11031842 11031668 11031420 -harrod n 2 1 @ 2 0 11032359 11032158 -harrow n 1 3 @ ~ + 1 0 03496612 -harry_bridges n 1 1 @ 1 0 10864064 -harry_f._klinefelter n 1 1 @ 1 0 11107901 -harry_fitch_kleinfelter n 1 1 @ 1 0 11107901 -harry_hotspur n 1 1 @ 1 0 11229499 -harry_houdini n 1 1 @ 1 0 11061317 -harry_lauder n 1 1 @ 1 0 11118886 -harry_lillis_crosby n 1 1 @ 1 0 10916731 -harry_s_truman n 1 1 @ 1 0 11349739 -harry_sinclair_lewis n 1 1 @ 1 0 11130474 -harry_stack_sullivan n 1 1 @ 1 0 11324785 -harry_truman n 1 1 @ 1 0 11349739 -harshness n 4 3 @ ~ + 4 1 04949066 04988666 04845475 04639732 -hart n 3 1 @ 3 0 11032700 11032541 02431337 -hart's-tongue n 2 2 @ #m 2 0 13198482 13183056 -hart's-tongue_fern n 3 2 @ #m 3 0 13198482 13183056 13174823 -hart_crane n 1 1 @ 1 0 10914331 -harte n 1 1 @ 1 0 11032840 -hartebeest n 1 2 @ #m 1 0 02422106 -hartford n 1 2 @ #p 1 0 09069190 -hartford_fern n 1 1 @ 1 0 12956367 -hartley n 1 1 @ 1 0 11033003 -harum-scarum n 1 3 @ ~ + 1 0 09991530 -harvard n 2 3 @ #m #p 2 1 03496749 11033159 -harvard_university n 1 3 @ #m #p 1 1 03496749 -harvery_williams_cushing n 1 1 @ 1 0 10918834 -harvest n 4 4 @ ~ #p + 4 1 13085864 11414257 01015310 00921790 -harvest-lice n 1 1 @ 1 0 12623077 -harvest_fly n 1 2 @ #m 1 0 02257003 -harvest_home n 1 2 @ ~ 1 0 01015310 -harvest_mite n 1 2 @ #m 1 0 01781071 -harvest_moon n 1 1 @ 1 0 15207770 -harvest_mouse n 2 2 @ #m 2 0 02336275 02332447 -harvest_time n 1 2 @ #p 1 0 00921790 -harvester n 2 3 @ ~ + 2 0 10161363 03496892 -harvestfish n 1 2 @ #m 1 0 02633977 -harvesting n 1 3 @ ~ + 1 0 01015310 -harvestman n 1 2 @ #m 1 0 01770081 -harvey n 1 1 @ 1 0 11033358 -harvey_cushing n 1 1 @ 1 0 10918834 -harvey_wallbanger n 1 1 @ 1 0 07915366 -has-been n 1 1 @ 1 0 10161521 -haschisch n 1 2 @ #p 1 0 03497182 -hasdrubal n 1 1 @ 1 0 11033631 -hasek n 1 1 @ 1 0 11033870 -hash n 2 4 @ ~ #p + 2 0 07869391 03497182 -hash_head n 1 1 @ 1 0 10161622 -hash_house n 1 1 @ 1 0 03497100 -hash_mark n 1 1 @ 1 1 06884954 -hasheesh n 1 2 @ #p 1 0 03497182 -hashemite_kingdom_of_jordan n 1 6 @ #m #p %m %p - 1 0 08927186 -hashimoto's_disease n 1 1 @ 1 0 14220998 -hashish n 1 2 @ #p 1 0 03497182 -hashmark n 1 1 @ 1 0 06884954 -hasid n 1 2 @ #m 1 0 10161695 -hasidim n 1 2 @ %m 1 0 08094866 -hasidism n 2 3 @ ~ %m 2 0 08094866 06234257 -haslet n 1 1 @ 1 0 07671953 -hasp n 1 2 @ + 1 1 03497352 -hassam n 1 1 @ 1 0 11033992 -hassel n 1 1 @ 1 0 11034167 -hassid n 1 2 @ #m 1 0 10161695 -hassidim n 1 2 @ %m 1 0 08094866 -hassidism n 1 2 @ ~ 1 0 06234257 -hassium n 1 1 @ 1 0 14639795 -hassle n 2 2 @ + 2 0 07372565 01172441 -hassock n 2 2 @ ; 2 0 03858418 03497531 -hastate_leaf n 1 1 @ 1 0 13158258 -haste n 3 3 @ ~ + 3 3 05060189 00555648 14451189 -hastinapura n 1 1 @ 1 0 06463559 -hastiness n 2 3 @ ~ + 2 0 05060189 04662858 -hastings n 3 3 @ #p ; 3 0 11034307 08883476 01280514 -hasty_defence n 1 1 @ 1 0 00961177 -hasty_defense n 1 1 @ 1 0 00961177 -hasty_pudding n 2 2 @ ; 2 0 07703889 07703599 -hat n 2 4 @ ~ %p + 2 1 03497657 00721141 -hat_shop n 1 1 @ 1 0 03766508 -hat_trick n 1 2 @ ; 1 0 00190579 -hatband n 1 2 @ #p 1 0 03498316 -hatbox n 1 1 @ 1 0 03498441 -hatch n 3 4 @ ~ #p + 3 0 13491464 04681797 03498536 -hatchback n 2 1 @ 2 0 03498781 03498662 -hatchback_door n 1 1 @ 1 0 03498662 -hatcheck_girl n 1 1 @ 1 0 09913240 -hatchel n 1 1 @ 1 0 03498866 -hatchery n 1 2 @ + 1 0 08581299 -hatchet n 2 2 @ ~ 2 0 04449966 03498962 -hatchet_job n 1 2 @ ~ 1 0 06719579 -hatchet_man n 2 1 @ 2 0 10162016 10161867 -hatching n 2 2 @ + 2 1 13491464 04681797 -hatchling n 1 1 @ 1 0 01318279 -hatchway n 1 3 @ ~ %p 1 1 03499142 -hate n 1 4 ! @ ~ + 1 1 07546465 -hate_mail n 1 1 @ 1 0 08463509 -hatefulness n 1 2 @ + 1 0 04781755 -hatemonger n 1 1 @ 1 0 10162104 -hater n 1 3 @ ~ + 1 1 10162194 -hatful n 2 2 @ ~ 2 0 13774404 13767455 -hatha_yoga n 1 1 @ 1 0 00631168 -hathaway n 1 1 @ 1 0 11034485 -hatiora n 1 3 @ #m %m 1 0 11847841 -hatiora_gaertneri n 1 2 @ #m 1 0 11848009 -hatmaker n 1 1 @ 1 0 10162354 -hatpin n 1 1 @ 1 0 03499354 -hatrack n 1 1 @ 1 0 03059103 -hatred n 1 2 @ ~ 1 1 07546465 -hatter n 1 2 @ + 1 0 10162354 -hatteras_island n 1 2 @ #p 1 0 09127701 -hattiesburg n 1 2 @ #p 1 0 09104894 -hauberk n 1 1 @ 1 0 03499468 -haughtiness n 1 3 @ ~ + 1 0 04887912 -haul n 2 3 @ ~ + 2 1 00115036 13755822 -haulage n 1 3 @ ~ + 1 0 00115036 -hauler n 1 3 @ ~ + 1 0 10162507 -haulier n 1 2 @ ~ 1 0 10162507 -hauling n 1 3 @ ~ + 1 0 01105909 -haulm n 1 1 @ 1 0 13163649 -haunch n 2 2 @ #p 2 2 05556472 02463810 -haunt n 1 3 @ ~ + 1 1 08581503 -hausa n 2 1 @ 2 0 09725000 06982697 -hausen n 1 3 @ #m %p 1 0 02640857 -hausmannite n 1 2 @ %s 1 0 14678068 -haussa n 2 1 @ 2 0 09725000 06982697 -haustorium n 1 1 @ 1 0 11686049 -hautbois n 1 2 @ ~ 1 0 03838899 -hautboy n 1 2 @ ~ 1 0 03838899 -haute-normandie n 1 2 @ #p 1 0 08942508 -haute_couture n 1 1 @ 1 0 05751063 -haute_cuisine n 1 2 @ ; 1 0 07571765 -hauteur n 1 2 @ ~ 1 0 04887912 -havana n 1 2 @ #p 1 0 08750612 -havasupai n 2 1 @ 2 0 09656077 06922777 -have n 1 3 @ ~ + 1 0 10529231 -have-not n 1 2 @ ~ 1 0 10453357 -havel n 1 1 @ 1 0 11034596 -havelock n 1 1 @ 1 0 03499611 -haven n 2 4 @ ~ #p %p 2 1 03499796 08639058 -haverhill_fever n 1 1 @ 1 0 14192672 -haversack n 1 2 @ ~ 1 1 02769748 -haversian_canal n 1 1 @ 1 0 05386139 -havoc n 1 1 @ 1 1 00554107 -haw n 2 3 @ ~ #m 2 0 12626353 05314834 -haw-haw n 2 1 @ 2 0 07127911 04356423 -hawai'i n 1 4 @ #p %p - 1 0 09078231 -hawaii n 2 5 @ #p %p + - 2 2 09078231 09079505 -hawaii_island n 1 3 @ #p %p 1 0 09079505 -hawaii_standard_time n 1 1 @ 1 0 15133069 -hawaii_time n 1 1 @ 1 0 15133069 -hawaii_volcanoes_national_park n 1 2 @ #p 1 0 08605863 -hawaiian n 2 4 @ ~ + ; 2 1 06938493 09742569 -hawaiian_capital n 1 2 @ #p 1 0 09078784 -hawaiian_dancing n 1 1 @ 1 0 00542458 -hawaiian_guitar n 1 1 @ 1 0 03499907 -hawaiian_honeycreeper n 1 3 @ ~ #m 1 0 01544704 -hawaiian_islands n 1 3 @ #p %p 1 1 09079153 -hawala n 1 2 @ ; 1 0 08422247 -hawfinch n 1 2 @ #m 1 0 01540832 -hawk n 3 5 ! @ ~ #m + 3 1 01605630 10162644 03787164 -hawk's-beard n 1 2 @ #m 1 0 11959259 -hawk's-beards n 1 2 @ #m 1 0 11959259 -hawk_moth n 1 3 @ ~ #m 1 0 02298541 -hawk_nose n 1 1 @ 1 1 05598982 -hawk_owl n 1 2 @ #m 1 0 01624537 -hawkbill n 1 2 @ #m 1 0 01664990 -hawkbit n 1 3 @ ~ #m 1 0 11988893 -hawker n 2 3 @ ~ + 2 1 10411551 10076604 -hawkeye_state n 1 3 @ #p %p 1 0 09086173 -hawking n 2 2 @ + 2 0 11034874 01116968 -hawkins n 2 1 @ 2 0 11035132 11035017 -hawkishness n 1 4 ! @ ~ + 1 0 06221790 -hawkmoth n 1 3 @ ~ #m 1 0 02298541 -hawksbill n 1 2 @ #m 1 0 01664990 -hawksbill_turtle n 1 2 @ #m 1 0 01664990 -hawkshaw n 1 2 @ ; 1 0 10011785 -hawkweed n 2 3 @ ~ #m 2 0 12003696 11982115 -hawkyns n 1 1 @ 1 0 11035132 -haworth n 1 1 @ 1 0 11035363 -hawse n 1 1 @ 1 0 03500090 -hawsehole n 1 1 @ 1 0 03500090 -hawsepipe n 1 1 @ 1 0 03500090 -hawser n 1 1 @ 1 0 03500209 -hawser_bend n 1 1 @ 1 0 03500295 -hawthorn n 1 3 @ ~ #m 1 0 12626353 -hawthorne n 1 1 @ 1 0 11035618 -hay n 1 3 @ ~ #s 1 1 07802026 -hay-scented n 1 2 @ #m 1 0 13189428 -hay-scented_fern n 1 2 @ #m 1 0 13189428 -hay_bacillus n 1 1 @ 1 0 01350485 -hay_bale n 1 1 @ 1 0 03500389 -hay_conditioner n 1 1 @ 1 0 03500699 -hay_fever n 1 1 @ 1 1 14534199 -hayastan n 1 6 @ #m #p %m %p - 1 0 09017526 -haycock n 1 1 @ 1 0 07963330 -haydn n 2 1 @ 2 0 11035780 07278582 -hayek n 1 1 @ 1 0 11035957 -hayes n 2 1 @ 2 0 11036405 11036140 -hayfield n 1 1 @ 1 1 08570634 -hayfork n 1 1 @ 1 0 03500457 -haying n 2 1 @ 2 0 01015477 00921926 -haying_time n 1 1 @ 1 1 00921926 -hayloft n 1 2 @ #p 1 0 03500557 -haym_salomon n 1 1 @ 1 0 11279433 -haymaker n 2 1 @ 2 0 03500699 00135637 -haymaking n 2 1 @ 2 0 00623052 00622957 -haymow n 2 3 @ #p %s 2 0 13775939 03500557 -hayrack n 2 1 @ 2 0 03500971 03500838 -hayrick n 1 2 @ ~ 1 0 07963208 -hayrig n 1 1 @ 1 0 03500838 -hays n 3 2 @ #p 3 0 11036668 11036521 09088301 -hayseed n 1 1 @ 1 0 10804102 -haystack n 1 2 @ ~ 1 1 07963208 -hayti n 1 3 @ #p %p 1 0 08751317 -haywire n 1 1 @ 1 0 03501068 -haywood n 1 1 @ 1 0 11036911 -hazan n 1 1 @ 1 0 09891864 -hazard n 3 4 @ ~ #p + 3 2 14541852 11418138 03501152 -hazard_insurance n 1 1 @ 1 0 13346630 -hazardia n 1 3 @ #m %m 1 0 11976715 -hazardia_cana n 1 2 @ #m 1 0 11976933 -hazardousness n 1 2 @ + 1 0 14541538 -haze n 2 2 @ + 2 2 11465888 05684561 -hazel n 4 7 @ ~ #m #s %s %p + 4 0 13144084 12289115 12288823 04972603 -hazel_alder n 1 2 @ #m 1 0 12285900 -hazel_mouse n 1 2 @ #m 1 0 02353172 -hazel_tree n 1 3 @ #m %s 1 0 13144084 -hazelnut n 2 6 @ ~ #m #p %s %p 2 0 12288823 07772788 -hazelnut_tree n 1 5 @ ~ #m %s %p 1 0 12288823 -hazelwood n 1 1 @ 1 0 12316982 -haziness n 2 2 @ + 2 0 04824695 04704116 -hazlitt n 1 1 @ 1 0 11037157 -hazmat n 1 1 @ 1 0 14586119 -hb n 1 4 @ ~ #s %s 1 0 15024240 -hcfc n 1 1 @ 1 0 14613130 -hcg n 1 1 @ 1 0 14749030 -hdl n 1 2 @ %s 1 0 14907349 -hdl_cholesterol n 1 2 @ #s 1 0 15058755 -hdtv n 1 1 @ 1 0 06278475 -he n 2 2 @ #m 2 0 14639921 06837146 -he-goat n 1 1 @ 1 0 02416880 -he-huckleberry n 1 2 @ #m 1 0 12241192 -he-man n 1 1 @ 1 0 10665587 -head n 33 7 ! @ ~ #p %p + ; 33 9 05538625 01318381 05611302 10162991 08482271 11495607 08664184 08508449 06291809 14312481 13654380 13133786 10474645 10163354 10162780 09399592 09302031 09301844 08572467 07418822 07372779 06822034 06783768 06343971 05595837 05290756 04058721 03501811 03501614 03501520 03501288 03250279 00854876 -head-shrinker n 2 2 @ ~ 2 0 10488016 10163452 -head_ache n 1 2 @ ~ 1 0 14326607 -head_blight n 1 2 @ ~ 1 0 14217473 -head_cabbage n 2 2 @ ~ 2 0 11875938 07714571 -head_cabbage_plant n 1 2 @ ~ 1 0 11875938 -head_cold n 1 1 @ 1 0 14145759 -head_count n 1 1 @ 1 0 13592764 -head_covering n 1 2 @ ~ 1 1 03502331 -head_crash n 1 2 @ ; 1 0 07479144 -head_game n 1 1 @ 1 0 00754767 -head_gasket n 1 1 @ 1 0 03503477 -head_gate n 2 2 @ #p 2 0 04244615 03503567 -head_honcho n 1 3 @ ~ ; 1 0 09853881 -head_lettuce n 1 3 @ #m %p 1 0 11986900 -head_lice n 1 1 @ 1 0 14454661 -head_linesman n 1 1 @ 1 0 10163900 -head_louse n 1 2 @ #m 1 0 02184589 -head_nurse n 1 1 @ 1 0 10164492 -head_of_hair n 1 2 @ #p 1 1 05256085 -head_of_household n 1 2 @ ~ 1 0 10164605 -head_of_state n 1 2 @ ~ 1 0 10164747 -head_register n 1 2 @ ~ 1 0 05127150 -head_restraint n 1 2 @ #p 1 0 03505207 -head_rhyme n 1 1 @ 1 0 07097094 -head_sea n 1 1 @ 1 0 11521534 -head_shop n 1 1 @ 1 0 03505764 -head_smut n 1 2 @ #m 1 0 13067672 -head_start n 1 1 @ 1 1 05157406 -head_teacher n 1 2 @ ~ 1 0 10474645 -head_tone n 1 2 @ ~ 1 0 05127150 -head_trip n 2 1 @ 2 0 07288385 01073097 -head_voice n 1 2 @ ~ 1 0 05127150 -head_word n 2 3 @ #p ; 2 0 06292154 06291809 -headache n 2 2 @ ~ 2 2 05832264 14326607 -headache_powder n 1 1 @ 1 0 02749169 -headband n 1 2 @ ~ 1 0 03502042 -headboard n 1 2 @ #p 1 0 03502200 -headcheese n 1 1 @ 1 0 07677071 -headcount n 1 1 @ 1 0 13592764 -headcounter n 1 1 @ 1 0 10451590 -headdress n 1 2 @ ~ 1 0 03502509 -header n 7 5 @ ~ #p + ; 7 0 06343971 03503233 03503097 03502897 03502777 00131485 00119893 -headfast n 1 1 @ 1 0 03503358 -headfish n 1 3 @ ~ #m 1 0 02656670 -headful n 2 1 @ 2 0 13767545 05255435 -headgear n 3 3 @ ~ #p 3 1 03502509 03503908 03503718 -headhunter n 2 2 @ ; 2 0 10163593 10163452 -heading n 3 4 @ ~ + ; 3 1 06343971 08680888 03239399 -headlamp n 1 4 @ ~ #p %p 1 0 03503997 -headland n 1 2 @ ~ 1 1 09399592 -headlight n 1 4 @ ~ #p %p 1 1 03503997 -headline n 1 4 @ ~ #p + 1 1 06344461 -headliner n 1 2 @ + 1 0 10163723 -headlinese n 1 1 @ 1 1 07070779 -headlock n 1 1 @ 1 0 00814106 -headman n 2 2 @ ~ 2 0 10164997 10164025 -headmaster n 1 3 @ ~ + 1 1 10164233 -headmastership n 1 2 @ + 1 0 00592894 -headmistress n 1 2 @ + 1 0 10164397 -headmistressship n 1 2 @ + 1 0 00592999 -headphone n 1 2 @ ~ 1 0 03261776 -headpiece n 2 2 @ #p 2 0 03506028 03504205 -headpin n 1 1 @ 1 0 03504293 -headquarters n 3 4 @ ~ %p ; 3 3 03504723 03504420 08404895 -headquarters_staff n 1 3 @ #p ; 1 0 08405124 -headrace n 1 1 @ 1 0 03505015 -headrest n 2 2 @ #p 2 0 03505207 03505133 -headroom n 2 1 @ 2 0 13778261 01020628 -heads-up n 1 1 @ 1 0 07225577 -headsail n 1 2 @ ~ 1 0 03505383 -headscarf n 1 2 @ ~ 1 0 03505504 -headset n 1 1 @ 1 0 03505667 -headshake n 1 1 @ 1 0 00334711 -headshaking n 1 1 @ 1 0 00334711 -headship n 2 4 @ ~ + ; 2 0 00593219 00593108 -headshot n 3 2 @ #p 3 0 03505942 01264933 00124256 -headsman n 1 1 @ 1 1 10164997 -headspace n 1 1 @ 1 0 13757582 -headspring n 1 1 @ 1 0 08508449 -headstall n 1 2 @ #p 1 0 03506028 -headstand n 1 1 @ 1 1 00437639 -headstock n 1 1 @ 1 0 03506184 -headstone n 2 3 @ ~ #p 2 0 03615133 03455488 -headstream n 1 2 @ ~ 1 0 09302127 -headwaiter n 1 1 @ 1 0 09892513 -headwater n 1 1 @ 1 0 08508629 -headway n 2 1 @ 2 0 13778261 07372779 -headwind n 1 1 @ 1 0 11443173 -headword n 2 2 @ #p 2 0 06292154 06292000 -heal_all n 2 2 @ #m 2 0 12863234 12472559 -healer n 1 3 @ ~ + 1 1 10707233 -healing n 1 3 @ ~ + 1 1 13491616 -healing_herb n 1 2 @ #p 1 0 07817160 -health n 2 3 @ = + 2 1 14447908 13923779 -health_and_human_services n 1 2 @ %p 1 0 08133536 -health_care n 2 2 @ ~ 2 0 01088857 01059900 -health_care_delivery n 1 1 @ 1 0 01060101 -health_care_provider n 1 3 @ ~ #m 1 0 10165109 -health_check n 1 2 @ %p 1 0 00142361 -health_club n 1 2 @ ~ 1 0 03506370 -health_code n 1 2 @ ; 1 0 06669193 -health_facility n 1 2 @ ~ 1 0 03739518 -health_food n 1 2 @ - 1 0 07702362 -health_hazard n 1 2 @ ~ 1 0 14542320 -health_insurance n 1 2 @ ~ 1 0 13346773 -health_maintenance_organization n 1 1 @ 1 0 13349208 -health_problem n 1 2 @ ~ 1 1 14052046 -health_profession n 1 3 @ ~ %m 1 0 08112630 -health_professional n 1 3 @ ~ #m 1 0 10165109 -health_spa n 1 2 @ ~ 1 0 03506370 -healthcare n 1 1 @ 1 0 01059900 -healthcare_delivery n 1 1 @ 1 0 01060101 -healthcare_facility n 1 2 @ ~ 1 0 03739518 -healthfulness n 1 4 ! @ ~ + 1 0 04790070 -healthiness n 1 3 @ ~ + 1 0 14049711 -heap n 3 3 @ ~ + 3 2 07961480 13774404 02924554 -heaps n 1 1 @ 1 0 13777509 -hearer n 1 4 @ ~ #m + 1 1 10165448 -hearing n 6 5 @ ~ + ; - 6 4 01199697 14484778 08560785 00882159 07147267 05657718 -hearing_aid n 2 1 @ 2 0 03506727 03506560 -hearing_disorder n 1 2 @ ~ 1 0 14550797 -hearing_dog n 1 1 @ 1 0 02109391 -hearing_examiner n 1 1 @ 1 0 10165957 -hearing_impairment n 1 2 @ ~ 1 0 14550797 -hearing_loss n 1 2 @ ~ 1 0 14550987 -hearing_officer n 1 1 @ 1 1 10165957 -hearsay n 1 1 @ 1 0 07223450 -hearsay_evidence n 1 2 @ ; 1 0 06735922 -hearsay_rule n 1 1 @ 1 0 06654490 -hearse n 1 1 @ 1 0 03506880 -hearst n 1 1 @ 1 0 11037278 -heart n 10 6 @ ~ #m #p %p + 10 6 05919263 05388805 04857490 08523483 05921123 04624826 13865904 07651905 07544647 03507048 -heart-leaf n 2 2 @ #m 2 0 11802800 11802586 -heart-leaved_aster n 1 1 @ 1 0 11933257 -heart-lung_machine n 1 1 @ 1 0 03507658 -heart-to-heart n 1 2 @ + 1 0 07136315 -heart_and_soul n 1 2 @ ~ 1 0 05921123 -heart_attack n 1 2 @ %p 1 0 14112855 -heart_block n 1 1 @ 1 0 14362593 -heart_cherry n 2 2 @ ~ 2 0 12642435 07757602 -heart_disease n 1 2 @ ~ 1 1 14103288 -heart_failure n 1 2 @ ~ 1 0 14112255 -heart_line n 1 1 @ 1 0 13906936 -heart_massage n 1 2 @ #p 1 0 00659349 -heart_monitor n 1 2 @ %p 1 0 02962938 -heart_murmur n 1 2 @ ~ 1 0 14334814 -heart_muscle n 1 3 @ ~ #p 1 0 05389939 -heart_of_dixie n 1 5 @ #m #p %p - 1 0 09053185 -heart_pea n 1 1 @ 1 0 12743009 -heart_rate n 1 2 @ ~ 1 1 15280695 -heart_rhythm n 1 2 @ ~ 1 0 04768186 -heart_specialist n 1 1 @ 1 0 09894445 -heart_surgeon n 1 1 @ 1 0 09894445 -heart_surgery n 1 2 @ ~ 1 0 00675219 -heart_urchin n 1 2 @ #m 1 0 02319829 -heart_valve n 2 4 @ ~ #p %p 2 0 05395098 03507857 -heart_ventricle n 1 2 @ ~ 1 0 05391763 -heartache n 1 2 @ ~ 1 0 07535010 -heartbeat n 3 2 @ ~ 3 1 07400906 15247110 05195653 -heartbreak n 1 2 @ ~ 1 0 07535010 -heartbreaker n 2 1 @ 2 0 10166189 07476177 -heartburn n 1 1 @ 1 0 14335223 -heartburning n 1 1 @ 1 0 07549265 -hearth n 3 5 @ ~ #p %p ; 3 2 03346455 03507241 08581699 -hearth_money n 1 1 @ 1 0 13270760 -hearthrug n 1 1 @ 1 0 03507458 -hearthstone n 1 2 @ #p 1 0 03507554 -heartiness n 2 2 @ + 2 0 05030806 04867539 -heartland n 1 1 @ 1 0 08581897 -heartleaf n 2 2 @ #m 2 0 11802800 11802586 -heartleaf_arnica n 1 2 @ #m 1 0 11926976 -heartleaf_manzanita n 1 1 @ 1 0 12232114 -heartlessness n 1 3 @ ~ + 1 0 07506149 -heartrot n 1 1 @ 1 0 14280639 -hearts n 1 1 @ 1 0 00496599 -heartsease n 4 1 @ 4 0 12390681 12389130 12388143 07515790 -heartseed n 1 1 @ 1 0 12742878 -heartsickness n 1 2 @ + 1 0 07538395 -heartstrings n 1 1 @ 1 0 07545957 -heartthrob n 1 1 @ 1 0 10166313 -heartwood n 1 2 @ #s 1 0 13097752 -heat n 7 5 @ ~ #p %p + 7 5 11466043 05016171 05725527 04628192 14038264 07461288 03509025 -heat-seeking_missile n 1 2 @ ~ 1 0 03509843 -heat_barrier n 1 1 @ 1 0 05124792 -heat_content n 1 2 @ ; 1 0 05012272 -heat_dissipation n 1 1 @ 1 0 13491794 -heat_energy n 1 2 @ ~ 1 1 11466043 -heat_engine n 1 2 @ ~ 1 0 03507963 -heat_exchanger n 1 1 @ 1 0 03508485 -heat_exhaustion n 1 1 @ 1 0 14204253 -heat_flash n 1 1 @ 1 0 07412876 -heat_hyperpyrexia n 1 2 @ ~ 1 0 14204095 -heat_lamp n 1 1 @ 1 0 03509394 -heat_lightning n 1 1 @ 1 0 07413237 -heat_of_condensation n 1 1 @ 1 1 11471359 -heat_of_dissociation n 1 1 @ 1 1 11470621 -heat_of_formation n 1 1 @ 1 1 11470765 -heat_of_fusion n 1 1 @ 1 0 11471578 -heat_of_solidification n 1 1 @ 1 0 11471828 -heat_of_solution n 1 1 @ 1 0 11470933 -heat_of_sublimation n 1 1 @ 1 0 11471977 -heat_of_transformation n 1 2 @ ~ 1 0 11471097 -heat_of_vaporisation n 1 1 @ 1 0 11472131 -heat_of_vaporization n 1 1 @ 1 0 11472131 -heat_prostration n 1 1 @ 1 0 14204253 -heat_pump n 1 1 @ 1 0 03509608 -heat_rash n 1 1 @ 1 0 14322106 -heat_ray n 1 2 @ ~ 1 0 11472503 -heat_shield n 1 3 @ #p %p 1 0 03510072 -heat_sink n 1 1 @ 1 1 03510244 -heat_unit n 1 2 @ ~ 1 0 13609507 -heat_wave n 1 1 @ 1 0 11472612 -heater n 2 4 @ ~ + ; 2 1 03508101 00108181 -heath n 2 4 @ ~ #m ; 2 0 12226932 08504851 -heath_aster n 2 1 @ 2 0 11933728 11933099 -heath_family n 1 2 @ %m 1 0 12226322 -heath_hen n 2 1 @ 2 0 01798979 01796105 -heath_pea n 1 2 @ #m 1 0 12542240 -heath_violet n 1 1 @ 1 0 12388858 -heathen n 1 3 @ ~ + 1 0 10166394 -heathenism n 1 2 @ ~ 1 0 06224657 -heather n 2 2 @ #m 2 0 12233529 04958146 -heather_bell n 1 1 @ 1 0 12228387 -heather_mixture n 1 1 @ 1 0 04958146 -heathfowl n 1 1 @ 1 0 01795735 -heathland n 1 2 @ ; 1 0 08504851 -heating n 2 5 @ ~ #p %p + 2 1 13491876 03509025 -heating_element n 1 3 @ ~ #p 1 0 03508628 -heating_oil n 1 2 @ ~ 1 0 14686585 -heating_pad n 1 1 @ 1 0 03508881 -heating_plant n 1 4 @ ~ #p %p 1 0 03509025 -heating_system n 1 4 @ ~ #p %p 1 0 03509025 -heatstroke n 1 2 @ ~ 1 0 14204095 -heaume n 1 1 @ 1 0 03510384 -heave n 6 3 @ + ; 6 0 07370968 07350069 00324834 00226951 00116376 00105271 -heaven n 2 4 ! @ ~ + 2 1 08565506 05627785 -heavenly_body n 1 4 @ ~ #p - 1 1 09239740 -heavenly_city n 1 1 @ 1 0 05628193 -heavenly_jewel n 1 2 @ #m 1 0 09533668 -heavens n 1 2 @ %p 1 1 08521267 -heaver n 2 2 @ + 2 1 03510487 10166762 -heaves n 1 1 @ 1 0 14265350 -heavier-than-air_craft n 1 2 @ ~ 1 0 03510583 -heaviness n 5 4 ! @ ~ + 5 1 05027529 07532945 05206829 05136662 04711031 -heaving n 4 2 @ + 4 1 07370968 00834135 00324834 00105271 -heaviside n 1 1 @ 1 0 11037495 -heaviside_layer n 1 2 @ #p 1 0 08582613 -heavy n 2 1 @ 2 0 10167361 05929582 -heavy_cream n 1 1 @ 1 0 07847827 -heavy_hitter n 1 1 @ 1 0 10166902 -heavy_hydrogen n 1 1 @ 1 0 14641046 -heavy_lifting n 1 2 @ ; 1 0 00580190 -heavy_metal n 2 1 @ 2 0 14612077 07065149 -heavy_metal_music n 1 1 @ 1 0 07065149 -heavy_particle n 1 2 @ ~ 1 0 09215023 -heavy_spar n 1 2 @ %s 1 0 14678230 -heavy_swell n 1 1 @ 1 0 07344120 -heavy_water n 1 1 @ 1 0 14727508 -heavy_weapon n 1 4 @ ~ #p %p 1 0 02746365 -heavy_whipping_cream n 1 1 @ 1 0 07847585 -heavyheartedness n 1 2 @ + 1 0 07533492 -heavyweight n 5 1 @ 5 0 10167252 10167152 10167042 10129133 09938991 -hebbel n 1 1 @ 1 0 11037836 -hebdomad n 1 4 @ ~ %p + 1 0 15169873 -hebe n 1 2 @ ; 1 0 09560940 -hebei n 1 2 @ #p 1 0 08725926 -hebei_province n 1 2 @ #p 1 0 08725926 -hebephrenia n 1 2 @ + 1 0 14399438 -hebephrenic_schizophrenia n 1 1 @ 1 0 14399438 -hebetude n 1 1 @ 1 0 05681252 -hebraic_alphabet n 1 3 @ %m %p 1 0 06498569 -hebraism n 1 3 @ ~ #p 1 0 08094013 -hebraist n 1 2 @ + 1 0 10167448 -hebrew n 2 5 @ ~ #m + - 2 1 06987124 09681351 -hebrew_alphabet n 1 3 @ %m %p 1 0 06498569 -hebrew_calendar n 1 3 @ %p ; 1 0 15177866 -hebrew_lesson n 1 1 @ 1 0 00729825 -hebrew_script n 1 3 @ %m %p 1 0 06498569 -hebrew_scripture n 1 2 @ %p 1 0 06452363 -hebrews n 2 3 @ #p ; 2 0 08483935 06446476 -hebridean_islands n 1 3 @ #p %p 1 0 08893223 -hebridean_isles n 1 3 @ #p %p 1 0 08893223 -hebrides n 1 4 @ #p %p + 1 0 08893223 -hecate n 1 2 @ ; 1 0 09561755 -hecatomb n 1 1 @ 1 0 00227848 -hecht n 1 1 @ 1 0 11037966 -heckelphone n 1 1 @ 1 0 03510866 -heckle n 1 1 @ 1 0 03498866 -heckler n 1 2 @ + 1 0 10167565 -heckling n 1 2 @ + 1 0 01068633 -hectare n 1 2 @ %p 1 0 13613985 -hectogram n 1 3 @ #p %p 1 0 13724474 -hectograph n 1 2 @ + 1 0 03510987 -hectoliter n 1 3 @ #p %p 1 0 13624705 -hectolitre n 1 3 @ #p %p 1 0 13624705 -hectometer n 1 3 @ #p %p 1 0 13659604 -hectometre n 1 3 @ #p %p 1 0 13659604 -hector n 1 2 @ ; 1 0 09600031 -hector_berlioz n 1 1 @ 1 0 10847653 -hector_hevodidbon n 1 2 @ ; 1 0 11201386 -hector_hugh_munro n 1 1 @ 1 0 11196627 -hedeoma n 1 4 @ #m %m ; 1 0 12847749 -hedeoma_oil n 1 2 @ #s 1 0 12848212 -hedeoma_pulegioides n 1 3 @ #m %s 1 0 12847927 -hedera n 1 3 @ #m %m 1 0 11798851 -hedera_helix n 1 2 @ #m 1 0 11798978 -hedge n 3 3 @ ~ + 3 1 03511175 13344462 06761603 -hedge_bindweed n 1 2 @ #m 1 0 12825061 -hedge_fund n 1 1 @ 1 0 08071229 -hedge_garlic n 1 2 @ #m 1 0 11870418 -hedge_maple n 1 1 @ 1 0 12754648 -hedge_mustard n 1 2 @ #m 1 0 11897116 -hedge_nettle n 2 2 @ #m 2 0 12869061 12868880 -hedge_pink n 1 2 @ #m 1 0 11814584 -hedge_sparrow n 1 1 @ 1 0 01527347 -hedge_thorn n 1 1 @ 1 0 11771746 -hedge_trimmer n 1 1 @ 1 0 03511333 -hedge_violet n 1 1 @ 1 0 12390314 -hedgefund n 1 1 @ 1 0 08071229 -hedgehog n 2 4 @ ~ #m %p 2 0 02346627 01893825 -hedgehog_cactus n 1 1 @ 1 0 11845793 -hedgehog_cereus n 1 2 @ #m 1 0 11846312 -hedger n 3 2 @ + 3 0 10168012 10167838 10167740 -hedgerow n 1 2 @ ~ 1 0 03511175 -hedging n 2 2 @ + 2 0 13344462 06761603 -hediondilla n 1 3 @ #m %p 1 0 12723062 -hedjaz n 1 3 @ #p %p 1 0 08995515 -hedonism n 2 2 @ + 2 1 09183971 06160596 -hedonist n 1 3 @ ~ + 1 0 10168183 -hedysarum n 1 3 @ #m %m 1 0 12534453 -hedysarum_boreale n 1 2 @ #m 1 0 12534625 -hedysarum_coronarium n 1 2 @ #m 1 0 12534862 -hee-haw n 1 2 @ + 1 0 07127911 -heebie-jeebies n 1 2 @ ; 1 0 14375761 -heed n 1 4 @ ~ = + 1 1 05702726 -heedfulness n 1 4 ! @ = + 1 0 04663763 -heedlessness n 3 4 ! @ ~ + 3 0 05706375 04894204 04665543 -heel n 6 6 @ ~ #p %p + ; 6 2 03511426 05578095 09886220 07683973 03511949 03511786 -heel_counter n 1 2 @ #p 1 0 03116942 -heelbone n 1 2 @ #p 1 0 05274808 -hefa n 1 2 @ #p 1 0 08798062 -heft n 1 2 @ + 1 0 05027837 -heftiness n 2 2 @ + 2 0 05030418 05027837 -hegari n 1 1 @ 1 0 12138110 -hegel n 1 2 @ + 1 1 11038084 -hegelian n 1 1 @ 1 0 10168368 -hegemon n 1 1 @ 1 0 08177781 -hegemony n 1 1 @ 1 0 08361924 -hegira n 2 1 @ 2 0 00060548 00060414 -heidegger n 1 1 @ 1 0 11038293 -heidelberg_man n 1 1 @ 1 0 10168457 -heifer n 1 1 @ 1 0 02403740 -height n 4 3 @ ~ = 4 4 05137165 13940456 05002352 05131647 -heights n 1 1 @ 1 1 08584618 -heilong n 1 2 @ #p 1 0 09196103 -heilong_jiang n 1 2 @ #p 1 0 09196103 -heimdal n 1 2 @ ; 1 0 09580673 -heimdall n 1 2 @ ; 1 0 09580673 -heimdallr n 1 2 @ ; 1 0 09580673 -heimlich_maneuver n 1 1 @ 1 0 00833119 -heimlich_manoeuvere n 1 1 @ 1 0 00833119 -heinlein n 1 1 @ 1 0 11038505 -heinousness n 1 2 @ + 1 0 04830343 -heinrich_boell n 1 1 @ 1 0 10854627 -heinrich_engelhard_steinway n 1 1 @ 1 0 11315760 -heinrich_hertz n 1 1 @ 1 0 11046934 -heinrich_himmler n 1 1 @ 1 0 11050537 -heinrich_rudolph_hertz n 1 1 @ 1 0 11046934 -heinrich_schliemann n 1 1 @ 1 0 11285091 -heinrich_theodor_boell n 1 1 @ 1 0 10854627 -heinrich_von_kleist n 1 1 @ 1 0 11107436 -heinz n 1 1 @ 1 0 11038657 -heir n 2 2 @ ~ 2 1 10168584 10671613 -heir-at-law n 1 1 @ 1 0 10169008 -heir_apparent n 1 2 ! @ 1 0 10168837 -heir_presumptive n 1 2 ! @ 1 0 10169241 -heiress n 1 1 @ 1 0 10169147 -heirloom n 2 3 @ #p ; 2 0 13264794 13264688 -heisenberg n 1 1 @ 1 0 11038810 -heist n 2 3 @ + ; 2 0 00783063 00781912 -heitor_villa-lobos n 1 1 @ 1 0 11366548 -hejaz n 1 3 @ #p %p 1 0 08995515 -hejira n 2 1 @ 2 0 00060548 00060414 -hel n 1 2 @ ; 1 0 09580829 -hela n 1 2 @ ; 1 0 09580829 -helen n 1 2 @ ; 1 0 09600188 -helen_adams_keller n 1 1 @ 1 0 11099085 -helen_hayes n 1 1 @ 1 0 11036405 -helen_hunt_jackson n 1 1 @ 1 0 11076359 -helen_keller n 1 1 @ 1 0 11099085 -helen_laura_sumner_woodbury n 1 1 @ 1 0 11396000 -helen_maria_fiske_hunt_jackson n 1 1 @ 1 0 11076359 -helen_newington_wills n 1 1 @ 1 0 11188852 -helen_of_troy n 1 2 @ ; 1 0 09600188 -helen_porter_mitchell n 1 1 @ 1 0 11172045 -helen_traubel n 1 1 @ 1 0 11348047 -helen_wills n 1 1 @ 1 0 11188852 -helen_wills_moody n 1 1 @ 1 0 11188852 -helena n 1 2 @ #p 1 0 09109180 -helenium n 1 3 @ #m %m 1 0 11977125 -helenium_autumnale n 1 1 @ 1 0 11977512 -helenium_hoopesii n 1 1 @ 1 0 11977660 -helenium_puberulum n 1 1 @ 1 0 11977887 -heleodytes n 1 3 @ #m %m 1 0 01586170 -heliamphora n 1 3 @ #m %m 1 0 12781241 -helianthemum n 1 3 @ ~ #m 1 0 12375518 -helianthemum_canadense n 1 1 @ 1 0 12375769 -helianthemum_scoparium n 1 1 @ 1 0 12376240 -helianthus n 1 3 @ ~ #m 1 0 11978233 -helianthus_angustifolius n 1 1 @ 1 0 11978551 -helianthus_annuus n 1 2 @ %p 1 0 11978713 -helianthus_giganteus n 1 1 @ 1 0 11978961 -helianthus_laetiflorus n 1 1 @ 1 0 11979187 -helianthus_maximilianii n 1 1 @ 1 0 11979354 -helianthus_petiolaris n 1 1 @ 1 0 11979527 -helianthus_tuberosus n 1 2 @ %p 1 0 11979715 -helichrysum n 1 2 @ #m 1 0 11980088 -helichrysum_bracteatum n 1 1 @ 1 0 11980318 -helichrysum_secundiflorum n 1 2 @ #m 1 0 11999656 -helicidae n 1 3 @ #m %m 1 0 01944217 -helicon n 1 1 @ 1 0 03512030 -helicopter n 1 3 @ ~ %p 1 0 03512147 -helicteres n 1 3 @ #m %m 1 0 12199030 -helicteres_isora n 1 1 @ 1 0 12199399 -heliobacter n 1 1 @ 1 0 01351453 -heliobacter_pylori n 1 1 @ 1 0 01351688 -heliocentric_parallax n 1 2 @ ~ 1 0 11528636 -heliogram n 1 1 @ 1 0 06254371 -heliograph n 1 2 @ + 1 0 03512452 -heliogravure n 1 1 @ 1 0 03455802 -heliolatry n 1 1 @ 1 0 01046348 -heliometer n 1 1 @ 1 0 03512624 -heliopause n 1 1 @ 1 0 08501275 -heliophila n 1 2 @ #m 1 0 11888424 -heliopsis n 1 2 @ #m 1 0 11980682 -helios n 1 2 @ ; 1 0 09561137 -heliosphere n 1 3 @ #p %p 1 0 08501565 -heliotherapy n 1 1 @ 1 0 00662972 -heliothis n 1 3 @ #m %m 1 0 02296480 -heliothis_moth n 1 2 @ #m 1 0 02296612 -heliothis_zia n 2 2 @ #m 2 0 02310334 02296612 -heliotrope n 1 1 @ 1 0 14781631 -heliotropism n 1 1 @ 1 0 00862079 -heliotype n 1 1 @ 1 0 03510987 -heliozoa n 1 3 @ #m %m 1 0 01390627 -heliozoan n 1 2 @ #m 1 0 01390763 -heliport n 1 1 @ 1 0 03512830 -helipterum n 1 3 @ #m %m 1 0 11980867 -helipterum_manglesii n 1 2 @ #m 1 0 12007766 -helium n 1 1 @ 1 1 14639921 -helium_group n 1 1 @ 1 0 14624659 -helix n 3 5 @ ~ #m %m + 3 0 13876561 03065424 01944617 -helix_angle n 1 1 @ 1 0 13877785 -helix_aspersa n 1 2 @ #m 1 0 01945143 -helix_hortensis n 1 2 @ #m 1 0 01945340 -helix_pomatia n 1 3 @ #m %s 1 0 01944812 -hell n 6 5 ! @ ~ %p ; 6 1 08582837 07305907 05629682 05629381 01260731 00736786 -hell's_half_acre n 1 2 @ #p 1 0 09121458 -hell's_kitchen n 1 2 @ #p 1 0 09121458 -hell-kite n 1 1 @ 1 0 10169678 -hell-rooster n 1 1 @ 1 1 10169678 -hell_dust n 1 2 @ ; 1 0 02837416 -hell_on_earth n 1 1 @ 1 0 08582837 -hell_raising n 1 1 @ 1 1 01223032 -hell_to_pay n 1 1 @ 1 1 05170923 -helladic_civilisation n 1 1 @ 1 0 08290435 -helladic_civilization n 1 1 @ 1 0 08290435 -helladic_culture n 1 1 @ 1 0 08290435 -hellbender n 1 2 @ #m 1 0 01633406 -hellcat n 1 1 @ 1 0 10758337 -hellebore n 2 3 @ ~ #m 2 0 12464476 11733904 -helleborine n 3 3 @ ~ #m 3 0 12063639 12062468 12050959 -helleborus n 1 3 @ #m %m 1 0 11733769 -helleborus_foetidus n 1 1 @ 1 0 11734093 -helleborus_niger n 1 1 @ 1 0 11734300 -helleborus_orientalis n 1 1 @ 1 0 11734493 -helleborus_viridis n 1 1 @ 1 0 11734698 -hellene n 1 4 @ ~ #m + 1 0 09710164 -hellenic n 1 4 @ ~ + ; 1 1 06976392 -hellenic_language n 1 3 @ ~ ; 1 0 06976392 -hellenic_republic n 1 6 @ #m #p %m %p - 1 0 08780881 -hellenism n 1 2 @ + 1 0 05956489 -heller n 4 2 @ #p 4 0 13681749 13681407 11038978 10169419 -helleri n 1 2 @ #m 1 0 01448291 -hellespont n 1 2 @ #p 1 0 09041371 -hellfire n 1 1 @ 1 0 05630409 -hellgrammiate n 1 2 @ #m 1 0 02266269 -hellhole n 1 1 @ 1 0 08582837 -hellhound n 2 2 @ ; 2 0 10169607 09493204 -hellion n 1 1 @ 1 1 10169419 -hellman n 1 1 @ 1 0 11039188 -hello n 1 1 @ 1 1 06632511 -helm n 2 3 @ ~ #p 2 2 03512911 01256615 -helmet n 2 4 @ ~ #p %p 2 0 03513376 03513137 -helmet_flower n 1 1 @ 1 0 11723227 -helmet_orchid n 2 2 @ #m 2 0 12081215 12054678 -helmetflower n 3 2 @ #m 3 0 12867826 12054678 11723227 -helmholtz n 1 1 @ 1 0 11039344 -helminth n 1 2 @ #m 1 0 01922717 -helminthiasis n 1 2 @ ~ 1 0 14453554 -helminthic n 1 3 @ ~ + 1 0 04528630 -helminthostachys n 1 3 @ #m %m 1 0 12961689 -helminthostachys_zeylanica n 1 2 @ #m 1 0 12961879 -helmsman n 1 2 @ ~ 1 0 10169796 -helmut_heinrich_waldemar_schmidt n 1 1 @ 1 0 11285282 -helmut_schmidt n 1 1 @ 1 0 11285282 -heloderma n 1 3 @ #m %m 1 0 01692143 -heloderma_horridum n 1 2 @ #m 1 0 01692523 -heloderma_suspectum n 1 2 @ #m 1 0 01692333 -helodermatidae n 1 3 @ #m %m 1 0 01691782 -heloise n 1 1 @ 1 0 11039577 -helot n 1 3 @ ~ ; 1 0 10580535 -helotiaceae n 1 3 @ #m %m 1 0 12967504 -helotiales n 1 3 @ #m %m 1 0 12967281 -helotium n 1 2 @ #m 1 0 12967656 -help n 4 3 @ ~ + 4 4 01207609 09815790 05154908 05149832 -help_desk n 1 1 @ 1 0 01210547 -helpdesk n 1 1 @ 1 0 01210547 -helper n 2 3 @ ~ + 2 2 09815790 09608709 -helper_cell n 1 1 @ 1 0 05452204 -helper_t_cell n 1 1 @ 1 0 05452204 -helpfulness n 2 3 @ ~ + 2 0 05149695 04841664 -helping n 1 5 @ ~ #p %p + 1 0 07578363 -helping_hand n 1 1 @ 1 1 01208460 -helplessness n 3 2 @ + 3 1 05204982 14001629 07538142 -helpmate n 1 1 @ 1 0 10170598 -helpmeet n 1 1 @ 1 0 10170598 -helsingfors n 1 2 @ #p 1 0 08780018 -helsinki n 1 2 @ #p 1 0 08780018 -helve n 1 2 @ #p 1 0 03474896 -helvella n 1 3 @ ~ #m 1 0 13035707 -helvella_acetabulum n 1 2 @ #m 1 0 13036116 -helvella_crispa n 1 2 @ #m 1 0 13035925 -helvella_sulcata n 1 2 @ #m 1 0 13036312 -helvellaceae n 1 3 @ #m %m 1 0 13034953 -helvetica n 1 1 @ 1 0 06827947 -helwingia n 1 2 @ #m 1 0 12949549 -helxine n 1 3 @ #m %m 1 0 12393527 -helxine_soleirolia n 1 2 @ #m 1 0 12393723 -hem n 2 3 @ #p + 2 1 03513627 07126521 -hemachatus n 1 2 @ #m 1 0 01749141 -hemachatus_haemachatus n 1 1 @ 1 0 01749244 -hemagglutination n 1 2 @ + 1 0 13492136 -hemal_arch n 1 2 @ #p 1 0 05587814 -hemangioma n 1 2 @ ~ 1 0 14247575 -hemangioma_simplex n 1 1 @ 1 0 04696316 -hematemesis n 1 1 @ 1 0 00119210 -hematin n 1 2 @ #s 1 0 15024997 -hematinic n 1 1 @ 1 0 03513961 -hematite n 1 2 @ #s 1 0 14905720 -hematocele n 1 1 @ 1 0 14317221 -hematochezia n 1 1 @ 1 0 13492287 -hematochrome n 1 1 @ 1 0 14988635 -hematocoele n 1 1 @ 1 0 14317221 -hematocolpometra n 1 1 @ 1 0 14317433 -hematocolpos n 1 1 @ 1 0 14317562 -hematocrit n 2 1 @ 2 0 13821766 03514129 -hematocyst n 1 2 @ ~ 1 0 14201989 -hematocytopenia n 1 1 @ 1 0 13973632 -hematocyturia n 1 1 @ 1 0 14266400 -hematogenesis n 1 1 @ 1 0 13492453 -hematohiston n 1 2 @ #s 1 0 15025942 -hematoidin n 1 1 @ 1 0 14756369 -hematologist n 1 2 @ + 1 0 10170681 -hematology n 1 2 @ + 1 0 06051134 -hematolysis n 1 1 @ 1 0 13493213 -hematoma n 1 1 @ 1 0 14318714 -hematopoeitic_stem_cell n 1 1 @ 1 0 05608044 -hematopoiesis n 1 2 @ + 1 0 13492453 -hematuria n 1 2 @ ~ 1 0 14314320 -heme n 1 2 @ #s 1 0 15024997 -hemeralopia n 1 1 @ 1 0 14554345 -hemerobiid n 1 2 @ #m 1 0 02265330 -hemerobiid_fly n 1 2 @ #m 1 0 02265330 -hemerobiidae n 1 3 @ #m %m 1 0 02265177 -hemerocallidaceae n 1 2 @ #m 1 0 12456278 -hemerocallis n 1 3 @ #m %m 1 0 12456527 -hemerocallis_flava n 1 2 @ #m 1 0 12457091 -hemerocallis_lilio-asphodelus n 1 2 @ #m 1 0 12457091 -hemiacetal n 1 1 @ 1 0 14905911 -hemianopia n 1 1 @ 1 0 14554459 -hemianopic_scotoma n 1 1 @ 1 0 14556656 -hemianopsia n 1 1 @ 1 0 14554459 -hemiascomycetes n 1 3 @ #m %m 1 0 13024763 -hemicrania n 1 1 @ 1 0 14327707 -hemicycle n 1 1 @ 1 0 13874251 -hemidemisemiquaver n 1 1 @ 1 0 06871828 -hemiepiphyte n 1 1 @ 1 0 13123309 -hemigalus n 1 3 @ #m %m 1 0 02137172 -hemigalus_hardwickii n 1 2 @ #m 1 0 02137302 -hemigrammus n 1 3 @ #m %m 1 0 02583768 -hemimetabola n 1 2 @ #m 1 0 02232408 -hemimetabolism n 1 2 @ + 1 0 13492789 -hemimetaboly n 1 2 @ + 1 0 13492789 -hemimetamorphosis n 1 2 @ + 1 0 13492789 -hemimorphite n 1 3 @ #s %s 1 0 14678406 -hemin n 1 1 @ 1 0 15025228 -heming n 1 1 @ 1 0 11039690 -hemingway n 1 1 @ 1 0 11039860 -hemiparasite n 1 2 @ + 1 0 13120775 -hemiplegia n 1 1 @ 1 0 14559644 -hemiplegic n 1 1 @ 1 0 10170866 -hemipode n 1 3 @ ~ #m 1 0 02019929 -hemiprocnidae n 1 3 @ #m %m 1 0 01833283 -hemiptera n 1 3 @ #m %m 1 0 02236495 -hemipteran n 1 3 @ ~ #m 1 0 02236896 -hemipteron n 1 3 @ ~ #m 1 0 02236896 -hemipteronatus n 1 3 @ #m %m 1 0 02609466 -hemipteronatus_novacula n 1 2 @ #m 1 0 02609823 -hemipterous_insect n 1 3 @ ~ #m 1 0 02236896 -hemiramphidae n 1 3 @ #m %m 1 0 02550915 -hemisphere n 3 4 @ ~ #p + 3 1 08583095 13899109 05476915 -hemitripterus n 1 3 @ #m %m 1 0 02645823 -hemitripterus_americanus n 1 2 @ #m 1 0 02645953 -hemizygos_vein n 1 1 @ 1 0 05368874 -hemizygous_vein n 1 1 @ 1 0 05368874 -hemline n 1 2 @ #p 1 0 08583292 -hemlock n 4 5 @ ~ #m #s %s 4 0 14906085 12935609 11627364 11627168 -hemlock_tree n 1 4 @ ~ #m %s 1 0 11627168 -hemlock_water_dropwort n 1 2 @ #m 1 0 12940939 -hemming-stitch n 1 1 @ 1 0 03514340 -hemminge n 1 1 @ 1 0 11039690 -hemochromatosis n 1 2 @ ~ 1 0 14206929 -hemodialysis n 1 1 @ 1 0 00650543 -hemodialyzer n 1 1 @ 1 0 02746008 -hemodynamics n 1 1 @ 1 0 06082310 -hemofil n 1 2 @ ; 1 0 15071684 -hemogenesis n 1 1 @ 1 0 13492453 -hemoglobin n 1 4 @ ~ #s %s 1 1 15024240 -hemoglobinemia n 1 1 @ 1 0 14191903 -hemoglobinopathy n 1 1 @ 1 0 14192034 -hemoglobinuria n 1 1 @ 1 0 14314483 -hemolysin n 1 2 @ ~ 1 0 14906261 -hemolysis n 1 2 @ + 1 0 13493213 -hemolytic_anemia n 1 1 @ 1 0 14165240 -hemophile n 1 2 @ + 1 0 10170989 -hemophilia n 1 2 @ ~ 1 0 14170337 -hemophilia_a n 1 1 @ 1 0 14170772 -hemophilia_b n 1 1 @ 1 0 14170987 -hemophiliac n 1 1 @ 1 0 10170989 -hemopoiesis n 1 2 @ + 1 0 13492453 -hemoprotein n 1 2 @ ~ 1 0 14888884 -hemoptysis n 1 1 @ 1 0 14192199 -hemorrhage n 1 3 @ ~ + 1 1 14288235 -hemorrhagic_cyst n 1 2 @ ~ 1 0 14201989 -hemorrhagic_fever n 1 2 @ ~ 1 0 14177423 -hemorrhagic_septicemia n 1 1 @ 1 0 14263280 -hemorrhagic_stroke n 1 1 @ 1 0 14288561 -hemorrhoid n 1 1 @ 1 1 14327125 -hemorrhoidal_vein n 1 1 @ 1 0 05369092 -hemorrhoidectomy n 1 1 @ 1 0 00676693 -hemosiderin n 1 2 @ %s 1 1 15026963 -hemosiderosis n 1 1 @ 1 0 14314597 -hemostasia n 1 2 @ #p 1 0 00676834 -hemostasis n 1 3 @ #p + 1 0 00676834 -hemostat n 1 1 @ 1 0 03514451 -hemothorax n 1 1 @ 1 0 14320813 -hemp n 3 6 @ ~ #m #s #p %p 3 0 14906500 12396924 03491724 -hemp_agrimony n 1 1 @ 1 0 11968335 -hemp_family n 1 3 @ #m %m 1 0 12396255 -hemp_nettle n 1 2 @ #m 1 0 12847008 -hemp_willow n 1 2 @ #m 1 0 12731029 -hempen_necktie n 1 3 @ #p %p 1 0 03491724 -hemstitch n 2 2 @ + 2 0 03514693 03514588 -hemstitching n 1 2 @ + 1 0 03514693 -hen n 4 2 @ ~ 4 2 01792640 01514859 07646067 01321123 -hen-of-the-woods n 1 2 @ #m 1 0 13052670 -hen_harrier n 1 2 @ #m 1 0 01610226 -hen_hawk n 1 1 @ 1 0 01606978 -hen_of_the_woods n 1 2 @ #m 1 0 13052670 -hen_party n 1 1 @ 1 0 08256151 -hen_yard n 1 1 @ 1 0 03016737 -henbane n 1 2 @ #m 1 0 12904314 -henbit n 1 2 @ #m 1 0 12849416 -henchman n 1 1 @ 1 0 09953483 -hencoop n 1 1 @ 1 0 03016389 -hendiadys n 1 1 @ 1 0 07103558 -hendrik_antoon_lorentz n 1 1 @ 1 0 11138301 -hendrik_frensch_verwoerd n 1 1 @ 1 0 11364243 -hendrik_petrus_berlage n 1 1 @ 1 0 10847330 -hendrik_verwoerd n 1 1 @ 1 0 11364243 -hendrix n 1 1 @ 1 0 11040024 -henhouse n 1 1 @ 1 0 03016389 -henna n 1 2 @ + 1 0 14988741 -henri_becquerel n 1 1 @ 1 0 10840563 -henri_bergson n 1 1 @ 1 0 10846504 -henri_clemens_van_de_velde n 1 1 @ 1 0 11359558 -henri_emile_benoit_matisse n 1 1 @ 1 0 11164505 -henri_labrouste n 1 1 @ 1 0 11113732 -henri_louis_bergson n 1 1 @ 1 0 10846504 -henri_matisse n 1 1 @ 1 0 11164505 -henri_pitot n 1 1 @ 1 0 11236188 -henri_rene_albert_guy_de_maupassant n 1 1 @ 1 0 11165339 -henri_rousseau n 1 1 @ 1 0 11272972 -henri_toulouse-lautrec n 1 1 @ 1 0 11346391 -henri_van_de_velde n 1 1 @ 1 0 11359558 -henriette_rosine_bernard n 1 1 @ 1 0 10847994 -henrik_ibsen n 1 1 @ 1 0 11070644 -henrik_johan_ibsen n 1 1 @ 1 0 11070644 -henroost n 1 1 @ 1 0 03514894 -henry n 4 2 @ %p 4 0 13639405 11040596 11040381 11040240 -henry's_law n 1 2 @ ; 1 0 05878771 -henry_alfred_kissinger n 1 1 @ 1 0 11106290 -henry_beauclerc n 1 1 @ 1 0 11040800 -henry_bolingbroke n 1 2 @ #m 1 0 11041814 -henry_cavendish n 1 1 @ 1 0 10888401 -henry_clay n 1 1 @ 1 0 10899951 -henry_clay_frick n 1 1 @ 1 0 10982295 -henry_david_thoreau n 1 1 @ 1 0 11340992 -henry_engelhard_steinway n 1 1 @ 1 0 11315760 -henry_fielding n 1 1 @ 1 0 10970603 -henry_fonda n 1 1 @ 1 0 10974033 -henry_ford n 1 1 @ 1 1 10974592 -henry_ford_ii n 1 1 @ 1 0 10975202 -henry_graham_greene n 1 1 @ 1 0 11013743 -henry_hobson_richardson n 1 1 @ 1 0 11261364 -henry_hubert_turner n 1 1 @ 1 0 11353078 -henry_hudson n 1 1 @ 1 0 11064106 -henry_i n 1 1 @ 1 0 11040800 -henry_ii n 2 2 @ #m 2 0 11041236 11040985 -henry_iii n 2 2 @ #m 2 0 11041660 11041447 -henry_iv n 3 2 @ #m 3 0 11042165 11042036 11041814 -henry_james n 1 1 @ 1 1 11079252 -henry_john_heinz n 1 1 @ 1 0 11038657 -henry_kenneth_alfred_russell n 1 1 @ 1 0 11275636 -henry_kissinger n 1 1 @ 1 0 11106290 -henry_laurens n 1 1 @ 1 0 11119476 -henry_le_chatelier n 1 1 @ 1 0 11122977 -henry_lee n 1 1 @ 1 0 11123762 -henry_louis_aaron n 1 1 @ 1 0 10807016 -henry_louis_gehrig n 1 1 @ 1 0 10993350 -henry_louis_mencken n 1 1 @ 1 0 11173031 -henry_luce n 1 1 @ 1 0 11143933 -henry_m._robert n 1 1 @ 1 0 11264002 -henry_m._stanley n 1 1 @ 1 0 11313011 -henry_martyn_robert n 1 1 @ 1 0 11264002 -henry_miller n 1 1 @ 1 0 11180029 -henry_moore n 1 1 @ 1 0 11189274 -henry_morgan n 1 1 @ 1 0 11190774 -henry_norris_russell n 1 1 @ 1 0 11275170 -henry_of_navarre n 1 2 @ #m 1 0 11042165 -henry_oscar_houghton n 1 1 @ 1 0 11061552 -henry_purcell n 1 1 @ 1 0 11248599 -henry_robinson_luce n 1 1 @ 1 0 11143933 -henry_rowe_schoolcraft n 1 1 @ 1 0 11286117 -henry_russell n 1 1 @ 1 0 11275170 -henry_spencer_moore n 1 1 @ 1 0 11189274 -henry_steinway n 1 1 @ 1 0 11315760 -henry_sweet n 1 1 @ 1 0 11326730 -henry_the_great n 1 2 @ #m 1 0 11042165 -henry_tudor n 1 2 @ #m 1 0 11043040 -henry_v n 1 2 @ #m 1 0 11042482 -henry_valentine_miller n 1 1 @ 1 0 11180029 -henry_vi n 1 2 @ #m 1 0 11042691 -henry_vii n 2 2 @ #m 2 0 11043389 11043040 -henry_viii n 1 2 @ #m 1 0 11043519 -henry_villard n 1 1 @ 1 0 11366658 -henry_wadsworth_longfellow n 1 1 @ 1 0 11137928 -henry_ward_beecher n 1 1 @ 1 0 10841065 -henry_watson_fowler n 1 1 @ 1 0 10976708 -henry_wheeler_shaw n 1 1 @ 1 0 11296279 -henson n 1 1 @ 1 0 11043836 -hepadnavirus n 1 1 @ 1 0 01336076 -heparin n 1 1 @ 1 0 03514974 -hepatic n 1 3 @ ~ #m 1 0 11542640 -hepatic_artery n 1 2 @ #p 1 0 05346585 -hepatic_coma n 1 1 @ 1 0 05680573 -hepatic_duct n 1 2 @ #p 1 0 05386426 -hepatic_lobe n 1 2 @ #p 1 0 05386309 -hepatic_portal_vein n 1 2 @ #p 1 0 05377665 -hepatic_tanager n 1 2 @ #m 1 0 01598271 -hepatic_vein n 1 2 @ #p 1 0 05369254 -hepatica n 2 2 @ #m 2 0 11735053 11544015 -hepaticae n 1 3 @ #m %m 1 0 11542341 -hepaticopsida n 1 3 @ #m %m 1 0 11542341 -hepatitis n 1 2 @ ~ 1 1 14130354 -hepatitis_a n 1 1 @ 1 0 14130661 -hepatitis_a_virus n 1 1 @ 1 0 01337822 -hepatitis_b n 1 1 @ 1 0 14130942 -hepatitis_c n 1 1 @ 1 0 14131353 -hepatitis_delta n 1 1 @ 1 0 14131247 -hepatocarcinoma n 1 1 @ 1 0 14251174 -hepatocellular_carcinoma n 1 1 @ 1 0 14251174 -hepatoflavin n 1 2 @ %s 1 0 15091473 -hepatojugular_reflux n 1 1 @ 1 0 14335641 -hepatolenticular_degeneration n 1 1 @ 1 0 14569121 -hepatoma n 1 1 @ 1 0 14251174 -hepatomegaly n 1 1 @ 1 0 14103180 -hepatotoxin n 1 2 @ + 1 0 15036103 -hepburn n 1 1 @ 1 0 11043980 -hephaestus n 1 2 @ ; 1 0 09561970 -hephaistos n 1 2 @ ; 1 0 09561970 -heptad n 1 1 @ 1 0 13744916 -heptadecanoic_acid n 1 1 @ 1 0 14742476 -heptagon n 1 1 @ 1 0 13882487 -heptane n 1 1 @ 1 0 14906656 -hepworth n 1 1 @ 1 0 11044168 -hera n 1 1 @ 1 0 09563183 -heracles n 1 2 @ ; 1 0 09578005 -heracleum n 1 3 @ #m %m 1 0 12939664 -heracleum_sphondylium n 1 2 @ #m 1 0 12939874 -heraclitus n 1 1 @ 1 0 11044295 -herakles n 1 2 @ ; 1 0 09578005 -herald n 2 3 @ + ; 2 1 10171219 06802571 -heraldic_bearing n 1 2 @ ~ 1 0 03008565 -heraldry n 2 3 @ ~ - 2 0 05801594 03515338 -herat n 1 2 @ #p 1 0 08703972 -herb n 2 4 @ ~ %p + 2 2 12205694 07811416 -herb_bennet n 1 1 @ 1 0 12632526 -herb_christopher n 1 4 @ ~ #m %p 1 0 11723770 -herb_doctor n 1 1 @ 1 0 10171456 -herb_garden n 1 1 @ 1 0 03515644 -herb_mercury n 1 2 @ #m 1 0 12924036 -herb_of_grace n 1 3 @ #m %p 1 0 12707199 -herb_paris n 1 2 @ #m 1 0 12469517 -herb_robert n 1 1 @ 1 0 12686676 -herb_roberts n 1 1 @ 1 0 12686676 -herb_simon n 1 1 @ 1 0 11300893 -herb_tea n 1 2 @ ~ 1 0 07933891 -herba_impia n 1 1 @ 1 0 11970298 -herbaceous_plant n 1 3 @ ~ %p 1 0 12205694 -herbage n 1 1 @ 1 0 12104501 -herbal n 1 2 @ ~ 1 0 07933891 -herbal_medicine n 2 1 @ 2 0 03515500 00613685 -herbal_tea n 1 2 @ ~ 1 0 07933891 -herbal_therapy n 1 2 @ ; 1 0 00700421 -herbalist n 1 1 @ 1 0 10171456 -herbarium n 1 1 @ 1 0 07958501 -herbart n 1 1 @ 1 0 11044517 -herbert n 1 1 @ 1 0 11044629 -herbert_a._simon n 1 1 @ 1 0 11300893 -herbert_alexander_simon n 1 1 @ 1 0 11300893 -herbert_blythe n 1 1 @ 1 0 10835218 -herbert_clark_hoover n 1 1 @ 1 0 11058633 -herbert_george_wells n 1 1 @ 1 0 11381193 -herbert_hoover n 1 1 @ 1 0 11058633 -herbert_kitchener n 1 1 @ 1 0 11106479 -herbert_marcuse n 1 1 @ 1 0 11156333 -herbert_marshall_mcluhan n 1 1 @ 1 0 11169595 -herbert_marx n 1 2 @ #m 1 0 11161228 -herbert_mclean_evans n 1 1 @ 1 0 10963467 -herbert_spencer n 1 1 @ 1 0 11310321 -herbicide n 1 3 @ ~ %s 1 0 14906850 -herbivore n 1 1 @ 1 0 01324610 -herbs_mercury n 1 2 @ #m 1 0 12924036 -herbs_robert n 1 1 @ 1 0 12686676 -herculaneum n 1 2 @ #p 1 0 08804049 -hercules n 2 3 @ + ; 2 0 09578005 09302263 -hercules'-club n 2 2 @ #m 2 0 12715195 11797508 -hercules'-clubs n 1 2 @ #m 1 0 12715195 -hercules-club n 1 2 @ #m 1 0 12715195 -herculius n 1 1 @ 1 0 11166251 -herd n 3 4 @ ~ %m + 3 2 07994331 07994555 08183046 -herd's_grass n 1 3 @ #m %p 1 0 12130549 -herder n 2 3 @ ~ + 2 0 11044789 10171567 -herdsman n 1 2 @ ~ 1 0 10171567 -here n 2 2 ! @ 2 1 08489497 09563183 -here_and_now n 1 1 @ 1 1 15120050 -hereafter n 2 2 @ ~ 2 0 15143864 15121625 -herediatry_spinal_ataxia n 1 1 @ 1 0 14091525 -hereditament n 1 1 @ 1 0 13245217 -hereditarianism n 1 2 ! @ 1 0 05971913 -hereditary_cerebellar_ataxia n 1 1 @ 1 0 14091757 -hereditary_condition n 1 2 @ ~ 1 0 14151139 -hereditary_disease n 1 2 @ ~ 1 0 14151139 -hereditary_motor_and_sensory_neuropathy n 1 1 @ 1 0 14208587 -hereditary_pattern n 1 3 @ ~ ; 1 0 04922338 -heredity n 2 3 @ ~ + 2 1 13493399 04920867 -hereford n 1 1 @ 1 0 02407625 -hereness n 1 3 ! @ + 1 0 13958672 -herero n 2 2 @ #m 2 0 09692915 06993225 -heresy n 2 3 @ ~ + 2 0 06212422 05980412 -heretic n 2 1 @ 2 1 10171755 10171953 -heritage n 4 4 @ ~ %p ; 4 2 05669797 04921011 13262913 00083585 -heritiera n 1 2 @ #m 1 0 12199564 -heritiera_littoralis n 1 1 @ 1 0 12200143 -heritiera_macrophylla n 1 1 @ 1 0 12199982 -heritiera_trifoliolata n 1 1 @ 1 0 12199790 -heritor n 1 2 @ ~ 1 0 10168584 -herm n 1 1 @ 1 0 03515728 -herman n 1 1 @ 1 0 11044939 -herman_hollerith n 1 1 @ 1 0 11056466 -herman_melville n 1 1 @ 1 1 11172795 -herman_northrop_frye n 1 1 @ 1 0 10984418 -herman_wouk n 1 1 @ 1 0 11398094 -hermann n 1 1 @ 1 0 10822786 -hermann_goering n 1 1 @ 1 0 11008647 -hermann_goring n 1 1 @ 1 0 11008647 -hermann_hesse n 1 1 @ 1 0 11048205 -hermann_joseph_muller n 1 1 @ 1 0 11195295 -hermann_ludwig_ferdinand_von_helmholtz n 1 1 @ 1 0 11039344 -hermann_maurice_saxe n 1 1 @ 1 0 11283300 -hermann_minkowski n 1 1 @ 1 0 11181255 -hermann_snellen n 1 1 @ 1 0 11306920 -hermann_von_helmholtz n 1 1 @ 1 0 11039344 -hermann_wilhelm_goring n 1 1 @ 1 0 11008647 -hermannia n 1 3 @ #m %m 1 0 12200315 -hermannia_verticillata n 1 2 @ #m 1 0 12200504 -hermaphrodism n 1 1 @ 1 0 14467975 -hermaphrodite n 1 2 @ + 1 0 10172080 -hermaphrodite_brig n 1 1 @ 1 0 02901620 -hermaphroditism n 2 1 @ 2 0 14467975 05008746 -hermaphroditus n 1 2 @ ; 1 0 09562526 -hermeneutics n 1 1 @ 1 1 06183398 -hermes n 1 2 @ ; 1 0 09562319 -hermissenda n 1 3 @ #m %m 1 0 01951472 -hermissenda_crassicornis n 1 2 @ #m 1 0 01951613 -hermit n 2 3 @ ~ + 2 0 10519126 10172448 -hermit_crab n 1 2 @ #m 1 0 01986214 -hermit_thrush n 1 2 @ #m 1 0 01559477 -hermitage n 1 1 @ 1 0 03515934 -hermosillo n 1 2 @ #p 1 0 08743557 -hernan_cortes n 1 1 @ 1 0 10912243 -hernan_cortez n 1 1 @ 1 0 10912243 -hernando_cortes n 1 1 @ 1 0 10912243 -hernando_cortez n 1 1 @ 1 0 10912243 -hernaria n 1 3 @ #m %m 1 0 11810559 -hernaria_glabra n 1 2 @ #m 1 0 11810728 -hernia n 1 2 @ ~ 1 0 14295389 -herniated_disc n 1 1 @ 1 0 14296579 -herniation n 1 2 @ ~ 1 0 14295389 -hero n 7 4 @ ~ + ; 7 3 10325013 05929670 09906538 11045106 10173086 09554297 07697825 -hero_of_alexandria n 1 1 @ 1 0 11045106 -hero_sandwich n 1 1 @ 1 0 07697825 -hero_worship n 1 1 @ 1 0 07501093 -hero_worshiper n 1 1 @ 1 0 10173665 -hero_worshipper n 1 1 @ 1 1 10173665 -herod n 1 1 @ 1 0 11045353 -herod_the_great n 1 1 @ 1 0 11045353 -herodotus n 1 1 @ 1 0 11045569 -heroic n 1 1 @ 1 0 06386156 -heroic_couplet n 1 1 @ 1 0 06385842 -heroic_meter n 1 1 @ 1 0 06386156 -heroic_poem n 1 2 @ ~ 1 0 06379721 -heroic_poetry n 1 1 @ 1 0 07093158 -heroic_stanza n 1 1 @ 1 0 06385997 -heroic_tale n 1 2 @ ~ 1 0 06370268 -heroic_verse n 1 1 @ 1 0 06386156 -heroica_puebla_de_zaragoza n 1 3 @ #p ; 1 0 08745011 -heroics n 1 2 @ ; 1 1 00551714 -heroin n 1 2 @ ~ 1 0 03516011 -heroin_addict n 1 1 @ 1 0 10173579 -heroin_addiction n 1 1 @ 1 0 14065071 -heroine n 2 2 @ ~ 2 1 10173305 10173410 -heroism n 1 1 @ 1 1 04857738 -heron n 2 3 @ ~ #m 2 0 11045106 02008041 -heron's_bill n 1 3 @ ~ #m 1 0 12688716 -heronry n 1 1 @ 1 0 08583455 -herpangia n 1 1 @ 1 0 14177848 -herpes n 2 2 @ ~ 2 0 14131950 01338685 -herpes_encephalitis n 1 1 @ 1 0 14343062 -herpes_genitalis n 1 1 @ 1 0 14132524 -herpes_labialis n 1 1 @ 1 0 14132375 -herpes_simplex n 2 2 @ ~ 2 0 14132102 01338908 -herpes_simplex_1 n 1 1 @ 1 0 01339083 -herpes_simplex_2 n 1 1 @ 1 0 01339206 -herpes_simplex_encephalitis n 1 1 @ 1 0 14343062 -herpes_simplex_virus n 1 2 @ ~ 1 0 01338908 -herpes_varicella_zoster n 1 1 @ 1 0 01339471 -herpes_varicella_zoster_virus n 1 1 @ 1 0 01339471 -herpes_virus n 1 2 @ ~ 1 0 01338685 -herpes_zoster n 2 2 @ ~ 2 0 14132829 01339336 -herpes_zoster_virus n 1 2 @ ~ 1 0 01339336 -herpestes n 1 3 @ #m %m 1 0 02137428 -herpestes_ichneumon n 1 1 @ 1 0 02137888 -herpestes_nyula n 1 1 @ 1 0 02137722 -herpetologist n 1 2 @ + 1 1 10172668 -herpetology n 1 2 @ + 1 0 06072776 -herr n 2 2 @ ; 2 0 10173771 06341127 -herrenvolk n 1 1 @ 1 0 07968550 -herrerasaur n 1 2 @ #m 1 0 01714843 -herrerasaurus n 1 2 @ #m 1 0 01714843 -herrick n 1 1 @ 1 0 11045796 -herring n 2 5 @ ~ #m #p %p 2 0 07784522 02532028 -herring_gull n 1 2 @ #m 1 0 02042046 -herring_hog n 1 1 @ 1 0 02070624 -herring_salad n 1 1 @ 1 0 07808268 -herringbone n 2 1 @ 2 1 03516266 03516367 -herringbone_pattern n 1 1 @ 1 0 03516367 -herschel n 2 1 @ 2 0 11046169 11045898 -herschelian_telescope n 1 1 @ 1 0 03516647 -hershey n 2 1 @ 2 0 11046457 09135894 -hershey_bar n 1 1 @ 1 0 07603613 -hertfordshire n 1 3 @ #m #p 1 0 08882807 -hertha n 1 1 @ 1 0 09585757 -hertz n 3 3 @ #p + 3 0 15279104 11046934 11046722 -hertzian_wave n 1 1 @ 1 0 11451310 -herzberg n 1 1 @ 1 0 11047139 -heshvan n 1 2 @ #p 1 0 15214639 -hesiod n 1 1 @ 1 0 11047333 -hesitance n 1 2 @ + 1 0 07523485 -hesitancy n 2 3 @ ~ + 2 1 07523485 04645943 -hesitater n 1 2 @ + 1 0 10603528 -hesitation n 3 3 @ ~ + 3 3 05699434 04645943 01063350 -hesitator n 1 2 @ + 1 0 10603528 -hesperides n 1 2 @ ; 1 0 09549216 -hesperiphona n 1 3 @ #m %m 1 0 01540432 -hesperiphona_vespertina n 1 2 @ #m 1 0 01540566 -hesperis n 1 3 @ #m %m 1 0 11888621 -hesperis_matronalis n 1 2 @ #m 1 0 11888800 -hesperus n 1 1 @ 1 0 09276872 -hess n 4 1 @ 4 0 11048109 11047961 11047701 11047521 -hesse n 1 1 @ 1 0 11048205 -hessian n 1 1 @ 1 0 03516844 -hessian_boot n 1 1 @ 1 0 03516844 -hessian_fly n 1 2 @ #m 1 0 02189670 -hessonite n 1 1 @ 1 0 14903466 -hestia n 1 2 @ ; 1 0 09563998 -heteranthera n 1 3 @ #m %m 1 0 12610609 -heteranthera_dubia n 1 2 @ #m 1 0 12610740 -heterobasidiomycetes n 1 2 @ #m 1 0 12997432 -heterocephalus n 1 3 @ #m %m 1 0 02369424 -heterocercal_fin n 1 2 ! @ 1 0 02467133 -heterocycle n 2 3 @ ~ + 2 0 15025397 09302400 -heterocyclic n 1 2 @ ~ 1 0 15025397 -heterocyclic_compound n 1 2 @ ~ 1 0 15025397 -heterocyclic_ring n 1 1 @ 1 0 09302400 -heterodactyl_foot n 1 2 ! @ 1 0 02155014 -heterodon n 1 3 @ #m %m 1 0 01729133 -heterodoxy n 2 2 @ ~ 2 0 06212422 04800729 -heterodyne_oscillator n 1 2 @ #p 1 0 03681813 -heterodyne_receiver n 1 2 @ %p 1 0 03516996 -heterogeneity n 1 4 ! @ ~ + 1 0 04751098 -heterogeneousness n 1 3 @ ~ + 1 0 04751098 -heterogenesis n 1 2 @ ~ 1 0 11424194 -heterograft n 1 1 @ 1 0 05583624 -heterokontae n 1 2 @ #m 1 0 01400575 -heterokontophyta n 1 2 @ #m 1 0 01399529 -heterology n 1 3 @ + ; 1 0 04750547 -heteromeles n 1 3 @ #m %m 1 0 12632875 -heteromeles_arbutifolia n 1 2 @ #m 1 0 12633061 -heterometabolism n 1 2 @ + 1 0 13493003 -heterometaboly n 1 2 @ + 1 0 13493003 -heteromyidae n 1 3 @ #m %m 1 0 02348405 -heteronym n 1 1 @ 1 0 06292290 -heterophil_antibody n 1 1 @ 1 0 15029292 -heterophil_test n 1 1 @ 1 0 05739965 -heterophile_antibody n 1 1 @ 1 0 15029292 -heteroploid n 1 2 @ ; 1 0 01320479 -heteroploidy n 1 1 @ 1 0 14570846 -heteroptera n 1 3 @ #m %m 1 0 02241184 -heteropterous_insect n 1 3 @ ~ #m 1 0 02241569 -heteroscelus n 1 3 @ #m %m 1 0 02030442 -heteroscelus_incanus n 1 2 @ #m 1 0 02030568 -heterosexism n 1 1 @ 1 0 01154772 -heterosexual n 1 3 @ ~ + 1 0 10173895 -heterosexual_person n 1 2 @ ~ 1 0 10173895 -heterosexualism n 1 1 @ 1 0 00857664 -heterosexuality n 1 2 @ + 1 0 00857664 -heterosis n 1 2 @ ; 1 0 04922597 -heterosomata n 1 3 @ #m %m 1 0 02657083 -heterospory n 1 2 @ + 1 0 13493566 -heterostracan n 1 2 @ #m 1 0 01475232 -heterostraci n 1 3 @ #m %m 1 0 01475025 -heterotaxy n 1 1 @ 1 0 14103998 -heterotheca n 1 3 @ #m %m 1 0 11981314 -heterotheca_villosa n 1 2 @ #m 1 0 11981475 -heterotrichales n 1 3 @ #m %m 1 0 01401296 -heterotroph n 1 1 @ 1 0 00006024 -heterozygosity n 1 3 ! @ + 1 0 14569508 -heterozygote n 1 2 @ ; 1 0 05432230 -heth n 1 2 @ #m 1 0 06837465 -heuchera n 1 3 @ #m %m 1 0 12798041 -heuchera_americana n 1 1 @ 1 0 12798466 -heuchera_cylindrica n 1 2 @ #m 1 0 12798632 -heuchera_sanguinea n 1 2 @ #m 1 0 12798910 -heulandite n 1 1 @ 1 0 15107362 -heuristic n 1 3 @ ~ + 1 0 05847956 -heuristic_program n 1 2 @ ~ 1 0 05847956 -heuristic_rule n 1 2 @ ~ 1 0 05847956 -hevea n 1 2 @ #m 1 0 12925836 -hevea_brasiliensis n 1 1 @ 1 0 12926039 -hevesy n 1 1 @ 1 0 11048389 -hewer n 1 2 @ + 1 0 10174148 -hex n 1 2 @ + 1 1 07160424 -hex_nut n 1 1 @ 1 0 03517427 -hexachlorophene n 1 1 @ 1 0 03517271 -hexacosanoic_acid n 1 2 @ #s 1 0 14610548 -hexad n 1 1 @ 1 0 13744722 -hexadecanoic_acid n 1 2 @ #s 1 0 14973303 -hexadecimal_digit n 1 1 @ 1 0 13741903 -hexadecimal_notation n 1 1 @ 1 0 06811283 -hexadecimal_number_system n 1 1 @ 1 0 06811419 -hexadecimal_system n 1 1 @ 1 0 06811419 -hexadrol n 1 2 @ ; 1 0 14753808 -hexagon n 1 3 @ ~ + 1 0 13882276 -hexagram n 1 2 @ ~ 1 0 13880811 -hexagrammidae n 1 3 @ #m %m 1 0 02648456 -hexagrammos n 1 3 @ #m %m 1 0 02648769 -hexagrammos_decagrammus n 1 2 @ #m 1 0 02648916 -hexahedron n 1 2 @ ~ 1 0 13915305 -hexalectris n 1 3 @ #m %m 1 0 12068824 -hexalectris_spicata n 1 2 @ #m 1 0 12069009 -hexalectris_warnockii n 1 2 @ #m 1 0 12069217 -hexameter n 1 1 @ 1 1 07096237 -hexamita n 1 2 @ #m 1 0 01420164 -hexanchidae n 1 3 @ #m %m 1 0 01482754 -hexanchus n 1 3 @ #m %m 1 0 01482887 -hexanchus_griseus n 1 2 @ #m 1 0 01483021 -hexane n 1 1 @ 1 0 14907122 -hexanedioic_acid n 1 1 @ 1 0 14612317 -hexanoic_acid n 1 1 @ 1 0 14791988 -hexapod n 1 1 @ 1 0 02157206 -hexapoda n 1 3 @ #m %m 1 0 02159271 -hexenbesen n 1 1 @ 1 0 12521624 -hexestrol n 1 1 @ 1 0 14751055 -hexose n 1 2 @ ~ 1 0 14690186 -heyday n 1 2 @ ~ 1 1 15295045 -heyerdahl n 1 1 @ 1 0 11048586 -heyrovsky n 1 1 @ 1 0 11048739 -heyse n 1 1 @ 1 0 11048879 -heyward n 1 1 @ 1 0 11049001 -hezbollah n 1 2 @ ; 1 0 08023374 -hezekiah n 1 2 @ ; 1 0 11049128 -hf n 2 2 @ #p 2 0 14639556 05057593 -hfc n 1 1 @ 1 0 14912556 -hg n 2 4 @ #s #p %p 2 0 14645346 13724474 -hhs n 1 2 @ %p 1 0 08133536 -hi n 2 4 @ #p %p - 2 1 06632511 09078231 -hi-fi n 2 2 @ ~ 2 0 03517760 01020488 -hiatal_hernia n 1 1 @ 1 0 14296399 -hiatus n 3 2 @ ~ 3 0 07368256 07008947 05545439 -hiatus_hernia n 1 1 @ 1 0 14296399 -hiawatha n 1 1 @ 1 0 11049278 -hiba_arborvitae n 1 2 @ #m 1 0 11644872 -hibachi n 1 2 @ + 1 0 03517509 -hibbertia n 1 3 @ #m %m 1 0 12363580 -hibbing n 1 2 @ #p 1 0 09102655 -hibernation n 3 2 @ + 3 0 14014849 14013981 00212377 -hibernia n 1 6 @ ~ #p %m %p - 1 0 08859173 -hibiscus n 1 3 @ ~ #m 1 0 12177844 -hibiscus_cannabinus n 1 2 @ %p 1 0 12178129 -hibiscus_elatus n 1 1 @ 1 0 12178494 -hibiscus_esculentus n 1 3 @ #m %p 1 0 12171966 -hibiscus_farragei n 1 2 @ #m 1 0 12185859 -hibiscus_heterophyllus n 1 1 @ 1 0 12178780 -hibiscus_moschatus n 1 2 @ #m 1 0 12172481 -hibiscus_moscheutos n 1 1 @ 1 0 12178896 -hibiscus_mutabilis n 1 1 @ 1 0 12179122 -hibiscus_rosa-sinensis n 1 1 @ 1 0 12179391 -hibiscus_sabdariffa n 1 1 @ 1 0 12179632 -hibiscus_syriacus n 1 1 @ 1 0 12179907 -hibiscus_tiliaceus n 1 1 @ 1 0 12180168 -hibiscus_trionum n 1 1 @ 1 0 12180456 -hiccough n 1 3 @ + ; 1 0 14359459 -hiccough_nut n 1 2 @ #m 1 0 12324222 -hiccup n 1 3 @ + ; 1 0 14359459 -hiccup_nut n 1 2 @ #m 1 0 12324222 -hick n 1 1 @ 1 0 10804102 -hickey n 2 2 @ ~ 2 0 14334306 14226862 -hickock n 1 1 @ 1 0 11049443 -hickory n 2 5 @ ~ #m #s %s 2 0 12320285 12320010 -hickory_nut n 1 2 @ #p 1 0 07774295 -hickory_pine n 1 1 @ 1 0 11617631 -hickory_tree n 1 4 @ ~ #m %s 1 0 12320010 -hidatsa n 2 1 @ 2 0 09656205 06909932 -hidden_reserve n 1 2 @ ~ 1 0 13369567 -hidden_tax n 1 2 @ ; 1 0 13314085 -hiddenite n 1 1 @ 1 0 15052413 -hiddenness n 1 1 @ 1 0 14416349 -hide n 2 2 @ ~ 2 2 14759275 01895735 -hide-and-seek n 1 1 @ 1 0 00484910 -hide_and_go_seek n 1 1 @ 1 0 00484910 -hideaway n 2 1 @ 2 1 08584218 03517647 -hideki_yukawa n 1 1 @ 1 0 11404402 -hideousness n 1 2 @ + 1 0 04691061 -hideout n 1 2 @ + 1 1 08584218 -hideyo_noguchi n 1 1 @ 1 0 11209019 -hiding n 2 3 @ ~ + 2 1 01048912 14575952 -hiding_place n 1 2 @ ~ 1 1 08584449 -hidrosis n 1 3 @ ~ + 1 0 13535261 -hieracium n 1 3 @ #m %m 1 0 11981817 -hieracium_aurantiacum n 1 2 @ #m 1 0 12003814 -hieracium_pilocella n 1 1 @ 1 0 12004120 -hieracium_praealtum n 1 2 @ #m 1 0 11982342 -hieracium_venosum n 1 1 @ 1 0 11982545 -hierarch n 2 3 @ ~ #m 2 0 10169937 09807075 -hierarchical_classification_system n 1 1 @ 1 0 05732446 -hierarchical_data_structure n 1 1 @ 1 0 05732273 -hierarchical_menu n 1 2 @ ; 1 0 06493721 -hierarchical_structure n 1 1 @ 1 0 05732273 -hierarchy n 2 5 @ ~ #p %m + 2 2 08377806 08376051 -hieratic n 1 3 @ ~ + 1 0 06362260 -hieratic_script n 1 2 @ ~ 1 0 06362260 -hierocracy n 1 1 @ 1 0 08363622 -hieroglyph n 2 3 @ ~ + 2 0 06403679 06362441 -hieroglyphic n 2 3 @ ~ + 2 0 06403679 06362441 -hierolatry n 1 1 @ 1 0 01046257 -hieronymus n 1 2 @ ; 1 0 11083064 -hieronymus_bosch n 1 1 @ 1 0 10858468 -higginson n 1 1 @ 1 0 11049608 -high n 7 5 ! @ ~ #p + 7 1 05097536 14520670 14405621 14405452 08584618 08409617 03518631 -high-angle_fire n 1 1 @ 1 0 00994745 -high-angle_gun n 1 2 @ ~ 1 0 03517982 -high-bush_blueberry n 1 2 @ %p 1 0 12247664 -high-definition_television n 1 1 @ 1 0 06278475 -high-density_lipoprotein n 1 2 @ %s 1 0 14907349 -high-energy_physics n 1 2 @ - 1 0 06101551 -high-five n 1 1 @ 1 0 07015242 -high-handedness n 1 3 @ ~ + 1 0 04887912 -high-hat_cymbal n 1 1 @ 1 0 03518829 -high-level_formatting n 1 2 @ ; 1 0 06637149 -high-level_language n 1 1 @ 1 0 06899845 -high-level_radioactive_waste n 1 1 @ 1 0 14907703 -high-low n 1 1 @ 1 0 00497713 -high-low-jack n 1 2 @ ~ 1 0 00489730 -high-mindedness n 1 2 @ + 1 0 04870643 -high-muck-a-muck n 1 1 @ 1 0 10174971 -high-pass_filter n 1 1 @ 1 0 03519226 -high-protein_diet n 1 1 @ 1 0 07563207 -high-rise n 1 1 @ 1 0 03519387 -high-speed_steel n 1 1 @ 1 0 14907867 -high-spiritedness n 1 3 @ ~ + 1 0 04634161 -high-strength_brass n 1 1 @ 1 0 14947125 -high-up n 1 1 @ 1 0 10748620 -high-vitamin_diet n 1 1 @ 1 0 07563366 -high-warp_loom n 1 1 @ 1 0 03519848 -high-water_mark n 1 1 @ 1 0 08679167 -high-yield_bond n 1 1 @ 1 0 13338439 -high_altar n 1 1 @ 1 0 03517899 -high_anglican_church n 1 2 @ ; 1 0 08088963 -high_anglicanism n 1 1 @ 1 1 06229240 -high_bar n 1 2 @ %p 1 0 03535780 -high_beam n 1 1 @ 1 0 11472699 -high_blood_pressure n 1 2 @ ~ 1 0 14103510 -high_brass n 1 1 @ 1 0 14907273 -high_church n 1 2 @ ; 1 0 08088963 -high_colonic n 1 1 @ 1 0 00253773 -high_comedy n 1 1 @ 1 0 07016428 -high_command n 1 3 @ ~ ; 1 0 08405267 -high_commission n 1 2 @ ; 1 0 08402944 -high_commissioner n 1 1 @ 1 0 10174445 -high_country n 1 1 @ 1 0 08498163 -high_court n 1 2 @ ; 1 0 08336188 -high_dam n 1 2 @ #p 1 0 02751623 -high_dudgeon n 1 1 @ 1 0 07516756 -high_energy_physics n 1 2 @ - 1 0 06101551 -high_explosive n 1 3 ! @ ~ 1 1 14853210 -high_fashion n 1 1 @ 1 0 05751063 -high_fidelity n 1 2 @ ~ 1 1 01020488 -high_fidelity_sound_system n 1 1 @ 1 0 03517760 -high_finance n 1 1 @ 1 1 01099231 -high_frequency n 2 2 @ #p 2 2 05057593 04985790 -high_gear n 1 3 @ ~ #p 1 0 03518631 -high_german n 1 4 @ ~ ; - 1 0 06950528 -high_ground n 1 1 @ 1 0 13949463 -high_hat n 2 1 @ 2 0 03518829 03237416 -high_holiday n 1 2 @ ~ 1 0 15184008 -high_holy_day n 1 2 @ ~ 1 0 15184008 -high_horse n 1 1 @ 1 0 06195555 -high_jinks n 1 2 @ ; 1 0 00510050 -high_jinx n 1 2 @ ; 1 0 00510050 -high_jump n 2 2 @ ~ 2 0 07469476 00440509 -high_life n 1 1 @ 1 0 00743641 -high_mallow n 1 2 @ #m 1 0 12171503 -high_mass n 1 2 @ %p 1 0 01042465 -high_muckamuck n 1 1 @ 1 0 10748620 -high_noon n 1 2 @ #p 1 0 15165490 -high_pitch n 1 2 ! @ 1 0 04985790 -high_point n 1 2 @ #p 1 0 05868779 -high_priest n 2 2 @ ~ 2 0 10175248 09807075 -high_profile n 1 1 @ 1 0 13950703 -high_quality n 1 3 ! @ ~ 1 1 04728376 -high_relief n 1 2 ! @ 1 0 02700422 -high_renaissance n 1 2 @ #p 1 0 04929742 -high_roller n 2 1 @ 2 0 10635625 10175418 -high_school n 1 1 @ 1 1 08409617 -high_sea n 1 3 ! @ #p 1 1 09302804 -high_season n 1 2 ! @ 1 0 15238570 -high_sierra n 1 3 @ #p %p 1 0 09434845 -high_sign n 1 1 @ 1 0 06806318 -high_society n 1 2 @ %m 1 1 08387930 -high_spirits n 1 2 @ ~ 1 1 07527656 -high_spot n 1 1 @ 1 0 13810141 -high_status n 1 3 ! @ ~ 1 0 13948441 -high_stepper n 1 1 @ 1 0 02388588 -high_street n 1 2 @ ~ 1 0 03712729 -high_style n 1 1 @ 1 0 05751063 -high_table n 1 2 @ #p 1 0 03519674 -high_tea n 1 2 @ ; 1 0 07575392 -high_tech n 1 2 @ ~ 1 0 00950858 -high_technology n 1 3 @ ~ + 1 0 00950858 -high_temperature n 1 2 @ ~ 1 1 05016171 -high_tide n 1 3 ! @ ~ 1 0 07401960 -high_time n 1 1 @ 1 1 15245711 -high_treason n 1 1 @ 1 0 00782072 -high_water n 1 2 @ ~ 1 0 07401960 -high_wind n 1 1 @ 1 0 11443057 -high_wire n 1 1 @ 1 0 03520399 -highball n 1 2 @ ~ 1 0 07912211 -highball_glass n 1 1 @ 1 0 03518135 -highbinder n 1 1 @ 1 0 10174253 -highboard n 1 1 @ 1 0 03518230 -highboy n 1 1 @ 1 0 03518305 -highbrow n 1 2 @ + 1 0 10174330 -highbush_cranberry n 1 2 @ #m 1 0 12680402 -highchair n 1 2 @ %p 1 0 03518445 -higher-up n 1 2 @ ~ 1 0 10676018 -higher_cognitive_process n 1 2 @ ~ 1 0 05770664 -higher_criticism n 1 1 @ 1 0 06375329 -higher_education n 1 1 @ 1 1 00886699 -higher_law n 1 1 @ 1 0 06655569 -higher_national_diploma n 1 2 @ ; 1 0 06478734 -higher_rank n 1 2 @ = 1 0 13949576 -higher_status n 1 2 @ = 1 0 13949576 -highest_common_factor n 1 1 @ 1 0 13735163 -highflier n 1 1 @ 1 0 10174589 -highflyer n 1 1 @ 1 0 10174589 -highjack n 1 3 @ ~ + 1 0 00769944 -highjacker n 2 4 @ ~ + ; 2 0 10175725 10175507 -highjacking n 1 3 @ ~ + 1 0 00783199 -highland n 1 4 ! @ ~ + 1 0 09302616 -highland_fling n 1 1 @ 1 0 00538791 -highland_scot n 1 1 @ 1 0 10174695 -highlander n 2 2 @ + 2 0 10174845 10174695 -highlands n 1 3 @ #p + 1 0 08891595 -highlands_of_scotland n 1 2 @ #p 1 0 08891595 -highlife n 1 1 @ 1 0 00743641 -highlight n 2 2 @ + 2 0 13810141 04952120 -highlighter n 2 2 @ + 2 0 03519081 03518943 -highlighting n 1 2 @ + 1 0 04952120 -highly_active_antiretroviral_therapy n 1 2 @ %p 1 0 03248560 -highness n 3 4 ! @ #m + 3 1 10175090 05137402 05097361 -highroad n 1 2 @ ; 1 1 03519578 -highschool n 1 1 @ 1 1 08409617 -highwater n 1 2 @ ~ 1 0 07401960 -highway n 1 3 @ ~ %p 1 1 03519981 -highway_code n 1 2 @ ; 1 0 06669384 -highway_engineer n 1 1 @ 1 0 10175963 -highway_robbery n 2 1 @ 2 0 13304927 00783419 -highway_system n 1 1 @ 1 0 03520275 -highwayman n 1 2 @ ~ 1 1 10175507 -higi n 1 1 @ 1 0 06983997 -hijab n 2 1 @ 2 0 03520493 00414599 -hijack n 1 3 @ ~ + 1 0 00769944 -hijacker n 2 4 @ ~ + ; 2 1 10175507 10175725 -hijacking n 1 3 @ ~ + 1 0 00783199 -hijaz n 1 3 @ #p %p 1 0 08995515 -hijinks n 1 2 @ ; 1 0 00510050 -hike n 3 3 @ ~ + 3 1 00288970 05110408 05110185 -hiker n 1 3 @ ~ + 1 0 10176111 -hiking n 1 2 @ ~ 1 0 00288970 -hilaire_belloc n 1 1 @ 1 0 10843035 -hilaire_germain_edgar_degas n 1 1 @ 1 0 10927687 -hilarity n 1 2 @ + 1 1 07529377 -hilary_clinton n 1 1 @ 1 0 10902752 -hilary_rodham_clinton n 1 1 @ 1 0 10902752 -hilbert n 1 1 @ 1 0 11049835 -hilbert_space n 1 1 @ 1 0 08005123 -hildebrand n 1 1 @ 1 0 11014212 -hill n 5 6 @ ~ #p %p + ; 5 2 09303008 03792048 11050057 11049938 03792334 -hill_myna n 1 1 @ 1 0 01578180 -hillary n 1 1 @ 1 0 11050183 -hillbilly n 1 1 @ 1 1 10176357 -hillbilly_music n 1 1 @ 1 1 07062315 -hillel n 1 1 @ 1 0 11050436 -hilliness n 1 2 @ + 1 0 04772557 -hillock n 1 2 @ ~ 1 1 09326662 -hillside n 1 3 @ ~ #p 1 1 09303528 -hilltop n 1 1 @ 1 0 08584787 -hilo n 1 2 @ #p 1 0 09078654 -hilt n 1 4 @ ~ #p %p 1 1 03520654 -hilum n 2 3 @ + ; 2 1 05224755 11678493 -hilus n 1 2 @ ; 1 0 05224755 -himalaya n 1 3 @ #p %p 1 0 09303647 -himalaya_honeysuckle n 1 2 @ #m 1 0 12673012 -himalaya_mountains n 1 3 @ #p %p 1 0 09303647 -himalayan_cedar n 1 1 @ 1 0 11623967 -himalayan_lilac n 1 1 @ 1 0 12310638 -himalayan_rhubarb n 1 2 @ #m 1 0 12603273 -himalayas n 1 4 @ #p %p + 1 0 09303647 -himalayish n 1 2 @ ~ 1 0 06931724 -himantoglossum n 1 3 @ #m %m 1 0 12069488 -himantoglossum_hircinum n 1 2 @ #m 1 0 12069679 -himantopus n 1 3 @ #m %m 1 0 02034394 -himantopus_himantopus n 1 2 @ #m 1 0 02035210 -himantopus_himantopus_leucocephalus n 1 2 @ #m 1 0 02035402 -himantopus_mexicanus n 1 2 @ #m 1 0 02034971 -himantopus_novae-zelandiae n 1 2 @ #m 1 0 02035656 -himantopus_stilt n 1 3 @ ~ #m 1 0 02034661 -himmler n 1 1 @ 1 0 11050537 -hin n 1 1 @ 1 0 13617207 -hinault n 1 1 @ 1 0 11050723 -hinayana n 2 3 @ %m + 2 0 08099475 06241576 -hinayana_buddhism n 1 1 @ 1 0 06241576 -hinayanism n 1 1 @ 1 0 06188889 -hinayanist n 1 3 @ #m + 1 0 09684226 -hind n 2 3 @ ~ #m 2 0 02569484 02431441 -hind_end n 1 2 @ #p 1 0 05559256 -hind_leg n 1 3 @ #p %p 1 1 02464626 -hind_limb n 1 2 @ ~ 1 0 02464461 -hindbrain n 1 4 @ ~ #p %p 1 0 05500594 -hindemith n 1 1 @ 1 0 11050870 -hindenburg n 1 1 @ 1 0 11051070 -hinderance n 3 2 @ ~ 3 0 05689249 03520811 01073995 -hindfoot n 1 2 @ #p 1 0 02439829 -hindgut n 1 2 @ #p 1 0 05534578 -hindi n 1 3 @ ~ + 1 0 06970103 -hindlimb n 1 2 @ ~ 1 0 02464461 -hindoo n 2 4 @ ~ #m + 2 0 09713501 09684609 -hindooism n 2 5 @ ~ %m ; - 2 0 08096624 06236802 -hindoostani n 1 1 @ 1 0 06970373 -hindostani n 1 1 @ 1 0 06970373 -hindquarter n 1 1 @ 1 0 07655988 -hindquarters n 2 3 @ ~ #p 2 0 05559256 02463611 -hindrance n 3 3 @ ~ + 3 0 05689249 03520811 01073995 -hindshank n 1 1 @ 1 0 07657337 -hindsight n 1 1 @ 1 0 05807147 -hindu n 2 4 @ ~ #m + 2 0 09713501 09684609 -hindu-arabic_numeral n 1 1 @ 1 0 06807501 -hindu_calendar n 1 2 @ %p 1 0 15179415 -hindu_calendar_month n 1 3 @ ~ #p 1 0 15219351 -hindu_deity n 1 3 @ ~ ; 1 0 09522978 -hindu_kush n 1 3 @ #p %p 1 0 09304164 -hindu_kush_mountains n 1 3 @ #p %p 1 0 09304164 -hindu_numeral n 1 1 @ 1 0 06807501 -hinduism n 2 5 @ ~ %m ; - 2 0 08096624 06236802 -hindustan n 1 3 @ #p %m 1 0 08902422 -hindustani n 2 4 @ ~ #m + 2 0 09713501 06970373 -hinge n 2 5 @ ~ #p %p + 2 1 03521076 13943598 -hinge_joint n 2 2 @ ~ 2 0 05580416 03627954 -hinging_post n 1 1 @ 1 0 03521431 -hinny n 1 2 @ #m 1 0 02390258 -hint n 5 3 @ ~ + 5 2 07163988 06802785 13774115 13773361 06651577 -hinterland n 1 1 @ 1 0 08502672 -hip n 5 4 @ #p %p ; 5 3 05556325 05596651 05596004 13890679 12620546 -hip-hop n 2 1 @ 2 0 08289282 07064055 -hip_bath n 1 1 @ 1 0 04225031 -hip_boot n 1 2 @ ~ 1 0 03521544 -hip_joint n 1 3 @ #p %p 1 0 05596004 -hip_pad n 1 1 @ 1 1 03521771 -hip_pocket n 1 2 @ #p 1 0 03521899 -hip_roof n 1 2 @ %p 1 0 03522100 -hip_socket n 1 2 @ #p 1 0 05285101 -hip_tile n 1 1 @ 1 0 14908027 -hipbone n 1 3 @ #p %p 1 0 05274959 -hipflask n 1 1 @ 1 0 03521675 -hipline n 2 2 @ #p 2 1 08583682 08583554 -hipparchus n 1 1 @ 1 0 11051376 -hippeastrum n 1 2 @ #m 1 0 12421137 -hippeastrum_puniceum n 1 2 @ #m 1 0 12421137 -hipped_roof n 1 2 @ %p 1 0 03522100 -hipped_tile n 1 1 @ 1 0 14908027 -hippie n 1 2 @ #m 1 0 10176475 -hippies n 1 2 @ %m 1 0 08289841 -hippo n 2 3 @ #m #p 2 0 08707145 02398521 -hippo_regius n 1 2 @ #p 1 0 08707145 -hippobosca n 1 3 @ #m %m 1 0 02198714 -hippobosca_equina n 1 2 @ #m 1 0 02198859 -hippoboscid n 1 3 @ ~ #m 1 0 02198532 -hippoboscidae n 1 3 @ #m %m 1 0 02198332 -hippocampus n 2 4 @ #m #p %m 2 0 05496261 01456631 -hippocastanaceae n 1 3 @ #m %m 1 0 12767951 -hippocrates n 1 2 @ + 1 0 11051632 -hippocratic_oath n 1 1 @ 1 0 07227158 -hippocrepis n 1 2 @ #m 1 0 12535101 -hippocrepis_comosa n 1 1 @ 1 0 12535254 -hippodamia n 1 3 @ #m %m 1 0 02166436 -hippodamia_convergens n 1 2 @ #m 1 0 02166567 -hippodrome n 1 1 @ 1 0 03522003 -hippoglossoides n 1 2 @ #m 1 0 02659961 -hippoglossoides_platessoides n 1 1 @ 1 0 02660091 -hippoglossus n 1 2 @ #m 1 0 02660412 -hippoglossus_hippoglossus n 1 1 @ 1 0 02660519 -hippoglossus_stenolepsis n 1 1 @ 1 0 02660640 -hippolyte_jean_giraudoux n 1 1 @ 1 0 11001211 -hippopotamidae n 1 3 @ #m %m 1 0 02398252 -hippopotamus n 1 2 @ #m 1 0 02398521 -hippopotamus_amphibius n 1 2 @ #m 1 0 02398521 -hipposideridae n 1 3 @ #m %m 1 0 02143594 -hipposideros n 1 3 @ #m %m 1 0 02143759 -hippotragus n 1 3 @ #m %m 1 0 02425756 -hippotragus_niger n 1 2 @ #m 1 0 02425887 -hippy n 1 2 @ #m 1 0 10176475 -hipster n 1 2 @ #m 1 0 10176475 -hipsters n 1 2 @ %m 1 0 08289841 -hipsurus n 1 3 @ #m %m 1 0 02571034 -hipsurus_caryi n 1 2 @ #m 1 0 02571167 -hiram_king_williams n 1 1 @ 1 0 11390364 -hiram_ulysses_grant n 1 1 @ 1 0 11011123 -hiram_williams n 1 1 @ 1 0 11390364 -hire n 2 1 @ 2 0 10170060 00809074 -hire-purchase n 1 2 @ ; 1 0 13296752 -hire_car n 1 1 @ 1 0 13248598 -hired_gun n 1 1 @ 1 0 10152083 -hired_hand n 1 2 @ ~ 1 0 10176679 -hired_help n 1 2 @ ~ 1 0 10170172 -hired_man n 1 2 @ ~ 1 1 10176679 -hireling n 1 1 @ 1 0 10176913 -hirer n 1 3 @ ~ + 1 0 09867956 -hiring_freeze n 1 1 @ 1 0 00809201 -hiring_hall n 1 1 @ 1 0 08354678 -hirohito n 1 1 @ 1 0 11051822 -hiroshima n 1 2 @ #p 1 0 08925287 -hirschfeld n 1 1 @ 1 0 11052043 -hirschsprung n 1 1 @ 1 0 11052186 -hirschsprung's_disease n 1 1 @ 1 0 14156488 -hirsuteness n 1 2 @ + 1 0 04683600 -hirsutism n 1 1 @ 1 0 04683600 -hirudinea n 1 3 @ #m %m 1 0 01937719 -hirudinean n 1 3 @ ~ #m 1 0 01937909 -hirudinidae n 1 3 @ #m %m 1 0 01938155 -hirudo n 1 3 @ #m %m 1 0 01938312 -hirudo_medicinalis n 1 2 @ #m 1 0 01938454 -hirundinidae n 1 3 @ #m %m 1 0 01594157 -hirundo n 1 3 @ #m %m 1 0 01594611 -hirundo_nigricans n 1 2 @ #m 1 0 01595168 -hirundo_pyrrhonota n 1 2 @ #m 1 0 01594968 -hirundo_rustica n 1 2 @ #m 1 0 01594787 -hispanic n 1 3 @ ~ + 1 0 10629647 -hispanic_american n 1 2 @ ~ 1 0 10629647 -hispaniola n 1 4 @ #p %p + 1 0 08751317 -hispid_pocket_mouse n 1 2 @ #m 1 0 02349557 -hiss n 2 2 @ + 2 0 07384898 07123870 -hisser n 1 2 @ + 1 0 10177014 -hissing n 1 2 @ + 1 1 07384898 -histaminase n 1 1 @ 1 0 14908297 -histamine n 1 1 @ 1 0 05414724 -histamine_blocker n 1 2 @ ~ 1 0 03522239 -histamine_headache n 1 1 @ 1 0 14327543 -histidine n 1 1 @ 1 0 14908146 -histiocyte n 1 2 @ #p 1 0 05450617 -histiocytic_leukaemia n 1 1 @ 1 0 14244726 -histiocytic_leukemia n 1 1 @ 1 0 14244726 -histiocytosis n 1 2 @ ~ 1 0 14192790 -histocompatibility n 1 1 @ 1 0 11466458 -histocompatibility_complex n 1 1 @ 1 0 08007204 -histogram n 1 1 @ 1 0 07001865 -histoincompatibility n 1 1 @ 1 0 13975292 -histologist n 1 3 @ ~ + 1 0 10170359 -histology n 1 3 @ + - 1 1 06077413 -histone n 1 1 @ 1 0 15026256 -historian n 1 3 @ ~ ; 1 1 10177150 -historic_period n 1 3 @ ~ #p 1 0 15254028 -historical_document n 1 1 @ 1 0 06515489 -historical_linguistics n 1 3 @ %p - 1 0 06169050 -historical_paper n 1 1 @ 1 0 06515489 -historical_present n 1 1 @ 1 0 06329909 -historical_record n 1 1 @ 1 0 06515489 -historical_school n 1 1 @ 1 0 08275843 -historicalness n 2 2 @ + 2 0 13956362 05170088 -historicism n 1 1 @ 1 0 06155891 -historiographer n 1 4 @ ~ + ; 1 0 10177150 -historiography n 2 2 @ + 2 0 06365357 00931217 -history n 5 6 @ ~ %p + ; - 5 5 15121406 06514093 06155567 15123996 06156752 -history_department n 1 1 @ 1 0 08116734 -history_lesson n 1 1 @ 1 0 00890227 -histrion n 1 2 @ ~ 1 0 09765278 -histrionics n 2 3 @ ~ + 2 1 06893885 07213889 -hit n 7 4 @ ~ + ; 7 3 00043902 00125629 00064504 07302542 03522559 01250335 00145779 -hit_list n 1 1 @ 1 0 06491561 -hit_man n 1 1 @ 1 0 10152083 -hit_parade n 2 1 @ 2 0 07977108 06491665 -hit_squad n 1 2 @ ~ 1 0 08209076 -hitch n 7 3 @ ~ + 7 1 15293590 14010927 05691144 03522863 03522634 03520811 00286756 -hitchcock n 1 1 @ 1 0 11052299 -hitchhiker n 1 2 @ + 1 0 10178077 -hitching_bar n 1 1 @ 1 0 03523134 -hitching_post n 1 1 @ 1 1 03522990 -hitchings n 1 1 @ 1 0 11052498 -hitchiti n 2 2 @ #m 2 0 09656378 06912537 -hitchrack n 1 1 @ 1 0 03523134 -hitler n 1 2 @ + 1 1 11052672 -hitman n 1 1 @ 1 0 10152083 -hitter n 2 4 @ ~ + ; 2 1 09843956 10178216 -hitting n 1 3 @ ~ + 1 0 00125629 -hitting_average n 1 2 @ ; 1 0 13817872 -hittite n 2 1 @ 2 0 10178464 06975902 -hiv n 2 1 @ 2 0 14179744 01336718 -hive n 3 5 @ ~ #p %p + 3 2 08182892 02822865 09218159 -hives n 1 1 @ 1 0 14322248 -hizb_ut-tahrir n 1 2 @ ; 1 0 08023843 -hizballah n 1 2 @ ; 1 0 08023374 -hizbollah n 1 2 @ ; 1 0 08023374 -hizbullah n 1 2 @ ; 1 0 08023374 -hl n 1 3 @ #p %p 1 0 13624705 -hm n 1 3 @ #p %p 1 0 13659604 -hmg-coa_reductase n 1 1 @ 1 0 14612444 -hmo n 1 1 @ 1 0 13349208 -hmong n 2 1 @ 2 0 09713764 06937098 -hmong_language n 1 1 @ 1 0 06937098 -hn n 1 2 @ %s 1 0 14612764 -hnd n 1 2 @ ; 1 0 06478734 -ho n 1 2 @ #s 1 0 14640222 -ho_chi_minh n 1 1 @ 1 0 11053344 -ho_chi_minh_city n 1 2 @ #p 1 0 09164241 -hoactzin n 1 2 @ #m 1 0 01809752 -hoagie n 1 1 @ 1 0 07697825 -hoagland n 1 1 @ 1 0 11052843 -hoagland_howard_carmichael n 1 1 @ 1 0 10882846 -hoagy n 1 1 @ 1 0 07697825 -hoagy_carmichael n 1 1 @ 1 0 10882846 -hoar n 1 1 @ 1 0 14915622 -hoard n 1 2 @ + 1 0 13366912 -hoarded_wealth n 1 2 @ ~ 1 0 13370669 -hoarder n 1 3 @ ~ + 1 0 10178611 -hoarding n 1 1 @ 1 0 02839110 -hoarfrost n 1 1 @ 1 0 14915622 -hoariness n 2 2 @ + 2 0 04961583 04926308 -hoarseness n 1 2 @ + 1 0 04988861 -hoary_alison n 1 2 @ #m 1 0 11874423 -hoary_alyssum n 1 2 @ #m 1 0 11874423 -hoary_golden_bush n 1 2 @ #m 1 0 11976933 -hoary_marmot n 1 1 @ 1 0 02361706 -hoary_pea n 1 3 @ ~ #m 1 0 12572546 -hoary_plantain n 2 1 @ 2 0 12600267 12599661 -hoary_puccoon n 1 2 @ #m 1 0 12821048 -hoary_willow n 1 2 @ #m 1 0 12728164 -hoatzin n 1 2 @ #m 1 0 01809752 -hoax n 1 3 @ ~ + 1 0 00753685 -hoaxer n 1 2 @ + 1 0 10463714 -hob n 4 4 @ ~ + ; 4 0 09543748 09540739 03523398 03523288 -hobart n 1 2 @ #p 1 0 08834280 -hobbes n 1 1 @ 1 0 11052955 -hobbit n 1 1 @ 1 0 09488995 -hobble n 2 2 @ + 2 0 03330947 00286756 -hobble_skirt n 1 1 @ 1 0 03523506 -hobbledehoy n 1 1 @ 1 0 10178821 -hobbler n 1 2 @ + 1 0 10178917 -hobbs n 1 1 @ 1 0 11053218 -hobby n 3 5 @ ~ #m %p + 3 1 00432689 03523633 01612476 -hobbyhorse n 2 2 @ %p 2 0 05705583 03523633 -hobbyism n 1 1 @ 1 0 01206910 -hobbyist n 1 2 @ + 1 0 10179069 -hobgoblin n 2 2 @ ; 2 0 09543748 05811662 -hobnail n 1 2 @ + 1 0 03523849 -hobo n 1 2 @ ~ 1 0 10723300 -hobo_camp n 1 1 @ 1 0 08478171 -hobson's_choice n 1 1 @ 1 0 05792575 -hock n 2 5 @ ~ #p + ; 2 0 07897200 02463205 -hock-joint n 1 2 @ #p 1 0 02463205 -hockey n 2 4 @ ~ %p - 2 0 00467995 00463543 -hockey_clinic n 1 1 @ 1 0 07146980 -hockey_coach n 1 1 @ 1 0 10179207 -hockey_game n 1 3 @ %p - 1 0 00463543 -hockey_league n 1 2 @ %m 1 0 08232603 -hockey_player n 1 2 @ ~ 1 0 10179291 -hockey_puck n 1 1 @ 1 0 04019541 -hockey_season n 1 1 @ 1 0 15241094 -hockey_skate n 1 1 @ 1 0 03523987 -hockey_stick n 1 1 @ 1 0 03524150 -hockey_team n 1 3 @ #m %m 1 0 08080386 -hocus-pocus n 1 1 @ 1 0 06760722 -hod n 1 1 @ 1 0 03524287 -hod_carrier n 1 1 @ 1 0 10179527 -hodeida n 1 2 @ #p 1 0 09165146 -hoder n 1 2 @ ; 1 0 09581129 -hodgepodge n 2 1 @ 2 1 08399977 05953416 -hodgkin n 3 1 @ 3 0 11054034 11053817 11053559 -hodgkin's_disease n 1 1 @ 1 0 14242132 -hodman n 1 1 @ 1 0 10179527 -hodometer n 1 2 @ #p 1 0 03841143 -hodoscope n 1 2 @ ; 1 0 03524425 -hodr n 1 2 @ ; 1 0 09581129 -hodur n 1 2 @ ; 1 0 09581129 -hoe n 1 4 @ ~ %p + 1 1 03524574 -hoe_handle n 1 2 @ #p 1 0 03524745 -hoecake n 1 3 @ %s ; 1 0 07688412 -hoek_van_holland n 1 2 @ #p 1 0 09305479 -hoenir n 1 2 @ ; 1 0 09580971 -hoffa n 1 1 @ 1 0 11054173 -hoffman n 2 1 @ 2 0 11054563 11054442 -hoffmann n 4 1 @ 4 0 11055154 11055042 11054856 11054670 -hoffmannsthal n 1 1 @ 1 0 11055296 -hog n 3 6 @ ~ #m %s %p + 3 0 10179649 02412787 02395406 -hog-nosed_badger n 1 2 @ #m 1 0 02448885 -hog-nosed_skunk n 1 2 @ #m 1 0 02446645 -hog_badger n 1 2 @ #m 1 0 02448885 -hog_cholera n 1 1 @ 1 0 14263944 -hog_cranberry n 1 1 @ 1 0 12231358 -hog_millet n 1 1 @ 1 0 12127575 -hog_molly n 1 1 @ 1 0 01445857 -hog_peanut n 1 2 @ #m 1 0 12505253 -hog_plum n 4 4 @ #m #p %p 4 0 12765846 12639168 07765728 07765612 -hog_plum_bush n 1 2 @ %p 1 0 12639168 -hog_snapper n 1 1 @ 1 0 02608547 -hog_sucker n 1 1 @ 1 0 01445857 -hogan n 2 1 @ 2 0 11055454 03524840 -hogarth n 1 1 @ 1 0 11055612 -hogback n 1 1 @ 1 0 09304376 -hogchoker n 1 2 @ #m 1 0 02665250 -hogfish n 2 2 @ #m 2 0 02608547 02590094 -hogg n 2 1 @ 2 0 11055807 02412787 -hogget n 1 1 @ 1 0 02412787 -hoggishness n 1 2 @ + 1 0 04886235 -hogmanay n 1 1 @ 1 0 15182724 -hognose_bat n 1 2 @ #m 1 0 02143142 -hognose_snake n 1 2 @ #m 1 0 01729322 -hognosed_skunk n 1 2 @ #m 1 0 02446645 -hogshead n 2 2 @ %p 2 0 13623205 03524976 -hogwash n 1 2 @ ~ 1 0 06611681 -hogweed n 1 2 @ #m 1 0 12939874 -hohenlinden n 2 3 @ #p ; 2 0 08772028 01280792 -hohenzollern n 1 2 @ %m 1 0 08155518 -hohenzollern_empire n 1 1 @ 1 0 08169919 -hoheria n 1 3 @ #m %m 1 0 12180714 -hoheria_populnea n 1 2 @ #m 1 0 12180885 -hohhot n 1 2 @ #p 1 0 08730218 -hoi_polloi n 1 2 @ ~ 1 0 08180190 -hoisin_sauce n 1 1 @ 1 0 07824268 -hoist n 1 3 @ ~ + 1 0 03525074 -hoister n 1 2 @ + 1 0 10179817 -hoka n 2 2 @ ~ 2 0 09656673 06920756 -hokan n 2 2 @ ~ 2 1 06920756 09656673 -hokkaido n 1 3 @ #p %p 1 0 08920722 -hokkianese n 1 1 @ 1 0 06930633 -hokum n 1 2 @ ~ 1 0 06607339 -hokusai n 1 1 @ 1 0 11055915 -holandric_gene n 1 1 @ 1 0 05442022 -holarrhena n 1 3 @ #m %m 1 0 11772702 -holarrhena_antidysenterica n 1 2 @ #m 1 0 11772879 -holarrhena_pubescens n 1 2 @ #m 1 0 11772879 -holbein n 2 1 @ 2 0 11056195 11056060 -holbein_the_elder n 1 1 @ 1 0 11056060 -holbein_the_younger n 1 1 @ 1 0 11056195 -holbrookia n 1 3 @ #m %m 1 0 01679178 -holcus n 1 2 @ #m 1 0 12122581 -holcus_lanatus n 1 1 @ 1 0 12122725 -holcus_mollis n 1 1 @ 1 0 12122918 -hold n 9 6 @ ~ #p %p + ; 9 3 00812526 05806623 05197232 15272029 13999663 03525372 03525252 03485997 02964634 -hold-down n 1 2 @ + 1 0 00808614 -holdall n 1 1 @ 1 0 02970408 -holder n 3 3 @ ~ + 3 1 03525454 10180178 10179911 -holdfast n 1 3 @ ~ + 1 0 03323703 -holding n 2 3 @ ~ + 2 1 00810598 13244109 -holding_cell n 1 1 @ 1 0 03525693 -holding_company n 1 2 @ ~ 1 0 08185369 -holding_device n 1 2 @ ~ 1 0 03525827 -holding_paddock n 1 1 @ 1 0 03526062 -holding_pattern n 2 1 @ 2 0 14012311 08501729 -holding_pen n 1 1 @ 1 0 03526062 -holding_yard n 1 1 @ 1 0 03526062 -holdout n 3 2 @ + 3 0 10180580 07150328 00780466 -holdover n 2 2 @ + 2 0 10180791 01022292 -holdup n 2 3 @ ~ + 2 1 00781912 01066163 -holdup_man n 1 2 @ ~ 1 0 10180923 -hole n 8 4 @ ~ #p + 8 5 09304465 03526198 03526805 13911429 09304750 14464793 14409489 05302307 -hole-in-the-wall n 1 1 @ 1 0 08584914 -hole_card n 2 2 @ ; 2 0 13369159 03527000 -holibut n 1 2 @ %p 1 0 02660208 -holiday n 2 3 @ ~ + 2 2 15137890 15183428 -holiday_resort n 1 3 @ ~ #p 1 0 08640531 -holiday_season n 1 1 @ 1 0 15238472 -holidaymaker n 1 2 @ ~ 1 0 10718131 -holiness n 1 5 ! @ ~ = + 1 0 04855138 -holism n 1 4 ! @ + - 1 0 06102865 -holistic_medicine n 1 1 @ 1 0 00697024 -holistic_theory n 1 2 @ - 1 0 06102865 -holla n 1 1 @ 1 0 07121361 -holland n 1 6 @ #m #p %m %p + 1 1 08949093 -holland_gin n 1 1 @ 1 0 07904760 -hollandaise n 1 1 @ 1 0 07835457 -hollander n 1 3 @ #m + 1 0 09713108 -hollands n 1 1 @ 1 0 07904760 -holler n 2 3 @ ~ + 2 1 07121361 09305031 -hollering n 1 2 @ + 1 1 07121361 -hollerith n 1 1 @ 1 0 11056466 -hollerith_card n 1 1 @ 1 0 04023808 -hollo n 1 2 @ + 1 0 07121361 -holloa n 1 1 @ 1 0 07121361 -hollow n 3 3 @ ~ + 3 3 13910895 09305031 09304750 -hollow-back n 1 1 @ 1 0 14505215 -holloware n 1 1 @ 1 0 03527149 -hollowness n 3 4 ! @ ~ + 3 1 14455552 05070197 04867871 -hollowware n 1 1 @ 1 0 03527149 -holly n 2 3 @ ~ #m 2 0 12756457 11056654 -holly-leaf_cherry n 1 1 @ 1 0 12646397 -holly-leaved_cherry n 1 1 @ 1 0 12646397 -holly-leaved_oak n 1 1 @ 1 0 12272432 -holly-leaves_barberry n 1 1 @ 1 0 11699442 -holly_family n 1 3 @ #m %m 1 0 12756286 -holly_fern n 2 3 @ ~ #m 2 0 13199970 13195341 -hollygrape n 1 1 @ 1 0 11699442 -hollyhock n 2 3 @ ~ #m 2 2 12174311 12173664 -hollywood n 3 1 @ 3 1 08068597 14525777 09063950 -holm_oak n 2 1 @ 2 0 12272650 12272432 -holm_tree n 1 1 @ 1 0 12272432 -holman_hunt n 1 1 @ 1 0 11067047 -holmes n 4 1 @ 4 1 09604451 11057076 11056947 11056799 -holmium n 1 2 @ #s 1 0 14640222 -holocanthus_tricolor n 1 1 @ 1 0 02606052 -holocaust n 2 1 @ 2 1 01245318 01245471 -holocene n 1 2 @ #p 1 0 15124713 -holocene_epoch n 1 2 @ #p 1 0 15124713 -holocentridae n 1 3 @ #m %m 1 0 01450281 -holocentrus n 1 3 @ #m %m 1 0 01450453 -holocentrus_ascensionis n 1 2 @ #m 1 0 01451295 -holocentrus_bullisi n 1 2 @ #m 1 0 01451115 -holocentrus_coruscus n 1 2 @ #m 1 0 01450950 -holocephalan n 1 3 @ ~ #m 1 0 01480880 -holocephali n 1 3 @ #m %m 1 0 01480715 -holocephalian n 1 3 @ ~ #m 1 0 01480880 -holofernes n 1 2 @ ; 1 0 11057221 -hologram n 1 1 @ 1 0 03527243 -holograph n 2 2 @ ~ 2 0 06407221 03527243 -holography n 1 1 @ 1 0 06101333 -holometabola n 1 1 @ 1 0 02161225 -holometabolism n 1 3 @ + ; 1 0 13493692 -holometaboly n 1 3 @ + ; 1 0 13493692 -holonym n 1 1 @ 1 0 06292478 -holonymy n 1 1 @ 1 0 13808566 -holophyte n 1 2 @ + 1 0 11530860 -holothuria n 1 3 @ #m %m 1 0 02321903 -holothuria_edulis n 1 2 @ #m 1 0 02322047 -holothurian n 1 3 @ ~ #m 1 0 02321529 -holothuridae n 1 3 @ #m %m 1 0 02321759 -holothuroidea n 1 3 @ #m %m 1 0 02321342 -holotype n 1 1 @ 1 0 05938170 -holstein n 1 1 @ 1 0 02407390 -holstein-friesian n 1 1 @ 1 0 02407390 -holster n 2 2 @ ~ 2 1 03527444 03527565 -holy n 1 1 @ 1 0 08585056 -holy_city n 1 1 @ 1 0 05628193 -holy_clover n 1 2 @ #m 1 0 12552309 -holy_communion n 1 3 @ ~ #p 1 0 01036333 -holy_day n 1 3 @ ~ #p 1 0 15183802 -holy_day_of_obligation n 1 2 @ ~ 1 0 15185007 -holy_eucharist n 1 2 @ %p 1 0 01035853 -holy_father n 1 3 @ ~ #m 1 1 10453533 -holy_ghost n 1 1 @ 1 0 09537781 -holy_grail n 1 2 @ ; 1 0 03451909 -holy_innocents'_day n 1 1 @ 1 0 15192116 -holy_joe n 1 2 @ ; 1 0 10316527 -holy_land n 1 4 @ #p %p - 1 0 08798382 -holy_man n 1 2 @ ~ 1 0 10546850 -holy_of_holies n 2 3 @ #p ; 2 0 04855641 03527675 -holy_oil n 1 1 @ 1 0 03026350 -holy_order n 2 3 @ ~ %p 2 0 13950812 01039822 -holy_person n 1 2 @ ~ 1 0 10546850 -holy_place n 1 1 @ 1 0 08585056 -holy_roller n 1 1 @ 1 0 10181026 -holy_roman_emperor n 1 2 @ ~ 1 0 10181137 -holy_roman_emperor_frederick_ii n 1 1 @ 1 0 10980256 -holy_roman_empire n 1 2 @ #p 1 0 08169677 -holy_sacrament n 1 2 @ %p 1 1 01035853 -holy_saturday n 1 1 @ 1 0 15192008 -holy_scripture n 1 4 @ ~ %p - 1 1 06431740 -holy_see n 1 3 @ #p %p 1 0 09161090 -holy_sepulcher n 1 2 @ #p 1 0 03527930 -holy_sepulchre n 1 2 @ #p 1 0 03527930 -holy_spirit n 1 1 @ 1 1 09537781 -holy_terror n 1 1 @ 1 0 10702483 -holy_thistle n 1 2 @ #m 1 0 12015525 -holy_thursday n 1 1 @ 1 0 15193526 -holy_trinity n 1 2 @ %m 1 0 09536789 -holy_war_warriors n 1 2 @ ; 1 0 08031386 -holy_water n 1 1 @ 1 0 14846517 -holy_week n 1 2 @ #p 1 0 15181444 -holy_writ n 1 4 @ ~ %p - 1 0 06431740 -holy_year n 1 2 @ ; 1 0 15181556 -holystone n 1 2 @ + 1 1 09305229 -homage n 1 1 @ 1 0 01229223 -homaridae n 1 3 @ #m %m 1 0 01982895 -homarus n 1 3 @ #m %m 1 0 01983277 -homarus_americanus n 1 3 @ #m %p 1 0 01983481 -homarus_capensis n 1 2 @ #m 1 0 01983829 -homarus_vulgaris n 1 3 @ #m %m 1 0 01983674 -hombre n 1 2 @ ~ 1 0 10153414 -homburg n 1 1 @ 1 0 03325941 -home n 9 5 @ ~ %p + ; 9 6 08559508 03259505 08490199 03528901 08490402 08585158 14513694 08078020 03528100 -home-builder n 1 1 @ 1 0 10181656 -home-farm n 1 2 @ ; 1 0 03528761 -home-fried_potatoes n 1 1 @ 1 0 07711232 -home_appliance n 1 2 @ ~ 1 0 03528263 -home_away_from_home n 1 1 @ 1 0 08559766 -home_banking n 1 1 @ 1 0 01100491 -home_base n 2 3 @ ~ ; 2 0 03528901 03504723 -home_brew n 1 1 @ 1 0 07886057 -home_buyer n 1 1 @ 1 0 10181799 -home_computer n 1 1 @ 1 0 03528523 -home_counties n 1 3 @ %m ; 1 0 08874469 -home_court n 1 2 @ ; 1 0 03528622 -home_ec n 1 1 @ 1 0 06149344 -home_economics n 1 1 @ 1 1 06149344 -home_equity_credit n 1 1 @ 1 0 13374979 -home_equity_loan n 1 1 @ 1 0 13374979 -home_folk n 1 1 @ 1 0 07948098 -home_fries n 1 1 @ 1 0 07711232 -home_from_home n 1 1 @ 1 0 08559766 -home_front n 1 1 @ 1 0 08180067 -home_game n 1 2 ! @ 1 0 00456804 -home_ground n 1 2 @ ~ 1 0 08580583 -home_guard n 1 3 @ ~ ; 1 0 08391021 -home_help n 1 2 @ ; 1 0 10181990 -home_invasion n 1 1 @ 1 0 00785482 -home_key n 1 1 @ 1 0 06864407 -home_loan n 1 1 @ 1 0 13374979 -home_loan_bank n 1 2 @ #m 1 0 08423298 -home_movie n 1 1 @ 1 1 06615458 -home_office n 2 3 @ ~ ; 2 0 08114287 03504723 -home_page n 1 1 @ 1 0 06359096 -home_plate n 1 2 @ ; 1 1 03528901 -home_port n 1 1 @ 1 0 08638141 -home_range n 1 1 @ 1 0 08585540 -home_reserve n 1 5 @ ~ %m %p ; 1 0 08391387 -home_room n 1 1 @ 1 0 03529175 -home_rule n 1 1 @ 1 0 13993210 -home_run n 2 3 @ ~ ; 2 1 00132355 00064789 -home_secretary n 1 2 @ #m 1 0 10182628 -home_stand n 1 1 @ 1 0 07465657 -home_study n 1 1 @ 1 0 00891224 -home_territory n 1 1 @ 1 0 08585540 -home_theater n 1 1 @ 1 0 03529860 -home_theatre n 1 1 @ 1 0 03529860 -home_truth n 1 1 @ 1 0 05819644 -homebody n 1 1 @ 1 0 10653388 -homebound n 1 3 @ %m + 1 1 07948183 -homeboy n 2 2 @ #p 2 0 10181547 10181445 -homebrew n 1 1 @ 1 0 07886057 -homebuilder n 1 1 @ 1 0 10181656 -homecoming n 2 2 @ ~ 2 0 00383281 00051192 -homecourt_advantage n 1 1 @ 1 0 05156993 -homefolk n 1 1 @ 1 1 07971298 -homegirl n 1 2 @ #m 1 0 10181878 -homel n 1 2 @ #p 1 0 09011679 -homeland n 1 2 @ ~ 1 1 08510169 -homeland_security n 1 2 @ %p 1 0 08134807 -homeless n 2 5 @ ~ #m %m + 2 0 10182190 07948314 -homeless_person n 1 3 @ ~ #m 1 0 10182190 -homelessness n 1 3 @ ~ + 1 0 13943053 -homeliness n 2 2 @ + 2 0 04816528 04691651 -homemaker n 1 1 @ 1 0 10189776 -homemaking n 1 1 @ 1 0 01134244 -homeobox n 1 1 @ 1 0 05438778 -homeobox_gene n 1 1 @ 1 0 05438778 -homeopath n 1 1 @ 1 0 10182402 -homeopathy n 1 2 ! @ 1 0 00710889 -homeostasis n 1 3 @ + ; 1 0 14003167 -homeotherm n 1 2 @ + 1 0 01315330 -homeotic_gene n 1 2 @ ~ 1 0 05438642 -homeowner n 1 2 @ ~ 1 0 10182499 -homepage n 1 1 @ 1 0 06359096 -homer n 5 4 @ ~ %p + 5 2 00132355 11057381 13617046 11057548 01814921 -homer_a._thompson n 1 1 @ 1 0 11339905 -homer_armstrong_thompson n 1 1 @ 1 0 11339905 -homer_thompson n 1 1 @ 1 0 11339905 -homeroom n 1 1 @ 1 0 03529175 -homesickness n 1 2 @ + 1 0 07487594 -homespun n 1 3 @ ~ + 1 0 03529444 -homestead n 3 2 @ + 3 0 13249699 13249400 03529629 -homestead_law n 1 2 @ ; 1 0 06538655 -homesteader n 1 2 @ + 1 1 10643218 -homestretch n 2 2 @ ; 2 0 07292418 03529740 -hometown n 1 1 @ 1 1 08671644 -homework n 1 2 @ #p 1 0 00729108 -homework_problem n 1 1 @ 1 0 06785101 -homicide n 1 3 @ ~ + 1 1 00220023 -homiletics n 2 2 @ + 2 0 06183518 05635764 -homily n 1 2 @ + 1 0 07244949 -homing_device n 1 2 @ #p 1 0 03530041 -homing_pigeon n 1 2 @ ~ 1 0 01814921 -homing_torpedo n 1 1 @ 1 0 03530189 -hominid n 1 4 @ ~ #m + 1 0 02471762 -hominidae n 1 3 @ #m %m 1 0 02471467 -hominoid n 1 3 @ ~ #m 1 0 02471300 -hominoidea n 1 3 @ #m %m 1 0 02471072 -hominy n 1 2 @ ~ 1 0 07732302 -hominy_grits n 1 1 @ 1 0 07704428 -hommos n 1 1 @ 1 0 07857731 -homo n 2 5 @ ~ #m %p - 2 0 10182913 02472293 -homo_erectus n 1 3 @ ~ #m 1 0 02473307 -homo_habilis n 1 2 @ #m 1 0 02474605 -homo_heidelbergensis n 1 1 @ 1 0 10168457 -homo_rhodesiensis n 1 1 @ 1 0 10528148 -homo_sapiens n 1 3 @ ~ #m 1 0 02474777 -homo_sapiens_neanderthalensis n 1 2 @ #m 1 0 02475078 -homo_sapiens_sapiens n 1 2 @ #m 1 0 02475669 -homo_soloensis n 1 3 @ ~ #m 1 0 02474110 -homobasidiomycetes n 1 2 @ #m 1 0 12997128 -homocercal_fin n 1 2 ! @ 1 0 02467320 -homoeopath n 1 1 @ 1 0 10182402 -homoeopathy n 1 1 @ 1 0 00710889 -homoeroticism n 1 3 @ ~ + 1 0 00856847 -homogenate n 1 1 @ 1 1 14908422 -homogeneity n 2 3 ! @ + 2 1 04745679 04769234 -homogeneous_polynomial n 1 2 @ ~ 1 0 05862268 -homogeneousness n 1 2 @ + 1 0 04745679 -homogenisation n 1 2 @ + 1 0 00380994 -homogenization n 1 2 @ + 1 0 00380994 -homogenized_milk n 1 1 @ 1 0 07845863 -homogentisic_acid n 1 1 @ 1 0 14585048 -homogeny n 1 3 @ + ; 1 0 04744161 -homograft n 1 1 @ 1 0 05583386 -homograph n 1 1 @ 1 0 07131022 -homogyne n 1 3 @ #m %m 1 0 11982724 -homogyne_alpina n 1 2 @ #m 1 0 11982939 -homoiotherm n 1 2 @ + 1 0 01315330 -homology n 1 2 @ + 1 0 04744319 -homolosine_projection n 1 1 @ 1 0 03530326 -homomorphism n 1 1 @ 1 0 04744555 -homomorphy n 1 1 @ 1 0 04744555 -homona n 1 2 @ #m 1 0 02284513 -homona_coffearia n 1 2 @ #m 1 0 02284611 -homonym n 1 2 @ ~ 1 0 06292649 -homonymy n 1 1 @ 1 0 13808981 -homophile n 1 2 @ ~ 1 0 10182913 -homophobe n 1 1 @ 1 0 10182812 -homophobia n 1 1 @ 1 0 06203472 -homophone n 1 2 @ + 1 0 07131169 -homophony n 2 2 @ + 2 0 07131366 07031144 -homoptera n 1 3 @ #m %m 1 0 02245592 -homopteran n 1 3 @ ~ #m 1 0 02246011 -homopterous_insect n 1 3 @ ~ #m 1 0 02246011 -homosexual n 1 3 @ ~ + 1 1 10182913 -homosexualism n 1 2 @ ~ 1 0 00856847 -homosexuality n 1 3 @ ~ + 1 0 00856847 -homospory n 1 2 @ + 1 0 13493874 -homotherm n 1 2 @ + 1 0 01315330 -homozygosity n 1 3 ! @ + 1 0 14569337 -homozygote n 1 2 @ ; 1 0 05432420 -homunculus n 2 1 @ 2 0 10291580 10183157 -homyel n 1 2 @ #p 1 0 09011679 -honcho n 1 2 @ ~ 1 0 10104209 -hondo n 1 3 @ #p %p 1 0 08920924 -honduran n 1 3 @ #m + 1 0 09712570 -honduran_capital n 1 2 @ #p 1 0 08738014 -honduran_monetary_unit n 1 2 @ ~ 1 0 13684853 -honduras n 1 6 @ #m #p %m %p - 1 0 08737716 -honduras_mahogany n 1 1 @ 1 0 12700088 -honduras_rosewood n 1 1 @ 1 0 12523698 -hone n 1 2 @ + 1 0 03530511 -honegger n 1 1 @ 1 0 11057679 -honest_woman n 1 1 @ 1 0 10183347 -honestness n 1 4 @ ~ = + 1 0 04871374 -honesty n 2 5 ! @ ~ #m = 2 1 04871374 11891541 -honey n 2 3 @ #s + 2 2 07858978 09849598 -honey-flower n 2 2 @ #m 2 0 12220019 12215210 -honey_badger n 1 2 @ #m 1 0 02448318 -honey_bear n 1 2 @ #m 1 0 02509197 -honey_bell n 1 2 @ #m 1 0 12200504 -honey_berry n 1 3 @ #m %p 1 0 12744850 -honey_bun n 1 1 @ 1 0 07693223 -honey_buzzard n 1 2 @ #m 1 0 01608265 -honey_cake n 1 1 @ 1 0 07634306 -honey_crisp n 1 1 @ 1 0 07606191 -honey_eater n 1 2 @ #m 1 0 01526766 -honey_fungus n 1 2 @ #m 1 0 13232779 -honey_gland n 1 1 @ 1 0 11683838 -honey_guide n 1 2 @ #m 1 0 01842788 -honey_locust n 1 2 @ #m 1 0 12495895 -honey_mesquite n 1 1 @ 1 0 11765568 -honey_mushroom n 1 2 @ #m 1 0 13232779 -honey_oil n 1 1 @ 1 0 03606572 -honey_plant n 1 1 @ 1 0 13237075 -honeybee n 1 3 @ ~ #m 1 1 02208280 -honeybells n 1 2 @ #m 1 0 12200504 -honeycomb n 2 3 @ #p + 2 0 09218315 03530642 -honeycomb_tripe n 1 1 @ 1 0 07663360 -honeycreeper n 2 3 @ ~ #m 2 0 01544704 01538955 -honeydew n 1 1 @ 1 0 07756325 -honeydew_melon n 2 2 @ %p 2 0 12164881 07756325 -honeyed_words n 1 1 @ 1 0 07137461 -honeyflower n 2 2 @ #m 2 0 12220019 12215210 -honeymoon n 2 2 @ + 2 1 15138903 15293788 -honeymoon_resort n 1 1 @ 1 0 08560415 -honeymooner n 1 3 @ ~ + 1 0 10356066 -honeypot n 1 2 @ #m 1 0 12215022 -honeysucker n 1 2 @ #m 1 0 01526766 -honeysuckle n 3 3 @ ~ #m 3 1 12674120 12215824 11727358 -honeysuckle_family n 1 3 @ #m %m 1 0 12671157 -hong_kong n 1 2 @ #p 1 0 08731148 -hong_kong_dollar n 1 1 @ 1 0 13673455 -honiara n 1 2 @ #p 1 0 08998451 -honk n 1 2 @ + 1 0 07385249 -honker n 3 4 @ #m + ; 3 0 10183556 05598707 01857632 -honkey n 1 2 @ ; 1 0 09641422 -honkie n 1 2 @ ; 1 0 09641422 -honky n 1 2 @ ; 1 0 09641422 -honky-tonk n 1 1 @ 1 1 02795670 -honkytonk n 1 1 @ 1 1 03530803 -honolulu n 1 2 @ #p 1 1 09078784 -honor n 4 4 ! @ ~ + 4 3 06696483 14436875 04869106 04849972 -honor_guard n 1 1 @ 1 0 10183931 -honor_killing n 1 1 @ 1 0 00220219 -honor_system n 1 1 @ 1 0 05663878 -honorable_discharge n 1 1 @ 1 0 00233980 -honorable_mention n 1 1 @ 1 0 06706317 -honorableness n 1 5 ! @ ~ = + 1 0 04868748 -honorarium n 1 1 @ 1 0 13283952 -honorary_degree n 1 2 @ ~ 1 0 06705079 -honorary_society n 1 3 @ ~ %m 1 0 08280124 -honore-gabriel_victor_riqueti n 1 1 @ 1 0 11181634 -honore_balzac n 1 1 @ 1 0 10833111 -honore_daumier n 1 1 @ 1 0 10923521 -honore_de_balzac n 1 1 @ 1 0 10833111 -honoree n 1 3 @ ~ + 1 0 10183757 -honorific n 1 2 @ + 1 0 07070883 -honoring n 1 3 @ ~ + 1 0 01204419 -honoris_causa n 1 2 @ ~ 1 0 06705079 -honour n 4 3 @ ~ + 4 2 14436875 06696483 04869106 04849972 -honourableness n 1 4 @ ~ = + 1 0 04868748 -honours n 1 3 @ ~ ; 1 0 06700030 -honours_degree n 1 3 @ ~ ; 1 0 06700030 -honours_list n 1 2 @ ; 1 0 06489190 -honshu n 1 3 @ #p %p 1 0 08920924 -hoo-ha n 1 2 @ ~ 1 0 13977366 -hoo-hah n 1 2 @ ~ 1 0 13977366 -hooch n 1 2 @ ~ 1 0 07886176 -hood n 10 6 @ ~ #p %p + ; 10 1 10184081 09305358 08225334 03531808 03531691 03531546 03531447 03531281 03530910 01748100 -hood_latch n 1 1 @ 1 0 03531982 -hood_ornament n 1 2 @ #p 1 0 03532187 -hooded_cloak n 1 1 @ 1 0 02956883 -hooded_coat n 1 1 @ 1 0 02957008 -hooded_ladies'_tresses n 1 2 @ #m 1 0 12084158 -hooded_merganser n 1 2 @ #m 1 0 01855476 -hooded_pitcher_plant n 1 2 @ #m 1 0 12780325 -hooded_seal n 1 2 @ #m 1 0 02081060 -hooded_sheldrake n 1 2 @ #m 1 0 01855476 -hooded_skunk n 1 2 @ #m 1 0 02446352 -hoodlum n 1 2 @ ~ 1 0 10184081 -hoodmold n 1 1 @ 1 0 03242595 -hoodmould n 1 1 @ 1 0 03242595 -hoodoo n 4 3 @ + ; 4 0 13901055 10184290 03603958 03532080 -hoodooism n 1 3 @ ~ - 1 0 06245816 -hooey n 1 2 @ ; 1 0 06609909 -hoof n 2 4 @ ~ #p %p 2 1 02153959 02154133 -hoof-and-mouth_disease n 1 1 @ 1 0 14264664 -hoof-mark n 1 1 @ 1 0 06799754 -hoof_mark n 1 1 @ 1 0 06799754 -hoofed_mammal n 1 3 @ ~ %p 1 0 02370806 -hoofer n 1 2 @ + 1 0 10184403 -hoofing n 1 3 @ ~ %p 1 0 00527695 -hoofprint n 1 1 @ 1 0 06799754 -hook n 8 5 @ ~ #p %p + 8 1 03532919 13869547 05695232 03532672 03532342 00572285 00135799 00111358 -hook_and_eye n 1 1 @ 1 0 03533392 -hook_of_holland n 1 2 @ #p 1 0 09305479 -hook_shot n 1 1 @ 1 0 00111358 -hook_spanner n 1 1 @ 1 0 03533845 -hook_wrench n 1 1 @ 1 0 03533845 -hookah n 1 1 @ 1 0 03533014 -hooke n 1 1 @ 1 0 11057925 -hooke's_law n 1 2 @ ; 1 0 05879003 -hooker n 5 3 @ + ; 5 0 11058436 11058335 10663315 10184683 10184505 -hooker's_green n 1 1 @ 1 1 14811435 -hooker's_onion n 1 2 @ #m 1 0 12432069 -hooker's_orchid n 1 1 @ 1 0 12067029 -hooking n 1 2 @ + 1 0 00572285 -hooknose n 1 1 @ 1 0 05599501 -hooks n 1 1 @ 1 0 05565192 -hookup n 2 2 @ + 2 1 03533654 03533486 -hookworm n 2 2 @ #m 2 1 01933151 14453676 -hookworm_disease n 1 1 @ 1 0 14453676 -hooky n 1 1 @ 1 0 01234612 -hooky_player n 1 1 @ 1 0 10731732 -hooligan n 1 2 @ ~ 1 0 09879297 -hooliganism n 1 1 @ 1 0 01249816 -hoop n 4 4 @ ~ #p + 4 2 03534429 03533972 04582771 02802215 -hoop_ash n 1 1 @ 1 0 12305089 -hoop_pine n 1 1 @ 1 0 11646955 -hoop_snake n 1 1 @ 1 1 01728266 -hoopla n 1 1 @ 1 0 07248507 -hoopoe n 1 3 @ ~ #m 1 0 01829869 -hoopoo n 1 3 @ ~ #m 1 0 01829869 -hoops n 1 4 @ ~ %p - 1 0 00480993 -hoopskirt n 1 2 @ %p 1 0 03534580 -hooray n 1 1 @ 1 0 06692973 -hooray_henry n 1 2 @ ; 1 0 10184822 -hoosegow n 1 1 @ 1 0 03534695 -hoosgow n 1 1 @ 1 0 03534695 -hoosier n 1 1 @ 1 0 09743016 -hoosier_state n 1 3 @ #p %p 1 0 09084750 -hoot n 3 2 @ + 3 1 07122555 07123870 05140793 -hoot_owl n 1 1 @ 1 0 01624305 -hootch n 1 2 @ ~ 1 0 07886176 -hooter n 3 7 @ ~ #m #p %p + ; 3 0 05598707 02761834 01621127 -hoover n 4 3 @ + ; 4 0 11059079 11058914 11058633 03534776 -hoover_dam n 1 2 @ #p 1 0 03534890 -hop n 3 4 @ ~ #m + 3 1 00120010 12397864 07449548 -hop-picker n 1 1 @ 1 0 03535429 -hop-step-and-jump n 1 1 @ 1 0 07471972 -hop_clover n 2 1 @ 2 0 12549192 11752937 -hop_field n 1 1 @ 1 0 03535186 -hop_garden n 1 1 @ 1 0 03535186 -hop_hornbeam n 1 3 @ ~ #m 1 0 12287642 -hop_marjoram n 1 2 @ #m 1 0 12853706 -hop_pole n 1 1 @ 1 0 03535526 -hope n 6 4 ! @ ~ + 6 4 07511733 07541053 05950733 10184946 11059263 04848262 -hope_chest n 1 1 @ 1 0 03535024 -hopeful n 1 2 @ + 1 0 09801533 -hopefulness n 2 4 ! @ ~ + 2 0 14483620 07541316 -hopeh n 1 2 @ #p 1 0 08725926 -hopei n 1 2 @ #p 1 0 08725926 -hopelessness n 1 3 ! @ + 1 0 07542249 -hoper n 1 2 @ + 1 0 10185148 -hopi n 2 1 @ 2 0 09656547 06915031 -hopkins n 5 1 @ 5 0 11060103 11059875 11059772 11059593 11059438 -hopkinson n 1 1 @ 1 0 11060241 -hopper n 5 4 @ ~ + ; 5 1 03535284 10185327 03535429 02226429 00129089 -hops n 1 3 @ ~ #m 1 0 12397864 -hopsack n 1 1 @ 1 0 03535647 -hopsacking n 1 1 @ 1 0 03535647 -hopscotch n 1 1 @ 1 1 00485081 -horace n 1 1 @ 1 0 11060416 -horace_greeley n 1 1 @ 1 0 11013191 -horace_mann n 1 1 @ 1 0 11154174 -horace_walpole n 1 1 @ 1 0 11372599 -horatian_ode n 1 1 @ 1 0 06383934 -horatio_alger n 1 1 @ 1 0 10813527 -horatio_herbert_kitchener n 1 1 @ 1 0 11106479 -horatio_hornblower n 1 1 @ 1 0 09600439 -horatio_nelson n 1 1 @ 1 0 11203059 -horatio_walpole n 1 1 @ 1 0 11372599 -horde n 3 2 @ ~ 3 1 08182962 08250889 08184217 -hordeolum n 1 1 @ 1 0 14185219 -hordeum n 1 3 @ #m %m 1 0 12123050 -hordeum_jubatum n 1 1 @ 1 0 12123932 -hordeum_murinum n 1 1 @ 1 0 12123741 -hordeum_pusillum n 1 1 @ 1 0 12124172 -hordeum_vulgare n 1 2 @ %p 1 0 12123450 -horehound n 2 3 @ ~ #m 2 0 12854048 07606419 -horizon n 4 3 @ ~ #p 4 2 08585657 05127782 08658118 08585846 -horizontal n 1 2 @ + 1 0 13828681 -horizontal_bar n 1 2 @ %p 1 1 03535780 -horizontal_combination n 1 1 @ 1 0 01238847 -horizontal_integration n 1 1 @ 1 0 01238847 -horizontal_parallax n 1 1 @ 1 0 11529158 -horizontal_section n 1 1 @ 1 0 03535970 -horizontal_stabiliser n 1 2 @ #p 1 0 03536122 -horizontal_stabilizer n 1 2 @ #p 1 0 03536122 -horizontal_surface n 1 2 @ ~ 1 0 03536348 -horizontal_tail n 1 3 @ #p %p 1 0 03536568 -horizontality n 1 2 @ + 1 0 05079474 -hormone n 1 3 @ ~ + 1 1 05407119 -hormone-replacement_therapy n 1 1 @ 1 0 00663094 -hormone_replacement_therapy n 1 1 @ 1 0 00663094 -horn n 11 7 @ ~ #p %s %p + ; 11 6 03537085 01325417 07265508 03536931 03110669 01325853 14758027 03537241 03536761 03394916 02761834 -horn_button n 1 2 @ #p 1 0 03537412 -horn_fly n 1 2 @ #m 1 1 02199502 -horn_of_africa n 1 4 @ #p %p ; 1 0 08999154 -horn_of_plenty n 1 1 @ 1 0 06808121 -horn_poppy n 1 2 @ #m 1 0 11905749 -hornbeam n 1 3 @ ~ #m 1 0 12286826 -hornbill n 1 2 @ #m 1 0 01829413 -hornblende n 1 2 @ #m 1 0 14726124 -hornbook n 1 1 @ 1 0 06421538 -horne n 2 1 @ 2 0 11060688 11060535 -horned_asp n 1 2 @ #m 1 0 01753488 -horned_chameleon n 1 2 @ #m 1 0 01694311 -horned_dinosaur n 1 3 @ ~ #m 1 0 01703569 -horned_lizard n 1 3 @ ~ #m 1 0 01681940 -horned_owl n 1 3 @ ~ #m 1 0 01622352 -horned_pondweed n 1 1 @ 1 0 12618146 -horned_poppy n 1 2 @ #m 1 0 11905749 -horned_pout n 1 1 @ 1 0 02519340 -horned_puffin n 1 2 @ #m 1 0 02048115 -horned_rattlesnake n 1 2 @ #m 1 0 01756291 -horned_screamer n 1 2 @ #m 1 0 01860864 -horned_toad n 1 3 @ ~ #m 1 0 01681940 -horned_violet n 1 1 @ 1 0 12388989 -horned_viper n 1 2 @ #m 1 0 01753488 -horned_whiff n 1 1 @ 1 0 02662397 -horneophyton n 1 2 @ #m 1 0 13218504 -horner's_syndrome n 1 1 @ 1 0 14156740 -hornet n 1 2 @ ~ 1 0 02213107 -hornet's_nest n 2 1 @ 2 0 13935572 09475044 -hornets'_nest n 2 1 @ 2 0 13935572 09475044 -horney n 1 1 @ 1 0 11060805 -hornfels n 1 1 @ 1 0 14699068 -horniness n 1 3 @ + ; 1 0 14038027 -hornist n 1 1 @ 1 0 10185483 -hornpipe n 3 2 @ ; 3 1 00538876 07055720 03537550 -hornpout n 1 1 @ 1 0 02519340 -hornstone n 1 1 @ 1 0 14699068 -hornwort n 2 2 @ #m 2 0 11702252 11538820 -horny_frog n 1 3 @ ~ #m 1 0 01681940 -horny_layer n 1 2 @ #p 1 0 05243077 -horny_structure n 1 2 @ ~ 1 0 05581514 -horologe n 1 3 @ ~ %p 1 0 04437953 -horologer n 1 2 @ + 1 0 10769905 -horologist n 1 2 @ + 1 0 10769905 -horology n 1 2 @ + 1 0 05635841 -horoscope n 2 1 @ 2 1 06749594 03537714 -horoscopy n 1 1 @ 1 0 05778646 -horowitz n 1 1 @ 1 0 11060937 -horridness n 1 3 @ ~ + 1 0 04782116 -horripilation n 1 2 @ + 1 0 00866606 -horror n 3 2 @ + 3 3 07520411 03537866 07503987 -hors_d'oeuvre n 1 2 @ ~ 1 0 07582277 -horse n 5 7 @ ~ #m %m %p + ; 5 2 02374451 03538037 08397856 04140631 03624767 -horse's_foot n 1 3 @ #p %p 1 0 02159117 -horse-brier n 1 2 @ #m 1 0 12470512 -horse-cart n 1 2 @ ~ 1 0 03538406 -horse-chestnut_family n 1 3 @ #m %m 1 0 12767951 -horse-drawn_vehicle n 1 2 @ ~ 1 0 03538634 -horse-head n 1 2 @ ~ 1 0 02578233 -horse-pistol n 1 1 @ 1 0 03539293 -horse-trail n 1 1 @ 1 1 03539678 -horse_balm n 1 2 @ #m 1 0 12844409 -horse_barn n 1 3 @ ~ %p 1 0 04294879 -horse_bean n 1 2 @ #p 1 0 07801892 -horse_blanket n 1 2 @ ~ 1 0 04124202 -horse_botfly n 1 2 @ #m 1 0 02193665 -horse_breeding n 1 1 @ 1 0 00915646 -horse_brier n 1 2 @ #m 1 0 12470512 -horse_cart n 1 2 @ ~ 1 0 03538406 -horse_cassia n 2 1 @ 2 0 12492900 12492460 -horse_cavalry n 2 3 @ %m ; 2 0 08397856 08389900 -horse_chestnut n 2 3 @ ~ #m 2 1 12768369 12768682 -horse_doctor n 1 1 @ 1 0 10185591 -horse_fancier n 1 1 @ 1 0 10185682 -horse_fly n 1 2 @ #m 1 0 02195526 -horse_gentian n 1 2 @ #m 1 0 12679876 -horse_grain n 1 2 @ #m 1 0 12547872 -horse_gram n 1 2 @ #m 1 0 12547872 -horse_latitude n 1 1 @ 1 0 08586036 -horse_mackerel n 3 3 @ #m %p 3 0 02627292 02580830 02580679 -horse_manure n 1 1 @ 1 0 14864079 -horse_mushroom n 1 2 @ #m 1 0 13001366 -horse_nettle n 1 1 @ 1 0 12893993 -horse_of_the_wood n 1 2 @ #m 1 0 01797020 -horse_opera n 1 2 @ ~ 1 0 06616035 -horse_parsley n 1 2 @ #m 1 0 12945828 -horse_pistol n 1 1 @ 1 0 03539293 -horse_race n 1 2 @ ~ 1 1 07461411 -horse_racing n 1 3 @ ~ - 1 0 00450070 -horse_radish n 1 3 @ #m %p 1 0 11872973 -horse_sense n 1 2 @ ~ 1 0 05614657 -horse_thistle n 1 1 @ 1 0 11987511 -horse_tick n 1 2 @ #m 1 0 02198859 -horse_trade n 1 1 @ 1 0 01109934 -horse_trader n 1 1 @ 1 0 10186068 -horse_trading n 2 2 @ + 2 1 01109934 07150499 -horse_wrangler n 1 1 @ 1 0 10186216 -horseback n 2 2 @ #p 2 1 01902274 09304376 -horseback_rider n 1 2 @ ~ 1 0 10185793 -horseback_riding n 2 4 @ ~ + - 2 0 00450335 00299217 -horsebean n 2 3 @ #m #p 2 0 12576323 12497669 -horsebox n 1 1 @ 1 0 03538179 -horsecar n 1 1 @ 1 0 03538300 -horsecloth n 1 1 @ 1 0 03538542 -horsefish n 1 2 @ ~ 1 0 02578233 -horseflesh n 1 2 @ #p 1 0 07666406 -horsefly n 2 2 @ #m 2 0 02198859 02195526 -horsefly_weed n 1 1 @ 1 0 12509993 -horsehair n 2 1 @ 2 0 14908584 03538817 -horsehair_lichen n 1 2 @ #m 1 0 12990597 -horsehair_wig n 1 1 @ 1 0 03538957 -horsehead n 1 2 @ ~ 1 0 02578233 -horsehide n 1 1 @ 1 0 14762758 -horselaugh n 1 1 @ 1 1 07127911 -horseleech n 1 2 @ #m 1 0 01938735 -horseless_carriage n 1 1 @ 1 0 03539103 -horseman n 2 3 @ ~ + 2 1 10185793 10185682 -horsemanship n 1 2 @ + 1 1 05638374 -horsemeat n 1 2 @ #p 1 0 07666406 -horsemint n 3 1 @ 3 0 12858987 12858618 12855886 -horseplay n 1 1 @ 1 0 00513761 -horsepond n 1 1 @ 1 0 09305646 -horsepower n 1 2 @ %p 1 0 13645010 -horsepower-hour n 1 1 @ 1 0 13728074 -horseradish n 3 6 @ #m #s #p %s %p 3 0 11873182 11872973 07824383 -horseradish_peroxidase n 1 1 @ 1 0 14612618 -horseradish_root n 1 3 @ #p %s 1 0 11873182 -horseradish_sauce n 1 2 @ %s 1 0 07830841 -horseshit n 1 2 @ ; 1 0 06611376 -horseshoe n 2 1 @ 2 0 03539546 03539433 -horseshoe_arch n 1 1 @ 1 0 03784896 -horseshoe_bat n 2 2 @ #m 2 0 02143891 02143439 -horseshoe_crab n 1 2 @ #m 1 0 01787835 -horseshoe_falls n 1 2 @ #p 1 0 09232165 -horseshoe_vetch n 1 1 @ 1 0 12535254 -horseshoe_whipsnake n 1 2 @ #m 1 0 01731277 -horseshoer n 1 1 @ 1 0 10079677 -horseshoes n 1 2 @ - 1 0 00467320 -horseshow n 1 1 @ 1 0 00519579 -horsetail n 1 4 @ ~ #m %p 1 0 13219422 -horsetail_family n 1 3 @ #m %m 1 0 13219067 -horsetail_lichen n 1 2 @ #m 1 0 12990597 -horsetail_milkweed n 1 1 @ 1 0 13235319 -horseweed n 2 2 @ #m 2 0 12844409 11956348 -horsewhip n 1 3 @ ~ + 1 0 03539754 -horsewhipping n 1 2 @ + 1 0 01163429 -horsewoman n 1 1 @ 1 0 10186143 -horsey_set n 1 1 @ 1 0 08251605 -horst n 1 1 @ 1 0 09305728 -horsy_set n 1 1 @ 1 0 08251605 -horta n 1 1 @ 1 0 11061089 -hortensia n 2 2 @ #m 2 0 12788854 12009047 -horticulture n 1 4 @ ~ + - 1 0 00918383 -horticulturist n 1 3 @ ~ + 1 0 10186350 -horus n 1 1 @ 1 0 09512266 -hosanna n 1 1 @ 1 0 07122639 -hose n 3 4 @ ~ + ; 3 0 03540267 03540090 03539875 -hosea n 2 2 @ #p 2 0 11061225 06439253 -hosepipe n 1 2 @ ~ 1 0 03539875 -hosier n 1 1 @ 1 0 10186578 -hosiery n 1 3 @ ~ ; 1 0 03540267 -hosni_mubarak n 1 1 @ 1 0 11194587 -hospice n 2 1 @ 2 0 03540476 00697249 -hospitableness n 1 3 ! @ + 1 0 04656282 -hospital n 2 4 @ ~ %p + 2 1 03540595 08054417 -hospital_attendant n 1 1 @ 1 0 10381804 -hospital_bed n 1 2 @ %p 1 0 03540914 -hospital_care n 1 1 @ 1 0 00658627 -hospital_chaplain n 1 1 @ 1 0 10186686 -hospital_occupancy n 1 1 @ 1 0 13818736 -hospital_room n 1 3 @ ~ #p 1 0 03541091 -hospital_ship n 1 1 @ 1 0 03541269 -hospital_train n 1 2 @ ; 1 0 03541393 -hospital_ward n 1 3 @ ~ #p 1 0 04549919 -hospitalisation n 1 2 @ + 1 0 00658627 -hospitality n 1 3 ! @ + 1 1 06631506 -hospitalization n 4 2 @ + 4 0 15119185 14576053 13346912 00658627 -hospitalization_insurance n 1 1 @ 1 0 13346912 -host n 10 6 ! @ ~ #p + ; 10 6 10187130 08182962 01385527 10299250 08183802 08481184 10187356 10186774 07683138 04175147 -hosta n 1 3 @ #m %m 1 0 12457519 -hostaceae n 1 2 @ #m 1 0 12457250 -hostage n 1 1 @ 1 0 10187557 -hostel n 2 2 @ ~ 2 0 03541696 03541537 -hosteller n 2 2 @ ~ 2 0 10187990 10186950 -hostelry n 1 2 @ ~ 1 1 03541696 -hostess n 3 1 @ 3 3 10187491 10187059 10655875 -hostile n 1 3 ! @ ; 1 0 08397675 -hostile_expedition n 1 3 @ ~ ; 1 0 00968479 -hostile_fire n 1 1 @ 1 0 00991070 -hostile_takeover n 1 1 @ 1 0 00790817 -hostile_witness n 1 1 @ 1 0 09773682 -hostilities n 1 2 @ + 1 0 00964781 -hostility n 4 3 @ ~ + 4 1 04658106 13980288 07547805 00964569 -hostler n 1 1 @ 1 0 10644301 -hot-air_balloon n 1 1 @ 1 0 03541923 -hot-button_issue n 1 1 @ 1 0 05814952 -hot-fudge_sauce n 1 1 @ 1 0 07837002 -hot-rock_penstemon n 1 2 @ #m 1 0 12886185 -hot-rod n 1 1 @ 1 0 03543394 -hot-water_bag n 1 1 @ 1 0 03543735 -hot-water_bottle n 1 1 @ 1 0 03543735 -hot-water_heater n 1 2 @ ~ 1 1 04560113 -hot-water_tank n 1 2 @ ~ 1 0 04560113 -hot-work_steel n 1 1 @ 1 0 14907867 -hot_air n 2 1 @ 2 0 14841923 06609503 -hot_cake n 1 2 @ ~ 1 0 07640203 -hot_cereal n 1 2 @ ~ 1 0 07703177 -hot_chocolate n 1 2 @ %s 1 0 07922764 -hot_cross_bun n 1 1 @ 1 0 07691237 -hot_dog n 3 4 @ ~ #p %p 3 0 10187710 07697537 07676602 -hot_flash n 1 1 @ 1 0 14336169 -hot_issue n 1 1 @ 1 0 13336933 -hot_jazz n 1 1 @ 1 0 07063775 -hot_line n 1 1 @ 1 0 03543012 -hot_pad n 2 1 @ 2 0 04380801 03508881 -hot_pants n 2 2 @ ; 2 0 14038027 03543112 -hot_pepper n 2 4 @ ~ #m %p 2 0 12902021 07721325 -hot_plate n 1 1 @ 1 0 03543254 -hot_pot n 1 2 @ ; 1 0 07590611 -hot_potato n 1 1 @ 1 1 13935910 -hot_rod n 1 1 @ 1 1 03543394 -hot_sauce n 1 2 @ ~ 1 0 07830593 -hot_seat n 2 1 @ 2 0 03271030 00593389 -hot_spell n 1 1 @ 1 0 15246775 -hot_spot n 3 1 @ 3 0 08586330 08586218 03543511 -hot_spring n 1 1 @ 1 0 09305898 -hot_springs n 1 2 @ #p 1 0 09060024 -hot_springs_national_park n 1 2 @ #p 1 0 08606012 -hot_stock n 1 1 @ 1 0 13336933 -hot_stuff n 2 2 @ ; 2 0 05210820 04808965 -hot_stuffed_tomato n 1 1 @ 1 0 07878785 -hot_toddy n 1 3 @ ~ %s 1 0 07918879 -hot_tub n 1 1 @ 1 0 03543603 -hot_war n 1 2 ! @ 1 1 13981885 -hot_water n 1 1 @ 1 0 14409137 -hot_water_plant n 1 2 @ #m 1 0 12830222 -hot_weather n 1 2 @ ~ 1 0 11466701 -hotbed n 2 1 @ 2 0 13935753 03542073 -hotbox n 1 1 @ 1 0 03542220 -hotcake n 1 2 @ ~ 1 0 07640203 -hotchpotch n 2 1 @ 2 0 08399977 07590502 -hotdog n 3 4 @ ~ #p %p 3 0 10187710 07697537 07676602 -hotdog_bun n 1 2 @ #p 1 0 07690019 -hotei n 1 1 @ 1 0 09534918 -hotei-chiku n 1 2 @ #m 1 0 12149144 -hotel n 1 3 @ ~ %p 1 1 03542333 -hotel-casino n 2 1 @ 2 0 03542727 03542605 -hotel_bill n 1 1 @ 1 0 06517447 -hotel_clerk n 1 2 @ ~ 1 0 10007995 -hotel_desk_clerk n 1 2 @ ~ 1 0 10007995 -hotel_detective n 1 1 @ 1 0 10187842 -hotel_manager n 1 2 @ ~ 1 0 10187990 -hotel_occupancy n 1 1 @ 1 0 13818829 -hotel_plan n 1 2 @ ~ 1 0 13415547 -hotel_room n 1 3 @ ~ #p 1 0 03542860 -hotelier n 1 2 @ ~ 1 0 10187990 -hotelkeeper n 1 2 @ ~ 1 0 10187990 -hotelman n 1 2 @ ~ 1 1 10187990 -hotfoot n 1 1 @ 1 0 00514471 -hoth n 1 2 @ ; 1 0 09581129 -hothead n 2 2 @ ~ 2 0 10091564 09991530 -hothouse n 1 1 @ 1 0 03092166 -hothr n 1 2 @ ; 1 0 09581129 -hotness n 3 5 ! @ ~ + ; 3 1 05016171 14038027 04993312 -hotplate n 1 1 @ 1 0 03543254 -hotpot n 1 2 @ ; 1 0 07590611 -hotshot n 1 2 @ ~ 1 1 09762509 -hotspot n 3 1 @ 3 0 08586330 08586218 03543511 -hotspur n 2 1 @ 2 0 11229499 10188146 -hottentot n 1 1 @ 1 0 06941479 -hottentot's_bread n 1 2 @ #p 1 0 12089178 -hottentot's_bread_vine n 1 3 @ #m %p 1 0 12088909 -hottentot's_fig n 1 2 @ #m 1 0 11819509 -hottentot_bread n 1 2 @ #p 1 0 12089178 -hottentot_bread_vine n 1 3 @ #m %p 1 0 12088909 -hottentot_fig n 1 2 @ #m 1 0 11819509 -hottonia n 1 3 @ #m %m 1 0 12094121 -hottonia_inflata n 1 1 @ 1 0 12094401 -hottonia_palustris n 1 1 @ 1 0 12094612 -houdah n 1 1 @ 1 0 03547397 -houdini n 1 1 @ 1 0 11061317 -houghton n 2 2 @ #p 2 0 11061552 09100982 -houhere n 1 2 @ #m 1 0 12180885 -hoummos n 1 1 @ 1 0 07857731 -hound n 2 4 @ ~ #m + 2 2 02087551 09886220 -hound's-tongue n 2 2 @ #m 2 0 12819354 12819141 -hound's-tooth_check n 1 1 @ 1 0 03543945 -hound_dog n 1 3 @ ~ #m 1 1 02087551 -houndstooth_check n 1 1 @ 1 0 03543945 -hour n 4 5 @ ~ #p %p + 4 3 15227846 15228378 15228910 05131023 -hour_angle n 2 2 @ ; 2 1 08586509 13888783 -hour_circle n 1 1 @ 1 0 08586688 -hour_hand n 1 1 @ 1 0 03544238 -hourglass n 1 1 @ 1 0 03544143 -houri n 2 2 @ ; 2 0 10368528 09545000 -hours n 2 2 @ ~ 2 2 15118100 15117516 -housatonic n 1 2 @ #p 1 0 09306031 -housatonic_river n 1 2 @ #p 1 0 09306031 -house n 12 6 @ ~ #p %p + ; 12 7 03544360 08059870 08224580 08222966 08163025 07971449 00432164 08685677 08381296 08078020 04417809 03545150 -house-builder n 1 1 @ 1 0 10181656 -house-raising n 1 1 @ 1 0 00911905 -house_agent n 1 2 @ ~ 1 0 10509810 -house_arrest n 1 1 @ 1 0 01147135 -house_cat n 1 3 @ ~ #m 1 0 02121808 -house_centipede n 1 2 @ #m 1 0 01785667 -house_decorator n 1 2 @ ~ 1 0 10210648 -house_detective n 1 1 @ 1 0 10187842 -house_dick n 1 1 @ 1 0 10187842 -house_finch n 1 2 @ #m 1 0 01532829 -house_fly n 1 2 @ #m 1 0 02190790 -house_guest n 1 1 @ 1 0 10188472 -house_husband n 1 1 @ 1 0 10188576 -house_martin n 1 2 @ #m 1 0 01595974 -house_mouse n 1 2 @ #m 1 0 02332156 -house_of_burgesses n 1 1 @ 1 0 08162575 -house_of_cards n 2 1 @ 2 0 05907251 03545756 -house_of_commons n 1 3 @ #m %m 1 0 08162691 -house_of_correction n 1 1 @ 1 0 03545961 -house_of_detention n 1 1 @ 1 0 03181667 -house_of_god n 1 2 @ ~ 1 0 03953416 -house_of_hanover n 1 2 @ %m 1 0 08154960 -house_of_ill_repute n 1 2 @ ~ 1 0 04581595 -house_of_islam n 1 1 @ 1 0 09178481 -house_of_lancaster n 1 2 @ %m 1 0 08155765 -house_of_lords n 1 3 @ #m %m 1 0 08162860 -house_of_prayer n 1 2 @ ~ 1 0 03953416 -house_of_prostitution n 1 2 @ ~ 1 1 04581595 -house_of_representatives n 1 2 @ #m 1 1 08161971 -house_of_tudor n 1 2 @ %m 1 0 08159031 -house_of_war n 1 1 @ 1 0 09178596 -house_of_windsor n 1 2 @ %m 1 0 08159740 -house_of_worship n 1 2 @ ~ 1 0 03953416 -house_of_york n 1 2 @ %m 1 0 08159924 -house_organ n 1 1 @ 1 1 06595220 -house_paint n 1 1 @ 1 0 03546112 -house_painter n 1 1 @ 1 0 10189179 -house_painting n 1 2 @ #p 1 0 00609236 -house_party n 1 1 @ 1 0 07450229 -house_physician n 1 1 @ 1 0 10189278 -house_servant n 1 2 @ ~ 1 0 10024119 -house_sitter n 1 1 @ 1 0 10189597 -house_snake n 1 1 @ 1 0 01734808 -house_sparrow n 1 2 @ #m 1 0 01539925 -house_trailer n 1 2 @ ~ 1 0 04467099 -house_wren n 1 2 @ #m 1 0 01584853 -houseboat n 1 1 @ 1 0 03545470 -housebreaker n 2 1 @ 2 1 10188226 10189975 -housebreaking n 1 2 @ ~ 1 1 00785263 -housebuilder n 1 1 @ 1 0 10181656 -housecleaning n 2 3 @ + ; 2 0 00580565 00580370 -housecoat n 1 2 @ ~ 1 0 03817647 -housecraft n 1 1 @ 1 0 05643722 -housedog n 1 1 @ 1 0 02104280 -housefather n 1 1 @ 1 0 10188369 -housefly n 1 2 @ #m 1 0 02190790 -houseful n 1 1 @ 1 0 13767691 -houseguest n 1 1 @ 1 0 10188472 -household n 1 3 @ ~ + 1 1 08078020 -household_appliance n 1 2 @ ~ 1 0 03528263 -household_arts n 1 1 @ 1 0 06149344 -household_linen n 1 2 @ ~ 1 0 04580298 -householder n 1 3 @ ~ + 1 1 10182499 -househusband n 1 1 @ 1 0 10188576 -housekeeper n 1 2 @ + 1 0 10188715 -housekeeping n 1 2 @ + 1 1 00580961 -houselights n 1 3 @ #m ; 1 0 03545585 -housemaid n 1 2 @ ~ 1 0 10282672 -housemaid's_knee n 1 1 @ 1 0 14188568 -houseman n 1 2 @ ; 1 0 10211203 -housemaster n 1 1 @ 1 0 10188856 -housemate n 1 1 @ 1 0 10188957 -housemother n 1 1 @ 1 0 10189059 -housepaint n 1 1 @ 1 0 03546112 -houseplant n 1 2 @ ~ 1 0 13083023 -houseroom n 1 1 @ 1 0 13778400 -houses_of_parliament n 1 2 @ #p 1 0 08876278 -housetop n 1 1 @ 1 0 03546235 -housewarming n 1 1 @ 1 0 08255109 -housewife n 1 2 @ + 1 1 10189776 -housewifery n 1 1 @ 1 0 00580880 -housework n 1 1 @ 1 1 00580961 -housewrecker n 1 1 @ 1 0 10189975 -housing n 3 3 @ ~ + 3 1 03546340 03546766 02955540 -housing_and_urban_development n 1 2 @ %p 1 0 08135062 -housing_commissioner n 1 1 @ 1 0 10190122 -housing_development n 1 3 @ ~ #p 1 0 08549480 -housing_estate n 1 3 @ #p ; 1 0 08549733 -housing_industry n 1 1 @ 1 0 08067683 -housing_project n 1 1 @ 1 0 08549911 -housing_start n 1 1 @ 1 0 00239666 -housman n 1 1 @ 1 0 11061734 -houston n 2 2 @ #p 2 1 09144851 11061853 -houttuynia n 1 2 @ #m 1 0 13152592 -houyhnhnm n 1 1 @ 1 0 10190231 -houyhnhnms n 1 1 @ 1 0 05630145 -hovea n 1 2 @ #m 1 0 12535593 -hovel n 1 2 @ ~ 1 0 03547054 -hovercraft n 1 1 @ 1 0 03547229 -how-d'ye-do n 1 1 @ 1 0 13936030 -how-do-you-do n 2 1 @ 2 0 13936030 06632511 -howard n 2 1 @ 2 0 11062285 11062111 -howard_carter n 1 1 @ 1 0 10885006 -howard_florey n 1 1 @ 1 0 10973497 -howard_hughes n 1 1 @ 1 0 11064834 -howard_lindsay n 1 1 @ 1 0 11133387 -howard_pyle n 1 1 @ 1 0 11249559 -howard_robard_hughes n 1 1 @ 1 0 11064834 -howdah n 1 1 @ 1 0 03547397 -howdy n 1 1 @ 1 0 06632511 -howe n 4 1 @ 4 0 11062963 11062801 11062649 11062424 -howells n 1 1 @ 1 0 11063061 -howitzer n 1 1 @ 1 0 03786715 -howl n 3 3 @ ~ + 3 1 07126734 07385548 07385367 -howler n 3 3 @ #m + 3 0 06778925 02492660 00076323 -howler_monkey n 1 2 @ #m 1 0 02492660 -howling n 1 2 @ + 1 1 07126734 -hoy n 1 2 @ ~ 1 0 02792552 -hoya n 1 3 @ ~ #m 1 0 13236887 -hoya_carnosa n 1 1 @ 1 0 13237188 -hoyden n 1 1 @ 1 0 10715030 -hoydenism n 1 1 @ 1 0 04667258 -hoyle n 2 1 @ 2 0 11063309 11063182 -hp n 1 2 @ %p 1 1 13645010 -hq n 1 3 @ ~ ; 1 0 03504420 -hr n 1 4 @ ~ #p %p 1 1 15227846 -hrolf n 1 1 @ 1 0 11269236 -hrt n 1 1 @ 1 0 00663094 -hrvatska n 1 4 @ #p %m %p 1 0 08815858 -hryvnia n 1 2 @ %p 1 0 13703151 -hs n 1 1 @ 1 0 14639795 -hs1 n 1 1 @ 1 0 01339083 -hs2 n 1 1 @ 1 0 01339206 -hsian n 1 2 @ #p 1 0 08729452 -hsuan_chiao n 1 1 @ 1 0 06243096 -hsv-1 n 1 1 @ 1 0 01339083 -hsv-2 n 1 1 @ 1 0 01339206 -hsv-i n 1 1 @ 1 0 01339083 -hsv-ii n 1 1 @ 1 0 01339206 -htlv-1 n 1 1 @ 1 0 01336599 -html n 1 1 @ 1 0 06788262 -http n 1 1 @ 1 0 06665847 -hua n 1 2 @ ; 1 0 08022972 -huainaputina n 1 2 @ #p 1 0 09175617 -hualapai n 2 1 @ 2 0 09671808 06923283 -hualpai n 2 1 @ 2 0 09671808 06923283 -huamachil n 1 2 @ #m 1 0 11764478 -huambo n 1 2 @ #p 1 0 08708481 -huang_hai n 1 3 @ #p %p 1 0 09481958 -huang_he n 1 2 @ #p 1 0 09306257 -huarache n 1 1 @ 1 0 03547530 -huaraches n 1 1 @ 1 0 03547530 -huascaran n 1 2 @ #p 1 0 09306497 -huayna_capac n 1 1 @ 1 0 10190373 -hub n 2 3 @ ~ #p 2 1 03547658 08543223 -hub-and-spoke n 1 1 @ 1 0 03547861 -hub-and-spoke_system n 1 1 @ 1 0 03547861 -hub_of_the_universe n 1 4 @ #p %p - 1 0 09095751 -hubbard n 2 2 @ #p 2 0 11063535 09306642 -hubbard_squash n 2 4 @ #m #p %p 2 0 12161056 07717714 -hubble n 1 1 @ 1 0 11063687 -hubble's_constant n 1 2 @ ; 1 0 13590598 -hubble's_law n 1 2 @ ; 1 0 05879204 -hubble's_parameter n 1 2 @ ; 1 0 13590598 -hubble-bubble n 1 1 @ 1 0 03533014 -hubble_constant n 1 2 @ ; 1 0 13590598 -hubble_law n 1 2 @ ; 1 0 05879204 -hubble_parameter n 1 2 @ ; 1 0 13590598 -hubbly-bubbly n 1 1 @ 1 0 03533014 -hubbub n 1 1 @ 1 1 07385660 -hubby n 1 2 @ ~ 1 0 10193967 -hubcap n 1 2 @ #p 1 0 03548086 -hubel n 1 1 @ 1 0 11063944 -hubris n 1 1 @ 1 1 04888703 -huck n 1 1 @ 1 0 03548195 -huck_finn n 1 1 @ 1 0 09603353 -huckaback n 1 1 @ 1 0 03548195 -huckleberry n 3 4 @ ~ #m #p 3 0 12246641 12236546 07743384 -huckleberry_finn n 1 1 @ 1 0 09603353 -huckleberry_oak n 1 2 @ #m 1 0 12279060 -huckster n 2 2 @ + 2 1 10190516 10190644 -hud n 1 2 @ %p 1 0 08135062 -huddie_leadbetter n 1 1 @ 1 0 11123262 -huddle n 2 4 @ %m + ; 2 1 07144416 08184439 -huddler n 2 3 @ #m + 2 0 10190871 10190745 -hudood n 1 1 @ 1 0 08456178 -hudson n 3 2 @ #p 3 1 09306840 11064330 11064106 -hudson_bay n 1 2 @ #p 1 1 09307031 -hudson_bay_collared_lemming n 1 1 @ 1 0 02345774 -hudson_hoagland n 1 1 @ 1 0 11052843 -hudson_river n 1 2 @ #p 1 1 09306840 -hudson_river_school n 1 1 @ 1 0 08468261 -hudson_seal n 1 1 @ 1 0 14765687 -hudsonia n 1 3 @ #m %m 1 0 12376382 -hudsonia_ericoides n 1 2 @ #m 1 0 12376553 -hudsonia_tomentosa n 1 2 @ #m 1 0 12376740 -hudsonian_godwit n 1 1 @ 1 0 02034295 -hudud n 1 1 @ 1 0 08456178 -hue n 1 3 @ = + 1 1 04975122 -hue_and_cry n 1 1 @ 1 1 07122118 -huff n 1 2 @ + 1 0 14407070 -huffiness n 1 2 @ + 1 0 07517869 -huffing n 1 2 @ + 1 0 00834460 -huffishness n 1 2 @ + 1 0 07549401 -hug n 1 2 @ + 1 0 00417859 -hug-me-tight n 1 1 @ 1 0 03548320 -hug_drug n 1 1 @ 1 0 02678738 -hugger n 1 2 @ + 1 0 10191001 -hugger-mugger n 1 2 @ + 1 0 13976731 -hugging n 1 3 @ ~ + 1 1 00854000 -huggins n 1 1 @ 1 0 11064472 -hugh_capet n 1 1 @ 1 0 10891271 -hugh_dowding n 1 1 @ 1 0 10941714 -hughes n 4 1 @ 4 0 11065229 11065101 11064834 11064662 -hugo n 1 1 @ 1 0 11065345 -hugo_alvar_henrik_aalto n 1 1 @ 1 0 10806693 -hugo_de_vries n 1 1 @ 1 0 10932495 -hugo_devries n 1 1 @ 1 0 10932495 -hugo_grotius n 1 1 @ 1 0 11017454 -hugo_junkers n 1 1 @ 1 0 11094780 -hugo_von_hoffmannsthal n 1 1 @ 1 0 11055296 -hugo_wolf n 1 1 @ 1 0 11394398 -hugueninia n 1 2 @ %m 1 0 11889078 -hugueninia_tanacetifolia n 1 2 @ #m 1 0 11889205 -huguenot n 1 1 @ 1 0 10191089 -huig_de_groot n 1 1 @ 1 0 11017454 -huisache n 1 2 @ #m 1 0 11757851 -huitre n 1 3 @ ~ #p 1 0 07786164 -huji n 1 2 @ ; 1 0 08022666 -hula n 1 1 @ 1 0 00542458 -hula-hoop n 1 1 @ 1 0 03548402 -hula-hula n 1 1 @ 1 0 00542458 -huldreich_zwingli n 1 1 @ 1 0 11408243 -hulk n 2 2 @ + 2 2 10129133 03548533 -hull n 6 5 @ ~ #p %p + 6 0 13139918 11691990 11065718 11065562 08877208 03548626 -hullabaloo n 1 1 @ 1 0 00554300 -hullo n 1 1 @ 1 0 06632511 -hulsea n 1 3 @ #m %m 1 0 11983160 -hulsea_algida n 1 2 @ #m 1 0 11983375 -hulsea_nana n 1 2 @ #m 1 0 11983606 -hum n 3 3 @ + ; 3 0 14008050 08022972 07385803 -hum-vee n 1 2 @ ; 1 0 03549199 -human n 1 6 @ ~ #m %p + - 1 1 02472293 -human_action n 1 2 @ ~ 1 1 00030358 -human_activity n 1 2 @ ~ 1 0 00030358 -human_being n 1 5 @ ~ #m %p - 1 1 02472293 -human_beings n 1 2 @ %m 1 0 02472987 -human_body n 1 3 @ ~ #p 1 1 05217168 -human_botfly n 1 2 @ #m 1 0 02194249 -human_chorionic_gonadotrophin n 1 1 @ 1 0 14749030 -human_chorionic_gonadotropin n 1 1 @ 1 0 14749030 -human_death n 1 2 @ ~ 1 1 07332956 -human_dynamo n 1 2 @ ~ 1 0 10462429 -human_ecology n 1 1 @ 1 0 06152125 -human_elbow n 1 3 @ #p %p 1 0 05579944 -human_face n 1 4 @ ~ #p %p 1 0 05600637 -human_foot n 1 4 @ ~ #p %p 1 0 05563266 -human_gamma_globulin n 1 3 @ ~ #s 1 0 15022389 -human_genome_project n 1 1 @ 1 0 00641693 -human_growth_hormone n 1 2 @ ~ 1 0 05412649 -human_head n 1 4 @ ~ #p %p 1 0 05539138 -human_immunodeficiency_virus n 1 1 @ 1 0 01336718 -human_knee n 1 3 @ #p %p 1 0 05573602 -human_language_technology n 1 1 @ 1 0 06142412 -human_nature n 1 1 @ 1 0 04615866 -human_palaeontology n 1 1 @ 1 0 06074189 -human_paleontology n 1 1 @ 1 0 06074189 -human_papilloma_virus n 1 1 @ 1 0 01340331 -human_process n 1 2 @ ~ 1 0 13493998 -human_race n 1 2 @ %m 1 0 02472987 -human_relationship n 1 2 @ ~ 1 0 13780719 -human_remains_pouch n 1 1 @ 1 0 02862770 -human_reproductive_cloning n 1 1 @ 1 0 00638602 -human_right n 1 3 @ ~ ; 1 0 05176846 -human_t-cell_leukemia_virus-1 n 1 1 @ 1 0 01336599 -human_waste n 1 1 @ 1 1 14855635 -humaneness n 1 6 ! @ ~ = + ; 1 0 04828925 -humanisation n 1 2 @ + 1 0 00264775 -humanism n 3 2 @ + 3 2 05967402 05967191 08476829 -humanist n 2 3 @ ~ + 2 1 10191192 10191388 -humanistic_discipline n 1 2 @ ~ 1 0 06153846 -humanitarian n 2 2 @ + 2 0 10191613 10191388 -humanitarianism n 1 2 @ + 1 0 05967402 -humanities n 1 2 @ ~ 1 0 06153846 -humanity n 3 4 @ %m = + 3 2 04829182 04726938 02472987 -humanization n 1 2 @ + 1 0 00264775 -humankind n 1 2 @ %m 1 0 02472987 -humanness n 1 3 @ = + 1 0 04726938 -humanoid n 1 1 @ 1 0 02710201 -humans n 1 2 @ %m 1 0 02472987 -humate n 1 2 @ ~ 1 0 14908977 -humber n 1 2 @ #p 1 0 09307140 -humber_bridge n 1 2 @ #p 1 0 03548797 -humble_plant n 1 2 @ #m 1 0 11755319 -humblebee n 1 2 @ #m 1 0 02209624 -humbleness n 3 4 @ ~ = + 3 0 14436438 07509131 04889527 -humboldt n 2 1 @ 2 0 11066209 11065938 -humboldt_current n 1 1 @ 1 0 11489878 -humbug n 3 4 @ ~ + ; 3 0 06611147 06610779 00753685 -humdinger n 1 1 @ 1 0 10325656 -humdrum n 1 1 @ 1 0 04740326 -hume n 1 1 @ 1 0 11066425 -hume_blake_cronyn n 1 1 @ 1 0 10916325 -hume_cronyn n 1 1 @ 1 0 10916325 -humectant n 1 2 @ ~ 1 0 14908683 -humeral_veil n 1 1 @ 1 0 03548930 -humerus n 1 3 @ #p %p 1 0 05593181 -humic_acid n 1 1 @ 1 0 14909120 -humic_shale n 1 1 @ 1 0 15038680 -humic_substance n 1 2 @ ~ 1 0 14909319 -humidity n 1 3 @ ~ + 1 1 14535643 -humidness n 1 3 @ ~ + 1 0 14535643 -humification n 1 2 @ + 1 0 13494192 -humiliation n 4 3 @ ~ + 4 2 14440488 07507742 07309223 00273449 -humility n 2 5 ! @ ~ = + 2 2 04889527 07509131 -humin n 1 1 @ 1 0 14909480 -hummer n 2 4 @ ~ + ; 2 0 10191802 00108181 -humming n 2 2 @ + 2 2 07385803 01253944 -humming_bird's_trumpet n 1 2 @ #m 1 0 12342852 -humming_top n 1 1 @ 1 0 03549097 -hummingbird n 1 3 @ ~ #m 1 0 01833805 -hummingbird_moth n 1 3 @ ~ #m 1 0 02298541 -hummock n 1 2 @ ~ 1 0 09326662 -hummus n 1 1 @ 1 0 07857731 -humor n 6 5 @ ~ + ; - 6 4 06776138 04650201 07551052 05211044 05604535 05397468 -humoral_immune_response n 1 1 @ 1 0 00861046 -humoring n 1 3 @ ~ + 1 0 01073241 -humorist n 1 3 @ ~ + 1 1 10191943 -humorousness n 1 2 @ + 1 0 04649051 -humour n 6 5 @ ~ + ; - 6 0 07551052 06776138 05604535 05397468 05211044 04650201 -humourist n 1 3 @ ~ + 1 0 10191943 -humous n 1 1 @ 1 0 07857731 -hump n 1 3 @ ~ + 1 0 13894434 -humpback n 3 2 @ #m 3 0 14505069 10192412 02065726 -humpback_whale n 1 2 @ #m 1 0 02065726 -humperdinck n 1 1 @ 1 0 11066621 -humphrey_bogart n 1 1 @ 1 0 10855047 -humphrey_davy n 1 1 @ 1 0 10925132 -humphrey_deforest_bogart n 1 1 @ 1 0 10855047 -humphrey_gilbert n 1 1 @ 1 0 10999202 -humpty_dumpty n 1 1 @ 1 0 09491038 -humulin n 1 2 @ ; 1 0 05411049 -humulus n 1 3 @ #m %m 1 0 12397594 -humulus_americanus n 1 1 @ 1 0 12398384 -humulus_japonicus n 1 1 @ 1 0 12398526 -humulus_lupulus n 1 1 @ 1 0 12398174 -humus n 2 3 @ #s + 2 0 14908822 07857731 -humvee n 1 2 @ ; 1 0 03549199 -hun n 2 2 @ ; 2 1 10192588 09748239 -hunan n 1 2 @ #p 1 0 08726072 -hunan_province n 1 2 @ #p 1 0 08726072 -hunch n 2 3 @ ~ + 2 1 05919034 00406114 -hunchback n 2 1 @ 2 0 14505069 10192412 -hundred n 1 1 @ 1 1 13750415 -hundred-percenter n 1 1 @ 1 0 09911849 -hundred_dollar_bill n 1 1 @ 1 1 13395074 -hundred_thousand n 1 1 @ 1 0 13751404 -hundred_years'_war n 1 2 @ %p 1 0 01305147 -hundredth n 2 1 @ 2 0 13849710 13739051 -hundredweight n 3 3 @ #p %p 3 0 13725271 13721177 13721003 -hung_jury n 1 2 @ ; 1 0 08415127 -hungarian n 2 2 @ #m 2 0 09713985 06958836 -hungarian_capital n 1 2 @ #p 1 0 08952423 -hungarian_goulash n 1 2 @ ~ 1 0 07590320 -hungarian_grass n 1 3 @ ~ #m 1 0 12135270 -hungarian_lilac n 1 1 @ 1 0 12310840 -hungarian_monetary_unit n 1 2 @ ~ 1 0 13676396 -hungarian_partridge n 1 2 @ #m 1 0 01807828 -hungarian_pointer n 1 1 @ 1 0 02100583 -hungarian_sauce n 1 1 @ 1 0 07839172 -hungary n 1 5 @ #p %m %p + 1 1 08952190 -hunger n 2 3 @ ~ + 2 2 14039534 04945254 -hunger_march n 1 2 @ %m 1 0 08428252 -hunger_marcher n 1 2 @ #m 1 0 10192704 -hunger_strike n 1 1 @ 1 0 01242962 -hungriness n 3 3 @ ~ + 3 0 14039534 07486628 04945254 -hunk n 2 2 @ ~ 2 0 10192839 09307300 -hunkpapa n 2 2 @ ~ 2 0 09657206 06910039 -hunnemania_fumariifolia n 1 2 @ #m 1 0 11906127 -hunnemannia n 1 3 @ #m %m 1 0 11905989 -hunt n 8 4 @ ~ + - 8 0 11067047 11066938 11066772 08229779 05770257 00945401 00622584 00452293 -hunt_club n 1 1 @ 1 0 08229779 -hunted_person n 1 2 @ ~ 1 0 10192926 -hunter n 4 4 @ ~ %m + 4 1 10193026 10193719 09380117 03549350 -hunter's_chicken n 1 1 @ 1 0 07580592 -hunter's_sauce n 1 1 @ 1 0 07838659 -hunter-gatherer n 1 2 @ #m 1 0 10193419 -hunting n 3 4 @ ~ + - 3 3 00452293 00945401 00622584 -hunting_and_gathering_society n 1 2 @ %m 1 0 08288518 -hunting_and_gathering_tribe n 1 2 @ %m 1 0 08288518 -hunting_crop n 1 1 @ 1 0 04089836 -hunting_dog n 1 2 @ ~ 1 0 02087122 -hunting_expedition n 1 2 @ ; 1 1 00309906 -hunting_ground n 2 1 @ 2 1 14484969 08582065 -hunting_guide n 1 1 @ 1 0 10193543 -hunting_knife n 1 1 @ 1 0 03549473 -hunting_licence n 1 1 @ 1 0 06550552 -hunting_license n 1 1 @ 1 0 06550552 -hunting_lodge n 1 1 @ 1 0 03685486 -hunting_permit n 1 1 @ 1 0 06550552 -hunting_season n 1 1 @ 1 0 15241186 -hunting_spider n 1 3 @ ~ #m 1 0 01775062 -hunting_watch n 1 1 @ 1 0 03549350 -huntingdon_elm n 1 2 @ #m 1 0 12407396 -huntingdon_willow n 1 2 @ #m 1 0 12725738 -huntington n 4 2 @ #p 4 0 11067604 11067396 11067184 09156241 -huntington's_chorea n 1 1 @ 1 0 14156976 -huntington's_disease n 1 1 @ 1 0 14156976 -huntress n 1 1 @ 1 0 10193650 -huntsman n 1 2 @ ~ 1 0 10193026 -huntsman's_cup n 1 2 @ #m 1 0 12779851 -huntsman's_cups n 1 2 @ #m 1 0 12779851 -huntsman's_horn n 1 2 @ #m 1 0 12780563 -huntsman's_horns n 1 2 @ #m 1 0 12780563 -huntsville n 1 2 @ #p 1 0 09054350 -huon_pine n 1 2 @ #m 1 0 11656123 -hupa n 2 1 @ 2 0 09657489 06919818 -hurdle n 3 2 @ + 3 1 03549589 05691241 00120515 -hurdle_race n 1 1 @ 1 0 07469162 -hurdler n 1 2 @ + 1 0 10193864 -hurdles n 1 1 @ 1 0 07469162 -hurdling n 1 2 @ + 1 0 07469162 -hurdy-gurdy n 1 2 @ ; 1 0 02795978 -hurdy_gurdy n 1 2 @ ; 1 0 02795978 -hurl n 1 2 @ + 1 0 00105479 -hurler n 1 4 @ ~ + ; 1 1 10435988 -hurler's_disease n 1 1 @ 1 0 14157163 -hurler's_syndrome n 1 1 @ 1 0 14157163 -hurling n 1 1 @ 1 0 00470830 -hurly_burly n 1 2 @ ~ 1 0 13977366 -hurok n 1 1 @ 1 0 11067745 -huron n 1 2 @ #p 1 0 09331535 -hurrah n 1 1 @ 1 0 06692973 -hurricane n 1 2 @ #p 1 1 11467018 -hurricane_deck n 1 2 @ #p 1 1 03549732 -hurricane_lamp n 1 1 @ 1 0 03549897 -hurricane_lantern n 1 1 @ 1 0 03549897 -hurricane_roof n 1 2 @ #p 1 0 03549732 -hurriedness n 1 3 @ ~ + 1 0 05060189 -hurry n 3 3 @ ~ + 3 3 14451189 05060189 00555648 -hurrying n 1 3 @ ~ + 1 0 00330160 -hurt n 5 3 @ ~ + 5 2 14285662 07496463 07495327 07420538 00403092 -hurting n 1 3 @ ~ + 1 0 14322699 -hus n 1 1 @ 1 0 11067885 -husain n 2 1 @ 2 0 11068401 11068196 -husayn n 2 1 @ 2 0 11068401 11068196 -husband n 1 4 ! @ ~ + 1 1 10193967 -husband-wife_privilege n 1 1 @ 1 0 05180286 -husbandman n 1 2 @ ~ 1 0 10078806 -husbandry n 1 4 @ ~ %p - 1 1 00916464 -hush n 1 3 @ + ; 1 1 04982478 -hush_money n 1 1 @ 1 0 13284442 -hush_puppy n 1 1 @ 1 0 07688898 -hushing n 1 1 @ 1 0 07384898 -hushpuppy n 1 1 @ 1 0 07688898 -husk n 2 3 @ ~ + 2 0 14805899 13139647 -husk_tomato n 2 4 @ ~ #m #p 2 0 12910285 07734555 -huskiness n 2 2 @ + 2 0 05031214 04988861 -husking n 1 3 @ ~ + 1 0 00394803 -husking_bee n 1 1 @ 1 0 08188967 -husky n 1 1 @ 1 0 02109961 -huss n 1 1 @ 1 0 11067885 -hussar n 1 1 @ 1 0 10194341 -hussar_monkey n 1 2 @ #m 1 0 02486261 -hussein n 2 1 @ 2 0 11068401 11068196 -husserl n 1 1 @ 1 0 11068630 -hussite n 1 1 @ 1 0 10194463 -hussy n 1 1 @ 1 0 09772930 -hustings n 1 2 @ ; 1 0 00800121 -hustle n 2 3 @ ~ + 2 0 00779248 00555138 -hustler n 2 4 @ ~ + ; 2 0 10663315 10194566 -huston n 1 1 @ 1 0 11068760 -hut n 2 3 @ ~ ; 2 2 03550153 03547054 -hutch n 2 2 @ ~ 2 0 03550289 03547054 -hutchins n 1 1 @ 1 0 11068922 -hutchinson n 1 1 @ 1 0 11069085 -hutment n 1 2 @ ; 1 1 03550420 -hutton n 2 1 @ 2 0 11069430 11069261 -hutu n 1 2 @ #m 1 0 09693100 -hutzpah n 1 2 @ ; 1 0 04916200 -huxley n 3 2 @ + 3 0 11069974 11069746 11069534 -huygens n 1 1 @ 1 0 11070218 -huygens'_principle_of_superposition n 1 1 @ 1 0 05991441 -hwang_ho n 1 2 @ #p 1 0 09306257 -hyacinth n 2 3 @ ~ #m 2 1 14909584 12458383 -hyacinth_bean n 1 2 @ #m 1 0 12537569 -hyacinthaceae n 1 2 @ #m 1 0 12458002 -hyacinthoides n 1 3 @ #m %m 1 0 12459048 -hyacinthoides_nonscripta n 1 2 @ #m 1 0 12459275 -hyacinthus_candicans n 1 1 @ 1 0 12458874 -hyacinthus_orientalis n 1 1 @ 1 0 12458550 -hyacinthus_orientalis_albulus n 1 1 @ 1 0 12458713 -hyades n 1 2 @ ; 1 0 09549416 -hyaena n 1 3 @ ~ #m 1 0 02117135 -hyaena_brunnea n 1 2 @ #m 1 0 02117646 -hyaena_hyaena n 1 2 @ #m 1 0 02117512 -hyaenidae n 1 3 @ #m %m 1 0 02116959 -hyalin n 1 2 @ ~ 1 0 14909703 -hyaline n 1 3 @ ~ + 1 0 14909703 -hyaline_cartilage n 1 1 @ 1 0 05288739 -hyaline_membrane_disease n 1 1 @ 1 0 14150740 -hyalinisation n 1 1 @ 1 0 14076809 -hyalinization n 1 1 @ 1 1 14076809 -hyaloid n 1 1 @ 1 0 05319588 -hyaloid_membrane n 1 1 @ 1 0 05319588 -hyalophora n 1 2 @ #m 1 0 02303167 -hyalophora_cecropia n 1 1 @ 1 0 02303284 -hyaloplasm n 1 2 @ + 1 0 05434053 -hyalosperma n 1 2 @ #m 1 0 11983739 -hyalospongiae n 1 3 @ #m %m 1 0 01907495 -hyaluronic_acid n 1 2 @ #s 1 0 14909895 -hyaluronidase n 1 1 @ 1 0 14910165 -hyazyme n 1 2 @ ; 1 0 14910165 -hybanthus n 1 2 @ #m 1 0 12390914 -hybrid n 3 4 @ ~ + ; 3 0 06293229 05870615 01327322 -hybrid_petunia n 1 1 @ 1 0 12909917 -hybrid_tuberous_begonia n 1 1 @ 1 0 12362668 -hybrid_vigor n 1 2 @ ; 1 0 04922597 -hybridisation n 1 4 @ ~ + ; 1 0 00850425 -hybridization n 1 4 @ ~ + ; 1 0 00850425 -hybridizing n 1 4 @ ~ + ; 1 0 00850425 -hybridoma n 1 1 @ 1 0 05470013 -hydantoin n 1 2 @ ~ 1 0 03550533 -hydathode n 1 1 @ 1 0 13153729 -hydatid n 1 1 @ 1 0 14202119 -hydatid_disease n 1 1 @ 1 0 14453414 -hydatid_mole n 1 1 @ 1 0 14192942 -hydatidiform_mole n 1 1 @ 1 0 14192942 -hydatidosis n 1 1 @ 1 0 14453414 -hyderabad n 2 2 @ #p 2 0 08976913 08904269 -hydnaceae n 1 3 @ #m %m 1 0 12986084 -hydnocarpus n 1 3 @ #m %m 1 0 12379278 -hydnocarpus_kurzii n 1 2 @ #m 1 0 12379531 -hydnocarpus_laurifolia n 1 2 @ #m 1 0 12379781 -hydnocarpus_oil n 1 1 @ 1 0 12380029 -hydnocarpus_wightiana n 1 2 @ #m 1 0 12379781 -hydnoraceae n 1 2 @ #m 1 0 11803277 -hydnum n 1 2 @ #m 1 0 12986337 -hydra n 4 3 @ #m ; 4 0 09496261 09307552 05688169 01912152 -hydralazine n 1 1 @ 1 0 03550671 -hydramnios n 1 1 @ 1 0 14193202 -hydrangea n 1 3 @ ~ #m 1 0 12788201 -hydrangea_anomala n 1 2 @ #m 1 0 12788487 -hydrangea_arborescens n 1 2 @ #m 1 0 12788678 -hydrangea_family n 1 3 @ #m %m 1 0 12787565 -hydrangea_macrophylla_hortensis n 1 2 @ #m 1 0 12788854 -hydrangea_paniculata n 1 2 @ #m 1 0 12789054 -hydrangea_petiolaris n 1 2 @ #m 1 0 12789226 -hydrangeaceae n 1 3 @ #m %m 1 0 12787565 -hydrant n 2 2 @ ~ 2 0 04559451 03550916 -hydrargyrum n 1 2 @ #s 1 0 14645346 -hydrarthrosis n 1 2 @ ~ 1 0 14347540 -hydrastis n 1 3 @ #m %m 1 0 11735325 -hydrastis_canadensis n 1 2 @ #m 1 0 11735570 -hydrate n 1 3 @ ~ + 1 0 14910440 -hydrated_aluminium_oxide n 1 2 @ #s 1 0 14824238 -hydrated_aluminum_oxide n 1 2 @ #s 1 0 14824238 -hydrated_lime n 1 1 @ 1 0 14936010 -hydrated_oxide n 1 2 @ ~ 1 0 14935555 -hydration n 1 2 @ + 1 0 13494325 -hydraulic_brake n 1 3 @ ~ %p 1 0 03551084 -hydraulic_brake_cylinder n 1 2 @ #p 1 0 02889996 -hydraulic_brakes n 1 3 @ ~ %p 1 0 03551084 -hydraulic_cement n 1 1 @ 1 0 14804958 -hydraulic_engineering n 1 1 @ 1 0 06127873 -hydraulic_press n 1 1 @ 1 0 03551395 -hydraulic_pump n 1 1 @ 1 0 03551582 -hydraulic_ram n 1 1 @ 1 0 03551582 -hydraulic_system n 1 2 @ ~ 1 0 03551790 -hydraulic_transmission n 1 1 @ 1 0 03552001 -hydraulic_transmission_system n 1 1 @ 1 0 03552001 -hydraulics n 1 3 @ ~ + 1 0 06113009 -hydrazine n 1 2 @ #p 1 0 14910581 -hydrazo_group n 1 1 @ 1 0 14914544 -hydrazo_radical n 1 1 @ 1 0 14914544 -hydrazoic_acid n 1 2 @ %s 1 0 14612764 -hydrazoite n 1 2 @ #s 1 0 14770400 -hydremia n 1 1 @ 1 0 14193421 -hydride n 1 2 @ ~ 1 1 14910748 -hydrilla n 1 2 @ #m 1 0 12613706 -hydrilla_verticillata n 1 2 @ #m 1 0 12613706 -hydriodic_acid n 1 1 @ 1 0 14612972 -hydrobates n 1 3 @ #m %m 1 0 02061073 -hydrobates_pelagicus n 1 2 @ #m 1 0 02061217 -hydrobatidae n 1 3 @ #m %m 1 0 02060719 -hydrobromic_acid n 1 1 @ 1 0 14910926 -hydrocarbon n 1 2 @ ~ 1 1 14911057 -hydrocele n 1 1 @ 1 0 14193571 -hydrocephalus n 1 2 @ + 1 0 14465768 -hydrocephaly n 1 2 @ + 1 0 14465768 -hydrocharidaceae n 1 3 @ #m %m 1 0 12612913 -hydrocharis n 1 3 @ #m %m 1 0 12613285 -hydrocharis_morsus-ranae n 1 2 @ #m 1 0 12613408 -hydrocharitaceae n 1 3 @ #m %m 1 0 12612913 -hydrochloric_acid n 1 2 @ ~ 1 0 14912387 -hydrochloride n 1 1 @ 1 1 14817964 -hydrochlorofluorocarbon n 1 1 @ 1 0 14613130 -hydrochlorothiazide n 1 2 @ #s 1 0 03552169 -hydrochoeridae n 1 2 @ %m 1 0 02365244 -hydrochoerus n 1 2 @ #m 1 0 02365356 -hydrochoerus_hydrochaeris n 1 1 @ 1 0 02365480 -hydrocolloid n 1 2 @ ~ 1 0 14590975 -hydrocortisone n 1 1 @ 1 0 14752702 -hydrocortone n 1 2 @ ; 1 0 14752702 -hydrocracking n 1 1 @ 1 0 13494472 -hydrocyanic_acid n 1 1 @ 1 0 14613643 -hydrodamalis n 1 3 @ #m %m 1 0 02074542 -hydrodamalis_gigas n 1 2 @ #m 1 0 02074726 -hydrodiuril n 1 3 @ #s ; 1 0 03552169 -hydrodynamics n 1 3 @ ~ + 1 0 06113914 -hydroelectric_turbine n 1 2 @ ~ 1 0 03552449 -hydroelectricity n 1 2 @ + 1 0 11467202 -hydroflumethiazide n 1 1 @ 1 0 03552639 -hydrofluoric_acid n 1 1 @ 1 0 14913136 -hydrofluorocarbon n 1 1 @ 1 0 14912556 -hydrofluosilicic_acid n 1 1 @ 1 0 14872408 -hydrofoil n 2 1 @ 2 0 03553019 03552749 -hydrogel n 1 1 @ 1 0 14590685 -hydrogen n 1 4 @ ~ #s + 1 1 14640434 -hydrogen_atom n 1 3 @ ~ %p 1 1 14640756 -hydrogen_azide n 1 2 @ %s 1 0 14612764 -hydrogen_bomb n 1 1 @ 1 0 03553248 -hydrogen_bond n 1 1 @ 1 1 11437111 -hydrogen_bromide n 1 1 @ 1 0 14912710 -hydrogen_carbonate n 1 2 @ ~ 1 0 14775729 -hydrogen_chloride n 1 1 @ 1 0 14912840 -hydrogen_cyanide n 1 1 @ 1 0 14613368 -hydrogen_fluoride n 1 1 @ 1 0 14912935 -hydrogen_iodide n 1 1 @ 1 0 14913278 -hydrogen_ion n 1 2 @ #p 1 0 09307719 -hydrogen_ion_concentration n 1 2 @ ~ 1 0 05038959 -hydrogen_peroxide n 1 1 @ 1 1 14781225 -hydrogen_sulfide n 1 1 @ 1 0 14913518 -hydrogenation n 1 2 @ + 1 0 13494707 -hydrography n 1 2 @ + 1 0 06120111 -hydroid n 1 3 @ ~ #m 1 0 01911839 -hydroiodic_acid n 1 1 @ 1 0 14913403 -hydrokinetics n 1 3 @ ~ + 1 0 06113914 -hydrolith n 1 1 @ 1 0 14937366 -hydrologist n 1 1 @ 1 0 10194775 -hydrology n 1 1 @ 1 0 06119729 -hydrolysate n 1 1 @ 1 0 14613841 -hydrolysis n 1 2 @ + 1 0 13494919 -hydromancer n 1 2 @ + 1 0 10194865 -hydromancy n 1 2 @ + 1 0 05777149 -hydromantes n 1 3 @ #m %m 1 0 01637796 -hydromantes_brunus n 1 1 @ 1 0 01638329 -hydromantes_shastae n 1 1 @ 1 0 01638194 -hydromel n 1 2 @ #s 1 0 07890970 -hydrometer n 1 3 @ ~ + 1 0 03553486 -hydrometry n 1 2 @ + 1 0 01002413 -hydromorphone n 1 1 @ 1 0 03553708 -hydromorphone_hydrochloride n 1 1 @ 1 0 03553708 -hydromyinae n 1 3 @ #m %m 1 0 02334849 -hydromys n 1 3 @ #m %m 1 0 02335007 -hydronephrosis n 1 1 @ 1 0 14466122 -hydropathy n 1 1 @ 1 0 00711127 -hydrophidae n 1 3 @ #m %m 1 0 01751621 -hydrophobia n 3 1 @ 3 0 14383624 14383544 14271667 -hydrophobicity n 1 2 @ + 1 0 05196220 -hydrophyllaceae n 1 3 @ #m %m 1 0 12834408 -hydrophyllum n 1 3 @ #m %m 1 0 12834671 -hydrophyllum_virginianum n 1 1 @ 1 0 12834938 -hydrophyte n 1 4 @ ~ %p + 1 0 13121544 -hydrophytic_plant n 1 3 @ ~ %p 1 0 13121544 -hydroplane n 2 3 @ ~ + 2 0 04160586 03552749 -hydroplane_racing n 1 1 @ 1 0 00449796 -hydroponics n 1 3 @ ~ + 1 0 00918976 -hydrops n 1 2 @ ~ 1 0 14316714 -hydrosphere n 1 3 @ #p %p 1 0 09307902 -hydrostatic_head n 1 1 @ 1 1 11496296 -hydrostatics n 1 3 @ + - 1 0 06113415 -hydrotherapy n 1 1 @ 1 0 00711127 -hydrothorax n 1 1 @ 1 0 14320602 -hydroxide n 2 2 @ ~ 2 1 14935555 14914670 -hydroxide_ion n 1 1 @ 1 0 14914945 -hydroxy_acid n 1 2 @ ~ 1 0 14613922 -hydroxyacetic_acid n 1 1 @ 1 0 14888124 -hydroxybenzene n 1 1 @ 1 0 14796073 -hydroxybenzoic_acid n 1 1 @ 1 0 14614139 -hydroxybutyric_acid n 1 2 @ ~ 1 0 14927451 -hydroxychloroquine n 1 1 @ 1 0 03553908 -hydroxyl n 1 1 @ 1 0 14914775 -hydroxyl_group n 1 1 @ 1 0 14914775 -hydroxyl_ion n 1 1 @ 1 0 14914945 -hydroxyl_radical n 1 1 @ 1 0 14914775 -hydroxymethyl n 1 1 @ 1 1 14915072 -hydroxyproline n 1 1 @ 1 0 14607131 -hydroxytetracycline n 1 1 @ 1 0 03869389 -hydroxyzine n 1 1 @ 1 0 03554131 -hydroxyzine_hydrochloride n 1 1 @ 1 0 03554131 -hydrozoa n 1 3 @ #m %m 1 0 01911511 -hydrozoan n 1 3 @ ~ #m 1 0 01911839 -hydrus n 1 1 @ 1 0 09308116 -hyemoschus n 1 3 @ #m %m 1 0 02436514 -hyemoschus_aquaticus n 1 2 @ #m 1 0 02436645 -hyena n 1 3 @ ~ #m 1 0 02117135 -hyena_dog n 1 1 @ 1 0 02116738 -hygeia n 1 2 @ ; 1 0 09562883 -hygiene n 2 2 @ + 2 0 14495080 06051380 -hygienics n 1 1 @ 1 0 06051380 -hygienist n 1 1 @ 1 0 10194969 -hygrocybe n 1 3 @ #m %m 1 0 13070708 -hygrocybe_acutoconica n 1 2 @ #m 1 0 13070875 -hygrodeik n 1 1 @ 1 0 03554375 -hygrometer n 1 2 @ ~ 1 0 03554460 -hygrophoraceae n 1 3 @ #m %m 1 0 13070003 -hygrophorus n 1 3 @ #m %m 1 0 13071029 -hygrophorus_borealis n 1 2 @ #m 1 0 13071371 -hygrophorus_caeruleus n 1 2 @ #m 1 0 13071553 -hygrophorus_inocybiformis n 1 2 @ #m 1 0 13071815 -hygrophorus_kauffmanii n 1 2 @ #m 1 0 13072031 -hygrophorus_marzuolus n 1 2 @ #m 1 0 13072209 -hygrophorus_purpurascens n 1 2 @ #m 1 0 13072350 -hygrophorus_russula n 1 2 @ #m 1 0 13072528 -hygrophorus_sordidus n 1 2 @ #m 1 0 13072706 -hygrophorus_tennesseensis n 1 2 @ #m 1 0 13072863 -hygrophorus_turundus n 1 2 @ #m 1 0 13073055 -hygrophyte n 1 2 @ + 1 0 11553522 -hygroscope n 1 2 @ + 1 0 03554645 -hygroton n 1 1 @ 1 0 03023623 -hygrotrama n 1 3 @ #m %m 1 0 13073211 -hygrotrama_foetens n 1 2 @ #m 1 0 13073380 -hyla n 1 3 @ #m %m 1 0 01650509 -hyla_arenicolor n 1 2 @ #m 1 0 01651059 -hyla_crucifer n 1 2 @ #m 1 0 01650690 -hyla_regilla n 1 2 @ #m 1 0 01650901 -hylactophryne n 1 3 @ #m %m 1 0 01643374 -hylactophryne_augusti n 1 2 @ #m 1 0 01643507 -hylidae n 1 3 @ #m %m 1 0 01649948 -hylobates n 1 3 @ #m %m 1 0 02483224 -hylobates_lar n 1 2 @ #m 1 0 02483362 -hylobates_syndactylus n 1 2 @ #m 1 0 02483708 -hylobatidae n 1 3 @ #m %m 1 0 02482820 -hylocereus n 1 3 @ #m %m 1 0 11848253 -hylocichla n 1 3 @ #m %m 1 0 01559294 -hylocichla_fuscescens n 1 2 @ #m 1 0 01559639 -hylocichla_guttata n 1 2 @ #m 1 0 01559477 -hylocichla_mustelina n 1 1 @ 1 0 01559804 -hylophylax n 1 3 @ #m %m 1 0 01553879 -hylophylax_naevioides n 1 2 @ #m 1 0 01554017 -hyman_george_rickover n 1 1 @ 1 0 11261986 -hyman_rickover n 1 1 @ 1 0 11261986 -hymen n 2 5 @ ~ #p + ; 2 0 09564371 05521934 -hymenaea n 1 3 @ #m %m 1 0 11750359 -hymenaea_courbaril n 1 3 @ #m %s 1 0 11750508 -hymenanthera n 1 2 @ #m 1 0 12391111 -hymeneal n 1 1 @ 1 0 07036699 -hymeneals n 1 1 @ 1 0 07452074 -hymenium n 1 2 @ #p 1 0 11550474 -hymenogastrales n 1 3 @ #m %m 1 0 12970872 -hymenomycetes n 1 2 @ #m 1 0 12998130 -hymenophyllaceae n 1 3 @ #m %m 1 0 12951465 -hymenophyllum n 1 3 @ #m %m 1 0 12951668 -hymenopter n 1 3 @ ~ #m 1 0 02206270 -hymenoptera n 1 4 @ #m %m + 1 0 02205896 -hymenopteran n 1 3 @ ~ #m 1 0 02206270 -hymenopteron n 1 3 @ ~ #m 1 0 02206270 -hymenopterous_insect n 1 3 @ ~ #m 1 0 02206270 -hymenoxys_acaulis n 1 2 @ #m 1 0 12025220 -hymenoxys_grandiflora n 1 2 @ #m 1 0 12025507 -hymie n 1 2 @ ; 1 0 09682122 -hymn n 1 3 @ ~ + 1 1 07035870 -hymnal n 1 1 @ 1 0 06418258 -hymnary n 1 1 @ 1 0 06418258 -hymnbook n 1 1 @ 1 0 06418258 -hymnody n 1 1 @ 1 0 01255549 -hynerpeton n 1 3 @ #m %m 1 0 01627786 -hynerpeton_bassetti n 1 2 @ #m 1 0 01627976 -hyoid n 1 1 @ 1 0 05275162 -hyoid_bone n 1 1 @ 1 0 05275162 -hyoscine n 1 1 @ 1 0 04149490 -hyoscyamine n 1 1 @ 1 0 03554795 -hyoscyamus n 1 3 @ #m %m 1 0 12904148 -hyoscyamus_muticus n 1 2 @ #m 1 0 12904562 -hyoscyamus_niger n 1 2 @ #m 1 0 12904314 -hypallage n 1 1 @ 1 0 07103671 -hypanthium n 1 1 @ 1 0 11690254 -hypatia n 1 1 @ 1 0 11070387 -hype n 1 1 @ 1 0 07248507 -hypentelium n 1 2 @ #m 1 0 01445718 -hypentelium_nigricans n 1 1 @ 1 0 01445857 -hyper-eutectoid_steel n 1 1 @ 1 0 14913633 -hyperacidity n 1 1 @ 1 0 05039633 -hyperactivity n 1 3 @ #p + 1 0 14060256 -hyperacusia n 1 1 @ 1 0 14551321 -hyperacusis n 1 1 @ 1 0 14551321 -hyperadrenalism n 1 1 @ 1 0 14117449 -hyperadrenocorticism n 1 1 @ 1 0 14117668 -hyperaemia n 1 2 @ ~ 1 0 14320984 -hyperaldosteronism n 1 1 @ 1 0 14117317 -hyperalimentation n 1 1 @ 1 0 01059445 -hyperbaric_chamber n 1 1 @ 1 0 03555006 -hyperbaton n 1 1 @ 1 0 07103802 -hyperbetalipoproteinemia n 1 1 @ 1 0 14158594 -hyperbilirubinemia n 1 3 @ ~ #p 1 0 14318927 -hyperbilirubinemia_of_the_newborn n 1 1 @ 1 0 14319093 -hyperbola n 1 2 @ + 1 0 13886575 -hyperbole n 1 2 @ + 1 0 07106502 -hyperbolic_geometry n 1 2 @ ; 1 0 06007046 -hyperboloid n 1 2 @ + 1 0 13896854 -hyperborean n 1 2 @ ; 1 0 09496460 -hypercalcaemia n 1 1 @ 1 0 14268623 -hypercalcemia n 1 2 ! @ 1 0 14268623 -hypercalcinuria n 1 1 @ 1 0 14269090 -hypercalciuria n 1 1 @ 1 0 14269090 -hypercapnia n 1 3 ! @ #p 1 0 14041940 -hypercarbia n 1 2 @ #p 1 0 14041940 -hypercatalectic n 1 3 @ + ; 1 0 06348685 -hypercellularity n 1 1 @ 1 1 14061599 -hypercholesteremia n 1 2 @ ~ 1 0 14269319 -hypercholesterolemia n 1 2 @ ~ 1 0 14269319 -hyperchromic_anaemia n 1 1 @ 1 0 14165373 -hyperchromic_anemia n 1 1 @ 1 0 14165373 -hypercoaster n 1 1 @ 1 0 03555217 -hyperdactyly n 1 2 @ ; 1 0 14471724 -hyperemesis n 1 2 @ ~ 1 0 00119297 -hyperemesis_gravidarum n 1 1 @ 1 0 00119402 -hyperemia n 1 3 @ ~ + 1 1 14320984 -hyperextension n 1 2 @ + 1 0 00369694 -hyperfocal_distance n 1 1 @ 1 0 05086563 -hyperglycaemia n 1 1 @ 1 0 14319299 -hyperglycemia n 1 2 ! @ 1 0 14319299 -hyperglyphe_perciformis n 1 2 @ #m 1 0 02635154 -hyperhidrosis n 1 1 @ 1 0 13495209 -hypericaceae n 1 2 @ #m 1 0 12367122 -hypericales n 1 3 @ #m %m 1 0 12359026 -hypericism n 1 1 @ 1 0 14224170 -hypericum n 1 3 @ #m %m 1 0 12367306 -hypericum_androsaemum n 1 1 @ 1 0 12368028 -hypericum_ascyron n 1 1 @ 1 0 12368257 -hypericum_calycinum n 1 1 @ 1 0 12368451 -hypericum_crux_andrae n 1 1 @ 1 0 12368847 -hypericum_gentianoides n 1 1 @ 1 0 12368637 -hypericum_hypericoides n 1 1 @ 1 0 12369066 -hypericum_maculatum n 1 1 @ 1 0 12369665 -hypericum_perforatum n 1 1 @ 1 0 12369309 -hypericum_prolificum n 1 1 @ 1 0 12369476 -hypericum_pyramidatum n 1 1 @ 1 0 12368257 -hypericum_spathulatum n 1 1 @ 1 0 12369476 -hypericum_tetrapterum n 1 1 @ 1 0 12369665 -hypericum_virginianum n 1 1 @ 1 0 12369845 -hyperidrosis n 1 1 @ 1 0 13495209 -hyperion n 1 2 @ ; 1 0 09564480 -hyperkalemia n 1 2 ! @ 1 0 14269556 -hyperkinetic_syndrome n 1 2 @ %p 1 0 14056280 -hyperlink n 1 1 @ 1 0 06586672 -hyperlipaemia n 1 1 @ 1 0 14193925 -hyperlipemia n 1 1 @ 1 0 14193925 -hyperlipidaemia n 1 1 @ 1 0 14193925 -hyperlipidemia n 1 1 @ 1 0 14193925 -hyperlipoidaemia n 1 1 @ 1 0 14193925 -hyperlipoidemia n 1 1 @ 1 0 14193925 -hyperlipoproteinemia n 1 2 @ ~ 1 0 14270380 -hypermarket n 1 2 @ ; 1 0 03555426 -hypermastigina n 1 3 @ #m %m 1 0 01418794 -hypermastigote n 1 2 @ #m 1 0 01418947 -hypermedia n 1 2 @ %p 1 0 06261922 -hypermedia_system n 1 2 @ %p 1 0 06261922 -hypermenorrhea n 1 1 @ 1 0 13513540 -hypermetropia n 1 3 @ ~ + 1 0 14554011 -hypermetropy n 1 3 @ ~ + 1 0 14554011 -hypermotility n 1 1 @ 1 0 14174316 -hypernatremia n 1 2 ! @ 1 0 14271015 -hypernym n 1 1 @ 1 0 06292836 -hypernymy n 1 1 @ 1 0 13808004 -hyperoartia n 1 2 @ #m 1 0 01477184 -hyperodontidae n 1 3 @ #m %m 1 0 02067941 -hyperoglyphe n 1 3 @ #m %m 1 0 02635013 -hyperon n 1 2 @ ~ 1 0 09308242 -hyperoodon n 1 3 @ #m %m 1 0 02068408 -hyperoodon_ampullatus n 1 2 @ #m 1 0 02068541 -hyperope n 1 1 @ 1 0 10195056 -hyperopia n 1 4 ! @ ~ + 1 0 14554011 -hyperotreta n 1 2 @ #m 1 0 01478073 -hyperparathyroidism n 1 2 ! @ 1 0 14076992 -hyperpiesia n 1 1 @ 1 0 14104645 -hyperpiesis n 1 1 @ 1 0 14104645 -hyperpigmentation n 1 3 ! @ ~ 1 0 14290881 -hyperpituitarism n 1 2 @ #p 1 0 14077454 -hyperplasia n 1 2 @ ~ 1 1 14368805 -hyperpnea n 1 2 ! @ 1 0 00833578 -hyperpyrexia n 1 1 @ 1 0 14365619 -hypersecretion n 1 1 @ 1 0 13495333 -hypersensitivity n 2 3 @ ~ + 2 0 14533796 05653475 -hypersensitivity_reaction n 1 2 @ ~ 1 0 14533203 -hypersomnia n 1 3 ! @ ~ 1 0 14023236 -hypersplenism n 1 1 @ 1 0 14271322 -hyperstat n 1 2 @ ; 1 0 03190303 -hypertensin n 1 3 @ ~ ; 1 0 02711890 -hypertension n 1 3 ! @ ~ 1 0 14103510 -hypertensive n 1 1 @ 1 0 10195155 -hypertext n 1 2 @ #p 1 0 06262176 -hypertext_mark-up_language n 1 1 @ 1 0 06788262 -hypertext_markup_language n 1 1 @ 1 0 06788262 -hypertext_system n 1 1 @ 1 0 06589352 -hypertext_transfer_protocol n 1 1 @ 1 0 06665847 -hyperthermia n 1 3 ! @ ~ 1 0 14044174 -hyperthermy n 1 2 @ ~ 1 0 14044174 -hyperthyroidism n 1 4 ! @ ~ %p 1 0 14120767 -hypertonia n 1 3 ! @ + 1 0 14576242 -hypertonicity n 2 2 ! @ 2 0 14576690 14576242 -hypertonus n 1 3 ! @ + 1 0 14576242 -hypertrophic_cardiomyopathy n 1 1 @ 1 0 14111133 -hypertrophic_rosacea n 1 1 @ 1 0 14397040 -hypertrophy n 1 3 @ ~ + 1 1 14366759 -hypervelocity n 1 1 @ 1 1 15283780 -hyperventilation n 1 2 @ + 1 0 00833870 -hypervitaminosis n 1 1 @ 1 0 14198829 -hypervolaemia n 1 1 @ 1 0 14194942 -hypervolemia n 1 2 ! @ 1 0 14194942 -hypesthesia n 1 1 @ 1 0 14559852 -hypha n 1 3 @ ~ #p 1 0 13022538 -hyphantria n 1 3 @ #m %m 1 0 02308325 -hyphantria_cunea n 2 2 @ #m 2 0 02308735 02308618 -hyphema n 1 1 @ 1 0 14370726 -hyphen n 1 2 @ + 1 0 06843148 -hyphenation n 2 4 @ #m #p + 2 0 00390735 00390445 -hypnagogue n 1 2 @ ~ 1 0 14913744 -hypnoanalysis n 1 1 @ 1 0 00705319 -hypnogenesis n 1 1 @ 1 0 00238778 -hypnopedia n 1 1 @ 1 0 00892538 -hypnophobia n 1 1 @ 1 0 14383759 -hypnos n 1 2 @ ; 1 0 09496673 -hypnosis n 1 3 @ ~ + 1 0 14026592 -hypnotherapy n 1 1 @ 1 0 00704064 -hypnotic n 1 2 @ ~ 1 0 04260934 -hypnotic_trance n 1 1 @ 1 0 05681701 -hypnotiser n 1 2 @ + 1 0 10195261 -hypnotism n 1 2 @ + 1 0 00158996 -hypnotist n 1 2 @ + 1 0 10195261 -hypnotizer n 1 2 @ + 1 0 10195261 -hypo n 2 3 @ ~ %p 2 0 14913860 03555662 -hypo-eutectoid_steel n 1 1 @ 1 0 14914191 -hypoadrenalism n 1 1 @ 1 0 14116908 -hypoadrenocorticism n 1 1 @ 1 1 14116908 -hypobasidium n 1 2 @ #p 1 0 12994711 -hypobetalipoproteinemia n 1 2 @ ~ 1 0 14158812 -hypoblast n 1 1 @ 1 0 01464573 -hypocalcaemia n 1 1 @ 1 0 14268871 -hypocalcemia n 1 2 ! @ 1 0 14268871 -hypocapnia n 1 2 ! @ 1 0 14042165 -hypocellularity n 1 1 @ 1 1 14061703 -hypochaeris n 1 3 @ #m %m 1 0 11983910 -hypochaeris_radicata n 1 2 @ #m 1 0 11984144 -hypochlorite n 1 2 @ ~ 1 0 14614245 -hypochlorous_acid n 1 1 @ 1 0 14914014 -hypochoeris n 1 3 @ #m %m 1 0 11983910 -hypochondria n 1 2 @ + 1 0 14375005 -hypochondriac n 1 1 @ 1 0 10195487 -hypochondriasis n 1 1 @ 1 0 14375005 -hypochondrium n 1 2 @ #p 1 0 05385363 -hypochromic_anaemia n 1 2 @ ~ 1 0 14165544 -hypochromic_anemia n 1 2 @ ~ 1 0 14165544 -hypocorism n 1 1 @ 1 0 06339244 -hypocreaceae n 1 4 @ ~ #m %m 1 0 12965209 -hypocreales n 1 2 @ #m 1 0 12965056 -hypocrisy n 2 3 @ ~ + 2 2 06760076 04868148 -hypocrite n 1 2 @ ~ 1 1 10195593 -hypocycloid n 1 1 @ 1 0 13909752 -hypoderma n 1 3 @ #m %m 1 0 02194887 -hypodermatidae n 1 3 @ #m %m 1 0 02194414 -hypodermic n 1 3 @ ~ %p 1 0 03555662 -hypodermic_needle n 1 2 @ #p 1 0 03555564 -hypodermic_syringe n 1 3 @ ~ %p 1 1 03555662 -hypodermis n 1 3 @ #p + 1 0 01895850 -hypoesthesia n 1 1 @ 1 0 14559852 -hypogammaglobulinemia n 1 1 @ 1 0 14128650 -hypogastric_artery n 1 1 @ 1 0 05347631 -hypogastric_plexus n 1 1 @ 1 0 05506976 -hypogastric_vein n 1 1 @ 1 0 05369404 -hypoglossal n 1 1 @ 1 0 05480607 -hypoglossal_nerve n 1 1 @ 1 0 05480607 -hypoglycaemia n 1 3 @ #p + 1 0 14319454 -hypoglycaemic_agent n 1 2 @ ~ 1 0 14914301 -hypoglycemia n 1 4 ! @ #p + 1 0 14319454 -hypoglycemic_agent n 1 2 @ ~ 1 0 14914301 -hypogonadism n 1 2 @ ~ 1 0 14075358 -hypokalemia n 1 2 ! @ 1 0 14269772 -hypolipoproteinemia n 1 2 @ ~ 1 0 14270614 -hyponatremia n 1 2 ! @ 1 0 14271173 -hyponitrous_acid n 1 1 @ 1 0 14614378 -hyponym n 1 1 @ 1 0 06292973 -hyponymy n 1 1 @ 1 0 13807853 -hypopachus n 1 3 @ #m %m 1 0 01653384 -hypoparathyroidism n 1 2 ! @ 1 0 14077269 -hypophosphoric_acid n 1 1 @ 1 0 14614490 -hypophosphorous_acid n 1 1 @ 1 0 14614594 -hypophyseal_stalk n 1 2 @ #p 1 0 05484198 -hypophysectomy n 1 2 @ + 1 0 00677038 -hypophysial_dwarf n 1 1 @ 1 0 10436458 -hypophysis n 1 4 @ #p %p + 1 0 05483890 -hypopigmentation n 1 4 ! @ ~ #p 1 0 14291010 -hypopitys n 1 2 @ #m 1 0 12259122 -hypoplasia n 1 1 @ 1 0 14369064 -hypoplastic_anaemia n 1 1 @ 1 0 14165730 -hypoplastic_anemia n 1 1 @ 1 0 14165730 -hypoplastic_dwarf n 1 1 @ 1 0 10472447 -hypopnea n 1 2 ! @ 1 0 00833772 -hypoproteinemia n 1 1 @ 1 0 14270846 -hyposmia n 1 1 @ 1 0 14552718 -hypospadias n 1 1 @ 1 0 14198997 -hypostasis n 4 5 @ ~ #m + ; 4 0 13495507 13495413 09538021 05921868 -hypostasis_of_christ n 1 3 @ ~ #m 1 0 09538021 -hypostatisation n 1 2 @ + 1 0 00932804 -hypostatization n 1 2 @ + 1 0 00932804 -hypotension n 1 3 ! @ ~ 1 0 14104522 -hypotensive n 1 1 @ 1 0 10195942 -hypotenuse n 1 2 @ #p 1 0 13897528 -hypothalamic_releasing_factor n 1 1 @ 1 0 05412242 -hypothalamic_releasing_hormone n 1 1 @ 1 0 05412242 -hypothalamus n 1 3 @ #p + 1 1 05499379 -hypothermia n 1 3 ! @ + 1 0 14044454 -hypothesis n 3 4 @ ~ #p + 3 2 07162545 05888929 06782680 -hypothetical n 1 1 @ 1 0 05889575 -hypothetical_creature n 1 2 @ ~ 1 0 09484313 -hypothetical_imperative n 1 1 @ 1 0 06656274 -hypothrombinemia n 1 1 @ 1 0 14194690 -hypothyroidism n 1 3 ! @ ~ 1 1 14121276 -hypotonia n 1 3 ! @ + 1 0 14576468 -hypotonicity n 2 3 ! @ + 2 0 14576860 14576468 -hypotonus n 1 2 ! @ 1 0 14576468 -hypovitaminosis n 1 2 @ ~ 1 0 14198576 -hypovolaemia n 1 2 @ + 1 0 14195112 -hypovolemia n 1 3 ! @ + 1 0 14195112 -hypovolemic_shock n 1 1 @ 1 0 14067575 -hypoxia n 1 3 @ ~ #p 1 0 14041256 -hypoxic_hypoxia n 1 1 @ 1 0 14041631 -hypoxidaceae n 1 3 @ #m %m 1 0 12422751 -hypoxis n 1 3 @ #m %m 1 0 12422931 -hypoxis_hirsuta n 1 1 @ 1 0 12423444 -hypozeugma n 1 1 @ 1 0 07103912 -hypozeuxis n 1 1 @ 1 0 07104020 -hypsiglena n 1 3 @ #m %m 1 0 01740005 -hypsiglena_torquata n 1 2 @ #m 1 0 01740131 -hypsiprymnodon n 1 3 @ #m %m 1 0 01879701 -hypsiprymnodon_moschatus n 1 2 @ #m 1 0 01879837 -hypsography n 2 1 @ 2 0 06117202 01002554 -hypsometer n 1 1 @ 1 0 03555862 -hypsometry n 1 1 @ 1 0 01002554 -hyracoidea n 1 3 @ #m %m 1 0 02372251 -hyracotherium n 1 3 @ #m %m 1 0 02375592 -hyrax n 1 3 @ ~ #m 1 0 02372584 -hyson n 1 1 @ 1 0 07935288 -hyssop n 2 4 @ #m #p %p 2 0 12848499 07816575 -hyssop_loosestrife n 1 2 @ #m 1 0 12328801 -hyssop_oil n 1 2 @ #s 1 0 12848770 -hyssopus n 1 3 @ #m %m 1 0 12848343 -hyssopus_officinalis n 1 3 @ #m %p 1 0 12848499 -hysterectomy n 1 2 @ ~ 1 0 00677174 -hysteresis n 1 1 @ 1 0 11467318 -hysteria n 3 4 @ ~ %p + 3 2 14391876 07520507 14393438 -hysteric n 1 1 @ 1 0 10196046 -hysterical_neurosis n 1 3 @ ~ %p 1 0 14393438 -hysterics n 1 1 @ 1 0 14082984 -hysterocatalepsy n 1 1 @ 1 0 14393862 -hysteron_proteron n 2 1 @ 2 0 07104149 05894311 -hysterosalpingogram n 1 1 @ 1 0 03555996 -hysteroscopy n 1 1 @ 1 0 00642910 -hysterotomy n 1 2 @ #p 1 0 00677299 -hystricidae n 1 3 @ #m %m 1 0 02346823 -hystricomorpha n 1 3 @ #m %m 1 0 02346315 -hytrin n 1 2 @ ; 1 0 04412550 -hz n 1 2 @ #p 1 0 15279104 -i n 3 4 @ ~ #m #s 3 0 14641397 13742573 06832033 -i-beam n 1 1 @ 1 0 03556173 -i._a._richards n 1 1 @ 1 0 11260945 -i._f._stone n 1 1 @ 1 0 11319413 -i._m._pei n 1 2 @ ; 1 0 11228153 -i.d. n 1 1 @ 1 0 06887278 -i.e.d. n 1 2 @ ~ 1 0 03565565 -i.q. n 1 2 @ ~ 1 1 13821977 -i.w.w. n 1 1 @ 1 0 08473173 -i_chronicles n 1 2 @ #p 1 0 06435651 -i_corinthians n 1 2 @ #p 1 0 06443398 -i_esdra n 1 2 @ #p 1 0 06459978 -i_john n 1 2 @ #p 1 0 06447221 -i_kings n 1 2 @ #p 1 0 06435004 -i_maccabees n 1 2 @ #p 1 0 06460776 -i_peter n 1 2 @ #p 1 0 06446860 -i_samuel n 1 2 @ #p 1 0 06434650 -i_thessalonians n 1 2 @ #p 1 0 06444959 -i_timothy n 1 2 @ #p 1 0 06445473 -ia n 1 3 @ #p %p 1 0 09086173 -iaa n 2 2 @ ; 2 0 14918529 08025112 -iaea n 1 1 @ 1 0 08300641 -iago n 1 1 @ 1 0 09600624 -iamb n 1 1 @ 1 0 07095280 -iambic n 1 1 @ 1 0 06384995 -iambus n 1 1 @ 1 0 07095280 -ian_douglas_smith n 1 1 @ 1 0 11306297 -ian_fleming n 1 1 @ 1 0 10972985 -ian_lancaster_fleming n 1 1 @ 1 0 10972985 -ian_smith n 1 1 @ 1 0 11306297 -ian_wilmut n 1 1 @ 1 0 11390692 -ianfu n 1 1 @ 1 0 09941172 -iapetus n 1 2 @ ; 1 0 09575140 -ibadan n 1 2 @ #p 1 0 08974330 -ibda-c n 1 2 @ ; 1 0 08025497 -iberia n 2 5 @ #p %m %p + 2 0 09018647 08984567 -iberian n 2 2 @ #m 2 0 10196283 10196133 -iberian_peninsula n 1 4 @ #p %m %p 1 0 08984567 -iberis n 1 3 @ #m %m 1 0 11889473 -ibero-mesornis n 1 2 @ #m 1 0 01517036 -ibert n 1 1 @ 1 0 11070531 -ibex n 1 1 @ 1 0 02417914 -ibis n 1 3 @ ~ #m 1 0 02005790 -ibis_ibis n 1 2 @ #m 1 0 02006063 -ibizan_hound n 1 1 @ 1 0 02091244 -ibizan_podenco n 1 1 @ 1 0 02091244 -ibn-roshd n 1 1 @ 1 0 10829450 -ibn-sina n 1 1 @ 1 0 10829733 -ibn_al-haytham n 1 1 @ 1 0 10813986 -ibn_talal_hussein n 1 1 @ 1 0 11068196 -ibolium_privet n 1 1 @ 1 0 12308259 -ibota_privet n 1 1 @ 1 0 12308259 -ibrahim n 1 1 @ 1 0 10807487 -ibrd n 1 1 @ 1 0 08300783 -ibsen n 1 2 @ + 1 0 11070644 -ibuprofen n 1 2 @ %s 1 0 03556281 -ic n 1 4 @ %m %p ; 1 0 08340153 -icaco n 2 4 @ #m #p %p 2 0 12625003 07758407 -icao n 1 1 @ 1 0 08301005 -icarus n 1 2 @ ; 1 0 09561320 -icbm n 1 2 @ ~ 1 1 03578251 -icc n 1 1 @ 1 0 08125993 -ice n 8 8 @ ~ #s #p %s %p + ; 8 2 14915184 09308398 13372123 07620822 07614198 03754295 03579982 03558176 -ice-cream_bean n 1 2 @ #m 1 0 11761836 -ice-cream_cake n 1 1 @ 1 0 07631926 -ice-cream_cone n 1 1 @ 1 0 07614730 -ice-cream_float n 1 2 @ ~ 1 0 07923034 -ice-cream_soda n 1 2 @ ~ 1 0 07923034 -ice-cream_sundae n 1 1 @ 1 0 07616487 -ice-hockey_player n 1 2 @ ~ 1 0 10179291 -ice-hockey_rink n 1 2 @ %p 1 0 03557360 -ice-skater n 1 3 @ ~ + 1 0 10196490 -ice-skating_rink n 1 2 @ ~ 1 0 03558176 -ice-wagon n 1 1 @ 1 0 03558841 -ice_age n 1 2 @ #p 1 0 15255195 -ice_ax n 1 1 @ 1 0 03556679 -ice_axe n 1 1 @ 1 0 03556679 -ice_bag n 1 1 @ 1 0 03557840 -ice_bear n 1 2 @ #m 1 0 02134084 -ice_cap n 1 1 @ 1 0 09308743 -ice_chest n 1 1 @ 1 1 03102654 -ice_coffee n 1 1 @ 1 0 07920540 -ice_cream n 1 2 @ ~ 1 1 07614500 -ice_crystal n 1 3 @ #p %s 1 0 11509377 -ice_cube n 1 2 @ %s 1 0 03557141 -ice_field n 1 1 @ 1 0 09309046 -ice_floe n 1 1 @ 1 1 09309168 -ice_fog n 1 1 @ 1 0 11467543 -ice_hockey n 1 3 @ %p - 1 0 00463543 -ice_hockey_rink n 1 2 @ %p 1 0 03557360 -ice_lolly n 1 1 @ 1 0 07615774 -ice_machine n 1 1 @ 1 0 03557590 -ice_maker n 1 2 @ #p 1 0 03557692 -ice_mass n 1 2 @ ~ 1 0 09309292 -ice_milk n 1 1 @ 1 0 07615954 -ice_needle n 1 3 @ #p %s 1 0 11509377 -ice_pack n 2 1 @ 2 1 03557840 09383901 -ice_pick n 1 2 @ %p 1 0 03558007 -ice_plant n 1 1 @ 1 0 11821184 -ice_rink n 1 2 @ ~ 1 0 03558176 -ice_shelf n 1 1 @ 1 0 09432163 -ice_show n 1 1 @ 1 0 00520783 -ice_skate n 1 4 @ ~ %p + 1 0 03558404 -ice_skating n 1 3 @ ~ + 1 0 00448640 -ice_storm n 1 1 @ 1 0 11467650 -ice_tea n 1 1 @ 1 0 07934282 -ice_tongs n 1 2 @ ; 1 0 03558633 -ice_wagon n 1 1 @ 1 0 03558841 -ice_water n 1 1 @ 1 1 07936459 -ice_yacht n 1 1 @ 1 0 03556811 -iceberg n 2 3 @ ~ #p 2 0 09308572 07724269 -iceberg_lettuce n 1 2 @ #p 1 0 07724269 -iceboat n 2 1 @ 2 0 03556992 03556811 -icebox n 1 3 @ ~ %p 1 1 04070727 -icebox_cake n 1 1 @ 1 0 07631926 -icebreaker n 2 1 @ 2 0 03556992 00239766 -icecap n 1 1 @ 1 0 09308743 -icecream n 1 2 @ ~ 1 0 07614500 -iced-tea_spoon n 1 1 @ 1 0 03557270 -iced_coffee n 1 1 @ 1 0 07920540 -iced_tea n 1 1 @ 1 0 07934282 -icefall n 1 2 @ #p 1 0 09308918 -icehouse n 1 1 @ 1 0 03557512 -iceland n 2 6 @ #m #p %m %p + 2 2 08953324 08953151 -iceland_lichen n 1 2 @ #m 1 0 12992177 -iceland_moss n 1 2 @ #m 1 0 12992177 -iceland_poppy n 2 2 @ #m 2 0 11901759 11901294 -iceland_spar n 1 1 @ 1 0 14916053 -icelander n 1 3 @ #m + 1 0 09714120 -icelandic n 1 1 @ 1 1 06954183 -icelandic_krona n 1 2 @ %p 1 0 13681993 -icelandic_monetary_unit n 1 2 @ ~ 1 0 13681863 -iceman n 2 1 @ 2 0 10196404 10162016 -icepick n 1 2 @ %p 1 0 03558007 -icetray n 1 1 @ 1 0 03558739 -ichneumon n 1 1 @ 1 0 02137888 -ichneumon_fly n 1 2 @ #m 1 0 02218371 -ichneumonidae n 1 3 @ #m %m 1 0 02218235 -ichor n 2 4 @ ~ + ; 2 0 14939755 05417472 -ichthyolatry n 1 1 @ 1 0 01046571 -ichthyologist n 1 2 @ + 1 0 10196617 -ichthyology n 1 3 @ + - 1 0 06072912 -ichthyosaur n 1 3 @ ~ #m 1 0 01724231 -ichthyosauria n 1 3 @ #m %m 1 0 01724055 -ichthyosauridae n 1 3 @ #m %m 1 0 01724470 -ichthyosaurus n 1 2 @ #m 1 0 01724840 -ichthyosis n 1 2 @ ~ 1 0 14158997 -ichyostega n 1 2 @ #m 1 0 01628331 -icicle n 1 1 @ 1 1 14915928 -icicle_plant n 1 1 @ 1 0 11821184 -iciness n 2 3 @ ~ + 2 0 05015463 04629604 -icing n 3 3 @ + ; 3 0 13485270 07620822 00558181 -icing_sugar n 1 1 @ 1 0 07596160 -icing_the_puck n 1 2 @ ; 1 0 00558181 -icon n 3 5 @ ~ #p + ; 3 0 07269916 03931044 03558971 -iconoclasm n 1 2 @ + 1 0 05980750 -iconoclast n 2 1 @ 2 0 10196845 10196725 -iconography n 1 1 @ 1 0 03559144 -iconolatry n 1 1 @ 1 0 01044363 -iconology n 1 1 @ 1 0 06156169 -iconoscope n 1 1 @ 1 0 03559373 -icosahedron n 1 2 @ + 1 0 13915883 -icsh n 1 1 @ 1 0 14749272 -ictalurus n 1 2 @ #m 1 0 02519576 -ictalurus_punctatus n 1 2 @ ~ 1 0 02519686 -icteria n 1 3 @ #m %m 1 0 01569713 -icteria_virens n 1 1 @ 1 0 01569971 -icteridae n 1 3 @ #m %m 1 0 01571578 -icterus n 2 6 @ ~ #m %m %p + 2 0 14319684 01572174 -icterus_galbula n 1 3 @ ~ #m 1 0 01572328 -icterus_galbula_bullockii n 1 1 @ 1 0 01572654 -icterus_galbula_galbula n 1 1 @ 1 0 01572489 -icterus_neonatorum n 1 1 @ 1 0 14320016 -icterus_spurius n 1 2 @ #m 1 0 01572782 -ictiobus n 1 3 @ #m %m 1 0 01445305 -ictiobus_niger n 1 2 @ #m 1 0 01445593 -ictodosaur n 1 2 @ #m 1 0 01721567 -ictodosauria n 1 3 @ #m %m 1 0 01721404 -ictonyx n 1 3 @ #m %m 1 0 02444103 -ictonyx_frenata n 1 2 @ #m 1 0 02444384 -ictonyx_striata n 1 2 @ #m 1 0 02444251 -ictus n 1 3 @ ~ + 1 0 14081941 -icu n 1 3 @ ~ #p 1 0 08146593 -id n 3 4 @ #p %p ; 3 0 09081213 06887278 05613794 -id_al-adha n 1 1 @ 1 0 15219022 -id_al-fitr n 1 1 @ 1 0 15218448 -ida n 1 1 @ 1 0 08301155 -ida_m._tarbell n 1 1 @ 1 0 11331442 -ida_minerva_tarbell n 1 1 @ 1 0 11331442 -ida_tarbell n 1 1 @ 1 0 11331442 -idaho n 1 3 @ #p %p 1 0 09081213 -idaho_falls n 1 2 @ #p 1 0 09081830 -idahoan n 1 1 @ 1 0 09742844 -iddm n 1 2 @ %p 1 0 14118423 -idea n 5 4 @ ~ + ; 5 4 05833840 05982915 05837850 05803379 07029247 -ideal n 2 3 @ ~ + 2 2 05923696 10325243 -ideal_gas n 1 1 @ 1 1 14916512 -ideal_solid n 1 2 @ ~ 1 0 13915999 -idealisation n 3 4 @ ~ + ; 3 0 13495636 05924408 01219075 -idealism n 3 4 @ ~ + ; 3 0 05972103 05152696 04870643 -idealist n 1 3 @ ~ + 1 1 10196965 -ideality n 1 2 @ + 1 0 04855524 -idealization n 3 4 @ ~ + ; 3 1 01219075 13495636 05924408 -idealogue n 1 2 @ ; 1 0 10706812 -ideation n 1 2 @ + 1 0 05784699 -identical_twin n 1 2 @ ~ 1 0 10197182 -identicalness n 1 3 @ ~ + 1 0 04743024 -identification n 5 3 @ ~ + 5 2 00152018 06885083 14577046 05762998 04618581 -identification_number n 1 2 @ ~ 1 0 06425065 -identification_particle n 1 2 @ ~ 1 0 14916185 -identifier n 1 1 @ 1 0 07270601 -identikit n 1 2 @ ; 1 0 03559531 -identikit_picture n 1 2 @ ; 1 0 03559531 -identity n 4 3 @ ~ + 4 4 04618070 05763412 13786748 04743024 -identity_card n 1 2 @ ~ 1 0 06477371 -identity_crisis n 1 1 @ 1 0 14375363 -identity_element n 1 1 @ 1 0 13786748 -identity_matrix n 1 1 @ 1 0 08269257 -identity_operator n 1 1 @ 1 0 13786748 -identity_theft n 1 1 @ 1 0 00777069 -identity_verification n 1 3 @ ~ ; 1 0 06424275 -ideogram n 1 3 @ ~ %p 1 0 06840648 -ideograph n 1 3 @ ~ %p 1 0 06840648 -ideography n 1 1 @ 1 0 06362172 -ideological_barrier n 1 2 @ ~ 1 0 05691492 -ideologist n 1 2 @ + 1 1 10197392 -ideologue n 1 1 @ 1 0 10197392 -ideology n 2 4 @ ~ = + 2 2 06212839 05779568 -ides n 1 1 @ 1 0 15173974 -idesia n 1 2 @ #m 1 0 12380305 -idesia_polycarpa n 1 2 @ #m 1 0 12380305 -idf n 1 3 @ %p ; 1 0 08345613 -idiocy n 1 1 @ 1 0 05646926 -idiolatry n 1 1 @ 1 0 01044761 -idiolect n 1 1 @ 1 0 07156693 -idiom n 4 4 @ ~ + - 4 3 07081177 07155661 04929422 07154330 -idiom_neutral n 1 1 @ 1 0 06896059 -idiomatic_expression n 1 3 @ ~ - 1 0 07154330 -idiopathic_disease n 1 1 @ 1 0 14074715 -idiopathic_disorder n 1 1 @ 1 0 14074715 -idiopathic_hemochromatosis n 1 1 @ 1 0 14207256 -idiopathic_thrombocytopenic_purpura n 1 1 @ 1 0 14565417 -idiopathy n 1 1 @ 1 0 14074715 -idiosyncrasy n 1 2 @ + 1 1 04764242 -idiot n 1 3 @ ~ + 1 1 10197525 -idiot_box n 1 4 @ #p %p ; 1 0 04405907 -idiot_light n 1 2 @ #p 1 0 06874688 -idiot_savant n 1 1 @ 1 0 10197780 -iditarod n 1 1 @ 1 0 07460904 -iditarod_trail n 1 2 @ #p 1 0 03559841 -iditarod_trail_dog_sled_race n 1 1 @ 1 0 07460904 -idle n 1 1 @ 1 0 14009618 -idle_pulley n 1 1 @ 1 0 03559999 -idle_talk n 1 1 @ 1 1 07137129 -idle_wheel n 1 1 @ 1 0 03559999 -idle_words n 1 1 @ 1 0 07136711 -idleness n 3 3 @ ~ + 3 1 01065441 05140086 04637290 -idler n 1 3 @ ~ + 1 1 10197967 -idler_pulley n 1 1 @ 1 0 03559999 -idling n 1 3 @ ~ + 1 0 01065441 -ido n 1 1 @ 1 0 06896500 -idocrase n 1 1 @ 1 0 15087904 -idol n 3 3 @ ~ + 3 2 03560161 10198437 05924519 -idol_worship n 1 2 @ ~ 1 0 01044084 -idol_worshiper n 1 2 @ ~ 1 0 10198602 -idolater n 1 3 @ ~ + 1 0 10198602 -idolatress n 1 1 @ 1 0 10198759 -idolatry n 2 3 @ ~ + 2 0 01044448 01044084 -idolisation n 2 3 @ ~ + 2 0 01218766 01043820 -idoliser n 2 2 @ ~ 2 0 10198832 10198602 -idolization n 2 3 @ ~ + 2 0 01218766 01043820 -idolizer n 2 3 @ ~ + 2 0 10198832 10198602 -idp n 1 1 @ 1 0 13500860 -idria_columnaris n 1 2 @ #m 1 0 12382233 -idun n 1 2 @ ; 1 0 09581338 -idyl n 2 1 @ 2 0 07043824 06379439 -idyll n 3 2 @ + 3 0 07307297 07043824 06379439 -ie n 1 1 @ 1 0 06571538 -ied n 1 2 @ ~ 1 0 03565565 -ieoh_ming_pei n 1 2 @ ; 1 0 11228153 -ifc n 1 1 @ 1 0 08301307 -ig n 1 2 @ ~ 1 0 15030481 -iga n 1 1 @ 1 0 15030853 -igbo n 1 1 @ 1 0 09738121 -igd n 1 1 @ 1 0 15031073 -ige n 1 2 @ ~ 1 0 15031231 -igg n 1 1 @ 1 0 15031705 -igigi n 1 1 @ 1 0 09518578 -iglesias n 1 1 @ 1 0 11070855 -igloo n 1 1 @ 1 0 03560430 -iglu n 1 1 @ 1 0 03560430 -igm n 1 1 @ 1 0 15031866 -ignace_jan_paderewski n 1 1 @ 1 0 11219635 -ignace_paderewski n 1 1 @ 1 0 11219635 -ignatius n 1 1 @ 1 0 11070994 -ignatius_of_loyola n 1 2 @ ; 1 0 11071177 -igneous_rock n 1 3 @ ~ %s 1 0 14931879 -ignis_fatuus n 2 1 @ 2 0 11459369 05896515 -igniter n 2 3 @ ~ + 2 0 15101361 03666591 -ignition n 3 5 @ ~ #p %p + 3 0 13495873 03560567 00378479 -ignition_coil n 1 2 @ #p 1 0 03560860 -ignition_interlock n 1 1 @ 1 0 03579791 -ignition_key n 1 1 @ 1 1 03561047 -ignition_lock n 1 2 @ #p 1 0 03682877 -ignition_switch n 1 3 @ #p %p 1 0 03561169 -ignition_system n 1 3 @ #p %p 1 0 03560567 -ignitor n 2 3 @ ~ + 2 0 15101361 03666591 -ignobility n 1 1 @ 1 0 04873804 -ignobleness n 1 2 @ + 1 0 04873804 -ignominiousness n 1 3 @ ~ + 1 0 04808281 -ignominy n 1 3 @ ~ + 1 0 14440137 -ignoramus n 1 2 @ ~ 1 1 10198958 -ignorance n 1 3 @ ~ + 1 1 05988282 -ignorantness n 1 2 @ + 1 0 05988743 -ignoratio_elenchi n 1 1 @ 1 0 05894460 -igor_fyodorovich_stravinsky n 1 1 @ 1 0 11321841 -igor_ivanovich_sikorsky n 1 1 @ 1 0 11300089 -igor_sikorsky n 1 1 @ 1 0 11300089 -igor_stravinsky n 1 1 @ 1 0 11321841 -igor_tamm n 1 1 @ 1 0 11330228 -igor_yevgeneevich_tamm n 1 1 @ 1 0 11330228 -iguana n 1 2 @ #m 1 0 01677366 -iguana_iguana n 1 2 @ #m 1 0 01677366 -iguania n 1 3 @ #m %m 1 0 01676313 -iguanid n 1 3 @ ~ #m 1 0 01676755 -iguanid_lizard n 1 3 @ ~ #m 1 0 01676755 -iguanidae n 1 3 @ #m %m 1 0 01676313 -iguanodon n 1 2 @ #m 1 0 01707698 -iguanodontidae n 1 3 @ #m %m 1 0 01707433 -iguassu n 1 2 @ #p 1 0 09309456 -iguassu_falls n 1 2 @ #p 1 0 09309456 -iguazu n 1 2 @ #p 1 0 09309456 -iguazu_falls n 1 2 @ #p 1 0 09309456 -ii n 1 2 @ ~ 1 0 13743269 -ii_chronicles n 1 2 @ #p 1 0 06435916 -ii_corinthians n 1 2 @ #p 1 0 06443658 -ii_esdras n 1 2 @ #p 1 0 06460167 -ii_john n 1 2 @ #p 1 0 06447400 -ii_kings n 1 2 @ #p 1 0 06435198 -ii_maccabees n 1 2 @ #p 1 0 06460926 -ii_peter n 1 2 @ #p 1 0 06447039 -ii_samuel n 1 2 @ #p 1 0 06434826 -ii_thessalonians n 1 2 @ #p 1 0 06445214 -ii_timothy n 1 2 @ #p 1 0 06445729 -iii n 1 1 @ 1 0 13744044 -iii_john n 1 2 @ #p 1 0 06447582 -iis n 1 2 @ ; 1 0 08344917 -ijssel n 1 2 @ #p 1 0 09309666 -ijssel_river n 1 2 @ #p 1 0 09309666 -ijsselmeer n 1 2 @ #p 1 0 09309820 -ijtihad n 1 1 @ 1 0 07172117 -ike n 1 1 @ 1 0 10954966 -ikhanaton n 1 1 @ 1 0 10810923 -ikon n 2 2 @ ~ 2 0 03931044 03558971 -il n 1 3 @ #p %p 1 0 09082540 -il_duce n 1 1 @ 1 0 11198253 -ilama n 2 3 @ #p %p 2 0 11694469 07761777 -ilama_tree n 1 2 @ %p 1 0 11694469 -ilang-ilang n 2 2 @ #m 2 0 11696211 11695974 -ile-de-france n 1 2 @ #p 1 1 08942629 -ile-st-louis n 1 2 @ #p 1 0 08934067 -ileal_artery n 1 2 @ #p 1 0 05346714 -ileitis n 1 1 @ 1 0 14347695 -ileocecal_valve n 1 1 @ 1 0 05536638 -ileocolic_artery n 1 1 @ 1 0 05346892 -ileocolic_vein n 1 1 @ 1 0 05369566 -ileostomy n 1 1 @ 1 0 00681071 -iles_comores n 1 3 @ #p %p 1 0 08733690 -iles_marquises n 1 2 @ #p 1 0 08990999 -ileum n 1 1 @ 1 1 05535367 -ileus n 1 1 @ 1 0 14508149 -ilex n 1 3 @ #m %m 1 0 12756862 -ilex_cornuta n 1 2 @ #m 1 0 12757115 -ilex_decidua n 1 1 @ 1 0 12757303 -ilex_glabra n 1 1 @ 1 0 12757458 -ilex_paraguariensis n 1 1 @ 1 0 12757668 -iliac_artery n 1 3 @ ~ #p 1 0 05347146 -iliac_vein n 1 2 @ ~ 1 0 05370125 -iliad n 1 1 @ 1 1 06382072 -iliamna n 1 3 @ #m %m 1 0 12181147 -iliamna_acerifolia n 1 2 @ #m 1 0 12181612 -iliamna_remota n 1 2 @ #m 1 0 12181352 -iliamna_ruvularis n 1 2 @ #m 1 0 12181612 -ilich_ramirez_sanchez n 1 2 @ ; 1 0 11201386 -ilich_sanchez n 1 2 @ ; 1 0 11201386 -iliolumbar_artery n 1 1 @ 1 0 05347871 -iliolumbar_vein n 1 1 @ 1 0 05370293 -ilion n 1 3 @ #p %m 1 0 08788887 -ilium n 2 4 @ #p %m %p 2 0 08788887 05275315 -ilk n 1 1 @ 1 1 05845419 -ill n 1 2 @ ~ 1 0 14055408 -ill-being n 1 3 ! @ ~ 1 0 14448200 -ill-breeding n 1 1 @ 1 0 04914881 -ill-treatment n 1 3 @ ~ + 1 0 00419908 -ill-usage n 1 3 @ ~ + 1 0 00419908 -ill_fame n 1 2 @ ~ 1 0 14439149 -ill_health n 1 3 ! @ ~ 1 1 14052046 -ill_humor n 1 3 ! @ ~ 1 0 07552087 -ill_humour n 1 2 @ ~ 1 0 07552087 -ill_luck n 1 2 @ ~ 1 0 14475405 -ill_nature n 1 3 ! @ ~ 1 0 04641447 -ill_service n 1 1 @ 1 0 01209791 -ill_temper n 1 2 @ ~ 1 0 07518132 -ill_turn n 1 1 @ 1 1 01209791 -ill_will n 2 2 @ ~ 2 1 07547805 04658106 -illampu n 1 2 @ #p 1 0 09310011 -illation n 1 2 @ ~ 1 0 05774614 -illecebrum n 1 3 @ #m %m 1 0 11810918 -illecebrum_verticullatum n 1 2 @ #m 1 0 11811059 -illegal_possession n 1 1 @ 1 0 00810498 -illegality n 1 4 ! @ ~ + 1 0 04810327 -illegibility n 1 4 ! @ + ; 1 0 04822685 -illegitimacy n 2 2 ! @ 2 1 13953215 04811476 -illegitimate n 1 1 @ 1 0 09842823 -illegitimate_child n 1 1 @ 1 0 09842823 -illegitimate_enterprise n 1 1 @ 1 0 00775943 -illiberality n 1 3 ! @ + 1 0 04834457 -illicitness n 1 3 ! @ + 1 0 04811628 -illicium n 1 3 @ #m %m 1 0 11708442 -illicium_anisatum n 1 2 @ #m 1 0 11709045 -illicium_floridanum n 1 2 @ #m 1 0 11708857 -illicium_verum n 1 3 @ #m %p 1 0 11709205 -illimani n 1 2 @ #p 1 0 09310162 -illinois n 3 3 @ #p %p 3 1 09082540 09657615 06910134 -illinois_river n 1 2 @ #p 1 0 09310314 -illinoisan n 1 1 @ 1 0 09742927 -illiteracy n 2 2 ! @ 2 0 05989386 05649256 -illiterate n 1 2 @ ~ 1 0 10199103 -illiterate_person n 1 2 @ ~ 1 0 10199103 -illness n 1 4 ! @ ~ + 1 1 14061805 -illogic n 1 2 @ ~ 1 0 04785669 -illogicality n 1 4 ! @ ~ + 1 0 04785669 -illogicalness n 1 4 ! @ ~ + 1 0 04785669 -illuminance n 1 1 @ 1 0 05018542 -illuminant n 1 2 @ + 1 0 14687513 -illumination n 5 4 @ ~ + ; 5 2 14563784 13983147 07171206 05018542 03769397 -illumination_unit n 1 2 @ ~ 1 0 13639647 -illusion n 4 3 @ ~ + 4 3 05939636 05896059 00754767 00099951 -illusionist n 2 3 @ ~ + 2 0 10756433 10280674 -illustration n 4 4 @ ~ %p + 4 4 06999233 06880533 05820620 03561345 -illustrator n 1 3 @ ~ + 1 1 09812068 -illustriousness n 1 2 @ + 1 0 05169601 -illyria n 1 1 @ 1 0 08704665 -illyrian n 1 1 @ 1 0 06942874 -ilmen n 1 2 @ #p 1 0 09331654 -ilmenite n 1 2 @ %s 1 0 14678551 -ilo n 1 1 @ 1 0 08301525 -ilosone n 1 2 @ ; 1 0 03295357 -ilya_ehrenberg n 1 1 @ 1 0 10953473 -ilya_grigorievich_ehrenberg n 1 1 @ 1 0 10953473 -ilya_ilich_metchnikov n 1 1 @ 1 0 11177151 -image n 9 5 @ ~ + ; - 9 5 05928118 04677716 03931044 05937524 07105475 10027246 08000304 04675777 03265874 -image_breaker n 1 1 @ 1 0 10196845 -image_compression n 1 1 @ 1 0 00616279 -image_orthicon n 1 1 @ 1 1 03856728 -image_scanner n 1 1 @ 1 0 04143140 -imagery n 1 3 @ ~ + 1 1 05767733 -imaginary n 1 4 @ ~ %p ; 1 0 13729428 -imaginary_being n 1 2 @ ~ 1 0 09483738 -imaginary_creature n 1 2 @ ~ 1 0 09483738 -imaginary_number n 1 4 @ ~ %p ; 1 0 13729428 -imaginary_part n 1 2 @ #p 1 0 13730189 -imaginary_part_of_a_complex_number n 1 2 @ #p 1 0 13730189 -imaginary_place n 1 2 @ ~ 1 0 05625879 -imagination n 3 3 @ ~ + 3 3 05625465 05767733 05633860 -imagination_image n 1 1 @ 1 0 05928391 -imaginative_comparison n 1 1 @ 1 0 13853947 -imaginativeness n 1 3 @ ~ + 1 0 05625465 -imaging n 2 4 @ ~ + ; 2 1 05767733 00901083 -imagism n 1 1 @ 1 0 08468499 -imago n 2 2 @ ; 2 0 05938014 02312912 -imam n 1 2 @ ; 1 0 10199251 -imamu_amiri_baraka n 1 1 @ 1 0 10834011 -imaret n 1 1 @ 1 0 03561573 -imaum n 1 2 @ ; 1 0 10199251 -imavate n 1 2 @ ; 1 0 03561889 -imbalance n 2 4 ! @ ~ ; 2 1 14004149 05065717 -imbauba n 1 2 @ #m 1 0 12404729 -imbecile n 1 3 @ ~ + 1 1 10197525 -imbecility n 2 2 @ + 2 0 05647015 01248075 -imbiber n 1 3 @ ~ + 1 0 10034201 -imbibing n 1 3 @ ~ + 1 0 00843128 -imbibition n 2 4 @ ~ + ; 2 0 13496017 00843128 -imbrication n 1 2 @ + 1 0 03561657 -imbroglio n 2 1 @ 2 0 13936153 07174785 -imf n 1 1 @ 1 0 08301871 -imidazole n 1 1 @ 1 0 14916670 -imide n 1 1 @ 1 0 15110666 -iminazole n 1 1 @ 1 0 14916670 -imipramine n 1 1 @ 1 0 03561889 -imitation n 4 4 ! @ ~ + 4 3 05962602 03562126 01020936 06780069 -imitation_leather n 1 1 @ 1 0 03653110 -imitative_electronic_deception n 1 1 @ 1 0 01251923 -imitator n 2 3 @ ~ + 2 0 10200365 09964411 -immaculate_conception n 2 2 @ ; 2 0 15195259 06790557 -immaculate_conception_of_the_virgin_mary n 1 2 @ ; 1 0 06790557 -immaculateness n 1 2 @ + 1 0 14496563 -immanence n 1 2 @ + 1 0 13957974 -immanency n 1 2 @ + 1 0 13957974 -immanuel_kant n 1 1 @ 1 0 11096508 -immateriality n 2 4 ! @ ~ + 2 0 13796216 04761517 -immatureness n 1 3 @ ~ + 1 0 14425974 -immaturity n 1 4 ! @ ~ + 1 0 14425974 -immediacy n 3 3 ! @ = 3 3 04918767 05708322 05059525 -immediate_allergy n 1 1 @ 1 0 14532250 -immediate_apprehension n 1 1 @ 1 0 05708322 -immediate_constituent n 1 1 @ 1 0 06313300 -immediate_memory n 1 1 @ 1 0 05760611 -immediate_payment n 1 1 @ 1 0 13386465 -immediateness n 2 3 @ = + 2 0 05059525 04918767 -immenseness n 1 3 @ ~ + 1 0 05104548 -immensity n 1 3 @ ~ + 1 1 05104548 -immersion n 5 6 ! @ ~ #p + ; 5 0 07364115 07322341 05704266 01038485 00277569 -immersion_foot n 1 1 @ 1 0 14299480 -immersion_heater n 1 1 @ 1 0 03562408 -immigrant n 1 2 @ + 1 1 10199489 -immigrant_class n 1 1 @ 1 1 08416137 -immigration n 2 3 @ ~ + 2 1 00056311 08413834 -immigration_and_naturalization_service n 1 3 @ #p %p 1 0 08136502 -imminence n 1 2 @ + 1 1 14030820 -imminency n 1 2 @ + 1 0 14030820 -imminent_abortion n 1 1 @ 1 0 00230824 -imminentness n 1 1 @ 1 0 14030820 -immobilisation n 2 2 @ + 2 0 01260309 01146288 -immobility n 2 4 ! @ ~ + 2 1 14006490 04776299 -immobilization n 2 2 @ + 2 0 01260309 01146288 -immobilizing n 1 2 @ + 1 0 01146288 -immoderateness n 1 3 @ ~ + 1 0 05118251 -immoderation n 1 3 ! @ ~ 1 0 05118251 -immodesty n 2 2 ! @ 2 0 04903136 00737894 -immolation n 1 2 @ + 1 0 00227969 -immorality n 2 4 ! @ ~ + 2 0 04850589 00745637 -immortal n 2 3 @ ~ #m 2 0 10199644 09505418 -immortality n 2 3 ! @ + 2 1 05056102 15144094 -immortelle n 1 2 @ #m 1 0 12033709 -immotility n 1 3 ! @ + 1 0 04776453 -immovability n 1 4 ! @ ~ + 1 0 04776699 -immovable n 1 2 @ ~ 1 0 13246475 -immovable_bandage n 1 1 @ 1 0 03562565 -immovableness n 1 4 ! @ ~ + 1 0 04776699 -immune n 1 2 @ ~ 1 0 10199783 -immune_carrier n 1 3 @ ~ ; 1 0 09897350 -immune_gamma_globulin n 1 2 @ ~ 1 0 15030481 -immune_globulin n 1 2 @ ~ 1 0 15030481 -immune_reaction n 1 4 @ ~ %p ; 1 0 00860434 -immune_response n 1 4 @ ~ %p ; 1 0 00860434 -immune_serum_globulin n 1 2 @ ~ 1 0 15030481 -immune_suppressant_drug n 1 2 @ ~ 1 0 03562958 -immune_system n 1 2 @ %p 1 0 05460870 -immunisation n 1 2 @ ~ 1 0 00828990 -immunity n 4 4 @ ~ + ; 4 1 14526764 14527171 05033906 00213903 -immunization n 1 3 @ ~ + 1 0 00828990 -immunizing_agent n 1 2 @ ~ 1 0 03562739 -immunoassay n 1 2 @ ~ 1 0 05740560 -immunochemical_assay n 1 2 @ ~ 1 0 05740560 -immunochemistry n 1 2 @ + 1 0 06051925 -immunocompetence n 1 3 ! @ + 1 0 13974144 -immunodeficiency n 1 4 ! @ ~ + 1 0 13974317 -immunoelectrophoresis n 1 1 @ 1 1 13496167 -immunofluorescence n 1 2 @ ; 1 0 05666324 -immunogen n 1 2 @ ~ 1 0 03562739 -immunogenicity n 1 2 @ + 1 0 14527430 -immunoglobulin n 1 2 @ ~ 1 0 15030481 -immunoglobulin_a n 1 1 @ 1 0 15030853 -immunoglobulin_d n 1 1 @ 1 0 15031073 -immunoglobulin_e n 1 2 @ ~ 1 0 15031231 -immunoglobulin_g n 1 1 @ 1 0 15031705 -immunoglobulin_m n 1 1 @ 1 0 15031866 -immunohistochemistry n 1 1 @ 1 0 00792142 -immunologic_response n 1 4 @ ~ %p ; 1 0 00860434 -immunological_disorder n 1 2 @ ~ 1 0 13973990 -immunologist n 1 3 @ ~ + 1 0 10199902 -immunology n 1 4 @ ~ + - 1 0 06051542 -immunopathology n 1 1 @ 1 0 06052165 -immunosuppressant n 1 2 @ ~ 1 0 03562958 -immunosuppression n 1 1 @ 1 0 13974620 -immunosuppressive n 1 2 @ ~ 1 0 03562958 -immunosuppressive_drug n 1 2 @ ~ 1 0 03562958 -immunosuppressor n 1 2 @ ~ 1 0 03562958 -immunotherapy n 1 1 @ 1 0 00663333 -immurement n 1 3 @ ~ + 1 0 13999206 -immutability n 1 4 ! @ ~ + 1 0 04741807 -immutableness n 1 4 ! @ ~ + 1 0 04741807 -imo n 1 1 @ 1 0 08301709 -imogene_coca n 1 1 @ 1 0 10903413 -imou_pine n 1 2 @ #m 1 0 11654293 -imp n 2 3 @ ~ ; 2 1 09540739 10200047 -impact n 4 3 @ ~ + 4 3 07338552 11414411 00157957 01172252 -impact_printer n 1 2 @ ~ 1 0 03563200 -impacted_fracture n 1 1 @ 1 0 14293985 -impacted_tooth n 1 1 @ 1 0 14060417 -impaction n 4 2 @ + 4 0 14577331 14060575 14060417 00126447 -impairer n 1 2 @ + 1 0 09310460 -impairment n 5 3 @ ~ + 5 1 07420770 14561618 14548343 00403334 00272878 -impala n 1 2 @ #m 1 0 02422699 -impala_lily n 1 2 @ #m 1 0 11769176 -impalement n 1 2 @ + 1 0 00420877 -impalpability n 1 3 ! @ + 1 0 04760296 -impartation n 1 3 @ ~ + 1 0 06252954 -impartiality n 1 4 ! @ ~ + 1 0 06202686 -imparting n 1 3 @ ~ + 1 0 06252954 -impasse n 2 1 @ 2 1 14015361 02851540 -impassiveness n 1 2 @ + 1 0 07483782 -impassivity n 1 2 @ + 1 0 07483782 -impasto n 1 1 @ 1 0 00937250 -impatience n 3 4 ! @ ~ + 3 2 14407283 07514071 04642596 -impatiens_capensis n 1 2 @ #m 1 0 12684379 -impeachability n 1 1 @ 1 0 13991688 -impeachment n 1 2 @ + 1 0 07235790 -impeccability n 2 2 @ + 2 0 04899573 04826485 -impecuniousness n 1 2 @ + 1 0 14494186 -impedance n 1 2 @ ~ 1 0 11503968 -impediment n 2 3 @ ~ + 2 0 05689249 03839993 -impedimenta n 2 2 @ ~ 2 0 03839993 03563358 -impeller n 1 3 @ #p + 1 0 03563460 -impendence n 1 2 @ + 1 0 14030820 -impendency n 1 2 @ + 1 0 14030820 -impenetrability n 2 3 ! @ + 2 0 04942516 04822870 -impenetrableness n 1 2 @ + 1 0 04822870 -impenitence n 1 2 @ + 1 0 04863358 -impenitency n 1 2 @ + 1 0 04863358 -imperative n 2 1 @ 2 0 13802306 01131330 -imperative_form n 1 1 @ 1 0 13802306 -imperative_mood n 1 1 @ 1 0 13802306 -imperativeness n 2 2 @ + 2 0 14451349 05172131 -imperceptibility n 1 3 ! @ + 1 0 05019339 -imperfect n 1 2 @ ~ 1 0 13805734 -imperfect_tense n 1 2 @ ~ 1 0 13805734 -imperfectibility n 1 3 ! @ + 1 0 05648011 -imperfection n 1 3 ! @ ~ 1 0 14462666 -imperfective n 1 1 @ 1 0 13805020 -imperfective_aspect n 1 1 @ 1 0 13805020 -imperfectness n 1 3 @ ~ + 1 0 14462666 -imperforate_anus n 1 1 @ 1 0 05538338 -imperforate_hymen n 1 1 @ 1 0 05522148 -imperial n 2 1 @ 2 0 05261999 03563611 -imperial_beard n 1 1 @ 1 0 05261999 -imperial_capacity_unit n 1 2 @ ~ 1 0 13615557 -imperial_decree n 1 2 @ ~ 1 0 06541167 -imperial_elephant n 1 2 @ #m 1 0 02505485 -imperial_gallon n 1 3 @ #p %p 1 0 13622209 -imperial_japanese_morning_glory n 1 1 @ 1 0 12828977 -imperial_mammoth n 1 2 @ #m 1 0 02505485 -imperial_moth n 1 2 @ #m 1 0 02302244 -imperialism n 3 3 @ ~ + 3 1 06661396 06218308 00804909 -imperialist n 1 2 @ + 1 0 10200246 -imperiousness n 1 2 @ + 1 0 04888788 -imperishability n 1 2 @ + 1 0 05054537 -imperishableness n 1 1 @ 1 0 05054537 -imperishingness n 1 1 @ 1 0 05054537 -imperium n 2 2 @ ~ 2 0 08557482 05197945 -impermanence n 1 4 ! @ ~ + 1 0 05054863 -impermanency n 1 3 @ ~ + 1 0 05054863 -impermeability n 1 4 ! @ ~ + 1 0 04941942 -impermeableness n 1 3 @ ~ + 1 0 04941942 -impermissibility n 1 3 ! @ + 1 0 04794408 -impersonation n 3 3 @ ~ + 3 0 06780069 00756331 00549284 -impersonator n 1 3 @ ~ + 1 0 10200365 -impertinence n 3 3 @ ~ + 3 0 06721813 04915866 04649651 -imperturbability n 1 2 @ + 1 0 07515328 -imperturbableness n 1 2 @ + 1 0 07515328 -imperviousness n 1 3 ! @ + 1 0 04942516 -impetigo n 1 1 @ 1 0 14227613 -impetuosity n 1 2 @ + 1 0 04662730 -impetuousness n 1 2 @ + 1 0 04662730 -impetus n 2 1 @ 2 1 11447851 00104249 -impiety n 1 3 ! @ ~ 1 0 04828255 -impingement n 2 2 @ + 2 0 00157957 00126447 -impinging n 1 3 @ ~ + 1 1 07339329 -impiousness n 1 3 @ ~ + 1 0 04828255 -impishness n 1 2 @ + 1 0 04650010 -implant n 1 3 @ ~ + 1 0 03563710 -implantation n 3 3 @ + ; 3 0 13496286 01052618 00677808 -implausibility n 1 3 ! @ + 1 0 04784322 -implausibleness n 1 2 @ + 1 0 04784322 -implement n 1 3 @ ~ + 1 1 03563967 -implementation n 2 3 @ ~ + 2 2 01127379 00044150 -implements_of_war n 1 3 @ ~ %p 1 0 04566257 -implication n 5 3 @ ~ + 5 3 05780885 05920791 07238102 13860281 13793776 -implicitness n 1 2 @ + 1 0 04824977 -implied_trust n 1 2 @ ~ 1 0 13361830 -implosion n 2 4 @ ~ #p + 2 0 07365524 07116304 -implosion_therapy n 1 1 @ 1 0 00702418 -impoliteness n 1 4 ! @ ~ + 1 0 04914694 -imponderable n 1 2 @ ~ 1 0 05693206 -import n 5 4 ! @ ~ + 5 4 03564667 10200531 06601327 05920791 05170574 -import_barrier n 1 2 @ ~ 1 0 06660224 -import_credit n 1 1 @ 1 0 13379264 -import_duty n 1 1 @ 1 0 13317858 -importance n 2 5 ! @ ~ = + 2 2 05168261 14434681 -important_person n 1 2 @ ~ 1 0 10200781 -importation n 2 3 @ ~ + 2 1 01111750 03564667 -importee n 1 2 @ + 1 0 10200531 -importer n 1 2 @ + 1 0 10201366 -importing n 1 3 @ ~ + 1 0 01111750 -importunity n 1 1 @ 1 1 07188385 -imposition n 2 4 @ ~ + ; 2 1 01127623 05833371 -impossibility n 2 4 ! @ ~ + 2 0 14483126 05792312 -impossible n 1 1 @ 1 1 05792446 -impossible_action n 1 2 @ ~ 1 0 05792312 -impossibleness n 1 3 @ ~ + 1 0 14483126 -impost n 2 3 @ ~ #p 2 0 13317002 04288784 -imposter n 1 2 @ ~ 1 0 10201535 -impostor n 1 2 @ ~ 1 0 10201535 -imposture n 1 1 @ 1 0 00756331 -impotence n 2 4 ! @ ~ + 2 1 05204637 14044930 -impotency n 2 4 ! @ ~ + 2 1 05204637 14044930 -impounding n 1 4 @ ~ + ; 1 0 00086297 -impoundment n 1 4 @ ~ + ; 1 0 00086297 -impoverishment n 2 3 @ ~ + 2 0 14493145 01150467 -impracticability n 1 4 ! @ ~ + 1 0 05153155 -impracticableness n 1 4 ! @ ~ + 1 0 05153155 -impracticality n 1 4 ! @ ~ + 1 0 05152518 -impramine_hydrochloride n 1 1 @ 1 0 03561889 -imprecation n 2 2 @ + 2 1 07233996 07236957 -impreciseness n 1 3 ! @ + 1 0 04804787 -imprecision n 1 2 ! @ 1 0 04804787 -impregnability n 1 2 @ + 1 0 14539029 -impregnation n 3 4 @ ~ #p + 3 0 14916796 13496517 07436986 -impresario n 1 2 @ ~ 1 0 10593745 -impress n 1 2 @ + 1 0 00086654 -impression n 9 4 @ ~ + ; 9 3 05916739 04675314 05936704 13896369 06855207 06590210 03564849 00549106 00113532 -impressionism n 1 2 @ + 1 0 03565051 -impressionist n 1 2 @ + 1 1 10201956 -impressive_aphasia n 1 1 @ 1 0 14099172 -impressiveness n 2 3 @ ~ + 2 0 04729328 04719502 -impressment n 1 2 @ + 1 0 00086654 -imprimatur n 1 2 @ ~ 1 1 06687358 -imprint n 5 3 @ ~ + 5 1 05693383 13896369 06855563 06855432 03565288 -imprinting n 1 2 @ + 1 0 05754730 -imprisonment n 3 4 @ ~ + ; 3 1 01162376 13999206 01146768 -improbability n 1 4 ! @ ~ + 1 0 04758452 -improbableness n 1 3 @ ~ + 1 0 04758452 -impromptu n 2 1 @ 2 1 07239788 07239927 -improper_fraction n 1 1 @ 1 0 13735800 -improperness n 1 4 ! @ ~ + 1 0 04901326 -impropriety n 4 3 ! @ ~ 4 1 04901326 14563475 00737536 00737070 -improvement n 3 4 ! @ ~ + 3 3 07357388 00248977 14422179 -improver n 2 3 @ ~ + 2 0 10191613 02679415 -improvidence n 1 4 ! @ ~ + 1 0 04894552 -improvisation n 3 2 @ + 3 0 03565402 00178832 00099588 -improvised_explosive_device n 1 2 @ ~ 1 0 03565565 -imprudence n 1 4 ! @ ~ + 1 0 04894037 -impudence n 2 3 @ ~ + 2 0 06721813 04915866 -impuissance n 1 2 @ + 1 0 05204982 -impulse n 6 3 @ ~ ; 6 5 09180431 07490579 07308042 07420991 00104249 05035820 -impulse_explosive n 1 1 @ 1 0 04011609 -impulse_turbine n 1 1 @ 1 0 03565710 -impulsion n 2 2 @ + 2 0 11447851 00104249 -impulsiveness n 1 3 @ ~ + 1 0 04662504 -impunity n 1 1 @ 1 1 14529524 -impureness n 1 3 @ ~ + 1 0 14487184 -impurity n 2 4 ! @ ~ + 2 2 14583670 14487184 -imputation n 2 3 @ ~ + 2 0 07237038 05735478 -imu n 1 2 @ ; 1 0 08025835 -imuran n 1 2 @ ; 1 0 02765247 -in n 3 5 @ #s #p %p ; 3 1 13649791 14641223 09084750 -in-basket n 1 2 ! @ 1 0 03565830 -in-fighting n 2 1 @ 2 1 01172031 00446411 -in-joke n 1 1 @ 1 0 06779511 -in-law n 1 2 @ ~ 1 0 10207169 -in-line_skate n 1 2 @ ~ 1 0 04102037 -in-migration n 1 2 @ ~ 1 0 00056311 -in-tray n 1 1 @ 1 0 03565830 -in_time n 1 1 @ 1 0 15264607 -inability n 2 3 ! @ ~ 2 1 05644922 05207130 -inaccessibility n 1 3 ! @ + 1 0 04722910 -inaccuracy n 1 3 ! @ ~ 1 1 04804451 -inachis n 1 3 @ #m %m 1 0 02279127 -inachis_io n 1 2 @ #m 1 0 02279257 -inaction n 1 3 ! @ ~ 1 1 14010148 -inactivation n 2 4 ! @ + ; 2 0 13496771 00233795 -inactiveness n 2 4 ! @ ~ + 2 0 14010148 04635631 -inactivity n 3 4 ! @ ~ + 3 0 14010148 04635631 01062583 -inadequacy n 3 3 ! @ ~ 3 1 05113133 14463471 04793555 -inadequateness n 1 2 @ + 1 0 04793555 -inadmissibility n 1 4 ! @ ~ + 1 0 04794236 -inadvertence n 2 2 @ + 2 1 05706815 04665543 -inadvertency n 1 2 @ + 1 0 04665543 -inadvisability n 1 3 ! @ + 1 0 05165028 -inamorata n 1 1 @ 1 0 10202085 -inamorato n 1 1 @ 1 0 10202225 -inanimateness n 1 4 ! @ ~ + 1 0 05006285 -inanition n 2 1 @ 2 0 05042138 04635010 -inanity n 1 2 @ + 1 0 05174023 -inanna n 1 2 @ ; 1 0 09518683 -inapplicability n 1 3 ! @ + 1 0 13796053 -inappositeness n 1 3 ! @ + 1 0 04721428 -inappropriateness n 2 4 ! @ ~ + 2 0 04901996 04721650 -inaptitude n 1 3 ! @ ~ 1 0 05647643 -inaptness n 1 3 ! @ + 1 0 04721428 -inattention n 1 3 ! @ ~ 1 0 05706228 -inattentiveness n 2 4 ! @ ~ + 2 0 05706375 04663319 -inaudibility n 1 3 ! @ + 1 0 05019163 -inaudibleness n 1 2 @ + 1 0 05019163 -inaugural n 2 4 @ #p %p ; 2 1 07240077 00243373 -inaugural_address n 1 3 @ #p ; 1 0 07240077 -inauguration n 2 3 @ %p + 2 1 00239910 00243373 -inauguration_day n 1 2 @ #p 1 0 15159265 -inauspiciousness n 1 3 ! @ + 1 0 05162217 -inborn_error_of_metabolism n 1 2 @ ~ 1 0 14155834 -inborn_reflex n 1 2 @ ~ 1 0 00863513 -inbreeding n 1 1 @ 1 0 00851587 -inc n 1 1 @ 1 0 08403907 -inca n 3 3 @ ~ ; 3 0 09727323 09727191 08488833 -incalescence n 1 1 @ 1 0 05016451 -incan n 1 1 @ 1 0 09727191 -incandescence n 2 2 @ + 2 0 11467786 05018674 -incandescent_lamp n 1 2 @ %p 1 0 03665924 -incantation n 1 2 @ ~ 1 1 07160116 -incapability n 2 4 ! @ ~ + 2 0 05647867 05207570 -incapableness n 2 4 ! @ ~ + 2 0 05647867 05207570 -incapacity n 2 2 ! @ 2 0 05648146 05207846 -incarceration n 1 3 @ ~ + 1 0 13999206 -incarnation n 4 4 @ ~ + ; 4 2 10418302 06790845 15123589 00933259 -incasement n 1 2 @ + 1 0 00322488 -incaution n 1 3 ! @ ~ 1 0 04665210 -incautiousness n 1 3 @ ~ + 1 0 04665210 -incendiarism n 1 1 @ 1 0 00378296 -incendiary n 2 2 @ ~ 2 0 09810707 03565991 -incendiary_bomb n 1 1 @ 1 0 03565991 -incense n 2 4 @ ~ %s + 2 1 14918994 05714745 -incense_cedar n 2 2 @ #m 2 0 11639084 11634736 -incense_tree n 1 4 @ ~ #m %s 1 0 12690653 -incense_wood n 1 2 @ #s 1 0 12693457 -incentive n 2 4 ! @ ~ #p 2 2 09179776 13273154 -incentive_option n 1 1 @ 1 0 00081395 -incentive_program n 1 2 @ %p 1 0 13273381 -incentive_scheme n 1 2 @ %p 1 0 13273381 -incentive_stock_option n 1 1 @ 1 0 00081395 -inception n 1 2 @ ~ 1 1 07323922 -incertitude n 1 2 @ ~ 1 0 05698247 -incessancy n 1 2 @ + 1 0 05052587 -incessantness n 1 2 @ + 1 0 05052587 -incest n 1 2 @ + 1 0 00848891 -inch n 2 5 @ #p %p + ; 2 2 13649791 13713300 -incheon n 1 2 @ #p 1 0 08956140 -inchoative n 1 1 @ 1 0 13805456 -inchoative_aspect n 1 1 @ 1 0 13805456 -inchon n 2 3 @ #p ; 2 0 08956140 01280990 -inchworm n 1 1 @ 1 0 02288268 -incidence n 2 3 @ ~ + 2 1 13826959 11467996 -incidence_angle n 1 2 @ ~ 1 0 13890869 -incident n 2 3 @ ~ #p 2 1 07307477 13978033 -incidental n 2 2 @ ; 2 0 13306436 06482978 -incidental_expense n 1 2 @ ; 1 0 13306436 -incidental_music n 1 1 @ 1 0 07281375 -incienso n 1 2 @ #m 1 0 11963932 -incineration n 1 3 @ ~ + 1 0 00378706 -incinerator n 1 2 @ + 1 0 03566193 -incipience n 1 2 @ + 1 1 15143012 -incipiency n 1 2 @ + 1 1 15143012 -incision n 2 4 @ ~ #p + 2 0 13904843 00678010 -incisiveness n 1 2 @ + 1 0 05199680 -incisor n 1 1 @ 1 0 05307641 -incisura n 1 3 @ ~ ; 1 0 13905121 -incisure n 1 4 @ ~ + ; 1 0 13905121 -incitation n 2 3 @ ~ + 2 0 09184975 01261490 -incitement n 4 3 @ ~ + 4 2 01261490 07252764 09184975 07246036 -inciter n 1 3 @ ~ + 1 0 10209246 -incivility n 1 2 ! @ 1 0 04915365 -inclemency n 2 3 @ ~ + 2 0 14523090 04639732 -inclementness n 1 3 @ ~ + 1 0 14523090 -inclination n 8 5 ! @ ~ + ; 8 3 06196584 13889843 13889602 13892897 07498854 05068080 04944048 00335384 -inclination_of_an_orbit n 1 2 @ ; 1 0 13889843 -incline n 2 4 @ ~ #p + 2 2 09437454 04051549 -incline_bench_press n 1 1 @ 1 1 00626728 -inclined_fault n 1 3 @ ~ %p 1 0 09310616 -inclined_plane n 1 2 @ ~ 1 0 03566329 -inclining n 1 3 @ ~ + 1 0 00335384 -inclinometer n 3 2 @ ; 3 0 03566730 03566555 03043798 -inclosure n 2 3 @ ~ + 2 0 06473381 00321956 -inclusion n 4 4 ! @ ~ + 4 0 13936304 13794034 09310806 00373130 -inclusion_body n 1 2 @ ~ 1 1 09310806 -inclusion_body_encephalitis n 1 1 @ 1 0 14344189 -inclusion_body_myositis n 1 1 @ 1 0 14209836 -incognizance n 1 3 ! @ + 1 0 05676476 -incoherence n 2 4 ! @ ~ + 2 0 14418103 06608977 -incoherency n 2 3 @ ~ + 2 0 14418103 06608977 -income n 1 3 ! @ ~ 1 1 13255145 -income_bracket n 1 1 @ 1 0 08006250 -income_statement n 1 1 @ 1 0 13355301 -income_tax n 1 2 @ ~ 1 1 13310230 -income_tax_bracket n 1 1 @ 1 0 08006250 -income_tax_return n 1 2 @ ~ 1 1 06548671 -incoming n 1 2 @ ~ 1 0 00049003 -incommodiousness n 1 2 @ + 1 0 14446878 -incommutability n 1 2 @ + 1 0 04741075 -incompatibility n 3 5 ! @ ~ + ; 3 1 13858045 13975037 04714440 -incompetence n 2 4 ! @ ~ + 2 1 05154241 14076126 -incompetency n 1 2 @ + 1 0 05154241 -incompetent n 1 2 @ ~ 1 1 10202363 -incompetent_cervix n 1 2 @ ; 1 0 05303020 -incompetent_person n 1 2 @ ~ 1 0 10202363 -incomplete_abortion n 1 1 @ 1 0 00230997 -incomplete_fracture n 1 2 @ ~ 1 0 14293840 -incompleteness n 1 4 ! @ ~ + 1 0 14462193 -incomprehensibility n 1 4 ! @ ~ + 1 0 04822223 -incomprehension n 1 2 ! @ 1 0 05806231 -incompressibility n 1 3 ! @ + 1 0 04938702 -inconceivability n 1 2 @ + 1 0 14483348 -inconceivableness n 1 2 @ + 1 0 14483348 -inconclusiveness n 1 3 ! @ + 1 0 04758181 -inconel n 1 2 @ ; 1 0 14916369 -incongruity n 1 4 ! @ ~ + 1 0 04714847 -incongruousness n 1 4 ! @ ~ + 1 0 04714847 -inconsequence n 2 4 ! @ ~ + 2 0 05174517 04785669 -inconsiderateness n 1 3 @ ~ + 1 0 04845967 -inconsideration n 1 3 ! @ ~ 1 0 04845967 -inconsistency n 2 3 ! @ + 2 0 13858045 04751847 -inconspicuousness n 1 4 ! @ ~ + 1 0 04707636 -inconstancy n 2 4 ! @ ~ + 2 0 04879092 04734885 -incontinence n 2 3 @ ~ + 2 0 13496972 04884817 -incontinency n 1 3 @ ~ + 1 0 13496972 -incontrovertibility n 1 2 @ + 1 0 04755218 -incontrovertibleness n 1 2 @ + 1 0 04755218 -inconvenience n 3 4 ! @ ~ + 3 2 14446878 04711435 04722715 -inconvertibility n 1 3 ! @ + 1 0 04737020 -incoordination n 1 2 ! @ 1 0 05641720 -incorporation n 3 3 @ ~ + 3 1 01238267 05753954 00373278 -incorporeality n 1 4 ! @ ~ + 1 0 04761517 -incorrectness n 2 4 ! @ ~ + 2 0 04901599 04802403 -incorruptibility n 1 3 ! @ + 1 1 04870206 -incorruption n 1 1 @ 1 0 04870040 -incorruptness n 1 3 ! @ + 1 0 04870040 -increase n 5 4 ! @ ~ + 5 5 13754293 07356676 13497135 05108947 00363260 -incredibility n 1 4 ! @ ~ + 1 0 04784142 -incredibleness n 1 3 @ ~ + 1 0 04784142 -incredulity n 1 2 @ + 1 0 05698982 -increment n 2 4 ! @ ~ + 2 0 13497135 05108947 -incremental_cost n 1 1 @ 1 0 05145708 -incrimination n 1 3 @ ~ + 1 0 07237758 -incrustation n 3 3 @ ~ + 3 0 13497650 09260218 03566860 -incubation n 3 4 @ #p + ; 3 1 00658796 15287578 13441812 -incubation_period n 1 1 @ 1 1 15294607 -incubator n 1 3 @ %p + 1 0 03567066 -incubus n 3 1 @ 3 1 09542868 13936676 10202531 -inculcation n 1 2 @ + 1 1 00889082 -inculpability n 1 2 @ + 1 0 13989863 -inculpableness n 1 2 @ + 1 0 13989863 -inculpation n 1 3 @ ~ + 1 0 07237758 -incumbency n 3 3 @ ~ + 3 0 15291498 01131425 00593512 -incumbent n 1 2 @ ~ 1 0 10202624 -incumbrance n 3 2 @ ~ 3 0 13403025 05832745 03520811 -incurability n 2 3 ! @ + 2 0 04856899 04742251 -incurable n 1 1 @ 1 0 10202763 -incurableness n 1 3 ! @ + 1 0 04856899 -incurrence n 1 2 @ + 1 0 01240064 -incurring n 1 2 @ + 1 0 00078217 -incursion n 3 3 @ ~ + 3 1 00049344 00975452 00072691 -incurvation n 2 3 @ ~ + 2 0 13864965 00406234 -incurvature n 1 2 @ ~ 1 0 13864965 -incus n 1 2 @ #p 1 0 05326340 -indaba n 1 1 @ 1 0 08321807 -indapamide n 1 1 @ 1 0 03567325 -indebtedness n 2 3 @ ~ + 2 0 14490319 13782033 -indecency n 2 4 ! @ ~ + 2 0 04902925 00737536 -indecent_exposure n 1 1 @ 1 0 00772253 -indecision n 2 3 ! @ ~ 2 1 05699172 04866866 -indecisiveness n 2 4 ! @ ~ + 2 0 05699172 04866866 -indecorousness n 1 4 ! @ ~ + 1 0 04902470 -indecorum n 2 3 ! @ ~ 2 0 04902470 00737070 -indefatigability n 1 2 @ + 1 0 04864824 -indefatigableness n 1 2 @ + 1 0 04864824 -indefinite_article n 1 1 @ 1 0 06325001 -indefinite_integral n 1 1 @ 1 0 06015700 -indefinite_quantity n 1 2 @ ~ 1 0 13576355 -indefiniteness n 1 3 @ ~ + 1 0 04757864 -indefinity n 1 3 @ ~ + 1 1 04757864 -indelible_ink n 1 2 @ ~ 1 0 14916962 -indelicacy n 2 2 @ ~ 2 0 04902165 01224828 -indemnification n 2 3 @ ~ + 2 0 13290676 00259894 -indemnity n 3 3 @ ~ + 3 0 14539826 14529408 13290676 -indene n 1 1 @ 1 0 14824906 -indent n 2 3 @ + ; 2 0 06529879 06389753 -indentation n 4 3 @ ~ + 4 1 13908021 13537894 06389753 00406939 -indention n 1 1 @ 1 0 06389753 -indenture n 4 3 @ ~ + 4 0 13908021 06773006 06772837 06389753 -independence n 3 5 @ ~ #p = + 3 2 13994148 07474006 09106770 -independence_day n 1 2 @ #p 1 0 15190084 -independence_hall n 1 2 @ #p 1 0 03567474 -independency n 1 4 @ ~ = + 1 0 13994148 -independent n 2 2 @ ; 2 0 10337488 10110421 -independent_agency n 1 3 @ ~ ; 1 0 08338847 -independent_clause n 1 2 @ #p 1 0 06314423 -independent_state_of_papua_new_guinea n 1 4 @ #m #p %p 1 0 08844557 -independent_state_of_samoa n 1 3 @ #p %p 1 0 08991491 -independent_variable n 1 3 @ ~ ; 1 0 05858093 -inderal n 1 2 @ ; 1 0 04011409 -indestructibility n 1 3 ! @ + 1 0 05043621 -indeterminacy n 1 2 @ ~ 1 0 04757864 -indeterminacy_principle n 1 2 @ ; 1 0 06108079 -indeterminateness n 1 3 @ ~ + 1 0 04757864 -indetermination n 1 2 @ ~ 1 0 04757864 -index n 5 5 @ ~ #p %p + 5 2 13851067 06639674 06812417 06491786 05567381 -index_case n 1 2 @ ; 1 0 10202854 -index_finger n 1 1 @ 1 1 05567381 -index_fossil n 1 1 @ 1 0 09311067 -index_fund n 2 1 @ 2 0 13359153 08071756 -index_number n 1 2 @ ~ 1 0 06639674 -index_of_refraction n 1 1 @ 1 0 13824929 -index_register n 1 2 @ ; 1 0 03567635 -indexation n 1 2 @ + 1 0 00805868 -indexer n 1 2 @ + 1 0 10203016 -indexing n 1 2 @ + 1 1 01013156 -india n 1 7 @ #m #p %m %p + - 1 1 08900535 -india-rubber_fig n 1 1 @ 1 0 12402840 -india-rubber_plant n 1 1 @ 1 0 12402840 -india-rubber_tree n 1 1 @ 1 0 12402840 -india_ink n 1 1 @ 1 0 14917080 -india_paper n 1 1 @ 1 0 14969421 -india_rubber n 1 2 @ ~ 1 0 15006258 -indiaman n 1 1 @ 1 0 03567788 -indian n 3 3 @ ~ #m 3 1 09645091 09673495 06906439 -indian_agent n 1 1 @ 1 0 10203135 -indian_arrowroot n 1 2 @ #m 1 0 12475774 -indian_banyan n 1 1 @ 1 0 12402348 -indian_bean n 2 3 @ ~ #m 2 0 12814643 12537569 -indian_beech n 1 2 @ #m 1 0 12563702 -indian_beet n 1 2 @ #m 1 0 12546962 -indian_blackwood n 1 2 @ #m 1 0 12522678 -indian_blanket n 1 1 @ 1 0 11970846 -indian_breadroot n 1 2 @ #m 1 0 12564613 -indian_buffalo n 1 1 @ 1 0 02408660 -indian_button_fern n 1 2 @ #m 1 0 13201566 -indian_capital n 1 2 @ #p 1 0 08903049 -indian_cherry n 1 1 @ 1 0 13141972 -indian_chickweed n 1 2 @ #m 1 0 11821534 -indian_chief n 1 2 @ ~ 1 0 10203298 -indian_chieftain n 1 2 @ ~ 1 0 10203298 -indian_chocolate n 1 1 @ 1 0 12632072 -indian_cholera n 1 1 @ 1 0 14129579 -indian_club n 1 1 @ 1 0 03567912 -indian_cobra n 1 2 @ #m 1 0 01748264 -indian_coral_tree n 1 1 @ 1 0 12528974 -indian_corn n 1 4 @ ~ #m %p 1 0 12143676 -indian_cress n 1 1 @ 1 0 12719944 -indian_crocus n 1 2 @ #m 1 0 12079120 -indian_currant n 1 2 @ #m 1 0 12677841 -indian_elephant n 1 3 @ ~ #m 1 0 02504013 -indian_file n 1 2 @ ~ 1 0 08428756 -indian_giver n 1 2 @ ; 1 0 10203682 -indian_grackle n 1 1 @ 1 0 01578180 -indian_hemp n 3 2 @ %p 3 0 12397431 12178129 11767877 -indian_lettuce n 1 3 @ ~ #m 1 0 11861021 -indian_lodge n 1 2 @ ~ 1 0 03685307 -indian_lotus n 1 1 @ 1 0 11717399 -indian_madder n 1 2 @ #m 1 0 12661045 -indian_mallow n 2 2 @ #m 2 0 12186839 12173069 -indian_meal n 1 2 @ #s 1 0 07568095 -indian_millet n 2 1 @ 2 0 12137791 12126516 -indian_monetary_unit n 1 2 @ ~ 1 0 13703679 -indian_mongoose n 1 1 @ 1 0 02137722 -indian_mustard n 2 2 @ #m 2 0 11878633 07713763 -indian_mutiny n 1 2 @ ; 1 0 01281154 -indian_ocean n 1 2 @ %p 1 0 09311259 -indian_paint n 2 2 @ #m 2 0 12821048 11829435 -indian_paintbrush n 2 3 @ ~ #m 2 0 13235503 12879963 -indian_pea n 1 2 @ #m 1 0 12541403 -indian_pink n 2 1 @ 2 0 12827270 12168750 -indian_pipe n 1 2 @ #m 1 0 12258885 -indian_plantain n 1 2 @ #m 1 0 11943133 -indian_poke n 2 1 @ 2 0 12464649 11855435 -indian_pony n 1 1 @ 1 0 02382039 -indian_potato n 2 3 @ #m %p 2 0 12507379 11978961 -indian_python n 1 2 @ #m 1 1 01744270 -indian_race n 2 2 @ %m 2 0 09673341 09648176 -indian_rat_snake n 1 2 @ #m 1 0 01733214 -indian_rattlebox n 1 2 @ #m 1 0 12520015 -indian_red n 3 1 @ 3 0 14918380 14918264 04973816 -indian_relish n 1 1 @ 1 0 07823105 -indian_reservation n 1 1 @ 1 0 08587328 -indian_rhinoceros n 1 2 @ #m 1 0 02392434 -indian_rhododendron n 1 1 @ 1 0 12349315 -indian_rhubarb n 2 2 @ #m 2 0 12797368 12603273 -indian_rice n 1 2 @ #p 1 0 07804771 -indian_rosewood n 1 2 @ #m 1 0 12522678 -indian_rupee n 1 2 @ %p 1 0 13703804 -indian_salad n 1 1 @ 1 0 12834938 -indian_senna n 1 1 @ 1 0 12499979 -indian_shot n 1 1 @ 1 0 12351091 -indian_summer n 1 2 @ #p 1 1 15185996 -indian_tapir n 1 1 @ 1 0 02393940 -indian_tick_fever n 1 1 @ 1 0 14078120 -indian_tobacco n 2 1 @ 2 0 12908093 12168898 -indian_trail n 1 1 @ 1 0 03568008 -indian_turnip n 1 2 @ #m 1 0 11784497 -indiana n 2 3 @ #p %p 2 1 09084750 11071467 -indianan n 1 1 @ 1 0 09743016 -indianapolis n 1 2 @ #p 1 1 09085593 -indic n 1 2 @ ~ 1 0 06972090 -indicant n 2 3 @ ~ + 2 0 06797169 06639674 -indication n 5 5 ! @ ~ + ; 5 1 06797169 07231048 06797671 06671818 05816790 -indicative n 1 1 @ 1 0 13801700 -indicative_mood n 1 1 @ 1 0 13801700 -indicator n 4 4 @ ~ + ; 4 3 06639674 07262579 03568117 14917208 -indicator_lamp n 1 1 @ 1 0 03939844 -indicatoridae n 1 3 @ #m %m 1 0 01842655 -indictability n 1 2 @ + 1 0 13991688 -indiction n 1 1 @ 1 0 15293931 -indictment n 2 4 @ ~ %p + 2 2 07235335 07237409 -indie n 2 1 @ 2 0 08249854 08003306 -indifference n 4 3 @ ~ + 4 3 07505676 07483782 04636610 04673470 -indigen n 1 2 @ ~ 1 0 09620794 -indigence n 1 3 @ ~ + 1 0 14493716 -indigene n 1 2 @ ~ 1 0 09620794 -indigenous_language n 1 2 @ ~ 1 0 06903519 -indigenousness n 1 2 @ + 1 0 04800152 -indigestibility n 1 3 ! @ + 1 0 04997812 -indigestibleness n 1 2 @ + 1 0 04997812 -indigestion n 1 2 @ %p 1 1 14336317 -indigirka n 1 2 @ #p 1 0 09311710 -indigirka_river n 1 2 @ #p 1 0 09311710 -indignation n 1 2 @ ~ 1 1 07517737 -indignity n 1 1 @ 1 1 01225299 -indigo n 3 3 @ ~ #m 3 0 14754860 12536040 04970398 -indigo_bird n 1 2 @ #m 1 0 01537544 -indigo_broom n 1 1 @ 1 0 12509993 -indigo_bunting n 1 2 @ #m 1 0 01537544 -indigo_finch n 1 2 @ #m 1 0 01537544 -indigo_plant n 1 3 @ ~ #m 1 0 12536040 -indigo_snake n 1 2 @ ~ 1 0 01741232 -indigo_squill n 1 2 @ #m 1 0 12449934 -indigofera n 1 3 @ #m %m 1 0 12535820 -indigofera_anil n 1 1 @ 1 0 12536291 -indigofera_suffruticosa n 1 1 @ 1 0 12536291 -indigofera_tinctoria n 1 3 @ ~ #m 1 0 12536040 -indigotin n 1 1 @ 1 0 14754860 -indinavir n 1 1 @ 1 0 03568430 -indira_gandhi n 1 1 @ 1 0 10989610 -indira_nehru_gandhi n 1 1 @ 1 0 10989610 -indirect_antonym n 1 1 @ 1 0 06305838 -indirect_correlation n 1 2 @ ; 1 0 06033172 -indirect_discourse n 1 2 ! @ 1 0 07138504 -indirect_evidence n 1 2 @ ; 1 0 06735533 -indirect_expression n 1 1 @ 1 0 06761342 -indirect_fire n 1 1 @ 1 0 00991496 -indirect_immunofluorescence n 1 1 @ 1 0 00646024 -indirect_lighting n 1 1 @ 1 0 03568561 -indirect_object n 1 1 @ 1 0 06310713 -indirect_request n 1 1 @ 1 0 07185870 -indirect_tax n 1 2 @ ~ 1 0 13313899 -indirect_transmission n 1 2 @ ~ 1 0 09311885 -indirection n 2 1 @ 2 1 01026191 00752798 -indirectness n 1 4 ! @ ~ + 1 0 04919209 -indiscipline n 1 3 ! @ ~ 1 0 04884450 -indiscreetness n 1 2 @ + 1 0 05616092 -indiscretion n 2 1 @ 2 0 04891558 00738785 -indispensability n 1 3 ! @ + 1 0 05171491 -indispensableness n 1 3 ! @ + 1 0 05171491 -indisposition n 2 3 @ ~ + 2 0 14174455 04645943 -indisputability n 1 3 @ ~ + 1 0 04754862 -indistinctness n 1 4 ! @ ~ + 1 0 04704346 -indistinguishability n 1 3 @ ~ + 1 0 04743024 -indium n 1 2 @ #s 1 0 14641223 -individual n 2 5 @ ~ #m %p + 2 2 00007846 10203839 -individual_retirement_account n 1 1 @ 1 0 05912012 -individualisation n 1 2 @ + 1 0 05749402 -individualism n 3 4 @ ~ = + 3 3 04763293 05963101 05962936 -individualist n 1 3 @ ~ + 1 1 09619824 -individuality n 2 5 ! @ ~ = + 2 1 04763293 04618070 -individualization n 1 2 @ + 1 0 05749402 -individuation n 2 4 @ ~ = + 2 0 05749402 04763293 -indo-aryan n 1 2 @ ~ 1 0 06972090 -indo-european n 2 2 @ ~ 2 0 09635823 06941644 -indo-european_language n 1 2 @ ~ 1 0 06941644 -indo-hittite n 1 2 @ ~ 1 0 06941644 -indo-iranian n 1 2 @ ~ 1 0 06971872 -indo-iranian_language n 1 2 @ ~ 1 0 06971872 -indochina n 1 3 @ #p %p 1 0 08731606 -indochinese_peninsula n 1 3 @ #p %p 1 0 08731606 -indocin n 1 3 @ %s ; 1 0 03568653 -indoctrination n 1 3 @ ~ + 1 0 00888796 -indoleacetic_acid n 1 1 @ 1 0 14918529 -indolebutyric_acid n 1 1 @ 1 0 14918654 -indolence n 1 3 @ ~ + 1 1 04637108 -indomethacin n 1 2 @ %s 1 0 03568653 -indomitability n 1 2 @ + 1 0 05032028 -indonesia n 1 7 @ #m #p %m %p + - 1 1 08907606 -indonesian n 2 3 @ ~ #m 2 0 09714264 06939198 -indonesian_borneo n 1 2 @ #p 1 0 08909537 -indonesian_monetary_unit n 1 2 @ ~ 1 0 13705559 -indoor_garden n 1 1 @ 1 0 03092166 -indorsement n 5 3 @ ~ + 5 0 07248060 07180372 06687358 06405198 01215168 -indorser n 2 3 @ ~ + 2 0 10670668 10057271 -indra n 1 1 @ 1 0 09526497 -indri n 1 2 @ #m 1 0 02500267 -indri_brevicaudatus n 1 2 @ #m 1 0 02500267 -indri_indri n 1 2 @ #m 1 0 02500267 -indriidae n 1 3 @ #m %m 1 0 02499990 -indris n 1 2 @ #m 1 0 02500267 -indubitability n 1 3 @ ~ + 1 0 04754862 -induced_abortion n 1 2 @ ~ 1 0 00231161 -inducement n 2 3 @ ~ + 2 1 09179776 00159177 -inducer n 2 3 @ ~ + 2 0 14918784 10418841 -inducing n 1 3 @ ~ + 1 0 00159177 -inductance n 2 2 @ ~ 2 0 11468172 03569014 -inductance_unit n 1 2 @ ~ 1 0 13634205 -inductee n 2 3 @ + ; 2 0 10203949 10028765 -induction n 6 3 @ ~ + 6 3 07453195 11468172 05774415 05827253 00238527 00156390 -induction_accelerator n 1 1 @ 1 0 02832838 -induction_coil n 1 4 @ ~ #p %p 1 0 03568818 -induction_heating n 1 1 @ 1 0 13497784 -induction_of_labor n 1 2 @ ; 1 0 00238326 -inductive_reasoning n 1 1 @ 1 0 05774415 -inductor n 1 1 @ 1 0 03569014 -indulgence n 5 4 @ ~ + ; 5 0 04884627 04638585 01073241 00512843 00094500 -indulging n 1 3 @ ~ + 1 0 01073241 -indument n 1 1 @ 1 0 09312094 -indumentum n 1 1 @ 1 0 09312094 -indurated_clay n 1 1 @ 1 0 14917561 -induration n 1 3 @ ~ + 1 0 14110411 -induration_of_the_arteries n 1 2 @ ~ 1 0 14108324 -indus n 2 2 @ #p 2 0 09312516 09312231 -indus_civilization n 1 1 @ 1 0 08290616 -indus_river n 1 2 @ #p 1 0 09312231 -indusium n 1 2 @ #p 1 0 13094381 -industrial_air_pollution n 1 1 @ 1 0 14517852 -industrial_arts n 1 1 @ 1 0 00891345 -industrial_bank n 1 1 @ 1 0 08421291 -industrial_disease n 1 1 @ 1 0 14079493 -industrial_engineering n 1 1 @ 1 0 06134271 -industrial_enterprise n 1 1 @ 1 0 00923802 -industrial_loan_company n 1 1 @ 1 0 08421291 -industrial_management n 1 1 @ 1 0 06134271 -industrial_park n 1 1 @ 1 1 08587985 -industrial_plant n 1 3 @ ~ - 1 0 03956922 -industrial_process n 1 2 @ ~ 1 0 13497928 -industrial_psychology n 1 1 @ 1 0 06138347 -industrial_revolution n 1 1 @ 1 1 15260277 -industrial_union n 1 2 @ ~ 1 0 08233426 -industrial_watercourse n 1 1 @ 1 0 03569174 -industrial_workers_of_the_world n 1 1 @ 1 0 08473173 -industrialisation n 1 2 @ + 1 0 00923802 -industrialism n 1 2 @ + 1 1 08364757 -industrialist n 1 3 @ ~ + 1 0 10204177 -industrialization n 1 2 @ + 1 1 00923802 -industriousness n 1 3 @ ~ + 1 0 04865114 -industry n 3 5 @ ~ + ; - 3 2 08065234 00923444 04865114 -industry_analyst n 1 2 @ ~ 1 0 09791014 -indweller n 2 3 @ ~ + 2 0 13498213 09620078 -inebriant n 1 3 @ ~ + 1 0 07884567 -inebriate n 1 3 @ ~ + 1 0 10037385 -inebriation n 2 3 @ ~ + 2 0 14064644 14018567 -inebriety n 1 2 @ ~ 1 0 14018567 -ineffectiveness n 1 4 ! @ ~ + 1 0 05207963 -ineffectuality n 1 3 @ ~ + 1 0 05207963 -ineffectualness n 1 3 @ ~ + 1 0 05207963 -inefficaciousness n 1 2 @ + 1 0 05208291 -inefficacy n 1 2 ! @ 1 0 05208291 -inefficiency n 1 3 ! @ + 1 0 05648953 -inelasticity n 1 4 ! @ ~ + 1 0 05023233 -inelegance n 1 4 ! @ ~ + 1 0 04815321 -ineligibility n 1 4 ! @ ~ + 1 0 04718134 -ineluctability n 1 1 @ 1 0 04753929 -ineptitude n 2 2 @ ~ 2 0 05648459 05139561 -ineptness n 2 3 @ ~ + 2 0 05648459 04721058 -inequality n 1 3 ! @ ~ 1 1 04752221 -inequity n 1 3 ! @ ~ 1 0 04839676 -inerrancy n 1 4 ! @ + ; 1 0 04805304 -inert_gas n 1 2 @ ~ 1 0 14624369 -inertia n 2 3 @ ~ ; 2 1 04635631 11468763 -inertial_frame n 1 1 @ 1 0 06010583 -inertial_guidance n 1 1 @ 1 0 00816841 -inertial_guidance_system n 1 2 @ #p 1 0 03569293 -inertial_mass n 1 2 @ ; 1 0 05025693 -inertial_navigation n 1 1 @ 1 0 00816841 -inertial_navigation_system n 1 2 @ #p 1 0 03569293 -inertial_reference_frame n 1 1 @ 1 0 06010583 -inertness n 1 2 @ + 1 0 04776572 -inessential n 1 3 ! @ ~ 1 0 09312645 -inessentiality n 1 4 ! @ ~ + 1 0 05172815 -inevitability n 1 2 @ + 1 1 04754056 -inevitable n 1 1 @ 1 1 07330250 -inevitable_accident n 1 1 @ 1 0 07315350 -inevitableness n 1 2 @ + 1 0 04754056 -inexactitude n 1 2 @ ~ 1 0 04804611 -inexactness n 1 4 ! @ ~ + 1 0 04804611 -inexorability n 1 2 @ + 1 0 04831437 -inexorableness n 1 2 @ + 1 0 04831437 -inexpedience n 1 3 ! @ + 1 0 05165303 -inexpediency n 1 3 ! @ + 1 0 05165303 -inexpensiveness n 1 4 ! @ ~ + 1 0 05146739 -inexperience n 1 3 ! @ + 1 1 05988956 -inexperienced_person n 1 2 @ ~ 1 1 09621359 -inexplicitness n 1 4 ! @ ~ + 1 0 04824819 -infallibility n 1 4 ! @ ~ + 1 0 04805136 -infamy n 2 4 ! @ ~ + 2 0 14441230 14439012 -infancy n 2 3 @ %p + 2 1 15145586 14427239 -infant n 1 3 @ ~ + 1 1 09827683 -infant's-breath n 1 1 @ 1 0 12666369 -infant_death n 1 1 @ 1 0 14310292 -infant_deathrate n 1 1 @ 1 0 15285622 -infant_feeding n 1 2 @ ~ 1 0 01058049 -infant_mortality n 1 1 @ 1 0 15285622 -infant_mortality_rate n 1 1 @ 1 0 15285622 -infant_prodigy n 1 1 @ 1 0 09918867 -infant_school n 1 1 @ 1 0 08277709 -infanticide n 2 1 @ 2 0 10204833 01250492 -infantile_amaurotic_idiocy n 1 1 @ 1 0 14169364 -infantile_autism n 1 1 @ 1 0 05897255 -infantile_fixation n 1 1 @ 1 0 14503354 -infantile_paralysis n 1 1 @ 1 0 14140176 -infantilism n 2 2 @ ~ 2 0 14507787 00738872 -infantry n 1 3 @ ~ ; 1 1 08390157 -infantryman n 1 2 @ ~ 1 1 10204921 -infarct n 1 2 @ ~ 1 0 14207561 -infarction n 1 2 @ ~ 1 0 14207561 -infatuation n 3 2 @ + 3 1 07481084 07544351 05813109 -infeasibility n 1 3 ! @ + 1 0 05153359 -infection n 7 5 @ ~ %p + ; 7 1 14174549 13498666 13498404 07360647 06282383 04851421 04811296 -infectious_agent n 1 2 @ ~ 1 0 09312843 -infectious_disease n 1 2 @ ~ 1 1 14127211 -infectious_hepatitis n 1 1 @ 1 1 14130661 -infectious_mononucleosis n 1 1 @ 1 0 14135277 -infectious_polyneuritis n 1 1 @ 1 0 14353622 -infective_agent n 1 2 @ ~ 1 0 09312843 -infelicity n 1 3 ! @ + 1 0 04722051 -inference n 1 3 @ ~ + 1 1 05774614 -inferior n 2 2 ! @ 2 0 10205231 06820212 -inferior_alveolar_artery n 1 1 @ 1 0 05335515 -inferior_cerebellar_artery n 1 1 @ 1 0 05340972 -inferior_cerebral_vein n 1 1 @ 1 0 05362197 -inferior_colliculus n 1 2 @ #p 1 0 05500465 -inferior_conjunction n 1 2 @ ; 1 0 07415396 -inferior_court n 1 1 @ 1 0 08332896 -inferior_epigastric_vein n 1 1 @ 1 0 05366206 -inferior_labial_artery n 1 1 @ 1 0 05349101 -inferior_labial_vein n 1 1 @ 1 0 05371829 -inferior_mesenteric_artery n 1 1 @ 1 0 05351968 -inferior_ophthalmic_vein n 1 1 @ 1 0 05375169 -inferior_planet n 1 2 @ ~ 1 0 09312999 -inferior_pulmonary_vein n 1 1 @ 1 0 05378458 -inferior_rectus n 1 1 @ 1 0 05316674 -inferior_rectus_muscle n 1 1 @ 1 0 05316674 -inferior_thalamostriate_vein n 1 1 @ 1 0 05383348 -inferior_thyroid_vein n 1 1 @ 1 0 05383791 -inferior_vena_cava n 1 1 @ 1 0 05422852 -inferior_vocal_cord n 1 1 @ 1 0 05530871 -inferior_vocal_fold n 1 1 @ 1 0 05530871 -inferiority n 3 4 ! @ ~ + 3 2 13951444 04730580 05165175 -inferiority_complex n 1 1 @ 1 1 07483120 -infernal n 1 1 @ 1 0 10205344 -infernal_machine n 1 1 @ 1 0 04436832 -infernal_region n 2 4 @ ~ %p ; 2 0 05629682 05629381 -inferno n 3 4 @ ~ + ; 3 0 08582837 07303697 05629682 -infertility n 1 4 ! @ ~ + 1 0 14045507 -infestation n 2 3 @ ~ + 2 0 14452616 07996412 -infidel n 1 2 @ ~ 1 0 10166394 -infidelity n 1 3 ! @ ~ 1 1 04878861 -infield n 1 6 ! @ #p %p + ; 1 1 02799593 -infielder n 1 4 @ ~ + ; 1 1 10205457 -infiltration n 2 3 @ + ; 2 1 00976698 13534274 -infiltrator n 2 2 @ + 2 0 10205833 10205714 -infinite n 1 3 @ ~ %p 1 0 00028651 -infiniteness n 1 3 ! @ + 1 0 05209324 -infinitesimal n 1 2 @ ; 1 0 05864047 -infinitesimal_calculus n 1 3 @ ~ ; 1 0 06013741 -infinitive n 1 3 @ ~ + 1 1 06318904 -infinitude n 2 1 @ 2 0 13776060 05209324 -infinity n 1 3 @ ~ + 1 0 15243976 -infirmary n 1 3 @ ~ %p 1 1 03540595 -infirmity n 1 3 @ ~ + 1 1 14547643 -infix n 1 2 @ + 1 0 06309272 -infix_notation n 1 1 @ 1 0 06814021 -inflaming n 1 2 @ + 1 0 01261712 -inflammability n 1 2 @ + 1 0 04712568 -inflammation n 4 5 @ ~ #p = + 4 0 14336539 14037011 01261712 00378479 -inflammatory_bowel_disease n 1 2 @ ~ 1 0 14341091 -inflammatory_disease n 1 3 @ ~ %p 1 0 14171682 -inflatable_cushion n 1 1 @ 1 0 02687539 -inflater n 1 2 @ + 1 0 03569494 -inflation n 4 5 ! @ ~ + ; 4 1 13498828 07409255 04817923 00367280 -inflation_rate n 1 1 @ 1 0 15279299 -inflation_therapy n 1 1 @ 1 0 00663714 -inflationary_spiral n 1 2 ! @ 1 0 13499393 -inflator n 1 2 @ + 1 0 03569494 -inflection n 4 3 @ ~ + 4 2 13803782 07083732 07366971 07083958 -inflectional_ending n 1 1 @ 1 0 06309131 -inflectional_morphology n 1 1 @ 1 0 06178238 -inflectional_suffix n 1 1 @ 1 0 06309131 -inflexibility n 2 3 ! @ + 2 0 05024093 04660261 -inflexibleness n 1 2 @ + 1 0 05024093 -inflexion n 1 3 @ ~ + 1 0 13803782 -infliction n 3 4 @ ~ + ; 3 2 01127623 00744758 05830059 -infliximab n 2 1 @ 2 0 15030022 03569657 -inflorescence n 2 3 @ ~ %p 2 0 13439570 11674332 -inflow n 1 3 ! @ ~ 1 1 13499782 -influence n 5 3 @ ~ + 5 4 05194151 00157081 05692910 11414608 10461747 -influence_peddler n 1 1 @ 1 0 10094046 -influential_person n 1 2 @ ~ 1 0 10200781 -influenza n 1 2 @ ~ 1 0 14122497 -influx n 1 3 ! @ ~ 1 1 13499782 -info n 1 2 @ ~ 1 0 06634376 -infolding n 1 1 @ 1 0 13501941 -infomercial n 1 1 @ 1 0 07250198 -informality n 2 4 ! @ ~ + 2 0 04912052 04786994 -informant n 2 3 @ ~ + 2 1 10205985 10786033 -informatics n 1 4 @ ~ %p - 1 0 06142118 -information n 5 4 @ ~ + ; 5 3 06634376 05816287 07237561 08462320 05091527 -information_age n 1 1 @ 1 0 15254933 -information_bulletin n 1 1 @ 1 0 06682683 -information_gathering n 1 2 @ ~ 1 0 00981711 -information_measure n 1 2 @ ~ 1 0 13579287 -information_processing n 1 4 @ ~ %p - 1 0 06142118 -information_processing_system n 1 6 @ ~ #p %p ; - 1 0 03082979 -information_return n 1 1 @ 1 0 06549407 -information_science n 1 4 @ ~ %p - 1 0 06142118 -information_superhighway n 1 1 @ 1 0 04358491 -information_system n 1 2 @ ~ 1 0 03164344 -information_technology n 1 1 @ 1 0 06134510 -information_theory n 1 2 @ ; 1 0 06108643 -information_warfare n 1 1 @ 1 0 00996180 -informational_rna n 1 1 @ 1 0 14832770 -informed_consent n 1 1 @ 1 0 07175863 -informer n 1 3 @ ~ + 1 0 10206173 -informer's_privilege n 1 1 @ 1 0 05179993 -informercial n 1 1 @ 1 0 07250198 -informing n 2 3 @ ~ + 2 0 07214994 07212190 -infotainment n 1 1 @ 1 0 06616806 -infraction n 1 3 @ ~ + 1 0 00770270 -infraorbital_artery n 1 1 @ 1 0 05348054 -infrared n 2 2 @ #p 2 1 05056811 11469481 -infrared_emission n 1 1 @ 1 1 11469481 -infrared_frequency n 1 2 @ #p 1 0 05056811 -infrared_lamp n 1 1 @ 1 0 03509394 -infrared_light n 1 1 @ 1 0 11469481 -infrared_radiation n 1 1 @ 1 1 11469481 -infrared_ray n 1 1 @ 1 0 11472820 -infrared_spectrum n 1 3 @ #p %p 1 1 11469691 -infrared_therapy n 1 1 @ 1 0 00663488 -infrastructure n 2 3 @ #p %p 2 0 03570372 03569964 -infrequency n 1 2 @ + 1 0 05117237 -infrigidation n 1 1 @ 1 0 13548531 -infringement n 2 3 @ ~ + 2 0 00770543 00770270 -infringement_of_copyright n 1 2 @ ~ 1 0 00770834 -infructescence n 1 1 @ 1 0 13499923 -infundibulum n 1 3 @ ~ #p 1 0 05229990 -infuriation n 1 2 @ + 1 0 07517417 -infusion n 4 4 @ ~ + ; 4 0 14848785 13500023 00323532 00248748 -infusoria n 1 3 @ #m %m 1 0 01395531 -infusorian n 1 2 @ #m 1 0 01395773 -inga n 1 2 @ #m 1 0 11761650 -inga_edulis n 1 2 @ #m 1 0 11761836 -inga_laurina n 1 2 @ #m 1 0 11762018 -ingathering n 1 2 @ ~ 1 0 06513764 -inge n 2 1 @ 2 0 11071677 11071574 -ingeniousness n 2 3 @ ~ + 2 0 05633672 04730367 -ingenue n 3 1 @ 3 0 10206629 10206506 05929780 -ingenuity n 2 3 @ ~ + 2 0 05633672 04730367 -ingenuousness n 2 4 ! @ ~ + 2 0 04880830 04872531 -inger n 1 2 @ #m 1 0 09706548 -ingerman n 1 2 @ #m 1 0 09706548 -ingesta n 1 1 @ 1 0 07560422 -ingestion n 1 3 @ ~ + 1 0 00838098 -inglenook n 1 1 @ 1 0 03017835 -ingmar_bergman n 1 1 @ 1 0 10846224 -ingot n 1 2 @ ~ 1 0 03570526 -ingot_iron n 1 1 @ 1 0 14801845 -ingraining n 1 1 @ 1 0 00889082 -ingrate n 1 1 @ 1 0 10206763 -ingratiation n 1 1 @ 1 0 00160073 -ingratitude n 1 2 ! @ 1 1 07504711 -ingredient n 3 3 @ ~ #p 3 2 03570709 05868954 07809096 -ingres n 1 1 @ 1 0 11071838 -ingress n 2 5 ! @ ~ #p ; 2 0 07322341 00049003 -ingrian n 2 2 @ #m 2 0 09706548 06958522 -ingrid_bergman n 1 1 @ 1 0 10846400 -ingroup n 1 2 @ ~ 1 1 08240633 -ingrown_hair n 1 1 @ 1 0 05254627 -ingrown_toenail n 1 1 @ 1 0 05584605 -ingrowth n 1 1 @ 1 0 09313159 -inguen n 1 3 @ #p + 1 0 05597734 -inguinal_canal n 1 1 @ 1 0 05386544 -inguinal_hernia n 1 1 @ 1 0 14296802 -inh n 1 1 @ 1 0 03587715 -inhabitancy n 1 3 @ ~ + 1 0 01054545 -inhabitant n 1 3 @ ~ + 1 1 09620078 -inhabitation n 1 3 @ ~ + 1 0 01054545 -inhalant n 2 2 @ + 2 0 14919156 03571155 -inhalation n 2 4 @ ~ #p + 2 1 00836788 03571155 -inhalation_anaesthetic n 1 2 @ ~ 1 0 03570838 -inhalation_anesthesia n 1 1 @ 1 0 14029943 -inhalation_anesthetic n 1 2 @ ~ 1 0 03570838 -inhalation_anthrax n 1 1 @ 1 0 14072934 -inhalation_general_anaesthetic n 1 2 @ ~ 1 0 03570838 -inhalation_general_anesthetic n 1 2 @ ~ 1 0 03570838 -inhalator n 2 4 @ ~ %p + 2 0 04080833 03571280 -inhaler n 1 1 @ 1 0 03571280 -inharmoniousness n 1 2 @ + 1 0 04984809 -inherence n 1 2 @ + 1 0 13958138 -inherency n 1 1 @ 1 0 13958138 -inherent_aptitude n 1 2 @ ~ 1 0 05622723 -inheritance n 4 5 @ ~ %p + ; 4 1 00083585 13262913 04922338 04921011 -inheritance_tax n 1 1 @ 1 0 13313322 -inherited_disease n 1 2 @ ~ 1 0 14151139 -inherited_disorder n 1 2 @ ~ 1 0 14151139 -inherited_wealth n 1 2 @ ~ 1 0 14492249 -inheritor n 1 3 @ ~ + 1 0 10168584 -inheritress n 1 1 @ 1 0 10169147 -inheritrix n 1 1 @ 1 0 10169147 -inhibition n 4 4 @ ~ + ; 4 2 01070892 04884072 13500214 00201923 -inhibitor n 1 4 ! @ ~ + 1 0 14724436 -inhomogeneity n 1 1 @ 1 0 04769362 -inhospitableness n 2 3 ! @ + 2 0 14519942 04658942 -inhospitality n 1 3 ! @ + 1 0 06631661 -inhuman_treatment n 1 2 @ ~ 1 0 00424599 -inhumaneness n 1 4 ! @ ~ + 1 0 04830102 -inhumanity n 2 3 @ ~ + 2 0 04830102 00424767 -inhumation n 1 2 @ + 1 0 07451687 -inigo_jones n 1 1 @ 1 0 11090235 -inion n 1 2 @ #p 1 0 05233238 -iniquity n 3 3 @ ~ + 3 0 14563564 00745637 00744616 -initial n 1 2 @ + 1 1 06830997 -initial_offering n 1 1 @ 1 0 01094575 -initial_public_offering n 1 1 @ 1 0 01094575 -initial_rhyme n 1 1 @ 1 0 07097094 -initialisation n 1 3 @ + ; 1 0 06637350 -initialization n 1 3 @ + ; 1 0 06637350 -initiate n 3 4 ! @ ~ + 3 0 10363913 10206887 07948518 -initiation n 4 3 @ ~ + 4 2 07453195 00240184 04890546 00156390 -initiative n 2 2 @ ~ 2 2 04836074 00239230 -initiator n 1 3 @ ~ + 1 0 10209082 -injectant n 1 2 @ + 1 0 14849215 -injection n 3 3 @ ~ + 3 1 00322634 14849215 00697365 -injector n 1 2 @ + 1 0 03571439 -injudiciousness n 2 3 ! @ + 2 0 05616092 04891558 -injun n 1 2 @ ; 1 0 09667205 -injunction n 2 4 @ ~ + ; 2 0 07170467 06542830 -injured_party n 1 1 @ 1 0 09899671 -injuriousness n 1 3 @ ~ + 1 0 05166072 -injury n 5 4 @ ~ + ; 5 2 14285662 07313636 07340249 00744443 00744305 -injustice n 2 3 ! @ ~ 2 1 00744616 04854389 -ink n 2 3 @ ~ + 2 1 14917635 05404598 -ink-jet_printer n 1 2 @ ~ 1 0 03571942 -ink_bottle n 1 1 @ 1 0 03571625 -ink_cartridge n 1 2 @ #p 1 0 03571706 -ink_eraser n 1 1 @ 1 0 03571853 -inka n 2 2 @ ; 2 0 09727191 08488833 -inkberry n 1 1 @ 1 0 12757458 -inkblot n 1 1 @ 1 0 04695102 -inkblot_test n 1 1 @ 1 0 01007907 -inkiness n 1 3 @ ~ + 1 0 04960277 -inking_pad n 1 1 @ 1 0 03872885 -inkle n 1 1 @ 1 0 03572107 -inkling n 1 1 @ 1 1 05916306 -inkpad n 1 1 @ 1 0 03872885 -inkpot n 1 1 @ 1 0 03571625 -inkstand n 2 1 @ 2 0 03572321 03572205 -inkwell n 1 1 @ 1 0 03572321 -inky-cap_mushroom n 1 2 @ #m 1 0 13005984 -inky_cap n 1 2 @ #m 1 0 13005984 -inla n 1 2 @ ; 1 0 08024408 -inland_bill n 1 1 @ 1 0 13377899 -inland_passage n 1 2 @ #p 1 0 09313241 -inland_revenue n 1 2 @ ; 1 0 08143486 -inland_sea n 1 2 @ #p 1 0 09313454 -inlay n 2 4 @ ~ + ; 2 0 03572631 03572449 -inlet n 2 3 @ ~ #p 2 1 09313716 03576617 -inlet_manifold n 1 2 @ #p 1 0 03572832 -inmarriage n 1 2 @ + 1 0 13965049 -inmate n 3 2 @ ~ 3 3 10207370 10207681 09962966 -inn n 1 2 @ ~ 1 1 03541696 -innards n 1 1 @ 1 0 05298988 -innate_immunity n 1 2 @ ~ 1 0 14528571 -innate_reflex n 1 2 @ ~ 1 0 00863513 -innateness n 1 2 @ + 1 0 04739630 -inner_circle n 1 2 @ ~ 1 0 08240633 -inner_city n 1 2 @ #p 1 1 08543625 -inner_ear n 1 3 @ #p %p 1 0 05321307 -inner_hebrides n 1 3 @ #p %p 1 0 08893492 -inner_light n 1 1 @ 1 0 09184668 -inner_mongolia n 1 3 @ #p %p 1 0 08729971 -inner_product n 1 1 @ 1 0 05864884 -inner_resource n 1 1 @ 1 0 05155650 -inner_tube n 1 2 @ #p 1 0 03573005 -innersole n 1 2 @ #p 1 0 03573848 -innervation n 2 2 @ + 2 0 14036356 05088189 -inning n 1 4 @ #p %p ; 1 1 15255804 -innings n 1 4 @ ~ #p ; 1 0 00457228 -innkeeper n 1 2 @ ~ 1 0 10186774 -innocence n 3 4 ! @ ~ + 3 1 04880830 13990064 13989627 -innocency n 1 1 @ 1 0 04881033 -innocense n 1 2 @ #m 1 0 12881631 -innocent n 1 2 @ ~ 1 0 09621359 -innocent_iii n 1 1 @ 1 0 11071960 -innocent_viii n 1 1 @ 1 0 11072189 -innocent_xi n 1 1 @ 1 0 11072396 -innocent_xii n 1 1 @ 1 0 11072673 -innocents'_day n 1 1 @ 1 0 15192116 -innominate_artery n 1 1 @ 1 0 05348269 -innominate_bone n 1 3 @ #p %p 1 0 05274959 -innominate_vein n 1 1 @ 1 0 05359516 -innovation n 3 3 @ ~ + 3 2 03582658 05633385 00240184 -innovativeness n 1 2 @ + 1 0 05634767 -innovator n 1 2 @ + 1 0 10434725 -innsbruck n 1 2 @ #p 1 0 08847024 -innuendo n 1 1 @ 1 0 07238455 -innumerableness n 1 2 @ + 1 0 05122419 -inocor n 1 2 @ ; 1 0 02706373 -inoculant n 1 3 @ + ; 1 0 14919272 -inoculating n 1 3 @ ~ + 1 0 00824054 -inoculation n 1 2 @ + 1 1 00823884 -inoculator n 1 2 @ + 1 0 10207514 -inoculum n 1 2 @ ; 1 0 14919272 -inopportuneness n 1 3 ! @ + 1 0 04723107 -inordinateness n 1 3 @ ~ + 1 0 05118437 -inorganic_chemistry n 1 1 @ 1 0 06089314 -inorganic_compound n 1 2 @ ~ 1 0 14919511 -inorganic_phosphate n 1 2 @ ~ 1 0 14982265 -inosculation n 1 2 @ + 1 0 05249420 -inosine n 1 1 @ 1 0 14919635 -inositol n 1 1 @ 1 0 14919819 -inpatient n 1 2 ! @ 1 0 10207681 -inpour n 1 1 @ 1 0 13500437 -inpouring n 1 1 @ 1 0 13500437 -input n 4 2 @ ~ 4 1 07264820 06765044 05827684 03573154 -input_data n 1 2 @ ; 1 0 06510478 -input_device n 1 2 @ ~ 1 0 03163973 -input_file n 1 2 @ ; 1 0 06510478 -input_program n 1 2 @ %p 1 0 06575092 -input_routine n 1 2 @ #p 1 0 06583645 -input_signal n 1 1 @ 1 0 07264820 -inquest n 1 1 @ 1 1 00637810 -inquietude n 1 2 @ ~ 1 0 07525057 -inquirer n 1 3 @ ~ + 1 0 10207831 -inquiring n 1 3 @ ~ + 1 0 07193184 -inquiry n 3 3 @ ~ + 3 3 05797597 07193596 00636728 -inquiry_agent n 1 2 @ ; 1 0 10208189 -inquisition n 2 2 @ ~ 2 0 08333030 07194676 -inquisitiveness n 1 3 @ ~ + 1 0 05683197 -inquisitor n 2 3 @ ~ + 2 1 10208287 10208432 -inr n 1 3 @ #m #p 1 0 08138686 -inroad n 2 1 @ 2 1 00733753 00977132 -inrush n 1 1 @ 1 0 13500437 -ins n 1 3 @ #p %p 1 0 08136502 -insalubriousness n 1 3 ! @ + 1 0 04791928 -insalubrity n 1 3 ! @ + 1 0 04791928 -insane_asylum n 1 2 @ ~ 1 0 03746574 -insaneness n 1 2 @ + 1 0 14395240 -insanity n 1 4 ! @ ~ + 1 1 14395018 -insanity_plea n 1 2 @ ; 1 0 06561744 -inscription n 3 4 @ ~ + ; 3 1 06405699 06406317 00615011 -inscrutability n 1 2 @ + 1 1 04822524 -insect n 2 6 @ ~ #m %p + - 2 1 02159955 10792028 -insect_bite n 1 2 @ ~ 1 0 14297870 -insect_powder n 1 3 @ ~ %s 1 0 14919948 -insect_repellant n 1 1 @ 1 0 14920252 -insect_repellent n 1 1 @ 1 0 14920252 -insecta n 1 3 @ #m %m 1 0 02159271 -insecticide n 1 3 @ ~ %s 1 0 14919948 -insectifuge n 1 1 @ 1 0 14920252 -insectivora n 1 3 @ #m %m 1 0 01888520 -insectivore n 2 4 @ ~ #m + 2 0 01889074 01324799 -insecureness n 1 3 ! @ + 1 0 14544159 -insecurity n 2 4 ! @ ~ + 2 0 14541677 07524918 -insemination n 2 4 @ ~ #p + 2 0 00919692 00845178 -insensibility n 2 4 ! @ ~ + 2 0 05680982 04844625 -insensitiveness n 1 4 ! @ ~ + 1 0 04844024 -insensitivity n 1 4 ! @ ~ + 1 0 04844024 -insentience n 1 3 ! @ + 1 0 05006749 -insert n 4 4 @ ~ + ; 4 0 06396812 03573282 00384510 00384329 -insertion n 2 3 @ ~ + 2 0 06722186 00320852 -insertional_mutagenesis n 1 2 @ ; 1 0 07426241 -insessores n 1 2 @ #m 1 0 01523656 -inset n 3 4 @ ~ #p + 3 1 03573464 03573282 03471190 -inside n 2 3 ! @ ~ 2 2 08588294 08588152 -inside_caliper n 1 1 @ 1 0 03573574 -inside_clinch n 1 1 @ 1 0 03573739 -inside_information n 1 2 @ ~ 1 0 06635944 -inside_job n 1 1 @ 1 1 00767633 -inside_loop n 1 1 @ 1 0 00170005 -inside_passage n 1 2 @ #p 1 0 09313241 -inside_track n 2 2 @ #p 2 1 05158975 09314013 -insider n 1 1 @ 1 0 10208583 -insider_information n 1 1 @ 1 0 06651854 -insider_trading n 1 1 @ 1 0 00080242 -insidiousness n 2 2 @ + 2 0 05166260 04880138 -insight n 4 2 @ ~ 4 3 05710356 07513247 05807306 05708207 -insightfulness n 1 2 @ + 1 0 05621808 -insignia n 1 2 @ ~ 1 0 06883073 -insignia_of_rank n 1 2 @ ; 1 0 06884670 -insignificance n 1 4 ! @ ~ + 1 1 05173579 -insincerity n 1 4 ! @ ~ + 1 0 04867871 -insinuation n 2 2 @ + 2 1 07238455 00160073 -insipidity n 2 2 @ + 2 0 05206006 04997282 -insipidness n 2 2 @ + 2 0 05206006 04997282 -insistence n 3 3 @ ~ + 3 1 07191777 14451349 01214557 -insistency n 2 2 @ + 2 0 14451349 01214557 -insisting n 1 3 @ ~ + 1 0 07191777 -insobriety n 1 2 @ ~ 1 0 14018567 -insolation n 3 2 @ + 3 0 14204586 11509968 00662972 -insole n 1 2 @ #p 1 0 03573848 -insolence n 2 3 @ ~ + 2 1 04915866 01224914 -insolubility n 2 3 ! @ + 2 0 05215699 05210373 -insolvency n 1 4 ! @ ~ + 1 0 14478291 -insolvent n 1 1 @ 1 0 09838370 -insomnia n 1 2 ! @ 1 0 14023374 -insomniac n 1 1 @ 1 0 10208748 -insouciance n 1 2 @ + 1 1 07530866 -inspection n 1 3 @ ~ + 1 1 00879271 -inspection_and_repair n 1 2 @ ~ 1 0 00268112 -inspector n 2 3 @ ~ + 2 1 10208847 10067968 -inspector_general n 1 2 @ ; 1 0 10208950 -inspector_maigret n 1 1 @ 1 0 09600764 -inspectorate n 1 1 @ 1 0 08414040 -inspectorship n 1 2 @ + 1 0 00593613 -inspiration n 6 5 @ ~ #p + ; 6 2 05834567 03574004 05797473 05686690 01261845 00836788 -inspirer n 1 2 @ + 1 0 10118382 -inspissation n 2 2 @ + 2 0 13500557 00357906 -instability n 4 3 ! @ ~ 4 2 13975659 04806067 14004149 04775747 -installation n 3 3 @ ~ + 3 2 00240938 03315023 07453195 -installation_charge n 1 1 @ 1 0 13324609 -installing n 1 2 @ + 1 0 00240938 -installment n 4 4 @ ~ #p + 4 1 13301715 06621771 06391766 00240938 -installment_buying n 1 2 @ ~ 1 0 13296593 -installment_credit n 1 1 @ 1 0 13375167 -installment_debt n 1 1 @ 1 0 13398859 -installment_loan n 1 1 @ 1 0 13375167 -installment_plan n 1 2 @ ~ 1 0 13296593 -installment_rate n 1 1 @ 1 0 13281770 -instalment n 3 4 @ ~ #p + 3 0 06621771 06391766 00240938 -instance n 2 3 @ ~ + 2 2 07308889 05820620 -instancy n 2 3 @ + ; 2 1 05059525 05172131 -instant n 2 3 @ ~ + 2 2 15247110 15244650 -instant_coffee n 1 1 @ 1 0 07920663 -instant_replay n 1 2 @ ; 1 0 01020117 -instantaneous_sound_pressure n 1 1 @ 1 0 11497378 -instantaneousness n 1 2 @ + 1 0 05059525 -instantiation n 1 2 @ + 1 0 05927169 -instar n 1 1 @ 1 0 02309242 -instauration n 1 2 @ ~ 1 0 00240184 -instep n 2 3 @ ~ #p 2 0 05576950 03574243 -instigant n 1 3 @ ~ + 1 0 10209246 -instigation n 2 2 @ + 2 0 07251619 00156625 -instigator n 2 3 @ ~ + 2 0 10209246 10209082 -instillation n 2 3 @ ~ + 2 1 00321731 14920728 -instillator n 1 2 @ + 1 0 03574416 -instilling n 1 2 @ + 1 0 00889082 -instillment n 1 3 @ ~ + 1 0 00321731 -instilment n 1 3 @ ~ + 1 0 00321731 -instinct n 1 2 @ ~ 1 1 05622723 -instinctive_reflex n 1 2 @ ~ 1 0 00863513 -institute n 1 1 @ 1 1 08407330 -institution n 5 3 @ ~ + 5 4 08053576 03574555 05669350 00240184 03746574 -instroke n 1 1 @ 1 0 07351380 -instruction n 4 7 @ ~ #p %p + ; - 4 3 06786629 00883297 00887081 06584891 -instruction_book n 1 1 @ 1 0 06413130 -instruction_execution n 1 4 @ ~ #p ; 1 0 13477462 -instruction_manual n 1 1 @ 1 0 06422144 -instructions n 1 1 @ 1 1 06422144 -instructor n 1 4 @ ~ #m + 1 1 10694258 -instructorship n 1 2 @ + 1 0 00593732 -instructress n 1 1 @ 1 0 10209539 -instrument n 6 4 @ ~ + ; 6 3 03574816 00173761 10209616 06479665 06332731 03800933 -instrument_flying n 1 1 @ 1 1 00816419 -instrument_landing n 1 1 @ 1 0 00305858 -instrument_of_execution n 1 3 @ ~ %p 1 0 03575691 -instrument_of_punishment n 1 2 @ ~ 1 0 03575958 -instrument_of_torture n 1 2 @ ~ 1 0 03576215 -instrument_panel n 1 3 @ ~ %p 1 1 03098140 -instrumental_conditioning n 1 1 @ 1 0 05759487 -instrumental_music n 2 1 @ 2 0 07038767 00544731 -instrumental_role n 1 1 @ 1 0 06332731 -instrumentalism n 1 1 @ 1 0 05975051 -instrumentalist n 1 4 @ ~ #m + 1 1 10340312 -instrumentality n 3 4 @ ~ #p + 3 2 08146135 05150458 03575240 -instrumentation n 4 3 @ ~ + 4 2 03575240 00097348 07038910 00939818 -insubordination n 2 3 ! @ ~ 2 1 04908182 01179393 -insubstantiality n 2 4 ! @ ~ + 2 0 05041595 04761815 -insufficiency n 3 5 ! @ ~ + ; 3 0 14463471 14113471 05113133 -insufflation n 2 3 @ + ; 2 0 13500674 00835830 -insulant n 1 3 @ ~ + 1 0 14920844 -insularism n 1 1 @ 1 0 14415518 -insularity n 1 2 @ + 1 1 14415518 -insulating_material n 1 2 @ ~ 1 0 14920844 -insulating_tape n 1 1 @ 1 0 03396841 -insulation n 3 3 @ ~ + 3 1 14415518 14920844 00827010 -insulator n 1 4 ! @ ~ + 1 0 14821590 -insulin n 1 2 @ ~ 1 1 05410646 -insulin-dependent_diabetes_mellitus n 1 2 @ %p 1 0 14118423 -insulin_reaction n 1 2 @ %p 1 0 14068177 -insulin_shock n 2 2 @ %p 2 0 14068177 00706847 -insulin_shock_therapy n 1 1 @ 1 0 00706847 -insulin_shock_treatment n 1 1 @ 1 0 00706847 -insult n 2 3 @ ~ + 2 1 06715223 01225027 -insurability n 1 2 ! @ 1 0 04717787 -insurable_interest n 1 1 @ 1 0 13287540 -insurance n 3 3 @ ~ + 3 2 13344804 06523641 14539826 -insurance_agent n 1 1 @ 1 0 10209731 -insurance_broker n 1 1 @ 1 0 10209731 -insurance_claim n 1 1 @ 1 1 01062136 -insurance_company n 1 1 @ 1 1 08070465 -insurance_coverage n 1 1 @ 1 0 13344664 -insurance_firm n 1 1 @ 1 1 08070465 -insurance_policy n 1 2 @ ~ 1 0 06523641 -insurance_premium n 1 1 @ 1 1 13301620 -insurance_underwriter n 1 1 @ 1 0 08070465 -insured n 1 1 @ 1 0 10209888 -insured_person n 1 1 @ 1 0 10209888 -insurer n 1 2 @ + 1 0 08070465 -insurgence n 1 1 @ 1 0 00963241 -insurgency n 1 2 @ + 1 0 00963241 -insurgent n 2 3 @ ~ #m 2 0 10210137 10150556 -insurrection n 1 3 @ ~ + 1 1 00962129 -insurrectionism n 1 1 @ 1 0 05872362 -insurrectionist n 1 3 @ ~ + 1 0 10210137 -intactness n 1 2 @ + 1 0 14460407 -intaglio n 2 2 @ ~ 2 0 06678784 03576443 -intaglio_printing n 1 2 @ ~ 1 0 06678784 -intake n 3 3 @ ~ #p 3 1 00838098 03576617 00836788 -intake_manifold n 1 2 @ #p 1 0 03576779 -intake_valve n 1 2 @ #p 1 0 03576955 -intangibility n 1 3 ! @ + 1 0 04760296 -intangible n 1 2 @ ~ 1 1 13332670 -intangible_asset n 1 2 @ ~ 1 0 13332670 -intangibleness n 1 2 @ + 1 0 04760296 -integer n 1 2 @ ~ 1 1 13728499 -integral n 1 3 @ ~ + 1 1 06015505 -integral_calculus n 1 2 @ ; 1 0 06015271 -integrality n 1 3 @ ~ + 1 0 14461231 -integrated_circuit n 1 2 @ #p 1 0 03577090 -integrated_data_processing n 1 1 @ 1 0 13500860 -integrated_logistic_support n 1 1 @ 1 0 01216738 -integrating n 1 2 @ + 1 1 01202415 -integration n 3 4 ! @ ~ + 3 3 01202415 01237415 00871418 -integrator n 1 2 @ + 1 0 03577312 -integrity n 2 4 @ ~ #p = 2 2 14460565 04869569 -integument n 1 2 @ + 1 0 05239243 -integumentary_system n 1 2 @ %p 1 0 05461179 -intellect n 3 4 @ ~ = + 3 2 05618849 05651680 09621545 -intellection n 1 2 @ ~ 1 0 05770926 -intellectual n 1 2 @ ~ 1 1 09621545 -intellectual_nourishment n 1 2 @ ~ 1 0 05811214 -intellectual_property n 1 1 @ 1 0 13245338 -intellectualisation n 1 2 @ ; 1 0 13501059 -intellectualization n 1 2 @ ; 1 0 13501059 -intelligence n 5 5 ! @ ~ = + 5 2 05617606 08339454 06642672 06642138 00981830 -intelligence_activity n 1 2 @ ~ 1 0 00981830 -intelligence_agency n 1 2 @ ~ 1 0 08339454 -intelligence_agent n 1 2 @ ~ 1 0 10569411 -intelligence_analyst n 1 1 @ 1 0 10210512 -intelligence_cell n 1 1 @ 1 0 08359432 -intelligence_community n 1 4 @ %m %p ; 1 0 08340153 -intelligence_information n 1 2 @ ~ 1 0 06642672 -intelligence_officer n 1 2 @ ~ 1 0 10569411 -intelligence_operation n 1 2 @ ~ 1 0 00981830 -intelligence_quotient n 1 2 @ ~ 1 0 13821977 -intelligence_service n 1 2 @ ~ 1 0 08339454 -intelligence_test n 1 2 @ ~ 1 1 01007053 -intelligentsia n 1 2 @ ~ 1 0 08387354 -intelligibility n 1 4 ! @ ~ + 1 0 04819496 -intelnet n 1 1 @ 1 0 03577474 -intemperance n 3 3 ! @ ~ 3 0 04885271 00748011 00747671 -intemperateness n 2 3 @ ~ + 2 0 00748011 00747671 -intensification n 2 4 @ ~ + ; 2 1 00374224 00374677 -intensifier n 1 3 @ + - 1 0 06321054 -intension n 1 2 @ + 1 0 06602935 -intensity n 4 5 @ ~ #s = + 4 2 05099796 05036394 04990220 04975340 -intensity_level n 1 2 @ ~ 1 0 05099796 -intensive n 1 2 @ - 1 0 06321054 -intensive_care n 1 1 @ 1 0 00711265 -intensive_care_unit n 1 3 @ ~ #p 1 0 08146593 -intensiveness n 1 3 @ ~ + 1 0 05036394 -intent n 2 3 @ ~ + 2 2 05982152 06605897 -intention n 3 4 @ ~ + ; 3 2 05982152 05982720 00163233 -intentionality n 1 3 @ = + 1 0 04661389 -intentness n 1 2 @ + 1 1 04865722 -inter-group_communication n 1 1 @ 1 0 06261260 -inter-service_support n 1 2 @ ; 1 0 01217306 -inter-services_intelligence n 1 2 @ ; 1 0 08343534 -inter_vivos_trust n 1 1 @ 1 0 13362918 -interaction n 2 4 @ ~ + ; 2 1 00039021 11516113 -interactive_multimedia n 1 2 @ %p 1 0 06261922 -interactive_multimedia_system n 1 2 @ %p 1 0 06261922 -interagency_support n 1 1 @ 1 0 01217052 -interahamwe n 1 2 @ ; 1 0 08016900 -interbank_loan n 1 1 @ 1 0 13374887 -interbrain n 1 3 @ #p %p 1 0 05496990 -interbreeding n 2 4 @ ~ + ; 2 0 00850425 00849768 -intercalary_year n 1 1 @ 1 0 15202230 -intercalation n 1 2 @ #p 1 0 15172664 -intercapitular_vein n 1 2 @ #p 1 0 05370410 -intercellular_substance n 1 2 @ #p 1 0 05582305 -intercept n 1 1 @ 1 1 06011793 -interception n 2 3 @ + ; 2 0 01078279 00139758 -interceptor n 1 2 @ + 1 1 03577672 -intercession n 2 3 @ ~ + 2 0 07190188 01240210 -intercessor n 1 2 @ ~ 1 0 09624559 -interchange n 4 4 @ ~ #p + 4 2 03577818 00040152 01166258 01093085 -interchangeability n 1 3 @ ~ + 1 0 04735929 -interchangeableness n 1 3 @ ~ + 1 0 04735929 -intercom n 1 3 @ ~ %p 1 0 03578055 -intercom_speaker n 1 2 @ #p 1 0 04292572 -intercommunication n 1 3 @ ~ + 1 0 06252743 -intercommunication_system n 1 3 @ ~ %p 1 0 03578055 -intercommunion n 1 1 @ 1 0 01036624 -interconnectedness n 1 2 @ + 1 1 14420240 -interconnection n 2 3 @ + ; 2 0 14420240 00145929 -intercontinental_ballistic_missile n 1 2 @ ~ 1 1 03578251 -intercostal n 1 2 @ + 1 0 05552287 -intercostal_artery n 1 1 @ 1 0 05348540 -intercostal_muscle n 1 1 @ 1 0 05552287 -intercostal_vein n 1 1 @ 1 0 05370636 -intercourse n 2 3 @ ~ %p 2 1 07134445 00845523 -interdepartmental_support n 1 1 @ 1 0 01217052 -interdependence n 1 3 @ ~ + 1 1 13841863 -interdependency n 1 3 @ ~ + 1 0 13841863 -interdict n 2 3 @ + ; 2 0 06710330 06558088 -interdiction n 2 3 @ + ; 2 0 07255299 06558088 -interdiction_fire n 1 1 @ 1 0 00991642 -interest n 7 5 @ ~ = + ; 7 7 05682950 05143077 05192451 13318584 13286801 07968702 00431552 -interest_expense n 1 1 @ 1 0 13276519 -interest_group n 1 3 @ ~ ; 1 0 07968702 -interest_rate n 1 2 @ ~ 1 1 13319032 -interestedness n 1 2 @ + 1 0 05671217 -interestingness n 1 5 ! @ ~ = + 1 0 05192451 -interface n 4 4 @ ~ + ; 4 1 03578435 06575227 05764779 03578656 -interfacial_surface_tension n 1 1 @ 1 0 11518168 -interfacial_tension n 1 1 @ 1 1 11518168 -interference n 5 5 ! @ ~ + ; 5 4 06661562 01073995 07430211 00562643 03520811 -interference_fringe n 1 1 @ 1 0 11459748 -interferometer n 1 1 @ 1 1 03578981 -interferon n 1 2 @ ~ 1 0 03579137 -intergalactic_space n 1 2 @ #p 1 0 08501887 -interim n 1 2 @ ~ 1 1 15272887 -interim_overhaul n 1 1 @ 1 0 00268341 -interior n 3 4 @ ~ %p + 3 1 08588294 08588152 08139000 -interior_angle n 1 2 @ ~ 1 0 13890391 -interior_decoration n 2 2 @ ~ 2 0 03579355 00608354 -interior_decorator n 1 2 @ ~ 1 0 10210648 -interior_department n 1 2 @ %p 1 0 08139000 -interior_design n 2 2 @ ~ 2 2 00608354 06124864 -interior_designer n 1 2 @ ~ 1 1 10210648 -interior_door n 1 3 @ ~ #p 1 0 03579538 -interior_live_oak n 1 1 @ 1 0 12280060 -interior_monologue n 1 1 @ 1 0 06374241 -interior_secretary n 2 2 @ #m 2 0 10572889 00602220 -interjection n 2 2 @ + 2 0 07125958 01068184 -interlaken n 1 2 @ #p 1 0 09032843 -interlanguage n 1 1 @ 1 0 06906116 -interlayer n 1 1 @ 1 1 03579699 -interleaf n 1 1 @ 1 0 06256591 -interleukin n 1 1 @ 1 0 14921090 -interlingua n 1 1 @ 1 0 06896304 -interlingual_rendition n 1 2 @ ~ 1 0 06536389 -interlock n 2 2 @ + 2 0 03579791 00140393 -interlocking n 2 2 @ + 2 0 07338114 00140393 -interlocutor n 2 2 @ #m 2 0 10211036 10210911 -interlocutory_injunction n 1 2 @ ; 1 0 06543536 -interloper n 1 3 @ ~ + 1 0 10213652 -interlude n 2 4 @ ~ + ; 2 1 15272685 00520880 -intermarriage n 2 2 @ + 2 1 13965274 13965049 -intermaxillary_suture n 1 2 @ #p 1 0 05544264 -intermediary n 1 2 @ ~ 1 1 09624559 -intermediate n 1 1 @ 1 1 14921272 -intermediate_host n 1 1 @ 1 0 01385749 -intermediate_temporal_artery n 1 1 @ 1 0 05355146 -intermediate_vector_boson n 1 1 @ 1 0 09314128 -intermediate_wheatgrass n 1 1 @ 1 0 12106134 -intermediation n 1 3 @ ~ + 1 0 01240432 -intermediator n 1 3 @ ~ + 1 0 09624559 -interment n 1 2 @ + 1 0 07451687 -intermezzo n 3 2 @ ; 3 0 07040292 07039620 00520880 -intermission n 2 3 @ ~ + 2 1 01063578 15271008 -intermittence n 1 2 @ + 1 0 04770720 -intermittency n 1 2 @ + 1 0 04770720 -intermittent_claudication n 1 1 @ 1 0 14550195 -intermittent_cramp n 1 1 @ 1 0 14310504 -intermittent_tetanus n 1 1 @ 1 0 14310504 -intermixture n 3 3 @ ~ + 3 0 07882497 02681084 00380083 -intern n 1 3 @ + ; 1 0 10211203 -internal-combustion_engine n 1 4 @ ~ #p %p 1 0 03579982 -internal_angle n 1 2 @ ~ 1 0 13890391 -internal_auditor n 1 1 @ 1 0 10211463 -internal_auditory_artery n 1 2 @ #p 1 0 05349445 -internal_auditory_vein n 1 2 @ #p 1 0 05372290 -internal_carotid_artery n 1 1 @ 1 0 05339946 -internal_cerebral_vein n 1 1 @ 1 0 05362405 -internal_combustion n 1 1 @ 1 1 13501261 -internal_control n 1 3 @ ~ ; 1 0 00806075 -internal_drive n 1 1 @ 1 0 03580518 -internal_ear n 1 3 @ #p %p 1 0 05321307 -internal_iliac_artery n 1 1 @ 1 0 05347631 -internal_iliac_vein n 1 1 @ 1 0 05369404 -internal_jugular_vein n 1 1 @ 1 0 05371482 -internal_maxillary_artery n 1 1 @ 1 0 05350900 -internal_medicine n 1 1 @ 1 0 06052300 -internal_organ n 1 2 @ ~ 1 0 05298729 -internal_representation n 1 2 @ ~ 1 0 05926676 -internal_respiration n 1 1 @ 1 0 00830811 -internal_revenue n 1 1 @ 1 1 13262077 -internal_revenue_agent n 1 1 @ 1 0 10693052 -internal_revenue_service n 1 2 @ #p 1 0 08143321 -internal_rhyme n 1 1 @ 1 0 07096995 -internal_secretion n 1 2 @ ~ 1 0 05407119 -internal_spermatic_artery n 1 2 @ #p 1 0 05355527 -internalisation n 1 3 @ ~ + 1 0 05753954 -internality n 1 3 @ ~ = 1 0 04621010 -internalization n 1 3 @ ~ + 1 0 05753954 -internasal_suture n 1 2 @ #p 1 0 05544432 -international n 1 2 @ %m 1 0 08366071 -international_affairs n 1 1 @ 1 0 01107549 -international_ampere n 1 1 @ 1 0 13637841 -international_association_of_lions_clubs n 1 1 @ 1 0 08236027 -international_atomic_energy_agency n 1 1 @ 1 0 08300641 -international_bank_for_reconstruction_and_development n 1 1 @ 1 0 08300783 -international_candle n 1 1 @ 1 0 13641855 -international_civil_aviation_organization n 1 1 @ 1 0 08301005 -international_court_of_justice n 1 2 @ #m 1 0 08299307 -international_date_line n 1 1 @ 1 0 08599792 -international_development_association n 1 1 @ 1 0 08301155 -international_finance_corporation n 1 1 @ 1 0 08301307 -international_flight n 1 2 ! @ 1 0 00301857 -international_grandmaster n 1 1 @ 1 0 10211666 -international_intelligence_agency n 1 2 @ ~ 1 0 08342039 -international_islamic_front_for_jihad_against_jews_and_crusaders n 1 2 @ ; 1 0 08024096 -international_jihad n 1 1 @ 1 0 00996673 -international_labor_organization n 1 1 @ 1 0 08301525 -international_labour_organization n 1 1 @ 1 0 08301525 -international_law n 1 4 ! @ ~ ; 1 1 08454003 -international_law_enforcement_agency n 1 2 @ ~ 1 0 08344551 -international_logistic_support n 1 1 @ 1 0 01216908 -international_maritime_organization n 1 1 @ 1 0 08301709 -international_mile n 1 3 @ #p %p 1 0 13651218 -international_monetary_fund n 1 1 @ 1 0 08301871 -international_morse_code n 1 2 @ %p 1 0 06355459 -international_nautical_mile n 1 1 @ 1 0 13660337 -international_organisation n 1 2 @ ~ 1 0 08294696 -international_organization n 1 2 @ ~ 1 0 08294696 -international_pitch n 1 1 @ 1 0 04985580 -international_relations_and_security_network n 1 2 @ ; 1 0 08344301 -international_scale n 1 1 @ 1 0 13852600 -international_society_for_krishna_consciousness n 1 3 @ #m %m 1 0 08097766 -international_system n 1 1 @ 1 0 13578267 -international_system_of_units n 1 1 @ 1 0 13578267 -international_terrorism n 1 2 @ ; 1 0 00764258 -international_wanted_notice n 1 1 @ 1 0 07276732 -international_waters n 1 3 ! @ #p 1 0 09302804 -internationale n 1 1 @ 1 0 07036768 -internationalisation n 1 2 @ + 1 0 01151605 -internationalism n 2 3 ! @ + 2 0 05963494 05126611 -internationalist n 2 3 @ #m + 2 0 10211962 10211830 -internationality n 1 2 @ + 1 0 05126611 -internationalization n 1 2 @ + 1 0 01151605 -interne n 1 2 @ ; 1 1 10211203 -internee n 1 2 @ + 1 0 10212074 -internet n 1 1 @ 1 0 03580615 -internet_explorer n 1 1 @ 1 0 06571538 -internet_site n 1 2 @ ~ 1 0 06359193 -internist n 1 2 @ + 1 0 10212231 -internment n 3 4 @ ~ + ; 3 0 14000302 01146768 00086297 -internment_camp n 1 2 @ ~ 1 0 04005912 -internode n 1 2 @ #p 1 0 13129826 -internship n 1 2 @ + 1 0 00593837 -internuncio n 1 2 @ ; 1 0 10212338 -interoception n 1 2 @ ~ 1 0 05654052 -interoceptor n 1 1 @ 1 0 05299687 -interocular_lens_implant n 1 2 @ ~ 1 0 03657239 -interoperability n 1 3 @ + ; 1 0 05200816 -interparietal_suture n 1 2 @ #p 1 0 05545047 -interpellation n 2 3 @ + ; 2 0 06653160 01068184 -interpenetration n 2 2 @ + 2 0 00975658 00051712 -interpersonal_chemistry n 1 1 @ 1 0 13840958 -interphalangeal_joint n 1 1 @ 1 0 05580286 -interphone n 1 1 @ 1 0 03580845 -interplanetary_dust n 1 2 @ #p 1 0 09314263 -interplanetary_gas n 1 3 @ #s #p 1 0 09314398 -interplanetary_medium n 1 3 @ #p %p 1 0 09314603 -interplanetary_space n 1 4 @ ~ #p %p 1 1 08500819 -interplay n 1 1 @ 1 1 00039211 -interpol n 1 1 @ 1 0 08344756 -interpolation n 3 3 @ + ; 3 0 06722186 05802730 01068184 -interposition n 2 2 @ + 2 1 01068184 01052215 -interpretation n 4 3 @ ~ + 4 4 05928513 00100543 07170753 05766247 -interpretative_dance n 1 1 @ 1 0 00531886 -interpretative_dancing n 1 1 @ 1 0 00531886 -interpreter n 4 4 @ ~ + ; 4 2 10212501 10212780 10638385 06575932 -interpreting n 1 3 @ ~ + 1 1 05766247 -interpretive_dance n 1 1 @ 1 0 00531886 -interpretive_dancing n 1 1 @ 1 0 00531886 -interpretive_program n 1 2 @ ; 1 0 06575932 -interreflection n 1 1 @ 1 0 11469827 -interregnum n 1 1 @ 1 0 15273522 -interrelatedness n 1 3 @ ~ + 1 0 13844212 -interrelation n 1 3 @ ~ + 1 1 13844212 -interrelationship n 1 3 @ ~ + 1 1 13844212 -interrogation n 4 3 @ ~ + 4 1 07196682 07280599 07193958 07193596 -interrogation_point n 1 1 @ 1 0 06844040 -interrogative n 2 2 @ ~ 2 1 07196682 13802485 -interrogative_mood n 1 1 @ 1 0 13802485 -interrogative_sentence n 1 2 @ ~ 1 0 07196682 -interrogator n 1 2 @ + 1 0 10208287 -interrogatory n 1 2 @ ~ 1 0 07193958 -interrupt n 1 1 @ 1 0 11447532 -interrupted_fern n 1 1 @ 1 0 12953712 -interrupter n 1 2 @ + 1 0 03580990 -interruption n 3 3 @ ~ + 3 2 00383952 07367812 15271008 -intersection n 6 4 @ ~ #p + 6 2 05866653 03581125 13873213 07999068 05764365 00146111 -intersection_point n 1 2 @ ~ 1 0 05866653 -intersex n 1 1 @ 1 0 10172080 -interspersal n 1 2 @ + 1 0 00381326 -interspersion n 1 2 @ + 1 0 00381326 -interstate n 1 1 @ 1 0 03581354 -interstate_commerce_commission n 1 1 @ 1 0 08125993 -interstate_highway n 1 1 @ 1 0 03581354 -interstellar_medium n 1 1 @ 1 0 09314829 -interstellar_space n 1 3 @ ~ #p 1 0 08500989 -interstice n 2 3 @ ~ + 2 0 05230171 03581531 -interstitial_cell-stimulating_hormone n 1 1 @ 1 0 14749272 -interstitial_fluid n 1 1 @ 1 0 05398298 -interstitial_plasma_cell_pneumonia n 1 1 @ 1 0 14149290 -interstitial_pneumonia n 1 1 @ 1 0 14148510 -interstitial_tissue n 1 2 @ ~ 1 0 05268797 -intertrigo n 1 1 @ 1 0 07496291 -interval n 4 2 @ ~ 4 3 15269513 06016276 05089947 06858779 -intervenor n 1 3 @ + ; 1 0 10213034 -intervention n 5 6 ! @ ~ %p + ; 5 1 01240210 06661562 01052215 01023242 00658082 -interventricular_foramen n 1 1 @ 1 0 05545611 -intervertebral_disc n 1 2 @ #p 1 0 05284617 -intervertebral_disk n 1 2 @ #p 1 0 05284617 -intervertebral_vein n 1 1 @ 1 0 05370781 -interview n 2 3 @ ~ + 2 2 07196075 07143624 -interviewee n 1 3 @ ~ + 1 0 10213180 -interviewer n 1 2 @ + 1 1 10213319 -intestacy n 1 1 @ 1 0 13936441 -intestinal_artery n 2 2 @ #p 2 0 05348698 05346714 -intestinal_bypass n 1 1 @ 1 0 00681299 -intestinal_colic n 1 2 @ ~ 1 0 14325732 -intestinal_flora n 1 1 @ 1 0 01328515 -intestinal_flu n 1 2 @ ~ 1 0 14172005 -intestinal_juice n 1 1 @ 1 0 05407772 -intestinal_obstruction n 1 1 @ 1 0 14508149 -intestine n 1 5 @ ~ #p %p + 1 0 05534333 -inti n 1 1 @ 1 0 13680381 -intifada n 1 1 @ 1 0 00963447 -intifadah n 1 1 @ 1 0 00963447 -intima n 1 2 @ + 1 1 05319760 -intimacy n 3 2 @ ~ 3 1 04655442 13931889 07530124 -intimate n 1 2 @ ~ 1 0 09954639 -intimate_apparel n 1 2 @ ~ 1 0 03673450 -intimation n 2 2 @ + 2 0 07163988 05916306 -intimidation n 4 3 @ ~ + 4 1 01222477 07542881 07523760 07254057 -intolerance n 2 4 ! @ ~ + 2 1 04642746 06205154 -intonation n 4 3 @ ~ + 4 1 07084166 01254978 01254685 00544842 -intonation_pattern n 1 1 @ 1 0 07084428 -intoxicant n 2 3 @ ~ + 2 0 07884567 03581634 -intoxication n 3 3 @ ~ + 3 0 14509712 14018567 07528807 -intracapsular_surgery n 1 1 @ 1 0 00678632 -intracellular_fluid n 1 1 @ 1 0 05398462 -intracranial_aneurysm n 1 1 @ 1 0 14107750 -intracranial_cavity n 1 1 @ 1 0 05392906 -intractability n 1 4 ! @ ~ + 1 0 04907269 -intractableness n 1 3 @ ~ + 1 0 04907269 -intradermal_injection n 1 1 @ 1 0 00322962 -intradermal_test n 1 1 @ 1 0 05746708 -intrados n 1 1 @ 1 0 13869243 -intramuscular_injection n 1 1 @ 1 0 00323056 -intranet n 1 1 @ 1 0 03581756 -intransigence n 1 2 @ + 1 1 04863497 -intransigency n 1 2 @ + 1 0 04863497 -intransitive n 1 1 @ 1 0 06331641 -intransitive_verb n 1 1 @ 1 0 06331641 -intransitive_verb_form n 1 1 @ 1 0 06331641 -intransitiveness n 1 2 @ + 1 0 13798301 -intransitivity n 1 3 ! @ + 1 0 13798301 -intraocular_lens n 1 1 @ 1 0 03581897 -intraocular_pressure n 1 1 @ 1 0 11496503 -intrauterine_device n 1 2 @ ~ 1 0 03582096 -intravasation n 1 1 @ 1 0 14294861 -intravenous_anesthetic n 1 2 @ ~ 1 0 03582305 -intravenous_drip n 1 1 @ 1 0 07432835 -intravenous_feeding n 1 1 @ 1 0 01058983 -intravenous_injection n 1 2 @ ~ 1 0 00323152 -intravenous_pyelogram n 1 1 @ 1 0 03582508 -intravenous_pyelography n 1 1 @ 1 0 00906829 -intrenchment n 1 3 @ ~ %p 1 1 03291551 -intrepidity n 1 2 @ + 1 0 04858089 -intricacy n 1 1 @ 1 0 04766852 -intrigue n 2 3 @ ~ + 2 1 05908520 13931356 -intriguer n 1 1 @ 1 0 10007809 -intrinsic_factor n 1 1 @ 1 0 15023720 -intrinsic_fraud n 1 1 @ 1 0 00779035 -intro n 2 2 @ ~ 2 0 07217349 07045245 -introduction n 7 4 @ ~ #p + 7 4 00238022 06396930 07217349 06414849 07162975 00320852 00240184 -introit n 1 1 @ 1 0 07040413 -introitus n 1 1 @ 1 0 05512505 -introject n 1 3 @ + ; 1 1 05924165 -introjection n 2 3 @ + ; 2 0 05754519 05754197 -intromission n 1 3 @ ~ + 1 0 00320852 -intron n 1 2 ! @ 1 0 14831178 -intropin n 1 2 @ ; 1 0 14838217 -introspection n 1 3 @ ~ + 1 0 05786655 -introspectiveness n 1 3 @ = + 1 0 04660981 -introversion n 3 6 ! @ ~ = + ; 3 0 14062332 13501941 04621963 -introvert n 1 4 ! @ + ; 1 0 10213429 -intruder n 1 3 @ ~ + 1 1 10213652 -intrusion n 5 3 @ ~ + 5 2 07429976 00049530 13501405 09314964 00733483 -intrusiveness n 1 3 @ = + 1 0 04837931 -intubation n 1 2 @ + 1 0 00321195 -intuition n 2 3 @ ~ + 2 2 05707495 05919034 -intuitionism n 1 2 @ ; 1 0 05972264 -intuitive_feeling n 1 2 @ ~ 1 0 05707718 -intumescence n 2 3 @ ~ + 2 0 14317720 13501548 -intumescency n 2 3 @ ~ + 2 0 14317720 13501548 -intussusception n 2 3 @ + ; 2 0 13501941 13501738 -inuit n 1 1 @ 1 0 10063635 -inula n 1 3 @ ~ #m 1 0 11984542 -inula_helenium n 1 1 @ 1 0 11984659 -inulin n 1 1 @ 1 0 14795959 -inunction n 1 2 @ + 1 0 01041674 -inundation n 2 3 @ ~ + 2 1 11454591 13775706 -inutility n 1 4 ! @ ~ + 1 0 05150588 -invader n 1 2 @ + 1 1 10214062 -invagination n 2 2 @ + 2 0 14062332 13501941 -invalid n 1 3 @ #m + 1 1 10214230 -invalidation n 1 4 @ ~ + ; 1 0 01240979 -invalidator n 1 2 @ + 1 0 10214390 -invalidism n 1 1 @ 1 0 14062490 -invalidity n 1 3 @ ~ + 1 0 04810510 -invalidness n 1 3 @ ~ + 1 0 04810510 -invaluableness n 1 3 @ ~ + 1 0 05141222 -invar n 1 2 @ ; 1 0 14921414 -invariability n 2 5 ! @ ~ = + 2 0 04769456 04739932 -invariable n 1 2 @ ~ 1 0 05858936 -invariableness n 1 4 ! @ ~ + 1 0 04739932 -invariance n 2 4 @ ~ + ; 2 0 04739932 04738995 -invariant n 1 2 @ ; 1 0 05850432 -invasion n 3 4 @ ~ + ; 3 2 00976531 07429976 07332313 -invasion_of_iwo n 1 3 @ #p ; 1 0 01282022 -invasion_of_privacy n 1 1 @ 1 0 00734303 -invective n 1 1 @ 1 0 06721604 -invention n 3 3 @ ~ + 3 3 05633385 03582658 00940412 -inventiveness n 1 3 @ ~ + 1 0 05633672 -inventor n 1 3 @ ~ + 1 1 10214637 -inventory n 5 4 @ ~ %p ; 5 4 06492664 04321534 13412533 05634059 01011425 -inventory-clearance_sale n 1 1 @ 1 0 01118776 -inventory_accounting n 1 2 @ ~ 1 0 00619738 -inventory_control n 1 1 @ 1 0 00619889 -inventory_item n 1 2 @ #p 1 0 06483061 -inventorying n 1 3 @ ~ + 1 0 01011425 -inverse n 1 2 @ ~ 1 0 13858833 -inverse_cosecant n 1 1 @ 1 0 13789136 -inverse_cosine n 1 1 @ 1 0 13787853 -inverse_cotangent n 1 1 @ 1 0 13788502 -inverse_function n 1 1 @ 1 1 13784537 -inverse_secant n 1 1 @ 1 0 13788820 -inverse_sine n 1 1 @ 1 0 13787551 -inverse_tangent n 1 1 @ 1 0 13788182 -inversion n 9 4 @ ~ + ; 9 1 11461563 14103785 13502205 07425726 07101140 07030174 00857275 00335814 00335653 -invert_soap n 1 2 @ ~ 1 0 14803695 -invert_sugar n 1 1 @ 1 0 14921777 -invertase n 1 1 @ 1 0 14921622 -invertebrate n 1 4 @ ~ %p - 1 0 01905661 -invertebrate_foot n 1 3 @ ~ #p 1 0 02322213 -inverted_comma n 1 2 @ ~ 1 0 06844199 -inverted_hang n 1 1 @ 1 0 00436702 -inverted_pleat n 1 1 @ 1 0 03582840 -inverter n 1 2 @ + 1 0 03582959 -investigating n 1 3 @ ~ + 1 1 00633864 -investigation n 2 3 @ ~ + 2 2 05800611 00633864 -investigator n 3 3 @ ~ + 3 3 10523076 10215623 10009276 -investing n 1 4 @ ~ + - 1 0 01099436 -investiture n 2 2 @ + 2 0 07453638 00198919 -investment n 6 4 @ ~ + - 6 2 01099436 13333237 04647185 01458616 00828462 00198919 -investment_adviser n 1 1 @ 1 0 10215815 -investment_advisor n 1 1 @ 1 0 10215815 -investment_banker n 1 2 @ ~ 1 0 10215953 -investment_company n 1 2 @ ~ 1 0 08070850 -investment_firm n 1 2 @ ~ 1 0 08070850 -investment_funds n 1 3 @ ~ - 1 0 13333237 -investment_letter n 1 1 @ 1 0 13419755 -investment_trust n 1 2 @ ~ 1 0 08070850 -investor n 1 3 @ ~ + 1 1 10216106 -investors_club n 1 1 @ 1 0 08229887 -invidia n 1 1 @ 1 0 00758335 -invigilation n 1 3 @ + ; 1 0 01135795 -invigilator n 1 3 @ + ; 1 0 10216403 -invigoration n 2 4 @ ~ = + 2 0 04631700 01048466 -invigorator n 1 2 @ + 1 0 09402704 -invincibility n 1 2 @ + 1 0 05032028 -invincible_armada n 1 1 @ 1 0 08293088 -invirase n 1 1 @ 1 0 04293608 -invisibility n 1 4 ! @ ~ + 1 0 05017909 -invisible_balance n 1 1 @ 1 0 13410269 -invisibleness n 1 3 @ ~ + 1 0 05017909 -invitation n 2 3 @ ~ + 2 1 07186148 04689048 -invite n 1 2 @ + 1 0 07186661 -invitee n 1 3 @ ~ + 1 0 10150940 -invocation n 4 4 @ ~ #p + 4 1 07190290 07160296 05978159 00097244 -invoice n 1 3 @ ~ + 1 0 06516955 -involucre n 1 1 @ 1 0 13155305 -involuntariness n 1 2 @ ~ 1 0 04645599 -involuntary_muscle n 1 2 @ ~ 1 0 05460473 -involuntary_trust n 1 1 @ 1 0 13361962 -involution n 6 3 @ ~ + 6 0 13502397 06315755 04766852 01239064 00872411 00406365 -involutional_depression n 1 1 @ 1 0 14390839 -involvement n 5 4 ! @ ~ + 5 3 01239064 13793504 05682950 13931889 13924659 -invulnerability n 2 4 ! @ ~ + 2 1 14539029 05033681 -inwardness n 4 5 ! @ ~ = + 4 0 05921123 05787175 05078894 04621010 -io n 2 2 @ ; 2 0 09563425 09315057 -io_moth n 1 2 @ #m 1 0 02304036 -iodic_acid n 1 1 @ 1 0 14922252 -iodide n 1 2 @ ~ 1 1 14922371 -iodin n 1 3 @ ~ #s 1 0 14641397 -iodinated_protein n 1 2 @ ~ 1 0 14734761 -iodination n 1 2 @ + 1 1 13502556 -iodine n 2 4 @ ~ #s + 2 1 14641397 04439305 -iodine-125 n 1 1 @ 1 0 14642005 -iodine-131 n 1 1 @ 1 0 14641797 -iodoamino_acid n 1 2 @ ~ 1 1 14607250 -iodochlorhydroxyquin n 1 1 @ 1 0 03583109 -iodocompound n 1 1 @ 1 1 14922529 -iodoform n 2 1 @ 2 0 14620781 03583252 -iodoprotein n 1 2 @ ~ 1 1 14734761 -iodopsin n 1 3 @ #p %s 1 0 15088669 -iodothyronine n 1 2 @ ~ 1 1 14835125 -iodotyrosine n 1 2 @ ~ 1 1 14835004 -iol n 1 2 @ ~ 1 0 03657239 -ion n 1 3 @ ~ + 1 1 09315159 -ion_beam n 1 1 @ 1 0 11486049 -ion_engine n 1 1 @ 1 0 03583419 -ion_exchange n 1 1 @ 1 1 13502714 -ion_pump n 1 1 @ 1 0 03583809 -ionesco n 1 1 @ 1 0 11072887 -ionia n 1 2 @ #p 1 0 09042924 -ionian n 2 1 @ 2 0 09711009 08160947 -ionian_order n 1 1 @ 1 0 04699157 -ionian_sea n 1 3 @ #p %p 1 0 09315455 -ionic n 1 1 @ 1 0 06977610 -ionic_beam n 1 1 @ 1 0 11486049 -ionic_bond n 1 1 @ 1 0 11437344 -ionic_charge n 1 1 @ 1 0 13590974 -ionic_dialect n 1 1 @ 1 0 06977610 -ionic_medication n 1 1 @ 1 0 00663878 -ionic_order n 1 1 @ 1 0 04699157 -ionisation n 2 2 @ + 2 0 14577469 13502909 -ionization n 2 2 @ + 2 0 14577469 13502909 -ionization_chamber n 1 2 @ ~ 1 0 03583621 -ionization_tube n 1 2 @ ~ 1 0 03583621 -ionizing_radiation n 1 2 @ ~ 1 0 11437577 -ionophoresis n 1 2 @ ~ 1 0 13472518 -ionosphere n 1 3 @ #p %p 1 0 08588916 -ionospheric_wave n 1 1 @ 1 0 11500349 -iontophoresis n 1 1 @ 1 0 00663878 -iontotherapy n 1 1 @ 1 0 00663878 -iop n 1 1 @ 1 0 11496503 -iosif_vissarionovich_dzhugashvili n 1 1 @ 1 0 11312120 -iota n 2 2 @ #m 2 0 13773725 06834992 -iou n 1 1 @ 1 0 13415168 -iowa n 3 3 @ #p %p 3 0 09657748 09086173 06908968 -iowa_crab n 1 2 @ ~ 1 0 12635744 -iowa_crab_apple n 1 2 @ ~ 1 0 12635744 -iowan n 1 1 @ 1 0 09743112 -ioway n 2 1 @ 2 0 09657748 06908968 -ip n 1 4 @ ~ %p - 1 0 06142118 -ipecac n 1 1 @ 1 0 03583967 -iphigenia n 1 2 @ ; 1 0 09595240 -ipidae n 1 3 @ #m %m 1 0 02179429 -ipo n 1 1 @ 1 0 01094575 -ipod n 1 3 @ ~ ; 1 0 03584254 -ipomoea n 1 3 @ #m %m 1 0 12826395 -ipomoea_alba n 1 1 @ 1 0 12827537 -ipomoea_batatas n 1 2 @ %p 1 0 12827684 -ipomoea_coccinea n 1 1 @ 1 0 12828220 -ipomoea_fastigiata n 1 1 @ 1 0 12827907 -ipomoea_imperialis n 1 1 @ 1 0 12828977 -ipomoea_leptophylla n 1 1 @ 1 0 12828379 -ipomoea_nil n 1 1 @ 1 0 12828791 -ipomoea_orizabensis n 1 1 @ 1 0 12828520 -ipomoea_panurata n 1 1 @ 1 0 12827907 -ipomoea_pes-caprae n 1 1 @ 1 0 12828628 -ipomoea_purpurea n 1 1 @ 1 0 12826895 -ipomoea_quamoclit n 1 1 @ 1 0 12827270 -ipomoea_tricolor n 1 1 @ 1 0 12827068 -ipratropium_bromide n 1 1 @ 1 0 03584111 -iproclozide n 1 1 @ 1 0 03584526 -ipse_dixit n 1 1 @ 1 0 06731697 -ipsedixitism n 1 1 @ 1 0 06731697 -ipsus n 1 2 @ ; 1 0 01281427 -ipv n 1 1 @ 1 0 04130715 -iq n 1 2 @ ~ 1 0 13821977 -iq_test n 1 2 @ ~ 1 0 01007053 -ir n 2 2 @ ; 2 0 14642219 08143486 -ira n 3 3 @ %p ; 3 0 08024732 05912012 00758972 -ira_gershwin n 1 1 @ 1 0 10997068 -irak n 1 6 @ #m #p %m %p - 1 0 08913434 -iraki n 1 4 @ ~ #m + 1 0 09714694 -iran n 1 7 @ #m #p %m %p + - 1 1 08910668 -iran-iraq_war n 1 1 @ 1 0 01305310 -irani n 1 3 @ ~ #m 1 0 09714429 -iranian n 2 4 @ ~ #m + 2 0 09714429 06973610 -iranian_capital n 1 2 @ #p 1 0 08911421 -iranian_dinar n 1 2 @ #p 1 0 13696893 -iranian_language n 1 2 @ ~ 1 0 06973610 -iranian_monetary_unit n 1 2 @ ~ 1 0 13696652 -iranian_rial n 1 2 @ %p 1 0 13696777 -iraq n 1 6 @ #m #p %m %p - 1 1 08913434 -iraqi n 1 4 @ ~ #m + 1 0 09714694 -iraqi_dinar n 1 2 @ %p 1 0 13669342 -iraqi_intelligence_service n 1 2 @ ; 1 0 08344917 -iraqi_kurdistan n 1 2 @ #p 1 0 09039260 -iraqi_monetary_unit n 1 2 @ ~ 1 0 13669237 -iraqi_mukhabarat n 1 2 @ ; 1 0 08344917 -iraqi_national_congress n 1 1 @ 1 0 08403907 -irascibility n 1 2 @ + 1 0 07552549 -ire n 2 2 @ ~ 2 0 07516354 00758972 -ireland n 2 8 @ ~ #m #p %m %p + - 2 2 08888676 08859173 -irelander n 1 4 @ ~ #m + 1 0 09714952 -irena n 1 3 @ #m %m 1 0 01593857 -irenaeus n 1 2 @ ; 1 0 11073061 -irene_joliot-curie n 1 1 @ 1 0 11089318 -irenidae n 1 3 @ #m %m 1 0 01593705 -iresine n 1 3 @ #m %m 1 0 11826416 -iresine_herbstii n 1 1 @ 1 0 11826715 -iresine_reticulata n 1 1 @ 1 0 11826715 -iridaceae n 1 5 @ ~ #m %m + 1 0 12411084 -iridaceous_plant n 1 3 @ ~ #m 1 0 12411461 -iridectomy n 1 1 @ 1 0 00679566 -iridescence n 1 2 @ + 1 0 04953678 -iridium n 1 1 @ 1 0 14642219 -iridocyclitis n 1 1 @ 1 0 14347774 -iridokeratitis n 1 1 @ 1 0 14347886 -iridoncus n 1 1 @ 1 0 14317943 -iridoprocne n 1 2 @ #m 1 0 01595330 -iridoprocne_bicolor n 1 1 @ 1 0 01595450 -iridosmine n 1 1 @ 1 0 14688978 -iridotomy n 1 1 @ 1 0 00679724 -iris n 3 5 @ ~ #m #p %p 3 0 12411922 05319936 03584649 -iris_cristata n 1 1 @ 1 0 12413165 -iris_diaphragm n 1 1 @ 1 0 03584649 -iris_family n 1 4 @ ~ #m %m 1 0 12411084 -iris_filifolia n 1 1 @ 1 0 12413301 -iris_florentina n 1 2 @ %m 1 0 12413419 -iris_foetidissima n 1 1 @ 1 0 12413642 -iris_germanica n 1 1 @ 1 0 12413880 -iris_germanica_florentina n 1 2 @ %m 1 0 12413419 -iris_kaempferi n 1 1 @ 1 0 12414035 -iris_kochii n 1 1 @ 1 0 12414159 -iris_murdoch n 1 1 @ 1 0 11196764 -iris_pallida n 1 1 @ 1 0 12414329 -iris_persica n 1 1 @ 1 0 12414449 -iris_pseudacorus n 1 1 @ 1 0 12414602 -iris_scanning n 1 1 @ 1 0 06645458 -iris_tingitana n 1 1 @ 1 0 12414818 -iris_verna n 1 1 @ 1 0 12414932 -iris_versicolor n 1 1 @ 1 0 12415089 -iris_virginica n 1 1 @ 1 0 12415272 -iris_xiphioides n 1 1 @ 1 0 12415401 -iris_xiphium n 1 1 @ 1 0 12415595 -irish n 3 5 @ ~ #s + ; 3 1 09732778 07907161 06960778 -irish_bull n 1 2 @ ; 1 0 06611376 -irish_burgoo n 1 1 @ 1 0 07590068 -irish_capital n 1 3 @ #p %m 1 0 08889191 -irish_coffee n 1 2 @ %s 1 0 07919441 -irish_gaelic n 1 3 @ ~ ; 1 0 06960778 -irish_gorse n 1 2 @ #m 1 0 12574866 -irish_monetary_unit n 1 2 @ ~ 1 0 13694552 -irish_moss n 1 2 @ #m 1 0 01414633 -irish_national_liberation_army n 1 2 @ ; 1 0 08024408 -irish_people n 1 1 @ 1 0 09732778 -irish_person n 1 3 @ ~ #m 1 0 09714952 -irish_potato n 1 4 @ ~ #p %p 1 0 07710616 -irish_pound n 1 2 @ %p 1 0 13694657 -irish_punt n 1 2 @ %p 1 0 13694657 -irish_republic n 1 5 @ #m #p %p - 1 0 08888676 -irish_republican_army n 1 3 @ %p ; 1 0 08024732 -irish_sea n 1 2 @ #p 1 0 09315624 -irish_setter n 1 1 @ 1 0 02100877 -irish_soda_bread n 1 1 @ 1 0 07685399 -irish_stew n 1 1 @ 1 0 07591049 -irish_strawberry n 1 1 @ 1 0 12230794 -irish_terrier n 1 1 @ 1 0 02093991 -irish_water_spaniel n 1 1 @ 1 0 02102973 -irish_whiskey n 1 3 @ ~ #s 1 0 07907161 -irish_whisky n 1 3 @ ~ #s 1 0 07907161 -irish_wolfhound n 1 1 @ 1 0 02090721 -irishman n 1 3 @ ~ #m 1 1 09715165 -irishwoman n 1 2 @ #m 1 0 09715303 -iritis n 1 1 @ 1 0 14347993 -iron n 4 4 @ ~ #s + 4 2 14642417 03585073 03585337 03584829 -iron-gray n 1 2 @ + 1 0 04962548 -iron-grey n 1 2 @ + 1 0 04962548 -iron-storage_disease n 1 2 @ ~ 1 0 14206929 -iron-tree n 1 2 @ #m 1 0 12317296 -iron_age n 2 3 @ #p ; 2 0 15231765 15231634 -iron_blue n 2 1 @ 2 0 14923060 14922960 -iron_boot n 1 1 @ 1 0 02873363 -iron_cage n 1 1 @ 1 1 13999114 -iron_carbide n 1 2 @ #s 1 0 14805145 -iron_chancellor n 1 1 @ 1 0 10851599 -iron_collar n 1 1 @ 1 0 03420935 -iron_curtain n 1 1 @ 1 1 05691689 -iron_deficiency_anaemia n 1 2 @ ~ 1 0 14165909 -iron_deficiency_anemia n 1 2 @ ~ 1 0 14165909 -iron_disulfide n 1 1 @ 1 0 14923337 -iron_duke n 1 1 @ 1 0 11380923 -iron_filing n 1 1 @ 1 0 09315762 -iron_fist n 1 1 @ 1 0 05197388 -iron_foundry n 1 1 @ 1 0 03585682 -iron_heel n 1 1 @ 1 0 02873363 -iron_horse n 1 1 @ 1 0 03585778 -iron_lady n 1 1 @ 1 0 11337779 -iron_lung n 1 1 @ 1 0 03586219 -iron_maiden n 1 1 @ 1 0 03586448 -iron_man n 1 2 @ ; 1 0 10216560 -iron_manganese_tungsten n 1 2 @ %s 1 0 15103226 -iron_mold n 1 1 @ 1 0 04695693 -iron_mould n 1 1 @ 1 0 04695693 -iron_oak n 2 1 @ 2 0 12278371 12270946 -iron_ore n 1 3 @ ~ %s 1 0 14923458 -iron_overload n 1 2 @ ~ 1 0 14206929 -iron_perchloride n 1 1 @ 1 0 14923733 -iron_putty n 1 1 @ 1 0 14703999 -iron_pyrite n 1 2 @ %s 1 0 14692682 -iron_trap n 1 1 @ 1 1 05837651 -iron_tree n 1 2 @ #m 1 0 12317296 -ironclad n 1 1 @ 1 0 03585551 -ironing n 2 3 @ ~ + 2 0 03585875 00581090 -ironing_board n 1 1 @ 1 0 03586090 -ironist n 1 3 @ ~ + 1 0 10552742 -ironman n 1 2 @ ; 1 0 10216560 -ironmonger n 2 1 @ 2 0 10216690 03493911 -ironmonger's_shop n 1 1 @ 1 0 03493911 -ironmongery n 1 2 @ ; 1 0 03586631 -irons n 1 2 @ ; 1 1 03585438 -ironside n 1 1 @ 1 0 10216839 -ironsides n 1 1 @ 1 0 10916105 -ironware n 1 1 @ 1 0 03493792 -ironweed n 1 2 @ #m 1 0 12031927 -ironwood n 4 2 @ #m 4 0 12370549 12317487 12317296 12288005 -ironwood_tree n 3 2 @ #m 3 0 12370549 12317296 12288005 -ironwork n 1 1 @ 1 0 03586760 -ironworker n 1 2 @ ~ 1 1 10216928 -ironworks n 1 2 @ ; 1 0 03586911 -irony n 3 6 @ ~ %p = + - 3 2 06777164 04715075 07106246 -iroquoian n 1 2 @ ~ 1 0 06916803 -iroquoian_language n 1 2 @ ~ 1 0 06916803 -iroquois n 2 2 @ ~ 2 0 09657887 06916803 -iroquois_league n 1 1 @ 1 0 08305277 -irradiation n 6 4 @ ~ + ; 6 0 14577753 11428023 07332550 05939809 05756698 00705580 -irrational n 1 2 @ ~ 1 0 13730584 -irrational_hostility n 1 1 @ 1 0 05950475 -irrational_impulse n 1 2 @ ~ 1 0 09181114 -irrational_motive n 1 2 @ ~ 1 0 09180259 -irrational_number n 1 2 @ ~ 1 0 13730584 -irrationality n 1 2 @ + 1 0 14397563 -irrawaddy n 1 1 @ 1 0 09315870 -irrawaddy_river n 1 1 @ 1 0 09315870 -irreality n 1 2 @ ~ 1 0 13960117 -irredenta n 1 2 @ + 1 0 08589140 -irredentism n 1 2 @ + 1 0 05964098 -irredentist n 1 2 @ + 1 0 10217038 -irregular n 2 3 @ ~ #m 2 0 10150556 03587050 -irregularity n 4 4 ! @ ~ + 4 3 00737188 04770211 05066012 14371161 -irrelevance n 1 4 ! @ ~ + 1 0 13795834 -irrelevancy n 1 3 @ ~ + 1 0 13795834 -irreligion n 1 2 @ + 1 0 04828612 -irreligionist n 1 2 @ + 1 0 10217208 -irreligiousness n 1 2 @ + 1 0 04828612 -irreplaceableness n 1 2 @ + 1 0 04741195 -irrepressibility n 1 2 @ + 1 0 04633959 -irreproducibility n 1 2 @ + 1 1 04806316 -irresistibility n 1 2 @ + 1 0 05192240 -irresistible_impulse n 1 1 @ 1 0 09181330 -irresistibleness n 1 2 @ + 1 0 05192240 -irresoluteness n 1 4 ! @ ~ + 1 0 04866465 -irresolution n 2 2 @ ~ 2 1 05699172 04866465 -irresponsibility n 1 4 ! @ ~ + 1 1 04670746 -irresponsibleness n 1 4 ! @ ~ + 1 0 04670746 -irreverence n 2 4 ! @ ~ + 2 1 06207733 00746232 -irreversibility n 1 3 ! @ + 1 0 04739768 -irreversible_process n 1 2 ! @ 1 0 13503226 -irridenta n 1 1 @ 1 0 08589140 -irridentism n 1 2 @ + 1 0 05964098 -irridentist n 1 2 @ + 1 0 10217038 -irrigation n 2 4 @ ~ + ; 2 1 01057631 00695448 -irrigation_ditch n 1 1 @ 1 0 03587205 -irritability n 3 3 @ ~ + 3 1 07552729 05653710 04642258 -irritable_bowel_syndrome n 1 1 @ 1 0 14306245 -irritant n 1 2 @ + 1 0 05831784 -irritation n 7 4 @ ~ + ; 7 2 14406573 07518468 14531392 14036356 07495973 01221790 00418394 -irruption n 3 3 @ ~ + 3 1 00049636 13539143 07435273 -irs n 1 2 @ #p 1 0 08143321 -irtish n 1 2 @ #p 1 0 09316066 -irtish_river n 1 2 @ #p 1 0 09316066 -irtysh n 1 2 @ #p 1 0 09316066 -irtysh_river n 1 2 @ #p 1 0 09316066 -irula n 1 1 @ 1 0 06979492 -irving n 2 1 @ 2 0 11073453 11073324 -irving_berlin n 1 1 @ 1 0 10847454 -irving_howe n 1 1 @ 1 0 11062963 -irving_langmuir n 1 1 @ 1 0 11116875 -irvingia n 1 3 @ #m %m 1 0 12717524 -irvingia_gabonensis n 1 3 @ #m %p 1 0 12717644 -isaac n 1 2 @ ; 1 0 11073586 -isaac_asimov n 1 1 @ 1 0 10826204 -isaac_bashevis_singer n 1 1 @ 1 0 11302615 -isaac_hull n 1 1 @ 1 0 11065718 -isaac_m._singer n 1 1 @ 1 0 11302772 -isaac_mayer_wise n 1 1 @ 1 0 11393124 -isaac_merrit_singer n 1 1 @ 1 0 11302772 -isaac_newton n 1 1 @ 1 0 11205375 -isaac_stern n 1 2 @ ; 1 0 11316828 -isaac_watts n 1 1 @ 1 0 11377043 -isabella n 1 1 @ 1 0 11073795 -isabella_i n 1 1 @ 1 0 11073795 -isabella_stewart_gardner n 1 1 @ 1 0 10990509 -isabella_the_catholic n 1 1 @ 1 0 11073795 -isadora_duncan n 1 1 @ 1 0 10945415 -isaiah n 2 3 @ #p ; 2 0 11074140 06438126 -isak_dinesen n 1 1 @ 1 0 10935745 -isamu_noguchi n 1 1 @ 1 0 11209201 -isarithm n 1 2 @ ~ 1 0 08589801 -isatis n 1 3 @ #m %m 1 0 11889847 -isatis_tinctoria n 1 2 @ #m 1 0 11890150 -ischaemia n 1 3 @ ~ + 1 0 14166118 -ischaemic_stroke n 1 1 @ 1 0 14166358 -ischemia n 1 3 @ ~ + 1 0 14166118 -ischemic_anoxia n 1 1 @ 1 0 14043708 -ischemic_hypoxia n 1 1 @ 1 0 14041763 -ischemic_stroke n 1 1 @ 1 0 14166358 -ischia n 1 2 @ #p 1 0 08806142 -ischial_bone n 1 2 @ #p 1 0 05275466 -ischigualastia n 1 2 @ #m 1 0 01721269 -ischium n 1 2 @ #p 1 0 05275466 -isere n 1 2 @ #p 1 0 09316312 -isere_river n 1 2 @ #p 1 0 09316312 -iseult n 1 2 @ ; 1 0 10551265 -isfahan n 1 2 @ #p 1 0 08912012 -isherwood n 1 1 @ 1 0 11074284 -ishmael n 2 3 @ ~ ; 2 0 11074573 10386312 -ishtar n 1 2 @ ; 1 0 09516498 -isi n 1 2 @ ; 1 0 08343534 -isidor_feinstein_stone n 1 1 @ 1 0 11319413 -isidore_auguste_marie_francois_comte n 1 1 @ 1 0 10906234 -isinglass n 1 2 @ ~ 1 0 14681555 -isis n 1 1 @ 1 0 09512391 -iskcon n 1 3 @ #m %m 1 0 08097766 -islam n 2 5 @ ~ %m + - 2 0 08095647 06234825 -islam_nation n 1 2 @ ; 1 0 08224684 -islamabad n 1 2 @ #p 1 0 08977035 -islamic_army_of_aden n 1 2 @ ; 1 0 08025112 -islamic_army_of_aden-abyan n 1 2 @ ; 1 0 08025112 -islamic_calendar n 1 2 @ %p 1 0 15178841 -islamic_calendar_month n 1 3 @ ~ #p 1 0 15216966 -islamic_community n 1 2 @ ; 1 0 08027518 -islamic_great_eastern_raiders-front n 1 2 @ ; 1 0 08025497 -islamic_group n 2 2 @ ; 2 0 08027518 08012028 -islamic_group_of_uzbekistan n 1 2 @ ; 1 0 08025835 -islamic_jihad n 2 2 @ ; 2 0 08023374 08012765 -islamic_jihad_for_the_liberation_of_palestine n 1 2 @ ; 1 0 08023374 -islamic_law n 1 3 @ ~ - 1 0 08455829 -islamic_party_of_turkestan n 1 2 @ ; 1 0 08025835 -islamic_republic_of_iran n 1 6 @ #m #p %m %p - 1 0 08910668 -islamic_republic_of_mauritania n 1 5 @ #m #p %m %p 1 0 08966820 -islamic_republic_of_pakistan n 1 5 @ #p %m %p - 1 0 08975902 -islamic_resistance_movement n 1 3 @ %p ; 1 0 08022259 -islamic_state_of_afghanistan n 1 5 @ #p %m %p - 1 0 08703454 -islamic_ummah n 1 2 @ ; 1 0 08224684 -islamic_unity n 1 2 @ ; 1 0 08012384 -islamism n 2 4 @ ~ + - 2 0 08096027 06234825 -islamist n 2 3 @ #m + 2 0 10217335 09682803 -islamophobia n 1 1 @ 1 0 06203603 -island n 2 4 @ ~ #m + 2 2 09316454 03587318 -island-dweller n 1 1 @ 1 0 10217436 -island_dispenser n 1 1 @ 1 0 03425413 -island_of_guernsey n 1 1 @ 1 0 08887344 -island_of_jersey n 1 1 @ 1 0 08887238 -islander n 1 2 @ + 1 0 10217436 -islands_of_langerhans n 1 2 @ #p 1 0 05485314 -islay n 2 2 @ #p 2 0 12646397 08893868 -isle n 1 3 @ ~ + 1 1 09319456 -isle_of_man n 1 2 @ #p 1 0 08887716 -isle_of_skye n 1 2 @ #p 1 0 08893717 -isle_of_wight n 1 2 @ #p 1 0 09479238 -isle_royal_national_park n 1 2 @ #p 1 0 08606206 -isles_of_langerhans n 1 2 @ #p 1 0 05485314 -isles_of_scilly n 1 2 @ #p 1 0 08887463 -islet n 1 3 @ ~ + 1 0 09319456 -islets_of_langerhans n 1 2 @ #p 1 0 05485314 -ism n 1 2 @ ~ 1 1 05943300 -ismaili n 1 1 @ 1 0 10217552 -ismailian n 1 1 @ 1 0 10217552 -ismailism n 1 1 @ 1 0 06236492 -isn n 1 2 @ ; 1 0 08344301 -isoagglutination n 1 1 @ 1 0 13503345 -isoagglutinin n 1 1 @ 1 0 15028818 -isoagglutinogen n 1 1 @ 1 0 15029147 -isoantibody n 1 1 @ 1 0 15029482 -isobar n 1 3 @ #p ; 1 0 08589351 -isobutyl_nitrite n 1 1 @ 1 0 02929749 -isobutylene n 1 2 @ #s 1 0 14787270 -isobutylphenyl_propionic_acid n 1 2 @ %s 1 0 03556281 -isocarboxazid n 1 1 @ 1 0 03587442 -isochrone n 1 1 @ 1 0 08589532 -isoclinal n 1 1 @ 1 0 08589670 -isoclinic_line n 1 1 @ 1 0 08589670 -isocrates n 1 1 @ 1 0 11074769 -isocyanate n 1 1 @ 1 1 14923872 -isocyanic_acid n 1 1 @ 1 0 14923962 -isoetaceae n 1 3 @ #m %m 1 0 13225955 -isoetales n 1 3 @ #m %m 1 0 13225729 -isoetes n 1 3 @ #m %m 1 0 13226135 -isoflurane n 1 1 @ 1 0 03587623 -isogamete n 1 1 @ 1 0 05457343 -isogamy n 1 2 @ ; 1 0 13503513 -isogon n 1 3 @ ~ + 1 0 13866515 -isogonal_line n 1 1 @ 1 0 08490840 -isogone n 1 1 @ 1 0 08490840 -isogonic_line n 1 1 @ 1 0 08490840 -isogram n 1 2 @ ~ 1 0 08589801 -isohel n 1 1 @ 1 0 08590055 -isolation n 5 4 @ ~ + ; 5 3 14414715 07502576 01202029 13503673 01239717 -isolationism n 1 2 @ + 1 0 06662193 -isolationist n 1 2 @ + 1 0 10217684 -isolde n 1 2 @ ; 1 0 10551265 -isole_egadi n 1 2 @ #p 1 0 08784905 -isoleucine n 1 1 @ 1 0 14924067 -isomer n 1 2 @ + 1 1 14924188 -isomerase n 1 1 @ 1 0 14924359 -isomerisation n 1 2 @ + 1 0 07416107 -isomerism n 1 1 @ 1 0 13939734 -isomerization n 1 2 @ + 1 0 07416107 -isometric n 1 2 @ ~ 1 0 06801740 -isometric_exercise n 1 1 @ 1 0 00627849 -isometric_line n 1 2 @ ~ 1 0 06801740 -isometrics n 1 1 @ 1 0 00627849 -isometropia n 1 1 @ 1 0 14555688 -isometry n 4 3 @ + ; 4 0 15278960 13786187 05131537 04748654 -isomorphism n 1 2 @ ; 1 0 04744645 -isomorphy n 1 3 @ + ; 1 0 04744645 -isoniazid n 1 1 @ 1 0 03587715 -isopleth n 1 2 @ ~ 1 1 08589801 -isopod n 1 4 @ ~ #m %p 1 0 01990800 -isopoda n 1 3 @ #m %m 1 0 01990627 -isopropanol n 1 1 @ 1 0 14709907 -isopropyl_alcohol n 1 1 @ 1 0 14709907 -isoproterenol n 1 1 @ 1 0 03587874 -isoptera n 1 3 @ #m %m 1 0 02222718 -isoptin n 1 2 @ ; 1 0 04527808 -isopyrum n 1 3 @ #m %m 1 0 11735822 -isopyrum_biternatum n 1 2 @ #m 1 0 11735977 -isordil n 1 2 @ ; 1 0 03588046 -isoroku_yamamoto n 1 1 @ 1 0 11401797 -isosceles_triangle n 1 1 @ 1 0 13880199 -isosmotic_solution n 1 2 @ ~ 1 0 14849367 -isosorbide n 1 1 @ 1 0 03588046 -isospondyli n 1 3 @ #m %m 1 0 02528534 -isostasy n 1 2 @ ; 1 0 14003432 -isotherm n 1 4 @ #p + ; 1 0 08590172 -isothiocyanate n 1 2 @ #s 1 0 15033367 -isotonic_exercise n 1 1 @ 1 0 00628131 -isotonic_solution n 1 2 @ ~ 1 0 14849367 -isotope n 1 3 @ ~ + 1 0 14619658 -isotropy n 1 4 ! @ + ; 1 0 04917439 -israel n 2 5 @ #p %m %p - 2 0 08792548 08792295 -israel_baline n 1 1 @ 1 0 10847454 -israel_strassberg n 1 1 @ 1 0 11321051 -israel_zangwill n 1 1 @ 1 0 11404871 -israeli n 1 4 @ ~ #m + 1 1 09715833 -israeli_defense_force n 1 3 @ %p ; 1 0 08345613 -israeli_monetary_unit n 1 2 @ ~ 1 0 13706183 -israelite n 2 3 @ ~ #m 2 0 09715685 09681351 -israelites n 1 2 @ ; 1 0 08483935 -issachar n 1 2 @ ; 1 0 11074870 -issuance n 1 2 @ ~ 1 1 01060234 -issue n 11 5 @ ~ #m + ; 11 4 05814650 06596978 05814291 01060234 13367593 13260190 11410625 10373998 07319909 03303965 01103614 -issuer n 1 2 @ + 1 0 08055150 -issuing n 1 3 @ ~ + 1 0 01060234 -issus n 1 2 @ ; 1 0 01281638 -istanbul n 1 3 @ #p %p 1 0 09041785 -isthmian_games n 1 1 @ 1 0 00516381 -isthmus n 2 3 @ ~ + 2 0 09319604 05267211 -isthmus_of_corinth n 1 1 @ 1 0 09319902 -isthmus_of_darien n 1 2 @ %p 1 0 09320239 -isthmus_of_kra n 1 1 @ 1 0 09320111 -isthmus_of_panama n 1 2 @ %p 1 0 09320239 -isthmus_of_suez n 1 1 @ 1 0 09320485 -isthmus_of_tehuantepec n 1 1 @ 1 0 09320611 -istiophoridae n 1 3 @ #m %m 1 0 02630052 -istiophorus n 1 3 @ #m %m 1 0 02630468 -istiophorus_albicans n 1 2 @ #m 1 0 02630615 -isuprel n 1 2 @ ; 1 0 03587874 -isuridae n 1 2 @ %m 1 0 01483370 -isurus n 1 3 @ #m %m 1 0 01483980 -isurus_glaucus n 1 1 @ 1 0 01484562 -isurus_oxyrhincus n 1 1 @ 1 0 01484285 -isurus_paucus n 1 1 @ 1 0 01484447 -it n 1 1 @ 1 0 06134510 -itaconic_acid n 1 1 @ 1 0 14924473 -italia n 1 6 @ #m #p %m %p - 1 0 08801678 -italian n 2 6 @ ~ #m + ; - 2 2 09716047 06964247 -italian_bee n 1 1 @ 1 0 02209111 -italian_bread n 1 1 @ 1 0 07687626 -italian_capital n 1 5 @ #p %m %p - 1 0 08806897 -italian_clover n 1 1 @ 1 0 11753143 -italian_cypress n 1 1 @ 1 0 11632619 -italian_dressing n 1 1 @ 1 0 07834160 -italian_greyhound n 1 1 @ 1 0 02091032 -italian_honeysuckle n 1 2 @ #m 1 0 12674895 -italian_lira n 1 2 @ %p 1 0 13686376 -italian_millet n 1 3 @ ~ #m 1 0 12135270 -italian_monetary_unit n 1 2 @ ~ 1 0 13686268 -italian_parsley n 1 1 @ 1 0 12942572 -italian_peninsula n 1 3 @ #p %p 1 0 08801364 -italian_region n 1 2 @ ~ 1 0 08803382 -italian_renaissance n 1 2 @ #p 1 0 15260130 -italian_republic n 1 6 @ #m #p %m %p - 1 0 08801678 -italian_rice n 1 1 @ 1 0 07875436 -italian_rye n 1 1 @ 1 0 12125001 -italian_ryegrass n 1 1 @ 1 0 12125001 -italian_sandwich n 1 1 @ 1 0 07697825 -italian_sonnet n 1 1 @ 1 0 06382716 -italian_vegetable_marrow n 1 2 @ %p 1 0 12159942 -italian_vermouth n 1 2 @ #s 1 0 07899292 -italian_woodbine n 1 2 @ #m 1 0 12674895 -italic n 3 3 @ ~ + 3 1 06350918 06961853 06827344 -italic_language n 1 2 @ ~ 1 0 06961853 -italo_calvino n 1 1 @ 1 0 10880841 -italy n 1 7 @ #m #p %m %p + - 1 1 08801678 -itch n 3 3 @ ~ + 3 0 14180327 07490451 05723563 -itch_mite n 1 2 @ #m 1 0 01781698 -itchiness n 1 3 @ ~ + 1 0 05723563 -itching n 1 3 @ ~ + 1 0 05723563 -itchy_feet n 1 1 @ 1 0 09183140 -item n 5 4 @ ~ #p + 5 4 06482401 13809920 03588414 05817845 06795746 -itemisation n 1 3 @ ~ + 1 0 01011166 -itemization n 1 3 @ ~ + 1 0 01011166 -iteration n 3 3 @ + ; 3 0 13504173 13503908 01019129 -iterative n 1 1 @ 1 0 13805594 -iterative_aspect n 1 1 @ 1 0 13805594 -ithaca n 2 2 @ #p 2 0 09121814 08784746 -ithaki n 1 2 @ #p 1 0 08784746 -ithiel_town n 1 1 @ 1 0 11346710 -ithunn n 1 2 @ ; 1 0 09581338 -itinerant n 1 3 @ ~ + 1 0 10217831 -itinerary n 3 2 @ ~ 3 0 08616311 06423378 05905706 -itineration n 1 1 @ 1 0 00311381 -itraconazole n 1 1 @ 1 0 03588668 -iud n 1 2 @ ~ 1 0 03582096 -iv n 2 1 @ 2 0 13744304 01058983 -iva n 1 3 @ ~ #m 1 0 11985053 -iva_xanthifolia n 1 1 @ 1 0 11985321 -ivan_iii n 1 1 @ 1 0 11075021 -ivan_iii_vasilievich n 1 1 @ 1 0 11075021 -ivan_iv n 1 1 @ 1 0 11075219 -ivan_iv_vasilievich n 1 1 @ 1 0 11075219 -ivan_lendl n 1 1 @ 1 0 11126081 -ivan_pavlov n 1 1 @ 1 0 11227206 -ivan_petrovich_pavlov n 1 1 @ 1 0 11227206 -ivan_sergeevich_turgenev n 1 1 @ 1 0 11352035 -ivan_the_great n 1 1 @ 1 0 11075021 -ivan_the_terrible n 1 1 @ 1 0 11075219 -ivan_turgenev n 1 1 @ 1 0 11352035 -ivanov n 1 1 @ 1 0 11075352 -ives n 2 1 @ 2 0 11075670 11075452 -ivor_armstrong_richards n 1 1 @ 1 0 11260945 -ivory n 2 2 @ #s 2 2 14757547 04961331 -ivory-billed_woodpecker n 1 2 @ #m 1 0 01840412 -ivory-nut_palm n 1 3 @ #m %p 1 0 12594324 -ivory_black n 1 1 @ 1 1 14918883 -ivory_coast n 1 3 @ #p %p 1 0 08736517 -ivory_coast_franc n 1 2 @ %p 1 0 13677998 -ivory_gull n 1 2 @ #m 1 0 02042472 -ivory_nut n 1 2 @ #p 1 0 12594533 -ivory_palm n 1 3 @ #m %p 1 0 12594324 -ivory_plant n 1 3 @ #m %p 1 0 12594324 -ivory_tower n 1 1 @ 1 1 05674927 -ivory_tree n 1 2 @ #m 1 0 11772879 -ivorybill n 1 2 @ #m 1 0 01840412 -ivp n 2 1 @ 2 0 03582508 00906829 -ivry n 1 2 @ ; 1 0 01281813 -ivry_la_bataille n 1 2 @ ; 1 0 01281813 -ivy n 1 2 @ #m 1 1 11798978 -ivy-leaved_geranium n 1 2 @ #m 1 0 12687957 -ivy_arum n 1 2 @ #m 1 0 11788727 -ivy_family n 1 3 @ #m %m 1 0 11796744 -ivy_geranium n 1 2 @ #m 1 0 12687957 -ivy_league n 1 2 @ %m 1 0 08232706 -ivy_leaguer n 1 1 @ 1 0 10218043 -iw n 1 1 @ 1 0 00996180 -iwo n 1 3 @ #p ; 1 0 01282022 -iwo_jima n 2 3 @ #p ; 2 0 08927068 01282022 -iww n 1 1 @ 1 0 08473173 -ix n 1 1 @ 1 0 13745270 -ixia n 1 3 @ #m %m 1 0 12417686 -ixobrychus n 1 3 @ #m %m 1 0 02012063 -ixobrychus_exilis n 1 2 @ #m 1 0 02012185 -ixodes n 1 3 @ #m %m 1 0 01777032 -ixodes_dammini n 1 2 @ #m 1 0 01777304 -ixodes_dentatus n 1 2 @ #m 1 0 01778621 -ixodes_neotomae n 1 2 @ #m 1 0 01777467 -ixodes_pacificus n 1 2 @ #m 1 0 01777649 -ixodes_persulcatus n 1 2 @ #m 1 0 01778487 -ixodes_ricinus n 1 2 @ #m 1 0 01778217 -ixodes_scapularis n 1 2 @ #m 1 0 01777909 -ixodes_spinipalpis n 1 2 @ #m 1 0 01778801 -ixodid n 1 3 @ ~ #m 1 0 01776705 -ixodidae n 1 3 @ #m %m 1 0 01776546 -iyar n 1 3 @ #p %p 1 0 15215994 -iyyar n 1 3 @ #p %p 1 0 15215994 -iz_al-din_al-qassam_battalions n 1 3 @ #p ; 1 0 08040257 -izaak_walton n 1 1 @ 1 0 11373099 -izanagi n 1 1 @ 1 0 09535001 -izanami n 1 1 @ 1 0 09535130 -izar n 1 1 @ 1 0 03588216 -izmir n 1 2 @ #p 1 0 09042322 -izzard n 1 2 @ #m 1 0 06833890 -j n 2 3 @ #m %p 2 0 13726074 06832140 -j._b._rhine n 1 1 @ 1 0 11258924 -j._b._s._haldane n 1 1 @ 1 0 11023070 -j._c._maxwell n 1 1 @ 1 0 11166504 -j._craig_ventner n 1 1 @ 1 0 11362573 -j._d._salinger n 1 1 @ 1 0 11278980 -j._e._johnston n 1 1 @ 1 0 11088771 -j._edgar_hoover n 1 1 @ 1 0 11058914 -j._j._hill n 1 1 @ 1 0 11050057 -j._m._barrie n 1 1 @ 1 0 10835022 -j._m._synge n 1 1 @ 1 0 11327744 -j._p._morgan n 1 1 @ 1 0 11190446 -j._r._firth n 1 1 @ 1 0 10971264 -j.r.r._tolkien n 1 1 @ 1 0 11345181 -j_particle n 1 1 @ 1 0 09322349 -jab n 3 2 @ + 3 2 00334935 00135952 00135311 -jabalpur n 1 2 @ #p 1 0 08903487 -jabat_al-tahrir_al-filistiniyyah n 1 2 @ ; 1 0 08037503 -jabber n 1 2 @ + 1 0 06610992 -jabberer n 1 2 @ + 1 0 10034785 -jabbering n 1 2 @ + 1 0 06610992 -jabberwocky n 1 1 @ 1 0 06609296 -jabbing n 1 2 @ + 1 1 00334935 -jabiru n 3 2 @ #m 3 0 02004492 02004131 02003839 -jabiru_mycteria n 1 2 @ #m 1 0 02003839 -jaboncillo n 1 2 @ #m 1 0 12741792 -jabot n 1 1 @ 1 0 03588841 -jaboticaba n 2 4 @ #m #p %p 2 0 12333053 07765862 -jaboticaba_tree n 1 3 @ #m %p 1 0 12333053 -jacamar n 1 2 @ #m 1 0 01843065 -jacaranda n 1 2 @ #m 1 0 12523475 -jacinth n 1 1 @ 1 0 14909584 -jack n 12 5 @ ~ #m #p + 12 0 13773047 10294602 10241300 07754684 03589672 03589513 03589313 03589220 03589093 03588951 02576575 02389943 -jack-a-lantern n 1 2 @ #m 1 0 13005329 -jack-by-the-hedge n 1 2 @ #m 1 0 11870418 -jack-in-the-box n 1 1 @ 1 0 03590588 -jack-in-the-pulpit n 2 3 @ #m %p 2 0 11784497 11780148 -jack-o'-lantern n 2 1 @ 2 0 11459369 03590841 -jack-o-lantern n 1 2 @ #m 1 0 13005329 -jack-o-lantern_fungus n 1 2 @ #m 1 0 13005329 -jack-tar n 1 2 @ ~ 1 0 10294602 -jack_bean n 1 2 @ #m 1 0 12511239 -jack_benny n 1 1 @ 1 0 10845424 -jack_crevalle n 1 1 @ 1 0 02576906 -jack_dempsey n 1 1 @ 1 0 10930591 -jack_frost n 1 1 @ 1 0 09491222 -jack_kennedy n 1 1 @ 1 0 11101000 -jack_kerouac n 1 1 @ 1 0 11102493 -jack_ladder n 1 2 @ ; 1 0 03591116 -jack_lemmon n 1 1 @ 1 0 11125840 -jack_london n 1 1 @ 1 0 11137748 -jack_mackerel n 1 1 @ 1 0 02580679 -jack_nicklaus n 1 1 @ 1 0 11206356 -jack_oak n 2 1 @ 2 0 12274863 12271451 -jack_of_all_trades n 2 1 @ 2 1 10218164 10159289 -jack_pine n 1 1 @ 1 0 11615607 -jack_plane n 1 1 @ 1 0 03590932 -jack_roosevelt_robinson n 1 1 @ 1 0 11265731 -jack_salmon n 1 2 @ ~ 1 0 02557749 -jack_the_ripper n 1 1 @ 1 0 11077369 -jack_william_nicklaus n 1 1 @ 1 0 11206356 -jackal n 1 2 @ #m 1 0 02115096 -jackanapes n 1 1 @ 1 0 10776987 -jackass n 2 1 @ 2 1 10157744 02389943 -jackass_bat n 1 2 @ #m 1 0 02148512 -jackass_penguin n 1 2 @ #m 1 0 02057035 -jackboot n 1 1 @ 1 0 03516844 -jackdaw n 1 2 @ #m 1 1 01579578 -jacket n 5 5 @ ~ #p + ; 5 3 03589791 03590306 03139089 07711471 03590475 -jacket_crown n 1 2 @ ; 1 0 03139089 -jacket_potato n 1 1 @ 1 0 07711371 -jackfruit n 2 4 @ #m #p %p 2 0 12400720 07754684 -jackfruit_tree n 1 3 @ #m %p 1 0 12400720 -jackhammer n 1 1 @ 1 0 02689434 -jackie_robinson n 1 1 @ 1 0 11265731 -jacking_off n 1 2 @ ; 1 0 00856193 -jackknife n 2 2 @ + 2 0 03038480 00444340 -jackknife-fish n 1 2 @ #m 1 0 02595056 -jackknife_clam n 1 2 @ #m 1 0 01959029 -jacklight n 1 1 @ 1 0 03590732 -jackpot n 2 2 @ ; 2 0 13343774 13268683 -jackrabbit n 1 3 @ ~ #m 1 0 02327028 -jacks n 1 1 @ 1 0 00485262 -jackscrew n 1 1 @ 1 0 03591028 -jacksmelt n 1 2 @ #m 1 0 02602760 -jacksnipe n 2 2 @ #m 2 0 02032769 02028727 -jackson n 11 3 @ #p + 11 0 11077195 11076965 11076820 11076566 11076359 11076079 11075823 09159859 09140781 09105003 09101127 -jackson_pollock n 1 1 @ 1 0 11241106 -jacksonia n 1 2 @ #m 1 0 12536455 -jacksonian n 1 1 @ 1 0 10218292 -jacksonian_epilepsy n 1 1 @ 1 0 14087758 -jacksonville n 1 2 @ #p 1 0 09073258 -jackstones n 2 1 @ 2 0 03589313 00485262 -jackstraw n 1 1 @ 1 0 03591465 -jackstraws n 1 1 @ 1 0 00485450 -jacob n 2 2 @ ; 2 0 11077484 10218390 -jacob's_ladder n 2 2 @ ; 2 0 12809626 03591116 -jacob's_rod n 1 2 @ #m 1 0 12442548 -jacob's_staff n 1 2 @ #m 1 0 12381931 -jacob_epstein n 1 1 @ 1 0 10959664 -jacob_harmensen n 1 1 @ 1 0 10822962 -jacobean n 1 1 @ 1 0 10218692 -jacobean_lily n 1 2 @ #m 1 0 12422559 -jacobi n 1 1 @ 1 0 11077649 -jacobin n 1 2 @ + 1 0 10218802 -jacobinism n 1 1 @ 1 0 06220041 -jacobite n 1 1 @ 1 0 10218989 -jacobs n 3 1 @ 3 0 11078059 11077927 11077762 -jacobus_arminius n 1 1 @ 1 0 10822962 -jaconet n 1 1 @ 1 0 03591313 -jacopo_robusti n 1 1 @ 1 0 11343208 -jacquard n 3 1 @ 3 0 11078203 03591798 03591592 -jacquard_loom n 1 1 @ 1 0 03591592 -jacqueline_cochran n 1 1 @ 1 0 10903722 -jacquemier's_sign n 1 1 @ 1 0 14266521 -jacques_alexandre_cesar_charles n 1 1 @ 1 0 10892218 -jacques_anatole_francois_thibault n 1 1 @ 1 0 10977368 -jacques_bernoulli n 1 1 @ 1 0 10848356 -jacques_cartier n 1 1 @ 1 0 10885176 -jacques_charles n 1 1 @ 1 0 10892218 -jacques_costeau n 1 1 @ 1 0 10913503 -jacques_derrida n 1 1 @ 1 0 10931452 -jacques_etienne_montgolfier n 1 1 @ 1 0 11188123 -jacques_francois_antoine_ibert n 1 1 @ 1 0 11070531 -jacques_francois_fromental_elie_halevy n 1 1 @ 1 0 11023883 -jacques_germain_soufflot n 1 1 @ 1 0 11308877 -jacques_lipchitz n 1 1 @ 1 0 11133778 -jacques_loeb n 1 1 @ 1 0 11137175 -jacques_louis_david n 1 1 @ 1 0 10924072 -jacques_lucien_monod n 1 1 @ 1 0 11185816 -jacques_marquette n 1 1 @ 1 0 11158156 -jacques_monod n 1 1 @ 1 0 11185816 -jacques_offenbach n 1 1 @ 1 0 11212534 -jacques_tati n 1 1 @ 1 0 11332572 -jacques_tatischeff n 1 1 @ 1 0 11332572 -jacques_yves_costeau n 1 1 @ 1 0 10913503 -jacquinia n 1 3 @ #m %m 1 0 12099803 -jacquinia_armillaris n 1 2 @ #m 1 0 12099972 -jacquinia_keyensis n 1 2 @ #m 1 0 12100187 -jactation n 1 2 @ ; 1 0 04625515 -jactitation n 3 4 @ ~ + ; 3 0 07229530 06757479 04625515 -jaculus n 1 3 @ #m %m 1 0 02352175 -jaculus_jaculus n 1 2 @ #m 1 0 02352290 -jade n 4 2 @ + 4 1 14924602 09772930 04968749 02382204 -jade_green n 1 1 @ 1 0 04968749 -jade_vine n 1 2 @ #m 1 0 12571781 -jadeite n 1 1 @ 1 0 14678762 -jadestone n 1 1 @ 1 0 14924602 -jaeger n 1 3 @ ~ #m 1 0 02044178 -jafar n 1 2 @ ; 1 0 11078404 -jafar_umar_thalib n 1 2 @ ; 1 0 11078404 -jaffa n 1 2 @ #p 1 0 08798195 -jaffa_orange n 1 1 @ 1 0 07749095 -jaffar n 1 2 @ ; 1 0 11078404 -jaffar_umar_thalib n 1 2 @ ; 1 0 11078404 -jafnea_semitosta n 1 1 @ 1 0 13031474 -jag n 4 3 @ #p + 4 0 09320826 03592055 03591901 00749491 -jagannath n 1 1 @ 1 0 09530515 -jagannatha n 1 1 @ 1 0 09530515 -jagatai n 1 1 @ 1 0 06928047 -jagganath n 1 1 @ 1 0 09530515 -jaggary n 1 2 @ #s 1 0 15062955 -jaggedness n 1 2 @ + 1 0 04772691 -jagger n 1 1 @ 1 0 11078650 -jaggery n 1 2 @ #s 1 0 15062955 -jaggery_palm n 1 1 @ 1 0 12587132 -jagghery n 1 2 @ #s 1 0 15062955 -jaghatai n 1 1 @ 1 0 06928047 -jagua n 1 3 @ #m %p 1 0 12667582 -jaguar n 1 2 @ #m 1 0 02128925 -jaguarondi n 1 2 @ #m 1 0 02125689 -jaguarundi n 1 2 @ #m 1 0 02125689 -jaguarundi_cat n 1 2 @ #m 1 0 02125689 -jahvey n 1 1 @ 1 0 09538318 -jahweh n 1 1 @ 1 0 09538318 -jai_alai n 1 1 @ 1 0 00480366 -jail n 1 3 @ ~ + 1 1 03592245 -jail_bird n 1 1 @ 1 0 10219121 -jail_cell n 1 3 @ ~ #p 1 0 02991302 -jail_delivery n 1 1 @ 1 0 00095873 -jailbird n 1 1 @ 1 0 10219121 -jailbreak n 1 1 @ 1 0 00059989 -jailer n 1 2 @ + 1 0 10149867 -jailhouse n 1 2 @ ~ 1 0 03592245 -jailor n 1 2 @ + 1 0 10149867 -jainism n 2 4 @ %m + - 2 0 08098192 06239655 -jainist n 1 3 @ #m + 1 0 09685085 -jaish-e-muhammad n 1 2 @ ; 1 0 08026197 -jaish-i-mohammed n 1 2 @ ; 1 0 08026197 -jak n 1 2 @ #p 1 0 07754684 -jakarta n 1 2 @ #p 1 0 08909719 -jakes n 1 1 @ 1 0 03860404 -jakob-creutzfeldt_disease n 1 1 @ 1 0 14100494 -jakob_behmen n 1 1 @ 1 0 10854397 -jakob_bernoulli n 1 1 @ 1 0 10848356 -jakob_boehm n 1 1 @ 1 0 10854397 -jakob_boehme n 1 1 @ 1 0 10854397 -jakob_bohme n 1 1 @ 1 0 10854397 -jakob_grimm n 1 1 @ 1 0 11016563 -jakob_hermandszoon n 1 1 @ 1 0 10822962 -jakob_liebmann_beer n 1 1 @ 1 0 11177695 -jakob_ludwig_felix_mendelssohn-bartholdy n 1 1 @ 1 0 11173917 -jakob_ludwig_karl_grimm n 1 1 @ 1 0 11016563 -jakobson n 1 1 @ 1 0 11078774 -jalalabad n 1 2 @ #p 1 0 08704116 -jalapeno n 2 5 @ ~ #m %s %p 2 0 12900987 07721678 -jalapeno_pepper n 1 2 @ ~ 1 0 07721678 -jalopy n 1 1 @ 1 0 02924554 -jalousie n 2 2 @ %p 2 0 03692842 03592669 -jam n 4 3 @ ~ + 4 1 07642933 14409489 08183398 01253379 -jam_session n 1 1 @ 1 1 00102374 -jamaat_ul-fuqra n 1 2 @ ; 1 0 08026539 -jamaica n 2 7 @ #m #p %m %p + - 2 0 08753933 08753729 -jamaica_apple n 1 2 @ #p 1 0 07761461 -jamaica_bayberry n 1 2 @ #m 1 0 12330891 -jamaica_caper_tree n 1 1 @ 1 0 11865429 -jamaica_dogwood n 1 2 @ #m 1 0 12559518 -jamaica_honeysuckle n 1 2 @ %p 1 0 12384375 -jamaica_quassia n 2 4 @ #m #s %s 2 0 12718685 12718483 -jamaica_rum n 1 1 @ 1 0 07905386 -jamaica_shorts n 1 2 @ ; 1 0 02831595 -jamaica_sorrel n 1 1 @ 1 0 12179632 -jamaican n 1 3 @ #m + 1 1 09718092 -jamaican_capital n 1 2 @ #p 1 0 08754238 -jamaican_cherry n 1 2 @ #m 1 0 12194147 -jamaican_dollar n 1 1 @ 1 0 13673554 -jamais_vu n 1 1 @ 1 0 05684839 -jamb n 1 3 @ ~ #p 1 0 03592773 -jambalaya n 1 1 @ 1 0 07869611 -jambeau n 1 2 @ #p 1 0 03457451 -jamberry n 2 2 @ %p 2 0 12911673 12911440 -jambon n 1 2 @ ~ 1 0 07669891 -jamboree n 1 1 @ 1 0 00518669 -jambos n 1 2 @ #m 1 0 12332718 -jambosa n 1 3 @ #m %p 1 0 12332218 -james n 10 4 @ #m #p ; 10 0 11080351 11080174 11079802 11079544 11079392 11079252 11078982 09321180 09320985 06446711 -james_a._garfield n 1 1 @ 1 0 10990733 -james_abbott_mcneill_whistler n 1 1 @ 1 0 11383425 -james_abraham_garfield n 1 1 @ 1 0 10990733 -james_agee n 1 1 @ 1 0 10809576 -james_albert_michener n 1 1 @ 1 0 11178631 -james_alfred_van_allen n 1 1 @ 1 0 11358374 -james_arthur_baldwin n 1 1 @ 1 0 10832251 -james_augustine_aloysius_joyce n 1 1 @ 1 0 11093116 -james_augustus_henry_murray n 1 1 @ 1 0 11197099 -james_augustus_murray n 1 1 @ 1 0 11197099 -james_baldwin n 1 1 @ 1 0 10832251 -james_barrie n 1 1 @ 1 0 10835022 -james_bay n 1 2 @ #p 1 0 09321338 -james_bernoulli n 1 1 @ 1 0 10848356 -james_bond n 1 1 @ 1 0 09590377 -james_boswell n 1 1 @ 1 0 10858872 -james_bowie n 1 1 @ 1 0 10859857 -james_branch_cabell n 1 1 @ 1 0 10877456 -james_buchanan n 1 1 @ 1 0 10869931 -james_buchanan_brady n 1 1 @ 1 0 10861329 -james_butler_hickock n 1 1 @ 1 0 11049443 -james_byron_dean n 1 1 @ 1 0 10926066 -james_cagney n 1 1 @ 1 0 10878844 -james_clark_ross n 1 1 @ 1 0 11271094 -james_clerk_maxwell n 1 1 @ 1 0 11166504 -james_cleveland_owens n 1 1 @ 1 0 11219293 -james_cook n 1 1 @ 1 0 10908313 -james_crichton n 1 1 @ 1 0 10915025 -james_dean n 1 1 @ 1 0 10926066 -james_dewey_watson n 1 1 @ 1 0 11376201 -james_douglas_morrison n 1 1 @ 1 0 11192533 -james_earl_carter n 1 1 @ 1 0 10884831 -james_earl_carter_jr. n 1 1 @ 1 0 10884831 -james_edmund_scripps n 1 1 @ 1 0 11290107 -james_edward_meade n 1 1 @ 1 0 11170604 -james_fenimore_cooper n 1 1 @ 1 0 10909127 -james_francis_thorpe n 1 1 @ 1 0 11341479 -james_franck n 1 1 @ 1 0 10978422 -james_garfield n 1 1 @ 1 0 10990733 -james_george_frazer n 1 1 @ 1 0 10979694 -james_grover_thurber n 1 1 @ 1 0 11341760 -james_hargreaves n 1 1 @ 1 0 11029005 -james_harold_doolittle n 1 1 @ 1 0 10940053 -james_harvey_robinson n 1 1 @ 1 0 11265914 -james_henry_leigh_hunt n 1 1 @ 1 0 11066772 -james_hogg n 1 1 @ 1 0 11055807 -james_howard_meredith n 1 1 @ 1 0 11176005 -james_hutton n 1 1 @ 1 0 11069261 -james_i n 1 2 @ #m 1 0 11079802 -james_ii n 1 2 @ #m 1 0 11080174 -james_iv n 1 2 @ #m 1 0 11080351 -james_ives n 1 1 @ 1 0 11075452 -james_jerome_hill n 1 1 @ 1 0 11050057 -james_john_corbett n 1 1 @ 1 0 10910421 -james_joseph_tunney n 1 1 @ 1 0 11351832 -james_joyce n 1 1 @ 1 0 11093116 -james_k._polk n 1 1 @ 1 0 11240733 -james_knox_polk n 1 1 @ 1 0 11240733 -james_langston_hughes n 1 1 @ 1 0 11065101 -james_leonard_farmer n 1 1 @ 1 0 10966665 -james_madison n 1 1 @ 1 0 11148486 -james_maitland_stewart n 1 1 @ 1 0 11318171 -james_marshall_hendrix n 1 1 @ 1 0 11040024 -james_mason n 1 1 @ 1 0 11163041 -james_matthew_barrie n 1 1 @ 1 0 10835022 -james_mckeen_cattell n 1 1 @ 1 0 10891428 -james_meredith n 1 1 @ 1 0 11176005 -james_merritt_ives n 1 1 @ 1 0 11075452 -james_michener n 1 1 @ 1 0 11178631 -james_mill n 1 1 @ 1 0 11179502 -james_monroe n 1 1 @ 1 0 11186042 -james_murray n 1 1 @ 1 0 11197099 -james_naismith n 1 1 @ 1 0 11199234 -james_neville_mason n 1 1 @ 1 0 11163041 -james_parkinson n 1 1 @ 1 0 11223294 -james_polk n 1 1 @ 1 0 11240733 -james_prescott_joule n 1 1 @ 1 0 11092740 -james_riddle_hoffa n 1 1 @ 1 0 11054173 -james_river n 2 2 @ #p 2 0 09321180 09320985 -james_scott_connors n 1 1 @ 1 0 10907501 -james_thomas_farrell n 1 1 @ 1 0 10967311 -james_thomas_harris n 1 1 @ 1 0 11030679 -james_thurber n 1 1 @ 1 0 11341760 -james_tobin n 1 1 @ 1 0 11344235 -james_usher n 1 1 @ 1 0 11357879 -james_ussher n 1 1 @ 1 0 11357879 -james_watson n 1 1 @ 1 0 11376201 -james_watt n 1 1 @ 1 0 11376742 -james_whitcomb_riley n 1 1 @ 1 0 11262468 -james_william_fulbright n 1 1 @ 1 0 10985160 -james_wilson n 1 1 @ 1 0 11391587 -james_wyatt n 1 1 @ 1 0 11399620 -jamesonia n 1 2 @ #m 1 0 13211179 -jamestown n 1 2 @ #p 1 0 09150448 -jamestown_weed n 1 1 @ 1 0 12903503 -jamison n 1 1 @ 1 0 11080601 -jamjar n 1 1 @ 1 0 03593122 -jammer n 1 1 @ 1 0 03592931 -jammies n 1 2 @ ~ 1 0 03877472 -jamming n 1 3 @ ~ + 1 0 01253379 -jammu_and_kashmir n 1 4 @ #p %p - 1 0 08975617 -jampan n 1 1 @ 1 0 03593034 -jampot n 1 1 @ 1 0 03593122 -jan n 1 3 @ #p %p 1 1 15210045 -jan_amos_komensky n 1 1 @ 1 0 10905568 -jan_christian_smuts n 1 1 @ 1 0 11306619 -jan_evangelista_purkinje n 1 1 @ 1 0 11248777 -jan_hendrix_oort n 1 1 @ 1 0 11215541 -jan_hus n 1 1 @ 1 0 11067885 -jan_steen n 1 1 @ 1 0 11314219 -jan_swammerdam n 1 1 @ 1 0 11326154 -jan_tinbergen n 1 1 @ 1 0 11342905 -jan_van_der_meer n 1 1 @ 1 0 11363269 -jan_van_eyck n 1 1 @ 1 0 10964052 -jan_vermeer n 1 1 @ 1 0 11363269 -jane_austen n 1 1 @ 1 0 10829293 -jane_doe n 1 2 @ ; 1 0 10219240 -jane_fonda n 1 1 @ 1 0 10974136 -jane_goodall n 1 1 @ 1 0 11007181 -jane_jacobs n 1 1 @ 1 0 11077927 -jane_seymour n 1 1 @ 1 0 11294680 -jangle n 1 2 @ + 1 0 07385998 -janis_joplin n 1 1 @ 1 0 11091545 -janissary n 2 1 @ 2 1 10219453 10219380 -janitor n 1 1 @ 1 1 10219577 -jansen n 1 1 @ 1 0 11080745 -jansenism n 1 2 @ + 1 0 06188989 -jansenist n 1 2 @ + 1 1 10219680 -january n 1 3 @ #p %p 1 1 15210045 -january_1 n 3 3 @ #p ; 3 0 15193271 15192890 15182189 -january_19 n 1 1 @ 1 0 15182569 -january_20 n 2 2 @ #p 2 0 15185721 15159265 -january_6 n 1 2 @ #p 1 0 15194506 -janus n 1 2 @ ; 1 0 09563619 -jap n 1 2 @ ; 1 1 09718652 -jap_clover n 1 2 @ #m 1 0 12543455 -japan n 4 6 @ #p %m %p + - 4 2 08920381 08921850 03593362 03593222 -japan_allspice n 1 2 @ #m 1 0 11701698 -japan_bittersweet n 1 2 @ #m 1 0 12748534 -japan_cedar n 1 2 @ #m 1 0 11636204 -japan_clover n 1 2 @ #m 1 0 12543455 -japan_current n 1 1 @ 1 0 11489686 -japan_tallow n 1 1 @ 1 0 14924786 -japan_trench n 1 1 @ 1 0 09321527 -japan_wax n 1 1 @ 1 0 14924786 -japanese n 2 6 @ ~ #m + ; - 2 2 09718217 06929279 -japanese_allspice n 1 2 @ #m 1 0 11701698 -japanese_andromeda n 1 2 @ #m 1 0 12243459 -japanese_angelica_tree n 1 2 @ #m 1 0 11798496 -japanese_apricot n 1 1 @ 1 0 12640839 -japanese_archipelago n 1 3 @ #p %p 1 0 08920381 -japanese_banana n 1 1 @ 1 0 12352844 -japanese_barberry n 1 1 @ 1 0 11698245 -japanese_barnyard_millet n 1 2 @ #m 1 0 12117912 -japanese_beech n 1 2 @ #m 1 0 12262185 -japanese_beetle n 1 2 @ #m 1 0 02173373 -japanese_bittersweet n 1 2 @ #m 1 0 12748534 -japanese_black_pine n 1 1 @ 1 0 11618290 -japanese_brome n 1 1 @ 1 0 12111744 -japanese_capital n 1 2 @ #p 1 0 08923348 -japanese_carpet_grass n 1 1 @ 1 0 12146488 -japanese_cedar n 1 2 @ #m 1 0 11636204 -japanese_cherry n 1 1 @ 1 1 12649317 -japanese_chess n 1 1 @ 1 0 12111744 -japanese_chestnut n 1 2 @ #m 1 0 12263588 -japanese_clover n 1 2 @ #m 1 0 12543455 -japanese_crab n 1 1 @ 1 0 07788340 -japanese_deer n 1 2 @ #m 1 0 02431976 -japanese_deity n 1 2 @ ~ 1 0 09534428 -japanese_flowering_cherry n 2 1 @ 2 0 12649539 12649317 -japanese_honeysuckle n 1 2 @ #m 1 0 12675876 -japanese_hop n 1 1 @ 1 0 12398526 -japanese_iris n 1 1 @ 1 0 12414035 -japanese_islands n 1 3 @ #p %p 1 0 08920381 -japanese_ivy n 1 2 @ #m 1 0 13148208 -japanese_lacquer_tree n 1 2 @ #m 1 0 12767648 -japanese_lawn_grass n 1 1 @ 1 0 12146654 -japanese_leaf n 1 2 @ #m 1 0 11781658 -japanese_leek n 1 1 @ 1 0 12433952 -japanese_lilac n 1 1 @ 1 0 12311413 -japanese_lime n 1 1 @ 1 0 12204032 -japanese_linden n 1 1 @ 1 0 12204032 -japanese_maple n 2 1 @ 2 0 12755876 12755727 -japanese_medlar n 1 3 @ #m %p 1 0 12629666 -japanese_millet n 1 2 @ #m 1 0 12117912 -japanese_monetary_unit n 1 2 @ ~ 1 0 13709591 -japanese_morning_glory n 1 1 @ 1 0 12828791 -japanese_oak n 2 2 @ #m 2 0 12275317 12265600 -japanese_oyster n 1 2 @ #m 1 0 01961234 -japanese_pagoda_tree n 1 2 @ #m 1 0 12570394 -japanese_persimmon n 1 3 @ #m %p 1 0 12771390 -japanese_pink n 1 1 @ 1 0 11808932 -japanese_plum n 3 4 @ #m #p %p 3 0 12648693 12629666 07763792 -japanese_poinsettia n 1 2 @ #m 1 0 12920521 -japanese_privet n 1 1 @ 1 0 12308447 -japanese_quince n 1 1 @ 1 0 12624721 -japanese_radish n 1 1 @ 1 0 11895092 -japanese_red_army n 1 2 @ ; 1 0 08026904 -japanese_red_pine n 1 1 @ 1 0 11618079 -japanese_rose n 1 1 @ 1 0 12622072 -japanese_snowbell n 1 1 @ 1 0 12777778 -japanese_spaniel n 1 1 @ 1 0 02085782 -japanese_spurge n 1 1 @ 1 0 12747371 -japanese_stranglehold n 1 1 @ 1 0 00814274 -japanese_sumac n 1 2 @ #m 1 0 12767648 -japanese_table_pine n 1 1 @ 1 0 11618079 -japanese_tree_lilac n 1 1 @ 1 0 12311224 -japanese_umbrella_pine n 1 2 @ #m 1 0 11660300 -japanese_varnish_tree n 2 2 @ #m 2 0 12767648 12198286 -japanese_wistaria n 1 1 @ 1 0 12580654 -japanese_yew n 1 2 @ #m 1 0 11662371 -jape n 1 3 @ ~ %p 1 0 06778102 -japery n 1 2 @ ~ 1 0 00513401 -japheth n 1 2 @ ; 1 0 10219778 -japonica n 2 1 @ 2 0 12929600 12624568 -jar n 3 4 @ ~ %p + 3 1 03593526 13767822 07339098 -jarful n 1 1 @ 1 0 13767822 -jargon n 3 3 @ ~ - 3 1 07157273 14924915 07071017 -jargoon n 1 1 @ 1 0 14924915 -jaroslav_hasek n 1 1 @ 1 0 11033870 -jarrell n 1 1 @ 1 0 11080884 -jarvik_artificial_heart n 1 1 @ 1 0 03593862 -jarvik_heart n 1 1 @ 1 0 03593862 -jasmine n 1 3 @ ~ #m 1 0 12306717 -jasmine_tobacco n 1 1 @ 1 0 12907671 -jasminum n 1 3 @ #m %m 1 0 12306519 -jasminum_mesnyi n 1 1 @ 1 0 12306938 -jasminum_nudiflorum n 1 1 @ 1 0 12307076 -jasminum_officinale n 1 1 @ 1 0 12307240 -jasminum_sambac n 1 1 @ 1 0 12307455 -jason n 1 2 @ ; 1 0 09592384 -jasper n 1 1 @ 1 0 14925033 -jasper_johns n 1 1 @ 1 0 11087931 -jaspers n 1 1 @ 1 0 11080987 -jassid n 1 1 @ 1 0 02259136 -jassidae n 1 3 @ #m %m 1 0 02258910 -jat n 1 1 @ 1 0 10219879 -jati n 1 3 @ #m ; 1 0 08306371 -jatropha n 1 3 @ #m %m 1 0 12925394 -jatropha_curcus n 1 2 @ #m 1 0 12925583 -jatropha_stimulosus n 1 2 @ #m 1 0 12925179 -jatropha_urens n 1 2 @ #m 1 0 12925179 -jaun_gris n 1 1 @ 1 0 11017020 -jaundice n 2 4 @ ~ %p + 2 0 14319684 04643397 -jaundice_of_the_newborn n 1 1 @ 1 0 14320016 -jaunt n 1 3 @ ~ + 1 0 00311809 -jauntiness n 2 2 @ + 2 0 04814025 04633797 -jaunting_car n 1 1 @ 1 0 03594010 -jaunty_car n 1 1 @ 1 0 03594010 -java n 3 7 @ ~ #p %m %s %p + 3 2 08908248 07929519 06901053 -java_finch n 1 2 @ #m 1 0 01543632 -java_man n 1 1 @ 1 0 02473720 -java_olives n 1 1 @ 1 0 12195734 -java_pepper n 1 3 @ #m %p 1 0 13150178 -java_sparrow n 1 2 @ #m 1 0 01543632 -javan n 1 3 @ #m + 1 0 10220080 -javanese n 2 3 @ #m + 2 0 10220080 06939431 -javanthropus n 1 1 @ 1 0 02474282 -javel_water n 1 1 @ 1 0 14921974 -javelin n 2 1 @ 2 0 07470420 03594148 -javelina n 1 1 @ 1 0 02397744 -javelle_water n 1 1 @ 1 0 14921974 -jaw n 3 5 @ ~ #p %p + 3 1 05546040 05603160 03594277 -jawaharlal_nehru n 1 1 @ 1 0 11202833 -jawan n 1 2 @ ; 1 0 10220228 -jawbone n 1 3 @ ~ %p 1 0 05275905 -jawbreaker n 2 1 @ 2 0 07599161 06305385 -jawfish n 1 2 @ #m 1 0 02611561 -jawless_fish n 1 3 @ ~ #m 1 0 01474283 -jawless_vertebrate n 1 3 @ ~ #m 1 0 01474283 -jaws_of_life n 1 2 @ ; 1 0 03594523 -jay n 2 3 @ ~ #m 2 0 11081111 01580077 -jay_cooke n 1 1 @ 1 0 10908534 -jay_gould n 1 1 @ 1 0 11009273 -jaybird n 1 2 @ #m 1 0 01580870 -jayshullah n 1 2 @ ; 1 0 08027314 -jaywalker n 1 2 @ + 1 0 10220360 -jazz n 3 5 @ ~ + ; - 3 0 07136711 07062697 07060976 -jazz_age n 1 1 @ 1 0 15255439 -jazz_band n 1 1 @ 1 0 08250302 -jazz_festival n 1 1 @ 1 1 00518039 -jazz_group n 1 1 @ 1 1 08250302 -jazz_musician n 1 2 @ ~ 1 1 10220486 -jazzman n 1 2 @ ~ 1 0 10220486 -jdam n 1 1 @ 1 0 03601442 -je_ne_sais_quoi n 1 1 @ 1 0 03595179 -jealousy n 2 1 @ 2 1 07550079 05706076 -jean n 2 3 @ ~ ; 2 0 03594734 03175189 -jean-baptiste_poquelin n 1 1 @ 1 0 11184694 -jean-claude_duvalier n 1 1 @ 1 0 10946750 -jean-frederic_joliot n 1 1 @ 1 0 11088969 -jean-frederic_joliot-curie n 1 1 @ 1 0 11088969 -jean-jacques_rousseau n 1 1 @ 1 0 11272689 -jean-louis_lebris_de_kerouac n 1 1 @ 1 0 11102493 -jean-paul_sartre n 1 1 @ 1 0 11282286 -jean-philippe_rameau n 1 1 @ 1 0 11252915 -jean_anouilh n 1 1 @ 1 0 10818715 -jean_antoine_watteau n 1 1 @ 1 0 11376939 -jean_arp n 1 1 @ 1 0 10824146 -jean_auguste_dominique_ingres n 1 1 @ 1 0 11071838 -jean_baptiste_camille_corot n 1 1 @ 1 0 10911948 -jean_baptiste_de_lamarck n 1 1 @ 1 0 11114791 -jean_baptiste_donatien_de_vimeur n 1 1 @ 1 0 11266703 -jean_baptiste_joseph_fourier n 1 1 @ 1 0 10976468 -jean_baptiste_lully n 1 1 @ 1 0 11144860 -jean_baptiste_racine n 1 1 @ 1 0 11251788 -jean_bernard_leon_foucault n 1 1 @ 1 0 10976004 -jean_bernoulli n 1 1 @ 1 0 10848500 -jean_caulvin n 1 1 @ 1 0 10880398 -jean_cauvin n 1 1 @ 1 0 10880398 -jean_chauvin n 1 1 @ 1 0 10880398 -jean_cocteau n 1 1 @ 1 0 10904107 -jean_de_la_fontaine n 1 1 @ 1 0 11114637 -jean_edouard_vuillard n 1 1 @ 1 0 11369551 -jean_francois_champollion n 1 1 @ 1 0 10890211 -jean_francois_millet n 1 1 @ 1 0 11180357 -jean_genet n 1 1 @ 1 0 10993936 -jean_giraudoux n 1 1 @ 1 0 11001211 -jean_harlow n 1 1 @ 1 0 11029132 -jean_honore_fragonard n 1 1 @ 1 0 10977159 -jean_laffite n 1 1 @ 1 0 11114423 -jean_lafitte n 1 1 @ 1 0 11114423 -jean_louis_charles_garnier n 1 1 @ 1 0 10991303 -jean_louis_rodolphe_agassiz n 1 1 @ 1 0 10809317 -jean_luc_godard n 1 1 @ 1 0 11002684 -jean_martin_charcot n 1 1 @ 1 0 10891830 -jean_monnet n 1 1 @ 1 0 11185680 -jean_nicholas_arthur_rimbaud n 1 1 @ 1 0 11262765 -jean_paul_marat n 1 1 @ 1 0 11155577 -jean_piaget n 1 1 @ 1 0 11234292 -jean_racine n 1 1 @ 1 0 11251788 -jean_sibelius n 1 1 @ 1 0 11299367 -jeanne_antoinette_poisson n 1 1 @ 1 0 11241655 -jeanne_d'arc n 1 1 @ 1 0 11081353 -jeannette_rankin n 1 1 @ 1 0 11253802 -jebel_musa n 1 2 @ #p 1 0 09321694 -jed'dah n 1 2 @ #p 1 0 08994834 -jeddah n 1 2 @ #p 1 0 08994834 -jeep n 1 1 @ 1 1 03594945 -jeer n 1 2 @ + 1 0 06716234 -jeerer n 1 2 @ + 1 0 10561320 -jeering n 1 2 @ + 1 0 06716234 -jeffers n 1 1 @ 1 0 11081673 -jefferson n 1 2 @ + 1 0 11081828 -jefferson_city n 1 2 @ #p 1 0 09106912 -jefferson_davis n 1 1 @ 1 0 10924649 -jefferson_davis'_birthday n 1 2 @ #p 1 0 15189684 -jeffersonian n 1 1 @ 1 0 10220807 -jeffrey's_pine n 1 1 @ 1 0 11614713 -jeffrey_pine n 1 1 @ 1 0 11614713 -jehad n 2 1 @ 2 0 00996673 00996513 -jehovah n 2 2 @ ~ 2 0 09538318 09536363 -jehovah's_witness n 1 2 @ #m 1 0 10248377 -jehovah's_witnesses n 1 2 @ %m 1 0 08091575 -jejunal_artery n 1 2 @ #p 1 0 05348698 -jejuneness n 3 2 @ + 3 0 14426568 05206573 04791453 -jejunitis n 1 1 @ 1 0 14348070 -jejunity n 2 2 @ + 2 0 05206573 04791453 -jejunoileitis n 1 1 @ 1 0 14348176 -jejunostomy n 1 1 @ 1 0 00681441 -jejunum n 1 1 @ 1 1 05535247 -jekyll_and_hyde n 1 1 @ 1 0 10220924 -jell-o n 1 2 @ ; 1 0 07613815 -jellaba n 1 1 @ 1 0 03595055 -jello n 1 1 @ 1 0 07613815 -jelly n 3 3 @ ~ + 3 2 07643981 07643306 14925198 -jelly_bean n 1 1 @ 1 0 07606669 -jelly_doughnut n 1 1 @ 1 0 07639344 -jelly_egg n 1 1 @ 1 0 07606669 -jelly_fungus n 1 2 @ ~ 1 0 13060190 -jelly_roll_morton n 1 1 @ 1 0 11193058 -jellyfish n 2 3 @ ~ #m 2 0 01913166 01910747 -jellyleaf n 1 2 @ #m 1 0 12186554 -jellyroll n 1 1 @ 1 0 07632357 -jem n 1 2 @ ; 1 0 08026197 -jemaah_islamiyah n 1 2 @ ; 1 0 08027518 -jemmy n 1 1 @ 1 0 03599351 -jena n 1 3 @ #p ; 1 0 01282289 -jenghiz_khan n 1 1 @ 1 0 10994308 -jenner n 1 1 @ 1 0 11082135 -jennet n 1 1 @ 1 0 02390015 -jenny n 2 1 @ 2 0 11082353 02390015 -jenny_ass n 1 1 @ 1 0 02390015 -jenny_lind n 1 1 @ 1 0 11132768 -jenny_wren n 1 3 @ ~ #m 1 0 01584225 -jens_otto_harry_jespersen n 1 1 @ 1 0 11083527 -jensen n 1 1 @ 1 0 11082535 -jeopardy n 1 3 @ ~ + 1 1 14541852 -jerboa n 1 3 @ ~ #m 1 0 02351870 -jerboa_kangaroo n 1 2 @ #m 1 0 01880813 -jerboa_rat n 1 3 @ ~ #m 1 0 02334460 -jeremiad n 1 1 @ 1 0 07211374 -jeremiah n 2 3 @ #p ; 2 0 11082842 06438290 -jeremy_bentham n 1 1 @ 1 0 10845603 -jerevan n 1 2 @ #p 1 0 09018030 -jerez n 1 2 @ #p 1 0 09026204 -jerez_de_la_frontera n 1 2 @ #p 1 0 09026204 -jericho n 1 2 @ #p 1 0 08927836 -jerk n 6 5 @ ~ #p + ; 6 2 10221040 00335988 15279480 07664770 00626423 00115500 -jerk-off n 1 2 @ + 1 0 10717196 -jerked_meat n 1 2 @ ~ 1 0 07664770 -jerker n 1 2 @ + 1 0 10802147 -jerkin n 1 1 @ 1 0 03595264 -jerkiness n 1 3 @ ~ + 1 0 04770535 -jerking n 1 2 @ + 1 1 00335988 -jerking_off n 1 2 @ ; 1 0 00856193 -jerky n 1 2 @ ~ 1 0 07664770 -jeroboam n 2 2 @ ; 2 0 11082652 03595409 -jeroboam_i n 1 2 @ ; 1 0 11082652 -jerom_bos n 1 1 @ 1 0 10858468 -jerome n 1 2 @ ; 1 0 11083064 -jerome_david_kern n 1 1 @ 1 0 11102353 -jerome_david_salinger n 1 1 @ 1 0 11278980 -jerome_kern n 1 1 @ 1 0 11102353 -jerome_robbins n 1 1 @ 1 0 11263803 -jerry n 1 2 @ ; 1 0 09748239 -jerry-builder n 1 1 @ 1 0 10221162 -jerry-building n 1 1 @ 1 0 01105038 -jerry_lee_lewis n 1 1 @ 1 0 11131358 -jersey n 5 5 @ ~ #p %p - 5 0 09112282 08887238 03595614 03595523 02406749 -jersey_city n 1 2 @ #p 1 0 09113479 -jersey_elm n 1 2 @ #m 1 0 12408466 -jersey_fern n 1 2 @ #m 1 0 13208302 -jersey_knapweed n 1 1 @ 1 0 11941178 -jersey_lillie n 1 1 @ 1 0 11117108 -jersey_pine n 1 1 @ 1 0 11616852 -jerusalem n 1 3 @ #p %p 1 1 08794798 -jerusalem_artichoke n 3 3 @ #p %p 3 0 11979964 11979715 07719058 -jerusalem_artichoke_sunflower n 1 2 @ %p 1 0 11979715 -jerusalem_cherry n 1 1 @ 1 0 12896862 -jerusalem_cricket n 1 2 @ #m 1 0 02229156 -jerusalem_cross n 1 1 @ 1 0 03595737 -jerusalem_oak n 1 1 @ 1 0 11829205 -jerusalem_sage n 1 2 @ #m 1 0 12861541 -jerusalem_thorn n 4 4 @ #m %s %p 4 0 13143758 13143285 12497669 11757190 -jerusalem_warriors n 1 2 @ ; 1 0 08027920 -jespersen n 1 1 @ 1 0 11083527 -jessamine n 1 1 @ 1 0 12307240 -jesse_jackson n 1 1 @ 1 0 11076566 -jesse_james n 1 1 @ 1 0 11079544 -jesse_louis_jackson n 1 1 @ 1 0 11076566 -jesse_owens n 1 1 @ 1 0 11219293 -jessica_lucy_mitford n 1 1 @ 1 0 11183211 -jessica_mitford n 1 1 @ 1 0 11183211 -jessica_tandy n 1 1 @ 1 0 11330504 -jessye_norman n 1 1 @ 1 0 11209428 -jest n 2 4 @ ~ %p + 2 1 06778102 00431005 -jester n 1 2 @ + 1 0 10221312 -jesuit n 1 3 @ #m + 1 1 10221520 -jesuit's_bark n 1 2 @ #p 1 0 12664710 -jesuit_order n 1 2 @ %m 1 0 08149473 -jesuitism n 1 2 @ + 1 0 06185138 -jesuitry n 1 1 @ 1 0 06185138 -jesuits'_nut n 1 1 @ 1 0 12348518 -jesus n 1 2 @ ~ 1 1 11083656 -jesus_christ n 1 2 @ ~ 1 1 11083656 -jesus_of_nazareth n 1 2 @ ~ 1 0 11083656 -jet n 6 4 @ ~ %p + 6 2 03595860 07436100 14925378 11475067 03606572 03387926 -jet-propelled_plane n 1 3 @ ~ %p 1 0 03595860 -jet_black n 1 1 @ 1 0 04960582 -jet_bridge n 1 1 @ 1 0 03596099 -jet_engine n 1 5 @ ~ #p %p - 1 0 03596285 -jet_lag n 1 1 @ 1 0 14017033 -jet_plane n 1 3 @ ~ %p 1 1 03595860 -jet_propulsion n 1 1 @ 1 0 11470008 -jet_set n 1 1 @ 1 0 08251756 -jet_stream n 1 1 @ 1 0 11470139 -jeth n 1 2 @ #p 1 0 15220149 -jetliner n 1 1 @ 1 0 03596543 -jetsam n 2 1 @ 2 0 03596639 03367875 -jetty n 1 1 @ 1 0 02894605 -jeu_d'esprit n 1 2 @ ; 1 0 06776679 -jeune_fille n 1 2 @ ~ 1 0 10247358 -jevons n 1 1 @ 1 0 11084200 -jew n 1 4 @ ~ #m + 1 1 09681351 -jew's-ear n 1 2 @ #m 1 0 13062421 -jew's-ears n 1 2 @ #m 1 0 13062421 -jew's_harp n 1 1 @ 1 0 03597916 -jew-baiter n 1 1 @ 1 1 09797742 -jew-bush n 1 1 @ 1 0 12928491 -jew_bush n 1 1 @ 1 0 12928491 -jewbush n 1 1 @ 1 0 12928491 -jewel n 2 3 @ ~ + 2 1 03596787 10221656 -jewel_casket n 1 1 @ 1 0 02978055 -jewel_orchid n 1 2 @ #m 1 0 12045157 -jeweled_headdress n 1 2 @ ~ 1 0 03597317 -jeweler n 2 3 @ ~ + 2 1 10221956 10221777 -jeweler's_glass n 1 1 @ 1 1 03597147 -jeweler's_loupe n 1 1 @ 1 0 03692522 -jewelled_headdress n 1 2 @ ~ 1 0 03597317 -jeweller n 2 3 @ ~ + 2 0 10221956 10221777 -jewellery n 1 4 @ ~ %p + 1 0 03597469 -jewelry n 1 4 @ ~ %p + 1 0 03597469 -jewelry_dealer n 1 1 @ 1 0 08063836 -jewelry_maker n 1 2 @ ~ 1 0 10221956 -jewelry_store n 1 1 @ 1 0 08063836 -jewels-of-opar n 1 1 @ 1 0 11863877 -jewelweed n 1 2 @ #m 1 0 12684379 -jewess n 1 2 @ ~ 1 0 09681973 -jewfish n 2 2 @ #m 2 0 02596067 02570164 -jewish_calendar n 1 3 @ %p ; 1 0 15177866 -jewish_calendar_month n 1 3 @ ~ #p 1 0 15214068 -jewish_holy_day n 1 2 @ ~ 1 0 15184755 -jewish_new_year n 1 2 @ ; 1 0 15182805 -jewish_orthodoxy n 1 3 @ ~ %m 1 0 08094659 -jewish_religion n 1 3 @ ~ #p 1 0 08094013 -jewish_rye n 1 2 @ ; 1 0 07686021 -jewish_rye_bread n 1 2 @ ; 1 0 07686021 -jewison n 1 1 @ 1 0 11084409 -jewry n 1 3 @ %m %p 1 0 08479095 -jews'_harp n 1 1 @ 1 0 03597916 -jezebel n 2 1 @ 2 0 11084514 10222170 -jfk n 1 1 @ 1 0 11101000 -jhvh n 1 1 @ 1 0 09538318 -ji n 1 2 @ ; 1 0 08027518 -jiao n 1 3 @ #p %p 1 0 13710101 -jib n 1 3 @ ~ + 1 0 03598151 -jibboom n 1 1 @ 1 0 03598299 -jibe n 1 2 @ ~ 1 1 06767922 -jidda n 1 2 @ #p 1 0 08994834 -jiddah n 1 2 @ #p 1 0 08994834 -jiffy n 1 1 @ 1 0 15247110 -jig n 4 2 @ + 4 0 07055805 03598515 03598385 00538991 -jigaboo n 1 2 @ ; 1 0 09638009 -jigger n 3 2 @ #m 3 0 04206225 03598646 01781071 -jiggermast n 1 1 @ 1 0 03598646 -jiggery-pokery n 1 1 @ 1 0 06760722 -jiggle n 1 2 @ + 1 0 00347359 -jigsaw n 2 1 @ 2 0 04121728 03598783 -jigsaw_puzzle n 1 1 @ 1 0 03598930 -jihad n 2 2 @ + 2 0 00996673 00996513 -jihadist n 1 2 @ + 1 0 09683180 -jillion n 1 1 @ 1 0 13776432 -jilt n 1 2 @ + 1 0 10222259 -jim_bowie n 1 1 @ 1 0 10859857 -jim_corbett n 1 1 @ 1 0 10910421 -jim_crow n 2 1 @ 2 0 05692234 03599111 -jim_henson n 1 1 @ 1 0 11043836 -jim_morrison n 1 1 @ 1 0 11192533 -jim_thorpe n 1 1 @ 1 0 11341479 -jimdandy n 2 1 @ 2 1 10222353 03599212 -jimenez n 1 1 @ 1 0 11084789 -jimenez_de_cisneros n 1 1 @ 1 0 11084895 -jimhickey n 2 1 @ 2 1 10222353 03599212 -jimi_hendrix n 1 1 @ 1 0 11040024 -jimmies n 1 1 @ 1 0 07604182 -jimmy n 1 2 @ + 1 0 03599351 -jimmy_cagney n 1 1 @ 1 0 10878844 -jimmy_carter n 1 1 @ 1 0 10884831 -jimmy_conors n 1 1 @ 1 0 10907501 -jimmy_doolittle n 1 1 @ 1 0 10940053 -jimmy_durante n 1 1 @ 1 0 10945825 -jimmy_hoffa n 1 1 @ 1 0 11054173 -jimmy_stewart n 1 1 @ 1 0 11318171 -jimson_weed n 1 1 @ 1 0 12903503 -jimsonweed n 1 1 @ 1 0 12903503 -jinghis_khan n 1 1 @ 1 0 10994308 -jinghpaw n 1 1 @ 1 0 06933185 -jinghpo n 1 1 @ 1 0 06933185 -jingle n 2 2 @ + 2 0 07385998 06379253 -jingo n 1 1 @ 1 0 09911849 -jingoism n 2 2 @ + 2 0 07187486 04878646 -jingoist n 1 2 @ + 1 0 09911849 -jinja n 1 2 @ #p 1 0 09043802 -jinks n 1 2 @ ; 1 0 00510050 -jinnah n 1 1 @ 1 0 11085113 -jinnee n 1 3 @ ~ ; 1 0 09544433 -jinni n 1 3 @ ~ ; 1 0 09544433 -jinrikisha n 1 1 @ 1 0 03599486 -jinx n 2 2 @ + 2 0 10224446 07160424 -jiqui n 1 2 @ #m 1 0 12694336 -jird n 1 2 @ #m 1 0 02344175 -jirga n 1 3 @ ~ ; 1 0 08321956 -jirrbal n 1 1 @ 1 0 06940502 -jitney n 1 5 @ ~ #m %p - 1 0 02924116 -jitter n 2 2 @ + 2 0 07431502 07345960 -jitterbug n 1 2 @ + 1 0 00532441 -jitteriness n 1 2 @ + 1 0 07525760 -jitters n 1 2 @ ; 1 0 14375761 -jiujitsu n 1 2 @ ; 1 0 00825951 -jive n 1 2 @ + 1 0 07066042 -jnd n 1 2 @ ; 1 0 05713101 -jnr n 1 1 @ 1 0 10227490 -joachim n 1 1 @ 1 0 11085267 -joan_crawford n 1 1 @ 1 0 10914548 -joan_didion n 1 1 @ 1 0 10935025 -joan_miro n 1 1 @ 1 0 11181835 -joan_of_arc n 1 1 @ 1 0 11081353 -joan_sutherland n 1 1 @ 1 0 11325867 -joao_pessoa n 1 2 @ #p 1 0 08855609 -job n 13 5 @ ~ #p + ; 13 7 00582388 00719705 03599628 03599761 00584769 00576877 00576717 14410605 11085402 10222949 06572482 06436939 00782792 -job's_comforter n 1 1 @ 1 0 10223069 -job's_tears n 1 1 @ 1 0 11689367 -job-control_language n 1 1 @ 1 0 06900005 -job-oriented_terminal n 1 1 @ 1 0 03600169 -job_action n 1 2 @ ~ 1 0 01242164 -job_application n 1 1 @ 1 0 06512857 -job_candidate n 1 1 @ 1 0 10222716 -job_control n 1 1 @ 1 0 06576153 -job_description n 1 1 @ 1 0 06724942 -job_interview n 1 1 @ 1 0 07196405 -job_lot n 1 1 @ 1 1 08007430 -jobber n 1 2 @ ~ 1 0 10222497 -jobbery n 1 1 @ 1 0 04875468 -jobcentre n 1 2 @ ; 1 0 03599964 -jobholder n 1 2 @ ~ 1 0 10222822 -jocasta n 1 2 @ ; 1 0 09596733 -jock n 2 2 @ ~ 2 0 09820263 02752615 -jock_itch n 1 1 @ 1 0 14126519 -jockey n 2 2 @ + 2 1 10223177 10223294 -jockey_cap n 1 2 @ %p 1 0 02799323 -jockey_club n 1 1 @ 1 0 08230009 -jockey_shorts n 1 2 @ ; 1 0 02901114 -jockstrap n 1 1 @ 1 0 02752615 -jocoseness n 1 2 @ + 1 0 04649051 -jocosity n 2 2 @ + 2 0 06781151 04649051 -jocote n 1 3 @ #m %p 1 0 12766043 -jocularity n 3 3 @ ~ + 3 0 07529683 06781151 00431005 -jocundity n 1 2 @ + 1 0 07529683 -jodhpur n 1 1 @ 1 0 03600475 -jodhpur_boot n 1 1 @ 1 0 03600475 -jodhpur_breeches n 1 3 @ #p ; 1 0 03600285 -jodhpur_shoe n 1 1 @ 1 0 03600475 -jodhpurs n 1 3 @ #p ; 1 0 03600285 -joe-pye_weed n 2 2 @ #m 2 0 11969166 11968704 -joe_bloggs n 1 1 @ 1 0 10223744 -joe_blow n 1 1 @ 1 0 10223744 -joe_clark n 1 1 @ 1 0 10898549 -joe_dimaggio n 1 1 @ 1 0 10935567 -joe_louis n 1 1 @ 1 0 11141709 -joel n 2 2 @ #p 2 0 11085559 06439408 -joel_chandler_harris n 1 1 @ 1 0 11031257 -joel_harris n 1 1 @ 1 0 11031257 -joewood n 1 2 @ #m 1 0 12100187 -joffre n 1 1 @ 1 0 11085633 -joffrey n 1 1 @ 1 0 11085813 -jog n 3 3 @ ~ + 3 0 13887211 00294190 00112997 -jog_trot n 1 1 @ 1 0 00287449 -jogger n 1 2 @ + 1 0 10223459 -jogging n 1 2 @ + 1 0 00628390 -joggle n 2 2 @ + 2 0 03229244 00347359 -johan_august_strindberg n 1 1 @ 1 0 11322481 -johan_julius_christian_sibelius n 1 1 @ 1 0 11299367 -johan_kepler n 1 1 @ 1 0 11101986 -johann_bernoulli n 1 1 @ 1 0 10848500 -johann_christoph_friedrich_von_schiller n 1 1 @ 1 0 11284409 -johann_eck n 1 1 @ 1 0 10948117 -johann_friedrich_herbart n 1 1 @ 1 0 11044517 -johann_gottfried_von_herder n 1 1 @ 1 0 11044789 -johann_gutenberg n 1 1 @ 1 0 11020513 -johann_joachim_winckelmann n 1 1 @ 1 0 11392539 -johann_ludwig_uhland n 1 1 @ 1 0 11355428 -johann_maier n 1 1 @ 1 0 10948117 -johann_maier_eck n 1 1 @ 1 0 10948117 -johann_mendel n 1 1 @ 1 0 11173199 -johann_muller n 1 1 @ 1 0 11195619 -johann_sebastian_bach n 1 1 @ 1 0 10830229 -johann_strauss n 2 1 @ 2 0 11321428 11321296 -johann_winckelmann n 1 1 @ 1 0 11392539 -johann_wolfgang_von_goethe n 1 1 @ 1 0 11004106 -johannes_brahms n 1 1 @ 1 0 10862113 -johannes_diderik_van_der_waals n 1 1 @ 1 0 11359412 -johannes_eckhart n 1 1 @ 1 0 10948312 -johannes_evangelista_purkinje n 1 1 @ 1 0 11248777 -johannes_gutenberg n 1 1 @ 1 0 11020513 -johannes_kepler n 1 1 @ 1 0 11101986 -johannes_peter_muller n 1 1 @ 1 0 11195771 -johannes_van_der_waals n 1 1 @ 1 0 11359412 -johannes_vilhelm_jensen n 1 1 @ 1 0 11082535 -johannesburg n 1 2 @ #p 1 0 09000665 -john n 5 6 @ ~ #m #p %p ; 5 1 04446276 11086279 11085924 10779995 06442239 -john's_cabbage n 1 1 @ 1 0 12834938 -john_adams n 1 1 @ 1 0 10808200 -john_addington_symonds n 1 1 @ 1 0 11327544 -john_amos_comenius n 1 1 @ 1 0 10905568 -john_anthony_ciardi n 1 1 @ 1 0 10897796 -john_augustus_roebling n 1 1 @ 1 0 11268118 -john_bach_mcmaster n 1 1 @ 1 0 11169764 -john_bardeen n 1 1 @ 1 0 10834543 -john_barleycorn n 1 2 @ ~ 1 0 07901587 -john_barrington_wain n 1 1 @ 1 0 11370201 -john_barrymore n 1 1 @ 1 0 10836029 -john_barth n 1 1 @ 1 0 10836184 -john_bartlett n 1 1 @ 1 0 10836862 -john_bernoulli n 1 1 @ 1 0 10848500 -john_berry_hobbs n 1 1 @ 1 0 11053218 -john_birks_gillespie n 1 1 @ 1 0 11000012 -john_broadus_watson n 1 1 @ 1 0 11376400 -john_brown n 1 1 @ 1 0 10866217 -john_bull n 1 1 @ 1 0 09703485 -john_bunyan n 1 1 @ 1 0 10871756 -john_burdon_sanderson_haldane n 1 1 @ 1 0 11023070 -john_burgoyne n 1 1 @ 1 0 10872624 -john_c._fremont n 1 1 @ 1 0 10981569 -john_cabot n 1 1 @ 1 0 10877584 -john_cage n 1 1 @ 1 0 10878530 -john_calvin n 1 1 @ 1 0 10880398 -john_cash n 1 1 @ 1 0 10886222 -john_chapman n 1 1 @ 1 0 10890868 -john_charles_fremont n 1 1 @ 1 0 10981569 -john_cheever n 1 1 @ 1 0 10894522 -john_chrysostom n 1 2 @ ; 1 0 11086774 -john_churchill n 1 1 @ 1 0 10897594 -john_ciardi n 1 1 @ 1 0 10897796 -john_constable n 1 1 @ 1 0 10907851 -john_copley n 1 1 @ 1 0 10910076 -john_cowper_powys n 1 1 @ 1 0 11245590 -john_d._rockefeller n 1 1 @ 1 0 11267113 -john_dalton n 1 1 @ 1 0 10921324 -john_davis n 1 1 @ 1 0 10925402 -john_davison_rockefeller n 1 1 @ 1 0 11267113 -john_davys n 1 1 @ 1 0 10925402 -john_deere n 1 1 @ 1 0 10927104 -john_dewey n 1 1 @ 1 0 10932898 -john_doe n 2 2 @ ; 2 0 10223744 10223606 -john_donald_budge n 1 1 @ 1 0 10870440 -john_donne n 1 1 @ 1 0 10939856 -john_dory n 1 2 @ #m 1 0 01453087 -john_dos_passos n 1 1 @ 1 0 10940474 -john_dowland n 1 1 @ 1 0 10941992 -john_drew n 1 1 @ 1 0 10943256 -john_dryden n 1 1 @ 1 0 10943659 -john_duns_scotus n 1 1 @ 1 0 10945546 -john_eccles n 1 1 @ 1 0 10947922 -john_edgar_hoover n 1 1 @ 1 0 11058914 -john_edward_masefield n 1 1 @ 1 0 11162793 -john_endecott n 1 1 @ 1 0 10958885 -john_endicott n 1 1 @ 1 0 10958885 -john_ernst_steinbeck n 1 1 @ 1 0 11314792 -john_fitzgerald_kennedy n 1 1 @ 1 0 11101000 -john_fletcher n 1 1 @ 1 0 10973164 -john_florio n 1 1 @ 1 0 10973722 -john_ford n 1 1 @ 1 0 10975304 -john_foster_dulles n 1 1 @ 1 0 10944686 -john_galbraith n 1 1 @ 1 0 10987358 -john_galsworthy n 1 1 @ 1 0 10988466 -john_glenn n 1 1 @ 1 0 11002191 -john_greenleaf_whittier n 1 1 @ 1 0 11385277 -john_griffith_chaney n 1 1 @ 1 0 11137748 -john_haldane n 1 1 @ 1 0 11022848 -john_hancock n 2 1 @ 2 0 11027416 06404907 -john_hanning_speke n 1 1 @ 1 0 11310081 -john_harvard n 1 1 @ 1 0 11033159 -john_hasbrouck_van_vleck n 1 1 @ 1 0 11360175 -john_heming n 1 1 @ 1 0 11039690 -john_hemminge n 1 1 @ 1 0 11039690 -john_henry n 1 1 @ 1 0 09591450 -john_henry_newman n 1 1 @ 1 0 11204962 -john_henry_o'hara n 1 1 @ 1 0 11212988 -john_herschel n 1 1 @ 1 0 11046169 -john_herschel_glenn_jr. n 1 1 @ 1 0 11002191 -john_hope_franklin n 1 1 @ 1 0 10979535 -john_howard_northrop n 1 1 @ 1 0 11209990 -john_hoyer_updike n 1 1 @ 1 0 11356392 -john_huss n 1 1 @ 1 0 11067885 -john_huston n 1 1 @ 1 0 11068760 -john_irving n 1 1 @ 1 0 11073324 -john_jacob_astor n 1 1 @ 1 0 10826557 -john_james_audubon n 1 1 @ 1 0 10828368 -john_james_osborne n 1 1 @ 1 0 11217668 -john_james_rickard_macleod n 1 1 @ 1 0 11148259 -john_jay n 1 1 @ 1 0 11081111 -john_joseph_mcgraw n 1 1 @ 1 0 11168974 -john_joseph_pershing n 1 1 @ 1 0 11230780 -john_keats n 1 1 @ 1 0 11098601 -john_keble n 1 1 @ 1 0 11098707 -john_kenneth_galbraith n 1 1 @ 1 0 10987358 -john_knox n 1 1 @ 1 0 11108195 -john_l._h._down n 1 1 @ 1 0 10942144 -john_l._lewis n 1 1 @ 1 0 11130661 -john_lackland n 1 2 @ #m 1 0 11086279 -john_le_carre n 1 1 @ 1 0 11122825 -john_lennon n 1 2 @ #m 1 0 11126783 -john_llewelly_lewis n 1 1 @ 1 0 11130661 -john_locke n 1 1 @ 1 1 11136798 -john_luther_jones n 1 1 @ 1 0 11090631 -john_lyly n 1 1 @ 1 0 11145730 -john_m._browning n 1 1 @ 1 0 10867238 -john_macleod n 1 1 @ 1 0 11148259 -john_major n 1 1 @ 1 0 11150634 -john_marquand n 1 1 @ 1 0 11157954 -john_marshall n 1 1 @ 1 0 11158754 -john_marstan n 1 1 @ 1 0 11159318 -john_masefield n 1 1 @ 1 0 11162793 -john_maynard_keynes n 1 2 @ #m 1 0 11103397 -john_mccormick n 1 1 @ 1 0 11168513 -john_mcgraw n 1 1 @ 1 0 11168974 -john_mercer n 1 1 @ 1 0 11175445 -john_merven_carrere n 1 1 @ 1 0 10883871 -john_mill n 1 1 @ 1 0 11179287 -john_millington_synge n 1 1 @ 1 0 11327744 -john_milton n 1 1 @ 1 0 11181073 -john_milton_cage_jr. n 1 1 @ 1 0 10878530 -john_mitchell n 1 1 @ 1 0 11182098 -john_moses_browning n 1 1 @ 1 0 10867238 -john_muir n 1 1 @ 1 0 11194910 -john_napier n 1 1 @ 1 0 11200090 -john_of_gaunt n 1 1 @ 1 0 11087091 -john_orley_allen_tate n 1 1 @ 1 0 11332423 -john_osborne n 1 1 @ 1 0 11217668 -john_paul_i n 1 1 @ 1 0 11087612 -john_paul_ii n 1 1 @ 1 0 11087767 -john_paul_jones n 1 1 @ 1 0 11090378 -john_philip_marquand n 1 1 @ 1 0 11157954 -john_philip_sousa n 1 1 @ 1 0 11308988 -john_pierpont_morgan n 1 1 @ 1 0 11190446 -john_quincy_adams n 1 1 @ 1 0 10808353 -john_r._major n 1 1 @ 1 0 11150634 -john_reed n 1 1 @ 1 0 11256494 -john_robinson_jeffers n 1 1 @ 1 0 11081673 -john_rock n 1 1 @ 1 0 11266920 -john_roderigo_dos_passos n 1 1 @ 1 0 10940474 -john_roebling n 1 1 @ 1 0 11268118 -john_ronald_reuel_tolkien n 1 1 @ 1 0 11345181 -john_ross n 1 1 @ 1 0 11271349 -john_rowlands n 1 1 @ 1 0 11313011 -john_roy_major n 1 1 @ 1 0 11150634 -john_rupert_firth n 1 1 @ 1 0 10971264 -john_ruskin n 1 1 @ 1 0 11274714 -john_rutledge n 1 1 @ 1 0 11276676 -john_scopes n 1 1 @ 1 0 11288528 -john_scott_haldane n 1 1 @ 1 0 11022848 -john_simmons_barth n 1 1 @ 1 0 10836184 -john_singer_sargent n 1 1 @ 1 0 11281837 -john_singleton_copley n 1 1 @ 1 0 10910076 -john_smith n 1 1 @ 1 0 11305402 -john_speke n 1 1 @ 1 0 11310081 -john_steinbeck n 1 1 @ 1 0 11314792 -john_stuart_mill n 1 1 @ 1 0 11179287 -john_the_baptist n 1 2 @ ; 1 0 11087359 -john_the_divine n 1 2 @ ; 1 0 11085924 -john_the_evangelist n 1 2 @ ; 1 0 11085924 -john_thomas_scopes n 1 1 @ 1 0 11288528 -john_tradescant n 1 1 @ 1 0 11347674 -john_trumbull n 2 1 @ 2 0 11350393 11350286 -john_tuzo_wilson n 1 1 @ 1 0 11391759 -john_tyler n 1 1 @ 1 0 11354145 -john_tyndall n 1 1 @ 1 0 11354743 -john_uhler n 1 1 @ 1 0 11125840 -john_updike n 1 1 @ 1 0 11356392 -john_van_vleck n 1 1 @ 1 0 11360175 -john_vanbrugh n 1 1 @ 1 0 11358598 -john_venn n 1 1 @ 1 0 11362452 -john_von_neumann n 1 1 @ 1 0 11369035 -john_wain n 1 1 @ 1 0 11370201 -john_walker n 1 1 @ 1 0 11371254 -john_wanamaker n 1 1 @ 1 0 11373379 -john_wayne n 1 1 @ 1 0 11377712 -john_webster n 1 1 @ 1 0 11379336 -john_wesley n 1 1 @ 1 0 11381824 -john_wickliffe n 1 1 @ 1 0 11399866 -john_wiclif n 1 1 @ 1 0 11399866 -john_wilkes n 1 1 @ 1 0 11387179 -john_wilkes_booth n 1 1 @ 1 0 10857540 -john_william_strutt n 1 1 @ 1 0 11255211 -john_witherspoon n 1 1 @ 1 0 11393546 -john_wyclif n 1 1 @ 1 0 11399866 -john_wycliffe n 1 1 @ 1 0 11399866 -john_xxiii n 1 1 @ 1 0 11086607 -johnny n 1 2 @ ; 1 1 10628368 -johnny-jump-up n 2 1 @ 2 0 12390681 12389501 -johnny_appleseed n 1 1 @ 1 0 10890868 -johnny_cake n 1 3 @ ~ ; 1 0 07689003 -johnny_cash n 1 1 @ 1 0 10886222 -johnny_reb n 1 2 @ ; 1 1 10628368 -johnnycake n 1 3 @ ~ ; 1 0 07689003 -johns n 1 1 @ 1 0 11087931 -johns_hopkins n 2 2 @ #p 2 0 11059875 03600617 -johnson n 3 1 @ 3 0 11088622 11088346 11088059 -johnson_city n 1 2 @ #p 1 0 09140882 -johnson_grass n 1 1 @ 1 0 12138905 -johnston n 1 1 @ 1 0 11088771 -joie_de_vivre n 1 1 @ 1 0 07491895 -join n 2 2 @ ~ 2 0 13911151 07998712 -joiner n 2 2 @ + 2 0 10223994 10223869 -joinery n 2 1 @ 2 0 03600722 00617601 -joining n 1 3 @ ~ + 1 0 00145218 -joint n 6 7 @ ~ #p %s %p + ; 6 2 05595083 03601335 13911151 07580782 03600977 03600806 -joint-stock_company n 1 1 @ 1 0 08383417 -joint_author n 1 1 @ 1 0 09932892 -joint_chiefs n 1 2 @ ; 1 0 08128159 -joint_chiefs_of_staff n 1 2 @ ; 1 0 08128159 -joint_direct_attack_munition n 1 1 @ 1 0 03601442 -joint_fir n 1 3 @ ~ #m 1 0 11598686 -joint_hinge n 1 1 @ 1 0 04333869 -joint_probability n 1 1 @ 1 0 05093181 -joint_resolution n 1 2 @ ; 1 1 06512324 -joint_return n 1 1 @ 1 0 06549566 -joint_snake n 1 2 @ #m 1 1 01690466 -joint_venture n 1 2 @ ~ 1 0 00785596 -jointed_charlock n 1 2 @ #m 1 0 11894558 -jointed_rush n 1 1 @ 1 0 11744011 -jointer n 1 2 @ + 1 0 03601638 -jointer_plane n 1 1 @ 1 0 03601638 -jointing_plane n 1 1 @ 1 0 03601638 -jointure n 2 4 @ ~ + ; 2 0 13264342 00381680 -jointworm n 1 2 @ #m 1 0 02217839 -joist n 1 2 @ ~ 1 0 03601840 -joke n 4 4 @ ~ %p + 4 3 06778102 00431005 00427580 05173443 -joker n 4 2 @ + 4 1 10224098 10224295 06394051 03601964 -jokester n 1 2 @ + 1 0 10224098 -joliet n 1 1 @ 1 0 11089484 -joliot n 1 1 @ 1 0 11088969 -joliot-curie n 2 1 @ 2 0 11089318 11088969 -jolliet n 1 1 @ 1 0 11089484 -jollification n 1 3 @ ~ + 1 0 00509846 -jolliness n 1 2 @ + 1 0 07551890 -jollity n 1 2 @ + 1 0 07551890 -jolly n 2 3 @ + ; 2 0 07450343 03602081 -jolly_boat n 1 1 @ 1 0 03602081 -jolly_roger n 1 2 @ %p 1 0 02847009 -jolson n 1 1 @ 1 0 11089669 -jolt n 2 2 @ + 2 2 07339098 00335988 -jomada_i n 1 2 @ #p 1 0 15217787 -jomada_ii n 1 2 @ #p 1 0 15217911 -jomo_kenyata n 1 1 @ 1 0 11101700 -jonah n 3 3 @ #p ; 3 0 11089868 10224446 06439924 -jonah_crab n 1 2 @ #m 1 0 01978587 -jonas_edward_salk n 1 1 @ 1 0 11279109 -jonas_salk n 1 1 @ 1 0 11279109 -jonathan n 1 1 @ 1 0 07740855 -jonathan_edwards n 1 1 @ 1 0 10951948 -jonathan_swift n 1 1 @ 1 0 11326869 -jonathan_trumbull n 1 1 @ 1 0 11350514 -jones n 6 1 @ 6 0 11090884 11090631 11090512 11090378 11090235 11090136 -jones'_penstemon n 1 2 @ #m 1 0 12886402 -jonesboro n 1 2 @ #p 1 0 09060176 -jong n 1 1 @ 1 0 11091084 -jongleur n 1 2 @ ~ 1 0 10099093 -jonquil n 2 1 @ 2 1 12421917 12422129 -jons_jakob_berzelius n 1 1 @ 1 0 10849435 -jonson n 1 1 @ 1 0 11091184 -jook n 2 1 @ 2 0 07704205 03603199 -jook_house n 1 1 @ 1 0 03603199 -jook_joint n 1 1 @ 1 0 03603199 -joplin n 2 1 @ 2 0 11091545 11091374 -joppa n 1 2 @ #p 1 0 08798195 -jordan n 2 7 @ #m #p %m %p + - 2 0 09321901 08927186 -jordan_almond n 2 1 @ 2 0 12646072 07750736 -jordan_curve n 1 2 @ ~ 1 0 13868371 -jordan_river n 1 2 @ #p 1 0 09321901 -jordanella n 1 3 @ #m %m 1 0 01447822 -jordanella_floridae n 1 2 @ #m 1 0 01447946 -jordanian n 1 3 @ #m + 1 0 09718811 -jordanian_dinar n 1 2 @ %p 1 0 13669590 -jordanian_monetary_unit n 1 2 @ ~ 1 0 13669479 -jorge_borges n 1 1 @ 1 0 10857697 -jorge_luis_borges n 1 1 @ 1 0 10857697 -jorge_mario_pedro_vargas_llosa n 1 1 @ 1 0 11360895 -joroslav_heyrovsky n 1 1 @ 1 0 11048739 -jorum n 1 1 @ 1 0 03602194 -jose_clemente_orozco n 1 1 @ 1 0 11216922 -jose_julian_marti n 1 1 @ 1 0 11159418 -jose_orozco n 1 1 @ 1 0 11216922 -jose_ortega_y_gasset n 1 1 @ 1 0 11217312 -josef_albers n 1 1 @ 1 0 10811352 -josef_hoffmann n 1 1 @ 1 0 11055154 -josef_michel_montgolfier n 1 1 @ 1 0 11187930 -josef_von_sternberg n 1 1 @ 1 0 11369251 -joseph n 3 2 @ ; 3 0 11092126 11091863 11091706 -joseph's_coat n 1 1 @ 1 0 12845413 -joseph_alois_schumpeter n 1 1 @ 1 0 11287570 -joseph_banks_rhine n 1 1 @ 1 0 11258924 -joseph_ben_matthias n 1 1 @ 1 0 11092292 -joseph_black n 1 1 @ 1 0 10852130 -joseph_campbell n 1 1 @ 1 0 10880981 -joseph_conrad n 1 1 @ 1 0 10907647 -joseph_deems_taylor n 1 1 @ 1 0 11333601 -joseph_eggleston_johnston n 1 1 @ 1 0 11088771 -joseph_emerson_worcester n 1 1 @ 1 0 11397488 -joseph_francis_keaton n 1 1 @ 1 0 11098380 -joseph_goebbels n 1 1 @ 1 0 11003724 -joseph_greenberg n 1 1 @ 1 0 11013574 -joseph_haydn n 1 1 @ 1 0 11035780 -joseph_heller n 1 1 @ 1 0 11038978 -joseph_henry n 1 1 @ 1 0 11040240 -joseph_hilaire_peter_belloc n 1 1 @ 1 0 10843035 -joseph_hooker n 1 1 @ 1 0 11058436 -joseph_jacques_cesaire_joffre n 1 1 @ 1 0 11085633 -joseph_joachim n 1 1 @ 1 0 11085267 -joseph_john_thomson n 1 1 @ 1 0 11340146 -joseph_lincoln_steffens n 1 1 @ 1 0 11314315 -joseph_lister n 1 1 @ 1 0 11134895 -joseph_louis_barrow n 1 1 @ 1 0 11141709 -joseph_louis_gay-lussac n 1 1 @ 1 0 10993098 -joseph_m._jacquard n 1 1 @ 1 0 11078203 -joseph_mallord_william_turner n 1 1 @ 1 0 11352883 -joseph_marie_jacquard n 1 1 @ 1 0 11078203 -joseph_mccarthy n 1 1 @ 1 0 11167595 -joseph_oliver n 1 1 @ 1 0 11214153 -joseph_paul_dimaggio n 1 1 @ 1 0 10935567 -joseph_paxton n 1 1 @ 1 0 11227499 -joseph_priestley n 1 1 @ 1 0 11246542 -joseph_pulitzer n 1 1 @ 1 0 11248426 -joseph_raymond_mccarthy n 1 1 @ 1 0 11167595 -joseph_rudyard_kipling n 1 1 @ 1 0 11105778 -joseph_schumpeter n 1 1 @ 1 0 11287570 -joseph_smith n 1 1 @ 1 0 11305611 -joseph_stalin n 1 1 @ 1 0 11312120 -joseph_warren_stilwell n 1 1 @ 1 0 11318462 -josephus n 1 1 @ 1 0 11092292 -josh_billings n 1 1 @ 1 0 11296279 -joshua n 2 3 @ #p ; 2 0 11092541 06433923 -joshua_tree n 1 1 @ 1 0 12482893 -josiah_quincy n 1 1 @ 1 0 11250833 -josiah_spode n 1 1 @ 1 0 11311817 -josiah_wedgwood n 1 1 @ 1 0 11379436 -josiah_willard_gibbs n 1 1 @ 1 0 10997888 -josip_broz n 1 1 @ 1 0 11343625 -joss n 1 1 @ 1 1 03602267 -joss_house n 1 1 @ 1 0 03602365 -joss_stick n 1 1 @ 1 0 14925526 -jostle n 1 3 @ ~ + 1 0 00114095 -jostling n 1 3 @ ~ + 1 0 00114095 -josue n 1 2 @ #p 1 0 06433923 -jot n 2 3 @ ~ + 2 1 06505799 13774115 -jotter n 1 2 @ + 1 0 06415688 -jotting n 1 2 @ + 1 0 06505799 -jotun n 1 2 @ ; 1 0 09581526 -jotunn n 1 2 @ ; 1 0 09581526 -joule n 2 2 @ %p 2 0 13726074 11092740 -jounce n 1 1 @ 1 0 07339098 -journal n 5 2 @ ~ 5 2 06402031 06597466 13405166 03602562 03602465 -journal_bearing n 1 2 @ ~ 1 0 03602686 -journal_box n 1 1 @ 1 0 03602790 -journalese n 1 2 @ ~ 1 1 07071250 -journalism n 2 4 @ ~ %s + 2 1 06266417 00611674 -journalist n 2 3 @ ~ + 2 1 10224578 10011486 -journalist's_privilege n 1 1 @ 1 0 05180135 -journey n 1 4 @ ~ %p + 1 1 00306426 -journey_cake n 1 3 @ ~ ; 1 0 07689003 -journeyer n 1 3 @ ~ + 1 0 10771392 -journeying n 1 4 @ ~ %p + 1 1 00306426 -journeyman n 1 2 @ ~ 1 0 09974648 -joust n 1 3 @ #p + 1 1 07472460 -jove n 1 3 @ ~ ; 1 0 09573966 -joviality n 2 2 @ + 2 0 07551890 04653357 -jovian_planet n 1 2 @ ~ 1 0 09322087 -jowett n 1 1 @ 1 0 11092938 -jowl n 2 5 @ ~ #p %p + 2 1 05275905 05602982 -joy n 2 4 ! @ ~ + 2 2 07527352 05829782 -joyce n 1 1 @ 1 0 11093116 -joyce_carol_oates n 1 1 @ 1 0 11210963 -joyfulness n 1 3 @ ~ + 1 0 07527352 -joylessness n 1 2 @ + 1 0 07537376 -joyousness n 1 3 @ ~ + 1 0 07527352 -joyride n 1 2 @ + 1 0 00309368 -joystick n 2 1 @ 2 0 04317976 03602883 -jr n 1 1 @ 1 0 10227490 -jra n 1 2 @ ; 1 0 08026904 -juan_carlos n 1 1 @ 1 0 11093325 -juan_carlos_victor_maria_de_borbon_y_borbon n 1 1 @ 1 0 11093325 -juan_domingo_peron n 1 1 @ 1 0 11230021 -juan_ponce_de_leon n 1 1 @ 1 0 11242077 -juan_ramon_jimenez n 1 1 @ 1 0 11084789 -juarez n 1 2 @ #p 1 0 08742743 -jubbulpore n 1 2 @ #p 1 0 08903487 -jubilance n 1 3 @ ~ + 1 0 07527817 -jubilancy n 1 3 @ ~ + 1 0 07527817 -jubilation n 3 3 @ ~ + 3 0 07527817 07450651 07129422 -jubilee n 1 3 @ ~ + 1 0 15250312 -juda n 1 2 @ #p 1 0 08799123 -judaea n 1 2 @ #p 1 0 08799271 -judah n 2 3 @ #p ; 2 0 11093469 08799123 -judaica n 1 1 @ 1 0 07977237 -judaism n 2 5 @ ~ #p + - 2 1 08094013 06232880 -judas n 4 2 @ ; 4 0 11094055 11093674 10225118 03603119 -judas_iscariot n 1 2 @ ; 1 0 11093674 -judas_maccabaeus n 1 1 @ 1 0 11093848 -judas_tree n 1 2 @ #m 1 0 12513613 -jude n 2 3 @ #p ; 2 0 11094055 06447763 -judea n 1 2 @ #p 1 0 08799271 -judeo-spanish n 1 1 @ 1 0 06967282 -judge n 2 3 @ ~ + 2 2 10225219 10066732 -judge's_robe n 1 3 @ ~ #p 1 0 02669723 -judge_advocate n 2 2 @ ; 2 0 10225931 10225787 -judge_advocate_general n 1 2 @ ; 1 0 10226060 -judgement n 7 3 @ ~ ; 7 0 06551784 05837957 05789432 05614175 04892084 01187810 00874067 -judgement_by_default n 1 2 @ ; 1 0 01188537 -judgement_day n 1 2 @ ; 1 1 15171307 -judgement_in_personam n 1 2 @ ; 1 0 01189650 -judgement_in_rem n 1 2 @ ; 1 0 01189929 -judgement_of_dismissal n 1 2 @ ; 1 0 01190172 -judgement_on_the_merits n 1 2 @ ; 1 0 01190364 -judgement_on_the_pleadings n 1 2 @ ; 1 0 01190561 -judges n 1 2 @ #p 1 0 06434165 -judgeship n 1 2 @ + 1 0 00593944 -judging n 1 3 @ ~ + 1 0 05789432 -judgment n 7 4 @ ~ + ; 7 6 05837957 00874067 01187810 05789432 06551784 04892084 05614175 -judgment_by_default n 1 2 @ ; 1 0 01188537 -judgment_day n 1 2 @ ; 1 0 15171307 -judgment_in_personam n 1 3 ! @ ; 1 0 01189650 -judgment_in_rem n 1 3 ! @ ; 1 0 01189929 -judgment_lien n 1 1 @ 1 0 13401746 -judgment_of_conviction n 1 3 @ ~ ; 1 0 01189282 -judgment_of_dismissal n 1 2 @ ; 1 0 01190172 -judgment_on_the_merits n 1 2 @ ; 1 0 01190364 -judgment_on_the_pleadings n 1 2 @ ; 1 0 01190561 -judicatory n 1 3 @ ~ #p 1 0 08166318 -judicature n 4 5 @ ~ #p %m %p 4 0 08329453 08166318 00694866 00593944 -judicial_activism n 1 1 @ 1 0 05766698 -judicial_admission n 1 2 @ ; 1 0 07216761 -judicial_branch n 1 4 @ #m %m ; 1 0 08356903 -judicial_decision n 1 3 @ ~ ; 1 0 01187810 -judicial_doctrine n 1 3 @ ~ ; 1 0 05956651 -judicial_principle n 1 3 @ ~ ; 1 0 05956651 -judicial_proceeding n 1 3 @ ~ ; 1 0 01186810 -judicial_review n 1 2 @ ; 1 0 01197658 -judicial_sale n 1 1 @ 1 0 06528557 -judicial_separation n 1 2 @ ; 1 0 06541381 -judicial_system n 1 3 @ ~ #p 1 0 08166318 -judicial_torture n 1 1 @ 1 0 00422834 -judicial_writ n 1 3 @ ~ ; 1 0 06552984 -judiciary n 2 5 @ ~ #m #p + 2 1 08166187 08166318 -judiciousness n 2 4 ! @ ~ + 2 0 05615373 04890361 -judith n 2 3 @ #p ; 2 0 10226219 06459834 -judith_jamison n 1 1 @ 1 0 11080601 -judo n 1 1 @ 1 0 00825773 -judy_garland n 1 1 @ 1 0 10991165 -jug n 2 3 @ ~ + 2 1 03603722 13767956 -jug_band n 1 1 @ 1 0 08249608 -jug_wine n 1 1 @ 1 0 07896560 -jugal_bone n 1 3 @ #p %p 1 0 05273822 -jugal_point n 1 2 @ #p 1 0 05233420 -jugale n 1 2 @ #p 1 0 05233420 -jugful n 1 1 @ 1 0 13767956 -juggernaut n 3 1 @ 3 0 10226556 09530515 03603878 -juggle n 2 2 @ + 2 0 00338994 00099799 -juggler n 1 2 @ + 1 0 10226413 -jugglery n 2 2 @ + 2 0 00754118 00562179 -juggling n 2 2 @ + 2 0 00338994 00099799 -juglandaceae n 1 3 @ #m %m 1 0 12317919 -juglandales n 1 3 @ #m %m 1 0 12317763 -juglans n 1 3 @ #m %m 1 0 12318164 -juglans_californica n 1 2 @ #m 1 0 12318782 -juglans_cinerea n 1 3 @ #m %p 1 0 12318965 -juglans_nigra n 1 3 @ #m %p 1 0 12319204 -juglans_regia n 1 3 @ #m %m 1 0 12319414 -jugoslav n 1 2 @ #m 1 0 09750891 -jugoslavian n 1 2 @ #m 1 0 09750891 -jugoslavija n 1 3 @ %m %p 1 0 08816236 -jugular n 2 4 @ ~ #p + 2 0 05370918 05042573 -jugular_vein n 1 4 @ ~ #p + 1 0 05370918 -juice n 4 4 @ ~ + ; 4 1 07923748 14050434 11470348 05398609 -juice_reamer n 1 1 @ 1 0 04059516 -juicer n 2 2 @ ~ 2 0 10034201 04059516 -juiciness n 1 2 @ + 1 0 04996215 -jujitsu n 1 2 @ ; 1 0 00825951 -juju n 2 1 @ 2 1 05967894 03603958 -jujube n 3 4 @ #m #p %p 3 0 13143285 07765999 07606058 -jujube_bush n 1 3 @ #m %p 1 0 13143285 -jujutsu n 1 2 @ ; 1 0 00825951 -juke n 2 2 @ ; 2 0 03603199 00172217 -juke_house n 1 1 @ 1 0 03603199 -juke_joint n 1 1 @ 1 0 03603199 -jukebox n 1 1 @ 1 1 03604156 -julep n 1 2 @ %s 1 0 07915491 -jules_alfred_huot_de_goncourt n 1 1 @ 1 0 11006689 -jules_de_goncourt n 1 1 @ 1 0 11006689 -jules_emile_frederic_massenet n 1 1 @ 1 0 11163709 -jules_feifer n 1 1 @ 1 0 10968257 -jules_verne n 1 1 @ 1 0 11363412 -julia_evelina_smith n 1 1 @ 1 0 11305851 -julia_ward_howe n 1 1 @ 1 0 11062649 -julian n 1 1 @ 1 0 11094312 -julian_bond n 1 1 @ 1 0 10855987 -julian_calendar n 1 1 @ 1 0 15174885 -julian_the_apostate n 1 1 @ 1 0 11094312 -julienne n 2 1 @ 2 0 07708124 07585997 -julienne_vegetable n 1 1 @ 1 0 07708124 -julio_iglesias n 1 1 @ 1 0 11070855 -julius_caesar n 1 2 @ + 1 1 10878161 -julius_erving n 1 1 @ 1 0 10960772 -julius_marx n 1 2 @ #m 1 0 11160676 -julius_ullman n 1 1 @ 1 0 10965361 -julius_winfield_erving n 1 1 @ 1 0 10960772 -july n 1 3 @ #p %p 1 1 15212167 -july_1 n 1 3 @ #p ; 1 0 15200314 -july_4 n 1 2 @ #p 1 0 15190084 -jumada_i n 1 2 @ #p 1 0 15217787 -jumada_ii n 1 2 @ #p 1 0 15217911 -jumbal n 1 1 @ 1 0 07633861 -jumbie_bead n 1 2 @ #m 1 0 12554029 -jumble n 3 3 @ ~ + 3 1 14500567 07633861 05953416 -jumble_sale n 1 1 @ 1 0 01119850 -jumbo_jet n 1 1 @ 1 0 03604311 -jumbojet n 1 1 @ 1 0 03604311 -jumby_bead n 1 2 @ #m 1 0 12554029 -jumby_bean n 1 2 @ #m 1 0 12553742 -jumby_tree n 1 2 @ #m 1 0 12553742 -jument n 1 3 @ ~ + 1 0 01317089 -jump n 6 3 @ ~ + 6 0 07414222 07358985 06618427 00867357 00303849 00119568 -jump-start n 1 1 @ 1 0 01265921 -jump_ball n 1 3 @ ~ ; 1 0 00241245 -jump_cut n 1 1 @ 1 0 06618549 -jump_rope n 2 2 @ ~ 2 0 03605233 00485632 -jump_seat n 1 1 @ 1 1 03605417 -jump_shot n 1 2 @ ; 1 0 00111503 -jump_suit n 2 1 @ 2 0 03605598 03605504 -jumper n 8 4 @ ~ %p ; 8 0 10226993 10226803 04370048 03604763 03604629 03604536 03604400 00111503 -jumper_cable n 1 2 @ ~ 1 0 03604843 -jumper_lead n 1 2 @ ~ 1 0 03604843 -jumpiness n 1 2 @ + 1 0 07525760 -jumping n 2 3 @ ~ + 2 0 00440218 00119568 -jumping-off_place n 1 1 @ 1 0 08508834 -jumping-off_point n 1 1 @ 1 0 00236194 -jumping_bean n 1 2 @ #p 1 0 12928819 -jumping_bristletail n 1 2 @ #m 1 0 02271222 -jumping_gene n 1 1 @ 1 0 14831812 -jumping_jack n 1 1 @ 1 0 03605073 -jumping_mouse n 1 3 @ ~ #m 1 0 02350989 -jumping_orchid n 1 2 @ #m 1 0 12050014 -jumping_plant_louse n 1 2 @ #m 1 0 02256172 -jumping_seed n 1 2 @ #p 1 0 12928819 -jumping_up_and_down n 1 1 @ 1 1 00120647 -jumpstart n 1 1 @ 1 0 01265921 -jumpsuit n 1 1 @ 1 0 03605598 -juncaceae n 1 3 @ #m %m 1 0 11743109 -juncaginaceae n 1 3 @ #m %m 1 0 12617140 -junco n 1 3 @ ~ #m 1 0 01534433 -junco_hyemalis n 1 1 @ 1 0 01534582 -junction n 5 3 @ ~ + 5 1 03605722 14420954 13911151 03605915 00147454 -junction_barrier n 1 1 @ 1 0 03606106 -junction_rectifier n 1 2 @ ~ 1 0 03202760 -junction_transistor n 1 4 @ ~ %p ; 1 0 04471632 -juncture n 3 3 @ ~ + 3 1 07416714 14033185 13911151 -juncus n 1 3 @ #m %m 1 0 11743570 -juncus_articulatus n 1 1 @ 1 0 11744011 -juncus_bufonius n 1 1 @ 1 0 11744108 -juncus_effusus n 1 2 @ #m 1 0 11743772 -juncus_inflexus n 1 1 @ 1 0 11744251 -juncus_leseurii n 1 1 @ 1 0 11744355 -juncus_tenuis n 1 1 @ 1 0 11744471 -jund-ul-islam n 1 2 @ ; 1 0 08028148 -june n 1 3 @ #p %p 1 1 15211806 -june_14 n 1 2 @ #p 1 1 15189838 -june_21 n 1 2 @ #p 1 1 15222012 -june_23 n 1 2 @ #p 1 0 15222369 -june_24 n 1 2 @ #p 1 0 15222202 -june_29 n 1 2 @ #p 1 0 15193776 -june_3 n 1 2 @ #p 1 0 15189684 -june_beetle n 1 2 @ ~ 1 0 02172870 -june_bug n 1 2 @ ~ 1 0 02172870 -june_grass n 1 2 @ #m 1 0 12131767 -juneau n 1 2 @ #p 1 0 09055786 -juneberry n 2 5 @ ~ #m #p %p 2 0 12623524 07745661 -juneberry_holly n 1 1 @ 1 0 12758250 -jung n 1 3 @ + - 1 0 11094611 -jungermanniaceae n 1 2 @ #m 1 0 11543264 -jungermanniales n 1 3 @ #m %m 1 0 11542920 -jungian n 1 1 @ 1 0 10227166 -jungian_psychology n 1 1 @ 1 0 06057435 -jungle n 3 3 @ ~ + 3 0 08509111 08478171 08439022 -jungle_cat n 1 2 @ #m 1 0 02126028 -jungle_cock n 1 1 @ 1 0 01791314 -jungle_fever n 1 1 @ 1 0 14073795 -jungle_fowl n 1 3 @ ~ #m 1 0 01791107 -jungle_gym n 1 1 @ 1 0 03603442 -jungle_hen n 1 1 @ 1 0 01791388 -jungle_rot n 1 1 @ 1 0 14227806 -junin_virus n 1 2 @ #m 1 0 01330696 -junior n 4 2 @ + 4 3 10784281 10227393 10227266 10227490 -junior_class n 1 1 @ 1 0 08239488 -junior_college n 1 2 @ ~ 1 0 08282364 -junior_featherweight n 1 1 @ 1 0 10227601 -junior_high n 1 1 @ 1 1 08409835 -junior_high_school n 1 1 @ 1 1 08409835 -junior_lightweight n 1 1 @ 1 0 10227698 -junior_middleweight n 1 1 @ 1 0 10227793 -junior_school n 1 1 @ 1 0 08277612 -junior_status n 1 1 @ 1 0 13952386 -junior_varsity n 1 1 @ 1 0 08080510 -junior_welterweight n 1 1 @ 1 0 10227889 -juniper n 2 4 @ ~ #m %p 2 0 12567490 11636566 -juniper_berries n 1 3 @ #s #p 1 0 07827130 -juniper_berry n 1 2 @ #p 1 0 11636835 -juniper_bush n 1 2 @ #m 1 0 12567490 -juniperic_acid n 1 1 @ 1 0 14614744 -junipero_serra n 1 1 @ 1 0 11293470 -juniperus n 1 3 @ #m %m 1 0 11636389 -juniperus_bermudiana n 1 2 @ #m 1 0 11637482 -juniperus_communis n 1 2 @ %p 1 0 11638109 -juniperus_communis_depressa n 1 1 @ 1 0 11638378 -juniperus_flaccida n 1 1 @ 1 0 11638698 -juniperus_horizontalis n 1 1 @ 1 0 11638525 -juniperus_procera n 1 2 @ #m 1 0 11637659 -juniperus_sabina n 1 1 @ 1 0 11637991 -juniperus_silicicola n 1 1 @ 1 0 11637810 -juniperus_virginiana n 1 1 @ 1 0 11637247 -junk n 2 4 @ ~ %p + 2 1 14857897 03603594 -junk_bond n 1 1 @ 1 0 13338439 -junk_dna n 1 1 @ 1 0 14831338 -junk_e-mail n 1 1 @ 1 0 06280347 -junk_food n 1 1 @ 1 0 07702509 -junk_heap n 1 1 @ 1 0 08573842 -junk_mail n 1 1 @ 1 0 06276141 -junk_pile n 1 1 @ 1 0 08573842 -junk_shop n 1 1 @ 1 0 03606251 -junker n 1 1 @ 1 0 09748770 -junkers n 1 1 @ 1 0 11094780 -junket n 3 3 @ ~ + 3 0 07611733 00311809 00308681 -junketing n 1 2 @ + 1 0 00312160 -junkie n 2 2 @ ~ 2 0 10035952 09769076 -junky n 2 2 @ ~ 2 0 10035952 09769076 -junkyard n 1 1 @ 1 1 08586978 -juno n 1 2 @ ; 1 0 09563805 -junta n 1 1 @ 1 0 08241964 -junto n 1 2 @ %m 1 0 08241798 -jupati n 1 1 @ 1 0 12595452 -jupati_palm n 1 1 @ 1 0 12595452 -jupaty n 1 1 @ 1 0 12595452 -jupiter n 2 5 @ ~ #m + ; 2 1 09322454 09573966 -jupiter's_beard n 1 2 @ #m 1 0 12506784 -jupiter_fidius n 1 1 @ 1 0 09574657 -jupiter_fulgur n 1 1 @ 1 0 09574226 -jupiter_fulminator n 1 1 @ 1 0 09574226 -jupiter_optimus_maximus n 1 1 @ 1 0 09574544 -jupiter_pluvius n 1 1 @ 1 0 09574446 -jupiter_tonans n 1 1 @ 1 0 09574350 -jurassic n 1 2 @ #p 1 0 15126595 -jurassic_period n 1 2 @ #p 1 0 15126595 -jurisdiction n 2 4 @ ~ + ; 2 2 05198427 08590369 -jurisprudence n 2 5 @ ~ %p + - 2 1 06161718 08441203 -jurist n 2 4 @ ~ + ; 2 1 10227985 10225219 -juror n 1 3 @ ~ #m 1 1 10228278 -jury n 2 4 @ ~ #m %m 2 2 08414119 08414807 -jury_box n 1 2 @ #p 1 0 03606347 -jury_duty n 1 1 @ 1 0 01131135 -jury_mast n 1 1 @ 1 0 03606465 -jury_system n 1 2 @ ; 1 0 05903738 -juryman n 1 3 @ ~ #m 1 0 10228278 -jurywoman n 1 3 @ ~ #m 1 0 10228278 -jus_civile n 1 2 @ - 1 0 06534659 -jus_sanguinis n 1 2 @ ; 1 0 05956906 -jus_soli n 1 2 @ ; 1 0 05957078 -jussieu n 1 1 @ 1 0 11094928 -jussive_mood n 1 1 @ 1 0 13802306 -just-noticeable_difference n 1 2 @ ; 1 0 05713101 -just_deserts n 1 1 @ 1 0 07294907 -just_the_ticket n 1 1 @ 1 0 04716703 -justice n 4 6 ! @ ~ %p ; - 4 3 04850117 00694681 10225219 08135342 -justice_department n 1 3 @ %p ; 1 0 08135342 -justice_of_the_peace n 1 2 @ ; 1 1 10228468 -justiciar n 1 2 @ ; 1 0 10228592 -justiciary n 2 2 @ ; 2 0 10228592 08587086 -justification n 3 3 @ ~ + 3 2 05823054 06740183 01241767 -justifier n 1 2 @ + 1 0 09798534 -justinian n 1 1 @ 1 0 11095123 -justinian_code n 1 2 @ - 1 0 06534659 -justinian_i n 1 1 @ 1 0 11095123 -justinian_the_great n 1 1 @ 1 0 11095123 -justness n 2 3 @ ~ + 2 1 04713853 04850117 -jut n 2 2 @ ~ 2 0 13894434 00407090 -jute n 2 2 @ #s 2 0 14925645 09703181 -jutish n 1 1 @ 1 0 06949946 -jutland n 2 4 @ #p %p ; 2 0 08761039 01282466 -jutting n 1 2 @ + 1 0 00407090 -juvenal n 1 1 @ 1 0 11095391 -juvenescence n 1 1 @ 1 0 13504403 -juvenile n 1 5 ! @ ~ %p + 1 0 09622049 -juvenile-onset_diabetes n 1 2 @ %p 1 0 14118423 -juvenile_amaurotic_idiocy n 1 1 @ 1 0 14169128 -juvenile_body n 1 3 @ ~ #p 1 0 05219297 -juvenile_court n 1 1 @ 1 0 08333868 -juvenile_delinquency n 1 2 @ ; 1 0 00736219 -juvenile_delinquent n 1 1 @ 1 0 10000945 -juvenile_diabetes n 1 2 @ %p 1 0 14118423 -juvenile_person n 1 3 @ ~ %p 1 0 09622049 -juvenile_rheumatoid_arthritis n 1 1 @ 1 0 14188030 -juvenile_wart n 1 1 @ 1 0 04696969 -juvenility n 2 2 @ + 2 0 14426568 04928585 -juxtaposition n 2 3 @ ~ + 2 1 01051801 08624095 -jv n 1 1 @ 1 0 08080510 -jyaistha n 1 2 @ #p 1 0 15220149 -jylland n 1 2 @ %p 1 0 08761039 -jynx n 1 3 @ #m %m 1 0 01841569 -k n 7 6 @ ~ #m #s #p %p 7 1 13714756 14650807 13750844 13627681 13627516 06832248 03606572 -k'ung_futzu n 1 1 @ 1 0 10906822 -k-dur_20 n 1 2 @ ; 1 0 14861042 -k-lor n 1 2 @ ; 1 0 14861042 -k-lyte n 1 2 @ ; 1 0 14861042 -k-meson n 1 1 @ 1 0 09323660 -k.e. n 1 1 @ 1 0 11470492 -k2 n 1 2 @ #p 1 0 09322701 -k_particle n 1 1 @ 1 0 09323660 -k_ration n 1 1 @ 1 0 07566092 -ka n 1 1 @ 1 0 09526606 -kaaba n 1 3 @ #p ; 1 0 03606719 -kabala n 2 2 @ ; 2 0 06673770 05954100 -kabbala n 2 3 @ + ; 2 0 06673770 05954100 -kabbalah n 2 2 @ ; 2 0 06673770 05954100 -kabbalism n 2 2 @ ; 2 0 05954366 01213406 -kabbalist n 2 2 @ ; 2 0 09885534 09885416 -kabob n 1 2 @ ~ 1 0 07869775 -kabolin n 1 2 @ ; 1 0 14748335 -kabul n 1 2 @ #p 1 0 08704237 -kach n 1 2 @ ; 1 0 08028397 -kachaturian n 1 1 @ 1 0 11095587 -kachin n 1 2 @ ~ 1 0 06933022 -kachina n 3 1 @ 3 0 10228712 09666883 03607029 -kachinic n 1 2 @ ~ 1 0 06933022 -kadai n 1 2 @ ~ 1 0 06934132 -kadai_language n 1 2 @ ~ 1 0 06934132 -kadikoy n 1 2 @ #p 1 0 09041199 -kaffir n 2 2 @ ; 2 0 12137337 10228864 -kaffir_boom n 2 1 @ 2 0 12528768 12528109 -kaffir_bread n 1 2 @ #m 1 0 11603462 -kaffir_cat n 1 2 @ #m 1 0 02125872 -kaffir_corn n 1 1 @ 1 0 12137337 -kaffir_pox n 1 1 @ 1 0 14124688 -kaffiyeh n 1 1 @ 1 0 03607186 -kafir n 2 2 @ ; 2 0 10228864 09689631 -kafir_corn n 1 1 @ 1 0 12137337 -kafiri n 1 1 @ 1 0 06972756 -kafka n 1 1 @ 1 0 11095731 -kafocin n 1 1 @ 1 0 02996570 -kaftan n 2 1 @ 2 0 02936570 02936402 -kahane_chai n 1 2 @ ; 1 0 08028397 -kahikatea n 1 1 @ 1 0 11653904 -kahlil_gibran n 1 1 @ 1 0 10997997 -kahlua n 1 1 @ 1 0 07910970 -kahn n 1 1 @ 1 0 11095907 -kahoolawe n 1 2 @ #p 1 0 09079747 -kahoolawe_island n 1 2 @ #p 1 0 09079747 -kai_apple n 1 2 @ #p 1 0 07762373 -kail n 2 3 @ ~ #m 2 0 11876976 07714078 -kainite n 1 2 @ %s 1 0 14678952 -kainogenesis n 1 1 @ 1 0 13444940 -kaiser n 1 2 @ ~ 1 0 10229338 -kaiser_bill n 1 1 @ 1 0 11386853 -kaiser_roll n 1 1 @ 1 0 07691954 -kaiser_wilhelm n 1 1 @ 1 0 11386853 -kakatoe n 1 3 @ #m %m 1 0 01818959 -kakatoe_galerita n 1 1 @ 1 0 01819313 -kakatoe_leadbeateri n 1 1 @ 1 0 01819465 -kakemono n 1 1 @ 1 0 03607358 -kaki n 2 3 @ #m %p 2 0 12771390 02035656 -kakke_disease n 1 1 @ 1 0 14199389 -kala-azar n 1 1 @ 1 0 14181049 -kala_azar n 1 2 @ ~ 1 0 14178077 -kalaallit_nunaat n 1 4 @ #p %p - 1 0 08819397 -kalahari n 1 2 @ #p 1 0 09170294 -kalahari_desert n 1 2 @ #p 1 0 09170294 -kalamazoo n 1 1 @ 1 0 09101233 -kalansuwa n 1 1 @ 1 0 03607527 -kalantas n 1 2 @ #m 1 0 12700357 -kalapooia n 1 1 @ 1 0 09658254 -kalapooian n 1 1 @ 1 0 06925103 -kalapuya n 1 1 @ 1 0 09658254 -kalapuyan n 1 1 @ 1 0 06925103 -kalashnikov n 1 1 @ 1 0 03607659 -kalashnikov_culture n 1 1 @ 1 0 06194894 -kale n 3 3 @ ~ #m 3 1 13385216 11876976 07714078 -kaleidoscope n 2 2 @ + 2 0 05931827 03607756 -kalemia n 1 1 @ 1 0 14270016 -kali n 2 1 @ 2 0 11834654 09526703 -kalian n 1 1 @ 1 0 03533014 -kalif n 1 2 @ ~ 1 0 09887496 -kalimantan n 2 4 @ #p %m %p 2 0 08909537 08843215 -kalinin n 1 1 @ 1 0 11096033 -kaliph n 1 2 @ ~ 1 0 09887496 -kaliuresis n 1 1 @ 1 0 14270127 -kalka n 2 1 @ 2 0 09737835 06929008 -kalki n 1 1 @ 1 0 09530629 -kallman's_syndrome n 1 1 @ 1 0 14075838 -kalmia n 1 3 @ ~ #m 1 0 12237486 -kalmia_angustifolia n 1 1 @ 1 0 12238073 -kalmia_latifolia n 1 1 @ 1 0 12237641 -kalmia_polifolia n 1 1 @ 1 0 12237855 -kalon_tripa n 1 2 @ #m 1 0 10229034 -kalotermes n 1 2 @ #m 1 0 02225407 -kalotermitidae n 1 3 @ #m %m 1 0 02225231 -kalpac n 1 1 @ 1 0 02941228 -kaluga n 1 2 @ #p 1 0 09005153 -kalumpang n 1 1 @ 1 0 12195734 -kaluresis n 1 1 @ 1 0 14270127 -kam-sui n 1 1 @ 1 0 06934309 -kam-tai n 1 2 @ ~ 1 0 06934132 -kam_muang n 1 1 @ 1 0 06935417 -kama n 1 1 @ 1 0 09526808 -kamarupan n 1 2 @ ~ 1 0 06931891 -kamasutra n 1 2 @ ; 1 0 06623788 -kamba n 1 1 @ 1 0 06993348 -kamchatka_peninsula n 1 3 @ #p %p 1 1 09021958 -kamchatkan_sea_eagle n 1 1 @ 1 0 01615303 -kameez n 1 1 @ 1 0 03607923 -kamehameha_i n 1 1 @ 1 0 11096192 -kamehameha_the_great n 1 1 @ 1 0 11096192 -kamet n 1 2 @ #p 1 0 09322930 -kami n 1 1 @ 1 0 09535255 -kamia n 2 1 @ 2 0 09658398 06922875 -kamikaze n 2 2 @ ; 2 1 03608074 10229193 -kammon_strait_bridge n 1 2 @ #p 1 0 03608224 -kampala n 1 2 @ #p 1 0 09043926 -kampong n 1 1 @ 1 0 08673039 -kampuchea n 1 7 @ #m #p %m %p + - 1 0 08716738 -kampuchean n 1 4 @ ~ #m + 1 0 09696280 -kan_river n 1 2 @ #p 1 0 09286843 -kanaf n 1 2 @ %p 1 0 12178129 -kanamycin n 1 1 @ 1 0 03608356 -kananga n 1 2 @ #p 1 0 08735008 -kanara n 1 2 @ #p 1 0 08902753 -kanarese n 2 2 @ ~ 2 0 09674631 06979957 -kanawha n 1 2 @ #p 1 0 09323085 -kanawha_river n 1 2 @ #p 1 0 09323085 -kanchanjanga n 1 2 @ #p 1 0 09323221 -kanchenjunga n 1 2 @ #p 1 0 09323221 -kanchil n 1 2 @ #m 1 0 02436224 -kandahar n 1 2 @ #p 1 0 08704409 -kandinski n 1 1 @ 1 0 11096338 -kandinsky n 1 1 @ 1 0 11096338 -kandy n 1 2 @ #p 1 0 08719705 -kangaroo n 1 3 @ ~ #m 1 0 01877134 -kangaroo's-foot n 1 2 @ #m 1 0 12312728 -kangaroo's_paw n 1 2 @ #m 1 0 12312728 -kangaroo-foot_plant n 1 2 @ #m 1 0 12312728 -kangaroo_apple n 1 1 @ 1 0 12893794 -kangaroo_bear n 1 1 @ 1 0 01882714 -kangaroo_court n 1 1 @ 1 0 08333995 -kangaroo_hare n 1 2 @ #m 1 0 01878335 -kangaroo_jerboa n 1 2 @ #m 1 0 01880813 -kangaroo_mouse n 2 2 @ #m 2 0 02350670 02334728 -kangaroo_paw n 1 2 @ #m 1 0 12312728 -kangaroo_rat n 2 3 @ ~ #m 2 0 02350105 01880152 -kannada n 1 2 @ ~ 1 0 06979957 -kansa n 2 1 @ 2 0 09658543 06910323 -kansan n 1 1 @ 1 0 09743192 -kansas n 4 3 @ #p %p 4 1 09087599 09658543 09323470 06910323 -kansas_city n 2 2 @ #p 2 1 09107098 09088396 -kansas_river n 1 2 @ #p 1 0 09323470 -kansu n 1 3 @ #p %p 1 0 08725692 -kant n 1 2 @ + 1 0 11096508 -kantrex n 1 2 @ ; 1 0 03608356 -kanzu n 1 2 @ ; 1 0 03608504 -kaochlor n 1 2 @ ; 1 0 14861042 -kaoliang n 1 1 @ 1 0 12138248 -kaolin n 1 3 @ #s - 1 0 14670639 -kaoline n 1 3 @ #s - 1 0 14670639 -kaolinite n 1 1 @ 1 0 14679147 -kaon n 1 1 @ 1 0 09323660 -kaopectate n 1 2 @ %s 1 0 03608661 -kapeika n 1 1 @ 1 0 13700142 -kaph n 1 2 @ #m 1 0 06837787 -kaplan_group n 1 2 @ ; 1 0 08028623 -kapok n 2 2 @ #s 2 0 14925776 12190410 -kaposi's_sarcoma n 1 1 @ 1 0 14240775 -kaposi's_varicelliform_eruption n 1 1 @ 1 0 14225632 -kappa n 1 2 @ #m 1 0 06835098 -kappa-meson n 1 1 @ 1 0 09323660 -kapsiki n 1 1 @ 1 0 06983997 -kapuka n 1 2 @ #m 1 0 12949361 -kara_kum n 1 2 @ #p 1 0 09170475 -kara_sea n 1 3 @ #p %p 1 0 09324118 -karabiner n 1 1 @ 1 0 02960690 -karachi n 1 2 @ #p 1 0 08977211 -karaites n 1 1 @ 1 0 08094386 -karakalpak n 2 1 @ 2 0 09735913 06927851 -karakoram n 1 3 @ #p %p 1 0 09323824 -karakoram_range n 1 3 @ #p %p 1 0 09323824 -karakorum_range n 1 3 @ #p %p 1 0 09323824 -karakul n 1 1 @ 1 0 02414043 -karaoke n 1 1 @ 1 0 01255302 -karat n 1 1 @ 1 0 13585127 -karate n 1 2 @ ; 1 0 00826397 -karaya_gum n 1 1 @ 1 0 14901793 -karbala n 1 3 @ #p - 1 0 08914573 -karel_capek n 1 1 @ 1 0 10881616 -karelia n 1 3 @ #p %m 1 0 08779830 -karelian n 2 2 @ #m 2 0 09706746 06958063 -karelian_isthmus n 1 1 @ 1 0 09324322 -karen n 1 1 @ 1 0 06932130 -karen_blixen n 1 1 @ 1 0 10935745 -karen_danielsen_horney n 1 1 @ 1 0 11060805 -karen_horney n 1 1 @ 1 0 11060805 -karenic n 1 1 @ 1 0 06932130 -karl-marx-stadt n 1 2 @ #p 1 0 08770518 -karl_adolf_eichmann n 1 1 @ 1 0 10953797 -karl_adolph_verner n 1 1 @ 1 0 11363552 -karl_alex_muller n 1 1 @ 1 0 11195913 -karl_augustus_menninger n 1 1 @ 1 0 11174563 -karl_baedeker n 1 1 @ 1 0 10831003 -karl_barth n 1 1 @ 1 0 10836308 -karl_czerny n 1 1 @ 1 0 10920366 -karl_friedrich_gauss n 1 1 @ 1 0 10992675 -karl_friedrich_hieronymus_von_munchhausen n 1 1 @ 1 0 11196305 -karl_gauss n 1 1 @ 1 0 10992675 -karl_gjellerup n 1 1 @ 1 0 11001567 -karl_gunnar_myrdal n 1 1 @ 1 0 11198861 -karl_gustav_jacob_jacobi n 1 1 @ 1 0 11077649 -karl_jaspers n 1 1 @ 1 0 11080987 -karl_landsteiner n 1 1 @ 1 0 11116117 -karl_linne n 1 1 @ 1 0 11133551 -karl_marx n 1 1 @ 1 0 11160457 -karl_menninger n 1 1 @ 1 0 11174563 -karl_popper n 1 1 @ 1 0 11242849 -karl_rudolf_gerd_von_rundstedt n 1 1 @ 1 0 11273679 -karl_scheele n 1 1 @ 1 0 11283843 -karl_theodor_jaspers n 1 1 @ 1 0 11080987 -karl_von_clausewitz n 1 1 @ 1 0 10899747 -karl_von_frisch n 1 1 @ 1 0 10982870 -karl_waldemar_ziegler n 1 1 @ 1 0 11406906 -karl_wernicke n 1 1 @ 1 0 11381684 -karl_wilhelm_scheele n 1 1 @ 1 0 11283843 -karl_wilhelm_siemens n 1 1 @ 1 0 11299890 -karlfeldt n 1 1 @ 1 0 11096645 -karloff n 1 1 @ 1 0 11096801 -karma n 1 2 @ ; 1 0 07330362 -karnataka n 1 2 @ #p 1 0 08902196 -karok n 2 1 @ 2 0 09658670 06921506 -karol_wojtyla n 1 1 @ 1 0 11087767 -karpov n 1 1 @ 1 0 11096991 -karsavina n 1 1 @ 1 0 11097208 -kartik n 1 2 @ #p 1 0 15220743 -kartikeya n 1 1 @ 1 0 09527001 -karttika n 1 2 @ #p 1 0 15220743 -karttikeya n 1 1 @ 1 0 09527001 -karyokinesis n 1 3 @ #p + 1 0 13504739 -karyolymph n 1 1 @ 1 0 05398871 -karyolysis n 1 1 @ 1 0 13504947 -karyon n 1 5 @ ~ #p %s %p 1 0 05434927 -karyoplasm n 1 2 @ #s 1 0 05434784 -karyotype n 1 1 @ 1 0 05444876 -kasai n 1 2 @ #p 1 0 09324474 -kasai_river n 1 2 @ #p 1 0 09324474 -kasbah n 1 1 @ 1 0 08628141 -kasha n 1 1 @ 1 0 07704579 -kashag n 1 2 @ %m 1 0 08383185 -kashmir n 1 4 @ #p %p - 1 0 08975617 -kashmir_goat n 1 1 @ 1 0 02417242 -kashmiri n 2 2 @ + 2 0 09676021 06972874 -kaspar_friedrich_wolff n 1 1 @ 1 0 11394848 -kasparov n 1 1 @ 1 0 11097335 -kassite n 2 1 @ 2 0 09640577 06968601 -kastler n 1 1 @ 1 0 11097525 -kat n 1 1 @ 1 0 03608870 -katabatic_wind n 1 1 @ 1 0 11443283 -katabolism n 1 2 @ #p 1 0 13443787 -katamorphism n 1 2 ! @ 1 0 13505069 -katar n 2 5 @ #m #p %m %p 2 0 08986905 08986691 -katar_peninsula n 1 3 @ #p %p 1 0 08986691 -katari n 1 3 @ #m + 1 0 09728137 -kate_chopin n 1 1 @ 1 0 10896823 -kate_o'flaherty_chopin n 1 1 @ 1 0 10896823 -kate_smith n 1 1 @ 1 0 11306008 -katharevusa n 1 1 @ 1 0 06976959 -katharine_hepburn n 1 1 @ 1 0 11043980 -katharine_houghton_hepburn n 1 1 @ 1 0 11043980 -katharobe n 1 1 @ 1 0 13124529 -katharometer n 1 1 @ 1 0 03609147 -katharsis n 2 2 @ ; 2 0 00253577 00253395 -katherine_anne_porter n 1 1 @ 1 0 11243424 -katherine_cornell n 1 1 @ 1 0 10911534 -katherine_mansfield n 1 1 @ 1 0 11154489 -kathleen_mansfield_beauchamp n 1 1 @ 1 0 11154489 -kathmandu n 1 2 @ #p 1 0 08906809 -kathryn_elizabeth_smith n 1 1 @ 1 0 11306008 -katmai_national_park n 1 2 @ #p 1 0 08606370 -katmandu n 1 2 @ #p 1 0 08906809 -katowice n 1 2 @ #p 1 0 08984010 -katsina n 1 2 @ #p 1 0 08974468 -katsura_tree n 1 2 @ #m 1 0 11702713 -katsushika_hokusai n 1 1 @ 1 0 11055915 -katsuwonidae n 1 2 @ #m 1 0 02629048 -katsuwonus n 1 3 @ #m %m 1 0 02628856 -katsuwonus_pelamis n 1 2 @ #m 1 0 02629230 -kattegatt n 1 2 @ #p 1 0 09324859 -katydid n 1 3 @ ~ #m 1 0 02228341 -katzenjammer n 2 1 @ 2 0 14447165 07385660 -kauai n 1 2 @ #p 1 0 09079875 -kauai_island n 1 2 @ #p 1 0 09079875 -kaufman n 1 1 @ 1 0 11097625 -kaunas n 1 2 @ #p 1 0 09014470 -kaunda n 1 1 @ 1 0 11097820 -kauri n 3 3 @ #m #s 3 0 14895599 11647703 11647548 -kauri_copal n 1 1 @ 1 0 14895599 -kauri_gum n 1 1 @ 1 0 14895599 -kauri_pine n 1 4 @ ~ #m %s 1 0 11647306 -kauri_resin n 1 1 @ 1 0 14895599 -kaury n 1 2 @ #m 1 0 11647703 -kava n 1 2 @ ; 1 0 07886317 -kavakava n 1 2 @ ; 1 0 07886317 -kavir_desert n 1 2 @ #p 1 0 09169038 -kavrin n 1 2 @ ; 1 0 03886237 -kaw_river n 1 2 @ #p 1 0 09323470 -kawaka n 1 2 @ #m 1 0 11639306 -kawasaki_disease n 1 1 @ 1 0 14076270 -kay_boyle n 1 1 @ 1 0 10860347 -kayak n 1 2 @ + 1 0 03609235 -kayo n 1 2 @ ~ 1 0 00134099 -kayser-fleischer_ring n 1 1 @ 1 0 14266677 -kazak n 3 5 @ #m #p %m %p 3 0 09736035 09019726 06927128 -kazakh n 3 5 @ #m #p %m %p 3 0 09736035 09019726 06927128 -kazakhstan n 1 5 @ #m #p %m %p 1 0 09019726 -kazakhstani n 1 3 @ #m + 1 0 09736181 -kazakhstani_monetary_unit n 1 2 @ ~ 1 0 13700870 -kazakstan n 1 5 @ #m #p %m %p 1 0 09019726 -kazan n 2 2 @ #p 2 0 11098039 09008333 -kazimir_malevich n 1 1 @ 1 0 11151436 -kazimir_severinovich_malevich n 1 1 @ 1 0 11151436 -kazoo n 1 1 @ 1 0 03609397 -kb n 3 3 @ #p %p 3 0 13627810 13627681 13627516 -kbit n 1 2 @ #p 1 0 13627810 -kbo n 1 1 @ 1 0 09327705 -kc n 1 3 @ #p %p 1 1 15279596 -kea n 1 2 @ #m 1 0 01818832 -kean n 1 1 @ 1 0 11098223 -keaton n 1 1 @ 1 0 11098380 -keats n 1 1 @ 1 0 11098601 -keb n 1 1 @ 1 0 09512157 -kebab n 1 2 @ ~ 1 0 07869775 -keble n 1 1 @ 1 0 11098707 -kechua n 3 3 @ ~ + 3 0 09726970 08489121 06917083 -kechuan n 1 2 @ + 1 0 06917083 -kedgeree n 1 2 @ ; 1 0 07869937 -keel n 3 4 @ ~ #p %p 3 0 13919919 05228374 03609542 -keel_arch n 1 1 @ 1 0 03842754 -keelboat n 1 1 @ 1 0 03609786 -keeled_garlic n 1 1 @ 1 0 12432707 -keelson n 1 2 @ #p 1 0 03609959 -keen n 1 3 @ + ; 1 0 07042735 -keenness n 3 4 @ ~ = + 3 1 05620468 07555184 04705324 -keep n 3 4 @ ~ #p + 3 0 13365286 03610098 03525252 -keeper n 2 3 @ ~ + 2 0 10229498 09984298 -keeping n 3 3 @ ~ + 3 2 01205010 00818466 00810598 -keepsake n 1 2 @ ~ 1 1 03610270 -keeshond n 1 1 @ 1 0 02112350 -keflex n 1 2 @ ; 1 0 02996249 -keflin n 1 2 @ ; 1 0 02996249 -keftab n 1 2 @ ; 1 0 02996249 -keg n 2 2 @ ~ 2 0 13768064 03610418 -kegel_exercises n 1 1 @ 1 0 00628539 -kegful n 1 1 @ 1 0 13768064 -kei_apple n 1 3 @ #m %p 1 0 12378753 -kei_apple_bush n 1 3 @ #m %p 1 0 12378753 -keister n 1 2 @ #p 1 0 05559256 -keith_rupert_murdoch n 1 2 @ ; 1 0 11196934 -kekchi n 2 1 @ 2 0 09658815 06925743 -kekule n 1 1 @ 1 0 11098876 -kekule_formula n 1 1 @ 1 0 14774894 -keller n 1 1 @ 1 0 11099085 -kellogg n 1 1 @ 1 0 11099438 -kelly n 3 1 @ 3 0 11100139 11099923 11099729 -keloid n 1 1 @ 1 0 14363913 -kelp n 1 3 @ ~ #m 1 0 01403457 -kelp_greenling n 1 2 @ #m 1 0 02648916 -kelpie n 2 2 @ ; 2 0 09543924 02105412 -kelpwort n 1 1 @ 1 0 11834654 -kelpy n 1 2 @ ; 1 0 09543924 -kelt n 1 2 @ ~ 1 0 09688008 -kelter n 1 1 @ 1 0 14497120 -kelvin n 2 1 @ 2 0 13714756 11100260 -kelvin_scale n 1 1 @ 1 0 13853002 -kemadrin n 1 2 @ ; 1 0 04007510 -kemal_ataturk n 1 1 @ 1 0 10826952 -kemal_pasha n 1 1 @ 1 0 10826952 -ken n 2 1 @ 2 1 05805157 05623818 -ken_elton_kesey n 1 1 @ 1 0 11102674 -ken_kesey n 1 1 @ 1 0 11102674 -ken_russell n 1 1 @ 1 0 11275636 -kenaf n 2 3 @ #p %p 2 0 12178358 12178129 -kenai_fjords_national_park n 1 2 @ #p 1 0 08606502 -kenalog n 1 2 @ ; 1 0 15078768 -kendal n 1 1 @ 1 0 14988961 -kendal_green n 1 1 @ 1 0 14988961 -kendall n 1 1 @ 1 0 11100462 -kendall's_tau n 1 2 @ ; 1 0 06035213 -kendall_partial_rank_correlation n 1 2 @ ; 1 0 06034870 -kendall_rank_correlation n 1 2 @ ; 1 0 06035213 -kendall_test n 1 3 @ ~ ; 1 0 06034611 -kendrew n 1 1 @ 1 0 11100619 -kennan n 1 1 @ 1 0 11100798 -kennedia n 1 3 @ #m %m 1 0 12536665 -kennedia_coccinea n 1 1 @ 1 0 12537068 -kennedia_prostrata n 1 1 @ 1 0 12537253 -kennedy n 2 2 @ #p 2 0 11101000 09124399 -kennedy_international_airport n 1 2 @ #p 1 0 09124399 -kennedy_interrnational n 1 2 @ #p 1 0 09124399 -kennedya n 1 3 @ #m %m 1 0 12536665 -kennel n 1 2 @ + 1 0 03610524 -kennelly n 1 1 @ 1 0 11101250 -kennelly-heaviside_layer n 1 2 @ #p 1 0 08582613 -kennesaw_mountain n 1 3 @ #p ; 1 0 01282711 -kenneth_bancroft_clark n 1 1 @ 1 0 10898693 -kenneth_clark n 1 1 @ 1 0 10898693 -kenneth_david_kaunda n 1 1 @ 1 0 11097820 -kenneth_grahame n 1 1 @ 1 0 11010557 -kenneth_kaunda n 1 1 @ 1 0 11097820 -kenneth_roberts n 1 1 @ 1 0 11264343 -kennewick n 1 2 @ #p 1 0 09153873 -kenning n 1 1 @ 1 0 07106651 -keno n 1 1 @ 1 0 00504660 -kenogenesis n 1 1 @ 1 0 13444940 -kent n 2 4 @ #m #p %p 2 1 08882934 11101576 -kentan n 1 1 @ 1 0 12427566 -kentish n 2 1 @ 2 0 06949946 06949326 -kentuckian n 1 1 @ 1 0 09743275 -kentucky n 1 3 @ #p %p 1 1 09089139 -kentucky_black_bass n 1 1 @ 1 0 02564935 -kentucky_blue n 1 2 @ #m 1 0 12131767 -kentucky_bluegrass n 1 2 @ #m 1 0 12131767 -kentucky_coffee_tree n 1 2 @ #m 1 0 12496427 -kentucky_derby n 1 1 @ 1 0 07462119 -kentucky_wonder n 1 1 @ 1 0 07728284 -kentucky_wonder_bean n 1 1 @ 1 0 07728284 -kentucky_yellowwood n 1 2 @ #m 1 0 12516165 -kentucy_blue_grass n 1 2 @ #m 1 0 12131767 -kenya n 1 5 @ #p %m %p + 1 0 08928193 -kenya_fever n 1 1 @ 1 0 14078120 -kenyan n 1 3 @ #m + 1 0 09719309 -kenyan_monetary_unit n 1 2 @ ~ 1 0 13706521 -kenyan_shilling n 1 1 @ 1 0 13706628 -kenyapithecus n 1 2 @ #m 1 0 02478990 -kenyata n 1 1 @ 1 0 11101700 -kenzo_tange n 1 1 @ 1 0 11330963 -keogh_plan n 1 1 @ 1 0 05912243 -keokuk n 1 1 @ 1 0 11101843 -kepi n 1 2 @ %p 1 0 03610682 -kepler n 1 1 @ 1 0 11101986 -kepler's_first_law n 1 1 @ 1 0 05879693 -kepler's_law n 1 3 @ ~ ; 1 0 05879441 -kepler's_law_of_planetary_motion n 1 3 @ ~ ; 1 0 05879441 -kepler's_second_law n 1 1 @ 1 0 05879856 -kepler's_third_law n 1 1 @ 1 0 05880187 -kept_woman n 1 2 @ ~ 1 0 10323752 -kera n 1 1 @ 1 0 06985490 -keratalgia n 1 1 @ 1 0 14328513 -keratectasia n 1 1 @ 1 0 14104118 -keratin n 1 2 @ #s 1 0 14732472 -keratinisation n 1 2 @ + 1 0 13505249 -keratinization n 1 2 @ + 1 0 13505249 -keratitis n 1 1 @ 1 0 14348300 -keratoacanthoma n 1 1 @ 1 0 14239097 -keratocele n 1 1 @ 1 0 14297329 -keratoconjunctivitis n 1 1 @ 1 0 14348429 -keratoconus n 1 1 @ 1 0 14104218 -keratoderma n 1 1 @ 1 0 14227906 -keratoderma_blennorrhagica n 1 1 @ 1 0 14228512 -keratodermia n 1 1 @ 1 0 14227906 -keratohyalin n 1 1 @ 1 0 14926180 -keratoiritis n 1 1 @ 1 0 14348538 -keratomalacia n 1 1 @ 1 0 14266835 -keratomycosis n 1 1 @ 1 0 14182242 -keratonosis n 1 1 @ 1 0 14228038 -keratonosus n 1 1 @ 1 0 14256585 -keratoplasty n 1 2 @ ~ 1 0 00681613 -keratoscleritis n 1 1 @ 1 0 14348647 -keratoscope n 1 1 @ 1 0 03610836 -keratoscopy n 1 1 @ 1 0 00643621 -keratosis n 1 2 @ ~ 1 0 14228148 -keratosis_blennorrhagica n 1 1 @ 1 0 14228512 -keratosis_follicularis n 1 1 @ 1 0 14228712 -keratosis_nigricans n 1 1 @ 1 0 14221924 -keratosis_pilaris n 1 1 @ 1 0 14228885 -keratotomy n 1 2 @ ~ 1 0 00679910 -kerb n 1 2 @ %p 1 0 03148920 -kerb_crawler n 1 2 @ ; 1 0 10229721 -kerbala n 1 3 @ #p - 1 0 08914573 -kerbela n 1 3 @ #p - 1 0 08914573 -kerbstone n 1 2 @ #p 1 0 03149686 -kerchief n 1 2 @ ~ 1 1 03610992 -kerensky n 1 1 @ 1 0 11102144 -kerfuffle n 1 2 @ ~ 1 0 13977366 -kerion n 1 1 @ 1 0 14125881 -kern n 2 2 @ + 2 0 11102353 03611169 -kernel n 3 3 @ ~ #p 3 0 13137010 12157056 05921123 -kernicterus n 1 1 @ 1 0 14320218 -kernig's_sign n 1 1 @ 1 0 14267017 -kernite n 1 2 @ %s 1 0 14679267 -kerosene n 1 2 @ ~ 1 1 14687633 -kerosene_heater n 1 1 @ 1 0 03843883 -kerosene_lamp n 1 3 @ ~ %p 1 0 03844045 -kerosine n 1 2 @ ~ 1 0 14687633 -kerosine_heater n 1 1 @ 1 0 03843883 -kerosine_lamp n 1 3 @ ~ %p 1 0 03844045 -kerouac n 1 1 @ 1 0 11102493 -kerr_cell n 1 1 @ 1 0 03611314 -kerry_blue_terrier n 1 1 @ 1 0 02093859 -kerugma n 1 1 @ 1 0 07244305 -kerygma n 1 1 @ 1 1 07244305 -kesey n 1 1 @ 1 0 11102674 -kestrel n 2 2 @ #m 2 0 01612122 01611969 -ketalar n 1 2 @ ~ 1 0 03611590 -ketamine n 1 2 @ ~ 1 0 03611590 -ketamine_hydrochloride n 1 2 @ ~ 1 0 03611590 -ketch n 1 1 @ 1 1 03612010 -ketchup n 1 1 @ 1 0 07822197 -ketchup_bottle n 1 1 @ 1 0 02985963 -keteleeria n 1 2 @ #m 1 0 11645163 -ketembilla n 2 4 @ #m #p %p 2 0 12378963 07762534 -ketembilla_tree n 1 3 @ #m %p 1 0 12378963 -ketoacidosis n 1 2 @ #p 1 0 14019840 -ketoacidosis-prone_diabetes n 1 2 @ %p 1 0 14118423 -ketoacidosis-resistant_diabetes n 1 1 @ 1 0 14118936 -ketoacidosis-resistant_diabetes_mellitus n 1 1 @ 1 0 14118936 -ketoaciduria n 1 2 @ ~ 1 0 14271480 -ketohexose n 1 2 @ ~ 1 0 14927587 -ketone n 1 3 @ ~ #s 1 0 14926294 -ketone_body n 1 2 @ ~ 1 0 14926595 -ketone_group n 1 1 @ 1 0 14926937 -ketonemia n 1 1 @ 1 0 14267205 -ketonuria n 1 2 @ ~ 1 0 14271480 -ketoprofen n 1 2 @ %s 1 0 03612134 -ketorolac n 1 2 @ %s 1 0 03612378 -ketorolac_tromethamine n 1 2 @ %s 1 0 03612559 -ketose n 1 2 @ ~ 1 0 14927739 -ketosis n 1 1 @ 1 1 14267205 -ketosis-prone_diabetes n 1 2 @ %p 1 0 14118423 -ketosis-resistant_diabetes n 1 1 @ 1 0 14118936 -ketosis-resistant_diabetes_mellitus n 1 1 @ 1 0 14118936 -ketosteroid n 1 2 @ ~ 1 0 15058163 -kettering n 1 1 @ 1 0 11102878 -kettle n 4 3 @ ~ ; 4 1 03612814 13768154 09325038 03612965 -kettle_hole n 1 2 @ ; 1 0 09325038 -kettle_of_fish n 1 2 @ ~ 1 0 14409489 -kettledrum n 1 1 @ 1 0 03612965 -kettleful n 1 1 @ 1 0 13768154 -ketubim n 1 3 @ #p %p 1 0 06453324 -keuka_lake n 1 2 @ #m 1 0 09325246 -keurboom n 2 2 @ #m 2 0 12580012 12579822 -key n 15 7 @ ~ #m #p %p + ; 15 4 03613294 05794057 04986147 06863751 13724838 12036226 11103104 09325395 08590909 06492438 06492188 06424869 04586581 03615133 03613592 -key_fruit n 1 1 @ 1 0 12036226 -key_lime n 1 1 @ 1 0 07749870 -key_palm n 1 2 @ #m 1 0 12598027 -key_pattern n 1 1 @ 1 0 03396311 -key_ring n 1 1 @ 1 0 03615037 -key_signature n 1 1 @ 1 0 06863618 -key_stroke n 1 1 @ 1 0 00349520 -key_west n 1 2 @ #p 1 0 09073442 -key_word n 2 2 @ #p 2 0 06492320 06293106 -keyboard n 2 5 @ ~ #p %m %p 2 1 03614007 03613873 -keyboard_buffer n 1 1 @ 1 0 03614383 -keyboard_instrument n 1 2 @ ~ 1 0 03614532 -keyboardist n 1 1 @ 1 0 10229883 -keycard n 1 1 @ 1 0 06477818 -keyhole n 1 2 @ #p 1 1 03614782 -keyhole_limpet n 1 2 @ #m 1 0 01949499 -keyhole_saw n 1 1 @ 1 0 03614887 -keynes n 1 3 @ #m + 1 0 11103397 -keynesian n 1 1 @ 1 0 10229983 -keynesianism n 1 1 @ 1 0 05995355 -keynote n 3 5 @ ~ #p + ; 3 2 07240278 05926049 06857726 -keynote_address n 1 2 @ %p 1 0 07240417 -keynote_speech n 1 2 @ %p 1 0 07240417 -keypad n 1 1 @ 1 0 03085013 -keystone n 2 3 @ ~ #p 2 0 05694232 03615133 -keystone_state n 1 4 @ #p %p - 1 0 09134386 -keystone_stater n 1 1 @ 1 0 09745324 -keystroke n 1 1 @ 1 0 00349520 -kg n 1 4 @ ~ #p %p 1 0 13724582 -kgb n 1 1 @ 1 0 08485434 -khabarovsk n 2 3 @ #p %p 2 0 09005457 09005273 -khachaturian n 1 1 @ 1 0 11103648 -khadafy n 1 1 @ 1 0 11250287 -khaddar n 1 1 @ 1 0 03615300 -khadi n 1 1 @ 1 0 03615300 -khaki n 1 2 @ + 1 0 03615406 -khakis n 1 1 @ 1 0 03615563 -khalif n 1 2 @ ~ 1 0 09887496 -khalifah n 1 2 @ ~ 1 0 09887496 -khalka n 2 1 @ 2 0 09737835 06929008 -khalkha n 2 1 @ 2 0 09737835 06929008 -khalsa n 1 2 @ ; 1 0 08099825 -khama n 1 1 @ 1 0 11103864 -khamsin n 1 1 @ 1 0 11442752 -khamti n 1 1 @ 1 0 06935741 -khan n 2 1 @ 2 0 10230097 02961035 -khanate n 2 1 @ 2 0 08558082 00594070 -khanty n 2 1 @ 2 0 09706911 06959018 -kharkiv n 1 2 @ #p 1 0 09016860 -kharkov n 1 2 @ #p 1 0 09016860 -khartoum n 1 2 @ #p 1 1 09030210 -khat n 1 1 @ 1 0 03608870 -khaya n 1 3 @ #m %m 1 0 12698905 -khayr_ad-din n 1 1 @ 1 0 10834337 -khedive n 1 1 @ 1 0 10230216 -khepera n 1 1 @ 1 0 09512516 -khesari n 1 2 @ #m 1 0 12541403 -khi n 1 2 @ #m 1 0 06836381 -khimar n 1 1 @ 1 0 03615655 -khios n 1 2 @ #p 1 0 08782976 -khirghiz n 2 1 @ 2 0 09736312 06927736 -khmer n 2 1 @ 2 1 06937348 09733707 -khmer_rouge n 1 2 @ ; 1 0 08028999 -khoikhoi n 1 1 @ 1 0 06941479 -khoikhoin n 1 1 @ 1 0 06941479 -khoisan n 1 2 @ ~ 1 0 06941341 -khoisan_language n 1 2 @ ~ 1 0 06941341 -khomeini n 1 1 @ 1 0 11104008 -khoum n 1 2 @ #p 1 0 13689875 -khowar n 1 1 @ 1 0 06972654 -khrushchev n 1 1 @ 1 0 11104287 -khuen n 1 1 @ 1 0 06935513 -khufu n 1 1 @ 1 0 09915434 -khukuri n 1 2 @ ; 1 0 03615790 -khyber_pass n 1 2 @ #p 1 0 09325530 -khz n 1 3 @ #p %p 1 0 15279596 -ki n 2 2 @ ; 2 0 14050559 09518782 -kia_quen n 1 1 @ 1 0 00423028 -kiaat n 1 2 @ #m 1 0 12565102 -kiang n 1 1 @ 1 0 02390738 -kib n 1 3 @ #p %p 1 0 13627516 -kibble n 2 1 @ 2 0 07567980 03615987 -kibbutz n 1 3 @ %m ; 1 0 08056873 -kibbutznik n 1 2 @ #m 1 0 10230335 -kibe n 1 1 @ 1 0 14183692 -kibibit n 1 2 @ #p 1 0 13627935 -kibibyte n 1 3 @ #p %p 1 0 13627516 -kibit n 1 2 @ #p 1 0 13627935 -kibitzer n 1 3 @ + ; 1 0 10230432 -kichaga n 1 1 @ 1 0 06993445 -kichai n 1 1 @ 1 0 09658921 -kick n 6 3 @ ~ + 6 2 00136329 07528470 07350754 07209965 05827509 00336805 -kick_in_the_butt n 1 1 @ 1 1 01164275 -kick_pleat n 1 2 @ #p 1 0 03616091 -kick_start n 1 3 @ #p + 1 0 03616763 -kick_starter n 1 3 @ #p + 1 0 03616763 -kick_turn n 1 1 @ 1 0 00441235 -kick_up n 1 2 @ #p 1 1 00437321 -kickapoo n 2 1 @ 2 0 09659039 06910423 -kickback n 1 2 @ + 1 0 13284784 -kicker n 1 3 @ ~ + 1 0 10230580 -kicking n 2 3 @ ~ + 2 0 00336805 00136329 -kickoff n 3 4 @ ~ + ; 3 2 00241507 15265518 07329568 -kickshaw n 1 2 @ ~ 1 0 07557165 -kicksorter n 1 1 @ 1 0 03616225 -kickstand n 1 2 @ #p 1 0 03616428 -kid n 5 4 @ ~ #m %p 5 1 09917593 14762846 11113489 09918248 02416820 -kid_glove n 1 1 @ 1 0 03616979 -kidd n 1 1 @ 1 0 11104458 -kiddie_porn n 1 1 @ 1 0 00747519 -kiddy n 1 1 @ 1 0 10230736 -kiddy_porn n 1 1 @ 1 0 00747519 -kidnaper n 1 3 @ ~ + 1 0 10230801 -kidnapper n 1 3 @ ~ + 1 1 10230801 -kidnapping n 1 3 @ + ; 1 0 00775702 -kidney n 1 3 @ #p %p 1 1 05332802 -kidney_bean n 2 2 @ #m 2 0 12557064 07727048 -kidney_begonia n 1 1 @ 1 0 12361560 -kidney_disease n 1 2 @ ~ 1 0 14113228 -kidney_failure n 1 2 @ ~ 1 0 14114555 -kidney_fern n 1 1 @ 1 0 12952717 -kidney_pie n 1 1 @ 1 0 07877575 -kidney_stone n 1 1 @ 1 0 09325824 -kidney_vetch n 1 2 @ #m 1 0 12506991 -kidney_wort n 1 2 @ #m 1 0 11938732 -kidskin n 1 1 @ 1 0 14762846 -kierkegaard n 1 1 @ 1 0 11104676 -kieselguhr n 1 1 @ 1 0 14843295 -kieserite n 1 1 @ 1 0 14679447 -kieslowski n 1 1 @ 1 0 11104896 -kiev n 1 2 @ #p 1 0 09015907 -kigali n 1 2 @ #p 1 0 08815346 -kiggelaria n 1 3 @ #m %m 1 0 12380597 -kiggelaria_africana n 1 2 @ #m 1 0 12380761 -kike n 1 2 @ ; 1 0 09682122 -kikladhes n 1 2 @ #p 1 0 08783149 -kildeer n 1 2 @ #m 1 0 02023992 -kilderkin n 1 2 @ %p 1 0 13622914 -kiley n 1 1 @ 1 0 03629401 -kilimanjaro n 1 2 @ #p 1 0 09325963 -kiliwa n 2 1 @ 2 0 09659188 06922965 -kiliwi n 2 1 @ 2 0 09659188 06922965 -kill n 2 3 @ ~ + 2 2 00219012 00217593 -kill_zone n 1 1 @ 1 0 08690352 -killarney_fern n 1 1 @ 1 0 12952590 -killdeer n 1 2 @ #m 1 0 02023992 -killdeer_plover n 1 2 @ #m 1 0 02023992 -killer n 4 4 @ ~ #m + 4 1 10231087 14540564 05688630 02071294 -killer_bee n 2 1 @ 2 0 10231361 02208498 -killer_cell n 1 1 @ 1 0 05452516 -killer_t_cell n 1 1 @ 1 0 05452516 -killer_whale n 1 2 @ #m 1 0 02071294 -killifish n 1 2 @ ~ 1 0 01446760 -killing n 3 4 @ ~ + ; 3 2 07361576 00219012 13259797 -killing_field n 1 1 @ 1 0 08690479 -killing_zone n 1 1 @ 1 0 08690352 -killjoy n 1 3 @ ~ ; 1 0 10638136 -kiln n 1 2 @ ~ 1 0 03617095 -kilo n 1 4 @ ~ #p %p 1 0 13724582 -kilobit n 1 2 @ #p 1 0 13627810 -kilobyte n 2 3 @ #p %p 2 0 13627681 13627516 -kilocalorie n 1 2 @ %p 1 0 13726562 -kilocycle n 1 3 @ #p %p 1 0 15279596 -kilocycle_per_second n 1 3 @ #p %p 1 0 15279596 -kilogram n 1 4 @ ~ #p %p 1 0 13724582 -kilogram-meter n 1 1 @ 1 0 13728203 -kilogram_calorie n 1 2 @ %p 1 0 13726562 -kilohertz n 1 3 @ #p %p 1 0 15279596 -kiloliter n 1 3 @ #p %p 1 0 13624873 -kilolitre n 1 3 @ #p %p 1 0 13624873 -kilometer n 1 3 @ #p %p 1 1 13659760 -kilometers_per_hour n 1 1 @ 1 0 15279767 -kilometre n 1 3 @ #p %p 1 0 13659760 -kilometres_per_hour n 1 1 @ 1 0 15279767 -kiloton n 2 3 @ #p %p 2 0 13721695 13647215 -kilovolt n 1 2 @ %p 1 0 13643770 -kilovolt-ampere n 1 2 @ %p 1 0 13645331 -kilowatt n 1 3 @ #p %p 1 0 13644761 -kilowatt_hour n 1 2 @ %p 1 0 13727478 -kilroy n 1 1 @ 1 0 09600901 -kilt n 1 1 @ 1 0 03617312 -kilter n 1 1 @ 1 0 14497120 -kimberley n 1 2 @ #p 1 0 09000854 -kimberlite n 1 1 @ 1 0 14933086 -kimono n 1 1 @ 1 0 03617480 -kin n 2 4 @ ~ %m + 2 0 10236304 07969695 -kin_group n 1 3 @ ~ %m 1 0 07969695 -kina n 1 2 @ %p 1 0 13680599 -kinaesthesia n 2 2 @ + 2 0 05722208 05658985 -kinaesthesis n 1 1 @ 1 0 05658985 -kinanesthesia n 1 2 ! @ 1 0 05659260 -kinase n 1 1 @ 1 0 14927881 -kinchinjunga n 1 2 @ #p 1 0 09323221 -kind n 1 2 @ ~ 1 1 05839024 -kind-heartedness n 1 2 @ ~ 1 0 07553590 -kindergarten n 1 1 @ 1 1 08412136 -kindergartener n 1 1 @ 1 0 10466060 -kindergartner n 1 1 @ 1 0 10466060 -kindheartedness n 1 3 @ ~ + 1 0 07553590 -kindliness n 1 2 @ + 1 0 04841664 -kindling n 2 2 @ + 2 0 15101586 00378479 -kindness n 3 5 ! @ ~ = + 3 0 04840011 04829764 00034574 -kindred n 1 4 @ ~ %m + 1 0 07969695 -kine n 1 5 @ ~ #m %m %p 1 0 02402425 -kinematics n 1 1 @ 1 0 06113777 -kinescope n 1 3 @ ~ #p 1 0 03617594 -kinesiology n 1 1 @ 1 0 06082459 -kinesis n 1 2 @ + 1 0 00863222 -kinesthesia n 2 3 ! @ + 2 0 05722208 05658985 -kinesthesis n 1 2 @ + 1 0 05658985 -kinesthetics n 1 1 @ 1 0 05658985 -kinetic_energy n 1 1 @ 1 1 11470492 -kinetic_theory n 1 3 @ ~ ; 1 0 06106305 -kinetic_theory_of_gases n 1 3 @ ~ ; 1 0 06106305 -kinetic_theory_of_heat n 1 1 @ 1 0 06108339 -kinetics n 1 2 @ ~ 1 0 06113597 -kinetochore n 1 2 @ #p 1 0 05444324 -kinetoscope n 1 2 @ ; 1 0 03617834 -kinetosis n 1 2 @ ~ 1 0 14203346 -kinfolk n 1 2 @ ~ 1 0 07970721 -king n 10 6 ! @ ~ #m + ; 10 3 10231515 10235024 09840217 14435670 11105463 11105298 11105054 03618339 03618219 03618101 -king's_counsel n 1 1 @ 1 0 10235269 -king's_english n 1 1 @ 1 0 06948260 -king's_evil n 1 1 @ 1 1 14144247 -king's_ransom n 1 1 @ 1 0 13371274 -king's_spear n 1 2 @ #m 1 0 12442697 -king_arthur n 1 1 @ 1 0 10824888 -king_arthur's_round_table n 1 2 @ ; 1 0 04114554 -king_begonia n 1 1 @ 1 0 12361946 -king_camp_gilette n 1 1 @ 1 0 11000172 -king_charles_spaniel n 1 1 @ 1 0 02086753 -king_cobra n 1 2 @ #m 1 0 01748906 -king_crab n 4 4 @ #m #p %p 4 0 07788435 01982068 01981276 01787835 -king_devil n 1 2 @ #m 1 0 11982342 -king_ferdinand n 1 1 @ 1 0 10969305 -king_fern n 2 2 @ #m 2 0 12954799 12953484 -king_harold_i n 1 1 @ 1 0 11029454 -king_harold_ii n 1 1 @ 1 0 11029637 -king_hussein n 1 1 @ 1 0 11068196 -king_james n 1 2 @ #m 1 0 11079802 -king_james_bible n 1 1 @ 1 0 06449095 -king_james_i n 1 2 @ #m 1 0 11079802 -king_james_version n 1 1 @ 1 0 06449095 -king_john n 1 2 @ #m 1 0 11086279 -king_lear n 1 1 @ 1 0 09601049 -king_mackerel n 1 2 @ #m 1 0 02625851 -king_nut n 1 3 @ #m %p 1 0 12321395 -king_nut_hickory n 1 3 @ #m %p 1 0 12321395 -king_oedipus n 1 2 @ ; 1 0 09597798 -king_of_beasts n 1 4 @ ~ #m %p 1 0 02129165 -king_of_england n 1 2 @ ~ 1 0 10233445 -king_of_france n 1 2 @ ~ 1 0 10234340 -king_of_great_britain n 1 2 @ ~ 1 0 10233445 -king_of_swing n 1 1 @ 1 0 11007332 -king_of_the_germans n 1 2 @ ~ 1 0 10234867 -king_of_the_herring n 1 2 @ #m 1 0 02547014 -king_oliver n 1 1 @ 1 0 11214153 -king_orange n 1 3 @ #m %p 1 0 12710917 -king_penguin n 1 2 @ #m 1 0 02056570 -king_post n 1 1 @ 1 0 03618678 -king_protea n 1 2 @ #m 1 0 12215022 -king_salmon n 2 4 @ #m #p %p 2 0 07796321 02536456 -king_snake n 1 3 @ ~ #m 1 0 01734418 -king_vulture n 1 2 @ #m 1 0 01620735 -king_whiting n 1 2 @ #m 1 0 02597818 -king_william_pine n 1 2 @ #m 1 0 11632929 -kingbird n 1 3 @ ~ #m 1 0 01548301 -kingbolt n 1 1 @ 1 0 03618546 -kingcup n 2 3 @ ~ #m 2 0 11728099 11720353 -kingdom n 6 4 @ ~ %m + 6 3 14514805 08591269 08558155 08405603 07940552 07940448 -kingdom_animalia n 1 2 @ %m 1 0 01313093 -kingdom_come n 2 1 @ 2 0 15143984 15121880 -kingdom_fungi n 1 3 @ %m - 1 0 12992464 -kingdom_monera n 1 2 @ %m 1 0 01341876 -kingdom_of_belgium n 1 6 @ #m #p %m %p - 1 0 08849753 -kingdom_of_bhutan n 1 3 @ #p %m 1 0 08852209 -kingdom_of_cambodia n 1 6 @ #m #p %m %p - 1 0 08716738 -kingdom_of_denmark n 1 6 @ #m #p %m %p - 1 0 08761244 -kingdom_of_god n 1 1 @ 1 0 08558661 -kingdom_of_lesotho n 1 4 @ #p %m %p 1 0 08958830 -kingdom_of_morocco n 1 5 @ #m #p %m %p 1 0 08969291 -kingdom_of_nepal n 1 5 @ #p %m %p - 1 0 08906374 -kingdom_of_norway n 1 4 @ #m %m %p 1 0 08764107 -kingdom_of_saudi_arabia n 1 6 @ #m #p %m %p - 1 0 08993288 -kingdom_of_spain n 1 7 @ ~ #m #p %m %p - 1 0 09023321 -kingdom_of_swaziland n 1 4 @ #p %m %p 1 0 09031233 -kingdom_of_sweden n 1 4 @ #m %m %p 1 0 08765890 -kingdom_of_thailand n 1 6 @ #m #p %m %p - 1 0 09036452 -kingdom_of_the_netherlands n 1 5 @ #m #p %m %p 1 0 08949093 -kingdom_of_tonga n 1 3 @ #p %m 1 0 09037133 -kingdom_plantae n 1 3 @ %m ; 1 0 11529603 -kingdom_prokaryotae n 1 2 @ %m 1 0 01341876 -kingdom_protoctista n 1 2 @ %m 1 0 01386494 -kingfish n 5 4 @ #m #p %p 5 0 07784810 02626265 02598573 02597608 02579303 -kingfisher n 1 3 @ ~ #m 1 0 01827403 -kingfisher_daisy n 1 2 @ #m 1 0 11969806 -kinglet n 1 3 @ ~ #m 1 0 01563746 -kingmaker n 2 1 @ 2 0 11375087 10233248 -kingpin n 3 1 @ 3 0 10235142 03618546 03504293 -kings_canyon_national_park n 1 2 @ #p 1 0 08606688 -kingship n 1 2 @ + 1 0 14433001 -kingsnake n 1 3 @ ~ #m 1 0 01734418 -kingston n 3 2 @ #p 3 0 09124732 08827853 08754238 -kingston-upon_hull n 1 3 @ #p %p 1 0 08877208 -kingstown n 1 2 @ #p 1 0 08989556 -kingwood n 2 4 @ #m #s %s 2 0 12523319 12523141 -kingwood_tree n 1 3 @ #m %s 1 0 12523141 -kinin n 1 1 @ 1 0 14745477 -kink n 5 3 @ + ; 5 0 14361182 13877918 10236842 05926150 05688770 -kinkajou n 2 2 @ #m 2 0 02509197 02499316 -kino n 2 3 @ #m %s 2 0 14901411 12565912 -kino_gum n 2 2 @ #s 2 0 14901411 12566112 -kinosternidae n 1 3 @ #m %m 1 0 01666802 -kinosternon n 1 3 @ #m %m 1 0 01666967 -kinsey n 1 1 @ 1 0 11105609 -kinsfolk n 1 2 @ ~ 1 0 07970721 -kinshasa n 1 2 @ #p 1 0 08735164 -kinship n 2 4 @ ~ + ; 2 2 13811410 13812607 -kinship_group n 1 3 @ ~ %m 1 0 07969695 -kinship_system n 1 2 @ ; 1 0 05729609 -kinsman n 1 2 @ ~ 1 0 10236946 -kinsperson n 1 2 @ ~ 1 0 10236304 -kinswoman n 1 2 @ ~ 1 0 10237069 -kinyarwanda n 1 1 @ 1 0 06993573 -kiosk n 1 2 @ ~ 1 0 02873839 -kiowa n 2 1 @ 2 0 09659327 06920665 -kip n 3 4 @ %p + ; 3 0 15273955 13680948 00438338 -kipling n 1 1 @ 1 1 11105778 -kipp's_apparatus n 1 1 @ 1 0 03618797 -kipper n 1 1 @ 1 0 07785138 -kippered_herring n 1 1 @ 1 0 07785138 -kippered_salmon n 1 1 @ 1 0 07798147 -kirchhoff n 1 1 @ 1 0 11105945 -kirchhoff's_laws n 1 2 @ ; 1 0 05880432 -kirchner n 1 1 @ 1 0 11106170 -kirghiz n 3 4 @ #m #p %p 3 0 09736312 09020440 06927736 -kirghizia n 1 4 @ #m #p %p 1 0 09020440 -kirghizstan n 1 4 @ #m #p %p 1 0 09020440 -kirgiz n 3 4 @ #m #p %p 3 0 09736312 09020440 06927736 -kirgizia n 1 4 @ #m #p %p 1 0 09020440 -kirgizstan n 1 4 @ #m #p %p 1 0 09020440 -kiribati n 1 3 @ #p %p 1 0 08840749 -kiribati_dollar n 1 1 @ 1 0 13673650 -kirk n 1 1 @ 1 0 03618982 -kirkia n 1 3 @ #m %m 1 0 12717914 -kirkia_wilmsii n 1 2 @ #m 1 0 12718074 -kirkuk n 1 2 @ #p 1 0 08914850 -kirpan n 1 1 @ 1 0 03619050 -kirsch n 1 2 @ #s 1 0 07904072 -kirtle n 2 1 @ 2 0 03619275 03619196 -kishar n 1 2 @ ; 1 0 09518908 -kishinev n 1 2 @ #p 1 0 09014850 -kishke n 1 2 @ ; 1 0 07878479 -kislev n 1 3 @ #p %p 1 0 15214840 -kismat n 1 2 @ ; 1 0 07330560 -kismet n 1 2 @ ; 1 0 07330560 -kiss n 4 3 @ ~ + 4 1 00138221 07636869 07606764 00138078 -kiss-me-over-the-garden-gate n 1 2 @ #m 1 0 12601805 -kiss_curl n 1 1 @ 1 0 05258627 -kiss_of_death n 1 1 @ 1 0 07316242 -kiss_of_life n 1 2 @ %p 1 0 00832626 -kiss_of_peace n 1 2 @ ; 1 0 06631140 -kisser n 2 5 @ ~ #p + ; 2 0 10237196 05601357 -kissimmee n 1 2 @ #p 1 0 09326139 -kissimmee_river n 1 2 @ #p 1 0 09326139 -kissing n 1 3 @ ~ + 1 1 00854000 -kissing_bug n 1 2 @ #m 1 0 02244515 -kissing_cousin n 1 1 @ 1 0 10237315 -kissing_disease n 1 1 @ 1 0 14135277 -kissing_kin n 1 1 @ 1 0 10237315 -kissinger n 1 1 @ 1 0 11106290 -kisumu n 1 2 @ #p 1 0 08928742 -kiswahili n 1 1 @ 1 0 06993647 -kit n 3 3 @ ~ + 3 1 03619650 03619396 01323155 -kit_and_boodle n 1 1 @ 1 0 14461679 -kit_and_caboodle n 1 1 @ 1 1 14461679 -kit_bag n 1 1 @ 1 0 03619793 -kit_carson n 1 1 @ 1 0 10884369 -kit_fox n 2 2 @ #m 2 0 02119789 02119634 -kitakyushu n 1 2 @ #p 1 0 08925700 -kitambilla n 2 4 @ #m #p %p 2 0 12378963 07762534 -kitbag n 1 1 @ 1 0 03619793 -kitchen n 1 3 @ ~ #p 1 1 03619890 -kitchen_appliance n 1 2 @ ~ 1 0 03620052 -kitchen_cabinet n 1 1 @ 1 0 08241512 -kitchen_garden n 1 2 @ ~ 1 0 03620443 -kitchen_help n 1 1 @ 1 0 10237464 -kitchen_island n 1 1 @ 1 0 03620600 -kitchen_match n 1 1 @ 1 0 03620730 -kitchen_midden n 1 2 @ ; 1 0 08560560 -kitchen_police n 1 1 @ 1 0 10237556 -kitchen_range n 1 3 @ ~ %p 1 0 04330340 -kitchen_sink n 1 1 @ 1 1 03620889 -kitchen_stove n 1 3 @ ~ %p 1 0 04330340 -kitchen_table n 1 1 @ 1 1 03620967 -kitchen_utensil n 1 2 @ ~ 1 0 03621049 -kitchener n 1 1 @ 1 0 11106479 -kitchenette n 1 2 @ #p 1 1 03620353 -kitchenware n 1 1 @ 1 0 03621377 -kite n 4 5 @ ~ #m %p + 4 0 13382471 13382306 03621473 01608432 -kite_balloon n 1 1 @ 1 0 03621694 -kite_tail n 1 2 @ #p 1 0 03621826 -kitembilla n 2 4 @ #m #p %p 2 0 12378963 07762534 -kith n 1 1 @ 1 0 07970301 -kitsch n 1 1 @ 1 0 03621935 -kittee n 1 1 @ 1 0 00423222 -kitten n 1 2 @ + 1 1 02122948 -kitten-tails n 1 3 @ ~ #m 1 0 12878169 -kittiwake n 1 2 @ #m 1 0 02042759 -kittul n 1 1 @ 1 0 12587132 -kitty n 4 2 @ ; 4 0 13369474 13343774 02122948 02122298 -kitty-cat n 1 1 @ 1 0 02122298 -kitty_litter n 1 2 @ ; 1 0 14813957 -kitul n 1 1 @ 1 0 12587132 -kitul_tree n 1 1 @ 1 0 12587132 -kivu n 1 2 @ #p 1 0 09326299 -kiwi n 4 4 @ #m #p %p 4 0 12371439 09724533 07763629 01520576 -kiwi_fruit n 1 2 @ #p 1 0 07763629 -kiwi_vine n 1 3 @ #m %p 1 0 12371439 -kizil_kum n 1 2 @ #p 1 0 09170633 -kkk n 1 3 @ %m ; 1 0 08029421 -klaipeda n 1 3 @ #m #p 1 0 09014066 -klamath n 1 2 @ #p 1 0 09326467 -klamath_falls n 1 2 @ #p 1 0 09133643 -klamath_river n 1 2 @ #p 1 0 09326467 -klammath_weed n 1 1 @ 1 0 12369309 -klan n 1 3 @ %m ; 1 0 08029421 -klansman n 1 2 @ #m 1 0 10237676 -klaproth n 1 1 @ 1 0 11106652 -klaus_fuchs n 1 1 @ 1 0 10984589 -klavern n 1 3 @ #m ; 1 0 08029784 -klavier n 1 2 @ ~ 1 0 03039015 -klaxon n 1 1 @ 1 0 03622058 -klebs-loeffler_bacillus n 1 2 @ #m 1 0 01366700 -klebsiella n 1 2 @ #m 1 0 01368672 -klee n 1 1 @ 1 0 11106830 -kleenex n 1 2 @ ; 1 1 14928008 -klein n 3 1 @ 3 0 11107308 11107110 11106943 -klein_bottle n 1 1 @ 1 0 03622207 -kleist n 1 1 @ 1 0 11107436 -klemens_metternich n 1 1 @ 1 0 11177532 -kleptomania n 1 1 @ 1 0 09182273 -kleptomaniac n 1 1 @ 1 0 10237799 -klick n 1 3 @ #p %p 1 0 13659760 -klieg_light n 1 1 @ 1 0 03622401 -klimt n 1 1 @ 1 0 11107635 -kline n 1 1 @ 1 0 11107757 -klinefelter n 1 1 @ 1 0 11107901 -klinefelter's_syndrome n 1 1 @ 1 0 14306475 -klinefelter_syndrome n 1 1 @ 1 0 14306475 -klondike n 2 2 @ #p 2 0 08830720 00495774 -klopstock n 1 1 @ 1 0 11108084 -klorvess n 1 2 @ ; 1 0 14861042 -klotho n 1 2 @ #m 1 0 09565503 -kludge n 1 2 @ ; 1 0 07977344 -klutz n 1 2 @ ; 1 0 10237935 -kluxer n 1 2 @ #m 1 0 10237676 -klystron n 1 1 @ 1 0 03622526 -klyuchevskaya n 1 2 @ #p 1 0 09175767 -km n 1 3 @ #p %p 1 1 13659760 -km/h n 1 1 @ 1 0 15279767 -knack n 1 1 @ 1 1 05624254 -knacker n 2 1 @ 2 0 10238127 10238029 -knackwurst n 1 1 @ 1 0 07677255 -knapsack n 1 2 @ ~ 1 1 02769748 -knapweed n 1 2 @ ~ 1 0 11948264 -knave n 2 1 @ 2 0 10536728 03589093 -knavery n 1 2 @ ~ 1 0 00749574 -knawe n 1 2 @ #m 1 0 11814996 -knawel n 1 2 @ #m 1 0 11814996 -knee n 3 3 @ #p %p 3 3 05573602 02464065 03622698 -knee-hi n 1 1 @ 1 0 03622931 -knee-high n 1 1 @ 1 0 03622931 -knee-jerk_reflex n 1 1 @ 1 0 00864859 -knee_bend n 1 1 @ 1 0 00630071 -knee_brace n 1 1 @ 1 0 03622839 -knee_breeches n 1 4 @ ~ %p ; 1 0 02896442 -knee_jerk n 1 1 @ 1 0 00864859 -knee_joint n 1 3 @ #p %p 1 1 05573602 -knee_pad n 1 1 @ 1 0 03623198 -knee_pants n 1 4 @ ~ %p ; 1 0 02896442 -knee_piece n 1 2 @ #p 1 0 03623338 -kneecap n 1 2 @ #p 1 1 05278395 -kneel n 1 2 @ + 1 0 00337078 -kneeler n 2 2 @ + 2 0 10238272 03623073 -kneeling n 1 2 @ + 1 0 00337078 -kneepan n 1 2 @ #p 1 0 05278395 -knell n 1 2 @ + 1 0 07386194 -knesset n 1 1 @ 1 0 08319679 -knesseth n 1 1 @ 1 0 08319679 -knickerbockers n 1 4 @ ~ %p ; 1 0 02896442 -knickers n 2 4 @ ~ %p ; 2 0 02896442 02854739 -knickknack n 2 1 @ 2 0 03623448 02897692 -knickknackery n 1 1 @ 1 0 02897692 -knife n 3 4 @ ~ %p + 3 3 03623556 03624134 13918387 -knife-edge n 1 1 @ 1 0 05124404 -knife-handle n 1 2 @ #m 1 0 01959029 -knife_blade n 1 2 @ #p 1 0 03624400 -knife_edge n 1 2 @ #p 1 0 03624497 -knife_fight n 1 1 @ 1 0 01176540 -knife_pleat n 1 2 @ ~ 1 0 03624653 -knife_thrust n 1 2 @ ~ 1 1 01173965 -knight n 2 4 @ ~ + ; 2 1 10238375 03624767 -knight's_service n 1 1 @ 1 0 00580081 -knight-errant n 1 1 @ 1 1 10239217 -knight_bachelor n 1 1 @ 1 0 10238749 -knight_banneret n 1 1 @ 1 0 10238898 -knight_errantry n 2 2 @ ; 2 1 05153037 05668725 -knight_of_the_round_table n 1 1 @ 1 0 10239089 -knight_of_the_square_flag n 1 1 @ 1 0 10238898 -knight_templar n 2 1 @ 2 0 10239501 10239329 -knighthood n 1 1 @ 1 0 08388871 -knightia n 1 3 @ #m %m 1 0 12219495 -knightliness n 1 1 @ 1 0 05955848 -kniphofia n 1 3 @ ~ #m 1 0 12437513 -kniphofia_praecox n 1 1 @ 1 0 12437930 -kniphofia_uvaria n 1 2 @ ~ 1 0 12437769 -knish n 1 2 @ ; 1 0 07624757 -knit n 3 4 @ ~ + - 3 1 03625355 03625226 03624966 -knit_stitch n 1 1 @ 1 0 03625226 -knitter n 1 2 @ + 1 0 10239619 -knitting n 2 3 @ + - 2 0 03624966 00909471 -knitting_machine n 1 1 @ 1 0 03625539 -knitting_needle n 1 1 @ 1 0 03625646 -knitting_stitch n 1 2 @ ~ 1 0 03625783 -knitwear n 1 1 @ 1 0 03625943 -knitwork n 1 2 @ - 1 0 03624966 -knob n 4 4 @ ~ #p + 4 2 03626115 03626014 13895986 03626272 -knob_celery n 1 2 @ %p 1 0 12933616 -knobble n 1 2 @ + 1 0 03626418 -knobcone_pine n 1 1 @ 1 0 11617878 -knobkerrie n 1 1 @ 1 0 03626502 -knobkerry n 1 1 @ 1 0 03626502 -knock n 5 2 @ + 5 2 07386370 05734381 07410207 07336999 00133338 -knock-knee n 1 2 @ #p 1 0 14559983 -knock-on_effect n 1 2 @ ; 1 0 11415608 -knock_on n 1 3 @ #p ; 1 0 00471277 -knock_rummy n 1 1 @ 1 0 00496877 -knockabout n 1 1 @ 1 0 03626658 -knockdown n 1 2 @ + 1 0 00133981 -knocker n 5 6 @ ~ #p %p + ; 5 0 10239928 10239761 10009671 05554405 03626760 -knocking n 1 2 @ + 1 1 07386370 -knockoff n 1 1 @ 1 0 03626925 -knockout n 2 3 @ ~ + 2 0 10613996 00134099 -knockout_drops n 1 3 @ ~ ; 1 0 03627021 -knockout_punch n 1 1 @ 1 0 00135637 -knockwurst n 1 1 @ 1 0 07677255 -knoll n 1 2 @ ~ 1 1 09326662 -knossos n 1 1 @ 1 0 08784581 -knot n 7 5 @ ~ #m #p + 7 3 07960384 03627232 15102712 13885836 13660337 04948905 02028900 -knotgrass n 1 2 @ #m 1 0 12128490 -knothole n 1 2 @ #p 1 0 15102894 -knotted_marjoram n 1 2 @ #m 1 0 12853482 -knottiness n 1 2 @ + 1 0 04766620 -knotty_pine n 1 1 @ 1 0 11609122 -knout n 1 1 @ 1 0 03627819 -know n 1 1 @ 1 0 05805012 -know-all n 1 2 @ ; 1 0 10240235 -know-how n 1 2 @ ~ 1 1 05616786 -know-it-all n 1 2 @ ; 1 0 10240235 -know-nothing_party n 1 1 @ 1 0 08257971 -know_nothing n 1 2 @ ~ 1 0 10198958 -knower n 1 2 @ + 1 0 10240082 -knowing n 1 3 @ ~ + 1 0 05804793 -knowingness n 2 4 @ ~ = + 2 0 05675905 05621946 -knowledge n 1 2 @ ~ 1 1 00023271 -knowledge_base n 1 2 @ ~ 1 0 05999266 -knowledge_domain n 1 2 @ ~ 1 0 05999266 -knowledgeability n 1 2 @ + 1 0 04890546 -knowledgeableness n 1 2 @ + 1 0 04890546 -knowlton's_cactus n 1 2 @ #m 1 0 11850918 -knox n 1 1 @ 1 0 11108195 -knoxville n 1 2 @ #p 1 0 09140993 -knuckle n 1 3 @ #p + 1 1 05585205 -knuckle_duster n 1 2 @ ; 1 1 02892948 -knuckle_joint n 2 2 @ #p 2 0 05585205 03627954 -knuckleball n 1 1 @ 1 1 00108427 -knucklebones n 1 1 @ 1 0 00485262 -knucklehead n 1 1 @ 1 0 10039663 -knuckler n 1 1 @ 1 0 00108427 -knuckles n 1 2 @ ; 1 0 02892948 -knucks n 1 2 @ ; 1 0 02892948 -knut n 1 1 @ 1 0 10881382 -knut_hamsun n 1 1 @ 1 0 11027294 -knut_pedersen n 1 1 @ 1 0 11027294 -ko n 1 2 @ ~ 1 0 00134099 -ko_punch n 1 1 @ 1 0 00135637 -koala n 1 1 @ 1 0 01882714 -koala_bear n 1 1 @ 1 0 01882714 -koan n 1 1 @ 1 0 06785840 -koasati n 2 1 @ 2 0 09659447 06912638 -kob n 1 1 @ 1 0 02427470 -kobe n 1 2 @ #p 1 0 08924913 -kobenhavn n 1 2 @ #p 1 0 08761868 -kobo n 1 2 @ #p 1 0 13689178 -kobuk_valley_national_park n 1 2 @ #p 1 0 08606869 -kobus n 1 3 @ #m %m 1 0 02427337 -kobus_kob n 1 1 @ 1 0 02427470 -kobus_leche n 1 1 @ 1 0 02427576 -koch n 1 1 @ 1 0 11108400 -kochia n 1 3 @ #m %m 1 0 11831730 -kochia_scoparia n 1 2 @ #m 1 0 11831874 -kodiak n 2 2 @ #p 2 0 09326844 02132788 -kodiak_bear n 1 1 @ 1 0 02132788 -kodiak_island n 1 2 @ #p 1 0 09326844 -koellia n 1 3 @ #m %m 1 0 12863458 -koestler n 1 1 @ 1 0 11108584 -kogia n 1 3 @ #m %m 1 0 02067462 -kogia_breviceps n 1 2 @ #m 1 0 02067603 -kogia_simus n 1 2 @ #m 1 0 02067768 -kohl n 1 1 @ 1 0 03628071 -kohleria n 1 2 @ #m 1 0 12832822 -kohlrabi n 2 4 @ #m #p %p 2 0 11877283 07733567 -koine n 2 1 @ 2 0 06977328 06906116 -koinonia n 1 1 @ 1 0 08228229 -kok-saghyz n 1 1 @ 1 0 12024805 -kok-sagyz n 1 1 @ 1 0 12024805 -kokka n 1 3 @ #m + 1 0 08100481 -kokka_shinto n 1 2 @ #m 1 0 08100481 -kokoi_venom n 1 1 @ 1 0 15037127 -kol_nidre n 1 1 @ 1 0 06456945 -kola n 2 4 @ #m %s %p 2 0 12197359 06984446 -kola_nut n 2 6 @ #m #s #p %s %p 2 0 12197601 12197359 -kola_nut_tree n 1 4 @ #m %s %p 1 0 12197359 -kola_peninsula n 1 2 @ #p 1 0 09010974 -kolam n 1 1 @ 1 0 09674786 -kolami n 1 1 @ 1 0 06981706 -kolkata n 1 2 @ #p 1 0 08903636 -kolkhoz n 1 3 @ %m ; 1 0 08057068 -kolkhoznik n 1 2 @ #m 1 0 10240417 -kolkwitzia n 1 2 @ %m 1 0 12672497 -kolkwitzia_amabilis n 1 2 @ #m 1 0 12672631 -koln n 1 3 @ #m #p 1 0 08772307 -kolonia n 1 2 @ #p 1 0 08837457 -komi n 2 2 @ #m 2 0 09706255 06957042 -komodo_dragon n 1 1 @ 1 0 01695060 -komodo_lizard n 1 1 @ 1 0 01695060 -komondor n 1 1 @ 1 0 02105505 -kon_tiki n 1 1 @ 1 0 02783900 -konakri n 1 2 @ #p 1 0 08947617 -kong_the_master n 1 1 @ 1 0 10906822 -kongfuze n 1 1 @ 1 0 10906822 -kongo n 1 1 @ 1 0 06993719 -konini n 1 1 @ 1 0 12343951 -konoe n 1 1 @ 1 0 11108767 -konoye n 1 1 @ 1 0 11108767 -konqueror n 1 1 @ 1 0 06571639 -konrad_adenauer n 1 1 @ 1 0 10808756 -konrad_lorenz n 1 1 @ 1 0 11138449 -konrad_von_gesner n 1 1 @ 1 0 10997405 -konrad_zacharias_lorenz n 1 1 @ 1 0 11138449 -konstantin_sergeevich_alekseev n 1 1 @ 1 0 11312709 -konstantin_sergeyevich_stanislavsky n 1 1 @ 1 0 11312709 -konstantin_stanislavsky n 1 1 @ 1 0 11312709 -koodoo n 1 3 @ ~ #m 1 0 02424305 -kook n 1 2 @ + 1 0 10240514 -kookaburra n 1 2 @ #m 1 0 01828556 -koopmans n 1 1 @ 1 0 11109027 -kopeck n 1 2 @ #p 1 0 13699189 -kopek n 1 2 @ #p 1 0 13699189 -kopiyka n 1 2 @ #p 1 0 13703258 -kopje n 1 2 @ ; 1 0 09327077 -koplik's_spots n 1 1 @ 1 0 14267358 -koppie n 1 2 @ ; 1 0 09327077 -kor n 1 2 @ %p 1 0 13617046 -koran n 1 3 @ %p + 1 0 06461609 -korbut n 1 1 @ 1 0 11109192 -korchnoi n 1 1 @ 1 0 11109289 -korda n 1 1 @ 1 0 11109424 -kordofan n 1 2 @ #p 1 0 09030096 -kordofanian n 1 1 @ 1 0 06991622 -kore n 1 2 @ ; 1 0 09569467 -korea n 1 6 @ ~ #p %p + - 1 1 08954611 -korea_bay n 1 2 @ #p 1 0 09327201 -korea_strait n 1 2 @ - 1 0 09327361 -korean n 2 3 @ ~ + 2 1 09718936 06929171 -korean_lawn_grass n 1 1 @ 1 0 12146654 -korean_lespedeza n 1 2 @ #m 1 0 12543639 -korean_peninsula n 1 5 @ ~ #p %p - 1 0 08954611 -korean_strait n 1 2 @ - 1 0 09327361 -korean_velvet_grass n 1 1 @ 1 0 12146823 -korean_war n 1 3 @ %p ; 1 1 01305551 -korinthos n 1 3 @ #p %m 1 0 08786432 -korsakoff's_psychosis n 1 1 @ 1 0 14395597 -korsakoff's_syndrome n 1 1 @ 1 0 14395597 -korsakov's_psychosis n 1 1 @ 1 0 14395597 -korsakov's_syndrome n 1 1 @ 1 0 14395597 -koruna n 2 2 @ %p 2 0 13681661 13681275 -korzybski n 1 1 @ 1 0 11109563 -kos n 1 1 @ 1 0 13652529 -kosciusko n 1 1 @ 1 0 11109728 -kosciuszko n 1 1 @ 1 0 11109728 -kosher n 1 1 @ 1 0 07560542 -kosovo n 1 2 @ #p 1 0 08816807 -kosteletzya n 1 3 @ #m %m 1 0 12181851 -kosteletzya_virginica n 1 1 @ 1 0 12182276 -kota n 2 1 @ 2 0 09674908 06979645 -kotar n 2 1 @ 2 0 09674908 06979645 -kotex n 1 2 @ ; 1 0 04135315 -koto n 1 1 @ 1 0 03628215 -koto_player n 1 2 @ ; 1 0 10240715 -kotoko n 1 1 @ 1 0 06984650 -kotow n 1 2 @ + 1 0 07275275 -koudou n 1 3 @ ~ #m 1 0 02424305 -koumiss n 1 1 @ 1 0 07925808 -koussevitzky n 1 1 @ 1 0 11109970 -kovna n 1 2 @ #p 1 0 09014470 -kovno n 1 2 @ #p 1 0 09014470 -koweit n 2 5 @ #m #p %m %p 2 0 08929555 08929243 -kowhai n 1 2 @ #m 1 0 12570972 -kowtow n 1 2 @ + 1 0 07275275 -kp n 1 1 @ 1 0 10237556 -kph n 1 1 @ 1 0 15279767 -kr n 2 3 @ #s ; 2 0 14642916 08028999 -kraal n 2 1 @ 2 0 08673131 03628421 -krafft-ebing n 1 1 @ 1 0 11110205 -kraft n 1 1 @ 1 0 14878980 -kraft_paper n 1 1 @ 1 0 14878980 -krait n 1 3 @ ~ #m 1 0 01751036 -krakatao n 1 2 @ #p 1 0 09175915 -krakatau n 1 2 @ #p 1 0 09175915 -krakatoa n 1 2 @ #p 1 0 09175915 -krakau n 1 2 @ #p 1 0 08983413 -krakow n 1 2 @ #p 1 0 08983413 -krasner n 1 1 @ 1 0 11110396 -kraurosis n 1 2 @ ~ 1 0 14571377 -kraurosis_vulvae n 1 1 @ 1 0 14571504 -kraut n 1 2 @ ; 1 0 09748239 -krauthead n 1 2 @ ; 1 1 09748239 -krebs n 1 1 @ 1 0 11110617 -krebs_citric_acid_cycle n 1 3 @ #p %p 1 0 13505467 -krebs_cycle n 1 3 @ #p %p 1 0 13505467 -kreisler n 1 1 @ 1 0 11110791 -kremlin n 2 2 @ #p 2 0 03628590 03628511 -krigia n 1 3 @ ~ #m 1 0 11985739 -krigia_bulbosa n 1 1 @ 1 0 11985903 -krigia_dandelion n 1 1 @ 1 0 11985903 -krill n 1 3 @ ~ #m 1 0 01988701 -kris n 1 1 @ 1 0 03628728 -krishna n 1 1 @ 1 0 09530721 -krishnaism n 1 1 @ 1 0 06238831 -kriss_kringle n 1 1 @ 1 0 10550673 -kriti n 1 4 @ #p %m %p 1 0 08784333 -kroeber n 1 1 @ 1 0 11110917 -krona n 2 2 @ %p 2 0 13682330 13681993 -krone n 2 2 @ %p 2 0 13682971 13682740 -kronecker n 1 1 @ 1 0 11111085 -kronecker_delta n 1 1 @ 1 0 13784763 -kroon n 1 1 @ 1 0 13700362 -kropotkin n 1 1 @ 1 0 11111194 -kroto n 1 1 @ 1 0 11111335 -krubi n 1 2 @ #m 1 0 11783488 -kruger n 1 1 @ 1 0 11111577 -krummhorn n 1 1 @ 1 0 03628831 -krung_thep n 1 2 @ #p 1 0 09036880 -krupp n 2 1 @ 2 0 11111845 11111710 -krypterophaneron n 1 2 @ #m 1 0 01452051 -krypton n 1 2 @ #s 1 0 14642916 -krzysztof_kieslowski n 1 1 @ 1 0 11104896 -ks n 1 3 @ #p %p 1 0 09087599 -kshatriya n 1 1 @ 1 0 10240821 -kt n 1 1 @ 1 0 13585127 -ku-chiku n 1 2 @ #m 1 0 12149521 -ku_klux_klan n 1 3 @ %m ; 1 1 08029421 -ku_kluxer n 1 2 @ #m 1 0 10237676 -kuala_lumpur n 1 3 @ #p %p 1 0 08963813 -kuan_yin n 1 2 @ ; 1 0 09534187 -kuangchou n 1 2 @ #p 1 0 08725454 -kubla_khan n 1 1 @ 1 0 11112058 -kublai_kaan n 1 1 @ 1 0 11112058 -kublai_khan n 1 1 @ 1 0 11112058 -kubrick n 1 1 @ 1 0 11112377 -kuchean n 1 1 @ 1 0 06969018 -kuchean_dialect n 1 1 @ 1 0 06969018 -kudos n 1 2 @ ~ 1 0 06693198 -kudu n 1 3 @ ~ #m 1 0 02424305 -kudu_lily n 1 2 @ #m 1 0 11769176 -kudzu n 1 2 @ #m 1 0 12566954 -kudzu_vine n 1 2 @ #m 1 0 12566954 -kuenlun n 1 3 @ #p %p 1 0 09327881 -kuenlun_mountains n 1 3 @ #p %p 1 0 09327881 -kuhn n 1 1 @ 1 0 11112488 -kui n 2 1 @ 2 0 09675045 06981289 -kuiper n 1 1 @ 1 0 11112628 -kuiper_belt n 1 2 @ #m 1 0 09327538 -kuiper_belt_object n 1 1 @ 1 0 09327705 -kukenaam n 1 2 @ #p 1 0 09262082 -kukenaam_falls n 1 2 @ #p 1 0 09262082 -kuki n 1 1 @ 1 0 06933279 -kuki-chin n 1 1 @ 1 0 06933279 -kulanapan n 1 2 @ ~ 1 0 06921186 -kulun n 1 2 @ #p 1 0 08969123 -kumasi n 1 2 @ #p 1 0 08946715 -kumis n 1 1 @ 1 0 07925808 -kummel n 1 2 @ %s 1 0 07910245 -kumquat n 2 5 @ ~ #m #p %p 2 0 12713063 07749446 -kumquat_tree n 1 4 @ ~ #m %p 1 0 12713063 -kund_johan_victor_rasmussen n 1 1 @ 1 0 11254393 -kundt's_tube n 1 1 @ 1 0 03628984 -kung_fu n 1 1 @ 1 0 00826606 -kunlan_shan n 1 3 @ #p %p 1 0 09327881 -kunlun n 1 3 @ #p %p 1 0 09327881 -kunlun_mountains n 1 3 @ #p %p 1 0 09327881 -kunzite n 1 1 @ 1 0 14928180 -kuomintang n 1 1 @ 1 0 08260691 -kupffer's_cell n 1 2 @ #p 1 0 05242752 -kura n 1 2 @ #p 1 0 09328148 -kura_river n 1 2 @ #p 1 0 09328148 -kurakkan n 1 2 @ #m 1 0 12118661 -kurchee n 1 2 @ #m 1 0 11772879 -kurchi n 1 2 @ #m 1 0 11772879 -kurd n 1 3 @ ~ #p 1 0 09719430 -kurdish n 1 1 @ 1 0 06974558 -kurdistan n 2 4 @ #p %p - 2 0 09038990 03629100 -kurdistan_labor_pary n 1 2 @ ; 1 0 08029908 -kurdistan_workers_party n 1 2 @ ; 1 0 08029908 -kuri-chiku n 1 2 @ #m 1 0 12149350 -kurosawa n 1 1 @ 1 0 11112907 -kuroshio n 1 1 @ 1 0 11489686 -kuroshio_current n 1 1 @ 1 0 11489686 -kurrajong n 1 1 @ 1 0 12196694 -kurrat n 1 1 @ 1 0 12432356 -kursk n 1 2 @ #p 1 0 09005611 -kurt_godel n 1 1 @ 1 0 11003068 -kurt_vonnegut n 1 1 @ 1 0 11368841 -kurt_waldheim n 1 1 @ 1 0 11370654 -kurt_weill n 1 1 @ 1 0 11379908 -kurta n 1 1 @ 1 0 03629231 -kuru n 1 1 @ 1 0 14109101 -kurus n 1 3 @ #p %p 1 0 13687278 -kurux n 1 1 @ 1 0 06982391 -kusan n 2 1 @ 2 0 09659605 06925214 -kussmaul's_coma n 1 1 @ 1 0 05680423 -kutch n 1 1 @ 1 0 12951331 -kutuzov n 1 1 @ 1 0 11113077 -kuvasz n 1 1 @ 1 0 02104029 -kuvi n 1 1 @ 1 0 06981401 -kuwait n 2 5 @ #m #p %m %p 2 0 08929555 08929243 -kuwait_city n 1 2 @ #p 1 0 08929555 -kuwaiti n 1 3 @ #m + 1 0 09719653 -kuwaiti_dinar n 1 2 @ %p 1 0 13669860 -kuwaiti_dirham n 1 3 @ #p %p 1 0 13669998 -kuwaiti_monetary_unit n 1 2 @ ~ 1 0 13669733 -kuznets n 1 1 @ 1 0 11113266 -kv n 1 2 @ %p 1 0 13643770 -kvass n 1 2 @ ; 1 0 07890617 -kvetch n 2 2 @ ; 2 0 10240921 07211503 -kw n 1 3 @ #p %p 1 0 13644761 -kw-hr n 1 2 @ %p 1 0 13727478 -kwa n 1 2 @ ~ 1 0 06997168 -kwacha n 2 2 @ %p 2 0 13683578 13683221 -kwai n 1 2 @ %p 1 0 13709992 -kwajalein n 2 4 @ #p ; - 2 0 08839714 01282966 -kwakiutl n 2 1 @ 2 0 09659711 06914612 -kwan-yin n 1 2 @ ; 1 0 09534187 -kwangchow n 1 2 @ #p 1 0 08725454 -kwangju n 1 2 @ #p 1 0 08956305 -kwangtung n 1 1 @ 1 0 08725336 -kwannon n 1 1 @ 1 0 09535409 -kwanza n 2 2 @ %p 2 0 13683932 00518152 -kwanzaa n 1 1 @ 1 0 00518152 -kwashiorkor n 1 1 @ 1 0 14199934 -kwazulu-natal n 1 4 @ #p %m %p 1 0 08971693 -kweek n 1 2 @ #m 1 0 12115748 -kwela n 1 1 @ 1 0 07061180 -kwell n 1 2 @ ; 1 0 14928332 -ky n 1 3 @ #p %p 1 0 09089139 -kyanite n 1 1 @ 1 0 14679584 -kyat n 1 2 @ %p 1 0 13684298 -kyd n 1 1 @ 1 0 11113489 -kylie n 1 1 @ 1 0 03629401 -kylix n 1 1 @ 1 0 03629520 -kymograph n 1 1 @ 1 0 03629643 -kyo-chiku n 1 2 @ #m 1 0 12148757 -kyoto n 1 2 @ #p 1 0 08925093 -kyphosidae n 1 3 @ #m %m 1 0 02604014 -kyphosis n 1 2 @ + 1 0 14505069 -kyphosus n 1 3 @ #m %m 1 0 02604342 -kyphosus_sectatrix n 1 2 @ #m 1 0 02604480 -kyrgyz_republic n 1 4 @ #m #p %p 1 0 09020440 -kyrgyzstan n 1 4 @ #m #p %p 1 0 09020440 -kyrgyzstani_monetary_unit n 1 2 @ ~ 1 0 13701793 -kyushu n 1 3 @ #p %p 1 0 08921392 -kyyiv n 1 2 @ #p 1 0 09015907 -kyzyl_kum n 1 2 @ #p 1 0 09170633 -l n 4 4 @ #m #p %p 4 1 13624190 13749644 13640520 06832356 -l'aquila n 1 2 @ #p 1 0 08804319 -l'enfant n 1 1 @ 1 0 11126295 -l-dopa n 1 1 @ 1 0 14605132 -l-p n 1 1 @ 1 0 03694639 -l-plate n 1 2 @ ; 1 0 03694761 -l._m._montgomery n 1 1 @ 1 0 11188613 -l._monocytogenes n 1 1 @ 1 0 01367208 -l._ron_hubbard n 1 1 @ 1 0 11063535 -l._s._lowry n 1 1 @ 1 0 11143044 -la n 3 4 @ #m #p %p 3 0 14643118 09090825 06868986 -la_crosse n 1 2 @ #p 1 0 09157896 -la_fayette n 1 1 @ 1 0 11114056 -la_fontaine n 1 1 @ 1 0 11114637 -la_paz n 1 2 @ #p 1 0 08853308 -la_plata n 1 2 @ #p 1 0 09410558 -la_rochefoucauld n 1 1 @ 1 0 11117931 -la_spezia n 1 2 @ #p 1 0 08808979 -la_tour n 1 1 @ 1 0 11118481 -laager n 1 2 @ ; 1 0 03629857 -lab n 1 3 @ ~ %p 1 1 03629986 -lab_bench n 1 2 @ #p 1 0 03630262 -lab_coat n 1 1 @ 1 0 03630383 -laban n 1 1 @ 1 0 11113601 -labanotation n 1 1 @ 1 0 06816555 -labdanum n 2 2 @ #s 2 0 14928518 12375107 -label n 4 3 @ ~ + 4 4 07202579 06851516 14620066 07272172 -labetalol n 1 1 @ 1 0 03630544 -labetalol_hydrochloride n 1 1 @ 1 0 03630544 -labia_majora n 1 2 @ #p 1 0 05522674 -labia_minora n 1 2 @ #p 1 0 05522998 -labial n 1 3 @ ~ + 1 0 07117007 -labial_artery n 1 3 @ ~ #p 1 0 05348884 -labial_consonant n 1 2 @ ~ 1 0 07117007 -labial_pipe n 1 1 @ 1 0 03369011 -labial_stop n 1 1 @ 1 0 07117472 -labial_vein n 2 3 @ ~ #p 2 0 05372125 05371663 -labiatae n 1 4 @ ~ #m %m 1 0 12838027 -labiodental n 1 1 @ 1 0 07117193 -labiodental_consonant n 1 1 @ 1 0 07117193 -labium n 1 3 @ ~ #p 1 0 05522456 -lablab n 1 3 @ #m %m 1 0 12537437 -lablab_purpureus n 1 2 @ #m 1 0 12537569 -lablink n 1 2 @ #p 1 0 08132323 -labor n 7 6 @ ~ #p %m %p + 7 2 08180639 00620752 14048441 08472890 08261320 08137495 00795720 -labor_agreement n 1 2 @ ~ 1 0 06526961 -labor_camp n 1 1 @ 1 0 03630849 -labor_coach n 1 1 @ 1 0 10241024 -labor_contract n 1 2 @ ~ 1 0 06526961 -labor_day n 1 2 @ #p 1 0 15190520 -labor_department n 1 2 @ %p 1 0 08137495 -labor_force n 1 1 @ 1 0 08180944 -labor_leader n 1 2 @ ~ 1 0 10242032 -labor_market n 1 1 @ 1 1 01098404 -labor_movement n 1 3 @ ~ %p 1 1 08472890 -labor_of_love n 1 1 @ 1 0 00797207 -labor_organizer n 1 2 @ ~ 1 0 10383505 -labor_pain n 1 1 @ 1 0 14328588 -labor_pains n 1 1 @ 1 0 14330833 -labor_party n 1 2 @ ~ 1 0 08260961 -labor_pool n 1 1 @ 1 0 08180944 -labor_resources n 1 1 @ 1 0 13332197 -labor_secretary n 2 2 @ #m 2 0 10572469 00601822 -labor_union n 1 3 @ ~ #p 1 1 08233056 -laboratory n 2 3 @ ~ %p 2 1 03629986 08662570 -laboratory_bench n 1 2 @ #p 1 0 03630262 -laboratory_coat n 1 1 @ 1 0 03630383 -laborer n 1 3 @ ~ + 1 1 10241300 -laboriousness n 1 2 @ + 1 0 04709944 -labour n 4 6 @ ~ #p %m %p + 4 1 08180639 14048441 08261320 00620752 -labour_camp n 1 1 @ 1 0 03630849 -labour_of_love n 1 1 @ 1 0 00797207 -labour_pains n 1 1 @ 1 0 14330833 -labour_party n 2 3 @ ~ %m 2 0 08261320 08260961 -labourer n 1 3 @ ~ + 1 0 10241300 -labourite n 1 2 @ #m 1 0 10242328 -labrador n 1 2 @ #p 1 1 08819883 -labrador-ungava_peninsula n 1 3 @ #p %p 1 0 09328311 -labrador_peninsula n 1 3 @ #p %p 1 0 09328311 -labrador_retriever n 1 1 @ 1 0 02099712 -labrador_sea n 1 2 @ #p 1 0 09328596 -labrador_tea n 1 2 @ #m 1 0 12238491 -labridae n 1 3 @ #m %m 1 0 02607630 -labrocyte n 1 2 @ #p 1 0 05607602 -labrouste n 1 1 @ 1 0 11113732 -laburnum n 1 3 @ #m %m 1 0 12537988 -laburnum_alpinum n 1 2 @ #m 1 0 12538209 -laburnum_anagyroides n 1 2 @ #m 1 0 12538380 -labyrinth n 2 5 @ ~ #p %p + 2 1 03733281 05321307 -labyrinth_of_minos n 1 2 @ #p 1 0 03630992 -labyrinthine_artery n 1 2 @ #p 1 0 05349445 -labyrinthine_sense n 1 1 @ 1 0 05659365 -labyrinthine_vein n 1 2 @ #p 1 0 05372290 -labyrinthitis n 1 1 @ 1 0 14348757 -labyrinthodont n 1 2 @ #m 1 0 01655951 -labyrinthodonta n 1 3 @ #m %m 1 0 01655577 -labyrinthodontia n 1 3 @ #m %m 1 0 01655577 -lac n 1 3 @ ~ #s 1 0 14701143 -lac_dye n 1 2 @ %s 1 0 14989106 -lac_wax n 1 1 @ 1 0 15095639 -laccopetalum n 1 3 @ #m %m 1 0 11736216 -laccopetalum_giganteum n 1 2 @ #m 1 0 11736362 -lace n 2 4 @ ~ #p + 2 0 03631445 03631177 -lace-flower_vine n 1 2 @ #m 1 0 12831141 -lace_bug n 1 2 @ #m 1 0 02238594 -lace_fern n 1 2 @ #m 1 0 13209129 -lace_making n 1 1 @ 1 0 00909672 -lacebark n 1 2 @ #m 1 0 12180885 -lacepod n 1 2 @ #m 1 0 11899223 -lacer n 1 2 @ + 1 0 10242439 -laceration n 2 2 @ + 2 0 14287314 00391293 -lacerta n 1 3 @ #m %m 1 0 01693020 -lacerta_agilis n 1 2 @ #m 1 0 01693175 -lacerta_viridis n 1 2 @ #m 1 0 01693334 -lacertid n 1 3 @ ~ #m 1 0 01692864 -lacertid_lizard n 1 3 @ ~ #m 1 0 01692864 -lacertidae n 1 3 @ #m %m 1 0 01692713 -lacertilia n 1 4 @ #m %m + 1 0 01673668 -lacewing n 1 2 @ ~ 1 0 02264363 -lacewing_fly n 1 2 @ ~ 1 0 02264363 -lacewood n 1 2 @ #s 1 0 12807082 -lacework n 1 1 @ 1 0 03631710 -lachaise n 1 1 @ 1 0 11113898 -lachesis n 1 2 @ #m 1 0 09565639 -lachnolaimus n 1 2 @ #m 1 0 02608429 -lachnolaimus_maximus n 1 1 @ 1 0 02608547 -lachrymal_duct n 1 2 @ #p 1 0 05331812 -lachrymal_gland n 1 2 @ #p 1 0 05331653 -lachrymal_secretion n 1 2 @ %p 1 0 05405139 -lachrymation n 1 1 @ 1 0 13505843 -lachrymator n 1 2 @ ~ 1 0 15067877 -lacing n 3 4 @ ~ #p + 3 0 07926127 03631445 01160729 -lack n 1 3 @ ~ + 1 1 14449405 -lackey n 2 2 @ ~ 2 1 10242573 10684827 -laconia n 1 3 @ #p %m 1 0 08787695 -laconian n 1 2 @ #m 1 0 09711435 -laconicism n 1 1 @ 1 0 07089531 -laconism n 1 1 @ 1 0 07089531 -lacquer n 2 3 @ ~ + 2 0 14928729 03631811 -lacquer_tree n 1 2 @ #m 1 0 12767648 -lacquerware n 1 2 @ ~ 1 0 03631922 -lacrimal_apparatus n 1 3 @ #p %p 1 0 05405554 -lacrimal_artery n 1 2 @ #p 1 0 05349659 -lacrimal_bone n 1 2 @ #p 1 0 05332225 -lacrimal_duct n 1 2 @ #p 1 0 05331812 -lacrimal_gland n 1 2 @ #p 1 0 05331653 -lacrimal_sac n 1 2 @ #p 1 0 05331988 -lacrimal_secretion n 1 2 @ %p 1 0 05405139 -lacrimal_vein n 1 2 @ #p 1 0 05372428 -lacrimation n 1 1 @ 1 0 13505843 -lacrimator n 1 2 @ ~ 1 0 15067877 -lacrosse n 1 2 @ - 1 0 00477392 -lacrosse_ball n 1 1 @ 1 0 03632100 -lacrosse_player n 1 1 @ 1 0 10242682 -lactaid n 1 2 @ ; 1 0 14928885 -lactalbumin n 1 1 @ 1 0 14731716 -lactarius n 1 3 @ #m %m 1 0 13006377 -lactarius_delicioso n 1 2 @ #m 1 0 13006631 -lactase n 1 1 @ 1 0 14928885 -lactase_deficiency n 1 1 @ 1 0 14506656 -lactate n 1 1 @ 1 0 14679780 -lactation n 3 2 @ + 3 0 15142836 13505987 00842997 -lacteal n 1 1 @ 1 0 05397032 -lactic_acid n 1 1 @ 1 0 14929062 -lactiferous_duct n 1 2 @ #p 1 0 05554051 -lactifuge n 1 1 @ 1 0 14929209 -lactobacillaceae n 1 3 @ #m %m 1 0 01379636 -lactobacillus n 1 3 @ ~ #m 1 0 01380118 -lactobacillus_acidophilus n 1 2 @ #m 1 0 01380298 -lactobacteriaceae n 1 3 @ #m %m 1 0 01379636 -lactoflavin n 1 2 @ %s 1 0 15091473 -lactogen n 1 2 @ ~ 1 0 14929350 -lactogenic_hormone n 1 1 @ 1 0 14749543 -lactophrys n 1 3 @ #m %m 1 0 02654609 -lactophrys_quadricornis n 1 2 @ #m 1 0 02654745 -lactose n 1 1 @ 1 0 14929462 -lactose_intolerance n 1 1 @ 1 0 14506656 -lactosuria n 1 1 @ 1 0 14506920 -lactuca n 1 3 @ #m %m 1 0 11986091 -lactuca_sativa n 1 3 @ #m %p 1 0 11986511 -lactuca_sativa_asparagina n 1 2 @ %p 1 0 11987349 -lactuca_sativa_capitata n 1 3 @ #m %p 1 0 11986900 -lactuca_sativa_crispa n 1 2 @ %p 1 0 11987126 -lactuca_sativa_longifolia n 1 2 @ #m 1 0 11986729 -lactuca_scariola n 1 1 @ 1 0 11987511 -lactuca_serriola n 1 1 @ 1 0 11987511 -lacuna n 2 1 @ 2 0 03632189 03064443 -lad n 2 2 @ ~ 2 2 09908025 09871229 -lad's_love n 1 3 @ #m #s 1 0 11929477 -ladanum n 1 2 @ #s 1 0 12375107 -ladder n 3 4 @ ~ %p + 3 1 03632277 13940311 07443010 -ladder-back n 2 3 @ #p %p 2 0 03632729 03632577 -ladder-back_chair n 1 2 @ %p 1 0 03632729 -ladder_truck n 1 1 @ 1 0 03632852 -laddie n 1 1 @ 1 0 09871229 -ladies'-eardrop n 1 1 @ 1 0 12343753 -ladies'-eardrops n 1 1 @ 1 0 12343753 -ladies'_man n 1 2 @ ~ 1 0 10575089 -ladies'_room n 1 1 @ 1 0 03632963 -ladies'_slipper n 1 3 @ ~ #m 1 0 12056217 -ladies'_tobacco n 1 2 @ #m 1 0 11922192 -ladies'_tresses n 1 3 @ ~ #m 1 0 12083591 -ladin n 1 1 @ 1 0 06968052 -lading n 1 2 @ + 1 0 02964389 -ladino n 2 2 @ ; 2 0 10311823 06967282 -ladle n 1 4 @ ~ %p + 1 0 03633091 -ladoga n 1 2 @ #p 1 0 09331819 -ladrone_islands n 1 3 @ #p %p 1 0 08837552 -lady n 3 5 ! @ ~ #m ; 3 2 10243137 09989290 10242791 -lady's-eardrop n 1 1 @ 1 0 12343753 -lady's-eardrops n 1 1 @ 1 0 12343753 -lady's-finger n 1 3 @ #m %p 1 0 12171966 -lady's_earrings n 1 2 @ #m 1 0 12684379 -lady's_laces n 1 2 @ #m 1 0 12129738 -lady's_leek n 1 1 @ 1 0 12433769 -lady's_maid n 1 1 @ 1 0 10243483 -lady's_slipper n 1 3 @ ~ #m 1 0 12056217 -lady's_smock n 1 1 @ 1 0 11882074 -lady's_thistle n 1 2 @ #m 1 0 12015525 -lady's_tobacco n 1 2 @ #m 1 0 11922192 -lady's_tresses n 1 3 @ ~ #m 1 0 12083591 -lady-in-waiting n 1 1 @ 1 0 10243273 -lady-of-the-night n 1 2 @ #m 1 0 12899166 -lady-slipper n 1 3 @ ~ #m 1 0 12056217 -lady_beetle n 1 3 @ ~ #m 1 0 02165456 -lady_chapel n 1 2 @ #p 1 0 03633341 -lady_crab n 1 2 @ #m 1 0 01979526 -lady_day n 1 2 @ #p 1 0 15186147 -lady_diana_frances_spencer n 1 1 @ 1 0 10933658 -lady_emma_hamilton n 1 1 @ 1 0 11026078 -lady_fern n 1 3 @ ~ #m 1 0 13194572 -lady_friend n 1 1 @ 1 0 10130686 -lady_godiva n 1 1 @ 1 0 11003276 -lady_jane_grey n 1 2 @ #m 1 0 11015872 -lady_killer n 1 2 @ ~ 1 0 10575089 -lady_of_pleasure n 1 2 @ ~ 1 0 10485440 -lady_of_the_house n 1 1 @ 1 0 10189776 -lady_palm n 1 3 @ ~ #m 1 0 12595964 -lady_peel n 1 1 @ 1 0 11132117 -lady_tulip n 1 1 @ 1 0 12454556 -lady_with_the_lamp n 1 1 @ 1 0 11207410 -ladybeetle n 1 3 @ ~ #m 1 0 02165456 -ladybird n 1 3 @ ~ #m 1 0 02165456 -ladybird_beetle n 1 3 @ ~ #m 1 0 02165456 -ladybug n 1 3 @ ~ #m 1 0 02165456 -ladyfinger n 1 1 @ 1 0 07636957 -ladyfish n 1 2 @ #m 1 0 02542017 -ladylikeness n 1 2 @ + 1 0 04667821 -ladylove n 1 1 @ 1 0 10243384 -ladyship n 1 1 @ 1 0 06342977 -laelia n 1 2 @ #m 1 0 12070016 -laertes n 1 2 @ ; 1 0 09592734 -laetrile n 1 1 @ 1 0 14887633 -laevulose n 1 1 @ 1 0 14874932 -lafayette n 3 2 @ #p 3 0 11114056 09091538 09085830 -laffer n 1 1 @ 1 0 11114285 -laffer_curve n 1 1 @ 1 0 07004738 -laffite n 1 1 @ 1 0 11114423 -lafitte n 1 1 @ 1 0 11114423 -lafora's_disease n 1 1 @ 1 0 14087938 -lag n 3 4 @ ~ #p + 3 1 01067577 15272887 04307269 -lag_b'omer n 1 3 @ #p ; 1 0 15199406 -lag_bolt n 1 1 @ 1 0 03633886 -lag_screw n 1 1 @ 1 0 03633886 -lagan n 1 1 @ 1 0 03633474 -lagarostrobus n 1 3 @ #m %m 1 0 11655764 -lagarostrobus_colensoi n 1 1 @ 1 0 11655974 -lagarostrobus_franklinii n 1 2 @ #m 1 0 11656123 -lagenaria n 1 3 @ #m %m 1 0 12166003 -lagenaria_siceraria n 1 2 @ #m 1 0 12166128 -lagend n 1 1 @ 1 0 03633474 -lagenophera n 1 2 @ #m 1 0 11987722 -lager n 2 3 @ ~ ; 2 1 03629857 07887634 -lager_beer n 1 2 @ ~ 1 0 07887634 -lagerphone n 1 2 @ ; 1 0 03633632 -lagerstroemia n 1 3 @ #m %m 1 0 12329020 -lagerstroemia_indica n 1 2 @ #m 1 0 12329260 -lagerstroemia_speciosa n 1 2 @ #m 1 0 12329473 -laggard n 1 3 @ ~ + 1 1 09993252 -lagger n 1 3 @ ~ + 1 0 09993252 -lagging n 1 2 @ + 1 0 14786943 -lagidium n 1 3 @ #m %m 1 0 02367678 -lagniappe n 1 1 @ 1 0 13271797 -lagodon n 1 3 @ #m %m 1 0 02592244 -lagodon_rhomboides n 1 2 @ #m 1 0 02592371 -lagomorph n 1 3 @ ~ #m 1 0 02323449 -lagomorpha n 1 3 @ #m %m 1 0 02323186 -lagoon n 1 2 @ ~ 1 1 09328746 -lagophthalmos n 1 1 @ 1 0 14199146 -lagopus n 1 3 @ #m %m 1 0 01796222 -lagopus_scoticus n 1 2 @ ~ 1 0 01796519 -lagorchestes n 1 3 @ #m %m 1 0 01878203 -lagos n 1 2 @ #p 1 0 08974604 -lagostomus n 1 3 @ #m %m 1 0 02367993 -lagostomus_maximus n 1 2 @ #m 1 0 02368116 -lagothrix n 1 3 @ #m %m 1 0 02494257 -laguna n 1 2 @ ~ 1 0 09328746 -laguncularia n 1 3 @ #m %m 1 0 12325093 -laguncularia_racemosa n 1 2 @ #m 1 0 12325234 -lagune n 1 2 @ ~ 1 0 09328746 -lah n 1 1 @ 1 0 06868986 -lahar n 1 1 @ 1 0 07405292 -lahore n 1 2 @ #p 1 0 08977428 -lahu n 1 1 @ 1 0 06932879 -laid_paper n 1 1 @ 1 0 14934527 -lair n 1 1 @ 1 1 08591399 -laird n 1 2 @ ; 1 0 10243582 -laissez-faire_economy n 1 2 @ ~ 1 0 08364959 -laissez_faire n 1 1 @ 1 1 05962936 -laissez_passer n 1 2 @ ~ 1 0 06690408 -laity n 1 4 ! @ %m + 1 1 08153102 -laius n 1 2 @ ; 1 0 09597478 -lake n 3 4 @ ~ %p - 3 1 09328904 14991106 14991004 -lake_albert n 1 1 @ 1 0 09330061 -lake_albert_nyanza n 1 1 @ 1 0 09330061 -lake_aral n 1 1 @ 1 0 09330233 -lake_baikal n 1 2 @ #p 1 0 09242767 -lake_balaton n 1 2 @ #p 1 0 09212935 -lake_baykal n 1 2 @ #p 1 0 09242767 -lake_bed n 1 1 @ 1 0 09330378 -lake_bottom n 1 1 @ 1 0 09330378 -lake_canandaigua n 1 2 @ #m 1 0 09232526 -lake_cayuga n 1 2 @ #m 1 0 09239581 -lake_chad n 1 2 @ #p 1 0 09330467 -lake_champlain n 1 2 @ #p 1 0 09330604 -lake_chelan n 1 2 @ #p 1 0 09242956 -lake_clark_national_park n 1 2 @ #p 1 0 08607066 -lake_constance n 1 2 @ #p 1 0 09252766 -lake_district n 1 2 @ #p 1 0 08873412 -lake_duck n 1 1 @ 1 0 01851731 -lake_dwelling n 1 1 @ 1 0 03634034 -lake_edward n 1 2 @ #p 1 0 09330913 -lake_erie n 1 2 @ #p 1 0 09331066 -lake_eyre n 1 2 @ #p 1 0 09277913 -lake_geneva n 1 2 @ #p 1 0 09331328 -lake_herring n 2 4 @ #m #p %p 2 0 07795459 02539573 -lake_huron n 1 2 @ #p 1 0 09331535 -lake_ilmen n 1 2 @ #p 1 0 09331654 -lake_keuka n 1 2 @ #m 1 0 09325246 -lake_kivu n 1 2 @ #p 1 0 09326299 -lake_ladoga n 1 2 @ #p 1 0 09331819 -lake_leman n 1 2 @ #p 1 0 09331328 -lake_malawi n 1 2 @ #p 1 0 09332394 -lake_mead n 1 2 @ #p 1 0 03634189 -lake_michigan n 1 2 @ #p 1 0 09332050 -lake_nasser n 1 2 @ #p 1 0 09332246 -lake_nyasa n 1 2 @ #p 1 0 09332394 -lake_okeechobee n 1 2 @ #p 1 0 09377861 -lake_onega n 1 2 @ #p 1 0 09332598 -lake_ontario n 1 2 @ #p 1 0 09332770 -lake_poets n 1 2 @ %m 1 0 08468721 -lake_powell n 1 2 @ #p 1 0 03634469 -lake_saint_clair n 1 2 @ #p 1 0 09332976 -lake_salmon n 1 1 @ 1 0 02535759 -lake_seneca n 1 2 @ #m 1 0 09430100 -lake_st._clair n 1 2 @ #p 1 0 09332976 -lake_superior n 1 2 @ #p 1 0 09333171 -lake_tahoe n 1 2 @ #p 1 0 09243209 -lake_tana n 1 2 @ #p 1 0 09333334 -lake_tanganyika n 1 2 @ #p 1 0 09333512 -lake_trasimenus n 1 3 @ #p ; 1 0 01283185 -lake_trout n 2 4 @ #m #p %p 2 0 07795019 02538010 -lake_tsana n 1 2 @ #p 1 0 09333334 -lake_urmia n 1 2 @ #p 1 0 09333706 -lake_vanern n 1 2 @ #p 1 0 09333905 -lake_victoria n 1 2 @ #p 1 0 09334049 -lake_volta n 1 2 @ #p 1 0 03634723 -lake_whitefish n 1 2 @ #m 1 0 02539424 -lake_winnipeg n 1 2 @ #p 1 0 09480428 -lakefront n 1 1 @ 1 0 09331251 -lakeland n 1 2 @ #p 1 0 08873412 -lakeland_terrier n 1 1 @ 1 0 02095570 -lakeshore n 1 1 @ 1 0 09332890 -lakeside n 1 1 @ 1 0 09332890 -lakh n 1 1 @ 1 0 13751404 -lakota n 1 2 @ ~ 1 0 09669631 -lakshmi n 1 1 @ 1 0 09527091 -lallans n 1 1 @ 1 0 06950400 -lallation n 2 1 @ 2 0 14402488 06610143 -lally n 1 1 @ 1 0 03634899 -lally_column n 1 1 @ 1 0 03634899 -lalthyrus_tingitanus n 1 2 @ #m 1 0 12542043 -lam n 1 2 @ + 1 0 00060201 -lama n 2 4 @ ~ #m %m 2 0 10243664 02437825 -lama_guanicoe n 1 2 @ #m 1 0 02438173 -lama_pacos n 1 2 @ #m 1 0 02438272 -lama_peruana n 1 2 @ #m 1 0 02437971 -lamaism n 1 3 @ + ; 1 0 06241825 -lamaist n 1 3 @ + ; 1 0 09684352 -lamarck n 1 2 @ + 1 0 11114791 -lamarckian n 1 1 @ 1 0 10243791 -lamarckism n 1 2 @ ~ 1 0 06110426 -lamasery n 1 1 @ 1 0 03635032 -lamaze_method n 1 2 @ %p 1 0 13506119 -lamaze_method_of_childbirth n 1 2 @ %p 1 0 13506119 -lamb n 5 6 @ ~ #m #p %p + 5 1 02412440 11115029 10243988 10243872 07667151 -lamb's-quarter n 1 2 @ #p 1 0 07733712 -lamb's-quarters n 1 2 @ %p 1 0 11828577 -lamb's_lettuce n 1 1 @ 1 0 12950796 -lamb-chop n 1 1 @ 1 0 07667974 -lamb_chop n 1 1 @ 1 0 07667974 -lamb_curry n 1 1 @ 1 0 07824191 -lamb_roast n 1 2 @ ~ 1 0 07668215 -lamb_succory n 1 2 @ #m 1 0 11927740 -lambchop n 1 1 @ 1 0 07667974 -lambda n 2 2 @ #m 2 0 06835206 05233601 -lambda_hyperon n 1 1 @ 1 0 09334266 -lambda_particle n 1 1 @ 1 0 09334266 -lambdacism n 1 1 @ 1 0 14402625 -lambency n 1 2 @ + 1 0 04954534 -lambert n 2 1 @ 2 0 13640520 11115131 -lambert-eaton_syndrome n 1 1 @ 1 0 14079156 -lambertia n 1 3 @ #m %m 1 0 12219875 -lambertia_formosa n 1 2 @ #m 1 0 12220019 -lambis n 1 3 @ #m %m 1 0 01943367 -lambkill n 1 1 @ 1 0 12238073 -lambkin n 1 1 @ 1 0 02412629 -lamboid_suture n 1 2 @ #p 1 0 05544575 -lambrequin n 2 1 @ 2 0 03635236 03635108 -lambskin n 2 2 @ ~ 2 0 14765016 14759003 -lame n 2 1 @ 2 0 10642988 03635330 -lame_duck n 1 1 @ 1 0 10244108 -lamedh n 1 2 @ #m 1 0 06837895 -lamella n 3 2 @ #p 3 0 13011679 05326060 03635452 -lamellar_mixture n 1 2 @ ~ 1 0 14929662 -lamellate_placentation n 1 1 @ 1 0 11681865 -lamellibranch n 1 3 @ ~ #m 1 0 01955933 -lamellibranchia n 1 3 @ #m %m 1 0 01955463 -lamellicorn_beetle n 1 3 @ ~ #m 1 0 02171453 -lamellicornia n 1 3 @ #m %m 1 0 02171254 -lameness n 2 3 @ ~ + 2 0 14549937 14472900 -lament n 3 3 @ ~ + 3 0 07211950 07050619 06379568 -lamentation n 2 2 @ + 2 1 07211950 01072236 -lamentations n 1 2 @ #p 1 0 06438477 -lamenter n 1 3 @ ~ + 1 0 10335246 -lamia n 1 2 @ ; 1 0 09544109 -lamiaceae n 1 4 @ ~ #m %m 1 0 12838027 -lamina n 1 3 @ ~ + 1 0 05580929 -lamina_arcus_vertebrae n 1 1 @ 1 0 05581161 -laminar_flow n 1 1 @ 1 0 11521824 -laminar_flow_clean_room n 1 1 @ 1 0 03635516 -laminaria n 1 3 @ #m %m 1 0 01403284 -laminariaceae n 1 3 @ #m %m 1 0 01403052 -laminariales n 1 3 @ #m %m 1 0 01402831 -laminate n 1 4 @ ~ %p + 1 0 03635668 -laminated_glass n 1 1 @ 1 0 14882370 -lamination n 2 3 @ ~ + 2 0 03635932 00926923 -laminator n 1 2 @ + 1 0 10244226 -laminectomy n 1 1 @ 1 0 00682738 -laminitis n 1 1 @ 1 0 14348895 -lamisil n 1 2 @ ; 1 0 04412727 -lamium n 1 3 @ #m %m 1 0 12848870 -lamium_album n 1 2 @ #m 1 0 12849279 -lamium_amplexicaule n 1 2 @ #m 1 0 12849416 -lamivudine n 1 1 @ 1 0 03636062 -lammas n 1 1 @ 1 0 15190228 -lammas_day n 1 1 @ 1 0 15190228 -lammastide n 1 2 @ ; 1 0 15190424 -lammergeier n 1 1 @ 1 0 01617443 -lammergeyer n 1 1 @ 1 0 01617443 -lamna n 1 3 @ #m %m 1 0 01483707 -lamna_nasus n 1 2 @ #m 1 0 01483830 -lamnidae n 1 3 @ #m %m 1 0 01483188 -lamp n 2 3 @ ~ %p 2 2 03636248 03636649 -lamp_chimney n 1 2 @ #p 1 1 03636891 -lamp_house n 1 2 @ #p 1 0 03637027 -lamp_housing n 1 2 @ #p 1 0 03637027 -lamp_oil n 1 2 @ ~ 1 0 14687633 -lamp_shade n 1 2 @ #p 1 0 03637318 -lamp_shell n 1 2 @ #m 1 0 02315487 -lampblack n 1 1 @ 1 0 14793533 -lamper_eel n 1 3 @ ~ #m 1 0 01477525 -lamphouse n 1 2 @ #p 1 0 03637027 -lamplight n 1 1 @ 1 1 11472960 -lamplighter n 1 1 @ 1 0 10244359 -lampoon n 1 2 @ + 1 0 06780309 -lampoon_artist n 1 1 @ 1 0 10244503 -lampooner n 1 3 @ ~ + 1 0 10400998 -lamppost n 1 2 @ #p 1 0 03637181 -lamprey n 1 3 @ ~ #m 1 0 01477525 -lamprey_eel n 1 3 @ ~ #m 1 0 01477525 -lampridae n 1 3 @ #m %m 1 0 02545569 -lampris n 1 3 @ #m %m 1 0 02545687 -lampris_guttatus n 1 2 @ #m 1 0 02546028 -lampris_regius n 1 2 @ #m 1 0 02545841 -lampropeltis n 1 3 @ #m %m 1 0 01734273 -lampropeltis_getulus n 1 1 @ 1 0 01734637 -lampropeltis_triangulum n 1 1 @ 1 0 01734808 -lampshade n 1 2 @ #p 1 0 03637318 -lampshell n 1 2 @ #m 1 0 02315487 -lampyridae n 1 3 @ #m %m 1 0 02168121 -lan n 1 3 @ ~ %p 1 0 03681477 -lanai n 2 3 @ #p ; 2 0 09080006 03637480 -lanai_island n 1 2 @ #p 1 0 09080006 -lancashire n 1 2 @ #p 1 0 08884806 -lancaster n 2 4 @ #p %m + 2 0 08873269 08155765 -lancastrian n 2 2 @ #m 2 0 09704157 09704057 -lancastrian_line n 1 2 @ %m 1 0 08155765 -lance n 3 5 @ ~ #m %p + 3 1 04270891 04271148 03637618 -lance_corporal n 1 1 @ 1 0 10244665 -lancelet n 1 2 @ #m 1 0 01467804 -lancelot n 1 2 @ ; 1 0 11115293 -lanceolate_leaf n 1 1 @ 1 0 13158386 -lanceolate_spleenwort n 1 1 @ 1 0 13182937 -lancer n 1 1 @ 1 0 10244818 -lancers n 1 1 @ 1 0 00540616 -lancet n 2 1 @ 2 0 03637787 03637618 -lancet_arch n 1 1 @ 1 0 03637787 -lancet_fish n 1 2 @ #m 1 0 02544274 -lancet_window n 1 1 @ 1 0 03637898 -lancetfish n 1 2 @ #m 1 0 02544274 -lancewood n 2 3 @ #s %s 2 0 11696606 11696450 -lancewood_tree n 2 3 @ #m %s 2 0 12365285 11696450 -lanchou n 1 2 @ #p 1 0 08726582 -lanchow n 1 2 @ #p 1 0 08726582 -land n 11 6 @ ~ #p %m %p + 11 9 13250048 09335240 08556491 09334396 08544813 14514805 13246662 08166552 08168978 11115558 00453731 -land-office_business n 1 1 @ 1 0 01096997 -land_agent n 2 3 @ ~ ; 2 0 10509810 10244913 -land_area n 1 1 @ 1 1 05128870 -land_cress n 1 2 @ #p 1 0 11873845 -land_development n 1 1 @ 1 0 00948640 -land_grant n 1 1 @ 1 1 13254697 -land_line n 1 1 @ 1 0 03639497 -land_mass n 1 2 @ ~ 1 0 09335916 -land_mile n 1 3 @ #p %p 1 0 13651218 -land_mine n 1 2 @ ~ 1 0 03639675 -land_of_enchantment n 1 3 @ #p %p 1 0 09114696 -land_of_lincoln n 1 3 @ #p %p 1 0 09082540 -land_of_opportunity n 1 4 @ #m #p %p 1 0 09059274 -land_office n 1 1 @ 1 0 03639880 -land_rail n 1 2 @ #m 1 0 02015797 -land_reform n 1 2 @ ; 1 1 00260881 -land_resources n 1 1 @ 1 0 13332290 -land_site n 1 2 @ ~ 1 1 08651247 -land_tax n 1 2 @ ~ 1 0 13312569 -land_tenure n 1 2 @ ~ 1 0 13242719 -landau n 2 1 @ 2 0 11115785 03638014 -landed_estate n 1 2 @ ~ 1 0 13246662 -landed_gentry n 1 1 @ 1 0 08387685 -lander n 2 3 @ #p + 2 0 09159958 03638180 -landfall n 2 1 @ 2 0 09335693 00880431 -landfill n 1 2 @ ~ 1 0 09335809 -landgrave n 1 1 @ 1 0 10245029 -landholder n 1 2 @ ~ 1 0 10245639 -landholding n 2 1 @ 2 0 13247445 13247358 -landing n 4 5 @ ~ #p %p + 4 2 03638511 03638321 00052500 00052334 -landing_approach n 1 3 @ ~ #p 1 0 00281752 -landing_craft n 1 1 @ 1 0 03638623 -landing_deck n 1 2 @ #p 1 0 03363216 -landing_field n 1 4 @ ~ #p %p 1 0 02687992 -landing_flap n 1 1 @ 1 0 03638743 -landing_gear n 1 4 @ ~ #p %p 1 0 03638883 -landing_net n 1 2 @ #m 1 0 03639077 -landing_party n 1 1 @ 1 0 08265347 -landing_place n 1 4 @ ~ #p %p 1 0 03638321 -landing_skid n 1 2 @ #p 1 0 03639230 -landing_stage n 1 2 @ #p 1 0 03639360 -landing_strip n 1 3 @ ~ %p 1 0 02693070 -landlady n 1 1 @ 1 0 10245156 -landler n 2 1 @ 2 1 07055923 00541338 -landline n 1 1 @ 1 0 03639497 -landlocked_salmon n 1 1 @ 1 0 02535759 -landlord n 1 2 @ ~ 1 1 10245236 -landlord's_lien n 1 1 @ 1 0 13401970 -landlubber n 2 2 @ + 2 0 10245507 10245341 -landman n 1 1 @ 1 0 10245507 -landmark n 4 3 @ ~ ; 4 2 08624891 07417851 07259319 05230357 -landmass n 1 2 @ ~ 1 1 09335916 -landowner n 1 2 @ ~ 1 1 10245639 -landowska n 1 1 @ 1 0 11115929 -landrover n 1 1 @ 1 1 03594945 -landry's_paralysis n 1 1 @ 1 0 14353622 -landscape n 4 2 @ + 4 3 08646902 03640166 03640011 06209940 -landscape_architect n 1 2 @ ~ 1 0 10245863 -landscape_architecture n 1 1 @ 1 0 06124532 -landscape_gardener n 1 2 @ ~ 1 0 10245863 -landscape_gardening n 1 1 @ 1 0 00921160 -landscape_painting n 1 1 @ 1 0 03640011 -landscaper n 1 2 @ ~ 1 0 10245863 -landscaping n 2 2 @ + 2 1 00921160 03640288 -landscapist n 2 3 @ ~ + 2 0 10246176 10245863 -landside n 1 2 @ #p 1 0 03640456 -landslide n 2 2 @ ~ 2 2 07474185 07405411 -landslip n 1 2 @ ~ 1 0 07405411 -landsmaal n 1 1 @ 1 0 06954768 -landsmal n 1 1 @ 1 0 06954768 -landsman n 2 1 @ 2 0 10245507 10245341 -landsteiner n 1 1 @ 1 0 11116117 -lane n 2 2 @ ~ 2 2 03640589 03640660 -lane's_prince_albert n 1 1 @ 1 0 07742415 -laney n 1 1 @ 1 0 11116284 -langbeinite n 1 2 @ %s 1 0 14679882 -lange n 1 1 @ 1 0 11116466 -langlaufer n 1 1 @ 1 0 10246317 -langley n 2 1 @ 2 0 13609871 11116642 -langmuir n 1 1 @ 1 0 11116875 -langobard n 1 1 @ 1 0 09703344 -langouste n 2 4 @ #m #p %p 2 0 07793260 01984695 -langoustine n 1 2 @ #p 1 0 07793521 -langsat n 1 3 @ #m %p 1 0 12699301 -langset n 1 3 @ #m %p 1 0 12699301 -langside n 1 2 @ ; 1 0 01283389 -langston_hughes n 1 1 @ 1 0 11065101 -langsyne n 1 1 @ 1 0 15252635 -langtry n 1 1 @ 1 0 11117108 -language n 6 6 @ ~ #p %p ; - 6 5 06282651 07109196 07051975 05808557 05650820 06304059 -language_area n 1 3 @ #p %p 1 0 05489394 -language_barrier n 1 1 @ 1 0 05691963 -language_learning n 1 2 @ ~ 1 0 05754899 -language_lesson n 1 2 @ ~ 1 0 00729478 -language_requirement n 1 1 @ 1 0 05893143 -language_school n 1 1 @ 1 0 08282950 -language_system n 1 2 @ ~ 1 0 07279045 -language_teaching n 1 1 @ 1 0 00888162 -language_unit n 1 3 @ ~ #p 1 0 06284225 -language_zone n 1 3 @ #p %p 1 0 05489394 -languas_speciosa n 1 2 @ #m 1 0 12357485 -langue_d'oc n 1 2 @ ~ 1 0 06965406 -langue_d'oc_french n 1 2 @ ~ 1 0 06965406 -langue_d'oil n 1 1 @ 1 0 06965249 -langue_d'oil_french n 1 1 @ 1 0 06965249 -languedoc-roussillon n 1 2 @ #p 1 0 08942780 -languisher n 1 2 @ + 1 0 10246395 -languor n 3 2 @ + 3 1 07516222 07484109 04635953 -langur n 1 3 @ ~ #m 1 0 02488291 -laniard n 3 2 @ ; 3 0 03641569 03641451 03641302 -laniidae n 1 3 @ #m %m 1 0 01598432 -lanius n 1 3 @ #m %m 1 0 01598820 -lanius_borealis n 1 1 @ 1 0 01599269 -lanius_excubitor n 1 1 @ 1 0 01599159 -lanius_lucovicianus n 1 2 @ #m 1 0 01599556 -lanius_ludovicianus_excubitorides n 1 1 @ 1 0 01599388 -lanius_ludovicianus_migrans n 1 1 @ 1 0 01599741 -lankiness n 1 2 @ + 1 0 04998700 -lanolin n 2 2 @ #s 2 0 14816181 03640850 -lanoxin n 1 2 @ ; 1 0 03197804 -lansa n 1 2 @ #p 1 0 07745803 -lansat n 1 2 @ #p 1 0 07745803 -lanseh n 1 2 @ #p 1 0 07745803 -lanseh_tree n 1 3 @ #m %p 1 0 12699301 -lanset n 1 2 @ #p 1 0 07745803 -lansing n 1 2 @ #p 1 0 09101318 -lansium_domesticum n 1 3 @ #m %p 1 0 12699301 -lansoprazole n 1 1 @ 1 0 14777277 -lantana n 1 2 @ #m 1 0 12915140 -lantern n 1 2 @ ~ 1 1 03640988 -lantern-fly n 1 2 @ #m 1 0 02259987 -lantern_fly n 1 2 @ #m 1 0 02259987 -lantern_jaw n 1 1 @ 1 0 05600030 -lantern_pinion n 1 1 @ 1 0 03641134 -lantern_slide n 1 2 @ %p 1 1 04237773 -lantern_wheel n 1 1 @ 1 0 03641134 -lanternfish n 1 2 @ #m 1 0 02543255 -lanthanide n 1 2 @ ~ 1 0 14624743 -lanthanide_series n 1 1 @ 1 0 14625297 -lanthanoid n 1 2 @ ~ 1 0 14624743 -lanthanon n 1 2 @ ~ 1 0 14624743 -lanthanotidae n 1 3 @ #m %m 1 0 01691384 -lanthanotus n 1 3 @ #m %m 1 0 01691525 -lanthanotus_borneensis n 1 2 @ #m 1 0 01691652 -lanthanum n 1 1 @ 1 0 14643118 -lanugo n 1 1 @ 1 0 05255939 -lanyard n 3 2 @ ; 3 0 03641569 03641451 03641302 -lanzhou n 1 2 @ #p 1 0 08726582 -lao n 2 2 @ #m 2 0 09719794 06935594 -lao-tse n 1 1 @ 1 0 11117307 -lao-tzu n 1 1 @ 1 0 11117307 -lao-zi n 1 1 @ 1 0 11117307 -lao_people's_democratic_republic n 1 5 @ #m #p %m %p 1 0 08956760 -laocoon n 1 2 @ ; 1 0 09597141 -laos n 1 6 @ #m #p %m %p + 1 1 08956760 -laotian n 1 3 @ #m + 1 0 09719794 -laotian_capital n 1 2 @ #p 1 0 08957064 -laotian_monetary_unit n 1 2 @ ~ 1 0 13680823 -lap n 6 4 @ ~ #p + 6 1 05562595 14515041 03641947 03641706 00295172 00150591 -lap_choly n 1 1 @ 1 0 00669262 -lap_covering n 1 2 @ #p 1 0 03641947 -lap_joint n 1 1 @ 1 0 03642573 -lap_of_honour n 1 1 @ 1 0 00295563 -lap_of_luxury n 1 1 @ 1 0 14492116 -lap_of_the_gods n 1 1 @ 1 0 14515177 -laparocele n 1 1 @ 1 0 14297406 -laparoscope n 1 1 @ 1 0 03642144 -laparoscopic_cholecystectomy n 1 1 @ 1 0 00669262 -laparoscopy n 1 1 @ 1 0 00683012 -laparotomy n 1 2 @ ~ 1 0 00682856 -lapboard n 1 1 @ 1 0 03642341 -lapdog n 1 1 @ 1 0 02085272 -lapel n 1 2 @ ~ 1 1 03642444 -lapful n 1 1 @ 1 0 13768250 -lapidarist n 1 2 @ + 1 0 10246703 -lapidary n 2 2 @ + 2 0 10246703 10246511 -lapidation n 1 2 @ + 1 0 01164394 -lapidator n 1 2 @ + 1 0 10659393 -lapidist n 1 2 @ + 1 0 10246511 -lapin n 2 1 @ 2 0 14765324 02324514 -lapis_lazuli n 1 1 @ 1 0 14929797 -laplace n 1 1 @ 1 0 11117451 -lapland n 1 3 @ #p %m 1 0 08957212 -laportea n 1 3 @ #m %m 1 0 12393942 -laportea_canadensis n 1 2 @ #m 1 0 12394118 -lapp n 2 2 @ #m 2 0 09720033 06959427 -lappet n 3 1 @ 3 1 05471427 03642716 02307910 -lappet_caterpillar n 1 2 @ #m 1 0 02308033 -lappet_moth n 1 1 @ 1 0 02307910 -lappic n 1 2 @ ~ 1 0 06959261 -lapping n 1 1 @ 1 0 03561657 -lappish n 1 2 @ ~ 1 0 06959261 -lappland n 1 4 @ #p %m + 1 0 08957212 -lapplander n 1 3 @ #m + 1 0 09720033 -lappula n 1 3 @ #m %m 1 0 12819953 -lapse n 3 3 @ ~ + 3 3 00074524 15271417 00068333 -lapsing n 1 2 @ ~ 1 0 00068333 -laptev_sea n 1 2 @ #p 1 0 09336052 -laptop n 1 1 @ 1 0 03642806 -laptop_computer n 1 1 @ 1 0 03642806 -laputa n 1 2 @ + 1 0 05630539 -lapwing n 1 2 @ #m 1 0 02024763 -laramie n 1 2 @ #p 1 0 09160056 -larboard n 1 2 ! @ 1 0 03642928 -larcener n 1 2 @ + 1 0 10246913 -larcenist n 1 2 @ + 1 0 10246913 -larcenous n 1 1 @ 1 0 04875935 -larceny n 1 3 @ ~ + 1 0 00780889 -larch n 2 5 @ ~ #m #s %s 2 0 11619136 11618861 -larch_tree n 1 4 @ ~ #m %s 1 0 11618861 -lard n 1 3 @ #s + 1 0 07672421 -lard_oil n 1 1 @ 1 0 14929897 -larder n 2 2 @ ~ 2 0 07572616 03885535 -lardizabala n 1 2 @ #m 1 0 11703205 -lardizabala_family n 1 3 @ #m %m 1 0 11702999 -lardizabalaceae n 1 3 @ #m %m 1 0 11702999 -lardner n 1 1 @ 1 0 11117744 -laredo n 1 2 @ #p 1 0 09145083 -large n 1 2 @ + 1 0 05096191 -large-flowered_calamint n 1 1 @ 1 0 12843316 -large-flowered_fiddleneck n 1 2 @ #m 1 0 12817129 -large-flowering_magnolia n 1 1 @ 1 0 11710136 -large-leaved_aster n 1 1 @ 1 0 11934463 -large-leaved_cucumber_tree n 1 1 @ 1 0 11710987 -large-leaved_magnolia n 1 1 @ 1 0 11710987 -large-toothed_aspen n 1 1 @ 1 0 12734215 -large_calorie n 1 2 @ %p 1 0 13726562 -large_cap n 1 1 @ 1 0 08059125 -large_civet n 1 1 @ 1 0 02135610 -large_crabgrass n 1 1 @ 1 0 12117326 -large_cranberry n 1 2 @ %p 1 0 12245885 -large_indefinite_amount n 1 2 @ ~ 1 0 13757724 -large_indefinite_quantity n 1 2 @ ~ 1 0 13757724 -large_integer n 1 2 @ ~ 1 0 13745420 -large_intestine n 1 4 @ ~ #p %p 1 1 05535484 -large_magellanic_cloud n 1 1 @ 1 0 09336271 -large_number n 1 1 @ 1 1 13775093 -large_order n 1 1 @ 1 1 00797723 -large_periwinkle n 1 1 @ 1 0 11778257 -large_person n 1 2 @ ~ 1 0 10247044 -large_poodle n 1 1 @ 1 0 02113892 -large_tooth_aspen n 1 1 @ 1 0 12734215 -large_white n 1 2 @ #m 1 0 02281136 -large_white_petunia n 1 1 @ 1 0 12909614 -large_yellow_lady's_slipper n 1 1 @ 1 0 12057447 -largeleaf_holly n 1 1 @ 1 0 12758325 -largemouth n 1 2 @ %p 1 0 02565324 -largemouth_bass n 2 3 @ #p %p 2 0 07777735 02565324 -largemouth_black_bass n 1 2 @ %p 1 0 02565324 -largemouthed_bass n 1 2 @ %p 1 0 02565324 -largemouthed_black_bass n 1 2 @ %p 1 0 02565324 -largeness n 4 4 ! @ ~ + 4 0 05618293 05106317 05103946 04788982 -largess n 2 1 @ 2 0 13265749 04832716 -largesse n 2 1 @ 2 0 13265749 04832716 -larghetto n 1 2 @ ; 1 0 07046737 -largo n 1 3 @ + ; 1 0 07046543 -lari n 2 4 @ #m %m %p 2 0 13700662 02040698 -lariat n 1 2 @ %p 1 0 03644378 -laricariidae n 1 3 @ #m %m 1 0 02520391 -larid n 1 3 @ ~ #m 1 0 02041085 -laridae n 1 3 @ #m %m 1 0 02040872 -larium n 1 1 @ 1 0 03742728 -larix n 1 3 @ #m %m 1 0 11618750 -larix_decidua n 1 1 @ 1 0 11619845 -larix_laricina n 1 1 @ 1 0 11619227 -larix_lyallii n 1 1 @ 1 0 11619687 -larix_occidentalis n 1 1 @ 1 0 11619455 -larix_russica n 1 1 @ 1 0 11620016 -larix_siberica n 1 1 @ 1 0 11620016 -lark n 4 4 @ ~ #m + 4 0 01573074 01528654 01527617 00429322 -larkspur n 1 1 @ 1 1 11733312 -larodopa n 1 2 @ ; 1 0 14605132 -larotid n 1 1 @ 1 0 02703894 -larousse n 1 1 @ 1 0 11118072 -larrea n 1 3 @ #m %m 1 0 12722884 -larrea_tridentata n 1 3 @ #m %p 1 0 12723062 -lars_onsager n 1 1 @ 1 0 11215384 -larus n 1 3 @ #m %m 1 0 02041492 -larus_argentatus n 1 2 @ #m 1 0 02042046 -larus_canus n 1 2 @ #m 1 0 02041678 -larus_marinus n 1 2 @ #m 1 0 02041875 -larus_ridibundus n 1 2 @ #m 1 0 02042180 -larva n 1 3 @ ~ + 1 1 02311060 -larvacea n 1 3 @ #m %m 1 0 01470287 -larvacean n 1 2 @ #m 1 0 01470479 -larvacide n 1 1 @ 1 0 14600135 -larvicide n 1 1 @ 1 0 14930073 -laryngeal_artery n 1 2 @ #p 1 0 05349906 -laryngeal_vein n 1 2 @ #p 1 0 05372593 -laryngectomy n 1 1 @ 1 0 00683214 -laryngismus n 1 1 @ 1 0 00227137 -laryngitis n 1 1 @ 1 0 14349043 -laryngopharyngitis n 1 1 @ 1 0 14349208 -laryngopharynx n 1 3 @ #p + 1 0 05529159 -laryngoscope n 1 1 @ 1 0 03643149 -laryngospasm n 1 1 @ 1 0 14100957 -laryngostenosis n 1 1 @ 1 0 14106823 -laryngotracheobronchitis n 1 1 @ 1 0 14349311 -larynx n 1 4 @ #p %p + 1 0 05529729 -las_cruces n 1 2 @ #p 1 0 09115886 -las_vegas n 1 2 @ #p 1 1 09110939 -lasagna n 2 1 @ 2 0 07870167 07701053 -lasagne n 2 1 @ 2 0 07870167 07701053 -lasalle n 1 1 @ 1 0 11118205 -lascar n 2 2 @ #p 2 0 10247176 09176342 -lascaux n 1 2 @ #p 1 0 09336416 -lasciviousness n 1 2 @ + 1 0 07490214 -lasek n 1 1 @ 1 0 00680183 -laser n 1 2 @ #p 1 0 03643253 -laser-assisted_in_situ_keratomileusis n 1 1 @ 1 0 00680511 -laser-assisted_subepithelial_keratomileusis n 1 1 @ 1 0 00680183 -laser-guided_bomb n 1 2 @ ~ 1 0 03643491 -laser_beam n 1 1 @ 1 0 11485681 -laser_printer n 1 1 @ 1 0 03643737 -laser_trabecular_surgery n 1 1 @ 1 0 00680336 -lash n 3 3 @ #p + 3 0 05314919 03643907 00134574 -lash-up n 1 2 @ ~ 1 0 03644248 -lasher n 1 1 @ 1 1 10247250 -lashing n 2 2 @ ~ 2 1 01163047 03644073 -lashings n 1 1 @ 1 0 13777509 -lashkar-e-jhangvi n 1 3 @ #p ; 1 0 08030481 -lashkar-e-omar n 1 2 @ ; 1 0 08030711 -lashkar-e-taiba n 1 2 @ ; 1 0 08031020 -lashkar-e-tayyiba n 1 2 @ ; 1 0 08031020 -lashkar-e-toiba n 1 2 @ ; 1 0 08031020 -lasik n 1 1 @ 1 0 00680511 -lasiocampa n 1 3 @ #m %m 1 0 02306672 -lasiocampid n 1 3 @ ~ #m 1 0 02306433 -lasiocampid_moth n 1 3 @ ~ #m 1 0 02306433 -lasiocampidae n 1 3 @ #m %m 1 0 02306159 -lasiurus n 1 3 @ #m %m 1 0 02146064 -lasiurus_borealis n 1 2 @ #m 1 0 02146201 -lasix n 1 2 @ ; 1 0 03406597 -laskar_jihad n 1 2 @ ; 1 0 08031386 -lass n 1 2 @ ~ 1 0 10247358 -lassa n 1 2 @ #p 1 0 08907377 -lassa_fever n 1 1 @ 1 0 14135956 -lassa_virus n 1 2 @ #m 1 0 01330852 -lassen_volcanic_national_park n 1 2 @ #p 1 0 08607231 -lassie n 1 2 @ ~ 1 0 10247358 -lassitude n 3 2 @ ~ 3 0 14014990 07484109 05042138 -lasso n 2 3 @ %p + 2 0 11118362 03644378 -last n 8 3 @ ~ ; 8 3 15267536 13850148 01264667 15143276 13718178 13618180 07291794 03644532 -last_day n 1 2 @ ; 1 0 15171307 -last_frontier n 1 3 @ #p %p 1 0 09055015 -last_gasp n 1 1 @ 1 0 15268547 -last_half n 1 1 @ 1 0 15258179 -last_hurrah n 1 1 @ 1 0 00212678 -last_in_first_out n 1 1 @ 1 0 00620258 -last_judgement n 1 2 @ ; 1 0 15171307 -last_judgment n 1 2 @ ; 1 0 15171307 -last_laugh n 1 1 @ 1 0 07474318 -last_mile n 1 1 @ 1 0 00291286 -last_minute n 1 1 @ 1 0 15244942 -last_name n 1 2 @ ~ 1 0 06336904 -last_quarter n 1 1 @ 1 0 15207430 -last_resort n 1 1 @ 1 1 00178972 -last_respects n 1 2 @ ; 1 0 01229350 -last_rites n 2 2 @ ; 2 1 01039637 01030152 -last_straw n 1 1 @ 1 0 01222034 -last_supper n 1 1 @ 1 0 01035504 -last_word n 3 2 @ ~ 3 0 06649786 06412213 04813712 -lastex n 1 2 @ ; 1 0 03644698 -lasthenia n 1 3 @ #m %m 1 0 11987956 -lasthenia_chrysostoma n 1 2 @ #m 1 0 11988132 -lastingness n 1 3 @ ~ + 1 0 05053688 -lastreopsis n 1 2 @ #m 1 0 13197670 -laszlo_lowestein n 1 1 @ 1 0 11138924 -lat n 1 2 @ #p 1 1 05559122 -latakia n 2 2 @ #p 2 0 14715601 09034402 -latanier n 1 2 @ #m 1 0 12589687 -latanier_palm n 1 2 @ #m 1 0 12589687 -latch n 2 2 @ + 2 0 03645011 03644858 -latchet n 1 1 @ 1 0 03645168 -latchkey n 1 1 @ 1 0 03645290 -latchkey_child n 1 1 @ 1 0 10247519 -latchstring n 1 1 @ 1 0 03645411 -late-night_hour n 1 2 @ #p 1 0 15168080 -late_blight n 1 2 @ ~ 1 0 14217676 -late_greek n 1 1 @ 1 0 06977087 -late_latin n 1 1 @ 1 0 06963571 -late_purple_aster n 1 1 @ 1 0 11936287 -latecomer n 1 1 @ 1 0 10247720 -lateen n 1 2 @ #p 1 0 03645577 -lateen-rig n 1 3 @ #p %p 1 0 03645730 -lateen_sail n 1 2 @ #p 1 0 03645577 -latency n 3 4 @ #p + ; 3 0 15297069 15273241 14482852 -latency_period n 1 3 @ #p ; 1 0 15146260 -latency_phase n 1 3 @ #p ; 1 0 15146260 -latency_stage n 1 3 @ #p ; 1 0 15146260 -lateness n 1 4 ! @ ~ + 1 0 05047059 -latent_content n 1 2 @ ; 1 0 06599655 -latent_diabetes n 1 1 @ 1 0 14120096 -latent_heat n 1 2 @ ~ 1 0 11471097 -latent_hostility n 1 1 @ 1 0 13980596 -latent_period n 2 1 @ 2 0 15273241 15273101 -latent_schizophrenia n 1 1 @ 1 0 14398929 -lateral n 1 1 @ 1 0 00561707 -lateral_cerebral_sulcus n 1 2 @ #p 1 0 05224080 -lateral_condyle n 1 2 @ #p 1 0 05472394 -lateral_epicondyle n 1 1 @ 1 0 05472846 -lateral_epicondylitis n 1 1 @ 1 0 14356720 -lateral_geniculate n 1 1 @ 1 0 05487694 -lateral_geniculate_body n 1 1 @ 1 0 05487694 -lateral_humeral_epicondylitis n 1 1 @ 1 0 14356720 -lateral_line n 1 2 @ #p 1 0 02465929 -lateral_line_organ n 1 2 @ #p 1 0 02465929 -lateral_pass n 1 1 @ 1 0 00561707 -lateral_rectus n 1 1 @ 1 0 05316407 -lateral_rectus_muscle n 1 1 @ 1 0 05316407 -lateral_thinking n 1 1 @ 1 0 05848182 -lateral_ventricle n 1 1 @ 1 0 05503196 -lateralisation n 1 1 @ 1 0 05992624 -laterality n 3 2 @ ~ 3 0 05992624 05067007 04998417 -lateralization n 1 2 @ + 1 0 05992624 -lateran n 1 3 @ #p %p 1 0 08807554 -lateran_council n 1 2 @ ~ 1 0 08315194 -lateran_palace n 1 2 @ #p 1 0 03645866 -lateran_treaty n 1 1 @ 1 0 06774871 -laterite n 1 1 @ 1 0 14930165 -lates n 1 3 @ #m %m 1 0 02560383 -lates_calcarifer n 1 2 @ #m 1 0 02560546 -latest n 1 1 @ 1 0 06643185 -latex n 2 2 @ ~ 2 0 15006118 03646020 -latex_paint n 1 1 @ 1 0 03646020 -lath n 1 2 @ #p 1 0 03646148 -lath_and_plaster n 1 1 @ 1 0 14930312 -lathe n 1 3 @ ~ %p 1 0 03646296 -lathee n 1 1 @ 1 0 03646546 -lather n 4 3 @ ~ + 4 1 09439213 14403560 10247800 09336555 -lathi n 1 1 @ 1 0 03646546 -lathyrus n 1 3 @ #m %m 1 0 12538603 -lathyrus_hirsutus n 1 1 @ 1 0 12539564 -lathyrus_japonicus n 1 2 @ #m 1 0 12540250 -lathyrus_latifolius n 1 2 @ #m 1 0 12540001 -lathyrus_maritimus n 1 2 @ #m 1 0 12540250 -lathyrus_niger n 1 2 @ #m 1 0 12540488 -lathyrus_nissolia n 1 2 @ #m 1 0 12540647 -lathyrus_odoratus n 1 2 @ #m 1 0 12540800 -lathyrus_palustris n 1 2 @ #m 1 0 12540966 -lathyrus_pratensis n 1 2 @ #m 1 0 12541157 -lathyrus_sativus n 1 2 @ #m 1 0 12541403 -lathyrus_splendens n 1 2 @ #m 1 0 12541606 -lathyrus_sylvestris n 1 2 @ #m 1 0 12541805 -lathyrus_tuberosus n 1 2 @ #m 1 0 12542240 -lathyrus_vernus n 1 2 @ #m 1 0 12542466 -laticifer n 1 1 @ 1 0 13091227 -latimeria n 1 3 @ #m %m 1 0 02515560 -latimeria_chalumnae n 1 2 @ #m 1 0 02515713 -latimeridae n 1 3 @ #m %m 1 0 02515410 -latin n 3 4 @ ~ + - 3 1 06962600 10248008 10247880 -latin_alphabet n 1 2 @ %m 1 0 06497872 -latin_america n 1 6 @ %m %p + ; - 1 1 09022831 -latin_american n 1 3 @ ~ #m 1 1 09720256 -latin_cross n 1 1 @ 1 0 03646695 -latin_quarter n 1 3 @ #p %p 1 0 08933084 -latin_square n 1 1 @ 1 0 08269506 -latinae n 1 2 @ #m 1 0 02560271 -latinesce n 1 1 @ 1 0 06896623 -latinian_language n 1 2 @ ~ 1 0 06963951 -latinism n 1 1 @ 1 0 06293655 -latinist n 1 2 @ + 1 0 10248091 -latino n 2 3 @ ~ #m 2 0 09720256 06896716 -latino_sine_flexione n 1 1 @ 1 0 06896856 -latissimus_dorsi n 1 2 @ #p 1 0 05559122 -latitude n 4 3 @ ~ + 4 1 08595531 13995148 08595720 05127640 -latitudinarian n 1 2 @ ; 1 0 10248198 -latium n 1 2 @ #p 1 0 08806735 -latke n 1 1 @ 1 0 07641581 -latona n 1 1 @ 1 0 09577833 -latria n 1 1 @ 1 0 01043989 -latrine n 1 2 @ ; 1 0 03646809 -latrobe n 1 1 @ 1 0 11118602 -latrodectus n 1 3 @ #m %m 1 0 01774252 -latrodectus_mactans n 1 2 @ #m 1 0 01774384 -lats n 1 1 @ 1 0 13701310 -latte n 1 1 @ 1 0 07920222 -latten n 1 1 @ 1 0 14930824 -latter n 1 2 ! @ 1 0 13846708 -latter-day_saint n 1 3 @ ~ #m 1 0 10248542 -lattice n 3 3 @ ~ %p 3 0 05729875 04582454 03646916 -latticework n 1 3 @ ~ %p 1 0 03646916 -latvia n 1 5 @ #p %m %p + 1 0 09013074 -latvian n 2 3 @ ~ #m 2 0 09707166 06946355 -latvian_monetary_unit n 1 2 @ ~ 1 0 13701183 -laudability n 1 1 @ 1 0 04807342 -laudableness n 1 1 @ 1 0 04807342 -laudanum n 1 1 @ 1 1 03647108 -laudator n 1 2 @ ~ 1 0 10248711 -lauder n 2 3 @ ~ + 2 0 11118886 10248711 -laudo n 1 2 @ #p 1 0 09336702 -laugh n 3 4 @ ~ %p + 3 2 07127006 06878404 06778102 -laugh_line n 2 2 @ #p 2 0 13906345 06778777 -laugh_track n 1 1 @ 1 0 03647291 -laugher n 2 3 @ ~ + 2 0 10248876 07475107 -laughing_gas n 1 2 @ %s 1 0 03826945 -laughing_gull n 1 2 @ #m 1 0 02042180 -laughing_hyena n 1 2 @ #m 1 0 02117900 -laughing_jackass n 2 2 @ #m 2 0 01828556 01625121 -laughing_owl n 1 2 @ #m 1 0 01625121 -laughingstock n 1 2 @ ~ 1 0 09884666 -laughter n 2 2 @ ~ 2 1 07127006 01072402 -laughton n 1 1 @ 1 0 11119061 -lauhala n 1 1 @ 1 0 12155009 -launce n 1 2 @ #m 1 0 02618513 -launch n 2 3 @ ~ + 2 0 03647423 00103140 -launch_area n 1 2 @ #p 1 0 03647691 -launch_pad n 1 2 @ #p 1 0 03647691 -launcher n 2 3 @ ~ + 2 1 03647520 02982232 -launching n 3 2 @ ~ 3 1 00103291 00238022 00103140 -launching_pad n 1 2 @ #p 1 0 03647691 -launching_site n 1 2 @ %p 1 0 08591486 -launchpad n 1 2 @ #p 1 0 03647691 -launderette n 1 1 @ 1 0 03647872 -laundering n 1 1 @ 1 1 00578708 -laundress n 1 1 @ 1 0 10769188 -laundromat n 1 1 @ 1 0 03647872 -laundry n 2 3 @ ~ + 2 1 03648219 03648066 -laundry_basket n 1 1 @ 1 0 03050864 -laundry_cart n 1 1 @ 1 0 03648431 -laundry_detergent n 1 1 @ 1 0 03648527 -laundry_truck n 1 1 @ 1 1 03648667 -laundryman n 1 1 @ 1 0 10769084 -laundrywoman n 1 1 @ 1 0 10769188 -lauraceae n 1 3 @ #m %m 1 0 11703386 -laurasia n 1 2 @ #p 1 0 09336853 -laureate n 1 2 @ ~ 1 0 10249011 -laurel n 3 4 @ ~ #m ; 3 0 11703669 11119190 03648804 -laurel-tree n 1 2 @ #m 1 0 11706942 -laurel_and_hardy n 1 2 @ %m 1 0 08181375 -laurel_cherry n 2 2 @ #m 2 0 12646950 12643113 -laurel_family n 1 3 @ #m %m 1 0 11703386 -laurel_oak n 2 1 @ 2 0 12273768 12272883 -laurel_sumac n 1 2 @ #m 1 0 12760875 -laurel_willow n 1 2 @ #m 1 0 12729521 -laurel_wreath n 2 3 @ ~ ; 2 0 06706676 03648804 -laurels n 2 2 @ ~ 2 2 06696483 14436875 -laurelwood n 1 2 @ #m 1 0 12365285 -laurence_olivier n 1 1 @ 1 0 11214320 -laurence_stephen_lowry n 1 1 @ 1 0 11143044 -laurence_sterne n 1 1 @ 1 0 11316970 -laurens n 1 1 @ 1 0 11119476 -laurentian_highlands n 1 2 @ #p 1 0 08821319 -laurentian_plateau n 1 2 @ #p 1 0 08821319 -laurentius n 1 2 @ ; 1 0 11121108 -lauric_acid n 1 1 @ 1 0 14930476 -lauritz_lebrecht_hommel_melchior n 1 1 @ 1 0 11172411 -lauritz_melchior n 1 1 @ 1 0 11172411 -laurus n 1 3 @ #m %m 1 0 11703935 -laurus_nobilis n 1 3 @ #m %p 1 0 11704093 -lauryl_alcohol n 1 1 @ 1 0 14930670 -lausanne n 1 2 @ #p 1 0 09032981 -lautaro_faction_of_the_united_popular_action_movement n 1 2 @ ; 1 0 08031663 -lautaro_popular_rebel_forces n 1 2 @ ; 1 0 08031663 -lautaro_youth_movement n 1 2 @ ; 1 0 08031663 -lav n 1 3 @ ~ %p 1 0 04446276 -lava n 1 2 @ ~ 1 0 14930989 -lavabo n 1 3 @ #p ; 1 0 04553703 -lavage n 1 3 @ ~ + 1 0 00696487 -lavalava n 1 1 @ 1 0 03649003 -lavalier n 1 1 @ 1 0 03649161 -lavaliere n 1 1 @ 1 0 03649161 -lavalliere n 1 1 @ 1 0 03649161 -lavandula n 1 3 @ #m %m 1 0 12849597 -lavandula_angustifolia n 1 1 @ 1 0 12849952 -lavandula_latifolia n 1 2 @ %s 1 0 12850336 -lavandula_officinalis n 1 1 @ 1 0 12849952 -lavandula_stoechas n 1 1 @ 1 0 12850168 -lavatera n 1 3 @ #m %m 1 0 12182414 -lavatera_arborea n 1 2 @ #m 1 0 12182615 -lavation n 1 4 @ ~ %p + 1 0 00255710 -lavatory n 3 3 @ ~ %p 3 1 04446276 04553920 03371875 -lavender n 2 3 @ ~ #m 2 0 12849717 04970470 -lavender_cotton n 1 2 @ #m 1 0 12009420 -laver n 4 3 @ #m ; 4 0 11119634 03649288 01415524 01408743 -lavishness n 2 2 @ + 2 0 05146471 00743641 -lavoisier n 1 1 @ 1 0 11119917 -lavrenti_pavlovich_beria n 1 1 @ 1 0 10846693 -law n 7 8 @ ~ #p %m %p + ; - 7 7 08441203 06532330 05870916 05872982 06161718 00611143 08209687 -law-breaking n 1 4 @ ~ ; - 1 1 00766234 -law-makers n 1 4 @ ~ #m - 1 0 08163273 -law_agent n 1 1 @ 1 0 10249191 -law_degree n 1 2 @ ~ 1 1 06704740 -law_enforcement n 1 3 @ ~ ; 1 1 01128137 -law_enforcement_agency n 1 2 @ ~ 1 0 08348815 -law_firm n 1 2 @ ; 1 0 08064039 -law_merchant n 1 2 @ ; 1 1 08455037 -law_of_action_and_reaction n 1 1 @ 1 0 05886266 -law_of_archimedes n 1 2 @ ; 1 0 05874716 -law_of_areas n 1 1 @ 1 0 05879856 -law_of_averages n 1 1 @ 1 0 05880715 -law_of_chemical_equilibrium n 1 2 @ ; 1 0 05877412 -law_of_closure n 1 1 @ 1 0 06249421 -law_of_common_fate n 1 1 @ 1 0 06249685 -law_of_conservation_of_energy n 1 1 @ 1 0 06104578 -law_of_conservation_of_mass n 1 1 @ 1 0 06104844 -law_of_conservation_of_matter n 1 1 @ 1 0 06104844 -law_of_constant_proportion n 1 2 @ ; 1 0 05880854 -law_of_continuation n 1 1 @ 1 0 06250208 -law_of_definite_proportions n 1 2 @ ; 1 0 05880854 -law_of_diminishing_returns n 1 1 @ 1 0 05881102 -law_of_effect n 1 2 @ ; 1 0 05881303 -law_of_equal_areas n 1 1 @ 1 0 05879856 -law_of_equivalent_proportions n 1 2 @ ; 1 0 05881578 -law_of_gravitation n 1 4 @ #p %p ; 1 0 05881867 -law_of_independent_assortment n 1 1 @ 1 0 05884984 -law_of_large_numbers n 1 2 @ ; 1 0 05875148 -law_of_mass_action n 1 2 @ ; 1 0 05882537 -law_of_moses n 1 1 @ 1 0 08455520 -law_of_motion n 1 2 @ ~ 1 0 05885622 -law_of_multiple_proportions n 1 2 @ ; 1 0 05882226 -law_of_nations n 1 3 @ ~ ; 1 1 08454003 -law_of_nature n 1 3 @ ~ #p 1 1 05872982 -law_of_parsimony n 1 1 @ 1 0 05990738 -law_of_partial_pressures n 1 2 @ ; 1 0 05876469 -law_of_proximity n 1 1 @ 1 0 06250771 -law_of_reciprocal_proportions n 1 2 @ ; 1 0 05881578 -law_of_segregation n 1 1 @ 1 0 05884736 -law_of_similarity n 1 1 @ 1 0 06251033 -law_of_the_land n 1 2 @ ; 1 0 08454445 -law_of_thermodynamics n 1 3 @ ~ ; 1 0 05882793 -law_of_volumes n 1 2 @ ; 1 0 05878229 -law_offender n 1 1 @ 1 0 10754449 -law_officer n 1 2 @ ~ 1 1 10249459 -law_practice n 1 2 @ ; 1 0 00632104 -law_school n 1 1 @ 1 1 08283051 -law_student n 1 1 @ 1 0 10249869 -lawbreaker n 1 1 @ 1 0 10754449 -lawcourt n 1 1 @ 1 0 03649459 -lawfulness n 1 5 ! @ ~ = + 1 0 04809784 -lawgiver n 1 3 @ ~ ; 1 0 10249270 -lawlessness n 2 4 @ ~ + ; 2 0 13973059 04811126 -lawmaker n 1 3 @ ~ ; 1 0 10249270 -lawmaking n 1 4 @ ~ ; - 1 0 01125693 -lawman n 1 2 @ ~ 1 1 10249459 -lawn n 1 1 @ 1 1 08591592 -lawn_bowling n 1 2 @ %p 1 0 00462804 -lawn_cart n 1 1 @ 1 0 02797295 -lawn_chair n 1 1 @ 1 0 03649674 -lawn_furniture n 1 1 @ 1 0 03649797 -lawn_mower n 1 3 @ ~ %p 1 0 03649909 -lawn_party n 1 1 @ 1 0 08255508 -lawn_tennis n 1 4 @ ~ %p - 1 0 00482298 -lawn_tool n 1 2 @ ~ 1 0 03418242 -lawrence n 7 3 @ #p ; 7 0 11121108 11120834 11120633 11120530 11120368 11120146 09088556 -lawrence_durrell n 1 1 @ 1 0 10946286 -lawrence_george_durrell n 1 1 @ 1 0 10946286 -lawrence_of_arabia n 1 1 @ 1 0 11120834 -lawrence_peter_berra n 1 1 @ 1 0 10848946 -lawrencium n 1 1 @ 1 0 14643323 -laws n 1 3 @ #p %p 1 0 06451891 -lawson's_cedar n 1 3 @ #m %s 1 0 11635433 -lawson's_cypress n 1 3 @ #m %s 1 0 11635433 -lawsuit n 1 3 @ ~ ; 1 0 01182654 -lawton n 1 2 @ #p 1 0 09132266 -lawyer n 1 5 @ ~ #m + ; 1 1 10249950 -lawyer-client_relation n 1 3 @ %m ; 1 0 13839662 -lawyer_bush n 1 1 @ 1 0 12653436 -lawyer_cane n 1 1 @ 1 0 12586725 -lawyerbush n 1 1 @ 1 0 12653436 -laxation n 2 2 @ ~ 2 0 13459088 00147862 -laxative n 1 2 @ ~ 1 0 03650084 -laxity n 2 2 @ + 2 0 14546042 04666416 -laxness n 2 2 @ + 2 1 04666416 14546042 -lay n 2 2 @ ~ 2 0 07049713 06378298 -lay-by n 1 1 @ 1 0 04020744 -lay-up n 1 1 @ 1 0 00111660 -lay_figure n 1 1 @ 1 0 03650682 -lay_reader n 1 1 @ 1 0 10250712 -lay_witness n 1 2 ! @ 1 0 10250873 -layabout n 1 2 @ ~ 1 0 10197967 -layby n 1 1 @ 1 0 04020744 -layer n 5 4 @ ~ #p + 5 2 03650173 08591680 06246896 01793159 01463259 -layer_cake n 1 1 @ 1 0 07633369 -layette n 1 1 @ 1 1 03650551 -layia n 1 3 @ #m %m 1 0 11988419 -layia_platyglossa n 1 2 @ #m 1 0 11988596 -laying n 1 1 @ 1 1 13506477 -laying_claim n 1 1 @ 1 0 00082870 -laying_on n 1 1 @ 1 1 00138441 -laying_on_of_hands n 2 1 @ 2 0 00699872 00165793 -laying_waste n 1 1 @ 1 0 00217773 -layman n 1 4 ! @ ~ #m 1 1 10250527 -layoff n 1 2 @ + 1 1 00229814 -layout n 2 2 @ + 2 2 05837271 01010901 -layover n 1 3 @ ~ + 1 0 01056411 -layperson n 1 3 @ ~ #m 1 0 10250527 -layup n 1 1 @ 1 0 00111660 -lazar n 1 1 @ 1 0 10254670 -lazar_house n 1 1 @ 1 0 03650803 -lazaret n 1 1 @ 1 0 03650803 -lazarette n 1 1 @ 1 0 03650803 -lazaretto n 2 1 @ 2 0 03650803 03440876 -lazarus n 2 1 @ 2 0 10251125 10251002 -laziness n 3 3 @ ~ + 3 0 04637108 01064613 00758795 -lazio n 1 2 @ #p 1 0 08806735 -lazuli n 1 1 @ 1 0 14929797 -lazuline n 1 1 @ 1 0 04969242 -lazy_daisy_stitch n 1 1 @ 1 0 03650973 -lazy_susan n 1 1 @ 1 0 04501837 -lazybones n 1 2 @ ; 1 0 10251329 -lazzaro_spallanzani n 1 1 @ 1 0 11309449 -lb n 1 3 @ #p %p 1 1 13720096 -lbf. n 1 2 @ %p 1 0 13648184 -lbj n 1 1 @ 1 0 11088346 -lcd n 1 2 @ ~ 1 0 03676759 -lcm n 1 1 @ 1 0 05860639 -ld. n 1 2 @ ; 1 0 08185211 -ldl n 1 2 @ %s 1 0 14943009 -ldl_cholesterol n 1 3 @ ~ #s 1 0 15058987 -le n 1 1 @ 1 0 14221138 -le_carre n 1 1 @ 1 0 11122825 -le_chatelier n 1 1 @ 1 0 11122977 -le_chatelier's_law n 1 1 @ 1 0 05883688 -le_chatelier's_principle n 1 1 @ 1 0 05883688 -le_chatelier-braun_principle n 1 1 @ 1 0 05883688 -le_chatelier_principle n 1 1 @ 1 0 05883688 -le_corbusier n 1 1 @ 1 0 11123124 -le_douanier_rousseau n 1 1 @ 1 0 11272972 -le_duc_tho n 1 1 @ 1 0 11123439 -le_gallienne n 1 1 @ 1 0 11124831 -le_havre n 1 2 @ #p 1 0 08936303 -le_notre n 1 1 @ 1 0 11127011 -lea n 2 4 @ ~ #p %p 2 0 13654571 08616050 -leach n 1 2 @ + 1 0 13506587 -leaching n 1 1 @ 1 0 13506587 -leacock n 1 1 @ 1 0 11121451 -lead n 17 7 ! @ ~ #s #p + ; 17 6 05157143 14643467 05826914 01256743 13893129 06270879 13596422 10648696 08592165 06651577 06271192 05051088 03652932 03651265 03651084 03604843 01256270 -lead-acid_accumulator n 1 2 @ ~ 1 0 03651388 -lead-acid_battery n 1 2 @ ~ 1 0 03651388 -lead-in n 2 2 @ #p 2 0 06270879 03651605 -lead_acetate n 1 1 @ 1 0 14989243 -lead_arsenate n 1 1 @ 1 0 14600238 -lead_bank n 1 1 @ 1 0 08418885 -lead_carbonate n 1 1 @ 1 0 15097722 -lead_chromate n 1 1 @ 1 0 14811932 -lead_colic n 1 1 @ 1 0 14070055 -lead_glass n 1 2 @ ~ 1 0 14882117 -lead_line n 1 3 @ %p ; 1 0 03651947 -lead_ore n 1 2 @ ~ 1 0 14933663 -lead_pencil n 1 2 @ %p 1 1 03652100 -lead_plant n 1 1 @ 1 0 12504306 -lead_poisoning n 1 1 @ 1 0 14069895 -lead_sheet n 1 1 @ 1 1 06815458 -lead_story n 1 1 @ 1 0 06271192 -lead_tetraethyl n 1 1 @ 1 0 14600357 -lead_time n 1 1 @ 1 0 15289524 -lead_tree n 1 2 @ #m 1 0 11762433 -leadbelly n 1 1 @ 1 0 11123262 -leaded_bronze n 1 1 @ 1 0 14933569 -leaded_gasoline n 1 2 ! @ 1 0 14687261 -leaded_petrol n 1 1 @ 1 0 14687261 -leader n 2 4 ! @ ~ + 2 1 09623038 03234795 -leaders n 1 2 @ ~ 1 1 08381436 -leadership n 4 3 @ ~ + 4 4 01256417 08381436 14433361 05617310 -leading n 2 2 @ ~ 2 0 03651265 01256417 -leading_astray n 1 1 @ 1 0 00160297 -leading_edge n 1 2 @ #p 1 0 03651739 -leading_indicator n 1 1 @ 1 0 06640977 -leading_lady n 1 1 @ 1 0 10251417 -leading_light n 1 1 @ 1 0 10276238 -leading_man n 1 1 @ 1 1 10251517 -leading_off n 1 1 @ 1 0 00160297 -leading_question n 1 2 @ #p 1 0 07195765 -leading_rein n 1 1 @ 1 0 03651843 -leading_tone n 1 2 @ ; 1 0 06858539 -leadplant n 1 1 @ 1 0 12504306 -leadwort n 1 2 @ #m 1 0 12098524 -leadwort_family n 1 3 @ #m %m 1 0 12097927 -leaf n 3 6 @ ~ #p %s %p + 3 1 13152742 06256229 03652226 -leaf-book n 1 1 @ 1 0 06407372 -leaf-cutter n 1 2 @ #m 1 0 02211444 -leaf-cutter_bee n 1 2 @ #m 1 0 02211444 -leaf-cutting_bee n 1 2 @ #m 1 0 02211444 -leaf-foot_bug n 1 2 @ #m 1 0 02240068 -leaf-footed_bug n 1 2 @ #m 1 0 02240068 -leaf-miner n 1 1 @ 1 0 02198129 -leaf-nosed_bat n 1 2 @ ~ 1 0 02141713 -leaf-nosed_snake n 1 2 @ #m 1 0 01729672 -leaf-roller n 1 1 @ 1 0 02284224 -leaf_beet n 2 3 @ #p %p 2 0 11832671 07720277 -leaf_beetle n 1 3 @ ~ #m 1 0 02169497 -leaf_blade n 1 1 @ 1 0 13131883 -leaf_blight n 1 2 @ ~ 1 0 14217897 -leaf_bud n 1 2 @ %p 1 0 13165286 -leaf_bug n 1 2 @ ~ 1 0 02237424 -leaf_cast n 1 1 @ 1 0 14218158 -leaf_disease n 1 1 @ 1 0 14218057 -leaf_fat n 1 1 @ 1 0 14864825 -leaf_form n 1 2 @ #p 1 0 13862407 -leaf_insect n 1 2 @ #m 1 0 02232223 -leaf_lard n 1 1 @ 1 0 14864825 -leaf_lettuce n 2 3 @ #p %p 2 0 11987126 07724654 -leaf_miner n 1 1 @ 1 0 02198129 -leaf_mold n 1 1 @ 1 0 14933911 -leaf_mould n 1 1 @ 1 0 14933911 -leaf_mustard n 2 2 @ #m 2 0 11878633 07713763 -leaf_node n 1 3 @ #p ; 1 0 13154190 -leaf_roller n 1 1 @ 1 0 02284224 -leaf_scorch n 1 1 @ 1 0 14282258 -leaf_shape n 1 2 @ #p 1 0 13862407 -leaf_soil n 1 1 @ 1 0 14933911 -leaf_spring n 1 1 @ 1 0 03652389 -leafage n 1 5 @ ~ %s %p + 1 0 13152742 -leafhopper n 1 3 @ ~ #m 1 1 02259212 -leafing n 1 2 @ ; 1 0 13483190 -leaflet n 3 4 @ ~ #p + 3 1 05389625 13154077 06413889 -leafnose_bat n 1 2 @ ~ 1 0 02141713 -leafstalk n 1 2 @ ~ 1 0 13131618 -leafy_liverwort n 1 2 @ #m 1 0 11543105 -leafy_spurge n 1 2 @ #m 1 0 12919847 -leafy_vegetable n 1 2 @ ~ 1 0 07709333 -league n 3 4 @ ~ %p + 3 2 08231184 08305114 13652066 -league_of_iroquois n 1 1 @ 1 0 08305277 -league_of_nations n 1 1 @ 1 0 08195323 -leak n 5 3 @ + ; 5 1 09337048 14284581 13506727 07436661 07215185 -leak_fungus n 1 2 @ #m 1 0 12974062 -leakage n 1 2 @ + 1 1 07436661 -leaker n 1 2 @ + 1 0 10251612 -leakey n 3 1 @ 3 0 11122114 11121876 11121640 -leakiness n 1 2 @ + 1 0 14577872 -lean n 1 2 @ + 1 0 05068080 -lean-to n 1 1 @ 1 0 03652729 -lean-to_tent n 1 1 @ 1 0 03652826 -leander n 1 2 @ ; 1 0 09554505 -leaner n 1 3 @ + ; 1 0 00105624 -leaning n 4 1 @ 4 0 07499113 06199561 05068080 00070363 -leaning_tower n 1 2 @ #p 1 0 03652530 -leaning_tower_of_pisa n 1 2 @ #p 1 0 03652530 -leanness n 2 4 ! @ ~ + 2 0 05113462 05001482 -leap n 4 3 @ ~ + 4 2 00120202 07358985 07414222 05086740 -leap_day n 1 2 @ #p 1 0 15159426 -leap_second n 1 1 @ 1 0 15235334 -leap_year n 1 1 @ 1 0 15202230 -leaper n 1 2 @ + 1 0 09869171 -leapfrog n 2 2 @ + 2 1 00486130 00485998 -leaping n 1 2 @ ~ 1 1 00120202 -lear n 2 1 @ 2 0 11122439 09601049 -learned_person n 1 2 @ ~ 1 0 10206887 -learned_profession n 1 2 @ ~ 1 0 00610373 -learned_reaction n 1 2 @ ~ 1 1 00864535 -learned_response n 1 2 @ ~ 1 0 00864535 -learnedness n 1 3 @ ~ + 1 0 05985999 -learner n 2 3 @ ~ + 2 1 10251779 09801864 -learner's_dictionary n 1 1 @ 1 0 06419757 -learner's_permit n 1 1 @ 1 0 06550763 -learning n 2 2 @ ~ 2 2 05752544 05985999 -learning_ability n 1 1 @ 1 0 05618056 -learning_curve n 1 1 @ 1 0 07004962 -learning_disability n 1 2 @ ~ 1 0 14060688 -learning_disorder n 1 2 @ ~ 1 0 14060688 -leary n 1 1 @ 1 0 11122579 -lease n 3 3 @ ~ + 3 2 13248393 06523132 15274863 -lease-lend n 1 1 @ 1 0 01109114 -lease_giver n 1 1 @ 1 0 10255096 -leasehold n 1 1 @ 1 0 13249154 -leaseholder n 1 1 @ 1 0 10252075 -leash n 3 2 @ + 3 1 03652932 13744044 01145688 -least n 1 1 @ 1 0 05671526 -least_bittern n 1 2 @ #m 1 0 02012185 -least_common_multiple n 1 1 @ 1 0 05860639 -least_effort n 1 1 @ 1 0 00624436 -least_resistance n 1 1 @ 1 0 00624436 -least_sandpiper n 1 2 @ #m 1 0 02027357 -least_shrew n 1 1 @ 1 0 01893399 -least_squares n 1 2 @ ; 1 0 06021013 -leather n 1 3 @ ~ + 1 1 14759722 -leather_carp n 1 1 @ 1 0 01440160 -leather_fern n 2 3 @ #m ; 2 0 13206178 13200986 -leather_flower n 2 1 @ 2 0 11730933 11730750 -leather_soap n 1 1 @ 1 0 04124764 -leather_strip n 1 2 @ ~ 1 0 03653220 -leatherback n 1 2 @ #m 1 0 01665541 -leatherback_turtle n 1 2 @ #m 1 0 01665541 -leatherette n 1 1 @ 1 0 03653110 -leatherfish n 1 2 @ #m 1 0 02654112 -leatherjack n 1 2 @ #m 1 0 02577662 -leatherjacket n 3 2 @ #m 3 0 02654112 02577662 02312325 -leatherleaf n 2 2 @ #m 2 0 13173488 12234318 -leatherleaf_fern n 1 2 @ #m 1 0 13200986 -leatherleaf_saxifrage n 1 2 @ #m 1 0 12799269 -leatherleaf_wood_fern n 1 1 @ 1 0 13194036 -leatherneck n 1 3 @ #m ; 1 0 10294139 -leatherwood n 2 2 @ #m 2 0 12750767 12347639 -leatherwork n 1 1 @ 1 0 03653376 -leathery_grape_fern n 1 1 @ 1 0 12961393 -leathery_polypody n 1 1 @ 1 0 13173488 -leathery_turtle n 1 2 @ #m 1 0 01665541 -leave n 3 3 @ ~ + 3 2 15139130 06690114 00053097 -leave-taking n 1 2 @ ~ 1 0 00053097 -leave_of_absence n 1 2 @ ~ 1 1 15139130 -leaven n 2 3 @ ~ + 2 0 14934031 05869407 -leavening n 2 2 @ ~ 2 1 05869407 14934031 -leaver n 1 2 @ + 1 0 10004539 -leaving n 1 2 @ ~ 1 1 00042757 -lebanese n 1 2 @ #m 1 0 09720595 -lebanese_hizballah n 1 2 @ ; 1 0 08023374 -lebanese_monetary_unit n 1 2 @ ~ 1 0 13694825 -lebanese_pound n 1 2 @ %p 1 0 13694936 -lebanese_republic n 1 6 @ #m #p %m %p - 1 0 08957381 -lebanon n 1 6 @ #m #p %m %p - 1 0 08957381 -lebensraum n 1 1 @ 1 0 13778530 -lebistes n 1 2 @ #m 1 0 01448496 -lebistes_reticulatus n 1 1 @ 1 0 01448594 -leboyer_method n 1 1 @ 1 0 13506906 -leboyer_method_of_childbirth n 1 1 @ 1 0 13506906 -lecanopteris n 1 2 @ #m 1 0 13176000 -lecanora n 1 3 @ ~ #m 1 0 12988158 -lecanoraceae n 1 3 @ #m %m 1 0 12987834 -leccinum n 1 3 @ #m %m 1 0 13058447 -leccinum_fibrillosum n 1 2 @ #m 1 0 13058608 -lech n 1 1 @ 1 0 10552980 -lech_walesa n 1 1 @ 1 0 11370990 -lechanorales n 1 2 @ #m 1 0 12987652 -lechatelierite n 1 2 @ %s 1 0 14879750 -lecher n 1 2 @ + 1 1 10552980 -lecherousness n 1 2 @ + 1 0 07489714 -lechery n 1 2 @ + 1 0 00856733 -lechwe n 1 1 @ 1 0 02427576 -lecithin n 1 1 @ 1 0 14680040 -leclanche_cell n 1 2 @ ~ 1 0 03653454 -lectern n 1 1 @ 1 0 03653583 -lectin n 1 1 @ 1 0 14889074 -lector n 2 1 @ 2 0 10252354 10252222 -lecture n 3 5 @ ~ #p %p + 3 1 07240549 06713930 00892861 -lecture_demonstration n 1 2 @ #p 1 0 00893088 -lecture_room n 1 1 @ 1 0 03653740 -lecturer n 2 3 @ ~ + 2 2 10252222 10252547 -lectureship n 1 2 @ + 1 0 00594146 -lecturing n 1 4 @ ~ #p %p 1 1 00892861 -lecythidaceae n 1 3 @ #m %m 1 0 12327209 -led n 1 3 @ ~ #p 1 0 03666362 -leda n 1 2 @ ; 1 0 09601219 -ledbetter n 1 1 @ 1 0 11123262 -lede n 1 2 @ #p 1 0 06270879 -ledercillin_vk n 1 2 @ ; 1 0 03911251 -lederhosen n 1 1 @ 1 0 03653833 -ledge n 1 2 @ ~ 1 1 09337253 -ledgeman n 1 2 @ ~ 1 0 09873604 -ledger n 2 3 @ ~ %m 2 2 13404248 03165211 -ledger_board n 1 2 @ #p 1 0 03653975 -ledger_entry n 1 2 @ ~ 1 0 13405296 -ledger_line n 1 2 @ #p 1 0 06862399 -ledger_paper n 1 1 @ 1 0 14934229 -ledum n 1 3 @ #m %m 1 0 12238306 -ledum_groenlandicum n 1 2 @ #m 1 0 12238491 -ledum_palustre n 1 2 @ #m 1 0 12238913 -lee n 8 1 @ 8 0 11124647 11124472 11124300 11124088 11123894 11123762 11123590 08592352 -lee's_birthday n 1 1 @ 1 0 15182569 -lee_buck_trevino n 1 1 @ 1 0 11348812 -lee_de_forest n 1 1 @ 1 0 10927424 -lee_harvey_oswald n 1 1 @ 1 0 11218153 -lee_krasner n 1 1 @ 1 0 11110396 -lee_side n 1 1 @ 1 0 08592352 -lee_strasberg n 1 1 @ 1 0 11321051 -lee_tide n 1 1 @ 1 0 07403601 -lee_trevino n 1 1 @ 1 0 11348812 -lee_yuen_kam n 1 1 @ 1 0 11124300 -leech n 2 4 @ ~ #m + 2 1 01937909 10252674 -leechee n 1 2 @ #p 1 0 07766173 -leeds n 1 2 @ #p 1 0 08879028 -leek n 2 3 @ #p %p 2 0 12434239 07723039 -leer n 2 2 @ + 2 0 06716483 04680027 -lees n 1 2 @ ; 1 0 09337406 -leeuwenhoek n 1 1 @ 1 0 11129808 -leeward n 2 3 ! @ ~ 2 0 13829848 08592352 -leeward_islands n 1 3 @ #p %p 1 0 08749447 -leeward_side n 1 1 @ 1 0 13829980 -leeward_tide n 1 1 @ 1 0 07403601 -leeway n 2 2 @ ; 2 0 13507210 04749991 -leflunomide n 1 1 @ 1 0 03654086 -left n 5 4 ! @ ~ #p 5 4 08625462 08416328 05565548 03654374 00351168 -left-handed_pitcher n 1 1 @ 1 0 10252921 -left-handedness n 2 2 @ + 2 0 13953356 05067367 -left-hander n 2 1 @ 2 2 10252921 10253122 -left-luggage_office n 1 1 @ 1 0 03011892 -left-winger n 1 2 @ ~ 1 0 10619176 -left_atrioventricular_valve n 1 1 @ 1 0 05393813 -left_atrium n 1 1 @ 1 0 05393629 -left_atrium_of_the_heart n 1 1 @ 1 0 05393629 -left_bank n 1 3 @ #p %p 1 0 08933084 -left_brain n 1 2 @ %p 1 0 05477112 -left_coronary_artery n 1 1 @ 1 0 05344213 -left_field n 2 4 @ #m #p + 2 0 03654374 00724433 -left_fielder n 1 2 @ + 1 1 10387586 -left_gastric_artery n 1 1 @ 1 0 05345978 -left_gastric_vein n 1 1 @ 1 0 05372725 -left_hand n 1 2 @ + 1 1 05565548 -left_hander n 1 1 @ 1 0 10252921 -left_hemisphere n 1 2 @ %p 1 0 05477112 -left_stage n 1 2 @ #p 1 0 08625684 -left_ventricle n 1 1 @ 1 1 05391977 -left_wing n 1 2 @ + 1 0 08416328 -lefteye_flounder n 1 3 @ ~ #m 1 0 02661017 -lefteyed_flounder n 1 3 @ ~ #m 1 0 02661017 -leftfield n 2 3 @ #m #p 2 1 03654374 00724433 -lefthander n 1 2 @ + 1 0 10252921 -leftism n 1 2 @ + 1 0 06218459 -leftist n 1 3 @ ~ + 1 0 10619176 -leftover n 1 1 @ 1 0 13811184 -leftovers n 1 1 @ 1 0 07563509 -lefty n 2 1 @ 2 1 10253122 10252921 -leg n 9 6 @ ~ #p %p + ; 9 4 05560787 05561507 03654826 13913849 07655505 03906106 03654576 00307176 00306900 -leg-pull n 1 1 @ 1 0 00515159 -leg-pulling n 1 1 @ 1 0 00515159 -leg_bone n 1 3 @ ~ #p 1 0 05594037 -leg_covering n 1 2 @ ~ 1 0 03655072 -leg_curl n 1 1 @ 1 0 00630268 -leg_curling n 1 1 @ 1 1 00630268 -leg_exercise n 1 2 @ ~ 1 0 00629911 -leg_extensor n 1 1 @ 1 1 00630401 -leg_of_lamb n 1 1 @ 1 1 07668588 -legacy n 1 2 @ ; 1 1 13263779 -legal_action n 1 3 @ ~ ; 1 0 01181902 -legal_age n 1 2 @ #p 1 1 15152062 -legal_assistant n 1 2 @ ; 1 0 10397886 -legal_blindness n 1 1 @ 1 0 14126908 -legal_brief n 1 3 @ ~ ; 1 0 06543781 -legal_code n 1 3 @ ~ ; 1 0 06667792 -legal_community n 1 2 @ ; 1 0 08112402 -legal_document n 1 3 @ ~ ; 1 0 06479665 -legal_duty n 1 3 @ ~ ; 1 0 01131515 -legal_expert n 1 3 @ ~ ; 1 0 10227985 -legal_fee n 1 3 @ ~ ; 1 0 13321992 -legal_fraud n 1 2 @ ~ 1 0 00777806 -legal_guardian n 1 2 @ ; 1 0 10732314 -legal_holiday n 1 2 @ ~ 1 1 15199592 -legal_injury n 1 1 @ 1 0 00744131 -legal_instrument n 1 3 @ ~ ; 1 0 06479665 -legal_jointure n 1 2 @ ; 1 0 13264342 -legal_opinion n 1 3 @ ~ ; 1 0 06551784 -legal_ouster n 1 3 @ ~ ; 1 0 01194331 -legal_philosophy n 1 2 @ ~ 1 0 06161718 -legal_power n 1 2 @ ; 1 0 05198427 -legal_principle n 1 3 @ ~ ; 1 0 05956651 -legal_proceeding n 1 3 @ ~ ; 1 0 01184814 -legal_profession n 1 2 @ ; 1 0 08112402 -legal_relation n 1 3 @ ~ ; 1 0 13838205 -legal_representation n 1 2 @ ; 1 0 14000820 -legal_representative n 1 2 @ ; 1 0 10253296 -legal_residence n 1 2 @ ; 1 0 08559155 -legal_right n 1 2 @ ~ 1 0 05177285 -legal_separation n 2 2 @ ; 2 0 06541381 01201429 -legal_status n 1 3 @ ~ ; 1 0 13952601 -legal_system n 1 3 @ ~ ; 1 1 05903229 -legal_tender n 1 2 @ ~ 1 0 13374008 -legal_transfer n 1 2 @ ~ 1 0 01108753 -legalese n 1 1 @ 1 0 07071366 -legalisation n 1 3 @ + ; 1 0 01195380 -legalism n 1 1 @ 1 0 06212302 -legality n 1 5 ! @ ~ = + 1 0 04809237 -legalization n 1 3 @ + ; 1 0 01195380 -legate n 1 3 @ #m + 1 0 10253479 -legatee n 1 1 @ 1 1 10253611 -legateship n 1 2 @ + 1 0 00594260 -legation n 2 2 @ %m 2 1 00594260 08403082 -legend n 2 5 @ ~ #p + - 2 1 06371413 06346891 -legendary_creature n 1 2 @ ~ 1 0 09487022 -leger n 2 3 @ ~ %m 2 0 13404248 11124961 -leger_line n 1 2 @ #p 1 0 06862399 -legerdemain n 1 2 @ ~ 1 0 00099951 -legerity n 1 1 @ 1 0 05003850 -legging n 1 2 @ ~ 1 0 03655072 -leghorn n 1 1 @ 1 0 02859184 -legibility n 2 4 ! @ + ; 2 1 04703104 04819285 -leging n 1 2 @ ~ 1 0 03655072 -legion n 4 3 @ ~ %m 4 1 08183802 08272248 08271801 08182962 -legionary n 1 3 @ #m ; 1 0 10253703 -legionary_ant n 1 2 @ #m 1 0 02220518 -legionella n 1 1 @ 1 0 01374224 -legionella_pneumophilia n 1 1 @ 1 0 01374224 -legionnaire n 2 3 @ #m ; 2 0 10253887 10253703 -legionnaires'_disease n 1 1 @ 1 0 14148834 -legislating n 1 4 @ ~ ; - 1 0 01125693 -legislation n 2 6 @ ~ #p + ; - 2 2 06535222 01125693 -legislative_act n 1 4 @ ~ %p ; 1 0 06564387 -legislative_assembly n 1 4 @ ~ #m - 1 0 08163273 -legislative_body n 1 4 @ ~ #m - 1 0 08163273 -legislative_branch n 1 4 @ #m %m %p 1 0 08356375 -legislative_council n 1 1 @ 1 0 08163702 -legislator n 1 4 @ ~ + ; 1 1 10253995 -legislatorship n 1 2 @ + 1 0 00594374 -legislature n 1 5 @ ~ #m + - 1 1 08163273 -legitimacy n 2 4 ! @ ~ + 2 1 04810035 04783247 -legitimation n 2 3 @ + ; 2 0 01195584 01195380 -legless_lizard n 1 2 @ #m 1 0 01691217 -lego n 1 2 @ ; 1 0 03655295 -lego_set n 1 2 @ ; 1 0 03655295 -legs n 1 2 @ ; 1 0 05033046 -legume n 3 7 @ ~ #m #p %s %p + 3 1 11747468 11748002 07708798 -legume_family n 1 3 @ #m %m 1 0 11746776 -leguminosae n 1 3 @ #m %m 1 0 11746776 -leguminous_plant n 1 4 @ ~ #m %p 1 0 11747468 -lehar n 1 1 @ 1 0 11125080 -lehigh_river n 1 2 @ #p 1 0 09337531 -lei n 1 2 @ ~ 1 0 04606014 -leibnitz n 1 2 @ + 1 0 11125193 -leibniz n 1 2 @ + 1 0 11125193 -leicester n 2 4 @ #p %p - 2 0 08884012 08879197 -leicestershire n 1 4 @ #p %p - 1 0 08884012 -leichtlin's_camas n 1 2 @ #m 1 0 12449784 -leiden n 1 2 @ #p 1 0 08951077 -leiden_jar n 1 1 @ 1 1 03655470 -leigh n 1 1 @ 1 0 11125546 -leigh_hunt n 1 1 @ 1 0 11066772 -leiomyoma n 1 1 @ 1 0 14249384 -leiomyosarcoma n 1 1 @ 1 0 14241088 -leiopelma n 1 3 @ #m %m 1 0 01645278 -leiopelmatidae n 1 3 @ #m %m 1 0 01645093 -leiophyllum n 1 3 @ #m %m 1 0 12239100 -leiophyllum_buxifolium n 1 2 @ #m 1 0 12239240 -leipoa n 1 3 @ ~ #m 1 0 01801479 -leipoa_ocellata n 1 3 @ ~ #m 1 0 01801479 -leipzig n 1 2 @ #p 1 0 08771116 -leishmania n 1 1 @ 1 0 01418498 -leishmaniasis n 1 2 @ ~ 1 0 14178077 -leishmaniasis_americana n 1 1 @ 1 0 14181409 -leishmaniosis n 1 2 @ ~ 1 0 14178077 -leister n 1 1 @ 1 0 03655589 -leisure n 2 3 @ ~ + 2 2 15137676 01065286 -leisure_time n 1 2 @ ~ 1 0 15137676 -leisure_wear n 1 1 @ 1 0 03655720 -leisureliness n 1 2 @ + 1 0 05062255 -leitmotif n 1 1 @ 1 0 07028797 -leitmotiv n 1 1 @ 1 1 07028797 -leitneria n 1 3 @ #m %m 1 0 11742745 -leitneria_floridana n 1 2 @ #m 1 0 11742878 -leitneriaceae n 1 3 @ #m %m 1 0 11742531 -lek n 1 2 @ %p 1 0 13684632 -lekvar n 1 1 @ 1 0 07883156 -leland_stanford n 1 1 @ 1 0 11312556 -lem n 1 1 @ 1 0 03697366 -lemaireocereus n 1 3 @ #m %m 1 0 11848610 -lemaireocereus_chichipe n 1 2 @ #m 1 0 11848867 -lemaitre n 1 1 @ 1 0 11125646 -lemanderin n 1 2 @ #m 1 0 12711398 -lemma n 3 1 @ 3 1 06751833 13155451 06344691 -lemming n 1 3 @ ~ #m 1 0 02344528 -lemmon n 1 1 @ 1 0 11125840 -lemmus n 1 3 @ #m %m 1 0 02344785 -lemmus_lemmus n 1 2 @ #m 1 0 02344918 -lemmus_trimucronatus n 1 2 @ #m 1 0 02345078 -lemna n 1 3 @ #m %m 1 0 11794791 -lemna_minor n 1 2 @ #m 1 0 11795049 -lemna_trisulca n 1 2 @ #m 1 0 11795216 -lemnaceae n 1 3 @ #m %m 1 0 11794267 -lemniscus n 1 1 @ 1 0 05475562 -lemnos n 1 2 @ #p 1 0 08790748 -lemon n 5 7 @ ~ #m #p %p + ; 5 2 07749582 04966543 12711596 05716342 03655838 -lemon-scented_gum n 1 1 @ 1 0 12338258 -lemon-wood n 1 3 @ #m %p 1 0 12669803 -lemon-wood_tree n 1 3 @ #m %p 1 0 12669803 -lemon_balm n 2 4 @ #m #p %p 2 0 12854600 07818689 -lemon_butter n 1 1 @ 1 0 07849186 -lemon_cheese n 1 2 @ ; 1 0 07643026 -lemon_curd n 1 2 @ ; 1 0 07643026 -lemon_drop n 1 1 @ 1 0 07599242 -lemon_extract n 1 1 @ 1 0 07828275 -lemon_geranium n 1 2 @ #m 1 0 12688372 -lemon_grass n 2 1 @ 2 0 15102167 12104384 -lemon_grove n 1 1 @ 1 0 03656011 -lemon_juice n 1 1 @ 1 0 07925229 -lemon_lily n 1 2 @ #m 1 0 12457091 -lemon_meringue_pie n 1 1 @ 1 1 07626287 -lemon_mint n 2 1 @ 2 0 12858987 12855710 -lemon_oil n 1 2 @ #s 1 0 07812790 -lemon_peel n 2 4 @ ~ #p %s 2 0 07738760 07601175 -lemon_rind n 1 4 @ ~ #p %s 1 0 07738760 -lemon_shark n 1 2 @ #m 1 0 01490670 -lemon_sole n 6 4 @ #m #p %p 6 0 07791663 07791535 02664642 02664399 02659808 02659478 -lemon_sumac n 1 1 @ 1 0 12763291 -lemon_tree n 1 4 @ ~ #m %p 1 1 12711596 -lemon_yellow n 1 1 @ 1 0 04966543 -lemon_zest n 1 1 @ 1 0 07810745 -lemonade n 1 1 @ 1 1 07926250 -lemonade_mix n 1 1 @ 1 0 07594155 -lemongrass n 2 1 @ 2 0 15102167 12104384 -lemongrass_oil n 1 1 @ 1 0 15102167 -lemonwood n 2 4 @ #m #p %p 2 0 12670013 12669803 -lemonwood_tree n 2 3 @ #m %p 2 0 12669803 12662074 -lempira n 1 2 @ %p 1 0 13684965 -lemur n 1 3 @ ~ #m 1 0 02496913 -lemur_catta n 1 2 @ #m 1 0 02497673 -lemuridae n 1 3 @ #m %m 1 0 02497408 -lemuroidea n 1 4 @ ~ #m %m 1 0 02496576 -lena n 1 2 @ #p 1 0 09337686 -lena_calhoun_horne n 1 1 @ 1 0 11060535 -lena_horne n 1 1 @ 1 0 11060535 -lena_river n 1 2 @ #p 1 0 09337686 -lenard n 1 1 @ 1 0 11125957 -lend-lease n 1 1 @ 1 0 01109114 -lender n 1 4 ! @ ~ + 1 0 10254392 -lending n 1 2 @ ~ 1 1 01093666 -lending_institution n 1 1 @ 1 1 08055718 -lending_library n 1 1 @ 1 0 03656091 -lendl n 1 1 @ 1 0 11126081 -length n 5 4 @ ~ = + 5 4 05129201 05051249 05133107 05129565 03656231 -length_of_service n 1 1 @ 1 0 05051734 -lengthening n 1 1 @ 1 1 01018366 -lengthiness n 2 3 @ ~ + 2 0 05133535 05051896 -lenience n 3 3 @ ~ + 3 0 04829922 04638585 01071213 -leniency n 3 3 @ ~ + 3 0 04829922 04638585 01071213 -lenin n 1 1 @ 1 0 11126490 -leningrad n 1 2 @ #p 1 0 09008454 -leninism n 1 1 @ 1 0 06215152 -lenitive n 1 2 @ + 1 0 03656374 -lenity n 1 1 @ 1 0 04829922 -lennoaceae n 1 2 @ #m 1 0 12255452 -lennon n 1 2 @ #m 1 0 11126783 -lennox_robinson n 1 1 @ 1 0 11266117 -lens n 5 6 @ ~ #m #p %p ; 5 1 03656484 12544027 06261060 05320362 03656957 -lens_cap n 1 1 @ 1 0 03657121 -lens_capsule n 1 2 @ #p 1 0 05326200 -lens_cortex n 1 2 @ #p 1 0 05320636 -lens_cover n 1 1 @ 1 0 03657121 -lens_culinaris n 1 2 @ %p 1 0 12544240 -lens_hood n 1 2 @ #p 1 0 03531808 -lens_implant n 1 2 @ ~ 1 0 03657239 -lens_maker n 1 1 @ 1 0 10380000 -lens_nucleus n 1 1 @ 1 0 05320764 -lens_of_the_eye n 1 3 @ #p %p 1 0 05320362 -lens_system n 1 3 @ ~ #p 1 0 03656484 -lense n 1 3 @ ~ #p 1 0 03656484 -lensman n 1 2 @ ~ 1 0 10426749 -lent n 1 3 @ #p %p 1 0 15242029 -lent_lily n 1 1 @ 1 0 12426978 -lente_iletin n 1 1 @ 1 0 05410901 -lente_insulin n 1 1 @ 1 0 05410901 -lenten_rose n 1 1 @ 1 0 11734493 -lententide n 1 3 @ #p %p 1 0 15242029 -lentia n 1 2 @ #p 1 0 08846739 -lentibulariaceae n 1 3 @ #m %m 1 0 12871992 -lenticel n 1 1 @ 1 0 13153888 -lenticular_nucleus n 1 3 @ #p %p 1 0 05498048 -lentiform_nucleus n 1 3 @ #p %p 1 0 05498048 -lentigo n 1 3 @ #p + 1 0 05245192 -lentil n 3 3 @ #p %p 3 1 07725255 12544539 12544240 -lentil_plant n 1 2 @ %p 1 0 12544240 -lentil_soup n 1 1 @ 1 0 07588574 -lentinus n 1 3 @ #m %m 1 0 13001743 -lentinus_edodes n 1 2 @ #m 1 0 13001930 -lentinus_lepideus n 1 2 @ #m 1 0 13002209 -lentisk n 1 2 @ #m 1 0 12762049 -leo n 3 4 @ #p %m ; 3 0 09752795 09337833 08686821 -leo_delibes n 1 1 @ 1 0 10928978 -leo_esaki n 1 2 @ ; 1 0 10960922 -leo_i n 1 1 @ 1 0 11127188 -leo_iii n 1 1 @ 1 0 11127419 -leo_ix n 1 1 @ 1 0 11127565 -leo_szilard n 1 1 @ 1 0 11328289 -leo_the_great n 1 1 @ 1 0 11127188 -leo_the_lion n 1 1 @ 1 0 08686821 -leo_tolstoy n 1 1 @ 1 0 11345378 -leo_x n 1 1 @ 1 0 11127752 -leo_xiii n 1 1 @ 1 0 11127996 -leon n 3 2 @ #p 3 0 09028367 09026360 08743691 -leon_battista_alberti n 1 1 @ 1 0 10811708 -leon_trotsky n 1 1 @ 1 0 11349318 -leonard n 1 1 @ 1 0 11128236 -leonard_bernstein n 1 1 @ 1 0 10848802 -leonard_bloomfield n 1 1 @ 1 0 10853767 -leonard_constant_lambert n 1 1 @ 1 0 11115131 -leonard_marx n 1 2 @ #m 1 0 11160861 -leonardo n 1 1 @ 1 0 11128394 -leonardo_da_vinci n 1 1 @ 1 0 11128394 -leonberg n 1 1 @ 1 0 02111129 -leoncita n 1 3 @ ~ #m 1 0 02491107 -leone n 1 2 @ %p 1 0 13685216 -leonhard_euler n 1 1 @ 1 0 10962611 -leonid_brezhnev n 1 1 @ 1 0 10863896 -leonid_fyodorovich_myasin n 1 1 @ 1 0 11163859 -leonid_ilyich_brezhnev n 1 1 @ 1 0 10863896 -leonidas n 1 1 @ 1 0 11128673 -leonide_fedorovitch_massine n 1 1 @ 1 0 11163859 -leonotis n 1 3 @ #m %m 1 0 12850718 -leonotis_leonurus n 1 2 @ #m 1 0 12850906 -leonotis_nepetaefolia n 1 2 @ #m 1 0 12851094 -leonotis_nepetifolia n 1 2 @ #m 1 0 12851094 -leontief n 1 1 @ 1 0 11128834 -leontocebus n 1 3 @ #m %m 1 0 02490964 -leontocebus_oedipus n 1 1 @ 1 0 02491474 -leontocebus_rosalia n 1 1 @ 1 0 02491329 -leontodon n 1 3 @ #m %m 1 0 11988774 -leontodon_autumnalis n 1 1 @ 1 0 11989087 -leontopodium n 1 3 @ #m %m 1 0 11989266 -leontopodium_alpinum n 1 2 @ #m 1 0 11989393 -leontyne_price n 1 1 @ 1 0 11246408 -leonurus n 1 3 @ #m %m 1 0 12851304 -leonurus_cardiaca n 1 2 @ #m 1 0 12851469 -leopard n 2 3 @ ~ #m 2 0 14765422 02128385 -leopard's-bane n 1 2 @ #m 1 0 11961871 -leopard_cat n 1 2 @ #m 1 0 02126317 -leopard_frog n 1 2 @ #m 1 0 01641391 -leopard_lily n 3 2 @ #m 3 0 12428412 12427184 12416073 -leopard_lizard n 1 2 @ #m 1 0 01679962 -leopard_plant n 1 2 @ #m 1 0 11992166 -leopardbane n 1 2 @ #m 1 0 11961871 -leopardess n 1 1 @ 1 0 02128598 -leopold_antoni_stanislaw_stokowski n 1 1 @ 1 0 11318967 -leopold_kronecker n 1 1 @ 1 0 11111085 -leopold_stokowski n 1 1 @ 1 0 11318967 -leopoldville n 1 2 @ #p 1 0 08735164 -leotard n 1 1 @ 1 0 03657511 -leotards n 1 3 @ ~ ; 1 0 04434932 -leotia_lubrica n 1 1 @ 1 0 13028937 -lepadidae n 1 3 @ #m %m 1 0 01998920 -lepanto n 1 2 @ ; 1 0 01283565 -lepas n 1 3 @ #m %m 1 0 01999048 -lepas_fascicularis n 1 2 @ #m 1 0 01999186 -lepechinia n 1 3 @ #m %m 1 0 12851673 -lepechinia_calycina n 1 2 @ #m 1 0 12851860 -leper n 2 1 @ 2 0 10254670 10254585 -leper_lily n 1 1 @ 1 0 12453186 -lepidium n 1 3 @ #m %m 1 0 11890329 -lepidium_alpina n 1 1 @ 1 0 11893916 -lepidium_sativum n 1 3 @ #m %p 1 0 11890507 -lepidobotryaceae n 1 3 @ #m %m 1 0 12701178 -lepidobotrys n 1 2 @ #m 1 0 12701666 -lepidochelys n 1 3 @ #m %m 1 0 01664244 -lepidochelys_kempii n 1 1 @ 1 0 01664492 -lepidochelys_olivacea n 1 1 @ 1 0 01664674 -lepidocrocite n 1 1 @ 1 0 14934353 -lepidocybium n 1 3 @ #m %m 1 0 02622408 -lepidocybium_flavobrunneum n 1 2 @ #m 1 0 02622547 -lepidodendraceae n 1 2 @ #m 1 0 13222035 -lepidodendrales n 1 3 @ #m %m 1 0 13221807 -lepidolite n 1 2 @ %s 1 0 14680261 -lepidomelane n 1 1 @ 1 0 14680415 -lepidophobia n 1 1 @ 1 0 14385243 -lepidoptera n 1 3 @ #m %m 1 0 02273545 -lepidopteran n 1 3 @ ~ #m 1 0 02274024 -lepidopterist n 1 2 @ + 1 0 10254761 -lepidopterologist n 1 1 @ 1 0 10254761 -lepidopterology n 1 1 @ 1 0 06072476 -lepidopteron n 1 3 @ ~ #m 1 0 02274024 -lepidopterous_insect n 1 3 @ ~ #m 1 0 02274024 -lepidoptery n 1 2 @ + 1 0 06072476 -lepidosauria n 1 3 @ #m %m 1 0 01672767 -lepidothamnus n 1 3 @ #m %m 1 0 11656380 -lepidothamnus_fonkii n 1 2 @ #m 1 0 11656549 -lepidothamnus_laxifolius n 1 2 @ #m 1 0 11656771 -lepiota n 1 3 @ ~ #m 1 0 13013534 -lepiota_americana n 1 2 @ #m 1 0 13014409 -lepiota_cepaestipes n 1 2 @ #m 1 0 13014879 -lepiota_clypeolaria n 1 2 @ #m 1 0 13014741 -lepiota_morgani n 1 2 @ #m 1 0 13013965 -lepiota_naucina n 1 2 @ #m 1 0 13014097 -lepiota_procera n 1 2 @ #m 1 0 13013764 -lepiota_rhacodes n 1 2 @ #m 1 0 13014265 -lepiota_rubrotincta n 1 2 @ #m 1 0 13014581 -lepiotaceae n 1 3 @ #m %m 1 0 13012613 -lepisma n 1 3 @ #m %m 1 0 02270473 -lepisma_saccharina n 1 2 @ #m 1 0 02270623 -lepismatidae n 1 3 @ #m %m 1 0 02270326 -lepisosteidae n 1 3 @ #m %m 1 0 02641063 -lepisosteus n 1 3 @ #m %m 1 0 02641215 -lepisosteus_osseus n 1 2 @ #m 1 0 02641379 -lepista_irina n 1 2 @ #m 1 0 13021689 -lepomis n 1 3 @ #m %m 1 0 02563497 -lepomis_gibbosus n 1 2 @ #m 1 0 02563648 -lepomis_macrochirus n 1 2 @ #m 1 0 02563792 -lepomis_punctatus n 1 2 @ #m 1 0 02563949 -leporid n 1 3 @ ~ #m 1 0 02323902 -leporid_mammal n 1 3 @ ~ #m 1 0 02323902 -leporidae n 1 3 @ #m %m 1 0 02323715 -leporide n 1 1 @ 1 0 02328009 -leppy n 1 1 @ 1 0 02403920 -leprechaun n 1 1 @ 1 0 09541434 -lepromatous_leprosy n 1 1 @ 1 0 14136674 -leprosy n 1 4 @ ~ %p + 1 1 14136187 -leprosy_bacillus n 1 1 @ 1 0 01377804 -leptarrhena n 1 3 @ #m %m 1 0 12799119 -leptarrhena_pyrolifolia n 1 2 @ #m 1 0 12799269 -leptinotarsa n 1 3 @ #m %m 1 0 02169833 -leptinotarsa_decemlineata n 1 2 @ #m 1 0 02169974 -leptocephalus n 1 2 @ #m 1 0 02311748 -leptodactylid n 1 2 @ #m 1 0 01642943 -leptodactylid_frog n 1 2 @ #m 1 0 01642943 -leptodactylidae n 1 3 @ #m %m 1 0 01642671 -leptodactylus n 1 3 @ #m %m 1 0 01643687 -leptodactylus_pentadactylus n 1 2 @ #m 1 0 01643896 -leptoglossus n 1 3 @ #m %m 1 0 02239934 -leptomeninges n 1 2 @ %p 1 0 05482328 -leptomeningitis n 1 1 @ 1 0 14349446 -lepton n 2 3 @ ~ #p 2 0 13675349 09338013 -leptopteris n 1 3 @ #m %m 1 0 12954185 -leptopteris_superba n 1 2 @ #m 1 0 12954353 -leptoptilus n 1 3 @ #m %m 1 0 02002875 -leptoptilus_crumeniferus n 1 3 @ #m %p 1 0 02003204 -leptoptilus_dubius n 1 2 @ #m 1 0 02003037 -leptospira n 1 2 @ #m 1 0 01383502 -leptospirosis n 1 2 @ ~ 1 0 14273365 -leptosporangium n 1 1 @ 1 0 13093102 -leptotene n 1 3 @ #p %p 1 0 13507336 -leptotyphlopidae n 1 3 @ #m %m 1 0 01740393 -leptotyphlops n 1 3 @ #m %m 1 0 01740721 -leptotyphlops_humilis n 1 2 @ #m 1 0 01740885 -lepus n 2 3 @ #m %m 2 0 09338243 02326237 -lepus_americanus n 1 1 @ 1 0 02327842 -lepus_arcticus n 1 2 @ #m 1 0 02327656 -lepus_californicus n 1 1 @ 1 0 02327435 -lepus_europaeus n 1 2 @ #m 1 0 02326862 -lepus_townsendi n 1 1 @ 1 0 02327175 -ler n 1 2 @ ; 1 0 09509770 -leresis n 1 1 @ 1 0 04651683 -lermontov n 1 1 @ 1 0 11129017 -lerner n 1 1 @ 1 0 11129130 -leroi_jones n 1 1 @ 1 0 10834011 -lerot n 1 2 @ #m 1 0 02353411 -leroy_robert_paige n 1 1 @ 1 0 11220664 -lesbian n 2 4 @ ~ #m + 2 0 10254965 09711530 -lesbianism n 1 2 @ ~ 1 0 00857424 -lesbos n 1 3 @ #p %m 1 0 08783583 -lescol n 1 2 @ ; 1 0 03372656 -lese_majesty n 1 1 @ 1 0 00782072 -lesion n 2 2 @ ~ 2 1 14211294 14298815 -leslie_howard n 1 1 @ 1 0 11062285 -leslie_howard_stainer n 1 1 @ 1 0 11062285 -leslie_richard_groves n 1 1 @ 1 0 11017661 -leslie_townes_hope n 1 1 @ 1 0 11059263 -lesotho n 1 4 @ #p %m %p 1 0 08958830 -lesotho_monetary_unit n 1 2 @ ~ 1 0 13687524 -lespedeza n 1 3 @ ~ #m 1 0 12542910 -lespedeza_bicolor n 1 2 @ #m 1 0 12543186 -lespedeza_cuneata n 1 2 @ #m 1 0 12543826 -lespedeza_sericea n 1 2 @ #m 1 0 12543826 -lespedeza_stipulacea n 1 2 @ #m 1 0 12543639 -lespedeza_striata n 1 2 @ #m 1 0 12543455 -lesquerella n 1 3 @ #m %m 1 0 11890723 -lessee n 1 2 @ + 1 0 10252075 -lessening n 1 2 @ ~ 1 1 07355887 -lesseps n 1 1 @ 1 0 11129286 -lesser_anteater n 1 2 @ #m 1 0 02461128 -lesser_antilles n 1 3 @ #p %p 1 0 08748280 -lesser_ape n 1 3 @ ~ #m 1 0 02483092 -lesser_bullrush n 1 1 @ 1 0 12156117 -lesser_burdock n 1 1 @ 1 0 11924661 -lesser_butterfly_orchid n 1 2 @ #m 1 0 12077944 -lesser_calamint n 1 1 @ 1 0 12843557 -lesser_celandine n 1 2 @ #m 1 0 11721337 -lesser_centaury n 1 1 @ 1 0 12291143 -lesser_duckweed n 1 2 @ #m 1 0 11795049 -lesser_galangal n 1 2 @ #m 1 0 12357100 -lesser_hemlock n 1 2 @ #m 1 0 12931231 -lesser_knapweed n 1 1 @ 1 0 11948656 -lesser_kudu n 1 1 @ 1 0 02424589 -lesser_omentum n 1 1 @ 1 0 05429840 -lesser_panda n 1 2 @ #m 1 0 02509815 -lesser_peritoneal_cavity n 1 2 @ #p 1 0 05428136 -lesser_prairie_chicken n 1 1 @ 1 0 01798839 -lesser_rhomboid_muscle n 1 1 @ 1 0 05575374 -lesser_rorqual n 1 2 @ #m 1 0 02065407 -lesser_scaup n 1 1 @ 1 0 01851731 -lesser_scaup_duck n 1 1 @ 1 0 01851731 -lesser_spearwort n 1 2 @ #m 1 0 11721642 -lesser_sunda_islands n 1 3 @ #p %m 1 0 08842583 -lesser_twayblade n 1 2 @ #m 1 0 12071477 -lesser_whitethroat n 1 1 @ 1 0 01565078 -lesser_wintergreen n 1 1 @ 1 0 12256522 -lesser_yellow_trefoil n 1 1 @ 1 0 11752937 -lesser_yellowlegs n 1 1 @ 1 0 02028451 -lessing n 2 1 @ 2 0 11129665 11129478 -lesson n 4 3 @ ~ #p 4 4 00889472 06672752 06606044 00729285 -lessor n 1 2 @ + 1 0 10255096 -lester_willis_young n 1 1 @ 1 0 11403692 -lesvos n 1 3 @ #p %m 1 0 08783583 -let n 2 2 @ ; 2 0 08031020 00569073 -letch n 1 1 @ 1 0 10552980 -letdown n 1 3 @ ~ + 1 1 07540602 -lethal_agent n 1 1 @ 1 0 09338361 -lethal_dose n 1 1 @ 1 1 03657825 -lethal_gene n 1 1 @ 1 0 05438956 -lethality n 1 3 @ ~ + 1 1 04791081 -lethargic_encephalitis n 1 1 @ 1 0 14343735 -lethargy n 3 3 @ ~ + 3 2 14014990 05042138 04635953 -lethe n 1 3 @ #p ; 1 0 09338453 -leto n 1 1 @ 1 0 09577833 -letter n 5 6 @ ~ #m #p %p + 5 2 06624161 06828818 10255207 07173389 06706504 -letter_bomb n 1 2 @ + 1 0 03657918 -letter_bond n 1 1 @ 1 0 13420722 -letter_box n 3 2 @ ~ 3 0 03990210 03989074 03710193 -letter_carrier n 1 1 @ 1 0 10283037 -letter_case n 1 1 @ 1 0 03658102 -letter_of_credit n 1 2 @ ~ 1 0 13379753 -letter_of_intent n 1 2 @ ~ 1 0 06626860 -letter_of_jeremiah n 1 2 @ #p 1 0 06459450 -letter_of_mark_and_reprisal n 1 1 @ 1 0 06550891 -letter_of_marque n 1 1 @ 1 0 06550891 -letter_of_the_alphabet n 1 4 @ ~ #m #p 1 0 06828818 -letter_opener n 1 1 @ 1 0 03658185 -letter_paper n 2 2 @ ~ 2 0 14934758 06258852 -letter_security n 1 2 @ ~ 1 0 13419535 -letter_stock n 1 1 @ 1 0 13420544 -letter_telegram n 1 1 @ 1 0 06275219 -letter_writer n 1 2 @ ~ 1 1 09966554 -lettercard n 1 1 @ 1 0 06628125 -letterer n 1 2 @ + 1 0 10255348 -letterhead n 1 1 @ 1 1 06259027 -lettering n 1 2 @ ~ 1 1 06405699 -letterman n 1 1 @ 1 1 10255459 -letterpress n 1 1 @ 1 0 06678664 -letters n 2 1 @ 2 1 05752422 05986295 -letters_of_administration n 1 2 @ ; 1 0 06531481 -letters_of_marque n 1 1 @ 1 0 06550891 -letters_patent n 1 2 @ ; 1 0 06551627 -letters_testamentary n 1 2 @ ; 1 0 06531657 -letterset_printing n 1 1 @ 1 0 06680913 -letting n 1 2 @ ~ 1 0 13248393 -letting_down n 1 1 @ 1 1 00327683 -lettish n 1 1 @ 1 0 06946355 -lettre_de_cachet n 1 2 @ ; 1 0 06548110 -lettuce n 3 4 @ ~ #m #p 3 0 13385216 11986306 07723559 -letup n 1 2 @ + 1 0 15274441 -leu n 2 2 @ %p 2 0 13702231 13685475 -leucadendron n 1 3 @ #m %m 1 0 12220247 -leucadendron_argenteum n 1 2 @ #m 1 0 12220496 -leucaemia n 1 2 @ ~ 1 0 14242922 -leucaena n 1 3 @ #m %m 1 0 11762237 -leucaena_glauca n 1 2 @ #m 1 0 11762433 -leucaena_leucocephala n 1 2 @ #m 1 0 11762433 -leucanthemum n 1 3 @ #m %m 1 0 11989636 -leucanthemum_lacustre n 1 2 @ #m 1 0 11990627 -leucanthemum_maximum n 1 2 @ #m 1 0 11990167 -leucanthemum_superbum n 1 2 @ #m 1 0 11990313 -leucanthemum_vulgare n 1 2 @ #m 1 0 11989869 -leucine n 1 1 @ 1 0 14935128 -leuciscus n 1 3 @ #m %m 1 0 01440949 -leuciscus_cephalus n 1 2 @ #m 1 0 01441272 -leuciscus_leuciscus n 1 2 @ #m 1 0 01441117 -leucocyte n 1 2 @ ~ 1 0 05449959 -leucocytosis n 1 1 @ 1 0 14196221 -leucocytozoan n 1 2 @ #m 1 0 01425223 -leucocytozoon n 1 2 @ #m 1 0 01425223 -leucogenes n 1 2 @ #m 1 0 11990804 -leucogenes_leontopodium n 1 1 @ 1 0 11990920 -leucoma n 1 1 @ 1 0 14257563 -leucopenia n 1 2 @ ~ 1 0 14196405 -leucorrhea n 1 1 @ 1 0 05417821 -leucothoe n 1 2 @ #m 1 0 12239647 -leucothoe_editorum n 1 2 @ #m 1 0 12239880 -leucothoe_fontanesiana n 1 2 @ #m 1 0 12239880 -leucothoe_racemosa n 1 2 @ #m 1 0 12240150 -leucotomy n 1 2 @ ~ 1 0 00684128 -leuctra n 1 2 @ ; 1 0 01283753 -leukaemia n 1 2 @ ~ 1 0 14242922 -leukemia n 1 2 @ ~ 1 0 14242922 -leukeran n 1 2 @ ; 1 0 03021531 -leukocyte n 1 2 @ ~ 1 0 05449959 -leukocytosis n 1 1 @ 1 0 14196221 -leukoderma n 1 2 @ %p 1 0 14229248 -leukoencephalitis n 1 1 @ 1 0 14343302 -leukoma n 1 1 @ 1 0 14257563 -leukopenia n 1 2 @ ~ 1 0 14196405 -leukorrhea n 1 1 @ 1 0 05417821 -leukotomy n 1 2 @ ~ 1 0 00684128 -leuwenhoek n 1 1 @ 1 0 11129808 -lev n 1 2 @ %p 1 0 13685809 -lev_davidovich_bronstein n 1 1 @ 1 0 11349318 -lev_davidovich_landau n 1 1 @ 1 0 11115785 -lev_ivanov n 1 1 @ 1 0 11075352 -levallorphan n 1 1 @ 1 0 03658373 -levant n 2 3 @ #p %m 2 0 14763218 08915159 -levant_cotton n 1 1 @ 1 0 12176709 -levant_garlic n 1 1 @ 1 0 12432356 -levant_morocco n 1 1 @ 1 0 14763218 -levanter n 1 1 @ 1 0 11473033 -levantine n 1 3 @ #m + 1 0 09720702 -levator n 1 1 @ 1 0 05292736 -levee n 3 1 @ 3 0 08254627 03658759 03658635 -level n 8 5 @ ~ #p = + 8 6 05093890 14428160 13939892 05131902 03658858 03536348 06246896 03365991 -level_best n 1 1 @ 1 0 05124928 -level_crossing n 1 1 @ 1 0 03659122 -leveler n 1 2 @ + 1 0 10255567 -leveling n 3 2 @ ~ 3 0 00912576 00218045 00044673 -leveller n 1 2 @ + 1 0 10255567 -lever n 3 5 @ ~ #p %p + 3 1 03659292 03659809 03659686 -lever_hang n 1 1 @ 1 0 00436817 -lever_lock n 1 2 @ %p 1 0 03659950 -lever_scale n 1 1 @ 1 0 04312154 -lever_tumbler n 1 2 @ #p 1 0 03659686 -leverage n 3 3 @ ~ + 3 0 11473138 05156481 01099946 -leveraged_buyout n 1 2 @ ~ 1 0 00175174 -leveraging n 1 1 @ 1 0 01099946 -leveret n 1 1 @ 1 0 02326763 -levi n 1 2 @ ; 1 0 11164671 -levi's n 1 2 @ ; 1 0 03660124 -levi-lorrain_dwarf n 1 1 @ 1 0 10436458 -levi-strauss n 1 1 @ 1 0 11130113 -leviathan n 2 1 @ 2 0 10255728 09496802 -levirate n 1 1 @ 1 0 05669618 -levis n 1 1 @ 1 1 03660124 -levisticum n 1 3 @ #m %m 1 0 12940060 -levisticum_officinale n 1 3 @ #m %p 1 0 12940226 -levitation n 3 3 ! @ + 3 0 11408733 07363067 00324699 -levite n 1 1 @ 1 0 10255915 -leviticus n 1 3 @ #p + 1 0 06433035 -levitra n 1 1 @ 1 0 04521428 -levity n 2 3 ! @ ~ 2 0 07511906 04648749 -levodopa n 1 1 @ 1 0 14605132 -levorotation n 1 2 ! @ 1 0 07441494 -levulose n 1 1 @ 1 0 14874932 -levy n 2 3 @ ~ + 2 0 13308864 01158064 -levy_en_masse n 1 1 @ 1 0 01158064 -lewdness n 1 3 @ ~ + 1 0 04903368 -lewis n 6 1 @ 6 0 11131358 11131135 11130940 11130661 11130474 11130291 -lewis_and_clark_expedition n 1 1 @ 1 0 08409323 -lewis_carroll n 1 1 @ 1 0 10884061 -lewis_henry_morgan n 1 1 @ 1 0 11191113 -lewisia n 1 3 @ #m %m 1 0 11859981 -lewisia_cotyledon n 1 2 @ #m 1 0 11860208 -lewisia_rediviva n 1 2 @ #m 1 0 11860555 -lewiston n 2 2 @ #p 2 0 09093187 09081955 -lexeme n 1 1 @ 1 0 06306034 -lexical_ambiguity n 1 1 @ 1 0 04825576 -lexical_database n 1 2 @ ~ 1 0 06638868 -lexical_disambiguation n 1 1 @ 1 0 07171666 -lexical_entry n 1 3 @ #p %p 1 0 06300823 -lexical_meaning n 1 2 @ #p 1 0 06601973 -lexical_semantics n 1 1 @ 1 0 06180412 -lexicalisation n 1 1 @ 1 0 13507472 -lexicalization n 1 2 @ + 1 0 13507472 -lexicalized_concept n 1 1 @ 1 0 05873884 -lexicographer n 1 3 @ ~ + 1 0 10256080 -lexicography n 1 2 @ + 1 0 00931721 -lexicologist n 1 3 @ ~ + 1 0 10256080 -lexicology n 1 3 @ ~ + 1 0 06178812 -lexicon n 2 5 @ ~ #p %p + 2 1 05651242 06418901 -lexicostatistics n 1 2 @ + 1 1 06179574 -lexington n 3 3 @ #p ; 3 0 09097283 09089782 01283935 -lexington_and_concord n 1 3 @ #p ; 1 0 01283935 -lexis n 1 3 @ #p + 1 0 05651068 -ley n 1 3 @ ~ #p 1 0 08616050 -leycesteria n 1 3 @ #m %m 1 0 12672843 -leycesteria_formosa n 1 2 @ #m 1 0 12673012 -leyden n 1 2 @ #p 1 0 08951077 -leyden_jar n 1 1 @ 1 1 03655470 -leydig's_cell n 1 1 @ 1 0 05459457 -leydig_cell n 1 1 @ 1 0 05459457 -leymus n 1 2 @ #m 1 0 12124358 -leymus_arenaria n 1 1 @ 1 0 12119539 -leymus_condensatus n 1 1 @ 1 0 12119390 -leyte n 1 3 @ #p ; 1 1 01284124 -leyte_invasion n 1 3 @ #p ; 1 0 01284124 -leyte_island n 1 3 @ #p ; 1 0 01284124 -lf n 1 2 @ #p 1 0 05057382 -lgb n 1 2 @ ~ 1 0 03643491 -lgv n 1 1 @ 1 0 14137561 -lh n 1 1 @ 1 0 14749272 -lhasa n 2 2 @ #p 2 0 08907377 02098413 -lhasa_apso n 1 1 @ 1 0 02098413 -lhotse n 1 2 @ #p 1 0 09338712 -li n 2 2 @ #s 2 0 14643793 13654674 -li_po n 1 1 @ 1 0 11134115 -liabilities n 1 3 @ ~ ; 1 0 13396054 -liability n 3 4 ! @ ~ + 3 1 14530403 14490319 05161436 -liability_insurance n 1 1 @ 1 0 13347065 -liaison n 2 1 @ 2 2 13931889 06261260 -liakoura n 1 3 @ #p ; 1 0 09385586 -liam_o'flaherty n 1 1 @ 1 0 11212669 -liana n 1 2 @ ~ 1 0 13120211 -liao n 1 1 @ 1 0 08156054 -liao_dynasty n 1 1 @ 1 0 08156054 -liaodong_bandao n 1 2 @ #p 1 0 09338910 -liaodong_peninsula n 1 2 @ #p 1 0 09338910 -liar n 1 4 ! @ ~ + 1 1 10256537 -liatris n 1 3 @ #m %m 1 0 11991080 -liatris_punctata n 1 1 @ 1 0 11991549 -liatris_pycnostachya n 1 1 @ 1 0 11991777 -libation n 3 2 @ ; 3 0 07885937 07885832 01041835 -libber n 1 3 @ ~ #m 1 0 10084635 -libby n 1 1 @ 1 0 11131505 -libel n 2 3 @ + ; 2 0 06720371 06562436 -libeler n 1 2 @ + 1 0 09999135 -liberal n 2 3 ! @ ~ 2 2 10256756 10257084 -liberal_arts n 1 2 @ ~ 1 1 06153846 -liberal_democrat_party n 1 2 @ ; 1 0 08261589 -liberal_party n 1 1 @ 1 0 08261810 -liberalisation n 1 2 @ + 1 0 00355691 -liberalism n 2 3 @ ~ + 2 2 06218623 05995576 -liberalist n 1 2 @ ~ 1 0 10256756 -liberality n 2 4 ! @ ~ + 2 0 06204820 04832518 -liberalization n 1 2 @ + 1 0 00355691 -liberalness n 2 3 @ ~ + 2 0 06204820 04832518 -liberation n 3 3 @ ~ + 3 1 00095502 00787832 00216174 -liberation_theology n 1 1 @ 1 0 06184733 -liberation_tigers_of_tamil_eelam n 1 2 @ ; 1 0 08032023 -liberator n 1 4 ! @ ~ + 1 0 10257221 -liberia n 1 5 @ #p %m %p + 1 0 08959254 -liberian n 1 3 @ #m + 1 0 09720842 -liberian_capital n 1 2 @ #p 1 0 08959495 -liberian_coffee n 1 1 @ 1 0 12663254 -liberian_dollar n 1 1 @ 1 0 13673747 -libertarian n 2 3 ! @ ~ 2 0 10257524 10257402 -libertarianism n 1 1 @ 1 0 06219185 -libertine n 1 3 @ ~ + 1 1 10257647 -liberty n 5 3 @ ~ + 5 3 13992514 13994456 13996061 15140080 00737070 -liberty_bell n 1 1 @ 1 0 03660228 -liberty_cap n 1 1 @ 1 0 03660394 -liberty_chit n 1 2 @ ; 1 0 06690226 -liberty_island n 1 2 @ #p 1 0 09114401 -liberty_party n 1 1 @ 1 0 08261958 -liberty_ship n 1 1 @ 1 0 03660562 -libidinal_energy n 1 3 @ ~ ; 1 0 09185440 -libido n 1 3 @ + ; 1 0 07489548 -libocedrus n 1 3 @ #m %m 1 0 11638902 -libocedrus_bidwillii n 1 2 @ #m 1 0 11639445 -libocedrus_decurrens n 1 2 @ #m 1 0 11634736 -libocedrus_plumosa n 1 2 @ #m 1 0 11639306 -libra n 3 3 @ #p ; 3 0 09753065 09339109 08687150 -libra_the_balance n 1 1 @ 1 0 08687150 -libra_the_scales n 1 1 @ 1 0 08687150 -librarian n 1 3 @ ~ + 1 1 10257948 -librarianship n 1 2 @ + 1 0 00594477 -library n 5 5 @ ~ #p %p ; 5 3 03660909 07977870 03660664 07977592 03661043 -library_card n 1 1 @ 1 0 06478199 -library_catalog n 1 2 @ ~ 1 0 06488325 -library_catalogue n 1 2 @ ~ 1 0 06488325 -library_fine n 1 1 @ 1 0 13301500 -library_paste n 1 2 @ ~ 1 0 14704966 -library_program n 1 2 @ #p 1 0 06576265 -library_routine n 1 2 @ #p 1 0 06583790 -library_science n 1 2 @ - 1 0 06170892 -libration n 1 3 @ + ; 1 0 13507617 -librettist n 1 3 @ ~ + 1 0 10258152 -libretto n 1 2 @ + 1 1 07012025 -libreville n 1 2 @ #p 1 0 08945705 -libritabs n 1 2 @ ; 1 0 03022041 -librium n 1 2 @ ; 1 0 03022041 -libya n 1 7 @ #m #p %m %p + - 1 0 08959683 -libyan n 1 3 @ #m + 1 0 09720967 -libyan_desert n 1 2 @ #p 1 0 09170788 -libyan_dinar n 1 2 @ %p 1 0 13670281 -libyan_dirham n 1 2 @ #p 1 0 13670399 -libyan_fighting_group n 1 2 @ ; 1 0 08032594 -libyan_islamic_fighting_group n 1 2 @ ; 1 0 08032594 -libyan_islamic_group n 1 2 @ ; 1 0 08032594 -libyan_monetary_unit n 1 2 @ ~ 1 0 13670156 -licence n 3 4 @ ~ + ; 3 0 13995378 13994806 06549661 -license n 4 4 @ ~ + ; 4 2 06549661 13994806 13995378 01139194 -license_fee n 1 2 @ ; 1 0 13322113 -license_number n 1 1 @ 1 1 06425808 -license_plate n 1 1 @ 1 0 03661180 -license_tax n 1 2 @ ; 1 0 13322113 -licensed_practical_nurse n 1 1 @ 1 0 10258304 -licensee n 1 2 @ + 1 0 10258493 -licenser n 1 2 @ + 1 0 10258602 -licensing_agreement n 1 1 @ 1 0 06527576 -licensing_fee n 1 2 @ ; 1 1 13322113 -licentiate n 1 1 @ 1 0 10258786 -licentiousness n 2 2 @ + 2 0 04851715 00748307 -lichanura n 1 3 @ #m %m 1 0 01742680 -lichanura_trivirgata n 1 2 @ #m 1 0 01742821 -lichee n 2 4 @ #m #p %p 2 0 12744387 07766173 -lichen n 2 3 @ ~ #m 2 0 14229403 12987056 -lichen_planus n 1 1 @ 1 0 14229604 -lichen_ruber_planus n 1 1 @ 1 0 14229604 -lichenales n 1 2 @ #m 1 0 12986858 -lichenes n 1 3 @ #m %m 1 0 12986447 -lichgate n 1 1 @ 1 0 03698815 -lichi n 1 2 @ #p 1 0 07766173 -lichtenoid_eczema n 1 1 @ 1 0 14225877 -lichtenstein n 1 1 @ 1 0 11131658 -licinius_lucullus n 1 1 @ 1 0 11143600 -licitness n 1 3 ! @ + 1 0 04810194 -lick n 3 4 @ ~ + ; 3 0 09420689 00150591 00134780 -licking n 2 2 @ ~ 2 1 07475364 01160729 -licorice n 2 3 @ #m %p 2 0 12532886 07607361 -licorice_fern n 1 1 @ 1 0 13173132 -licorice_root n 1 2 @ #p 1 0 12533437 -licorice_stick n 1 1 @ 1 0 02834027 -lid n 3 4 @ ~ #p %p 3 1 05313822 03661340 03497657 -lidar n 1 1 @ 1 0 03661621 -lido n 1 3 @ %p ; 1 0 03661861 -lido_deck n 1 1 @ 1 0 03662207 -lidocaine n 1 2 @ ; 1 0 03662016 -lie n 3 3 @ ~ + 3 1 06756831 11131808 08624196 -lie-abed n 1 1 @ 1 0 10258896 -lie-in n 1 2 @ ; 1 0 01064758 -lie_detector n 1 2 @ %p 1 0 03662452 -liebfraumilch n 1 2 @ ; 1 0 07897600 -liebig_condenser n 1 1 @ 1 0 03662301 -liechtenstein n 1 5 @ #p %m %p + 1 0 08960548 -liechtensteiner n 1 3 @ #m + 1 0 09721088 -lied n 1 1 @ 1 0 07051620 -lieder_singer n 1 1 @ 1 0 10259016 -liederkranz n 1 2 @ ; 1 0 07853946 -liege n 3 3 @ #p + 3 0 10746581 10259094 08851687 -liege_lord n 1 1 @ 1 0 10259094 -liege_subject n 1 1 @ 1 0 10746581 -liegeman n 1 1 @ 1 0 10746581 -lien n 2 5 @ ~ #p %p + 2 0 13401013 05333467 -lienal_artery n 1 2 @ #p 1 0 05350061 -liepaja n 1 2 @ #p 1 0 09013603 -lietuva n 1 3 @ %m %p 1 0 09013830 -lieu n 1 2 @ ~ 1 0 00721431 -lieutenancy n 1 2 @ + 1 0 00594580 -lieutenant n 4 4 @ ~ + ; 4 3 10259348 10259225 10005280 10259527 -lieutenant_colonel n 1 2 @ ; 1 0 10259780 -lieutenant_commander n 1 2 @ ; 1 0 10259997 -lieutenant_general n 1 2 @ ; 1 0 10260166 -lieutenant_governor n 1 1 @ 1 1 10260322 -lieutenant_jg n 1 2 @ ; 1 0 10260473 -lieutenant_junior_grade n 1 2 @ ; 1 0 10260473 -life n 14 5 @ ~ %p = + 14 13 13963192 05810561 13961399 13961642 15140405 15140744 15140892 10260706 04632157 00006269 11473291 06515827 09178727 15225076 -life-of-man n 1 2 @ #m 1 0 11797981 -life-style n 1 2 @ ~ 1 0 04930632 -life-support_system n 2 1 @ 2 0 03664159 03663910 -life-time n 1 3 @ ~ %p 1 0 15140405 -life_assurance n 1 2 @ ~ 1 0 13347237 -life_belt n 2 2 @ ~ 2 0 04125853 03662719 -life_buoy n 1 2 @ ~ 1 0 03662719 -life_class n 1 1 @ 1 1 00885764 -life_cycle n 2 1 @ 2 1 11473807 13507827 -life_estate n 1 3 @ ~ ; 1 0 13251715 -life_eternal n 1 1 @ 1 1 13957390 -life_expectancy n 1 1 @ 1 0 15142025 -life_force n 1 2 @ ; 1 0 11523839 -life_form n 1 1 @ 1 0 05217061 -life_history n 2 2 @ ~ 2 1 06515827 00282613 -life_imprisonment n 1 1 @ 1 0 14000200 -life_insurance n 1 2 @ ~ 1 0 13347237 -life_jacket n 1 2 @ ~ 1 0 03662887 -life_line n 1 1 @ 1 0 13906767 -life_mask n 1 1 @ 1 0 03663332 -life_office n 1 2 @ ; 1 0 03663433 -life_peer n 1 1 @ 1 0 10260943 -life_preserver n 1 2 @ ~ 1 0 03663531 -life_principle n 1 2 @ ~ 1 1 10757918 -life_raft n 1 1 @ 1 0 03663781 -life_ring n 1 2 @ ~ 1 0 03662719 -life_saver n 1 2 @ ; 1 0 07607492 -life_science n 1 3 @ ~ + 1 1 06037298 -life_scientist n 1 4 @ ~ + ; 1 0 09855630 -life_sentence n 1 1 @ 1 0 15225076 -life_story n 1 2 @ ~ 1 0 06515827 -life_style n 1 2 @ ~ 1 1 04930632 -life_support n 2 1 @ 2 0 03664159 03663910 -life_tenant n 1 1 @ 1 1 10261211 -life_vest n 1 2 @ ~ 1 0 03662887 -lifeblood n 2 1 @ 2 0 05401851 05195796 -lifeboat n 1 1 @ 1 0 03662601 -lifeguard n 1 1 @ 1 0 10260800 -lifelessness n 2 3 @ ~ + 2 0 14006179 05006285 -lifeline n 4 2 @ ~ 4 0 13906767 05694527 03663234 03663069 -lifer n 1 2 @ + 1 0 10261041 -lifesaver n 2 2 @ ~ 2 0 10260800 03662719 -lifesaving n 1 1 @ 1 0 00093874 -lifespan n 1 3 @ ~ %p 1 0 15140405 -lifestyle n 1 2 @ ~ 1 0 04930632 -lifetime n 1 3 @ ~ %p 1 1 15140405 -lifework n 1 1 @ 1 0 00584160 -lifo n 1 1 @ 1 0 00620258 -lift n 12 5 @ ~ #p %p + 12 1 01209487 11422277 07370671 07348399 04231693 03664514 03664374 03281145 00674158 00316594 00309276 00116376 -lift_bridge n 1 1 @ 1 0 03233744 -lift_pump n 1 1 @ 1 0 03664840 -lifter n 2 2 @ + 2 1 10773394 09866661 -lifting_device n 1 2 @ ~ 1 0 03664675 -liftman n 1 1 @ 1 0 10050261 -liftoff n 1 2 @ + 1 0 07371168 -ligament n 2 3 @ ~ #p 2 1 05295381 03664943 -ligamentum_teres_uteri n 1 1 @ 1 0 05295740 -ligan n 1 1 @ 1 0 03633474 -ligand n 1 1 @ 1 0 15110307 -ligation n 1 4 @ ~ + ; 1 0 00148242 -ligature n 6 4 @ ~ + ; 6 0 07045519 06823925 03665232 03665083 02840134 00149084 -liger n 1 1 @ 1 0 02129991 -light n 15 7 ! @ ~ #p = + ; 15 12 11473954 03665366 06210791 05018103 08646188 14563784 04951373 10276659 13983304 05807933 04953380 05612706 09184668 06874019 03666591 -light-emitting_diode n 1 3 @ ~ #p 1 0 03666362 -light-mindedness n 1 2 @ + 1 1 04648866 -light-o'-love n 1 1 @ 1 0 10262343 -light-of-love n 1 1 @ 1 0 10262343 -light-year n 1 2 @ %p 1 0 13656520 -light_adaptation n 1 1 @ 1 0 00193811 -light_air n 1 2 @ #p 1 0 11432387 -light_arm n 1 1 @ 1 0 03665851 -light_ballast n 1 1 @ 1 0 02779971 -light_beam n 1 2 @ ~ 1 1 11428023 -light_beer n 1 1 @ 1 0 07887967 -light_bread n 1 2 @ ~ 1 0 07687211 -light_breeze n 1 2 @ #p 1 0 11432508 -light_brown n 1 2 @ ~ 1 1 04972801 -light_bulb n 1 2 @ %p 1 1 03665924 -light_circuit n 1 1 @ 1 0 03666238 -light_colonel n 1 2 @ ; 1 0 10259780 -light_company n 1 1 @ 1 1 08186393 -light_cream n 1 1 @ 1 0 07847917 -light_diet n 1 1 @ 1 0 07563642 -light_filter n 1 1 @ 1 0 03667060 -light_flyweight n 1 1 @ 1 0 10261511 -light_heavyweight n 3 1 @ 3 0 10261862 10261762 10261624 -light_hour n 1 2 @ #p 1 0 13656749 -light_intensity n 1 1 @ 1 0 05100751 -light_machine_gun n 1 1 @ 1 0 03667552 -light_meter n 1 2 @ ~ 1 0 03667664 -light_microscope n 1 3 @ ~ %p 1 0 03667829 -light_middleweight n 1 1 @ 1 0 10261977 -light_minute n 1 2 @ #p 1 0 13656913 -light_opera n 1 1 @ 1 0 07027090 -light_pen n 1 2 @ ; 1 0 03668279 -light_reaction n 1 2 @ #p 1 0 13508005 -light_reflex n 1 1 @ 1 0 00865808 -light_second n 1 2 @ #p 1 0 13657080 -light_show n 1 1 @ 1 0 00521450 -light_source n 1 2 @ ~ 1 0 03665366 -light_speed n 1 1 @ 1 0 15284285 -light_time n 1 1 @ 1 0 05130210 -light_touch n 1 1 @ 1 0 07413714 -light_unit n 1 2 @ ~ 1 0 13634418 -light_welterweight n 1 1 @ 1 0 10262764 -light_whipping_cream n 1 1 @ 1 0 07848196 -light_within n 1 1 @ 1 0 09184668 -light_year n 1 2 @ %p 1 1 13656520 -lightbulb n 1 2 @ %p 1 0 03665924 -lightening n 2 2 @ ~ 2 0 07363180 00273877 -lighter n 3 3 @ ~ + 3 0 15101361 03666591 02792552 -lighter-than-air_craft n 1 2 @ ~ 1 0 03666917 -lighterage n 2 2 @ + 2 0 13322520 00651954 -lighterman n 1 1 @ 1 0 10261388 -lightheadedness n 2 2 @ + 2 0 14372513 04894444 -lightheartedness n 1 2 @ + 1 0 07530866 -lighthorse_harry_lee n 1 1 @ 1 0 11123762 -lighthouse n 1 2 @ ~ 1 0 02814860 -lighthouse_keeper n 1 1 @ 1 0 10262093 -lighting n 4 2 @ ~ 4 3 13983304 03667235 00608645 00378479 -lighting_circuit n 1 1 @ 1 0 03666238 -lighting_fixture n 1 3 @ ~ %p 1 0 03667380 -lighting_industry n 1 1 @ 1 0 08068788 -lightlessness n 1 2 @ + 1 0 13983807 -lightness n 6 5 ! @ ~ = + 6 0 07527656 05028700 05003850 04979758 04951373 04648596 -lightning n 2 2 @ ~ 2 2 11475279 07412993 -lightning_arrester n 1 1 @ 1 0 04364160 -lightning_bug n 1 3 @ ~ #m 1 0 02168245 -lightning_conductor n 1 1 @ 1 0 03668067 -lightning_hurler n 1 1 @ 1 0 09574226 -lightning_rod n 2 1 @ 2 0 10262183 03668067 -lights-out n 2 3 @ #p ; 2 0 15168569 06804483 -lightship n 1 1 @ 1 0 03668488 -lightsomeness n 3 2 @ + 3 0 07530866 05003850 04648596 -lightweight n 4 2 @ + 4 1 10262445 10776987 10262655 10262561 -lightwood n 1 2 @ #m 1 0 11758122 -ligne n 1 2 @ #p 1 0 13652203 -ligneous_plant n 1 4 @ ~ %s %p 1 0 13103136 -lignin n 1 3 @ #s + 1 0 14935319 -lignite n 1 2 @ ~ 1 1 14815263 -lignosae n 1 1 @ 1 0 13103660 -lignum n 1 2 @ #s 1 0 13096779 -lignum_vitae n 2 4 @ #m #s %s 2 0 12722382 12722071 -ligularia n 1 3 @ #m %m 1 0 11991993 -ligule n 1 2 @ ; 1 0 13162164 -liguria n 1 3 @ #p %p 1 0 08808292 -ligurian_sea n 1 2 @ #p 1 0 09339272 -ligustrum n 1 3 @ #m %m 1 0 12307611 -ligustrum_amurense n 1 1 @ 1 0 12308112 -ligustrum_ibolium n 1 1 @ 1 0 12308259 -ligustrum_japonicum n 1 1 @ 1 0 12308447 -ligustrum_lucidum n 1 1 @ 1 0 12308664 -ligustrum_obtusifolium n 1 1 @ 1 0 12308907 -ligustrum_ovalifolium n 1 1 @ 1 0 12309052 -ligustrum_vulgare n 1 1 @ 1 0 12309277 -like n 2 1 @ 2 0 05845888 05845419 -likelihood n 1 4 ! @ ~ = 1 1 04756635 -likeliness n 1 5 ! @ ~ = + 1 0 04756635 -likeness n 2 5 ! @ ~ = + 2 1 04744814 03668642 -likening n 1 1 @ 1 0 00651088 -liking n 1 3 ! @ ~ 1 1 07497473 -likuta n 1 2 @ #p 1 0 13710546 -lilac n 1 4 @ ~ #m + 1 1 12310349 -lilangeni n 1 2 @ %p 1 0 13686137 -liliaceae n 1 4 @ #m %m + 1 0 12423565 -liliaceous_plant n 1 3 @ ~ #m 1 0 12425281 -liliales n 1 3 @ #m %m 1 0 12410715 -lilian_alicia_marks n 1 1 @ 1 0 11157140 -liliid_monocot_family n 1 3 @ ~ #m 1 0 11556187 -liliid_monocot_genus n 1 3 @ ~ #m 1 0 11561228 -liliidae n 1 3 @ #m %m 1 0 12410381 -liliopsid n 1 2 @ #m 1 0 11668117 -liliopsid_family n 1 3 @ ~ #m 1 0 11555413 -liliopsid_genus n 1 3 @ ~ #m 1 0 11556857 -liliopsida n 1 3 @ #m %m 1 0 11667562 -lilith n 1 1 @ 1 0 09519075 -lilium n 1 3 @ #m %m 1 0 12426100 -lilium_auratum n 1 2 @ #m 1 0 12426623 -lilium_canadense n 1 1 @ 1 0 12426749 -lilium_candidum n 1 1 @ 1 0 12426978 -lilium_catesbaei n 1 1 @ 1 0 12427184 -lilium_columbianum n 1 1 @ 1 0 12427391 -lilium_lancifolium n 1 1 @ 1 0 12427566 -lilium_longiflorum n 1 1 @ 1 0 12427757 -lilium_maritinum n 1 1 @ 1 0 12427946 -lilium_martagon n 1 1 @ 1 0 12428076 -lilium_michiganense n 1 1 @ 1 0 12428242 -lilium_pardalinum n 1 1 @ 1 0 12428412 -lilium_philadelphicum n 1 1 @ 1 0 12428587 -lilium_superbum n 1 1 @ 1 0 12428747 -liliuokalani n 1 1 @ 1 0 11131981 -lille n 1 2 @ #p 1 0 08936476 -lillian_gish n 1 1 @ 1 0 11001422 -lillian_hellman n 1 1 @ 1 0 11039188 -lillian_russell n 1 1 @ 1 0 11275344 -lillie n 1 1 @ 1 0 11132117 -lillie_langtry n 1 1 @ 1 0 11117108 -lilliput n 1 2 @ + 1 0 05630734 -lilliputian n 2 2 @ + 2 0 10262880 09601429 -lilo n 1 2 @ ; 1 0 03668803 -lilongwe n 1 2 @ #p 1 0 08963095 -lilt n 1 2 @ + 1 1 04992008 -lily n 1 3 @ ~ #m 1 0 12426248 -lily-of-the-valley_tree n 1 2 @ #m 1 0 12243459 -lily_family n 1 3 @ #m %m 1 0 12423565 -lily_of_the_incas n 1 2 @ #m 1 0 12438783 -lily_of_the_nile n 1 3 @ ~ #m 1 0 12429148 -lily_of_the_valley n 1 2 @ #m 1 0 12471544 -lily_pad n 1 2 @ #p 1 0 13154736 -lily_pons n 1 1 @ 1 0 11242321 -lily_turf n 1 2 @ #m 1 0 12473171 -lilyturf n 1 2 @ #m 1 0 12473171 -lima n 1 2 @ #p 1 0 08979878 -lima_bean n 3 5 @ ~ #m #p %p 3 0 12558425 12558230 07729000 -lima_bean_plant n 1 3 @ #m %p 1 0 12558230 -limacidae n 1 3 @ #m %m 1 0 01945443 -liman n 1 1 @ 1 0 09339414 -limanda n 1 3 @ #m %m 1 0 02658944 -limanda_ferruginea n 1 3 @ #m %p 1 0 02659176 -limax n 1 2 @ #m 1 0 01945580 -limb n 6 5 @ ~ #p %p ; 6 1 05560244 13163803 08592494 03669094 03668906 02737833 -limb-girdle_muscular_dystrophy n 1 1 @ 1 0 14162563 -limber n 1 1 @ 1 0 03669245 -limber_pine n 1 1 @ 1 0 11613867 -limbers n 1 2 @ ; 1 0 03669367 -limbic_brain n 1 2 @ %p 1 1 05498773 -limbic_system n 1 2 @ %p 1 0 05498773 -limbo n 3 2 @ ; 3 1 14436769 05631076 05630874 -limburger n 1 1 @ 1 0 07854066 -limbus n 1 1 @ 1 0 05235745 -lime n 6 7 @ ~ #m #p %s %p + 6 0 14936010 14789885 14702703 12711984 12202936 07749731 -lime_disease_spirochete n 1 2 @ #m 1 0 01383151 -lime_hydrate n 1 1 @ 1 0 14936010 -lime_juice n 1 1 @ 1 0 07925327 -lime_tree n 2 5 @ ~ #m %s %p 2 1 12711984 12202936 -limeade n 1 1 @ 1 0 07926346 -limeira n 1 2 @ #p 1 0 08855909 -limekiln n 1 1 @ 1 0 03669534 -limelight n 2 2 @ #m 2 0 14433769 03669665 -limen n 1 2 @ ~ 1 0 05712426 -limenitis n 1 3 @ #m %m 1 0 02276527 -limenitis_archippus n 1 2 @ #m 1 0 02277268 -limenitis_arthemis n 1 2 @ #m 1 0 02276902 -limenitis_astyanax n 1 2 @ #m 1 0 02277094 -limenitis_camilla n 1 2 @ #m 1 0 02276749 -limerick n 2 2 @ #p 2 0 08889657 06380603 -limestone n 1 3 @ ~ %s 1 0 14936226 -limestone_fern n 1 1 @ 1 0 13197507 -limestone_salamander n 1 1 @ 1 0 01638329 -limewater n 1 2 @ #s 1 0 14937093 -limey n 1 1 @ 1 0 09703485 -limicolae n 1 2 @ #m 1 0 02022498 -limicoline_bird n 1 3 @ ~ #m 1 0 02022684 -limit n 6 3 @ ~ + 6 4 05124057 15268857 08593130 08592656 13758556 13758296 -limit_point n 1 1 @ 1 0 13758556 -limitation n 5 4 @ ~ + ; 5 3 05846355 05162455 13758296 15224293 00808182 -limited n 1 1 @ 1 0 03306385 -limited_audit n 1 1 @ 1 0 13411385 -limited_company n 1 2 @ ; 1 0 08185211 -limited_edition n 1 1 @ 1 1 06590601 -limited_liability n 1 1 @ 1 0 13397018 -limited_review n 1 3 @ ~ ; 1 0 13411533 -limited_war n 1 1 @ 1 0 00953280 -limiter n 1 3 @ + ; 1 0 03669886 -limiting n 1 2 @ ~ 1 0 13800801 -limitlessness n 1 2 @ + 1 0 05209324 -limner n 1 2 @ + 1 0 10455619 -limning n 1 2 @ ~ 1 0 03173524 -limnobium n 1 3 @ #m %m 1 0 12613968 -limnocryptes n 1 3 @ #m %m 1 0 02032646 -limnocryptes_minima n 1 2 @ #m 1 0 02032769 -limnodium_spongia n 1 2 @ #m 1 0 12614096 -limnodromus n 1 3 @ #m %m 1 0 02032915 -limnodromus_griseus n 1 1 @ 1 0 02033208 -limnodromus_scolopaceus n 1 1 @ 1 0 02033324 -limnologist n 1 1 @ 1 0 10263146 -limnology n 1 2 @ + 1 0 06120317 -limnos n 1 2 @ #p 1 0 08790748 -limo n 1 2 @ ~ 1 0 03670208 -limonene n 1 1 @ 1 0 14937658 -limonite n 1 1 @ 1 0 14937801 -limonium n 1 3 @ #m %m 1 0 12099220 -limosa n 1 3 @ #m %m 1 0 02034016 -limosa_haemastica n 1 1 @ 1 0 02034295 -limousin n 1 2 @ #p 1 0 08942965 -limousine n 1 2 @ ~ 1 0 03670208 -limp n 1 2 @ + 1 0 00286756 -limpa n 1 1 @ 1 0 07686202 -limper n 1 2 @ + 1 0 10178917 -limpet n 2 3 @ ~ #m 2 0 07792640 01948573 -limpidity n 2 4 @ ~ = + 2 0 04820258 04701943 -limping n 1 2 @ ~ 1 0 14549937 -limpkin n 1 2 @ #m 1 0 02013706 -limpness n 1 2 @ + 1 0 04939046 -limpopo n 1 2 @ #p 1 0 09339512 -limulidae n 1 3 @ #m %m 1 0 01787546 -limulus n 1 3 @ #m %m 1 0 01787693 -limulus_polyphemus n 1 2 @ #m 1 0 01787835 -lin n 1 1 @ 1 0 11132245 -linac n 1 2 @ ~ 1 0 03671914 -linaceae n 1 2 @ %m 1 0 12486254 -linage n 2 1 @ 2 0 13713408 13326975 -linalool n 1 1 @ 1 0 14894029 -linanthus n 1 3 @ #m %m 1 0 12811294 -linanthus_dianthiflorus n 1 2 @ #m 1 0 12811501 -linanthus_dichotomus n 1 2 @ #m 1 0 12811713 -linaria n 1 3 @ #m %m 1 0 12883923 -linaria_canadensis n 1 1 @ 1 0 12884100 -linaria_vulgaris n 1 3 @ ~ #m 1 0 12884260 -linchpin n 2 1 @ 2 0 05694232 03670339 -lincocin n 1 2 @ ; 1 0 03670622 -lincoln n 3 4 @ #p %p + 3 1 11132462 09109882 02413717 -lincoln's_birthday n 1 3 @ #p ; 1 0 15187077 -lincoln_memorial n 1 2 @ #p 1 0 03670456 -lincoln_steffens n 1 1 @ 1 0 11314315 -lincolnshire n 1 2 @ #p 1 0 08884191 -lincomycin n 1 1 @ 1 0 03670622 -lind n 1 1 @ 1 0 11132768 -lindane n 1 2 @ ~ 1 0 14934864 -lindbergh n 1 1 @ 1 0 11132948 -linden n 2 5 @ ~ #m #s %s 2 1 12203331 12202936 -linden_family n 1 3 @ #m %m 1 0 12202352 -linden_tree n 1 4 @ ~ #m %s 1 0 12202936 -lindera n 1 3 @ #m %m 1 0 11705921 -lindera_benzoin n 1 2 @ #m 1 0 11706325 -lindesnes n 1 2 @ #p 1 0 08765771 -lindheimera n 1 3 @ #m %m 1 0 11992340 -lindheimera_texana n 1 2 @ #m 1 0 11992479 -lindsay n 2 1 @ 2 0 11133387 11133197 -lindy n 1 1 @ 1 0 00532567 -lindy_hop n 1 1 @ 1 0 00532567 -line n 30 6 @ ~ #p %p + ; 30 23 08430568 06799897 08430203 13863771 07012534 11474637 08594286 05773049 02934168 08377085 08593262 13905792 03946325 03671272 04402057 01204294 08101937 03670849 00582388 08593924 06260121 03671668 03671473 13713003 13379413 07028373 07012979 06626286 05748786 04008385 -line-at-a-time_printer n 1 2 @ ~ 1 0 03672827 -line-drive_double n 1 1 @ 1 0 00131991 -line-drive_single n 1 1 @ 1 0 00131877 -line-drive_triple n 1 1 @ 1 0 00132105 -line-shooter n 1 1 @ 1 0 09872066 -line-shooting n 1 1 @ 1 0 07229747 -line_backer n 2 2 @ #m 2 0 10263002 00726369 -line_block n 1 1 @ 1 0 03672097 -line_coach n 1 1 @ 1 1 09931989 -line_double n 1 1 @ 1 1 00131991 -line_drawing n 1 2 @ ~ 1 0 03173524 -line_drive n 1 2 @ ; 1 1 00131608 -line_engraving n 2 1 @ 2 0 03672245 03672097 -line_feed n 1 1 @ 1 0 13508183 -line_item n 1 2 @ #p 1 0 06483171 -line_judge n 1 1 @ 1 0 10263259 -line_management n 1 1 @ 1 0 01136375 -line_of_battle n 1 3 @ %p ; 1 0 08594714 -line_of_business n 2 3 @ ~ %p 2 0 03671668 01097119 -line_of_control n 1 2 @ #p 1 0 08515126 -line_of_credit n 1 2 @ ~ 1 0 13379413 -line_of_defence n 2 2 @ ~ 2 0 08048743 03672638 -line_of_defense n 2 2 @ ~ 2 0 08048743 03672638 -line_of_descent n 2 2 @ ~ 2 0 13813042 08101937 -line_of_destiny n 1 1 @ 1 0 13907104 -line_of_duty n 1 1 @ 1 0 01132590 -line_of_fate n 1 1 @ 1 0 13907104 -line_of_fire n 1 1 @ 1 0 08617516 -line_of_flight n 1 1 @ 1 0 08595171 -line_of_force n 1 2 @ ~ 1 0 11457057 -line_of_gab n 1 1 @ 1 0 07013400 -line_of_heart n 1 1 @ 1 0 13906936 -line_of_inquiry n 1 1 @ 1 0 05773776 -line_of_latitude n 1 2 @ ~ 1 0 08595720 -line_of_least_resistance n 1 1 @ 1 0 00416737 -line_of_life n 1 1 @ 1 0 13906767 -line_of_longitude n 1 2 @ ~ 1 0 08598823 -line_of_march n 2 1 @ 2 0 08595299 08430940 -line_of_merchandise n 1 3 @ ~ %p 1 0 03671668 -line_of_poetry n 1 3 @ ~ #p 1 0 06347996 -line_of_products n 1 3 @ ~ %p 1 0 03671668 -line_of_questioning n 1 1 @ 1 0 05773776 -line_of_reasoning n 1 2 @ ~ 1 0 05773049 -line_of_saturn n 1 1 @ 1 0 13907104 -line_of_scrimmage n 1 1 @ 1 0 08650677 -line_of_sight n 1 1 @ 1 0 08595398 -line_of_succession n 1 1 @ 1 0 08431048 -line_of_thought n 1 1 @ 1 0 05773407 -line_of_verse n 1 3 @ ~ #p 1 0 06347996 -line_of_vision n 1 1 @ 1 1 08595398 -line_of_work n 1 2 @ ~ 1 1 00582388 -line_officer n 1 1 @ 1 0 10263790 -line_organisation n 1 1 @ 1 0 08048948 -line_organization n 1 1 @ 1 0 08048948 -line_personnel n 1 1 @ 1 0 08440382 -line_printer n 1 2 @ ~ 1 0 03672827 -line_roulette n 1 2 @ ~ 1 0 13908580 -line_score n 1 1 @ 1 0 06468523 -line_single n 1 1 @ 1 0 00131877 -line_spectrum n 1 1 @ 1 0 11475476 -line_squall n 1 1 @ 1 0 11514171 -line_storm n 1 1 @ 1 0 11501864 -line_triple n 1 1 @ 1 0 00132105 -line_worker n 1 1 @ 1 0 10264120 -lineage n 5 3 @ ~ = 5 1 08101937 13813042 13713408 13326975 04922787 -lineament n 2 3 @ ~ #p 2 0 05849284 05601758 -linear_a n 1 1 @ 1 0 06361934 -linear_accelerator n 1 2 @ ~ 1 0 03671914 -linear_algebra n 1 2 @ ; 1 1 06013126 -linear_b n 1 1 @ 1 0 06362059 -linear_equation n 1 1 @ 1 0 06670137 -linear_leaf n 1 1 @ 1 0 13158512 -linear_measure n 1 2 @ ~ 1 0 13603305 -linear_operator n 1 1 @ 1 1 13786595 -linear_perspective n 1 2 @ %p 1 0 04676308 -linear_programming n 1 1 @ 1 0 06018267 -linear_regression n 1 3 @ %p ; 1 0 06028904 -linear_unit n 1 2 @ ~ 1 0 13603305 -linearity n 1 2 @ + 1 0 05063218 -lineation n 2 3 @ ~ + 2 0 08612786 00263813 -linebacker n 2 2 @ #m 2 1 10263002 00726369 -linebacker_blitzing n 1 2 @ ; 1 0 00976085 -linecut n 2 1 @ 2 0 03672245 03672097 -lined_snake n 1 2 @ #m 1 1 01736032 -lineman n 4 4 @ ~ #m ; 4 1 10263411 10263580 10049363 00726100 -linemen n 1 3 @ #m %m 1 0 08430054 -linen n 3 3 @ ~ %s 3 2 03672521 14934998 03672352 -linen_paper n 1 1 @ 1 0 14934998 -linendraper n 1 2 @ ; 1 0 10263684 -liner n 4 6 @ ~ #p %p + ; 4 1 00131608 03673767 03673270 03673027 -liner_train n 1 1 @ 1 0 03394272 -linesman n 2 2 @ ~ 2 0 10263931 10049363 -lineup n 2 4 @ %p + ; 2 1 06486161 08431205 -ling n 5 2 @ #m 5 0 12348635 12233529 02525120 02524928 02523427 -ling-pao n 1 2 @ #m 1 0 09533790 -ling_ko n 1 1 @ 1 0 12348635 -lingam n 1 1 @ 1 0 06808408 -lingberry n 1 2 @ %p 1 0 12249542 -lingcod n 2 4 @ #m #p %p 2 0 07784991 02553028 -lingenberry n 1 2 @ %p 1 0 12249542 -lingerer n 1 2 @ + 1 0 10270232 -lingerie n 1 2 @ ~ 1 0 03673450 -lingering n 1 1 @ 1 0 01068423 -lingo n 1 3 @ ~ - 1 0 07157273 -lingonberry n 2 3 @ #p %p 2 0 12249542 07744057 -lingua n 1 4 @ #p %p + 1 0 05301072 -lingua_franca n 1 1 @ 1 0 06906116 -lingual n 1 1 @ 1 0 07119521 -lingual_artery n 1 2 @ #p 1 0 05350256 -lingual_vein n 1 2 @ #p 1 0 05372924 -lingualumina n 1 1 @ 1 0 06896961 -linguica n 1 1 @ 1 0 07678065 -linguine n 1 1 @ 1 0 07700539 -linguini n 1 1 @ 1 0 07700539 -linguist n 2 3 @ ~ + 2 1 10264437 10264219 -linguistic_atlas n 1 1 @ 1 0 06427240 -linguistic_communication n 1 3 @ ~ - 1 0 06282651 -linguistic_competence n 1 2 @ ; 1 0 05153897 -linguistic_context n 1 1 @ 1 0 06284898 -linguistic_geography n 1 1 @ 1 0 06168703 -linguistic_performance n 1 2 @ ; 1 0 00098051 -linguistic_process n 2 3 @ ~ ; 2 0 13508333 05808557 -linguistic_profiling n 1 1 @ 1 0 06886655 -linguistic_relation n 1 2 @ ~ 1 0 13797142 -linguistic_rule n 1 3 @ ~ ; 1 0 07259772 -linguistic_scientist n 1 2 @ ~ 1 0 10264437 -linguistic_string n 1 2 @ ~ 1 0 07013736 -linguistic_unit n 1 3 @ ~ #p 1 1 06284225 -linguistic_universal n 1 2 @ ; 1 0 07259984 -linguistics n 2 5 @ ~ #p + - 2 1 06172789 06171040 -linguistics_department n 1 1 @ 1 0 08116879 -lingvo_kosmopolita n 1 1 @ 1 0 06897042 -liniment n 1 1 @ 1 0 03673594 -linin n 1 2 @ #p 1 0 05436548 -lining n 4 4 @ ~ #p + 4 0 03673767 03673270 00827379 00827240 -link n 9 5 @ ~ #p + ; 9 2 13792692 03673971 14419164 13870805 13654777 06586471 06261260 04042795 03674270 -link-attached_station n 1 1 @ 1 0 04075291 -link-attached_terminal n 1 1 @ 1 0 04075291 -link_trainer n 1 2 @ ; 1 0 03674731 -linkage n 4 4 @ ~ + ; 4 0 13792579 04923024 03674440 00148978 -linkage_editor n 1 1 @ 1 0 06576376 -linkage_group n 1 1 @ 1 0 05439100 -linkboy n 1 1 @ 1 0 10264928 -linked_genes n 1 1 @ 1 0 05439100 -linking_verb n 1 1 @ 1 0 06472824 -linkman n 1 1 @ 1 0 10264928 -links n 1 2 @ ; 1 1 03674591 -links_course n 1 4 @ ~ %p ; 1 0 03446528 -linksman n 1 2 @ ~ 1 0 10136959 -linkup n 1 3 @ ~ + 1 0 03673971 -linnaea n 1 3 @ #m %m 1 0 12673178 -linnaea_borealis n 1 3 @ ~ #m 1 0 12673328 -linnaea_borealis_americana n 1 2 @ #m 1 0 12673588 -linnaeus n 1 2 @ + 1 0 11133551 -linnet n 2 2 @ #m 2 0 01532829 01531344 -lino n 1 1 @ 1 0 14938389 -linocut n 2 1 @ 2 0 03674946 03674842 -linoleic_acid n 1 2 @ #s 1 0 14937943 -linolenic_acid n 1 2 @ #s 1 0 14938199 -linoleum n 1 1 @ 1 1 14938389 -linoleum_cutter n 1 1 @ 1 0 03675076 -linoleum_knife n 1 1 @ 1 0 03675076 -linolic_acid n 1 2 @ #s 1 0 14937943 -linosyris_vulgaris n 1 1 @ 1 0 11934239 -linotype n 1 2 @ ; 1 0 03675235 -linotype_machine n 1 2 @ ; 1 0 03675235 -linseed n 1 1 @ 1 0 15086247 -linseed_oil n 1 2 @ %s 1 0 15086352 -linsey-woolsey n 1 1 @ 1 0 03675445 -linstock n 1 1 @ 1 0 03675558 -lint n 2 2 @ %s 2 1 14938467 03675780 -lintel n 1 1 @ 1 0 03503233 -lintwhite n 1 2 @ #m 1 0 01531344 -linum n 1 3 @ #m %m 1 0 12486397 -linuron n 1 1 @ 1 0 14938578 -linus_carl_pauling n 1 1 @ 1 0 11226933 -linus_pauling n 1 1 @ 1 0 11226933 -linux n 1 2 @ ; 1 0 06568855 -linz n 1 2 @ #p 1 0 08846739 -liomys n 1 3 @ #m %m 1 0 02349730 -liomys_irroratus n 1 2 @ #m 1 0 02349847 -lion n 4 6 @ ~ #m %p + ; 4 1 02129165 10265070 09752795 08686821 -lion's-ear n 1 2 @ #m 1 0 12851094 -lion's_beard n 1 1 @ 1 0 11737752 -lion's_foot n 1 2 @ #m 1 0 11997409 -lion-hunter n 2 1 @ 2 0 10265281 10265200 -lion-jaw_forceps n 1 2 @ ; 1 0 03675907 -lion_cub n 1 1 @ 1 0 01322898 -lion_marmoset n 1 3 @ ~ #m 1 0 02491107 -lion_monkey n 1 3 @ ~ #m 1 0 02491107 -lionel_barrymore n 1 1 @ 1 0 10835709 -lionel_hampton n 1 1 @ 1 0 11027127 -lionel_trilling n 1 1 @ 1 0 11349092 -lioness n 1 1 @ 1 0 02129463 -lionet n 1 1 @ 1 0 02129530 -lionfish n 1 2 @ #m 1 0 02643566 -lions_club n 1 1 @ 1 0 08236027 -liopelma n 1 3 @ #m %m 1 0 01645278 -liopelma_hamiltoni n 1 2 @ #m 1 0 01645466 -liopelmidae n 1 3 @ #m %m 1 0 01645093 -liothyronine n 1 1 @ 1 0 05413873 -lip n 5 5 @ ~ #p %p ; 5 1 05305806 11691857 06721949 02902250 01941538 -lip-gloss n 1 1 @ 1 0 03676087 -lip_balm n 1 1 @ 1 0 03676006 -lip_fern n 1 3 @ ~ #m 1 0 13208705 -lip_reader n 1 1 @ 1 0 10265390 -lip_rouge n 1 1 @ 1 0 03676483 -lip_service n 1 2 @ ~ 1 0 06760076 -lip_sync n 1 1 @ 1 0 00910533 -lip_synch n 1 1 @ 1 0 00910533 -lip_synchronisation n 1 1 @ 1 0 00910533 -lip_synchronization n 1 1 @ 1 0 00910533 -lipaemia n 1 1 @ 1 0 14193925 -liparidae n 1 3 @ #m %m 1 0 02646985 -liparididae n 1 3 @ #m %m 1 0 02646985 -liparis n 2 3 @ #m %m 2 0 12070381 02647144 -liparis_liparis n 1 2 @ #m 1 0 02647294 -liparis_loeselii n 1 2 @ #m 1 0 12070712 -lipase n 1 2 @ #s 1 0 14938687 -lipchitz n 1 1 @ 1 0 11133778 -lipectomy n 1 2 @ ~ 1 0 00682080 -lipemia n 1 1 @ 1 0 14193925 -lipfern n 1 3 @ ~ #m 1 0 13208705 -lipid n 1 2 @ ~ 1 0 14938907 -lipid-lowering_medication n 1 2 @ ~ 1 0 03676175 -lipid-lowering_medicine n 1 2 @ ~ 1 0 03676175 -lipid_granulomatosis n 1 1 @ 1 0 14233717 -lipidaemia n 1 1 @ 1 0 14193925 -lipide n 1 2 @ ~ 1 0 14938907 -lipidemia n 1 1 @ 1 0 14193925 -lipidosis n 1 2 @ ~ 1 0 14193711 -lipitor n 1 2 @ ; 1 0 02754421 -lipizzan n 1 1 @ 1 0 02380052 -lipmann n 1 1 @ 1 0 11133938 -lipo-hepin n 1 1 @ 1 0 03514974 -lipo-lutin n 1 3 @ #s ; 1 0 14746048 -lipochondrodystrophy n 1 1 @ 1 0 14157163 -lipogram n 1 1 @ 1 0 07014187 -lipoid n 1 2 @ ~ 1 0 14938907 -lipoid_granulomatosis n 1 1 @ 1 0 14233717 -lipoidaemia n 1 1 @ 1 0 14193925 -lipoidemia n 1 1 @ 1 0 14193925 -lipoma n 1 1 @ 1 0 14239322 -lipomatosis n 1 1 @ 1 0 14115799 -lipoprotein n 1 2 @ ~ 1 0 14939230 -liposarcoma n 1 1 @ 1 0 14241241 -liposcelis n 1 3 @ #m %m 1 0 02261286 -liposcelis_divinatorius n 1 3 @ ~ #m 1 0 02261419 -liposomal_delivery_vector n 1 1 @ 1 0 09339668 -liposome n 1 1 @ 1 0 05520292 -liposuction n 1 1 @ 1 0 00682243 -lipotyphla n 1 2 @ #m 1 0 01888821 -lippi n 2 1 @ 2 0 11134339 11134196 -lippizan n 1 1 @ 1 0 02380052 -lippizaner n 1 1 @ 1 0 02380052 -lippmann n 2 1 @ 2 0 11134620 11134466 -lipreading n 1 2 @ + 1 0 00882554 -lipscomb n 1 1 @ 1 0 11134730 -lipstick n 1 2 @ + 1 1 03676483 -lipstick_plant n 1 1 @ 1 0 12830789 -liquaemin n 1 1 @ 1 0 03514974 -liquefaction n 1 3 @ ~ + 1 0 13508651 -liquefied_petroleum_gas n 1 1 @ 1 0 14878483 -liqueur n 1 2 @ ~ 1 0 07907943 -liqueur_glass n 1 1 @ 1 0 03676623 -liquid n 4 3 @ ~ + 4 3 14940386 14480420 14940100 07119643 -liquid_air n 1 1 @ 1 1 14940856 -liquid_assets n 1 3 @ #m ; 1 0 13333047 -liquid_bleach n 1 2 @ %s 1 0 14940952 -liquid_body_substance n 1 2 @ ~ 1 0 05397468 -liquid_crystal n 1 1 @ 1 0 14941087 -liquid_crystal_display n 1 2 @ ~ 1 0 03676759 -liquid_detergent n 1 1 @ 1 1 03677026 -liquid_diet n 1 2 @ ~ 1 0 07563800 -liquid_ecstasy n 1 1 @ 1 0 04253751 -liquid_measure n 1 2 @ ~ 1 0 13614764 -liquid_metal_reactor n 1 1 @ 1 0 03677115 -liquid_nitrogen n 1 1 @ 1 1 14940750 -liquid_oxygen n 1 1 @ 1 0 14648526 -liquid_pred n 1 2 @ ; 1 0 14753414 -liquid_soap n 1 1 @ 1 0 03677231 -liquid_state n 1 1 @ 1 0 14480420 -liquid_unit n 1 2 @ ~ 1 0 13614764 -liquidambar n 3 5 @ ~ #m #s %m 3 0 12316853 12316444 12316300 -liquidambar_styraciflua n 1 3 @ #m %s 1 0 12316572 -liquidation n 3 3 @ ~ + 3 2 00228535 01245061 00223720 -liquidator n 2 4 @ ~ + ; 2 0 10338707 10265532 -liquidiser n 1 1 @ 1 0 02850732 -liquidity n 3 2 @ + 3 0 14480420 04937043 04737430 -liquidity_crisis n 1 1 @ 1 0 14488912 -liquidizer n 1 2 @ + 1 0 02850732 -liquidness n 2 2 @ + 2 0 14480420 04937043 -liquor n 3 2 @ ~ 3 2 07901587 14941230 07584727 -liquor_licence n 1 2 @ ~ 1 0 06551070 -liquor_license n 1 2 @ ~ 1 0 06551070 -liquor_store n 1 1 @ 1 0 03871371 -liquorice n 2 3 @ #m %p 2 0 12532886 07607361 -lir n 1 2 @ ; 1 0 09509770 -lira n 3 2 @ %p 3 0 13695189 13687160 13686376 -liriodendron n 1 3 @ #m %m 1 0 11712153 -liriodendron_tulipifera n 1 3 @ #m %s 1 0 11712282 -liriope n 1 3 @ #m %m 1 0 12473011 -liriope_muscari n 1 2 @ #m 1 0 12473171 -lis_pendens n 1 2 @ ; 1 0 01184720 -lisboa n 1 3 @ #p %p 1 0 08986066 -lisbon n 1 3 @ #p %p 1 1 08986066 -lise_meitner n 1 1 @ 1 0 11171614 -lisinopril n 1 1 @ 1 0 03677308 -lisle n 2 1 @ 2 0 03677682 03677540 -lisle_thread n 1 1 @ 1 0 03677540 -lisp n 2 2 @ + 2 0 14402763 06901936 -lisp_compiler n 1 1 @ 1 0 06574132 -lisp_program n 1 1 @ 1 0 06902109 -lisper n 1 2 @ + 1 0 10265801 -lissomeness n 1 2 @ + 1 0 05004091 -list n 2 4 @ ~ %p + 2 2 06481320 05068080 -list-processing_language n 1 1 @ 1 0 06901936 -list_price n 1 1 @ 1 0 13305070 -list_processing n 1 1 @ 1 0 13508830 -list_system n 1 1 @ 1 0 05904616 -listed_security n 1 2 ! @ 1 0 13420900 -listener n 1 4 @ ~ #m + 1 1 10165448 -listening n 1 3 @ ~ + 1 0 00882159 -listening_watch n 1 1 @ 1 0 00881257 -lister n 3 2 @ + 3 0 11134895 10265891 03677766 -lister_plough n 1 1 @ 1 0 03677766 -lister_plow n 1 1 @ 1 0 03677766 -listera n 1 3 @ #m %m 1 0 12070950 -listera_convallarioides n 1 2 @ #m 1 0 12071259 -listera_cordata n 1 2 @ #m 1 0 12071477 -listera_ovata n 1 2 @ #m 1 0 12071744 -listeria n 1 3 @ ~ #m 1 0 01367083 -listeria_meningitis n 1 1 @ 1 0 14137066 -listeria_monocytogenes n 1 1 @ 1 0 01367208 -listeriosis n 1 1 @ 1 0 14137066 -listing n 2 4 @ ~ %p + 2 0 06481320 01011166 -listlessness n 2 2 @ + 2 0 07484109 04636881 -liston n 1 1 @ 1 0 11135044 -lisu n 1 1 @ 1 0 06932734 -liszt n 1 1 @ 1 0 11135236 -lit n 1 2 @ ; 1 0 06169488 -lit_crit n 1 1 @ 1 0 06169806 -litany n 2 2 @ #p 2 0 07240763 06457442 -litas n 1 1 @ 1 0 13701615 -litchee n 1 2 @ #p 1 0 07766173 -litchi n 2 4 @ #m #p %p 2 0 12744387 07766173 -litchi_chinensis n 1 3 @ #m %p 1 0 12744387 -litchi_nut n 1 2 @ #p 1 0 07766173 -litchi_tree n 1 3 @ #m %p 1 0 12744387 -liter n 1 3 @ #p %p 1 1 13624190 -literacy n 1 3 ! @ = 1 0 05638486 -literal n 1 1 @ 1 0 06769670 -literal_error n 1 1 @ 1 0 06769670 -literal_interpretation n 1 2 @ ~ 1 0 07173258 -literalism n 2 1 @ 2 1 05964322 06199893 -literalness n 1 2 @ + 1 1 04760611 -literary_agent n 1 1 @ 1 0 09778144 -literary_argument n 1 1 @ 1 0 06467680 -literary_composition n 1 2 @ ~ 1 0 06364329 -literary_critic n 1 2 @ ~ 1 0 10266016 -literary_criticism n 2 2 @ ~ 2 0 06374587 06169806 -literary_genre n 1 2 @ ~ 1 0 07092158 -literary_hack n 1 2 @ #m 1 0 10154740 -literary_pirate n 1 1 @ 1 0 10437262 -literary_review n 1 1 @ 1 0 06597930 -literary_study n 1 2 @ ~ 1 1 06169285 -literary_work n 1 2 @ ~ 1 1 06364329 -literate n 1 2 @ ~ 1 0 10266328 -literate_person n 1 2 @ ~ 1 0 10266328 -literati n 1 1 @ 1 0 08387603 -literature n 4 5 @ ~ + ; - 4 4 06364641 06169488 06365102 00610592 -lithane n 1 1 @ 1 0 14941884 -litheness n 1 2 @ + 1 0 05004091 -lithia_water n 1 1 @ 1 0 14941787 -lithiasis n 1 2 @ ~ 1 0 14115914 -lithium n 1 2 @ #s 1 0 14643793 -lithium_carbonate n 1 1 @ 1 0 14941884 -lithocarpus n 1 3 @ #m %m 1 0 12265266 -lithocarpus_densiflorus n 1 3 @ ~ #m 1 0 12265394 -lithocarpus_glaber n 1 1 @ 1 0 12265600 -lithocarpus_glabra n 1 1 @ 1 0 12265600 -lithodidae n 1 3 @ #m %m 1 0 01980993 -lithoglyptics n 1 1 @ 1 0 03442487 -lithograph n 2 3 @ ~ + 2 0 03678220 03677976 -lithograph_machine n 1 1 @ 1 0 03677976 -lithographer n 1 3 @ ~ + 1 0 10266486 -lithography n 2 3 @ ~ + 2 0 06680002 00939338 -lithology n 1 1 @ 1 0 06121375 -lithomancer n 1 2 @ + 1 0 10266744 -lithomancy n 1 2 @ + 1 0 05777298 -lithonate n 1 1 @ 1 0 14941884 -lithophragma n 1 3 @ #m %m 1 0 12799580 -lithophragma_affine n 1 2 @ #m 1 0 12799776 -lithophragma_affinis n 1 2 @ #m 1 0 12799776 -lithophragma_parviflorum n 1 2 @ #m 1 0 12800049 -lithophyte n 1 2 @ + 1 0 13123841 -lithophytic_plant n 1 1 @ 1 0 13123841 -lithops n 1 2 @ #m 1 0 11820463 -lithospermum n 1 3 @ #m %m 1 0 12820434 -lithospermum_canescens n 1 2 @ #m 1 0 12821048 -lithospermum_caroliniense n 1 2 @ #m 1 0 12820853 -lithospermum_officinale n 1 2 @ #m 1 0 12820669 -lithosphere n 1 3 @ #p %p 1 0 09339810 -lithotomy n 1 2 @ ~ 1 0 00683358 -lithotomy_position n 1 1 @ 1 0 05080753 -lithuania n 1 4 @ %m %p + 1 0 09013830 -lithuanian n 2 3 @ #m + 2 0 09707289 06946199 -lithuanian_monetary_unit n 1 2 @ ~ 1 0 13701482 -lithuresis n 1 1 @ 1 0 13508950 -litigant n 1 4 @ ~ + ; 1 1 10266848 -litigation n 1 4 @ ~ + ; 1 1 01186810 -litigator n 1 4 @ ~ + ; 1 0 10266848 -litigiousness n 1 2 @ + 1 0 04644306 -litmus n 1 2 @ #s 1 0 14941407 -litmus_paper n 1 2 @ %s 1 0 14941642 -litmus_test n 2 2 @ #s 2 0 14941407 07198437 -litocranius n 1 3 @ #m %m 1 0 02420675 -litocranius_walleri n 1 2 @ #m 1 0 02420828 -litoral n 1 1 @ 1 0 08596076 -litotes n 1 1 @ 1 0 07104292 -litre n 1 3 @ #p %p 1 0 13624190 -litter n 4 3 @ ~ + 4 2 08400331 14858292 03678362 02820432 -litter-basket n 1 1 @ 1 0 03678558 -litter-bearer n 1 1 @ 1 0 10663549 -litter_basket n 1 1 @ 1 0 03678558 -litter_lout n 1 1 @ 1 0 10267166 -litterateur n 1 2 @ ~ 1 0 10064405 -litterbin n 1 1 @ 1 0 03678558 -litterbug n 1 1 @ 1 0 10267166 -litterer n 1 2 @ + 1 0 10267166 -little n 1 1 @ 1 1 13762717 -little-head_snakeweed n 1 1 @ 1 0 11974373 -little-leaf_fig n 1 1 @ 1 0 12403276 -little-league_team n 1 3 @ #m %m 1 0 08232160 -little_auk n 1 2 @ #m 1 0 02046171 -little_barley n 1 1 @ 1 0 12124172 -little_bear n 1 3 @ %m %p 1 0 09340024 -little_bighorn n 2 3 @ #p ; 2 0 09340203 01284444 -little_bighorn_river n 1 2 @ #p 1 0 09340203 -little_black_ant n 1 2 @ #m 1 0 02220225 -little_blue_heron n 1 2 @ #m 1 0 02009229 -little_brother n 1 1 @ 1 0 10267311 -little_brown_bat n 1 2 @ #m 1 0 02146700 -little_brown_myotis n 1 2 @ #m 1 0 02146700 -little_chief_hare n 1 2 @ #m 1 0 02328820 -little_club_moss n 1 3 @ ~ #m 1 0 13224673 -little_clubmoss n 1 1 @ 1 0 13223090 -little_corporal n 1 1 @ 1 0 11200276 -little_dictionary n 1 1 @ 1 0 06419912 -little_dipper n 1 3 @ #p %m 1 0 09340452 -little_dog n 1 2 @ %m 1 0 09232989 -little_ebony_spleenwort n 1 1 @ 1 0 13181406 -little_egret n 1 2 @ #m 1 0 02009508 -little_finger n 1 2 @ %p 1 1 05567727 -little_giant n 1 1 @ 1 0 10941206 -little_girl n 1 2 @ ~ 1 0 10084295 -little_golden_zinnia n 1 1 @ 1 0 12034594 -little_grebe n 1 1 @ 1 0 02050809 -little_hand n 1 1 @ 1 0 03544238 -little_horn n 1 2 @ #p 1 0 09340203 -little_joe n 1 1 @ 1 0 13744304 -little_john n 1 1 @ 1 0 10267437 -little_league n 1 2 @ %m 1 0 08231999 -little_leaguer n 1 2 @ #m 1 0 10267561 -little_lord_fauntleroy n 1 1 @ 1 0 10082299 -little_missouri n 1 2 @ #p 1 0 09340644 -little_missouri_river n 1 2 @ #p 1 0 09340644 -little_mo_connolly n 1 1 @ 1 0 10907236 -little_office n 1 2 @ ; 1 0 01033903 -little_owl n 1 2 @ #m 1 0 01622120 -little_phoebe n 1 1 @ 1 0 13744521 -little_potato n 1 1 @ 1 0 14281549 -little_red_riding_hood n 1 1 @ 1 0 10267719 -little_rhody n 1 4 @ #p %p - 1 0 09137032 -little_rock n 1 2 @ #p 1 1 09060280 -little_sioux_river n 1 2 @ #p 1 0 09340935 -little_sister n 1 1 @ 1 1 10267865 -little_skate n 1 2 @ #m 1 0 01501777 -little_slam n 1 1 @ 1 0 07474911 -little_sparrow n 1 1 @ 1 0 11234152 -little_spotted_skunk n 1 2 @ #m 1 0 02447021 -little_terror n 1 1 @ 1 0 10702483 -little_theater n 1 1 @ 1 0 03678729 -little_theatre n 1 1 @ 1 0 03678729 -little_toe n 1 2 @ #p 1 0 05577969 -little_wabash n 1 2 @ #p 1 0 09341145 -little_wabash_river n 1 2 @ #p 1 0 09341145 -littleneck n 2 1 @ 2 0 07787108 01958346 -littleneck_clam n 2 1 @ 2 0 07787108 01958346 -littleness n 3 4 ! @ ~ + 3 0 05106633 05031367 04834073 -littoral n 1 1 @ 1 0 08596076 -littoral_zone n 1 1 @ 1 0 08596076 -littorina n 1 3 @ #m %m 1 0 01948284 -littorinidae n 1 3 @ #m %m 1 0 01948154 -littre n 1 1 @ 1 0 11135371 -liturgics n 1 1 @ 1 0 06183652 -liturgiology n 1 1 @ 1 0 06183652 -liturgist n 1 2 @ + 1 0 10267941 -liturgy n 2 4 @ ~ %p + 2 0 01035853 01033184 -live-and-die n 1 2 @ #m 1 0 11755319 -live-bearer n 1 3 @ ~ #m 1 0 01448951 -live-forever n 1 2 @ #m 1 0 12786464 -live_axle n 1 2 @ #p 1 0 03678879 -live_birth n 1 3 ! @ ~ 1 0 07320734 -live_body n 1 2 @ ~ 1 0 05218788 -live_load n 1 1 @ 1 0 03679037 -live_oak n 1 2 @ ~ 1 1 12269241 -live_steam n 1 1 @ 1 0 15055342 -live_wire n 1 2 @ ~ 1 0 10040945 -liveborn_infant n 1 2 ! @ 1 0 10268058 -livedo n 1 1 @ 1 0 14229788 -livelihood n 1 2 @ ~ 1 1 13365286 -liveliness n 2 4 @ ~ = + 2 1 00552436 04632157 -livelong n 1 2 @ #m 1 0 12786464 -liveness n 1 4 @ ~ = + 1 0 05005447 -liver n 4 5 @ ~ #p %p + 4 2 05385534 07652052 10268299 10268180 -liver-spotted_dalmatian n 1 1 @ 1 0 02110532 -liver_cancer n 1 1 @ 1 0 14131651 -liver_chestnut n 1 1 @ 1 0 02388832 -liver_disease n 1 2 @ ~ 1 0 14116321 -liver_fluke n 1 2 @ #m 1 1 01926379 -liver_pudding n 1 1 @ 1 0 07677360 -liver_rot n 1 1 @ 1 0 14265006 -liver_sausage n 1 1 @ 1 0 07677360 -liver_spot n 1 2 @ #p 1 0 05245387 -liverleaf n 1 2 @ #m 1 0 11735053 -livermore n 1 1 @ 1 0 11135488 -liverpool n 1 4 @ #p %m + 1 1 08877382 -liverpudlian n 1 2 @ #m 1 0 09704509 -liverwort n 1 3 @ ~ #m 1 0 11542640 -liverwurst n 1 1 @ 1 0 07677360 -livery n 3 2 @ ~ 3 0 03679174 01108753 00658946 -livery_company n 1 1 @ 1 0 08186898 -livery_driver n 1 1 @ 1 0 10693646 -livery_stable n 1 1 @ 1 1 03679274 -liveryman n 1 1 @ 1 0 10268422 -livestock n 1 2 @ - 1 1 01887474 -lividity n 2 2 @ + 2 0 07517292 04977561 -lividness n 1 2 @ + 1 0 04977561 -living n 4 5 ! @ ~ = + 4 4 05810561 07945818 13961642 13365286 -living-room n 1 3 @ ~ #p 1 0 03679712 -living_accommodations n 1 2 @ ~ 1 0 03546340 -living_arrangement n 1 1 @ 1 1 05730046 -living_dead n 1 1 @ 1 0 10805638 -living_death n 1 1 @ 1 0 14448825 -living_granite n 1 2 @ #m 1 0 11821929 -living_quarters n 1 3 @ ~ ; 1 0 03679384 -living_rock n 2 2 @ #m 2 0 11843896 11821929 -living_room n 1 3 @ ~ #p 1 1 03679712 -living_space n 1 1 @ 1 1 13778530 -living_stone n 1 2 @ #m 1 0 11820463 -living_substance n 1 2 @ ~ 1 0 05432736 -living_thing n 1 3 @ ~ - 1 1 00004258 -living_trust n 1 1 @ 1 0 13362918 -living_wage n 1 1 @ 1 0 13280251 -living_will n 1 2 @ ; 1 0 06544841 -livingroom_set n 1 1 @ 1 0 08007897 -livingroom_suite n 1 1 @ 1 0 08007897 -livingston n 1 1 @ 1 0 11135610 -livingstone n 1 1 @ 1 0 11135797 -livingstone_daisy n 1 2 @ #m 1 0 11819912 -livistona n 1 3 @ #m %m 1 0 12591195 -livistona_australis n 1 2 @ #m 1 0 12591351 -livonia n 1 2 @ #p 1 0 09012898 -livonian n 2 1 @ 2 0 09707061 06957768 -livy n 1 1 @ 1 0 11135991 -liza n 1 2 @ #m 1 0 02602059 -lizard n 2 2 @ ~ 2 1 01674464 10274474 -lizard's-tail n 1 2 @ #m 1 0 13151975 -lizard's-tail_family n 1 3 @ #m %m 1 0 13151568 -lizard_orchid n 1 2 @ #m 1 0 12069679 -lizardfish n 1 2 @ #m 1 0 02543565 -ljubljana n 1 2 @ #p 1 0 08818736 -llama n 1 2 @ ~ 1 0 02437616 -llano n 1 2 @ ; 1 0 09341319 -llano_estacado n 1 2 @ #p 1 0 09341465 -llb n 1 1 @ 1 0 06704898 -lld n 1 1 @ 1 0 06705698 -llew_llaw_gyffes n 1 2 @ ; 1 0 09509911 -llewelyn_powys n 1 1 @ 1 0 11245902 -llm n 1 1 @ 1 0 06704990 -lloyd n 1 1 @ 1 0 11136214 -lloyd_webber n 1 1 @ 1 0 11136405 -llud n 1 2 @ ; 1 0 09510073 -llullaillaco n 1 2 @ #p 1 0 09341673 -llyr n 1 2 @ ; 1 0 09510164 -lm n 1 1 @ 1 0 13641299 -lo/ovral n 1 2 @ %s 1 0 03689840 -loach n 1 2 @ #m 1 0 01438581 -load n 9 5 @ ~ #p + ; 9 6 03679986 13772468 02964389 13772313 11449561 05832745 11446067 04551375 03680248 -load-shedding n 1 1 @ 1 0 00807768 -load_factor n 1 2 @ ; 1 0 13822569 -load_line n 1 1 @ 1 0 08596336 -loader n 2 2 @ + 2 0 10655169 10268505 -loading n 5 4 ! @ ~ + 5 2 03679986 13772468 13826426 02964389 00713952 -loading_area n 1 1 @ 1 0 08596214 -loading_dock n 1 1 @ 1 0 03217333 -loading_zone n 1 1 @ 1 0 08596214 -loads n 1 1 @ 1 0 13777509 -loadstar n 2 2 @ ~ 2 0 09342563 05937417 -loadstone n 1 2 @ %s 1 0 14942411 -loaf n 2 3 @ ~ %p 2 1 07683786 07649582 -loaf_of_bread n 1 3 @ ~ %p 1 1 07683786 -loaf_sugar n 1 1 @ 1 0 07595499 -loafer n 2 4 @ ~ + ; 2 0 10197967 03680355 -loafing n 1 2 @ ~ 1 0 01065441 -loam n 1 3 @ ~ + 1 0 14942223 -loan n 2 4 @ ~ %p + 2 1 13398953 06293460 -loan-blend n 1 2 @ ; 1 0 06293229 -loan_application n 1 2 @ ~ 1 0 06513043 -loan_approval n 1 1 @ 1 0 01141366 -loan_collection n 1 1 @ 1 0 07955841 -loan_office n 2 1 @ 2 0 03901974 03680629 -loan_participation n 1 1 @ 1 0 13399570 -loan_shark n 1 1 @ 1 0 10742384 -loan_translation n 1 1 @ 1 0 06301445 -loanblend n 1 2 @ ; 1 0 06293229 -loaner n 2 2 @ ~ 2 0 10254392 03680512 -loaning n 1 2 @ ~ 1 0 01093666 -loanword n 1 2 @ ~ 1 0 06293460 -loasa n 1 2 @ #m 1 0 12035213 -loasa_family n 1 3 @ #m %m 1 0 12034828 -loasaceae n 1 3 @ #m %m 1 0 12034828 -loather n 1 2 @ + 1 0 09754780 -loathing n 1 2 @ + 1 0 07503430 -loathsomeness n 1 2 @ + 1 0 04781349 -lob n 2 2 @ + 2 0 00569361 00120804 -lobachevsky n 1 1 @ 1 0 11136622 -lobar_pneumonia n 1 2 @ ~ 1 0 14148646 -lobata n 1 2 @ #m 1 0 01921216 -lobate_foot n 1 1 @ 1 0 02155313 -lobby n 3 4 @ ~ #p + 3 1 02715513 08375912 08375526 -lobbying_expense n 1 1 @ 1 0 13276604 -lobbyism n 1 1 @ 1 0 00415333 -lobbyist n 1 2 @ + 1 0 10268629 -lobe n 4 5 @ ~ #p + ; 4 1 05493303 13161506 07005523 03680734 -lobe-finned_fish n 1 3 @ ~ #m 1 0 02515214 -lobe_of_the_lung n 1 2 @ #p 1 0 05387959 -lobectomy n 1 1 @ 1 0 00683590 -lobed_leaf n 1 1 @ 1 0 13161412 -lobed_spleenwort n 1 1 @ 1 0 13182799 -lobefin n 1 3 @ ~ #m 1 0 02515214 -lobelia n 1 3 @ ~ #m 1 0 12168565 -lobelia_cardinalis n 1 1 @ 1 0 12168750 -lobelia_dortmanna n 1 1 @ 1 0 12169099 -lobelia_family n 1 2 @ #m 1 0 12168126 -lobelia_inflata n 1 1 @ 1 0 12168898 -lobelia_siphilitica n 1 1 @ 1 0 12169320 -lobeliaceae n 1 3 @ #m + 1 0 12168126 -lobipes n 1 3 @ #m %m 1 0 02038010 -lobipes_lobatus n 1 2 @ #m 1 0 02038141 -lobito n 1 2 @ #p 1 0 08708609 -loblolly n 1 1 @ 1 1 07875086 -loblolly_pine n 1 1 @ 1 0 11615387 -lobotes n 1 3 @ #m %m 1 0 02636035 -lobotes_pacificus n 1 1 @ 1 0 02636550 -lobotes_surinamensis n 1 1 @ 1 0 02636405 -lobotidae n 1 3 @ #m %m 1 0 02635911 -lobotomy n 1 2 @ ~ 1 0 00684128 -lobscouse n 1 1 @ 1 1 07591330 -lobscuse n 1 1 @ 1 1 07591330 -lobster n 2 5 @ ~ #m #p %p 2 0 07792725 01982650 -lobster_a_la_newburg n 1 1 @ 1 0 07870478 -lobster_butter n 1 1 @ 1 0 07856045 -lobster_newburg n 1 1 @ 1 0 07870478 -lobster_plant n 1 2 @ #m 1 0 12920204 -lobster_pot n 1 1 @ 1 0 03680858 -lobster_stew n 1 1 @ 1 0 07591236 -lobster_tail n 1 1 @ 1 0 07793685 -lobster_tart n 1 1 @ 1 0 07624239 -lobster_thermidor n 1 1 @ 1 0 07870894 -lobsterback n 1 1 @ 1 0 10029985 -lobsterman n 1 1 @ 1 0 10268827 -lobularia n 1 3 @ #m %m 1 0 11891050 -lobularia_maritima n 1 2 @ #m 1 0 11891175 -lobularity n 1 2 @ + 1 1 05064722 -lobule n 1 2 @ + 1 1 05493650 -lobworm n 1 2 @ #m 1 0 01936671 -local n 2 3 ! @ ~ 2 1 03680942 03681148 -local_anaesthesia n 1 1 @ 1 0 14027204 -local_anaesthetic n 1 2 @ ~ 1 0 03681148 -local_anesthesia n 1 1 @ 1 0 14027204 -local_anesthetic n 1 2 @ ~ 1 0 03681148 -local_area_network n 1 3 @ ~ %p 1 0 03681477 -local_authority n 1 2 @ ; 1 0 08482577 -local_call n 1 1 @ 1 1 06273986 -local_department n 1 2 @ ~ 1 1 08120384 -local_government n 1 2 @ ~ 1 1 08052874 -local_option n 1 1 @ 1 1 13993030 -local_oscillator n 1 2 @ #p 1 0 03681813 -local_post_office n 1 2 @ %p 1 0 08145553 -local_road n 1 2 @ ~ 1 0 03682024 -local_street n 1 2 @ ~ 1 0 03682024 -local_time n 1 2 @ ~ 1 0 15116910 -locale n 1 2 @ + 1 1 08677628 -localisation n 2 4 @ ~ + ; 2 0 05992274 00155487 -localisation_of_function n 1 3 @ ~ ; 1 0 05992274 -localisation_principle n 1 3 @ ~ ; 1 0 05992274 -localism n 2 1 @ 2 0 07156375 06202429 -locality n 1 3 @ ~ + 1 1 08641113 -localization n 2 4 @ ~ + ; 2 1 00155487 05992274 -localization_of_function n 1 3 @ ~ ; 1 0 05992274 -localization_principle n 1 3 @ ~ ; 1 0 05992274 -locater n 1 2 @ + 1 0 10268930 -locating n 2 2 @ ~ 2 0 01051331 00155487 -location n 4 5 ! @ ~ #p + 4 3 00027167 01051331 00155487 03682189 -locative n 1 1 @ 1 0 06332919 -locative_role n 1 1 @ 1 0 06332919 -locator n 1 2 @ + 1 0 10268930 -loch n 2 2 @ ~ 2 0 09341987 09341874 -loch_achray n 1 2 @ #p 1 0 09342141 -loch_linnhe n 1 2 @ #p 1 0 09342245 -loch_ness n 1 3 @ #p %p 1 0 09342386 -loch_ness_monster n 1 2 @ #p 1 0 09487821 -lochaber_ax n 1 1 @ 1 0 03682380 -lochia n 1 1 @ 1 0 05417272 -lock n 6 5 @ ~ #p %p + 6 3 03682487 05257737 03683341 03683079 03682877 00814458 -lock-gate n 1 1 @ 1 0 03684143 -lock-up_option n 1 1 @ 1 0 13242558 -lock_chamber n 1 2 @ #p 1 0 03683079 -lock_ring n 1 1 @ 1 0 03684489 -lock_washer n 1 1 @ 1 0 03684489 -lockage n 3 3 @ #p + 3 0 13322641 03683457 00313385 -lockbox n 1 1 @ 1 0 04125257 -lockdown n 1 1 @ 1 0 01146993 -locke n 1 1 @ 1 0 11136798 -locker n 3 4 @ ~ #p + 3 1 02933462 03683606 03380301 -locker_room n 1 3 @ #p %p 1 1 03683708 -locket n 1 1 @ 1 0 03683995 -locking n 1 1 @ 1 0 00827638 -locking_pliers n 1 2 @ ; 1 0 03684224 -lockjaw n 1 1 @ 1 0 14185803 -lockkeeper n 1 1 @ 1 0 10269078 -lockman n 1 1 @ 1 0 10269078 -lockmaster n 1 1 @ 1 0 10269078 -locknut n 1 1 @ 1 0 03684338 -lockout n 1 2 @ + 1 0 00202620 -lockring n 1 1 @ 1 0 03684489 -locksmith n 1 1 @ 1 0 10269199 -lockstep n 2 1 @ 2 0 01025254 00291400 -lockstitch n 1 1 @ 1 0 03684611 -lockup n 2 2 @ + 2 1 03684740 00827638 -loco_disease n 1 1 @ 1 0 14273860 -locoism n 1 1 @ 1 0 14273860 -locomotion n 2 3 @ ~ + 2 0 04773596 00283127 -locomotive n 1 4 @ ~ #m %p 1 0 03684823 -locomotive_engine n 1 4 @ ~ #m %p 1 0 03684823 -locomotive_engineer n 1 2 @ ~ 1 0 10057714 -locomotor_ataxia n 1 1 @ 1 0 14134819 -locoweed n 2 3 @ ~ #m 2 0 12554526 03990834 -locule n 1 1 @ 1 0 05253951 -loculus n 1 1 @ 1 0 05253951 -locum n 1 1 @ 1 0 10269289 -locum_tenens n 1 1 @ 1 0 10269289 -locus n 3 1 @ 3 0 08677628 08623568 08000881 -locus_classicus n 1 1 @ 1 0 06401004 -locus_niger n 1 2 @ #p 1 0 05500006 -locus_of_infection n 1 1 @ 1 0 08623676 -locust n 3 5 @ ~ #m #s %s 3 1 02226970 12495396 12495146 -locust_bean n 1 3 @ #s #p 1 0 12493426 -locust_pod n 1 3 @ #s #p 1 0 12493426 -locust_tree n 1 4 @ ~ #m %s 1 0 12495146 -locusta n 1 3 @ #m %m 1 0 02227119 -locusta_migratoria n 1 2 @ #m 1 0 02227247 -locustidae n 1 3 @ #m %m 1 0 02226598 -locution n 1 2 @ ~ 1 0 07151380 -loddon_pondweed n 1 2 @ #m 1 0 12616630 -lode n 1 2 @ ~ 1 0 11446067 -lodestar n 2 2 @ ~ 2 0 09342563 05937417 -lodestone n 1 2 @ %s 1 0 14942411 -lodge n 6 5 @ ~ %m + ; 6 0 11136973 08227214 03685640 03685486 03685307 03541696 -lodgement n 2 2 @ + 2 0 07236627 04777634 -lodgepole n 1 1 @ 1 0 11615026 -lodgepole_pine n 1 1 @ 1 0 11615026 -lodger n 1 2 @ + 1 0 10269458 -lodging n 3 3 @ ~ + 3 1 03546340 04777634 01054227 -lodging_house n 1 2 @ ~ 1 0 03685820 -lodgings n 1 2 @ + 1 1 03195485 -lodgment n 2 1 @ 2 0 07236627 04777634 -lodine n 1 3 @ %s ; 1 0 03300907 -lodz n 1 2 @ #p 1 0 08984122 -loeb n 1 1 @ 1 0 11137175 -loess n 1 1 @ 1 0 14942631 -loestrin n 1 2 @ %s 1 0 03685962 -loewe n 1 1 @ 1 0 11137334 -loewi n 1 1 @ 1 0 11137506 -lofortyx n 1 2 @ #m 1 0 01806740 -lofortyx_californicus n 1 1 @ 1 0 01806847 -lofoten n 1 2 @ #p 1 0 08764899 -loft n 4 5 @ ~ #p + ; 4 2 03686470 03686130 05069447 03686363 -loft_bombing n 1 2 @ ~ 1 0 00979348 -loftiness n 2 2 @ + 2 0 05137402 04729984 -log n 5 6 @ ~ #p %p + ; 5 1 14942762 06812631 06504155 06503884 03686658 -log_cabin n 1 1 @ 1 1 03686924 -log_line n 1 2 @ #p 1 0 03687448 -logagraphia n 1 1 @ 1 0 14095948 -logan n 1 2 @ #p 1 0 09342729 -loganberry n 2 3 @ #p %p 2 0 12655062 07745357 -logania n 1 2 @ #m 1 0 12485331 -loganiaceae n 1 3 @ #m %m 1 0 12485122 -logarithm n 1 3 @ ~ + 1 1 06812631 -logarithmic_scale n 1 1 @ 1 0 13851245 -logbook n 1 2 @ ~ 1 0 06504049 -loge n 2 4 @ ~ #p %p 2 0 03687003 02884225 -logger n 1 3 @ ~ + 1 1 10276045 -loggerhead n 2 2 @ #m 2 0 10039663 01664065 -loggerhead_shrike n 1 2 @ #m 1 0 01599556 -loggerhead_turtle n 1 2 @ #m 1 0 01664065 -loggia n 1 1 @ 1 0 03687137 -logginess n 1 1 @ 1 0 14018432 -logging n 1 2 @ + 1 1 00581772 -logic n 5 5 @ ~ + ; - 5 3 06163751 05615028 05871618 06133018 05664069 -logic_bomb n 1 1 @ 1 0 06585203 -logic_diagram n 1 1 @ 1 0 06582267 -logic_element n 1 2 @ ~ 1 0 03687306 -logic_gate n 1 2 @ ~ 1 0 03427656 -logic_operation n 1 2 @ ; 1 0 13509042 -logic_programing n 2 1 @ 2 0 06902193 00929285 -logic_programming n 2 1 @ 2 0 06902193 00929285 -logical_argument n 1 2 @ ~ 1 0 05773049 -logical_diagram n 1 1 @ 1 0 06582267 -logical_fallacy n 1 2 @ ~ 1 0 05894143 -logical_implication n 1 1 @ 1 0 13860281 -logical_operation n 1 2 @ ; 1 0 13509042 -logical_positivism n 1 3 @ ~ + 1 0 05993367 -logical_positivist n 1 2 @ + 1 0 10269611 -logical_proof n 1 1 @ 1 0 06647960 -logical_quantifier n 1 3 @ ~ ; 1 0 06302542 -logical_relation n 1 3 @ ~ ; 1 0 13783038 -logical_system n 1 3 @ ~ - 1 0 05664069 -logical_thinking n 1 2 @ ~ 1 0 05772356 -logical_topology n 1 1 @ 1 0 05731405 -logicality n 1 5 ! @ ~ = + 1 0 04784664 -logicalness n 1 5 ! @ ~ = + 1 0 04784664 -logician n 1 3 @ ~ + 1 0 10269785 -logicism n 1 2 @ ; 1 0 05972417 -loginess n 1 2 @ + 1 0 14018432 -logion n 1 1 @ 1 0 06301302 -logistic_assessment n 1 2 @ ; 1 0 00875671 -logistic_assistance n 1 3 @ ~ ; 1 0 01216515 -logistic_support n 1 3 @ ~ ; 1 0 01216515 -logistician n 1 3 @ ~ + 1 0 10269785 -logistics n 1 2 @ + 1 1 01060745 -logjam n 2 1 @ 2 0 14015596 07962405 -logo n 1 1 @ 1 0 07272084 -logogram n 1 2 @ + 1 0 06840890 -logograph n 1 1 @ 1 0 06840890 -logomach n 1 1 @ 1 0 10270109 -logomachist n 1 2 @ + 1 0 10270109 -logomachy n 1 2 @ + 1 0 07141319 -logomania n 1 1 @ 1 0 09182401 -logorrhea n 1 1 @ 1 0 09182401 -logos n 1 2 @ ~ 1 0 09537144 -logotype n 1 1 @ 1 0 07272084 -logrolling n 2 3 @ + ; 2 0 01110063 00343894 -logrono n 1 1 @ 1 0 09026499 -logwood n 2 4 @ #m #s %s 2 0 12497322 12496949 -logwood_tree n 1 3 @ #m %s 1 0 12496949 -lohan n 1 1 @ 1 0 09532837 -loin n 2 2 @ #p 2 0 07658678 02463403 -loin_of_lamb n 1 2 @ #p 1 0 07667872 -loincloth n 1 2 @ ~ 1 0 02896294 -loins n 2 3 @ #p %p 2 1 05558555 05597594 -loir n 1 2 @ #m 1 0 02352932 -loire n 1 2 @ #p 1 0 09342937 -loire_river n 1 2 @ #p 1 0 09342937 -loire_valley n 1 2 @ #p 1 0 09343123 -loiseleuria n 1 3 @ #m %m 1 0 12240335 -loiseleuria_procumbens n 1 2 @ #m 1 0 12240477 -loiterer n 1 2 @ + 1 0 10270232 -loki n 1 2 @ ; 1 0 09581680 -lola_montez n 1 1 @ 1 0 11187471 -loligo n 1 2 @ #m 1 0 01971620 -lolita n 1 1 @ 1 0 10270383 -lolium n 1 3 @ #m %m 1 0 12124505 -lolium_multiflorum n 1 1 @ 1 0 12125001 -lolium_perenne n 1 1 @ 1 0 12124818 -lolium_temulentum n 1 1 @ 1 0 12125183 -lollipop n 2 1 @ 2 0 07615774 07607605 -lollipop_lady n 1 2 @ ; 1 0 10270468 -lollipop_woman n 1 2 @ ; 1 0 10270468 -lolly n 2 1 @ 2 0 13385216 07615774 -lolo n 1 1 @ 1 0 06932948 -lolo-burmese n 1 2 @ ~ 1 0 06932265 -loloish n 1 2 @ ~ 1 0 06932537 -lomariopsidaceae n 1 3 @ #m %m 1 0 13202749 -lomatia n 1 2 @ #m 1 0 12220829 -lombard n 1 1 @ 1 0 09703344 -lombard_street n 1 2 @ #p 1 0 08596519 -lombardia n 1 3 @ #p %p 1 0 08808614 -lombardy n 1 3 @ #p %p 1 0 08808614 -lombardy_poplar n 1 1 @ 1 0 12732605 -lome n 1 2 @ #p 1 0 08760228 -loment n 1 1 @ 1 0 13139321 -lomogramma n 1 2 @ #m 1 0 13203115 -lomotil n 1 1 @ 1 0 03687604 -lomustine n 1 1 @ 1 0 03687688 -lonas n 1 3 @ #m %m 1 0 11992674 -lonas_annua n 1 2 @ #m 1 0 11992806 -lonas_inodora n 1 2 @ #m 1 0 11992806 -lonchocarpus n 1 3 @ #m %m 1 0 12544646 -london n 2 5 @ #p %m %p + 2 1 08873622 11137748 -london_plane n 1 2 @ #m 1 0 12807251 -londoner n 1 4 @ ~ #m + 1 1 09704630 -lone-star_state n 1 4 @ #m #p %p 1 0 09141526 -lone_hand n 1 2 @ ~ 1 0 10270628 -lone_wolf n 1 2 @ ~ 1 0 10270628 -loneliness n 3 3 @ ~ + 3 2 14415163 07534108 04622415 -loner n 1 2 @ ~ 1 0 10270628 -lonesomeness n 1 3 @ ~ + 1 0 04622415 -long-beard n 1 1 @ 1 0 02825240 -long-billed_marsh_wren n 1 1 @ 1 0 01585287 -long-chain_molecule n 1 2 @ ; 1 0 09343266 -long-clawed_prawn n 1 3 @ #m %p 1 0 01987727 -long-distance_call n 1 2 @ ~ 1 0 06274092 -long-distance_runner n 1 1 @ 1 0 10292969 -long-eared_bat n 1 3 @ ~ #m 1 0 02148835 -long-eared_owl n 1 2 @ #m 1 0 01624833 -long-fin_tunny n 1 2 @ %p 1 0 02627037 -long-handled_spade n 1 1 @ 1 0 03214450 -long-head_coneflower n 1 2 @ #m 1 0 12007196 -long-horned_beetle n 1 3 @ ~ #m 1 0 02168699 -long-horned_grasshopper n 1 3 @ ~ #m 1 0 02227966 -long-legs n 1 3 @ ~ #m 1 0 02034661 -long-neck_clam n 2 4 @ #m #p %p 2 0 07787429 01957335 -long-spurred_violet n 1 1 @ 1 0 12389932 -long-staple_cotton n 1 1 @ 1 0 14870325 -long-sufferance n 1 1 @ 1 0 05033291 -long-suffering n 1 1 @ 1 0 05033291 -long-tailed_porcupine n 1 2 @ #m 1 0 02347573 -long-tailed_weasel n 1 1 @ 1 0 02442668 -long-term_memory n 1 2 @ ~ 1 0 05760877 -long-windedness n 1 4 @ ~ = + 1 0 07090108 -long_beach n 1 2 @ #p 1 0 09063477 -long_beech_fern n 1 1 @ 1 0 13231078 -long_bone n 1 3 @ ~ %p 1 1 05275651 -long_chain n 1 2 @ ; 1 0 09343266 -long_distance n 1 2 @ ~ 1 0 06274092 -long_division n 1 1 @ 1 0 00871123 -long_dozen n 1 1 @ 1 0 13747199 -long_fly n 1 1 @ 1 0 00438606 -long_haul n 2 1 @ 2 1 00308073 15243351 -long_horse n 1 1 @ 1 0 04524142 -long_hundred n 1 1 @ 1 0 13750574 -long_hundredweight n 1 3 @ #p %p 1 0 13721003 -long_iron n 1 1 @ 1 0 03688066 -long_island n 1 3 @ #p %p 1 1 09124039 -long_island_sound n 1 2 @ #p 1 1 09343422 -long_johns n 1 2 @ ; 1 0 03688192 -long_jump n 2 2 @ %p 2 0 07469609 00440382 -long_measure n 1 1 @ 1 0 13599469 -long_moss n 1 2 @ #m 1 0 12608127 -long_pants n 1 1 @ 1 0 03688605 -long_pepper n 2 4 @ #m %s %p 2 0 13149829 12900987 -long_pillow n 1 1 @ 1 0 02865509 -long_plane n 1 1 @ 1 0 03601638 -long_run n 1 1 @ 1 0 15243351 -long_saphenous_vein n 1 1 @ 1 0 05379944 -long_shot n 2 1 @ 2 1 00803091 10271124 -long_sleeve n 1 1 @ 1 0 03688405 -long_suit n 2 3 @ ~ #p 2 0 07957193 05159225 -long_time n 1 2 @ ~ 1 1 15242955 -long_tom n 1 1 @ 1 0 03688504 -long_ton n 1 2 @ %p 1 0 13721387 -long_trousers n 1 1 @ 1 0 03688605 -long_underwear n 1 1 @ 1 0 03688707 -long_wave n 1 1 @ 1 0 11507511 -long_whist n 1 2 @ ~ 1 0 00496167 -longan n 1 3 @ #m %p 1 0 12743352 -longanberry n 2 4 @ #m #p %p 2 0 12743352 07766409 -longanimity n 1 2 @ + 1 0 04640538 -longar_palm n 1 3 @ #m %s 1 0 12585629 -longbeard n 1 1 @ 1 0 02825240 -longboat n 1 1 @ 1 0 03687820 -longbow n 1 1 @ 1 0 03687928 -longbowman n 1 1 @ 1 0 10270777 -longcase_clock n 1 2 @ %p 1 0 03452594 -longer n 1 2 @ + 1 0 10270878 -longevity n 2 1 @ 2 1 05051734 04927890 -longfellow n 1 1 @ 1 0 11137928 -longfin_mako n 1 1 @ 1 0 01484447 -longhand n 1 2 @ ~ 1 1 06350274 -longheaded_thimbleweed n 1 1 @ 1 0 11726145 -longhorn n 1 1 @ 1 0 02404432 -longicorn n 1 3 @ ~ #m 1 0 02168699 -longicorn_beetle n 1 3 @ ~ #m 1 0 02168699 -longing n 1 3 @ ~ + 1 1 07486628 -longitude n 1 2 @ + 1 1 08596668 -longleaf_pine n 1 1 @ 1 0 11615967 -longlegs n 1 3 @ ~ #m 1 0 02034661 -longness n 2 4 ! @ ~ + 2 0 05133287 05051601 -longroot n 1 1 @ 1 0 11806369 -longshoreman n 1 1 @ 1 1 10655169 -longshot n 1 1 @ 1 1 03688316 -longsightedness n 1 3 @ ~ + 1 0 14554011 -longtail_weasel n 1 1 @ 1 0 02442668 -longueur n 1 2 @ ; 1 0 15134054 -longways n 1 2 @ ~ 1 0 00539510 -longways_dance n 1 2 @ ~ 1 0 00539510 -longwool n 1 1 @ 1 0 02414209 -longyi n 1 1 @ 1 0 03697913 -lonicera n 1 3 @ #m %m 1 0 12673755 -lonicera_albiflora n 1 2 @ #m 1 0 12674484 -lonicera_canadensis n 1 3 @ ~ #m 1 0 12674685 -lonicera_caprifolium n 1 2 @ #m 1 0 12674895 -lonicera_dioica n 1 2 @ #m 1 0 12675100 -lonicera_flava n 1 2 @ #m 1 0 12675299 -lonicera_hirsuta n 1 2 @ #m 1 0 12675515 -lonicera_involucrata n 1 2 @ #m 1 0 12675716 -lonicera_japonica n 1 2 @ #m 1 0 12675876 -lonicera_japonica_halliana n 1 2 @ #m 1 0 12676134 -lonicera_morrowii n 1 1 @ 1 0 12676370 -lonicera_periclymenum n 1 2 @ #m 1 0 12676534 -lonicera_sempervirens n 1 2 @ #m 1 0 12676703 -lonicera_tatarica n 1 2 @ #m 1 0 12676940 -lonicera_xylosteum n 1 2 @ #m 1 0 12677120 -loniten n 1 1 @ 1 0 03771820 -lontar n 1 3 @ #m %s 1 0 12585629 -loo n 1 1 @ 1 0 04558478 -loofa n 1 2 @ #p 1 0 12167075 -loofah n 2 2 @ #p 2 0 12167075 12166793 -look n 4 3 @ ~ + 4 3 04679738 00877127 04674715 14526182 -look-alike n 1 2 @ ~ 1 0 10027246 -look-over n 1 1 @ 1 0 00143626 -lookdown n 1 1 @ 1 0 02578454 -lookdown_fish n 1 1 @ 1 0 02578454 -looker n 2 3 @ ~ + 2 0 10633450 10613996 -looker-on n 1 1 @ 1 0 10378026 -looking n 2 2 @ ~ 2 1 00877127 00946432 -looking-glass_plant n 1 1 @ 1 0 12200143 -looking_at n 1 2 @ ~ 1 1 00877127 -looking_for n 1 1 @ 1 0 00946432 -looking_glass n 1 1 @ 1 0 03688832 -looking_glass_tree n 1 1 @ 1 0 12199982 -lookout n 4 3 @ ~ + 4 0 10271216 08597176 03688943 00881545 -lookout_man n 1 1 @ 1 0 10271216 -lookout_station n 1 2 @ ~ 1 0 03688943 -lookup n 1 1 @ 1 1 13553560 -loom n 1 2 @ ~ 1 1 03689157 -loon n 3 3 @ #m + 3 2 10271451 02049088 10598904 -looney n 1 2 @ ; 1 0 09976283 -loonie n 1 1 @ 1 0 13672794 -loony n 1 2 @ ; 1 0 09976283 -loony_bin n 1 1 @ 1 0 02820798 -loony_toons n 1 1 @ 1 0 02675657 -loop n 10 4 @ ~ + ; 10 1 03132438 13875571 13504173 08241654 06644823 06572857 05730724 03689347 03048883 00169811 -loop-line n 1 1 @ 1 0 03689700 -loop-the-loop n 1 2 @ ~ 1 0 00169811 -loop_gain n 1 2 @ ; 1 0 05111248 -loop_knot n 1 2 @ ~ 1 0 03689570 -loop_topology n 1 1 @ 1 0 05730724 -looper n 1 1 @ 1 0 02288268 -loophole n 2 2 @ ; 2 2 06604548 03689443 -looping n 1 2 @ ; 1 0 13503908 -looping_ill n 1 1 @ 1 0 14274068 -loos n 1 1 @ 1 0 11138085 -loose-leaf_lettuce n 1 2 @ #p 1 0 07724654 -loose_cannon n 1 1 @ 1 0 10271525 -loose_end n 1 1 @ 1 1 00581885 -loose_sentence n 1 1 @ 1 0 06285789 -loose_smut n 2 2 @ #m 2 0 14283909 13066979 -loose_woman n 1 1 @ 1 0 09772930 -looseness n 6 5 ! @ ~ #p + 6 0 14371913 04885609 04804947 04777421 04774511 00748307 -looseness_of_the_bowels n 1 3 @ ~ #p 1 1 14371913 -loosening n 2 4 ! @ ~ + 2 0 07443210 00147862 -loosestrife n 2 3 @ ~ #m 2 0 12328398 12095020 -loosestrife_family n 1 3 @ #m %m 1 0 12328026 -loot n 2 3 @ %p + 2 2 13262663 13385216 -looter n 1 4 @ ~ + ; 1 0 10443170 -looting n 1 2 @ + 1 0 00966599 -lope n 2 3 @ ~ + 2 0 00294190 00288486 -lope_de_vega n 1 1 @ 1 0 11362195 -lope_felix_de_vega_carpio n 1 1 @ 1 0 11362195 -lophiidae n 1 3 @ #m %m 1 0 02547947 -lophius n 1 2 @ #m 1 0 02548128 -lophius_americanus n 1 3 @ #m %p 1 0 02548247 -lophodytes n 1 3 @ #m %m 1 0 01855343 -lophodytes_cucullatus n 1 2 @ #m 1 0 01855476 -lopholatilus n 1 3 @ #m %m 1 0 02573075 -lopholatilus_chamaeleonticeps n 1 2 @ #m 1 0 02573249 -lophophora n 1 3 @ #m %m 1 0 11849017 -lophophora_williamsii n 1 3 @ #m %p 1 0 11849271 -lophophorus n 1 3 @ #m %m 1 0 01805199 -lophosoria n 1 2 @ #m 1 0 13203405 -lophosoriaceae n 1 3 @ #m %m 1 0 13203251 -lopid n 1 2 @ ; 1 0 03433079 -lopper n 1 2 @ + 1 0 04016240 -lopressor n 1 1 @ 1 0 03756857 -lopsidedness n 1 2 @ + 1 0 05066195 -loquaciousness n 1 3 @ ~ + 1 0 04651382 -loquacity n 1 3 @ ~ + 1 0 04651382 -loquat n 2 4 @ #m #p %p 2 0 12629666 07763792 -loquat_tree n 1 3 @ #m %p 1 0 12629666 -lorado_taft n 1 1 @ 1 0 11328930 -loranthaceae n 1 3 @ #m %m 1 0 12737383 -loranthus n 1 3 @ #m %m 1 0 12737745 -loranthus_europaeus n 1 2 @ #m 1 0 12737898 -lorazepam n 1 1 @ 1 0 03690005 -lorca n 1 1 @ 1 0 10989977 -lorchel n 1 3 @ ~ #m 1 0 13035389 -lord n 3 4 ! @ ~ + 3 3 09536363 10388440 10271677 -lord's_day n 1 2 @ #p 1 0 15163797 -lord's_prayer n 1 3 @ ~ #p 1 0 06457612 -lord's_resistance_army n 1 2 @ ; 1 0 08032955 -lord's_supper n 2 2 @ %p 2 1 01035853 01035504 -lord's_table n 1 1 @ 1 0 02699629 -lord_britten_of_aldeburgh n 1 1 @ 1 0 10864635 -lord_chancellor n 1 2 @ ; 1 0 10272171 -lord_george_gordon_byron n 1 1 @ 1 0 10877253 -lord_high_chancellor n 1 2 @ ; 1 0 10272171 -lord_macaulay n 1 1 @ 1 0 11146914 -lord_nelson n 1 1 @ 1 0 11203059 -lord_of_misrule n 1 1 @ 1 0 10272375 -lord_privy_seal n 1 2 @ #m 1 0 10272499 -lord_rayleigh n 1 1 @ 1 0 11255211 -lord_todd n 1 1 @ 1 0 11344549 -lordliness n 2 3 @ ~ + 2 0 04910684 04887912 -lordolatry n 1 1 @ 1 0 01045413 -lordosis n 1 2 @ + 1 0 14505215 -lords-and-ladies n 1 3 @ #m %p 1 0 11780148 -lords_spiritual n 1 2 @ ; 1 0 08167779 -lords_temporal n 1 2 @ ; 1 0 08167953 -lordship n 2 2 @ + 2 1 06342781 05198036 -lore n 1 2 @ ~ 1 1 05985381 -lorelei n 1 1 @ 1 1 10272657 -loren n 1 1 @ 1 0 11138180 -lorentz n 1 1 @ 1 0 11138301 -lorentz_force n 1 1 @ 1 0 11475682 -lorenz n 1 1 @ 1 0 11138449 -lorenz_hart n 1 1 @ 1 0 11032541 -lorenz_milton_hart n 1 1 @ 1 0 11032541 -lorenz_oken n 1 1 @ 1 0 11213323 -lorenz_okenfuss n 1 1 @ 1 0 11213323 -lorenzo_de'medici n 1 1 @ 1 0 11138681 -lorenzo_dressing n 1 1 @ 1 0 07833951 -lorenzo_ganganelli n 1 1 @ 1 0 10901589 -lorenzo_the_magnificent n 1 1 @ 1 0 11138681 -loretta_young n 1 1 @ 1 0 11404280 -lorfan n 1 2 @ ; 1 0 03658373 -lorgnette n 1 1 @ 1 0 03690168 -lorica n 1 1 @ 1 0 01905416 -loricata n 1 1 @ 1 0 01696525 -loriinae n 1 3 @ #m %m 1 0 01820190 -lorikeet n 1 2 @ ~ 1 0 01820546 -loris_gracilis n 1 2 @ #m 1 0 02498743 -lorisidae n 1 3 @ #m %m 1 0 02498355 -lorraine n 1 2 @ #p 1 0 08943104 -lorraine_cross n 1 1 @ 1 0 03690279 -lorre n 1 1 @ 1 0 11138924 -lorry n 2 1 @ 2 0 03690600 03690473 -lory n 1 3 @ ~ #m 1 0 01820348 -los_alamos n 1 2 @ #p 1 0 09116010 -los_angeles n 1 3 @ #p %p 1 1 09063673 -loser n 3 4 ! @ ~ + 3 1 10272913 10273064 10272782 -losing_streak n 1 1 @ 1 1 08460769 -losings n 1 3 ! @ + 1 0 13329322 -loss n 8 5 ! @ ~ + ; 8 7 13327676 13509196 00067526 05162985 07287472 13327231 07340725 07333649 -loss_leader n 1 1 @ 1 0 03234795 -loss_of_consciousness n 1 2 @ ~ 1 0 07478169 -loss_ratio n 1 1 @ 1 0 13822735 -losses n 1 1 @ 1 1 13329322 -lost n 1 1 @ 1 1 07946694 -lost-and-found n 1 1 @ 1 0 03690695 -lost_cause n 1 1 @ 1 0 00800825 -lost_tribes n 1 1 @ 1 0 08373055 -lot n 7 4 @ ~ + ; 7 6 13774404 08674970 08240169 14473222 03233423 07954731 10273669 -lot's_wife n 1 2 @ ; 1 0 10273906 -lota n 2 2 @ #m 2 0 03690851 02523338 -lota_lota n 1 1 @ 1 0 02523427 -lotario_di_segni n 1 1 @ 1 0 11071960 -lothario n 1 1 @ 1 0 10274173 -lothian_region n 1 3 @ #p %p 1 0 08892766 -lothringen n 1 2 @ #p 1 0 08943104 -loti n 1 2 @ %p 1 0 13687652 -lotion n 2 2 @ ~ 2 1 03690938 03691128 -lots n 1 1 @ 1 1 13777509 -lotte n 1 3 @ #m %p 1 0 02548247 -lottery n 2 2 @ ~ 2 0 07317144 00508091 -lottery_winner n 1 1 @ 1 0 09627807 -lotto n 1 1 @ 1 0 00504660 -lotus n 3 3 @ #m %m 3 1 11717399 12545090 11715810 -lotus-eater n 1 1 @ 1 0 09994119 -lotus_americanus n 1 1 @ 1 0 12545232 -lotus_berthelotii n 1 1 @ 1 0 12545429 -lotus_corniculatus n 1 2 @ #m 1 0 12545635 -lotus_land n 1 1 @ 1 0 14514685 -lotus_position n 1 2 @ #p 1 0 05080923 -lotus_tetragonolobus n 1 1 @ 1 0 12545865 -lotus_tree n 1 2 @ #m 1 0 13143483 -lotusland n 1 1 @ 1 0 14514685 -lou_gehrig n 1 1 @ 1 0 10993350 -lou_gehrig's_disease n 1 1 @ 1 0 14105737 -loud-hailer n 1 1 @ 1 0 02917377 -loud_hailer n 1 1 @ 1 0 02917377 -loud_pedal n 1 2 @ #p 1 0 04367011 -loudmouth n 1 1 @ 1 0 10274318 -loudness n 2 5 ! @ ~ = + 2 0 04990220 04818700 -loudspeaker n 1 3 @ ~ #p 1 1 03691459 -loudspeaker_system n 1 3 @ ~ #p 1 0 03691459 -loufah_sponge n 1 2 @ #p 1 0 12167075 -lough n 2 1 @ 2 0 09343660 09343587 -louis n 1 1 @ 1 0 11141709 -louis-hector_berlioz n 1 1 @ 1 0 10847653 -louis_agassiz n 1 1 @ 1 0 10809317 -louis_antoine_de_bougainville n 1 1 @ 1 0 10859194 -louis_aragon n 1 1 @ 1 0 10821379 -louis_armstrong n 1 1 @ 1 0 10823199 -louis_auchincloss n 1 1 @ 1 0 10828091 -louis_b._mayer n 1 1 @ 1 0 11166877 -louis_bleriot n 1 1 @ 1 0 10852803 -louis_braille n 1 1 @ 1 0 10862281 -louis_burt_mayer n 1 1 @ 1 0 11166877 -louis_charles_alfred_de_musset n 1 1 @ 1 0 11198094 -louis_comfort_tiffany n 1 1 @ 1 0 11342301 -louis_d'or n 1 1 @ 1 0 13392977 -louis_d'outremer n 1 1 @ 1 0 11139520 -louis_eugene_felix_neel n 1 1 @ 1 0 11202581 -louis_harold_gray n 1 1 @ 1 0 11012993 -louis_henri_sullivan n 1 1 @ 1 0 11324902 -louis_henry_sullivan n 1 1 @ 1 0 11324902 -louis_i n 1 1 @ 1 0 11139092 -louis_ii n 1 1 @ 1 0 11139253 -louis_iii n 1 1 @ 1 0 11139403 -louis_isadore_kahn n 1 1 @ 1 0 11095907 -louis_iv n 1 1 @ 1 0 11139520 -louis_ix n 1 1 @ 1 0 11140243 -louis_jacques_mande_daguerre n 1 1 @ 1 0 10920832 -louis_joliet n 1 1 @ 1 0 11089484 -louis_jolliet n 1 1 @ 1 0 11089484 -louis_le_begue n 1 1 @ 1 0 11139253 -louis_le_faineant n 1 1 @ 1 0 11139619 -louis_le_hutin n 1 1 @ 1 0 11140461 -louis_leakey n 1 1 @ 1 0 11121640 -louis_pasteur n 1 1 @ 1 0 11224877 -louis_seymour_bazett_leakey n 1 1 @ 1 0 11121640 -louis_stanton_auchincloss n 1 1 @ 1 0 10828091 -louis_sullivan n 1 1 @ 1 0 11324902 -louis_the_bruiser n 1 1 @ 1 0 11139739 -louis_the_far n 1 1 @ 1 0 11139739 -louis_the_german n 1 1 @ 1 0 11139253 -louis_the_great n 1 1 @ 1 0 11141019 -louis_the_pious n 1 1 @ 1 0 11139092 -louis_the_quarreller n 1 1 @ 1 0 11140461 -louis_the_stammerer n 1 1 @ 1 0 11139253 -louis_the_wideawake n 1 1 @ 1 0 11139739 -louis_untermeyer n 1 1 @ 1 0 11356283 -louis_v n 1 1 @ 1 0 11139619 -louis_vi n 1 1 @ 1 0 11139739 -louis_victor_de_broglie n 1 1 @ 1 0 10865329 -louis_vii n 1 1 @ 1 0 11139927 -louis_viii n 1 1 @ 1 0 11140100 -louis_x n 1 1 @ 1 0 11140461 -louis_xi n 1 1 @ 1 0 11140582 -louis_xii n 1 1 @ 1 0 11140745 -louis_xiii n 1 1 @ 1 0 11140862 -louis_xiv n 1 1 @ 1 0 11141019 -louis_xv n 1 1 @ 1 0 11141289 -louis_xvi n 1 1 @ 1 0 11141495 -louisa_may_alcott n 1 1 @ 1 0 10812225 -louise_nevelson n 1 1 @ 1 0 11204689 -louisiana n 1 4 @ #m #p %p 1 1 09090825 -louisiana_purchase n 1 2 @ #p 1 0 09090559 -louisianan n 1 1 @ 1 1 09743383 -louisianian n 1 1 @ 1 0 09743383 -louisville n 1 3 @ #p %p 1 0 09089923 -lounge n 2 3 @ ~ + 2 0 04256520 03691817 -lounge_car n 1 1 @ 1 0 03053976 -lounge_chair n 1 2 @ ~ 1 0 03262932 -lounge_lizard n 1 1 @ 1 0 10274474 -lounge_suit n 1 1 @ 1 0 04504141 -lounger n 3 2 @ + 3 0 09988703 04062428 03692004 -loungewear n 1 2 @ ~ 1 0 03692379 -lounging_jacket n 1 1 @ 1 0 03692136 -lounging_pajama n 1 1 @ 1 0 03692272 -lounging_pyjama n 1 1 @ 1 0 03692272 -lounging_robe n 1 1 @ 1 0 03237992 -loup-garou n 1 1 @ 1 0 09503121 -loupe n 1 1 @ 1 0 03692522 -louse n 4 4 @ ~ #m + 4 1 02183857 10792028 02251775 02185481 -louse_fly n 1 3 @ ~ #m 1 0 02198532 -lousiness n 2 3 @ ~ + 2 1 14454450 04781349 -lout n 1 1 @ 1 0 10274639 -louvar n 1 2 @ #m 1 0 02632494 -louver n 1 2 @ #p 1 0 03692676 -louvered_window n 1 1 @ 1 0 03692842 -louvre n 2 2 @ #p 2 0 03692942 03692676 -louvre_museum n 1 2 @ #p 1 0 03692942 -lovage n 2 4 @ #m #p %p 2 0 12940226 07818825 -lovastatin n 1 1 @ 1 0 03693089 -love n 6 4 ! @ ~ + 6 4 07543288 05813229 09849598 07488340 13596569 00846515 -love-in-a-mist n 3 1 @ 3 0 12384839 11807525 11736851 -love-in-idleness n 1 1 @ 1 0 12390681 -love-in-winter n 1 1 @ 1 0 12257725 -love-lies-bleeding n 1 1 @ 1 0 11823572 -love-philter n 1 1 @ 1 0 07883661 -love-philtre n 1 1 @ 1 0 07883661 -love-potion n 1 1 @ 1 0 07883661 -love-song n 1 1 @ 1 0 07051728 -love-token n 1 1 @ 1 0 03693617 -love_affair n 1 2 @ ~ 1 0 13931436 -love_apple n 1 3 @ ~ %p 1 0 12905817 -love_bite n 1 1 @ 1 0 14226862 -love_child n 1 1 @ 1 0 09842823 -love_feast n 2 1 @ 2 0 07976725 01028534 -love_grass n 1 3 @ ~ #m 1 0 12120114 -love_handle n 1 2 @ #p 1 0 05556204 -love_knot n 1 1 @ 1 0 03693293 -love_letter n 1 1 @ 1 0 06626618 -love_life n 1 1 @ 1 0 00846515 -love_line n 1 1 @ 1 0 13906936 -love_lyric n 1 1 @ 1 1 07052619 -love_match n 1 1 @ 1 0 01037710 -love_seat n 1 1 @ 1 0 03693474 -love_song n 1 1 @ 1 0 07051728 -love_story n 1 1 @ 1 0 06371267 -love_tree n 1 2 @ #m 1 0 12513613 -love_vine n 1 2 @ #m 1 0 12825721 -lovebird n 2 2 @ #m 2 0 01821869 01820052 -loved_one n 1 1 @ 1 0 09622928 -lovelace n 1 1 @ 1 0 11141882 -loveliness n 1 2 @ + 1 1 04685396 -lovell n 1 1 @ 1 0 11141981 -lovely n 1 1 @ 1 0 09972458 -lovemaking n 1 1 @ 1 0 00846515 -lover n 3 4 @ ~ #m + 3 2 09622302 10077593 09622745 -lover's_knot n 1 1 @ 1 0 03693293 -lovers'_knot n 1 1 @ 1 0 03693293 -loveseat n 1 1 @ 1 0 03693474 -lovesickness n 1 2 @ + 1 0 07487493 -loving-kindness n 1 1 @ 1 0 04841245 -loving_cup n 2 2 @ ~ 2 0 03693707 03147901 -lovingness n 2 3 @ ~ + 2 0 07546125 04627000 -lovoa n 1 3 @ #m %m 1 0 12699485 -lovoa_klaineana n 1 2 @ #m 1 0 12699618 -low n 4 3 ! @ #p 4 0 14520829 11142155 05097706 03350011 -low-birth-weight_baby n 1 1 @ 1 0 10274985 -low-birth-weight_infant n 1 1 @ 1 0 10274985 -low-bush_blueberry n 1 1 @ 1 0 12246941 -low-calorie_diet n 1 1 @ 1 0 07564008 -low-carbon_steel n 1 1 @ 1 0 14952878 -low-density_lipoprotein n 1 2 @ %s 1 0 14943009 -low-down n 1 1 @ 1 1 06636113 -low-fat_diet n 1 1 @ 1 0 07564101 -low-fat_milk n 1 1 @ 1 0 07846938 -low-level_formatting n 1 2 @ ; 1 0 06637350 -low-level_radioactive_waste n 1 2 @ ; 1 0 14943359 -low-pass_filter n 1 1 @ 1 0 03694196 -low-salt_diet n 1 1 @ 1 0 07564292 -low-sodium_diet n 1 1 @ 1 0 07564292 -low-spiritedness n 1 2 @ + 1 0 07537668 -low-warp-loom n 1 1 @ 1 0 03694356 -low-water_mark n 2 1 @ 2 1 14486639 08679269 -low_archipelago n 1 2 @ #p 1 0 08990522 -low_beam n 1 1 @ 1 0 11485774 -low_blow n 1 1 @ 1 0 06721269 -low_blueberry n 1 1 @ 1 0 12246941 -low_brass n 1 1 @ 1 0 14942924 -low_comedy n 1 1 @ 1 0 07016542 -low_countries n 1 2 @ #p 1 0 09166127 -low_density n 1 1 @ 1 1 05089612 -low_explosive n 1 3 ! @ ~ 1 0 14853392 -low_frequency n 2 3 @ ~ #p 2 1 05057382 04986258 -low_gallberry_holly n 1 1 @ 1 0 12757930 -low_gear n 1 2 @ #p 1 0 03350011 -low_german n 1 2 @ ~ 1 0 06952249 -low_latin n 1 2 @ ~ 1 0 06963292 -low_level_flight n 1 1 @ 1 0 00306318 -low_mass n 1 1 @ 1 0 01042578 -low_pitch n 1 3 ! @ ~ 1 0 04986258 -low_profile n 1 1 @ 1 0 14434522 -low_quality n 1 3 ! @ ~ 1 0 04730580 -low_relief n 1 2 ! @ 1 0 02803129 -low_spirits n 1 3 ! @ ~ 1 0 14404941 -low_st_andrew's_cross n 1 1 @ 1 0 12369066 -low_status n 1 3 ! @ ~ 1 0 13951215 -low_sunday n 1 1 @ 1 0 15191924 -low_temperature n 1 2 @ ~ 1 1 05015117 -low_tide n 1 2 ! @ 1 0 07402271 -low_water n 1 1 @ 1 0 07402271 -lowan n 1 3 @ ~ #m 1 0 01801479 -lowboy n 1 1 @ 1 0 03693860 -lowbrow n 1 2 @ + 1 0 10423031 -lowbush_cranberry n 1 2 @ #p 1 0 07744057 -lowbush_penstemon n 1 2 @ #m 1 0 12886600 -lowell n 4 1 @ 4 0 11142788 11142614 11142517 11142368 -lowell_jackson_thomas n 1 1 @ 1 0 11339155 -lowell_thomas n 1 1 @ 1 0 11339155 -lower n 1 2 @ + 1 0 03693973 -lower-case_letter n 1 1 @ 1 0 06824757 -lower-normandy n 1 2 @ #p 1 0 08940936 -lower_berth n 1 1 @ 1 0 03693973 -lower_bound n 1 2 @ ; 1 0 13904011 -lower_california n 1 4 @ #p %p - 1 0 09343761 -lower_cannon n 1 2 @ #p 1 0 04519887 -lower_carboniferous n 1 2 @ #p 1 0 15127729 -lower_carboniferous_period n 1 2 @ #p 1 0 15127729 -lower_class n 1 1 @ 1 1 08181540 -lower_court n 1 1 @ 1 0 08332896 -lower_criticism n 1 1 @ 1 0 06375471 -lower_deck n 1 1 @ 1 0 03694098 -lower_egypt n 1 2 @ #p 1 0 08897843 -lower_jaw n 1 3 @ ~ %p 1 1 05275905 -lower_jawbone n 1 3 @ ~ %p 1 0 05275905 -lower_limit n 2 2 @ ~ 2 1 13763384 08593014 -lower_mantle n 1 2 @ #p 1 0 09343943 -lower_paleolithic n 1 2 @ #p 1 0 15232712 -lower_peninsula n 1 2 @ #p 1 0 09344050 -lower_rank n 1 2 @ ~ 1 1 13951444 -lower_respiratory_infection n 1 1 @ 1 0 14179276 -lower_respiratory_tract n 1 2 @ %p 1 0 05510358 -lower_respiratory_tract_smear n 1 1 @ 1 0 05266486 -lower_saxony n 1 2 @ #p 1 0 08769329 -lower_status n 1 2 @ ~ 1 0 13951444 -lower_tunguska n 1 2 @ #p 1 0 09463362 -lowercase n 1 2 ! @ 1 0 06824757 -lowerclassman n 1 2 @ ~ 1 0 10274815 -lowering n 2 3 @ ~ + 2 0 00353469 00327683 -lowest_common_multiple n 1 1 @ 1 0 05860639 -lowland n 1 3 ! @ ~ 1 1 09344198 -lowland_burrowing_treefrog n 1 2 @ #m 1 0 01652297 -lowland_fir n 1 1 @ 1 0 11622368 -lowland_scot n 1 1 @ 1 0 10275249 -lowland_white_fir n 1 1 @ 1 0 11622368 -lowlander n 1 2 @ + 1 0 10275249 -lowlands n 1 3 @ #p + 1 0 08891889 -lowlands_of_scotland n 1 2 @ #p 1 0 08891889 -lowlife n 1 1 @ 1 0 10539715 -lowliness n 2 2 @ ~ 2 0 14436438 13951215 -lowness n 4 4 ! @ ~ + 4 0 13951215 07537668 05137557 05097845 -lowry n 2 1 @ 2 0 11143044 11142922 -lox n 2 2 @ ~ 2 0 14648526 07796750 -loxapine n 1 1 @ 1 0 03694490 -loxia n 1 3 @ #m %m 1 0 01533780 -loxia_curvirostra n 1 2 @ #m 1 0 01533893 -loxitane n 1 2 @ ; 1 0 03694490 -loxodonta n 1 3 @ #m %m 1 0 02504323 -loxodonta_africana n 1 2 @ #m 1 0 02504458 -loxodrome n 1 1 @ 1 0 08632678 -loxoma n 1 2 @ #m 1 0 13203708 -loxomataceae n 1 3 @ #m %m 1 0 13203551 -loxostege n 1 3 @ #m %m 1 0 02308852 -loxostege_similalis n 2 2 @ #m 2 0 02309120 02308998 -loya_jirga n 1 2 @ ; 1 0 08322187 -loyalist n 1 1 @ 1 1 10275395 -loyalist_volunteer_force n 1 2 @ ; 1 0 08033194 -loyalty n 3 4 ! @ ~ = 3 3 04877530 07546389 01206153 -loyang n 1 2 @ #p 1 0 08727230 -loyola n 1 2 @ ; 1 0 11071177 -lozal n 1 2 @ ; 1 0 03567325 -lozenge n 2 2 @ ~ 2 0 07607707 03936568 -lozier n 1 1 @ 1 0 11143163 -lp n 1 1 @ 1 1 03694639 -lpn n 1 1 @ 1 0 10258304 -lr n 1 1 @ 1 0 14643323 -lsd n 1 2 @ ~ 1 0 03699396 -ltd. n 1 2 @ ; 1 0 08185211 -ltm n 1 2 @ ~ 1 0 05760877 -ltte n 1 2 @ ; 1 0 08032023 -lu n 1 1 @ 1 0 14644063 -luanda n 1 2 @ #p 1 0 08708304 -luau n 1 2 @ ; 1 0 07450055 -luba n 2 2 @ #m 2 0 09693244 06993870 -lubavitch n 2 3 @ #p %m 2 0 09011922 08475332 -lubavitch_movement n 1 2 @ %m 1 0 08475332 -lubavitcher n 1 2 @ #m 1 0 10275534 -lubber n 2 2 @ + 2 0 10274639 10245341 -lubber's_hole n 1 2 @ #p 1 0 03694949 -lubber's_line n 1 1 @ 1 0 07259610 -lubber's_mark n 1 1 @ 1 0 07259610 -lubber's_point n 1 1 @ 1 0 07259610 -lubber_line n 1 1 @ 1 0 07259610 -lubbock n 1 2 @ #p 1 0 09145217 -lube n 1 2 @ ~ 1 0 14890659 -lubeck n 1 3 @ #m #p 1 0 08773880 -lubitsch n 1 1 @ 1 0 11143331 -lublin n 1 2 @ #p 1 0 08984223 -lubricant n 1 3 @ ~ + 1 0 14890659 -lubricating_oil n 1 2 @ ~ 1 0 14890945 -lubricating_substance n 1 2 @ ~ 1 0 14890659 -lubricating_system n 1 3 @ #p %p 1 0 03695122 -lubrication n 2 2 @ + 2 0 14578104 00716945 -lubricator n 1 3 @ ~ + 1 0 14890659 -lubricity n 1 1 @ 1 0 07490214 -lubumbashi n 1 2 @ #p 1 0 08735345 -lucania n 1 3 @ #p ; 1 0 08804487 -lucanidae n 1 3 @ #m %m 1 0 02175791 -lucas n 1 1 @ 1 0 11143458 -luce n 2 1 @ 2 0 11143933 11143806 -lucerne n 1 2 @ %p 1 0 12549420 -luchino_visconti n 1 1 @ 1 0 11367581 -luciano_pavarotti n 1 1 @ 1 0 11227101 -lucidity n 2 4 @ ~ = + 2 1 04820258 14379703 -lucidness n 1 3 @ ~ = 1 0 04820258 -lucifer n 3 4 @ ~ %p ; 3 1 09543353 09359471 03728437 -luciferin n 1 1 @ 1 0 14757011 -lucilia n 1 3 @ #m %m 1 0 02192127 -lucille_ball n 1 1 @ 1 0 10832731 -lucite n 1 2 @ ; 1 0 14594032 -lucius_annaeus_seneca n 1 1 @ 1 0 11292391 -lucius_clay n 1 1 @ 1 0 10900146 -lucius_cornelius_sulla_felix n 1 1 @ 1 0 11324090 -lucius_domitius_ahenobarbus n 1 1 @ 1 0 11203472 -lucius_dubignon_clay n 1 1 @ 1 0 10900146 -lucius_licinius_lucullus n 1 1 @ 1 0 11143600 -lucius_licinius_luculus n 1 1 @ 1 0 11144291 -lucius_quinctius_cincinnatus n 1 1 @ 1 0 10898308 -lucius_tarquinius_superbus n 1 1 @ 1 0 11331804 -luck n 3 3 @ ~ + 3 3 14473222 11418138 11418460 -luckiness n 1 3 @ ~ + 1 0 14473655 -lucknow n 2 3 @ #p ; 2 0 08904533 01284928 -lucky_dip n 2 2 @ ; 2 0 00508340 00162236 -lucky_lindy n 1 1 @ 1 0 11132948 -lucrativeness n 1 1 @ 1 0 05157866 -lucre n 2 3 @ ~ %p 2 0 13385216 13258362 -lucretia_coffin_mott n 1 1 @ 1 0 11194062 -lucretius n 1 1 @ 1 0 11144068 -lucrezia_borgia n 1 1 @ 1 0 10858018 -lucubration n 2 2 @ + 2 0 06377133 05784482 -lucullus n 1 2 @ + 1 0 11143600 -luculus n 1 1 @ 1 0 11144291 -lucy n 1 2 @ #m 1 0 02476736 -lucy_craft_laney n 1 1 @ 1 0 11116284 -lucy_in_the_sky_with_diamonds n 1 1 @ 1 0 02675657 -lucy_maud_montgomery n 1 1 @ 1 0 11188613 -lucy_stone n 1 1 @ 1 0 11319570 -luda n 1 3 @ #p %p 1 0 08726745 -luddite n 2 1 @ 2 0 10275848 10275676 -ludi_saeculares n 1 2 @ ; 1 0 00518770 -ludian n 1 1 @ 1 0 06958178 -ludo n 1 2 @ ; 1 0 00504975 -ludwig_boltzmann n 1 1 @ 1 0 10855834 -ludwig_josef_johan_wittgenstein n 1 1 @ 1 0 11393828 -ludwig_mies_van_der_rohe n 1 1 @ 1 0 11178922 -ludwig_van_beethoven n 1 1 @ 1 0 10841405 -ludwig_wittgenstein n 1 1 @ 1 0 11393828 -lues n 1 3 @ ~ %p 1 0 14133985 -lues_venerea n 1 3 @ ~ %p 1 0 14133985 -lufengpithecus n 1 2 @ #m 1 0 02478539 -luff n 2 4 @ #p + ; 2 0 03695452 00313971 -luffa n 2 5 @ ~ #m #p %p 2 0 12167075 12166424 -luffa_acutangula n 1 1 @ 1 0 12166929 -luffa_cylindrica n 1 1 @ 1 0 12166793 -lufkin n 1 2 @ #p 1 0 09145341 -luftwaffe n 1 1 @ 1 0 08195229 -lug n 4 4 @ #m #p ; 4 0 09510305 03696568 03695616 01936671 -lug_wrench n 1 2 @ %p 1 0 03696746 -luganda n 1 1 @ 1 0 06993977 -luge n 1 2 @ + 1 0 03695753 -luger n 2 2 @ ; 2 1 03695857 10275940 -luggage n 1 4 @ ~ %p + 1 1 02774630 -luggage_carousel n 1 1 @ 1 0 02966372 -luggage_carrier n 1 1 @ 1 0 03695957 -luggage_carrousel n 1 1 @ 1 0 02966372 -luggage_compartment n 1 3 @ ~ #p 1 0 03696065 -luggage_rack n 1 1 @ 1 0 03696301 -luggage_van n 1 2 @ #m 1 0 02775039 -lugger n 1 2 @ %p 1 0 03696445 -lugh n 1 2 @ ; 1 0 09510305 -luging n 1 2 @ + 1 0 00447361 -lugosi n 1 1 @ 1 0 11144431 -lugsail n 1 2 @ #p 1 0 03696568 -lugubriousness n 1 2 @ + 1 0 04631470 -lugworm n 1 2 @ #m 1 0 01936671 -luigi_barnaba_gregorio_chiaramonti n 1 1 @ 1 0 11237550 -luigi_cherubini n 1 1 @ 1 0 10894905 -luigi_galvani n 1 1 @ 1 0 10988887 -luigi_pirandello n 1 1 @ 1 0 11235787 -luik n 1 2 @ #p 1 0 08851687 -luis_bunuel n 1 1 @ 1 0 10871655 -luis_de_gongora_y_argote n 1 1 @ 1 0 11006889 -lukasiewicz_notation n 1 1 @ 1 0 06814443 -luke n 2 4 @ #p ; - 2 0 11144604 06441973 -lukewarmness n 2 2 @ + 2 0 05016936 04630547 -lule_burgas n 1 3 @ #p ; 1 0 01285101 -lull n 2 2 @ + 2 1 15274441 14522956 -lullaby n 2 1 @ 2 1 07051851 00546738 -lulli n 1 1 @ 1 0 11144860 -lully n 2 1 @ 2 0 11145085 11144860 -lulu n 1 1 @ 1 0 10613996 -luluabourg n 1 2 @ #p 1 0 08735008 -lumbago n 1 1 @ 1 0 14328290 -lumbar_artery n 1 1 @ 1 0 05350453 -lumbar_nerve n 1 1 @ 1 0 05569690 -lumbar_pain n 1 1 @ 1 0 14328290 -lumbar_plexus n 2 1 @ 2 0 05507268 05507109 -lumbar_puncture n 1 1 @ 1 0 00944068 -lumbar_vein n 1 1 @ 1 0 05373145 -lumbar_vertebra n 1 2 @ #p 1 0 05589378 -lumber n 2 5 @ ~ %s %p + 2 1 14943580 02799175 -lumber_jacket n 1 1 @ 1 0 03696909 -lumber_room n 1 2 @ ; 1 0 03697109 -lumbering n 1 1 @ 1 0 00608789 -lumberjack n 2 2 @ ~ 2 0 10276045 03696909 -lumberman n 1 2 @ ~ 1 0 10276045 -lumberman's_saw n 1 2 @ ~ 1 0 04503836 -lumbermill n 1 1 @ 1 0 03697007 -lumberyard n 1 1 @ 1 0 03697265 -lumbosacral_plexus n 1 1 @ 1 0 05507427 -lumbus n 1 3 @ #p + 1 0 02463403 -lumen n 2 1 @ 2 0 13641299 05254077 -luminal n 1 1 @ 1 0 04256152 -luminance n 1 3 @ ~ = 1 0 05018103 -luminance_unit n 1 2 @ ~ 1 0 13639808 -luminary n 1 1 @ 1 1 10276238 -luminescence n 2 3 @ ~ + 2 1 11476430 05018785 -luminism n 1 1 @ 1 0 08468958 -luminosity n 1 4 @ ~ = + 1 1 05018103 -luminous_energy n 1 1 @ 1 0 11476939 -luminous_flux n 1 1 @ 1 0 15287486 -luminous_flux_unit n 1 2 @ ~ 1 0 13639927 -luminous_intensity_unit n 1 2 @ ~ 1 0 13640050 -luminousness n 1 4 @ ~ = + 1 0 05018103 -lumma n 1 1 @ 1 0 13699527 -lummox n 1 1 @ 1 1 10274639 -lump n 4 3 @ ~ + 4 4 07961016 14315192 10274639 09307300 -lump_sugar n 1 1 @ 1 0 07595368 -lump_sum n 1 1 @ 1 0 13299248 -lumpectomy n 1 1 @ 1 0 00684648 -lumpenproletariat n 1 2 @ ; 1 0 08181075 -lumpenus n 1 3 @ #m %m 1 0 02615829 -lumpenus_lumpretaeformis n 1 2 @ #m 1 0 02615980 -lumper n 2 3 ! @ + 2 0 10655169 10276477 -lumpfish n 1 3 @ ~ #m 1 0 02646667 -lumpsucker n 1 1 @ 1 0 02646892 -lumpy_jaw n 1 1 @ 1 0 14254397 -luna n 1 2 @ ; 1 0 09571249 -luna_moth n 1 2 @ #m 1 0 02302969 -lunacy n 2 3 @ ~ + 2 0 14395240 00512843 -lunar_calendar n 1 2 @ ~ 1 0 15178417 -lunar_caustic n 1 1 @ 1 0 15014406 -lunar_crater n 1 2 @ ~ 1 0 09344324 -lunar_day n 1 1 @ 1 0 15208740 -lunar_eclipse n 1 1 @ 1 0 07368993 -lunar_excursion_module n 1 1 @ 1 0 03697366 -lunar_latitude n 1 1 @ 1 0 08595958 -lunar_module n 1 1 @ 1 0 03697366 -lunar_month n 1 2 @ #p 1 0 15207872 -lunar_time_period n 1 1 @ 1 0 15275727 -lunar_year n 1 2 @ %p 1 0 15203017 -lunaria n 1 3 @ #m %m 1 0 11891395 -lunaria_annua n 1 2 @ #m 1 0 11891541 -lunate_bone n 1 1 @ 1 0 05272423 -lunatic n 2 2 @ ~ 2 0 10276764 09991530 -lunatic_fringe n 1 1 @ 1 0 08360430 -lunation n 1 2 @ #p 1 1 15207872 -lunch n 1 3 @ ~ + 1 1 07575076 -lunch_meat n 1 1 @ 1 0 07678428 -lunch_meeting n 1 1 @ 1 0 08385849 -lunch_period n 1 1 @ 1 0 15165917 -luncheon n 1 2 @ ~ 1 1 07575076 -luncheon_meat n 1 1 @ 1 0 07678428 -luncheon_meeting n 1 1 @ 1 0 08385849 -luncheon_voucher n 1 1 @ 1 0 06518420 -luncher n 1 2 @ + 1 0 10277132 -lunching n 1 2 @ + 1 0 00841297 -lunchroom n 1 1 @ 1 1 03697552 -lunchtime n 1 1 @ 1 0 15165917 -lund n 1 2 @ #p 1 0 08766571 -lunda n 1 3 @ #m %m 1 0 02048242 -lunda_cirrhata n 1 2 @ #m 1 0 02048353 -lunette n 2 2 @ #p 2 0 03697812 03697665 -lung n 1 3 @ #p %p 1 1 05387544 -lung-power n 1 1 @ 1 0 05202413 -lung_cancer n 1 1 @ 1 0 14251317 -lunge n 2 4 @ %p + ; 2 1 00290276 01174251 -lungen n 1 3 @ #m %p 1 0 12743352 -lunger n 2 2 @ + 2 0 10277231 09960001 -lungfish n 1 3 @ ~ #m 1 0 02516188 -lungi n 1 1 @ 1 0 03697913 -lungless_salamander n 1 2 @ #m 1 0 01636127 -lungyi n 1 1 @ 1 0 03697913 -lunisolar_calendar n 1 2 @ ~ 1 0 15178546 -lunitidal_interval n 1 1 @ 1 0 15270697 -lunkhead n 1 1 @ 1 1 10039663 -lunt n 1 1 @ 1 0 11145199 -lunula n 2 2 @ #p 2 0 05582038 03698123 -lunule n 1 2 @ #p 1 0 05582038 -luo n 1 1 @ 1 0 06998392 -luoyang n 1 2 @ #p 1 0 08727230 -lupin n 1 3 @ ~ #m 1 0 12546183 -lupine n 1 3 @ ~ #m 1 0 12546183 -lupinus n 1 3 @ #m %m 1 0 12546015 -lupinus_albus n 1 1 @ 1 0 12546420 -lupinus_arboreus n 1 2 @ #m 1 0 12546617 -lupinus_luteus n 1 1 @ 1 0 12546832 -lupinus_perennis n 1 2 @ #m 1 0 12546962 -lupinus_subcarnosus n 1 1 @ 1 0 12547215 -lupinus_texensis n 1 1 @ 1 0 12547503 -lupus n 2 2 @ ~ 2 0 14229912 09344449 -lupus_erythematosus n 1 1 @ 1 0 14221138 -lupus_vulgaris n 1 1 @ 1 0 14220308 -lurch n 4 4 @ ~ + ; 4 1 00289388 07476282 00337210 00290276 -lurcher n 1 1 @ 1 0 10277352 -lure n 3 4 @ ~ #p + 3 1 04689660 05695232 02776205 -luridness n 3 2 @ + 3 0 07088053 04977561 04782610 -lurker n 1 2 @ + 1 0 10277352 -lurking_place n 1 1 @ 1 0 08584361 -lusaka n 1 2 @ #p 1 0 09165996 -lusatian n 1 1 @ 1 0 06945344 -luschka's_tonsil n 1 2 @ #p 1 0 05529286 -luscinia n 1 3 @ #m %m 1 0 01559964 -luscinia_luscinia n 1 2 @ #m 1 0 01560280 -luscinia_megarhynchos n 1 3 @ ~ #m 1 0 01560105 -lusciousness n 1 1 @ 1 0 04995793 -lush n 1 1 @ 1 0 09782167 -lushness n 1 2 @ + 1 0 05116243 -lushun n 1 2 @ #p 1 0 08727396 -lusitania n 1 3 @ #p + 1 0 09166304 -lust n 2 2 @ + 2 2 07489714 00759335 -lust_for_learning n 1 1 @ 1 0 05682798 -luster n 3 1 @ 3 2 04954920 04954683 04701162 -lusterlessness n 1 2 @ + 1 0 04956110 -lusterware n 1 1 @ 1 0 03698226 -lustfulness n 1 2 @ + 1 0 07489714 -lustiness n 1 2 @ + 1 0 05031012 -lustre n 3 2 @ + 3 1 04701162 04954920 04954683 -lustrelessness n 1 2 @ + 1 0 04956110 -lustrum n 2 3 @ + ; 2 0 15204907 01027662 -lusus_naturae n 1 2 @ ~ 1 0 10109443 -lut_desert n 1 2 @ #p 1 0 09169188 -luta n 1 3 @ #p %p 1 0 08726745 -lutanist n 1 3 @ ~ + 1 0 10277638 -lute n 2 3 @ %p + 2 0 14706214 03698360 -luteal_phase n 1 2 @ #p 1 0 15289208 -lutecium n 1 1 @ 1 0 14644063 -lutefisk n 1 2 @ ; 1 0 07871065 -lutein n 1 1 @ 1 0 14721635 -luteinizing_hormone n 1 1 @ 1 0 14749272 -lutenist n 1 3 @ ~ + 1 0 10277638 -luteotropin n 1 1 @ 1 0 14749543 -lutetium n 1 1 @ 1 0 14644063 -lutfisk n 1 2 @ ; 1 0 07871065 -luther n 1 1 @ 1 0 11145364 -luther_burbank n 1 1 @ 1 0 10872105 -lutheran n 1 2 @ #m 1 0 10277815 -lutheran_church n 1 2 @ %m 1 0 08091744 -lutheranism n 1 1 @ 1 0 06230208 -luthier n 1 1 @ 1 0 10277509 -luting n 1 1 @ 1 0 14706214 -lutist n 1 3 @ ~ + 1 0 10277638 -lutjanidae n 1 3 @ #m %m 1 0 02586382 -lutjanus n 1 3 @ #m %m 1 0 02586865 -lutjanus_analis n 1 1 @ 1 0 02587479 -lutjanus_apodus n 1 2 @ #m 1 0 02587618 -lutjanus_blackfordi n 1 3 @ #m %p 1 0 02587051 -lutjanus_griseus n 1 2 @ #m 1 0 02587300 -lutra n 1 3 @ #m %m 1 0 02444647 -lutra_canadensis n 1 1 @ 1 0 02445004 -lutra_lutra n 1 1 @ 1 0 02445171 -lutrinae n 1 2 @ #m 1 0 02444500 -lutyens n 1 1 @ 1 0 11145563 -lutzen n 1 3 @ #p ; 1 0 01285305 -luvaridae n 1 3 @ #m %m 1 0 02632239 -luvarus n 1 3 @ #m %m 1 0 02632359 -luvarus_imperialis n 1 2 @ #m 1 0 02632494 -luvian n 1 1 @ 1 0 06976161 -luwian n 1 1 @ 1 0 06976161 -lux n 1 2 @ #p 1 0 13640716 -luxation n 1 3 @ ~ + 1 0 07445010 -luxembourg n 2 6 @ #m #p %m %p + 2 0 08961402 08960987 -luxembourg-ville n 1 2 @ #p 1 0 08961402 -luxembourg_city n 1 2 @ #p 1 0 08961402 -luxembourg_franc n 1 2 @ %p 1 0 13678145 -luxembourger n 1 3 @ #m + 1 0 09721244 -luxemburg n 2 6 @ #m #p %m %p + 2 0 08961402 08960987 -luxemburger n 1 3 @ #m + 1 0 09721244 -luxor n 1 2 @ #p 1 0 08899577 -luxuria n 1 1 @ 1 0 00759335 -luxuriance n 1 2 @ + 1 0 05116243 -luxuriation n 1 2 @ + 1 0 01071921 -luxuriousness n 1 2 @ + 1 0 14492373 -luxury n 3 2 @ + 3 2 05119223 05146471 14492373 -luxury_liner n 1 1 @ 1 0 03698604 -luyia n 1 1 @ 1 0 06994089 -luzon n 1 2 @ #p 1 0 08980814 -lwei n 1 2 @ #p 1 0 13684037 -lx n 2 2 @ #p 2 0 13749778 13640716 -lxx n 1 1 @ 1 0 13749894 -lxxviii n 1 1 @ 1 0 13750033 -lxxx n 1 1 @ 1 0 13750164 -lyallpur n 1 2 @ #p 1 0 08976799 -lycaena n 1 3 @ #m %m 1 0 02281987 -lycaena_hypophlaeas n 1 2 @ #m 1 0 02282553 -lycaenid n 1 3 @ ~ #m 1 0 02281787 -lycaenid_butterfly n 1 3 @ ~ #m 1 0 02281787 -lycaenidae n 1 3 @ #m %m 1 0 02281552 -lycaeon n 1 2 @ #m 1 0 02116630 -lycanthrope n 1 1 @ 1 0 09503121 -lycanthropy n 1 2 @ ; 1 0 05201183 -lycaon_pictus n 1 1 @ 1 0 02116738 -lycee n 1 2 @ ~ 1 0 08284481 -lyceum n 2 2 @ ~ 2 0 08284481 03698723 -lychee n 1 2 @ #p 1 0 07766173 -lychgate n 1 1 @ 1 0 03698815 -lychins_chalcedonica n 1 1 @ 1 0 11811921 -lychins_floscuculi n 1 1 @ 1 0 11811706 -lychnis n 1 3 @ ~ #m 1 0 11811473 -lychnis_alba n 1 2 @ #m 1 0 11816336 -lychnis_coronaria n 1 1 @ 1 0 11812094 -lychnis_dioica n 1 2 @ #m 1 0 11816121 -lychnis_flos-cuculi n 1 1 @ 1 0 11811706 -lycia n 1 2 @ #p 1 0 08787878 -lycian n 1 1 @ 1 0 06976087 -lycium n 1 3 @ #m %m 1 0 12904720 -lycium_barbarum n 1 1 @ 1 0 12905135 -lycium_carolinianum n 1 2 @ #m 1 0 12905412 -lycium_halimifolium n 1 1 @ 1 0 12905135 -lycopene n 1 1 @ 1 0 14721342 -lycoperdaceae n 1 3 @ #m %m 1 0 13043516 -lycoperdales n 1 3 @ #m %m 1 0 13043264 -lycoperdon n 1 2 @ #m 1 0 13043746 -lycopersicon n 1 3 @ #m %m 1 0 12905655 -lycopersicon_esculentum n 1 3 @ ~ %p 1 0 12905817 -lycopersicon_esculentum_cerasiforme n 1 4 @ ~ #m %p 1 0 12906021 -lycopersicum n 1 3 @ #m %m 1 0 12905655 -lycophyta n 1 2 @ #m 1 0 13221243 -lycopod n 1 4 @ ~ #m %p 1 0 13221529 -lycopodiaceae n 1 3 @ #m %m 1 0 13222477 -lycopodiales n 1 3 @ #m %m 1 0 13222227 -lycopodiate n 1 3 @ #m %m 1 0 13220842 -lycopodineae n 1 2 @ #m 1 0 13221383 -lycopodium n 1 2 @ #m 1 0 13222669 -lycopodium_alopecuroides n 1 1 @ 1 0 13223843 -lycopodium_alpinum n 1 1 @ 1 0 13222985 -lycopodium_clavitum n 1 1 @ 1 0 13223485 -lycopodium_complanatum n 1 1 @ 1 0 13223588 -lycopodium_lucidulum n 1 1 @ 1 0 13222877 -lycopodium_obscurum n 1 1 @ 1 0 13223710 -lycopodium_selago n 1 1 @ 1 0 13223090 -lycopsida n 1 3 @ #m %m 1 0 13220842 -lycopus n 1 3 @ #m %m 1 0 12852049 -lycopus_americanus n 1 2 @ #m 1 0 12852428 -lycopus_europaeus n 1 2 @ #m 1 0 12852570 -lycopus_virginicus n 1 2 @ #m 1 0 12852234 -lycosa n 1 3 @ #m %m 1 0 01775230 -lycosa_tarentula n 1 2 @ #m 1 0 01775370 -lycosidae n 1 3 @ #m %m 1 0 01774918 -lydia n 1 2 @ #p 1 0 08788004 -lydia_kamekeha_paki_liliuokalani n 1 1 @ 1 0 11131981 -lydian n 1 1 @ 1 0 06976244 -lye n 1 2 @ ~ 1 0 14943814 -lye_hominy n 1 1 @ 1 0 07732433 -lygaeid n 1 3 @ ~ #m 1 0 02238887 -lygaeid_bug n 1 3 @ ~ #m 1 0 02238887 -lygaeidae n 1 3 @ #m %m 1 0 02238743 -lyginopteridales n 1 3 @ #m %m 1 0 11604904 -lyginopteris n 1 2 @ #m 1 0 11605396 -lygodium n 1 3 @ #m %m 1 0 12956029 -lygodium_microphyllum n 1 1 @ 1 0 12956588 -lygodium_palmatum n 1 1 @ 1 0 12956367 -lygus n 1 3 @ #m %m 1 0 02238113 -lygus_bug n 1 3 @ ~ #m 1 0 02238235 -lygus_lineolaris n 1 1 @ 1 0 02238358 -lying n 1 3 @ ~ + 1 0 00751944 -lying-in n 1 4 @ ~ #p %p 1 0 14048441 -lying_in_wait n 1 2 @ ~ 1 0 01246926 -lying_under_oath n 1 1 @ 1 0 00772381 -lyly n 1 1 @ 1 0 11145730 -lyman_frank_brown n 1 1 @ 1 0 10838665 -lymantria n 1 3 @ #m %m 1 0 02285909 -lymantria_dispar n 1 2 @ #m 1 0 02286089 -lymantriid n 1 3 @ ~ #m 1 0 02285548 -lymantriidae n 1 3 @ #m %m 1 0 02285359 -lyme_arthritis n 1 1 @ 1 0 14265508 -lyme_disease n 1 1 @ 1 0 14265508 -lyme_grass n 1 3 @ ~ #m 1 0 12119099 -lymph n 1 4 @ #s #p + 1 0 05404074 -lymph_cell n 1 3 @ ~ #p 1 0 05451384 -lymph_gland n 1 3 @ ~ #p 1 0 05430095 -lymph_node n 1 3 @ ~ #p 1 1 05430095 -lymph_vessel n 1 3 @ ~ #p 1 0 05396807 -lymphadenitis n 1 1 @ 1 0 14349541 -lymphadenoma n 1 1 @ 1 0 14241733 -lymphadenopathy n 1 1 @ 1 0 14241825 -lymphangiectasia n 1 1 @ 1 0 14064186 -lymphangiectasis n 1 1 @ 1 0 14064186 -lymphangiogram n 1 1 @ 1 0 03698977 -lymphangiography n 1 1 @ 1 0 00905528 -lymphangioma n 1 1 @ 1 0 14247954 -lymphangitis n 1 1 @ 1 0 14349628 -lymphatic_system n 1 3 @ #p %p 1 0 05396366 -lymphatic_tissue n 1 3 @ ~ #p 1 0 05287882 -lymphatic_vessel n 1 3 @ ~ #p 1 0 05396807 -lymphedema n 1 1 @ 1 0 14120614 -lymphoblast n 1 1 @ 1 0 05452765 -lymphoblastic_leukemia n 1 1 @ 1 0 14244542 -lymphocyte n 1 4 @ ~ #p + 1 1 05451384 -lymphocytic_choriomeningitis n 1 1 @ 1 0 14137408 -lymphocytic_choriomeningitis_virus n 1 2 @ #m 1 0 01330966 -lymphocytic_leukemia n 1 2 @ ~ 1 0 14244353 -lymphocytopenia n 1 1 @ 1 0 14196823 -lymphocytosis n 1 1 @ 1 0 14196965 -lymphogranuloma n 1 1 @ 1 0 14318030 -lymphogranuloma_venereum n 1 1 @ 1 0 14137561 -lymphography n 1 1 @ 1 0 00905528 -lymphoid_tissue n 1 3 @ ~ #p 1 0 05287882 -lymphokine n 1 2 @ ~ 1 0 14943950 -lymphoma n 1 2 @ ~ 1 0 14241968 -lymphopathia_venereum n 1 1 @ 1 0 14137561 -lymphopenia n 1 1 @ 1 0 14196823 -lymphopoiesis n 1 1 @ 1 0 13509383 -lymphuria n 1 1 @ 1 0 14267994 -lynch_law n 1 1 @ 1 0 00417005 -lynch_mob n 1 1 @ 1 0 08184730 -lynchburg n 1 2 @ #p 1 0 09151114 -lynching n 1 2 @ + 1 0 00224599 -lynchpin n 2 1 @ 2 0 05694232 03670339 -lyndon_baines_johnson n 1 1 @ 1 0 11088346 -lyndon_johnson n 1 1 @ 1 0 11088346 -lynn_fontanne n 1 1 @ 1 0 10974271 -lynx n 2 3 @ ~ #m 2 0 06571724 02127052 -lynx_canadensis n 1 1 @ 1 0 02127381 -lynx_caracal n 1 1 @ 1 0 02127678 -lynx_lynx n 1 1 @ 1 0 02127292 -lynx_pardina n 1 1 @ 1 0 02127586 -lynx_rufus n 1 1 @ 1 0 02127482 -lyon n 1 2 @ #p 1 0 08936647 -lyonia n 1 3 @ #m %m 1 0 12240715 -lyonia_ligustrina n 1 2 @ #m 1 0 12241192 -lyonia_lucida n 1 2 @ #m 1 0 12241426 -lyonia_mariana n 1 2 @ #m 1 0 12240965 -lyonnais n 1 3 @ #p %p 1 0 08945110 -lyonnaise_sauce n 1 1 @ 1 0 07839864 -lyons n 3 2 @ #p 3 0 08936647 08316564 08316346 -lyophilisation n 1 2 @ + 1 0 13484937 -lyophilization n 1 2 @ + 1 0 13484937 -lypressin n 1 1 @ 1 0 03699138 -lyra n 1 2 @ %m 1 0 09344559 -lyrate_leaf n 1 1 @ 1 0 13158605 -lyre n 1 2 @ ~ 1 0 03699280 -lyre-flower n 1 2 @ #m 1 0 11910271 -lyre_snake n 1 3 @ ~ #m 1 0 01739647 -lyrebird n 1 2 @ #m 1 0 01545574 -lyreflower n 1 2 @ #m 1 0 11910271 -lyric n 2 5 @ ~ #p %p + 2 1 07051975 06380726 -lyric_poem n 1 3 @ ~ %p 1 1 06380726 -lyricality n 1 2 @ + 1 0 04983688 -lyricism n 2 1 @ 2 0 04983688 04634739 -lyricist n 1 3 @ ~ + 1 1 10277912 -lyrist n 1 2 @ ~ 1 0 10277912 -lyrurus n 1 3 @ #m %m 1 0 01795425 -lyrurus_mlokosiewiczi n 1 1 @ 1 0 01795900 -lyrurus_tetrix n 1 1 @ 1 0 01795735 -lysander n 1 1 @ 1 0 11145850 -lysenko n 1 1 @ 1 0 11146010 -lysergic_acid n 1 1 @ 1 0 14614864 -lysergic_acid_diethylamide n 1 2 @ ~ 1 0 03699396 -lysichiton n 1 2 @ #m 1 0 11788926 -lysichiton_americanum n 1 1 @ 1 0 11789066 -lysichitum n 1 2 @ #m 1 0 11788926 -lysiloma n 1 3 @ #m %m 1 0 11762706 -lysiloma_bahamensis n 1 2 @ #m 1 0 11762927 -lysiloma_latisiliqua n 1 2 @ #m 1 0 11762927 -lysiloma_sabicu n 1 3 @ #m %s 1 0 11763142 -lysimachia n 1 3 @ #m %m 1 0 12094786 -lysimachia_ciliatum n 1 1 @ 1 0 12095543 -lysimachia_clethroides_duby n 1 1 @ 1 0 12095281 -lysimachia_nemorum n 1 1 @ 1 0 12095412 -lysimachia_nummularia n 1 1 @ 1 0 12095647 -lysimachia_quadrifolia n 1 1 @ 1 0 12096089 -lysimachia_terrestris n 1 1 @ 1 0 12095934 -lysimachia_vulgaris n 1 1 @ 1 0 12095781 -lysimachus n 1 1 @ 1 0 11146193 -lysin n 1 2 @ ~ 1 0 15029646 -lysine n 1 1 @ 1 0 14944182 -lysine_intolerance n 1 1 @ 1 0 14194183 -lysinemia n 1 1 @ 1 0 14162943 -lysippus n 1 1 @ 1 0 11146407 -lysis n 2 3 @ ~ ; 2 0 13509843 13509528 -lysogenicity n 1 2 @ + 1 0 14194345 -lysogenisation n 1 1 @ 1 0 13509967 -lysogenization n 1 2 @ + 1 0 13509967 -lysogeny n 1 2 @ + 1 0 14194345 -lysol n 1 1 @ 1 0 14944317 -lysosome n 1 1 @ 1 0 05434203 -lysozyme n 1 1 @ 1 0 14944455 -lyssa n 1 1 @ 1 0 14271667 -lyssavirus n 1 2 @ #m 1 0 01340785 -lythraceae n 1 3 @ #m %m 1 0 12328026 -lythrum n 1 3 @ #m %m 1 0 12328241 -lythrum_hyssopifolia n 1 2 @ #m 1 0 12328801 -lythrum_salicaria n 1 2 @ #m 1 0 12328567 -lytton n 1 1 @ 1 0 11146494 -lytton_strachey n 1 2 @ #m 1 0 11320631 -m n 6 5 @ ~ #m #p %p 6 2 13659162 05040081 13750844 13628246 13628056 06832464 -m-1 n 1 1 @ 1 0 03416775 -m-1_rifle n 1 1 @ 1 0 03416775 -m-theory n 1 3 @ %p ; 1 0 05890963 -m._j._schleiden n 1 1 @ 1 0 11284541 -m.m. n 1 3 @ #p ; 1 0 15286042 -m1 n 1 1 @ 1 0 13357410 -m2 n 1 1 @ 1 0 13357572 -m3 n 1 1 @ 1 0 13357720 -ma n 4 4 @ #p %p - 4 2 10278128 06701001 13637613 09095023 -ma'am n 1 2 @ ~ 1 1 09989290 -maalox n 1 2 @ ; 1 0 14777441 -maar n 1 1 @ 1 0 09344724 -maarianhamina n 1 2 @ #p 1 0 08780720 -mac n 1 4 @ ~ %s ; 1 0 03702719 -macaca n 1 3 @ #m %m 1 0 02487217 -macaca_irus n 1 1 @ 1 0 02488003 -macaca_mulatta n 1 1 @ 1 0 02487547 -macaca_radiata n 1 1 @ 1 0 02487675 -macaca_sylvana n 1 1 @ 1 0 02487847 -macadam n 2 2 @ + 2 0 14977075 04394630 -macadamia n 1 3 @ ~ #m 1 0 12221191 -macadamia_integrifolia n 1 2 @ #m 1 0 12221368 -macadamia_nut n 2 5 @ #m #p %p ; 2 0 12221522 07774596 -macadamia_nut_tree n 1 4 @ #m %p ; 1 0 12221522 -macadamia_ternifolia n 1 4 @ #m %p ; 1 0 12221522 -macadamia_tetraphylla n 1 2 @ #m 1 0 12221801 -macadamia_tree n 1 3 @ ~ #m 1 0 12221191 -macamba n 1 2 @ %p 1 0 12583855 -macao n 1 1 @ 1 0 08731423 -macao_monetary_unit n 1 2 @ ~ 1 0 13690321 -macaque n 1 3 @ ~ #m 1 0 02487347 -macaroni n 2 1 @ 2 0 10278263 07700964 -macaroni_and_cheese n 1 1 @ 1 0 07871234 -macaroni_salad n 1 1 @ 1 0 07807834 -macaroni_wheat n 1 1 @ 1 0 12142450 -macaroon n 1 2 @ ~ 1 0 07636534 -macarthur n 1 1 @ 1 0 11146670 -macau n 1 1 @ 1 0 08731423 -macaulay n 1 1 @ 1 0 11146914 -macaw n 1 2 @ #m 1 0 01818515 -macbeth n 1 1 @ 1 0 11147099 -macdowell n 1 1 @ 1 0 11147185 -mace n 4 3 @ %s ; 4 0 14944617 10278456 07815294 07267461 -macebearer n 1 1 @ 1 0 10278456 -macedoine n 1 1 @ 1 0 07871335 -macedon n 1 4 @ #p %m - 1 0 08915372 -macedonia n 2 6 @ #p %m %p + - 2 0 08961630 08915372 -macedonian n 2 3 @ ~ #m 2 0 09721444 06945473 -macedonian_war n 1 1 @ 1 0 01285567 -macer n 1 1 @ 1 0 10278456 -maceration n 2 2 @ + 2 0 13510152 05001867 -macgregor n 1 1 @ 1 0 11147348 -macguffin n 1 2 @ ; 1 0 05865774 -mach n 1 1 @ 1 0 11147533 -mach_number n 1 1 @ 1 0 13822876 -machaeranthera n 1 3 @ #m %m 1 0 11993007 -machaeranthera_bigelovii n 1 2 @ #m 1 0 11993444 -machaeranthera_tanacetifolia n 1 2 @ #m 1 0 11993203 -machaeranthera_tortifoloia n 1 2 @ #m 1 0 11993675 -machete n 1 1 @ 1 0 03699591 -machiavelli n 1 2 @ + 1 0 11147729 -machiavellian n 1 1 @ 1 0 10278568 -machiavellianism n 1 1 @ 1 0 06214164 -machicolation n 1 2 @ + 1 0 03699754 -machilid n 1 2 @ #m 1 0 02271222 -machilidae n 1 3 @ #m %m 1 0 02271087 -machination n 1 3 @ ~ + 1 0 05908520 -machinator n 1 4 @ ~ #m + 1 0 09958892 -machine n 6 5 @ ~ %p + - 6 4 03699975 10278666 08264759 03700963 08264583 02958343 -machine-displayable_text n 1 1 @ 1 0 06388777 -machine-oriented_language n 1 1 @ 1 0 06899633 -machine-readable_text n 1 2 @ ~ 1 0 06388918 -machine_bolt n 1 1 @ 1 0 03701191 -machine_code n 1 1 @ 1 0 06357985 -machine_gun n 1 4 @ ~ %p + 1 1 03701391 -machine_gunner n 1 1 @ 1 0 09811852 -machine_language n 2 1 @ 2 0 06899633 06357985 -machine_operation n 1 2 @ ~ 1 0 13450862 -machine_pistol n 1 1 @ 1 0 02923682 -machine_politician n 1 1 @ 1 0 10278805 -machine_readable_dictionary n 1 1 @ 1 0 06639023 -machine_rifle n 1 2 @ ~ 1 0 02760855 -machine_screw n 1 1 @ 1 0 03701790 -machine_shop n 1 1 @ 1 1 03701947 -machine_stitch n 1 2 @ ~ 1 0 03702067 -machine_tool n 1 2 @ ~ 1 0 03702248 -machine_translation n 1 1 @ 1 0 06133503 -machinery n 2 3 @ ~ + 2 2 03701640 08434029 -machinist n 1 2 @ + 1 1 10279018 -machinist's_vise n 1 1 @ 1 0 03702440 -machismo n 1 1 @ 1 0 04667180 -machmeter n 1 1 @ 1 0 03702582 -macho n 1 1 @ 1 0 10279219 -macho-man n 1 1 @ 1 0 10665587 -machu_picchu n 1 2 @ #p 1 0 08980119 -machupo_virus n 1 2 @ #m 1 0 01331188 -macintosh n 2 5 @ ~ #s %s ; 2 0 03703590 03702719 -mack n 1 4 @ ~ %s ; 1 0 03702719 -mack_sennett n 1 1 @ 1 0 11293008 -mackem n 1 1 @ 1 0 10279317 -mackenzie n 2 2 @ #p 2 0 11147924 09344863 -mackenzie_river n 1 2 @ #p 1 0 09344863 -mackerel n 2 4 @ ~ #m #p 2 0 07781319 02624167 -mackerel_scad n 1 2 @ #m 1 0 02581482 -mackerel_shad n 1 2 @ #m 1 0 02581482 -mackerel_shark n 1 3 @ ~ #m 1 0 01483522 -mackerel_sky n 1 1 @ 1 0 09345002 -mackinac_bridge n 1 2 @ #p 1 0 03702904 -mackinaw n 4 1 @ 4 1 03703463 03703320 03703203 03703075 -mackinaw_blanket n 1 1 @ 1 0 03703320 -mackinaw_boat n 1 1 @ 1 0 03703203 -mackinaw_coat n 1 1 @ 1 0 03703463 -mackintosh n 2 5 @ ~ #s %s ; 2 0 03703590 03702719 -mackle n 1 1 @ 1 0 06591342 -macleaya n 1 3 @ #m %m 1 0 11906359 -macleaya_cordata n 1 2 @ #m 1 0 11906514 -macleish n 1 1 @ 1 0 11148152 -macleod n 1 1 @ 1 0 11148259 -maclura n 1 2 @ #m 1 0 12399784 -maclura_pomifera n 1 1 @ 1 0 12399899 -macon n 2 2 @ #p 2 0 09077556 07896661 -maconnais n 1 1 @ 1 0 07896661 -macoun n 1 1 @ 1 0 07741138 -macowanites n 1 3 @ #m %m 1 0 13048212 -macowanites_americanus n 1 2 @ #m 1 0 13048447 -macrame n 1 2 @ + 1 0 03703730 -macrencephaly n 1 2 @ + 1 0 14152492 -macro n 1 1 @ 1 0 06586886 -macro_instruction n 1 1 @ 1 0 06586886 -macrobiotic_diet n 1 1 @ 1 0 07564515 -macrobiotics n 1 2 @ + 1 0 06042312 -macrocephalon n 1 3 @ #m %m 1 0 01802033 -macrocephalon_maleo n 1 2 @ #m 1 0 01802159 -macrocephaly n 1 2 @ + 1 0 14508974 -macrocheira n 1 3 @ #m %m 1 0 01982211 -macrocheira_kaempferi n 1 2 @ #m 1 0 01982347 -macroclemys n 1 3 @ #m %m 1 0 01666431 -macroclemys_temmincki n 1 2 @ #m 1 0 01666585 -macrocosm n 1 5 @ ~ %m %p + 1 0 09466280 -macrocyte n 1 1 @ 1 0 05449661 -macrocytic_anaemia n 1 1 @ 1 0 14166968 -macrocytic_anemia n 1 1 @ 1 0 14166968 -macrocytosis n 1 1 @ 1 0 14207711 -macrodactylus n 1 3 @ #m %m 1 0 02174870 -macrodactylus_subspinosus n 1 2 @ #m 1 0 02175014 -macrodantin n 1 3 @ %s ; 1 0 03826443 -macroeconomic_expert n 1 1 @ 1 0 10279392 -macroeconomics n 1 2 @ + 1 0 06150933 -macroeconomist n 1 2 @ + 1 0 10279392 -macroevolution n 1 1 @ 1 0 13510263 -macroglia n 1 2 @ %p 1 0 05467619 -macroglossia n 1 1 @ 1 0 14159459 -macromolecule n 1 3 @ ~ + 1 0 14944888 -macron n 1 1 @ 1 0 06823440 -macronectes n 1 3 @ #m %m 1 0 02059723 -macronectes_giganteus n 1 2 @ #m 1 0 02059852 -macrophage n 1 2 @ ~ 1 1 05450740 -macropodidae n 1 3 @ #m %m 1 0 01876843 -macropus n 1 3 @ #m %m 1 0 01877407 -macropus_agiles n 1 2 @ #m 1 0 01878061 -macropus_giganteus n 1 2 @ #m 1 0 01877606 -macrorhamphosidae n 1 3 @ #m %m 1 0 01456939 -macroscopic_anatomy n 1 2 @ ~ 1 0 06059865 -macrosporangium n 1 1 @ 1 0 11687432 -macrospore n 1 1 @ 1 0 11688199 -macrothelypteris n 1 2 @ #m 1 0 13229018 -macrotis n 1 3 @ #m %m 1 0 01876535 -macrotis_lagotis n 1 2 @ #m 1 0 01876667 -macrotus n 1 2 @ #m 1 0 02142407 -macrotus_californicus n 1 2 @ #m 1 0 02142407 -macrotyloma n 1 3 @ #m %m 1 0 12547658 -macrotyloma_uniflorum n 1 2 @ #m 1 0 12547872 -macrouridae n 1 3 @ #m %m 1 0 02525543 -macrozamia n 1 2 @ #m 1 0 11603835 -macrozamia_communis n 1 2 @ #m 1 0 11604046 -macrozamia_spiralis n 1 2 @ #m 1 0 11604046 -macrozoarces n 1 3 @ #m %m 1 0 02617956 -macrozoarces_americanus n 1 2 @ #m 1 0 02618094 -macruridae n 1 3 @ #m %m 1 0 02525543 -macula n 3 4 @ ~ #p + 3 0 11511004 05455690 05244934 -macula_lutea n 1 2 @ #p 1 0 05455690 -macular_area n 1 2 @ #p 1 0 05455690 -macular_degeneration n 1 2 @ ~ 1 0 14256668 -macular_edema n 1 1 @ 1 0 14254768 -maculation n 2 3 @ ~ + 2 0 04682462 00276813 -macule n 1 3 @ ~ #p 1 0 05244934 -macumba n 3 2 @ ; 3 0 08152069 07059821 06225505 -macushla n 1 2 @ ; 1 0 10279540 -mad-dog_skullcap n 1 1 @ 1 0 12868019 -mad-dog_weed n 1 1 @ 1 0 12868019 -mad_anthony_wayne n 1 1 @ 1 0 11377564 -mad_apple n 2 4 @ #m #p %p 2 0 12896000 07713074 -mad_cow_disease n 1 1 @ 1 0 14261846 -madagascan n 1 2 @ #m 1 0 09721647 -madagascar n 2 5 @ #p %m %p + 2 0 08962187 08961970 -madagascar_cat n 1 2 @ #m 1 0 02497673 -madagascar_franc n 1 1 @ 1 0 13678273 -madagascar_jasmine n 1 2 @ #m 1 0 13239177 -madagascar_pepper n 1 4 @ #m %s %p 1 0 13149506 -madagascar_periwinkle n 1 2 @ #m 1 0 11772408 -madagascar_plum n 1 2 @ #m 1 0 12378249 -madake n 1 2 @ #m 1 0 12149521 -madam n 2 2 @ ~ 2 1 09989290 10279669 -madame n 1 1 @ 1 0 10279778 -madame_curie n 1 1 @ 1 0 10917703 -madame_de_maintenon n 1 1 @ 1 0 11150224 -madame_de_stael n 1 1 @ 1 0 11311959 -madame_tussaud n 1 1 @ 1 0 11353510 -madcap n 1 2 @ ~ 1 0 09991530 -madder n 1 2 @ + 1 0 12661227 -madder_family n 1 3 @ #m %m 1 0 12660009 -madderwort n 1 3 @ ~ #m 1 0 12660601 -madeira n 3 3 @ ~ #p 3 0 09345127 08985559 07900616 -madeira_cake n 1 1 @ 1 0 07632515 -madeira_islands n 1 3 @ #p %p 1 0 08985724 -madeira_river n 1 2 @ #p 1 0 09345127 -madeira_sponge n 1 1 @ 1 0 07632515 -madeira_winter_cherry n 1 1 @ 1 0 12896862 -madeiras n 1 3 @ #p %p 1 0 08985724 -mademoiselle n 1 2 @ #m 1 0 02595339 -madhouse n 1 1 @ 1 0 02820798 -madia n 1 3 @ #m %m 1 0 11993932 -madia_elegans n 1 2 @ #m 1 0 11994336 -madia_oil n 1 2 @ #s 1 0 11994718 -madia_oil_plant n 1 2 @ %s 1 0 11994527 -madia_sativa n 1 2 @ %s 1 0 11994527 -madison n 2 3 @ #p %p 2 0 11148486 09158024 -madman n 1 2 @ ~ 1 1 10276764 -madnep n 1 1 @ 1 0 12942025 -madness n 5 3 @ ~ + 5 1 14395240 14271667 07516997 05647156 04885784 -madonna n 2 1 @ 2 0 11161412 11148748 -madonna_lily n 1 1 @ 1 0 12426978 -madonna_louise_ciccone n 1 1 @ 1 0 11148748 -madoqua n 1 3 @ #m %m 1 0 02421612 -madras n 3 2 @ #p 3 0 08905467 08904392 03703862 -madrasa n 1 2 @ ; 1 0 08283180 -madrasah n 1 2 @ ; 1 0 08283180 -madreporaria n 1 3 @ #m %m 1 0 01916738 -madrepore n 1 3 @ ~ #m 1 0 01916925 -madrid n 1 2 @ #p 1 0 09024467 -madrigal n 1 2 @ + 1 0 07052925 -madrigalist n 1 2 @ + 1 0 10279867 -madrilene n 1 1 @ 1 0 07584228 -madriporian_coral n 1 3 @ ~ #m 1 0 01916925 -madrona n 1 1 @ 1 0 12230540 -madrono n 1 1 @ 1 0 12230540 -madwoman n 1 1 @ 1 0 10279964 -madwort n 1 2 @ #m 1 0 11870747 -mae_west n 2 1 @ 2 0 11382278 03703945 -maeandra n 1 3 @ #m %m 1 0 01917167 -maelstrom n 1 2 @ ~ 1 0 07433145 -maenad n 2 2 @ ; 2 0 10280034 09787390 -maestro n 1 2 @ ~ 1 0 10280130 -maeterlinck n 1 1 @ 1 0 11148899 -mafa n 1 1 @ 1 0 06984247 -maffeo_barberini n 1 1 @ 1 0 11357332 -maffia n 3 4 @ %m ; - 3 0 08245802 08245549 08245425 -mafia n 3 4 @ %m ; - 3 0 08245802 08245549 08245425 -mafioso n 2 2 @ #m 2 0 10280495 10280364 -mag n 1 3 @ ~ %p 1 0 06595351 -mag_tape n 1 2 @ ~ 1 0 03708036 -magadhan n 1 2 @ ~ 1 0 06970645 -magazine n 6 4 @ ~ #p %p 6 3 06595351 03704210 08063303 03704376 03704038 02973017 -magazine_article n 1 2 @ #p 1 1 06269014 -magazine_publisher n 1 1 @ 1 0 08063303 -magazine_rack n 1 1 @ 1 0 03704549 -magdalen n 1 1 @ 1 0 10280598 -magdalena n 1 2 @ #p 1 0 09345265 -magdalena_river n 1 2 @ #p 1 0 09345265 -magellan n 1 1 @ 1 0 11149016 -magellanic_cloud n 1 2 @ ~ 1 0 09345503 -magen_david n 1 1 @ 1 0 06882333 -magenta n 2 3 @ + ; 2 0 04964586 01285784 -maggot n 1 2 @ + 1 1 02312175 -magh n 1 3 @ #p %p 1 0 15221099 -magha n 1 3 @ #p %p 1 0 15221099 -maghreb n 1 3 @ #p %p 1 0 08597323 -magi n 1 3 @ %m ; 1 0 08486538 -magic n 2 3 @ ~ + 2 1 05967977 00099951 -magic_bullet n 1 2 @ ; 1 0 03704640 -magic_eye n 1 3 @ ~ %p 1 0 03924978 -magic_lantern n 1 1 @ 1 0 03704834 -magic_marker n 1 2 @ ; 1 0 03326948 -magic_mushroom n 1 3 @ #p %s 1 0 11849467 -magic_number n 1 1 @ 1 0 13598960 -magic_realism n 1 1 @ 1 0 03704926 -magic_spell n 1 2 @ ~ 1 0 07159791 -magic_square n 1 1 @ 1 0 08269707 -magic_trick n 1 2 @ ~ 1 0 00099951 -magical_ability n 1 2 @ ~ 1 0 05201060 -magical_power n 1 2 @ ~ 1 1 05201060 -magical_spell n 1 2 @ ~ 1 0 07159791 -magician n 2 3 @ ~ + 2 1 10280674 10625860 -magicicada n 1 3 @ #m %m 1 0 02257149 -magicicada_septendecim n 1 2 @ #m 1 0 02257284 -magilp n 1 1 @ 1 0 14949608 -maginot n 1 1 @ 1 0 11149243 -maginot_line n 1 2 @ #p 1 0 03705134 -magistracy n 1 1 @ 1 0 00594738 -magistrate n 1 3 @ ~ + 1 1 10280945 -magistrature n 1 1 @ 1 0 00594738 -maglev n 1 1 @ 1 0 00951233 -magma n 1 1 @ 1 0 14931795 -magna_carta n 1 2 @ ; 1 0 06477003 -magna_charta n 1 2 @ ; 1 0 06477003 -magna_mater n 1 1 @ 1 0 09594093 -magnanimity n 1 2 @ + 1 0 04832716 -magnanimousness n 1 4 @ ~ = + 1 0 04870340 -magnate n 1 2 @ ~ 1 0 09840217 -magnesia n 1 2 @ %s 1 0 14690607 -magnesite n 1 2 @ %s 1 0 14680514 -magnesium n 1 2 @ #s 1 0 14644249 -magnesium_bicarbonate n 1 1 @ 1 0 14945137 -magnesium_carbonate n 1 1 @ 1 0 14945254 -magnesium_hydroxide n 1 1 @ 1 0 14945399 -magnesium_nitride n 1 1 @ 1 0 14945517 -magnesium_oxide n 1 2 @ %s 1 0 14690607 -magnesium_sulfate n 1 2 @ ~ 1 0 14945624 -magnet n 2 5 @ ~ %p + ; 2 1 03705379 05850823 -magnetic_attraction n 1 3 @ ~ = 1 1 11479058 -magnetic_bottle n 1 2 @ #p 1 0 03705808 -magnetic_bubble_memory n 1 1 @ 1 0 03706016 -magnetic_compass n 1 3 @ ~ %p 1 0 03706229 -magnetic_core n 1 3 @ #p ; 1 0 03108069 -magnetic_core_memory n 1 3 @ %p ; 1 0 03706415 -magnetic_declination n 1 1 @ 1 0 13893310 -magnetic_dip n 1 2 @ ; 1 0 13892897 -magnetic_dipole n 1 1 @ 1 0 09345693 -magnetic_dipole_moment n 1 2 @ ; 1 0 11483580 -magnetic_disc n 1 3 @ ~ ; 1 0 03706653 -magnetic_disk n 1 3 @ ~ ; 1 0 03706653 -magnetic_equator n 1 1 @ 1 0 08490531 -magnetic_field n 1 2 @ ~ 1 1 11477384 -magnetic_field_strength n 1 1 @ 1 0 05100525 -magnetic_flux n 2 2 @ ~ 2 0 13599730 11477384 -magnetic_flux_density n 1 1 @ 1 0 05100525 -magnetic_flux_unit n 1 2 @ ~ 1 0 13634033 -magnetic_force n 1 3 @ ~ = 1 1 11479058 -magnetic_head n 1 2 @ #p 1 0 03706939 -magnetic_inclination n 1 2 @ ; 1 0 13892897 -magnetic_induction n 2 1 @ 2 0 13510433 05100525 -magnetic_ink n 1 1 @ 1 0 14917859 -magnetic_intensity n 1 1 @ 1 0 05100525 -magnetic_iron-ore n 1 2 @ #s 1 0 14945914 -magnetic_levitation n 1 1 @ 1 0 00951233 -magnetic_line_of_force n 1 1 @ 1 0 11457392 -magnetic_medium n 1 1 @ 1 0 06263895 -magnetic_meridian n 1 1 @ 1 0 08599662 -magnetic_mine n 1 2 @ ; 1 0 03707171 -magnetic_moment n 1 1 @ 1 1 11483829 -magnetic_monopole n 1 1 @ 1 0 09345792 -magnetic_needle n 1 2 @ #p 1 1 03707372 -magnetic_north n 1 1 @ 1 0 13831441 -magnetic_pole n 2 3 @ ~ #p 2 0 08597579 03976960 -magnetic_pyrites n 1 1 @ 1 0 14693575 -magnetic_recorder n 1 2 @ ~ 1 0 03707597 -magnetic_resonance n 1 2 @ ~ 1 1 11478682 -magnetic_resonance_imaging n 1 2 @ ~ 1 0 00902579 -magnetic_storage n 1 1 @ 1 0 06263895 -magnetic_storage_medium n 1 1 @ 1 0 06263895 -magnetic_storm n 1 1 @ 1 0 07428797 -magnetic_stripe n 1 2 @ #p 1 0 03707766 -magnetic_tape n 1 2 @ ~ 1 0 03708036 -magnetic_variation n 1 1 @ 1 0 13893310 -magnetics n 1 1 @ 1 0 06120769 -magnetisation n 3 3 @ ~ + 3 0 13599547 13510433 05020225 -magnetism n 2 3 @ ~ = 2 1 11479058 06120769 -magnetite n 1 2 @ #s 1 0 14945914 -magnetization n 3 3 @ ~ + 3 0 13599547 13510433 05020225 -magneto n 1 2 @ #p 1 0 03708425 -magnetoelectric_machine n 1 2 @ #p 1 0 03708425 -magnetograph n 1 1 @ 1 0 03708672 -magnetohydrodynamics n 1 1 @ 1 0 06114069 -magnetometer n 1 1 @ 1 0 03708843 -magnetomotive_force n 1 1 @ 1 0 11523736 -magnetomotive_force_unit n 1 2 @ ~ 1 0 13634615 -magneton n 1 1 @ 1 0 13642337 -magnetosphere n 1 1 @ 1 0 11477041 -magnetron n 1 1 @ 1 0 03708962 -magnificat n 1 2 @ ; 1 0 07037059 -magnification n 4 2 @ + 4 1 00367427 13822995 06758835 03289462 -magnificence n 2 3 @ ~ + 2 1 04729328 04814238 -magnifico n 1 1 @ 1 0 10281176 -magnifier n 1 3 @ ~ + 1 0 03709206 -magnifying_glass n 1 2 @ ~ 1 1 03484931 -magniloquence n 1 3 @ ~ + 1 0 07070429 -magnitude n 3 4 @ ~ = + 3 3 05090441 13823651 05168890 -magnitude_relation n 1 2 @ ~ 1 0 13815152 -magnolia n 2 5 @ ~ #m #p %p 2 0 11710008 11709674 -magnolia_acuminata n 1 1 @ 1 0 11710827 -magnolia_family n 1 3 @ #m %m 1 0 11708181 -magnolia_fraseri n 1 1 @ 1 0 11710658 -magnolia_grandiflora n 1 1 @ 1 0 11710136 -magnolia_macrophylla n 1 1 @ 1 0 11710987 -magnolia_soulangiana n 1 1 @ 1 0 11711289 -magnolia_state n 1 5 @ #m #p %p - 1 0 09103943 -magnolia_stellata n 1 1 @ 1 0 11711537 -magnolia_tripetala n 1 1 @ 1 0 11710393 -magnolia_virginiana n 1 1 @ 1 0 11711764 -magnoliaceae n 1 3 @ #m %m 1 0 11708181 -magnoliid_dicot_family n 1 3 @ ~ #m 1 0 11564258 -magnoliid_dicot_genus n 1 3 @ ~ #m 1 0 11571907 -magnoliidae n 1 3 @ #m %m 1 0 11667112 -magnoliophyta n 1 3 @ #m %m 1 0 11664929 -magnoliopsid n 1 3 @ ~ #m 1 0 11666854 -magnoliopsid_family n 1 3 @ ~ #m 1 0 11562747 -magnoliopsid_genus n 1 3 @ ~ #m 1 0 11567411 -magnoliopsida n 1 3 @ #m %m 1 0 11665781 -magnum n 1 1 @ 1 0 03709363 -magnum_opus n 1 1 @ 1 0 03709454 -magnus_hitch n 1 1 @ 1 0 03709545 -magpie n 3 3 @ ~ #m 3 1 01582220 10281276 09911570 -magritte n 1 1 @ 1 0 11149373 -maguey n 2 3 @ #m %s 2 0 12477747 12477583 -magus n 2 1 @ 2 0 10281546 10281432 -magyar n 2 3 @ #m + 2 0 09713985 06958836 -magyarorszag n 1 4 @ #p %m %p 1 0 08952190 -mah-jongg n 1 1 @ 1 1 00505126 -maha n 1 1 @ 1 0 09663628 -mahabharata n 1 3 @ %p ; 1 0 06431496 -mahabharatam n 1 3 @ %p ; 1 0 06431496 -mahabharatum n 1 3 @ %p ; 1 0 06431496 -mahagua n 2 1 @ 2 0 12180168 12178494 -mahalia_jackson n 1 1 @ 1 0 11076820 -mahan n 1 1 @ 1 0 11149483 -maharaja n 1 1 @ 1 0 10281637 -maharajah n 1 1 @ 1 0 10281637 -maharanee n 1 1 @ 1 0 10281770 -maharani n 1 1 @ 1 0 10281770 -maharashtra n 1 2 @ #p 1 0 08905936 -mahatma n 1 2 @ ; 1 0 10281896 -mahatma_gandhi n 1 1 @ 1 0 10989339 -mahayana n 2 4 @ ~ %m + 2 0 08099264 06240865 -mahayana_buddhism n 1 2 @ ~ 1 0 06240865 -mahayanism n 1 1 @ 1 0 06189241 -mahayanist n 1 3 @ #m + 1 0 09684082 -mahdi n 1 3 @ + ; 1 0 10282014 -mahdism n 1 2 @ + 1 0 06235829 -mahdist n 1 2 @ + 1 0 10282262 -mahernia_verticillata n 1 2 @ #m 1 0 12200504 -mahgrib n 1 3 @ #p %p 1 0 08597323 -mahican n 2 1 @ 2 0 09661873 06910958 -mahimahi n 2 6 @ ~ #m #p %p ; 2 0 07778938 02581957 -mahjong n 1 1 @ 1 0 00505126 -mahler n 1 1 @ 1 0 11149630 -mahlstick n 1 1 @ 1 0 03731882 -mahoe n 2 1 @ 2 0 12180168 12178494 -mahogany n 3 5 @ ~ #m #s %s 3 1 12695572 12695144 04973386 -mahogany_family n 1 3 @ #m %m 1 0 12694707 -mahogany_tree n 1 4 @ ~ #m %s 1 0 12695144 -mahomet n 1 1 @ 1 0 11184092 -mahonia n 1 2 @ #m 1 0 11699283 -mahonia_aquifolium n 1 1 @ 1 0 11699442 -mahonia_nervosa n 1 1 @ 1 0 11699751 -mahound n 1 1 @ 1 0 11184092 -mahout n 1 2 @ ; 1 0 10282374 -mahratta n 1 1 @ 1 0 09676374 -mahratti n 1 1 @ 1 0 06971281 -mahuang n 1 1 @ 1 0 11598886 -maia n 1 3 @ #m %m 1 0 01981884 -maianthemum n 1 3 @ #m %m 1 0 12473405 -maianthemum_bifolium n 1 2 @ #m 1 0 12473840 -maianthemum_canadense n 1 2 @ #m 1 0 12473608 -maid n 2 3 @ ~ + 2 1 10282672 10282482 -maid_of_honor n 1 2 @ #m 1 0 09874862 -maiden n 2 4 @ ~ + ; 2 1 10282482 15258945 -maiden_aunt n 1 1 @ 1 0 10282845 -maiden_blue-eyed_mary n 1 2 @ #m 1 0 12881913 -maiden_flight n 1 1 @ 1 0 00304208 -maiden_name n 1 1 @ 1 0 06337111 -maiden_over n 1 2 @ ; 1 0 15258945 -maiden_pink n 1 1 @ 1 0 11809094 -maiden_voyage n 1 1 @ 1 0 00313096 -maidenhair n 1 3 @ ~ #m 1 0 13206817 -maidenhair_berry n 1 2 @ #m 1 0 12235479 -maidenhair_fern n 1 3 @ ~ #m 1 0 13206817 -maidenhair_spleenwort n 1 1 @ 1 0 13181988 -maidenhair_tree n 1 1 @ 1 0 11664418 -maidenhead n 1 3 @ ~ #p 1 0 05521934 -maidenhood n 1 2 @ + 1 0 15147330 -maidenliness n 1 2 @ + 1 0 04667923 -maidhood n 1 2 @ + 1 0 15147330 -maidism n 1 1 @ 1 0 14200873 -maidservant n 1 2 @ ~ 1 0 10282672 -maidu n 2 1 @ 2 0 09659866 06924895 -maiduguri n 1 2 @ #p 1 0 08974818 -maieutic_method n 1 1 @ 1 0 05661118 -maiger n 1 2 @ #m 1 0 02596252 -maigre n 1 2 @ #m 1 0 02596252 -maikoa n 1 2 @ #m 1 0 12899537 -mail n 5 5 @ ~ %p + ; 5 3 06275634 06264398 03709644 08463063 03000247 -mail-order_buying n 1 1 @ 1 0 00082223 -mail_boat n 1 1 @ 1 0 03710079 -mail_call n 1 1 @ 1 0 01012030 -mail_car n 1 2 @ #m 1 0 03710294 -mail_carrier n 1 1 @ 1 0 10283037 -mail_clerk n 1 1 @ 1 0 10459116 -mail_fraud n 1 1 @ 1 0 00777587 -mail_order n 1 1 @ 1 1 06530703 -mail_pouch n 1 2 @ ~ 1 0 03709960 -mail_service n 1 2 @ ~ 1 0 06264398 -mail_slot n 1 1 @ 1 0 03710819 -mail_train n 1 2 @ %m 1 0 03711044 -mailbag n 2 2 @ ~ 2 0 03709960 03709823 -mailboat n 1 1 @ 1 0 03710079 -mailbox n 2 2 @ ~ 2 1 03710193 03989074 -maildrop n 1 2 @ ~ 1 0 03710421 -mailer n 4 3 @ ~ + 4 0 11149762 10282920 07249336 03710528 -mailing n 2 2 @ + 2 0 08463647 00122338 -mailing-card n 1 2 @ ~ 1 0 06627938 -mailing_address n 1 2 @ ~ 1 0 08491245 -mailing_list n 1 1 @ 1 0 06492811 -maillol n 1 1 @ 1 0 11149867 -maillot n 2 1 @ 2 0 03710721 03710637 -mailman n 1 1 @ 1 1 10283037 -mailsorter n 1 1 @ 1 0 03710937 -maimed n 1 1 @ 1 1 07950786 -maimer n 1 2 @ + 1 0 10341955 -maimonides n 1 1 @ 1 0 11149995 -main n 2 4 @ ~ #p %p 2 0 09345932 03711145 -main-topmast n 1 1 @ 1 0 03712887 -main-topsail n 1 1 @ 1 0 03712981 -main_clause n 1 2 @ #p 1 0 06314423 -main_course n 2 2 @ ~ 2 0 07579575 03711384 -main_deck n 1 1 @ 1 0 03711459 -main_diagonal n 1 1 @ 1 0 08268636 -main_drag n 1 2 @ ; 1 1 03711603 -main_entry_word n 1 2 @ #p 1 0 06300632 -main_file n 1 2 @ ; 1 0 06509902 -main_line n 1 1 @ 1 0 03711897 -main_office n 1 3 @ ~ ; 1 0 03504723 -main_road n 1 3 @ ~ %p 1 0 03519981 -main_rotor n 1 2 @ %p 1 0 03712111 -main_street n 2 2 @ ~ 2 1 03712729 08671822 -main_yard n 1 1 @ 1 0 03713069 -maine n 1 4 @ #p %p + 1 1 09092497 -maine_lobster n 2 4 @ #m #p %p 2 0 07792926 01983481 -mainer n 1 2 @ + 1 0 09743487 -mainframe n 2 5 @ ~ #p %p ; 2 0 03711711 02995345 -mainframe_computer n 1 2 @ ~ 1 0 03711711 -mainland n 1 2 @ ~ 1 1 09346120 -mainland_china n 1 5 @ #p %m %p - 1 0 08723006 -mainmast n 1 1 @ 1 0 03711999 -mainsail n 1 2 @ ~ 1 0 03712337 -mainsheet n 1 4 @ ~ #p ; 1 0 04188368 -mainspring n 1 2 @ #p 1 0 03712444 -mainstay n 3 1 @ 3 0 10432957 05694232 03712637 -mainstream n 1 1 @ 1 0 05955186 -maintainer n 1 2 @ + 1 0 10740219 -maintenance n 5 4 @ ~ + ; 5 2 00267522 13366311 13283620 01216191 00765791 -maintenance_man n 1 2 @ ~ 1 0 10521100 -maintenance_staff n 1 1 @ 1 0 08352848 -maintenon n 1 1 @ 1 0 11150224 -maiolica n 1 1 @ 1 0 03713436 -maisonette n 2 2 @ ; 2 0 03713254 03713151 -maisonnette n 2 2 @ ; 2 0 03713254 03713151 -maitland n 1 1 @ 1 0 11150471 -maitre_d' n 1 1 @ 1 0 09892513 -maitre_d'hotel n 1 1 @ 1 0 09892513 -maitreya n 1 1 @ 1 0 09532553 -maize n 2 4 @ ~ #m %p 2 0 12143676 04966543 -maja n 1 3 @ #m %m 1 0 01981884 -maja_squinado n 1 2 @ #m 1 0 01982068 -majagua n 2 1 @ 2 0 12180168 12178494 -majesty n 1 2 @ + 1 1 04729984 -majidae n 1 3 @ #m %m 1 0 01981543 -majolica n 1 1 @ 1 0 03713436 -major n 4 3 @ + ; 4 1 10283170 11150634 10283366 05997659 -major-domo n 1 1 @ 1 0 10283546 -major-general n 1 2 @ ; 1 1 10283663 -major-league_club n 1 3 @ #m %m 1 1 08078819 -major-league_team n 1 3 @ #m %m 1 0 08078819 -major_affective_disorder n 1 2 @ ~ 1 0 14388910 -major_axis n 1 2 @ %p 1 1 06009537 -major_depressive_episode n 1 3 @ ~ ; 1 0 14390466 -major_diatonic_scale n 1 2 @ ~ 1 0 06860826 -major_fast_day n 1 2 @ ~ 1 0 15161284 -major_form_class n 1 2 @ ~ 1 0 06317672 -major_key n 1 1 @ 1 0 06864192 -major_league n 1 3 @ %m ; 1 1 08231499 -major_leaguer n 1 2 @ #m 1 0 10283931 -major_lobe n 1 1 @ 1 0 07005715 -major_mode n 1 1 @ 1 0 06864192 -major_planet n 1 5 @ ~ #m %p ; 1 0 09394007 -major_power n 1 2 @ ~ 1 0 08177592 -major_premise n 1 3 @ #p %p 1 0 06754184 -major_premiss n 1 3 @ #p %p 1 0 06754184 -major_scale n 1 2 @ ~ 1 0 06860826 -major_suit n 1 3 @ %m ; 1 0 03713556 -major_surgery n 1 2 ! @ 1 0 00684837 -major_term n 1 2 @ #p 1 0 06754658 -major_tranquilizer n 1 2 @ ~ 1 0 03713736 -major_tranquilliser n 1 2 @ ~ 1 0 03713736 -major_tranquillizer n 1 2 @ ~ 1 0 03713736 -majorana n 1 2 @ #m 1 0 12852930 -majorana_hortensis n 1 2 @ #m 1 0 12853482 -majorca n 1 2 @ #p 1 0 09024844 -majorette n 2 1 @ 2 0 10036802 10036692 -majority n 3 6 ! @ #p = + ; 3 3 05122557 13581067 15152062 -majority_leader n 1 1 @ 1 0 10283824 -majority_operation n 1 1 @ 1 0 13510638 -majority_opinion n 1 2 @ ; 1 0 06552470 -majority_rule n 1 1 @ 1 0 05964445 -majors n 1 3 @ %m ; 1 1 08231499 -majuscule n 1 3 @ ~ + 1 0 06824227 -mak n 1 2 @ ; 1 0 08033454 -makaira n 1 3 @ #m %m 1 0 02630926 -makaira_albida n 1 1 @ 1 0 02631775 -makaira_marlina n 1 1 @ 1 0 02631475 -makaira_mazara n 1 1 @ 1 0 02631475 -makaira_mitsukurii n 1 1 @ 1 0 02631628 -makaira_nigricans n 1 1 @ 1 0 02631330 -makalu n 1 2 @ #p 1 0 09346284 -makarios_iii n 1 1 @ 1 0 11150809 -makataimeshekiakiak n 1 1 @ 1 0 10852320 -make n 2 4 @ ~ #p + 2 1 05845140 00340463 -make-believe n 2 2 @ + 2 0 05769930 00755500 -make-do n 1 1 @ 1 0 00178551 -make-peace n 1 3 @ ~ + 1 0 09952163 -make-up n 3 3 @ ~ + 3 0 07322769 04933544 03714235 -make-work n 1 1 @ 1 1 00581621 -makedonija n 1 4 @ #p %m - 1 0 08915372 -makeover n 2 2 @ + 2 0 00660570 00269674 -maker n 3 3 @ ~ + 3 1 10284064 09536363 08060446 -makeready n 1 1 @ 1 1 01143957 -makeshift n 1 2 @ + 1 0 00178551 -makeup n 3 3 @ ~ + 3 1 03714235 07322769 04933544 -makeweight n 2 1 @ 2 0 03714721 03714610 -makin n 1 3 @ #p ; 1 0 01296697 -making n 3 3 @ ~ + 3 1 00923995 04717139 03714899 -making_known n 1 2 @ ~ 1 0 07212190 -making_love n 1 1 @ 1 0 00846515 -making_water n 1 2 @ ; 1 0 13506727 -mako n 1 3 @ ~ #m 1 0 01484097 -mako_shark n 1 3 @ ~ #m 1 0 01484097 -makomako n 1 2 @ #m 1 0 12193665 -maksim_gorky n 1 1 @ 1 0 11008870 -maksutov_telescope n 1 1 @ 1 0 03715114 -maktab_al-khidmat n 1 2 @ ; 1 0 08033454 -mal_de_la_rosa n 1 1 @ 1 0 14200873 -mal_de_mer n 1 1 @ 1 0 14203942 -mal_rosso n 1 1 @ 1 0 14200873 -malabar_kino n 1 2 @ #s 1 0 12566112 -malabo n 1 2 @ #p 1 0 08763765 -malabsorption n 1 1 @ 1 0 13510829 -malabsorption_syndrome n 1 1 @ 1 0 14307035 -malacanthidae n 1 3 @ #m %m 1 0 02572904 -malacca n 2 2 @ #p 2 0 12136581 03715275 -malacca_cane n 1 1 @ 1 0 03715275 -malachi n 2 1 @ 2 0 11150973 06441464 -malachias n 2 1 @ 2 0 11150973 06441464 -malachite n 1 3 @ ~ %s 1 0 14680661 -malacia n 1 2 @ ~ 1 0 14208065 -malaclemys n 1 3 @ #m %m 1 0 01667959 -malaclemys_centrata n 1 2 @ #m 1 0 01668091 -malacologist n 1 1 @ 1 0 10284763 -malacology n 1 2 @ ~ 1 0 06073067 -malaconotinae n 1 3 @ #m %m 1 0 01599919 -malacopterygian n 1 4 @ ~ #m %m 1 0 01428580 -malacopterygii n 1 3 @ #m %m 1 0 01428155 -malacosoma n 1 3 @ #m %m 1 0 02307007 -malacosoma_americana n 1 2 @ #m 1 0 02307176 -malacosoma_disstria n 2 2 @ #m 2 0 02307681 02307515 -malacostraca n 1 3 @ #m %m 1 0 01975312 -malacostracan_crustacean n 1 3 @ ~ #m 1 0 01975687 -malacothamnus n 1 3 @ #m %m 1 0 12182858 -malacothamnus_fasciculatus n 1 2 @ #m 1 0 12183026 -maladjustment n 1 1 @ 1 0 14387975 -maladroitness n 1 3 @ ~ + 1 0 05648459 -malady n 2 2 @ ~ 2 2 14563928 14061805 -malaga n 1 2 @ #p 1 0 09026614 -malagasy_republic n 1 4 @ #p %m %p 1 0 08962187 -malahini n 1 2 @ ; 1 0 10284871 -malaise n 1 1 @ 1 1 14447019 -malamud n 1 1 @ 1 0 11151084 -malamute n 1 1 @ 1 0 02110063 -malanga n 1 2 @ #m 1 0 11793403 -malaprop n 1 1 @ 1 0 06769883 -malapropism n 1 1 @ 1 0 06769883 -malar n 1 3 @ #p %p 1 0 05273822 -malar_bone n 1 3 @ #p %p 1 0 05273822 -malaria n 1 4 @ ~ %p + 1 1 14077830 -malaria_mosquito n 1 2 @ #m 1 0 02201626 -malaria_parasite n 1 2 @ #m 1 0 01424420 -malarial_mosquito n 1 2 @ #m 1 0 02201626 -malarkey n 1 1 @ 1 0 07136711 -malarky n 1 1 @ 1 0 07136711 -malathion n 1 2 @ ; 1 0 14946082 -malathion_poisoning n 1 1 @ 1 0 14510814 -malawi n 1 5 @ #p %m %p + 1 0 08962610 -malawi_kwacha n 1 2 @ %p 1 0 13683221 -malawian n 1 3 @ #m + 1 0 09721759 -malawian_monetary_unit n 1 2 @ ~ 1 0 13683093 -malaxis n 1 3 @ #m %m 1 0 12071965 -malaxis-unifolia n 1 2 @ #m 1 0 12072210 -malaxis_ophioglossoides n 1 2 @ #m 1 0 12072210 -malay n 2 4 @ ~ #m + 2 0 09712696 06938887 -malay_archipelago n 1 5 @ #p %m %p - 1 0 08841956 -malay_peninsula n 1 4 @ #p %m %p 1 0 08964810 -malaya n 1 6 @ #m #p %m %p - 1 0 08963369 -malayalam n 1 1 @ 1 0 06980175 -malayan n 1 3 @ #m + 1 0 09712696 -malayan_tapir n 1 1 @ 1 0 02393940 -malayo-polynesian n 1 2 @ ~ 1 0 06937768 -malaysia n 1 7 @ #m #p %m %p + - 1 0 08963369 -malaysia_militant_group n 1 2 @ ; 1 0 08027518 -malaysian n 2 4 @ ~ #m + 2 0 09721883 06939051 -malaysian_monetary_unit n 1 2 @ ~ 1 0 13697963 -malaysian_mujahidin_group n 1 2 @ ; 1 0 08027518 -malcolm_little n 1 1 @ 1 0 11151189 -malcolm_lowry n 1 1 @ 1 0 11142922 -malcolm_stock n 1 2 @ #m 1 0 11892029 -malcolm_x n 1 1 @ 1 0 11151189 -malcolmia n 1 3 @ #m %m 1 0 11891838 -malcolmia_maritima n 1 1 @ 1 0 11892181 -malcontent n 1 3 @ ~ + 1 0 10284965 -maldivan n 1 2 @ #m 1 0 09722159 -maldive_islands n 1 3 @ #p %p 1 0 08965055 -maldives n 2 4 @ #p %m %p 2 0 08965251 08965055 -maldivian n 1 2 @ #m 1 0 09722159 -maldon n 1 2 @ ; 1 0 01286000 -male n 3 6 ! @ ~ #p %p + 3 2 01321230 09624168 08965475 -male-patterned_baldness n 1 1 @ 1 0 14457707 -male_aristocrat n 1 3 ! @ ~ 1 0 10285135 -male_berry n 1 2 @ #m 1 0 12241192 -male_body n 1 4 @ ~ #p %p 1 0 05219724 -male_bonding n 1 1 @ 1 0 13782329 -male_chauvinism n 1 1 @ 1 0 01156070 -male_chauvinist n 1 1 @ 1 0 09912431 -male_chest n 1 2 @ #p 1 0 05551617 -male_child n 1 3 ! @ ~ 1 0 10285313 -male_erecticle_dysfunction n 1 1 @ 1 0 14045141 -male_fern n 1 1 @ 1 0 13193856 -male_genital_organ n 1 3 @ #p %p 1 0 05514905 -male_genitalia n 1 3 @ #p %p 1 0 05514905 -male_genitals n 1 3 @ #p %p 1 0 05514905 -male_horse n 1 2 @ ~ 1 0 02376918 -male_hypogonadism n 1 1 @ 1 0 14075660 -male_internal_reproductive_organ n 1 2 @ #p 1 0 05515157 -male_monarch n 1 4 ! @ ~ #m 1 0 10231515 -male_offspring n 1 3 ! @ ~ 1 0 10285938 -male_orchis n 1 1 @ 1 0 12043673 -male_orgasm n 1 1 @ 1 0 00062331 -male_parent n 1 3 ! @ ~ 1 0 10080869 -male_pattern_baldness n 1 1 @ 1 0 14457707 -male_person n 1 3 @ ~ %p 1 0 09624168 -male_plug n 1 2 @ ~ 1 0 03968293 -male_reproductive_gland n 1 3 @ ~ #p 1 0 05525252 -male_reproductive_system n 1 3 @ #p %p 1 0 05513807 -male_sibling n 1 3 ! @ ~ 1 0 10286084 -maleate n 1 1 @ 1 0 14946251 -maleberry n 1 2 @ #m 1 0 12241192 -malebranche n 1 1 @ 1 0 11151322 -malecite n 2 1 @ 2 0 09660010 06910517 -malediction n 1 2 @ + 1 1 07233996 -malefactor n 1 2 @ ~ 1 0 09977660 -maleficence n 2 4 ! @ = + 2 0 07550551 04846533 -maleic_acid n 1 1 @ 1 0 14946424 -malemute n 1 1 @ 1 0 02110063 -maleness n 1 4 ! @ ~ + 1 1 05008227 -maleo n 1 2 @ #m 1 0 01802159 -maleseet n 1 1 @ 1 0 06910517 -malevich n 1 1 @ 1 0 11151436 -malevolence n 2 4 ! @ ~ + 2 0 07550369 04842313 -malevolency n 1 3 @ ~ + 1 1 04842313 -malevolent_program n 1 2 @ ~ 1 0 06573020 -malfeasance n 1 1 @ 1 0 00741925 -malfeasant n 1 1 @ 1 1 10286200 -malformation n 2 2 @ ~ 2 0 14213512 07367091 -malfunction n 1 3 @ ~ + 1 0 07318476 -malheur_wire_lettuce n 1 2 @ #m 1 0 11897900 -mali n 1 5 @ #p %m %p + 1 0 08965598 -mali_franc n 1 2 @ %p 1 0 13678373 -malian n 1 3 @ #m + 1 0 09722279 -malice n 2 3 @ ~ + 2 0 07550666 04842313 -malice_aforethought n 1 3 @ ~ ; 1 0 05795957 -malicious_gossip n 1 1 @ 1 0 07223811 -malicious_mischief n 1 1 @ 1 0 01249816 -maliciousness n 1 2 @ + 1 0 07550666 -malignance n 2 6 @ ~ %p = + ; 2 0 14237561 04842788 -malignancy n 2 7 ! @ ~ %p = + ; 2 1 14237561 04842788 -malignant_anaemia n 1 2 @ ~ 1 0 14167426 -malignant_anemia n 1 2 @ ~ 1 0 14167426 -malignant_hepatoma n 1 1 @ 1 0 14251174 -malignant_hypertension n 1 2 @ ~ 1 0 14105091 -malignant_hyperthermia n 1 1 @ 1 0 14157782 -malignant_melanoma n 1 1 @ 1 0 14252564 -malignant_neoplasm n 1 2 @ ~ 1 0 14239425 -malignant_neoplastic_disease n 1 2 @ ~ 1 0 14239918 -malignant_neuroma n 1 1 @ 1 0 14241400 -malignant_pustule n 1 1 @ 1 0 14072625 -malignant_tumor n 1 2 @ ~ 1 0 14239425 -maligner n 1 2 @ + 1 0 09999135 -malignity n 2 5 ! @ ~ = + 2 0 07550369 04842788 -malignment n 1 2 @ + 1 0 06720216 -malik n 1 2 @ ; 1 0 10286282 -malingerer n 1 2 @ + 1 0 10286539 -malingering n 1 2 @ + 1 1 00741272 -malinois n 1 1 @ 1 0 02105162 -malinowski n 1 1 @ 1 0 11151579 -mall n 2 3 @ ~ %p 2 0 04010205 03965456 -mallard n 1 2 @ #m 1 0 01847806 -mallarme n 1 1 @ 1 0 11151798 -malleability n 1 4 ! @ ~ + 1 0 05021884 -mallee n 1 2 @ ~ 1 0 12335664 -mallee_fowl n 1 3 @ ~ #m 1 0 01801479 -mallee_hen n 1 1 @ 1 0 01801672 -mallet n 3 3 @ ~ #p 3 0 03715892 03715669 03715386 -malleus n 1 2 @ #p 1 0 05325943 -mallon n 1 1 @ 1 0 11151932 -mallophaga n 1 3 @ #m %m 1 0 02185337 -mallotus n 1 3 @ #m %m 1 0 02541139 -mallow n 1 3 @ ~ #m 1 0 12170585 -mallow_family n 1 3 @ #m %m 1 0 12169776 -malmo n 1 2 @ #p 1 0 08766455 -malmsey n 1 2 @ #s 1 0 07900734 -malnourishment n 1 2 @ + 1 0 14040490 -malnutrition n 1 2 @ ~ 1 0 14199700 -malocclusion n 1 3 @ ~ ; 1 0 14060929 -malodor n 1 2 @ ~ 1 0 05714894 -malodorousness n 1 3 @ ~ + 1 0 04980656 -malodour n 1 2 @ ~ 1 0 05714894 -malone n 1 1 @ 1 0 11152122 -malonylurea n 1 1 @ 1 0 14772716 -malope n 1 2 @ #m 1 0 12183452 -malope_trifida n 1 2 @ #m 1 0 12183452 -malopterurus n 1 3 @ #m %m 1 0 02518488 -malopterurus_electricus n 1 2 @ #m 1 0 02518622 -malory n 1 1 @ 1 0 11152331 -malosma n 1 3 @ #m %m 1 0 12760722 -malosma_laurina n 1 2 @ #m 1 0 12760875 -malpighi n 1 1 @ 1 0 11152544 -malpighia n 1 3 @ #m %m 1 0 12694193 -malpighia_glabra n 1 2 @ %p 1 0 12694486 -malpighia_obovata n 1 2 @ #m 1 0 12694336 -malpighiaceae n 1 3 @ #m %m 1 0 12694048 -malpighian_body n 1 3 @ #p %p 1 0 05247369 -malpighian_corpuscle n 1 3 @ #p %p 1 0 05247369 -malpighian_layer n 1 2 @ #p 1 0 05243704 -malposed_tooth n 1 1 @ 1 0 05306604 -malposition n 1 1 @ 1 0 05079074 -malpractice n 2 1 @ 2 0 00742314 00742130 -malpractice_insurance n 1 1 @ 1 0 13348227 -malraux n 1 1 @ 1 0 11152758 -mals n 1 1 @ 1 0 06701128 -malt n 3 5 @ ~ #s %s + 3 0 07926642 07889274 07888909 -malt_liquor n 1 2 @ %s 1 0 07889274 -malt_sugar n 1 1 @ 1 0 14946618 -malt_whiskey n 1 3 @ ~ #s 1 0 07907548 -malt_whisky n 1 3 @ ~ #s 1 0 07907548 -malta n 2 4 @ #p %m %p 2 0 08966408 08966239 -malta_fever n 1 1 @ 1 0 14128029 -malted n 1 1 @ 1 0 07926642 -malted_milk n 2 1 @ 2 0 07926642 07926540 -maltese n 4 2 @ #m 4 0 09747618 06988913 02124157 02085936 -maltese_cat n 1 1 @ 1 0 02124157 -maltese_cross n 2 1 @ 2 0 11811921 03716091 -maltese_dog n 1 1 @ 1 0 02085936 -maltese_language n 1 1 @ 1 0 06988913 -maltese_lira n 1 1 @ 1 0 13695189 -maltese_monetary_unit n 1 2 @ ~ 1 0 13695081 -maltese_terrier n 1 1 @ 1 0 02085936 -maltha n 1 1 @ 1 0 14680836 -malthus n 1 2 @ + 1 0 11152856 -malthusian n 1 2 @ + 1 0 10286749 -malthusian_theory n 1 1 @ 1 0 05995726 -malthusianism n 1 1 @ 1 0 05995726 -malti n 1 1 @ 1 0 06988913 -maltman n 1 1 @ 1 0 10286855 -malto n 2 1 @ 2 0 09675156 06982487 -maltose n 1 1 @ 1 0 14946618 -maltreater n 1 2 @ + 1 0 09758643 -maltreatment n 1 3 @ ~ + 1 0 00419908 -maltster n 1 2 @ + 1 0 10286855 -malus n 1 3 @ #m %m 1 0 12633386 -malus_angustifolia n 1 1 @ 1 0 12635532 -malus_baccata n 1 2 @ #m 1 0 12634734 -malus_coronaria n 1 2 @ #m 1 0 12635151 -malus_fusca n 1 1 @ 1 0 12635359 -malus_ioensis n 1 2 @ ~ 1 0 12635744 -malus_pumila n 1 3 @ #m %p 1 0 12633994 -malus_sylvestris n 1 2 @ #m 1 0 12634986 -malva n 1 3 @ #m %m 1 0 12170415 -malva_moschata n 1 2 @ #m 1 0 12171098 -malva_neglecta n 1 2 @ #m 1 0 12171316 -malva_sylvestris n 1 2 @ #m 1 0 12171503 -malvaceae n 1 3 @ #m %m 1 0 12169776 -malvales n 1 3 @ #m %m 1 0 12169526 -malvasia n 1 2 @ %s 1 0 13147689 -malvastrum n 1 2 @ #m 1 0 12183636 -malvastrum_coccineum n 1 1 @ 1 0 12187891 -malvaviscus n 1 3 @ #m %m 1 0 12183916 -malversation n 1 2 @ + 1 0 00735832 -malvina_hoffman n 1 1 @ 1 0 11054563 -mam n 2 1 @ 2 0 09660138 06925833 -mama n 2 1 @ 2 1 10278128 09519192 -mama's_boy n 1 1 @ 1 0 10333439 -mamba n 1 3 @ ~ #m 1 0 01749582 -mambo n 1 2 @ + 1 0 00538668 -mamet n 1 1 @ 1 0 11153094 -mamey n 2 4 @ #m #p %p 2 0 12370174 07766530 -mamilla n 1 2 @ #p 1 0 05554653 -mamillary_body n 1 2 @ #p 1 0 05228020 -mamma n 2 5 @ ~ #p %p + 2 1 10278128 05554189 -mamma's_boy n 1 1 @ 1 0 10333439 -mammal n 1 5 @ ~ #m %p - 1 1 01861778 -mammal_family n 1 3 @ ~ #m 1 0 01862557 -mammal_genus n 1 3 @ ~ #m 1 0 01864707 -mammal_semnopithecus n 1 3 @ #m %m 1 0 02488149 -mammalia n 1 3 @ #m %m 1 0 01861465 -mammalian n 1 6 @ ~ #m %p + - 1 0 01861778 -mammalogist n 1 1 @ 1 0 10286989 -mammalogy n 1 2 @ ~ 1 0 06073215 -mammary_gland n 1 4 @ ~ #p %p 1 0 05554189 -mammea n 1 3 @ #m %m 1 0 12370011 -mammea_americana n 1 3 @ #m %p 1 0 12370174 -mammee n 4 4 @ #m #p %p 4 0 12775919 12370174 07766530 07764486 -mammee_apple n 2 4 @ #m #p %p 2 0 12370174 07766530 -mammee_tree n 1 3 @ #m %p 1 0 12370174 -mammilla n 1 2 @ #p 1 0 05554653 -mammillaria n 1 2 @ #m 1 0 11849871 -mammillaria_plumosa n 1 1 @ 1 0 11849983 -mammillary_body n 1 2 @ #p 1 0 05228020 -mammogram n 1 1 @ 1 0 03716228 -mammography n 1 1 @ 1 0 01006188 -mammon n 2 2 @ ; 2 0 14492634 09491324 -mammoth n 1 5 @ ~ #m %p + 1 0 02504770 -mammoth_cave_national_park n 1 2 @ #p 1 0 08607408 -mammothermography n 1 1 @ 1 0 01006536 -mammut n 1 3 @ #m %m 1 0 02505809 -mammut_americanum n 1 2 @ #m 1 0 02506248 -mammuthus n 1 3 @ #m %m 1 0 02504635 -mammuthus_columbi n 1 1 @ 1 0 02505238 -mammuthus_primigenius n 1 1 @ 1 0 02505063 -mammutidae n 1 3 @ #m %m 1 0 02505646 -mammy n 2 2 @ ; 2 0 10287082 10278128 -mamo n 1 2 @ #m 1 0 01545010 -mamoncillo n 1 3 @ #m %p 1 0 12744850 -man n 11 10 ! @ ~ #m #p %m %p + ; - 11 6 10287213 10582746 10289039 02472293 10289176 10288763 10745332 10288516 08887716 03716327 02472987 -man's_body n 1 3 @ #p %p 1 0 05220306 -man's_clothing n 1 2 @ ~ 1 0 03746330 -man-about-town n 1 1 @ 1 0 10439727 -man-at-arms n 1 1 @ 1 0 10291469 -man-child n 1 2 @ ~ 1 0 10285938 -man-eater n 2 2 @ #m 2 0 09891079 01484850 -man-eating_shark n 1 2 @ #m 1 0 01484850 -man-made_fiber n 1 2 @ ~ 1 0 14959058 -man-made_lake n 1 3 @ ~ #p 1 0 04078747 -man-of-the-earth n 2 1 @ 2 0 12828379 12827907 -man-of-war n 2 3 @ ~ #m 2 1 03718212 01913166 -man-of-war_bird n 1 2 @ #m 1 0 02052775 -man-on-a-horse n 1 2 @ #m 1 0 13017789 -man_and_wife n 1 3 @ ~ %m 1 1 07989373 -man_friday n 1 1 @ 1 0 10531109 -man_hour n 1 2 @ #p 1 1 15230482 -man_in_the_street n 1 1 @ 1 1 10223744 -man_jack n 1 1 @ 1 0 10291730 -man_of_action n 1 1 @ 1 0 10291822 -man_of_affairs n 1 2 @ ~ 1 1 09882007 -man_of_deeds n 1 1 @ 1 0 10291822 -man_of_letters n 1 1 @ 1 1 10291942 -man_of_means n 1 2 @ ~ 1 0 10292052 -man_of_the_cloth n 1 3 @ ~ #m 1 0 09927451 -man_of_the_world n 1 2 @ ~ 1 0 10625285 -manacle n 1 2 @ + 1 0 03484576 -manageability n 1 2 @ + 1 0 04905546 -manageableness n 1 2 @ + 1 0 04905546 -managed_economy n 1 2 @ ~ 1 0 08367100 -management n 2 4 @ ~ %m + 2 2 01133281 08381165 -management_consultant n 1 1 @ 1 0 10289338 -management_consulting n 1 1 @ 1 0 08073844 -management_control n 1 1 @ 1 0 00806366 -management_personnel n 1 1 @ 1 1 08440499 -manager n 2 4 @ ~ + ; 2 2 10014939 09931640 -manageress n 1 1 @ 1 0 10289462 -managership n 1 2 @ + 1 0 00594836 -managing_director n 1 2 @ ~ 1 0 10014939 -managing_editor n 1 1 @ 1 1 10289534 -managua n 1 2 @ #p 1 0 08739047 -manakin n 3 3 @ ~ #m 3 0 10291240 03717921 01551711 -manama n 1 2 @ #p 1 0 08848568 -manana n 1 1 @ 1 0 15263925 -manannan n 1 2 @ ; 1 0 09510419 -manassa_mauler n 1 1 @ 1 0 10930591 -manat n 2 1 @ 2 0 13702840 13699747 -manatee n 1 2 @ #m 1 0 02073831 -manawydan n 1 2 @ ; 1 0 09510527 -manawyddan n 1 2 @ ; 1 0 09510527 -manchester n 2 4 @ #p %m + 2 2 09111955 08876975 -manchester_terrier n 1 2 @ ~ 1 0 02094721 -manchu n 3 1 @ 3 0 09737653 08157405 06928744 -manchu_dynasty n 1 1 @ 1 0 08157405 -manchuria n 1 4 @ #p + - 1 0 08722844 -mancunian n 1 3 @ #m + 1 0 09704876 -manda n 1 1 @ 1 0 06981187 -mandaean n 2 1 @ 2 0 10290223 06988808 -mandaeanism n 1 1 @ 1 0 06223204 -mandala n 1 2 @ ; 1 0 03716656 -mandalay n 1 2 @ #p 1 0 08715952 -mandamus n 1 2 @ ; 1 1 06554675 -mandara n 1 1 @ 1 0 06984101 -mandarin n 6 5 @ ~ #m #p %p 6 0 12709901 10289863 10289766 10289671 07747951 06930093 -mandarin_chinese n 1 1 @ 1 0 06930093 -mandarin_dialect n 1 1 @ 1 0 06930093 -mandarin_duck n 1 2 @ #m 1 0 01852400 -mandarin_orange n 2 5 @ ~ #m #p %p 2 0 12709901 07747951 -mandarin_orange_tree n 1 4 @ ~ #m %p 1 0 12709901 -mandatary n 1 2 @ + 1 0 10289969 -mandate n 3 5 @ ~ = + ; 3 1 06556481 08597727 01140658 -mandator n 1 2 @ + 1 0 10290099 -mandatory n 2 3 @ ~ + 2 0 10289969 08597727 -mandatory_injunction n 1 2 @ ; 1 0 06543246 -mande n 1 1 @ 1 0 06997012 -mandean n 2 1 @ 2 0 10290223 06988808 -mandeanism n 1 1 @ 1 0 06223204 -mandela n 1 1 @ 1 0 11153200 -mandelamine n 1 2 @ ; 1 0 03755140 -mandelbrot n 1 1 @ 1 0 11153456 -mandelbrot_set n 1 1 @ 1 0 08001441 -mandelshtam n 1 1 @ 1 0 11153615 -mandelstam n 1 1 @ 1 0 11153615 -mandevilla n 1 3 @ #m %m 1 0 11773138 -mandevilla_boliviensis n 1 2 @ #m 1 0 11773408 -mandevilla_laxa n 1 2 @ #m 1 0 11773628 -mandible n 1 4 @ ~ %p + 1 0 05275905 -mandibula n 1 3 @ ~ %p 1 0 05275905 -mandibular_bone n 1 3 @ ~ %p 1 0 05275905 -mandibular_condyle n 1 2 @ #p 1 0 05471837 -mandibular_fossa n 1 2 @ #p 1 0 05280154 -mandibular_gland n 1 1 @ 1 0 05533635 -mandibular_joint n 1 1 @ 1 0 05276668 -mandibular_notch n 1 2 @ #p 1 0 05233741 -mandioc n 1 3 @ %s %p 1 0 12926689 -mandioca n 1 3 @ %s %p 1 0 12926689 -mandola n 1 1 @ 1 0 03716887 -mandolin n 1 3 @ ~ %p 1 0 03716966 -mandragora n 1 3 @ #m %m 1 0 12906334 -mandragora_officinarum n 1 3 @ #m %p 1 0 12906498 -mandrake n 2 4 @ #m #p %p 2 0 12906771 12906498 -mandrake_root n 1 2 @ #p 1 0 12906771 -mandrel n 1 2 @ #p 1 0 04277493 -mandril n 1 2 @ #p 1 0 04277493 -mandrill n 1 2 @ #m 1 0 02486908 -mandrillus n 1 3 @ #m %m 1 0 02486787 -mandrillus_leucophaeus n 1 1 @ 1 0 02487079 -mandrillus_sphinx n 1 2 @ #m 1 0 02486908 -manduca n 1 3 @ #m %m 1 0 02298833 -manduca_quinquemaculata n 2 2 @ #m 2 0 02299505 02299378 -manduca_sexta n 2 2 @ #m 2 0 02299157 02299039 -manduction n 2 3 @ ~ #p 2 0 01036333 00278810 -mane n 2 3 @ ~ #p 2 1 01899746 05256085 -maned_sheep n 1 2 @ #m 1 0 02416104 -maned_wolf n 1 1 @ 1 0 02114712 -manes n 1 1 @ 1 0 11153783 -manet n 1 1 @ 1 0 11153887 -maneuver n 5 5 @ ~ #p + ; 5 1 00959992 05905152 00556313 00168237 00059552 -maneuverability n 1 3 @ ~ + 1 1 04774198 -maneuverer n 1 2 @ + 1 0 10290422 -manfred_eigen n 1 1 @ 1 0 10954180 -manfulness n 1 2 @ + 1 1 04666837 -mangabey n 1 2 @ #m 1 0 02485988 -manganate n 1 1 @ 1 0 14947445 -manganese n 1 2 @ #s 1 0 14644654 -manganese_bronze n 1 1 @ 1 0 14947125 -manganese_steel n 1 1 @ 1 0 14947255 -manganese_tetroxide n 1 2 @ #s 1 0 14680963 -manganic_acid n 1 1 @ 1 0 14615006 -manganite n 1 2 @ %s 1 0 14681100 -mange n 1 2 @ + 1 0 14274217 -mangel-wurzel n 2 1 @ 2 0 11832899 07720185 -manger n 1 2 @ ~ 1 0 03717131 -mangifera n 1 3 @ #m %m 1 0 12761123 -mangifera_indica n 1 3 @ #m %p 1 0 12761284 -manginess n 1 3 @ ~ + 1 0 04816761 -mangle n 1 2 @ + 1 0 03717285 -mangler n 1 2 @ + 1 0 10341955 -manglietia n 1 2 @ #m 1 0 11711971 -mango n 2 4 @ #m #p %p 2 0 12761284 07764155 -mango_tree n 1 3 @ #m %p 1 0 12761284 -mangold n 1 1 @ 1 0 11832899 -mangold-wurzel n 1 1 @ 1 0 11832899 -mangonel n 1 1 @ 1 0 02981911 -mangosteen n 2 4 @ #m #p %p 2 0 12366675 07763987 -mangosteen_tree n 1 3 @ #m %p 1 0 12366675 -mangrove n 1 2 @ #m 1 0 12345899 -mangrove_family n 1 3 @ #m %m 1 0 12345495 -mangrove_snapper n 1 2 @ #m 1 0 02587300 -manhattan n 2 5 @ ~ #p %s %p 2 1 09120594 07915618 -manhattan_clam_chowder n 1 1 @ 1 0 07587819 -manhattan_island n 1 2 @ #p 1 0 09116709 -manhattan_project n 2 2 @ #p 2 0 08122768 00820232 -manhole n 1 2 @ %p 1 0 03717447 -manhole_cover n 1 2 @ #p 1 0 03717622 -manhood n 3 2 @ = 3 1 14425319 04726938 00594953 -manhunt n 1 1 @ 1 0 00946529 -mania n 2 3 @ ~ + 2 1 09181557 14391660 -maniac n 2 3 @ ~ + 2 1 10276764 10290541 -manic-depressive n 1 2 @ + 1 1 10290684 -manic-depressive_psychosis n 1 2 @ ~ 1 0 14392639 -manic_depression n 1 2 @ ~ 1 0 14392639 -manic_depressive_illness n 1 2 @ ~ 1 0 14392639 -manic_disorder n 1 2 @ ~ 1 0 14391660 -manichaean n 1 1 @ 1 0 10290813 -manichaeanism n 1 1 @ 1 0 06243575 -manichaeism n 1 2 @ + 1 0 06243575 -manichean n 1 1 @ 1 0 10290813 -manichee n 1 1 @ 1 0 10290813 -manicotti n 1 1 @ 1 0 07701457 -manicure n 1 2 @ + 1 0 00660783 -manicure_set n 1 1 @ 1 0 07997486 -manicurist n 1 3 @ ~ + 1 0 10290919 -manidae n 1 3 @ #m %m 1 0 02461556 -manifest n 1 2 @ ; 1 0 06501918 -manifest_destiny n 1 1 @ 1 0 06662057 -manifestation n 5 4 @ ~ + ; 5 2 07323231 06798558 07323024 06880249 01177703 -manifesto n 1 3 @ ~ ; 1 0 06727224 -manifold n 3 3 @ ~ + 3 1 03717750 14946750 08004548 -manifold_paper n 1 1 @ 1 0 14946750 -manihot n 1 3 @ #m %m 1 0 12926316 -manihot_dulcis n 1 1 @ 1 0 12927194 -manihot_esculenta n 1 3 @ %s %p 1 0 12926689 -manihot_utilissima n 1 3 @ %s %p 1 0 12926689 -manikin n 3 2 @ ~ 3 0 10291580 10291240 03717921 -manila n 2 2 @ #p 2 0 14946939 08981746 -manila_bay n 1 3 @ #p ; 1 0 01286181 -manila_bean n 1 3 @ #m %p 1 0 12564083 -manila_grass n 1 1 @ 1 0 12146488 -manila_hemp n 2 1 @ 2 0 14947558 12353431 -manila_maguey n 1 1 @ 1 0 12478131 -manila_paper n 1 1 @ 1 0 14946939 -manila_tamarind n 1 2 @ #m 1 0 11764478 -manilkara n 1 3 @ #m %p 1 0 12774127 -manilkara_bidentata n 1 2 @ %s 1 0 12774299 -manilkara_zapota n 1 3 @ #p %p 1 0 12774641 -manilla n 1 1 @ 1 0 14946939 -manilla_hemp n 1 1 @ 1 0 14947558 -manilla_paper n 1 1 @ 1 0 14946939 -manioc n 3 5 @ #s #p %s %p 3 0 14761578 12927013 12926689 -manioca n 1 2 @ #s 1 0 14761578 -manipulability n 1 2 @ + 1 0 04774365 -manipulation n 2 3 @ ~ + 2 1 00158185 00140652 -manipulative_electronic_deception n 1 1 @ 1 0 01251489 -manipulator n 2 3 @ ~ + 2 0 10378412 10291110 -manipur n 1 2 @ #p 1 0 08902321 -maniraptor n 1 3 @ ~ #m 1 0 01717016 -maniraptora n 1 3 @ #m %m 1 0 01716732 -manis n 1 3 @ #m %m 1 0 02461701 -manitoba n 1 3 @ #p %p 1 0 08823968 -mankato n 1 2 @ #p 1 0 09102781 -mankind n 1 2 @ %m 1 0 02472987 -manliness n 1 2 @ + 1 0 04666837 -mann n 2 1 @ 2 0 11154174 11154023 -manna n 2 2 @ ; 2 0 12311800 07860629 -manna_ash n 1 1 @ 1 0 12305293 -manna_from_heaven n 2 2 @ ; 2 0 07860629 07477587 -manna_grass n 1 3 @ ~ #m 1 0 12122245 -manna_gum n 1 1 @ 1 0 12338979 -manna_lichen n 1 1 @ 1 0 12988341 -mannequin n 2 2 @ ~ 2 0 10291240 03717921 -manner n 3 3 @ ~ + 3 3 04928903 04910135 05845562 -manner_name n 1 1 @ 1 0 06304425 -manner_of_speaking n 1 3 @ ~ #p 1 0 07071483 -manner_of_walking n 1 1 @ 1 0 05003090 -mannerism n 2 2 @ ~ 2 0 04764242 00755673 -manners n 1 2 @ ; 1 1 04898087 -mannheim n 1 2 @ #p 1 0 08774073 -mannikin n 3 2 @ ~ 3 0 10291580 10291240 03717921 -mannitol n 1 1 @ 1 0 03718056 -manoeuvrability n 1 3 @ ~ + 1 0 04774198 -manoeuvre n 5 5 @ ~ #p + ; 5 0 05905152 00959992 00556313 00168237 00059552 -manoeuvrer n 1 1 @ 1 0 10290422 -manometer n 1 2 @ ~ 1 1 03718335 -manor n 2 2 @ + 2 1 03718458 13252168 -manor_hall n 1 2 @ #p 1 0 03718581 -manor_house n 1 1 @ 1 1 03718458 -manpad n 1 1 @ 1 0 03718699 -manpower n 1 4 @ ~ %m %p 1 1 08212347 -manroot n 1 1 @ 1 0 12827907 -mansard n 1 3 @ ~ + 1 0 03718789 -mansard_roof n 1 2 @ ~ 1 0 03718789 -mansart n 1 1 @ 1 0 11154355 -manse n 2 3 @ ~ %p 2 1 03719053 03718935 -manservant n 1 2 @ ~ 1 1 10292192 -mansfield n 2 2 @ #p 2 0 11154489 09131324 -mansi n 2 2 @ #m 2 0 09708118 06959140 -mansion n 2 5 @ ~ #p %p ; 2 0 08685677 03719053 -mansion_house n 1 3 @ ~ %p 1 0 03719053 -manslaughter n 1 2 @ ~ 1 0 00220409 -manslayer n 1 2 @ ~ 1 0 10338707 -manson n 1 1 @ 1 0 11154646 -manta n 2 3 @ ~ #m 2 0 03719249 01500091 -manta_birostris n 1 2 @ #m 1 0 01500476 -manta_ray n 1 3 @ ~ #m 1 0 01500091 -mantegna n 1 1 @ 1 0 11154857 -manteidae n 1 3 @ #m %m 1 0 02235761 -mantel n 1 2 @ #p 1 1 03719343 -mantelet n 2 1 @ 2 0 03719650 03719560 -mantell n 1 1 @ 1 0 11155013 -mantelpiece n 1 2 @ #p 1 0 03719343 -manteodea n 1 3 @ #m %m 1 0 02235575 -mantichora n 1 1 @ 1 0 09498301 -manticora n 1 1 @ 1 0 09498301 -manticore n 1 1 @ 1 0 09498301 -mantid n 1 3 @ ~ #m 1 0 02236044 -mantidae n 1 3 @ #m %m 1 0 02235761 -mantiger n 1 1 @ 1 0 09498301 -mantilla n 2 1 @ 2 0 03719743 03719560 -mantinea n 1 2 @ ; 1 0 01286393 -mantineia n 1 2 @ ; 1 0 01286393 -mantis n 1 3 @ ~ #m 1 0 02236044 -mantis_crab n 1 3 @ ~ #m 1 0 01990007 -mantis_prawn n 1 2 @ #m 1 0 01990516 -mantis_religioso n 1 1 @ 1 0 02236241 -mantis_shrimp n 1 3 @ ~ #m 1 0 01990007 -mantispid n 1 2 @ #m 1 0 02267483 -mantispidae n 1 3 @ #m %m 1 0 02267356 -mantissa n 1 1 @ 1 0 06813115 -mantle n 8 6 @ ~ #p %p + ; 8 1 06883956 11155196 09346450 09223725 05244045 03719343 03151077 02955767 -mantled_ground_squirrel n 1 1 @ 1 0 02358390 -mantlepiece n 1 2 @ #p 1 0 03719343 -mantlet n 1 1 @ 1 0 03719650 -mantophasmatodea n 1 2 @ #m 1 0 02161737 -mantoux_test n 1 1 @ 1 0 05746163 -mantra n 2 2 @ ; 2 0 07152590 06466479 -mantrap n 2 1 @ 2 1 10613996 03719826 -mantua n 1 1 @ 1 0 03719911 -manual n 2 4 @ ~ %p ; 2 1 06421685 00895135 -manual_alphabet n 1 2 @ #p 1 0 06500765 -manual_dexterity n 1 1 @ 1 0 05642815 -manual_labor n 1 2 @ ~ 1 1 00623162 -manual_laborer n 1 2 @ ~ 1 0 10241300 -manual_labour n 1 2 @ ~ 1 0 00623162 -manual_of_arms n 1 3 @ %p ; 1 0 00895135 -manubrium n 1 2 @ #p 1 0 05281584 -manuel_de_falla n 1 1 @ 1 0 10965836 -manuel_rodriquez_patriotic_front n 1 2 @ ; 1 0 08033829 -manufactory n 1 4 @ ~ %p - 1 0 03316406 -manufacture n 2 4 @ ~ + - 2 1 00923444 00924825 -manufactured_home n 1 1 @ 1 0 03776460 -manufacturer n 2 3 @ ~ + 2 2 08060446 10292316 -manufacturing n 1 2 @ ~ 1 1 00924825 -manufacturing_business n 1 2 @ ~ 1 0 08060446 -manufacturing_plant n 1 4 @ ~ %p - 1 0 03316406 -manul n 1 2 @ #m 1 0 02126787 -manumission n 1 2 @ + 1 1 01247807 -manumitter n 1 2 @ + 1 0 10051026 -manure n 1 3 @ ~ + 1 1 14863521 -manus n 1 4 @ ~ #p %p 1 0 05564590 -manuscript n 2 2 @ ~ 2 1 06406979 06407221 -manx n 2 2 @ + 2 0 06961221 02124484 -manx_cat n 1 1 @ 1 0 02124484 -manx_shearwater n 1 1 @ 1 0 02060569 -manzanilla n 1 1 @ 1 0 07901176 -manzanita n 2 3 @ ~ #m 2 2 12231918 12230540 -manzoni n 1 1 @ 1 0 11155331 -mao n 2 1 @ 2 0 14953968 11155444 -mao_jacket n 1 1 @ 1 0 03720005 -mao_tsetung n 1 1 @ 1 0 11155444 -mao_zedong n 1 1 @ 1 0 11155444 -maoi n 1 2 @ ~ 1 0 03783017 -maoism n 1 2 @ + 1 0 06215495 -maoist n 1 2 @ + 1 0 10292622 -maori n 2 1 @ 2 0 08484239 06938386 -maori_hen n 1 2 @ #m 1 0 02015357 -map n 2 4 @ ~ + ; 2 1 03720163 13783816 -map-reader n 1 1 @ 1 0 10292714 -map_collection n 1 3 @ ~ %p 1 0 06427086 -map_maker n 1 2 @ ~ 1 0 09898215 -map_projection n 1 2 @ ~ 1 0 03720443 -mapinguari n 1 2 @ #m 1 0 02459636 -maple n 2 5 @ ~ #m #s %s 2 2 12752666 12752205 -maple-leaf n 1 1 @ 1 0 06883383 -maple-leaf_begonia n 1 1 @ 1 0 12361350 -maple-leaved_bayur n 1 2 @ #m 1 0 12200905 -maple_family n 1 3 @ #m %m 1 0 12751823 -maple_sugar n 1 1 @ 1 0 14947702 -maple_syrup n 1 1 @ 1 0 07860447 -maple_syrup_urine_disease n 1 1 @ 1 0 14159887 -mapmaking n 1 1 @ 1 0 00924579 -mapper n 1 2 @ + 1 0 10442573 -mapping n 2 4 @ ~ + ; 2 0 13783816 01024643 -mapquest n 1 3 @ + ; 1 0 06578527 -maputo n 1 2 @ #p 1 0 08971554 -maquiladora n 1 2 @ ; 1 0 03720665 -maquis n 2 3 @ #m %m 2 0 10292824 08360849 -maquisard n 1 2 @ #m 1 0 10292824 -mar n 2 5 @ ~ #p %p + 2 0 15210870 04692157 -mara n 2 2 @ #m 2 0 09526913 02365108 -marabou n 2 4 @ #m #p %p 2 0 02003204 01897851 -marabou_stork n 1 3 @ #m %p 1 0 02003204 -marabout n 1 3 @ #m %p 1 0 02003204 -maraca n 1 1 @ 1 0 03720891 -maracaibo n 1 2 @ #p 1 0 09162803 -maracan_language n 1 1 @ 1 0 06917392 -maracay n 1 2 @ #p 1 0 09162955 -maraco n 2 1 @ 2 0 09695379 06917392 -marang n 2 4 @ #m #p %p 2 0 12400924 07766723 -marang_tree n 1 3 @ #m %p 1 0 12400924 -maranta n 1 3 @ ~ #m 1 0 12351600 -maranta_arundinaceae n 1 1 @ 1 0 12351790 -marantaceae n 1 3 @ #m %m 1 0 12351287 -marasca n 2 4 @ #s #p %p 2 0 12644283 12644057 -marasca_cherry n 1 2 @ %p 1 0 12644057 -maraschino n 2 2 @ %s 2 0 07910379 07620689 -maraschino_cherry n 2 2 @ %p 2 0 12644057 07620689 -maraschino_liqueur n 1 2 @ %s 1 0 07910379 -marasmius n 1 3 @ #m %m 1 0 13006741 -marasmius_oreades n 1 2 @ #m 1 0 13006894 -marasmus n 1 1 @ 1 0 14200098 -marat n 1 1 @ 1 0 11155577 -maratha n 1 1 @ 1 0 09676374 -marathi n 1 1 @ 1 0 06971281 -marathon n 3 3 @ + ; 3 1 00797361 07460546 01286569 -marathon_runner n 1 1 @ 1 0 10292969 -marathoner n 1 2 @ + 1 0 10292969 -marattia n 1 3 @ #m %m 1 0 13215063 -marattia_salicina n 1 2 @ #m 1 0 13215258 -marattiaceae n 1 3 @ #m %m 1 0 13214813 -marattiales n 1 3 @ #m %m 1 0 13214645 -maraud n 1 3 @ ~ + 1 0 00976953 -marauder n 1 3 @ ~ + 1 0 10293172 -maravilla n 2 1 @ 2 0 11840476 11840246 -marble n 3 3 @ ~ + 3 2 14947807 03721047 03721169 -marble-wood n 2 4 @ #m #s %s 2 0 12771085 12770892 -marble_bones_disease n 1 1 @ 1 0 14210119 -marble_cake n 1 1 @ 1 0 07634406 -marbleisation n 1 2 @ + 1 0 04951186 -marbleising n 1 1 @ 1 0 04951186 -marbleization n 1 2 @ + 1 0 04951186 -marbleizing n 1 2 @ + 1 1 04951186 -marbles n 2 1 @ 2 1 00486358 05622196 -marblewood n 2 4 @ #m #s %s 2 0 12771085 12770892 -marbling n 1 1 @ 1 0 07672583 -marburg_disease n 1 1 @ 1 0 14265722 -marburg_hemorrhagic_fever n 1 1 @ 1 0 14265722 -marburg_virus n 1 2 @ #m 1 0 01332181 -marc n 1 1 @ 1 0 07904190 -marc_blitzstein n 1 1 @ 1 0 10853244 -marc_chagall n 1 1 @ 1 0 10889533 -marceau n 1 1 @ 1 0 11155814 -marcel n 1 1 @ 1 0 05259991 -marcel_duchamp n 1 1 @ 1 0 10944238 -marcel_lajos_breuer n 1 1 @ 1 0 10863717 -marcel_marceau n 1 1 @ 1 0 11155814 -marcel_proust n 1 1 @ 1 0 11247298 -marcello_malpighi n 1 1 @ 1 0 11152544 -march n 7 5 @ ~ #p %p + 7 4 15210870 00290579 00282840 08428019 08513163 07058296 06700844 -march_17 n 1 1 @ 1 0 15187988 -march_19 n 1 2 @ #p 1 0 15194739 -march_2 n 1 2 @ #p 1 0 15187800 -march_25 n 1 2 @ #p 1 0 15186147 -march_equinox n 1 3 @ ~ #p 1 0 15223574 -march_king n 1 1 @ 1 0 11308988 -marchand_de_vin n 1 1 @ 1 0 07831821 -marchantia n 1 3 @ #m %m 1 0 11543792 -marchantia_polymorpha n 1 2 @ #m 1 0 11544015 -marchantiaceae n 1 3 @ #m %m 1 0 11543602 -marchantiales n 1 3 @ #m %m 1 0 11543429 -marche n 1 2 @ #p 1 0 08809384 -marcher n 3 3 @ ~ + 3 0 10293502 10293332 10204921 -marches n 1 2 @ #p 1 0 08809384 -marching n 1 3 @ ~ + 1 1 00290579 -marching_band n 1 1 @ 1 0 08249207 -marching_music n 1 2 @ ~ 1 0 07058296 -marching_order n 1 1 @ 1 0 03721252 -marching_orders n 2 1 @ 2 0 07276414 07168983 -marchioness n 2 2 @ ~ 2 0 10293773 10293590 -marchland n 1 1 @ 1 0 08513163 -marchpane n 1 1 @ 1 0 07608245 -marciano n 1 1 @ 1 0 11155943 -marcionism n 1 1 @ 1 0 06189341 -marco_polo n 1 1 @ 1 0 11241300 -marco_polo's_sheep n 1 2 @ #m 1 0 02414904 -marco_polo_sheep n 1 2 @ #m 1 0 02414904 -marconi n 1 1 @ 1 0 11156122 -marconi_rig n 1 1 @ 1 0 02831455 -marcus_annius_verus n 1 1 @ 1 0 10819755 -marcus_antonius n 1 1 @ 1 0 10820163 -marcus_aurelius n 1 1 @ 1 0 10819755 -marcus_aurelius_antoninus n 1 1 @ 1 0 10819755 -marcus_aurelius_valerius_maximianus n 1 1 @ 1 0 11166251 -marcus_cocceius_nerva n 1 1 @ 1 0 11204069 -marcus_junius_brutus n 1 1 @ 1 0 10869207 -marcus_terentius_varro n 1 1 @ 1 0 11361039 -marcus_tullius_cicero n 1 1 @ 1 0 10897946 -marcus_ulpius_traianus n 1 1 @ 1 0 11347834 -marcus_vipsanius_agrippa n 1 1 @ 1 0 10809857 -marcus_whitman n 1 1 @ 1 0 11384755 -marcuse n 1 1 @ 1 0 11156333 -mardi_gras n 2 2 @ #p 2 0 15241898 00520059 -marduk n 1 2 @ ; 1 0 09519288 -mare n 2 3 @ ~ #m 2 1 02377480 09346613 -mare's_nest n 1 2 @ ~ 1 0 14500567 -mare's_tail n 1 1 @ 1 0 09347116 -mare_clausum n 1 1 @ 1 0 09346735 -mare_liberum n 1 1 @ 1 0 09346874 -mare_nostrum n 1 1 @ 1 0 09347008 -marengo n 1 3 @ #p ; 1 0 01286745 -marfan's_syndrome n 1 1 @ 1 0 14157967 -margaret_court n 1 1 @ 1 0 10913355 -margaret_higgins_sanger n 1 1 @ 1 0 11280405 -margaret_hilda_thatcher n 1 1 @ 1 0 11337779 -margaret_mead n 1 1 @ 1 0 11170248 -margaret_mitchell n 1 1 @ 1 0 11182275 -margaret_munnerlyn_mitchell n 1 1 @ 1 0 11182275 -margaret_sanger n 1 1 @ 1 0 11280405 -margaret_thatcher n 1 1 @ 1 0 11337779 -margarete_gertrud_zelle n 1 1 @ 1 0 11164163 -margaric_acid n 1 1 @ 1 0 14742476 -margarin n 2 3 @ ~ %s 2 0 15079445 07672914 -margarine n 1 3 @ ~ %s 1 0 07672914 -margarita n 1 1 @ 1 0 07915918 -margasivsa n 1 2 @ #p 1 0 15220864 -margate n 1 2 @ #m 1 0 02588794 -margay n 1 2 @ #m 1 0 02126640 -margay_cat n 1 2 @ #m 1 0 02126640 -marge n 1 3 @ ~ %s 1 0 07672914 -margin n 6 5 @ ~ #p + ; 6 2 13903387 05120683 13351278 13260762 06389398 04749991 -margin_account n 1 2 ! @ 1 0 13351986 -margin_call n 1 1 @ 1 0 07192661 -margin_of_error n 1 1 @ 1 0 05120835 -margin_of_profit n 1 1 @ 1 0 13261242 -margin_of_safety n 1 1 @ 1 0 05120835 -marginal_cost n 1 1 @ 1 1 05145708 -marginal_placentation n 1 1 @ 1 0 11682003 -marginal_utility n 1 2 @ ; 1 0 13580228 -marginal_wood_fern n 1 1 @ 1 0 13194036 -marginalia n 1 2 @ ~ 1 0 06505935 -marginalisation n 1 2 @ + 1 0 13510946 -marginality n 1 3 ! @ + 1 1 05078147 -marginalization n 1 2 @ + 1 0 13510946 -marginocephalia n 1 3 @ #m %m 1 0 01702623 -marginocephalian n 1 3 @ #m %m 1 0 01702623 -margosa n 1 3 @ #m %p 1 0 12696492 -margrave n 2 2 @ ; 2 0 10294020 10293861 -marguerite n 2 2 @ #m 2 0 11989869 11925898 -marguerite_daisy n 1 2 @ #m 1 0 11925898 -marguerite_radclyffe_hall n 1 1 @ 1 0 11025125 -mari n 2 2 @ #m 2 0 09706396 06957287 -maria n 2 2 @ #m 2 1 09346613 12365158 -maria_callas n 1 1 @ 1 0 10880189 -maria_luigi_carlo_zenobio_cherubini n 1 1 @ 1 0 10894905 -maria_magdalene_von_losch n 1 1 @ 1 0 10935304 -maria_meneghini_callas n 1 1 @ 1 0 10880189 -maria_mitchell n 1 1 @ 1 0 11182479 -maria_montesorri n 1 1 @ 1 0 11187154 -maria_tallchief n 1 1 @ 1 0 11329507 -mariachi n 1 1 @ 1 0 08250409 -marian_anderson n 1 1 @ 1 0 10817458 -mariana_islands n 1 3 @ #p %p 1 0 08837552 -marianas n 1 3 @ #p %p 1 0 08837552 -marianne_craig_moore n 1 1 @ 1 0 11189432 -marianne_moore n 1 1 @ 1 0 11189432 -maricopa n 2 1 @ 2 0 09660240 06923066 -marie-strumpell_disease n 1 1 @ 1 0 14220474 -marie_anne_charlotte_corday_d'armont n 1 1 @ 1 0 10910580 -marie_antoinette n 1 1 @ 1 0 11156548 -marie_charlotte_carmichael_stopes n 1 1 @ 1 0 11320044 -marie_curie n 1 1 @ 1 0 10917703 -marie_dolores_eliza_rosanna_gilbert n 1 1 @ 1 0 11187471 -marie_goeppert_mayer n 1 1 @ 1 0 11167088 -marie_grosholtz n 1 1 @ 1 0 11353510 -marie_henri_beyle n 1 1 @ 1 0 11316249 -marie_jean_antoine_nicolas_caritat n 1 1 @ 1 0 10906638 -marie_jeanne_becu n 1 1 @ 1 0 10943811 -marie_joseph_paul_yves_roch_gilbert_du_motier n 1 1 @ 1 0 11114056 -marie_louise_elisabeth_vigee-lebrun n 1 1 @ 1 0 11366232 -marie_stopes n 1 1 @ 1 0 11320044 -marie_tussaud n 1 1 @ 1 0 11353510 -mariehamn n 1 2 @ #p 1 0 08780720 -marigold n 1 3 @ ~ #m 1 0 12020507 -marihuana n 2 5 @ ~ #s #p %p 2 0 12397210 02949691 -marijuana n 2 5 @ ~ #s #p %p 2 0 12397210 02949691 -marijuana_cigarette n 1 2 @ %s 1 0 03600806 -marilyn_horne n 1 1 @ 1 0 11060688 -marilyn_monroe n 1 1 @ 1 0 11186207 -marimba n 1 1 @ 1 0 03721384 -marina n 1 1 @ 1 0 03721590 -marinade n 1 2 @ + 1 0 07824502 -marinara n 1 1 @ 1 0 07838441 -marine n 2 3 @ #m ; 2 1 10294139 10294318 -marine_animal n 1 2 @ ~ 1 0 01319467 -marine_archaeology n 1 1 @ 1 0 06145158 -marine_archeology n 1 1 @ 1 0 06145158 -marine_corps n 1 4 @ #p %m %p 1 1 08192970 -marine_corps_intelligence_activity n 1 3 @ #m #p 1 0 08194546 -marine_creature n 1 2 @ ~ 1 0 01319467 -marine_engineer n 1 2 @ ; 1 0 10294421 -marine_glue n 1 1 @ 1 0 14703709 -marine_iguana n 1 2 @ #m 1 0 01677747 -marine_law n 1 3 @ ; - 1 0 08454191 -marine_mine n 1 2 @ ~ 1 0 03365078 -marine_museum n 1 2 @ ~ 1 0 02732072 -marine_mussel n 1 3 @ ~ #m 1 0 01964049 -marine_turtle n 1 2 @ ~ 1 0 01663401 -marineland n 1 1 @ 1 0 03721691 -mariner n 1 2 @ ~ 1 0 10294602 -mariner's_compass n 1 1 @ 1 0 03080731 -marines n 1 3 @ ~ ; 1 0 08192817 -marini n 1 1 @ 1 0 11156812 -marino n 1 1 @ 1 0 11156812 -mario_vargas_llosa n 1 1 @ 1 0 11360895 -marionette n 1 1 @ 1 0 04025350 -mariotte's_law n 1 1 @ 1 0 05875988 -mariposa n 1 3 @ ~ #m 1 0 12446200 -mariposa_lily n 1 3 @ ~ #m 1 0 12446200 -mariposa_tulip n 1 3 @ ~ #m 1 0 12446200 -mariposan n 1 1 @ 1 0 06924659 -marital_bed n 1 1 @ 1 0 13815030 -marital_communications_privilege n 1 1 @ 1 0 05180286 -marital_relationship n 1 1 @ 1 0 13815030 -marital_status n 1 3 @ ~ ; 1 0 13963757 -mariticide n 1 1 @ 1 0 00221727 -maritime_law n 1 3 @ ; - 1 0 08454191 -maritime_provinces n 1 3 @ #p %p 1 0 08821578 -maritimes n 1 3 @ #p %p 1 0 08821578 -marjoram n 2 4 @ #m #p %p 2 0 12853287 07818995 -mark n 15 6 @ ~ #p %p + ; 15 6 05737153 07270179 07262108 06798750 04676064 06794666 13688033 11156943 09921409 06817782 06646243 06441803 04693900 04681387 00064789 -mark_anthony n 1 1 @ 1 0 10820163 -mark_antony n 1 1 @ 1 0 10820163 -mark_clark n 1 1 @ 1 0 10898929 -mark_hopkins n 1 1 @ 1 0 11060103 -mark_of_cain n 1 1 @ 1 0 04828126 -mark_rothko n 1 1 @ 1 0 11272198 -mark_tobey n 1 1 @ 1 0 11344092 -mark_twain n 1 1 @ 1 0 10900730 -mark_wayne_clark n 1 1 @ 1 0 10898929 -markaz-ud-dawa-wal-irshad n 1 2 @ ; 1 0 08047501 -marker n 3 3 @ ~ + 3 1 03721797 07270179 03722007 -market n 5 5 @ ~ %m %p + 5 4 01097292 08424951 03461385 08072837 03722288 -market_analysis n 1 1 @ 1 0 00640434 -market_analyst n 1 3 @ ~ ; 1 0 09791248 -market_capitalisation n 1 1 @ 1 0 00952386 -market_capitalization n 1 1 @ 1 0 00952386 -market_cross n 1 1 @ 1 0 08597973 -market_day n 1 1 @ 1 0 15174122 -market_economy n 1 3 ! @ ~ 1 0 08364959 -market_forces n 1 1 @ 1 0 13511243 -market_garden n 1 1 @ 1 0 03722169 -market_gardening n 1 1 @ 1 0 00921289 -market_keeper n 1 3 @ ~ #m 1 0 10592152 -market_letter n 1 1 @ 1 0 06682152 -market_order n 1 1 @ 1 0 06529996 -market_penetration n 1 1 @ 1 0 00051897 -market_place n 2 3 @ ~ %p 2 0 03722288 01097292 -market_price n 1 1 @ 1 1 13337322 -market_research n 1 2 @ ~ 1 0 00640188 -market_square n 1 2 @ ~ 1 0 03847823 -market_strategist n 1 1 @ 1 0 09791419 -market_town n 1 1 @ 1 0 08672073 -market_value n 1 1 @ 1 1 13337322 -marketer n 1 3 @ ~ + 1 0 10577284 -marketing n 3 5 @ ~ #p %p + 3 1 01113068 01112420 00082081 -marketing_cost n 1 1 @ 1 0 13302621 -marketing_research n 1 2 @ ~ 1 0 00640188 -marketplace n 2 3 @ ~ %p 2 2 01097292 03722288 -markhoor n 1 1 @ 1 0 02417785 -markhor n 1 1 @ 1 0 02417785 -marking n 4 3 @ ~ + 4 2 07270179 04680285 00874977 00263642 -marking_ink n 1 1 @ 1 0 14948156 -markka n 1 2 @ %p 1 0 13688447 -markoff n 1 1 @ 1 0 11157275 -markoff_chain n 1 1 @ 1 0 13511368 -markoff_process n 1 2 @ ~ 1 0 13511507 -markov n 1 2 @ + 1 0 11157275 -markov_chain n 1 1 @ 1 0 13511368 -markov_process n 1 2 @ ~ 1 0 13511507 -markova n 1 1 @ 1 0 11157140 -marks n 1 1 @ 1 0 11157422 -marksman n 1 3 @ ~ + 1 1 10294953 -marksmanship n 1 2 @ + 1 1 05638606 -markup n 2 2 @ + 2 0 13303880 06787602 -markup_language n 1 2 @ ~ 1 0 06787835 -markweed n 1 2 @ #m 1 0 12766869 -marl n 1 2 @ + 1 0 14681249 -marlberry n 1 2 @ #m 1 0 12097556 -marlene_dietrich n 1 1 @ 1 0 10935304 -marley n 1 1 @ 1 0 11157580 -marlin n 1 3 @ ~ #m 1 0 02631041 -marline n 1 1 @ 1 0 03722552 -marlinespike n 1 1 @ 1 0 03722646 -marlingspike n 1 1 @ 1 0 03722646 -marlinspike n 1 1 @ 1 0 03722646 -marlite n 1 1 @ 1 0 14698568 -marlowe n 2 2 @ ; 2 0 11157719 09601571 -marlstone n 1 1 @ 1 0 14698568 -marmalade n 1 2 @ ~ 1 1 07643764 -marmalade_box n 1 3 @ #m %p 1 0 12667582 -marmalade_bush n 1 2 @ #m 1 0 12914193 -marmalade_orange n 1 3 @ #m %p 1 0 12708654 -marmalade_plum n 1 2 @ #p 1 0 07764486 -marmalade_tree n 1 3 @ #m %p 1 0 12775919 -marmara n 1 1 @ 1 0 09347208 -marmara_denizi n 1 1 @ 1 0 09347208 -marmite n 2 1 @ 2 0 07586099 03722827 -marmora n 1 1 @ 1 0 09347208 -marmoset n 1 3 @ ~ #m 1 0 02490219 -marmot n 1 3 @ ~ #m 1 0 02361337 -marmota n 1 3 @ #m %m 1 0 02361222 -marmota_caligata n 1 1 @ 1 0 02361706 -marmota_flaviventris n 1 1 @ 1 0 02361850 -marmota_monax n 1 1 @ 1 0 02361587 -marne_river n 1 3 @ #p ; 1 0 01271428 -maroc n 1 5 @ #m #p %m %p 1 0 08969291 -marocain n 1 1 @ 1 0 03722944 -maroon n 3 2 @ + 3 0 10295190 04964878 03723054 -marplan n 1 2 @ ; 1 0 03587442 -marquand n 1 1 @ 1 0 11157954 -marque n 1 3 @ ~ - 1 0 06845599 -marquee n 2 1 @ 2 1 03900979 03723153 -marquesas_islands n 1 2 @ #p 1 0 08990999 -marquess n 2 1 @ 2 0 10295479 10295371 -marqueterie n 1 1 @ 1 0 03723267 -marquetry n 1 1 @ 1 0 03723267 -marquette n 2 2 @ #p 2 0 11158156 09101495 -marquis n 2 1 @ 2 0 11158364 10295479 -marquis_de_condorcet n 1 1 @ 1 0 10906638 -marquis_de_lafayette n 1 1 @ 1 0 11114056 -marquis_de_laplace n 1 1 @ 1 0 11117451 -marquis_de_sade n 1 1 @ 1 0 11278120 -marquise n 2 2 @ ~ 2 0 10293590 03723153 -marquise_de_maintenon n 1 1 @ 1 0 11150224 -marquise_de_montespan n 1 1 @ 1 0 11186685 -marquise_de_pompadour n 1 1 @ 1 0 11241655 -marrakech n 1 2 @ #p 1 0 08970189 -marrakesh n 1 2 @ #p 1 0 08970189 -marrano n 1 1 @ 1 0 10295597 -marri n 1 1 @ 1 0 12336224 -marriage n 4 5 @ ~ %m + ; 4 3 13963970 07989373 01036996 14421585 -marriage_bed n 1 1 @ 1 1 03723439 -marriage_broker n 1 1 @ 1 0 10299875 -marriage_brokerage n 1 1 @ 1 0 08070341 -marriage_ceremony n 1 2 @ ~ 1 0 01036996 -marriage_contract n 1 1 @ 1 1 06523353 -marriage_counseling n 1 1 @ 1 0 06651463 -marriage_licence n 1 1 @ 1 0 06551339 -marriage_license n 1 1 @ 1 0 06551339 -marriage_mart n 1 1 @ 1 1 08070341 -marriage_of_convenience n 1 1 @ 1 0 13965515 -marriage_offer n 1 2 @ ~ 1 0 07161741 -marriage_proposal n 1 2 @ ~ 1 0 07161741 -marriage_settlement n 1 1 @ 1 0 06523353 -marriageability n 1 2 @ + 1 0 04718030 -married n 1 2 @ + 1 0 10295819 -married_couple n 1 3 @ ~ %m 1 1 07989373 -married_man n 1 2 @ ~ 1 0 10193967 -married_person n 1 3 @ ~ #m 1 0 10640620 -married_woman n 1 2 @ ~ 1 0 10780632 -marrow n 5 4 @ ~ #p %p 5 1 05285623 12159555 07873057 07716504 05921123 -marrow_squash n 1 3 @ ~ %p 1 0 12159555 -marrowbone n 1 2 @ %p 1 1 07872915 -marrowfat_pea n 1 1 @ 1 0 07725663 -marrubium n 1 3 @ #m %m 1 0 12853901 -marrubium_vulgare n 1 1 @ 1 0 12854193 -marruecos n 1 5 @ #m #p %m %p 1 0 08969291 -mars n 2 4 @ #m + ; 2 1 09347445 09555785 -marsala n 1 1 @ 1 0 07901355 -marseillaise n 1 1 @ 1 0 07049205 -marseille n 2 2 @ #p 2 0 08936833 03723534 -marseilles n 1 2 @ #p 1 0 08936833 -marseilles_fever n 1 1 @ 1 0 14078120 -marsh n 3 3 @ ~ + 3 1 09347779 11158651 11158533 -marsh_andromeda n 1 1 @ 1 0 12229887 -marsh_bellflower n 1 1 @ 1 0 12038208 -marsh_buggy n 1 1 @ 1 0 04368695 -marsh_clematis n 1 1 @ 1 0 11730015 -marsh_cress n 1 2 @ #m 1 0 11895472 -marsh_elder n 1 3 @ ~ #m 1 0 11985053 -marsh_felwort n 1 2 @ #m 1 0 12298958 -marsh_fern n 1 3 @ ~ #m 1 0 13227778 -marsh_gas n 1 1 @ 1 0 14948265 -marsh_gentian n 1 2 @ #m 1 0 12295033 -marsh_hare n 1 1 @ 1 0 02326074 -marsh_harrier n 1 2 @ #m 1 0 01609956 -marsh_hawk n 1 2 @ #m 1 0 01610226 -marsh_hen n 2 3 @ ~ #m 2 0 02018207 02016358 -marsh_horsetail n 1 1 @ 1 0 13220355 -marsh_mallow n 1 2 @ #m 1 0 12174521 -marsh_marigold n 1 2 @ #m 1 0 11728099 -marsh_milkweed n 1 2 @ #m 1 0 11969166 -marsh_orchid n 1 2 @ #m 1 0 12058630 -marsh_pea n 1 2 @ #m 1 0 12540966 -marsh_pink n 1 1 @ 1 0 12298395 -marsh_plant n 1 2 @ ~ 1 0 13122364 -marsh_rosemary n 1 2 @ #m 1 0 12099342 -marsh_st-john's_wort n 1 1 @ 1 0 12369845 -marsh_tea n 1 2 @ #m 1 0 12238913 -marsh_trefoil n 1 2 @ #m 1 0 12484784 -marsh_wren n 1 3 @ ~ #m 1 0 01585121 -marshal n 2 4 @ ~ + ; 2 1 10295951 10296176 -marshal_saxe n 1 1 @ 1 0 11283300 -marshal_tito n 1 1 @ 1 0 11343625 -marshall n 5 3 @ ~ ; 5 0 11159214 11158982 11158754 10296176 10295951 -marshall_islands n 2 4 @ #p %p ; 2 0 08839092 08838887 -marshall_mcluhan n 1 1 @ 1 0 11169595 -marshall_plan n 1 1 @ 1 0 13266690 -marshalling_yard n 1 1 @ 1 1 03723653 -marshals n 1 2 @ #p 1 0 08142370 -marshalship n 1 2 @ + 1 0 00595032 -marshland n 1 2 @ ~ 1 0 09347779 -marshmallow n 1 1 @ 1 0 07608098 -marshmallow_fluff n 1 1 @ 1 0 07855603 -marsilea n 1 3 @ #m %m 1 0 12957467 -marsilea_drummondii n 1 1 @ 1 0 12957803 -marsilea_quadrifolia n 1 2 @ #m 1 0 12957924 -marsileaceae n 1 3 @ #m %m 1 0 12957298 -marstan n 1 1 @ 1 0 11159318 -marston_moor n 2 3 @ #p ; 2 0 08885099 01286938 -marsupial n 1 3 @ ~ #m 1 0 01874434 -marsupial_mole n 1 2 @ #m 1 0 01886045 -marsupial_mouse n 1 2 @ #m 1 0 01885158 -marsupial_rat n 1 2 @ #m 1 0 01885158 -marsupialia n 1 3 @ #m %m 1 0 01874126 -marsupium n 1 1 @ 1 0 05517268 -mart n 1 2 @ ~ 1 0 03722288 -marta_brigit_nilsson n 1 1 @ 1 0 11207768 -martagon n 1 1 @ 1 0 12428076 -martello_tower n 1 1 @ 1 0 03723781 -marten n 1 3 @ ~ #m 1 0 02450034 -marten_cat n 1 3 @ ~ #m 1 0 02450034 -martensite n 1 2 @ #s 1 0 14948377 -martes n 1 3 @ #m %m 1 0 02449921 -martes_americana n 1 1 @ 1 0 02450561 -martes_foina n 1 1 @ 1 0 02450677 -martes_martes n 1 1 @ 1 0 02450295 -martes_pennanti n 1 1 @ 1 0 02450829 -martes_zibellina n 1 1 @ 1 0 02450426 -martha's_vineyard n 1 1 @ 1 0 09098488 -martha_beatrice_potter_webb n 1 1 @ 1 0 11378087 -martha_graham n 1 1 @ 1 0 11010187 -martha_jane_burk n 1 1 @ 1 0 10872839 -martha_jane_burke n 1 1 @ 1 0 10872839 -marti n 1 1 @ 1 0 11159418 -martial n 1 1 @ 1 0 11159595 -martial_art n 1 2 @ ~ 1 0 00825443 -martial_law n 1 2 @ ; 1 0 08454818 -martial_music n 1 2 @ ~ 1 0 07058468 -martian n 1 1 @ 1 1 09489790 -martin n 5 2 @ ~ 5 0 11160055 11159920 11159819 11159698 01595624 -martin_buber n 1 1 @ 1 0 10869683 -martin_cline n 1 1 @ 1 0 10902232 -martin_heidegger n 1 1 @ 1 0 11038293 -martin_heinrich_klaproth n 1 1 @ 1 0 11106652 -martin_luther n 1 1 @ 1 0 11145364 -martin_luther_king n 1 1 @ 1 0 11105054 -martin_luther_king_day n 1 2 @ #p 1 0 15182402 -martin_luther_king_jr's_birthday n 1 2 @ #p 1 0 15182402 -martin_luther_king_jr. n 1 1 @ 1 0 11105054 -martin_scorsese n 1 1 @ 1 0 11288818 -martin_v n 1 1 @ 1 0 11160200 -martin_van_buren n 1 1 @ 1 0 11358719 -martina_navratilova n 1 1 @ 1 0 11201740 -martinet n 1 2 @ ~ 1 0 10296444 -martingale n 2 2 @ #p 2 0 03723885 03220401 -martini n 1 3 @ ~ %s 1 1 07916041 -martinique n 1 3 @ #m #p 1 0 08943242 -martinmas n 1 2 @ #p 1 0 15185837 -martynia n 1 2 @ #m 1 0 12873984 -martynia_annua n 1 2 @ #m 1 0 12873984 -martynia_arenaria n 1 2 @ #m 1 0 12875697 -martynia_fragrans n 1 2 @ #m 1 0 12875861 -martyniaceae n 1 2 @ #m 1 0 12873646 -martyr n 2 3 @ ~ + 2 1 10296618 10296832 -martyr_operation n 1 1 @ 1 0 00731756 -martyrdom n 2 2 @ + 2 0 07333347 07306032 -martyrs_of_al-aqsa n 1 2 @ ; 1 0 08010942 -marum n 1 1 @ 1 0 12870048 -marumi n 1 2 @ #m 1 0 12713358 -marumi_kumquat n 1 2 @ #m 1 0 12713358 -marupa n 1 2 @ #m 1 0 12716400 -marut n 1 1 @ 1 0 09527185 -marvel n 1 2 @ + 1 1 07289588 -marvel-of-peru n 1 1 @ 1 0 11839823 -marvell n 1 1 @ 1 0 11160361 -marveller n 1 2 @ + 1 0 10789534 -marvin_neil_simon n 1 1 @ 1 0 11301129 -marx n 5 2 @ #m 5 0 11161228 11161045 11160861 11160676 11160457 -marx_brothers n 1 2 @ %m 1 0 07989741 -marxism n 1 3 @ + - 1 0 06215618 -marxism-leninism n 1 1 @ 1 0 06215152 -marxist n 2 2 @ + 2 0 10297140 09863749 -mary n 1 2 @ + 1 1 11161412 -mary_ann_evans n 1 1 @ 1 0 10956883 -mary_ashton_rice_livermore n 1 1 @ 1 0 11135488 -mary_augusta_arnold_ward n 1 1 @ 1 0 11374085 -mary_baker_eddy n 1 1 @ 1 0 10948656 -mary_douglas_leakey n 1 1 @ 1 0 11121876 -mary_flannery_o'connor n 1 1 @ 1 0 11211987 -mary_godwin_wollstonecraft_shelley n 1 1 @ 1 0 11297032 -mary_harris_jones n 1 1 @ 1 0 11090884 -mary_i n 1 2 @ #m 1 0 11161664 -mary_ii n 1 1 @ 1 0 11162010 -mary_jane n 1 1 @ 1 0 03990834 -mary_leakey n 1 1 @ 1 0 11121876 -mary_leontyne_price n 1 1 @ 1 0 11246408 -mary_ludwig_hays_mccauley n 1 1 @ 1 0 11168218 -mary_magdalen n 1 1 @ 1 0 11162582 -mary_magdalene n 1 1 @ 1 1 11162582 -mary_mallon n 1 1 @ 1 0 11151932 -mary_martin n 1 1 @ 1 0 11159819 -mary_mccarthy n 1 1 @ 1 0 11167792 -mary_mccauley n 1 1 @ 1 0 11168218 -mary_mcleod_bethune n 1 1 @ 1 0 10850469 -mary_morse_baker_eddy n 1 1 @ 1 0 10948656 -mary_pickford n 1 1 @ 1 0 11234643 -mary_queen_of_scots n 1 2 @ #m 1 0 11162206 -mary_shelley n 1 1 @ 1 0 11297032 -mary_stuart n 1 2 @ #m 1 0 11162206 -mary_therese_mccarthy n 1 1 @ 1 0 11167792 -mary_tudor n 1 2 @ #m 1 0 11161664 -mary_wollstonecraft n 1 1 @ 1 0 11395199 -mary_wollstonecraft_godwin n 1 1 @ 1 0 11395199 -mary_wollstonecraft_shelley n 1 1 @ 1 0 11297032 -marya_sklodowska n 1 1 @ 1 0 10917703 -maryland n 2 3 @ #p %p 2 1 09093608 09093980 -maryland_chicken n 1 1 @ 1 0 07864198 -maryland_golden_aster n 1 1 @ 1 0 11951820 -maryland_yellowthroat n 1 1 @ 1 0 01570839 -marylander n 1 1 @ 1 0 09743601 -marzipan n 1 1 @ 1 0 07608245 -masa n 1 1 @ 1 0 06986100 -masai n 1 1 @ 1 0 06998460 -mascara n 1 1 @ 1 1 03724066 -mascarene_grass n 1 1 @ 1 0 12146823 -mascarpone n 1 1 @ 1 0 07851554 -mascot n 1 1 @ 1 0 10297234 -masculine n 1 1 @ 1 0 06329165 -masculinisation n 1 1 @ 1 0 13511755 -masculinity n 2 4 ! @ ~ + 2 1 05008227 04666615 -masculinization n 1 2 @ + 1 0 13511755 -masdevallia n 1 2 @ #m 1 0 12072722 -masefield n 1 1 @ 1 0 11162793 -maser n 1 2 @ ~ 1 0 03724176 -maseru n 1 2 @ #p 1 0 08959105 -mash n 2 3 @ ~ + 2 0 14948645 07805254 -mashed_potato n 1 1 @ 1 0 07711569 -masher n 2 2 @ + 2 0 10787197 03724417 -mashhad n 1 2 @ #p 1 0 08911868 -mashi n 1 1 @ 1 0 06994157 -mashie n 1 1 @ 1 0 03724538 -mashie_niblick n 1 1 @ 1 0 03724623 -mashriq n 1 2 @ ; 1 0 08791978 -masjid n 1 2 @ ; 1 0 03724756 -mask n 4 3 @ ~ + 4 2 03724870 01049475 08253450 03725035 -mask_of_pregnancy n 1 1 @ 1 0 14302652 -masked_ball n 1 1 @ 1 0 07449157 -masked_shrew n 1 1 @ 1 0 01892145 -masker n 1 2 @ + 1 0 10297841 -masking n 3 2 @ + 3 1 01049685 05713347 03725198 -masking_paper n 1 1 @ 1 0 03725355 -masking_piece n 1 1 @ 1 0 03725198 -masking_tape n 1 1 @ 1 0 03725355 -masochism n 1 3 @ ~ + 1 0 07494175 -masochist n 1 4 ! @ ~ + 1 0 10297367 -mason n 5 4 @ ~ #m + 5 0 11163160 11163041 11162915 10297531 10111144 -mason's_level n 1 1 @ 1 0 03725869 -mason's_trowel n 1 1 @ 1 0 02898269 -mason-dixon_line n 1 1 @ 1 0 08515581 -mason_and_dixon's_line n 1 1 @ 1 0 08515581 -mason_and_dixon_line n 1 1 @ 1 0 08515581 -mason_bee n 1 2 @ #m 1 0 02211627 -mason_city n 1 2 @ #p 1 0 09087247 -mason_jar n 1 1 @ 1 0 03725600 -mason_wasp n 2 2 @ #m 2 0 02215621 02214341 -masonite n 1 2 @ ; 1 0 03725506 -masonry n 3 5 @ ~ #p %m - 3 1 03725717 08235513 00608896 -masora n 1 1 @ 1 0 06375624 -masorah n 1 2 @ + 1 0 06375624 -masorete n 1 1 @ 1 0 10297655 -masorite n 1 1 @ 1 0 10297655 -masoud n 1 1 @ 1 0 11163342 -masqat n 1 2 @ #p 1 0 08975435 -masque n 1 2 @ ~ 1 0 08253450 -masquer n 1 1 @ 1 0 10297841 -masquerade n 3 4 @ ~ %p + 3 0 08253450 03320519 00756194 -masquerade_ball n 1 1 @ 1 0 07449157 -masquerade_costume n 1 2 @ %p 1 0 03320519 -masquerade_party n 1 2 @ ~ 1 0 08253450 -masquerader n 1 2 @ + 1 0 10297841 -mass n 9 5 @ ~ #p + ; 9 7 05024254 13774404 07962124 01042242 09348055 08180190 05099389 07033753 07033613 -mass-action_principle n 1 2 @ ; 1 0 05992015 -mass-energy_equivalence n 1 2 @ ; 1 0 05885187 -mass_action n 1 2 @ ; 1 0 05992015 -mass_card n 1 2 @ ; 1 0 06628450 -mass_culture n 1 1 @ 1 1 05752179 -mass_defect n 1 1 @ 1 0 11481824 -mass_deficiency n 1 1 @ 1 0 11481824 -mass_energy n 1 2 @ ; 1 0 05026171 -mass_hysteria n 1 1 @ 1 0 14392143 -mass_medium n 1 2 @ ~ 1 0 06261586 -mass_meeting n 1 2 @ ~ 1 0 08358332 -mass_murder n 1 2 @ ~ 1 1 00223983 -mass_murderer n 1 1 @ 1 0 10298343 -mass_noun n 1 1 @ 1 0 06319710 -mass_number n 1 1 @ 1 0 13715614 -mass_production n 1 1 @ 1 0 00914182 -mass_rapid_transit n 1 1 @ 1 1 04054213 -mass_spectrograph n 1 1 @ 1 0 03726371 -mass_spectrometer n 1 2 @ ~ 1 0 03726516 -mass_spectroscopy n 1 2 @ + 1 0 00650743 -mass_spectrum n 1 1 @ 1 0 11500679 -mass_unit n 1 2 @ ~ 1 0 13609214 -massachuset n 2 1 @ 2 1 06910639 09660373 -massachusetts n 4 4 @ #p %p - 4 1 09095023 09660373 09095606 06910639 -massachusetts_bay n 1 3 @ #p %p 1 0 09348236 -massachusetts_bay_colony n 1 1 @ 1 0 09095606 -massachusetts_fern n 1 2 @ #m 1 0 13230190 -massachusetts_institute_of_technology n 1 2 @ #p 1 0 03725968 -massacre n 1 3 @ ~ + 1 0 00223983 -massage n 1 3 @ ~ + 1 1 00659048 -massage_parlor n 2 1 @ 2 0 03726233 03726116 -massager n 1 3 @ ~ + 1 0 10297983 -massasauga n 2 2 @ #m 2 0 01757901 01757677 -massasauga_rattler n 1 2 @ #m 1 0 01757677 -massasoit n 1 1 @ 1 0 11163582 -massawa n 1 2 @ #p 1 0 08777919 -masse n 1 2 @ #p 1 0 00500669 -masse_shot n 1 2 @ #p 1 0 00500669 -massed_fire n 1 1 @ 1 0 00989583 -massenet n 1 1 @ 1 0 11163709 -masses n 1 2 @ ~ 1 1 08180190 -masseter n 1 1 @ 1 0 05294256 -masseur n 1 1 @ 1 1 10298202 -masseuse n 1 1 @ 1 0 10298271 -massicot n 1 1 @ 1 0 14933755 -massicotite n 1 1 @ 1 0 14933755 -massif n 1 3 @ ~ #p 1 0 09348460 -massif_central n 1 2 @ #p 1 0 09348643 -massine n 1 1 @ 1 0 11163859 -massiveness n 2 2 @ + 2 0 05104421 05027837 -massorete n 1 1 @ 1 0 10297655 -mast n 4 4 @ ~ #p %p 4 1 03726760 12280364 07805872 03726993 -mast_cell n 1 2 @ #p 1 0 05607602 -mastaba n 1 1 @ 1 0 03727067 -mastabah n 1 1 @ 1 0 03727067 -mastalgia n 1 1 @ 1 0 14328720 -mastectomy n 1 2 @ ~ 1 0 00685508 -master n 10 3 @ ~ + 10 6 10280130 10388440 10752930 10298647 10164233 03727274 10298912 10298798 10298482 03896984 -master's_degree n 1 2 @ ~ 1 1 06700447 -master-at-arms n 1 1 @ 1 0 10299125 -master_bedroom n 1 1 @ 1 1 03727465 -master_class n 1 1 @ 1 0 08239024 -master_copy n 1 1 @ 1 0 03727274 -master_cylinder n 1 2 @ #p 1 0 02889996 -master_file n 1 2 @ ; 1 0 06509902 -master_in_business n 1 1 @ 1 0 06701359 -master_in_business_administration n 1 1 @ 1 0 06701359 -master_in_public_affairs n 1 1 @ 1 0 06702020 -master_key n 1 2 @ ~ 1 0 03896984 -master_of_architecture n 1 1 @ 1 0 06700844 -master_of_arts n 1 1 @ 1 0 06701001 -master_of_arts_in_library_science n 1 1 @ 1 0 06701128 -master_of_arts_in_teaching n 1 1 @ 1 0 06701251 -master_of_ceremonies n 1 2 @ ~ 1 1 10299250 -master_of_divinity n 1 1 @ 1 0 06701495 -master_of_education n 1 1 @ 1 0 06701596 -master_of_fine_arts n 1 1 @ 1 0 06701698 -master_of_laws n 1 1 @ 1 0 06704990 -master_of_library_science n 1 1 @ 1 0 06701906 -master_of_literature n 1 1 @ 1 0 06701800 -master_of_science n 1 1 @ 1 1 06702139 -master_of_science_in_engineering n 1 1 @ 1 0 06702247 -master_of_theology n 1 1 @ 1 0 06702358 -master_plan n 1 1 @ 1 0 05899442 -master_race n 1 1 @ 1 0 07968550 -master_sergeant n 1 1 @ 1 0 10299583 -mastering n 2 2 @ + 2 0 05757234 00910856 -mastermind n 2 3 @ ~ + 2 0 10383816 10126926 -masterpiece n 2 1 @ 2 2 03727605 00037006 -masters n 1 1 @ 1 0 11164058 -mastership n 2 2 @ + 2 0 05638700 00595146 -masterstroke n 1 1 @ 1 0 00037090 -masterwort n 1 3 @ ~ #m 1 0 12934036 -mastery n 3 3 @ ~ + 3 2 05641959 14442530 01128655 -masthead n 3 2 @ #p 3 0 06493158 06344846 03727738 -mastic n 3 2 @ #m 3 0 14896321 14704851 12762049 -mastic_tree n 1 2 @ #m 1 0 12762049 -mastication n 1 4 @ ~ #p + 1 0 00278810 -masticophis n 1 3 @ #m %m 1 0 01731418 -masticophis_bilineatus n 1 1 @ 1 0 01732093 -masticophis_flagellum n 1 1 @ 1 0 01731764 -masticophis_lateralis n 1 1 @ 1 0 01731941 -mastiff n 1 2 @ ~ 1 0 02108254 -mastiff_bat n 1 2 @ #m 1 0 02150134 -mastigomycota n 1 3 @ #m %m 1 0 12976985 -mastigomycotina n 1 3 @ #m %m 1 0 12976985 -mastigophora n 1 3 @ #m %m 1 0 01416354 -mastigophoran n 1 3 @ ~ #m 1 0 01416585 -mastigophore n 1 3 @ ~ #m 1 0 01416585 -mastigoproctus n 1 3 @ #m %m 1 0 01771624 -mastigoproctus_giganteus n 1 2 @ #m 1 0 01771766 -mastitis n 1 1 @ 1 0 14349717 -mastocyte n 1 2 @ #p 1 0 05607602 -mastodon n 1 3 @ ~ #m 1 0 02505998 -mastodont n 1 3 @ ~ #m 1 0 02505998 -mastoid n 1 4 @ #p %p + 1 0 05542193 -mastoid_bone n 1 3 @ #p %p 1 0 05542193 -mastoid_process n 1 3 @ #p %p 1 0 05542193 -mastoidal n 1 3 @ #p %p 1 0 05542193 -mastoidale n 1 2 @ #p 1 0 05233875 -mastoidectomy n 1 1 @ 1 0 00686168 -mastoiditis n 1 1 @ 1 0 14349807 -mastopathy n 1 1 @ 1 0 14208342 -mastopexy n 1 1 @ 1 0 00682436 -mastotermes n 1 3 @ #m %m 1 0 02224466 -mastotermes_darwiniensis n 1 2 @ #m 1 0 02224713 -mastotermes_electrodominicus n 1 2 @ #m 1 0 02225081 -mastotermes_electromexicus n 1 2 @ #m 1 0 02224937 -mastotermitidae n 1 3 @ #m %m 1 0 02224323 -masturbation n 1 3 @ ~ + 1 0 00855674 -masturbator n 1 3 @ ~ + 1 0 10299700 -mat n 7 3 @ ~ + 7 3 03727837 03728318 03727946 09348827 06701251 04956110 03728131 -mata_hari n 1 1 @ 1 0 11164163 -matabele n 1 1 @ 1 0 06994488 -matador n 1 1 @ 1 0 09836519 -matai n 1 2 @ #m 1 0 11658544 -matakam n 1 1 @ 1 0 06984247 -matamoros n 1 2 @ #p 1 0 08743786 -match n 9 5 @ ~ #m %p + 9 4 03728437 07470671 03728982 03728811 13596673 09900981 09626238 07988857 05696020 -match-up n 1 1 @ 1 0 00389953 -match_game n 1 1 @ 1 0 07471126 -match_plane n 1 1 @ 1 0 03729647 -match_play n 1 1 @ 1 0 00466630 -match_point n 1 2 @ ; 1 0 13610669 -matchboard n 1 1 @ 1 0 03729131 -matchbook n 1 1 @ 1 0 03729308 -matchbox n 1 1 @ 1 0 03729402 -matchbush n 1 3 @ ~ #m 1 0 11974126 -matched_game n 1 1 @ 1 0 07471126 -matcher n 1 2 @ + 1 0 10299875 -matchet n 1 1 @ 1 0 03699591 -matching_funds n 1 1 @ 1 1 13423118 -matchlock n 1 1 @ 1 0 03729482 -matchmaker n 1 1 @ 1 0 10299875 -matchmaking n 1 1 @ 1 0 01240628 -matchstick n 1 2 @ #p 1 0 03729826 -matchup n 1 1 @ 1 0 00389953 -matchweed n 1 3 @ ~ #m 1 0 11974126 -matchwood n 3 1 @ 3 0 14949075 14948983 09348949 -mate n 10 6 @ ~ #m #p + ; 10 5 10300041 10695050 10300303 10640620 03728811 13743100 12757668 10300154 07926785 00167764 -matelote n 1 1 @ 1 0 07591813 -mater n 1 1 @ 1 0 10300500 -mater_turrita n 1 1 @ 1 0 09594093 -materfamilias n 1 1 @ 1 0 10302576 -materia_medica n 1 3 @ ~ - 1 0 06054892 -material n 5 4 @ ~ %s %p 5 4 14580897 06635509 03309808 03729951 10300654 -material_body n 1 3 @ ~ #p 1 0 05217168 -material_breach n 1 1 @ 1 0 00070462 -material_possession n 1 1 @ 1 0 13244753 -material_resource n 1 2 @ ~ 1 0 13353156 -material_witness n 1 1 @ 1 0 10301089 -materialisation n 3 2 @ + 3 0 13512036 07323024 07295047 -materialism n 2 4 @ ~ + ; 2 1 14039310 05972585 -materialist n 2 2 @ + 2 0 10300963 10300829 -materiality n 2 5 ! @ ~ = + 2 0 13794658 04760771 -materialization n 3 2 @ + 3 0 13512036 07323024 07295047 -materials_handling n 1 1 @ 1 0 00713784 -materiel n 1 3 @ ~ ; 1 0 03730153 -maternal-infant_bonding n 1 1 @ 1 0 13782533 -maternal_language n 1 1 @ 1 0 06904748 -maternal_quality n 1 2 @ = 1 0 04872958 -maternalism n 2 3 @ = + 2 0 04872958 00655540 -maternity n 3 6 @ ~ %p = + - 3 0 14046202 13814041 04872958 -maternity_hospital n 1 1 @ 1 0 03730334 -maternity_ward n 1 1 @ 1 0 03730494 -mates n 1 2 @ ~ 1 0 07988857 -math n 1 4 @ ~ ; - 1 1 06000644 -math_teacher n 1 2 @ ~ 1 0 10302446 -mathematical_function n 1 3 @ ~ ; 1 0 13783816 -mathematical_group n 1 2 @ ~ 1 0 06016853 -mathematical_logic n 1 2 @ ~ 1 0 06164665 -mathematical_notation n 1 3 @ ~ #p 1 0 06808720 -mathematical_operation n 1 3 @ ~ ; 1 0 00869583 -mathematical_process n 1 3 @ ~ ; 1 0 00869583 -mathematical_product n 1 2 @ ~ 1 0 05859630 -mathematical_proof n 1 1 @ 1 0 06647864 -mathematical_relation n 1 3 @ ~ ; 1 0 13783581 -mathematical_space n 1 3 @ ~ ; 1 0 08001685 -mathematical_statement n 1 4 @ ~ %p ; 1 0 06732169 -mathematical_statistician n 1 1 @ 1 0 10653238 -mathematical_symbol n 1 1 @ 1 0 06840047 -mathematician n 1 4 @ ~ + ; 1 0 10301261 -mathematics n 1 5 @ ~ + ; - 1 1 06000644 -mathematics_department n 1 1 @ 1 0 08117052 -mathematics_teacher n 1 2 @ ~ 1 0 10302446 -mathew_b._brady n 1 1 @ 1 0 10861535 -mathias n 1 1 @ 1 0 11164332 -maths n 1 4 @ ~ ; - 1 0 06000644 -matilija_poppy n 1 2 @ #m 1 0 11907689 -matinee n 1 1 @ 1 0 06894111 -matinee_idol n 1 2 @ ~ 1 0 10198437 -mating n 1 3 @ ~ + 1 1 00847340 -matins n 1 1 @ 1 0 15229677 -matisse n 1 1 @ 1 0 11164505 -matman n 1 2 @ ~ 1 0 10793168 -matoaka n 1 1 @ 1 0 11240249 -matriarch n 2 1 @ 2 1 10302576 10302700 -matriarchate n 1 1 @ 1 0 07972888 -matriarchy n 1 2 @ + 1 0 07972888 -matric n 1 1 @ 1 0 01248608 -matricaria n 1 3 @ #m %m 1 0 11994827 -matricaria_chamomilla n 1 2 @ #m 1 0 11995092 -matricaria_inodorum n 1 2 @ #m 1 0 12028424 -matricaria_matricarioides n 1 3 @ #m ; 1 0 11995396 -matricaria_oreades n 1 2 @ #m 1 0 12028818 -matricaria_recutita n 1 2 @ #m 1 0 11995092 -matricaria_tchihatchewii n 1 2 @ #m 1 0 12029039 -matricide n 2 1 @ 2 0 10302816 00221819 -matriculate n 1 2 @ + 1 0 10302905 -matriculation n 1 2 @ + 1 0 01248608 -matrikin n 1 1 @ 1 0 10236521 -matrilineage n 1 1 @ 1 0 13814755 -matrilineal_kin n 1 1 @ 1 0 10236521 -matrilineal_sib n 1 1 @ 1 0 10236521 -matrimonial_law n 1 2 @ - 1 0 06162377 -matrimony n 2 4 @ ~ + ; 2 1 13963970 01036903 -matrimony_vine n 1 3 @ ~ #m 1 0 12904938 -matrisib n 1 1 @ 1 0 10236521 -matrix n 6 4 @ ~ #p ; 6 1 08267640 14949227 09349055 05582305 05582191 03730655 -matrix_addition n 1 1 @ 1 0 00872900 -matrix_algebra n 1 3 @ ; - 1 0 06013584 -matrix_inversion n 1 1 @ 1 0 00873084 -matrix_multiplication n 1 1 @ 1 0 00872986 -matrix_operation n 1 2 @ ~ 1 0 00872722 -matrix_printer n 1 2 @ ~ 1 0 03225777 -matrix_transposition n 1 1 @ 1 0 00873238 -matron n 3 2 @ + 3 1 10303037 10303310 10303186 -matron_of_honor n 1 1 @ 1 0 10303385 -matronymic n 1 1 @ 1 0 06336149 -matsyendra n 1 2 @ ; 1 1 05082116 -matt n 1 2 @ + 1 0 04956110 -matte n 2 3 @ ~ + 2 0 14949384 04956110 -matter n 6 3 @ ~ + 6 5 05671325 05814291 00020827 05688397 05169242 06365467 -matter_of_course n 1 1 @ 1 1 07295850 -matter_of_fact n 2 1 @ 2 0 06784317 05818620 -matter_of_law n 1 2 @ ; 1 0 06784470 -matterhorn n 1 2 @ #p 1 0 09349192 -matteuccia n 1 3 @ #m %m 1 0 13197800 -matteuccia_struthiopteris n 1 2 @ #m 1 0 13198054 -matthew n 2 3 @ #p ; 2 0 11164671 06441607 -matthew_arnold n 1 1 @ 1 0 10823760 -matthew_calbraith_perry n 1 1 @ 1 0 11230402 -matthew_flinders n 1 1 @ 1 0 10973339 -matthew_walker n 1 1 @ 1 0 03730788 -matthew_walker_knot n 1 1 @ 1 0 03730788 -matthias_schleiden n 1 1 @ 1 0 11284541 -matthiola n 1 3 @ #m %m 1 0 11892460 -matthiola_incana n 1 2 @ #m 1 0 11892817 -matting n 2 2 @ + 2 1 03730893 03728318 -mattock n 1 1 @ 1 0 03731019 -mattole n 2 1 @ 2 0 09660524 06919911 -mattress n 1 3 @ ~ #p 1 0 03731164 -mattress_cover n 1 1 @ 1 0 03731483 -mattress_pad n 1 1 @ 1 0 03731590 -maturation n 3 6 @ ~ %p + ; - 3 2 13512238 13489037 13479889 -mature-onset_diabetes n 1 1 @ 1 0 14118936 -maturement n 1 2 @ + 1 0 13512238 -matureness n 1 4 @ ~ = + 1 0 14424780 -maturity n 3 6 ! @ ~ %p = + 3 3 15152817 14424780 15153225 -maturity-onset_diabetes n 1 1 @ 1 0 14118936 -maturity-onset_diabetes_mellitus n 1 1 @ 1 0 14118936 -maturity_date n 1 1 @ 1 0 15153225 -matzah n 1 1 @ 1 0 07684164 -matzah_ball n 1 1 @ 1 0 07701912 -matzah_meal n 1 1 @ 1 0 07568389 -matzo n 1 1 @ 1 0 07684164 -matzo_ball n 1 1 @ 1 0 07701912 -matzo_meal n 1 1 @ 1 0 07568389 -matzoh n 1 1 @ 1 0 07684164 -matzoh_ball n 1 1 @ 1 0 07701912 -matzoh_meal n 1 1 @ 1 0 07568389 -maud_gonne n 1 1 @ 1 0 11007059 -maugham n 1 1 @ 1 0 11164970 -maui n 1 2 @ #p 1 0 09080146 -maui_island n 1 2 @ #p 1 0 09080146 -maul n 1 2 @ + 1 0 03731695 -maul_oak n 1 1 @ 1 0 12270946 -mauldin n 1 1 @ 1 0 11165164 -maule's_quince n 1 1 @ 1 0 12624568 -mauler n 1 2 @ + 1 0 10303513 -maulers n 1 1 @ 1 0 05565192 -maulstick n 1 1 @ 1 0 03731882 -mauna_kea n 1 2 @ #p 1 0 09176446 -mauna_loa n 1 2 @ #p 1 0 09176608 -maund n 1 1 @ 1 0 13718267 -maundy n 1 2 @ ; 1 0 07455151 -maundy_money n 1 2 @ ; 1 0 13393427 -maundy_thursday n 1 1 @ 1 0 15193526 -maupassant n 1 1 @ 1 0 11165339 -maureen_catherine_connolly n 1 1 @ 1 0 10907236 -mauriac n 1 1 @ 1 0 11165519 -maurice_barrymore n 1 1 @ 1 0 10835218 -maurice_chevalier n 1 1 @ 1 0 10895549 -maurice_de_vlaminck n 1 1 @ 1 0 11368240 -maurice_hugh_frederick_wilkins n 1 1 @ 1 0 11387362 -maurice_ravel n 1 1 @ 1 0 11255085 -maurice_utrillo n 1 1 @ 1 0 11358225 -maurice_wilkins n 1 1 @ 1 0 11387362 -mauritania n 1 6 @ #m #p %m %p + 1 0 08966820 -mauritanian n 1 3 @ #m + 1 0 09722399 -mauritanian_monetary_unit n 1 2 @ ~ 1 0 13689630 -mauritanie n 1 5 @ #m #p %m %p 1 0 08966820 -mauritian n 1 3 @ #m + 1 0 09722530 -mauritian_monetary_unit n 1 2 @ ~ 1 0 13704529 -mauritian_rupee n 1 2 @ %p 1 0 13704643 -mauritius n 2 5 @ #p %m %p + 2 0 08967484 08967329 -maurois n 1 1 @ 1 0 11165712 -mauser n 2 1 @ 2 0 11165854 03732020 -mausoleum n 1 2 @ ~ 1 1 03732114 -mausoleum_at_halicarnasus n 1 2 @ #m 1 0 03732252 -mauve n 1 2 @ + 1 0 04970544 -maven n 1 2 @ ~ 1 0 09762509 -maverick n 2 2 @ + 2 0 10303654 02404028 -mavik n 1 2 @ ; 1 0 04470037 -mavin n 1 2 @ ~ 1 0 09762509 -mavis n 1 2 @ #m 1 0 01558149 -maw n 1 1 @ 1 0 05302307 -mawkishness n 2 3 @ ~ + 2 0 07482267 04627506 -mawlamyine n 1 1 @ 1 0 08716076 -max n 1 1 @ 1 0 04253751 -max_beerbohm n 1 1 @ 1 0 10841241 -max_born n 1 1 @ 1 0 10858164 -max_bruch n 1 1 @ 1 0 10867933 -max_delbruck n 1 1 @ 1 0 10928810 -max_ernst n 1 1 @ 1 0 10960561 -max_ferdinand_perutz n 1 1 @ 1 0 11230977 -max_karl_ernst_ludwig_planck n 1 1 @ 1 0 11238906 -max_muller n 1 1 @ 1 0 11195452 -max_perutz n 1 1 @ 1 0 11230977 -max_planck n 1 1 @ 1 0 11238906 -max_weber n 2 1 @ 2 0 11378805 11378662 -maxfield_frederick_parrish n 1 1 @ 1 0 11224173 -maxfield_parrish n 1 1 @ 1 0 11224173 -maxi n 1 1 @ 1 0 03732458 -maxilla n 1 2 @ %p 1 0 05284132 -maxillaria n 1 2 @ #m 1 0 12073217 -maxillary n 1 3 @ %p + 1 0 05284132 -maxillary_artery n 1 2 @ ~ 1 0 05350679 -maxillary_sinus n 1 1 @ 1 0 05253443 -maxillary_vein n 1 1 @ 1 0 05373300 -maxim n 2 2 @ ~ 2 1 07152948 11166060 -maxim_gorki n 1 1 @ 1 0 11008870 -maxim_gun n 1 1 @ 1 0 03732543 -maximation n 1 1 @ 1 0 00367066 -maximian n 1 1 @ 1 0 11166251 -maximilian's_sunflower n 1 1 @ 1 0 11979354 -maximilien_paul_emile_littre n 1 1 @ 1 0 11135371 -maximisation n 1 2 @ + 1 0 00367066 -maximization n 2 3 ! @ + 2 0 00870786 00367066 -maximum n 3 3 ! @ + 3 2 13776137 05124928 08598132 -maximum_and_minimum_thermometer n 1 1 @ 1 0 03732658 -maxmilien_de_bethune n 1 1 @ 1 0 11325146 -maxmillien_marie_isidore_de_robespierre n 1 1 @ 1 0 11265183 -maxostoma n 1 3 @ #m %m 1 0 01445998 -maxwell n 2 2 @ #p 2 0 13638375 11166504 -maxwell's_demon n 1 1 @ 1 0 09489146 -maxwell's_equations n 1 1 @ 1 0 06670711 -maxwell-boltzmann_distribution_law n 1 2 @ ; 1 0 05877178 -maxwell_anderson n 1 1 @ 1 0 10817607 -maxzide n 1 2 @ %s 1 0 03732828 -may n 2 4 @ #m #p %p 2 1 15211484 12627750 -may_1 n 1 2 @ #p 1 0 15189033 -may_24 n 1 2 @ #p 1 0 15200164 -may_apple n 2 4 @ #m #p %p 2 0 11700279 11700058 -may_beetle n 2 3 @ ~ #m 2 0 02174659 02172870 -may_blob n 1 2 @ #m 1 0 11728099 -may_bug n 2 3 @ ~ #m 2 0 02174659 02172870 -may_day n 1 2 @ #p 1 1 15189033 -may_fish n 1 2 @ #m 1 0 01447331 -may_lily n 1 2 @ #m 1 0 12471544 -may_queen n 1 1 @ 1 0 10304160 -may_wine n 1 2 @ %s 1 0 07931870 -maya n 2 3 @ ~ #m 2 0 09648309 06919215 -maya_lin n 1 1 @ 1 0 11132245 -mayaca n 1 2 @ #m 1 0 12608620 -mayacaceae n 1 3 @ #m %m 1 0 12608447 -mayakovski n 1 1 @ 1 0 11166732 -mayan n 2 3 @ ~ #m 2 0 09648309 06919215 -mayan_language n 1 2 @ ~ 1 0 06919215 -mayapple n 1 3 @ #m %p 1 0 11700058 -mayas n 1 1 @ 1 0 08484386 -mayday n 1 1 @ 1 0 06803954 -mayeng n 1 2 @ #m 1 0 12200905 -mayenne n 1 2 @ #p 1 0 08943461 -mayer n 2 1 @ 2 0 11167088 11166877 -mayetiola n 1 3 @ #m %m 1 0 02189535 -mayetiola_destructor n 1 2 @ #m 1 0 02189670 -mayfish n 1 2 @ #m 1 0 01447331 -mayflower n 2 1 @ 2 1 03732992 12235051 -mayfly n 1 2 @ #m 1 0 02262449 -mayhaw n 1 2 @ #m 1 0 12627526 -mayhem n 2 1 @ 2 0 00770151 00554107 -mayidism n 1 1 @ 1 0 14200873 -mayo n 1 2 @ ~ 1 0 07834507 -mayonnaise n 1 2 @ ~ 1 0 07834507 -mayor n 1 3 @ ~ + 1 1 10303814 -mayoralty n 1 1 @ 1 0 00595333 -mayoress n 2 1 @ 2 0 10304086 10304018 -maypole n 1 1 @ 1 0 03733131 -maypop n 1 1 @ 1 0 12384227 -mays n 1 1 @ 1 0 11167269 -mayweed n 1 2 @ #m 1 0 11923174 -mazama n 1 3 @ #m %m 1 0 02434598 -mazar-i-sharif n 1 2 @ #p 1 0 08704554 -mazatlan n 1 2 @ #p 1 0 08743945 -mazdaism n 1 3 @ ~ - 1 0 06244149 -maze n 2 3 @ ~ + 2 1 03733281 05685879 -mazer n 1 1 @ 1 0 03733465 -mazopathy n 1 1 @ 1 0 14208342 -mazurka n 2 1 @ 2 0 07056021 00538052 -mazzard n 1 1 @ 1 0 12642600 -mazzard_cherry n 1 1 @ 1 0 12642600 -mazzini n 1 1 @ 1 0 11167418 -mb n 4 4 @ #p %p ; 4 0 13628419 13628246 13628056 06699225 -mba n 1 1 @ 1 0 06701359 -mbabane n 1 2 @ #p 1 0 09031501 -mbd n 1 2 @ %p 1 0 14056280 -mbeya n 1 2 @ #p 1 0 09035632 -mbit n 1 3 @ #p %p 1 0 13628419 -mbundu n 1 1 @ 1 0 08484522 -mc n 1 2 @ %p 1 1 15279957 -mcalester n 1 2 @ #p 1 0 09132367 -mcallen n 1 2 @ #p 1 0 09145437 -mcardle's_disease n 1 1 @ 1 0 14160179 -mcburney's_point n 1 1 @ 1 0 05608419 -mccarthy n 2 1 @ 2 0 11167792 11167595 -mccarthyism n 1 1 @ 1 0 00426388 -mccartney n 1 2 @ #m 1 0 11167952 -mccauley n 1 1 @ 1 0 11168218 -mccormick n 2 1 @ 2 0 11168645 11168513 -mccullers n 1 1 @ 1 0 11168839 -mcg n 1 3 @ #p %p 1 0 13722929 -mcgraw n 1 1 @ 1 0 11168974 -mcguffey n 1 1 @ 1 0 11169135 -mcguffey_eclectic_readers n 1 1 @ 1 0 06415186 -mcguffin n 1 2 @ ; 1 0 05865774 -mcia n 1 3 @ #m #p 1 0 08194546 -mcintosh n 1 2 @ ~ 1 0 07740954 -mckim n 1 1 @ 1 0 11169294 -mckinley n 2 2 @ #p 2 0 11169418 09349425 -mcluhan n 1 1 @ 1 0 11169595 -mcmaster n 1 1 @ 1 0 11169764 -mcpherson n 1 1 @ 1 0 11169943 -md n 4 5 @ ~ #m #p %p 4 0 14645092 10020890 09093608 06703321 -mdi n 1 2 @ ; 1 0 08047501 -mdiv n 1 1 @ 1 0 06701495 -mdma n 1 2 @ ~ 1 0 03756184 -me n 1 3 @ #p %p 1 0 09092497 -mea_culpa n 1 1 @ 1 0 06633596 -mead n 3 3 @ ~ %s 3 0 11170248 11170123 07890750 -mead's_milkweed n 1 1 @ 1 0 13234857 -meade n 2 1 @ 2 0 11170604 11170438 -meadow n 1 1 @ 1 1 08570634 -meadow-beauty_family n 1 3 @ #m %m 1 0 12348774 -meadow_beauty n 1 2 @ #m 1 0 12350032 -meadow_bright n 1 2 @ #m 1 0 11728099 -meadow_buttercup n 1 1 @ 1 0 11720643 -meadow_clary n 1 1 @ 1 0 12866002 -meadow_cranesbill n 1 1 @ 1 0 12686274 -meadow_cress n 1 1 @ 1 0 11882074 -meadow_fern n 1 1 @ 1 0 13228017 -meadow_fescue n 1 2 @ #m 1 0 12121610 -meadow_foxtail n 1 2 @ #m 1 0 12107710 -meadow_goldenrod n 1 1 @ 1 0 12016567 -meadow_grass n 1 3 @ ~ #m 1 0 12131550 -meadow_jumping_mouse n 1 2 @ #m 1 0 02351343 -meadow_leek n 1 1 @ 1 0 12432574 -meadow_lily n 1 1 @ 1 0 12426749 -meadow_mouse n 1 2 @ #m 1 0 02341288 -meadow_mushroom n 1 2 @ #m 1 0 13001529 -meadow_pea n 1 2 @ #m 1 0 12541157 -meadow_pipit n 1 1 @ 1 0 01528845 -meadow_rue n 1 2 @ #m 1 0 11738547 -meadow_saffron n 1 2 @ #m 1 0 12455540 -meadow_salsify n 1 2 @ #m 1 0 12027658 -meadow_saxifrage n 1 2 @ #m 1 0 12793494 -meadow_spikemoss n 1 1 @ 1 0 13224922 -meadow_spittlebug n 1 2 @ #m 1 0 02258198 -meadow_vole n 1 2 @ #m 1 0 02341288 -meadowgrass n 1 3 @ ~ #m 1 0 12131550 -meadowlark n 1 3 @ ~ #m 1 0 01573074 -meagerness n 1 3 @ ~ + 1 0 05113462 -meagreness n 1 3 @ ~ + 1 0 05113462 -meal n 3 4 @ ~ %p + 3 1 07573696 15245990 07567707 -meal_plan n 1 2 @ ~ 1 0 13415547 -meal_ticket n 2 2 @ ; 2 0 13366428 06518420 -mealberry n 1 1 @ 1 0 12231358 -mealie n 1 2 @ ; 1 0 12144313 -mealtime n 1 2 @ ~ 1 0 15165637 -mealworm n 1 2 @ #m 1 0 02181477 -mealy_bug n 1 3 @ ~ #m 1 0 02250822 -mealy_sage n 1 1 @ 1 0 12865239 -mealybug n 1 3 @ ~ #m 1 0 02250822 -mean n 1 4 @ ~ + ; 1 1 06023969 -mean_deviation n 1 2 @ ; 1 0 06023476 -mean_deviation_from_the_mean n 1 2 @ ; 1 0 06023476 -mean_distance n 1 1 @ 1 0 05084982 -mean_solar_day n 1 3 @ ~ %p 1 0 15155220 -mean_solar_time n 1 2 @ ; 1 0 15156537 -mean_sun n 1 1 @ 1 0 05890021 -mean_time n 1 2 @ ; 1 0 15156537 -mean_value n 1 3 @ ~ ; 1 0 06023969 -meander n 2 4 @ ~ #p + 2 0 09349648 00284409 -meanie n 1 1 @ 1 0 10304278 -meaning n 2 3 @ ~ + 2 2 06601327 05919866 -meaningfulness n 1 4 ! @ ~ + 1 1 05170236 -meaninglessness n 2 4 ! @ ~ + 2 0 06607339 05173795 -meanness n 2 3 @ ~ + 2 1 04845684 04833687 -means n 3 2 @ ~ 3 2 00172710 03733547 13353858 -means_grass n 1 1 @ 1 0 12138905 -means_test n 1 1 @ 1 0 00637677 -meantime n 1 2 @ ~ 1 0 15272887 -meanwhile n 1 2 @ ~ 1 0 15272887 -meany n 2 1 @ 2 0 11170764 10304278 -mearstone n 1 1 @ 1 0 07259438 -measles n 1 2 @ ~ 1 0 14123044 -measurability n 1 3 @ ~ + 1 0 05209822 -measure n 9 6 @ ~ %p = + ; 9 6 00174412 00033615 06536853 00996969 07260623 07094093 06864725 03735637 03733644 -measurement n 1 3 @ ~ + 1 1 00996969 -measurer n 1 3 @ ~ + 1 0 10304383 -measuring n 1 3 @ ~ + 1 1 00996969 -measuring_block n 1 1 @ 1 0 13584646 -measuring_cup n 1 1 @ 1 0 03733805 -measuring_device n 1 2 @ ~ 1 0 03733925 -measuring_instrument n 1 2 @ ~ 1 0 03733925 -measuring_rod n 1 2 @ ~ 1 0 03735637 -measuring_stick n 1 2 @ ~ 1 0 03735637 -measuring_system n 1 2 @ ~ 1 0 03733925 -measuring_unit n 1 1 @ 1 0 13584646 -measuring_worm n 1 1 @ 1 0 02288268 -meat n 3 6 @ ~ #p %s + - 3 1 07649854 13137010 05921123 -meat-packing_business n 1 1 @ 1 0 01103964 -meat_and_potatoes n 1 1 @ 1 0 05793907 -meat_cleaver n 1 1 @ 1 0 03041632 -meat_counter n 1 1 @ 1 0 03735963 -meat_grinder n 2 1 @ 2 0 03736064 00965183 -meat_hook n 1 1 @ 1 0 03736147 -meat_hooks n 1 1 @ 1 0 05565192 -meat_house n 2 1 @ 2 2 04246731 03736269 -meat_loaf n 1 2 @ ~ 1 0 07871810 -meat_market n 1 1 @ 1 0 02927161 -meat_packer n 1 2 @ ~ 1 0 10304505 -meat_packing n 1 1 @ 1 0 01103964 -meat_pie n 1 2 @ ~ 1 0 07871940 -meat_safe n 1 2 @ ; 1 0 03736372 -meat_thermometer n 1 1 @ 1 0 03736470 -meatball n 1 2 @ ~ 1 0 07871436 -meatloaf n 1 2 @ ~ 1 0 07871810 -meatman n 1 2 @ ~ 1 0 09884391 -meatpacking n 1 1 @ 1 0 01103964 -meatus n 1 2 @ ~ 1 0 05248553 -mebaral n 1 2 @ ; 1 0 03747508 -mebendazole n 1 1 @ 1 0 03736674 -mebibit n 1 3 @ #p %p 1 0 13628592 -mebibyte n 1 3 @ #p %p 1 0 13628056 -mecca n 2 3 @ #p %p 2 0 08994090 08598568 -meccano n 1 2 @ ; 1 0 03736809 -meccano_set n 1 2 @ ; 1 0 03736809 -mechanic n 2 1 @ 2 2 10279018 09825750 -mechanic's_lien n 1 2 @ ~ 1 0 13402209 -mechanical_advantage n 1 1 @ 1 0 13823150 -mechanical_device n 1 2 @ ~ 1 0 03736970 -mechanical_drawing n 2 2 @ ~ 2 0 03737912 00608037 -mechanical_energy n 1 2 @ ~ 1 0 11482013 -mechanical_engineer n 1 2 @ ~ 1 0 10304650 -mechanical_engineering n 1 2 @ ~ 1 0 06134716 -mechanical_man n 1 1 @ 1 0 02710201 -mechanical_mixture n 1 1 @ 1 0 14588986 -mechanical_phenomenon n 1 2 @ ~ 1 0 11480698 -mechanical_piano n 1 1 @ 1 0 03738066 -mechanical_press n 1 2 @ ~ 1 0 03999992 -mechanical_system n 1 2 @ ~ 1 0 03738241 -mechanics n 2 4 @ ~ + - 2 2 06100236 00098385 -mechanisation n 2 3 @ ~ + 2 0 14578302 00102457 -mechanism n 5 4 @ ~ + ; 5 3 13512506 00098385 09349797 05972781 03738472 -mechanist n 1 2 @ + 1 0 10304783 -mechanization n 2 3 @ ~ + 2 0 14578302 00102457 -mechanized_cavalry n 1 2 @ ; 1 0 08390012 -mecholyl n 1 2 @ ; 1 0 03753826 -meckel's_diverticulum n 1 1 @ 1 0 14295986 -meclizine n 1 1 @ 1 0 03739136 -meclizine_hydrochloride n 1 1 @ 1 0 03739136 -meclofenamate n 1 1 @ 1 0 03739327 -meclofenamate_sodium n 1 1 @ 1 0 03739327 -meclomen n 1 2 @ ; 1 0 03739327 -meconium n 1 1 @ 1 0 14855150 -meconopsis n 1 3 @ #m %m 1 0 11906713 -meconopsis_betonicifolia n 1 2 @ #m 1 0 11906917 -meconopsis_cambrica n 1 2 @ #m 1 0 11907100 -mecoptera n 1 4 @ #m %m + 1 0 02161944 -mecopteran n 1 3 @ ~ #m 1 0 02162235 -med n 1 1 @ 1 0 06701596 -medaille_militaire n 1 1 @ 1 0 06709349 -medal n 1 3 @ ~ + 1 1 06706676 -medal_of_honor n 1 1 @ 1 1 06707178 -medal_play n 1 1 @ 1 0 00466524 -medal_winner n 1 2 @ ; 1 0 10304914 -medalist n 2 3 @ + ; 2 0 10305062 10304914 -medallion n 4 2 @ ~ 4 0 13393059 07649202 06883460 06706676 -medallist n 2 3 @ + ; 2 0 10305062 10304914 -medan n 1 2 @ #p 1 0 08910106 -medawar n 1 1 @ 1 0 11170913 -meddler n 1 3 @ ~ + 1 0 10305192 -meddlesomeness n 1 3 @ = + 1 0 04837931 -meddling n 1 2 @ + 1 1 00201516 -medea n 1 2 @ ; 1 0 09592563 -medellin n 1 2 @ #p 1 0 08733291 -medellin_cartel n 1 2 @ ; 1 0 08237202 -medevac n 1 1 @ 1 0 00055038 -medfly n 1 2 @ #m 1 0 02197185 -medford n 2 2 @ #p 2 0 09133775 09097461 -medgar_evers n 1 1 @ 1 0 10963642 -medgar_wiley_evers n 1 1 @ 1 0 10963642 -media_consultant n 1 1 @ 1 0 10305391 -media_guru n 1 1 @ 1 0 10305391 -mediacy n 1 2 ! @ 1 0 04919580 -medial_condyle n 1 2 @ #p 1 0 05472538 -medial_geniculate n 1 1 @ 1 0 05487941 -medial_geniculate_body n 1 1 @ 1 0 05487941 -medial_rectus n 1 1 @ 1 0 05316850 -medial_rectus_muscle n 1 1 @ 1 0 05316850 -median n 1 3 @ + ; 1 0 06023821 -median_value n 1 2 @ ; 1 0 06023821 -mediant n 1 2 @ ; 1 0 06857986 -mediastinum n 1 2 @ #p 1 0 05324691 -mediateness n 1 2 @ + 1 0 04919580 -mediation n 2 3 @ ~ + 2 0 07150644 01240432 -mediator n 1 3 @ ~ + 1 0 09624559 -mediatrix n 1 1 @ 1 0 09624899 -medic n 2 3 @ ~ #m 2 0 12548280 10305635 -medicago n 1 2 @ %m 1 0 12548134 -medicago_arborea n 1 1 @ 1 0 12548564 -medicago_echinus n 1 1 @ 1 0 12549005 -medicago_falcata n 1 1 @ 1 0 12548804 -medicago_intertexta n 1 1 @ 1 0 12549005 -medicago_lupulina n 1 1 @ 1 0 12549192 -medicago_sativa n 1 2 @ %p 1 0 12549420 -medicaid n 1 1 @ 1 0 01089179 -medicaid_funds n 1 1 @ 1 0 13356887 -medical n 1 3 @ %p + 1 0 00142361 -medical_aid n 1 3 @ ~ %p 1 1 00657604 -medical_assistant n 1 1 @ 1 0 10305523 -medical_bill n 1 1 @ 1 0 06517547 -medical_building n 1 2 @ ~ 1 0 03739518 -medical_care n 1 3 @ ~ %p 1 1 00657604 -medical_center n 1 2 @ #p 1 0 08571139 -medical_checkup n 1 2 @ %p 1 0 00142361 -medical_community n 1 1 @ 1 0 08112829 -medical_diagnosis n 1 4 @ ~ #p %p 1 0 00153105 -medical_dressing n 1 2 @ ~ 1 0 03237639 -medical_evacuation n 1 1 @ 1 0 00055038 -medical_exam n 1 2 @ %p 1 0 00142361 -medical_examination n 1 2 @ %p 1 0 00142361 -medical_examiner n 1 1 @ 1 0 09965985 -medical_expense n 1 1 @ 1 0 13276778 -medical_extern n 1 1 @ 1 0 10074578 -medical_history n 1 2 @ %p 1 0 06515297 -medical_institution n 1 2 @ ~ 1 0 08053905 -medical_instrument n 1 2 @ ~ 1 0 03739693 -medical_intern n 1 2 @ ; 1 1 10211203 -medical_literature_analysis_and_retrieval_system n 1 1 @ 1 0 06638254 -medical_man n 1 2 @ ~ 1 1 10305802 -medical_officer n 1 3 @ ~ #m 1 0 10305635 -medical_practice n 1 2 @ ~ 1 1 00632201 -medical_practitioner n 1 2 @ ~ 1 0 10305802 -medical_procedure n 1 2 @ ~ 1 0 01024392 -medical_profession n 1 1 @ 1 0 08112829 -medical_prognosis n 1 1 @ 1 0 00153665 -medical_record n 1 2 @ %p 1 0 06515297 -medical_relation n 1 2 @ ~ 1 0 13837667 -medical_report n 1 1 @ 1 1 07220178 -medical_school n 1 1 @ 1 1 08283507 -medical_science n 1 2 @ ~ 1 0 06045562 -medical_scientist n 1 2 @ ~ 1 0 10306004 -medical_social_worker n 1 1 @ 1 0 09785236 -medical_specialist n 1 2 @ ~ 1 0 10632576 -medical_specialty n 1 3 @ ~ - 1 0 06043075 -medical_student n 1 1 @ 1 0 10306181 -medicament n 1 5 @ ~ %s ; - 1 0 03740161 -medicare n 1 1 @ 1 0 01089009 -medicare_check n 1 1 @ 1 0 13384018 -medicare_payment n 1 1 @ 1 0 13384018 -medication n 2 6 @ ~ %s + ; - 2 1 03740161 00664110 -medici n 1 1 @ 1 0 08485281 -medicinal_drug n 1 5 @ ~ %s ; - 1 0 03740161 -medicinal_leech n 1 2 @ #m 1 0 01938454 -medicine n 4 6 @ ~ %s + ; - 4 3 06043075 03740161 00612160 01162529 -medicine_ball n 1 1 @ 1 0 03742019 -medicine_cabinet n 1 1 @ 1 0 03742115 -medicine_chest n 1 1 @ 1 0 03742115 -medicine_man n 1 2 @ ~ 1 0 10626439 -medick n 1 3 @ ~ #m 1 0 12548280 -medico n 2 3 @ ~ #m 2 0 10306181 10020890 -mediety n 1 1 @ 1 0 13737089 -medieval_greek n 1 1 @ 1 0 06977190 -medieval_latin n 1 1 @ 1 0 06963704 -medieval_mode n 1 1 @ 1 0 06860481 -medieval_schoolman n 1 1 @ 1 0 10559683 -medina n 2 2 @ #p 2 0 08994339 08628308 -medinilla n 1 3 @ #m %m 1 0 12349491 -medinilla_magnifica n 1 2 @ #m 1 0 12349711 -mediocrity n 2 2 @ + 2 1 04795061 10569179 -meditation n 2 3 @ + ; 2 1 05785885 05786184 -meditativeness n 1 2 @ + 1 0 04660805 -mediterranean n 1 4 @ ~ %p + 1 1 09350045 -mediterranean_anaemia n 1 2 @ ~ 1 0 14195715 -mediterranean_anchovy n 1 2 @ #m 1 0 02534165 -mediterranean_anemia n 1 2 @ ~ 1 0 14195715 -mediterranean_cypress n 1 1 @ 1 0 11632619 -mediterranean_fever n 1 1 @ 1 0 14128029 -mediterranean_flour_moth n 1 2 @ #m 1 0 02289988 -mediterranean_fruit_fly n 1 2 @ #m 1 0 02197185 -mediterranean_hackberry n 1 2 @ #m 1 0 12409470 -mediterranean_sea n 1 3 @ ~ %p 1 0 09350045 -mediterranean_snapdragon n 1 1 @ 1 0 12877838 -mediterranean_water_shrew n 1 2 @ #m 1 0 01893164 -medium n 11 5 @ ~ + ; - 11 4 06254669 08568142 06254475 14899328 14899888 14899530 14899152 13920169 10306279 06261586 00610222 -medium_frequency n 1 2 @ #p 1 0 05057485 -medium_of_exchange n 1 2 @ ~ 1 0 13372961 -medium_steel n 1 1 @ 1 0 14949522 -medium_wave n 1 2 @ ; 1 0 11507321 -medivac n 1 1 @ 1 0 00055038 -medlar n 4 4 @ #m #p %p 4 0 12670758 12636224 07767002 07766891 -medlar_tree n 1 3 @ #m %p 1 0 12636224 -medlars n 1 1 @ 1 0 06638254 -medley n 1 1 @ 1 1 07047505 -medline n 1 1 @ 1 0 03742238 -medoc n 1 2 @ #s 1 0 07894298 -medroxyprogesterone n 1 1 @ 1 0 14747168 -medulla n 3 7 ! @ ~ #s #p %p + 3 0 14957893 05495172 05490799 -medulla_oblongata n 1 3 @ #p %p 1 0 05495172 -medulla_spinalis n 1 3 @ #p %p 1 0 05503705 -medullary_ray n 1 1 @ 1 0 13098515 -medullary_sheath n 1 4 @ #p %s %p 1 0 05464685 -medullated_nerve_fiber n 1 2 @ %p 1 0 05464378 -medusa n 2 3 @ #m ; 2 0 09497913 01910252 -medusa's_head n 2 2 @ #m 2 0 12918991 12119822 -medusan n 1 2 @ #m 1 0 01910252 -medusoid n 1 2 @ #m 1 0 01910252 -meed n 1 2 @ ; 1 0 13284356 -meekness n 2 3 @ ~ + 2 0 07509325 04889779 -meerestone n 1 1 @ 1 0 07259438 -meerkat n 1 3 @ ~ #m 1 0 02138441 -meerschaum n 2 3 @ #s %s 2 0 14681445 03742416 -meet n 1 4 @ ~ %p + 1 1 07467846 -meeter n 1 3 @ ~ + 1 0 09608002 -meeting n 6 4 @ ~ + ; 6 5 08307589 08310389 07414922 01230965 00146856 08542634 -meeting_house n 1 2 @ #m 1 0 11727358 -meeting_of_minds n 1 1 @ 1 0 13971802 -meeting_place n 1 1 @ 1 0 03386420 -meetinghouse n 1 1 @ 1 0 03099622 -mefenamic_acid n 1 1 @ 1 0 03742531 -mefloquine n 1 1 @ 1 0 03742728 -mefloquine_hydrochloride n 1 1 @ 1 0 03742728 -mefoxin n 1 3 @ ~ ; 1 0 02996840 -meg n 1 1 @ 1 0 13751533 -megabat n 1 3 @ ~ #m 1 0 02139671 -megabit n 1 3 @ #p %p 1 0 13628419 -megabucks n 1 2 @ ; 1 0 13250680 -megabyte n 2 3 @ #p %p 2 0 13628246 13628056 -megacardia n 1 1 @ 1 0 14334631 -megacephaly n 1 1 @ 1 0 14508974 -megachile n 1 3 @ #m %m 1 0 02211283 -megachilidae n 1 3 @ #m %m 1 0 02211099 -megachiroptera n 1 3 @ #m %m 1 0 02139479 -megacolon n 1 1 @ 1 0 05536178 -megacycle n 1 2 @ %p 1 0 15279957 -megacycle_per_second n 1 2 @ %p 1 0 15279957 -megadeath n 1 1 @ 1 0 07333506 -megaderma n 1 3 @ #m %m 1 0 02144792 -megaderma_lyra n 1 2 @ #m 1 0 02144936 -megadermatidae n 1 3 @ #m %m 1 0 02144442 -megaera n 1 1 @ 1 0 09506674 -megaflop n 1 3 @ #p ; 1 0 13607187 -megagametophyte n 1 1 @ 1 0 11687266 -megahertz n 1 2 @ %p 1 0 15279957 -megahit n 1 2 @ ; 1 0 00064151 -megakaryocyte n 1 2 @ + 1 0 05448928 -megalith n 1 4 @ ~ + ; 1 0 03743016 -megalithic_structure n 1 3 @ ~ ; 1 0 03743016 -megalobatrachus n 1 3 @ #m %m 1 0 01633578 -megalobatrachus_maximus n 1 2 @ #m 1 0 01633781 -megaloblast n 1 2 @ + 1 0 05449797 -megaloblastic_anaemia n 1 1 @ 1 0 14167773 -megaloblastic_anemia n 1 1 @ 1 0 14167773 -megalocardia n 1 1 @ 1 0 14334631 -megalocephaly n 1 1 @ 1 0 14508974 -megalocyte n 1 1 @ 1 0 05449661 -megalohepatia n 1 1 @ 1 0 14103180 -megalomania n 1 3 @ %p + 1 1 14392318 -megalomaniac n 1 2 @ + 1 0 10306496 -megalonychidae n 1 3 @ #m %m 1 0 02457586 -megalopolis n 1 1 @ 1 1 08537708 -megaloptera n 1 3 @ #m %m 1 0 02265471 -megalosaur n 1 2 @ #m 1 0 01715518 -megalosauridae n 1 3 @ #m %m 1 0 01715249 -megalosaurus n 1 2 @ #m 1 0 01715518 -megaphone n 1 1 @ 1 0 03743279 -megapode n 1 3 @ ~ #m 1 0 01801088 -megapodiidae n 1 3 @ #m %m 1 0 01800759 -megapodius n 1 2 @ #m 1 0 01800963 -megaptera n 1 3 @ #m %m 1 0 02065599 -megaptera_novaeangliae n 1 2 @ #m 1 0 02065726 -megasporangium n 1 1 @ 1 0 11687432 -megaspore n 1 1 @ 1 0 11688199 -megasporophyll n 1 1 @ 1 0 11687553 -megathere n 1 2 @ #m 1 0 02458822 -megatherian n 1 3 @ ~ #m 1 0 02458517 -megatherian_mammal n 1 3 @ ~ #m 1 0 02458517 -megatheriid n 1 3 @ ~ #m 1 0 02458517 -megatheriidae n 1 3 @ #m %m 1 0 02458356 -megatherium n 1 3 @ #m %m 1 0 02458675 -megaton n 2 2 @ %p 2 1 13647353 13721804 -megaton_bomb n 1 1 @ 1 1 03743422 -megavitamin_therapy n 1 1 @ 1 0 00664388 -megawatt n 1 2 @ %p 1 0 13644894 -megestrol n 1 1 @ 1 0 14746270 -megestrol_acetate n 1 1 @ 1 0 14746270 -megillah n 2 2 @ ; 2 0 07218299 06408239 -megilp n 1 1 @ 1 0 14949608 -megohm n 1 2 @ %p 1 0 13647097 -megrim n 1 1 @ 1 0 14327707 -megrims n 1 1 @ 1 0 14404460 -mehemet_ali n 1 1 @ 1 0 11184273 -mei n 1 1 @ 1 0 12640839 -meibomian_cyst n 1 1 @ 1 0 14202520 -meibomian_gland n 1 1 @ 1 0 05328508 -meiji_tenno n 1 1 @ 1 0 11171157 -meiosis n 2 5 @ ~ %p + ; 2 0 13512725 07104292 -meir n 1 1 @ 1 0 11171298 -meissner n 2 1 @ 2 0 11171513 11171409 -meister_eckhart n 1 1 @ 1 0 10948312 -meitner n 1 1 @ 1 0 11171614 -meitnerium n 1 1 @ 1 0 14644963 -mek n 1 2 @ ; 1 0 08034778 -mekong n 1 2 @ #p 1 1 09350524 -mekong_river n 1 2 @ #p 1 1 09350524 -mel_columcille_gerard_gibson n 1 2 @ ; 1 0 10998305 -mel_gibson n 1 2 @ ; 1 0 10998305 -melaena n 1 1 @ 1 0 14855280 -melagra n 1 1 @ 1 0 14328794 -melagueta_pepper n 1 2 @ #m 1 0 12357968 -melamine n 1 1 @ 1 0 14949746 -melamine_resin n 1 1 @ 1 0 14949886 -melampodium n 1 3 @ #m %m 1 0 11995683 -melampodium_leucanthum n 1 2 @ #m 1 0 11995840 -melampsora n 1 3 @ #m %m 1 0 13063936 -melampsora_lini n 1 2 @ #m 1 0 13064111 -melampsoraceae n 1 3 @ #m %m 1 0 13063784 -melancholia n 1 2 @ + 1 0 14392491 -melancholiac n 1 1 @ 1 0 10306595 -melancholic n 1 2 @ + 1 0 10306595 -melancholy n 3 2 @ ~ 3 1 07533097 14404722 05406782 -melancholy_thistle n 1 1 @ 1 0 11954798 -melanchthon n 1 1 @ 1 0 11171851 -melanerpes n 1 3 @ #m %m 1 0 01840643 -melanerpes_erythrocephalus n 1 2 @ #m 1 0 01840775 -melanesia n 1 4 @ #p %p - 1 0 08836630 -melange n 1 1 @ 1 0 08399977 -melanie_klein n 1 1 @ 1 0 11107110 -melanin n 1 3 @ #s + 1 0 14757172 -melanism n 1 1 @ 1 0 14230083 -melanitta n 1 3 @ #m %m 1 0 01853379 -melanitta_nigra n 1 1 @ 1 0 01853666 -melanoblast n 1 1 @ 1 0 05241374 -melanocyte n 1 1 @ 1 0 05241485 -melanocyte-stimulating_hormone n 1 1 @ 1 0 15073784 -melanoderma n 1 1 @ 1 0 04976567 -melanogrammus n 1 3 @ #m %m 1 0 02523750 -melanogrammus_aeglefinus n 1 3 @ #m %p 1 0 02523877 -melanoma n 1 1 @ 1 0 14252564 -melanoplus n 1 3 @ #m %m 1 0 02227430 -melanosis n 1 1 @ 1 0 14230083 -melanotis n 1 3 @ #m %m 1 0 01587148 -melanotis_caerulescens n 1 2 @ #m 1 0 01587278 -melanthiaceae n 1 2 @ #m 1 0 12463322 -melasma n 1 1 @ 1 0 14302652 -melastoma n 1 2 @ #m 1 0 12349091 -melastoma_malabathricum n 1 1 @ 1 0 12349315 -melastomaceae n 1 3 @ #m %m 1 0 12348774 -melastomataceae n 1 3 @ #m %m 1 0 12348774 -melatonin n 1 1 @ 1 0 05411338 -melba n 1 1 @ 1 0 11172045 -melba_toast n 1 1 @ 1 0 07689757 -melbourne n 2 2 @ #p 2 0 09073584 08833809 -melchior n 2 3 @ #m ; 2 0 11172411 11172181 -melchite n 2 1 @ 2 0 10306890 10306716 -meld n 1 3 @ ~ + 1 0 00497060 -meleagrididae n 1 3 @ #m %m 1 0 01793818 -meleagris n 1 3 @ #m %m 1 0 01793988 -meleagris_gallopavo n 1 3 @ ~ #m 1 0 01794158 -melee n 1 1 @ 1 1 00554200 -melena n 1 1 @ 1 0 14855280 -meles n 1 3 @ #m %m 1 0 02447896 -meles_meles n 1 2 @ #m 1 0 02448060 -melia n 1 3 @ #m %m 1 0 12695760 -melia_azadirachta n 1 3 @ #m %p 1 0 12696492 -melia_azedarach n 1 2 @ #m 1 0 12695975 -melia_azederach n 1 2 @ #m 1 0 12695975 -meliaceae n 1 3 @ #m %m 1 0 12694707 -melicocca n 1 3 @ #m %m 1 0 12744656 -melicocca_bijuga n 1 3 @ #m %p 1 0 12744850 -melicocca_bijugatus n 1 3 @ #m %p 1 0 12744850 -melicoccus n 1 3 @ #m %m 1 0 12744656 -melicytus n 1 2 @ #m 1 0 12391280 -melilot n 1 3 @ ~ #m 1 0 11750989 -melilotus n 1 3 @ ~ #m 1 0 11750989 -melilotus_alba n 1 1 @ 1 0 11751213 -melilotus_officinalis n 1 1 @ 1 0 11751347 -melina_mercouri n 1 1 @ 1 0 11175748 -melinae n 1 2 @ #m 1 0 02447220 -melioration n 3 3 @ ~ + 3 1 00261029 14422179 13470193 -meliorism n 1 2 @ + 1 0 05945508 -meliorist n 1 3 @ ~ + 1 0 10515194 -meliphagidae n 1 3 @ #m %m 1 0 01526635 -melissa n 1 3 @ #m %m 1 0 12854443 -melissa_officinalis n 1 3 @ #m %p 1 0 12854600 -melkite n 2 1 @ 2 0 10306890 10306716 -mellaril n 1 2 @ ; 1 0 04425262 -mellivora n 1 3 @ #m %m 1 0 02448200 -mellivora_capensis n 1 2 @ #m 1 0 02448318 -mellon n 1 1 @ 1 0 11172609 -mellowing n 1 2 @ + 1 0 13513222 -mellowness n 5 2 @ + 5 0 07554224 05718118 04989015 04958302 04656448 -melocactus n 1 2 @ #m 1 0 11850136 -melodic_line n 1 3 @ ~ %p 1 0 07028373 -melodic_phrase n 1 3 @ ~ %p 1 0 07028373 -melodic_theme n 1 3 @ ~ ; 1 0 07029247 -melodiousness n 1 2 @ + 1 0 04983848 -melodrama n 1 2 @ + 1 1 07016648 -melody n 2 4 @ ~ %p + 2 2 07028373 05711915 -melody_pipe n 1 2 @ #p 1 0 03006626 -melogale n 1 3 @ #m %m 1 0 02448502 -meloid n 1 3 @ ~ #m 1 0 02179012 -meloidae n 1 3 @ #m %m 1 0 02178886 -melolontha n 1 3 @ #m %m 1 0 02174521 -melolontha_melolontha n 1 2 @ #m 1 0 02174659 -melolonthid_beetle n 1 2 @ ~ 1 0 02174355 -melolonthidae n 1 3 @ #m %m 1 0 02174153 -melon n 2 4 @ ~ #p %p 2 1 07755411 12163824 -melon_ball n 1 1 @ 1 0 07755619 -melon_tree n 1 3 @ #m %p 1 0 12373100 -melon_vine n 1 3 @ ~ %p 1 0 12163824 -melophagus n 1 3 @ #m %m 1 0 02198996 -melophagus_ovinus n 1 2 @ #m 1 0 02199170 -melopsittacus n 1 3 @ #m %m 1 0 01821727 -melopsittacus_undulatus n 1 2 @ #m 1 0 01821869 -melosa n 1 2 @ %s 1 0 11994527 -melospiza n 1 3 @ #m %m 1 0 01536474 -melospiza_georgiana n 1 2 @ #m 1 0 01536780 -melospiza_melodia n 1 2 @ #m 1 0 01536644 -melphalan n 1 1 @ 1 0 03743577 -melpomene n 1 2 @ ; 1 0 09566791 -melt n 1 2 @ + 1 0 13566535 -meltdown n 2 1 @ 2 0 13513362 07316403 -melter n 1 2 @ + 1 0 10307114 -melting n 1 2 @ + 1 1 13566535 -melting_point n 1 1 @ 1 0 05013967 -melting_pot n 2 1 @ 2 1 08598696 03140126 -meltwater n 1 1 @ 1 0 14950055 -melursus n 1 3 @ #m %m 1 0 02134240 -melursus_ursinus n 1 2 @ #m 1 0 02134418 -melvil_dewey n 1 1 @ 1 0 10933266 -melville n 1 1 @ 1 0 11172795 -melville_bell n 1 1 @ 1 0 10842575 -melville_louis_kossuth_dewey n 1 1 @ 1 0 10933266 -melville_w._fuller n 1 1 @ 1 0 10985653 -melville_weston_fuller n 1 1 @ 1 0 10985653 -melvin_calvin n 1 1 @ 1 0 10880669 -mem n 1 2 @ #m 1 0 06838005 -member n 5 6 ! @ ~ #p %p + 5 3 10307234 13810615 05559908 08170686 05526384 -member_bank n 1 2 @ #m 1 0 08419033 -member_of_parliament n 1 2 @ #m 1 0 10400437 -membership n 2 3 @ #m + 2 2 08400965 13931627 -membership_card n 1 2 @ ~ 1 0 06477970 -membracidae n 1 3 @ #m %m 1 0 02259565 -membrane n 2 4 @ ~ %s + 2 1 03743761 05426243 -membrane_bone n 1 2 @ ~ 1 0 05276860 -membranophone n 1 3 @ ~ %p 1 0 03249569 -membranous_labyrinth n 1 3 @ #p %p 1 0 05321664 -meme n 1 2 @ ; 1 0 05985126 -memel n 1 3 @ #m #p 1 0 09014066 -memento n 1 1 @ 1 0 05813822 -memento_mori n 1 1 @ 1 0 05813912 -memo n 1 2 @ ~ 1 0 06506191 -memoir n 2 1 @ 2 1 06516495 06410187 -memorabilia n 1 1 @ 1 1 06505705 -memorability n 1 1 @ 1 0 05215921 -memoranda n 1 2 @ ~ 1 0 06506191 -memorandum n 1 2 @ ~ 1 1 06506191 -memorial n 3 3 @ ~ + 3 1 06688522 06513624 03743902 -memorial_day n 1 2 @ #p 1 0 15189452 -memorial_park n 1 2 @ ~ 1 0 08521623 -memorial_tablet n 1 1 @ 1 0 02892201 -memorialisation n 1 2 @ + 1 0 07452841 -memorialization n 1 2 @ + 1 0 07452841 -memorisation n 1 3 @ ~ + 1 0 05755156 -memoriser n 1 3 @ ~ + 1 0 10308504 -memorization n 1 3 @ ~ + 1 1 05755156 -memorizer n 1 3 @ ~ + 1 0 10308504 -memory n 5 5 @ ~ #p %p + 5 4 05935060 05760202 05651399 03744276 06140268 -memory_access n 1 3 @ ~ ; 1 0 02671224 -memory_board n 1 4 @ ~ #p %p 1 0 03744276 -memory_cache n 1 3 @ ~ ; 1 0 02935017 -memory_chip n 1 2 @ ~ 1 0 03744684 -memory_device n 1 2 @ ~ 1 0 03744840 -memory_image n 1 2 @ ~ 1 1 05935871 -memory_loss n 1 2 @ ~ 1 0 05672391 -memory_picture n 1 1 @ 1 1 05936016 -memory_trace n 1 1 @ 1 0 05935381 -memphis n 2 2 @ #p 2 1 09141119 08899351 -memsahib n 1 1 @ 1 0 09687940 -men n 1 4 @ ~ %m %p 1 1 08212347 -men's n 1 1 @ 1 0 03746486 -men's_furnishings n 1 1 @ 1 0 03473704 -men's_room n 1 1 @ 1 0 03746486 -menace n 2 3 @ ~ + 2 2 14543231 06733782 -menachem_begin n 1 1 @ 1 0 10841657 -menadione n 1 1 @ 1 0 15093049 -menage n 1 2 @ ~ 1 0 08078020 -menage_a_trois n 1 1 @ 1 0 08078453 -menagerie n 2 1 @ 2 0 08456888 03745146 -menai_strait n 1 2 @ #p 1 0 09350776 -menander n 1 1 @ 1 0 11172929 -menarche n 1 1 @ 1 1 07325762 -mencken n 1 1 @ 1 0 11173031 -mend n 2 3 @ ~ + 2 0 03745285 00266806 -mendacity n 1 3 ! @ + 1 0 04876235 -mendel n 1 2 @ + 1 0 11173199 -mendel's_law n 1 3 @ ~ ; 1 0 05884433 -mendeleev n 1 1 @ 1 0 11173475 -mendeleev's_law n 1 2 @ ; 1 0 05887156 -mendelevium n 1 1 @ 1 0 14645092 -mendeleyev n 1 1 @ 1 0 11173475 -mendelian n 1 1 @ 1 0 10308653 -mendelianism n 1 1 @ 1 0 06109972 -mendelism n 1 1 @ 1 0 06109972 -mendelsohn n 1 1 @ 1 0 11173778 -mendelssohn n 1 1 @ 1 0 11173917 -mendenhall_glacier n 1 2 @ #p 1 0 09350922 -mender n 1 3 @ ~ + 1 0 10308732 -mendicancy n 2 2 @ + 2 0 14494032 07187996 -mendicant n 2 3 @ ~ + 2 0 10111903 09847010 -mendicity n 1 1 @ 1 0 14494032 -mending n 2 3 @ ~ + 2 0 03745487 00266806 -menelaus n 1 2 @ ; 1 0 09595059 -menhaden n 1 3 @ #m %s 1 0 02531625 -menhaden_oil n 1 2 @ #s 1 0 14950129 -menhir n 1 1 @ 1 0 03745571 -menial n 1 1 @ 1 0 10308938 -meniere n 1 1 @ 1 0 11174119 -meniere's_disease n 1 1 @ 1 0 14078421 -meningeal_artery n 1 2 @ ~ 1 0 05351058 -meningeal_veins n 1 1 @ 1 0 05373495 -meninges n 1 4 @ ~ %p + 1 0 05326900 -meningioma n 1 1 @ 1 0 14239743 -meningism n 1 1 @ 1 0 14359816 -meningitis n 1 2 @ ~ 1 0 14137829 -meningocele n 1 1 @ 1 0 14467172 -meningoencephalitis n 1 1 @ 1 0 14343411 -meninx n 1 3 @ ~ %p 1 0 05326900 -menippe n 1 3 @ #m %m 1 0 01977366 -menippe_mercenaria n 1 3 @ #m %p 1 0 01977485 -meniscectomy n 1 1 @ 1 0 00686282 -meniscium n 1 2 @ #m 1 0 13229227 -meniscus n 3 2 @ ; 3 0 05288396 03745864 03745712 -menispermaceae n 1 3 @ #m %m 1 0 11712827 -menispermum n 1 3 @ #m %m 1 0 11713034 -menispermum_canadense n 1 2 @ #m 1 0 11713370 -menninger n 3 1 @ 3 0 11174730 11174563 11174354 -mennonite n 1 2 @ ~ 1 0 09677561 -mennonite_church n 1 1 @ 1 0 08093269 -mennonitism n 1 1 @ 1 0 06230809 -meno_mosso n 1 1 @ 1 0 15265331 -menominee n 2 1 @ 2 0 09660645 06910755 -menominee_whitefish n 1 2 @ #m 1 0 02539894 -menomini n 2 1 @ 2 0 09660645 06910755 -menopause n 1 3 @ #p + 1 0 15154462 -menopon n 1 3 @ #m %m 1 0 02185694 -menopon_gallinae n 1 2 @ #m 1 0 02185814 -menopon_palladum n 1 2 @ #m 1 0 02185814 -menorah n 2 2 @ ; 2 0 03746155 03746005 -menorrhagia n 1 1 @ 1 0 13513540 -menorrhea n 1 2 @ #p 1 0 05402576 -menotti n 1 1 @ 1 0 11174901 -menotyphla n 1 2 @ #m 1 0 01888948 -mens_rea n 1 3 @ ~ ; 1 0 05795957 -mens_store n 1 2 @ ~ 1 0 03052464 -mensa n 1 1 @ 1 0 09351086 -mensal_line n 1 1 @ 1 0 13906936 -mensch n 1 2 @ ; 1 0 10309009 -menses n 1 2 @ ~ 1 0 13513747 -mensh n 1 2 @ ; 1 0 10309009 -menshevik n 1 1 @ 1 0 10309147 -menstrual_blood n 1 2 @ #p 1 0 05402576 -menstrual_cycle n 1 2 @ %p 1 0 15288111 -menstrual_flow n 1 2 @ #p 1 0 05402576 -menstrual_phase n 1 2 @ #p 1 0 15288707 -menstruation n 1 3 @ ~ + 1 0 13513747 -menstruum n 2 3 @ ~ ; 2 0 14950300 13513747 -mensuration n 1 3 @ ~ + 1 0 00996969 -mental_ability n 1 2 @ ~ 1 0 05622956 -mental_abnormality n 1 2 @ ~ 1 0 14200301 -mental_age n 1 1 @ 1 0 04925218 -mental_anguish n 1 1 @ 1 0 07495236 -mental_attitude n 1 2 @ ~ 1 0 06193203 -mental_balance n 1 1 @ 1 0 14379360 -mental_block n 1 2 @ ~ 1 0 05645199 -mental_capacity n 1 1 @ 1 0 05618056 -mental_case n 1 2 @ ~ 1 1 10354898 -mental_condition n 1 3 @ ~ ; 1 0 14373582 -mental_confusion n 1 2 @ ~ 1 0 05683582 -mental_defectiveness n 1 2 @ ~ 1 0 05646535 -mental_deficiency n 1 1 @ 1 0 05646828 -mental_dexterity n 1 1 @ 1 0 05619553 -mental_disease n 1 2 @ ~ 1 0 14380140 -mental_disorder n 1 3 @ ~ ; 1 0 14083790 -mental_disturbance n 1 3 @ ~ ; 1 1 14083790 -mental_energy n 1 2 @ ~ 1 0 09184834 -mental_exhaustion n 1 1 @ 1 0 14018203 -mental_faculty n 1 2 @ ~ 1 0 05650329 -mental_health n 1 3 ! @ ~ 1 1 14379130 -mental_home n 1 2 @ ~ 1 0 03746574 -mental_hospital n 1 2 @ ~ 1 0 03746574 -mental_hygiene n 1 2 @ ~ 1 0 06056923 -mental_illness n 1 3 ! @ ~ 1 0 14380140 -mental_image n 1 2 @ ~ 1 1 05928118 -mental_imagery n 1 2 @ ~ 1 0 05767733 -mental_institution n 1 2 @ ~ 1 1 03746574 -mental_lexicon n 1 2 @ #p 1 0 05651242 -mental_measurement n 1 2 @ ~ 1 0 01002677 -mental_note n 1 1 @ 1 0 05704550 -mental_object n 1 2 @ ~ 1 0 05809192 -mental_picture n 1 1 @ 1 1 05936704 -mental_process n 1 3 @ ~ ; 1 0 05701363 -mental_quickness n 1 1 @ 1 0 05619345 -mental_rejection n 1 1 @ 1 0 05698982 -mental_representation n 1 2 @ ~ 1 0 05926676 -mental_reservation n 1 1 @ 1 0 05698620 -mental_retardation n 1 2 @ ~ 1 0 05646218 -mental_soundness n 1 1 @ 1 0 14379360 -mental_state n 1 3 @ ~ ; 1 0 14373582 -mental_strain n 1 3 @ ~ ; 1 0 14375890 -mental_synthesis n 1 2 @ ~ 1 0 05771836 -mental_telepathist n 1 1 @ 1 0 10697879 -mental_test n 1 2 @ ~ 1 0 01006675 -mental_testing n 1 2 @ ~ 1 0 01006675 -mental_unsoundness n 1 1 @ 1 0 14397714 -mentalism n 1 2 @ ; 1 0 05973007 -mentality n 2 2 @ + 2 2 06195839 05618056 -mentally_retarded n 1 1 @ 1 1 07948971 -mentation n 1 2 @ ~ 1 0 05770926 -mentha n 1 3 @ #m %m 1 0 12854925 -mentha_aquatica n 1 1 @ 1 0 12855494 -mentha_arvensis n 1 1 @ 1 0 12855365 -mentha_citrata n 1 1 @ 1 0 12855710 -mentha_longifolia n 1 1 @ 1 0 12855886 -mentha_piperita n 1 2 @ %s 1 0 12856091 -mentha_pulegium n 1 2 @ %s 1 0 12856680 -mentha_rotundifolia n 1 1 @ 1 0 12856479 -mentha_spicata n 1 2 @ %s 1 0 12856287 -mentha_suaveolens n 1 1 @ 1 0 12856479 -menthol n 2 3 @ #s %s 2 0 14950394 03746861 -mentholated_salve n 1 2 @ %s 1 0 03746994 -menticirrhus n 1 3 @ #m %m 1 0 02597173 -menticirrhus_americanus n 1 2 @ #m 1 0 02597818 -menticirrhus_littoralis n 1 2 @ #m 1 0 02598252 -menticirrhus_saxatilis n 1 1 @ 1 0 02597972 -menticirrhus_undulatus n 1 1 @ 1 0 02598134 -mention n 3 3 @ ~ + 3 2 06766190 06763681 06706317 -mentioner n 1 2 @ + 1 0 10309347 -mentor n 1 2 @ ~ 1 0 10309496 -mentum n 3 4 @ ~ #p %p 3 0 11690737 05599617 05277100 -mentzelia n 1 3 @ #m %m 1 0 12035423 -mentzelia_laevicaulis n 1 2 @ #m 1 0 12035631 -mentzelia_lindleyi n 1 2 @ #m 1 0 12035907 -mentzelia_livicaulis n 1 2 @ #m 1 0 12035631 -menu n 4 3 @ ~ ; 4 1 06492939 07565083 06493392 05911124 -menuhin n 1 1 @ 1 0 11175040 -menura n 1 3 @ #m %m 1 0 01545425 -menurae n 1 3 @ #m %m 1 0 01545149 -menuridae n 1 3 @ #m %m 1 0 01545303 -menyanthaceae n 1 3 @ #m %m 1 0 12484413 -menyanthes n 1 3 @ #m %m 1 0 12484612 -menyanthes_trifoliata n 1 2 @ #m 1 0 12484784 -menziesia n 1 3 @ #m %m 1 0 12241699 -menziesia_ferruginea n 1 2 @ #m 1 0 12241880 -menziesia_pilosa n 1 2 @ #m 1 0 12242123 -meow n 1 2 @ + 1 0 07386614 -mepacrine n 1 1 @ 1 0 04034641 -meperidine n 1 1 @ 1 0 03747103 -meperidine_hydrochloride n 1 1 @ 1 0 03747103 -mephaquine n 1 1 @ 1 0 03742728 -mephenytoin n 1 1 @ 1 0 03747281 -mephistopheles n 1 2 @ + 1 0 09601769 -mephitinae n 1 2 @ #m 1 0 02445564 -mephitis n 3 5 @ ~ #m %m + 3 0 15035975 05714894 02446014 -mephitis_macroura n 1 2 @ #m 1 0 02446352 -mephitis_mephitis n 1 2 @ #m 1 0 02446206 -mephobarbital n 1 1 @ 1 0 03747508 -meprin n 1 2 @ ; 1 0 03747746 -meprobamate n 1 1 @ 1 0 03747746 -meq n 1 1 @ 1 1 05026744 -meralgia n 1 1 @ 1 0 14328894 -merbromine n 1 1 @ 1 0 03748002 -mercalli_scale n 1 2 @ ; 1 0 13851426 -mercantile_agency n 1 1 @ 1 0 08354842 -mercantile_establishment n 1 3 @ ~ %p 1 0 03748162 -mercantile_law n 1 2 @ ; 1 0 08455037 -mercantile_system n 1 2 @ ; 1 0 08367339 -mercantilism n 2 6 @ ~ %p = ; - 2 0 08367339 01090446 -mercaptopurine n 1 1 @ 1 0 03748456 -mercator n 1 1 @ 1 0 11175243 -mercator's_projection n 1 1 @ 1 0 03748691 -mercator_projection n 1 1 @ 1 0 03748691 -merce_cunningham n 1 1 @ 1 0 10917554 -mercedario n 1 2 @ #p 1 0 09351257 -mercenaria n 1 2 @ #m 1 0 01957923 -mercenaria_mercenaria n 1 4 @ ~ #m %p 1 0 01958038 -mercenary n 1 3 @ ~ + 1 1 10309614 -mercer n 2 3 @ + ; 2 1 10309785 11175445 -merchandise n 1 4 @ ~ #p + 1 1 03748886 -merchandiser n 1 3 @ ~ + 1 0 10309896 -merchandising n 1 4 @ ~ #p + 1 1 01113068 -merchant n 1 2 @ ~ 1 1 10309896 -merchant-venturer n 1 1 @ 1 0 10748142 -merchant_bank n 1 1 @ 1 0 08419163 -merchant_marine n 2 1 @ 2 0 08273645 04196502 -merchant_ship n 1 1 @ 1 0 02878222 -merchant_vessels n 1 1 @ 1 0 04196502 -merchantability n 1 2 @ ~ 1 0 14564165 -merchantman n 1 1 @ 1 0 02878222 -mercifulness n 3 4 ! @ ~ + 3 0 07554500 04829282 01071411 -mercilessness n 2 4 ! @ ~ + 2 0 07506382 04831031 -merckx n 1 1 @ 1 0 11175605 -mercouri n 1 1 @ 1 0 11175748 -mercurial_ointment n 1 1 @ 1 0 03749409 -mercurialis n 1 3 @ #m %m 1 0 12923839 -mercurialis_annua n 1 2 @ #m 1 0 12924036 -mercurialis_perennis n 1 2 @ #m 1 0 12924284 -mercuric_chloride n 1 1 @ 1 0 14950694 -mercurochrome n 1 1 @ 1 0 03748002 -mercurous_chloride n 1 3 @ #s %s 1 0 14950937 -mercury n 4 5 @ #m #s + ; 4 1 14645346 09562704 09351408 05014308 -mercury-in-glass_clinical_thermometer n 1 1 @ 1 0 03043423 -mercury-in-glass_thermometer n 1 3 @ ~ %p 1 0 03749807 -mercury-vapor_lamp n 1 2 @ ~ 1 0 03750206 -mercury_barometer n 1 1 @ 1 0 03749504 -mercury_cell n 1 1 @ 1 0 03749634 -mercury_chloride n 1 1 @ 1 0 14950694 -mercury_fulminate n 1 2 @ #p 1 0 14798815 -mercury_poisoning n 1 2 @ ~ 1 0 14511234 -mercury_program n 1 1 @ 1 0 05900010 -mercury_thermometer n 1 3 @ ~ %p 1 0 03749807 -mercy n 5 2 @ ~ 5 3 01071411 04829282 07554500 14474435 01227495 -mercy_killing n 1 1 @ 1 0 00219856 -mercy_seat n 2 1 @ 2 0 03750540 03750437 -mere n 1 2 @ ; 1 0 09351547 -meredith n 2 1 @ 2 0 11176005 11175875 -merestone n 1 1 @ 1 0 07259438 -meretriciousness n 2 2 @ + 2 0 04875113 04818700 -merganser n 1 3 @ ~ #m 1 0 01854415 -mergenthaler n 1 1 @ 1 0 11176230 -merger n 2 2 @ + 2 1 01238424 07373602 -merger_agreement n 1 1 @ 1 0 06527710 -merginae n 1 3 @ #m %m 1 0 01854047 -merging n 2 3 @ ~ + 2 1 00146856 00380881 -mergus n 1 3 @ #m %m 1 0 01854223 -mergus_albellus n 1 2 @ #m 1 0 01855188 -mergus_merganser n 1 2 @ #m 1 0 01854700 -mergus_merganser_americanus n 1 2 @ #m 1 0 01854838 -mergus_serrator n 1 2 @ #m 1 0 01855032 -mericarp n 1 1 @ 1 0 11678377 -merida n 1 2 @ #p 1 0 08740367 -meridian n 3 4 @ ~ #p + 3 0 13940456 09105156 08598823 -meringue n 1 1 @ 1 0 07621140 -meringue_kiss n 1 1 @ 1 0 07607027 -merino n 1 1 @ 1 0 02414290 -merino_sheep n 1 1 @ 1 0 02414290 -meriones n 1 3 @ #m %m 1 0 02344006 -meriones_longifrons n 1 2 @ #m 1 0 02344408 -meriones_unguiculatus n 1 2 @ #m 1 0 02344270 -meristem n 1 1 @ 1 0 13130885 -merit n 2 3 ! @ + 2 2 05138958 04807050 -merit_badge n 1 1 @ 1 0 06882953 -merit_pay n 1 1 @ 1 0 13280373 -merit_system n 1 2 ! @ 1 0 05664487 -meritocracy n 2 2 @ + 2 0 07973088 06218824 -meritoriousness n 1 2 @ + 1 0 04807050 -meriwether_lewis n 1 1 @ 1 0 11130940 -merl n 1 2 @ #m 1 0 01558594 -merlangus n 1 3 @ #m %m 1 0 02522990 -merlangus_merlangus n 1 3 @ #m %p 1 0 02523110 -merle n 1 2 @ #m 1 0 01558594 -merlin n 2 3 @ #m ; 2 0 11176388 01612275 -merlon n 1 2 @ #p 1 0 03750614 -merlot n 2 1 @ 2 0 13147045 07895839 -merluccius n 1 2 @ #m 1 0 02524424 -merluccius_bilinearis n 1 2 @ %p 1 0 02524659 -mermaid n 1 1 @ 1 1 09489601 -merman n 2 1 @ 2 0 11176527 09489697 -merodach n 1 2 @ ; 1 0 09519288 -meromelia n 1 2 @ ~ 1 0 14466432 -meronym n 1 1 @ 1 0 06293746 -meronymy n 1 2 @ %p 1 0 13808708 -meropidae n 1 3 @ #m %m 1 0 01828714 -merops n 1 2 @ #m 1 0 01828856 -merostomata n 1 3 @ #m %m 1 0 01787191 -merovingian n 2 3 @ #m %m 2 0 10310404 08156200 -merovingian_dynasty n 1 2 @ %m 1 0 08156200 -merozoite n 1 1 @ 1 0 01422450 -merrimac n 1 1 @ 1 0 03750748 -merrimack n 1 2 @ #p 1 0 09351647 -merrimack_river n 1 2 @ #p 1 0 09351647 -merriment n 2 2 @ ~ 2 2 07529245 00429949 -merriness n 1 2 @ + 1 0 04649051 -merry-go-round n 2 1 @ 2 0 07342772 02966193 -merry_andrew n 1 2 @ ~ 1 0 09930876 -merry_bells n 1 3 @ ~ #m 1 0 12475035 -merrymaker n 1 2 @ ~ 1 0 10526096 -merrymaking n 1 3 @ ~ + 1 1 00509846 -mertensia n 1 3 @ #m %m 1 0 12821257 -mertensia_virginica n 1 2 @ #m 1 0 12821505 -merthiolate n 1 2 @ ; 1 0 04424003 -merton n 2 1 @ 2 0 11176797 11176669 -meryl_streep n 1 1 @ 1 0 11322068 -meryta n 1 3 @ #m %m 1 0 11799158 -meryta_sinclairii n 1 2 @ #m 1 0 11799331 -mesa n 2 2 @ #p 2 0 09351905 09058071 -mesa_verde_national_park n 1 2 @ #p 1 0 08607575 -mesabi_range n 1 2 @ #p 1 0 09352108 -mesalliance n 1 1 @ 1 0 13965780 -mesantoin n 1 2 @ ; 1 0 03747281 -mesasamkranti n 1 2 @ #p 1 0 15221286 -mescal n 2 4 @ #m #s %p 2 0 11849271 07905770 -mescal_bean n 1 2 @ #m 1 0 12570703 -mescal_button n 1 3 @ #p %s 1 0 11849467 -mescaline n 1 2 @ #s 1 0 03750912 -mesembryanthemum n 1 3 @ #m %m 1 0 11820751 -mesembryanthemum_crystallinum n 1 1 @ 1 0 11821184 -mesembryanthemum_edule n 1 2 @ #m 1 0 11819509 -mesencephalon n 1 3 @ #p %p 1 0 05499828 -mesenchyme n 1 1 @ 1 0 01464441 -mesenteric_artery n 1 2 @ ~ 1 0 05351746 -mesenteric_plexus n 1 1 @ 1 0 05507642 -mesenteric_vein n 1 1 @ 1 0 05373616 -mesentery n 1 3 @ ~ + 1 0 05429195 -mesh n 5 5 @ ~ #p %p + 5 1 13654889 07338114 05731062 03819595 00140393 -mesh_topology n 1 1 @ 1 0 05731062 -meshed n 1 2 @ #p 1 0 08911868 -meshing n 3 4 @ ~ %p + 3 0 07338114 03819595 00140393 -meshugaas n 1 2 @ ; 1 0 00513251 -meshuggeneh n 1 3 @ + ; 1 0 10310516 -meshuggener n 1 2 @ ; 1 0 10310516 -meshwork n 1 3 @ ~ %p 1 0 03819595 -mesmer n 1 2 @ + 1 0 11176932 -mesmerism n 1 2 @ + 1 0 00158996 -mesmerist n 1 2 @ + 1 0 10195261 -mesmerizer n 1 2 @ + 1 0 10195261 -mesne_lord n 1 1 @ 1 0 10310647 -mesoamerica n 1 4 @ #p %p + 1 0 08735564 -mesoamerican n 1 1 @ 1 0 10310783 -mesoblast n 1 3 @ ~ + 1 0 01464077 -mesocarp n 1 1 @ 1 0 11684654 -mesocolon n 1 1 @ 1 0 05429404 -mesocricetus n 1 3 @ #m %m 1 0 02343187 -mesocricetus_auratus n 1 2 @ #m 1 0 02343320 -mesoderm n 1 3 @ ~ + 1 0 01464077 -mesohippus n 1 2 @ #m 1 0 02376135 -mesolithic n 1 2 @ #p 1 0 15233239 -mesolithic_age n 1 2 @ #p 1 0 15233239 -mesomorph n 1 2 @ + 1 0 10310903 -mesomorphy n 1 1 @ 1 0 04999306 -meson n 1 3 @ ~ + 1 0 09352282 -mesophyron n 1 2 @ #p 1 0 05232691 -mesophyte n 1 2 @ + 1 0 13121349 -mesophytic_plant n 1 1 @ 1 0 13121349 -mesopotamia n 1 4 @ #p %p - 1 0 08916316 -mesosphere n 1 2 @ #p 1 0 09352578 -mesothelioma n 1 1 @ 1 0 14251435 -mesothelium n 1 1 @ 1 0 05240710 -mesotron n 1 2 @ ~ 1 0 09352282 -mesozoic n 1 2 @ %p 1 0 15126175 -mesozoic_era n 1 2 @ %p 1 0 15126175 -mespilus n 1 3 @ #m %m 1 0 12636107 -mespilus_germanica n 1 3 @ #m %p 1 0 12636224 -mesquit n 1 3 @ ~ #m 1 0 11765277 -mesquite n 1 3 @ ~ #m 1 0 11765277 -mesquite_gum n 1 1 @ 1 0 14901565 -mess n 6 5 @ ~ %p + ; 6 5 14500047 14409489 07650792 07565608 03751065 13774404 -mess-up n 1 3 @ + ; 1 0 00075618 -mess_hall n 1 4 @ ~ %p ; 1 1 03751065 -mess_jacket n 1 1 @ 1 0 03751269 -mess_kit n 1 1 @ 1 0 03751458 -mess_of_pottage n 1 1 @ 1 0 13413840 -message n 2 2 @ ~ 2 2 06253690 06598915 -message_pad n 1 1 @ 1 0 14951110 -messaging n 1 1 @ 1 0 06280477 -messenger n 1 2 @ ~ 1 1 10311021 -messenger_boy n 1 2 @ ~ 1 1 10311375 -messenger_rna n 1 1 @ 1 0 14832770 -messiah n 4 2 @ + 4 0 09537660 09537502 09537325 07042405 -messiahship n 1 2 @ + 1 0 00595410 -messidor n 1 2 @ #p 1 0 15177396 -messina n 1 2 @ #p 1 0 08805801 -messiness n 2 3 @ ~ + 2 0 14500047 04897428 -messmate n 1 2 @ ; 1 0 10311506 -messuage n 1 2 @ ; 1 0 03751590 -mestiza n 1 2 @ ; 1 0 10311661 -mestizo n 1 2 @ ; 1 0 10311823 -mestranol n 1 2 @ #s 1 0 14751216 -mesua n 1 3 @ #m %m 1 0 12370384 -mesua_ferrea n 1 2 @ #m 1 0 12370549 -metabola n 1 1 @ 1 0 02161225 -metabolic_acidosis n 1 1 @ 1 0 14020023 -metabolic_alkalosis n 1 1 @ 1 0 14021471 -metabolic_disorder n 1 2 @ ~ 1 0 14084502 -metabolic_process n 1 4 @ ~ %p ; 1 0 13514314 -metabolic_rate n 1 2 @ ~ 1 0 15280201 -metabolism n 2 5 @ ~ %p + ; 2 0 13514880 13514314 -metabolite n 1 1 @ 1 0 15110796 -metacarpal n 1 2 @ #p 1 0 05277261 -metacarpal_artery n 1 2 @ #p 1 0 05352291 -metacarpal_bone n 1 2 @ #p 1 0 05277261 -metacarpal_vein n 1 2 @ #p 1 0 05373790 -metacarpophalangeal_joint n 1 2 @ #p 1 0 05585205 -metacarpus n 1 4 @ #p %p + 1 0 05593871 -metacenter n 1 3 @ + ; 1 0 05866822 -metacentre n 1 2 @ ; 1 0 05866822 -metacentric_chromosome n 1 1 @ 1 0 05445099 -metacyesis n 1 2 @ ~ 1 0 14047740 -metadata n 1 1 @ 1 0 08462721 -metagenesis n 1 1 @ 1 0 11424589 -metaknowledge n 1 1 @ 1 0 05999455 -metal n 2 4 @ ~ %s + 2 1 14625458 14586769 -metal_bar n 1 2 @ ~ 1 0 03570526 -metal_detector n 1 1 @ 1 0 03751757 -metal_drum n 1 1 @ 1 0 03249956 -metal_filing n 1 2 @ ~ 1 0 09352721 -metal_glove n 1 2 @ #p 1 0 03429771 -metal_money n 1 2 @ ~ 1 0 13387877 -metal_plating n 1 2 @ ~ 1 0 03963028 -metal_saw n 1 1 @ 1 0 03474779 -metal_screw n 1 1 @ 1 0 03752185 -metal_wood n 1 1 @ 1 0 03752398 -metalanguage n 1 2 @ ~ 1 0 06900156 -metalepsis n 1 1 @ 1 0 07107896 -metalhead n 1 1 @ 1 0 10311995 -metallic n 2 1 @ 2 0 03752071 03751977 -metallic_bond n 1 1 @ 1 0 11438105 -metallic_element n 1 2 @ ~ 1 0 14625458 -metallized_dye n 1 1 @ 1 0 14627529 -metallurgical_engineer n 1 2 @ ~ 1 0 10312077 -metallurgist n 1 3 @ ~ + 1 0 10312077 -metallurgy n 1 4 @ ~ + - 1 0 06125698 -metalware n 1 2 @ ~ 1 0 03752262 -metalwork n 2 1 @ 2 0 03752521 00925732 -metalworker n 1 2 @ ~ 1 0 10614629 -metalworking n 1 1 @ 1 0 00925732 -metalworking_vise n 1 1 @ 1 0 03702440 -metalworks n 1 2 @ ~ 1 0 03387653 -metamathematics n 1 2 @ ; 1 0 06017895 -metamere n 1 2 @ + 1 0 02665812 -metamorphic_rock n 1 2 @ ~ 1 0 14698698 -metamorphism n 1 2 @ ~ 1 0 13514648 -metamorphopsia n 1 1 @ 1 0 14554695 -metamorphosis n 3 3 @ ~ + 3 0 13514880 00402308 00402128 -metaphase n 2 2 @ #p 2 0 13515251 13515149 -metaphor n 1 3 @ ~ + 1 1 07106800 -metaphosphoric_acid n 1 1 @ 1 0 14615135 -metaphysics n 1 4 @ ~ + - 1 0 06162653 -metaphysis n 1 2 @ #p 1 0 05592870 -metaplastic_anaemia n 1 1 @ 1 0 14168010 -metaplastic_anemia n 1 1 @ 1 0 14168010 -metaproterenol n 1 1 @ 1 0 03752649 -metarule n 1 1 @ 1 0 05847320 -metasequoia n 1 2 @ #m 1 0 11640132 -metasequoia_glyptostrodoides n 1 2 @ #m 1 0 11640132 -metastability n 1 2 @ ; 1 0 04739262 -metastasis n 1 2 @ + 1 0 13515353 -metastatic_tumor n 1 2 @ ~ 1 0 14239425 -metatarsal n 1 2 @ #p 1 0 05277405 -metatarsal_arch n 1 1 @ 1 0 05576827 -metatarsal_artery n 1 2 @ #p 1 0 05352433 -metatarsal_vein n 1 2 @ #p 1 0 05373924 -metatarsus n 1 4 @ #p %p + 1 0 05594568 -metatheria n 1 3 @ #m %m 1 0 01873850 -metatherian n 1 2 @ ~ 1 0 01873982 -metathesis n 2 2 @ ~ 2 0 13515520 13469066 -metaurus_river n 1 3 @ #p ; 1 0 01287179 -metazoa n 1 3 @ #m %m 1 0 01908703 -metazoan n 1 2 @ #m 1 0 01908958 -metchnikoff n 1 1 @ 1 0 11177151 -metchnikov n 1 1 @ 1 0 11177151 -mete n 1 2 @ ~ 1 0 08512736 -metempsychosis n 1 1 @ 1 0 11408914 -metencephalon n 1 1 @ 1 0 05481997 -meteor n 2 5 @ ~ #p + ; 2 1 09353109 11483990 -meteor_shower n 1 2 @ %p 1 0 11507000 -meteor_stream n 1 2 @ %p 1 1 11507000 -meteor_swarm n 1 1 @ 1 0 09353338 -meteorite n 1 3 @ ~ + 1 1 09352849 -meteoroid n 1 3 @ ~ ; 1 0 09353109 -meteorological_balloon n 1 2 @ ~ 1 0 03752922 -meteorological_conditions n 1 1 @ 1 1 14520123 -meteorological_observation_post n 1 1 @ 1 0 08599976 -meteorological_satellite n 1 1 @ 1 0 04567593 -meteorologist n 1 3 @ ~ + 1 0 10312287 -meteorology n 2 5 @ ~ + ; - 2 0 06749729 06118563 -meteortropism n 1 1 @ 1 0 00862170 -meter n 4 6 @ ~ #p %p + ; 4 2 13659162 03753077 07094093 04991738 -meter_maid n 1 1 @ 1 0 10312491 -meter_reading n 2 2 @ ~ 2 0 05816790 01004582 -meterstick n 1 1 @ 1 0 03753514 -metformin n 1 1 @ 1 0 03753657 -meth n 1 1 @ 1 0 03754295 -methacholine n 1 1 @ 1 0 03753826 -methacrylic_acid n 1 1 @ 1 0 14615822 -methadon n 1 1 @ 1 0 03754014 -methadone n 1 1 @ 1 0 03754014 -methadone_hydrochloride n 1 1 @ 1 0 03754014 -methamphetamine n 1 1 @ 1 0 03754295 -methamphetamine_hydrochloride n 1 1 @ 1 0 03754295 -methanal n 1 1 @ 1 0 14873196 -methane n 1 3 @ ~ #s 1 0 14951229 -methane_series n 1 2 @ ~ 1 0 14951377 -methanogen n 1 1 @ 1 0 01347858 -methanol n 1 2 @ %s 1 0 14687818 -methapyrilene n 1 1 @ 1 0 03754676 -methaqualone n 1 1 @ 1 0 03754822 -metharbital n 1 1 @ 1 0 03754979 -methedrine n 1 1 @ 1 0 03754295 -metheglin n 1 1 @ 1 0 07890890 -methenamine n 1 1 @ 1 0 03755140 -methicillin n 1 1 @ 1 0 03755388 -methionine n 1 1 @ 1 0 14952290 -methocarbamol n 1 1 @ 1 0 03755545 -method n 2 3 @ ~ + 2 1 05660268 00549766 -method_acting n 1 1 @ 1 0 00549766 -method_of_accounting n 1 3 @ ~ #m 1 0 13405962 -method_of_choice n 1 1 @ 1 1 05661294 -method_of_fluxions n 1 2 @ ; 1 0 06014435 -method_of_least_squares n 1 2 @ ; 1 0 06021013 -methodicalness n 1 3 @ ~ + 1 0 04768483 -methodism n 1 2 @ + 1 0 06231494 -methodist n 1 4 @ ~ #m + 1 0 10312600 -methodist_church n 1 3 @ %m %p 1 1 08092340 -methodist_denomination n 1 3 @ ~ #p 1 0 08092539 -methodists n 1 3 @ %m %p 1 0 08092340 -methodological_analysis n 1 1 @ 1 0 06166898 -methodology n 2 3 @ ~ + 2 0 06166898 05661400 -methotrexate n 1 1 @ 1 0 03755712 -methotrexate_sodium n 1 1 @ 1 0 03755712 -methuselah n 2 3 @ ~ ; 2 0 11177370 10375506 -methyl n 1 2 @ ~ 1 0 14952122 -methyl_alcohol n 1 2 @ %s 1 0 14687818 -methyl_bromide n 1 1 @ 1 0 14951682 -methyl_ethyl_ketone n 1 1 @ 1 0 14787954 -methyl_group n 1 2 @ ~ 1 0 14952122 -methyl_orange n 1 1 @ 1 0 14771482 -methyl_phenol n 1 2 @ ~ 1 0 14825982 -methyl_radical n 1 2 @ ~ 1 0 14952122 -methyl_salicylate n 1 2 @ #s 1 0 14952441 -methylated_spirit n 1 2 @ ~ 1 0 14951814 -methylbenzene n 1 1 @ 1 0 15075378 -methyldopa n 1 1 @ 1 0 03755991 -methylene n 1 1 @ 1 0 14951983 -methylene_blue n 1 1 @ 1 0 14771270 -methylene_chloride n 1 1 @ 1 0 15018013 -methylene_group n 1 1 @ 1 0 14951983 -methylene_radical n 1 1 @ 1 0 14951983 -methylenedioxymethamphetamine n 1 2 @ ~ 1 0 03756184 -methylphenidate n 1 1 @ 1 0 03756624 -methyltestosterone n 1 1 @ 1 0 14748117 -methylthionine_chloride n 1 1 @ 1 0 14771270 -metic n 1 1 @ 1 0 10312890 -metical n 1 2 @ %p 1 0 13688811 -meticorten n 1 2 @ ; 1 0 14753414 -meticulosity n 1 2 @ + 1 0 04672605 -meticulousness n 1 2 @ + 1 0 04672605 -metier n 2 2 @ ~ 2 0 05159225 00610222 -metis n 1 2 @ ; 1 1 10313000 -metonym n 1 2 @ + 1 0 06293898 -metonymy n 1 4 @ ~ + - 1 0 07107676 -metopion n 1 2 @ #p 1 0 05234016 -metoprolol n 1 1 @ 1 0 03756857 -metralgia n 1 1 @ 1 0 14328966 -metrazol n 1 1 @ 1 1 03913702 -metrazol_shock n 1 1 @ 1 0 00707028 -metrazol_shock_therapy n 1 1 @ 1 0 00707028 -metrazol_shock_treatment n 1 1 @ 1 0 00707028 -metre n 3 6 @ ~ #p %p + ; 3 0 13659162 07094093 04991738 -metrestick n 1 1 @ 1 0 03753514 -metric n 3 3 @ ~ ; 3 0 13784906 13604275 13577171 -metric_capacity_unit n 1 2 @ ~ 1 0 13616054 -metric_function n 1 2 @ ; 1 0 13784906 -metric_grain n 1 3 @ #p %p 1 0 13723304 -metric_hundredweight n 1 3 @ #p %p 1 0 13725271 -metric_linear_unit n 1 2 @ ~ 1 0 13649268 -metric_space n 1 2 @ ~ 1 0 08004695 -metric_system n 1 3 @ ~ %p 1 0 13577934 -metric_ton n 1 2 @ %p 1 0 13725588 -metric_unit n 1 2 @ ~ 1 0 13604275 -metric_weight_unit n 1 3 @ ~ #p 1 0 13717155 -metrical_foot n 1 3 @ ~ ; 1 0 07094843 -metrical_unit n 1 3 @ ~ ; 1 0 07094843 -metrication n 1 2 @ + 1 0 00194645 -metrics n 1 2 @ - 1 0 06170025 -metrification n 2 2 @ + 2 0 00931300 00194645 -metritis n 1 1 @ 1 0 14349892 -metro n 1 1 @ 1 1 03757138 -metrology n 1 2 @ + 1 0 06135806 -metronidazole n 1 1 @ 1 0 03757428 -metronome n 1 1 @ 1 0 03757604 -metronome_marking n 1 3 @ #p ; 1 0 15286042 -metronymic n 1 1 @ 1 0 06336149 -metropolis n 2 4 @ ~ %p + 2 1 08524735 08226335 -metropolitan n 2 1 @ 2 0 10313239 10313146 -metroptosis n 1 1 @ 1 0 14558801 -metrorrhagia n 1 1 @ 1 0 14370825 -metroxylon n 1 2 @ #m 1 0 12591523 -metroxylon_sagu n 1 1 @ 1 0 12591702 -metternich n 1 1 @ 1 0 11177532 -mettle n 1 1 @ 1 0 04857490 -mettlesomeness n 1 2 @ + 1 0 04634415 -metycaine n 1 1 @ 1 0 03946933 -meuniere_butter n 1 1 @ 1 0 07849186 -meuse n 2 4 @ #p %p ; 2 0 09353437 01287431 -meuse-argonne n 1 4 @ #p %p ; 1 0 01287431 -meuse-argonne_operation n 1 4 @ #p %p ; 1 0 01287431 -meuse_river n 2 4 @ #p %p ; 2 0 09353437 01287431 -mevacor n 1 2 @ ; 1 0 03693089 -mew n 2 3 @ #m + 2 0 07386614 02041678 -mew_gull n 1 2 @ #m 1 0 02041678 -mews n 1 2 @ ; 1 0 03757723 -mexicali n 1 2 @ #p 1 0 08744105 -mexican n 1 3 @ ~ #m 1 1 09722658 -mexican-american n 1 2 @ ; 1 0 09723067 -mexican_beaded_lizard n 1 2 @ #m 1 0 01692523 -mexican_bean_beetle n 1 2 @ #m 1 0 02166229 -mexican_black_cherry n 1 2 @ #p 1 0 07757874 -mexican_capital n 1 2 @ #p 1 0 08744236 -mexican_cypress n 1 1 @ 1 0 11632376 -mexican_fire_plant n 1 2 @ #m 1 0 12920719 -mexican_flameleaf n 1 2 @ #m 1 0 12920204 -mexican_freetail_bat n 1 1 @ 1 0 02149653 -mexican_green n 1 2 @ #p 1 0 02670049 -mexican_hairless n 1 1 @ 1 0 02113978 -mexican_hat n 1 1 @ 1 0 12006930 -mexican_husk_tomato n 2 3 @ #p %p 2 0 12911440 07734555 -mexican_hyssop n 1 1 @ 1 0 12840502 -mexican_jumping_bean n 1 2 @ #p 1 0 12928819 -mexican_juniper n 1 1 @ 1 0 11638698 -mexican_mint n 1 1 @ 1 0 12866459 -mexican_monetary_unit n 1 2 @ ~ 1 0 13692713 -mexican_nut_pine n 1 2 @ #m 1 0 11609862 -mexican_onyx n 1 1 @ 1 0 14665469 -mexican_peso n 1 2 @ %p 1 0 13692822 -mexican_pocket_mouse n 1 2 @ #m 1 0 02349847 -mexican_poppy n 1 1 @ 1 0 11902982 -mexican_revolution n 1 2 @ ; 1 0 01305796 -mexican_spanish n 1 1 @ 1 0 06967428 -mexican_standoff n 1 1 @ 1 0 13936557 -mexican_sunflower n 1 2 @ #m 1 0 12026018 -mexican_swamp_cypress n 1 3 @ ~ #m 1 0 11642430 -mexican_tea n 2 1 @ 2 0 11829205 11828804 -mexican_tulip_poppy n 1 2 @ #m 1 0 11906127 -mexican_valium n 1 1 @ 1 0 04036494 -mexican_war n 1 2 @ %p 1 0 01306007 -mexicano n 1 2 @ ; 1 0 09723067 -mexico n 1 7 @ #m #p %m %p + - 1 1 08740875 -mexico_city n 1 2 @ #p 1 0 08744236 -mexiletine n 1 1 @ 1 0 03757925 -mexitil n 1 2 @ ; 1 0 03757925 -meyer_guggenheim n 1 1 @ 1 0 11018862 -meyerbeer n 1 1 @ 1 0 11177695 -meyerhof n 1 1 @ 1 0 11177873 -mezcal n 1 3 @ #m %p 1 0 11849271 -mezereon n 1 2 @ %p 1 0 12347158 -mezereum n 1 2 @ #p 1 0 12347380 -mezuza n 1 2 @ #p 1 0 06433672 -mezuzah n 1 2 @ #p 1 0 06433672 -mezzanine n 2 2 @ %p 2 0 03758220 03758089 -mezzanine_floor n 1 1 @ 1 0 03758089 -mezzo n 2 2 @ ~ 2 0 10313441 06873017 -mezzo-relievo n 1 1 @ 1 0 03758334 -mezzo-rilievo n 1 1 @ 1 0 03758334 -mezzo-soprano n 2 2 @ ~ 2 0 10313441 06873017 -mezzotint n 1 1 @ 1 0 03758478 -mf n 1 2 @ #p 1 0 05057485 -mfa n 1 1 @ 1 0 06701698 -mflop n 1 3 @ #p ; 1 0 13607187 -mg n 2 4 @ #s #p %p 2 1 13723061 14644249 -mho n 1 1 @ 1 0 13637240 -mhz n 1 2 @ %p 1 0 15279957 -mi n 8 4 @ #p %p ; 8 0 14113021 13660619 13660337 13651218 09099526 08347206 08346655 06868582 -miami n 2 2 @ #p 2 0 09661107 09073697 -miami_beach n 1 2 @ #p 1 0 09073938 -miao n 2 1 @ 2 0 09713764 06937098 -miaou n 1 2 @ + 1 0 07386614 -miaow n 1 2 @ + 1 0 07386614 -miasm n 2 1 @ 2 0 14526032 14518010 -miasma n 2 2 @ + 2 0 14526032 14518010 -miaul n 1 1 @ 1 0 07386614 -mib n 1 3 @ #p %p 1 0 13628056 -mibit n 1 3 @ #p %p 1 0 13628592 -mica n 1 3 @ ~ + 1 0 14681555 -micah n 2 2 @ #p 2 0 11178059 06440102 -micawber n 1 1 @ 1 0 09601906 -micelle n 1 1 @ 1 1 09353603 -michael n 1 2 @ ; 1 0 09539517 -michael_assat n 1 2 @ ; 1 0 11201386 -michael_ellis_de_bakey n 1 1 @ 1 0 10926238 -michael_faraday n 1 1 @ 1 0 10966318 -michael_gerald_tyson n 1 1 @ 1 0 11355082 -michael_jackson n 1 1 @ 1 0 11076965 -michael_joe_jackson n 1 1 @ 1 0 11076965 -michael_ondaatje n 1 1 @ 1 0 11214926 -michael_philip_jagger n 1 1 @ 1 0 11078650 -michaelmas n 1 2 @ #p 1 0 15186412 -michaelmas_daisy n 1 1 @ 1 0 11934807 -michaelmas_day n 1 2 @ #p 1 0 15186412 -michaelmastide n 1 1 @ 1 0 15186596 -micheas n 2 2 @ #p 2 0 11178059 06440102 -michel_de_notredame n 1 1 @ 1 0 11210105 -michel_eyquem_montaigne n 1 1 @ 1 0 11186511 -michel_montaigne n 1 1 @ 1 0 11186511 -michel_ney n 1 1 @ 1 0 11205647 -michelangelo n 1 1 @ 1 0 11178161 -michelangelo_buonarroti n 1 1 @ 1 0 11178161 -michelangelo_merisi_da_caravaggio n 1 1 @ 1 0 10882089 -michelson n 1 1 @ 1 0 11178393 -michelson-morley_experiment n 1 1 @ 1 0 00693109 -michener n 1 1 @ 1 0 11178631 -michigan n 3 3 @ #p %p 3 1 09099526 09332050 00493308 -michigan_lily n 1 1 @ 1 0 12428242 -michigander n 1 1 @ 1 0 09743690 -michinomiya_hirohito n 1 1 @ 1 0 11051822 -mick n 1 2 @ ; 1 0 09715521 -mick_jagger n 1 1 @ 1 0 11078650 -mickey n 1 2 @ ; 1 0 09715521 -mickey_charles_mantle n 1 1 @ 1 0 11155196 -mickey_finn n 1 2 @ ; 1 0 03758614 -mickey_mantle n 1 1 @ 1 0 11155196 -mickey_mouse n 1 1 @ 1 0 02452014 -mickey_spillane n 1 1 @ 1 0 11311287 -mickle n 1 2 @ ~ 1 0 13774404 -micmac n 2 1 @ 2 0 09661258 06910868 -miconazole n 1 1 @ 1 0 03758720 -micro-organism n 1 5 @ ~ %p ; - 1 0 01326291 -micro_chip n 1 4 @ ~ #p %p 1 0 03020034 -microbalance n 1 1 @ 1 0 03758894 -microbar n 1 2 @ #p 1 0 13712120 -microbat n 1 3 @ ~ #m 1 0 02141306 -microbe n 1 2 @ + 1 0 01384491 -microbiologist n 1 3 @ ~ + 1 0 10313580 -microbiology n 1 3 @ + - 1 0 06077648 -microbrachia n 1 1 @ 1 0 14509219 -microbrewery n 1 1 @ 1 0 03758992 -microcentrum n 1 3 @ #m %m 1 0 02228215 -microcephalus n 1 1 @ 1 0 14509299 -microcephaly n 1 2 @ + 1 0 14509299 -microchip n 1 4 @ ~ #p %p 1 0 03020034 -microchiroptera n 1 3 @ #m %m 1 0 02140970 -microcircuit n 1 2 @ #p 1 0 03577090 -micrococcaceae n 1 3 @ #m %m 1 0 01378800 -micrococcus n 1 2 @ #m 1 0 01379116 -microcode n 1 2 @ ; 1 0 06357814 -microcomputer n 1 3 @ ~ %p 1 0 03918480 -microcosm n 1 1 @ 1 1 05938314 -microcosmic_salt n 1 1 @ 1 0 15016726 -microcyte n 1 1 @ 1 0 05454578 -microcytic_anaemia n 1 2 @ %p 1 0 14167123 -microcytic_anemia n 1 2 @ %p 1 0 14167123 -microcytosis n 1 2 @ #p 1 0 14197099 -microdesmidae n 1 3 @ #m %m 1 0 02620826 -microdipodops n 1 3 @ #m %m 1 0 02350537 -microdot n 1 1 @ 1 0 03759114 -microeconomic_expert n 1 1 @ 1 0 10313724 -microeconomics n 1 2 @ + 1 0 06151108 -microeconomist n 1 2 @ + 1 0 10313724 -microelectronics n 1 2 @ + 1 0 06115179 -microevolution n 1 1 @ 1 0 13515678 -microfarad n 1 3 @ #p %p 1 0 13635985 -microfiche n 1 1 @ 1 0 03759243 -microfilm n 1 3 @ ~ + 1 0 03759432 -microflora n 1 1 @ 1 0 11530008 -microfossil n 1 1 @ 1 0 09353815 -microgametophyte n 1 1 @ 1 0 11687681 -microgauss n 1 2 @ #p 1 0 13638706 -microglia n 1 2 @ %p 1 0 05468211 -microgliacyte n 1 2 @ #p 1 0 05468351 -microgram n 1 3 @ #p %p 1 0 13722929 -microgramma n 1 3 @ #m %m 1 0 13176201 -microgramma-piloselloides n 1 2 @ #m 1 0 13176363 -microhylidae n 1 3 @ #m %m 1 0 01652583 -micromeria n 1 3 @ #m %m 1 0 12857024 -micromeria_chamissonis n 1 2 @ #m 1 0 12857204 -micromeria_douglasii n 1 2 @ #m 1 0 12857204 -micromeria_juliana n 1 2 @ #m 1 0 12857456 -micrometeor n 1 1 @ 1 0 09353918 -micrometeorite n 1 2 @ + 1 1 09353918 -micrometeoroid n 1 1 @ 1 0 09353918 -micrometer n 2 3 @ #p %p 2 0 13658496 03759661 -micrometer_caliper n 1 1 @ 1 0 03759661 -micrometer_gauge n 1 1 @ 1 0 03759661 -micrometry n 1 1 @ 1 0 01002872 -micromicron n 1 3 @ #p %p 1 0 13657849 -micromillimeter n 1 3 @ #p %p 1 0 13658278 -micromillimetre n 1 3 @ #p %p 1 0 13658278 -micromyx n 1 3 @ #m %m 1 0 02332315 -micromyx_minutus n 1 2 @ #m 1 0 02332447 -micron n 1 3 @ #p %p 1 1 13658496 -micronase n 1 2 @ ; 1 0 03441930 -micronesia n 2 3 @ #p %p 2 0 08837048 08836886 -micronor n 1 2 @ %s 1 0 03759795 -micronutrient n 1 1 @ 1 0 14582716 -microorganism n 1 5 @ ~ %p ; - 1 1 01326291 -micropaleontology n 1 1 @ 1 0 06145062 -micropenis n 1 1 @ 1 0 05526860 -microphage n 1 2 @ ; 1 0 05453815 -microphallus n 1 1 @ 1 0 05526860 -microphone n 1 2 @ ~ 1 1 03759954 -microphone_boom n 1 1 @ 1 0 02871824 -microphoning n 1 1 @ 1 1 13515828 -microphotometer n 1 1 @ 1 0 03760164 -micropogonias n 1 3 @ #m %m 1 0 02596592 -micropogonias_undulatus n 1 2 @ #m 1 0 02596720 -microprocessor n 1 2 @ #p 1 0 03760310 -microprocessor_chip n 1 4 @ ~ #p %p 1 0 03020034 -micropterus n 1 3 @ #m %m 1 0 02564572 -micropterus_dolomieu n 1 2 @ %p 1 0 02565072 -micropterus_pseudoplites n 1 1 @ 1 0 02564935 -micropterus_salmoides n 1 2 @ %p 1 0 02565324 -micropyle n 1 2 @ #p 1 0 11679378 -microradian n 1 2 @ #p 1 0 13611740 -microscope n 1 4 @ ~ %p + 1 1 03760671 -microscope_slide n 1 2 @ %p 1 0 04237924 -microscope_stage n 1 1 @ 1 0 04296949 -microscopic_anatomy n 1 2 @ ~ 1 0 06060049 -microscopic_field n 1 1 @ 1 0 05934852 -microscopist n 1 3 @ ~ + 1 0 10313872 -microscopium n 1 1 @ 1 0 09354142 -microscopy n 1 4 @ ~ + - 1 1 00640889 -microsecond n 1 3 @ #p %p 1 1 15236176 -microseism n 1 2 @ ~ 1 0 07429484 -microsoft_disk_operating_system n 1 1 @ 1 0 06568552 -microsome n 1 3 @ #p + 1 0 05434361 -microsorium n 1 3 @ #m %m 1 0 13176523 -microsorium_punctatum n 1 2 @ #m 1 0 13176714 -microsporangium n 1 1 @ 1 0 11687964 -microspore n 1 1 @ 1 0 11687789 -microsporidian n 1 2 @ #m 1 0 01427399 -microsporophyll n 1 1 @ 1 0 11688069 -microsporum n 1 2 @ #m 1 0 13078652 -microstomus n 1 3 @ #m %m 1 0 02659667 -microstomus_kitt n 1 3 @ #m %p 1 0 02659808 -microstrobos n 1 3 @ #m %m 1 0 11656974 -microstrobos_niphophilus n 1 2 @ #m 1 0 11657153 -microsurgery n 1 2 @ ~ 1 0 00684988 -microtaggant n 1 2 @ ; 1 0 14952654 -microtome n 1 1 @ 1 0 03760944 -microtubule n 1 1 @ 1 0 05246969 -microtus n 1 3 @ #m %m 1 0 02341108 -microtus_ochrogaster n 1 2 @ #m 1 0 02341616 -microtus_pennsylvaticus n 1 2 @ #m 1 0 02341288 -microtus_richardsoni n 1 2 @ #m 1 0 02341475 -microvolt n 1 2 @ #p 1 0 13642729 -microwave n 2 3 @ #p + 2 1 11482312 03761084 -microwave_bomb n 1 1 @ 1 0 03761333 -microwave_diathermy_machine n 1 1 @ 1 0 03761588 -microwave_linear_accelerator n 1 1 @ 1 0 03761731 -microwave_oven n 1 1 @ 1 0 03761084 -microwave_radar n 1 3 @ ~ %p 1 0 04039848 -microwave_spectroscopy n 1 2 @ ~ 1 0 00650912 -microwave_spectrum n 1 2 @ #p 1 0 11500816 -microzide n 1 3 @ #s ; 1 0 03552169 -micruroides n 1 3 @ #m %m 1 0 01746063 -micruroides_euryxanthus n 1 2 @ #m 1 0 01746191 -micrurus n 1 3 @ #m %m 1 0 01745780 -micrurus_fulvius n 1 2 @ #m 1 0 01745902 -micturition n 1 3 @ ~ + 1 0 13515958 -micturition_reflex n 1 1 @ 1 0 00866273 -mid-april n 1 2 @ #p 1 0 15211385 -mid-atlantic_ridge n 1 2 @ #p 1 0 09354283 -mid-atlantic_states n 1 3 @ #p %p 1 0 09049303 -mid-august n 1 2 @ #p 1 0 15212638 -mid-calf n 1 1 @ 1 0 05574519 -mid-december n 1 2 @ #p 1 0 15213963 -mid-eighties n 1 2 @ #p 1 0 15150870 -mid-february n 1 2 @ #p 1 0 15210765 -mid-fifties n 1 2 @ #p 1 1 15149642 -mid-forties n 1 2 @ #p 1 0 15149351 -mid-january n 1 2 @ #p 1 0 15210383 -mid-july n 1 2 @ #p 1 0 15212358 -mid-june n 1 2 @ #p 1 1 15212070 -mid-march n 1 2 @ #p 1 0 15211090 -mid-may n 1 2 @ #p 1 0 15211711 -mid-nineties n 1 2 @ #p 1 0 15151255 -mid-november n 1 2 @ #p 1 0 15213669 -mid-october n 1 2 @ #p 1 0 15213303 -mid-off n 1 1 @ 1 0 00728218 -mid-on n 1 1 @ 1 0 00728342 -mid-september n 1 2 @ #p 1 0 15213008 -mid-seventies n 1 2 @ #p 1 0 15150493 -mid-sixties n 1 2 @ #p 1 0 15150013 -mid-thirties n 1 2 @ #p 1 1 15149038 -mid-twenties n 1 2 @ #p 1 0 15148584 -mid-water n 1 1 @ 1 0 09354608 -midafternoon n 1 2 @ #p 1 0 15166352 -midair n 1 1 @ 1 1 08600147 -midas n 1 2 @ ; 1 0 09498497 -midas_touch n 1 1 @ 1 0 05201342 -midazolam n 1 1 @ 1 0 03761845 -midbrain n 1 3 @ #p %p 1 0 05499828 -midday n 1 2 @ #p 1 1 15165490 -midden n 2 2 @ ; 2 0 08560560 07962295 -middle n 4 5 ! @ ~ #p + 4 4 08523483 05868272 05555473 15266685 -middle-aged_man n 1 2 @ ~ 1 0 10314054 -middle-ear_deafness n 1 1 @ 1 0 14551146 -middle_age n 1 3 @ #p %p 1 0 15153472 -middle_ages n 1 3 @ #p - 1 1 15259284 -middle_buster n 1 1 @ 1 0 03677766 -middle_c n 1 1 @ 1 0 06869815 -middle_cerebral_artery n 1 1 @ 1 0 05341641 -middle_cerebral_vein n 1 2 @ ~ 1 0 05362593 -middle_class n 1 3 @ ~ %m 1 1 08181658 -middle_distance n 1 1 @ 1 1 05934550 -middle_ear n 1 3 @ #p %p 1 0 05324888 -middle_east n 1 4 @ ~ %p - 1 1 08791167 -middle_english n 1 2 @ ~ 1 0 06948761 -middle_finger n 1 1 @ 1 0 05567604 -middle_greek n 1 1 @ 1 0 06977190 -middle_high_german n 1 1 @ 1 0 06950973 -middle_irish n 1 1 @ 1 0 06961033 -middle_low_german n 1 1 @ 1 0 06952480 -middle_meningeal_artery n 1 1 @ 1 0 05351442 -middle_name n 1 1 @ 1 0 06337202 -middle_of_the_roader n 1 2 @ #m 1 0 09904837 -middle_paleolithic n 1 2 @ #p 1 0 15232899 -middle_school n 1 2 @ ~ 1 0 08284481 -middle_temporal_vein n 1 1 @ 1 0 05382432 -middle_term n 1 2 @ #p 1 0 06754972 -middle_thyroid_vein n 1 1 @ 1 0 05383956 -middle_watch n 1 1 @ 1 0 15293435 -middle_west n 1 3 @ #p %p 1 1 08564307 -middlebreaker n 1 1 @ 1 0 03677766 -middlebrow n 1 2 @ ; 1 0 10314182 -middleman n 3 3 @ ~ #m 3 0 10222497 10211036 09960117 -middleton n 1 1 @ 1 0 11178781 -middleweight n 3 1 @ 3 0 10314517 10314422 10314305 -middling n 1 1 @ 1 0 03762067 -middy n 1 1 @ 1 0 03762238 -middy_blouse n 1 1 @ 1 0 03762238 -mideast n 1 4 @ ~ %p - 1 0 08791167 -midfield n 1 3 @ #p ; 1 0 08571275 -midgard n 1 2 @ ; 1 0 05631175 -midge n 1 2 @ #m 1 0 02203152 -midget n 1 2 @ ~ 1 0 10040344 -midgrass n 1 1 @ 1 0 12103680 -midi n 2 2 @ #p 2 0 08943601 06666030 -midi-pyrenees n 1 2 @ #p 1 0 08943699 -midinette n 1 1 @ 1 0 10314627 -midiron n 1 1 @ 1 0 03762332 -midland n 2 2 @ #p 2 0 09145553 08588596 -midline n 1 1 @ 1 0 13861686 -midnight n 1 2 @ #p 1 1 15168185 -midnight_sun n 1 1 @ 1 0 11482579 -midplane n 1 1 @ 1 0 13861686 -midpoint n 1 2 @ ~ 1 0 08521816 -midrash n 1 2 @ ; 1 0 06763052 -midrib n 1 1 @ 1 0 13098420 -midriff n 2 3 @ #p ; 2 0 05555473 05318606 -midsection n 1 2 @ #p 1 1 05555473 -midshipman n 1 2 @ ; 1 1 10314703 -midst n 1 1 @ 1 1 08588699 -midstream n 1 2 @ #p 1 0 09354511 -midsummer n 1 2 @ #p 1 1 15222012 -midsummer's_day n 1 2 @ #p 1 0 15222202 -midsummer-men n 1 2 @ #m 1 0 12786273 -midsummer_day n 1 2 @ #p 1 0 15222202 -midsummer_eve n 1 2 @ #p 1 0 15222369 -midsummer_night n 1 2 @ #p 1 0 15222369 -midterm n 3 2 @ #p 3 0 15226625 15225668 07198605 -midterm_exam n 1 1 @ 1 0 07198605 -midterm_examination n 1 1 @ 1 0 07198605 -midvein n 1 1 @ 1 0 13098420 -midwatch n 1 1 @ 1 1 15293435 -midway n 2 3 @ #p ; 2 0 08614746 01287782 -midway_islands n 1 3 @ #p - 1 0 09080989 -midweek n 2 3 @ #p + 2 0 15164233 15136342 -midwest n 1 3 @ #p %p 1 1 08564307 -midwestern_united_states n 1 3 @ #p %p 1 0 08564307 -midwife n 1 1 @ 1 0 10314836 -midwife_toad n 2 2 @ #m 2 0 01648356 01648139 -midwifery n 2 3 @ ~ - 2 0 06053439 00186549 -midwinter n 1 2 @ #p 1 0 15238074 -mien n 1 2 @ ~ 1 1 04910377 -mierkat n 1 3 @ ~ #m 1 0 02138441 -mies_van_der_rohe n 1 1 @ 1 0 11178922 -mifepristone n 1 1 @ 1 0 02668093 -miff n 1 2 @ + 1 0 14407070 -might n 1 2 @ + 1 1 05030680 -might-have-been n 1 1 @ 1 0 07283364 -mightiness n 1 2 @ + 1 0 05030680 -mighty_mouse n 1 1 @ 1 0 02452347 -mignonette n 1 2 @ #m 1 0 12385566 -mignonette_family n 1 3 @ #m %m 1 0 12385046 -migraine n 1 1 @ 1 0 14327707 -migrant n 1 3 @ ~ + 1 0 10314952 -migrant_shrike n 1 1 @ 1 0 01599741 -migration n 4 4 @ ~ + ; 4 1 01123095 07966421 07312829 07312616 -migration_route n 1 1 @ 1 0 08617622 -migrator n 2 3 @ ~ + 2 0 10314952 01318478 -migratory_grasshopper n 1 2 @ #m 1 0 02227604 -migratory_locust n 1 2 @ #m 1 0 02227247 -migratory_quail n 1 1 @ 1 0 01805070 -miguel_de_cervantes n 1 1 @ 1 0 10889032 -miguel_de_cervantes_saavedra n 1 1 @ 1 0 10889032 -miguel_jose_serra n 1 1 @ 1 0 11293470 -mihrab n 2 3 @ #p ; 2 0 03762602 03762434 -mikado n 1 2 @ ; 1 0 10315217 -mikania n 1 3 @ #m %m 1 0 11996092 -mikania_scandens n 1 2 @ #m 1 0 11996251 -mike n 1 2 @ ~ 1 1 03759954 -mike_tyson n 1 1 @ 1 0 11355082 -mikhail_aleksandrovich_bakunin n 1 1 @ 1 0 10831483 -mikhail_bakunin n 1 1 @ 1 0 10831483 -mikhail_baryshnikov n 1 1 @ 1 0 10837737 -mikhail_glinka n 1 1 @ 1 0 11002422 -mikhail_gorbachev n 1 1 @ 1 0 11007750 -mikhail_ilarionovich_kutuzov n 1 1 @ 1 0 11113077 -mikhail_ivanovich_glinka n 1 1 @ 1 0 11002422 -mikhail_ivanovich_kalinin n 1 1 @ 1 0 11096033 -mikhail_kalinin n 1 1 @ 1 0 11096033 -mikhail_sergeyevich_gorbachev n 1 1 @ 1 0 11007750 -mikhail_yurievich_lermontov n 1 1 @ 1 0 11129017 -mikir-meithei n 1 1 @ 1 0 06933546 -mikmaq n 1 1 @ 1 0 09661258 -mikolaj_kopernik n 1 1 @ 1 0 10909724 -mikvah n 1 2 @ ; 1 0 00258093 -mil n 5 3 @ #p %p 5 0 13693781 13655262 13655089 13623636 13611082 -milady n 1 1 @ 1 0 10315382 -milage n 1 1 @ 1 0 05131194 -milan n 1 3 @ #p %m 1 0 08809165 -milanese n 1 2 @ #m 1 0 10315456 -milano n 1 3 @ #p %m 1 0 08809165 -milch_cow n 1 2 @ ~ 1 0 02406174 -milcher n 1 2 @ ~ 1 0 02406174 -mild_silver_protein n 1 1 @ 1 0 03762809 -mild_steel n 1 1 @ 1 0 14952878 -mildew n 2 3 @ ~ + 2 0 13516176 13077295 -mildness n 3 3 @ ~ + 3 0 14522408 04910973 04829922 -mildred_ella_didrikson n 1 1 @ 1 0 11404666 -mildred_ella_didrikson_zaharias n 1 1 @ 1 0 11404666 -mile n 8 4 @ #p %p + 8 2 13651218 13660337 13776342 13660868 13660619 13655414 13655262 07469325 -mile-high_city n 1 2 @ #p 1 0 09068107 -mileage n 3 1 @ 3 1 05131194 13823287 13294029 -mileometer n 1 2 @ #p 1 0 03841143 -milepost n 1 1 @ 1 0 07271167 -miler n 2 4 @ ~ + ; 2 0 13651520 10315561 -miles_davis n 1 1 @ 1 0 10924828 -miles_dewey_davis_jr. n 1 1 @ 1 0 10924828 -miles_gloriosus n 1 1 @ 1 0 10315730 -miles_per_gallon n 1 1 @ 1 0 13604572 -miles_per_hour n 2 1 @ 2 1 15280346 15284878 -miles_standish n 1 1 @ 1 0 11312362 -milestone n 2 1 @ 2 2 07271167 07418716 -milfoil n 1 1 @ 1 0 11916696 -milhaud n 1 1 @ 1 0 11179124 -miliaria n 1 1 @ 1 0 14322106 -miliary_fever n 1 1 @ 1 0 14143239 -miliary_tuberculosis n 1 1 @ 1 0 14143818 -milieu n 1 1 @ 1 1 14513944 -militainment n 1 2 @ ; 1 0 00515791 -militance n 1 3 @ ~ + 1 0 04837615 -militancy n 1 3 @ ~ + 1 0 04837615 -militant n 1 2 @ ~ 1 0 10315837 -militant_tendency n 1 1 @ 1 0 08262154 -militarisation n 1 3 @ ~ + 1 0 01156438 -militarism n 1 2 @ + 1 0 06221974 -militarist n 1 3 @ ~ + 1 0 10316013 -militarization n 1 3 @ ~ + 1 0 01156438 -military n 1 5 @ ~ %m + - 1 1 08199025 -military-industrial_complex n 1 1 @ 1 0 07969366 -military_academy n 1 3 @ ~ ; 1 0 08279524 -military_action n 1 3 @ ~ ; 1 0 00952963 -military_adviser n 1 2 @ ; 1 0 10316164 -military_advisor n 1 2 @ ; 1 0 10316164 -military_attache n 1 2 @ ~ 1 0 10316360 -military_band n 1 1 @ 1 0 08249459 -military_blockade n 1 3 @ ~ ; 1 0 01075117 -military_campaign n 1 3 @ ~ ; 1 0 00968155 -military_capability n 1 3 @ ~ ; 1 0 05203649 -military_censorship n 1 3 @ ~ ; 1 0 00821295 -military_ceremony n 2 2 @ ; 2 0 07453063 01028381 -military_chaplain n 1 2 @ ; 1 0 10316527 -military_commission n 1 2 @ ; 1 0 06478988 -military_control n 1 2 @ ; 1 0 01133106 -military_court n 1 3 @ ~ ; 1 0 08334087 -military_drill n 1 4 @ ~ #p ; 1 0 00896348 -military_engineer n 1 3 @ ~ ; 1 0 09809538 -military_expedition n 1 3 @ ~ ; 1 0 00968479 -military_force n 1 5 @ ~ #m %m ; 1 1 08198398 -military_formation n 1 3 @ ~ ; 1 0 08426816 -military_government n 1 1 @ 1 0 08053003 -military_governor n 1 2 @ ~ 1 0 10316683 -military_greeting n 1 2 @ ; 1 0 06633041 -military_group n 1 5 @ ~ #m %m ; 1 0 08198398 -military_headquarters n 1 3 @ ~ ; 1 0 03504420 -military_hospital n 1 3 @ ~ ; 1 0 03762982 -military_installation n 1 3 @ ~ ; 1 0 03763133 -military_intelligence n 2 3 @ ~ ; 2 0 08339706 06642899 -military_intelligence_agency n 1 2 @ ~ 1 0 08339706 -military_intelligence_section_5 n 1 2 @ ; 1 0 08347206 -military_intelligence_section_6 n 1 2 @ ; 1 0 08346655 -military_issue n 1 2 @ ; 1 0 13367593 -military_junta n 1 1 @ 1 0 08241964 -military_law n 1 3 @ ; - 1 0 08455271 -military_leader n 1 3 @ ~ ; 1 0 10316862 -military_machine n 1 4 @ ~ %m - 1 0 08199025 -military_man n 1 4 @ ~ #m ; 1 1 10582746 -military_march n 1 2 @ ~ 1 0 07058468 -military_mission n 1 3 @ ~ ; 1 0 00970645 -military_music n 1 2 @ ~ 1 0 07058468 -military_officer n 1 3 @ ~ ; 1 0 10317007 -military_operation n 1 3 @ ~ ; 1 0 00955060 -military_pace n 1 1 @ 1 0 13655908 -military_personnel n 2 4 @ ~ #m ; 2 2 08397255 10582746 -military_plane n 1 3 @ ~ ; 1 0 04552348 -military_police n 1 4 @ ~ %m ; 1 0 08211290 -military_policeman n 1 4 @ ~ #m ; 1 0 10317500 -military_position n 1 3 @ ~ ; 1 0 08622586 -military_post n 1 4 @ ~ %p ; 1 0 03763403 -military_posture n 1 3 @ ~ ; 1 0 05203649 -military_press n 1 1 @ 1 0 00627013 -military_quarters n 1 4 @ ~ #p ; 1 0 03763727 -military_rank n 1 3 @ ~ ; 1 0 14431471 -military_rating n 1 3 @ ~ ; 1 0 14431471 -military_recruit n 1 2 @ ~ 1 0 10512372 -military_reserve n 1 3 @ %m ; 1 0 08206460 -military_science n 1 3 @ ~ ; 1 0 06248043 -military_service n 2 4 @ ~ %m ; 2 1 08198137 00579977 -military_strength n 1 3 @ ~ ; 1 0 05203649 -military_training n 1 4 @ ~ %p ; 1 0 00895501 -military_uniform n 1 4 @ ~ %p ; 1 0 03763968 -military_unit n 1 5 @ ~ #m %m ; 1 1 08198398 -military_vehicle n 1 3 @ ~ ; 1 1 03764276 -military_volunteer n 1 2 @ ; 1 0 10759331 -militia n 2 5 @ ~ %m %p ; 2 1 08390511 08390731 -militiaman n 1 3 @ ~ #m 1 0 10317717 -milium n 1 2 @ #p 1 0 05245626 -milk n 4 5 @ ~ #p %s + 4 2 07844042 05399034 09354780 07844604 -milk-vetch n 1 3 @ ~ #m 1 0 12508309 -milk_adder n 1 1 @ 1 0 01734808 -milk_bar n 1 1 @ 1 0 03764606 -milk_can n 1 1 @ 1 0 03764736 -milk_chocolate n 1 1 @ 1 0 07604307 -milk_cow n 1 2 @ ~ 1 0 02406174 -milk_float n 1 2 @ ; 1 0 03764822 -milk_glass n 1 1 @ 1 0 14879996 -milk_intolerance n 1 1 @ 1 0 14506656 -milk_leg n 1 1 @ 1 0 14103018 -milk_of_magnesia n 1 1 @ 1 0 03765269 -milk_powder n 1 2 @ ~ 1 0 07846143 -milk_pox n 1 1 @ 1 0 14124688 -milk_punch n 1 1 @ 1 0 07930205 -milk_river n 1 2 @ #p 1 0 09354780 -milk_shake n 1 2 @ ~ 1 0 07923297 -milk_sickness n 2 1 @ 2 0 14276201 14078613 -milk_snake n 1 1 @ 1 0 01734808 -milk_sugar n 1 1 @ 1 0 14929462 -milk_thistle n 2 3 @ ~ #m 2 0 12018760 12015525 -milk_tooth n 1 2 @ #p 1 0 05306894 -milk_vetch n 1 3 @ ~ #m 1 0 12508309 -milk_wagon n 1 1 @ 1 0 03765467 -milk_whey n 1 1 @ 1 0 15097578 -milkcap n 1 2 @ #m 1 0 13006631 -milker n 1 2 @ ~ 1 0 02406174 -milking_machine n 1 1 @ 1 0 03764995 -milking_shorthorn n 1 1 @ 1 0 02407172 -milking_stool n 1 1 @ 1 1 03765128 -milkmaid n 1 1 @ 1 0 09988216 -milkman n 1 1 @ 1 0 10317884 -milkshake n 1 2 @ ~ 1 0 07923297 -milksop n 1 1 @ 1 0 10603378 -milkwagon n 1 1 @ 1 0 03765467 -milkweed n 2 3 @ ~ #m 2 0 13233727 12019035 -milkweed_butterfly n 1 2 @ #m 1 0 02279972 -milkweed_family n 1 3 @ #m %m 1 0 13233012 -milkwort n 1 3 @ ~ #m 1 0 12705013 -milkwort_family n 1 3 @ #m %m 1 0 12704636 -milky_way n 1 3 @ %m %p 1 0 09354984 -milky_way_galaxy n 1 3 @ %m %p 1 0 09354984 -milky_way_system n 1 3 @ %m %p 1 0 09354984 -mill n 5 5 @ ~ %p + - 5 1 03316406 11179502 11179287 03765561 00358290 -mill-girl n 1 1 @ 1 0 10318193 -mill-hand n 1 2 @ ~ 1 0 10318293 -mill_agent n 1 1 @ 1 0 10317963 -mill_wheel n 1 3 @ #p %p 1 0 03767203 -millais n 1 1 @ 1 0 11179666 -millard_fillmore n 1 1 @ 1 0 10970864 -millay n 1 1 @ 1 0 11179797 -millboard n 1 1 @ 1 0 14801402 -milldam n 1 1 @ 1 0 03765934 -millenarian n 1 1 @ 1 0 10318414 -millenarianism n 1 1 @ 1 1 06189551 -millenarism n 1 2 @ + 1 0 06189551 -millenarist n 1 2 @ + 1 0 10318414 -millenary n 3 2 @ %p 3 0 15252146 15141213 13751036 -millennium n 3 4 @ %p + ; 3 1 15141213 15263283 15252146 -millenniumism n 1 1 @ 1 0 06189551 -millepede n 1 2 @ #m 1 0 01786646 -miller n 6 1 @ 6 0 11180209 11180029 11179923 10318087 03766044 02283617 -miller's-thumb n 1 2 @ #m 1 0 02645691 -millerite n 1 2 @ %s 1 0 14681987 -millet n 3 3 @ ~ #m 3 0 12135898 11180357 07802963 -millettia n 1 2 @ #m 1 0 12549799 -milliammeter n 1 1 @ 1 0 03766218 -milliampere n 1 2 @ #p 1 1 13637613 -milliard n 1 2 @ ; 1 0 13752033 -millibar n 1 2 @ #p 1 0 13711663 -millicurie n 1 2 @ #p 1 0 13645465 -millidegree n 1 1 @ 1 1 13714376 -milliequivalent n 1 1 @ 1 0 05026744 -millifarad n 1 3 @ #p %p 1 0 13636135 -milligram n 1 3 @ #p %p 1 1 13723061 -millihenry n 1 2 @ #p 1 0 13639274 -millikan n 1 1 @ 1 0 11180476 -milliliter n 1 3 @ #p %p 1 1 13623636 -millilitre n 1 3 @ #p %p 1 0 13623636 -millime n 1 2 @ #p 1 0 13670935 -millimeter n 1 3 @ #p %p 1 1 13658657 -millimeter_of_mercury n 1 1 @ 1 1 13711416 -millimetre n 1 3 @ #p %p 1 0 13658657 -millimicron n 1 3 @ #p %p 1 0 13658278 -milline n 1 1 @ 1 0 13713159 -milliner n 1 1 @ 1 0 10162354 -millinery n 2 2 @ ~ 2 0 03766508 03766322 -milling n 1 2 @ + 1 0 03766600 -milling_machine n 1 1 @ 1 0 03766044 -milling_machinery n 1 2 @ ~ 1 0 03765561 -million n 2 1 @ 2 1 13751533 13776432 -million_floating_point_operations_per_second n 1 3 @ #p ; 1 0 13607187 -million_instructions_per_second n 1 2 @ ; 1 0 13607616 -millionaire n 1 1 @ 1 0 10529555 -millionairess n 1 1 @ 1 0 10318607 -millionth n 2 1 @ 2 0 13849913 13739507 -milliped n 1 2 @ #m 1 0 01786646 -millipede n 1 2 @ #m 1 0 01786646 -milliradian n 1 3 @ #p %p 1 0 13611884 -millisecond n 1 3 @ #p %p 1 0 15236338 -millivolt n 1 2 @ #p 1 0 13642596 -millivoltmeter n 1 1 @ 1 1 03766697 -milliwatt n 1 3 @ #p %p 1 0 13644379 -millpond n 1 1 @ 1 1 09355261 -millrace n 1 1 @ 1 0 03766816 -millrun n 1 1 @ 1 0 03766816 -mills n 1 1 @ 1 0 11180643 -millstone n 3 2 @ #p 3 0 05689645 03767112 03766935 -millwheel n 1 3 @ #p %p 1 1 03767203 -millwork n 1 1 @ 1 0 03767363 -millwright n 1 1 @ 1 0 10318686 -milne n 1 1 @ 1 0 11180812 -milo n 1 1 @ 1 0 12138444 -milo_maize n 1 1 @ 1 0 12138444 -milometer n 1 2 @ #p 1 0 03841143 -milontin n 1 2 @ ; 1 0 03922412 -milord n 1 1 @ 1 0 10318802 -milquetoast n 1 1 @ 1 1 10603378 -milt n 2 2 @ #p 2 0 07799447 02322712 -miltiades n 1 1 @ 1 0 11180952 -miltomate n 1 1 @ 1 0 12911673 -milton n 1 1 @ 1 0 11181073 -milton_friedman n 1 1 @ 1 0 10982658 -milton_snavely_hershey n 1 1 @ 1 0 11046457 -miltonia n 1 3 @ #m %m 1 0 12073410 -miltown n 1 2 @ ; 1 0 03747746 -milvus n 1 2 @ #m 1 0 01608685 -milvus_migrans n 1 1 @ 1 0 01608814 -milwaukee n 1 2 @ #p 1 1 09158268 -mimamsa n 1 2 @ ; 1 0 06238265 -mime n 2 3 @ ~ + 2 0 10318892 00550016 -mimeo n 1 2 @ + 1 0 03767459 -mimeograph n 1 2 @ + 1 0 03767459 -mimeograph_machine n 1 1 @ 1 0 03767459 -mimer n 1 3 @ ~ + 1 0 10318892 -mimesis n 3 3 @ #p + 3 1 05962785 14078733 06613448 -mimic n 1 2 @ + 1 0 10319163 -mimicker n 1 2 @ + 1 0 10319163 -mimicry n 2 2 @ ~ 2 1 00549472 01021396 -mimidae n 1 3 @ #m %m 1 0 01586541 -mimir n 1 2 @ ; 1 0 09581859 -mimosa n 3 3 @ ~ #m 3 0 11757653 11754893 07930315 -mimosa_bush n 1 2 @ #m 1 0 11757851 -mimosa_pudica n 1 2 @ #m 1 0 11755319 -mimosa_sensitiva n 1 2 @ #m 1 0 11755110 -mimosaceae n 1 2 @ #m 1 0 11753936 -mimosoideae n 1 3 @ #m %m 1 0 11754188 -mimus n 1 3 @ #m %m 1 0 01586791 -mimus_polyglotktos n 1 2 @ #m 1 0 01586941 -min n 3 3 @ #p %p 3 2 15234764 06930633 09512611 -min_dialect n 1 1 @ 1 0 06930633 -mina n 1 2 @ ~ 1 0 01577659 -minah n 1 2 @ ~ 1 0 01577659 -minamata_bay n 1 2 @ #p 1 0 09355397 -minamata_disease n 1 1 @ 1 0 14511491 -minaret n 1 2 @ #p 1 0 03767745 -minato_ohashi_bridge n 1 2 @ #p 1 0 03767846 -mince n 1 2 @ + 1 0 07650903 -mince_pie n 1 1 @ 1 0 07626094 -mincemeat n 1 1 @ 1 0 07678586 -mincer n 1 2 @ + 1 0 03767966 -mincing_machine n 1 1 @ 1 0 03767966 -mind n 7 4 @ ~ = + 7 5 05611302 05762149 05837957 10708292 05703956 05982915 05618849 -mind's_eye n 1 1 @ 1 1 05768107 -mind-altering_drug n 1 2 @ ~ 1 0 04017137 -mind-set n 1 1 @ 1 0 06195839 -mind_game n 2 1 @ 2 0 00459979 00158443 -mind_reader n 2 1 @ 2 0 10697879 10319580 -mindanao n 1 3 @ #p %m 1 0 08980920 -minden n 1 3 @ #p ; 1 0 01288057 -minder n 2 1 @ 2 0 10319313 09829122 -mindfulness n 1 4 ! @ = + 1 0 04663763 -mindlessness n 2 3 @ ~ + 2 0 05174023 04894204 -mindoro n 1 2 @ #p 1 0 08981123 -mindset n 1 1 @ 1 0 06195839 -mine n 2 5 @ ~ #p %p + 2 2 03768346 03768132 -mine_detector n 1 1 @ 1 0 03768683 -mine_disposal n 1 2 @ ~ 1 0 00091670 -mine_field n 1 1 @ 1 1 08674464 -mine_pig n 1 1 @ 1 0 14953005 -minefield n 1 2 @ ; 1 0 08507255 -minelayer n 1 1 @ 1 0 03768823 -minelaying n 1 1 @ 1 0 00961962 -miner n 1 3 @ ~ + 1 1 10319796 -miner's_cat n 1 2 @ #m 1 0 02508742 -miner's_lettuce n 1 1 @ 1 0 11861853 -mineral n 1 3 @ ~ #s 1 1 14662574 -mineral_deficiency n 1 2 @ ~ 1 0 14450172 -mineral_dressing n 1 2 @ - 1 0 13516312 -mineral_extraction n 1 2 @ - 1 0 13516312 -mineral_jelly n 1 3 @ ~ #s 1 0 14980910 -mineral_kingdom n 1 1 @ 1 0 07941045 -mineral_oil n 1 1 @ 1 1 14953091 -mineral_pitch n 1 1 @ 1 0 14667455 -mineral_processing n 1 2 @ - 1 0 13516312 -mineral_resources n 1 1 @ 1 0 13332395 -mineral_tar n 1 1 @ 1 0 14680836 -mineral_vein n 1 2 @ ~ 1 0 09470222 -mineral_water n 1 2 @ ~ 1 0 07936745 -mineral_wax n 1 1 @ 1 0 14665102 -mineral_wool n 1 1 @ 1 0 14769644 -mineralocorticoid n 1 2 @ ~ 1 0 14751863 -mineralogist n 1 2 @ + 1 0 10319996 -mineralogy n 1 3 @ + - 1 1 06121113 -minerva n 1 2 @ ; 1 0 09557632 -mineshaft n 1 2 @ #p 1 0 03768916 -minestrone n 1 1 @ 1 0 07586894 -minesweeper n 1 1 @ 1 0 03769100 -minesweeping n 1 1 @ 1 0 00091779 -mineworker n 1 2 @ ~ 1 0 10319796 -ming n 1 1 @ 1 0 08156392 -ming_dynasty n 1 1 @ 1 0 08156392 -ming_tree n 2 1 @ 2 0 13112201 13112035 -minge n 1 1 @ 1 0 05263732 -minginess n 1 3 @ ~ + 1 0 04833687 -mingle-mangle n 1 1 @ 1 0 08399977 -mingling n 1 2 @ + 1 1 01082350 -mini n 1 1 @ 1 0 03770439 -miniature n 2 3 @ + ; 2 2 03769397 03769235 -miniature_fan_palm n 1 1 @ 1 0 12596148 -miniature_golf n 1 1 @ 1 0 00466712 -miniature_pinscher n 1 1 @ 1 0 02107312 -miniature_poodle n 1 1 @ 1 0 02113712 -miniature_schnauzer n 1 1 @ 1 0 02097047 -miniaturisation n 1 2 @ + 1 0 00360601 -miniaturist n 1 2 @ + 1 0 10320106 -miniaturization n 1 2 @ + 1 0 00360601 -minibar n 1 1 @ 1 0 03769610 -minibike n 1 2 @ ~ 1 0 03769722 -minibus n 1 1 @ 1 0 03769881 -minicab n 1 2 @ ; 1 0 03769967 -minicar n 1 3 @ ~ ; 1 0 03770085 -minicomputer n 1 1 @ 1 0 03770224 -miniconju n 1 1 @ 1 0 09660820 -minim n 3 2 @ #p 3 0 13621011 13618508 06870844 -minimal_art n 1 1 @ 1 0 08469233 -minimal_brain_damage n 1 2 @ %p 1 0 14056280 -minimal_brain_dysfunction n 1 2 @ %p 1 0 14056280 -minimalism n 1 2 @ + 1 0 08469233 -minimalist n 2 2 @ + 2 0 10320354 10320230 -minimally_invasive_coronary_bypass_surgery n 1 1 @ 1 0 00676453 -minimisation n 1 3 @ ~ + 1 0 00355919 -minimization n 1 4 ! @ ~ + 1 0 00355919 -minimum n 2 4 ! @ ~ + 2 1 13763384 08600274 -minimum_wage n 1 1 @ 1 0 13280515 -minimus n 1 2 @ ~ 1 0 05566366 -mining n 2 4 @ ~ + - 2 1 00922327 00961962 -mining_bee n 1 2 @ #m 1 1 02210427 -mining_company n 1 1 @ 1 0 08003619 -mining_engineer n 1 1 @ 1 0 10320484 -mining_geology n 1 1 @ 1 0 06122033 -minion n 1 1 @ 1 0 10320612 -minipress n 1 2 @ ; 1 0 03998525 -miniskirt n 1 1 @ 1 0 03770439 -minister n 4 4 @ ~ + ; 4 1 09983572 10320863 10320695 00585810 -minister_of_finance n 1 1 @ 1 0 10089892 -minister_of_religion n 1 2 @ ~ 1 0 09983572 -minister_plenipotentiary n 1 1 @ 1 0 10061043 -ministrant n 1 2 @ + 1 0 10321126 -ministration n 1 3 @ ~ + 1 1 01209220 -ministry n 4 2 @ ~ 4 2 08113797 03770316 08114004 00314271 -ministry_of_transportation_test n 1 2 @ ; 1 0 00795161 -minisub n 1 1 @ 1 0 03770520 -minisubmarine n 1 1 @ 1 0 03770520 -minium n 1 2 @ + 1 0 15003329 -minivan n 1 1 @ 1 0 03770679 -miniver n 1 1 @ 1 0 03770834 -mink n 3 3 @ ~ #m 3 0 14765497 03770954 02442845 -mink_coat n 1 1 @ 1 0 03770954 -minke_whale n 1 2 @ #m 1 0 02065407 -minkowski n 1 1 @ 1 0 11181255 -minneapolis n 1 3 @ #m #p 1 1 09102883 -minnesota n 1 3 @ #p %p 1 1 09102016 -minnesota_multiphasic_personality_inventory n 1 1 @ 1 0 06475589 -minnesotan n 1 1 @ 1 0 09743792 -minnewit n 1 1 @ 1 0 11181438 -minnie_bush n 1 2 @ #m 1 0 12242123 -minnie_mouse n 1 1 @ 1 0 02452138 -minniebush n 1 2 @ #m 1 0 12242123 -minnow n 1 2 @ #m 1 0 01442972 -minoan n 1 1 @ 1 0 09709916 -minoan_civilisation n 1 1 @ 1 0 08290763 -minoan_civilization n 1 1 @ 1 0 08290763 -minoan_culture n 1 1 @ 1 0 08290763 -minocin n 1 2 @ ; 1 0 03771066 -minocycline n 1 1 @ 1 0 03771066 -minor n 1 3 @ ~ %p 1 1 09917593 -minor-league_club n 1 4 @ ~ #m %m 1 0 08078976 -minor-league_team n 1 4 @ ~ #m %m 1 0 08078976 -minor_axis n 1 2 @ %p 1 0 06009857 -minor_diatonic_scale n 1 1 @ 1 0 06861020 -minor_expense n 1 2 @ ; 1 0 13306436 -minor_fast_day n 1 2 @ ~ 1 0 15161430 -minor_key n 1 1 @ 1 0 06864308 -minor_league n 1 3 @ %m ; 1 1 08231678 -minor_leaguer n 1 2 @ #m 1 0 10321340 -minor_mode n 1 1 @ 1 0 06864308 -minor_planet n 1 3 @ ~ #m 1 0 09355623 -minor_premise n 1 3 @ #p %p 1 0 06754415 -minor_premiss n 1 3 @ #p %p 1 0 06754415 -minor_role n 1 2 @ ~ 1 0 05929363 -minor_scale n 1 1 @ 1 0 06861020 -minor_suit n 1 3 @ %m ; 1 0 03771261 -minor_surgery n 1 2 ! @ 1 0 00685349 -minor_term n 1 2 @ #p 1 0 06754816 -minor_tranquilizer n 1 2 @ ~ 1 0 03771443 -minor_tranquilliser n 1 2 @ ~ 1 0 03771443 -minor_tranquillizer n 1 2 @ ~ 1 0 03771443 -minority n 3 4 ! @ = + 3 2 07966570 05122850 15152261 -minority_leader n 1 1 @ 1 0 10321233 -minors n 1 3 @ %m ; 1 0 08231678 -minos n 1 2 @ + 1 0 09564680 -minotaur n 1 2 @ ; 1 0 09499056 -minoxidil n 1 1 @ 1 0 03771820 -minsk n 1 2 @ #p 1 0 09011518 -minster n 1 4 @ ~ #p ; 1 0 03772077 -minstrel n 2 4 @ ~ #m + 2 1 10099093 10321474 -minstrel_show n 2 2 @ %m 2 0 08189371 07019743 -minstrelsy n 3 1 @ 3 0 08189581 07049849 05635970 -mint n 6 8 @ ~ #m #s #p %s %p + 6 1 13774404 12855042 12839319 07819166 07606278 03772269 -mint_candy n 1 3 @ ~ %s 1 0 07606278 -mint_family n 1 4 @ ~ #m %m 1 0 12838027 -mint_geranium n 1 3 @ #m %p 1 0 12021499 -mint_julep n 1 2 @ %s 1 0 07915491 -mint_sauce n 1 1 @ 1 0 07823591 -mintage n 3 3 @ ~ + 3 0 13387877 13322758 00909796 -minter n 1 2 @ + 1 0 09934921 -mintmark n 1 1 @ 1 0 06799142 -minuartia n 1 2 @ #m 1 0 11812358 -minuend n 1 1 @ 1 0 13729031 -minuet n 2 1 @ 2 1 00536778 07056113 -minuit n 1 1 @ 1 0 11181438 -minus n 1 1 @ 1 0 00871862 -minus_sign n 1 1 @ 1 0 06812085 -minuscule n 2 2 @ + 2 0 06824757 06350592 -minute n 6 4 @ ~ #p %p 6 3 15234764 15246853 15244650 13611567 06506315 05131023 -minute_book n 1 2 @ %p 1 0 06508299 -minute_gun n 1 2 @ ; 1 0 03772417 -minute_hand n 1 1 @ 1 0 03772584 -minute_of_arc n 1 3 @ #p %p 1 1 13611567 -minute_steak n 1 1 @ 1 0 07658580 -minuteman n 2 1 @ 2 0 10321632 03772674 -minuteness n 2 2 @ + 2 0 05106928 04803702 -minutes n 1 3 @ ~ #p 1 0 06508112 -minutia n 1 1 @ 1 1 05819890 -minx n 1 1 @ 1 0 09965134 -minyan n 1 1 @ 1 0 08358165 -miocene n 1 2 @ #p 1 0 15125519 -miocene_epoch n 1 2 @ #p 1 0 15125519 -miosis n 2 5 @ ~ %p + ; 2 0 13512725 00865808 -miotic n 1 1 @ 1 0 03772881 -miotic_drug n 1 1 @ 1 0 03772881 -miotic_eyedrop n 1 1 @ 1 0 00657257 -mips n 1 2 @ ; 1 0 13607616 -mirabeau n 1 1 @ 1 0 11181634 -mirabilis n 1 3 @ #m %m 1 0 11839297 -mirabilis_californica n 1 2 @ #m 1 0 11840067 -mirabilis_jalapa n 1 1 @ 1 0 11839823 -mirabilis_laevis n 1 2 @ #m 1 0 11840067 -mirabilis_longiflora n 1 1 @ 1 0 11840246 -mirabilis_multiflora n 1 1 @ 1 0 11840476 -mirabilis_oblongifolia n 1 1 @ 1 0 11840764 -mirabilis_uniflora n 1 1 @ 1 0 11839823 -miracle n 2 3 @ ~ + 2 2 07289481 07288801 -miracle-worship n 1 1 @ 1 0 01045520 -miracle_man n 1 1 @ 1 0 10321754 -miracle_play n 1 1 @ 1 0 07018313 -miracle_worker n 1 1 @ 1 0 10321754 -miraculous_food n 1 2 @ ; 1 0 07860629 -mirage n 2 2 @ ~ 2 0 11484375 05940214 -miranda_rule n 1 1 @ 1 0 06655074 -mirasol n 1 2 @ %p 1 0 11978713 -mire n 3 2 @ + 3 1 09355850 14956523 14410365 -miri n 1 1 @ 1 0 06933824 -mirid n 1 3 @ ~ #m 1 0 02237581 -mirid_bug n 1 3 @ ~ #m 1 0 02237581 -miridae n 1 3 @ #m %m 1 0 02237239 -mirish n 1 1 @ 1 0 06933824 -miro n 2 2 @ #m 2 0 11658331 11181835 -mirounga n 1 3 @ #m %m 1 0 02080291 -mirror n 2 3 @ ~ + 2 2 03773035 05767245 -mirror-image_relation n 1 1 @ 1 0 13829408 -mirror_carp n 1 1 @ 1 0 01440242 -mirror_image n 1 1 @ 1 0 04747115 -mirror_symmetry n 1 2 @ ; 1 0 06105314 -mirth n 1 1 @ 1 0 07529377 -mirthfulness n 1 2 @ + 1 0 07529377 -misadventure n 1 2 @ ~ 1 0 07314427 -misalignment n 1 2 @ + 1 0 05077524 -misalliance n 1 3 @ ~ + 1 0 13965627 -misanthrope n 1 3 @ ~ + 1 1 10321882 -misanthropist n 1 3 @ ~ + 1 0 10321882 -misanthropy n 2 2 @ + 2 0 07546844 04658524 -misapplication n 2 3 @ ~ + 2 0 00949516 00776732 -misapprehension n 1 2 @ + 1 0 05895723 -misappropriation n 2 3 @ ~ + 2 0 00776732 00084895 -misbehavior n 1 3 @ ~ + 1 1 00735936 -misbehaviour n 1 2 @ ~ 1 0 00735936 -misbeliever n 1 2 @ + 1 0 10171755 -miscalculation n 1 3 @ ~ + 1 1 00072808 -miscarriage n 2 3 @ ~ + 2 0 07319652 00230475 -miscegenation n 1 2 @ + 1 1 00849768 -miscellanea n 1 2 @ ~ 1 0 08398773 -miscellany n 2 2 @ ~ 2 0 08398773 06592699 -misch_metal n 1 1 @ 1 0 14953240 -mischance n 2 2 @ ~ 2 0 11427842 07314427 -mischief n 2 4 @ ~ = + 2 1 00736375 04846533 -mischief-maker n 1 2 @ ~ 1 0 10731244 -mischief-making n 1 2 @ ~ 1 0 00736375 -mischievousness n 3 3 @ ~ + 3 0 04909563 04650010 00736375 -misconception n 1 4 ! @ ~ + 1 1 05893653 -misconduct n 2 3 @ ~ + 2 0 01134330 00732746 -misconstrual n 1 2 @ + 1 0 07174877 -misconstruction n 2 3 ! @ + 2 2 07174877 06314036 -miscount n 1 2 @ + 1 0 00653719 -miscreant n 1 2 @ ~ 1 0 10522324 -miscreation n 1 3 @ ~ + 1 0 07367091 -miscue n 2 3 @ ~ #p 2 0 00500927 00073828 -misdating n 1 2 @ + 1 0 15180304 -misdeal n 1 2 @ + 1 0 01085567 -misdeed n 1 2 @ ~ 1 1 00735936 -misdemeanor n 1 2 @ ~ 1 1 00770270 -misdemeanour n 1 2 @ ~ 1 0 00770270 -misdirection n 4 3 @ ~ + 4 0 07169743 06787037 01134479 00200041 -mise_en_scene n 1 2 @ %p 1 0 03773268 -miser n 1 3 @ ~ + 1 0 10322084 -miserableness n 1 3 @ ~ + 1 0 14448333 -miserliness n 1 2 @ + 1 0 04834228 -misery n 2 2 @ ~ 2 1 14448333 07533978 -misestimation n 1 3 @ ~ + 1 0 00072808 -misfeasance n 1 1 @ 1 0 00742020 -misfire n 2 2 @ + 2 0 07421749 07319774 -misfit n 1 2 @ ~ 1 0 10322238 -misfortune n 2 3 ! @ ~ 2 2 07304852 14475405 -misgiving n 3 2 @ + 3 2 07525555 05951566 05698791 -misgovernment n 1 2 @ + 1 0 01125562 -mishap n 2 2 @ ~ 2 0 11427842 07314427 -mishegaas n 1 2 @ ; 1 0 00513251 -mishegoss n 1 2 @ ; 1 0 00513251 -mishmash n 1 1 @ 1 0 08399977 -mishna n 1 2 @ #p 1 0 06462807 -mishnah n 1 2 @ #p 1 0 06462807 -mishpachah n 1 2 @ ; 1 0 07970079 -mishpocha n 1 2 @ ; 1 0 07970079 -misinformation n 1 3 @ ~ + 1 0 06634960 -misinterpretation n 1 3 @ ~ + 1 1 07174433 -misleader n 1 2 @ + 1 0 10322391 -mismanagement n 1 3 @ ~ + 1 1 01134479 -mismatch n 1 2 @ + 1 0 05696199 -misnomer n 1 1 @ 1 1 06338485 -miso n 1 2 @ ; 1 0 07857170 -misocainea n 1 1 @ 1 0 07547397 -misogamist n 1 2 @ + 1 0 10322546 -misogamy n 1 2 @ + 1 0 07546973 -misogynism n 1 1 @ 1 0 07547064 -misogynist n 1 2 @ + 1 1 10322648 -misogyny n 1 3 ! @ + 1 0 07547064 -misology n 1 1 @ 1 0 07547219 -misoneism n 1 2 @ ~ 1 0 07547293 -misopedia n 1 1 @ 1 0 07547473 -mispickel n 1 2 @ %s 1 0 14667328 -misplaced_modifier n 1 2 @ ~ 1 0 06323822 -misplacement n 1 2 @ + 1 0 05079074 -misplay n 1 3 @ + ; 1 0 00072068 -misprint n 1 2 @ + 1 0 06769670 -mispronunciation n 1 2 @ + 1 0 07130918 -misquotation n 1 2 @ + 1 0 06613576 -misquote n 1 1 @ 1 0 06613576 -misreading n 1 2 @ + 1 0 07175102 -misreckoning n 1 2 @ ~ 1 0 00072808 -misrepresentation n 2 3 @ ~ + 2 1 06758225 00751145 -misrule n 1 1 @ 1 0 01125562 -miss n 3 3 @ ~ + 3 2 10129825 07319774 06341249 -missal n 1 2 @ ; 1 0 06417279 -missel_thrush n 1 2 @ #m 1 0 01557962 -misshapenness n 1 3 @ ~ + 1 0 14213512 -missile n 2 3 @ ~ %p 2 2 03773504 04008634 -missile_defence_system n 1 1 @ 1 0 03773835 -missile_defense_system n 1 1 @ 1 0 03773835 -missing_link n 1 1 @ 1 0 10322801 -mission n 5 4 @ ~ + ; 5 4 08403225 00970645 00731222 00730984 08402442 -mission_bells n 2 1 @ 2 0 12452480 12452256 -mission_impossible n 1 1 @ 1 0 00731648 -missionary n 2 2 @ ~ 2 1 10322957 10323182 -missionary_position n 1 1 @ 1 0 05081057 -missionary_post n 1 1 @ 1 0 08403225 -missionary_station n 1 1 @ 1 0 08403225 -missionary_work n 1 2 @ ~ 1 0 00730984 -missioner n 1 3 @ ~ + 1 0 10323182 -missippian_period n 1 2 @ #p 1 0 15127729 -missis n 1 1 @ 1 0 10323529 -mississippi n 2 5 @ #m #p %p - 2 2 09356080 09103943 -mississippi_river n 1 2 @ #p 1 1 09356080 -mississippian n 2 2 @ #p 2 0 15127729 09743891 -missive n 1 4 @ ~ #p %p 1 1 06624161 -missoula n 1 2 @ #p 1 0 09109333 -missouri n 4 4 @ #m #p %p 4 2 09105821 09356320 09660958 06909079 -missouri_compromise n 1 1 @ 1 0 07179609 -missouri_goldenrod n 1 1 @ 1 0 12016777 -missouri_gourd n 1 3 @ #m %p 1 0 12162425 -missouri_primrose n 1 1 @ 1 0 12344837 -missouri_river n 1 2 @ #p 1 0 09356320 -missourian n 1 1 @ 1 0 09743986 -misspelling n 1 2 @ + 1 0 06353653 -misstatement n 1 3 @ ~ + 1 0 06768735 -misstep n 1 1 @ 1 0 00076563 -missus n 1 1 @ 1 0 10323529 -missy n 1 2 @ ~ 1 0 10129825 -mist n 1 2 @ + 1 1 11482706 -mist-flower n 1 2 @ #m 1 0 11955896 -mistake n 3 3 @ ~ + 3 3 00070965 05895723 06769392 -mistaking n 1 3 @ ~ + 1 1 07174433 -mister n 1 1 @ 1 0 06341340 -mistflower n 1 2 @ #m 1 0 11955896 -mistiming n 1 2 @ + 1 0 15180304 -mistiness n 1 2 @ + 1 0 04704116 -mistle_thrush n 1 2 @ #m 1 0 01557962 -mistletoe n 3 3 @ ~ #m 3 0 12739801 12739332 12737898 -mistletoe_cactus n 1 2 @ #m 1 0 11853079 -mistletoe_family n 2 3 @ #m %m 2 0 12738859 12737383 -mistletoe_fig n 1 1 @ 1 0 12403075 -mistletoe_rubber_plant n 1 1 @ 1 0 12403075 -mistletoe_thrush n 1 2 @ #m 1 0 01557962 -mistral n 1 1 @ 1 0 11482873 -mistranslation n 1 2 @ + 1 0 06347122 -mistreatment n 1 3 @ ~ + 1 0 00418025 -mistress n 3 2 @ ~ 3 1 10323752 10559840 10323634 -mistrial n 1 2 @ ; 1 0 01199252 -mistrust n 2 3 @ ~ + 2 0 05698791 04895773 -misunderstanding n 2 3 @ ~ + 2 1 07174433 05895723 -misuse n 1 3 @ ~ + 1 1 00947719 -mit n 1 2 @ #p 1 0 03725968 -mitchell n 6 1 @ 6 0 11182825 11182621 11182479 11182275 11182098 11181937 -mitchella n 1 3 @ #m %m 1 0 12668364 -mitchella_repens n 1 2 @ #m 1 0 12668517 -mitchum n 1 1 @ 1 0 11182966 -mite n 2 3 @ ~ #m 2 1 13774115 01779629 -mite_box n 1 1 @ 1 1 03982767 -mitella n 1 3 @ #m %m 1 0 12800327 -mitella_diphylla n 1 2 @ #m 1 0 12800832 -mitella_pentandra n 1 2 @ #m 1 0 12801072 -miter n 3 2 @ + 3 0 03774461 03774124 03773970 -miter_box n 1 1 @ 1 0 03774327 -miter_joint n 1 1 @ 1 0 03774461 -miter_mushroom n 1 2 @ #m 1 0 13035925 -miterwort n 1 3 @ ~ #m 1 0 12800586 -mitford n 2 1 @ 2 0 11183211 11183074 -mithan n 1 2 @ #m 1 0 02410141 -mithra n 1 1 @ 1 0 09531826 -mithracin n 1 2 @ ; 1 0 03774673 -mithraicism n 1 1 @ 1 0 06243963 -mithraism n 1 2 @ + 1 0 06243963 -mithraist n 1 2 @ + 1 0 09686051 -mithramycin n 1 1 @ 1 0 03774673 -mithras n 1 2 @ + 1 0 09531826 -mithridate_mustard n 1 2 @ #m 1 0 11898775 -mithridates n 1 1 @ 1 0 11183387 -mithridates_the_great n 1 1 @ 1 0 11183387 -mithridates_vi n 1 1 @ 1 0 11183387 -mitigating_circumstance n 1 2 @ ; 1 0 05823317 -mitigation n 3 3 @ ~ + 3 1 00354583 06741728 00353249 -mitochondrion n 1 2 @ ~ 1 0 05445389 -mitogen n 1 1 @ 1 0 14953357 -mitomycin n 1 1 @ 1 0 03774842 -mitosis n 1 2 @ %p 1 0 13516597 -mitra n 1 1 @ 1 0 09527291 -mitral_stenosis n 1 1 @ 1 0 14111915 -mitral_valve n 1 1 @ 1 0 05393813 -mitral_valve_prolapse n 1 1 @ 1 0 14111715 -mitral_valve_stenosis n 1 1 @ 1 0 14111915 -mitre n 3 1 @ 3 0 03774461 03774124 03773970 -mitre_box n 1 1 @ 1 0 03774327 -mitre_joint n 1 1 @ 1 0 03774461 -mitrewort n 1 3 @ ~ #m 1 0 12800586 -mitrula_elegans n 1 1 @ 1 0 13029122 -mitsvah n 2 2 @ ; 2 0 06186166 00045114 -mitt n 2 4 @ ~ #p %p 2 0 05564590 02800213 -mittelschmerz n 1 1 @ 1 0 05724965 -mitten n 1 1 @ 1 0 03775071 -mitterrand n 1 1 @ 1 0 11183605 -mitzvah n 2 2 @ ; 2 0 06186166 00045114 -miwok n 2 1 @ 2 0 09661397 06924790 -mix n 3 3 @ ~ + 3 0 07882886 07374756 00380083 -mix-up n 1 1 @ 1 0 00072473 -mixed-blood n 1 2 @ ~ 1 0 10323999 -mixed_bag n 1 2 @ ~ 1 0 08398773 -mixed_bud n 1 1 @ 1 0 13165552 -mixed_drink n 1 3 @ ~ %p 1 0 07911371 -mixed_economy n 1 1 @ 1 0 08365222 -mixed_farming n 1 1 @ 1 0 00919396 -mixed_marriage n 1 1 @ 1 0 07990158 -mixed_metaphor n 1 1 @ 1 0 07107381 -mixed_nuisance n 1 1 @ 1 0 05831270 -mixer n 4 4 @ ~ #p + 4 0 08256369 07913180 03775388 03775199 -mixing n 1 2 @ + 1 1 00380083 -mixing_bowl n 1 1 @ 1 0 03775546 -mixing_faucet n 1 1 @ 1 0 03775636 -mixologist n 1 3 @ ~ + 1 0 09841188 -mixology n 1 2 @ + 1 0 05638778 -mixture n 5 4 @ ~ + ; 5 4 14586258 07882497 08398773 07374756 00380083 -mizen n 2 1 @ 2 0 03775847 03775747 -mizenmast n 1 1 @ 1 0 03775847 -mizzen n 2 1 @ 2 0 03775847 03775747 -mizzen_course n 1 1 @ 1 0 03137473 -mizzenmast n 1 1 @ 1 0 03775847 -mizzle n 1 2 @ + 1 0 11502322 -mko n 1 2 @ ; 1 0 08034778 -ml n 1 3 @ #p %p 1 1 13623636 -mlitt n 1 1 @ 1 0 06701800 -mls n 1 1 @ 1 0 06701906 -mm n 1 3 @ #p %p 1 1 13658657 -mm_hg n 1 1 @ 1 0 13711416 -mmpi n 1 1 @ 1 0 06475589 -mn n 2 4 @ #s #p %p 2 0 14644654 09102016 -mnemonic n 1 1 @ 1 0 00171507 -mnemonics n 1 2 @ + 1 0 05661551 -mnemonist n 1 2 @ + 1 0 10324201 -mnemosyne n 1 2 @ ; 1 0 09577155 -mniaceae n 1 3 @ #m %m 1 0 11541322 -mnium n 1 2 @ #m 1 0 11541579 -mo n 3 7 @ ~ #m #s #p %p ; 3 0 15246853 14645661 09105821 -moa n 1 3 @ ~ #m 1 0 01523105 -moan n 1 2 @ + 1 1 07126383 -moaner n 1 3 @ ~ + 1 0 10776339 -moat n 1 1 @ 1 0 03776050 -mob n 3 5 @ ~ #m %m + 3 2 08184600 08246302 08244062 -moban n 1 2 @ ; 1 0 03780896 -mobcap n 1 1 @ 1 1 03776167 -mobile n 3 3 ! @ #p 3 0 09356639 09054480 03776291 -mobile_bay n 1 2 @ #p 1 0 09356781 -mobile_canteen n 1 1 @ 1 0 02952674 -mobile_home n 1 1 @ 1 0 03776460 -mobile_phone n 1 1 @ 1 0 02992529 -mobile_river n 1 2 @ #p 1 0 09356639 -mobilisation n 2 3 @ ~ + 2 0 01230283 01156438 -mobility n 1 4 ! @ ~ + 1 1 04773351 -mobilization n 2 4 ! @ ~ + 2 1 01156438 01230283 -mobius n 1 1 @ 1 0 11183791 -mobius_strip n 1 1 @ 1 0 03776673 -mobocracy n 1 1 @ 1 0 08362302 -mobster n 1 4 @ ~ #m + 1 0 10120085 -mobula n 1 3 @ #m %m 1 0 01500721 -mobula_hypostoma n 1 2 @ #m 1 0 01500854 -mobulidae n 1 3 @ #m %m 1 0 01499898 -mobuto_lake n 1 1 @ 1 0 09330061 -mocambique n 1 4 @ #p %m %p 1 0 08971025 -mocassin n 1 1 @ 1 0 03776877 -moccasin n 1 1 @ 1 0 03776877 -moccasin_flower n 1 1 @ 1 0 12056601 -mocha n 4 1 @ 4 0 14762969 07920989 07920872 04972950 -mocha_coffee n 1 1 @ 1 0 07920872 -mock n 1 2 @ + 1 0 01224700 -mock-heroic n 1 1 @ 1 0 06386345 -mock-up n 1 1 @ 1 0 03776997 -mock_azalia n 1 2 @ #m 1 0 11769176 -mock_orange n 4 2 @ #m 4 0 12791329 12772908 12643113 12399899 -mock_privet n 1 2 @ #m 1 0 12310021 -mock_sun n 1 1 @ 1 0 11487732 -mock_turtle_soup n 1 1 @ 1 0 07586179 -mocker n 2 3 @ #m + 2 1 10561320 01586941 -mockernut n 1 2 @ #m 1 0 12322099 -mockernut_hickory n 1 2 @ #m 1 0 12322099 -mockery n 3 2 @ + 3 1 06716234 06780309 00549610 -mocking_thrush n 1 3 @ ~ #m 1 0 01587834 -mockingbird n 1 2 @ #m 1 0 01586941 -mod n 1 3 @ #m ; 1 0 10324357 -mod_con n 1 2 @ ; 1 0 03777126 -modal n 1 1 @ 1 0 06318722 -modal_auxiliary n 1 1 @ 1 0 06318722 -modal_auxiliary_verb n 1 1 @ 1 0 06318722 -modal_logic n 2 2 @ ~ 2 0 06166644 06165823 -modal_value n 1 2 @ ; 1 0 06023675 -modal_verb n 1 1 @ 1 0 06318722 -modality n 4 4 @ ~ #p + 4 0 13802634 13801424 05652396 00661847 -mode n 6 4 @ ~ + ; 6 1 04928903 13923929 13802634 13801424 06861630 06023675 -model n 9 3 @ ~ + 9 7 05890249 05845652 10324560 03777283 05925366 10324851 05937112 10291240 00898804 -model_t n 1 2 @ ; 1 0 03777568 -modeler n 1 3 @ ~ + 1 0 10325774 -modeling n 3 3 @ ~ + 3 0 03779621 00937895 00898804 -modeller n 1 3 @ ~ + 1 0 10325774 -modelling n 2 3 @ ~ + 2 0 00937895 00898804 -modem n 1 2 @ ~ 1 0 03777754 -moderate n 1 2 @ #m 1 1 09904837 -moderate_breeze n 1 2 @ #p 1 0 11432758 -moderate_gale n 1 2 @ #p 1 0 11462013 -moderateness n 2 4 @ ~ = + 2 0 05146904 05117660 -moderation n 4 5 ! @ ~ = + 4 1 05117660 07357101 04883614 00353249 -moderationism n 1 1 @ 1 0 05987283 -moderationist n 2 3 @ #m + 2 0 10325957 09904837 -moderatism n 1 1 @ 1 0 06214379 -moderator n 4 4 @ ~ #p + 4 0 14727355 10326392 10326257 10326087 -moderatorship n 1 2 @ + 1 0 00595545 -modern n 2 3 ! @ + 2 1 10326551 06826726 -modern_ballet n 1 1 @ 1 0 00529784 -modern_dance n 1 2 @ ~ 1 0 00530018 -modern_english n 1 1 @ 1 0 06949506 -modern_era n 1 2 @ ~ 1 0 15254831 -modern_font n 1 1 @ 1 0 06826726 -modern_greek n 1 2 @ ~ 1 1 06976680 -modern_hebrew n 1 1 @ 1 0 06987409 -modern_jazz n 1 1 @ 1 0 07063921 -modern_man n 1 2 @ #m 1 1 02475669 -modern_times n 1 1 @ 1 1 15120528 -modern_world n 1 1 @ 1 1 15120528 -modernisation n 1 2 @ + 1 0 00264913 -modernism n 3 3 @ = + 3 1 03777961 05050668 00412449 -modernist n 1 2 @ + 1 0 10326643 -modernity n 1 3 @ = + 1 1 05050668 -modernization n 2 2 @ + 2 1 00264913 06408990 -modernness n 1 3 @ = + 1 0 05050668 -modest_moussorgsky n 1 1 @ 1 0 11198375 -modest_mussorgsky n 1 1 @ 1 0 11198375 -modest_petrovich_moussorgsky n 1 1 @ 1 0 11198375 -modest_petrovich_mussorgsky n 1 1 @ 1 0 11198375 -modestness n 2 4 @ ~ = + 2 0 05146904 04900947 -modesty n 2 4 ! @ ~ = 2 2 04900947 04900121 -modicon n 1 2 @ %s 1 0 03778135 -modicum n 1 1 @ 1 0 13761801 -modification n 4 3 @ ~ + 4 2 00199707 03778302 13800801 07296428 -modified_american_plan n 1 1 @ 1 0 13415866 -modified_radical_mastectomy n 1 1 @ 1 0 00685675 -modifier n 4 4 @ ~ #p + 4 1 06320801 10326776 09609871 05439286 -modifier_gene n 1 1 @ 1 0 05439286 -modigliani n 1 1 @ 1 0 11183955 -modillion n 1 2 @ ; 1 0 03778459 -modiolus n 1 2 @ #p 1 0 05322735 -modishness n 1 3 @ ~ + 1 0 04813712 -modiste n 2 2 @ ~ 2 0 10162354 10033412 -mods n 1 2 @ %m 1 0 08371574 -modulation n 5 4 @ ~ + ; 5 2 07087641 06281295 07084166 07083958 00200379 -module n 4 5 @ ~ #p + ; 4 0 05650329 03779000 03778817 03778600 -modulus n 3 3 @ ~ ; 3 0 13735622 13730377 13587763 -modulus_of_elasticity n 1 3 @ ~ ; 1 0 13587963 -modulus_of_rigidity n 1 1 @ 1 0 13588381 -modus_operandi n 1 2 @ ~ 1 0 01026482 -modus_vivendi n 2 2 @ ~ 2 0 07179192 04930632 -moehringia n 1 3 @ #m %m 1 0 11812573 -moehringia_lateriflora n 1 2 @ #m 1 0 11812910 -moehringia_mucosa n 1 2 @ #m 1 0 11813077 -moeller's_glossitis n 1 1 @ 1 0 14347334 -mogadiscio n 1 2 @ #p 1 0 08998853 -mogadishu n 1 2 @ #p 1 0 08998853 -mogdad_coffee n 1 1 @ 1 0 12500751 -mogen_david n 1 1 @ 1 0 06882333 -moghul n 1 1 @ 1 0 10326883 -mogul n 3 2 @ ~ 3 0 13895549 10326883 09840217 -mogul_empire n 1 2 @ ; 1 0 08405873 -mohair n 1 1 @ 1 0 03779128 -mohammad n 1 1 @ 1 0 11184092 -mohammed n 1 1 @ 1 0 11184092 -mohammed_ali n 1 1 @ 1 0 11184273 -mohammed_reza_pahlavi n 1 1 @ 1 0 11220461 -mohammed_reza_pahlevi n 1 1 @ 1 0 11220461 -mohammedan n 1 2 @ + 1 0 10327002 -mohammedan_calendar n 1 2 @ %p 1 0 15178841 -mohammedanism n 1 3 @ ~ - 1 0 06234825 -mohandas_karamchand_gandhi n 1 1 @ 1 0 10989339 -moharram n 1 2 @ #p 1 0 15217308 -mohave n 3 3 @ #p %p 3 0 09661543 09170996 06923182 -mohave_desert n 1 3 @ #p %p 1 0 09170996 -mohawk n 3 1 @ 3 0 09661731 06916313 05260928 -mohawk_haircut n 1 1 @ 1 0 05260928 -mohawk_river n 1 2 @ #p 1 0 09356929 -mohican n 2 1 @ 2 0 09661873 06910958 -moho n 1 2 @ ; 1 0 09357080 -mohorovicic n 1 1 @ 1 0 11184531 -mohorovicic_discontinuity n 1 2 @ ; 1 0 09357080 -mohria n 1 3 @ #m %m 1 0 12956791 -mohria_caffrorum n 1 2 @ #m 1 0 12956922 -mohs_scale n 1 1 @ 1 0 13851677 -moiety n 2 2 @ #m 2 0 13737089 08372299 -moira_shearer n 1 1 @ 1 0 11296775 -moirae n 1 2 @ %m 1 0 09565099 -moirai n 1 2 @ %m 1 0 09565099 -moire n 1 2 @ + 1 1 03779246 -moistener n 1 2 @ + 1 0 03161016 -moistening n 1 3 @ ~ + 1 0 00278040 -moistness n 1 3 @ ~ + 1 0 14535905 -moisture n 1 2 @ + 1 1 14535431 -mojarra n 1 3 @ ~ #m 1 0 02636854 -mojave n 3 3 @ #p %p 3 0 09661543 09170996 06923182 -mojave_aster n 1 2 @ #m 1 0 11993675 -mojave_desert n 1 3 @ #p %p 1 0 09170996 -mojave_rattlesnake n 1 2 @ #m 1 0 01757115 -mojo n 1 1 @ 1 0 05968209 -moke n 1 1 @ 1 0 02389865 -moksa n 1 2 @ ; 1 0 07321657 -mokulu n 1 1 @ 1 0 06985722 -mol n 1 1 @ 1 0 13724081 -mola n 1 3 @ ~ #m 1 0 02656670 -mola_lanceolata n 1 1 @ 1 0 02656969 -molal_concentration n 1 1 @ 1 0 05039907 -molality n 1 2 @ + 1 0 05039907 -molar n 1 3 @ ~ + 1 0 05307773 -molar_concentration n 1 1 @ 1 0 05040081 -molar_pregnancy n 1 1 @ 1 0 14192942 -molarity n 1 2 @ + 1 0 05040081 -molasses n 1 1 @ 1 0 07859951 -molasses_cookie n 1 1 @ 1 0 07637178 -molasses_kiss n 1 1 @ 1 0 07606933 -molasses_taffy n 1 1 @ 1 0 07609549 -mold n 8 3 @ ~ + 8 2 13913566 03779370 14953564 13516176 13077033 07938594 04732709 03779621 -moldavia n 1 4 @ #m #p %p 1 0 09014586 -moldboard n 1 2 @ #p 1 0 03779884 -moldboard_plow n 1 3 @ ~ %p 1 0 03780047 -molded_salad n 1 1 @ 1 0 07808806 -moldiness n 1 2 @ + 1 0 04928194 -molding n 5 4 @ ~ #p + 5 1 00909899 03780392 03780247 03779621 00937895 -moldova n 1 5 @ #m #p %p + 1 0 09014586 -moldovan_monetary_unit n 1 2 @ ~ 1 0 13702102 -mole n 6 5 @ ~ #m + ; 6 0 13724081 09970192 07838551 04693804 02894605 01889520 -mole_cricket n 1 1 @ 1 0 02229765 -mole_plant n 2 2 @ #m 2 0 12920521 12918404 -mole_rat n 3 2 @ #m 3 0 02369293 02368821 02334201 -mole_salamander n 1 1 @ 1 0 01632308 -molech n 1 1 @ 1 0 09519454 -molecular_biologist n 1 2 @ ~ 1 0 10327143 -molecular_biology n 1 3 @ ~ - 1 0 06078088 -molecular_formula n 1 2 @ ~ 1 0 06817173 -molecular_genetics n 1 1 @ 1 0 06077916 -molecular_weight n 1 2 @ ; 1 1 05026312 -molecule n 2 5 @ ~ %p + ; 2 1 14682133 14585519 -molehill n 1 1 @ 1 0 09357346 -moleskin n 1 1 @ 1 0 03780799 -molestation n 2 3 @ ~ + 2 0 00773047 00419644 -molester n 1 2 @ ~ 1 0 10327333 -molidae n 1 3 @ #m %m 1 0 02656426 -moliere n 1 1 @ 1 0 11184694 -molindone n 1 1 @ 1 0 03780896 -moline n 1 2 @ #p 1 0 09083949 -molisch's_test n 1 1 @ 1 0 14609784 -molisch_reaction n 1 1 @ 1 0 14609784 -molisch_test n 1 1 @ 1 0 14609784 -molise n 1 2 @ #p 1 0 08809492 -moll n 1 1 @ 1 0 10327475 -mollah n 1 2 @ #m 1 0 10338231 -molle n 1 2 @ #m 1 0 12765115 -mollie n 1 2 @ #m 1 0 01449980 -mollienesia n 1 3 @ #m %m 1 0 01449857 -mollification n 2 2 @ + 2 0 13970764 01151097 -molluga n 1 3 @ #m %m 1 0 11821415 -molluga_verticillata n 1 2 @ #m 1 0 11821534 -mollusc n 1 4 @ ~ #m %p 1 0 01940736 -mollusca n 1 3 @ #m %m 1 0 01940488 -molluscum n 1 2 @ ~ 1 0 14230232 -molluscum_contagiosum n 1 1 @ 1 0 14230358 -mollusk n 1 4 @ ~ #m %p 1 0 01940736 -mollusk_family n 1 3 @ ~ #m 1 0 01938850 -mollusk_genus n 1 3 @ ~ #m 1 0 01939598 -molly n 1 2 @ #m 1 0 01449980 -molly_miller n 1 2 @ #m 1 0 02613820 -molly_pitcher n 1 1 @ 1 0 11168218 -mollycoddle n 1 2 @ + 1 0 10327583 -mollycoddler n 1 2 @ + 1 0 10395390 -mollymawk n 1 3 @ ~ #m 1 0 02058221 -molnar n 1 1 @ 1 0 11184825 -moloch n 3 3 @ ~ #m 3 0 10462005 09519454 01688961 -moloch_horridus n 1 2 @ #m 1 0 01689081 -molokai n 1 2 @ #p 1 0 09080273 -molokai_island n 1 2 @ #p 1 0 09080273 -molossidae n 1 3 @ #m %m 1 0 02149136 -molothrus n 1 3 @ #m %m 1 0 01574997 -molotov n 2 2 @ #p 2 0 11184927 09009372 -molotov_cocktail n 1 1 @ 1 0 03781055 -molt n 1 2 @ + 1 0 13516842 -molter n 1 2 @ + 1 0 01318660 -molting n 1 2 @ + 1 0 13516842 -molucca_balm n 1 2 @ #m 1 0 12857779 -moluccas n 1 2 @ #p 1 0 08909233 -molucella n 1 3 @ #m %m 1 0 12857594 -molucella_laevis n 1 2 @ #m 1 0 12857779 -molva n 1 3 @ #m %m 1 0 02525012 -molva_molva n 1 2 @ #m 1 0 02525120 -molybdenite n 1 2 @ %s 1 0 14682469 -molybdenum n 1 2 @ #s 1 0 14645661 -molybdenum_steel n 1 1 @ 1 0 14953674 -mom n 1 1 @ 1 0 10278128 -mombasa n 1 2 @ #p 1 0 08928933 -mombin n 2 4 @ #m #p %p 2 0 12766043 07765517 -mombin_tree n 1 3 @ #m %p 1 0 12766043 -moment n 6 4 @ ~ + ; 6 4 15244650 15246853 15120050 05170574 11482985 06022509 -moment_magnitude_scale n 1 2 @ ; 1 0 13852083 -moment_of_a_couple n 1 2 @ #p 1 0 11483179 -moment_of_a_magnet n 1 1 @ 1 0 11483829 -moment_of_inertia n 1 1 @ 1 0 11468973 -moment_of_truth n 2 2 @ #p 2 0 15245244 15245144 -momentousness n 1 2 @ + 1 0 05169412 -momentum n 2 2 @ ~ 2 2 05035820 05029137 -momism n 1 1 @ 1 0 00820721 -momma n 1 1 @ 1 0 10278128 -mommsen n 1 1 @ 1 0 11185044 -mommy n 1 1 @ 1 1 10278128 -momordica n 1 3 @ #m %m 1 0 12167282 -momordica_balsamina n 1 2 @ #m 1 0 12167436 -momordica_charantia n 1 2 @ #m 1 0 12167602 -momos n 1 1 @ 1 0 09565914 -momot n 1 2 @ #m 1 0 01830915 -momotidae n 1 3 @ #m %m 1 0 01830623 -momotus n 1 2 @ #m 1 0 01830799 -momus n 1 1 @ 1 0 09565914 -mon n 3 2 @ ~ 3 0 15163979 10327696 06937441 -mon-khmer n 1 2 @ ~ 1 1 06936948 -mona n 1 2 @ #p 1 0 08895928 -monacan n 1 2 @ #m 1 0 10327987 -monaco n 1 5 @ #p %m %p + 1 0 08967868 -monaco-ville n 1 2 @ #p 1 0 08968125 -monad n 3 2 @ ; 3 0 14621080 13742840 01326751 -monadic_operation n 1 1 @ 1 0 13517080 -monal n 1 2 @ #m 1 0 01805321 -monandry n 1 2 @ + 1 0 13965888 -monarch n 2 4 @ ~ #m + 2 1 10628644 02279972 -monarch_butterfly n 1 2 @ #m 1 0 02279972 -monarchism n 1 1 @ 1 0 06219300 -monarchist n 1 2 @ ~ 1 0 10327824 -monarchy n 1 3 @ ~ + 1 0 08363812 -monarda n 1 3 @ ~ #m 1 0 12858150 -monarda_citriodora n 1 1 @ 1 0 12858987 -monarda_clinopodia n 1 1 @ 1 0 12859272 -monarda_didyma n 1 1 @ 1 0 12858397 -monarda_fistulosa n 1 1 @ 1 0 12858871 -monarda_pectinata n 1 1 @ 1 0 12859153 -monarda_punctata n 1 1 @ 1 0 12858618 -monardella n 1 3 @ #m %m 1 0 12859488 -monardella_lanceolata n 1 2 @ #m 1 0 12859679 -monario n 1 1 @ 1 0 06897129 -monas n 1 1 @ 1 0 13742840 -monastery n 1 3 @ ~ %p 1 1 03781244 -monastic n 1 3 @ ~ + 1 0 10112129 -monastic_habit n 1 2 @ %p 1 0 03781467 -monastic_order n 1 2 @ ~ 1 0 08147794 -monasticism n 1 2 @ ~ 1 0 04882214 -monaul n 1 2 @ #m 1 0 01805321 -monazite n 1 2 @ %s 1 0 14682642 -monday n 1 2 @ ~ 1 1 15163979 -mondrian n 1 1 @ 1 0 11185175 -monegasque n 1 3 @ #m + 1 0 10327987 -monel_metal n 1 1 @ 1 0 14719291 -monell_metal n 1 1 @ 1 0 14719291 -monera n 1 2 @ %m 1 0 01341876 -moneran n 1 3 @ ~ #m 1 0 01342269 -moneron n 1 3 @ ~ #m 1 0 01342269 -moneses n 1 3 @ #m %m 1 0 12257920 -moneses_uniflora n 1 2 @ #m 1 0 12258101 -monet n 1 1 @ 1 0 11185392 -monetarism n 1 2 @ + 1 0 05995898 -monetarist n 1 3 @ ~ + 1 0 10328123 -monetary_fund n 1 2 @ ~ 1 0 13358549 -monetary_resource n 1 2 @ ~ 1 0 13356112 -monetary_standard n 1 2 @ ~ 1 0 13373214 -monetary_system n 1 2 @ ~ 1 0 13372961 -monetary_unit n 1 2 @ ~ 1 0 13604718 -monetary_value n 1 2 @ ~ 1 0 05145118 -monetisation n 1 2 @ + 1 0 00154689 -monetization n 1 3 ! @ + 1 0 00154689 -money n 3 4 @ ~ #p + 3 2 13384557 13250542 13384877 -money-spinner n 1 1 @ 1 0 05910577 -money_belt n 1 1 @ 1 0 03781683 -money_box n 2 2 @ ~ 2 0 04139859 02976939 -money_changer n 1 1 @ 1 0 10069120 -money_cowrie n 1 1 @ 1 0 01953594 -money_dealer n 1 2 @ ~ 1 0 09624980 -money_handler n 1 2 @ ~ 1 0 09624980 -money_laundering n 1 1 @ 1 0 01051221 -money_market n 1 1 @ 1 0 08073601 -money_order n 1 1 @ 1 1 13380820 -money_plant n 1 2 @ #m 1 0 11891541 -money_supply n 1 3 @ ~ %p 1 0 13357178 -moneybag n 1 1 @ 1 0 03781594 -moneyer n 1 2 @ + 1 0 09934921 -moneygrubber n 1 1 @ 1 0 10328328 -moneylender n 1 1 @ 1 0 10742384 -moneymaker n 2 2 @ ~ 2 1 10328437 05910577 -moneymaking n 1 2 @ + 1 1 00078393 -moneyman n 1 2 @ ~ 1 0 10090020 -moneywort n 1 1 @ 1 0 12095647 -monger n 1 3 @ ~ + 1 0 10720453 -mongo n 1 2 @ #p 1 0 13708748 -mongol n 1 3 @ ~ + 1 0 09644152 -mongol_dynasty n 1 1 @ 1 0 08160146 -mongol_tatar n 1 1 @ 1 0 09644657 -mongolia n 2 4 @ #p %p + 2 0 08968879 08968677 -mongolian n 2 3 @ ~ + 2 0 09644152 06928839 -mongolian_monetary_unit n 1 2 @ ~ 1 0 13708500 -mongolian_people's_republic n 1 3 @ #p %p 1 0 08968879 -mongolian_race n 1 2 @ %m 1 0 09643421 -mongolianism n 1 1 @ 1 0 14159623 -mongolic n 1 2 @ ~ 1 0 06928839 -mongolic_language n 1 2 @ ~ 1 0 06928839 -mongolism n 1 1 @ 1 0 14159623 -mongoloid n 2 1 @ 2 0 10328696 10328560 -mongoloid_race n 1 2 @ %m 1 0 09643421 -mongoose n 1 3 @ ~ #m 1 0 02137549 -mongrel n 2 3 @ ~ + 2 0 02804772 02084861 -monic_polynomial n 1 1 @ 1 1 05862410 -monica_seles n 1 1 @ 1 0 11291451 -moniker n 1 1 @ 1 0 06337693 -monilia n 1 2 @ #m 1 0 13079073 -monilia_albicans n 1 3 @ #m #p 1 1 13079567 -monilia_disease n 1 3 @ ~ %p 1 0 14181713 -moniliaceae n 1 3 @ #m %m 1 0 13078133 -moniliales n 1 3 @ #m %m 1 0 13077479 -moniliasis n 1 3 @ ~ %p 1 0 14181713 -monism n 1 3 ! @ + 1 0 05964643 -monistat n 1 2 @ ; 1 0 03758720 -monition n 3 4 @ ~ + ; 3 0 06714420 06672297 06558434 -monitor n 7 6 @ ~ #m #p %p + 7 0 10478960 09771855 03782430 03782190 03782006 03781787 01694709 -monitor_lizard n 1 3 @ ~ #m 1 0 01694709 -monitor_program n 1 1 @ 1 0 06576539 -monitoring n 1 2 @ + 1 1 00880046 -monitoring_device n 1 4 @ ~ #p %p 1 0 03782190 -monitoring_program n 1 1 @ 1 0 06576539 -monitrice n 1 1 @ 1 0 10241024 -monk n 2 2 @ ~ 2 1 10112129 11185500 -monk's_cloth n 1 1 @ 1 0 03782929 -monkey n 2 3 @ ~ + 2 1 02484322 10200047 -monkey-bread_tree n 1 3 @ #m %p 1 0 12189987 -monkey-wrench n 1 1 @ 1 0 03782794 -monkey_bread n 1 2 @ #p 1 0 07770439 -monkey_bridge n 2 1 @ 2 0 03782558 03373752 -monkey_business n 1 1 @ 1 0 00736894 -monkey_dog n 1 1 @ 1 0 02110627 -monkey_jacket n 1 1 @ 1 0 03751269 -monkey_ladder n 1 1 @ 1 0 03782689 -monkey_nut n 1 2 @ #p 1 0 07737745 -monkey_pinscher n 1 1 @ 1 0 02110627 -monkey_pod n 1 1 @ 1 0 11759853 -monkey_puzzle n 1 1 @ 1 0 11646167 -monkey_wrench n 1 1 @ 1 0 03782794 -monkeypod n 1 1 @ 1 0 11759853 -monkfish n 3 4 @ #m #p %p 3 0 07779747 02548247 01495493 -monkshood n 1 1 @ 1 0 11723227 -monmouth_court_house n 1 3 @ #p ; 1 0 01288272 -monnet n 1 1 @ 1 0 11185680 -mono n 1 1 @ 1 0 14135277 -mono-iodotyrosine n 1 1 @ 1 1 14834807 -monoamine n 1 2 @ ~ 1 0 14953813 -monoamine_neurotransmitter n 1 2 @ ~ 1 0 14807737 -monoamine_oxidase n 1 1 @ 1 0 14953968 -monoamine_oxidase_inhibitor n 1 2 @ ~ 1 0 03783017 -monobasic_acid n 1 1 @ 1 0 14611031 -monoblast n 1 1 @ 1 0 05453412 -monoblastic_leukaemia n 1 1 @ 1 0 14244726 -monoblastic_leukemia n 1 1 @ 1 0 14244726 -monocanthidae n 1 3 @ #m %m 1 0 02653655 -monocanthus n 1 3 @ #m %m 1 0 02653965 -monocarp n 1 1 @ 1 0 11686780 -monocarpic_plant n 1 1 @ 1 0 11686780 -monocarpous_plant n 1 1 @ 1 0 11686780 -monochamus n 1 3 @ #m %m 1 0 02168876 -monochromacy n 1 1 @ 1 0 14155274 -monochromasy n 1 1 @ 1 0 14155274 -monochromat n 1 1 @ 1 0 09625213 -monochromatic_vision n 1 1 @ 1 0 14155274 -monochromatism n 1 2 @ + 1 0 14155274 -monochrome n 2 2 @ + 2 1 03783304 02846399 -monochromia n 1 1 @ 1 0 14155274 -monocle n 1 1 @ 1 1 03783430 -monocline n 1 1 @ 1 0 09357447 -monoclonal n 1 2 @ ~ 1 0 15029781 -monoclonal_antibody n 1 2 @ ~ 1 0 15029781 -monocot n 1 2 @ #m 1 0 11668117 -monocot_family n 1 3 @ ~ #m 1 0 11555413 -monocot_genus n 1 3 @ ~ #m 1 0 11556857 -monocotyledon n 1 3 @ #m + 1 0 11668117 -monocotyledonae n 1 3 @ #m %m 1 0 11667562 -monocotyledones n 1 3 @ #m %m 1 0 11667562 -monocracy n 1 2 @ ~ 1 0 08440630 -monocular_vision n 1 1 @ 1 0 05656803 -monoculture n 1 1 @ 1 0 00918055 -monocycle n 1 1 @ 1 0 04509417 -monocyte n 1 2 @ ~ 1 0 05453267 -monocytic_leukaemia n 1 1 @ 1 0 14244726 -monocytic_leukemia n 1 1 @ 1 0 14244726 -monocytosis n 1 1 @ 1 0 14268084 -monod n 1 1 @ 1 0 11185816 -monodon n 1 3 @ #m %m 1 0 02072355 -monodon_monoceros n 1 2 @ #m 1 0 02072493 -monodontidae n 1 3 @ #m %m 1 0 02072209 -monody n 1 2 @ + 1 0 07024705 -monofocal_iol n 1 1 @ 1 0 03783575 -monofocal_lens_implant n 1 1 @ 1 0 03783575 -monogamist n 1 2 @ + 1 0 10328782 -monogamousness n 1 3 @ ~ + 1 0 13966007 -monogamy n 1 3 @ ~ + 1 0 13966007 -monogenesis n 1 2 @ ~ 1 0 13517199 -monogenic_disease n 1 2 @ ~ 1 0 14074877 -monogenic_disorder n 1 2 @ ~ 1 0 14074877 -monogram n 1 1 @ 1 0 06824041 -monograph n 1 1 @ 1 1 06409448 -monogynist n 1 2 @ + 1 0 10328782 -monogyny n 1 2 @ + 1 0 13966201 -monohybrid n 1 1 @ 1 0 01327909 -monohybrid_cross n 1 1 @ 1 0 00850986 -monohydrate n 1 1 @ 1 0 14954152 -monolatry n 1 1 @ 1 0 01046664 -monolingual n 1 1 @ 1 0 10328941 -monolith n 1 1 @ 1 0 03783755 -monologist n 1 2 @ + 1 1 10329035 -monologue n 3 2 @ + 3 1 07160752 07156819 07011387 -monomania n 1 2 @ + 1 0 09182524 -monomaniac n 1 2 @ + 1 0 10329143 -monomer n 1 1 @ 1 1 14682963 -monomorium n 1 3 @ #m %m 1 0 02219901 -monomorium_minimum n 1 2 @ #m 1 0 02220225 -monomorium_pharaonis n 1 2 @ #m 1 0 02220055 -mononeuropathy n 1 1 @ 1 0 14208988 -monongahela n 1 2 @ #p 1 0 09357580 -monongahela_river n 1 2 @ #p 1 0 09357580 -mononuclear_phagocyte_system n 1 2 @ #p 1 0 05461610 -mononucleosis n 1 1 @ 1 0 14135277 -mononychus_olecranus n 1 2 @ #m 1 0 01718808 -monophonic_music n 1 2 ! @ 1 0 07024705 -monophony n 1 3 ! @ + 1 0 07024705 -monophthalmos n 1 1 @ 1 0 10819533 -monophysite n 1 1 @ 1 0 10329251 -monophysitism n 1 2 @ + 1 0 06189776 -monoplane n 1 1 @ 1 0 03783873 -monoplane_flying_fish n 1 1 @ 1 0 02550655 -monoplegia n 1 1 @ 1 0 14350023 -monopolisation n 1 2 @ + 1 0 01128806 -monopoliser n 1 2 @ + 1 0 10329337 -monopolist n 1 2 @ + 1 0 10329337 -monopolization n 1 2 @ + 1 1 01128806 -monopolizer n 1 2 @ + 1 0 10329337 -monopoly n 3 4 @ ~ + ; 3 2 14444326 14444114 00505238 -monopoly_board n 1 1 @ 1 0 03783959 -monopsony n 1 2 @ ; 1 0 14444644 -monorail n 1 1 @ 1 0 03784053 -monorchidism n 1 1 @ 1 0 14092456 -monorchism n 1 1 @ 1 0 14092456 -monosaccharide n 1 2 @ ~ 1 0 14954284 -monosaccharose n 1 2 @ ~ 1 0 14954284 -monosemy n 1 3 ! @ + 1 0 04820908 -monosodium_glutamate n 1 1 @ 1 0 07828378 -monosomy n 1 1 @ 1 0 14504405 -monospaced_font n 1 1 @ 1 0 06825996 -monostotic_fibrous_dysplasia n 1 1 @ 1 0 14366633 -monosyllabic_word n 1 1 @ 1 0 06294309 -monosyllable n 1 2 @ + 1 1 06294309 -monotheism n 1 4 ! @ ~ + 1 0 06224136 -monotheist n 1 2 @ + 1 0 10329579 -monothelitism n 1 1 @ 1 0 06190060 -monotone n 2 2 @ + 2 1 07084560 07084747 -monotony n 2 1 @ 2 1 04740326 04739535 -monotremata n 1 3 @ #m %m 1 0 01871699 -monotreme n 1 2 @ ~ 1 0 01871875 -monotropa n 1 3 @ #m %m 1 0 12258663 -monotropa_hypopithys n 1 2 @ #m 1 0 12259316 -monotropa_uniflora n 1 2 @ #m 1 0 12258885 -monotropaceae n 1 3 @ #m %m 1 0 12258380 -monotype n 2 3 @ + ; 2 0 08109772 03784139 -monounsaturated_fatty_acid n 1 2 @ ~ 1 0 14741474 -monoxide n 1 2 @ ~ 1 0 14954601 -monozygotic_twin n 1 2 @ ~ 1 0 10197182 -monozygous_twin n 1 2 @ ~ 1 0 10197182 -monro's_foramen n 1 1 @ 1 0 05545611 -monroe n 4 2 @ #p 4 0 11186207 11186042 09101639 09091668 -monroe_doctrine n 1 1 @ 1 1 06662366 -monrovia n 1 2 @ #p 1 0 08959495 -mons n 1 2 @ #p 1 0 05522283 -mons_pubis n 1 2 @ #p 1 0 05522283 -mons_veneris n 1 2 @ #p 1 0 05522283 -monsieur n 1 1 @ 1 1 10329675 -monsignor n 1 2 @ ; 1 0 10329789 -monsoon n 3 1 @ 3 1 11484570 15239033 11484741 -monster n 5 5 @ ~ %p + ; 5 3 09491966 10128909 10109443 10329945 01460108 -monstera n 2 4 @ ~ #m #p 2 0 11789438 07746749 -monstera_deliciosa n 1 2 @ %p 1 0 11789589 -monstrance n 2 2 @ ; 2 0 06648046 03784270 -monstrosity n 2 3 @ ~ + 2 2 10109443 07367231 -mont_blanc n 1 2 @ #p 1 0 09357847 -montage n 1 2 @ ~ 1 0 03067912 -montagu n 1 1 @ 1 0 11186356 -montagu's_harrier n 1 2 @ #m 1 0 01610100 -montaigne n 1 1 @ 1 0 11186511 -montan_wax n 1 1 @ 1 0 14954733 -montana n 1 4 @ #p %p - 1 0 09108164 -montanan n 1 1 @ 1 0 09744075 -monte n 1 1 @ 1 0 00493031 -monte_bianco n 1 2 @ #p 1 0 09357847 -monte_carlo n 1 2 @ #p 1 0 08968225 -montego_bay n 1 2 @ #p 1 0 08754388 -montenegro n 1 2 @ #p 1 0 08817235 -monterey n 1 2 @ #p 1 0 09064080 -monterey_bay n 1 2 @ #p 1 0 09358096 -monterey_cypress n 1 1 @ 1 0 11632167 -monterey_pine n 1 1 @ 1 0 11617090 -monterrey n 1 2 @ #p 1 0 08744509 -montespan n 1 1 @ 1 0 11186685 -montesquieu n 1 1 @ 1 0 11186911 -montessori n 1 1 @ 1 0 11187154 -monteverdi n 1 1 @ 1 0 11187364 -montevideo n 1 2 @ #p 1 0 09160571 -montez n 1 1 @ 1 0 11187471 -montezuma n 1 2 @ #m 1 0 12191240 -montezuma's_revenge n 1 1 @ 1 0 14372399 -montezuma_cypress n 1 3 @ ~ #m 1 0 11642430 -montezuma_ii n 1 1 @ 1 0 11187601 -montfort n 1 1 @ 1 0 11187754 -montgolfier n 2 1 @ 2 0 11188123 11187930 -montgomery n 3 2 @ #p 3 0 11188613 11188316 09053801 -montgomery's_tubercle n 1 1 @ 1 0 05328695 -montgomery_ward n 1 1 @ 1 0 11373897 -month n 2 5 @ ~ #p %p + 2 2 15209413 15206296 -month_of_sundays n 1 2 @ ; 1 0 15243202 -monthly n 1 1 @ 1 0 06594505 -montia n 1 3 @ #m %m 1 0 11860801 -montia_chamissoi n 1 1 @ 1 0 11861641 -montia_cordifolia n 1 1 @ 1 0 11861238 -montia_lamprosperma n 1 1 @ 1 0 11861487 -montia_perfoliata n 1 1 @ 1 0 11861853 -montmartre n 1 2 @ #p 1 0 08933287 -montpelier n 1 2 @ #p 1 0 09148259 -montrachet n 1 1 @ 1 0 07894703 -montreal n 1 2 @ #p 1 1 08829533 -montserrat n 1 4 @ #p %m + 1 0 08711300 -montserratian n 1 3 @ #m + 1 0 09723228 -monument n 3 3 @ ~ + 3 1 03743902 08600443 04076713 -moo n 1 2 @ + 1 0 07386821 -moo-cow n 1 3 @ ~ %p 1 0 02403454 -moo_goo_gai_pan n 1 1 @ 1 0 07861983 -mooch n 1 2 @ ~ 1 0 10330189 -moocher n 1 3 @ ~ + 1 0 10330189 -mood n 3 3 @ ~ + 3 2 07551052 14524661 13801424 -moodiness n 2 3 @ ~ + 2 0 07552252 04628632 -moody n 2 1 @ 2 0 11188852 11188742 -moolah n 1 1 @ 1 0 13385216 -moon n 6 5 @ ~ #p %p + 6 2 09358358 09358550 15207872 11484975 11189054 09358226 -moon-curser n 1 2 @ ~ 1 0 10615334 -moon-ray n 1 2 @ #p 1 0 11484861 -moon-worship n 1 1 @ 1 0 01046888 -moon_blindness n 2 1 @ 2 0 14554853 14274451 -moon_carrot n 1 2 @ #m 1 0 12944390 -moon_curser n 1 2 @ ~ 1 0 10615334 -moon_daisy n 1 2 @ #m 1 0 11989869 -moon_ray n 1 2 @ #p 1 0 11484861 -moon_shell n 1 2 @ #m 1 0 01947997 -moon_shot n 1 1 @ 1 0 00103737 -moon_trefoil n 1 1 @ 1 0 12548564 -moonbeam n 1 2 @ #p 1 0 11484861 -mooneye n 1 1 @ 1 0 14274451 -moonfish n 2 3 @ ~ #m 2 0 02578233 02545841 -moonflower n 1 1 @ 1 0 12827537 -moonie n 1 3 @ #m ; 1 0 10330439 -moonlight n 1 2 @ %p 1 1 11484975 -moonlighter n 1 2 @ + 1 0 10330593 -moonseed n 1 3 @ ~ #m 1 0 11713164 -moonseed_family n 1 3 @ #m %m 1 0 11712827 -moonshell n 1 2 @ #m 1 0 01947997 -moonshine n 2 3 @ %p + 2 0 11484975 07902520 -moonshiner n 1 2 @ + 1 0 09866922 -moonstone n 1 1 @ 1 0 14954822 -moonwalk n 2 1 @ 2 0 00293125 00292269 -moonwort n 1 1 @ 1 0 12961112 -moor n 2 2 @ ~ 2 0 09723361 09358751 -moor-bird n 1 2 @ ~ 1 0 01796519 -moor_berry n 1 1 @ 1 0 12248780 -moorage n 3 2 @ + 3 0 13322867 08640111 00052146 -moorbird n 1 2 @ ~ 1 0 01796519 -moorcock n 1 1 @ 1 0 01796800 -moore n 6 1 @ 6 0 11190024 11189829 11189709 11189579 11189432 11189274 -moorfowl n 1 2 @ ~ 1 0 01796519 -moorgame n 1 2 @ ~ 1 0 01796519 -moorhen n 2 2 @ #m 2 0 02016816 01796729 -mooring n 2 4 @ ~ + ; 2 0 08640111 03784475 -mooring_anchor n 1 1 @ 1 0 03784666 -mooring_line n 1 3 @ ~ ; 1 0 03784475 -mooring_mast n 1 1 @ 1 0 03784793 -mooring_tower n 1 1 @ 1 0 03784793 -moorish n 1 2 @ + 1 0 05843687 -moorish_arch n 1 1 @ 1 0 03784896 -moorish_architecture n 1 1 @ 1 0 05843687 -moorland n 1 2 @ ~ 1 0 09358751 -moorwort n 1 1 @ 1 0 12229651 -moose n 1 2 @ #m 1 0 02432983 -moose-wood n 2 2 @ #m 2 0 12753762 12347639 -moosewood n 2 2 @ #m 2 0 12753762 12347639 -moot n 1 2 @ ; 1 0 01183638 -moot_court n 1 2 @ ; 1 0 08334319 -mop n 1 4 @ ~ %p + 1 0 04367480 -mop_handle n 1 2 @ #p 1 0 03785142 -mop_up n 1 3 @ ~ + 1 0 00211110 -mopboard n 1 1 @ 1 0 02800354 -mope n 1 2 @ + 1 0 09988703 -moped n 1 1 @ 1 0 03785016 -mopes n 1 2 @ ; 1 0 14405061 -mopper n 1 2 @ + 1 0 10330722 -moppet n 1 1 @ 1 0 10330835 -mopping n 1 2 @ + 1 0 00252020 -moquelumnan n 1 1 @ 1 0 06924790 -moquette n 1 1 @ 1 0 03785237 -moraceae n 1 4 @ #m %m + 1 0 12398682 -moraine n 1 2 @ #p 1 0 09358907 -moral n 1 1 @ 1 1 06606044 -moral_certainty n 1 1 @ 1 0 04755783 -moral_excellence n 1 1 @ 1 0 04847298 -moral_force n 1 1 @ 1 0 09179962 -moral_hazard n 1 2 @ ; 1 0 14542579 -moral_obligation n 1 1 @ 1 0 01130560 -moral_philosophy n 1 3 @ ~ - 1 0 06159473 -moral_principle n 2 2 @ ~ 2 1 05956019 06655683 -moral_sense n 1 2 @ ~ 1 0 09184136 -morale n 2 1 @ 2 2 14374273 04625129 -morale_booster n 1 1 @ 1 0 01211489 -morale_builder n 1 1 @ 1 1 05693537 -morale_building n 1 1 @ 1 0 01211489 -moralisation n 2 3 @ ~ + 2 0 06742932 00265773 -moralism n 2 2 @ + 2 0 07153641 00876062 -moralist n 2 3 @ ~ + 2 1 10330931 10296444 -morality n 2 5 ! @ ~ = + 2 2 04846770 09183693 -morality_play n 1 1 @ 1 0 07018444 -moralization n 2 3 @ ~ + 2 0 06742932 00265773 -moralizing n 1 3 @ ~ + 1 0 06742932 -morals n 1 2 @ ~ 1 1 09183693 -moranzanist_patriotic_front n 1 2 @ ; 1 0 08034028 -morass n 1 1 @ 1 0 09355850 -moratorium n 2 1 @ 2 0 15275466 14013751 -moravia n 1 2 @ #p 1 0 08758679 -moray n 1 2 @ #m 1 0 02527271 -moray_eel n 1 2 @ #m 1 0 02527271 -moray_firth n 1 1 @ 1 0 09359031 -morbidity n 3 3 @ ~ + 3 0 13827103 05699906 04790449 -morbidness n 2 3 @ ~ + 2 0 05699906 04790449 -morbilli n 1 2 @ ~ 1 0 14123044 -morceau n 1 1 @ 1 0 06269674 -morchella n 1 3 @ #m %m 1 0 13031956 -morchella_angusticeps n 1 2 @ #m 1 0 13033577 -morchella_conica n 1 2 @ #m 1 0 13033577 -morchella_crassipes n 1 2 @ #m 1 0 13033879 -morchella_esculenta n 1 2 @ #m 1 0 13032381 -morchella_semilibera n 1 2 @ #m 1 0 13034062 -morchellaceae n 1 3 @ #m %m 1 0 13031690 -mordacity n 1 2 @ + 1 0 04943367 -mordant n 1 3 @ ~ + 1 0 14955030 -mordecai_richler n 1 1 @ 1 0 11261698 -mordva n 2 2 @ #m 2 0 09707400 06957403 -mordvin n 2 2 @ #m 2 0 09707400 06957403 -mordvinian n 2 2 @ #m 2 0 09707400 06957403 -more n 1 1 @ 1 0 11190183 -moreau_river n 1 2 @ #p 1 0 09359150 -moreen n 1 1 @ 1 0 03785361 -morel n 1 3 @ ~ #m 1 0 13032115 -morelia_spilotes_variegatus n 1 1 @ 1 0 01743936 -morello n 2 4 @ #p %s %p 2 0 12643877 07758260 -mores n 1 2 @ ; 1 1 05667951 -moreton_bay n 1 2 @ #p 1 0 09359312 -moreton_bay_chestnut n 1 2 @ #m 1 0 12512674 -moreton_bay_pine n 1 1 @ 1 0 11646955 -moreton_bay_tulipwood n 1 1 @ 1 0 12744142 -morgan n 6 1 @ 6 0 11191113 11190954 11190774 11190592 11190446 02379329 -morgan_city n 1 2 @ #p 1 0 09091774 -morgan_le_fay n 1 1 @ 1 0 09541661 -morganite n 1 1 @ 1 0 14955776 -morgantown n 1 3 @ #p %p 1 0 09156666 -morgen n 1 1 @ 1 0 13614572 -morgue n 1 2 @ ~ 1 1 03785499 -morion n 1 1 @ 1 0 03785721 -morlett's_crocodile n 1 1 @ 1 0 01697749 -morley n 1 1 @ 1 0 11191251 -mormon n 2 3 @ ~ #m 2 0 11191475 10248542 -mormon_church n 1 2 @ %m 1 0 08089205 -mormon_cricket n 1 2 @ #m 1 0 02228697 -mormon_state n 1 3 @ #p %p 1 0 09147046 -mormon_tabernacle n 1 2 @ #p 1 0 04378842 -mormonism n 1 1 @ 1 0 06232166 -mormons n 1 2 @ %m 1 0 08089205 -morn n 1 3 @ #p %p 1 0 15165289 -mornay_sauce n 1 1 @ 1 0 07837630 -morning n 4 3 @ #p %p 4 2 15165289 06632671 15168790 07326108 -morning-after_pill n 1 1 @ 1 0 03785843 -morning-glory_family n 1 3 @ #m %m 1 0 12823164 -morning_coat n 1 2 @ #p 1 0 04368496 -morning_dress n 2 2 @ %p 2 0 03786194 03786096 -morning_glory n 1 3 @ ~ #m 1 1 12826516 -morning_prayer n 1 1 @ 1 0 15229677 -morning_room n 1 1 @ 1 0 03786313 -morning_sickness n 1 2 @ #p 1 0 14360156 -morning_star n 1 1 @ 1 0 09359471 -morning_time n 1 3 @ #p %p 1 0 15165289 -moro n 1 2 @ #m 1 0 09712967 -moro_islamic_liberation_front n 1 2 @ ; 1 0 08034299 -moro_reflex n 1 1 @ 1 0 00865284 -moroccan n 1 3 @ #m + 1 0 09723564 -moroccan_dirham n 1 2 @ %p 1 0 13671527 -moroccan_monetary_unit n 1 2 @ ~ 1 0 13671416 -morocco n 2 7 @ ~ #m #p %m %p + 2 2 08969291 14763059 -moron n 2 4 @ ~ #p + 2 0 10197525 08713285 -morone n 1 3 @ #m %m 1 0 02566325 -morone_americana n 1 2 @ #m 1 0 02566489 -morone_interrupta n 1 2 @ #m 1 0 02566665 -moronity n 1 1 @ 1 0 05646828 -moroseness n 2 2 @ + 2 0 07552367 04642057 -morosoph n 1 1 @ 1 0 10331098 -morphallaxis n 1 1 @ 1 0 13517385 -morphea n 1 1 @ 1 0 14565121 -morpheme n 1 3 @ ~ + 1 0 06306233 -morpheus n 1 2 @ ; 1 0 09499230 -morphia n 1 2 @ ~ 1 0 03786417 -morphine n 1 2 @ ~ 1 0 03786417 -morphogenesis n 1 2 @ ; 1 0 13517553 -morphological_rule n 1 1 @ 1 0 07260493 -morphology n 4 3 @ ~ + 4 1 06078327 06178042 06177729 06117855 -morphophoneme n 1 3 @ + ; 1 0 07111510 -morphophonemic_system n 1 1 @ 1 1 07113080 -morphophonemics n 1 1 @ 1 1 06178660 -morphophysiology n 1 1 @ 1 0 06059709 -morrigan n 1 2 @ ; 1 0 09510643 -morrigu n 1 2 @ ; 1 0 09510643 -morris n 4 1 @ 4 0 11192195 11192067 11191848 11191653 -morris_chair n 1 1 @ 1 0 03786621 -morris_dance n 1 1 @ 1 0 00538368 -morris_dancer n 1 1 @ 1 0 10331167 -morris_dancing n 1 1 @ 1 0 00538368 -morrison n 2 1 @ 2 0 11192533 11192349 -morrison_r._waite n 1 1 @ 1 0 11370314 -morrison_remick_waite n 1 1 @ 1 0 11370314 -morrison_waite n 1 1 @ 1 0 11370314 -morristown n 1 2 @ #p 1 0 09113611 -morrow n 1 1 @ 1 1 15156311 -morrow's_honeysuckle n 1 1 @ 1 0 12676370 -mors n 1 2 @ ; 1 0 09555653 -morse n 2 2 @ %p 2 1 06355459 11192666 -morse_code n 1 2 @ %p 1 0 06355459 -morsel n 2 2 @ ~ 2 2 13771034 07579076 -mortal n 1 5 @ ~ #m %p + 1 1 00007846 -mortal_enemy n 1 1 @ 1 0 10331258 -mortal_sin n 1 3 ! @ ~ 1 0 00757730 -mortality n 2 4 ! @ ~ + 2 1 05055974 15277118 -mortality_rate n 1 2 @ ~ 1 0 15277118 -mortality_table n 1 1 @ 1 0 08266669 -mortar n 3 3 @ %s + 3 2 03786715 14955889 03786901 -mortar_fire n 1 1 @ 1 0 00994895 -mortarboard n 2 2 @ #p 2 0 03787164 03787032 -mortgage n 1 3 @ ~ + 1 1 13352138 -mortgage-backed_security n 1 1 @ 1 0 13340244 -mortgage_application n 1 1 @ 1 0 06513154 -mortgage_deed n 1 2 @ ; 1 0 06546157 -mortgage_holder n 1 1 @ 1 0 10331347 -mortgage_loan n 1 1 @ 1 0 13400334 -mortgagee n 1 2 @ + 1 0 10331347 -mortgager n 1 2 @ + 1 0 10331569 -mortgagor n 1 2 @ + 1 0 10331569 -mortice n 1 3 @ #p + 1 0 03787308 -mortician n 1 2 @ ~ 1 1 10331841 -mortification n 4 4 @ ~ + ; 4 1 07507742 11486708 07309223 01069311 -mortimer n 1 1 @ 1 0 11192901 -mortise n 1 3 @ #p + 1 0 03787308 -mortise-and-tenon_joint n 1 3 @ ~ %p 1 0 03787523 -mortise_joint n 2 4 @ ~ #p %p 2 0 05578442 03787523 -mortmain n 2 2 @ ; 2 0 13250244 05194435 -morton n 1 1 @ 1 0 11193058 -mortuary n 1 3 @ ~ + 1 0 03785499 -morula n 1 1 @ 1 0 01462803 -morus n 1 3 @ #m %m 1 0 12398990 -morus_alba n 1 1 @ 1 0 12399384 -morus_nigra n 1 1 @ 1 0 12399534 -morus_rubra n 1 1 @ 1 0 12399656 -mosaic n 6 4 @ ~ #p %p 6 1 03787759 14280775 06571790 05931980 03788047 03787904 -mosaic_culture n 1 1 @ 1 0 06195096 -mosaic_gold n 1 1 @ 1 0 14701826 -mosaic_law n 1 1 @ 1 0 08455520 -mosaicism n 1 1 @ 1 0 14571028 -mosan n 1 2 @ ~ 1 0 06913768 -mosander n 1 1 @ 1 0 11193250 -moschus n 1 3 @ #m %m 1 0 02435099 -moschus_moschiferus n 1 2 @ #m 1 0 02435216 -moscow n 1 3 @ #p %p 1 1 09004068 -moselle n 1 1 @ 1 0 07896765 -moses n 2 2 @ ; 2 1 11193392 11193645 -moses_maimonides n 1 1 @ 1 0 11149995 -moshav n 1 2 @ ; 1 0 08226838 -moshe_dayan n 1 1 @ 1 0 10925939 -moslem n 1 4 @ ~ #m + 1 0 09682291 -moslem_calendar n 1 2 @ %p 1 0 15178841 -mosque n 1 3 @ %p ; 1 0 03788195 -mosquito n 1 3 @ ~ #m 1 1 02200198 -mosquito_bite n 1 1 @ 1 0 14287904 -mosquito_boat n 1 1 @ 1 0 04017807 -mosquito_craft n 1 1 @ 1 0 04017807 -mosquito_fern n 1 2 @ #m 1 0 12959538 -mosquito_hawk n 2 2 @ #m 2 0 02268443 01836384 -mosquito_net n 1 1 @ 1 0 03788365 -mosquitofish n 1 2 @ #m 1 0 01449374 -moss n 1 3 @ ~ + 1 1 11537506 -moss-trooper n 1 1 @ 1 0 10332110 -moss_agate n 1 1 @ 1 0 14708413 -moss_animal n 1 2 @ #m 1 0 02313709 -moss_campion n 1 2 @ #m 1 0 11815721 -moss_family n 1 3 @ ~ #m 1 0 11537665 -moss_genus n 1 3 @ ~ #m 1 0 11537886 -moss_hart n 1 1 @ 1 0 11032700 -moss_locust n 1 2 @ #m 1 0 12567950 -moss_phlox n 1 1 @ 1 0 12811027 -moss_pink n 2 2 @ #m 2 0 12811501 12811027 -mossad n 1 2 @ ; 1 0 08346490 -mossback n 1 1 @ 1 0 10332016 -mossbauer n 1 1 @ 1 0 11193814 -mossy-cup_oak n 1 1 @ 1 0 12274358 -mossy_saxifrage n 1 2 @ #m 1 0 12793695 -mossycup_oak n 1 1 @ 1 0 12274358 -most_valuable_player n 1 1 @ 1 1 10332257 -mostaccioli n 1 1 @ 1 0 07872492 -mosul n 1 2 @ #p 1 0 08915017 -mot n 2 2 @ ; 2 0 06776783 00795161 -mot_juste n 1 1 @ 1 0 07080778 -mot_test n 1 2 @ ; 1 0 00795161 -motacilla n 1 3 @ #m %m 1 0 01528244 -motacillidae n 1 3 @ #m %m 1 0 01528087 -mote n 1 2 @ ~ 1 0 14585519 -motel n 1 3 @ %p ; 1 1 03788498 -motel_room n 1 2 @ #p 1 0 03788601 -motet n 1 1 @ 1 0 07280754 -moth n 1 3 @ ~ + 1 1 02283201 -moth_bean n 1 2 @ #m 1 0 12577362 -moth_miller n 1 1 @ 1 0 02283617 -moth_mullein n 1 1 @ 1 0 12889219 -moth_orchid n 1 3 @ ~ #m 1 0 12076577 -moth_plant n 1 3 @ ~ #m 1 0 12076577 -mothball n 1 3 @ %s + 1 0 03788703 -mother n 5 4 ! @ ~ + 5 1 10332385 15106674 10332953 10332861 05835292 -mother's_boy n 1 1 @ 1 0 10333439 -mother's_daughter n 1 1 @ 1 1 10333601 -mother's_day n 1 2 @ #p 1 0 15189249 -mother's_milk n 1 1 @ 1 0 05399243 -mother's_son n 1 1 @ 1 0 10333719 -mother-in-law n 1 2 @ ~ 1 0 10333317 -mother-in-law's_tongue n 2 2 @ #m 2 0 12481458 11787625 -mother-in-law_plant n 1 2 @ #m 1 0 11787625 -mother-of-pearl n 1 1 @ 1 0 14758706 -mother-of-pearl_cloud n 1 1 @ 1 0 09364582 -mother-of-thousands n 1 2 @ #m 1 0 12794568 -mother_board n 1 2 @ #p 1 0 03125057 -mother_carey's_chicken n 1 2 @ #m 1 0 02061560 -mother_carey's_hen n 1 2 @ #m 1 0 02061560 -mother_cell n 1 2 @ ~ 1 0 11688750 -mother_country n 1 2 @ ~ 1 1 08510169 -mother_figure n 1 1 @ 1 0 10333044 -mother_fucker n 1 2 @ ; 1 0 09815188 -mother_goose n 1 1 @ 1 0 09602048 -mother_hen n 2 1 @ 2 0 10333165 01793085 -mother_hubbard n 1 1 @ 1 0 03788914 -mother_jones n 1 1 @ 1 0 11090884 -mother_lode n 1 1 @ 1 0 11445960 -mother_of_thyme n 1 2 @ #m 1 0 12839574 -mother_seton n 1 1 @ 1 0 11293972 -mother_superior n 1 2 @ ~ 1 0 09754217 -mother_teresa n 1 1 @ 1 0 11335878 -mother_theresa n 1 1 @ 1 0 11335878 -mother_tongue n 1 1 @ 1 0 06904748 -mother_wit n 1 2 @ ~ 1 0 05614657 -motherese n 1 1 @ 1 0 07155531 -motherfucker n 1 2 @ ; 1 0 09815188 -motherhood n 1 2 @ + 1 0 13814041 -motherland n 1 2 @ ~ 1 1 08510169 -motherliness n 1 3 @ = + 1 0 04872958 -motherwell n 1 1 @ 1 0 11193928 -motherwort n 1 2 @ #m 1 0 12851469 -motif n 3 2 @ ~ 3 3 03789014 07029682 05920272 -motile n 1 2 @ + 1 0 10165808 -motilin n 1 1 @ 1 0 05409945 -motility n 2 4 ! @ ~ + 2 0 04773761 00331950 -motion n 7 5 ! @ ~ = + 7 6 06876309 07309781 00331950 14004317 07163593 00279835 11425088 -motion-picture_camera n 1 2 @ ~ 1 0 03789171 -motion-picture_fan n 1 2 @ #m 1 0 10336411 -motion-picture_film n 1 2 @ ~ 1 0 03789400 -motion-picture_photography n 1 2 @ ~ 1 0 00907919 -motion-picture_show n 1 4 @ ~ %p - 1 0 06613686 -motion_picture n 1 4 @ ~ %p - 1 1 06613686 -motion_sickness n 1 2 @ ~ 1 0 14203346 -motion_study n 1 1 @ 1 0 00645365 -motionlessness n 1 4 ! @ ~ + 1 0 14006179 -motivating n 1 2 @ + 1 0 00070641 -motivation n 3 3 @ ~ + 3 1 00023773 14578471 00070641 -motivator n 1 3 @ ~ + 1 0 09179776 -motive n 3 3 @ ~ + 3 1 00023773 07029682 03789014 -motive_power n 1 1 @ 1 0 04773596 -motivity n 1 2 @ + 1 0 04773596 -motley n 3 5 @ ~ #s %s + 3 0 08398773 03789794 03789603 -motley_fool n 1 1 @ 1 0 10221312 -motmot n 1 2 @ #m 1 0 01830915 -motoneuron n 1 2 @ #p 1 0 05466696 -motor n 2 3 @ ~ + 2 1 03789946 09359631 -motor_aphasia n 1 1 @ 1 0 14098458 -motor_area n 1 1 @ 1 0 05489640 -motor_ataxia n 1 3 @ ~ #p 1 0 14091254 -motor_city n 1 2 @ #p 1 0 09100394 -motor_control n 1 1 @ 1 0 00830733 -motor_cortex n 1 1 @ 1 0 05489640 -motor_end_plate n 1 2 @ #p 1 0 05466393 -motor_fiber n 1 2 @ #p 1 0 05474976 -motor_home n 1 2 @ ~ 1 0 02946348 -motor_horn n 1 3 @ #p %p 1 0 02761834 -motor_hotel n 1 2 @ ~ 1 0 03790755 -motor_inn n 1 2 @ ~ 1 0 03790755 -motor_lodge n 1 2 @ ~ 1 0 03790755 -motor_memory n 1 1 @ 1 0 05761277 -motor_mower n 1 2 @ ~ 1 0 03995856 -motor_nerve n 1 3 @ ~ %p 1 0 05474738 -motor_nerve_fiber n 1 2 @ #p 1 0 05466696 -motor_neuron n 1 2 @ #p 1 1 05466696 -motor_oil n 1 1 @ 1 0 14953441 -motor_pool n 1 1 @ 1 1 08293684 -motor_region n 1 1 @ 1 0 05489640 -motor_scooter n 1 1 @ 1 0 03791053 -motor_torpedo_boat n 1 1 @ 1 0 04017807 -motor_vehicle n 1 4 @ ~ %p - 1 0 03791235 -motorbike n 1 2 @ ~ 1 0 03769722 -motorboat n 1 4 @ ~ %p + 1 0 03790230 -motorbus n 1 5 @ ~ #m %p - 1 0 02924116 -motorcade n 1 1 @ 1 0 08428383 -motorcar n 1 4 @ ~ %p - 1 1 02958343 -motorcoach n 1 5 @ ~ #m %p - 1 0 02924116 -motorcycle n 1 4 @ ~ %p + 1 0 03790512 -motorcycle_cop n 1 1 @ 1 0 10333838 -motorcycle_policeman n 1 1 @ 1 0 10333838 -motorcycling n 1 2 @ + 1 0 00451635 -motorcyclist n 1 1 @ 1 0 10334009 -motoring n 1 2 @ + 1 0 00299112 -motorisation n 1 2 @ + 1 0 00102927 -motorist n 1 2 @ + 1 0 10334101 -motorization n 1 2 @ + 1 0 00102927 -motorized_wheelchair n 1 1 @ 1 0 03790953 -motorman n 1 1 @ 1 0 10334255 -motormouth n 1 1 @ 1 0 10334335 -motortruck n 1 3 @ ~ %p 1 0 04490091 -motorway n 1 3 @ ~ %p 1 0 03306610 -motown n 1 2 @ #p 1 0 09100394 -motrin n 1 3 @ %s ; 1 0 03556281 -mott n 1 1 @ 1 0 11194062 -mottle n 1 1 @ 1 0 04958865 -mottling n 1 2 @ + 1 0 00263947 -motto n 1 2 @ ~ 1 1 07152259 -moue n 1 1 @ 1 0 06877742 -moufflon n 1 2 @ #m 1 0 02415829 -mouflon n 1 2 @ #m 1 0 02415829 -moujik n 1 1 @ 1 0 10342770 -moukden n 1 2 @ #p 1 0 08728462 -mould n 8 3 @ ~ + 8 0 14953564 13913566 13516176 13077033 07938594 04732709 03779621 03779370 -mouldboard n 1 2 @ #p 1 0 03779884 -mouldboard_plough n 1 3 @ ~ %p 1 0 03780047 -moulding n 4 4 @ ~ #p + 4 0 03780392 03780247 03779621 00937895 -moulmein n 1 1 @ 1 0 08716076 -moult n 1 2 @ + 1 0 13516842 -moulter n 1 2 @ + 1 0 01318660 -moulting n 1 2 @ + 1 0 13516842 -mound n 5 6 @ ~ #m #p + ; 5 3 03792334 09326662 07961480 03792048 00722984 -mound-bird n 1 3 @ ~ #m 1 0 01801088 -mound_bird n 1 3 @ ~ #m 1 0 01801088 -mound_builder n 2 3 @ ~ #m 2 0 10334461 01801088 -mount n 5 5 @ ~ #p %p + 5 2 02377703 00325110 09359803 03792526 02769460 -mount_adams n 1 2 @ #p 1 0 09187407 -mount_ararat n 1 2 @ #p 1 0 09203032 -mount_asama n 1 2 @ #p 1 0 08926681 -mount_athos n 1 2 @ #p 1 0 08785132 -mount_bartle_frere n 1 2 @ #p 1 0 09361681 -mount_carmel n 1 2 @ #p 1 0 09361816 -mount_communism n 1 2 @ #p 1 0 09251832 -mount_cook_lily n 1 1 @ 1 0 11722199 -mount_elbert n 1 2 @ #p 1 0 09362050 -mount_etna n 1 2 @ #p 1 0 09174718 -mount_everest n 1 2 @ #p 1 1 09277010 -mount_fuji n 1 2 @ #p 1 0 09175016 -mount_garmo n 1 2 @ #p 1 0 09251832 -mount_godwin_austen n 1 2 @ #p 1 0 09322701 -mount_hubbard n 1 2 @ #p 1 0 09306642 -mount_kanchenjunga n 1 2 @ #p 1 0 09323221 -mount_kilimanjaro n 1 2 @ #p 1 0 09325963 -mount_logan n 1 2 @ #p 1 0 09342729 -mount_mckinley n 1 2 @ #p 1 0 09349425 -mount_olympus n 1 2 @ #p 1 0 09378529 -mount_orizaba n 1 2 @ #p 1 0 09173777 -mount_parnassus n 1 3 @ #p ; 1 0 09385586 -mount_pinatubo n 1 1 @ 1 0 08982289 -mount_ranier n 1 2 @ #p 1 0 09405169 -mount_ranier_national_park n 1 2 @ #p 1 0 08607752 -mount_rushmore n 1 2 @ #p 1 0 09417668 -mount_rushmore_state n 1 3 @ #p %p 1 0 09138935 -mount_saint_helens n 1 2 @ #p 1 0 09177385 -mount_shasta n 1 2 @ #p 1 0 09431569 -mount_sherman n 1 2 @ #p 1 0 09431902 -mount_sinai n 1 2 @ #p 1 0 09435512 -mount_st._helens n 1 2 @ #p 1 0 09177385 -mount_tacoma n 1 2 @ #p 1 0 09405169 -mount_vernon n 1 2 @ #p 1 0 09152769 -mount_vesuvius n 1 2 @ #p 1 0 09177883 -mount_whitney n 1 2 @ #p 1 0 09479072 -mount_wilson n 1 2 @ #p 1 0 09479811 -mountain n 2 4 @ ~ %p + 2 1 09359803 13774404 -mountain_alder n 2 2 @ #m 2 0 12754311 12285369 -mountain_andromeda n 1 2 @ #m 1 0 12243693 -mountain_anemone n 1 1 @ 1 0 11725311 -mountain_ash n 3 3 @ ~ #m 3 0 12658118 12338796 12305986 -mountain_avens n 1 2 @ #m 1 0 12629305 -mountain_azalea n 1 2 @ #m 1 0 12240477 -mountain_beaver n 1 2 @ #m 1 0 02363996 -mountain_bike n 1 1 @ 1 0 03792782 -mountain_birch n 1 2 @ #m 1 0 12283542 -mountain_blacksnake n 1 2 @ #m 1 0 01732789 -mountain_bladder_fern n 1 1 @ 1 0 13196234 -mountain_blue_berry n 1 1 @ 1 0 12248359 -mountain_box n 1 1 @ 1 0 12231358 -mountain_chain n 1 3 @ ~ %p 1 0 09403734 -mountain_chinchilla n 1 2 @ #m 1 0 02367812 -mountain_clematis n 1 1 @ 1 0 11731659 -mountain_climber n 1 2 @ ~ 1 0 10334567 -mountain_climbing n 1 3 @ ~ - 1 0 00325785 -mountain_clubmoss n 1 1 @ 1 0 13223090 -mountain_cranberry n 2 3 @ #p %p 2 0 12249542 07744057 -mountain_daisy n 1 1 @ 1 0 11806219 -mountain_devil n 2 2 @ #m 2 0 12220019 01689081 -mountain_ebony n 1 2 @ #m 1 0 12491017 -mountain_everlasting n 1 1 @ 1 0 11922926 -mountain_fern n 1 2 @ #m 1 0 13229543 -mountain_fetterbush n 1 2 @ #m 1 0 12243693 -mountain_fever n 1 1 @ 1 0 14141656 -mountain_four_o'clock n 1 1 @ 1 0 11840764 -mountain_goat n 1 2 @ #m 1 0 02418465 -mountain_gorilla n 1 2 @ #m 1 0 02481366 -mountain_grape n 1 1 @ 1 0 11699442 -mountain_heath n 1 2 @ #m 1 0 12242850 -mountain_hemlock n 1 1 @ 1 0 11627908 -mountain_hollyhock n 1 2 @ #m 1 0 12181612 -mountain_lady's_slipper n 1 1 @ 1 0 12058192 -mountain_laurel n 2 2 @ #m 2 0 12237641 11707827 -mountain_lily n 2 2 @ #m 2 0 12426623 11722199 -mountain_lion n 1 2 @ #m 1 0 02125311 -mountain_male_fern n 1 1 @ 1 0 13194212 -mountain_man n 1 2 @ ~ 1 0 10113072 -mountain_maple n 1 1 @ 1 0 12754311 -mountain_mint n 1 3 @ ~ #m 1 0 12863624 -mountain_nyala n 1 2 @ #m 1 0 02425086 -mountain_oak n 1 1 @ 1 0 12336973 -mountain_paca n 1 2 @ #m 1 0 02366579 -mountain_parsley_fern n 1 1 @ 1 0 13210597 -mountain_partridge n 1 2 @ #m 1 0 01808596 -mountain_pass n 1 3 @ ~ #p 1 0 09386842 -mountain_peak n 1 3 @ ~ #p 1 0 09360122 -mountain_phlox n 1 1 @ 1 0 12811027 -mountain_pine n 3 2 @ #m 3 0 11639445 11613459 11612349 -mountain_pride n 1 2 @ #m 1 0 12887065 -mountain_quail n 1 2 @ #m 1 0 01808596 -mountain_range n 1 3 @ ~ %p 1 0 09403734 -mountain_rice n 1 1 @ 1 0 12126516 -mountain_rimu n 1 2 @ #m 1 0 11656771 -mountain_rose n 1 1 @ 1 0 12620661 -mountain_sandwort n 1 1 @ 1 0 11806219 -mountain_sheep n 1 2 @ ~ 1 0 02415435 -mountain_sickness n 1 1 @ 1 0 14043092 -mountain_skink n 1 2 @ #m 1 0 01684741 -mountain_spinach n 1 1 @ 1 0 11831100 -mountain_spleenwort n 1 1 @ 1 0 13182338 -mountain_standard_time n 1 1 @ 1 0 15132408 -mountain_starwort n 1 1 @ 1 0 11806219 -mountain_state n 1 3 @ #p %p 1 0 09155306 -mountain_sumac n 1 1 @ 1 0 12763762 -mountain_swamp_gum n 1 1 @ 1 0 12336586 -mountain_tea n 1 4 @ #m %s %p 1 0 12235765 -mountain_tent n 1 1 @ 1 0 03792972 -mountain_time n 1 1 @ 1 0 15132408 -mountain_trail n 1 1 @ 1 0 03793090 -mountain_viscacha n 1 2 @ #m 1 0 02367812 -mountain_watercress n 1 1 @ 1 0 11882636 -mountain_zebra n 1 1 @ 1 0 02391373 -mountaineer n 1 3 @ ~ + 1 0 10334567 -mountaineering n 1 4 @ ~ + - 1 0 00325785 -mountainside n 1 2 @ #p 1 1 09361517 -mountebank n 1 2 @ ~ 1 0 10334782 -mounter n 2 2 @ + 2 0 10335123 10334957 -mountie n 1 2 @ #m 1 0 10540114 -mounties n 1 2 @ %m 1 0 08210670 -mounting n 2 4 @ ~ %p + 2 0 07370410 03793186 -mourner n 1 3 @ ~ + 1 1 10335246 -mournful_widow n 1 1 @ 1 0 12683571 -mournfulness n 1 3 @ ~ + 1 0 07535209 -mourning n 2 2 @ + 2 0 13989280 01072236 -mourning_band n 1 1 @ 1 0 04570680 -mourning_cloak n 1 2 @ #m 1 0 02275560 -mourning_cloak_butterfly n 1 2 @ #m 1 0 02275560 -mourning_dove n 1 2 @ #m 1 0 01814217 -mourning_ring n 1 1 @ 1 0 03793387 -mouse n 4 4 @ ~ %p + 4 1 02330245 14289387 10335563 03793489 -mouse's_nest n 1 1 @ 1 0 09362207 -mouse-ear_chickweed n 1 3 @ ~ #m 1 0 11807108 -mouse-ear_cress n 1 1 @ 1 0 11871496 -mouse-ear_hawkweed n 1 1 @ 1 0 12004120 -mouse-eared_bat n 1 1 @ 1 0 02141611 -mouse-tooth_forceps n 1 2 @ ; 1 0 03793954 -mouse_button n 1 2 @ #p 1 0 03793850 -mouse_click n 1 1 @ 1 0 00112828 -mouse_deer n 1 3 @ ~ #m 1 0 02435853 -mouse_ear n 2 3 @ ~ #m 2 0 12822115 11807108 -mouse_eared_chickweed n 1 3 @ ~ #m 1 0 11807108 -mouse_hare n 1 3 @ ~ #m 1 0 02328429 -mouse_mat n 1 1 @ 1 0 03794655 -mouse_nest n 1 1 @ 1 1 09362207 -mousepad n 1 1 @ 1 0 03794655 -mouser n 1 1 @ 1 0 02122430 -mousetrap n 2 2 @ ; 2 0 03794056 00976270 -moussaka n 1 1 @ 1 0 07872593 -mousse n 3 3 @ ~ + 3 0 07611991 07611839 03794136 -mousseline_de_sole n 1 1 @ 1 0 03794291 -moussorgsky n 1 1 @ 1 0 11198375 -moustache n 1 3 @ ~ #p 1 0 05262185 -moustache_cup n 1 1 @ 1 0 03802643 -moustachio n 1 1 @ 1 0 05262534 -mouth n 8 6 @ ~ #p %p + ; 8 5 05302499 05301908 09362469 09362316 10335679 10335801 06721949 03794392 -mouth-to-mouth_resuscitation n 1 2 @ %p 1 0 00832626 -mouth_bow n 1 1 @ 1 0 03597916 -mouth_harp n 1 1 @ 1 0 03494278 -mouth_hole n 1 2 @ #p 1 0 03794540 -mouth_organ n 1 1 @ 1 0 03494278 -mouthbreeder n 1 1 @ 1 0 02513805 -mouthful n 2 3 @ ~ #p 2 1 13768343 07578879 -mouthpart n 1 1 @ 1 0 01768808 -mouthpiece n 6 3 @ #p ; 6 2 03795419 03795123 10335801 03795269 03794957 03794798 -mouthwash n 1 1 @ 1 0 14848642 -mouton n 1 2 @ #p 1 0 07666733 -movability n 1 4 ! @ ~ + 1 0 04773899 -movable n 1 2 @ ; 1 0 13245846 -movable_barrier n 1 2 @ ~ 1 0 03795580 -movable_feast n 1 2 @ ~ 1 0 15185290 -movableness n 1 4 ! @ ~ + 1 0 04773899 -move n 5 4 @ ~ + ; 5 3 00165942 00168658 00331950 00279835 00166172 -moveable_feast n 1 2 @ ~ 1 0 15185290 -movement n 11 5 @ ~ #p + ; 11 7 00331950 00279835 07309781 08464601 07046339 00798245 11425088 13441387 06197664 03795758 00280586 -movement_for_revenge n 1 2 @ ; 1 0 08045428 -movement_of_holy_warriors n 1 2 @ ; 1 0 08022972 -mover n 4 4 @ ~ + ; 4 1 10336234 10484526 10335931 08478482 -mover_and_shaker n 1 1 @ 1 0 10585976 -movie n 1 4 @ ~ %p - 1 1 06613686 -movie_actor n 1 2 @ ~ 1 0 10564098 -movie_camera n 1 2 @ ~ 1 1 03789171 -movie_film n 1 2 @ ~ 1 0 03789400 -movie_house n 1 2 @ ~ 1 1 03032252 -movie_industry n 1 3 @ ~ #p 1 0 08068151 -movie_maker n 1 2 @ ~ 1 0 10088390 -movie_making n 1 1 @ 1 0 00924714 -movie_projector n 1 3 @ ~ %p 1 0 03795976 -movie_star n 1 1 @ 1 1 10089484 -movie_theater n 1 2 @ ~ 1 1 03032252 -movie_theatre n 1 2 @ ~ 1 0 03032252 -moviegoer n 1 2 @ #m 1 1 10336411 -moviemaking n 1 1 @ 1 0 00924714 -movimiento_revolucionario_tupac_anaru n 1 2 @ ; 1 0 08045681 -moving-coil_galvanometer n 1 2 @ ~ 1 0 03796181 -moving-picture_show n 1 4 @ ~ %p - 1 0 06613686 -moving_company n 1 1 @ 1 0 08478482 -moving_expense n 1 1 @ 1 0 13277056 -moving_in n 1 2 @ ~ 1 0 00086809 -moving_picture n 1 4 @ ~ %p - 1 0 06613686 -moving_ridge n 1 2 @ ~ 1 0 07352190 -moving_staircase n 1 1 @ 1 0 03295773 -moving_stairway n 1 1 @ 1 0 03295773 -moving_van n 1 2 @ ~ 1 0 03796401 -mow n 1 3 @ #p + 1 0 03500557 -mower n 1 4 @ ~ %p + 1 0 03649909 -moxie n 1 2 @ ; 1 0 05032351 -moxie_plum n 1 2 @ #m 1 0 12235479 -moynihan n 1 1 @ 1 0 11194205 -mozambican n 1 3 @ #m + 1 0 09723689 -mozambique n 1 5 @ #p %m %p + 1 0 08971025 -mozambique_channel n 1 2 @ #p 1 0 09362666 -mozambique_monetary_unit n 1 2 @ ~ 1 0 13688695 -mozart n 2 2 @ + 2 0 11194355 07278652 -mozzarella n 1 1 @ 1 0 07854184 -mp n 2 5 @ ~ #m %m ; 2 0 10317500 08211290 -mpeg n 1 2 @ ; 1 0 00616398 -mph n 2 1 @ 2 2 15280346 15284878 -mps n 1 2 @ #p 1 0 05461610 -mr n 1 1 @ 1 0 06341340 -mr. n 1 1 @ 1 0 06341340 -mr._moto n 1 1 @ 1 0 09602162 -mrd n 1 1 @ 1 0 06639023 -mri n 1 2 @ ~ 1 0 00902579 -mrna n 1 1 @ 1 0 14832770 -mrs n 1 1 @ 1 0 06341431 -mrs. n 1 1 @ 1 0 06341431 -mrs._gandhi n 1 1 @ 1 0 10989610 -mrs._henry_wood n 1 1 @ 1 0 11395609 -mrs._humphrey_ward n 1 1 @ 1 0 11374085 -mrs._simpson n 1 1 @ 1 0 11301809 -mrta n 1 2 @ ; 1 0 08045681 -ms n 5 5 @ #m #p %p - 5 0 14094068 09103943 06702139 06406979 06341525 -ms-dos n 1 1 @ 1 0 06568552 -ms. n 1 1 @ 1 0 06341525 -msasa n 1 2 @ #m 1 0 12491435 -msb n 1 1 @ 1 0 08424501 -msc n 1 1 @ 1 0 06702139 -msec n 1 3 @ #p %p 1 0 15236338 -msg n 1 1 @ 1 0 07828378 -msh n 1 1 @ 1 0 15073784 -mst n 1 1 @ 1 0 15132408 -mt n 4 4 @ #p %p - 4 0 14644963 13725588 09108164 06133503 -mt._ararat n 1 2 @ #p 1 0 09203032 -mt._everest n 1 2 @ #p 1 0 09277010 -mt._mckinley n 1 2 @ #p 1 0 09349425 -mt._olympus n 1 2 @ #p 1 0 09378529 -mt._ranier n 1 2 @ #p 1 0 09405169 -mt._rushmore n 1 2 @ #p 1 0 09417668 -mt._st._helens n 1 2 @ #p 1 0 09177385 -mt._vesuvius n 1 2 @ #p 1 0 09177883 -mt_etna n 1 2 @ #p 1 0 09174718 -mt_orizaba n 1 2 @ #p 1 0 09173777 -mu n 1 2 @ #m 1 0 06835315 -mu-meson n 1 1 @ 1 0 09363214 -muadhdhin n 1 1 @ 1 0 10336730 -muammar_al-qaddafi n 1 1 @ 1 0 11250287 -muammar_el-qaddafi n 1 1 @ 1 0 11250287 -muazzin n 1 1 @ 1 0 10336730 -mubarak n 1 1 @ 1 0 11194587 -much n 1 1 @ 1 1 13776621 -muchness n 1 3 @ + ; 1 0 05099662 -mucic_acid n 1 1 @ 1 0 14615971 -mucilage n 2 3 @ ~ + 2 0 14901679 14702875 -mucin n 1 3 @ #s + 1 0 14730955 -muck n 2 3 @ ~ + 2 0 14956661 14854847 -muckheap n 1 1 @ 1 0 07962295 -muckhill n 1 1 @ 1 0 07962295 -muckle n 1 2 @ ~ 1 0 13774404 -muckraker n 1 3 @ + ; 1 0 10336537 -muckraking n 1 2 @ + 1 0 07215816 -mucocutaneous_leishmaniasis n 1 1 @ 1 0 14181409 -mucocutaneous_lymph_node_syndrome n 1 1 @ 1 0 14076270 -mucoid n 1 2 @ + 1 0 14956027 -mucopolysaccharide n 1 2 @ ~ 1 0 14956143 -mucopolysaccharidosis n 1 2 @ ~ 1 0 14157527 -mucor n 1 2 @ #m 1 0 12973443 -mucoraceae n 1 3 @ #m %m 1 0 12972966 -mucorales n 1 3 @ #m %m 1 0 12972818 -mucosa n 1 3 @ ~ + 1 1 05327134 -mucous_colitis n 1 1 @ 1 0 14306245 -mucous_membrane n 1 2 @ ~ 1 0 05327134 -mucous_secretion n 1 3 @ ~ %s 1 0 05415395 -mucoviscidosis n 1 1 @ 1 0 14155506 -mucuna n 1 3 @ ~ #m 1 0 12550210 -mucuna_aterrima n 1 2 @ %p 1 0 12550408 -mucuna_deeringiana n 1 2 @ %p 1 0 12550408 -mucuna_pruriens_utilis n 1 2 @ %p 1 0 12550408 -mucus n 1 4 @ ~ %s + 1 1 05415395 -mud n 2 3 @ ~ + 2 1 14956325 06720137 -mud_bath n 1 1 @ 1 0 00258301 -mud_brick n 1 1 @ 1 0 03796522 -mud_dauber n 1 2 @ #m 1 0 02216365 -mud_digger n 1 1 @ 1 1 10019308 -mud_flat n 1 1 @ 1 1 08600618 -mud_hen n 1 2 @ #m 1 0 02018207 -mud_midget n 1 2 @ #m 1 0 11796573 -mud_pie n 1 1 @ 1 0 14780737 -mud_plantain n 1 2 @ #m 1 0 12610740 -mud_puddle n 1 2 @ ~ 1 0 09362820 -mud_puppy n 3 2 @ #m 3 0 01634522 01633406 01632777 -mud_stain n 1 1 @ 1 0 04695805 -mud_turtle n 1 3 @ ~ #m 1 0 01667114 -mudcat n 2 2 @ #m 2 0 07780038 02520147 -mudder n 1 1 @ 1 0 02385676 -muddiness n 3 3 @ ~ + 3 0 14535056 05683582 04703698 -muddle n 2 3 @ ~ + 2 1 14500567 14409489 -mudguard n 1 2 @ #p 1 1 03796605 -mudhif n 1 1 @ 1 0 03796848 -mudra n 1 1 @ 1 0 00335285 -mudskipper n 1 2 @ #m 1 0 02619550 -mudslide n 1 1 @ 1 0 07405579 -mudslinger n 1 2 @ ; 1 0 10336537 -mudspringer n 1 2 @ #m 1 0 02619550 -muenchen n 1 2 @ #p 1 0 08774227 -muenster n 1 1 @ 1 0 07854266 -muesli n 1 1 @ 1 0 07702957 -muezzin n 1 1 @ 1 0 10336730 -muff n 2 3 @ + ; 2 1 03796974 00075912 -muffin n 1 2 @ ~ 1 0 07690273 -muffin_man n 1 2 @ ; 1 0 10336904 -muffle n 1 1 @ 1 0 03797062 -muffler n 3 4 @ ~ #p + 3 1 04218564 03797182 03161450 -mufti n 2 2 @ ~ 2 0 10337020 03797264 -mug n 4 5 @ ~ #p %p ; 4 0 13768440 09921409 05601357 03797390 -mug's_game n 1 1 @ 1 0 00788007 -mug_book n 1 2 @ %m 1 0 06511396 -mug_file n 1 2 @ %m 1 1 06511396 -mug_shot n 1 2 @ #m 1 0 03797548 -mugful n 1 1 @ 1 0 13768440 -muggee n 1 2 @ + 1 0 10337134 -mugger n 1 2 @ + 1 0 10337300 -mugginess n 1 2 @ + 1 0 14535807 -mugging n 1 2 @ + 1 0 00774009 -muggins n 1 2 @ ~ 1 0 10100761 -mugho_pine n 1 1 @ 1 0 11612349 -mugil n 1 3 @ #m %m 1 0 02601589 -mugil_cephalus n 1 2 @ #m 1 0 02601767 -mugil_curema n 1 2 @ #m 1 0 02601921 -mugil_liza n 1 2 @ #m 1 0 02602059 -mugilidae n 1 3 @ #m %m 1 0 02601200 -mugiloidea n 1 3 @ #m %m 1 0 02600953 -mugo_pine n 1 1 @ 1 0 11612349 -mugshot n 1 2 @ #m 1 0 03797548 -mugwort n 1 3 @ ~ #m 1 0 11928858 -mugwump n 2 2 @ ; 2 0 10337645 10337488 -muhammad n 2 1 @ 2 0 11194749 11184092 -muhammad_ali n 2 1 @ 2 0 11184273 10814574 -muhammad_ali_jinnah n 1 1 @ 1 0 11085113 -muhammadan n 1 2 @ + 1 0 10327002 -muhammadan_calendar n 1 2 @ %p 1 0 15178841 -muhammadanism n 1 3 @ ~ - 1 0 06234825 -muhammedan n 1 1 @ 1 0 10327002 -muharram n 1 2 @ #p 1 0 15217308 -muharrum n 1 2 @ #p 1 0 15217308 -muhlenbergia n 1 3 @ #m %m 1 0 12125398 -muhlenbergia_schreberi n 1 2 @ #m 1 0 12125584 -muir n 1 1 @ 1 0 11194910 -muishond n 1 3 @ ~ #m 1 0 02443808 -mujahadeen n 1 4 @ ~ %m ; 1 0 08206663 -mujahadein n 1 4 @ ~ %m ; 1 0 08206663 -mujahadin n 1 4 @ ~ %m ; 1 0 08206663 -mujahedeen n 1 4 @ ~ %m ; 1 0 08206663 -mujahedeen_khalq n 1 1 @ 1 0 08207001 -mujahedeen_kompak n 1 2 @ ; 1 0 08034579 -mujahedin n 1 4 @ ~ %m ; 1 0 08206663 -mujahid n 1 2 @ #m 1 0 10337789 -mujahideen n 1 4 @ ~ %m ; 1 0 08206663 -mujahidin n 1 4 @ ~ %m ; 1 0 08206663 -mujahidin-e_khalq_organization n 1 2 @ ; 1 0 08034778 -mujik n 1 1 @ 1 0 10342770 -mujtihad n 1 1 @ 1 0 10337913 -mukalla n 1 2 @ #p 1 0 09165294 -mukataa n 1 2 @ ; 1 0 03797703 -mukden n 1 2 @ #p 1 0 08728462 -mulatto n 1 2 @ ; 1 0 09638454 -mulberry n 2 5 @ ~ #m #p %p 2 0 12399132 07767171 -mulberry_family n 1 3 @ #m %m 1 0 12398682 -mulberry_fig n 1 2 @ #m 1 0 12403513 -mulberry_tree n 1 4 @ ~ #m %p 1 0 12399132 -mulch n 1 2 @ + 1 1 03797896 -mulct n 1 3 @ ~ + 1 0 13301328 -mule n 2 3 @ #m + 2 1 02390101 03798061 -mule's_ears n 1 2 @ #m 1 0 12032429 -mule_deer n 1 3 @ ~ #m 1 0 02432511 -mule_driver n 1 1 @ 1 1 10338094 -mule_fat n 1 2 @ #m 1 0 11938556 -mule_skinner n 1 1 @ 1 0 10338094 -muleteer n 1 2 @ + 1 0 10338094 -muliebrity n 2 2 @ ~ 2 0 14425715 04667406 -mulishness n 1 2 @ + 1 0 04908835 -mull n 2 2 @ #p 2 0 09362945 08894011 -mulla n 1 2 @ #m 1 0 10338231 -mullah n 1 2 @ #m 1 0 10338231 -mullah_mohammed_omar n 1 1 @ 1 0 11195073 -mullah_omar n 1 1 @ 1 0 11195073 -mulled_cider n 1 1 @ 1 0 07922041 -mulled_wine n 1 2 @ ~ 1 0 07926920 -mullein n 1 3 @ ~ #m 1 0 12888906 -mullein_pink n 1 1 @ 1 0 11812094 -muller n 9 2 @ + 9 0 11196046 11195913 11195771 11195619 11195452 11195295 10339504 03919430 03798165 -mullet n 3 5 @ ~ #m #p %p 3 0 07784367 02601344 02599958 -mullidae n 1 3 @ #m %m 1 0 02599784 -mulligan n 1 1 @ 1 0 07590068 -mulligan_stew n 1 1 @ 1 0 07590068 -mulligatawny n 1 2 @ ; 1 0 07586318 -mullion n 1 2 @ #p 1 0 03798268 -mulloidichthys n 1 3 @ #m %m 1 0 02600657 -mulloidichthys_martinicus n 1 2 @ #m 1 0 02600798 -mulloway n 1 2 @ #m 1 0 02596067 -mullus n 1 3 @ #m %m 1 0 02600135 -mullus_auratus n 1 2 @ #m 1 0 02600503 -mullus_surmuletus n 1 3 @ ~ #m 1 0 02600298 -multi-billionaire n 1 1 @ 1 0 10529823 -multibank_holding_company n 1 1 @ 1 0 08185643 -multichannel_recorder n 1 1 @ 1 1 03798442 -multicollinearity n 1 2 @ ; 1 0 06027843 -multiculturalism n 1 2 ! @ 1 0 05964805 -multidimensional_language n 1 3 ! @ ~ 1 0 06900282 -multiengine_airplane n 1 1 @ 1 0 03798610 -multiengine_plane n 1 1 @ 1 0 03798610 -multifariousness n 1 4 @ ~ = + 1 0 04751305 -multiflora n 1 1 @ 1 0 12622072 -multiflora_rose n 1 1 @ 1 0 12622072 -multifocal_iol n 1 1 @ 1 0 03798729 -multifocal_lens_implant n 1 1 @ 1 0 03798729 -multimedia n 1 2 @ ~ 1 0 06261744 -multimedia_system n 1 2 @ ~ 1 0 06261744 -multinomial n 1 3 @ ~ ; 1 0 05861855 -multiple n 1 3 @ ~ + 1 0 05859991 -multiple_correlation n 1 3 @ ~ ; 1 0 06027613 -multiple_correlation_coefficient n 1 2 @ ; 1 0 06033692 -multiple_fruit n 1 2 @ ~ 1 0 13137672 -multiple_mononeuropathy n 1 1 @ 1 0 14209087 -multiple_myeloma n 1 1 @ 1 0 14248422 -multiple_neuritis n 1 2 @ ~ 1 0 14353314 -multiple_personality n 1 1 @ 1 0 14394783 -multiple_regression n 1 3 @ ~ ; 1 0 06027613 -multiple_sclerosis n 1 2 @ %p 1 1 14094068 -multiple_star n 1 2 @ ~ 1 0 09363064 -multiple_voting n 1 2 @ ; 1 0 00184802 -multiplex n 2 1 @ 2 0 06277025 03798982 -multiplex_operation n 1 1 @ 1 0 13517717 -multiplexer n 1 2 @ ~ 1 0 03799113 -multiplicand n 1 1 @ 1 0 13733979 -multiplication n 3 3 @ ~ + 3 1 00849982 13517843 00871576 -multiplicative_inverse n 1 2 @ ; 1 0 13843173 -multiplicity n 2 4 @ ~ = + 2 1 05098750 05121908 -multiplier n 1 3 @ ~ + 1 0 13733818 -multiplier_factor n 1 2 @ ~ 1 0 13733818 -multiplier_onion n 1 2 @ %p 1 0 12433178 -multiprocessing n 1 1 @ 1 0 13518140 -multiprocessor n 1 1 @ 1 0 03799240 -multiprogramming n 1 1 @ 1 0 13518279 -multistage n 1 1 @ 1 0 15291110 -multistage_rocket n 1 2 @ %p 1 0 03799375 -multitude n 3 3 @ ~ + 3 1 13775093 08182716 08180190 -multitudinousness n 1 2 @ + 1 0 05122295 -multivalence n 1 3 @ + ; 1 0 14570330 -multivalency n 1 3 @ + ; 1 0 14570330 -multivariate_analysis n 1 3 @ ~ ; 1 0 06021247 -multiversity n 1 1 @ 1 0 08286801 -multivitamin n 1 2 @ %s 1 0 07938007 -multivitamin_pill n 1 2 @ %s 1 0 07938007 -mulwi n 1 1 @ 1 0 06984746 -mum n 3 2 @ + 3 0 11961100 10278128 04652345 -mumbai n 1 2 @ #p 1 0 08903872 -mumble n 1 2 @ + 1 0 07127252 -mumble-the-peg n 1 1 @ 1 0 00486490 -mumbler n 1 2 @ + 1 0 10342543 -mumblety-peg n 1 1 @ 1 0 00486490 -mumbling n 2 2 @ + 2 0 07132634 00279235 -mumbo_jumbo n 1 1 @ 1 1 06612420 -mumification_necrosis n 1 2 @ ; 1 0 14313661 -mummer n 1 2 @ ~ 1 0 10318892 -mummery n 1 1 @ 1 0 06609403 -mummichog n 1 2 @ #m 1 0 01447139 -mummification n 3 3 @ + ; 3 0 14578634 14313661 00820583 -mummy n 2 2 @ + 2 0 10278128 05218630 -mumps n 1 2 @ %p 1 0 14138178 -mumpsimus n 1 1 @ 1 0 05836714 -munch n 2 2 @ + 2 0 11196208 00841393 -munchausen n 1 1 @ 1 0 11196305 -munchausen's_syndrome n 1 1 @ 1 0 14307275 -munchausen_syndrome n 1 1 @ 1 0 14307275 -munchener n 1 1 @ 1 0 07887304 -muncher n 1 2 @ + 1 0 10338391 -munchhausen n 1 1 @ 1 0 11196305 -muncie n 1 2 @ #p 1 0 09085967 -munda n 1 1 @ 1 0 06936823 -munda-mon-khmer n 1 2 @ ~ 1 0 06936620 -mundaneness n 2 4 @ ~ = + 2 0 04880273 04794751 -mundanity n 2 4 @ ~ = + 2 0 04880273 04794751 -mung n 1 2 @ #m 1 0 12578255 -mung_bean n 1 2 @ #m 1 0 12578255 -mungo_park n 1 1 @ 1 0 11222655 -munich n 1 2 @ #p 1 1 08774227 -munich_beer n 1 1 @ 1 0 07887304 -municipal_bond n 1 2 @ ~ 1 0 13338657 -municipal_center n 1 2 @ #p 1 0 08543496 -municipal_government n 1 2 @ ~ 1 0 08225736 -municipal_note n 1 1 @ 1 0 13415043 -municipality n 2 4 @ ~ %p + 2 0 08626283 08225581 -munificence n 1 2 @ + 1 0 04832716 -muniments n 1 2 @ ; 1 0 06546931 -munition n 3 4 @ ~ %p + 3 1 04566257 03799610 03385557 -munitions_industry n 1 1 @ 1 0 08068924 -munj n 1 2 @ #m 1 0 12133151 -munja n 1 2 @ #m 1 0 12133151 -munjeet n 1 2 @ #m 1 0 12661045 -munjuk n 1 1 @ 1 0 06984746 -munro n 1 1 @ 1 0 11196627 -muntiacus n 1 3 @ #m %m 1 0 02434834 -muntingia n 1 3 @ #m %m 1 0 12193964 -muntingia_calabura n 1 2 @ #m 1 0 12194147 -muntjac n 1 2 @ #m 1 0 02434954 -muntz_metal n 1 2 @ ~ 1 0 14720238 -muon n 1 1 @ 1 0 09363214 -muraenidae n 1 3 @ #m %m 1 0 02527145 -mural n 1 3 @ ~ + 1 0 03799710 -muralist n 1 3 @ ~ + 1 0 10338498 -muramidase n 1 1 @ 1 0 14944455 -murder n 1 3 @ ~ + 1 1 00220522 -murder_charge n 1 1 @ 1 0 07235574 -murder_conviction n 1 2 @ ; 1 0 01194021 -murder_indictment n 1 1 @ 1 0 07235574 -murder_mystery n 1 1 @ 1 0 06371145 -murder_suspect n 1 1 @ 1 1 10339251 -murderee n 1 1 @ 1 0 10338628 -murderer n 1 3 @ ~ + 1 1 10338707 -murderess n 1 1 @ 1 0 10339179 -murderousness n 2 2 @ + 2 0 07547547 04830904 -murdoch n 2 2 @ ; 2 0 11196934 11196764 -muriatic_acid n 1 1 @ 1 0 14957057 -muridae n 1 3 @ #m %m 1 0 02331479 -muriel_sarah_spark n 1 1 @ 1 0 11309613 -muriel_spark n 1 1 @ 1 0 11309613 -murillo n 1 1 @ 1 0 11197633 -murine n 1 2 @ + 1 0 02331842 -murine_typhus n 1 1 @ 1 0 14141238 -muritaniya n 1 5 @ #m #p %m %p 1 0 08966820 -murk n 1 3 @ ~ + 1 0 14521648 -murkiness n 2 3 @ ~ + 2 0 14521648 04703698 -murmansk n 1 2 @ #p 1 0 09008723 -murmur n 4 3 @ ~ + 4 2 07386920 07114154 14334814 07211092 -murmur_vowel n 1 1 @ 1 0 07114154 -murmuration n 1 2 @ + 1 0 07386920 -murmurer n 1 2 @ + 1 0 10342543 -murmuring n 2 2 @ + 2 1 07386920 07211092 -muroidea n 1 3 @ #m %m 1 0 02330830 -murphy n 1 4 @ ~ #p %p 1 0 07710616 -murphy's_law n 1 1 @ 1 0 07153502 -murphy_bed n 1 1 @ 1 0 03799876 -murrain n 1 1 @ 1 0 14274592 -murray n 3 2 @ #p 3 0 11197417 11197099 09363420 -murray_gell-mann n 1 1 @ 1 0 10993777 -murray_river n 1 2 @ #p 1 0 09363420 -murre n 1 3 @ ~ #m 1 0 02047260 -murrow n 1 1 @ 1 0 11197743 -murrumbidgee n 1 2 @ #p 1 0 09363620 -murrumbidgee_river n 1 2 @ #p 1 0 09363620 -mus n 1 3 @ #m %m 1 0 02331960 -mus_musculus n 1 2 @ #m 1 0 02332156 -mus_rose n 1 2 @ #m 1 0 12171098 -musa n 1 3 @ #m %m 1 0 12352150 -musa_acuminata n 1 2 @ %p 1 0 12352639 -musa_basjoo n 1 1 @ 1 0 12352844 -musa_ensete n 1 2 @ #m 1 0 12353754 -musa_paradisiaca n 1 2 @ %p 1 0 12352990 -musa_paradisiaca_sapientum n 1 2 @ %p 1 0 12353203 -musa_textilis n 1 1 @ 1 0 12353431 -musaceae n 1 3 @ #m %m 1 0 12351975 -musales n 1 3 @ #m %m 1 0 12350234 -musca n 2 3 @ #m %m 2 0 09363810 02190648 -musca_domestica n 1 2 @ #m 1 0 02190790 -musca_volitans n 1 1 @ 1 0 14365119 -muscadel n 1 2 @ #s 1 0 07901457 -muscadelle n 1 2 @ #s 1 0 07901457 -muscadet n 2 1 @ 2 0 13147153 07896893 -muscadine n 2 5 @ ~ #m #p %p 2 0 13145250 07759424 -muscae_volitantes n 1 1 @ 1 0 14365119 -muscardinus n 1 3 @ #m %m 1 0 02353037 -muscardinus_avellanarius n 1 2 @ #m 1 0 02353172 -muscari n 1 3 @ #m %m 1 0 12460549 -muscari_comosum n 1 1 @ 1 0 12461109 -muscari_neglectum n 1 1 @ 1 0 12460957 -muscat n 4 4 @ #s #p %s 4 0 13147788 08975435 07901457 07760153 -muscat_and_oman n 1 5 @ #m #p %m %p 1 0 08975106 -muscat_grape n 1 2 @ %s 1 0 07760153 -muscatel n 2 3 @ #s %s 2 0 07901457 07760153 -musci n 1 3 @ #m %m 1 0 11538935 -muscicapa n 1 3 @ #m %m 1 0 01556040 -muscicapa_grisola n 1 2 @ #m 1 0 01556182 -muscicapa_striata n 1 2 @ #m 1 0 01556182 -muscicapidae n 1 3 @ #m %m 1 0 01555586 -muscidae n 1 3 @ #m %m 1 0 02190015 -muscivora n 1 3 @ #m %m 1 0 01555172 -muscivora-forficata n 1 2 @ #m 1 0 01555305 -muscle n 5 6 @ ~ #p %p + - 5 2 05289297 05289057 10339350 05198132 05030418 -muscle-builder n 1 1 @ 1 0 09862845 -muscle_builder n 1 1 @ 1 0 09862845 -muscle_building n 1 2 @ ~ 1 0 00625993 -muscle_cell n 1 3 @ ~ #p 1 0 05459232 -muscle_contraction n 1 3 @ ~ ; 1 0 00369802 -muscle_fiber n 1 3 @ ~ #p 1 1 05459232 -muscle_fibre n 1 3 @ ~ #p 1 0 05459232 -muscle_memory n 1 1 @ 1 0 05761277 -muscle_relaxant n 1 2 @ ~ 1 0 03800001 -muscle_sense n 1 1 @ 1 0 05658985 -muscle_spasm n 1 2 @ ~ 1 0 14360459 -muscle_system n 1 4 @ ~ #p %p 1 0 05461816 -muscle_tone n 1 1 @ 1 1 14545215 -musclebuilder n 1 1 @ 1 0 09862845 -musclebuilding n 1 2 @ ~ 1 0 00625993 -muscleman n 2 1 @ 2 1 10339350 09862845 -muscoidea n 1 2 @ #m 1 0 02189822 -muscovite n 2 3 @ ~ + 2 0 14683085 09729062 -muscovy n 1 2 @ #p 1 0 09003918 -muscovy_duck n 1 2 @ #m 1 0 01852671 -muscular_contraction n 1 3 @ ~ ; 1 0 00369802 -muscular_dystrophy n 1 2 @ ~ 1 1 14160365 -muscular_structure n 1 4 @ ~ #p %p 1 0 05461816 -muscular_tissue n 1 4 @ ~ #p - 1 0 05289057 -muscular_tonus n 1 1 @ 1 0 14545215 -muscularity n 3 3 @ ~ + 3 0 14044719 05030418 04633197 -musculature n 1 4 @ ~ #p %p 1 1 05461816 -musculophrenic_artery n 1 1 @ 1 0 05352601 -musculophrenic_vein n 1 1 @ 1 0 05374101 -musculoskeletal_system n 1 3 @ #p %p 1 0 05462057 -musculospiral_nerve n 1 1 @ 1 0 05504807 -musculus n 1 3 @ ~ %p 1 0 05289297 -musculus_abductor_digiti_minimi_manus n 1 2 @ #p 1 0 05291230 -musculus_abductor_digiti_minimi_pedis n 1 1 @ 1 0 05291373 -musculus_abductor_hallucis n 1 1 @ 1 0 05291495 -musculus_abductor_pollicis n 1 2 @ #p 1 0 05291604 -musculus_adductor_brevis n 1 2 @ #p 1 0 05291945 -musculus_adductor_hallucis n 1 1 @ 1 0 05292359 -musculus_adductor_longus n 1 2 @ #p 1 0 05292073 -musculus_adductor_magnus n 1 2 @ #p 1 0 05292200 -musculus_anconeus n 1 2 @ #p 1 0 05292856 -musculus_articularis_cubiti n 1 2 @ #p 1 0 05293773 -musculus_articularis_genus n 1 2 @ #p 1 0 05293944 -musculus_biceps_brachii n 1 2 @ #p 1 0 05579436 -musculus_biceps_femoris n 1 2 @ #p 1 0 05579053 -musculus_buccinator n 1 2 @ #p 1 0 05294068 -musculus_deltoideus n 1 2 @ #p 1 0 05549350 -musculus_intercostalis n 1 1 @ 1 0 05552287 -musculus_obliquus_externus_abdominis n 1 1 @ 1 0 05557839 -musculus_pectoralis n 1 3 @ ~ #p 1 0 05551711 -musculus_pectoralis_major n 1 1 @ 1 0 05551939 -musculus_pectoralis_minor n 1 1 @ 1 0 05552106 -musculus_quadriceps_femoris n 1 2 @ #p 1 0 05294819 -musculus_rhomboideus_major n 1 1 @ 1 0 05575185 -musculus_rhomboideus_minor n 1 1 @ 1 0 05575374 -musculus_sartorius n 1 1 @ 1 0 05589896 -musculus_scalenus n 1 1 @ 1 0 05590144 -musculus_serratus_anterior n 1 1 @ 1 0 05550494 -musculus_serratus_posterior n 1 2 @ ~ 1 0 05550688 -musculus_sphincter_ani n 1 3 @ #p %p 1 0 05571713 -musculus_sphincter_ani_externus n 1 2 @ #p 1 0 05571904 -musculus_sphincter_ani_internus n 1 2 @ #p 1 0 05572057 -musculus_sphincter_ductus_choledochi n 1 2 @ #p 1 0 05572629 -musculus_sphincter_ductus_pancreatici n 1 2 @ #p 1 0 05572782 -musculus_sphincter_pupillae n 1 2 @ #p 1 0 05572940 -musculus_sphincter_pylori n 1 2 @ #p 1 0 05573099 -musculus_sphincter_urethrae n 1 2 @ #p 1 0 05572227 -musculus_sphincter_vesicae n 1 2 @ #p 1 0 05572396 -musculus_sternocleidomastoideus n 1 2 @ #p 1 0 05590366 -musculus_temporalis n 1 1 @ 1 0 05602304 -musculus_teres_major n 1 1 @ 1 0 05590939 -musculus_teres_minor n 1 1 @ 1 0 05591096 -musculus_tibialis n 1 3 @ ~ #p 1 0 05591256 -musculus_transversalis_abdominis n 1 1 @ 1 0 05558078 -musculus_trapezius n 1 1 @ 1 0 05591770 -musculus_triceps_brachii n 1 2 @ #p 1 0 05579753 -musd n 1 1 @ 1 0 06703420 -muse n 2 3 @ ~ + 2 1 09565999 05835162 -muser n 1 2 @ + 1 0 10339504 -musette n 1 1 @ 1 0 03800371 -musette_pipe n 1 1 @ 1 0 03800485 -museum n 1 2 @ ~ 1 1 03800563 -musgoi n 1 1 @ 1 0 06984446 -musgu n 1 1 @ 1 0 06984746 -mush n 4 4 @ ~ %s + 4 0 09400826 07703333 06775969 00308208 -musher n 1 2 @ + 1 0 10339717 -mushiness n 2 3 @ ~ + 2 0 04939198 04627506 -mushroom n 5 5 ! @ ~ #p + 5 0 13001041 13000891 12997919 11442073 07734744 -mushroom-shaped_cloud n 1 1 @ 1 0 11442073 -mushroom_anchor n 1 1 @ 1 0 03800772 -mushroom_cloud n 1 1 @ 1 0 11442073 -mushroom_coral n 1 1 @ 1 0 01917882 -mushroom_pimple n 1 2 @ ~ 1 0 12966048 -mushroom_poisoning n 1 1 @ 1 0 14069057 -mushroom_sauce n 1 1 @ 1 0 07838811 -mushroom_wine_sauce n 1 1 @ 1 0 07831821 -mushy_peas n 1 1 @ 1 0 07726525 -musial n 1 1 @ 1 0 11197944 -music n 5 6 @ ~ %p + ; - 5 3 07020895 05718556 00543233 05718935 01162529 -music_box n 1 1 @ 1 0 03801353 -music_critic n 1 2 @ ~ 1 0 10339856 -music_department n 1 1 @ 1 0 08117540 -music_director n 1 2 @ ~ 1 0 09952539 -music_genre n 1 3 @ ~ - 1 0 07071942 -music_hall n 2 1 @ 2 1 03801533 07020423 -music_lesson n 1 2 @ ~ 1 0 00889760 -music_lover n 1 1 @ 1 1 09951616 -music_of_the_spheres n 1 1 @ 1 0 05719466 -music_paper n 1 1 @ 1 0 14957152 -music_rack n 1 1 @ 1 0 03801760 -music_school n 2 1 @ 2 0 08283649 03801671 -music_stand n 1 1 @ 1 0 03801760 -music_stool n 1 1 @ 1 0 03801880 -music_teacher n 1 2 @ ~ 1 0 10341343 -musical n 1 2 @ + 1 1 07019172 -musical_accompaniment n 1 2 @ ~ 1 0 07031752 -musical_arrangement n 1 2 @ ~ 1 0 07038400 -musical_box n 1 1 @ 1 0 03801353 -musical_chairs n 2 1 @ 2 0 00486670 00339173 -musical_comedy n 1 1 @ 1 1 07019172 -musical_composition n 1 3 @ ~ %p 1 1 07037465 -musical_drama n 1 1 @ 1 0 07026920 -musical_genre n 1 3 @ ~ - 1 0 07071942 -musical_group n 1 3 @ ~ %m 1 0 08246613 -musical_harmony n 1 2 @ ~ 1 0 07027180 -musical_instrument n 1 2 @ ~ 1 1 03800933 -musical_instrument_digital_interface n 1 1 @ 1 0 06666030 -musical_interval n 1 2 @ ~ 1 0 06858779 -musical_mode n 1 2 @ ~ 1 0 06861630 -musical_notation n 1 5 @ ~ #p %p ; 1 0 06814870 -musical_note n 1 3 @ ~ #m 1 0 06865345 -musical_octave n 1 1 @ 1 0 06859401 -musical_organisation n 1 3 @ ~ %m 1 0 08246613 -musical_organization n 1 3 @ ~ %m 1 0 08246613 -musical_passage n 1 2 @ ~ 1 0 07044917 -musical_perception n 1 2 @ ~ 1 0 05711791 -musical_performance n 1 3 @ ~ %p 1 0 00100253 -musical_phrase n 1 3 @ ~ #p 1 0 07045353 -musical_rhythm n 1 2 @ ~ 1 0 07086518 -musical_scale n 1 4 @ ~ %m ; 1 0 06856568 -musical_score n 1 2 @ %p 1 0 06815714 -musical_soiree n 1 1 @ 1 0 08255373 -musical_style n 1 3 @ ~ - 1 0 07071942 -musical_theater n 1 1 @ 1 1 07019172 -musical_theme n 1 3 @ ~ ; 1 0 07029247 -musical_time n 1 3 @ ~ ; 1 0 15122011 -musical_time_signature n 1 2 @ ~ 1 0 06864524 -musicality n 1 4 @ ~ = + 1 0 04983402 -musicalness n 1 4 @ ~ = + 1 0 04983402 -musician n 2 5 @ ~ #m + ; 2 2 10340312 10339966 -musicianship n 1 2 @ + 1 1 05636048 -musicogenic_epilepsy n 1 1 @ 1 0 14089240 -musicologist n 1 2 @ + 1 0 10341243 -musicology n 1 2 @ + 1 0 06171388 -musing n 1 3 @ ~ + 1 1 05785508 -musjid n 1 2 @ ; 1 0 03724756 -musk n 2 2 @ + 2 0 14846646 05714332 -musk_clover n 1 1 @ 1 0 12689305 -musk_deer n 1 2 @ #m 1 0 02435216 -musk_duck n 1 2 @ #m 1 0 01852671 -musk_hog n 1 3 @ ~ #m 1 0 02397529 -musk_kangaroo n 1 2 @ #m 1 0 01879837 -musk_mallow n 2 2 @ #m 2 0 12172481 12171098 -musk_ox n 1 2 @ #m 1 0 02411206 -musk_rose n 1 1 @ 1 0 12622297 -musk_sheep n 1 2 @ #m 1 0 02411206 -musk_thistle n 1 2 @ #m 1 0 11944954 -musk_turtle n 1 2 @ #m 1 0 01667432 -muskat n 1 1 @ 1 0 13147788 -muskellunge n 2 3 @ #p %p 2 0 07779535 02561514 -musket n 1 3 @ ~ + 1 1 03802007 -musket_ball n 1 1 @ 1 1 03802228 -musketeer n 1 3 @ #m + 1 0 10341446 -musketry n 2 3 @ %m ; 2 1 08389438 05643611 -muskhogean n 2 2 @ ~ 2 0 09662038 06913313 -muskhogean_language n 1 2 @ ~ 1 0 06913313 -muskiness n 1 1 @ 1 0 04981044 -muskmelon n 2 5 @ ~ #m #p %p 2 0 12164363 07755707 -muskogean n 2 2 @ ~ 2 0 09662038 06913313 -muskogean_language n 1 2 @ ~ 1 0 06913313 -muskogee n 3 3 @ #m #p 3 0 09662325 09132474 06912737 -muskrat n 2 3 @ ~ #m 2 0 14765575 02338145 -muskrat_fur n 1 2 @ ~ 1 0 14765575 -muskus_grass n 1 1 @ 1 0 12689305 -muskwood n 1 1 @ 1 0 11998317 -muslim n 1 4 @ ~ #m + 1 0 09682291 -muslim_calendar n 1 2 @ %p 1 0 15178841 -muslim_ummah n 1 2 @ ; 1 0 08224684 -muslimah n 1 2 @ ~ 1 0 10341573 -muslimism n 2 4 @ ~ %m - 2 0 08095647 06234825 -muslin n 1 2 @ ~ 1 0 03802393 -musnud n 1 2 @ %p 1 0 03802507 -musophaga n 1 2 @ #m 1 0 01825155 -musophagidae n 1 3 @ #m %m 1 0 01825009 -musophobia n 1 1 @ 1 0 14385325 -musquash n 1 2 @ #m 1 0 02338145 -muss n 1 2 @ + 1 0 14500047 -mussel n 2 3 @ ~ #p 2 0 07783550 01963571 -mussel_shrimp n 1 2 @ #m 1 0 01997825 -musset n 1 1 @ 1 0 11198094 -mussiness n 1 2 @ + 1 0 14500047 -mussitation n 1 2 @ + 1 0 07386920 -mussolini n 1 1 @ 1 0 11198253 -mussorgsky n 1 1 @ 1 0 11198375 -must n 3 2 @ + 3 0 09363970 07924655 04928194 -mustache n 1 3 @ ~ #p 1 1 05262185 -mustache_cup n 1 1 @ 1 0 03802643 -mustachio n 1 1 @ 1 0 05262534 -mustafa_kemal n 1 1 @ 1 0 10826952 -mustagh n 1 3 @ #p %p 1 0 09323824 -mustagh_range n 1 3 @ #p %p 1 0 09323824 -mustang n 1 2 @ ~ 1 0 02380583 -mustang_mint n 1 2 @ #m 1 0 12859679 -mustard n 3 4 @ ~ #m %s 3 0 11878283 07819480 07713763 -mustard_agent n 1 1 @ 1 0 14957270 -mustard_family n 1 3 @ #m %m 1 0 11867525 -mustard_gas n 1 1 @ 1 0 14957270 -mustard_greens n 1 1 @ 1 0 07713763 -mustard_oil n 1 1 @ 1 0 11878520 -mustard_plaster n 1 1 @ 1 0 03802800 -mustard_sauce n 1 1 @ 1 0 07838905 -mustard_seed n 1 3 @ #s #p 1 0 07819303 -mustard_tree n 2 2 @ #m 2 0 12908230 12299640 -mustela n 1 3 @ #m %m 1 0 02441723 -mustela_erminea n 1 2 @ ~ 1 0 02442172 -mustela_frenata n 1 1 @ 1 0 02442668 -mustela_nigripes n 1 2 @ #m 1 0 02443484 -mustela_nivalis n 1 1 @ 1 0 02442572 -mustela_putorius n 1 3 @ ~ #m 1 0 02443114 -mustela_rixosa n 1 1 @ 1 0 02442446 -mustela_vison n 1 1 @ 1 0 02443015 -mustelid n 1 3 @ ~ #m 1 0 02441326 -mustelidae n 1 3 @ #m %m 1 0 02440705 -musteline n 1 3 @ ~ #m 1 0 02441326 -musteline_mammal n 1 3 @ ~ #m 1 0 02441326 -mustelus n 1 3 @ #m %m 1 0 01492212 -mustelus_canis n 1 2 @ #m 1 0 01492708 -mustelus_mustelus n 1 1 @ 1 0 01492569 -mustelus_norrisi n 1 2 @ #m 1 0 01492860 -muster n 2 4 @ ~ + ; 2 0 08479615 01157850 -muster_call n 1 2 @ ; 1 0 01012125 -muster_roll n 1 2 @ ; 1 0 06496624 -musth n 1 1 @ 1 0 15288943 -mustiness n 1 2 @ + 1 0 04928194 -mutability n 1 4 ! @ ~ + 1 0 04741311 -mutableness n 1 4 ! @ ~ + 1 0 04741311 -mutagen n 1 1 @ 1 0 09364086 -mutagenesis n 1 3 @ ~ #p 1 0 07426108 -mutamycin n 1 2 @ ; 1 0 03774842 -mutant n 2 4 @ ~ + ; 2 1 10341660 01324305 -mutant_gene n 1 2 @ ~ 1 0 05439413 -mutation n 3 5 @ ~ %p + ; 3 0 10341660 07425011 07297811 -mutawa n 1 2 @ ; 1 0 08210411 -mutawa'een n 1 2 @ ; 1 0 08210411 -mutchkin n 1 1 @ 1 0 13618298 -mute n 2 3 @ ~ + 2 0 10342367 03802973 -mute_swan n 1 2 @ #m 1 0 01859190 -muteness n 2 3 @ ~ + 2 0 14551986 04651974 -mutilation n 1 3 @ ~ + 1 1 07433662 -mutilator n 1 2 @ + 1 0 10341955 -mutillidae n 1 2 @ %m 1 0 02214660 -mutineer n 1 2 @ + 1 1 10342180 -mutinus n 1 2 @ #m 1 0 13041172 -mutinus_caninus n 1 2 @ #m 1 0 13041312 -mutiny n 1 2 @ + 1 1 00963896 -mutisia n 1 2 @ #m 1 0 11996677 -mutism n 1 2 @ ~ 1 0 14551986 -muton n 1 1 @ 1 0 14957546 -mutsuhito n 1 1 @ 1 0 11171157 -mutt n 1 2 @ ~ 1 0 02084861 -mutter n 2 2 @ + 2 0 07386920 07211092 -mutterer n 1 2 @ + 1 0 10342543 -muttering n 2 2 @ + 2 1 07386920 07211092 -mutton n 1 2 @ #p 1 1 07666733 -mutton_chop n 2 1 @ 2 0 07666847 05262802 -mutton_quad n 1 1 @ 1 0 13712689 -mutton_snapper n 1 1 @ 1 0 02587479 -mutton_tallow n 1 1 @ 1 0 14957795 -muttonfish n 1 1 @ 1 0 02587479 -muttonhead n 1 1 @ 1 0 10039663 -mutual_affection n 1 1 @ 1 1 13812173 -mutual_aid n 1 1 @ 1 0 01216908 -mutual_exclusiveness n 1 1 @ 1 0 13858045 -mutual_fund n 2 2 @ ~ 2 0 13358895 08071516 -mutual_fund_company n 1 2 @ ~ 1 0 08071516 -mutual_inductance n 1 1 @ 1 0 13587236 -mutual_induction n 1 1 @ 1 0 11468442 -mutual_opposition n 1 1 @ 1 0 13856110 -mutual_resemblance n 1 1 @ 1 0 04747710 -mutual_savings_bank n 1 1 @ 1 0 08424501 -mutual_understanding n 1 1 @ 1 0 13812173 -mutualism n 1 2 @ ~ 1 0 13842622 -mutuality n 2 3 @ ~ + 2 1 13843401 13841863 -mutualness n 1 2 @ + 1 0 13843401 -muumuu n 1 1 @ 1 0 03788914 -muybridge n 1 1 @ 1 0 11198608 -muzhik n 1 1 @ 1 0 10342770 -muzjik n 1 1 @ 1 0 10342770 -muztag n 1 2 @ #p 1 0 09364249 -muztagh n 1 2 @ #p 1 0 09364249 -muzzle n 4 5 @ ~ #p %p + 4 2 03469687 02452464 03803284 03410740 -muzzle_loader n 1 2 @ ~ 1 1 03803116 -muzzle_velocity n 1 1 @ 1 0 15283920 -muzzler n 1 2 @ + 1 0 10342893 -mv n 2 2 @ #p 2 1 13642596 14645092 -mvp n 1 1 @ 1 0 10332257 -mwanza n 1 2 @ #p 1 0 09035735 -mwera n 1 1 @ 1 0 06994225 -mx n 1 2 @ #p 1 0 13638375 -mya n 1 3 @ #m %m 1 0 01957202 -mya_arenaria n 1 3 @ #m %p 1 0 01957335 -myaceae n 1 3 @ #m %m 1 0 01956924 -myacidae n 1 3 @ #m %m 1 0 01957075 -myadestes n 1 3 @ #m %m 1 0 01561059 -myalgia n 1 2 @ + 1 0 14329040 -myanmar n 1 6 @ #m #p %m %p - 1 0 08715390 -myanmar_monetary_unit n 1 3 @ ~ ; 1 0 13684140 -myasthenia n 2 1 @ 2 0 14078871 14044852 -myasthenia_gravis n 1 1 @ 1 0 14078871 -myasthenic_syndrome n 1 1 @ 1 0 14079156 -mycelia_sterilia n 1 3 @ #m %m 1 0 13082077 -mycelium n 1 4 @ ~ #p %p 1 0 13022709 -mycenae n 1 3 @ #p + 1 0 08787049 -mycenaean_civilisation n 1 1 @ 1 0 08291157 -mycenaean_civilization n 1 1 @ 1 0 08291157 -mycenaean_culture n 1 1 @ 1 0 08291157 -mycenaen n 1 1 @ 1 0 10342992 -mycetophilidae n 1 3 @ #m %m 1 0 02203457 -mycobacteria n 1 3 @ ~ #m 1 0 01377092 -mycobacteriaceae n 1 3 @ #m %m 1 0 01376801 -mycobacterium n 1 3 @ ~ #m 1 0 01377092 -mycobacterium_leprae n 1 1 @ 1 0 01377804 -mycobacterium_tuberculosis n 1 1 @ 1 0 01377278 -mycologist n 1 2 @ + 1 0 10343088 -mycology n 1 2 @ + 1 0 06069747 -mycomycin n 1 1 @ 1 0 03803488 -mycophage n 1 1 @ 1 0 10343211 -mycophagist n 1 2 @ + 1 0 10343211 -mycophagy n 1 2 @ + 1 0 00411859 -mycoplasma n 1 3 @ ~ #m 1 0 01373826 -mycoplasmal_pneumonia n 1 2 @ ~ 1 0 14147964 -mycoplasmataceae n 1 3 @ #m %m 1 0 01373440 -mycoplasmatales n 1 3 @ #m %m 1 0 01373272 -mycosis n 1 2 @ ~ 1 0 14176895 -mycostatin n 1 2 @ ; 1 0 03837157 -mycotoxin n 1 2 @ ~ 1 0 15036536 -mycrosporidia n 1 3 @ #m %m 1 0 01427241 -mycteria n 1 3 @ #m %m 1 0 02004661 -mycteria_americana n 1 2 @ #m 1 0 02004855 -mycteroperca n 1 3 @ #m %m 1 0 02570038 -mycteroperca_bonaci n 1 2 @ #m 1 0 02570164 -myctophidae n 1 3 @ #m %m 1 0 02543093 -mydriasis n 1 1 @ 1 0 00866079 -mydriatic n 1 2 @ ~ 1 0 03803610 -mydriatic_drug n 1 2 @ ~ 1 0 03803610 -myelatelia n 1 1 @ 1 0 14350106 -myelencephalon n 1 2 @ #p 1 0 05500812 -myelin n 1 3 @ #s + 1 0 14957893 -myelin_sheath n 1 4 @ #p %s %p 1 0 05464685 -myelinated_nerve_fiber n 1 2 @ %p 1 0 05464378 -myeline n 1 2 @ #s 1 0 14957893 -myelinisation n 1 1 @ 1 0 13518432 -myelinization n 1 1 @ 1 0 13518432 -myelitis n 1 1 @ 1 0 14350206 -myeloblast n 1 1 @ 1 0 05448704 -myeloblastic_leukemia n 1 1 @ 1 0 14244991 -myelocyte n 1 1 @ 1 0 05448597 -myelocytic_leukemia n 1 2 @ ~ 1 0 14245163 -myelofibrosis n 1 1 @ 1 1 14207978 -myelogram n 1 1 @ 1 0 03803780 -myelography n 1 1 @ 1 0 00906470 -myeloid_leukemia n 1 1 @ 1 0 14244160 -myeloma n 1 2 @ ~ 1 0 14248256 -myelomeningocele n 1 1 @ 1 0 14467395 -myenteric_plexus n 1 1 @ 1 0 05507756 -myg n 1 3 @ #p %p 1 0 13724977 -myiasis n 1 1 @ 1 0 14453840 -mylanta n 1 2 @ ; 1 0 14777523 -mylar n 1 2 @ ; 1 0 14592217 -myles_standish n 1 1 @ 1 0 11312362 -myliobatidae n 1 3 @ #m %m 1 0 01498822 -mylitta n 1 2 @ ; 1 0 09516498 -mylodon n 1 2 @ #m 1 0 02459485 -mylodontid n 1 3 @ ~ #m 1 0 02459190 -mylodontidae n 1 3 @ #m %m 1 0 02459001 -mym n 1 2 @ %p 1 0 13659943 -myna n 1 2 @ ~ 1 0 01577659 -myna_bird n 1 2 @ ~ 1 0 01577659 -mynah n 1 2 @ ~ 1 0 01577659 -mynah_bird n 1 2 @ ~ 1 0 01577659 -myocardial_infarct n 1 2 @ #p 1 0 14113021 -myocardial_infarction n 1 2 @ #p 1 1 14113021 -myocardial_inflammation n 1 1 @ 1 0 14339387 -myocardiopathy n 1 2 @ ~ 1 0 14110966 -myocarditis n 1 1 @ 1 0 14339387 -myocardium n 1 2 @ + 1 1 05391000 -myocastor n 1 3 @ #m %m 1 0 02366825 -myocastor_coypus n 1 2 @ #m 1 0 02366959 -myoclonus n 1 1 @ 1 0 14361415 -myoclonus_epilepsy n 1 1 @ 1 0 14087938 -myodynia n 1 1 @ 1 0 14329040 -myofibril n 1 3 @ #p %p 1 1 05459953 -myofibrilla n 1 3 @ #p %p 1 1 05459953 -myoglobin n 1 2 @ %s 1 0 15024606 -myoglobinuria n 1 1 @ 1 0 14507050 -myogram n 1 2 @ ~ 1 0 07005158 -myology n 1 1 @ 1 0 06082610 -myoma n 1 2 @ ~ 1 0 14248541 -myometritis n 1 1 @ 1 0 14350448 -myometrium n 1 2 @ #p 1 0 05520168 -myomorpha n 1 3 @ #m %m 1 0 02330582 -myonecrosis n 1 1 @ 1 0 11486983 -myoneural_junction n 1 1 @ 1 0 05474195 -myopathy n 1 2 @ + 1 0 14209201 -myope n 1 1 @ 1 0 10343355 -myopia n 1 4 ! @ + ; 1 0 14553290 -myopus n 1 3 @ #m %m 1 0 02345213 -myosarcoma n 1 1 @ 1 0 14241319 -myosin n 1 2 @ #s 1 0 15022617 -myosis n 2 2 @ + 2 0 14330340 00865808 -myositis n 1 2 @ ~ 1 0 14350292 -myositis_trichinosa n 1 1 @ 1 0 14350536 -myosotis n 1 3 @ #m %m 1 0 12821736 -myosotis_scorpiodes n 1 2 @ #m 1 0 12822115 -myosotis_sylvatica n 1 2 @ #m 1 0 12821895 -myotactic_reflex n 1 1 @ 1 0 00867606 -myotic n 1 1 @ 1 0 03772881 -myotic_drug n 1 1 @ 1 0 03772881 -myotis n 1 3 @ #m %m 1 0 02146526 -myotis_leucifugus n 1 2 @ #m 1 0 02146700 -myotis_velifer n 1 2 @ #m 1 0 02146879 -myotomy n 1 1 @ 1 0 00688462 -myotonia n 1 3 @ ~ + 1 0 14545353 -myotonia_atrophica n 1 1 @ 1 0 14163182 -myotonia_congenita n 1 1 @ 1 0 14545685 -myotonic_dystrophy n 1 1 @ 1 0 14163182 -myotonic_muscular_dystrophy n 1 1 @ 1 0 14163182 -myrcia n 1 3 @ #m %m 1 0 12332866 -myrciaria n 1 3 @ #m %m 1 0 12332866 -myrciaria_cauliflora n 1 3 @ #m %p 1 0 12333053 -myrdal n 1 1 @ 1 0 11198861 -myriad n 2 2 @ + 2 1 13776726 13751265 -myriagram n 1 3 @ #p %p 1 0 13724977 -myriameter n 1 2 @ %p 1 0 13659943 -myriametre n 1 2 @ %p 1 0 13659943 -myriapod n 1 1 @ 1 0 01783017 -myriapoda n 1 3 @ #m %m 1 0 01786402 -myrica n 1 3 @ #m %m 1 0 11741010 -myrica_cerifera n 1 1 @ 1 0 11741575 -myrica_gale n 1 2 @ #m 1 0 11741175 -myrica_pensylvanica n 1 1 @ 1 0 11741797 -myricaceae n 1 3 @ #m %m 1 0 11740824 -myricales n 1 3 @ #m %m 1 0 11740655 -myricaria n 1 3 @ #m %m 1 0 12386724 -myricaria_germanica n 1 2 @ #m 1 0 12386945 -myringa n 1 4 @ ~ #p %p 1 0 05318831 -myringectomy n 1 1 @ 1 0 00688557 -myringoplasty n 1 1 @ 1 0 00688647 -myringotomy n 1 1 @ 1 0 00688766 -myriophyllum n 1 3 @ #m %m 1 0 12326842 -myristic_acid n 1 1 @ 1 0 14958102 -myristica n 1 3 @ #m %m 1 0 11714150 -myristica_fragrans n 1 3 @ #m %p 1 0 11714382 -myristicaceae n 1 3 @ #m %m 1 0 11713960 -myrmecia n 1 3 @ #m %m 1 0 02222199 -myrmecobius n 1 3 @ #m %m 1 0 01885367 -myrmecobius_fasciatus n 1 2 @ #m 1 0 01885498 -myrmecophaga n 1 3 @ #m %m 1 0 02460275 -myrmecophaga_jubata n 1 2 @ #m 1 0 02460451 -myrmecophagidae n 1 3 @ #m %m 1 0 02459808 -myrmecophile n 1 1 @ 1 0 01386354 -myrmecophyte n 1 2 @ + 1 0 13179056 -myrmeleon n 1 3 @ #m %m 1 0 02263848 -myrmeleontidae n 1 3 @ #m %m 1 0 02263717 -myrmidon n 2 2 @ ; 2 0 10343449 09597628 -myrobalan n 1 1 @ 1 0 12643313 -myrobalan_plum n 1 1 @ 1 0 12643313 -myroxylon n 1 3 @ #m %m 1 0 12550968 -myroxylon_balsamum n 1 3 @ #m %s 1 0 12551173 -myroxylon_balsamum_pereirae n 1 3 @ #m %s 1 0 12551457 -myroxylon_pereirae n 1 3 @ #m %s 1 0 12551457 -myroxylon_toluiferum n 1 3 @ #m %s 1 0 12551173 -myrrh n 1 2 @ #s 1 0 12692875 -myrrh_tree n 1 3 @ #m %s 1 0 12692714 -myrrhis n 1 3 @ #m %m 1 0 12940427 -myrrhis_odorata n 1 3 @ #m %p 1 0 12940609 -myrsinaceae n 1 3 @ #m %m 1 0 12096798 -myrsine n 1 2 @ #m 1 0 12097013 -myrsine_family n 1 3 @ #m %m 1 0 12096798 -myrtaceae n 1 3 @ #m %m 1 0 12329899 -myrtaceous_tree n 1 2 @ #m 1 0 12330239 -myrtales n 1 3 @ #m %m 1 0 12322887 -myrtillocactus n 1 3 @ #m %m 1 0 11850337 -myrtillocactus_geometrizans n 1 3 @ #m %p 1 0 11850521 -myrtle n 2 2 @ ~ 2 1 11778092 12330469 -myrtle_beech n 1 1 @ 1 0 12266528 -myrtle_bird n 1 2 @ #m 1 0 01569423 -myrtle_family n 1 3 @ #m %m 1 0 12329899 -myrtle_flag n 1 4 @ #m %s %p 1 0 11780930 -myrtle_oak n 1 1 @ 1 0 12275888 -myrtle_spurge n 1 2 @ #m 1 0 12918404 -myrtle_warbler n 1 2 @ #m 1 0 01569423 -myrtus n 1 3 @ #m %m 1 0 12330336 -myrtus_communis n 1 2 @ #m 1 0 12330587 -mysidacea n 1 3 @ #m %m 1 0 01988971 -mysidae n 1 3 @ #m %m 1 0 01989097 -mysis n 1 3 @ #m %m 1 0 01989254 -mysoline n 1 2 @ ; 1 0 04002931 -mysophilia n 1 1 @ 1 0 07498769 -mysophobia n 1 2 @ + 1 0 14383848 -mysore n 2 2 @ #p 2 0 08904731 08902196 -mysore_thorn n 1 2 @ #m 1 0 12489046 -mystery n 2 3 @ ~ + 2 1 05685538 06370792 -mystery_novel n 1 1 @ 1 0 06368142 -mystery_play n 1 1 @ 1 0 07018604 -mystery_story n 1 2 @ ~ 1 1 06370792 -mystic n 1 3 @ ~ + 1 0 10343554 -mystic_jewel n 1 2 @ #m 1 0 09533790 -mysticeti n 1 3 @ #m %m 1 0 02062991 -mysticism n 2 3 @ ~ + 2 0 05948857 05784560 -mystification n 3 2 @ + 3 0 05685030 03803911 01266152 -mystifier n 1 3 @ ~ + 1 0 06784639 -mystique n 1 1 @ 1 1 04727559 -myth n 1 4 @ ~ #m + 1 1 06372680 -mythical_being n 1 2 @ ~ 1 0 09484664 -mythical_creature n 1 2 @ ~ 1 0 09492123 -mythical_monster n 1 2 @ ~ 1 0 09492123 -mythical_place n 1 2 @ ~ 1 0 05625879 -mythologisation n 1 2 @ + 1 0 06769238 -mythologist n 1 3 @ ~ + 1 0 10343869 -mythologization n 1 2 @ + 1 0 06769238 -mythology n 2 6 @ ~ %m + ; - 2 1 07978423 06147873 -mytilene n 1 3 @ #p %m 1 0 08783583 -mytilid n 1 3 @ ~ #m 1 0 01964049 -mytilidae n 1 3 @ #m %m 1 0 01963730 -mytilus n 1 3 @ #m %m 1 0 01963876 -mytilus_edulis n 1 3 @ #m %p 1 0 01964271 -myxedema n 1 1 @ 1 0 14121500 -myxine n 1 3 @ #m %m 1 0 01478816 -myxine_glutinosa n 1 2 @ #m 1 0 01478969 -myxinidae n 1 3 @ #m %m 1 0 01478300 -myxiniformes n 1 2 @ #m 1 0 01478073 -myxinikela n 1 3 @ #m %m 1 0 01479329 -myxinikela_siroka n 1 2 @ #m 1 0 01479459 -myxinoidea n 1 2 @ #m 1 0 01478073 -myxinoidei n 1 2 @ #m 1 0 01478073 -myxobacter n 1 2 @ #m 1 0 01378545 -myxobacterales n 1 3 @ #m %m 1 0 01377906 -myxobacteria n 1 2 @ #m 1 0 01378545 -myxobacteriaceae n 1 3 @ #m %m 1 0 01378137 -myxobacteriales n 1 3 @ #m %m 1 0 01377906 -myxobacterium n 1 2 @ #m 1 0 01378545 -myxocephalus n 1 3 @ #m %m 1 0 02646117 -myxocephalus_aenaeus n 1 2 @ #m 1 0 02646241 -myxoedema n 1 1 @ 1 0 14121500 -myxoma n 1 1 @ 1 0 14248669 -myxoma_virus n 1 1 @ 1 0 01333890 -myxomatosis n 1 1 @ 1 0 14274701 -myxomycete n 1 2 @ #m 1 0 12975804 -myxomycetes n 1 3 @ #m %m 1 0 12975608 -myxomycota n 1 3 @ #m %m 1 0 12975207 -myxophyceae n 1 2 @ #m 1 0 01358904 -myxosporidia n 1 3 @ #m %m 1 0 01427547 -myxosporidian n 1 2 @ #m 1 0 01427703 -myxovirus n 1 2 @ ~ 1 0 01336910 -n n 5 7 @ ~ #m #s #p %p ; 5 0 14647235 13831176 13647667 13580909 06832572 -n'djamena n 1 2 @ #p 1 0 08720280 -n-type_semiconductor n 1 1 @ 1 0 03833750 -n._y._stock_exchange n 1 2 @ %p 1 0 03822951 -n.b. n 1 1 @ 1 0 06764380 -na n 1 2 @ #s 1 0 14655371 -na-dene n 1 2 @ ~ 1 0 06913635 -naan n 1 1 @ 1 0 07684289 -nabalus n 1 3 @ #m %m 1 0 11996792 -nabalus_alba n 1 2 @ #m 1 0 11997160 -nabalus_serpentarius n 1 2 @ #m 1 0 11997409 -nablus n 1 2 @ #p 1 0 08793746 -nabob n 2 2 @ ; 2 0 10348752 10344004 -nabokov n 1 1 @ 1 0 11198981 -naboom n 1 2 @ #m 1 0 12921660 -nabothian_cyst n 1 1 @ 1 0 14202272 -nabothian_follicle n 1 1 @ 1 0 14202272 -nabothian_gland n 1 1 @ 1 0 05555167 -nabu n 1 2 @ ; 1 0 09519596 -nabumetone n 1 2 @ %s 1 0 03804048 -nac n 1 2 @ #p 1 0 08310722 -nacelle n 1 1 @ 1 0 03804211 -nacho n 1 1 @ 1 0 07712959 -nacimiento n 1 2 @ #p 1 0 09364426 -nacre n 1 2 @ + 1 0 14758706 -nacreous_cloud n 1 1 @ 1 0 09364582 -nad n 1 1 @ 1 0 14962612 -nada n 1 2 @ ~ 1 0 13740168 -nada_daiquiri n 1 1 @ 1 0 07914686 -nadine_gordimer n 1 1 @ 1 0 11007993 -nadir n 2 3 ! @ #p 2 1 14486639 08600760 -nadolol n 1 1 @ 1 0 03804311 -nadp n 1 1 @ 1 0 14962837 -naegele's_rule n 1 1 @ 1 0 05885412 -naemorhedus n 1 3 @ #m %m 1 0 02418648 -naemorhedus_goral n 1 2 @ #m 1 0 02418770 -nafcil n 1 1 @ 1 0 03804493 -nafcillin n 1 1 @ 1 0 03804493 -nafta n 1 1 @ 1 0 01092769 -nafud n 1 2 @ #p 1 0 09171376 -nag n 2 3 @ ~ + 2 0 10561861 02382204 -nag_hammadi n 2 2 @ #p 2 0 08899478 07984805 -nag_hammadi_library n 1 1 @ 1 0 07984805 -naga n 1 1 @ 1 0 06933429 -nagami n 1 1 @ 1 0 12713521 -nagami_kumquat n 1 1 @ 1 0 12713521 -nagano n 1 2 @ #p 1 0 08923586 -nagari n 1 1 @ 1 0 06352782 -nagari_script n 1 1 @ 1 0 06352782 -nagasaki n 1 2 @ #p 1 0 08925957 -nageia n 1 3 @ #m %m 1 0 11657314 -nageia_nagi n 1 2 @ #m 1 0 11657585 -nagger n 1 3 @ ~ + 1 0 10561861 -nagi n 1 2 @ #m 1 0 11657585 -nagoya n 1 2 @ #p 1 0 08923755 -naha_city n 1 2 @ #p 1 0 08924560 -nahuatl n 2 3 @ ~ #m 2 0 09648743 06918832 -nahum n 2 2 @ #p 2 0 11199137 06440313 -naiad n 2 3 @ #m ; 2 0 12611640 09550443 -naiad_family n 1 3 @ #m %m 1 0 12611243 -naiadaceae n 1 3 @ #m %m 1 0 12611243 -naiadales n 1 3 @ #m %m 1 0 12610933 -naias n 1 3 @ #m %m 1 0 12611479 -naif n 1 1 @ 1 0 10344121 -naiki n 1 1 @ 1 0 06981818 -nail n 3 5 @ ~ #p %p + 3 2 05581693 03804744 13652335 -nail-tailed_kangaroo n 1 2 @ #m 1 0 01878639 -nail-tailed_wallaby n 1 2 @ #m 1 0 01878639 -nail_enamel n 1 1 @ 1 0 03805725 -nail_hole n 1 1 @ 1 0 03805634 -nail_polish n 1 1 @ 1 0 03805725 -nail_pulling n 1 1 @ 1 0 00423423 -nail_removal n 1 1 @ 1 0 00423423 -nail_varnish n 1 1 @ 1 0 03805725 -nailbrush n 1 1 @ 1 0 03805180 -nailer n 1 2 @ + 1 0 10344203 -nailfile n 1 1 @ 1 0 03805280 -nailhead n 2 2 @ #p 2 0 03805503 03805374 -nailrod n 1 1 @ 1 0 12155773 -nainsook n 1 1 @ 1 0 03805933 -naira n 1 2 @ %p 1 0 13689073 -nairobi n 1 2 @ #p 1 0 08928582 -naismith n 1 1 @ 1 0 11199234 -naive_art n 1 1 @ 1 0 03861959 -naive_realism n 1 2 @ ; 1 0 05975659 -naiveness n 1 3 @ ~ + 1 0 04880573 -naivete n 1 3 ! @ ~ 1 0 04880573 -naivety n 1 2 @ ~ 1 0 04880573 -naja n 1 3 @ #m %m 1 0 01747739 -naja_haje n 1 2 @ #m 1 0 01748389 -naja_hannah n 1 2 @ #m 1 0 01748906 -naja_naja n 1 2 @ #m 1 0 01748264 -naja_nigricollis n 1 2 @ #m 1 0 01748686 -najadaceae n 1 3 @ #m %m 1 0 12611243 -najas n 1 3 @ #m %m 1 0 12611479 -najd n 1 2 @ #p 1 0 08995242 -naked_eye n 1 1 @ 1 0 05311795 -naked_lady n 2 2 @ #m 2 0 12455540 12419394 -naked_mole_rat n 1 3 @ ~ #m 1 0 02369680 -naked_option n 1 1 @ 1 0 00080474 -nakedness n 3 3 @ ~ + 3 1 14456138 14525548 04654066 -nakedwood n 2 2 @ #m 2 0 13142907 12331788 -nakuru n 1 2 @ #p 1 0 08929102 -nalchik n 1 2 @ #p 1 0 09008993 -nalfon n 1 3 @ %s ; 1 0 03328392 -nalidixic_acid n 1 1 @ 1 0 03806040 -nalline n 1 1 @ 1 0 03806180 -nalorphine n 1 1 @ 1 0 03806180 -naloxone n 1 1 @ 1 0 03806381 -naltrexone n 1 1 @ 1 0 03806547 -namby-pamby n 1 2 @ + 1 0 10344319 -name n 6 3 @ ~ + 6 5 06333653 14438788 07972279 10344443 01139636 06720964 -name-dropping n 1 1 @ 1 0 06766812 -name_and_address n 1 4 @ ~ #p %p 1 0 06787150 -name_calling n 1 1 @ 1 0 06720784 -name_day n 1 1 @ 1 0 15221718 -name_dropper n 1 1 @ 1 0 10344656 -name_part n 1 1 @ 1 0 05929887 -name_tag n 1 1 @ 1 0 07272920 -nameko n 1 2 @ #m 1 0 13009085 -namelessness n 1 2 @ + 1 0 14436285 -nameplate n 1 2 @ ~ 1 0 03806652 -namer n 1 2 @ + 1 0 10344774 -names n 1 1 @ 1 0 06720784 -namesake n 1 1 @ 1 1 10344922 -namib_desert n 1 2 @ #p 1 0 09171204 -namibia n 1 6 @ #p %m %p + ; 1 0 08699654 -namibian n 1 3 @ #m + 1 0 09723819 -naming n 2 3 @ ~ + 2 0 07230502 00163779 -nammad n 1 1 @ 1 0 03835729 -nammu n 1 2 @ ; 1 0 09519748 -namoi n 1 2 @ #p 1 0 09364778 -namoi_river n 1 2 @ #p 1 0 09364778 -nampa n 1 2 @ #p 1 0 09082058 -namtar n 1 2 @ ; 1 0 09519901 -namtaru n 1 2 @ ; 1 0 09519901 -namur n 1 2 @ #p 1 0 08851830 -nan n 4 4 @ ~ #p ; 4 0 10345015 10142747 09364954 07684289 -nan-chang n 1 2 @ #p 1 0 08727806 -nan-ning n 1 2 @ #p 1 0 08727945 -nan_ling n 1 2 @ #p 1 0 09365443 -nan_river n 1 2 @ #p 1 0 09364954 -nanaimo n 1 2 @ #p 1 0 08823156 -nanak n 1 2 @ ; 1 0 11199394 -nance n 1 2 @ ; 1 0 10076033 -nancere n 1 1 @ 1 0 06985404 -nanchang n 1 2 @ #p 1 0 08727806 -nancy n 1 2 @ #p 1 0 08936996 -nancy_freeman_mitford n 1 1 @ 1 0 11183074 -nancy_mitford n 1 1 @ 1 0 11183074 -nancy_witcher_astor n 1 1 @ 1 0 10826717 -nand_circuit n 1 1 @ 1 0 03806748 -nand_gate n 1 1 @ 1 0 03806748 -nanda_devi n 1 2 @ #p 1 0 09365128 -nandrolone n 1 1 @ 1 0 14748335 -nandu n 1 2 @ #m 1 0 01521756 -nanga_parbat n 1 2 @ #p 1 0 09365288 -nanism n 1 2 @ ~ 1 0 14506403 -nanjing n 1 2 @ #p 1 0 08728066 -nankeen n 1 1 @ 1 0 03806904 -nanking n 1 2 @ #p 1 0 08728066 -nanna n 3 3 @ ~ ; 3 0 10142747 09582019 09520103 -nanning n 1 2 @ #p 1 0 08727945 -nanny n 2 3 @ ~ %p 2 0 10345100 02416964 -nanny-goat n 1 2 @ %p 1 0 02416964 -nanocephaly n 1 2 @ + 1 0 14509299 -nanogram n 1 2 @ #p 1 0 13723189 -nanometer n 1 3 @ #p %p 1 0 13658278 -nanometre n 1 3 @ #p %p 1 0 13658278 -nanomia n 1 2 @ #m 1 0 01912809 -nanophthalmos n 1 1 @ 1 0 14200418 -nanosecond n 1 3 @ #p %p 1 0 15236015 -nanotechnology n 1 1 @ 1 0 06134899 -nanotube n 1 1 @ 1 0 14622491 -nanovolt n 1 2 @ #p 1 0 13642856 -nansen n 1 1 @ 1 0 11199727 -nantes n 1 2 @ #p 1 0 08937109 -nanticoke n 2 1 @ 2 0 09662530 06911067 -nantua n 1 1 @ 1 0 07839055 -nantucket n 1 1 @ 1 0 09098592 -nanus n 1 2 @ ~ 1 0 10040344 -naomi n 1 1 @ 1 0 11199943 -nap n 5 3 @ ~ + 5 0 15273626 04947087 03936045 00858377 00493742 -napa n 1 2 @ #m 1 0 11878808 -napaea n 1 3 @ #m %m 1 0 12184337 -napaea_dioica n 1 2 @ #m 1 0 12184468 -napalm n 1 1 @ 1 0 14958254 -nape n 1 2 @ #p 1 0 05547396 -napery n 1 2 @ ~ 1 0 04380617 -naphazoline n 1 1 @ 1 0 03807052 -naphtha n 1 1 @ 1 0 14958405 -naphthalene n 1 2 @ #s 1 0 14958564 -naphthalene_poisoning n 1 1 @ 1 0 14511730 -naphthol n 1 2 @ ~ 1 0 14958800 -naphthoquinone n 1 2 @ ~ 1 0 15092751 -napier n 1 1 @ 1 0 11200090 -napier's_bones n 1 2 @ ; 1 0 03807334 -napier's_rods n 1 2 @ ; 1 0 03807334 -napierian_logarithm n 1 1 @ 1 0 06813004 -napkin n 2 2 @ ~ 2 0 03807537 03188531 -napkin_ring n 1 1 @ 1 0 03807780 -naples n 1 4 @ #p %m + 1 0 08805565 -naples_garlic n 1 1 @ 1 0 12434483 -napoleon n 3 2 @ + 3 1 11200276 07627086 00493742 -napoleon_bonaparte n 1 1 @ 1 1 11200276 -napoleon_i n 1 1 @ 1 0 11200276 -napoleon_iii n 1 1 @ 1 0 11200492 -napoleonic_wars n 1 2 @ %p 1 0 01306358 -napoli n 1 3 @ #p %m 1 0 08805565 -nappy n 1 1 @ 1 0 03188531 -naprapath n 1 1 @ 1 1 09625309 -naprapathy n 1 1 @ 1 0 00708489 -naprosyn n 1 3 @ %s ; 1 0 03807895 -naproxen n 1 2 @ %s 1 0 03807895 -naproxen_sodium n 1 2 @ %s 1 0 03808144 -napu n 1 2 @ #m 1 0 02436353 -naqua n 1 2 @ ; 1 0 04481373 -nara n 1 1 @ 1 0 08126483 -naranjilla n 1 2 @ #m 1 0 12897118 -narc n 1 1 @ 1 0 10345302 -narcan n 1 2 @ ; 1 0 03806381 -narcism n 1 2 @ + 1 0 04835260 -narcissism n 1 2 @ + 1 0 04835260 -narcissist n 1 2 @ + 1 0 10345422 -narcissistic_personality n 1 1 @ 1 0 04619596 -narcissus n 2 4 @ ~ #m ; 2 0 12421467 09499338 -narcissus_jonquilla n 1 1 @ 1 0 12421917 -narcissus_papyraceus n 1 1 @ 1 0 12422230 -narcissus_pseudonarcissus n 1 2 @ ~ 1 0 12421683 -narcist n 1 2 @ + 1 0 10345422 -narco-state n 1 1 @ 1 0 08513417 -narcolepsy n 1 2 @ + 1 0 14307468 -narcoleptic n 2 2 @ + 2 0 10345556 03808424 -narcosis n 1 3 @ ~ + 1 0 05682055 -narcoterrorism n 1 2 @ ; 1 0 00764436 -narcotic n 1 4 @ ~ + - 1 0 03808564 -narcotic_antagonist n 1 2 @ ~ 1 0 03808977 -narcotics_agent n 1 1 @ 1 0 10345302 -narcotraffic n 1 1 @ 1 0 01114055 -nard n 1 1 @ 1 0 03809211 -nardil n 1 2 @ ; 1 0 03921749 -nardo n 1 1 @ 1 0 12957803 -nardoo n 1 1 @ 1 0 12957803 -nares_deep n 1 1 @ 1 0 09365587 -narghile n 1 1 @ 1 0 03533014 -nargileh n 1 1 @ 1 0 03533014 -naris n 1 3 @ ~ + 1 0 05600431 -nark n 2 3 @ + ; 2 0 10345659 10345302 -narragansett_bay n 1 2 @ #p 1 0 09365730 -narration n 3 5 @ ~ %p + ; 3 0 07221094 07220773 06397307 -narrative n 1 2 @ ~ 1 1 07221094 -narrator n 1 3 @ ~ + 1 0 10345804 -narrow n 1 3 @ ~ + 1 0 09365863 -narrow-body n 1 1 @ 1 0 03809312 -narrow-body_aircraft n 1 1 @ 1 0 03809312 -narrow-leaf_cattail n 1 1 @ 1 0 12156117 -narrow-leaf_penstemon n 1 2 @ #m 1 0 12886831 -narrow-leaved_bottletree n 1 1 @ 1 0 12196954 -narrow-leaved_everlasting_pea n 1 2 @ #m 1 0 12541805 -narrow-leaved_flame_flower n 1 2 @ #m 1 0 11863242 -narrow-leaved_plantain n 1 1 @ 1 0 12599185 -narrow-leaved_reedmace n 1 1 @ 1 0 12156117 -narrow-leaved_spleenwort n 1 2 @ #m 1 0 13194918 -narrow-leaved_strap_fern n 1 1 @ 1 0 13175074 -narrow-leaved_water_plantain n 1 1 @ 1 0 12612811 -narrow-leaved_white-topped_aster n 1 1 @ 1 0 12013701 -narrow-mindedness n 1 4 ! @ ~ + 1 0 06205411 -narrow_beech_fern n 1 1 @ 1 0 13231078 -narrow_boat n 1 1 @ 1 0 02947660 -narrow_escape n 1 1 @ 1 1 00061014 -narrow_gauge n 1 1 @ 1 0 03809456 -narrow_goldenrod n 1 1 @ 1 0 12017853 -narrow_margin n 1 1 @ 1 0 05121095 -narrow_wale n 1 1 @ 1 0 03809603 -narrowboat n 1 1 @ 1 0 02947660 -narrowbody_aircraft n 1 1 @ 1 0 03809312 -narrowhead_morel n 1 2 @ #m 1 0 13033577 -narrowing n 3 4 ! @ ~ + 3 1 05071027 13518563 00407407 -narrowness n 4 4 ! @ ~ + 4 1 05136788 06205411 05846626 05121095 -narthecium n 1 3 @ #m %m 1 0 12463574 -narthecium_americanum n 1 1 @ 1 0 12464128 -narthecium_ossifragum n 1 1 @ 1 0 12463975 -narthex n 2 2 @ #p 2 0 03809802 03809686 -narwal n 1 2 @ #m 1 0 02072493 -narwhal n 1 2 @ #m 1 0 02072493 -narwhale n 1 2 @ #m 1 0 02072493 -nasa n 1 1 @ 1 0 08126290 -nasal n 2 4 @ #p %p + 2 0 07119211 05277532 -nasal_bone n 1 3 @ #p %p 1 0 05277532 -nasal_canthus n 1 1 @ 1 0 05314462 -nasal_cavity n 1 3 @ #p %p 1 1 05528604 -nasal_concha n 1 1 @ 1 0 05229341 -nasal_consonant n 1 1 @ 1 0 07119211 -nasal_decongestant n 1 2 @ ~ 1 0 03809939 -nasal_meatus n 1 1 @ 1 0 05249094 -nasal_septum n 1 2 @ %p 1 0 05223110 -nasal_sinus n 1 1 @ 1 0 05253561 -nasal_twang n 1 1 @ 1 0 04989512 -nasalis n 1 2 @ #m 1 0 02489060 -nasalis_larvatus n 1 1 @ 1 0 02489166 -nasalisation n 1 2 @ + 1 0 07118002 -nasality n 1 3 @ ~ + 1 0 04989362 -nasalization n 1 2 @ + 1 0 07118002 -nascence n 1 2 @ ~ 1 0 07320302 -nascency n 1 3 @ ~ + 1 0 07320302 -nasdaq n 1 1 @ 1 0 03810186 -naseby n 2 3 @ #p ; 2 0 08886037 01288549 -nash n 1 1 @ 1 0 11200686 -nash_equilibrium n 1 2 @ ; 1 0 14003599 -nashville n 1 2 @ #p 1 1 09141297 -nasion n 1 1 @ 1 0 05234162 -nasofrontal_vein n 1 1 @ 1 0 05374280 -nasogastric_feeding n 1 1 @ 1 0 01058539 -nasolacrimal_duct n 1 1 @ 1 0 05332438 -nasopharyngeal_leishmaniasis n 1 1 @ 1 0 14181409 -nasopharynx n 1 4 @ #p %p + 1 0 05528854 -nasotracheal_tube n 1 1 @ 1 0 03810412 -nassau n 1 2 @ #p 1 1 08847570 -nasser n 2 2 @ #p 2 0 11200812 09332246 -nast n 1 1 @ 1 0 11200949 -nastiness n 3 5 ! @ ~ = + 3 0 14495761 04842515 04780755 -nasturtium n 3 6 @ ~ #m #p %m %p 3 0 12719684 11893004 07819769 -nasturtium_amphibium n 1 2 @ #m 1 0 11895714 -nasturtium_family n 1 3 @ #m %m 1 0 12719277 -nasturtium_officinale n 1 2 @ #m 1 0 11893131 -nasua n 1 3 @ #m %m 1 0 02509405 -nasua_narica n 1 2 @ #m 1 0 02509515 -nat_turner n 1 1 @ 1 0 11353195 -natal n 2 4 @ #p %m %p 2 0 08971693 08856037 -natal_day n 1 1 @ 1 0 15252422 -natal_plum n 3 3 @ #p %p 3 0 11771924 11771746 07746910 -natalie_wood n 1 1 @ 1 0 11395895 -natality n 1 1 @ 1 0 15276427 -natantia n 1 3 @ #m %m 1 0 01986367 -natation n 1 2 @ ~ 1 0 00443231 -natator n 1 2 @ ~ 1 0 10683126 -natatorium n 1 2 @ #p 1 0 04371225 -natchez n 1 2 @ #p 1 0 09105260 -nates n 1 2 @ #p 1 0 05559256 -nathan_bailey n 1 1 @ 1 0 10831136 -nathan_birnbaum n 1 1 @ 1 0 10873783 -nathan_hale n 1 1 @ 1 0 11023623 -nathaniel_bailey n 1 1 @ 1 0 10831136 -nathaniel_bowditch n 1 1 @ 1 0 10859485 -nathaniel_currier n 1 1 @ 1 0 10918358 -nathaniel_hawthorne n 1 1 @ 1 0 11035618 -naticidae n 1 3 @ #m %m 1 0 01947874 -nation n 4 5 @ ~ %m %p ; 4 2 08168978 08166552 11201061 08303692 -nation_of_islam n 1 2 @ %m 1 0 08476629 -national n 1 4 @ ~ #m + 1 1 09625401 -national_academy_of_sciences n 1 1 @ 1 0 08281029 -national_aeronautics_and_space_administration n 1 1 @ 1 0 08126290 -national_anthem n 1 2 @ ~ 1 1 07049055 -national_archives_and_records_administration n 1 1 @ 1 0 08126483 -national_assistance n 1 2 @ ; 1 0 01087740 -national_association_of_realtors n 1 2 @ %m 1 0 08487319 -national_association_of_securities_dealers_automated_quotations n 1 1 @ 1 0 03810186 -national_bank n 1 2 @ #m 1 0 08418631 -national_baseball_hall_of_fame n 1 2 @ #p 1 0 03810561 -national_capital n 1 2 @ ~ 1 0 08691669 -national_censorship n 1 1 @ 1 0 00822755 -national_climatic_data_center n 1 2 @ #p 1 0 08130292 -national_debt n 1 1 @ 1 0 13397519 -national_debt_ceiling n 1 1 @ 1 0 13398074 -national_flag n 1 1 @ 1 0 06882009 -national_geospatial-intelligence_agency n 1 3 @ #m #p 1 0 08396537 -national_guard n 1 5 @ ~ %m %p ; 1 1 08391387 -national_guard_bureau n 1 2 @ #p 1 0 08391696 -national_holiday n 1 2 @ ~ 1 0 15199592 -national_income n 1 1 @ 1 1 13256894 -national_institute_of_justice n 1 2 @ #p 1 0 08142170 -national_institute_of_standards_and_technology n 1 2 @ #p 1 0 08131005 -national_institutes_of_health n 1 3 @ #p %p 1 0 08134081 -national_insurance n 1 1 @ 1 0 01087498 -national_intelligence_community n 1 4 @ %m %p ; 1 0 08340153 -national_labor_relations_board n 1 1 @ 1 0 08126716 -national_leader n 1 2 @ ~ 1 1 10650162 -national_liberation_army n 2 2 @ ; 2 0 08035601 08035233 -national_liberation_front_of_corsica n 1 2 @ ; 1 0 08036005 -national_library_of_medicine n 1 2 @ #p 1 0 03810741 -national_monument n 1 1 @ 1 0 03810952 -national_oceanic_and_atmospheric_administration n 1 3 @ #p %p 1 0 08129883 -national_park n 1 2 @ ~ 1 1 08600992 -national_park_service n 1 2 @ #p 1 1 08139637 -national_reconnaissance_office n 1 3 @ #m #p 1 0 08347704 -national_rifle_association n 1 1 @ 1 0 08375722 -national_science_foundation n 1 1 @ 1 0 08126921 -national_security_agency n 1 3 @ #m #p 1 0 08348091 -national_security_council n 1 1 @ 1 0 08127760 -national_service n 1 2 @ ; 1 0 00579201 -national_socialism n 1 2 @ ~ 1 0 08366440 -national_socialist_german_workers'_party n 1 1 @ 1 0 08262309 -national_technical_information_service n 1 2 @ #p 1 0 08131254 -national_trading_policy n 1 2 @ ~ 1 0 06663018 -national_trust n 1 2 @ ; 1 0 08049125 -national_volunteers_association n 1 2 @ ; 1 0 08235623 -national_weather_service n 1 2 @ #p 1 0 08130476 -nationalisation n 3 2 @ + 3 0 01152461 01152300 01151788 -nationalism n 4 4 ! @ ~ + 4 2 04878101 05965022 07485047 05965195 -nationalist n 2 3 @ ~ + 2 0 10407310 10346015 -nationalist_china n 1 4 @ #p %m %p 1 0 08730550 -nationalist_leader n 1 2 @ ~ 1 0 10346198 -nationality n 2 2 @ + 2 1 07949463 13953787 -nationalization n 3 3 ! @ + 3 0 01152461 01152300 01151788 -nationhood n 1 1 @ 1 0 13926451 -native n 3 3 @ ~ + 3 1 09620794 09621232 00019046 -native_alaskan n 1 1 @ 1 0 09741074 -native_american n 1 3 @ ~ - 1 0 09644820 -native_australian n 1 1 @ 1 0 09676490 -native_bear n 1 1 @ 1 0 01882714 -native_beech n 1 1 @ 1 0 12698598 -native_cat n 1 1 @ 1 0 01884203 -native_cranberry n 1 2 @ #m 1 0 12254168 -native_fuchsia n 1 1 @ 1 0 12343951 -native_hawaiian n 1 1 @ 1 0 09742690 -native_holly n 1 2 @ #m 1 0 12562141 -native_land n 1 2 @ ~ 1 1 08510169 -native_language n 1 1 @ 1 0 06903396 -native_orange n 1 1 @ 1 0 11865738 -native_peach n 1 2 @ #p 1 0 07769306 -native_pear n 1 2 @ #m 1 0 12224140 -native_pomegranate n 1 1 @ 1 0 11865276 -native_speaker n 1 1 @ 1 0 10631131 -native_sulfur n 1 1 @ 1 0 14785325 -native_sulphur n 1 1 @ 1 0 14785325 -nativeness n 1 4 ! @ ~ + 1 0 04799881 -nativism n 2 3 @ + ; 2 0 06660668 05973198 -nativist n 1 2 @ + 1 0 09625676 -nativity n 2 3 @ ~ #p 2 0 07320302 06192908 -nato n 1 3 @ %m %p 1 0 08174398 -natriuresis n 1 2 @ + 1 0 14270241 -natrix n 1 3 @ #m %m 1 0 01737197 -natrix_maura n 1 1 @ 1 0 01738065 -natrix_natrix n 1 2 @ ~ 1 0 01737875 -natrix_sipedon n 1 2 @ #m 1 0 01737472 -natrolite n 1 1 @ 1 0 15107524 -natta n 1 1 @ 1 0 11201264 -natterjack n 1 1 @ 1 0 01646648 -nattiness n 1 2 @ + 1 0 04814025 -natural n 3 2 @ ; 3 0 10346392 06867218 01245950 -natural_ability n 1 2 @ ~ 1 0 05623937 -natural_action n 1 2 @ ~ 1 0 13518963 -natural_childbirth n 1 2 @ ~ 1 0 13518656 -natural_covering n 1 2 @ ~ 1 0 09257949 -natural_depression n 1 3 ! @ ~ 1 0 09366017 -natural_elevation n 1 4 ! @ ~ %p 1 0 09366317 -natural_enclosure n 1 2 @ ~ 1 0 09273291 -natural_endowment n 1 2 @ ~ 1 0 05624042 -natural_event n 1 2 @ ~ 1 0 07283608 -natural_family_planning n 1 2 @ ~ 1 0 00851689 -natural_fiber n 1 2 @ ~ 1 0 14959234 -natural_fibre n 1 2 @ ~ 1 0 14959234 -natural_gas n 1 2 @ %s 1 1 14960090 -natural_glass n 1 2 @ ~ 1 0 14879605 -natural_history n 1 1 @ 1 0 05794189 -natural_immunity n 1 2 @ ~ 1 0 14528571 -natural_language n 1 3 ! @ ~ 1 0 06904171 -natural_language_processing n 1 1 @ 1 0 06142412 -natural_language_processing_application n 1 2 @ ~ 1 0 06572011 -natural_language_processor n 1 2 @ ~ 1 0 06572011 -natural_law n 1 2 @ ~ 1 1 05870916 -natural_logarithm n 1 1 @ 1 0 06813004 -natural_number n 1 1 @ 1 0 13728367 -natural_object n 1 3 ! @ ~ 1 0 00019128 -natural_order n 1 1 @ 1 1 09366597 -natural_phenomenon n 1 2 @ ~ 1 1 11408559 -natural_philosophy n 1 3 @ ~ - 1 0 06090869 -natural_process n 1 2 @ ~ 1 0 13518963 -natural_resin n 1 2 @ ~ 1 0 14894481 -natural_resource n 1 2 @ ~ 1 1 13332009 -natural_resources n 1 2 @ ~ 1 1 13332009 -natural_rubber n 1 2 @ ~ 1 0 15006258 -natural_science n 1 2 @ ~ 1 1 06000400 -natural_scientist n 1 3 @ ~ ; 1 0 10346514 -natural_selection n 1 1 @ 1 0 13563746 -natural_shape n 1 2 @ ~ 1 0 13862282 -natural_spring n 1 2 @ ~ 1 0 09443453 -natural_state n 1 2 @ ~ 1 0 13939353 -natural_theology n 1 1 @ 1 0 06184963 -natural_virtue n 1 3 @ ~ ; 1 0 04847733 -naturalisation n 4 3 @ + ; 4 0 04787324 01187620 00920956 00084642 -naturalism n 2 3 @ + ; 2 1 05973372 08469457 -naturalist n 2 4 @ ~ + ; 2 0 10346955 10346514 -naturalization n 4 3 @ + ; 4 0 04787324 01187620 00920956 00084642 -naturalness n 3 5 ! @ ~ = + 3 1 04785908 04880830 04747246 -nature n 5 5 @ ~ #p %p = 5 4 04726724 09503682 09366762 04623113 05840431 -nature_study n 1 1 @ 1 0 05797899 -nature_worship n 1 1 @ 1 0 05949336 -naturism n 1 2 @ + 1 0 01031563 -naturist n 1 1 @ 1 0 10365701 -naturopath n 1 1 @ 1 1 10347110 -naturopathy n 1 1 @ 1 0 00708332 -nauch n 1 1 @ 1 0 00526793 -nauclea n 1 3 @ #m %m 1 0 12668732 -nauclea_diderrichii n 1 2 @ #m 1 0 12668917 -naucrates n 1 3 @ #m %m 1 0 02580055 -naucrates_ductor n 1 2 @ #m 1 0 02580188 -naught n 2 2 @ ~ 2 1 13740168 00067153 -naughtiness n 1 3 @ ~ + 1 0 04909563 -naumachia n 1 1 @ 1 0 03811163 -naumachy n 1 1 @ 1 0 03811163 -naupathia n 1 1 @ 1 0 14203942 -nauru n 2 5 @ #p %m %p + 2 0 08841483 08841209 -nauru_island n 1 3 @ #p %p 1 0 08841209 -nauruan n 1 3 @ #m + 1 0 09723944 -nausea n 2 3 @ ~ + 2 1 14359952 07504111 -nauseant n 1 3 @ ~ + 1 0 03283519 -nauseatingness n 1 2 @ + 1 0 04996571 -naut_mi n 2 1 @ 2 0 13660619 13660337 -nautch n 1 1 @ 1 0 00526793 -nautch_dance n 1 1 @ 1 0 00526793 -nautch_girl n 1 1 @ 1 0 10347204 -nautical_chain n 1 1 @ 1 0 13660084 -nautical_linear_unit n 1 2 @ ~ 1 0 13649626 -nautical_mile n 2 1 @ 2 0 13660619 13660337 -nautical_signal_flag n 1 2 @ ~ 1 0 06875392 -nautilidae n 1 3 @ #m %m 1 0 01968591 -nautilus n 3 2 @ #m 3 0 03811295 01970667 01968897 -navaho n 2 1 @ 2 0 09662661 06919712 -navajo n 2 1 @ 2 0 09662661 06919712 -naval_academy n 1 3 @ ~ ; 1 0 08279665 -naval_air_warfare_center_weapons_division n 1 2 @ #p 1 0 08193212 -naval_attache n 1 2 @ ; 1 0 10347298 -naval_battle n 1 2 @ ~ 1 0 00958477 -naval_blockade n 1 1 @ 1 1 01074970 -naval_brass n 1 1 @ 1 0 14960261 -naval_campaign n 1 1 @ 1 0 00970478 -naval_chart n 1 1 @ 1 0 03811648 -naval_commander n 1 3 @ ~ ; 1 0 10347446 -naval_division n 1 1 @ 1 0 08219226 -naval_engineer n 1 2 @ ; 1 0 10294421 -naval_engineering n 1 1 @ 1 0 06135503 -naval_equipment n 1 2 @ ~ 1 0 03811847 -naval_forces n 1 4 @ %m ; - 1 0 08191701 -naval_gun n 1 3 @ ~ #p 1 0 03811965 -naval_installation n 1 2 @ ; 1 0 03812119 -naval_missile n 1 1 @ 1 0 03812263 -naval_officer n 1 3 @ ~ ; 1 0 10347593 -naval_radar n 1 2 @ ~ 1 0 03812382 -naval_research_laboratory n 1 2 @ #p 1 0 03812541 -naval_shipyard n 1 3 @ ~ ; 1 0 03813704 -naval_special_warfare n 1 3 @ #p %m 1 0 08193448 -naval_surface_warfare_center n 1 2 @ #p 1 0 08193645 -naval_tactical_data_system n 1 1 @ 1 0 03812789 -naval_underwater_warfare_center n 1 2 @ #p 1 0 08193854 -naval_unit n 1 4 @ ~ #m ; 1 0 08191532 -naval_weaponry n 1 2 @ ~ 1 0 03812924 -navane n 1 2 @ ; 1 0 04425656 -navarino n 1 2 @ ; 1 0 01288795 -nave n 1 2 @ #p 1 0 03813078 -navel n 2 2 @ #p 2 1 05556595 08524404 -navel-gazing n 1 1 @ 1 0 05787848 -navel_orange n 1 1 @ 1 0 07749192 -navel_point n 1 1 @ 1 0 08524404 -navicular n 1 2 @ + 1 0 05272276 -navigability n 1 2 @ + 1 0 04719661 -navigation n 3 5 @ ~ %p + - 3 1 00815801 01105737 00314469 -navigation_light n 1 2 @ #p 1 0 03813369 -navigational_chart n 1 1 @ 1 0 03811648 -navigational_instrument n 1 2 @ ~ 1 0 03813176 -navigational_system n 1 2 @ ~ 1 0 03811444 -navigator n 3 3 @ ~ + 3 1 10546428 10348365 10347883 -navratilova n 1 1 @ 1 0 11201740 -navvy n 1 1 @ 1 0 10035809 -navy n 3 7 @ #p %m %p + ; - 3 2 08191701 04969703 08191987 -navy_base n 1 1 @ 1 0 03813612 -navy_bean n 1 1 @ 1 0 07727140 -navy_blue n 1 1 @ 1 0 04969703 -navy_cross n 1 1 @ 1 0 06707709 -navy_department n 1 1 @ 1 0 08144907 -navy_man n 1 2 @ ~ 1 0 09861395 -navy_seal n 1 3 @ #m ; 1 0 10348526 -navy_secretary n 1 1 @ 1 0 00603319 -navy_yard n 1 3 @ ~ ; 1 0 03813704 -nawab n 1 2 @ ; 1 0 10348752 -nawcwpns n 1 2 @ #p 1 0 08193212 -nay n 1 2 ! @ 1 1 07205210 -naysayer n 1 2 @ ~ 1 0 10349551 -naysaying n 1 1 @ 1 0 07204822 -nazarene n 3 1 @ 3 0 10349836 10349750 10349670 -nazareth n 1 2 @ #p 1 0 08794193 -naze n 1 2 @ #p 1 0 08765771 -nazi n 2 3 @ ~ ; 2 1 10350220 10350484 -nazi_germany n 1 1 @ 1 0 08170255 -nazi_party n 1 1 @ 1 0 08262309 -nazification n 1 1 @ 1 0 13520426 -naziism n 1 2 @ ~ 1 0 08366440 -nazimova n 1 1 @ 1 0 11201941 -nazism n 1 3 @ ~ + 1 1 08366440 -nb n 2 3 @ ~ #s 2 0 14646942 06764380 -nbe n 1 1 @ 1 0 13831310 -nbw n 1 1 @ 1 0 13835308 -nc n 1 4 @ #m #p %p 1 0 09126305 -ncdc n 1 2 @ #p 1 0 08130292 -nd n 2 4 @ #s #p %p 2 0 14645882 09129442 -ndebele n 1 1 @ 1 0 06994488 -ndjamena n 1 2 @ #p 1 0 08720280 -ne n 3 4 @ #s #p %p 3 0 14646152 13831843 09109444 -ne'er-do-well n 1 1 @ 1 0 10135953 -ne_plus_ultra n 1 3 @ ~ = 1 0 14459422 -neandertal n 1 3 @ #m + 1 0 02475078 -neandertal_man n 1 2 @ #m 1 0 02475078 -neanderthal n 1 3 @ #m + 1 0 02475078 -neanderthal_man n 1 2 @ #m 1 0 02475078 -neap n 1 1 @ 1 0 07403300 -neap_tide n 1 2 ! @ 1 0 07403300 -neapolitan n 1 2 @ #m 1 0 10350666 -neapolitan_ice_cream n 1 1 @ 1 0 07615052 -near-death_experience n 1 1 @ 1 0 07287610 -near_beer n 1 1 @ 1 0 07891189 -near_east n 1 4 @ ~ %p - 1 0 08791167 -near_gale n 1 2 @ #p 1 0 11462013 -near_miss n 1 1 @ 1 0 07301846 -near_thing n 1 1 @ 1 0 00204334 -near_vision n 1 1 @ 1 0 05656890 -nearness n 1 4 ! @ ~ + 1 1 05085572 -nearside n 1 2 @ ; 1 0 03813834 -nearsightedness n 1 3 @ + ; 1 0 14553290 -neat's-foot_oil n 1 1 @ 1 0 14960457 -neatness n 2 3 @ ~ + 2 0 14497365 04896515 -neb n 2 3 @ ~ #p 2 0 02452637 01758308 -nebbech n 1 2 @ ; 1 0 10350774 -nebbish n 1 2 @ ; 1 0 10350774 -nebcin n 1 2 @ ; 1 0 04443588 -nebe n 1 1 @ 1 0 13831994 -nebiim n 1 3 @ #p %p 1 0 06452601 -nebn n 1 1 @ 1 0 13831717 -nebo n 1 2 @ ; 1 0 09519596 -nebraska n 1 3 @ #p %p 1 1 09109444 -nebraska_fern n 1 2 @ #m 1 0 12935609 -nebraskan n 1 1 @ 1 0 09744161 -nebuchadnezzar n 2 2 @ ; 2 0 11202063 03813946 -nebuchadnezzar_ii n 1 2 @ ; 1 0 11202063 -nebuchadrezzar n 1 2 @ ; 1 0 11202063 -nebuchadrezzar_ii n 1 2 @ ; 1 0 11202063 -nebula n 4 4 @ ~ + ; 4 0 14960606 14314756 09366940 04682184 -nebular_hypothesis n 1 2 @ ; 1 0 05888215 -nebule n 1 1 @ 1 0 09367137 -nebuliser n 1 2 @ ~ 1 0 02754103 -nebulizer n 1 2 @ ~ 1 0 02754103 -nec n 1 1 @ 1 0 14136868 -necessary n 1 2 @ ~ 1 0 09367203 -necessitarian n 1 3 ! @ ~ 1 0 10350896 -necessity n 2 4 @ ~ = + 2 2 14450691 09367203 -neck n 5 4 @ ~ #p %p 5 1 05546540 09367733 07661357 03814348 03814112 -neck_bone n 1 3 @ ~ #p 1 0 05588551 -neck_brace n 1 1 @ 1 0 03814639 -neck_exercise n 1 1 @ 1 0 00630526 -neck_of_the_woods n 1 2 @ ~ 1 0 08641113 -neck_opening n 1 4 @ ~ #p %p 1 0 03814112 -neck_ruff n 1 2 @ ~ 1 0 03024746 -neck_sweetbread n 1 1 @ 1 0 07652881 -neckar n 1 2 @ #p 1 0 09367827 -neckar_river n 1 2 @ #p 1 0 09367827 -neckband n 3 4 @ ~ #p %p 3 0 03814528 03068181 03024882 -neckcloth n 1 1 @ 1 0 03814727 -necker n 1 2 @ + 1 0 10351064 -neckerchief n 1 1 @ 1 0 03814817 -necking n 2 3 @ ~ + 2 0 03448491 00854000 -necklace n 1 3 @ ~ %p 1 1 03814906 -necklace_poplar n 1 1 @ 1 0 12732966 -necklace_tree n 1 3 @ ~ #m 1 0 12553573 -necklet n 1 1 @ 1 0 03815149 -neckline n 1 3 @ ~ #p 1 0 03815278 -neckpiece n 1 2 @ ~ 1 0 03815482 -necktie n 1 2 @ ~ 1 1 03815615 -neckwear n 1 2 @ ~ 1 0 03816005 -necrobiosis n 1 3 @ ~ ; 1 0 11486178 -necrobiosis_lipoidica n 1 1 @ 1 0 14230588 -necrobiosis_lipoidica_diabeticorum n 1 1 @ 1 0 14230588 -necrology n 2 1 @ 2 0 06748133 06493926 -necrolysis n 1 1 @ 1 0 13520629 -necromancer n 2 3 @ ~ + 2 0 10625860 10351152 -necromancy n 2 3 @ ~ + 2 0 05978812 05777439 -necromania n 1 1 @ 1 0 09182650 -necrophagia n 1 1 @ 1 0 00842419 -necrophagy n 1 1 @ 1 0 00842419 -necrophilia n 1 1 @ 1 0 09182650 -necrophilism n 1 1 @ 1 0 09182650 -necropolis n 1 2 @ ~ 1 0 08521623 -necropsy n 1 1 @ 1 1 00141396 -necrosis n 1 3 @ ~ + 1 1 11486708 -necrotizing_enteritis n 1 1 @ 1 0 14345168 -necrotizing_enterocolitis n 1 1 @ 1 0 14136868 -nectar n 3 3 @ + ; 3 1 14846779 07924276 07610295 -nectarine n 2 4 @ #m #p %p 2 0 12648196 07751148 -nectarine_tree n 1 3 @ #m %p 1 0 12648196 -nectary n 1 2 @ + 1 1 11683838 -necturus n 1 3 @ #m %m 1 0 01634392 -necturus_maculosus n 1 2 @ #m 1 0 01634522 -nederland n 1 5 @ #m #p %m %p 1 0 08949093 -need n 4 3 @ ~ + 4 4 14449126 09367991 00023773 14493716 -needer n 1 1 @ 1 0 10766025 -neediness n 2 2 @ + 2 0 14493426 04719805 -needle n 4 4 @ ~ %p + 4 3 13157595 03816394 03816136 03923918 -needle-bush n 1 2 @ #m 1 0 12219289 -needle-wood n 1 2 @ #m 1 0 12219065 -needle_bearing n 1 1 @ 1 0 02780315 -needle_biopsy n 1 1 @ 1 0 05743174 -needle_blight n 1 1 @ 1 0 14218158 -needle_bush n 1 2 @ #m 1 0 12219289 -needle_cast n 1 1 @ 1 0 14218158 -needle_furze n 1 2 @ #m 1 0 12530439 -needle_palm n 1 1 @ 1 0 12483427 -needle_rush n 1 1 @ 1 0 12153914 -needle_spike_rush n 1 1 @ 1 0 12153914 -needle_wood n 1 2 @ #m 1 0 12219065 -needlebush n 1 2 @ #m 1 0 12219289 -needlecraft n 2 2 @ ~ 2 0 03816849 00910070 -needlefish n 2 3 @ ~ #m 2 0 02549989 01455778 -needlenose_pliers n 1 2 @ ; 1 0 03816530 -needlepoint n 2 2 @ ~ 2 0 03975788 03816659 -needlepoint_embroidery n 1 2 @ ~ 1 0 03816659 -needlewoman n 1 2 @ ~ 1 0 10033412 -needlewood n 1 2 @ #m 1 0 12219065 -needlework n 2 2 @ ~ 2 0 03816849 00910070 -needleworker n 1 2 @ ~ 1 0 10351281 -needy n 1 1 @ 1 0 08469678 -neel n 1 1 @ 1 0 11202581 -neem n 1 3 @ #m %p 1 0 12696492 -neem_cake n 1 2 @ #s 1 0 14782919 -neem_seed n 1 3 @ #p %s 1 0 12696830 -neem_tree n 1 3 @ #m %p 1 0 12696492 -neencephalon n 1 2 @ #p 1 0 05481549 -nefariousness n 1 3 @ ~ + 1 0 04852750 -nefazodone n 1 1 @ 1 0 03817062 -nefertiti n 1 1 @ 1 0 11202722 -neftali_ricardo_reyes n 1 1 @ 1 0 11203795 -nefud n 1 2 @ #p 1 0 09171376 -negaprion n 1 3 @ #m %m 1 0 01490546 -negaprion_brevirostris n 1 2 @ #m 1 0 01490670 -negara_brunei_darussalam n 1 4 @ #m #p %m 1 0 08896092 -negation n 3 4 @ ~ + ; 3 0 07280941 07206461 06751572 -negative n 2 4 ! @ ~ + 2 1 07204911 03817191 -negative_charge n 1 2 ! @ 1 1 11436019 -negative_chemotaxis n 1 1 @ 1 0 00863017 -negative_correlation n 1 2 @ ; 1 0 06033172 -negative_feedback n 1 1 @ 1 0 13520731 -negative_feedback_circuit n 1 1 @ 1 0 03097535 -negative_identification n 1 1 @ 1 0 06885906 -negative_magnetic_pole n 1 1 @ 1 0 03817331 -negative_muon n 1 1 @ 1 0 09363214 -negative_pole n 2 1 @ 2 0 03817522 03817331 -negative_reinforcer n 1 1 @ 1 0 05829012 -negative_reinforcing_stimulus n 1 1 @ 1 0 05829012 -negative_stimulation n 1 2 @ ; 1 0 05828263 -negative_stimulus n 1 2 @ ~ 1 0 05829480 -negativeness n 3 3 ! @ + 3 0 13857008 05167618 05108262 -negativism n 1 2 @ + 1 0 05167618 -negativist n 2 2 @ + 2 0 10351491 09999795 -negativity n 4 4 ! @ + ; 4 0 13857008 05167618 05108262 04944513 -negatron n 1 2 @ ~ 1 0 09271904 -negev n 1 2 @ #p 1 0 09171560 -negev_desert n 1 2 @ #p 1 0 09171560 -neggram n 1 1 @ 1 0 03806040 -neglect n 5 3 @ ~ + 5 3 05706629 14423428 00418615 04665813 00739270 -neglect_of_duty n 1 2 @ ; 1 0 00740609 -neglecter n 1 2 @ + 1 0 10351625 -neglectfulness n 1 3 @ ~ + 1 0 04665813 -neglige n 1 2 @ ~ 1 0 03817647 -negligee n 1 2 @ ~ 1 0 03817647 -negligence n 2 3 @ ~ + 2 1 00739270 04665813 -negotiable_instrument n 1 3 @ ~ ; 1 0 06481156 -negotiant n 1 3 @ ~ + 1 0 10351874 -negotiation n 2 3 @ ~ + 2 1 07148192 01266364 -negotiator n 1 3 @ ~ + 1 0 10351874 -negotiatress n 1 1 @ 1 0 10352208 -negotiatrix n 1 1 @ 1 0 10352208 -negress n 1 2 @ ; 1 0 09636796 -negritude n 1 1 @ 1 0 06219415 -negro n 1 4 @ ~ #m ; 1 1 09636339 -negro_peach n 1 2 @ #m 1 0 12670334 -negro_pepper n 1 2 @ #m 1 0 11696935 -negro_race n 1 2 @ %m 1 0 09636890 -negro_spiritual n 1 1 @ 1 0 07035598 -negro_vine n 1 2 @ #m 1 0 13239736 -negroid n 1 4 @ ~ #m ; 1 0 09636339 -negroid_race n 1 2 @ %m 1 0 09636890 -negus n 1 2 @ %s 1 0 07927070 -nehemiah n 1 2 @ #p 1 0 06436443 -nehru n 1 1 @ 1 0 11202833 -nei_monggol n 1 3 @ #p %p 1 0 08729971 -neigh n 1 2 @ + 1 0 07387316 -neighbor n 2 2 @ + 2 1 10352299 09368224 -neighborhood n 4 3 @ ~ + 4 2 08641113 08225090 13759146 08642331 -neighborliness n 1 3 ! @ + 1 1 04656051 -neighbour n 2 2 @ + 2 0 10352299 09368224 -neighbourhood n 2 3 @ ~ + 2 1 08641113 08225090 -neighbourliness n 1 2 @ + 1 0 04656051 -neil_armstrong n 1 1 @ 1 0 10823369 -neil_simon n 1 1 @ 1 0 11301129 -neisseria_gonorrhoeae n 1 1 @ 1 0 01365885 -nejd n 1 2 @ #p 1 0 08995242 -nekton n 1 2 @ #m 1 0 01384313 -nelfinavir n 1 1 @ 1 0 03817830 -nell_gwynn n 1 1 @ 1 0 11020888 -nell_gwynne n 1 1 @ 1 0 11020888 -nell_gywn n 1 1 @ 1 0 11020888 -nellie_bly n 1 1 @ 1 0 11290653 -nellie_ross n 1 1 @ 1 0 11270772 -nellie_tayloe_ross n 1 1 @ 1 0 11270772 -nelson n 2 2 @ ~ 2 0 11203059 00813336 -nelson_algren n 1 1 @ 1 0 10813711 -nelson_mandela n 1 1 @ 1 0 11153200 -nelson_rolihlahla_mandela n 1 1 @ 1 0 11153200 -nelumbo n 1 3 @ #m %m 1 0 11717239 -nelumbo_lutea n 1 3 @ #m %p 1 0 11717577 -nelumbo_nucifera n 1 1 @ 1 0 11717399 -nelumbonaceae n 1 3 @ #m %m 1 0 11717007 -nematocera n 1 3 @ #m %m 1 0 02199712 -nematoda n 1 3 @ #m %m 1 0 01929396 -nematode n 1 3 @ ~ #m 1 0 01930112 -nematode_worm n 1 3 @ ~ #m 1 0 01930112 -nembutal n 1 2 @ ; 1 0 03913129 -nemea n 1 2 @ #p 1 0 08788190 -nemean_games n 1 1 @ 1 0 00516559 -nemean_lion n 1 2 @ ; 1 0 09499494 -nemertea n 1 3 @ #m %m 1 0 01928360 -nemertean n 1 2 @ #m 1 0 01928517 -nemertina n 1 3 @ #m %m 1 0 01928360 -nemertine n 1 2 @ #m 1 0 01928517 -nemesis n 2 2 @ ; 2 1 09567421 14445226 -nemophila n 1 3 @ ~ #m 1 0 12836212 -nemophila_aurita n 1 2 @ #m 1 0 12837803 -nemophila_maculata n 1 1 @ 1 0 12836508 -nemophila_menziesii n 1 2 @ #m 1 0 12836337 -nenets n 1 1 @ 1 0 06959788 -nentsi n 1 1 @ 1 0 06959788 -nentsy n 1 1 @ 1 0 06959788 -neo-darwinism n 1 2 @ + 1 0 06110267 -neo-lamarckism n 1 1 @ 1 0 06110598 -neo-latin n 1 1 @ 1 0 06963822 -neo_jazz n 1 1 @ 1 0 07063921 -neobiotic n 1 2 @ ; 1 0 03818090 -neoceratodus n 1 2 @ #m 1 0 02516867 -neoceratodus_forsteri n 1 1 @ 1 0 02516994 -neoclassicism n 1 2 @ + 1 0 06154464 -neoclassicist n 1 2 @ + 1 0 10352557 -neocolonialism n 1 1 @ 1 0 00426757 -neocon n 1 1 @ 1 0 10352663 -neoconservatism n 1 1 @ 1 0 06216408 -neoconservative n 1 1 @ 1 0 10352663 -neocortex n 1 2 @ + 1 1 05481746 -neodymium n 1 2 @ #s 1 0 14645882 -neoencephalon n 1 2 @ #p 1 0 05481549 -neoexpressionism n 1 1 @ 1 0 08467576 -neofiber n 1 3 @ #m %m 1 0 02338319 -neofiber_alleni n 1 2 @ #m 1 0 02338449 -neohygrophorus n 1 3 @ #m %m 1 0 13073526 -neohygrophorus_angelesianus n 1 2 @ #m 1 0 13073703 -neolentinus n 1 2 @ #m 1 0 13051196 -neolentinus_ponderosus n 1 2 @ #m 1 0 13051346 -neoliberal n 1 2 @ + 1 0 10352782 -neoliberalism n 1 1 @ 1 0 06219009 -neolith n 1 1 @ 1 0 03818001 -neolithic n 1 2 @ #p 1 0 15233411 -neolithic_age n 1 2 @ #p 1 0 15233411 -neologism n 2 3 @ ~ + 2 0 06294441 00940560 -neologist n 1 2 @ + 1 0 10352898 -neology n 2 2 @ ~ 2 0 06294441 00940560 -neomycin n 1 1 @ 1 0 03818090 -neomys n 1 3 @ #m %m 1 0 01892876 -neomys_anomalus n 1 2 @ #m 1 0 01893164 -neomys_fodiens n 1 2 @ #m 1 0 01893021 -neon n 1 2 @ #s 1 0 14646152 -neon_induction_lamp n 1 1 @ 1 0 03818343 -neon_lamp n 1 1 @ 1 0 03818343 -neon_tube n 1 1 @ 1 1 03818343 -neonatal_death n 1 1 @ 1 0 14310172 -neonatal_hyperbilirubinemia n 1 1 @ 1 0 14319093 -neonatal_intensive_care_unit n 1 1 @ 1 0 08146410 -neonatal_mortality n 1 1 @ 1 0 15285772 -neonatal_mortality_rate n 1 1 @ 1 0 15285772 -neonatal_period n 1 1 @ 1 0 15145499 -neonate n 1 2 @ ~ 1 0 10353016 -neonatology n 1 1 @ 1 0 06061917 -neopallium n 1 1 @ 1 0 05481746 -neophobia n 1 1 @ 1 0 14383961 -neophron n 1 3 @ #m %m 1 0 01617633 -neophron_percnopterus n 1 2 @ #m 1 0 01617766 -neophyte n 3 2 @ ~ 3 0 11553634 10355449 09901502 -neoplasia n 1 1 @ 1 0 13520849 -neoplasm n 1 3 @ ~ + 1 0 14235200 -neoplastic_cell n 1 2 @ ~ 1 0 05431177 -neoplatonism n 1 1 @ 1 0 05973603 -neoplatonist n 1 1 @ 1 0 10353269 -neopolitan n 1 2 @ #m 1 0 09716837 -neoprene n 1 2 @ %s 1 0 15007377 -neoromanticism n 1 1 @ 1 1 08469785 -neosho n 1 2 @ #p 1 0 09368479 -neosho_river n 1 2 @ #p 1 0 09368479 -neosporin n 1 1 @ 1 0 03818629 -neostigmine n 1 1 @ 1 0 03818843 -neoteny n 1 2 @ + 1 0 06198083 -neotoma n 1 3 @ #m %m 1 0 02339768 -neotoma_cinerea n 1 3 @ ~ #m 1 0 02339922 -neotoma_floridana n 1 2 @ #m 1 0 02340358 -neotoma_fuscipes n 1 2 @ #m 1 0 02340186 -neotony n 1 2 @ + 1 0 14569683 -nepa n 1 2 @ #m 1 0 02242669 -nepal n 1 5 @ #p %m %p - 1 0 08906374 -nepal_trumpet_flower n 1 2 @ #m 1 0 11771147 -nepalese n 1 4 @ ~ #m + 1 0 09724066 -nepalese_monetary_unit n 1 2 @ ~ 1 0 13704788 -nepalese_rupee n 1 2 @ %p 1 0 13704897 -nepali n 2 4 @ ~ #m + 2 0 09724066 06972985 -nepenthaceae n 1 3 @ #m %m 1 0 12781659 -nepenthes n 1 3 @ #m %m 1 0 12781814 -nepeta n 1 3 @ #m %m 1 0 12859873 -nepeta_cataria n 1 2 @ #m 1 0 12859986 -nepeta_hederaceae n 1 2 @ #m 1 0 12847374 -nepheline n 1 2 @ #s 1 0 14683204 -nephelinite n 1 2 @ %s 1 0 14683447 -nephelite n 1 2 @ #s 1 0 14683204 -nephelium n 1 3 @ #m %m 1 0 12745160 -nephelium_lappaceum n 1 3 @ #m %p 1 0 12745386 -nephelium_litchi n 1 3 @ #m %p 1 0 12744387 -nephelium_longana n 1 3 @ #m %p 1 0 12743352 -nephelium_mutabile n 1 3 @ #m %p 1 0 12745564 -nephew n 1 3 ! @ ~ 1 1 10353355 -nephology n 1 1 @ 1 0 06119608 -nephoscope n 1 1 @ 1 0 03819047 -nephralgia n 1 1 @ 1 0 14329159 -nephrectomy n 1 1 @ 1 0 00686385 -nephrite n 1 2 @ #m 1 0 14683595 -nephritis n 1 3 @ ~ + 1 0 14113798 -nephroangiosclerosis n 1 1 @ 1 0 14113938 -nephroblastoma n 1 1 @ 1 0 14246097 -nephrocalcinosis n 1 1 @ 1 0 14115454 -nephrogenic_diabetes_insipidus n 1 1 @ 1 0 14119598 -nephrolepis n 1 3 @ #m %m 1 0 13204646 -nephrolepis_exaltata n 1 1 @ 1 0 13205058 -nephrolepis_exaltata_bostoniensis n 1 1 @ 1 0 13205058 -nephrolepis_pectinata n 1 1 @ 1 0 13205249 -nephrolith n 1 1 @ 1 0 09325824 -nephrolithiasis n 1 2 @ ~ 1 0 14115648 -nephrology n 1 1 @ 1 0 06052521 -nephron n 1 3 @ #p %p 1 0 05247178 -nephropathy n 1 2 @ ~ 1 0 14113228 -nephrops n 1 2 @ #m 1 0 01984131 -nephrops_norvegicus n 1 2 @ %p 1 0 01984245 -nephropsidae n 1 3 @ #m %m 1 0 01983958 -nephroptosia n 1 1 @ 1 0 14558899 -nephroptosis n 1 1 @ 1 0 14558899 -nephrosclerosis n 1 1 @ 1 0 14113938 -nephrosis n 2 2 @ ~ 2 0 14307724 14113228 -nephrotic_syndrome n 1 1 @ 1 0 14307724 -nephrotomy n 1 1 @ 1 0 00698234 -nephrotoxin n 1 2 @ + 1 0 15036211 -nephthys n 1 1 @ 1 0 09512692 -nephthytis n 1 3 @ ~ #m 1 0 11789962 -nephthytis_afzelii n 1 1 @ 1 0 11790089 -nepidae n 1 3 @ #m %m 1 0 02242293 -nepotism n 1 1 @ 1 0 01154900 -nepotist n 1 1 @ 1 0 10353475 -neptune n 2 3 @ #m ; 2 1 09569330 09368699 -neptunium n 1 1 @ 1 0 14646403 -nerd n 2 1 @ 2 0 10684630 10353598 -nereid n 1 3 @ ~ ; 1 0 09550585 -nereus n 1 2 @ ; 1 0 09567560 -nergal n 1 2 @ ; 1 0 09520223 -nerita n 1 2 @ #m 1 0 01946630 -nerita_peloronta n 1 2 @ #m 1 0 01946827 -neritic_zone n 1 1 @ 1 0 09369039 -neritid n 1 3 @ ~ #m 1 0 01946277 -neritid_gastropod n 1 3 @ ~ #m 1 0 01946277 -neritidae n 1 3 @ #m %m 1 0 01946118 -neritina n 1 2 @ #m 1 0 01947139 -nerium n 1 3 @ #m %m 1 0 11773860 -nerium_oleander n 1 2 @ #m 1 0 11773987 -nernst n 1 1 @ 1 0 11203287 -nero n 1 1 @ 1 0 11203472 -nero's_crown n 1 2 @ #m 1 0 11776511 -nero_claudius_caesar_drusus_germanicus n 1 1 @ 1 0 11203472 -nerodia n 1 2 @ #m 1 0 01737356 -nerodia_sipedon n 1 2 @ #m 1 0 01737472 -neroli_oil n 1 1 @ 1 0 14968038 -nerthus n 1 1 @ 1 0 09585757 -neruda n 1 1 @ 1 0 11203795 -nerva n 1 1 @ 1 0 11204069 -nerve n 3 4 @ ~ %p + 3 2 05474346 04857490 04838210 -nerve_agent n 1 2 @ ~ 1 0 14960721 -nerve_block_anaesthesia n 1 1 @ 1 0 14027396 -nerve_block_anesthesia n 1 1 @ 1 0 14027396 -nerve_cell n 1 4 @ ~ #p %p 1 0 05465567 -nerve_center n 2 2 @ ~ 2 0 08514412 05463533 -nerve_centre n 2 2 @ ~ 2 0 08514412 05463533 -nerve_compression n 1 2 @ ~ 1 0 14109485 -nerve_deafness n 1 1 @ 1 0 14551565 -nerve_end n 1 3 @ ~ #p 1 0 05469032 -nerve_ending n 1 3 @ ~ #p 1 0 05469032 -nerve_entrapment n 1 2 @ ~ 1 0 14109691 -nerve_fiber n 1 4 @ ~ #p %p 1 0 05464104 -nerve_fibre n 1 4 @ ~ #p %p 1 0 05464104 -nerve_gas n 1 2 @ ~ 1 0 14960721 -nerve_growth_factor n 1 1 @ 1 0 14734487 -nerve_impulse n 1 2 @ ~ 1 0 07308042 -nerve_pathway n 1 2 @ ~ 1 0 05475878 -nerve_plexus n 1 2 @ ~ 1 0 05236848 -nerve_tissue n 1 3 @ ~ #p 1 0 05296775 -nerve_tract n 1 2 @ ~ 1 0 05475878 -nervelessness n 1 2 @ + 1 0 04858632 -nerveroot n 1 1 @ 1 0 12056601 -nerves n 2 3 @ ~ ; 2 2 14375576 04862236 -nervi n 1 1 @ 1 0 11203920 -nervii_olfactorii n 1 2 @ #p 1 0 05477946 -nervous_breakdown n 1 2 @ ~ 1 1 14066661 -nervous_disorder n 1 2 @ ~ 1 0 14084880 -nervous_exhaustion n 1 1 @ 1 0 14066806 -nervous_impulse n 1 2 @ ~ 1 0 07308042 -nervous_prostration n 1 1 @ 1 0 14066806 -nervous_strain n 1 3 @ ~ ; 1 0 14375890 -nervous_system n 1 4 @ ~ #p %p 1 1 05462315 -nervous_tissue n 1 3 @ ~ #p 1 0 05296775 -nervousness n 3 3 @ ~ + 3 1 07525760 14375576 04624959 -nervure n 2 2 @ ~ 2 0 13098186 02468735 -nervus n 1 3 @ ~ %p 1 0 05474346 -nervus_abducens n 1 1 @ 1 0 05479108 -nervus_accessorius n 1 1 @ 1 0 05480401 -nervus_coccygeus n 1 1 @ 1 0 05569577 -nervus_facialis n 1 2 @ #p 1 0 05479314 -nervus_femoralis n 1 2 @ #p 1 0 05568104 -nervus_glossopharyngeus n 1 1 @ 1 0 05479786 -nervus_hypoglosus n 1 1 @ 1 0 05480607 -nervus_ischiadicus n 1 2 @ #p 1 0 05567875 -nervus_oculomotorius n 1 1 @ 1 0 05478526 -nervus_opticus n 1 2 @ #p 1 0 05478336 -nervus_phrenicus n 1 1 @ 1 0 05568550 -nervus_radialis n 1 1 @ 1 0 05504807 -nervus_saphenus n 1 2 @ #p 1 0 05568349 -nervus_spinalis n 1 3 @ ~ %p 1 0 05569053 -nervus_trigeminus n 1 1 @ 1 0 05478896 -nervus_ulnaris n 1 3 @ ~ #p 1 0 05568767 -nervus_vagus n 1 1 @ 1 0 05480076 -nervus_vestibulocochlearis n 1 2 @ #p 1 0 05479503 -nescience n 1 2 @ + 1 0 05988743 -nesokia n 1 3 @ #m %m 1 0 02334079 -ness n 1 2 @ ~ 1 0 09233715 -nesselrode n 1 1 @ 1 0 07618684 -nesselrode_pudding n 1 1 @ 1 0 07618684 -nessie n 1 2 @ #p 1 0 09487821 -nest n 5 4 @ ~ + ; 5 2 09369169 03819217 08643729 08244346 03819336 -nest_egg n 2 1 @ 2 0 13359572 03819448 -nester n 2 2 @ + 2 0 10643218 01514926 -nesting_place n 1 1 @ 1 1 08610975 -nestle n 1 2 @ + 1 0 00417643 -nestling n 2 3 @ ~ %p 2 1 01504344 09917593 -nestor n 2 4 @ #m %m ; 2 0 11204276 01818704 -nestor_notabilis n 1 2 @ #m 1 0 01818832 -nestor_paz_zamora_commission n 1 2 @ ; 1 0 08035233 -nestorian n 1 1 @ 1 0 10353734 -nestorian_church n 1 1 @ 1 0 08085359 -nestorianism n 1 1 @ 1 0 06190305 -nestorius n 1 2 @ + 1 0 11204409 -net n 6 5 @ ~ %p + ; 6 2 03580615 03819994 13258362 03820318 03820154 03819595 -net_ball n 1 1 @ 1 0 00569073 -net_estate n 1 2 @ ; 1 0 13251424 -net_income n 1 3 @ ~ %p 1 0 13258362 -net_melon n 2 3 @ #p %p 2 0 12165170 07756641 -net_profit n 1 3 @ ~ %p 1 0 13258362 -net_sales n 1 1 @ 1 0 13261107 -net_ton n 1 3 @ #p %p 1 0 13721529 -netball n 1 1 @ 1 0 00482122 -nether_region n 1 3 @ ~ ; 1 0 05629682 -netherlander n 1 2 @ #m 1 0 09713108 -netherlands n 1 5 @ #m #p %m %p 1 0 08949093 -netherlands_antilles n 1 3 @ #p %p 1 0 08748499 -netherlands_guiana n 1 4 @ #m #p %p 1 0 09030752 -netherworld n 1 3 @ %p ; 1 0 05629381 -netkeeper n 2 1 @ 2 0 10134001 00464037 -netminder n 1 1 @ 1 0 10134001 -netscape n 1 1 @ 1 0 06571862 -netted_melon n 2 3 @ #p %p 2 0 12165170 07756641 -netting n 2 3 @ ~ + 2 0 03429914 00909386 -nettle n 1 3 @ ~ + 1 0 12392070 -nettle-leaved_bellflower n 1 1 @ 1 0 12039122 -nettle-leaved_goosefoot n 1 1 @ 1 0 11830045 -nettle_family n 1 3 @ #m %m 1 0 12391745 -nettle_rash n 1 1 @ 1 0 14322248 -nettle_tree n 1 3 @ ~ #m 1 0 12409231 -nettleleaf_goosefoot n 1 1 @ 1 0 11830045 -network n 5 5 @ ~ %p + ; 5 3 08434259 03820474 03819595 03820950 03820728 -network_architecture n 1 1 @ 1 0 06725680 -network_army n 1 1 @ 1 0 07949160 -network_programming n 1 1 @ 1 0 06486042 -network_topology n 1 2 @ ~ 1 0 05730365 -neumann n 1 1 @ 1 0 11369035 -neural_arch n 1 2 @ #p 1 0 05587997 -neural_impulse n 1 2 @ ~ 1 0 07308042 -neural_net n 2 3 @ ~ #p 2 0 06725467 05501711 -neural_network n 2 3 @ ~ #p 2 0 06725467 05501711 -neural_structure n 1 2 @ ~ 1 0 05462674 -neural_tube n 1 1 @ 1 0 01463933 -neuralgia n 1 3 @ ~ + 1 0 14329262 -neuralgy n 1 3 @ ~ + 1 0 14329262 -neurasthenia n 1 2 @ + 1 0 14066959 -neurasthenic n 1 2 @ + 1 0 10353813 -neurectomy n 1 1 @ 1 0 00686471 -neurilemma n 1 2 @ #p 1 0 05464939 -neurilemoma n 1 1 @ 1 0 14249138 -neurinoma n 1 1 @ 1 0 14248787 -neuritis n 1 2 @ ~ 1 0 14350837 -neuroanatomy n 1 2 @ + 1 0 06060208 -neurobiologist n 1 3 @ ~ + 1 0 10353928 -neurobiology n 1 3 @ ~ + 1 0 06078511 -neuroblast n 1 1 @ 1 0 05448501 -neuroblastoma n 1 1 @ 1 0 14248899 -neurochemical n 1 2 @ ~ 1 0 14807410 -neurodermatitis n 1 1 @ 1 0 14224341 -neuroepithelioma n 1 1 @ 1 0 14249037 -neuroepithelium n 1 2 @ #p 1 0 05240850 -neuroethics n 1 1 @ 1 0 06159924 -neurofibroma n 1 1 @ 1 0 14249138 -neurofibromatosis n 1 1 @ 1 0 14158179 -neurogenesis n 1 1 @ 1 0 13520981 -neurogenic_bladder n 1 1 @ 1 0 14401512 -neuroglia n 1 6 @ ~ #s #p %p + 1 0 05467054 -neurogliacyte n 1 3 @ ~ #p 1 0 05467432 -neuroglial_cell n 1 3 @ ~ #p 1 0 05467432 -neurohormone n 1 1 @ 1 0 05411430 -neurohypophysis n 1 3 @ #p %p 1 0 05484862 -neurolemma n 1 2 @ #p 1 0 05464939 -neuroleptic n 1 2 @ ~ 1 0 03713736 -neuroleptic_agent n 1 2 @ ~ 1 0 03713736 -neuroleptic_drug n 1 2 @ ~ 1 0 03713736 -neurolinguist n 1 2 @ + 1 0 10354053 -neurolinguistics n 1 2 @ + 1 0 06179290 -neurological_disease n 1 2 @ ~ 1 0 14084880 -neurological_disorder n 1 2 @ ~ 1 0 14084880 -neurologist n 1 3 @ ~ + 1 0 10354265 -neurology n 2 4 @ + ; - 2 0 06078978 06052864 -neurolysin n 1 2 @ ~ 1 0 15036321 -neuroma n 1 2 @ + 1 0 14249262 -neuromuscular_blocking_agent n 1 2 @ ~ 1 0 14961512 -neuromuscular_junction n 1 1 @ 1 0 05474195 -neuron n 1 5 @ ~ #p %p + 1 0 05465567 -neurontin n 1 1 @ 1 0 03409070 -neuropathy n 1 2 @ ~ 1 0 14208438 -neurophysiology n 1 3 @ + - 1 0 06081602 -neuropil n 1 2 @ #s 1 0 05483122 -neuropile n 1 2 @ #s 1 0 05483122 -neuroplasty n 1 1 @ 1 0 00682538 -neuropsychiatry n 1 2 @ + 1 0 06053101 -neuropsychology n 1 2 @ + 1 0 06140799 -neuroptera n 1 3 @ #m %m 1 0 02263038 -neuropteran n 1 3 @ ~ #m 1 0 02263378 -neuropteron n 1 3 @ ~ #m 1 0 02263378 -neuropterous_insect n 1 3 @ ~ #m 1 0 02263378 -neurosarcoma n 1 1 @ 1 0 14241400 -neuroscience n 1 4 @ ~ + - 1 0 06081833 -neuroscientist n 1 3 @ ~ + 1 0 10354580 -neurosis n 1 3 @ ~ + 1 1 14393161 -neurospora n 1 2 @ #m 1 0 12964321 -neurosurgeon n 1 1 @ 1 0 10354754 -neurosurgery n 1 1 @ 1 0 00688915 -neurosyphilis n 1 2 @ ~ 1 0 14135065 -neurotic n 1 3 @ ~ + 1 1 10354898 -neurotic_depression n 1 2 ! @ 1 0 14390967 -neuroticism n 1 2 @ ~ 1 0 14393161 -neurotoxin n 1 3 @ ~ + 1 0 15036321 -neurotransmitter n 1 2 @ ~ 1 0 14807558 -neurotrichus n 1 3 @ #m %m 1 0 01891145 -neurotrichus_gibbsii n 1 2 @ #m 1 0 01891274 -neurotropism n 1 1 @ 1 0 00862310 -neuter n 1 2 @ + 1 1 06329313 -neutering n 1 3 @ ~ + 1 0 00692506 -neutral n 1 3 @ ~ + 1 0 10355142 -neutral_spirits n 1 2 @ %s 1 0 07902121 -neutralisation n 4 3 @ + ; 4 0 13521072 00234675 00234423 00233386 -neutralisation_reaction n 1 1 @ 1 0 13521072 -neutralism n 1 2 @ + 1 1 06662712 -neutralist n 1 2 @ + 1 1 10355306 -neutrality n 3 2 @ + 3 1 01240850 06205018 05039819 -neutralization n 4 3 @ + ; 4 1 00234423 13521072 00234675 00233386 -neutralization_fire n 1 1 @ 1 0 00991772 -neutralization_reaction n 1 1 @ 1 0 13521072 -neutrino n 1 1 @ 1 0 09369412 -neutron n 1 1 @ 1 0 09369520 -neutron_bomb n 1 1 @ 1 1 03821145 -neutron_flux n 1 1 @ 1 0 15287199 -neutron_radiation n 1 1 @ 1 0 11487298 -neutron_star n 1 2 @ ~ 1 0 09369692 -neutropenia n 1 2 @ ~ 1 0 14196543 -neutrophil n 1 2 @ ~ 1 1 05453657 -neutrophile n 1 2 @ ~ 1 0 05453657 -neva n 1 2 @ #p 1 0 09369844 -neva_river n 1 2 @ #p 1 0 09369844 -nevada n 1 3 @ #p %p 1 0 09110422 -nevadan n 1 1 @ 1 0 09744262 -nevado_de_colima n 1 2 @ #p 1 0 09174015 -neve n 1 2 @ #p 1 0 09370006 -nevelson n 1 1 @ 1 0 11204689 -never-never n 2 3 @ #p ; 2 0 13296752 08505265 -never-never_land n 1 1 @ 1 0 05631304 -nevil_shute n 1 1 @ 1 0 11299212 -nevil_shute_norway n 1 1 @ 1 0 11299212 -neville_chamberlain n 1 1 @ 1 0 10889689 -nevirapine n 1 1 @ 1 0 03821259 -nevis n 1 2 @ #p 1 0 08988216 -nevoid_elephantiasis n 1 1 @ 1 0 14367797 -nevus n 1 2 @ ~ 1 0 04692638 -nevus_flammeus n 1 1 @ 1 0 04696193 -new_amsterdam n 1 2 @ #p 1 0 09116876 -new_ballgame n 1 1 @ 1 0 13932739 -new_britain n 1 2 @ #p 1 0 08843958 -new_brunswick n 2 3 @ #p %p 2 0 09113901 08824484 -new_caledonia n 1 3 @ #p + 1 0 08844108 -new_caledonian_pine n 1 1 @ 1 0 11646517 -new_caledonian_yew n 1 2 @ #m 1 0 11662937 -new_criticism n 1 1 @ 1 0 06375215 -new_deal n 3 1 @ 3 2 06657109 15261471 01084848 -new_dealer n 1 1 @ 1 0 10355806 -new_delhi n 1 2 @ #p 1 0 08903049 -new_edition n 1 1 @ 1 1 06270541 -new_england n 1 5 @ #p %m %p - 1 1 09048880 -new_england_aster n 1 1 @ 1 0 11934616 -new_england_boiled_dinner n 1 1 @ 1 0 07862946 -new_england_clam_chowder n 1 1 @ 1 0 07587962 -new_englander n 1 2 @ #m 1 1 10355942 -new_english_bible n 1 1 @ 1 0 06449361 -new_flower n 1 2 @ #p 1 0 08778401 -new_forest n 1 2 @ #p 1 0 08882530 -new_greek n 1 2 @ ~ 1 0 06976680 -new_guinea n 1 4 @ #p %m %p 1 0 08844279 -new_hampshire n 2 3 @ #p %p 2 1 09111366 09111636 -new_hampshirite n 1 1 @ 1 0 09744346 -new_haven n 1 3 @ #p %p 1 1 09069415 -new_hebrides n 1 3 @ #p %p 1 0 09160775 -new_ireland n 1 2 @ #p 1 0 08845225 -new_jazz n 1 1 @ 1 0 07063921 -new_jersey n 2 4 @ #p %p - 2 1 09112282 09112742 -new_jerseyan n 1 1 @ 1 0 09744462 -new_jerseyite n 1 1 @ 1 0 09744462 -new_latin n 1 1 @ 1 0 06963822 -new_line n 1 1 @ 1 0 13521444 -new_london n 1 2 @ #p 1 0 09069569 -new_look n 1 1 @ 1 0 05750471 -new_mexican n 1 1 @ 1 0 09744587 -new_mexico n 1 3 @ #p %p 1 1 09114696 -new_moon n 1 2 @ #p 1 1 15206943 -new_netherland n 1 2 @ #p 1 0 09117118 -new_norwegian n 1 1 @ 1 0 06954768 -new_orleans n 1 3 @ #p %p 1 1 09091909 -new_penny n 1 1 @ 1 0 13391841 -new_people's_army n 1 3 @ %p ; 1 0 08036293 -new_phase_of_the_moon n 1 2 @ #p 1 0 15206943 -new_river n 1 2 @ #p 1 0 09370168 -new_river_gorge_bridge n 1 2 @ #p 1 0 03822015 -new_scotland_yard n 1 1 @ 1 0 08210835 -new_siberian_islands n 1 2 @ #p 1 0 09176159 -new_south_wales n 1 3 @ #p %p 1 0 08833130 -new_stone_age n 1 2 @ #p 1 0 15233411 -new_style_calendar n 1 3 @ ~ %p 1 0 15174218 -new_testament n 1 5 @ ~ #p %p - 1 1 06453849 -new_town n 1 2 @ ; 1 0 08626522 -new_wave n 2 1 @ 2 0 08469917 08465558 -new_waver n 1 1 @ 1 1 10357112 -new_world n 1 2 @ %p 1 0 08682389 -new_world_anteater n 1 3 @ ~ #m 1 0 02460009 -new_world_beaver n 1 1 @ 1 0 02363351 -new_world_blackbird n 1 2 @ ~ 1 0 01574045 -new_world_chat n 1 3 @ ~ #m 1 0 01569836 -new_world_coral_snake n 1 2 @ ~ 1 0 01745484 -new_world_flycatcher n 1 3 @ ~ #m 1 0 01547832 -new_world_goldfinch n 1 2 @ #m 1 0 01532325 -new_world_jay n 1 2 @ ~ 1 0 01580772 -new_world_least_weasel n 1 1 @ 1 0 02442446 -new_world_leishmaniasis n 1 1 @ 1 0 14181409 -new_world_monkey n 1 3 @ ~ #m 1 0 02489589 -new_world_mouse n 1 3 @ ~ #m 1 0 02336011 -new_world_opah n 1 2 @ #m 1 0 02546028 -new_world_oriole n 1 3 @ ~ #m 1 0 01571904 -new_world_porcupine n 1 3 @ ~ #m 1 0 02347744 -new_world_sparrow n 1 2 @ ~ 1 0 01534762 -new_world_tapir n 1 1 @ 1 0 02393807 -new_world_vulture n 1 3 @ ~ #m 1 0 01618922 -new_world_warbler n 1 3 @ ~ #m 1 0 01567133 -new_year n 1 1 @ 1 0 15182319 -new_year's n 1 2 @ #p 1 0 15182189 -new_year's_day n 1 2 @ #p 1 1 15182189 -new_year's_eve n 1 3 @ ~ #p 1 1 15182053 -new_york n 3 4 @ #p %p - 3 2 09119277 09117351 09118181 -new_york_aster n 1 1 @ 1 0 11934807 -new_york_bay n 1 3 @ #p %p 1 1 09370383 -new_york_city n 1 3 @ #p %p 1 1 09119277 -new_york_fern n 1 2 @ #m 1 0 13229951 -new_york_minute n 1 1 @ 1 0 15247110 -new_york_state n 1 4 @ #p %p - 1 0 09117351 -new_york_state_barge_canal n 1 2 @ %p 1 0 09119070 -new_york_stock_exchange n 1 2 @ %p 1 0 03822951 -new_york_strip n 1 1 @ 1 0 07662719 -new_yorker n 1 2 @ ~ 1 1 09744679 -new_zealand n 2 6 @ #m #p %m %p - 2 0 08972521 08971914 -new_zealand_beech n 1 3 @ ~ #m 1 0 12266796 -new_zealand_cotton n 1 2 @ #s 1 0 12185526 -new_zealand_dacryberry n 1 1 @ 1 0 11653904 -new_zealand_daisybush n 1 1 @ 1 0 11998492 -new_zealand_dollar n 1 1 @ 1 0 13673843 -new_zealand_honeysuckle n 1 2 @ #m 1 0 12219668 -new_zealand_islands n 1 3 @ #p %p 1 0 08971914 -new_zealand_mountain_pine n 1 2 @ #m 1 0 11655592 -new_zealand_spinach n 1 2 @ #m 1 0 11822300 -new_zealand_white_pine n 1 1 @ 1 0 11653904 -new_zealand_wine_berry n 1 2 @ #m 1 0 12193665 -new_zealand_wren n 1 3 @ ~ #m 1 0 01588431 -new_zealander n 1 2 @ #m 1 0 09724533 -newari n 1 1 @ 1 0 06934020 -newark n 1 2 @ #p 1 0 09113762 -newbie n 1 2 @ ~ 1 0 10355449 -newborn n 1 2 @ ~ 1 0 10353016 -newborn_baby n 1 2 @ ~ 1 0 10353016 -newborn_infant n 1 2 @ ~ 1 0 10353016 -newburg_sauce n 1 2 @ #s 1 0 07870734 -newburgh n 1 2 @ #p 1 0 09124845 -newcastle n 1 2 @ #p 1 1 08879388 -newcastle-upon-tyne n 1 2 @ #p 1 0 08879388 -newcastle_disease n 1 1 @ 1 0 14274801 -newcomb n 1 1 @ 1 0 11204855 -newcomer n 2 2 @ ~ 2 2 10355449 10355688 -newel n 2 1 @ 2 0 03821518 03821424 -newel_post n 1 1 @ 1 0 03821518 -newfoundland n 2 2 @ #p 2 1 02111277 08825211 -newfoundland_and_labrador n 1 3 @ #p %p 1 0 08824937 -newfoundland_dog n 1 1 @ 1 0 02111277 -newfoundland_dwarf_birch n 1 2 @ #m 1 0 12283790 -newgate n 1 2 @ #p 1 0 03821660 -newlywed n 1 2 @ ~ 1 0 10356066 -newman n 2 1 @ 2 0 11205246 11204962 -newmarket n 2 1 @ 2 0 03821898 00493308 -newness n 1 4 ! @ ~ + 1 0 04926427 -newport n 2 2 @ #p 2 1 08895497 09137682 -newport_news n 1 2 @ #p 1 0 09150662 -news n 5 3 @ ~ + 5 3 06642138 06681177 06619850 06642356 05192897 -news_agency n 1 2 @ ~ 1 0 08355075 -news_article n 1 5 @ ~ #p %p - 1 0 06269130 -news_bulletin n 1 1 @ 1 0 06682494 -news_conference n 1 2 @ ~ 1 1 07144834 -news_event n 1 1 @ 1 0 07400831 -news_item n 1 3 @ ~ #p 1 1 06483339 -news_leak n 1 1 @ 1 0 07215185 -news_magazine n 1 1 @ 1 0 06596474 -news_media n 1 3 @ ~ %s 1 0 06266417 -news_organisation n 1 2 @ ~ 1 0 08355075 -news_organization n 1 2 @ ~ 1 0 08355075 -news_photography n 1 1 @ 1 0 06266878 -news_program n 1 2 @ ~ 1 0 06619850 -news_reader n 1 2 @ ; 1 0 10356877 -news_report n 1 2 @ ~ 1 0 06681551 -news_show n 1 2 @ ~ 1 1 06619850 -news_story n 1 5 @ ~ #p %p - 1 0 06269130 -newsagent n 1 1 @ 1 0 10356213 -newsboy n 1 1 @ 1 1 09897603 -newsbreak n 1 1 @ 1 0 06682494 -newscast n 1 2 @ ~ 1 0 06683359 -newscaster n 1 2 @ ~ 1 0 10356344 -newsdealer n 1 1 @ 1 0 10356213 -newsflash n 1 1 @ 1 0 06682494 -newsletter n 1 2 @ ~ 1 1 06681976 -newsman n 1 2 @ ~ 1 1 10521662 -newsmonger n 1 2 @ ~ 1 0 10139347 -newspaper n 4 3 @ ~ %p 4 3 06267145 08062970 03822171 14961722 -newspaper_ad n 1 2 @ ~ 1 0 07249426 -newspaper_advertisement n 1 2 @ ~ 1 0 07249426 -newspaper_article n 1 5 @ ~ #p %p - 1 0 06269130 -newspaper_clipping n 1 1 @ 1 0 06612649 -newspaper_column n 1 3 @ ~ #p 1 0 06268567 -newspaper_columnist n 1 2 @ ~ 1 1 10356592 -newspaper_critic n 1 1 @ 1 1 10356749 -newspaper_editor n 1 2 @ ~ 1 0 10356450 -newspaper_headline n 1 3 @ ~ #p 1 0 06344461 -newspaper_publisher n 2 2 @ ~ 2 0 10491575 08062970 -newspapering n 1 1 @ 1 0 00611874 -newspaperman n 1 2 @ ~ 1 1 09966710 -newspaperwoman n 1 2 @ ~ 1 0 09966710 -newspeak n 1 1 @ 1 0 00926277 -newsperson n 1 2 @ ~ 1 0 10521662 -newsprint n 1 1 @ 1 0 14961722 -newsreader n 1 2 @ ; 1 0 10356877 -newsreel n 1 1 @ 1 0 06616703 -newsroom n 3 1 @ 3 0 08063129 03822504 03822361 -newssheet n 1 2 @ ~ 1 0 06681976 -newsstand n 1 1 @ 1 0 03822656 -newsstand_operator n 1 1 @ 1 0 10356213 -newsvendor n 1 1 @ 1 0 10356213 -newswoman n 1 1 @ 1 0 10521853 -newsworthiness n 1 2 @ + 1 0 05192897 -newswriter n 1 2 @ ~ 1 0 09966710 -newt n 1 3 @ ~ #m 1 0 01630284 -newton n 2 4 @ #p %p + 2 1 11205375 13647667 -newton's_first_law n 1 1 @ 1 0 05885822 -newton's_first_law_of_motion n 1 1 @ 1 0 05885822 -newton's_law n 1 2 @ ~ 1 0 05885622 -newton's_law_of_gravitation n 1 4 @ #p %p ; 1 0 05881867 -newton's_law_of_motion n 1 2 @ ~ 1 0 05885622 -newton's_second_law n 1 1 @ 1 0 05886039 -newton's_second_law_of_motion n 1 1 @ 1 0 05886039 -newton's_theory_of_gravitation n 1 3 @ %p ; 1 0 05990089 -newton's_third_law n 1 1 @ 1 0 05886266 -newton's_third_law_of_motion n 1 1 @ 1 0 05886266 -newtonian n 1 2 @ + 1 0 10357012 -newtonian_mechanics n 1 1 @ 1 0 06111335 -newtonian_reflector n 1 1 @ 1 0 03822767 -newtonian_telescope n 1 1 @ 1 0 03822767 -newtown_wonder n 1 1 @ 1 0 07742513 -next_friend n 1 2 @ ; 1 0 10357207 -next_of_kin n 1 1 @ 1 0 10357349 -nexus n 2 1 @ 2 0 13792692 08458833 -ney n 1 1 @ 1 0 11205647 -nez_perce n 2 2 @ ~ 2 0 09662804 06925435 -ng n 1 2 @ #p 1 0 13723189 -nga n 1 3 @ #m #p 1 0 08396537 -ngaio_marsh n 1 1 @ 1 0 11158533 -nganasan n 2 2 @ #m 2 0 09707587 06960083 -ngb n 1 2 @ #p 1 0 08391696 -ngf n 1 1 @ 1 0 14734487 -ngo n 1 2 @ ~ 1 0 08009834 -ngu n 1 1 @ 1 0 14566996 -ngultrum n 1 2 @ %p 1 0 13689411 -nguni n 1 2 @ ~ 1 0 06994329 -nguyen_tat_thanh n 1 1 @ 1 0 11053344 -ngwee n 1 2 @ #p 1 0 13683700 -nh n 1 3 @ #p %p 1 0 09111366 -ni n 1 2 @ #s 1 0 14646610 -ni-hard n 1 1 @ 1 0 14963051 -ni-hard_iron n 1 1 @ 1 0 14963051 -ni-resist n 1 1 @ 1 0 14963187 -ni-resist_iron n 1 1 @ 1 0 14963187 -niacin n 1 1 @ 1 0 15092059 -niagara n 2 3 @ #p %p 2 0 09370773 09370552 -niagara_falls n 2 3 @ #p %p 2 0 09370773 09125016 -niagara_river n 1 3 @ #p %p 1 0 09370552 -niamey n 1 2 @ #p 1 0 08973647 -nib n 2 3 @ ~ #p 2 0 03823111 01758308 -nibble n 2 3 @ #p + 2 0 13625884 00842197 -nibbler n 1 2 @ + 1 0 10357484 -nibelung n 2 2 @ ; 2 0 09499854 09499657 -nibelungenlied n 1 1 @ 1 0 06382345 -niblick n 1 1 @ 1 0 03823216 -nicad n 1 1 @ 1 0 03823312 -nicaea n 3 3 @ #p + 3 0 08504151 08314715 08313592 -nicandra n 1 3 @ #m %m 1 0 12906926 -nicandra_physaloides n 1 2 @ #m 1 0 12907057 -nicaragua n 1 5 @ #p %m %p + 1 0 08738820 -nicaraguan n 1 3 @ ~ #m 1 0 09724656 -nicaraguan_capital n 1 2 @ #p 1 0 08739047 -nicaraguan_monetary_unit n 1 2 @ ~ 1 0 13691154 -niccolo_machiavelli n 1 1 @ 1 0 11147729 -niccolo_paganini n 1 1 @ 1 0 11219851 -nice n 1 2 @ #p 1 0 08937251 -nicene_creed n 1 2 @ ; 1 0 06791017 -niceness n 3 4 ! @ = + 3 0 04912982 04779521 04711256 -nicety n 2 1 @ 2 1 04713853 06606191 -niche n 4 3 @ ~ ; 4 3 13926168 13872421 04061969 13924336 -nicholas n 1 1 @ 1 0 11205797 -nicholas_i n 1 2 @ ; 1 0 11205975 -nicholas_ii n 1 1 @ 1 0 11206150 -nicholas_v n 1 1 @ 1 0 11202322 -nicholas_vachel_lindsay n 1 1 @ 1 0 11133197 -nichrome n 1 2 @ ; 1 0 14961896 -nick n 3 4 @ ~ + ; 3 0 04693384 03823540 00387897 -nickel n 3 3 @ #s + 3 2 14646610 13390139 13395652 -nickel-base_alloy n 1 2 @ ~ 1 0 14962117 -nickel-cadmium_accumulator n 1 1 @ 1 0 03823312 -nickel-iron_accumulator n 1 1 @ 1 0 03823673 -nickel-iron_battery n 1 1 @ 1 0 03823673 -nickel_alloy n 1 2 @ ~ 1 0 14962117 -nickel_bronze n 1 1 @ 1 0 14962291 -nickel_note n 1 1 @ 1 0 13395652 -nickel_silver n 1 1 @ 1 0 14962387 -nickel_steel n 1 1 @ 1 0 14962521 -nickelodeon n 1 1 @ 1 0 03604156 -nicker n 1 2 @ + 1 0 07387316 -nicker_nut n 1 2 @ #p 1 0 11689197 -nicker_seed n 1 2 @ #p 1 0 11689197 -nicklaus n 1 1 @ 1 0 11206356 -nicknack n 1 1 @ 1 0 02897692 -nickname n 2 2 @ + 2 1 06337693 06338003 -nicol_prism n 1 1 @ 1 0 03823906 -nicola_amati n 1 1 @ 1 0 10815477 -nicola_sacco n 1 1 @ 1 0 11277680 -nicolas_de_malebranche n 1 1 @ 1 0 11151322 -nicolas_leonard_sadi_carnot n 1 1 @ 1 0 10883380 -nicolas_poussin n 1 1 @ 1 0 11244765 -nicolaus_copernicus n 1 1 @ 1 0 10909724 -nicolo_amati n 1 1 @ 1 0 10815477 -nicolson n 1 1 @ 1 0 11206544 -nicosia n 1 2 @ #p 1 0 08757132 -nicotiana n 1 3 @ #m %m 1 0 12907287 -nicotiana_alata n 1 1 @ 1 0 12907671 -nicotiana_glauca n 1 1 @ 1 0 12908230 -nicotiana_rustica n 1 1 @ 1 0 12908093 -nicotiana_tabacum n 1 2 @ #s 1 0 12907857 -nicotinamide_adenine_dinucleotide n 1 1 @ 1 0 14962612 -nicotinamide_adenine_dinucleotide_phosphate n 1 1 @ 1 0 14962837 -nicotine n 1 2 @ #s 1 1 14714817 -nicotine_addiction n 1 1 @ 1 0 14065243 -nicotine_poisoning n 1 1 @ 1 0 14511862 -nicotinic_acid n 1 1 @ 1 0 15092059 -nictation n 1 3 @ ~ + 1 0 00117959 -nictitating_membrane n 1 3 @ ~ #p 1 0 05314639 -nictitation n 1 3 @ ~ + 1 0 00117959 -nicu n 1 1 @ 1 0 08146410 -nidaros n 1 2 @ #p 1 0 08765623 -nidation n 1 2 @ ; 1 0 13496286 -niddm n 1 1 @ 1 0 14118936 -nidularia n 1 2 @ #m 1 0 13046887 -nidulariaceae n 1 3 @ #m %m 1 0 13046512 -nidulariales n 1 3 @ #m %m 1 0 13046285 -nidus n 2 3 @ ~ #p 2 0 14182697 09371028 -niebuhr n 2 1 @ 2 0 11206885 11206705 -niece n 1 3 ! @ ~ 1 1 10357613 -niels_abel n 1 1 @ 1 0 10807197 -niels_bohr n 1 1 @ 1 0 10855200 -niels_henrik_abel n 1 1 @ 1 0 10807197 -niels_henrik_david_bohr n 1 1 @ 1 0 10855200 -nielsen n 1 1 @ 1 0 11207006 -niemann-pick_disease n 1 1 @ 1 0 14164007 -nierembergia n 1 3 @ ~ #m 1 0 12908645 -nierembergia_frutescens n 1 2 @ #m 1 0 12909068 -nierembergia_repens n 1 2 @ #m 1 0 12908854 -nierembergia_rivularis n 1 2 @ #m 1 0 12908854 -nietzsche n 1 1 @ 1 0 11207125 -nifedipine n 1 1 @ 1 0 03824014 -niff n 1 3 @ + ; 1 0 05715150 -nigella n 1 3 @ ~ #m 1 0 11736694 -nigella_damascena n 1 1 @ 1 0 11736851 -nigella_hispanica n 1 1 @ 1 0 11737009 -nigella_sativa n 1 1 @ 1 0 11737125 -niger n 2 5 @ #p %m %p + 2 0 09371151 08973330 -niger-congo n 1 2 @ ~ 1 0 06991764 -niger-kordofanian n 1 3 @ ~ ; 1 0 06991277 -niger-kordofanian_language n 1 3 @ ~ ; 1 0 06991277 -niger_franc n 1 2 @ %p 1 0 13678480 -niger_river n 1 2 @ #p 1 0 09371151 -nigeria n 1 5 @ #p %m %p - 1 0 08973776 -nigerian n 1 4 @ ~ #m + 1 0 09724785 -nigerian_capital n 1 2 @ #p 1 0 08974171 -nigerian_monetary_unit n 1 2 @ ~ 1 0 13688944 -nigerien n 1 2 @ #m 1 0 09725124 -nigga n 1 2 @ ; 1 0 09638009 -niggard n 1 3 @ ~ + 1 0 10357737 -niggardliness n 1 3 @ ~ + 1 0 04833687 -niggardness n 1 2 @ ~ 1 0 04833687 -nigger n 1 2 @ ; 1 1 09638009 -niggler n 1 2 @ + 1 0 09896826 -night n 8 6 ! @ ~ #p %p + 8 5 15167027 15167577 15167474 15155747 13983717 15169759 15167349 09559769 -night-blooming_cereus n 3 3 @ ~ #m 3 0 11853813 11848479 11844892 -night-light n 1 1 @ 1 0 03824713 -night-line n 1 1 @ 1 0 03824867 -night-robe n 1 2 @ %p 1 0 03824381 -night-sight n 1 1 @ 1 1 05656997 -night-stop n 1 1 @ 1 0 01056713 -night_bell n 1 1 @ 1 0 03824197 -night_bird n 1 2 @ ~ 1 0 01515078 -night_blindness n 1 1 @ 1 0 14554853 -night_club n 1 2 @ ~ 1 0 02931417 -night_court n 1 2 @ ; 1 0 08334451 -night_game n 1 2 ! @ 1 1 00456563 -night_heron n 1 2 @ ~ 1 0 02010453 -night_jasmine n 1 2 @ #m 1 0 12902662 -night_jessamine n 1 2 @ #m 1 0 12902662 -night_latch n 1 1 @ 1 0 03824589 -night_letter n 1 1 @ 1 0 06622877 -night_life n 2 1 @ 2 0 00515952 00431292 -night_lizard n 1 2 @ #m 1 0 01683558 -night_owl n 1 1 @ 1 0 10357907 -night_porter n 1 1 @ 1 0 10358032 -night_raven n 2 2 @ ~ 2 0 02010453 01515217 -night_rider n 1 1 @ 1 0 10358124 -night_school n 1 2 ! @ 1 0 08411970 -night_shift n 2 1 @ 2 0 15292960 08218832 -night_snake n 1 2 @ #m 1 0 01740131 -night_soil n 1 1 @ 1 0 14864170 -night_terror n 1 1 @ 1 0 07290503 -night_vision n 1 1 @ 1 0 05656997 -night_watch n 1 1 @ 1 0 15293435 -night_watchman n 1 1 @ 1 0 10358322 -nightbird n 1 1 @ 1 0 10357907 -nightcap n 3 2 @ #p 3 0 07912619 03824284 00460844 -nightclothes n 1 3 @ ~ ; 1 0 03825080 -nightclub n 1 2 @ ~ 1 1 02931417 -nightcrawler n 1 2 @ #m 1 0 01935395 -nightdress n 1 2 @ %p 1 1 03824381 -nightfall n 1 3 @ ~ #p 1 1 15169421 -nightgown n 1 2 @ %p 1 0 03824381 -nighthawk n 2 2 @ #m 2 0 10357907 01836384 -nightie n 1 2 @ %p 1 0 03824381 -nightingale n 2 3 @ ~ #m 2 1 01560105 11207410 -nightjar n 1 3 @ ~ #m 1 0 01835276 -nightlife n 2 1 @ 2 0 00515952 00431292 -nightmare n 2 1 @ 2 2 13936676 05769062 -nightrider n 1 1 @ 1 0 10358124 -nightshade n 1 3 @ ~ #m 1 0 12893463 -nightshirt n 1 1 @ 1 1 03824999 -nightspot n 1 2 @ ~ 1 0 02931417 -nightstick n 1 1 @ 1 0 04491388 -nighttime n 1 4 @ ~ #p %p 1 1 15167027 -nightwalker n 1 2 @ #m 1 0 01935395 -nightwear n 1 2 @ ~ 1 0 03825080 -nightwork n 1 1 @ 1 0 00581991 -nigra n 1 2 @ ; 1 1 09638009 -nigroporus n 1 2 @ #m 1 0 13051546 -nigroporus_vinosus n 1 2 @ #m 1 0 13051694 -nih n 1 3 @ #p %p 1 0 08134081 -nihau n 1 2 @ #p 1 0 09080415 -nihau_island n 1 2 @ #p 1 0 09080415 -nihil n 1 2 @ ; 1 0 13740591 -nihil_obstat n 2 1 @ 2 0 06688059 01139749 -nihilism n 3 2 @ + 3 1 05965388 14378712 13973320 -nihilist n 2 3 @ ~ + 2 0 10358420 09791816 -nihilistic_delusion n 1 1 @ 1 0 14378712 -nihility n 1 2 @ ~ 1 0 14455700 -nihon n 1 5 @ #p %m %p - 1 0 08921850 -nij n 1 2 @ #p 1 0 08142170 -nijinsky n 1 1 @ 1 0 11207585 -nijmegen n 1 2 @ #p 1 0 08950787 -nike n 1 2 @ ; 1 0 09567767 -nikita_khrushchev n 1 1 @ 1 0 11104287 -nikita_sergeyevich_khrushchev n 1 1 @ 1 0 11104287 -nikola_tesla n 1 1 @ 1 0 11336850 -nikolaas_tinbergen n 1 1 @ 1 0 11343040 -nikolai_andreyevich_rimski-korsakov n 1 1 @ 1 0 11262929 -nikolai_andreyevich_rimsky-korsakov n 1 1 @ 1 0 11262929 -nikolai_ivanovich_bukharin n 1 1 @ 1 0 10870691 -nikolai_ivanovich_lobachevsky n 1 1 @ 1 0 11136622 -nikolai_lenin n 1 1 @ 1 0 11126490 -nikolai_vasilievich_gogol n 1 1 @ 1 0 11004333 -nil n 1 2 @ ~ 1 0 13740168 -nile n 1 3 @ #p + 1 0 09371360 -nile_crocodile n 1 1 @ 1 0 01697457 -nile_river n 1 2 @ #p 1 0 09371360 -nilgai n 1 2 @ #m 1 0 02425532 -nilgiri_hills n 1 2 @ #p 1 0 08906169 -nilo-saharan n 1 2 @ ~ 1 0 06997697 -nilo-saharan_language n 1 2 @ ~ 1 0 06997697 -nilotic n 1 3 @ ~ + 1 0 06998108 -nilotic_language n 1 2 @ ~ 1 0 06998108 -nilsson n 1 1 @ 1 0 11207768 -nim n 1 1 @ 1 0 00499599 -nim_tree n 1 3 @ #m %p 1 0 12696492 -nimble_will n 1 2 @ #m 1 0 12125584 -nimbleness n 2 2 @ + 2 0 05619553 05003850 -nimblewill n 1 2 @ #m 1 0 12125584 -nimbus n 2 2 @ %p 2 0 09371686 04951716 -nimbus_cloud n 1 2 @ %p 1 0 09371686 -nimby n 1 2 @ ; 1 0 10358575 -nimiety n 1 1 @ 1 0 05119714 -nimitz n 1 1 @ 1 0 11207929 -nimravus n 1 3 @ #m %m 1 0 02131076 -nimrod n 1 2 @ ; 1 0 11202477 -nin-sin n 1 3 @ #m %p 1 0 11799732 -nina n 1 2 @ ; 1 0 09520367 -nina_from_carolina n 1 1 @ 1 0 13745270 -nincompoop n 1 1 @ 1 0 10358794 -nine n 3 2 @ #m 3 1 13745270 08079613 03825548 -nine-banded_armadillo n 1 2 @ #m 1 0 02454794 -nine-spot n 1 1 @ 1 0 03825548 -nine_iron n 1 1 @ 1 0 03823216 -ninepence n 1 1 @ 1 0 13391693 -ninepin n 1 1 @ 1 0 03825271 -ninepin_ball n 1 1 @ 1 0 03825442 -ninepins n 1 1 @ 1 0 00462383 -niner n 1 1 @ 1 0 13745270 -nineteen n 1 2 @ + 1 1 13747989 -nineteenth n 1 1 @ 1 0 13848784 -nineteenth_amendment n 1 3 @ #p ; 1 0 06729251 -nineties n 3 2 @ #p 3 1 15151470 15151379 15151255 -ninetieth n 1 1 @ 1 0 13849611 -ninety n 1 1 @ 1 0 13750297 -nineveh n 1 2 @ #p 1 0 08919475 -ningal n 1 2 @ ; 1 0 09520498 -ningirsu n 1 2 @ ; 1 0 09520617 -ningishzida n 1 2 @ ; 1 0 09520752 -ninhursag n 1 2 @ ; 1 0 09520880 -ninib n 1 2 @ ; 1 0 09521157 -ninigi n 1 1 @ 1 0 09535504 -ninigino-mikoto n 1 1 @ 1 0 09535504 -ninja n 2 4 @ #m %m ; 2 0 10358889 08389094 -ninjitsu n 1 2 @ ; 1 0 00826213 -ninjutsu n 1 2 @ ; 1 0 00826213 -ninkharsag n 1 2 @ ; 1 0 09520880 -ninkhursag n 1 2 @ ; 1 0 09520880 -ninny n 1 1 @ 1 0 10358794 -ninon n 1 1 @ 1 0 03825673 -ninth n 2 1 @ 2 1 13847715 13738235 -ninth_cranial_nerve n 1 1 @ 1 0 05479786 -ninth_of_ab n 1 2 @ ; 1 0 15197658 -ninth_of_av n 1 2 @ ; 1 0 15197658 -nintoo n 1 1 @ 1 0 09521051 -nintu n 1 1 @ 1 0 09521051 -ninurta n 1 2 @ ; 1 0 09521157 -niobe n 1 2 @ ; 1 0 09496918 -niobite n 1 2 @ %s 1 0 14683859 -niobium n 1 3 @ ~ #s 1 0 14646942 -niobrara n 1 2 @ #p 1 0 09371816 -niobrara_river n 1 2 @ #p 1 0 09371816 -nip n 6 4 @ ~ + ; 6 0 13773250 09718652 05715864 05015678 04993108 00842281 -nip_and_tuck n 1 2 @ ~ 1 0 00674158 -nipa n 2 4 @ #m #s %m 2 0 12591897 07891613 -nipa_fruticans n 1 3 @ #m %s 1 0 12592058 -nipa_palm n 1 3 @ #m %s 1 0 12592058 -nipper n 2 5 @ ~ #p %p + 2 0 09917593 02156532 -nipple n 2 2 @ #p 2 0 05554653 03825788 -nipple_shield n 1 1 @ 1 0 03825913 -nippon n 1 5 @ #p %m %p - 1 0 08921850 -nipponese n 1 5 @ ~ #m + - 1 0 09718217 -nipr n 1 2 @ ; 1 0 08043499 -niqaabi n 1 1 @ 1 0 10359117 -niqab n 1 1 @ 1 0 03826039 -nirvana n 2 2 @ ; 2 1 13988224 08565506 -nisan n 1 2 @ #p 1 0 15215816 -nisei n 1 1 @ 1 0 10359300 -nissan n 1 2 @ #p 1 0 15215816 -nissen_hut n 1 1 @ 1 0 03826186 -nist n 1 2 @ #p 1 0 08131005 -nisus n 1 2 @ ~ 1 0 00788766 -nit n 2 1 @ 2 0 13641023 01461146 -nitella n 1 2 @ #m 1 0 01413071 -niter n 1 2 @ #s 1 0 14861355 -nitpicker n 1 2 @ + 1 0 10359422 -nitramine n 1 1 @ 1 0 15069584 -nitrate n 1 4 @ ~ %s + 1 1 15015501 -nitrate_bacterium n 1 1 @ 1 0 01374703 -nitrazepam n 1 1 @ 1 0 03826331 -nitre n 1 3 @ #s + 1 0 14861355 -nitric_acid n 1 2 @ + 1 0 14766532 -nitric_bacteria n 1 2 @ #m 1 0 01362336 -nitric_bacterium n 1 1 @ 1 0 01374703 -nitric_oxide n 1 1 @ 1 0 14767202 -nitride n 1 2 @ ~ 1 0 14963317 -nitrification n 2 3 @ + ; 2 0 13521873 13521616 -nitril n 1 2 @ ~ 1 0 14827346 -nitrile n 1 2 @ ~ 1 0 14827346 -nitrite n 1 2 @ ~ 1 0 15015963 -nitrite_bacterium n 1 1 @ 1 0 01374846 -nitro_group n 1 2 @ #s 1 0 15015872 -nitrobacter n 1 3 @ #m %m 1 0 01362196 -nitrobacteria n 1 2 @ #m 1 0 01362336 -nitrobacteriaceae n 1 3 @ #m %m 1 0 01361973 -nitrobacterium n 1 2 @ ~ 1 0 01374457 -nitrobenzene n 1 1 @ 1 0 14963486 -nitrocalcite n 1 1 @ 1 0 14684017 -nitrocellulose n 1 3 @ ~ #s 1 0 14794993 -nitrochloroform n 1 1 @ 1 0 14810168 -nitrochloromethane n 1 1 @ 1 0 14810356 -nitrocotton n 1 3 @ ~ #s 1 0 14794993 -nitrofuran n 1 2 @ #s 1 0 14963634 -nitrofurantoin n 1 2 @ %s 1 0 03826443 -nitrogen n 1 4 @ ~ #s + 1 1 14647235 -nitrogen_balance n 1 1 @ 1 0 14017871 -nitrogen_cycle n 1 1 @ 1 0 13522084 -nitrogen_dioxide n 1 1 @ 1 0 14767087 -nitrogen_fixation n 1 1 @ 1 0 13522305 -nitrogen_mustard n 1 1 @ 1 0 14957649 -nitrogen_narcosis n 1 1 @ 1 0 05682196 -nitrogen_oxide n 1 1 @ 1 1 14766890 -nitrogen_trichloride n 1 1 @ 1 0 15017121 -nitrogenase n 1 1 @ 1 0 14963762 -nitroglycerin n 1 2 @ #s 1 0 14886579 -nitroglycerine n 1 2 @ #s 1 0 14886579 -nitrohydrochloric_acid n 1 1 @ 1 0 14767477 -nitrosobacteria n 1 2 @ #m 1 0 01362623 -nitrosomonas n 1 3 @ #m %m 1 0 01362480 -nitrospan n 2 4 @ #s %s ; 2 0 14886579 03826762 -nitrostat n 2 4 @ #s %s ; 2 0 14886579 03826762 -nitrous_acid n 1 2 @ + 1 0 14766725 -nitrous_bacteria n 1 2 @ #m 1 0 01362623 -nitrous_bacterium n 1 1 @ 1 0 01374846 -nitrous_oxide n 1 2 @ %s 1 0 03826945 -nitta_tree n 1 3 @ ~ #m 1 0 11763625 -nitty-gritty n 1 2 @ ~ 1 0 05921123 -nitweed n 1 1 @ 1 0 12368637 -nitwit n 1 2 @ ; 1 0 10013114 -nivose n 1 2 @ #p 1 0 15176476 -nix n 1 2 @ ~ 1 0 13740168 -nixon n 1 1 @ 1 0 11208172 -nizhni_novgorod n 1 2 @ #p 1 0 09008130 -nizhnyi_novgorod n 1 2 @ #p 1 0 09008130 -nj n 1 4 @ #p %p - 1 0 09112282 -njord n 1 2 @ ; 1 0 09582122 -njorth n 1 2 @ ; 1 0 09582122 -nlp n 1 1 @ 1 0 06142412 -nlrb n 1 1 @ 1 0 08126716 -nm n 2 3 @ #p %p 2 0 13658278 09114696 -nmr n 1 1 @ 1 0 11478898 -nne n 1 1 @ 1 0 13831572 -nnrti n 1 3 @ ~ #p 1 0 03828155 -nnw n 1 1 @ 1 0 13835163 -no n 2 2 ! @ 2 1 07205104 14647722 -no-account n 1 1 @ 1 0 10135953 -no-brainer n 1 2 @ ; 1 0 00797468 -no-go_area n 1 2 @ ; 1 0 08611063 -no-goal n 1 1 @ 1 1 05982024 -no-hit_game n 1 1 @ 1 1 00475014 -no-hitter n 1 1 @ 1 0 00475014 -no-par-value_stock n 1 1 @ 1 0 13335808 -no-par_stock n 1 1 @ 1 0 13335808 -no-parking_zone n 1 1 @ 1 0 08611421 -no-see-um n 1 2 @ #m 1 0 02202678 -no-show n 2 1 @ 2 0 10363017 10362917 -no-trump n 1 1 @ 1 0 00491561 -no-win_situation n 1 1 @ 1 0 13936783 -no. n 1 2 @ ~ 1 1 13597280 -no_ball n 1 1 @ 1 0 00477268 -no_fault_automobile_insurance n 1 1 @ 1 0 13345560 -no_fault_insurance n 1 1 @ 1 0 13345560 -no_man's_land n 3 1 @ 3 1 08611218 13249805 04825815 -noaa n 1 3 @ #p %p 1 0 08129883 -noachian_deluge n 1 2 @ ; 1 0 11455386 -noah n 1 1 @ 1 0 11208431 -noah's_flood n 1 2 @ ; 1 0 11455386 -noah_and_the_flood n 1 2 @ ; 1 0 11455386 -noah_webster n 1 1 @ 1 0 11379108 -noam_chomsky n 1 1 @ 1 0 10896452 -nob n 1 1 @ 1 0 10714577 -nob_hill n 1 2 @ #p 1 0 09065899 -nobel n 1 1 @ 1 0 11208688 -nobel_laureate n 1 1 @ 1 0 10359546 -nobel_prize n 1 2 @ + 1 1 07268759 -nobelist n 1 2 @ + 1 0 10359546 -nobelium n 1 1 @ 1 0 14647722 -nobility n 3 5 @ ~ %m = + 3 2 08388207 04870340 14432032 -noble n 1 2 @ ~ 1 0 10271677 -noble-mindedness n 1 2 @ + 1 0 04870643 -noble_cane n 1 1 @ 1 0 12132956 -noble_gas n 1 2 @ ~ 1 0 14624369 -noble_metal n 1 2 @ ~ 1 0 14627081 -nobleman n 1 3 ! @ ~ 1 0 10271677 -nobleness n 1 3 @ ~ = 1 0 04870340 -noblesse n 2 3 @ ~ ; 2 0 14432032 08388503 -noblesse_oblige n 1 2 @ ; 1 0 01130735 -noblewoman n 1 5 ! @ ~ #m ; 1 0 10242791 -nobody n 1 2 @ ~ 1 1 09923418 -noc n 1 1 @ 1 0 10359659 -noctambulation n 1 1 @ 1 0 00285141 -noctambulism n 1 2 @ + 1 0 00285141 -noctambulist n 1 2 @ + 1 0 10611361 -noctiluca n 1 2 @ #m 1 0 01417674 -noctiluca_miliaris n 1 2 @ #m 1 1 01417674 -noctua n 1 2 @ #m 1 0 02295570 -noctuid n 1 3 @ ~ #m 1 0 02295064 -noctuid_moth n 1 3 @ ~ #m 1 0 02295064 -noctuidae n 1 3 @ #m %m 1 0 02294761 -nocturia n 1 1 @ 1 0 13522485 -nocturnal_emission n 1 2 @ #p 1 0 13522611 -nocturne n 1 1 @ 1 0 07047679 -nod n 2 3 @ ~ + 2 2 07274316 00336430 -nodal_rhythm n 1 1 @ 1 0 04768309 -nodding_groundsel n 1 2 @ #m 1 0 12011370 -nodding_onion n 1 1 @ 1 0 12433769 -nodding_thistle n 1 2 @ #m 1 0 11944954 -nodding_wild_onion n 1 1 @ 1 0 12433769 -noddle n 1 2 @ ; 1 0 05611684 -node n 8 5 ! @ ~ #p ; 8 0 13911045 13895986 13154190 08498580 08498424 05430095 05264913 03827107 -nodes_of_ranvier n 1 2 @ #p 1 0 05464534 -nodule n 3 4 @ ~ + ; 3 1 05265038 13088989 09371941 -noel n 1 3 @ #p %p 1 0 15196537 -noel_coward n 1 1 @ 1 0 10913641 -noemi n 1 1 @ 1 0 11199943 -noesis n 1 3 @ ~ + 1 0 00023271 -noether n 1 1 @ 1 0 11208917 -nog n 2 2 @ ~ 2 0 03905540 03827284 -nogales n 2 2 @ #p 2 0 09058219 08744626 -noggin n 1 1 @ 1 0 05539454 -nogging n 1 1 @ 1 0 03827420 -noguchi n 2 1 @ 2 0 11209201 11209019 -noise n 6 3 @ ~ + 6 2 07387509 05720248 07430211 07122730 04823031 04771332 -noise_conditions n 1 1 @ 1 0 13924536 -noise_level n 1 1 @ 1 0 05098620 -noise_pollution n 1 1 @ 1 0 14518539 -noiselessness n 1 2 @ + 1 0 04983013 -noisemaker n 1 2 @ ~ 1 1 03827536 -noisiness n 1 3 @ ~ + 1 0 04981474 -noisomeness n 1 2 @ + 1 0 04790774 -nol_pros n 1 1 @ 1 0 06505252 -noli-me-tangere n 1 1 @ 1 0 14212941 -nolina n 1 3 @ #m %m 1 0 12479821 -nolina_microcarpa n 1 2 @ #m 1 0 12480004 -nolle_prosequi n 1 2 @ + 1 0 06505252 -nolo_contendere n 1 2 @ ; 1 0 06560939 -nom_de_guerre n 1 2 @ ~ 1 0 06338278 -nom_de_plume n 1 1 @ 1 0 06338653 -noma n 1 1 @ 1 0 14213044 -nomad n 1 2 @ ~ 1 0 10359759 -nombril n 1 1 @ 1 0 08611339 -nome n 1 2 @ #p 1 0 09056055 -nomenclature n 1 2 @ ~ 1 0 06304059 -nomenklatura n 1 1 @ 1 0 01154083 -nomia n 1 3 @ #m %m 1 1 02210567 -nomia_melanderi n 1 2 @ #m 1 1 02210921 -nominal n 1 1 @ 1 0 06316480 -nominal_aphasia n 1 1 @ 1 0 14098663 -nominal_damages n 1 2 @ ; 1 0 13291614 -nominal_head n 1 1 @ 1 0 10113583 -nominal_phrase n 1 1 @ 1 0 06316480 -nominal_value n 1 1 @ 1 0 13335635 -nominalism n 1 3 @ + ; 1 0 05974156 -nominalist n 1 1 @ 1 0 10359988 -nominating_address n 1 2 @ ; 1 0 07240925 -nominating_speech n 1 2 @ ; 1 0 07240925 -nomination n 3 3 @ + ; 3 1 00164152 13926535 07240925 -nominative n 1 2 ! @ 1 0 06311160 -nominative_case n 1 1 @ 1 0 06311160 -nominator n 1 2 @ + 1 0 10360101 -nominee n 1 2 @ ~ 1 0 09889691 -nomogram n 1 1 @ 1 0 03827716 -nomograph n 1 1 @ 1 0 03827716 -non-cash_expense n 1 2 @ ~ 1 0 13276913 -non-catholic n 1 1 @ 1 1 09680136 -non-christian_priest n 1 2 @ ~ 1 0 10471250 -non-dedicated_file_server n 1 3 ! @ ; 1 0 03827830 -non-discrimination n 1 1 @ 1 1 04839445 -non-engagement n 1 3 ! @ ~ 1 0 01239487 -non-euclidean_geometry n 1 3 @ ~ ; 1 0 06006777 -non-flowering_plant n 1 1 @ 1 0 11530990 -non-insulin-dependent_diabetes n 1 1 @ 1 0 14118936 -non-insulin-dependent_diabetes_mellitus n 1 1 @ 1 0 14118936 -non-involvement n 1 3 ! @ ~ 1 0 01239487 -non-ionic_detergent n 1 1 @ 1 0 14618050 -non-issue n 1 1 @ 1 0 14006821 -non-jew n 1 2 @ ~ 1 1 09679028 -non-market_economy n 1 3 ! @ ~ 1 0 08365344 -non-nucleoside_reverse_transcriptase_inhibitor n 1 3 @ ~ #p 1 0 03828155 -non-proliferation n 1 2 ! @ 1 0 01078572 -non-resistant n 1 1 @ 1 1 10362195 -non-standard_speech n 1 2 @ ~ 1 0 07155081 -non-ugric n 1 2 @ ~ 1 0 06956544 -non-volatile_storage n 1 3 ! @ ~ 1 0 03829340 -non_pros n 1 2 @ ; 1 0 01188783 -non_prosequitur n 1 2 @ ; 1 0 01188783 -non_sequitur n 2 2 @ ; 2 0 07199814 05781663 -non_vult n 1 2 @ ; 1 0 06560939 -nonabsorbency n 1 3 ! @ + 1 0 04942738 -nonacceptance n 1 1 @ 1 0 00205349 -nonaccomplishment n 1 2 @ ~ 1 0 00066216 -nonachievement n 1 2 @ ~ 1 0 00066216 -nonachiever n 1 1 @ 1 0 10736394 -nonage n 1 1 @ 1 0 15152261 -nonagenarian n 1 2 @ + 1 0 10360253 -nonaggression n 1 1 @ 1 0 06661923 -nonagon n 1 1 @ 1 0 13882639 -nonalignment n 1 2 ! @ 1 0 08294395 -nonalinement n 1 1 @ 1 0 08294395 -nonallele n 1 1 @ 1 0 05439942 -nonappearance n 1 1 @ 1 0 01234243 -nonattendance n 1 3 ! @ ~ 1 0 01234090 -nonattender n 1 1 @ 1 0 10362917 -nonbeing n 1 3 ! @ ~ 1 0 13959818 -nonbeliever n 1 2 @ ~ 1 0 10015897 -nonbiodegradable_pollution n 1 2 ! @ 1 0 14517243 -noncallable_bond n 1 1 @ 1 0 13338780 -noncandidate n 1 1 @ 1 0 10360366 -nonce n 1 1 @ 1 0 15135434 -nonce_word n 1 1 @ 1 0 06294584 -nonchalance n 1 2 @ + 1 0 04673470 -noncitizen n 1 3 ! @ ~ 1 0 10103485 -noncoding_dna n 1 1 @ 1 0 14831178 -noncom n 1 3 @ ~ ; 1 1 10360747 -noncombatant n 1 2 @ + 1 0 10360578 -noncommissioned_officer n 1 3 @ ~ ; 1 0 10360747 -noncompliance n 1 4 ! @ ~ + 1 0 01179707 -noncompliant n 1 2 @ ~ 1 0 09833997 -nonconductor n 1 2 @ ~ 1 0 14821590 -nonconformance n 2 2 @ ~ 2 0 06212650 01204845 -nonconformism n 2 3 ! @ + 2 0 06212650 00418305 -nonconformist n 2 4 ! @ ~ + 2 1 09958133 09957834 -nonconformity n 4 3 ! @ ~ 4 0 07181453 06212650 04801030 01204845 -nondepository_financial_institution n 1 3 @ ~ #m 1 0 08419984 -nondescript n 1 2 @ + 1 0 10361060 -nondevelopment n 1 3 ! @ ~ 1 0 13522744 -nondirectional_antenna n 1 2 @ ~ 1 0 03846772 -nondiscretionary_trust n 1 1 @ 1 0 13362734 -nondisjunction n 1 1 @ 1 0 13522879 -nondrinker n 1 3 ! @ ~ 1 0 09757944 -nondriver n 1 2 ! @ 1 1 10361194 -none n 2 1 @ 2 0 15228787 01034385 -nonentity n 2 2 @ ~ 2 0 13959931 09923418 -nonequivalence n 1 3 ! @ + 1 1 04752414 -nones n 1 1 @ 1 0 15230076 -nonessential n 1 3 @ ~ + 1 0 09312645 -nonesuch n 1 2 @ ~ 1 0 10325243 -nonesuch_clover n 1 1 @ 1 0 12549192 -nonevent n 1 1 @ 1 0 07283473 -nonexistence n 1 4 ! @ ~ + 1 0 13959931 -nonfat_dry_milk n 1 1 @ 1 0 07846274 -nonfeasance n 1 1 @ 1 0 00739078 -nonfiction n 1 2 @ ~ 1 1 06367571 -nonfictional_prose n 1 2 @ ~ 1 0 06367571 -nonflowering_plant n 1 3 @ ~ #m 1 0 11545524 -nonfluent_aphasia n 1 1 @ 1 0 14098458 -nongonococcal_urethritis n 1 1 @ 1 0 14566996 -nongovernmental_organization n 1 2 @ ~ 1 0 08009834 -nonindulgence n 1 3 @ ~ + 1 0 04881998 -noninterference n 1 2 ! @ 1 1 06661747 -nonintervention n 1 2 ! @ 1 0 06661747 -nonlinear_correlation n 1 2 @ ; 1 0 06031657 -nonlinear_distortion n 1 1 @ 1 0 11512144 -nonlinear_system n 1 1 @ 1 0 08435246 -nonmalignant_neoplasm n 1 2 @ ~ 1 0 14236226 -nonmalignant_tumor n 1 2 @ ~ 1 0 14236226 -nonmalignant_tumour n 1 2 @ ~ 1 0 14236226 -nonmember n 1 2 ! @ 1 0 10308066 -nonmetal n 1 2 @ + 1 0 14627246 -nonobservance n 1 2 ! @ 1 0 01204711 -nonoccurrence n 1 1 @ 1 1 13961179 -nonparametric_statistic n 1 3 @ ~ ; 1 0 06022727 -nonparametric_statistics n 1 1 @ 1 0 06034101 -nonpareil n 3 2 @ ~ 3 0 10325243 07621264 07604840 -nonparticipant n 1 1 @ 1 0 10361296 -nonparticipation n 1 3 ! @ ~ 1 0 01239487 -nonparticulate_radiation n 1 3 @ ~ %p 1 0 11450869 -nonpartisan n 1 3 ! @ + 1 0 10361390 -nonpartisanship n 1 2 @ ~ 1 0 06202686 -nonpartizan n 1 1 @ 1 0 10361390 -nonpasserine_bird n 1 1 @ 1 0 01524761 -nonpayment n 3 3 ! @ ~ 3 0 13300411 13300141 01120855 -nonperformance n 1 2 @ ~ 1 0 00739270 -nonperson n 1 1 @ 1 0 10361525 -nonprofit n 1 1 @ 1 0 01137597 -nonprofit_organization n 1 1 @ 1 0 01137597 -nonproliferation n 1 2 ! @ 1 0 01078572 -nonproliferation_center n 1 2 @ #p 1 0 08125722 -nonrapid_eye_movement n 1 1 @ 1 0 14025478 -nonrapid_eye_movement_sleep n 1 1 @ 1 0 14025478 -nonreader n 2 2 @ ~ 2 0 10361901 10199103 -nonreligious_person n 1 3 ! @ ~ 1 0 09625789 -nonremittal n 2 2 @ ~ 2 0 13300411 13300141 -nonresident n 1 2 ! @ 1 0 10362003 -nonresistance n 1 2 @ + 1 0 01169598 -nonrestrictive_clause n 1 1 @ 1 0 06315454 -nonsense n 2 2 @ ~ 2 1 06607339 03376438 -nonsense_verse n 1 1 @ 1 0 06608035 -nonsensicality n 1 3 @ ~ + 1 0 06607339 -nonsingular_matrix n 1 2 ! @ 1 0 08269939 -nonsmoker n 2 2 ! @ 2 0 10362319 03828020 -nonsmoking_car n 1 1 @ 1 0 03828020 -nonsocial_infection n 1 1 @ 1 0 14178326 -nonsolid_color n 1 2 @ ; 1 0 04978561 -nonsolid_colour n 1 2 @ ; 1 0 04978561 -nonspecific_urethritis n 1 1 @ 1 0 14567571 -nonstarter n 2 2 @ ~ 2 0 10273064 02385776 -nonsteroid n 1 2 @ ~ 1 0 15058023 -nonsteroidal n 1 2 @ ~ 1 0 15058023 -nonsteroidal_anti-inflammatory n 1 2 @ ~ 1 0 03828465 -nonsteroidal_anti-inflammatory_drug n 1 2 @ ~ 1 0 03828465 -nonstop n 1 1 @ 1 0 00302001 -nonstop_flight n 1 1 @ 1 0 00302001 -nonsuch n 1 2 @ ~ 1 0 10325243 -nontextual_matter n 1 3 @ ~ #p 1 0 06998748 -nonthrombocytopenic_purpura n 1 1 @ 1 0 14197628 -nontricyclic n 1 2 @ ~ 1 0 03829085 -nontricyclic_antidepressant n 1 2 @ ~ 1 0 03829085 -nontricyclic_antidepressant_drug n 1 2 @ ~ 1 0 03829085 -nontricyclic_drug n 1 2 @ ~ 1 0 03829085 -nonuniformity n 1 3 ! @ ~ 1 0 04750940 -nonvascular_organism n 1 2 @ ~ 1 0 13084479 -nonvascular_plant n 1 3 @ ~ #m 1 0 11537327 -nonverbal_intelligence n 1 1 @ 1 0 05619059 -nonviolence n 1 3 @ ~ + 1 0 01242716 -nonviolent_resistance n 1 2 @ ~ 1 0 01242716 -nonvolatile_storage n 1 3 ! @ ~ 1 0 03829340 -nonworker n 1 3 ! @ ~ 1 0 09626031 -noodle n 2 2 @ ~ 2 0 07699584 05539454 -nook n 2 3 @ ~ #p 2 0 08643648 03109881 -nook_and_cranny n 1 1 @ 1 0 05820023 -nookie n 1 2 @ ; 1 0 00846021 -nooks_and_crannies n 1 1 @ 1 1 05820023 -nooky n 1 2 @ ; 1 0 00846021 -noon n 1 2 @ #p 1 1 15165490 -noonan's_syndrome n 1 1 @ 1 0 14308012 -noonday n 1 2 @ #p 1 0 15165490 -noontide n 1 2 @ #p 1 0 15165490 -noose n 2 5 @ ~ #p %p + 2 0 04248851 03829563 -nootka n 2 1 @ 2 0 09662951 06914709 -nootka_cypress n 1 2 @ #m 1 0 11635830 -nopal n 2 2 @ #m 2 0 11852028 11851258 -nopalea n 1 3 @ #m %m 1 0 11851101 -nor'-east n 1 1 @ 1 0 13831843 -nor'-nor'-east n 1 1 @ 1 0 13831572 -nor'-nor'-west n 1 1 @ 1 0 13835163 -nor'-west n 1 1 @ 1 0 13834885 -nor-q-d n 1 2 @ %s 1 0 03830448 -noradrenaline n 1 1 @ 1 1 05407890 -norbert_wiener n 1 1 @ 1 0 11385611 -nord-pas-de-calais n 1 2 @ #p 1 0 08943810 -nordic n 1 2 @ ~ 1 0 06953731 -noreaster n 1 1 @ 1 0 11462951 -noreg n 1 4 @ #m %m %p 1 0 08764107 -norepinephrine n 1 1 @ 1 0 05407890 -norethandrolone n 1 2 @ #s 1 1 14746417 -norethindrone n 1 2 @ #s 1 0 14746417 -norethindrone_acetate n 1 2 @ #s 1 0 14746417 -norethynodrel n 1 2 @ #s 1 0 14746793 -norflex n 1 2 @ ; 1 0 03856148 -norfolk n 1 2 @ #p 1 0 09150863 -norfolk_island n 1 2 @ #p 1 0 08835188 -norfolk_island_pine n 1 1 @ 1 0 11646344 -norfolk_jacket n 1 1 @ 1 0 03829857 -norfolk_terrier n 1 1 @ 1 0 02094114 -norfolk_wherry n 1 2 @ ; 1 0 04577293 -norge n 1 4 @ #m %m %p 1 0 08764107 -norgestrel n 1 2 @ #s 1 0 14747007 -noria n 1 1 @ 1 0 03829954 -norinyl n 1 2 @ %s 1 0 03830111 -norlestrin n 1 2 @ %s 1 0 03830278 -norlutin n 1 3 @ #s ; 1 0 14746417 -norm n 2 3 @ ~ ; 2 2 13854488 06021761 -norma n 1 1 @ 1 0 09372176 -norma_jean_baker n 1 1 @ 1 0 11186207 -normal n 1 2 @ ~ 1 0 05667613 -normal_curve n 1 2 @ ; 1 0 06026088 -normal_distribution n 1 2 @ ; 1 1 06025689 -normal_dwarf n 1 1 @ 1 0 10472447 -normal_fault n 1 1 @ 1 0 09372313 -normal_school n 1 1 @ 1 0 08412620 -normal_tension_glaucoma n 1 1 @ 1 0 14255848 -normalcy n 2 3 @ ~ = 2 0 14500908 04795413 -normalisation n 1 3 @ ~ + 1 0 01158690 -normaliser n 1 2 @ + 1 0 10362428 -normality n 4 6 ! @ ~ = + ; 4 0 14500908 13580909 04795413 04714058 -normalization n 1 3 @ ~ + 1 0 01158690 -normalizer n 1 2 @ + 1 0 10362428 -norman n 3 2 @ #m 3 0 11209428 11209306 09713260 -norman-french n 1 1 @ 1 0 06965698 -norman_architecture n 1 1 @ 1 0 05843042 -norman_conquest n 1 2 @ %p 1 0 01306736 -norman_french n 1 1 @ 1 0 06965698 -norman_jewison n 1 1 @ 1 0 11084409 -norman_mailer n 1 1 @ 1 0 11149762 -norman_mattoon_thomas n 1 1 @ 1 0 11339361 -norman_rockwell n 1 1 @ 1 0 11267568 -norman_thomas n 1 1 @ 1 0 11339361 -normandie n 1 4 @ #p %m %p 1 0 08944561 -normandy n 1 4 @ #p %m %p 1 0 08944561 -normodyne n 1 1 @ 1 0 03630544 -normothermia n 1 1 @ 1 0 14044372 -norn n 1 3 @ ~ ; 1 0 09582343 -norris n 1 1 @ 1 0 11209543 -norrish n 1 1 @ 1 0 11209675 -norse n 3 3 @ ~ #m 3 0 09730204 09725402 06953731 -norse_deity n 1 3 @ ~ ; 1 0 09578465 -norse_mythology n 1 3 @ ; - 1 0 07983856 -norseman n 1 2 @ #m 1 0 09725402 -north n 7 6 @ #p %m %p = ; 7 4 09052652 09052314 13831176 08561081 13835427 13831441 11209790 -north-seeking_pole n 1 1 @ 1 0 03987674 -north-south_direction n 1 1 @ 1 0 08681534 -north_africa n 1 3 @ #p %p 1 0 09178141 -north_america n 2 5 @ #p %m %p - 2 1 09372504 08173030 -north_american n 1 3 @ ~ #m 1 0 09725229 -north_american_country n 1 3 @ ~ #p 1 0 08702805 -north_american_free_trade_agreement n 1 1 @ 1 0 01092769 -north_american_nation n 1 3 @ ~ #p 1 0 08702805 -north_atlantic n 1 3 @ #p %p 1 0 09373016 -north_atlantic_council n 1 2 @ #p 1 0 08310722 -north_atlantic_treaty n 1 1 @ 1 0 06775086 -north_atlantic_treaty_organization n 1 3 @ %m %p 1 0 08174398 -north_borneo n 1 3 @ #p %m 1 0 08964288 -north_by_east n 1 1 @ 1 0 13831310 -north_by_west n 1 1 @ 1 0 13835308 -north_carolina n 2 4 @ #m #p %p 2 1 09126305 09126895 -north_carolinian n 1 1 @ 1 0 09744834 -north_cascades_national_park n 1 2 @ #p 1 0 08607957 -north_celestial_pole n 1 1 @ 1 0 08611532 -north_channel n 1 1 @ 1 0 09373175 -north_dakota n 1 3 @ #p %p 1 0 09129442 -north_dakotan n 1 1 @ 1 0 09744945 -north_dravidian n 1 2 @ ~ 1 0 06982221 -north_equatorial_current n 1 1 @ 1 0 11489230 -north_frigid_zone n 1 1 @ 1 0 08496477 -north_germanic n 1 2 @ ~ 1 0 06953731 -north_germanic_language n 1 2 @ ~ 1 0 06953731 -north_island n 1 2 @ #p 1 0 08972148 -north_island_edelweiss n 1 1 @ 1 0 11990920 -north_korea n 1 5 @ #p %p + - 1 0 08955082 -north_korean n 1 2 @ + 1 1 09719105 -north_korean_monetary_unit n 1 2 @ ~ 1 0 13708855 -north_korean_won n 1 2 @ %p 1 0 13708992 -north_northeast n 1 1 @ 1 0 13831572 -north_northwest n 1 1 @ 1 0 13835163 -north_pacific n 1 2 @ #p 1 0 09373485 -north_peak n 1 2 @ #p 1 0 09373623 -north_platte n 2 2 @ #p 2 0 09373716 09110099 -north_platte_river n 1 2 @ #p 1 0 09373716 -north_pole n 1 2 @ + 1 1 08611836 -north_sea n 1 3 @ #p %p 1 0 09374036 -north_side n 1 1 @ 1 0 08650305 -north_star n 1 2 @ #m 1 0 09396712 -north_star_state n 1 3 @ #p %p 1 0 09102016 -north_temperate_zone n 1 1 @ 1 0 08662155 -north_vietnam n 1 2 @ #p 1 0 09163584 -north_wind n 1 2 @ ~ 1 0 11487950 -north_yorkshire n 1 2 @ #p 1 0 08885380 -northampton n 1 2 @ #p 1 0 08885921 -northamptonshire n 1 3 @ #p %p 1 0 08885773 -northeast n 4 2 @ #p 4 2 13831843 08563990 13835546 08561230 -northeast_by_east n 1 1 @ 1 0 13831994 -northeast_by_north n 1 1 @ 1 0 13831717 -northeaster n 1 2 @ + 1 0 11462951 -northeastern_united_states n 1 2 @ #p 1 0 08563990 -northeastward n 1 1 @ 1 0 13831843 -norther n 1 3 @ ~ + 1 0 11487950 -northerly n 1 2 @ ~ 1 0 11487950 -northern n 1 1 @ 1 0 06949207 -northern_alliance n 1 1 @ 1 0 08476425 -northern_baptist n 1 2 @ #m 1 0 10362557 -northern_baptist_convention n 1 2 @ %m 1 0 08089797 -northern_barramundi n 1 2 @ #m 1 0 02545387 -northern_bedstraw n 1 1 @ 1 0 12665659 -northern_beech_fern n 1 1 @ 1 0 13231078 -northern_bobwhite n 1 1 @ 1 0 01804653 -northern_bog_lemming n 1 1 @ 1 0 02346170 -northern_casque-headed_frog n 1 2 @ #m 1 0 01652297 -northern_cricket_frog n 1 1 @ 1 0 01651641 -northern_cross n 1 2 @ #m 1 0 09373333 -northern_dewberry n 1 2 @ %p 1 0 12655351 -northern_dune_tansy n 1 2 @ #m 1 0 12022821 -northern_europe n 1 2 @ #p 1 0 08760393 -northern_flying_squirrel n 1 1 @ 1 0 02361090 -northern_harrier n 1 2 @ #m 1 0 01610226 -northern_hemisphere n 1 2 @ %p 1 0 08611662 -northern_holly_fern n 1 1 @ 1 0 13200411 -northern_ireland n 1 4 @ #p %p - 1 0 08887841 -northern_jacob's_ladder n 1 1 @ 1 0 12810007 -northern_lights n 1 1 @ 1 0 11427619 -northern_lobster n 2 4 @ #m #p %p 2 0 07792926 01983481 -northern_mammoth n 1 1 @ 1 0 02505063 -northern_mariana_islands n 1 3 @ #p %p 1 0 08837864 -northern_marianas n 1 3 @ #p %p 1 0 08837864 -northern_oak_fern n 1 1 @ 1 0 13197507 -northern_oriole n 1 3 @ ~ #m 1 0 01572328 -northern_parula n 1 2 @ #m 1 0 01567678 -northern_phalarope n 1 2 @ #m 1 0 02038141 -northern_pike n 1 1 @ 1 0 02561381 -northern_pin_oak n 1 1 @ 1 0 12271451 -northern_pitch_pine n 1 1 @ 1 0 11611356 -northern_pocket_gopher n 1 2 @ #m 1 0 02354781 -northern_porgy n 1 2 @ %p 1 0 02593453 -northern_red_oak n 1 1 @ 1 0 12277800 -northern_rhodesia n 1 4 @ #p %m %p 1 0 09165613 -northern_scup n 1 2 @ %p 1 0 02593453 -northern_sea_robin n 1 2 @ #m 1 0 02651060 -northern_shrike n 1 1 @ 1 0 01599269 -northern_snakehead n 1 2 @ #m 1 0 02514320 -northern_snow_bedstraw n 1 1 @ 1 0 12665659 -northern_spy n 1 1 @ 1 0 07741235 -northern_storm_petrel n 1 2 @ #m 1 0 02061217 -northern_territory n 1 3 @ #p %p 1 0 08834916 -northern_white_cedar n 1 2 @ #m 1 0 11644226 -northern_whiting n 1 1 @ 1 0 02597972 -northern_woodsia n 1 1 @ 1 0 13202355 -northerner n 2 4 @ ~ #m ; 2 2 10362682 10802283 -northernness n 1 3 ! @ + 1 0 05079180 -northland n 1 1 @ 1 1 08562990 -northman n 1 3 @ ~ #m 1 0 09730204 -northrop n 1 1 @ 1 0 11209990 -northrop_frye n 1 1 @ 1 0 10984418 -northumberland n 1 3 @ #p %p 1 0 08884328 -northumbria n 1 2 @ #p 1 0 08886147 -northward n 1 1 @ 1 0 13831176 -northwest n 4 3 @ #p %p 4 1 08564139 13836253 13834885 08561946 -northwest_by_north n 1 1 @ 1 0 13835037 -northwest_by_west n 1 1 @ 1 0 13834761 -northwest_passage n 1 1 @ 1 0 08680571 -northwest_territories n 1 3 @ #p %p 1 0 08825477 -northwest_wind n 1 1 @ 1 0 11448475 -northwester n 1 2 @ + 1 0 11448475 -northwestern_united_states n 1 3 @ #p %p 1 0 08564139 -northwestward n 1 1 @ 1 0 13834885 -nortriptyline n 1 1 @ 1 0 03830582 -noruz n 1 2 @ ; 1 0 15223916 -norvasc n 1 1 @ 1 0 02702809 -norvir n 1 1 @ 1 0 04094983 -norway n 1 5 @ #m %m %p + 1 1 08764107 -norway_lobster n 1 2 @ %p 1 0 01984245 -norway_maple n 1 1 @ 1 0 12754781 -norway_rat n 1 3 @ ~ #m 1 0 02333546 -norway_spruce n 1 1 @ 1 0 11625003 -norwegian n 2 4 @ ~ #m + 2 0 09725402 06954303 -norwegian_elkhound n 1 1 @ 1 0 02091467 -norwegian_krone n 1 2 @ %p 1 0 13682971 -norwegian_lobster n 1 2 @ #p 1 0 07793521 -norwegian_monetary_unit n 1 2 @ ~ 1 0 13682860 -norwegian_sea n 1 3 @ #p %p 1 0 09374306 -norwich_terrier n 1 1 @ 1 0 02094258 -nose n 8 6 @ ~ #p %p + ; 8 3 05598147 03830835 03831062 13762458 06807056 05658826 05637106 03833564 -nose_candy n 1 1 @ 1 0 03066743 -nose_cone n 1 2 @ #p 1 0 03831537 -nose_count n 1 1 @ 1 0 00653388 -nose_dive n 1 2 @ ~ 1 0 00326677 -nose_drops n 1 2 @ ; 1 0 02837416 -nose_flute n 1 1 @ 1 0 03831757 -nose_job n 1 1 @ 1 0 00689062 -nose_ring n 1 1 @ 1 0 03832008 -nosebag n 1 1 @ 1 0 03831203 -noseband n 1 2 @ #p 1 0 03831382 -nosebleed n 1 1 @ 1 0 14370992 -nosecount n 1 1 @ 1 0 00653388 -nosedive n 2 2 @ ~ 2 0 13523088 00326677 -nosegay n 1 1 @ 1 0 02879087 -nosepiece n 3 2 @ #p 3 0 03831899 03831382 02899439 -nosewheel n 1 2 @ #p 1 0 03832144 -nosey-parker n 1 1 @ 1 0 09883807 -nosh n 1 3 @ + ; 1 0 07577538 -nosh-up n 1 2 @ ; 1 0 07577657 -nosher n 1 2 @ + 1 0 10362765 -nosiness n 1 2 @ + 1 0 05683390 -nosology n 1 1 @ 1 0 06053280 -nostalgia n 1 3 @ ~ + 1 1 07487375 -nostoc n 1 2 @ #m 1 0 01359365 -nostocaceae n 1 3 @ #m %m 1 0 01359070 -nostradamus n 1 1 @ 1 0 11210105 -nostril n 1 2 @ #p 1 0 05600109 -nostrum n 2 2 @ ~ 2 0 03880770 03832305 -nosy-parker n 1 1 @ 1 0 09883807 -not-for-profit n 1 1 @ 1 0 01137597 -nota_bene n 1 1 @ 1 0 06764380 -notability n 1 2 @ + 1 0 10276238 -notable n 1 2 @ + 1 1 10276238 -notary n 1 3 @ + ; 1 0 10363149 -notary_public n 1 2 @ ; 1 0 10363149 -notation n 3 3 @ ~ + 3 1 06808493 06763273 00615182 -notational_system n 1 2 @ ~ 1 0 06808493 -notch n 4 4 @ ~ #p + 4 1 13905275 09386842 03832405 00387897 -note n 9 4 @ ~ #m + 9 7 06504462 06626286 06865345 07082819 04727694 13393762 06763273 14435445 13398469 -note_of_hand n 1 2 @ ~ 1 0 13398469 -note_payable n 1 1 @ 1 0 13407718 -note_receivable n 1 1 @ 1 0 13407389 -note_value n 1 2 @ ; 1 0 15134913 -notebook n 2 2 @ ~ 2 1 06415419 03832673 -notebook_computer n 1 2 @ ~ 1 0 03832673 -notebook_entry n 1 1 @ 1 0 06505434 -notecase n 1 1 @ 1 0 04548362 -notechis n 1 3 @ #m %m 1 0 01750315 -notechis_scutatus n 1 2 @ #m 1 0 01750437 -notemigonus n 1 2 @ #m 1 0 01442055 -notemigonus_crysoleucas n 1 1 @ 1 0 01442166 -notepad n 1 2 @ ~ 1 0 15021085 -notepaper n 1 2 @ ~ 1 0 06259166 -nothing n 1 2 @ ~ 1 1 13740168 -nothingness n 2 2 @ ~ 2 0 14455700 07136711 -nothings n 1 2 @ ~ 1 0 07137315 -nothofagus n 1 3 @ #m %m 1 0 12265900 -nothofagus_cuninghamii n 1 1 @ 1 0 12266528 -nothofagus_dombeyi n 1 2 @ #m 1 0 12266644 -nothofagus_menziesii n 1 2 @ #m 1 0 12266984 -nothofagus_obliqua n 1 2 @ #m 1 0 12267133 -nothofagus_procera n 1 2 @ #m 1 0 12267265 -nothofagus_solanderi n 1 2 @ #m 1 0 12267411 -nothofagus_truncata n 1 2 @ #m 1 0 12267534 -nothosaur n 1 2 @ #m 1 0 01726203 -nothosauria n 1 3 @ #m %m 1 0 01725933 -notice n 7 3 @ ~ + 7 6 06747670 05703429 07185668 07212612 06793426 05703803 06410776 -notice_board n 1 2 @ ~ 1 0 02916538 -noticeability n 1 4 @ ~ = + 1 0 04706290 -noticeableness n 1 4 @ ~ = + 1 0 04706290 -noticer n 2 2 @ + 2 0 10363445 10363360 -notification n 3 4 @ ~ + ; 3 1 01187463 07212424 07185668 -notion n 4 3 @ ~ + 4 3 05916739 05836598 05919549 03832799 -notions_counter n 1 1 @ 1 0 03832973 -notochord n 1 2 @ ~ 1 0 01466472 -notomys n 1 3 @ #m %m 1 0 02334609 -notonecta n 1 3 @ #m %m 1 0 02240852 -notonecta_undulata n 1 2 @ #m 1 0 02241008 -notonectidae n 1 3 @ #m %m 1 0 02240706 -notophthalmus n 1 2 @ #m 1 0 01630795 -notophthalmus_viridescens n 1 1 @ 1 0 01630901 -notoriety n 1 2 @ ~ 1 0 14439149 -notornis n 1 2 @ #m 1 0 02017725 -notornis_mantelli n 1 2 @ #m 1 0 02017725 -notoryctidae n 1 3 @ #m %m 1 0 01885724 -notoryctus n 1 3 @ #m %m 1 0 01885856 -notoryctus_typhlops n 1 2 @ #m 1 0 01886045 -notostraca n 1 3 @ #m %m 1 0 01995803 -notropis n 1 3 @ #m %m 1 0 01441625 -notropis_atherinoides n 1 1 @ 1 0 01441742 -notropis_cornutus n 1 2 @ #m 1 0 01441910 -notturno n 1 1 @ 1 0 07047679 -nouakchott n 1 2 @ #p 1 0 08967176 -nougat n 1 1 @ 1 0 07608339 -nougat_bar n 1 1 @ 1 0 07608429 -nought n 1 1 @ 1 0 13742358 -noughts_and_crosses n 1 1 @ 1 0 00506207 -noumenon n 1 1 @ 1 0 05813457 -noun n 2 5 @ ~ #m #p %p 2 2 06319293 06317862 -noun_phrase n 1 1 @ 1 0 06316480 -nourishment n 2 3 @ ~ + 2 1 07570720 00664849 -nous n 2 3 @ ~ ; 2 0 05615147 05611302 -nouveau-riche n 1 3 @ ~ + 1 0 10740868 -nouvelle_cuisine n 1 2 @ ; 1 0 07571903 -nouvelle_vague n 1 1 @ 1 0 08469917 -nov n 1 3 @ #p %p 1 1 15213406 -nov-esperanto n 1 1 @ 1 0 06897205 -nov-latin n 1 1 @ 1 0 06897381 -nova n 1 1 @ 1 0 09374493 -nova_lisboa n 1 2 @ #p 1 0 08708481 -nova_lox n 1 1 @ 1 0 07796970 -nova_salmon n 1 1 @ 1 0 07796970 -nova_scotia n 2 3 @ #p %p 2 0 08826841 08826306 -nova_scotia_lox n 1 1 @ 1 0 07796970 -nova_scotia_salmon n 1 1 @ 1 0 07796970 -nova_scotian n 1 1 @ 1 0 09725546 -nova_style_salmon n 1 1 @ 1 0 07796970 -nova_zembla n 1 2 @ #p 1 0 09010785 -novation n 1 3 @ + ; 1 0 00196848 -novaya_zemlya n 1 2 @ #p 1 0 09010785 -novel n 2 3 @ ~ + 2 1 06367879 03833065 -novelette n 1 2 @ + 1 0 06368962 -novelisation n 1 2 @ + 1 0 00931453 -novelist n 1 3 @ ~ + 1 1 10363573 -novelization n 1 2 @ + 1 0 00931453 -novella n 1 1 @ 1 0 06368962 -novelty n 4 2 @ #m 4 2 04800596 05635055 03623448 02787435 -novelty_shop n 1 1 @ 1 0 03436417 -november n 1 3 @ #p %p 1 1 15213406 -november_1 n 1 2 @ #p 1 0 15195059 -november_11 n 1 2 @ #p 1 0 15200896 -november_2 n 1 2 @ #p 1 1 15195477 -november_5 n 1 4 @ ~ #p ; 1 0 15158816 -novena n 1 2 @ ; 1 0 01043189 -novgorod n 1 2 @ #p 1 0 09009174 -novial n 1 1 @ 1 0 06897306 -novice n 2 2 @ ~ 2 0 10364198 10363913 -noviciate n 1 2 @ ; 1 0 15294884 -novillada n 1 1 @ 1 0 03833294 -novillero n 1 1 @ 1 0 09836658 -novitiate n 2 2 @ ; 2 1 15294884 10364198 -novobiocin n 1 1 @ 1 0 03833409 -novocain n 1 2 @ ; 1 0 04006953 -novocaine n 1 1 @ 1 0 04006953 -novosibirsk n 1 2 @ #p 1 0 09010300 -now n 1 1 @ 1 1 15119919 -nowadays n 1 2 @ ~ 1 0 15119536 -nowhere n 1 1 @ 1 1 14436667 -nowness n 1 2 @ ~ 1 0 05050115 -nowrooz n 1 2 @ ; 1 0 15223916 -nowruz n 1 2 @ ; 1 0 15223916 -nox n 1 1 @ 1 0 09559769 -noxiousness n 1 2 @ + 1 0 04790774 -noyes n 1 1 @ 1 0 11210291 -nozzle n 2 4 @ ~ #p ; 2 1 03833564 05598707 -np n 2 1 @ 2 0 14646403 10367819 -npa n 1 3 @ %p ; 1 0 08036293 -npc n 1 2 @ #p 1 0 08125722 -nra n 1 1 @ 1 0 08375722 -nrc n 1 1 @ 1 0 08122596 -nrem n 1 1 @ 1 0 14025478 -nrem_sleep n 1 1 @ 1 0 14025478 -nrl n 1 2 @ #p 1 0 03812541 -nrna n 1 1 @ 1 0 14833027 -nro n 1 3 @ #m #p 1 0 08347704 -nrti n 1 3 @ ~ #p 1 0 03834836 -nsa n 1 3 @ #m #p 1 0 08348091 -nsaid n 1 2 @ ~ 1 0 03828465 -nsc n 1 1 @ 1 0 08127760 -nsf n 1 1 @ 1 0 08126921 -nsu n 1 1 @ 1 0 14567571 -nsw n 1 3 @ #p %m 1 0 08193448 -nswc n 1 2 @ #p 1 0 08193645 -nt n 1 2 @ ; 1 0 08049125 -ntis n 1 2 @ #p 1 0 08131254 -nu n 1 2 @ #m 1 0 06835420 -nuance n 1 1 @ 1 1 06606191 -nub n 3 3 @ ~ + 3 0 13895622 09374646 05921123 -nubbin n 1 1 @ 1 1 09374773 -nubbiness n 1 2 @ + 1 0 04948722 -nubble n 1 2 @ + 1 0 13895622 -nubia n 1 3 @ #p %m 1 0 08504375 -nubian n 1 2 @ #m 1 0 10364333 -nubian_desert n 1 2 @ #p 1 0 09171674 -nucellus n 1 2 @ #p 1 0 11679250 -nucha n 1 2 @ #p 1 0 05547396 -nucifraga n 1 3 @ #m %m 1 0 01581607 -nucifraga_caryocatactes n 1 1 @ 1 0 01581874 -nucifraga_columbiana n 1 1 @ 1 0 01581984 -nuclear-powered_ship n 1 1 @ 1 0 03833907 -nuclear-powered_submarine n 1 1 @ 1 0 03811295 -nuclear_cataract n 1 1 @ 1 0 14256117 -nuclear_chemist n 1 1 @ 1 0 10364502 -nuclear_chemistry n 1 1 @ 1 0 06090540 -nuclear_club n 1 1 @ 1 0 07960569 -nuclear_deterrence n 1 2 @ ; 1 0 01076863 -nuclear_energy n 1 2 @ ~ 1 0 11425989 -nuclear_engineering n 1 1 @ 1 0 06135335 -nuclear_explosion n 1 2 @ %p 1 0 07408386 -nuclear_family n 1 1 @ 1 0 07973487 -nuclear_fission n 1 1 @ 1 0 13481224 -nuclear_fuel n 1 1 @ 1 0 14688089 -nuclear_fusion n 1 2 @ ~ 1 0 13485525 -nuclear_fusion_reaction n 1 2 @ ~ 1 0 13485525 -nuclear_magnetic_resonance n 1 1 @ 1 0 11478898 -nuclear_medicine n 1 1 @ 1 0 06052685 -nuclear_meltdown n 1 1 @ 1 0 13513362 -nuclear_physicist n 1 2 @ ~ 1 0 10364643 -nuclear_physics n 1 3 @ %p - 1 0 06100555 -nuclear_power n 1 1 @ 1 0 11426125 -nuclear_propulsion n 1 1 @ 1 0 11488160 -nuclear_reaction n 1 3 @ ~ ; 1 0 13523208 -nuclear_reactor n 1 4 @ ~ %p ; 1 0 03834040 -nuclear_regulatory_commission n 1 1 @ 1 0 08122596 -nuclear_resonance n 1 1 @ 1 1 11478514 -nuclear_rna n 1 1 @ 1 0 14833027 -nuclear_rocket n 1 1 @ 1 0 03834472 -nuclear_submarine n 1 1 @ 1 0 03811295 -nuclear_terrorism n 1 2 @ ; 1 0 00764588 -nuclear_transplantation n 1 2 @ ~ 1 0 00638770 -nuclear_warhead n 1 2 @ #p 1 0 02753881 -nuclear_weapon n 1 3 @ ~ %p 1 0 03834604 -nuclear_winter n 1 1 @ 1 0 11434150 -nuclease n 1 2 @ ~ 1 0 14963916 -nucleic_acid n 1 3 @ #p ; 1 1 14964129 -nucleolar_organiser n 1 2 @ #p 1 0 05435477 -nucleolar_organizer n 1 2 @ #p 1 0 05435477 -nucleole n 1 2 @ #p 1 0 05435277 -nucleolus n 1 2 @ #p 1 1 05435277 -nucleolus_organiser n 1 2 @ #p 1 0 05435477 -nucleolus_organizer n 1 2 @ #p 1 0 05435477 -nucleon n 1 3 @ ~ #p 1 0 09374886 -nucleon_number n 1 1 @ 1 0 13715614 -nucleonics n 1 3 @ %p - 1 0 06100555 -nucleoplasm n 1 2 @ #s 1 0 05434784 -nucleoprotein n 1 1 @ 1 0 14734905 -nucleoside n 1 2 @ ~ 1 0 14964367 -nucleoside_reverse_transcriptase_inhibitor n 1 3 @ ~ #p 1 0 03834836 -nucleosynthesis n 1 2 @ ; 1 0 13523503 -nucleotide n 1 2 @ ~ 1 0 14964590 -nucleus n 6 7 @ ~ #p %s %p + ; 6 3 05434927 09375085 08242223 09375223 05501932 05320764 -nucleus_niger n 1 2 @ #p 1 0 05500006 -nuda n 1 3 @ #m %m 1 0 01919099 -nude n 4 3 @ ~ + 4 1 03835197 14456435 10365399 03835298 -nude_dancing n 1 2 @ ~ 1 0 00531201 -nude_mouse n 1 1 @ 1 0 02332954 -nude_painting n 1 1 @ 1 0 03835197 -nude_person n 1 2 @ ~ 1 0 10365399 -nude_sculpture n 1 1 @ 1 0 03835298 -nude_statue n 1 1 @ 1 0 03835298 -nudeness n 1 3 @ ~ + 1 0 14456138 -nudge n 1 2 @ + 1 0 00112997 -nudger n 1 2 @ + 1 0 10365514 -nudibranch n 1 3 @ ~ #m 1 0 01950731 -nudibranchia n 1 3 @ #m %m 1 0 01950457 -nudism n 1 2 @ + 1 0 01031563 -nudist n 1 2 @ + 1 0 10365701 -nudity n 1 3 @ ~ + 1 0 14456138 -nudnick n 1 2 @ ; 1 0 10365846 -nudnik n 1 2 @ ; 1 0 10365846 -nuffield n 1 1 @ 1 0 11210383 -nugget n 1 1 @ 1 0 09375481 -nuisance n 2 3 @ ~ ; 2 1 05830527 10391513 -nuisance_abatement n 1 3 @ ~ ; 1 0 00361459 -nuisance_tax n 1 1 @ 1 0 13316568 -nuisance_value n 1 1 @ 1 0 05162807 -nuke n 1 3 @ #p + 1 0 02753881 -null n 1 2 @ ~ 1 0 13740168 -null_set n 1 1 @ 1 0 08001344 -null_space n 1 1 @ 1 1 08004443 -nullah n 1 1 @ 1 0 09375606 -nullarbor_plain n 1 2 @ #p 1 0 08835390 -nullification n 2 3 @ ~ + 2 0 06185748 00231567 -nullifier n 2 2 @ + 2 0 10365984 10214390 -nullipara n 1 2 @ ; 1 0 10366145 -nullity n 2 3 @ ~ + 2 0 14455700 06532763 -numbat n 1 2 @ #m 1 0 01885498 -number n 11 5 @ ~ #m + ; 11 9 05121418 13582013 06892016 06426111 06807198 06596978 08480512 06425065 05096294 06326526 03835412 -number_1 n 1 1 @ 1 0 13597444 -number_agreement n 1 1 @ 1 0 13797561 -number_cruncher n 2 1 @ 2 0 09887378 03835582 -number_crunching n 1 1 @ 1 0 00869467 -number_one n 3 3 @ ~ ; 3 1 09605110 13846199 13597444 -number_one_wood n 1 1 @ 1 0 03244047 -number_representation_system n 1 3 @ ~ - 1 0 06809074 -number_system n 1 3 @ ~ - 1 0 06809074 -number_theorist n 1 1 @ 1 0 10366276 -numbering n 1 2 @ + 1 1 06490887 -numberplate n 1 1 @ 1 0 03661180 -numbers n 2 2 @ #p 2 0 06433249 00508547 -numbers_game n 1 1 @ 1 1 00508547 -numbers_pool n 1 1 @ 1 0 00508547 -numbers_racket n 1 1 @ 1 0 00508547 -numbfish n 1 2 @ #m 1 0 01496331 -numbness n 2 2 @ + 2 1 14322528 04636610 -numdah n 1 1 @ 1 0 03835729 -numdah_rug n 1 1 @ 1 0 03835729 -numen n 1 3 @ + ; 1 0 10366484 -numenius n 1 3 @ #m %m 1 0 02033444 -numenius_arquata n 1 1 @ 1 0 02033779 -numenius_borealis n 1 1 @ 1 0 02033882 -numeracy n 1 2 @ = 1 0 05639431 -numeral n 1 2 @ ~ 1 0 06807198 -numeration n 2 3 @ ~ + 2 0 07230959 00634586 -numeration_system n 1 3 @ ~ - 1 0 06809074 -numerator n 1 1 @ 1 0 13732871 -numerical_analysis n 1 2 @ ; 1 0 06007642 -numerical_quantity n 1 2 @ ~ 1 0 05856066 -numerical_value n 1 2 @ ~ 1 0 13581465 -numerologist n 1 2 @ + 1 0 10366383 -numerology n 1 2 @ + 1 0 06248530 -numerosity n 1 4 @ ~ = + 1 0 05121908 -numerousness n 1 4 @ ~ = + 1 0 05121908 -numida n 1 3 @ #m %m 1 0 01808989 -numida_meleagris n 1 4 @ ~ #m %p 1 0 01809106 -numidia n 1 3 @ #p + 1 0 08707710 -numidian n 1 1 @ 1 0 10366692 -numididae n 1 3 @ #m %m 1 0 01808785 -numidinae n 1 3 @ #m %m 1 0 01808785 -numismatics n 1 2 @ + 1 0 01015996 -numismatist n 1 2 @ + 1 0 10366779 -numismatologist n 1 2 @ + 1 0 10366779 -numismatology n 1 2 @ + 1 0 01015996 -nummulite n 1 2 @ #m 1 0 01393753 -nummulitidae n 1 3 @ #m %m 1 0 01393604 -numskull n 1 1 @ 1 0 10039663 -nun n 3 3 @ ~ #m 3 1 10368009 07266879 06838112 -nun's_habit n 1 2 @ %p 1 0 03835941 -nun_buoy n 1 1 @ 1 0 07266879 -nunavut n 1 2 @ #p 1 0 08825664 -nunc_dimittis n 1 1 @ 1 0 06456642 -nuncio n 1 2 @ ; 1 0 10368113 -nung n 1 1 @ 1 0 06935990 -nunnery n 1 1 @ 1 0 03835853 -nuphar n 1 3 @ #m %m 1 0 11716285 -nuphar_advena n 1 2 @ #m 1 0 11716422 -nuphar_lutea n 1 2 @ #m 1 0 11716877 -nuphar_sagittifolium n 1 1 @ 1 0 11716698 -nuprin n 1 3 @ %s ; 1 0 03556281 -nuptials n 1 1 @ 1 0 07452074 -nuptse n 1 2 @ #p 1 0 09375693 -nuremberg n 1 2 @ #p 1 0 08774374 -nureyev n 1 1 @ 1 0 11210610 -nurnberg n 1 2 @ #p 1 0 08774374 -nurse n 2 4 @ ~ #m + 2 2 10366966 10345100 -nurse's_aide n 1 1 @ 1 0 10367548 -nurse-midwife n 1 1 @ 1 0 10367694 -nurse-patient_relation n 1 2 @ %m 1 0 13838025 -nurse_clinician n 1 1 @ 1 0 10367819 -nurse_log n 1 1 @ 1 0 14964925 -nurse_practitioner n 1 1 @ 1 0 10367819 -nurse_shark n 1 2 @ #m 1 0 01486838 -nurseling n 1 1 @ 1 0 10368291 -nursemaid n 1 2 @ ~ 1 0 10345100 -nurser n 1 2 @ + 1 0 10367409 -nursery n 2 3 @ ~ + 2 1 03836062 03457902 -nursery_rhyme n 1 1 @ 1 0 07222728 -nursery_school n 1 1 @ 1 0 08412265 -nurseryman n 1 2 @ ~ 1 0 10120533 -nursing n 3 2 @ + 3 1 00665079 08112976 01058870 -nursing_aide n 1 1 @ 1 0 10367548 -nursing_bottle n 1 2 @ %p 1 0 02877266 -nursing_care n 1 1 @ 1 0 00664997 -nursing_home n 1 1 @ 1 0 03528100 -nursing_school n 1 1 @ 1 0 08283757 -nursling n 1 1 @ 1 0 10368291 -nurturance n 1 2 @ + 1 0 00665358 -nurture n 2 2 @ + 2 0 04922113 01129532 -nusa_tenggara n 1 3 @ #p %m 1 0 08842583 -nusku n 1 2 @ ; 1 0 09521395 -nut n 7 5 @ ~ #p %p + 7 3 13136556 09512835 03836191 13712592 09974496 09769076 05524615 -nut-leaved_screw_tree n 1 1 @ 1 0 12199399 -nut_and_bolt n 1 2 @ %p 1 0 03836451 -nut_bar n 1 1 @ 1 0 07608533 -nut_bread n 1 1 @ 1 0 07685218 -nut_butter n 1 1 @ 1 0 07855413 -nut_case n 1 1 @ 1 0 09974496 -nut_grass n 1 2 @ #m 1 0 12151615 -nut_house n 1 1 @ 1 0 02820798 -nut_pine n 1 3 @ ~ %p 1 0 11609684 -nut_sedge n 1 2 @ #m 1 0 12151615 -nut_tree n 1 2 @ ~ 1 0 13110915 -nutation n 1 2 @ + 1 0 00336561 -nutcase n 1 2 @ ; 1 0 09976283 -nutcracker n 3 3 @ ~ #m 3 0 03836602 01590583 01581730 -nutgrass n 1 2 @ #m 1 0 12151615 -nuthatch n 1 3 @ ~ #m 1 0 01590583 -nuthouse n 1 1 @ 1 1 02820798 -nutlet n 1 2 @ ~ 1 0 13136781 -nutmeg n 2 5 @ #m #s #p %p 2 0 11714382 07815424 -nutmeg-yew n 1 2 @ #m 1 0 11649150 -nutmeg_family n 1 3 @ #m %m 1 0 11713960 -nutmeg_flower n 1 1 @ 1 0 11737125 -nutmeg_geranium n 1 2 @ #m 1 0 12688187 -nutmeg_hickory n 1 2 @ #m 1 0 12321669 -nutmeg_melon n 2 3 @ #p %p 2 0 12165170 07756641 -nutmeg_state n 1 3 @ #p %p 1 0 09068444 -nutmeg_tree n 1 3 @ #m %p 1 0 11714382 -nutria n 1 2 @ #m 1 0 02366959 -nutrient n 2 4 @ ~ %p + 2 1 00021265 00021734 -nutrient_agar n 1 3 @ ~ %s 1 0 14900184 -nutrient_artery n 1 1 @ 1 0 05352754 -nutriment n 1 2 @ ~ 1 0 07570720 -nutrition n 3 4 @ ~ + ; 3 0 13523661 07570720 06135915 -nutritionist n 1 2 @ + 1 0 10012484 -nutritionist's_calorie n 1 2 @ %p 1 0 13726562 -nutritiousness n 1 2 @ + 1 0 04789897 -nutritiveness n 1 2 @ + 1 0 04789897 -nuts_and_bolts n 1 1 @ 1 0 06642518 -nutsedge n 1 2 @ #m 1 0 12151615 -nutshell n 1 1 @ 1 0 11683747 -nuttall's_oak n 1 1 @ 1 0 12276314 -nuttall_oak n 1 1 @ 1 0 12276314 -nutter n 1 1 @ 1 0 10368414 -nuwc n 1 2 @ #p 1 0 08193854 -nux_vomica n 1 2 @ %s 1 0 03836699 -nuytsia n 1 3 @ #m %m 1 0 12738480 -nuytsia_floribunda n 1 2 @ #m 1 0 12738599 -nv n 1 3 @ #p %p 1 0 09110422 -nw n 1 1 @ 1 0 13834885 -nwbn n 1 1 @ 1 0 13835037 -nwbw n 1 1 @ 1 0 13834761 -ny n 1 4 @ #p %p - 1 0 09117351 -nyala n 2 3 @ #m #p 2 0 09030382 02424909 -nyamuragira n 1 2 @ #p 1 0 09176732 -nyamwezi n 1 1 @ 1 0 06994918 -nyasaland n 1 4 @ #p %m %p 1 0 08962610 -nybble n 1 2 @ #p 1 0 13625884 -nyctaginaceae n 1 3 @ #m %m 1 0 11835806 -nyctaginia n 1 3 @ #m %m 1 0 11836137 -nyctaginia_capitata n 1 2 @ #m 1 0 11836327 -nyctalopia n 1 1 @ 1 0 14554853 -nyctanassa n 1 3 @ #m %m 1 0 02010881 -nyctanassa_violacea n 1 2 @ #m 1 0 02011016 -nyctereutes n 1 3 @ #m %m 1 0 02116322 -nyctereutes_procyonides n 1 2 @ #m 1 0 02116450 -nycticebus n 1 3 @ #m %m 1 0 02498888 -nycticebus_pygmaeus n 1 2 @ #m 1 0 02499022 -nycticebus_tardigradua n 1 2 @ #m 1 0 02499022 -nycticorax n 1 3 @ #m %m 1 0 02010592 -nycticorax_nycticorax n 1 2 @ #m 1 0 02010728 -nyctimene n 1 3 @ #m %m 1 0 02140357 -nyctophobia n 1 1 @ 1 0 14384041 -nycturia n 1 1 @ 1 0 13522485 -nydrazid n 1 2 @ ; 1 0 03587715 -nyiragongo n 1 2 @ #p 1 0 09176844 -nylghai n 1 2 @ #m 1 0 02425532 -nylghau n 1 2 @ #m 1 0 02425532 -nylon n 2 1 @ 2 0 14966192 03836906 -nylon_stocking n 1 1 @ 1 0 03836976 -nylons n 1 1 @ 1 0 03836976 -nymph n 3 3 @ ~ ; 3 2 09548632 02311617 10368528 -nymphaea n 1 3 @ #m %m 1 0 11715207 -nymphaea_alba n 1 2 @ #m 1 0 11715678 -nymphaea_caerulea n 1 1 @ 1 0 11716041 -nymphaea_lotus n 1 2 @ #m 1 0 11715810 -nymphaea_odorata n 1 2 @ #m 1 0 11715430 -nymphaea_stellata n 1 1 @ 1 0 11716167 -nymphaeaceae n 1 3 @ #m %m 1 0 11714618 -nymphalid n 1 3 @ ~ #m 1 0 02274822 -nymphalid_butterfly n 1 3 @ ~ #m 1 0 02274822 -nymphalidae n 1 3 @ #m %m 1 0 02274516 -nymphalis n 1 3 @ #m %m 1 0 02275372 -nymphalis_antiopa n 1 2 @ #m 1 0 02275560 -nymphet n 1 1 @ 1 0 10368624 -nymphicus n 1 3 @ #m %m 1 0 01819600 -nymphicus_hollandicus n 1 2 @ #m 1 0 01819734 -nympho n 1 1 @ 1 0 10368798 -nympholepsy n 1 1 @ 1 0 14091018 -nympholept n 1 1 @ 1 0 10368711 -nymphomania n 1 2 @ + 1 0 07489925 -nymphomaniac n 1 2 @ + 1 1 10368798 -nynorsk n 1 1 @ 1 0 06954768 -nypa n 1 3 @ #m %m 1 0 12591897 -nyquist_frequency n 1 2 @ ; 1 0 15285456 -nyquist_rate n 1 2 @ ; 1 0 15282188 -nyse n 1 2 @ %p 1 0 03822951 -nyssa n 1 3 @ #m %m 1 0 12340202 -nyssa_aquatica n 1 1 @ 1 0 12340581 -nyssa_sylvatica n 1 1 @ 1 0 12340755 -nyssaceae n 1 3 @ #m %m 1 0 12339972 -nystagmus n 1 2 @ ~ 1 0 00337605 -nystan n 1 2 @ ; 1 0 03837157 -nystatin n 1 1 @ 1 0 03837157 -nyx n 1 2 @ ; 1 0 09555962 -o n 3 4 @ ~ #m #s 3 1 14648100 06832680 05401229 -o'brien n 1 1 @ 1 0 11211322 -o'casey n 1 1 @ 1 0 11211419 -o'connor n 1 1 @ 1 0 11211987 -o'flaherty n 1 1 @ 1 0 11212669 -o'hara n 1 1 @ 1 0 11212988 -o'keeffe n 1 1 @ 1 0 11213216 -o'neill n 1 1 @ 1 0 11215070 -o'toole n 1 2 @ ; 1 0 11218473 -o._henry n 1 1 @ 1 0 11243102 -o.e.d. n 1 1 @ 1 0 06420424 -o.k. n 1 2 @ + 1 0 06687701 -o_level n 1 2 @ ; 1 0 14431169 -o_ring n 1 1 @ 1 0 03855604 -oaf n 1 1 @ 1 0 10274639 -oahu n 1 3 @ #p %p 1 0 09080554 -oahu_island n 1 3 @ #p %p 1 0 09080554 -oak n 2 6 @ ~ #m #s %s %p 2 2 12268918 12268246 -oak-leaved_goosefoot n 1 1 @ 1 0 11829672 -oak_apple n 1 1 @ 1 0 13099734 -oak_blight n 1 1 @ 1 0 14218293 -oak_chestnut n 1 2 @ #m 1 0 12264512 -oak_fern n 1 2 @ #m 1 0 13197274 -oak_leaf_cluster n 1 1 @ 1 0 06708664 -oak_tree n 1 5 @ ~ #m %s %p 1 0 12268246 -oakland n 1 2 @ #p 1 0 09064264 -oakleaf_goosefoot n 1 1 @ 1 0 11829672 -oakley n 1 1 @ 1 0 11210806 -oakum n 1 1 @ 1 0 14966334 -oar n 1 3 @ ~ %p 1 0 03837422 -oarfish n 1 2 @ #m 1 0 02547014 -oarlock n 1 2 @ #p 1 0 03905730 -oarsman n 1 3 @ ~ + 1 0 10368920 -oarsmanship n 1 2 @ + 1 0 05639556 -oarswoman n 1 1 @ 1 0 10369095 -oas n 1 2 @ %m 1 0 08176077 -oasis n 2 2 @ #p 2 0 08506496 03499796 -oast n 1 2 @ #p 1 0 03837606 -oast_house n 1 2 @ %p 1 0 03837698 -oat n 2 5 @ ~ #m #p ; 2 1 12109827 07804152 -oat_cell_carcinoma n 1 1 @ 1 0 14251616 -oatcake n 1 1 @ 1 0 07685303 -oates n 2 1 @ 2 0 11211071 11210963 -oath n 3 2 @ ~ 3 2 07125096 06684572 07226841 -oatmeal n 2 2 @ #s 2 1 07874995 07568502 -oatmeal_cookie n 1 1 @ 1 0 07638226 -oaxaca n 1 2 @ #p 1 0 08744750 -oaxaca_de_juarez n 1 2 @ #p 1 0 08744750 -ob n 2 4 @ ~ #p - 2 0 09375891 06053439 -ob_river n 1 2 @ #p 1 0 09375891 -obadiah n 2 2 @ #p 2 0 11211236 06439712 -obbligato n 2 1 @ 2 0 07029581 06815970 -obduracy n 1 1 @ 1 0 04863793 -obeah n 2 2 @ ; 2 0 08152198 06225667 -obeche n 2 2 @ #m 2 0 12202234 12201938 -obechi n 1 2 @ #m 1 0 12201938 -obedience n 3 5 ! @ ~ = + 3 1 01167146 04906273 01132864 -obedience_plant n 1 1 @ 1 0 12351790 -obedient_plant n 1 1 @ 1 0 12862116 -obeisance n 2 3 @ ~ + 2 0 07274425 01167146 -obelion n 1 1 @ 1 0 05234315 -obelisk n 2 2 @ ~ 2 1 03837869 06828529 -oberson n 1 2 @ ; 1 0 09546280 -obesity n 1 3 @ ~ + 1 0 05000342 -obesity_diet n 1 2 @ ~ 1 0 07564629 -obfuscation n 3 2 @ + 3 0 05685030 01266152 00274586 -obi n 2 2 @ ; 2 0 08152198 06225667 -obidoxime_chloride n 1 1 @ 1 0 15018169 -obiism n 1 1 @ 1 0 06245674 -obit n 1 1 @ 1 0 06748133 -obiter_dictum n 2 2 @ ; 2 0 06766092 06765887 -obituary n 1 1 @ 1 0 06748133 -object n 5 4 @ ~ + ; 5 4 00002684 05981230 06310237 05810948 06132724 -object-oriented_database n 1 2 @ %p 1 0 06638527 -object-oriented_database_management_system n 1 3 @ ~ #p 1 0 06589151 -object-oriented_programing n 1 1 @ 1 0 00929432 -object-oriented_programing_language n 1 3 @ ~ ; 1 0 06900684 -object-oriented_programming n 1 1 @ 1 0 00929432 -object-oriented_programming_language n 1 3 @ ~ ; 1 0 06900684 -object_ball n 1 1 @ 1 0 03838024 -object_code n 1 1 @ 1 0 06358159 -object_glass n 1 2 @ #p 1 0 03838298 -object_language n 2 1 @ 2 0 06900507 06284067 -object_lens n 1 2 @ #p 1 0 03838298 -object_lesson n 1 1 @ 1 0 06672752 -object_of_a_preposition n 1 1 @ 1 0 06310449 -object_of_the_verb n 1 1 @ 1 0 06310578 -object_program n 1 2 ! @ 1 0 06576893 -object_recognition n 1 1 @ 1 0 05711308 -objectification n 2 3 @ ~ + 2 1 00932088 03838160 -objection n 4 4 @ ~ + ; 4 3 07246742 07208338 01177033 01025678 -objectionableness n 1 2 @ + 1 0 04781755 -objective n 2 3 @ ~ #p 2 1 05981230 03838298 -objective_case n 1 1 @ 1 0 06311557 -objective_lens n 1 2 @ #p 1 0 03838298 -objectiveness n 1 2 @ + 1 0 04892344 -objectivity n 1 2 @ + 1 1 04892344 -objector n 1 3 @ ~ + 1 0 10018021 -objet_d'art n 1 2 @ ~ 1 1 03838535 -objurgation n 1 3 @ ~ + 1 0 06712833 -oblanceolate_leaf n 1 1 @ 1 0 13158815 -oblate n 1 1 @ 1 0 10348874 -oblateness n 1 2 @ + 1 0 05070622 -oblation n 2 2 @ ~ 2 0 01041498 01041349 -obligate_anaerobe n 1 1 @ 1 0 01327204 -obligation n 5 3 @ ~ + 5 2 01129920 14490110 13782033 13398241 06773150 -obligato n 2 1 @ 2 0 07029581 06815970 -obliger n 1 2 @ + 1 0 10369166 -obligingness n 1 2 @ + 1 0 04641153 -oblique n 2 4 ! @ ~ + 2 0 06311334 05557839 -oblique_angle n 1 3 ! @ ~ 1 0 13892383 -oblique_bandage n 1 2 @ ~ 1 0 03838748 -oblique_case n 1 2 @ ~ 1 0 06311334 -oblique_triangle n 1 2 ! @ 1 0 13880295 -oblique_vein_of_the_left_atrium n 1 1 @ 1 0 05374475 -obliqueness n 2 2 @ + 2 0 05066333 04919712 -obliquity n 2 4 @ ~ #p + 2 0 14049098 04874939 -obliteration n 2 3 @ ~ + 2 1 00218208 07331013 -obliterator n 1 2 @ + 1 0 09376078 -oblivion n 2 2 @ + 2 1 14436769 05674134 -obliviousness n 1 2 @ + 1 0 05674134 -oblong n 1 2 @ + 1 0 13873361 -oblong_leaf n 1 1 @ 1 0 13158925 -oblong_woodsia n 1 1 @ 1 0 13202125 -oblongness n 1 3 @ ~ + 1 0 05071869 -obloquy n 2 2 @ ~ 2 0 14441498 06719579 -obnoxiousness n 1 2 @ + 1 0 04781755 -oboe n 1 3 @ ~ + 1 0 03838899 -oboe_d'amore n 1 1 @ 1 0 03839276 -oboe_da_caccia n 1 1 @ 1 0 03839172 -oboist n 1 2 @ + 1 0 10369317 -obolus n 1 2 @ #p 1 0 13718451 -obovate_leaf n 1 1 @ 1 0 13159044 -obscenity n 3 4 @ ~ + - 3 1 04903368 07124340 00738697 -obscurantism n 2 2 @ + 2 0 05987397 00756470 -obscurantist n 1 2 @ + 1 0 10369417 -obscureness n 3 2 @ + 3 0 14436438 13985671 04823416 -obscurity n 3 4 ! @ ~ + 3 3 04823416 14436029 13985671 -obsequiousness n 1 3 @ ~ + 1 0 04906712 -observance n 4 4 ! @ ~ + 4 1 00879759 07450842 05703429 01204419 -observation n 5 3 @ ~ + 5 5 01002956 00879759 06767035 05818741 05703429 -observation_dome n 1 1 @ 1 1 03839424 -observation_post n 1 2 @ ~ 1 0 08597176 -observation_station n 1 2 @ ~ 1 0 03839534 -observation_tower n 1 2 @ ~ 1 0 03688943 -observatory n 2 2 @ ~ 2 0 03839671 03688943 -observed_fire n 1 1 @ 1 0 00991914 -observer n 2 3 @ ~ + 2 2 09626589 10369528 -observer's_meridian n 1 1 @ 1 0 08599174 -obsession n 2 3 @ ~ + 2 0 09183255 05700401 -obsessive n 1 2 @ + 1 0 10348989 -obsessive-compulsive n 1 2 @ + 1 0 10349090 -obsessive-compulsive_disorder n 1 2 @ + 1 0 14381017 -obsessive-compulsive_personality n 1 1 @ 1 0 04619791 -obsessiveness n 1 2 @ + 1 0 04626062 -obsessivity n 1 2 @ + 1 0 04626062 -obsidian n 1 1 @ 1 1 14880960 -obsolescence n 1 2 @ + 1 0 13523983 -obsoleteness n 1 2 @ + 1 0 04925577 -obstacle n 2 2 @ ~ 2 2 05690269 03839795 -obstacle_race n 1 1 @ 1 0 07462917 -obstetrical_delivery n 1 3 @ ~ #p 1 0 00042541 -obstetrical_toad n 1 2 @ #m 1 0 01648139 -obstetrician n 1 3 @ ~ + 1 0 10369699 -obstetrics n 1 4 @ ~ + - 1 0 06053439 -obstinacy n 2 2 @ ~ 2 0 04908835 04863074 -obstinance n 2 3 @ ~ + 2 0 04908835 04863074 -obstipation n 1 2 @ + 1 0 14371770 -obstreperousness n 1 2 @ + 1 0 04908283 -obstructer n 2 3 @ ~ + 2 0 10349243 03839993 -obstruction n 5 3 @ ~ + 5 1 03839993 14507951 05690269 01074498 00562280 -obstruction_of_justice n 1 2 @ ; 1 0 01181212 -obstructionism n 1 2 @ + 1 0 01176931 -obstructionist n 1 3 @ ~ + 1 0 10349243 -obstructive_shock n 1 1 @ 1 0 14067681 -obstructor n 2 3 @ ~ + 2 0 10349243 03839993 -obstruent n 1 2 @ ~ 1 0 07115684 -obtainment n 1 2 @ + 1 0 00077856 -obtention n 1 2 @ + 1 0 00077856 -obtrusiveness n 1 3 ! @ + 1 1 04707110 -obturator n 1 2 @ + 1 0 03840327 -obturator_vein n 1 1 @ 1 0 05374658 -obtuse-angled_triangle n 1 1 @ 1 0 13880415 -obtuse_angle n 1 1 @ 1 0 13892048 -obtuse_leaf n 1 1 @ 1 0 13158714 -obtuse_triangle n 1 1 @ 1 0 13880415 -obtuseness n 2 4 ! @ ~ + 2 0 05646039 04705950 -obverse n 2 4 ! @ ~ #p 2 1 05791311 03840507 -obviation n 1 2 @ + 1 0 01079042 -obviousness n 1 4 @ ~ = + 1 0 04706290 -oca n 1 1 @ 1 0 12704041 -ocarina n 1 1 @ 1 0 03840681 -occam n 1 1 @ 1 0 11211517 -occam's_razor n 1 1 @ 1 0 05990738 -occasion n 5 3 @ ~ + 5 3 07416714 07447261 09179264 15245829 14485064 -occasions n 1 1 @ 1 1 05983943 -occident n 2 4 @ %p = + 2 0 08682575 08682389 -occidental n 2 2 @ + 2 1 10369845 06897474 -occidentalism n 2 1 @ 2 0 06158057 05167927 -occipital_bone n 1 3 @ #p %p 1 0 05541872 -occipital_cortex n 1 3 @ #p %p 1 0 05494365 -occipital_gyrus n 1 2 @ #p 1 0 05489231 -occipital_lobe n 1 3 @ #p %p 1 1 05494365 -occipital_protuberance n 1 2 @ #p 1 0 05542052 -occipital_vein n 1 1 @ 1 0 05374861 -occipitomastoid_suture n 1 2 @ #p 1 0 05544725 -occiput n 1 3 @ #p + 1 0 05540976 -occitan n 1 1 @ 1 0 06966190 -occluded_front n 1 2 @ ; 1 0 11461080 -occlusion n 5 4 @ ~ + ; 5 1 14100769 11461080 05067928 02853449 01074694 -occlusive n 1 4 @ ~ %p + 1 0 07115914 -occult n 2 4 @ %m %p + 2 0 09503877 00412572 -occult_arts n 1 1 @ 1 0 00412572 -occultation n 1 3 @ ~ %p 1 0 07368646 -occultism n 2 2 @ + 2 0 05968450 05968288 -occultist n 1 3 @ ~ + 1 0 10370381 -occupancy n 2 3 @ ~ + 2 1 01054335 00086809 -occupancy_rate n 1 2 @ ~ 1 0 13818551 -occupant n 1 3 @ ~ + 1 1 10523519 -occupation n 5 4 @ ~ + ; 5 4 00582388 01133106 00582868 00086809 15141486 -occupation_licence n 1 1 @ 1 0 06551498 -occupation_license n 1 1 @ 1 1 06551498 -occupational_disease n 1 1 @ 1 0 14079493 -occupational_group n 1 2 @ ~ 1 0 08403631 -occupational_hazard n 1 1 @ 1 0 14542858 -occupational_safety_and_health_act n 1 2 @ ; 1 0 06535652 -occupational_safety_and_health_administration n 1 2 @ #p 1 0 08349138 -occupational_therapy n 1 1 @ 1 0 00664577 -occupier n 2 4 @ ~ + ; 2 0 10523519 10369955 -occurrence n 2 3 @ ~ + 2 2 07283608 13959069 -occurrent n 1 2 @ ~ 1 0 07283608 -ocean n 2 5 @ ~ #p + - 2 1 09376198 13776971 -ocean_bottom n 1 2 @ ~ 1 0 09376526 -ocean_current n 1 2 @ ~ 1 0 11488387 -ocean_floor n 1 2 @ ~ 1 1 09376526 -ocean_liner n 1 3 @ ~ %p 1 0 03673027 -ocean_perch n 2 1 @ 2 0 07792117 02644817 -ocean_pout n 1 2 @ #m 1 0 02618094 -ocean_state n 1 4 @ #p %p - 1 0 09137032 -ocean_sunfish n 1 3 @ ~ #m 1 0 02656670 -ocean_trip n 1 2 @ ~ 1 0 00312784 -oceanaut n 1 1 @ 1 0 09801371 -oceanfront n 1 1 @ 1 0 09376786 -oceania n 1 3 @ #p %p 1 0 08835875 -oceanic n 1 2 @ ~ 1 0 06937985 -oceanic_abyss n 1 2 @ ~ 1 0 09461315 -oceanic_bird n 1 2 @ ~ 1 0 02057731 -oceanic_bonito n 1 2 @ #m 1 0 02629230 -oceanic_whitetip_shark n 1 2 @ #m 1 0 01490112 -oceanica n 1 3 @ #p %p 1 0 08835875 -oceanid n 1 2 @ ; 1 0 09550899 -oceanites n 1 3 @ #m %m 1 0 02061425 -oceanites_oceanicus n 1 2 @ #m 1 0 02061560 -oceanographer n 1 3 @ ~ + 1 0 10370122 -oceanography n 1 4 @ ~ + - 1 0 06119904 -oceanology n 1 3 @ ~ - 1 0 06119904 -oceanus n 1 2 @ ; 1 0 09574767 -ocellated_turkey n 1 2 @ #m 1 0 01794651 -ocellus n 2 2 @ ~ 2 0 05312306 04681621 -ocelot n 1 2 @ #m 1 1 02125494 -ocher n 2 2 @ ~ 2 1 04966841 14843986 -ochlocracy n 1 1 @ 1 0 08362302 -ochna n 1 3 @ #m %m 1 0 12382699 -ochna_family n 1 3 @ #m %m 1 0 12382484 -ochna_serrulata n 1 2 @ #m 1 0 12382875 -ochnaceae n 1 3 @ #m %m 1 0 12382484 -ochoa n 1 1 @ 1 0 11211696 -ochotona n 1 3 @ #m %m 1 0 02328662 -ochotona_collaris n 1 2 @ #m 1 0 02328942 -ochotona_princeps n 1 2 @ #m 1 0 02328820 -ochotonidae n 1 3 @ #m %m 1 0 02328270 -ochre n 2 2 @ ~ 2 0 14843986 04966841 -ochroma n 1 3 @ #m %m 1 0 12191461 -ochroma_lagopus n 1 3 @ #m %s 1 0 12191587 -ochronosis n 1 1 @ 1 0 14268439 -ochs n 1 1 @ 1 0 11211870 -ocimum n 1 3 @ #m %m 1 0 12860254 -ocimum_basilicum n 1 2 @ %p 1 0 12860542 -ockham n 1 1 @ 1 0 11211517 -ockham's_razor n 1 1 @ 1 0 05990738 -oconee_bells n 1 1 @ 1 0 12252383 -ocotillo n 1 2 @ #m 1 0 12381931 -oct n 1 3 @ #p %p 1 1 15213115 -octad n 1 1 @ 1 0 13745086 -octadecanoic_acid n 1 1 @ 1 0 15056938 -octagon n 1 1 @ 1 0 13882563 -octahedron n 1 1 @ 1 1 13915594 -octal_digit n 1 1 @ 1 0 13741603 -octal_notation n 1 1 @ 1 0 06810544 -octal_number_system n 1 1 @ 1 0 06810238 -octal_numeration_system n 1 1 @ 1 0 06810238 -octameter n 1 1 @ 1 0 07096330 -octane n 1 1 @ 1 0 14966530 -octane_number n 1 1 @ 1 0 13579933 -octane_rating n 1 1 @ 1 0 13579933 -octanedioic_acid n 1 1 @ 1 0 14616181 -octans n 1 1 @ 1 0 09376866 -octant n 1 2 @ %p 1 0 03840823 -octave n 3 1 @ 3 1 15296258 06859401 06382923 -octavian n 1 1 @ 1 0 10828990 -octavo n 1 1 @ 1 0 05096408 -octet n 5 1 @ 5 0 13745086 08248047 07988604 07987903 07042137 -octette n 4 1 @ 4 0 08248047 07988604 07987903 07042137 -octillion n 1 2 @ ; 1 0 13753740 -october n 1 3 @ #p %p 1 1 15213115 -october_12 n 1 2 @ #p 1 0 15190895 -october_24 n 1 2 @ #p 1 0 15191080 -october_revolution n 1 2 @ ; 1 0 01308008 -octoberfest n 1 1 @ 1 0 07888058 -octogenarian n 1 1 @ 1 0 10370286 -octonary n 1 1 @ 1 0 13745086 -octopod n 1 3 @ ~ #m 1 0 01969726 -octopoda n 1 3 @ #m %m 1 0 01969550 -octopodidae n 1 3 @ #m %m 1 0 01969893 -octopus n 2 4 @ #m #p %p 2 0 07782365 01970164 -octoroon n 1 2 @ ; 1 0 09638722 -octosyllable n 1 2 @ + 1 0 07096425 -octroi n 1 1 @ 1 0 13317422 -ocular n 1 3 @ #p %p 1 0 03309465 -ocular_muscle n 1 3 @ ~ #p 1 0 05316175 -oculism n 1 1 @ 1 0 00609159 -oculist n 2 3 @ ~ + 2 0 10380305 10379073 -oculomotor n 1 1 @ 1 0 05478526 -oculomotor_nerve n 1 1 @ 1 0 05478526 -oculopharyngeal_muscular_dystrophy n 1 1 @ 1 0 14163676 -oculus n 1 6 @ ~ #p %p + ; 1 0 05311054 -oculus_dexter n 1 1 @ 1 0 05312149 -oculus_sinister n 1 1 @ 1 0 05312227 -ocyurus n 1 3 @ #m %m 1 0 02587761 -ocyurus_chrysurus n 1 2 @ #m 1 0 02587877 -od n 2 1 @ 2 0 06703632 05312149 -odalisque n 1 1 @ 1 0 10370603 -odd-even_check n 1 1 @ 1 0 05825942 -odd-job_man n 1 1 @ 1 0 10159289 -odd-leg_caliper n 1 1 @ 1 0 03841011 -odd-pinnate_leaf n 1 1 @ 1 0 13160254 -odd-toed_ungulate n 1 4 ! @ ~ #m 1 0 02373336 -odd_fellow n 1 1 @ 1 0 10240514 -odd_fish n 1 1 @ 1 0 10240514 -odd_hassel n 1 1 @ 1 0 11034167 -odd_man_out n 1 1 @ 1 0 10240514 -oddball n 1 2 @ ~ 1 0 10042845 -oddity n 3 3 @ ~ + 3 0 04799011 04797824 03149951 -oddment n 2 2 @ ~ 2 0 03286383 03149951 -oddments n 1 1 @ 1 0 08399977 -oddness n 2 2 @ + 2 0 13790592 04799011 -oddone_colonna n 1 1 @ 1 0 11160200 -odds n 2 2 @ ; 2 1 04756504 13823483 -odds-maker n 1 1 @ 1 0 10370683 -odds_and_ends n 1 1 @ 1 1 08399977 -ode n 1 2 @ ~ 1 0 06383659 -oder n 1 2 @ #p 1 0 09376979 -oder_river n 1 2 @ #p 1 0 09376979 -odesa n 1 2 @ #p 1 0 09017005 -odessa n 2 2 @ #p 2 1 09017005 09145655 -odets n 1 1 @ 1 0 11212120 -odin n 1 2 @ ; 1 0 09582949 -odiousness n 1 4 @ ~ = + 1 0 04780958 -odist n 1 1 @ 1 0 10370881 -odium n 2 2 @ + 2 0 14441610 07503430 -odo n 1 1 @ 1 0 11356636 -odo_of_lagery n 1 1 @ 1 0 11356636 -odoacer n 1 1 @ 1 0 11212226 -odobenidae n 1 3 @ #m %m 1 0 02081282 -odobenus n 1 3 @ #m %m 1 0 02081423 -odobenus_divergens n 1 1 @ 1 0 02081927 -odobenus_rosmarus n 1 1 @ 1 0 02081798 -odocoileus n 1 3 @ #m %m 1 0 02432139 -odocoileus_hemionus n 1 3 @ ~ #m 1 0 02432511 -odocoileus_hemionus_columbianus n 1 1 @ 1 0 02432704 -odocoileus_virginianus n 1 2 @ #m 1 0 02432291 -odometer n 1 2 @ #p 1 0 03841143 -odonata n 1 3 @ #m %m 1 0 02267975 -odonate n 1 3 @ ~ #m 1 0 02268148 -odontalgia n 1 2 @ ~ 1 0 14323974 -odontaspididae n 1 3 @ #m %m 1 0 01487077 -odontaspis n 1 3 @ #m %m 1 0 01487312 -odontaspis_taurus n 1 2 @ #m 1 0 01487506 -odontiasis n 1 2 @ ~ 1 0 13565781 -odontoceti n 1 3 @ #m %m 1 0 02066450 -odontoglossum n 1 2 @ #m 1 0 12073991 -odontoid_process n 1 2 @ #p 1 0 05588991 -odontology n 1 3 @ ~ - 1 0 06047430 -odontophorus n 1 2 @ #m 1 0 01805446 -odor n 2 4 @ ~ = + 2 2 04980008 05713737 -odour n 2 4 @ ~ = + 2 0 05713737 04980008 -odovacar n 1 1 @ 1 0 11212226 -odovakar n 1 1 @ 1 0 11212226 -odynophagia n 1 1 @ 1 0 14329460 -odysseus n 1 2 @ ; 1 0 09592848 -odyssey n 2 1 @ 2 1 00308279 06382193 -oecanthus n 1 3 @ #m %m 1 0 02230355 -oecanthus_fultoni n 1 1 @ 1 0 02230634 -oecumenism n 1 2 @ + 1 0 08471949 -oed n 1 1 @ 1 0 06420424 -oedema n 1 2 @ ~ 1 0 14316714 -oedipal_complex n 1 1 @ 1 0 07482782 -oedipus n 1 2 @ ; 1 0 09597798 -oedipus_complex n 1 1 @ 1 0 07482782 -oedipus_rex n 1 2 @ ; 1 0 09597798 -oedogoniaceae n 1 3 @ #m %m 1 0 01411727 -oedogoniales n 1 3 @ #m %m 1 0 01411556 -oedogonium n 1 2 @ #m 1 0 01411871 -oeil_de_boeuf n 1 1 @ 1 0 03841290 -oenanthe n 2 3 @ #m %m 2 0 12940778 01561613 -oenanthe_aquatica n 1 2 @ #m 1 0 12941220 -oenanthe_crocata n 1 2 @ #m 1 0 12940939 -oengus n 1 2 @ ; 1 0 09507909 -oenologist n 1 2 @ + 1 0 09616573 -oenology n 1 2 @ + 1 0 05636171 -oenomel n 1 2 @ %s 1 0 07891095 -oenophile n 1 1 @ 1 0 10059067 -oenothera n 1 2 @ #m 1 0 12344131 -oenothera_biennis n 1 1 @ 1 0 12344483 -oenothera_fruticosa n 1 1 @ 1 0 12344700 -oenothera_macrocarpa n 1 1 @ 1 0 12344837 -oersted n 2 2 @ %p 2 0 13638244 11212426 -oesophageal_reflux n 1 1 @ 1 0 14335485 -oesophageal_veins n 1 1 @ 1 0 05366812 -oesophagitis n 1 1 @ 1 0 14345815 -oesophagogastric_junction n 1 1 @ 1 0 05571341 -oesophagoscope n 1 1 @ 1 0 03296963 -oesophagus n 1 3 @ #p %p 1 0 05533948 -oesterreich n 1 6 @ #m #p %m %p - 1 0 08845555 -oestradiol n 1 2 @ #s 1 0 14750316 -oestridae n 1 3 @ #m %m 1 0 02194414 -oestriol n 1 1 @ 1 0 14750622 -oestrogen n 1 2 @ ~ 1 0 14749794 -oestrone n 1 1 @ 1 0 14750782 -oestrus n 2 3 @ #m %m 2 0 14038264 02194599 -oestrus_ovis n 1 2 @ #m 1 0 02194750 -oeuvre n 1 2 @ ~ 1 0 03841417 -off-axis_reflector n 1 1 @ 1 0 03516647 -off-broadway n 1 2 @ #p 1 1 09122397 -off-day n 1 1 @ 1 0 15171738 -off-licence n 1 1 @ 1 0 03871371 -off-line_equipment n 1 2 @ #p 1 0 03842377 -off-line_operation n 1 1 @ 1 0 13436809 -off-roader n 1 1 @ 1 0 03792782 -off-season n 1 2 ! @ 1 0 15238761 -off-speed_pitch n 1 1 @ 1 0 00107684 -off-white n 1 1 @ 1 0 04961331 -off_year n 2 1 @ 2 0 15202532 15202424 -offal n 1 1 @ 1 0 07651774 -offbeat n 1 1 @ 1 0 07087102 -offenbach n 1 1 @ 1 0 11212534 -offence n 5 6 ! @ ~ + ; - 5 1 00980038 08081244 07517550 01224031 00766234 -offender n 1 3 @ ~ + 1 1 09633969 -offense n 5 6 ! @ ~ + ; - 5 3 01224031 07517550 00766234 08081244 00980038 -offensive n 1 2 @ ~ 1 1 00980038 -offensive_activity n 1 2 @ ~ 1 0 01224031 -offensiveness n 1 4 @ ~ = + 1 0 04780958 -offer n 3 3 @ ~ + 3 2 07185076 07164546 00787061 -offer_price n 1 2 @ ; 1 0 13304508 -offerer n 1 2 @ + 1 0 10371052 -offering n 4 3 @ ~ + 4 1 07164546 13270373 07185076 01041498 -offeror n 1 2 @ + 1 0 10371052 -offertory n 2 2 @ #p 2 0 13270648 01036194 -office n 7 5 @ ~ #p + ; 7 4 03841666 08337324 00720565 13945102 08352303 01033458 00586262 -office-bearer n 1 2 @ ; 1 0 10371221 -office_block n 1 2 @ %p 1 0 03842012 -office_boy n 1 1 @ 1 1 10371330 -office_building n 1 2 @ %p 1 0 03842012 -office_furniture n 1 2 @ ~ 1 0 03842156 -office_of_inspector_general n 1 2 @ #p 1 0 08351380 -office_of_intelligence_support n 1 3 @ #m #p 1 0 08140767 -office_of_management_and_budget n 1 1 @ 1 0 08128492 -office_of_naval_intelligence n 1 3 @ #m #p 1 0 08194266 -office_of_the_dead n 1 2 @ ; 1 0 01034077 -office_staff n 1 1 @ 1 0 08352303 -officeholder n 2 2 @ ~ 2 0 10371450 10202624 -officer n 4 5 @ ~ #m + ; 4 4 10317007 10371450 10448983 10371741 -officer's_mess n 1 1 @ 1 0 03842276 -official n 2 3 @ ~ + 2 2 10372373 10372076 -official_document n 1 3 @ ~ ; 1 0 06479665 -official_emissary n 1 2 @ #m 1 0 10253479 -official_immunity n 1 1 @ 1 0 00214315 -officialdom n 1 4 @ ~ #m + 1 0 08357784 -officialese n 1 1 @ 1 0 07072195 -officiant n 1 2 @ + 1 0 10373390 -officiating n 1 2 @ + 1 0 01191755 -officiation n 2 2 @ + 2 0 01191755 00548173 -officiousness n 1 3 @ = + 1 0 04837931 -offing n 2 2 @ #p 2 0 15263675 09377125 -offprint n 1 1 @ 1 0 06269785 -offset n 6 3 @ ~ + 6 0 15265518 13291189 13127843 11415721 06680570 04176747 -offset_lithography n 1 1 @ 1 0 06680818 -offset_printing n 1 2 @ ~ 1 0 06680570 -offsetting_balance n 1 1 @ 1 0 13409850 -offshoot n 1 1 @ 1 0 11415721 -offshore_rig n 1 1 @ 1 0 03240683 -offside n 1 2 @ ; 1 0 00074324 -offspring n 3 2 @ ~ 3 2 10373998 07295047 01321579 -offstage n 1 1 @ 1 1 04592962 -ofo n 2 1 @ 2 0 09663121 06911180 -oftenness n 1 2 @ ~ 1 0 15278281 -ogalala n 2 2 @ ~ 2 0 09663248 06911265 -ogcocephalidae n 1 3 @ #m %m 1 0 02547562 -ogden n 2 2 @ #p 2 0 11212786 09147504 -ogden_nash n 1 1 @ 1 0 11200686 -ogdoad n 1 1 @ 1 0 13745086 -ogee n 1 1 @ 1 0 03842585 -ogee_arch n 1 1 @ 1 0 03842754 -ogive n 1 2 @ #p 1 0 03831537 -oglala n 2 2 @ ~ 2 0 09663248 06911265 -ogler n 1 2 @ + 1 0 10374282 -ogre n 2 3 @ ~ ; 2 0 10329945 09490825 -ogress n 1 1 @ 1 1 09490961 -oh n 1 3 @ #p %p 1 0 09130076 -ohio n 2 3 @ #p %p 2 1 09130076 09377315 -ohio_buckeye n 1 1 @ 1 0 12768933 -ohio_goldenrod n 1 1 @ 1 0 12018188 -ohio_river n 1 2 @ #p 1 0 09377315 -ohio_state_university n 1 2 @ #p 1 0 03842868 -ohioan n 1 1 @ 1 0 09745041 -ohm n 2 4 @ #p %p + 2 0 13646816 11213094 -ohm's_law n 1 1 @ 1 0 05886455 -ohmage n 1 1 @ 1 0 11504225 -ohmic_resistance n 1 2 @ ~ 1 0 11503968 -ohmmeter n 1 1 @ 1 0 03842986 -oig n 1 2 @ #p 1 0 08351380 -oil n 4 5 @ ~ #s %s + 4 2 14966667 03843092 14980579 07673397 -oil-hardened_steel n 1 1 @ 1 0 14968308 -oil-industry_analyst n 1 1 @ 1 0 09791151 -oil-rich_seed n 1 2 @ ~ 1 0 11689483 -oil-water_interface n 1 1 @ 1 1 09377511 -oil_beetle n 1 1 @ 1 0 02179192 -oil_burner n 1 1 @ 1 0 03843221 -oil_business n 1 2 @ %m 1 1 08069050 -oil_cake n 1 3 @ ~ %s 1 0 07801508 -oil_cartel n 1 2 @ ~ 1 0 08237699 -oil_change n 1 1 @ 1 0 00268025 -oil_color n 1 1 @ 1 0 03843092 -oil_colour n 1 1 @ 1 0 03843092 -oil_company n 1 2 @ #m 1 0 08069241 -oil_conservation n 1 1 @ 1 0 00819756 -oil_filter n 1 2 @ #p 1 0 03843555 -oil_furnace n 1 1 @ 1 0 03843221 -oil_future n 1 1 @ 1 0 03843724 -oil_geologist n 1 1 @ 1 1 10420392 -oil_gland n 1 2 @ ~ 1 0 05328115 -oil_heater n 1 1 @ 1 0 03843883 -oil_industry n 1 2 @ %m 1 0 08069050 -oil_lamp n 1 3 @ ~ %p 1 0 03844045 -oil_meal n 1 1 @ 1 0 07801709 -oil_nut n 1 2 @ #p 1 0 12737251 -oil_of_cloves n 1 1 @ 1 0 14893271 -oil_of_turpentine n 1 2 @ %s 1 0 14893652 -oil_of_vitriol n 1 3 @ ~ %s 1 0 15093482 -oil_of_wintergreen n 1 3 @ #s %s 1 0 07812913 -oil_paint n 1 2 @ ~ 1 0 03844233 -oil_painter n 1 1 @ 1 0 10374762 -oil_painting n 2 2 @ ~ 2 1 03844349 00938538 -oil_palm n 1 4 @ ~ #m %p 1 0 12590232 -oil_pipeline n 1 1 @ 1 0 03844459 -oil_pressure n 1 1 @ 1 0 11496746 -oil_production n 1 1 @ 1 0 00923130 -oil_pump n 1 2 @ #p 1 0 03844550 -oil_refinery n 1 2 @ %p 1 0 03844673 -oil_rig n 1 2 @ ~ 1 0 03241093 -oil_rigger n 1 1 @ 1 0 10530862 -oil_shale n 1 1 @ 1 0 15038789 -oil_slick n 1 1 @ 1 0 03844965 -oil_stain n 1 1 @ 1 0 04695884 -oil_tanker n 1 2 @ ~ 1 0 03845190 -oil_tycoon n 1 1 @ 1 0 10374849 -oil_well n 1 2 @ ~ 1 1 03845360 -oilbird n 1 2 @ #m 1 0 01837526 -oilcan n 1 2 @ %p 1 0 03843316 -oilcloth n 1 1 @ 1 1 03843438 -oiler n 3 3 @ ~ + 3 0 10374415 03845360 03845190 -oilfield n 1 1 @ 1 1 08659861 -oilfish n 1 1 @ 1 0 02622712 -oiliness n 2 2 @ + 2 0 05000116 04868505 -oilman n 2 2 @ ~ 2 0 10374652 10374541 -oilpaper n 1 1 @ 1 0 14968402 -oilrig n 1 2 @ ~ 1 0 03241093 -oilseed n 1 2 @ ~ 1 0 11689483 -oilskin n 1 1 @ 1 0 03844815 -oilstone n 1 1 @ 1 0 03845107 -oilstove n 1 1 @ 1 0 03843883 -oink n 1 1 @ 1 0 07384614 -ointment n 2 4 @ ~ %s ; 2 0 03845550 03128519 -oireachtas n 1 2 @ %p 1 0 08319777 -ois n 1 3 @ #m #p 1 0 08140767 -ojibwa n 2 1 @ 2 0 09663472 06911366 -ojibway n 2 1 @ 2 0 09663472 06911366 -ojos_del_salado n 1 2 @ #p 1 0 09377657 -ok n 2 4 @ #p %p + 2 0 09131654 06687701 -oka n 3 1 @ 3 0 13718574 13618418 12704041 -okapi n 1 2 @ #m 1 0 02439398 -okapia n 1 3 @ #m %m 1 0 02439286 -okapia_johnstoni n 1 2 @ #m 1 0 02439398 -okay n 1 2 @ + 1 0 06687701 -okeechobee n 1 2 @ #p 1 0 09377861 -okeechobee_waterway n 1 1 @ 1 0 09259746 -okefenokee_swamp n 1 2 @ #p 1 0 09378014 -okeh n 1 1 @ 1 0 06687701 -oken n 1 1 @ 1 0 11213323 -okenfuss n 1 1 @ 1 0 11213323 -okey n 1 1 @ 1 0 06687701 -okinawa n 2 5 @ #p %p ; - 2 0 08924400 01289061 -okinawa_campaign n 1 3 @ #p ; 1 0 01289061 -oklahoma n 1 3 @ #p %p 1 1 09131654 -oklahoma_city n 1 2 @ #p 1 0 09132597 -oklahoman n 1 1 @ 1 0 09745132 -okra n 3 4 @ #m #p %p 3 0 12172364 12171966 07733394 -okra_plant n 1 3 @ #m %p 1 0 12171966 -oktoberfest n 2 2 @ ; 2 0 07888058 00518303 -ola n 1 2 @ #p 1 0 14976170 -olaf_ii n 1 1 @ 1 0 11213552 -olav_ii n 1 1 @ 1 0 11213552 -old n 1 1 @ 1 0 15121302 -old-age_insurance n 1 1 @ 1 0 01088563 -old-age_pension n 1 1 @ 1 0 13384341 -old-age_pensioner n 1 1 @ 1 0 10374943 -old-fashionedness n 1 3 @ ~ + 1 0 04925895 -old-field_toadflax n 1 1 @ 1 0 12884100 -old-maid's_bonnet n 1 2 @ #m 1 0 12546962 -old-man-of-the-woods n 1 2 @ #m 1 0 13059657 -old-timer n 2 1 @ 2 0 10749123 10376890 -old_age n 1 3 @ ~ %p 1 1 15153787 -old_bag n 1 1 @ 1 0 09832321 -old_bailey n 1 2 @ #p 1 0 08334581 -old_boy n 3 1 @ 3 2 10375214 10375052 10375129 -old_boy_network n 1 1 @ 1 0 08434704 -old_bulgarian n 1 1 @ 1 0 06944156 -old_bullion n 1 1 @ 1 0 10845763 -old_catholic n 1 2 @ #m 1 0 09680908 -old_catholic_church n 1 2 @ %m 1 0 08086050 -old_church_slavic n 1 1 @ 1 0 06944156 -old_church_slavonic n 1 1 @ 1 0 06944156 -old_codger n 1 1 @ 1 0 09933842 -old_colony n 1 4 @ #p %p - 1 0 09095023 -old_country n 1 1 @ 1 1 08611954 -old_delhi n 1 3 @ #p %p 1 0 08903220 -old_dominion n 1 5 @ #m #p %p - 1 0 09148970 -old_dominion_state n 1 5 @ #m #p %p - 1 0 09148970 -old_english n 1 2 @ ~ 1 0 06949591 -old_english_sheepdog n 1 1 @ 1 0 02105641 -old_faithful n 1 2 @ #p 1 0 09378178 -old_fashioned n 1 2 @ %s 1 0 07916437 -old_french n 1 1 @ 1 0 06965580 -old_frisian n 1 1 @ 1 0 06955418 -old_geezer n 1 1 @ 1 0 10376890 -old_glory n 1 1 @ 1 0 02701566 -old_gold n 1 1 @ 1 0 04966649 -old_growth n 1 1 @ 1 0 13240025 -old_guard n 1 1 @ 1 0 08417178 -old_hand n 1 1 @ 1 0 10749123 -old_hickory n 1 1 @ 1 0 11075823 -old_high_german n 1 1 @ 1 0 06950886 -old_icelandic n 1 1 @ 1 0 06953332 -old_irish n 1 1 @ 1 0 06960948 -old_ironsides n 1 1 @ 1 0 03093018 -old_italian n 1 1 @ 1 0 06964485 -old_lady n 1 1 @ 1 0 10375314 -old_latin n 1 1 @ 1 0 06962954 -old_line_state n 1 3 @ #p %p 1 0 09093608 -old_maid n 5 3 @ ~ #m 5 1 10636488 12034141 11772408 10273352 00493858 -old_maid_flower n 1 3 @ ~ #m 1 0 12034141 -old_man n 5 5 @ ~ #m #s ; 5 3 10375506 10375214 10375402 11929477 10375690 -old_man's_beard n 3 2 @ #m 3 0 12608127 11731411 11731157 -old_man_of_the_mountain n 1 2 @ #m 1 0 12025507 -old_master n 1 2 @ ~ 1 0 10375794 -old_money n 1 1 @ 1 0 14492723 -old_nick n 1 2 @ ; 1 0 09543353 -old_norse n 1 2 @ ~ 1 0 06953167 -old_north_french n 1 1 @ 1 0 06965698 -old_north_state n 1 4 @ #m #p %p 1 0 09126305 -old_person n 1 2 @ ~ 1 0 10376523 -old_prussian n 1 1 @ 1 0 06946017 -old_rose n 1 1 @ 1 0 04971447 -old_salt n 1 2 @ ~ 1 0 10294602 -old_saxon n 1 1 @ 1 0 06952400 -old_school n 1 1 @ 1 1 08417572 -old_school_tie n 1 1 @ 1 0 03845990 -old_sledge n 1 1 @ 1 0 00498700 -old_south n 1 1 @ 1 1 09051609 -old_squaw n 1 2 @ #m 1 0 01853870 -old_stager n 1 1 @ 1 0 10749123 -old_style n 1 2 ! @ 1 0 06826974 -old_style_calendar n 1 1 @ 1 0 15174885 -old_style_font n 1 1 @ 1 0 06826974 -old_testament n 1 5 @ ~ #p %p - 1 1 06449735 -old_times n 1 1 @ 1 0 15252635 -old_witch_grass n 1 1 @ 1 0 12127237 -old_witchgrass n 1 1 @ 1 0 12127237 -old_wives'_tale n 1 1 @ 1 1 05978370 -old_woman n 2 3 @ ~ #m 2 1 10377021 11931312 -old_world n 1 2 @ #p 1 0 08562454 -old_world_beaver n 1 1 @ 1 0 02363245 -old_world_buffalo n 1 3 @ ~ #m 1 0 02407959 -old_world_chat n 1 3 @ ~ #m 1 0 01560636 -old_world_coot n 1 2 @ #m 1 0 02018368 -old_world_coral_snake n 1 2 @ ~ 1 0 01746359 -old_world_crayfish n 1 3 @ #m %p 1 0 01985493 -old_world_flycatcher n 1 3 @ ~ #m 1 0 01555809 -old_world_hop_hornbeam n 1 2 @ #m 1 0 12287836 -old_world_jay n 1 3 @ ~ #m 1 0 01580379 -old_world_least_weasel n 1 1 @ 1 0 02442572 -old_world_leishmaniasis n 1 1 @ 1 0 14181187 -old_world_mistletoe n 1 2 @ #m 1 0 12739332 -old_world_monkey n 1 3 @ ~ #m 1 0 02484473 -old_world_oriole n 1 3 @ ~ #m 1 0 01575745 -old_world_porcupine n 1 3 @ ~ #m 1 0 02346998 -old_world_quail n 1 3 @ ~ #m 1 0 01804921 -old_world_rabbit n 1 3 @ #m %p 1 0 02324850 -old_world_robin n 1 2 @ #m 1 0 01562265 -old_world_scops_owl n 1 1 @ 1 0 01624115 -old_world_vulture n 1 3 @ ~ #m 1 0 01616764 -old_world_warbler n 1 3 @ ~ #m 1 0 01564394 -old_world_white_pelican n 1 2 @ #m 1 0 02052365 -old_world_yew n 1 2 @ #m 1 0 11661909 -oldenburg n 1 1 @ 1 0 11213726 -oldfield n 1 1 @ 1 0 11213966 -oldie n 1 1 @ 1 0 07052700 -oldness n 2 4 ! @ ~ + 2 0 04927445 04925348 -oldster n 1 2 @ ~ 1 1 10376523 -oldtimer n 2 1 @ 2 0 10749123 10376890 -olduvai_gorge n 1 2 @ #p 1 0 09378349 -oldwench n 1 2 @ #m 1 0 02653497 -oldwife n 2 2 @ #m 2 0 02653497 01853870 -olea n 1 3 @ #m %m 1 0 12300625 -olea_cunninghamii n 1 2 @ #m 1 0 12301613 -olea_europaea n 1 3 @ #m %p 1 0 12301180 -olea_lanceolata n 1 2 @ #m 1 0 12301766 -oleaceae n 1 4 @ #m %m + 1 0 12299988 -oleaginousness n 2 2 @ + 2 0 05000116 04868505 -oleales n 1 2 @ #m 1 0 12300441 -oleander n 1 2 @ #m 1 1 11773987 -oleander_fern n 1 2 @ #m 1 0 13204276 -oleandra n 1 3 @ #m %m 1 0 13204102 -oleandra_mollis n 1 2 @ #m 1 0 13204276 -oleandra_neriiformis n 1 2 @ #m 1 0 13204276 -oleandraceae n 1 3 @ #m %m 1 0 13203842 -olearia n 1 3 @ #m %m 1 0 11997775 -olearia_argophylla n 1 1 @ 1 0 11998317 -olearia_haastii n 1 1 @ 1 0 11998492 -oleaster n 1 3 @ ~ #m 1 0 12325787 -oleaster_family n 1 3 @ #m %m 1 0 12325497 -olecranon n 1 2 @ #p 1 0 05593654 -olecranon_process n 1 2 @ #p 1 0 05593654 -oled n 1 1 @ 1 0 03854506 -olefin n 1 2 @ ~ 1 0 14713120 -olefine n 1 2 @ ~ 1 0 14713120 -oleic_acid n 1 2 @ #s 1 0 14968526 -olein n 1 1 @ 1 0 15079656 -oleo n 1 3 @ ~ %s 1 0 07672914 -oleo_oil n 1 1 @ 1 0 14968795 -oleomargarine n 1 3 @ ~ %s 1 0 07672914 -oleoresin n 1 2 @ ~ 1 0 14896441 -oleoresin_capiscum n 1 1 @ 1 0 14968926 -olfaction n 1 2 @ ~ 1 0 05658603 -olfactory_brain n 1 2 @ %p 1 0 05477686 -olfactory_bulb n 1 2 @ #p 1 0 05478139 -olfactory_impairment n 1 1 @ 1 0 14059021 -olfactory_modality n 1 2 @ ~ 1 0 05658603 -olfactory_nerve n 1 2 @ #p 1 0 05477946 -olfactory_organ n 1 4 @ ~ #p %p 1 0 05598147 -olfactory_perception n 1 2 @ ~ 1 0 05713737 -olfactory_property n 1 3 @ ~ = 1 0 04980008 -olfactory_sensation n 1 2 @ ~ 1 0 05713737 -olfersia n 1 2 @ #m 1 0 13198354 -olfersia_cervina n 1 1 @ 1 0 13198482 -olga_korbut n 1 1 @ 1 0 11109192 -olibanum n 1 1 @ 1 0 14873951 -oligarch n 1 2 @ + 1 0 10377185 -oligarchy n 1 2 @ + 1 0 08362455 -oligocene n 1 2 @ #p 1 0 15125679 -oligocene_epoch n 1 2 @ #p 1 0 15125679 -oligochaeta n 1 3 @ #m %m 1 0 01935012 -oligochaete n 1 3 @ ~ #m 1 0 01935176 -oligochaete_worm n 1 3 @ ~ #m 1 0 01935176 -oligoclase n 1 3 @ ~ #s 1 0 14865316 -oligodactyly n 1 1 @ 1 0 14160665 -oligodendria n 1 3 @ #p %p 1 0 05468523 -oligodendrocyte n 1 2 @ #p 1 0 05468739 -oligodendroglia n 1 3 @ #p %p 1 0 05468523 -oligodontia n 1 1 @ 1 0 14160786 -oligomenorrhea n 1 1 @ 1 0 13524191 -oligoplites n 1 3 @ #m %m 1 0 02577532 -oligopoly n 1 2 @ ; 1 0 14444825 -oligoporus n 1 2 @ #m 1 0 13051866 -oligoporus_leucospongia n 1 2 @ #m 1 0 13052014 -oligosaccharide n 1 2 @ ~ 1 0 14969044 -oligospermia n 1 1 @ 1 0 14571618 -oliguria n 2 1 @ 2 0 14507148 13524295 -olimbos n 1 2 @ #p 1 0 09378529 -olive n 5 7 @ ~ #m #s #p %s %p 5 0 12301445 12301180 12301038 07767344 04974340 -olive-drab_uniform n 1 3 @ %s ; 1 0 03846234 -olive-green n 1 1 @ 1 0 04968139 -olive-tree_agaric n 1 2 @ #m 1 0 13007629 -olive_branch n 1 1 @ 1 0 07167186 -olive_brown n 1 1 @ 1 0 04974248 -olive_drab n 3 4 @ #s %s ; 3 0 04974463 03846234 03846100 -olive_family n 1 3 @ #m %m 1 0 12299988 -olive_green n 1 1 @ 1 0 04968139 -olive_oil n 1 3 @ #s %s 1 0 07674508 -olive_ridley n 1 1 @ 1 0 01664674 -olive_tree n 1 4 @ ~ #m %s 1 0 12300840 -olivenite n 1 1 @ 1 0 14684272 -oliver n 1 1 @ 1 0 11214153 -oliver_cromwell n 1 1 @ 1 0 10916105 -oliver_ellsworth n 1 1 @ 1 0 10958381 -oliver_goldsmith n 1 1 @ 1 0 11005429 -oliver_hardy n 1 2 @ #m 1 0 11028780 -oliver_hazard_perry n 1 1 @ 1 0 11230158 -oliver_heaviside n 1 1 @ 1 0 11037495 -oliver_stone n 1 1 @ 1 0 11319704 -oliver_wendell_holmes n 1 1 @ 1 0 11056947 -oliver_wendell_holmes_jr. n 1 1 @ 1 0 11057076 -olivier n 1 1 @ 1 0 11214320 -olivine n 1 3 @ ~ %s 1 0 14684111 -olla n 1 2 @ #p 1 0 14976170 -olla_podrida n 1 1 @ 1 0 07589967 -ollari n 1 1 @ 1 0 06982022 -olm n 1 2 @ #m 1 0 01634227 -olmec n 1 2 @ #m 1 0 09649067 -olmsted n 1 1 @ 1 0 11214513 -ology n 1 2 @ ~ 1 1 05998724 -olympia n 2 3 @ #p + 2 0 09154000 08790953 -olympiad n 2 2 @ ~ 2 0 15204720 07457126 -olympian n 2 2 @ + 2 0 10377291 09553347 -olympian_games n 1 1 @ 1 0 00516720 -olympian_zeus n 1 2 @ #m 1 0 03846431 -olympic_games n 2 2 @ ~ 2 0 07457126 00516720 -olympic_god n 1 1 @ 1 0 09553347 -olympic_national_park n 1 2 @ #p 1 0 08608157 -olympic_salamander n 1 2 @ #m 1 0 01635480 -olympics n 1 2 @ ~ 1 1 07457126 -olympus n 1 3 @ #p + 1 0 09378529 -omaha n 4 2 @ #p 4 0 09663628 09110229 06911484 02383813 -oman n 1 5 @ #m #p %m %p 1 0 08975106 -omani n 1 3 @ #m + 1 0 09725653 -omani_monetary_unit n 1 2 @ ~ 1 0 13697011 -omani_rial n 1 2 @ %p 1 0 13697134 -omar_bradley n 1 1 @ 1 0 10860807 -omar_khayyam n 1 1 @ 1 0 11214707 -omar_nelson_bradley n 1 1 @ 1 0 10860807 -omasum n 1 2 @ #p 1 0 02399791 -omayyad n 1 1 @ 1 0 08159331 -omb n 1 1 @ 1 0 08128492 -ombu n 1 1 @ 1 0 11855842 -ombudsman n 1 1 @ 1 0 10377394 -omdurman n 2 3 @ #p ; 2 0 09030596 01289444 -omega n 2 2 @ #m 2 0 07355014 06836599 -omega-3 n 1 2 @ ~ 1 0 14742028 -omega-3_fatty_acid n 1 2 @ ~ 1 0 14742028 -omega-6 n 1 2 @ ~ 1 0 14742271 -omega-6_fatty_acid n 1 2 @ ~ 1 0 14742271 -omega_centauri n 1 2 @ #m 1 0 09378801 -omelet n 1 2 @ ~ 1 0 07842753 -omelet_pan n 1 1 @ 1 0 03846677 -omelette n 1 2 @ ~ 1 0 07842753 -omelette_pan n 1 1 @ 1 0 03846677 -omen n 1 3 @ ~ + 1 1 07286368 -omental_bursa n 1 2 @ #p 1 0 05428136 -omentum n 1 2 @ ~ 1 0 05429525 -omeprazole n 1 1 @ 1 0 14777606 -omerta n 1 2 @ ; 1 0 06669013 -omicron n 1 2 @ #m 1 0 06835630 -omission n 4 3 @ ~ + 4 3 00074624 14423614 13524399 05706954 -omiya n 1 2 @ #p 1 0 08923884 -ommastrephes n 1 2 @ #m 1 0 01971850 -ommatidium n 1 2 @ #p 1 0 05312614 -ommiad n 1 1 @ 1 0 08159331 -omnibus n 2 6 @ ~ #m %p + - 2 0 06592844 02924116 -omnidirectional_antenna n 1 2 @ ~ 1 0 03846772 -omnidirectional_radio_range n 1 1 @ 1 0 03846970 -omnidirectional_range n 1 1 @ 1 0 03846970 -omnipotence n 1 3 @ ~ + 1 0 14459185 -omnipresence n 1 2 @ + 1 0 13958456 -omnirange n 1 1 @ 1 0 03846970 -omniscience n 1 3 @ ~ + 1 0 14458943 -omnium-gatherum n 1 1 @ 1 0 08399977 -omnivore n 2 1 @ 2 0 10377542 02075612 -omomyid n 1 2 @ #m 1 0 02500749 -omomyid_group n 1 2 @ #m 1 0 02500749 -omophagia n 1 1 @ 1 0 00842519 -omotic n 1 1 @ 1 0 06991117 -omphalocele n 1 1 @ 1 0 14297489 -omphalos n 1 2 @ #p 1 0 05556595 -omphaloskepsis n 1 1 @ 1 0 05787848 -omphalotus n 1 3 @ #m %m 1 0 13005166 -omphalotus_illudens n 1 2 @ #m 1 0 13005329 -omphalus n 1 2 @ #p 1 0 05556595 -omsk n 1 2 @ #p 1 0 09010565 -on-license n 1 1 @ 1 0 06551226 -on-line_database n 1 3 @ ~ ; 1 0 06588511 -on-off_switch n 1 2 @ ~ 1 0 04445952 -on/off_switch n 1 2 @ ~ 1 0 04445952 -on_the_qui_vive n 1 1 @ 1 0 04664628 -on_the_road n 1 1 @ 1 1 00311528 -on_tour n 1 1 @ 1 0 00311528 -onager n 2 2 @ ~ 2 0 02981911 02390834 -onagraceae n 1 3 @ #m %m 1 0 12341126 -onanism n 2 3 @ ~ + 2 0 00855674 00849059 -onanist n 1 3 @ ~ + 1 0 10299700 -once-over n 1 1 @ 1 0 00143626 -onchocerciasis n 1 1 @ 1 0 14454030 -oncidium n 1 2 @ #m 1 0 12074408 -oncidium_papilio n 1 1 @ 1 0 12080820 -oncidium_papilio_kramerianum n 1 1 @ 1 0 12080588 -oncogene n 1 1 @ 1 0 05440410 -oncologist n 1 2 @ + 1 0 10377633 -oncology n 1 2 @ + 1 0 06054266 -oncoming n 1 1 @ 1 0 07325990 -oncorhynchus n 1 3 @ #m %m 1 0 02535909 -oncorhynchus_keta n 1 2 @ #m 1 0 02536685 -oncorhynchus_kisutch n 1 3 @ #m %p 1 0 02536864 -oncorhynchus_nerka n 1 3 @ #m %p 1 0 02536165 -oncorhynchus_tshawytscha n 1 3 @ #m %p 1 0 02536456 -oncovin n 1 2 @ ; 1 0 04535826 -ondaatje n 1 1 @ 1 0 11214926 -ondatra n 1 3 @ #m %m 1 0 02338029 -ondatra_zibethica n 1 2 @ #m 1 0 02338145 -one n 2 2 @ ~ 2 2 13742573 05870055 -one-and-one n 1 1 @ 1 0 00111222 -one-armed_bandit n 1 2 @ ~ 1 0 04243546 -one-billionth n 1 1 @ 1 0 13739721 -one-dimensional_language n 1 2 ! @ 1 0 06901163 -one-dimensionality n 1 1 @ 1 0 05063218 -one-eighth n 1 1 @ 1 1 13738140 -one-fifth n 1 1 @ 1 1 13737830 -one-flowered_pyrola n 1 2 @ #m 1 0 12258101 -one-flowered_wintergreen n 1 2 @ #m 1 0 12258101 -one-fourth n 1 1 @ 1 1 13737480 -one-half n 1 2 @ ~ 1 1 13736799 -one-hitter n 1 1 @ 1 0 00475142 -one-hundred-millionth n 1 1 @ 1 0 13739612 -one-hundred-thousandth n 1 1 @ 1 0 13739396 -one-hundredth n 1 1 @ 1 0 13739051 -one-liner n 1 1 @ 1 0 06779642 -one-man_rule n 1 2 @ ~ 1 0 08440630 -one-millionth n 1 1 @ 1 0 13739507 -one-night_stand n 2 1 @ 2 0 00856559 00100437 -one-ninth n 1 1 @ 1 0 13738235 -one-off n 1 1 @ 1 0 07296083 -one-quadrillionth n 1 1 @ 1 0 13739934 -one-quarter n 1 1 @ 1 0 13737480 -one-quintillionth n 1 1 @ 1 0 13740051 -one-seventh n 1 1 @ 1 0 13738043 -one-sixteenth n 1 1 @ 1 0 13738585 -one-sixth n 1 1 @ 1 0 13737952 -one-sixtieth n 1 1 @ 1 0 13738840 -one-sixty-fourth n 1 1 @ 1 0 13738939 -one-spot n 1 1 @ 1 0 03847214 -one-step n 1 3 @ ~ + 1 0 00535732 -one-ten-thousandth n 1 1 @ 1 0 13739278 -one-tenth n 1 1 @ 1 1 13738327 -one-third n 1 1 @ 1 1 13737190 -one-thirty-second n 1 1 @ 1 0 13738705 -one-thousandth n 1 1 @ 1 1 13739170 -one-trillionth n 1 1 @ 1 0 13739826 -one-twelfth n 1 1 @ 1 0 13738459 -one-upmanship n 1 1 @ 1 1 00412006 -one-way_light_time n 1 1 @ 1 0 15130749 -one-way_street n 2 1 @ 2 0 05963973 03847334 -one_c n 1 1 @ 1 0 13750415 -one_dollar_bill n 1 2 @ ; 1 0 13395897 -one_iron n 1 2 @ ; 1 0 03244775 -one_million_million n 2 2 @ ; 2 0 13752443 13752172 -one_million_million_million n 1 2 @ ; 1 0 13752679 -one_of_the_boys n 1 1 @ 1 0 10377865 -one_percent n 1 1 @ 1 1 13739051 -one_shot n 1 1 @ 1 0 04113641 -one_thousand n 1 2 @ ~ 1 0 13750844 -one_thousand_million n 1 3 @ ~ ; 1 0 13751829 -one_thousand_thousand n 1 1 @ 1 0 13751533 -onega n 1 2 @ #p 1 0 09332598 -oneida n 2 1 @ 2 0 09663999 06916505 -oneirism n 1 1 @ 1 0 05769471 -oneiromancer n 1 2 @ + 1 0 10377732 -oneiromancy n 1 2 @ + 1 0 05777599 -oneness n 1 2 @ + 1 1 04743370 -onerousness n 1 2 @ + 1 0 04711031 -oni n 1 3 @ #m #p 1 0 08194266 -onion n 3 5 @ ~ #p %s %p 3 0 12433081 12432808 07722217 -onion_bagel n 1 1 @ 1 0 07693889 -onion_bread n 1 1 @ 1 0 07684422 -onion_butter n 1 1 @ 1 0 07855721 -onion_dome n 1 1 @ 1 0 03847471 -onion_louse n 1 2 @ #m 1 0 02272552 -onion_mildew n 1 2 @ #m 1 0 12981301 -onion_plant n 1 4 @ ~ %s %p 1 0 12432808 -onion_roll n 1 2 @ ~ 1 0 07692405 -onion_salt n 1 1 @ 1 0 07813495 -onion_smut n 1 1 @ 1 0 13068735 -onion_stem n 1 2 @ #m 1 0 13014879 -onion_thrips n 1 2 @ #m 1 0 02272552 -onion_yellow-dwarf_virus n 1 1 @ 1 0 01341580 -onion_yellow_dwarf n 1 1 @ 1 0 14285008 -onionskin n 1 1 @ 1 0 14969254 -oniscidae n 1 3 @ #m %m 1 0 01991676 -oniscus n 1 3 @ #m %m 1 0 01991808 -onlooker n 1 1 @ 1 1 10378026 -ono n 1 1 @ 1 0 11215205 -onobrychis n 1 3 @ #m %m 1 0 12552081 -onobrychis_viciaefolia n 1 2 @ #m 1 0 12552309 -onobrychis_viciifolia n 1 2 @ #m 1 0 12552309 -onoclea n 1 3 @ #m %m 1 0 13198728 -onoclea_sensibilis n 1 2 @ #m 1 0 13198914 -onoclea_struthiopteris n 1 2 @ #m 1 0 13198054 -onomancer n 1 2 @ + 1 0 10378113 -onomancy n 1 2 @ + 1 0 05777722 -onomasticon n 1 1 @ 1 0 06420573 -onomastics n 1 2 @ + 1 0 06178995 -onomatomania n 1 1 @ 1 0 09183532 -onomatopoeia n 1 2 @ + 1 0 07104574 -onondaga n 2 2 @ ~ 2 0 09664121 06916601 -ononis n 1 3 @ #m %m 1 0 12552658 -ononis_repens n 1 2 @ #m 1 0 12552893 -ononis_spinosa n 1 2 @ #m 1 0 12553114 -onopordon n 1 3 @ #m %m 1 0 11998648 -onopordon_acanthium n 1 2 @ #m 1 0 11998888 -onopordum n 1 3 @ #m %m 1 0 11998648 -onopordum_acanthium n 1 2 @ #m 1 0 11998888 -onosmodium n 1 3 @ #m %m 1 0 12822284 -onrush n 2 4 @ ~ %p ; 2 2 00972621 07440617 -onsager n 1 1 @ 1 0 11215384 -onset n 2 4 @ ~ %p ; 2 1 07325990 00972621 -onslaught n 3 4 @ ~ %p ; 3 2 07306160 00972621 07083441 -ontario n 2 3 @ #p %p 2 0 09332770 08827126 -ontogenesis n 1 6 @ ~ %p + ; - 1 0 13489037 -ontogeny n 1 6 @ ~ %p + ; - 1 0 13489037 -ontology n 2 3 @ + ; 2 0 06162979 06162847 -onus n 1 2 @ ~ 1 0 05832745 -onward_motion n 1 2 @ ~ 1 0 00282050 -onychium n 1 2 @ #m 1 0 13211305 -onychogalea n 1 3 @ #m %m 1 0 01878500 -onycholysis n 1 1 @ 1 0 14079740 -onychomys n 1 3 @ #m %m 1 0 02337774 -onychophora n 1 3 @ #m %m 1 0 01999374 -onychophoran n 1 3 @ ~ #m 1 0 01999767 -onychosis n 1 2 @ ~ 1 0 14079861 -onyx n 1 2 @ ~ 1 0 14969523 -onyx_marble n 1 1 @ 1 0 14665469 -onyxis n 1 1 @ 1 0 05584605 -oocyte n 1 1 @ 1 0 05458576 -oodles n 1 1 @ 1 0 13777509 -oogenesis n 1 1 @ 1 0 13524612 -oology n 1 1 @ 1 0 06073331 -oolong n 1 1 @ 1 0 07935379 -oom_paul_kruger n 1 1 @ 1 0 11111577 -oomph n 2 2 @ ~ 2 0 04686935 04635482 -oomycetes n 1 3 @ #m %m 1 0 12977296 -oophorectomy n 1 1 @ 1 0 00686570 -oophoritis n 1 1 @ 1 0 14351002 -oophorosalpingectomy n 1 1 @ 1 0 00686682 -oort n 1 1 @ 1 0 11215541 -oort_cloud n 1 2 @ ; 1 0 08270662 -oosphere n 1 1 @ 1 0 11549391 -oospore n 1 1 @ 1 0 11549245 -ootid n 1 1 @ 1 0 05458173 -ooze n 2 3 @ ~ + 2 0 14956661 07432119 -ooze_leather n 1 1 @ 1 0 14760813 -oozing n 1 3 @ ~ + 1 0 07432119 -op_art n 1 1 @ 1 0 03847622 -opacification n 1 2 @ + 1 0 13524686 -opacity n 3 5 ! @ ~ = + 3 0 11490058 04823258 04703424 -opah n 1 2 @ #m 1 0 02545841 -opal n 1 3 @ ~ + 1 0 14688234 -opal_glass n 1 1 @ 1 0 14879996 -opalescence n 1 2 @ + 1 0 04953678 -opaque_gem n 1 2 @ ~ 1 0 14969666 -opaqueness n 2 4 @ ~ = + 2 0 04823258 04703424 -opcw n 1 1 @ 1 0 08175875 -opec n 1 2 @ %m 1 0 08177030 -opel n 1 1 @ 1 0 11215724 -open n 4 2 @ + 4 2 08632423 08613733 07465159 05612809 -open-air_market n 1 2 @ ~ 1 0 03847823 -open-air_marketplace n 1 2 @ ~ 1 0 03847823 -open-angle_glaucoma n 1 1 @ 1 0 14256346 -open-class_word n 1 3 @ ~ %p 1 0 06289250 -open-door_policy n 1 1 @ 1 0 06663168 -open-end_credit n 1 2 @ ~ 1 0 13375323 -open-end_fund n 1 2 @ ~ 1 0 08071516 -open-end_investment_company n 1 2 @ ~ 1 0 08071516 -open-end_wrench n 1 2 @ ~ 1 0 03848168 -open-face_sandwich n 1 1 @ 1 0 07696977 -open-heart_surgery n 1 2 @ ~ 1 0 00675540 -open-hearth_furnace n 1 1 @ 1 0 03848537 -open-hearth_process n 1 1 @ 1 0 13524804 -open_account n 2 2 @ ~ 2 0 13375604 06529798 -open_air n 1 1 @ 1 0 08613733 -open_chain n 1 3 ! @ ~ 1 0 09378929 -open_circuit n 1 2 ! @ 1 0 03848033 -open_door n 2 1 @ 2 0 06663168 05181078 -open_fireplace n 1 4 @ ~ #p %p 1 0 03346455 -open_fracture n 1 1 @ 1 0 14292796 -open_frame n 1 1 @ 1 0 00188007 -open_house n 1 1 @ 1 1 08254993 -open_interval n 1 2 ! @ 1 0 06016600 -open_letter n 1 1 @ 1 0 06625601 -open_marriage n 1 1 @ 1 0 13966496 -open_order n 1 2 @ ; 1 0 08426993 -open_primary n 1 1 @ 1 0 00183084 -open_sandwich n 1 1 @ 1 0 07696977 -open_secret n 1 1 @ 1 0 06674028 -open_sesame n 2 1 @ 2 1 00179275 07170660 -open_shop n 1 1 @ 1 0 08234935 -open_sight n 1 1 @ 1 0 03849412 -open_society n 1 1 @ 1 0 08288189 -open_university n 1 2 @ ; 1 0 08286946 -open_weave n 1 1 @ 1 0 03849538 -openbill n 1 2 @ #m 1 0 02003577 -opencast_mining n 1 1 @ 1 0 00922848 -opener n 3 3 @ ~ + 3 1 07326369 10737431 03848348 -openhandedness n 1 2 @ + 1 0 04832716 -opening n 13 7 ! @ ~ #p %p + ; 13 5 09379111 07452699 00383390 07329363 00338641 14485249 06397476 05792010 05249636 03848729 03499142 00457890 00239230 -opening_line n 1 2 @ #p 1 0 06271055 -opening_move n 1 2 @ ~ 1 0 00239230 -opening_night n 1 1 @ 1 0 07329363 -openness n 3 4 ! @ ~ + 3 0 05083905 04654066 04645020 -openside_plane n 1 2 @ ~ 1 0 03849275 -openwork n 1 1 @ 1 1 03849679 -opepe n 1 2 @ #m 1 0 12668917 -opera n 3 4 @ ~ %p + 3 1 07026352 06571938 03849814 -opera_bouffe n 1 2 @ ~ 1 1 07026646 -opera_cloak n 1 1 @ 1 0 03849943 -opera_comique n 1 2 @ ~ 1 0 07026646 -opera_company n 1 1 @ 1 0 08187370 -opera_glasses n 1 3 @ %p ; 1 0 02841315 -opera_hat n 1 1 @ 1 0 03237416 -opera_hood n 1 1 @ 1 0 03849943 -opera_house n 1 1 @ 1 0 03849814 -opera_star n 1 2 @ ~ 1 0 10378290 -operagoer n 1 1 @ 1 1 10378213 -operand n 1 1 @ 1 0 05857346 -operant_conditioning n 1 2 @ ~ 1 0 05759696 -operatic_star n 1 2 @ ~ 1 0 10378290 -operating_budget n 1 2 @ %p 1 1 13422234 -operating_capability n 1 2 @ ~ 1 0 05204143 -operating_capital n 1 1 @ 1 1 13354769 -operating_cost n 1 3 @ #p ; 1 1 13277179 -operating_expense n 1 3 @ #p ; 1 0 13277179 -operating_instructions n 1 1 @ 1 0 06422144 -operating_microscope n 1 1 @ 1 0 03850053 -operating_procedure n 1 2 @ ~ 1 1 01024811 -operating_room n 1 1 @ 1 0 03850245 -operating_statement n 1 1 @ 1 0 13355301 -operating_surgeon n 1 2 @ ~ 1 0 10679174 -operating_system n 1 5 @ ~ #p %p ; 1 0 06568134 -operating_table n 1 1 @ 1 0 03850492 -operating_theater n 1 1 @ 1 0 03850245 -operating_theatre n 1 1 @ 1 0 03850245 -operation n 11 6 @ ~ %p + ; - 11 7 14008806 01095966 00409483 13524925 00955060 00671351 00577068 13525549 05701363 00869583 00409211 -operation_code n 1 1 @ 1 0 06358311 -operation_desert_storm n 1 3 @ #p ; 1 0 01289631 -operational_casualty n 1 2 @ ; 1 0 07339941 -operational_cell n 1 1 @ 1 0 08359316 -operational_damage n 1 2 @ ; 1 0 07339941 -operationalism n 1 2 @ ; 1 0 05974363 -operations n 1 2 @ ; 1 1 01107726 -operations_research n 1 1 @ 1 0 00637546 -operative n 2 2 @ ~ 2 0 10569411 10476671 -operative_field n 1 1 @ 1 0 05934962 -operator n 5 4 @ ~ + ; 5 4 13786413 10378412 10378780 10194566 10378952 -operator_gene n 1 2 @ #p 1 0 05440046 -operculum n 1 1 @ 1 0 01902368 -operetta n 1 1 @ 1 1 07027090 -operon n 1 2 @ %p 1 0 05440207 -operoseness n 1 2 @ + 1 0 04709944 -opheodrys n 1 3 @ #m %m 1 0 01729838 -opheodrys_aestivus n 1 1 @ 1 0 01730307 -opheodrys_vernalis n 1 1 @ 1 0 01730185 -ophidia n 1 3 @ #m %m 1 0 01726390 -ophidian n 1 3 @ ~ #m 1 0 01726692 -ophidiidae n 1 3 @ #m %m 1 0 02558724 -ophidism n 1 1 @ 1 0 14512009 -ophiodon n 1 3 @ #m %m 1 0 02552894 -ophiodon_elongatus n 1 3 @ #m %p 1 0 02553028 -ophiodontidae n 1 3 @ #m %m 1 0 02552737 -ophioglossaceae n 1 3 @ #m %m 1 0 12959967 -ophioglossales n 1 3 @ #m %m 1 0 12959802 -ophioglossum n 1 3 @ #m %m 1 0 12960211 -ophioglossum_pendulum n 1 1 @ 1 0 12960552 -ophiolatry n 1 1 @ 1 0 01046792 -ophiophagus n 1 3 @ #m %m 1 0 01748560 -ophiophagus_hannah n 1 2 @ #m 1 0 01748906 -ophisaurus n 1 3 @ #m %m 1 0 01690339 -ophiuchus n 1 1 @ 1 0 09379572 -ophiurida n 1 3 @ #m %m 1 0 02317653 -ophiuroidea n 1 3 @ #m %m 1 0 02317488 -ophryon n 1 2 @ #p 1 0 05234438 -ophrys n 1 3 @ #m %m 1 0 12074678 -ophrys_apifera n 1 1 @ 1 0 12074867 -ophrys_insectifera n 1 1 @ 1 0 12075010 -ophrys_muscifera n 1 1 @ 1 0 12075010 -ophrys_sphegodes n 1 1 @ 1 0 12075299 -ophthalmectomy n 1 1 @ 1 0 00686826 -ophthalmia n 1 2 @ ~ 1 0 14259320 -ophthalmia_neonatorum n 1 1 @ 1 0 14259431 -ophthalmic_artery n 1 1 @ 1 0 05352896 -ophthalmic_vein n 1 2 @ ~ 1 0 05374980 -ophthalmitis n 1 2 @ ~ 1 0 14259320 -ophthalmologist n 1 3 @ ~ + 1 0 10379073 -ophthalmology n 1 3 @ + - 1 0 06054446 -ophthalmoplegia n 1 1 @ 1 0 14351219 -ophthalmoscope n 1 2 @ ~ 1 0 03850613 -ophthalmoscopy n 1 1 @ 1 0 00143763 -opiate n 1 3 @ ~ %s 1 0 03850746 -opiliones n 1 3 @ #m %m 1 0 01769635 -opinion n 6 4 @ ~ + ; 6 5 05945642 06782019 05949726 06551784 01191158 05916739 -opinion_poll n 1 2 @ ~ 1 0 05800998 -opisthobranchia n 1 3 @ #m %m 1 0 01950195 -opisthocomidae n 1 3 @ #m %m 1 0 01809446 -opisthocomus n 1 3 @ #m %m 1 0 01809592 -opisthocomus_hoazin n 1 2 @ #m 1 0 01809752 -opisthognathidae n 1 3 @ #m %m 1 0 02611425 -opisthorchiasis n 1 1 @ 1 0 14454311 -opisthotonos n 1 1 @ 1 0 14361513 -opium n 1 2 @ #s 1 1 03850966 -opium_addict n 1 1 @ 1 0 10379278 -opium_den n 1 1 @ 1 0 03851124 -opium_poppy n 1 3 @ #m %p 1 0 11902389 -opium_taker n 1 1 @ 1 0 10379278 -opopanax n 1 1 @ 1 0 14969892 -oporto n 1 2 @ #p 1 0 08986374 -opossum n 2 3 @ ~ #m 2 0 01881171 01874928 -opossum_rat n 1 2 @ #m 1 0 01876034 -opossum_shrimp n 1 2 @ #m 1 0 01989516 -opossum_wood n 1 1 @ 1 0 12778398 -oppenheimer n 1 1 @ 1 0 11215909 -opponent n 2 3 @ ~ + 2 2 10379620 09773245 -opportuneness n 1 3 ! @ + 1 0 04718826 -opportunism n 1 2 @ + 1 1 04835488 -opportunist n 1 3 @ ~ + 1 0 10379376 -opportunistic_infection n 1 2 @ ~ 1 0 14178482 -opportunity n 1 3 @ ~ + 1 1 14483917 -opportunity_cost n 1 2 @ ~ 1 0 13305794 -opposer n 1 3 @ ~ + 1 0 09773245 -opposite n 4 2 @ ~ 4 3 06288024 13858604 10379620 13858833 -opposite_number n 1 2 @ ~ 1 0 05695806 -opposite_word n 1 2 @ ~ 1 0 06288024 -oppositeness n 1 3 @ ~ + 1 0 13854649 -opposition n 8 5 @ ~ #m + ; 8 5 00202284 13854649 01169744 10379620 08403787 13828905 10055847 08404188 -oppression n 3 3 @ ~ + 3 1 00421047 13996719 07538674 -oppressiveness n 2 3 @ ~ + 2 0 07538674 04711031 -oppressor n 1 3 @ ~ + 1 0 10379758 -opprobrium n 2 2 @ + 2 0 14441498 14441230 -ops n 1 2 @ ; 1 0 09576548 -opsanus_tau n 1 3 @ ~ #m 1 0 02548689 -opsin n 1 2 @ #s 1 0 14735077 -opsonin n 1 2 @ #s 1 0 15030264 -opsonisation n 1 2 @ + 1 0 13525912 -opsonization n 1 2 @ + 1 0 13525912 -optative n 1 2 @ ; 1 0 13802098 -optative_mood n 1 2 @ ; 1 0 13802098 -optez n 1 1 @ 1 0 06897553 -optic n 1 6 @ ~ #p %p + ; 1 0 05311054 -optic_axis n 2 1 @ 2 0 06010381 06010105 -optic_chiasm n 1 1 @ 1 0 05228881 -optic_chiasma n 1 1 @ 1 0 05228881 -optic_cup n 1 2 @ ; 1 0 02155678 -optic_disc n 1 2 @ #p 1 0 05456082 -optic_disk n 1 2 @ #p 1 0 05456082 -optic_nerve n 1 2 @ #p 1 0 05478336 -optic_radiation n 1 1 @ 1 0 05229049 -optic_tract n 1 2 @ #p 1 0 05478336 -optical_aberration n 1 2 @ ~ 1 0 11420139 -optical_bench n 1 1 @ 1 0 03851219 -optical_condenser n 1 2 @ ~ 1 0 03087366 -optical_crown n 1 1 @ 1 0 14880273 -optical_crown_glass n 1 1 @ 1 0 14880273 -optical_density n 1 2 @ ; 1 0 05089367 -optical_device n 1 2 @ ~ 1 0 03851341 -optical_disc n 1 2 @ ~ 1 0 03851787 -optical_disk n 1 2 @ ~ 1 0 03851787 -optical_fiber n 1 2 @ #p 1 0 03852031 -optical_fibre n 1 2 @ #p 1 0 03852031 -optical_flint n 1 1 @ 1 0 14880425 -optical_fusion n 1 1 @ 1 0 05936561 -optical_glass n 1 2 @ ~ 1 0 14880107 -optical_illusion n 1 2 @ ~ 1 0 11490463 -optical_instrument n 1 3 @ ~ %p 1 0 03852280 -optical_lens n 1 3 @ ~ #p 1 0 02943241 -optical_maser n 1 2 @ #p 1 0 03643253 -optical_opacity n 1 1 @ 1 0 11490257 -optical_phenomenon n 1 2 @ ~ 1 0 11490638 -optical_prism n 1 3 @ ~ #p 1 0 04005340 -optical_pyrometer n 1 1 @ 1 0 03852544 -optical_telescope n 1 3 @ ~ %p 1 0 03852688 -optician n 1 1 @ 1 0 10380000 -optics n 2 4 @ ~ + - 2 0 06100778 04950026 -optimisation n 1 2 @ + 1 0 00260051 -optimism n 2 4 ! @ ~ + 2 1 07541558 05211793 -optimist n 1 4 ! @ ~ + 1 0 10380126 -optimization n 1 2 @ + 1 0 00260051 -optimum n 1 2 @ + 1 1 05143864 -option n 3 3 @ ~ + 3 0 13241600 05790944 00161243 -optometrist n 1 2 @ + 1 0 10380305 -optometry n 1 2 @ + 1 0 00632716 -opulence n 1 2 @ + 1 0 14492373 -opuntia n 1 3 @ #m %m 1 0 11851395 -opuntia_cholla n 1 2 @ #m 1 0 11851839 -opuntia_lindheimeri n 1 1 @ 1 0 11852028 -opuntia_tuna n 1 1 @ 1 0 11852148 -opuntiales n 1 3 @ #m %m 1 0 11841368 -opus n 1 3 @ ~ %p 1 1 07037465 -opv n 1 1 @ 1 0 04122011 -or n 2 3 @ #p %p 2 0 09133010 03850245 -or_circuit n 1 1 @ 1 0 03853454 -or_gate n 1 1 @ 1 0 03853454 -orach n 1 3 @ ~ #m 1 0 11830714 -orache n 1 3 @ ~ #m 1 0 11830714 -oracle n 3 3 @ ~ + 3 0 10483530 06750339 03852908 -oracle_of_apollo n 1 3 @ #p ; 1 0 04407844 -oracle_of_delphi n 1 3 @ #p ; 1 0 04407844 -oradexon n 1 2 @ ; 1 0 14753808 -oral n 1 2 @ + 1 0 07198846 -oral_cancer n 1 1 @ 1 0 14251845 -oral_cavity n 1 4 @ ~ #p %p 1 1 05302499 -oral_communication n 1 3 @ ~ ; 1 0 07109196 -oral_contraception n 1 1 @ 1 0 00852400 -oral_contraceptive n 1 3 @ ~ %s 1 0 03936895 -oral_contraceptive_pill n 1 3 @ ~ %s 1 0 03936895 -oral_contract n 1 1 @ 1 0 06772583 -oral_exam n 1 1 @ 1 0 07198846 -oral_examination n 1 1 @ 1 0 07198846 -oral_fissure n 1 4 @ ~ #p %p 1 0 05302499 -oral_herpes n 1 1 @ 1 0 14132375 -oral_personality n 1 2 @ ; 1 0 04619946 -oral_phase n 1 3 @ #p ; 1 0 15146545 -oral_poliovirus_vaccine n 1 1 @ 1 0 04122011 -oral_presentation n 1 2 @ ~ 1 0 07241837 -oral_roberts n 1 1 @ 1 0 11264508 -oral_sex n 1 2 @ ~ 1 0 00854876 -oral_smear n 1 1 @ 1 0 05265981 -oral_stage n 1 3 @ #p ; 1 0 15146545 -oran n 1 2 @ #p 1 0 08706663 -orang n 1 2 @ #m 1 0 02480495 -orange n 5 7 @ ~ #m #p %s %p + 5 3 07747607 04965179 12708293 14991210 09379705 -orange-blossom_orchid n 1 2 @ #m 1 0 12082131 -orange-juice_concentrate n 1 1 @ 1 0 07924955 -orange_balsam n 1 2 @ #m 1 0 12684379 -orange_bat n 1 2 @ #m 1 0 02144251 -orange_daisy n 1 1 @ 1 0 11966215 -orange_fleabane n 1 1 @ 1 0 11966215 -orange_free_state n 1 2 @ #p 1 0 09001184 -orange_grass n 1 1 @ 1 0 12368637 -orange_group n 1 2 @ ; 1 0 08036849 -orange_grove n 1 1 @ 1 0 03853023 -orange_hawkweed n 1 2 @ #m 1 0 12003814 -orange_horseshoe_bat n 1 2 @ #m 1 0 02144251 -orange_juice n 1 2 @ ~ 1 0 07924834 -orange_liqueur n 1 2 @ ~ 1 0 07909811 -orange_marmalade n 1 1 @ 1 0 07643891 -orange_milkweed n 1 1 @ 1 0 13235503 -orange_milkwort n 1 1 @ 1 0 12705458 -orange_mushroom_pimple n 1 1 @ 1 0 12966193 -orange_order n 1 3 @ %m ; 1 0 08036669 -orange_peel n 2 3 @ ~ #p 2 0 07738905 07601290 -orange_peel_fungus n 1 1 @ 1 0 13029760 -orange_pekoe n 1 1 @ 1 0 07934908 -orange_red n 1 1 @ 1 0 04964977 -orange_rind n 1 3 @ ~ #p 1 0 07738905 -orange_river n 1 2 @ #p 1 0 09379705 -orange_sneezeweed n 1 1 @ 1 0 11977660 -orange_soda n 1 1 @ 1 0 07928488 -orange_toast n 1 1 @ 1 0 07689624 -orange_tortrix n 1 2 @ #m 1 0 02284884 -orange_tree n 1 5 @ ~ #m %s %p 1 0 12708293 -orange_yellow n 1 2 @ ~ 1 0 04966717 -orange_zest n 1 1 @ 1 0 07810825 -orangeade n 1 1 @ 1 0 07926442 -orangeman n 1 2 @ #m 1 0 10380499 -orangeness n 1 3 @ ~ + 1 0 04965179 -orangery n 1 1 @ 1 0 13252672 -orangewood n 1 2 @ #s 1 0 12708520 -orangutan n 1 2 @ #m 1 0 02480495 -orangutang n 1 2 @ #m 1 0 02480495 -orasone n 1 2 @ ; 1 0 14753414 -oration n 1 3 @ ~ %p 1 1 07241551 -orator n 1 3 @ ~ + 1 1 10380672 -oratorio n 1 2 @ ~ 1 1 07042249 -oratory n 1 3 @ ~ + 1 0 07241205 -orb n 2 3 @ ~ #p 2 1 05316025 13899404 -orb-weaver n 1 3 @ #m %m 1 0 01772782 -orb-weaving_spider n 1 1 @ 1 0 01772664 -orb_web n 1 1 @ 1 0 03853103 -orbiculate_leaf n 1 1 @ 1 0 13159263 -orbignya n 1 3 @ #m %m 1 0 12592351 -orbignya_cohune n 1 3 @ #m %p 1 0 12593122 -orbignya_martiana n 1 3 @ #m %p 1 0 12592544 -orbignya_phalerata n 1 3 @ #m %p 1 0 12592544 -orbignya_spesiosa n 1 3 @ #m %p 1 0 12592544 -orbison n 1 1 @ 1 0 11216100 -orbit n 5 5 @ ~ #p %p + 5 3 08612049 14514039 05125377 08612340 05285275 -orbit_period n 1 1 @ 1 0 15289944 -orbital_cavity n 1 3 @ #p %p 1 0 05285275 -orbital_motion n 1 1 @ 1 0 07441902 -orbital_plane n 1 2 @ ; 1 0 13861806 -orbital_point n 1 1 @ 1 0 05234593 -orbital_rotation n 1 1 @ 1 0 07441902 -orbitale n 1 1 @ 1 0 05234593 -orbiter n 1 4 @ ~ %p + 1 0 04137444 -orca n 1 2 @ #m 1 0 02071294 -orchard n 1 2 @ ~ 1 1 03463832 -orchard_apple_tree n 1 3 @ #m %p 1 0 12633994 -orchard_grass n 1 1 @ 1 0 12116429 -orchard_oriole n 1 2 @ #m 1 0 01572782 -orchestia n 1 3 @ #m %m 1 0 01993065 -orchestiidae n 1 3 @ #m %m 1 0 01992935 -orchestra n 2 5 @ ~ #p %p + 2 2 08248157 03853178 -orchestra_pit n 1 2 @ #p 1 0 03853291 -orchestral_bells n 1 1 @ 1 0 03440682 -orchestration n 3 2 @ + 3 2 07038615 00939818 01008801 -orchestrator n 1 2 @ + 1 0 10381100 -orchid n 1 4 @ ~ #m %p 1 1 12041446 -orchid_cactus n 1 2 @ #m 1 0 11846765 -orchid_family n 1 3 @ #m %m 1 0 12039743 -orchid_tree n 1 2 @ #m 1 0 12491017 -orchidaceae n 1 3 @ #m %m 1 0 12039743 -orchidaceous_plant n 1 4 @ ~ #m %p 1 0 12041446 -orchidales n 1 3 @ #m %m 1 0 12039524 -orchidalgia n 1 1 @ 1 0 14329578 -orchidectomy n 1 1 @ 1 0 00686913 -orchiectomy n 1 1 @ 1 0 00686913 -orchil n 2 2 @ #m 2 0 14989430 12988572 -orchiopexy n 1 1 @ 1 0 00689186 -orchis n 2 5 @ ~ #m #p %p 2 0 12043444 05524615 -orchis_mascula n 1 1 @ 1 0 12043673 -orchis_papilionaceae n 1 1 @ 1 0 12043836 -orchis_spectabilis n 1 1 @ 1 0 12044041 -orchitis n 1 1 @ 1 0 14351094 -orchotomy n 1 1 @ 1 0 00689302 -orcinus n 1 3 @ #m %m 1 0 02071173 -orcinus_orca n 1 2 @ #m 1 0 02071294 -orcus n 1 1 @ 1 0 09570522 -orczy n 1 1 @ 1 0 11216264 -ord_kangaroo_rat n 1 1 @ 1 0 02350357 -ordainer n 1 2 @ + 1 0 10381214 -ordeal n 2 1 @ 2 1 07287730 01196477 -ordeal_bean n 1 2 @ #p 1 0 12487058 -ordeal_tree n 1 2 @ #m 1 0 11768816 -order n 15 8 ! @ ~ #m %m + ; - 15 9 07168623 05091316 13968547 08456993 14496710 06539770 06529219 08227214 06652878 13950812 08147794 08106934 07279687 04698656 01009871 -order-chenopodiales n 1 3 @ #m %m 1 0 11804082 -order_acarina n 1 3 @ #m %m 1 0 01775879 -order_accipitriformes n 1 1 @ 1 0 01604968 -order_actinaria n 1 3 @ #m %m 1 0 01914415 -order_actiniaria n 1 3 @ #m %m 1 0 01914415 -order_actinomycetales n 1 3 @ #m %m 1 0 01374989 -order_actinomyxidia n 1 3 @ #m %m 1 0 01427005 -order_aepyorniformes n 1 3 @ #m %m 1 0 01521980 -order_agaricales n 1 3 @ #m %m 1 0 12998349 -order_alcyonaria n 1 3 @ #m %m 1 0 01915093 -order_alismales n 1 3 @ #m %m 1 0 12610933 -order_amoebida n 1 3 @ #m %m 1 0 01391569 -order_amoebina n 1 3 @ #m %m 1 0 01391569 -order_amphipoda n 1 3 @ #m %m 1 0 01992516 -order_anacanthini n 1 2 @ #m 1 0 02521472 -order_anaspida n 1 3 @ #m %m 1 0 01475794 -order_andreaeales n 1 3 @ #m %m 1 0 11539675 -order_anguilliformes n 1 3 @ #m %m 1 0 02525866 -order_anoplura n 1 3 @ #m %m 1 0 02183697 -order_anostraca n 1 3 @ #m %m 1 0 01995137 -order_anseriformes n 1 3 @ #m %m 1 0 01845272 -order_anthocerotales n 1 3 @ #m %m 1 0 11538341 -order_anura n 1 3 @ #m %m 1 0 01639369 -order_aphyllophorales n 1 3 @ #m %m 1 0 13049285 -order_aplacophora n 1 3 @ #m %m 1 0 01954340 -order_apodes n 1 3 @ #m %m 1 0 02525866 -order_apodiformes n 1 3 @ #m %m 1 0 01831519 -order_apterygiformes n 1 3 @ #m %m 1 0 01520058 -order_arales n 1 3 @ #m %m 1 0 11778391 -order_araneae n 1 3 @ #m %m 1 0 01771966 -order_araneida n 1 3 @ #m %m 1 0 01771966 -order_aristolochiales n 1 3 @ #m %m 1 0 11800799 -order_arms n 1 2 @ #p 1 1 00895292 -order_artiodactyla n 1 3 @ #m %m 1 0 02394068 -order_aspergillales n 1 3 @ #m %m 1 0 13026763 -order_auriculariales n 1 2 @ #m 1 0 13061921 -order_batoidei n 1 3 @ #m %m 1 0 01496617 -order_batrachia n 1 3 @ #m %m 1 0 01639369 -order_belemnoidea n 1 3 @ #m %m 1 0 01973375 -order_bennettitales n 1 3 @ #m %m 1 0 11604225 -order_berycomorphi n 1 3 @ #m %m 1 0 01450081 -order_blastocladiales n 1 3 @ #m %m 1 0 12978381 -order_book n 2 1 @ 2 0 06485933 03853588 -order_branchiura n 1 3 @ #m %m 1 0 01997436 -order_bryales n 1 2 @ #m 1 0 11540000 -order_campanulales n 1 3 @ #m %m 1 0 11911274 -order_caprimulgiformes n 1 3 @ #m %m 1 0 01834702 -order_carnivora n 1 3 @ #m %m 1 0 02074915 -order_caryophyllales n 1 3 @ #m %m 1 0 11804082 -order_casuariiformes n 1 3 @ #m %m 1 0 01519046 -order_casuarinales n 1 3 @ #m %m 1 0 12224309 -order_caudata n 1 3 @ #m %m 1 0 01628450 -order_cestida n 1 3 @ #m %m 1 0 01920582 -order_cetacea n 1 3 @ #m %m 1 0 02062209 -order_charadriiformes n 1 3 @ #m %m 1 0 02021438 -order_charales n 1 3 @ #m %m 1 0 01412279 -order_chelonethida n 1 3 @ #m %m 1 0 01770553 -order_chelonia n 1 3 @ #m %m 1 0 01662274 -order_chiroptera n 1 3 @ #m %m 1 0 02138921 -order_chlorococcales n 1 3 @ #m %m 1 0 01410847 -order_chytridiales n 1 3 @ #m %m 1 0 12977795 -order_ciconiiformes n 1 3 @ #m %m 1 0 02001428 -order_cilioflagellata n 1 3 @ #m %m 1 0 01417041 -order_coccidia n 1 3 @ #m %m 1 0 01422835 -order_code n 1 1 @ 1 0 06358311 -order_coleoptera n 1 3 @ #m %m 1 0 02163982 -order_collembola n 1 3 @ #m %m 1 0 02163144 -order_columbiformes n 1 3 @ #m %m 1 0 01810466 -order_colymbiformes n 1 3 @ #m %m 1 0 02049299 -order_commelinales n 1 3 @ #m %m 1 0 12605019 -order_coniferales n 1 3 @ #m %m 1 0 11607392 -order_conodonta n 1 3 @ #m %m 1 0 01476135 -order_conodontophorida n 1 3 @ #m %m 1 0 01476135 -order_coraciiformes n 1 3 @ #m %m 1 0 01825417 -order_cordaitales n 1 3 @ #m %m 1 0 11606379 -order_corrodentia n 1 3 @ #m %m 1 0 02260183 -order_crocodilia n 1 3 @ #m %m 1 0 01696282 -order_crocodylia n 1 3 @ #m %m 1 0 01696282 -order_cuculiformes n 1 3 @ #m %m 1 0 01822423 -order_cycadales n 1 3 @ #m %m 1 0 11600139 -order_cycadofilicales n 1 3 @ #m %m 1 0 11604904 -order_cyclostomata n 1 3 @ #m %m 1 0 01476829 -order_cydippea n 1 2 @ #m 1 0 01919714 -order_cydippida n 1 2 @ #m 1 0 01919714 -order_cydippidea n 1 2 @ #m 1 0 01919714 -order_cypriniformes n 1 3 @ #m %m 1 0 01437805 -order_decapoda n 2 3 @ #m %m 2 0 01975880 01970866 -order_dermaptera n 1 3 @ #m %m 1 0 02272707 -order_dermoptera n 1 3 @ #m %m 1 0 02502085 -order_diapensiales n 1 2 @ #m 1 0 12250708 -order_dicranales n 1 3 @ #m %m 1 0 11540230 -order_dictyoptera n 1 3 @ #m %m 1 0 02232606 -order_dinocerata n 1 3 @ #m %m 1 0 02371471 -order_dinoflagellata n 1 3 @ #m %m 1 0 01417041 -order_dinornithiformes n 1 3 @ #m %m 1 0 01522594 -order_diptera n 1 3 @ #m %m 1 0 02188065 -order_discocephali n 1 3 @ #m %m 1 0 02574489 -order_ebenales n 1 3 @ #m %m 1 0 12769815 -order_edentata n 1 3 @ #m %m 1 0 02453373 -order_embiodea n 1 3 @ #m %m 1 0 02183353 -order_embioptera n 1 3 @ #m %m 1 0 02183353 -order_endomycetales n 1 3 @ #m %m 1 0 13024967 -order_entomophthorales n 1 3 @ #m %m 1 0 12974286 -order_ephemerida n 1 3 @ #m %m 1 0 02261883 -order_ephemeroptera n 1 3 @ #m %m 1 0 02261883 -order_equisetales n 1 3 @ #m %m 1 0 13218900 -order_ericales n 1 4 @ ~ #m %m 1 0 12226009 -order_erysiphales n 1 3 @ #m %m 1 0 12963140 -order_eubacteriales n 1 3 @ #m %m 1 0 01356086 -order_eubryales n 1 3 @ #m %m 1 0 11540747 -order_euphausiacea n 1 3 @ #m %m 1 0 01988481 -order_eurotiales n 1 3 @ #m %m 1 0 13026763 -order_eurypterida n 1 3 @ #m %m 1 0 01788420 -order_exocycloida n 1 3 @ #m %m 1 0 02319423 -order_fagales n 1 3 @ #m %m 1 0 12260021 -order_falconiformes n 1 3 @ #m %m 1 0 01604625 -order_filicales n 1 3 @ #m %m 1 0 13169674 -order_foraminifera n 1 3 @ #m %m 1 0 01392843 -order_form n 1 1 @ 1 0 06474030 -order_fucales n 1 3 @ #m %m 1 0 01403805 -order_gadiformes n 1 3 @ #m %m 1 0 02521241 -order_galliformes n 1 3 @ #m %m 1 0 01789064 -order_ganoidei n 1 3 @ #m %m 1 0 02638323 -order_gaviiformes n 1 3 @ #m %m 1 0 02048514 -order_gentianales n 1 3 @ #m %m 1 0 12289744 -order_geophilomorpha n 1 3 @ #m %m 1 0 01785831 -order_geraniales n 1 3 @ #m %m 1 0 12684640 -order_ginkgoales n 1 3 @ #m %m 1 0 11663813 -order_gnetales n 1 3 @ #m %m 1 0 11596845 -order_graminales n 1 3 @ #m %m 1 0 12100382 -order_gregarinida n 1 3 @ #m %m 1 0 01423464 -order_gruiformes n 1 3 @ #m %m 1 0 02012306 -order_guttiferales n 1 2 @ #m 1 0 12359578 -order_gymnophiona n 1 3 @ #m %m 1 0 01654957 -order_haemosporidia n 1 3 @ #m %m 1 0 01423757 -order_haplosporidia n 1 3 @ #m %m 1 0 01426466 -order_heliozoa n 1 3 @ #m %m 1 0 01390627 -order_helotiales n 1 3 @ #m %m 1 0 12967281 -order_hemiptera n 1 3 @ #m %m 1 0 02236495 -order_heterosomata n 1 3 @ #m %m 1 0 02657083 -order_heterotrichales n 1 3 @ #m %m 1 0 01401296 -order_hymenogastrales n 1 3 @ #m %m 1 0 12970872 -order_hymenoptera n 1 3 @ #m %m 1 0 02205896 -order_hypericales n 1 3 @ #m %m 1 0 12359026 -order_hypermastigina n 1 3 @ #m %m 1 0 01418794 -order_hypocreales n 1 2 @ #m 1 0 12965056 -order_hyracoidea n 1 3 @ #m %m 1 0 02372251 -order_ichthyosauria n 1 3 @ #m %m 1 0 01724055 -order_ictodosauria n 1 3 @ #m %m 1 0 01721404 -order_insectivora n 1 3 @ #m %m 1 0 01888520 -order_insessores n 1 2 @ #m 1 0 01523656 -order_isoetales n 1 3 @ #m %m 1 0 13225729 -order_isopoda n 1 3 @ #m %m 1 0 01990627 -order_isoptera n 1 3 @ #m %m 1 0 02222718 -order_isospondyli n 1 3 @ #m %m 1 0 02528534 -order_juglandales n 1 3 @ #m %m 1 0 12317763 -order_jungermanniales n 1 3 @ #m %m 1 0 11542920 -order_lagomorpha n 1 3 @ #m %m 1 0 02323186 -order_laminariales n 1 3 @ #m %m 1 0 01402831 -order_lechanorales n 1 2 @ #m 1 0 12987652 -order_lepidodendrales n 1 3 @ #m %m 1 0 13221807 -order_lepidoptera n 1 3 @ #m %m 1 0 02273545 -order_lichenales n 1 2 @ #m 1 0 12986858 -order_liliales n 1 3 @ #m %m 1 0 12410715 -order_lobata n 1 2 @ #m 1 0 01921216 -order_loricata n 1 1 @ 1 0 01696525 -order_lycoperdales n 1 3 @ #m %m 1 0 13043264 -order_lycopodiales n 1 3 @ #m %m 1 0 13222227 -order_lyginopteridales n 1 3 @ #m %m 1 0 11604904 -order_madreporaria n 1 3 @ #m %m 1 0 01916738 -order_mallophaga n 1 3 @ #m %m 1 0 02185337 -order_malvales n 1 3 @ #m %m 1 0 12169526 -order_mantophasmatodea n 1 2 @ #m 1 0 02161737 -order_marattiales n 1 3 @ #m %m 1 0 13214645 -order_marchantiales n 1 3 @ #m %m 1 0 11543429 -order_marsupialia n 1 3 @ #m %m 1 0 01874126 -order_mecoptera n 1 3 @ #m %m 1 0 02161944 -order_moniliales n 1 3 @ #m %m 1 0 13077479 -order_monotremata n 1 3 @ #m %m 1 0 01871699 -order_mucorales n 1 3 @ #m %m 1 0 12972818 -order_musales n 1 3 @ #m %m 1 0 12350234 -order_myaceae n 1 3 @ #m %m 1 0 01956924 -order_mycelia_sterilia n 1 3 @ #m %m 1 0 13082077 -order_mycoplasmatales n 1 3 @ #m %m 1 0 01373272 -order_mycrosporidia n 1 3 @ #m %m 1 0 01427241 -order_myricales n 1 3 @ #m %m 1 0 11740655 -order_myrtales n 1 3 @ #m %m 1 0 12322887 -order_mysidacea n 1 3 @ #m %m 1 0 01988971 -order_myxobacterales n 1 3 @ #m %m 1 0 01377906 -order_myxobacteria n 1 3 @ #m %m 1 0 01377906 -order_myxobacteriales n 1 3 @ #m %m 1 0 01377906 -order_myxosporidia n 1 3 @ #m %m 1 0 01427547 -order_naiadales n 1 3 @ #m %m 1 0 12610933 -order_neuroptera n 1 3 @ #m %m 1 0 02263038 -order_nidulariales n 1 3 @ #m %m 1 0 13046285 -order_notostraca n 1 3 @ #m %m 1 0 01995803 -order_nudibranchia n 1 3 @ #m %m 1 0 01950457 -order_octopoda n 1 3 @ #m %m 1 0 01969550 -order_odonata n 1 3 @ #m %m 1 0 02267975 -order_oedogoniales n 1 3 @ #m %m 1 0 01411556 -order_of_business n 1 3 @ ~ %p 1 0 06485261 -order_of_magnitude n 2 1 @ 2 1 05091316 13823651 -order_of_our_lady_of_mount_carmel n 1 2 @ %m 1 0 08148827 -order_of_payment n 1 2 @ ~ 1 0 13377268 -order_of_saint_benedict n 1 2 @ %m 1 0 08148601 -order_of_the_day n 1 2 @ ~ 1 0 06485800 -order_of_the_purple_heart n 1 1 @ 1 0 06708475 -order_oleales n 1 2 @ #m 1 0 12300441 -order_ophioglossales n 1 3 @ #m %m 1 0 12959802 -order_opiliones n 1 3 @ #m %m 1 0 01769635 -order_opuntiales n 1 3 @ #m %m 1 0 11841368 -order_orchidales n 1 3 @ #m %m 1 0 12039524 -order_ornithischia n 1 3 @ #m %m 1 0 01700076 -order_orthoptera n 1 3 @ #m %m 1 0 02225959 -order_ostariophysi n 1 1 @ 1 0 01429172 -order_osteoglossiformes n 1 3 @ #m %m 1 0 02544596 -order_ostracodermi n 1 3 @ #m %m 1 0 01474641 -order_palmales n 1 3 @ #m %m 1 0 12581230 -order_pandanales n 1 3 @ #m %m 1 0 12154228 -order_papaverales n 1 3 @ #m %m 1 0 11864364 -order_paper n 1 1 @ 1 0 06485933 -order_parietales n 1 3 @ #m %m 1 0 12359026 -order_passeriformes n 1 3 @ #m %m 1 0 01523908 -order_pectinibranchia n 1 3 @ #m %m 1 0 01952812 -order_pediculati n 1 3 @ #m %m 1 0 02547213 -order_pedipalpi n 1 3 @ #m %m 1 0 01771246 -order_pelecaniformes n 1 3 @ #m %m 1 0 02051213 -order_pelycosauria n 1 3 @ #m %m 1 0 01721718 -order_perciformes n 1 3 @ #m %m 1 0 02553196 -order_percomorphi n 1 3 @ #m %m 1 0 02553196 -order_perissodactyla n 1 3 @ #m %m 1 0 02373093 -order_peronosporales n 1 3 @ #m %m 1 0 12980231 -order_pezizales n 1 3 @ #m %m 1 0 13029946 -order_phalangida n 1 3 @ #m %m 1 0 01769635 -order_phallales n 1 3 @ #m %m 1 0 13039553 -order_phasmatodea n 1 3 @ #m %m 1 0 02230782 -order_phasmida n 1 3 @ #m %m 1 0 02230782 -order_pholidota n 1 3 @ #m %m 1 0 02461372 -order_picariae n 1 2 @ #m 1 0 01825758 -order_piciformes n 1 3 @ #m %m 1 0 01837746 -order_piperales n 1 3 @ #m %m 1 0 13148602 -order_plantaginales n 1 3 @ #m %m 1 0 12598247 -order_platyctenea n 1 3 @ #m %m 1 0 01919912 -order_plecoptera n 1 3 @ #m %m 1 0 02262679 -order_plectognathi n 1 3 @ #m %m 1 0 02652335 -order_pleuronectiformes n 1 3 @ #m %m 1 0 02657083 -order_plumbaginales n 1 2 @ #m 1 0 12097746 -order_podicipediformes n 1 3 @ #m %m 1 0 02049299 -order_podicipitiformes n 1 3 @ #m %m 1 0 02049299 -order_polemoniales n 1 3 @ #m %m 1 0 12808227 -order_polygonales n 1 3 @ #m %m 1 0 12600417 -order_polymastigina n 1 3 @ #m %m 1 0 01419082 -order_polypodiales n 1 3 @ #m %m 1 0 13169674 -order_primates n 1 3 @ #m %m 1 0 02469588 -order_primulales n 1 3 @ #m %m 1 0 12090041 -order_proboscidea n 1 3 @ #m %m 1 0 02502902 -order_procellariiformes n 1 3 @ #m %m 1 0 02057478 -order_proteales n 1 3 @ #m %m 1 0 12213485 -order_protura n 1 3 @ #m %m 1 0 02163616 -order_pseudomonadales n 1 3 @ #m %m 1 0 01360330 -order_pseudoscorpiones n 1 3 @ #m %m 1 0 01770553 -order_pseudoscorpionida n 1 3 @ #m %m 1 0 01770553 -order_psilophytales n 1 3 @ #m %m 1 0 13217213 -order_psilotales n 1 3 @ #m %m 1 0 13216238 -order_psittaciformes n 1 3 @ #m %m 1 0 01816635 -order_psocoptera n 1 3 @ #m %m 1 0 02260183 -order_pterosauria n 1 3 @ #m %m 1 0 01722828 -order_pulmonata n 1 3 @ #m %m 1 0 01952162 -order_pycnogonida n 1 3 @ #m %m 1 0 01786879 -order_radiolaria n 1 3 @ #m %m 1 0 01390899 -order_rajiformes n 1 3 @ #m %m 1 0 01496617 -order_ranales n 1 3 @ #m %m 1 0 11692952 -order_ranunculales n 1 3 @ #m %m 1 0 11692952 -order_raptores n 1 2 @ #m 1 0 01604123 -order_rhamnales n 1 3 @ #m %m 1 0 13140535 -order_rheiformes n 1 3 @ #m %m 1 0 01520789 -order_rhoeadales n 1 3 @ #m %m 1 0 11864364 -order_rhynchocephalia n 1 3 @ #m %m 1 0 01672950 -order_rickettsiales n 1 3 @ #m %m 1 0 01370913 -order_rodentia n 1 3 @ #m %m 1 0 02329093 -order_rosales n 1 3 @ #m %m 1 0 12618942 -order_rubiales n 1 3 @ #m %m 1 0 12659730 -order_salicales n 1 3 @ #m %m 1 0 12723835 -order_salientia n 1 3 @ #m %m 1 0 01639369 -order_santalales n 1 3 @ #m %m 1 0 12734446 -order_sapindales n 1 3 @ #m %m 1 0 12740196 -order_saprolegniales n 1 3 @ #m %m 1 0 12979478 -order_sarcosporidia n 1 3 @ #m %m 1 0 01425983 -order_sarraceniales n 1 3 @ #m %m 1 0 12778926 -order_saurischia n 1 3 @ #m %m 1 0 01707895 -order_sauropterygia n 1 3 @ #m %m 1 0 01725240 -order_scandentia n 1 3 @ #m %m 1 0 02494538 -order_sclerodermatales n 1 3 @ #m %m 1 0 12968408 -order_scleroparei n 1 3 @ #m %m 1 0 02641608 -order_scorpionida n 1 3 @ #m %m 1 0 01770263 -order_scrophulariales n 1 2 @ #m 1 0 12808751 -order_secotiales n 1 3 @ #m %m 1 0 13047216 -order_selaginellales n 1 3 @ #m %m 1 0 13224086 -order_siluriformes n 1 3 @ #m %m 1 0 02517169 -order_siphonaptera n 1 3 @ #m %m 1 0 02185973 -order_siphonophora n 1 3 @ #m %m 1 0 01912272 -order_sirenia n 1 3 @ #m %m 1 0 02073041 -order_solenichthyes n 1 3 @ #m %m 1 0 01453852 -order_solenogastres n 1 3 @ #m %m 1 0 01954340 -order_spatangoida n 1 3 @ #m %m 1 0 02319689 -order_sphaeriales n 1 3 @ #m %m 1 0 12963796 -order_sphaerocarpales n 1 3 @ #m %m 1 0 11544131 -order_sphagnales n 1 3 @ #m %m 1 0 11541713 -order_sphenisciformes n 1 3 @ #m %m 1 0 02055280 -order_spirochaetales n 1 3 @ #m %m 1 0 01381399 -order_squamata n 1 3 @ #m %m 1 0 01673503 -order_stegocephalia n 1 2 @ #m 1 0 01656340 -order_stereospondyli n 1 2 @ #m 1 0 01656078 -order_stomatopoda n 1 3 @ #m %m 1 0 01989701 -order_strigiformes n 1 3 @ #m %m 1 0 01620967 -order_struthioniformes n 1 3 @ #m %m 1 0 01518347 -order_synentognathi n 1 3 @ #m %m 1 0 02549533 -order_taxales n 1 2 @ #m 1 0 11660848 -order_temnospondyli n 1 2 @ #m 1 0 01656576 -order_testacea n 1 3 @ #m %m 1 0 01393873 -order_testudinata n 1 3 @ #m %m 1 0 01662274 -order_testudines n 1 3 @ #m %m 1 0 01662274 -order_tetraodontiformes n 1 3 @ #m %m 1 0 02652335 -order_thecodontia n 1 3 @ #m %m 1 0 01723678 -order_therapsida n 1 3 @ #m %m 1 0 01719645 -order_thymelaeales n 1 3 @ #m %m 1 0 12322887 -order_thysanoptera n 1 3 @ #m %m 1 0 02271427 -order_thysanura n 1 3 @ #m %m 1 0 02269829 -order_tinamiformes n 1 3 @ #m %m 1 0 01809977 -order_torpediniformes n 1 3 @ #m %m 1 0 01496037 -order_tremellales n 1 3 @ #m %m 1 0 13060451 -order_trichoptera n 1 3 @ #m %m 1 0 02269015 -order_trogoniformes n 1 3 @ #m %m 1 0 01843805 -order_tuberales n 1 3 @ #m %m 1 0 12984802 -order_tubulidentata n 1 3 @ #m %m 1 0 02082358 -order_tulostomatales n 1 3 @ #m %m 1 0 13041548 -order_ulvales n 1 3 @ #m %m 1 0 01408253 -order_umbellales n 1 3 @ #m %m 1 0 12213197 -order_uredinales n 1 3 @ #m %m 1 0 13063046 -order_urodella n 1 3 @ #m %m 1 0 01628450 -order_uropygi n 1 3 @ #m %m 1 0 01771246 -order_urticales n 1 3 @ #m %m 1 0 12391477 -order_ustilaginales n 1 3 @ #m %m 1 0 13065902 -order_volvocales n 1 3 @ #m %m 1 0 01408880 -order_xiphosura n 1 3 @ #m %m 1 0 01787401 -order_xyridales n 1 3 @ #m %m 1 0 12605019 -order_zeomorphi n 1 3 @ #m %m 1 0 01452496 -order_zygnemales n 1 3 @ #m %m 1 0 01409940 -order_zygnematales n 1 3 @ #m %m 1 0 01409940 -ordered_series n 1 2 @ ~ 1 0 13850304 -orderer n 2 2 @ + 2 0 10381698 10381369 -ordering n 2 3 @ ~ + 2 2 08456993 01009871 -orderliness n 2 4 ! @ ~ + 2 1 04768483 14496710 -orderly n 2 1 @ 2 1 10381981 10381804 -orderly_sergeant n 1 1 @ 1 1 10382157 -ordinal n 1 3 @ ~ + 1 0 13597280 -ordinal_number n 1 2 @ ~ 1 0 13597280 -ordinance n 3 5 @ ~ #p + ; 3 1 06664051 06565788 00165298 -ordinand n 1 1 @ 1 0 10382302 -ordinariness n 1 5 ! @ ~ = + 1 0 04794751 -ordinary n 5 3 @ ~ ; 5 2 10382380 13942743 10382480 03853924 03853734 -ordinary_annuity n 1 1 @ 1 0 13295025 -ordinary_bicycle n 1 1 @ 1 0 03853924 -ordinary_care n 1 1 @ 1 0 01131794 -ordinary_life_insurance n 1 1 @ 1 0 13347947 -ordinary_shares n 1 2 @ ~ 1 0 13335172 -ordinate n 1 1 @ 1 1 06011692 -ordination n 3 3 @ ~ #p 3 0 14432167 08456993 00165298 -ordnance n 2 4 @ ~ #p %p 2 0 03799610 02746365 -ordnance_store n 1 1 @ 1 0 03799610 -ordnance_survey n 1 2 @ ; 1 0 08153874 -ordovician n 1 2 @ #p 1 0 15128363 -ordovician_period n 1 2 @ #p 1 0 15128363 -ordure n 1 2 @ ~ 1 0 14854262 -ore n 2 3 @ ~ #p 2 1 14688500 13682450 -ore_bed n 1 1 @ 1 0 09379868 -ore_dressing n 1 2 @ - 1 0 13516312 -ore_processing n 1 2 @ - 1 0 13516312 -oread n 1 2 @ ; 1 0 09549643 -oreamnos n 1 3 @ #m %m 1 0 02418341 -oreamnos_americanus n 1 2 @ #m 1 0 02418465 -orectolobidae n 1 3 @ #m %m 1 0 01486241 -orectolobus n 1 3 @ #m %m 1 0 01486411 -orectolobus_barbatus n 1 2 @ #m 1 0 01486540 -oregano n 2 4 @ #m #p %p 2 0 12853287 07818995 -oregon n 1 3 @ #p %p 1 1 09133010 -oregon_alder n 1 2 @ #m 1 0 12285512 -oregon_ash n 1 1 @ 1 0 12304899 -oregon_cedar n 1 3 @ #m %s 1 0 11635433 -oregon_crab_apple n 1 1 @ 1 0 12635359 -oregon_fir n 1 1 @ 1 0 11628793 -oregon_grape n 2 1 @ 2 0 11699751 11699442 -oregon_holly_grape n 1 1 @ 1 0 11699442 -oregon_jargon n 1 1 @ 1 0 06905828 -oregon_larch n 1 1 @ 1 0 11619455 -oregon_lily n 1 1 @ 1 0 12427391 -oregon_maple n 1 1 @ 1 0 12754003 -oregon_myrtle n 1 2 @ #m 1 0 11707827 -oregon_oak n 1 1 @ 1 0 12272239 -oregon_pine n 1 1 @ 1 0 11628793 -oregon_white_oak n 1 1 @ 1 0 12272239 -oregonian n 1 1 @ 1 0 09745229 -oreide n 1 1 @ 1 0 14688705 -oreo n 1 1 @ 1 0 07637292 -oreo_cookie n 1 1 @ 1 0 07637292 -oreopteris n 1 3 @ #m %m 1 0 13229358 -oreopteris_limbosperma n 1 2 @ #m 1 0 13229543 -oreortyx n 1 3 @ #m %m 1 0 01808447 -oreortyx_picta_palmeri n 1 2 @ #m 1 0 01808596 -orestes n 1 2 @ ; 1 0 09595957 -orff n 1 1 @ 1 0 11216386 -organ n 6 5 @ ~ %p + ; 6 3 05297523 08349350 03273551 06595056 03854065 03494537 -organ-grinder n 1 1 @ 1 0 10382710 -organ_donor n 1 1 @ 1 0 10382597 -organ_loft n 1 1 @ 1 0 03854722 -organ_of_corti n 1 3 @ #p %p 1 0 05322855 -organ_of_hearing n 1 3 @ ~ #p 1 0 05321144 -organ_of_speech n 1 2 @ ~ 1 0 05305614 -organ_pipe n 1 3 @ ~ #p 1 0 03854815 -organ_stop n 1 2 @ ~ 1 0 03854998 -organ_transplant n 1 2 @ ~ 1 0 00693679 -organdie n 1 1 @ 1 0 03854421 -organdy n 1 1 @ 1 0 03854421 -organelle n 1 3 @ ~ #p 1 0 05445668 -organic n 1 3 @ ~ + 1 0 14859838 -organic_brain_syndrome n 1 1 @ 1 0 14200548 -organic_chemistry n 1 3 @ ~ ; 1 0 06088995 -organic_compound n 1 2 @ ~ 1 0 14727670 -organic_disorder n 1 2 ! @ 1 0 14053558 -organic_evolution n 1 4 @ ~ ; - 1 0 13477023 -organic_fertiliser n 1 2 @ ~ 1 0 14859838 -organic_fertilizer n 1 2 @ ~ 1 0 14859838 -organic_law n 1 3 @ ~ ; 1 0 06533648 -organic_light-emitting_diode n 1 1 @ 1 0 03854506 -organic_phenomenon n 1 3 @ ~ ; 1 0 11418750 -organic_process n 1 2 @ ~ 1 0 13526110 -organic_structure n 1 4 @ ~ %p ; 1 0 05216365 -organicism n 1 3 @ + ; 1 0 05994706 -organification n 1 1 @ 1 1 13527726 -organisation n 7 6 @ ~ #p %m %p + 7 0 08164585 08008335 05726596 04768657 01136519 01008378 00237078 -organiser n 3 2 @ ~ 3 0 10383505 10383237 03918737 -organism n 2 6 @ ~ %s %p + - 2 1 00004475 08436036 -organist n 1 3 @ ~ + 1 0 10382825 -organization n 7 6 @ ~ #p %m %p + 7 4 08008335 05726596 08164585 01136519 04768657 01008378 00237078 -organization_chart n 1 1 @ 1 0 07001294 -organization_expense n 1 1 @ 1 0 13277492 -organization_for_the_prohibition_of_chemical_weapons n 1 1 @ 1 0 08175875 -organization_man n 1 1 @ 1 0 10383094 -organization_of_american_states n 1 2 @ %m 1 0 08176077 -organization_of_petroleum-exporting_countries n 1 2 @ %m 1 0 08177030 -organization_of_the_oppressed_on_earth n 1 2 @ ; 1 0 08023374 -organized_crime n 1 4 @ ~ #m %m 1 0 08245172 -organized_labor n 1 1 @ 1 0 08181267 -organized_religion n 1 3 @ ~ - 1 0 08081668 -organizer n 3 3 @ ~ + 3 1 10383237 10383505 03918737 -organon n 1 1 @ 1 0 05664986 -organophosphate n 1 2 @ ~ 1 0 14969994 -organophosphate_nerve_agent n 1 2 @ ~ 1 0 14970136 -organs n 1 2 @ ~ 1 0 07651454 -organza n 1 1 @ 1 0 03855214 -orgasm n 1 2 @ ~ 1 0 00062133 -orgy n 3 2 @ + 3 2 01073824 01030280 00511212 -oriel n 1 1 @ 1 0 03855333 -oriel_window n 1 1 @ 1 0 03855333 -orient n 2 4 @ %p = + 2 1 08562620 08562243 -oriental n 1 5 @ ~ #m + ; 1 0 09643078 -oriental_alabaster n 1 1 @ 1 0 14665469 -oriental_arborvitae n 1 2 @ #m 1 0 11644462 -oriental_beetle n 1 2 @ #m 1 0 02173784 -oriental_bittersweet n 1 2 @ #m 1 0 12748534 -oriental_black_mushroom n 1 2 @ #m 1 0 13001930 -oriental_bush_cherry n 1 1 @ 1 0 12646740 -oriental_cherry n 1 1 @ 1 0 12649317 -oriental_cockroach n 1 2 @ #m 1 0 02233943 -oriental_garlic n 1 2 @ %p 1 0 12435777 -oriental_person n 1 4 @ ~ #m ; 1 0 09643078 -oriental_plane n 1 2 @ #m 1 0 12807624 -oriental_poppy n 1 2 @ #m 1 0 11901977 -oriental_roach n 1 2 @ #m 1 0 02233943 -oriental_scops_owl n 1 1 @ 1 0 01624212 -oriental_sore n 1 1 @ 1 0 14181187 -oriental_spruce n 1 1 @ 1 0 11626409 -oriental_studies n 1 1 @ 1 0 06158185 -orientalism n 2 2 @ + 2 0 06158185 05168063 -orientalist n 1 2 @ + 1 0 10383689 -orientation n 6 3 @ ~ = 6 2 01052372 06208021 13828075 06200344 05676755 00891512 -orientation_course n 1 1 @ 1 0 00891512 -orifice n 1 2 @ ~ 1 1 05249636 -oriflamme n 2 2 @ ; 2 0 06809291 03855464 -origami n 1 2 @ ; 1 0 00936456 -origanum n 1 3 @ ~ #m 1 0 12853080 -origanum_dictamnus n 1 2 @ #m 1 0 12853706 -origanum_majorana n 1 2 @ #m 1 0 12853482 -origanum_vulgare n 1 3 @ #m %p 1 0 12853287 -origen n 1 1 @ 1 0 11216562 -origin n 6 3 @ ~ + 6 4 08507558 04923743 07323922 06009086 13559177 08101937 -original n 2 2 @ + 2 2 03727274 05938400 -original_sin n 1 2 ! @ 1 1 00757483 -originalism n 1 1 @ 1 0 05946234 -originality n 2 5 ! @ ~ = + 2 2 05634613 04800359 -origination n 2 3 @ ~ + 2 0 07323922 00240184 -origination_fee n 1 1 @ 1 0 13322938 -originator n 1 3 @ ~ + 1 0 10383816 -orinasal n 1 1 @ 1 0 07119358 -orinasal_phone n 1 1 @ 1 0 07119358 -orinase n 1 2 @ ; 1 0 04448826 -orinoco n 1 2 @ #p 1 1 09379938 -orinoco_river n 1 2 @ #p 1 0 09379938 -oriole n 2 3 @ ~ #m 2 0 01575745 01571904 -oriolidae n 1 3 @ #m %m 1 0 01575577 -oriolus n 1 3 @ #m %m 1 0 01575941 -oriolus_oriolus n 1 2 @ #m 1 0 01576076 -orion n 2 3 @ %m ; 2 0 09571693 09380117 -orison n 1 2 @ ~ 1 0 07189130 -orissa n 1 2 @ #p 1 0 08906053 -orites n 1 3 @ #m %m 1 0 12221943 -orites_excelsa n 1 2 @ #m 1 0 12222090 -oriya n 2 1 @ 2 0 09676127 06971123 -orizaba n 1 2 @ #p 1 0 08744871 -orkney_islands n 1 2 @ #p 1 0 08953829 -orlando n 1 3 @ #p %p 1 0 09074140 -orlando_di_lasso n 1 1 @ 1 0 11118362 -orleanais n 1 2 @ #p 1 0 08944818 -orleanism n 1 1 @ 1 0 06219613 -orleanist n 1 1 @ 1 0 10384054 -orleans n 2 3 @ #p ; 2 0 08937414 01289830 -orlon n 1 2 @ ; 1 0 03855756 -orlop n 1 1 @ 1 0 03855908 -orlop_deck n 1 1 @ 1 0 03855908 -orly n 1 2 @ #p 1 0 08933621 -orly_group n 1 2 @ ; 1 0 08016385 -ormandy n 1 1 @ 1 0 11216797 -ormazd n 1 1 @ 1 0 09531955 -ormer n 1 1 @ 1 0 01943087 -ormolu n 1 1 @ 1 0 14970538 -ormosia n 1 3 @ #m %m 1 0 12553314 -ormosia_coarctata n 1 2 @ #m 1 0 12554029 -ormosia_monosperma n 1 2 @ #m 1 0 12553742 -ormuzd n 1 1 @ 1 0 09531955 -ornament n 1 3 @ ~ + 1 1 03169390 -ornamental n 1 3 @ ~ + 1 0 11536087 -ornamentalism n 1 2 @ + 1 0 00412727 -ornamentalist n 1 2 @ + 1 0 09998907 -ornamentation n 3 3 @ ~ + 3 0 13920322 03169390 00262743 -ornateness n 2 3 @ ~ + 2 0 07070429 04698112 -orneriness n 1 2 @ + 1 0 04909270 -ornithine n 1 1 @ 1 0 14607378 -ornithischia n 1 3 @ #m %m 1 0 01700076 -ornithischian n 1 3 @ ~ #m 1 0 01700470 -ornithischian_dinosaur n 1 3 @ ~ #m 1 0 01700470 -ornithogalum n 1 3 @ #m %m 1 0 12459471 -ornithogalum_pyrenaicum n 1 1 @ 1 0 12460146 -ornithogalum_thyrsoides n 1 1 @ 1 0 12460308 -ornithogalum_umbellatum n 1 1 @ 1 0 12459882 -ornithologist n 1 3 @ ~ + 1 0 10384214 -ornithology n 1 3 @ + - 1 0 06073494 -ornithomimid n 1 3 @ ~ #m 1 0 01715888 -ornithomimida n 1 3 @ #m %m 1 0 01715692 -ornithopod n 1 2 @ #m 1 0 01705591 -ornithopod_dinosaur n 1 2 @ #m 1 0 01705591 -ornithopoda n 1 3 @ #m %m 1 0 01705247 -ornithopter n 1 1 @ 1 0 03857156 -ornithorhynchidae n 1 3 @ #m %m 1 0 01873007 -ornithorhynchus n 1 3 @ #m %m 1 0 01873144 -ornithorhynchus_anatinus n 1 2 @ #m 1 0 01873310 -ornithosis n 1 1 @ 1 0 14149773 -orobanchaceae n 1 2 @ #m 1 0 12874231 -orogeny n 1 1 @ 1 0 13527817 -orography n 1 1 @ 1 0 06118146 -oroide n 1 1 @ 1 0 14688705 -orology n 1 1 @ 1 0 06118146 -orono n 1 2 @ #p 1 0 09093315 -orontium n 1 3 @ #m %m 1 0 11790239 -orontium_aquaticum n 1 2 @ #m 1 0 11790390 -oropharynx n 1 3 @ #p + 1 0 05529012 -orozco n 1 1 @ 1 0 11216922 -orphan n 4 2 @ + 4 1 10384392 10384496 07013269 01321770 -orphan_site n 1 1 @ 1 0 08661697 -orphanage n 2 2 @ + 2 0 14571181 03856012 -orphanhood n 1 1 @ 1 0 14571181 -orphans'_asylum n 1 1 @ 1 0 03856012 -orphenadrine n 1 1 @ 1 0 03856148 -orpheus n 1 3 @ + ; 1 0 09571914 -orphrey n 1 2 @ #p 1 0 03856335 -orpiment n 1 2 @ %s 1 0 14688831 -orpin n 1 2 @ #m 1 0 12786464 -orpine n 1 2 @ #m 1 0 12786464 -orpington n 1 1 @ 1 0 01793715 -orr n 1 1 @ 1 0 11217072 -orrery n 1 1 @ 1 0 03856465 -orris n 2 3 @ #m %m 2 0 12413419 12412987 -orrisroot n 1 2 @ #m 1 0 12412987 -orson_welles n 1 1 @ 1 0 11380768 -ortalis n 1 3 @ #m %m 1 0 01800286 -ortega n 1 1 @ 1 0 11217182 -ortega_y_gasset n 1 1 @ 1 0 11217312 -orthicon n 1 1 @ 1 1 03856728 -orthilia n 1 2 @ #m 1 0 12257140 -orthoboric_acid n 1 1 @ 1 0 14783808 -orthochorea n 1 1 @ 1 0 14095439 -orthochromatic_film n 1 1 @ 1 0 03857026 -orthoclase n 1 1 @ 1 0 14865221 -orthodontia n 1 2 @ + 1 0 06048552 -orthodontic_braces n 1 1 @ 1 0 02887079 -orthodontic_treatment n 1 1 @ 1 0 00708676 -orthodontics n 1 2 @ + 1 0 06048552 -orthodontist n 1 2 @ + 1 0 10384610 -orthodonture n 1 2 @ + 1 0 06048552 -orthodox_catholic_church n 1 3 @ ~ - 1 1 08086356 -orthodox_church n 1 3 @ ~ - 1 1 08086356 -orthodox_jew n 1 3 @ ~ #m 1 0 10384772 -orthodox_judaism n 2 3 @ ~ %m 2 0 08094659 06234104 -orthodox_sleep n 1 1 @ 1 0 14025478 -orthodoxy n 2 5 ! @ ~ = ; 2 1 04801313 06211811 -orthoepist n 1 1 @ 1 0 10384935 -orthoepy n 2 2 @ ~ 2 0 07128692 06176837 -orthogonal_opposition n 1 1 @ 1 0 13829047 -orthogonality n 2 2 @ + 2 0 13829047 05072078 -orthography n 1 5 @ ~ %m %p + 1 1 06351202 -orthomorphic_projection n 1 1 @ 1 0 03090437 -orthomyxovirus n 1 1 @ 1 0 01337078 -orthopaedics n 1 3 @ + - 1 0 06064106 -orthopaedist n 1 2 @ + 1 0 10385159 -orthopedics n 1 3 @ + - 1 0 06064106 -orthopedist n 1 2 @ + 1 0 10385159 -orthophosphate n 1 2 @ ~ 1 1 14982265 -orthophosphoric_acid n 1 1 @ 1 0 14982907 -orthophosphorous_acid n 1 1 @ 1 0 14614594 -orthopnea n 1 1 @ 1 0 14369913 -orthopristis n 1 3 @ #m %m 1 0 02589955 -orthopristis_chrysopterus n 1 2 @ #m 1 0 02590094 -orthopter n 1 1 @ 1 0 03857156 -orthoptera n 1 3 @ #m %m 1 0 02225959 -orthopteran n 1 3 @ ~ #m 1 0 02226183 -orthopteron n 1 3 @ ~ #m 1 0 02226183 -orthopterous_insect n 1 3 @ ~ #m 1 0 02226183 -orthoptics n 1 2 @ + 1 0 00708957 -orthoptist n 1 2 @ + 1 0 10385354 -orthoscope n 1 1 @ 1 0 03857291 -orthostatic_hypotension n 1 1 @ 1 0 14104367 -orthotomus n 1 3 @ #m %m 1 0 01566082 -orthotomus_sutorius n 1 2 @ #m 1 0 01566207 -orthotropous_ovule n 1 1 @ 1 0 11679909 -ortilis_vetula_macalli n 1 2 @ #m 1 0 01800633 -ortolan n 1 2 @ #m 1 0 01537895 -ortolan_bunting n 1 2 @ #m 1 0 01537895 -ortygan n 1 2 @ #m 1 0 02020345 -orudis n 1 3 @ %s ; 1 0 03612134 -orudis_kt n 1 3 @ %s ; 1 0 03612134 -orumiyeh n 1 2 @ #p 1 0 08912559 -oruvail n 1 3 @ %s ; 1 0 03612134 -orville_wright n 1 1 @ 1 0 11398611 -orwell n 1 2 @ + 1 0 11217479 -orycteropodidae n 1 3 @ #m %m 1 0 02082498 -orycteropus n 1 3 @ #m %m 1 0 02082632 -orycteropus_afer n 1 2 @ #m 1 0 02082791 -oryctolagus n 1 3 @ #m %m 1 0 02324717 -oryctolagus_cuniculus n 1 3 @ #m %p 1 0 02324850 -oryx n 1 3 @ ~ #m 1 0 02428349 -oryx_gazella n 1 1 @ 1 0 02428508 -oryza n 1 3 @ #m %m 1 0 12125782 -oryza_sativa n 1 2 @ %p 1 0 12126084 -oryzomys n 1 3 @ #m %m 1 0 02340521 -oryzomys_palustris n 1 2 @ #m 1 0 02340640 -oryzopsis n 1 3 @ #m %m 1 0 12126238 -oryzopsis_hymenoides n 1 1 @ 1 0 12126516 -oryzopsis_miliacea n 1 1 @ 1 0 12126736 -orzo n 1 1 @ 1 0 07699682 -os n 5 7 @ ~ #s #p %s %p ; 5 1 05302422 14647907 06568134 05312227 05269901 -os_breve n 1 1 @ 1 0 05280698 -os_capitatum n 1 1 @ 1 0 05273223 -os_frontale n 1 3 @ #p %p 1 0 05541231 -os_hamatum n 1 1 @ 1 0 05273408 -os_hyoideum n 1 1 @ 1 0 05275162 -os_ischii n 1 2 @ #p 1 0 05275466 -os_longum n 1 3 @ ~ %p 1 0 05275651 -os_lunatum n 1 1 @ 1 0 05272423 -os_nasale n 1 3 @ #p %p 1 0 05277532 -os_palatinum n 1 1 @ 1 0 05278152 -os_pisiforme n 1 1 @ 1 0 05272745 -os_pubis n 1 2 @ #p 1 0 05278714 -os_scaphoideum n 1 1 @ 1 0 05272276 -os_sesamoideum n 1 2 @ ~ 1 0 05280512 -os_sphenoidale n 1 3 @ #p %p 1 0 05280998 -os_tarsi_fibulare n 1 2 @ #p 1 0 05274808 -os_temporale n 1 3 @ #p %p 1 0 05282000 -os_trapezium n 1 1 @ 1 0 05272891 -os_trapezoideum n 1 1 @ 1 0 05273073 -os_triquetrum n 1 1 @ 1 0 05272545 -os_zygomaticum n 1 3 @ #p %p 1 0 05273822 -osage n 3 2 @ #p 3 0 09663786 09380299 06911575 -osage_orange n 1 1 @ 1 0 12399899 -osage_river n 1 2 @ #p 1 0 09380299 -osaka n 1 3 @ #p %p 1 0 08924023 -osaka_bay n 1 2 @ #p 1 0 09380446 -osama_bin_laden n 1 1 @ 1 0 10851452 -osasco n 1 1 @ 1 0 08856162 -osborne n 1 1 @ 1 0 11217668 -oscan n 2 2 @ #m 2 0 09717789 06962350 -oscar n 1 1 @ 1 0 07268967 -oscar_fingal_o'flahertie_wills_wilde n 1 1 @ 1 0 11386346 -oscar_hammerstein n 1 1 @ 1 0 11026597 -oscar_hammerstein_ii n 1 1 @ 1 0 11026597 -oscar_palmer_robertson n 1 1 @ 1 0 11264828 -oscar_robertson n 1 1 @ 1 0 11264828 -oscar_wilde n 1 1 @ 1 0 11386346 -oscheocele n 1 1 @ 1 0 14318116 -oscheocoele n 1 1 @ 1 0 14318116 -oscillation n 3 4 @ ~ + ; 3 2 13527965 07345166 07341038 -oscillator n 1 2 @ ~ 1 1 03857430 -oscillatoriaceae n 1 3 @ #m %m 1 0 01359488 -oscillogram n 1 1 @ 1 0 03857588 -oscillograph n 1 1 @ 1 0 03857687 -oscilloscope n 1 3 @ #p %p 1 0 03857828 -oscine n 1 4 @ ~ #m + 1 0 01525720 -oscine_bird n 1 3 @ ~ #m 1 0 01525720 -oscines n 1 3 @ #m %m 1 0 01524885 -oscitance n 2 2 @ ~ 2 0 14030671 00837293 -oscitancy n 2 3 @ ~ + 2 0 14030671 00837293 -osco-umbrian n 1 2 @ ~ 1 0 06962060 -osculating_circle n 1 1 @ 1 0 05102889 -osculation n 2 4 @ ~ + ; 2 0 14419889 00138221 -osculator n 1 2 @ + 1 0 10237196 -osha n 1 2 @ #p 1 0 08349138 -osier n 2 3 @ ~ #m 2 0 13164501 12725521 -osip_emilevich_mandelstam n 1 1 @ 1 0 11153615 -osip_mandelstam n 1 1 @ 1 0 11153615 -osiris n 1 1 @ 1 0 09512913 -oslo n 1 2 @ #p 1 0 08765069 -osman_i n 1 1 @ 1 0 11217789 -osmanli n 1 1 @ 1 0 09735113 -osmanthus n 1 3 @ #m %m 1 0 12309403 -osmanthus_americanus n 1 2 @ #m 1 0 12309630 -osmeridae n 1 3 @ #m %m 1 0 02540255 -osmerus n 1 3 @ #m %m 1 0 02540637 -osmerus_eperlanus n 1 3 @ #m %p 1 0 02540983 -osmerus_mordax n 1 3 @ #m %p 1 0 02540791 -osmiridium n 1 1 @ 1 0 14688978 -osmitrol n 1 2 @ ; 1 0 03718056 -osmium n 1 1 @ 1 0 14647907 -osmoreceptor n 1 1 @ 1 0 05466575 -osmosis n 1 5 @ ~ #p + ; 1 0 13528100 -osmotic_pressure n 1 3 @ ~ ; 1 1 11496881 -osmund n 1 3 @ ~ #m 1 0 12953206 -osmunda_cinnamonea n 1 1 @ 1 0 12953919 -osmunda_clatonia n 1 1 @ 1 0 12953712 -osmunda_regalis n 1 1 @ 1 0 12953484 -osmundaceae n 1 3 @ #m %m 1 0 12952852 -osprey n 1 2 @ #m 1 0 01616086 -osseous_labyrinth n 1 2 @ #p 1 0 05321917 -osseous_tissue n 1 2 @ #s 1 0 14757848 -ossete n 1 1 @ 1 0 06975368 -ossicle n 1 4 @ ~ #p + 1 0 05277728 -ossiculum n 1 3 @ ~ #p 1 0 05277728 -ossification n 4 2 @ + 4 1 13528750 13529015 13528852 04801763 -osso_buco n 1 1 @ 1 0 07872748 -ossuary n 1 1 @ 1 0 03858085 -ostariophysi n 1 1 @ 1 0 01429172 -osteichthyes n 1 3 @ #m %m 1 0 02514575 -osteitis n 1 2 @ ~ 1 0 14351321 -osteitis_deformans n 1 1 @ 1 0 14079971 -ostensive_definition n 1 1 @ 1 0 06745285 -ostensorium n 1 2 @ ; 1 0 03784270 -ostentation n 3 3 @ ~ + 3 0 06889330 04817923 04789274 -ostentatiousness n 1 2 @ + 1 0 04817923 -osteoarthritis n 1 1 @ 1 0 14188238 -osteoblast n 1 1 @ 1 0 05448149 -osteoblastoma n 1 1 @ 1 0 14249601 -osteochondroma n 1 1 @ 1 0 14249785 -osteoclasis n 1 1 @ 1 0 00709395 -osteoclast n 1 1 @ 1 0 05449073 -osteocyte n 1 1 @ 1 0 05449196 -osteodystrophy n 1 1 @ 1 0 14059481 -osteogenesis_imperfecta n 1 1 @ 1 0 14158424 -osteogenic_sarcoma n 1 1 @ 1 0 14241556 -osteoglossidae n 1 3 @ #m %m 1 0 02544754 -osteoglossiformes n 1 3 @ #m %m 1 0 02544596 -osteologer n 1 1 @ 1 0 10385455 -osteologist n 1 1 @ 1 0 10385455 -osteology n 1 1 @ 1 0 06060336 -osteolysis n 1 1 @ 1 0 13529167 -osteoma n 1 1 @ 1 0 14249937 -osteomalacia n 1 2 @ %p 1 0 14208176 -osteomyelitis n 1 1 @ 1 0 14351490 -osteopath n 1 1 @ 1 0 10385566 -osteopathist n 1 2 @ + 1 0 10385566 -osteopathy n 1 2 @ + 1 0 00709205 -osteopetrosis n 1 1 @ 1 0 14210119 -osteophyte n 1 1 @ 1 0 05473507 -osteoporosis n 1 2 @ ~ 1 1 14210354 -osteosarcoma n 1 1 @ 1 0 14241556 -osteosclerosis n 1 1 @ 1 0 14188467 -osteosclerosis_congenita n 1 1 @ 1 0 14121804 -osteostracan n 1 2 @ #m 1 0 01475648 -osteostraci n 1 3 @ #m %m 1 0 01475421 -osteotomy n 1 1 @ 1 0 00689467 -ostiarius n 1 1 @ 1 0 10026763 -ostiary n 2 2 @ ~ 2 0 10026763 10026553 -ostinato n 1 2 @ ~ 1 0 07045637 -ostiole n 1 1 @ 1 0 12962149 -ostler n 1 1 @ 1 0 10644301 -ostomy n 1 2 @ ~ 1 0 00689550 -ostraciidae n 1 3 @ #m %m 1 0 02654256 -ostracism n 2 2 @ + 2 0 14427633 00207434 -ostracod n 1 2 @ #m 1 0 01997825 -ostracoda n 1 3 @ #m %m 1 0 01997698 -ostracoderm n 1 2 @ #m 1 0 01474864 -ostracodermi n 1 3 @ #m %m 1 0 01474641 -ostrava n 1 2 @ #p 1 0 08758487 -ostrea n 1 3 @ #m %m 1 0 01960900 -ostrea_gigas n 1 2 @ #m 1 0 01961234 -ostreidae n 1 3 @ #m %m 1 0 01960301 -ostrich n 2 2 @ #m 2 0 10385707 01518878 -ostrich_fern n 1 2 @ #m 1 0 13198054 -ostrogoth n 1 1 @ 1 0 10385923 -ostrya n 1 3 @ #m %m 1 0 12287388 -ostrya_carpinifolia n 1 2 @ #m 1 0 12287836 -ostrya_virginiana n 1 2 @ #m 1 0 12288005 -ostryopsis n 1 2 @ #m 1 0 12288188 -ostwald n 1 1 @ 1 0 11218054 -ostwald's_theory_of_indicators n 1 2 @ ; 1 0 06109487 -ostyak n 2 1 @ 2 0 09706911 06959018 -ostyak-samoyed n 2 2 @ #m 2 0 09707735 06960180 -oswald n 1 1 @ 1 0 11218153 -oswald_spengler n 1 1 @ 1 0 11310679 -oswald_veblen n 1 1 @ 1 0 11361913 -oswego_tea n 1 1 @ 1 0 12858397 -otaheite_arrowroot n 1 1 @ 1 0 15055046 -otaheite_arrowroot_starch n 1 1 @ 1 0 15055046 -otalgia n 1 1 @ 1 0 14327435 -otaria n 1 3 @ #m %m 1 0 02078159 -otaria_byronia n 1 2 @ #m 1 0 02078292 -otariidae n 1 3 @ #m %m 1 0 02076535 -otc_market n 1 1 @ 1 0 03866350 -otc_security n 1 2 @ ~ 1 0 13421095 -otc_stock n 1 2 @ ~ 1 0 13421286 -othello n 1 1 @ 1 0 09602258 -otherness n 1 3 @ = + 1 0 04742766 -otherworld n 1 1 @ 1 0 05810143 -otherworldliness n 1 3 ! @ + 1 0 04621314 -othman_i n 1 1 @ 1 0 11217789 -otho n 1 1 @ 1 0 11356636 -otho_i n 1 1 @ 1 0 11218625 -otho_of_lagery n 1 1 @ 1 0 11356636 -othonna n 1 2 @ #m 1 0 11999278 -otic_ganglion n 1 1 @ 1 0 05297363 -otides n 1 2 @ #m 1 0 02018485 -otididae n 1 3 @ #m %m 1 0 02018638 -otis n 2 3 @ #m %m 2 0 11218290 02019044 -otis_skinner n 1 1 @ 1 0 11304811 -otis_tarda n 1 2 @ #m 1 0 02019190 -otitis n 1 2 @ ~ 1 0 14351629 -otitis_externa n 1 1 @ 1 0 14351759 -otitis_interna n 1 1 @ 1 0 14348757 -otitis_media n 1 1 @ 1 0 14351886 -oto n 2 1 @ 2 0 09664295 06909190 -otoe n 2 1 @ 2 0 09664295 06909190 -otoganglion n 1 1 @ 1 0 05297363 -otolaryngologist n 1 2 @ + 1 0 10059323 -otolaryngology n 1 2 @ + 1 0 06062842 -otologist n 1 3 @ ~ + 1 0 10041195 -otology n 1 4 @ ~ + - 1 0 06054700 -otoplasty n 1 1 @ 1 0 00682625 -otorhinolaryngologist n 1 2 @ + 1 0 10059323 -otorhinolaryngology n 1 2 @ + 1 0 06062842 -otorrhea n 1 1 @ 1 0 14352077 -otosclerosis n 1 1 @ 1 0 14160903 -otoscope n 1 1 @ 1 0 03858183 -ottar n 1 2 @ ~ 1 0 14892989 -ottava_rima n 1 1 @ 1 0 07097965 -ottawa n 3 2 @ #p 3 0 09664450 09380588 08827486 -ottawa_river n 1 2 @ #p 1 0 09380588 -otter n 2 3 @ ~ #m 2 0 14765785 02444819 -otter_hound n 1 1 @ 1 0 02091635 -otter_shrew n 1 2 @ #m 1 0 01894956 -otterhound n 1 1 @ 1 0 02091635 -ottmar_mergenthaler n 1 1 @ 1 0 11176230 -otto_frisch n 1 1 @ 1 0 10983172 -otto_fritz_meyerhof n 1 1 @ 1 0 11177873 -otto_hahn n 1 1 @ 1 0 11022160 -otto_heinrich_warburg n 1 1 @ 1 0 11373672 -otto_i n 1 1 @ 1 0 11218625 -otto_jespersen n 1 1 @ 1 0 11083527 -otto_loewi n 1 1 @ 1 0 11137506 -otto_meyerhof n 1 1 @ 1 0 11177873 -otto_neumann_sverdrup n 1 1 @ 1 0 11326008 -otto_robert_frisch n 1 1 @ 1 0 10983172 -otto_the_great n 1 1 @ 1 0 11218625 -otto_von_bismarck n 1 1 @ 1 0 10851599 -otto_wagner n 1 1 @ 1 0 11370068 -ottoman n 4 1 @ 4 0 09735113 08156505 03858418 03380724 -ottoman_dynasty n 1 1 @ 1 0 08156505 -ottoman_empire n 1 2 @ #p 1 0 09038597 -ottoman_turk n 1 1 @ 1 0 09735113 -ottorino_respighi n 1 1 @ 1 0 11258214 -ottumwa n 1 2 @ #p 1 0 09087352 -otus n 1 3 @ #m %m 1 0 01623284 -otus_asio n 1 2 @ #m 1 0 01623425 -otus_scops n 1 1 @ 1 0 01624115 -otus_sunia n 1 1 @ 1 0 01624212 -ouachita n 1 2 @ #p 1 0 09380817 -ouachita_river n 1 2 @ #p 1 0 09380817 -oubliette n 1 1 @ 1 0 03858533 -ouguiya n 1 2 @ %p 1 0 13689765 -ouija n 1 2 @ %p 1 0 03858662 -ouija_board n 1 2 @ %p 1 0 03858662 -oujda n 1 2 @ #p 1 0 08970318 -ounce n 3 4 @ #m #p %p 3 1 13722522 13719922 02128757 -our_lady's_bedstraw n 1 1 @ 1 0 12665857 -our_lady's_mild_thistle n 1 2 @ #m 1 0 12015525 -our_lord's_candle n 1 1 @ 1 0 12484244 -ouranopithecus n 1 2 @ #m 1 0 02478416 -ouranos n 1 2 @ ; 1 0 09568051 -ouse n 1 2 @ #p 1 0 09381048 -ouse_river n 1 2 @ #p 1 0 09381048 -ousel n 1 2 @ #m 1 0 01558594 -ouster n 3 4 @ ~ + ; 3 0 10386071 01194615 00208797 -ousting n 1 3 @ ~ + 1 0 00208797 -out n 1 3 @ ~ ; 1 0 00129527 -out-and-outer n 1 2 @ ; 1 0 10386196 -out-basket n 1 2 ! @ 1 0 03858837 -out-migration n 1 1 @ 1 0 00056087 -out-of-body_experience n 1 1 @ 1 0 07287812 -out-of-court_settlement n 1 1 @ 1 0 07178182 -out-of-doors n 1 1 @ 1 1 08613733 -out-of-the-box_thinking n 1 2 @ #p 1 0 05797177 -out-tray n 1 1 @ 1 0 03858837 -out_of_bounds n 1 2 @ ~ 1 0 08651104 -outage n 2 2 @ ; 2 0 13759428 07421859 -outaouais n 1 2 @ #p 1 0 09380588 -outback n 1 4 @ ~ #p + 1 0 08505110 -outboard n 2 3 @ %p + 2 0 03859170 03859000 -outboard_motor n 1 2 @ %p 1 1 03859000 -outboard_motorboat n 1 1 @ 1 0 03859170 -outbreak n 1 2 @ ~ 1 1 07435273 -outbuilding n 1 2 @ ~ 1 0 03859280 -outburst n 3 2 @ ~ 3 2 07014320 07434942 00554433 -outcast n 1 3 @ ~ + 1 1 10386312 -outcaste n 1 2 @ + 1 0 10386515 -outcome n 2 2 @ ~ 2 2 07292694 11410625 -outcrop n 1 3 @ ~ + 1 0 09381242 -outcropping n 1 3 @ ~ + 1 0 09381242 -outcry n 1 3 @ ~ + 1 1 07120524 -outdoor_game n 1 2 @ ~ 1 0 00464651 -outdoor_man n 1 1 @ 1 1 10639359 -outdoor_sport n 1 2 @ ~ 1 0 00433661 -outdoor_stage n 1 1 @ 1 0 02786984 -outdoors n 1 2 @ + 1 0 08613733 -outdoorsman n 1 2 @ ~ 1 0 10386618 -outdoorswoman n 1 1 @ 1 0 10386754 -outer_boundary n 1 1 @ 1 0 13903576 -outer_ear n 1 3 @ #p %p 1 0 05323723 -outer_garment n 1 2 @ ~ 1 0 03863923 -outer_hebrides n 1 2 @ #p 1 0 08894319 -outer_mongolia n 1 3 @ #p %p 1 0 08968879 -outer_planet n 1 4 @ ~ #m ; 1 0 09381480 -outer_space n 1 3 @ #p %p 1 1 08500433 -outercourse n 1 1 @ 1 0 00843831 -outerwear n 1 2 @ ~ 1 0 03859495 -outfall n 1 1 @ 1 0 03859608 -outfield n 1 5 ! @ #p %p + 1 1 03859717 -outfielder n 2 4 @ ~ + ; 2 1 10386984 10386874 -outfit n 3 3 @ ~ + 3 3 08274826 03859958 03619396 -outfitter n 2 3 @ + ; 2 0 10387712 03860234 -outfitting n 1 3 @ ~ + 1 0 01157138 -outflow n 3 3 ! @ ~ 3 1 07436661 13529295 09443453 -outgo n 1 3 ! @ ~ 1 0 13275288 -outgoer n 1 1 @ 1 0 10051975 -outgrowth n 3 2 @ ~ 3 0 11415721 07324673 05470189 -outhouse n 1 1 @ 1 0 03860404 -outing n 2 2 @ ~ 2 1 00311809 15138691 -outlander n 1 2 @ ~ 1 0 10103485 -outlandishness n 1 2 @ + 1 0 04798511 -outlaw n 1 3 @ ~ + 1 1 09977660 -outlawry n 1 2 @ + 1 0 04811126 -outlay n 2 2 @ ~ 2 1 01122149 13275288 -outlet n 4 3 @ ~ %p 4 2 03748162 04548771 03303965 01264447 -outlet_box n 1 2 @ ; 1 0 03860569 -outlier n 2 2 @ ; 2 0 10387836 06023369 -outline n 3 3 @ ~ + 3 3 08612786 06468951 05891572 -outlook n 3 2 @ ~ 3 2 06195839 05944958 00881545 -outpatient n 1 2 ! @ 1 0 10387936 -outport n 1 2 @ ; 1 0 08638260 -outpost n 3 2 @ ; 3 3 08613985 08374653 03860741 -outpouring n 5 2 @ ~ 5 0 09443453 07439570 07407777 07083441 00329819 -output n 5 3 @ ~ + 5 3 03287178 00914632 07264925 13758745 03860882 -output-to-input_ratio n 1 2 @ #p 1 0 13823968 -output_contract n 1 1 @ 1 0 06523473 -output_device n 1 1 @ 1 0 03861048 -output_file n 1 2 @ ; 1 0 06510663 -output_program n 1 2 @ %p 1 0 06577232 -output_routine n 1 2 @ #p 1 0 06583929 -output_signal n 1 2 @ ~ 1 0 07264925 -outrage n 4 3 @ ~ + 4 2 07517737 00425090 07306252 01225397 -outrageousness n 2 2 @ + 2 0 05119096 04903247 -outreach n 1 1 @ 1 1 00348953 -outrider n 1 1 @ 1 0 10388082 -outrigger n 1 2 @ #p 1 0 03861271 -outrigger_canoe n 1 2 @ %p 1 0 03861430 -outset n 1 2 @ ~ 1 1 15265518 -outside n 2 3 ! @ ~ 2 2 08613593 08613472 -outside_caliper n 1 1 @ 1 0 03861596 -outside_clinch n 1 1 @ 1 0 03861731 -outside_door n 1 4 @ ~ #p %p 1 1 03307274 -outside_loop n 1 1 @ 1 0 00170172 -outside_mirror n 1 1 @ 1 0 03861842 -outsider n 2 2 @ ~ 2 1 10103921 10388192 -outsider_art n 1 1 @ 1 0 03861959 -outsize n 1 2 @ + 1 0 05096577 -outskirt n 1 2 @ %p 1 1 08690792 -outskirts n 1 1 @ 1 1 08539276 -outsole n 1 2 @ #p 1 0 03862190 -outspokenness n 1 3 @ ~ + 1 0 04650731 -outstation n 1 1 @ 1 0 08613985 -outstroke n 1 1 @ 1 0 07351497 -outtake n 1 1 @ 1 0 06614901 -outthrust n 1 1 @ 1 0 09381781 -outturn n 1 2 @ ~ 1 0 03860882 -outwardness n 3 5 ! @ ~ = + 3 0 05787498 05078623 04620741 -outwork n 1 1 @ 1 0 03862379 -ouzel n 1 2 @ #m 1 0 01558594 -ouzo n 1 2 @ %s 1 0 07904934 -ov n 1 2 @ ; 1 0 08036849 -oval n 1 3 @ ~ + 1 1 13878306 -oval_kumquat n 1 1 @ 1 0 12713521 -oval_office n 1 2 @ #p 1 0 03862531 -oval_window n 1 1 @ 1 0 05325606 -ovalbumin n 1 2 @ #p 1 0 07841037 -ovalipes n 1 3 @ #m %m 1 0 01979395 -ovalipes_ocellatus n 1 2 @ #m 1 0 01979526 -ovarian_artery n 1 2 @ #p 1 0 05353070 -ovarian_cyst n 1 1 @ 1 0 14202417 -ovarian_pregnancy n 1 1 @ 1 0 14047547 -ovarian_vein n 1 1 @ 1 0 05375530 -ovariectomy n 1 1 @ 1 0 00686570 -ovaritis n 1 1 @ 1 0 14351995 -ovary n 2 5 @ #p %p + ; 2 0 11678635 05515287 -ovate_leaf n 1 1 @ 1 0 13159155 -ovation n 1 2 @ %p 1 0 06688751 -oven n 1 2 @ ~ 1 1 03862676 -oven_stuffer n 1 1 @ 1 0 07645769 -oven_stuffer_roaster n 1 1 @ 1 0 07645769 -oven_thermometer n 1 1 @ 1 0 03862862 -ovenbird n 2 2 @ #m 2 0 01570267 01552813 -ovenware n 1 1 @ 1 0 03862984 -over n 1 4 @ ~ #p ; 1 0 15258694 -over-crowding n 1 2 @ + 1 0 13944747 -over-the-counter_drug n 1 2 ! @ 1 0 03866176 -over-the-counter_market n 1 1 @ 1 0 03866350 -over-the-counter_medicine n 1 2 ! @ 1 0 03866176 -over-the-shoulder_bombing n 1 1 @ 1 0 00979557 -over_the_counter_security n 1 2 @ ~ 1 0 13421095 -over_the_counter_stock n 1 2 @ ~ 1 0 13421286 -overabundance n 2 3 @ ~ + 2 0 14452294 05119367 -overachievement n 1 3 ! @ + 1 1 00047356 -overachiever n 1 1 @ 1 1 10388321 -overacting n 1 2 @ + 1 0 00551585 -overactivity n 1 2 @ + 1 0 13529450 -overage n 1 1 @ 1 0 13378816 -overall n 2 2 @ ; 2 1 03863108 03863262 -overanxiety n 1 1 @ 1 0 14375166 -overappraisal n 1 1 @ 1 0 06528992 -overbearingness n 1 2 @ + 1 0 04888788 -overbid n 2 3 @ + ; 2 0 07165298 06737758 -overbite n 1 2 @ ; 1 0 14061097 -overburden n 2 2 @ + 2 0 09381880 03864994 -overcall n 1 2 @ ; 1 0 06737758 -overcapitalisation n 1 3 @ + ; 1 0 00093127 -overcapitalization n 1 3 @ + ; 1 0 00093127 -overcast n 4 2 @ + 4 1 14524198 13984468 03863442 00455076 -overcasting n 1 2 @ + 1 0 03863442 -overcharge n 1 3 @ ~ + 1 0 13307784 -overclothes n 1 2 @ ~ 1 0 03859495 -overcoat n 2 2 @ ~ 2 1 03456665 03863657 -overcoating n 1 1 @ 1 0 03863657 -overcomer n 1 2 @ + 1 0 10668450 -overcompensation n 2 3 @ + ; 2 0 13529616 13282948 -overconfidence n 1 2 @ + 1 0 05697789 -overcredulity n 1 1 @ 1 0 04895695 -overcrossing n 1 2 @ ~ 1 0 03379828 -overcup_oak n 1 1 @ 1 0 12274151 -overdraft n 1 1 @ 1 0 13377654 -overdraft_credit n 1 1 @ 1 0 13380996 -overdrive n 2 2 @ + 2 0 14009020 03863783 -overeating n 1 2 @ + 1 1 00759186 -overemphasis n 1 1 @ 1 0 05037737 -overestimate n 2 2 @ + 2 0 06528992 05804274 -overestimation n 2 2 @ + 2 1 06528992 05804274 -overexertion n 1 2 @ + 1 0 00633717 -overexploitation n 1 2 @ + 1 0 00951433 -overexposure n 2 2 @ + 2 0 00907500 00157687 -overfeeding n 1 2 @ + 1 0 01059096 -overflight n 1 1 @ 1 0 00304442 -overflow n 2 3 @ ~ + 2 1 00329819 07407272 -overflow_incontinence n 1 1 @ 1 0 13529831 -overgarment n 1 3 ! @ ~ 1 0 03863923 -overgrowth n 2 2 @ %p 2 0 14368288 05116486 -overhand_knot n 1 1 @ 1 0 03864139 -overhand_pitch n 1 1 @ 1 0 00108545 -overhand_stitch n 1 1 @ 1 0 03864254 -overhang n 1 3 @ ~ + 1 1 03864356 -overhaul n 2 3 @ ~ + 2 0 00268112 00265119 -overhead n 6 3 @ #p ; 6 1 13277179 15298011 08556065 04534779 03864542 00569474 -overhead_projector n 1 1 @ 1 0 03864692 -overhead_railway n 1 2 @ ~ 1 0 03280813 -overheating n 1 3 @ ~ + 1 0 13530108 -overindulgence n 1 2 @ + 1 0 01073655 -overkill n 2 1 @ 2 0 05204316 00633479 -overlap n 3 3 @ ~ + 3 0 05764365 05048833 03641706 -overlapping n 1 2 @ + 1 0 03561657 -overlay n 2 2 @ + 2 0 04187233 03864834 -overlayer n 1 2 @ + 1 0 04187233 -overlip n 1 1 @ 1 0 05306055 -overload n 2 2 @ + 2 1 03865171 03864994 -overlook n 1 2 @ + 1 0 08614104 -overlord n 1 3 @ ~ + 1 0 10388440 -overlordship n 1 2 @ + 1 0 00595684 -overmantel n 1 1 @ 1 0 03865288 -overmuch n 1 2 @ ~ 1 0 05119367 -overmuchness n 1 3 @ ~ + 1 0 05119367 -overnight_bag n 1 2 @ ~ 1 0 03865371 -overnight_case n 1 2 @ ~ 1 0 03865371 -overnighter n 2 2 @ ~ 2 1 10388647 03865371 -overpass n 1 1 @ 1 0 03865557 -overpayment n 2 2 @ + 2 1 13279046 01121390 -overplus n 1 2 @ ~ 1 0 05120116 -overpopulation n 1 2 @ + 1 0 08178935 -overpressure n 1 1 @ 1 0 11495964 -overprint n 1 2 @ + 1 0 03865704 -overproduction n 1 2 @ + 1 0 00914343 -overprotection n 1 2 @ + 1 1 00820721 -overrating n 1 2 @ + 1 0 05804274 -overreaction n 1 2 @ + 1 0 00859863 -overreckoning n 1 1 @ 1 0 05804274 -overrefinement n 1 2 @ + 1 0 00751529 -override n 2 3 @ ~ + 2 0 03865820 00231567 -overrun n 1 2 @ + 1 0 00914343 -overseas_cap n 1 1 @ 1 0 03420801 -overseas_telegram n 1 1 @ 1 0 06275095 -overseer n 1 3 @ ~ + 1 0 10388732 -oversensitiveness n 1 2 @ + 1 0 07512719 -overshielding n 1 1 @ 1 0 00820721 -overshoe n 1 2 @ ~ 1 1 03865949 -overshoot n 1 2 @ + 1 0 00281898 -oversight n 3 2 @ ~ 3 0 05706815 01135529 00074524 -oversimplification n 2 2 @ + 2 1 01212037 06739345 -overskirt n 1 1 @ 1 0 03866082 -overspill n 2 1 @ 2 0 08179033 07407272 -overstatement n 1 3 ! @ + 1 0 06758835 -overstrain n 1 2 @ + 1 0 11515644 -overstuffed_chair n 1 2 @ ~ 1 0 03262932 -oversupply n 1 2 @ + 1 0 05119837 -overt_operation n 1 1 @ 1 0 00984490 -overtaking n 1 2 @ + 1 0 00340192 -overthrow n 2 3 @ ~ + 2 1 00215683 00554850 -overthrust_fault n 1 1 @ 1 0 09457507 -overtime n 2 4 ! @ ~ #p 2 1 15137194 15233989 -overtime_period n 1 1 @ 1 0 15234348 -overtolerance n 1 1 @ 1 0 04639030 -overtone n 2 2 @ ; 2 1 06606464 05720093 -overture n 3 1 @ 3 3 07040820 07327013 07164349 -overturn n 2 2 @ + 2 0 00348312 00068170 -overuse n 1 2 @ + 1 0 00951433 -overutilisation n 1 1 @ 1 0 00951433 -overutilization n 1 1 @ 1 0 00951433 -overvaluation n 2 2 @ + 2 0 06528992 05736468 -overview n 1 1 @ 1 0 06469223 -overweight n 1 2 @ + 1 0 05000537 -overwork n 1 2 @ + 1 0 00623370 -overworking n 1 2 @ + 1 0 00623370 -ovibos n 1 3 @ #m %m 1 0 02411075 -ovibos_moschatus n 1 2 @ #m 1 0 02411206 -ovid n 1 2 @ - 1 0 11218776 -oviduct n 1 2 @ #p 1 0 05518870 -oviedo n 1 2 @ #p 1 0 09026780 -ovimbundu n 1 1 @ 1 0 08484522 -ovipositor n 1 1 @ 1 0 01460813 -oviraptorid n 1 2 @ #m 1 0 01717229 -ovis n 1 3 @ #m %m 1 0 02411427 -ovis_ammon n 1 2 @ #m 1 0 02414763 -ovis_aries n 1 4 @ ~ #m %p 1 0 02413131 -ovis_canadensis n 1 2 @ #m 1 0 02415577 -ovis_montana_dalli n 1 2 @ #m 1 0 02415253 -ovis_musimon n 1 2 @ #m 1 0 02415829 -ovis_poli n 1 2 @ #m 1 0 02414904 -ovis_vignei n 1 2 @ #m 1 0 02415130 -ovocon n 1 2 @ %s 1 0 03866555 -ovoflavin n 1 2 @ %s 1 0 15091473 -ovoid n 1 2 @ + 1 0 13915023 -ovolo n 1 2 @ ~ 1 0 03866721 -ovotestis n 1 1 @ 1 0 05515545 -ovral n 1 2 @ %s 1 0 03866908 -ovrette n 1 2 @ %s 1 0 03867070 -ovulation n 1 3 ! @ + 1 0 13530237 -ovulation_method n 1 1 @ 1 0 00852825 -ovulation_method_of_family_planning n 1 1 @ 1 0 00852825 -ovule n 2 4 @ ~ %p + 2 0 11678768 05458300 -ovulen n 1 2 @ %s 1 0 03867201 -ovum n 1 4 @ ~ #p + 1 0 05457973 -owen n 2 1 @ 2 0 11219121 11218938 -owen_glendower n 1 1 @ 1 0 11002040 -owen_wister n 1 1 @ 1 0 11393446 -owens n 1 1 @ 1 0 11219293 -owensboro n 1 2 @ #p 1 0 09090128 -owl n 1 4 @ ~ #m + 1 1 01621127 -owlclaws n 1 1 @ 1 0 11977660 -owlet n 1 2 @ + 1 0 01621635 -owlet_moth n 1 3 @ ~ #m 1 0 02295064 -owlt n 1 1 @ 1 0 15130749 -own_goal n 1 2 @ ; 1 0 00187499 -own_right n 1 1 @ 1 0 05181513 -owner n 2 4 @ ~ + ; 2 2 10388924 10389398 -owner-driver n 1 1 @ 1 0 10389760 -owner-occupier n 1 1 @ 1 0 10389865 -ownership n 3 3 @ ~ + 3 2 13240514 00809465 14479488 -ox n 2 4 @ ~ #m %p 2 1 02403003 02402175 -ox-eyed_daisy n 1 2 @ #m 1 0 11989869 -oxacillin n 1 1 @ 1 0 03867355 -oxalacetate n 1 1 @ 1 0 14970645 -oxalacetic_acid n 1 1 @ 1 0 14970752 -oxalate n 1 2 @ ~ 1 0 14970920 -oxalic_acid n 1 1 @ 1 0 14971022 -oxalidaceae n 1 3 @ #m %m 1 0 12702443 -oxalis n 1 3 @ ~ #m 1 0 12702948 -oxalis_acetosella n 1 1 @ 1 0 12703190 -oxalis_caprina n 1 1 @ 1 0 12703716 -oxalis_cernua n 1 1 @ 1 0 12703383 -oxalis_corniculata n 1 1 @ 1 0 12703557 -oxalis_crenata n 1 1 @ 1 0 12704041 -oxalis_pes-caprae n 1 1 @ 1 0 12703383 -oxalis_tuberosa n 1 1 @ 1 0 12704041 -oxalis_violacea n 1 1 @ 1 0 12703856 -oxaloacetate n 1 1 @ 1 0 14970645 -oxaloacetic_acid n 1 1 @ 1 0 14970752 -oxandra n 1 2 @ #m 1 0 11696338 -oxandra_lanceolata n 1 2 @ %s 1 0 11696450 -oxaprozin n 1 2 @ %s 1 0 03867515 -oxazepam n 1 1 @ 1 0 03867675 -oxblood_red n 1 1 @ 1 0 04964079 -oxbow n 3 1 @ 3 0 09382099 09382019 03867854 -oxbow_lake n 1 1 @ 1 0 09382191 -oxbridge n 1 2 @ ; 1 0 03868044 -oxcart n 1 1 @ 1 1 03868242 -oxen n 1 5 @ ~ #m %m %p 1 1 02402425 -oxeye n 3 3 @ ~ #m 3 0 11980682 11942487 03868324 -oxeye_daisy n 2 2 @ #m 2 0 11990167 11989869 -oxford n 4 6 @ ~ #p %m %p + 4 1 08877807 09077681 03868509 03868406 -oxford_english n 1 1 @ 1 1 06950049 -oxford_english_dictionary n 1 1 @ 1 0 06420424 -oxford_gray n 1 1 @ 1 0 04962240 -oxford_grey n 1 1 @ 1 0 04962240 -oxford_movement n 1 1 @ 1 0 08475586 -oxford_university n 1 2 @ #p 1 0 03868509 -oxheart n 2 2 @ ~ 2 0 12642435 07757602 -oxheart_cherry n 2 2 @ ~ 2 0 12642435 07757602 -oxidant n 1 3 @ ~ + 1 0 14780040 -oxidase n 1 2 @ ~ 1 0 14971234 -oxidation n 1 3 @ ~ + 1 1 13530408 -oxidation-reduction n 1 1 @ 1 0 13530799 -oxidation-reduction_indicator n 1 1 @ 1 0 14971359 -oxidation_number n 1 1 @ 1 0 13591314 -oxidation_state n 1 1 @ 1 0 13591314 -oxidative_phosphorylation n 1 2 @ #p 1 0 13530989 -oxide n 1 3 @ ~ + 1 0 14971519 -oxidisation n 1 3 @ ~ + 1 0 13530408 -oxidiser n 1 3 @ ~ + 1 0 14780040 -oxidization n 1 3 @ ~ + 1 0 13530408 -oxidized_ldl_cholesterol n 1 1 @ 1 0 15059237 -oxidizer n 1 3 @ ~ + 1 0 14780040 -oxidizing_agent n 1 2 @ ~ 1 0 14780040 -oxidoreductase n 1 2 @ ~ 1 0 14971969 -oxidoreduction n 1 1 @ 1 0 13530799 -oxime n 1 1 @ 1 0 14972092 -oximeter n 1 1 @ 1 0 03868643 -oxlip n 1 1 @ 1 0 12091550 -oxonian n 1 3 @ #m + 1 0 09705003 -oxtail n 1 2 @ #s 1 0 02158494 -oxtail_soup n 1 2 @ %s 1 0 07586485 -oxtant n 1 2 @ %p 1 0 13612427 -oxtongue n 1 2 @ #m 1 0 12003167 -oxyacetylene n 1 2 @ %s 1 0 14972184 -oxyacetylene_torch n 1 1 @ 1 0 03868763 -oxyacid n 1 2 @ ~ 1 0 14972359 -oxybelis n 1 3 @ #m %m 1 0 01739260 -oxybenzene n 1 1 @ 1 0 14796073 -oxybutyric_acid n 1 2 @ ~ 1 0 14927451 -oxycephaly n 1 1 @ 1 0 14164190 -oxydendrum n 1 3 @ #m %m 1 0 12242287 -oxydendrum_arboreum n 1 2 @ #m 1 0 12242409 -oxygen n 1 4 @ ~ #s + 1 1 14648100 -oxygen_acid n 1 2 @ ~ 1 0 14972359 -oxygen_debt n 1 1 @ 1 0 14042735 -oxygen_deficit n 1 1 @ 1 0 05114652 -oxygen_mask n 1 2 @ #p 1 0 03868863 -oxygenase n 1 1 @ 1 0 14972681 -oxygenation n 1 2 @ + 1 0 13531149 -oxyhaemoglobin n 1 1 @ 1 0 15024773 -oxyhemoglobin n 1 1 @ 1 0 15024773 -oxylebius n 1 3 @ #m %m 1 0 02649082 -oxylebius_pictus n 1 2 @ #m 1 0 02649218 -oxymoron n 1 1 @ 1 0 07108010 -oxyopia n 1 1 @ 1 0 05655966 -oxyphenbutazone n 1 1 @ 1 0 03869044 -oxyphencyclimine n 1 1 @ 1 0 03869222 -oxytetracycline n 1 1 @ 1 1 03869389 -oxytetracycline_hydrochloride n 1 1 @ 1 0 03869389 -oxytocic n 1 1 @ 1 0 03869685 -oxytocic_drug n 1 1 @ 1 0 03869685 -oxytocin n 1 1 @ 1 0 05411571 -oxytone n 1 1 @ 1 0 06294716 -oxytropis n 1 3 @ #m %m 1 0 12554242 -oxytropis_lambertii n 1 1 @ 1 0 12554729 -oxyura n 1 3 @ #m %m 1 0 01849747 -oxyura_jamaicensis n 1 2 @ #m 1 0 01849863 -oxyuranus n 1 3 @ #m %m 1 0 01751353 -oxyuranus_scutellatus n 1 2 @ #m 1 0 01751472 -oxyuridae n 1 3 @ #m %m 1 0 01931277 -oyabun n 1 1 @ 1 1 10389976 -oyster n 3 6 @ ~ #m #p %p + 3 1 01960459 07786164 07649342 -oyster-fish n 1 1 @ 1 0 02548884 -oyster_agaric n 1 2 @ #m 1 0 13007417 -oyster_bank n 1 1 @ 1 0 03869976 -oyster_bar n 1 1 @ 1 0 03869838 -oyster_bed n 1 1 @ 1 0 03869976 -oyster_catcher n 1 2 @ #m 1 0 02037110 -oyster_crab n 1 2 @ #m 1 0 01980830 -oyster_cracker n 1 1 @ 1 0 07695410 -oyster_dressing n 1 1 @ 1 0 07679034 -oyster_fish n 1 1 @ 1 0 02548884 -oyster_fungus n 1 2 @ #m 1 0 13007417 -oyster_mushroom n 1 2 @ #m 1 0 13007417 -oyster_park n 1 1 @ 1 0 03869976 -oyster_plant n 3 4 @ #m #p %p 3 0 12027538 12027222 07735179 -oyster_shell n 1 1 @ 1 0 01904886 -oyster_stew n 1 1 @ 1 0 07591162 -oyster_stuffing n 1 1 @ 1 0 07679034 -oystercatcher n 1 2 @ #m 1 0 02037110 -oysterfish n 1 1 @ 1 0 02548884 -oysters_rockefeller n 1 1 @ 1 0 07786337 -oz. n 1 3 @ #p %p 1 0 13719922 -ozaena n 1 1 @ 1 0 14352163 -ozark_chinkapin n 1 3 @ #m %p 1 0 12263987 -ozark_chinquapin n 1 3 @ #m %p 1 0 12263987 -ozark_mountains n 1 2 @ #p 1 0 09382362 -ozark_plateau n 1 2 @ #p 1 0 09382362 -ozark_sundrops n 1 1 @ 1 0 12344837 -ozarks n 1 2 @ #p 1 0 09382362 -ozawa n 1 2 @ ; 1 0 11219502 -ozena n 1 1 @ 1 0 14352163 -ozocerite n 1 1 @ 1 0 14665102 -ozokerite n 1 1 @ 1 0 14665102 -ozone n 1 2 @ %s 1 1 14972807 -ozone_hole n 1 2 @ #p 1 0 09382570 -ozone_layer n 1 3 @ #p %p 1 0 09382726 -ozone_sickness n 1 1 @ 1 0 14190284 -ozonide n 1 1 @ 1 0 14684427 -ozonium n 1 2 @ #m 1 0 13082711 -ozonosphere n 1 3 @ #p %p 1 0 09382726 -ozothamnus n 1 3 @ #m %m 1 0 11999455 -ozothamnus_secundiflorus n 1 2 @ #m 1 0 11999656 -p n 2 3 @ #m #s 2 0 14649197 06832788 -p-n-p_transistor n 1 1 @ 1 0 03972146 -p-n_junction n 1 1 @ 1 0 03971960 -p-type_semiconductor n 1 1 @ 1 0 04017993 -p._g._wodehouse n 1 1 @ 1 0 11394042 -p._p._von_mauser n 1 1 @ 1 0 11165854 -p._t._barnum n 1 1 @ 1 0 10834869 -p.a. n 1 2 @ %p 1 0 04018155 -p.a._system n 1 2 @ %p 1 0 04018155 -p.e. n 1 2 @ ~ 1 0 11494472 -p.o. n 1 2 @ ~ 1 0 10420809 -p/e_ratio n 1 2 @ ; 1 0 13824340 -pa n 5 4 @ #p %p - 5 1 09988063 14651708 13711303 09134386 04018155 -pa'anga n 1 2 @ %p 1 0 13690109 -pa_system n 1 2 @ %p 1 1 04018155 -paba n 1 2 @ #s 1 0 14973965 -pabir n 1 1 @ 1 0 06983895 -pablo_casals n 1 1 @ 1 0 10885831 -pablo_neruda n 1 1 @ 1 0 11203795 -pablo_picasso n 1 1 @ 1 0 11234951 -pablum n 2 3 @ #p ; 2 0 07703053 06612174 -pabulum n 2 2 @ ~ 2 0 07556637 05811380 -pac n 1 1 @ 1 0 08327212 -pac-man_strategy n 1 1 @ 1 0 00176312 -paca n 1 1 @ 1 0 02366301 -pace n 6 5 @ ~ #p %p + 6 4 15280497 13757249 05058580 00285889 15283097 13650447 -pace_car n 1 2 @ ; 1 0 03870105 -pace_lap n 1 2 @ ; 1 0 00295422 -pacemaker n 4 1 @ 4 0 05938633 05389460 03870290 02388143 -pacer n 2 2 @ + 2 0 02388143 02387983 -pacesetter n 2 1 @ 2 0 05938633 02388143 -pacha n 1 1 @ 1 0 10403768 -pachinko n 1 1 @ 1 1 00459465 -pachisi n 1 2 @ ~ 1 0 00505446 -pachouli n 2 2 @ #m 2 0 12862828 03898271 -pachuco n 1 1 @ 1 0 10390050 -pachycephala n 1 3 @ #m %m 1 0 01556368 -pachycephalosaur n 1 1 @ 1 0 01703161 -pachycephalosaurus n 1 1 @ 1 0 01703161 -pachycheilia n 1 1 @ 1 0 14509491 -pachyderm n 1 4 @ ~ %p + 1 0 02453108 -pachyderma n 1 1 @ 1 0 14367797 -pachyrhizus n 1 3 @ #m %m 1 0 12555069 -pachyrhizus_erosus n 1 2 @ #m 1 0 12555255 -pachyrhizus_tuberosus n 1 2 @ #m 1 0 12555553 -pachysandra n 1 3 @ ~ #m 1 0 12746884 -pachysandra_procumbens n 1 1 @ 1 0 12747120 -pachysandra_terminalis n 1 1 @ 1 0 12747371 -pachytene n 1 2 @ #p 1 0 13531318 -pacific n 1 4 @ %p + - 1 1 09382990 -pacific_bonito n 1 2 @ #m 1 0 02628259 -pacific_bottlenose_dolphin n 1 1 @ 1 0 02070174 -pacific_coast n 1 2 @ #p 1 0 09383793 -pacific_cod n 1 1 @ 1 0 02522866 -pacific_giant_salamander n 1 2 @ #m 1 0 01635176 -pacific_halibut n 1 1 @ 1 0 02660640 -pacific_hemlock n 1 1 @ 1 0 11628087 -pacific_herring n 1 2 @ #m 1 0 02532451 -pacific_newt n 1 3 @ ~ #m 1 0 01631175 -pacific_northwest n 1 2 @ #p 1 0 08564739 -pacific_ocean n 1 3 @ %p - 1 0 09382990 -pacific_plum n 1 1 @ 1 0 12649866 -pacific_ridley n 1 1 @ 1 0 01664674 -pacific_sardine n 1 2 @ #m 1 0 02533545 -pacific_silver_fir n 1 1 @ 1 0 11621281 -pacific_spiny_dogfish n 1 2 @ #m 1 0 01494041 -pacific_standard_time n 1 1 @ 1 0 15132638 -pacific_sturgeon n 1 2 @ #m 1 0 02640626 -pacific_time n 1 1 @ 1 0 15132638 -pacific_tree_toad n 1 2 @ #m 1 0 01650901 -pacific_tripletail n 1 1 @ 1 0 02636550 -pacific_walrus n 1 1 @ 1 0 02081927 -pacific_yew n 1 2 @ #m 1 0 11662128 -pacification n 3 3 @ ~ + 3 1 01151097 06773976 00963749 -pacificism n 2 1 @ 2 0 05965586 05946406 -pacificist n 1 2 @ ~ 1 0 10390199 -pacifier n 3 3 @ ~ + 3 0 09952163 03870461 03075768 -pacifism n 2 2 @ + 2 0 05965586 05946406 -pacifist n 1 3 @ ~ + 1 0 10390199 -pacing n 2 4 @ ~ + ; 2 2 15264363 00289555 -pacinian_corpuscle n 1 2 @ #p 1 0 05469424 -pack n 9 5 @ ~ #m %m + 9 3 13775093 07956426 03870546 08244062 08240633 07994941 03870980 03870822 03870672 -pack_animal n 1 2 @ ~ 1 0 01317391 -pack_ice n 1 1 @ 1 0 09383901 -pack_of_cards n 1 2 @ %m 1 0 07956721 -pack_rat n 2 3 @ ~ #m 2 0 10281276 02339922 -pack_riding n 1 1 @ 1 0 00300037 -pack_tent n 1 1 @ 1 0 02769963 -package n 3 4 @ ~ + ; 3 2 08008017 03871083 06566077 -package_bomb n 1 1 @ 1 0 03657918 -package_holiday n 1 1 @ 1 0 00748919 -package_store n 1 1 @ 1 0 03871371 -package_tour n 1 1 @ 1 0 00748919 -packaged_goods n 1 2 @ ; 1 0 03871255 -packaging n 3 4 @ ~ #p + 3 1 01103788 07247071 03871524 -packaging_company n 1 1 @ 1 0 08069342 -packaging_concern n 1 1 @ 1 0 08069342 -packed_cell_volume n 1 1 @ 1 0 13821766 -packed_cells n 1 1 @ 1 0 05450370 -packer n 3 3 @ ~ + 3 0 10390427 10304505 09830629 -packera n 1 3 @ #m %m 1 0 11999958 -packera_aurea n 1 1 @ 1 0 12000356 -packet n 4 3 @ ~ ; 4 1 08008017 07281099 03871628 03710079 -packet_boat n 1 1 @ 1 0 03710079 -packhorse n 1 1 @ 1 0 02386746 -packing n 3 3 @ ~ + 3 2 14976448 00322228 00319312 -packing_box n 2 2 @ %p 2 0 04345595 03871724 -packing_case n 1 1 @ 1 0 03871724 -packing_material n 1 2 @ ~ 1 0 14976448 -packing_needle n 1 1 @ 1 0 03872167 -packing_nut n 1 2 @ #p 1 0 04345787 -packing_plant n 1 1 @ 1 0 03871860 -packinghouse n 2 1 @ 2 1 03872016 03871860 -packman n 1 2 @ ~ 1 0 10411551 -packrat n 2 3 @ ~ #m 2 0 10390600 02339922 -packsack n 1 2 @ ~ 1 0 02769748 -packsaddle n 1 1 @ 1 0 03872273 -packthread n 1 1 @ 1 0 03872386 -pact n 1 2 @ ~ 1 1 06773434 -pad n 7 4 @ ~ #p + 7 1 14973133 13154586 03872885 03872495 03647691 03195485 02440523 -pad_of_paper n 1 2 @ ~ 1 0 14973133 -padauk n 1 3 @ #m %s 1 0 12565368 -padda n 1 3 @ #m %m 1 0 01543508 -padda_oryzivora n 1 2 @ #m 1 0 01543632 -padder n 1 1 @ 1 0 10102130 -padding n 1 4 @ ~ %s + 1 0 03873064 -paddle n 4 4 @ ~ #p + 4 0 03873848 03873699 03873574 03873416 -paddle-box n 1 2 @ #p 1 0 03873996 -paddle-wheeler n 1 2 @ ~ 1 0 03874138 -paddle_box n 1 2 @ #p 1 0 03873996 -paddle_steamer n 1 2 @ ~ 1 0 03874138 -paddle_wheel n 1 2 @ %p 1 0 03874293 -paddlefish n 1 2 @ #m 1 0 02639605 -paddler n 1 2 @ + 1 0 09891470 -paddlewheel n 1 2 @ %p 1 0 03874293 -paddock n 1 1 @ 1 0 03874487 -paddy n 3 2 @ ; 3 0 09715521 08614229 07804900 -paddy_field n 1 1 @ 1 0 08614229 -paddy_wagon n 1 1 @ 1 0 03977966 -paddymelon n 1 2 @ #m 1 0 01879217 -pademelon n 1 2 @ #m 1 0 01879217 -paderewski n 1 1 @ 1 0 11219635 -padlock n 1 3 @ %p + 1 1 03874599 -padouk n 1 3 @ #m %s 1 0 12565368 -padova n 1 2 @ #p 1 0 08813156 -padre n 2 2 @ ; 2 0 10316527 10081204 -padrone n 2 1 @ 2 0 10390807 10390698 -padua n 1 2 @ #p 1 0 08813156 -paducah n 1 2 @ #p 1 0 09090271 -paean n 2 2 @ ; 2 1 06694149 07036862 -paederast n 1 2 @ + 1 0 10411867 -paederasty n 1 1 @ 1 0 00857872 -paediatrician n 1 3 @ ~ + 1 0 09828760 -paediatrics n 1 3 @ ~ + 1 0 06061631 -paedophile n 1 1 @ 1 0 10412669 -paedophilia n 1 1 @ 1 0 00738270 -paella n 1 2 @ ; 1 0 07591961 -paeonia n 1 3 @ #m %m 1 0 11719120 -paeoniaceae n 1 3 @ #m %m 1 0 11718911 -paeony n 1 2 @ #m 1 0 11719286 -pagad n 1 2 @ ; 1 0 08039601 -pagan n 3 3 @ ~ + 3 1 10166394 10390902 10168183 -pagan_religion n 1 2 @ ~ 1 0 06224657 -paganini n 1 1 @ 1 0 11219851 -paganism n 1 2 @ ~ 1 1 06224657 -page n 6 5 @ ~ %s %p + 6 1 06256697 11220149 11219992 10391416 10391248 10391086 -page-at-a-time_printer n 1 2 @ ~ 1 0 03874823 -page_number n 1 2 @ #p 1 0 06258680 -page_printer n 1 2 @ ~ 1 0 03874823 -pageant n 2 1 @ 2 1 00899761 07452251 -pageantry n 2 1 @ 2 0 07452251 00899761 -pageboy n 2 1 @ 2 0 10391416 05260127 -pagellus n 1 3 @ #m %m 1 0 02591493 -pagellus_centrodontus n 1 2 @ #m 1 0 02591613 -pager n 1 2 @ + 1 0 02823124 -paget n 1 1 @ 1 0 11220319 -paget's_disease n 1 1 @ 1 0 14079971 -pagination n 1 3 @ #p + 1 0 06258680 -paging n 2 3 @ #p + 2 1 07128322 06258680 -pago_pago n 1 2 @ #p 1 0 08992067 -pagoda n 1 1 @ 1 0 03874965 -pagoda_tree n 2 1 @ 2 0 11774972 11774795 -pagophila n 1 3 @ #m %m 1 0 02042342 -pagophila_eburnea n 1 2 @ #m 1 0 02042472 -pagophilus n 1 3 @ #m %m 1 0 02080022 -pagophilus_groenlandicus n 1 2 @ #m 1 0 02080146 -pagrus n 1 3 @ #m %m 1 0 02591205 -pagrus_pagrus n 1 2 @ #m 1 0 02591330 -paguridae n 1 3 @ #m %m 1 0 01985947 -pagurus n 1 3 @ #m %m 1 0 01986072 -pahautea n 1 2 @ #m 1 0 11639445 -pahlavi n 3 2 @ ~ 3 0 11220461 06974846 06352954 -pahlevi n 1 1 @ 1 0 11220461 -pahoehoe n 1 1 @ 1 0 14931559 -paid_vacation n 1 1 @ 1 1 15139018 -paige n 1 1 @ 1 0 11220664 -paigle n 2 1 @ 2 0 12091550 12091377 -pail n 2 3 @ ~ #p 2 1 02909870 13768537 -pailful n 1 1 @ 1 0 13768537 -paillasse n 1 1 @ 1 0 03875088 -pain n 5 4 ! @ ~ + 5 3 14322699 07494363 05724694 10391513 05830059 -pain_in_the_ass n 1 2 @ ~ 1 0 05830059 -pain_in_the_neck n 2 2 @ ~ 2 0 10391513 05830059 -pain_pill n 1 2 @ ~ 1 0 02707683 -pain_sensation n 1 2 @ ~ 1 0 05724694 -pain_threshold n 1 1 @ 1 0 05712698 -pain_unit n 1 2 @ ~ 1 0 13607873 -paine n 2 1 @ 2 0 11221107 11220836 -painful_sensation n 1 2 @ ~ 1 0 05724694 -painfulness n 2 3 @ ~ + 2 0 07494363 04720024 -painkiller n 1 2 @ ~ 1 0 02707683 -pains n 1 2 @ ~ 1 1 00788766 -painstakingness n 1 3 @ ~ + 1 0 04672355 -paint n 3 7 @ ~ #p %s %p + ; 3 1 03875218 08590909 04112752 -paint_leaf n 1 2 @ #m 1 0 12920521 -paint_roller n 1 1 @ 1 0 03877229 -paintball n 2 1 @ 2 0 03875806 00467122 -paintball_gun n 1 1 @ 1 0 03875955 -paintbox n 1 1 @ 1 0 03876111 -paintbrush n 1 1 @ 1 0 03876231 -painted-leaf_begonia n 1 1 @ 1 0 12361946 -painted_beauty n 1 2 @ #m 1 0 02276078 -painted_cup n 1 3 @ ~ #m 1 0 12879963 -painted_daisy n 1 2 @ #m 1 0 12022054 -painted_desert n 1 2 @ #p 1 0 09171853 -painted_greenling n 1 2 @ #m 1 0 02649218 -painted_leaf n 2 2 @ #m 2 0 12920719 12920204 -painted_nettle n 1 1 @ 1 0 12845413 -painted_sandgrouse n 1 2 @ #m 1 0 01816017 -painted_terrapin n 1 2 @ #m 1 0 01669654 -painted_tongue n 1 1 @ 1 0 12912801 -painted_tortoise n 1 2 @ #m 1 0 01669654 -painted_turtle n 1 2 @ #m 1 0 01669654 -painter n 4 5 @ ~ #m + ; 4 1 10391653 10393909 03876352 02125311 -painter's_colic n 1 1 @ 1 0 14070055 -painting n 4 4 @ ~ #p + 4 4 03876519 00936620 00717208 00609236 -pair n 4 4 @ ~ %p + 4 3 07985223 13743605 07976936 07958407 -pair_creation n 1 1 @ 1 0 13531435 -pair_formation n 1 1 @ 1 0 13531435 -pair_of_pincers n 1 2 @ ~ 1 0 03941684 -pair_of_pliers n 1 4 @ ~ %p ; 1 0 03966976 -pair_of_scissors n 1 4 @ ~ %p ; 1 0 04148054 -pair_of_tongs n 1 3 @ ~ ; 1 0 04450749 -pair_of_tweezers n 1 2 @ ~ 1 0 03941684 -pair_of_virginals n 1 1 @ 1 0 04537436 -pair_production n 1 1 @ 1 0 13531435 -pairing n 2 3 @ ~ + 2 0 00847340 00389610 -paisa n 1 2 @ #p 1 0 13703942 -paisley n 1 1 @ 1 0 03877351 -paiute n 2 1 @ 2 0 09664556 06915124 -paiwanic n 1 1 @ 1 0 06941041 -pajama n 2 2 @ ~ 2 0 03877674 03877472 -pak_choi n 1 2 @ #m 1 0 11879054 -pakchoi n 1 2 @ #m 1 0 11879054 -pakistan n 1 5 @ #p %m %p - 1 1 08975902 -pakistani n 1 4 @ ~ #m + 1 0 09725772 -pakistani_monetary_unit n 1 2 @ ~ 1 0 13704143 -pakistani_rupee n 1 2 @ %p 1 0 13704274 -pal n 1 3 @ ~ + 1 0 09877951 -palace n 4 4 @ ~ %p + 4 2 03878066 08053121 03878211 03877845 -palace_car n 1 1 @ 1 0 03891664 -palace_of_versailles n 1 2 @ #p 1 0 04529486 -paladin n 1 1 @ 1 0 09906538 -palaeencephalon n 1 1 @ 1 0 05482129 -palaemon n 1 3 @ #m %m 1 0 01987353 -palaemon_australis n 1 3 @ #m %p 1 0 01987727 -palaemonidae n 1 3 @ #m %m 1 0 01987228 -palaeoanthropology n 1 1 @ 1 0 06074189 -palaeobiology n 1 2 @ ~ 1 0 06078724 -palaeobotany n 1 2 @ ~ 1 0 06074372 -palaeoclimatology n 1 1 @ 1 0 06145326 -palaeodendrology n 1 1 @ 1 0 06074728 -palaeoecology n 1 1 @ 1 0 06082709 -palaeoethnography n 1 1 @ 1 0 06146760 -palaeogeography n 1 1 @ 1 0 06145446 -palaeogeology n 1 1 @ 1 0 06117395 -palaeolithic n 1 3 @ #p %p 1 0 15232406 -palaeology n 1 1 @ 1 0 06146142 -palaeontologist n 1 3 @ ~ + 1 0 10394786 -palaeontology n 1 4 @ ~ + - 1 0 06073888 -palaeopathology n 1 1 @ 1 0 06145729 -palaeornithology n 1 1 @ 1 0 06075112 -palaeozoology n 1 2 @ ~ 1 0 06074860 -palaestra n 1 1 @ 1 0 03878511 -palaetiology n 1 1 @ 1 0 06145897 -palaic n 1 1 @ 1 0 06976318 -palankeen n 1 1 @ 1 0 03878294 -palanquin n 1 1 @ 1 0 03878294 -palaquium n 1 3 @ #m %m 1 0 12774891 -palaquium_gutta n 1 2 @ #m 1 0 12775070 -palas n 1 2 @ #m 1 0 12510343 -palatability n 2 4 ! @ ~ + 2 0 04995211 04794580 -palatableness n 2 3 @ ~ + 2 0 04995211 04794580 -palatal n 1 2 @ + 1 0 07114535 -palate n 1 4 @ #p %p + 1 0 05309725 -palatinate n 2 2 @ #p 2 0 08775439 08553424 -palatine n 4 4 @ #p + ; 4 0 10394329 10394141 08797412 05278152 -palatine_artery n 1 1 @ 1 0 05353241 -palatine_bone n 1 1 @ 1 0 05278152 -palatine_raphe n 1 1 @ 1 0 05276566 -palatine_tonsil n 1 2 @ #p 1 0 05309050 -palatine_vein n 1 1 @ 1 0 05375729 -palatopharyngoplasty n 1 1 @ 1 0 00689729 -palau n 2 3 @ #p %p 2 0 08978161 08977948 -palau_islands n 1 3 @ #p %p 1 0 08977948 -palaver n 2 2 @ + 2 0 06695862 06609503 -pale n 1 2 @ #p 1 1 03929952 -pale_ale n 1 2 @ ; 1 0 07890068 -pale_chrysanthemum_aphid n 1 1 @ 1 0 02253391 -pale_coral_root n 1 1 @ 1 0 12054195 -pale_violet n 1 1 @ 1 0 12390099 -pale_yellow n 1 1 @ 1 0 04966941 -paleacrita n 1 3 @ #m %m 1 0 02287204 -paleacrita_vernata n 1 2 @ #m 1 0 02287352 -paleencephalon n 1 1 @ 1 0 05482129 -paleface n 1 2 @ ; 1 0 09639719 -paleness n 3 2 @ + 3 0 04977561 04977247 04975612 -paleo-american n 1 1 @ 1 0 10394434 -paleo-american_culture n 1 2 @ ~ 1 0 08291338 -paleo-amerind n 1 1 @ 1 0 10394434 -paleo-amerind_culture n 1 2 @ ~ 1 0 08291338 -paleo-indian n 1 1 @ 1 0 10394434 -paleo-indian_culture n 1 2 @ ~ 1 0 08291338 -paleoanthropology n 1 2 @ + 1 0 06074189 -paleobiology n 1 2 @ ~ 1 0 06078724 -paleobotany n 1 2 @ ~ 1 0 06074372 -paleocene n 1 2 @ #p 1 0 15126000 -paleocene_epoch n 1 2 @ #p 1 0 15126000 -paleocerebellum n 1 2 @ #p 1 0 05486319 -paleoclimatology n 1 1 @ 1 0 06145326 -paleocortex n 1 2 @ + 1 1 05481870 -paleodendrology n 1 1 @ 1 0 06074728 -paleoecology n 1 1 @ 1 0 06082709 -paleoencephalon n 1 1 @ 1 0 05482129 -paleoethnography n 1 1 @ 1 0 06146760 -paleogeography n 1 1 @ 1 0 06145446 -paleogeology n 1 1 @ 1 0 06117395 -paleographer n 1 1 @ 1 0 10394673 -paleographist n 1 1 @ 1 0 10394673 -paleography n 1 2 @ ~ 1 0 06145586 -paleolith n 1 1 @ 1 0 03878418 -paleolithic n 1 3 @ #p %p 1 0 15232406 -paleolithic_age n 1 3 @ #p %p 1 0 15232406 -paleology n 1 1 @ 1 0 06146142 -paleomammalogy n 1 1 @ 1 0 06075016 -paleontologist n 1 3 @ ~ + 1 0 10394786 -paleontology n 1 4 @ ~ + - 1 0 06073888 -paleopathology n 1 1 @ 1 0 06145729 -paleornithology n 1 1 @ 1 0 06075112 -paleostriatum n 1 2 @ #p 1 0 05498300 -paleozoic n 1 2 @ %p 1 0 15126931 -paleozoic_era n 1 2 @ %p 1 0 15126931 -paleozoology n 1 2 @ ~ 1 0 06074860 -palermo n 1 2 @ #p 1 1 08811473 -palestine n 2 5 @ #p %p + - 2 1 08798771 08798382 -palestine_authority n 1 1 @ 1 0 08320923 -palestine_islamic_jihad n 1 2 @ ; 1 0 08037118 -palestine_liberation_front n 1 2 @ ; 1 0 08037503 -palestine_liberation_organization n 1 3 @ %m ; 1 0 08320385 -palestine_national_authority n 1 1 @ 1 0 08320923 -palestinian n 1 2 @ + 1 0 09713357 -palestinian_arab n 1 1 @ 1 0 09713357 -palestinian_hizballah n 1 2 @ ; 1 0 08037861 -palestinian_islamic_jihad n 1 2 @ ; 1 0 08037118 -palestinian_national_authority n 1 1 @ 1 0 08320923 -palestra n 1 1 @ 1 0 03878511 -palestrina n 1 1 @ 1 0 11221268 -paletiology n 1 1 @ 1 0 06145897 -palette n 3 2 @ #p 3 2 05128370 03878674 03879705 -palette_knife n 1 1 @ 1 0 03878828 -palfrey n 1 2 @ ; 1 0 02378299 -palgrave n 1 1 @ 1 0 11221389 -pali n 1 1 @ 1 0 06973334 -palilalia n 1 1 @ 1 0 14331137 -palimony n 1 1 @ 1 0 13283485 -palimpsest n 1 1 @ 1 0 06407514 -palindrome n 1 1 @ 1 0 06294828 -paling n 1 2 @ %p 1 0 03930313 -palingenesis n 1 3 ! @ + 1 0 13531652 -palinuridae n 1 3 @ #m %m 1 0 01984416 -palinurus n 1 3 @ #m %m 1 0 01984547 -palisade n 1 2 @ + 1 0 03878963 -paliurus n 1 3 @ #m %m 1 0 13143626 -paliurus_spina-christi n 1 2 @ #m 1 0 13143758 -pall n 3 4 @ ~ %p + 3 0 07537259 03879116 03151077 -pall-mall n 1 1 @ 1 0 00463116 -pall_mall n 1 2 @ #p 1 0 08876139 -palladio n 1 2 @ + 1 0 11221495 -palladium n 1 1 @ 1 0 14648754 -pallas n 2 2 @ ; 2 0 09557387 09383998 -pallas's_cat n 1 2 @ #m 1 0 02126787 -pallas's_sandgrouse n 1 2 @ #m 1 0 01816474 -pallas_athena n 1 2 @ ; 1 0 09557387 -pallas_athene n 1 2 @ ; 1 0 09557387 -pallasite n 1 1 @ 1 0 09384106 -pallbearer n 1 1 @ 1 0 10395073 -pallet n 5 1 @ 5 0 05128370 03879582 03879456 03879336 03878674 -pallette n 1 2 @ #p 1 0 03879705 -palliasse n 1 1 @ 1 0 03875088 -palliation n 2 2 @ + 2 0 00355547 00354583 -palliative n 1 2 @ + 1 0 03879854 -pallid_bat n 1 2 @ #m 1 0 02147591 -pallidity n 1 1 @ 1 0 04975612 -pallidness n 1 2 @ + 1 0 04977561 -pallidum n 1 2 @ #p 1 0 05498300 -pallium n 4 6 @ ~ #p %s %p ; 4 0 05486510 05244045 03880129 03880032 -pallone n 1 1 @ 1 0 00483848 -pallor n 1 2 @ + 1 1 04977561 -palm n 4 6 @ ~ #m #p %p + 4 1 05565696 13656075 12582231 06706676 -palm_beach n 1 2 @ #p 1 0 09074285 -palm_cat n 1 2 @ #m 1 0 02138169 -palm_civet n 1 2 @ #m 1 0 02138169 -palm_family n 1 3 @ #m %m 1 0 12581381 -palm_kernel n 1 3 @ #p %s 1 0 12590715 -palm_nut n 1 3 @ #p %s 1 0 12590715 -palm_oil n 1 2 @ #s 1 0 07674617 -palm_reading n 1 1 @ 1 0 05777830 -palm_sunday n 1 1 @ 1 0 15191661 -palm_tree n 1 3 @ ~ #m 1 0 12582231 -palma_christ n 1 3 @ #m %p 1 0 12924623 -palma_christi n 1 3 @ #m %p 1 0 12924623 -palmaceae n 1 3 @ #m %m 1 0 12581381 -palmae n 1 3 @ #m %m 1 0 12581381 -palmales n 1 3 @ #m %m 1 0 12581230 -palmate_leaf n 1 2 @ ~ 1 0 13156986 -palmature n 1 1 @ 1 0 14331271 -palmer n 1 1 @ 1 0 11221650 -palmer_peninsula n 1 2 @ #p 1 0 09198755 -palmetto n 1 2 @ ~ 1 0 12583401 -palmetto_state n 1 5 @ #m #p %p - 1 0 09137869 -palmist n 1 1 @ 1 0 10395209 -palmister n 1 1 @ 1 0 10395209 -palmistry n 1 1 @ 1 0 05777830 -palmitic_acid n 1 2 @ #s 1 0 14973303 -palmitin n 1 1 @ 1 0 14973492 -palmyra n 1 3 @ #m %s 1 0 12585629 -palmyra_palm n 1 3 @ #m %s 1 0 12585629 -palo_alto n 1 3 @ #p %p 1 0 09064468 -palo_santo n 1 3 @ #m %s 1 0 12721477 -palo_verde n 1 2 @ #m 1 0 12498055 -palometa n 1 2 @ #m 1 0 02633677 -palometa_simillima n 1 2 @ #m 1 0 02633677 -palomino n 1 1 @ 1 0 02389128 -palooka n 1 1 @ 1 0 10666752 -paloverde n 1 1 @ 1 0 12493868 -palpability n 1 3 ! @ + 1 0 04760024 -palpation n 1 3 @ ~ + 1 0 00143885 -palpebra n 1 4 @ #p %p + 1 0 05313822 -palpebra_conjunctiva n 1 1 @ 1 0 05315612 -palpebration n 1 2 @ + 1 0 01265176 -palpitation n 2 3 @ ~ + 2 0 14335097 14004572 -palsgrave n 1 2 @ ; 1 0 10394141 -palsy n 2 3 @ ~ + 2 0 14558226 14316470 -paltering n 1 2 @ + 1 0 00752144 -paltriness n 1 2 @ + 1 0 05140278 -pamelor n 1 2 @ ; 1 0 03830582 -pamir_mountains n 1 2 @ #p 1 0 09384223 -pamlico n 2 1 @ 2 0 09664766 06911666 -pampas n 1 2 @ #p 1 0 08713655 -pampas_grass n 1 2 @ #m 1 0 12115180 -pamperer n 1 2 @ + 1 0 10395390 -pampering n 1 3 @ ~ + 1 0 01073241 -pamphlet n 2 3 @ ~ + 2 2 06413889 06409290 -pamphleteer n 1 3 @ ~ + 1 0 10395605 -pan n 4 7 @ ~ #m %m %p + ; 4 1 03880531 09568241 03880323 02481629 -pan_american_day n 1 2 @ #p 1 0 15188688 -pan_american_union n 1 1 @ 1 0 08176901 -pan_gravy n 1 1 @ 1 0 07837912 -pan_paniscus n 1 2 @ #m 1 0 02482650 -pan_troglodytes n 1 3 @ ~ #m 1 0 02481823 -pan_troglodytes_schweinfurthii n 1 1 @ 1 0 02482286 -pan_troglodytes_troglodytes n 1 1 @ 1 0 02482474 -pan_troglodytes_verus n 1 1 @ 1 0 02482060 -panacea n 2 2 @ ~ 2 0 09563042 03880770 -panache n 2 1 @ 2 0 04812871 03880951 -panadol n 1 2 @ ; 1 0 02674482 -panama n 2 6 @ #m #p %m %p + 2 1 08739206 02859184 -panama_canal n 1 2 @ #p 1 0 03881034 -panama_canal_zone n 1 2 @ #p 1 0 08739829 -panama_city n 2 2 @ #p 2 0 09074431 08739512 -panama_hat n 1 1 @ 1 0 02859184 -panama_redwood n 2 2 @ #s 2 0 12563281 12563045 -panama_redwood_tree n 1 1 @ 1 0 12563045 -panama_tree n 1 1 @ 1 0 12195533 -panamanian n 1 3 @ #m + 1 0 09726120 -panamanian_capital n 1 2 @ #p 1 0 08739512 -panamanian_monetary_unit n 1 2 @ ~ 1 0 13664041 -panamica n 1 2 @ #m 1 0 12395463 -panamiga n 1 2 @ #m 1 0 12395463 -panatela n 1 1 @ 1 0 03881207 -panax n 1 3 @ #m %m 1 0 11799520 -panax_ginseng n 1 3 @ #m %p 1 0 11799732 -panax_pseudoginseng n 1 3 @ #m %p 1 0 11799732 -panax_quinquefolius n 1 3 @ #m %p 1 0 11800020 -panax_schinseng n 1 3 @ #m %p 1 0 11799732 -pancake n 1 2 @ ~ 1 0 07640203 -pancake_batter n 1 1 @ 1 0 07861247 -pancake_day n 1 2 @ #p 1 0 15241898 -pancake_turner n 1 1 @ 1 0 03881305 -pancake_turtle n 1 3 @ ~ #m 1 0 01672032 -pancarditis n 1 1 @ 1 0 14339536 -panchayat n 1 2 @ ; 1 0 08311522 -panchayet n 1 2 @ ; 1 0 08311522 -panchen_lama n 1 1 @ 1 0 10395828 -pancho_villa n 1 1 @ 1 0 11366405 -panchromatic_film n 1 1 @ 1 0 03881404 -pancreas n 1 4 @ #p %p + 1 0 05387167 -pancreatectomy n 1 1 @ 1 0 00687027 -pancreatic_artery n 1 1 @ 1 0 05353364 -pancreatic_cancer n 1 1 @ 1 0 14251981 -pancreatic_duct n 1 3 @ #p %p 1 0 05387395 -pancreatic_fibrosis n 1 1 @ 1 0 14155506 -pancreatic_juice n 1 1 @ 1 0 05406397 -pancreatic_vein n 1 1 @ 1 0 05375881 -pancreatin n 1 1 @ 1 0 14848995 -pancreatitis n 1 1 @ 1 0 14352334 -pancytopenia n 1 1 @ 1 0 13973769 -panda n 2 2 @ #m 2 0 02510455 02509815 -panda_bear n 1 2 @ #m 1 0 02510455 -panda_car n 1 2 @ ; 1 0 03881534 -pandanaceae n 1 3 @ #m %m 1 0 12154426 -pandanales n 1 3 @ #m %m 1 0 12154228 -pandanus n 2 3 @ ~ #m 2 0 12155126 12154773 -pandanus_tectorius n 1 1 @ 1 0 12155009 -pandar n 1 3 @ ~ ; 1 0 10433737 -pandean_pipe n 1 1 @ 1 0 03884397 -pandemic n 1 2 @ + 1 0 07435713 -pandemonium n 1 2 @ ~ 1 0 13976322 -pander n 1 4 @ ~ + ; 1 1 10433737 -panderer n 2 4 @ ~ + ; 2 0 10433737 10395926 -pandiculation n 1 1 @ 1 0 00628883 -pandion n 1 3 @ #m %m 1 0 01615949 -pandion_haliaetus n 1 2 @ #m 1 0 01616086 -pandionidae n 1 3 @ #m %m 1 0 01615825 -pandora n 1 2 @ ; 1 0 09578248 -pandora's_box n 1 2 @ ; 1 0 03881625 -pandowdy n 1 1 @ 1 0 07623363 -pandurate_leaf n 1 1 @ 1 0 13159357 -panduriform_leaf n 1 1 @ 1 0 13159357 -pane n 3 3 @ ~ #p 3 1 03881893 03882611 02675657 -pane_of_glass n 1 3 @ ~ #p 1 1 03881893 -panegyric n 1 2 @ + 1 0 06694149 -panegyrist n 1 2 @ + 1 0 09617161 -panel n 8 7 @ ~ #p %m %p + ; 8 1 03882058 08414807 08414608 08414381 03882346 03448253 03187268 03098140 -panel_discussion n 1 1 @ 1 1 07143869 -panel_heating n 1 1 @ 1 0 03882430 -panel_light n 1 1 @ 1 0 03882861 -panel_truck n 1 1 @ 1 0 03173929 -paneling n 1 4 @ ~ #p + 1 1 03882611 -panelist n 1 4 @ ~ #m + 1 0 10396106 -panelling n 1 4 @ ~ #p + 1 0 03882611 -panellist n 1 4 @ ~ #m + 1 0 10396106 -panencephalitis n 1 2 @ ~ 1 0 14343597 -panetela n 1 1 @ 1 0 03881207 -panetella n 1 1 @ 1 0 03881207 -panfish n 1 1 @ 1 0 07782939 -pang n 3 2 @ ~ 3 1 07494972 14329762 14329654 -panga n 1 1 @ 1 0 03699591 -pangaea n 1 2 @ ; 1 0 09384532 -pangea n 1 2 @ ; 1 0 09384532 -pangloss n 1 1 @ 1 0 09602383 -pango_pango n 1 2 @ #p 1 0 08992067 -pangolin n 1 2 @ #m 1 0 02461830 -panhandle n 2 2 @ #p 2 0 08614357 03882960 -panhandler n 1 2 @ + 1 0 10396337 -panhysterectomy n 1 1 @ 1 0 00677434 -panic n 2 3 @ ~ + 2 2 07520612 14405931 -panic_attack n 1 1 @ 1 0 07521437 -panic_button n 1 1 @ 1 0 03883054 -panic_disorder n 1 1 @ 1 0 14381249 -panic_grass n 1 3 @ ~ #m 1 0 12127030 -panicle n 1 1 @ 1 0 13132656 -panicled_aster n 1 1 @ 1 0 11936369 -panicum n 1 3 @ #m %m 1 0 12126911 -panicum_capillare n 1 1 @ 1 0 12127237 -panicum_miliaceum n 1 1 @ 1 0 12127575 -panicum_texanum n 1 1 @ 1 0 12127768 -panicum_virgatum n 1 1 @ 1 0 12127460 -panini n 1 1 @ 1 0 11221778 -panipat n 1 2 @ ; 1 0 01289997 -panjabi n 2 1 @ 2 0 09676247 06971605 -panjandrum n 1 1 @ 1 0 10748620 -pannier n 3 1 @ 3 0 03883524 03883385 03883278 -pannikin n 1 2 @ ; 1 0 03883664 -panocha n 1 1 @ 1 0 07605804 -panoche n 1 1 @ 1 0 07605804 -panofsky n 1 1 @ 1 0 11221956 -panonychus n 1 3 @ #m %m 1 0 01782378 -panonychus_ulmi n 1 2 @ #m 1 0 01782516 -panoply n 1 1 @ 1 0 08461981 -panopticon n 2 3 @ ~ + 2 0 03883944 03883773 -panorama n 2 3 @ ~ + 2 0 05933246 03884072 -panoramic_sight n 1 1 @ 1 0 03884232 -panoramic_view n 1 1 @ 1 0 06209101 -panorpidae n 1 3 @ #m %m 1 0 02162404 -panpipe n 1 1 @ 1 0 03884397 -pansa n 1 2 @ #p 1 0 15220985 -pansexual n 1 1 @ 1 0 10396462 -pansinusitis n 1 1 @ 1 0 14355356 -pansy n 3 2 @ ; 3 1 12390485 10603378 10076033 -pansy_orchid n 1 2 @ #m 1 0 12073554 -pansy_violet n 1 1 @ 1 0 12389501 -pant n 3 4 @ ~ %p + 3 0 07388706 04489008 00837098 -pant_leg n 1 2 @ #p 1 1 03885293 -pantaloon n 3 1 @ 3 0 09602610 09602484 03884554 -pantechnicon n 1 2 @ ; 1 0 03884639 -pantheism n 2 2 @ + 2 0 06225235 06224975 -pantheist n 1 2 @ + 1 0 10396594 -pantheon n 3 3 @ %m ; 3 1 08153337 03884926 03884778 -panther n 3 2 @ #m 3 1 02128925 02128669 02125311 -panther_cat n 1 2 @ #m 1 0 02125494 -panther_lily n 1 1 @ 1 0 12428412 -panthera n 1 3 @ #m %m 1 0 02128120 -panthera_leo n 1 4 @ ~ #m %p 1 0 02129165 -panthera_onca n 1 2 @ #m 1 0 02128925 -panthera_pardus n 1 3 @ ~ #m 1 0 02128385 -panthera_tigris n 1 3 @ ~ #m 1 0 02129604 -panthera_uncia n 1 2 @ #m 1 0 02128757 -pantie n 1 2 @ ; 1 0 03885028 -pantile n 1 1 @ 1 0 14976759 -panting n 2 2 @ + 2 1 00834135 03885194 -panto n 1 2 @ ; 1 0 00550242 -pantograph n 1 1 @ 1 0 03885410 -pantomime n 1 3 @ ~ + 1 1 00550016 -pantomimer n 1 3 @ ~ + 1 0 10318892 -pantomimist n 1 3 @ ~ + 1 0 10318892 -pantothen n 1 1 @ 1 0 14973585 -pantothenic_acid n 1 1 @ 1 0 14973585 -pantotheria n 1 2 @ #m 1 0 01873622 -pantry n 1 2 @ ~ 1 1 03885535 -pantryman n 1 1 @ 1 0 09884509 -pants n 1 2 @ ; 1 0 02854739 -pants_presser n 1 1 @ 1 0 04488857 -pants_suit n 1 1 @ 1 0 03885669 -pantsuit n 1 1 @ 1 0 03885669 -panty n 1 2 @ ; 1 0 03885028 -panty_girdle n 1 1 @ 1 0 03885788 -pantyhose n 1 2 @ %p 1 0 03885904 -pantywaist n 1 1 @ 1 0 10603378 -panzer n 1 2 @ ; 1 0 03886053 -paola_caliari n 1 1 @ 1 0 11363791 -paolo_veronese n 1 1 @ 1 0 11363791 -pap n 3 3 @ #p %p 3 1 06612174 07564796 05554653 -pap_smear n 1 2 @ #p 1 0 05266239 -pap_test n 1 2 @ %p 1 0 05743296 -papa n 1 1 @ 1 1 09988063 -papa_doc n 1 1 @ 1 0 10946624 -papacy n 1 2 @ %m 1 0 08053260 -papaia n 1 3 @ #m %p 1 0 12373100 -papain n 1 1 @ 1 0 14973833 -papal_bull n 1 1 @ 1 0 06726761 -papal_cross n 1 1 @ 1 0 03886151 -papal_infallibility n 1 1 @ 1 0 04805635 -papal_nuncio n 1 2 @ ; 1 0 10368113 -papal_states n 1 2 @ #p 1 0 08809596 -papanicolaou_smear n 1 2 @ #p 1 0 05266239 -papanicolaou_test n 1 2 @ %p 1 0 05743296 -paparazzo n 1 1 @ 1 0 10396727 -papaver n 1 3 @ #m %m 1 0 11900986 -papaver_alpinum n 1 2 @ #m 1 0 11901294 -papaver_argemone n 1 2 @ #m 1 0 11901597 -papaver_californicum n 1 2 @ #m 1 0 11901452 -papaver_heterophyllum n 1 1 @ 1 0 11908549 -papaver_nudicaule n 1 2 @ #m 1 0 11901759 -papaver_orientale n 1 2 @ #m 1 0 11901977 -papaver_rhoeas n 1 2 @ #m 1 0 11902200 -papaver_somniferum n 1 3 @ #m %p 1 0 11902389 -papaveraceae n 1 3 @ #m %m 1 0 11900058 -papaverales n 1 3 @ #m %m 1 0 11864364 -papaverine n 1 1 @ 1 0 03886237 -papaw n 2 4 @ #m #p %p 2 0 11695599 07762114 -papaw_tree n 1 3 @ #m %p 1 0 11695599 -papaya n 2 4 @ #m #p %p 2 0 12373100 07762244 -papaya_family n 1 3 @ #m %m 1 0 12372708 -papaya_juice n 1 1 @ 1 0 07925423 -papaya_tree n 1 3 @ #m %p 1 0 12373100 -papeete n 1 2 @ #p 1 0 08990203 -paper n 7 6 @ ~ #s %s %p + 7 6 14974264 06409752 06267145 06255613 06269956 08062970 03822171 -paper-back_book n 1 2 @ ~ 1 0 03886432 -paper-mache n 1 1 @ 1 0 14975444 -paper-pusher n 1 1 @ 1 0 10397275 -paper_bag n 1 2 @ ~ 1 1 04122825 -paper_birch n 1 2 @ #m 1 0 12281974 -paper_chain n 1 1 @ 1 0 03886641 -paper_chase n 1 1 @ 1 0 00460078 -paper_chromatography n 1 1 @ 1 0 13531927 -paper_clip n 1 1 @ 1 0 03886762 -paper_cup n 1 1 @ 1 0 03216710 -paper_currency n 1 2 @ ~ 1 0 13387209 -paper_cutter n 1 1 @ 1 0 03886940 -paper_doll n 1 1 @ 1 0 03887066 -paper_electrophoresis n 1 1 @ 1 1 13532059 -paper_fastener n 1 2 @ ~ 1 0 03887185 -paper_feed n 1 1 @ 1 0 03887330 -paper_flower n 1 1 @ 1 0 11839167 -paper_gold n 1 1 @ 1 0 13330941 -paper_knife n 1 1 @ 1 0 03658185 -paper_loss n 1 2 ! @ 1 0 13259013 -paper_mill n 1 1 @ 1 0 03887512 -paper_money n 1 2 @ ~ 1 0 13387209 -paper_mulberry n 1 2 @ #m 1 0 12403994 -paper_nautilus n 1 2 @ #m 1 0 01970667 -paper_plant n 1 2 @ #m 1 0 12151365 -paper_plate n 1 1 @ 1 0 03887603 -paper_profit n 1 2 ! @ 1 0 13258825 -paper_round n 1 1 @ 1 0 08613078 -paper_route n 2 1 @ 2 0 08613078 00720331 -paper_rush n 1 2 @ #m 1 0 12151365 -paper_tape n 1 1 @ 1 0 14975266 -paper_tiger n 1 1 @ 1 0 05207352 -paper_towel n 1 1 @ 1 0 03887697 -paper_toweling n 1 1 @ 1 0 14975351 -paper_trail n 1 1 @ 1 0 06504662 -paper_wasp n 1 2 @ ~ 1 0 02212958 -paper_white n 1 1 @ 1 0 12422230 -paperback n 1 3 @ ~ + 1 1 03886432 -paperback_book n 1 2 @ ~ 1 0 03886432 -paperbark_birch n 1 2 @ #m 1 0 12281974 -paperboard n 1 1 @ 1 0 14801146 -paperboy n 1 1 @ 1 0 10396908 -paperclip n 1 1 @ 1 0 03886762 -paperer n 1 2 @ + 1 0 10397001 -paperhanger n 2 2 @ ; 2 0 10397142 10397001 -paperhanging n 1 1 @ 1 0 00718573 -papering n 1 2 @ + 1 0 00718573 -paperknife n 1 1 @ 1 0 03658185 -papermaking n 1 1 @ 1 0 00609423 -papers n 1 3 @ ~ %p 1 1 06470073 -paperweight n 1 1 @ 1 0 03887797 -paperwork n 1 1 @ 1 1 00582071 -paphiopedilum n 1 3 @ #m %m 1 0 12075495 -papier-mache n 1 1 @ 1 0 14975444 -papilionaceae n 1 2 @ #m 1 0 12501537 -papilionoideae n 1 4 @ ~ #m %m 1 0 12501745 -papilla n 3 4 @ #p + ; 3 0 11820191 05473735 05473593 -papillary_muscle n 1 2 @ #p 1 0 05390233 -papillary_tumor n 1 1 @ 1 0 14250081 -papillary_tumour n 1 1 @ 1 0 14250081 -papilledema n 1 1 @ 1 0 14316164 -papilloma n 1 1 @ 1 0 14250081 -papillon n 1 1 @ 1 0 02086910 -papio n 1 2 @ #m 1 0 02486565 -papio_ursinus n 1 1 @ 1 0 02486657 -papism n 2 2 @ + 2 0 06227562 01030488 -papist n 1 3 @ + ; 1 0 09680657 -papoose n 1 1 @ 1 0 10397392 -papoose_root n 1 2 @ #m 1 0 11698562 -papooseroot n 1 2 @ #m 1 0 11698562 -papovavirus n 1 2 @ ~ 1 0 01340155 -pappa n 1 1 @ 1 0 09988063 -pappataci_fever n 1 1 @ 1 0 14219487 -pappoose n 1 1 @ 1 0 10397392 -pappus n 1 2 @ ~ 1 0 11692604 -paprika n 2 6 @ ~ #m #s %s %p 2 0 12901264 07824702 -paprika_sauce n 1 1 @ 1 0 07839172 -paprilus n 1 3 @ #m %m 1 0 02633844 -paprilus_alepidotus n 1 2 @ #m 1 0 02633977 -papua n 1 3 @ #p + 1 0 08844923 -papua_new_guinea n 1 4 @ #m #p %p 1 0 08844557 -papuan n 2 3 @ #m + 2 0 09750282 06941115 -papuan_language n 1 1 @ 1 0 06941115 -papuan_monetary_unit n 1 2 @ ~ 1 0 13680463 -papule n 1 2 @ ~ 1 0 14333863 -papulovesicle n 1 1 @ 1 0 14334011 -papyrus n 3 2 @ #m 3 0 14975598 12151365 06485178 -par n 2 4 @ ~ + ; 2 2 13596756 13946760 -par_value n 1 1 @ 1 0 13335635 -para n 5 5 @ #m #p + ; 5 0 14047171 13671310 10399019 09384771 08854855 -para_aminobenzoic_acid n 1 2 @ #s 1 0 14973965 -para_i n 1 2 @ ; 1 0 10472274 -para_river n 1 2 @ #p 1 0 09384771 -para_rubber n 1 1 @ 1 0 15007677 -para_rubber_tree n 1 1 @ 1 0 12926039 -parable n 2 4 @ ~ + ; 2 1 06372095 06373090 -parabola n 1 2 @ + 1 0 13886371 -parabolic_geometry n 1 2 @ ; 1 0 06005518 -parabolic_mirror n 1 2 @ #p 1 0 03887899 -parabolic_reflector n 1 2 @ ~ 1 0 03888022 -paraboloid n 1 2 @ + 1 0 13897002 -paraboloid_reflector n 1 2 @ ~ 1 0 03888022 -paracelsus n 1 1 @ 1 0 11222054 -paracentesis n 1 1 @ 1 0 00943471 -paracentral_scotoma n 1 1 @ 1 0 14556765 -paracervical_block n 1 1 @ 1 0 14028967 -paracheirodon n 1 3 @ #m %m 1 0 02584004 -paracheirodon_axelrodi n 1 2 @ #m 1 0 02584145 -parachute n 1 4 @ ~ %p + 1 1 03888257 -parachute_jumper n 1 2 @ ~ 1 0 10397482 -parachuter n 1 3 @ ~ + 1 0 10397482 -parachuting n 1 3 @ ~ + 1 0 00303849 -parachutist n 1 3 @ ~ + 1 0 10397482 -paraclete n 1 1 @ 1 0 09537781 -paracosm n 1 1 @ 1 0 05633228 -parade n 3 3 @ ~ + 3 2 08428485 08460395 00521085 -parade_ground n 1 1 @ 1 1 08614545 -parader n 1 3 @ ~ + 1 0 10293332 -paradiddle n 1 1 @ 1 0 07388816 -paradigm n 4 3 @ ~ + 4 2 13804375 05937524 06309684 06210171 -paradisaeidae n 1 3 @ #m %m 1 0 01570969 -paradise n 2 3 @ + ; 2 1 08565506 05628939 -paradise_flower n 1 2 @ #m 1 0 12490054 -paradise_tree n 1 2 @ #m 1 0 12716594 -paradisea_liliastrum n 1 1 @ 1 0 12606688 -paradox n 1 3 @ + ; 1 1 06724559 -paradoxical_sleep n 1 1 @ 1 0 14025755 -paradoxurus n 1 3 @ #m %m 1 0 02138042 -paraduodenal_smear n 1 1 @ 1 0 05266096 -paraesthesia n 1 2 @ ~ 1 0 14324795 -paraffin n 3 2 @ ~ 3 0 15095237 14951377 14926086 -paraffin_oil n 1 1 @ 1 0 14926086 -paraffin_scale n 1 1 @ 1 0 15020528 -paraffin_series n 1 2 @ ~ 1 0 14951377 -paraffin_wax n 1 1 @ 1 0 15095237 -parafovea n 1 2 @ #p 1 0 05455563 -paragliding n 1 1 @ 1 0 00304349 -paragon n 2 2 @ ~ 2 1 05924519 10325243 -paragonite n 1 1 @ 1 0 14689226 -paragraph n 1 3 @ #p + 1 1 06399995 -paragrapher n 1 2 @ + 1 0 10397694 -paraguay n 1 6 @ #m #p %m %p + 1 0 08978343 -paraguay_tea n 1 1 @ 1 0 12757668 -paraguayan n 1 3 @ #m + 1 0 09726246 -paraguayan_monetary_unit n 1 2 @ ~ 1 0 13679494 -parainfluenza_virus n 1 1 @ 1 0 01330314 -parakeet n 1 2 @ ~ 1 1 01821203 -paralanguage n 1 2 @ %p 1 0 07082025 -paraldehyde n 1 1 @ 1 0 14689325 -paralegal n 1 2 @ ; 1 0 10397886 -paraleipsis n 1 1 @ 1 0 07104733 -paralepsis n 1 1 @ 1 0 07104733 -paralichthys n 1 3 @ #m %m 1 0 02661317 -paralichthys_dentatus n 1 2 @ #m 1 0 02661618 -paralichthys_lethostigmus n 1 2 @ #m 1 0 02661473 -paralinguistic_communication n 1 2 @ %p 1 0 07082025 -paralipomenon n 1 3 @ %p ; 1 0 06435394 -paralipsis n 1 1 @ 1 0 07104733 -paralithodes n 1 3 @ #m %m 1 0 01981137 -paralithodes_camtschatica n 1 3 @ #m %p 1 0 01981276 -parallax n 1 2 @ ~ 1 0 11528225 -parallel n 3 4 @ ~ + ; 3 2 04746430 08595720 13880994 -parallel-veined_leaf n 1 1 @ 1 0 13161639 -parallel_axiom n 1 1 @ 1 0 06006458 -parallel_bars n 1 4 @ ~ %p ; 1 1 03888605 -parallel_circuit n 1 1 @ 1 0 03888808 -parallel_interface n 1 1 @ 1 0 03888998 -parallel_lives n 1 1 @ 1 0 06748270 -parallel_of_latitude n 1 2 @ ~ 1 0 08595720 -parallel_operation n 1 2 ! @ 1 0 13532196 -parallel_port n 1 1 @ 1 0 03888998 -parallel_processing n 1 1 @ 1 0 13518140 -parallelepiped n 1 2 @ ~ 1 0 13884740 -parallelepipedon n 1 2 @ ~ 1 0 13884740 -parallelism n 1 1 @ 1 1 04745240 -parallelogram n 1 3 ! @ ~ 1 0 13881175 -parallelopiped n 1 2 @ ~ 1 0 13884740 -parallelopipedon n 1 2 @ ~ 1 0 13884740 -paralogism n 1 1 @ 1 0 05895373 -paralysis n 1 3 @ ~ + 1 0 14558226 -paralysis_agitans n 1 2 @ %p 1 0 14094350 -paralytic n 1 3 @ ~ + 1 0 10398033 -paralytic_abasia n 1 1 @ 1 0 14549600 -paramagnet n 1 2 @ + 1 1 03889208 -paramagnetism n 1 1 @ 1 0 11480521 -paramaribo n 1 2 @ #p 1 0 09031061 -paramecia n 1 2 @ #m 1 0 01396048 -paramecium n 1 2 @ #m 1 0 01396048 -paramedic n 1 2 @ + 1 0 10398176 -paramedical n 1 2 @ + 1 0 10398176 -parameter n 4 4 @ ~ + ; 4 2 05859071 07328305 06356299 05859277 -parametric_quantity n 1 2 @ ~ 1 0 05859071 -parametric_statistic n 1 3 @ ~ ; 1 0 06023022 -parametritis n 1 1 @ 1 0 14352455 -paramilitary n 1 3 @ ~ + 1 0 08207209 -paramilitary_force n 1 2 @ ~ 1 0 08207209 -paramilitary_organisation n 1 2 @ ~ 1 0 08207209 -paramilitary_organization n 1 2 @ ~ 1 1 08207209 -paramilitary_unit n 1 2 @ ~ 1 0 08207209 -paramnesia n 1 2 @ ; 1 0 05672698 -paramount_issue n 1 1 @ 1 0 05815075 -paramountcy n 1 1 @ 1 0 14443228 -paramour n 2 2 @ ~ 2 0 10078333 09952393 -paramyxovirus n 1 2 @ ~ 1 0 01337191 -parana n 1 3 @ #p %p 1 0 09384921 -parana_river n 1 3 @ #p %p 1 0 09384921 -paranasal_sinus n 1 1 @ 1 0 05253561 -parang n 1 1 @ 1 0 03889397 -paranoia n 1 1 @ 1 0 14398390 -paranoiac n 1 1 @ 1 1 10398370 -paranoic_type_schizophrenia n 1 1 @ 1 0 14399852 -paranoid n 1 2 @ + 1 0 10398370 -paranoid_schizophrenia n 1 1 @ 1 0 14399852 -paranthias n 1 3 @ #m %m 1 0 02569770 -paranthias_furcifer n 1 2 @ #m 1 0 02569905 -paranthropus n 1 1 @ 1 0 02477516 -paraparesis n 1 1 @ 1 0 14558700 -parapet n 2 2 @ ~ 2 0 03889626 03889503 -paraph n 1 2 @ #p 1 0 06890688 -paraphernalia n 1 2 @ ~ 1 1 03430959 -paraphilia n 1 2 @ ~ 1 0 00737705 -paraphrase n 1 3 @ ~ + 1 1 06429316 -paraphrasis n 1 2 @ ~ 1 0 06429316 -paraphrenia n 1 1 @ 1 0 14399852 -paraphrenic_schizophrenia n 1 1 @ 1 0 14399852 -paraphysis n 1 1 @ 1 0 13092836 -paraplegia n 1 2 @ + 1 0 14559495 -paraplegic n 1 2 @ + 1 0 10398487 -parapodium n 1 1 @ 1 0 02465257 -parapraxis n 1 2 @ ~ 1 0 00073828 -paraprofessional n 1 2 @ ~ 1 0 10398624 -parapsychologist n 1 3 @ ~ + 1 0 10398806 -parapsychology n 1 3 @ ~ + 1 0 07256375 -paraquat n 1 1 @ 1 0 14974153 -paraquat_poisoning n 1 1 @ 1 0 14512088 -paraquet n 1 2 @ ~ 1 0 01821203 -parasail n 1 1 @ 1 0 03889726 -parasailing n 1 1 @ 1 0 00304349 -parascalops n 1 2 @ #m 1 0 01890033 -parascalops_breweri n 1 1 @ 1 0 01890144 -parashurama n 1 1 @ 1 0 09531515 -parasitaemia n 1 1 @ 1 0 14167298 -parasitaxus n 1 3 @ #m %m 1 0 11657763 -parasitaxus_ustus n 1 2 @ #m 1 0 11657904 -parasite n 2 5 ! @ ~ + ; 2 1 01384687 10252674 -parasite_yew n 1 2 @ #m 1 0 11657904 -parasitemia n 1 1 @ 1 0 14167298 -parasitic_jaeger n 1 2 @ #m 1 0 02044517 -parasitic_plant n 1 2 @ ~ 1 0 13120446 -parasitic_worm n 1 2 @ #m 1 0 01922717 -parasitism n 1 1 @ 1 0 13842415 -parasol n 1 1 @ 1 0 03889871 -parasol_mushroom n 1 2 @ #m 1 0 13013764 -parasympathetic n 1 3 @ #p + 1 0 05505679 -parasympathetic_nervous_system n 1 2 @ #p 1 0 05505679 -parathelypteris n 1 3 @ #m %m 1 0 13229747 -parathelypteris_novae-boracensis n 1 2 @ #m 1 0 13229951 -parathelypteris_simulata n 1 2 @ #m 1 0 13230190 -parathion n 1 1 @ 1 0 15012214 -parathion_poisoning n 1 1 @ 1 0 14512270 -parathormone n 1 1 @ 1 0 05411785 -parathyroid n 1 1 @ 1 0 05330365 -parathyroid_gland n 1 1 @ 1 0 05330365 -parathyroid_hormone n 1 1 @ 1 0 05411785 -paratrooper n 1 2 @ #m 1 0 10399019 -paratroops n 1 3 @ %m ; 1 0 08390374 -paratyphoid n 1 1 @ 1 0 14138538 -paratyphoid_fever n 1 1 @ 1 0 14138538 -paraumbilical_vein n 1 1 @ 1 0 05376050 -parazoa n 1 3 @ #m %m 1 0 01906328 -parazoan n 1 3 @ ~ #m 1 0 01906749 -parcae n 1 1 @ 1 0 09565334 -parcel n 4 3 @ ~ + 4 2 03871083 01085098 08673395 08008017 -parcel_bomb n 1 1 @ 1 0 03657918 -parcel_of_land n 1 2 @ ~ 1 0 08673395 -parcel_post n 1 1 @ 1 0 06265983 -parceling n 1 3 @ ~ + 1 0 01083645 -parcellation n 1 2 @ + 1 0 00386164 -parcelling n 1 3 @ ~ + 1 0 01083645 -parcheesi n 1 2 @ ; 1 0 00505615 -parchesi n 1 2 @ ~ 1 0 00505446 -parchisi n 1 2 @ ~ 1 0 00505446 -parchment n 2 2 @ ~ 2 1 14975779 14759003 -pardner n 1 2 @ ~ 1 1 09935434 -pardon n 3 4 @ ~ + ; 3 1 01227190 06552639 01249315 -pardoner n 2 3 @ ~ + 2 0 10399299 10399130 -paregmenon n 1 1 @ 1 0 07104912 -paregoric n 1 1 @ 1 0 03889974 -parenchyma n 2 3 @ ~ #s 2 1 05268619 13096317 -parent n 2 5 ! @ ~ #m + 2 1 10399491 00006150 -parentage n 3 3 @ ~ + 3 0 14425414 13813765 08101937 -parental_quality n 1 2 @ ~ 1 0 04872826 -parenthesis n 2 2 @ + 2 1 06843393 06600684 -parenthesis-free_notation n 1 2 @ ~ 1 0 06814236 -parenthetical n 1 2 @ + 1 0 06315873 -parenthetical_expression n 1 1 @ 1 0 06315873 -parenthood n 1 2 @ + 1 1 14425414 -parer n 2 2 @ + 2 0 10399895 03890093 -paresis n 1 2 @ ~ 1 0 14558599 -paresthesia n 1 2 @ ~ 1 0 14324795 -paretic n 1 1 @ 1 0 10400003 -pareto n 1 1 @ 1 0 11222457 -parfait n 1 1 @ 1 0 07616386 -parfait_glass n 1 1 @ 1 0 03890233 -parget n 1 2 @ + 1 0 14977358 -pargeting n 3 2 @ + 3 0 14977358 03890358 00718689 -pargetry n 1 2 @ + 1 0 03890358 -pargetting n 3 2 @ + 3 0 14977358 03890358 00718689 -parhelic_circle n 1 1 @ 1 0 11487533 -parhelic_ring n 1 1 @ 1 0 11487533 -parhelion n 1 2 @ + 1 0 11487732 -pari-mutuel_machine n 1 1 @ 1 0 03890514 -pariah n 1 2 @ ~ 1 0 10386312 -pariah_dog n 1 1 @ 1 0 02085118 -paridae n 1 3 @ #m %m 1 0 01591490 -paries n 1 3 @ ~ ; 1 0 05604254 -parietal_bone n 1 3 @ #p %p 1 0 05541645 -parietal_cortex n 1 3 @ #p %p 1 0 05494130 -parietal_gyrus n 1 2 @ #p 1 0 05489070 -parietal_lobe n 1 3 @ #p %p 1 0 05494130 -parietal_pericardium n 1 2 @ #p 1 0 05428794 -parietal_placentation n 1 1 @ 1 0 11682166 -parietal_pleura n 1 1 @ 1 0 05388311 -parietales n 1 3 @ #m %m 1 0 12359026 -parietaria n 1 3 @ #m %m 1 0 12394494 -parietaria_difussa n 1 2 @ #m 1 0 12394638 -parieto-occipital_fissure n 1 1 @ 1 0 05224358 -parieto-occipital_sulcus n 1 1 @ 1 0 05224358 -parietomastoid_suture n 1 2 @ #p 1 0 05544906 -parimutuel n 1 1 @ 1 1 00507162 -paring n 2 4 @ ~ + ; 2 0 09385137 07851054 -paring_knife n 1 1 @ 1 0 03890093 -paris n 4 7 @ #m #p %m %p + ; 4 1 08932568 12469372 09500217 09145751 -paris_daisy n 1 2 @ #m 1 0 11925898 -paris_green n 2 1 @ 2 0 15012327 04968257 -paris_quadrifolia n 1 2 @ #m 1 0 12469517 -paris_university n 1 2 @ #p 1 0 03890713 -parish n 2 4 @ #p %m + 2 1 08223688 08615001 -parishioner n 1 2 @ #m 1 1 10400108 -parisian n 1 4 @ ~ #m + 1 0 09708750 -parisienne n 1 2 @ #m 1 0 09708889 -parisology n 1 1 @ 1 1 06604963 -parity n 5 3 @ ~ ; 5 0 14047171 13790133 13625482 06105314 04748426 -parity_bit n 1 2 @ ; 1 0 13625482 -parity_check n 1 1 @ 1 0 05825942 -parjanya n 1 1 @ 1 0 09527454 -parji n 1 1 @ 1 0 06981920 -park n 6 6 @ ~ #p %p + ; 6 3 08615149 08615374 02782778 11222655 08615638 03890881 -park_ave. n 1 2 @ #p 1 0 09122258 -park_avenue n 1 2 @ #p 1 0 09122258 -park_bench n 1 1 @ 1 0 03891251 -park_commissioner n 1 1 @ 1 0 10400205 -parka n 1 3 @ ~ ; 1 0 03891051 -parka_squirrel n 1 1 @ 1 0 02359047 -parker n 2 1 @ 2 0 11222914 11222759 -parker_house_roll n 1 1 @ 1 0 07692114 -parkeriaceae n 1 3 @ #m %m 1 0 13171447 -parkersburg n 1 2 @ #p 1 0 09156889 -parkia n 1 3 @ #m %m 1 0 11763473 -parkia_javanica n 1 1 @ 1 0 11763874 -parking n 2 2 @ + 2 2 13778671 00168505 -parking_area n 1 2 @ ~ 1 1 08615638 -parking_brake n 1 2 @ #p 1 0 03483637 -parking_lot n 1 2 @ ~ 1 1 08615638 -parking_meter n 1 1 @ 1 0 03891332 -parking_space n 1 1 @ 1 1 08615810 -parking_ticket n 1 1 @ 1 0 06559004 -parking_zone n 1 1 @ 1 0 08615810 -parkinson n 2 1 @ 2 0 11223294 11223119 -parkinson's n 1 2 @ %p 1 0 14094350 -parkinson's_disease n 1 2 @ %p 1 1 14094350 -parkinson's_law n 2 1 @ 2 0 06767512 06767287 -parkinson's_syndrome n 1 2 @ %p 1 0 14094350 -parkinsonia n 1 3 @ #m %m 1 0 12497492 -parkinsonia_aculeata n 1 2 @ #m 1 0 12497669 -parkinsonia_florida n 1 2 @ #m 1 0 12498055 -parkinsonism n 1 2 @ %p 1 0 14094350 -parkland n 1 2 @ ~ 1 0 08615149 -parks n 1 1 @ 1 0 11223396 -parkway n 1 1 @ 1 0 03242713 -parlance n 1 1 @ 1 1 07081177 -parlay n 1 1 @ 1 0 00507271 -parley n 1 2 @ + 1 0 07141437 -parliament n 2 5 @ ~ + ; - 2 1 08319198 00492497 -parliamentarian n 2 3 @ ~ #m 2 0 10400437 10400309 -parliamentary_agent n 1 2 @ ; 1 0 10400618 -parliamentary_democracy n 1 1 @ 1 0 08363711 -parliamentary_law n 1 3 @ ~ - 1 0 06652878 -parliamentary_monarchy n 1 1 @ 1 0 08364044 -parliamentary_procedure n 1 3 @ ~ - 1 0 06652878 -parlor n 2 3 @ ~ #p 2 2 03891538 03679712 -parlor_car n 1 1 @ 1 0 03891664 -parlor_game n 1 2 @ ~ 1 0 00501722 -parlor_grand n 1 1 @ 1 0 02766792 -parlor_grand_piano n 1 1 @ 1 0 02766792 -parlormaid n 1 1 @ 1 0 10400826 -parlour n 2 3 @ ~ #p 2 0 03891538 03679712 -parlour_car n 1 1 @ 1 0 03891664 -parlour_game n 1 2 @ ~ 1 0 00501722 -parlour_grand n 1 1 @ 1 0 02766792 -parlour_grand_piano n 1 1 @ 1 0 02766792 -parlourmaid n 1 1 @ 1 0 10400826 -parmelia n 1 3 @ #m %m 1 0 12991645 -parmeliaceae n 1 3 @ #m %m 1 0 12991488 -parmenides n 1 1 @ 1 0 11223642 -parmesan n 1 1 @ 1 0 07854348 -parnahiba n 1 2 @ #p 1 0 09385416 -parnaiba n 1 2 @ #p 1 0 09385416 -parnassia n 1 3 @ ~ #m 1 0 12801520 -parnassia_fimbriata n 1 2 @ #m 1 0 12801966 -parnassia_palustris n 1 2 @ #m 1 0 12801781 -parnassus n 1 3 @ #p ; 1 0 09385586 -parnell n 1 1 @ 1 0 11223929 -parochetus n 1 3 @ #m %m 1 0 12555720 -parochetus_communis n 1 2 @ #m 1 0 12555859 -parochial_school n 1 2 @ ~ 1 0 08284221 -parochialism n 1 1 @ 1 0 06205698 -parodist n 1 3 @ ~ + 1 0 10400998 -parody n 2 2 @ + 2 1 06780309 00549610 -parol_evidence_rule n 1 1 @ 1 0 06654639 -parole n 3 3 @ + ; 3 0 07227301 06674188 01257701 -parolee n 1 2 @ + 1 0 10477585 -paronomasia n 1 1 @ 1 0 06781581 -paronychia n 2 3 @ #m %m 2 0 14178794 11813309 -parophrys n 1 3 @ #m %m 1 0 02664511 -parophrys_vitulus n 1 2 @ #m 1 0 02664642 -paroquet n 1 2 @ ~ 1 0 01821203 -parosamia n 1 1 @ 1 0 14059021 -parotid_gland n 1 1 @ 1 0 05533212 -parotid_vein n 1 1 @ 1 0 05376219 -parotitis n 1 2 @ #p 1 0 14352570 -parousia n 1 2 @ ; 1 0 07322550 -paroxetime n 1 1 @ 1 0 03891851 -paroxysm n 1 2 @ + 1 1 14082788 -paroxysmal_trepidant_abasia n 1 1 @ 1 0 14549709 -paroxytone n 1 1 @ 1 0 06301672 -parquet n 2 2 @ #p 2 0 03892178 03892035 -parquet_circle n 1 2 @ #p 1 0 03892273 -parquet_floor n 1 1 @ 1 0 03892178 -parqueterie n 1 1 @ 1 0 03892425 -parquetry n 1 1 @ 1 0 03892425 -parr n 3 1 @ 3 0 11224046 02535080 02513727 -parrakeet n 1 2 @ ~ 1 0 01821203 -parricide n 2 2 @ ~ 2 0 10401204 00221596 -parrish n 1 1 @ 1 0 11224173 -parroket n 1 2 @ ~ 1 0 01821203 -parroquet n 1 2 @ ~ 1 0 01821203 -parrot n 2 4 @ ~ #m + 2 1 01816887 10401331 -parrot's_beak n 1 1 @ 1 0 12517077 -parrot's_bill n 1 1 @ 1 0 12517077 -parrot_disease n 1 1 @ 1 0 14274975 -parrot_fever n 1 1 @ 1 0 14149773 -parrotfish n 1 2 @ #m 1 0 02610664 -parrotia n 1 3 @ #m %m 1 0 12317164 -parrotiopsis n 1 2 @ #m 1 0 12317611 -parry n 2 3 @ + ; 2 0 01174495 00135504 -parry's_penstemon n 1 2 @ #m 1 0 12887532 -parry's_pinyon n 1 1 @ 1 0 11610823 -parry_manzanita n 1 1 @ 1 0 12232280 -pars_anterior n 1 2 @ #p 1 0 05484573 -pars_distilis n 1 2 @ #p 1 0 05484573 -pars_intermedia n 1 2 @ #p 1 0 05484711 -pars_nervosa n 1 3 @ #p %p 1 0 05484862 -parsec n 1 1 @ 1 0 13657489 -parsee n 1 1 @ 1 0 10401468 -parseeism n 1 1 @ 1 0 06244445 -parser n 1 2 @ #p 1 0 06577369 -parsi n 1 1 @ 1 0 10401468 -parsiism n 1 1 @ 1 0 06244445 -parsimoniousness n 2 3 @ ~ + 2 0 04893525 04833687 -parsimony n 2 3 @ ~ + 2 0 04893525 04833687 -parsley n 2 3 @ ~ #m 2 0 12942395 07819896 -parsley-leaved_thorn n 1 2 @ #m 1 0 12626674 -parsley_haw n 1 2 @ #m 1 0 12626674 -parsnip n 3 4 @ ~ #m #p 3 0 12941914 12941536 07735404 -parson n 1 2 @ ~ 1 1 09983572 -parson's_nose n 1 2 @ #p 1 0 07649463 -parsonage n 1 2 @ ~ 1 1 03892557 -parsons n 1 1 @ 1 0 11224309 -parsons_table n 1 1 @ 1 0 03892728 -part n 12 4 @ ~ #p + 12 12 13809207 03892891 09385911 05671974 08630039 00720565 05929008 13285176 05867413 05256358 07030718 00787465 -part-of-speech_tagger n 1 1 @ 1 0 06577916 -part-owner n 1 1 @ 1 0 10402603 -part-singing n 1 1 @ 1 0 01255452 -part-timer n 1 1 @ 1 0 10402709 -part_music n 1 2 @ ~ 1 0 07030976 -part_name n 1 1 @ 1 0 06293746 -part_of_speech n 1 2 @ ~ 1 1 06317464 -part_to_whole_relation n 1 2 @ %p 1 0 13808708 -partaker n 1 3 @ ~ + 1 0 10401639 -parted_leaf n 1 1 @ 1 0 13161754 -parterre n 2 2 @ #p 2 0 03893603 03892273 -parthenium n 1 3 @ #m %m 1 0 12000609 -parthenium_argentatum n 1 2 @ #m 1 0 12000851 -parthenium_hysterophorus n 1 2 @ #m 1 0 12001077 -parthenium_integrifolium n 1 2 @ #m 1 0 12001294 -parthenocarpy n 1 2 @ ; 1 0 13532356 -parthenocissus n 1 3 @ #m %m 1 0 13148019 -parthenocissus_quinquefolia n 1 2 @ #m 1 0 13148384 -parthenocissus_tricuspidata n 1 2 @ #m 1 0 13148208 -parthenogenesis n 2 3 @ ~ + 2 0 13532747 13532501 -parthenogeny n 2 2 @ ~ 2 0 13532747 13532501 -parthenon n 1 2 @ #p 1 1 03893732 -parthenote n 1 2 @ ; 1 0 05432623 -parthia n 1 4 @ #p %m + 1 0 08978821 -parthian n 2 3 @ #m + 2 0 09726374 06975007 -parti_pris n 1 1 @ 1 0 05949937 -partial n 2 1 @ 2 0 06015053 05720093 -partial_abortion n 1 1 @ 1 0 00230997 -partial_breach n 1 1 @ 1 0 00070807 -partial_correlation n 1 3 @ ~ ; 1 0 06031866 -partial_denture n 1 1 @ 1 0 03893935 -partial_derivative n 1 1 @ 1 0 06015053 -partial_differential_equation n 1 1 @ 1 0 06670866 -partial_eclipse n 1 1 @ 1 0 07369344 -partial_tone n 1 1 @ 1 0 05720093 -partial_veil n 1 3 @ ~ %p 1 0 13095013 -partial_verdict n 1 2 @ ; 1 0 01193362 -partiality n 2 4 ! @ ~ + 2 0 07497797 06201136 -partialness n 1 2 @ + 1 0 14462064 -participant n 2 3 @ ~ + 2 1 10401829 10439851 -participant_role n 1 3 @ ~ ; 1 0 06331803 -participation n 2 4 ! @ ~ + 2 1 01239064 13924659 -participation_financing n 1 1 @ 1 0 13399570 -participation_loan n 1 1 @ 1 1 13399570 -participial n 1 3 @ ~ + 1 0 06330528 -participle n 1 3 @ ~ + 1 0 06330528 -particle n 3 2 @ ~ 3 3 14585519 09386422 06326406 -particle_accelerator n 1 3 @ ~ %p 1 0 02670382 -particle_beam n 1 2 @ ~ 1 0 11485907 -particle_board n 1 2 @ ~ 1 0 03331390 -particle_detector n 1 2 @ ~ 1 0 03894051 -particle_physics n 1 2 @ - 1 0 06101551 -particolored_buckeye n 1 1 @ 1 0 12769318 -particular n 3 4 ! @ ~ ; 3 1 05818182 13809920 06751142 -particular_baptist n 1 1 @ 1 0 08090329 -particular_date n 1 1 @ 1 0 15179888 -particular_proposition n 1 3 ! @ ; 1 0 06751142 -particularisation n 1 2 @ + 1 0 07202812 -particularism n 1 2 @ + 1 0 05705075 -particularity n 1 4 ! @ ~ + 1 0 04762633 -particularization n 1 2 @ + 1 0 07202812 -particulate n 1 2 @ ~ 1 0 14839439 -particulate_matter n 1 2 @ ~ 1 0 14839439 -particulate_radiation n 1 2 @ ~ 1 0 11499510 -parting n 2 4 @ ~ #p + 2 1 00053097 05256358 -partisan n 3 4 ! @ ~ + 3 0 10402086 10059582 03894217 -partisanship n 1 3 @ ~ + 1 0 06201136 -partita n 2 1 @ 2 0 07047275 07047165 -partition n 4 4 @ ~ + ; 4 1 03894379 13627114 05222790 00397953 -partitioning n 2 3 @ ~ + 2 0 05781800 00397953 -partitionist n 1 2 @ + 1 0 10402285 -partitive n 1 2 @ + 1 0 06301792 -partiya_karkeran_kurdistan n 1 2 @ ; 1 0 08029908 -partizan n 2 3 @ ~ + 2 0 10059582 03894217 -partner n 3 4 @ ~ #m + 3 2 10640620 09935434 10402417 -partner_in_crime n 1 1 @ 1 0 09953483 -partner_relation n 1 2 @ ; 1 0 13839888 -partnership n 3 4 @ ~ %m + 3 1 08060694 13781348 06526291 -partnership_certificate n 1 1 @ 1 0 13419032 -partridge n 5 4 @ ~ #m ; 5 0 07647496 01810268 01807496 01804478 01797886 -partridge_pea n 1 2 @ #m 1 0 12494358 -partridgeberry n 1 2 @ #m 1 0 12668517 -parts n 1 1 @ 1 1 08615926 -parts_bin n 1 1 @ 1 0 03894677 -parts_catalog n 1 1 @ 1 0 06488629 -parts_catalogue n 1 1 @ 1 0 06488629 -parts_department n 1 1 @ 1 0 08118849 -parts_inventory n 1 1 @ 1 0 06492569 -partsong n 1 2 @ ~ 1 0 07052799 -parturiency n 1 5 @ ~ #p %p + 1 0 14048441 -parturition n 1 3 @ ~ #p 1 0 13532886 -party n 5 5 @ ~ #m + ; 5 5 08256968 08252602 08264897 07447641 10402824 -party_boss n 1 1 @ 1 0 10403162 -party_favor n 1 2 @ ~ 1 0 03894762 -party_favour n 1 2 @ ~ 1 0 03894762 -party_game n 1 1 @ 1 1 00458800 -party_girl n 1 1 @ 1 0 10403366 -party_line n 2 1 @ 2 0 06660816 03894933 -party_liner n 1 1 @ 1 0 10403633 -party_man n 1 1 @ 1 0 10403633 -party_of_democratic_kampuchea n 1 2 @ ; 1 0 08028999 -party_of_god n 1 2 @ ; 1 0 08023374 -party_pooper n 1 3 @ ~ ; 1 0 10638136 -party_spirit n 1 1 @ 1 0 01207521 -party_to_the_action n 1 1 @ 1 0 08265469 -party_to_the_transaction n 1 1 @ 1 0 08265469 -party_wall n 1 1 @ 1 0 03895038 -party_whip n 1 1 @ 1 0 10776766 -partygoer n 1 1 @ 1 0 10403490 -parula n 1 3 @ #m %m 1 0 01567530 -parula_americana n 1 2 @ #m 1 0 01567678 -parula_warbler n 1 2 @ #m 1 0 01567678 -parulidae n 1 3 @ #m %m 1 0 01566888 -parus n 1 3 @ #m %m 1 0 01591910 -parus_atricapillus n 1 1 @ 1 0 01592257 -parus_bicolor n 1 2 @ #m 1 0 01592387 -parus_caeruleus n 1 2 @ #m 1 0 01592694 -parus_carolinensis n 1 1 @ 1 0 01592540 -parvati n 1 1 @ 1 0 09527560 -parvenu n 1 3 @ ~ + 1 0 10740868 -parvis n 1 1 @ 1 0 03895170 -parvo n 1 1 @ 1 0 01341183 -parvovirus n 1 1 @ 1 0 01341183 -pas n 1 2 @ ; 1 0 00286112 -pas_de_calais n 1 1 @ 1 0 09447450 -pas_de_deux n 1 3 @ #p %p 1 0 00529224 -pas_de_quatre n 1 2 @ #p 1 0 00529511 -pas_de_trois n 1 2 @ #p 1 0 00529400 -pas_seul n 1 2 @ ; 1 0 00529101 -pasadena n 1 2 @ #p 1 0 09064594 -pasang n 2 3 @ ~ #m 2 0 02428349 02417663 -pascal n 3 1 @ 3 0 13711303 11224419 06903115 -pascal's_law n 1 1 @ 1 0 05886613 -pascal's_law_of_fluid_pressures n 1 1 @ 1 0 05886613 -pascal_celery n 1 1 @ 1 0 07730562 -pascal_compiler n 1 1 @ 1 0 06574231 -pasch n 2 1 @ 2 0 15191494 15191401 -pascha n 2 1 @ 2 0 15191494 15191401 -paschal_celery n 1 1 @ 1 0 07730562 -paschal_lamb n 1 1 @ 1 0 06883274 -paseo n 1 2 @ ~ 1 0 04544979 -pasha n 1 1 @ 1 0 10403768 -pashto n 1 2 @ - 1 0 06975132 -pashtoon n 1 1 @ 1 0 09689739 -pashtu n 1 2 @ - 1 0 06975132 -pashtun n 2 1 @ 2 0 09689739 08484648 -pasigraphy n 1 1 @ 1 0 06897627 -pasiphae n 1 2 @ ; 1 0 09568643 -paso_doble n 2 1 @ 2 1 00536872 07056265 -paspalum n 1 2 @ #m 1 0 12128071 -paspalum_dilatatum n 1 2 @ #m 1 0 12128071 -paspalum_distichum n 1 2 @ #m 1 0 12128490 -paspalum_notatum n 1 2 @ #m 1 0 12128306 -pasque_flower n 1 3 @ ~ #m 1 0 11737534 -pasqueflower n 1 3 @ ~ #m 1 0 11737534 -pasquinade n 1 1 @ 1 0 06780309 -pass n 16 5 @ ~ #p + ; 16 7 00127286 15139552 00560529 09386842 06691083 06690408 00304592 13936939 07418822 07341860 07176499 06690226 06519369 00787061 00105820 00065575 -pass-through n 1 1 @ 1 0 03897130 -pass_catcher n 1 1 @ 1 0 10510818 -pass_completion n 1 2 @ ; 1 0 00557419 -pass_receiver n 1 1 @ 1 0 10510818 -passado n 1 3 @ %p ; 1 0 01174251 -passage n 10 5 @ ~ #p + ; 10 8 00201058 06400271 03895293 01126856 00309115 07044917 05248181 00865600 07310642 00318035 -passageway n 2 2 @ ~ 2 2 03895585 05248181 -passamaquody n 1 1 @ 1 0 09664908 -passbook n 1 1 @ 1 0 13414159 -passbook_savings_account n 1 1 @ 1 0 13364821 -passe-partout n 2 2 @ ~ 2 0 03896984 03896526 -passed_ball n 1 1 @ 1 0 00108665 -passel n 1 2 @ ~ 1 0 13774404 -passementerie n 1 2 @ ~ 1 0 04484160 -passenger n 1 3 @ ~ ; 1 1 10403876 -passenger_car n 1 3 @ ~ #m 1 0 03895866 -passenger_pigeon n 1 2 @ #m 1 0 01815270 -passenger_ship n 1 3 @ ~ %p 1 0 03896103 -passenger_train n 1 4 @ ~ %m %p 1 0 03896233 -passenger_van n 1 2 @ ~ 1 0 03896419 -passenger_vehicle n 1 5 @ ~ #m %p - 1 0 02924116 -passer n 5 5 @ #m %m + ; 5 0 10404672 10404550 10404426 10404242 01539772 -passer-by n 1 1 @ 1 0 10404672 -passer_domesticus n 1 2 @ #m 1 0 01539925 -passer_montanus n 1 2 @ #m 1 0 01540090 -passerby n 1 1 @ 1 1 10404672 -passeres n 1 3 @ #m %m 1 0 01524885 -passeridae n 1 3 @ #m %m 1 0 01539377 -passeriform_bird n 1 3 @ ~ #m 1 0 01524359 -passeriformes n 1 3 @ #m %m 1 0 01523908 -passerina n 1 3 @ #m %m 1 0 01537360 -passerina_cyanea n 1 2 @ #m 1 0 01537544 -passerine n 1 4 @ ~ #m + 1 0 01524359 -passero n 1 2 @ ; 1 0 01290162 -passero_cape n 1 2 @ #p 1 0 08811653 -passiflora n 1 3 @ #m %m 1 0 12383256 -passiflora_edulis n 1 1 @ 1 0 12383737 -passiflora_foetida n 1 1 @ 1 0 12384839 -passiflora_incarnata n 1 1 @ 1 0 12384227 -passiflora_laurifolia n 1 2 @ %p 1 0 12384375 -passiflora_ligularis n 1 2 @ %p 1 0 12383894 -passiflora_maliformis n 1 2 @ %p 1 0 12384680 -passiflora_mollissima n 1 1 @ 1 0 12384569 -passiflora_quadrangularis n 1 2 @ %p 1 0 12384037 -passifloraceae n 1 3 @ #m %m 1 0 12383073 -passing n 7 5 ! @ ~ + ; 7 2 00560529 07333649 07310642 07292577 00865600 00340192 00065575 -passing_comment n 1 1 @ 1 0 06766092 -passing_game n 1 3 @ ~ ; 1 0 00560529 -passing_note n 1 1 @ 1 0 06870437 -passing_play n 1 3 @ ~ ; 1 0 00560529 -passing_shot n 1 1 @ 1 0 00569608 -passing_tone n 1 1 @ 1 0 06870437 -passing_water n 1 2 @ ; 1 0 13506727 -passion n 7 2 @ ~ 7 6 07480896 04628192 14039179 09181557 07488788 05813229 14325220 -passion_fruit n 1 3 @ ~ #p 1 0 07753743 -passion_of_christ n 1 1 @ 1 0 14325220 -passion_play n 1 1 @ 1 0 07018724 -passion_sunday n 1 1 @ 1 0 15191739 -passion_week n 1 2 @ #p 1 0 15181444 -passionateness n 1 3 @ ~ + 1 0 07480896 -passionflower n 1 4 @ ~ #m %p 1 0 12383402 -passionflower_family n 1 3 @ #m %m 1 0 12383073 -passionflower_vine n 1 4 @ ~ #m %p 1 0 12383402 -passive n 1 2 @ + 1 0 13803431 -passive_air_defense n 1 1 @ 1 0 00960546 -passive_immunity n 1 1 @ 1 0 14527721 -passive_matrix_display n 1 2 @ ~ 1 0 03896628 -passive_resistance n 1 2 @ ~ 1 0 01242716 -passive_resister n 1 1 @ 1 0 10362195 -passive_source n 1 1 @ 1 0 10404810 -passive_transport n 1 1 @ 1 0 13533186 -passive_trust n 1 2 ! @ 1 0 13361333 -passive_voice n 1 2 ! @ 1 0 13803431 -passiveness n 2 4 @ ~ = + 2 0 04907020 04636397 -passivism n 1 1 @ 1 0 05965586 -passivity n 2 4 @ ~ = + 2 1 04636397 04907020 -passkey n 1 2 @ ~ 1 0 03896984 -passover n 1 3 @ ~ ; 1 0 15195928 -passover_supper n 1 3 @ ~ ; 1 0 01035667 -passport n 3 4 @ ~ %p ; 3 0 06691083 06500937 04673668 -password n 1 1 @ 1 0 06674188 -past n 3 4 ! @ ~ #p 3 3 15120823 15141693 06330262 -past_master n 2 1 @ 2 0 10405229 10405107 -past_participle n 1 1 @ 1 0 06331154 -past_perfect n 1 1 @ 1 0 13806735 -past_perfect_tense n 1 1 @ 1 0 13806735 -past_progressive n 1 1 @ 1 0 13806964 -past_progressive_tense n 1 1 @ 1 0 13806964 -past_tense n 1 2 @ ~ 1 0 06330262 -past_times n 1 2 @ ~ 1 0 15120823 -pasta n 2 2 @ ~ 2 0 07863374 07698915 -pasta_salad n 1 2 @ ~ 1 0 07807710 -pasta_sauce n 1 2 @ ~ 1 0 07838233 -paste n 4 3 @ ~ + 4 1 14705287 14882248 14704966 07856270 -paste-up n 1 2 @ ~ 1 0 03897334 -pasteboard n 1 2 @ ~ 1 0 14801271 -pastel n 1 2 @ + 1 1 04974575 -paster n 2 3 @ ~ + 2 0 10404998 07272545 -pastern n 1 3 @ #p %p 1 0 02462066 -pasternak n 1 1 @ 1 0 11224654 -pasteur n 1 2 @ + 1 0 11224877 -pasteurellosis n 1 1 @ 1 0 14263280 -pasteurisation n 1 2 @ + 1 0 00254166 -pasteurization n 1 2 @ + 1 0 00254166 -pasteurized_milk n 1 1 @ 1 0 07845166 -pastiche n 2 1 @ 2 0 07047505 03897520 -pastil n 1 1 @ 1 0 07607967 -pastille n 1 1 @ 1 0 07607967 -pastime n 1 2 @ ~ 1 1 00431552 -pastinaca n 1 2 @ %m 1 0 12941360 -pastinaca_sativa n 1 3 @ ~ #m 1 0 12941536 -pastis n 1 2 @ %s 1 0 07910538 -pastness n 1 4 ! @ ~ + 1 0 05049656 -pasto n 1 2 @ #p 1 0 09175322 -pastor n 2 5 @ ~ #m %m + 2 1 09983572 01577265 -pastor_roseus n 1 2 @ #m 1 0 01577458 -pastor_sturnus n 1 2 @ #m 1 0 01577458 -pastoral n 3 3 @ ~ + 3 0 07043824 06625850 06377275 -pastorale n 1 1 @ 1 0 07043824 -pastorate n 2 1 @ 2 0 08113634 00595785 -pastorship n 1 2 @ + 1 0 00595785 -pastrami n 1 1 @ 1 0 07664379 -pastry n 2 3 @ ~ %s 2 0 07623136 07622708 -pastry_cart n 1 1 @ 1 0 03897634 -pastry_cook n 1 1 @ 1 0 10405320 -pastry_dough n 1 2 @ ~ 1 0 07623136 -pasturage n 2 2 @ + 2 0 12104501 07801091 -pasture n 2 4 @ ~ #p + 2 2 08616050 07801091 -pasture_brake n 1 2 @ #m 1 0 13189844 -pastureland n 1 3 @ ~ #p 1 0 08616050 -pasty n 2 2 @ ~ 2 0 07872170 03897759 -pat n 2 3 @ ~ + 2 0 07388987 00125436 -pataca n 1 2 @ %p 1 0 13690445 -patagonia n 1 3 @ #p %p 1 0 08711468 -patagonian_desert n 1 2 @ #p 1 0 09171984 -patas n 1 2 @ #m 1 0 02486261 -patavium n 1 2 @ #p 1 0 08813156 -patch n 9 4 @ ~ %p + 9 3 04682462 08674739 03897943 15246353 06573223 04408871 03745285 03309356 02785648 -patch_pocket n 1 1 @ 1 0 03898395 -patch_test n 1 1 @ 1 0 05745486 -patchboard n 1 2 @ #p 1 0 04373264 -patchcord n 1 1 @ 1 0 03898129 -patchiness n 1 2 @ + 1 0 04772844 -patching n 1 2 @ + 1 0 00267349 -patchouli n 2 2 @ #m 2 0 12862828 03898271 -patchouly n 2 2 @ #m 2 0 12862828 03898271 -patchwork n 3 2 @ ~ 3 1 05953416 03898633 03898500 -patchwork_quilt n 1 2 @ ~ 1 0 03898633 -pate n 2 3 @ ~ #p 2 0 07857959 05539595 -pate_a_choux n 1 1 @ 1 0 07628181 -pate_de_foie_gras n 1 1 @ 1 0 07858197 -pate_feuillete n 1 2 @ ~ 1 0 07627931 -patella n 2 5 @ #m #p %m + 2 0 05278395 01948917 -patella_vulgata n 1 2 @ #m 1 0 01949085 -patellar_reflex n 1 1 @ 1 0 00864859 -patellidae n 1 3 @ #m %m 1 0 01948788 -patency n 2 4 @ ~ = + 2 0 05084067 04706290 -patent n 2 3 @ + ; 2 1 06501141 06551627 -patent_and_trademark_office_database n 1 2 @ #p 1 0 08349681 -patent_application n 1 1 @ 1 0 06513255 -patent_ductus_arteriosus n 1 1 @ 1 0 05418432 -patent_infringement n 1 1 @ 1 0 00771604 -patent_law n 1 1 @ 1 0 06162528 -patent_leather n 1 1 @ 1 1 14763329 -patent_log n 1 1 @ 1 0 03898787 -patent_medicine n 1 2 @ ~ 1 1 03898936 -patent_of_invention n 1 1 @ 1 0 06501141 -patent_office n 1 2 @ #p 1 0 08349681 -patent_right n 1 2 @ ; 1 1 05188646 -patent_system n 1 2 @ ; 1 0 05903878 -patentee n 1 2 @ + 1 0 10405410 -pater n 1 1 @ 1 0 10405540 -paterfamilias n 1 1 @ 1 0 10406765 -paternal_quality n 1 2 @ = 1 0 04873305 -paternalism n 1 3 @ + ; 1 0 06196071 -paternity n 3 2 @ + 3 0 14578792 13813898 00240754 -paternity_suit n 1 2 @ ; 1 0 01183798 -paternity_test n 1 1 @ 1 0 05743496 -paternoster n 2 2 @ ; 2 0 06457796 03899100 -paterson n 2 2 @ #p 2 0 11225165 09114020 -path n 4 2 @ ~ 4 3 00415676 03899328 08616311 09387222 -path_of_least_resistance n 1 1 @ 1 0 00416737 -pathan n 2 1 @ 2 0 09689739 08484648 -pathetic_fallacy n 1 1 @ 1 0 05894631 -pathfinder n 1 2 @ ~ 1 0 10562749 -pathogen n 1 2 @ + 1 0 01386007 -pathogenesis n 1 2 @ ~ 1 1 13533349 -pathologic_process n 1 2 @ ~ 1 0 13533470 -pathological_process n 1 2 @ ~ 1 0 13533470 -pathological_state n 1 2 @ ~ 1 0 14051917 -pathologist n 1 3 @ ~ + 1 1 10011074 -pathology n 2 4 @ ~ + - 2 1 06060845 14204950 -pathos n 3 2 @ + 3 1 05211254 07553964 07072337 -pathway n 2 2 @ ~ 2 2 05475878 03899533 -patience n 2 4 ! @ ~ + 2 1 04640538 00495524 -patient n 2 3 @ ~ #m 2 1 10405694 06332136 -patient_role n 1 1 @ 1 0 06332136 -patina n 1 3 @ ~ + 1 1 03899612 -patio n 1 3 @ ~ #p 1 0 03899768 -patisserie n 1 1 @ 1 0 03899933 -patka n 1 1 @ 1 0 03900028 -patness n 1 2 @ + 1 0 04718826 -patois n 2 4 @ ~ ; - 2 0 07157273 07156219 -paton n 1 1 @ 1 0 11225350 -patrai n 1 1 @ 1 0 08788588 -patras n 1 1 @ 1 0 08788588 -patrial n 1 2 @ ; 1 0 10406072 -patriarch n 4 3 @ ~ + 4 0 10406905 10406765 10406391 10406266 -patriarchal_cross n 1 1 @ 1 0 03900104 -patriarchate n 2 1 @ 2 0 08617873 07972674 -patriarchy n 1 2 @ + 1 0 07972674 -patrician n 2 4 @ ~ #m + 2 0 10407105 09807754 -patricide n 2 1 @ 2 0 10407221 00221900 -patrick n 1 1 @ 1 0 11225469 -patrick_henry n 1 1 @ 1 0 11040381 -patrick_victor_martindale_white n 1 1 @ 1 0 11384159 -patrick_white n 1 1 @ 1 0 11384159 -patrikin n 1 1 @ 1 0 10236663 -patrilineage n 1 1 @ 1 0 13814898 -patrilineal_kin n 1 1 @ 1 0 10236663 -patrilineal_sib n 1 1 @ 1 0 10236663 -patrimony n 2 2 @ + 2 0 13271631 13263920 -patriot n 1 2 @ ~ 1 1 10407310 -patriot's_day n 1 2 @ #p 1 0 15188852 -patrioteer n 1 1 @ 1 0 09911849 -patriotism n 1 3 @ ~ + 1 1 04878101 -patrisib n 1 1 @ 1 0 10236663 -patristics n 2 2 @ + 2 0 06364004 06185302 -patroclus n 1 2 @ ; 1 0 09500398 -patrol n 3 4 @ ~ %m + 3 2 08216176 00824808 08329113 -patrol_boat n 1 1 @ 1 0 03900194 -patrol_car n 1 2 @ ~ 1 0 03141065 -patrol_ship n 1 1 @ 1 0 03900194 -patrol_wagon n 1 1 @ 1 0 03977966 -patroller n 1 3 @ #m + 1 1 10407552 -patrolman n 1 1 @ 1 1 10095664 -patrology n 2 1 @ 2 0 06364004 06185302 -patron n 3 4 @ ~ + ; 3 1 10407726 10408324 10407954 -patron_saint n 1 2 @ ~ 1 1 10408552 -patronage n 5 4 @ ~ + ; 5 1 01213886 08401554 06719404 01153861 01096454 -patroness n 1 1 @ 1 0 10408438 -patronne n 1 1 @ 1 1 10408438 -patronym n 1 3 @ + ; 1 0 06335832 -patronymic n 1 3 @ + ; 1 0 06335832 -patsy n 1 1 @ 1 0 09921409 -patten n 1 1 @ 1 0 03047690 -patter n 2 2 @ + 2 1 07013400 07389170 -pattern n 8 5 @ ~ #p %p + 8 6 05930736 00410247 03178782 05667613 05938795 05902327 08492747 07005270 -patterned_advance n 1 2 @ ~ 1 0 08458912 -patternmaker n 1 1 @ 1 0 10408809 -patty n 3 2 @ ~ 3 0 07663899 07627310 07599468 -patty-pan n 1 1 @ 1 0 03900301 -patty_shell n 1 1 @ 1 0 07627223 -pattypan_squash n 2 3 @ #p %p 2 0 12160125 07716750 -patwin n 2 1 @ 2 0 09665075 06924376 -patzer n 1 1 @ 1 0 10408939 -paucity n 1 1 @ 1 1 05117140 -paul n 2 2 @ ; 2 0 11226614 11225661 -paul_adrien_maurice_dirac n 1 1 @ 1 0 10936894 -paul_bunyan n 1 1 @ 1 0 09591155 -paul_bustill_robeson n 1 1 @ 1 0 11264973 -paul_cezanne n 1 1 @ 1 0 10889316 -paul_dukas n 1 1 @ 1 0 10944593 -paul_ehrlich n 1 1 @ 1 0 10953605 -paul_gauguin n 1 1 @ 1 0 10992528 -paul_hermann_muller n 1 1 @ 1 0 11196046 -paul_heyse n 1 1 @ 1 0 11048879 -paul_hindemith n 1 1 @ 1 0 11050870 -paul_iii n 1 1 @ 1 0 11226126 -paul_johann_ludwig_von_heyse n 1 1 @ 1 0 11048879 -paul_johannes_tillich n 1 1 @ 1 0 11342618 -paul_john_flory n 1 1 @ 1 0 10973873 -paul_joseph_goebbels n 1 1 @ 1 0 11003724 -paul_klee n 1 1 @ 1 0 11106830 -paul_leonard_newman n 1 1 @ 1 0 11205246 -paul_ludwig_von_beneckendorff_und_von_hindenburg n 1 1 @ 1 0 11051070 -paul_mccartney n 1 2 @ #m 1 0 11167952 -paul_newman n 1 1 @ 1 0 11205246 -paul_revere n 1 1 @ 1 0 11258501 -paul_robeson n 1 1 @ 1 0 11264973 -paul_simon n 1 1 @ 1 0 11301279 -paul_the_apostle n 1 2 @ ; 1 0 11225661 -paul_tillich n 1 1 @ 1 0 11342618 -paul_verlaine n 1 1 @ 1 0 11363164 -paul_vernier n 1 1 @ 1 0 11363657 -paul_vi n 1 1 @ 1 0 11226427 -paul_von_hindenburg n 1 1 @ 1 0 11051070 -pauli n 1 1 @ 1 0 11226713 -pauli_exclusion_principle n 1 1 @ 1 0 05886939 -pauling n 1 1 @ 1 0 11226933 -paulo_afonso n 1 2 @ #p 1 0 09387624 -paulo_afonso_falls n 1 2 @ #p 1 0 09387624 -paumotu_archipelago n 1 2 @ #p 1 0 08990522 -paunch n 1 4 @ ~ #p + 1 0 05555917 -paunchiness n 1 2 @ + 1 0 04999964 -pauper n 1 3 @ ~ + 1 0 10409011 -pauperisation n 1 2 @ + 1 0 01150467 -pauperism n 1 2 @ ~ 1 0 14493716 -pauperization n 2 3 @ ~ + 2 0 14493716 01150467 -pauropoda n 1 2 @ #m 1 0 01783205 -pause n 2 3 @ ~ + 2 2 15271008 01062817 -pavage n 2 2 @ + 2 0 13315518 00717081 -pavan n 2 1 @ 2 0 07056406 00526948 -pavane n 2 1 @ 2 0 07056406 00526948 -pavarotti n 1 1 @ 1 0 11227101 -pave n 1 1 @ 1 0 03900393 -paved_surface n 1 2 @ ~ 1 0 03900509 -pavement n 3 5 @ ~ #s %s + 3 3 03900750 14977504 04215402 -pavement_artist n 1 1 @ 1 0 10409161 -pavilion n 1 1 @ 1 0 03900979 -paving n 3 5 @ ~ #s %s + 3 0 14977504 03900750 00717081 -paving_machine n 1 1 @ 1 0 03901229 -paving_material n 1 2 @ ~ 1 0 14977504 -paving_stone n 1 3 @ ~ #s 1 1 03901074 -pavior n 1 1 @ 1 0 03901229 -paviour n 1 1 @ 1 0 03901229 -pavis n 1 2 @ ; 1 0 03901338 -pavise n 1 2 @ ; 1 0 03901338 -pavlov n 1 2 @ + 1 0 11227206 -pavlova n 2 1 @ 2 0 11227400 07612137 -pavo n 2 3 @ #m %m 2 0 09387764 01805692 -pavo_cristatus n 1 1 @ 1 0 01806364 -pavo_muticus n 1 1 @ 1 0 01806467 -pavonia n 1 2 @ #m 1 0 12184912 -pavor_nocturnus n 1 1 @ 1 0 14025258 -paw n 2 5 @ ~ #p %p + 2 1 02439929 05564590 -pawer n 1 2 @ + 1 0 10409322 -pawl n 1 2 @ #p 1 0 03901548 -pawn n 4 3 @ + ; 4 0 13350875 10209616 03901750 01111236 -pawn_ticket n 1 1 @ 1 0 13414443 -pawnbroker n 1 1 @ 1 0 10409459 -pawnbroker's_shop n 1 1 @ 1 0 03901974 -pawnee n 2 1 @ 2 0 09665218 06915927 -pawnshop n 1 1 @ 1 0 03901974 -pawpaw n 3 4 @ #m #p %p 3 0 12373100 11695599 07762114 -pax n 1 2 @ ; 1 0 06631140 -pax_romana n 1 1 @ 1 0 14540318 -paxil n 1 2 @ ; 1 0 03891851 -paxto n 1 2 @ - 1 0 06975132 -paxton n 1 1 @ 1 0 11227499 -pay n 1 4 @ ~ #p + 1 1 13279262 -pay-phone n 1 1 @ 1 0 03902125 -pay-station n 1 1 @ 1 0 03902125 -pay_as_you_earn n 1 1 @ 1 0 13311573 -pay_claim n 1 1 @ 1 0 07192845 -pay_cut n 1 1 @ 1 1 00352683 -pay_dirt n 2 1 @ 2 0 14977741 14475273 -pay_envelope n 1 1 @ 1 0 13280658 -pay_packet n 1 1 @ 1 0 13280658 -pay_rate n 1 2 @ ~ 1 1 13281476 -payable n 1 1 @ 1 0 14490801 -payables n 1 1 @ 1 0 13330168 -payback n 2 2 @ + 2 0 13296460 01235463 -paycheck n 1 1 @ 1 0 13382975 -payday n 1 1 @ 1 1 15172782 -paye n 1 1 @ 1 0 13311573 -payee n 1 2 @ + 1 0 10409634 -payena n 1 3 @ #m %m 1 0 12775225 -payer n 1 3 @ ~ + 1 0 10409752 -paygrade n 1 3 @ ~ ; 1 0 14431471 -paying_attention n 1 3 @ ~ = 1 0 05702726 -paying_back n 1 2 @ ~ 1 0 01234729 -payload n 2 3 @ ~ #p 2 0 04551375 02964389 -paymaster n 1 1 @ 1 0 10410035 -payment n 3 4 ! @ ~ + 3 2 13278375 01120448 01235137 -payment_rate n 1 1 @ 1 0 13281770 -payne's_gray n 1 1 @ 1 1 14923207 -payne's_grey n 1 1 @ 1 0 14923207 -paynim n 1 2 @ ; 1 0 10166626 -payoff n 4 2 @ ~ 4 0 13299357 13284562 13260190 07295629 -payola n 1 1 @ 1 0 13284973 -payroll n 3 2 @ %p 3 1 13412721 13412877 08120079 -payroll_check n 1 1 @ 1 0 13382975 -payroll_department n 1 1 @ 1 0 08120079 -pays_de_la_loire n 1 3 @ #p %p 1 0 08943926 -paysheet n 2 2 @ %p 2 0 13412877 13412721 -payslip n 1 1 @ 1 0 13412131 -pb n 4 5 @ ~ #s #p %p 4 0 14643467 13630545 13630387 13630213 -pbit n 1 3 @ #p %p 1 0 13630545 -pbs n 1 1 @ 1 1 14786361 -pc n 1 3 @ ~ %p 1 0 03918480 -pc_board n 1 2 @ #p 1 0 03902220 -pcp n 2 3 @ ~ #m 2 0 10165109 03921499 -pct n 1 2 @ ~ 1 0 13817526 -pd n 1 1 @ 1 0 14648754 -pda n 1 1 @ 1 0 03918737 -pdflp n 1 2 @ ; 1 0 08019523 -pdl n 1 1 @ 1 0 13647997 -pe n 1 2 @ #p 1 0 06838437 -pe-tsai n 1 2 @ #m 1 0 11878808 -pea n 3 5 @ ~ #m #p %p 3 1 07725376 12560282 12560016 -pea-chick n 1 1 @ 1 0 01806061 -pea-souper n 1 1 @ 1 0 11490934 -pea_bean n 1 1 @ 1 0 07727140 -pea_crab n 1 3 @ ~ #m 1 0 01980655 -pea_family n 1 3 @ #m %m 1 0 11746776 -pea_flour n 1 1 @ 1 0 07568625 -pea_green n 1 1 @ 1 0 04968257 -pea_jacket n 1 1 @ 1 0 03902756 -pea_plant n 1 4 @ ~ #m %p 1 0 12560016 -pea_pod n 1 2 @ #p 1 0 13140242 -pea_shooter n 1 1 @ 1 0 03902972 -pea_soup n 2 1 @ 2 1 07586604 11490934 -pea_tree n 1 3 @ ~ #m 1 0 12511856 -pea_weevil n 1 2 @ #m 1 0 02182355 -peabody n 1 1 @ 1 0 11227618 -peace n 5 4 ! @ ~ + 5 4 13970236 13969700 07515790 14539524 06773976 -peace_advocacy n 1 1 @ 1 0 06221659 -peace_corps n 1 1 @ 1 0 08195636 -peace_garden_state n 1 3 @ #p %p 1 0 09129442 -peace_initiative n 1 1 @ 1 0 00243813 -peace_lily n 1 2 @ #m 1 0 11792341 -peace_march n 1 1 @ 1 0 01178728 -peace_of_mind n 1 1 @ 1 1 07515790 -peace_of_westphalia n 1 1 @ 1 0 06774192 -peace_offering n 1 1 @ 1 0 07167186 -peace_officer n 1 2 @ ~ 1 1 10249459 -peace_pipe n 1 1 @ 1 0 02941408 -peace_process n 1 1 @ 1 0 13533704 -peace_treaty n 1 2 @ ~ 1 0 06773976 -peaceableness n 1 3 @ ~ + 1 0 13970584 -peacefulness n 2 3 @ ~ + 2 0 13970584 07515790 -peacekeeper n 3 2 @ ; 3 0 10410246 10410125 03902381 -peacekeeping n 1 2 @ ; 1 0 00980904 -peacekeeping_mission n 1 2 @ ; 1 0 00980904 -peacekeeping_operation n 1 2 @ ; 1 0 00980904 -peacemaker n 2 2 @ ~ 2 0 09952163 02907656 -peacenik n 1 1 @ 1 0 10028123 -peacetime n 1 1 @ 1 0 15293227 -peach n 4 5 @ #m #p %p + 4 0 12648045 10613996 07751004 04971675 -peach-leaved_willow n 1 2 @ #m 1 0 12727729 -peach-wood n 1 3 @ #m %s 1 0 12489268 -peach_bell n 1 1 @ 1 0 12038585 -peach_bells n 1 1 @ 1 0 12038585 -peach_blight n 1 1 @ 1 0 14218401 -peach_ice_cream n 1 1 @ 1 0 07615190 -peach_melba n 1 1 @ 1 0 07612273 -peach_orchard n 1 1 @ 1 0 03902482 -peach_pit n 1 1 @ 1 0 11690088 -peach_sauce n 1 1 @ 1 0 07832202 -peach_state n 1 5 @ #m #p %p - 1 0 09075842 -peach_tree n 1 3 @ #m %p 1 0 12648045 -peachick n 1 1 @ 1 0 01806061 -peachleaf_willow n 1 2 @ #m 1 0 12727729 -peachwood n 1 3 @ #m %s 1 0 12489268 -peacoat n 1 1 @ 1 0 03902756 -peacock n 2 2 @ #m 2 2 02279257 01806143 -peacock-throne n 1 1 @ 1 0 03902564 -peacock_blue n 1 1 @ 1 0 04969798 -peacock_butterfly n 1 2 @ #m 1 0 02279257 -peacock_flower n 1 2 @ #m 1 0 12494794 -peacock_flower_fence n 1 2 @ #m 1 0 11758799 -peacock_ore n 1 2 @ %s 1 0 14669242 -peafowl n 1 3 @ ~ #m 1 0 01805801 -peag n 1 1 @ 1 0 04549407 -peahen n 1 1 @ 1 0 01806297 -peak n 7 4 @ ~ #p + 7 4 13653902 15295045 13940456 08617963 13902482 08677801 02838728 -peak_season n 1 1 @ 1 0 15238570 -peaked_cap n 1 2 @ %p 1 0 03610682 -peal n 1 2 @ + 1 1 07389330 -pealing n 1 2 @ + 1 1 07389330 -pean n 2 2 @ ; 2 0 07036862 06694149 -peanut n 4 5 @ #m #p %s %p 4 0 11748811 11748501 10410440 07737745 -peanut_bar n 1 1 @ 1 0 07608641 -peanut_brittle n 1 1 @ 1 0 07599911 -peanut_butter n 1 1 @ 1 1 07855510 -peanut_gallery n 2 2 @ #p 2 0 07949796 04164199 -peanut_oil n 1 2 @ #s 1 0 07674749 -peanut_vine n 1 3 @ #m %p 1 0 11748501 -peanut_worm n 1 2 @ #m 1 0 02315821 -peanuts n 1 1 @ 1 0 13413016 -pear n 2 5 @ ~ #m #p %p 2 1 07767847 12651611 -pear_blight n 1 2 @ ~ 1 0 14217002 -pear_haw n 1 2 @ #m 1 0 12627119 -pear_hawthorn n 1 2 @ #m 1 0 12627119 -pear_tree n 1 3 @ #m %p 1 0 12651611 -pearl n 3 3 @ ~ + 3 2 13372403 04961331 13901585 -pearl-fish n 1 2 @ #m 1 0 02559383 -pearl-weed n 1 2 @ #m 1 0 11814238 -pearl_ash n 1 1 @ 1 0 14860749 -pearl_bailey n 1 1 @ 1 0 10831363 -pearl_barley n 1 1 @ 1 0 07803213 -pearl_buck n 1 1 @ 1 0 10870235 -pearl_diver n 1 1 @ 1 0 10410531 -pearl_fishery n 1 1 @ 1 0 03902869 -pearl_harbor n 1 2 @ #p 1 0 09080782 -pearl_hominy n 1 1 @ 1 0 07732525 -pearl_mae_bailey n 1 1 @ 1 0 10831363 -pearl_millet n 1 2 @ #m 1 0 12128825 -pearl_oyster n 1 2 @ #m 1 0 01961985 -pearl_river n 2 2 @ #p 2 0 09483340 09387880 -pearl_sago n 1 1 @ 1 0 15054770 -pearl_sydenstricker_buck n 1 1 @ 1 0 10870235 -pearler n 1 2 @ + 1 0 10410531 -pearlfish n 1 2 @ #m 1 0 02559383 -pearlite n 1 4 @ ~ #s %s 1 0 14977845 -pearlweed n 1 2 @ #m 1 0 11814238 -pearlwort n 1 2 @ #m 1 0 11814238 -pearly n 1 2 @ + 1 0 05283498 -pearly-shelled_mussel n 1 2 @ #m 1 0 01964957 -pearly_everlasting n 1 2 @ #m 1 0 11921395 -pearly_nautilus n 1 2 @ #m 1 0 01968897 -pearly_razorfish n 1 2 @ #m 1 0 02609823 -pearmain n 1 1 @ 1 0 07741357 -pearson_product-moment_correlation_coefficient n 1 2 @ ; 1 0 06033427 -peary n 1 1 @ 1 0 11227796 -peasant n 3 4 @ ~ #m + 3 2 10410668 10410996 10410815 -peasant's_revolt n 1 2 @ ; 1 0 00964105 -peasanthood n 1 2 @ + 1 0 00595894 -peasantry n 1 2 @ %m 1 0 08182283 -pease_pudding n 1 2 @ ; 1 0 07618871 -peasecod n 1 2 @ #p 1 0 13140242 -peat n 1 2 @ + 1 0 14689493 -peat_bog n 1 2 @ ~ 1 0 09225943 -peat_moss n 1 2 @ #m 1 0 11542137 -peavey n 1 2 @ ~ 1 0 03903133 -peavy n 1 2 @ ~ 1 0 03903133 -peba n 1 2 @ #m 1 0 02454794 -pebble n 1 2 @ + 1 1 09388023 -pebble_plant n 1 3 @ ~ #m 1 0 11820965 -pebibit n 1 3 @ #p %p 1 0 13630707 -pebibyte n 1 3 @ #p %p 1 0 13630213 -pecan n 3 6 @ #m #s #p %s %p 3 0 12321304 12321077 07774719 -pecan_pie n 1 1 @ 1 0 07626602 -pecan_tree n 1 4 @ #m %s %p 1 0 12321077 -peccadillo n 1 1 @ 1 0 00738785 -peccari_angulatus n 1 1 @ 1 0 02397744 -peccary n 1 3 @ ~ #m 1 0 02397529 -peck n 3 4 @ ~ #p %p 3 0 13774404 13622451 13620713 -pecker n 3 6 @ ~ #m #p + ; 3 0 05526713 01838598 01758308 -peckerwood n 1 3 @ ~ #m 1 0 01838598 -pecking_order n 1 3 @ #p %m 1 0 08376051 -pecopteris n 1 2 @ #m 1 0 11545350 -pecos n 1 2 @ #p 1 0 09388121 -pecos_river n 1 2 @ #p 1 0 09388121 -pecs n 1 3 @ ~ #p 1 1 05551711 -pecten_irradians n 1 3 @ #m %p 1 0 01966377 -pecten_magellanicus n 1 3 @ #m %p 1 0 01966586 -pectic_acid n 1 1 @ 1 0 14978114 -pectin n 1 3 @ #s + 1 0 14978232 -pectinibranchia n 1 3 @ #m %m 1 0 01952812 -pectinidae n 1 3 @ #m %m 1 0 01965747 -pectoral n 2 4 @ ~ #p + 2 1 05551711 03903290 -pectoral_arch n 1 2 @ #p 1 0 05586280 -pectoral_fin n 1 1 @ 1 0 02466564 -pectoral_girdle n 1 3 @ #p %p 1 0 05586111 -pectoral_medallion n 1 1 @ 1 0 03903290 -pectoral_muscle n 1 3 @ ~ #p 1 0 05551711 -pectoral_sandpiper n 1 2 @ #m 1 0 02028727 -pectoral_vein n 1 1 @ 1 0 05376391 -pectoralis n 1 3 @ ~ #p 1 1 05551711 -pectoralis_major n 1 1 @ 1 1 05551939 -pectoralis_minor n 1 1 @ 1 0 05552106 -pectus n 1 4 @ ~ #p %p 1 0 05552607 -peculation n 1 3 @ ~ + 1 0 00776732 -peculator n 1 2 @ + 1 0 10051337 -peculiar_velocity n 1 1 @ 1 0 15284043 -peculiarity n 3 3 @ ~ + 3 2 05852125 04763925 03149951 -pecuniary_resource n 1 2 @ ~ 1 0 13356112 -pedagog n 1 2 @ ~ 1 0 10045713 -pedagogics n 1 2 @ ~ 1 0 05660937 -pedagogue n 1 2 @ ~ 1 0 10045713 -pedagogy n 3 5 @ ~ %p + - 3 0 05660937 00887081 00883297 -pedal n 2 4 @ ~ #p + 2 0 06858674 03903424 -pedal_extremity n 1 4 @ ~ #p %p 1 0 05563034 -pedal_point n 1 1 @ 1 0 06858674 -pedal_pusher n 1 1 @ 1 0 03903733 -pedaler n 1 3 @ ~ + 1 0 10411163 -pedaliaceae n 1 3 @ #m %m 1 0 12874429 -pedaller n 1 3 @ ~ + 1 0 10411163 -pedant n 1 3 @ ~ + 1 0 10411356 -pedantry n 1 2 @ + 1 0 06890128 -pedate_leaf n 1 1 @ 1 0 13160365 -peddler n 2 3 @ ~ + 2 1 10411551 10495555 -peddling n 1 2 @ + 1 0 01116968 -pederast n 1 2 @ + 1 0 10411867 -pederasty n 1 1 @ 1 0 00857872 -pedesis n 1 1 @ 1 0 11433140 -pedestal n 3 4 @ ~ #p %p 3 1 02797692 14432389 03903868 -pedestal_table n 1 2 @ ~ 1 0 03904060 -pedestrian n 1 2 @ ~ 1 0 10412055 -pedestrian_bridge n 1 2 @ ~ 1 0 03379828 -pedestrian_crossing n 1 2 @ ~ 1 0 03904183 -pedestrian_traffic n 1 1 @ 1 0 08425777 -pediamycin n 1 2 @ ; 1 0 03295357 -pediapred n 1 2 @ ; 1 0 14753188 -pediatric_medicine n 1 2 @ ~ 1 0 06061631 -pediatrician n 1 3 @ ~ + 1 0 09828760 -pediatrics n 1 3 @ ~ + 1 0 06061631 -pediatrist n 1 3 @ ~ + 1 0 09828760 -pedicab n 1 1 @ 1 0 03904433 -pedicel n 1 2 @ ~ 1 0 13132156 -pedicle n 1 2 @ ~ 1 0 13132156 -pediculati n 1 3 @ #m %m 1 0 02547213 -pediculicide n 1 1 @ 1 0 14978453 -pediculidae n 1 3 @ #m %m 1 0 02184114 -pediculosis n 1 2 @ ~ 1 0 14454450 -pediculosis_capitis n 1 1 @ 1 0 14454661 -pediculosis_corporis n 1 1 @ 1 0 14454773 -pediculosis_pubis n 1 1 @ 1 0 14454874 -pediculus n 1 3 @ #m %m 1 0 02184270 -pediculus_capitis n 1 2 @ #m 1 0 02184589 -pediculus_corporis n 1 2 @ #m 1 0 02184720 -pediculus_humanus n 1 2 @ #m 1 0 02184473 -pedicure n 1 2 @ + 1 0 00660957 -pedigree n 3 2 @ ~ 3 1 08101937 08101846 04923907 -pedilanthus n 1 3 @ #m %m 1 0 12927921 -pedilanthus_bracteatus n 1 2 @ %s 1 0 12928307 -pedilanthus_pavonis n 1 2 @ %s 1 0 12928307 -pedilanthus_tithymaloides n 1 1 @ 1 0 12928491 -pediment n 1 1 @ 1 0 03904657 -pediocactus n 1 3 @ #m %m 1 0 11850748 -pediocactus_knowltonii n 1 2 @ #m 1 0 11850918 -pedioecetes n 1 2 @ #m 1 0 01798052 -pedioecetes_phasianellus n 1 1 @ 1 0 01798168 -pedionomus n 1 3 @ #m %m 1 0 02020450 -pedionomus_torquatus n 1 2 @ #m 1 0 02020578 -pedipalpi n 1 3 @ #m %m 1 0 01771246 -pedlar n 1 2 @ ~ 1 0 10411551 -pedodontist n 1 1 @ 1 0 10412554 -pedology n 1 2 @ ~ 1 0 06061631 -pedometer n 1 1 @ 1 0 03904782 -pedophile n 1 1 @ 1 0 10412669 -pedophilia n 1 1 @ 1 0 00738270 -pedro_calderon_de_la_barca n 1 1 @ 1 0 10879155 -peduncle n 3 3 @ ~ #p 3 0 14235066 13132034 05476754 -pedunculate_oak n 1 1 @ 1 0 12277578 -pedunculated_polyp n 1 2 @ %p 1 0 14234950 -pedwood n 1 1 @ 1 0 12948053 -pee n 2 3 @ + ; 2 0 14855724 13533886 -pee_dee n 1 2 @ #p 1 0 09388318 -pee_dee_river n 1 2 @ #p 1 0 09388318 -peeing n 1 3 @ + ; 1 0 13533886 -peek n 1 2 @ + 1 0 00878221 -peekaboo n 1 1 @ 1 0 00487072 -peel n 2 4 @ ~ #p + 2 0 11228039 07738353 -peeler n 3 3 @ ~ + 3 0 10664340 10412784 03904909 -peeling n 1 2 @ + 1 0 11445564 -peen n 1 2 @ #p 1 0 03905053 -peep n 2 2 @ + 2 0 07379094 00878221 -peep_sight n 1 1 @ 1 0 03905361 -peeper n 3 3 @ + ; 3 0 10761326 05312040 01315213 -peephole n 1 2 @ ~ 1 0 03905208 -peeping_tom n 1 1 @ 1 0 10761326 -peepshow n 2 1 @ 2 0 08408115 06617527 -peepul n 1 1 @ 1 0 12402596 -peer n 2 4 @ ~ #m ; 2 1 09626238 10412910 -peer_group n 1 2 @ %m 1 1 08372190 -peer_of_the_realm n 1 3 @ #m ; 1 0 10413276 -peerage n 1 2 @ %m 1 0 08388636 -peeress n 1 4 @ ~ #m ; 1 0 10242791 -peeve n 1 1 @ 1 0 07551418 -peevishness n 2 3 @ ~ + 2 0 07552729 04642258 -peewee n 2 3 @ ~ #m 2 0 10543544 01549430 -peewit n 2 3 @ ~ #m 2 0 02024763 01549430 -peg n 6 4 @ ~ #p + 6 1 03905540 07271791 05561707 03906106 03905947 03905730 -peg_top n 1 1 @ 1 0 03906355 -pegasus n 2 2 @ ; 2 0 09500625 09388530 -pegboard n 1 1 @ 1 1 03906224 -pegleg n 1 1 @ 1 0 03906106 -pegmatite n 1 2 @ %s 1 0 14932741 -pehlevi n 1 2 @ ~ 1 0 06974846 -pei n 1 2 @ ; 1 0 11228153 -peignoir n 1 2 @ ~ 1 0 03817647 -peiping n 1 3 @ #p %p 1 0 08724726 -peirce n 2 1 @ 2 0 11228486 11228298 -peireskia n 1 3 @ #m %m 1 0 11852255 -pekan n 1 1 @ 1 0 02450829 -peke n 1 1 @ 1 0 02086079 -pekinese n 1 1 @ 1 0 02086079 -peking n 1 3 @ #p %p 1 0 08724726 -peking_man n 1 1 @ 1 0 02473857 -pekingese n 1 1 @ 1 0 02086079 -pekoe n 1 1 @ 1 0 07934908 -pel n 1 3 @ #p ; 1 0 03952277 -pelage n 1 3 @ ~ #p 1 0 01898731 -pelagianism n 1 1 @ 1 0 06190554 -pelagic_bird n 1 2 @ ~ 1 0 02057731 -pelagius n 1 1 @ 1 0 11228691 -pelargonium n 1 3 @ #m %m 1 0 12687211 -pelargonium_graveolens n 1 2 @ #m 1 0 12687462 -pelargonium_hortorum n 1 2 @ #m 1 0 12687698 -pelargonium_limoneum n 1 2 @ #m 1 0 12688372 -pelargonium_odoratissimum n 1 2 @ #m 1 0 12688187 -pelargonium_peltatum n 1 2 @ #m 1 0 12687957 -pelecanidae n 1 3 @ #m %m 1 0 02051701 -pelecaniform_seabird n 1 2 @ ~ 1 0 02051474 -pelecaniformes n 1 3 @ #m %m 1 0 02051213 -pelecanoididae n 1 3 @ #m %m 1 0 02061716 -pelecanus n 1 3 @ #m %m 1 0 02052044 -pelecanus_erythrorhynchos n 1 2 @ #m 1 0 02052204 -pelecanus_onocrotalus n 1 2 @ #m 1 0 02052365 -pelecypod n 1 4 @ ~ #m + 1 0 01955933 -peleus n 1 1 @ 1 0 09598270 -pelew n 1 3 @ #p %p 1 0 08977948 -pelf n 1 1 @ 1 0 13385216 -pelham n 1 1 @ 1 0 03906463 -pelham_grenville_wodehouse n 1 1 @ 1 0 11394042 -pelican n 1 3 @ ~ #m 1 0 02051845 -pelican_crossing n 1 2 @ ; 1 0 03906590 -pelican_state n 1 4 @ #m #p %p 1 0 09090825 -peliosis n 1 2 @ ~ 1 0 14197468 -pelisse n 1 1 @ 1 0 03906789 -pellaea n 1 3 @ #m %m 1 0 13211516 -pellaea_andromedifolia n 1 2 @ #m 1 0 13212025 -pellaea_atropurpurea n 1 1 @ 1 0 13212175 -pellaea_mucronata n 1 1 @ 1 0 13212379 -pellaea_ornithopus n 1 1 @ 1 0 13212379 -pellaea_rotundifolia n 1 2 @ #m 1 0 13212559 -pellagra n 1 1 @ 1 0 14200873 -pellet n 2 3 @ ~ #p 2 0 13901423 04205759 -pellicle n 1 1 @ 1 0 01458746 -pellicularia n 1 3 @ #m %m 1 0 13015826 -pellicularia_filamentosa n 1 2 @ #m 1 0 13016076 -pellicularia_koleroga n 1 2 @ #m 1 0 13016289 -pellitory n 2 2 @ #m 2 0 12394638 11920998 -pellitory-of-spain n 1 2 @ #m 1 0 11920998 -pellitory-of-the-wall n 1 2 @ #m 1 0 12394638 -pellucidity n 2 4 @ ~ = + 2 0 04820258 04701943 -pellucidness n 1 2 @ + 1 0 04701943 -pelmet n 1 1 @ 1 0 03111296 -pelobatidae n 1 3 @ #m %m 1 0 01648818 -peloponnese n 1 3 @ #p %p 1 0 08790495 -peloponnesian_peninsula n 1 3 @ #p %p 1 0 08790495 -peloponnesian_war n 1 2 @ %p 1 0 01306911 -peloponnesus n 1 4 @ #p %p + 1 0 08790495 -pelota n 1 1 @ 1 0 00480366 -pelt n 2 2 @ ~ 2 0 14764061 01895735 -peltandra n 1 3 @ #m %m 1 0 11790624 -peltandra_virginica n 1 1 @ 1 0 11790936 -peltate_leaf n 1 1 @ 1 0 13159457 -pelter n 2 2 @ + 2 0 11502102 10413429 -pelting n 1 2 @ + 1 1 05045208 -peltiphyllum n 1 3 @ #m %m 1 0 12797213 -peltiphyllum_peltatum n 1 2 @ #m 1 0 12797368 -peludo n 1 2 @ #m 1 0 02455720 -pelvic_arch n 1 3 @ #p %p 1 0 05596651 -pelvic_cavity n 1 1 @ 1 0 05597050 -pelvic_fin n 1 1 @ 1 0 02466731 -pelvic_girdle n 1 3 @ #p %p 1 1 05596651 -pelvic_inflammatory_disease n 1 1 @ 1 0 14172558 -pelvimeter n 1 1 @ 1 0 03906894 -pelvimetry n 1 1 @ 1 0 01003113 -pelvis n 2 4 @ #p %p + 2 1 05596651 05596442 -pelycosaur n 1 2 @ #m 1 0 01721898 -pelycosauria n 1 3 @ #m %m 1 0 01721718 -pembroke n 1 1 @ 1 0 02113023 -pembroke_welsh_corgi n 1 1 @ 1 0 02113023 -pemican n 1 1 @ 1 0 07665146 -pemmican n 1 1 @ 1 1 07665146 -pempheridae n 1 3 @ #m %m 1 0 02603737 -pemphigus n 1 3 @ %p + 1 0 14230800 -pen n 5 4 @ ~ %p + 5 2 03906997 03907227 03964495 03911513 01858845 -pen-and-ink n 1 1 @ 1 1 03908111 -pen-friend n 1 1 @ 1 0 10414379 -pen-tail n 1 2 @ #m 1 0 02495570 -pen-tailed_tree_shrew n 1 2 @ #m 1 0 02495570 -pen_name n 1 1 @ 1 0 06338653 -pen_nib n 1 2 @ #p 1 0 03823111 -pen_pal n 1 1 @ 1 0 10414379 -penal_code n 1 2 @ ; 1 0 06668019 -penal_colony n 1 1 @ 1 0 03907475 -penal_facility n 1 3 @ ~ #p 1 0 03907654 -penal_institution n 1 3 @ ~ #p 1 0 03907654 -penalisation n 1 3 @ ~ + 1 0 01160342 -penalization n 1 3 @ ~ + 1 0 01160342 -penalty n 4 5 ! @ ~ + ; 4 3 01160342 13300555 05164845 05163189 -penalty_box n 1 3 @ #p ; 1 0 03907908 -penalty_free_throw n 1 2 @ ~ 1 0 00110964 -penance n 3 3 @ ~ %p 3 2 07536870 01039140 01165537 -penchant n 1 2 @ ~ 1 0 07498210 -pencil n 4 5 @ ~ %p + ; 4 1 03908204 14796748 13863020 03908456 -pencil_box n 1 1 @ 1 0 03908618 -pencil_case n 1 1 @ 1 0 03908618 -pencil_cedar n 2 5 @ ~ #m #s %s 2 0 11637015 11623685 -pencil_cedar_tree n 1 4 @ ~ #m %s 1 0 11637015 -pencil_eraser n 1 2 @ #p 1 0 04116512 -pencil_lead n 1 2 @ #p 1 0 03651084 -pencil_pusher n 1 1 @ 1 1 10414507 -pencil_sharpener n 1 1 @ 1 0 03908714 -pendant n 2 3 @ ~ #p 2 0 03908831 03005285 -pendant_earring n 1 2 @ %p 1 0 03909020 -pendent n 2 3 @ ~ #p 2 0 03908831 03005285 -pendragon n 1 1 @ 1 0 10413588 -pendulum n 1 3 @ ~ %p 1 1 03909160 -pendulum_clock n 1 2 @ ~ 1 0 03909406 -pendulum_watch n 1 1 @ 1 0 03909516 -peneidae n 1 3 @ #m %m 1 0 01987938 -penelope n 2 3 @ #m ; 2 0 09593144 01799876 -peneplain n 1 2 @ ; 1 0 09388653 -peneplane n 1 2 @ ; 1 0 09388653 -penetrability n 1 3 ! @ + 1 0 04940730 -penetralia n 1 1 @ 1 0 08588840 -penetrating_injury n 1 1 @ 1 0 14294964 -penetrating_trauma n 1 1 @ 1 0 14294964 -penetration n 6 3 @ ~ + 6 3 00975452 05710356 00051525 05201452 05135288 00846817 -penetration_bomb n 1 1 @ 1 0 03909658 -penetrator n 1 2 @ + 1 0 10413688 -peneus n 1 3 @ #m %m 1 0 01988064 -pengo n 2 1 @ 2 0 13676758 06981085 -penguin n 1 3 @ ~ #m 1 0 02055803 -penicillamine n 1 1 @ 1 0 03909835 -penicillin n 1 2 @ ~ 1 0 03910033 -penicillin-resistant_bacteria n 1 1 @ 1 0 01377392 -penicillin_f n 1 1 @ 1 0 03910601 -penicillin_g n 1 1 @ 1 0 03910723 -penicillin_o n 1 1 @ 1 0 03910887 -penicillin_v n 1 2 @ ~ 1 0 03911039 -penicillin_v_potassium n 1 1 @ 1 0 03911251 -penicillinase n 1 1 @ 1 0 14978544 -penicillinase-resistant_antibiotic n 1 2 @ ~ 1 0 03910417 -penicillium n 1 2 @ #m 1 0 13079953 -penile_implant n 1 1 @ 1 0 03911406 -peninsula n 1 3 @ ~ + 1 1 09388848 -penis n 1 5 @ ~ #p %p + 1 0 05526384 -penis_envy n 1 2 @ ; 1 0 07550204 -penitence n 1 2 @ + 1 0 07536870 -penitent n 1 4 @ ~ + ; 1 0 10413834 -penitentiary n 1 2 @ + 1 0 03911513 -penknife n 1 1 @ 1 0 03911658 -penlight n 1 1 @ 1 0 03911767 -penman n 1 2 @ + 1 0 10564660 -penmanship n 1 2 @ + 1 0 06403969 -penn n 2 3 @ #m #p 2 0 11228956 04512476 -penn'orth n 1 1 @ 1 0 13661163 -pennant n 3 2 @ ~ 3 1 06705891 06875288 03911866 -pennatula n 1 3 @ #m %m 1 0 01915541 -pennatulidae n 1 3 @ #m %m 1 0 01915414 -penne n 1 1 @ 1 0 07701147 -penni n 1 2 @ #p 1 0 13688577 -pennilessness n 1 2 @ + 1 0 14494186 -pennine_chain n 1 2 @ #p 1 0 08797013 -pennines n 1 2 @ #p 1 0 08797013 -penning n 1 4 @ ~ + - 1 0 00929718 -pennisetum n 1 3 @ #m %m 1 0 12128645 -pennisetum_americanum n 1 2 @ #m 1 0 12128825 -pennisetum_cenchroides n 1 1 @ 1 0 12114010 -pennisetum_glaucum n 1 2 @ #m 1 0 12128825 -pennisetum_ruppelii n 1 2 @ #m 1 0 12129134 -pennisetum_setaceum n 1 2 @ #m 1 0 12129134 -pennistum_villosum n 1 2 @ #m 1 0 12129349 -pennon n 2 3 @ ~ #p 2 0 03911866 02152446 -pennoncel n 1 1 @ 1 0 03911992 -pennoncelle n 1 1 @ 1 0 03911992 -pennsylvania n 3 5 @ #m #p %p - 3 1 09134386 09134882 04512476 -pennsylvania_dutch n 1 1 @ 1 0 06952115 -pennsylvanian n 2 2 @ #p 2 0 15127507 09745324 -pennsylvanian_period n 1 2 @ #p 1 0 15127507 -penny n 2 3 @ ~ #p 2 2 13694367 13390626 -penny-pinching n 1 2 @ + 1 0 04893525 -penny_ante n 2 1 @ 2 0 01110720 00497819 -penny_ante_poker n 1 1 @ 1 0 00497819 -penny_arcade n 1 1 @ 1 1 03912105 -penny_bank n 1 1 @ 1 0 03935335 -penny_dreadful n 1 1 @ 1 0 06368321 -penny_grass n 1 2 @ #m 1 0 11898775 -penny_pincher n 1 1 @ 1 0 10414084 -penny_stock n 1 1 @ 1 0 13337050 -pennycress n 1 3 @ ~ #m 1 0 11898639 -pennyroyal n 2 3 @ #m %s 2 0 12856680 12847927 -pennyroyal_oil n 2 2 @ #s 2 0 12856868 12848212 -pennyweight n 1 3 @ #p %p 1 0 13722198 -pennywhistle n 1 1 @ 1 0 03912218 -pennyworth n 1 1 @ 1 0 13661163 -penobscot n 2 2 @ #p 2 0 09665367 09389601 -penobscot_bay n 1 2 @ #p 1 0 09389746 -penobscot_river n 1 2 @ #p 1 0 09389601 -penoche n 1 1 @ 1 0 07605804 -penologist n 1 2 @ + 1 0 10414239 -penology n 1 2 @ + 1 0 06152460 -penoncel n 1 1 @ 1 0 03911992 -penpusher n 1 1 @ 1 0 10414507 -pensacola n 1 2 @ #p 1 0 09074596 -pension n 1 3 @ ~ + 1 1 13384164 -pension_account n 1 2 @ ~ 1 0 05911255 -pension_fund n 2 1 @ 2 0 13360103 08070674 -pension_plan n 1 2 @ ~ 1 0 05911255 -pensionary n 2 3 @ ~ + 2 0 10414612 10176913 -pensioner n 1 3 @ ~ + 1 1 10414612 -pensiveness n 2 2 @ + 2 0 07533607 04660805 -penstemon n 1 3 @ #m %m 1 0 12884523 -penstemon_barbatus n 1 2 @ #m 1 0 12885045 -penstemon_centranthifolius n 1 2 @ #m 1 0 12885265 -penstemon_cyananthus n 1 2 @ #m 1 0 12885754 -penstemon_davidsonii n 1 2 @ #m 1 0 12885956 -penstemon_deustus n 1 2 @ #m 1 0 12886185 -penstemon_dolius n 1 2 @ #m 1 0 12886402 -penstemon_fruticosus n 1 2 @ #m 1 0 12886600 -penstemon_linarioides n 1 2 @ #m 1 0 12886831 -penstemon_newberryi n 1 2 @ #m 1 0 12887065 -penstemon_palmeri n 1 2 @ #m 1 0 12887293 -penstemon_parryi n 1 2 @ #m 1 0 12887532 -penstemon_rupicola n 1 2 @ #m 1 0 12887713 -penstemon_rydbergii n 1 2 @ #m 1 0 12888016 -penstemon_serrulatus n 1 2 @ #m 1 0 12888234 -penstemon_whippleanus n 1 2 @ #m 1 0 12888457 -penstock n 2 3 @ #p %p 2 0 04244615 04244379 -pentacle n 1 1 @ 1 0 13882008 -pentad n 1 1 @ 1 0 13744521 -pentaerythritol n 1 1 @ 1 0 03912328 -pentagon n 3 2 @ ; 3 2 03912496 08207095 13882201 -pentagon_gang n 1 2 @ ; 1 0 08038131 -pentagram n 1 1 @ 1 0 13882008 -pentahedron n 1 1 @ 1 0 13915209 -pentail n 1 2 @ #m 1 0 02495570 -pentameter n 1 1 @ 1 0 07096142 -pentamethylenetetrazol n 1 1 @ 1 0 03913702 -pentangle n 1 1 @ 1 0 13882008 -pentanoic_acid n 1 1 @ 1 0 14740094 -pentastomid n 1 2 @ #m 1 0 01788864 -pentastomida n 1 3 @ #m %m 1 0 01788730 -pentateuch n 1 3 @ #p %p 1 0 06451891 -pentathlete n 1 1 @ 1 0 10414768 -pentathlon n 1 1 @ 1 0 07457722 -pentatone n 1 2 @ + 1 0 06861435 -pentatonic_scale n 1 1 @ 1 0 06861435 -pentazocine n 1 1 @ 1 0 03912664 -pentecost n 2 4 @ #p + ; 2 0 15242209 15197042 -pentecostal n 1 3 @ #m + 1 0 10414865 -pentecostal_religion n 1 2 @ %m 1 0 08087319 -pentecostalism n 1 2 @ + 1 0 06232298 -pentecostalist n 1 3 @ #m + 1 0 10414865 -penthouse n 1 1 @ 1 1 03912821 -pentimento n 1 1 @ 1 0 03912929 -pentlandite n 1 2 @ %s 1 0 14689672 -pentobarbital n 1 1 @ 1 0 03913129 -pentobarbital_sodium n 1 1 @ 1 0 03913129 -pentode n 1 1 @ 1 0 03913343 -pentose n 1 1 @ 1 0 14690063 -pentothal n 1 2 @ ; 1 0 04424936 -pentoxide n 1 1 @ 1 0 14690335 -pentoxifylline n 1 1 @ 1 0 03913437 -pentylenetetrazol n 1 1 @ 1 0 03913702 -penuche n 1 1 @ 1 0 07605804 -penuchle n 1 1 @ 1 0 00494100 -penult n 1 1 @ 1 0 06305109 -penultima n 1 1 @ 1 0 06305109 -penultimate n 1 1 @ 1 0 06305109 -penumbra n 1 1 @ 1 0 13985219 -penuriousness n 2 2 @ + 2 0 14494186 04834339 -penury n 1 3 @ ~ + 1 0 14493716 -penutian n 2 2 @ ~ 2 1 06923880 09665545 -peon n 1 1 @ 1 0 10035809 -peonage n 2 1 @ 2 0 13998186 00415540 -peony n 1 2 @ #m 1 1 11719286 -peony_family n 1 3 @ #m %m 1 0 11718911 -people n 4 6 @ ~ #m %m + ; 4 4 07942152 08160276 07971141 08180190 -people's_liberation_army n 1 2 @ ; 1 0 08024408 -people's_mujahidin_of_iran n 1 2 @ ; 1 0 08034778 -people's_party n 1 1 @ 1 0 08262494 -people's_republic_of_bangladesh n 1 5 @ #p %m %p - 1 0 08848731 -people's_republic_of_china n 1 5 @ #p %m %p - 1 0 08723006 -people's_republican_army n 1 2 @ ; 1 0 08024408 -people_against_gangsterism_and_drugs n 1 2 @ ; 1 0 08039601 -people_in_power n 1 1 @ 1 0 08387806 -people_of_color n 1 2 @ %m 1 0 07968354 -people_of_colour n 1 2 @ %m 1 0 07968354 -peoples n 1 2 @ ; 1 0 07943300 -peoria n 1 2 @ #p 1 0 09084075 -pep n 1 2 @ + 1 0 04634833 -pep_pill n 1 2 @ ~ 1 0 02704153 -pep_rally n 1 1 @ 1 0 08358492 -pep_talk n 1 2 @ ; 1 0 07246215 -pepcid n 1 2 @ ; 1 0 03319858 -peperomia n 1 3 @ ~ #m 1 0 13150894 -peperomia_argyreia n 1 1 @ 1 0 13151082 -peperomia_sandersii n 1 1 @ 1 0 13151082 -pepin n 1 1 @ 1 0 11229095 -pepin_iii n 1 1 @ 1 0 11229095 -pepin_the_short n 1 1 @ 1 0 11229095 -peplos n 1 1 @ 1 0 03913930 -peplum n 2 1 @ 2 0 03914106 03913930 -peplus n 1 1 @ 1 0 03913930 -pepper n 4 7 @ ~ #m #p %s %p + 4 0 13149506 12900462 07815588 07720442 -pepper-and-salt n 1 1 @ 1 0 03914231 -pepper_box n 1 1 @ 1 0 03914438 -pepper_bush n 1 1 @ 1 0 12250180 -pepper_family n 1 3 @ #m %m 1 0 13148791 -pepper_grass n 1 3 @ #m %p 1 0 11890507 -pepper_grinder n 1 1 @ 1 0 03914337 -pepper_mill n 1 1 @ 1 0 03914337 -pepper_pot n 2 1 @ 2 0 07586718 03914438 -pepper_root n 1 1 @ 1 0 11882426 -pepper_sauce n 1 1 @ 1 0 07839312 -pepper_shaker n 1 1 @ 1 0 03914438 -pepper_shrub n 1 2 @ #m 1 0 11740414 -pepper_spray n 1 1 @ 1 0 03914583 -pepper_steak n 2 1 @ 2 0 07877961 07877849 -pepper_tree n 2 2 @ #m 2 0 12765115 12718074 -pepper_vine n 1 3 @ ~ #m 1 0 13149296 -peppercorn n 1 3 @ ~ #p 1 0 07815588 -peppercorn_rent n 1 2 @ ; 1 0 13296089 -peppered_steak n 1 1 @ 1 0 07877961 -pepperidge n 1 1 @ 1 0 12340755 -pepperiness n 1 1 @ 1 0 04993312 -peppermint n 3 2 @ %s 3 0 12856091 12336092 07606538 -peppermint_candy n 1 2 @ %s 1 0 07606538 -peppermint_gum n 1 1 @ 1 0 12336092 -peppermint_oil n 1 3 @ #s %s 1 0 07812497 -peppermint_patty n 1 1 @ 1 0 07599554 -pepperoni n 1 1 @ 1 0 07677480 -pepperoni_pizza n 1 1 @ 1 0 07874159 -pepperwood n 1 2 @ #m 1 0 11707827 -pepperwort n 2 4 @ ~ #m %p 2 0 12957608 11890507 -peppiness n 1 2 @ + 1 0 04634833 -pepsi n 1 1 @ 1 0 07928790 -pepsi_cola n 1 1 @ 1 0 07928790 -pepsin n 1 3 @ #s + 1 0 14978729 -pepsinogen n 1 1 @ 1 0 14978887 -peptic_ulcer n 1 2 @ ~ 1 0 14212402 -peptic_ulceration n 1 2 @ ~ 1 0 14212402 -peptidase n 1 2 @ ~ 1 1 14999106 -peptide n 1 2 @ ~ 1 0 14743046 -peptide_bond n 1 1 @ 1 0 11438260 -peptide_linkage n 1 1 @ 1 0 11438260 -peptisation n 1 2 @ + 1 0 13534098 -peptization n 1 2 @ + 1 0 13534098 -pepto-bismal n 1 2 @ ; 1 0 14777768 -peptone n 1 1 @ 1 0 14690447 -pepys n 1 1 @ 1 0 11229323 -per_capita_income n 1 1 @ 1 0 13262200 -per_centum n 1 2 @ ~ 1 1 13817526 -per_diem n 1 1 @ 1 0 13293752 -peradventure n 1 1 @ 1 0 05699600 -perambulation n 2 4 @ ~ + ; 2 0 00292386 00284101 -perambulator n 1 2 @ ~ 1 0 02766534 -peramelidae n 1 3 @ #m %m 1 0 01876180 -perboric_acid n 1 1 @ 1 0 14979052 -perca n 1 3 @ #m %m 1 0 02557033 -perca_flavescens n 1 3 @ #m %p 1 0 02557182 -perca_fluviatilis n 1 3 @ #m %p 1 0 02557318 -percale n 1 1 @ 1 0 03914831 -perceiver n 1 3 @ ~ + 1 0 09626589 -percent n 1 2 @ ~ 1 1 13817526 -percent_sign n 1 1 @ 1 0 06828199 -percentage n 2 3 @ ~ #p 2 2 13817526 13285176 -percentage_point n 1 1 @ 1 0 06812289 -percentage_sign n 1 1 @ 1 0 06828199 -percentile n 1 2 @ ; 1 0 05737752 -percept n 1 3 @ ~ %p 1 0 05930136 -perceptibility n 1 4 ! @ ~ + 1 0 05017230 -perception n 5 4 @ ~ %p + 5 4 05930136 05836468 05708432 05710020 00876874 -perceptiveness n 4 5 ! @ ~ = + 4 0 07513247 05749619 05710210 04843875 -perceptivity n 1 2 @ + 1 0 07513247 -perceptual_constancy n 1 3 @ ~ ; 1 0 05708818 -perceptual_experience n 1 3 @ ~ %p 1 0 05930136 -perch n 7 7 @ ~ #m #p %p + ; 7 1 03914919 13650921 13614679 08626758 07780173 02556846 02555863 -percher n 2 3 @ #m + 2 0 09627017 01523656 -percheron n 1 1 @ 1 0 02387093 -perching_bird n 1 2 @ #m 1 0 01523656 -perchlorate n 1 1 @ 1 1 14684607 -perchloric_acid n 1 1 @ 1 0 14684690 -perchloride n 1 2 @ ~ 1 0 15017466 -perchloromethane n 1 1 @ 1 0 14798039 -percidae n 1 3 @ #m %m 1 0 02556623 -perciformes n 1 3 @ #m %m 1 0 02553196 -percina n 1 3 @ #m %m 1 0 02558079 -percina_tanasi n 1 2 @ #m 1 0 02558206 -percipient n 1 2 @ ~ 1 0 09626589 -percival_lowell n 1 1 @ 1 0 11142614 -percoid n 1 3 @ ~ #m 1 0 02554730 -percoid_fish n 1 3 @ ~ #m 1 0 02554730 -percoidea n 1 3 @ #m %m 1 0 02554512 -percoidean n 1 3 @ ~ #m 1 0 02554730 -percolate n 1 2 @ + 1 0 14997888 -percolation n 3 2 @ + 3 0 13534274 00248252 00192149 -percolator n 1 2 @ + 1 1 03915118 -percomorphi n 1 3 @ #m %m 1 0 02553196 -percophidae n 1 3 @ #m %m 1 0 02620033 -percussion n 4 3 @ ~ + 4 2 00545059 00377813 08217557 00876239 -percussion_cap n 1 2 @ %p 1 0 03915320 -percussion_instrument n 1 3 @ ~ %p 1 0 03915437 -percussion_section n 1 1 @ 1 0 08217557 -percussionist n 1 3 @ ~ + 1 0 10415037 -percussive_instrument n 1 3 @ ~ %p 1 1 03915437 -percussor n 1 3 @ + ; 1 0 03966751 -percy n 2 1 @ 2 0 11229662 11229499 -percy_aldridge_grainger n 1 1 @ 1 0 11010697 -percy_bysshe_shelley n 1 1 @ 1 0 11296914 -percy_grainger n 1 1 @ 1 0 11010697 -perdicidae n 1 3 @ #m %m 1 0 01807265 -perdicinae n 1 3 @ #m %m 1 0 01807265 -perdition n 1 3 @ ~ ; 1 0 05629682 -perdix n 1 3 @ #m %m 1 0 01807701 -perdix_perdix n 1 2 @ #m 1 0 01807828 -perdurability n 1 2 @ + 1 0 05054746 -pere_david's_deer n 1 2 @ #m 1 0 02435517 -pere_jacques_marquette n 1 1 @ 1 0 11158156 -peregrination n 1 2 @ + 1 0 00296478 -peregrine n 1 4 @ ~ #m + 1 0 01611472 -peregrine_falcon n 1 3 @ ~ #m 1 0 01611472 -perejil n 1 2 @ #p 1 0 09389999 -perennation n 1 3 @ + ; 1 0 13534608 -perennial n 1 4 @ ~ + ; 1 0 11553240 -perennial_pea n 1 2 @ #m 1 0 12540001 -perennial_ragweed n 1 1 @ 1 0 11920133 -perennial_ryegrass n 1 1 @ 1 0 12124818 -perennial_salt_marsh_aster n 1 1 @ 1 0 11936448 -pereskia n 1 3 @ #m %m 1 0 11852255 -pereskia_aculeata n 1 3 @ #m %p 1 0 11852531 -perestroika n 1 1 @ 1 0 06658545 -perfect n 1 2 @ ~ 1 0 13806140 -perfect_game n 1 1 @ 1 0 00474881 -perfect_gas n 1 1 @ 1 1 14916512 -perfect_participle n 1 1 @ 1 0 06331154 -perfect_pitch n 1 1 @ 1 0 05658106 -perfect_tense n 1 2 @ ~ 1 1 13806140 -perfecta n 1 1 @ 1 0 00507025 -perfecter n 1 2 @ + 1 0 10415439 -perfectibility n 1 3 ! @ + 1 1 05623444 -perfection n 3 5 ! @ ~ = + 3 1 14459422 05924519 00260494 -perfectionism n 1 2 @ + 1 1 04637722 -perfectionist n 1 2 @ + 1 1 10415230 -perfective n 2 2 @ ~ 2 0 13806140 13804889 -perfective_aspect n 1 1 @ 1 0 13804889 -perfective_tense n 1 2 @ ~ 1 0 13806140 -perfidiousness n 1 3 @ ~ + 1 0 04879964 -perfidy n 2 3 @ ~ + 2 0 04879964 00749767 -perfluorocarbon n 1 1 @ 1 0 14979132 -perfoliate_leaf n 1 1 @ 1 0 13159558 -perforated_eardrum n 1 1 @ 1 0 05324388 -perforating_vein n 1 1 @ 1 0 05376541 -perforation n 3 2 @ + 3 1 03915900 09389867 00944633 -performance n 5 4 @ ~ %p + 5 4 06891493 00550771 00097504 00047106 13525549 -performance_bond n 1 1 @ 1 0 13338960 -performance_capability n 1 2 @ ~ 1 0 05204143 -performer n 1 3 @ ~ + 1 1 10415638 -performing n 1 4 @ ~ #p + 1 0 00548326 -performing_artist n 1 3 @ ~ + 1 0 10415638 -performing_arts n 1 4 @ ~ + - 1 0 06157326 -perfume n 2 3 @ ~ + 2 2 05714466 03916031 -perfumer n 1 1 @ 1 0 10416270 -perfumery n 4 2 @ + 4 0 03916470 03916385 03916289 00937394 -perfusion n 1 2 @ + 1 1 00324233 -pergamum n 1 2 @ #p 1 0 09042451 -pergola n 1 2 @ ~ 1 0 02732827 -peri n 2 2 @ ; 2 0 10416364 09546905 -periactin n 1 2 @ ; 1 0 03157582 -perianth n 1 4 @ ~ #p %p 1 0 11692265 -periapsis n 1 5 ! @ ~ #p ; 1 0 08618379 -periarterial_plexus n 1 1 @ 1 0 05507977 -periarteritis n 1 1 @ 1 0 14258762 -periarteritis_nodosa n 1 1 @ 1 0 14080352 -pericallis n 1 3 @ #m %m 1 0 12001565 -pericallis_cruenta n 1 2 @ #m 1 0 12001707 -pericallis_hybrida n 1 2 @ #m 1 0 12001924 -pericardial_cavity n 1 1 @ 1 0 05428974 -pericardial_sac n 1 1 @ 1 0 05604854 -pericardial_space n 1 1 @ 1 0 05428974 -pericardial_vein n 1 1 @ 1 0 05376721 -pericarditis n 1 1 @ 1 0 14339682 -pericardium n 1 3 @ %p + 1 0 05428473 -pericarp n 1 3 @ ~ #p 1 0 11684264 -pericementoclasia n 1 1 @ 1 0 14081025 -periclase n 1 2 @ %s 1 0 14690607 -pericles n 1 1 @ 1 0 11229801 -peridinian n 1 2 @ #m 1 0 01418114 -peridiniidae n 1 3 @ #m %m 1 0 01417807 -peridinium n 1 2 @ #m 1 0 01417982 -peridium n 1 1 @ 1 0 11533365 -peridot n 1 1 @ 1 0 14979961 -peridotite n 1 2 @ ~ 1 0 14932943 -perigee n 1 2 ! @ 1 0 08618669 -perigon n 1 1 @ 1 0 13892674 -perigone n 1 4 @ ~ #p %p 1 0 11692265 -perigonium n 1 4 @ ~ #p %p 1 0 11692265 -perihelion n 1 2 ! @ 1 0 08618831 -perijove n 1 2 ! @ 1 0 08619006 -peril n 3 3 @ ~ + 3 1 14541852 14543552 00802238 -perilla n 1 3 @ #m %m 1 0 12860842 -perilla_frutescens_crispa n 1 2 @ #m 1 0 12860978 -perilousness n 1 2 @ + 1 0 14541538 -perilune n 1 2 ! @ 1 0 08619112 -perilymph n 1 2 @ #p 1 0 05322247 -perimeter n 3 2 @ ~ 3 0 13903387 13871452 05101261 -perimysium n 1 1 @ 1 0 05296127 -perinatologist n 1 2 @ + 1 0 10416444 -perinatology n 1 2 @ + 1 0 06053982 -perineal_artery n 1 1 @ 1 0 05353507 -perineotomy n 1 2 @ ~ 1 0 00680803 -perineum n 1 2 @ + 1 0 05538494 -perineurium n 1 1 @ 1 0 05296001 -period n 7 6 @ ~ #p %p + ; 7 2 15113229 15289779 15258281 15247518 15144178 13513747 06843520 -period_of_play n 1 5 @ ~ #p %p ; 1 0 15256915 -period_of_time n 1 2 @ ~ 1 1 15113229 -period_piece n 1 1 @ 1 1 03916581 -periodic_acid n 1 1 @ 1 0 14972582 -periodic_apnea_of_the_newborn n 1 1 @ 1 0 14369530 -periodic_breathing n 1 1 @ 1 0 00834290 -periodic_edema n 1 1 @ 1 0 14120310 -periodic_event n 1 2 @ ~ 1 0 07296190 -periodic_law n 1 2 @ ; 1 0 05887156 -periodic_motion n 1 2 @ ~ 1 0 07349679 -periodic_movement n 1 2 @ ~ 1 0 07349679 -periodic_sentence n 1 1 @ 1 0 06285940 -periodic_table n 1 2 @ ; 1 0 08267446 -periodical n 1 3 @ ~ + 1 1 06593296 -periodical_cicada n 1 2 @ #m 1 0 02257284 -periodicity n 1 4 @ ~ = + 1 1 04767805 -periodontal_disease n 1 2 @ ~ 1 0 14080622 -periodontia n 1 2 @ + 1 0 06048851 -periodontics n 1 2 @ + 1 0 06048851 -periodontist n 1 2 @ + 1 0 10416567 -periodontitis n 1 2 @ ~ 1 0 14080622 -periophthalmus n 1 3 @ #m %m 1 0 02619409 -periosteum n 1 2 @ %p 1 0 05327373 -peripatetic n 2 2 @ + 2 0 10416732 09808080 -peripateticism n 1 3 @ + ; 1 0 05969194 -peripatidae n 1 3 @ #m %m 1 0 02000036 -peripatopsidae n 1 3 @ #m %m 1 0 02000618 -peripatopsis n 1 2 @ #m 1 0 02000764 -peripatus n 1 3 @ ~ #m 1 0 01999767 -peripeteia n 1 1 @ 1 0 07298715 -peripetia n 1 1 @ 1 0 07298715 -peripety n 1 1 @ 1 0 07298715 -peripheral n 1 4 @ ~ #p ; 1 0 03916720 -peripheral_device n 1 4 @ ~ #p ; 1 0 03916720 -peripheral_nervous_system n 1 2 @ #p 1 0 05504336 -peripheral_vision n 1 1 @ 1 0 05657373 -periphery n 1 2 @ + 1 1 13903576 -periphrasis n 1 2 @ + 1 0 07090379 -periplaneta n 1 3 @ #m %m 1 0 02234181 -periplaneta_americana n 1 2 @ #m 1 0 02234355 -periplaneta_australasiae n 1 2 @ #m 1 0 02234570 -periploca n 1 3 @ #m %m 1 0 13237343 -periploca_graeca n 1 2 @ #m 1 0 13237508 -periscope n 1 2 @ #p 1 0 03917048 -periselene n 1 2 ! @ 1 0 08619112 -perishability n 1 2 @ + 1 0 04793731 -perishable n 1 1 @ 1 0 07937344 -perishableness n 1 2 @ + 1 0 04793731 -perisher n 1 2 @ ; 1 0 10416828 -perisoreus n 1 3 @ #m %m 1 0 01581041 -perisoreus_canadensis n 1 3 @ ~ #m 1 0 01581166 -perisoreus_canadensis_capitalis n 1 1 @ 1 0 01581434 -perisperm n 1 1 @ 1 0 11686652 -perissodactyl n 1 3 @ ~ #m 1 0 02373336 -perissodactyl_mammal n 1 3 @ ~ #m 1 0 02373336 -perissodactyla n 1 3 @ #m %m 1 0 02373093 -peristalsis n 1 2 ! @ 1 0 13534773 -peristediinae n 1 2 @ #m 1 0 02651215 -peristedion n 1 3 @ #m %m 1 0 02651412 -peristedion_miniatum n 1 2 @ #m 1 0 02651617 -peristome n 2 3 @ #p ; 2 0 11685876 02511510 -peristyle n 1 2 @ + 1 0 03917198 -perithecium n 1 1 @ 1 0 12962310 -perithelium n 1 2 @ + 1 0 05327652 -peritoneal_cavity n 1 2 @ %p 1 0 05427946 -peritoneal_inflammation n 1 1 @ 1 0 14352687 -peritoneum n 1 3 @ ~ + 1 0 05427739 -peritonitis n 1 1 @ 1 0 14352687 -peritonsillar_abscess n 1 1 @ 1 0 14173823 -peritrate n 1 2 @ ; 1 0 03912328 -periwig n 1 1 @ 1 0 03917327 -periwinkle n 4 5 @ ~ #m #s %s 4 1 11777929 11772408 07782668 01948446 -periwinkle_plant_derivative n 1 2 @ ~ 1 0 03917455 -perjurer n 1 2 @ + 1 0 10416909 -perjury n 1 2 @ + 1 0 00772381 -perk n 1 2 @ ~ 1 0 13298011 -perkiness n 2 2 @ + 2 0 07530723 04649651 -perleche n 1 1 @ 1 0 14058066 -perm n 2 3 @ #p + 2 0 09009372 05260533 -permafrost n 1 1 @ 1 0 09390146 -permalloy n 1 1 @ 1 0 14979285 -permanence n 1 5 ! @ ~ = + 1 1 05053215 -permanency n 1 4 @ ~ = + 1 0 05053215 -permanent n 1 2 @ + 1 0 05260533 -permanent_injunction n 1 2 @ ; 1 0 06543389 -permanent_magnet n 1 2 @ ~ 1 0 03917622 -permanent_press n 1 1 @ 1 0 03917814 -permanent_tooth n 1 1 @ 1 0 05306708 -permanent_wave n 1 1 @ 1 0 05260533 -permanganate n 1 2 @ ~ 1 0 14979410 -permanganate_of_potash n 1 1 @ 1 0 14995278 -permanganic_acid n 1 1 @ 1 0 14979588 -permeability n 1 4 ! @ ~ + 1 0 04940496 -permeableness n 1 3 @ ~ + 1 0 04940496 -permeation n 2 3 @ ~ + 2 0 13534954 00051712 -permian n 1 2 @ #p 1 1 15127165 -permian_period n 1 2 @ #p 1 0 15127165 -permic n 1 2 @ ~ 1 0 06956896 -permissibility n 1 3 ! @ + 1 0 04793209 -permission n 2 3 @ ~ + 2 2 06689297 01139194 -permissive_waste n 1 2 @ ; 1 0 01252124 -permissiveness n 1 5 ! @ ~ = + 1 0 04637923 -permit n 3 4 @ ~ + ; 3 2 06549661 01139194 02579928 -permutability n 1 2 @ + 1 0 04737568 -permutableness n 1 2 @ + 1 0 04737568 -permutation n 4 2 @ + 4 0 07443761 00870312 00399223 00339646 -pernambuco n 1 2 @ #p 1 0 08856475 -pernambuco_wood n 1 3 @ #m %s 1 0 12489268 -pernicious_anaemia n 1 2 @ ~ 1 0 14167426 -pernicious_anemia n 1 2 @ ~ 1 0 14167426 -perniciousness n 1 2 @ + 1 0 04790942 -pernio n 1 2 @ ~ 1 0 14183522 -pernis n 1 3 @ #m %m 1 0 01608086 -pernis_apivorus n 1 2 @ #m 1 0 01608265 -pernod n 1 3 @ %s ; 1 0 07910656 -pernyi_moth n 1 2 @ #m 1 0 02304657 -perodicticus n 1 3 @ #m %m 1 0 02499178 -perodicticus_potto n 1 2 @ #m 1 0 02499316 -perognathus n 1 3 @ #m %m 1 0 02349040 -perognathus_flavescens n 1 2 @ #m 1 0 02349390 -perognathus_flavus n 1 2 @ #m 1 0 02349205 -perognathus_hispidus n 1 2 @ #m 1 0 02349557 -peromyscus n 1 3 @ #m %m 1 0 02336451 -peromyscus_eremicus n 1 2 @ #m 1 0 02337171 -peromyscus_gossypinus n 1 2 @ #m 1 0 02337332 -peromyscus_leucopus n 1 2 @ #m 1 0 02336826 -peromyscus_maniculatus n 1 2 @ #m 1 0 02337001 -peron n 1 1 @ 1 0 11230021 -peroneal_vein n 1 2 @ #p 1 0 05376844 -peroneus n 1 1 @ 1 0 05575960 -peronospora n 1 3 @ #m %m 1 0 12980652 -peronospora_destructor n 1 2 @ #m 1 0 12981301 -peronospora_hyoscyami n 1 2 @ #m 1 0 12981443 -peronospora_tabacina n 1 2 @ #m 1 0 12981086 -peronosporaceae n 1 3 @ #m %m 1 0 12980478 -peronosporales n 1 3 @ #m %m 1 0 12980231 -peroration n 2 4 @ #p + ; 2 0 07241723 06399126 -peroxidase n 1 3 @ ~ ; 1 0 14979730 -peroxide n 2 3 @ ~ + 2 1 14781225 14980087 -peroxide_blond n 1 1 @ 1 0 10417045 -peroxide_blonde n 1 1 @ 1 0 10417045 -perpendicular n 4 4 @ ~ %p + 4 0 13870680 05843236 03969627 03917973 -perpendicular_style n 1 2 @ ~ 1 0 05843236 -perpendicularity n 2 2 @ + 2 0 13829047 05072208 -perpetration n 1 2 @ + 1 1 00773235 -perpetrator n 1 2 @ + 1 0 10417168 -perpetual_calendar n 1 1 @ 1 0 08267008 -perpetual_motion n 1 1 @ 1 0 14005549 -perpetual_motion_machine n 1 1 @ 1 0 03918074 -perpetual_warrant n 1 1 @ 1 0 13418616 -perpetuation n 1 2 @ + 1 1 01018366 -perpetuity n 1 2 @ + 1 0 05053527 -perphenazine n 1 1 @ 1 0 03918297 -perplexity n 1 3 @ ~ + 1 0 05685363 -perquisite n 2 2 @ ~ 2 0 13298011 05178715 -perry n 4 1 @ 4 0 11230669 11230402 11230158 07922147 -perry_mason n 1 1 @ 1 0 09602716 -persea n 1 3 @ #m %m 1 0 11706629 -persea_americana n 1 3 @ #m %p 1 0 11706761 -persea_borbonia n 1 2 @ #m 1 0 11706942 -persecution n 1 4 @ ~ + ; 1 1 00420477 -persecutor n 1 3 @ ~ + 1 0 10716005 -persephone n 1 2 @ ; 1 0 09569467 -persepolis n 1 2 @ #p 1 0 08913085 -perseus n 2 3 @ %m ; 2 0 09497163 09390236 -perseverance n 2 2 @ + 2 0 04864515 01021579 -perseveration n 2 2 @ + 2 0 06200010 01021579 -pershing n 1 1 @ 1 0 11230780 -persia n 2 7 @ #m #p %m %p + - 2 0 08912842 08910668 -persian n 2 5 @ ~ #m + - 2 0 09714429 06974127 -persian_cat n 1 1 @ 1 0 02123394 -persian_deity n 1 3 @ ~ ; 1 0 09531630 -persian_empire n 1 3 @ #p - 1 0 08912842 -persian_gulf n 1 3 @ #p %p 1 0 09390424 -persian_gulf_illness n 1 1 @ 1 0 14305699 -persian_gulf_war n 1 2 @ %p 1 0 01307090 -persian_iris n 1 1 @ 1 0 12414449 -persian_lamb n 2 1 @ 2 0 14765240 02412977 -persian_lilac n 2 2 @ #m 2 0 12695975 12311045 -persian_melon n 2 2 @ %p 2 0 12164881 07756499 -persian_violet n 1 2 @ #m 1 0 12292463 -persian_walnut n 1 3 @ #m %m 1 0 12319414 -persiflage n 1 1 @ 1 0 06778032 -persimmon n 2 4 @ ~ #m #p 2 0 12771192 07746186 -persimmon_tree n 1 3 @ ~ #m 1 0 12771192 -persistence n 3 3 @ = + 3 2 05054130 04864515 01021579 -persistency n 1 2 @ + 1 1 04864515 -person n 3 5 @ ~ #m %p + 3 2 00007846 05217688 06326797 -person_agreement n 1 1 @ 1 0 13797747 -person_hour n 1 2 @ #p 1 0 15230482 -person_of_color n 1 4 @ ~ #m ; 1 0 09636106 -person_of_colour n 1 4 @ ~ #m ; 1 0 09636106 -persona n 2 4 @ ~ + ; 2 1 05929008 04677716 -persona_grata n 1 1 @ 1 0 10417843 -persona_non_grata n 2 2 @ ~ 2 0 10417969 09631129 -personableness n 1 3 @ %p + 1 0 04618921 -personage n 2 2 @ ~ 2 1 10417682 10200781 -personal n 1 1 @ 1 0 06271288 -personal_appeal n 1 1 @ 1 0 04686537 -personal_business n 1 2 @ ~ 1 0 05671676 -personal_care n 1 1 @ 1 0 00665476 -personal_chattel n 1 2 @ ; 1 0 13245846 -personal_check n 1 1 @ 1 0 13383289 -personal_cheque n 1 1 @ 1 0 13383289 -personal_computer n 1 3 @ ~ %p 1 0 03918480 -personal_credit_line n 1 2 @ ~ 1 0 13379413 -personal_digital_assistant n 1 1 @ 1 0 03918737 -personal_effects n 1 1 @ 1 0 13246079 -personal_equation n 1 1 @ 1 0 04773068 -personal_estate n 1 2 @ ~ 1 0 13245626 -personal_expense n 1 1 @ 1 0 13277644 -personal_foul n 1 2 @ ; 1 0 00771198 -personal_identification_number n 1 1 @ 1 0 06887441 -personal_identity n 1 2 @ ~ 1 0 04618070 -personal_income n 1 2 @ ~ 1 0 13259359 -personal_judgement n 1 2 @ ; 1 0 01189650 -personal_judgment n 1 2 @ ; 1 0 01189650 -personal_letter n 1 2 @ ~ 1 0 06625329 -personal_line_of_credit n 1 2 @ ~ 1 0 13379413 -personal_loan n 1 2 @ ~ 1 0 13399782 -personal_magnetism n 1 1 @ 1 0 04686537 -personal_manner n 1 2 @ ~ 1 0 04910135 -personal_matters n 1 2 @ ~ 1 0 05671676 -personal_memory n 1 1 @ 1 0 05761044 -personal_organiser n 1 1 @ 1 0 03918737 -personal_organizer n 1 1 @ 1 0 03918737 -personal_pronoun n 1 2 @ ~ 1 1 06327136 -personal_property n 1 2 @ ~ 1 1 13245626 -personal_relation n 1 2 @ ~ 1 0 13781670 -personal_relationship n 1 2 @ ~ 1 0 13781670 -personal_representative n 1 2 @ ~ 1 0 10417551 -personality n 2 5 @ ~ #p %p + 2 2 04617562 10417424 -personality_assessment n 1 2 @ ~ 1 0 06474289 -personality_disorder n 1 2 @ ~ 1 0 14387807 -personality_inventory n 1 2 @ ~ 1 0 06474289 -personality_test n 1 2 @ ~ 1 0 01007463 -personalty n 1 2 @ ~ 1 0 13245626 -personation n 2 3 @ ~ + 2 0 00549284 00548802 -personhood n 1 2 @ + 1 0 04618781 -personification n 3 3 @ ~ + 3 1 10418101 07108123 00933259 -personnel n 2 2 @ ~ 2 1 08208016 08118991 -personnel_carrier n 1 2 @ ; 1 0 03919096 -personnel_casualty n 1 3 @ ~ ; 1 0 07340725 -personnel_department n 1 1 @ 1 0 08118991 -personnel_office n 1 1 @ 1 0 08118991 -personnel_pouch n 1 1 @ 1 0 02862770 -persoonia n 1 3 @ #m %m 1 0 12222334 -perspective n 2 3 @ ~ %p 2 2 06208751 04676308 -perspex n 1 2 @ ; 1 0 14594032 -perspicaciousness n 1 4 @ ~ + ; 1 0 05621439 -perspicacity n 2 4 @ ~ + ; 2 0 05621439 04892084 -perspicuity n 1 2 @ + 1 0 04821615 -perspicuousness n 1 2 @ + 1 0 04821615 -perspiration n 2 4 @ ~ %s + 2 1 05405751 13535261 -perspirer n 1 1 @ 1 0 10418735 -persuader n 1 3 @ ~ + 1 0 10418841 -persuasion n 2 4 ! @ ~ + 2 0 07245125 05945642 -persuasiveness n 1 4 ! @ ~ + 1 0 05191832 -pertainym n 1 2 @ ; 1 0 06322357 -perth n 1 2 @ #p 1 0 08834806 -pertinacity n 1 2 @ + 1 0 04864515 -pertinence n 1 3 @ ~ + 1 1 13795180 -pertinency n 1 3 @ ~ + 1 0 13795180 -pertness n 2 2 @ + 2 0 04649651 04632703 -perturbation n 5 4 @ ~ + ; 5 1 14403282 11414874 07428450 04904996 00553173 -pertusaria n 1 2 @ #m 1 0 12989301 -pertusariaceae n 1 3 @ #m %m 1 0 12989142 -pertussis n 1 1 @ 1 0 14144626 -peru n 1 7 @ #m #p %m %p + - 1 1 08979054 -peruke n 1 1 @ 1 0 03917327 -perusal n 1 2 @ + 1 1 06598445 -perusing n 1 2 @ + 1 0 06598445 -perutz n 1 1 @ 1 0 11230977 -peruvian n 1 3 @ #m + 1 0 09726499 -peruvian_balsam n 1 3 @ #m %s 1 0 12551457 -peruvian_bark n 1 2 @ #p 1 0 12664710 -peruvian_cotton n 1 1 @ 1 0 12177129 -peruvian_current n 1 1 @ 1 0 11489878 -peruvian_lily n 1 2 @ #m 1 0 12438783 -peruvian_mastic_tree n 1 2 @ #m 1 0 12765115 -peruvian_monetary_unit n 1 2 @ ~ 1 0 13680273 -pervaporation n 1 2 @ + 1 1 00375348 -pervasion n 1 3 @ ~ + 1 0 13534954 -pervasiveness n 1 2 @ + 1 0 04765166 -perverseness n 2 3 @ ~ + 2 0 04909018 04853503 -perversion n 3 3 @ ~ + 3 0 13876921 00854717 00742474 -perversity n 2 3 @ ~ + 2 0 04909018 04853503 -pervert n 1 3 @ ~ + 1 0 10419047 -perviousness n 1 3 ! @ + 1 0 04940730 -pes n 1 4 @ ~ #p %p 1 0 05563266 -pes_cavus n 1 1 @ 1 0 14214001 -pes_planus n 1 1 @ 1 0 05576421 -pesach n 1 3 @ ~ ; 1 0 15195928 -pesah n 1 3 @ ~ ; 1 0 15195928 -pesantran n 1 2 @ ; 1 0 08283866 -pesantren n 1 2 @ ; 1 0 08283866 -peseta n 1 2 @ %p 1 0 13690758 -pesewa n 1 2 @ #p 1 0 13667150 -pesh_merga n 1 1 @ 1 0 08030379 -peshawar n 1 2 @ #p 1 0 08977527 -peshmerga n 1 1 @ 1 0 10417288 -peso n 8 2 @ %p 8 0 13693349 13693084 13692822 13692559 13692278 13692014 13691764 13691509 -pessary n 1 1 @ 1 0 03189461 -pessimism n 2 4 ! @ ~ + 2 1 07543033 05211974 -pessimist n 1 4 ! @ ~ + 1 1 10419472 -pest n 4 2 @ ~ 4 0 14138691 14076479 10419630 01314388 -pesterer n 1 3 @ ~ + 1 0 10419630 -pesthole n 1 1 @ 1 0 08619250 -pesthouse n 1 1 @ 1 0 03650803 -pesticide n 1 2 @ ~ 1 0 14980215 -pesticide_poisoning n 1 2 @ ~ 1 0 14512508 -pestilence n 3 3 @ ~ + 3 0 14138691 14076479 05693669 -pestis n 1 2 @ ~ 1 0 14138691 -pestis_ambulans n 1 1 @ 1 0 14139333 -pestis_bubonica n 1 2 @ ~ 1 0 14139015 -pestle n 3 3 @ #p + 3 0 04300080 03919430 03919289 -pesto n 1 1 @ 1 0 07832416 -pet n 4 3 @ ~ + 4 1 01318894 09991867 07553176 00902376 -pet-food n 1 2 @ ~ 1 0 07805731 -pet_food n 1 2 @ ~ 1 0 07805731 -pet_name n 1 1 @ 1 0 06339244 -pet_peeve n 1 1 @ 1 0 07211604 -pet_scanner n 1 1 @ 1 0 03987990 -pet_shop n 1 1 @ 1 0 03920641 -pet_sitter n 1 1 @ 1 0 10420507 -pet_sitting n 1 1 @ 1 0 00655878 -petabit n 1 3 @ #p %p 1 0 13630545 -petabyte n 2 3 @ #p %p 2 0 13630387 13630213 -petal n 1 3 @ #p + 1 1 11690455 -petard n 1 1 @ 1 0 03919702 -petasites n 1 3 @ #m %m 1 0 12002197 -petasites_fragrans n 1 2 @ #m 1 0 12002651 -petasites_hybridus n 1 2 @ #m 1 0 12002428 -petasites_sagitattus n 1 2 @ #m 1 0 12002826 -petasites_vulgaris n 1 2 @ #m 1 0 12002428 -petaurista n 1 3 @ #m %m 1 0 02362420 -petaurista_petaurista n 1 2 @ #m 1 0 02362569 -petauristidae n 1 3 @ #m %m 1 0 02362025 -petaurus n 1 3 @ #m %m 1 0 01881991 -petchary n 1 1 @ 1 0 01549053 -petcock n 1 1 @ 1 0 03919808 -pete_seeger n 1 1 @ 1 0 11290984 -petechia n 1 1 @ 1 0 14289193 -peter n 2 2 @ ; 2 0 11231157 05526713 -peter's_gland n 1 1 @ 1 0 05430454 -peter's_pence n 1 1 @ 1 0 13270760 -peter_abelard n 1 1 @ 1 0 10807317 -peter_alexander_ustinov n 1 1 @ 1 0 11358065 -peter_behrens n 1 1 @ 1 0 10841880 -peter_carl_faberge n 1 1 @ 1 0 10964829 -peter_carl_goldmark n 1 1 @ 1 0 11005050 -peter_cooper n 1 1 @ 1 0 10909471 -peter_goldmark n 1 1 @ 1 0 11005050 -peter_i n 1 1 @ 1 0 11231433 -peter_ilich_tchaikovsky n 1 1 @ 1 0 11333762 -peter_lorre n 1 1 @ 1 0 11138924 -peter_mark_roget n 1 1 @ 1 0 11269085 -peter_medawar n 1 1 @ 1 0 11170913 -peter_minnewit n 1 1 @ 1 0 11181438 -peter_minuit n 1 1 @ 1 0 11181438 -peter_o'toole n 1 2 @ ; 1 0 11218473 -peter_pan n 2 1 @ 2 0 10419785 09602828 -peter_pan_collar n 1 1 @ 1 0 03919974 -peter_paul_mauser n 1 1 @ 1 0 11165854 -peter_paul_rubens n 1 1 @ 1 0 11273104 -peter_seamus_o'toole n 1 2 @ ; 1 0 11218473 -peter_seeger n 1 1 @ 1 0 11290984 -peter_sellers n 1 1 @ 1 0 11292105 -peter_stuyvesant n 1 1 @ 1 0 11323094 -peter_tchaikovsky n 1 1 @ 1 0 11333762 -peter_the_great n 1 1 @ 1 0 11231433 -peterburg n 1 2 @ #p 1 0 09008454 -petersburg n 2 3 @ #p ; 2 0 09152218 01290435 -petersburg_campaign n 1 3 @ #p ; 1 0 01290435 -petfood n 1 2 @ ~ 1 0 07805731 -petiole n 1 2 @ ~ 1 0 13131618 -petiolule n 1 1 @ 1 0 11678299 -petit_bourgeois n 2 3 @ #m %m 2 0 10419916 08182105 -petit_dejeuner n 1 1 @ 1 1 07574780 -petit_four n 1 1 @ 1 0 07633640 -petit_juror n 1 2 @ #m 1 0 10420277 -petit_jury n 1 3 @ %m ; 1 0 08415272 -petit_larceny n 1 2 ! @ 1 0 00784083 -petit_mal n 2 2 @ %p 2 0 14088127 14083559 -petit_mal_epilepsy n 1 2 @ %p 1 0 14088127 -petit_point n 2 1 @ 2 0 03920181 03920087 -petite n 1 2 @ + 1 0 05096708 -petite_bourgeoisie n 1 2 @ %m 1 0 08182105 -petite_marmite n 1 1 @ 1 0 07586894 -petiteness n 1 2 @ + 1 0 05106928 -petitio n 1 1 @ 1 0 05894814 -petitio_principii n 1 1 @ 1 0 05894814 -petition n 2 3 @ ~ + 2 1 06513366 07189130 -petitioner n 2 3 @ ~ + 2 1 10420031 10672192 -petrarca n 1 1 @ 1 0 11231683 -petrarch n 1 1 @ 1 0 11231683 -petrarchan_sonnet n 1 1 @ 1 0 06382716 -petrel n 1 3 @ ~ #m 1 0 02059162 -petri_dish n 1 1 @ 1 0 03920288 -petrifaction n 2 2 @ + 2 0 13535583 09390680 -petrification n 1 2 @ + 1 0 13535583 -petrified_forest_national_park n 1 2 @ #p 1 0 08608314 -petrissage n 1 1 @ 1 0 00659834 -petrochemical n 1 1 @ 1 0 14980468 -petrocoptis n 1 2 @ #m 1 0 11813830 -petrogale n 1 3 @ #m %m 1 0 01878803 -petroglyph n 1 1 @ 1 0 00942440 -petrograd n 1 2 @ #p 1 0 09008454 -petrol n 1 3 @ ~ #s 1 0 14686913 -petrol_bomb n 1 1 @ 1 0 03781055 -petrol_engine n 1 4 @ ~ #p %p 1 0 03424630 -petrol_gage n 1 2 @ #p 1 0 03424862 -petrol_gauge n 1 2 @ #p 1 0 03424862 -petrol_line n 1 2 @ #p 1 0 03401500 -petrol_pump n 1 1 @ 1 0 03425413 -petrol_station n 1 1 @ 1 0 03425092 -petrol_tank n 1 2 @ #p 1 0 03426134 -petrolatum n 1 3 @ ~ #s 1 0 14980910 -petrolatum_gauze n 1 2 @ %s 1 0 03920384 -petroleum n 1 3 @ ~ %s 1 0 14980579 -petroleum_future n 1 1 @ 1 0 03843724 -petroleum_geologist n 1 1 @ 1 1 10420392 -petroleum_geology n 1 1 @ 1 0 06121690 -petroleum_jelly n 1 3 @ ~ #s 1 0 14980910 -petroleum_refinery n 1 2 @ %p 1 0 03844673 -petrology n 1 1 @ 1 0 06121375 -petromyzon n 1 3 @ #m %m 1 0 01477745 -petromyzon_marinus n 1 2 @ #m 1 0 01477875 -petromyzoniformes n 1 2 @ #m 1 0 01477184 -petromyzontidae n 1 3 @ #m %m 1 0 01477373 -petronas_towers n 1 2 @ #p 1 0 03920497 -petronius n 1 1 @ 1 0 11231821 -petronius_arbiter n 1 1 @ 1 0 11231821 -petroselinum n 1 3 @ #m %m 1 0 12942270 -petroselinum_crispum n 1 3 @ ~ #m 1 0 12942395 -petroselinum_crispum_neapolitanum n 1 1 @ 1 0 12942572 -petroselinum_crispum_tuberosum n 1 1 @ 1 0 12942729 -petrus_stuyvesant n 1 1 @ 1 0 11323094 -petter n 1 2 @ + 1 0 10420649 -petteria n 1 3 @ #m %m 1 0 12498316 -petteria_ramentacea n 1 2 @ #m 1 0 12498457 -petticoat n 1 2 @ ~ 1 0 03920737 -pettifogger n 2 2 @ + 2 0 10594857 10501203 -pettifoggery n 1 2 @ + 1 0 07184735 -pettiness n 3 3 @ ~ + 3 0 06205827 05173205 04834073 -petting n 1 3 @ ~ + 1 1 00854000 -petting_zoo n 1 1 @ 1 0 07993526 -pettishness n 1 3 @ ~ + 1 0 04642258 -petty n 1 1 @ 1 0 00784083 -petty_apartheid n 1 1 @ 1 0 08379455 -petty_bourgeoisie n 1 2 @ %m 1 0 08182105 -petty_cash n 1 1 @ 1 0 13422411 -petty_criticism n 1 1 @ 1 0 06719203 -petty_juror n 1 2 @ #m 1 0 10420277 -petty_jury n 1 3 @ %m ; 1 0 08415272 -petty_larceny n 1 1 @ 1 0 00784083 -petty_morel n 1 2 @ #m 1 0 11797981 -petty_officer n 1 2 @ ~ 1 0 10420809 -petty_spurge n 1 2 @ #m 1 0 12918810 -petty_whin n 1 2 @ #m 1 0 12530439 -petulance n 1 3 @ ~ + 1 1 07552729 -petunia n 2 4 @ ~ #m %m 2 0 12909421 12909252 -petunia_axillaris n 1 1 @ 1 0 12909614 -petunia_hybrida n 1 1 @ 1 0 12909917 -petunia_integrifolia n 1 1 @ 1 0 12909759 -peul n 1 1 @ 1 0 06996510 -pew n 1 1 @ 1 1 03920867 -pewee n 1 3 @ ~ #m 1 0 01549430 -pewit n 3 3 @ ~ #m 3 0 02042180 02024763 01549430 -pewit_gull n 1 2 @ #m 1 0 02042180 -pewter n 1 1 @ 1 0 14718099 -peyer's_patch n 1 1 @ 1 0 05430454 -peyote n 2 4 @ #m #s %p 2 0 11849271 03750912 -peyton_rous n 1 1 @ 1 0 11272523 -peziza n 1 3 @ #m %m 1 0 13030438 -peziza_coccinea n 1 2 @ #m 1 0 13030852 -peziza_domicilina n 1 2 @ #m 1 0 13030616 -pezizaceae n 1 3 @ #m %m 1 0 13030157 -pezizales n 1 3 @ #m %m 1 0 13029946 -pezophaps n 1 3 @ #m %m 1 0 01811394 -pezophaps_solitaria n 1 2 @ #m 1 0 01811542 -pfalz n 1 2 @ #p 1 0 08775439 -pfannkuchen n 1 1 @ 1 0 07641380 -pfc n 1 1 @ 1 0 14979132 -pfennig n 1 2 @ #p 1 1 13688190 -pflp n 1 2 @ ; 1 0 08038379 -pflp-gc n 1 2 @ ; 1 0 08038748 -ph n 1 3 @ ~ ; 1 1 05039106 -ph.d. n 1 1 @ 1 0 06704115 -ph_scale n 1 3 @ ~ ; 1 0 05039106 -phacelia n 1 3 @ ~ #m 1 0 12836862 -phacelia_campanularia n 1 1 @ 1 0 12837052 -phacelia_minor n 1 1 @ 1 0 12837259 -phacelia_tanacetifolia n 1 1 @ 1 0 12837466 -phacelia_whitlavia n 1 1 @ 1 0 12837259 -phacochoerus n 1 3 @ #m %m 1 0 02396970 -phacoemulsification n 1 1 @ 1 0 00679140 -phaeochromocytoma n 1 1 @ 1 0 14250232 -phaeophyceae n 1 3 @ #m %m 1 0 01402169 -phaeophyta n 1 2 @ %m 1 0 01402381 -phaethon n 2 4 @ #m %m ; 2 0 09570114 02054966 -phaethontidae n 1 3 @ #m %m 1 0 02054834 -phaeton n 1 1 @ 1 0 04459122 -phage n 1 2 @ ~ 1 0 01334862 -phagocyte n 1 3 @ ~ + 1 1 05450888 -phagocytosis n 1 1 @ 1 0 13535837 -phagun n 1 2 @ #p 1 0 15221474 -phaius n 1 2 @ #m 1 0 12076223 -phalacrocoracidae n 1 3 @ #m %m 1 0 02053720 -phalacrocorax n 1 3 @ #m %m 1 0 02053859 -phalacrocorax_carbo n 1 2 @ #m 1 0 02054036 -phalacrosis n 1 2 @ ~ 1 0 14457041 -phalaenopsis n 1 3 @ #m %m 1 0 12076381 -phalaenopsis_amabilis n 1 2 @ #m 1 0 12076852 -phalaenoptilus n 1 3 @ #m %m 1 0 01836527 -phalaenoptilus_nuttallii n 1 2 @ #m 1 0 01836673 -phalanger n 1 3 @ ~ #m 1 0 01881171 -phalangeridae n 1 3 @ #m %m 1 0 01880937 -phalangida n 1 3 @ #m %m 1 0 01769635 -phalangiidae n 1 3 @ #m %m 1 0 01769789 -phalangist n 1 1 @ 1 0 10076483 -phalangitis n 1 1 @ 1 0 14352801 -phalangium n 1 3 @ #m %m 1 0 01769930 -phalangium_opilio n 1 2 @ #m 1 0 01770081 -phalanx n 3 4 @ #p + ; 3 2 05278584 08272564 08272460 -phalaris n 1 3 @ #m %m 1 0 12129525 -phalaris_aquatica n 1 2 @ #m 1 0 12130160 -phalaris_arundinacea n 1 2 @ #m 1 0 12129738 -phalaris_canariensis n 1 2 @ #m 1 0 12129986 -phalaris_tuberosa n 1 2 @ #m 1 0 12130160 -phalarope n 1 3 @ ~ #m 1 0 02037464 -phalaropidae n 1 3 @ #m %m 1 0 02037278 -phalaropus n 1 3 @ #m %m 1 0 02037713 -phalaropus_fulicarius n 1 2 @ #m 1 0 02037869 -phalguna n 1 2 @ #p 1 0 15221474 -phallaceae n 1 3 @ #m %m 1 0 13039870 -phallales n 1 3 @ #m %m 1 0 13039553 -phallic_phase n 1 3 @ #p ; 1 0 15146828 -phallic_stage n 1 3 @ #p ; 1 0 15146828 -phalloplasty n 1 1 @ 1 0 00689995 -phallus n 2 7 @ ~ #m #p %m %p + 2 0 13040108 05526384 -phallus_impudicus n 1 2 @ #m 1 0 13040629 -phallus_ravenelii n 1 2 @ #m 1 0 13040796 -phalsa n 1 2 @ #m 1 0 12205104 -phanerogam n 1 2 @ ~ 1 0 11552386 -phanerogamae n 1 3 ! @ #m 1 0 11551659 -phaneromania n 1 1 @ 1 0 09182784 -phanerozoic n 1 2 @ %p 1 0 15124183 -phanerozoic_aeon n 1 2 @ %p 1 0 15124183 -phanerozoic_eon n 1 2 @ %p 1 0 15124183 -phantasm n 2 2 @ ~ 2 0 09547111 05897553 -phantasma n 2 3 @ ~ + 2 0 09547111 05897553 -phantasmagoria n 1 2 @ + 1 0 05928840 -phantasy n 3 2 @ ~ 3 1 05896059 06368425 05632446 -phantasy_life n 1 1 @ 1 0 05632927 -phantasy_world n 1 2 @ ~ 1 0 05633044 -phantom n 2 2 @ ~ 2 2 09547111 05897553 -phantom_limb n 1 1 @ 1 0 05940090 -phantom_limb_pain n 1 1 @ 1 0 05725137 -phantom_limb_syndrome n 1 1 @ 1 0 14308168 -phantom_orchid n 1 2 @ #m 1 0 12060546 -pharaoh n 1 3 @ ~ + 1 0 10421016 -pharaoh's_ant n 1 2 @ #m 1 0 02220055 -pharaoh's_chicken n 1 2 @ #m 1 0 01617766 -pharaoh_ant n 1 2 @ #m 1 0 02220055 -pharaoh_of_egypt n 1 2 @ ~ 1 0 10421016 -pharisee n 2 3 @ ~ + 2 0 10421339 10421183 -pharma n 1 1 @ 1 0 08002578 -pharmaceutic n 1 2 @ ~ 1 0 03920989 -pharmaceutical n 1 3 @ ~ + 1 0 03920989 -pharmaceutical_chemist n 1 2 @ ~ 1 0 10421753 -pharmaceutical_company n 1 1 @ 1 0 08002578 -pharmaceutics n 1 2 @ + 1 0 06055300 -pharmacist n 1 3 @ ~ + 1 1 10421470 -pharmacogenetics n 1 1 @ 1 0 06079247 -pharmacokinetics n 1 1 @ 1 0 06055529 -pharmacological_medicine n 1 3 @ ~ - 1 0 06054892 -pharmacologist n 1 3 @ ~ + 1 0 10421753 -pharmacology n 1 4 @ ~ + - 1 0 06054892 -pharmacopeia n 1 2 @ ; 1 0 06411883 -pharmacopoeia n 1 3 @ #p %p 1 0 03921209 -pharmacy n 2 3 @ %p + 2 2 06055300 03249342 -pharomacrus n 1 3 @ #m %m 1 0 01844414 -pharomacrus_mocino n 1 1 @ 1 0 01844746 -pharos n 1 2 @ ~ 1 0 02814860 -pharsalus n 1 2 @ ; 1 0 01290711 -pharyngeal n 1 1 @ 1 0 07120176 -pharyngeal_consonant n 1 1 @ 1 0 07120176 -pharyngeal_recess n 1 2 @ #p 1 0 05609884 -pharyngeal_reflex n 1 1 @ 1 0 00866423 -pharyngeal_tonsil n 1 2 @ #p 1 0 05529286 -pharyngeal_vein n 1 1 @ 1 0 05377098 -pharyngitis n 1 2 @ ~ 1 0 14173484 -pharynx n 1 4 @ #p %p + 1 0 05547508 -phascogale n 1 3 @ #m %m 1 0 01885032 -phascolarctos n 1 2 @ #m 1 0 01882607 -phascolarctos_cinereus n 1 1 @ 1 0 01882714 -phase n 4 5 @ ~ #p + ; 4 3 15290337 14480065 15290132 04676540 -phase-out n 1 1 @ 1 0 01023138 -phase_angle n 1 2 @ #p 1 0 15290132 -phase_change n 1 2 @ ~ 1 0 13536016 -phase_i n 1 1 @ 1 0 00792720 -phase_i_clinical_trial n 1 1 @ 1 0 00792720 -phase_ii n 1 1 @ 1 0 00792954 -phase_ii_clinical_trial n 1 1 @ 1 0 00792954 -phase_iii n 1 1 @ 1 0 00793212 -phase_iii_clinical_trial n 1 1 @ 1 0 00793212 -phase_iv n 1 1 @ 1 0 00793529 -phase_iv_clinical_trial n 1 1 @ 1 0 00793529 -phase_modulation n 1 1 @ 1 0 06281848 -phase_of_cell_division n 1 2 @ ~ 1 0 13536299 -phase_of_the_moon n 1 2 @ ~ 1 0 15206744 -phase_space n 1 3 @ ~ ; 1 0 00029114 -phase_transition n 1 2 @ ~ 1 0 13536016 -phaseolus n 1 3 @ #m %m 1 0 12556030 -phaseolus_aconitifolius n 1 2 @ #m 1 0 12577362 -phaseolus_acutifolius_latifolius n 1 2 @ #m 1 0 12558680 -phaseolus_angularis n 1 2 @ #m 1 0 12577686 -phaseolus_aureus n 1 2 @ #m 1 0 12578255 -phaseolus_caracalla n 1 2 @ #m 1 0 12577895 -phaseolus_coccineus n 1 1 @ 1 0 12557681 -phaseolus_limensis n 1 3 @ #m %p 1 0 12558230 -phaseolus_lunatus n 1 3 @ #m %p 1 0 12558425 -phaseolus_multiflorus n 1 1 @ 1 0 12557681 -phaseolus_vulgaris n 1 4 @ ~ #m %p 1 0 12556793 -phasianid n 1 3 @ ~ #m 1 0 01802721 -phasianidae n 1 3 @ #m %m 1 0 01802309 -phasianus n 1 3 @ #m %m 1 0 01802895 -phasianus_colchicus n 1 3 @ #m %p 1 0 01803362 -phasmatidae n 1 3 @ #m %m 1 0 02231307 -phasmatodea n 1 3 @ #m %m 1 0 02230782 -phasmid n 1 3 @ ~ #m 1 0 02231052 -phasmid_insect n 1 3 @ ~ #m 1 0 02231052 -phasmida n 1 3 @ #m %m 1 0 02230782 -phasmidae n 1 3 @ #m %m 1 0 02231307 -phasmidia n 1 2 @ #m 1 0 01929951 -phatic_communication n 1 1 @ 1 0 07134287 -phatic_speech n 1 1 @ 1 0 07134287 -phd n 1 1 @ 1 0 06704115 -pheasant n 2 5 @ ~ #m #p ; 2 1 01803078 07647602 -pheasant's-eye n 1 2 @ #m 1 0 11724660 -pheasant_coucal n 1 1 @ 1 0 01824862 -pheasant_cuckoo n 1 1 @ 1 0 01824862 -pheasant_under_glass n 1 1 @ 1 0 07873198 -phegopteris n 1 3 @ #m %m 1 0 13230421 -phegopteris_connectilis n 1 1 @ 1 0 13231078 -phegopteris_hexagonoptera n 1 1 @ 1 0 13230843 -pheidias n 1 1 @ 1 0 11231943 -phellem n 1 2 @ ; 1 0 14823547 -phellodendron n 1 3 @ #m %m 1 0 12713664 -phellodendron_amurense n 1 2 @ #m 1 0 12713866 -phenacetin n 1 1 @ 1 0 02675354 -phenacomys n 1 2 @ #m 1 0 02342534 -phenaphen n 1 2 @ ; 1 0 02674482 -phenazopyridine n 1 1 @ 1 0 03921337 -phencyclidine n 1 1 @ 1 0 03921499 -phencyclidine_hydrochloride n 1 1 @ 1 0 03921499 -phenelzine n 1 1 @ 1 0 03921749 -phenergan n 1 2 @ ; 1 0 04010348 -phenicia n 1 3 @ %p - 1 0 08919693 -pheniramine n 1 1 @ 1 0 03921915 -pheno-safranine n 1 1 @ 1 0 15001640 -phenobarbital n 1 1 @ 1 0 04256152 -phenobarbitone n 1 1 @ 1 0 04256152 -phenol n 2 2 @ ~ 2 0 14989545 14796073 -phenolic n 1 1 @ 1 0 14902627 -phenolic_plastic n 1 1 @ 1 0 14981461 -phenolic_resin n 1 1 @ 1 0 14902627 -phenolic_urea n 1 1 @ 1 0 14981461 -phenolphthalein n 1 1 @ 1 0 03922109 -phenomenology n 1 1 @ 1 0 06167106 -phenomenon n 2 2 @ ~ 2 2 00034213 07423818 -phenoplast n 1 1 @ 1 0 14902627 -phenothiazine n 1 2 @ ~ 1 1 14771643 -phenotype n 1 2 @ + 1 0 04933852 -phenoxymethyl_penicillin n 1 2 @ ~ 1 0 03911039 -phensuximide n 1 1 @ 1 0 03922412 -phentolamine n 1 1 @ 1 0 03922561 -phenyl_salicylate n 1 1 @ 1 0 15010430 -phenylacetamide n 1 1 @ 1 0 02674912 -phenylalanine n 1 1 @ 1 0 14981579 -phenylamine n 1 1 @ 1 0 14754505 -phenylbutazone n 1 1 @ 1 0 03922722 -phenylephrine n 1 1 @ 1 0 03922863 -phenylethylene n 1 2 @ ~ 1 0 14595543 -phenylic_acid n 1 1 @ 1 0 14796073 -phenylketonuria n 1 1 @ 1 0 14507375 -phenylpropanolamine n 1 1 @ 1 0 03923004 -phenyltoloxamine n 1 1 @ 1 0 03923229 -phenytoin n 1 1 @ 1 0 03203441 -pheochromocytoma n 1 1 @ 1 0 14250232 -pheresis n 1 2 @ ~ 1 0 00649992 -pheromone n 1 1 @ 1 0 14846890 -phi n 1 2 @ #m 1 0 06836275 -phi_coefficient n 1 2 @ ; 1 0 06035413 -phi_correlation n 1 2 @ ; 1 0 06035413 -phial n 1 1 @ 1 0 03923379 -phidias n 1 1 @ 1 0 11231943 -phil_anderson n 1 1 @ 1 0 10817717 -philadelphaceae n 1 3 @ #m %m 1 0 12790656 -philadelphia n 1 3 @ #p %p 1 1 09136182 -philadelphia_fleabane n 1 1 @ 1 0 11966896 -philadelphia_pepper_pot n 1 1 @ 1 0 07586718 -philadelphus n 1 3 @ ~ #m 1 0 12791064 -philadelphus_coronarius n 1 2 @ #m 1 0 12791329 -philaenus n 1 3 @ #m %m 1 0 02258065 -philaenus_spumarius n 1 2 @ #m 1 0 02258198 -philanderer n 1 3 @ ~ + 1 0 10789118 -philanthropic_foundation n 1 1 @ 1 0 08406825 -philanthropic_gift n 1 1 @ 1 0 01089483 -philanthropist n 1 3 @ ~ + 1 1 10421956 -philanthropy n 1 2 @ + 1 0 01089483 -philatelist n 1 2 @ + 1 0 10422405 -philately n 1 3 @ ~ + 1 0 01016420 -philemon n 3 2 @ ; 3 0 11232229 11232050 06446217 -philharmonic n 1 1 @ 1 0 08248856 -philharmonic_pitch n 1 1 @ 1 0 04985580 -philhellene n 1 2 @ + 1 0 10422540 -philhellenism n 1 2 @ + 1 0 07501194 -philhellenist n 1 2 @ + 1 0 10422540 -philia n 1 2 @ ~ 1 0 07544647 -philibert_de_l'orme n 1 1 @ 1 0 10929437 -philibert_delorme n 1 1 @ 1 0 10929437 -philip n 1 1 @ 1 0 11232475 -philip_anderson n 1 1 @ 1 0 10817717 -philip_augustus n 1 1 @ 1 0 11232989 -philip_dormer_stanhope n 1 1 @ 1 0 10895073 -philip_ii n 3 1 @ 3 0 11232989 11232837 11232615 -philip_ii_of_macedon n 1 1 @ 1 0 11232837 -philip_ii_of_spain n 1 1 @ 1 0 11232615 -philip_marlowe n 1 2 @ ; 1 0 09601571 -philip_michael_ondaatje n 1 1 @ 1 0 11214926 -philip_milton_roth n 1 1 @ 1 0 11272030 -philip_of_valois n 1 1 @ 1 0 11233383 -philip_roth n 1 1 @ 1 0 11272030 -philip_v n 1 1 @ 1 0 11233211 -philip_vi n 1 1 @ 1 0 11233383 -philip_warren_anderson n 1 1 @ 1 0 10817717 -philipp_lenard n 1 1 @ 1 0 11125957 -philipp_melanchthon n 1 1 @ 1 0 11171851 -philipp_schwarzerd n 1 1 @ 1 0 11171851 -philippi n 2 2 @ ; 2 0 08915660 01290840 -philippian n 1 1 @ 1 0 10422759 -philippians n 1 2 @ #p 1 0 06444458 -philippic n 1 1 @ 1 1 07233415 -philippine n 1 3 @ ~ + 1 0 06939756 -philippine_cedar n 1 2 @ #m 1 0 12700357 -philippine_islands n 1 5 @ #p %m %p - 1 1 08980300 -philippine_mahogany n 2 2 @ #m 2 0 12700560 12700357 -philippine_monetary_unit n 1 2 @ ~ 1 0 13692963 -philippine_peso n 1 2 @ %p 1 0 13693084 -philippine_sea n 1 3 @ #p ; 1 0 01290997 -philippines n 2 6 @ #m #p %m %p - 2 1 08981244 08980300 -philippopolis n 1 2 @ #p 1 0 08714795 -philippus_aureolus_paracelsus n 1 1 @ 1 0 11222054 -philistia n 1 3 @ #p - 1 0 08799706 -philistine n 2 2 @ + 2 0 10423031 10422871 -philistinism n 1 1 @ 1 0 14039310 -phillidae n 1 3 @ #m %m 1 0 02231930 -phillips_screw n 1 2 @ ; 1 0 03923564 -phillips_screwdriver n 1 1 @ 1 0 03923692 -phillipsite n 1 1 @ 1 0 15107677 -phillis_wheatley n 1 1 @ 1 0 11382930 -phillyrea n 1 3 @ #m %m 1 0 12309850 -philodendron n 1 2 @ #m 1 0 11791341 -philogyny n 1 2 ! @ 1 0 07501326 -philohela n 1 3 @ #m %m 1 0 02031455 -philohela_minor n 1 2 @ #m 1 0 02031585 -philologist n 1 3 @ ~ + 1 0 10423225 -philologue n 1 2 @ ~ 1 0 10423225 -philology n 1 3 @ ~ + 1 0 06171040 -philomachus n 1 3 @ #m %m 1 0 02029914 -philomachus_pugnax n 1 3 @ ~ #m 1 0 02030035 -philomath n 1 1 @ 1 0 10423514 -philophylla n 1 2 @ #m 1 0 02198021 -philosopher n 2 4 @ ~ + ; 2 2 10423589 10425946 -philosopher's_stone n 1 1 @ 1 0 14582870 -philosopher's_wool n 1 2 @ #s 1 0 15108087 -philosophers'_stone n 1 1 @ 1 0 14582870 -philosophers'_wool n 1 2 @ #s 1 0 15108087 -philosophical_doctrine n 1 2 @ ~ 1 0 06167328 -philosophical_system n 1 2 @ ~ 1 0 05943300 -philosophical_theory n 1 2 @ ~ 1 0 06167328 -philosophiser n 1 2 @ + 1 0 10426184 -philosophizer n 1 2 @ + 1 0 10426184 -philosophizing n 1 3 @ ~ + 1 1 06742772 -philosophy n 3 4 @ ~ + - 3 3 05943300 06158346 05944686 -philosophy_department n 1 1 @ 1 0 08117225 -philter n 1 1 @ 1 0 07883661 -philtre n 1 1 @ 1 0 07883661 -phimosis n 1 1 @ 1 0 14509583 -phineas_taylor_barnum n 1 1 @ 1 0 10834869 -phintias n 1 1 @ 1 0 11233595 -phiz n 2 4 @ ~ #p ; 2 0 10866738 05601357 -phlebectomy n 1 1 @ 1 0 00690132 -phlebitis n 1 2 @ ~ 1 0 14352890 -phlebodium n 1 3 @ #m %m 1 0 13176873 -phlebodium_aureum n 1 2 @ #m 1 0 13177048 -phlebogram n 1 1 @ 1 0 04526112 -phlebothrombosis n 1 2 @ ; 1 0 14353008 -phlebotomist n 1 1 @ 1 0 10426363 -phlebotomus n 2 3 @ #m %m 2 0 14219487 02204084 -phlebotomus_papatasii n 1 2 @ #m 1 0 02204249 -phlebotomy n 1 2 @ + 1 0 00698609 -phlegm n 3 2 @ + 3 0 07483782 05415815 04635953 -phlegmasia_alba_dolens n 1 1 @ 1 0 14103018 -phleum n 1 3 @ #m %m 1 0 12130408 -phleum_pratense n 1 3 @ #m %p 1 0 12130549 -phloem n 1 3 @ %p ; 1 1 13098962 -phlogiston n 1 1 @ 1 0 14583228 -phlogopite n 1 1 @ 1 0 14690790 -phlomis n 1 2 @ #m 1 0 12861345 -phlomis_fruticosa n 1 2 @ #m 1 0 12861541 -phlox n 1 3 @ ~ #m 1 0 12810595 -phlox_bifida n 1 2 @ #m 1 0 12810847 -phlox_family n 1 3 @ #m %m 1 0 12808933 -phlox_stellaria n 1 2 @ #m 1 0 12810847 -phlox_subulata n 1 1 @ 1 0 12811027 -phnom_penh n 1 2 @ #p 1 0 08717059 -phobia n 1 3 @ ~ + 1 0 14381416 -phobic_disorder n 1 2 @ ~ 1 0 14381416 -phobic_neurosis n 1 2 @ ~ 1 0 14381416 -phobophobia n 1 1 @ 1 0 14384133 -phobos n 1 1 @ 1 0 09390873 -phoca n 1 3 @ #m %m 1 0 02079706 -phoca_vitulina n 1 2 @ #m 1 0 02079851 -phocidae n 1 3 @ #m %m 1 0 02079170 -phocoena n 1 3 @ #m %m 1 0 02070311 -phocoena_phocoena n 1 1 @ 1 0 02070624 -phocoena_sinus n 1 1 @ 1 0 02070776 -phocomelia n 1 1 @ 1 0 14466567 -phoebe n 3 3 @ #m ; 3 0 13744521 09577308 01549886 -phoebe_bird n 1 2 @ #m 1 0 01549886 -phoebus n 1 3 @ ~ ; 1 0 09553767 -phoebus_apollo n 1 3 @ ~ ; 1 0 09553767 -phoenicia n 1 3 @ %p - 1 0 08919693 -phoenician n 2 3 @ ~ ; 2 0 09640859 06989473 -phoenicophorium n 1 3 @ #m %m 1 0 12593689 -phoenicopteridae n 1 3 @ #m %m 1 0 02007422 -phoeniculidae n 1 3 @ #m %m 1 0 01830183 -phoeniculus n 1 3 @ #m %m 1 0 01830316 -phoenicurus n 1 3 @ #m %m 1 0 01561318 -phoenix n 4 3 @ #m #p 4 1 09058376 12593826 09500936 09390967 -phoenix_dactylifera n 1 2 @ %p 1 0 12593994 -phoenix_tree n 1 2 @ #m 1 0 12198286 -pholadidae n 1 3 @ #m %m 1 0 01967677 -pholas n 1 3 @ #m %m 1 0 01967812 -pholidae n 1 3 @ #m %m 1 0 02614788 -pholidota n 2 3 @ #m %m 2 0 12077062 02461372 -pholiota n 1 3 @ #m %m 1 0 13007770 -pholiota_astragalina n 1 2 @ #m 1 0 13008157 -pholiota_aurea n 1 2 @ #m 1 0 13008315 -pholiota_destruens n 1 2 @ #m 1 0 13008485 -pholiota_flammans n 1 2 @ #m 1 0 13008689 -pholiota_flavida n 1 2 @ #m 1 0 13008839 -pholiota_nameko n 1 2 @ #m 1 0 13009085 -pholiota_squarrosa n 1 2 @ #m 1 0 13009429 -pholiota_squarrosa-adiposa n 1 2 @ #m 1 0 13009244 -pholiota_squarrosoides n 1 2 @ #m 1 0 13009656 -pholis n 1 3 @ #m %m 1 0 02615157 -pholis_gunnellus n 1 3 @ #m %p 1 0 02615298 -pholistoma n 1 3 @ #m %m 1 0 12837643 -pholistoma_auritum n 1 2 @ #m 1 0 12837803 -phon n 1 2 @ %p 1 0 13713983 -phonation n 1 3 @ ~ + 1 0 07110615 -phone n 3 6 @ ~ #p %p + ; 3 1 04401088 07111047 03261776 -phone-in n 1 1 @ 1 0 06620467 -phone_bill n 1 1 @ 1 0 06517663 -phone_book n 1 2 @ ~ 1 0 06423754 -phone_booth n 1 1 @ 1 1 04401680 -phone_call n 1 2 @ ~ 1 1 06272803 -phone_card n 1 1 @ 1 0 13376512 -phone_company n 1 1 @ 1 1 08186221 -phone_cord n 1 1 @ 1 0 04401828 -phone_jack n 1 1 @ 1 0 04401949 -phone_line n 1 2 @ ~ 1 0 04402057 -phone_message n 1 1 @ 1 0 06276287 -phone_number n 1 1 @ 1 0 06426111 -phone_plug n 1 1 @ 1 0 04402342 -phone_service n 1 1 @ 1 0 08186221 -phone_system n 1 3 @ ~ %p 1 0 04402746 -phone_tapper n 1 1 @ 1 0 10691318 -phonebook n 1 2 @ ~ 1 0 06423754 -phoneme n 1 4 @ ~ + ; 1 1 07111711 -phonemic_system n 1 2 @ ~ 1 1 07113192 -phonemics n 1 4 @ ~ ; - 1 1 06177450 -phoner n 1 2 @ + 1 0 09888017 -phonetic_alphabet n 1 3 @ ~ %m 1 0 06500448 -phonetic_symbol n 1 3 @ #m #p 1 0 06839858 -phonetic_transcription n 1 2 @ %p 1 0 06349952 -phonetician n 1 3 @ ~ + 1 0 10426454 -phonetics n 1 3 @ + - 1 1 06177033 -phoney n 1 3 @ ~ + 1 0 10195593 -phonics n 1 1 @ 1 0 00888409 -phonogram n 1 2 @ + 1 0 06821889 -phonograph n 1 4 @ ~ #p %p 1 1 04064401 -phonograph_album n 1 1 @ 1 0 03923801 -phonograph_needle n 1 1 @ 1 1 03923918 -phonograph_record n 1 3 @ ~ %p 1 1 03924069 -phonograph_recording n 1 3 @ ~ %p 1 0 03924069 -phonograph_recording_disk n 1 2 @ #p 1 0 02675077 -phonologic_system n 1 2 @ ~ 1 1 07113337 -phonological_system n 1 2 @ ~ 1 0 07113337 -phonologist n 1 3 @ ~ + 1 0 10426630 -phonology n 1 5 @ ~ + ; - 1 1 06177450 -phonophobia n 1 1 @ 1 0 14384227 -phony n 1 3 @ ~ + 1 1 10195593 -phoradendron n 1 3 @ #m %m 1 0 12739595 -phoradendron_flavescens n 1 1 @ 1 0 12739966 -phoradendron_serotinum n 1 1 @ 1 0 12739966 -phoronid n 1 2 @ #m 1 0 02313360 -phoronida n 1 3 @ #m %m 1 0 02313195 -phoronidea n 1 3 @ #m %m 1 0 02313195 -phosgene n 1 1 @ 1 1 14981847 -phosphatase n 1 1 @ 1 0 14981983 -phosphate n 2 2 @ ~ 2 1 14982265 07928578 -phosphate_buffer_solution n 1 1 @ 1 0 14786361 -phosphine n 1 1 @ 1 0 14982129 -phosphocreatine n 1 1 @ 1 0 14982421 -phospholipid n 1 3 @ ~ #s 1 0 14982681 -phosphoprotein n 1 2 @ ~ 1 0 14735225 -phosphor n 1 1 @ 1 0 14649036 -phosphor_bronze n 1 1 @ 1 0 14717785 -phosphorescence n 1 2 @ + 1 0 11491026 -phosphoric_acid n 1 1 @ 1 0 14982907 -phosphorous_acid n 1 1 @ 1 0 14614594 -phosphorus n 2 3 @ #s + 2 1 14649197 09359471 -phot n 1 2 @ %p 1 0 13640866 -photalgia n 1 1 @ 1 0 14329888 -photinia n 1 2 @ #m 1 0 12636430 -photinia_arbutifolia n 1 2 @ #m 1 0 12633061 -photius n 1 1 @ 1 0 11233934 -photo n 1 2 @ ~ 1 1 03925226 -photo-offset n 1 1 @ 1 0 06680431 -photo-offset_printing n 1 1 @ 1 0 06680431 -photo_credit n 1 1 @ 1 0 06764751 -photo_finish n 1 1 @ 1 0 07354243 -photo_op n 1 1 @ 1 0 07455760 -photo_opportunity n 1 1 @ 1 0 07455760 -photoblepharon n 1 2 @ #m 1 0 01452200 -photoblepharon_palpebratus n 1 1 @ 1 0 01452345 -photocathode n 1 2 @ #p 1 0 03924407 -photocell n 1 3 @ ~ %p 1 0 03924978 -photochemical_exchange n 1 1 @ 1 1 11410023 -photochemical_reaction n 1 2 @ ~ 1 1 13536523 -photochemistry n 1 2 @ + 1 0 06090397 -photocoagulation n 1 1 @ 1 0 00690281 -photocoagulator n 1 2 @ %p 1 0 03924532 -photoconduction n 1 1 @ 1 0 11409689 -photoconductive_cell n 1 3 @ ~ %p 1 0 03924978 -photoconductivity n 1 2 @ + 1 0 11409689 -photocopier n 1 2 @ + 1 0 03924679 -photocopy n 1 3 @ ~ + 1 0 03924811 -photoelectric_cell n 1 3 @ ~ %p 1 0 03924978 -photoelectric_emission n 1 1 @ 1 0 13536661 -photoelectricity n 1 1 @ 1 0 11491194 -photoelectron n 1 1 @ 1 0 09391089 -photoemission n 1 1 @ 1 0 11410172 -photoengraving n 1 1 @ 1 0 03478261 -photoflash n 1 2 @ #p 1 0 03358172 -photoflood n 1 2 @ #p 1 0 03365374 -photogelatin_process n 1 2 @ ~ 1 0 06679726 -photogenic_epilepsy n 1 1 @ 1 0 14089339 -photograph n 1 3 @ ~ + 1 1 03925226 -photograph_album n 1 1 @ 1 0 03926061 -photographer n 1 3 @ ~ + 1 0 10426749 -photographer's_model n 1 2 @ ~ 1 0 10427103 -photographic_camera n 1 3 @ ~ %p 1 0 02942699 -photographic_density n 1 2 @ ; 1 0 05089367 -photographic_emulsion n 1 2 @ %s 1 0 03284482 -photographic_equipment n 1 3 @ ~ %p 1 0 03926148 -photographic_film n 1 2 @ ~ 1 0 03338821 -photographic_material n 1 2 @ ~ 1 0 03926412 -photographic_paper n 1 2 @ ~ 1 0 03926412 -photographic_plate n 1 2 @ ~ 1 0 03960783 -photographic_print n 1 2 @ ~ 1 0 03926575 -photography n 3 5 @ ~ + ; - 3 1 00903559 13536794 00620554 -photogravure n 3 2 @ ~ 3 0 06679167 03455802 01103492 -photojournalism n 1 2 @ ~ 1 0 06266710 -photojournalist n 1 1 @ 1 0 10427223 -photolithograph n 1 1 @ 1 0 03926757 -photolithography n 1 1 @ 1 0 06680195 -photomechanics n 2 2 @ + 2 0 13537176 05666530 -photometer n 2 2 @ ~ 2 0 03926876 03667664 -photometrician n 1 1 @ 1 0 10427359 -photometrist n 1 1 @ 1 0 10427359 -photometry n 1 3 @ ~ + 1 0 01003272 -photomicrograph n 1 1 @ 1 0 03927091 -photomontage n 1 1 @ 1 1 03927201 -photomosaic n 1 1 @ 1 0 03787904 -photon n 1 2 @ #p 1 1 09391223 -photophobia n 2 1 @ 2 0 14384351 14329888 -photopic_vision n 1 2 @ ~ 1 0 05657166 -photopigment n 1 2 @ ~ 1 0 15089104 -photoplate_making n 1 1 @ 1 0 13537176 -photoretinitis n 1 1 @ 1 0 14555059 -photosensitivity n 1 2 @ + 1 0 05654201 -photosphere n 1 2 @ #p 1 0 09391386 -photostat n 2 3 @ + ; 2 0 03927539 03927299 -photostat_machine n 1 2 @ ; 1 0 03927299 -photosynthesis n 1 4 @ %p + ; 1 0 13537429 -phototherapy n 1 1 @ 1 0 00705886 -phototrophic_bacteria n 1 2 @ ~ 1 0 01359945 -phototropic_bacteria n 1 2 @ ~ 1 0 01359945 -phototropism n 1 1 @ 1 0 00862399 -photovoltaic_cell n 1 2 @ #p 1 0 04257986 -phoxinus n 1 3 @ #m %m 1 0 01442855 -phoxinus_phoxinus n 1 2 @ #m 1 0 01442972 -phragmacone n 1 1 @ 1 0 01904965 -phragmipedium n 1 2 @ #m 1 0 12077505 -phragmites n 1 3 @ #m %m 1 0 12130759 -phragmites_communis n 1 2 @ #m 1 0 12130937 -phragmocone n 1 1 @ 1 0 01904965 -phrasal_idiom n 1 3 @ ~ - 1 0 07154330 -phrasal_verb n 1 1 @ 1 0 06330764 -phrase n 4 6 @ ~ #p %p + - 4 2 06316048 07045353 07154330 00527061 -phrase_book n 1 1 @ 1 0 06416452 -phrase_structure n 1 2 @ ; 1 0 06176107 -phraseology n 1 2 @ ~ 1 1 07081739 -phrasing n 2 3 @ ~ + 2 1 01012608 07081739 -phratry n 1 2 @ ~ 1 0 07970721 -phrenic_nerve n 1 1 @ 1 0 05568550 -phrenic_vein n 1 1 @ 1 0 05377252 -phrenitis n 1 2 @ ~ 1 0 14342132 -phrenologist n 1 2 @ + 1 0 10427467 -phrenology n 1 2 @ + 1 0 06045847 -phrontistery n 1 1 @ 1 0 03927652 -phrygia n 1 3 @ #p %p 1 0 08701410 -phrygian n 2 2 @ ~ 2 0 10427658 06943378 -phrygian_deity n 1 3 @ ~ ; 1 0 09593937 -phrynosoma n 1 3 @ #m %m 1 0 01681812 -phrynosoma_cornutum n 1 1 @ 1 0 01682172 -phs n 1 2 @ #p 1 0 08133855 -phthalic_acid n 1 1 @ 1 0 14983036 -phthalic_anhydride n 1 1 @ 1 0 14768765 -phthiriidae n 1 3 @ #m %m 1 0 02184881 -phthirius n 1 3 @ #m %m 1 0 02185007 -phthirius_pubis n 1 2 @ #m 1 0 02185167 -phthirus n 1 3 @ #m %m 1 0 02185007 -phthisis n 1 1 @ 1 0 14144064 -phthorimaea n 1 3 @ #m %m 1 0 02294279 -phthorimaea_operculella n 2 2 @ #m 2 0 02294577 02294407 -phycobilin n 1 1 @ 1 0 01399236 -phycocyanin n 1 1 @ 1 0 01399450 -phycoerythrin n 1 1 @ 1 0 01399366 -phycology n 1 1 @ 1 0 06074507 -phycomycetes n 1 2 @ #m 1 0 12976672 -phycomycetes_group n 1 2 @ #m 1 0 12976672 -phycomycosis n 1 1 @ 1 0 14182332 -phylactery n 1 2 @ ; 1 0 06856189 -phyle n 1 1 @ 1 0 08373969 -phyllidae n 1 3 @ #m %m 1 0 02231930 -phyllitis n 1 2 @ #m 1 0 13184164 -phyllitis_scolopendrium n 1 2 @ #m 1 0 13183056 -phyllium n 1 3 @ #m %m 1 0 02232086 -phyllo n 1 1 @ 1 0 07628068 -phylloclad n 1 1 @ 1 0 13130014 -phyllocladaceae n 1 3 @ #m %m 1 0 11649597 -phylloclade n 1 1 @ 1 0 13130014 -phyllocladus n 1 3 @ #m %m 1 0 11649749 -phyllocladus_alpinus n 1 1 @ 1 0 11650430 -phyllocladus_asplenifolius n 1 1 @ 1 0 11650160 -phyllocladus_trichomanoides n 1 1 @ 1 0 11650307 -phyllode n 1 2 @ + 1 0 13131752 -phyllodoce n 1 3 @ #m %m 1 0 12242668 -phyllodoce_breweri n 1 2 @ #m 1 0 12243109 -phyllodoce_caerulea n 1 2 @ #m 1 0 12242850 -phylloporus n 1 3 @ #m %m 1 0 13058796 -phylloporus_boletinoides n 1 2 @ #m 1 0 13058963 -phylloquinone n 1 1 @ 1 0 15092942 -phyllorhynchus n 1 3 @ #m %m 1 0 01729533 -phylloscopus n 1 2 @ #m 1 0 01565238 -phylloscopus_sibilatrix n 1 1 @ 1 0 01565345 -phyllostachys n 1 3 @ #m %m 1 0 12148962 -phyllostachys_aurea n 1 2 @ #m 1 0 12149144 -phyllostachys_bambusoides n 1 2 @ #m 1 0 12149521 -phyllostachys_nigra n 1 2 @ #m 1 0 12149350 -phyllostomatidae n 1 3 @ #m %m 1 0 02142064 -phyllostomidae n 1 3 @ #m %m 1 0 02142064 -phyllostomus n 1 3 @ #m %m 1 0 02142575 -phyllostomus_hastatus n 1 1 @ 1 0 02142898 -phylloxera n 1 3 @ #m %m 1 0 02255698 -phylloxera_vitifoleae n 1 2 @ #m 1 0 02255855 -phylloxeridae n 1 3 @ #m %m 1 0 02255567 -phylogenesis n 1 5 @ ~ + ; - 1 0 13477023 -phylogenetic_relation n 1 2 @ ; 1 0 13812296 -phylogeny n 1 4 @ ~ ; - 1 0 13477023 -phylum n 2 5 @ ~ #m %m ; 2 1 08103635 08102555 -phylum_acanthocephala n 1 3 @ #m %m 1 0 01923171 -phylum_annelida n 1 3 @ #m %m 1 0 01934207 -phylum_arthropoda n 1 3 @ #m %m 1 0 01767199 -phylum_aschelminthes n 1 3 @ #m %m 1 0 01929396 -phylum_brachiopoda n 1 3 @ #m %m 1 0 02315309 -phylum_bryozoa n 1 3 @ #m %m 1 0 02313495 -phylum_chaetognatha n 1 3 @ #m %m 1 0 01923637 -phylum_chordata n 1 3 @ #m %m 1 0 01465994 -phylum_cnidaria n 1 3 @ #m %m 1 0 01909111 -phylum_coelenterata n 1 3 @ #m %m 1 0 01909111 -phylum_cryptophyta n 1 3 @ #m %m 1 0 01421012 -phylum_ctenophora n 1 3 @ #m %m 1 0 01918310 -phylum_cycliophora n 1 3 @ #m %m 1 0 02314717 -phylum_echinodermata n 1 3 @ #m %m 1 0 02316392 -phylum_ectoprocta n 1 3 @ #m %m 1 0 02314001 -phylum_entoprocta n 1 3 @ #m %m 1 0 02314321 -phylum_mollusca n 1 3 @ #m %m 1 0 01940488 -phylum_nematoda n 1 3 @ #m %m 1 0 01929396 -phylum_nemertea n 1 3 @ #m %m 1 0 01928360 -phylum_nemertina n 1 3 @ #m %m 1 0 01928360 -phylum_phoronida n 1 3 @ #m %m 1 0 02313195 -phylum_platyhelminthes n 1 3 @ #m %m 1 0 01924590 -phylum_pogonophora n 1 3 @ #m %m 1 0 01928737 -phylum_porifera n 1 3 @ #m %m 1 0 01906552 -phylum_protozoa n 1 3 @ #m %m 1 0 01389188 -phylum_pyrrophyta n 1 2 @ #m 1 0 01388992 -phylum_rotifera n 1 3 @ #m %m 1 0 01929047 -phylum_sipuncula n 1 3 @ #m %m 1 0 02315696 -physa n 1 2 @ #m 1 0 01952712 -physalia n 1 3 @ #m %m 1 0 01913035 -physalis n 1 3 @ #m %m 1 0 12910141 -physalis_alkekengi n 1 1 @ 1 0 12910875 -physalis_ixocarpa n 1 2 @ %p 1 0 12911440 -physalis_peruviana n 1 2 @ #m 1 0 12911079 -physalis_philadelphica n 1 1 @ 1 0 12911673 -physalis_pruinosa n 1 1 @ 1 0 12911264 -physalis_pubescens n 1 1 @ 1 0 12910676 -physalis_viscosa n 1 1 @ 1 0 12911914 -physaria n 1 3 @ #m %m 1 0 11893451 -physeter n 1 3 @ #m %m 1 0 02067100 -physeter_catodon n 1 2 @ #m 1 0 02067240 -physeteridae n 1 3 @ #m %m 1 0 02066950 -physiatrics n 1 3 @ ~ %p 1 0 00700000 -physic n 1 2 @ ~ 1 0 04025748 -physic_nut n 1 2 @ #m 1 0 12925583 -physical_ability n 1 2 @ ~ 1 1 05201659 -physical_anthropology n 1 2 @ ~ 1 0 06147141 -physical_attraction n 1 2 @ ~ 1 0 07487955 -physical_body n 1 3 @ ~ #p 1 0 05217168 -physical_change n 1 2 @ ~ 1 0 13536016 -physical_chemistry n 1 2 @ - 1 1 06089447 -physical_composition n 1 2 @ ~ 1 0 04933544 -physical_condition n 1 2 @ ~ 1 0 14034177 -physical_contact n 1 2 @ ~ 1 0 00124880 -physical_education n 1 1 @ 1 1 05756888 -physical_entity n 1 2 @ ~ 1 0 00001930 -physical_exercise n 1 2 @ ~ 1 0 00624738 -physical_exertion n 1 2 @ ~ 1 0 00624738 -physical_fitness n 1 2 @ ~ 1 0 14546432 -physical_geography n 1 1 @ 1 0 06122445 -physical_object n 1 2 @ ~ 1 0 00002684 -physical_pendulum n 1 2 @ ~ 1 0 03927792 -physical_phenomenon n 1 2 @ ~ 1 1 11419404 -physical_process n 1 2 @ ~ 1 0 00029677 -physical_property n 1 2 @ ~ 1 1 05009170 -physical_rehabilitation n 1 1 @ 1 0 00400995 -physical_restoration n 1 1 @ 1 0 00400995 -physical_science n 1 2 @ ~ 1 1 06094587 -physical_structure n 1 4 @ ~ %p ; 1 1 05216365 -physical_therapist n 1 3 @ ~ + 1 1 10427764 -physical_therapy n 1 4 @ ~ %p + 1 0 00700000 -physical_topology n 1 1 @ 1 0 05731223 -physical_value n 1 1 @ 1 0 13303045 -physicalism n 1 3 @ ~ ; 1 0 05972585 -physicality n 1 2 @ + 1 0 04624517 -physicalness n 1 4 @ ~ = + 1 1 04760771 -physician n 1 3 @ ~ #m 1 1 10020890 -physician-assisted_suicide n 1 1 @ 1 0 00223144 -physician-patient_privilege n 1 1 @ 1 0 05180483 -physicist n 1 4 @ ~ + ; 1 1 10428004 -physics n 2 4 @ ~ + - 2 1 06090869 06094587 -physics_department n 1 1 @ 1 0 08117379 -physics_lab n 1 1 @ 1 0 03928001 -physics_laboratory n 1 1 @ 1 0 03928001 -physidae n 1 3 @ #m %m 1 0 01952429 -physiognomy n 1 4 @ ~ #p ; 1 1 05601357 -physiography n 1 1 @ 1 0 06122445 -physiological_anatomy n 1 1 @ 1 0 06059709 -physiological_condition n 1 2 @ ~ 1 0 14034177 -physiological_jaundice_of_the_newborn n 1 1 @ 1 0 14320016 -physiological_nystagmus n 1 1 @ 1 0 00337844 -physiological_property n 1 2 @ ~ 1 0 05005250 -physiological_psychology n 1 1 @ 1 0 06140799 -physiological_reaction n 1 2 @ ~ 1 0 00863513 -physiological_sphincter n 1 2 @ ~ 1 0 05571501 -physiological_state n 1 2 @ ~ 1 0 14034177 -physiologist n 1 3 @ ~ + 1 0 10429965 -physiology n 2 4 @ ~ + - 2 1 06080522 05005064 -physiotherapist n 1 3 @ ~ + 1 0 10427764 -physiotherapy n 1 4 @ ~ %p + 1 0 00700000 -physique n 2 3 @ ~ #p 2 1 04998530 05217168 -physostegia n 1 3 @ ~ #m 1 0 12861892 -physostegia_virginiana n 1 1 @ 1 0 12862116 -physostigma n 1 3 @ #m %m 1 0 12486732 -physostigma_venenosum n 1 3 @ #m %p 1 0 12486882 -physostigmine n 1 2 @ #s 1 0 12487262 -phytelephas n 1 3 @ #m %m 1 0 12594165 -phytelephas_macrocarpa n 1 3 @ #m %p 1 0 12594324 -phytochemical n 1 2 @ ~ 1 0 14983143 -phytochemist n 1 1 @ 1 0 10430554 -phytochemistry n 1 1 @ 1 0 06089728 -phytohormone n 1 3 @ ~ ; 1 0 14744841 -phytolacca n 1 3 @ #m %m 1 0 11855122 -phytolacca_acinosa n 1 1 @ 1 0 11855435 -phytolacca_americana n 1 1 @ 1 0 11855553 -phytolacca_dioica n 1 1 @ 1 0 11855842 -phytolaccaceae n 1 3 @ #m %m 1 0 11854760 -phytologist n 1 3 @ ~ + 1 0 09868270 -phytology n 1 4 @ ~ + - 1 0 06066555 -phytomastigina n 1 3 @ #m %m 1 0 01420655 -phytonadione n 1 1 @ 1 0 15092942 -phytophthora n 1 3 @ #m %m 1 0 12982723 -phytophthora_citrophthora n 1 2 @ #m 1 0 12982915 -phytophthora_infestans n 1 2 @ #m 1 0 12983048 -phytoplankton n 1 3 @ ~ #m 1 0 01383896 -phytotherapy n 1 2 @ ; 1 0 00700421 -phytotoxin n 1 2 @ ~ 1 0 15036638 -pi n 5 4 @ ~ #m #p 5 0 13754008 10476671 10475163 06835740 04013993 -pi-meson n 1 1 @ 1 0 09392656 -pia n 1 2 @ #m 1 0 12475774 -pia_mater n 1 2 @ #p 1 0 05482800 -piaf n 1 1 @ 1 0 11234152 -piaffe n 1 1 @ 1 0 00288384 -piaget n 1 2 @ + 1 0 11234292 -pianism n 1 1 @ 1 1 06893065 -pianissimo n 1 3 @ + ; 1 0 04991389 -pianist n 1 3 @ ~ + 1 1 10430665 -piano n 2 5 @ ~ %p + ; 2 1 03928116 04991389 -piano_accordion n 1 2 @ %p 1 0 02672831 -piano_action n 1 3 @ #p %p 1 0 03928589 -piano_damper n 1 2 @ #p 1 0 03161893 -piano_keyboard n 1 2 @ #p 1 0 03928814 -piano_lesson n 1 1 @ 1 1 00889883 -piano_maker n 1 2 @ ~ 1 0 10431122 -piano_music n 2 1 @ 2 0 06815621 05719325 -piano_player n 1 2 @ ~ 1 1 10430665 -piano_sonata n 1 1 @ 1 1 07044276 -piano_stool n 1 1 @ 1 1 03801880 -piano_teacher n 1 1 @ 1 0 10431224 -piano_tuner n 1 1 @ 1 0 10733117 -piano_wire n 1 1 @ 1 0 03928994 -pianoforte n 1 3 @ ~ %p 1 0 03928116 -pianola n 1 1 @ 1 0 03738066 -piassava_palm n 1 3 @ #m %p 1 0 12585137 -piaster n 2 3 @ #p %p 2 0 13694160 13687278 -piastre n 2 3 @ #p %p 2 0 13694160 13687278 -piazza n 1 1 @ 1 1 08619795 -pib n 1 3 @ #p %p 1 0 13630213 -pibgorn n 1 2 @ ; 1 0 03537550 -pibit n 1 3 @ #p %p 1 0 13630707 -pibroch n 1 1 @ 1 0 07058762 -pic n 2 4 @ ~ %p - 2 0 06613686 03925226 -pica n 3 6 @ ~ #m #p %m %p 3 0 14055977 13712428 01582111 -pica-pica n 1 2 @ #m 1 0 12925179 -pica_em n 1 3 @ #p %p 1 0 13712428 -pica_pica n 1 1 @ 1 0 01582398 -pica_pica_hudsonia n 1 1 @ 1 0 01582498 -picador n 1 1 @ 1 0 09836786 -picaninny n 1 2 @ ; 1 0 10431330 -picardie n 1 2 @ #p 1 0 08944089 -picardy n 1 2 @ #p 1 0 08944089 -picariae n 1 2 @ #m 1 0 01825758 -picasso n 1 1 @ 1 1 11234951 -piccalilli n 1 1 @ 1 0 07825597 -piccaninny n 1 2 @ ; 1 0 10431330 -piccolo n 1 1 @ 1 0 03929091 -picea n 1 3 @ #m %m 1 0 11624367 -picea_abies n 1 1 @ 1 0 11625003 -picea_breweriana n 1 1 @ 1 0 11625223 -picea_engelmannii n 1 1 @ 1 0 11625391 -picea_glauca n 1 1 @ 1 0 11625632 -picea_mariana n 1 1 @ 1 0 11625804 -picea_obovata n 1 1 @ 1 0 11626010 -picea_orientalis n 1 1 @ 1 0 11626409 -picea_pungens n 1 1 @ 1 0 11626585 -picea_rubens n 1 1 @ 1 0 11626826 -picea_sitchensis n 1 1 @ 1 0 11626152 -pichi n 1 2 @ #m 1 0 12903964 -pichiciago n 1 2 @ #m 1 0 02456275 -pichiciego n 1 2 @ #m 1 0 02456275 -picidae n 1 3 @ #m %m 1 0 01838326 -piciform_bird n 1 3 @ ~ #m 1 0 01838038 -piciformes n 1 3 @ #m %m 1 0 01837746 -pick n 9 5 @ ~ #s #p + 9 1 05790242 13759558 08387035 04598965 03929660 03929443 03929202 00563665 00161243 -pick's_disease n 1 1 @ 1 0 14396431 -pick-me-up n 2 1 @ 2 0 03930777 02888133 -pick-off n 1 1 @ 1 0 00564583 -pickaback_plant n 1 2 @ #m 1 0 12804352 -pickaninny n 1 2 @ ; 1 0 10431330 -pickax n 1 2 @ ~ 1 0 03929202 -pickaxe n 1 2 @ ~ 1 0 03929202 -pickelhaube n 1 1 @ 1 0 03929855 -picker n 2 2 @ + 2 0 10431625 10431514 -pickerel n 2 2 @ ~ 2 0 07779664 02561661 -pickerel_frog n 1 2 @ #m 1 0 01642257 -pickerel_weed n 1 2 @ #m 1 0 12609968 -pickerelweed n 1 2 @ #m 1 0 12609968 -pickerelweed_family n 1 3 @ #m %m 1 0 12609638 -pickeringia n 1 3 @ #m %m 1 0 12558902 -pickeringia_montana n 1 2 @ #m 1 0 12559044 -picket n 6 5 @ ~ #p + ; 6 2 10271216 08216295 10431770 03930087 03929952 00423563 -picket_boat n 1 1 @ 1 1 03930229 -picket_fence n 1 2 @ %p 1 0 03930313 -picket_line n 1 1 @ 1 0 08431345 -picket_ship n 1 1 @ 1 1 03930431 -pickett n 1 1 @ 1 0 11234472 -pickford n 1 1 @ 1 0 11234643 -picking n 2 2 @ + 2 0 13759558 00714357 -pickings n 1 2 @ + 1 0 00714477 -pickle n 2 3 @ ~ + 2 1 07824988 14409489 -pickle_barrel n 1 1 @ 1 0 03930515 -pickle_relish n 1 1 @ 1 0 07825496 -pickled_herring n 1 2 @ ~ 1 0 07785342 -picklepuss n 1 2 @ ; 1 0 10627899 -picknicker n 1 2 @ + 1 0 10432189 -pickpocket n 1 1 @ 1 0 10431907 -pickup n 9 6 @ ~ #p %p + ; 9 3 03930630 06547832 03930777 10432053 05061003 04450465 02971940 01016201 00319176 -pickup_arm n 1 2 @ #p 1 0 04450465 -pickup_truck n 1 2 @ ~ 1 0 03930630 -picnic n 3 3 @ ~ + 3 2 15138691 00575365 07576438 -picnic_area n 1 1 @ 1 1 08619343 -picnic_ground n 1 1 @ 1 0 08619343 -picnic_ham n 1 1 @ 1 0 07670147 -picnic_shoulder n 1 1 @ 1 0 07670147 -picnicker n 1 2 @ + 1 0 10432189 -pico_de_orizaba n 1 2 @ #p 1 0 09173777 -picofarad n 1 2 @ #p 1 0 13635854 -picoides n 1 2 @ #m 1 0 01839221 -picometer n 1 3 @ #p %p 1 0 13657849 -picometre n 1 3 @ #p %p 1 0 13657849 -picornavirus n 1 2 @ ~ 1 0 01337583 -picosecond n 1 3 @ #p %p 1 0 15235853 -picot n 1 1 @ 1 0 03930946 -picovolt n 1 2 @ #p 1 0 13642982 -picrasma n 1 3 @ #m %m 1 0 12718314 -picrasma_excelsa n 1 3 @ #m %s 1 0 12718483 -picrasma_excelsum n 1 3 @ #m %s 1 0 12718483 -picric_acid n 1 1 @ 1 0 14983326 -picris n 1 3 @ #m %m 1 0 12002957 -picris_echioides n 1 2 @ #m 1 0 12003167 -pictograph n 1 2 @ + 1 0 06840530 -pictor n 1 1 @ 1 0 09391524 -pictorial n 1 2 @ + 1 0 06593668 -pictorial_matter n 1 1 @ 1 0 06999436 -pictorial_representation n 1 2 @ ~ 1 0 00900375 -picture n 10 6 @ ~ #p %p + - 10 9 03931044 03876519 05936704 13937075 06999436 06613686 06277803 07201804 05766077 03925226 -picture_book n 1 2 @ ~ 1 1 03931651 -picture_card n 1 2 @ ~ 1 0 03314028 -picture_element n 1 3 @ #p ; 1 0 03952277 -picture_frame n 1 2 @ %p 1 1 03931765 -picture_gallery n 1 2 @ ~ 1 0 03412058 -picture_hat n 1 1 @ 1 1 03931885 -picture_palace n 1 2 @ ~ 1 1 03032252 -picture_plane n 1 2 @ #p 1 1 13861934 -picture_postcard n 1 1 @ 1 0 06628228 -picture_rail n 1 1 @ 1 0 03931980 -picture_show n 1 4 @ ~ %p - 1 0 06613686 -picture_taking n 1 3 @ ~ - 1 0 00903559 -picture_tube n 1 3 @ ~ #p 1 0 03617594 -picture_window n 1 1 @ 1 0 03932080 -picture_writing n 1 1 @ 1 0 06361218 -picturesqueness n 2 2 @ + 2 0 04819822 04684765 -picturing n 2 3 @ ~ + 2 2 05768415 00900375 -picul n 1 1 @ 1 0 13718675 -piculet n 1 2 @ #m 1 0 01841943 -picumnus n 1 3 @ #m %m 1 0 01841815 -picus n 1 3 @ #m %m 1 0 01838961 -picus_viridis n 1 2 @ #m 1 0 01839086 -pid n 1 1 @ 1 0 14172558 -piddle n 1 2 @ + 1 0 14855724 -piddock n 1 2 @ #m 1 0 01967963 -pidgin n 1 2 @ ~ 1 1 06905680 -pidlimdi n 1 1 @ 1 0 06983795 -pie n 2 2 @ ~ 2 1 07625493 06942094 -pie-dog n 1 1 @ 1 0 02085118 -pie_chart n 1 1 @ 1 0 07002312 -pie_crust n 1 1 @ 1 0 07623263 -pie_plant n 1 1 @ 1 0 12603449 -pie_shell n 1 1 @ 1 0 07623263 -piece n 13 5 @ ~ #p %p + 13 10 03932203 03932499 09385911 07037465 07309457 06269396 03343853 07654667 05084889 03838535 15246353 13286524 03716327 -piece_de_resistance n 2 2 @ ~ 2 1 03069567 07579688 -piece_goods n 1 2 @ ; 1 0 04611654 -piece_of_ass n 1 2 @ ; 1 0 00846021 -piece_of_cake n 1 2 @ ~ 1 0 00575365 -piece_of_cloth n 1 2 @ ~ 1 0 03932670 -piece_of_eight n 1 1 @ 1 0 13389660 -piece_of_furniture n 1 3 @ ~ - 1 0 03405725 -piece_of_ground n 1 2 @ ~ 1 0 08673395 -piece_of_land n 1 2 @ ~ 1 0 08673395 -piece_of_leather n 1 2 @ ~ 1 0 03933183 -piece_of_material n 1 2 @ ~ 1 0 03932670 -piece_of_music n 1 3 @ ~ %p 1 0 07037465 -piece_of_paper n 1 2 @ ~ 1 1 06255777 -piece_of_tail n 1 2 @ ; 1 0 00846021 -piece_of_work n 1 2 @ ~ 1 0 04599396 -piece_of_writing n 1 3 @ ~ %p 1 0 06362953 -piecework n 1 1 @ 1 0 00581517 -pied-a-terre n 1 1 @ 1 0 03933391 -pied-billed_grebe n 1 2 @ #m 1 0 02051059 -pied_lemming n 1 3 @ ~ #m 1 0 02345600 -pied_piper n 2 1 @ 2 0 10432320 09602964 -pied_piper_of_hamelin n 1 1 @ 1 0 09602964 -piedmont n 3 3 @ #p %p 3 1 09052100 09391644 08809749 -piedmont_glacier n 1 2 @ ~ 1 0 09391774 -piedmont_type_of_glacier n 1 2 @ ~ 1 0 09391774 -piemonte n 1 3 @ #p %p 1 0 08809749 -pieplant n 1 1 @ 1 0 07713267 -pier n 3 5 @ ~ #p %p ; 3 1 03933529 03934042 03933933 -pier_arch n 1 1 @ 1 0 03934229 -pier_glass n 1 1 @ 1 0 03934311 -pier_luigi_nervi n 1 1 @ 1 0 11203920 -pier_mirror n 1 1 @ 1 0 03934311 -pier_table n 1 1 @ 1 0 03934565 -pierce n 1 1 @ 1 0 11234813 -pierid n 1 3 @ ~ #m 1 0 02280458 -pierid_butterfly n 1 3 @ ~ #m 1 0 02280458 -pieridae n 1 3 @ #m %m 1 0 02280223 -pieris n 2 3 @ #m %m 2 0 12243292 02280845 -pieris_brassicae n 1 2 @ #m 1 0 02281136 -pieris_floribunda n 1 2 @ #m 1 0 12243693 -pieris_japonica n 1 2 @ #m 1 0 12243459 -pieris_protodice n 1 1 @ 1 0 02281267 -pieris_rapae n 2 2 @ #m 2 0 02310585 02281015 -pierre n 1 2 @ #p 1 0 09139508 -pierre-paul_broca n 1 1 @ 1 0 10864858 -pierre_abelard n 1 1 @ 1 0 10807317 -pierre_athanase_larousse n 1 1 @ 1 0 11118072 -pierre_auguste_renoir n 1 1 @ 1 0 11258096 -pierre_boulez n 1 1 @ 1 0 10859369 -pierre_charles_l'enfant n 1 1 @ 1 0 11126295 -pierre_corneille n 1 1 @ 1 0 10911104 -pierre_curie n 1 1 @ 1 0 10917999 -pierre_de_fermat n 1 1 @ 1 0 10969799 -pierre_de_terrail n 1 1 @ 1 0 10838802 -pierre_joseph_proudhon n 1 1 @ 1 0 11247155 -pierre_laporte_bridge n 1 2 @ #p 1 0 03934416 -pierre_larousse n 1 1 @ 1 0 11118072 -pierre_simon_de_laplace n 1 1 @ 1 0 11117451 -pierre_teilhard_de_chardin n 1 1 @ 1 0 11334609 -pierre_terrail n 1 1 @ 1 0 10838802 -pierrot n 1 1 @ 1 0 09603120 -piet_mondrian n 1 1 @ 1 0 11185175 -pieta n 1 1 @ 1 0 03934656 -pieter_breughel n 1 1 @ 1 0 10868177 -pieter_bruegel n 1 1 @ 1 0 10868177 -pieter_brueghel n 1 1 @ 1 0 10868177 -pieter_brueghel_the_elder n 1 1 @ 1 0 10868177 -pieter_zeeman n 1 1 @ 1 0 11405437 -pietism n 2 3 @ + ; 2 0 08475722 04827175 -piety n 1 4 ! @ ~ = 1 1 04826771 -piezo_effect n 1 1 @ 1 0 11491308 -piezoelectric_crystal n 1 1 @ 1 0 03934780 -piezoelectric_effect n 1 1 @ 1 1 11491308 -piezoelectricity n 1 2 @ + 1 1 11491308 -piezometer n 1 1 @ 1 0 03934890 -piffle n 1 2 @ + 1 0 06608143 -pig n 6 7 @ ~ #m %s %p + ; 6 1 02395406 10612210 10179649 09879144 03935116 03934998 -pig's_ears n 1 2 @ #m 1 0 13004826 -pig_bed n 1 1 @ 1 0 03935116 -pig_farm n 1 1 @ 1 0 03935234 -pig_iron n 1 3 @ ~ #s 1 0 14983491 -pig_laurel n 1 1 @ 1 0 12238073 -pig_lead n 1 1 @ 1 0 14983694 -pigboat n 1 3 @ ~ %p 1 0 04347754 -pigeon n 1 3 @ ~ #m 1 1 01811909 -pigeon-pea_plant n 1 3 @ #m %p 1 0 12510774 -pigeon_berry n 1 1 @ 1 0 11855553 -pigeon_breast n 1 1 @ 1 0 14215199 -pigeon_droppings n 1 1 @ 1 0 14854764 -pigeon_guillemot n 1 1 @ 1 0 02047045 -pigeon_hawk n 1 2 @ #m 1 0 01612275 -pigeon_loft n 1 1 @ 1 0 03686363 -pigeon_pea n 2 4 @ #m #p %p 2 0 12510774 07726230 -pigeon_toes n 1 1 @ 1 0 14560115 -pigeonhole n 2 2 @ + 2 0 05839663 03144486 -pigeonholing n 1 2 @ + 1 0 05733090 -pigfish n 2 2 @ #m 2 0 02608284 02590094 -piggery n 1 1 @ 1 0 03935234 -piggishness n 1 2 @ + 1 0 04886235 -piggy n 1 4 @ ~ #m + 1 0 02395694 -piggy_bank n 1 1 @ 1 0 03935335 -piggyback n 1 1 @ 1 0 00319513 -piggyback_plant n 1 2 @ #m 1 0 12804352 -pigheadedness n 1 3 @ ~ + 1 0 04863074 -piglet n 1 4 @ ~ #m + 1 0 02395694 -pigman n 1 1 @ 1 0 10683593 -pigment n 3 5 @ ~ #s %s + 3 1 14989820 14990723 03875218 -pigmentation n 2 4 ! @ ~ + 2 0 13537622 04976319 -pigmy n 2 1 @ 2 0 10496626 10496489 -pigmy_talinum n 1 2 @ #m 1 0 11863467 -pignolia n 1 2 @ #p 1 0 07774842 -pignut n 1 2 @ #m 1 0 12320627 -pignut_hickory n 1 2 @ #m 1 0 12320627 -pigpen n 1 1 @ 1 0 04346428 -pigs'_feet n 1 1 @ 1 0 07671581 -pigs'_knuckles n 1 1 @ 1 0 07671581 -pigs_in_blankets n 1 1 @ 1 0 07873348 -pigskin n 1 1 @ 1 1 14763424 -pigsticking n 1 1 @ 1 0 00453631 -pigsty n 1 1 @ 1 0 04346428 -pigswill n 1 1 @ 1 0 07805006 -pigtail n 1 1 @ 1 0 05259914 -pigwash n 1 1 @ 1 0 07805006 -pigweed n 3 3 @ #p %p 3 0 11828577 11824146 07733712 -pij n 1 2 @ ; 1 0 08037118 -pika n 1 3 @ ~ #m 1 0 02328429 -pike n 5 5 @ ~ #m #p %p 5 1 03306610 07779375 03935698 03935450 02561108 -pike's_peak n 1 2 @ #p 1 0 09391996 -pike-perch n 1 3 @ ~ #m 1 0 02557591 -pike_perch n 1 3 @ ~ #m 1 0 02557591 -pikeblenny n 1 3 @ ~ #m 1 0 02614482 -piked_reverse_hang n 1 1 @ 1 0 00437219 -piked_whale n 1 2 @ #m 1 0 02065407 -pikestaff n 1 2 @ #p 1 0 03935789 -pilaf n 1 2 @ ~ 1 0 07873464 -pilaff n 1 2 @ ~ 1 0 07873464 -pilar_cyst n 1 2 @ ~ 1 0 14202763 -pilaster n 1 1 @ 1 0 03935883 -pilate n 1 1 @ 1 0 11235112 -pilau n 1 2 @ ~ 1 0 07873464 -pilaw n 1 2 @ ~ 1 0 07873464 -pilchard n 2 3 @ ~ #m 2 0 07794063 02533209 -pile n 8 4 @ ~ + ; 8 3 07961480 13774404 13250680 05255692 04541136 03936269 03936045 02753710 -pile_driver n 1 1 @ 1 0 03936466 -pile_dwelling n 1 1 @ 1 0 03634034 -pilea n 1 3 @ #m %m 1 0 12394861 -pilea_involucrata n 1 2 @ #m 1 0 12395463 -pilea_microphylla n 1 2 @ #m 1 0 12395289 -pilea_pumilla n 1 2 @ #m 1 0 12395068 -piles n 2 1 @ 2 0 14327125 13777509 -pileup n 1 1 @ 1 0 07317285 -pileus n 1 2 @ #p 1 0 11532351 -pilewort n 1 2 @ #m 1 0 11721337 -pilferage n 1 2 @ + 1 0 00781355 -pilferer n 1 3 @ ~ + 1 0 10616204 -pilgrim n 3 2 @ ~ 3 1 10432441 10432674 10432532 -pilgrim's_journey n 1 2 @ ~ 1 0 00311687 -pilgrim's_progress n 1 1 @ 1 0 06372572 -pilgrim_father n 1 1 @ 1 0 10432674 -pilgrimage n 1 2 @ ~ 1 1 00311687 -piling n 1 2 @ ~ 1 0 03936269 -pill n 5 3 @ ~ %s 5 2 03936764 03936568 10432875 05833511 03936895 -pill_bottle n 1 1 @ 1 0 03937543 -pill_bug n 1 2 @ #m 1 0 01991520 -pill_head n 1 1 @ 1 0 10433077 -pill_pusher n 1 2 @ ~ 1 0 10421470 -pill_roller n 1 2 @ ~ 1 0 10421470 -pillage n 2 4 @ ~ %p + 2 0 13262663 00965895 -pillager n 1 4 @ ~ + ; 1 0 10443170 -pillaging n 1 3 @ ~ + 1 0 00965895 -pillar n 5 5 @ ~ #p %p ; 5 1 05913842 13900422 10432957 03074380 03073977 -pillar_box n 1 2 @ ; 1 0 03937437 -pillar_of_islam n 1 3 @ ~ ; 1 0 05913994 -pillar_of_strength n 1 1 @ 1 0 10718794 -pillars_of_hercules n 1 3 @ #p %p 1 0 09392162 -pillbox n 3 1 @ 3 0 03937835 03937751 03937633 -pillion n 1 1 @ 1 0 03937931 -pillock n 1 2 @ ~ 1 0 10667187 -pillory n 1 2 @ + 1 0 03938037 -pillow n 1 3 @ ~ + 1 1 03938244 -pillow_block n 1 1 @ 1 0 03938401 -pillow_fight n 1 1 @ 1 0 00487228 -pillow_lace n 1 2 @ ~ 1 0 03938522 -pillow_lava n 1 1 @ 1 0 14931633 -pillow_sham n 1 1 @ 1 0 03938725 -pillow_slip n 1 1 @ 1 0 02975412 -pillow_talk n 1 1 @ 1 0 07142242 -pillowcase n 1 1 @ 1 0 02975412 -pillwort n 1 2 @ #m 1 0 12958261 -pilocarpine n 1 1 @ 1 0 03938838 -pilomotor_reflex n 1 1 @ 1 0 00866606 -pilosella n 1 3 @ #m %m 1 0 12003407 -pilosella_aurantiaca n 1 2 @ #m 1 0 12003814 -pilosella_officinarum n 1 1 @ 1 0 12004120 -pilosity n 1 2 @ ~ 1 0 04683453 -pilot n 6 5 @ ~ #p + ; 6 1 10433164 10433452 06620906 05938400 03939281 03328201 -pilot_balloon n 1 1 @ 1 0 03938951 -pilot_biscuit n 1 1 @ 1 0 07694839 -pilot_bit n 1 1 @ 1 0 03939062 -pilot_blacksnake n 1 2 @ #m 1 0 01732789 -pilot_boat n 1 1 @ 1 0 03939178 -pilot_bread n 1 1 @ 1 0 07694839 -pilot_burner n 1 1 @ 1 0 03939281 -pilot_chart n 1 1 @ 1 0 03811648 -pilot_cloth n 1 1 @ 1 0 03939440 -pilot_engine n 1 1 @ 1 0 03939565 -pilot_experiment n 1 1 @ 1 0 05799071 -pilot_film n 1 1 @ 1 0 06620906 -pilot_ladder n 1 2 @ ; 1 0 03591116 -pilot_lamp n 1 1 @ 1 0 03939844 -pilot_light n 2 1 @ 2 1 03939281 03939844 -pilot_program n 2 1 @ 2 1 00795352 06620906 -pilot_project n 1 1 @ 1 0 00795352 -pilot_whale n 1 2 @ #m 1 0 02071636 -pilotage n 2 4 @ ~ + - 2 0 00815801 00609506 -pilotfish n 1 2 @ #m 1 0 02580188 -pilothouse n 1 3 @ ~ #p 1 0 03939677 -piloting n 2 4 @ ~ + - 2 0 00815801 00609506 -pilotless_aircraft n 1 1 @ 1 0 03245889 -pilsen n 1 2 @ #p 1 0 08757791 -pilsener n 1 1 @ 1 0 07888229 -pilsner n 1 1 @ 1 0 07888229 -piltdown_hoax n 1 1 @ 1 0 10433610 -piltdown_man n 1 1 @ 1 0 10433610 -pilularia n 1 3 @ #m %m 1 0 12958140 -pilularia_globulifera n 1 2 @ #m 1 0 12958261 -pilus n 2 4 @ ~ #p + 2 0 05254393 01902132 -pima n 2 1 @ 2 0 09665897 06918640 -pimenta n 1 3 @ #m %m 1 0 12330751 -pimenta_acris n 1 2 @ #m 1 0 12330891 -pimenta_dioica n 1 3 @ #m %p 1 0 12331066 -pimenta_officinalis n 1 1 @ 1 0 12331263 -pimento n 2 5 @ #m #s %s %p 2 0 12901264 07721195 -pimento_butter n 1 1 @ 1 0 07855812 -pimento_tree n 1 3 @ #m %p 1 0 12331066 -pimiento n 2 5 @ #m #s %s %p 2 0 12901264 07721195 -pimlico n 1 2 @ #p 1 0 03940022 -pimozide n 1 1 @ 1 0 03940154 -pimp n 1 4 @ ~ + ; 1 1 10433737 -pimpernel n 2 4 @ ~ #m %p 2 0 12637485 12092262 -pimpinella n 1 3 @ #m %m 1 0 12942930 -pimpinella_anisum n 1 3 @ #m %p 1 0 12943049 -pimple n 1 3 @ ~ + 1 1 14334306 -pin n 11 5 @ ~ #p %p + 11 1 03940713 07471371 07271791 06887441 05561707 03951971 03941013 03940894 03940256 03905730 02882647 -pin-tailed_duck n 1 2 @ #m 1 0 01849157 -pin-tailed_grouse n 1 2 @ #m 1 0 01816140 -pin-tailed_sandgrouse n 1 2 @ #m 1 0 01816140 -pin-up n 1 1 @ 1 0 09972458 -pin_bone n 1 2 @ #p 1 0 07659425 -pin_cherry n 1 1 @ 1 0 12647893 -pin_clover n 1 1 @ 1 0 12688903 -pin_curl n 1 1 @ 1 0 05258462 -pin_grass n 1 1 @ 1 0 12688903 -pin_money n 1 1 @ 1 0 13422545 -pin_number n 1 1 @ 1 0 06887441 -pin_oak n 2 1 @ 2 0 12276872 12273768 -pin_table n 1 1 @ 1 0 03941417 -pin_tumbler n 1 2 @ #p 1 0 03941013 -pin_wrench n 1 1 @ 1 0 03944530 -pina_cloth n 1 1 @ 1 0 14592309 -pina_colada n 1 1 @ 1 0 07930433 -pinaceae n 1 3 @ #m %m 1 0 11607739 -pinafore n 1 1 @ 1 1 03604400 -pinata n 1 1 @ 1 0 03941231 -pinatubo n 1 1 @ 1 0 08982289 -pinball n 1 2 @ ~ 1 1 00459284 -pinball_game n 1 2 @ ~ 1 0 00459284 -pinball_machine n 1 1 @ 1 0 03941417 -pince-nez n 1 1 @ 1 0 03941586 -pincer n 2 3 @ ~ #p 2 0 03941684 02156532 -pinch n 7 3 @ ~ + 7 0 14409371 14295140 13774115 07417405 00842281 00357275 00088725 -pinch_bar n 1 1 @ 1 0 03941887 -pinch_hitter n 1 2 @ ; 1 1 10434160 -pinchas_zukerman n 1 1 @ 1 0 11408041 -pinchbeck n 1 1 @ 1 0 14718233 -pinche n 1 1 @ 1 0 02491474 -pinchgut n 1 1 @ 1 0 10434054 -pinckneya n 1 3 @ #m %m 1 0 12669157 -pinckneya_pubens n 1 2 @ #m 1 0 12669362 -pinctada n 1 3 @ #m %m 1 0 01961862 -pinctada_margaritifera n 1 2 @ #m 1 0 01961985 -pincurl_clip n 1 1 @ 1 0 03942028 -pincus n 1 1 @ 1 0 11235263 -pincushion n 1 1 @ 1 0 03942126 -pincushion_flower n 1 1 @ 1 0 12683571 -pincushion_hakea n 1 2 @ #m 1 0 12218868 -pindar n 1 1 @ 1 0 11235510 -pindaric n 1 1 @ 1 0 06384034 -pindaric_ode n 1 1 @ 1 0 06384034 -pindolol n 1 1 @ 1 0 03942244 -pine n 2 6 @ ~ #m #s %s %p 2 2 11608250 11608885 -pine-barren_sandwort n 1 1 @ 1 0 11806369 -pine-tar_rag n 1 1 @ 1 0 03942397 -pine-weed n 1 1 @ 1 0 12368637 -pine_bluff n 1 2 @ #p 1 0 09060480 -pine_family n 1 3 @ #m %m 1 0 11607739 -pine_fern n 1 2 @ #m 1 0 12955840 -pine_finch n 1 2 @ #m 1 0 01532511 -pine_grosbeak n 1 2 @ #m 1 0 01541102 -pine_hyacinth n 1 1 @ 1 0 11729860 -pine_knot n 1 1 @ 1 1 15101271 -pine_leaf_aphid n 1 2 @ #m 1 0 02255270 -pine_lily n 1 1 @ 1 0 12427184 -pine_lizard n 1 1 @ 1 0 01680813 -pine_marten n 1 1 @ 1 0 02450295 -pine_mouse n 1 2 @ #m 1 0 02340930 -pine_nut n 1 2 @ #p 1 0 07774842 -pine_sawyer n 1 2 @ #m 1 0 02169218 -pine_siskin n 1 2 @ #m 1 0 01532511 -pine_snake n 1 1 @ 1 0 01734104 -pine_spittlebug n 1 2 @ #m 1 0 02258508 -pine_tar n 1 1 @ 1 0 14991476 -pine_tree n 1 5 @ ~ #m %s %p 1 0 11608250 -pine_tree_state n 1 3 @ #p %p 1 0 09092497 -pine_vole n 1 2 @ #m 1 0 02340930 -pineal_body n 1 1 @ 1 0 05485098 -pineal_eye n 1 2 @ #p 1 0 05299927 -pineal_gland n 1 1 @ 1 0 05485098 -pinealoma n 1 1 @ 1 0 14250433 -pineapple n 2 4 @ #m #p %p 2 0 12607456 07753275 -pineapple_family n 1 3 @ #m %m 1 0 12606907 -pineapple_guava n 1 2 @ #p 1 0 07763107 -pineapple_juice n 1 1 @ 1 0 07925116 -pineapple_plant n 1 3 @ #m %p 1 0 12607456 -pineapple_weed n 1 3 @ #m ; 1 0 11995396 -pinecone n 1 2 @ #p 1 1 11683331 -pinesap n 1 2 @ #m 1 0 12259316 -pinetum n 1 1 @ 1 0 09392402 -pineus n 1 3 @ #m %m 1 0 02255144 -pineus_pinifoliae n 1 2 @ #m 1 0 02255270 -pineweed n 1 1 @ 1 0 12368637 -pinfish n 1 2 @ #m 1 0 02592371 -pinfold n 1 1 @ 1 0 03942600 -ping n 2 3 @ #p + 2 0 09392507 07389569 -ping-pong n 1 3 @ ; - 1 1 00499263 -ping-pong_ball n 1 1 @ 1 0 03942813 -ping-pong_table n 1 1 @ 1 0 04381587 -ping_river n 1 2 @ #p 1 0 09392507 -pinger n 1 2 @ #p 1 0 03942692 -pingpong_paddle n 1 1 @ 1 0 04381724 -pingpong_table n 1 1 @ 1 0 04381587 -pinguecula n 1 1 @ 1 0 05315855 -pinguicula n 1 3 @ #m %m 1 0 12872698 -pinguinus n 1 3 @ #m %m 1 0 02046321 -pinguinus_impennis n 1 2 @ #m 1 0 02046442 -pinhead n 2 2 @ #p 2 0 10039391 03942920 -pinhole n 1 1 @ 1 0 03943010 -pinicola n 1 3 @ #m %m 1 0 01540969 -pinicola_enucleator n 1 2 @ #m 1 0 01541102 -pining n 1 3 @ ~ + 1 0 07487063 -pinion n 3 4 @ ~ #p + 3 0 03943115 02468864 02152446 -pinion_and_crown_wheel n 1 2 @ ~ 1 0 02833793 -pinion_and_ring_gear n 1 2 @ ~ 1 0 02833793 -pinite n 1 1 @ 1 0 14690938 -pink n 3 4 @ ~ #m + 3 1 04970916 11807979 10434321 -pink-and-white_everlasting n 1 2 @ #m 1 0 11917407 -pink_bollworm n 1 2 @ #m 1 0 02310149 -pink_calla n 1 1 @ 1 0 11794024 -pink_cockatoo n 1 1 @ 1 0 01819465 -pink_disease n 1 1 @ 1 0 14281678 -pink_disease_fungus n 1 2 @ #m 1 0 13015509 -pink_elephants n 1 1 @ 1 0 14378064 -pink_family n 1 3 @ #m %m 1 0 11804604 -pink_fivecorner n 1 2 @ #m 1 0 12255225 -pink_fritillary n 1 1 @ 1 0 12453714 -pink_lady n 1 2 @ %s 1 0 07916582 -pink_of_my_john n 1 1 @ 1 0 12390681 -pink_paper_daisy n 1 2 @ #m 1 0 11917407 -pink_sand_verbena n 1 1 @ 1 0 11837743 -pink_shower n 1 1 @ 1 0 12492460 -pink_shower_tree n 1 1 @ 1 0 12492460 -pink_slip n 1 2 @ ~ 1 0 07213079 -pink_wine n 1 1 @ 1 0 07893253 -pinkeye n 1 2 @ ~ 1 0 14341432 -pinkie n 1 2 @ %p 1 0 05567727 -pinkness n 1 1 @ 1 0 04971131 -pinko n 1 1 @ 1 0 10434321 -pinkroot n 1 1 @ 1 0 14283097 -pinky n 1 2 @ %p 1 0 05567727 -pinna n 2 4 @ ~ #p %p 2 0 13154388 05323889 -pinnace n 1 2 @ ~ 1 0 04409128 -pinnacle n 3 3 @ + ; 3 1 03943266 13940456 08619457 -pinnate_leaf n 1 2 @ ~ 1 0 13157137 -pinnatiped n 1 3 @ ~ #m 1 0 02075927 -pinner n 1 1 @ 1 0 03943448 -pinning n 1 1 @ 1 1 07228349 -pinniped n 1 3 @ ~ #m 1 0 02075927 -pinniped_mammal n 1 3 @ ~ #m 1 0 02075927 -pinnipedia n 1 3 @ #m %m 1 0 02075727 -pinnotheres n 1 3 @ #m %m 1 0 01980471 -pinnotheres_ostreum n 1 2 @ #m 1 0 01980830 -pinnotheridae n 1 3 @ #m %m 1 0 01980328 -pinnule n 1 1 @ 1 0 13154388 -pinny n 1 1 @ 1 0 03604400 -pinochle n 1 1 @ 1 0 00494100 -pinocle n 1 1 @ 1 0 00494100 -pinocytosis n 1 1 @ 1 0 13537761 -pinole n 1 1 @ 1 0 07568706 -pinon n 1 3 @ ~ #m 1 0 11609475 -pinon_nut n 1 2 @ #p 1 0 07774842 -pinon_pine n 1 2 @ #m 1 0 11609862 -pinophytina n 1 2 @ #m 1 0 11607071 -pinopsida n 1 2 @ #m 1 0 11607071 -pinot n 1 2 @ ~ 1 0 13146035 -pinot_blanc n 2 3 @ #s %s 2 0 13146403 07895100 -pinot_chardonnay n 1 2 @ #s 1 0 07894799 -pinot_grape n 1 2 @ ~ 1 0 13146035 -pinot_noir n 2 3 @ #s %s 2 0 13146225 07894965 -pinpoint n 3 2 @ + 3 2 15245382 04681230 03943544 -pinprick n 2 1 @ 2 0 14407211 03943623 -pins_and_needles n 1 1 @ 1 0 05722754 -pinscher n 1 2 @ ~ 1 0 02106966 -pinsk n 1 2 @ #p 1 0 09011820 -pinstripe n 3 1 @ 3 0 03943920 03943833 03943714 -pint n 3 3 @ #p %p 3 0 13621850 13620404 13619307 -pintado n 1 3 @ #m %p 1 0 02626265 -pintail n 1 2 @ #m 1 0 01849157 -pinter n 1 1 @ 1 0 11235619 -pintle n 1 2 @ #p 1 0 03944024 -pinto n 1 1 @ 1 0 02389261 -pinto_bean n 1 1 @ 1 0 07727252 -pinus n 1 3 @ #m %m 1 0 11608055 -pinus_albicaulis n 1 1 @ 1 0 11614039 -pinus_aristata n 1 1 @ 1 0 11617272 -pinus_attenuata n 1 1 @ 1 0 11617878 -pinus_banksiana n 1 1 @ 1 0 11615607 -pinus_californiarum n 1 1 @ 1 0 11610602 -pinus_cembra n 1 2 @ %p 1 0 11612018 -pinus_cembroides n 1 2 @ #m 1 0 11609862 -pinus_contorta n 1 1 @ 1 0 11615026 -pinus_contorta_murrayana n 1 1 @ 1 0 11615259 -pinus_densiflora n 1 1 @ 1 0 11618079 -pinus_echinata n 1 1 @ 1 0 11616260 -pinus_edulis n 1 1 @ 1 0 11610047 -pinus_flexilis n 1 1 @ 1 0 11613867 -pinus_glabra n 1 1 @ 1 0 11611087 -pinus_jeffreyi n 1 1 @ 1 0 11614713 -pinus_longaeva n 1 1 @ 1 0 11612575 -pinus_monophylla n 1 1 @ 1 0 11610215 -pinus_monticola n 1 1 @ 1 0 11613459 -pinus_mugo n 1 1 @ 1 0 11612349 -pinus_muricata n 1 1 @ 1 0 11610437 -pinus_nigra n 1 1 @ 1 0 11611233 -pinus_palustris n 1 1 @ 1 0 11615967 -pinus_parryana n 1 1 @ 1 0 11610823 -pinus_pinea n 1 2 @ %p 1 0 11611758 -pinus_ponderosa n 1 1 @ 1 0 11614420 -pinus_pungens n 1 1 @ 1 0 11617631 -pinus_quadrifolia n 1 1 @ 1 0 11610823 -pinus_radiata n 1 1 @ 1 0 11617090 -pinus_resinosa n 1 1 @ 1 0 11616486 -pinus_rigida n 1 1 @ 1 0 11611356 -pinus_serotina n 1 1 @ 1 0 11611561 -pinus_strobiformis n 1 1 @ 1 0 11613692 -pinus_strobus n 1 1 @ 1 0 11613219 -pinus_sylvestris n 1 1 @ 1 0 11616662 -pinus_taeda n 1 1 @ 1 0 11615387 -pinus_thunbergii n 1 1 @ 1 0 11618290 -pinus_torreyana n 1 1 @ 1 0 11618525 -pinus_virginiana n 1 1 @ 1 0 11616852 -pinwheel n 4 2 @ #m 4 0 12786836 03944341 03944138 02984328 -pinwheel_flower n 1 2 @ #m 1 0 11776511 -pinwheel_roll n 1 1 @ 1 0 07693439 -pinwheel_wind_collector n 1 1 @ 1 0 03944138 -pinworm n 1 2 @ #m 1 0 01931520 -pinyon n 1 3 @ ~ #m 1 0 11609475 -piolet n 1 1 @ 1 0 03556679 -pion n 1 1 @ 1 0 09392656 -pioneer n 2 3 @ ~ + 2 2 10434725 10434424 -pious_platitude n 1 1 @ 1 0 07136098 -piousness n 1 4 @ ~ = + 1 0 04826771 -pip n 5 2 @ #p 5 0 14274905 14203269 11685091 07271942 07263358 -pip-squeak n 1 1 @ 1 0 10435251 -pipa n 1 2 @ #m 1 0 01653975 -pipa_americana n 1 1 @ 1 0 01654083 -pipa_pipa n 1 1 @ 1 0 01654083 -pipage n 2 4 @ ~ %p + 2 0 13323102 03944672 -pipal n 1 1 @ 1 0 12402596 -pipal_tree n 1 1 @ 1 0 12402596 -pipe n 5 5 @ ~ #p %p + 5 2 03945167 03944672 13901321 03945615 03854815 -pipe_bomb n 1 1 @ 1 0 03945817 -pipe_bowl n 1 2 @ #p 1 0 02881397 -pipe_clamp n 1 1 @ 1 0 03947343 -pipe_cleaner n 1 1 @ 1 0 03945928 -pipe_cutter n 1 1 @ 1 0 03946076 -pipe_dream n 1 1 @ 1 0 05632732 -pipe_fitter n 1 1 @ 1 0 10443032 -pipe_fitting n 1 2 @ ~ 1 0 03946162 -pipe_major n 1 1 @ 1 0 10434947 -pipe_of_peace n 1 1 @ 1 0 02941408 -pipe_organ n 1 2 @ %p 1 0 03854065 -pipe_rack n 1 1 @ 1 0 03946723 -pipe_smoker n 1 1 @ 1 0 10435169 -pipe_vine n 1 1 @ 1 0 11801665 -pipe_vise n 1 1 @ 1 0 03947343 -pipe_wrench n 1 2 @ ~ 1 0 03947466 -pipeclay n 1 1 @ 1 0 14813560 -pipefish n 1 3 @ ~ #m 1 0 01455778 -pipefitting n 1 2 @ ~ 1 0 03946162 -pipeful n 1 1 @ 1 0 13768630 -pipeline n 2 2 @ ~ 2 0 07223635 03946325 -pipeline_company n 1 2 @ #m 1 1 08069487 -piper n 2 5 @ ~ #m %m + 2 1 10435041 13149039 -piper_betel n 1 2 @ #m 1 0 13149970 -piper_cubeba n 1 3 @ #m %p 1 0 13150178 -piper_longum n 1 2 @ #m 1 0 13149829 -piper_nigrum n 1 4 @ #m %s %p 1 0 13149506 -piperaceae n 1 3 @ #m %m 1 0 13148791 -piperacillin n 1 1 @ 1 0 03946532 -piperales n 1 3 @ #m %m 1 0 13148602 -piperazine n 1 1 @ 1 0 03946814 -piperin n 1 2 @ #s 1 0 15033189 -piperine n 1 2 @ #s 1 0 15033189 -piperocaine n 1 1 @ 1 0 03946933 -piperocaine_hydrochloride n 1 1 @ 1 0 03946933 -pipestem_clematis n 1 1 @ 1 0 11730205 -pipet n 1 2 @ ~ 1 0 03947111 -pipette n 1 2 @ ~ 1 0 03947111 -pipework n 1 3 @ ~ #p 1 0 03854815 -pipewort n 1 2 @ #m 1 0 12609379 -pipewort_family n 1 3 @ #m %m 1 0 12608941 -pipidae n 1 3 @ #m %m 1 0 01653610 -pipile n 1 3 @ #m %m 1 0 01800042 -pipilo n 1 3 @ #m %m 1 0 01542055 -pipilo_erythrophthalmus n 1 2 @ #m 1 0 01542168 -piping n 3 4 @ ~ %p + 3 0 03947681 03944672 00101708 -piping_crow n 1 2 @ #m 1 0 01583828 -piping_crow-shrike n 1 2 @ #m 1 0 01583828 -piping_guan n 1 2 @ #m 1 0 01800195 -piping_plover n 1 2 @ #m 1 0 02023855 -pipistrel n 1 2 @ #m 1 0 02147947 -pipistrelle n 1 2 @ #m 1 0 02147947 -pipistrellus n 1 3 @ #m %m 1 0 02147747 -pipistrellus_pipistrellus n 1 2 @ #m 1 0 02147947 -pipistrellus_subflavus n 1 2 @ #m 1 0 02148088 -pipit n 1 3 @ ~ #m 1 0 01528654 -pippin n 1 2 @ ~ 1 0 07741461 -pipra n 1 3 @ #m %m 1 0 01551549 -pipracil n 1 2 @ ; 1 0 03946532 -pipridae n 1 3 @ #m %m 1 0 01551430 -pipsissewa n 1 3 @ ~ #m 1 0 12257570 -piptadenia n 1 2 @ #m 1 0 11764072 -piptadenia_macrocarpa n 1 2 @ #m 1 0 11760294 -pipturus n 1 3 @ #m %m 1 0 12395717 -pipturus_albidus n 1 2 @ #m 1 0 12396091 -pipturus_argenteus n 1 2 @ #m 1 0 12395906 -pipul n 1 1 @ 1 0 12402596 -piquance n 2 1 @ 2 0 04993108 04720393 -piquancy n 2 1 @ 2 0 04993108 04720393 -piquantness n 2 1 @ 2 0 04993108 04720393 -pique n 2 2 @ + 2 1 03947798 07518468 -piqueria n 1 3 @ #m %m 1 0 12004310 -piquet n 2 1 @ 2 0 00494293 00423563 -piracy n 2 2 @ + 2 0 00783527 00750405 -pirana n 1 2 @ #m 1 0 02584449 -pirandello n 1 1 @ 1 0 11235787 -piranga n 1 3 @ #m %m 1 0 01597551 -piranga_flava_hepatica n 1 2 @ #m 1 0 01598271 -piranga_ludoviciana n 1 2 @ #m 1 0 01597906 -piranga_olivacea n 1 2 @ #m 1 0 01597737 -piranga_rubra n 1 2 @ #m 1 0 01598074 -piranha n 2 3 @ ~ #m 2 0 10293172 02584449 -pirate n 3 3 @ ~ + 3 2 10437262 10435367 03947888 -pirate_flag n 1 2 @ %p 1 0 02847009 -pirate_ship n 1 2 @ ~ 1 0 03947888 -piriform_area n 1 2 @ #p 1 0 05477305 -piriform_lobe n 1 2 @ #p 1 0 05477305 -pirogi n 1 2 @ ; 1 0 07624924 -pirogue n 1 1 @ 1 1 03254374 -piroplasm n 1 2 @ #m 1 0 01425634 -piroshki n 1 2 @ ; 1 0 07624924 -pirouette n 1 3 @ + ; 1 0 00343730 -piroxicam n 1 1 @ 1 0 03948041 -pirozhki n 1 2 @ ; 1 0 07624924 -pis_aller n 1 1 @ 1 0 00178972 -pisa n 1 3 @ #p %p 1 0 08809910 -pisang_wax n 1 1 @ 1 0 14991611 -pisanosaur n 1 2 @ #m 1 0 01700924 -pisanosaurus n 1 2 @ #m 1 0 01700924 -piscary n 1 2 @ ~ 1 0 03350880 -pisces n 4 5 @ #m #p %m ; 4 1 08688076 09753792 09392824 02511824 -pisces_the_fishes n 1 1 @ 1 0 08688076 -piscidia n 1 3 @ #m %m 1 0 12559302 -piscidia_erythrina n 1 2 @ #m 1 0 12559518 -piscidia_piscipula n 1 2 @ #m 1 0 12559518 -pisha_paysha n 1 2 @ ; 1 0 00494406 -pisiform n 1 1 @ 1 0 05272745 -pisiform_bone n 1 1 @ 1 0 05272745 -pismire n 1 3 @ ~ #m 1 0 02219486 -pisonia n 1 3 @ #m %m 1 0 11841061 -pisonia_aculeata n 1 2 @ #m 1 0 11841247 -piss n 2 3 @ + ; 2 0 14855724 13533886 -piss-up n 1 2 @ ; 1 0 00510922 -pissaba_palm n 1 3 @ #m %p 1 0 12585137 -pisser n 2 3 @ ~ + 2 0 10435716 05688907 -pissing n 1 3 @ + ; 1 0 13533886 -pissis n 1 2 @ #p 1 0 09392961 -pistachio n 2 4 @ #m #p %p 2 0 12761702 07775050 -pistachio_nut n 1 2 @ #p 1 0 07775050 -pistachio_tree n 1 3 @ #m %p 1 0 12761702 -pistacia n 1 3 @ #m %m 1 0 12761471 -pistacia_lentiscus n 1 2 @ #m 1 0 12762049 -pistacia_terebinthus n 1 2 @ #m 1 0 12761905 -pistacia_vera n 1 3 @ #m %p 1 0 12761702 -piste n 2 2 @ ; 2 0 03948347 03948242 -pistia n 1 2 @ #m 1 0 11791569 -pistia_stratiotes n 1 2 @ #m 1 0 11791569 -pistia_stratoites n 1 2 @ #m 1 0 11791569 -pistil n 1 4 @ ~ #p %p 1 0 11676500 -pistillode n 1 1 @ 1 0 11677144 -pistol n 1 4 @ ~ %p + 1 1 03948459 -pistol_grip n 1 1 @ 1 0 03948830 -pistol_shrimp n 1 1 @ 1 0 01987076 -pistoleer n 1 2 @ + 1 1 10435855 -piston n 2 3 @ #p %p 2 0 11235926 03948950 -piston_chamber n 1 4 @ ~ #p %p 1 0 03156405 -piston_ring n 1 2 @ #p 1 0 03949145 -piston_rod n 1 2 @ #p 1 0 03949317 -pisum n 1 3 @ #m %m 1 0 12559842 -pisum_arvense n 1 2 @ %p 1 0 12561309 -pisum_sativum n 1 3 @ #m %p 1 0 12560420 -pisum_sativum_arvense n 1 2 @ %p 1 0 12561309 -pisum_sativum_macrocarpon n 1 2 @ ~ 1 0 12560775 -pit n 11 6 @ ~ #p %p + ; 11 1 09393108 13872211 11684739 05629682 03950113 03949924 03949761 03949663 03949442 03853291 03070396 -pit-run_gravel n 1 1 @ 1 0 14699321 -pit_bull_terrier n 1 1 @ 1 0 02093428 -pit_of_the_stomach n 1 2 @ #p 1 0 05508943 -pit_run n 1 1 @ 1 1 14699321 -pit_stop n 2 1 @ 2 0 01056941 01056804 -pit_viper n 1 3 @ ~ #m 1 0 01753959 -pita n 1 3 @ #p ; 1 0 07683617 -pitahaya n 2 3 @ #p %p 2 0 11843053 07751280 -pitahaya_cactus n 1 2 @ %p 1 0 11843053 -pitanga n 1 2 @ #m 1 0 12332030 -pitch n 10 5 @ ~ = + ; 10 5 04985198 00106272 08624656 07248653 05069199 14911704 00573664 00498558 00337210 00106104 -pitch_accent n 1 1 @ 1 0 07085961 -pitch_apple n 1 2 @ #m 1 0 12366313 -pitch_black n 1 1 @ 1 0 04960582 -pitch_blackness n 1 2 @ + 1 0 13983807 -pitch_contour n 1 2 @ ~ 1 0 07084166 -pitch_pine n 2 1 @ 2 0 11615967 11611356 -pitch_pipe n 1 1 @ 1 0 03950647 -pitch_shot n 1 1 @ 1 0 00573664 -pitchblende n 1 2 @ %s 1 0 15084545 -pitched_battle n 1 2 @ ~ 1 0 00956485 -pitcher n 5 5 @ ~ #m + ; 5 3 10435988 03950228 13768748 12780168 00722984 -pitcher's_mound n 1 3 @ #p ; 1 0 03792334 -pitcher-plant_family n 1 3 @ #m %m 1 0 12779233 -pitcher_plant n 1 3 @ ~ #m 1 0 12779603 -pitcher_sage n 2 2 @ #m 2 0 12866333 12851860 -pitcherful n 1 1 @ 1 0 13768748 -pitchfork n 1 3 @ %p + 1 1 03950359 -pitching n 2 4 @ ~ + ; 2 2 00127151 00337210 -pitching_change n 1 1 @ 1 0 00197136 -pitching_coach n 1 2 @ ; 1 0 09932098 -pitching_wedge n 1 1 @ 1 0 03950537 -pitchman n 2 2 @ ~ 2 0 10436334 10411551 -pitchstone n 1 1 @ 1 0 14881143 -pitfall n 2 1 @ 2 1 05688990 03949663 -pith n 2 4 @ ~ %s + 2 1 13096159 05921123 -pith_hat n 1 1 @ 1 0 03950899 -pith_helmet n 1 1 @ 1 0 03950899 -pithead n 1 1 @ 1 0 03950818 -pithecanthropus n 1 1 @ 1 0 02473554 -pithecanthropus_erectus n 1 1 @ 1 0 02473554 -pithecellobium n 1 3 @ #m %m 1 0 11764231 -pithecellobium_dulce n 1 2 @ #m 1 0 11764478 -pithecellodium_unguis-cati n 1 2 @ #m 1 0 11764814 -pithecia n 1 3 @ #m %m 1 0 02492833 -pithecolobium n 1 3 @ #m %m 1 0 11764231 -pithiness n 1 2 @ + 1 0 07089024 -pitilessness n 2 2 @ + 2 0 07506382 04831264 -pitman n 2 1 @ 2 0 11236043 09932508 -pitocin n 1 2 @ ; 1 0 05411571 -piton n 1 1 @ 1 0 03951068 -pitot n 2 1 @ 2 0 11236188 03951453 -pitot-static_tube n 1 1 @ 1 0 03951213 -pitot_head n 1 1 @ 1 0 03951213 -pitot_tube n 2 1 @ 2 0 03951453 03951213 -pitprop n 1 1 @ 1 0 03951690 -pitressin n 1 2 @ ; 1 0 05414147 -pitsaw n 1 1 @ 1 0 03951800 -pitt n 3 1 @ 3 0 11236663 11236497 11236317 -pitt_the_elder n 1 1 @ 1 0 11236317 -pitt_the_younger n 1 1 @ 1 0 11236497 -pitta n 1 1 @ 1 0 01555004 -pittance n 1 1 @ 1 0 13300711 -pitter-patter n 1 2 @ + 1 0 07389757 -pittidae n 1 3 @ #m %m 1 0 01554708 -pitting n 1 2 @ + 1 0 13537894 -pittsburgh n 1 3 @ #p %p 1 1 09136582 -pittsburgh_of_the_south n 1 2 @ #p 1 0 09053947 -pittsfield n 1 2 @ #p 1 0 09097599 -pituitary n 1 4 @ #p %p + 1 1 05483890 -pituitary_body n 1 3 @ #p %p 1 0 05483890 -pituitary_dwarf n 1 1 @ 1 0 10436458 -pituitary_gland n 1 3 @ #p %p 1 1 05483890 -pituophis n 1 3 @ #m %m 1 0 01733634 -pituophis_melanoleucus n 1 1 @ 1 0 01733957 -pity n 3 2 @ + 3 2 07553964 07305098 04829550 -pitymys n 1 3 @ #m %m 1 0 02340813 -pitymys_pinetorum n 1 2 @ #m 1 0 02340930 -pityriasis n 1 2 @ ~ 1 0 14231022 -pityriasis_alba n 1 1 @ 1 0 14231330 -pityriasis_rosea n 1 1 @ 1 0 14231504 -pityrogramma n 1 3 @ #m %m 1 0 13212751 -pityrogramma_argentea n 1 2 @ #m 1 0 13213066 -pityrogramma_calomelanos n 1 2 @ #m 1 0 13213235 -pityrogramma_calomelanos_aureoflava n 1 2 @ #m 1 0 13213397 -pityrogramma_chrysophylla n 1 2 @ #m 1 0 13213577 -pius_ii n 1 1 @ 1 0 11236852 -pius_ix n 1 1 @ 1 0 11237868 -pius_v n 1 1 @ 1 0 11237075 -pius_vi n 1 1 @ 1 0 11237275 -pius_vii n 1 1 @ 1 0 11237550 -pius_x n 1 1 @ 1 0 11238092 -pius_xi n 1 1 @ 1 0 11238303 -pius_xii n 1 1 @ 1 0 11238511 -piute n 1 1 @ 1 0 09664556 -pivot n 3 3 @ ~ + 3 0 10436707 03951971 00342916 -pivot_joint n 1 1 @ 1 0 05597188 -pivot_man n 1 1 @ 1 0 10436707 -pivot_shot n 1 1 @ 1 0 00111839 -pivoting_window n 1 1 @ 1 0 03952150 -pix n 2 1 @ 2 0 04030274 04030161 -pix_chest n 1 1 @ 1 0 04030274 -pixel n 1 3 @ #p ; 1 0 03952277 -pixie n 2 4 @ ~ #m ; 2 1 09540739 12251740 -pixy n 2 4 @ ~ #m ; 2 0 12251740 09540739 -pizarro n 1 1 @ 1 0 11238726 -pizza n 1 2 @ ~ 1 1 07873807 -pizza_parlor n 1 1 @ 1 0 03952576 -pizza_pie n 1 2 @ ~ 1 0 07873807 -pizza_shop n 1 1 @ 1 0 03952576 -pizzaz n 1 1 @ 1 0 04635482 -pizzazz n 1 1 @ 1 0 04635482 -pizzeria n 1 1 @ 1 0 03952576 -pizzicato n 1 1 @ 1 0 07024607 -pj's n 1 2 @ ~ 1 0 03877472 -pkd n 1 1 @ 1 0 14114186 -pku n 1 1 @ 1 0 14507375 -pku_test n 1 1 @ 1 0 05743770 -placard n 1 3 @ ~ + 1 0 06793426 -placation n 1 2 @ + 1 0 01151407 -place n 16 6 @ ~ #p = + ; 16 16 08664443 08513718 05611822 08642037 00721431 13926786 08559508 00586262 08621598 13947645 08647616 06401107 13947867 08619795 06483454 06389553 -place-kicker n 1 3 @ + ; 1 1 10436851 -place-kicking n 1 4 @ ~ + ; 1 1 00137279 -place-worship n 1 1 @ 1 0 01045621 -place_bet n 1 1 @ 1 0 00507425 -place_kick n 1 3 @ ~ ; 1 0 00137279 -place_mat n 1 1 @ 1 0 03952886 -place_name n 1 2 @ #p 1 0 06343838 -place_of_birth n 1 1 @ 1 1 08510350 -place_of_business n 1 2 @ ~ 1 1 03953020 -place_of_origin n 1 1 @ 1 1 08510456 -place_of_worship n 1 2 @ ~ 1 0 03953416 -place_setting n 1 1 @ 1 0 03953743 -placebo n 2 3 @ ~ ; 2 0 03952696 01034685 -placebo_effect n 1 1 @ 1 0 11416087 -placeholder n 2 1 @ 2 0 10486909 07271478 -placekicker n 1 2 @ ; 1 0 10436851 -placeman n 1 2 @ ; 1 0 10437014 -placement n 3 3 @ ~ + 3 3 05075602 00039990 01051331 -placement_center n 1 2 @ ~ 1 0 08354523 -placement_office n 1 2 @ ~ 1 0 08354523 -placenta n 2 5 @ ~ #p %p + 2 0 11680838 05520699 -placenta_previa n 1 1 @ 1 0 14048847 -placental n 1 4 @ ~ #m + 1 0 01886756 -placental_mammal n 1 3 @ ~ #m 1 0 01886756 -placentation n 2 2 @ ~ 2 0 13538080 11680995 -placer n 1 1 @ 1 0 09393403 -placer_miner n 1 1 @ 1 0 10437137 -placer_mining n 1 1 @ 1 0 00922727 -placeseeker n 1 2 @ ; 1 0 10437014 -placidity n 2 3 @ ~ + 2 0 07515169 04904352 -placidness n 1 2 @ + 1 0 07515169 -placido_domingo n 1 1 @ 1 0 10938199 -placidyl n 1 2 @ ; 1 0 03299788 -placket n 1 2 @ #p 1 0 03953901 -placoderm n 1 2 @ #m 1 0 01480106 -placodermi n 1 3 @ #m %m 1 0 01479937 -placuna n 1 3 @ #m %m 1 0 01962662 -placuna_placenta n 1 2 @ #m 1 0 01962788 -plagal_cadence n 1 1 @ 1 0 07046030 -plage n 1 1 @ 1 0 09393524 -plagianthus n 1 3 @ #m %m 1 0 12185078 -plagianthus_betulinus n 1 3 @ #m %s 1 0 12185254 -plagianthus_regius n 1 3 @ #m %s 1 0 12185254 -plagiarisation n 1 2 @ + 1 0 00750405 -plagiariser n 1 2 @ + 1 0 10437262 -plagiarism n 2 2 @ + 2 0 07277158 00750405 -plagiarist n 1 2 @ + 1 0 10437262 -plagiarization n 1 2 @ + 1 0 00750405 -plagiarizer n 1 2 @ + 1 0 10437262 -plagiocephaly n 1 1 @ 1 0 14467685 -plagioclase n 1 4 @ ~ #s + 1 0 14865316 -plague n 5 4 @ ~ + ; 5 0 14138691 14076479 07996412 07316603 05831939 -plague_pneumonia n 1 1 @ 1 0 14139661 -plague_spot n 1 1 @ 1 0 05245521 -plaice n 2 4 @ #m #p %p 2 0 07790935 02658531 -plaid n 1 1 @ 1 0 04395106 -plain n 2 2 @ ~ 2 1 09393605 03625226 -plain_clothes n 1 2 @ ~ 1 0 03036469 -plain_flour n 1 2 @ ; 1 0 07569423 -plain_sailing n 1 1 @ 1 0 00282953 -plain_stitch n 1 1 @ 1 0 03625226 -plain_turkey n 1 2 @ #m 1 0 02019438 -plain_wanderer n 1 2 @ #m 1 0 02020578 -plain_weave n 1 1 @ 1 0 03954012 -plainchant n 1 2 @ ~ 1 0 07035153 -plainclothesman n 1 1 @ 1 1 10437590 -plainness n 4 3 @ ~ + 4 0 14487026 04821615 04697267 04691651 -plains_indian n 1 2 @ ~ 1 0 09649554 -plains_lemon_monarda n 1 1 @ 1 0 12859153 -plains_pocket_gopher n 1 2 @ #m 1 0 02354162 -plains_pocket_mouse n 1 2 @ #m 1 0 02349390 -plains_spadefoot n 1 2 @ #m 1 0 01649726 -plainsman n 1 2 @ ; 1 0 10437698 -plainsong n 1 2 @ ~ 1 0 07035153 -plaint n 2 2 @ ; 2 0 07236759 07211950 -plaintiff n 1 4 ! @ ~ ; 1 0 10437852 -plaintiff_in_error n 1 1 @ 1 0 09800469 -plaintiveness n 1 2 @ + 1 0 07535430 -plait n 2 3 @ ~ + 2 0 05259512 03965907 -plaiter n 1 2 @ + 1 0 10438042 -plan n 3 3 @ ~ + 3 3 05898568 05728678 03954199 -plan_of_action n 1 3 @ ~ %p 1 0 05902545 -plan_of_attack n 1 2 @ ~ 1 0 00941140 -planaria n 1 2 @ #m 1 0 01925270 -planarian n 1 2 @ #m 1 0 01925270 -planation n 1 2 @ + 1 0 13538182 -planchet n 1 1 @ 1 0 03954393 -planchette n 1 2 @ #p 1 0 03954507 -planck n 1 1 @ 1 0 11238906 -planck's_constant n 1 1 @ 1 0 13591123 -planck's_law n 1 2 @ ; 1 0 05887365 -planck's_radiation_law n 1 2 @ ; 1 0 05887712 -plane n 5 6 @ ~ %p + ; - 5 3 02691156 13861050 13941806 03955296 03954731 -plane-tree_family n 1 3 @ #m %m 1 0 12806270 -plane_angle n 1 1 @ 1 0 13889216 -plane_figure n 1 2 @ ~ 1 0 13863186 -plane_geometry n 1 2 @ ; 1 0 06012108 -plane_seat n 1 3 @ #p %p 1 0 03955489 -plane_section n 1 3 @ ~ ; 1 0 08648153 -plane_table n 1 1 @ 1 0 03955615 -plane_ticket n 1 1 @ 1 0 06519253 -plane_tree n 1 4 @ ~ #m %s 1 0 12806732 -planeness n 1 2 @ + 1 0 05063349 -planer n 1 2 @ + 1 0 03955296 -planera n 1 2 @ #m 1 0 12410032 -planet n 3 6 @ ~ #m %p + ; 3 2 09394007 10552639 09394646 -planet_gear n 1 2 @ #p 1 0 03956331 -planet_wheel n 1 2 @ #p 1 0 03956331 -planetarium n 3 4 @ ~ #p %p 3 0 03956157 03955941 03955809 -planetary_gear n 1 2 @ #p 1 0 03956331 -planetary_house n 1 4 @ ~ #p ; 1 0 08685677 -planetary_nebula n 1 1 @ 1 0 09394797 -planetesimal n 1 1 @ 1 0 09395086 -planetesimal_hypothesis n 1 2 @ ; 1 0 05888377 -planetoid n 1 3 @ ~ #m 1 1 09355623 -plangency n 1 2 @ + 1 0 04989657 -planimeter n 1 1 @ 1 0 03577312 -planing_machine n 1 1 @ 1 0 03955296 -plank n 2 5 @ ~ #p %p + 2 1 15101854 06501622 -plank-bed n 1 1 @ 1 0 03956531 -planking n 3 3 @ + ; 3 0 15102359 03956623 00714693 -plankton n 1 5 @ #m %m %p + 1 0 01383638 -planktonic_algae n 1 1 @ 1 0 01384084 -planned_community n 1 2 @ ~ 1 0 08553887 -planner n 2 3 @ ~ + 2 1 10438172 03956785 -planning n 3 3 @ ~ + 3 3 01144133 00928371 05794694 -planning_board n 1 3 @ ~ #m 1 0 08381636 -planning_commission n 1 1 @ 1 0 08325386 -plano n 1 2 @ #p 1 0 09145851 -planococcus n 1 3 @ #m %m 1 0 02251452 -planococcus_citri n 1 2 @ #m 1 0 02251593 -planographic_printing n 1 2 @ ~ 1 0 06679457 -planography n 1 3 @ ~ + 1 0 06679457 -plant n 4 7 @ ~ #m %p + ; - 4 2 03956922 00017222 10438470 05906080 -plant_bug n 1 2 @ ~ 1 0 02237424 -plant_cell n 1 2 @ %p 1 0 11530149 -plant_closing n 1 1 @ 1 0 00229587 -plant_department n 1 1 @ 1 0 08119226 -plant_disease n 1 2 @ ~ 1 0 14276936 -plant_family n 1 3 @ ~ #m 1 0 11744583 -plant_fiber n 1 2 @ ~ 1 0 14959644 -plant_fibre n 1 2 @ ~ 1 0 14959644 -plant_food n 1 3 @ ~ %s 1 0 14859344 -plant_genus n 1 3 @ ~ #m 1 0 11744859 -plant_hopper n 1 2 @ ~ 1 0 02259377 -plant_hormone n 1 3 @ ~ ; 1 0 14744841 -plant_kingdom n 1 3 @ %m ; 1 0 11529603 -plant_life n 1 6 @ ~ #m %p ; - 1 0 00017222 -plant_louse n 1 2 @ ~ 1 0 02251775 -plant_material n 1 2 @ ~ 1 0 14991712 -plant_order n 1 3 @ ~ #m 1 0 11534677 -plant_organ n 1 2 @ ~ 1 0 13087625 -plant_part n 1 3 @ ~ #p 1 0 13086908 -plant_process n 1 2 @ ~ 1 0 13088096 -plant_product n 1 2 @ ~ 1 0 14991927 -plant_scientist n 1 2 @ ~ 1 0 09868270 -plant_structure n 1 3 @ ~ #p 1 0 13086908 -plant_substance n 1 2 @ ~ 1 0 14991712 -plant_tissue n 1 2 @ ~ 1 1 13095685 -plant_toxin n 1 2 @ ~ 1 0 15036638 -plant_virus n 1 2 @ ~ 1 0 01335460 -plantae n 1 3 @ %m ; 1 0 11529603 -plantagenet n 1 2 @ %m 1 0 08156685 -plantagenet_line n 1 2 @ %m 1 0 08156685 -plantaginaceae n 1 3 @ #m %m 1 0 12598409 -plantaginales n 1 3 @ #m %m 1 0 12598247 -plantago n 1 3 @ #m %m 1 0 12598629 -plantago_lanceolata n 1 1 @ 1 0 12599185 -plantago_major n 1 1 @ 1 0 12599435 -plantago_media n 1 1 @ 1 0 12599661 -plantago_psyllium n 1 1 @ 1 0 12599874 -plantago_rugelii n 1 1 @ 1 0 12600095 -plantago_virginica n 1 1 @ 1 0 12600267 -plantain n 3 5 @ ~ #m #p %p 3 0 12598826 12352990 07768423 -plantain-leaved_pussytoes n 1 1 @ 1 0 11922661 -plantain_family n 1 3 @ #m %m 1 0 12598409 -plantain_lily n 1 2 @ #m 1 1 12457771 -plantain_tree n 1 2 @ %p 1 0 12352990 -plantar_reflex n 1 1 @ 1 0 00866882 -plantar_wart n 1 1 @ 1 0 04697084 -plantation n 3 3 @ ~ ; 3 1 13252513 08374773 03463832 -plantation_owner n 1 1 @ 1 0 10438619 -plantation_walking_horse n 1 1 @ 1 0 02379430 -planter n 3 2 @ + 3 1 10438619 10438728 03957315 -planter's_punch n 1 2 @ %s 1 0 07931452 -planthopper n 1 2 @ ~ 1 0 02259377 -plantigrade n 1 1 @ 1 0 02506947 -plantigrade_mammal n 1 2 ! @ 1 0 02506947 -planting n 3 3 @ ~ + 3 1 01052450 08064888 00919513 -plantlet n 1 2 @ + 1 0 11531090 -plantlike_flagellate n 1 2 @ #m 1 0 01420860 -plantsman n 1 2 @ ~ 1 0 10186350 -planula n 1 1 @ 1 0 01909788 -plaque n 2 3 @ ~ ; 2 2 05244239 02892201 -plaquenil n 1 2 @ ; 1 0 03553908 -plash n 1 3 @ ~ + 1 0 07395104 -plasm n 2 2 @ %s 2 0 05435722 05403427 -plasma n 3 4 @ ~ %s ; 3 1 05403427 14992165 14481511 -plasma_cell n 1 2 @ ~ 1 0 05452845 -plasma_membrane n 1 2 @ #p 1 0 05312782 -plasma_physics n 1 1 @ 1 0 06101849 -plasma_protein n 1 3 @ ~ #s 1 0 14736359 -plasma_thromboplastin_antecedent n 1 1 @ 1 0 15072331 -plasmablast n 1 1 @ 1 0 05453057 -plasmacyte n 1 2 @ ~ 1 0 05452845 -plasmacytoma n 1 1 @ 1 0 14250514 -plasmapheresis n 1 1 @ 1 0 00650267 -plasmid n 1 1 @ 1 0 09395266 -plasmid_dna n 1 1 @ 1 0 09395266 -plasmin n 1 2 @ ~ 1 0 14983774 -plasminogen n 1 1 @ 1 0 14983911 -plasminogen_activator n 1 1 @ 1 0 14984066 -plasmodial_slime_mold n 1 2 @ #m 1 0 12975804 -plasmodiidae n 1 2 @ #m 1 0 01424165 -plasmodiophora n 1 3 @ #m %m 1 0 12983404 -plasmodiophora_brassicae n 1 2 @ #m 1 0 12983654 -plasmodiophoraceae n 1 3 @ #m %m 1 0 12983217 -plasmodium n 2 2 @ #m 2 0 01428003 01424420 -plasmodium_vivax n 1 2 @ #m 1 0 01424420 -plassey n 1 2 @ ; 1 0 01291310 -plaster n 5 4 @ ~ %s + 5 1 14992287 14992613 03993403 03957567 03957420 -plaster_bandage n 1 1 @ 1 0 02979836 -plaster_cast n 1 1 @ 1 1 02979836 -plaster_of_paris n 1 3 @ ~ %s 1 1 14992613 -plaster_saint n 1 1 @ 1 1 10438952 -plasterboard n 1 2 @ ~ 1 0 03957762 -plasterer n 1 2 @ + 1 1 10438842 -plasterer's_float n 1 1 @ 1 0 03364599 -plastering n 1 3 @ ~ + 1 0 00718815 -plastering_trowel n 1 1 @ 1 0 03957991 -plasterwork n 1 2 @ ~ 1 0 03957567 -plastic n 2 3 @ ~ %p 2 1 14592610 13376012 -plastic_art n 1 2 @ ~ 1 0 03958097 -plastic_bag n 1 2 @ ~ 1 0 03958227 -plastic_bomb n 1 2 @ %s 1 0 03958338 -plastic_explosive n 1 2 @ #s 1 0 03958448 -plastic_film n 1 2 @ ~ 1 0 03339296 -plastic_laminate n 1 2 @ ~ 1 0 03958630 -plastic_surgeon n 1 1 @ 1 0 09967270 -plastic_surgery n 1 2 @ ~ 1 0 00690501 -plastic_wrap n 1 2 @ ~ 1 0 03958752 -plasticine n 1 2 @ ; 1 0 14592405 -plasticiser n 1 2 @ + 1 0 14593162 -plasticity n 1 3 @ ~ + 1 1 05021884 -plasticizer n 1 2 @ + 1 0 14593162 -plastics_industry n 1 1 @ 1 0 08069768 -plastid n 1 2 @ ~ 1 0 12962622 -plastination n 1 3 @ %p + 1 0 13538314 -plastique n 1 2 @ #s 1 0 03958448 -plastron n 5 3 @ #p ; 5 0 03959227 03959123 03959014 03958910 01904029 -plat n 1 1 @ 1 0 03959350 -plata_river n 1 2 @ #p 1 0 09410558 -plataea n 2 3 @ #p ; 2 0 08789447 01291517 -platalea n 1 3 @ #m %m 1 0 02006827 -platalea_leucorodia n 1 2 @ #m 1 0 02006985 -plataleidae n 1 3 @ #m %m 1 0 02006510 -platan n 1 4 @ ~ #m %s 1 0 12806732 -platanaceae n 1 3 @ #m %m 1 0 12806270 -platanistidae n 1 3 @ #m %m 1 0 02071905 -platanthera n 1 3 @ #m %m 1 0 12077732 -platanthera_bifolia n 1 2 @ #m 1 0 12077944 -platanthera_chlorantha n 1 2 @ #m 1 0 12078172 -platanthera_leucophea n 1 1 @ 1 0 12078451 -platanus n 1 3 @ #m %m 1 0 12806455 -platanus_acerifolia n 1 2 @ #m 1 0 12807251 -platanus_occidentalis n 1 2 @ #m 1 0 12807409 -platanus_orientalis n 1 2 @ #m 1 0 12807624 -platanus_racemosa n 1 2 @ #m 1 0 12807773 -platanus_wrightii n 1 2 @ #m 1 0 12808007 -plate n 15 5 @ ~ #p + ; 15 5 03528901 03959936 03960664 03959485 13768850 09395457 07657664 07579787 05581349 03960950 03960783 03960490 03960374 03959701 03176386 -plate_armor n 1 2 @ ~ 1 0 02740764 -plate_armour n 1 2 @ ~ 1 0 02740764 -plate_glass n 1 3 @ ~ %s 1 0 03961070 -plate_iron n 1 2 @ ~ 1 0 03961250 -plate_rack n 1 1 @ 1 0 03961711 -plate_rail n 1 1 @ 1 0 03961828 -plate_tectonic_theory n 1 2 @ - 1 0 06118370 -plate_tectonics n 1 2 @ - 1 0 06118370 -plateau n 1 2 @ ~ 1 0 09453008 -plateau_striped_whiptail n 1 1 @ 1 0 01686220 -plateful n 1 1 @ 1 0 13768850 -platelayer n 1 1 @ 1 0 10439087 -platelet n 1 1 @ 1 0 15023959 -plateletpheresis n 1 1 @ 1 0 00650402 -platen n 3 1 @ 3 0 03961630 03961503 03961394 -plater n 1 3 @ ~ + 1 0 10439203 -platform n 5 4 @ ~ %p ; 5 2 03961939 06501311 03962685 03962525 03025250 -platform_bed n 1 1 @ 1 0 03962852 -platform_rocker n 1 1 @ 1 0 03962932 -plath n 1 1 @ 1 0 11239143 -platichthys n 1 3 @ #m %m 1 0 02658670 -platichthys_flesus n 1 2 @ #m 1 0 02658811 -plating n 2 3 @ ~ + 2 0 03963028 00719016 -platinum n 1 1 @ 1 1 14649543 -platinum_black n 1 1 @ 1 0 14984244 -platinum_blond n 1 1 @ 1 0 10439373 -platinum_blonde n 1 1 @ 1 0 10439373 -platinum_thermometer n 1 1 @ 1 0 04079746 -platitude n 1 2 @ + 1 0 07154046 -platitudinarian n 1 1 @ 1 0 10439523 -plato n 1 3 @ #m + 1 1 11239271 -plato's_academy n 1 1 @ 1 0 08279943 -platonic_body n 1 2 @ ~ 1 0 13915999 -platonic_solid n 1 2 @ ~ 1 0 13915999 -platonic_year n 1 1 @ 1 0 15233614 -platonism n 1 3 @ + ; 1 1 05974564 -platonist n 1 2 @ + 1 1 10439629 -platoon n 3 4 @ #m %p ; 3 2 08214470 08214698 08215044 -platt_national_park n 1 2 @ #p 1 0 08608505 -plattdeutsch n 1 2 @ ~ 1 0 06952249 -platte n 1 2 @ #p 1 0 09395592 -platte_river n 1 2 @ #p 1 0 09395592 -platte_river_penstemon n 1 2 @ #m 1 0 12885754 -plattensee n 1 2 @ #p 1 0 09212935 -platter n 2 3 @ ~ %p 2 0 03963198 03924069 -platy n 1 2 @ #m 1 0 01449712 -platycephalidae n 1 3 @ #m %m 1 0 02649400 -platycerium n 1 3 @ #m %m 1 0 13177354 -platycerium_alcicorne n 1 2 @ #m 1 0 13177884 -platycerium_andinum n 1 1 @ 1 0 13177768 -platycerium_bifurcatum n 1 2 @ #m 1 0 13177884 -platycladus_orientalis n 1 2 @ #m 1 0 11644462 -platyctenea n 1 3 @ #m %m 1 0 01919912 -platyctenean n 1 2 @ #m 1 0 01920051 -platyhelminth n 1 4 @ ~ #m %p 1 0 01924916 -platyhelminthes n 1 3 @ #m %m 1 0 01924590 -platylobium n 1 3 @ #m %m 1 0 12561696 -platylobium_formosum n 1 2 @ #m 1 0 12561897 -platymiscium n 1 3 @ #m %m 1 0 12562420 -platymiscium_pinnatum n 1 1 @ 1 0 12563045 -platymiscium_trinitatis n 1 1 @ 1 0 12562785 -platypoecilus n 1 3 @ #m %m 1 0 01449586 -platypoecilus_maculatus n 1 2 @ #m 1 0 01449712 -platypus n 1 2 @ #m 1 0 01873310 -platyrrhine n 1 4 @ ~ #m + 1 0 02489589 -platyrrhini n 1 3 @ #m %m 1 0 02489288 -platyrrhinian n 1 3 @ ~ #m 1 0 02489589 -platysma n 1 1 @ 1 0 05294374 -platystemon n 1 3 @ #m %m 1 0 11907267 -platystemon_californicus n 1 2 @ #m 1 0 11907405 -plaudit n 1 1 @ 1 0 06691684 -plaudits n 1 1 @ 1 0 06691684 -plausibility n 1 4 ! @ ~ + 1 0 04783724 -plausibleness n 1 3 @ ~ + 1 0 04783724 -plautus n 2 3 @ #m %m 2 0 11239443 02046045 -plautus_alle n 1 2 @ #m 1 0 02046171 -plavix n 1 2 @ ; 1 0 03048598 -play n 17 6 @ ~ #p %p + ; 17 8 07007945 07018931 00557588 00556313 14009763 00947596 00786887 00431893 15256915 13993842 07411851 06780882 04774511 00511817 00457382 00430140 00041468 -play-actor n 1 1 @ 1 0 09840050 -play-box n 1 2 @ ; 1 0 03963483 -play_group n 1 1 @ 1 0 08412362 -play_list n 1 1 @ 1 0 06494016 -play_reading n 1 1 @ 1 0 06893183 -play_therapy n 1 1 @ 1 0 00704159 -playacting n 1 4 @ ~ #p + 1 1 00548326 -playactor n 1 2 @ + 1 0 09840050 -playback n 2 3 @ #p + 2 1 01020770 03963294 -playbill n 1 1 @ 1 0 06748703 -playbook n 3 1 @ 3 0 06416766 06416598 05907479 -playbox n 1 2 @ ; 1 0 03963483 -playboy n 1 1 @ 1 0 10439727 -playday n 1 1 @ 1 0 15138600 -player n 5 5 @ ~ #m + ; 5 3 10439851 10340312 09765278 10440580 10440387 -player_piano n 1 1 @ 1 0 03738066 -playfellow n 1 1 @ 1 0 10441037 -playfulness n 3 4 @ ~ = + 3 0 07512039 04649261 00429949 -playgoer n 1 3 @ ~ #m 1 0 10440717 -playground n 2 3 @ ~ %p 2 1 08640739 03963645 -playground_ball n 1 1 @ 1 0 04256891 -playground_slide n 1 2 @ #p 1 0 04238128 -playhouse n 1 2 @ ~ 1 0 03963813 -playing n 3 4 @ ~ #p + 3 2 00101191 00041188 00548326 -playing_area n 1 4 @ ~ #p %p 1 0 08570758 -playing_card n 1 4 @ ~ #m %p 1 0 03963982 -playing_field n 2 4 @ ~ #p %p 2 0 13943740 08570758 -playing_period n 1 5 @ ~ #p %p ; 1 0 15256915 -playlet n 1 2 @ + 1 0 07009538 -playlist n 1 1 @ 1 0 06494016 -playlobium_obtusangulum n 1 2 @ #m 1 0 12562141 -playmaker n 1 1 @ 1 0 10440886 -playmate n 1 1 @ 1 1 10441037 -playoff n 1 4 @ ~ %p + 1 0 07465290 -playoff_game n 1 2 @ #p 1 1 00461162 -playpen n 1 1 @ 1 0 03964495 -playroom n 1 1 @ 1 0 04119478 -playschool n 1 1 @ 1 0 08412362 -playscript n 1 2 @ ~ 1 0 07009946 -playsuit n 1 1 @ 1 0 03964611 -plaything n 1 2 @ ~ 1 0 03964744 -playtime n 1 1 @ 1 0 15138600 -playwright n 1 2 @ ~ 1 1 10030277 -plaza n 2 2 @ %p 2 0 08619795 03965456 -plea n 3 4 @ ~ #p ; 3 0 07187638 06561138 01197928 -plea_bargain n 1 3 @ + ; 1 0 06563950 -plea_bargaining n 1 3 @ + ; 1 0 06563950 -plea_of_insanity n 1 2 @ ; 1 0 06561744 -pleader n 1 3 @ + ; 1 0 09775663 -pleading n 1 5 @ ~ %p + ; 1 0 06559365 -pleading_in_the_alternative n 1 2 @ ; 1 0 06560021 -pleasance n 2 3 @ ~ + 2 0 08643806 07490713 -pleasant_island n 1 3 @ #p %p 1 0 08841209 -pleasantness n 2 5 ! @ ~ = + 2 0 07492170 04778630 -pleasantry n 1 1 @ 1 0 00515297 -pleaser n 1 2 @ + 1 0 10441124 -pleasing n 1 2 @ + 1 0 01073556 -pleasingness n 2 2 ! @ 2 0 04995421 04684872 -pleasure n 5 4 ! @ ~ + 5 2 07490713 05829782 05790452 01071746 00846326 -pleasure-pain_principle n 1 2 @ ; 1 0 05871792 -pleasure-unpleasure_principle n 1 2 @ ; 1 0 05871792 -pleasure_boat n 1 1 @ 1 0 02932891 -pleasure_craft n 1 1 @ 1 0 02932891 -pleasure_ground n 1 3 @ ~ %p 1 0 08494231 -pleasure_principle n 1 3 ! @ ; 1 0 05871792 -pleasure_seeker n 1 2 @ ~ 1 0 10168183 -pleasure_trip n 1 2 @ ~ 1 0 00311809 -pleat n 1 3 @ ~ + 1 1 03965907 -pleating n 1 2 @ + 1 0 00406800 -pleb n 1 4 @ ~ #m + 1 0 10441251 -plebe n 1 3 @ ~ ; 1 0 09886540 -plebeian n 1 4 @ ~ #m + 1 0 10441251 -plebiscite n 1 1 @ 1 0 00181495 -plecoptera n 1 3 @ #m %m 1 0 02262679 -plecopteran n 1 2 @ #m 1 0 02262803 -plecotus n 1 3 @ #m %m 1 0 02148698 -plecotus_townsendi n 1 1 @ 1 0 02148991 -plectania n 1 2 @ #m 1 0 13031007 -plectognath n 1 3 @ ~ #m 1 0 02652668 -plectognath_fish n 1 3 @ ~ #m 1 0 02652668 -plectognathi n 1 3 @ #m %m 1 0 02652335 -plectomycetes n 1 3 @ #m %m 1 0 13026529 -plectophera n 1 1 @ 1 0 02262062 -plectorrhiza n 1 3 @ #m %m 1 0 12078596 -plectranthus n 1 2 @ #m 1 0 12862512 -plectranthus_amboinicus n 1 1 @ 1 0 12845187 -plectron n 1 2 @ ~ 1 0 03929660 -plectrophenax n 1 3 @ #m %m 1 0 01538498 -plectrophenax_nivalis n 1 2 @ #m 1 0 01538630 -plectrum n 1 2 @ ~ 1 0 03929660 -pledge n 4 3 @ ~ + 4 0 13350702 10441410 07884413 07227772 -pledge_taker n 1 1 @ 1 0 10441819 -pledgee n 1 2 @ ~ 1 0 10441534 -pledger n 1 2 @ + 1 0 10441694 -pleiades n 2 4 @ #m %m ; 2 0 09549758 09395763 -pleione n 1 3 @ #m %m 1 0 12078954 -pleiospilos n 1 3 @ #m %m 1 0 11821777 -pleistocene n 1 2 @ #p 1 0 15124864 -pleistocene_epoch n 1 2 @ #p 1 0 15124864 -plenipotentiary n 1 1 @ 1 0 10441962 -plenitude n 1 1 @ 1 1 05115568 -plenteousness n 1 2 @ + 1 0 05115568 -plentifulness n 1 2 @ + 1 0 05115568 -plentitude n 1 1 @ 1 0 05115568 -plenty n 2 3 @ ~ + 2 2 05115568 13774404 -plenum n 2 2 @ + 2 0 08309854 03966206 -pleochroism n 1 2 @ ~ 1 0 11491619 -pleomorphic_rhabdomyosarcoma n 1 1 @ 1 0 14245928 -pleomorphic_rhabdosarcoma n 1 1 @ 1 0 14245928 -pleomorphism n 2 4 @ ~ + ; 2 0 11492833 11491816 -pleonasm n 1 2 @ + 1 0 07091087 -pleonaste n 1 1 @ 1 0 15051503 -pleopod n 1 2 @ #p 1 0 02585446 -plesianthropus n 1 2 @ #m 1 0 02476074 -plesiosaur n 1 2 @ #m 1 0 01725713 -plesiosauria n 1 3 @ #m %m 1 0 01725427 -plesiosaurus n 1 2 @ #m 1 0 01725713 -plessimeter n 1 1 @ 1 0 03966582 -plessor n 1 2 @ ; 1 0 03966751 -plethodon n 1 3 @ #m %m 1 0 01635964 -plethodon_cinereus n 1 2 @ #m 1 0 01636352 -plethodon_vehiculum n 1 2 @ #m 1 0 01636510 -plethodont n 1 2 @ #m 1 0 01636127 -plethodontidae n 1 3 @ #m %m 1 0 01635659 -plethora n 1 3 @ ~ + 1 0 05120116 -plethysmograph n 1 2 @ ~ 1 0 03966325 -pleura n 1 4 @ ~ #p + 1 1 05388115 -pleural_cavity n 1 2 @ %p 1 0 05388527 -pleural_space n 1 1 @ 1 0 05388665 -pleuralgia n 1 1 @ 1 0 14330046 -pleurisy n 1 2 @ ~ 1 0 14173013 -pleurisy_root n 1 1 @ 1 0 13235503 -pleurobrachia n 1 3 @ #m %m 1 0 01920302 -pleurobrachiidae n 1 2 @ #m 1 0 01920178 -pleurocarp n 1 3 ! @ + 1 0 11539467 -pleurocarpous_moss n 1 1 @ 1 0 11539467 -pleurodont n 1 1 @ 1 0 01325060 -pleurodynia n 1 1 @ 1 0 14330046 -pleuronectes n 1 3 @ #m %m 1 0 02658381 -pleuronectes_platessa n 1 3 @ #m %p 1 0 02658531 -pleuronectidae n 1 3 @ #m %m 1 0 02657805 -pleuropneumonia n 1 1 @ 1 0 14173295 -pleuropneumonialike_organism n 1 1 @ 1 0 01374063 -pleurosorus n 1 2 @ #m 1 0 13183669 -pleurothallis n 1 2 @ #m 1 0 12079523 -pleurotus n 1 3 @ #m %m 1 0 13007195 -pleurotus_ostreatus n 1 2 @ #m 1 0 13007417 -pleurotus_phosphoreus n 1 2 @ #m 1 0 13007629 -pleven n 1 2 @ ; 1 0 01291674 -plevna n 1 2 @ ; 1 0 01291674 -plexiglas n 1 2 @ ; 1 0 14594174 -plexiglass n 1 1 @ 1 0 14594174 -pleximeter n 1 1 @ 1 0 03966582 -pleximetry n 1 1 @ 1 0 00876239 -plexor n 1 2 @ ; 1 0 03966751 -plexus n 1 2 @ ~ 1 0 05236322 -plexus_autonomici n 1 1 @ 1 0 05236709 -plexus_brachialis n 1 1 @ 1 0 05506034 -plexus_cardiacus n 1 1 @ 1 0 05506229 -plexus_caroticus n 1 1 @ 1 0 05506369 -plexus_celiacus n 1 2 @ #p 1 0 05508735 -plexus_cervicalis n 1 1 @ 1 0 05506507 -plexus_choroideus n 1 2 @ %p 1 0 05506648 -plexus_coccygeus n 1 1 @ 1 0 05506832 -plexus_dentalis n 1 1 @ 1 0 05508113 -plexus_hypogastricus n 1 1 @ 1 0 05506976 -plexus_lumbalis n 2 1 @ 2 0 05507268 05507109 -plexus_mesentericus n 1 1 @ 1 0 05507642 -plexus_myentericus n 1 1 @ 1 0 05507756 -plexus_periarterialis n 1 1 @ 1 0 05507977 -plexus_pulmonalis n 1 1 @ 1 0 05508403 -plexus_sacralis n 1 1 @ 1 0 05508534 -plf n 1 2 @ ; 1 0 08037503 -pliability n 2 3 @ ~ + 2 0 05022709 04659730 -pliancy n 2 2 @ + 2 0 05023022 04659730 -pliantness n 2 2 @ + 2 0 05023022 04659730 -plica n 1 2 @ ~ 1 0 05492259 -plica_vocalis n 1 3 @ ~ #p 1 0 05530429 -plication n 2 3 @ ~ + 2 0 13907415 00406800 -plicatoperipatus n 1 3 @ #m %m 1 0 02000354 -plicatoperipatus_jamaicensis n 1 2 @ #m 1 0 02000502 -plier n 1 2 @ + 1 0 10442093 -pliers n 1 4 @ ~ %p ; 1 0 03966976 -plight n 2 3 @ ~ + 2 1 14408646 07228105 -plimsoll n 2 2 @ ; 2 0 08596336 03967270 -plimsoll_line n 1 1 @ 1 0 08596336 -plimsoll_mark n 1 1 @ 1 0 08596336 -plinian_eruption n 1 1 @ 1 0 07405652 -plinth n 1 4 @ ~ #p %p 1 0 03903868 -pliny n 2 1 @ 2 0 11239765 11239567 -pliny_the_elder n 1 1 @ 1 0 11239567 -pliny_the_younger n 1 1 @ 1 0 11239765 -pliocene n 1 2 @ #p 1 0 15125323 -pliocene_epoch n 1 2 @ #p 1 0 15125323 -plo n 1 3 @ %m ; 1 0 08320385 -ploce n 1 2 @ ; 1 0 07100387 -ploceidae n 1 3 @ #m %m 1 0 01542567 -ploceus n 1 2 @ #m 1 0 01543059 -ploceus_philippinus n 1 1 @ 1 0 01543175 -plod n 1 1 @ 1 0 00291965 -plodder n 3 2 @ + 3 0 10731848 10442417 10442232 -plodding n 2 2 @ + 2 1 00621476 00291965 -plonk n 2 3 @ + ; 2 0 07896994 07389931 -plop n 1 2 @ + 1 0 07390049 -plosion n 1 2 @ #p 1 0 07116443 -plosive n 1 3 @ ~ %p 1 0 07115914 -plosive_consonant n 1 3 @ ~ %p 1 0 07115914 -plosive_speech_sound n 1 3 @ ~ %p 1 0 07115914 -plot n 4 3 @ ~ + 4 3 05907682 08674739 06373314 07000065 -plot_element n 1 2 @ ~ 1 0 05865652 -plot_line n 1 1 @ 1 0 06373645 -plot_of_ground n 1 2 @ ~ 1 0 08674739 -plot_of_land n 1 2 @ ~ 1 0 08674739 -plotinus n 1 1 @ 1 0 11239989 -plott_hound n 1 1 @ 1 0 02090253 -plotter n 4 5 @ ~ #m + ; 4 0 10556518 10442573 09958892 03967396 -plough n 2 4 @ ~ #p + 2 0 09219858 03967562 -plough_horse n 1 1 @ 1 0 02382338 -ploughboy n 1 1 @ 1 0 10442705 -ploughing n 1 2 @ + 1 0 00918644 -ploughland n 1 2 @ ~ 1 0 09260907 -ploughman n 1 1 @ 1 0 10442815 -ploughman's_lunch n 1 2 @ ; 1 0 07577772 -ploughshare n 1 2 @ #p 1 0 03967788 -ploughwright n 1 1 @ 1 0 10442923 -plovdiv n 1 2 @ #p 1 0 08714795 -plover n 1 3 @ ~ #m 1 0 02023341 -plow n 1 3 @ ~ + 1 1 03967562 -plow_horse n 1 1 @ 1 0 02382338 -plowboy n 1 1 @ 1 0 10442705 -plower n 1 2 @ + 1 0 10442815 -plowing n 1 2 @ + 1 1 00918644 -plowland n 1 2 @ ~ 1 0 09260907 -plowman n 1 1 @ 1 0 10442815 -plowshare n 1 2 @ #p 1 1 03967788 -plowwright n 1 1 @ 1 0 10442923 -ploy n 2 1 @ 2 0 06765531 00172490 -pluck n 2 2 @ + 2 1 04859816 00116008 -pluckiness n 1 2 @ + 1 0 04859816 -plug n 7 4 @ ~ #p + 7 1 03967942 07579399 07248507 04269270 03968293 03346898 02382204 -plug-in n 1 2 @ ~ 1 0 03033986 -plug-ugly n 1 2 @ ~ 1 1 10717921 -plug_fuse n 1 1 @ 1 0 03968479 -plug_hat n 1 1 @ 1 0 02881757 -plugboard n 1 2 @ #p 1 0 04373264 -plugger n 1 3 @ ~ + 1 0 10482220 -plughole n 1 2 @ ; 1 0 03968581 -plum n 3 5 @ ~ #m #p %p 3 0 12638218 07751451 00596081 -plum-fruited_yew n 1 2 @ #m 1 0 11658709 -plum-yew n 1 2 @ #m 1 0 11648776 -plum-yew_family n 1 3 @ #m %m 1 0 11648428 -plum_duff n 1 1 @ 1 0 07618119 -plum_pudding n 1 1 @ 1 0 07617708 -plum_sauce n 1 1 @ 1 0 07832099 -plum_tomato n 2 1 @ 2 0 12906214 07734417 -plum_tree n 1 4 @ ~ #m %p 1 0 12638218 -plumage n 1 5 @ ~ #p %s %p 1 0 01896031 -plumb n 1 3 @ #p + 1 0 03968728 -plumb_bob n 1 2 @ #p 1 0 03968728 -plumb_level n 1 1 @ 1 0 03969510 -plumb_line n 1 3 @ ~ %p 1 1 03969627 -plumb_rule n 1 1 @ 1 0 03969902 -plumbaginaceae n 1 4 @ #m %m + 1 0 12097927 -plumbaginales n 1 2 @ #m 1 0 12097746 -plumbago n 2 3 @ ~ #m 2 0 14796575 12098403 -plumbago_europaea n 1 2 @ #m 1 0 12098524 -plumber n 1 1 @ 1 1 10443032 -plumber's_helper n 1 1 @ 1 0 03970156 -plumber's_snake n 1 1 @ 1 0 03968886 -plumbery n 1 2 @ #p 1 0 00609669 -plumbing n 3 4 @ #p %p + 3 2 03969041 00609669 00999089 -plumbing_fixture n 1 3 @ ~ #p 1 0 03969259 -plumbing_system n 1 2 @ %p 1 0 03969041 -plumbism n 1 1 @ 1 0 14069895 -plumcot n 2 4 @ #m #p %p 2 0 12640435 07768590 -plumcot_tree n 1 3 @ #m %p 1 0 12640435 -plume n 3 6 @ ~ #p %s %p + 3 0 13900760 03969998 01896031 -plume_grass n 1 3 @ ~ #m 1 0 12121033 -plume_poppy n 1 2 @ #m 1 0 11906514 -plume_thistle n 1 3 @ ~ #m 1 0 11953884 -plumed_scorpionfish n 1 2 @ #m 1 0 02643316 -plumed_thistle n 1 3 @ ~ #m 1 0 11953884 -plumed_tussock n 1 1 @ 1 0 12115383 -plumeria n 1 3 @ #m %m 1 0 11774279 -plumeria_acutifolia n 1 1 @ 1 0 11774795 -plumeria_alba n 1 1 @ 1 0 11774972 -plumiera n 1 3 @ #m %m 1 0 11774279 -plummet n 1 2 @ #p 1 0 03968728 -plump n 1 2 @ + 1 0 07390205 -plumpness n 1 3 @ ~ + 1 1 05000913 -plumule n 1 1 @ 1 0 01897146 -plunder n 1 3 @ %p + 1 1 13262663 -plunderage n 1 2 @ + 1 0 00777439 -plunderer n 1 4 @ ~ + ; 1 0 10443170 -plundering n 1 3 @ ~ + 1 0 00965895 -plunge n 2 2 @ + 2 1 00442847 07434209 -plunger n 4 5 @ ~ #p %p + 4 0 10634075 10019406 03970156 03948950 -plunk n 2 3 @ + ; 2 0 07390307 00132219 -plunker n 1 2 @ ; 1 1 00132219 -pluperfect n 1 1 @ 1 0 13806735 -pluperfect_tense n 1 1 @ 1 0 13806735 -plural n 1 3 ! @ - 1 0 06295235 -plural_form n 1 2 @ - 1 0 06295235 -pluralisation n 1 2 @ + 1 0 13804507 -pluralism n 3 3 ! @ + 3 0 08367683 05965749 00412130 -pluralist n 3 2 @ + 3 0 10443830 10443659 10443482 -plurality n 3 3 @ + ; 3 0 14569844 13775093 13581218 -pluralization n 1 2 @ + 1 0 13804507 -plus n 2 2 @ ~ 2 0 05154517 00872107 -plus_fours n 1 2 @ ; 1 0 03970363 -plus_sign n 1 1 @ 1 0 06811986 -plush n 1 2 @ + 1 0 03970546 -plutarch n 1 1 @ 1 0 11240139 -pluteaceae n 1 3 @ #m %m 1 0 13019017 -pluteus n 1 3 @ #m %m 1 0 13019202 -pluteus_aurantiorugosus n 1 2 @ #m 1 0 13019496 -pluteus_cervinus n 1 2 @ #m 1 0 13019835 -pluteus_magnus n 1 2 @ #m 1 0 13019643 -pluto n 3 3 @ #m ; 3 0 09603258 09570298 09395899 -plutocracy n 1 2 @ + 1 0 08362775 -plutocrat n 1 1 @ 1 0 10443955 -pluton n 1 3 @ ~ + 1 0 14932303 -plutonic_rock n 1 2 @ ~ 1 0 14932303 -plutonium n 1 2 @ ~ 1 0 14649775 -plutonium_239 n 1 2 @ ~ 1 0 14650137 -plutonium_bomb n 1 3 @ ~ %p 1 0 02753044 -plutonium_pit n 1 2 @ #p 1 0 03970673 -plutonium_trigger n 1 2 @ #p 1 0 03970673 -pluvialis n 1 3 @ #m %m 1 0 02024353 -pluvianus n 1 3 @ #m %m 1 0 02039660 -pluvianus_aegyptius n 1 2 @ #m 1 0 02039780 -pluviometer n 1 1 @ 1 0 04049585 -pluviose n 1 2 @ #p 1 0 15176630 -ply n 2 2 @ ; 2 0 03971040 03970884 -plyboard n 1 1 @ 1 0 03971218 -plyer n 1 2 @ + 1 0 10442093 -plyers n 1 4 @ ~ %p ; 1 0 03966976 -plymouth n 1 3 @ #p %p 1 0 09098721 -plymouth_colony n 1 2 @ #p 1 0 09098885 -plymouth_rock n 2 2 @ #p 2 0 09099098 01790304 -plywood n 1 1 @ 1 0 03971218 -plzen n 1 2 @ #p 1 0 08757791 -pm n 4 2 @ #m 4 1 00141396 14651479 09907196 06281848 -pms n 1 1 @ 1 0 14308311 -pneumatic_caisson n 1 1 @ 1 0 02937093 -pneumatic_drill n 1 1 @ 1 0 03971321 -pneumatic_hammer n 1 1 @ 1 0 02689434 -pneumatic_tire n 1 4 @ ~ #p %p 1 0 03971422 -pneumatic_tyre n 1 4 @ ~ #p %p 1 0 03971422 -pneumatics n 1 1 @ 1 0 06113170 -pneumatophore n 1 1 @ 1 0 13125882 -pneumococcal_pneumonia n 1 1 @ 1 0 14149167 -pneumococcal_vaccine n 1 1 @ 1 0 03971771 -pneumococcus n 1 2 @ + 1 0 01380754 -pneumoconiosis n 1 3 @ ~ %p 1 0 14149963 -pneumocystis_carinii_pneumonia n 1 1 @ 1 0 14149290 -pneumocystis_pneumonia n 1 1 @ 1 0 14149290 -pneumocytosis n 1 1 @ 1 0 14149290 -pneumoencephalogram n 1 1 @ 1 0 03285730 -pneumogastric n 1 2 @ + 1 0 05480076 -pneumogastric_nerve n 1 1 @ 1 0 05480076 -pneumonectomy n 1 1 @ 1 0 00687135 -pneumonia n 1 3 @ ~ + 1 1 14147627 -pneumonic_plague n 1 1 @ 1 0 14139661 -pneumonitis n 1 1 @ 1 0 14353995 -pneumonoconiosis n 1 3 @ ~ %p 1 0 14149963 -pneumothorax n 1 1 @ 1 0 14149536 -pneumovax n 1 2 @ ; 1 0 03971771 -pnom_penh n 1 2 @ #p 1 0 08717059 -po n 4 3 @ ~ #p 4 0 14650556 10420809 09396150 08145277 -po_box n 1 1 @ 1 0 03990210 -po_box_no n 1 1 @ 1 0 08491531 -po_box_number n 1 1 @ 1 0 08491531 -po_hai n 1 2 @ #p 1 0 09226209 -po_river n 1 2 @ #p 1 0 09396150 -poa n 1 3 @ #m %m 1 0 12131216 -poa_nemoralis n 1 2 @ #m 1 0 12132092 -poa_pratensis n 1 2 @ #m 1 0 12131767 -poaceae n 1 4 @ ~ #m %m 1 0 12100538 -poached_egg n 1 1 @ 1 0 07842202 -poacher n 3 4 @ ~ #m + 3 0 10444058 03972372 02647660 -poaching n 1 2 @ + 1 0 00247342 -pob n 1 1 @ 1 0 03990210 -pobeda_peak n 1 2 @ #p 1 0 09396275 -pobedy_peak n 1 2 @ #p 1 0 09396275 -pocahontas n 1 1 @ 1 0 11240249 -pocatello n 1 2 @ #p 1 0 09082158 -pochard n 1 2 @ #m 1 0 01851038 -pock n 1 3 @ #p + 1 0 14334511 -pocket n 9 6 @ ~ #p %p + ; 9 3 03972524 13914473 13356774 13911660 13894306 11423028 07950090 05516848 03972799 -pocket-handkerchief n 1 1 @ 1 0 03973520 -pocket_battleship n 1 1 @ 1 0 03973003 -pocket_billiards n 1 3 @ ~ %p 1 0 00501080 -pocket_book n 1 1 @ 1 0 03973170 -pocket_borough n 1 1 @ 1 0 08540266 -pocket_bread n 1 3 @ #p ; 1 0 07683617 -pocket_calculator n 1 1 @ 1 0 03483823 -pocket_comb n 1 1 @ 1 0 03973285 -pocket_dictionary n 1 1 @ 1 0 06419912 -pocket_edition n 1 1 @ 1 0 03973170 -pocket_flap n 1 2 @ #p 1 0 03973402 -pocket_flask n 1 1 @ 1 0 03521675 -pocket_gopher n 1 3 @ ~ #m 1 0 02353861 -pocket_knife n 1 2 @ ~ 1 0 03973628 -pocket_lighter n 1 1 @ 1 0 03031422 -pocket_money n 1 1 @ 1 0 13422545 -pocket_mouse n 1 3 @ ~ #m 1 0 02348788 -pocket_rat n 1 2 @ ~ 1 0 02331309 -pocket_veto n 1 1 @ 1 0 00209680 -pocket_watch n 1 1 @ 1 0 03973839 -pocketbook n 4 3 @ ~ %p 4 0 13354021 04548362 03973170 02774152 -pocketbook_issue n 1 1 @ 1 0 05815267 -pocketcomb n 1 1 @ 1 0 03973285 -pocketed_bat n 1 1 @ 1 0 02149861 -pocketed_freetail_bat n 1 1 @ 1 0 02149861 -pocketful n 1 1 @ 1 1 13768946 -pocketknife n 1 2 @ ~ 1 0 03973628 -pockmark n 1 1 @ 1 0 14364065 -pod n 4 5 @ ~ #p %m + 4 0 13140049 13139055 07995164 03973945 -podalgia n 1 1 @ 1 0 14330201 -podalyria n 1 2 @ #m 1 0 12563404 -podargidae n 1 3 @ #m %m 1 0 01836809 -podargus n 1 2 @ #m 1 0 01836953 -podaxaceae n 1 2 @ ~ 1 0 12970193 -podetium n 1 2 @ ~ 1 0 11534161 -podiatrist n 1 2 @ + 1 0 09919297 -podiatry n 1 2 @ + 1 0 06062076 -podiceps n 1 3 @ #m %m 1 0 02049855 -podiceps_cristatus n 1 1 @ 1 0 02050313 -podiceps_grisegena n 1 1 @ 1 0 02050442 -podiceps_nigricollis n 1 1 @ 1 0 02050586 -podiceps_ruficollis n 1 1 @ 1 0 02050809 -podicipedidae n 1 3 @ #m %m 1 0 02049672 -podicipediformes n 1 3 @ #m %m 1 0 02049299 -podicipitiform_seabird n 1 3 @ ~ #m 1 0 02049532 -podicipitiformes n 1 3 @ #m %m 1 0 02049299 -podilymbus n 1 3 @ #m %m 1 0 02050921 -podilymbus_podiceps n 1 2 @ #m 1 0 02051059 -podium n 1 1 @ 1 0 03159640 -podocarp n 1 2 @ #m 1 0 11652039 -podocarpaceae n 1 3 @ #m %m 1 0 11651259 -podocarpus n 1 3 @ #m %m 1 0 11651731 -podocarpus_amara n 1 2 @ #m 1 0 11659627 -podocarpus_coriaceus n 1 2 @ #m 1 0 11652217 -podocarpus_dacrydioides n 1 1 @ 1 0 11653904 -podocarpus_elatus n 1 2 @ #m 1 0 11652376 -podocarpus_elongatus n 1 2 @ #m 1 0 11652578 -podocarpus_family n 1 3 @ #m %m 1 0 11651259 -podocarpus_ferruginea n 1 2 @ #m 1 0 11658331 -podocarpus_latifolius n 1 2 @ #m 1 0 11652753 -podocarpus_nivalis n 1 2 @ #m 1 0 11652966 -podocarpus_spicata n 1 2 @ #m 1 0 11658544 -podocarpus_totara n 1 2 @ #m 1 0 11653126 -podophyllum n 1 3 @ #m %m 1 0 11699915 -podophyllum_peltatum n 1 3 @ #m %p 1 0 11700058 -podsol n 1 1 @ 1 0 14993137 -podsol_soil n 1 1 @ 1 0 14993137 -podsolic_soil n 1 1 @ 1 0 14993137 -podzol n 1 1 @ 1 0 14993137 -podzol_soil n 1 1 @ 1 0 14993137 -poe n 1 1 @ 1 0 11240480 -poeciliid n 1 3 @ ~ #m 1 0 01448951 -poeciliid_fish n 1 3 @ ~ #m 1 0 01448951 -poeciliidae n 1 3 @ #m %m 1 0 01448767 -poecilocapsus n 1 3 @ #m %m 1 0 02237730 -poecilocapsus_lineatus n 1 2 @ #m 1 0 02237868 -poecilogale n 1 3 @ #m %m 1 0 02443683 -poecilogale_albinucha n 1 1 @ 1 0 02443959 -poem n 1 3 @ ~ %p 1 1 06377442 -poenology n 1 1 @ 1 0 06152460 -poephila n 1 3 @ #m %m 1 0 01544067 -poephila_castanotis n 1 2 @ #m 1 0 01544389 -poesy n 1 3 @ ~ - 1 0 07092592 -poet n 1 3 @ ~ + 1 1 10444194 -poet-singer n 1 2 @ ~ 1 0 10099093 -poet_laureate n 2 1 @ 2 0 10447585 10447359 -poetess n 1 2 @ ~ 1 0 10447255 -poetic_justice n 1 1 @ 1 0 07294907 -poetic_license n 1 1 @ 1 0 13995016 -poetic_rhythm n 1 4 @ ~ #p ; 1 0 07093895 -poetics n 1 2 @ ~ 1 0 06169932 -poetiser n 1 2 @ + 1 0 10528493 -poetizer n 1 2 @ + 1 0 10528493 -poetry n 2 4 @ ~ + - 2 2 07092592 07093273 -pogey n 1 2 @ ; 1 0 01088304 -pogge n 1 2 @ #m 1 0 02648035 -pogo_stick n 1 1 @ 1 0 03974070 -pogonia n 1 2 @ #m 1 0 12079963 -pogonia_divaricata n 1 2 @ #m 1 0 12051514 -pogonia_rosea n 1 2 @ #m 1 0 12051792 -pogonion n 1 2 @ #p 1 0 05234737 -pogonip n 1 1 @ 1 0 11467543 -pogonophora n 1 3 @ #m %m 1 0 01928737 -pogonophoran n 1 2 @ #m 1 0 01928865 -pogostemon n 1 3 @ #m %m 1 0 12862648 -pogostemon_cablin n 1 2 @ #m 1 0 12862828 -pogrom n 1 1 @ 1 0 00421210 -pogy n 1 2 @ ; 1 0 01088304 -poi n 1 2 @ %s 1 0 07874531 -poignance n 1 2 @ + 1 0 13989443 -poignancy n 2 2 @ + 2 1 13989443 05211254 -poikilotherm n 1 2 @ + 1 0 01315581 -poilu n 2 1 @ 2 0 10447828 07590177 -poinciana n 2 2 @ #m 2 0 12498739 12489815 -poinciana_gilliesii n 1 2 @ #m 1 0 12489815 -poinciana_pulcherrima n 1 2 @ #m 1 0 12490054 -poinciana_regia n 1 2 @ #m 1 0 12494794 -poinsettia n 1 2 @ #m 1 0 12920204 -poinsettia_strain n 1 2 @ #m 1 0 02247655 -point n 26 5 @ ~ #p + ; 26 15 05865998 08620061 06606808 05817845 13939892 15180528 05984066 13902482 13911872 13610162 09396465 06482401 13794885 04731925 03974215 13830305 13712286 13400150 06843520 06822034 06812289 05071556 04732067 03974769 03974671 03213826 -point-and-shoot_camera n 1 1 @ 1 0 03974915 -point_after n 1 2 @ ; 1 0 00189257 -point_after_touchdown n 1 2 @ ; 1 0 00189257 -point_duty n 1 2 @ ; 1 0 01070566 -point_in_time n 1 2 @ ~ 1 0 15180528 -point_lace n 1 1 @ 1 0 03975788 -point_man n 2 1 @ 2 0 10448157 10448065 -point_mutation n 1 2 @ ; 1 0 07426406 -point_of_accumulation n 1 1 @ 1 0 13758556 -point_of_apoapsis n 1 5 ! @ ~ #p ; 1 0 08495617 -point_of_departure n 2 1 @ 2 0 08508834 00236194 -point_of_entry n 1 2 @ ~ 1 0 08638442 -point_of_honor n 1 1 @ 1 0 05672178 -point_of_intersection n 1 2 @ ~ 1 1 05866653 -point_of_no_return n 1 1 @ 1 0 05749042 -point_of_order n 1 1 @ 1 0 06667169 -point_of_periapsis n 1 5 ! @ ~ #p ; 1 0 08618379 -point_of_reference n 1 2 @ ~ 1 0 07258332 -point_of_view n 2 2 @ ~ 2 1 06210363 05076237 -point_source n 1 1 @ 1 0 08585298 -point_system n 3 3 @ ~ ; 3 1 05664640 13579166 06362628 -point_woman n 1 1 @ 1 0 10448455 -pointed-leaf_maple n 1 1 @ 1 0 12755559 -pointed_arch n 1 2 @ ~ 1 0 03975035 -pointedness n 2 3 ! @ + 2 0 05071556 04919011 -pointel n 1 2 @ ~ 1 0 03455355 -pointer n 4 5 @ ~ %p + ; 4 0 06818121 03975232 03150795 02099997 -pointillism n 2 2 @ + 2 0 08276053 03975419 -pointillist n 1 2 @ + 1 0 10447924 -pointing_out n 1 1 @ 1 1 06798472 -pointing_trowel n 1 1 @ 1 0 03975657 -pointlessness n 1 2 @ + 1 0 05174023 -pointrel n 1 2 @ ~ 1 0 03455355 -pointsman n 1 2 @ ; 1 0 10448322 -poise n 3 2 @ + 3 1 13715240 14003880 04904162 -poison n 2 3 @ ~ + 2 2 15032376 05166397 -poison-berry n 1 2 @ ~ 1 0 12896307 -poison_arrow_plant n 1 2 @ #m 1 0 11768505 -poison_ash n 1 2 @ #m 1 0 12766595 -poison_bush n 2 3 @ ~ #m 2 0 12529905 11751765 -poison_camas n 1 2 @ #m 1 0 12467433 -poison_dogwood n 1 2 @ #m 1 0 12766595 -poison_gas n 1 2 @ ~ 1 0 14993378 -poison_hemlock n 1 2 @ #m 1 0 12935609 -poison_ivy n 2 2 @ #m 2 0 14223492 12766869 -poison_mercury n 1 2 @ #m 1 0 12766869 -poison_milkweed n 1 1 @ 1 0 13235319 -poison_oak n 2 2 @ #m 2 0 14223638 12766869 -poison_parsley n 1 2 @ #m 1 0 12935609 -poison_pea n 1 2 @ #m 1 0 12529905 -poison_pill n 1 2 @ ~ 1 0 00176449 -poison_sumac n 2 2 @ #m 2 0 14223752 12766595 -poisonberry n 1 2 @ ~ 1 0 12896307 -poisoner n 1 2 @ + 1 0 10448568 -poisoning n 2 3 @ ~ + 2 0 14509712 00224738 -poisonous_nightshade n 1 2 @ #m 1 0 12894607 -poisonous_parasol n 1 2 @ #m 1 0 13013965 -poisonous_plant n 1 2 @ ~ 1 0 13100156 -poisonous_substance n 1 2 @ ~ 1 0 15032376 -poisson_distribution n 1 2 @ ; 1 0 06025854 -poitier n 1 1 @ 1 0 11240609 -poitiers n 1 2 @ ; 1 0 01291839 -poitou n 1 2 @ #p 1 0 08944224 -poitou-charentes n 1 2 @ #p 1 0 08944224 -poitrine_d'agneau n 1 1 @ 1 0 07667480 -poivrade n 1 1 @ 1 0 07839312 -poke n 5 4 @ ~ + ; 5 0 11855553 09993252 04122825 00334935 00134780 -poke_bonnet n 1 2 @ ~ 1 0 02869837 -poke_check n 1 1 @ 1 0 00563212 -poke_milkweed n 1 1 @ 1 0 13234519 -poker n 2 4 @ ~ + - 2 0 03975926 00494768 -poker_alumroot n 1 2 @ #m 1 0 12798632 -poker_chip n 1 2 @ ~ 1 0 03020416 -poker_face n 1 2 @ ; 1 0 04680133 -poker_game n 1 3 @ ~ - 1 0 00494768 -poker_hand n 1 2 @ ~ 1 0 07957655 -poker_heuchera n 1 2 @ #m 1 0 12798632 -poker_plant n 1 2 @ ~ 1 0 12437769 -pokeweed n 1 3 @ ~ #m 1 0 11855274 -pokeweed_family n 1 3 @ #m %m 1 0 11854760 -pokey n 1 2 @ ~ 1 0 03592245 -poking n 1 2 @ + 1 0 00334935 -pokomo n 1 1 @ 1 0 06995016 -poky n 1 2 @ ~ 1 0 03592245 -pol n 1 2 @ ~ 1 0 10450303 -polack n 1 1 @ 1 0 09727747 -poland n 1 5 @ #p %m %p - 1 1 08982587 -polanisia n 1 3 @ #m %m 1 0 11867070 -polanisia_dodecandra n 1 2 @ #m 1 0 11867311 -polanisia_graveolens n 1 2 @ #m 1 0 11867311 -polar_bear n 1 2 @ #m 1 0 02134084 -polar_body n 1 1 @ 1 0 05458703 -polar_circle n 1 2 @ ~ 1 0 08496655 -polar_coordinate n 1 1 @ 1 0 06011903 -polar_front n 1 2 @ ~ 1 0 11460829 -polar_glacier n 1 1 @ 1 0 09396608 -polar_hare n 1 2 @ #m 1 0 02327656 -polar_opposition n 1 1 @ 1 0 13856449 -polar_region n 1 2 @ ~ 1 0 08573258 -polar_star n 1 2 @ #m 1 0 09396712 -polar_zone n 1 2 @ ~ 1 0 08573258 -polarimeter n 1 1 @ 1 0 03976105 -polaris n 1 2 @ #m 1 0 09396712 -polarisation n 2 2 @ + 2 0 14002109 11492014 -polariscope n 1 1 @ 1 0 03976105 -polarity n 2 3 @ ~ + 2 2 13856110 13856574 -polarization n 2 2 @ + 2 2 11492014 14002109 -polarography n 1 2 @ + 1 0 00647147 -polaroid n 1 3 @ #p ; 1 0 03976268 -polaroid_camera n 1 2 @ ; 1 0 03976467 -polaroid_land_camera n 1 2 @ ; 1 0 03976467 -polder n 1 1 @ 1 0 09397001 -pole n 10 7 @ ~ #m #p %p + ; 10 3 03976657 09727627 05950559 13650921 13614679 08621099 08620881 04413151 03977158 03976960 -pole_bean n 1 2 @ ~ 1 0 12556656 -pole_horse n 2 1 @ 2 0 02388453 02387452 -pole_jump n 1 2 @ %p 1 0 07469772 -pole_jumper n 1 1 @ 1 0 10746931 -pole_jumping n 1 2 @ %p 1 0 07469772 -pole_position n 1 1 @ 1 0 08621283 -pole_star n 1 2 @ #m 1 0 09396712 -pole_vault n 1 2 @ %p 1 0 07469772 -pole_vaulter n 1 1 @ 1 0 10746931 -pole_vaulting n 1 2 @ %p 1 0 07469772 -poleax n 2 2 @ + 2 0 03977430 03977266 -poleaxe n 2 2 @ + 2 0 03977430 03977266 -polecat n 2 3 @ ~ #m 2 0 02445715 02443114 -polecat_weed n 1 2 @ #m 1 0 11792742 -polemic n 2 2 @ + 2 0 10448670 07183660 -polemicist n 1 1 @ 1 0 10448670 -polemics n 1 1 @ 1 0 06185458 -polemist n 1 1 @ 1 0 10448670 -polemoniaceae n 1 4 @ #m %m + 1 0 12808933 -polemoniales n 1 3 @ #m %m 1 0 12808227 -polemonium n 1 3 @ ~ #m 1 0 12809365 -polemonium_boreale n 1 1 @ 1 0 12810007 -polemonium_caeruleum n 1 1 @ 1 0 12809626 -polemonium_reptans n 1 1 @ 1 0 12809868 -polemonium_van-bruntiae n 1 1 @ 1 0 12809626 -polemonium_viscosum n 1 1 @ 1 0 12810151 -polenta n 1 3 @ %s ; 1 0 07703743 -poler n 1 1 @ 1 0 02387452 -polestar n 1 2 @ #m 1 0 09396712 -polianthes n 1 3 @ #m %m 1 0 12480233 -polianthes_tuberosa n 1 2 @ #m 1 0 12480456 -police n 1 4 @ ~ %m + 1 1 08209687 -police_academy n 1 1 @ 1 0 08279424 -police_action n 1 2 @ ; 1 0 00955806 -police_blotter n 1 1 @ 1 0 06502858 -police_boat n 1 1 @ 1 0 03977592 -police_captain n 1 2 @ ~ 1 1 09893015 -police_car n 1 2 @ ~ 1 1 03141065 -police_chief n 1 2 @ ~ 1 1 09893015 -police_commissioner n 1 1 @ 1 0 10448834 -police_constable n 1 2 @ ; 1 0 09959258 -police_court n 1 2 @ ; 1 0 08334873 -police_cruiser n 1 2 @ ~ 1 0 03141065 -police_department n 1 1 @ 1 1 08121542 -police_detective n 1 2 @ ~ 1 0 10009276 -police_dog n 1 1 @ 1 0 02106854 -police_force n 1 3 @ ~ %m 1 1 08209687 -police_headquarters n 1 2 @ %p 1 1 03977678 -police_investigation n 1 2 @ ~ 1 1 00635012 -police_lieutenant n 1 1 @ 1 0 10259225 -police_matron n 1 2 @ ~ 1 0 10449412 -police_officer n 1 3 @ ~ #m 1 1 10448983 -police_precinct n 1 1 @ 1 0 08538584 -police_sergeant n 1 2 @ ~ 1 0 10449521 -police_squad n 1 2 @ ~ 1 0 08080947 -police_state n 1 1 @ 1 0 08441039 -police_station n 1 2 @ %p 1 0 03977678 -police_van n 1 1 @ 1 0 03977966 -police_wagon n 1 1 @ 1 0 03977966 -police_work n 1 2 @ ~ 1 0 00635012 -policeman n 1 3 @ ~ #m 1 1 10448983 -policeman_bird n 1 2 @ #m 1 0 02004492 -policewoman n 1 2 @ ~ 1 0 10449412 -policy n 3 2 @ ~ 3 3 05901508 06656408 06523641 -policy_change n 1 2 @ ~ 1 0 00163406 -policy_maker n 1 1 @ 1 1 10449845 -policyholder n 1 1 @ 1 0 10449664 -polio n 1 1 @ 1 1 14140176 -poliomyelitis n 1 1 @ 1 0 14140176 -polioptila n 1 3 @ #m %m 1 0 01563313 -poliosis n 1 1 @ 1 0 04976870 -poliovirus n 1 1 @ 1 0 01337734 -poliovirus_vaccine n 1 2 @ ~ 1 0 03978130 -polish n 4 3 @ ~ + 4 2 04955160 14459824 14996020 06944720 -polish_monetary_unit n 1 2 @ ~ 1 0 13710651 -polish_notation n 1 1 @ 1 0 06814443 -polished_rice n 1 1 @ 1 0 07804657 -polisher n 1 3 @ %p + 1 0 02911332 -polishing n 1 3 @ ~ + 1 0 00578795 -polistes n 1 3 @ #m %m 1 0 02213967 -polistes_annularis n 1 2 @ #m 1 0 02214096 -politburo n 1 1 @ 1 0 08327090 -politeness n 2 5 ! @ ~ = + 2 1 04912982 01227908 -politesse n 1 1 @ 1 0 04913738 -political_action_committee n 1 1 @ 1 0 08327212 -political_arena n 1 1 @ 1 1 14515344 -political_boss n 1 1 @ 1 0 10403162 -political_campaign n 2 3 @ ~ %p 2 1 07472929 00799537 -political_commissar n 1 1 @ 1 0 09942697 -political_contribution n 1 2 @ ~ 1 0 13270906 -political_correctitude n 1 1 @ 1 0 04899713 -political_correctness n 1 2 ! @ 1 0 04899713 -political_detainee n 1 1 @ 1 0 10009162 -political_dissident n 1 2 @ ~ 1 0 10018532 -political_donation n 1 2 @ ~ 1 0 13270906 -political_economy n 1 4 @ ~ %p - 1 0 06149484 -political_entity n 1 3 @ ~ #m 1 0 08359949 -political_hack n 1 1 @ 1 0 10278805 -political_incorrectness n 1 2 ! @ 1 0 04901754 -political_leader n 1 2 @ ~ 1 1 10450303 -political_liberty n 1 1 @ 1 0 13995662 -political_machine n 1 1 @ 1 0 08264583 -political_movement n 1 3 @ ~ %m 1 0 08472335 -political_orientation n 1 3 @ ~ = 1 0 06212839 -political_party n 1 3 @ ~ #m 1 1 08256968 -political_platform n 1 2 @ %p 1 1 06501311 -political_prisoner n 1 1 @ 1 0 10450038 -political_program n 1 2 @ %p 1 0 06501311 -political_relation n 1 2 @ - 1 0 13840719 -political_science n 1 5 @ ~ + ; - 1 1 06148148 -political_scientist n 1 2 @ + 1 0 10450161 -political_sphere n 1 1 @ 1 0 14515344 -political_sympathies n 1 1 @ 1 0 06149192 -political_system n 1 4 @ ~ #m %m 1 1 08367880 -political_theory n 1 3 @ ~ = 1 0 06212839 -political_unit n 1 3 @ ~ #m 1 1 08359949 -politician n 3 3 @ ~ + 3 2 10451263 10450303 10451450 -politico n 1 2 @ ~ 1 0 10450303 -politics n 5 5 @ ~ + ; - 5 4 13840719 06148148 00611972 06149192 01124508 -polity n 3 2 @ ~ 3 0 13968859 08050385 01137455 -polk n 1 1 @ 1 0 11240733 -polka n 2 2 @ + 2 1 07056504 00538144 -polka_dot n 1 1 @ 1 0 03978300 -poll n 5 5 @ ~ #p + ; 5 1 05800998 05539595 05539012 01817346 00653811 -poll_parrot n 1 1 @ 1 0 01817346 -poll_taker n 1 1 @ 1 0 10451590 -poll_tax n 1 1 @ 1 0 13314355 -pollachius n 1 3 @ #m %m 1 0 02524081 -pollachius_pollachius n 1 3 @ #m %p 1 0 02524202 -pollack n 3 4 @ #m #p %p 3 0 11240996 07789240 02524202 -pollard n 2 2 @ + 2 0 13108323 01319339 -pollen n 1 3 @ ~ + 1 1 11675537 -pollen_count n 1 1 @ 1 0 13592871 -pollen_tube n 1 2 @ ; 1 0 11680596 -pollenation n 1 3 @ ~ + 1 0 07437372 -pollex n 1 2 @ %p 1 0 05567217 -pollination n 1 3 @ ~ + 1 0 07437372 -pollinator n 1 2 @ + 1 0 02161457 -polling_booth n 1 2 @ #p 1 0 03978421 -polling_day n 1 1 @ 1 0 15172881 -polling_place n 1 2 @ %p 1 0 08538917 -polling_station n 1 2 @ %p 1 0 08538917 -pollinium n 1 1 @ 1 0 11675738 -pollinosis n 1 1 @ 1 0 14534199 -polliwog n 1 2 @ #m 1 0 02469472 -pollock n 3 4 @ #m #p %p 3 0 11241106 07789240 02524202 -polls n 1 1 @ 1 1 08621393 -pollster n 1 2 @ + 1 0 10451590 -pollucite n 1 2 @ %s 1 0 14691085 -pollutant n 1 3 @ ~ + 1 0 14857278 -polluter n 1 2 @ + 1 0 10451858 -pollution n 3 3 @ ~ + 3 1 14516743 14498404 00276987 -pollux n 1 2 @ #m 1 0 09397150 -polly_fish n 1 2 @ #m 1 0 02610664 -pollyfish n 1 2 @ #m 1 0 02610664 -pollywog n 1 2 @ #m 1 0 02469472 -polo n 2 2 @ - 2 0 11241300 00477639 -polo-neck n 1 2 @ %p 1 0 04502197 -polo-neck_collar n 1 2 @ #p 1 0 04502364 -polo_ball n 1 1 @ 1 0 03978575 -polo_mallet n 1 1 @ 1 0 03978686 -polo_pony n 1 1 @ 1 0 02380464 -polo_shirt n 1 1 @ 1 0 03978966 -polo_stick n 1 1 @ 1 0 03978686 -polonaise n 1 1 @ 1 0 03978815 -polonium n 1 1 @ 1 0 14650556 -polony n 1 2 @ ; 1 0 07676967 -polska n 1 5 @ #p %m %p - 1 0 08982587 -poltergeist n 1 1 @ 1 0 09546145 -poltroon n 1 2 @ + 1 0 10452024 -poltroonery n 1 1 @ 1 0 04861143 -polyamide n 1 2 @ ~ 1 0 14966058 -polyandrist n 1 2 @ + 1 0 10452151 -polyandry n 1 2 @ + 1 0 13966795 -polyangiaceae n 1 3 @ #m %m 1 0 01378137 -polyangium n 1 2 @ #m 1 0 01378346 -polyanthus n 1 1 @ 1 0 12091953 -polyarteritis n 1 1 @ 1 0 14258865 -polyarteritis_nodosa n 1 1 @ 1 0 14080352 -polyborus n 1 3 @ #m %m 1 0 01612803 -polyborus_cheriway_audubonii n 1 2 @ #m 1 0 01612955 -polyborus_plancus n 1 2 @ #m 1 0 01613177 -polybotria n 1 2 @ #m 1 0 13199244 -polybotria_cervina n 1 1 @ 1 0 13198482 -polybotrya n 1 2 @ #m 1 0 13199244 -polybotrya_cervina n 1 1 @ 1 0 13198482 -polybutene n 1 1 @ 1 1 14787386 -polybutylene n 1 1 @ 1 0 14787386 -polycarp n 1 1 @ 1 0 11241455 -polychaeta n 1 3 @ #m %m 1 0 01936219 -polychaete n 1 3 @ ~ #m 1 0 01936391 -polychaete_worm n 1 3 @ ~ #m 1 0 01936391 -polychete n 1 3 @ ~ #m 1 0 01936391 -polychete_worm n 1 3 @ ~ #m 1 0 01936391 -polychrome n 1 1 @ 1 0 03979100 -polycillin n 1 2 @ ; 1 0 02705651 -polycirrus n 1 3 @ #m %m 1 0 01937422 -polyconic_projection n 1 1 @ 1 0 03979212 -polycystic_kidney_disease n 1 1 @ 1 0 14114186 -polycythemia n 1 1 @ 1 0 14197315 -polydactylus n 1 3 @ #m %m 1 0 02611154 -polydactylus_virginicus n 1 2 @ #m 1 0 02611294 -polydactyly n 1 3 @ + ; 1 0 14471724 -polydipsia n 1 2 @ #p 1 0 14040966 -polyelectrolyte n 1 1 @ 1 1 14590441 -polyergus n 1 3 @ #m %m 1 0 02222459 -polyergus_rufescens n 1 2 @ #m 1 0 02222582 -polyester n 3 2 @ ~ 3 0 14993713 14993559 03979377 -polyester_fiber n 1 1 @ 1 0 14993868 -polyethylene n 1 1 @ 1 1 14594313 -polyfoam n 1 1 @ 1 0 14903339 -polygala n 1 3 @ #m %m 1 0 12704844 -polygala_alba n 1 2 @ %p 1 0 12705220 -polygala_lutea n 1 1 @ 1 0 12705458 -polygala_paucifolia n 1 1 @ 1 0 12705698 -polygala_senega n 1 2 @ %p 1 0 12705978 -polygala_vulgaris n 1 1 @ 1 0 12706410 -polygalaceae n 1 3 @ #m %m 1 0 12704636 -polygamist n 1 3 @ ~ + 1 0 10452260 -polygamy n 1 3 @ ~ + 1 0 13966925 -polygene n 1 2 @ + 1 0 05440555 -polygenic_disease n 1 2 @ ~ 1 0 14075199 -polygenic_disorder n 1 2 @ ~ 1 0 14075199 -polyglot n 1 3 @ ~ + 1 0 10264219 -polygon n 1 2 @ ~ 1 0 13866144 -polygonaceae n 1 3 @ #m %m 1 0 12600574 -polygonal_shape n 1 2 @ ~ 1 0 13866144 -polygonales n 1 3 @ #m %m 1 0 12600417 -polygonatum n 1 3 @ #m %m 1 0 12474006 -polygonatum_biflorum n 1 1 @ 1 0 12474418 -polygonatum_commutatum n 1 1 @ 1 0 12474418 -polygonia n 1 3 @ #m %m 1 0 02277895 -polygonia_comma n 1 2 @ #m 1 0 02278024 -polygonum n 1 3 @ #m %m 1 0 12600888 -polygonum_aubertii n 1 2 @ #m 1 0 12601106 -polygonum_fagopyrum n 1 3 @ #m %p 1 0 12601494 -polygonum_orientale n 1 2 @ #m 1 0 12601805 -polygraph n 1 2 @ ~ 1 0 03979492 -polygynist n 1 2 @ + 1 0 10452432 -polygyny n 1 2 @ + 1 0 13967089 -polyhedral_angle n 1 1 @ 1 0 13916363 -polyhedron n 1 3 @ ~ + 1 0 13883885 -polyhidrosis n 1 1 @ 1 0 13495209 -polyhymnia n 1 2 @ ; 1 0 09566904 -polymastigina n 1 3 @ #m %m 1 0 01419082 -polymastigote n 1 2 @ #m 1 0 01419332 -polymath n 1 1 @ 1 0 10207077 -polymer n 1 3 @ ~ + 1 0 14994328 -polymerase n 1 2 @ ~ 1 0 14984378 -polymeric_amide n 1 2 @ ~ 1 0 14966058 -polymerisation n 1 2 @ + 1 0 13538757 -polymerization n 1 2 @ + 1 1 13538757 -polymethyl_methacrylate n 1 2 @ ~ 1 0 14593874 -polymonium_caeruleum_van-bruntiae n 1 1 @ 1 0 12809626 -polymorph n 1 2 @ + 1 0 01328121 -polymorphism n 3 4 @ ~ + ; 3 0 11493266 11492833 11492388 -polymox n 1 1 @ 1 0 02703894 -polymyositis n 1 1 @ 1 1 14209635 -polymyxin n 1 1 @ 1 0 03979717 -polynemidae n 1 3 @ #m %m 1 0 02610834 -polynesia n 1 5 @ #p %m %p - 1 0 08841667 -polynesian n 2 3 @ ~ #m 2 0 09727826 06937768 -polynesian_tattler n 1 2 @ #m 1 0 02030568 -polyneuritic_psychosis n 1 1 @ 1 0 14395597 -polyneuritis n 1 2 @ ~ 1 0 14353314 -polynomial n 1 4 @ ~ + ; 1 1 05861855 -polynya n 1 1 @ 1 0 09397268 -polyodon n 1 3 @ #m %m 1 0 02639464 -polyodon_spathula n 1 2 @ #m 1 0 02639605 -polyodontidae n 1 3 @ #m %m 1 0 02639312 -polyoma n 1 1 @ 1 0 01340522 -polyoma_virus n 1 1 @ 1 0 01340522 -polyose n 1 3 @ ~ %s 1 0 14994004 -polyostotic_fibrous_dysplasia n 1 1 @ 1 0 14366486 -polyp n 2 3 @ ~ #m 2 0 14234436 01909906 -polypectomy n 1 1 @ 1 0 00690848 -polypedates n 1 2 @ #m 1 0 01644245 -polypedatidae n 1 3 @ #m %m 1 0 01644104 -polypeptide n 1 2 @ #s 1 0 14742917 -polyphemus_moth n 1 2 @ #m 1 0 02304432 -polyphone n 1 2 @ + 1 0 06839411 -polyphonic_letter n 1 1 @ 1 0 06839411 -polyphonic_music n 1 3 ! @ ~ 1 0 07024929 -polyphonic_prose n 1 1 @ 1 0 06376860 -polyphony n 1 4 ! @ ~ + 1 0 07024929 -polyphosphate n 1 1 @ 1 1 14994726 -polyphosphoric_acid n 1 2 @ ~ 1 0 14615264 -polyplacophora n 1 3 @ #m %m 1 0 01954729 -polyplacophore n 1 2 @ #m 1 0 01955084 -polyploid n 1 3 @ + ; 1 0 01320692 -polyploidy n 1 1 @ 1 0 14570939 -polypodiaceae n 1 3 @ #m %m 1 0 13172107 -polypodiales n 1 3 @ #m %m 1 0 13169674 -polypodium n 1 3 @ #m %m 1 0 13172725 -polypodium_aureum n 1 2 @ #m 1 0 13177048 -polypodium_glycyrrhiza n 1 1 @ 1 0 13173132 -polypodium_polypodioides n 1 1 @ 1 0 13173259 -polypodium_scouleri n 1 1 @ 1 0 13173488 -polypodium_virgianum n 1 1 @ 1 0 13173697 -polypodium_vulgare n 1 1 @ 1 0 13173882 -polypody n 1 3 @ ~ #m 1 0 13172923 -polyporaceae n 1 3 @ #m %m 1 0 13049561 -polypore n 1 2 @ ~ 1 0 13049953 -polyporus n 1 3 @ #m %m 1 0 13052431 -polyporus_frondosus n 1 2 @ #m 1 0 13052670 -polyporus_squamosus n 1 2 @ #m 1 0 13052931 -polyporus_tenuiculus n 1 2 @ #m 1 0 13052248 -polyprion n 1 3 @ #m %m 1 0 02568326 -polyprion_americanus n 1 2 @ #m 1 0 02568447 -polypropene n 1 1 @ 1 0 14996158 -polypropenonitrile n 1 1 @ 1 0 03979847 -polypropylene n 1 1 @ 1 0 14996158 -polyptoton n 1 1 @ 1 0 07100522 -polypus n 1 2 @ ~ 1 0 14234436 -polysaccharide n 1 3 @ ~ %s 1 0 14994004 -polysemant n 1 1 @ 1 0 06301953 -polysemantic_word n 1 1 @ 1 0 06301953 -polysemous_word n 1 1 @ 1 0 06301953 -polysemy n 1 3 ! @ + 1 0 04825576 -polysomy n 1 1 @ 1 0 14467846 -polystichum n 1 3 @ #m %m 1 0 13199445 -polystichum_acrostichoides n 1 2 @ #m 1 0 13199717 -polystichum_aculeatum n 1 1 @ 1 0 13195341 -polystichum_adiantiformis n 1 2 @ #m 1 0 13200986 -polystichum_braunii n 1 1 @ 1 0 13200193 -polystichum_lonchitis n 1 1 @ 1 0 13200411 -polystichum_scopulinum n 1 1 @ 1 0 13200542 -polystichum_setiferum n 1 2 @ #m 1 0 13200651 -polystyrene n 1 2 @ ~ 1 0 14595711 -polysyllabic_word n 1 2 @ ~ 1 0 06302083 -polysyllable n 1 3 @ ~ + 1 0 06302083 -polysyndeton n 1 1 @ 1 0 07105045 -polytechnic n 1 1 @ 1 0 08285407 -polytechnic_institute n 1 1 @ 1 0 08285407 -polytetrafluoroethylene n 1 1 @ 1 0 14596398 -polytheism n 1 4 ! @ ~ + 1 0 06224305 -polytheist n 1 1 @ 1 0 10452535 -polythene n 1 1 @ 1 0 14594313 -polytonalism n 1 1 @ 1 0 07025151 -polytonality n 1 2 @ + 1 0 07025151 -polyunsaturated_fat n 1 1 @ 1 0 14994824 -polyunsaturated_fatty_acid n 1 2 @ ~ 1 0 14741730 -polyurethan n 1 2 @ ~ 1 0 14903095 -polyurethane n 1 2 @ ~ 1 0 14903095 -polyurethane_foam n 1 1 @ 1 0 14903339 -polyuria n 1 2 @ #p 1 0 14114365 -polyvalence n 2 3 @ + ; 2 0 14570330 14570091 -polyvalency n 2 3 @ + ; 2 0 14570330 14570091 -polyvinyl-formaldehyde n 1 1 @ 1 0 14996295 -polyvinyl_acetate n 1 1 @ 1 0 14595279 -polyvinyl_chloride n 1 1 @ 1 0 14595403 -polyvinyl_resin n 1 2 @ ~ 1 0 15088440 -polyzoa n 1 3 @ #m %m 1 0 02313495 -polyzoan n 1 2 @ #m 1 0 02313709 -pom n 1 2 @ ; 1 0 09703573 -pom-pom n 2 3 @ ~ %p 2 0 03980734 02715712 -pomacanthus n 1 3 @ #m %m 1 0 02605809 -pomace_fly n 1 2 @ ~ 1 0 02196344 -pomacentridae n 1 3 @ #m %m 1 0 02606194 -pomacentrus n 1 3 @ #m %m 1 0 02606590 -pomacentrus_leucostictus n 1 2 @ #m 1 0 02606751 -pomade n 1 3 @ ~ + 1 0 03980026 -pomaderris n 1 3 @ #m %m 1 0 13143930 -pomaderris_apetala n 1 3 @ #m %s 1 0 13144084 -pomatomidae n 1 3 @ #m %m 1 0 02573406 -pomatomus n 1 3 @ #m %m 1 0 02573563 -pomatomus_saltatrix n 1 3 @ #m %p 1 0 02573704 -pomatum n 1 2 @ ~ 1 0 03980026 -pome n 1 2 @ ~ 1 0 13138842 -pomegranate n 2 4 @ #m #p %p 2 0 12345280 07768694 -pomegranate_tree n 1 3 @ #m %p 1 0 12345280 -pomelo n 2 4 @ #m #p %p 2 0 12709103 07750146 -pomelo_tree n 1 3 @ #m %p 1 0 12709103 -pomeranian n 1 1 @ 1 0 02112018 -pomfret n 1 2 @ #m 1 0 02582721 -pomme_blanche n 1 2 @ #m 1 0 12564613 -pomme_de_prairie n 1 2 @ #m 1 0 12564613 -pommel n 3 3 @ ~ #p 3 0 03980332 03980178 03626272 -pommel_horse n 1 2 @ %p 1 0 03980478 -pommy n 1 2 @ ; 1 0 09703573 -pomo n 2 1 @ 2 0 09666039 06921300 -pomolobus n 1 2 @ #m 1 0 02531362 -pomolobus_pseudoharengus n 1 3 @ #m %p 1 0 02531114 -pomologist n 1 1 @ 1 0 10452631 -pomology n 1 1 @ 1 0 06069886 -pomoxis n 1 3 @ #m %m 1 0 02562680 -pomoxis_annularis n 1 1 @ 1 0 02563079 -pomoxis_nigromaculatus n 1 1 @ 1 0 02562971 -pomp n 2 2 @ + 2 0 06880134 04815002 -pompadour n 2 2 @ + 2 0 11241655 05260240 -pompano n 2 5 @ ~ #m #p %p 2 0 07781689 02579557 -pompeii n 1 2 @ #p 1 0 08803883 -pompey n 2 2 @ #p 2 0 11241854 08879680 -pompey_the_great n 1 1 @ 1 0 11241854 -pompon n 2 1 @ 2 0 03980734 02589796 -pomposity n 1 2 @ + 1 0 04817923 -pompousness n 1 2 @ + 1 1 04817923 -ponca n 2 1 @ 2 0 09666206 06911758 -ponce n 2 3 @ ~ ; 2 0 10452752 10433737 -ponce_de_leon n 1 1 @ 1 0 11242077 -poncho n 1 1 @ 1 1 03980874 -poncirus n 1 3 @ #m %m 1 0 12714114 -poncirus_trifoliata n 1 2 @ #m 1 0 12714254 -pond n 1 2 @ ~ 1 1 09397391 -pond-apple_tree n 1 2 @ %p 1 0 11695285 -pond-scum_parasite n 1 2 @ #m 1 0 12978076 -pond-skater n 1 3 @ ~ #m 1 0 02243562 -pond_apple n 2 3 @ #p %p 2 0 11695285 07761954 -pond_bald_cypress n 1 2 @ #m 1 0 11641963 -pond_cypress n 1 2 @ #m 1 0 11642243 -pond_lily n 1 2 @ #m 1 0 11715430 -pond_pine n 1 1 @ 1 0 11611561 -pond_scum n 1 2 @ #m 1 0 01410457 -ponderer n 1 2 @ + 1 0 10339504 -ponderosa n 1 1 @ 1 0 11614420 -ponderosa_pine n 1 1 @ 1 0 11614420 -ponderosity n 1 2 @ + 1 0 05027837 -ponderousness n 2 2 @ + 2 0 05206829 05027837 -pondweed n 2 4 @ ~ #m %m 2 0 12615710 12614317 -pondweed_family n 1 3 @ #m %m 1 0 12615427 -pone n 1 1 @ 1 0 07688624 -pong n 1 2 @ ; 1 0 05715150 -pongamia n 1 3 @ #m %m 1 0 12563567 -pongamia_glabra n 1 2 @ #m 1 0 12563702 -pongee n 1 1 @ 1 0 03980986 -pongid n 1 3 @ ~ #m 1 0 02480153 -pongidae n 1 3 @ #m %m 1 0 02479896 -pongo n 1 3 @ #m %m 1 0 02480346 -pongo_pygmaeus n 1 2 @ #m 1 0 02480495 -poniard n 1 2 @ + 1 0 03981094 -ponka n 2 1 @ 2 0 09666206 06911758 -pons n 2 3 @ #p %p 2 0 11242321 05500992 -pons_asinorum n 1 1 @ 1 0 06786358 -pons_varolii n 1 3 @ #p %p 1 0 05500992 -ponselle n 1 1 @ 1 0 11242469 -ponstel n 1 1 @ 1 0 03742531 -ponte_25_de_abril n 1 2 @ #p 1 0 03981204 -pontederia n 1 3 @ #m %m 1 0 12609842 -pontederia_cordata n 1 2 @ #m 1 0 12609968 -pontederiaceae n 1 3 @ #m %m 1 0 12609638 -pontiac n 1 1 @ 1 0 11242596 -pontifex n 1 3 @ + ; 1 0 10452892 -pontiff n 1 4 @ ~ #m + 1 0 10453533 -pontifical n 1 1 @ 1 0 03981340 -pontificate n 1 3 @ %m + 1 0 08053260 -pontius_pilate n 1 1 @ 1 0 11235112 -pontoon n 2 3 @ #p ; 2 0 03981566 03981464 -pontoon_bridge n 1 2 @ %p 1 1 03981760 -pontoon_plane n 1 1 @ 1 0 03365231 -pontos n 1 2 @ ; 1 0 09568776 -pontus n 2 3 @ #p ; 2 0 09568776 08701719 -pony n 5 2 @ ~ 5 2 02380335 02385098 06347225 04206225 02382437 -pony-trekking n 1 2 @ ; 1 0 00450866 -pony_cart n 1 1 @ 1 0 03981924 -pony_express n 1 1 @ 1 0 06265815 -ponycart n 1 1 @ 1 0 03981924 -ponytail n 1 1 @ 1 0 05260380 -pooch n 1 1 @ 1 0 02084732 -pood n 1 1 @ 1 0 13718838 -poodle n 1 2 @ ~ 1 0 02113335 -poodle_dog n 1 2 @ ~ 1 0 02113335 -pooecetes n 1 3 @ #m %m 1 0 01535005 -pooecetes_gramineus n 1 2 @ #m 1 0 01535140 -poof n 1 2 @ ; 1 0 10076033 -pooh-bah n 1 1 @ 1 0 10174971 -pool n 9 4 @ ~ %p + 9 6 03982060 09397391 08481369 08236438 13369857 09397607 13369474 08665101 00501080 -pool_ball n 1 2 @ ~ 1 0 03982232 -pool_cue n 1 2 @ %p 1 0 03145522 -pool_player n 1 1 @ 1 0 10453184 -pool_stick n 1 2 @ %p 1 0 03145522 -pool_table n 1 2 @ %p 1 0 03982430 -pooler n 1 1 @ 1 0 10453061 -pooling_of_interest n 1 1 @ 1 0 13407012 -poolroom n 1 1 @ 1 0 03982331 -poon n 2 5 @ ~ #m #s %s 2 0 12364823 12364604 -poop n 4 4 @ #p %p ; 4 0 14854581 10358794 06636113 04316646 -poop_deck n 1 1 @ 1 0 03982642 -poor n 1 4 ! @ ~ ; 1 0 08179205 -poor_box n 1 1 @ 1 0 03982767 -poor_boy n 1 1 @ 1 0 07697825 -poor_devil n 1 1 @ 1 1 10453265 -poor_fish n 1 2 @ ~ 1 0 10667187 -poor_law n 1 2 @ ; 1 0 06538785 -poor_man's_orchid n 1 2 @ #m 1 0 12913144 -poor_man's_pulse n 1 2 @ #m 1 0 12547872 -poor_man's_weatherglass n 1 1 @ 1 0 12092417 -poor_people n 1 4 ! @ ~ ; 1 0 08179205 -poor_person n 1 2 @ ~ 1 0 10453357 -poor_rates n 1 2 @ ; 1 0 13315077 -poor_speller n 1 1 @ 1 0 10635149 -poor_white_trash n 1 2 @ ; 1 1 09641226 -poorhouse n 1 2 @ ~ 1 0 03982895 -poorness n 4 3 @ ~ + 4 0 14493145 05148399 05113462 04730797 -poorwill n 1 2 @ #m 1 0 01836673 -poove n 1 2 @ ; 1 0 10076033 -pop n 4 3 @ %s + 4 1 09988063 07927512 07390400 07059962 -pop-fly n 1 2 @ ; 1 0 00128976 -pop-up n 2 2 @ ; 2 0 06413260 00128976 -pop-up_book n 1 1 @ 1 0 06413260 -pop_art n 1 1 @ 1 0 03983068 -pop_bottle n 1 1 @ 1 0 03983396 -pop_fly n 1 2 @ ; 1 1 00128976 -pop_group n 1 2 @ ~ 1 0 08249752 -pop_music n 1 1 @ 1 0 07059962 -pop_quiz n 1 1 @ 1 0 07198757 -pop_tent n 1 1 @ 1 1 03984125 -popcorn n 2 3 @ #p %p 2 0 12145477 07732636 -popcorn_ball n 1 1 @ 1 0 07608721 -pope n 2 4 @ ~ #m + 2 1 10453533 11242743 -pope's_nose n 1 2 @ #p 1 0 07649463 -pope_alexander_vi n 1 1 @ 1 0 10813204 -popery n 1 1 @ 1 0 01030488 -popgun n 1 1 @ 1 0 03983499 -popillia n 1 3 @ #m %m 1 0 02173240 -popillia_japonica n 1 2 @ #m 1 0 02173373 -popinjay n 2 1 @ 2 0 10454645 01817263 -poplar n 2 5 @ ~ #m #s %s 2 0 12731714 12731401 -poplar_bluff n 1 2 @ #p 1 0 09107305 -poplar_tree n 1 4 @ ~ #m %s 1 0 12731401 -poplin n 1 1 @ 1 1 03983612 -popliteal_artery n 1 1 @ 1 0 05345421 -popliteal_vein n 1 1 @ 1 0 05377371 -popover n 1 1 @ 1 0 07690739 -popper n 3 2 @ + 3 0 11242849 03983814 03983712 -poppet n 1 2 @ #p 1 0 03983928 -poppet_valve n 1 2 @ #p 1 0 03983928 -popping n 1 2 @ + 1 1 07390400 -poppy n 1 3 @ ~ #m 1 1 11900569 -poppy_day n 1 2 @ ; 1 0 15200661 -poppy_family n 1 3 @ #m %m 1 0 11900058 -poppy_mallow n 1 3 @ ~ #m 1 0 12174926 -poppy_seed n 1 2 @ #p 1 0 07827750 -poppycock n 1 2 @ ; 1 0 06609909 -popsicle n 1 1 @ 1 0 07615774 -populace n 1 3 @ ~ %m 1 1 08179689 -popular_democratic_front_for_the_liberation_of_palestine n 1 2 @ ; 1 0 08019523 -popular_front n 1 1 @ 1 0 08294581 -popular_front_for_the_liberation_of_palestine n 1 2 @ ; 1 0 08038379 -popular_front_for_the_liberation_of_palestine-general_command n 1 2 @ ; 1 0 08038748 -popular_music n 1 2 @ ~ 1 1 07059255 -popular_music_genre n 1 2 @ ~ 1 0 07059255 -popular_opinion n 1 1 @ 1 0 05949726 -popular_struggle_front n 1 2 @ ; 1 0 08038995 -popularisation n 2 2 @ + 2 0 07174260 00273077 -populariser n 1 2 @ + 1 0 10454752 -popularism n 1 1 @ 1 1 07025302 -popularity n 1 5 ! @ ~ = + 1 1 04808639 -popularity_contest n 1 1 @ 1 1 01169200 -popularization n 2 2 @ + 2 0 07174260 00273077 -popularizer n 1 2 @ + 1 0 10454752 -populated_area n 1 3 @ ~ %p 1 0 08675967 -population n 5 4 @ ~ + ; 5 4 08179879 08178741 06026276 13779804 01257969 -population_commission n 1 1 @ 1 0 08298737 -population_control n 1 1 @ 1 0 01124384 -population_growth n 1 2 @ ~ 1 0 13538996 -population_profile n 1 1 @ 1 0 07002863 -population_scientist n 1 1 @ 1 0 10002257 -population_shift n 1 1 @ 1 1 07359920 -populism n 1 2 @ + 1 0 05965933 -populist n 1 2 @ + 1 0 10002031 -populist_party n 1 1 @ 1 0 08262494 -populus n 1 3 @ #m %m 1 0 12731202 -populus_alba n 1 1 @ 1 0 12732009 -populus_balsamifera n 1 1 @ 1 0 12731835 -populus_canescens n 1 1 @ 1 0 12732252 -populus_deltoides n 1 1 @ 1 0 12732966 -populus_grandidentata n 1 1 @ 1 0 12734215 -populus_heterophylla n 1 1 @ 1 0 12733428 -populus_nigra n 1 2 @ ~ 1 0 12732491 -populus_nigra_italica n 1 1 @ 1 0 12732605 -populus_tremula n 1 1 @ 1 0 12733870 -populus_tremuloides n 1 1 @ 1 0 12734070 -populus_trichocarpa n 1 1 @ 1 0 12733218 -porbeagle n 1 2 @ #m 1 0 01483830 -porc n 1 4 @ ~ #p %p 1 0 07668702 -porcelain n 1 2 @ ~ 1 0 03984234 -porcelain_clay n 1 3 @ #s - 1 0 14670639 -porcellio n 1 3 @ #m %m 1 0 01992113 -porcellionidae n 1 3 @ #m %m 1 0 01991982 -porch n 1 3 @ ~ #p 1 1 03984381 -porcupine n 1 3 @ ~ %p 1 1 02346627 -porcupine_ball n 1 1 @ 1 0 07871588 -porcupine_fish n 1 2 @ #m 1 0 02655848 -porcupine_provision n 1 2 @ ~ 1 0 00175605 -porcupinefish n 1 2 @ #m 1 0 02655848 -porcupines n 1 1 @ 1 0 07871588 -pore n 3 4 @ ~ #p + 3 2 13912115 05245906 11680032 -pore_fungus n 1 2 @ ~ 1 0 13049953 -pore_mushroom n 1 2 @ ~ 1 0 13049953 -porgy n 2 3 @ ~ #p 2 0 07790081 02590987 -porifera n 1 3 @ #m %m 1 0 01906552 -poriferan n 1 3 @ ~ #m 1 0 01906749 -poring_over n 1 1 @ 1 0 06598445 -pork n 2 4 @ ~ #p %p 2 1 07668702 13358000 -pork-and-veal_goulash n 1 1 @ 1 0 07590841 -pork-barreling n 1 1 @ 1 0 00078821 -pork-fish n 1 2 @ #m 1 0 02589623 -pork_and_beans n 1 1 @ 1 0 07874674 -pork_barrel n 1 1 @ 1 0 13358000 -pork_belly n 1 1 @ 1 0 07669713 -pork_butcher n 1 2 @ ; 1 0 10454972 -pork_loin n 1 3 @ #p %p 1 0 07669470 -pork_pie n 1 1 @ 1 0 07872284 -pork_roast n 1 1 @ 1 0 07669788 -pork_sausage n 1 2 @ ~ 1 0 07677593 -pork_tenderloin n 1 1 @ 1 0 07660283 -porkchop n 1 1 @ 1 1 07670254 -porker n 1 1 @ 1 0 02395931 -porkfish n 1 2 @ #m 1 0 02589623 -porkholt n 1 1 @ 1 0 07590974 -porkpie n 1 1 @ 1 0 03984643 -porkpie_hat n 1 1 @ 1 0 03984643 -porn n 1 2 @ ~ 1 0 00747215 -porn_merchant n 1 1 @ 1 0 10455094 -porno n 1 2 @ ~ 1 0 00747215 -pornographer n 1 2 @ + 1 0 10455094 -pornography n 1 3 @ ~ + 1 0 00747215 -poronotus n 1 3 @ #m %m 1 0 02633287 -poronotus_triacanthus n 1 2 @ #m 1 0 02633422 -poroporo n 1 1 @ 1 0 12893794 -porosity n 1 4 ! @ ~ + 1 1 04940146 -porousness n 1 3 @ ~ + 1 0 04940146 -porphyra n 1 3 @ #m %m 1 0 01415393 -porphyria n 1 1 @ 1 0 14507651 -porphyrin n 1 1 @ 1 0 15024124 -porphyrio n 1 2 @ #m 1 0 02017093 -porphyrio_porphyrio n 1 1 @ 1 0 02017213 -porphyritic_rock n 1 2 @ %s 1 0 14996395 -porphyrula n 1 3 @ #m %m 1 0 02017335 -porphyrula_martinica n 1 2 @ #m 1 0 02017475 -porphyry n 1 3 @ %s + 1 0 14996395 -porpoise n 1 3 @ ~ #m 1 0 02070430 -porpoise_oil n 1 1 @ 1 0 14996579 -porridge n 1 3 @ ~ %s 1 0 07874780 -porringer n 1 1 @ 1 0 03984759 -port n 5 4 @ ~ + ; 5 4 08633957 07900825 03984908 03642928 03578656 -port-access_coronary_bypass_surgery n 1 1 @ 1 0 00676160 -port-au-prince n 1 2 @ #p 1 0 08751885 -port-of-spain n 1 2 @ #p 1 0 08756511 -port-wine_stain n 1 1 @ 1 0 04696193 -port_arthur n 2 3 @ #p ; 2 0 08727396 01292017 -port_jackson_fig n 1 1 @ 1 0 12403276 -port_jackson_heath n 1 1 @ 1 0 12253835 -port_jackson_pine n 1 1 @ 1 0 11633863 -port_louis n 1 2 @ #p 1 0 08967688 -port_moresby n 1 2 @ #p 1 0 08845053 -port_of_call n 1 1 @ 1 0 08639479 -port_of_entry n 1 2 @ ~ 1 0 08638442 -port_of_spain n 1 2 @ #p 1 0 08756511 -port_orford_cedar n 2 4 @ #m #s %s 2 0 11635709 11635433 -port_sudan n 1 2 @ #p 1 0 09030467 -port_vila n 1 2 @ #p 1 0 09160968 -port_watcher n 1 1 @ 1 0 10455821 -port_wine n 1 1 @ 1 0 07900825 -porta n 1 2 @ ~ 1 0 05249636 -porta_hepatis n 1 1 @ 1 0 05250190 -portability n 1 2 @ + 1 0 04776176 -portable n 1 2 @ + 1 0 03985069 -portable_circular_saw n 1 1 @ 1 0 03985441 -portable_computer n 1 3 @ ~ %p 1 0 03985232 -portable_saw n 1 1 @ 1 0 03985441 -portacaval_shunt n 1 1 @ 1 0 05548314 -portage n 3 2 @ + 3 0 13306346 03985588 00319717 -portal n 3 2 @ #p 3 1 03985684 06359657 05377665 -portal_hypertension n 1 1 @ 1 0 14104830 -portal_site n 1 1 @ 1 0 06359657 -portal_system n 1 2 @ %p 1 0 05377515 -portal_tomb n 1 1 @ 1 0 03220237 -portal_vein n 1 2 @ #p 1 0 05377665 -portcullis n 1 1 @ 1 0 03985881 -porte n 1 1 @ 1 0 08052227 -porte-cochere n 2 1 @ 2 0 03986224 03986071 -portent n 1 3 @ ~ + 1 0 07286368 -porter n 7 3 @ ~ + 7 2 10455447 10026553 11243424 11243268 11243102 10455305 07890226 -porter's_beer n 1 1 @ 1 0 07890226 -porterage n 2 2 @ + 2 0 13324710 00319825 -porterhouse n 1 2 @ #p 1 1 07660800 -porterhouse_steak n 1 2 @ #p 1 0 07660800 -portfolio n 4 1 @ 4 1 03986355 08242428 06494153 00721282 -porthole n 2 4 @ #p %p ; 2 0 03986562 03984908 -portia_tree n 1 2 @ #m 1 0 12188635 -portico n 1 2 @ ~ 1 0 03986704 -portiere n 1 1 @ 1 0 03986857 -portion n 7 5 @ ~ #p %p + 7 4 13809207 03892891 01085098 13285176 14473222 13265425 07578363 -portland n 2 2 @ #p 2 0 09133895 09093472 -portland_cement n 1 1 @ 1 0 14804958 -portmanteau n 2 2 @ - 2 0 06288527 03986949 -portmanteau_word n 1 2 @ - 1 0 06288527 -porto n 1 2 @ #p 1 0 08986374 -porto_novo n 1 2 @ #p 1 0 08759684 -porto_rico n 2 3 @ #p %p 2 0 08752974 08752814 -portrait n 2 3 @ ~ + 2 2 07202391 03987079 -portrait_camera n 1 2 @ %p 1 0 03987266 -portrait_lens n 1 2 @ #p 1 0 03987376 -portrait_painter n 1 1 @ 1 0 10455619 -portraitist n 1 2 @ + 1 0 10455619 -portraiture n 2 2 @ + 2 0 07202391 00900957 -portrayal n 5 3 @ ~ + 5 2 07202391 00548802 05766984 03987079 00900726 -portrayer n 1 2 @ + 1 0 10455619 -portraying n 1 3 @ ~ + 1 0 05766984 -portsmouth n 3 2 @ #p 3 0 09151216 09112123 08879680 -portugal n 1 6 @ #m #p %m %p - 1 1 08984788 -portuguese n 2 4 @ #m + ; 2 1 06966310 09728009 -portuguese_cypress n 1 1 @ 1 0 11632376 -portuguese_escudo n 1 3 @ #p %p 1 0 13676108 -portuguese_guinea n 1 3 @ #p %p 1 0 08947772 -portuguese_heath n 1 1 @ 1 0 12228886 -portuguese_man-of-war n 1 2 @ #m 1 0 01913166 -portuguese_monetary_unit n 1 2 @ ~ 1 0 13675976 -portuguese_republic n 1 6 @ #m #p %m %p - 1 0 08984788 -portulaca n 1 3 @ ~ #m 1 0 11857696 -portulaca_grandiflora n 1 1 @ 1 0 11857875 -portulaca_oleracea n 1 2 @ #m 1 0 11858077 -portulacaceae n 1 3 @ #m %m 1 0 11856981 -portunidae n 1 3 @ #m %m 1 0 01978744 -portunus n 1 3 @ #m %m 1 0 01979124 -portunus_puber n 1 2 @ #m 1 0 01979269 -portwatcher n 1 1 @ 1 1 10455821 -porzana n 1 3 @ #m %m 1 0 02015944 -porzana_porzana n 1 2 @ #m 1 0 02016066 -pos_tagger n 1 1 @ 1 0 06577916 -pose n 3 3 @ ~ + 3 1 04788011 05081300 00755673 -poseidon n 1 2 @ ; 1 0 09568927 -poser n 3 3 @ ~ + 3 0 10455915 10324560 06785367 -poseur n 1 2 @ ~ 1 1 10455915 -poseuse n 1 1 @ 1 0 10456070 -posing n 1 3 @ + ; 1 0 00344421 -posit n 1 4 @ ~ + ; 1 0 06753299 -position n 16 5 @ ~ = + ; 16 12 08621598 08622586 06208751 05079866 13945919 00586262 05074774 08622201 00722479 01051331 13925752 06196284 06783265 06483454 00721431 00083448 -position_effect n 1 2 @ ; 1 0 11416534 -position_paper n 2 1 @ 2 0 07220045 06506430 -positional_notation n 1 2 @ ~ 1 0 06809421 -positional_representation_system n 1 2 @ ~ 1 0 06809421 -positioner n 1 3 @ + ; 1 0 04110439 -positioning n 1 3 @ ~ + 1 0 01051331 -positive n 2 2 @ #p 2 0 06322468 03987509 -positive_charge n 1 2 ! @ 1 0 11435871 -positive_chemotaxis n 1 1 @ 1 0 00863121 -positive_correlation n 1 2 @ ; 1 0 06032898 -positive_degree n 1 1 @ 1 0 06322468 -positive_feedback n 1 2 @ ~ 1 1 13539262 -positive_fraud n 1 1 @ 1 0 00778213 -positive_identification n 1 2 @ ~ 1 0 06885389 -positive_magnetic_pole n 1 1 @ 1 0 03987674 -positive_muon n 1 1 @ 1 0 09199581 -positive_pole n 2 1 @ 2 0 03987865 03987674 -positive_reinforcer n 1 1 @ 1 0 05828820 -positive_reinforcing_stimulus n 1 1 @ 1 0 05828820 -positive_stimulus n 1 2 @ ~ 1 0 05829342 -positiveness n 5 4 ! @ ~ + 5 0 13856857 05166805 05160796 05108109 04755218 -positivism n 2 3 @ ~ + 2 1 05993367 05166805 -positivist n 1 3 @ ~ + 1 1 10456138 -positivity n 5 4 ! @ ~ + 5 0 13856857 05166805 05160796 05108109 04755218 -positron n 1 1 @ 1 0 09397896 -positron_emission_tomography n 1 1 @ 1 0 00902376 -positron_emission_tomography_scanner n 1 1 @ 1 0 03987990 -posology n 1 1 @ 1 0 06055692 -posse n 1 2 @ %m 1 1 08405490 -posse_comitatus n 1 2 @ %m 1 0 08405490 -posseman n 1 2 @ #m 1 1 10456391 -possession n 7 4 @ ~ + ; 7 2 00809465 00032613 14407795 09182524 08631531 04862005 00809702 -possessive n 1 2 @ ~ 1 0 06311852 -possessive_case n 1 2 @ ~ 1 0 06311852 -possessiveness n 1 2 @ + 1 0 04945942 -possessor n 1 3 @ ~ + 1 0 10389398 -posset n 1 1 @ 1 0 07916773 -possibility n 4 6 ! @ ~ #p = + 4 4 05951180 14481929 05888929 05792010 -possible n 2 1 @ 2 1 05792192 10456514 -possible_action n 1 2 @ ~ 1 0 05792010 -possibleness n 1 4 @ ~ = + 1 0 14481929 -possum n 2 3 @ ~ #m 2 1 01874928 01881171 -possum_haw n 1 1 @ 1 0 12757303 -possum_oak n 1 1 @ 1 0 12276110 -possumwood n 1 3 @ #m %p 1 0 12771597 -post n 11 5 @ ~ %p + ; 11 4 08624385 03763403 00586262 03988170 11243907 11243720 11243562 08463063 07257815 06264398 00318186 -post-hole_digger n 1 1 @ 1 0 03989665 -post-horse n 1 1 @ 1 0 02387722 -post-impressionist n 1 1 @ 1 0 10459414 -post-it n 1 1 @ 1 0 06259297 -post-maturity n 1 1 @ 1 0 14426325 -post-menopause n 1 1 @ 1 0 14426325 -post-mortem n 2 2 @ + 2 0 07144039 00141396 -post-mortem_examination n 1 1 @ 1 0 00141396 -post-obit_bond n 1 1 @ 1 0 13339189 -post-office_box n 1 1 @ 1 0 03990210 -post-office_box_number n 1 1 @ 1 0 08491531 -post-rotational_nystagmus n 1 1 @ 1 0 00338404 -post_and_lintel n 1 1 @ 1 0 03988926 -post_card n 1 2 @ ~ 1 0 06627938 -post_chaise n 1 1 @ 1 0 03989199 -post_doc n 2 1 @ 2 0 13267687 10456696 -post_exchange n 1 1 @ 1 0 03989447 -post_hoc n 1 1 @ 1 0 05894972 -post_hoc_ergo_propter_hoc n 1 1 @ 1 0 05894972 -post_hole n 1 1 @ 1 0 03989553 -post_horn n 1 1 @ 1 0 03989777 -post_horse n 1 1 @ 1 0 02387722 -post_house n 1 1 @ 1 0 03989898 -post_oak n 1 1 @ 1 0 12278371 -post_office n 3 2 @ %p 3 1 08145553 08145277 00487326 -post_road n 1 1 @ 1 0 03990385 -postage n 2 2 @ + 2 0 13324826 06796119 -postage_meter n 1 1 @ 1 0 03988758 -postage_stamp n 1 1 @ 1 0 06796119 -postal_card n 1 2 @ ~ 1 0 06627938 -postal_clerk n 1 1 @ 1 0 10459116 -postal_code n 1 2 @ #p 1 0 06355705 -postal_order n 1 1 @ 1 0 13380820 -postal_rate_commission n 1 1 @ 1 0 08127166 -postal_service n 1 2 @ ~ 1 0 06264398 -postbag n 1 1 @ 1 0 03709823 -postbox n 1 2 @ ~ 1 0 03989074 -postcard n 1 2 @ ~ 1 0 06627938 -postcava n 1 1 @ 1 0 05422852 -postcentral_gyrus n 1 2 @ #p 1 0 05493141 -postcode n 1 2 @ #p 1 0 06355705 -postdiluvian n 1 1 @ 1 0 10456603 -postdoc n 2 1 @ 2 0 13267687 10456696 -postdoctoral n 1 1 @ 1 0 13267687 -poste_restante n 2 2 @ #p 2 0 08145701 06265636 -poster n 3 3 @ ~ + 3 1 06793426 09854510 02387722 -poster_board n 1 1 @ 1 0 14801146 -poster_boy n 1 1 @ 1 0 10456874 -poster_child n 1 2 @ ~ 1 0 10456950 -poster_color n 1 1 @ 1 0 04407257 -poster_colour n 1 1 @ 1 0 04407257 -poster_girl n 1 1 @ 1 0 10457214 -poster_paint n 1 1 @ 1 0 04407257 -posterboard n 1 1 @ 1 0 14801146 -posterior n 2 3 @ #p + 2 0 05559256 05306476 -posterior_cardinal_vein n 1 1 @ 1 0 05360170 -posterior_cerebral_artery n 1 1 @ 1 0 05341789 -posterior_facial_vein n 1 1 @ 1 0 05379438 -posterior_labial_veins n 1 1 @ 1 0 05424504 -posterior_meningeal_artery n 1 1 @ 1 0 05351572 -posterior_naris n 1 1 @ 1 0 05600270 -posterior_pituitary n 1 3 @ #p %p 1 0 05484862 -posterior_pituitary_gland n 1 3 @ #p %p 1 0 05484862 -posterior_serratus_muscle n 1 2 @ ~ 1 0 05550688 -posterior_subcapsular_cataract n 1 1 @ 1 0 14256227 -posterior_synechia n 1 1 @ 1 0 14206826 -posterior_temporal_artery n 1 1 @ 1 0 05355341 -posterior_vein_of_the_left_ventricle n 1 1 @ 1 0 05377833 -posteriority n 2 4 ! @ + ; 2 0 05078450 05047617 -posterity n 2 1 @ 2 0 08369220 08369142 -postern n 1 1 @ 1 0 03989349 -postfix n 1 1 @ 1 0 06308987 -postfix_notation n 1 1 @ 1 0 06814655 -postgraduate n 1 2 @ + 1 0 10141109 -posthitis n 1 1 @ 1 0 14354121 -posthole n 1 1 @ 1 0 03989553 -posthole_digger n 1 1 @ 1 0 03989665 -posthouse n 1 1 @ 1 0 03989898 -posthumous_birth n 2 1 @ 2 0 07321142 07321012 -posthypnotic_amnesia n 1 1 @ 1 0 05673710 -posthypnotic_suggestion n 1 1 @ 1 0 05916520 -postiche n 2 2 @ ~ 2 0 03476083 03318438 -postilion n 1 1 @ 1 0 10459212 -postillion n 1 1 @ 1 0 10459212 -postimpressionist n 1 1 @ 1 0 10459414 -posting n 3 4 @ ~ + ; 3 0 06793426 06494373 00122338 -postlude n 1 1 @ 1 0 07041344 -postman n 1 1 @ 1 0 10283037 -postmark n 1 2 @ + 1 1 07270718 -postmaster n 1 2 @ ~ 1 0 10459575 -postmaster_general n 1 1 @ 1 1 10459764 -postmature_infant n 1 1 @ 1 0 10457293 -postmistress n 1 1 @ 1 0 10459687 -postmodernism n 1 1 @ 1 0 03990025 -postmortem n 2 2 @ + 2 0 07144039 00141396 -postmortem_examination n 1 1 @ 1 0 00141396 -postnasal_drip n 1 1 @ 1 0 14333721 -postponement n 2 3 @ ~ + 2 0 15272029 01066881 -postponer n 1 2 @ + 1 0 10478626 -postposition n 1 3 @ + ; 1 0 06483702 -postscript n 2 3 @ ~ #p 2 1 06764623 06399631 -posttraumatic_amnesia n 1 1 @ 1 0 05672862 -posttraumatic_epilepsy n 1 1 @ 1 0 14089450 -posttraumatic_stress_disorder n 1 3 @ ~ %p 1 0 14386130 -postulant n 1 1 @ 1 0 10459882 -postulate n 1 4 @ ~ + ; 1 1 06753299 -postulation n 2 4 @ ~ + ; 2 0 06733227 06513366 -postulator n 2 3 @ + ; 2 0 10457597 10457444 -postum n 1 1 @ 1 0 07731436 -postural_hypotension n 1 1 @ 1 0 14104367 -posture n 4 5 @ ~ = + ; 4 2 05079866 05002822 06196284 05203649 -posturer n 1 1 @ 1 0 10457777 -posturing n 1 1 @ 1 0 04887701 -posy n 1 1 @ 1 0 02879087 -pot n 9 6 @ ~ #p %p + ; 9 4 03990474 04446521 13769033 03991062 13774404 13343774 05556071 03991646 03990834 -pot-au-feu n 1 1 @ 1 0 07593004 -pot_cheese n 1 1 @ 1 0 07851767 -pot_farm n 1 1 @ 1 0 03991969 -pot_likker n 1 1 @ 1 0 07584727 -pot_liquor n 1 1 @ 1 0 07584727 -pot_marigold n 1 1 @ 1 0 11943660 -pot_marjoram n 1 3 @ #m %p 1 0 12853287 -pot_metal n 2 1 @ 2 0 14802167 14718362 -pot_plant n 1 2 @ ; 1 0 11536230 -pot_roast n 1 2 @ ~ 1 0 07661711 -potable n 1 3 @ ~ + 1 0 07881800 -potage n 1 1 @ 1 0 07587023 -potage_st._germain n 1 1 @ 1 0 07588419 -potamogale n 1 2 @ #m 1 0 01894956 -potamogale_velox n 1 2 @ #m 1 0 01894956 -potamogalidae n 1 3 @ #m %m 1 0 01894670 -potamogeton n 1 3 @ #m %m 1 0 12615986 -potamogeton_americanus n 1 2 @ #m 1 0 12616630 -potamogeton_crispus n 1 2 @ #m 1 0 12616248 -potamogeton_gramineous n 1 2 @ #m 1 0 12616442 -potamogeton_nodosus n 1 2 @ #m 1 0 12616630 -potamogetonaceae n 1 3 @ #m %m 1 0 12615427 -potamophis n 1 3 @ #m %m 1 0 01736569 -potamophis_striatula n 1 2 @ #m 1 0 01736796 -potash n 1 1 @ 1 0 14996843 -potash_alum n 1 1 @ 1 0 14628119 -potash_muriate n 1 2 @ ; 1 0 14861042 -potassium n 1 2 @ #s 1 1 14650807 -potassium-argon_dating n 1 1 @ 1 0 00992544 -potassium_acid_carbonate n 1 1 @ 1 0 14860842 -potassium_alum n 1 1 @ 1 0 14628119 -potassium_bicarbonate n 1 1 @ 1 0 14860842 -potassium_bitartrate n 1 1 @ 1 0 15013269 -potassium_bromide n 1 1 @ 1 0 14861566 -potassium_carbonate n 1 2 @ ~ 1 0 14861716 -potassium_chlorate n 1 1 @ 1 0 14861887 -potassium_chloride n 1 2 @ ; 1 0 14861042 -potassium_cyanide n 1 1 @ 1 0 14862064 -potassium_dichromate n 1 1 @ 1 0 14862192 -potassium_ferrocyanide n 1 1 @ 1 0 14995061 -potassium_hydrogen_carbonate n 1 1 @ 1 0 14860842 -potassium_hydrogen_tartrate n 1 1 @ 1 0 15013269 -potassium_hydroxide n 1 1 @ 1 0 14996843 -potassium_iodide n 1 1 @ 1 0 14862316 -potassium_muriate n 1 2 @ ; 1 0 14861042 -potassium_nitrate n 1 2 @ #s 1 0 14861355 -potassium_permanganate n 1 1 @ 1 0 14995278 -potassium_sodium_tartrate n 1 1 @ 1 0 15009474 -potation n 2 2 @ ~ 2 0 07883980 00843575 -potato n 2 5 @ ~ #m #p %p 2 1 07710616 12897493 -potato_bean n 3 4 @ #m #p %p 3 0 12555553 12507379 07774032 -potato_beetle n 1 2 @ #m 1 0 02169974 -potato_blight n 1 1 @ 1 0 14218493 -potato_bug n 1 2 @ #m 1 0 02169974 -potato_chip n 1 1 @ 1 0 07712559 -potato_disease n 1 1 @ 1 0 14218493 -potato_family n 1 3 @ #m %m 1 0 12892226 -potato_fern n 2 2 @ #m 2 0 13215258 13178707 -potato_fungus n 1 2 @ #m 1 0 13016076 -potato_mildew n 1 1 @ 1 0 14218493 -potato_mold n 1 1 @ 1 0 14218493 -potato_mosaic n 1 1 @ 1 0 14280986 -potato_moth n 1 1 @ 1 0 02294407 -potato_murrain n 1 1 @ 1 0 14218493 -potato_nose n 1 1 @ 1 0 14397040 -potato_pancake n 1 1 @ 1 0 07641581 -potato_peel n 1 1 @ 1 0 07711683 -potato_peelings n 1 1 @ 1 0 07711683 -potato_race n 1 1 @ 1 0 07463323 -potato_salad n 1 1 @ 1 0 07807594 -potato_scab_bacteria n 1 1 @ 1 0 01376647 -potato_skin n 1 1 @ 1 0 07711683 -potato_tree n 2 2 @ #m 2 0 12897999 12894247 -potato_tuber_moth n 1 1 @ 1 0 02294407 -potato_tuberworm n 1 2 @ #m 1 0 02294577 -potato_vine n 2 2 @ #m 2 0 12897788 12895811 -potato_wart n 1 1 @ 1 0 14281851 -potato_wart_fungus n 1 2 @ #m 1 0 12979316 -potato_worm n 1 1 @ 1 0 02299505 -potato_yellow-dwarf_virus n 1 1 @ 1 1 01341727 -potato_yellow_dwarf n 1 1 @ 1 0 14284876 -potawatomi n 2 1 @ 2 0 09666349 06911857 -potbelly n 2 2 @ ; 2 0 05556071 03991202 -potbelly_stove n 1 1 @ 1 0 03991202 -potboiler n 1 1 @ 1 0 06387053 -potboy n 1 2 @ ; 1 0 10460033 -poteen n 1 1 @ 1 0 07907342 -potemkin n 1 1 @ 1 0 11244061 -potemkin_village n 1 1 @ 1 0 03991321 -potence n 1 2 ! @ 1 0 14051728 -potency n 4 5 ! @ ~ = + 4 2 05196582 05034225 14482620 14051728 -potentate n 1 2 @ ~ 1 0 10011902 -potential n 2 3 @ ~ = 2 1 14482620 11493827 -potential_difference n 1 2 @ ~ 1 0 11493827 -potential_divider n 1 2 @ ~ 1 0 03991443 -potential_drop n 1 2 @ ~ 1 0 11493827 -potential_energy n 1 2 @ ~ 1 1 11494472 -potential_unit n 1 2 @ ~ 1 0 13634784 -potentiality n 2 4 @ ~ = + 2 2 14482620 05623181 -potentiation n 1 3 @ + ; 1 0 13539422 -potentilla n 1 3 @ #m %m 1 0 12636705 -potentilla_anserina n 1 1 @ 1 0 12637123 -potentiometer n 2 1 @ 2 1 03991837 03991646 -poterium n 1 3 @ #m %m 1 0 12637319 -poterium_sanguisorba n 1 3 @ #m %p 1 0 12637485 -potful n 1 1 @ 1 0 13769033 -pothead n 1 1 @ 1 0 10460193 -pother n 1 2 @ + 1 0 14403772 -potherb n 1 1 @ 1 0 07709172 -potholder n 1 1 @ 1 0 03992115 -pothole n 1 1 @ 1 1 09398076 -potholer n 1 1 @ 1 0 10460286 -pothook n 1 2 @ ~ 1 0 03992208 -pothos n 2 2 @ #m 2 0 11792029 11788727 -pothouse n 1 4 @ ~ %p ; 1 0 04018399 -pothunter n 3 1 @ 3 0 10460720 10460599 10460501 -potion n 1 2 @ ~ 1 0 07883251 -potlatch n 1 1 @ 1 0 07455301 -potluck n 1 1 @ 1 0 07574176 -potman n 1 2 @ ; 1 0 10460033 -potomac n 2 2 @ #p 2 0 09398217 09071246 -potomac_river n 1 2 @ #p 1 0 09398217 -potomania n 1 1 @ 1 0 09181993 -potoroinae n 1 3 @ #m %m 1 0 01879983 -potoroo n 1 2 @ #m 1 0 01880473 -potorous n 1 3 @ #m %m 1 0 01880355 -potos n 1 3 @ #m %m 1 0 02509071 -potos_caudivolvulus n 1 2 @ #m 1 0 02509197 -potos_flavus n 1 2 @ #m 1 0 02509197 -potpie n 1 1 @ 1 0 07875152 -potpourri n 3 2 @ ~ 3 1 08398773 07047505 03992325 -potsdam n 1 2 @ #p 1 0 08774546 -potsdam_conference n 1 1 @ 1 0 08328088 -potsherd n 1 1 @ 1 0 03992436 -potshot n 2 1 @ 2 1 00124766 06711539 -pott's_disease n 1 1 @ 1 0 14140391 -pottage n 2 1 @ 2 0 07587111 07587023 -potter n 1 2 @ ~ 1 1 10460806 -potter's_clay n 1 2 @ ~ 1 0 14814125 -potter's_earth n 1 2 @ ~ 1 0 14814125 -potter's_field n 1 1 @ 1 0 08626845 -potter's_wheel n 1 1 @ 1 0 03992509 -potter_bee n 1 2 @ #m 1 0 02211896 -potter_wasp n 1 2 @ #m 1 0 02214499 -potterer n 1 2 @ + 1 0 10496193 -pottery n 3 3 @ ~ %s 3 2 03992703 00609868 03992888 -pottle n 1 1 @ 1 0 03992975 -potto n 2 2 @ #m 2 0 02509197 02499316 -potty n 2 4 @ ~ #p %p 2 0 04446521 03004275 -potty_chair n 1 1 @ 1 0 03993053 -potty_seat n 1 1 @ 1 0 03993053 -potyokin n 1 1 @ 1 0 11244061 -pouch n 3 4 @ ~ + ; 3 1 03993180 13914473 05516848 -pouched_mammal n 1 3 @ ~ #m 1 0 01874434 -pouched_mole n 1 2 @ #m 1 0 01886045 -pouched_mouse n 1 2 @ #m 1 0 01885158 -pouched_rat n 1 3 @ ~ #m 1 0 02353861 -poudrin n 1 3 @ #p %s 1 0 11509377 -pouf n 2 2 @ ; 2 0 10076033 03858418 -pouf_paste n 1 1 @ 1 0 07628181 -pouffe n 1 1 @ 1 0 03858418 -poulenc n 1 1 @ 1 0 11244419 -poulet n 1 4 @ ~ #p %p 1 0 07644967 -poulette n 1 1 @ 1 0 07840304 -poulterer n 1 1 @ 1 0 10461060 -poultice n 1 3 @ ~ + 1 0 03993403 -poultry n 2 5 @ ~ #m #p %p 2 1 01789740 07644706 -poultryman n 1 1 @ 1 0 10461060 -pounce n 1 2 @ + 1 0 01258161 -pound n 14 4 @ #p %p + 14 2 13720096 13686660 13720302 13695674 13695420 13694936 13694657 13694017 13693641 13648184 11244550 06809756 03993703 01175316 -pound_cake n 1 1 @ 1 0 07633229 -pound_net n 1 1 @ 1 0 03993878 -pound_sign n 1 1 @ 1 0 06809756 -pound_sterling n 1 2 @ %p 1 0 13686660 -poundage n 4 4 @ ~ + ; 4 0 13324912 13323207 05028348 00086297 -poundal n 1 1 @ 1 0 13647997 -pounder n 2 3 @ + ; 2 0 13648378 03919430 -pounding n 3 2 @ + 3 2 07410526 07401726 01175316 -pounds_per_square_inch n 1 1 @ 1 0 13711570 -pourboire n 1 2 @ ~ 1 0 13298701 -pousse-cafe n 1 1 @ 1 0 07910799 -poussin n 1 1 @ 1 0 11244765 -pout n 3 4 @ ~ #m + 3 0 06877742 02617207 02519340 -pouter n 2 3 @ + ; 2 0 10627899 01812187 -pouter_pigeon n 1 1 @ 1 0 01812187 -pouteria n 1 3 @ #m %m 1 0 12775530 -pouteria_campechiana_nervosa n 1 3 @ #m %p 1 0 12775717 -pouteria_zapota n 1 3 @ #m %p 1 0 12775919 -poverty n 1 3 ! @ ~ 1 1 14493145 -poverty_grass n 1 2 @ #m 1 0 12376740 -poverty_level n 1 1 @ 1 0 13293246 -poverty_line n 1 1 @ 1 0 13293246 -poverty_trap n 1 2 @ ; 1 0 13926932 -pow n 1 1 @ 1 1 10476331 -pow_camp n 1 2 @ ~ 1 0 04005912 -powder n 3 3 @ ~ + 3 3 14997012 15016314 03994008 -powder-post_termite n 1 2 @ #m 1 0 02225798 -powder_and_shot n 1 1 @ 1 0 03994297 -powder_blue n 1 2 @ + 1 0 04969431 -powder_compact n 1 1 @ 1 0 03078995 -powder_flask n 1 1 @ 1 0 03994614 -powder_horn n 1 1 @ 1 0 03994614 -powder_keg n 2 1 @ 2 0 14543145 03994757 -powder_magazine n 1 1 @ 1 0 03704038 -powder_metallurgy n 1 1 @ 1 0 06125996 -powder_method n 1 1 @ 1 0 13539585 -powder_monkey n 1 1 @ 1 0 10461280 -powder_photography n 1 1 @ 1 0 13539585 -powder_room n 1 1 @ 1 0 03632963 -powder_store n 1 1 @ 1 0 03704038 -powder_technique n 1 1 @ 1 1 13539585 -powdered_ginger n 1 2 @ %s 1 0 07815163 -powdered_milk n 1 2 @ ~ 1 0 07846143 -powdered_mustard n 1 1 @ 1 0 03994417 -powdered_sugar n 1 2 @ ~ 1 0 07595914 -powderer n 1 2 @ + 1 0 10461169 -powderiness n 1 2 @ + 1 0 04948069 -powderpuff n 1 1 @ 1 0 03994874 -powdery_mildew n 1 2 @ #m 1 0 12963628 -powell n 2 1 @ 2 0 11245110 11244887 -power n 9 6 ! @ ~ = + ; 9 8 05190804 11453016 05616246 13945102 10461424 06812417 05030680 08177592 09840217 -power-assisted_steering n 1 1 @ 1 0 03996849 -power-station_worker n 1 1 @ 1 0 10462751 -power_brake n 1 3 @ ~ #p 1 0 03995018 -power_breakfast n 1 1 @ 1 0 08385989 -power_broker n 1 1 @ 1 0 10462217 -power_cable n 1 2 @ #p 1 0 03995535 -power_company n 1 1 @ 1 1 08186393 -power_cord n 1 1 @ 1 0 03995265 -power_couple n 1 1 @ 1 0 07989083 -power_dive n 1 1 @ 1 0 00327134 -power_drill n 1 2 @ ~ 1 0 03995372 -power_failure n 1 2 @ ~ 1 0 07422036 -power_grid n 1 3 @ #p %p 1 0 03997027 -power_hammer n 1 2 @ ~ 1 0 03481521 -power_hunger n 1 1 @ 1 0 04836583 -power_law n 1 2 @ ; 1 0 05996110 -power_line n 1 2 @ #p 1 0 03995535 -power_loading n 1 1 @ 1 0 13826614 -power_loom n 1 1 @ 1 0 03995661 -power_meter n 1 1 @ 1 0 03272810 -power_module n 1 1 @ 1 0 03995746 -power_mower n 1 3 ! @ ~ 1 0 03995856 -power_of_appointment n 1 1 @ 1 0 05034048 -power_of_attorney n 1 3 @ ~ ; 1 0 06530789 -power_outage n 1 2 @ ~ 1 0 07422036 -power_pack n 1 1 @ 1 0 03996004 -power_plant n 1 4 @ ~ #p %p 1 1 03996655 -power_play n 3 2 @ ; 3 0 00788097 00560866 00558396 -power_point n 1 2 @ ; 1 0 03974671 -power_politics n 1 1 @ 1 0 07148938 -power_pylon n 1 1 @ 1 0 04028581 -power_saw n 1 3 @ ~ %p 1 1 03996145 -power_series n 1 1 @ 1 0 05862970 -power_service n 1 1 @ 1 0 08186393 -power_shovel n 1 2 @ ~ 1 0 03996416 -power_station n 1 4 @ ~ #p %p 1 0 03996655 -power_steering n 1 1 @ 1 0 03996849 -power_structure n 1 3 @ #p %m 1 0 08376051 -power_system n 1 3 @ #p %p 1 0 03997027 -power_takeoff n 1 1 @ 1 0 03997274 -power_tool n 1 2 @ ~ 1 1 03997484 -power_train n 1 3 @ ~ #p 1 0 03431745 -power_trip n 1 2 @ ; 1 0 00811036 -power_unit n 1 2 @ ~ 1 0 13635108 -power_user n 1 2 @ ; 1 0 10462588 -power_walking n 1 1 @ 1 0 00629009 -power_worker n 1 1 @ 1 0 10462751 -powerboat n 1 3 @ ~ %p 1 0 03790230 -powerbroker n 1 1 @ 1 0 10462217 -powerfulness n 1 5 ! @ ~ = + 1 1 05190804 -powerhouse n 3 4 @ ~ #p %p 3 0 10462429 08081142 03996655 -powerlessness n 1 4 ! @ ~ + 1 0 05204637 -powhatan n 3 2 @ ~ 3 0 11245382 09666476 06911962 -powwow n 2 4 @ %m + ; 2 1 07144416 08322430 -powys n 3 1 @ 3 0 11245902 11245744 11245590 -pox n 2 3 @ ~ %p 2 0 14133985 14124232 -poxvirus n 1 2 @ ~ 1 0 01333731 -poyang n 1 2 @ #p 1 0 09398533 -poyou n 1 2 @ #m 1 0 02455720 -pozsony n 1 2 @ #p 1 0 08759263 -ppk n 1 2 @ ; 1 0 08029908 -pplo n 1 1 @ 1 0 01374063 -ppp n 1 1 @ 1 0 00689729 -pr n 3 4 @ #s #p %p 3 0 14651212 08752974 07247925 -pr_man n 1 1 @ 1 0 10469611 -practicability n 1 4 ! @ ~ + 1 0 05152150 -practicableness n 1 4 ! @ ~ + 1 0 05152150 -practical_application n 1 2 @ ~ 1 0 00949134 -practical_joke n 1 2 @ ~ 1 0 00514128 -practical_joker n 1 1 @ 1 0 10463714 -practical_nurse n 1 1 @ 1 1 10258304 -practical_politics n 1 1 @ 1 0 06149038 -practicality n 1 5 ! @ ~ = + 1 0 05151088 -practice n 5 3 @ ~ + 5 5 00410247 00894552 00411048 00631378 05667196 -practice_game n 1 1 @ 1 0 00456899 -practice_of_law n 1 3 @ ; - 1 0 00611143 -practice_of_medicine n 1 4 @ ~ ; - 1 0 00612160 -practice_range n 1 2 @ ~ 1 0 03997745 -practice_session n 1 2 @ ~ 1 1 00894552 -practice_teacher n 1 1 @ 1 0 10666259 -practician n 1 2 @ ~ 1 0 10462860 -practitioner n 1 2 @ ~ 1 1 10462860 -praenomen n 1 1 @ 1 0 06337594 -praesidium n 1 1 @ 1 0 08327390 -praetor n 1 2 @ + 1 0 10463028 -praetorian n 1 2 @ #m 1 0 10463259 -praetorian_guard n 2 3 @ #m %m 2 0 10463259 08429346 -praetorium n 1 1 @ 1 0 03997875 -praetorship n 1 2 @ + 1 0 00596193 -prag n 1 2 @ #p 1 0 08757926 -pragmatic n 1 1 @ 1 0 06541578 -pragmatic_sanction n 1 1 @ 1 0 06541578 -pragmatics n 1 1 @ 1 0 06179492 -pragmatism n 2 4 @ ~ + ; 2 0 05974798 05151869 -pragmatist n 2 2 @ + 2 0 10463582 10463386 -prague n 1 2 @ #p 1 0 08757926 -praha n 1 2 @ #p 1 0 08757926 -praia n 1 2 @ #p 1 0 08718094 -prairia_sabbatia n 1 1 @ 1 0 12298637 -prairial n 1 2 @ #p 1 0 15177244 -prairie n 1 2 @ ~ 1 1 08619524 -prairie_anemone n 1 1 @ 1 0 11737752 -prairie_aster n 1 1 @ 1 0 11935469 -prairie_berry n 1 1 @ 1 0 12894930 -prairie_bird's-foot_trefoil n 1 1 @ 1 0 12545232 -prairie_chicken n 1 3 @ ~ #m 1 0 01798484 -prairie_coneflower n 2 2 @ #m 2 0 12007406 12007196 -prairie_cordgrass n 1 1 @ 1 0 12139921 -prairie_crab n 1 2 @ ~ 1 0 12635744 -prairie_dock n 1 2 @ #m 1 0 12001294 -prairie_dog n 1 3 @ ~ #m 1 1 02359324 -prairie_fire n 1 1 @ 1 0 07303988 -prairie_fowl n 1 3 @ ~ #m 1 0 01798484 -prairie_fox n 1 2 @ #m 1 0 02119634 -prairie_gentian n 1 2 @ #m 1 0 12291959 -prairie_golden_aster n 1 2 @ #m 1 0 11981475 -prairie_gourd n 2 4 @ #m #p %p 2 0 12162758 12162425 -prairie_gourd_vine n 1 3 @ #m %p 1 0 12162425 -prairie_grass n 1 1 @ 1 0 12133462 -prairie_grouse n 1 3 @ ~ #m 1 0 01798484 -prairie_lotus n 1 1 @ 1 0 12545232 -prairie_mallow n 1 1 @ 1 0 12187891 -prairie_marmot n 1 3 @ ~ #m 1 0 02359324 -prairie_mimosa n 1 2 @ #m 1 0 12526178 -prairie_orchid n 1 1 @ 1 0 12067433 -prairie_rattler n 1 2 @ #m 1 0 01756089 -prairie_rattlesnake n 1 2 @ #m 1 1 01756089 -prairie_rocket n 2 2 @ #m 2 0 11887310 11883628 -prairie_sage n 1 1 @ 1 0 11930788 -prairie_sagewort n 1 2 @ #m 1 0 11930571 -prairie_schooner n 1 2 @ #m 1 0 03122295 -prairie_smoke n 1 1 @ 1 0 12632335 -prairie_soil n 1 1 @ 1 0 14997274 -prairie_star n 1 2 @ #m 1 0 12800049 -prairie_state n 1 3 @ #p %p 1 0 09082540 -prairie_sunflower n 1 1 @ 1 0 11979527 -prairie_trefoil n 1 1 @ 1 0 12545232 -prairie_trillium n 1 1 @ 1 0 12468545 -prairie_vole n 1 2 @ #m 1 0 02341616 -prairie_wagon n 1 2 @ #m 1 0 03122295 -prairie_wake-robin n 1 1 @ 1 0 12468545 -prairie_white-fringed_orchid n 1 1 @ 1 0 12078451 -prairie_white-fringed_orchis n 1 1 @ 1 0 12067433 -prairie_willow n 1 2 @ #m 1 0 12728508 -prairie_wolf n 1 2 @ ~ 1 0 02114855 -praise n 2 3 @ ~ + 2 1 06693198 06693502 -praiseworthiness n 1 2 @ + 1 0 04807342 -praisworthiness n 1 1 @ 1 0 05139342 -prajapati n 1 1 @ 1 0 09527707 -prakrit n 2 3 @ ~ + 2 0 06973505 06973092 -praline n 1 1 @ 1 0 07608866 -pram n 1 2 @ ~ 1 0 02766534 -prance n 1 2 @ + 1 0 00290125 -prancer n 1 2 @ + 1 0 02378870 -prang n 1 2 @ ; 1 0 07302164 -prank n 2 3 @ ~ + 2 1 00513401 00427580 -prankishness n 1 2 @ + 1 0 04909721 -prankster n 1 2 @ + 1 0 10463714 -praseodymium n 1 2 @ #s 1 0 14651212 -prat n 1 2 @ #p 1 0 05559256 -prate n 1 2 @ + 1 0 07137129 -prater n 1 2 @ + 1 0 09911570 -pratfall n 2 2 @ ~ 2 0 00077169 00074790 -pratincole n 1 2 @ #m 1 0 02038993 -prattle n 1 2 @ + 1 0 07137129 -prattler n 1 2 @ + 1 0 10463943 -praunus n 1 3 @ #m %m 1 0 01989390 -pravachol n 1 2 @ ; 1 0 03997980 -pravastatin n 1 1 @ 1 0 03997980 -prawn n 2 6 @ ~ #m #s #p + 2 0 07794159 01987545 -praxis n 1 1 @ 1 0 00411048 -praxiteles n 1 1 @ 1 0 09527825 -praya n 1 1 @ 1 0 01913346 -prayer n 5 3 @ ~ + 5 4 01041968 07189130 07186828 06455990 10464052 -prayer_beads n 1 1 @ 1 0 04109335 -prayer_book n 1 2 @ ~ 1 0 06416946 -prayer_mat n 1 2 @ %p 1 0 03998194 -prayer_meeting n 1 1 @ 1 1 01032892 -prayer_of_azariah_and_song_of_the_three_children n 1 2 @ #p 1 0 06458836 -prayer_rug n 1 2 @ %p 1 0 03998194 -prayer_service n 1 1 @ 1 0 01032892 -prayer_shawl n 1 2 @ ; 1 0 03998333 -prayer_wheel n 1 1 @ 1 0 06418375 -prayerbook n 1 2 @ ~ 1 0 06416946 -praying_mantid n 1 1 @ 1 0 02236241 -praying_mantis n 1 1 @ 1 0 02236241 -prazosin n 1 1 @ 1 0 03998525 -prc n 1 5 @ #p %m %p - 1 0 08723006 -pre-eclampsia n 1 1 @ 1 0 14191442 -pre-empt n 1 1 @ 1 0 06738008 -pre-emption n 4 3 @ ~ ; 4 0 05957238 05178571 05178394 00085041 -pre-emptive_strike n 1 1 @ 1 0 01247156 -pre-emptor n 2 1 @ 2 0 10465002 10464870 -pre-raphaelite n 1 3 @ ~ + 1 0 10465248 -pre-socratic n 1 1 @ 1 0 10469511 -preacher n 1 3 @ ~ + 1 1 10464178 -preacher_man n 1 2 @ ~ 1 0 10464178 -preachification n 1 2 @ + 1 0 06743230 -preaching n 2 4 @ ~ + ; 2 2 07243837 06712325 -preachment n 1 2 @ + 1 0 07244949 -preakness n 1 1 @ 1 0 07462269 -preamble n 1 3 @ #p + 1 1 06398090 -prearrangement n 1 3 @ ~ + 1 0 05795334 -prebend n 1 1 @ 1 0 13294403 -prebendary n 1 1 @ 1 0 10464432 -precambrian n 1 2 @ %p 1 0 15128711 -precambrian_aeon n 1 2 @ %p 1 0 15128711 -precambrian_eon n 1 2 @ %p 1 0 15128711 -precambrian_period n 1 2 @ %p 1 0 15128711 -precariousness n 2 3 @ ~ + 2 0 04856621 04756887 -precaution n 3 3 @ ~ + 3 3 00822970 04664314 05615869 -precava n 1 1 @ 1 0 05423095 -precedence n 3 3 @ ~ + 3 1 13949802 05047279 01257145 -precedency n 3 3 @ ~ + 3 0 13949802 05047279 01257145 -precedent n 4 4 @ + ; - 4 2 05821486 06535035 08453722 06600282 -precentor n 1 2 @ + 1 0 09919771 -precentorship n 1 2 @ + 1 0 00596290 -precentral_gyrus n 1 2 @ #p 1 0 05492806 -precept n 2 3 @ ~ #p 2 0 06655388 06185955 -preceptor n 1 3 @ + ; 1 0 10464542 -preceptorship n 1 2 @ + 1 0 00596393 -precession n 2 2 @ + 2 0 14005728 01257145 -precession_of_the_equinoxes n 1 1 @ 1 0 13539894 -prechlorination n 1 1 @ 1 1 13540091 -precinct n 1 2 @ ~ 1 1 08538426 -preciosity n 1 2 @ + 1 0 04788332 -precious_coral n 1 1 @ 1 0 14823036 -precious_metal n 1 2 @ ~ 1 0 13371489 -precious_stone n 1 2 @ ~ 1 0 03596787 -preciousness n 3 3 @ ~ + 3 0 05146272 05141222 04788332 -precipice n 1 2 @ + 1 1 09398677 -precipitance n 1 2 @ + 1 0 05060476 -precipitancy n 1 2 @ + 1 0 05060476 -precipitant n 1 3 @ ~ + 1 0 14997393 -precipitate n 1 3 @ ~ + 1 1 14591635 -precipitateness n 1 2 @ + 1 0 05060476 -precipitation n 6 4 @ ~ %p + 6 0 13772653 13540199 11494638 07434320 05061149 05060189 -precipitator n 1 2 @ + 1 0 03998673 -precipitin n 1 1 @ 1 1 15027762 -precipitousness n 2 2 @ + 2 0 05069624 05060476 -precis n 1 3 @ ~ + 1 0 06468951 -preciseness n 2 3 ! @ + 2 0 04821451 04803880 -precision n 1 2 ! @ 1 1 04803880 -precision_cookie n 1 1 @ 1 0 06387864 -precision_rifle n 1 3 @ ~ ; 1 0 04250224 -preclinical_phase n 1 1 @ 1 0 00794123 -preclinical_test n 1 1 @ 1 0 00794123 -preclinical_trial n 1 1 @ 1 0 00794123 -preclusion n 1 2 @ + 1 0 01079042 -precocious_dentition n 1 1 @ 1 0 13540322 -precociousness n 1 2 @ + 1 0 05620294 -precocity n 1 2 @ + 1 0 05620294 -precognition n 1 1 @ 1 0 07256932 -preconceived_idea n 1 1 @ 1 0 05949937 -preconceived_notion n 1 1 @ 1 1 05949937 -preconceived_opinion n 1 1 @ 1 0 05949937 -preconception n 2 3 @ ~ + 2 1 05949937 06201908 -precondition n 3 3 @ ~ + 3 0 06755568 05893356 05892880 -precordium n 1 2 @ + 1 0 05493002 -precursor n 3 3 @ ~ ; 3 0 14583066 09627117 06802571 -predation n 2 2 @ + 2 0 00967310 00711897 -predator n 2 2 @ ~ 2 0 10293172 02152740 -predatory_animal n 1 2 @ ~ 1 0 02152740 -predecessor n 2 3 @ ~ + 2 1 10464711 06802571 -predestinarian n 1 1 @ 1 0 10080508 -predestinarianism n 1 1 @ 1 0 05946582 -predestination n 2 4 @ ~ + ; 2 0 07330666 05966129 -predestinationist n 1 2 @ + 1 0 10080508 -predetermination n 3 4 @ ~ + ; 3 0 05966129 05838530 00155970 -predicament n 1 2 @ ~ 1 1 14408646 -predicate n 2 3 @ + ; 2 0 06316813 06316626 -predicate_calculus n 1 2 @ %p 1 0 06165364 -predication n 1 3 @ + ; 1 0 06733227 -predicator n 1 2 @ + 1 1 06316376 -predictability n 1 4 ! @ ~ + 1 0 04756025 -prediction n 2 3 @ ~ + 2 1 05775081 06748969 -predictor n 3 4 @ ~ #p + 3 0 10102506 05824313 03998867 -predictor_variable n 1 2 @ ; 1 0 05863736 -predilection n 2 2 @ ~ 2 1 06200344 07498210 -predisposition n 3 4 @ ~ = + 3 0 14531772 06200178 04943464 -prednisolone n 1 1 @ 1 0 14753188 -prednisone n 1 1 @ 1 1 14753414 -predominance n 2 2 @ + 2 1 14442749 04707409 -predomination n 2 2 @ + 2 1 14442749 04707409 -preeclampsia n 1 1 @ 1 0 14191442 -preemie n 1 1 @ 1 0 10465451 -preeminence n 1 3 @ ~ + 1 0 14435445 -preemployment_training_program n 1 1 @ 1 1 05910328 -preempt n 1 1 @ 1 0 06738008 -preemption n 4 4 @ ~ + ; 4 0 05957238 05178571 05178394 00085041 -preemptive_bid n 1 1 @ 1 0 06738008 -preemptive_right n 1 1 @ 1 0 13241182 -preemptor n 2 2 @ + 2 0 10465002 10464870 -preen_gland n 1 2 @ #p 1 0 02468017 -preexistence n 1 2 @ + 1 1 13957117 -prefab n 1 2 @ + 1 0 03999064 -prefabrication n 1 2 @ + 1 0 00926468 -preface n 1 3 @ #p + 1 1 06397903 -prefect n 1 1 @ 1 0 10465128 -prefecture n 2 3 @ + ; 2 0 08626947 00596496 -preference n 4 3 @ ~ + 4 2 07498210 06200344 05791452 05158095 -preference_shares n 1 2 @ ~ 1 0 13335974 -preferment n 2 2 @ + 2 1 00198631 07237647 -preferred_shares n 1 2 @ ~ 1 0 13335974 -preferred_stock n 1 2 @ ~ 1 0 13335974 -prefiguration n 2 2 @ + 2 0 05939109 05776015 -prefix n 1 3 @ ~ + 1 1 06308304 -prefix_notation n 1 1 @ 1 0 06814443 -prefixation n 1 2 @ + 1 0 00927845 -preformation n 1 2 @ + 1 0 05992949 -prefrontal_cortex n 1 2 @ #p 1 0 05493992 -prefrontal_leucotomy n 1 2 @ ~ 1 0 00684128 -prefrontal_leukotomy n 1 2 @ ~ 1 0 00684128 -prefrontal_lobe n 1 2 @ #p 1 0 05493992 -prefrontal_lobotomy n 1 2 @ ~ 1 0 00684128 -pregnancy n 1 5 @ ~ %p + - 1 0 14046202 -pregnancy_test n 1 2 @ ~ 1 0 05743870 -pregnanediol n 1 1 @ 1 0 15111437 -pregnant_chad n 1 1 @ 1 0 14835817 -prehension n 1 3 @ ~ + 1 0 00812274 -prehensor n 1 1 @ 1 0 01784925 -prehistoric_culture n 1 2 @ %p 1 0 15254550 -prehistory n 1 3 @ %p + 1 0 15254550 -preindication n 1 2 @ ~ 1 0 07286014 -preinvasive_cancer n 1 1 @ 1 0 14247035 -prejudgement n 1 2 @ + 1 0 05789666 -prejudgment n 1 1 @ 1 0 05789666 -prejudice n 1 3 @ ~ + 1 1 06201908 -prelacy n 2 1 @ 2 0 08113710 00596592 -prelate n 1 2 @ ~ 1 0 09807075 -prelature n 2 1 @ 2 0 08113710 00596592 -prelim n 2 1 @ 2 0 07457599 07199013 -preliminary n 2 2 @ + 2 0 07457599 07327013 -preliminary_exam n 1 1 @ 1 0 07199013 -preliminary_examination n 1 1 @ 1 0 07199013 -preliminary_prospectus n 1 1 @ 1 0 07165778 -prelims n 1 1 @ 1 0 06390688 -prelone n 1 2 @ ; 1 0 14753188 -prelude n 2 3 @ ~ + 2 1 07327013 07040543 -premature_baby n 1 1 @ 1 0 10465451 -premature_ejaculation n 1 1 @ 1 0 13540429 -premature_infant n 1 1 @ 1 0 10465451 -premature_labor n 1 1 @ 1 0 14048309 -premature_labour n 1 1 @ 1 0 14048309 -premature_ventricular_contraction n 1 1 @ 1 0 14362841 -prematureness n 1 2 @ + 1 0 14426736 -prematurity n 1 2 @ + 1 0 14426736 -premeditation n 2 3 @ + ; 2 0 05796617 05796222 -premenstrual_syndrome n 1 1 @ 1 0 14308311 -premie n 1 1 @ 1 0 10465451 -premier n 2 4 @ ~ #m + 2 0 09907196 09906986 -premiere n 1 2 @ + 1 1 06893285 -premiership n 1 2 @ + 1 0 00596692 -premise n 1 3 @ ~ + 1 1 06753800 -premises n 1 1 @ 1 1 08627161 -premiss n 1 3 @ ~ + 1 0 06753800 -premium n 5 2 @ ; 5 1 13301620 13413986 13324297 13272283 13272059 -premium_bond n 1 2 @ ; 1 0 13418047 -premix n 1 2 @ ~ 1 1 07882886 -premolar n 1 1 @ 1 0 05307358 -premonition n 2 2 @ ~ 2 1 07522128 07225450 -prenanthes n 1 3 @ #m %m 1 0 12004686 -prenanthes_alba n 1 2 @ #m 1 0 11997160 -prenanthes_purpurea n 1 2 @ #m 1 0 12004987 -prenanthes_serpentaria n 1 2 @ #m 1 0 11997409 -prenatal_diagnosis n 1 2 @ ~ 1 0 00153288 -prentice n 1 2 @ ~ 1 0 09801864 -preoccupancy n 2 3 @ ~ + 2 0 05700087 00087073 -preoccupation n 3 3 @ ~ + 3 2 05836921 05700087 00087073 -preordination n 1 4 @ ~ + ; 1 0 05966129 -prep n 1 2 @ #p 1 0 00729108 -prep_school n 1 2 @ ~ 1 1 08409969 -preparation n 8 9 ! @ ~ #p %p = + ; - 8 3 01143040 14873641 05794694 14031108 07027942 00893955 00729108 00243918 -preparation_fire n 1 1 @ 1 0 00992102 -preparatory_school n 1 2 @ ~ 1 1 08409969 -preparedness n 1 5 @ ~ = + ; 1 0 14031108 -prepayment n 1 2 @ + 1 0 01121492 -preponderance n 3 2 @ + 3 0 05191486 05122099 05028159 -preposition n 2 3 @ + ; 2 1 06325145 06483992 -prepositional_object n 1 1 @ 1 0 06310449 -prepositional_phrase n 1 1 @ 1 0 06317247 -prepossession n 2 2 @ + 2 0 13924863 05949937 -prepotency n 1 1 @ 1 0 14442749 -prepuberty n 1 3 @ #p + 1 0 15148081 -prepuce n 2 2 @ #p 2 0 05527085 05526957 -prepyloric_vein n 1 1 @ 1 0 05378022 -prerequisite n 1 3 @ ~ + 1 1 05892427 -prerogative n 1 2 @ ~ 1 0 05178715 -pres_young n 1 1 @ 1 0 11403692 -presage n 2 3 @ ~ + 2 0 07522536 07286368 -presbyope n 1 1 @ 1 0 10465635 -presbyopia n 1 2 @ + 1 0 14555214 -presbyter n 1 1 @ 1 0 10465831 -presbyterian n 1 2 @ #m 1 1 10465922 -presbyterian_church n 1 2 @ %m 1 0 08091891 -presbyterianism n 1 1 @ 1 0 06232499 -presbytery n 1 2 @ #p 1 0 03999160 -presbytes n 1 3 @ #m %m 1 0 02488149 -presbytes_entellus n 1 1 @ 1 0 02488415 -preschool n 1 2 @ ~ 1 0 08276539 -preschooler n 1 1 @ 1 0 10466060 -prescience n 1 2 @ + 1 0 05919431 -prescott n 1 2 @ #p 1 0 09058635 -prescript n 1 3 @ ~ #p 1 0 06652242 -prescription n 4 3 @ ~ + 4 2 06788565 03999280 06366002 06365808 -prescription_drug n 1 3 ! @ ~ 1 0 03999280 -prescription_medicine n 1 3 ! @ ~ 1 0 03999280 -prescriptive_grammar n 1 2 @ ; 1 0 06175967 -prescriptive_linguistics n 1 2 ! @ 1 0 06181893 -prescriptivism n 2 2 @ ; 2 0 06250597 06250444 -preseason n 1 2 @ ~ 1 1 15240119 -presence n 6 5 ! @ ~ = + 6 5 13957601 08642632 09547528 05917174 04910377 01233802 -presence_chamber n 1 1 @ 1 0 03999621 -presence_of_mind n 1 1 @ 1 0 04862747 -presenile_dementia n 1 2 @ ~ 1 0 14395955 -present n 3 3 @ ~ + 3 2 15119536 13268842 06329734 -present_moment n 1 1 @ 1 0 15120050 -present_participle n 1 1 @ 1 0 06331014 -present_perfect n 1 1 @ 1 0 13806404 -present_perfect_tense n 1 1 @ 1 0 13806404 -present_progressive n 1 1 @ 1 0 13805974 -present_progressive_tense n 1 1 @ 1 0 13805974 -present_tense n 1 2 @ ~ 1 0 06329734 -present_times n 1 1 @ 1 0 15120528 -presentation n 7 4 @ ~ + ; 7 5 01048697 00521562 06891022 07167415 03210940 07217349 05081434 -presenter n 3 3 @ ~ + 3 0 10466387 10466198 10025730 -presentiment n 1 2 @ ~ 1 0 07522128 -presentism n 1 1 @ 1 0 05966602 -presentist n 1 1 @ 1 0 10466564 -presentment n 3 4 @ ~ + ; 3 1 01187463 07191162 00521562 -presentness n 1 4 ! @ ~ + 1 1 05050115 -preservation n 4 3 @ ~ + 4 1 00819024 14578940 13540610 07419599 -preservationist n 1 1 @ 1 0 10466759 -preservative n 1 3 @ ~ + 1 0 14997529 -preserve n 3 3 @ ~ + 3 1 14515463 08587439 07642471 -preserver n 4 3 @ ~ + 4 0 10514962 10467052 10466918 03663531 -preserves n 1 2 @ ~ 1 0 07642471 -presidency n 2 3 @ ~ + 2 1 15266265 00596807 -president n 6 4 @ ~ #p + 6 6 10468559 10467395 10467179 10468962 10468750 00597265 -president_abraham_lincoln n 1 1 @ 1 0 11132462 -president_adams n 2 1 @ 2 0 10808353 10808200 -president_andrew_johnson n 1 1 @ 1 0 11088059 -president_arthur n 1 1 @ 1 0 10825180 -president_benjamin_harrison n 1 1 @ 1 0 11031668 -president_buchanan n 1 1 @ 1 0 10869931 -president_bush n 2 1 @ 2 0 10875910 10875468 -president_carter n 1 1 @ 1 0 10884831 -president_cleveland n 1 1 @ 1 0 10902051 -president_clinton n 1 1 @ 1 0 10902591 -president_coolidge n 1 1 @ 1 0 10908919 -president_eisenhower n 1 1 @ 1 0 10954966 -president_fillmore n 1 1 @ 1 0 10970864 -president_ford n 1 1 @ 1 0 10974740 -president_franklin_roosevelt n 1 1 @ 1 0 11270023 -president_garfield n 1 1 @ 1 0 10990733 -president_george_w._bush n 1 1 @ 1 0 10875910 -president_grant n 1 1 @ 1 0 11011123 -president_harding n 1 1 @ 1 0 11028446 -president_harrison n 2 1 @ 2 0 11031668 11031420 -president_hayes n 1 1 @ 1 0 11036140 -president_hoover n 1 1 @ 1 0 11058633 -president_jefferson n 1 1 @ 1 0 11081828 -president_john_adams n 1 1 @ 1 0 10808200 -president_john_f._kennedy n 1 1 @ 1 0 11101000 -president_john_quincy_adams n 1 1 @ 1 0 10808353 -president_johnson n 2 1 @ 2 0 11088346 11088059 -president_kennedy n 1 1 @ 1 0 11101000 -president_lincoln n 1 1 @ 1 0 11132462 -president_lyndon_johnson n 1 1 @ 1 0 11088346 -president_madison n 1 1 @ 1 0 11148486 -president_mckinley n 1 1 @ 1 0 11169418 -president_monroe n 1 1 @ 1 0 11186042 -president_nixon n 1 1 @ 1 0 11208172 -president_of_the_united_states n 2 3 @ ~ #p 2 1 10467395 00597265 -president_pierce n 1 1 @ 1 0 11234813 -president_polk n 1 1 @ 1 0 11240733 -president_reagan n 1 1 @ 1 0 11255460 -president_roosevelt n 2 1 @ 2 0 11270023 11269697 -president_taft n 1 1 @ 1 0 11328714 -president_taylor n 1 1 @ 1 0 11333237 -president_theodore_roosevelt n 1 1 @ 1 0 11269697 -president_truman n 1 1 @ 1 0 11349739 -president_tyler n 1 1 @ 1 0 11354145 -president_van_buren n 1 1 @ 1 0 11358719 -president_washington n 1 1 @ 1 0 11375418 -president_william_henry_harrison n 1 1 @ 1 0 11031420 -president_wilson n 1 1 @ 1 0 11390855 -presidential_directive n 1 1 @ 1 0 07170282 -presidential_term n 1 1 @ 1 0 15266265 -presidents'_day n 1 3 @ #p ; 1 0 15187619 -presidentship n 1 3 @ ~ + 1 0 00596807 -presiding_officer n 1 2 @ ~ 1 0 10469346 -presidio n 1 1 @ 1 0 03999763 -presidium n 1 1 @ 1 0 08327390 -presley n 1 1 @ 1 0 11246040 -press n 9 4 @ ~ %p + 9 3 14451349 06263369 04000311 08183398 04550184 04000480 03999992 00627013 00113113 -press-up n 1 2 @ ~ 1 0 00629318 -press_agency n 1 2 @ ~ 1 0 08355075 -press_agent n 1 1 @ 1 0 10469611 -press_association n 1 2 @ ~ 1 0 08355075 -press_box n 1 2 @ ; 1 0 04000592 -press_clipping n 1 1 @ 1 1 06612649 -press_conference n 1 2 @ ~ 1 1 07144834 -press_corps n 1 2 @ #p 1 1 08403435 -press_cutting n 1 1 @ 1 0 06612649 -press_gallery n 1 1 @ 1 0 04000716 -press_gang n 1 1 @ 1 0 08216408 -press_lord n 1 1 @ 1 0 10469786 -press_of_canvas n 1 1 @ 1 0 04000998 -press_of_sail n 1 1 @ 1 0 04000998 -press_photographer n 1 1 @ 1 0 10469874 -press_release n 1 1 @ 1 0 06747484 -press_run n 1 2 @ ~ 1 0 15261972 -press_stud n 1 1 @ 1 0 04248209 -pressburg n 1 2 @ #p 1 0 08759263 -pressing n 2 3 @ ~ + 2 1 00113113 04000867 -pressman n 2 2 @ ~ 2 0 10475297 09966710 -pressmark n 1 1 @ 1 0 06818439 -pressor n 1 2 @ ~ 1 0 04522421 -pressure n 7 3 @ ~ + 7 5 11495041 05195362 00113113 14451349 05724475 14477076 11429458 -pressure-feed_lubricating_system n 1 3 @ #p %p 1 0 03695122 -pressure_cabin n 1 1 @ 1 0 04001132 -pressure_cooker n 1 1 @ 1 0 04001265 -pressure_dome n 1 1 @ 1 1 04001397 -pressure_feed n 1 3 @ #p %p 1 0 03695122 -pressure_gage n 1 2 @ ~ 1 0 04001499 -pressure_gauge n 1 2 @ ~ 1 0 04001499 -pressure_group n 1 2 @ ~ 1 0 08375526 -pressure_level n 1 2 @ ~ 1 0 11495041 -pressure_point n 3 2 @ #p 3 0 08622340 05687654 05239039 -pressure_sensation n 1 1 @ 1 0 05724475 -pressure_sore n 1 1 @ 1 0 14212126 -pressure_suit n 1 2 @ ~ 1 0 04001845 -pressure_unit n 1 2 @ ~ 1 0 13607985 -pressurized_water_reactor n 1 1 @ 1 0 04001661 -prestidigitation n 1 1 @ 1 0 00552312 -prestidigitator n 1 2 @ ~ 1 0 10280674 -prestige n 1 2 @ + 1 1 14435809 -prestigiousness n 1 2 @ + 1 0 14435809 -presumption n 4 4 @ ~ + ; 4 1 05893356 05781347 04838727 01225562 -presumptuousness n 1 3 @ ~ + 1 0 04838727 -presupposition n 1 2 @ + 1 1 05779923 -preteen n 1 2 @ + 1 0 09627263 -preteenager n 1 1 @ 1 0 09627263 -pretence n 5 2 @ ~ 5 2 04788853 04678908 06759349 05769930 00754956 -pretend n 1 2 @ + 1 0 00755500 -pretender n 3 3 @ ~ + 3 0 10469979 10201535 10195593 -pretending n 1 3 @ ~ + 1 0 00754956 -pretense n 5 3 @ ~ + 5 1 00754956 06759349 05769930 04788853 04678908 -pretension n 3 3 @ ~ + 3 1 04788853 06730371 04788982 -pretentiousness n 2 4 ! @ ~ + 2 0 04817923 04788982 -preterist n 1 1 @ 1 0 10470132 -preterit n 1 1 @ 1 0 13806614 -preterite n 1 1 @ 1 0 13806614 -preterition n 1 1 @ 1 0 07104733 -preterm_baby n 1 1 @ 1 0 10465451 -preterm_infant n 1 1 @ 1 0 10465451 -pretermission n 1 2 @ + 1 0 05707146 -pretext n 2 2 @ ~ 2 1 06759776 04678908 -pretor n 1 2 @ + 1 0 10463028 -pretoria n 1 2 @ #p 1 0 09000272 -pretorium n 1 1 @ 1 0 03997875 -pretrial n 1 2 @ ; 1 0 07145026 -pretrial_conference n 1 2 @ ; 1 0 07145026 -prettiness n 1 2 @ + 1 1 04685649 -pretzel n 1 2 @ ~ 1 0 07695742 -preussen n 1 4 @ #p %m %p 1 0 08775784 -prevacid n 1 2 @ ; 1 0 14777277 -prevailing_party n 1 2 @ ; 1 0 10470314 -prevailing_westerly n 1 1 @ 1 0 11525614 -prevailing_wind n 1 2 @ ~ 1 0 11497586 -prevalence n 3 4 @ ~ + ; 3 1 04765355 13824114 05122099 -prevarication n 3 3 @ ~ + 3 0 06756831 04825383 00751944 -prevaricator n 1 3 @ ~ + 1 0 10256537 -preventative n 3 2 @ ~ 3 0 04002026 03520811 03096593 -prevention n 1 3 @ ~ + 1 1 01077350 -preventive n 3 3 @ ~ + 3 0 04002026 03520811 03096593 -preventive_attack n 1 1 @ 1 0 00978005 -preventive_medicine n 1 1 @ 1 1 00613282 -preventive_strike n 1 1 @ 1 0 00978005 -preview n 2 3 @ ~ + 2 0 06888674 06888506 -previous_question n 1 1 @ 1 0 07163803 -prevision n 4 3 @ ~ + 4 1 05775829 05919431 05805277 05775081 -prevue n 1 1 @ 1 0 06888674 -prexy n 1 1 @ 1 0 10468750 -prey n 2 2 @ + 2 2 10470460 02152881 -priacanthidae n 1 3 @ #m %m 1 0 02571300 -priacanthus n 1 3 @ #m %m 1 0 02571486 -priacanthus_arenatus n 1 2 @ #m 1 0 02571810 -priam n 1 2 @ ; 1 0 11246255 -priapism n 1 1 @ 1 0 14210564 -priapus n 1 2 @ ; 1 0 09570794 -price n 7 3 @ ~ + 7 5 05145118 13303315 05163807 05141683 07167041 13303759 11246408 -price-fixing n 1 2 @ ; 1 0 01070708 -price-to-earnings_ratio n 1 2 @ ; 1 0 13824340 -price_bracket n 1 1 @ 1 0 08006405 -price_competition n 1 1 @ 1 1 13837200 -price_control n 1 1 @ 1 0 06657464 -price_cut n 1 1 @ 1 0 00352861 -price_cutting n 1 1 @ 1 1 00352861 -price_floor n 1 1 @ 1 0 06658269 -price_freeze n 1 1 @ 1 0 00809279 -price_gouging n 1 1 @ 1 0 05736893 -price_increase n 1 1 @ 1 0 05110107 -price_index n 1 2 @ ~ 1 0 06641181 -price_level n 1 2 @ ~ 1 0 06641181 -price_list n 1 1 @ 1 0 06494538 -price_of_admission n 1 1 @ 1 0 13321495 -price_reduction n 1 1 @ 1 0 00362103 -price_support n 1 1 @ 1 0 13267411 -price_tag n 1 1 @ 1 0 07273024 -price_war n 1 1 @ 1 0 13837200 -pricelessness n 1 3 @ ~ + 1 0 05141222 -pricing n 1 3 @ ~ + 1 1 05736736 -pricing_system n 1 1 @ 1 0 05904918 -prick n 4 4 @ ~ + ; 4 1 09815188 13904843 05526713 00944789 -pricker n 2 3 @ ~ + 2 0 13089631 02888898 -pricket n 2 2 @ #p 2 0 04002262 02430748 -pricking n 1 2 @ + 1 0 00944789 -prickle n 1 3 @ ~ + 1 0 13089631 -prickle-weed n 1 2 @ #m 1 0 12526178 -prickle_cell n 1 1 @ 1 0 05241662 -prickleback n 2 3 @ ~ #m 2 0 02615642 01454856 -prickliness n 1 2 @ + 1 0 04949799 -prickling n 1 3 @ ~ + 1 0 05722868 -prickly-edged_leaf n 1 1 @ 1 0 13161904 -prickly-seeded_spinach n 1 3 @ #m %p 1 0 11835568 -prickly_ash n 2 3 @ ~ #m 2 0 12714755 12222090 -prickly_custard_apple n 1 2 @ %p 1 0 11694664 -prickly_heat n 1 1 @ 1 0 14322106 -prickly_lettuce n 1 1 @ 1 0 11987511 -prickly_pear n 2 5 @ ~ #m #p %p 2 0 11851578 07768858 -prickly_pear_cactus n 1 4 @ ~ #m %p 1 0 11851578 -prickly_pine n 1 1 @ 1 0 11617631 -prickly_poppy n 2 3 @ ~ #m 2 0 11902709 11901597 -prickly_shield_fern n 1 1 @ 1 0 13200193 -prickteaser n 1 1 @ 1 0 09965134 -pride n 5 6 ! @ ~ %m = + 5 3 07508486 07531536 04886646 07995278 00758175 -pride-of-india n 2 2 @ #m 2 0 12695975 12329473 -pride_of_barbados n 1 2 @ #m 1 0 12490054 -pride_of_bolivia n 1 2 @ #m 1 0 12573911 -pride_of_california n 1 2 @ #m 1 0 12541606 -pride_of_place n 1 1 @ 1 0 08621472 -pridefulness n 1 3 @ ~ + 1 0 07508486 -prie-dieu n 1 1 @ 1 1 04002371 -priest n 2 3 @ ~ + 2 2 10470779 10471250 -priest-doctor n 1 2 @ ~ 1 0 10626194 -priest-penitent_privilege n 1 1 @ 1 0 05180677 -priestcraft n 2 1 @ 2 0 05908727 05643807 -priestess n 1 1 @ 1 0 10471570 -priesthood n 1 3 @ ~ + 1 0 08113443 -priestley n 1 1 @ 1 0 11246542 -prig n 1 1 @ 1 0 10617024 -priggishness n 1 2 @ + 1 0 04899980 -prilosec n 1 2 @ ; 1 0 14777606 -prima n 1 1 @ 1 0 07741623 -prima_ballerina n 1 1 @ 1 0 10471640 -prima_donna n 2 1 @ 2 0 10471859 10471732 -primacy n 1 1 @ 1 1 14435353 -primality n 1 1 @ 1 0 05208896 -primaquine n 1 1 @ 1 0 04002452 -primary n 4 4 @ ~ #p ; 4 2 00182571 02469080 09398769 04002629 -primary_amenorrhea n 1 1 @ 1 0 14303647 -primary_atypical_pneumonia n 1 2 @ ~ 1 0 14147964 -primary_care n 1 1 @ 1 0 00656033 -primary_care_physician n 1 1 @ 1 0 10471948 -primary_care_provider n 1 3 @ ~ #m 1 0 10165109 -primary_cell n 1 4 @ ~ #p %p 1 0 04540761 -primary_censorship n 1 1 @ 1 0 00822350 -primary_coil n 1 2 @ #p 1 0 04002629 -primary_color n 1 2 @ ~ 1 0 04957176 -primary_color_for_light n 1 2 @ ~ 1 0 04957589 -primary_color_for_pigments n 1 1 @ 1 0 04957356 -primary_colour n 1 2 @ ~ 1 0 04957176 -primary_colour_for_light n 1 2 @ ~ 1 0 04957589 -primary_colour_for_pigments n 1 1 @ 1 0 04957356 -primary_dentition n 1 1 @ 1 0 05282247 -primary_dysmenorrhea n 1 1 @ 1 0 14326305 -primary_election n 1 2 @ ~ 1 1 00182571 -primary_feather n 1 1 @ 1 0 02469080 -primary_health_care n 1 1 @ 1 0 01089297 -primary_quill n 1 1 @ 1 0 02469080 -primary_school n 1 2 @ ~ 1 0 08412749 -primary_sex_character n 1 1 @ 1 0 05007560 -primary_sex_characteristic n 1 1 @ 1 0 05007560 -primary_sexual_characteristic n 1 1 @ 1 0 05007560 -primary_solid_solution n 1 3 @ ~ #s 1 0 15051705 -primary_subtractive_color_for_light n 1 1 @ 1 0 04957854 -primary_subtractive_colour_for_light n 1 1 @ 1 0 04957854 -primary_syphilis n 1 1 @ 1 0 14134351 -primary_tooth n 1 2 @ #p 1 0 05306894 -primary_winding n 1 2 @ #p 1 0 04002629 -primate n 2 4 @ ~ #m + 2 1 09807075 02469914 -primates n 1 3 @ #m %m 1 1 02469588 -primateship n 1 2 @ + 1 0 00597532 -primatology n 1 1 @ 1 0 06073647 -primaxin n 1 1 @ 1 0 04002536 -prime n 4 2 @ ~ 4 1 13594005 15295045 15229784 15152409 -prime_factor n 1 1 @ 1 0 13594136 -prime_interest_rate n 1 1 @ 1 0 13319872 -prime_meridian n 1 2 @ ~ 1 0 08599292 -prime_minister n 2 3 @ ~ #m 2 2 09907196 09906986 -prime_mover n 1 1 @ 1 0 09504603 -prime_number n 1 1 @ 1 0 13594302 -prime_of_life n 1 1 @ 1 0 15152409 -prime_quantity n 1 2 @ ~ 1 0 13594005 -prime_time n 1 1 @ 1 1 15166897 -primer n 3 3 @ ~ + 3 1 06414948 03407122 03360845 -primer_coat n 1 2 @ ~ 1 0 03360845 -primidone n 1 1 @ 1 0 04002931 -primigravida n 1 2 @ ; 1 0 10472129 -priming n 3 2 @ ~ 3 1 01144046 03407122 03360845 -priming_coat n 1 2 @ ~ 1 0 03360845 -primipara n 1 3 @ + ; 1 0 10472274 -primitive n 3 3 @ ~ + 3 0 09627462 06295113 06294941 -primitive_art n 1 1 @ 1 0 03861959 -primitive_person n 1 2 @ ~ 1 0 09627462 -primitiveness n 1 2 @ + 1 0 14472624 -primitivism n 2 1 @ 2 0 14472624 04003110 -primness n 2 2 @ + 2 0 04901152 04899980 -primo n 1 2 @ #p 1 0 07031276 -primogenitor n 1 2 @ ~ 1 0 10126806 -primogeniture n 1 1 @ 1 0 13263257 -primordial_dwarf n 1 1 @ 1 0 10472447 -primordium n 1 1 @ 1 0 05298159 -primping n 1 2 @ + 1 1 00828559 -primrose n 1 3 @ ~ #m 1 0 12090890 -primrose_family n 1 3 @ #m %m 1 0 12090318 -primrose_jasmine n 1 1 @ 1 0 12306938 -primrose_path n 1 1 @ 1 0 00416129 -primula n 1 3 @ ~ #m 1 0 12090890 -primula_auricula n 1 1 @ 1 0 12091806 -primula_elatior n 1 1 @ 1 0 12091550 -primula_polyantha n 1 1 @ 1 0 12091953 -primula_sinensis n 1 1 @ 1 0 12091697 -primula_veris n 1 1 @ 1 0 12091377 -primula_vulgaris n 1 1 @ 1 0 12091213 -primulaceae n 1 3 @ #m %m 1 0 12090318 -primulales n 1 3 @ #m %m 1 0 12090041 -primum_mobile n 1 1 @ 1 0 09504603 -primus n 2 1 @ 2 0 10472690 04003241 -primus_stove n 1 1 @ 1 0 04003241 -prince n 1 4 @ ~ #m + 1 1 10472799 -prince's-feather n 2 2 @ #m 2 0 12601805 11823756 -prince's-plume n 3 2 @ #m 3 0 12601805 11897466 11823756 -prince's_pine n 1 3 @ ~ #m 1 0 12257570 -prince-of-wales'-heath n 1 1 @ 1 0 12229111 -prince-of-wales_feather n 1 2 @ #m 1 0 12954353 -prince-of-wales_fern n 1 2 @ #m 1 0 12954353 -prince-of-wales_plume n 1 2 @ #m 1 0 12954353 -prince_albert n 2 1 @ 2 0 10811540 04003359 -prince_albert's_yew n 1 2 @ #m 1 0 11659248 -prince_albert_yew n 1 2 @ #m 1 0 11659248 -prince_charles n 1 1 @ 1 0 10892416 -prince_charming n 1 1 @ 1 0 10473453 -prince_consort n 1 2 @ ~ 1 0 10473562 -prince_edward n 1 1 @ 1 0 10949952 -prince_edward_island n 1 3 @ #p %p 1 0 08828750 -prince_eugene_of_savoy n 1 1 @ 1 0 10962423 -prince_fumimaro_konoe n 1 1 @ 1 0 11108767 -prince_fumimaro_konoye n 1 1 @ 1 0 11108767 -prince_klemens_wenzel_nepomuk_lothar_von_metternich n 1 1 @ 1 0 11177532 -prince_of_darkness n 1 2 @ ; 1 0 09543353 -prince_of_smolensk n 1 1 @ 1 0 11113077 -prince_of_wales n 1 2 @ ~ 1 1 10473917 -prince_of_wales_heath n 1 1 @ 1 0 12229111 -prince_otto_eduard_leopold_von_bismarck n 1 1 @ 1 0 10851599 -prince_otto_von_bismarck n 1 1 @ 1 0 10851599 -prince_peter_kropotkin n 1 1 @ 1 0 11111194 -prince_philip n 1 1 @ 1 0 11232475 -prince_rupert n 1 1 @ 1 0 11274103 -princedom n 2 3 @ ~ + 2 0 14433115 08558488 -princeling n 2 1 @ 2 0 10473789 10473718 -princess n 1 3 @ ~ #m 1 0 10474064 -princess_diana n 1 1 @ 1 0 10933658 -princess_feather n 1 2 @ #m 1 0 12601805 -princess_grace_of_monaco n 1 1 @ 1 0 11099923 -princess_of_wales n 1 1 @ 1 0 10933658 -princess_pine n 1 1 @ 1 0 13223710 -princess_royal n 1 1 @ 1 0 10474343 -princeton n 2 4 @ #m #p %p 2 0 09114128 04003453 -princeton_university n 1 3 @ #m #p 1 0 04003453 -princeton_wordnet n 1 3 @ ; - 1 0 06639204 -princewood n 2 2 @ #m 2 0 12818601 12818346 -principal n 6 5 @ ~ #p + ; 6 3 13400662 10474645 10648696 13355868 10474950 10474446 -principal_axis n 1 1 @ 1 0 06010105 -principal_diagonal n 1 1 @ 1 0 08268636 -principal_investigator n 1 1 @ 1 0 10475163 -principal_sum n 1 1 @ 1 0 13355868 -principality n 1 2 @ ~ 1 0 08558488 -principality_of_andorra n 1 3 @ #p %m 1 0 09023118 -principality_of_liechtenstein n 1 4 @ #p %m %p 1 0 08960548 -principality_of_monaco n 1 4 @ #p %m %p 1 0 08967868 -principalship n 1 2 @ + 1 0 00597629 -principe n 1 2 @ #p 1 0 08993144 -principen n 1 2 @ ; 1 0 02705651 -principle n 6 4 @ ~ #p ; 6 6 05913538 05955323 05872477 05874232 06655388 05793210 -principle_of_equivalence n 1 2 @ ; 1 0 05990981 -principle_of_liquid_displacement n 1 2 @ ; 1 0 05991242 -principle_of_parsimony n 1 1 @ 1 0 05990738 -principle_of_relativity n 1 2 @ ; 1 0 05990480 -principle_of_superposition n 2 2 @ ; 2 0 05991776 05991441 -prinia n 1 3 @ #m %m 1 0 01565804 -prinival n 1 2 @ ; 1 0 03677308 -print n 7 3 @ ~ + 7 2 06678302 04003597 06798750 06678146 04003982 04003856 03926575 -print_buffer n 1 1 @ 1 0 04004099 -print_media n 1 2 @ ~ 1 0 06263609 -print_run n 1 2 @ ~ 1 0 15261972 -print_seller n 1 1 @ 1 0 10475835 -print_shop n 1 1 @ 1 1 04005090 -printed_circuit n 1 2 @ ~ 1 0 04004210 -printed_symbol n 1 2 @ ~ 1 1 06817623 -printer n 3 4 @ ~ + ; 3 0 10475297 04004767 04004475 -printer's_devil n 1 1 @ 1 0 10475584 -printer's_ink n 1 1 @ 1 0 14918023 -printer_cable n 1 1 @ 1 0 04004990 -printing n 4 5 @ ~ + ; - 4 2 06403291 01103159 06677302 06590210 -printing_business n 1 1 @ 1 0 08069627 -printing_company n 1 1 @ 1 0 08069627 -printing_concern n 1 1 @ 1 0 08069627 -printing_ink n 1 1 @ 1 1 14918023 -printing_machine n 1 2 @ ~ 1 0 04004475 -printing_operation n 1 2 @ ~ 1 0 13540791 -printing_press n 1 3 @ ~ %p 1 0 04000311 -printing_process n 1 3 @ ~ - 1 0 06677302 -printing_shop n 1 1 @ 1 0 04005090 -printing_unit n 1 2 @ ~ 1 0 13608207 -printmaker n 1 2 @ ~ 1 0 10475687 -printmaking n 1 2 @ ~ 1 0 00937476 -printout n 1 1 @ 1 0 07265075 -priodontes n 1 2 @ #m 1 0 02455887 -priodontes_giganteus n 1 1 @ 1 0 02456008 -prion n 1 2 @ ; 1 0 09398935 -prionace n 1 3 @ #m %m 1 0 01490885 -prionace_glauca n 1 2 @ #m 1 0 01491006 -prionotus n 1 3 @ #m %m 1 0 02650928 -prionotus_carolinus n 1 2 @ #m 1 0 02651060 -prior n 1 2 @ + 1 0 10475940 -prioress n 1 2 @ ~ 1 0 09754217 -priority n 2 4 ! @ ~ + 2 1 13949802 05047279 -priority_processing n 1 2 @ ~ 1 0 13540975 -priorship n 1 2 @ + 1 0 00597728 -priory n 1 1 @ 1 0 04005197 -priscoan n 1 1 @ 1 0 15129572 -priscoan_aeon n 1 1 @ 1 0 15129572 -priscoan_eon n 1 1 @ 1 0 15129572 -prism n 2 4 @ ~ #p + 2 0 13884511 04005340 -prism_spectroscope n 1 3 @ ~ %p 1 0 04273064 -prismatoid n 1 2 @ ~ 1 0 13917874 -prismoid n 1 1 @ 1 0 13918095 -prison n 2 3 @ ~ %p 2 1 04005630 13937284 -prison-breaking n 1 1 @ 1 0 00059989 -prison_camp n 2 2 @ ~ 2 1 04005912 04600764 -prison_cell n 1 3 @ ~ #p 1 0 02991302 -prison_chaplain n 1 1 @ 1 0 09908769 -prison_farm n 1 1 @ 1 1 04600764 -prison_guard n 1 1 @ 1 0 10149867 -prison_house n 2 3 @ ~ %p 2 1 13937284 04005630 -prison_term n 1 2 @ ~ 1 0 15224692 -prisonbreak n 1 1 @ 1 0 00059989 -prisoner n 1 2 @ ~ 1 1 10476086 -prisoner's_base n 1 1 @ 1 0 00460541 -prisoner_of_war n 1 1 @ 1 1 10476331 -prisoner_of_war_camp n 1 2 @ ~ 1 0 04005912 -prisoner_of_war_censorship n 1 1 @ 1 0 00821973 -pristidae n 1 3 @ #m %m 1 0 01496944 -pristis n 1 3 @ #m %m 1 0 01497278 -pristis_pectinatus n 1 2 @ #m 1 0 01497413 -pritzelago n 1 2 @ #m 1 0 11893808 -pritzelago_alpina n 1 1 @ 1 0 11893916 -privacy n 2 2 @ ~ 2 2 04622932 14416089 -private n 1 1 @ 1 1 10476467 -private_citizen n 1 1 @ 1 0 10457903 -private_corporation n 1 2 @ ~ 1 0 08383690 -private_detective n 1 2 @ ~ 1 1 10476671 -private_enterprise n 1 2 @ ~ 1 0 08364959 -private_eye n 1 2 @ ~ 1 1 10476671 -private_foundation n 1 1 @ 1 0 08407000 -private_instructor n 1 3 @ ~ ; 1 0 09931418 -private_investigator n 1 2 @ ~ 1 0 10476671 -private_line n 1 1 @ 1 0 04006227 -private_nuisance n 1 1 @ 1 0 05831412 -private_parts n 1 2 @ ~ 1 0 05514081 -private_practice n 1 1 @ 1 0 00632820 -private_property n 1 2 @ ~ 1 1 13245626 -private_road n 1 2 @ %p 1 0 03244388 -private_school n 1 2 @ ~ 1 1 08411170 -private_security_force n 1 2 @ %m 1 0 08210982 -private_treaty n 1 1 @ 1 0 00092212 -privateer n 2 2 @ ~ 2 0 10476928 04006067 -privateersman n 1 2 @ ~ 1 0 10476928 -privately_held_corporation n 1 2 @ ~ 1 0 08383690 -privateness n 2 3 @ ~ + 2 0 14416089 04622932 -privates n 1 2 @ ~ 1 0 05514081 -privation n 2 2 @ ~ 2 0 14493426 01150200 -privatisation n 1 2 @ + 1 0 01152033 -privatization n 1 2 @ + 1 0 01152033 -privet n 1 3 @ ~ #m 1 0 12307756 -privet_andromeda n 1 2 @ #m 1 0 12241192 -privet_hedge n 1 1 @ 1 0 04006330 -privilege n 3 4 @ ~ + ; 3 2 05158296 05178715 05179567 -privilege_against_self_incrimination n 1 2 @ ; 1 0 05184810 -privilege_of_the_floor n 1 1 @ 1 0 05179410 -privine n 1 2 @ ; 1 0 03807052 -privy n 2 3 @ ~ %p 2 2 04446276 03860404 -privy_council n 1 3 @ ~ ; 1 0 08311687 -privy_purse n 1 1 @ 1 0 13294302 -prix_de_rome n 1 1 @ 1 0 07269163 -prix_fixe n 1 1 @ 1 0 06497233 -prix_goncourt n 1 1 @ 1 0 07269430 -prize n 3 3 @ ~ %p 3 2 13268146 13262663 04487996 -prize_fight n 1 2 @ + 1 0 07471806 -prize_money n 1 1 @ 1 1 13268758 -prize_ring n 1 2 @ ; 1 0 02885663 -prize_winner n 1 1 @ 1 0 09627807 -prizefight n 1 2 @ + 1 1 07471806 -prizefighter n 1 3 @ ~ + 1 0 10477077 -pro n 2 3 ! @ ~ 2 1 10480583 06649223 -pro-choice_faction n 1 1 @ 1 0 08417281 -pro-life_faction n 1 1 @ 1 0 08417436 -pro-lifer n 1 1 @ 1 0 10458356 -proaccelerin n 1 1 @ 1 0 15071366 -probabilism n 2 3 @ + ; 2 0 06160781 05975258 -probability n 2 4 ! @ ~ + 2 2 05091770 04756172 -probability_theorist n 1 1 @ 1 0 10477465 -probability_theory n 1 3 @ %p ; 1 0 06037108 -probable n 1 1 @ 1 0 10458024 -probable_cause n 1 2 @ ; 1 0 05824514 -probate n 2 3 @ + ; 2 0 06544432 00154894 -probate_court n 1 2 @ ; 1 0 08335087 -probate_will n 1 2 @ ; 1 0 06544432 -probation n 3 3 @ + ; 3 0 15297472 15297303 01258251 -probation_officer n 1 1 @ 1 0 10477839 -probationer n 2 1 @ 2 0 10477713 10477585 -probe n 4 3 @ ~ + 4 0 05800611 04006411 00947041 00641522 -probenecid n 1 1 @ 1 0 04006584 -probiotic n 1 2 @ ~ 1 0 01349495 -probiotic_bacterium n 1 2 @ ~ 1 0 01349495 -probiotic_flora n 1 2 @ ~ 1 0 01349495 -probiotic_microflora n 1 2 @ ~ 1 0 01349495 -probity n 1 1 @ 1 0 04869811 -problem n 3 3 @ ~ + 3 3 14410605 06784003 05687338 -problem-oriented_language n 1 2 @ ~ 1 0 06899110 -problem_solver n 1 1 @ 1 0 10458111 -problem_solving n 2 3 @ ~ %p 2 0 06140437 05796750 -proboscidea n 2 3 @ #m %m 2 0 12874996 02502902 -proboscidea_arenaria n 1 2 @ #m 1 0 12875697 -proboscidea_fragrans n 1 2 @ #m 1 0 12875861 -proboscidea_louisianica n 1 2 @ #m 1 0 12875269 -proboscidean n 1 3 @ ~ #m 1 0 02503127 -proboscidian n 1 3 @ ~ #m 1 0 02503127 -proboscis n 2 3 @ #p ; 2 0 05599084 02452967 -proboscis_flower n 1 2 @ #m 1 0 12875269 -proboscis_monkey n 1 1 @ 1 0 02489166 -proboscis_worm n 1 2 @ #m 1 0 01928517 -procaine n 1 2 @ ~ 1 0 04006727 -procaine_hydrochloride n 1 1 @ 1 0 04006953 -procarbazine n 1 1 @ 1 0 04007126 -procardia n 1 2 @ ; 1 0 03824014 -procaryote n 1 2 @ + 1 0 01415920 -procavia n 1 3 @ #m %m 1 0 02372813 -procavia_capensis n 1 2 @ #m 1 0 02372952 -procaviidae n 1 3 @ #m %m 1 0 02372397 -procedure n 4 4 @ ~ #p + 4 2 01023820 00577068 06582403 01023636 -proceeding n 1 4 @ ~ + ; 1 1 01184814 -proceedings n 2 5 @ ~ #p + ; 2 1 01184814 06508112 -proceeds n 1 2 @ ~ 1 1 13260190 -procellaria n 1 3 @ #m %m 1 0 02059393 -procellaria_aequinoctialis n 1 2 @ #m 1 0 02059541 -procellariidae n 1 3 @ #m %m 1 0 02058933 -procellariiform_seabird n 1 2 @ #m 1 0 02057898 -procellariiformes n 1 3 @ #m %m 1 0 02057478 -process n 6 4 @ ~ + ; 6 2 01023820 05701363 06556692 05701738 05470189 00029677 -process-server n 1 1 @ 1 1 10478118 -process_cheese n 1 1 @ 1 0 07851926 -process_of_monition n 1 2 @ ; 1 0 06558434 -process_printing n 1 1 @ 1 0 06679041 -processed_cheese n 1 1 @ 1 0 07851926 -processing n 1 3 @ ~ + 1 1 13541167 -processing_time n 1 2 @ ~ 1 0 15297672 -procession n 3 4 @ ~ + ; 3 0 07327288 00296585 00282050 -processional n 1 1 @ 1 0 07034409 -processional_march n 1 2 @ ~ 1 0 07058871 -processor n 3 5 @ #p %p + ; 3 1 08065937 10477955 02995345 -processus_coronoideus n 1 3 @ ~ #p 1 0 05472032 -prochlorperazine n 1 1 @ 1 0 04007239 -prociphilus n 1 3 @ #m %m 1 0 02254110 -prociphilus_tessellatus n 1 2 @ #m 1 0 02254246 -proclamation n 2 3 @ ~ + 2 1 06726158 01266491 -proclivity n 1 1 @ 1 0 06199561 -procnias n 1 3 @ #m %m 1 0 01551915 -proconsul n 3 3 @ #m + 3 0 10478462 10478293 02478875 -proconsulate n 1 1 @ 1 0 00597821 -proconsulship n 1 2 @ + 1 0 00597821 -proconvertin n 1 1 @ 1 0 15071503 -procrastination n 2 2 @ + 2 1 01067362 05062370 -procrastinator n 1 2 @ + 1 0 10478626 -procreation n 1 3 @ ~ + 1 1 00849523 -procrustean_bed n 1 1 @ 1 0 07261782 -procrustean_rule n 1 1 @ 1 0 07261782 -procrustean_standard n 1 1 @ 1 0 07261782 -procrustes n 1 2 @ ; 1 0 09569709 -proctalgia n 1 1 @ 1 0 14330265 -proctitis n 1 1 @ 1 0 14354257 -proctocele n 1 1 @ 1 0 14297150 -proctologist n 1 2 @ + 1 0 10478827 -proctology n 1 2 @ + 1 0 06062225 -proctoplasty n 1 1 @ 1 0 00690933 -proctor n 1 3 @ ~ + 1 0 10478960 -proctorship n 1 2 @ + 1 0 00597957 -proctoscope n 1 1 @ 1 0 04007415 -proctoscopy n 1 1 @ 1 0 00643067 -procural n 1 2 @ + 1 0 00083729 -procurance n 1 2 @ + 1 0 00083729 -procurator n 2 3 @ ~ ; 2 0 10486909 10479135 -procurement n 1 2 @ + 1 1 00083729 -procurer n 2 4 @ ~ + ; 2 1 10433737 10479328 -procuress n 1 1 @ 1 0 10479493 -procursive_epilepsy n 1 1 @ 1 0 14089592 -procyclidine n 1 1 @ 1 0 04007510 -procyon n 2 3 @ #m %m 2 0 09399485 02507863 -procyon_cancrivorus n 1 1 @ 1 0 02508346 -procyon_lotor n 1 1 @ 1 0 02508213 -procyonid n 1 3 @ ~ #m 1 0 02507649 -procyonidae n 1 3 @ #m %m 1 0 02507337 -prod n 2 3 @ ~ + 2 0 07252378 04007664 -prodding n 1 2 @ + 1 0 07252378 -prodigal n 1 3 @ ~ + 1 0 10479561 -prodigality n 2 2 @ + 2 0 04894807 00743641 -prodigy n 3 3 @ ~ + 3 0 10479783 07286368 05939244 -prodroma n 1 1 @ 1 0 14303877 -prodrome n 1 2 @ + 1 0 14303877 -produce n 1 3 @ ~ + 1 1 07705711 -producer n 3 3 @ ~ + 3 3 10292316 10480018 07328756 -producer_gas n 1 1 @ 1 0 14862481 -producer_price_index n 1 1 @ 1 0 06641524 -product n 6 4 @ ~ #p + 6 4 03748886 04007894 05859630 14997699 11415842 07999068 -product-moment_correlation_coefficient n 1 2 @ ; 1 0 06033427 -product_development n 1 1 @ 1 0 00250882 -product_introduction n 1 1 @ 1 0 00238871 -product_line n 1 3 @ ~ %p 1 0 03671668 -product_research n 1 1 @ 1 0 00640560 -production n 8 5 @ ~ %p + ; 8 4 00912960 07006951 04007894 00522736 13758745 07213989 00913705 00913585 -production_cost n 1 1 @ 1 0 13302775 -production_line n 1 3 @ #p %p 1 0 04008385 -production_order n 1 1 @ 1 0 06530143 -productiveness n 1 3 ! @ + 1 0 05147940 -productivity n 2 3 @ + ; 2 1 05147940 13824500 -proenzyme n 1 1 @ 1 0 14691445 -prof n 1 3 @ ~ #m 1 0 10480730 -profanation n 2 2 @ + 2 0 00746587 00273319 -profaneness n 2 3 @ ~ + 2 0 06207874 04856014 -profanity n 1 3 @ ~ + 1 1 07128527 -professing n 1 2 @ + 1 0 06732925 -profession n 4 3 @ ~ + 4 2 08112096 00609953 06732925 06685040 -professional n 3 4 ! @ ~ #m 3 3 10480253 10480583 10298482 -professional_association n 1 1 @ 1 0 08242675 -professional_baseball n 1 1 @ 1 0 00474657 -professional_basketball n 1 2 @ - 1 0 00481803 -professional_boxing n 1 1 @ 1 0 00446311 -professional_dancer n 1 2 @ ~ 1 0 09989502 -professional_football n 1 2 @ ; 1 0 00470554 -professional_golf n 1 1 @ 1 0 00466273 -professional_golfer n 1 1 @ 1 0 10137367 -professional_life n 1 1 @ 1 0 00606227 -professional_organisation n 1 2 @ %m 1 0 08266070 -professional_organization n 1 2 @ %m 1 0 08266070 -professional_person n 1 3 @ ~ #m 1 0 10480253 -professional_relation n 1 2 @ ~ 1 0 13837439 -professional_tennis n 1 1 @ 1 0 00483205 -professional_tennis_player n 1 1 @ 1 0 10701644 -professional_wrestling n 1 1 @ 1 0 00448126 -professionalisation n 1 1 @ 1 0 13541491 -professionalism n 1 1 @ 1 0 05641089 -professionalization n 1 2 @ + 1 0 13541491 -professor n 1 4 @ ~ #m + 1 1 10480730 -professorship n 1 2 @ + 1 1 00598056 -proffer n 1 3 @ ~ + 1 0 07162680 -proficiency n 2 3 @ ~ + 2 1 05154114 05643190 -profile n 5 4 @ ~ %p + 5 3 07002599 08613202 06516404 14434329 08548415 -profiling n 1 1 @ 1 0 06886818 -profit n 2 4 @ ~ %p + 2 2 13258362 05157574 -profit-and-loss_statement n 1 1 @ 1 0 13355301 -profit_and_loss n 1 1 @ 1 1 13407844 -profit_and_loss_account n 1 1 @ 1 0 13407844 -profit_margin n 1 1 @ 1 1 13261242 -profit_sharing n 1 1 @ 1 1 13289020 -profit_taker n 1 1 @ 1 0 10481167 -profitability n 1 3 ! @ + 1 1 05157866 -profitableness n 2 4 ! @ ~ + 2 0 05160796 05157866 -profiteer n 1 2 @ + 1 0 10481003 -profiterole n 1 1 @ 1 0 07628328 -profits n 2 3 @ ~ %p 2 1 13258362 13259917 -profligacy n 2 1 @ 2 0 04894807 00748307 -profligate n 2 3 @ ~ + 2 0 10505942 10479561 -profoundness n 5 3 @ ~ + 5 0 13942554 05926358 05613962 05134880 05094863 -profundity n 4 4 ! @ ~ + 4 2 05926358 05094863 05613962 05134880 -profuseness n 1 3 @ ~ + 1 0 05115804 -profusion n 1 2 @ ~ 1 1 05115804 -progenitor n 1 2 @ ~ 1 0 10126806 -progeny n 1 2 @ ~ 1 0 10373998 -progeria n 1 1 @ 1 0 14468348 -progesterone n 1 2 @ #s 1 0 14746048 -progestin n 1 2 @ ~ 1 0 14747338 -progestogen n 1 2 @ ~ 1 0 14747338 -prognathism n 1 2 @ + 1 0 14579063 -progne n 1 3 @ #m %m 1 0 01596479 -progne_subis n 1 2 @ #m 1 0 01596608 -prognosis n 2 3 @ ~ + 2 0 06749881 00153665 -prognostic n 1 3 @ ~ + 1 0 07286368 -prognostication n 3 3 @ ~ + 3 0 07286368 06748969 05775407 -prognosticator n 1 3 @ ~ + 1 0 10102506 -program n 8 5 @ ~ %p + ; 8 4 05898568 05899087 06619428 06501311 06748466 06676416 06568978 00551215 -program_library n 1 3 @ %p ; 1 0 07977592 -program_line n 1 4 @ ~ #p ; 1 0 06584891 -program_music n 1 1 @ 1 0 07281219 -program_trading n 1 1 @ 1 0 00079752 -programing n 2 4 @ ~ + - 2 0 01144355 00928947 -programing_language n 1 3 @ ~ ; 1 0 06898352 -programma n 1 1 @ 1 0 06541726 -programme n 7 5 @ ~ %p + ; 7 0 06748466 06676416 06619428 06568978 05899087 05898568 00551215 -programme_music n 1 1 @ 1 0 07281219 -programmed_cell_death n 1 1 @ 1 0 11486381 -programmer n 1 4 @ ~ + ; 1 0 10481268 -programming n 2 4 @ ~ + - 2 1 01144355 00928947 -programming_error n 1 3 @ ~ ; 1 0 07300092 -programming_language n 1 3 @ ~ ; 1 0 06898352 -progress n 3 3 @ ~ + 3 3 00249501 00282050 07445265 -progress_report n 1 1 @ 1 0 07219923 -progression n 3 3 @ ~ + 3 3 08458912 07445265 00282050 -progressive n 2 3 @ ~ + 2 0 13805734 10256756 -progressive_aspect n 1 1 @ 1 0 13805336 -progressive_emphysematous_necrosis n 1 2 @ ; 1 0 14313943 -progressive_party n 1 1 @ 1 0 08262695 -progressive_rock n 1 1 @ 1 0 07065333 -progressive_tax n 1 1 @ 1 0 13314495 -progressive_tense n 1 2 @ ~ 1 0 13805734 -progressive_vaccinia n 1 1 @ 1 0 14089719 -progressiveness n 1 2 @ + 1 0 04737743 -progressivism n 1 1 @ 1 1 06219711 -progressivity n 1 2 @ + 1 0 04737743 -progymnosperm n 1 1 @ 1 0 11596344 -prohibition n 5 4 @ ~ + ; 5 3 06541820 06542047 15294382 07255174 00201923 -prohibition_era n 1 1 @ 1 1 15294382 -prohibition_party n 1 1 @ 1 0 08262937 -prohibitionist n 1 3 @ ~ + 1 0 10037922 -project n 2 3 @ ~ + 2 2 00795720 05910453 -projectile n 2 4 @ ~ %p + 2 1 04008634 04099429 -projection n 10 4 @ ~ + ; 10 4 05775293 06887599 05910453 04008947 13919685 13541798 11512331 04009382 00407090 00116687 -projection_screen n 1 2 @ ~ 1 0 04152829 -projectionist n 1 2 @ + 1 0 10481561 -projective_device n 1 2 @ ~ 1 0 01007609 -projective_geometry n 1 2 @ ; 1 0 06012340 -projective_technique n 1 2 @ ~ 1 0 01007609 -projective_test n 1 2 @ ~ 1 0 01007609 -projector n 2 3 @ ~ + 2 0 04009801 04009552 -prokaryote n 1 3 ! @ + 1 0 01415920 -prokayotae n 1 2 @ %m 1 0 01341876 -prokhorov n 1 1 @ 1 0 11246718 -prokofiev n 1 1 @ 1 0 11247002 -prolactin n 1 1 @ 1 0 14749543 -prolamine n 1 1 @ 1 0 15026420 -prolapse n 1 3 @ ~ + 1 0 14559208 -prolapsus n 1 2 @ ~ 1 0 14559208 -prolate_cycloid n 1 1 @ 1 0 13909071 -prole n 1 3 @ ~ #m 1 0 10481711 -prolegomenon n 1 1 @ 1 0 06398270 -prolepsis n 1 1 @ 1 0 07105238 -proletarian n 1 4 @ ~ #m + 1 0 10481711 -proletariat n 1 4 @ ~ %m + 1 1 08180639 -proliferation n 2 3 ! @ + 2 1 13541975 13542114 -prolificacy n 1 1 @ 1 0 05147586 -proline n 1 1 @ 1 0 14684798 -prolixity n 1 4 @ ~ = + 1 0 07090108 -prolixness n 1 4 @ ~ = + 1 0 07090108 -prolog n 1 1 @ 1 0 06902193 -prologue n 1 3 @ #p + 1 0 07009421 -prolongation n 3 3 @ ~ + 3 1 01018366 05133535 05051896 -prolonge n 1 2 @ %p 1 0 04009923 -prolonge_knot n 1 2 @ #p 1 0 04010057 -prolonged_interrogation n 1 1 @ 1 0 00423769 -prolusion n 2 2 @ #p 2 0 06397903 01144716 -prom n 1 1 @ 1 0 07449316 -promenade n 5 4 @ ~ #p + 5 0 07449316 04010205 00540895 00291663 00284101 -promenade_deck n 1 2 @ #p 1 0 03549732 -promethazine n 1 1 @ 1 0 04010348 -prometheus n 1 2 @ ; 1 1 09575902 -promethium n 1 1 @ 1 0 14651479 -prominence n 3 4 ! @ ~ + 3 2 14433587 05169507 13894434 -promiscuity n 1 3 @ ~ + 1 0 00856342 -promiscuousness n 1 3 @ ~ + 1 0 00856342 -promise n 2 3 @ ~ + 2 2 07226545 05950733 -promised_land n 3 4 @ #p %p - 3 0 08798382 08565506 05629104 -promisee n 1 2 @ + 1 0 10481929 -promiser n 1 3 @ ~ + 1 0 10482054 -promisor n 1 3 @ ~ + 1 0 10482054 -promissory_note n 1 2 @ ~ 1 0 13398469 -promontory n 1 2 @ ~ 1 0 09399592 -promoter n 2 3 @ ~ + 2 1 10482220 10593745 -promotion n 4 5 ! @ ~ #p + 4 2 07247071 00198451 07251984 00249780 -promotion_system n 1 1 @ 1 1 05905027 -promotional_expense n 1 1 @ 1 0 13277789 -promotional_material n 1 3 @ ~ #p 1 0 07247071 -prompt n 2 3 @ + ; 2 0 07011803 06280604 -prompt_box n 1 2 @ #p 1 0 04010566 -prompt_copy n 1 1 @ 1 0 07010275 -promptbook n 1 1 @ 1 0 07010275 -prompter n 2 3 @ ~ + 2 0 10482414 04010779 -prompter's_box n 1 2 @ #p 1 0 04010566 -prompting n 2 2 @ + 2 0 07246582 07011803 -promptitude n 1 1 @ 1 0 05060052 -promptness n 2 2 @ + 2 0 05060052 05047778 -promulgation n 3 3 @ ~ + 3 0 06746580 06726939 01266491 -promulgator n 1 3 @ + ; 1 1 10482587 -promycelium n 1 1 @ 1 0 12994892 -pronation n 1 3 ! @ + 1 0 00343091 -pronator n 1 2 @ + 1 0 05292468 -prone_float n 1 1 @ 1 0 00443375 -proneness n 1 2 @ + 1 0 04943578 -prong n 1 4 @ ~ #p + 1 0 04010927 -prongbuck n 1 2 @ #m 1 0 02429456 -pronghorn n 1 2 @ #m 1 0 02429456 -pronghorn_antelope n 1 2 @ #m 1 0 02429456 -pronominal n 1 1 @ 1 0 06317351 -pronominal_phrase n 1 1 @ 1 0 06317351 -pronoun n 1 2 @ ~ 1 1 06325370 -pronouncement n 1 3 @ ~ + 1 1 06727616 -pronucleus n 1 1 @ 1 0 05431762 -pronunciamento n 1 3 @ ~ ; 1 0 06727224 -pronunciation n 2 3 @ ~ + 2 0 07128946 07128692 -proof n 6 4 @ ~ + ; 6 2 05824739 06647614 13780180 06590885 04011130 00153961 -proof_spirit n 1 1 @ 1 0 07885705 -proofreader n 1 2 @ + 1 0 10482768 -prop n 3 4 @ ~ #p + 3 1 04011242 04012260 02692086 -prop_root n 1 1 @ 1 0 13126856 -propaedeutic n 1 2 @ + 1 0 00891642 -propaedeutics n 1 2 @ + 1 0 00891642 -propaganda n 1 3 @ ~ + 1 1 06674542 -propagandist n 1 3 @ ~ + 1 1 10482921 -propagation n 3 3 @ ~ + 3 2 06253518 00849982 11512992 -propagator n 2 2 @ + 2 0 10483274 10483138 -propanal n 1 1 @ 1 0 14998042 -propanamide n 1 1 @ 1 0 14862640 -propane n 1 1 @ 1 0 14691686 -propanediol n 1 1 @ 1 0 14852003 -propanoic_acid n 1 2 @ #s 1 0 14862753 -propanol n 1 1 @ 1 0 14998142 -propanolol n 1 1 @ 1 0 04011409 -propanone n 1 1 @ 1 0 14600504 -proparoxytone n 1 1 @ 1 0 06302269 -propellant n 1 3 @ ~ + 1 0 14691822 -propellant_explosive n 1 1 @ 1 0 04011609 -propellent n 1 3 @ ~ + 1 0 14691822 -propeller n 1 4 @ ~ %p + 1 1 04011827 -propeller_plane n 1 3 @ ~ %p 1 0 04012084 -propellor n 1 4 @ ~ %p + 1 0 04011827 -propenal n 1 1 @ 1 0 14998290 -propene n 1 1 @ 1 0 14998826 -propenoate n 1 1 @ 1 0 14998421 -propenoic_acid n 1 1 @ 1 0 14998522 -propenonitrile n 1 1 @ 1 0 14998677 -propensity n 3 1 @ 3 0 07499113 06199561 04943154 -propenyl_alcohol n 1 2 @ #s 1 0 14719893 -proper_fraction n 1 2 @ ~ 1 0 13735921 -proper_name n 1 1 @ 1 0 06320004 -proper_noun n 1 2 ! @ 1 0 06320004 -properness n 1 5 ! @ ~ = + 1 0 04898437 -property n 5 3 @ ~ #p 5 3 13244109 04916342 08513718 05849040 04012260 -property_line n 1 1 @ 1 0 08515349 -property_man n 1 1 @ 1 0 10483395 -property_master n 1 1 @ 1 0 10483395 -property_owner n 1 2 @ ~ 1 0 10245639 -property_right n 1 2 @ ~ 1 0 13241057 -property_settlement n 1 2 @ ; 1 1 07178337 -property_tax n 1 2 @ ~ 1 0 13312569 -prophase n 2 3 @ #p %p 2 0 13542474 13542374 -prophecy n 2 3 @ ~ + 2 2 05775407 06750154 -prophesier n 1 2 @ ~ 1 0 10483530 -prophet n 2 3 @ ~ + 2 2 10483530 10483890 -prophetess n 1 2 @ ~ 1 0 10483799 -prophets n 1 3 @ #p %p 1 0 06452601 -prophylactic n 2 2 @ + 2 0 04002026 03088164 -prophylactic_device n 1 2 @ ~ 1 0 03096593 -prophylaxis n 1 2 @ + 1 0 01079295 -prophyll n 1 1 @ 1 0 13127001 -propinquity n 1 1 @ 1 0 05085867 -propionaldehyde n 1 1 @ 1 0 14998042 -propionic_acid n 1 2 @ #s 1 0 14862753 -propitiation n 2 3 @ ~ + 2 0 01151407 00095121 -propitiousness n 1 4 ! @ = + 1 0 05161150 -propjet n 1 2 @ %p 1 0 04012482 -propman n 1 1 @ 1 0 10483395 -proponent n 1 3 @ ~ + 1 1 09774783 -proportion n 5 5 ! @ ~ %p + 5 3 13815742 05091194 13898315 13815449 05076827 -proportional n 1 2 @ #p 1 0 05863919 -proportional_counter n 1 2 @ ~ 1 0 04012665 -proportional_counter_tube n 1 2 @ ~ 1 0 04012665 -proportional_font n 1 3 ! @ ~ 1 0 06826214 -proportional_representation n 1 1 @ 1 0 01217720 -proportional_sample n 1 2 @ ; 1 0 06027051 -proportional_sampling n 1 1 @ 1 0 00162417 -proportional_tax n 1 1 @ 1 0 13314652 -proportionality n 2 3 @ ~ + 2 1 13824675 05076827 -proportionateness n 1 2 @ + 1 0 13817279 -proposal n 3 3 @ ~ + 3 2 07162194 07161741 07161429 -proposal_of_marriage n 1 2 @ ~ 1 0 07161741 -proposer n 2 4 @ ~ + ; 2 0 10673451 10484526 -proposition n 5 5 @ ~ %p + ; 5 2 06750804 07162680 07161912 07161429 00797581 -propositional_calculus n 1 1 @ 1 0 06165147 -propositional_logic n 1 1 @ 1 0 06165147 -propositus n 1 1 @ 1 0 10484739 -propoxyphene n 1 1 @ 1 0 04012852 -propoxyphene_hydrochloride n 1 1 @ 1 0 04012852 -propping_up n 1 1 @ 1 0 01017550 -proprietary n 1 1 @ 1 0 13243780 -proprietary_colony n 1 1 @ 1 0 08375031 -proprietary_drug n 1 1 @ 1 0 02891566 -proprietor n 1 4 @ ~ + ; 1 1 10388924 -proprietorship n 1 2 @ + 1 1 13243780 -proprietorship_certificate n 1 1 @ 1 0 13419178 -proprietress n 1 1 @ 1 0 10458519 -propriety n 1 4 ! @ ~ = 1 1 04898437 -proprioception n 1 3 @ ~ #p 1 0 05659621 -proprioceptor n 1 1 @ 1 0 05469664 -proprionamide n 1 1 @ 1 0 14862640 -props n 1 2 @ ; 1 0 01229549 -propulsion n 2 3 @ ~ + 2 0 11497777 00045250 -propulsion_system n 1 1 @ 1 0 04013060 -propyl n 1 1 @ 1 0 14998965 -propyl_alcohol n 1 1 @ 1 0 14998142 -propyl_group n 1 1 @ 1 0 14998965 -propyl_radical n 1 1 @ 1 0 14998965 -propylene n 1 1 @ 1 0 14998826 -propylene_glycol n 1 1 @ 1 0 14852003 -propylthiouracil n 1 1 @ 1 1 14692202 -proration n 1 2 @ + 1 0 00807925 -prorogation n 1 2 @ + 1 0 01067192 -prosaicness n 1 2 @ + 1 0 04795878 -prosauropoda n 1 2 @ #m 1 0 01708648 -proscenium n 2 3 @ #p %p 2 0 04013362 04013176 -proscenium_arch n 1 2 @ #p 1 0 04013600 -proscenium_wall n 1 3 @ #p %p 1 0 04013176 -prosciutto n 1 1 @ 1 0 07670328 -proscription n 2 3 @ ~ + 2 0 06542047 00206302 -prose n 2 3 @ ~ + 2 1 06376572 07072434 -prose_poem n 1 1 @ 1 1 06376776 -prosecuting_attorney n 1 3 @ ~ ; 1 1 10484858 -prosecuting_officer n 1 3 @ ~ ; 1 0 10484858 -prosecution n 3 6 ! @ ~ #p + ; 3 2 01198307 08064742 01022008 -prosecutor n 1 4 @ ~ + ; 1 1 10484858 -proselyte n 1 2 @ + 1 0 10485168 -proselytism n 2 1 @ 2 0 07246382 00094954 -prosencephalon n 1 3 @ #p %p 1 0 05495981 -proserpina n 1 1 @ 1 0 09569985 -proserpine n 1 1 @ 1 0 09569985 -prosimian n 1 2 @ #m 1 0 02496052 -prosimii n 1 3 @ #m %m 1 0 02495789 -prosiness n 1 2 @ + 1 0 04795878 -prosodic_system n 1 1 @ 1 0 07112805 -prosodion n 1 1 @ 1 0 07034409 -prosody n 3 5 @ ~ #p ; - 3 1 07083732 07093895 06170025 -prosom n 1 2 @ ; 1 0 03298211 -prosopis n 1 3 @ #m %m 1 0 11765099 -prosopis_glandulosa n 1 1 @ 1 0 11765568 -prosopis_juliflora n 1 2 @ %p 1 0 11765859 -prosopis_juliiflora n 1 2 @ %p 1 0 11765859 -prosopis_pubescens n 1 2 @ %p 1 0 11766189 -prosopium n 1 3 @ #m %m 1 0 02539752 -prosopium_cylindraceum n 1 2 @ #m 1 0 02539894 -prosopium_williamsonii n 1 2 @ #m 1 0 02540091 -prosopopoeia n 1 1 @ 1 0 07108123 -prospect n 5 3 @ ~ + 5 3 14482968 05944958 09890749 05933246 00153665 -prospector n 1 3 @ ~ + 1 0 10485298 -prospectus n 2 2 @ ~ 2 0 07165506 06674947 -prosper_meniere n 1 1 @ 1 0 11174119 -prosperity n 2 3 @ ~ + 2 2 14489699 14474052 -prospero_lambertini n 1 1 @ 1 0 10844031 -prospicience n 1 2 @ + 1 0 05805277 -prostaglandin n 1 1 @ 1 0 05414931 -prostate n 1 3 @ #p + 1 0 05331404 -prostate_cancer n 1 1 @ 1 0 14252067 -prostate_gland n 1 2 @ #p 1 0 05331404 -prostate_specific_antigen n 1 1 @ 1 0 14736510 -prostatectomy n 1 1 @ 1 0 00687252 -prostatic_adenocarcinoma n 1 1 @ 1 0 14252067 -prostatitis n 1 1 @ 1 0 14354462 -prostheon n 1 1 @ 1 0 05234911 -prosthesis n 1 3 @ ~ + 1 0 04013729 -prosthetic_device n 1 2 @ ~ 1 0 04013729 -prosthetics n 1 2 @ + 1 0 06049091 -prosthetist n 1 2 @ + 1 0 10458596 -prosthion n 1 1 @ 1 0 05234911 -prosthodontia n 1 2 @ + 1 0 06049250 -prosthodontics n 1 2 @ + 1 0 06049250 -prosthodontist n 1 2 @ + 1 0 10458696 -prostigmin n 1 2 @ ; 1 0 03818843 -prostitute n 1 3 @ ~ + 1 1 10485440 -prostitution n 1 2 @ + 1 1 00748155 -prostration n 3 3 @ ~ + 3 0 14066203 01167548 00341109 -protactinium n 1 1 @ 1 0 14651708 -protagonism n 1 2 @ ~ 1 0 01214171 -protagonist n 2 2 @ ~ 2 1 10677713 10172793 -protamine n 1 1 @ 1 0 15026508 -protanopia n 1 2 @ + 1 0 14154421 -protea n 1 3 @ ~ #m 1 0 12214789 -protea_cynaroides n 1 2 @ #m 1 0 12215022 -protea_family n 1 3 @ #m %m 1 0 12213635 -protea_mellifera n 1 2 @ #m 1 0 12215210 -proteaceae n 1 3 @ #m %m 1 0 12213635 -proteales n 1 3 @ #m %m 1 0 12213485 -protease n 1 2 @ ~ 1 1 14999106 -protease_inhibitor n 1 3 @ ~ #p 1 0 04013993 -protection n 7 3 @ ~ + 7 4 00817680 04014297 13344071 14539960 01214863 01127874 00784755 -protectionism n 1 3 @ ~ + 1 0 06658786 -protectionist n 1 2 @ + 1 0 10485883 -protective_coloration n 1 3 @ ~ ; 1 0 04978792 -protective_cover n 1 2 @ ~ 1 0 04014297 -protective_covering n 2 2 @ ~ 2 0 04014297 01902568 -protective_embankment n 1 1 @ 1 0 03296328 -protective_fold n 1 2 @ ~ 1 0 05313679 -protective_garment n 1 2 @ ~ 1 0 04015204 -protective_tariff n 1 2 @ ~ 1 0 13317611 -protectiveness n 2 2 @ + 2 0 07545303 04723622 -protector n 1 3 @ ~ + 1 0 09614684 -protector_of_boundaries n 1 1 @ 1 0 09574657 -protectorate n 1 1 @ 1 1 08627316 -protectorship n 1 2 @ + 1 0 00598215 -protege n 1 2 @ ~ 1 1 10485989 -protegee n 1 1 @ 1 0 10486166 -proteidae n 1 3 @ #m %m 1 0 01633949 -protein n 1 5 @ ~ #s %s + 1 1 14728724 -protein_folding n 1 1 @ 1 0 13569226 -protein_molecule n 1 1 @ 1 0 09399899 -proteinase n 1 2 @ ~ 1 0 14999106 -proteinuria n 1 1 @ 1 0 14265958 -proteles n 1 3 @ #m %m 1 0 02118058 -proteles_cristata n 1 2 @ #m 1 0 02118176 -proteolysis n 1 2 @ + 1 1 13542688 -proteolytic_enzyme n 1 2 @ ~ 1 0 14999106 -proteome n 1 1 @ 1 0 14736854 -proteomics n 1 1 @ 1 0 06077276 -proteosome n 1 1 @ 1 0 04015652 -proteosome_vaccine n 1 1 @ 1 0 04015652 -proterochampsa n 1 2 @ #m 1 0 01696151 -proterozoic n 1 3 @ #p + 1 0 15128997 -proterozoic_aeon n 1 2 @ #p 1 0 15128997 -proterozoic_eon n 1 2 @ #p 1 0 15128997 -protest n 3 3 @ ~ + 3 3 07210225 01177033 07210553 -protest_march n 1 3 @ ~ ; 1 0 01179167 -protestant n 2 5 @ ~ #m %m - 2 2 09679316 08087570 -protestant_church n 1 4 @ ~ %m - 1 0 08087570 -protestant_deacon n 1 2 @ ~ 1 0 09994673 -protestant_denomination n 1 3 @ ~ #m 1 1 08147188 -protestant_episcopal_church n 1 3 @ %m - 1 0 08088472 -protestant_reformation n 1 1 @ 1 0 08475929 -protestantism n 1 2 @ ~ 1 1 06228549 -protestation n 2 2 @ + 2 2 07210225 06733119 -protester n 2 3 @ ~ + 2 0 10018021 10002760 -proteus n 2 5 @ #m %m + ; 2 0 09569142 01634092 -proteus_anguinus n 1 2 @ #m 1 0 01634227 -prothalamion n 1 1 @ 1 0 07053364 -prothalamium n 1 1 @ 1 0 07053364 -prothorax n 1 1 @ 1 0 02665687 -prothrombin n 1 1 @ 1 0 15070897 -prothrombin_accelerator n 1 1 @ 1 0 15071366 -prothrombinase n 1 1 @ 1 0 15072099 -protirelin n 1 1 @ 1 0 15074203 -protist n 1 2 @ #m 1 0 01387451 -protista n 1 3 @ #m %m 1 0 01387208 -protistan n 1 2 @ #m 1 0 01387451 -protium n 1 3 @ #m %m 1 0 12693033 -protium_guianense n 1 2 @ #m 1 0 12693352 -protium_heptaphyllum n 1 2 @ #m 1 0 12693244 -proto-indo_european n 1 1 @ 1 0 06942094 -proto-norse n 1 1 @ 1 0 06953054 -proto-oncogene n 1 1 @ 1 0 05440756 -protoactinium n 1 1 @ 1 0 14651708 -protoanthropology n 1 2 @ ~ 1 0 06146260 -protoarchaeology n 1 1 @ 1 0 06146407 -protoarcheology n 1 1 @ 1 0 06146407 -protoavis n 1 2 @ #m 1 0 01515583 -protoceratops n 1 1 @ 1 0 01704103 -protocol n 3 3 @ ~ ; 3 0 06665108 06664981 05668915 -protoctist n 1 3 @ ~ #m 1 0 01387065 -protoctist_family n 1 3 @ ~ #m 1 0 01387617 -protoctist_genus n 1 3 @ ~ #m 1 0 01388130 -protoctist_order n 1 3 @ ~ #m 1 0 01347199 -protoctista n 1 2 @ %m 1 0 01386494 -protoheme n 1 2 @ #s 1 0 15024997 -protohemin n 1 1 @ 1 0 15025228 -protohippus n 1 2 @ #m 1 0 02376423 -protohistory n 1 2 @ ~ 1 0 06146260 -protology n 1 1 @ 1 0 06248693 -protomammal n 1 3 @ ~ #m 1 0 01719914 -proton n 1 2 @ ~ 1 1 09400037 -proton_accelerator n 1 1 @ 1 0 04015786 -proton_magnetic_resonance n 1 1 @ 1 1 11478898 -protoplasm n 1 2 @ ~ 1 1 05432736 -protoplasmic_astrocyte n 1 1 @ 1 0 05468098 -protoplast n 1 2 @ #p 1 0 05431585 -prototheria n 1 3 @ #m %m 1 0 01871406 -prototherian n 1 2 @ ~ 1 0 01871543 -prototype n 1 3 @ ~ + 1 1 05937524 -protozoa n 1 3 @ #m %m 1 1 01389188 -protozoal_infection n 1 2 @ ~ 1 0 14178913 -protozoan n 1 4 @ ~ #m %p 1 1 01389507 -protozoologist n 1 2 @ + 1 0 10486236 -protozoology n 1 2 @ + 1 0 06073748 -protozoon n 1 5 @ ~ #m %p + 1 0 01389507 -protraction n 2 3 @ ~ + 2 0 05051896 01018366 -protractor n 1 1 @ 1 0 04015908 -protriptyline n 1 1 @ 1 0 04016015 -protropin n 1 1 @ 1 0 05412912 -protrusion n 2 3 @ ~ + 2 0 13894434 00407090 -protuberance n 2 3 @ ~ + 2 1 13894434 14087321 -protura n 1 3 @ #m %m 1 0 02163616 -proturan n 1 2 @ #m 1 0 02163763 -proud_flesh n 1 1 @ 1 0 14318819 -proudhon n 1 1 @ 1 0 11247155 -proust n 1 2 @ + 1 0 11247298 -provability n 1 2 @ + 1 0 04755466 -provenance n 1 1 @ 1 1 08510456 -provencal n 1 1 @ 1 0 06966190 -provence n 1 2 @ #p 1 0 08944960 -provender n 2 2 @ ~ 2 0 07800091 07572353 -provenience n 1 1 @ 1 0 08510456 -proventil n 1 2 @ ; 1 0 02695321 -provera n 1 2 @ ; 1 0 14747168 -proverb n 1 2 @ + 1 1 07153838 -proverbs n 1 2 @ #p 1 0 06437308 -providence n 4 5 ! @ ~ #p + 4 2 09137451 01132327 14473917 04892970 -provider n 2 3 @ ~ + 2 0 10677271 10486349 -province n 2 4 @ ~ #m + 2 2 08654360 14515633 -provincial n 2 3 @ ~ ; 2 0 10458834 10410668 -provincial_capital n 1 2 @ ~ 1 0 08695198 -provincialism n 2 1 @ 2 2 06205937 06202429 -proving_ground n 1 1 @ 1 1 04016133 -provirus n 1 1 @ 1 0 14817141 -provision n 4 3 @ ~ + 4 3 06755947 01057200 05794694 13367448 -provisional_ira n 1 3 @ %p ; 1 0 08024732 -provisional_irish_republican_army n 1 3 @ %p ; 1 0 08024732 -provisioner n 1 2 @ + 1 0 10681557 -provisions n 1 2 @ ~ 1 1 07572353 -proviso n 1 1 @ 1 1 06755947 -provitamin n 1 2 @ ~ 1 0 15090379 -provitamin_a n 1 2 @ ~ 1 0 15090535 -provo n 1 2 @ #p 1 0 09147618 -provocateur n 1 1 @ 1 0 09778392 -provocation n 3 3 @ ~ + 3 1 01221790 09184975 07252764 -provoker n 1 3 @ ~ + 1 0 10209246 -provos n 1 3 @ %p ; 1 0 08024732 -provost n 1 1 @ 1 0 10486468 -provost_court n 1 2 @ ; 1 0 08334693 -provost_guard n 1 1 @ 1 1 08216535 -provost_marshal n 1 2 @ ; 1 0 10486561 -prow n 1 2 @ #p 1 0 02880008 -prowess n 1 2 @ ~ 1 1 05638987 -prowl n 1 2 @ + 1 0 00292125 -prowl_car n 1 2 @ ~ 1 0 03141065 -prowler n 1 2 @ + 1 1 10486679 -proxemics n 1 1 @ 1 0 06151550 -proxima n 1 2 @ #m 1 0 09400190 -proxima_centauri n 1 2 @ #m 1 0 09400190 -proximity n 3 3 @ ~ + 3 1 05085867 08642517 06250771 -proxy n 2 1 @ 2 0 10486909 06531141 -proxy_fight n 1 1 @ 1 0 00174950 -proxy_war n 1 1 @ 1 0 13981763 -prozac n 1 2 @ ; 1 0 03370927 -prude n 1 1 @ 1 0 10487026 -prudence n 2 4 ! @ ~ + 2 1 04892794 05615500 -prudery n 1 1 @ 1 0 04901152 -prudhoe_bay n 1 2 @ #p 1 0 09400337 -prudishness n 1 2 @ + 1 0 04901152 -prumnopitys n 1 3 @ #m %m 1 0 11658104 -prumnopitys_amara n 1 2 @ #m 1 0 11659627 -prumnopitys_andina n 1 2 @ #m 1 0 11658709 -prumnopitys_elegans n 1 2 @ #m 1 0 11658709 -prumnopitys_ferruginea n 1 2 @ #m 1 0 11658331 -prumnopitys_taxifolia n 1 2 @ #m 1 0 11658544 -prune n 1 1 @ 1 0 07752602 -prune_cake n 1 1 @ 1 0 07633743 -prune_whip n 1 1 @ 1 0 07612530 -prunella n 2 3 @ #m %m 2 0 12863026 01527055 -prunella_modularis n 1 1 @ 1 0 01527347 -prunella_vulgaris n 1 2 @ #m 1 0 12863234 -prunellidae n 1 3 @ #m %m 1 0 01526925 -pruner n 2 2 @ + 2 0 10487182 04016240 -pruning n 2 2 @ + 2 0 09400485 00360143 -pruning_hook n 1 1 @ 1 0 04016240 -pruning_knife n 1 1 @ 1 0 04016479 -pruning_saw n 1 2 @ ~ 1 0 04016576 -pruning_shears n 1 3 @ ~ ; 1 0 04016684 -pruno n 1 1 @ 1 0 07922299 -prunus n 1 3 @ #m %m 1 0 12637729 -prunus_alleghaniensis n 1 2 @ %p 1 0 12638753 -prunus_americana n 1 1 @ 1 0 12638964 -prunus_amygdalus n 1 3 @ ~ %p 1 0 12645174 -prunus_angustifolia n 1 2 @ %p 1 0 12639168 -prunus_armeniaca n 1 3 @ #m %p 1 0 12641007 -prunus_avium n 1 3 @ ~ %p 1 0 12642200 -prunus_besseyi n 1 2 @ #m 1 0 12642734 -prunus_capuli n 1 2 @ %p 1 0 12642964 -prunus_caroliniana n 1 2 @ #m 1 0 12643113 -prunus_cerasifera n 1 1 @ 1 0 12643313 -prunus_cerasus n 1 2 @ ~ 1 0 12643473 -prunus_cerasus_austera n 1 2 @ %p 1 0 12643877 -prunus_cerasus_caproniana n 1 2 @ %p 1 0 12643688 -prunus_cerasus_marasca n 1 2 @ %p 1 0 12644057 -prunus_cuneata n 1 2 @ #m 1 0 12648424 -prunus_dasycarpa n 1 2 @ #m 1 0 12641180 -prunus_demissa n 1 1 @ 1 0 12650915 -prunus_domestica n 1 1 @ 1 0 12639584 -prunus_domestica_insititia n 1 2 @ %p 1 0 12639910 -prunus_dulcis n 1 3 @ ~ %p 1 0 12645174 -prunus_dulcis_amara n 1 1 @ 1 0 12645530 -prunus_glandulosa n 1 1 @ 1 0 12646197 -prunus_ilicifolia n 1 1 @ 1 0 12646397 -prunus_incisa n 1 1 @ 1 0 12646605 -prunus_insititia n 1 2 @ ~ 1 0 12639736 -prunus_japonica n 1 1 @ 1 0 12646740 -prunus_laurocerasus n 1 2 @ #m 1 0 12646950 -prunus_lyonii n 1 1 @ 1 0 12647231 -prunus_maritima n 1 2 @ %p 1 0 12639376 -prunus_mexicana n 1 1 @ 1 0 12640081 -prunus_mume n 1 1 @ 1 0 12640839 -prunus_nigra n 1 1 @ 1 0 12640284 -prunus_padus n 1 3 @ #m %p 1 0 12647560 -prunus_pensylvanica n 1 1 @ 1 0 12647893 -prunus_persica n 1 3 @ #m %p 1 0 12648045 -prunus_persica_nectarina n 1 3 @ #m %p 1 0 12648196 -prunus_pumila n 1 2 @ #m 1 0 12648424 -prunus_pumilla_susquehanae n 1 2 @ #m 1 0 12648424 -prunus_salicina n 1 1 @ 1 0 12648693 -prunus_serotina n 1 1 @ 1 0 12648888 -prunus_serrulata n 1 1 @ 1 0 12649317 -prunus_sieboldii n 1 1 @ 1 0 12649539 -prunus_spinosa n 1 2 @ #m 1 0 12649723 -prunus_subcordata n 1 1 @ 1 0 12649866 -prunus_subhirtella n 1 1 @ 1 0 12650038 -prunus_susquehanae n 1 2 @ #m 1 0 12648424 -prunus_tenella n 1 1 @ 1 0 12650229 -prunus_triloba n 1 1 @ 1 0 12650379 -prunus_virginiana n 1 4 @ ~ #m %p 1 0 12650556 -prunus_virginiana_demissa n 1 1 @ 1 0 12650915 -prurience n 1 2 @ + 1 0 07490214 -pruriency n 1 2 @ + 1 0 07490214 -prurigo n 1 1 @ 1 0 14231640 -pruritus n 1 2 @ ~ 1 0 05723811 -pruritus_ani n 1 1 @ 1 0 05724019 -pruritus_vulvae n 1 1 @ 1 0 05724121 -prussia n 1 5 @ #p %m %p + 1 0 08775784 -prussian n 1 3 @ ~ #m 1 0 09748648 -prussian_asparagus n 1 1 @ 1 0 12460146 -prussian_blue n 2 1 @ 2 1 14922960 04969617 -prussic_acid n 1 1 @ 1 0 14613643 -pry n 1 3 @ ~ + 1 0 03138344 -pry_bar n 1 2 @ ~ 1 0 03138344 -prying n 1 2 @ + 1 0 05683390 -przevalski's_horse n 1 1 @ 1 0 02381831 -przewalski's_horse n 1 1 @ 1 0 02381831 -ps n 1 2 @ #p 1 0 06764623 -psa n 1 1 @ 1 0 14736510 -psa_blood_test n 1 1 @ 1 0 05742703 -psalm n 2 3 @ #p + 2 0 06466787 06466677 -psalmist n 1 2 @ + 1 0 10487363 -psalmody n 1 1 @ 1 0 01255549 -psalms n 1 2 @ #p 1 0 06437137 -psalter n 1 2 @ #p 1 0 06417467 -psalterium n 1 2 @ #p 1 0 02399791 -psaltery n 1 1 @ 1 0 04016846 -psaltriparus n 1 3 @ #m %m 1 0 01592892 -psammoma n 1 1 @ 1 0 14250622 -psenes n 1 3 @ #m %m 1 0 02634156 -psephologist n 1 2 @ + 1 0 10487592 -psephology n 1 2 @ + 1 0 06152311 -psephurus n 1 3 @ #m %m 1 0 02639786 -psephurus_gladis n 1 2 @ #m 1 0 02639922 -psetta n 1 3 @ #m %m 1 0 02663086 -psetta_maxima n 1 3 @ #m %p 1 0 02663211 -psettichthys n 1 3 @ #m %m 1 0 02664823 -psettichthys_melanostichus n 1 2 @ #m 1 0 02664960 -pseud n 1 2 @ ~ 1 0 10201535 -pseudacris n 1 3 @ #m %m 1 0 01651900 -pseudaletia n 1 3 @ #m %m 1 0 02297127 -pseudaletia_unipuncta n 2 2 @ #m 2 0 02297442 02297294 -pseudechis n 1 3 @ #m %m 1 0 01750598 -pseudechis_porphyriacus n 1 2 @ #m 1 0 01750743 -pseudemys n 1 3 @ #m %m 1 0 01668257 -pseudemys_concinna n 1 2 @ #m 1 0 01668892 -pseudemys_rubriventris n 1 2 @ #m 1 0 01668436 -pseudemys_scripta n 1 2 @ #m 1 0 01668665 -pseudepigrapha n 1 1 @ 1 0 06461406 -pseudo n 1 2 @ ~ 1 0 10201535 -pseudobombax n 1 3 @ #m %m 1 0 12191965 -pseudobombax_ellipticum n 1 2 @ #m 1 0 12192132 -pseudobulb n 1 1 @ 1 0 12047060 -pseudocarp n 1 1 @ 1 0 13140367 -pseudococcidae n 1 3 @ #m %m 1 0 02250464 -pseudococcus n 1 3 @ #m %m 1 0 02250653 -pseudococcus_comstocki n 1 2 @ #m 1 0 02251233 -pseudococcus_fragilis n 1 2 @ #m 1 0 02251067 -pseudocolus n 1 3 @ #m %m 1 0 13042814 -pseudocolus_fusiformis n 1 2 @ #m 1 0 13042982 -pseudocyesis n 1 1 @ 1 0 14046038 -pseudoephedrine n 1 1 @ 1 0 14714213 -pseudohallucination n 1 1 @ 1 0 14378177 -pseudohermaphrodite n 1 2 @ + 1 0 10487710 -pseudohermaphroditism n 1 1 @ 1 0 14468167 -pseudohypertrophic_dystrophy n 1 1 @ 1 0 14161795 -pseudolarix n 1 3 @ #m %m 1 0 11620248 -pseudolarix_amabilis n 1 2 @ #m 1 0 11620389 -pseudomonad n 1 3 @ ~ #m 1 0 01361261 -pseudomonadales n 1 3 @ #m %m 1 0 01360330 -pseudomonas n 1 3 @ #m %m 1 0 01360937 -pseudomonas_pyocanea n 1 2 @ #m 1 1 01353658 -pseudomonas_solanacearum n 1 1 @ 1 0 01361113 -pseudomonodaceae n 1 3 @ #m %m 1 0 01360712 -pseudonym n 1 3 @ ~ + 1 0 06338278 -pseudophloem n 1 1 @ 1 1 13099373 -pseudopleuronectes n 1 2 @ #m 1 0 02659342 -pseudopleuronectes_americanus n 1 2 @ %p 1 0 02659478 -pseudopod n 1 1 @ 1 0 01427848 -pseudopodium n 1 1 @ 1 0 01427848 -pseudorubella n 1 1 @ 1 0 14123759 -pseudoryx n 1 3 @ #m %m 1 0 02428653 -pseudoryx_nghetinhensis n 1 2 @ #m 1 0 02428842 -pseudoscience n 1 2 @ ~ 1 0 05778954 -pseudoscorpion n 1 3 @ ~ #m 1 0 01770795 -pseudoscorpiones n 1 3 @ #m %m 1 0 01770553 -pseudoscorpionida n 1 3 @ #m %m 1 0 01770553 -pseudosmallpox n 1 1 @ 1 0 14124688 -pseudotaxus n 1 3 @ #m %m 1 0 11663136 -pseudotaxus_chienii n 1 2 @ #m 1 0 11663263 -pseudotsuga n 1 3 @ #m %m 1 0 11628284 -pseudotsuga_macrocarpa n 1 1 @ 1 0 11629047 -pseudotsuga_menziesii n 1 1 @ 1 0 11628793 -pseudovariola n 1 1 @ 1 0 14124688 -pseudowintera n 1 3 @ #m %m 1 0 11740208 -pseudowintera_colorata n 1 2 @ #m 1 0 11740414 -psf n 1 2 @ ; 1 0 08038995 -psi n 2 2 @ #m 2 1 13711570 06836493 -psi_particle n 1 1 @ 1 0 09322349 -psidium n 1 3 @ #m %m 1 0 12333397 -psidium_cattleianum n 1 1 @ 1 0 12333961 -psidium_guajava n 1 3 @ #m %p 1 0 12333530 -psidium_guineense n 1 1 @ 1 0 12334153 -psidium_littorale n 1 2 @ #m 1 0 12333771 -psidium_littorale_longipes n 1 1 @ 1 0 12333961 -psilocin n 1 1 @ 1 0 04017019 -psilocybin n 1 1 @ 1 0 04017019 -psilomelane n 1 2 @ %s 1 0 14692342 -psilophytaceae n 1 3 @ #m %m 1 0 13217624 -psilophytales n 1 3 @ #m %m 1 0 13217213 -psilophyte n 1 2 @ #m 1 0 13217494 -psilophyton n 1 2 @ #m 1 0 13217993 -psilopsida n 1 3 @ #m %m 1 0 13215936 -psilosis n 2 1 @ 2 0 14400979 13542855 -psilotaceae n 1 3 @ #m %m 1 0 13216475 -psilotales n 1 3 @ #m %m 1 0 13216238 -psilotatae n 1 3 @ #m %m 1 0 13215936 -psilotum n 1 3 @ #m %m 1 0 13216673 -psilotum_nudum n 1 1 @ 1 0 13217005 -psithyrus n 1 3 @ #m %m 1 1 02209755 -psittacidae n 1 3 @ #m %m 1 0 01817424 -psittaciformes n 1 3 @ #m %m 1 0 01816635 -psittacosaur n 1 2 @ #m 1 0 01705010 -psittacosaurus n 1 2 @ #m 1 0 01705010 -psittacosis n 2 1 @ 2 0 14274975 14149773 -psittacula n 1 3 @ #m %m 1 0 01822164 -psittacula_krameri n 1 2 @ #m 1 0 01822300 -psittacus n 1 3 @ #m %m 1 0 01817772 -psittacus_erithacus n 1 2 @ #m 1 0 01817953 -psoas n 1 1 @ 1 0 05574862 -psocid n 1 3 @ ~ #m 1 0 02260863 -psocidae n 1 3 @ #m %m 1 0 02260623 -psocoptera n 1 3 @ #m %m 1 0 02260183 -psocopterous_insect n 1 3 @ ~ #m 1 0 02260421 -psophia n 1 3 @ #m %m 1 0 02020902 -psophia_crepitans n 1 1 @ 1 0 02021281 -psophiidae n 1 3 @ #m %m 1 0 02020777 -psophocarpus n 1 3 @ #m %m 1 0 12563913 -psophocarpus_tetragonolobus n 1 3 @ #m %p 1 0 12564083 -psoralea n 1 3 @ #m %m 1 0 12564381 -psoralea_esculenta n 1 2 @ #m 1 0 12564613 -psoriasis n 1 2 @ %p 1 0 14231794 -psoriatic_arthritis n 1 1 @ 1 0 14187869 -pst n 1 1 @ 1 0 15132638 -psyche n 3 4 @ ~ + ; 3 2 05611302 10627082 09577601 -psychedelia n 1 2 @ + 1 0 08292298 -psychedelic_drug n 1 2 @ ~ 1 0 03479647 -psychedelic_rock n 1 1 @ 1 0 07065562 -psychiatric_hospital n 1 2 @ ~ 1 0 03746574 -psychiatrist n 1 3 @ ~ + 1 1 10488016 -psychiatry n 1 4 @ ~ + - 1 0 06055946 -psychic n 1 3 @ ~ + 1 0 10488309 -psychic_communication n 1 2 @ ~ 1 0 07255791 -psychic_energy n 1 2 @ ~ 1 0 09184834 -psychic_phenomena n 1 2 @ ~ 1 0 07256375 -psychic_phenomenon n 1 2 @ ~ 1 1 07256375 -psychic_trauma n 1 2 @ ~ 1 0 14285276 -psychical_communication n 1 2 @ ~ 1 0 07255791 -psycho n 1 2 @ ~ 1 0 10490141 -psychoactive_drug n 1 2 @ ~ 1 1 04017137 -psychoactive_substance n 1 2 @ ~ 1 0 04017137 -psychoanalysis n 1 4 @ ~ + - 1 0 00704305 -psychoanalyst n 1 3 @ ~ + 1 0 09790278 -psychoanalytic_process n 1 2 @ ~ 1 0 13542947 -psychobabble n 1 1 @ 1 0 07072587 -psychodelic_drug n 1 2 @ ~ 1 0 03479647 -psychodid n 1 2 @ #m 1 0 02203978 -psychodidae n 1 3 @ #m %m 1 0 02203739 -psychodynamics n 2 2 @ ~ 2 0 13844518 06141768 -psychogalvanic_response n 1 2 @ #p 1 0 00860011 -psychogenesis n 2 1 @ 2 0 13543231 13543093 -psychogenic_fugue n 1 1 @ 1 0 14394479 -psychokinesis n 1 2 @ + 1 0 07257045 -psycholinguist n 1 2 @ + 1 0 10488656 -psycholinguistics n 1 2 @ + 1 0 06140587 -psychological_condition n 1 3 @ ~ ; 1 0 14373582 -psychological_disorder n 1 3 @ ~ ; 1 0 14083790 -psychological_feature n 1 2 @ ~ 1 0 00023100 -psychological_medicine n 1 3 @ ~ - 1 0 06055946 -psychological_moment n 1 1 @ 1 0 15246135 -psychological_operation n 1 2 @ ; 1 0 00983982 -psychological_science n 1 3 @ ~ - 1 0 06136258 -psychological_state n 1 3 @ ~ ; 1 0 14373582 -psychological_warfare n 1 1 @ 1 0 00953410 -psychologist n 1 3 @ ~ + 1 1 10488865 -psychology n 1 4 @ ~ + - 1 1 06136258 -psychology_department n 1 1 @ 1 0 08117702 -psychometric_test n 1 2 @ ~ 1 0 01006675 -psychometrics n 1 1 @ 1 0 06141023 -psychometrika n 1 1 @ 1 0 06141023 -psychometry n 1 2 @ + 1 0 06141023 -psychomotor_development n 1 1 @ 1 0 13543418 -psychomotor_epilepsy n 1 1 @ 1 0 14089974 -psychoneurosis n 1 3 @ ~ + 1 0 14393161 -psychoneurotic n 1 3 @ ~ + 1 0 10354898 -psychonomics n 1 2 @ ~ 1 0 06139285 -psychopath n 1 1 @ 1 1 10489564 -psychopathic_personality n 1 1 @ 1 0 14388139 -psychopathology n 2 4 @ ~ + - 2 0 06137759 06055946 -psychopathy n 1 3 @ ~ + 1 0 14380140 -psychopharmacology n 1 2 @ + 1 0 06055824 -psychophysicist n 1 3 @ ~ + 1 0 10489426 -psychophysics n 1 3 @ + - 1 0 06139491 -psychophysiology n 1 1 @ 1 1 06140799 -psychopomp n 1 1 @ 1 1 10489818 -psychopsis n 1 3 @ #m %m 1 0 12080199 -psychopsis_krameriana n 1 1 @ 1 0 12080588 -psychopsis_papilio n 1 1 @ 1 0 12080820 -psychosexual_development n 1 2 @ ; 1 0 13543564 -psychosexuality n 1 2 @ + 1 0 05930010 -psychosis n 1 3 @ ~ + 1 0 14398067 -psychosomatic_disorder n 1 1 @ 1 1 14386475 -psychosurgery n 1 2 @ ~ 1 0 00667384 -psychotherapeutics n 1 2 @ ~ 1 0 06056923 -psychotherapist n 1 3 @ ~ + 1 0 10489944 -psychotherapy n 2 4 @ ~ + - 2 1 06056923 00700652 -psychotherapy_group n 1 2 @ ~ 1 0 08310034 -psychotic n 1 3 @ ~ + 1 0 10490141 -psychotic_belief n 1 3 @ ~ ; 1 0 14376855 -psychotic_depression n 1 2 ! @ 1 0 14391112 -psychotic_person n 1 2 @ ~ 1 0 10490141 -psychotria n 1 3 @ #m %m 1 0 12669641 -psychotria_capensis n 1 3 @ #m %p 1 0 12669803 -psychotropic_agent n 1 2 @ ~ 1 0 04017429 -psychrometer n 1 2 @ %p 1 0 04017571 -psylla n 1 2 @ #m 1 0 02256172 -psyllid n 1 2 @ #m 1 0 02256172 -psyllidae n 1 3 @ #m %m 1 0 02256010 -psyllium n 1 1 @ 1 0 12599874 -psyop n 1 2 @ ; 1 0 00983982 -pt n 1 1 @ 1 0 14649543 -pt_boat n 1 1 @ 1 0 04017807 -ptah n 1 1 @ 1 0 09513065 -ptarmigan n 1 3 @ ~ #m 1 0 01796340 -pteretis n 1 3 @ #m %m 1 0 13197800 -pteretis_struthiopteris n 1 2 @ #m 1 0 13198054 -pteridaceae n 1 3 @ #m %m 1 0 13205482 -pteridium n 1 3 @ #m %m 1 0 13189656 -pteridium_aquilinum n 1 2 @ #m 1 0 13189844 -pteridium_esculentum n 1 2 @ #m 1 0 13190060 -pteridologist n 1 1 @ 1 0 10490330 -pteridology n 1 2 @ + 1 0 06074613 -pteridophyta n 1 3 @ #m %m 1 0 11544769 -pteridophyte n 1 3 @ ~ #m 1 0 11545524 -pteridosperm n 1 1 @ 1 0 11605542 -pteridospermae n 1 1 @ 1 0 11605147 -pteridospermaphyta n 1 1 @ 1 0 11605147 -pteridospermopsida n 1 3 @ #m %m 1 0 11604698 -pteriidae n 1 3 @ #m %m 1 0 01961736 -pterion n 1 1 @ 1 0 05235100 -pteris n 1 3 @ #m %m 1 0 13213768 -pteris_cretica n 1 2 @ #m 1 0 13214217 -pteris_multifida n 1 2 @ #m 1 0 13214340 -pteris_serrulata n 1 2 @ #m 1 0 13214485 -pternohyla n 1 3 @ #m %m 1 0 01652163 -pternohyla_fodiens n 1 2 @ #m 1 0 01652297 -pterocarpus n 1 3 @ #m %m 1 0 12564840 -pterocarpus_angolensis n 1 2 @ #m 1 0 12565102 -pterocarpus_indicus n 1 3 @ #m %s 1 0 12565368 -pterocarpus_macrocarpus n 1 2 @ #m 1 0 12565730 -pterocarpus_marsupium n 1 3 @ #m %s 1 0 12565912 -pterocarpus_santalinus n 1 3 @ #m %s 1 0 12566331 -pterocarya n 1 3 @ #m %m 1 0 12322359 -pterocarya_fraxinifolia n 1 1 @ 1 0 12322699 -pterocles n 1 3 @ #m %m 1 0 01815855 -pterocles_alchata n 1 2 @ #m 1 0 01816140 -pterocles_indicus n 1 2 @ #m 1 0 01816017 -pteroclididae n 1 3 @ #m %m 1 0 01815431 -pterocnemia n 1 3 @ #m %m 1 0 01521602 -pterocnemia_pennata n 1 2 @ #m 1 0 01521756 -pterodactyl n 1 2 @ #m 1 0 01723579 -pterodactylidae n 1 3 @ #m %m 1 0 01723259 -pterodactylus n 1 3 @ #m %m 1 0 01723425 -pterois n 1 3 @ #m %m 1 0 02643448 -pteropogon n 1 2 @ #m 1 0 12005329 -pteropogon_humboltianum n 1 2 @ #m 1 0 12005329 -pteropsida n 1 2 @ #m 1 0 11664677 -pteropus n 1 3 @ #m %m 1 0 02139914 -pteropus_capestratus n 1 1 @ 1 0 02140179 -pteropus_hypomelanus n 1 1 @ 1 0 02140268 -pterosaur n 1 3 @ ~ #m 1 0 01722998 -pterosauria n 1 3 @ #m %m 1 0 01722828 -pterospermum n 1 3 @ #m %m 1 0 12200747 -pterospermum_acerifolium n 1 2 @ #m 1 0 12200905 -pterostylis n 1 3 @ #m %m 1 0 12081022 -pteroylglutamic_acid n 1 1 @ 1 0 15091846 -pteroylmonoglutamic_acid n 1 1 @ 1 0 15091846 -pterygium n 1 1 @ 1 1 05317603 -pterygoid_muscle n 1 1 @ 1 0 05576074 -pterygoid_plexus n 1 1 @ 1 0 05508211 -pterygoid_process n 1 2 @ #p 1 0 05542539 -ptilocercus n 1 3 @ #m %m 1 0 02495446 -ptilocrinus n 1 3 @ #m %m 1 0 02320339 -ptilonorhynchidae n 1 3 @ #m %m 1 0 01600480 -ptilonorhynchus n 1 3 @ #m %m 1 0 01600909 -ptilonorhynchus_violaceus n 1 2 @ #m 1 0 01601068 -ptloris n 1 2 @ #m 1 0 01571297 -ptloris_paradisea n 1 1 @ 1 0 01571410 -pto n 1 1 @ 1 0 03997274 -ptolemaic_dynasty n 1 2 @ %m 1 0 08156948 -ptolemaic_system n 1 2 @ ; 1 1 05890809 -ptolemy n 2 3 @ %m + 2 0 11247413 08156948 -ptolemy_i n 1 2 @ #m 1 0 11247644 -ptolemy_ii n 1 2 @ #m 1 0 11247897 -ptomain n 1 2 @ ~ 1 0 14999411 -ptomaine n 2 2 @ ~ 2 0 14999411 14069541 -ptomaine_poisoning n 1 1 @ 1 0 14069541 -ptosis n 1 2 @ ~ 1 0 14558995 -ptsd n 1 3 @ ~ %p 1 0 14386130 -ptyalin n 1 2 @ #s 1 0 14738521 -ptyalism n 1 2 @ + 1 0 13543871 -ptyalith n 1 1 @ 1 0 09400584 -ptyas n 1 3 @ #m %m 1 0 01733094 -ptyas_mucosus n 1 2 @ #m 1 0 01733214 -ptychozoon n 1 3 @ #m %m 1 0 01675225 -ptychozoon_homalocephalum n 1 2 @ #m 1 0 01675352 -pu n 1 2 @ ~ 1 0 14649775 -pub n 1 4 @ ~ %p ; 1 0 04018399 -pub_crawl n 1 1 @ 1 0 00749105 -puberty n 1 3 @ #p + 1 0 15148295 -pubes n 1 2 @ %p 1 0 05558555 -pubescence n 1 3 @ #p + 1 0 15148295 -pubic_bone n 1 2 @ #p 1 0 05278714 -pubic_hair n 1 3 @ ~ #p 1 0 05263587 -pubic_louse n 1 2 @ #m 1 0 02185167 -pubic_region n 1 2 @ %p 1 0 05558555 -pubis n 1 3 @ #p + 1 0 05278714 -public n 2 3 @ ~ %m 2 2 08179689 07965817 -public-relations_campaign n 1 1 @ 1 0 00801834 -public-service_corporation n 1 2 @ ~ 1 0 08185758 -public_address_system n 1 2 @ %p 1 0 04018155 -public_assistance n 1 2 @ ~ 1 0 01086945 -public_charity n 1 1 @ 1 0 08407140 -public_convenience n 1 2 @ ~ 1 0 04018667 -public_debate n 1 1 @ 1 1 07242104 -public_debt n 1 1 @ 1 0 13397705 -public_defender n 1 2 @ ; 1 0 10490557 -public_discussion n 1 1 @ 1 0 07144190 -public_domain n 1 1 @ 1 0 13243668 -public_easement n 1 1 @ 1 0 05179027 -public_executioner n 1 2 @ ~ 1 0 10069427 -public_exposure n 1 2 @ ~ 1 0 06253140 -public_eye n 1 1 @ 1 0 14433769 -public_figure n 1 1 @ 1 0 10344443 -public_holiday n 1 2 @ ~ 1 0 15199592 -public_house n 1 4 @ ~ %p ; 1 0 04018399 -public_housing n 1 1 @ 1 0 08549911 -public_knowledge n 1 2 @ ~ 1 0 05612067 -public_lavatory n 1 2 @ ~ 1 0 04018667 -public_law n 1 2 @ ; 1 1 06534548 -public_lecture n 1 1 @ 1 1 07240549 -public_library n 1 1 @ 1 0 07978170 -public_mover n 1 1 @ 1 0 08478482 -public_nudity n 1 1 @ 1 0 00772253 -public_nuisance n 1 1 @ 1 0 05831566 -public_office n 1 2 @ ~ 1 0 00598318 -public_opinion n 1 1 @ 1 1 05949726 -public_opinion_poll n 1 2 @ ~ 1 1 05800998 -public_presentation n 1 3 @ ~ %p 1 0 06891493 -public_press n 1 3 @ ~ %p 1 1 06263369 -public_property n 1 1 @ 1 0 13249062 -public_prosecutor n 1 3 @ ~ ; 1 0 10484858 -public_relations n 1 1 @ 1 1 07247925 -public_relations_man n 1 1 @ 1 0 10469611 -public_relations_person n 1 2 @ ~ 1 0 10490965 -public_school n 2 3 @ ~ ; 2 1 08410282 08410688 -public_security n 1 1 @ 1 0 14539524 -public_servant n 1 3 @ ~ ; 1 0 10491136 -public_service n 2 2 @ ~ 2 0 01210281 00585660 -public_speaker n 1 2 @ ~ 1 0 10380672 -public_speaking n 1 2 @ ~ 1 0 07241837 -public_square n 2 3 @ ~ #p 2 1 08619620 02684962 -public_toilet n 1 2 @ ~ 1 0 04018667 -public_transit n 1 3 @ ~ %p 1 1 04018951 -public_transport n 1 3 @ ~ #p 1 0 04019101 -public_treasury n 1 1 @ 1 0 13357891 -public_trust n 1 1 @ 1 0 13361465 -public_utility n 1 2 @ ~ 1 1 08185758 -public_utility_company n 1 2 @ ~ 1 0 08185758 -public_violence n 1 2 @ ~ 1 0 01170502 -public_works n 1 3 @ #p ; 1 0 04019335 -publican n 1 3 @ ~ ; 1 0 10490421 -publication n 4 5 @ ~ %p + - 4 2 06589574 01103614 01102436 01101958 -publiciser n 1 3 @ ~ + 1 0 10490699 -publicist n 1 3 @ ~ + 1 1 10490699 -publicity n 2 4 @ ~ #p + 2 1 07247071 04720536 -publicity_man n 1 1 @ 1 1 10469611 -publicizer n 1 3 @ ~ + 1 0 10490699 -publicizing n 1 3 @ ~ + 1 0 01101329 -publisher n 3 3 @ ~ + 3 2 08062623 10491309 10491575 -publishing n 1 4 @ ~ + - 1 1 01101958 -publishing_company n 1 2 @ ~ 1 0 08062623 -publishing_conglomerate n 1 1 @ 1 0 08062842 -publishing_empire n 1 1 @ 1 0 08062842 -publishing_firm n 1 2 @ ~ 1 0 08062623 -publishing_house n 1 2 @ ~ 1 0 08062623 -publius_aelius_hadrianus n 1 1 @ 1 0 11021342 -publius_cornelius_scipio n 1 1 @ 1 0 11288216 -publius_cornelius_scipio_africanus_major n 1 1 @ 1 0 11288216 -publius_cornelius_tacitus n 1 1 @ 1 0 11328524 -publius_ovidius_naso n 1 2 @ - 1 0 11218776 -publius_terentius_afer n 1 1 @ 1 0 11335695 -publius_vergilius_maro n 1 1 @ 1 0 11367436 -pubococcygeus_exercises n 1 1 @ 1 0 00628539 -puccini n 1 1 @ 1 0 11248077 -puccinia n 1 3 @ #m %m 1 0 13064852 -puccinia_graminis n 1 2 @ #m 1 0 13065089 -pucciniaceae n 1 3 @ #m %m 1 0 13064678 -puccoon n 2 2 @ #m 2 0 12820853 11908077 -puce n 1 1 @ 1 0 04974145 -puck n 2 1 @ 2 0 09541809 04019541 -pucker n 1 2 @ + 1 1 13907847 -puckerbush n 1 1 @ 1 0 11741575 -puckishness n 1 2 @ + 1 0 04650010 -pud n 1 3 @ ~ ; 1 0 07612996 -pudden-head n 1 2 @ ~ 1 0 10667187 -pudding n 3 3 @ ~ ; 3 0 07617188 07612996 07612632 -pudding-face n 1 1 @ 1 0 05601662 -pudding-wife n 1 2 @ #m 1 0 02608996 -pudding_berry n 1 1 @ 1 0 12948251 -pudding_face n 1 1 @ 1 0 05601662 -pudding_head n 1 2 @ ~ 1 0 10667187 -pudding_pipe_tree n 1 1 @ 1 0 12492106 -pudding_stone n 1 1 @ 1 0 14863031 -puddingwife n 1 2 @ #m 1 0 02608996 -puddle n 3 3 @ ~ + 3 0 14992945 09397607 08665101 -puddler n 1 2 @ + 1 0 10491869 -pudendal_artery n 1 1 @ 1 0 05353683 -pudendal_block n 1 1 @ 1 0 14029163 -pudendal_cleavage n 1 2 @ #p 1 0 05522784 -pudendal_cleft n 1 2 @ #p 1 0 05522784 -pudendal_slit n 1 2 @ #p 1 0 05522784 -pudendal_vein n 1 1 @ 1 0 05378137 -pudendum n 1 2 @ + 1 0 05514272 -pudge n 1 2 @ + 1 0 10491998 -pudginess n 1 2 @ + 1 0 05001089 -puebla n 1 3 @ #p ; 1 0 08745011 -puebla_de_zaragoza n 1 3 @ #p ; 1 0 08745011 -pueblo n 3 3 @ ~ #p 3 0 09666622 09068320 08673273 -pueraria n 1 3 @ #m %m 1 0 12566809 -pueraria_lobata n 1 2 @ #m 1 0 12566954 -puerility n 2 2 @ + 2 0 14427065 04928760 -puerpera n 1 2 @ + 1 0 10492086 -puerperal_fever n 1 1 @ 1 0 14190493 -puerperium n 1 2 @ + 1 0 15142568 -puerto_rican n 1 1 @ 1 1 09746725 -puerto_rico n 2 3 @ #p %p 2 1 08752974 08752814 -puff n 8 4 @ ~ #p + 8 0 11497888 07628470 06695110 04033995 03994874 03858418 00837675 00835501 -puff_adder n 2 2 @ #m 2 0 01753032 01729322 -puff_batter n 1 1 @ 1 0 07628181 -puff_of_air n 1 1 @ 1 0 11497888 -puff_paste n 1 2 @ ~ 1 0 07627931 -puffball n 2 3 @ ~ #m 2 0 13043926 12969131 -puffbird n 1 2 @ #m 1 0 01842504 -puffed_rice n 1 1 @ 1 0 07705557 -puffed_wheat n 1 1 @ 1 0 07705633 -puffer n 2 7 @ ~ #m #p %s %p + 2 0 07781972 02655020 -pufferfish n 2 6 @ ~ #m #p %s %p 2 0 07781972 02655020 -puffery n 1 1 @ 1 0 06696181 -puffin n 1 3 @ ~ #m 1 0 02047614 -puffiness n 2 3 @ ~ + 2 0 14315192 04817923 -puffing n 2 2 @ + 2 0 00834866 00834460 -puffinus n 1 3 @ #m %m 1 0 02060290 -puffinus_puffinus n 1 1 @ 1 0 02060569 -pug n 1 1 @ 1 0 02110958 -pug-dog n 1 1 @ 1 0 02110958 -pug_nose n 1 1 @ 1 0 05599398 -puget_sound n 1 2 @ #p 1 0 09400667 -pugilism n 1 4 @ ~ + - 1 0 00445802 -pugilist n 1 3 @ ~ + 1 0 09870208 -pugin n 1 1 @ 1 0 11248232 -puglia n 1 3 @ #p %p 1 0 08810358 -pugnacity n 1 3 @ ~ + 1 0 04643662 -puissance n 1 2 @ + 1 0 05191695 -pujunan n 1 1 @ 1 0 06924895 -puka n 2 2 @ #m 2 0 12949160 11799331 -puka_inti n 1 2 @ ; 1 0 08040008 -puke n 2 2 @ + 2 1 10539715 14855992 -puking n 1 3 @ ~ + 1 0 00118733 -puku n 1 2 @ #m 1 0 02428089 -pul n 1 2 @ #p 1 0 13663340 -pula n 1 2 @ %p 1 0 13695945 -pulasan n 2 4 @ #m #p %p 2 0 12745564 07769886 -pulasan_tree n 1 3 @ #m %p 1 0 12745564 -pulassan n 2 4 @ #m #p %p 2 0 12745564 07769886 -pulchritude n 1 3 @ ~ + 1 0 04685062 -pulex n 1 3 @ #m %m 1 0 02186586 -pulex_irritans n 1 2 @ #m 1 0 02186717 -pulicaria n 1 3 @ #m %m 1 0 12005500 -pulicaria_dysenterica n 1 2 @ #m 1 0 12005656 -pulicidae n 1 3 @ #m %m 1 0 02186399 -pulitzer n 1 1 @ 1 0 11248426 -pull n 7 4 @ ~ #p + 7 4 00114431 11498040 05157274 04019696 14299070 00837675 00625427 -pull-in n 1 2 @ ; 1 0 04020617 -pull-off n 1 1 @ 1 0 04020744 -pull-through n 1 1 @ 1 0 04021164 -pull-up n 2 3 @ + ; 2 0 04020617 00629597 -pull_chain n 1 2 @ #p 1 0 04020087 -pullback n 2 3 @ + ; 2 0 04019881 00056688 -puller n 2 3 @ ~ + 2 0 10492447 10492202 -pullet n 2 1 @ 2 0 07645469 01793249 -pulley n 1 3 @ ~ #p 1 1 04020298 -pulley-block n 1 3 @ ~ #p 1 0 04020298 -pulley_block n 1 3 @ ~ #p 1 0 04020298 -pulling n 1 3 @ ~ + 1 1 00114431 -pulling_out n 1 1 @ 1 0 00849059 -pullman n 1 1 @ 1 0 04020912 -pullman_car n 1 1 @ 1 0 04020912 -pullman_porter n 1 1 @ 1 0 10455305 -pullorum_disease n 1 1 @ 1 0 14275077 -pullout n 1 3 @ + ; 1 0 00057306 -pullover n 1 2 @ ~ 1 0 04021028 -pullulation n 2 2 @ + 2 0 13544073 13543968 -pulmonary_anthrax n 1 1 @ 1 0 14072934 -pulmonary_artery n 1 2 @ ~ 1 1 05353819 -pulmonary_circulation n 1 1 @ 1 0 11439446 -pulmonary_congestion n 1 1 @ 1 0 14321243 -pulmonary_embolism n 1 1 @ 1 0 14101801 -pulmonary_emphysema n 1 2 @ ~ 1 1 14147380 -pulmonary_plexis n 1 1 @ 1 0 05508403 -pulmonary_reserve n 1 1 @ 1 0 13759941 -pulmonary_stenosis n 1 2 @ #p 1 0 14106917 -pulmonary_trunk n 1 1 @ 1 0 05354026 -pulmonary_tuberculosis n 1 1 @ 1 0 14144064 -pulmonary_valve n 1 1 @ 1 0 05394707 -pulmonary_vein n 1 3 @ ~ #p 1 1 05378234 -pulmonata n 1 3 @ #m %m 1 0 01952162 -pulmonic_plague n 1 1 @ 1 0 14139661 -pulp n 5 5 @ ~ #p %s + 5 2 09400826 13096035 14794418 06596607 05308950 -pulp_cavity n 1 3 @ #p %p 1 0 05283326 -pulp_magazine n 1 1 @ 1 0 06596607 -pulpiness n 1 2 @ + 1 0 04939198 -pulpit n 1 1 @ 1 1 03159640 -pulpwood n 1 1 @ 1 0 15100397 -pulque n 1 2 @ #s 1 0 07905618 -pulsar n 1 1 @ 1 0 09400987 -pulsatilla n 1 3 @ #m %m 1 0 11737316 -pulsatilla_occidentalis n 1 1 @ 1 0 11738063 -pulsatilla_patens n 1 1 @ 1 0 11737752 -pulsatilla_vulgaris n 1 1 @ 1 0 11738203 -pulsation n 3 4 @ ~ + ; 3 1 07420991 11529295 07400906 -pulse n 4 4 @ ~ + ; 4 2 07420991 07400906 15280695 07709046 -pulse-time_modulation n 1 1 @ 1 0 06282093 -pulse_counter n 1 2 @ ~ 1 0 04021362 -pulse_generator n 1 3 @ ~ #p 1 1 04021503 -pulse_height_analyzer n 1 1 @ 1 0 03616225 -pulse_modulation n 1 2 @ ~ 1 0 06281959 -pulse_rate n 1 2 @ ~ 1 0 15280695 -pulse_timing_circuit n 1 1 @ 1 1 04021704 -pulseless_disease n 1 1 @ 1 0 14258957 -pulsing n 1 3 @ + ; 1 0 07420991 -pulverisation n 3 2 @ + 3 0 14997012 00358290 00218753 -pulverization n 3 2 @ + 3 0 14997012 00358290 00218753 -puma n 1 2 @ #m 1 0 02125311 -pumice n 1 2 @ + 1 0 14700438 -pumice_stone n 1 1 @ 1 0 14700438 -pummelo n 1 3 @ #m %p 1 0 12709103 -pump n 3 5 @ ~ #p %p + 3 1 04021798 05388805 04022332 -pump-and-dump_scheme n 1 1 @ 1 0 05906305 -pump-type_pliers n 1 2 @ ; 1 0 04023021 -pump_action n 1 2 @ #p 1 0 04022434 -pump_house n 1 2 @ ~ 1 0 04022708 -pump_priming n 2 1 @ 2 0 01122754 00270403 -pump_room n 1 2 @ #p 1 0 04022866 -pump_well n 1 1 @ 1 0 04023119 -pumpernickel n 1 1 @ 1 0 07685918 -pumping_station n 1 2 @ ~ 1 0 04022708 -pumpkin n 2 4 @ #m #p %p 2 0 12158443 07735510 -pumpkin_ash n 1 1 @ 1 0 12306089 -pumpkin_pie n 1 1 @ 1 0 07626721 -pumpkin_seed n 1 2 @ #p 1 0 07770763 -pumpkin_vine n 1 3 @ #m %p 1 0 12158443 -pumpkinseed n 1 2 @ #m 1 0 02563648 -pun n 1 2 @ + 1 1 06781581 -punch n 3 4 @ ~ + ; 3 1 00134780 07930554 04023249 -punch-up n 1 2 @ ; 1 0 01177583 -punch_bag n 1 1 @ 1 0 04023962 -punch_bowl n 1 1 @ 1 0 04023695 -punch_card n 1 1 @ 1 0 04023808 -punch_line n 1 2 @ #p 1 0 06778777 -punch_pliers n 1 2 @ ; 1 0 04024137 -punch_press n 1 2 @ ~ 1 0 04024274 -punchayet n 1 2 @ ; 1 0 08311522 -punchball n 1 1 @ 1 0 04023962 -punchboard n 1 1 @ 1 0 04023422 -punched_card n 1 1 @ 1 0 04023808 -puncher n 3 3 @ ~ + 3 1 09972661 10492627 04023249 -punching_bag n 2 1 @ 2 0 10492727 04023962 -punching_ball n 1 1 @ 1 0 04023962 -punctilio n 2 1 @ 2 0 06666729 01204623 -punctiliousness n 1 2 @ + 1 0 04672605 -punctuality n 1 3 ! @ + 1 1 05047778 -punctuated_equilibrium n 1 1 @ 1 0 06111003 -punctuation n 3 5 @ ~ #m #p + 3 0 07368130 06841365 00390198 -punctuation_mark n 1 3 @ ~ #p 1 1 06841365 -punctum n 1 2 @ ; 1 0 05278922 -puncture n 3 3 @ ~ + 3 0 07314658 04024396 00942988 -pundit n 1 2 @ ~ 1 1 10206887 -pung n 1 1 @ 1 0 04024576 -pungapung n 1 3 @ #m ; 1 0 11782878 -pungency n 2 2 @ + 2 0 06776986 04992834 -punic n 1 2 @ + 1 0 06989657 -punic_war n 1 2 @ %p 1 0 01307299 -punica n 1 3 @ #m %m 1 0 12345136 -punica_granatum n 1 3 @ #m %p 1 0 12345280 -punicaceae n 1 3 @ #m %m 1 0 12344996 -puniness n 2 3 @ ~ + 2 0 05173205 05107495 -punishment n 1 3 @ ~ + 1 1 01160342 -punitive_damages n 1 3 @ ~ ; 1 0 13291831 -punjab n 1 2 @ #p 1 0 08902894 -punjabi n 2 1 @ 2 0 09676247 06971605 -punk n 5 3 @ ~ #m 5 1 10184081 15101723 15101586 10492894 07065740 -punk_rock n 1 1 @ 1 0 07065740 -punk_rocker n 1 2 @ #m 1 0 10492894 -punkah n 1 1 @ 1 0 04024676 -punkey n 1 2 @ #m 1 0 02202678 -punkie n 1 2 @ #m 1 0 02202678 -punks n 1 2 @ %m 1 0 08370505 -punky n 1 2 @ #m 1 0 02202678 -punnet n 1 2 @ ; 1 0 04024862 -punning n 1 2 @ + 1 0 06781581 -punster n 1 2 @ + 1 1 10493093 -punt n 3 4 @ %p + ; 3 0 13694657 04024983 00136984 -punta_arenas n 1 2 @ #p 1 0 08721796 -punter n 3 4 @ ~ + ; 3 0 10493419 10493199 09851876 -punting n 1 3 @ + ; 1 0 00136984 -pup n 2 3 @ ~ + 2 1 01322343 10493835 -pup_tent n 1 1 @ 1 1 04025508 -pupa n 1 3 @ ~ + 1 0 02312427 -pupet_regime n 1 1 @ 1 0 08178321 -pupil n 3 5 @ ~ #m #p + 3 2 10665698 05320183 10559288 -pupillary_reflex n 1 1 @ 1 0 00865808 -pupillary_sphincter n 1 2 @ #p 1 0 05572940 -puppet n 3 3 @ ~ + 3 1 04025350 09976551 04025130 -puppet_government n 1 1 @ 1 0 08178321 -puppet_leader n 1 1 @ 1 0 10493528 -puppet_play n 1 1 @ 1 0 07019633 -puppet_ruler n 1 1 @ 1 0 10493528 -puppet_show n 1 1 @ 1 0 07019633 -puppet_state n 1 1 @ 1 0 08178321 -puppeteer n 1 3 @ ~ + 1 0 10493685 -puppetry n 2 1 @ 2 0 05636294 00899657 -puppis n 1 2 @ #p 1 0 09401159 -puppy n 2 1 @ 2 1 01322604 10493835 -puppy_fat n 1 1 @ 1 0 05269784 -puppy_love n 1 1 @ 1 0 07544351 -purace n 1 2 @ #p 1 0 09176955 -purana n 1 2 @ + 1 0 06463786 -purau n 1 1 @ 1 0 12180168 -purcell n 1 1 @ 1 0 11248599 -purchase n 4 3 @ ~ + 4 3 00079018 13253612 11415342 11473138 -purchase_agreement n 1 1 @ 1 0 06523842 -purchase_contract n 1 1 @ 1 0 06523842 -purchase_order n 1 2 @ ~ 1 0 06529219 -purchase_price n 1 1 @ 1 0 13305262 -purchaser n 1 3 @ ~ + 1 0 09885145 -purchasing n 1 3 @ ~ + 1 0 00081572 -purchasing_agent n 1 1 @ 1 1 10493922 -purchasing_department n 1 1 @ 1 1 08119397 -purdah n 3 1 @ 3 0 14415072 08379882 04025633 -pure_absence n 1 1 @ 1 0 14088918 -pure_binary_numeration_system n 1 1 @ 1 0 06810020 -pure_gold n 1 1 @ 1 0 14639467 -pure_imaginary_number n 1 2 @ ~ 1 0 13730054 -pure_mathematics n 1 2 @ ~ 1 0 06003682 -pure_tone n 1 2 @ ~ 1 0 05719605 -pureblood n 1 2 @ + 1 0 01323599 -purebred n 1 2 @ + 1 0 01323599 -puree n 1 2 @ + 1 0 07651025 -pureness n 3 4 @ ~ = + 3 0 14486767 13990064 04849972 -purgation n 3 3 @ ~ + 3 0 00253577 00253070 00252662 -purgative n 1 3 @ ~ + 1 0 04025748 -purgatory n 2 3 @ + ; 2 1 13937406 05631449 -purge n 3 3 @ ~ + 3 0 00252662 00252430 00216834 -purging n 2 3 @ ~ + 2 1 00252430 00252662 -purging_cassia n 1 1 @ 1 0 12492106 -purification n 4 3 @ ~ + 4 1 00253270 13548105 00253070 00252894 -purifier n 1 3 @ ~ + 1 0 04026053 -purim n 1 3 @ #p ; 1 0 15196870 -purine n 2 2 @ ~ 2 0 14706749 14706574 -purinethol n 1 2 @ ; 1 0 03748456 -purism n 1 2 @ + 1 0 07191950 -purist n 1 2 @ + 1 0 10494037 -puritan n 3 2 @ + 3 0 10494373 10494195 10487026 -puritanism n 2 3 @ + ; 2 0 06232635 04639591 -purity n 3 5 ! @ ~ = + 3 2 14486767 13990064 04849972 -purkinje n 1 1 @ 1 0 11248777 -purkinje's_system n 1 2 @ %p 1 0 05391269 -purkinje's_tissue n 1 2 @ %p 1 0 05391269 -purkinje_cell n 1 1 @ 1 0 05466244 -purkinje_fiber n 1 2 @ #p 1 0 05391118 -purkinje_network n 1 2 @ %p 1 0 05391269 -purl n 2 2 @ + 2 0 04026304 04026180 -purl_stitch n 1 2 @ + 1 0 04026180 -purlieu n 1 1 @ 1 0 08539457 -purloo n 1 1 @ 1 0 07590177 -purple n 2 3 @ ~ + 2 1 04970059 14432271 -purple-flowering_raspberry n 1 1 @ 1 0 12657509 -purple-fringed_orchid n 2 1 @ 2 0 12068432 12066630 -purple-fringed_orchis n 2 1 @ 2 0 12068432 12066630 -purple-hooded_orchis n 1 1 @ 1 0 12044041 -purple-staining_cortinarius n 1 2 @ #m 1 0 13075441 -purple-stemmed_aster n 1 1 @ 1 0 11936539 -purple_amaranth n 1 1 @ 1 0 11823756 -purple_anise n 1 2 @ #m 1 0 11708857 -purple_apricot n 1 2 @ #m 1 0 12641180 -purple_avens n 2 1 @ 2 0 12632335 12632072 -purple_bacteria n 1 1 @ 1 0 01360180 -purple_beech n 1 2 @ #m 1 0 12261571 -purple_boneset n 1 2 @ #m 1 0 11969166 -purple_chinese_houses n 1 2 @ #m 1 0 12881631 -purple_clematis n 1 1 @ 1 0 11731659 -purple_clover n 1 1 @ 1 0 11753355 -purple_cress n 1 1 @ 1 0 11882972 -purple_emperor n 1 1 @ 1 0 02278980 -purple_finch n 1 2 @ #m 1 0 01533000 -purple_fringeless_orchid n 1 1 @ 1 0 12068138 -purple_fringeless_orchis n 1 1 @ 1 0 12068138 -purple_gallinule n 1 2 @ ~ 1 0 02016956 -purple_grackle n 1 1 @ 1 0 01574560 -purple_granadillo n 1 1 @ 1 0 12383737 -purple_ground_cherry n 2 2 @ #m 2 0 12911673 12911079 -purple_heart n 2 1 @ 2 1 06708475 04256152 -purple_heather n 1 2 @ #m 1 0 12243109 -purple_loco n 1 1 @ 1 0 12554729 -purple_locoweed n 1 1 @ 1 0 12554729 -purple_loosestrife n 1 2 @ #m 1 0 12328567 -purple_martin n 1 2 @ #m 1 0 01596608 -purple_milk_vetch n 1 1 @ 1 0 12508762 -purple_mullein n 1 1 @ 1 0 12889579 -purple_nightshade n 1 1 @ 1 0 12894930 -purple_onion n 1 1 @ 1 0 07722888 -purple_orchis n 1 1 @ 1 0 12044041 -purple_osier n 1 2 @ #m 1 0 12729729 -purple_passage n 1 1 @ 1 0 06401222 -purple_pea n 1 2 @ #m 1 0 12535593 -purple_poppy_mallow n 1 1 @ 1 0 12175370 -purple_rock_brake n 1 1 @ 1 0 13212175 -purple_sage n 1 1 @ 1 0 12865562 -purple_sanicle n 1 1 @ 1 0 12943912 -purple_saxifrage n 1 2 @ #m 1 0 12794135 -purple_silkweed n 1 1 @ 1 0 13235011 -purple_strawberry_guava n 1 1 @ 1 0 12333961 -purple_trillium n 1 1 @ 1 0 12468900 -purple_velvet_plant n 1 2 @ #m 1 0 11975254 -purple_virgin's_bower n 1 1 @ 1 0 11731659 -purple_willow n 1 2 @ #m 1 0 12729729 -purpleness n 1 3 @ ~ + 1 0 04970059 -purplish-red n 1 2 @ ~ 1 0 04964287 -purplish_blue n 1 1 @ 1 0 04969952 -purplish_pink n 1 1 @ 1 0 04971522 -purplish_red n 1 2 @ ~ 1 0 04964287 -purport n 2 2 @ + 2 0 06605897 05922651 -purpose n 3 4 @ ~ = + 3 3 05982152 05149325 04864200 -purposefulness n 1 3 ! @ + 1 0 05170400 -purposelessness n 1 3 ! @ + 1 0 05174326 -purpura n 1 2 @ ~ 1 0 14197468 -purpura_hemorrhagica n 1 1 @ 1 0 14565417 -purr n 1 2 @ + 1 0 07390645 -purse n 4 3 @ ~ %p 4 3 02774152 13413294 04026417 13413159 -purse-string_operation n 1 1 @ 1 0 00691879 -purse_seine n 1 1 @ 1 0 04026518 -purse_string n 1 2 @ #p 1 0 04026688 -purser n 1 1 @ 1 0 10494643 -purslane n 1 2 @ ~ 1 0 11857320 -purslane_family n 1 3 @ #m %m 1 0 11856981 -purslane_speedwell n 1 1 @ 1 0 12891824 -pursual n 1 2 @ ~ 1 0 00319939 -pursuance n 2 3 @ ~ + 2 0 05770391 01022008 -pursued n 1 1 @ 1 1 10494778 -pursuer n 2 3 @ ~ + 2 1 10494935 10495167 -pursuit n 4 3 @ ~ + 4 2 00319939 05770391 00432689 00431552 -purulence n 2 4 @ ~ #p + 2 0 14312600 05417472 -purulency n 1 3 @ #p + 1 0 14312600 -purulent_pleurisy n 1 1 @ 1 0 14173175 -purus n 1 2 @ #p 1 0 09401340 -purus_river n 1 2 @ #p 1 0 09401340 -purveyance n 1 2 @ + 1 0 01060924 -purveyor n 1 2 @ + 1 1 10495299 -purview n 1 1 @ 1 0 05127782 -pus n 2 3 @ ~ #p 2 0 15220985 05417472 -pus-forming_bacteria n 1 1 @ 1 0 01377510 -pusan n 1 2 @ #p 1 0 08956574 -pusey n 1 1 @ 1 0 11248997 -puseyism n 1 1 @ 1 0 06229410 -push n 5 4 @ ~ #p + 5 2 00112312 11498203 04836683 04027023 00282485 -push-bike n 1 2 @ ; 1 0 04026813 -push-button_radio n 1 2 @ %p 1 0 04027367 -push-down_list n 1 1 @ 1 0 06494646 -push-down_queue n 1 1 @ 1 0 06502054 -push-down_stack n 1 1 @ 1 0 06494646 -push-down_storage n 1 1 @ 1 0 04027504 -push-down_store n 1 1 @ 1 0 04027504 -push_back n 1 2 @ + 1 0 00980779 -push_broom n 1 1 @ 1 0 04026918 -push_button n 1 3 @ ~ #p 1 0 04027023 -pushan n 1 1 @ 1 0 09527924 -pushball n 1 1 @ 1 0 00477827 -pushcart n 1 3 @ ~ %p 1 0 03484083 -pushchair n 1 2 @ ~ 1 0 02766534 -pusher n 5 3 @ ~ + 5 0 10495756 10495555 10495421 04027706 02766534 -pushiness n 1 2 @ + 1 0 05167412 -pushing n 1 3 @ ~ + 1 1 00112312 -pushkin n 1 1 @ 1 0 11249191 -pushover n 2 2 @ ~ 2 0 10495880 00575365 -pushpin n 1 1 @ 1 0 04431745 -pushtun n 1 1 @ 1 0 09689739 -pushup n 1 2 @ ~ 1 1 00629318 -pusillanimity n 1 3 @ ~ + 1 0 04860985 -pusillanimousness n 1 3 @ ~ + 1 0 04860985 -puss n 2 1 @ 2 0 05521514 02122298 -pussley n 1 2 @ #m 1 0 11858077 -pussly n 1 2 @ #m 1 0 11858077 -pussy n 2 1 @ 2 1 05521514 02122298 -pussy's-paw n 1 2 @ #m 1 0 11862300 -pussy-paw n 1 2 @ #m 1 0 11862300 -pussy-paws n 1 2 @ #m 1 0 11862300 -pussy_willow n 2 2 @ #m 2 1 12727101 12727518 -pussycat n 2 1 @ 2 0 10495975 02122298 -pussytoes n 1 3 @ ~ #m 1 0 11922374 -pustule n 1 3 @ ~ + 1 0 14334122 -put n 1 2 @ #p 1 0 00080968 -put-down n 1 3 @ + ; 1 0 06716796 -put-on n 3 3 @ ~ + 3 0 06780309 00753685 00427580 -put-put n 1 2 @ ; 1 0 04027820 -put_option n 2 3 ! @ #p 2 0 13242484 00080968 -putamen n 1 2 @ #p 1 0 05498460 -putin n 1 1 @ 1 0 11249322 -putoff n 1 2 @ + 1 0 06759974 -putout n 1 4 @ ~ + ; 1 1 00130093 -putrajaya n 1 2 @ #p 1 0 08963969 -putrefaction n 3 4 @ ~ + ; 3 0 14560926 13458019 04850996 -putrescence n 2 2 @ + 2 0 14561102 04791591 -putrescine n 1 1 @ 1 0 14863177 -putridity n 1 2 @ + 1 0 14488200 -putridness n 1 2 @ + 1 0 14561102 -putsch n 1 2 @ ~ 1 0 01145015 -putt n 1 2 @ + 1 0 00572838 -puttee n 1 1 @ 1 0 04027935 -putter n 2 2 @ + 2 0 10496081 04028074 -putterer n 1 2 @ + 1 0 10496193 -putting n 1 2 @ + 1 0 00572838 -putting_green n 1 2 @ #p 1 0 08579780 -putting_iron n 1 1 @ 1 0 04028074 -putting_surface n 1 2 @ #p 1 0 08579780 -putting_to_death n 1 2 @ ~ 1 0 00219012 -putty n 1 2 @ + 1 0 14703797 -putty_knife n 1 1 @ 1 0 04028221 -puttyroot n 1 2 @ #m 1 0 12045514 -putz n 2 2 @ ; 2 0 10496393 05526713 -puzzle n 2 3 @ ~ + 2 0 06784639 04028315 -puzzlement n 1 2 @ + 1 1 05685030 -puzzler n 1 3 @ ~ + 1 0 06784639 -pva n 1 1 @ 1 0 14595279 -pvc n 2 1 @ 2 0 14595403 14362841 -pwr n 1 1 @ 1 0 04001661 -px n 1 1 @ 1 0 03989447 -pya n 1 2 @ #p 1 0 13684402 -pyaemia n 1 2 @ + 1 0 14190736 -pycnanthemum n 1 3 @ #m %m 1 0 12863458 -pycnanthemum_virginianum n 1 1 @ 1 0 12863819 -pycnidium n 1 1 @ 1 0 11550620 -pycnodysostosis n 1 1 @ 1 0 14506533 -pycnogonid n 1 2 @ #m 1 0 01787006 -pycnogonida n 1 3 @ #m %m 1 0 01786879 -pycnosis n 1 2 @ + 1 0 14076667 -pydna n 1 2 @ ; 1 0 01292343 -pye-dog n 1 1 @ 1 0 02085118 -pyelitis n 1 1 @ 1 0 14173397 -pyelogram n 1 2 @ ~ 1 0 04028472 -pyelography n 1 2 @ ~ 1 0 00906664 -pyelonephritis n 1 2 @ ~ 1 0 14566308 -pyemia n 1 2 @ + 1 0 14190736 -pygmalion n 1 2 @ ; 1 0 09554701 -pygmy n 2 1 @ 2 0 10496626 10496489 -pygmy_chimpanzee n 1 2 @ #m 1 0 02482650 -pygmy_cypress n 1 1 @ 1 0 11631405 -pygmy_marmoset n 1 2 @ #m 1 0 02490811 -pygmy_mouse n 1 2 @ #m 1 0 02337598 -pygmy_sperm_whale n 1 2 @ #m 1 0 02067603 -pygopodidae n 1 3 @ #m %m 1 0 01675964 -pygopus n 1 2 @ #m 1 0 01676113 -pygoscelis n 1 3 @ #m %m 1 0 02056091 -pygoscelis_adeliae n 1 2 @ #m 1 0 02056228 -pyinma n 1 1 @ 1 0 12329744 -pyjama n 2 2 @ ~ 2 0 03877674 03877472 -pyknic_type n 1 1 @ 1 0 04999214 -pyknosis n 1 2 @ + 1 0 14076667 -pyle n 1 1 @ 1 0 11249559 -pylodictus n 1 3 @ #m %m 1 0 02520015 -pylodictus_olivaris n 1 2 @ #m 1 0 02520147 -pylon n 2 1 @ 2 0 04028764 04028581 -pyloric_sphincter n 1 2 @ #p 1 0 05573099 -pyloric_stenosis n 1 1 @ 1 0 14107085 -pyloric_valve n 1 2 @ #p 1 0 05573099 -pyloric_vein n 1 1 @ 1 0 05378850 -pylorus n 1 3 @ %p + 1 0 05535095 -pynchon n 1 1 @ 1 0 11249712 -pyocyanase n 1 1 @ 1 0 04028881 -pyocyanin n 1 1 @ 1 0 04029015 -pyongyang n 1 2 @ #p 1 0 08955397 -pyorrhea n 2 2 @ ~ 2 0 14210888 14080836 -pyorrhea_alveolaris n 1 2 @ ~ 1 0 14080836 -pyorrhoea n 2 2 @ ~ 2 0 14210888 14080836 -pyotr_alexeyevich_kropotkin n 1 1 @ 1 0 11111194 -pyotr_ilych_tchaikovsky n 1 1 @ 1 0 11333762 -pyotr_tchaikovsky n 1 1 @ 1 0 11333762 -pyracanth n 1 2 @ #m 1 0 12651229 -pyracantha n 1 2 @ #m 1 0 12651229 -pyralid n 1 3 @ ~ #m 1 0 02288789 -pyralid_moth n 1 3 @ ~ #m 1 0 02288789 -pyralidae n 1 3 @ #m %m 1 0 02288473 -pyralididae n 1 3 @ #m %m 1 0 02288473 -pyralis n 1 2 @ #m 1 0 02289061 -pyramid n 3 4 @ #m + ; 3 0 13914837 13343284 04029125 -pyramid_bugle n 1 1 @ 1 0 12841354 -pyramid_plant n 1 2 @ #m 1 0 12292877 -pyramid_scheme n 1 1 @ 1 0 05908000 -pyramidal_bone n 1 1 @ 1 0 05272545 -pyramidal_motor_system n 1 3 @ #p %p 1 0 05491612 -pyramidal_tent n 1 1 @ 1 0 04029416 -pyramidal_tract n 1 3 @ #p %p 1 0 05491612 -pyramiding n 1 1 @ 1 0 00779809 -pyramids_of_egypt n 1 2 @ #m 1 0 04029125 -pyrausta n 1 3 @ #m %m 1 0 02289466 -pyrausta_nubilalis n 2 2 @ #m 2 0 02309841 02289610 -pyre n 1 1 @ 1 0 07963494 -pyrectic n 1 2 @ + 1 0 14584502 -pyrene n 2 1 @ 2 0 14958937 13136863 -pyrenees n 1 2 @ #p 1 0 09401474 -pyrenees_daisy n 1 2 @ #m 1 0 11990627 -pyrenomycetes n 1 3 @ #m %m 1 0 13028070 -pyrethrum n 4 2 @ #m 4 0 12022719 12022382 12022054 12005869 -pyrex n 1 2 @ ; 1 1 14999614 -pyrexia n 1 3 @ ~ + 1 0 14365356 -pyridine n 1 2 @ ~ 1 0 14692510 -pyridium n 1 2 @ ; 1 0 03921337 -pyridoxal n 1 1 @ 1 0 15091669 -pyridoxamine n 1 1 @ 1 0 15091669 -pyridoxine n 1 1 @ 1 0 15091669 -pyriform_area n 1 2 @ #p 1 0 05477305 -pyriform_lobe n 1 2 @ #p 1 0 05477305 -pyrilamine n 1 1 @ 1 0 04029541 -pyrimidine n 2 2 @ ~ 2 0 14999913 14999801 -pyrite n 1 2 @ %s 1 0 14692682 -pyrites n 1 1 @ 1 0 14692844 -pyrocellulose n 1 2 @ #s 1 0 14795432 -pyrocephalus n 1 3 @ #m %m 1 0 01550033 -pyrocephalus_rubinus_mexicanus n 1 2 @ #m 1 0 01550172 -pyrochemical_process n 1 1 @ 1 0 13544279 -pyrochemistry n 1 2 @ + 1 0 13544279 -pyroelectricity n 1 2 @ + 1 0 11435661 -pyrogallic_acid n 1 1 @ 1 0 14615400 -pyrogallol n 1 2 @ + 1 0 14615400 -pyrogen n 2 2 @ + 2 0 14584658 14584502 -pyrograph n 1 1 @ 1 0 04029647 -pyrographer n 1 2 @ + 1 0 10496715 -pyrography n 1 2 @ + 1 0 00938240 -pyrola n 1 3 @ ~ #m 1 0 12256112 -pyrola_americana n 1 1 @ 1 0 12256325 -pyrola_elliptica n 1 1 @ 1 0 12256708 -pyrola_minor n 1 1 @ 1 0 12256522 -pyrola_rotundifolia n 1 1 @ 1 0 12256920 -pyrola_rotundifolia_americana n 1 1 @ 1 0 12256325 -pyrola_uniflora n 1 2 @ #m 1 0 12258101 -pyrolaceae n 1 3 @ #m %m 1 0 12255659 -pyrolatry n 1 1 @ 1 0 01046167 -pyroligneous_acid n 1 1 @ 1 0 14863326 -pyrolusite n 1 2 @ %s 1 0 14692973 -pyrolysis n 1 2 @ + 1 0 07360077 -pyromancer n 1 2 @ + 1 0 10496825 -pyromancy n 1 2 @ + 1 0 05778029 -pyromania n 1 1 @ 1 0 09182929 -pyromaniac n 1 1 @ 1 0 10277027 -pyrometer n 1 2 @ ~ 1 1 04029734 -pyrometric_cone n 1 1 @ 1 0 04029913 -pyromorphite n 1 1 @ 1 0 14693124 -pyrope n 1 1 @ 1 0 15000060 -pyrophobia n 1 1 @ 1 0 14384431 -pyrophoric_alloy n 1 2 @ ~ 1 0 15000149 -pyrophorus n 1 3 @ #m %m 1 0 02176611 -pyrophorus_noctiluca n 1 2 @ #m 1 0 02176747 -pyrophosphate n 1 1 @ 1 0 14615724 -pyrophosphoric_acid n 1 1 @ 1 0 14615602 -pyrophyllite n 1 1 @ 1 0 14693275 -pyroscope n 1 1 @ 1 0 03852544 -pyrosis n 1 1 @ 1 0 14335223 -pyrostat n 1 1 @ 1 0 04030054 -pyrotechnic n 1 3 @ ~ ; 1 0 03348454 -pyrotechnics n 2 3 @ + ; 2 0 05620050 00617692 -pyrotechny n 1 2 @ + 1 0 00617692 -pyroxene n 1 2 @ #s 1 0 14693396 -pyroxylin n 1 1 @ 1 0 14795598 -pyroxyline n 1 1 @ 1 0 14795598 -pyrrhic n 2 2 @ + 2 0 07095895 00542584 -pyrrhic_victory n 1 1 @ 1 0 07474533 -pyrrhocoridae n 1 3 @ #m %m 1 0 02244963 -pyrrhotine n 1 1 @ 1 0 14693575 -pyrrhotite n 1 1 @ 1 0 14693575 -pyrrhula n 1 3 @ #m %m 1 0 01534034 -pyrrhula_pyrrhula n 1 2 @ #m 1 0 01534155 -pyrrhuloxia n 1 2 @ #m 1 0 01541760 -pyrrhuloxia_sinuata n 1 2 @ #m 1 0 01541760 -pyrrhus n 1 2 @ + 1 0 11249890 -pyrrophyta n 1 2 @ #m 1 0 01388992 -pyrrosia n 1 3 @ #m %m 1 0 13178107 -pyrrosia_lingua n 1 2 @ #m 1 0 13178284 -pyrularia n 1 3 @ #m %m 1 0 12736840 -pyrularia_pubera n 1 3 @ #m %p 1 0 12736999 -pyrus n 1 3 @ #m %m 1 0 12651465 -pyrus_communis n 1 3 @ #m %p 1 0 12651611 -pyruvic_acid n 1 1 @ 1 0 15000334 -pythagoras n 1 2 @ + 1 0 11250056 -pythia n 1 2 @ ; 1 0 09570630 -pythiaceae n 1 3 @ #m %m 1 0 12982103 -pythian_games n 1 1 @ 1 0 00516900 -pythias n 1 1 @ 1 0 11233595 -pythium n 1 3 @ ~ #m 1 0 12982468 -pythium_debaryanum n 1 1 @ 1 0 12982590 -pythius n 1 1 @ 1 0 09554019 -python n 3 4 @ ~ #m ; 3 1 01743605 10496927 09501198 -python_molurus n 1 2 @ #m 1 0 01744270 -python_reticulatus n 1 2 @ #m 1 0 01744100 -python_sebae n 1 2 @ #m 1 0 01744401 -python_variegatus n 1 1 @ 1 0 01743936 -pythoness n 2 2 @ ; 2 0 10497046 09570630 -pythonidae n 1 1 @ 1 0 01743449 -pythoninae n 1 3 @ #m %m 1 0 01743223 -pyuria n 1 1 @ 1 0 14316583 -pyx n 2 1 @ 2 0 04030274 04030161 -pyx_chest n 1 1 @ 1 0 04030274 -pyxidanthera n 1 3 @ #m %m 1 0 12251577 -pyxidanthera_barbulata n 1 2 @ #m 1 0 12251740 -pyxidium n 1 1 @ 1 0 13139482 -pyxie n 1 2 @ #m 1 0 12251740 -pyxis n 3 2 @ #p 3 0 13139482 09401613 04030414 -q n 1 2 @ #m 1 0 06832896 -q_fever n 1 1 @ 1 1 14141821 -qabala n 1 2 @ + 1 0 06673770 -qabalah n 1 1 @ 1 0 06673770 -qabbala n 1 2 @ ; 1 0 05954100 -qabbalah n 1 2 @ ; 1 0 05954100 -qaddafi n 1 1 @ 1 0 11250287 -qadhafi n 1 1 @ 1 0 11250287 -qadi n 1 1 @ 1 0 10497135 -qaeda n 1 2 @ ; 1 0 08013845 -qandahar n 1 2 @ #p 1 0 08704409 -qara_qum n 1 2 @ #p 1 0 09170475 -qassam_brigades n 1 3 @ #p ; 1 0 08040257 -qat n 1 1 @ 1 0 03608870 -qatar n 2 5 @ #m #p %m %p 2 0 08986905 08986691 -qatar_peninsula n 1 3 @ #p %p 1 0 08986691 -qatari n 1 3 @ #m + 1 0 09728137 -qatari_dirham n 1 2 @ #p 1 0 13698445 -qatari_monetary_unit n 1 2 @ ~ 1 0 13698202 -qatari_riyal n 1 2 @ %p 1 0 13698327 -qcd n 1 1 @ 1 0 06112681 -qed n 1 1 @ 1 0 06112505 -qepiq n 1 1 @ 1 0 13699836 -qi n 1 2 @ ; 1 0 14050559 -qiang n 1 1 @ 1 0 06931499 -qiangic n 1 1 @ 1 0 06931499 -qibla n 2 2 @ ; 2 0 08681649 08040522 -qin n 1 1 @ 1 0 08157182 -qin_dynasty n 1 1 @ 1 0 08157182 -qin_shi_huang_ti n 1 1 @ 1 0 11250581 -qindarka n 1 2 @ #p 1 0 13684735 -qing n 1 1 @ 1 0 08157405 -qing_dynasty n 1 1 @ 1 0 08157405 -qintar n 1 2 @ #p 1 0 13684735 -qizil_qum n 1 2 @ #p 1 0 09170633 -qoph n 1 2 @ #p 1 0 06838652 -quaalude n 1 2 @ ; 1 0 03754822 -quack n 2 2 @ + 2 1 10497202 07390762 -quack-quack n 1 1 @ 1 0 01847089 -quack_grass n 1 1 @ 1 0 12105578 -quackery n 2 2 @ + 2 1 00633108 00750306 -quackgrass n 1 1 @ 1 0 12105578 -quad n 4 4 @ ~ #p ; 4 0 10497645 05294819 04030655 04030518 -quadragesima n 1 1 @ 1 0 15192544 -quadrangle n 2 3 @ ~ + 2 0 13879126 04030518 -quadrangular_prism n 1 1 @ 1 0 13885011 -quadrant n 4 1 @ 4 0 08627805 08627665 08627554 04030846 -quadrantanopia n 1 1 @ 1 0 14554591 -quadraphonic_system n 1 1 @ 1 0 04030965 -quadraphony n 1 2 @ + 1 0 04030965 -quadrate n 2 1 @ 2 0 13917022 13879049 -quadratic n 2 1 @ 2 0 06670240 05862501 -quadratic_equation n 1 1 @ 1 0 06670240 -quadratic_polynomial n 1 1 @ 1 0 05862501 -quadratics n 1 2 @ ; 1 0 06012998 -quadrature n 1 1 @ 1 0 00873671 -quadrennium n 1 1 @ 1 0 15205719 -quadric n 1 2 @ ~ 1 0 13902905 -quadric_surface n 1 2 @ ~ 1 0 13902905 -quadriceps n 1 2 @ #p 1 1 05294819 -quadriceps_femoris n 1 2 @ #p 1 0 05294819 -quadrigesima_sunday n 1 1 @ 1 0 15192544 -quadrilateral n 1 2 @ ~ 1 0 13879126 -quadrille n 2 2 @ ~ 2 0 07056593 00540485 -quadrillion n 2 2 @ ; 2 0 13753067 13752911 -quadrillionth n 1 1 @ 1 0 13739934 -quadripara n 1 2 @ ; 1 0 10497373 -quadriphonic_system n 1 1 @ 1 0 04030965 -quadriplegia n 1 1 @ 1 0 14559757 -quadriplegic n 1 1 @ 1 0 10497534 -quadrivium n 1 2 @ ; 1 0 06172294 -quadroon n 1 2 @ ; 1 0 09638569 -quadrumvirate n 1 1 @ 1 0 07988010 -quadruped n 1 4 @ %p + - 1 0 02156871 -quadruple n 2 2 @ + 2 0 07988089 05860498 -quadruple_time n 1 1 @ 1 0 15264010 -quadruplet n 3 1 @ 3 0 13744304 10497645 07988089 -quadruplicate n 1 2 @ + 1 0 04031166 -quadrupling n 1 2 @ + 1 1 13544433 -quaestor n 1 2 @ ; 1 0 10497775 -quaff n 1 2 @ + 1 0 07884182 -quaffer n 1 2 @ + 1 0 10497946 -quag n 1 2 @ + 1 0 09355850 -quagga n 1 2 @ #m 1 0 02391617 -quagmire n 1 1 @ 1 0 09355850 -quahaug n 2 5 @ ~ #m #p %p 2 0 07786856 01958038 -quahog n 2 5 @ ~ #m #p %p 2 0 07786856 01958038 -quai_d'orsay n 2 2 @ #p 2 0 08933770 08114400 -quail n 2 6 @ ~ #m #p %p ; 2 0 07647321 01806567 -quail_brush n 1 1 @ 1 0 11831521 -quail_bush n 1 1 @ 1 0 11831521 -quaintness n 2 2 @ + 2 0 04926038 04798700 -quake n 1 3 @ ~ + 1 1 07428954 -quaker n 2 4 @ ~ #m + 2 1 09679708 10498046 -quaker_gun n 1 1 @ 1 0 04031370 -quakerism n 1 1 @ 1 0 06190809 -quakers n 1 2 @ %m 1 0 08150377 -quaking_aspen n 1 1 @ 1 0 12733870 -qualification n 3 3 @ ~ + 3 2 04717139 00200563 06762380 -qualifier n 2 4 @ ~ #p + 2 0 10498196 06320801 -qualifying n 2 3 @ ~ + 2 0 13800801 00065575 -qualifying_adjective n 1 1 @ 1 0 06321932 -qualitative_analysis n 1 3 @ ~ - 1 0 00646833 -quality n 5 5 @ ~ = + ; 5 4 04723816 04728068 05849284 04987620 13948026 -quality_control n 1 2 @ ~ 1 0 00806484 -quality_of_life n 1 1 @ 1 1 13986943 -qualm n 2 1 @ 2 1 07525555 14360320 -quamash n 1 3 @ ~ #m 1 0 12449296 -quamassia n 1 3 @ #m %m 1 0 12449024 -quamoclit_pennata n 1 1 @ 1 0 12827270 -quandang n 2 4 @ #m #p %p 2 0 12736603 07769306 -quandary n 2 2 @ ~ 2 0 14408646 05686086 -quandong n 4 4 @ #m #p %p 4 0 12736603 12193334 12192877 07769306 -quandong_nut n 1 2 @ #p 1 0 07769465 -quandong_tree n 2 3 @ #m %p 2 0 12736603 12192877 -quango n 1 1 @ 1 0 08050484 -quantic n 1 1 @ 1 0 05862613 -quantifiability n 1 3 @ ~ + 1 0 05209822 -quantification n 2 4 @ ~ #p + 2 0 06165623 01003570 -quantifier n 2 3 @ ~ ; 2 0 06302542 06302381 -quantisation n 1 2 @ + 1 0 00389308 -quantitative_analysis n 1 2 @ ~ 1 0 00647270 -quantitative_chemical_analysis n 1 2 @ ~ 1 0 00647270 -quantitative_relation n 1 2 @ ~ 1 0 13815152 -quantity n 3 4 @ ~ = + 3 2 00033615 05108740 05855125 -quantity_unit n 1 2 @ ~ 1 0 13632961 -quantization n 1 2 @ + 1 0 00389308 -quantong n 1 2 @ #p 1 0 07769306 -quantum n 2 4 @ ~ + ; 2 0 05855748 05855517 -quantum_chromodynamics n 1 1 @ 1 0 06112681 -quantum_electrodynamics n 1 1 @ 1 0 06112505 -quantum_field_theory n 1 2 @ ~ 1 0 06112223 -quantum_jump n 2 2 @ ; 2 0 07359377 07359184 -quantum_leap n 1 1 @ 1 0 07359184 -quantum_mechanics n 1 2 @ ~ 1 0 06111961 -quantum_physics n 1 2 @ ~ 1 0 06101973 -quantum_theory n 1 3 @ ; - 1 0 06107660 -quaoar n 1 1 @ 1 0 09401750 -quapaw n 2 1 @ 2 0 09666974 06912056 -quarantine n 2 2 @ + 2 0 14415335 01201645 -quark n 2 4 @ ~ #p ; 2 0 09401834 07854455 -quark_cheese n 1 1 @ 1 0 07854455 -quarrel n 2 3 @ ~ + 2 1 07184149 04031481 -quarreler n 1 2 @ + 1 0 10498422 -quarreller n 1 2 @ + 1 0 10498422 -quarrelsomeness n 1 3 @ ~ + 1 0 04643979 -quarrier n 1 3 @ ~ + 1 0 10498551 -quarry n 3 3 @ ~ + 3 0 10470460 03949442 02152881 -quarrying n 1 3 @ + - 1 0 00922968 -quarryman n 1 2 @ ~ 1 0 10498551 -quart n 3 3 @ #p %p 3 1 13619592 13622035 13620549 -quartan n 1 1 @ 1 0 14340635 -quarter n 14 6 @ ~ #p %p + ; 14 2 13737480 08627919 15258450 15234942 15226046 15206590 13830166 13720852 13623054 13390244 10498699 04316646 04031600 01258579 -quarter-century n 1 2 @ #p 1 1 15206195 -quarter-circle n 1 1 @ 1 0 08627805 -quarter-hour n 1 2 @ #p 1 0 15228267 -quarter-tone n 1 1 @ 1 0 06859309 -quarter-vine n 1 2 @ #m 1 0 12814003 -quarter_crack n 1 1 @ 1 0 14275661 -quarter_day n 1 3 @ ~ ; 1 0 15160866 -quarter_horse n 1 1 @ 1 0 02379183 -quarter_mile n 1 2 @ #p 1 1 13651931 -quarter_note n 1 1 @ 1 0 06871127 -quarter_plate n 1 1 @ 1 0 04032392 -quarter_pound n 1 2 @ #p 1 0 13720501 -quarter_rest n 1 1 @ 1 0 06871262 -quarter_round n 1 2 @ ~ 1 0 03866721 -quarter_section n 1 1 @ 1 0 13613592 -quarter_sessions n 1 2 @ ; 1 0 08335253 -quarter_stock n 1 1 @ 1 0 13342597 -quarter_tone n 1 1 @ 1 0 06859309 -quarterback n 2 4 @ #m + ; 2 1 10498816 00726567 -quarterdeck n 1 2 @ #p 1 0 04031770 -quarterfinal n 1 2 @ #p 1 0 07467212 -quartering n 3 3 @ + ; 3 0 04032049 04031884 00386553 -quarterlight n 1 2 @ ; 1 0 04032242 -quarterly n 1 1 @ 1 0 06594625 -quartermaster n 1 1 @ 1 0 10498986 -quartermaster_general n 1 1 @ 1 0 10499110 -quartern n 1 1 @ 1 0 13737480 -quarters n 1 4 @ ~ + ; 1 1 03679384 -quarterstaff n 1 1 @ 1 0 04032509 -quartervine n 1 2 @ #m 1 0 12814003 -quartet n 5 2 @ ~ 5 0 13744304 08247251 07988089 07987380 07041688 -quartette n 4 2 @ ~ 4 0 08247251 07988089 07987380 07041688 -quartic n 1 1 @ 1 0 13731356 -quartic_polynomial n 1 1 @ 1 0 05862113 -quartile n 1 2 @ ; 1 0 05738204 -quarto n 1 1 @ 1 0 05096820 -quartz n 2 3 @ ~ %s 2 1 14879750 14693733 -quartz_battery n 1 1 @ 1 0 04032603 -quartz_crystal n 1 1 @ 1 0 04032710 -quartz_glass n 1 2 @ %s 1 0 14879750 -quartz_lamp n 1 1 @ 1 0 04032936 -quartz_mill n 1 1 @ 1 0 04032603 -quartz_oscillator n 1 1 @ 1 0 03143754 -quartzite n 1 1 @ 1 0 14694161 -quasar n 1 1 @ 1 0 09402370 -quasi-ngo n 1 1 @ 1 0 08050484 -quasi-stellar_radio_source n 1 1 @ 1 0 09402370 -quasi_contract n 1 1 @ 1 0 06523969 -quasiparticle n 1 1 @ 1 0 06102116 -quassia n 2 3 @ ~ #m 2 0 15000475 12718995 -quassia_amara n 1 2 @ #m 1 0 12718995 -quassia_family n 1 3 @ #m %m 1 0 12715569 -quat n 1 1 @ 1 0 03608870 -quatercentenary n 1 1 @ 1 0 15251892 -quatercentennial n 1 1 @ 1 0 15251892 -quatern n 1 1 @ 1 0 13744304 -quaternary n 2 3 @ #p %p 2 0 15124545 13744304 -quaternary_ammonium_compound n 1 1 @ 1 0 14691231 -quaternary_period n 1 3 @ #p %p 1 0 15124545 -quaternion n 1 1 @ 1 0 13744304 -quaternity n 1 1 @ 1 0 13744304 -quatrain n 1 2 @ ~ 1 1 06384480 -quattrocento n 1 2 @ #p 1 0 15205880 -quaver n 2 2 @ + 2 1 07390857 06871384 -quay n 1 1 @ 1 0 04033082 -quayage n 1 1 @ 1 0 13324188 -queasiness n 2 3 @ ~ + 2 0 14360320 04625284 -quebec n 2 3 @ #p %p 2 0 08829317 08829071 -quebec_bridge n 1 2 @ #p 1 0 04033178 -quebec_city n 1 3 @ #p %p 1 0 08829317 -quebecois n 1 1 @ 1 0 10499232 -quechua n 3 3 @ ~ + 3 0 09726970 08489121 06917083 -quechuan n 1 1 @ 1 0 06917083 -quechuan_language n 1 1 @ 1 0 06917083 -queckenstedt's_test n 1 1 @ 1 0 05744288 -queen n 10 6 ! @ ~ #m + ; 10 3 02313008 10499355 10499857 10500217 10235024 10076033 04033425 04033287 02369935 02122878 -queen's_counsel n 1 1 @ 1 0 10500824 -queen's_crape_myrtle n 1 2 @ #m 1 0 12329473 -queen's_cup n 1 2 @ #m 1 0 12472778 -queen's_english n 1 1 @ 1 0 06948260 -queen_anne's_lace n 1 2 @ #m 1 0 12937130 -queen_bee n 1 2 @ #m 1 0 02207345 -queen_charlotte_sound n 1 2 @ #p 1 0 09402553 -queen_city n 1 2 @ #p 1 0 09128372 -queen_consort n 1 1 @ 1 0 10500419 -queen_dowager n 1 2 @ ~ 1 0 10500506 -queen_isabella n 1 1 @ 1 0 11073795 -queen_maud_land n 1 2 @ #p 1 0 08628414 -queen_mole_rat n 1 1 @ 1 0 02369935 -queen_mother n 1 1 @ 1 0 10500603 -queen_of_england n 1 2 @ ~ 1 0 10499631 -queen_of_the_may n 1 1 @ 1 0 10304160 -queen_of_the_night n 1 1 @ 1 0 11853979 -queen_post n 1 1 @ 1 0 04033557 -queen_regent n 1 1 @ 1 0 10500717 -queen_regnant n 1 3 @ ~ #m 1 0 10499355 -queen_triggerfish n 1 2 @ #m 1 0 02653497 -queen_victoria n 1 2 @ #m 1 0 11365857 -queenfish n 1 2 @ #m 1 0 02598878 -queens n 1 2 @ #p 1 0 09123182 -queensboro_bridge n 1 2 @ #p 1 0 04033647 -queensland n 1 3 @ #p %p 1 0 08832691 -queensland_bottletree n 1 1 @ 1 0 12196954 -queensland_grass-cloth_plant n 1 2 @ #m 1 0 12395906 -queensland_hemp n 1 2 @ #m 1 0 12186554 -queensland_kauri n 1 2 @ #m 1 0 11648039 -queensland_lungfish n 1 1 @ 1 0 02516994 -queensland_nut n 1 2 @ #m 1 0 12221801 -queer n 1 2 @ ; 1 0 10076033 -queer_bird n 1 1 @ 1 0 10240514 -queer_duck n 1 1 @ 1 0 10240514 -queerness n 2 3 @ ~ + 2 0 04797824 00856847 -quelling n 1 3 @ ~ + 1 0 01079604 -quellung n 1 1 @ 1 0 13544537 -quellung_reaction n 1 1 @ 1 0 13544537 -quenched_steel n 1 3 @ ~ %s 1 0 15000689 -quenching n 1 2 @ + 1 0 00229934 -quentin_jerome_tarantino n 1 1 @ 1 0 11331300 -quentin_tarantino n 1 1 @ 1 0 11331300 -quercitron n 2 1 @ 2 0 15000858 12279458 -quercitron_oak n 1 1 @ 1 0 12279458 -quercus n 1 3 @ #m %m 1 0 12268096 -quercus_agrifolia n 1 1 @ 1 0 12269406 -quercus_alba n 1 1 @ 1 0 12270027 -quercus_arizonica n 1 1 @ 1 0 12270278 -quercus_bicolor n 1 1 @ 1 0 12270460 -quercus_borealis n 1 1 @ 1 0 12277800 -quercus_cerris n 1 1 @ 1 0 12270741 -quercus_chrysolepis n 1 1 @ 1 0 12270946 -quercus_coccinea n 1 1 @ 1 0 12271187 -quercus_ellipsoidalis n 1 1 @ 1 0 12271451 -quercus_falcata n 1 1 @ 1 0 12271933 -quercus_garryana n 1 1 @ 1 0 12272239 -quercus_grosseserrata n 1 2 @ #m 1 0 12275317 -quercus_ilex n 1 1 @ 1 0 12272432 -quercus_ilicifolia n 1 1 @ 1 0 12272735 -quercus_imbricaria n 1 1 @ 1 0 12272883 -quercus_incana n 1 1 @ 1 0 12273114 -quercus_kelloggii n 1 1 @ 1 0 12273344 -quercus_laevis n 1 1 @ 1 0 12273515 -quercus_laurifolia n 1 1 @ 1 0 12273768 -quercus_lobata n 1 1 @ 1 0 12273939 -quercus_lyrata n 1 1 @ 1 0 12274151 -quercus_macrocarpa n 1 1 @ 1 0 12274358 -quercus_marilandica n 1 1 @ 1 0 12274863 -quercus_michauxii n 1 1 @ 1 0 12275131 -quercus_mongolica n 1 2 @ #m 1 0 12275317 -quercus_montana n 1 1 @ 1 0 12276628 -quercus_muehlenbergii n 1 1 @ 1 0 12275675 -quercus_myrtifolia n 1 1 @ 1 0 12275888 -quercus_nigra n 1 1 @ 1 0 12276110 -quercus_nuttalli n 1 1 @ 1 0 12276314 -quercus_palustris n 1 1 @ 1 0 12276872 -quercus_petraea n 1 1 @ 1 0 12276477 -quercus_phellos n 1 1 @ 1 0 12277150 -quercus_prinoides n 1 1 @ 1 0 12277334 -quercus_prinus n 1 1 @ 1 0 12276628 -quercus_robur n 1 1 @ 1 0 12277578 -quercus_rubra n 1 1 @ 1 0 12277800 -quercus_sessiliflora n 1 1 @ 1 0 12276477 -quercus_shumardii n 1 1 @ 1 0 12278107 -quercus_stellata n 1 1 @ 1 0 12278371 -quercus_suber n 1 1 @ 1 0 12278650 -quercus_texana n 1 1 @ 1 0 12278865 -quercus_vaccinifolia n 1 2 @ #m 1 0 12279060 -quercus_variabilis n 1 1 @ 1 0 12279293 -quercus_velutina n 1 1 @ 1 0 12279458 -quercus_virginiana n 1 1 @ 1 0 12279772 -quercus_wislizenii n 1 1 @ 1 0 12280060 -quercus_wizlizenii n 1 1 @ 1 0 12280060 -querier n 1 3 @ ~ + 1 0 10207831 -quern n 1 1 @ 1 0 04033801 -querulousness n 1 2 @ + 1 0 04642980 -query n 1 2 @ + 1 1 07193596 -query_language n 1 1 @ 1 0 06899446 -quesadilla n 1 1 @ 1 0 07881205 -quest n 2 3 @ ~ + 2 1 05770391 00946650 -quester n 1 3 @ ~ + 1 0 10575787 -question n 6 4 ! @ ~ + 6 4 07193596 06783768 07196682 04757522 07163593 07162059 -question_mark n 1 1 @ 1 0 06844040 -question_master n 1 2 @ ; 1 0 10500942 -question_of_fact n 1 1 @ 1 0 06784317 -question_of_law n 1 2 @ ; 1 0 06784470 -question_sheet n 1 1 @ 1 0 07199328 -question_time n 1 2 @ ; 1 0 15298507 -questioner n 1 3 @ ~ + 1 1 10207831 -questioning n 1 3 @ ~ + 1 1 07193184 -questionnaire n 1 2 @ ~ 1 1 06474122 -quetzal n 2 4 @ ~ #m %p 2 0 13696270 01844551 -quetzal_bird n 1 3 @ ~ #m 1 0 01844551 -quetzalcoatl n 1 1 @ 1 0 10501097 -queue n 3 4 @ ~ + ; 3 0 08432345 06494816 05259823 -quezon_city n 1 2 @ #p 1 0 08982181 -qui_vive n 1 2 @ ~ 1 0 14031660 -quiaquia n 1 2 @ #m 1 0 02581642 -quibble n 1 2 @ + 1 0 06761798 -quibbler n 1 2 @ + 1 0 10501203 -quiche n 3 2 @ ~ 3 0 09667097 07619594 06926020 -quiche_lorraine n 1 1 @ 1 0 07619786 -quick n 1 1 @ 1 0 05597980 -quick-wittedness n 1 2 @ + 1 0 05619345 -quick_assets n 1 3 @ #m ; 1 0 13333047 -quick_bread n 1 2 @ ~ 1 0 07684600 -quick_buck n 1 1 @ 1 0 13260510 -quick_fix n 1 1 @ 1 0 00268457 -quick_grass n 1 1 @ 1 0 12105578 -quick_march n 1 1 @ 1 1 00291796 -quick_study n 1 1 @ 1 0 10501453 -quick_temper n 1 1 @ 1 0 07552549 -quick_time n 1 1 @ 1 0 15283224 -quickener n 1 2 @ + 1 0 09402704 -quickening n 3 3 @ #p + 3 1 13544783 14048134 00330457 -quickie n 1 1 @ 1 1 00268457 -quicklime n 1 2 @ %s 1 0 14789885 -quickness n 3 3 @ ~ + 3 1 05642175 05619345 05059132 -quicksand n 2 2 @ %s 2 0 14411772 09402944 -quickset n 1 1 @ 1 0 13127666 -quicksilver n 1 2 @ #s 1 0 14645346 -quickstep n 2 2 @ + 2 0 07058668 00536964 -quicky n 1 1 @ 1 0 00268457 -quid n 3 2 @ %p 3 0 13686660 13323460 07579399 -quid_pro_quo n 1 1 @ 1 0 13323460 -quiddity n 2 1 @ 2 0 06761798 05922014 -quidnunc n 1 1 @ 1 0 09883807 -quiescence n 2 4 @ ~ = + 2 0 14011811 01064863 -quiescency n 2 4 @ ~ = + 2 0 14011811 01064863 -quiet n 4 3 @ ~ + 4 3 14522956 13969101 04982207 04904352 -quietism n 1 2 @ + 1 0 05949088 -quietist n 1 2 @ + 1 0 10501635 -quietness n 2 3 @ ~ + 2 2 04982856 07515560 -quietude n 1 2 @ ~ 1 0 07515560 -quietus n 1 1 @ 1 0 13962765 -quiff n 1 1 @ 1 0 05258177 -quill n 4 3 @ ~ #p 4 2 04033901 01900837 02468864 02468617 -quill_feather n 1 3 @ ~ #p 1 0 02468864 -quill_pen n 1 1 @ 1 0 04033901 -quillwort n 1 2 @ #m 1 0 13226320 -quillwort_family n 1 3 @ #m %m 1 0 13225955 -quilt n 1 3 @ ~ + 1 1 04033995 -quilted_bedspread n 1 1 @ 1 0 04034262 -quilting n 2 2 @ + 2 0 04034477 04034367 -quilting_bee n 1 1 @ 1 0 07976851 -quin n 1 1 @ 1 0 10501908 -quinacrine n 1 1 @ 1 0 04034641 -quinacrine_hydrochloride n 1 1 @ 1 0 04034641 -quince n 2 4 @ #m #p %p 2 0 12628986 07769584 -quince_bush n 1 3 @ #m %p 1 0 12628986 -quincentenary n 1 1 @ 1 0 15252021 -quincentennial n 1 1 @ 1 0 15252021 -quincke's_edema n 1 1 @ 1 0 14120310 -quincy n 1 1 @ 1 0 11250833 -quine n 1 1 @ 1 0 11250991 -quinidex n 1 2 @ ; 1 0 04034884 -quinidine n 1 1 @ 1 0 04034884 -quinine n 1 2 @ #s 1 0 04035086 -quinine_water n 1 3 @ #s %s 1 0 07929172 -quinnat_salmon n 1 3 @ #m %p 1 0 02536456 -quinone n 1 2 @ ~ 1 0 15000973 -quinora n 1 2 @ ; 1 0 04034884 -quinquagesima n 1 1 @ 1 0 15192406 -quinquagesima_sunday n 1 1 @ 1 0 15192406 -quinquefoliate_leaf n 1 1 @ 1 0 13156884 -quinquennium n 1 1 @ 1 0 15205799 -quinsy n 1 1 @ 1 0 14173823 -quint n 2 1 @ 2 0 13744521 10501908 -quintal n 2 3 @ #p %p 2 0 13725457 13721177 -quintana_roo n 1 3 @ #p %p 1 0 08745249 -quintessence n 3 3 @ + ; 3 0 14847103 05922175 05821646 -quintet n 5 1 @ 5 1 07041795 13744521 08247703 07988229 07987580 -quintette n 4 1 @ 4 0 08247703 07988229 07987580 07041795 -quintillion n 1 2 @ ; 1 0 13753274 -quintillionth n 1 1 @ 1 0 13740051 -quintipara n 1 2 @ ; 1 0 10501747 -quintuple n 1 1 @ 1 0 07988229 -quintuplet n 3 1 @ 3 0 13744521 10501908 07988229 -quintupling n 1 2 @ + 1 0 13544930 -quintus_septimius_florens_tertullianus n 1 1 @ 1 0 11336668 -quip n 2 2 @ + 2 0 07153727 06767777 -quipu n 1 1 @ 1 0 04035231 -quira n 2 5 @ ~ #m #s %s 2 0 12563281 12562577 -quire n 1 2 @ #p 1 0 13583030 -quirk n 2 2 @ + 2 1 04797824 04035397 -quirk_bead n 1 1 @ 1 0 04035481 -quirk_molding n 1 1 @ 1 0 04035634 -quirk_moulding n 1 1 @ 1 0 04035634 -quirkiness n 1 2 @ + 1 0 04797824 -quirt n 1 1 @ 1 1 04035748 -quiscalus n 1 3 @ #m %m 1 0 01574270 -quiscalus_quiscula n 1 1 @ 1 0 01574560 -quisling n 1 1 @ 1 0 09935793 -quislingism n 1 1 @ 1 0 01205341 -quitclaim n 2 2 @ ; 2 0 06546783 01108641 -quitclaim_deed n 1 2 @ ; 1 0 06546783 -quite_a_little n 1 2 @ ~ 1 0 13774404 -quito n 1 2 @ #p 1 0 08777233 -quittance n 2 2 @ ~ 2 0 13403520 13299651 -quitter n 1 3 @ ~ + 1 0 10502046 -quiver n 4 3 @ ~ + 4 1 07520112 14004572 04035836 00345926 -quivering n 2 3 @ ~ + 2 0 14004572 00345926 -quixotism n 1 1 @ 1 0 05153037 -quiz n 1 3 @ ~ + 1 1 07199191 -quiz_program n 1 1 @ 1 0 06621215 -quizmaster n 1 2 @ ; 1 0 10500942 -quizzer n 1 2 @ + 1 0 10068234 -qum n 1 2 @ #p 1 0 08912703 -quo_warranto n 1 2 @ ; 1 0 01200857 -quodlibet n 1 1 @ 1 0 05815412 -quoin n 3 3 @ #p ; 3 0 04036004 04035912 03109693 -quoit n 1 1 @ 1 0 04036155 -quoits n 1 2 @ - 1 0 00467320 -quonset_hut n 1 1 @ 1 0 03826186 -quoratean n 1 2 @ ~ 1 0 06921392 -quorum n 1 3 @ ~ #m 1 0 08357992 -quota n 3 1 @ 3 1 13599348 13289744 06660396 -quotability n 1 2 @ + 1 0 04807489 -quotation n 4 3 @ ~ + 4 2 06763681 06613056 06756267 01030642 -quotation_mark n 1 2 @ ~ 1 0 06844199 -quote n 2 3 @ ~ + 2 0 06844199 06613056 -quoter n 1 2 @ + 1 0 10502204 -quotient n 2 2 @ ~ 2 0 13824815 13733316 -quotient_verdict n 1 2 @ ; 1 0 01193535 -quran n 1 2 @ %p 1 0 06461609 -qurush n 1 2 @ #p 1 0 13698838 -qwerty_keyboard n 1 1 @ 1 0 04036303 -r n 4 5 @ ~ #m #p ; 4 0 13646031 13590079 06833004 05102101 -r-2 n 1 1 @ 1 0 04036494 -r._b._cattell n 1 1 @ 1 0 10891569 -r._buckminster_fuller n 1 1 @ 1 0 10985440 -r._j._mitchell n 1 1 @ 1 0 11182825 -r.v. n 1 2 @ ~ 1 0 04065272 -r_and_b n 1 1 @ 1 0 07064315 -ra n 3 3 @ #s ; 3 0 14651921 09513216 08633191 -rabat n 1 2 @ #p 1 1 08970445 -rabato n 1 1 @ 1 0 04036648 -rabbet n 1 2 @ + 1 0 04036776 -rabbet_joint n 1 1 @ 1 0 04036963 -rabbet_plane n 1 2 @ ~ 1 0 03849275 -rabbi n 2 5 @ ~ #m + ; 2 1 10502329 06341609 -rabbi_moses_ben_maimon n 1 1 @ 1 0 11149995 -rabbinate n 2 2 @ %m 2 0 08113910 00598678 -rabbit n 3 6 @ ~ #m #p %p + 3 1 02324045 14765324 07666521 -rabbit's-foot_fern n 1 2 @ #m 1 0 13177048 -rabbit-eared_bandicoot n 1 2 @ #m 1 0 01876667 -rabbit-eye_blueberry n 1 1 @ 1 0 12247202 -rabbit-weed n 1 2 @ #m 1 0 11974557 -rabbit_bandicoot n 1 2 @ #m 1 0 01876667 -rabbit_brush n 1 2 @ #m 1 0 11952541 -rabbit_burrow n 1 1 @ 1 0 09403086 -rabbit_bush n 1 2 @ #m 1 0 11952541 -rabbit_ears n 2 2 @ ; 2 0 04037076 02324431 -rabbit_fever n 1 2 @ %p 1 1 14276360 -rabbit_food n 1 2 @ #s 1 0 07708398 -rabbit_hole n 1 1 @ 1 0 09403086 -rabbit_hutch n 1 1 @ 1 0 04037220 -rabbit_punch n 1 1 @ 1 1 00136048 -rabbit_test n 1 1 @ 1 0 05744010 -rabbit_warren n 2 1 @ 2 1 08678515 09474765 -rabbiteye n 1 1 @ 1 0 12247202 -rabbiteye_blueberry n 1 1 @ 1 0 12247202 -rabbitfish n 1 1 @ 1 0 01481498 -rabbitweed n 1 2 @ #m 1 0 11974557 -rabbitwood n 1 3 @ #m %p 1 0 12736999 -rabble n 2 2 @ ~ 2 1 08184600 08401819 -rabble-rouser n 1 1 @ 1 0 10001481 -rabelais n 1 2 @ + 1 0 11251225 -rabi_i n 1 2 @ #p 1 0 15217563 -rabi_ii n 1 2 @ #p 1 0 15217674 -rabidity n 1 2 @ + 1 0 04885784 -rabidness n 1 2 @ + 1 0 04885784 -rabies n 1 1 @ 1 0 14271667 -rabindranath_tagore n 1 1 @ 1 0 11329030 -raccoon n 2 3 @ ~ #m 2 0 14765856 02508021 -raccoon_dog n 1 2 @ #m 1 0 02116450 -raccoon_fox n 1 2 @ #m 1 0 02508742 -race n 6 4 @ ~ + ; 6 4 07472657 07458453 07967982 08110648 11423197 04037873 -race_car n 1 3 @ ~ %p 1 0 04037443 -race_driver n 1 2 @ ~ 1 0 10502576 -race_horse n 1 2 @ ~ 1 0 02382948 -race_meeting n 1 2 @ ; 1 0 07468244 -race_murder n 1 2 @ ~ 1 0 01245159 -race_problem n 1 1 @ 1 1 14410918 -race_riot n 1 1 @ 1 0 01170666 -race_runner n 1 1 @ 1 0 01686044 -raceabout n 1 1 @ 1 0 04037298 -racecard n 1 1 @ 1 0 06748841 -racecourse n 1 3 @ ~ %p 1 0 04037625 -racehorse n 1 2 @ ~ 1 0 02382948 -raceme n 1 2 @ ~ 1 0 13132486 -racemic_acid n 1 1 @ 1 0 15067739 -racer n 4 5 @ ~ #m %p + 4 0 10502576 04037443 02384858 01730812 -racerunner n 1 1 @ 1 0 01686044 -racetrack n 1 3 @ ~ %p 1 0 04037625 -racetrack_tout n 1 1 @ 1 0 10502762 -raceway n 2 3 @ ~ %p 2 0 04037873 04037625 -rachel n 1 2 @ ; 1 0 11251384 -rachel_carson n 1 1 @ 1 0 10884597 -rachel_louise_carson n 1 1 @ 1 0 10884597 -rachet n 1 3 @ #p %p 1 0 04055180 -rachis n 2 4 @ ~ #p %p 2 0 13128976 05588174 -rachischisis n 1 1 @ 1 0 14471224 -rachitis n 2 2 @ + 2 0 14354642 14201311 -rachmaninoff n 1 1 @ 1 0 11251531 -rachmaninov n 1 1 @ 1 0 11251531 -rachycentridae n 1 3 @ #m %m 1 0 02573918 -rachycentron n 1 3 @ #m %m 1 0 02574093 -rachycentron_canadum n 1 2 @ #m 1 0 02574271 -racial_discrimination n 1 2 @ ~ 1 0 01155044 -racial_extermination n 1 2 @ ~ 1 0 01245159 -racial_immunity n 1 1 @ 1 0 14528752 -racial_profiling n 1 1 @ 1 0 01155253 -racial_segregation n 1 2 @ ~ 1 0 08379353 -racialism n 1 3 @ ~ + 1 0 01155044 -racialist n 1 2 @ + 1 0 10502950 -racine n 2 2 @ #p 2 1 11251788 09158501 -raciness n 2 2 @ + 2 0 04992834 04902283 -racing n 1 4 @ ~ + - 1 1 00449295 -racing_boat n 1 2 @ ~ 1 0 04037964 -racing_car n 1 3 @ ~ %p 1 0 04037443 -racing_circuit n 1 2 @ ; 1 0 04038109 -racing_gig n 1 1 @ 1 0 04038231 -racing_shell n 1 3 @ ~ %p 1 0 04190997 -racing_skate n 1 1 @ 1 0 04273972 -racing_skiff n 1 1 @ 1 0 04038338 -racing_start n 1 2 @ ~ 1 0 07329737 -racing_yacht n 1 1 @ 1 0 04610013 -racism n 2 3 @ ~ + 2 0 06203758 01155044 -racist n 1 2 @ + 1 1 10502950 -rack n 7 4 @ ~ %p + 7 1 04038727 07668073 07335581 04039041 04038440 00423916 00287276 -rack_and_pinion n 1 1 @ 1 0 04039209 -rack_of_lamb n 1 1 @ 1 0 07668356 -rack_railway n 1 1 @ 1 0 03065063 -rack_rent n 1 1 @ 1 0 13296194 -racker n 1 1 @ 1 0 10503138 -racket n 4 4 @ ~ %p + 4 2 07390945 00775943 05720248 04039381 -racket_club n 1 2 @ ~ 1 0 08230110 -racketeer n 1 4 @ ~ #m + 1 1 10503247 -racketeer_influenced_and_corrupt_organizations_act n 1 2 @ ; 1 0 06533039 -racketeering n 1 2 @ + 1 0 00776165 -racketiness n 1 3 @ ~ + 1 0 04981474 -racon n 1 1 @ 1 0 07263897 -raconteur n 1 2 @ ~ 1 0 09793352 -racoon n 1 3 @ ~ #m 1 0 02508021 -racquet n 1 3 @ ~ %p 1 0 04039381 -racquetball n 2 1 @ 2 0 04039742 00479616 -rad n 2 2 @ %p 2 0 13646557 13612042 -radar n 1 3 @ ~ %p 1 1 04039848 -radar_beacon n 1 1 @ 1 0 07263897 -radar_dome n 1 2 @ #p 1 0 04045255 -radar_echo n 1 2 @ ~ 1 0 07263503 -radar_fire n 1 1 @ 1 0 00992221 -radar_target n 1 1 @ 1 0 07263358 -radclyffe_hall n 1 1 @ 1 0 11025125 -raddle n 1 1 @ 1 0 15008287 -radhakrishnan n 1 1 @ 1 0 11251995 -radial n 1 1 @ 1 0 04040247 -radial-ply_tire n 1 1 @ 1 0 04040247 -radial_artery n 1 1 @ 1 0 05338847 -radial_asymmetry n 1 3 ! @ ~ 1 0 05066490 -radial_engine n 1 1 @ 1 0 04040373 -radial_keratotomy n 1 1 @ 1 0 00680018 -radial_nerve n 1 1 @ 1 0 05504807 -radial_pulse n 1 1 @ 1 0 15281071 -radial_symmetry n 1 2 ! @ 1 0 05065555 -radial_tire n 1 1 @ 1 0 04040247 -radial_vein n 1 2 @ #p 1 0 05379039 -radial_velocity n 1 1 @ 1 0 15284158 -radian n 1 2 @ %p 1 0 13612042 -radiance n 3 3 @ ~ + 3 2 11463371 04953954 14051201 -radiancy n 1 3 @ ~ + 1 0 04953954 -radiant_energy n 1 2 @ ~ 1 0 11499091 -radiant_flux n 1 2 @ ~ 1 0 15287351 -radiant_heating n 1 1 @ 1 0 13545036 -radiatio_optica n 1 1 @ 1 0 05229049 -radiation n 7 4 @ ~ + ; 7 2 11499284 01252918 14308472 13545184 07439883 05503555 00705580 -radiation_diagram n 1 2 @ %p 1 0 07005270 -radiation_field n 1 1 @ 1 0 11477582 -radiation_pattern n 1 2 @ %p 1 0 07005270 -radiation_pressure n 1 2 @ ~ 1 0 11497173 -radiation_pyrometer n 1 1 @ 1 0 04040540 -radiation_sickness n 1 1 @ 1 0 14308472 -radiation_syndrome n 1 1 @ 1 0 14308472 -radiation_therapy n 1 3 @ ~ ; 1 0 00705580 -radiator n 3 5 @ ~ #p %p + 3 1 09403211 04041069 04040759 -radiator_cap n 1 2 @ #p 1 0 04041243 -radiator_grille n 1 2 @ #p 1 0 03459775 -radiator_hose n 1 2 @ #p 1 0 04041408 -radical n 6 4 @ ~ #p ; 6 3 14621446 14874196 10503452 13731530 06841159 06300193 -radical_cell n 1 4 @ ~ %m ; 1 0 08358963 -radical_chic n 1 1 @ 1 0 00756034 -radical_hysterectomy n 1 1 @ 1 0 00677434 -radical_mastectomy n 1 1 @ 1 0 00685837 -radical_sign n 1 1 @ 1 0 06812188 -radicalism n 1 2 @ ~ 1 1 06219875 -radicchio n 1 1 @ 1 0 07731006 -radicle n 1 3 @ #p ; 1 0 05236152 -radiculitis n 1 1 @ 1 0 14354751 -radiigera n 1 3 @ #m %m 1 0 13045429 -radiigera_fuscogleba n 1 2 @ #m 1 0 13045594 -radio n 3 6 @ ~ #p %p + - 3 3 06277135 04043733 04041544 -radio-controlled_aircraft n 1 1 @ 1 0 03245889 -radio-frequency_spectrum n 1 3 @ #p %p 1 0 11500968 -radio-gramophone n 1 3 @ #p %p 1 0 04043411 -radio-opacity n 1 1 @ 1 0 11490335 -radio-phonograph n 1 3 @ #p %p 1 0 04043411 -radio_aerial n 1 1 @ 1 0 04041747 -radio_announcer n 1 1 @ 1 0 10503710 -radio_antenna n 1 1 @ 1 0 04041747 -radio_astronomy n 1 1 @ 1 0 06096759 -radio_beacon n 2 1 @ 2 0 07264086 04041930 -radio_beam n 1 1 @ 1 0 06792645 -radio_brightness n 1 1 @ 1 1 04954412 -radio_broadcast n 1 1 @ 1 0 06622366 -radio_chassis n 1 2 @ #p 1 0 04042076 -radio_compass n 1 1 @ 1 0 04042204 -radio_detection_and_ranging n 1 3 @ ~ %p 1 0 04039848 -radio_emission n 1 3 @ ~ #p 1 1 11499817 -radio_frequency n 1 3 @ ~ #p 1 0 05056490 -radio_interferometer n 1 1 @ 1 0 04042632 -radio_link n 1 2 @ ~ 1 0 04042795 -radio_news n 1 1 @ 1 0 06683513 -radio_noise n 1 1 @ 1 1 07432034 -radio_observation n 1 1 @ 1 1 01247969 -radio_operator n 1 2 @ ~ 1 0 10504426 -radio_radiation n 1 3 @ ~ #p 1 1 11499817 -radio_receiver n 1 4 @ ~ #p %p 1 0 04043733 -radio_reflector n 1 3 @ ~ %p 1 1 04044716 -radio_set n 1 4 @ ~ #p %p 1 0 04043733 -radio_signal n 1 1 @ 1 0 11500570 -radio_source n 1 1 @ 1 1 09403333 -radio_spectrum n 1 3 @ #p %p 1 1 11500968 -radio_station n 1 4 @ ~ #p %p 1 0 04044119 -radio_telescope n 1 3 @ ~ %p 1 1 04044716 -radio_transmitter n 1 3 @ ~ #p 1 1 04045085 -radio_wave n 1 3 @ ~ #p 1 1 11499817 -radioactive_dating n 1 1 @ 1 0 01004377 -radioactive_decay n 1 2 @ ~ 1 0 13456899 -radioactive_dust n 1 1 @ 1 0 14858950 -radioactive_iodine_excretion_test n 1 1 @ 1 0 05744620 -radioactive_iodine_test n 1 2 @ ~ 1 0 05744421 -radioactive_iodine_uptake_test n 1 1 @ 1 0 05744792 -radioactive_material n 1 2 @ ~ 1 0 15002233 -radioactive_waste n 1 2 @ ~ 1 0 15002346 -radioactivity n 1 3 @ ~ + 1 0 13545184 -radioactivity_unit n 1 2 @ ~ 1 0 13635336 -radiobiologist n 1 2 @ ~ 1 0 10503818 -radiobiology n 1 1 @ 1 0 06082834 -radiocarbon n 1 1 @ 1 0 14633856 -radiocarbon_dating n 1 1 @ 1 0 00992732 -radiocarpal_joint n 1 3 @ #p %p 1 0 05584928 -radiochemist n 1 2 @ + 1 0 10364502 -radiochemistry n 1 2 @ + 1 0 06090540 -radiochlorine n 1 1 @ 1 1 14634999 -radiocommunication n 1 2 @ - 1 0 06277135 -radiogram n 2 2 @ ~ 2 0 06276401 04042358 -radiograph n 1 2 @ ~ 1 0 04042358 -radiographer n 1 2 @ + 1 0 10503965 -radiography n 2 3 @ ~ + 2 0 13545382 00904428 -radioimmunoassay n 1 1 @ 1 0 05740804 -radioisotope n 1 2 @ ~ 1 0 14619857 -radiolaria n 1 3 @ #m %m 1 0 01390899 -radiolarian n 1 2 @ #m 1 0 01391028 -radiolocation n 1 4 @ ~ %p + 1 0 04039848 -radiologic_technologist n 1 1 @ 1 0 10504090 -radiologist n 1 2 @ + 1 0 10504206 -radiology n 2 5 @ ~ + ; - 2 0 06062407 00903309 -radiolysis n 1 1 @ 1 0 13545627 -radiometer n 1 2 @ ~ 1 0 04042985 -radiomicrometer n 1 1 @ 1 0 04043168 -radiopacity n 1 2 @ + 1 0 11490335 -radiopaque_dye n 1 1 @ 1 0 15001212 -radiopharmaceutical n 1 1 @ 1 0 04043268 -radiophone n 1 3 @ ~ + 1 0 04044498 -radiophoto n 1 1 @ 1 0 04043619 -radiophotograph n 1 1 @ 1 0 04043619 -radiophotography n 1 1 @ 1 0 00907235 -radioprotection n 1 1 @ 1 0 14540455 -radioscopy n 1 3 @ ~ ; 1 0 00903309 -radiosensitivity n 1 2 @ + 1 0 05654201 -radiotelegraph n 2 1 @ 2 0 06275471 04044307 -radiotelegraphic_signal n 1 2 @ ~ 1 0 06805665 -radiotelegraphy n 2 1 @ 2 0 06275471 04044307 -radiotelephone n 2 3 @ ~ + 2 0 06276501 04044498 -radiotelephony n 1 2 @ + 1 0 06276501 -radiotherapist n 1 2 @ + 1 0 10504206 -radiotherapy n 1 4 @ ~ + ; 1 0 00705580 -radiotherapy_equipment n 1 1 @ 1 0 04044955 -radiothorium n 1 1 @ 1 0 14658422 -radish n 5 6 @ ~ #m #p %s %p 5 1 07735687 11895092 11894958 11894770 11894327 -radish_plant n 1 4 @ ~ #m %p 1 0 11894327 -radium n 1 2 @ #s 1 0 14651921 -radium_therapy n 1 1 @ 1 0 00706019 -radius n 5 4 @ ~ #p + 5 3 05102101 13871538 08628578 05593318 04283378 -radius_of_curvature n 1 1 @ 1 1 05102578 -radius_vector n 2 1 @ 2 0 05865311 05865174 -radix n 1 2 @ ; 1 0 13597794 -radome n 1 2 @ #p 1 0 04045255 -radon n 1 1 @ 1 0 14652104 -radyera n 1 3 @ #m %m 1 0 12185687 -radyera_farragei n 1 2 @ #m 1 0 12185859 -raetam n 1 2 @ #m 1 0 12567490 -raf n 2 2 @ ; 2 0 08195132 08041106 -raffaello_santi n 1 1 @ 1 0 11254028 -raffaello_sanzio n 1 1 @ 1 0 11254028 -raffia n 3 4 @ #m #s %m 3 0 15002546 12595305 12594746 -raffia_farinifera n 1 4 @ ~ #m %s 1 0 12594989 -raffia_palm n 1 4 @ ~ #m %s 1 0 12594989 -raffia_ruffia n 1 4 @ ~ #m %s 1 0 12594989 -raffia_taedigera n 1 1 @ 1 0 12595452 -raffia_vinifera n 1 1 @ 1 0 12595699 -raffinose n 1 1 @ 1 0 15002679 -raffle n 1 2 @ + 1 0 00508672 -raffles n 1 1 @ 1 0 11252222 -rafflesiaceae n 1 2 @ #m 1 0 11803118 -raft n 2 3 @ ~ + 2 1 04045397 13774404 -raft_foundation n 1 1 @ 1 0 04045787 -rafter n 2 2 @ + 2 1 04045644 10504545 -raftman n 1 1 @ 1 0 10504545 -rafts n 1 1 @ 1 0 13777509 -raftsman n 1 1 @ 1 0 10504545 -rag n 5 5 @ ~ %p + ; 5 1 04045941 15170786 07060844 06267893 00514658 -rag_day n 1 3 @ #p ; 1 0 15171008 -rag_doll n 1 1 @ 1 0 04046172 -rag_gourd n 1 4 @ ~ #m %p 1 0 12166424 -rag_paper n 1 1 @ 1 0 14694672 -rag_trade n 1 1 @ 1 0 08066317 -rag_week n 1 3 @ %p ; 1 0 15170786 -ragamuffin n 1 1 @ 1 1 10504664 -ragbag n 2 1 @ 2 0 08399977 04046091 -rage n 5 3 @ ~ + 5 3 07516997 14036735 14039179 13980128 05751173 -ragee n 1 2 @ #m 1 0 12118661 -ragged-fringed_orchid n 1 1 @ 1 0 12067193 -ragged_orchid n 1 1 @ 1 0 12067193 -ragged_orchis n 1 1 @ 1 0 12067193 -ragged_robin n 1 1 @ 1 0 11811706 -raggedness n 2 3 @ ~ + 2 0 04948241 04817168 -ragi n 1 2 @ #m 1 0 12118661 -raglan n 1 2 @ %p 1 0 04046277 -raglan_sleeve n 1 2 @ #p 1 0 04046400 -ragnar_anton_kittil_frisch n 1 1 @ 1 0 10983007 -ragnar_frisch n 1 1 @ 1 0 10983007 -ragnarok n 1 1 @ 1 0 06372925 -ragout n 1 2 @ ~ 1 0 07592656 -ragpicker n 1 1 @ 1 0 10504805 -ragpicker's_disease n 1 1 @ 1 0 14072934 -ragsorter n 1 1 @ 1 0 10504956 -ragsorter's_disease n 1 1 @ 1 0 14072934 -ragtag n 1 2 @ ~ 1 0 08401819 -ragtag_and_bobtail n 1 2 @ ~ 1 0 08401819 -ragtime n 1 1 @ 1 0 07060844 -ragusa n 1 2 @ #p 1 0 08818835 -ragweed n 2 3 @ ~ #m 2 0 12012253 11919447 -ragweed_pollen n 1 1 @ 1 0 14585392 -ragwort n 2 2 @ #m 2 0 12012253 12012111 -rahu n 1 1 @ 1 0 09528032 -raid n 2 3 @ ~ + 2 1 00976953 00777324 -raider n 2 4 @ ~ + ; 2 0 10443170 08076253 -rail n 5 6 @ ~ #m #p %p + 5 2 04047401 04046810 04463679 04046590 02014941 -rail-splitter n 1 1 @ 1 0 10505206 -rail_fence n 1 3 @ ~ %p 1 1 04046974 -rail_line n 1 3 @ ~ %p 1 0 03671272 -rail_technology n 1 2 @ ~ 1 0 00951037 -railbird n 1 1 @ 1 0 10505085 -railcar n 1 4 @ ~ #m %p 1 0 02959942 -railhead n 2 1 @ 2 1 04047139 04047291 -railing n 2 5 @ ~ #p %p + 2 1 04047401 04047733 -raillery n 1 2 @ ~ 1 0 06777794 -railroad n 2 5 @ ~ #p %p + 2 1 04048568 04048075 -railroad_bed n 1 2 @ #p 1 0 04047834 -railroad_car n 1 4 @ ~ #m %p 1 0 02959942 -railroad_engineer n 1 2 @ ~ 1 0 10057714 -railroad_flat n 1 1 @ 1 0 04047949 -railroad_line n 1 2 @ ~ 1 0 04048568 -railroad_man n 1 2 @ ~ 1 0 10722758 -railroad_siding n 1 1 @ 1 1 04216106 -railroad_station n 1 2 @ ~ 1 1 04049098 -railroad_terminal n 1 2 @ ~ 1 1 04049098 -railroad_ticket n 1 1 @ 1 0 06519607 -railroad_tie n 1 2 @ #p 1 0 04433585 -railroad_track n 1 4 @ ~ #p %p 1 0 04048075 -railroad_train n 1 4 @ ~ %m - 1 1 04468005 -railroad_tunnel n 1 2 @ ~ 1 0 04048441 -railroad_vine n 1 1 @ 1 0 12828628 -railroad_worm n 1 2 @ #m 1 0 02196896 -railroader n 1 2 @ ~ 1 0 10722758 -railroading n 1 3 @ ~ + 1 0 00951037 -rails n 1 3 @ ~ #p 1 0 04463679 -railway n 2 4 @ ~ #p %p 2 2 04048568 04048075 -railway_car n 1 4 @ ~ #m %p 1 0 02959942 -railway_junction n 1 1 @ 1 0 04048979 -railway_line n 2 3 @ ~ %p 2 0 04048568 03671272 -railway_locomotive n 1 4 @ ~ #m %p 1 0 03684823 -railway_man n 1 2 @ ~ 1 0 10722758 -railway_station n 1 2 @ ~ 1 1 04049098 -railway_system n 1 2 @ ~ 1 1 04048568 -railway_yard n 1 2 @ ~ 1 0 04611154 -railwayman n 1 2 @ ~ 1 0 10722758 -railyard n 1 2 @ ~ 1 0 04611154 -raiment n 1 3 @ ~ + 1 0 02742322 -rain n 3 4 @ ~ %p + 3 2 11501381 15008607 05045208 -rain-giver n 1 1 @ 1 0 09574446 -rain-in-the-face n 1 1 @ 1 0 11252392 -rain-wash n 1 1 @ 1 0 13545733 -rain_barrel n 1 1 @ 1 0 04049303 -rain_check n 2 1 @ 2 0 07228630 06520571 -rain_cloud n 1 2 @ %p 1 1 09371686 -rain_dance n 1 2 @ ~ 1 1 00542711 -rain_date n 1 1 @ 1 0 15160216 -rain_forest n 1 2 @ ~ 1 0 08439126 -rain_gage n 1 1 @ 1 0 04049585 -rain_gauge n 1 1 @ 1 0 04049585 -rain_shadow n 1 1 @ 1 0 08628746 -rain_shower n 1 2 @ ~ 1 0 11502497 -rain_stick n 1 1 @ 1 0 04049753 -rain_tree n 1 1 @ 1 0 11759853 -rainbow n 2 2 @ #p 2 1 09403427 05950982 -rainbow_cactus n 1 2 @ #m 1 0 11846425 -rainbow_fish n 1 1 @ 1 0 01448594 -rainbow_lorikeet n 1 2 @ #m 1 0 01821076 -rainbow_perch n 1 2 @ #m 1 0 02571167 -rainbow_pink n 1 2 @ ~ 1 0 11808721 -rainbow_runner n 1 1 @ 1 0 02577403 -rainbow_seaperch n 1 2 @ #m 1 0 02571167 -rainbow_shower n 1 1 @ 1 0 12492682 -rainbow_smelt n 2 4 @ #m #p %p 2 0 07798728 02540791 -rainbow_trout n 2 4 @ #m #p %p 2 0 07794605 02537525 -raincoat n 1 2 @ ~ 1 0 04049405 -raindrop n 1 2 @ #p 1 0 11501649 -rainer_maria_rilke n 1 1 @ 1 0 11262574 -rainfall n 1 3 @ ~ %p 1 1 11501381 -rainfly n 1 2 @ #p 1 0 04412097 -rainforest n 1 2 @ ~ 1 0 08439126 -raininess n 1 1 @ 1 0 05037037 -rainmaker n 2 2 @ ; 2 0 10505459 10505347 -rainmaking n 1 1 @ 1 0 00922054 -rainstorm n 1 2 @ ~ 1 0 11501737 -rainwater n 1 1 @ 1 0 15008607 -rainy_day n 1 2 @ ; 1 0 15294745 -rainy_season n 1 3 ! @ ~ 1 0 15238895 -raise n 4 4 @ ~ + ; 4 1 05110185 09206985 00803208 00116376 -raised_doughnut n 1 2 @ ~ 1 0 07639188 -raiser n 2 3 @ ~ + 2 0 10505613 09779790 -raisin n 1 2 @ ~ 1 0 07752664 -raisin-nut_cookie n 1 1 @ 1 0 07637398 -raisin_bran n 1 1 @ 1 0 07705221 -raisin_bread n 1 1 @ 1 0 07684517 -raisin_cookie n 1 1 @ 1 0 07637652 -raisin_moth n 1 2 @ #m 1 0 02290870 -raising n 3 2 @ + 3 1 07370671 04922113 01129532 -raising_hell n 1 1 @ 1 0 01223032 -raison_d'etre n 2 1 @ 2 0 05794618 05149589 -raita n 1 1 @ 1 0 07849619 -raiu n 1 1 @ 1 0 05744792 -raj n 1 1 @ 1 0 14443345 -raja n 2 3 @ #m %m 2 0 10505732 01501450 -raja_batis n 1 2 @ #m 1 0 01501641 -raja_erinacea n 1 2 @ #m 1 0 01501777 -raja_laevis n 1 2 @ #m 1 0 01502101 -raja_radiata n 1 2 @ #m 1 0 01501948 -rajab n 1 2 @ #p 1 0 15218037 -rajah n 1 1 @ 1 1 10505732 -rajanya n 1 1 @ 1 0 08307145 -rajidae n 1 3 @ #m %m 1 0 01500995 -rajiformes n 1 3 @ #m %m 1 0 01496617 -rajpoot n 1 1 @ 1 0 10505816 -rajput n 1 1 @ 1 0 10505816 -rakaposhi n 1 2 @ #p 1 0 09403581 -rake n 3 4 @ ~ %p + 3 0 10505942 05069199 04050066 -rake-off n 1 2 @ + 1 0 13289306 -rake_handle n 1 2 @ #p 1 0 04050313 -rakehell n 1 1 @ 1 0 10505942 -rakishness n 2 2 @ + 2 0 04884995 04814025 -rale n 1 2 @ ~ 1 0 07391240 -ralegh n 1 1 @ 1 0 11252627 -raleigh n 2 2 @ #p 2 0 11252627 09127844 -rallidae n 1 3 @ #m %m 1 0 02014646 -rally n 5 4 @ ~ + ; 5 2 08358332 00045646 13545845 07459157 01166517 -rallying n 2 2 @ + 2 1 01230685 00045646 -rallying_cry n 2 1 @ 2 0 07152752 07123404 -rallying_point n 1 1 @ 1 1 06607067 -ralph_barton_perry n 1 1 @ 1 0 11230669 -ralph_bunche n 1 1 @ 1 0 10871270 -ralph_ellison n 1 1 @ 1 0 10958182 -ralph_johnson_bunche n 1 1 @ 1 0 10871270 -ralph_richardson n 1 1 @ 1 0 11261184 -ralph_vaughan_williams n 1 1 @ 1 0 11361585 -ralph_waldo_ellison n 1 1 @ 1 0 10958182 -ralph_waldo_emerson n 1 1 @ 1 0 10958552 -ram n 5 5 @ ~ %p + ; 5 1 04052757 09752246 08686129 04050410 02412080 -ram's-head n 1 1 @ 1 0 12056990 -ram's-head_lady's_slipper n 1 1 @ 1 0 12056990 -ram's_horn n 1 2 @ #m 1 0 12875269 -ram_disk n 1 3 @ #p ; 1 0 04050600 -rama n 1 2 @ ~ 1 0 09530867 -ramachandra n 1 1 @ 1 0 09531186 -ramadan n 2 3 @ #p ; 2 0 15218272 01243089 -ramalina n 1 2 @ #m 1 0 12990250 -ramanavami n 1 2 @ #p 1 0 15219874 -ramayana n 1 1 @ 1 0 06464024 -ramble n 1 2 @ + 1 0 00284409 -rambler n 2 2 @ + 2 0 10506220 10506094 -rambotan n 2 4 @ #m #p %p 2 0 12745386 07769731 -rambouillet n 1 1 @ 1 0 02414442 -rambutan n 2 4 @ #m #p %p 2 0 12745386 07769731 -rambutan_tree n 1 3 @ #m %p 1 0 12745386 -rameau n 1 1 @ 1 0 11252915 -ramee n 1 2 @ #m 1 0 12393269 -ramekin n 2 1 @ 2 0 07937621 04050933 -ramequin n 2 1 @ 2 0 07937621 04050933 -rameses n 1 2 @ ~ 1 0 11253097 -rameses_ii n 1 1 @ 1 0 11253248 -rameses_the_great n 1 1 @ 1 0 11253248 -ramesses n 1 2 @ ~ 1 0 11253097 -ramesses_ii n 1 1 @ 1 0 11253248 -ramesses_the_great n 1 1 @ 1 0 11253248 -ramie n 1 2 @ #m 1 0 12393269 -ramification n 4 4 @ ~ #p + 4 1 00388392 13913849 07423899 05083200 -ramipril n 1 1 @ 1 0 04051068 -ramjet n 1 1 @ 1 0 04051269 -ramjet_engine n 1 1 @ 1 0 04051269 -ramman n 1 2 @ ; 1 0 09521521 -rammer n 1 2 @ + 1 0 04051439 -ramon_lully n 1 1 @ 1 0 11145085 -ramon_y_cajal n 1 1 @ 1 0 11253455 -ramona n 1 2 @ %p 1 0 12865824 -ramontchi n 1 2 @ #m 1 0 12378249 -ramp n 3 3 @ ~ + 3 1 04051549 12435338 04615728 -rampage n 1 3 @ ~ + 1 0 00554541 -rampant_arch n 1 1 @ 1 0 04051705 -rampart n 1 3 @ ~ #p 1 1 04051825 -ramphastidae n 1 3 @ #m %m 1 0 01843238 -ramphomicron n 1 3 @ #m %m 1 0 01834412 -rampion n 1 1 @ 1 0 12038898 -rampion_bellflower n 1 1 @ 1 0 12038898 -ramrod n 3 1 @ 3 1 04052235 10506336 04052346 -ramsay_hunt_syndrome n 1 1 @ 1 0 14308945 -ramses n 1 2 @ ~ 1 0 11253097 -ramses_ii n 1 1 @ 1 0 11253248 -ramses_the_great n 1 1 @ 1 0 11253248 -ramsons n 1 1 @ 1 0 12435649 -ramus n 1 2 @ %p 1 0 05276290 -rana n 1 3 @ #m %m 1 0 01640567 -rana_cascadae n 1 2 @ #m 1 0 01641930 -rana_catesbeiana n 1 2 @ #m 1 0 01641577 -rana_clamitans n 1 2 @ #m 1 0 01641739 -rana_goliath n 1 2 @ #m 1 0 01642097 -rana_palustris n 1 2 @ #m 1 0 01642257 -rana_pipiens n 1 2 @ #m 1 0 01641391 -rana_sylvatica n 1 2 @ #m 1 0 01641206 -rana_tarahumarae n 1 2 @ #m 1 0 01642391 -rana_temporaria n 1 2 @ #m 1 0 01642539 -ranales n 1 3 @ #m %m 1 0 11692952 -ranalian_complex n 1 3 @ #m %m 1 0 11667112 -ranatra n 1 2 @ #m 1 0 02242816 -ranch n 1 2 @ + 1 1 04052442 -ranch_hand n 1 2 @ ~ 1 0 10506544 -ranch_house n 1 1 @ 1 1 04052658 -rancher n 1 3 @ ~ + 1 1 10506417 -ranching n 1 3 @ ~ + 1 0 00920062 -rancidity n 1 2 @ + 1 0 14561839 -rancidness n 1 2 @ + 1 0 04992431 -rancor n 1 3 @ ~ + 1 1 07548978 -rancour n 1 2 @ ~ 1 0 07548978 -rand n 3 3 @ #p %p 3 0 13696523 11253630 09001881 -randall_jarrell n 1 1 @ 1 0 11080884 -random-access_memory n 1 3 @ ~ %p 1 1 04052757 -random_access_memory n 1 3 @ ~ %p 1 0 04052757 -random_memory n 1 3 @ ~ %p 1 1 04052757 -random_number_generator n 1 1 @ 1 0 06584049 -random_sample n 2 2 @ ; 2 0 06026885 05822507 -random_sampling n 1 2 @ ~ 1 0 00162055 -random_variable n 1 1 @ 1 1 05864177 -random_walk n 1 1 @ 1 0 13545973 -randomisation n 1 2 @ + 1 0 01009001 -randomization n 1 2 @ + 1 1 01009001 -randomness n 2 4 @ ~ + ; 2 0 05012585 04771332 -ranee n 1 1 @ 1 0 10506642 -range n 9 5 @ ~ %p + ; 9 5 05125377 08628921 08629199 09403734 04053218 08399586 08000304 05623628 04330340 -range_animal n 1 1 @ 1 0 01315805 -range_finder n 1 1 @ 1 0 04053508 -range_hood n 1 1 @ 1 0 04053677 -range_of_a_function n 1 2 @ ; 1 0 08000304 -range_of_mountains n 1 3 @ ~ %p 1 0 09403734 -range_pole n 1 1 @ 1 0 04053767 -rangefinder n 1 1 @ 1 0 04053508 -rangeland n 1 1 @ 1 0 09405078 -ranger n 3 3 @ ~ ; 3 0 10704712 10092098 09942275 -rangifer n 1 3 @ #m %m 1 0 02433796 -rangifer_arcticus n 1 1 @ 1 0 02434415 -rangifer_caribou n 1 1 @ 1 0 02434190 -rangifer_tarandus n 1 3 @ ~ #m 1 0 02433925 -ranging_pole n 1 1 @ 1 0 04053767 -rangoon n 1 2 @ #p 1 0 08715777 -rangpur n 1 2 @ #m 1 0 12711398 -rangpur_lime n 1 2 @ #m 1 0 12711398 -rani n 1 1 @ 1 0 10506642 -ranid n 1 4 @ ~ #m %p 1 0 01640846 -ranidae n 1 3 @ #m %m 1 0 01640383 -ranier n 1 2 @ #p 1 0 09405169 -ranitidine n 1 1 @ 1 0 04053995 -rank n 5 6 @ ~ #m %m + ; 5 5 08431942 14429985 08398179 13947415 08400965 -rank-difference_correlation n 1 2 @ ; 1 0 06034301 -rank-difference_correlation_coefficient n 1 2 @ ; 1 0 06034301 -rank-order_correlation n 1 2 @ ; 1 0 06034301 -rank-order_correlation_coefficient n 1 2 @ ; 1 0 06034301 -rank_and_file n 2 3 @ %m ; 2 1 08398179 08401711 -rank_order n 1 1 @ 1 0 01010245 -ranker n 2 3 @ + ; 2 0 10506915 10506762 -rankin n 1 1 @ 1 0 11253802 -rankine n 1 1 @ 1 0 13714905 -rankine_scale n 1 1 @ 1 0 13853198 -ranking n 1 2 @ + 1 0 14429484 -rankness n 2 3 @ ~ + 2 0 05147586 04980656 -ransacking n 1 2 @ + 1 0 00946806 -ransom n 3 2 @ + 3 2 13284048 01121585 00096851 -ransom_money n 1 1 @ 1 1 13284048 -rant n 2 3 @ ~ + 2 0 07242912 07087777 -ranter n 1 2 @ + 1 0 10507070 -ranting n 1 3 @ ~ + 1 0 07242912 -ranula n 1 1 @ 1 0 14202673 -ranunculaceae n 1 3 @ #m %m 1 0 11719468 -ranunculales n 1 3 @ #m %m 1 0 11692952 -ranunculus n 1 3 @ #m %m 1 0 11720088 -ranunculus_acris n 1 1 @ 1 0 11720643 -ranunculus_aquatilis n 1 2 @ #m 1 0 11720891 -ranunculus_bulbosus n 1 1 @ 1 0 11721124 -ranunculus_ficaria n 1 2 @ #m 1 0 11721337 -ranunculus_flammula n 1 2 @ #m 1 0 11721642 -ranunculus_glaberrimus n 1 2 @ #m 1 0 11721844 -ranunculus_lingua n 1 2 @ #m 1 0 11722036 -ranunculus_lyalii n 1 1 @ 1 0 11722199 -ranunculus_occidentalis n 1 1 @ 1 0 11722342 -ranunculus_repens n 1 1 @ 1 0 11722466 -ranunculus_sceleratus n 1 1 @ 1 0 11722621 -ranvier's_nodes n 1 2 @ #p 1 0 05464534 -raoul_dufy n 1 1 @ 1 0 10944468 -raoulia n 1 3 @ #m %m 1 0 12006081 -raoulia_australis n 1 2 @ #m 1 0 12006306 -raoulia_lutescens n 1 2 @ #m 1 0 12006306 -rap n 6 4 @ ~ + ; 6 1 06713752 07410021 07388987 07141537 07064055 00133338 -rap_group n 1 1 @ 1 0 08479795 -rap_music n 1 1 @ 1 0 07064055 -rap_session n 1 1 @ 1 0 07141644 -rap_sheet n 1 1 @ 1 0 06502858 -rapaciousness n 2 2 @ + 2 0 04886402 04834817 -rapacity n 2 2 @ + 2 0 04886402 00758525 -rapateaceae n 1 2 @ #m 1 0 12608778 -rape n 3 5 @ ~ #m %s + 3 0 11879722 00966384 00773402 -rape_conviction n 1 2 @ ; 1 0 01194125 -rape_oil n 1 2 @ #s 1 0 11880032 -rape_suspect n 1 1 @ 1 0 10507380 -raper n 1 2 @ + 1 0 10507230 -rapeseed n 1 3 @ #s %s 1 0 11879895 -rapeseed_oil n 1 2 @ #s 1 0 11880032 -raphael n 2 1 @ 2 0 11254028 09539640 -raphanus n 1 3 @ #m %m 1 0 11894173 -raphanus_raphanistrum n 1 2 @ #m 1 0 11894558 -raphanus_sativus n 1 3 @ #m %s 1 0 11894770 -raphanus_sativus_longipinnatus n 1 1 @ 1 0 11895092 -raphe n 1 3 @ ~ #p 1 0 05276425 -raphia n 2 3 @ #m %m 2 0 15002546 12594746 -raphicerus n 1 3 @ #m %m 1 0 02426339 -raphicerus_campestris n 1 2 @ #m 1 0 02426481 -raphidae n 1 3 @ #m %m 1 0 01810946 -raphidiidae n 1 3 @ #m %m 1 0 02267019 -raphus n 1 3 @ #m %m 1 0 01811104 -raphus_cucullatus n 1 2 @ #m 1 0 01811243 -rapid n 1 2 @ #p 1 0 09405396 -rapid_city n 1 2 @ #p 1 0 09139698 -rapid_climb n 1 1 @ 1 0 07375525 -rapid_eye_movement n 1 1 @ 1 0 14025755 -rapid_eye_movement_sleep n 1 1 @ 1 0 14025755 -rapid_growth n 1 1 @ 1 0 07375525 -rapid_transit n 1 1 @ 1 1 04054213 -rapidity n 1 3 @ ~ + 1 1 05059132 -rapidness n 1 3 @ ~ + 1 0 05059132 -rapier n 1 1 @ 1 0 04054361 -rapine n 1 1 @ 1 0 00966384 -rapist n 1 1 @ 1 1 10507230 -rappahannock n 1 2 @ #p 1 0 09405515 -rappahannock_river n 1 2 @ #p 1 0 09405515 -rappee n 1 1 @ 1 0 04054471 -rappel n 1 2 @ ; 1 0 00326809 -rappeller n 1 1 @ 1 0 09757449 -rapper n 2 2 @ #p 2 0 10507482 03626760 -rapport n 1 1 @ 1 1 13811740 -rapporteur n 1 1 @ 1 0 10507565 -rapprochement n 1 1 @ 1 0 01205827 -rapscallion n 2 2 @ ~ 2 0 10536728 10200047 -raptor n 1 3 @ ~ + 1 0 01604330 -raptores n 1 2 @ #m 1 0 01604123 -raptorial_bird n 1 2 @ ~ 1 0 01604330 -rapture n 2 2 @ + 2 1 13986372 13988101 -raptus n 2 2 @ ~ 2 0 14081941 13986372 -raptus_hemorrhagicus n 1 1 @ 1 0 14087096 -rara_avis n 1 1 @ 1 0 10507692 -rare-earth_element n 1 2 @ ~ 1 0 14624743 -rare_bird n 1 1 @ 1 0 10507692 -rare_earth n 1 2 @ ~ 1 1 14624743 -rarebit n 1 1 @ 1 0 07880325 -raree-show n 2 1 @ 2 0 08408115 00519669 -rarefaction n 1 2 @ + 1 0 07419408 -rareness n 1 2 @ + 1 0 05117237 -rariora n 1 2 @ ; 1 0 04054566 -rarity n 3 3 @ ~ + 3 0 05117237 05089612 03149951 -ras n 1 2 @ #p 1 0 05502375 -ras_tafari n 1 1 @ 1 0 11022309 -ras_tafari_makonnen n 1 1 @ 1 0 11022309 -rascal n 2 3 @ ~ + 2 1 10536728 10200047 -rascality n 3 2 @ ~ 3 0 04909721 04875728 00736375 -rash n 2 2 @ ~ 2 0 14321953 08459087 -rasher n 1 1 @ 1 0 02644501 -rashness n 2 3 @ ~ + 2 0 04894204 04661926 -rasht n 1 2 @ #p 1 0 08912153 -rashtriya_swayamsevak_sangh n 1 2 @ ; 1 0 08235623 -rask n 1 1 @ 1 0 11254213 -raskolnikov n 1 1 @ 1 0 10507783 -rasmus_christian_rask n 1 1 @ 1 0 11254213 -rasmussen n 1 1 @ 1 0 11254393 -rasp n 2 2 @ + 2 1 07130774 04054670 -rasp_fern n 1 2 @ #m 1 0 13185658 -raspberry n 3 3 @ ~ #p 3 0 12655869 07745466 07123870 -raspberry_bush n 1 2 @ ~ 1 0 12655869 -rasping n 1 2 @ + 1 0 07130774 -rasputin n 1 1 @ 1 0 11254683 -rassling n 1 4 @ ~ %p - 1 0 00447540 -rasta n 1 3 @ #m + 1 0 09685922 -rastafari n 1 3 @ %m ; 1 0 08292418 -rastafarian n 2 3 @ #m ; 2 0 09685922 08152353 -rastafarianism n 1 1 @ 1 0 06225855 -rastas n 1 3 @ %m ; 1 0 08292418 -raster n 1 4 @ #p %p + 1 0 04054795 -raster_font n 1 2 @ ; 1 0 06827679 -rat n 5 4 @ ~ #p + 5 1 02331046 10554455 10539715 10206173 04055030 -rat's-tail_cactus n 1 2 @ #m 1 0 11843441 -rat-a-tat n 1 1 @ 1 0 07391079 -rat-a-tat-tat n 1 1 @ 1 0 07391079 -rat-catcher n 1 1 @ 1 0 10508008 -rat-tail_file n 1 1 @ 1 0 04056073 -rat-tat n 1 1 @ 1 0 07391079 -rat_cheese n 1 1 @ 1 0 07853125 -rat_chinchilla n 1 2 @ #m 1 0 02368399 -rat_kangaroo n 1 3 @ ~ #m 1 0 01880152 -rat_race n 1 1 @ 1 0 01026633 -rat_snake n 1 2 @ ~ 1 0 01732244 -rat_terrier n 1 2 @ ~ 1 0 02094562 -rat_typhus n 1 1 @ 1 0 14141238 -ratability n 2 3 @ + ; 2 0 14530659 05210003 -ratables n 1 2 @ ; 1 0 13245076 -ratafee n 1 2 @ %s 1 0 07911061 -ratafia n 2 2 @ %s 2 0 07911061 07636669 -ratafia_biscuit n 1 1 @ 1 0 07636669 -ratan n 1 1 @ 1 0 04056180 -rataplan n 1 1 @ 1 0 07392373 -ratatouille n 1 1 @ 1 0 07592768 -ratbite_fever n 1 2 @ ~ 1 0 14140533 -ratbite_fever_bacterium n 1 1 @ 1 0 01363887 -ratch n 1 3 @ #p %p 1 0 04055180 -ratchet n 1 4 @ #p %p + 1 0 04055180 -ratchet_screwdriver n 1 2 @ %p 1 0 04279987 -ratchet_wheel n 1 2 @ #p 1 0 04055447 -rate n 4 2 @ ~ 4 3 15286249 13325010 05058580 13816649 -rate_of_attrition n 1 1 @ 1 1 15276307 -rate_of_depreciation n 1 1 @ 1 0 13326450 -rate_of_exchange n 1 1 @ 1 0 13326620 -rate_of_flow n 1 2 @ ~ 1 0 15277730 -rate_of_growth n 1 2 @ ~ 1 1 15278825 -rate_of_inflation n 1 1 @ 1 0 15279299 -rate_of_interest n 1 2 @ ~ 1 0 13319032 -rate_of_pay n 1 2 @ ~ 1 1 13281476 -rate_of_payment n 1 1 @ 1 0 13281770 -rate_of_respiration n 1 1 @ 1 0 15281653 -rate_of_return n 1 2 @ ~ 1 0 15281176 -rateability n 1 3 @ + ; 1 0 14530659 -rateables n 1 2 @ ; 1 0 13245076 -ratel n 1 2 @ #m 1 0 02448318 -ratepayer n 1 2 @ ; 1 0 10508141 -rates n 1 3 @ ~ ; 1 0 13314936 -rathole n 2 2 @ ; 2 1 09405683 04055595 -rathskeller n 1 1 @ 1 0 04055700 -ratibida n 1 3 @ #m %m 1 0 12006503 -ratibida_columnaris n 1 1 @ 1 0 12006930 -ratibida_columnifera n 1 2 @ #m 1 0 12007196 -ratibida_tagetes n 1 2 @ #m 1 0 12007406 -ratification n 1 2 @ + 1 0 07179943 -ratifier n 1 2 @ + 1 0 10670668 -rating n 4 4 @ ~ + ; 4 3 05736149 00874806 14429382 14431471 -rating_system n 1 1 @ 1 0 05733221 -ratio n 2 2 @ ~ 2 1 13819207 13815449 -ratiocination n 2 4 @ #p %p + 2 0 06753030 05783658 -ratiocinator n 1 3 @ ~ + 1 0 10510339 -ration n 2 3 @ ~ + 2 2 07565725 13286099 -ration_card n 1 1 @ 1 0 06478331 -rational n 1 2 @ ~ 1 0 13730469 -rational_motive n 1 2 @ ~ 1 0 09178821 -rational_number n 1 2 @ ~ 1 0 13730469 -rationale n 1 4 @ ~ + ; 1 1 05793210 -rationalisation n 5 4 @ ~ + ; 5 0 13546169 05794403 01212225 01137760 01009190 -rationalism n 3 4 @ ~ + ; 3 1 05975473 06191018 05966958 -rationalist n 1 3 @ ~ + 1 0 10456138 -rationality n 2 2 @ + 2 0 14379829 04784978 -rationalization n 5 4 @ ~ + ; 5 1 05794403 13546169 01212225 01137760 01009190 -rationalness n 1 2 @ + 1 0 04784978 -rationing n 1 2 @ + 1 1 01084932 -ratitae n 1 3 @ #m %m 1 0 01518170 -ratite n 1 3 ! @ ~ 1 0 01517565 -ratite_bird n 1 2 @ ~ 1 0 01517565 -ratlin n 1 3 @ #p ; 1 0 04055861 -ratline n 1 3 @ #p ; 1 0 04055861 -ratsbane n 1 1 @ 1 0 14768201 -rattail n 1 2 @ #m 1 0 02525703 -rattail_cactus n 1 2 @ #m 1 0 11843441 -rattail_fish n 1 2 @ #m 1 0 02525703 -rattan n 3 2 @ %p 3 0 12586499 12136392 04056180 -rattan_cane n 1 1 @ 1 0 12136392 -rattan_palm n 1 2 @ %p 1 0 12586499 -ratter n 2 3 @ ~ + 2 0 10007109 02094562 -rattigan n 1 1 @ 1 0 11254950 -ratting n 1 2 @ + 1 0 07214994 -rattle n 3 4 @ ~ #p + 3 1 07391240 04056289 01754737 -rattle-top n 1 1 @ 1 0 11728945 -rattle_weed n 1 1 @ 1 0 12509993 -rattlebox n 1 3 @ ~ #m 1 0 12519563 -rattler n 2 6 @ ~ #m %m %p + 2 1 01754876 03394480 -rattlesnake n 1 4 @ ~ #m %p 1 1 01754876 -rattlesnake's_master n 1 2 @ #m 1 0 12938667 -rattlesnake_fern n 1 1 @ 1 0 12961536 -rattlesnake_master n 1 2 @ #m 1 0 12938667 -rattlesnake_orchid n 1 2 @ #m 1 0 12077244 -rattlesnake_plantain n 1 2 @ #m 1 0 12063639 -rattlesnake_root n 2 3 @ ~ #m 2 0 12004987 11997032 -rattlesnake_weed n 1 1 @ 1 0 11982545 -rattling n 1 3 @ ~ + 1 1 07391240 -rattrap n 3 2 @ ; 3 0 14409285 04056491 04056413 -rattus n 1 3 @ #m %m 1 0 02333368 -rattus_norvegicus n 1 3 @ ~ #m 1 0 02333546 -rattus_rattus n 1 2 @ #m 1 0 02333909 -rau-sed n 1 3 @ %s ; 1 0 04078236 -raudixin n 1 3 @ %s ; 1 0 04078236 -rauli_beech n 1 2 @ #m 1 0 12267265 -raunch n 1 2 @ + 1 0 04817280 -rauvolfia n 1 3 @ ~ #m 1 0 11775340 -rauwolfia n 2 4 @ ~ #m #s 2 0 15002814 11775340 -rauwolfia_serpentina n 1 1 @ 1 0 11775626 -ravage n 1 3 @ + ; 1 1 07334876 -ravaging n 1 2 @ + 1 0 00967157 -rave n 2 2 @ + 2 0 07449676 06693744 -rave-up n 1 2 @ ; 1 0 08479894 -ravehook n 1 1 @ 1 0 04056599 -ravel n 2 2 @ + 2 0 11255085 07443010 -raveling n 1 3 @ #s + 1 0 15002959 -ravelling n 1 3 @ #s + 1 0 15002959 -raven n 1 2 @ #m 1 0 01579260 -ravenala n 1 2 @ #m 1 0 12355023 -ravenala_madagascariensis n 1 2 @ #m 1 0 12355023 -ravenna n 1 2 @ ; 1 0 01292553 -ravenna_grass n 1 2 @ #m 1 0 12121187 -ravenousness n 1 2 @ + 1 0 14040071 -raver n 2 2 @ + 2 0 10508272 10507070 -ravi_shankar n 1 1 @ 1 0 11295464 -ravigote n 1 1 @ 1 0 07832592 -ravigotte n 1 1 @ 1 0 07832592 -ravine n 1 2 @ ~ 1 0 09405787 -raving n 1 2 @ + 1 0 07243193 -ravioli n 1 1 @ 1 0 07701244 -ravisher n 2 2 @ + 2 0 10754281 10613996 -ravishment n 2 3 @ ~ + 2 0 07491286 00773402 -raw n 1 1 @ 1 0 14456586 -raw_beauty n 1 1 @ 1 0 04684255 -raw_data n 1 1 @ 1 0 08462858 -raw_deal n 1 1 @ 1 1 07293475 -raw_material n 1 2 @ ~ 1 1 14596700 -raw_meat n 1 2 @ ~ 1 0 07651159 -raw_milk n 1 1 @ 1 0 07845702 -raw_recruit n 1 1 @ 1 0 10508379 -raw_sienna n 2 2 @ ~ 2 1 04973957 14843877 -raw_talent n 1 1 @ 1 0 05624615 -raw_throat n 1 2 @ ~ 1 0 14173484 -raw_umber n 1 1 @ 1 1 15083533 -raw_vegetable n 1 2 @ #s 1 0 07708398 -raw_weather n 1 1 @ 1 0 14523344 -raw_wood n 1 1 @ 1 0 15100479 -raw_wool n 1 1 @ 1 0 15104488 -raw_wound n 1 1 @ 1 0 14286339 -rawalpindi n 1 2 @ #p 1 0 08977665 -rawhide n 1 1 @ 1 1 14759588 -rawness n 4 3 @ ~ + 4 0 14536207 14462193 14332617 05988956 -ray n 7 5 @ ~ #p + ; 7 2 11428023 13131516 13913427 11428379 06868445 01900719 01495701 -ray_bradbury n 1 1 @ 1 0 10860444 -ray_cattell n 1 1 @ 1 0 10891569 -ray_douglas_bradbury n 1 1 @ 1 0 10860444 -ray_floret n 1 2 @ #p 1 0 11674603 -ray_flower n 1 2 @ #p 1 0 11674603 -ray_m._dolby n 1 1 @ 1 0 10938019 -ray_of_light n 1 2 @ ~ 1 0 11428023 -ray_robinson n 1 1 @ 1 0 11266279 -rayleigh n 1 1 @ 1 0 11255211 -rayleigh_disk n 1 1 @ 1 0 04056718 -rayless_chamomile n 1 3 @ #m ; 1 0 11995396 -raymond_b._cattell n 1 1 @ 1 0 10891569 -raymond_bernard_cattell n 1 1 @ 1 0 10891569 -raymond_chandler n 1 1 @ 1 0 10890437 -raymond_lully n 1 1 @ 1 0 11145085 -raymond_thornton_chandler n 1 1 @ 1 0 10890437 -raynaud's_sign n 1 1 @ 1 0 14303448 -rayon n 1 2 @ ~ 1 0 04056932 -rayon_stocking n 1 1 @ 1 0 03836976 -rayons n 1 1 @ 1 0 03836976 -razbliuto n 1 2 @ ; 1 0 07482368 -razing n 2 2 @ + 2 0 07335097 00218045 -razmataz n 1 1 @ 1 0 00563330 -razor n 1 4 @ ~ %p + 1 1 04057047 -razor-billed_auk n 1 2 @ #m 1 0 02045864 -razor-fish n 1 3 @ ~ #m 1 0 02609617 -razor_clam n 1 2 @ #m 1 0 01959029 -razor_edge n 1 1 @ 1 0 04057323 -razor_fish n 1 3 @ ~ #m 1 0 02609617 -razorback n 2 4 @ ~ #m + 2 0 02396157 02064338 -razorback_hog n 1 1 @ 1 0 02396157 -razorbacked_hog n 1 1 @ 1 0 02396157 -razorbill n 1 2 @ #m 1 0 02045864 -razorblade n 1 2 @ #p 1 0 04057215 -razz n 1 1 @ 1 0 07123870 -razzing n 1 2 @ + 1 0 07123870 -razzle n 1 1 @ 1 0 00563330 -razzle-dazzle n 1 1 @ 1 0 00563330 -razzmatazz n 1 1 @ 1 0 00563330 -rb n 1 2 @ #s 1 0 14652954 -rbc n 1 3 @ ~ %s 1 0 05454070 -rbi n 1 1 @ 1 1 00190180 -rcmp n 1 2 @ %m 1 0 08210670 -re n 3 2 @ ; 3 0 14652390 09513216 06868445 -re-afforestation n 1 2 @ + 1 0 00400449 -re-creation n 1 2 @ + 1 1 00908772 -re-echo n 1 1 @ 1 0 05011089 -re-establishment n 1 1 @ 1 0 00237705 -re-experiencing n 1 1 @ 1 0 05810768 -re-formation n 1 1 @ 1 0 00269963 -re-introduction n 1 1 @ 1 1 07163110 -re-sentencing n 1 2 @ ; 1 0 01165919 -re-uptake n 1 1 @ 1 0 13551396 -rea_silvia n 1 2 @ ; 1 0 09556121 -reabsorption n 1 2 @ + 1 0 13550504 -reach n 4 3 @ ~ + 4 4 08628921 05125377 00341243 05623628 -reaching n 2 3 @ ~ + 2 0 00341243 00048225 -reacquired_stock n 1 1 @ 1 0 13419951 -reactance n 1 1 @ 1 0 11504313 -reactant n 1 2 @ + 1 1 14694765 -reaction n 7 4 @ ~ + ; 7 3 13447361 05917328 00859001 11498461 11417129 06216634 00202816 -reaction-propulsion_engine n 1 2 @ ~ 1 0 04057435 -reaction_engine n 1 2 @ ~ 1 0 04057435 -reaction_formation n 1 2 @ ; 1 0 13546416 -reaction_propulsion n 1 2 @ ~ 1 0 11498850 -reaction_time n 1 1 @ 1 0 15273241 -reaction_turbine n 1 1 @ 1 0 04057673 -reactionary n 1 3 @ ~ + 1 1 10508475 -reactionism n 1 1 @ 1 0 06220199 -reactive_depression n 1 1 @ 1 0 14390249 -reactive_schizophrenia n 1 1 @ 1 0 14400325 -reactivity n 2 3 @ ~ + 2 2 05653575 14534457 -reactor n 2 4 @ ~ %p ; 2 0 04057846 03834040 -read n 1 2 @ + 1 0 06590065 -read-only_file n 1 2 @ ; 1 0 06510836 -read-only_memory n 1 3 @ ~ ; 1 0 04058239 -read-only_memory_chip n 1 1 @ 1 0 04058486 -read-only_storage n 1 3 @ ~ ; 1 0 04058239 -read-out n 3 1 @ 3 0 07265170 06819698 04058594 -read/write_head n 1 2 @ ; 1 0 04058721 -read/write_memory n 1 3 @ ~ %p 1 0 04052757 -read_method n 1 1 @ 1 0 13546768 -read_method_of_childbirth n 1 1 @ 1 0 13546768 -readability n 2 3 @ + ; 2 0 04819953 04819285 -reader n 8 3 @ ~ + 8 3 10508710 10670483 10508862 10526927 10482768 10252354 10252222 06415061 -readership n 1 2 @ + 1 0 08222571 -readiness n 4 5 @ ~ = + ; 4 3 14031108 04644719 05674584 04708796 -reading n 8 4 @ ~ #p + 8 5 05808794 07173766 05816790 06598030 05928513 08880223 07234881 01004582 -reading_assignment n 1 1 @ 1 0 00730134 -reading_clinic n 1 1 @ 1 0 07146534 -reading_desk n 1 1 @ 1 0 03653583 -reading_lamp n 1 2 @ ~ 1 0 04057981 -reading_material n 1 2 @ ~ 1 0 06598030 -reading_program n 1 1 @ 1 0 06677089 -reading_room n 1 3 @ ~ #p 1 1 04058096 -reading_teacher n 1 1 @ 1 0 10509063 -readjustment n 2 3 @ ~ + 2 1 00194127 00999787 -readmission n 1 2 @ + 1 0 01248418 -readout n 3 1 @ 3 0 07265170 06819698 04058594 -ready n 1 2 @ + 1 1 14031523 -ready-made n 1 2 ! @ 1 0 04058921 -ready-mix n 1 2 @ ~ 1 0 07593774 -ready-to-wear n 1 1 @ 1 0 04059157 -ready_cash n 1 1 @ 1 0 13422684 -ready_money n 1 1 @ 1 0 13422684 -ready_reckoner n 1 1 @ 1 0 06423496 -readying n 1 3 @ ~ + 1 0 01143040 -reaffiliation n 1 1 @ 1 0 01082274 -reaffirmation n 1 2 @ + 1 0 06732581 -reagan n 1 1 @ 1 0 11255460 -reagan_administration n 1 1 @ 1 0 08165979 -reagent n 1 1 @ 1 1 14778982 -reagin n 1 1 @ 1 0 15031418 -real n 3 3 @ ~ %p 3 0 13729902 13667908 13389577 -real-estate_business n 1 1 @ 1 0 01101227 -real-time_operation n 1 1 @ 1 0 13547048 -real-time_processing n 1 1 @ 1 0 13547048 -real_estate n 1 2 @ ~ 1 1 13246475 -real_estate_agent n 1 2 @ ~ 1 0 10509810 -real_estate_broker n 1 2 @ ~ 1 1 10509810 -real_estate_investment_trust n 1 1 @ 1 0 08072287 -real_estate_loan n 1 1 @ 1 0 13400334 -real_gnp n 1 1 @ 1 0 13257354 -real_gross_national_product n 1 1 @ 1 0 13257354 -real_ira n 1 2 @ ; 1 0 08040762 -real_irish_republican_army n 1 2 @ ; 1 0 08040762 -real_life n 1 1 @ 1 1 05810250 -real_matrix n 1 1 @ 1 0 08270067 -real_mccoy n 1 1 @ 1 0 04783445 -real_number n 1 2 @ ~ 1 0 13729902 -real_presence n 1 2 @ ; 1 0 06791195 -real_property n 1 2 @ ~ 1 1 13246475 -real_storage n 1 1 @ 1 0 04059298 -real_stuff n 1 1 @ 1 0 04783445 -real_tennis n 1 1 @ 1 0 00483705 -real_thing n 1 1 @ 1 1 04783445 -real_time n 2 2 @ ; 2 0 15298852 15298695 -real_world n 1 1 @ 1 0 05810250 -realgar n 1 2 @ %s 1 0 14694910 -realisation n 6 3 @ ~ + 6 0 07039056 05807540 01119620 00940043 00931847 00061917 -realism n 5 5 @ ~ = + ; 5 3 05151869 13955461 05975659 08469457 05974564 -realist n 3 3 @ ~ + 3 1 10509161 10509605 10509389 -reality n 4 5 ! @ ~ = + 4 3 05809878 13955461 13956097 04762355 -reality_check n 1 1 @ 1 0 07418963 -reality_principle n 1 3 ! @ ; 1 0 05872098 -realization n 6 3 @ ~ + 6 2 05807540 00931847 07039056 01119620 00940043 00061917 -reallocation n 2 4 @ ~ + ; 2 0 13289630 01084180 -reallotment n 1 4 @ ~ + ; 1 0 01084180 -realm n 3 2 @ ~ 3 1 14514805 08558155 05997814 -realness n 1 4 @ ~ = + 1 0 13955461 -realpolitik n 1 1 @ 1 0 06149038 -realtor n 1 3 @ #m ; 1 0 10510078 -realty n 1 2 @ ~ 1 0 13246475 -ream n 2 2 @ %p 2 0 13777098 13583137 -reamer n 2 2 @ + 2 0 04059516 04059399 -reap_hook n 1 2 @ %p 1 0 04213353 -reaper n 3 3 @ ~ + 3 0 10161363 09488584 03496892 -reaper_binder n 1 1 @ 1 0 02840361 -reaping_hook n 1 2 @ %p 1 0 04213353 -reappearance n 2 3 @ ~ + 2 1 07321967 00050887 -reapportionment n 1 4 @ ~ + ; 1 0 01084180 -reappraisal n 1 3 @ ~ + 1 0 05747582 -rear n 5 6 ! @ ~ #p + ; 5 3 08482700 08629508 08625846 05559256 04059701 -rear_admiral n 1 1 @ 1 0 10510245 -rear_end n 1 2 @ #p 1 1 05559256 -rear_lamp n 1 2 @ #p 1 0 04384910 -rear_light n 1 2 @ #p 1 0 04384910 -rear_of_barrel n 1 3 @ #p %p 1 0 02895881 -rear_of_tube n 1 3 @ #p %p 1 0 02895881 -rear_window n 1 2 @ #p 1 1 04060065 -rearguard n 1 2 @ ; 1 1 08216647 -rearing n 2 2 @ + 2 2 04922113 01129532 -rearmament n 1 2 @ + 1 0 01157384 -rearrangement n 1 3 @ ~ + 1 0 00338821 -rearview_mirror n 1 1 @ 1 0 04059947 -rearward n 1 2 @ + 1 1 08629746 -reason n 6 3 @ ~ + 6 5 09178999 06739990 05651680 14379829 06740402 05819149 -reasonable_care n 1 1 @ 1 0 01131794 -reasonableness n 5 4 @ ~ = + 5 0 14379829 05160574 05146904 05118062 04783888 -reasoner n 1 3 @ ~ + 1 0 10510339 -reasoning n 1 3 @ ~ + 1 1 05772356 -reasoning_backward n 1 1 @ 1 0 05783768 -reasoning_by_elimination n 1 1 @ 1 0 05782245 -reassembly n 1 2 @ ~ 1 0 00269856 -reassertion n 1 2 @ + 1 0 06732581 -reassessment n 1 3 @ ~ + 1 0 05747582 -reassignment n 1 3 @ ~ + 1 0 00732076 -reassurance n 1 3 @ = + 1 1 01215719 -reata n 1 2 @ %p 1 0 03644378 -reaumur n 1 1 @ 1 0 11255619 -reaumur_scale n 1 1 @ 1 0 13853407 -reaumur_thermometer n 1 1 @ 1 0 04060198 -reb n 1 2 @ ; 1 1 10628368 -rebate n 2 3 @ ~ + 2 0 13282275 04036776 -rebato n 1 1 @ 1 0 04036648 -rebecca n 1 2 @ ; 1 0 11255775 -rebecca_rolfe n 1 1 @ 1 0 11240249 -rebecca_west n 1 1 @ 1 0 11382398 -rebekah n 1 2 @ ; 1 0 11255775 -rebel n 3 4 @ ~ + ; 3 3 10628368 10210137 10303654 -rebellion n 2 3 @ ~ + 2 2 01177327 00962129 -rebelliousness n 2 3 @ ~ + 2 0 04907991 01179393 -rebirth n 4 2 @ ~ 4 0 11408914 07321247 01047803 00094788 -rebound n 3 4 @ ~ #p + 3 0 07350192 00859691 00140112 -rebound_tenderness n 1 1 @ 1 0 14332448 -reboxetine n 1 1 @ 1 0 04060316 -rebozo n 1 1 @ 1 0 04060448 -rebroadcast n 1 1 @ 1 0 06619751 -rebuff n 2 3 @ ~ + 2 1 01225783 07208000 -rebuilding n 1 2 @ + 1 1 00270186 -rebuke n 1 3 @ ~ + 1 0 06711855 -rebuker n 1 2 @ + 1 0 10740017 -reburial n 1 2 @ + 1 0 01050763 -reburying n 1 1 @ 1 0 01050763 -rebus n 1 1 @ 1 0 06786486 -rebuttal n 2 3 @ + ; 2 0 07201220 06562993 -rebutter n 2 3 @ + ; 2 0 10510546 06562993 -rec_room n 1 2 @ ~ 1 0 04065464 -recalcitrance n 1 2 @ + 1 0 04907575 -recalcitrancy n 1 2 @ + 1 0 04907575 -recalculation n 1 2 @ + 1 0 00870101 -recall n 5 4 @ ~ + ; 5 0 07280072 07190840 06804388 05761559 01258719 -recall_dose n 1 1 @ 1 0 02872172 -recantation n 1 3 @ ~ + 1 0 07206096 -recap n 2 3 @ ~ + 2 0 06469377 04083942 -recapitulation n 4 4 @ ~ + ; 4 0 13531652 07039238 06469377 00940217 -recapture n 2 2 @ + 2 0 00097122 00096969 -recasting n 1 2 @ ~ 1 0 06429145 -recce n 1 1 @ 1 0 00985008 -recco n 1 1 @ 1 0 00985008 -reccy n 1 1 @ 1 0 00985008 -receding n 2 2 @ + 2 0 07336214 00057486 -receipt n 2 3 @ ~ + 2 2 00090253 06520222 -receipts n 1 2 @ ~ 1 1 13256691 -receivables n 1 2 @ ; 1 0 13330283 -received_pronunciation n 1 1 @ 1 0 06948396 -receiver n 6 6 @ ~ #p %p + ; 6 4 04060647 10265532 04402580 09627906 10510974 10510818 -receiver-creditor_relation n 1 2 @ ; 1 0 13840039 -receivership n 3 3 @ + ; 3 0 14479320 01186578 00598767 -receiving_set n 1 4 @ ~ #p %p 1 0 04043733 -receiving_system n 1 3 @ ~ %p 1 1 04060647 -recency n 2 2 @ + 2 0 05049808 04927268 -recent n 1 2 @ #p 1 0 15124713 -recent_epoch n 1 2 @ #p 1 0 15124713 -recentness n 2 2 @ + 2 0 05049808 04927268 -receptacle n 3 3 @ ~ #p 3 1 04060904 13130161 04061442 -reception n 5 5 @ ~ %p + ; 5 4 06630852 08254331 06281040 00090253 00139919 -reception_desk n 1 1 @ 1 0 04061681 -reception_line n 1 2 @ #p 1 0 08433077 -reception_room n 1 2 @ ~ 1 1 04061793 -receptionist n 1 2 @ + 1 1 10511069 -receptive_aphasia n 1 1 @ 1 0 14099172 -receptiveness n 1 2 @ + 1 0 04645020 -receptivity n 1 2 @ + 1 0 04645020 -receptor n 2 6 ! @ ~ #p %p + 2 0 05608868 05299178 -recess n 5 4 @ ~ #p + 5 0 14013646 13872421 09313716 04061969 01062997 -recession n 5 3 @ ~ + 5 1 14013368 13872421 08429556 01249991 00057486 -recessional n 2 2 @ + 2 0 08429556 07037232 -recessional_march n 1 2 @ ~ 1 0 07058871 -recessive n 1 1 @ 1 0 05438315 -recessive_allele n 1 1 @ 1 0 05438315 -recessive_gene n 1 1 @ 1 0 05440875 -rechauffe n 1 1 @ 1 0 07572134 -rechewed_food n 1 1 @ 1 0 07805478 -recidivism n 1 2 @ + 1 0 00068617 -recidivist n 2 2 @ + 2 0 10511425 10511239 -recife n 1 2 @ #p 1 0 08856475 -recipe n 1 1 @ 1 0 06788785 -recipient n 2 3 @ ~ + 2 1 09627906 06333095 -recipient_role n 1 1 @ 1 0 06333095 -reciprocal n 3 2 @ ; 3 0 13843601 13843173 00851146 -reciprocal-inhibition_therapy n 1 1 @ 1 0 00702659 -reciprocal_cross n 1 1 @ 1 0 00851146 -reciprocal_inhibition n 1 1 @ 1 0 00702659 -reciprocal_ohm n 1 1 @ 1 0 13637240 -reciprocal_pronoun n 1 1 @ 1 0 06327261 -reciprocality n 1 3 @ ~ + 1 0 13841213 -reciprocating_engine n 1 2 @ %p 1 0 04062179 -reciprocating_saw n 1 1 @ 1 0 04121728 -reciprocation n 3 3 @ ~ + 3 0 01236049 00341435 00040152 -reciprocity n 2 3 @ ~ + 2 0 13841213 00040420 -recirculation n 1 1 @ 1 0 00368515 -recission n 1 3 @ + ; 1 0 00232863 -recital n 5 4 @ ~ %p + 5 2 07220773 06893441 07234881 07234735 07221756 -recitalist n 1 2 @ + 1 0 10511649 -recitation n 4 4 @ ~ #p + 4 0 07235218 07234881 01232246 00894552 -recitative n 1 2 @ ~ 1 0 07087346 -reciter n 1 1 @ 1 0 10511771 -recklessness n 1 3 @ ~ + 1 1 04661926 -reckoner n 2 3 @ ~ + 2 0 09887034 06423496 -reckoning n 3 3 @ ~ + 3 1 05802185 06517779 00634586 -reclamation n 3 3 @ ~ + 3 0 00269018 00095971 00093354 -reclassification n 1 1 @ 1 1 01013316 -recliner n 1 2 @ + 1 0 04062428 -reclining n 1 2 @ + 1 1 00341548 -reclining_chair n 1 1 @ 1 0 04062428 -recluse n 1 3 @ ~ + 1 1 10172448 -reclusiveness n 1 3 @ ~ + 1 0 04622772 -recoding n 1 2 @ + 1 0 00616951 -recognisance n 1 3 @ ~ ; 1 0 13350443 -recognition n 8 5 @ ~ = + ; 8 4 14411981 05762998 06688274 05807540 11502695 07149107 06194216 00165563 -recognizance n 1 3 @ ~ ; 1 0 13350443 -recoil n 2 3 @ ~ + 2 0 07350754 07350192 -recollection n 3 3 @ ~ + 3 2 05761918 05761559 05935292 -recombinant n 1 1 @ 1 0 01313888 -recombinant_deoxyribonucleic_acid n 1 1 @ 1 0 14831479 -recombinant_dna n 1 1 @ 1 0 14831479 -recombinant_dna_technology n 1 1 @ 1 0 06127209 -recombinant_human_insulin n 1 1 @ 1 0 05411049 -recombinant_protein n 1 1 @ 1 0 14729633 -recombination n 2 3 @ + ; 2 0 07374357 07374152 -recommencement n 1 2 @ + 1 0 00242003 -recommendation n 3 3 @ ~ + 3 2 06671637 06694540 04673668 -recompense n 2 3 @ ~ + 2 0 13282007 00259643 -reconciler n 1 3 @ ~ + 1 0 09952163 -reconciliation n 2 2 @ + 2 0 01205827 00185104 -reconditeness n 2 2 @ + 2 0 05926358 04823416 -reconnaissance n 1 3 @ ~ + 1 0 00984609 -reconnaissance_by_fire n 1 1 @ 1 0 00985516 -reconnaissance_in_force n 1 1 @ 1 0 00985746 -reconnaissance_mission n 1 2 @ ~ 1 0 00984609 -reconnaissance_plane n 1 2 @ ; 1 0 04062644 -reconnaissance_vehicle n 1 2 @ ; 1 0 04062807 -reconnoitering n 1 2 @ + 1 0 00985106 -reconnoitring n 1 2 @ + 1 0 00985106 -reconsideration n 2 2 @ + 2 1 07139532 05790012 -reconstruction n 4 3 @ ~ + 4 2 15261658 00269258 07174138 05762258 -reconstruction_period n 1 1 @ 1 0 15261658 -reconstructive_memory n 1 1 @ 1 0 05762258 -reconstructive_surgery n 1 2 @ ~ 1 0 00690501 -record n 8 5 @ ~ %p + ; 8 7 06647206 03924069 13596986 00047745 06636524 00063014 13403643 06490173 -record-breaker n 1 1 @ 1 0 10511856 -record-holder n 1 1 @ 1 0 10511856 -record-keeper n 1 2 @ ~ 1 0 10516874 -record_album n 2 2 @ ~ 2 0 06591815 03923801 -record_book n 1 2 @ ~ 1 0 06636524 -record_changer n 1 2 @ #p 1 0 04063154 -record_company n 1 1 @ 1 0 08478261 -record_cover n 1 1 @ 1 0 04064747 -record_hop n 1 1 @ 1 0 07449548 -record_jacket n 1 1 @ 1 0 04064307 -record_player n 1 4 @ ~ #p %p 1 1 04064401 -record_sleeve n 1 1 @ 1 0 04064747 -recorder n 4 5 @ ~ %p + ; 4 1 04063373 10516874 10511960 03343354 -recorder_player n 1 1 @ 1 0 10512109 -recording n 3 4 @ ~ + - 3 2 04063661 00910203 04063868 -recording_equipment n 1 3 @ ~ %p 1 0 04063373 -recording_label n 1 1 @ 1 0 06851516 -recording_machine n 1 3 @ ~ %p 1 0 04063373 -recording_studio n 1 1 @ 1 1 04064107 -recording_system n 1 1 @ 1 0 04064213 -recount n 1 2 @ + 1 0 00653958 -recounting n 1 2 @ + 1 0 07222823 -recourse n 2 2 @ ~ 2 1 01208597 05155123 -recoverer n 1 3 @ ~ + 1 0 10522759 -recovery n 3 3 @ ~ + 3 3 07419792 13452347 00045907 -recovery_room n 1 1 @ 1 0 04064862 -recreant n 2 2 @ + 2 0 10452024 10007109 -recreation n 2 3 @ ~ + 2 1 00426928 00401783 -recreation_facility n 1 2 @ ~ 1 0 04065132 -recreation_room n 1 2 @ ~ 1 0 04065464 -recreational_drug n 1 1 @ 1 0 04064988 -recreational_facility n 1 2 @ ~ 1 1 04065132 -recreational_vehicle n 1 2 @ ~ 1 0 04065272 -recrimination n 1 1 @ 1 1 07234657 -recrudescence n 1 2 @ + 1 0 07435891 -recruit n 2 3 @ ~ + 2 2 10512372 10512201 -recruiter n 2 3 @ ~ + 2 0 10512708 10512562 -recruiting-sergeant n 1 1 @ 1 0 10512859 -recruitment n 1 2 @ + 1 1 01263711 -rectal_artery n 1 2 @ #p 1 0 05354238 -rectal_reflex n 1 1 @ 1 0 00811221 -rectal_vein n 1 1 @ 1 0 05369092 -rectangle n 1 3 @ ~ + 1 1 13883346 -rectangularity n 1 3 @ ~ + 1 0 05071869 -rectification n 4 4 @ ~ + ; 4 0 13547199 07416308 00258854 00156119 -rectifier n 2 3 @ ~ + 2 1 04065632 10512982 -rectifying_tube n 1 1 @ 1 0 03202940 -rectifying_valve n 1 1 @ 1 0 03202940 -rectilinear_regression n 1 3 @ %p ; 1 0 06028904 -rectitude n 1 1 @ 1 1 04826623 -recto n 1 2 ! @ 1 0 06257484 -rectocele n 1 1 @ 1 0 14297150 -rectoplasty n 1 1 @ 1 0 00690933 -rector n 1 2 @ ~ 1 0 09983572 -rectorate n 1 1 @ 1 0 00598868 -rectorship n 1 1 @ 1 0 00598868 -rectory n 1 2 @ ~ 1 0 03892557 -rectum n 1 4 @ #p %p + 1 0 05537806 -rectus n 1 1 @ 1 0 05316590 -rectus_inferior n 1 1 @ 1 0 05316674 -rectus_lateralis n 1 1 @ 1 0 05316407 -rectus_medialis n 1 1 @ 1 0 05316850 -rectus_superior n 1 1 @ 1 0 05317013 -recuperation n 1 3 @ ~ + 1 1 13452347 -recurrence n 1 3 @ ~ + 1 1 07343363 -recurrent_event n 1 2 @ ~ 1 0 07296190 -recurrent_fever n 1 1 @ 1 0 14142459 -recurring_decimal n 1 1 @ 1 0 13736376 -recursion n 1 2 @ ; 1 0 05848357 -recursive_definition n 1 2 @ ; 1 0 06745422 -recursive_routine n 1 1 @ 1 0 06584162 -recurvirostra n 1 3 @ #m %m 1 0 02036548 -recurvirostridae n 1 3 @ #m %m 1 0 02036399 -recusal n 1 3 @ + ; 1 0 01080062 -recusancy n 1 2 @ + 1 0 01243453 -recusant n 1 3 @ ~ + 1 0 09957834 -recusation n 2 3 @ + ; 2 0 01080062 01026020 -recycling n 1 3 @ ~ + 1 0 00948868 -recycling_bin n 1 2 @ ~ 1 0 04065789 -recycling_plant n 1 1 @ 1 0 04065909 -red n 4 4 @ ~ #p + 4 3 04962784 09405949 09863749 13327231 -red-backed_lemming n 1 2 @ #m 1 0 02345340 -red-backed_mouse n 1 2 @ #m 1 0 02342250 -red-backed_sandpiper n 1 2 @ #m 1 0 02027492 -red-bellied_snake n 1 2 @ #m 1 1 01738306 -red-bellied_terrapin n 1 2 @ #m 1 0 01668436 -red-bellied_turtle n 1 2 @ #m 1 0 01668436 -red-berried_elder n 2 1 @ 2 0 12679593 12679432 -red-berry n 2 1 @ 2 0 13142504 11724109 -red-blindness n 1 2 @ + 1 0 14154421 -red-breasted_merganser n 1 2 @ #m 1 0 01855032 -red-breasted_nuthatch n 1 2 @ #m 1 0 01591123 -red-breasted_sapsucker n 1 1 @ 1 0 01841441 -red-breasted_snipe n 1 1 @ 1 0 02033324 -red-eyed_vireo n 1 1 @ 1 0 01602832 -red-flowered_silky_oak n 1 1 @ 1 0 12217851 -red-green_color_blindness n 1 2 @ ~ 1 0 14153982 -red-green_colour_blindness n 1 2 @ ~ 1 0 14153982 -red-green_dichromacy n 1 2 @ ~ 1 0 14153982 -red-header n 1 1 @ 1 0 10513823 -red-hot_poker n 1 1 @ 1 0 12437930 -red-lead_putty n 1 1 @ 1 0 14704152 -red-legged_partridge n 1 2 @ #m 1 0 01808140 -red-letter_day n 1 1 @ 1 0 15171145 -red-light_district n 1 1 @ 1 0 08554346 -red-necked_grebe n 1 1 @ 1 0 02050442 -red-shafted_flicker n 1 1 @ 1 0 01840120 -red-shouldered_hawk n 1 2 @ #m 1 0 01607812 -red-skinned_onion n 1 1 @ 1 0 12434106 -red-spotted_purple n 1 2 @ #m 1 0 02277094 -red-tailed_hawk n 1 2 @ #m 1 1 01607429 -red-veined_pie_plant n 1 2 @ #m 1 0 12603273 -red-winged_blackbird n 1 2 @ #m 1 0 01575401 -red_admiral n 1 2 @ #m 1 0 02276355 -red_alder n 1 2 @ #m 1 0 12285512 -red_alert n 1 1 @ 1 0 14032100 -red_algae n 1 4 @ ~ #m %p 1 0 01413942 -red_amaranth n 1 1 @ 1 0 11823756 -red_angel's_trumpet n 1 1 @ 1 0 12899971 -red_army_faction n 1 2 @ ; 1 0 08041106 -red_ash n 1 2 @ ~ 1 0 12305475 -red_baneberry n 1 1 @ 1 0 11724109 -red_bat n 1 2 @ #m 1 0 02146201 -red_bay n 1 2 @ #m 1 0 11706942 -red_bearberry n 1 1 @ 1 0 12231358 -red_beech n 2 2 @ #m 2 0 12261808 12199790 -red_birch n 1 2 @ #m 1 0 12282933 -red_bird's_eye n 1 2 @ #m 1 0 11816121 -red_blood_cell n 1 3 @ ~ %s 1 1 05454070 -red_bone_marrow n 1 1 @ 1 0 05285835 -red_bordeaux n 1 2 @ ~ 1 0 07895435 -red_brass n 1 1 @ 1 0 15003139 -red_brigades n 1 2 @ ; 1 0 08041484 -red_bryony n 1 1 @ 1 0 12163456 -red_buckeye n 1 1 @ 1 0 12769219 -red_cabbage n 2 1 @ 2 0 11876316 07714802 -red_campion n 1 2 @ #m 1 0 11816121 -red_carpet n 1 1 @ 1 0 04066270 -red_cedar n 4 3 @ ~ #m 4 0 11644046 11637247 11634736 11623556 -red_cent n 1 1 @ 1 0 05140793 -red_china n 1 5 @ #p %m %p - 1 1 08723006 -red_clay n 1 1 @ 1 1 14695069 -red_clintonia n 1 2 @ #m 1 0 12472326 -red_cloud n 1 1 @ 1 0 11255917 -red_clover n 1 1 @ 1 0 11753355 -red_cole n 1 3 @ #m %p 1 0 11872973 -red_coral n 2 1 @ 2 0 14823036 01916588 -red_cross n 1 1 @ 1 0 08047747 -red_currant n 2 4 @ #m #p %p 2 0 12805373 07744682 -red_cypress_pine n 1 1 @ 1 0 11633999 -red_dagga n 1 2 @ #m 1 0 12850906 -red_deer n 1 3 @ ~ #m 1 0 02431122 -red_delicious n 1 1 @ 1 0 07740461 -red_devil n 1 1 @ 1 0 04163740 -red_dogwood n 2 1 @ 2 0 12948053 12947544 -red_drum n 1 2 @ #m 1 0 02595702 -red_dwarf n 1 2 @ ~ 1 0 09406198 -red_dwarf_star n 1 2 @ ~ 1 0 09406198 -red_eft n 1 1 @ 1 0 01630901 -red_elm n 2 2 @ #m 2 0 12408717 12408280 -red_false_mallow n 1 1 @ 1 0 12187891 -red_fire n 1 1 @ 1 0 14695184 -red_flag n 3 1 @ 3 0 07265619 06882244 00425615 -red_fox n 3 3 @ ~ #m 3 0 11825211 02119477 02119022 -red_giant n 1 1 @ 1 0 09406368 -red_giant_star n 1 1 @ 1 0 09406368 -red_ginger n 1 2 @ #m 1 0 12357343 -red_goatfish n 1 2 @ #m 1 0 02600503 -red_goosefoot n 2 1 @ 2 0 11830252 11829922 -red_gram n 1 3 @ #m %p 1 0 12510774 -red_grouse n 1 2 @ ~ 1 0 01796519 -red_guard n 1 2 @ ; 1 0 08321469 -red_gum n 5 4 @ #m #s %s 5 0 12339090 12336224 12336092 12316982 12316572 -red_hand_defenders n 1 2 @ ; 1 0 08041840 -red_haw n 2 2 @ #m 2 0 12628705 12628356 -red_heat n 1 1 @ 1 0 05016553 -red_helleborine n 1 2 @ #m 1 0 12051103 -red_herring n 3 1 @ 3 1 00350878 07798233 07165778 -red_hot n 1 3 @ ~ %p 1 0 07697537 -red_indian n 1 4 @ ~ #m ; 1 0 09645091 -red_ink n 1 2 @ ~ 1 0 13327231 -red_jungle_fowl n 1 1 @ 1 0 01791463 -red_juniper n 1 1 @ 1 0 11637247 -red_kauri n 1 2 @ #m 1 0 11648268 -red_lauan n 2 4 @ #m #s %s 2 0 12377658 12377494 -red_lauan_tree n 1 3 @ #m %s 1 0 12377494 -red_laver n 1 2 @ #m 1 0 01415524 -red_lead n 1 1 @ 1 0 15003329 -red_light n 2 2 @ ~ 2 0 06874571 06874497 -red_line n 1 1 @ 1 0 08629922 -red_maids n 1 2 @ #m 1 0 11858814 -red_man n 1 2 @ ; 1 0 09667205 -red_maple n 1 1 @ 1 0 12753573 -red_marrow n 1 1 @ 1 0 05285835 -red_meat n 1 1 @ 1 0 07651325 -red_morning-glory n 1 1 @ 1 0 12828220 -red_mulberry n 1 1 @ 1 0 12399656 -red_mullet n 1 3 @ ~ #m 1 0 02600298 -red_notice n 1 1 @ 1 0 07276732 -red_oak n 1 2 @ ~ 1 0 12271643 -red_onion n 1 1 @ 1 0 07722888 -red_osier n 2 2 @ #m 2 0 12947544 12729729 -red_osier_dogwood n 1 1 @ 1 0 12947544 -red_panda n 1 2 @ #m 1 0 02509815 -red_pepper n 2 3 @ #s #p 2 0 07822518 07722052 -red_periwinkle n 1 2 @ #m 1 0 11772408 -red_phalarope n 1 2 @ #m 1 0 02037869 -red_pimpernel n 1 1 @ 1 0 12092417 -red_pine n 2 2 @ #m 2 0 11654293 11616486 -red_planet n 1 2 @ #m 1 0 09347445 -red_poll n 1 1 @ 1 0 02405692 -red_porgy n 1 2 @ #m 1 0 02591330 -red_raspberry n 1 2 @ ~ 1 0 12656229 -red_rat_snake n 1 2 @ #m 1 0 01732614 -red_region n 1 1 @ 1 0 05630409 -red_river n 1 2 @ #p 1 1 09405949 -red_rockfish n 2 3 @ #p %p 2 0 07797518 02644665 -red_salmon n 2 4 @ #m #p %p 2 0 07796165 02536165 -red_sandalwood n 3 4 @ #m #s %s 3 0 12566627 12566331 11758799 -red_sanders n 1 3 @ #m %s 1 0 12566331 -red_sanderswood n 1 3 @ #m %s 1 0 12566331 -red_saunders n 1 3 @ #m %s 1 0 12566331 -red_scare n 1 1 @ 1 1 14406209 -red_sea n 1 3 @ #p %p 1 0 09406551 -red_setter n 1 1 @ 1 0 02100877 -red_shift n 1 2 @ ; 1 0 11513357 -red_shrubby_penstemon n 1 2 @ #m 1 0 12885510 -red_silk-cotton_tree n 1 2 @ #m 1 0 12189429 -red_silk_cotton n 1 1 @ 1 0 14925945 -red_silver_fir n 1 1 @ 1 0 11621281 -red_siskin n 1 2 @ #m 1 0 01531639 -red_snapper n 2 4 @ #m #p %p 2 0 07797357 02587051 -red_sorrel n 1 1 @ 1 0 12179632 -red_spider n 1 2 @ #m 1 0 01782516 -red_spider_mite n 1 2 @ #m 1 0 01782516 -red_sprites n 1 1 @ 1 0 11475992 -red_spruce n 1 1 @ 1 0 11626826 -red_squirrel n 2 2 @ #m 2 0 02357401 02357111 -red_sun n 1 2 @ ; 1 0 08040008 -red_tai n 1 1 @ 1 0 06934933 -red_tape n 1 1 @ 1 0 01025563 -red_tide n 1 1 @ 1 0 15003496 -red_trillium n 2 1 @ 2 0 12469157 12468900 -red_underwing n 1 1 @ 1 0 02296021 -red_valerian n 1 2 @ #m 1 0 12951146 -red_water n 1 1 @ 1 0 14271920 -red_willow n 1 2 @ #m 1 0 12729729 -red_wine n 1 3 @ ~ #s 1 0 07892512 -red_wolf n 1 1 @ 1 0 02114712 -red_worm n 1 2 @ #m 1 0 01935395 -redact n 1 3 @ ~ + 1 0 10513120 -redaction n 2 4 @ ~ + ; 2 0 06427831 00931608 -redactor n 1 3 @ ~ + 1 0 10513120 -redback_vole n 1 2 @ #m 1 0 02342250 -redbelly n 1 2 @ #m 1 0 01668436 -redberry n 2 1 @ 2 0 13142504 11724109 -redbird n 2 2 @ #m 2 0 01597737 01541386 -redbird_cactus n 1 1 @ 1 0 12928491 -redbird_flower n 1 1 @ 1 0 12928491 -redbone n 1 1 @ 1 0 02090379 -redbreast n 1 2 @ #m 1 0 01562265 -redbrick_university n 1 2 @ ; 1 0 04066023 -redbrush n 1 1 @ 1 0 12947544 -redbud n 1 1 @ 1 0 12513933 -redbug n 1 2 @ #m 1 0 01781071 -redcap n 2 2 @ ; 2 0 10513509 10513386 -redcoat n 1 1 @ 1 1 10029985 -redding n 1 2 @ #p 1 0 09064729 -reddish_blue n 1 2 @ ~ 1 0 04970758 -reddish_brown n 1 2 @ ~ 1 0 04973386 -reddish_orange n 1 2 @ ~ 1 0 04965451 -reddish_purple n 1 2 @ ~ 1 0 04970631 -reddle n 1 1 @ 1 0 15008287 -rededication n 1 2 @ + 1 0 07452559 -redeemer n 2 3 @ ~ + 2 0 11083656 10513623 -redefinition n 1 2 @ + 1 1 06745628 -redemption n 3 4 @ ~ + ; 3 1 00094001 13299804 00079212 -redeployment n 1 2 @ + 1 0 01143760 -redeposition n 1 2 @ + 1 1 13547380 -redetermination n 1 2 @ + 1 0 00156293 -redevelopment n 1 3 @ ~ + 1 1 00265119 -redevelopment_authority n 1 1 @ 1 0 08353244 -redeye n 1 1 @ 1 0 00302185 -redeye_flight n 1 1 @ 1 0 00302185 -redfin_pickerel n 1 1 @ 1 0 02561937 -redfish n 3 2 @ #m 3 0 07792117 02595702 02535258 -redford n 1 1 @ 1 0 11256125 -redhead n 3 2 @ #m 3 0 10513823 01851207 01840775 -redheaded_woodpecker n 1 2 @ #m 1 0 01840775 -redheader n 1 1 @ 1 1 10513823 -redhorse n 1 2 @ #m 1 0 01446152 -redhorse_sucker n 1 2 @ #m 1 0 01446152 -rediffusion n 1 2 @ ; 1 0 06276902 -redirect_examination n 1 2 @ ; 1 0 07195404 -rediscovery n 1 2 @ + 1 1 00151914 -redisposition n 1 2 @ + 1 0 01143760 -redistribution n 1 2 @ + 1 0 01083350 -redmaids n 1 2 @ #m 1 0 11858814 -redneck n 1 1 @ 1 0 10513938 -redness n 2 4 @ ~ #p + 2 0 14336539 04962784 -redolence n 1 2 @ + 1 0 04980463 -redonda n 1 2 @ #p 1 0 08710219 -redoubt n 2 2 @ ; 2 0 04066476 04066388 -redox n 1 1 @ 1 0 13530799 -redpoll n 2 2 @ #m 2 0 01531971 01531811 -redraft n 1 1 @ 1 0 13378031 -redress n 2 3 @ ~ + 2 1 13290676 00259177 -redroot n 1 2 @ #m 1 0 11908077 -redshank n 1 2 @ #m 1 0 02028035 -redshift n 1 2 @ ; 1 0 11513357 -redskin n 1 2 @ ; 1 0 09667205 -redstart n 2 2 @ #m 2 0 01568294 01561452 -redstem_storksbill n 1 1 @ 1 0 12688903 -redtail n 2 2 @ #m 2 0 01607429 01561452 -reduced_instruction_set_computer n 1 3 ! @ ; 1 0 04932875 -reduced_instruction_set_computing n 1 3 ! @ ; 1 0 04932875 -reducer n 2 3 @ ~ + 2 0 14780267 04066659 -reducing n 2 2 @ + 2 1 13547677 13547513 -reducing_agent n 1 2 @ ~ 1 0 14780267 -reducing_diet n 1 2 @ ~ 1 0 07564629 -reductant n 1 3 @ ~ + 1 0 14780267 -reductase n 1 2 @ ~ 1 0 15003645 -reductio n 1 1 @ 1 0 05824985 -reductio_ad_absurdum n 1 1 @ 1 0 05824985 -reduction n 3 3 @ ~ + 3 3 00351638 13547677 00192300 -reduction_division n 1 4 @ ~ %p ; 1 0 13512725 -reduction_gear n 1 1 @ 1 0 04066767 -reductionism n 2 1 @ 2 0 05782563 05782448 -reductivism n 1 1 @ 1 0 08469233 -redundance n 1 3 @ ~ + 1 0 05120310 -redundancy n 4 4 @ ~ + ; 4 2 07090938 05120310 05730163 01019248 -redundancy_check n 1 1 @ 1 0 05825942 -reduplication n 4 1 @ 4 0 07099598 06305610 06303150 01019372 -reduviid n 1 3 @ ~ #m 1 0 02244173 -reduviidae n 1 3 @ #m %m 1 0 02244007 -redwing n 2 2 @ #m 2 0 01575401 01558461 -redwood n 2 5 @ ~ #m #s %s 2 0 11640898 11640645 -redwood_family n 1 2 @ #m 1 0 11639609 -redwood_national_park n 1 2 @ #p 1 0 08608641 -redwood_penstemon n 1 2 @ #m 1 0 12885510 -reed n 5 3 @ ~ + 5 0 12136720 11256494 11256335 04066888 02817799 -reed_bunting n 1 2 @ #m 1 0 01538059 -reed_canary_grass n 1 2 @ #m 1 0 12129738 -reed_grass n 1 3 @ ~ #m 1 0 12112918 -reed_instrument n 1 2 @ ~ 1 0 02817799 -reed_mace n 1 1 @ 1 0 12155773 -reed_meadow_grass n 1 1 @ 1 0 12122442 -reed_organ n 1 1 @ 1 0 03494537 -reed_pipe n 1 1 @ 1 0 04067143 -reed_rhapis n 1 1 @ 1 0 12596345 -reed_section n 1 2 @ ~ 1 0 08217865 -reed_stop n 1 2 @ ~ 1 0 04067231 -reedbird n 2 2 @ #m 2 0 01573898 01565599 -reedmace n 1 1 @ 1 0 12155773 -reef n 3 4 @ ~ #p + 3 1 09406793 09001881 03458961 -reef_knot n 1 2 @ ~ 1 0 04067353 -reef_squirrelfish n 1 2 @ #m 1 0 01450950 -reef_whitetip_shark n 1 2 @ #m 1 0 01493146 -reefer n 1 2 @ %s 1 0 03600806 -reek n 1 3 @ ~ + 1 0 05714894 -reel n 6 5 @ ~ #m #p + 6 1 04067658 07056680 04067472 02860415 00540211 00539674 -reelection n 1 2 @ + 1 1 00181373 -reeler n 2 2 @ + 2 0 10645854 10514051 -reenactment n 1 2 @ + 1 0 00551913 -reenactor n 1 2 @ + 1 0 10514121 -reenforcement n 2 4 @ ~ + ; 2 1 06650238 00971463 -reenlistment n 1 1 @ 1 0 01207108 -reentering_angle n 1 1 @ 1 0 13890064 -reentering_polygon n 1 1 @ 1 0 13867005 -reentrant_angle n 1 2 ! @ 1 0 13890064 -reentrant_polygon n 1 1 @ 1 0 13867005 -reentry n 1 2 @ + 1 0 00328230 -reevaluation n 1 2 @ + 1 1 05737025 -reeve n 1 1 @ 1 0 02030224 -reexamination n 2 3 @ + ; 2 0 07195404 00143251 -ref n 1 2 @ ; 1 0 10514429 -refabrication n 1 2 @ ~ 1 0 00269856 -refection n 1 1 @ 1 0 07574426 -refectory n 1 1 @ 1 1 04067818 -refectory_table n 1 1 @ 1 0 04067921 -referee n 3 4 @ ~ + ; 3 1 10514429 10526927 10514643 -refereeing n 1 2 @ + 1 0 01191755 -reference n 10 4 @ ~ + ; 10 7 06766190 06763681 07258332 06417598 06694796 05922949 01264050 07258664 06356515 05923314 -reference_book n 1 2 @ ~ 1 0 06417598 -reference_frame n 1 3 @ ~ %p 1 0 05728024 -reference_grid n 1 1 @ 1 0 03459159 -reference_manual n 1 1 @ 1 0 06422364 -reference_point n 1 2 @ ~ 1 0 07258332 -reference_system n 1 3 @ ~ %p 1 0 05728024 -reference_work n 1 2 @ ~ 1 0 06417598 -referendum n 1 1 @ 1 1 00181640 -referent n 3 2 @ ~ 3 0 06603494 06603242 06603130 -referral n 3 3 @ ~ + 3 0 10514255 06672040 00121904 -referred_pain n 1 1 @ 1 0 14331373 -refill n 2 1 @ 2 0 04068261 04068055 -refilling n 1 2 @ + 1 0 13547925 -refined_sugar n 1 2 @ ~ 1 0 07859284 -refinement n 5 3 @ ~ + 5 2 14459824 07357679 13548105 06606191 04811995 -refiner n 1 2 @ + 1 0 10514784 -refinery n 1 3 @ ~ + 1 0 04068441 -refining n 1 3 @ ~ + 1 0 13548105 -refining_industry n 1 2 @ %m 1 0 08069050 -refinisher n 1 2 @ + 1 0 10514962 -refit n 1 1 @ 1 0 01157275 -reflation n 1 2 @ + 1 0 13548350 -reflectance n 1 1 @ 1 1 13588819 -reflecting_telescope n 1 3 @ ~ %p 1 0 04068601 -reflection n 8 3 @ ~ ; 8 5 05785508 11503060 06880249 04747115 04068976 13785404 06767035 05010627 -reflection_factor n 1 1 @ 1 0 13588819 -reflective_power n 1 1 @ 1 0 13820432 -reflectiveness n 1 1 @ 1 0 04661546 -reflectivity n 3 3 @ ~ + 3 0 13588819 05010627 04661546 -reflectometer n 1 1 @ 1 0 04069166 -reflector n 2 4 @ ~ %p + 2 2 04069276 04068601 -reflex n 1 3 @ ~ + 1 1 00863513 -reflex_action n 1 2 @ ~ 1 0 00863513 -reflex_angle n 1 1 @ 1 0 13892562 -reflex_arc n 1 1 @ 1 0 05463449 -reflex_camera n 1 1 @ 1 0 04069434 -reflex_epilepsy n 1 2 @ ~ 1 0 14090245 -reflex_response n 1 2 @ ~ 1 0 00863513 -reflexion n 7 2 @ ~ 7 0 11503060 06880249 06767035 05785508 05010627 04747115 04068976 -reflexive n 1 2 @ + 1 0 06328207 -reflexive_pronoun n 1 1 @ 1 0 06328207 -reflexive_verb n 1 1 @ 1 0 06328386 -reflexiveness n 2 3 @ + ; 2 0 13799245 13798814 -reflexivity n 2 3 @ + ; 2 0 13799245 13798814 -reflexology n 2 1 @ 2 0 06141197 00659946 -reflux n 2 3 @ ~ #p 2 0 14336004 07402147 -reflux_condenser n 1 1 @ 1 0 04069582 -refocusing n 1 2 @ + 1 1 00375938 -reforestation n 1 2 @ + 1 0 00400449 -reform n 3 3 @ ~ + 3 2 00260622 00800940 00261405 -reform_jew n 1 2 @ #m 1 0 10515863 -reform_judaism n 2 2 @ %m 2 0 08095426 06234728 -reform_movement n 1 2 @ ~ 1 1 08473623 -reform_school n 1 2 @ ~ 1 0 04069777 -reformation n 3 3 @ ~ + 3 0 14424087 08475929 00095971 -reformatory n 1 3 @ ~ + 1 0 04069777 -reformer n 2 4 @ ~ #p + 2 0 10515194 04070003 -reformism n 1 2 @ + 1 0 05967097 -reformist n 1 3 @ ~ + 1 0 10515194 -refracting_telescope n 1 2 @ ~ 1 0 04070207 -refraction n 2 3 @ ~ + 2 0 11503287 07410883 -refractive_index n 1 1 @ 1 0 13824929 -refractiveness n 1 2 @ + 1 0 05011568 -refractivity n 1 2 @ + 1 0 05011568 -refractometer n 1 1 @ 1 0 04070415 -refractoriness n 1 2 @ + 1 0 04907575 -refractory n 1 2 @ %s 1 0 03404900 -refractory_anaemia n 1 2 @ ~ 1 0 14168176 -refractory_anemia n 1 2 @ ~ 1 0 14168176 -refractory_period n 1 2 @ ; 1 0 15227391 -refractory_pot n 1 1 @ 1 0 02868975 -refrain n 1 3 @ ~ #p 1 1 07050177 -refresher n 3 3 @ + ; 3 0 13322343 07914128 00891850 -refresher_course n 1 1 @ 1 0 00891850 -refreshment n 2 2 @ + 2 0 07574504 00401783 -refried_beans n 1 2 @ ; 1 0 07881625 -refrigerant n 1 3 @ ~ + 1 0 15003797 -refrigeration n 2 2 @ + 2 1 13548531 00707344 -refrigeration_system n 1 2 @ #p 1 0 04070545 -refrigerator n 1 4 @ ~ %p + 1 1 04070727 -refrigerator_car n 1 2 @ %p 1 0 04070964 -refrigerator_cookie n 1 1 @ 1 0 07637508 -refueling n 1 2 @ + 1 1 01059719 -refuge n 4 2 @ ~ 4 0 08643933 05155123 04071102 01208597 -refugee n 1 2 @ ~ 1 1 10516016 -refugee_camp n 1 1 @ 1 0 02945813 -refulgence n 1 3 @ ~ + 1 0 04953954 -refulgency n 1 3 @ ~ + 1 0 04953954 -refund n 2 3 @ ~ + 2 2 13282161 01121690 -refurbishment n 1 2 @ + 1 0 14424517 -refusal n 2 3 @ ~ + 2 2 07205573 06634095 -refuse n 1 1 @ 1 1 14857151 -refuse_collector n 1 1 @ 1 0 10120330 -refuse_heap n 1 1 @ 1 0 08573842 -refutal n 1 1 @ 1 0 00155298 -refutation n 3 3 @ ~ + 3 0 07200813 05826469 00155298 -refuter n 1 2 @ + 1 0 10510546 -regaining n 1 3 @ ~ + 1 0 00089351 -regalecidae n 1 3 @ #m %m 1 0 02546744 -regalecus_glesne n 1 2 @ #m 1 0 02547014 -regalia n 2 2 @ ~ 2 0 04071263 02742322 -regard n 7 5 @ ~ = + ; 7 4 05820170 05702726 06630627 00878648 14437552 07545415 06206800 -regatta n 1 1 @ 1 0 07468456 -regency n 3 3 @ + ; 3 0 15298995 15295603 00598970 -regeneration n 4 4 @ ~ + ; 4 0 13548734 13539262 01047937 00269963 -regent n 2 4 @ ~ #m + 2 0 10516294 10516117 -reggae n 1 1 @ 1 0 07066285 -reggane n 1 2 @ #p 1 0 08707332 -regicide n 2 1 @ 2 0 10516422 00225070 -regime n 2 5 @ ~ %m %p ; 2 2 08050678 05909585 -regimen n 1 2 @ ; 1 0 05909585 -regiment n 1 3 @ %m + 1 1 08213817 -regimentals n 1 2 @ ; 1 0 04071393 -regimentation n 1 2 @ + 1 1 01148283 -regina n 1 2 @ #p 1 0 08830005 -reginald_carey_harrison n 1 1 @ 1 0 11031995 -reginald_joseph_mitchell n 1 1 @ 1 0 11182825 -reginald_marsh n 1 1 @ 1 0 11158651 -regiomontanus n 1 1 @ 1 0 11195619 -region n 5 2 @ ~ 5 3 08630039 05221895 08630985 13759146 05997814 -regional_anaesthesia n 1 2 @ ~ 1 0 14027674 -regional_anatomy n 1 1 @ 1 0 06060463 -regional_anesthesia n 1 2 @ ~ 1 0 14027674 -regional_enteritis n 1 1 @ 1 0 14305990 -regional_ileitis n 1 1 @ 1 0 14305990 -regionalism n 3 2 @ - 3 0 07156497 06662850 04878434 -register n 7 6 @ ~ #p %p + ; 7 2 06507041 05126849 13412321 04071876 04071712 04071536 02977438 -register_language n 1 1 @ 1 1 06905243 -registered_bond n 1 1 @ 1 0 13339325 -registered_mail n 1 1 @ 1 0 06623316 -registered_nurse n 1 2 @ ~ 1 0 10516527 -registered_post n 1 1 @ 1 0 06623316 -registered_representative n 1 1 @ 1 0 09761753 -registered_security n 1 2 @ ~ 1 0 13340579 -registrant n 1 2 @ + 1 1 10516692 -registrar n 3 2 @ ~ 3 0 10517137 10517032 10516874 -registration n 5 4 @ ~ + ; 5 1 00050037 08479986 06479374 04987356 00999787 -registration_fire n 1 1 @ 1 0 00993228 -registration_number n 1 1 @ 1 0 06425808 -registry n 1 3 @ ~ + 1 1 06507041 -regius_professor n 1 1 @ 1 1 10517283 -reglaecus n 1 3 @ #m %m 1 0 02546873 -regnellidium n 1 2 @ #m 1 0 12958615 -regnellidium_diphyllum n 1 2 @ #m 1 0 12958615 -regosol n 1 1 @ 1 0 14695351 -regress n 2 2 @ + 2 0 05783768 00235208 -regression n 4 5 @ ~ #p + ; 4 0 14503354 13548931 06027264 00235208 -regression_analysis n 1 3 @ %p ; 1 0 06028021 -regression_coefficient n 1 3 @ #p ; 1 0 06028566 -regression_curve n 1 3 @ #p ; 1 0 06029306 -regression_equation n 1 3 @ #p ; 1 1 06028260 -regression_line n 1 3 @ #p ; 1 1 06029306 -regression_of_y_on_x n 1 3 @ #p ; 1 0 06028260 -regression_toward_the_mean n 1 4 @ ~ #p ; 1 0 06027264 -regret n 1 3 @ ~ + 1 1 07535670 -regrets n 1 1 @ 1 0 06634239 -regular n 4 3 @ + ; 4 1 10517405 10517743 10517583 05096972 -regular_army n 1 4 @ ~ %m ; 1 1 08191230 -regular_convex_polyhedron n 1 2 @ ~ 1 0 13915999 -regular_convex_solid n 1 2 @ ~ 1 0 13915999 -regular_dodecahedron n 1 1 @ 1 0 13917094 -regular_hexagon n 1 1 @ 1 0 13882385 -regular_hexahedron n 1 2 @ ~ 1 0 13916721 -regular_icosahedron n 1 1 @ 1 0 13917334 -regular_octahedron n 1 1 @ 1 0 13917214 -regular_payment n 1 2 @ ~ 1 0 13281275 -regular_polygon n 1 2 @ ~ 1 0 13867133 -regular_polyhedron n 1 2 @ ~ 1 0 13915999 -regular_recurrence n 1 2 @ ~ 1 0 04768028 -regular_tetrahedron n 1 1 @ 1 0 13916603 -regularisation n 2 2 @ + 2 0 13925015 00806902 -regularity n 2 5 ! @ ~ = + 2 2 05065211 04767347 -regularization n 2 2 @ + 2 0 13925015 00806902 -regulating n 1 3 @ ~ + 1 0 00805034 -regulation n 6 4 @ ~ + ; 6 2 06664051 05846054 14443434 13549105 00806902 00805034 -regulation_time n 1 4 ! @ #p ; 1 0 15233778 -regulator n 3 3 @ ~ + 3 1 04072193 10517826 03450018 -regulator_gene n 1 2 @ #p 1 0 05441053 -regulatory_agency n 1 1 @ 1 0 08353406 -regulatory_authority n 1 1 @ 1 0 08353406 -regulatory_gene n 1 2 @ #p 1 0 05441053 -regulatory_offence n 1 2 @ ~ 1 0 00774796 -regulatory_offense n 1 2 @ ~ 1 0 00774796 -regulus n 2 3 @ #m %m 2 0 09406944 01563579 -regulus_calendula n 1 1 @ 1 0 01564217 -regulus_regulus n 1 1 @ 1 0 01563945 -regulus_satrata n 1 1 @ 1 0 01564101 -regur n 1 1 @ 1 0 14695497 -regur_soil n 1 1 @ 1 0 14695497 -regurgitation n 3 3 @ ~ + 3 0 07406474 05762671 00118733 -rehabilitation n 4 3 @ ~ + 4 2 00400645 00269018 01241997 00700260 -rehabilitation_program n 1 2 @ ~ 1 1 05900583 -reharmonisation n 1 1 @ 1 0 07027651 -reharmonization n 1 2 @ + 1 1 07027651 -rehash n 1 2 @ + 1 0 06635759 -rehearing n 1 1 @ 1 1 00882460 -rehearsal n 2 4 @ ~ + ; 2 1 00897026 00896832 -rehnquist n 1 1 @ 1 0 11256765 -reich n 3 2 @ ~ 3 1 08169573 11257159 11257031 -reichstein n 1 1 @ 1 0 11257395 -reid n 1 1 @ 1 0 11257547 -reification n 2 2 @ + 2 0 00932804 00932298 -reign n 3 3 @ ~ + 3 1 15260964 15260814 14443532 -reign_of_terror n 2 2 @ ; 2 0 15260651 15260436 -reimbursement n 1 3 @ ~ + 1 1 13290002 -reimposition n 1 2 @ + 1 0 01148398 -reims n 1 2 @ #p 1 0 08937594 -rein n 2 4 @ ~ #p + 2 1 04072551 05197574 -rein_orchid n 1 3 @ ~ #m 1 0 12065777 -rein_orchis n 1 3 @ ~ #m 1 0 12065777 -reincarnation n 3 3 @ ~ + 3 0 10518003 07321247 06191212 -reincarnationism n 1 1 @ 1 0 05968553 -reindeer n 1 3 @ ~ #m 1 0 02433925 -reindeer_lichen n 1 2 @ #m 1 0 12991184 -reindeer_moss n 1 2 @ #m 1 0 12991184 -reinforced_concrete n 1 1 @ 1 1 14804797 -reinforcement n 5 4 @ ~ + ; 5 1 00971463 06650238 05828552 04336034 01219551 -reinforcer n 1 4 @ ~ + ; 1 0 05828552 -reinforcing_stimulus n 1 3 @ ~ ; 1 0 05828552 -reinhold_niebuhr n 1 1 @ 1 0 11206885 -reinstatement n 2 2 @ + 2 0 13944914 00401459 -reinsurance n 1 2 @ + 1 0 13348456 -reinterpretation n 2 2 @ + 2 0 05928733 00100889 -reintroduction n 1 2 @ + 1 0 07217673 -reissue n 1 2 @ + 1 1 06270308 -reit n 1 1 @ 1 0 08072287 -reiter n 1 1 @ 1 0 11257697 -reiter's_disease n 1 1 @ 1 0 14309183 -reiter's_syndrome n 1 1 @ 1 0 14309183 -reiteration n 1 2 @ + 1 0 01019372 -reithrodontomys n 1 3 @ #m %m 1 0 02336129 -reject n 1 2 @ + 1 0 05790572 -rejection n 4 5 ! @ ~ + ; 4 2 00203342 13937554 11505318 07207273 -rejoicing n 2 2 @ + 2 1 07529563 07129422 -rejoicing_in_the_law n 1 2 @ ; 1 0 15197302 -rejoicing_of_the_law n 1 2 @ ; 1 0 15197302 -rejoicing_over_the_law n 1 2 @ ; 1 0 15197302 -rejoinder n 2 3 @ ~ ; 2 0 07199922 06563324 -rejuvenation n 2 3 @ ~ + 2 0 11505546 00401639 -relafen n 1 3 @ %s ; 1 0 03804048 -relapse n 1 3 @ ~ + 1 0 00068333 -relapsing n 1 3 @ ~ + 1 0 00068333 -relapsing_fever n 1 1 @ 1 0 14142459 -relatedness n 1 4 ! @ ~ + 1 1 13795489 -relation n 6 6 @ ~ #m %p + ; 6 2 00031921 00845523 10235549 07222823 05957428 00040962 -relation_back n 1 2 @ ; 1 0 05957428 -relational_adjective n 1 2 @ ~ 1 0 06322157 -relational_database n 1 2 @ ~ 1 0 06637973 -relational_database_management_system n 1 1 @ 1 0 06588998 -relations n 1 1 @ 1 1 13780449 -relationship n 4 4 @ ~ + ; 4 3 13780719 13928388 13928668 13812607 -relative n 2 3 @ ~ #m 2 2 10235549 01328302 -relative-in-law n 1 2 @ ~ 1 0 10207169 -relative_atomic_mass n 1 3 @ ~ ; 1 0 05025935 -relative_clause n 1 1 @ 1 0 06315096 -relative_density n 1 2 @ ~ 1 0 05089782 -relative_frequency n 1 2 @ ~ 1 1 13821570 -relative_humidity n 1 1 @ 1 1 13825080 -relative_incidence n 1 2 @ ~ 1 0 13826959 -relative_majority n 1 2 @ ; 1 0 13581218 -relative_molecular_mass n 1 2 @ ; 1 0 05026312 -relative_pronoun n 1 1 @ 1 0 06327551 -relative_quantity n 1 2 @ ~ 1 0 13576982 -relativism n 1 3 @ + ; 1 0 05975846 -relativistic_mass n 1 2 @ ; 1 0 05025129 -relativity n 2 5 @ ~ + ; - 2 0 06106502 05212609 -relativity_theory n 1 4 @ ~ ; - 1 0 06106502 -relatum n 1 1 @ 1 0 06603366 -relaxant n 1 3 @ ~ + 1 0 04072811 -relaxation n 7 4 @ ~ + ; 7 0 13549488 13549311 07515974 07443210 01064148 00873798 00355691 -relaxation_behavior n 1 2 @ ; 1 0 13549311 -relaxation_method n 1 1 @ 1 0 00873798 -relaxation_time n 1 1 @ 1 1 15275315 -relaxer n 1 2 @ + 1 0 09407043 -relaxin n 1 1 @ 1 0 05412053 -relay n 5 5 @ ~ #p %p + 5 1 00318567 08218965 07985533 07464083 04072960 -relay_link n 1 2 @ #p 1 0 02872529 -relay_race n 1 2 @ ~ 1 0 07464083 -relay_station n 1 2 @ #p 1 0 02872529 -relay_transmitter n 1 2 @ #p 1 0 02872529 -release n 12 4 @ ~ + ; 12 6 04073208 00095502 13549672 06747484 00216174 07333649 06552814 04073425 01264447 00329619 00213694 00210940 -releasing_factor n 2 2 @ ~ 2 0 15023294 05412242 -releasing_hormone n 2 2 @ ~ 2 0 15023294 05412242 -relegating n 1 3 @ ~ + 1 0 01140839 -relegation n 3 3 @ ~ + 3 0 01140839 01013434 00208521 -relentlessness n 1 2 @ + 1 1 04831437 -relevance n 1 4 ! @ ~ + 1 1 13794417 -relevancy n 1 3 @ ~ + 1 1 13794417 -reliability n 1 4 ! @ ~ + 1 1 04670022 -reliableness n 1 4 ! @ ~ + 1 0 04670022 -reliance n 2 2 @ + 2 2 05697976 14001728 -relic n 2 2 @ ~ 2 1 04073547 03610270 -relict n 2 1 @ 2 0 13084633 09407194 -relief n 11 3 @ ~ ; 11 9 07493280 14445749 13290991 10648237 01209220 15274074 07357101 01088168 00354884 04073669 01075567 -relief_map n 1 1 @ 1 0 03096142 -relief_pitcher n 1 2 @ ~ 1 0 10518194 -relief_printing n 1 1 @ 1 0 06678664 -relief_valve n 1 1 @ 1 0 04127633 -reliever n 3 3 @ ~ + 3 0 10648237 10518349 10518194 -relievo n 1 2 @ ~ 1 0 04073669 -religion n 2 4 @ ~ + - 2 2 05946687 08081668 -religionism n 2 2 @ + 2 0 06206470 04827175 -religionist n 1 2 @ + 1 1 09629065 -religiosity n 1 2 @ + 1 0 04827175 -religious n 1 3 @ ~ + 1 0 10518602 -religious_belief n 1 3 @ ~ - 1 1 05946687 -religious_ceremony n 1 2 @ ~ 1 0 01028082 -religious_cult n 1 2 @ ~ 1 0 05948264 -religious_doctrine n 1 2 @ ~ 1 0 06789411 -religious_festival n 1 3 @ ~ %p 1 0 15162210 -religious_holiday n 1 3 @ ~ #p 1 0 15183802 -religious_leader n 1 2 @ ~ 1 0 10519494 -religious_movement n 1 2 @ ~ 1 0 08473787 -religious_music n 1 2 @ ~ 1 0 07033007 -religious_mystic n 1 2 @ ~ 1 0 10343554 -religious_mysticism n 1 2 @ ~ 1 0 05948857 -religious_offering n 1 2 @ ~ 1 0 01041349 -religious_order n 1 3 @ ~ %p 1 1 08149781 -religious_orientation n 1 2 @ ~ 1 0 06222336 -religious_outcast n 1 1 @ 1 0 10171755 -religious_person n 1 3 ! @ ~ 1 0 09628382 -religious_residence n 1 2 @ ~ 1 0 04073948 -religious_right n 1 1 @ 1 0 08416890 -religious_rite n 1 2 @ ~ 1 0 01029406 -religious_ritual n 1 2 @ ~ 1 0 01028082 -religious_school n 1 2 @ ~ 1 0 08284054 -religious_sect n 1 3 @ ~ %p 1 0 08149781 -religious_service n 1 3 @ ~ %p 1 0 01032040 -religious_society_of_friends n 1 2 @ %m 1 0 08150377 -religious_song n 1 2 @ ~ 1 0 07035420 -religious_text n 1 2 @ ~ 1 0 06429590 -religious_trance n 1 1 @ 1 0 05681855 -religious_writing n 1 2 @ ~ 1 0 06429590 -religiousism n 1 1 @ 1 0 04827175 -religiousness n 2 3 @ ~ + 2 1 04826999 04848866 -relinquishing n 2 3 @ ~ + 2 0 07254836 00212808 -relinquishment n 2 3 @ ~ + 2 0 07254836 00212808 -reliquary n 1 1 @ 1 0 04074185 -relish n 3 3 @ ~ + 3 1 07491981 07582441 05715864 -relishing n 1 1 @ 1 0 00841901 -relistening n 1 1 @ 1 0 00882460 -reliving n 1 2 @ + 1 1 05810768 -relocatable_program n 1 1 @ 1 0 06578060 -relocation n 2 3 @ ~ + 2 0 01252566 00168658 -reluctance n 2 4 @ ~ + ; 2 0 11504750 04645943 -reluctivity n 1 2 @ ; 1 0 05019499 -rem n 2 1 @ 2 0 14025755 13646367 -rem_sleep n 1 1 @ 1 0 14025755 -remainder n 4 3 @ ~ + 4 1 13810818 13733663 13729236 03286383 -remains n 2 3 @ ~ ; 2 1 09407346 05218119 -remake n 1 2 @ + 1 0 04074329 -remaking n 1 1 @ 1 0 04074329 -remand n 1 2 @ + 1 0 00328327 -remark n 2 3 @ ~ + 2 1 06765044 05710573 -remarriage n 1 2 @ + 1 0 01248752 -rematch n 1 2 @ ; 1 0 07343195 -rembrandt n 1 1 @ 1 0 11257932 -rembrandt_harmensz_van_rijn n 1 1 @ 1 0 11257932 -rembrandt_van_rijn n 1 1 @ 1 0 11257932 -rembrandt_van_ryn n 1 1 @ 1 0 11257932 -remediation n 1 3 @ ~ + 1 0 00259177 -remedy n 2 4 @ ~ #p + 2 2 00259177 04074482 -remembering n 1 3 @ ~ + 1 0 05760202 -remembrance n 2 3 @ ~ + 2 1 05761918 06688522 -remembrance_day n 1 2 @ ; 1 0 15200661 -remembrance_sunday n 1 2 @ ; 1 0 15200661 -remicade n 2 2 @ ; 2 0 15030022 03569657 -remilegia n 1 3 @ #m %m 1 0 02575455 -remilegia_australis n 1 2 @ #m 1 0 02575590 -remilitarisation n 1 2 @ + 1 0 01158543 -remilitarization n 1 2 @ + 1 0 01158543 -reminder n 3 3 @ ~ + 3 2 06506757 05813626 09771855 -reminiscence n 2 3 @ ~ + 2 0 05762848 05761559 -remise n 3 3 @ #p ; 3 0 04074876 03055857 01174645 -remission n 4 5 @ ~ #p + ; 4 1 07419960 13299453 00122106 00094240 -remission_of_sin n 1 3 @ ~ #p 1 0 00094240 -remissness n 1 2 @ + 1 0 04666416 -remit n 2 3 @ + ; 2 0 05815890 00122106 -remitment n 2 3 @ + ; 2 0 13299453 00122106 -remittal n 3 4 @ ~ #p + 3 0 13299453 07419960 00094240 -remittance n 1 2 @ + 1 0 13299453 -remittance_man n 1 1 @ 1 0 10519884 -remnant n 2 3 @ ~ + 2 1 13811184 03286383 -remonstrance n 1 1 @ 1 1 07246742 -remonstration n 1 1 @ 1 0 07246742 -remora n 1 3 @ ~ #m 1 0 02574910 -remorse n 1 2 @ ~ 1 1 07536074 -remote n 1 2 @ #p 1 0 04074963 -remote-access_data_processing n 1 1 @ 1 0 13468542 -remote-control_bomb n 1 2 @ %p 1 0 04075160 -remote_control n 1 2 @ #p 1 0 04074963 -remote_station n 1 1 @ 1 0 04075291 -remote_terminal n 1 1 @ 1 0 04075291 -remoteness n 2 3 @ ~ + 2 0 05085165 04656996 -remotion n 1 3 @ ~ + 1 0 00391599 -remoulade_sauce n 1 1 @ 1 0 07832741 -remount n 1 2 @ + 1 0 02378149 -removable_disk n 1 1 @ 1 0 04075468 -removal n 2 3 @ ~ + 2 1 00391599 00216723 -removal_company n 1 1 @ 1 0 08478482 -removal_firm n 1 1 @ 1 1 08478482 -remove n 1 1 @ 1 0 05090255 -remover n 2 3 @ + ; 2 0 15003969 10519984 -remuda n 1 1 @ 1 1 07994818 -remuneration n 2 4 @ ~ #p + 2 1 13279262 01121855 -remunerator n 1 3 @ ~ + 1 0 10409752 -remus n 1 2 @ ; 1 0 09556580 -renaissance n 2 3 @ #p %p 2 2 15259812 01047803 -renaissance_man n 2 1 @ 2 0 10520286 10520109 -renal_artery n 1 2 @ #p 1 1 05354381 -renal_calculus n 1 1 @ 1 0 09325824 -renal_colic n 1 1 @ 1 0 14331690 -renal_corpuscle n 1 3 @ #p %p 1 0 05247369 -renal_cortex n 1 2 @ #p 1 0 05491154 -renal_disorder n 1 2 @ ~ 1 0 14113228 -renal_failure n 1 2 @ ~ 1 0 14114555 -renal_insufficiency n 1 1 @ 1 0 14114773 -renal_lithiasis n 1 2 @ ~ 1 0 14115648 -renal_pelvis n 1 2 @ #p 1 0 05596442 -renal_vein n 1 2 @ #p 1 0 05379247 -renascence n 3 5 @ ~ #p %p + 3 0 15259812 07321247 01047803 -renata_tebaldi n 1 1 @ 1 0 11334317 -render n 1 1 @ 1 0 15060326 -rendering n 7 3 @ ~ + 7 3 06893565 05766247 00100543 06536389 04075715 04075615 01122037 -rendezvous n 3 3 @ ~ + 3 2 01231548 08642870 08385717 -rendition n 4 3 @ ~ + 4 1 06893565 05766247 00421321 00100543 -rene-robert_cavelier n 1 1 @ 1 0 11118205 -rene_antoine_ferchault_de_reaumur n 1 1 @ 1 0 11255619 -rene_descartes n 1 1 @ 1 0 10931854 -rene_magritte n 1 1 @ 1 0 11149373 -renegade n 2 2 @ + 2 0 10520544 10007109 -renegade_state n 1 1 @ 1 0 08170374 -renege n 1 3 @ #p + 1 0 01259211 -renewable_resource n 1 1 @ 1 0 13332500 -renewal n 3 3 @ ~ + 3 2 00269018 01248852 13547925 -reniform_leaf n 1 1 @ 1 0 13159691 -renin n 1 1 @ 1 0 15004149 -rennet n 1 2 @ %s 1 0 14738623 -rennin n 1 2 @ #s 1 0 15004317 -reno n 1 2 @ #p 1 0 09111168 -renoir n 1 1 @ 1 0 11258096 -renouncement n 1 3 @ ~ + 1 0 07254594 -renovation n 2 3 @ ~ + 2 1 00265119 14424517 -renovator n 1 2 @ + 1 0 10514962 -renown n 1 1 @ 1 0 14437386 -rensselaerite n 1 1 @ 1 0 15066796 -rent n 4 3 @ ~ + 4 2 13295657 09410928 13296270 00391407 -rent-a-car n 1 1 @ 1 0 13248598 -rent-rebate n 1 2 @ ; 1 0 13282419 -rent-roll n 1 1 @ 1 0 06507454 -rent_collector n 1 1 @ 1 0 10520675 -rental n 2 4 @ ~ + ; 2 0 13248393 01111375 -rental_collection n 1 1 @ 1 0 07978276 -rental_income n 1 1 @ 1 0 13260092 -rente n 1 2 @ ~ 1 0 13294503 -renter n 2 3 @ ~ + 2 0 10700201 10520804 -rentier n 1 1 @ 1 0 10520964 -renting n 1 3 @ + ; 1 0 01111375 -renunciation n 4 3 @ ~ + 4 1 07207410 14413411 07254594 00205079 -reorder n 1 1 @ 1 0 06530255 -reordering n 1 3 @ ~ + 1 0 00339463 -reorganisation n 1 1 @ 1 0 01137987 -reorganization n 2 2 @ + 2 0 01137987 00200768 -reorientation n 2 3 @ ~ + 2 1 06208614 00346296 -reoviridae n 1 2 @ #m 1 0 01333610 -reovirus n 1 2 @ ~ 1 0 01340935 -rep n 2 1 @ 2 0 09955944 04075813 -repair n 3 3 @ ~ + 3 2 00266806 14546701 08581503 -repair_shed n 1 2 @ #p 1 0 02687821 -repair_shop n 1 2 @ ~ 1 0 04075916 -repairer n 1 3 @ ~ + 1 0 10308732 -repairman n 1 2 @ ~ 1 1 10521100 -reparation n 4 4 @ ~ + ; 4 0 13292613 13292390 00266806 00095329 -repartee n 1 2 @ ~ 1 0 06777687 -repast n 1 3 @ ~ %p 1 0 07573696 -repatriate n 1 2 @ + 1 0 10521288 -repatriation n 1 2 @ + 1 0 00051385 -repayment n 2 3 @ ~ + 2 1 01121690 13299651 -repayment_rate n 1 1 @ 1 0 13281770 -repeal n 1 3 @ ~ + 1 1 00231887 -repeat n 1 3 @ ~ + 1 1 07342049 -repeater n 4 4 @ ~ + ; 4 0 10521470 10511425 04076284 04076052 -repeating n 1 3 @ ~ + 1 0 01018630 -repeating_decimal n 1 1 @ 1 0 13736376 -repeating_firearm n 1 2 @ ~ 1 0 04076284 -repechage n 1 1 @ 1 0 07464234 -repellant n 3 3 @ ~ + 3 0 14920586 14920388 05196054 -repellent n 3 3 @ ~ + 3 0 14920586 14920388 05196054 -repentance n 1 2 @ + 1 1 07536870 -repercussion n 2 3 @ ~ + 2 0 11416722 07350192 -repertoire n 2 1 @ 2 0 08336844 08336627 -repertory n 3 1 @ 3 1 04076433 08336844 08336627 -repertory_company n 1 1 @ 1 0 08187569 -repetition n 3 3 @ ~ + 3 3 07342049 01018630 07099271 -repetitiousness n 1 3 @ ~ + 1 0 07090721 -repetitiveness n 1 3 @ ~ + 1 0 07090721 -rephrasing n 1 3 @ ~ + 1 0 06429145 -replaceability n 1 2 @ + 1 0 04737234 -replacement n 6 3 @ ~ + 6 4 00197772 10680153 07443761 05696425 13547925 10671736 -replacement_cost n 1 1 @ 1 0 13302905 -replacing n 1 3 @ ~ + 1 1 00197772 -replay n 2 3 @ + ; 2 0 07343195 01020117 -replenishment n 1 2 @ + 1 1 13547925 -repletion n 2 2 @ + 2 0 14452151 00841628 -replica n 1 3 @ ~ + 1 0 04076533 -replication n 7 4 @ ~ + ; 7 1 01019901 13549916 07199922 06563168 05010801 04076533 01249060 -reply n 2 3 @ ~ + 2 2 06746005 07199565 -report n 7 3 @ ~ + 7 4 07218470 07217924 06681551 07391516 07220300 06409752 06207199 -report_card n 1 1 @ 1 0 07220300 -reportage n 1 2 @ + 1 0 06683784 -reporter n 1 3 @ ~ + 1 1 10521662 -reporting n 1 2 @ + 1 1 06683784 -reporting_weight n 1 1 @ 1 1 05027276 -repose n 3 3 @ ~ + 3 1 01064148 07515790 04904352 -repositing n 1 3 @ ~ + 1 0 00372607 -reposition n 1 3 @ ~ + 1 0 00372607 -repositioning n 1 2 @ + 1 0 01052739 -repository n 3 3 @ ~ %p 3 2 03177349 10521928 04076713 -repossession n 1 2 @ + 1 0 00089891 -repp n 1 1 @ 1 0 04075813 -reprehensibility n 1 2 @ + 1 0 04853212 -reprehension n 1 3 @ ~ + 1 0 06711855 -representation n 10 3 @ ~ + 10 3 05926676 04076846 01217499 14000403 08337108 07203388 06893885 06739782 05187711 00898518 -representational_process n 1 2 @ ~ 1 0 05765159 -representative n 4 2 @ ~ 4 3 10522035 10638385 09955781 05820620 -representative_sample n 1 2 @ ; 1 0 06027051 -representative_sampling n 1 1 @ 1 0 00162417 -represser n 1 1 @ 1 0 09407541 -repression n 3 3 @ + ; 3 1 13996571 13550089 00420712 -repressor n 1 1 @ 1 0 09407541 -repressor_gene n 1 1 @ 1 0 05441224 -reprieve n 4 4 @ ~ + ; 4 1 14446034 07368256 06548317 01259034 -reprimand n 1 3 @ ~ + 1 0 06711855 -reprint n 2 2 @ + 2 1 06270308 06269785 -reprinting n 1 2 @ + 1 0 06270308 -reprisal n 1 1 @ 1 1 01235946 -reproach n 2 2 @ ~ 2 2 06713512 14441714 -reproacher n 1 2 @ + 1 0 10740017 -reprobate n 1 3 @ ~ + 1 1 10522324 -reprobation n 2 2 @ + 2 0 14414146 06201042 -reproducer n 1 2 @ ~ 1 0 04077430 -reproducibility n 1 2 @ + 1 1 04806169 -reproduction n 5 5 @ ~ %p + ; 5 1 13550318 05762483 04076533 01019901 00849523 -reproduction_cost n 1 1 @ 1 0 13303045 -reproductive_cell n 1 3 @ ~ #p 1 0 05456732 -reproductive_cloning n 1 2 @ ~ 1 0 00638448 -reproductive_memory n 1 1 @ 1 0 05762483 -reproductive_organ n 1 3 @ ~ #p 1 0 05513302 -reproductive_structure n 1 2 @ ~ 1 0 11675842 -reproductive_system n 1 4 @ ~ #p %p 1 0 05509146 -reproof n 1 3 @ ~ + 1 1 06711855 -reproval n 1 3 @ ~ + 1 0 06711855 -reprover n 1 2 @ + 1 0 10740017 -reptantia n 1 3 @ #m %m 1 0 01982482 -reptile n 1 3 @ ~ #m 1 1 01661091 -reptile_family n 1 3 @ ~ #m 1 0 01656813 -reptile_genus n 1 3 @ ~ #m 1 0 01657723 -reptilia n 1 4 @ #m %m + 1 0 01660719 -reptilian n 1 4 @ ~ #m + 1 0 01661091 -republic n 2 2 @ ~ 2 1 08361329 08362917 -republic_of_albania n 1 4 @ #p %m %p 1 0 08704822 -republic_of_angola n 1 4 @ #p %m %p 1 0 08707917 -republic_of_armenia n 1 6 @ #m #p %m %p - 1 0 09017526 -republic_of_austria n 1 6 @ #m #p %m %p - 1 0 08845555 -republic_of_belarus n 1 5 @ #m #p %m %p 1 0 09011151 -republic_of_benin n 1 4 @ #p %m %p 1 0 08759420 -republic_of_bolivia n 1 6 @ #m #p %m %p - 1 0 08852843 -republic_of_bosnia_and_herzegovina n 1 2 @ %p 1 0 08817630 -republic_of_botswana n 1 4 @ #p %m %p 1 0 08852389 -republic_of_bulgaria n 1 6 @ #m #p %m %p - 1 0 08714132 -republic_of_burundi n 1 4 @ #p %m %p 1 0 08716219 -republic_of_cameroon n 1 4 @ #p %m %p 1 0 08717209 -republic_of_cape_verde n 1 3 @ #p %p 1 0 08717915 -republic_of_chad n 1 4 @ #p %m %p 1 0 08720037 -republic_of_chile n 1 6 @ #m #p %m %p - 1 0 08720481 -republic_of_china n 1 4 @ #p %m %p 1 0 08730550 -republic_of_colombia n 1 6 @ #m #p %m %p - 1 0 08732116 -republic_of_costa_rica n 1 5 @ #m #p %m %p 1 0 08736107 -republic_of_cote_d'ivoire n 1 3 @ #p %p 1 0 08736517 -republic_of_croatia n 1 4 @ #p %m %p 1 0 08815858 -republic_of_cuba n 1 5 @ #m #p %m %p 1 0 08750334 -republic_of_cyprus n 1 4 @ #p %p - 1 0 08756884 -republic_of_djibouti n 1 5 @ #m #p %m %p 1 0 08762495 -republic_of_ecuador n 1 6 @ #m #p %m %p - 1 0 08776687 -republic_of_el_salvador n 1 5 @ #m #p %m %p 1 0 08738272 -republic_of_equatorial_guinea n 1 3 @ #p %p 1 0 08763500 -republic_of_estonia n 1 3 @ #p %p 1 0 09012297 -republic_of_fiji n 1 4 @ #p %m %p 1 0 08779149 -republic_of_finland n 1 5 @ #m #p %m %p 1 0 08779504 -republic_of_ghana n 1 4 @ #p %m %p 1 0 08946187 -republic_of_guatemala n 1 5 @ #m #p %m %p 1 0 08737041 -republic_of_guinea n 1 4 @ #p %m %p 1 0 08947319 -republic_of_guinea-bissau n 1 3 @ #p %p 1 0 08947772 -republic_of_haiti n 1 6 @ #m #p %m %p - 1 0 08751494 -republic_of_honduras n 1 6 @ #m #p %m %p - 1 0 08737716 -republic_of_hungary n 1 4 @ #p %m %p 1 0 08952190 -republic_of_iceland n 1 5 @ #m #p %m %p 1 0 08953324 -republic_of_india n 1 6 @ #m #p %m %p - 1 0 08900535 -republic_of_indonesia n 1 6 @ #m #p %m %p - 1 0 08907606 -republic_of_iraq n 1 6 @ #m #p %m %p - 1 0 08913434 -republic_of_ireland n 1 5 @ #m #p %p - 1 0 08888676 -republic_of_kazakhstan n 1 5 @ #m #p %m %p 1 0 09019726 -republic_of_kenya n 1 4 @ #p %m %p 1 0 08928193 -republic_of_kiribati n 1 3 @ #p %p 1 0 08840749 -republic_of_korea n 1 4 @ #p %p - 1 0 08955626 -republic_of_latvia n 1 4 @ #p %m %p 1 0 09013074 -republic_of_liberia n 1 4 @ #p %m %p 1 0 08959254 -republic_of_lithuania n 1 3 @ %m %p 1 0 09013830 -republic_of_madagascar n 1 4 @ #p %m %p 1 0 08962187 -republic_of_malawi n 1 4 @ #p %m %p 1 0 08962610 -republic_of_maldives n 1 4 @ #p %m %p 1 0 08965251 -republic_of_mali n 1 4 @ #p %m %p 1 0 08965598 -republic_of_malta n 1 4 @ #p %m %p 1 0 08966408 -republic_of_mauritius n 1 4 @ #p %m %p 1 0 08967484 -republic_of_moldova n 1 4 @ #m #p %p 1 0 09014586 -republic_of_mozambique n 1 4 @ #p %m %p 1 0 08971025 -republic_of_namibia n 1 5 @ #p %m %p ; 1 0 08699654 -republic_of_nauru n 1 3 @ #p %m 1 0 08841483 -republic_of_nicaragua n 1 4 @ #p %m %p 1 0 08738820 -republic_of_niger n 1 4 @ #p %m %p 1 0 08973330 -republic_of_palau n 1 2 @ #p 1 0 08978161 -republic_of_panama n 1 5 @ #m #p %m %p 1 0 08739206 -republic_of_paraguay n 1 5 @ #m #p %m %p 1 0 08978343 -republic_of_peru n 1 6 @ #m #p %m %p - 1 0 08979054 -republic_of_poland n 1 5 @ #p %m %p - 1 0 08982587 -republic_of_san_marino n 1 4 @ #p %m %p 1 0 08992181 -republic_of_senegal n 1 4 @ #p %m %p 1 0 08995862 -republic_of_seychelles n 1 4 @ #p %m %p 1 0 08996483 -republic_of_sierra_leone n 1 5 @ #p %m %p - 1 0 08996871 -republic_of_singapore n 1 5 @ #m #p %m %p 1 0 08997487 -republic_of_slovenia n 1 3 @ %m %p 1 0 08818444 -republic_of_south_africa n 1 6 @ #m #p %m %p - 1 0 08999482 -republic_of_suriname n 1 4 @ #m #p %p 1 0 09030752 -republic_of_tajikistan n 1 5 @ #m #p %m %p 1 0 09020961 -republic_of_the_congo n 1 3 @ #p %p 1 0 08734044 -republic_of_the_gambia n 1 4 @ #p %m %p 1 0 08945821 -republic_of_the_marshall_islands n 1 3 @ #p ; 1 0 08839092 -republic_of_the_philippines n 1 6 @ #m #p %m %p - 1 0 08981244 -republic_of_the_sudan n 1 5 @ #m #p %m %p 1 0 09029457 -republic_of_trinidad_and_tobago n 1 4 @ #m #p %p 1 0 08756202 -republic_of_tunisia n 1 6 @ #m #p %m %p - 1 0 09037394 -republic_of_turkey n 1 6 @ #m #p %m %p - 1 0 09039411 -republic_of_uganda n 1 5 @ #p %m %p - 1 0 09043052 -republic_of_uzbekistan n 1 5 @ #m #p %p - 1 0 09022265 -republic_of_vanuatu n 1 3 @ #p %p 1 0 09160775 -republic_of_venezuela n 1 5 @ #m #p %m %p 1 0 09161803 -republic_of_yemen n 1 6 @ #m #p %m %p - 1 0 09164561 -republic_of_zambia n 1 4 @ #p %m %p 1 0 09165613 -republic_of_zimbabwe n 1 4 @ #p %m %p 1 0 09167101 -republican n 3 4 @ #m #p + 3 2 10522633 10522495 09407632 -republican_guard n 1 2 @ ; 1 0 08345189 -republican_party n 1 2 @ %m 1 1 08263113 -republican_river n 1 2 @ #p 1 0 09407632 -republicanism n 1 1 @ 1 0 06220299 -republication n 2 3 @ + ; 2 0 07258964 01102574 -republishing n 1 2 @ + 1 0 01102574 -repudiation n 3 3 @ ~ + 3 0 07207410 07205718 00522338 -repugnance n 2 2 @ + 2 1 07503987 13858045 -repulse n 1 2 @ + 1 0 07208000 -repulsion n 3 4 ! @ = + 3 2 11426914 07503987 00961001 -repulsive_force n 1 2 @ = 1 1 11426914 -repulsiveness n 1 2 @ + 1 0 04781349 -repurchase n 1 2 @ + 1 0 00079212 -reputability n 1 4 ! @ ~ + 1 0 04871002 -reputation n 3 4 @ ~ = + 3 2 14438125 14439294 06207199 -repute n 1 5 ! @ ~ = + 1 1 14438125 -request n 2 3 @ ~ + 2 2 06513366 07185325 -requester n 1 2 @ ~ 1 0 10420031 -requiem n 3 4 @ ~ #p %p 3 0 07050619 07033913 01042661 -requiem_shark n 1 3 @ ~ #m 1 0 01488918 -requiescat n 1 1 @ 1 0 07190584 -required_course n 1 1 @ 1 0 00892036 -requirement n 3 3 @ ~ + 3 3 05892651 09367203 05892427 -requirements_contract n 1 1 @ 1 0 06524111 -requisite n 1 3 @ ~ + 1 0 09367203 -requisiteness n 1 2 @ + 1 0 14450904 -requisition n 3 2 @ + 3 1 07192240 06476200 00087218 -requisition_form n 1 1 @ 1 0 06476200 -requital n 2 2 @ + 2 0 13300828 01235137 -rerebrace n 1 2 @ #p 1 0 04077594 -reredos n 1 1 @ 1 0 02699770 -rerun n 1 2 @ + 1 0 06620063 -res n 1 3 @ #p %p 1 0 05461349 -res_adjudicata n 1 1 @ 1 0 05816154 -res_gestae n 2 2 @ ; 2 0 06735261 00038175 -res_ipsa_loquitur n 1 1 @ 1 0 06654791 -res_judicata n 1 1 @ 1 0 05816154 -res_publica n 1 3 @ ~ %p 1 0 08168978 -resale n 1 1 @ 1 0 01117454 -rescission n 1 3 @ + ; 1 0 00232863 -rescript n 4 3 @ ~ ; 4 0 06746347 06539770 06428976 06364149 -rescriptor n 1 1 @ 1 0 03172432 -rescue n 1 3 @ ~ + 1 1 00093483 -rescue_equipment n 1 2 @ ~ 1 0 04077734 -rescue_operation n 1 1 @ 1 0 00409823 -rescue_party n 1 1 @ 1 0 08265614 -rescuer n 2 3 @ ~ + 2 0 10553805 10522759 -research n 2 3 @ ~ + 2 2 00636921 05797597 -research_center n 1 1 @ 1 0 04077889 -research_colloquium n 1 1 @ 1 0 08328563 -research_director n 1 1 @ 1 0 10522956 -research_facility n 1 1 @ 1 0 04077889 -research_lab n 1 3 @ ~ %p 1 0 03629986 -research_laboratory n 1 3 @ ~ %p 1 0 03629986 -research_project n 1 2 @ ~ 1 0 00641820 -research_rocket n 1 2 @ ~ 1 0 04415663 -research_staff n 1 1 @ 1 0 08352473 -research_worker n 1 2 @ ~ 1 0 10523076 -researcher n 1 3 @ ~ + 1 1 10523076 -reseau n 2 1 @ 2 0 04078150 04078002 -resection n 1 3 @ ~ + 1 0 00691050 -reseda n 1 3 @ ~ #m 1 0 12385429 -reseda_luteola n 1 2 @ #m 1 0 12385830 -reseda_odorata n 1 2 @ #m 1 0 12385566 -resedaceae n 1 3 @ #m %m 1 0 12385046 -resemblance n 1 3 @ ~ + 1 1 04747445 -resentment n 1 3 @ ~ + 1 1 07548978 -reserpine n 1 2 @ %s 1 1 04078236 -reservation n 7 3 @ ~ + 7 4 08587174 06762380 05698620 01218327 07177772 05795460 00820091 -reserve n 7 6 @ ~ #m %m + ; 7 3 04900121 13368052 10671042 13759773 08587174 08206460 04652438 -reserve_account n 1 2 @ ~ 1 0 13370014 -reserve_assets n 1 3 @ ~ ; 1 0 13330764 -reserve_bank n 1 2 @ #m 1 0 08350919 -reserve_clause n 1 2 @ #p 1 0 06394282 -reserve_fund n 1 2 @ ~ 1 0 13370014 -reserve_officers_training_corps n 1 1 @ 1 0 08212920 -reserves n 1 5 @ ~ %m %p ; 1 1 08390511 -reservist n 1 5 @ ~ #m + ; 1 0 10523341 -reservoir n 4 3 @ ~ #p 4 3 13776854 04078747 04078574 09407867 -reset n 1 3 @ %p + 1 0 04078955 -reset_button n 1 2 @ #p 1 0 04079106 -resettlement n 1 2 @ + 1 0 01252566 -resh n 1 2 @ #p 1 0 06838760 -reshipment n 1 2 @ + 1 0 00061453 -resht n 1 2 @ #p 1 0 08912153 -reshuffle n 2 3 @ + ; 2 0 01084489 00340662 -reshuffling n 1 3 @ + ; 1 0 00340662 -resid n 1 1 @ 1 0 14980784 -residence n 4 4 @ ~ %p + 4 4 08558963 04079244 01053920 03719053 -residence_hall n 1 2 @ ~ 1 0 03224893 -residence_time n 1 1 @ 1 0 15134233 -residency n 2 3 @ ~ + 2 0 01053920 00599064 -resident n 2 4 ! @ ~ + 2 1 10523519 10189278 -resident_commissioner n 1 1 @ 1 0 10524076 -resident_physician n 1 1 @ 1 0 10189278 -residential_area n 1 3 @ ~ %p 1 0 08553535 -residential_district n 1 3 @ ~ %p 1 0 08553535 -residual n 2 4 @ ~ + ; 2 0 13810818 13292989 -residual_clay n 1 1 @ 1 0 14695588 -residual_oil n 1 1 @ 1 0 14980784 -residual_soil n 1 1 @ 1 0 14695588 -residue n 2 3 @ ~ + 2 2 15004501 13810818 -residuum n 1 2 @ ~ 1 0 13810818 -resignation n 3 3 @ ~ + 3 3 07542433 07254267 06511560 -resilience n 2 2 @ + 2 1 05020697 07350567 -resiliency n 2 2 @ + 2 0 07350567 05020697 -resin n 1 3 @ ~ + 1 0 14894140 -resinoid n 1 1 @ 1 0 14695953 -resistance n 11 5 @ ~ #p + ; 11 4 00202284 11503644 11503968 00955987 14527171 14526954 08360672 05213894 04646372 04079933 01169317 -resistance_pyrometer n 1 1 @ 1 0 04079603 -resistance_thermometer n 1 1 @ 1 1 04079746 -resistance_unit n 1 2 @ ~ 1 0 13635553 -resister n 2 3 @ ~ + 2 0 10349243 09773245 -resisting_arrest n 1 2 @ ; 1 0 00772550 -resistivity n 1 3 @ ~ + 1 0 11503968 -resistor n 1 3 @ ~ #p 1 1 04079933 -resoluteness n 1 4 ! @ ~ + 1 0 04861486 -resolution n 11 5 ! @ ~ + ; 11 6 06511874 11505769 04861486 00153809 05789089 05782884 11505952 07420217 07028221 06743506 00180228 -resolve n 2 3 @ ~ + 2 1 04861486 06511874 -resolvent n 1 3 @ ~ + 1 0 15047313 -resolving n 1 3 @ ~ + 1 0 05782884 -resolving_power n 1 1 @ 1 0 11505769 -resonance n 5 3 @ ~ + 5 3 11478299 11477921 04989657 13811740 04988258 -resonant_circuit n 1 1 @ 1 0 04080237 -resonating_chamber n 1 2 @ ~ 1 0 04080454 -resonator n 3 3 @ ~ + 3 0 04080454 04080237 04080138 -resorcinol n 1 1 @ 1 1 15004715 -resorcinolphthalein n 1 3 @ ~ ; 1 0 14987695 -resorption n 1 2 @ + 1 0 13550504 -resort n 4 4 @ ~ #p + 4 1 08640531 08581503 05155123 01208597 -resort_area n 1 3 @ ~ %p 1 0 08640739 -resort_hotel n 2 3 @ ~ #p 2 0 08640531 04080705 -resource n 3 2 @ ~ 3 3 13331778 05154676 05633860 -resourcefulness n 2 3 @ ~ + 2 1 05155476 05633860 -respect n 7 4 ! @ ~ + 7 5 05820170 14437552 06206800 01228877 01132864 07545415 04913839 -respectability n 1 4 ! @ ~ + 1 0 04871002 -respecter n 1 2 @ + 1 0 10524223 -respectfulness n 1 2 @ + 1 0 04913839 -respects n 1 1 @ 1 1 06714552 -respighi n 1 1 @ 1 0 11258214 -respiration n 3 4 @ ~ %p + 3 1 00830811 00831782 00831191 -respirator n 2 4 @ ~ %p + 2 0 04080833 03424325 -respiratory_acidosis n 1 1 @ 1 0 14020271 -respiratory_alkalosis n 1 1 @ 1 0 14021622 -respiratory_center n 1 2 @ #p 1 0 05605192 -respiratory_disease n 1 3 @ ~ %p 1 0 14145095 -respiratory_disorder n 1 3 @ ~ %p 1 0 14145095 -respiratory_distress_syndrome n 1 1 @ 1 0 14150740 -respiratory_distress_syndrome_of_the_newborn n 1 1 @ 1 0 14150740 -respiratory_illness n 1 3 @ ~ %p 1 0 14145095 -respiratory_infection n 1 2 @ ~ 1 0 14179104 -respiratory_organ n 1 3 @ ~ #p 1 0 05528060 -respiratory_quotient n 1 1 @ 1 0 13825292 -respiratory_rate n 1 1 @ 1 0 15281653 -respiratory_syncytial_virus n 1 1 @ 1 0 01337329 -respiratory_system n 1 3 @ #p %p 1 0 05509889 -respiratory_tract n 1 3 @ ~ #p 1 1 05510173 -respiratory_tract_infection n 1 2 @ ~ 1 0 14179104 -respite n 5 4 @ ~ + ; 5 3 14446034 01062997 07368256 15274074 01259034 -resplendence n 1 2 @ + 1 0 04684358 -resplendency n 1 2 @ + 1 0 04684358 -resplendent_quetzel n 1 1 @ 1 0 01844746 -resplendent_trogon n 1 1 @ 1 0 01844746 -respondent n 2 3 @ ~ + 2 0 10524711 10524413 -responder n 1 3 @ ~ + 1 0 10524413 -response n 7 2 @ ~ 7 5 11416988 00859001 06746005 06630852 06385582 07199565 05212808 -response_time n 1 1 @ 1 0 15273241 -responsibility n 3 6 ! @ ~ #p = + 3 3 01129920 14515633 04669247 -responsibleness n 1 6 ! @ ~ #p = + 1 0 04669247 -responsiveness n 2 4 ! @ ~ + 2 1 05653575 05212973 -rest n 7 3 @ ~ + 7 6 13810818 01064148 15274074 14012501 13962765 04081044 06865177 -rest-cure n 1 1 @ 1 0 00711413 -rest-harrow n 2 2 @ #m 2 0 12553114 12552893 -rest_area n 1 1 @ 1 0 04020744 -rest_day n 1 3 ! @ ~ 1 0 15137047 -rest_energy n 1 1 @ 1 0 11453210 -rest_home n 1 1 @ 1 0 03528100 -rest_house n 1 1 @ 1 0 04081699 -rest_mass n 1 2 @ ; 1 0 05024931 -rest_period n 1 2 @ ~ 1 0 15274074 -rest_stop n 1 1 @ 1 0 04020744 -restatement n 1 3 @ ~ + 1 1 06768901 -restaurant n 1 3 @ ~ #m 1 1 04081281 -restaurant_attendant n 1 2 @ ~ 1 0 10013614 -restaurant_chain n 1 2 @ %m 1 0 08061801 -restauranter n 1 1 @ 1 0 10524869 -restaurateur n 1 1 @ 1 0 10524869 -rester n 1 3 @ ~ + 1 0 10524973 -restfulness n 1 2 @ + 1 0 04636250 -restharrow n 2 2 @ #m 2 0 12553114 12552893 -resting_potential n 1 1 @ 1 0 11494287 -resting_spore n 1 1 @ 1 0 11549487 -restitution n 3 3 @ ~ + 3 0 13290676 00270275 00089351 -restiveness n 2 2 @ + 2 0 07525760 04625716 -restless_legs n 1 1 @ 1 0 14309394 -restless_legs_syndrome n 1 1 @ 1 0 14309394 -restlessness n 4 3 @ ~ + 4 1 04774743 14407283 07513795 04625284 -restoration n 7 4 @ ~ + ; 7 3 15261868 00268557 00089351 14424517 04083468 04062989 01307606 -restorative n 2 3 @ ~ + 2 0 04451473 03111899 -restorer n 1 2 @ + 1 0 10514962 -restoril n 1 2 @ ; 1 0 04407007 -restrainer n 2 3 @ ~ + 2 0 15004874 10525134 -restraint n 6 4 ! @ ~ + 6 2 01145359 04882968 13998781 06247701 04697442 04081844 -restraint_of_trade n 1 1 @ 1 0 01148491 -restriction n 3 3 @ ~ + 3 2 05846355 00808182 01148614 -restriction_endonuclease n 1 1 @ 1 0 15005071 -restriction_enzyme n 1 1 @ 1 0 15005071 -restriction_fragment n 1 1 @ 1 0 09408105 -restriction_nuclease n 1 1 @ 1 0 15005071 -restriction_site n 1 1 @ 1 0 08623800 -restrictive_clause n 1 1 @ 1 0 06315301 -restrictiveness n 2 3 @ ~ + 2 0 13801040 04639113 -restroom n 1 2 @ ~ 1 0 04018667 -result n 4 3 @ ~ + 4 3 11410625 06743506 07292694 06333285 -resultant n 3 3 @ ~ + 3 0 13941337 07292694 05865034 -resultant_role n 1 1 @ 1 0 06333285 -resulting_trust n 1 1 @ 1 0 13362182 -resume n 2 2 @ + 2 1 06469694 06468403 -resumption n 1 2 @ + 1 1 00242003 -resurgence n 1 3 @ ~ + 1 0 01047338 -resurrection n 2 3 @ + ; 2 0 07312018 01048059 -resurrection_fern n 1 1 @ 1 0 13173259 -resurrection_of_christ n 1 2 @ ; 1 0 07312018 -resurrection_plant n 2 2 @ #m 2 0 13225365 11871059 -resurvey n 1 1 @ 1 0 00879531 -resuscitation n 1 3 @ ~ + 1 0 01048210 -resuscitator n 1 2 @ + 1 0 04082344 -resuspension n 1 2 @ + 1 1 14591481 -retail n 1 3 ! @ + 1 1 01114458 -retail_chain n 1 2 @ %m 1 0 08062206 -retail_merchant n 1 2 @ ~ 1 0 10525436 -retail_price_index n 1 1 @ 1 0 06641423 -retail_store n 1 3 @ ~ %p 1 0 03748162 -retailer n 1 3 @ ~ + 1 1 10525436 -retailing n 1 2 @ + 1 1 01115866 -retained_object n 1 1 @ 1 0 06310848 -retainer n 3 2 @ ~ 3 0 13323313 10582154 04082562 -retaining_wall n 1 1 @ 1 0 04082710 -retake n 1 2 @ + 1 0 00908292 -retaking n 1 2 @ + 1 0 00096969 -retaliation n 1 3 @ ~ + 1 1 01235258 -retaliator n 1 2 @ + 1 0 09826074 -retaliatory_eviction n 1 2 @ ; 1 0 01195187 -retama n 1 3 @ #m %m 1 0 12567316 -retama_raetam n 1 2 @ #m 1 0 12567490 -retard n 1 3 @ ~ + 1 0 10197525 -retardant n 1 1 @ 1 0 09408250 -retardation n 5 3 @ ~ + 5 1 05061345 15275598 09408250 05646218 01067577 -retarded n 1 1 @ 1 0 07948971 -retarded_depression n 1 1 @ 1 0 14391319 -retardent n 1 1 @ 1 0 09408250 -retarding_force n 1 2 @ ~ 1 0 11504898 -retch n 1 2 @ + 1 0 00226951 -rete n 1 2 @ ~ 1 0 05236322 -rete_malpighii n 1 2 @ #p 1 0 05243704 -rete_testis n 1 2 @ #p 1 0 05525807 -retem n 1 2 @ #m 1 0 12567490 -retention n 3 3 @ ~ + 3 2 00810598 05651399 04942172 -retention_basin n 1 1 @ 1 0 08519444 -retentiveness n 3 3 @ ~ + 3 1 05651399 04946400 04942172 -retentivity n 3 3 @ ~ + 3 0 05651399 04946400 04942172 -rethink n 1 2 @ + 1 0 05790012 -reticence n 1 2 @ + 1 0 04652438 -reticle n 1 3 @ #p %p 1 0 04082886 -reticular_activating_system n 1 2 @ #p 1 0 05502375 -reticular_formation n 1 3 @ #p %p 1 0 05502090 -reticulated_python n 1 2 @ #m 1 0 01744100 -reticulation n 2 3 @ + ; 2 0 13550755 04083113 -reticule n 2 3 @ #p %p 2 0 04083309 04082886 -reticulitermes n 1 3 @ #m %m 1 0 02223694 -reticulitermes_flanipes n 1 2 @ #m 1 0 02223901 -reticulitermes_lucifugus n 1 2 @ #m 1 0 02224023 -reticulocyte n 1 1 @ 1 0 05454702 -reticuloendothelial_system n 1 3 @ #p %p 1 0 05461349 -reticulum n 3 4 @ ~ #p + 3 0 09408412 05501485 02399648 -retina n 1 4 @ #p %p + 1 1 05426989 -retinal n 1 3 @ #s + 1 0 15005386 -retinal_cone n 1 3 @ #p %p 1 0 05456257 -retinal_detachment n 1 1 @ 1 0 14555962 -retinal_purple n 1 3 @ #p %s 1 0 15088869 -retinal_rod n 1 3 @ #p %p 1 0 05456456 -retinal_scanning n 1 1 @ 1 0 06645831 -retinene n 1 2 @ #s 1 0 15005386 -retinitis n 1 2 @ ~ 1 0 14354960 -retinoblastoma n 1 1 @ 1 0 14250850 -retinol n 1 1 @ 1 0 15090065 -retinopathy n 1 2 @ ~ 1 0 14257014 -retinue n 1 3 @ ~ %p 1 0 08429167 -retired_person n 1 2 @ ~ 1 1 10525617 -retiree n 1 3 @ ~ + 1 0 10525617 -retirement n 3 3 @ ~ + 3 2 13954118 00212205 00054652 -retirement_account n 1 2 @ ~ 1 0 05911255 -retirement_benefit n 1 1 @ 1 0 13384341 -retirement_check n 1 1 @ 1 0 13384341 -retirement_community n 1 1 @ 1 0 08554040 -retirement_complex n 1 1 @ 1 0 08554040 -retirement_fund n 1 1 @ 1 0 13384341 -retirement_pension n 1 1 @ 1 0 13384341 -retirement_plan n 1 2 @ ~ 1 0 05911255 -retirement_program n 1 2 @ ~ 1 0 05911255 -retirement_savings_account n 1 2 @ ~ 1 0 05911255 -retirement_savings_plan n 1 2 @ ~ 1 0 05911255 -retort n 2 4 @ ~ #p + 2 1 07199922 04083649 -retraction n 2 3 @ ~ + 2 0 07206096 00341695 -retractor n 1 2 @ + 1 0 04083800 -retraining n 1 2 @ + 1 1 00895879 -retread n 1 2 @ + 1 0 04083942 -retreat n 7 5 ! @ ~ + ; 7 1 00056912 08643015 06804988 06804847 03517647 00054652 00054483 -retreatant n 1 1 @ 1 0 10525785 -retreated n 1 1 @ 1 1 07950295 -retrenchment n 2 2 @ + 2 0 04084089 00192910 -retrial n 1 3 @ + ; 1 0 01199365 -retribution n 3 1 @ 3 2 13300828 00259544 01235463 -retrieval n 3 4 @ ~ + ; 3 0 13550940 05761380 00045907 -retriever n 1 3 @ ~ + 1 0 02099029 -retro n 1 2 @ + 1 0 05751430 -retrobulbar_neuritis n 1 1 @ 1 0 14353479 -retrofit n 2 1 @ 2 0 04084234 00364053 -retroflection n 3 2 @ + 3 0 14531598 07132226 00341890 -retroflexion n 3 2 @ + 3 0 14531598 07132226 00341890 -retrograde_amnesia n 1 1 @ 1 0 05673088 -retrogression n 2 3 @ ~ + 2 0 07426893 00235208 -retromandibular_vein n 1 1 @ 1 0 05379438 -retronym n 1 1 @ 1 0 06303315 -retrophyllum n 1 2 @ #m 1 0 11658872 -retrorocket n 1 1 @ 1 0 04084363 -retrospect n 1 2 @ + 1 1 05788029 -retrospection n 2 2 @ + 2 0 06766654 05764973 -retrospective n 1 2 @ + 1 1 08407969 -retroversion n 3 2 @ + 3 0 14531598 06347388 00235208 -retrovir n 1 1 @ 1 0 02765429 -retrovirus n 1 2 @ ~ 1 0 01336282 -retrovision n 1 1 @ 1 1 05775919 -retsina n 1 1 @ 1 0 07897116 -return n 13 5 @ ~ #p + ; 13 6 06548671 00051192 07447022 00089351 00328015 13260190 07343363 07199922 04084517 01234729 00566298 00559724 00050887 -return_address n 1 1 @ 1 1 06787429 -return_key n 1 1 @ 1 0 04084517 -return_on_invested_capital n 1 2 @ ; 1 0 15281329 -return_on_investment n 1 2 @ ; 1 0 15281329 -return_ticket n 1 2 @ ~ 1 0 06519936 -returning_officer n 1 2 @ ; 1 0 10525878 -reuben n 2 2 @ ; 2 0 11258353 07698543 -reuben_lucius_goldberg n 1 1 @ 1 0 11004485 -reunification n 1 3 @ ~ + 1 0 00382474 -reunion n 2 3 @ ~ + 2 2 08478371 00382474 -reuptake n 1 1 @ 1 0 13551396 -reusable_program n 1 1 @ 1 0 06578203 -reusable_routine n 1 1 @ 1 0 06584256 -rev n 1 2 @ + 1 0 15281870 -revaluation n 1 3 @ ~ + 1 0 05747582 -revealed_religion n 1 1 @ 1 0 05949472 -revealing n 1 3 @ ~ + 1 0 07213395 -reveille n 2 2 @ ; 2 0 06804728 00243102 -revel n 1 3 @ ~ + 1 1 00510189 -revelation n 4 5 @ ~ #p + - 4 2 07213395 05808102 07213232 06447897 -revelation_of_saint_john_the_divine n 1 3 @ #p - 1 0 06447897 -reveler n 1 2 @ ~ 1 0 10526096 -reveller n 1 3 @ ~ + 1 1 10526096 -revelry n 1 3 @ ~ + 1 1 00510189 -revenant n 2 1 @ 2 0 10526534 10526441 -revenge n 1 3 @ ~ + 1 1 01235258 -revenue n 2 2 @ ~ 2 1 13256691 13261916 -revenue_bond n 1 1 @ 1 0 13339542 -revenue_enhancement n 1 3 @ ~ - 1 0 13308999 -revenue_sharing n 1 1 @ 1 0 01085656 -revenue_stamp n 1 1 @ 1 0 06855817 -revenue_tariff n 1 1 @ 1 0 13317517 -revenuer n 1 1 @ 1 0 10526633 -reverberance n 1 2 @ + 1 0 04989657 -reverberation n 2 3 @ ~ + 2 1 05010801 11416722 -reverberatory_furnace n 1 1 @ 1 0 04084682 -revere n 2 1 @ 2 0 11258501 04084889 -reverence n 3 4 ! @ ~ + 3 0 07521039 06207561 01228102 -reverend n 2 3 @ ~ #m 2 1 09927451 06341773 -reverend_dodgson n 1 1 @ 1 0 10884061 -reverie n 2 2 @ ~ 2 2 05769471 05700793 -revers n 1 1 @ 1 0 04084889 -reversal n 8 5 ! @ ~ + ; 8 1 00234892 07475870 07411160 05789808 01185981 00346693 00339776 00163406 -reverse n 6 6 ! @ ~ #p + ; 6 2 13858604 04085017 07475870 04085181 00559916 00346693 -reverse_fault n 1 1 @ 1 0 09457507 -reverse_gear n 1 2 @ #p 1 0 04085017 -reverse_hang n 1 2 @ ~ 1 0 00436953 -reverse_lightning n 1 1 @ 1 0 11475067 -reverse_osmosis n 1 2 @ ; 1 0 13528441 -reverse_polish_notation n 1 1 @ 1 0 06814655 -reverse_split n 1 1 @ 1 0 00439284 -reverse_stock_split n 1 1 @ 1 0 00439284 -reverse_transcriptase n 1 1 @ 1 0 14984799 -reverse_transcriptase_inhibitor n 1 2 @ ~ 1 0 04085365 -reversibility n 1 3 ! @ + 1 1 04734551 -reversible n 1 2 @ + 1 0 04085574 -reversible_process n 1 2 ! @ 1 0 13551617 -reversing_thermometer n 1 1 @ 1 0 04085746 -reversion n 6 4 @ ~ + ; 6 0 13341350 07426573 07343574 00346693 00235208 00068333 -reversionary_annuity n 1 1 @ 1 0 13295183 -reversioner n 1 2 @ ; 1 0 10526795 -reversionist n 1 1 @ 1 0 10511239 -reverting n 1 3 @ ~ + 1 0 00068333 -revery n 2 2 @ ~ 2 1 05700793 05769471 -revetement n 1 2 @ #p 1 0 04085873 -revetment n 2 3 @ #p + 2 1 04086066 04085873 -review n 10 4 @ ~ + ; 10 3 05747582 06410391 00143251 13411533 07019866 06597758 06469377 01197258 00897811 00879271 -review_article n 1 2 @ ~ 1 0 06410391 -review_copy n 1 1 @ 1 0 06418006 -reviewer n 2 3 @ ~ + 2 1 10526927 09942431 -reviewing_stand n 1 1 @ 1 1 04086150 -revilement n 1 3 @ ~ + 1 0 06715223 -revisal n 1 2 @ + 1 0 06428976 -revise n 1 2 @ + 1 0 06428976 -revised_standard_version n 1 1 @ 1 0 06449620 -revised_version n 1 1 @ 1 0 06449254 -reviser n 1 3 @ ~ + 1 0 10513120 -revising n 1 3 @ ~ + 1 0 06428792 -revision n 3 3 @ ~ + 3 3 00399393 06428976 06364149 -revisionism n 2 2 @ + 2 0 08368631 08368516 -revisionist n 1 2 @ + 1 0 10527147 -revitalisation n 1 3 @ ~ + 1 0 01047338 -revitalization n 1 3 @ ~ + 1 0 01047338 -revival n 2 3 @ ~ + 2 1 01047338 08386143 -revival_meeting n 1 1 @ 1 0 08386143 -revivalism n 1 2 @ + 1 0 06231191 -revivalist n 1 3 @ ~ + 1 0 10067011 -revivification n 1 3 @ ~ + 1 0 01047338 -revocation n 2 2 @ + 2 0 14564056 01258852 -revoke n 1 3 @ #p + 1 0 01259211 -revolt n 1 3 @ ~ + 1 1 00962129 -revolution n 3 3 @ ~ + 3 2 07424109 00962722 07440979 -revolutionary n 1 3 @ ~ + 1 0 10527334 -revolutionary_armed_forces_of_colombia n 1 2 @ ; 1 0 08042183 -revolutionary_calendar n 1 2 @ %p 1 0 15175202 -revolutionary_calendar_month n 1 3 @ ~ #p 1 0 15175640 -revolutionary_group n 1 2 @ ~ 1 0 08360540 -revolutionary_justice_organization n 1 2 @ ; 1 0 08023374 -revolutionary_organization_17_november n 1 2 @ ; 1 0 08042536 -revolutionary_organization_of_socialist_muslims n 1 2 @ ; 1 0 08020242 -revolutionary_people's_liberation_front n 1 2 @ ; 1 0 08042856 -revolutionary_people's_liberation_party n 1 2 @ ; 1 0 08042856 -revolutionary_people's_struggle n 1 2 @ ; 1 0 08043169 -revolutionary_proletarian_army n 1 2 @ ; 1 0 08011266 -revolutionary_proletarian_initiative_nuclei n 1 2 @ ; 1 0 08043499 -revolutionary_proletarian_nucleus n 1 2 @ ; 1 0 08043499 -revolutionary_united_front n 1 2 @ ; 1 0 08043848 -revolutionism n 1 2 @ + 1 0 05951692 -revolutionist n 1 3 @ ~ + 1 0 10527334 -revolutions_per_minute n 1 1 @ 1 0 15281870 -revolver n 2 2 @ ~ 2 1 04086273 04086446 -revolving_charge_account n 1 1 @ 1 0 13375758 -revolving_credit n 1 2 @ ~ 1 0 13375323 -revolving_door n 2 1 @ 2 0 08240022 04086446 -revolving_fund n 1 1 @ 1 1 13359263 -revue n 1 2 @ ~ 1 0 07019866 -revulsion n 1 1 @ 1 1 07503987 -rewa-rewa n 1 2 @ #m 1 0 12219668 -reward n 5 4 ! @ ~ + 5 4 07295629 13283764 01219551 07166281 05142863 -rewording n 1 3 @ ~ + 1 0 06429145 -rewrite n 1 2 @ + 1 0 06364149 -rewrite_man n 1 2 @ ~ 1 0 10513120 -rewriter n 1 3 @ ~ + 1 0 10513120 -rewriting n 1 3 @ ~ + 1 0 06428792 -rex n 1 3 @ ~ #m 1 0 10231515 -rex_begonia n 1 1 @ 1 0 12361946 -rex_harrison n 1 1 @ 1 0 11031995 -reye's_syndrome n 1 1 @ 1 0 14309653 -reyes n 1 1 @ 1 0 11203795 -reykjavik n 1 2 @ #p 1 0 08953596 -reynard n 1 1 @ 1 0 02118707 -reynolds n 1 1 @ 1 0 11258769 -rf n 3 4 @ ~ #p %p 3 0 15023294 14653416 05502090 -rfd n 1 1 @ 1 0 06265142 -rg n 1 1 @ 1 0 14652824 -rh n 3 1 @ 3 1 15037877 14652623 05412242 -rh-negative_blood n 1 1 @ 1 0 05401587 -rh-negative_blood_type n 1 1 @ 1 0 05401587 -rh-positive_blood_type n 1 1 @ 1 0 05401411 -rh_antibody n 1 1 @ 1 1 15027970 -rh_factor n 1 1 @ 1 0 15037877 -rh_incompatibility n 1 1 @ 1 0 13975444 -rh_negative n 1 1 @ 1 0 05401587 -rh_positive n 1 1 @ 1 0 05401411 -rhabdomancer n 1 2 @ + 1 0 10770891 -rhabdomancy n 1 2 @ + 1 0 05776679 -rhabdomyoma n 1 1 @ 1 0 14249512 -rhabdomyosarcoma n 1 2 @ ~ 1 0 14245405 -rhabdosarcoma n 1 2 @ ~ 1 0 14245405 -rhabdoviridae n 1 3 @ #m %m 1 0 01333301 -rhabdovirus n 1 2 @ #m 1 0 01340648 -rhadamanthus n 1 2 @ ; 1 0 09570957 -rhaeto-romance n 1 2 @ ~ 1 0 06967710 -rhaeto-romanic n 1 2 @ ~ 1 0 06967710 -rhagades n 1 1 @ 1 0 14232034 -rhagoletis n 1 3 @ #m %m 1 0 02196761 -rhagoletis_pomonella n 1 2 @ #m 1 0 02196896 -rhamnaceae n 1 3 @ #m %m 1 0 13140699 -rhamnales n 1 3 @ #m %m 1 0 13140535 -rhamnus n 1 3 @ #m %m 1 0 13140993 -rhamnus_californicus n 1 1 @ 1 0 13142182 -rhamnus_carolinianus n 1 1 @ 1 0 13141972 -rhamnus_croceus n 1 1 @ 1 0 13142504 -rhamnus_frangula n 1 1 @ 1 0 13142380 -rhamnus_purshianus n 1 2 @ %p 1 0 13141564 -rhaphe n 1 3 @ ~ #p 1 0 05276425 -rhapis n 1 3 @ #m %m 1 0 12595801 -rhapis_excelsa n 1 1 @ 1 0 12596148 -rhapis_humilis n 1 1 @ 1 0 12596345 -rhapsody n 1 2 @ + 1 0 06382590 -rhd n 1 2 @ ; 1 0 08041840 -rhea n 3 3 @ ~ #m 3 0 09576338 01521756 01521399 -rhea_americana n 1 2 @ #m 1 0 01521399 -rhea_silvia n 1 2 @ ; 1 0 09556121 -rheidae n 1 3 @ #m %m 1 0 01521014 -rheiformes n 1 3 @ #m %m 1 0 01520789 -rheims n 1 2 @ #p 1 0 08937594 -rheims-douay_bible n 1 1 @ 1 0 06448868 -rheims-douay_version n 1 1 @ 1 0 06448868 -rhein n 1 2 @ #p 1 0 09408540 -rheinland n 1 2 @ #p 1 0 08775297 -rhenish n 1 4 @ ~ + ; 1 0 07897200 -rhenium n 1 1 @ 1 0 14652390 -rheology n 1 2 @ + 1 0 06102316 -rheometer n 1 1 @ 1 0 04086663 -rheostat n 1 3 @ ~ %p 1 0 04086794 -rhesus n 1 1 @ 1 0 02487547 -rhesus_factor n 1 1 @ 1 0 15037877 -rhesus_monkey n 1 1 @ 1 0 02487547 -rhetoric n 4 5 @ ~ %p + - 4 0 07072698 07070429 06609503 06170498 -rhetorical_device n 1 4 @ ~ #p ; 1 0 07098193 -rhetorical_question n 1 1 @ 1 0 06768528 -rhetorician n 1 3 @ ~ + 1 1 10380672 -rheum n 2 4 @ #m %m + 2 0 14853647 12602850 -rheum_australe n 1 2 @ #m 1 0 12603273 -rheum_cultorum n 1 1 @ 1 0 12603449 -rheum_emodi n 1 2 @ #m 1 0 12603273 -rheum_palmatum n 1 1 @ 1 0 12603672 -rheum_rhabarbarum n 1 1 @ 1 0 12603449 -rheum_rhaponticum n 1 1 @ 1 0 12603449 -rheumatic n 1 2 @ + 1 0 10527915 -rheumatic_aortitis n 1 2 @ #p 1 0 14258391 -rheumatic_fever n 1 2 @ %p 1 1 14142768 -rheumatic_heart_disease n 1 1 @ 1 0 14142983 -rheumatism n 2 4 @ ~ + ; 2 1 14080210 14186738 -rheumatism_weed n 2 1 @ 2 0 11767877 11767630 -rheumatoid_arthritis n 1 3 @ ~ ; 1 0 14186738 -rheumatoid_factor n 1 1 @ 1 0 14187229 -rheumatoid_spondylitis n 1 1 @ 1 0 14220474 -rheumatologist n 1 2 @ + 1 0 10528023 -rheumatology n 1 2 @ + 1 0 06062655 -rhexia n 1 3 @ #m %m 1 0 12349916 -rhibhus n 1 1 @ 1 0 09528135 -rhincodon n 1 3 @ #m %m 1 0 01487914 -rhincodon_typus n 1 2 @ #m 1 0 01488038 -rhincodontidae n 1 3 @ #m %m 1 0 01487743 -rhine n 2 2 @ #p 2 0 11258924 09408540 -rhine_river n 1 2 @ #p 1 0 09408540 -rhine_wine n 1 3 @ ~ ; 1 0 07897200 -rhineland n 1 2 @ #p 1 0 08775297 -rhinencephalon n 1 2 @ %p 1 0 05477686 -rhinestone n 1 1 @ 1 0 14694453 -rhinion n 1 2 @ #p 1 0 05235217 -rhinitis n 1 2 @ ~ 1 0 14355060 -rhino n 1 3 @ ~ #m 1 1 02391994 -rhinobatidae n 1 3 @ #m %m 1 0 01497579 -rhinoceros n 1 3 @ ~ #m 1 1 02391994 -rhinoceros_antiquitatis n 1 2 @ #m 1 0 02392555 -rhinoceros_beetle n 1 1 @ 1 0 02174001 -rhinoceros_family n 1 3 @ #m %m 1 0 02391782 -rhinoceros_unicornis n 1 2 @ #m 1 0 02392434 -rhinocerotidae n 1 3 @ #m %m 1 0 02391782 -rhinolaryngologist n 1 2 @ + 1 0 10059323 -rhinolaryngology n 1 2 @ + 1 0 06062842 -rhinolophidae n 1 3 @ #m %m 1 0 02143293 -rhinonicteris n 1 3 @ #m %m 1 0 02144110 -rhinonicteris_aurantius n 1 2 @ #m 1 0 02144251 -rhinopathy n 1 2 @ ~ 1 0 14396890 -rhinophyma n 1 1 @ 1 0 14397040 -rhinoplasty n 1 1 @ 1 0 00689062 -rhinoptera n 1 3 @ #m %m 1 0 01499595 -rhinoptera_bonasus n 1 2 @ #m 1 0 01499732 -rhinorrhea n 1 2 @ #p 1 0 14567134 -rhinoscope n 1 1 @ 1 0 04086937 -rhinoscopy n 1 1 @ 1 0 00643772 -rhinosporidiosis n 1 1 @ 1 0 14567281 -rhinostenosis n 1 1 @ 1 0 14107249 -rhinotermitidae n 1 2 @ #m 1 0 02224141 -rhinotomy n 1 1 @ 1 0 00691190 -rhinotracheitis n 1 1 @ 1 1 14272023 -rhinovirus n 1 1 @ 1 0 01338537 -rhipsalis n 1 3 @ #m %m 1 0 11852814 -rhiptoglossa n 1 3 @ #m %m 1 0 01693472 -rhizobiaceae n 1 3 @ #m %m 1 0 01354149 -rhizobium n 1 2 @ #m 1 0 01354324 -rhizoctinia n 1 2 @ #m 1 0 13082568 -rhizoctinia_disease n 1 2 @ ~ 1 0 14281397 -rhizoctinia_solani n 1 2 @ #m 1 0 13016076 -rhizoid n 1 2 @ ~ 1 0 12974826 -rhizomatous_begonia n 1 1 @ 1 0 12360817 -rhizome n 1 2 @ + 1 0 13128582 -rhizomorph n 1 1 @ 1 0 13231298 -rhizophora n 1 3 @ #m %m 1 0 12345709 -rhizophora_mangle n 1 2 @ #m 1 0 12345899 -rhizophoraceae n 1 3 @ #m %m 1 0 12345495 -rhizopod n 1 3 @ ~ #m 1 0 01391391 -rhizopoda n 1 3 @ #m %m 1 0 01391174 -rhizopodan n 1 3 @ ~ #m 1 0 01391391 -rhizopogon n 1 3 @ #m %m 1 0 12971624 -rhizopogon_idahoensis n 1 2 @ #m 1 0 12971804 -rhizopogonaceae n 1 3 @ #m %m 1 0 12971157 -rhizopus n 1 3 @ ~ #m 1 0 12973791 -rhizopus_nigricans n 1 2 @ #m 1 0 12973937 -rhizopus_stolonifer n 1 2 @ #m 1 0 12974062 -rhizotomy n 1 1 @ 1 0 00691330 -rho n 1 2 @ #m 1 0 06835845 -rhodanthe n 1 2 @ #m 1 0 12007766 -rhodanthe_manglesii n 1 2 @ #m 1 0 12007766 -rhode_island n 2 4 @ #p %p - 2 1 09137032 09137334 -rhode_island_bent n 1 1 @ 1 0 12107002 -rhode_island_red n 1 1 @ 1 0 01793435 -rhode_islander n 1 1 @ 1 1 09745438 -rhodes n 2 2 @ #p 2 0 11259054 08783812 -rhodes_grass n 1 1 @ 1 0 12114590 -rhodes_scholar n 1 1 @ 1 0 10528295 -rhodesia n 1 5 @ #p %m %p + 1 0 09167101 -rhodesian_man n 1 1 @ 1 0 10528148 -rhodesian_ridgeback n 1 1 @ 1 0 02087394 -rhodium n 1 1 @ 1 0 14652623 -rhodochrosite n 1 2 @ %s 1 0 14696035 -rhododendron n 1 3 @ ~ #m 1 0 12244153 -rhododendron_californicum n 1 1 @ 1 0 12244458 -rhododendron_maxima n 1 1 @ 1 0 12244650 -rhododendron_viscosum n 1 1 @ 1 0 12244819 -rhodolite n 1 1 @ 1 0 15001394 -rhodomontade n 1 1 @ 1 0 07230089 -rhodonite n 1 1 @ 1 0 14696180 -rhodope_mountains n 1 1 @ 1 0 09408795 -rhodophyceae n 1 3 @ #m %m 1 0 01413744 -rhodophyta n 1 3 @ #m %m 1 0 01413551 -rhodopsin n 1 3 @ #p %s 1 0 15088869 -rhodosphaera n 1 3 @ #m %m 1 0 12762245 -rhodosphaera_rhodanthema n 1 2 @ #m 1 0 12762405 -rhodymenia n 1 3 @ #m %m 1 0 01414986 -rhodymenia_palmata n 1 2 @ #m 1 0 01415139 -rhodymeniaceae n 1 3 @ #m %m 1 0 01414841 -rhoeadales n 1 3 @ #m %m 1 0 11864364 -rhomb n 1 1 @ 1 0 13882961 -rhombencephalon n 1 4 @ ~ #p %p 1 0 05500594 -rhombohedron n 1 2 @ + 1 0 13915417 -rhomboid n 2 3 @ ~ + 2 0 13883133 05575002 -rhomboid_minor_muscle n 1 1 @ 1 0 05575374 -rhomboid_muscle n 1 2 @ ~ 1 0 05575002 -rhomboideus_major_muscle n 1 1 @ 1 0 05575185 -rhombus n 1 2 @ + 1 0 13882961 -rhonchus n 1 1 @ 1 0 07391682 -rhone n 1 2 @ #p 1 0 09408977 -rhone-alpes n 1 3 @ #p %p 1 0 08944378 -rhone_river n 1 2 @ #p 1 0 09408977 -rhone_wine n 1 1 @ 1 0 07897750 -rhubarb n 2 3 @ ~ #m 2 1 07713267 12602980 -rhubarb_pie n 1 1 @ 1 0 07626501 -rhubarb_plant n 1 3 @ ~ #m 1 0 12602980 -rhumb n 1 1 @ 1 0 08632678 -rhumb_line n 1 1 @ 1 0 08632678 -rhumba n 3 2 @ + 3 0 07056764 00541779 00537085 -rhus n 1 3 @ #m %m 1 0 12762583 -rhus_aromatica n 1 1 @ 1 0 12763291 -rhus_copallina n 1 1 @ 1 0 12763762 -rhus_dermatitis n 1 2 @ ~ 1 0 14223296 -rhus_diversiloba n 1 2 @ #m 1 0 12767208 -rhus_glabra n 1 1 @ 1 0 12763529 -rhus_laurina n 1 2 @ #m 1 0 12760875 -rhus_ovata n 1 1 @ 1 0 12764008 -rhus_quercifolia n 1 2 @ #m 1 0 12767423 -rhus_radicans n 1 2 @ #m 1 0 12766869 -rhus_rhodanthema n 1 2 @ #m 1 0 12762405 -rhus_toxicodenedron n 1 2 @ #m 1 0 12767423 -rhus_trilobata n 1 1 @ 1 0 12764507 -rhus_typhina n 1 1 @ 1 0 12764202 -rhus_verniciflua n 1 2 @ #m 1 0 12767648 -rhus_vernix n 1 2 @ #m 1 0 12766595 -rhyacotriton n 1 3 @ #m %m 1 0 01635343 -rhyacotriton_olympicus n 1 2 @ #m 1 0 01635480 -rhyme n 2 5 @ ~ #p + - 2 2 07096661 06381869 -rhyme_royal n 1 1 @ 1 0 07097831 -rhymer n 1 2 @ + 1 0 10528493 -rhymester n 1 2 @ + 1 0 10528493 -rhyming_slang n 1 1 @ 1 0 07159276 -rhynchocephalia n 1 3 @ #m %m 1 0 01672950 -rhynchoelaps n 1 3 @ #m %m 1 0 01747144 -rhynchoelaps_australis n 1 2 @ #m 1 0 01747285 -rhyncostylis n 1 3 @ #m %m 1 0 12081488 -rhynia n 1 2 @ #m 1 0 13218281 -rhyniaceae n 1 3 @ #m %m 1 0 13218114 -rhyolite n 1 1 @ 1 0 14933236 -rhythm n 5 4 @ ~ %p + 5 5 07086518 04768028 15287830 07086323 00853145 -rhythm_and_blues n 1 1 @ 1 0 07064315 -rhythm_and_blues_musician n 1 2 @ ~ 1 0 10528816 -rhythm_method n 1 1 @ 1 1 00853145 -rhythm_method_of_birth_control n 1 1 @ 1 0 00853145 -rhythm_section n 1 1 @ 1 0 08217557 -rhythmic_pattern n 1 4 @ ~ #p ; 1 0 07093895 -rhythmicity n 1 3 @ ~ + 1 0 04991511 -rhytidectomy n 1 2 @ ~ 1 0 00674158 -rhytidoplasty n 1 2 @ ~ 1 0 00674158 -ri n 1 4 @ #p %p - 1 0 09137032 -rial n 3 2 @ %p 3 0 13697505 13697134 13696777 -riata n 1 2 @ %p 1 0 03644378 -rib n 6 6 @ ~ #p %p + ; 6 2 04087126 05279026 07656741 06767693 05235879 04087290 -rib_cage n 1 2 @ #p 1 1 05553768 -rib_joint_pliers n 1 2 @ ; 1 0 04088343 -rib_roast n 1 2 @ #p 1 0 07661950 -ribald n 1 2 @ + 1 0 10528969 -ribaldry n 2 1 @ 2 0 06781811 04902283 -riband n 1 1 @ 1 0 04087432 -ribavirin n 1 1 @ 1 0 04087524 -ribband n 1 1 @ 1 0 04087432 -ribbed_toad n 1 2 @ #m 1 0 01644900 -ribbed_vault n 1 1 @ 1 0 04087709 -ribbing n 2 2 @ + 2 0 04087826 00425905 -ribbon n 4 4 @ ~ #p + 4 1 09409203 06706676 04088058 04087899 -ribbon-leaved_water_plantain n 1 1 @ 1 0 12612709 -ribbon_development n 1 1 @ 1 0 04088229 -ribbon_fern n 3 2 @ #m 3 0 13214485 13179804 12960552 -ribbon_grass n 1 2 @ #m 1 0 12129738 -ribbon_snake n 1 1 @ 1 1 01735577 -ribbon_tree n 1 3 @ #m %s 1 0 12185254 -ribbon_worm n 1 2 @ #m 1 0 01928517 -ribbonfish n 2 3 @ ~ #m 2 0 02547014 02546331 -ribbonwood n 2 3 @ #m %s 2 0 12185254 12180885 -ribes n 1 3 @ #m %m 1 1 12804866 -ribes_grossularia n 1 3 @ #m %p 1 0 12806015 -ribes_nigrum n 1 3 @ #m %p 1 0 12805561 -ribes_rubrum n 1 3 @ #m %p 1 0 12805373 -ribes_sanguineum n 1 2 @ #m 1 1 12805899 -ribes_sativum n 1 2 @ #m 1 0 12805762 -ribes_uva-crispa n 1 3 @ #m %p 1 0 12806015 -ribgrass n 1 1 @ 1 0 12599185 -ribhus n 1 1 @ 1 0 09528135 -ribier n 1 1 @ 1 0 07760297 -riboflavin n 1 2 @ %s 1 1 15091473 -ribonuclease n 1 1 @ 1 0 14832046 -ribonucleic_acid n 1 5 @ ~ %s %p ; 1 0 14832193 -ribonucleinase n 1 1 @ 1 0 14832046 -ribose n 1 2 @ #s 1 0 14696331 -ribosome n 1 1 @ 1 0 05446394 -ribwort n 1 1 @ 1 0 12599185 -ricardo n 1 1 @ 1 0 11259457 -rice n 4 6 @ ~ #m #p %s + 4 2 07804323 12125890 11259777 11259635 -rice-grain_fritillary n 1 1 @ 1 0 12452256 -rice_beer n 1 3 @ #s ; 1 0 07891433 -rice_grass n 1 3 @ ~ #m 1 0 12126360 -rice_paddy n 1 1 @ 1 1 08614229 -rice_paper n 1 1 @ 1 0 14975872 -rice_rat n 1 2 @ #m 1 0 02340640 -rice_weevil n 1 2 @ #m 1 0 02182930 -ricebird n 2 2 @ #m 2 0 01573898 01543632 -ricegrass n 1 3 @ ~ #m 1 0 12126360 -ricer n 1 2 @ + 1 0 04088441 -rich n 1 3 ! @ ; 1 0 08179455 -rich_man n 1 2 @ ~ 1 1 10292052 -rich_people n 1 3 ! @ ; 1 0 08179455 -rich_person n 1 2 @ ~ 1 0 10529231 -richard_adolph_zsigmondy n 1 1 @ 1 0 11407865 -richard_august_carl_emil_erlenmeyer n 1 1 @ 1 0 10960439 -richard_brinsley_sheridan n 1 1 @ 1 0 11297595 -richard_buckminster_fuller n 1 1 @ 1 0 10985440 -richard_burbage n 1 1 @ 1 0 10871926 -richard_burdon_haldane n 1 1 @ 1 0 11022465 -richard_burton n 2 1 @ 2 0 10875249 10875107 -richard_coeur_de_lion n 1 2 @ #m 1 0 11259950 -richard_d'oyly_carte n 1 1 @ 1 0 10942473 -richard_d._fosbury n 1 1 @ 1 0 10975583 -richard_e._byrd n 1 1 @ 1 0 10876798 -richard_e._smalley n 1 1 @ 1 0 11304912 -richard_errett_smalley n 1 1 @ 1 0 11304912 -richard_erskine_leakey n 1 1 @ 1 0 11122114 -richard_evelyn_byrd n 1 1 @ 1 0 10876798 -richard_feynman n 1 1 @ 1 0 10970279 -richard_haldane n 1 1 @ 1 0 11022465 -richard_henry_lee n 1 1 @ 1 0 11123894 -richard_henry_tawney n 1 1 @ 1 0 11333071 -richard_hooker n 1 1 @ 1 0 11058335 -richard_horatio_edgar_wallace n 1 1 @ 1 0 11371622 -richard_i n 1 2 @ #m 1 0 11259950 -richard_ii n 1 2 @ #m 1 0 11260325 -richard_iii n 1 2 @ #m 1 0 11260622 -richard_j._roberts n 1 1 @ 1 0 11264614 -richard_john_roberts n 1 1 @ 1 0 11264614 -richard_jordan_gatling n 1 1 @ 1 0 10992192 -richard_kuhn n 1 1 @ 1 0 11112488 -richard_leakey n 1 1 @ 1 0 11122114 -richard_lovelace n 1 1 @ 1 0 11141882 -richard_m._nixon n 1 1 @ 1 0 11208172 -richard_milhous_nixon n 1 1 @ 1 0 11208172 -richard_morris_hunt n 1 1 @ 1 0 11066938 -richard_neville n 1 1 @ 1 0 11375087 -richard_nixon n 1 1 @ 1 0 11208172 -richard_phillips_feynman n 1 1 @ 1 0 10970279 -richard_rodgers n 1 1 @ 1 0 11267745 -richard_roe n 1 2 @ ; 1 0 10529103 -richard_smalley n 1 1 @ 1 0 11304912 -richard_starkey n 1 2 @ #m 1 0 11313726 -richard_strauss n 1 1 @ 1 0 11321647 -richard_the_lion-hearted n 1 2 @ #m 1 0 11259950 -richard_the_lionheart n 1 2 @ #m 1 0 11259950 -richard_trevithick n 1 1 @ 1 0 11348946 -richard_upjohn n 1 1 @ 1 0 11356512 -richard_von_krafft-ebing n 1 1 @ 1 0 11110205 -richard_wagner n 1 1 @ 1 0 11369834 -richard_wright n 1 1 @ 1 0 11398955 -richards n 1 1 @ 1 0 11260945 -richardson n 2 1 @ 2 0 11261364 11261184 -richardson's_geranium n 1 1 @ 1 0 12686496 -richardson_ground_squirrel n 1 1 @ 1 0 02358712 -richardson_vole n 1 2 @ #m 1 0 02341475 -richea n 1 3 @ #m %m 1 0 12254478 -richea_dracophylla n 1 2 @ #m 1 0 12254667 -richea_pandanifolia n 1 2 @ #m 1 0 12254891 -richelieu n 1 1 @ 1 0 11261483 -riches n 1 2 @ ~ 1 0 13353280 -richler n 1 1 @ 1 0 11261698 -richmond n 1 2 @ #p 1 1 09150047 -richmondena n 1 3 @ #m %m 1 0 01541261 -richmondena_cardinalis n 1 2 @ #m 1 0 01541386 -richness n 7 3 @ ~ + 7 3 05115804 14491625 04989015 05164101 05147586 04958460 04729328 -richter_scale n 1 2 @ ; 1 0 13851865 -richweed n 2 2 @ #m 2 0 12844409 12395068 -ricin n 1 1 @ 1 0 14696463 -ricin_toxin n 1 1 @ 1 0 14696463 -ricinoleic_acid n 1 2 @ #s 1 0 14742601 -ricinus n 1 3 @ #m %m 1 0 12924452 -ricinus_communis n 1 3 @ #m %p 1 0 12924623 -rick n 2 4 @ ~ + ; 2 0 14361182 07963208 -rickenbacker n 1 1 @ 1 0 11261804 -ricketiness n 1 2 @ + 1 0 04775562 -rickets n 1 1 @ 1 0 14201311 -rickettsia n 1 3 @ #m + 1 0 01371483 -rickettsiaceae n 1 3 @ #m %m 1 0 01371092 -rickettsial_disease n 1 2 @ ~ 1 0 14140781 -rickettsiales n 1 3 @ #m %m 1 0 01370913 -rickettsialpox n 1 1 @ 1 0 14141912 -rickettsiosis n 1 2 @ ~ 1 0 14140781 -rickey n 1 2 @ ~ 1 0 07932614 -rickover n 1 1 @ 1 0 11261986 -rickrack n 1 1 @ 1 0 04088593 -ricksha n 1 1 @ 1 0 03599486 -rickshaw n 1 1 @ 1 0 03599486 -rico n 1 2 @ ; 1 0 06533039 -rico_act n 1 2 @ ; 1 0 06533039 -ricochet n 1 2 @ + 1 0 07409475 -ricotta n 1 1 @ 1 0 07854614 -ricrac n 1 1 @ 1 0 04088593 -rictus n 1 1 @ 1 0 06877509 -riddance n 2 3 @ ~ + 2 0 00395333 00206927 -riddle n 2 2 @ + 2 1 06785223 04088696 -riddle_canon n 1 1 @ 1 0 07043026 -ride n 2 4 @ ~ #p + 2 1 00307631 04088797 -rider n 4 5 @ ~ #p + ; 4 2 10529965 06394564 10530150 10403876 -rider_haggard n 1 1 @ 1 0 11022001 -rider_plate n 1 2 @ #p 1 0 04088982 -ridge n 6 4 @ ~ #p + 6 1 09409512 13902048 09409898 09409752 05603342 04089152 -ridge_rope n 1 2 @ #p 1 0 04089376 -ridge_tile n 1 1 @ 1 0 15005577 -ridgel n 1 1 @ 1 0 02377063 -ridgeline n 1 2 @ ~ 1 0 09409752 -ridgeling n 1 1 @ 1 0 02377063 -ridgepole n 1 2 @ #p 1 0 04089152 -ridgil n 1 1 @ 1 0 02377063 -ridgling n 1 1 @ 1 0 02377063 -ridicule n 2 3 @ ~ + 2 1 06715786 01224517 -ridiculer n 1 3 @ ~ + 1 0 10552742 -ridiculousness n 1 2 @ + 1 0 06607809 -riding n 2 4 @ ~ + - 2 0 00450335 00299217 -riding_bitt n 1 2 @ #p 1 0 04089522 -riding_boot n 1 3 @ ~ #p 1 1 04089666 -riding_breeches n 1 3 @ #p ; 1 0 03600285 -riding_crop n 1 1 @ 1 0 04089836 -riding_habit n 1 2 @ %p 1 0 03474167 -riding_horse n 1 2 @ ~ 1 0 02377703 -riding_lamp n 1 1 @ 1 0 02709763 -riding_light n 1 1 @ 1 0 02709763 -riding_master n 1 1 @ 1 0 10530383 -riding_mower n 1 1 @ 1 0 04089976 -riding_school n 1 1 @ 1 0 08284370 -ridley n 1 3 @ ~ #m 1 0 01664369 -riel n 1 2 @ %p 1 0 13697840 -riemann n 1 2 @ + 1 0 11262168 -riemannian_geometry n 1 2 @ ; 1 0 06007381 -riesling n 2 3 @ #s %s 2 0 13147270 07897438 -riesman n 1 1 @ 1 0 11262340 -rifadin n 1 2 @ ; 1 0 04090064 -rifampin n 1 1 @ 1 0 04090064 -riff n 2 2 @ + 2 0 10530475 07045788 -riffian n 1 1 @ 1 0 10530475 -riffle n 2 2 @ + 2 0 07344663 00340838 -riffraff n 1 2 @ ~ 1 0 08401819 -rifle n 1 3 @ ~ %p 1 1 04090263 -rifle_ball n 1 1 @ 1 1 04090548 -rifle_butt n 1 2 @ #p 1 0 04090682 -rifle_grenade n 1 1 @ 1 0 04090781 -rifle_range n 2 1 @ 2 0 08631945 04090923 -rifle_shot n 1 1 @ 1 0 08631945 -riflebird n 1 1 @ 1 0 01571410 -rifleman n 2 2 @ ~ 2 2 10530677 10530571 -rifleman_bird n 1 2 @ #m 1 0 01588996 -rifling n 1 1 @ 1 0 00926026 -rift n 3 2 @ ~ 3 1 09410101 09410026 07313814 -rift_valley n 1 2 @ ~ 1 0 09410224 -rift_valley_fever n 1 1 @ 1 0 14179569 -rig n 7 5 @ ~ %m %p + 7 1 04091097 04467665 04091247 03859958 03351434 02968473 00780148 -rig-veda n 1 1 @ 1 1 06465008 -riga n 1 3 @ #m #p 1 0 09013353 -rigamarole n 2 1 @ 2 0 06609672 01026316 -rigatoni n 1 1 @ 1 0 07700348 -rigel n 1 1 @ 1 0 09410365 -rigger n 4 2 @ + 4 2 10530769 04091466 10530862 04091584 -rigger_brush n 1 1 @ 1 0 04091466 -rigging n 2 3 @ ~ + 2 0 04091693 04091247 -riggs'_disease n 1 2 @ ~ 1 0 14080836 -right n 8 6 ! @ ~ #p + ; 8 7 05174653 08625073 04091839 08416652 05565337 00351000 04850341 13341756 -right-angled_triangle n 1 2 @ %p 1 0 13880551 -right-hand_man n 1 1 @ 1 0 10531109 -right-handed_pitcher n 1 2 @ ; 1 0 10387324 -right-handedness n 1 2 @ + 1 0 05067514 -right-hander n 2 2 @ ; 2 1 10387324 10530959 -right-winger n 1 2 @ ~ 1 0 10531227 -right_angle n 1 3 ! @ %p 1 1 13892237 -right_ascension n 1 2 @ ; 1 0 08633191 -right_atrioventricular_valve n 1 1 @ 1 0 05393996 -right_atrium n 1 1 @ 1 0 05393429 -right_atrium_of_the_heart n 1 1 @ 1 0 05393429 -right_bank n 1 2 @ #p 1 0 08933940 -right_brain n 1 1 @ 1 0 05477510 -right_coronary_artery n 1 1 @ 1 1 05344073 -right_field n 2 4 @ #m #p + 2 0 04091839 00724898 -right_fielder n 1 2 @ + 1 0 10387196 -right_gastric_artery n 1 1 @ 1 0 05345783 -right_gastric_vein n 1 1 @ 1 0 05378850 -right_hand n 1 1 @ 1 1 05565337 -right_hander n 1 1 @ 1 0 10530959 -right_hemisphere n 1 1 @ 1 0 05477510 -right_of_action n 1 1 @ 1 0 05187857 -right_of_election n 1 2 @ ; 1 0 05188801 -right_of_entry n 1 2 @ ; 1 1 05189057 -right_of_first_publication n 1 1 @ 1 0 06473168 -right_of_offset n 1 2 @ ; 1 0 05189396 -right_of_privacy n 1 2 @ ; 1 0 05189591 -right_of_re-entry n 1 2 @ ; 1 0 05189208 -right_of_search n 1 1 @ 1 0 05187941 -right_of_way n 3 1 @ 3 0 05189819 05188095 04092013 -right_stage n 1 2 @ #p 1 0 08625297 -right_to_an_attorney n 1 2 @ ; 1 0 05185444 -right_to_confront_accusors n 1 2 @ ; 1 0 05185598 -right_to_due_process n 1 2 @ ; 1 0 05184620 -right_to_liberty n 1 1 @ 1 0 05182157 -right_to_life n 1 1 @ 1 0 05182080 -right_to_privacy n 1 1 @ 1 0 05181975 -right_to_speedy_and_public_trial_by_jury n 1 2 @ ; 1 0 05185270 -right_to_the_pursuit_of_happiness n 1 1 @ 1 0 05182240 -right_to_vote n 1 3 @ ~ ; 1 1 05186306 -right_triangle n 1 3 ! @ %p 1 0 13880551 -right_ventricle n 1 1 @ 1 1 05392157 -right_whale n 1 2 @ #m 1 0 02063662 -right_wing n 1 3 @ ~ + 1 0 08416652 -righteousness n 1 4 ! @ ~ + 1 1 04826235 -righteye_flounder n 1 3 @ ~ #m 1 0 02658079 -righteyed_flounder n 1 3 @ ~ #m 1 0 02658079 -rightfield n 2 3 @ #m #p 2 1 04091839 00724898 -rightfulness n 1 3 ! @ + 1 0 04850341 -righthander n 1 1 @ 1 0 10530959 -rightism n 1 2 @ + 1 0 06220449 -rightist n 1 3 @ ~ + 1 0 10531227 -rightness n 4 4 ! @ = + 4 1 04847133 04899031 04802198 04713853 -rights_issue n 1 1 @ 1 0 07166432 -rights_offering n 1 1 @ 1 0 07166432 -rigidification n 1 3 @ ~ + 1 0 13561521 -rigidifying n 1 3 @ ~ + 1 0 13561521 -rigidity n 2 3 @ ~ + 2 0 05023741 04660261 -rigidness n 2 3 @ ~ + 2 0 05023741 04660261 -rigil n 1 2 @ #m 1 0 09193772 -rigil_kent n 1 2 @ #m 1 0 09193772 -rigmarole n 2 1 @ 2 0 06609672 01026316 -rigor n 3 3 @ ~ + 3 1 04710127 04783567 04639732 -rigor_mortis n 2 1 @ 2 0 14049420 13551823 -rigorousness n 2 3 @ ~ + 2 0 04710127 04639732 -rigour n 3 2 @ ~ 3 0 04783567 04710127 04639732 -rigourousness n 2 2 @ ~ 2 0 04710127 04639732 -rigout n 1 2 @ + 1 0 04092168 -rijstafel n 1 1 @ 1 0 07875267 -rijstaffel n 1 1 @ 1 0 07875267 -rijsttaffel n 1 1 @ 1 0 07875267 -riksmaal n 1 1 @ 1 0 06954640 -riksmal n 1 1 @ 1 0 06954640 -riley n 1 1 @ 1 0 11262468 -riley_b_king n 1 1 @ 1 0 11105298 -rilievo n 1 2 @ ~ 1 0 04073669 -rilke n 1 1 @ 1 0 11262574 -rill n 2 1 @ 2 0 09415938 09410460 -rim n 5 5 @ ~ #p + ; 5 1 13902336 04092447 04092305 03356858 02902250 -rim_blight n 1 1 @ 1 0 14218637 -rima n 1 2 @ ~ 1 0 05610008 -rima_glottidis n 1 2 @ #p 1 0 05610198 -rima_oris n 1 4 @ ~ #p %p 1 0 05302499 -rima_pudendi n 1 2 @ #p 1 0 05522784 -rima_respiratoria n 1 1 @ 1 0 05610365 -rima_vestibuli n 1 1 @ 1 0 05610365 -rima_vocalis n 1 2 @ #p 1 0 05610198 -rima_vulvae n 1 2 @ #p 1 0 05522784 -rimactane n 1 2 @ ; 1 0 04090064 -rimbaud n 1 1 @ 1 0 11262765 -rime n 2 5 @ ~ #p + - 2 0 14915622 07096661 -rimski-korsakov n 1 1 @ 1 0 11262929 -rimsky-korsakov n 1 1 @ 1 0 11262929 -rimu n 1 2 @ #m 1 0 11654293 -rind n 1 2 @ ~ 1 0 07670731 -rinderpest n 1 1 @ 1 0 14272141 -ring n 9 8 @ ~ #m #p %m %p + ; 9 3 04981658 13875392 03533972 09246883 08244062 07391863 04092959 04092609 02785191 -ring-a-rosy n 1 1 @ 1 0 00460344 -ring-around-a-rosy n 1 1 @ 1 1 00460344 -ring-around-the-rosy n 1 1 @ 1 0 00460344 -ring-binder n 1 1 @ 1 0 02840245 -ring-necked_parakeet n 1 2 @ #m 1 0 01822300 -ring-necked_pheasant n 1 3 @ #m %p 1 0 01803362 -ring-necked_snake n 1 2 @ #m 1 0 01728920 -ring-stalked_fungus n 1 3 @ #m %m 1 0 13010401 -ring-tailed_cat n 1 2 @ #m 1 0 02508742 -ring-tailed_lemur n 1 2 @ #m 1 0 02497673 -ring_armor n 1 3 @ ~ ; 1 0 03000247 -ring_armour n 1 3 @ ~ ; 1 0 03000247 -ring_blackbird n 1 2 @ #m 1 0 01558765 -ring_containment n 1 2 @ ; 1 0 01147676 -ring_dance n 1 2 @ ~ 1 0 00539827 -ring_disease n 1 1 @ 1 0 14279235 -ring_finger n 1 1 @ 1 0 05567489 -ring_girl n 1 1 @ 1 0 10531694 -ring_lardner n 1 1 @ 1 0 11117744 -ring_mail n 1 3 @ ~ ; 1 0 03000247 -ring_of_color n 1 2 @ #p 1 0 05554804 -ring_ouzel n 1 2 @ #m 1 0 01558765 -ring_road n 1 2 @ ; 1 0 02828648 -ring_rot n 1 1 @ 1 0 14279235 -ring_rot_bacteria n 1 1 @ 1 0 01361113 -ring_rot_fungus n 1 2 @ #m 1 0 12974062 -ring_snake n 2 3 @ ~ #m 2 0 01737875 01728920 -ring_thrush n 1 2 @ #m 1 0 01558765 -ring_vaccination n 1 1 @ 1 0 00824357 -ringdove n 2 2 @ #m 2 0 01813658 01813088 -ringed_snake n 1 2 @ ~ 1 0 01737875 -ringer n 4 3 @ + ; 4 0 10714851 10531557 10531445 00106726 -ringer's_solution n 1 1 @ 1 0 14589994 -ringer_solution n 1 1 @ 1 0 14589994 -ringgit n 1 2 @ %p 1 0 13698076 -ringgold_wilmer_lardner n 1 1 @ 1 0 11117744 -ringhals n 1 1 @ 1 0 01749244 -ringing n 3 3 @ ~ + 3 2 07391863 07228531 04989657 -ringleader n 1 1 @ 1 0 10531838 -ringlet n 4 4 @ ~ #m #p 4 0 13875970 05257737 04093157 02277742 -ringlet_butterfly n 1 2 @ #m 1 0 02277742 -ringling n 1 1 @ 1 0 11263180 -ringmaster n 1 1 @ 1 0 10531948 -ringneck_snake n 1 2 @ #m 1 0 01728920 -ringo_starr n 1 2 @ #m 1 0 11313726 -rings n 1 2 @ ; 1 0 04093223 -ringside n 1 1 @ 1 0 04093478 -ringside_seat n 1 1 @ 1 0 04093478 -ringtail n 4 2 @ #m 4 0 02508742 02508213 02492035 01614690 -ringway n 1 2 @ ; 1 0 02828648 -ringworm n 1 2 @ ~ 1 0 14125466 -ringworm_bush n 1 2 @ ; 1 0 12499439 -ringworm_cassia n 1 2 @ ; 1 0 12499439 -ringworm_shrub n 1 2 @ ; 1 0 12499439 -rink n 1 2 @ ~ 1 0 04093625 -rinkhals n 1 1 @ 1 0 01749244 -rinse n 4 3 @ #p + 4 0 14988854 00396642 00256407 00256309 -rinsing n 1 3 @ #p + 1 0 00396642 -rio n 1 3 @ #p %m 1 0 08856266 -rio_bravo n 1 2 @ #p 1 0 09410724 -rio_de_janeiro n 1 3 @ #p %m 1 0 08856266 -rio_de_la_plata n 1 2 @ #p 1 0 09410558 -rio_grande n 1 2 @ #p 1 0 09410724 -rio_nunez_coffee n 1 1 @ 1 0 12663359 -rioja n 1 1 @ 1 0 07897865 -riot n 4 3 @ ~ + 4 1 01170502 13977043 06778925 00511212 -riot_act n 2 3 @ #p ; 2 0 06539076 06538895 -riot_control n 1 1 @ 1 0 00812154 -riot_control_operation n 1 1 @ 1 0 00812154 -riot_gun n 1 1 @ 1 0 04093775 -rioter n 1 2 @ + 1 0 10532058 -rioting n 1 2 @ + 1 0 13977043 -rip n 4 2 @ + 4 0 10505942 09410928 07404584 00391407 -rip-off n 1 3 @ + ; 1 0 00783063 -rip_current n 1 2 @ #p 1 0 07404443 -rip_van_winkle n 3 1 @ 3 0 10532479 10532393 09603471 -riparia n 1 3 @ #m %m 1 0 01596142 -riparia_riparia n 1 2 @ #m 1 0 01596273 -riparian_forest n 1 1 @ 1 0 09411189 -riparian_right n 1 1 @ 1 0 05188547 -ripcord n 2 2 @ #p 2 0 04094060 04093915 -ripe_olive n 1 1 @ 1 0 07767549 -ripeness n 1 3 ! @ + 1 0 14425601 -ripening n 2 3 @ ~ + 2 1 13512238 13551965 -riposte n 2 4 @ ~ + ; 2 0 07199922 01174825 -ripper n 1 1 @ 1 0 10532252 -ripping_bar n 1 2 @ %p 1 0 04094250 -ripping_chisel n 1 2 @ #p 1 0 04094438 -ripple n 2 3 @ + ; 2 2 07344663 07345441 -ripple-grass n 1 1 @ 1 0 12599185 -ripple_mark n 1 1 @ 1 0 09411295 -rippling n 1 2 @ + 1 0 07344663 -ripsaw n 1 1 @ 1 0 04094608 -riptide n 2 2 @ #p 2 0 07404584 07404443 -rira n 1 2 @ ; 1 0 08040762 -risc n 1 3 ! @ ; 1 0 04932875 -rise n 10 5 ! @ ~ + ; 10 6 07324917 00324384 09206985 07445480 05110185 05068918 07348399 07327288 05110408 00364260 -rise_to_power n 1 1 @ 1 0 00236581 -riser n 3 4 @ ~ #p + 3 0 10532576 04094859 04094720 -riser_main n 1 1 @ 1 0 04094859 -riser_pipe n 1 1 @ 1 0 04094859 -riser_pipeline n 1 1 @ 1 0 04094859 -risibility n 1 2 @ + 1 0 04640830 -rising n 2 3 @ ~ + 2 0 07445480 00962129 -rising_prices n 1 2 @ ~ 1 0 13498828 -rising_slope n 1 1 @ 1 0 05068918 -rising_tide n 1 1 @ 1 0 07403030 -rising_trot n 1 2 ! @ 1 0 00287762 -risk n 4 3 @ ~ + 4 2 14541852 00802238 05093418 05093293 -risk_arbitrage n 1 1 @ 1 0 01094293 -risk_capital n 1 1 @ 1 0 13354260 -risk_of_exposure n 1 1 @ 1 0 05093293 -risk_of_infection n 1 1 @ 1 0 05093418 -risk_taker n 1 1 @ 1 0 10119200 -riskiness n 1 3 @ ~ + 1 0 14543552 -risklessness n 1 2 @ + 1 0 14538908 -risky_venture n 1 1 @ 1 0 00796315 -risotto n 1 1 @ 1 0 07875436 -riss_glaciation n 1 1 @ 1 0 13487638 -rissa n 1 3 @ #m %m 1 0 02042637 -rissole n 1 1 @ 1 0 07866277 -ritalin n 1 2 @ ; 1 0 03756624 -rite n 2 4 @ ~ %p + 2 2 01029406 01027859 -rite_of_passage n 1 1 @ 1 0 01037294 -ritonavir n 1 1 @ 1 0 04094983 -rittenhouse n 1 1 @ 1 0 11263337 -ritual n 3 4 @ ~ %p + 3 2 01027859 01030820 00414790 -ritual_dance n 1 3 @ ~ #p 1 0 00541479 -ritual_dancing n 1 3 @ ~ #p 1 0 00541479 -ritual_killing n 1 3 @ ~ ; 1 0 00227595 -ritualism n 2 2 @ + 2 0 06148002 01031023 -ritualist n 2 2 @ + 2 0 10532886 10532751 -ritz n 3 3 @ + ; 3 0 11263558 06889875 04095109 -rival n 1 3 @ ~ + 1 1 10533013 -rivalry n 1 3 @ ~ + 1 0 01168569 -river n 1 5 @ ~ #p %p - 1 1 09411430 -river_acheron n 1 3 @ #p ; 1 0 09186709 -river_adige n 1 2 @ #p 1 0 09187743 -river_aire n 1 2 @ #p 1 0 09191707 -river_arno n 1 2 @ #p 1 0 09206693 -river_avon n 2 2 @ #p 2 0 09212151 09211944 -river_basin n 1 2 @ ~ 1 0 08518940 -river_birch n 1 2 @ #m 1 0 12282933 -river_blindness n 1 1 @ 1 0 14454030 -river_boat n 1 2 @ ~ 1 0 04095210 -river_bottom n 1 1 @ 1 0 09415671 -river_boulder n 1 1 @ 1 0 09415793 -river_cam n 1 2 @ #p 1 0 09231587 -river_cocytus n 1 3 @ #p ; 1 0 09248724 -river_cooter n 1 2 @ #m 1 0 01668892 -river_dolphin n 1 2 @ #m 1 0 02072040 -river_gum n 1 2 @ %s 1 0 12336333 -river_horse n 1 2 @ #m 1 0 02398521 -river_kasai n 1 2 @ #p 1 0 09324474 -river_lethe n 1 3 @ #p ; 1 0 09338453 -river_limpet n 1 2 @ #m 1 0 01949973 -river_otter n 1 1 @ 1 0 02445004 -river_pear n 1 2 @ #p 1 0 07753448 -river_prawn n 2 4 @ #m #p %p 2 0 07794353 01987727 -river_red_gum n 1 2 @ %s 1 0 12336333 -river_severn n 1 2 @ #p 1 0 09430771 -river_shad n 1 1 @ 1 0 02530831 -river_styx n 1 3 @ #p ; 1 0 09449773 -river_thames n 1 2 @ #p 1 0 09457020 -river_trent n 1 2 @ #p 1 0 09461515 -river_tyne n 1 2 @ #p 1 0 09464805 -rivera n 1 1 @ 1 0 11263687 -riverbank n 1 1 @ 1 1 09415584 -riverbed n 1 1 @ 1 0 09415671 -riverside n 2 2 @ #p 2 0 09415584 09064861 -rivet n 2 3 @ %p + 2 0 04343346 04095342 -rivet_line n 1 1 @ 1 0 04095725 -riveter n 2 2 @ + 2 0 10533541 04095577 -riveting_machine n 1 1 @ 1 0 04095577 -rivetter n 2 2 @ + 2 0 10533541 04095577 -riviera n 1 3 @ #p %p 1 0 08939201 -rivina n 1 3 @ #m %m 1 0 11856389 -rivina_humilis n 1 2 @ #m 1 0 11856573 -rivulet n 1 1 @ 1 1 09415938 -rivulus n 1 2 @ #m 1 0 01447658 -riyadh n 1 3 @ ~ #p 1 0 08993871 -riyal n 2 2 @ %p 2 0 13698706 13698327 -riyal-omani n 1 2 @ %p 1 0 13697134 -rn n 2 2 @ ~ 2 0 14652104 10516527 -rna n 1 5 @ ~ %s %p ; 1 0 14832193 -rna_polymerase n 1 1 @ 1 0 14984687 -rnase n 1 1 @ 1 0 14832046 -ro n 1 1 @ 1 0 06897797 -roach n 5 4 @ ~ #m + 5 0 05261088 04095853 04036494 02233338 01442450 -roach_clip n 1 1 @ 1 0 04095938 -roach_holder n 1 1 @ 1 0 04095938 -road n 2 4 @ ~ %s %p 2 2 04096066 00174003 -road_agent n 1 2 @ ~ 1 0 10175507 -road_builder n 1 1 @ 1 0 10533681 -road_construction n 1 1 @ 1 0 00912733 -road_game n 1 1 @ 1 1 00456690 -road_gang n 1 1 @ 1 0 08243492 -road_hog n 1 1 @ 1 0 10533780 -road_map n 2 2 @ ; 2 0 05912552 04097256 -road_mender n 1 1 @ 1 0 10533874 -road_metal n 1 1 @ 1 0 14696690 -road_rage n 1 1 @ 1 0 01170406 -road_roller n 1 1 @ 1 0 04310157 -road_runner n 1 1 @ 1 0 10292969 -road_sense n 1 1 @ 1 0 05615258 -road_show n 1 1 @ 1 1 00523078 -road_surface n 1 1 @ 1 0 04097527 -road_test n 1 2 @ ~ 1 0 05800153 -road_to_damascus n 1 1 @ 1 0 07418497 -roadbed n 1 3 @ #p %p 1 0 04096733 -roadblock n 2 2 @ ~ 2 1 05690916 04096848 -roadbook n 1 1 @ 1 0 06423090 -roadhog n 1 1 @ 1 0 10533780 -roadhouse n 1 1 @ 1 0 04097085 -roadkill n 1 1 @ 1 0 01759009 -roadman n 2 2 @ ~ 2 0 10726786 10533874 -roadrunner n 1 2 @ #m 1 0 01824035 -roads n 1 1 @ 1 0 08640300 -roadside n 1 2 @ #p 1 1 04565233 -roadstead n 1 1 @ 1 0 08640300 -roadster n 2 2 @ %p 2 0 04097373 02912557 -roadway n 1 2 @ ~ 1 1 04097622 -roadworthiness n 1 2 @ ; 1 0 04807626 -roald_amundsen n 1 1 @ 1 0 10816223 -roald_hoffmann n 1 1 @ 1 0 11054856 -roamer n 1 3 @ ~ + 1 0 10765679 -roan n 2 2 @ + 2 0 15014845 02375302 -roanoke n 1 2 @ #p 1 0 09151411 -roar n 3 2 @ + 3 2 07377682 07121361 07392280 -roarer n 1 3 @ ~ + 1 1 10533983 -roaring n 2 2 @ + 2 1 07377682 07121361 -roast n 2 3 @ ~ + 2 0 07580782 05734381 -roast_beef n 1 1 @ 1 0 07663796 -roast_beef_plant n 1 1 @ 1 0 12413642 -roast_lamb n 1 2 @ ~ 1 0 07668215 -roast_pork n 1 1 @ 1 0 07669788 -roast_veal n 1 2 @ ~ 1 0 07665844 -roaster n 4 4 @ ~ + ; 4 0 10534389 10534277 07645631 04097760 -roasting n 1 4 @ ~ %p + 1 0 00247442 -rob_roy n 2 2 @ %s 2 0 11147348 07915800 -robalo n 1 3 @ ~ #m 1 0 02559862 -robaxin n 1 2 @ ; 1 0 03755545 -robber n 1 3 @ ~ + 1 1 10534586 -robber_fly n 1 2 @ #m 1 0 02196119 -robber_frog n 2 2 @ #m 2 0 01643507 01643255 -robbery n 2 3 @ ~ + 2 1 00781685 00966599 -robbery_conviction n 1 2 @ ; 1 0 01194225 -robbery_suspect n 1 1 @ 1 0 10534748 -robbins n 1 1 @ 1 0 11263803 -robe n 2 3 @ ~ + 2 2 04097866 03450516 -robe-de-chambre n 1 1 @ 1 0 03237992 -robert n 1 1 @ 1 0 11264002 -robert's_rules_of_order n 1 1 @ 1 0 10534849 -robert_a._heinlein n 1 1 @ 1 0 11038505 -robert_abram_bartlett n 1 1 @ 1 0 10837023 -robert_adam n 1 1 @ 1 0 10808045 -robert_alexander_schumann n 1 1 @ 1 0 11287016 -robert_andrews_millikan n 1 1 @ 1 0 11180476 -robert_anson_heinlein n 1 1 @ 1 0 11038505 -robert_barany n 1 1 @ 1 0 10834176 -robert_bartlett n 1 1 @ 1 0 10837023 -robert_benchley n 1 1 @ 1 0 10843705 -robert_boyle n 1 1 @ 1 0 10860108 -robert_brown n 1 1 @ 1 0 10866385 -robert_browning n 1 1 @ 1 0 10867064 -robert_bruce_mathias n 1 1 @ 1 0 11164332 -robert_bunsen n 1 1 @ 1 0 10871424 -robert_burns n 1 1 @ 1 0 10873679 -robert_burns_woodward n 1 1 @ 1 0 11396338 -robert_charles_benchley n 1 1 @ 1 0 10843705 -robert_charles_venturi n 1 1 @ 1 0 11362885 -robert_clive n 1 1 @ 1 0 10902934 -robert_curl n 1 1 @ 1 0 10918119 -robert_de_niro n 1 1 @ 1 0 10930913 -robert_e._lee n 1 1 @ 1 0 11123590 -robert_e._peary n 1 1 @ 1 0 11227796 -robert_e_lee's_birthday n 1 1 @ 1 0 15182569 -robert_e_lee_day n 1 1 @ 1 0 15182569 -robert_edward_lee n 1 1 @ 1 0 11123590 -robert_edwin_peary n 1 1 @ 1 0 11227796 -robert_emmet_sherwood n 1 1 @ 1 0 11298403 -robert_f._curl n 1 1 @ 1 0 10918119 -robert_falcon_scott n 1 1 @ 1 0 11289491 -robert_floyd_curl_jr. n 1 1 @ 1 0 10918119 -robert_frost n 1 1 @ 1 0 10983931 -robert_fulton n 1 1 @ 1 0 10985838 -robert_graves n 1 1 @ 1 0 11012300 -robert_gray n 1 1 @ 1 0 11012676 -robert_herrick n 1 1 @ 1 0 11045796 -robert_hooke n 1 1 @ 1 0 11057925 -robert_hutchings_goddard n 1 1 @ 1 0 11002895 -robert_i n 1 1 @ 1 0 10867473 -robert_indiana n 1 1 @ 1 0 11071467 -robert_james_fischer n 1 1 @ 1 0 10971528 -robert_jemison_van_de_graaff n 1 1 @ 1 0 11359037 -robert_joffrey n 1 1 @ 1 0 11085813 -robert_king_merton n 1 1 @ 1 0 11176669 -robert_koch n 1 1 @ 1 0 11108400 -robert_lee_frost n 1 1 @ 1 0 10983931 -robert_louis_balfour_stevenson n 1 1 @ 1 0 11317897 -robert_louis_stevenson n 1 1 @ 1 0 11317897 -robert_lowell n 1 1 @ 1 0 11142788 -robert_m._yerkes n 1 1 @ 1 0 11402626 -robert_macgregor n 1 1 @ 1 0 11147348 -robert_maynard_hutchins n 1 1 @ 1 0 11068922 -robert_mearns_yerkes n 1 1 @ 1 0 11402626 -robert_merton n 1 1 @ 1 0 11176669 -robert_mills n 1 1 @ 1 0 11180643 -robert_mitchum n 1 1 @ 1 0 11182966 -robert_morris n 1 1 @ 1 0 11191848 -robert_motherwell n 1 1 @ 1 0 11193928 -robert_nesta_marley n 1 1 @ 1 0 11157580 -robert_oppenheimer n 1 1 @ 1 0 11215909 -robert_orr n 1 1 @ 1 0 11217072 -robert_owen n 1 1 @ 1 0 11219121 -robert_peary n 1 1 @ 1 0 11227796 -robert_peel n 1 1 @ 1 0 11228039 -robert_penn_warren n 1 1 @ 1 0 11374952 -robert_r._livingston n 1 1 @ 1 0 11135610 -robert_ranke_graves n 1 1 @ 1 0 11012300 -robert_redford n 1 1 @ 1 0 11256125 -robert_robinson n 1 1 @ 1 0 11266524 -robert_schumann n 1 1 @ 1 0 11287016 -robert_scott n 1 1 @ 1 0 11289491 -robert_southey n 1 2 @ #m 1 0 11309164 -robert_the_bruce n 1 1 @ 1 0 10867473 -robert_traill_spence_lowell_jr. n 1 1 @ 1 0 11142788 -robert_treat_paine n 1 1 @ 1 0 11221107 -robert_tyre_jones n 1 1 @ 1 0 11090512 -robert_van_de_graaff n 1 1 @ 1 0 11359037 -robert_venturi n 1 1 @ 1 0 11362885 -robert_walpole n 1 1 @ 1 0 11372372 -robert_wilhelm_bunsen n 1 1 @ 1 0 10871424 -robert_william_service n 1 1 @ 1 0 11293636 -robert_woodrow_wilson n 1 1 @ 1 0 11391915 -robert_woodward n 1 1 @ 1 0 11396338 -roberto_francesco_romolo_bellarmine n 1 1 @ 1 0 10842730 -roberts n 4 1 @ 4 0 11264614 11264508 11264343 11264193 -robertson n 1 1 @ 1 0 11264828 -robeson n 1 1 @ 1 0 11264973 -robespierre n 1 1 @ 1 0 11265183 -robin n 2 2 @ #m 2 0 01562265 01558993 -robin's_plantain n 1 1 @ 1 0 11967142 -robin_goodfellow n 1 1 @ 1 0 09541809 -robin_hood n 1 1 @ 1 0 10535047 -robin_redbreast n 1 2 @ #m 1 0 01562265 -robinia n 1 3 @ #m %m 1 0 12567768 -robinia_hispida n 1 2 @ #m 1 0 12567950 -robinia_pseudoacacia n 1 3 @ #m %s 1 0 12568186 -robinia_viscosa n 1 2 @ #m 1 0 12568649 -robinson n 7 1 @ 7 0 11266524 11266279 11266117 11265914 11265731 11265591 11265416 -robinson_crusoe n 1 1 @ 1 0 10535196 -robinson_jeffers n 1 1 @ 1 0 11081673 -robitussin n 1 1 @ 1 0 04098032 -roble n 2 1 @ 2 0 12562785 12273939 -roble_beech n 1 2 @ #m 1 0 12267133 -robot n 1 2 @ ~ 1 0 02761392 -robot_bomb n 1 1 @ 1 0 02929923 -robot_pilot n 1 2 @ %p 1 0 02762169 -robotic_telesurgery n 1 1 @ 1 0 00685196 -robotics n 1 2 @ ~ 1 0 06133654 -robotics_equipment n 1 1 @ 1 0 04098169 -robusta_coffee n 1 1 @ 1 0 12663359 -robustness n 2 2 @ + 2 1 05031012 04920000 -roc n 1 1 @ 1 0 09501322 -rocambole n 1 1 @ 1 0 12434985 -roccella n 1 2 @ #m 1 0 12989007 -roccella_tinctoria n 1 2 @ #m 1 0 12989007 -roccellaceae n 1 3 @ #m %m 1 0 12988703 -rocco_marciano n 1 1 @ 1 0 11155943 -roccus n 1 3 @ #m %m 1 0 02567960 -roccus_saxatilis n 1 2 @ #m 1 0 02568087 -rocephin n 1 2 @ ; 1 0 02989893 -rochambeau n 1 1 @ 1 0 11266703 -rochelle_powder n 1 1 @ 1 0 15009637 -rochelle_salt n 1 1 @ 1 0 15009474 -rochelle_salts n 1 1 @ 1 0 15009474 -rochester n 2 2 @ #p 2 0 09125203 09103112 -rochon_prism n 1 1 @ 1 0 04098260 -rock n 7 6 @ ~ %s %p + - 7 2 09416076 14696793 11266920 10535366 07609083 07064715 00348008 -rock'n'roll n 1 4 @ ~ %p - 1 0 07064715 -rock-and-roll n 1 4 @ ~ %p - 1 0 07064715 -rock_'n'_roll n 1 4 @ ~ %p - 1 0 07064715 -rock_'n'_roll_musician n 1 2 @ ~ 1 0 10535881 -rock_and_roll n 1 4 @ ~ %p - 1 0 07064715 -rock_band n 1 2 @ ~ 1 0 08250501 -rock_barnacle n 1 2 @ #m 1 0 01998741 -rock_bass n 2 2 @ #m 2 0 02567633 02564403 -rock_beauty n 1 1 @ 1 0 02606052 -rock_bit n 1 1 @ 1 0 04098399 -rock_bottom n 1 1 @ 1 0 08512182 -rock_brake n 3 3 @ ~ #m 3 0 13211790 13210205 13173697 -rock_cake n 1 1 @ 1 0 07642070 -rock_candy n 2 1 @ 2 0 07609083 07608980 -rock_climber n 1 1 @ 1 0 10535604 -rock_climbing n 1 1 @ 1 0 00326094 -rock_concert n 1 1 @ 1 0 06892979 -rock_cornish n 1 2 @ %p 1 0 01790557 -rock_cornish_hen n 1 2 @ #p 1 0 07646163 -rock_crab n 1 2 @ #m 1 0 01978455 -rock_cress n 1 3 @ ~ #m 1 0 11872146 -rock_crystal n 1 2 @ ~ 1 0 14694293 -rock_dove n 1 2 @ #m 1 0 01812662 -rock_drill n 1 2 @ ~ 1 0 02875436 -rock_elm n 2 2 @ #m 2 0 12408873 12406488 -rock_fever n 1 1 @ 1 0 14128029 -rock_garden n 1 1 @ 1 0 04099854 -rock_geranium n 1 1 @ 1 0 12798466 -rock_group n 1 2 @ ~ 1 0 08250501 -rock_gunnel n 1 3 @ #m %p 1 0 02615298 -rock_harlequin n 1 1 @ 1 0 11904477 -rock_hind n 1 2 @ #m 1 0 02569631 -rock_hopper n 1 2 @ #m 1 0 02057330 -rock_hyrax n 1 2 @ #m 1 0 02372952 -rock_island n 1 2 @ #p 1 0 09084298 -rock_kangaroo n 1 2 @ #m 1 0 01878929 -rock_lobster n 2 4 @ #m #p %p 2 0 07793260 01984695 -rock_maple n 1 1 @ 1 0 12753245 -rock_music n 1 4 @ ~ %p - 1 0 07064715 -rock_of_gibraltar n 1 3 @ #p %m 1 0 09028841 -rock_oil n 1 3 @ ~ %s 1 0 14980579 -rock_opera n 1 1 @ 1 0 06592281 -rock_outcrop n 1 2 @ ~ 1 1 09381242 -rock_partridge n 1 2 @ #m 1 0 01808291 -rock_penstemon n 1 2 @ #m 1 0 12887713 -rock_pigeon n 1 2 @ #m 1 0 01812662 -rock_pink n 1 2 @ #m 1 0 11863717 -rock_plant n 1 2 @ ~ 1 0 13123681 -rock_polypody n 1 1 @ 1 0 13173697 -rock_purslane n 1 2 @ #m 1 0 11858703 -rock_python n 1 2 @ #m 1 1 01744401 -rock_rabbit n 2 3 @ ~ #m 2 0 02372952 02328429 -rock_rattlesnake n 1 2 @ #m 1 0 01756733 -rock_rose n 2 3 @ ~ #m 2 0 12376073 12374418 -rock_salmon n 1 2 @ ; 1 0 07795598 -rock_salt n 1 2 @ %s 1 0 14672224 -rock_sandwort n 1 1 @ 1 0 11806679 -rock_sea_bass n 1 2 @ #m 1 0 02567633 -rock_snake n 1 2 @ #m 1 0 01744401 -rock_spikemoss n 1 1 @ 1 0 13225075 -rock_springs n 1 2 @ #p 1 0 09160168 -rock_squirrel n 1 1 @ 1 0 02358890 -rock_star n 1 2 @ ~ 1 0 10536416 -rock_sunfish n 1 2 @ #m 1 0 02564403 -rock_wallaby n 1 2 @ #m 1 0 01878929 -rock_wool n 1 1 @ 1 0 14769644 -rock_wren n 2 2 @ #m 2 0 01588725 01585715 -rockabilly n 1 1 @ 1 0 07064537 -rockchuck n 1 1 @ 1 0 02361850 -rockcress n 2 4 @ ~ #m #p 2 0 11874081 11872146 -rockefeller n 1 1 @ 1 0 11267113 -rocker n 7 7 @ ~ #m #p %p + ; 7 0 10536021 10535881 10535706 04099969 04098795 04098710 04098513 -rocker_arm n 1 1 @ 1 0 04099003 -rockers n 1 2 @ %m 1 0 08370878 -rockery n 1 1 @ 1 0 04099854 -rocket n 5 6 @ ~ #m #p %p + 5 2 04099429 04099175 11886537 07263053 04232902 -rocket_base n 1 2 @ ; 1 0 04099649 -rocket_cress n 1 2 @ #p 1 0 11874081 -rocket_engine n 1 3 @ ~ #p 1 0 04099175 -rocket_engineer n 1 2 @ ~ 1 0 10536134 -rocket_firing n 1 2 @ ~ 1 0 00103419 -rocket_fuel n 1 2 @ %p 1 0 14692026 -rocket_larkspur n 1 2 @ #m 1 0 11732567 -rocket_launcher n 1 2 @ ~ 1 0 03647520 -rocket_launching n 1 2 @ ~ 1 0 00103419 -rocket_propellant n 1 2 @ %p 1 0 14692026 -rocket_propellent n 1 2 @ %p 1 0 14692026 -rocket_propulsion n 1 1 @ 1 0 11498679 -rocket_range n 1 1 @ 1 0 04099761 -rocket_salad n 1 2 @ #m 1 0 11886537 -rocket_scientist n 2 2 @ ~ 2 0 10536274 10536134 -rocketry n 1 2 @ + 1 0 06135659 -rockfish n 3 5 @ ~ #m #p %p 3 0 07792219 02644113 02568087 -rockfoil n 1 3 @ ~ #m 1 0 12793015 -rockford n 1 2 @ #p 1 0 09084196 -rockies n 1 3 @ #p %p 1 0 09416570 -rockiness n 1 2 @ + 1 0 04772191 -rocking_chair n 1 3 @ ~ %p 1 0 04099969 -rocking_horse n 1 2 @ %p 1 0 03523633 -rockingham n 1 1 @ 1 0 11267343 -rockingham_podocarp n 1 2 @ #m 1 0 11652376 -rockrose n 2 3 @ ~ #m 2 0 12376073 12374418 -rockrose_family n 1 3 @ #m %m 1 0 12374002 -rockslide n 1 1 @ 1 0 07405817 -rockweed n 1 3 @ ~ #m 1 0 01404628 -rockwell n 1 1 @ 1 0 11267568 -rockwell_kent n 1 1 @ 1 0 11101576 -rocky-mountain_maple n 1 1 @ 1 0 12754174 -rocky_marciano n 1 1 @ 1 0 11155943 -rocky_mountain_bee_plant n 1 1 @ 1 0 11866706 -rocky_mountain_bighorn n 1 2 @ #m 1 0 02415577 -rocky_mountain_bristlecone_pine n 1 1 @ 1 0 11617272 -rocky_mountain_dogbane n 1 1 @ 1 0 11768108 -rocky_mountain_goat n 1 2 @ #m 1 0 02418465 -rocky_mountain_jay n 1 1 @ 1 0 01581434 -rocky_mountain_national_park n 1 2 @ #p 1 0 08608813 -rocky_mountain_pinon n 1 1 @ 1 0 11610047 -rocky_mountain_sheep n 1 2 @ #m 1 0 02415577 -rocky_mountain_spotted_fever n 1 1 @ 1 0 14141656 -rocky_mountain_whitefish n 1 2 @ #m 1 0 02540091 -rocky_mountains n 1 3 @ #p %p 1 0 09416570 -rocky_mountains_cherry n 1 2 @ #m 1 0 12642734 -rococo n 1 1 @ 1 0 04699767 -rocroi n 1 3 @ #p ; 1 0 01292735 -rod n 6 5 @ ~ #p %p ; 6 2 04100174 01377602 13650921 13614679 05456456 03427202 -rod_cell n 1 3 @ #p %p 1 0 05456456 -rod_laver n 1 1 @ 1 0 11119634 -rodent n 1 3 @ ~ #m 1 0 02329401 -rodentia n 1 3 @ #m %m 1 0 02329093 -rodeo n 2 2 @ %p 2 1 00522939 04100519 -rodeo_rider n 1 1 @ 1 0 09973072 -rodgers n 1 1 @ 1 0 11267745 -rodhos n 1 2 @ #p 1 0 08783812 -rodin n 1 1 @ 1 0 11267949 -rodney_george_laver n 1 1 @ 1 0 11119634 -rodolia n 1 3 @ #m %m 1 0 02166674 -rodolia_cardinalis n 1 2 @ #m 1 0 02166826 -rodomontade n 1 1 @ 1 0 07230089 -rodrigo_borgia n 1 1 @ 1 0 10813204 -rodya_raskolnikov n 1 1 @ 1 0 10507783 -roe n 4 3 @ ~ #p 4 0 07799278 02322624 01461532 01461445 -roe_deer n 1 3 @ ~ #m 1 0 02433546 -roebling n 1 1 @ 1 0 11268118 -roebuck n 1 1 @ 1 0 02433729 -roentgen n 2 1 @ 2 0 13646031 11268326 -roentgen_ray n 1 1 @ 1 0 11527177 -roentgenium n 1 1 @ 1 0 14652824 -roentgenogram n 1 2 @ ~ 1 0 04100620 -roentgenography n 1 3 @ ~ + 1 0 00904623 -roentgenoscope n 1 1 @ 1 0 03370646 -rofecoxib n 1 1 @ 1 0 04100994 -rogaine n 1 1 @ 1 0 03771820 -rogation n 1 1 @ 1 0 07190474 -rogation_day n 1 1 @ 1 0 15192736 -roger_bacon n 1 1 @ 1 0 10830731 -roger_bannister n 1 1 @ 1 0 10833595 -roger_brooke_taney n 1 1 @ 1 0 11330692 -roger_de_mortimer n 1 1 @ 1 0 11192901 -roger_eliot_fry n 1 2 @ #m 1 0 10984257 -roger_fry n 1 2 @ #m 1 0 10984257 -roger_huntington_sessions n 1 1 @ 1 0 11293805 -roger_sessions n 1 1 @ 1 0 11293805 -roger_sherman n 1 1 @ 1 0 11297756 -roger_taney n 1 1 @ 1 0 11330692 -roger_williams n 1 1 @ 1 0 11389619 -rogers n 3 1 @ 3 0 11268883 11268667 11268523 -roget n 1 1 @ 1 0 11269085 -rogue n 1 1 @ 1 1 10536728 -rogue's_gallery n 2 1 @ 2 0 08406259 08406160 -rogue_elephant n 1 1 @ 1 0 02503756 -rogue_nation n 1 1 @ 1 0 08170374 -rogue_state n 1 1 @ 1 0 08170374 -roguery n 1 2 @ ~ 1 0 00736375 -roguishness n 2 3 @ ~ + 2 0 04909721 00736375 -rohypnol n 1 2 @ ~ 1 0 03370020 -roi n 1 2 @ ; 1 0 15281329 -roisterer n 1 2 @ + 1 0 10536897 -rolaids n 1 2 @ ; 1 0 14777856 -roland_de_lassus n 1 1 @ 1 0 11118362 -rolando's_area n 1 1 @ 1 0 05489640 -rolando's_fissure n 1 2 @ #p 1 0 05223823 -role n 4 3 @ ~ = 4 4 00720565 05929008 05149325 00722061 -role_model n 1 2 @ ~ 1 0 10324851 -role_player n 2 2 @ ~ 2 0 10201535 09765278 -roleplaying n 1 2 @ + 1 1 00552097 -rolf n 1 1 @ 1 0 11269236 -roll n 15 5 @ ~ #p + ; 15 4 07441619 06495000 07349532 04101375 13875970 13356569 07680932 07389330 07388816 06407733 04101232 01245813 00289659 00170340 00104409 -roll-on n 2 1 @ 2 0 04103769 04103665 -roll-on_roll-off n 1 2 @ ; 1 0 04103918 -roll_call n 1 2 @ ~ 1 0 01011883 -roll_film n 1 1 @ 1 0 04102872 -roll_in_the_hay n 1 2 @ ; 1 0 00846021 -roll_of_tobacco n 1 2 @ ~ 1 0 04103491 -rollback n 2 1 @ 2 0 00980779 00362258 -rolled_biscuit n 1 1 @ 1 0 07694169 -rolled_oats n 1 2 @ #s 1 0 07568502 -roller n 7 5 @ ~ #m #p + 7 1 00129435 07349532 04101701 04101497 03150232 01826364 01814755 -roller-skater n 1 3 @ ~ + 1 0 10537107 -roller_bandage n 1 1 @ 1 0 04101860 -roller_bearing n 1 1 @ 1 0 02780315 -roller_bit n 1 1 @ 1 0 04098399 -roller_blind n 1 2 @ %p 1 0 04102285 -roller_coaster n 2 2 @ ~ 2 0 13979786 04102406 -roller_skate n 1 3 @ %p + 1 1 04102618 -roller_skating n 1 2 @ ~ 1 0 00448958 -roller_towel n 1 1 @ 1 0 04102760 -rollerblade n 1 3 @ + ; 1 0 04102162 -rollerblader n 1 1 @ 1 0 10537018 -rollerblading n 1 1 @ 1 0 00448872 -rolling n 3 2 @ + 3 0 07389330 00783762 00122530 -rolling_hitch n 1 2 @ ~ 1 0 04102962 -rolling_mill n 1 1 @ 1 0 04103094 -rolling_paper n 1 1 @ 1 0 14812566 -rolling_pin n 1 1 @ 1 0 04103206 -rolling_stock n 1 1 @ 1 1 04103364 -rolling_wave n 1 1 @ 1 0 07349532 -rollmops n 1 1 @ 1 0 07785487 -rollo n 1 1 @ 1 0 11269236 -rollover n 1 2 @ + 1 0 01155722 -rolodex n 1 2 @ ; 1 0 04104147 -roly-poly n 2 2 @ ; 2 0 10082146 07620145 -roly-poly_pudding n 1 2 @ ; 1 0 07620145 -rolypoliness n 1 2 @ + 1 0 05001089 -rom n 1 3 @ ~ ; 1 0 04058239 -roma n 2 6 @ ~ #p %m %p - 2 0 10154186 08806897 -romaic n 1 2 @ + 1 0 06976833 -romaine n 1 1 @ 1 0 07724492 -romaine_lettuce n 2 2 @ #m 2 0 11986729 07724492 -roman n 3 4 @ ~ #m + 3 1 09716933 09717047 06827503 -roman_a_clef n 1 1 @ 1 0 06369077 -roman_alphabet n 1 2 @ %m 1 0 06497872 -roman_arch n 1 1 @ 1 0 04104384 -roman_architecture n 1 1 @ 1 0 05842290 -roman_basilica n 1 1 @ 1 0 02801047 -roman_building n 1 2 @ ~ 1 0 04104500 -roman_calendar n 1 1 @ 1 0 15173830 -roman_candle n 1 1 @ 1 1 04104641 -roman_catholic n 2 6 @ ~ #m %m %p - 2 2 09680504 08083599 -roman_catholic_church n 1 4 @ %m %p - 1 1 08083599 -roman_catholic_pope n 1 3 @ ~ #m 1 0 10453533 -roman_catholicism n 1 1 @ 1 1 06227562 -roman_church n 1 4 @ %m %p - 1 1 08083599 -roman_collar n 1 1 @ 1 1 03041964 -roman_coriander n 1 1 @ 1 0 11737125 -roman_deity n 1 3 @ ~ ; 1 0 09552681 -roman_emperor n 1 2 @ ~ 1 0 10537240 -roman_empire n 1 5 @ #p %m %p - 1 0 08800258 -roman_fleuve n 1 1 @ 1 0 06369690 -roman_hyacinth n 1 1 @ 1 0 12458713 -roman_inquisition n 1 1 @ 1 0 08333639 -roman_jakobson n 1 1 @ 1 0 11078774 -roman_law n 1 2 @ - 1 0 06534659 -roman_legion n 1 1 @ 1 0 08183920 -roman_letters n 1 1 @ 1 0 06827503 -roman_mile n 1 1 @ 1 0 13655414 -roman_mythology n 1 2 @ - 1 0 07983170 -roman_nettle n 1 2 @ #m 1 0 12392765 -roman_nose n 1 1 @ 1 1 05599501 -roman_numeral n 1 2 ! @ 1 0 06807657 -roman_osipovich_jakobson n 1 1 @ 1 0 11078774 -roman_pace n 1 1 @ 1 0 13655570 -roman_print n 1 1 @ 1 0 06827503 -roman_republic n 1 2 @ #p 1 0 08799958 -roman_times n 1 1 @ 1 0 15120715 -roman_type n 1 1 @ 1 0 06827503 -roman_wormwood n 2 2 @ #m 2 0 11930994 11904477 -romanal n 1 1 @ 1 0 06897976 -romance n 5 3 @ ~ + 5 2 13931436 05208422 06963951 06371267 06369216 -romance_language n 1 2 @ ~ 1 0 06963951 -romanesque n 1 2 @ ~ 1 0 05842706 -romanesque_architecture n 1 2 @ ~ 1 0 05842706 -romani n 1 2 @ ~ 1 0 10154186 -romania n 1 5 @ #p %m %p + 1 0 08813978 -romanian n 2 2 @ #m 2 0 09728285 06968343 -romanian_monetary_unit n 1 2 @ ~ 1 0 13685346 -romanism n 1 1 @ 1 0 06227562 -romanoff n 2 1 @ 2 0 10537708 08157672 -romanov n 2 1 @ 2 0 10537708 08157672 -romans n 1 2 @ #p 1 0 06443163 -romansh n 1 1 @ 1 0 06968174 -romantic n 2 1 @ 2 2 10537822 10537906 -romantic_movement n 1 1 @ 1 0 06155075 -romantic_realism n 1 1 @ 1 0 08468261 -romanticisation n 1 2 @ + 1 0 01219306 -romanticism n 3 4 ! @ ~ + 3 1 05152902 06155075 05208422 -romanticist n 2 3 ! @ + 2 0 10579676 10537906 -romanticization n 1 2 @ + 1 0 01219306 -romany n 2 2 @ ~ 2 0 10154186 06969822 -romberg n 1 1 @ 1 0 11269367 -rome n 2 5 @ #p %m %p - 2 2 08806897 08085535 -rome_beauty n 1 1 @ 1 0 07742605 -romeo n 1 1 @ 1 0 10538082 -rommany n 1 2 @ ~ 1 0 10154186 -rommel n 1 1 @ 1 0 11269515 -romneya n 1 3 @ #m %m 1 0 11907554 -romneya_coulteri n 1 2 @ #m 1 0 11907689 -romp n 3 3 @ ~ + 3 1 07475107 10715030 00511817 -romper n 2 2 @ + 2 0 10538154 04104770 -romper_suit n 1 1 @ 1 0 04104770 -romulus n 1 2 @ ; 1 0 09556305 -ron n 1 1 @ 1 0 06983114 -ronald_george_wreyford_norrish n 1 1 @ 1 0 11209675 -ronald_reagan n 1 1 @ 1 0 11255460 -ronald_wilson_reagan n 1 1 @ 1 0 11255460 -rondeau n 2 3 @ ~ + 2 0 07043968 06380879 -rondel n 1 2 @ ~ 1 0 06380879 -rondelet n 1 2 @ + 1 0 06381274 -rondo n 1 1 @ 1 0 07043968 -roneo n 1 3 @ + ; 1 0 03767459 -roneograph n 1 2 @ ; 1 0 03767459 -rontgen n 1 1 @ 1 0 11268326 -rood n 1 1 @ 1 0 03140292 -rood-tree n 1 1 @ 1 0 03140292 -rood_screen n 1 2 @ #p 1 0 04104925 -roof n 4 5 @ ~ #p %p + 4 2 04105068 04105438 09416890 06657646 -roof_garden n 1 1 @ 1 0 04105609 -roof_mushroom n 1 3 @ #m %m 1 0 13019202 -roof_of_the_mouth n 1 3 @ #p %p 1 1 05309725 -roof_peak n 1 2 @ #p 1 0 04105791 -roof_rack n 1 1 @ 1 0 03696301 -roof_rat n 1 2 @ #m 1 0 02333909 -roofer n 1 3 @ ~ + 1 1 10538272 -roofing n 2 4 @ ~ #p + 2 0 04105704 00617989 -roofing_material n 1 2 @ ~ 1 0 15005716 -roofing_paper n 1 1 @ 1 0 14976001 -roofing_tile n 1 3 @ ~ %s 1 0 15074568 -rooftop n 1 1 @ 1 1 08663774 -rooftree n 1 2 @ #p 1 1 04089152 -roofy n 1 1 @ 1 0 04036494 -rooibos n 1 2 @ #m 1 0 12507823 -rook n 2 3 @ #m ; 2 0 02980625 01579410 -rookery n 1 2 @ ~ 1 0 08644426 -rookie n 1 1 @ 1 1 09981834 -room n 4 5 @ ~ #p %p + 4 3 04105893 13777764 14485436 07985948 -room_access n 1 4 @ ~ #p %p 1 0 03224032 -room_clerk n 1 1 @ 1 1 10538398 -room_decorator n 1 2 @ ~ 1 0 10210648 -room_light n 1 2 @ #p 1 0 04107743 -room_rate n 1 1 @ 1 0 13327136 -room_temperature n 1 1 @ 1 1 05014442 -roomer n 1 2 @ + 1 0 10269458 -roomette n 1 3 @ #p + 1 0 04107598 -roomful n 1 1 @ 1 1 13769123 -roomie n 1 1 @ 1 0 10538518 -roominess n 2 3 @ ~ + 2 0 05618607 05105265 -rooming_house n 1 2 @ ~ 1 0 03685820 -roommate n 1 1 @ 1 0 10538518 -rooms n 1 1 @ 1 1 04351550 -roomy n 1 1 @ 1 0 10538518 -roosevelt n 3 2 @ + 3 1 11270023 11270380 11269697 -roost n 2 4 @ ~ %p + 2 0 04107984 04107870 -rooster n 1 2 @ ~ 1 1 01792158 -root n 8 7 @ ~ #p %s %p + ; 8 5 13125117 08507558 06300193 13731669 08005954 09792555 06300445 05308310 -root_beer n 1 1 @ 1 0 07928887 -root_beer_float n 1 1 @ 1 0 07923176 -root_canal n 1 2 @ #p 1 0 05308481 -root_cap n 1 2 @ #p 1 0 13126428 -root_celery n 1 2 @ %p 1 0 12933616 -root_cellar n 1 1 @ 1 1 04108137 -root_climber n 1 1 @ 1 0 13103023 -root_crop n 1 1 @ 1 0 13126308 -root_hair n 1 2 @ #p 1 0 13126684 -root_rot n 1 1 @ 1 0 14281992 -root_system n 1 2 @ %p 1 0 13125003 -root_vegetable n 1 2 @ ~ 1 0 07710283 -root_word n 1 2 @ ; 1 0 06300193 -rootage n 3 4 @ ~ %p + 3 0 14006684 13125003 08507558 -rooter n 1 2 @ ~ 1 0 10639925 -rooter_skunk n 1 2 @ #m 1 0 02446645 -rooting n 1 2 @ + 1 1 13552124 -rooting_reflex n 1 1 @ 1 0 00867163 -rootlet n 1 2 @ + 1 0 13126580 -roots n 1 1 @ 1 0 14065412 -rootstalk n 1 1 @ 1 0 13128582 -rootstock n 2 1 @ 2 0 13128582 13127303 -rope n 2 5 @ ~ %s %p + 2 1 04108268 04036494 -rope-a-dope n 1 1 @ 1 0 00446632 -rope-maker n 1 1 @ 1 0 10538629 -rope_bridge n 1 1 @ 1 0 04108822 -rope_burn n 1 1 @ 1 0 14286995 -rope_ladder n 1 1 @ 1 0 04108908 -rope_tow n 1 1 @ 1 0 04108999 -rope_yard n 1 1 @ 1 0 04109104 -rope_yarn n 1 1 @ 1 0 04109240 -ropebark n 1 2 @ #m 1 0 12347639 -ropedancer n 1 1 @ 1 0 10539015 -ropemaker n 1 1 @ 1 0 10538629 -roper n 3 2 @ + 3 0 10538853 10538733 10538629 -ropewalk n 1 1 @ 1 0 04109104 -ropewalker n 1 1 @ 1 0 10539015 -ropeway n 1 1 @ 1 0 04469813 -rophy n 1 1 @ 1 0 04036494 -ropiness n 1 2 @ + 1 0 04935904 -roping n 1 3 @ ~ + 1 0 00299680 -roquefort n 1 1 @ 1 0 07852302 -roquefort_dressing n 1 1 @ 1 0 07833672 -roquette n 1 2 @ #m 1 0 11886537 -roridula n 1 2 @ #m 1 0 12784371 -roridulaceae n 1 3 @ #m %m 1 0 12783996 -rorippa n 1 3 @ #m %m 1 0 11895270 -rorippa_amphibia n 1 2 @ #m 1 0 11895714 -rorippa_islandica n 1 2 @ #m 1 0 11895472 -rorippa_nasturtium-aquaticum n 1 2 @ #m 1 0 11893131 -rorqual n 1 3 @ ~ #m 1 0 02064338 -rorschach n 1 1 @ 1 0 01007907 -rorschach_test n 1 1 @ 1 0 01007907 -rosa n 1 3 @ #m %m 1 0 12620031 -rosa_banksia n 1 1 @ 1 0 12620969 -rosa_canina n 1 1 @ 1 0 12621110 -rosa_chinensis n 1 1 @ 1 0 12621260 -rosa_damascena n 1 1 @ 1 0 12621410 -rosa_eglanteria n 1 1 @ 1 0 12621619 -rosa_laevigata n 1 1 @ 1 0 12621945 -rosa_melba_ponselle n 1 1 @ 1 0 11242469 -rosa_moschata n 1 1 @ 1 0 12622297 -rosa_multiflora n 1 1 @ 1 0 12622072 -rosa_odorata n 1 1 @ 1 0 12622483 -rosa_parks n 1 1 @ 1 0 11223396 -rosa_pendulina n 1 1 @ 1 0 12620661 -rosa_ponselle n 1 1 @ 1 0 11242469 -rosa_spithamaea n 1 1 @ 1 0 12620779 -rosacea n 1 1 @ 1 0 14222352 -rosaceae n 1 4 @ #m %m + 1 0 12619306 -rosales n 1 3 @ #m %m 1 0 12618942 -rosario n 1 2 @ #p 1 0 08713405 -rosary n 1 1 @ 1 1 04109335 -rose n 3 5 @ ~ #m %p + 3 1 12620196 07893253 04971313 -rose-apple_tree n 1 3 @ #m %p 1 0 12332218 -rose-colored_pastor n 1 2 @ #m 1 0 01577458 -rose-colored_starling n 1 2 @ #m 1 0 01577458 -rose-root n 1 2 @ #m 1 0 12786273 -rose_acacia n 1 2 @ #m 1 0 12567950 -rose_apple n 2 4 @ #m #p %p 2 0 12332218 07770034 -rose_bay n 1 2 @ #m 1 0 11773987 -rose_bed n 1 2 @ #p 1 0 04109471 -rose_beetle n 1 2 @ #m 1 0 02175569 -rose_bug n 1 2 @ #m 1 0 02175014 -rose_campion n 1 1 @ 1 0 11812094 -rose_chafer n 2 2 @ #m 2 0 02175569 02175014 -rose_chestnut n 1 2 @ #m 1 0 12370549 -rose_family n 1 3 @ #m %m 1 0 12619306 -rose_garden n 1 2 @ %p 1 0 04109599 -rose_geranium n 1 2 @ #m 1 0 12687462 -rose_globe_lily n 1 2 @ #m 1 0 12447346 -rose_gum n 1 1 @ 1 0 12337800 -rose_hip n 1 2 @ #p 1 0 12620546 -rose_leek n 1 1 @ 1 0 12432574 -rose_louise_hovick n 1 1 @ 1 0 11124472 -rose_mallow n 2 2 @ #m 2 0 12178896 12173912 -rose_moss n 1 1 @ 1 0 11857875 -rose_of_china n 1 1 @ 1 0 12179391 -rose_of_jericho n 2 2 @ #m 2 0 13225365 11871059 -rose_of_sharon n 1 1 @ 1 1 12179907 -rose_oil n 1 1 @ 1 0 14893128 -rose_periwinkle n 1 2 @ #m 1 0 11772408 -rose_pink n 1 1 @ 1 0 12298395 -rose_quartz n 1 1 @ 1 0 15005895 -rose_water n 1 1 @ 1 0 04110068 -rose_window n 1 1 @ 1 0 04110178 -rose_wine n 1 1 @ 1 0 07893253 -roseate_spoonbill n 1 2 @ #m 1 0 02007284 -roseau n 1 2 @ #p 1 0 08763387 -rosebay n 1 1 @ 1 0 12244650 -rosebay_willowherb n 1 2 @ #m 1 0 12342498 -rosebud n 2 2 @ ; 2 1 11675025 10539160 -rosebud_cherry n 1 1 @ 1 0 12650038 -rosebud_orchid n 1 2 @ #m 1 0 12051792 -rosebush n 1 4 @ ~ #m %p 1 0 12620196 -rosefish n 2 1 @ 2 0 07792117 02644817 -rosehip n 1 2 @ #p 1 0 12620546 -roselle n 1 1 @ 1 0 12179632 -rosellinia n 1 2 @ #m 1 0 12967124 -rosemaling n 1 2 @ ; 1 0 04109702 -rosemary n 2 4 @ #m #p %p 2 0 12864160 07820145 -roseola n 1 2 @ ~ 1 0 14321953 -roseola_infantilis n 1 1 @ 1 0 14123759 -roseola_infantum n 1 1 @ 1 0 14123759 -rosetta_stone n 1 1 @ 1 0 06405891 -rosette n 4 1 @ 4 1 04109899 14281549 13161998 04110178 -rosewood n 2 4 @ ~ #s %s 2 0 12522493 12522188 -rosewood_tree n 1 3 @ ~ %s 1 0 12522188 -rosh_chodesh n 1 2 @ ; 1 0 15183085 -rosh_hashana n 1 2 @ ; 1 0 15182805 -rosh_hashanah n 1 2 @ ; 1 0 15182805 -rosh_hashona n 1 2 @ ; 1 0 15182805 -rosh_hashonah n 1 2 @ ; 1 0 15182805 -rosh_hodesh n 1 2 @ ; 1 0 15183085 -rosicrucian n 2 1 @ 2 0 10539462 10539278 -rosicrucianism n 1 1 @ 1 0 06191483 -rosid_dicot_family n 1 3 @ ~ #m 1 0 11566682 -rosid_dicot_genus n 1 3 @ ~ #m 1 0 11585340 -rosidae n 1 3 @ #m %m 1 0 12212810 -rosilla n 1 1 @ 1 0 11977887 -rosin n 1 3 @ ~ + 1 0 14894140 -rosin_bag n 1 1 @ 1 0 04110281 -rosiness n 3 3 @ ~ + 3 0 14050871 04977412 04971313 -rosinweed n 2 3 @ ~ #m 2 0 12015221 11973341 -rosita n 1 1 @ 1 0 12290975 -rosmarinus n 1 3 @ #m %m 1 0 12864038 -rosmarinus_officinalis n 1 3 @ #m %p 1 0 12864160 -ross n 5 1 @ 5 0 11271349 11271094 11270948 11270772 11270577 -ross_sea n 1 2 @ #p 1 0 09417240 -rossbach n 1 3 @ #p ; 1 0 01292928 -rossetti n 1 1 @ 1 0 11271563 -rossini n 1 1 @ 1 0 11271720 -rostand n 1 1 @ 1 0 11271859 -roster n 1 2 @ ~ 1 1 06495000 -rostock n 1 3 @ #m #p 1 0 08774704 -rostov n 1 2 @ #p 1 0 09009490 -rostov_na_donu n 1 2 @ #p 1 0 09009490 -rostov_on_don n 1 2 @ #p 1 0 09009490 -rostrum n 2 1 @ 2 1 03159640 02452813 -roswell n 1 2 @ #p 1 0 09116214 -rosy_boa n 1 2 @ #m 1 0 01742821 -rot n 3 4 @ ~ + ; 3 2 14560926 13458019 06611681 -rota n 2 2 @ ; 2 0 08335414 06496862 -rotarian n 1 2 @ #m 1 0 10539616 -rotary n 2 2 @ #p 2 0 04465933 04375405 -rotary_actuator n 1 2 @ ; 1 0 04110439 -rotary_club n 1 2 @ %m 1 1 08236251 -rotary_converter n 1 1 @ 1 0 04375405 -rotary_engine n 2 2 @ ~ 2 0 04110654 04040373 -rotary_international n 1 2 @ %m 1 0 08236251 -rotary_joint n 1 1 @ 1 0 05597188 -rotary_motion n 1 2 @ ~ 1 0 00342028 -rotary_press n 1 1 @ 1 0 04110841 -rotary_wing n 1 2 @ #p 1 0 04112252 -rotating_mechanism n 1 3 @ ~ %p 1 0 04110955 -rotating_shaft n 1 3 @ ~ #p 1 0 04111190 -rotation n 4 4 @ ~ + ; 4 1 00342028 13785557 07440979 05045381 -rotational_latency n 1 3 @ #p ; 1 0 15297069 -rotational_nystagmus n 1 1 @ 1 0 00338088 -rotator_cuff n 1 3 @ #p %p 1 0 05604950 -rotatory_joint n 1 1 @ 1 0 05597188 -rotavirus n 1 1 @ 1 0 01341090 -rotc n 1 1 @ 1 1 08212920 -rote n 1 1 @ 1 0 05755393 -rote_learning n 1 1 @ 1 0 05755393 -rotenone n 1 1 @ 1 0 15012478 -rotgut n 1 1 @ 1 0 07922512 -roth n 1 1 @ 1 0 11272030 -rothko n 1 1 @ 1 0 11272198 -rothschild n 1 1 @ 1 0 11272415 -rotifer n 1 2 @ #m 1 0 01929186 -rotifera n 1 3 @ #m %m 1 0 01929047 -rotisserie n 2 1 @ 2 0 04111531 04111414 -rotl n 1 1 @ 1 0 13718946 -rotogravure n 3 2 @ #p 3 0 06679308 06266973 01103492 -rotor n 3 5 ! @ ~ #p %p 3 1 04111962 04112147 04111668 -rotor_blade n 1 2 @ #p 1 0 04112252 -rotor_coil n 1 2 @ #p 1 0 04111962 -rotor_head n 1 2 @ #p 1 0 04112430 -rotor_shaft n 1 2 @ #p 1 0 04112430 -rotten_borough n 1 1 @ 1 0 08540416 -rottenness n 2 2 @ + 2 0 14561102 04791591 -rottenstone n 1 1 @ 1 0 14936474 -rotter n 1 1 @ 1 0 10539715 -rotterdam n 1 2 @ #p 1 0 08950907 -rotting n 1 3 @ + ; 1 0 13458019 -rottweiler n 1 1 @ 1 0 02106550 -rotunda n 2 1 @ 2 0 04112654 04112579 -rotundity n 2 2 @ + 2 1 05073131 07082972 -rotundness n 1 2 @ + 1 0 05073131 -rouble n 1 2 @ %p 1 0 13699076 -roue n 1 1 @ 1 0 10505942 -rouge n 1 2 @ + 1 0 04112752 -rouge_et_noir n 1 1 @ 1 0 00495103 -rouge_plant n 1 2 @ #m 1 0 11856573 -rougeberry n 1 2 @ #m 1 0 11856573 -rough n 1 2 @ #p 1 0 08640962 -rough-and-tumble n 1 1 @ 1 0 01172441 -rough-leaved_aster n 1 1 @ 1 0 11936624 -rough-legged_hawk n 1 2 @ #m 1 0 01607600 -rough-skinned_newt n 1 2 @ #m 1 0 01631354 -rough-stemmed_goldenrod n 1 1 @ 1 0 12018271 -rough_bindweed n 1 1 @ 1 0 12470907 -rough_bristlegrass n 1 1 @ 1 0 12135049 -rough_cut n 1 1 @ 1 0 06617644 -rough_drawing n 1 1 @ 1 0 03230785 -rough_fish n 1 1 @ 1 0 02513248 -rough_green_snake n 1 1 @ 1 0 01730307 -rough_horsetail n 1 1 @ 1 0 13220122 -rough_pea n 1 1 @ 1 0 12539564 -rough_rider n 1 1 @ 1 0 10540252 -rough_sledding n 1 1 @ 1 0 14409880 -rough_water n 1 1 @ 1 0 14524029 -roughage n 1 2 @ ~ 1 0 07568818 -roughcast n 2 2 @ + 2 0 15006012 04112921 -roughleg n 1 2 @ #m 1 0 01607600 -roughneck n 1 2 @ ~ 1 1 09879297 -roughness n 7 4 ! @ ~ + 7 3 04948241 04988666 04817564 14524029 13977184 13537894 00374446 -roughrider n 1 1 @ 1 0 10540413 -roughtail_stingray n 1 2 @ #m 1 0 01498406 -roulade n 2 2 @ ; 2 0 07875560 06857591 -rouleau n 2 1 @ 2 0 04113124 04113038 -roulette n 3 2 @ ~ 3 0 13908580 04113194 00509399 -roulette_ball n 1 1 @ 1 1 04113316 -roulette_wheel n 1 1 @ 1 0 04113406 -roumania n 1 5 @ #p %m %p + 1 0 08813978 -round n 14 6 @ ~ #p %p + ; 14 6 04113641 15287830 08507381 01055688 00466377 00415098 15256714 09417097 07884266 07662156 07053089 06692464 04119892 03032811 -round-bottom_flask n 1 1 @ 1 0 04113968 -round-headed_leek n 1 1 @ 1 0 12435965 -round-leaved_rein_orchid n 1 1 @ 1 0 12067817 -round-spored_gyromitra n 1 2 @ #m 1 0 13037805 -round-table_conference n 1 1 @ 1 0 07145314 -round-tailed_muskrat n 1 2 @ #m 1 0 02338449 -round-the-clock_patrol n 1 1 @ 1 0 00825096 -round-trip_light_time n 1 1 @ 1 0 15130926 -round-trip_ticket n 1 2 @ ~ 1 0 06519936 -round_angle n 1 1 @ 1 0 13892674 -round_arch n 1 2 @ ~ 1 0 04113765 -round_bone n 1 1 @ 1 1 05279321 -round_clam n 2 5 @ ~ #m #p %p 2 0 07786856 01958038 -round_dance n 2 2 @ ~ 2 0 00539827 00537297 -round_dancing n 1 1 @ 1 0 00537297 -round_file n 1 1 @ 1 0 04114301 -round_hand n 1 1 @ 1 0 06351086 -round_kumquat n 1 2 @ #m 1 0 12713358 -round_ligament_of_the_uterus n 1 1 @ 1 0 05295740 -round_of_drinks n 1 1 @ 1 0 07884266 -round_of_golf n 1 1 @ 1 0 00466377 -round_robin n 2 1 @ 2 0 07467579 06625965 -round_scad n 1 2 @ #m 1 0 02581642 -round_shape n 1 2 @ ~ 1 0 13865483 -round_shot n 1 1 @ 1 0 02950943 -round_steak n 1 2 @ #p 1 0 07662275 -round_table n 2 2 @ ; 2 1 07145314 04114554 -round_top n 1 2 @ #p 1 0 03035252 -round_trip n 1 1 @ 1 0 00308779 -round_whitefish n 1 2 @ #m 1 0 02539894 -round_window n 1 1 @ 1 0 05325786 -roundabout n 2 2 @ #p 2 0 04465933 02966193 -roundabout_way n 1 1 @ 1 0 03182506 -roundedness n 1 3 @ ~ + 1 0 05070453 -roundel n 3 3 @ #p ; 3 0 06381134 04114069 02713992 -roundelay n 1 1 @ 1 0 07053491 -rounder n 2 3 @ ~ + 2 0 10257647 04114193 -rounders n 1 1 @ 1 0 00476140 -roundhead n 2 1 @ 2 0 10540656 10540526 -roundhouse n 2 1 @ 2 2 04114428 00136230 -rounding n 1 2 @ ; 1 0 00073177 -rounding_error n 1 2 @ ; 1 0 00073177 -roundness n 4 4 ! @ ~ + 4 0 07082972 05123206 05072911 05000913 -roundsman n 1 1 @ 1 0 10540735 -roundtable n 1 1 @ 1 0 07145314 -roundup n 3 2 @ + 3 1 00921627 06469597 00635544 -roundworm n 2 3 @ ~ #m 2 0 14125466 01930112 -rous n 1 1 @ 1 0 11272523 -rouser n 1 2 @ + 1 0 10763985 -rousing n 1 3 @ ~ + 1 0 00242808 -rousseau n 2 2 @ + 2 1 11272689 11272972 -roustabout n 1 1 @ 1 0 09998788 -rout n 2 3 @ ~ + 2 0 08184600 07476404 -route n 2 5 @ ~ %s %p + 2 2 08616311 04096066 -routemarch n 1 1 @ 1 0 00291876 -router n 3 2 @ ; 3 0 10540872 04114844 04114719 -router_plane n 1 1 @ 1 0 04114996 -routine n 3 3 @ ~ #p 3 3 01026482 06892016 06582403 -roux n 1 1 @ 1 0 07839478 -rove_beetle n 1 2 @ #m 1 0 02180875 -rover n 2 2 @ ~ 2 0 10765679 10540984 -roving n 1 3 @ ~ + 1 0 00297062 -row n 7 6 @ ~ #m #p %p + 7 4 08431437 07184149 09417365 03120029 08433447 05045680 00445351 -row_house n 1 2 @ ~ 1 1 04115256 -row_of_bricks n 1 1 @ 1 0 04115670 -rowan n 1 2 @ %p 1 0 12658308 -rowan_tree n 1 2 @ %p 1 0 12658308 -rowanberry n 1 2 @ #p 1 0 12658481 -rowboat n 1 3 @ ~ %p 1 0 03199901 -rowdiness n 1 2 @ + 1 0 13977184 -rowdy n 1 2 @ ~ 1 1 09879297 -rowdyism n 1 1 @ 1 0 13977184 -rowel n 1 2 @ #p 1 0 04115144 -rower n 1 3 @ ~ + 1 0 10368920 -rowing n 1 4 @ ~ %p + 1 0 00445351 -rowing_boat n 1 2 @ ; 1 0 04115456 -rowing_club n 1 1 @ 1 0 08230219 -rowlock n 1 2 @ #p 1 0 03905730 -rowlock_arch n 1 1 @ 1 0 04115542 -roy_chapman_andrews n 1 1 @ 1 0 10818312 -roy_lichtenstein n 1 1 @ 1 0 11131658 -roy_orbison n 1 1 @ 1 0 11216100 -roy_wilkins n 1 1 @ 1 0 11387692 -royal n 2 1 @ 2 0 04115802 02430643 -royal_academy n 1 1 @ 1 0 08281205 -royal_academy_of_arts n 1 1 @ 1 0 08281205 -royal_agaric n 1 2 @ #m 1 0 13002750 -royal_air_force n 1 1 @ 1 0 08195132 -royal_blue n 1 1 @ 1 0 04969952 -royal_brace n 1 1 @ 1 1 04115906 -royal_canadian_mounted_police n 1 2 @ %m 1 0 08210670 -royal_casino n 1 1 @ 1 0 00498828 -royal_charter n 1 3 @ ~ ; 1 0 06477209 -royal_court n 2 2 @ ~ 2 0 08329322 08051946 -royal_family n 1 3 @ ~ %m 1 1 08153437 -royal_fern n 1 1 @ 1 0 12953484 -royal_flush n 1 1 @ 1 0 07957855 -royal_house n 1 3 @ ~ %m 1 1 08153437 -royal_jelly n 1 1 @ 1 0 14774228 -royal_line n 1 3 @ ~ %m 1 0 08153437 -royal_mast n 1 1 @ 1 0 04115996 -royal_national_eisteddfod n 1 1 @ 1 0 00517080 -royal_osmund n 1 1 @ 1 0 12953484 -royal_palm n 1 2 @ #m 1 0 12596709 -royal_poinciana n 1 2 @ #m 1 0 12494794 -royal_purple n 1 2 @ ~ 1 0 04970631 -royal_road n 1 1 @ 1 0 00174127 -royal_society n 1 1 @ 1 0 08281409 -royal_society_of_london_for_improving_natural_knowledge n 1 1 @ 1 0 08281409 -royal_stag n 1 1 @ 1 0 02430643 -royal_tennis n 1 1 @ 1 0 00483705 -royal_velvet_plant n 1 2 @ #m 1 0 11975254 -royalism n 1 2 @ + 1 0 01213548 -royalist n 2 3 @ ~ + 2 0 10327824 09902128 -royalty n 2 3 @ ~ %m 2 2 13257982 08153437 -roystonea n 1 3 @ #m %m 1 0 12596525 -roystonea_oleracea n 1 2 @ #m 1 0 12596849 -roystonea_regia n 1 2 @ #m 1 0 12596709 -rozelle n 1 1 @ 1 0 12179632 -rpa-abb n 1 2 @ ; 1 0 08011266 -rpm n 1 1 @ 1 1 15281870 -rtlt n 1 1 @ 1 0 15130926 -ru n 1 1 @ 1 0 14653242 -ru_486 n 1 2 @ ; 1 0 02668093 -ruanda n 1 5 @ #p %m %p - 1 0 08815046 -rub n 2 3 @ ~ + 2 0 05691144 00125126 -rub-a-dub n 1 1 @ 1 0 07392373 -rub_al-khali n 1 2 @ #p 1 0 09172111 -rub_up n 1 2 @ ; 1 0 00897989 -rubato n 1 1 @ 1 0 15265423 -rubber n 5 4 @ ~ #p + 5 1 15006258 15006789 04116512 03088164 02735538 -rubber-base_paint n 1 1 @ 1 0 03646020 -rubber-necking n 1 2 @ + 1 0 00879607 -rubber_band n 1 1 @ 1 0 04116098 -rubber_boa n 1 2 @ #m 1 0 01742447 -rubber_boot n 1 1 @ 1 0 04116294 -rubber_bullet n 1 1 @ 1 0 04116389 -rubber_cement n 1 1 @ 1 0 14705386 -rubber_eraser n 1 2 @ #p 1 0 04116512 -rubber_plant n 1 1 @ 1 0 12402840 -rubber_stamp n 2 1 @ 2 0 03488887 01141482 -rubber_tire n 1 2 @ ~ 1 0 02971167 -rubber_tree n 1 2 @ #m 1 0 12925836 -rubberneck n 2 2 @ + 2 0 10596689 10541106 -rubbernecker n 1 1 @ 1 0 10541106 -rubbing n 3 3 @ ~ + 3 0 11459538 04116744 00712031 -rubbing_alcohol n 1 1 @ 1 0 04116919 -rubbish n 2 4 @ ~ + ; 2 1 14857497 06611998 -rubbish_dump n 1 2 @ ~ 1 0 08560027 -rubbish_heap n 1 1 @ 1 0 08573842 -rubble n 1 2 @ ~ 1 1 14857897 -rubdown n 1 2 @ + 1 0 00258695 -rube n 1 1 @ 1 0 10804102 -rube_goldberg n 1 1 @ 1 0 11004485 -rubefacient n 1 1 @ 1 0 04117089 -rubel n 1 1 @ 1 0 13700056 -rubella n 1 1 @ 1 0 14123259 -rubella_panencephalitis n 1 1 @ 1 0 14344720 -rubens n 1 1 @ 1 0 11273104 -rubeola n 1 2 @ ~ 1 0 14123044 -rubia n 1 3 @ #m %m 1 0 12660796 -rubia_cordifolia n 1 2 @ #m 1 0 12661045 -rubia_tinctorum n 1 1 @ 1 0 12661227 -rubiaceae n 1 3 @ #m %m 1 0 12660009 -rubiaceous_plant n 1 3 @ ~ #m 1 0 12660601 -rubiales n 1 3 @ #m %m 1 0 12659730 -rubicelle n 1 1 @ 1 0 15051608 -rubicon n 2 1 @ 2 0 08644552 05749042 -rubidium n 1 2 @ #s 1 0 14652954 -rubidium-strontium_dating n 1 1 @ 1 0 00992995 -rubin_test n 1 1 @ 1 0 05744976 -rubinstein n 2 1 @ 2 0 11273479 11273286 -ruble n 2 2 @ %p 2 0 13702531 13699076 -rubor n 1 3 @ ~ #p 1 0 14336539 -rubric n 6 2 @ + 6 1 06652614 06744000 06652712 06345993 06344998 05839776 -rubus n 1 3 @ #m %m 1 0 12653056 -rubus_australis n 1 1 @ 1 0 12653436 -rubus_caesius n 1 2 @ %p 1 0 12655726 -rubus_canadensis n 1 1 @ 1 0 12655245 -rubus_chamaemorus n 1 1 @ 1 0 12657294 -rubus_cissoides n 1 1 @ 1 0 12653436 -rubus_cuneifolius n 1 1 @ 1 0 12654227 -rubus_flagellaris n 1 2 @ %p 1 0 12655351 -rubus_fruticosus n 1 2 @ %p 1 0 12654012 -rubus_hispidus n 1 1 @ 1 0 12655605 -rubus_idaeus n 1 1 @ 1 0 12656369 -rubus_idaeus_strigosus n 1 2 @ %p 1 0 12656528 -rubus_loganobaccus n 1 2 @ %p 1 0 12655062 -rubus_occidentalis n 1 2 @ %p 1 0 12656685 -rubus_odoratus n 1 1 @ 1 0 12657509 -rubus_parviflorus n 1 1 @ 1 0 12657082 -rubus_phoenicolasius n 1 1 @ 1 0 12657755 -rubus_saxatilis n 1 1 @ 1 0 12653633 -rubus_spectabilis n 1 1 @ 1 0 12656909 -rubus_strigosus n 1 2 @ %p 1 0 12656528 -rubus_trivialis n 1 1 @ 1 0 12655498 -rubus_ursinus n 1 3 @ ~ %p 1 0 12654659 -rubus_ursinus_loganobaccus n 1 2 @ %p 1 0 12655062 -ruby n 3 2 @ + 3 1 13372262 15008142 04963588 -ruby-crowned_kinglet n 1 1 @ 1 0 01564217 -ruby-crowned_wren n 1 1 @ 1 0 01564217 -ruby_spinel n 1 2 @ ~ 1 0 15051129 -ruby_wood n 1 2 @ #s 1 0 12566627 -ruck n 2 2 @ + 2 1 08183046 13907847 -rucksack n 1 2 @ ~ 1 0 02769748 -ruckus n 1 2 @ ~ 1 0 00553823 -ruction n 1 2 @ ~ 1 0 00553823 -rudaceous_rock n 1 2 @ ~ 1 0 14697708 -rudapithecus n 1 2 @ #m 1 0 02478239 -rudbeckia n 1 3 @ #m %m 1 0 12008017 -rudbeckia_hirta n 1 2 @ #m 1 0 12008487 -rudbeckia_laciniata n 1 3 @ ~ #m 1 0 12008749 -rudbeckia_laciniata_hortensia n 1 2 @ #m 1 0 12009047 -rudbeckia_serotina n 1 2 @ #m 1 0 12008487 -rudd n 1 2 @ #m 1 0 01442710 -rudder n 2 4 @ #p %p ; 2 1 04117464 04117216 -rudder_blade n 1 2 @ #p 1 0 04117639 -rudderfish n 2 2 @ #m 2 0 02604480 02579091 -rudderpost n 1 2 @ #p 1 0 04117747 -rudderstock n 1 2 @ #p 1 0 04117747 -ruddiness n 1 2 @ + 1 0 04977412 -ruddle n 1 1 @ 1 0 15008287 -ruddles n 1 1 @ 1 0 11943660 -ruddy_duck n 1 2 @ #m 1 0 01849863 -ruddy_turnstone n 1 1 @ 1 0 02025239 -rudeness n 2 3 @ ~ + 2 1 04914292 14472624 -rudiment n 2 3 @ + ; 2 0 05872742 05604022 -rudiments n 1 1 @ 1 0 06639563 -rudolf_bultmann n 1 1 @ 1 0 10871129 -rudolf_christian_karl_diesel n 1 1 @ 1 0 10935128 -rudolf_diesel n 1 1 @ 1 0 10935128 -rudolf_hess n 1 1 @ 1 0 11047701 -rudolf_karl_bultmann n 1 1 @ 1 0 10871129 -rudolf_karl_virchow n 1 1 @ 1 0 11367195 -rudolf_ludwig_mossbauer n 1 1 @ 1 0 11193814 -rudolf_nureyev n 1 1 @ 1 0 11210610 -rudolf_serkin n 1 1 @ 1 0 11293334 -rudolf_steiner n 1 1 @ 1 0 11315249 -rudolf_virchow n 1 1 @ 1 0 11367195 -rudolf_wurlitzer n 1 1 @ 1 0 11399274 -rudolph_laban n 1 1 @ 1 0 11113601 -rudra n 1 1 @ 1 0 09528237 -rudyard_kipling n 1 1 @ 1 0 11105778 -rue n 4 7 @ ~ #m #p %p + ; 4 0 12707199 07820297 07535670 04117917 -rue_anemone n 1 2 @ #m 1 0 11726707 -rue_family n 1 3 @ #m %m 1 0 12706644 -ruefulness n 1 3 @ ~ + 1 0 07535670 -ruf n 1 2 @ ; 1 0 08043848 -ruff n 4 6 @ ~ #m #p + ; 4 0 05546997 03024746 02030035 01259380 -ruffed_grouse n 1 2 @ #m 1 0 01797886 -ruffian n 1 3 @ ~ + 1 1 09879297 -ruffianism n 1 1 @ 1 0 00736989 -ruffle n 3 3 @ ~ + 3 0 03397532 03024746 01176335 -rufous_rubber_cup n 1 1 @ 1 0 12984267 -rug n 1 3 @ ~ %p 1 1 04118021 -rug_beater n 1 2 @ %p 1 0 02967407 -rug_merchant n 1 1 @ 1 0 10542054 -rug_pad n 1 2 @ ~ 1 0 02967626 -ruga n 1 2 @ ; 1 0 05607271 -rugby n 1 4 @ %p ; - 1 0 00470966 -rugby_ball n 1 1 @ 1 0 04118538 -rugby_football n 1 4 @ %p ; - 1 0 00470966 -rugel's_plantain n 1 1 @ 1 0 12600095 -rugelach n 1 1 @ 1 0 07937786 -rugged_individualism n 1 1 @ 1 0 05963299 -ruggedisation n 1 2 @ + 1 0 00829721 -ruggedization n 1 2 @ + 1 0 00829721 -ruggedness n 3 3 @ ~ + 3 0 05031214 04772388 04710588 -ruggelach n 1 1 @ 1 0 07937786 -rugger n 1 4 @ %p ; - 1 0 00470966 -rugulah n 1 1 @ 1 0 07937786 -ruholla_khomeini n 1 1 @ 1 0 11104008 -ruhr n 2 2 @ #p 2 0 09417560 08776138 -ruhr_river n 1 2 @ #p 1 0 09417560 -ruhr_valley n 1 2 @ #p 1 0 08776138 -ruin n 6 3 @ ~ + 6 2 14562324 04118635 13466312 07335243 07318133 00217773 -ruination n 4 3 @ ~ + 4 0 14562324 07335243 07318133 00217773 -ruiner n 1 3 @ ~ + 1 0 10008716 -ruining n 1 2 @ + 1 0 00217773 -rule n 12 5 @ ~ #p + ; 12 5 05846054 05667613 06652242 07259772 05913538 15295416 14442933 06788897 06652064 05874232 05846932 04118776 -rule_book n 1 2 @ %p 1 0 07954211 -rule_of_cy_pres n 1 1 @ 1 0 05848691 -rule_of_evidence n 1 3 @ ~ ; 1 0 06653363 -rule_of_grammar n 1 2 @ ~ 1 0 07260175 -rule_of_law n 1 2 @ ; 1 0 13968973 -rule_of_morphology n 1 1 @ 1 0 07260493 -rule_of_thumb n 1 1 @ 1 0 05848541 -ruler n 2 3 @ ~ + 2 2 10541229 04118776 -rulership n 1 2 @ + 1 0 00599234 -rules_of_order n 1 3 @ ~ - 1 0 06652878 -ruling n 1 4 @ ~ + ; 1 1 01191158 -ruling_class n 1 1 @ 1 1 08387806 -rum n 2 3 @ ~ #s 2 0 07905038 00495331 -rum-blossom n 1 1 @ 1 0 14397040 -rum_baba n 1 1 @ 1 0 07629898 -rum_cherry n 1 1 @ 1 0 12648888 -rum_cocktail n 1 3 @ ~ %s 1 0 07914413 -rum_nose n 1 1 @ 1 0 14397040 -rum_sling n 1 1 @ 1 0 07917951 -rumania n 1 5 @ #p %m %p + 1 0 08813978 -rumanian n 2 2 @ #m 2 1 06968343 09728285 -rumansh n 1 1 @ 1 0 06968174 -rumba n 3 1 @ 3 0 07056764 00541779 00537085 -rumble n 3 3 @ #p + 3 1 07392483 04119091 01176649 -rumble_seat n 1 2 @ #p 1 0 04119230 -rumbling n 1 2 @ + 1 0 07392483 -rumen n 1 3 @ #p + 1 1 02399424 -rumex n 1 3 @ #m %m 1 0 12603784 -rumex_acetosa n 1 2 @ %p 1 0 12604228 -rumex_acetosella n 1 1 @ 1 0 12604460 -rumex_obtusifolius n 1 1 @ 1 0 12604639 -rumex_scutatus n 1 2 @ %p 1 0 12604845 -ruminant n 1 6 @ ~ #m %p + - 1 0 02399000 -ruminantia n 1 3 @ #m %m 1 0 02398732 -rumination n 3 3 @ ~ + 3 0 05785508 00279377 00119079 -ruminator n 1 2 @ + 1 0 10339504 -rummage n 2 2 @ + 2 0 14500819 00946806 -rummage_sale n 1 1 @ 1 0 01119850 -rummer n 1 1 @ 1 0 04119360 -rummy n 2 2 @ ~ 2 0 10037385 00495331 -rumohra n 1 3 @ #m %m 1 0 13200806 -rumohra_adiantiformis n 1 2 @ #m 1 0 13200986 -rumor n 1 2 @ + 1 1 07223450 -rumormonger n 1 2 @ ~ 1 0 10139347 -rumour n 1 2 @ + 1 0 07223450 -rumourmonger n 1 2 @ ~ 1 0 10139347 -rump n 3 4 @ ~ #p %p 3 1 02463611 07662833 05559256 -rump_roast n 1 2 @ #p 1 0 07662978 -rump_steak n 1 2 @ #p 1 0 07662618 -rumpelstiltskin n 1 1 @ 1 0 10542138 -rumpus n 1 3 @ ~ + 1 1 00553823 -rumpus_room n 1 1 @ 1 0 04119478 -rumrunner n 1 1 @ 1 0 10542499 -run n 16 4 @ ~ + ; 16 7 00189565 00791078 07460104 08460585 00558883 00308871 00293916 15262120 13995935 13760129 09415938 07472929 07443010 07407777 05045841 00309011 -run-in n 1 2 @ ~ 1 0 07184149 -run-on_sentence n 1 1 @ 1 0 06601053 -run-through n 1 2 @ + 1 0 00897506 -run-time n 2 2 @ ; 2 0 15262510 15262360 -run-time_error n 1 2 @ ; 1 0 07300316 -run-up n 2 2 @ #p 2 0 07414370 00476788 -run_batted_in n 1 1 @ 1 1 00190180 -runabout n 1 2 @ %p 1 0 04097373 -runaway n 2 2 @ + 2 1 07475107 10115082 -runaway_robin n 1 2 @ #m 1 0 12847374 -runch n 1 2 @ #m 1 0 11894558 -runcible_spoon n 1 1 @ 1 0 04119630 -runcinate_leaf n 1 1 @ 1 0 13161254 -rundle n 1 2 @ #p 1 0 04119751 -rundown n 1 2 @ ; 1 1 06469874 -rundstedt n 1 1 @ 1 0 11273679 -rune n 1 3 @ ~ + 1 0 06840187 -rung n 2 2 @ #p 2 0 04119892 04119751 -runic_letter n 1 2 @ ~ 1 0 06840187 -runnel n 1 1 @ 1 0 09415938 -runner n 10 5 @ ~ #p + ; 10 4 10615334 10542761 10542608 09841696 13127843 10542888 09834378 04120266 04120093 02577164 -runner-up n 1 1 @ 1 1 10543057 -runner-up_finish n 1 1 @ 1 0 07354504 -runner_bean n 2 1 @ 2 0 12557681 07728391 -runniness n 1 2 @ + 1 0 04937043 -running n 5 5 @ ~ #p + ; 5 2 00558883 00293916 14009481 01136985 00440039 -running_away n 1 2 @ ~ 1 0 00046177 -running_back n 1 3 @ ~ ; 1 0 10543161 -running_blackberry n 1 3 @ ~ #m 1 0 12654387 -running_board n 1 2 @ #p 1 1 04120339 -running_game n 1 3 @ ~ ; 1 0 00558883 -running_hand n 1 2 @ ~ 1 0 06350274 -running_head n 1 3 @ ~ #p 1 0 06345131 -running_headline n 1 3 @ ~ #p 1 0 06345131 -running_light n 1 1 @ 1 0 04214649 -running_mate n 1 1 @ 1 0 10543420 -running_noose n 1 4 @ ~ #p %p 1 0 03829563 -running_pine n 1 1 @ 1 0 13223485 -running_play n 1 3 @ ~ ; 1 0 00558883 -running_pop n 1 1 @ 1 0 12384839 -running_postman n 1 1 @ 1 0 12537253 -running_shoe n 1 1 @ 1 0 04120489 -running_start n 2 1 @ 2 0 07329833 07326262 -running_stitch n 1 1 @ 1 0 04120593 -running_suit n 1 1 @ 1 0 04120695 -running_time n 1 1 @ 1 1 15295778 -running_title n 1 1 @ 1 0 06345441 -runoff n 2 2 @ + 2 1 07407272 00183357 -runt n 1 2 @ + 1 0 10543544 -runtime_error n 1 2 @ ; 1 0 07300316 -runtiness n 1 2 @ + 1 0 05107495 -runup n 1 1 @ 1 0 07414370 -runway n 4 3 @ ~ #p 4 0 04463679 04121142 04120998 04120842 -runyon n 1 1 @ 1 0 11273907 -rupee n 6 3 @ ~ %p 6 0 13705415 13705153 13704897 13704643 13704274 13703804 -rupert n 1 1 @ 1 0 11274103 -rupert_brooke n 1 1 @ 1 0 10865990 -rupert_murdoch n 1 2 @ ; 1 0 11196934 -rupestral_plant n 1 1 @ 1 0 13124019 -rupestrine_plant n 1 1 @ 1 0 13124019 -rupiah n 1 2 @ %p 1 0 13705674 -rupicapra n 1 3 @ #m %m 1 0 02419217 -rupicapra_rupicapra n 1 2 @ #m 1 0 02419336 -rupicola n 1 3 @ #m %m 1 0 01550953 -rupicola_peruviana n 1 1 @ 1 0 01551300 -rupicola_rupicola n 1 2 @ #m 1 0 01551080 -rupicolous_plant n 1 1 @ 1 0 13124019 -ruptiliocarpon n 1 3 @ #m %m 1 0 12701901 -ruptiliocarpon_caracolito n 1 2 @ #m 1 0 12702124 -rupture n 3 3 @ ~ + 3 0 14295248 07313814 00376715 -ruptured_intervertebral_disc n 1 1 @ 1 0 14296579 -rupturewort n 1 2 @ #m 1 0 11810728 -rural_area n 1 4 ! @ ~ %p 1 1 08644722 -rural_free_delivery n 1 1 @ 1 0 06265142 -ruralism n 2 1 @ 2 0 07154666 04920237 -ruralist n 2 2 @ ~ 2 0 10543713 09971135 -rurality n 1 2 @ + 1 0 04920237 -ruritania n 1 2 @ + 1 0 05631681 -ruritanian n 1 1 @ 1 0 09603667 -rus n 1 1 @ 1 0 09002630 -ruscaceae n 1 2 @ #m 1 0 12464903 -ruscus n 1 3 @ #m %m 1 0 12462951 -ruscus_aculeatus n 1 2 @ #m 1 0 12463134 -ruse n 1 1 @ 1 0 00172598 -rush n 7 5 @ ~ #m + ; 7 2 00555648 07440240 11743294 11274269 07528470 07436352 00560293 -rush-grass n 1 2 @ #m 1 0 12140903 -rush_aster n 1 1 @ 1 0 11936707 -rush_candle n 1 1 @ 1 0 04121228 -rush_family n 1 3 @ #m %m 1 0 11743109 -rush_grass n 1 2 @ #m 1 0 12140903 -rush_hour n 1 1 @ 1 1 15229144 -rush_nut n 1 2 @ #m 1 0 12150969 -rush_rose n 1 1 @ 1 0 12376240 -rushdie n 1 1 @ 1 0 11274454 -rusher n 3 3 @ + ; 3 0 10544067 10543937 10543795 -rushing n 2 4 @ ~ + ; 2 2 00560293 00555648 -rushlight n 1 1 @ 1 0 04121228 -rushmore n 1 2 @ #p 1 0 09417668 -rusk n 1 1 @ 1 0 07689842 -ruskin n 1 1 @ 1 0 11274714 -russel_crouse n 1 1 @ 1 0 10916887 -russell n 7 1 @ 7 0 11275772 11275636 11275495 11275344 11275170 11275035 11274812 -russell's_body n 1 1 @ 1 0 09417926 -russet n 1 1 @ 1 1 04121342 -russet_scab n 1 1 @ 1 0 14281549 -russia n 4 8 @ ~ #m #p %m %p + - 4 3 09003284 09007723 09002814 09006413 -russia_leather n 1 1 @ 1 0 14760965 -russian n 2 4 @ ~ #m ; 2 2 09728403 06944348 -russian_agency n 1 2 @ ~ 1 0 08485830 -russian_almond n 1 1 @ 1 0 12650229 -russian_bank n 1 1 @ 1 0 00496760 -russian_cactus n 1 1 @ 1 0 11834890 -russian_capital n 1 3 @ #p %p 1 0 09004068 -russian_dandelion n 1 1 @ 1 0 12024805 -russian_dressing n 1 1 @ 1 0 07834872 -russian_federation n 1 6 @ ~ #m #p %p - 1 0 09006413 -russian_mayonnaise n 1 1 @ 1 0 07834872 -russian_monetary_unit n 1 2 @ ~ 1 0 13698949 -russian_olive n 1 1 @ 1 0 12326369 -russian_orthodox_church n 1 1 @ 1 0 08086821 -russian_revolution n 2 2 @ ; 2 0 01308008 01307754 -russian_river n 1 2 @ #p 1 0 09418059 -russian_roulette n 1 1 @ 1 0 00190931 -russian_soviet_federated_socialist_republic n 1 4 @ #p %m - 1 0 09007723 -russian_thistle n 1 1 @ 1 0 11834890 -russian_tumbleweed n 1 1 @ 1 0 11834890 -russian_vine n 1 2 @ #m 1 0 12601106 -russian_wolfhound n 1 1 @ 1 0 02090622 -russo-japanese_war n 1 2 @ %p 1 0 01308260 -russula n 1 2 @ #m 1 0 13009780 -russulaceae n 1 2 @ #m 1 0 13010064 -rust n 4 6 @ ~ #m %s %p + 4 0 14889479 14277655 13552270 13063269 -rust_fungus n 1 4 @ ~ #m %p 1 0 13063269 -rust_inhibitor n 1 1 @ 1 0 14724916 -rust_mite n 1 1 @ 1 0 01781875 -rustbelt n 1 2 @ #p 1 0 08565006 -rustic n 1 3 @ ~ + 1 0 10544232 -rustication n 5 3 @ + ; 5 0 14579215 00913274 00212551 00209301 00208694 -rusticism n 1 1 @ 1 0 07154666 -rusticity n 1 3 ! @ + 1 0 04816125 -rustiness n 2 2 @ + 2 0 14579365 05648756 -rusting n 1 2 @ %s 1 0 13552270 -rustle n 1 2 @ + 1 1 07392783 -rustler n 1 2 @ + 1 1 10544480 -rustling n 2 2 @ + 2 2 00966504 07392783 -rusty_blackbird n 1 2 @ #m 1 0 01574801 -rusty_grackle n 1 2 @ #m 1 0 01574801 -rusty_rig n 1 1 @ 1 0 12403276 -rusty_woodsia n 1 1 @ 1 0 13202125 -rut n 3 2 @ + 3 2 13894154 01026744 14038264 -ruta n 1 3 @ #m %m 1 0 12707040 -ruta_graveolens n 1 3 @ #m %p 1 0 12707199 -rutabaga n 2 4 @ #m #p %p 2 1 07736087 11877860 -rutabaga_plant n 1 3 @ #m %p 1 0 11877860 -rutaceae n 1 3 @ #m %m 1 0 12706644 -ruth n 4 2 @ #p 4 0 11276100 11275952 07553964 06434368 -ruth_benedict n 1 1 @ 1 0 10844401 -ruth_fulton n 1 1 @ 1 0 10844401 -ruth_saint_denis n 1 1 @ 1 0 11313911 -ruth_st._denis n 1 1 @ 1 0 11313911 -ruthenium n 1 1 @ 1 0 14653242 -rutherford n 3 1 @ 3 0 13646223 11276549 11276285 -rutherford_atom n 1 1 @ 1 0 06103746 -rutherford_b._hayes n 1 1 @ 1 0 11036140 -rutherford_birchard_hayes n 1 1 @ 1 0 11036140 -rutherfordium n 1 1 @ 1 0 14653416 -ruthfulness n 1 3 @ ~ + 1 0 07535209 -ruthlessness n 2 2 @ + 2 1 04831264 07506382 -rutile n 1 2 @ %s 1 0 15008399 -rutilus n 1 3 @ #m %m 1 0 01442335 -rutilus_rutilus n 1 2 @ #m 1 0 01442450 -rutland n 1 2 @ #p 1 0 09148871 -rutledge n 1 1 @ 1 0 11276676 -ruvettus_pretiosus n 1 1 @ 1 0 02622712 -rv n 1 2 @ ~ 1 0 04065272 -rwanda n 1 5 @ #p %m %p - 1 0 08815046 -rwanda_franc n 1 2 @ %p 1 0 13678589 -rwandan n 1 2 @ #m 1 0 09749509 -rwandese_republic n 1 5 @ #p %m %p - 1 0 08815046 -rya n 1 1 @ 1 0 04121426 -rya_rug n 1 1 @ 1 0 04121426 -rydberg n 1 1 @ 1 0 13643894 -rydberg's_penstemon n 1 2 @ #m 1 0 12888016 -rydberg_constant n 1 1 @ 1 0 13643894 -rydberg_unit n 1 1 @ 1 0 13643894 -rye n 3 4 @ #m #p %p 3 0 12157179 12134025 07907429 -rye_bread n 1 2 @ ~ 1 0 07685730 -rye_ergot n 1 1 @ 1 0 12965951 -rye_grass n 1 3 @ ~ #m 1 0 12124627 -rye_whiskey n 1 1 @ 1 0 07907429 -rye_whisky n 1 1 @ 1 0 07907429 -ryegrass n 1 3 @ ~ #m 1 0 12124627 -rynchopidae n 1 3 @ #m %m 1 0 02043497 -rynchops n 1 3 @ #m %m 1 0 02043659 -rypticus n 1 3 @ #m %m 1 0 02570312 -ryukyu_islands n 1 3 @ #p %p 1 0 08924691 -ryukyuan n 2 2 @ ; 2 0 09718518 06929459 -s n 6 7 @ ~ #m #s #p %p ; 6 0 15235126 14656219 13833375 13637240 06833112 05012585 -s-shape n 1 1 @ 1 0 13868515 -s._s._van_dine n 1 1 @ 1 0 11399123 -s._smith_stevens n 1 1 @ 1 0 11317519 -s.t.p. n 1 1 @ 1 0 13780339 -s.u.v. n 1 1 @ 1 0 04285965 -s/n n 1 1 @ 1 0 13825664 -s_wrench n 1 1 @ 1 0 04374521 -sa n 1 2 @ %m 1 0 08212146 -sa_node n 1 1 @ 1 0 05389460 -saale n 1 2 @ #p 1 0 09418169 -saale_glaciation n 1 1 @ 1 0 13487791 -saale_river n 1 2 @ #p 1 0 09418169 -saame n 2 2 @ #m 2 0 09720033 06959427 -saami n 2 2 @ #m 2 0 09720033 06959427 -saarinen n 2 1 @ 2 0 11277096 11276971 -saba n 1 2 @ #p 1 0 08749167 -sabah n 1 4 @ #p %m + 1 0 08964288 -sabahan n 1 2 @ #m 1 0 09722064 -sabal n 1 3 @ #m %m 1 0 12597006 -sabal_palmetto n 1 2 @ #m 1 0 12597134 -sabaoth n 1 2 @ ; 1 0 08184052 -sabaton n 1 2 @ #p 1 0 04259468 -sabayon n 1 1 @ 1 0 07621497 -sabbat n 1 1 @ 1 0 08398580 -sabbatarian n 1 2 @ ; 1 0 10544615 -sabbath n 1 2 @ + 1 1 15164750 -sabbath_school n 1 1 @ 1 0 08412492 -sabbatia n 1 3 @ ~ #m 1 0 12298165 -sabbatia_angularis n 1 1 @ 1 0 12298395 -sabbatia_campestris n 1 1 @ 1 0 12298637 -sabbatia_stellaris n 1 1 @ 1 0 12298395 -sabbatical n 1 2 @ ~ 1 0 15139849 -sabbatical_leave n 1 2 @ ~ 1 0 15139849 -sabbatical_year n 1 1 @ 1 0 15139983 -sabbatum n 1 2 @ #p 1 0 15164570 -sabellian n 1 1 @ 1 0 06962454 -saber n 2 4 @ ~ + ; 2 0 04121511 02987492 -saber-toothed_tiger n 1 2 @ ~ 1 0 02130545 -saber_rattling n 1 1 @ 1 0 00956172 -saber_saw n 1 1 @ 1 0 04121728 -sabertooth n 1 2 @ ~ 1 0 02130545 -sabicu n 2 4 @ #m #s %s 2 0 11763340 11763142 -sabicu_wood n 1 2 @ #s 1 0 11763340 -sabin n 2 1 @ 2 0 13610815 11277279 -sabin_vaccine n 1 1 @ 1 0 04122011 -sabine n 2 3 @ #m #p 2 1 09418331 09717233 -sabine_pine n 1 1 @ 1 0 11618525 -sabine_river n 1 2 @ #p 1 0 09418331 -sabinea n 1 3 @ #m %m 1 0 12568865 -sabinea_carinalis n 1 2 @ #m 1 0 12569037 -sable n 5 2 @ ~ 5 1 04122349 14765946 04960582 04122262 02450426 -sable's_hair_pencil n 1 2 @ ~ 1 0 04122349 -sable_antelope n 1 2 @ #m 1 0 02425887 -sable_brush n 1 2 @ ~ 1 0 04122349 -sable_coat n 1 1 @ 1 0 04122492 -sabot n 2 1 @ 2 0 04122578 03047690 -sabotage n 1 3 @ ~ + 1 1 01244895 -saboteur n 2 3 @ ~ #m 2 0 10544748 10087255 -sabra n 1 1 @ 1 0 09715974 -sabre n 2 4 @ ~ + ; 2 0 04121511 02987492 -sabre_rattling n 1 1 @ 1 0 00956172 -sac n 4 2 @ ~ 4 0 13914473 13092722 09667715 05515670 -sac_fungus n 1 2 @ #m 1 0 13023134 -sacagawea n 1 1 @ 1 0 11277500 -sacajawea n 1 1 @ 1 0 11277500 -saccade n 2 2 @ + 2 0 00338271 00335988 -saccharase n 1 1 @ 1 0 14921622 -saccharic_acid n 1 1 @ 1 0 14739734 -saccharide n 1 2 @ ~ 1 0 14792703 -saccharin n 1 1 @ 1 0 07859142 -saccharinity n 1 2 @ + 1 0 04994614 -saccharomyces n 1 3 @ #m %m 1 0 13025421 -saccharomyces_cerevisiae n 1 2 @ #m 1 0 13025854 -saccharomyces_ellipsoides n 1 2 @ #m 1 0 13026015 -saccharomycetaceae n 1 3 @ #m %m 1 0 13025197 -saccharose n 1 2 @ ~ 1 0 15062778 -saccharum n 1 3 @ #m %m 1 0 12132299 -saccharum_bengalense n 1 2 @ #m 1 0 12133151 -saccharum_munja n 1 2 @ #m 1 0 12133151 -saccharum_officinarum n 1 4 @ ~ #m %p 1 0 12132502 -sacco n 1 1 @ 1 0 11277680 -saccule n 1 2 @ #p 1 0 05322570 -sacculus n 1 2 @ #p 1 0 05322570 -sacerdotalism n 1 2 @ + 1 0 05951820 -saceur n 1 2 @ #m 1 0 08175700 -sachem n 2 1 @ 2 0 10545087 10544940 -sachet n 1 1 @ 1 0 04122685 -sachs_disease n 1 1 @ 1 0 14169364 -sachsen n 1 1 @ 1 0 08769179 -sack n 9 3 @ ~ + 9 1 04122825 13914473 13769206 07897975 04123026 03482252 03013438 00967446 00216174 -sack_coat n 1 1 @ 1 0 04123448 -sack_race n 1 1 @ 1 0 07463470 -sackbut n 1 1 @ 1 0 04123123 -sackcloth n 2 1 @ 2 0 04123317 04123228 -sackcloth_and_ashes n 1 1 @ 1 0 07214150 -sackful n 1 1 @ 1 0 13769206 -sacking n 2 4 @ ~ %s + 2 0 04123567 00216174 -saclant n 1 2 @ #m 1 0 08175233 -sacque n 1 1 @ 1 0 04123026 -sacral_nerve n 1 1 @ 1 0 05569835 -sacral_plexus n 1 1 @ 1 0 05508534 -sacral_vein n 1 1 @ 1 0 05379635 -sacral_vertebra n 1 2 @ #p 1 0 05589596 -sacrament n 1 3 @ ~ + 1 1 01034925 -sacrament_of_the_eucharist n 1 2 @ %p 1 0 01035853 -sacramental_manduction n 1 3 @ ~ #p 1 0 01036333 -sacramental_oil n 1 1 @ 1 0 03026350 -sacramental_wine n 1 1 @ 1 0 07893425 -sacramento n 1 2 @ #p 1 1 09064966 -sacramento_mountains n 1 2 @ #p 1 0 09418484 -sacramento_river n 1 2 @ #p 1 0 09418629 -sacramento_sturgeon n 1 2 @ #m 1 0 02640626 -sacred_college n 1 4 @ #p %m ; 1 0 08085824 -sacred_cow n 1 1 @ 1 0 10545187 -sacred_fig n 1 1 @ 1 0 12402596 -sacred_ibis n 1 2 @ #m 1 0 02006364 -sacred_lotus n 1 1 @ 1 0 11717399 -sacred_mushroom n 1 3 @ #p %s 1 0 11849467 -sacred_scripture n 1 2 @ ~ 1 0 06430385 -sacred_text n 1 2 @ ~ 1 0 06429590 -sacred_trinity n 1 2 @ %m 1 0 09536789 -sacred_writing n 1 2 @ ~ 1 1 06429590 -sacredness n 1 3 @ ~ + 1 0 04855332 -sacrifice n 5 4 @ ~ + ; 5 2 00205891 07340895 13328073 00227595 00130846 -sacrifice_fly n 1 1 @ 1 1 00130987 -sacrifice_operation n 1 1 @ 1 0 00731756 -sacrificer n 1 2 @ + 1 0 10545296 -sacrilege n 1 2 @ + 1 1 00746587 -sacrilegiousness n 1 2 @ + 1 0 04856182 -sacristan n 1 1 @ 1 0 10585217 -sacristy n 1 2 @ #p 1 0 04532504 -sacrum n 1 4 @ #p %p + 1 0 05279407 -sad_sack n 1 1 @ 1 0 09879744 -sadat n 1 1 @ 1 0 11277900 -saddam n 1 1 @ 1 0 11068401 -saddam's_martyrs n 1 1 @ 1 0 08207672 -saddam_bin_hussein_at-takriti n 1 1 @ 1 0 11068401 -saddam_hussein n 1 1 @ 1 0 11068401 -saddhu n 1 2 @ ; 1 0 10545682 -saddle n 6 5 @ ~ #p %p + 6 1 04123740 09418810 07667636 04123980 02835915 01895219 -saddle_blanket n 1 2 @ ~ 1 0 04124202 -saddle_block_anaesthesia n 1 1 @ 1 0 14029686 -saddle_block_anesthesia n 1 1 @ 1 0 14029686 -saddle_feather n 1 1 @ 1 0 01898593 -saddle_hackle n 1 1 @ 1 1 01898593 -saddle_horn n 1 2 @ #p 1 0 03536931 -saddle_horse n 1 2 @ ~ 1 0 02377703 -saddle_of_lamb n 1 1 @ 1 0 07667778 -saddle_oxford n 1 1 @ 1 0 04124370 -saddle_oyster n 1 2 @ #m 1 0 01962506 -saddle_roof n 1 3 @ ~ %p 1 0 03409591 -saddle_seat n 1 1 @ 1 0 04124573 -saddle_shoe n 1 1 @ 1 0 04124370 -saddle_soap n 1 1 @ 1 0 04124764 -saddle_sore n 2 1 @ 2 0 14275240 14184506 -saddle_stitch n 1 1 @ 1 0 04124887 -saddleback n 2 3 @ ~ %p 2 0 09418810 03409591 -saddleback_roof n 1 3 @ ~ %p 1 0 03409591 -saddlebag n 1 1 @ 1 1 04124098 -saddlebill n 1 2 @ #m 1 0 02004131 -saddlebow n 1 3 @ ~ #p 1 0 03980178 -saddlecloth n 1 2 @ ~ 1 0 04124202 -saddled-shaped_false_morel n 1 2 @ #m 1 0 13038376 -saddler n 1 1 @ 1 0 10545415 -saddlery n 2 3 @ ~ + 2 0 04295081 04124488 -sadducee n 1 2 @ + 1 0 10545524 -sade n 1 1 @ 1 0 11278120 -sadhe n 1 2 @ #p 1 0 06838543 -sadhu n 1 2 @ ; 1 0 10545682 -sadi_carnot n 1 1 @ 1 0 10883380 -sadism n 1 3 @ ~ + 1 1 07493830 -sadist n 1 3 ! @ + 1 0 10545792 -sadleria n 1 2 @ #m 1 0 13185820 -sadness n 3 4 ! @ ~ + 3 1 07532440 13989051 04631470 -sadomasochism n 1 2 @ + 1 0 07494018 -sadomasochist n 1 2 @ + 1 0 10545940 -saek n 1 1 @ 1 0 06936540 -safaqis n 1 2 @ #p 1 0 09038272 -safar n 1 2 @ #p 1 0 15217443 -safari n 1 2 @ ; 1 0 00309906 -safari_park n 1 1 @ 1 0 08645420 -safe n 3 2 @ ~ 3 1 04125021 04125116 03088164 -safe-conduct n 1 1 @ 1 1 06691267 -safe-deposit n 1 1 @ 1 0 04125257 -safe-deposit_box n 1 1 @ 1 0 04125257 -safe_harbor n 1 1 @ 1 0 00176766 -safe_house n 1 1 @ 1 0 04125541 -safe_period n 1 2 @ #p 1 0 15296039 -safe_sex n 1 1 @ 1 0 00844048 -safebreaker n 1 1 @ 1 1 10546062 -safecracker n 1 1 @ 1 0 10546062 -safeguard n 2 3 @ ~ + 2 1 00822970 06691267 -safehold n 1 1 @ 1 0 04125466 -safekeeping n 1 2 @ ~ 1 0 00818466 -safeness n 1 3 ! @ + 1 0 04856308 -safety n 6 4 ! @ ~ ; 6 4 14538472 08643933 03464467 00131090 03088164 00188620 -safety-deposit n 1 1 @ 1 0 04125257 -safety_arch n 1 1 @ 1 0 04125692 -safety_belt n 1 2 @ ~ 1 0 04125853 -safety_bicycle n 1 1 @ 1 0 04126066 -safety_bike n 1 1 @ 1 0 04126066 -safety_blitz n 1 2 @ ; 1 0 00976085 -safety_bolt n 1 1 @ 1 0 04126244 -safety_catch n 1 2 @ #p 1 0 04126373 -safety_curtain n 1 1 @ 1 0 04126541 -safety_deposit_box n 1 1 @ 1 0 04125257 -safety_device n 1 2 @ ~ 1 0 03464467 -safety_factor n 1 1 @ 1 0 13825490 -safety_feature n 1 1 @ 1 0 05852430 -safety_fuse n 2 2 @ ~ 2 0 04126659 03407369 -safety_glass n 1 1 @ 1 0 14882370 -safety_harness n 1 2 @ ~ 1 0 04125853 -safety_hat n 1 1 @ 1 0 03492922 -safety_island n 1 2 @ #p 1 0 04466169 -safety_isle n 1 2 @ #p 1 0 04466169 -safety_lamp n 1 1 @ 1 0 04126852 -safety_lock n 2 2 @ #p 2 0 04126373 04126244 -safety_margin n 1 1 @ 1 0 05120835 -safety_match n 1 1 @ 1 0 04126980 -safety_net n 2 1 @ 2 0 06686467 04127117 -safety_nut n 1 1 @ 1 0 03684338 -safety_pin n 1 1 @ 1 0 04127249 -safety_rail n 1 1 @ 1 0 04127395 -safety_razor n 1 1 @ 1 0 04127521 -safety_squeeze n 1 1 @ 1 0 00565051 -safety_squeeze_play n 1 1 @ 1 0 00565051 -safety_valve n 1 1 @ 1 0 04127633 -safety_zone n 1 2 @ #p 1 0 04466169 -safflower n 1 4 @ #m %s %p 1 0 11946051 -safflower_oil n 2 2 @ #s 2 0 11946433 07675040 -safflower_seed n 1 3 @ #p %s 1 0 11946313 -saffranine n 1 2 @ ~ 1 0 15001500 -saffron n 3 4 @ ~ #p %p 3 0 12416703 07827284 04966717 -saffron_crocus n 1 2 @ %p 1 0 12416703 -safranin n 1 2 @ ~ 1 0 15001500 -safranine n 1 2 @ ~ 1 0 15001500 -sag n 1 2 @ + 1 0 13905572 -saga n 1 1 @ 1 1 06370522 -sagaciousness n 2 3 @ ~ + 2 0 05614175 04890361 -sagacity n 2 3 @ ~ + 2 0 05614175 04890361 -sagamore n 1 1 @ 1 0 10544940 -sage n 3 4 @ ~ #m #p 3 2 10546202 07820497 12864545 -sage_brush n 1 3 @ ~ #m 1 0 11929027 -sage_green n 1 1 @ 1 0 04967801 -sage_grouse n 1 2 @ #m 1 0 01797601 -sage_hen n 1 2 @ #m 1 0 01797601 -sage_willow n 2 2 @ #m 2 0 12730544 12728164 -sagebrush n 1 3 @ ~ #m 1 1 11929027 -sagebrush_buttercup n 1 2 @ #m 1 0 11721844 -sagebrush_lizard n 1 1 @ 1 0 01680983 -sagebrush_mariposa_tulip n 1 2 @ #m 1 0 12448361 -sagebrush_state n 1 3 @ #p %p 1 0 09110422 -sagina n 1 3 @ #m %m 1 0 11814059 -saginaw n 1 1 @ 1 0 09101753 -sagitta n 2 2 @ #m 2 0 09418954 01924309 -sagittal_suture n 1 2 @ #p 1 0 05545047 -sagittaria n 1 3 @ ~ #m 1 0 12612410 -sagittariidae n 1 3 @ #m %m 1 0 01618220 -sagittarius n 4 5 @ #m #p %m ; 4 0 09753348 09419112 08687525 01618356 -sagittarius_serpentarius n 1 2 @ #m 1 0 01618503 -sagittarius_the_archer n 1 1 @ 1 0 08687525 -sagittate-leaf n 1 1 @ 1 0 13159778 -sagittiform_leaf n 1 1 @ 1 0 13159778 -sago n 1 2 @ ~ 1 0 15054607 -sago_fern n 1 2 @ #m 1 0 13187367 -sago_palm n 2 3 @ ~ %s 2 0 12582665 11601177 -saguaro n 1 2 @ #m 1 0 11844371 -sahaptin n 2 2 @ ~ 2 0 09668199 06925305 -sahaptino n 1 2 @ ~ 1 0 09668199 -sahara n 1 4 @ #p %m %p 1 0 09172283 -sahara_desert n 1 4 @ #p %m %p 1 0 09172283 -saharan n 1 1 @ 1 0 06998530 -sahib n 1 2 @ ~ 1 0 09687775 -sahuaro n 1 2 @ #m 1 0 11844371 -saida n 1 2 @ #p 1 0 08958212 -saiga n 1 2 @ #m 1 0 02426176 -saiga_tatarica n 1 2 @ #m 1 0 02426176 -saigon n 1 2 @ #p 1 0 09164241 -saigon_cinnamon n 1 3 @ #m %p 1 0 11705573 -sail n 3 5 @ ~ #p %p + 3 2 04127904 00312932 04128413 -sailboat n 1 3 @ ~ %p 1 0 04128499 -sailcloth n 1 1 @ 1 0 04128710 -sailfish n 2 3 @ ~ #m 2 0 07792383 02630281 -sailing n 4 5 @ ~ %p + - 4 3 00314469 00313806 00057657 00303495 -sailing-race n 1 1 @ 1 0 07459992 -sailing_boat n 1 3 @ ~ %p 1 0 04128499 -sailing_master n 1 1 @ 1 0 10546428 -sailing_ship n 1 4 @ ~ %p - 1 0 04128837 -sailing_vessel n 1 4 @ ~ %p - 1 0 04128837 -sailing_warship n 1 2 @ ~ 1 0 04129490 -sailmaker n 1 1 @ 1 0 10546561 -sailor n 3 3 @ ~ + 3 2 10546633 09861395 02859184 -sailor's-choice n 2 2 @ #m 2 0 02592371 02589316 -sailor's_breastplate n 1 2 @ #p 1 0 04010057 -sailor_boy n 1 2 @ ~ 1 0 09861395 -sailor_cap n 1 1 @ 1 0 04129688 -sailor_king n 1 1 @ 1 0 11389301 -sailor_suit n 1 1 @ 1 0 04129766 -sailors_choice n 1 2 @ #m 1 0 02589316 -sailplane n 1 3 @ ~ + 1 0 03439814 -sailplaning n 1 3 @ ~ + 1 0 00303495 -saimiri n 1 2 @ #m 1 0 02493974 -saimiri_sciureus n 1 1 @ 1 0 02494079 -sainfoin n 1 2 @ #m 1 0 12552309 -saint n 3 4 @ ~ #m + 3 3 10547145 10546850 10325243 -saint's_day n 1 3 @ ~ #p 1 0 15221596 -saint-bernard's-lily n 1 2 @ #m 1 0 12439626 -saint-john's-bread n 1 2 @ %s 1 0 07598335 -saint-mihiel n 1 3 @ #p ; 1 0 01293167 -saint-saens n 1 1 @ 1 0 11278351 -saint_agnes's_eve n 1 2 @ #p 1 0 15185721 -saint_ambrose n 1 2 @ ; 1 0 10815648 -saint_andrew n 1 2 @ ; 1 0 10818088 -saint_andrew_the_apostle n 1 2 @ ; 1 0 10818088 -saint_anselm n 1 1 @ 1 0 10818860 -saint_anthony's_fire n 1 2 @ ~ 1 0 14232157 -saint_athanasius n 1 2 @ ; 1 0 10827155 -saint_augustine n 2 3 @ #p ; 2 0 10828573 09074834 -saint_baeda n 1 2 @ ; 1 0 10840769 -saint_beda n 1 2 @ ; 1 0 10840769 -saint_bede n 1 2 @ ; 1 0 10840769 -saint_benedict n 1 1 @ 1 0 10843858 -saint_bernard n 1 1 @ 1 0 02109525 -saint_boniface n 1 2 @ ; 1 0 10856486 -saint_bride n 1 1 @ 1 0 10864204 -saint_bridget n 1 1 @ 1 0 10864204 -saint_brigid n 1 1 @ 1 0 10864204 -saint_bruno n 1 2 @ ; 1 0 10868980 -saint_christopher n 2 2 @ #p 2 0 10897154 08987879 -saint_christopher-nevis n 1 4 @ #m #p %p 1 0 08987423 -saint_cloud n 1 2 @ #p 1 0 09103217 -saint_crispin n 1 1 @ 1 0 10915373 -saint_cyril n 1 1 @ 1 0 10919886 -saint_david n 1 1 @ 1 0 10924231 -saint_denis n 1 1 @ 1 0 11313911 -saint_dominic n 1 2 @ ; 1 0 10938363 -saint_edward_the_confessor n 1 1 @ 1 0 10952143 -saint_edward_the_martyr n 1 1 @ 1 0 10952629 -saint_elizabeth_ann_bayley_seton n 1 1 @ 1 0 11293972 -saint_elmo's_fire n 1 1 @ 1 0 11440802 -saint_elmo's_light n 1 1 @ 1 0 11440802 -saint_emilion n 1 1 @ 1 0 07898117 -saint_eustatius n 1 2 @ #p 1 0 08749312 -saint_francis n 2 3 @ #p ; 2 0 10978098 09419281 -saint_francis_of_assisi n 1 2 @ ; 1 0 10978098 -saint_francis_river n 1 2 @ #p 1 0 09419281 -saint_francis_xavier n 1 1 @ 1 0 11401009 -saint_george n 1 1 @ 1 0 10996285 -saint_gregory_i n 1 2 @ ; 1 0 11013876 -saint_ignatius n 1 1 @ 1 0 11070994 -saint_ignatius'_itch n 1 1 @ 1 0 14200873 -saint_ignatius_of_loyola n 1 2 @ ; 1 0 11071177 -saint_irenaeus n 1 2 @ ; 1 0 11073061 -saint_james n 1 2 @ ; 1 0 11078982 -saint_james_the_apostle n 1 2 @ ; 1 0 11078982 -saint_jerome n 1 2 @ ; 1 0 11083064 -saint_joan n 1 1 @ 1 0 11081353 -saint_john n 3 3 @ #p ; 3 0 11085924 09419536 08824771 -saint_john's n 2 2 @ #p 2 0 08825321 08710325 -saint_john_river n 1 2 @ #p 1 0 09419536 -saint_john_the_apostle n 1 2 @ ; 1 0 11085924 -saint_johns n 1 2 @ #p 1 0 09419783 -saint_johns_river n 1 2 @ #p 1 0 09419783 -saint_joseph n 2 2 @ #p 2 0 15194739 09107412 -saint_jude n 1 2 @ ; 1 0 11094055 -saint_kitts n 1 2 @ #p 1 0 08987879 -saint_kitts_and_nevis n 1 4 @ #m #p %p 1 0 08987423 -saint_lawrence n 2 3 @ #p ; 2 0 11121108 09420030 -saint_lawrence_river n 1 2 @ #p 1 0 09420030 -saint_lawrence_seaway n 1 1 @ 1 0 04129872 -saint_louis n 2 2 @ #p 2 0 11140243 09107626 -saint_lucia n 2 4 @ #m #p %p 2 0 08988609 08988453 -saint_luke n 1 2 @ ; 1 0 11144604 -saint_maarten n 1 2 @ #p 1 0 08749650 -saint_mark n 1 1 @ 1 0 11156943 -saint_martin n 1 2 @ #p 1 0 08749650 -saint_martin's_summer n 1 2 @ #p 1 0 15185996 -saint_matthew n 1 2 @ ; 1 0 11164671 -saint_matthew_the_apostle n 1 2 @ ; 1 0 11164671 -saint_nicholas n 2 1 @ 2 0 11205797 10550673 -saint_nick n 1 1 @ 1 0 10550673 -saint_olaf n 1 1 @ 1 0 11213552 -saint_olav n 1 1 @ 1 0 11213552 -saint_patrick n 1 1 @ 1 0 11225469 -saint_patrick's_day n 1 1 @ 1 0 15187988 -saint_paul n 2 4 @ #m #p ; 2 0 11225661 09103377 -saint_peter n 1 1 @ 1 0 11231157 -saint_peter's_wreath n 1 1 @ 1 0 12659539 -saint_peter_the_apostle n 1 1 @ 1 0 11231157 -saint_petersburg n 2 2 @ #p 2 0 09075007 09008454 -saint_polycarp n 1 1 @ 1 0 11241455 -saint_teresa_of_avila n 1 1 @ 1 0 11336176 -saint_thomas n 2 2 @ ; 2 0 11338796 10820790 -saint_thomas_a_becket n 1 2 @ ; 1 0 10840021 -saint_thomas_aquinas n 1 2 @ ; 1 0 10820790 -saint_ulmo's_fire n 1 1 @ 1 0 11440802 -saint_ulmo's_light n 1 1 @ 1 0 11440802 -saint_valentine's_day n 1 2 @ #p 1 0 15187250 -saint_vincent n 1 3 @ #p %p 1 0 08989324 -saint_vincent_and_the_grenadines n 1 4 @ #m #p %p 1 0 08989031 -saint_vitus_dance n 1 1 @ 1 0 14095568 -sainthood n 2 3 @ %m + 2 0 08152657 00599329 -saintliness n 1 2 @ + 1 0 04848383 -saintpaulia n 1 3 @ #m %m 1 0 12832976 -saintpaulia_ionantha n 1 2 @ #m 1 0 12833149 -saints_peter_and_paul n 1 2 @ #p 1 0 15193776 -saipan n 2 4 @ #p ; - 2 0 08838070 01293438 -sajama n 1 2 @ #p 1 0 09420273 -sakartvelo n 1 5 @ #m #p %m %p 1 0 09018848 -sake n 3 4 @ ~ #s ; 3 1 05143077 07891433 05983347 -sakharov n 1 1 @ 1 0 11278498 -saki n 3 4 @ #m #s ; 3 0 11196627 07891433 02492948 -sakkara n 1 2 @ #p 1 0 08900047 -sakti n 1 1 @ 1 0 09528587 -saktism n 2 4 @ #m %m + 2 0 08097222 06239076 -sal_ammoniac n 1 1 @ 1 0 14744589 -sal_soda n 1 1 @ 1 0 15044844 -sal_volatile n 1 2 @ #s 1 0 15052063 -salaah n 1 1 @ 1 0 05914359 -salaam n 1 2 @ + 1 0 07275713 -salaat n 1 1 @ 1 0 05914359 -salability n 1 2 @ + 1 0 04732237 -salableness n 1 2 @ + 1 0 04732237 -salaciousness n 1 3 @ ~ + 1 0 04903368 -salacity n 1 3 @ ~ + 1 0 04903368 -salad n 1 2 @ ~ 1 1 07806221 -salad_bar n 1 1 @ 1 0 04130143 -salad_bowl n 2 1 @ 2 0 04130447 04130257 -salad_burnet n 2 4 @ #m #p %p 2 0 12637485 07820036 -salad_cream n 1 2 @ ; 1 0 07835051 -salad_days n 1 2 @ #p 1 0 15151641 -salad_dressing n 1 2 @ ~ 1 0 07832902 -salad_fork n 1 1 @ 1 0 04130357 -salad_green n 1 2 @ ~ 1 0 07723330 -salad_greens n 1 2 @ ~ 1 0 07723330 -salad_nicoise n 1 1 @ 1 0 07807171 -salad_oil n 1 1 @ 1 0 07674912 -salad_plate n 1 1 @ 1 0 04130447 -salade n 1 1 @ 1 0 04130907 -saladin n 1 1 @ 1 0 11278756 -salafast_group_for_call_and_combat n 1 2 @ ; 1 0 08044265 -salafi_movement n 1 1 @ 1 0 06235977 -salafism n 1 1 @ 1 0 06235977 -salafist_group n 1 2 @ ; 1 0 08044265 -salah n 1 1 @ 1 0 05914359 -salah-ad-din_yusuf_ibn-ayyub n 1 1 @ 1 0 11278756 -salah_al-din_battalions n 1 3 @ #p ; 1 0 08040257 -salai n 1 2 @ #m 1 0 12692160 -salal n 1 2 @ #m 1 0 12236160 -salamander n 3 2 @ ~ 3 1 01629276 09501427 03975926 -salamandra n 1 3 @ #m %m 1 0 01629093 -salamandra_atra n 1 2 @ #m 1 0 01630148 -salamandra_maculosa n 1 2 @ #m 1 0 01629962 -salamandra_salamandra n 1 2 @ #m 1 0 01629819 -salamandridae n 1 3 @ #m %m 1 0 01628885 -salami n 1 1 @ 1 0 07677747 -salary n 1 3 @ ~ #p 1 1 13279262 -salary_cut n 1 1 @ 1 0 00352683 -salary_increase n 1 1 @ 1 0 05110185 -salat n 1 1 @ 1 0 05914359 -sale n 5 2 @ ~ 5 3 01114824 01117541 01117723 14564306 06527851 -sale_in_gross n 1 1 @ 1 0 06528403 -salem n 3 2 @ #p 3 0 09134202 09099264 08904858 -saleratus n 1 1 @ 1 0 14775995 -salerno n 1 3 @ #p ; 1 0 01293650 -saleroom n 1 2 @ ; 1 0 04209811 -sales n 1 1 @ 1 0 13260936 -sales_agreement n 1 2 @ ~ 1 0 06527851 -sales_booth n 1 2 @ ~ 1 0 04299215 -sales_campaign n 1 1 @ 1 0 00801724 -sales_demonstrator n 1 1 @ 1 0 10002982 -sales_department n 1 1 @ 1 0 08119525 -sales_division n 1 1 @ 1 0 08119525 -sales_event n 1 2 @ ~ 1 0 01117723 -sales_finance_company n 1 1 @ 1 0 08421644 -sales_force n 1 1 @ 1 1 08119525 -sales_incentive n 1 1 @ 1 0 13273949 -sales_outlet n 1 3 @ ~ %p 1 0 03748162 -sales_pitch n 1 1 @ 1 0 07248653 -sales_promotion n 1 1 @ 1 0 07249817 -sales_rep n 1 2 @ ~ 1 0 10548681 -sales_representative n 1 2 @ ~ 1 0 10548681 -sales_resistance n 1 1 @ 1 0 01170047 -sales_staff n 1 1 @ 1 0 08352613 -sales_talk n 1 1 @ 1 0 07248653 -sales_tax n 1 1 @ 1 1 13316568 -salesclerk n 1 2 @ ~ 1 0 10548227 -salesgirl n 1 2 @ ~ 1 1 10548419 -saleslady n 1 2 @ ~ 1 1 10548419 -salesman n 1 3 @ ~ + 1 1 10548537 -salesmanship n 1 2 @ + 1 1 05639651 -salesperson n 1 2 @ ~ 1 0 10548681 -salesroom n 1 2 @ ; 1 0 04209811 -saleswoman n 1 2 @ ~ 1 0 10548419 -salian n 1 1 @ 1 0 09689000 -salian_frank n 1 1 @ 1 0 09689000 -salic_law n 1 1 @ 1 0 06534918 -salicaceae n 1 3 @ #m %m 1 0 12723985 -salicales n 1 3 @ #m %m 1 0 12723835 -salicornia n 1 3 @ #m %m 1 0 11834148 -salicornia_europaea n 1 2 @ #m 1 0 11834272 -salicylate n 1 2 @ ~ 1 0 15009843 -salicylate_poisoning n 1 1 @ 1 0 14512674 -salicylic_acid n 1 2 @ #s 1 0 15010038 -salience n 1 3 @ ~ + 1 0 14434022 -saliency n 1 3 @ ~ + 1 0 14434022 -salient n 1 3 @ #p ; 1 0 08594886 -salient_angle n 1 2 ! @ 1 0 13890226 -salientia n 1 4 @ #m %m + 1 0 01639369 -salientian n 1 2 @ ~ 1 0 01639765 -salim n 1 2 @ ; 1 0 11201386 -salina n 1 2 @ #p 1 0 09088718 -saline n 1 2 @ + 1 1 14590293 -saline_solution n 1 1 @ 1 0 14590293 -salinger n 1 1 @ 1 0 11278980 -salinity n 2 2 @ + 2 0 05717342 04993604 -salinometer n 1 1 @ 1 0 04130566 -salisbury n 1 2 @ #p 1 0 09167505 -salisbury_steak n 1 1 @ 1 0 07875926 -salish n 2 2 @ ~ 2 1 06914167 09667358 -salishan n 1 2 @ ~ 1 0 06914167 -saliva n 1 5 @ ~ #p %s + 1 1 05416198 -salivary_calculus n 1 1 @ 1 0 09434125 -salivary_duct n 1 1 @ 1 0 05416545 -salivary_gland n 1 4 @ ~ #p %p 1 0 05532944 -salivation n 1 3 @ ~ + 1 0 13552528 -salix n 1 3 @ #m %m 1 0 12724201 -salix_alba n 1 2 @ #m 1 0 12725738 -salix_alba_caerulea n 1 2 @ #m 1 0 12726357 -salix_alba_sericea n 1 2 @ #m 1 0 12725940 -salix_alba_vitellina n 1 2 @ #m 1 0 12726159 -salix_amygdalina n 1 2 @ #m 1 0 12727960 -salix_amygdaloides n 1 2 @ #m 1 0 12727729 -salix_arctica n 1 2 @ #m 1 0 12726528 -salix_babylonica n 1 2 @ #m 1 0 12726670 -salix_blanda n 1 2 @ #m 1 0 12726902 -salix_candida n 1 2 @ #m 1 0 12728164 -salix_caprea n 1 2 @ #m 1 0 12727518 -salix_cinerea n 1 2 @ #m 1 0 12728864 -salix_discolor n 1 2 @ #m 1 0 12727101 -salix_fragilis n 1 2 @ #m 1 0 12728322 -salix_herbacea n 1 2 @ #m 1 0 12728656 -salix_humilis n 1 2 @ #m 1 0 12728508 -salix_lasiolepis n 1 2 @ #m 1 0 12729023 -salix_lucida n 1 2 @ #m 1 0 12729164 -salix_nigra n 1 2 @ #m 1 0 12729315 -salix_pendulina n 1 2 @ #m 1 0 12726902 -salix_pendulina_blanda n 1 2 @ #m 1 0 12726902 -salix_pentandra n 1 2 @ #m 1 0 12729521 -salix_purpurea n 1 2 @ #m 1 0 12729729 -salix_pyrifolia n 1 2 @ #m 1 0 12729950 -salix_repens n 1 2 @ #m 1 0 12730143 -salix_sericea n 1 2 @ #m 1 0 12725940 -salix_sitchensis n 1 2 @ #m 1 0 12730370 -salix_triandra n 1 2 @ #m 1 0 12727960 -salix_tristis n 1 2 @ #m 1 0 12730544 -salix_uva-ursi n 1 2 @ #m 1 0 12730776 -salix_viminalis n 1 2 @ #m 1 0 12731029 -salix_vitellina n 1 2 @ #m 1 0 12726159 -salk n 1 1 @ 1 0 11279109 -salk_vaccine n 1 1 @ 1 0 04130715 -sallet n 1 1 @ 1 0 04130907 -sallow n 1 3 @ ~ #m 1 0 12727301 -sallowness n 1 2 @ + 1 0 04977946 -sally n 3 2 @ ; 3 1 06767777 00971309 00801966 -sally_lunn n 1 1 @ 1 0 07635044 -sallying_forth n 1 1 @ 1 1 00801966 -salmacis n 1 1 @ 1 0 09551152 -salmagundi n 2 2 @ ~ 2 0 08398773 07807002 -salman_rushdie n 1 1 @ 1 0 11274454 -salmi n 1 1 @ 1 0 07592922 -salmo n 1 3 @ #m %m 1 0 02535349 -salmo_gairdneri n 1 3 @ #m %p 1 0 02537525 -salmo_salar n 1 4 @ ~ #m %p 1 0 02535537 -salmo_trutta n 1 4 @ ~ #m %p 1 0 02537319 -salmon n 4 5 @ ~ #m #p %p 4 1 02534734 09420423 07795751 04965371 -salmon_berry n 1 1 @ 1 0 12657082 -salmon_loaf n 1 1 @ 1 0 07875835 -salmon_oil n 1 1 @ 1 0 15010277 -salmon_p._chase n 1 1 @ 1 0 10893606 -salmon_pink n 1 1 @ 1 0 04971675 -salmon_portland_chase n 1 1 @ 1 0 10893606 -salmon_river n 1 2 @ #p 1 0 09420423 -salmon_trout n 3 5 @ ~ #m #p %p 3 0 07794744 02538010 02537319 -salmonberry n 3 1 @ 3 0 12657294 12657082 12656909 -salmonella n 1 3 @ ~ #m 1 0 01368973 -salmonella_enteritidis n 1 1 @ 1 0 01369210 -salmonella_typhi n 1 1 @ 1 0 01369484 -salmonella_typhimurium n 1 1 @ 1 0 01369358 -salmonella_typhosa n 1 1 @ 1 0 01369484 -salmonellosis n 1 1 @ 1 0 14069747 -salmonid n 1 3 @ ~ #m 1 0 02534559 -salmonidae n 1 3 @ #m %m 1 0 02534352 -salmwood n 1 2 @ #m 1 0 12818346 -salol n 1 1 @ 1 0 15010430 -salome n 1 1 @ 1 0 11279300 -salomon n 1 1 @ 1 0 11279433 -salon n 3 1 @ 3 1 04131113 04131208 04131015 -salonica n 1 2 @ #p 1 0 08789605 -salonika n 1 2 @ #p 1 0 08789605 -saloon n 3 5 @ ~ #p %p ; 3 2 02796995 04018399 04166281 -saloon_keeper n 1 1 @ 1 0 10548976 -salp n 1 2 @ #m 1 0 01469723 -salpa n 1 2 @ #m 1 0 01469723 -salpichroa n 1 3 @ #m %m 1 0 12912105 -salpichroa_organifolia n 1 2 @ #m 1 0 12912274 -salpichroa_rhomboidea n 1 2 @ #m 1 0 12912274 -salpidae n 1 3 @ #m %m 1 0 01469425 -salpiglossis n 1 3 @ ~ #m 1 0 12912670 -salpiglossis_sinuata n 1 1 @ 1 0 12912801 -salpinctes n 1 3 @ #m %m 1 0 01585577 -salpinctes_obsoletus n 1 2 @ #m 1 0 01585715 -salpingectomy n 1 1 @ 1 0 00687365 -salpingitis n 1 1 @ 1 0 14355459 -salpinx n 1 2 @ ~ 1 0 05247057 -salsa n 1 1 @ 1 0 07823460 -salsify n 3 5 @ ~ #m #p %p 3 0 12027538 12027222 07735052 -salsilla n 2 2 @ #m 2 0 12420124 12419878 -salsola n 1 2 @ #m 1 0 11834521 -salsola_kali n 1 1 @ 1 0 11834654 -salsola_kali_tenuifolia n 1 1 @ 1 0 11834890 -salsola_soda n 1 1 @ 1 0 11834654 -salt n 4 3 @ ~ + 4 2 15010703 07813107 07149582 05717342 -salt-free_diet n 1 1 @ 1 0 07564292 -salt-rising_bread n 1 1 @ 1 0 07686461 -salt_cod n 1 1 @ 1 0 07789911 -salt_depletion n 1 1 @ 1 0 14017451 -salt_flat n 1 1 @ 1 0 09420550 -salt_i n 1 1 @ 1 0 06775218 -salt_ii n 1 1 @ 1 0 06775409 -salt_lake_city n 1 2 @ #p 1 0 09147737 -salt_lick n 1 1 @ 1 0 09420689 -salt_marsh n 1 1 @ 1 0 09420794 -salt_marsh_mallow n 1 1 @ 1 0 12182276 -salt_merchant n 1 1 @ 1 0 10549062 -salt_mine n 2 1 @ 2 0 04131610 00606119 -salt_plain n 1 1 @ 1 0 09420550 -salt_pork n 1 2 @ ~ 1 0 07671107 -salt_reed_grass n 1 1 @ 1 0 12139793 -salt_rush n 1 1 @ 1 0 11744355 -salt_shaker n 1 1 @ 1 0 04131690 -salt_tree n 1 2 @ #m 1 0 12533730 -saltation n 5 5 @ ~ + ; - 5 0 13552644 07426732 07358985 00428270 00120202 -saltbox n 1 1 @ 1 0 04131368 -saltbush n 1 3 @ ~ #m 1 0 11830906 -saltcellar n 1 1 @ 1 0 04131499 -salter n 2 2 @ + 2 0 10549165 10549062 -saltine n 1 1 @ 1 0 07695187 -saltiness n 3 4 @ ~ + ; 3 0 07072838 05717342 04993413 -salting n 1 2 @ + 1 0 00248534 -saltire n 1 1 @ 1 0 04302598 -salton_sea n 1 2 @ #p 1 0 09420911 -saltpan n 1 1 @ 1 0 09421031 -saltpeter n 1 2 @ #s 1 0 14861355 -saltpetre n 1 2 @ #s 1 0 14861355 -saltshaker n 1 1 @ 1 0 04131690 -saltwater n 1 4 ! @ ~ %s 1 1 15008847 -saltwater_fish n 1 2 @ ~ 1 0 07775905 -saltworks n 1 2 @ ; 1 0 04131811 -saltwort n 2 2 @ #m 2 0 11834654 11827541 -saltwort_family n 1 3 @ #m %m 1 0 11827169 -salubriousness n 1 3 ! @ + 1 0 04790238 -salubrity n 1 3 ! @ + 1 0 04790238 -saluki n 1 1 @ 1 0 02091831 -salutation n 3 4 @ ~ + ; 3 0 06688913 06630017 06397789 -salutatorian n 1 1 @ 1 0 10549315 -salutatory n 1 1 @ 1 0 07243382 -salutatory_address n 1 1 @ 1 0 07243382 -salutatory_oration n 1 1 @ 1 0 07243382 -salutatory_speaker n 1 1 @ 1 0 10549315 -salute n 3 3 @ + ; 3 0 06688913 06633041 06632358 -saluter n 1 2 @ + 1 0 10146927 -salvador n 1 5 @ #m #p %m %p 1 0 08738272 -salvador_dali n 1 1 @ 1 0 10921218 -salvadora n 1 3 @ #m %m 1 0 12299425 -salvadora_family n 1 3 @ #m %m 1 0 12299165 -salvadora_persica n 1 2 @ #m 1 0 12299640 -salvadoraceae n 1 3 @ #m %m 1 0 12299165 -salvadoran n 1 2 @ #m 1 0 09700823 -salvadoran_capital n 1 2 @ #p 1 0 08738531 -salvadorean n 1 2 @ #m 1 0 09700823 -salvadorian n 1 2 @ #m 1 0 09700823 -salvage n 3 2 @ + 3 0 13247554 00096343 00096211 -salvager n 1 3 @ ~ + 1 0 10549510 -salvation n 4 4 @ ~ + ; 4 2 00094001 00179380 14539165 00096513 -salvation_army n 1 1 @ 1 0 08047890 -salve n 2 5 @ ~ %s + ; 2 2 03845550 00259392 -salvelinus n 1 3 @ #m %m 1 0 02537847 -salvelinus_alpinus n 1 1 @ 1 0 02538562 -salvelinus_fontinalis n 1 3 @ #m %p 1 0 02538216 -salvelinus_namaycush n 1 3 @ #m %p 1 0 02538010 -salver n 1 1 @ 1 0 04131929 -salvia n 1 3 @ ~ #m 1 0 12864545 -salvia_azurea n 1 1 @ 1 0 12864902 -salvia_clarea n 1 2 @ %p 1 0 12865037 -salvia_divinorum n 1 1 @ 1 0 12866459 -salvia_farinacea n 1 1 @ 1 0 12865239 -salvia_lancifolia n 1 1 @ 1 0 12865367 -salvia_leucophylla n 1 1 @ 1 0 12865562 -salvia_lyrata n 1 1 @ 1 0 12865708 -salvia_officinalis n 1 2 @ %p 1 0 12865824 -salvia_pratensis n 1 1 @ 1 0 12866002 -salvia_reflexa n 1 1 @ 1 0 12865367 -salvia_sclarea n 1 1 @ 1 0 12866162 -salvia_spathacea n 1 1 @ 1 0 12866333 -salvia_verbenaca n 1 1 @ 1 0 12866635 -salvinia n 1 3 @ #m %m 1 0 12958921 -salvinia_auriculata n 1 2 @ #m 1 0 12959074 -salvinia_rotundifolia n 1 2 @ #m 1 0 12959074 -salviniaceae n 1 3 @ #m %m 1 0 12958772 -salvinorin n 1 1 @ 1 0 04132056 -salvo n 3 1 @ 3 2 07435149 00988320 06693086 -salvor n 1 2 @ ~ 1 0 10549510 -salwar n 1 1 @ 1 0 04132158 -salyut n 1 1 @ 1 0 04132354 -salzburg n 1 2 @ #p 1 0 08846885 -sam n 1 3 @ ~ #p 1 0 04363210 -sam_adams n 1 1 @ 1 0 10808539 -sam_browne_belt n 1 2 @ #p 1 0 04132465 -sam_goldwyn n 1 1 @ 1 0 11005571 -sam_houston n 1 1 @ 1 0 11061853 -sam_shepard n 1 1 @ 1 0 11297457 -sam_snead n 1 1 @ 1 0 11306760 -sama-veda n 1 1 @ 1 0 06465139 -saman n 1 1 @ 1 0 11759853 -samanala n 1 2 @ #p 1 0 09187594 -samara n 1 1 @ 1 0 12036226 -samarang n 1 2 @ #p 1 0 08910230 -samarcand n 1 2 @ #p 1 0 09022667 -samaria n 1 2 @ #p 1 0 08799462 -samaritan n 1 1 @ 1 0 10549648 -samarium n 1 2 @ #s 1 0 14653596 -samarkand n 1 2 @ #p 1 0 09022667 -samarskite n 1 3 @ #s %s 1 0 15012668 -samba n 4 3 @ #m + 4 0 12201938 07056895 00537192 00497425 -sambar n 1 2 @ #m 1 0 02431628 -sambre n 1 2 @ #p 1 0 09421191 -sambre_river n 1 2 @ #p 1 0 09421191 -sambuca n 1 1 @ 1 0 07911249 -sambucus n 1 3 @ #m %m 1 0 12678059 -sambucus_caerulea n 1 2 @ #m 1 0 12678794 -sambucus_canadensis n 1 2 @ %p 1 0 12678548 -sambucus_ebulus n 1 2 @ #m 1 0 12679023 -sambucus_nigra n 1 1 @ 1 0 12679201 -sambucus_pubens n 1 1 @ 1 0 12679432 -sambucus_racemosa n 1 1 @ 1 0 12679593 -sambur n 1 2 @ #m 1 0 02431628 -same n 2 2 @ #m 2 0 09720033 06959427 -same-sex_marriage n 1 1 @ 1 0 07989973 -samekh n 1 2 @ #m 1 0 06838219 -sameness n 2 5 ! @ ~ = + 2 1 04742535 04740326 -samhita n 1 2 @ ~ 1 0 06464838 -sami n 2 2 @ #m 2 0 09720033 06959427 -samia n 1 3 @ #m %m 1 0 02303448 -samia_cynthia n 2 2 @ #m 2 0 02303777 02303585 -samia_walkeri n 1 2 @ #m 1 0 02303585 -samian_ware n 1 1 @ 1 0 04414319 -samiel n 1 1 @ 1 0 11507655 -samisen n 1 1 @ 1 0 04132603 -samite n 1 1 @ 1 0 04132829 -samizdat n 1 1 @ 1 0 06271620 -samnite n 1 2 @ #m 1 0 09717917 -samoa n 2 5 @ #p %m %p + 2 0 08991491 08991182 -samoa_i_sisifo n 1 3 @ #p %p 1 0 08991491 -samoan n 1 2 @ #m 1 0 09729271 -samoan_islands n 1 4 @ #p %m %p 1 0 08991182 -samolus n 1 3 @ #m %m 1 0 12096223 -samolus_floribundus n 1 1 @ 1 0 12096674 -samolus_parviflorus n 1 1 @ 1 0 12096674 -samolus_valerandii n 1 1 @ 1 0 12096563 -samosa n 1 1 @ 1 0 07625061 -samovar n 1 1 @ 1 0 04132985 -samoyed n 3 2 @ ~ 3 0 09707887 06959584 02111889 -samoyede n 1 1 @ 1 0 02111889 -samoyedic n 1 2 @ ~ 1 0 06959584 -sampan n 1 1 @ 1 0 04133114 -samphire n 1 2 @ #m 1 0 11834272 -sample n 3 4 @ ~ + ; 3 2 05821775 06026635 09421425 -sample_distribution n 1 3 @ ~ ; 1 0 06026635 -sampler n 4 3 @ ~ + 4 1 04133346 10692482 08463817 04133211 -sampling n 3 3 @ ~ ; 3 1 00161888 06026635 01004775 -sampling_frequency n 1 3 @ ~ ; 1 0 15285279 -sampling_rate n 1 3 @ ~ ; 1 0 15282032 -sampling_station n 1 1 @ 1 1 04133346 -samsara n 1 2 @ ; 1 0 07343017 -samson n 2 2 @ ; 2 0 11279648 09878702 -samuel n 1 2 @ ; 1 0 11279874 -samuel_adams n 1 1 @ 1 0 10808539 -samuel_barber n 1 1 @ 1 0 10834439 -samuel_beckett n 1 1 @ 1 0 10840354 -samuel_butler n 2 1 @ 2 0 10876513 10876419 -samuel_dashiell_hammett n 1 1 @ 1 0 11026816 -samuel_de_champlain n 1 1 @ 1 0 10890032 -samuel_f._b._morse n 1 1 @ 1 0 11192666 -samuel_finley_breese_morse n 1 1 @ 1 0 11192666 -samuel_goldwyn n 1 1 @ 1 0 11005571 -samuel_gompers n 1 1 @ 1 0 11006231 -samuel_houston n 1 1 @ 1 0 11061853 -samuel_huntington n 1 1 @ 1 0 11067396 -samuel_jackson_snead n 1 1 @ 1 0 11306760 -samuel_johnson n 1 1 @ 1 0 11088622 -samuel_langhorne_clemens n 1 1 @ 1 0 10900730 -samuel_morse n 1 1 @ 1 0 11192666 -samuel_pepys n 1 1 @ 1 0 11229323 -samuel_pierpoint_langley n 1 1 @ 1 0 11116642 -samuel_rawson_gardiner n 1 1 @ 1 0 10990212 -samuel_rosenstock n 1 1 @ 1 0 11355247 -samuel_taylor_coleridge n 1 2 @ #m 1 0 10904821 -samuel_wiesenthal n 1 1 @ 1 0 11386005 -samuel_wilder n 1 1 @ 1 0 11386503 -samurai n 2 4 @ #m %m ; 2 0 10549763 08388966 -san_andreas_fault n 1 2 @ #p 1 0 09421604 -san_angelo n 1 2 @ #p 1 0 09145970 -san_antonio n 1 3 @ #p - 1 0 09146111 -san_bernardino n 1 2 @ #p 1 0 09065191 -san_carlos_apache n 1 1 @ 1 0 06919630 -san_diego n 1 3 @ #p %p 1 0 09065328 -san_diego_bay n 1 2 @ #p 1 0 09422048 -san_fernando_valley n 1 2 @ #p 1 0 09422294 -san_francisco n 1 3 @ #p %p 1 1 09065557 -san_francisco_bay n 1 2 @ #p 1 0 09422486 -san_joaquin_river n 1 2 @ #p 1 0 09422751 -san_joaquin_valley n 1 2 @ #p 1 0 09422964 -san_jose n 2 2 @ #p 2 0 09066017 08736376 -san_jose_scale n 1 2 @ #m 1 0 02249809 -san_juan n 1 2 @ #p 1 0 08753294 -san_juan_hill n 1 2 @ #p 1 0 09423112 -san_juan_mountains n 1 3 @ #p %p 1 0 09423379 -san_luis_potosi n 1 2 @ #p 1 0 08745407 -san_marinese n 1 3 @ #m + 1 0 09729945 -san_marino n 2 4 @ #p %m %p 2 0 08992508 08992181 -san_mateo n 1 2 @ #p 1 0 09066249 -san_pablo n 1 2 @ #p 1 0 09066375 -san_pedro_sula n 1 2 @ #p 1 0 08738151 -san_salvador n 1 2 @ #p 1 0 08738531 -san_sebastian n 1 2 @ #p 1 0 09026911 -sana n 1 2 @ #p 1 0 09165464 -sana'a n 1 2 @ #p 1 0 09165464 -sanaa n 1 2 @ #p 1 0 09165464 -sanatarium n 1 1 @ 1 0 04133497 -sanatorium n 2 1 @ 2 0 04133497 02820798 -sanchez n 1 2 @ ; 1 0 11201386 -sanctification n 1 3 @ ~ + 1 0 01039925 -sanctimoniousness n 1 2 @ + 1 0 04868350 -sanctimony n 1 2 @ + 1 0 04868350 -sanction n 4 3 @ ~ + 4 2 06687358 01124246 05176607 01139000 -sanctitude n 1 3 @ ~ = 1 0 04855138 -sanctity n 1 3 @ ~ = 1 1 04855138 -sanctuary n 3 4 @ ~ #p %p 3 0 04133648 04071102 03004824 -sanctum n 2 1 @ 2 0 08645571 08585056 -sanctum_sanctorum n 2 3 @ #p ; 2 0 08645571 03527675 -sand n 3 5 @ #s %s + ; 3 1 15019030 11280013 05032351 -sand_badger n 1 2 @ #m 1 0 02448885 -sand_bar n 1 2 @ %s 1 0 09421951 -sand_berry n 1 1 @ 1 0 12231358 -sand_blackberry n 1 1 @ 1 0 12654227 -sand_cat n 1 1 @ 1 0 02125010 -sand_cherry n 1 2 @ #m 1 0 12648424 -sand_crack n 1 2 @ ~ 1 0 14275405 -sand_cricket n 1 2 @ #m 1 0 02229156 -sand_dab n 2 2 @ #m 2 0 07791145 02662559 -sand_devil's_claw n 1 2 @ #m 1 0 12875697 -sand_dollar n 1 2 @ #m 1 0 02319555 -sand_dropseed n 1 1 @ 1 0 12140759 -sand_dune n 1 2 @ ~ 1 1 09270735 -sand_eel n 1 2 @ #m 1 0 02618513 -sand_flea n 1 2 @ #m 1 0 01993214 -sand_fly n 1 2 @ #m 1 0 02204249 -sand_grouse n 1 3 @ ~ #m 1 0 01815601 -sand_hopper n 1 2 @ #m 1 0 01993214 -sand_lance n 1 2 @ #m 1 0 02618513 -sand_launce n 1 2 @ #m 1 0 02618513 -sand_leek n 1 1 @ 1 0 12434985 -sand_lizard n 2 2 @ #m 2 0 01693175 01681328 -sand_martin n 1 2 @ #m 1 0 01596273 -sand_myrtle n 1 2 @ #m 1 0 12239240 -sand_painting n 1 1 @ 1 0 04134862 -sand_phlox n 1 2 @ #m 1 0 12810847 -sand_rat n 2 2 @ #m 2 0 02369555 02344408 -sand_reed n 1 2 @ #m 1 0 12152031 -sand_sage n 1 2 @ #m 1 0 11930353 -sand_sedge n 1 2 @ #m 1 0 12152031 -sand_shark n 1 2 @ #m 1 0 01487506 -sand_snake n 1 3 @ ~ #m 1 0 01738601 -sand_sole n 1 2 @ #m 1 0 02664960 -sand_spurry n 1 2 @ #m 1 0 11817501 -sand_stargazer n 1 2 @ #m 1 0 02612167 -sand_tiger n 1 2 @ #m 1 0 01487506 -sand_trap n 1 2 @ #p 1 0 02920369 -sand_tumor n 1 1 @ 1 0 14250622 -sand_verbena n 1 3 @ ~ #m 1 0 11836722 -sand_viper n 2 2 @ #m 2 0 01753488 01729322 -sand_wedge n 1 1 @ 1 0 04135024 -sandal n 1 2 @ ~ 1 1 04133789 -sandalwood n 1 2 @ #s 1 1 12735452 -sandalwood_family n 1 3 @ #m %m 1 0 12734722 -sandalwood_tree n 1 3 @ #m %s 1 0 12735160 -sandarac n 3 3 @ #s %s 3 0 11643506 11643354 11643022 -sandarac_tree n 1 2 @ %s 1 0 11643022 -sandarach n 1 2 @ #s 1 0 11643354 -sandbag n 1 2 @ + 1 0 04134008 -sandbagger n 1 2 @ + 1 0 10549925 -sandbank n 1 2 @ ~ 1 0 09421799 -sandbar n 1 2 @ %s 1 0 09421951 -sandbar_shark n 2 2 @ #m 2 0 01489920 01489709 -sandberry n 1 1 @ 1 0 12231358 -sandblast n 1 2 @ + 1 0 11465425 -sandblaster n 1 2 @ + 1 0 04134170 -sandbox n 2 1 @ 2 0 04134523 04134339 -sandboy n 1 2 @ ; 1 0 10550090 -sandbur n 1 2 @ #m 1 0 12113790 -sandburg n 1 1 @ 1 0 11280213 -sander n 1 3 @ %p + 1 0 03250588 -sanderling n 1 2 @ #m 1 0 02029378 -sandfish n 2 2 @ #m 2 0 02558560 02529293 -sandfly n 1 2 @ #m 1 0 02204249 -sandfly_fever n 1 1 @ 1 0 14219487 -sandglass n 1 2 @ ~ 1 0 04134632 -sandgrouse n 1 3 @ ~ #m 1 0 01815601 -sandhi n 1 1 @ 1 0 07132937 -sandhopper n 1 2 @ #m 1 0 01993214 -sandiness n 1 2 @ + 1 0 04949453 -sandlot n 1 1 @ 1 0 08645749 -sandman n 1 1 @ 1 0 09541526 -sandor_kellner n 1 1 @ 1 0 11109424 -sandpaper n 1 3 @ %s + 1 1 14849880 -sandpile n 1 1 @ 1 0 04134339 -sandpiper n 1 3 @ ~ #m 1 0 02026059 -sandpit n 2 2 @ ; 2 0 09422190 04134339 -sandril n 1 3 @ %s ; 1 0 04078236 -sandro_botticelli n 1 1 @ 1 0 10859012 -sands n 1 1 @ 1 0 08596076 -sandspur n 1 2 @ #m 1 0 12113790 -sandstone n 1 2 @ ~ 1 0 14995541 -sandstorm n 1 1 @ 1 0 11448153 -sandwich n 1 5 @ ~ #p %p + 1 1 07695965 -sandwich_board n 1 1 @ 1 0 04135118 -sandwich_islands n 1 3 @ #p %p 1 0 09079153 -sandwich_plate n 1 1 @ 1 0 07696403 -sandwichman n 1 1 @ 1 0 10550252 -sandwort n 3 3 @ ~ #m 3 0 11813077 11812910 11805956 -sandy_mushroom n 1 2 @ #m 1 0 13017240 -saneness n 1 3 @ ~ + 1 0 14379501 -sanfoin n 1 2 @ #m 1 0 12552309 -sang n 1 3 @ #m %p 1 0 11800020 -sang-froid n 1 1 @ 1 0 04904162 -sangapenum n 1 1 @ 1 0 15019267 -sangaree n 1 3 @ %s ; 1 0 07916970 -sangay n 1 2 @ #p 1 0 09177103 -sanger n 2 1 @ 2 0 11280653 11280405 -sango n 1 1 @ 1 0 06906028 -sangoma n 1 1 @ 1 0 10550369 -sangraal n 1 2 @ ; 1 0 03451909 -sangria n 1 3 @ %s ; 1 0 07916970 -sanguification n 1 1 @ 1 0 13492453 -sanguinaria n 1 3 @ #m %m 1 0 11907939 -sanguinaria_canadensis n 1 2 @ #m 1 0 11908077 -sanguinary_ant n 1 2 @ #m 1 0 02222035 -sanguine n 1 2 @ + 1 0 04963111 -sanguineness n 1 2 @ + 1 0 07541760 -sanguinity n 1 2 @ + 1 0 07541760 -sanhedrin n 1 1 @ 1 0 08094262 -sanicle n 1 3 @ ~ #m 1 0 12943443 -sanicula n 1 3 @ #m %m 1 0 12943302 -sanicula_arctopoides n 1 1 @ 1 0 12943743 -sanicula_bipinnatifida n 1 1 @ 1 0 12943912 -sanicula_europaea n 1 1 @ 1 0 12944095 -sanies n 1 3 @ ~ + 1 0 05417472 -sanitariness n 1 4 ! @ ~ + 1 0 14494893 -sanitarium n 1 1 @ 1 0 04133497 -sanitary_code n 1 2 @ ; 1 0 06669193 -sanitary_condition n 1 2 @ ~ 1 0 14494716 -sanitary_landfill n 1 1 @ 1 0 09422631 -sanitary_napkin n 1 1 @ 1 0 04135315 -sanitary_towel n 1 2 @ ; 1 0 04135315 -sanitation n 2 2 @ + 2 2 14495466 00254415 -sanitation_department n 1 2 @ ; 1 0 08121694 -sanitisation n 1 2 @ + 1 0 00254415 -sanitization n 1 2 @ + 1 0 00254415 -sanity n 1 4 ! @ ~ + 1 1 14379501 -sannup n 1 1 @ 1 0 10550468 -sannyasi n 1 1 @ 1 0 10550551 -sannyasin n 1 1 @ 1 0 10550551 -sans_serif n 1 1 @ 1 0 06827947 -sansevieria n 1 4 @ ~ #m %s 1 0 12480895 -sansevieria_guineensis n 1 1 @ 1 0 12481150 -sansevieria_trifasciata n 1 1 @ 1 0 12481458 -sansevieria_zeylanica n 1 1 @ 1 0 12481289 -sanskrit n 1 4 @ ~ ; - 1 0 06969129 -sanskrit_literature n 1 2 @ ~ 1 0 06463347 -sanskritic_language n 1 4 @ ~ ; - 1 0 06969129 -sanson-flamsteed_projection n 1 1 @ 1 0 04223915 -santa n 1 1 @ 1 0 10550673 -santa_ana n 4 2 @ #p 4 0 11442894 11280905 09066534 08738715 -santa_anna n 1 1 @ 1 0 11280905 -santa_barbara n 1 2 @ #p 1 0 09066665 -santa_catalina n 1 2 @ #p 1 0 09066948 -santa_clara n 1 2 @ #p 1 0 09066799 -santa_claus n 1 1 @ 1 0 10550673 -santa_cruz n 2 2 @ #p 2 0 09067138 08853510 -santa_cruz_cypress n 1 1 @ 1 0 11631619 -santa_fe n 1 2 @ #p 1 0 09116318 -santa_fe_trail n 1 2 @ #p 1 0 04135516 -santa_gertrudis n 1 1 @ 1 0 02405799 -santa_lucia_fir n 1 1 @ 1 0 11622771 -santa_maria_de_belem n 1 2 @ #p 1 0 08854855 -santa_maria_del_tule n 1 2 @ #p 1 0 08745513 -santa_maria_tree n 1 2 @ #m 1 0 12364940 -santa_sofia n 1 2 @ #p 1 0 03475118 -santa_sophia n 1 2 @ #p 1 0 03475118 -santalaceae n 1 3 @ #m %m 1 0 12734722 -santalales n 1 3 @ #m %m 1 0 12734446 -santalum n 1 3 @ #m %m 1 0 12735009 -santalum_album n 1 3 @ #m %s 1 0 12735160 -santee n 2 1 @ 2 0 09667572 06912838 -santee_dakota n 1 1 @ 1 0 09667572 -santee_sioux n 1 1 @ 1 0 09667572 -santiago n 4 3 @ #p ; 4 0 08752671 08750822 08721559 01293832 -santiago_de_chile n 1 2 @ #p 1 0 08721559 -santiago_de_cuba n 2 3 @ #p ; 2 0 08750822 01293832 -santiago_de_los_caballeros n 1 2 @ #p 1 0 08752671 -santiago_ramon_y_cajal n 1 1 @ 1 0 11253455 -santims n 1 1 @ 1 0 13701394 -santo_domingo n 1 2 @ #p 1 0 08752293 -santolina n 1 3 @ #m %m 1 0 12009250 -santolina_chamaecyparissus n 1 2 @ #m 1 0 12009420 -santos n 1 2 @ #p 1 0 08856630 -sanvitalia n 1 3 @ #m %m 1 0 12009616 -sanvitalia_procumbens n 1 2 @ #m 1 0 12009792 -sanwa_millet n 1 2 @ #m 1 0 12117912 -sanyasi n 1 1 @ 1 0 10550551 -sao_bernardo_do_campo n 1 2 @ #p 1 0 08856793 -sao_francisco n 1 2 @ #p 1 0 09423617 -sao_goncalo n 1 2 @ #p 1 0 08856945 -sao_joao_de_meriti n 1 2 @ #p 1 0 08857099 -sao_jose_dos_campos n 1 2 @ #p 1 0 08857260 -sao_louis n 1 2 @ #p 1 0 08857405 -sao_paulo n 1 2 @ #p 1 0 08857529 -sao_thome_e_principe n 1 3 @ #p %p 1 0 08992648 -sao_thome_e_principe_monetary_unit n 1 2 @ ~ 1 0 13675456 -sao_tiago_island n 1 2 @ #p 1 0 08718253 -sao_tome n 1 2 @ #p 1 0 08993037 -sao_tome_and_principe n 1 3 @ #p %p 1 0 08992648 -sao_tome_e_principe n 1 3 @ #p %p 1 0 08992648 -saone n 1 2 @ #p 1 0 09423754 -saone_river n 1 2 @ #p 1 0 09423754 -sap n 3 3 @ ~ + 3 0 15038127 10100761 02847461 -sapele_mahogany n 1 2 @ #m 1 0 12698027 -saphar n 1 2 @ #p 1 0 15217443 -saphead n 1 2 @ ~ 1 0 10100761 -saphenous_nerve n 1 2 @ #p 1 0 05568349 -saphenous_vein n 1 3 @ ~ #p 1 0 05379734 -sapidity n 2 2 @ ~ 2 0 05715864 04996113 -sapidness n 1 2 @ + 1 0 04996113 -sapience n 1 3 @ ~ + 1 0 05617107 -sapiential_book n 1 2 @ %p 1 0 06461077 -sapindaceae n 1 3 @ #m %m 1 0 12740514 -sapindales n 1 3 @ #m %m 1 0 12740196 -sapindus n 1 3 @ #m %m 1 0 12741409 -sapindus_drumondii n 1 2 @ #m 1 0 12741586 -sapindus_marginatus n 1 2 @ #m 1 0 12741586 -sapindus_saponaria n 1 2 @ #m 1 0 12741792 -sapir n 1 1 @ 1 0 11281174 -sapling n 1 1 @ 1 1 13108481 -sapodilla n 2 3 @ #p %p 2 0 12774641 07764315 -sapodilla_family n 1 3 @ #m %m 1 0 12772081 -sapodilla_plum n 1 2 @ #p 1 0 07764315 -sapodilla_tree n 1 3 @ #p %p 1 0 12774641 -saponaria n 1 3 @ #m %m 1 0 11814440 -saponaria_officinalis n 1 2 @ #m 1 0 11814584 -saponaria_vaccaria n 1 2 @ #m 1 0 11818636 -saponification n 1 2 @ + 1 0 13552858 -saponin n 1 1 @ 1 0 14887925 -sapota n 1 2 @ #p 1 0 07764315 -sapotaceae n 1 3 @ #m %m 1 0 12772081 -sapote n 2 4 @ #m #p %p 2 0 12775919 07764486 -sapper n 2 3 @ + ; 2 0 10551751 10551576 -sapphic_ode n 1 1 @ 1 0 06383934 -sapphire n 3 3 @ ~ + 3 0 15019483 13372812 04969242 -sapphire_berry n 1 1 @ 1 0 12776774 -sapphirine n 1 1 @ 1 0 15012810 -sapphism n 1 2 @ ~ 1 0 00857424 -sappho n 1 2 @ + 1 0 11281345 -sapporo n 1 2 @ #p 1 0 08925552 -sapraemia n 1 1 @ 1 0 14190132 -sapremia n 1 1 @ 1 0 14190132 -saprobe n 1 2 @ + 1 0 13124358 -saprolegnia n 1 3 @ #m %m 1 0 12979630 -saprolegnia_ferax n 1 2 @ #m 1 0 12979829 -saprolegniales n 1 3 @ #m %m 1 0 12979478 -saprolite n 1 1 @ 1 0 14844560 -sapropel n 1 1 @ 1 0 14956921 -saprophyte n 1 2 @ + 1 0 13124164 -saprophytic_organism n 1 1 @ 1 0 13124164 -sapsago n 1 1 @ 1 0 07855188 -sapsucker n 1 3 @ ~ #m 1 0 01841102 -sapwood n 1 2 @ #s 1 0 13097536 -saqqara n 1 2 @ #p 1 0 08900047 -saqqarah n 1 2 @ #p 1 0 08900047 -saquinavir n 1 1 @ 1 0 04293608 -sara_teasdale n 1 1 @ 1 0 11334215 -saraband n 2 1 @ 2 0 07057001 00527198 -saracen n 3 2 @ ; 3 1 10552019 10552203 10551898 -sarafem n 1 2 @ ; 1 0 03370927 -saragossa n 1 2 @ #p 1 0 09027679 -sarah n 1 2 @ ; 1 0 11281555 -sarah_bernhardt n 1 1 @ 1 0 10847994 -sarah_kemble_siddons n 1 1 @ 1 0 11299501 -sarah_siddons n 1 1 @ 1 0 11299501 -sarah_vaughan n 1 1 @ 1 0 11361423 -sarajevo n 1 2 @ #p 1 0 08818247 -saran n 1 2 @ #s 1 0 14593545 -saran_wrap n 1 3 @ %s ; 1 0 04135710 -sarape n 1 1 @ 1 0 04173907 -sarasota n 1 2 @ #p 1 0 09074707 -sarasvati n 1 1 @ 1 0 09528380 -saratoga n 2 4 @ #m #p ; 2 0 02545153 01294127 -saratoga_chip n 1 1 @ 1 0 07712559 -saratoga_spittlebug n 1 2 @ #m 1 0 02258629 -saratoga_springs n 1 2 @ #p 1 0 09125727 -saratov n 1 2 @ #p 1 0 09009693 -sarawak n 1 4 @ #p %m + 1 0 08964474 -sarawakian n 1 3 @ #m + 1 0 09730077 -sarazen n 1 1 @ 1 0 11281682 -sarcasm n 1 3 @ = + 1 1 06777164 -sarcenet n 1 1 @ 1 0 04135933 -sarcobatus n 1 3 @ #m %m 1 0 11835114 -sarcobatus_vermiculatus n 1 2 @ #m 1 0 11835251 -sarcocephalus n 1 3 @ #m %m 1 0 12670172 -sarcocephalus_diderrichii n 1 2 @ #m 1 0 12668917 -sarcocephalus_esculentus n 1 2 @ #m 1 0 12670334 -sarcocephalus_latifolius n 1 2 @ #m 1 0 12670334 -sarcochilus n 1 3 @ #m %m 1 0 12081851 -sarcochilus_falcatus n 1 2 @ #m 1 0 12082131 -sarcocystidean n 1 2 @ #m 1 0 01426314 -sarcocystieian n 1 2 @ #m 1 0 01426314 -sarcocystis n 1 3 @ #m %m 1 0 01426160 -sarcodes n 1 3 @ #m %m 1 0 12259615 -sarcodes_sanguinea n 1 2 @ #m 1 0 12259788 -sarcodina n 1 3 @ #m %m 1 0 01389875 -sarcodine n 1 3 @ ~ #m 1 0 01390123 -sarcodinian n 1 3 @ ~ #m 1 0 01390123 -sarcoidosis n 1 1 @ 1 0 14564934 -sarcolemma n 1 2 @ + 1 0 05427570 -sarcoma n 1 2 @ ~ 1 0 14246359 -sarcomere n 1 2 @ #p 1 0 05460163 -sarcophaga n 1 3 @ #m %m 1 0 02192388 -sarcophaga_carnaria n 1 2 @ #m 1 0 02192513 -sarcophagus n 1 1 @ 1 0 04136045 -sarcophilus n 1 3 @ #m %m 1 0 01884703 -sarcophilus_hariisi n 1 2 @ #m 1 0 01884834 -sarcoplasm n 1 2 @ #p 1 0 05446971 -sarcoptes n 1 3 @ #m %m 1 0 01781410 -sarcoptid n 1 2 @ #m 1 0 01781698 -sarcoptidae n 1 3 @ #m %m 1 0 01781274 -sarcorhamphus n 1 3 @ #m %m 1 0 01620575 -sarcorhamphus_papa n 1 2 @ #m 1 0 01620735 -sarcoscypha_coccinea n 1 1 @ 1 0 13029326 -sarcoscyphaceae n 1 2 @ #m 1 0 13034277 -sarcosine n 1 1 @ 1 0 15019645 -sarcosomataceae n 1 2 @ ~ 1 0 12983961 -sarcosome n 1 2 @ + 1 0 05445546 -sarcosporidia n 1 3 @ #m %m 1 0 01425983 -sarcosporidian n 1 2 @ #m 1 0 01426314 -sarcostemma n 1 3 @ #m %m 1 0 13237788 -sarcostemma_acidum n 1 2 @ #m 1 0 13237988 -sarcostyle n 1 3 @ #p %p 1 0 05459953 -sard n 1 1 @ 1 0 15019734 -sarda n 1 3 @ #m %m 1 0 02627686 -sarda_chiliensis n 1 2 @ #m 1 0 02628259 -sarda_sarda n 1 2 @ #m 1 0 02628062 -sardegna n 2 2 @ #p 2 0 08810786 08810631 -sardina n 1 3 @ #m %m 1 0 02533075 -sardina_pilchardus n 1 3 @ ~ #m 1 0 02533209 -sardine n 4 3 @ ~ #m 4 2 07794063 02532602 15019734 02533209 -sardine_oil n 1 1 @ 1 0 15019844 -sardinia n 2 3 @ #p + 2 0 08810786 08810631 -sardinian n 2 2 @ + 2 0 10552285 06964600 -sardinops n 1 3 @ #m %m 1 0 02533424 -sardinops_caerulea n 1 2 @ #m 1 0 02533545 -sardis n 1 2 @ #p 1 0 09042675 -sardius n 1 1 @ 1 0 15019734 -sardonyx n 1 1 @ 1 0 15019972 -saree n 1 1 @ 1 0 04136161 -sargasso n 1 2 @ #m 1 0 01405858 -sargasso_sea n 1 2 @ #p 1 0 09423943 -sargassum n 1 2 @ #m 1 0 01405858 -sargassum_bacciferum n 1 2 @ #m 1 0 01405858 -sargassum_fish n 1 2 @ #m 1 0 02549376 -sargent n 1 1 @ 1 0 11281837 -sari n 1 1 @ 1 1 04136161 -sarin n 1 1 @ 1 0 14961375 -sarnoff n 1 1 @ 1 0 11281995 -sarong n 1 1 @ 1 0 04136333 -saronic_gulf n 1 2 @ #p 1 0 09424118 -saroyan n 1 1 @ 1 0 11282154 -sarpanitu n 1 2 @ ; 1 0 09521648 -sarpedon n 1 2 @ ; 1 0 09501527 -sarracenia n 1 3 @ #m %m 1 0 12779437 -sarracenia_flava n 1 2 @ #m 1 0 12780563 -sarracenia_minor n 1 2 @ #m 1 0 12780325 -sarracenia_purpurea n 1 2 @ #m 1 0 12779851 -sarraceniaceae n 1 3 @ #m %m 1 0 12779233 -sarraceniales n 1 3 @ #m %m 1 0 12778926 -sars n 1 1 @ 1 0 14179946 -sarsaparilla n 2 5 @ ~ #m %s %p 2 0 12470092 07928998 -sarsaparilla_root n 1 3 @ #s #p 1 0 12470329 -sarsenet n 1 1 @ 1 0 04135933 -sartor n 1 3 @ ~ + 1 0 10689564 -sartorius n 1 2 @ + 1 0 05589896 -sartorius_muscle n 1 1 @ 1 0 05589896 -sartre n 1 1 @ 1 0 11282286 -sarvepalli_radhakrishnan n 1 1 @ 1 0 11251995 -sas n 1 2 @ ; 1 0 08346031 -sash n 2 3 @ ~ #p 2 2 04136510 03438071 -sash_cord n 1 1 @ 1 0 04136676 -sash_fastener n 1 2 @ #p 1 0 04136800 -sash_line n 1 1 @ 1 0 04136676 -sash_lock n 1 2 @ #p 1 0 04136800 -sash_weight n 1 1 @ 1 0 04136997 -sash_window n 1 1 @ 1 0 04137089 -sashay n 3 5 @ ~ #p + ; 3 0 00541035 00534152 00311809 -sashimi n 1 2 @ ; 1 0 07879350 -saskatchewan n 1 3 @ #p %p 1 0 08829775 -saskatoon n 2 2 @ #p 2 0 08830116 07745661 -sasquatch n 1 1 @ 1 0 09487385 -sass n 1 2 @ + 1 0 06721949 -sassaby n 1 2 @ #m 1 0 02422391 -sassafras n 2 5 @ #m #p %s %p 2 0 11707229 07816052 -sassafras_albidum n 1 4 @ #m %s %p 1 0 11707229 -sassafras_laurel n 1 2 @ #m 1 0 11707827 -sassafras_oil n 1 2 @ #s 1 0 11707511 -sassafras_tree n 1 4 @ #m %s %p 1 0 11707229 -sassenach n 1 1 @ 1 0 10552393 -sassing n 1 2 @ + 1 1 06721949 -sat n 1 2 @ #p 1 0 15164570 -satan n 1 3 @ + ; 1 0 09543353 -satang n 1 2 @ #p 1 0 13663933 -satanism n 1 2 @ + 1 0 05979595 -satanist n 1 2 @ + 1 0 10552486 -satanophobia n 1 1 @ 1 0 14385734 -satchel n 1 1 @ 1 0 04137217 -satchel_paige n 1 1 @ 1 0 11220664 -satchmo n 1 1 @ 1 0 10823199 -sateen n 1 1 @ 1 0 04137355 -satellite n 3 4 @ ~ %p + 3 1 04137444 10552639 09424270 -satellite_receiver n 1 2 @ #p 1 0 04137773 -satellite_television n 1 1 @ 1 0 04137897 -satellite_transmitter n 1 2 @ #p 1 0 04138131 -satellite_tv n 1 1 @ 1 0 04137897 -satiation n 2 2 @ + 2 0 14452151 01072984 -satie n 1 1 @ 1 0 11282434 -satiety n 1 1 @ 1 1 14452151 -satin n 1 2 @ + 1 1 04138261 -satin_bird n 1 2 @ #m 1 0 01601068 -satin_bowerbird n 1 2 @ #m 1 0 01601068 -satin_flower n 1 2 @ #m 1 0 11891541 -satin_leaf n 1 1 @ 1 0 12773917 -satin_stitch n 1 1 @ 1 0 04138560 -satin_walnut n 1 1 @ 1 0 12316982 -satin_weave n 1 1 @ 1 0 04138671 -satinet n 1 1 @ 1 0 04138398 -satinette n 1 1 @ 1 0 04138398 -satinleaf n 1 1 @ 1 0 12773917 -satinpod n 1 2 @ #m 1 0 11891541 -satinwood n 3 4 @ #m #s %s 3 0 12715408 12697709 12697514 -satinwood_tree n 1 3 @ #m %s 1 0 12697514 -satire n 1 3 @ = + 1 1 06777164 -satirist n 1 3 @ ~ + 1 1 10552742 -satisfaction n 5 5 ! @ ~ + ; 5 3 07531255 13986679 13292787 13349997 01072565 -satisfactoriness n 1 4 ! @ ~ + 1 0 04792127 -satisfier n 1 2 @ + 1 0 09424489 -satori n 1 2 @ ; 1 0 05987969 -satrap n 1 1 @ 1 0 10553140 -satsuma n 2 3 @ #p %p 2 0 12710577 07748276 -satsuma_tree n 1 2 @ %p 1 0 12710577 -saturated_fatty_acid n 1 2 @ ~ 1 0 14740587 -saturation n 4 5 @ ~ #s #p + 4 2 13496517 00402671 13925188 04975340 -saturation_bombing n 1 1 @ 1 0 00978993 -saturation_point n 1 3 @ ~ ; 1 0 13925340 -saturday n 1 2 @ #p 1 1 15164570 -saturday_night_special n 1 1 @ 1 0 04138869 -satureia n 1 3 @ #m %m 1 0 12866824 -satureia_hortensis n 1 2 @ %p 1 0 12867184 -satureia_montana n 1 2 @ %p 1 0 12867449 -satureja n 1 3 @ #m %m 1 0 12866824 -satureja_acinos n 1 2 @ #m 1 0 12839574 -satureja_calamintha_glandulosa n 1 1 @ 1 0 12843557 -satureja_calamintha_officinalis n 1 1 @ 1 0 12843144 -satureja_douglasii n 1 2 @ #m 1 0 12857204 -satureja_grandiflora n 1 1 @ 1 0 12843316 -satureja_hortensis n 1 2 @ %p 1 0 12867184 -satureja_montana n 1 2 @ %p 1 0 12867449 -satureja_nepeta n 1 1 @ 1 0 12843557 -satureja_vulgaris n 1 2 @ #m 1 0 12843970 -saturn n 2 3 @ #m ; 2 1 09424642 09558388 -saturnalia n 2 1 @ 2 0 00518442 00511212 -saturnia n 1 3 @ #m %m 1 0 02301782 -saturnia_pavonia n 1 2 @ #m 1 0 02301935 -saturniid n 1 3 @ ~ #m 1 0 02301452 -saturniid_moth n 1 3 @ ~ #m 1 0 02301452 -saturniidae n 1 3 @ #m %m 1 0 02301072 -saturnism n 1 1 @ 1 0 14069895 -satyagraha n 1 1 @ 1 0 01243262 -satyendra_n._bose n 1 1 @ 1 0 10858577 -satyendra_nath_bose n 1 1 @ 1 0 10858577 -satyr n 2 3 @ ~ + 2 0 10552980 09548111 -satyr_orchid n 1 2 @ #m 1 0 12052267 -satyr_play n 1 1 @ 1 0 07018824 -satyriasis n 1 1 @ 1 0 07490042 -satyridae n 1 3 @ #m %m 1 0 02277556 -sauce n 1 4 @ ~ #p + 1 1 07829412 -sauce-alone n 1 2 @ #m 1 0 11870418 -sauce_albert n 1 2 @ %s 1 0 07830841 -sauce_chausseur n 1 1 @ 1 0 07838659 -sauce_espagnole n 2 1 @ 2 0 07836269 07836077 -sauce_louis n 1 1 @ 1 0 07833333 -sauce_verte n 1 1 @ 1 0 07834618 -sauce_vinaigrette n 1 1 @ 1 0 07833816 -sauceboat n 1 2 @ ~ 1 0 03456024 -saucepan n 1 3 @ ~ %p 1 0 04138977 -saucepot n 1 1 @ 1 0 04139140 -saucer n 4 3 @ ~ #p 4 0 13875185 04139291 03207305 03206602 -saucer_magnolia n 1 1 @ 1 0 11711289 -sauciness n 1 2 @ + 1 0 04649651 -saudi n 1 3 @ #m + 1 0 09729387 -saudi_arabia n 1 7 @ #m #p %m %p + - 1 0 08993288 -saudi_arabian n 1 2 @ #m 1 0 09729387 -saudi_arabian_monetary_unit n 1 2 @ ~ 1 0 13698567 -saudi_arabian_riyal n 1 2 @ %p 1 0 13698706 -sauerbraten n 1 1 @ 1 0 07876026 -sauerkraut n 1 1 @ 1 0 07876189 -sauk n 1 2 @ ~ 1 0 09667715 -saul n 2 2 @ ; 2 0 11282613 11225661 -saul_bellow n 1 1 @ 1 0 10843228 -saul_of_tarsus n 1 2 @ ; 1 0 11225661 -saul_steinberg n 1 1 @ 1 0 11314969 -sault_sainte_marie n 1 2 @ #p 1 0 08828013 -sauna n 1 1 @ 1 0 04139395 -saunter n 2 3 @ ~ + 2 0 00289737 00284101 -saunterer n 1 2 @ + 1 0 10553235 -saurel n 2 1 @ 2 0 02580830 02580679 -sauria n 1 4 @ #m %m + 1 0 01673668 -saurian n 1 4 @ ~ #m + 1 0 01674216 -saurischia n 1 3 @ #m %m 1 0 01707895 -saurischian n 1 3 @ ~ #m 1 0 01708106 -saurischian_dinosaur n 1 3 @ ~ #m 1 0 01708106 -sauromalus n 1 2 @ #m 1 0 01678237 -sauromalus_obesus n 1 1 @ 1 0 01678343 -sauropod n 1 3 @ ~ #m 1 0 01708998 -sauropod_dinosaur n 1 3 @ ~ #m 1 0 01708998 -sauropoda n 1 3 @ #m %m 1 0 01708778 -sauropodomorpha n 1 3 @ #m %m 1 0 01708332 -sauropterygia n 1 3 @ #m %m 1 0 01725240 -saurosuchus n 1 2 @ #m 1 0 01696026 -saururaceae n 1 3 @ #m %m 1 0 13151568 -saururus n 1 3 @ #m %m 1 0 13151820 -saururus_cernuus n 1 2 @ #m 1 0 13151975 -saury n 1 2 @ #m 1 0 02551668 -sausage n 2 3 @ ~ %s 2 1 07675627 02850950 -sausage_balloon n 1 1 @ 1 0 02850950 -sausage_curl n 1 1 @ 1 0 05257967 -sausage_dog n 1 1 @ 1 0 02089468 -sausage_hound n 1 1 @ 1 0 02089468 -sausage_meat n 1 2 @ #s 1 0 07675962 -sausage_pizza n 1 1 @ 1 0 07874063 -sausage_roll n 1 1 @ 1 0 07627380 -saussure n 1 1 @ 1 0 10931634 -saussurea n 1 3 @ #m %m 1 0 12010021 -saussurea_costus n 1 2 @ #m 1 0 12010188 -saussurea_lappa n 1 2 @ #m 1 0 12010188 -saute n 1 1 @ 1 0 07655263 -sauteing n 1 2 @ + 1 0 00246940 -sauterne n 1 1 @ 1 0 07898443 -sauternes n 1 1 @ 1 0 07898443 -sauvignon_blanc n 2 3 @ #s %s 2 0 13146928 07895962 -sauvignon_grape n 1 2 @ %s 1 0 13146583 -savage n 2 3 @ ~ + 2 1 10553402 09845589 -savageness n 1 2 @ + 1 1 05038251 -savagery n 3 2 @ + 3 0 05038251 04830689 00424934 -savanna n 1 1 @ 1 0 08645847 -savannah n 3 2 @ #p 3 1 09077821 09424865 08645847 -savannah_river n 1 2 @ #p 1 0 09424865 -savant n 1 2 @ ~ 1 0 10206887 -savara n 2 1 @ 2 0 09675283 06980837 -savarin n 1 1 @ 1 0 07633960 -save n 1 2 @ ; 1 0 01079396 -save-all n 3 1 @ 3 0 04139748 04139642 04139534 -saveloy n 1 2 @ ; 1 0 07678193 -saver n 2 3 @ ~ + 2 1 10522759 10553627 -savin n 1 1 @ 1 0 11637991 -saving n 3 2 @ ~ 3 2 00192613 00093483 00819024 -saving_grace n 2 2 @ ; 2 0 14458181 04732852 -savings n 1 2 @ + 1 1 13359572 -savings_account n 1 2 @ ~ 1 0 13364212 -savings_account_trust n 1 1 @ 1 0 13363365 -savings_and_loan n 1 2 @ ~ 1 0 08422714 -savings_and_loan_association n 1 2 @ ~ 1 0 08422714 -savings_bank n 2 2 @ ~ 2 0 08423057 04139859 -savings_bank_trust n 1 1 @ 1 0 13363365 -savings_bond n 1 1 @ 1 0 13340751 -savinien_cyrano_de_bergerac n 1 1 @ 1 0 10919598 -savior n 2 3 @ ~ + 2 1 11083656 10553805 -saviour n 2 2 @ ~ 2 0 11083656 10553805 -savitar n 1 1 @ 1 0 09528475 -savoir-faire n 1 1 @ 1 0 04842232 -savonarola n 1 1 @ 1 0 11282802 -savor n 1 3 @ ~ + 1 0 05715864 -savoriness n 1 3 @ ~ + 1 0 04995940 -savoring n 1 2 @ + 1 0 00841901 -savorlessness n 1 2 @ + 1 0 04997032 -savory n 4 4 @ ~ #m + 4 0 12866968 12857456 07820814 07594840 -savour n 1 3 @ ~ + 1 0 05715864 -savouring n 1 2 @ + 1 0 00841901 -savourlessness n 1 2 @ + 1 0 04997032 -savoury n 2 3 @ ~ + 2 0 07820814 07594840 -savoy n 2 2 @ #p 2 0 08945277 07714895 -savoy_cabbage n 2 1 @ 2 0 11876204 07714895 -savoyard n 2 1 @ 2 0 10554024 09709155 -savvy n 1 3 @ ~ + 1 0 05805475 -saw n 3 4 @ ~ %p + 3 0 07153838 04140064 03996145 -saw_log n 1 1 @ 1 0 15020203 -saw_palmetto n 1 2 @ #m 1 0 12597466 -saw_set n 1 1 @ 1 0 04140853 -sawan n 1 2 @ #p 1 0 15220385 -sawbill n 1 3 @ ~ #m 1 0 01854415 -sawbones n 1 2 @ ~ 1 0 10679174 -sawbuck n 1 2 @ ~ 1 0 04140631 -sawdust n 1 1 @ 1 1 15020107 -sawdust_doll n 1 1 @ 1 0 04140340 -sawdust_mushroom n 1 2 @ #m 1 0 13019643 -sawdust_saloon n 1 1 @ 1 1 04140434 -sawed-off_shotgun n 1 1 @ 1 0 04140539 -sawfish n 1 3 @ ~ #m 1 0 01497118 -sawfly n 1 3 @ ~ #m 1 0 02218713 -sawhorse n 1 2 @ ~ 1 1 04140631 -sawing_machine n 1 3 @ ~ %p 1 0 03996145 -sawm n 1 1 @ 1 0 05914591 -sawmill n 2 1 @ 2 0 04140777 03697007 -sawpit n 1 1 @ 1 0 09425019 -sawtooth n 1 2 @ #p 1 0 04140976 -sawwort n 1 2 @ #m 1 0 12014923 -sawyer n 2 4 @ ~ #m + 2 0 10554141 02169023 -sawyer_beetle n 1 3 @ ~ #m 1 0 02169023 -sax n 2 1 @ 2 0 11283158 04141076 -saxe n 2 1 @ 2 0 11283300 08769179 -saxe-coburg-gotha n 1 2 @ %m 1 0 08157809 -saxe-gothea n 1 3 @ #m %m 1 0 11659068 -saxe-gothea_conspicua n 1 2 @ #m 1 0 11659248 -saxegothea n 1 3 @ #m %m 1 0 11659068 -saxhorn n 1 1 @ 1 0 04141198 -saxicola n 1 3 @ #m %m 1 0 01560511 -saxicola_rubetra n 1 1 @ 1 0 01560935 -saxicola_torquata n 1 1 @ 1 0 01560793 -saxicolous_plant n 1 1 @ 1 0 13124019 -saxifraga n 1 3 @ #m %m 1 0 12792638 -saxifraga_aizoides n 1 2 @ #m 1 0 12793284 -saxifraga_granulata n 1 2 @ #m 1 0 12793494 -saxifraga_hypnoides n 1 2 @ #m 1 0 12793695 -saxifraga_occidentalis n 1 2 @ #m 1 0 12793886 -saxifraga_oppositifolia n 1 2 @ #m 1 0 12794135 -saxifraga_sarmentosam n 1 2 @ #m 1 0 12794568 -saxifraga_stellaris n 1 2 @ #m 1 0 12794367 -saxifraga_stolonifera n 1 2 @ #m 1 0 12794568 -saxifragaceae n 1 3 @ #m %m 1 0 12792041 -saxifrage n 1 3 @ ~ #m 1 0 12793015 -saxifrage_family n 1 3 @ #m %m 1 0 12792041 -saxist n 1 2 @ ~ 1 0 10554243 -saxitoxin n 1 1 @ 1 0 15020297 -saxo_grammaticus n 1 1 @ 1 0 11283517 -saxon n 1 3 @ ~ + 1 0 09702836 -saxony n 1 1 @ 1 0 08769179 -saxophone n 1 2 @ + 1 0 04141076 -saxophonist n 1 3 @ ~ + 1 0 10554243 -say n 1 2 @ + 1 0 14485526 -say-so n 3 2 @ ~ 3 0 07203613 06727616 05196582 -say_hey_kid n 1 1 @ 1 0 11167269 -sayan_mountains n 1 2 @ #p 1 0 09425159 -sayanci n 1 1 @ 1 0 06983416 -sayda n 1 2 @ #p 1 0 08958212 -sayeret n 1 3 @ #p ; 1 0 08345770 -sayeret_mat'kal n 1 3 @ #p ; 1 0 08345770 -sayeret_matkal n 1 3 @ #p ; 1 0 08345770 -sayers n 1 1 @ 1 0 11283682 -saying n 1 3 @ ~ + 1 0 07151380 -sayonara n 1 1 @ 1 0 06629610 -sayornis n 1 3 @ #m %m 1 0 01549769 -sayornis_phoebe n 1 2 @ #m 1 0 01549886 -sazerac n 1 1 @ 1 0 07917133 -sb n 2 2 @ #s 2 0 14628668 06699579 -sba n 1 1 @ 1 0 08352994 -sbe n 1 1 @ 1 0 13833256 -sbw n 1 1 @ 1 0 13833504 -sc n 3 6 @ #m #s #p %p - 3 0 14653831 09137869 08296332 -scab n 2 4 @ ~ #p + 2 0 10554455 05264247 -scabbard n 1 1 @ 1 0 04141327 -scabicide n 1 1 @ 1 0 15038316 -scabies n 1 1 @ 1 0 14180327 -scabiosa n 1 3 @ ~ #m 1 0 12683407 -scabiosa_arvensis n 1 1 @ 1 0 12683791 -scabiosa_atropurpurea n 1 1 @ 1 0 12683571 -scabious n 1 3 @ ~ #m 1 0 12683407 -scablands n 1 3 @ #p ; 1 0 09425344 -scad n 1 3 @ ~ #m 1 0 02580336 -scads n 1 1 @ 1 0 13777509 -scaffold n 2 2 @ #p 2 1 04141573 04141423 -scaffolding n 1 3 @ %p + 1 0 04141712 -scag n 1 2 @ ; 1 0 02837416 -scalability n 1 2 @ + 1 0 05210116 -scalage n 2 2 @ + 2 0 01005957 01005814 -scalar n 1 2 @ + 1 0 05864351 -scalar_field n 1 1 @ 1 1 08005877 -scalar_matrix n 1 2 @ ~ 1 0 08269114 -scalar_product n 1 1 @ 1 0 05864884 -scalawag n 3 2 @ ~ 3 0 10554666 10536728 10200047 -scald n 2 2 @ + 2 0 14290107 00404058 -scalded_milk n 1 1 @ 1 0 07845775 -scale n 10 5 @ ~ %m + ; 10 4 13850304 13815342 13816862 13155759 09425607 06856568 04141975 04141838 03959701 01902877 -scale_factor n 1 2 @ ~ 1 0 13734085 -scale_fern n 1 2 @ #m 1 0 13183489 -scale_insect n 1 2 @ ~ 1 0 02248510 -scale_leaf n 1 2 @ ~ 1 0 13155759 -scale_moss n 1 2 @ #m 1 0 11543105 -scale_of_c_major n 1 2 @ ; 1 0 06866442 -scale_of_measurement n 1 2 @ ~ 1 0 13850304 -scale_value n 1 2 @ ~ 1 0 05856867 -scale_wax n 1 1 @ 1 0 15020528 -scalene_muscle n 1 1 @ 1 0 05590144 -scalene_triangle n 1 1 @ 1 0 13880704 -scalenus n 1 1 @ 1 0 05590144 -scalenus_syndrome n 1 1 @ 1 0 14309938 -scaler n 1 1 @ 1 0 04142175 -scaliness n 1 2 @ + 1 0 04948603 -scaling n 3 3 @ ~ + 3 0 01010334 01005284 00325364 -scaling_ladder n 1 1 @ 1 0 04142327 -scallion n 2 3 @ %p ; 2 0 12434239 07722485 -scallop n 4 6 @ ~ #m #p %p + 4 0 13874558 07797641 07654886 01965889 -scallop_shell n 1 1 @ 1 0 01904806 -scallopine n 1 2 @ ~ 1 0 07876281 -scallopini n 1 2 @ ~ 1 0 07876281 -scallywag n 3 2 @ ~ 3 0 10554666 10536728 10200047 -scalp n 1 3 @ #p + 1 1 05539947 -scalp_lock n 1 1 @ 1 0 05261203 -scalpel n 1 1 @ 1 0 04142434 -scalper n 1 3 @ ~ + 1 0 10554846 -scaly_anteater n 1 2 @ #m 1 0 02461830 -scaly_fern n 1 2 @ #m 1 0 13183489 -scaly_lentinus n 1 2 @ #m 1 0 13002209 -scaly_pholiota n 1 2 @ #m 1 0 13009429 -scaly_polypore n 1 2 @ #m 1 0 13052931 -scam n 1 2 @ + 1 0 00754280 -scammer n 1 3 @ ~ + 1 0 09955015 -scammony n 3 1 @ 3 0 12828520 12824482 12824289 -scammonyroot n 1 1 @ 1 0 12827907 -scamp n 1 2 @ ~ 1 0 10200047 -scamper n 1 2 @ + 1 1 00556142 -scampi n 1 1 @ 1 0 07876550 -scampo n 1 2 @ #p 1 0 07793521 -scan n 2 2 @ + 2 1 00643943 04142549 -scandal n 2 3 @ ~ + 2 2 07223811 07306252 -scandalisation n 2 2 @ + 2 0 14579489 01225397 -scandalization n 2 2 @ + 2 0 14579489 01225397 -scandalmonger n 1 1 @ 1 0 10555059 -scandalmongering n 1 2 @ + 1 0 07135627 -scandalousness n 1 2 @ + 1 0 04808516 -scandentia n 1 3 @ #m %m 1 0 02494538 -scandinavia n 2 5 @ #p %m + - 2 0 08760856 08760510 -scandinavian n 2 4 @ ~ #m + 2 0 09730204 06953731 -scandinavian_country n 1 3 @ ~ #p 1 0 08697827 -scandinavian_language n 1 2 @ ~ 1 0 06953731 -scandinavian_lox n 1 1 @ 1 0 07796877 -scandinavian_nation n 1 3 @ ~ #p 1 0 08697827 -scandinavian_peninsula n 1 2 @ #p 1 0 08760856 -scandium n 1 2 @ #s 1 0 14653831 -scanner n 4 2 @ + 4 0 10555156 04143140 04142999 04142731 -scanning n 2 2 @ + 2 0 13553083 00644156 -scansion n 1 2 @ + 1 0 07094508 -scantiness n 1 3 @ ~ + 1 0 05113462 -scantling n 1 2 @ #p 1 0 04143365 -scantness n 1 3 @ ~ + 1 0 05113462 -scanty n 1 2 @ ; 1 0 03885028 -scape n 2 4 @ ~ #p ; 2 0 13130726 04182708 -scapegoat n 1 1 @ 1 0 10555311 -scapegrace n 1 1 @ 1 0 10555430 -scaphiopus n 1 3 @ #m %m 1 0 01648993 -scaphiopus_bombifrons n 1 2 @ #m 1 0 01649726 -scaphiopus_hammondii n 1 2 @ #m 1 0 01649412 -scaphiopus_multiplicatus n 1 2 @ #m 1 0 01649556 -scaphocephaly n 1 1 @ 1 0 14468508 -scaphoid_bone n 1 1 @ 1 0 05272276 -scaphopod n 1 3 @ ~ #m 1 0 01941223 -scaphopoda n 1 3 @ #m %m 1 0 01941030 -scaphosepalum n 1 2 @ #m 1 0 12082357 -scapula n 1 4 @ #p %p + 1 0 05279688 -scapular n 2 2 @ #p 2 1 02469248 04143492 -scapulary n 1 2 @ #p 1 0 04143492 -scar n 2 3 @ ~ + 2 2 14363483 04693900 -scar_tissue n 1 2 @ ~ 1 0 05583822 -scarab n 1 2 @ #m 1 0 02172518 -scarabaean n 1 3 @ ~ #m 1 0 02171869 -scarabaeid n 1 3 @ ~ #m 1 0 02171869 -scarabaeid_beetle n 1 3 @ ~ #m 1 0 02171869 -scarabaeidae n 1 3 @ #m %m 1 0 02171633 -scarabaeus n 1 2 @ #m 1 0 02172518 -scarabaeus_sacer n 1 2 @ #m 1 0 02172518 -scaramouch n 1 1 @ 1 0 10555538 -scaramouche n 1 1 @ 1 0 10555538 -scarceness n 1 3 @ ~ + 1 0 05116953 -scarcity n 1 4 ! @ ~ + 1 1 05116953 -scardinius n 1 3 @ #m %m 1 0 01442591 -scardinius_erythrophthalmus n 1 2 @ #m 1 0 01442710 -scare n 2 3 @ ~ + 2 0 14405931 07521437 -scare_quote n 1 1 @ 1 0 06844594 -scarecrow n 1 1 @ 1 0 04143712 -scaremonger n 1 1 @ 1 0 10555679 -scarer n 1 2 @ + 1 0 04143712 -scarf n 2 3 @ ~ + 2 1 04143897 04144241 -scarf_bandage n 1 1 @ 1 0 04239436 -scarf_joint n 1 1 @ 1 0 04144241 -scarface n 1 1 @ 1 0 10881784 -scarfpin n 1 1 @ 1 0 04434670 -scaridae n 1 3 @ #m %m 1 0 02610541 -scarlatina n 1 1 @ 1 0 14124070 -scarlet n 1 2 @ + 1 0 04964977 -scarlet_bugler n 1 2 @ #m 1 0 12885265 -scarlet_bush n 1 1 @ 1 0 12668131 -scarlet_clematis n 1 1 @ 1 0 11730602 -scarlet_cup n 1 1 @ 1 0 13029326 -scarlet_fever n 1 1 @ 1 0 14124070 -scarlet_fritillary n 1 1 @ 1 0 12453857 -scarlet_hamelia n 1 1 @ 1 0 12668131 -scarlet_haw n 1 2 @ #m 1 0 12626878 -scarlet_letter n 1 1 @ 1 0 06839737 -scarlet_lychnis n 1 1 @ 1 0 11811921 -scarlet_maple n 1 1 @ 1 0 12753573 -scarlet_musk_flower n 1 2 @ #m 1 0 11836327 -scarlet_oak n 1 1 @ 1 0 12271187 -scarlet_pimpernel n 1 1 @ 1 0 12092417 -scarlet_plume n 1 2 @ #m 1 0 12921499 -scarlet_runner n 3 1 @ 3 0 12557681 12537253 07728391 -scarlet_runner_bean n 2 1 @ 2 0 12557681 07728391 -scarlet_strawberry n 1 2 @ #m 1 0 12630999 -scarlet_sumac n 1 1 @ 1 0 12763529 -scarlet_tanager n 1 2 @ #m 1 0 01597737 -scarlet_wisteria_tree n 1 2 @ #m 1 0 12569851 -scarp n 2 1 @ 2 0 09274152 03296328 -scartella n 1 3 @ #m %m 1 0 02613687 -scartella_cristata n 1 2 @ #m 1 0 02613820 -scat n 1 1 @ 1 0 00547244 -scat_singing n 1 1 @ 1 0 00547244 -scathe n 1 2 @ ~ 1 0 00403092 -scatology n 2 3 @ + ; 2 0 07124928 00646504 -scatophagy n 1 1 @ 1 0 00842597 -scatter n 2 3 @ ~ + 2 0 05088324 00369138 -scatter_pin n 1 1 @ 1 0 04144434 -scatter_rug n 1 1 @ 1 0 04144539 -scatterbrain n 1 1 @ 1 0 10555825 -scattergood n 1 2 @ ~ 1 0 10635460 -scattergun n 1 3 @ ~ %p 1 0 04206356 -scattering n 5 4 @ ~ #p + 5 0 13761966 13553251 11506167 07331759 00369138 -scaup n 1 3 @ ~ #m 1 0 01851375 -scaup_duck n 1 3 @ ~ #m 1 0 01851375 -scauper n 1 1 @ 1 0 04144651 -scavenger n 3 3 @ ~ + 3 1 15020628 10281276 01316422 -scavenger_cell n 1 2 @ ~ 1 0 05450888 -scd n 1 1 @ 1 0 06705787 -sceliphron n 1 3 @ #m %m 1 0 02215496 -sceloglaux n 1 3 @ #m %m 1 0 01624987 -sceloglaux_albifacies n 1 2 @ #m 1 0 01625121 -sceloporus n 1 3 @ #m %m 1 0 01680137 -sceloporus_graciosus n 1 1 @ 1 0 01680983 -sceloporus_occidentalis n 1 1 @ 1 0 01680655 -sceloporus_undulatus n 1 1 @ 1 0 01680813 -scenario n 3 2 @ + 3 1 07012135 08568430 06756111 -scenarist n 1 2 @ + 1 0 10555936 -scene n 10 5 @ ~ #p %p + 10 8 08645963 07360841 05933246 06614729 13937075 07009808 14406303 04144782 08568256 04145056 -scene-stealer n 1 1 @ 1 0 10556235 -scene_of_action n 1 2 @ ~ 1 0 02736511 -scene_painter n 2 1 @ 2 0 10556401 10556033 -scenery n 2 2 @ ~ 2 2 04145056 08646787 -sceneshifter n 1 1 @ 1 0 10556124 -scenic_artist n 1 1 @ 1 0 10556401 -scenic_railway n 1 1 @ 1 0 04145322 -scent n 3 4 @ ~ = + 3 3 05714466 05714161 04980008 -scented_fern n 3 2 @ #m 3 0 13189428 12956922 12023726 -scented_penstemon n 1 2 @ #m 1 0 12887293 -scented_wattle n 1 2 @ #m 1 0 11757851 -scentless_camomile n 1 2 @ #m 1 0 12028424 -scentless_false_camomile n 1 2 @ #m 1 0 12028424 -scentless_hayweed n 1 2 @ #m 1 0 12028424 -scentless_mayweed n 1 2 @ #m 1 0 12028424 -scepter n 2 2 @ ~ 2 0 14443676 07267573 -sceptic n 1 3 @ ~ + 1 0 10604634 -scepticism n 1 2 @ + 1 1 05980051 -sceptre n 2 2 @ ~ 2 0 14443676 07267573 -scet n 1 1 @ 1 0 15131448 -schadenfreude n 1 2 @ ; 1 0 07491591 -schaffneria n 1 3 @ #m %m 1 0 13183874 -schaffneria_nigripes n 1 2 @ #m 1 0 13184001 -schedule n 2 3 @ ~ + 2 2 05910940 06495328 -schedule_feeding n 1 1 @ 1 0 01059306 -scheduled_fire n 1 1 @ 1 0 00993377 -scheduled_maintenance n 1 1 @ 1 0 00270539 -scheduled_territories n 1 1 @ 1 0 08303097 -scheduler n 1 2 @ + 1 0 04145417 -scheduling n 1 2 @ + 1 0 01144355 -scheele n 1 1 @ 1 0 11283843 -scheelite n 1 2 @ %s 1 0 15020794 -schefflera n 1 3 @ #m %m 1 0 11800359 -schefflera_actinophylla n 1 2 @ #m 1 0 11800565 -scheldt n 1 2 @ #p 1 0 09425835 -scheldt_river n 1 2 @ #p 1 0 09425835 -schema n 2 2 @ + 2 0 05927813 05891572 -schematic n 1 3 @ ~ + 1 0 04145578 -schematic_drawing n 1 2 @ ~ 1 0 04145578 -schematisation n 2 2 @ + 2 0 00900207 00192457 -schematization n 2 2 @ + 2 0 00900207 00192457 -scheme n 5 4 @ ~ %p + 5 2 05905348 06756680 08435388 05927813 05891572 -scheme_arch n 1 1 @ 1 0 04226172 -schemer n 1 3 @ ~ + 1 0 10556518 -schemozzle n 1 2 @ ; 1 0 13976907 -schenectady n 1 2 @ #p 1 0 09125354 -scheol n 1 3 @ %p ; 1 0 05629381 -scherzo n 1 1 @ 1 1 07046917 -scheuchzeriaceae n 1 3 @ #m %m 1 0 12617140 -schiaparelli n 2 1 @ 2 0 11284216 11284024 -schick_test n 1 1 @ 1 0 05745648 -schiller n 1 1 @ 1 0 11284409 -schilling n 1 2 @ %p 1 0 13705929 -schinus n 1 3 @ #m %m 1 0 12764703 -schinus_chichita n 1 2 @ #m 1 0 12764978 -schinus_molle n 1 2 @ #m 1 0 12765115 -schinus_terebinthifolius n 1 2 @ #m 1 0 12765402 -schipperke n 1 1 @ 1 0 02104365 -schism n 2 3 @ ~ + 2 1 00386676 07314078 -schist n 1 1 @ 1 0 14889371 -schistorrhachis n 1 1 @ 1 0 14471224 -schistosoma n 1 3 @ #m %m 1 0 01926988 -schistosomatidae n 1 3 @ #m %m 1 0 01926840 -schistosome n 1 2 @ #m 1 0 01927159 -schistosome_dermatitis n 1 2 @ ; 1 0 14224547 -schistosomiasis n 1 1 @ 1 0 14180565 -schizachyrium n 1 2 @ #m 1 0 12133332 -schizachyrium_scoparium n 1 1 @ 1 0 12133462 -schizaea n 1 3 @ #m %m 1 0 12955191 -schizaea_pusilla n 1 2 @ #m 1 0 12955414 -schizaeaceae n 1 3 @ #m %m 1 0 12954978 -schizanthus n 1 2 @ #m 1 0 12913144 -schizocarp n 1 1 @ 1 0 13150592 -schizogony n 1 1 @ 1 0 13553418 -schizoid n 1 1 @ 1 0 14388758 -schizomycetes n 1 2 @ #m 1 0 01358135 -schizopetalon n 1 2 @ #m 1 0 11896141 -schizopetalon_walkeri n 1 2 @ #m 1 0 11896141 -schizophragma n 1 3 @ #m %m 1 0 12791539 -schizophragma_hydrangeoides n 1 2 @ #m 1 0 12791790 -schizophrenia n 1 3 @ ~ + 1 0 14398523 -schizophrenic n 1 2 @ + 1 1 10556704 -schizophrenic_disorder n 1 2 @ ~ 1 0 14398523 -schizophrenic_psychosis n 1 2 @ ~ 1 0 14398523 -schizophyceae n 1 2 @ #m 1 0 01358904 -schizophyta n 1 3 @ #m %m 1 0 01357967 -schizopoda n 1 1 @ 1 0 01988319 -schizosaccharomyces n 1 2 @ #m 1 0 13026339 -schizosaccharomycetaceae n 1 3 @ #m %m 1 0 13026146 -schizothymia n 1 1 @ 1 0 14393033 -schizotypal_personality n 1 1 @ 1 0 14388758 -schleiden n 1 1 @ 1 0 11284541 -schlemiel n 1 2 @ ; 1 0 10556825 -schlemm's_canal n 1 1 @ 1 0 05251789 -schlep n 2 2 @ ; 2 0 10556953 00310425 -schlepper n 1 2 @ ; 1 0 10556953 -schlesien n 1 2 @ #p 1 0 09166534 -schlesinger n 2 1 @ 2 0 11284884 11284742 -schliemann n 1 1 @ 1 0 11285091 -schlimazel n 1 2 @ ; 1 0 10557094 -schlock n 1 2 @ ; 1 0 04145735 -schlockmeister n 1 2 @ ; 1 0 10557246 -schlumbergera n 1 3 @ #m %m 1 0 11853191 -schlumbergera_baridgesii n 1 2 @ #m 1 0 11853356 -schlumbergera_buckleyi n 1 2 @ #m 1 0 11853356 -schlumbergera_gaertneri n 1 2 @ #m 1 0 11848009 -schlumbergera_truncatus n 1 2 @ #m 1 0 11854479 -schmaltz n 1 2 @ ; 1 0 04627936 -schmalz n 1 2 @ ; 1 0 04627936 -schmear n 1 2 @ ; 1 0 08400605 -schmeer n 1 2 @ ; 1 0 08400605 -schmegegge n 1 2 @ ; 1 0 06609785 -schmidt n 1 1 @ 1 0 11285282 -schmidt_camera n 1 1 @ 1 0 04145863 -schmidt_telescope n 1 1 @ 1 0 04145863 -schmo n 1 2 @ ; 1 0 10557404 -schmoose n 1 2 @ ~ 1 0 07134850 -schmooze n 1 2 @ ~ 1 0 07134850 -schmoozer n 1 3 @ ~ + 1 0 09961999 -schmuck n 1 2 @ ; 1 0 10557404 -schnabel n 1 1 @ 1 0 11285456 -schnapps n 1 1 @ 1 0 07905474 -schnaps n 1 1 @ 1 0 07905474 -schnauzer n 1 2 @ ~ 1 0 02096756 -schnecken n 1 1 @ 1 0 07693223 -schnittlaugh n 1 2 @ %p 1 0 12435152 -schnitzel n 1 2 @ ; 1 0 07880458 -schnook n 1 2 @ ; 1 0 10557517 -schnorchel n 1 2 @ #p 1 0 04250850 -schnorkel n 1 2 @ #p 1 0 04250850 -schnorrer n 1 2 @ ; 1 0 10557699 -schnoz n 1 2 @ ; 1 0 05598707 -schnozzle n 1 2 @ ; 1 0 05598707 -schoenberg n 1 1 @ 1 0 11285902 -schola_cantorum n 1 1 @ 1 0 08410092 -scholar n 3 3 @ ~ + 3 2 10557854 10251779 10558773 -scholarly_person n 1 2 @ ~ 1 0 10557854 -scholarship n 2 3 @ ~ + 2 2 13266170 05985999 -scholastic n 2 3 @ ~ + 2 1 10411356 10558896 -scholasticism n 2 3 @ + - 2 0 05976065 04802079 -scholia n 1 1 @ 1 0 06506037 -scholiast n 1 2 @ ~ 1 0 10559009 -scholium n 1 1 @ 1 0 06506037 -schomburgkia n 1 2 @ #m 1 0 12082593 -schonbein n 1 1 @ 1 0 11285692 -schonberg n 1 1 @ 1 0 11285902 -school n 7 6 @ ~ #p %m %p + 7 5 08276720 04146050 05757536 08275185 15203229 08277393 07995453 -school-age_child n 1 2 @ ~ 1 0 10559288 -school_assignment n 1 2 @ ~ 1 0 00728641 -school_bell n 1 1 @ 1 0 04146504 -school_board n 1 1 @ 1 1 08413408 -school_bus n 1 1 @ 1 0 04146614 -school_crossing n 1 1 @ 1 0 04146721 -school_day n 2 2 @ %p 2 0 15222540 15203229 -school_dictionary n 1 1 @ 1 0 06419757 -school_district n 1 1 @ 1 0 08587709 -school_newspaper n 1 1 @ 1 0 06267758 -school_of_dentistry n 1 1 @ 1 0 08281963 -school_of_law n 1 1 @ 1 0 08283051 -school_of_medicine n 1 1 @ 1 0 08283507 -school_of_music n 1 1 @ 1 0 08283649 -school_of_nursing n 1 1 @ 1 0 08283757 -school_of_thought n 1 2 @ ~ 1 0 05943300 -school_paper n 1 1 @ 1 0 06267758 -school_phobia n 1 1 @ 1 0 14385818 -school_principal n 1 2 @ ~ 1 1 10474645 -school_ship n 1 1 @ 1 0 04146862 -school_superintendent n 1 1 @ 1 1 10560247 -school_system n 1 3 @ #p %p 1 1 04146976 -school_teacher n 1 3 @ ~ #m 1 1 10560352 -school_term n 1 3 @ ~ #p 1 1 15225249 -school_text n 1 2 @ ~ 1 1 06414372 -school_year n 1 2 @ %p 1 1 15203565 -schoolbag n 1 1 @ 1 0 04146343 -schoolbook n 1 2 @ ~ 1 0 06414372 -schoolboy n 1 1 @ 1 1 10559192 -schoolchild n 1 2 @ ~ 1 0 10559288 -schoolcraft n 1 1 @ 1 0 11286117 -schooldays n 1 1 @ 1 1 15147598 -schoolfellow n 1 1 @ 1 0 10560106 -schoolfriend n 1 1 @ 1 0 10559508 -schoolgirl n 1 1 @ 1 1 10559603 -schoolhouse n 1 4 @ ~ #p %p 1 1 04146050 -schooling n 3 2 @ + 3 1 00888693 05757536 00895983 -schoolma'am n 1 1 @ 1 0 10559840 -schoolman n 2 1 @ 2 0 10559683 09759311 -schoolmarm n 1 1 @ 1 1 10559840 -schoolmaster n 3 3 @ ~ #m 3 1 10164233 10559996 02587618 -schoolmate n 1 1 @ 1 1 10560106 -schoolmistress n 1 1 @ 1 1 10559840 -schoolroom n 1 3 @ ~ #p 1 1 03038685 -schoolteacher n 1 3 @ ~ #m 1 0 10560352 -schooltime n 2 2 @ %p 2 0 15203229 15147598 -schoolwork n 1 2 @ ~ 1 0 00728641 -schoolyard n 1 1 @ 1 0 08647264 -schooner n 2 2 @ ~ 2 0 04147291 04147183 -schopenhauer n 1 1 @ 1 0 11286354 -schorl n 1 1 @ 1 0 15020905 -schottische n 2 1 @ 2 0 07057095 00538266 -schreiber's_aster n 1 1 @ 1 0 11936782 -schrod n 2 1 @ 2 0 07789382 02523617 -schrodinger n 1 1 @ 1 0 11286476 -schrodinger_equation n 1 1 @ 1 0 06671013 -schrodinger_wave_equation n 1 1 @ 1 0 06671013 -schtick n 4 3 @ ~ ; 4 0 13762836 00550545 00513597 00171882 -schtickl n 1 1 @ 1 0 13763058 -schtik n 4 3 @ ~ ; 4 0 13762836 00550545 00513597 00171882 -schtikl n 1 1 @ 1 0 13763058 -schubert n 1 1 @ 1 0 11286618 -schuller-christian_disease n 1 1 @ 1 0 14192376 -schulz n 1 1 @ 1 0 11286820 -schumann n 2 1 @ 2 0 11287186 11287016 -schumann-heink n 1 1 @ 1 0 11287437 -schumpeter n 1 1 @ 1 0 11287570 -schutzstaffel n 1 2 @ %p 1 0 08211924 -schwa n 1 2 @ ~ 1 0 07114023 -schwann n 1 1 @ 1 0 11287734 -schwann_cell n 1 1 @ 1 0 05465071 -schwarzwald n 1 2 @ ; 1 0 09222742 -schweitzer n 1 1 @ 1 0 11287964 -schweiz n 1 4 @ #p %p - 1 0 09031653 -sciadopityaceae n 1 3 @ #m %m 1 0 11659909 -sciadopitys n 1 3 @ #m %m 1 0 11660121 -sciadopitys_verticillata n 1 2 @ #m 1 0 11660300 -sciaena n 1 3 @ #m %m 1 0 02595902 -sciaena_antarctica n 1 2 @ #m 1 0 02596067 -sciaena_aquila n 1 2 @ #m 1 0 02596252 -sciaenid n 1 3 @ ~ #m 1 0 02594250 -sciaenid_fish n 1 3 @ ~ #m 1 0 02594250 -sciaenidae n 1 3 @ #m %m 1 0 02593863 -sciaenops n 1 3 @ #m %m 1 0 02595569 -sciaenops_ocellatus n 1 2 @ #m 1 0 02595702 -sciara n 1 3 @ ~ #m 1 0 02204722 -sciarid n 1 3 @ ~ #m 1 0 02204722 -sciaridae n 1 3 @ #m %m 1 0 02204460 -sciatic_nerve n 1 2 @ #p 1 0 05567875 -sciatica n 1 2 @ + 1 1 14330727 -scid n 1 2 @ ~ 1 0 14128812 -science n 2 6 @ ~ #p %p + - 2 2 05999797 05636887 -science_fiction n 1 3 @ ~ - 1 1 06368628 -science_lab n 1 3 @ ~ %p 1 0 03629986 -science_laboratory n 1 3 @ ~ %p 1 0 03629986 -science_museum n 1 1 @ 1 0 04147364 -science_teacher n 1 1 @ 1 0 10560548 -scientific_agriculture n 1 2 @ %p 1 0 06065819 -scientific_discipline n 1 5 @ ~ #p %p - 1 0 05999797 -scientific_fact n 1 1 @ 1 0 05818978 -scientific_instrument n 1 2 @ ~ 1 0 04147495 -scientific_knowledge n 1 3 @ %p = 1 0 05999540 -scientific_method n 1 2 @ ~ 1 0 05660631 -scientific_research n 1 2 @ ~ 1 0 00641820 -scientific_theory n 1 3 @ ~ #p 1 0 05993844 -scientist n 1 3 @ ~ + 1 1 10560637 -scientology n 1 1 @ 1 0 08100033 -scilla n 1 3 @ ~ #m 1 0 12461466 -scilla_nonscripta n 1 2 @ #m 1 0 12459275 -scilla_verna n 1 1 @ 1 0 12461673 -scilly_islands n 1 2 @ #p 1 0 08887463 -scimitar n 1 1 @ 1 1 04147793 -scincella n 1 2 @ #m 1 0 01684012 -scincid n 1 3 @ ~ #m 1 0 01684133 -scincid_lizard n 1 3 @ ~ #m 1 0 01684133 -scincidae n 1 3 @ #m %m 1 0 01683724 -scincus n 1 2 @ #m 1 0 01683900 -scindapsus n 1 3 @ #m %m 1 0 11791819 -scindapsus_aureus n 1 2 @ #m 1 0 11788727 -scintilla n 2 2 @ + 2 0 13773725 09426038 -scintillating_scotoma n 1 1 @ 1 0 14556879 -scintillation n 5 3 @ + ; 5 0 11506349 07411645 05620190 04952944 04771128 -scintillation_counter n 1 1 @ 1 0 04147916 -sciolism n 1 2 @ + 1 0 05095561 -sciolist n 1 2 @ + 1 0 09987696 -scion n 1 1 @ 1 0 10561222 -scipio n 1 1 @ 1 0 11288216 -scipio_africanus n 1 1 @ 1 0 11288216 -scipio_africanus_major n 1 1 @ 1 0 11288216 -scipio_the_elder n 1 1 @ 1 0 11288216 -scire_facias n 1 2 @ ; 1 0 06555341 -scirpus n 1 3 @ #m %m 1 0 12152869 -scirpus_acutus n 1 2 @ #m 1 0 12153033 -scirpus_cyperinus n 1 2 @ #m 1 0 12153224 -scission n 1 1 @ 1 0 00387326 -scissor_grip n 1 1 @ 1 0 00814665 -scissor_hold n 1 1 @ 1 0 00814665 -scissors n 3 4 @ ~ %p ; 3 0 04148054 00814665 00438725 -scissors_grip n 1 1 @ 1 0 00814665 -scissors_hold n 1 1 @ 1 0 00814665 -scissors_kick n 1 2 @ #p 1 0 00574925 -scissortail n 1 2 @ #m 1 0 01555305 -scissortailed_flycatcher n 1 2 @ #m 1 0 01555305 -scissure n 1 2 @ ~ 1 0 09258715 -sciuridae n 1 3 @ #m %m 1 0 02355711 -sciuromorpha n 1 3 @ #m %m 1 0 02354950 -sciurus n 1 3 @ #m %m 1 0 02356108 -sciurus_carolinensis n 1 2 @ #m 1 0 02356381 -sciurus_griseus n 1 2 @ #m 1 0 02356612 -sciurus_hudsonicus n 1 1 @ 1 0 02357401 -sciurus_niger n 1 2 @ #m 1 0 02356798 -sciurus_vulgaris n 1 2 @ #m 1 0 02357111 -sclaff n 1 2 @ + 1 0 00573775 -sclera n 1 2 @ #p 1 0 05447218 -scleral_veins n 1 1 @ 1 0 05380252 -scleranthus n 1 3 @ #m %m 1 0 11814824 -scleranthus_annuus n 1 2 @ #m 1 0 11814996 -scleredema n 1 1 @ 1 0 14232460 -sclerite n 1 2 @ #p 1 0 01903498 -scleritis n 1 1 @ 1 0 14355643 -scleroderma n 2 4 @ ~ #m %m 2 0 14565196 12968882 -scleroderma_aurantium n 1 2 @ #m 1 0 12969425 -scleroderma_bovista n 1 2 @ #m 1 0 12969927 -scleroderma_citrinum n 1 2 @ #m 1 0 12969425 -scleroderma_flavidium n 1 2 @ #m 1 0 12969670 -sclerodermataceae n 1 3 @ #m %m 1 0 12968658 -sclerodermatales n 1 3 @ #m %m 1 0 12968408 -sclerometer n 1 1 @ 1 0 04148285 -scleropages n 1 3 @ #m %m 1 0 02544960 -scleropages_jardinii n 1 2 @ #m 1 0 02545387 -scleropages_leichardti n 1 2 @ #m 1 0 02545153 -scleroparei n 1 3 @ #m %m 1 0 02641608 -scleroprotein n 1 2 @ ~ 1 0 15026716 -sclerosing_leukoencephalitis n 1 1 @ 1 0 14344189 -sclerosis n 1 3 @ ~ + 1 0 14110411 -sclerotic_coat n 1 2 @ #p 1 0 05447218 -sclerotinia n 1 3 @ ~ #m 1 0 12968136 -sclerotiniaceae n 1 3 @ #m %m 1 0 12967776 -sclerotium n 2 2 @ #m 2 0 13082829 13022903 -sclerotium_disease n 1 1 @ 1 0 14282524 -sclerotium_rot n 1 1 @ 1 0 14282524 -sclerotomy n 1 1 @ 1 0 00691541 -sclk n 1 1 @ 1 0 15131598 -scnt n 1 2 @ ~ 1 0 00638770 -scoff n 1 2 @ + 1 0 06716234 -scoffer n 2 2 @ + 2 0 10561613 10561320 -scoffing n 1 2 @ + 1 1 06716234 -scofflaw n 1 1 @ 1 0 10561736 -scoinson_arch n 1 1 @ 1 0 04148464 -scoke n 1 1 @ 1 0 11855553 -scold n 1 3 @ ~ + 1 0 10561861 -scolder n 1 3 @ ~ + 1 0 10561861 -scolding n 1 3 @ ~ + 1 0 06712833 -scolion n 1 1 @ 1 0 07053606 -scoliosis n 1 1 @ 1 0 14505364 -scollop n 3 6 @ ~ #m #p %p + 3 0 07797641 07654886 01965889 -scolopacidae n 1 3 @ #m %m 1 0 02025530 -scolopax n 1 3 @ #m %m 1 0 02031143 -scolopax_rusticola n 1 2 @ #m 1 0 02031298 -scolopendrium n 1 1 @ 1 0 13184394 -scolopendrium_nigripes n 1 2 @ #m 1 0 13184001 -scolymus n 1 3 @ #m %m 1 0 12010458 -scolymus_hispanicus n 1 1 @ 1 0 12010815 -scolytidae n 1 3 @ #m %m 1 0 02179429 -scolytus n 1 3 @ #m %m 1 0 02179714 -scolytus_multistriatus n 1 2 @ #m 1 0 02179891 -scomber n 1 3 @ #m %m 1 0 02624377 -scomber_colias n 1 3 @ #m %p 1 0 02624807 -scomber_japonicus n 1 2 @ #m 1 0 02624987 -scomber_scombrus n 1 3 @ #m %p 1 0 02624551 -scomberesocidae n 1 3 @ #m %m 1 0 02551316 -scomberesox n 1 3 @ #m %m 1 0 02551494 -scomberesox_saurus n 1 2 @ #m 1 0 02551668 -scomberomorus n 1 3 @ #m %m 1 0 02625418 -scomberomorus_cavalla n 1 2 @ #m 1 0 02625851 -scomberomorus_maculatus n 1 2 @ #m 1 0 02626089 -scomberomorus_regalis n 1 3 @ #m %p 1 0 02626265 -scomberomorus_sierra n 1 1 @ 1 0 02626471 -scombresocidae n 1 3 @ #m %m 1 0 02551316 -scombresox n 1 3 @ #m %m 1 0 02551494 -scombridae n 1 3 @ #m %m 1 0 02623868 -scombroid n 1 3 @ ~ #m 1 0 02623445 -scombroid_fish n 1 3 @ ~ #m 1 0 02623445 -scombroidea n 1 3 @ #m %m 1 0 02623170 -sconce n 4 1 @ 4 0 04148936 04148801 04148703 04148579 -sconcheon_arch n 1 1 @ 1 0 04148464 -scone n 1 2 @ ~ 1 0 07690892 -scoop n 6 3 @ #p + 6 1 13769317 13894306 06683183 04253751 04149208 04149083 -scoop_shot n 1 1 @ 1 0 00112072 -scoop_shovel n 1 2 @ #p 1 0 04149208 -scoopful n 1 1 @ 1 0 13769317 -scooter n 5 4 @ ~ #m + 5 0 04562122 04149374 03791053 03556811 01853498 -scope n 4 5 @ ~ #p %p + 4 1 05125377 14513259 04403638 03857828 -scopes n 1 1 @ 1 0 11288528 -scopes_trial n 1 2 @ ; 1 0 01196759 -scophthalmus n 1 3 @ #m %m 1 0 02662688 -scophthalmus_aquosus n 1 2 @ #m 1 0 02662825 -scophthalmus_rhombus n 1 1 @ 1 0 02662993 -scopolamine n 1 1 @ 1 0 04149490 -scopolia n 1 3 @ #m %m 1 0 12913352 -scopolia_carniolica n 1 2 @ #m 1 0 12913524 -scops_owl n 1 3 @ ~ #m 1 0 01623706 -scorbutus n 1 2 @ + 1 0 14201520 -scorch n 3 3 @ ~ + 3 0 14289942 14282107 04695504 -scorched-earth_policy n 1 1 @ 1 0 00176994 -scorcher n 2 1 @ 2 0 11466834 00131791 -score n 11 4 @ ~ %p + 11 6 05737153 06815714 13594585 08272652 09179382 05819338 14491034 13905405 07549536 00186634 00160688 -score_paper n 1 1 @ 1 0 14957152 -scoreboard n 1 1 @ 1 1 04149813 -scorecard n 1 2 @ ; 1 0 06507941 -scorekeeper n 1 1 @ 1 0 10562135 -scorer n 3 2 @ + 3 0 10562391 10562283 10562135 -scores n 1 1 @ 1 1 13777509 -scoria n 1 2 @ ~ 1 0 15042856 -scoring n 1 2 @ + 1 0 00874977 -scoring_system n 1 1 @ 1 0 05733221 -scorn n 2 3 @ ~ + 2 2 07502980 06715927 -scorner n 1 2 @ + 1 0 10616379 -scorpaena n 1 3 @ #m %m 1 0 02642935 -scorpaena_grandicornis n 1 2 @ #m 1 0 02643316 -scorpaenid n 1 3 @ ~ #m 1 0 02642644 -scorpaenid_fish n 1 3 @ ~ #m 1 0 02642644 -scorpaenidae n 1 2 @ %m 1 0 02642430 -scorpaenoid n 1 3 @ ~ #m 1 0 02642107 -scorpaenoid_fish n 1 3 @ ~ #m 1 0 02642107 -scorpaenoidea n 1 3 @ #m %m 1 0 02641825 -scorper n 1 1 @ 1 0 04144651 -scorpio n 3 4 @ #p %m ; 3 0 09753204 09426143 08687345 -scorpio_the_scorpion n 1 1 @ 1 0 08687345 -scorpioid_cyme n 1 1 @ 1 0 13133316 -scorpion n 3 3 @ #m ; 3 0 09753204 08687345 01770393 -scorpion_fish n 1 3 @ ~ #m 1 0 02643112 -scorpion_fly n 1 2 @ #m 1 0 02162561 -scorpion_shell n 1 2 @ #m 1 0 01943541 -scorpion_weed n 1 3 @ ~ #m 1 0 12836862 -scorpionfish n 1 3 @ ~ #m 1 0 02643112 -scorpionida n 1 3 @ #m %m 1 0 01770263 -scorpionweed n 1 3 @ ~ #m 1 0 12836862 -scorpius n 1 3 @ #p %m 1 0 09426143 -scorsese n 1 1 @ 1 0 11288818 -scorzonera n 2 4 @ #m #p %p 2 0 12013035 07735294 -scorzonera_hispanica n 1 3 @ #m %p 1 0 12013035 -scot n 1 3 @ ~ #m 1 1 09730533 -scot_and_lot n 1 1 @ 1 0 14491171 -scotch n 2 4 @ ~ #s + 2 0 13905405 07907548 -scotch_and_soda n 1 1 @ 1 1 07917507 -scotch_asphodel n 1 2 @ #m 1 0 12462221 -scotch_broom n 1 2 @ #m 1 0 12521394 -scotch_broth n 1 1 @ 1 0 07588688 -scotch_egg n 1 1 @ 1 0 07876651 -scotch_fir n 1 1 @ 1 0 11616662 -scotch_gale n 1 2 @ #m 1 0 11741175 -scotch_kiss n 1 1 @ 1 0 07607280 -scotch_laburnum n 1 2 @ #m 1 0 12538209 -scotch_malt_whiskey n 1 3 @ ~ #s 1 0 07907548 -scotch_malt_whisky n 1 3 @ ~ #s 1 0 07907548 -scotch_marigold n 1 1 @ 1 0 11943660 -scotch_pancake n 1 1 @ 1 0 07691091 -scotch_pine n 1 1 @ 1 0 11616662 -scotch_tape n 1 3 @ + ; 1 0 02992795 -scotch_terrier n 1 1 @ 1 0 02097298 -scotch_thistle n 1 2 @ #m 1 0 11998888 -scotch_whiskey n 1 3 @ ~ #s 1 0 07907548 -scotch_whisky n 1 3 @ ~ #s 1 0 07907548 -scotch_woodcock n 1 1 @ 1 0 07876775 -scotchman n 1 3 @ ~ #m 1 1 09730533 -scotchwoman n 1 1 @ 1 0 09730732 -scoter n 1 3 @ ~ #m 1 0 01853498 -scotland n 1 5 @ #p %m %p - 1 1 08890097 -scotland_yard n 1 1 @ 1 1 08210835 -scotoma n 1 3 @ ~ + 1 0 14556203 -scotopic_vision n 1 1 @ 1 0 05656997 -scots n 1 4 @ ~ + ; 1 0 06950209 -scots_english n 1 3 @ ~ ; 1 0 06950209 -scots_gaelic n 1 1 @ 1 0 06961122 -scots_heather n 1 2 @ #m 1 0 12233529 -scots_pine n 1 1 @ 1 0 11616662 -scotsman n 1 3 @ ~ #m 1 0 09730533 -scotswoman n 1 1 @ 1 0 09730732 -scott n 5 1 @ 5 0 11289709 11289491 11289307 11289161 11288930 -scott's_spleenwort n 1 1 @ 1 0 13181244 -scott_joplin n 1 1 @ 1 0 11091374 -scottie n 1 1 @ 1 0 02097298 -scottish n 1 4 @ ~ + ; 1 0 06950209 -scottish_deerhound n 1 1 @ 1 0 02092002 -scottish_gaelic n 1 1 @ 1 0 06961122 -scottish_highlander n 1 1 @ 1 0 10174695 -scottish_lallans n 1 1 @ 1 0 06950400 -scottish_lowlander n 1 1 @ 1 0 10275249 -scottish_maple n 1 1 @ 1 0 12754981 -scottish_reel n 1 2 @ ~ 1 0 00540211 -scottish_terrier n 1 1 @ 1 0 02097298 -scoundrel n 1 3 @ ~ + 1 1 10753546 -scour n 1 2 @ + 1 0 08647457 -scourer n 2 2 @ + 2 0 10562645 10562509 -scourge n 3 2 @ + 3 1 04149968 14445226 10702615 -scourge_of_god n 1 1 @ 1 0 10827678 -scourge_of_the_gods n 1 1 @ 1 0 10827678 -scourger n 1 2 @ + 1 0 10096964 -scouring n 2 3 @ ~ + 2 2 00993488 00251780 -scouring_pad n 1 1 @ 1 0 04150153 -scouring_rush n 1 1 @ 1 0 13220122 -scours n 1 1 @ 1 1 14272347 -scouse n 1 1 @ 1 0 07591330 -scouser n 1 2 @ #m 1 0 09704509 -scout n 4 4 @ ~ + ; 4 1 10271216 10563183 10562968 10562749 -scout_car n 1 2 @ ; 1 0 04062807 -scout_group n 1 1 @ 1 0 08274718 -scout_troop n 1 1 @ 1 0 08274718 -scouter n 1 2 @ + 1 0 10540984 -scouting n 1 2 @ + 1 1 00985106 -scouting_trip n 1 1 @ 1 0 00309802 -scoutmaster n 1 1 @ 1 0 10563314 -scow n 2 1 @ 2 0 04150371 04150273 -scowl n 1 2 @ + 1 1 06877849 -scpo n 1 1 @ 1 0 10579176 -scrabble n 2 3 @ + ; 2 0 04155310 00502161 -scrag n 3 4 @ ~ #p + 3 0 10708797 07666933 07665713 -scrag_end n 1 2 @ #p 1 0 07665713 -scramble n 2 2 @ + 2 1 00789391 00556142 -scrambled_eggs n 1 1 @ 1 0 07842308 -scrambler n 3 2 @ + 3 0 10563403 04466871 04150474 -scranton n 1 1 @ 1 0 09136929 -scrap n 4 4 @ ~ %p + 4 1 09222051 14857497 04150668 01170962 -scrap_iron n 1 1 @ 1 0 15020974 -scrap_metal n 1 2 @ ~ 1 0 14857737 -scrapbook n 1 1 @ 1 0 04150860 -scrape n 4 3 @ ~ + 4 1 07392982 14286549 07275489 04693900 -scraper n 1 2 @ + 1 0 04150980 -scrapheap n 2 1 @ 2 1 08573842 07962628 -scrapie n 1 1 @ 1 0 14272421 -scraping n 3 3 @ + ; 3 2 09426307 07392982 07275489 -scrapper n 1 3 @ ~ + 1 0 09939313 -scrappiness n 1 2 @ + 1 0 04837814 -scrapple n 1 1 @ 1 0 07876893 -scraps n 1 1 @ 1 0 14857151 -scratch n 10 4 @ ~ + ; 10 1 14286549 13904843 13385216 10563610 08653873 07805389 07392982 06404147 05163401 04693900 -scratch_awl n 1 1 @ 1 0 04155457 -scratch_line n 1 1 @ 1 0 08653873 -scratch_pad n 1 1 @ 1 0 15021189 -scratch_paper n 1 1 @ 1 0 15021189 -scratch_race n 1 1 @ 1 0 07463607 -scratch_sheet n 1 1 @ 1 0 06596025 -scratch_test n 1 1 @ 1 0 05745744 -scratcher n 3 3 @ ~ + 3 0 10563826 10563711 04151108 -scratchiness n 1 2 @ + 1 1 04949066 -scratching n 1 1 @ 1 0 07392982 -scratchpad n 1 2 @ ; 1 0 04151228 -scrawl n 1 3 @ ~ + 1 0 06404147 -scrawler n 1 2 @ + 1 0 10563940 -scrawniness n 2 2 @ + 2 0 05001724 04730985 -scream n 3 2 @ + 3 2 07123012 07393161 06778925 -screamer n 4 4 @ ~ #m + 4 0 10533983 06345773 01860497 00131791 -screaming n 2 2 @ + 2 1 07123012 07393161 -screaming_meemies n 1 2 @ ; 1 0 14375761 -scree n 1 1 @ 1 0 09454153 -screech n 2 2 @ + 2 2 07393161 07123012 -screech_owl n 2 2 @ #m 2 0 01623615 01623425 -screecher n 1 3 @ ~ + 1 0 10533983 -screeching n 2 2 @ + 2 1 07393161 07123012 -screed n 3 1 @ 3 0 07243114 06430309 04151405 -screen n 9 6 @ ~ #p %s %p + 9 5 04152829 02851099 04152593 04151940 04151581 08068457 04216634 04153025 04152387 -screen_actor n 1 2 @ ~ 1 0 10564098 -screen_background n 1 2 @ ; 1 0 02769075 -screen_door n 1 2 @ %p 1 1 04153025 -screen_font n 1 2 @ ; 1 0 06827679 -screen_memory n 1 1 @ 1 0 05935717 -screen_pass n 1 1 @ 1 1 00561570 -screen_saver n 1 2 @ ; 1 0 04153436 -screen_test n 1 1 @ 1 0 00794772 -screener n 1 2 @ + 1 0 10564224 -screening n 4 4 @ ~ #s + 4 0 06888345 04153330 01049685 00644967 -screenland n 1 1 @ 1 0 08068457 -screenplay n 1 1 @ 1 1 07012279 -screenwriter n 1 2 @ ~ 1 0 10564400 -screw n 5 6 @ ~ #p %p + ; 5 0 10149867 04154340 04154152 04153751 00846021 -screw-pine_family n 1 3 @ #m %m 1 0 12154426 -screw_auger n 1 1 @ 1 0 02758490 -screw_augur n 1 2 @ #m 1 0 12083847 -screw_bean n 2 3 @ #p %p 2 0 11766432 11766189 -screw_eye n 1 1 @ 1 0 04154753 -screw_jack n 1 1 @ 1 0 03591028 -screw_key n 1 1 @ 1 0 04154854 -screw_log n 1 1 @ 1 0 03898787 -screw_pine n 1 3 @ ~ #m 1 0 12154773 -screw_propeller n 1 2 @ #p 1 0 04154152 -screw_thread n 1 2 @ #p 1 0 04154938 -screw_tree n 1 3 @ ~ #m 1 0 12199266 -screw_wrench n 1 1 @ 1 0 04155177 -screwball n 2 2 @ + 2 0 09974496 00108818 -screwballer n 1 2 @ ; 1 0 10564541 -screwbean n 1 2 @ %p 1 0 11766189 -screwbean_mesquite n 1 2 @ %p 1 0 11766189 -screwdriver n 2 3 @ ~ %s 2 1 04154565 07917272 -screwing n 1 3 @ + ; 1 0 00846021 -screwtop n 1 1 @ 1 0 04155068 -screwup n 1 2 @ + 1 0 01134699 -scriabin n 1 1 @ 1 0 11289830 -scribble n 2 3 @ ~ + 2 0 06404147 04155310 -scribbler n 2 2 @ + 2 0 10564660 10563940 -scribbling_block n 1 1 @ 1 0 15021189 -scribe n 4 3 @ ~ + 4 0 11289999 10564660 09964805 04155457 -scriber n 1 2 @ + 1 0 04155457 -scribing_block n 1 1 @ 1 0 04362624 -scrim n 1 1 @ 1 0 04155625 -scrimmage n 2 3 @ + ; 2 2 00898127 00554200 -scrimmage_line n 1 1 @ 1 0 08650677 -scrimshanker n 1 3 @ + ; 1 0 10564800 -scrimshaw n 1 1 @ 1 0 04155735 -scrip n 1 1 @ 1 0 13416897 -scripps n 2 1 @ 2 0 11290272 11290107 -script n 3 4 @ ~ + ; 3 1 07009946 06403393 06351613 -scriptorium n 1 2 @ #p 1 0 04155889 -scripture n 2 5 @ ~ %p + - 2 1 06431740 06430385 -scriptwriter n 1 2 @ ~ 1 0 10564905 -scrivener n 1 2 @ ~ 1 0 09964805 -scrod n 2 1 @ 2 0 07789382 02523617 -scrofula n 1 2 @ + 1 0 14144247 -scroll n 2 3 @ ~ + 2 0 13875970 06407733 -scroll_saw n 1 1 @ 1 0 03598783 -scrooge n 1 2 @ ~ 1 0 10357737 -scrophularia n 1 3 @ #m %m 1 0 12876684 -scrophulariaceae n 1 3 @ #m %m 1 0 12876032 -scrophulariales n 1 2 @ #m 1 0 12808751 -scrotal_vein n 1 1 @ 1 0 05380404 -scrotum n 1 4 @ #p %p + 1 0 05517406 -scrounger n 1 3 @ ~ + 1 0 10330189 -scrub n 2 3 @ ~ + 2 0 08438223 00251780 -scrub-bird n 1 2 @ #m 1 0 01546039 -scrub_beefwood n 1 3 @ #m %s 1 0 12223160 -scrub_bird n 1 2 @ #m 1 0 01546039 -scrub_brush n 1 1 @ 1 0 04156140 -scrub_fowl n 1 3 @ ~ #m 1 0 01801088 -scrub_nurse n 1 1 @ 1 0 10565197 -scrub_oak n 1 2 @ ~ 1 1 12274630 -scrub_palmetto n 1 2 @ #m 1 0 12597466 -scrub_pine n 1 1 @ 1 0 11616852 -scrub_plane n 1 1 @ 1 0 04156297 -scrub_typhus n 1 1 @ 1 0 14142326 -scrubber n 3 2 @ + 3 0 10565048 04156140 04156040 -scrubbiness n 1 2 @ + 1 0 04730985 -scrubbing n 1 3 @ ~ + 1 1 00251780 -scrubbing_brush n 1 1 @ 1 0 04156140 -scrubbird n 1 2 @ #m 1 0 01546039 -scrubland n 1 1 @ 1 0 08645104 -scrubs n 1 1 @ 1 0 03450734 -scruff n 1 2 @ #p 1 0 05547396 -scrum n 1 2 @ ; 1 0 00242146 -scrummage n 1 2 @ ; 1 0 00242146 -scrumpy n 1 2 @ ; 1 0 07921834 -scrunch n 1 2 @ + 1 0 07393500 -scruple n 3 4 @ #p %p + 3 0 13722060 07525555 05957737 -scruples n 1 2 @ ~ 1 0 09184136 -scrupulousness n 2 3 ! @ + 2 0 04869256 04672605 -scrutin_de_liste n 1 1 @ 1 0 05904616 -scrutin_de_liste_system n 1 1 @ 1 1 05904616 -scrutin_uninomial_system n 1 2 @ ; 1 0 05904313 -scrutin_uninominal_voting_system n 1 2 @ ; 1 1 05904313 -scrutineer n 1 3 @ + ; 1 0 10565502 -scrutiniser n 1 2 @ + 1 0 10565302 -scrutinizer n 1 2 @ + 1 0 10565302 -scrutiny n 2 3 @ ~ + 2 2 00635850 00878052 -scsi n 1 1 @ 1 0 04245218 -scuba n 1 2 @ %p 1 0 02731629 -scuba_diver n 1 1 @ 1 0 10565667 -scuba_diving n 1 1 @ 1 0 00444846 -scud n 1 2 @ + 1 0 00330836 -scudding n 1 2 @ + 1 0 00330836 -scuff n 2 2 @ + 2 0 03798061 00125315 -scuffer n 1 2 @ + 1 0 04156411 -scuffle n 3 2 @ + 3 1 01172441 04156591 00789391 -scuffle_hoe n 1 1 @ 1 0 04156591 -scull n 3 2 @ + 3 0 04156946 04156814 04156720 -sculler n 1 3 @ + ; 1 0 10565764 -scullery n 1 2 @ ; 1 0 04157099 -sculling n 1 2 @ + 1 0 00445685 -scullion n 1 1 @ 1 0 10565951 -sculpin n 1 3 @ ~ #m 1 0 02645304 -sculptor n 2 3 @ ~ + 2 1 10566072 09426494 -sculptress n 1 1 @ 1 0 10566893 -sculptural_relief n 1 2 @ ~ 1 0 04073669 -sculpture n 2 3 @ ~ + 2 2 04157320 00937656 -sculpturer n 1 3 @ ~ + 1 0 10566072 -scum n 2 3 @ ~ + 2 0 08402147 04157703 -scum_bag n 1 1 @ 1 0 10539715 -scumble n 1 1 @ 1 0 00719148 -scunner n 1 2 @ ; 1 0 07503849 -scup n 4 3 @ #p %p 4 0 07790246 07790081 02593679 02593453 -scupper n 1 1 @ 1 0 04157883 -scuppernong n 1 1 @ 1 0 07759576 -scurf n 2 4 @ ~ + ; 2 0 09426621 09425607 -scurrility n 1 2 @ + 1 0 06721342 -scurry n 1 2 @ + 1 0 00556142 -scurvy n 1 2 @ + 1 0 14201520 -scurvy_grass n 2 3 @ ~ #m 2 0 11883945 11873612 -scut n 1 2 @ #p 1 0 02158739 -scut_work n 1 1 @ 1 0 00732576 -scutch_grass n 1 2 @ #m 1 0 12115748 -scutcheon n 2 1 @ 2 0 03342262 03296478 -scute n 1 2 @ ~ 1 0 01903346 -scutellaria n 1 2 @ #m 1 0 12867679 -scutellaria_lateriflora n 1 1 @ 1 0 12868019 -scutigera n 1 3 @ #m %m 1 0 01785532 -scutigera_coleoptrata n 1 2 @ #m 1 0 01785667 -scutigerella n 1 3 @ #m %m 1 0 01783571 -scutigerella_immaculata n 1 2 @ #m 1 0 01783706 -scutigeridae n 1 3 @ #m %m 1 0 01785392 -scuttle n 2 3 @ ~ %p 2 0 04158002 03499142 -scuttlebutt n 1 2 @ ~ 1 0 07223170 -scyliorhinidae n 1 3 @ #m %m 1 0 01488234 -scylla n 1 2 @ ; 1 0 09491504 -scyphozoa n 1 3 @ #m %m 1 0 01910529 -scyphozoan n 1 2 @ #m 1 0 01911063 -scyphus n 1 1 @ 1 0 04158138 -scythe n 1 2 @ + 1 0 04158250 -scythia n 1 3 @ #p + 1 0 09177647 -scythian n 2 2 @ + 2 0 10566966 06975469 -scythian_lamb n 1 2 @ #m 1 0 13191148 -sd n 1 3 @ #p %p 1 0 09138935 -se n 2 2 @ #s 2 0 14654175 13832841 -sea n 3 4 @ ~ #p %p 3 2 09426788 13776971 11521404 -sea-coast n 1 3 @ ~ %p 1 0 09428293 -sea-duty n 1 1 @ 1 0 00732369 -sea-ear n 1 1 @ 1 0 01943087 -sea-lavender_family n 1 3 @ #m %m 1 0 12097927 -sea-lettuce_family n 1 3 @ #m %m 1 0 01408383 -sea-level_pressure n 1 1 @ 1 0 11496157 -sea-poose n 1 1 @ 1 0 07404261 -sea-purse n 1 1 @ 1 0 07404261 -sea-puss n 1 1 @ 1 0 07404261 -sea-rocket n 1 2 @ #m 1 0 11880411 -sea_anchor n 1 2 @ #p 1 0 04158457 -sea_anemone n 1 3 @ ~ #m 1 0 01914609 -sea_animal n 1 2 @ ~ 1 0 01319467 -sea_ash n 1 2 @ #m 1 0 12714949 -sea_aster n 1 1 @ 1 0 11935330 -sea_bass n 2 5 @ ~ #m #p %p 2 0 07777945 02566834 -sea_bathing n 1 1 @ 1 0 00442569 -sea_bird n 1 2 @ ~ 1 1 02021795 -sea_biscuit n 1 1 @ 1 0 07694839 -sea_boat n 1 2 @ ~ 1 0 04158807 -sea_bottom n 1 2 @ ~ 1 1 09376526 -sea_bream n 2 5 @ ~ #m #p %p 2 0 07777189 02590702 -sea_breeze n 1 1 @ 1 0 11432155 -sea_captain n 1 2 @ ~ 1 0 10298912 -sea_catfish n 1 3 @ ~ #m 1 0 02520810 -sea_change n 1 1 @ 1 0 07360211 -sea_chantey n 1 1 @ 1 0 07050042 -sea_chest n 1 1 @ 1 0 04158956 -sea_chub n 1 3 @ ~ #m 1 0 02604157 -sea_coal n 1 1 @ 1 0 14815423 -sea_cole n 1 2 @ #m 1 0 11884384 -sea_cow n 1 3 @ ~ #m 1 0 02073250 -sea_cradle n 1 2 @ #m 1 0 01955084 -sea_crawfish n 1 3 @ #m %p 1 0 01984695 -sea_creature n 1 2 @ ~ 1 0 01319467 -sea_cucumber n 1 3 @ ~ #m 1 0 02321529 -sea_dahlia n 1 1 @ 1 0 11957514 -sea_dog n 1 2 @ ~ 1 0 10294602 -sea_duck n 1 2 @ ~ 1 0 01852861 -sea_eagle n 2 3 @ ~ #m 2 0 01616086 01615121 -sea_elephant n 1 2 @ #m 1 0 02080415 -sea_eryngium n 1 2 @ #m 1 0 12938193 -sea_fan n 1 1 @ 1 0 01916481 -sea_feather n 1 1 @ 1 0 01916388 -sea_floor n 1 2 @ ~ 1 0 09376526 -sea_god n 1 1 @ 1 0 09506830 -sea_gooseberry n 1 2 @ #m 1 0 01920438 -sea_green n 1 1 @ 1 0 04967674 -sea_gull n 1 2 @ ~ 1 0 02041246 -sea_hare n 1 2 @ #m 1 0 01951274 -sea_holly n 2 2 @ #m 2 0 12938193 12812478 -sea_holm n 1 2 @ #m 1 0 12938193 -sea_horse n 2 3 @ ~ #m 2 0 02081571 01456756 -sea_island_cotton n 1 1 @ 1 0 12176453 -sea_kale n 1 2 @ #m 1 0 11884384 -sea_king n 1 1 @ 1 0 10567096 -sea_ladder n 1 3 @ ~ ; 1 0 04159676 -sea_lamprey n 1 2 @ #m 1 0 01477875 -sea_lane n 1 2 @ ~ 1 0 04163364 -sea_lavender n 1 2 @ #m 1 0 12099342 -sea_lawyer n 1 1 @ 1 0 10567172 -sea_lettuce n 1 2 @ #m 1 0 01408743 -sea_level n 1 1 @ 1 0 05132340 -sea_lily n 1 2 @ #m 1 0 02320465 -sea_lion n 1 2 @ ~ 1 0 02077923 -sea_louse n 1 1 @ 1 0 01992423 -sea_lyme_grass n 1 1 @ 1 0 12119539 -sea_mat n 1 2 @ #m 1 0 02313709 -sea_mew n 1 2 @ #m 1 0 02041678 -sea_mile n 1 1 @ 1 0 13660868 -sea_milkwort n 1 2 @ #m 1 0 12093885 -sea_moss n 2 2 @ #m 2 0 02313709 01414216 -sea_mouse n 1 1 @ 1 0 01936858 -sea_nymph n 1 3 @ ~ ; 1 0 09490352 -sea_of_azof n 1 2 @ #p 1 0 09427876 -sea_of_azoff n 1 2 @ #p 1 0 09427876 -sea_of_azov n 1 2 @ #p 1 0 09427876 -sea_of_cortes n 1 2 @ #p 1 0 09297584 -sea_of_japan n 1 2 @ #p 1 0 09428036 -sea_of_marmara n 1 1 @ 1 0 09347208 -sea_of_marmora n 1 1 @ 1 0 09347208 -sea_of_okhotsk n 1 2 @ #p 1 0 09428171 -sea_onion n 2 3 @ #m %p 2 0 12462582 12461673 -sea_otter n 1 2 @ #m 1 0 02445394 -sea_pea n 1 2 @ #m 1 0 12540250 -sea_pen n 1 2 @ #m 1 0 01915700 -sea_pink n 1 1 @ 1 0 12099031 -sea_poacher n 1 3 @ ~ #m 1 0 02647660 -sea_poker n 1 3 @ ~ #m 1 0 02647660 -sea_poppy n 1 2 @ #m 1 0 11905749 -sea_power n 2 2 @ ; 2 1 05035264 08177487 -sea_purse n 1 1 @ 1 0 07404261 -sea_puss n 1 1 @ 1 0 07404261 -sea_raven n 1 2 @ #m 1 0 02645953 -sea_robber n 1 2 @ ~ 1 0 10435367 -sea_robin n 1 2 @ ~ 1 0 02650541 -sea_room n 1 1 @ 1 0 13778827 -sea_rover n 1 2 @ ~ 1 0 10435367 -sea_scallop n 2 4 @ #m #p %p 2 0 07797913 01966586 -sea_scooter n 1 1 @ 1 0 04562122 -sea_scorpion n 1 3 @ ~ #m 1 0 02643112 -sea_scout n 1 1 @ 1 0 10567613 -sea_serpent n 1 1 @ 1 0 09488006 -sea_slater n 1 1 @ 1 0 01992423 -sea_slug n 1 3 @ ~ #m 1 0 01950731 -sea_snail n 1 2 @ #m 1 0 02647294 -sea_snake n 1 2 @ #m 1 0 01751748 -sea_spider n 1 2 @ #m 1 0 01787006 -sea_spray n 1 1 @ 1 1 15056749 -sea_spurry n 1 2 @ #m 1 0 11817501 -sea_squab n 1 4 @ ~ #p %s 1 0 07781972 -sea_squill n 1 3 @ #m %p 1 0 12462582 -sea_squirt n 1 1 @ 1 0 01469103 -sea_star n 1 2 @ #m 1 0 02317335 -sea_starwort n 1 1 @ 1 0 11935330 -sea_steps n 1 3 @ ~ ; 1 0 04159676 -sea_swallow n 1 2 @ #m 1 0 02043333 -sea_tang n 1 1 @ 1 0 01403713 -sea_tangle n 1 1 @ 1 0 01403595 -sea_trifoly n 1 2 @ #m 1 0 12093885 -sea_trout n 3 3 @ ~ #p 3 0 07794744 02599052 02537716 -sea_turtle n 1 2 @ ~ 1 0 01663401 -sea_urchin n 1 3 @ ~ #m 1 0 02319095 -sea_wolf n 1 2 @ #m 1 0 02071294 -sea_wormwood n 1 2 @ #m 1 0 12014355 -sea_wrack n 2 2 @ #m 2 0 12618727 01398064 -seabag n 1 1 @ 1 0 04158672 -seabeach_sandwort n 1 1 @ 1 0 11806521 -seabed n 1 2 @ ~ 1 0 09376526 -seabird n 1 2 @ ~ 1 0 02021795 -seaboard n 1 1 @ 1 0 09428628 -seaborg n 1 1 @ 1 0 11290477 -seaborgium n 1 1 @ 1 0 14654058 -seacoast n 1 3 @ ~ %p 1 1 09428293 -seafarer n 1 2 @ ~ 1 1 10294602 -seafaring n 2 4 @ ~ %p - 2 0 00314469 00313647 -seafood n 1 2 @ ~ 1 0 07776866 -seafood_newburg n 1 3 @ ~ %s 1 0 07870313 -seafood_sauce n 1 1 @ 1 0 07837110 -seafowl n 1 2 @ ~ 1 0 02021795 -seafront n 1 2 @ %p 1 0 08633851 -seagrass n 1 1 @ 1 0 01397871 -seagull n 1 2 @ ~ 1 1 02041246 -seahorse n 2 3 @ ~ #m 2 1 02081571 01456756 -seal n 9 6 @ ~ #m %s + ; 9 2 04160036 04159058 14766040 10348526 06855985 06705984 04159545 04159354 02076196 -seal_bomb n 1 1 @ 1 0 04159850 -seal_limbs n 1 1 @ 1 0 14466567 -seal_of_approval n 1 1 @ 1 1 06705984 -seal_oil n 1 1 @ 1 0 15021381 -seal_ring n 1 2 @ %p 1 0 04218271 -sealant n 1 3 @ ~ + 1 0 14705718 -sealed_instrument n 1 1 @ 1 0 06524278 -sealer n 2 3 @ ~ + 2 0 14705718 10567268 -sealing n 1 2 @ + 1 1 00830099 -sealing_material n 1 2 @ ~ 1 0 14705533 -sealing_wax n 1 2 @ %s 1 0 04160036 -sealskin n 2 1 @ 2 0 14766040 04160261 -sealskin_tent n 1 1 @ 1 0 04498275 -sealyham n 2 3 @ #p ; 2 0 08895623 02095889 -sealyham_terrier n 1 2 @ ; 1 0 02095889 -seam n 3 4 @ ~ #p + 3 1 04160372 13905792 08659076 -seaman n 2 3 @ ~ + 2 1 10294602 11290653 -seamanship n 1 3 @ ~ + 1 0 05639832 -seamount n 1 2 @ ~ 1 0 09427752 -seamster n 1 3 @ ~ + 1 0 10689564 -seamstress n 1 2 @ ~ 1 0 10033412 -sean_o'casey n 1 1 @ 1 0 11211419 -seanad n 1 2 @ #p 1 0 08319908 -seanad_eireann n 1 2 @ #p 1 0 08319908 -seance n 1 2 @ %p 1 0 08417920 -seaplane n 1 3 @ ~ + 1 0 04160586 -seaport n 1 4 @ ~ #p %p 1 0 08639058 -seaquake n 1 1 @ 1 1 07429870 -search n 5 3 @ ~ + 5 2 00945401 00637354 13553560 05770058 00644366 -search_and_destroy_mission n 1 1 @ 1 0 00971096 -search_and_rescue_mission n 1 1 @ 1 0 00096720 -search_engine n 1 2 @ ~ 1 0 06578654 -search_language n 1 1 @ 1 0 06899446 -search_mission n 1 1 @ 1 0 00971004 -search_party n 1 1 @ 1 0 08265692 -search_warrant n 1 2 @ ; 1 1 06547321 -searcher n 3 3 @ ~ + 3 0 10575787 10567401 02167944 -searcher_beetle n 1 1 @ 1 0 02167944 -searching_fire n 1 1 @ 1 0 00993651 -searchlight n 1 2 @ %p 1 1 04160847 -searing_iron n 1 1 @ 1 0 04161010 -searobin n 1 2 @ ~ 1 0 02650541 -sears_tower n 1 2 @ #p 1 0 04161102 -seascape n 2 1 @ 2 0 08647049 04161233 -seashell n 1 1 @ 1 0 01956764 -seashore n 1 3 @ ~ %p 1 0 09428293 -seashore_mallow n 1 3 @ ~ #m 1 0 12182049 -seasickness n 1 2 @ + 1 0 14203942 -seaside n 1 1 @ 1 0 09428628 -seaside_alder n 1 2 @ #m 1 0 12285195 -seaside_centaury n 1 1 @ 1 0 12291459 -seaside_daisy n 1 1 @ 1 0 11966617 -seaside_goldenrod n 1 1 @ 1 0 12017664 -seaside_mahoe n 1 2 @ #m 1 0 12188635 -seaside_scrub_oak n 1 1 @ 1 0 12275888 -seasnail n 2 3 @ ~ #m 2 0 02647294 01945845 -season n 3 3 @ ~ #p 3 2 15239579 15236475 15239292 -season_ticket n 1 1 @ 1 0 06519077 -seasonableness n 1 3 ! @ + 1 0 05049253 -seasonal n 1 1 @ 1 0 10567722 -seasonal_adjustment n 1 1 @ 1 0 13274892 -seasonal_worker n 1 1 @ 1 0 10567722 -seasoned_salt n 1 1 @ 1 0 07813579 -seasoner n 2 3 @ ~ + 2 0 10567848 07809368 -seasoning n 2 4 @ ~ #p + 2 0 07809368 00248368 -seat n 9 7 @ ~ #m #p %p + ; 9 5 08647616 05559256 04161981 04161358 08647945 08490039 05189946 04162599 04162433 -seat_belt n 1 2 @ #p 1 0 04162706 -seat_cushion n 1 1 @ 1 0 04162895 -seatbelt n 1 2 @ #p 1 0 04162706 -seating n 2 4 @ ~ %m + 2 0 04162998 01210699 -seating_area n 1 3 @ ~ %m 1 0 04162998 -seating_capacity n 1 1 @ 1 0 05105879 -seating_room n 1 3 @ ~ %m 1 0 04162998 -seats n 1 3 @ ~ %m 1 0 04162998 -seattle n 1 3 @ #p %p 1 1 09154178 -seattle_slew n 1 1 @ 1 0 02384533 -seawall n 1 1 @ 1 0 02894605 -seaward n 1 1 @ 1 0 13830084 -seawater n 1 3 @ ~ %s 1 1 15008847 -seaway n 1 2 @ ~ 1 0 04163364 -seaweed n 1 2 @ ~ 1 1 01397497 -seaworthiness n 1 3 @ = + 1 0 14547036 -seb n 1 1 @ 1 0 15050695 -sebaceous_cyst n 1 2 @ ~ 1 0 14202763 -sebaceous_follicle n 1 3 @ ~ #p 1 0 05328232 -sebaceous_gland n 1 3 @ ~ #p 1 0 05328232 -sebacic_acid n 1 1 @ 1 0 14739861 -sebastian_cabot n 1 1 @ 1 0 10877841 -sebastian_vizcaino n 1 1 @ 1 0 11368076 -sebastiana n 1 3 @ #m %p 1 0 12928690 -sebastodes n 1 3 @ #m %m 1 0 02643989 -sebastodes_caurinus n 1 1 @ 1 0 02644360 -sebastodes_marinus n 1 1 @ 1 0 02644817 -sebastodes_miniatus n 1 1 @ 1 0 02644501 -sebastodes_ruberrimus n 1 2 @ %p 1 0 02644665 -sebastopol n 1 2 @ #p 1 0 09017168 -sebe n 1 1 @ 1 0 13832717 -seborrhea n 1 1 @ 1 0 14232596 -seborrheic_dermatitis n 1 1 @ 1 0 14232740 -seborrheic_eczema n 1 1 @ 1 0 14232740 -seborrheic_keratosis n 1 1 @ 1 0 14229067 -sebs n 1 1 @ 1 0 13832993 -sebum n 1 3 @ ~ + 1 0 05416979 -sec n 3 4 @ ~ #p %p 3 1 15235126 13788690 08424044 -secale n 1 3 @ #m %m 1 0 12133870 -secale_cereale n 1 3 @ #m %p 1 0 12134025 -secant n 2 1 @ 2 0 13871338 13788690 -secateurs n 1 2 @ ; 1 0 04163530 -secernment n 2 2 @ ~ 2 0 13553916 05748054 -secession n 3 3 @ ~ + 3 0 08470034 00385104 00384933 -secessionism n 1 2 @ + 1 0 05968710 -secessionist n 1 2 @ + 1 1 10567979 -sechuana n 1 1 @ 1 0 06995664 -seckel n 1 1 @ 1 0 07768318 -seckel_pear n 1 1 @ 1 0 07768318 -seclusion n 2 3 @ ~ + 2 0 04622932 01201773 -secobarbital n 1 1 @ 1 0 04163740 -secobarbital_sodium n 1 1 @ 1 0 04163740 -seconal n 1 2 @ ; 1 0 04163740 -second n 10 6 @ ~ #m #p %p + 10 3 15235126 15246853 00723783 15244650 13846546 13611395 10568083 07180372 04164529 03587050 -second-degree_burn n 1 1 @ 1 0 14291295 -second-hand_speech n 1 1 @ 1 0 07141789 -second-hand_store n 1 1 @ 1 0 04428634 -second-in-command n 1 1 @ 1 0 10568915 -second-place_finish n 1 1 @ 1 0 07354504 -second-rater n 1 1 @ 1 0 10569179 -second-stringer n 1 3 @ ~ #m 1 0 10671042 -second_advent n 1 2 @ ; 1 0 07322550 -second_adventism n 1 2 @ ~ 1 0 06226934 -second_adventist n 1 1 @ 1 0 09678747 -second_balcony n 1 2 @ #p 1 0 04164199 -second_banana n 2 1 @ 2 0 10660883 10568608 -second_base n 2 2 @ #m 2 1 04164406 00723783 -second_baseman n 1 2 @ ; 1 1 10568200 -second_battle_of_ypres n 1 3 @ #p ; 1 0 01300782 -second_best n 1 1 @ 1 0 10543057 -second_childhood n 1 1 @ 1 0 15154190 -second_class n 3 1 @ 3 0 14430916 04731207 02932693 -second_coming n 1 2 @ ; 1 1 07322550 -second_coming_of_christ n 1 2 @ ; 1 0 07322550 -second_council_of_constantinople n 1 1 @ 1 0 08314327 -second_council_of_lyons n 1 1 @ 1 0 08316564 -second_council_of_nicaea n 1 1 @ 1 0 08314715 -second_cousin n 1 1 @ 1 1 10568358 -second_cranial_nerve n 1 2 @ #p 1 0 05478336 -second_crusade n 1 1 @ 1 0 00969225 -second_deck n 1 1 @ 1 0 03711459 -second_earl_grey n 1 1 @ 1 0 11015650 -second_earl_of_chatham n 1 1 @ 1 0 11236497 -second_earl_of_guilford n 1 1 @ 1 0 11209790 -second_empire n 1 1 @ 1 0 08406036 -second_epistel_of_john n 1 2 @ #p 1 0 06447400 -second_epistle_of_paul_the_apostle_to_the_corinthians n 1 2 @ #p 1 0 06443658 -second_epistle_of_paul_the_apostle_to_the_thessalonians n 1 2 @ #p 1 0 06445214 -second_epistle_of_paul_the_apostle_to_timothy n 1 2 @ #p 1 0 06445729 -second_epistle_of_peter n 1 2 @ #p 1 0 06447039 -second_epistle_to_the_corinthians n 1 2 @ #p 1 0 06443658 -second_epistle_to_the_thessalonians n 1 2 @ #p 1 0 06445214 -second_epistle_to_timothy n 1 2 @ #p 1 0 06445729 -second_estate n 1 2 @ ; 1 0 08167953 -second_fiddle n 2 1 @ 2 0 10568608 00721929 -second_gear n 1 2 @ #p 1 0 04164529 -second_growth n 1 1 @ 1 0 13240203 -second_half n 1 1 @ 1 1 15258179 -second_hand n 2 2 @ ~ 2 1 10568754 04164757 -second_joint n 1 3 @ #p %p 1 0 07648267 -second_lateran_council n 1 1 @ 1 0 08315682 -second_law_of_motion n 1 1 @ 1 0 05886039 -second_law_of_thermodynamics n 1 1 @ 1 0 05883035 -second_lieutenant n 1 1 @ 1 0 10569011 -second_marquis_of_rockingham n 1 1 @ 1 0 11267343 -second_moment n 1 2 @ ; 1 1 06024761 -second_mortgage n 1 1 @ 1 0 13352610 -second_nature n 1 1 @ 1 0 00414881 -second_period n 1 2 @ #p 1 0 15257553 -second_person n 1 1 @ 1 0 06327870 -second_power n 1 1 @ 1 0 13731021 -second_reading n 1 1 @ 1 0 07163381 -second_reich n 1 1 @ 1 0 08169919 -second_sacker n 1 2 @ ; 1 0 10568200 -second_sight n 1 2 @ ~ 1 0 07256695 -second_stomach n 1 2 @ #p 1 0 02399648 -second_string n 1 1 @ 1 0 08080762 -second_thought n 1 1 @ 1 1 05790012 -second_trimester n 1 1 @ 1 0 15227133 -second_vatican_council n 1 1 @ 1 0 08318216 -second_wind n 2 1 @ 2 0 04836960 00836639 -second_world_war n 1 3 @ %p - 1 0 01312096 -secondary n 2 4 @ #m #p %m 2 0 08429899 04164002 -secondary_amenorrhea n 1 1 @ 1 0 14303743 -secondary_cell n 1 2 @ #p 1 0 04328580 -secondary_censorship n 1 1 @ 1 0 00822544 -secondary_coil n 1 2 @ #p 1 0 04164002 -secondary_dentition n 1 1 @ 1 0 05282339 -secondary_diagonal n 1 1 @ 1 0 08268807 -secondary_dysmenorrhea n 1 1 @ 1 0 14326458 -secondary_education n 1 1 @ 1 0 00886807 -secondary_emission n 1 1 @ 1 0 13553758 -secondary_hypertension n 1 1 @ 1 0 14105386 -secondary_modern_school n 1 1 @ 1 0 08413092 -secondary_school n 1 2 @ ~ 1 1 08284481 -secondary_sex_character n 1 1 @ 1 0 05007800 -secondary_sex_characteristic n 1 1 @ 1 0 05007800 -secondary_sexual_characteristic n 1 1 @ 1 0 05007800 -secondary_storage n 1 1 @ 1 0 02763306 -secondary_syphilis n 1 1 @ 1 0 14134482 -secondary_winding n 1 2 @ #p 1 0 04164002 -seconder n 1 2 @ + 1 0 10568443 -secondhand_car n 1 1 @ 1 0 04516354 -secondment n 2 2 @ + 2 0 07180372 00732201 -secondo n 1 2 @ #p 1 0 07031401 -secotiaceae n 1 3 @ #m %m 1 0 13047385 -secotiales n 1 3 @ #m %m 1 0 13047216 -secpar n 1 1 @ 1 0 13657489 -secrecy n 2 2 @ ~ 2 2 04652177 14416089 -secret n 3 2 @ ~ 3 1 06673142 06672953 05685538 -secret_agent n 1 2 @ ~ 1 0 10569411 -secret_approval n 1 2 @ ; 1 0 06689125 -secret_ballot n 1 1 @ 1 0 00184362 -secret_code n 1 1 @ 1 0 06355307 -secret_intelligence_service n 1 2 @ ; 1 0 08346655 -secret_plan n 1 2 @ ~ 1 0 05907682 -secret_police n 1 2 @ ~ 1 0 08211584 -secret_service n 1 2 @ #p 1 0 08348400 -secret_society n 1 2 @ ~ 1 0 08235343 -secret_writing n 2 2 @ ~ 2 0 06355183 00614489 -secretaire n 1 1 @ 1 0 04164868 -secretarial_assistant n 1 2 @ ~ 1 0 10569744 -secretarial_school n 1 1 @ 1 1 08284847 -secretariat n 2 2 @ ~ 2 0 08324274 02384428 -secretariate n 1 2 @ ~ 1 0 08324274 -secretary n 4 3 @ ~ + 4 2 10570019 10569744 10521928 04164868 -secretary_bird n 1 2 @ #m 1 0 01618503 -secretary_general n 1 1 @ 1 1 10573829 -secretary_of_agriculture n 2 2 @ #m 2 0 10570704 00600200 -secretary_of_commerce n 2 2 @ #m 2 0 10570961 00600435 -secretary_of_commerce_and_labor n 1 1 @ 1 0 00603512 -secretary_of_defense n 2 2 @ #m 2 0 10571202 00600655 -secretary_of_education n 2 2 @ #m 2 0 10571435 00600871 -secretary_of_energy n 2 2 @ #m 2 0 10571670 00601088 -secretary_of_health_and_human_services n 2 2 @ #m 2 0 10571907 00601296 -secretary_of_health_education_and_welfare n 1 1 @ 1 0 00603684 -secretary_of_housing_and_urban_development n 2 2 @ #m 2 0 10572185 00601557 -secretary_of_labor n 2 2 @ #m 2 0 10572469 00601822 -secretary_of_state n 3 2 @ #m 3 2 10572706 10103794 00602026 -secretary_of_state_for_the_home_department n 1 2 @ #m 1 0 10182628 -secretary_of_the_interior n 2 2 @ #m 2 1 00602220 10572889 -secretary_of_the_navy n 1 1 @ 1 0 00603319 -secretary_of_the_treasury n 2 2 @ #m 2 1 10573129 00602448 -secretary_of_transportation n 2 2 @ #m 2 0 10573349 00602669 -secretary_of_veterans_affairs n 2 2 @ #m 2 0 10573596 00602909 -secretary_of_war n 1 1 @ 1 0 00603131 -secretaryship n 1 3 @ ~ + 1 0 00599472 -secretase n 1 1 @ 1 0 15021560 -secreter n 1 3 @ ~ %p 1 0 05327767 -secretin n 1 1 @ 1 0 05409426 -secretion n 2 3 @ ~ + 2 2 13553916 05404728 -secretiveness n 2 3 @ ~ + 2 0 04657407 04652177 -secretor n 1 4 @ ~ %p + 1 0 05327767 -secretory_organ n 1 3 @ ~ %p 1 0 05327767 -secretory_phase n 1 2 @ #p 1 0 15289208 -sect n 2 4 @ ~ %p + 2 1 08149781 08251877 -sectarian n 1 2 @ + 1 0 10573957 -sectarianism n 1 1 @ 1 0 06206021 -sectarist n 1 1 @ 1 0 10573957 -sectary n 1 1 @ 1 0 10573957 -section n 14 5 @ ~ #p + ; 14 6 06392001 09428741 08648322 04164989 08214832 05867413 13613504 08648153 08239152 08216900 08216795 08114861 07747455 00678010 -section_eight n 2 2 @ ; 2 0 10574154 00234277 -section_gang n 1 2 @ %m 1 0 08243570 -section_hand n 1 2 @ #m 1 0 10574311 -section_man n 1 1 @ 1 0 10574425 -sectional n 1 1 @ 1 0 04165409 -sectionalisation n 1 3 @ ~ + 1 0 00397953 -sectionalism n 1 1 @ 1 0 06202429 -sectionalization n 1 3 @ ~ + 1 0 00397953 -sector n 6 6 @ ~ #p %p + ; 6 3 13875027 07966719 05853100 13626240 08648658 04165551 -sectral n 1 2 @ ; 1 0 02673480 -secular n 1 3 @ ~ #m 1 0 10250527 -secular_games n 1 2 @ ; 1 0 00518770 -secular_humanism n 1 1 @ 1 0 05967191 -secularisation n 2 2 @ + 2 0 01155465 01109311 -secularism n 1 2 @ + 1 1 05968835 -secularist n 1 2 @ + 1 1 10574538 -secularization n 2 2 @ + 2 0 01155465 01109311 -secundigravida n 1 1 @ 1 0 10574723 -secured_bond n 1 2 ! @ 1 0 13339734 -secureness n 2 4 ! @ ~ + 2 0 14539693 04777098 -securer n 1 2 @ + 1 0 10479328 -securities_analyst n 1 1 @ 1 0 09790865 -securities_and_exchange_commission n 1 1 @ 1 0 08424044 -securities_firm n 1 3 @ ~ %m 1 0 08069878 -securities_industry n 1 3 @ ~ %m 1 0 08072837 -securities_law n 1 2 @ ; 1 0 08456474 -securities_market n 1 4 @ ~ #m - 1 0 04323026 -security n 9 4 ! @ ~ + 9 3 14539268 13344071 07526338 13416345 13349395 08120910 06685754 04165945 00823316 -security_blanket n 2 2 @ ; 2 0 04165811 04165675 -security_consultant n 1 1 @ 1 0 10574840 -security_council n 1 2 @ #m 1 0 08296332 -security_department n 1 1 @ 1 0 08120910 -security_deposit n 1 1 @ 1 0 13351278 -security_director n 1 1 @ 1 0 10574958 -security_force n 1 2 @ %m 1 0 08210982 -security_guard n 1 3 @ ~ #m 1 0 10770059 -security_intelligence n 1 1 @ 1 0 00820845 -security_intelligence_review_committee n 1 2 @ ; 1 0 08346905 -security_interest n 1 2 @ ~ 1 0 13287984 -security_measure n 1 1 @ 1 0 04165945 -security_measures n 1 1 @ 1 0 00823316 -security_review n 1 2 @ ~ 1 0 00821083 -security_service n 1 2 @ ; 1 0 08347206 -security_staff n 1 1 @ 1 0 08352720 -security_system n 2 3 @ ~ ; 2 0 04166111 04165945 -sed_rate n 1 1 @ 1 0 15277462 -sedalia n 1 2 @ #p 1 0 09107950 -sedan n 2 2 @ ~ 2 1 04166281 04166436 -sedan_chair n 1 2 @ ~ 1 0 04166436 -sedateness n 1 2 @ + 1 0 04647826 -sedation n 2 2 @ + 2 0 14290212 00695300 -sedative n 1 3 @ ~ + 1 0 04166553 -sedative-hypnotic n 1 2 @ ~ 1 0 04166841 -sedative-hypnotic_drug n 1 2 @ ~ 1 0 04166841 -sedative_drug n 1 2 @ ~ 1 0 04166553 -seder n 1 3 @ ~ ; 1 0 01035667 -sedge n 1 4 @ ~ #m + 1 0 12150028 -sedge_bird n 1 1 @ 1 0 01565599 -sedge_family n 1 4 @ ~ #m %m 1 0 12149751 -sedge_warbler n 1 1 @ 1 0 01565599 -sedge_wren n 2 1 @ 2 0 01585422 01565599 -sediment n 1 3 @ ~ + 1 1 09428967 -sedimentary_clay n 1 1 @ 1 0 15021824 -sedimentary_rock n 1 2 @ ~ 1 0 14698000 -sedimentation n 1 3 @ ~ + 1 1 11445395 -sedimentation_rate n 1 1 @ 1 0 15277462 -sedition n 1 3 @ + ; 1 0 00772813 -sedna n 1 1 @ 1 0 09429194 -seducer n 2 3 @ ~ + 2 0 10575241 10575089 -seduction n 2 3 @ ~ + 2 1 00160415 00160532 -seductress n 1 1 @ 1 0 10575387 -sedulity n 1 2 @ + 1 0 04866078 -sedulousness n 1 2 @ + 1 0 04866078 -sedum n 1 3 @ ~ #m 1 0 12785724 -sedum_acre n 1 2 @ #m 1 0 12786097 -sedum_rosea n 1 2 @ #m 1 0 12786273 -sedum_telephium n 1 2 @ #m 1 0 12786464 -see n 1 3 @ ~ #p 1 0 08586825 -seed n 5 4 @ ~ %p + 5 2 13135832 11683989 10575463 05834758 05404336 -seed_beetle n 1 3 @ ~ #m 1 0 02182045 -seed_cake n 1 2 @ %s 1 0 07634605 -seed_catalog n 1 1 @ 1 0 06488763 -seed_catalogue n 1 1 @ 1 0 06488763 -seed_coat n 1 2 @ #p 1 0 11682349 -seed_corn n 1 1 @ 1 0 13367913 -seed_fern n 1 1 @ 1 0 11605542 -seed_grain n 1 1 @ 1 1 13367913 -seed_lac n 1 2 @ %s 1 0 14702117 -seed_leaf n 1 1 @ 1 0 11686398 -seed_money n 1 1 @ 1 0 13356002 -seed_oyster n 1 1 @ 1 0 01960787 -seed_pearl n 1 1 @ 1 0 13372585 -seed_plant n 1 2 @ ~ 1 0 11552386 -seed_shrimp n 1 2 @ #m 1 0 01997825 -seed_stock n 1 2 @ ~ 1 0 13367787 -seed_vessel n 1 3 @ ~ #p 1 0 11684264 -seed_weevil n 1 3 @ ~ #m 1 0 02182045 -seedbed n 1 1 @ 1 1 04167122 -seedcake n 1 2 @ %s 1 0 07634605 -seedcase n 1 2 @ ~ 1 0 13140049 -seeded_player n 1 1 @ 1 0 10575463 -seeded_raisin n 1 1 @ 1 0 07752874 -seeder n 3 2 @ + 3 0 10575594 04167346 04167228 -seediness n 1 3 @ ~ + 1 0 04816761 -seedless_raisin n 1 1 @ 1 0 07752782 -seedling n 1 1 @ 1 1 11552594 -seedman n 1 1 @ 1 0 10575705 -seedpod n 1 2 @ ~ 1 1 13139055 -seedsman n 1 1 @ 1 0 10575705 -seedtime n 2 1 @ 2 0 15291416 15238271 -seeger n 2 1 @ 2 0 11290984 11290864 -seeing n 2 3 @ ~ + 2 0 05710860 05656537 -seeing_eye_dog n 1 2 @ ; 1 0 02109256 -seeing_red n 1 1 @ 1 0 14407070 -seek n 1 2 @ ; 1 0 07350893 -seek_time n 1 4 @ ~ #p ; 1 0 15269128 -seeker n 2 2 @ ~ 2 1 10575787 04167489 -seeking n 2 2 @ + 2 0 00946650 00788362 -seeland n 1 3 @ #p %m 1 0 08761697 -seemliness n 1 3 ! @ + 1 0 04900357 -seepage n 1 3 @ ~ + 1 1 07432119 -seer n 3 3 @ ~ + 3 1 10756433 10576071 10483530 -seersucker n 1 1 @ 1 0 04167661 -seesaw n 1 3 @ #p + 1 0 04167759 -segal n 1 1 @ 1 0 11291179 -segment n 2 4 @ ~ #p + 2 1 04164989 09429387 -segmental_arch n 1 1 @ 1 0 04168084 -segmentation n 2 5 @ ~ #p + ; 2 0 13449156 00397953 -segmentation_cavity n 1 2 @ #p 1 0 01459242 -segmented_worm n 1 3 @ ~ #m 1 0 01934440 -segno n 1 2 @ ; 1 0 06869271 -sego_lily n 1 1 @ 1 0 12448700 -segovia n 1 1 @ 1 0 11291284 -segregate n 1 1 @ 1 0 10576223 -segregation n 3 6 ! @ ~ #p + ; 3 0 13554121 08380340 01202184 -segregationism n 1 2 @ + 1 0 06216805 -segregationist n 1 2 @ + 1 1 10576316 -segregator n 1 2 @ + 1 0 10576316 -segue n 1 1 @ 1 0 00201397 -segway n 1 2 @ ; 1 0 04168199 -segway_ht n 1 2 @ ; 1 0 04168199 -segway_human_transporter n 1 2 @ ; 1 0 04168199 -sei_whale n 1 2 @ #m 1 0 02065263 -seiche n 1 1 @ 1 0 07346195 -seidel n 1 1 @ 1 0 04168472 -seidlitz_powder n 1 1 @ 1 0 15009637 -seidlitz_powders n 1 1 @ 1 0 15009637 -seif_dune n 1 1 @ 1 0 09429630 -seigneur n 1 2 @ ~ 1 0 10085736 -seigneur_de_bayard n 1 1 @ 1 0 10838802 -seigneury n 2 1 @ 2 0 13252293 00603866 -seignior n 1 2 @ ~ 1 0 10085736 -seigniorage n 1 1 @ 1 0 13323648 -seigniory n 2 1 @ 2 0 13252293 00603866 -seiji_ozawa n 1 2 @ ; 1 0 11219502 -seine n 2 4 @ ~ #p + 2 0 09429752 04168541 -seine_river n 1 2 @ #p 1 0 09429752 -seism n 1 3 @ ~ + 1 0 07428954 -seismic_disturbance n 1 1 @ 1 0 07429276 -seismogram n 1 1 @ 1 0 04168716 -seismograph n 1 1 @ 1 1 04168840 -seismography n 1 1 @ 1 0 00603995 -seismologist n 1 2 @ + 1 0 10576513 -seismology n 1 2 @ + 1 0 06120496 -seismosaur n 1 2 @ #m 1 0 01711496 -seismosaurus n 1 3 @ #m %m 1 0 01711297 -seiurus n 1 3 @ #m %m 1 0 01570112 -seiurus_aurocapillus n 1 2 @ #m 1 0 01570267 -seizer n 1 2 @ + 1 0 10586265 -seizing n 2 3 @ ~ + 2 0 04169035 00812274 -seizure n 4 3 @ ~ + 4 2 14081941 00088481 00775286 00085219 -seizure-alert_dog n 1 1 @ 1 0 02109687 -sekhet n 1 1 @ 1 0 09513430 -selachian n 1 3 @ ~ #m 1 0 01482071 -selachii n 1 3 @ #m %m 1 0 01481599 -selaginella n 1 3 @ #m %m 1 0 13224454 -selaginella_apoda n 1 1 @ 1 0 13224922 -selaginella_eatonii n 1 1 @ 1 0 13225617 -selaginella_eremophila n 1 1 @ 1 0 13225244 -selaginella_lepidophylla n 1 1 @ 1 0 13225365 -selaginella_rupestris n 1 1 @ 1 0 13225075 -selaginellaceae n 1 3 @ #m %m 1 0 13224256 -selaginellales n 1 3 @ #m %m 1 0 13224086 -selar n 1 3 @ #m %m 1 0 02580991 -selar_crumenophthalmus n 1 2 @ #m 1 0 02581108 -selcraig n 1 1 @ 1 0 11291824 -select_committee n 1 2 @ ; 1 0 08325851 -selection n 5 3 @ ~ + 5 3 00161243 08399818 05790242 13563746 06400510 -selective-serotonin_reuptake_inhibitor n 1 2 @ ~ 1 0 04169152 -selective_amnesia n 1 2 @ ~ 1 0 05673439 -selective_information n 1 2 @ ; 1 0 05091527 -selective_jamming n 1 1 @ 1 0 01251138 -selective_lipectomy n 1 2 @ ~ 1 0 00682080 -selective_service n 2 3 @ ~ ; 2 1 08353563 01157850 -selective_service_system n 1 1 @ 1 1 08353563 -selectivity n 1 2 @ + 1 0 05208988 -selectman n 1 2 @ #m 1 1 10576676 -selector n 2 4 @ ~ %p + 2 0 10431625 04169437 -selector_switch n 1 3 @ ~ %p 1 0 04169437 -selectwoman n 1 2 @ #m 1 0 10576818 -selenarctos n 1 3 @ #m %m 1 0 02133512 -selenarctos_thibetanus n 1 2 @ #m 1 0 02133704 -selene n 2 3 @ #m ; 2 0 09571090 02578125 -selene_setapinnis n 1 2 @ ~ 1 0 02578233 -selene_vomer n 1 1 @ 1 0 02578454 -selenic_acid n 1 1 @ 1 0 14616073 -selenicereus n 1 3 @ #m %m 1 0 11853644 -selenicereus_grandiflorus n 1 1 @ 1 0 11853979 -selenipedium n 1 2 @ #m 1 0 12082764 -selenium n 1 2 @ #s 1 0 14654175 -selenium_cell n 1 1 @ 1 0 04169597 -selenolatry n 1 1 @ 1 0 01046888 -selenology n 1 1 @ 1 0 06097983 -seles n 1 1 @ 1 0 11291451 -seleucus n 1 1 @ 1 0 11291575 -seleucus_i n 1 1 @ 1 0 11291575 -seleucus_i_nicator n 1 1 @ 1 0 11291575 -self n 2 2 @ ~ 2 2 05675601 09604981 -self-abasement n 1 1 @ 1 0 01165537 -self-abnegation n 1 1 @ 1 0 00205649 -self-absorption n 1 2 @ ~ 1 0 05837128 -self-abuse n 1 1 @ 1 0 00855936 -self-accusation n 1 1 @ 1 0 07216228 -self-adapting_program n 1 1 @ 1 0 06579452 -self-aggrandisement n 1 1 @ 1 1 00373862 -self-aggrandizement n 1 1 @ 1 0 00373862 -self-analysis n 2 1 @ 2 0 05786871 00705433 -self-annihilation n 1 2 @ ~ 1 0 00222485 -self-assertion n 2 1 @ 2 0 07230320 01223143 -self-assertiveness n 1 2 @ ~ 1 0 05167237 -self-assurance n 1 2 @ = 1 0 05697363 -self-awareness n 1 3 @ ~ + 1 1 05676605 -self-centeredness n 1 2 @ + 1 0 04835028 -self-command n 1 2 @ ~ 1 0 04862005 -self-complacency n 1 3 @ ~ + 1 0 07531713 -self-concern n 1 1 @ 1 0 04835028 -self-condemnation n 1 1 @ 1 0 07216228 -self-confidence n 1 3 @ = + 1 1 05697363 -self-consciousness n 2 3 ! @ + 2 1 07507329 05676911 -self-contemplation n 1 2 @ ~ 1 0 05786655 -self-contradiction n 1 1 @ 1 0 07206800 -self-control n 2 2 @ ~ 2 1 01069578 04862005 -self-criticism n 1 1 @ 1 0 05734477 -self-cultivation n 1 1 @ 1 0 05757423 -self-deceit n 1 1 @ 1 0 05895588 -self-deception n 1 1 @ 1 1 05895588 -self-defence n 1 2 @ ~ 1 0 00825192 -self-defense n 1 2 @ ~ 1 1 00825192 -self-denial n 3 2 @ ~ 3 0 04881829 01069578 00205649 -self-depreciation n 1 1 @ 1 0 07509474 -self-destruction n 2 3 @ ~ + 2 1 00222485 00222766 -self-determination n 2 2 @ ~ 2 1 13992738 05199151 -self-digestion n 1 1 @ 1 0 13435918 -self-direction n 1 1 @ 1 0 14001031 -self-discipline n 2 2 @ ~ 2 1 04881829 01069578 -self-discovery n 1 1 @ 1 0 00151314 -self-disgust n 1 1 @ 1 0 07506962 -self-distrust n 1 2 @ ~ 1 0 07523286 -self-doubt n 1 2 @ ~ 1 0 07523286 -self-drive n 1 1 @ 1 0 13248598 -self-education n 1 1 @ 1 0 05757423 -self-effacement n 1 1 @ 1 1 00054328 -self-employed_person n 1 1 @ 1 0 10110421 -self-esteem n 1 1 @ 1 1 07508705 -self-evident_truth n 1 1 @ 1 0 05893512 -self-examination n 1 2 @ ~ 1 0 05786655 -self-expression n 1 1 @ 1 0 07073071 -self-feeder n 1 1 @ 1 0 04169707 -self-fertilisation n 1 2 @ ~ 1 0 07437990 -self-fertilization n 1 3 ! @ ~ 1 0 07437990 -self-flagellation n 1 1 @ 1 1 01162257 -self-fulfillment n 1 1 @ 1 0 00062671 -self-government n 1 2 @ ~ 1 1 13992738 -self-gratification n 2 2 @ ~ 2 0 04884817 01073097 -self-hatred n 1 1 @ 1 0 07506962 -self-heal n 1 2 @ #m 1 0 12863234 -self-help n 1 1 @ 1 1 00802111 -self-hypnosis n 1 1 @ 1 0 14026781 -self-importance n 2 3 @ ~ + 2 0 07508806 04887497 -self-improvement n 1 2 @ ~ 1 0 00261258 -self-incrimination n 1 1 @ 1 0 07238589 -self-inductance n 1 1 @ 1 0 13587525 -self-induction n 1 1 @ 1 0 11468578 -self-indulgence n 2 3 @ ~ + 2 1 04884627 00747671 -self-insurance n 1 1 @ 1 0 13348792 -self-interest n 2 1 @ 2 1 04835488 04835028 -self-justification n 1 2 @ ~ 1 0 06741305 -self-knowledge n 1 1 @ 1 0 05806380 -self-loader n 1 2 @ ~ 1 0 02759963 -self-love n 2 1 @ 2 0 07508996 04835260 -self-mortification n 1 1 @ 1 0 01165537 -self-organisation n 1 1 @ 1 0 01138399 -self-organization n 1 1 @ 1 0 01138399 -self-pity n 1 1 @ 1 0 07538272 -self-pollination n 1 3 ! @ ~ 1 0 07438983 -self-portrait n 1 1 @ 1 0 04169935 -self-possession n 1 2 @ ~ 1 0 04862005 -self-praise n 1 2 @ ~ 1 0 07229530 -self-preservation n 1 1 @ 1 1 00819958 -self-pride n 1 1 @ 1 1 07508705 -self-propelled_vehicle n 1 2 @ ~ 1 0 04170037 -self-protection n 1 2 @ ~ 1 0 00825192 -self-punishment n 1 2 @ ~ 1 0 01162672 -self-raising_flour n 1 1 @ 1 0 07594250 -self-realisation n 1 1 @ 1 0 00062671 -self-realization n 1 1 @ 1 0 00062671 -self-reformation n 1 2 @ ~ 1 0 00261258 -self-regard n 1 1 @ 1 0 04886881 -self-registering_thermometer n 1 1 @ 1 0 04170384 -self-reliance n 1 2 @ + 1 1 14001031 -self-renewal n 1 1 @ 1 0 01248961 -self-renunciation n 1 1 @ 1 0 00205649 -self-report_inventory n 1 2 @ ~ 1 0 06474603 -self-report_personality_inventory n 1 2 @ ~ 1 0 06474603 -self-reproach n 2 2 @ ~ 2 0 07536074 06713650 -self-reproof n 1 1 @ 1 0 06713650 -self-respect n 1 1 @ 1 1 04886881 -self-restraint n 1 2 @ ~ 1 0 04883243 -self-rising_flour n 1 1 @ 1 0 07594250 -self-rule n 1 2 @ ~ 1 0 13992738 -self-sacrifice n 1 2 @ ~ 1 1 01205961 -self-satisfaction n 1 2 @ ~ 1 1 07531713 -self-seeker n 1 2 @ ~ 1 0 10379376 -self-seeking n 1 1 @ 1 0 04835488 -self-service n 1 1 @ 1 0 00098939 -self-starter n 2 3 @ #p %p 2 0 10577182 04170515 -self-stimulation n 1 1 @ 1 0 00855936 -self-sufficiency n 1 2 @ + 1 0 14001031 -self-suggestion n 1 1 @ 1 0 00158805 -self-taught_art n 1 1 @ 1 0 03861959 -self-torment n 1 1 @ 1 0 07496924 -self-torture n 1 1 @ 1 0 07496924 -self-will n 2 2 @ ~ 2 2 04863074 04862005 -self-worship n 1 1 @ 1 0 01044761 -self-worth n 1 1 @ 1 0 04886881 -self_acceptance n 1 1 @ 1 1 04638472 -selfish_person n 1 2 @ ~ 1 0 10576962 -selfishness n 1 4 ! @ ~ + 1 1 04834605 -selflessness n 2 3 @ ~ + 2 0 04833276 01205961 -selfsameness n 1 2 @ + 1 0 04743486 -seljuk n 1 1 @ 1 0 08158089 -selkirk n 1 1 @ 1 0 11291824 -selkirk_mountains n 1 2 @ #p 1 0 09429934 -selkup n 2 2 @ #m 2 0 09707735 06960180 -sell n 1 2 @ + 1 0 01115162 -sell-by_date n 1 2 @ ; 1 0 15160418 -seller n 1 3 @ ~ + 1 0 10577284 -seller's_market n 1 1 @ 1 0 01098265 -sellers n 1 1 @ 1 0 11292105 -sellers'_market n 1 1 @ 1 0 01098265 -selling n 1 4 @ ~ #p + 1 1 01113068 -selling_agent n 1 1 @ 1 0 10577710 -selling_point n 1 1 @ 1 0 04732386 -selling_price n 1 2 @ ~ 1 0 13304009 -selling_race n 1 1 @ 1 0 07461831 -selloff n 1 2 @ + 1 0 01119949 -sellotape n 1 3 @ + ; 1 0 02992795 -sellout n 1 2 @ + 1 0 00750216 -selma n 1 2 @ #p 1 0 09054616 -selsyn n 1 1 @ 1 0 04170694 -seltzer n 2 2 @ #s 2 0 07936979 07936548 -selva n 1 1 @ 1 0 08439369 -selvage n 2 1 @ 2 0 04171066 04170933 -selvedge n 2 1 @ 2 0 04171066 04170933 -selznick n 1 1 @ 1 0 11292207 -semantic_error n 1 2 @ ; 1 0 07300316 -semantic_memory n 1 1 @ 1 0 05761160 -semantic_relation n 1 2 @ ~ 1 0 13807636 -semantic_role n 1 3 @ ~ ; 1 0 06331803 -semanticist n 1 3 @ ~ + 1 0 10577820 -semantics n 2 3 @ ~ + 2 0 06179792 05920651 -semaphore n 1 2 @ + 1 0 04171208 -semaphore_plant n 1 2 @ #m 1 0 12518013 -semarang n 1 2 @ #p 1 0 08910230 -semasiology n 1 1 @ 1 0 06180548 -semblance n 3 2 @ ~ 3 1 04677952 05939636 03668642 -semen n 1 4 @ ~ %p + 1 0 05404336 -semester n 2 3 @ #p + 2 0 15225797 15204485 -semester_hour n 1 1 @ 1 1 00066075 -semi n 3 4 @ ~ #p %p 3 0 07467393 04467665 04172342 -semi-abstraction n 1 1 @ 1 0 04171373 -semi-climber n 1 1 @ 1 0 11531334 -semi-detached_house n 1 1 @ 1 0 04172107 -semi-skimmed_milk n 1 1 @ 1 0 07846688 -semi-sweet_chocolate n 1 1 @ 1 0 07603722 -semiautomatic n 1 2 @ ~ 1 0 04171629 -semiautomatic_firearm n 1 2 @ ~ 1 0 04171459 -semiautomatic_pistol n 1 2 @ ~ 1 0 04171629 -semibreve n 1 1 @ 1 0 06870576 -semicentenary n 1 1 @ 1 0 15251212 -semicentennial n 1 1 @ 1 0 15251212 -semicircle n 1 2 @ + 1 0 13874251 -semicircular_arch n 1 1 @ 1 0 04104384 -semicircular_canal n 1 2 @ #p 1 0 05323228 -semicolon n 1 1 @ 1 0 06844739 -semicoma n 1 1 @ 1 0 05680839 -semiconducting_material n 1 3 @ ~ #s 1 0 14821248 -semiconductor n 2 4 @ ~ #s %s 2 0 14821248 04171831 -semiconductor_device n 1 3 @ ~ %s 1 0 04171831 -semiconductor_diode n 1 2 @ ~ 1 0 03202760 -semiconductor_unit n 1 3 @ ~ %s 1 0 04171831 -semiconsciousness n 1 2 @ + 1 0 05679906 -semidarkness n 1 3 @ ~ + 1 0 13984285 -semidesert n 1 1 @ 1 0 08506347 -semidetached_house n 1 1 @ 1 0 03257210 -semidiameter n 1 1 @ 1 0 05102300 -semiepiphyte n 1 1 @ 1 0 13123309 -semifinal n 1 3 @ #p + 1 0 07467393 -semifinalist n 1 2 @ + 1 0 10578021 -semifluidity n 1 1 @ 1 0 04936585 -semigloss n 1 1 @ 1 0 04172230 -semilunar_bone n 1 1 @ 1 0 05272423 -semilunar_cartilage n 1 2 @ ; 1 0 05288396 -semilunar_valve n 1 2 @ ~ 1 0 05394904 -semimajor_axis n 1 2 @ #p 1 0 06009685 -semiminor_axis n 1 2 @ #p 1 1 06009988 -semimonthly n 1 1 @ 1 0 06594376 -seminal_duct n 1 3 @ #p %p 1 0 05527216 -seminal_fluid n 1 3 @ ~ %p 1 0 05404336 -seminal_vesicle n 1 2 @ #p 1 0 05527597 -seminar n 2 1 @ 2 0 08327816 00892145 -seminarian n 1 2 @ ; 1 1 10578162 -seminarist n 1 3 @ + ; 1 0 10578162 -seminary n 2 2 @ + 2 1 08284994 08285109 -seminiferous_tubule n 1 2 @ #p 1 0 05524243 -seminole n 2 1 @ 2 0 09667927 06912931 -seminole_bread n 1 1 @ 1 0 11602091 -seminoma n 1 1 @ 1 0 14252184 -semiology n 1 2 @ ; 1 0 05976257 -semiotician n 1 3 @ ~ + 1 0 10577820 -semiotics n 1 3 @ + ; 1 0 05976257 -semiparasite n 1 1 @ 1 0 13120775 -semipermeable_membrane n 1 2 @ ~ 1 0 05447423 -semipro n 1 1 @ 1 0 10578349 -semiprofessional n 1 1 @ 1 0 10578349 -semiquaver n 1 1 @ 1 0 06871534 -semite n 1 3 @ ~ + 1 0 09639919 -semitic n 1 3 @ ~ + 1 0 06986894 -semitic_deity n 1 3 @ ~ ; 1 0 09513902 -semitone n 1 1 @ 1 0 06859175 -semitrailer n 1 2 @ #p 1 0 04172342 -semitrance n 1 1 @ 1 1 05681543 -semitransparency n 1 2 @ + 1 0 04702351 -semitropics n 1 1 @ 1 0 08674344 -semivowel n 1 2 @ ~ 1 0 07114409 -semiweekly n 1 1 @ 1 0 06594130 -semnopithecus_entellus n 1 1 @ 1 0 02488415 -semolina n 1 1 @ 1 0 07570021 -sempatch n 1 2 @ ; 1 0 01294330 -sempiternity n 1 1 @ 1 0 05053527 -sempstress n 1 2 @ ~ 1 0 10033412 -sen n 1 2 @ #p 1 0 13672555 -senate n 2 3 @ ~ #m 2 2 08161477 08161591 -senate_campaign n 1 1 @ 1 0 07473332 -senate_race n 1 1 @ 1 0 07473332 -senator n 1 3 @ ~ + 1 1 10578471 -senatorship n 1 2 @ + 1 0 00604131 -send-off n 2 2 @ + 2 1 06629858 07329568 -sendee n 1 2 @ + 1 0 10578656 -sender n 2 4 @ ~ %p + 2 0 10578762 04472726 -sendero_luminoso n 1 2 @ ; 1 0 08044676 -sending n 1 3 @ ~ + 1 1 00121166 -sendup n 1 1 @ 1 0 06780309 -sene n 1 2 @ #p 1 0 13708392 -seneca n 3 2 @ + 3 0 11292391 09668058 06916409 -seneca_lake n 1 2 @ #m 1 0 09430100 -seneca_snakeroot n 1 2 @ %p 1 0 12705978 -senecio n 1 3 @ #m %m 1 0 12011067 -senecio_aureus n 1 1 @ 1 0 12000356 -senecio_bigelovii n 1 2 @ #m 1 0 12011370 -senecio_cineraria n 1 2 @ #m 1 0 12011620 -senecio_cruentus n 1 2 @ #m 1 0 12001707 -senecio_doublasii n 1 2 @ #m 1 0 12011838 -senecio_glabellus n 1 2 @ #m 1 0 12012111 -senecio_jacobaea n 1 2 @ #m 1 0 12012253 -senecio_milkanioides n 1 2 @ #m 1 0 11960673 -senecio_triangularis n 1 1 @ 1 0 12012510 -senecio_vulgaris n 1 2 @ #m 1 0 12012755 -senefelder n 1 1 @ 1 0 11292662 -senega n 2 3 @ #p %p 2 0 12706240 12705220 -senega_root n 1 2 @ %p 1 0 12705978 -senega_snakeroot n 1 2 @ %p 1 0 12705978 -senegal n 1 4 @ #p %m %p 1 0 08995862 -senegal_gum n 1 1 @ 1 0 14901158 -senegalese n 1 3 @ #m + 1 0 09730824 -senegalese_franc n 1 2 @ %p 1 0 13678700 -seneka_snakeroot n 1 2 @ %p 1 0 12705978 -senescence n 2 3 @ ~ + 2 0 13429006 04927632 -seneschal n 1 1 @ 1 0 10283546 -senga_root n 1 2 @ %p 1 0 12705978 -senhor n 1 1 @ 1 0 10578952 -senile_dementia n 1 1 @ 1 0 14396707 -senile_psychosis n 1 1 @ 1 0 14396707 -senility n 2 2 @ + 2 0 15154190 04927792 -senior n 2 2 @ ~ 2 1 10579062 10048218 -senior_chief_petty_officer n 1 1 @ 1 0 10579176 -senior_citizen n 1 2 @ ~ 1 0 10376523 -senior_class n 1 1 @ 1 1 08239383 -senior_high n 1 1 @ 1 1 08409617 -senior_high_school n 1 1 @ 1 1 08409617 -senior_master_sergeant n 1 1 @ 1 0 10579369 -senior_moment n 1 1 @ 1 0 05673323 -senior_pilot n 1 2 @ ~ 1 0 09892693 -senior_status n 1 2 @ = 1 0 13949576 -senior_vice_president n 1 1 @ 1 0 10579549 -seniority n 2 3 @ = + 2 1 13949576 04927890 -seniti n 1 2 @ #p 1 0 13690214 -senna n 1 3 @ ~ #m 1 0 12499163 -senna_alata n 1 2 @ ; 1 0 12499439 -senna_alexandrina n 1 1 @ 1 0 12499979 -senna_auriculata n 1 1 @ 1 0 12499757 -senna_marilandica n 1 2 @ #m 1 0 12500309 -senna_obtusifolia n 1 2 @ #m 1 0 12500518 -senna_occidentalis n 1 1 @ 1 0 12500751 -sennacherib n 1 1 @ 1 0 11292809 -sennenhunde n 1 2 @ ~ 1 0 02107420 -sennett n 1 1 @ 1 0 11293008 -sennit n 1 1 @ 1 0 04172512 -senor n 1 2 @ ; 1 0 06341862 -senora n 1 2 @ ; 1 0 06342015 -senorita n 1 2 @ ; 1 0 06342182 -sens n 1 1 @ 1 0 03990834 -sensation n 5 3 @ ~ + 5 3 05712076 09762509 07514782 14037480 05651971 -sensationalism n 4 5 @ ~ = + ; 4 0 07247602 07088053 05976471 05970311 -sensationalist n 1 2 @ + 1 0 10579835 -sense n 5 3 @ ~ + 5 5 05677504 06602472 05651971 05614657 05807012 -sense_datum n 1 2 @ ~ 1 1 05712076 -sense_experience n 1 2 @ ~ 1 0 05712076 -sense_impression n 1 2 @ ~ 1 0 05712076 -sense_modality n 1 2 @ ~ 1 0 05652396 -sense_of_balance n 1 1 @ 1 0 05659365 -sense_of_direction n 1 1 @ 1 1 05677744 -sense_of_duty n 1 1 @ 1 0 09184543 -sense_of_equilibrium n 1 1 @ 1 0 05659365 -sense_of_hearing n 1 3 @ ~ - 1 0 05657718 -sense_of_humor n 1 1 @ 1 1 04650201 -sense_of_humour n 1 1 @ 1 0 04650201 -sense_of_movement n 1 1 @ 1 0 05658985 -sense_of_purpose n 1 1 @ 1 1 05170400 -sense_of_responsibility n 1 1 @ 1 1 05677850 -sense_of_right_and_wrong n 1 2 @ ~ 1 0 09184136 -sense_of_shame n 1 1 @ 1 0 09184543 -sense_of_smell n 1 2 @ ~ 1 0 05658603 -sense_of_taste n 1 1 @ 1 0 05658226 -sense_of_the_meeting n 1 1 @ 1 0 13972180 -sense_of_touch n 1 2 @ #p 1 1 05655119 -sense_organ n 1 4 @ ~ #p %p 1 1 05299178 -sense_tagger n 1 1 @ 1 0 06577781 -senselessness n 1 2 @ + 1 0 05174023 -sensibility n 3 5 ! @ ~ + ; 3 2 05678148 07512848 05652926 -sensible_horizon n 1 2 @ #p 1 0 08585657 -sensibleness n 1 2 @ + 1 0 05151701 -sensing n 2 3 @ ~ + 2 1 05710687 00876874 -sensing_element n 1 2 @ ~ 1 0 03180969 -sensitisation n 3 4 @ ~ + ; 3 0 14531983 13554343 00829170 -sensitiser n 1 3 @ + ; 1 0 14724025 -sensitising n 1 1 @ 1 0 00829170 -sensitive n 1 1 @ 1 0 10306279 -sensitive_fern n 1 2 @ #m 1 0 13198914 -sensitive_pea n 1 2 @ #m 1 0 12494358 -sensitive_plant n 2 2 @ #m 2 0 11755319 11755110 -sensitiveness n 4 6 ! @ ~ = + ; 4 0 07512465 05652926 05019661 04842993 -sensitivity n 5 6 ! @ ~ = + ; 5 3 05652926 05019661 07512465 14531772 04842993 -sensitization n 3 4 @ ~ + ; 3 0 14531983 13554343 00829170 -sensitizer n 1 3 @ + ; 1 0 14724025 -sensitizing n 1 1 @ 1 0 00829170 -sensitometer n 1 1 @ 1 0 04172607 -sensor n 1 3 @ ~ + 1 1 03180969 -sensorimotor_area n 1 1 @ 1 0 05489998 -sensorimotor_region n 1 1 @ 1 0 05489998 -sensorineural_hearing_loss n 1 1 @ 1 0 14551565 -sensorium n 1 1 @ 1 0 05489810 -sensory_activity n 1 2 @ ~ 1 0 00876737 -sensory_aphasia n 1 1 @ 1 0 14099172 -sensory_deprivation n 1 1 @ 1 0 00424034 -sensory_epilepsy n 1 1 @ 1 0 14090416 -sensory_faculty n 1 2 @ ~ 1 0 05651971 -sensory_fiber n 1 2 @ #p 1 0 05475397 -sensory_hair n 1 1 @ 1 0 01901828 -sensory_nerve n 1 3 @ ~ %p 1 0 05475134 -sensory_neuron n 1 2 @ #p 1 0 05466892 -sensory_receptor n 1 4 @ ~ #p %p 1 0 05299178 -sensory_system n 2 4 @ ~ #p %p 2 0 05652396 05510702 -sensualism n 2 3 @ + ; 2 0 07488875 05976471 -sensualist n 1 3 @ ~ + 1 0 09629246 -sensuality n 1 2 @ + 1 1 07488875 -sensualness n 1 2 @ + 1 0 07488875 -sensuousness n 1 2 @ + 1 0 07513413 -sent n 1 1 @ 1 0 13700448 -sente n 1 2 @ #p 1 0 13687756 -sentence n 3 5 @ ~ %p + ; 3 3 06285090 01189282 15224692 -sentence_stress n 1 1 @ 1 0 07086215 -sentence_structure n 1 2 @ ; 1 1 06176107 -sentential_function n 1 1 @ 1 0 06286230 -sentience n 3 5 ! @ ~ = + 3 0 05677952 05651971 05006020 -sentiency n 1 3 @ ~ + 1 0 05651971 -sentiment n 2 3 @ ~ + 2 2 07481951 05945642 -sentimentalisation n 1 2 @ + 1 0 01219306 -sentimentalism n 2 3 @ ~ + 2 0 06775812 04628080 -sentimentalist n 1 2 @ + 1 1 10579676 -sentimentality n 2 3 @ ~ + 2 1 04627506 07482128 -sentimentalization n 1 2 @ + 1 0 01219306 -sentinel n 1 1 @ 1 1 10271216 -sentry n 1 1 @ 1 1 10271216 -sentry_box n 1 1 @ 1 0 04172776 -sentry_duty n 1 1 @ 1 0 00730538 -sentry_go n 1 1 @ 1 0 00730538 -seoul n 1 2 @ #p 1 0 08955951 -sep n 1 3 @ #p %p 1 0 15212739 -sep_11 n 1 3 @ #p ; 1 0 15300051 -sepal n 1 2 @ #p 1 0 11690612 -separability n 1 2 @ + 1 0 14417993 -separate n 2 1 @ 2 0 06269785 04172904 -separateness n 3 3 @ = + 3 0 14414503 14001213 04742766 -separation n 9 6 ! @ ~ = + ; 9 5 14414294 07331400 05089947 01254253 01201021 08647121 07295391 01201429 00383606 -separation_energy n 1 1 @ 1 0 11429057 -separationism n 1 1 @ 1 0 01202665 -separationist n 1 3 @ ~ ; 1 0 10580030 -separatism n 3 3 @ ~ + 3 0 08380340 04943704 01202665 -separatist n 1 4 @ ~ + ; 1 0 10580030 -separator n 1 3 @ ~ + 1 0 02995998 -separatrix n 1 1 @ 1 0 06844903 -sephardi n 1 1 @ 1 0 10580304 -sephardic_jew n 1 1 @ 1 0 10580304 -sepia n 3 4 @ ~ #m %m 3 1 04973386 15021927 01972411 -sepiidae n 1 3 @ #m %m 1 0 01972283 -sepiolite n 1 2 @ #s 1 0 14681445 -sepoy_mutiny n 1 2 @ ; 1 0 01281154 -seppuku n 1 2 @ ; 1 0 00223362 -sepsis n 1 3 @ ~ + 1 0 14180848 -sept n 2 4 @ ~ #p %p 2 2 15212739 07970721 -sept._11 n 1 3 @ #p ; 1 0 15300051 -septal_defect n 1 2 @ ~ 1 0 14469154 -septation n 1 1 @ 1 1 00398585 -septectomy n 1 1 @ 1 0 00687472 -september n 1 3 @ #p %p 1 1 15212739 -september_11 n 1 3 @ #p ; 1 0 15300051 -september_17 n 1 2 @ #p 1 0 15190652 -september_29 n 1 2 @ #p 1 0 15186412 -september_elm n 1 2 @ #m 1 0 12408717 -september_equinox n 1 2 @ #p 1 0 15223750 -septenary n 1 1 @ 1 0 13744916 -septet n 5 1 @ 5 0 13744916 08247935 07988490 07987794 07042023 -septette n 4 1 @ 4 0 08247935 07988490 07987794 07042023 -septic_sore_throat n 1 1 @ 1 0 14184986 -septic_tank n 1 1 @ 1 0 04173046 -septicaemia n 1 2 @ ~ 1 0 14189837 -septicemia n 1 3 @ ~ + 1 0 14189837 -septicemic_plague n 1 1 @ 1 0 14139959 -septillion n 1 2 @ ; 1 0 13753585 -septobasidiaceae n 1 3 @ #m %m 1 0 13069348 -septobasidium n 1 3 @ #m %m 1 0 13069535 -septobasidium_pseudopedicellatum n 1 2 @ #m 1 0 13069773 -septuagenarian n 1 1 @ 1 0 10580437 -septuagesima n 1 1 @ 1 0 15192272 -septuagesima_sunday n 1 1 @ 1 0 15192272 -septuagint n 1 1 @ 1 0 06448397 -septum n 2 4 @ ~ + ; 2 1 05222940 11683443 -sepulcher n 1 2 @ ~ 1 0 02921884 -sepulchre n 1 3 @ ~ + 1 0 02921884 -sepulture n 2 2 @ ~ 2 0 07451687 02921884 -sequel n 2 1 @ 2 0 07295507 06399503 -sequela n 1 1 @ 1 0 14550614 -sequella n 1 1 @ 1 0 07294699 -sequenator n 1 2 @ ; 1 0 04173511 -sequence n 5 4 @ ~ #p + 5 4 08459252 05044822 04173172 01010458 07342383 -sequencer n 2 3 @ + ; 2 0 04173511 04173344 -sequential_operation n 1 1 @ 1 0 13554800 -sequestration n 4 3 @ + ; 4 1 01202184 13554586 06555570 00087218 -sequin n 1 1 @ 1 0 04173698 -sequoia n 1 4 @ ~ #m %s 1 0 11640645 -sequoia_gigantea n 1 2 @ #m 1 0 11641494 -sequoia_national_park n 1 2 @ #p 1 0 08608986 -sequoia_sempervirens n 1 2 @ #m 1 0 11641034 -sequoia_wellingtonia n 1 2 @ #m 1 0 11641494 -sequoiadendron n 1 3 @ #m %m 1 0 11641275 -sequoiadendron_giganteum n 1 2 @ #m 1 0 11641494 -sequoya n 1 1 @ 1 0 11293157 -sequoyah n 1 1 @ 1 0 11293157 -seraglio n 1 1 @ 1 0 03494105 -serail n 1 1 @ 1 0 03494105 -serape n 1 1 @ 1 0 04173907 -seraph n 1 2 @ + 1 0 09539872 -serax n 1 2 @ ; 1 0 03867675 -serb n 1 2 @ #m 1 0 09751076 -serbia n 1 5 @ #p %m %p + 1 0 08816969 -serbia_and_montenegro n 1 3 @ %m %p 1 0 08816236 -serbian n 1 2 @ #m 1 0 09751076 -serbo-croat n 1 1 @ 1 0 06945095 -serbo-croatian n 1 1 @ 1 0 06945095 -serdica n 1 2 @ #p 1 0 08714458 -serenade n 2 3 @ ~ + 2 1 07042586 07053732 -serendipity n 1 2 @ + 1 0 11463895 -sereness n 1 2 @ + 1 0 14537472 -serengeti n 1 3 @ #p %p 1 0 09036098 -serengeti_national_park n 1 2 @ #p 1 0 09036295 -serengeti_plain n 1 3 @ #p %p 1 0 09036098 -serenity n 2 2 @ ~ 2 2 04904352 07515790 -serenoa n 1 3 @ #m %m 1 0 12597333 -serenoa_repens n 1 2 @ #m 1 0 12597466 -serer n 1 1 @ 1 0 06996755 -serf n 1 4 @ ~ + ; 1 0 10580535 -serfdom n 1 2 @ + 1 0 13998263 -serfhood n 1 2 @ + 1 0 13998263 -serge n 1 1 @ 1 1 04174026 -serge_koussevitzky n 1 1 @ 1 0 11109970 -sergeant n 3 2 @ ~ 3 2 10580772 10449521 10581890 -sergeant-at-law n 1 1 @ 1 0 10581890 -sergeant_at_arms n 1 2 @ ; 1 0 10581094 -sergeant_first_class n 1 2 @ ~ 1 0 10093475 -sergeant_fish n 1 2 @ #m 1 0 02574271 -sergeant_major n 2 2 @ #m 2 0 10581278 02607470 -sergei_aleksandrovich_koussevitzky n 1 1 @ 1 0 11109970 -sergei_diaghilev n 1 1 @ 1 0 10933449 -sergei_eisenstein n 1 1 @ 1 0 10955483 -sergei_mikhailovich_eisenstein n 1 1 @ 1 0 10955483 -sergei_pavlovich_diaghilev n 1 1 @ 1 0 10933449 -sergei_rachmaninoff n 1 1 @ 1 0 11251531 -sergei_rachmaninov n 1 1 @ 1 0 11251531 -sergei_sergeyevich_prokofiev n 1 1 @ 1 0 11247002 -sergei_vasilievich_rachmaninoff n 1 1 @ 1 0 11251531 -sergei_vasilievich_rachmaninov n 1 1 @ 1 0 11251531 -serger n 1 1 @ 1 0 04174101 -serial n 2 5 @ ~ %m %p + 2 0 06621447 06593803 -serial_killer n 1 2 @ ~ 1 0 10581464 -serial_monogamy n 1 1 @ 1 0 13966340 -serial_murderer n 1 2 @ ~ 1 0 10581464 -serial_music n 1 2 @ ~ 1 0 07057196 -serial_operation n 1 2 ! @ 1 0 13554800 -serial_port n 1 1 @ 1 0 04174234 -serial_printer n 1 2 @ ~ 1 0 03007591 -serial_processing n 1 1 @ 1 0 13554984 -serial_publication n 1 4 @ ~ %m %p 1 0 06593803 -serialisation n 1 2 @ + 1 0 01102862 -serialism n 1 2 @ ~ 1 1 07057196 -serialization n 1 2 @ + 1 0 01102862 -sericea_lespedeza n 1 2 @ #m 1 0 12543826 -sericocarpus n 1 3 @ #m %m 1 0 12013323 -sericterium n 1 2 @ #p 1 0 02468178 -serictery n 1 2 @ #p 1 0 02468178 -sericulture n 2 2 @ + 2 0 13555101 00923303 -sericulturist n 1 2 @ + 1 0 10581772 -seriema n 2 2 @ #m 2 0 02014524 02014237 -series n 7 6 @ ~ %m %p + ; 7 4 08457976 06621447 06593803 07465448 13791910 08458504 05862721 -series_circuit n 1 1 @ 1 0 04174394 -serif n 1 2 @ ; 1 0 06828061 -serigraph n 1 1 @ 1 0 04219718 -serigraphy n 1 1 @ 1 0 00939231 -serin n 1 2 @ #m 1 0 01533651 -serine n 1 1 @ 1 0 15022035 -serinus n 1 3 @ #m %m 1 0 01533169 -serinus_canaria n 1 1 @ 1 0 01533481 -seriocomedy n 1 1 @ 1 0 07016797 -seriola n 1 3 @ #m %m 1 0 02578604 -seriola_dorsalis n 1 2 @ #m 1 0 02578928 -seriola_grandis n 1 1 @ 1 0 02579303 -seriola_zonata n 1 2 @ #m 1 0 02579091 -serious-mindedness n 1 4 @ ~ = + 1 0 04646548 -serious_music n 1 2 @ ~ 1 1 07025900 -seriousness n 3 5 ! @ ~ = + 3 2 07512315 05037197 04646548 -seriph n 1 2 @ ; 1 0 06828061 -seriphidium n 1 3 @ #m %m 1 0 12013811 -seriphidium_canum n 1 2 @ #m 1 0 12014085 -seriphidium_maritimum n 1 2 @ #m 1 0 12014355 -seriphidium_tridentatum n 1 2 @ #m 1 0 12014524 -seriphus n 1 3 @ #m %m 1 0 02598747 -seriphus_politus n 1 2 @ #m 1 0 02598878 -serjeant n 1 1 @ 1 0 10581890 -serjeant-at-arms n 1 2 @ ; 1 0 10581094 -serjeant-at-law n 1 1 @ 1 0 10581890 -serkin n 1 1 @ 1 0 11293334 -sermon n 2 4 @ ~ + ; 2 1 07243837 06712325 -sermon_on_the_mount n 1 2 @ %p 1 0 07244433 -sermoniser n 1 3 @ ~ + 1 0 10464178 -sermonizer n 1 3 @ ~ + 1 0 10464178 -serologist n 1 2 @ + 1 0 10582032 -serology n 1 2 @ + 1 0 06063072 -serosa n 1 2 @ ~ 1 0 05605944 -serotine n 1 1 @ 1 0 02147328 -serotonin n 1 1 @ 1 0 14808273 -serous_membrane n 1 2 @ ~ 1 0 05605944 -serow n 1 2 @ #m 1 0 02419056 -serpasil n 1 3 @ %s ; 1 0 04078236 -serpens n 1 1 @ 1 0 09430259 -serpent n 3 3 @ ~ #m 3 1 01726692 04174596 04174500 -serpent-worship n 1 1 @ 1 0 01046792 -serpent_fern n 1 2 @ #m 1 0 13177048 -serpent_star n 1 2 @ #m 1 0 02317781 -serpentes n 1 3 @ #m %m 1 0 01726390 -serra n 1 1 @ 1 0 11293470 -serranid n 1 3 @ ~ #m 1 0 02566109 -serranid_fish n 1 3 @ ~ #m 1 0 02566109 -serranidae n 1 3 @ #m %m 1 0 02565728 -serranus n 1 3 @ #m %m 1 0 02568636 -serranus_subligarius n 1 2 @ #m 1 0 02568807 -serrasalmus n 1 3 @ #m %m 1 0 02584325 -serrate_leaf n 1 1 @ 1 0 13160695 -serrated_wrack n 1 2 @ #m 1 0 01405107 -serratia n 1 3 @ #m %m 1 0 01369633 -serratia_marcescens n 1 2 @ #m 1 0 01369819 -serration n 3 3 @ ~ + 3 0 14568621 08431600 04174705 -serratula n 1 3 @ #m %m 1 0 12014739 -serratula_tinctoria n 1 2 @ #m 1 0 12014923 -serratus n 1 3 @ ~ #p 1 1 05550330 -serratus_anterior n 1 1 @ 1 0 05550494 -serratus_magnus n 1 1 @ 1 0 05550494 -serratus_muscles n 1 3 @ ~ #p 1 0 05550330 -serratus_posterior n 1 2 @ ~ 1 0 05550688 -serratus_posterior_inferior n 1 1 @ 1 0 05550908 -serratus_posterior_superior n 1 1 @ 1 0 05551142 -sertoli's_cell n 1 1 @ 1 0 05459590 -sertoli_cell n 1 1 @ 1 0 05459590 -sertraline n 1 1 @ 1 0 04174853 -sertularia n 1 3 @ #m %m 1 0 01913533 -sertularian n 1 2 @ #m 1 0 01913691 -serum n 1 5 @ ~ #s %s + 1 1 05403149 -serum_albumin n 1 2 @ #s 1 0 14731799 -serum_disease n 1 1 @ 1 0 14532458 -serum_globulin n 1 3 @ ~ #s 1 0 14732116 -serum_hepatitis n 1 1 @ 1 0 14130942 -serum_sickness n 1 1 @ 1 0 14532458 -serval n 1 2 @ #m 1 0 02126139 -servant n 2 3 @ ~ + 2 1 10582154 13952171 -servant's_entrance n 1 1 @ 1 0 04175669 -servant_girl n 1 1 @ 1 0 10582507 -serve n 1 4 @ ~ + ; 1 0 00568430 -server n 4 5 @ ~ #p + ; 4 0 10763383 10582604 04175147 04175039 -service n 15 7 ! @ ~ %m %p + ; 15 6 00577525 01209576 01032040 08186047 00584891 08198137 11293636 05149832 04175380 00853649 00579564 00568430 00318391 00268112 00098625 -service_abroad n 1 1 @ 1 0 00732369 -service_agency n 1 1 @ 1 0 08355506 -service_area n 1 1 @ 1 0 08648781 -service_book n 1 2 @ ~ 1 0 06457045 -service_break n 1 2 @ #p 1 0 07475242 -service_bureau n 1 1 @ 1 0 08355506 -service_call n 1 1 @ 1 0 01231296 -service_cap n 1 2 @ %p 1 0 03610682 -service_ceiling n 1 1 @ 1 0 05132962 -service_charge n 1 2 @ ~ 1 0 13325847 -service_club n 2 2 @ ~ 2 0 08235828 04175574 -service_contract n 1 1 @ 1 0 06524454 -service_cutback n 1 1 @ 1 0 00353903 -service_department n 2 1 @ 2 0 08119698 03416640 -service_door n 1 1 @ 1 0 04175669 -service_elevator n 1 1 @ 1 0 03394149 -service_entrance n 1 1 @ 1 1 04175669 -service_fee n 1 2 @ ~ 1 0 13325847 -service_firm n 1 1 @ 1 0 08355506 -service_industry n 1 2 @ ~ 1 0 08073700 -service_line n 1 1 @ 1 0 08650919 -service_man n 1 2 @ ~ 1 0 10521100 -service_of_process n 1 1 @ 1 0 00318391 -service_program n 1 4 @ ~ %p ; 1 0 06581410 -service_road n 1 1 @ 1 0 03398775 -service_routine n 1 3 @ ~ #p 1 0 06584702 -service_staff n 1 1 @ 1 0 08352848 -service_station n 1 2 @ ~ 1 0 04175859 -service_stripe n 1 1 @ 1 0 06884954 -service_tree n 2 4 @ ~ #m %p 2 0 12658846 12623524 -serviceability n 1 2 @ + 1 0 05150129 -serviceableness n 1 2 @ + 1 0 05150129 -serviceberry n 2 5 @ ~ #m #p %p 2 0 12623524 07745661 -serviceman n 1 5 ! @ ~ #m ; 1 0 10582746 -services n 1 2 @ ; 1 1 00585174 -servicing n 1 2 @ + 1 0 00853649 -serviette n 1 2 @ ~ 1 1 03807537 -servility n 1 3 @ ~ + 1 0 04906712 -serving n 2 5 @ ~ #p %p + 2 0 07578363 00318391 -serving_cart n 1 2 @ ~ 1 0 04176068 -serving_dish n 1 2 @ ~ 1 0 04176190 -serving_girl n 1 1 @ 1 0 10582507 -servitor n 1 2 @ + 1 0 10583250 -servitude n 1 2 @ ~ 1 0 13998014 -servo n 1 2 @ + 1 0 04176295 -servomechanism n 1 1 @ 1 0 04176295 -servosystem n 1 1 @ 1 0 04176295 -serzone n 1 2 @ ; 1 0 03817062 -sesame n 1 3 @ #m %p 1 0 12874783 -sesame_family n 1 3 @ #m %m 1 0 12874429 -sesame_oil n 1 2 @ #s 1 0 07675156 -sesame_seed n 1 3 @ #p %s 1 0 07827410 -sesamoid n 1 2 @ ~ 1 0 05280512 -sesamoid_bone n 1 2 @ ~ 1 0 05280512 -sesamum n 1 3 @ #m %m 1 0 12874642 -sesamum_indicum n 1 3 @ #m %p 1 0 12874783 -sesbania n 1 3 @ ~ #m 1 0 12569426 -sesbania_exaltata n 1 1 @ 1 0 12569616 -sesbania_grandiflora n 1 2 @ #m 1 0 12569851 -seseli n 1 3 @ #m %m 1 0 12944238 -sesotho n 1 1 @ 1 0 06995526 -sesquicentennial n 1 1 @ 1 0 15251489 -sesquipedalia n 1 1 @ 1 0 06305474 -sesquipedalian n 1 2 @ + 1 0 06305474 -sesquipedality n 1 2 @ + 1 0 07087940 -sess n 1 1 @ 1 0 03990834 -sessile_polyp n 1 1 @ 1 0 14234867 -sessile_trillium n 1 1 @ 1 0 12469157 -session n 4 4 @ ~ #p %p 4 3 07145508 15225249 01232091 08417920 -session_cookie n 1 1 @ 1 0 06387727 -sessions n 1 1 @ 1 0 11293805 -sestet n 5 1 @ 5 0 13744722 08247816 07988369 07041902 06383016 -set n 13 7 @ ~ #p %m %p + ; 13 7 07996689 07999699 00625699 04297476 08240169 06199702 01052853 15256417 13491060 09513569 07363545 05674584 04176528 -set-back n 1 1 @ 1 0 04176747 -set-to n 1 1 @ 1 0 01172173 -set_chisel n 1 1 @ 1 0 03067212 -set_decoration n 1 2 @ #p 1 1 04176889 -set_gun n 1 1 @ 1 0 04177041 -set_phrase n 1 3 @ ~ - 1 0 07154330 -set_piece n 1 1 @ 1 0 04177202 -set_point n 1 2 @ #p 1 0 13610540 -set_shot n 1 1 @ 1 0 00111962 -set_square n 1 1 @ 1 0 04177654 -set_theory n 1 2 @ ; 1 0 06016121 -seta n 2 3 @ ~ + 2 0 11534360 01902022 -setaria n 1 3 @ #m %m 1 0 12134300 -setaria_glauca n 1 1 @ 1 0 12134836 -setaria_italica n 1 3 @ ~ #m 1 0 12135270 -setaria_italica_rubrofructa n 1 1 @ 1 0 12135576 -setaria_italica_stramineofructa n 1 1 @ 1 0 12135729 -setaria_viridis n 1 1 @ 1 0 12135049 -setback n 1 3 @ ~ + 1 1 07475870 -sete_quedas n 1 2 @ #p 1 0 09430416 -seth n 2 2 @ ; 2 0 09587409 09513569 -seth_thomas n 1 1 @ 1 0 11339534 -setline n 1 1 @ 1 0 04475900 -setoff n 1 1 @ 1 0 04176747 -seton n 1 1 @ 1 0 11293972 -setophaga n 1 2 @ #m 1 0 01568019 -setophaga_ruticilla n 1 1 @ 1 0 01568294 -setscrew n 2 1 @ 2 0 04177545 04177329 -setswana n 1 1 @ 1 0 06995664 -sett n 1 1 @ 1 0 03059528 -settee n 2 1 @ 2 0 04177820 04177755 -setter n 2 2 @ ~ 2 0 09949946 02100399 -setterwort n 1 1 @ 1 0 11734093 -setting n 7 4 @ ~ %p + 7 3 08568256 14513259 03773268 14512817 08623927 03953743 03792526 -setting_hen n 1 1 @ 1 0 01792955 -settle n 1 2 @ + 1 0 04177820 -settlement n 7 4 @ ~ %m + 7 5 08374049 08226699 07177924 01252280 05789089 08672562 00228535 -settlement_house n 1 1 @ 1 0 04177931 -settler n 3 4 @ ~ + ; 3 1 10583387 10583916 10583790 -settling n 1 2 @ + 1 0 07362218 -settlings n 1 4 @ ~ + ; 1 0 09269972 -settlor n 1 2 @ ; 1 0 10584021 -setubal n 1 2 @ #p 1 0 08986526 -setup n 3 4 @ ~ + ; 3 2 02727825 04931267 00751398 -seurat n 1 1 @ 1 0 11294202 -sevastopol n 1 2 @ #p 1 0 09017168 -seven n 2 2 @ + 2 1 13744916 04178062 -seven-spot n 1 1 @ 1 0 04178062 -seven-up n 1 1 @ 1 0 00498700 -seven_hills_of_rome n 1 3 @ #p %p 1 0 08797254 -seven_iron n 1 1 @ 1 0 03724623 -seven_seas n 1 1 @ 1 0 09430615 -seven_wonders_of_the_ancient_world n 1 3 @ %m ; 1 0 04178329 -seven_wonders_of_the_world n 1 3 @ %m ; 1 0 04178329 -seven_years'_war n 1 2 @ %p 1 0 01308438 -sevener n 1 1 @ 1 0 13744916 -sevens n 1 1 @ 1 0 00492497 -sevensome n 1 1 @ 1 0 07987794 -seventeen n 1 2 @ + 1 0 13747725 -seventeen-year_locust n 1 2 @ #m 1 0 02257284 -seventeenth n 1 2 @ + 1 0 13848565 -seventh n 3 2 @ + 3 0 13847498 13738043 06860049 -seventh-day_adventism n 1 1 @ 1 0 06227121 -seventh_avenue n 1 2 @ #p 1 0 09121101 -seventh_chord n 1 1 @ 1 0 06870349 -seventh_cranial_nerve n 1 2 @ #p 1 0 05479314 -seventh_crusade n 1 1 @ 1 0 00970331 -seventh_heaven n 1 2 @ ~ 1 0 13987905 -seventies n 2 2 @ #p 2 0 15150618 15150493 -seventieth n 1 2 @ + 1 0 13849394 -seventy n 1 2 @ + 1 0 13749894 -seventy-eight n 2 1 @ 2 0 13750033 04178190 -severable_contract n 1 1 @ 1 0 06524552 -severalty n 2 1 @ 2 1 14414503 13240971 -severance n 2 3 @ ~ + 2 0 07313814 00359492 -severance_agreement n 1 2 @ ~ 1 0 07178698 -severe_acute_respiratory_syndrome n 1 1 @ 1 0 14179946 -severe_combined_immunodeficiency n 1 2 @ ~ 1 0 14128812 -severe_combined_immunodeficiency_disease n 1 2 @ ~ 1 0 14128812 -severeness n 4 3 @ ~ + 4 0 05036715 04710127 04697666 04639732 -severing n 1 2 @ + 1 1 00359492 -severity n 4 3 @ ~ + 4 1 05036715 04710127 04697666 04639732 -severn n 2 2 @ #p 2 0 09430990 09430771 -severn_river n 2 2 @ #p 2 0 09430990 09430771 -severo_ochoa n 1 1 @ 1 0 11211696 -sevilla n 1 2 @ #p 1 0 09027089 -seville n 1 2 @ #p 1 0 09027089 -seville_orange n 2 4 @ #m #p %p 2 0 12708654 07748753 -sewage n 1 2 @ %s 1 1 14856893 -sewage_disposal n 1 1 @ 1 1 00091893 -sewage_disposal_plant n 1 1 @ 1 0 04178668 -sewage_farm n 1 1 @ 1 0 04178784 -sewage_system n 1 3 @ #p %p 1 1 04178897 -sewage_works n 1 3 @ #p %p 1 0 04178897 -seward n 1 1 @ 1 0 11294349 -seward's_folly n 1 1 @ 1 0 01111569 -seward_peninsula n 1 2 @ #p 1 0 09056837 -sewellel n 1 2 @ #m 1 0 02363996 -sewer n 3 4 @ ~ #p + 3 2 04179126 10584318 14475992 -sewer_gas n 1 1 @ 1 0 15038426 -sewer_line n 1 2 @ #p 1 1 04179271 -sewer_main n 1 2 @ #p 1 0 04179271 -sewer_rat n 1 1 @ 1 0 02333819 -sewer_system n 1 3 @ #p %p 1 0 04178897 -sewer_water n 1 2 @ #s 1 0 14857021 -sewerage n 2 3 @ #p %s 2 0 14856893 04179126 -sewing n 2 4 @ ~ + - 2 1 00715674 04179385 -sewing-machine_operator n 1 1 @ 1 0 10584501 -sewing-machine_stitch n 1 2 @ ~ 1 0 03702067 -sewing_basket n 1 1 @ 1 0 04179712 -sewing_kit n 1 1 @ 1 0 04179824 -sewing_machine n 1 2 @ ~ 1 0 04179913 -sewing_needle n 2 2 @ ~ 2 0 04180063 02268443 -sewing_room n 1 1 @ 1 0 04180229 -sewing_stitch n 1 2 @ ~ 1 0 04180314 -sex n 4 4 @ ~ = + 4 2 00844254 07999291 07487695 05006898 -sex-change_operation n 1 1 @ 1 0 00691648 -sex-linked_disorder n 1 2 @ ~ 1 0 14565696 -sex_act n 1 3 @ ~ %p 1 1 00845523 -sex_activity n 1 3 @ ~ = 1 1 00844254 -sex_appeal n 1 2 @ ~ 1 0 04686935 -sex_bomb n 1 1 @ 1 0 10584729 -sex_cell n 1 3 @ ~ #p 1 0 05456732 -sex_change n 1 1 @ 1 0 07425427 -sex_character n 1 2 @ ~ 1 0 05007280 -sex_characteristic n 1 2 @ ~ 1 0 05007280 -sex_chromatin n 1 1 @ 1 0 05435855 -sex_chromosome n 1 3 @ ~ ; 1 0 05443651 -sex_crime n 1 3 @ ~ ; 1 0 00774107 -sex_drive n 1 1 @ 1 0 14041106 -sex_gland n 1 2 @ ~ 1 0 05524430 -sex_hormone n 1 2 @ ~ 1 0 14745635 -sex_kitten n 1 1 @ 1 0 10584729 -sex_linkage n 1 1 @ 1 0 11506549 -sex_manual n 1 1 @ 1 0 06422488 -sex_object n 1 1 @ 1 0 10584853 -sex_offender n 1 1 @ 1 0 10584973 -sex_offense n 1 3 @ ~ ; 1 0 00774107 -sex_organ n 1 3 @ ~ #p 1 0 05513302 -sex_segregation n 1 1 @ 1 0 08379882 -sex_symbol n 1 1 @ 1 0 10585077 -sexadecimal_notation n 1 1 @ 1 0 06811283 -sexadecimal_number_system n 1 1 @ 1 0 06811419 -sexagenarian n 1 2 @ + 1 0 10584617 -sexcapade n 1 1 @ 1 0 00510383 -sexiness n 1 3 @ ~ + 1 0 07489059 -sexism n 1 3 @ ~ + 1 0 01155893 -sexist n 1 2 @ + 1 0 09912431 -sexlessness n 1 2 @ + 1 0 05008085 -sexploitation n 1 1 @ 1 0 00419464 -sexpot n 1 1 @ 1 0 10584729 -sext n 1 1 @ 1 0 15229974 -sextant n 2 4 @ ~ #p %p 2 0 13612550 04180888 -sextet n 5 1 @ 5 1 07041902 13744722 08247816 07988369 07987689 -sextette n 4 1 @ 4 0 08247816 07988369 07987689 07041902 -sextillion n 1 2 @ ; 1 0 13753430 -sexton n 2 1 @ 2 0 11294582 10585217 -sextuplet n 1 1 @ 1 0 13744722 -sexual_abstention n 1 2 @ ; 1 0 01069125 -sexual_abuse n 1 3 @ ~ ; 1 0 00774107 -sexual_activity n 1 3 @ ~ = 1 1 00844254 -sexual_arousal n 1 2 @ ~ 1 1 14037619 -sexual_assault n 1 3 @ ~ ; 1 0 00774107 -sexual_attraction n 1 1 @ 1 0 04689834 -sexual_characteristic n 1 2 @ ~ 1 0 05007280 -sexual_climax n 1 2 @ ~ 1 0 00062133 -sexual_congress n 1 3 @ ~ %p 1 0 00845523 -sexual_conquest n 1 2 @ ~ 1 0 00160688 -sexual_desire n 1 2 @ ~ 1 0 07487955 -sexual_discrimination n 1 1 @ 1 0 01156262 -sexual_harassment n 1 1 @ 1 0 00425781 -sexual_immorality n 1 1 @ 1 0 00746375 -sexual_intercourse n 1 3 @ ~ %p 1 0 00845523 -sexual_inversion n 1 1 @ 1 0 00857275 -sexual_love n 2 1 @ 2 0 07488340 00846515 -sexual_morality n 1 3 @ ~ = 1 0 04849759 -sexual_perversion n 1 2 @ ~ 1 0 00854717 -sexual_pleasure n 1 2 @ ~ 1 0 07493527 -sexual_practice n 1 3 @ ~ = 1 0 00844254 -sexual_relation n 1 3 @ ~ %p 1 1 00845523 -sexual_relationship n 1 2 @ ~ 1 1 13931765 -sexual_reproduction n 1 3 @ ~ %m 1 0 13555240 -sexual_union n 1 2 @ ~ 1 1 00847340 -sexual_urge n 1 1 @ 1 0 07487695 -sexuality n 1 4 @ ~ = + 1 0 05006898 -sexually_transmitted_disease n 1 2 @ ~ 1 0 14133159 -seychelles n 2 4 @ #p %m %p 2 0 08996483 08996284 -seychelles_islands n 1 3 @ #p %p 1 0 08996284 -seychelles_monetary_unit n 1 2 @ ~ 1 0 13705037 -seychelles_rupee n 1 2 @ %p 1 0 13705153 -seychellois n 1 3 @ #m + 1 0 09730951 -seyhan n 2 2 @ #p 2 0 09431133 09040475 -seyhan_river n 1 2 @ #p 1 0 09431133 -seymour n 1 1 @ 1 0 11294680 -sezession n 1 1 @ 1 0 08470034 -sfax n 1 2 @ #p 1 0 09038272 -sforzando n 2 2 @ ; 2 1 06869742 06869428 -sg n 1 1 @ 1 0 14654058 -sga_infant n 1 1 @ 1 0 10613198 -sgml n 1 2 @ ; 1 0 06788007 -sgraffito n 1 1 @ 1 0 04181083 -sha'ban n 1 2 @ #p 1 0 15218149 -shaaban n 1 2 @ #p 1 0 15218149 -shabbiness n 2 3 @ ~ + 2 0 04816761 00744616 -shabu n 1 1 @ 1 0 03754295 -shabuoth n 1 2 @ ; 1 0 15197042 -shack n 1 3 @ ~ + 1 1 03547054 -shackle n 2 4 @ ~ #p + 2 1 04181228 04181561 -shad n 2 4 @ ~ #m #p 2 0 07798357 02530421 -shad-flower n 1 1 @ 1 0 11886157 -shad_roe n 1 2 @ #p 1 0 07799874 -shadberry n 1 2 @ #p 1 0 07745661 -shadblow n 1 4 @ ~ #m %p 1 0 12623524 -shadbush n 1 4 @ ~ #m %p 1 0 12623524 -shaddock n 2 4 @ #m #p %p 2 0 12709103 07750146 -shade n 8 3 @ ~ + 8 4 13984613 04959230 04181718 06606191 13951794 13763185 05898171 04181983 -shade_tree n 1 1 @ 1 0 13108545 -shades n 1 3 @ %p ; 1 0 04356056 -shades_of n 1 1 @ 1 0 05814019 -shadflower n 1 1 @ 1 0 11886157 -shadfly n 1 2 @ #m 1 0 02262449 -shadiness n 2 3 @ ~ + 2 0 13984613 04811767 -shading n 2 3 @ ~ + 2 2 04682018 01003936 -shadow n 9 3 @ ~ + 9 6 13984944 08646306 05897553 07522418 06646628 05155349 13959642 10689104 10585359 -shadow_box n 1 1 @ 1 0 04182152 -shadow_cabinet n 1 2 @ ; 1 0 08382297 -shadow_play n 1 1 @ 1 0 07019500 -shadow_show n 1 1 @ 1 0 07019500 -shadowboxing n 1 2 @ + 1 0 00898286 -shadower n 1 2 @ + 1 0 10689104 -shadowgraph n 1 2 @ ~ 1 0 04042358 -shadowiness n 1 3 @ ~ + 1 0 13984613 -shadowing n 1 2 @ + 1 0 00320486 -shaft n 12 6 @ ~ #p %p + ; 12 3 06821770 06767922 04182322 11428023 05592733 05526713 04270891 04182890 04182708 04182514 04111190 02468617 -shaft_louse n 1 2 @ #m 1 0 02185814 -shaft_of_light n 1 2 @ ~ 1 1 11428023 -shag n 5 4 @ #p + ; 5 0 14715356 09431283 04183076 00846021 00533404 -shag_rug n 1 3 @ ~ %p 1 0 04183217 -shagbark n 1 3 @ #m %p 1 0 12321873 -shagbark_hickory n 1 3 @ #m %p 1 0 12321873 -shagginess n 2 2 @ + 2 0 14499953 04949560 -shaggy_cap n 1 2 @ #m 1 0 13006171 -shaggy_dog_story n 1 1 @ 1 0 06779713 -shaggymane n 1 2 @ #m 1 0 13006171 -shaggymane_mushroom n 1 2 @ #m 1 0 13006171 -shah n 1 2 @ ~ 1 0 10585496 -shah_jahan n 1 1 @ 1 0 11294834 -shah_of_iran n 1 2 @ ~ 1 0 10585496 -shah_pahlavi n 1 1 @ 1 0 11220461 -shahadah n 1 1 @ 1 0 05914234 -shahaptian n 2 2 @ ~ 2 0 09668199 06925305 -shaheed n 1 2 @ ; 1 0 10585628 -shahn n 1 1 @ 1 0 11295033 -shaitan n 1 2 @ ; 1 0 09544746 -shake n 6 4 @ ~ + ; 6 0 15039445 07923297 06860177 06632097 00867983 00347652 -shake-up n 1 2 @ + 1 0 01137987 -shakedown n 3 2 @ ; 3 0 07369922 00993787 00784934 -shakeout n 1 1 @ 1 0 14494358 -shaker n 3 4 @ ~ #m + 3 0 10585976 10585773 04183329 -shakers n 1 2 @ %m 1 0 08150576 -shakespeare n 1 2 @ + 1 1 11295196 -shakespearean n 1 1 @ 1 0 10586166 -shakespearean_sonnet n 1 1 @ 1 0 06383107 -shakespearian n 1 1 @ 1 0 10586166 -shakeup n 1 2 @ + 1 0 01137987 -shakiness n 2 3 @ ~ + 2 0 14004572 04776021 -shaking n 2 3 @ ~ + 2 1 00347180 14004572 -shaking_palsy n 1 2 @ %p 1 0 14094350 -shako n 1 1 @ 1 0 02817516 -shakspere n 1 1 @ 1 0 11295196 -shakti n 1 1 @ 1 0 09528587 -shaktism n 2 4 @ #m %m + 2 0 08097222 06239076 -shaktist n 1 3 @ #m + 1 0 09685398 -shale n 1 2 @ ~ 1 0 15038520 -shale_oil n 1 1 @ 1 0 15038892 -shall-flower n 1 2 @ #m 1 0 12357485 -shallon n 1 2 @ #m 1 0 12236160 -shallot n 3 3 @ #p %p 3 0 12433429 12433178 07723177 -shallow n 1 2 @ + 1 0 09433134 -shallow_fording n 1 1 @ 1 0 00297863 -shallowness n 2 4 ! @ ~ + 2 1 05095111 05135725 -shallu n 1 1 @ 1 0 12138578 -shalom_asch n 1 1 @ 1 0 10825554 -shalwar n 1 1 @ 1 0 04132158 -sham n 2 3 @ ~ + 2 1 03318438 10201535 -shaman n 1 3 @ ~ + 1 0 10626194 -shamanism n 2 3 @ + ; 2 0 06245084 06244852 -shamash n 1 2 @ ; 1 0 09521763 -shamble n 1 2 @ + 1 0 00292712 -shambles n 2 1 @ 2 0 14497679 02666943 -shambling n 1 2 @ + 1 0 00292712 -shame n 3 3 @ ~ + 3 3 07506569 14440137 07305098 -shame_plant n 1 2 @ #m 1 0 11755319 -shamefacedness n 1 2 @ + 1 0 07507560 -shamefulness n 1 3 @ ~ + 1 0 04808281 -shamelessness n 1 2 @ + 1 0 04859636 -shamisen n 1 1 @ 1 0 04132603 -shammer n 2 3 @ ~ + 2 0 10286539 10201535 -shammy n 1 2 @ ~ 1 0 14761806 -shammy_leather n 1 2 @ ~ 1 0 14761806 -shampoo n 2 2 @ + 2 0 04183516 00257115 -shamrock n 3 1 @ 3 1 11753700 12703190 11752937 -shamrock_pea n 1 2 @ #m 1 0 12555859 -shamus n 1 2 @ ~ 1 0 10476671 -shan n 1 1 @ 1 0 06935223 -shandy n 1 1 @ 1 0 07912834 -shandygaff n 1 1 @ 1 0 07912834 -shang n 1 1 @ 1 0 08158314 -shang_dynasty n 1 1 @ 1 0 08158314 -shanghai n 1 2 @ #p 1 0 08728268 -shanghai_dialect n 1 1 @ 1 0 06930298 -shanghaier n 1 2 @ + 1 0 10586265 -shangri-la n 1 1 @ 1 0 08565506 -shank n 8 5 @ ~ #p %p + 8 0 07657068 05562756 04184095 04183957 04183819 04183663 02462828 00573945 -shank's_mare n 1 1 @ 1 0 05562015 -shank's_pony n 1 1 @ 1 0 05562015 -shankar n 1 1 @ 1 0 11295464 -shanks'_mare n 1 1 @ 1 0 05562015 -shanks'_pony n 1 1 @ 1 0 05562015 -shannon n 1 1 @ 1 0 11295619 -shanny n 1 2 @ #m 1 0 02613572 -shantung n 1 1 @ 1 1 04184316 -shanty n 2 2 @ ~ 2 1 03547054 07050042 -shantytown n 1 1 @ 1 0 08652036 -shape n 8 5 @ ~ #p = + 8 6 05064037 00027807 05217168 05941210 04677514 14546227 08174167 05930736 -shape-up n 1 1 @ 1 0 01218050 -shape_constancy n 1 1 @ 1 0 05709507 -shapelessness n 2 2 @ + 2 0 13909889 04691861 -shapeliness n 1 2 @ + 1 0 04686748 -shaper n 2 3 @ ~ + 2 0 10284064 04184435 -shaping n 2 3 @ ~ + 2 1 13555446 00925207 -shaping_machine n 1 2 @ ~ 1 0 04184435 -shaping_tool n 1 2 @ ~ 1 0 04184600 -shapley n 1 1 @ 1 0 11295828 -shard n 1 2 @ ~ 1 1 04184701 -share n 5 4 @ ~ #p + 5 4 13285176 13342135 01085098 00787465 03967788 -share-out n 1 2 @ ~ 1 0 01085793 -sharecrop_farmer n 1 1 @ 1 1 10586444 -sharecropper n 1 1 @ 1 0 10586444 -shareholder n 1 2 @ ~ 1 0 10657969 -shareholding n 1 1 @ 1 0 13247712 -shareowner n 1 2 @ ~ 1 0 10657969 -sharer n 1 3 @ ~ + 1 1 10401639 -shareware n 1 1 @ 1 0 06587596 -shari n 1 2 @ #p 1 0 09431409 -shari_river n 1 2 @ #p 1 0 09431409 -sharia n 1 3 @ ~ - 1 0 08455829 -sharia_law n 1 3 @ ~ - 1 0 08455829 -shariah n 1 3 @ ~ - 1 0 08455829 -shariah_law n 1 3 @ ~ - 1 0 08455829 -sharing n 4 3 @ ~ + 4 0 13843920 13843786 07134575 01085793 -shark n 3 3 @ ~ + 3 1 01482330 10586674 10586557 -shark-liver_oil n 1 1 @ 1 0 15038987 -shark_oil n 1 1 @ 1 0 15038987 -shark_repellent n 1 2 @ ~ 1 0 00175605 -sharkskin n 1 1 @ 1 0 04184880 -sharksucker n 1 2 @ #m 1 0 02575325 -sharp n 2 3 @ ~ + 2 0 06866599 04184957 -sharp-sightedness n 2 3 @ ~ + 2 0 05655567 04664628 -sharp-tailed_grouse n 1 1 @ 1 0 01798168 -sharp_tongue n 1 1 @ 1 1 07082346 -sharpener n 1 3 @ ~ + 1 0 04185071 -sharper n 1 1 @ 1 0 09894909 -sharpie n 4 2 @ ~ 4 0 10040945 09894909 04185529 04185329 -sharpness n 7 5 ! @ ~ = + 7 1 05620468 05171978 04992834 04720226 04705324 04702688 04643099 -sharpshooter n 3 3 @ ~ + 3 0 10586793 10294953 04185656 -sharptail_mola n 1 1 @ 1 0 02656969 -sharpy n 2 2 @ ~ 2 0 10040945 09894909 -shasta n 3 2 @ #p 3 0 09668437 09431569 06921951 -shasta_daisy n 1 2 @ #m 1 0 11990313 -shasta_salamander n 1 1 @ 1 0 01638194 -shastan n 1 2 @ ~ 1 0 06921593 -shattering n 1 2 @ + 1 0 00376825 -shatterproof_glass n 1 1 @ 1 0 14882370 -shave n 1 3 @ ~ + 1 0 00254769 -shaver n 3 4 @ ~ %p + 3 0 10586903 09917593 04185804 -shavian n 1 1 @ 1 0 10586998 -shaving n 3 3 @ ~ + 3 2 00254769 09385137 00150762 -shaving-brush_tree n 1 2 @ #m 1 0 12192132 -shaving_brush n 1 1 @ 1 0 04185946 -shaving_cream n 1 1 @ 1 0 04186051 -shaving_foam n 1 1 @ 1 0 04186268 -shaving_soap n 1 1 @ 1 0 04186051 -shavous n 1 2 @ ; 1 0 15197042 -shavuot n 1 2 @ ; 1 0 15197042 -shavuoth n 1 2 @ ; 1 0 15197042 -shaw n 4 2 @ + 4 0 11296429 11296279 11296139 11295936 -shawl n 1 2 @ ~ 1 1 04186455 -shawm n 1 2 @ ~ 1 0 04186624 -shawn n 1 1 @ 1 0 11296602 -shawnee n 2 2 @ ~ 2 0 09668562 06912149 -shawnee_cake n 1 2 @ ; 1 0 07689217 -shawnee_salad n 1 1 @ 1 0 12834938 -shawny n 1 1 @ 1 0 12834938 -shawwal n 1 2 @ #p 1 0 15218551 -shay n 1 2 @ %p 1 0 03002555 -shaytan n 1 2 @ ; 1 0 09544746 -she-devil n 1 1 @ 1 0 10587536 -she-goat n 1 2 @ %p 1 0 02416964 -she-oak n 1 2 @ #m 1 0 12225222 -sheaf n 1 2 @ ~ 1 1 02919414 -shear n 2 3 @ + ; 2 1 11506738 04186709 -shearer n 3 2 @ + 3 0 11296775 10587227 10587089 -shearing n 1 3 @ ~ + 1 0 00360242 -shears n 1 4 @ ~ + ; 1 0 04186848 -shearwater n 1 3 @ ~ #m 1 0 02060411 -sheatfish n 1 2 @ #m 1 0 02518324 -sheath n 3 2 @ ~ 3 3 04187061 05238036 03062015 -sheath_knife n 1 1 @ 1 0 02976123 -sheath_pile n 1 1 @ 1 0 04189651 -sheathing n 1 2 @ + 1 0 04187233 -shebang n 1 1 @ 1 0 08436452 -shebat n 1 2 @ #p 1 0 15215270 -shebeen n 1 1 @ 1 0 07888378 -shed n 1 2 @ ~ 1 1 04187547 -shedder n 1 1 @ 1 0 10587378 -shedding n 2 3 @ ~ + 2 0 13555599 11445564 -sheen n 1 2 @ + 1 0 04954683 -sheeny n 1 2 @ ; 1 0 09682122 -sheep n 3 4 @ ~ #m %p 3 2 02411705 10588074 10587894 -sheep's_fescue n 1 2 @ #m 1 0 12121835 -sheep's_sorrel n 1 1 @ 1 0 12604460 -sheep-tick n 2 2 @ #m 2 0 02199170 01778217 -sheep_bell n 1 1 @ 1 0 04187751 -sheep_botfly n 1 2 @ #m 1 0 02194750 -sheep_dip n 1 1 @ 1 0 15039179 -sheep_dog n 1 2 @ ~ 1 0 02104523 -sheep_fescue n 1 2 @ #m 1 0 12121835 -sheep_frog n 1 2 @ #m 1 0 01653509 -sheep_gadfly n 1 2 @ #m 1 0 02194750 -sheep_ked n 1 2 @ #m 1 0 02199170 -sheep_laurel n 1 1 @ 1 0 12238073 -sheep_pen n 1 1 @ 1 0 03376159 -sheep_plant n 2 2 @ #m 2 0 12006306 11975658 -sheep_polypore n 1 2 @ #m 1 0 13050940 -sheep_rot n 1 1 @ 1 1 14265006 -sheep_sorrel n 1 1 @ 1 0 12604460 -sheep_tick n 2 2 @ #m 2 0 02199170 01778217 -sheepcote n 1 1 @ 1 0 03376159 -sheepdog n 1 2 @ ~ 1 0 02104523 -sheepfold n 1 1 @ 1 0 03376159 -sheepherder n 1 2 @ ~ 1 0 10587605 -sheepishness n 1 2 @ + 1 0 07507560 -sheepman n 2 2 @ ~ 2 1 10587806 10587605 -sheeprun n 1 2 @ ; 1 0 04188064 -sheepshank n 1 1 @ 1 0 04187885 -sheepshead n 1 2 @ #m 1 0 02592055 -sheepshead_porgy n 1 2 @ #m 1 0 02592734 -sheepshearing n 3 1 @ 3 0 15238371 00518555 00360404 -sheepskin n 3 2 @ ~ 3 1 14763508 14759003 06478582 -sheepskin_coat n 1 1 @ 1 0 04187970 -sheepwalk n 1 2 @ ; 1 0 04188064 -sheesha n 1 1 @ 1 0 03533014 -sheet n 8 6 @ ~ #p %p + ; 8 3 09432060 06255777 04188179 13861050 06267893 04188643 04188368 04127904 -sheet-metal_work n 1 2 @ #p 1 0 00618119 -sheet_anchor n 1 1 @ 1 0 04188985 -sheet_bend n 1 1 @ 1 0 04189092 -sheet_glass n 1 3 @ ~ %s 1 0 03961070 -sheet_iron n 1 1 @ 1 0 04189392 -sheet_lighting n 1 1 @ 1 0 07413452 -sheet_metal n 1 2 @ ~ 1 1 04189482 -sheet_music n 1 3 @ ~ ; 1 1 06816106 -sheet_of_paper n 1 2 @ ~ 1 1 06255777 -sheet_pile n 1 1 @ 1 0 04189651 -sheet_piling n 1 1 @ 1 0 04189651 -sheet_web n 1 1 @ 1 0 04189913 -sheeting n 1 2 @ + 1 0 04189282 -sheetrock n 1 2 @ ; 1 0 04189816 -sheffield n 1 2 @ #p 1 0 08880375 -shegetz n 1 2 @ ; 1 0 10588182 -sheik n 2 3 @ ~ + 2 0 10588357 09991026 -sheika n 1 1 @ 1 0 10588519 -sheikdom n 1 2 @ + 1 0 08558770 -sheikh n 1 1 @ 1 0 10588357 -sheikha n 1 1 @ 1 0 10588519 -sheikhdom n 1 1 @ 1 0 08558770 -shekel n 1 2 @ %p 1 0 13706310 -shekels n 1 1 @ 1 0 13385216 -shel_silverstein n 1 1 @ 1 0 11300465 -shelby_silverstein n 1 1 @ 1 0 11300465 -sheldrake n 2 3 @ ~ #m 2 0 01854415 01849466 -shelduck n 1 1 @ 1 0 01849676 -shelf n 2 4 @ ~ #p + 2 1 04190052 09337253 -shelf_bracket n 1 1 @ 1 0 04190376 -shelf_fungus n 1 1 @ 1 0 13050397 -shelf_ice n 1 1 @ 1 0 09432163 -shelf_life n 1 1 @ 1 0 15141894 -shelfful n 1 1 @ 1 0 13769428 -shell n 10 7 @ ~ #s #p %s %p + 10 3 04190464 14758536 01903756 11683556 09432430 09432283 04190997 04190747 03959701 01904182 -shell-flower n 1 2 @ #m 1 0 12881105 -shell_bean n 2 4 @ ~ #p %p 2 0 12557995 07728804 -shell_bean_plant n 1 3 @ ~ %p 1 0 12557995 -shell_collecting n 1 1 @ 1 0 01015689 -shell_corporation n 1 1 @ 1 0 08384201 -shell_entity n 1 1 @ 1 0 08384201 -shell_game n 1 1 @ 1 0 00780731 -shell_ginger n 1 2 @ #m 1 0 12357485 -shell_jacket n 1 1 @ 1 0 03751269 -shell_parakeet n 1 2 @ #m 1 0 01821869 -shell_plating n 1 1 @ 1 0 04191346 -shell_shock n 1 1 @ 1 0 14388596 -shell_stitch n 1 2 @ + 1 0 04191502 -shellac n 2 4 @ ~ %s + 2 0 14701628 04191150 -shellac_varnish n 1 3 @ ~ %s 1 0 04191150 -shellac_wax n 1 1 @ 1 0 15095639 -shellbark n 1 3 @ #m %p 1 0 12321873 -shellbark_hickory n 1 3 @ #m %p 1 0 12321873 -sheller n 1 2 @ + 1 0 10588601 -shelley n 2 1 @ 2 0 11297032 11296914 -shellfire n 1 1 @ 1 0 00124536 -shellfish n 2 5 @ ~ #m #p %p 2 0 07783210 01940736 -shellflower n 2 2 @ #m 2 0 12881105 12357485 -shelling n 1 2 @ + 1 0 00987863 -shelter n 5 3 @ ~ + 5 2 04191595 04191943 14539960 13313733 04192238 -shelter_deck n 1 3 @ ~ %p 1 0 04566862 -shelter_tent n 1 1 @ 1 0 04025508 -shelterbelt n 1 1 @ 1 0 04586072 -sheltered_workshop n 1 1 @ 1 1 04192361 -shelton_jackson_lee n 1 1 @ 1 0 11124647 -shelver n 1 2 @ + 1 0 10588724 -shem n 1 2 @ ; 1 0 10588860 -shema n 1 1 @ 1 0 07034035 -shemozzle n 1 2 @ ; 1 0 13976907 -shen-pao n 1 2 @ #m 1 0 09533910 -shenandoah_national_park n 1 2 @ #p 1 0 08609131 -shenandoah_river n 1 2 @ #p 1 0 09431744 -shenandoah_valley n 1 2 @ #p 1 0 09432549 -shenanigan n 2 2 @ ~ 2 2 00736375 00752954 -shenyang n 1 2 @ #p 1 0 08728462 -shepard n 2 1 @ 2 0 11297457 11297263 -shepherd n 2 3 @ ~ + 2 2 10588965 10587605 -shepherd's_clock n 1 2 @ #m 1 0 12027658 -shepherd's_crook n 1 1 @ 1 0 03134118 -shepherd's_pie n 1 1 @ 1 0 07877062 -shepherd's_pipe n 2 2 @ ~ 2 0 03800371 03355468 -shepherd's_pouch n 1 2 @ #m 1 0 11881189 -shepherd's_purse n 1 2 @ #m 1 0 11881189 -shepherd_dog n 1 2 @ ~ 1 0 02104523 -shepherdess n 1 1 @ 1 0 10589066 -sheraton n 1 1 @ 1 0 04192521 -sherbert n 1 1 @ 1 0 07615289 -sherbet n 1 1 @ 1 0 07615289 -sherd n 1 2 @ ~ 1 0 04184701 -sheridan n 1 1 @ 1 0 11297595 -sheriff n 1 1 @ 1 1 10589140 -sheriff's_sale n 1 1 @ 1 0 06528557 -sherlock n 1 2 @ ~ 1 0 10476671 -sherlock_holmes n 1 1 @ 1 1 09604451 -sherman n 4 2 @ #p 4 0 11297983 11297756 09431902 09146324 -sherpa n 1 3 @ ~ #m 1 0 09733028 -sherrington n 1 1 @ 1 0 11298240 -sherry n 1 2 @ ~ 1 1 07900958 -sherwood n 1 1 @ 1 0 11298403 -sherwood_anderson n 1 1 @ 1 0 10817935 -sherwood_forest n 1 2 @ ; 1 0 09432785 -shetland n 2 2 @ #p 2 0 08954057 02105855 -shetland_islands n 1 2 @ #p 1 0 08954057 -shetland_pony n 1 1 @ 1 0 02382635 -shetland_sheep_dog n 1 1 @ 1 0 02105855 -shetland_sheepdog n 1 1 @ 1 0 02105855 -shetland_wool n 1 1 @ 1 0 15039335 -shevat n 1 2 @ #p 1 0 15215270 -shevchenko n 1 1 @ 1 0 11298519 -shf n 1 2 @ #p 1 0 05057917 -shi'ite n 1 2 @ #m 1 0 09683306 -shi'ite_muslim n 1 2 @ #m 1 0 09683306 -shia n 1 3 @ #m %m 1 0 08096301 -shia_muslim n 1 2 @ #m 1 0 09683306 -shiah n 1 3 @ #m %m 1 0 08096301 -shiah_islam n 1 3 @ #m %m 1 0 08096301 -shiatsu n 1 2 @ ; 1 0 00710338 -shibah n 1 2 @ ; 1 0 15296489 -shibboleth n 2 2 @ ~ 2 2 07152259 07082444 -shield n 3 5 @ ~ #p %s + 3 2 04192858 04192698 01903756 -shield_fern n 1 3 @ ~ #m 1 0 13192625 -shield_of_david n 1 1 @ 1 0 06882333 -shielder n 1 3 @ ~ + 1 0 09614684 -shielding n 3 2 @ + 3 2 00818362 04193035 04193179 -shift n 10 6 @ ~ #p %p + ; 10 5 07444668 07359599 15291801 00196084 00331655 09278537 08218393 04193377 03013580 03013438 -shift_key n 1 2 @ #p 1 0 04193377 -shift_register n 1 2 @ ; 1 0 04193552 -shifter n 2 3 @ #p + 2 0 10556124 03432129 -shiftiness n 2 2 @ + 2 0 04875728 04734698 -shifting n 1 2 @ + 1 0 00331655 -shiftlessness n 1 2 @ + 1 0 04637571 -shiga_bacillus n 1 1 @ 1 0 01370465 -shigella n 1 3 @ ~ #m 1 0 01370260 -shigella_dysentariae n 1 1 @ 1 0 01370465 -shigellosis n 1 1 @ 1 0 14184608 -shih-tzu n 1 1 @ 1 0 02086240 -shiism n 1 2 @ ~ 1 0 06236309 -shiitake n 1 2 @ #m 1 0 13001930 -shiitake_mushroom n 1 2 @ #m 1 0 13001930 -shiite n 1 2 @ #m 1 0 09683306 -shiite_muslim n 1 2 @ #m 1 0 09683306 -shikoku n 1 2 @ #p 1 0 08921613 -shiksa n 1 2 @ ; 1 0 10589243 -shikse n 1 2 @ ; 1 0 10589243 -shill n 1 2 @ + 1 0 10589402 -shillalah n 1 2 @ ; 1 0 04193742 -shillelagh n 1 2 @ ; 1 0 04193742 -shilling n 6 2 @ %p 6 0 13707346 13707106 13706864 13706628 13686877 13389763 -shillyshally n 1 2 @ + 1 0 01067362 -shiloh n 1 3 @ #p ; 1 0 01294502 -shim n 1 1 @ 1 1 04193883 -shimchath_torah n 1 2 @ ; 1 0 15197302 -shimmer n 1 2 @ + 1 0 07411851 -shimmy n 3 3 @ %p + 3 0 07364851 03013580 00533535 -shin n 4 2 @ #p 4 1 05562902 07657440 06838975 05594367 -shin_bet n 1 2 @ ; 1 0 08347457 -shin_bone n 2 2 @ #p 2 0 07657440 05594367 -shin_guard n 1 1 @ 1 0 04194127 -shin_splints n 1 1 @ 1 0 14568986 -shina n 1 1 @ 1 0 06972558 -shinbone n 1 2 @ #p 1 1 05594367 -shindig n 1 1 @ 1 0 08253045 -shindy n 1 1 @ 1 0 08253045 -shine n 1 3 @ ~ + 1 0 04953954 -shiner n 4 5 @ ~ #m %p + 4 0 14289387 09432990 02624551 01441425 -shingle n 3 2 @ + 3 0 15039445 14699574 04194009 -shingle_oak n 1 1 @ 1 0 12272883 -shingle_tree n 1 2 @ #m 1 0 12490490 -shingler n 1 2 @ + 1 0 10589566 -shingles n 1 1 @ 1 0 14132829 -shingling n 2 4 @ #p + ; 2 0 14700280 00618264 -shingon n 1 2 @ ; 1 0 06242237 -shininess n 1 2 @ + 1 0 04954683 -shining n 1 3 @ ~ + 1 1 00578795 -shining_clubmoss n 1 1 @ 1 0 13222877 -shining_path n 1 2 @ ; 1 0 08044676 -shining_sumac n 1 1 @ 1 0 12763762 -shining_willow n 1 2 @ #m 1 0 12729164 -shinleaf n 1 1 @ 1 0 12256708 -shinney n 1 1 @ 1 0 00468299 -shinny n 1 1 @ 1 0 00468299 -shinpad n 1 1 @ 1 0 04194127 -shinplaster n 1 1 @ 1 0 13385466 -shinto n 2 2 @ %m 2 0 08100320 06243347 -shintoism n 1 2 @ + 1 0 06243347 -shintoist n 1 3 @ #m + 1 0 09685806 -shiny_lyonia n 1 2 @ #m 1 0 12241426 -ship n 1 6 @ ~ #m %p + - 1 1 04194289 -ship's_bell n 1 2 @ ; 1 0 15227593 -ship's_boat n 1 2 @ ~ 1 0 04409128 -ship's_chandler n 1 1 @ 1 0 10590638 -ship's_company n 1 2 @ %m 1 0 08219059 -ship's_galley n 1 3 @ ~ #p 1 0 03412220 -ship's_officer n 1 2 @ ~ 1 0 10371741 -ship's_papers n 1 2 @ ; 1 0 06501748 -ship-breaker n 1 1 @ 1 0 10589666 -ship-towed_long-range_acoustic_detection_system n 1 1 @ 1 0 04196925 -ship_biscuit n 1 1 @ 1 0 07694839 -ship_broker n 1 1 @ 1 0 10589785 -ship_builder n 2 1 @ 2 0 10590764 10589930 -ship_building n 1 2 @ - 1 0 00912822 -ship_canal n 1 2 @ ~ 1 0 04196337 -ship_chandler n 1 1 @ 1 0 10590042 -ship_money n 1 1 @ 1 0 13317137 -ship_of_the_line n 1 2 @ ~ 1 0 03718212 -ship_route n 1 2 @ ~ 1 0 04163364 -shipboard_duty n 1 1 @ 1 0 00732369 -shipboard_soldier n 1 3 @ #m ; 1 0 10294139 -shipboard_system n 1 2 @ ~ 1 0 04196080 -shipbuilder n 3 2 @ #m 3 0 10590764 10589930 08073992 -shipbuilding n 1 2 @ - 1 1 00912822 -shipbuilding_industry n 1 2 @ %m 1 0 08074109 -shipload n 1 1 @ 1 0 13775523 -shipmate n 1 1 @ 1 0 10590146 -shipment n 2 3 @ ~ + 2 2 02964389 00061290 -shipowner n 1 1 @ 1 0 10590239 -shipper n 2 3 @ ~ + 2 0 10590339 08481715 -shipping n 2 5 @ ~ #p + - 2 1 01105259 04196502 -shipping_agent n 1 1 @ 1 0 10590452 -shipping_articles n 1 1 @ 1 0 06526486 -shipping_clerk n 1 1 @ 1 0 10590537 -shipping_company n 1 2 @ ~ 1 0 08003717 -shipping_fever n 1 1 @ 1 1 14272620 -shipping_office n 1 1 @ 1 0 04196677 -shipping_pneumonia n 1 1 @ 1 0 14272620 -shipping_room n 1 2 @ ; 1 0 04196803 -shipside n 1 2 @ #p 1 0 08650391 -shipway n 2 3 @ ~ #p 2 0 04565039 04196337 -shipworm n 1 3 @ ~ #m 1 0 01967094 -shipwreck n 3 3 @ ~ + 3 1 04197110 07478718 07353075 -shipwreck_survivor n 1 1 @ 1 0 09899438 -shipwright n 1 1 @ 1 0 10590764 -shipyard n 1 3 @ ~ %p 1 1 04197235 -shiraz n 1 2 @ #p 1 0 08912279 -shire n 2 3 @ %p ; 2 0 08587828 02387346 -shire_horse n 1 1 @ 1 0 02387346 -shire_town n 1 3 @ #p ; 1 0 08547300 -shirer n 1 1 @ 1 0 11298634 -shirker n 1 4 @ ~ + ; 1 0 10608385 -shirking n 1 2 @ + 1 1 00741478 -shirley_temple n 1 1 @ 1 0 10851987 -shirley_temple_black n 1 1 @ 1 0 10851987 -shirodkar's_operation n 1 1 @ 1 0 00691879 -shirred_egg n 1 1 @ 1 0 07842605 -shirring n 1 2 @ + 1 0 00246460 -shirt n 1 5 @ ~ %s %p + 1 1 04197391 -shirt_button n 1 2 @ #p 1 0 04197781 -shirtdress n 1 1 @ 1 0 04197878 -shirtfront n 2 3 @ ~ #p 2 1 04198015 03191561 -shirting n 1 2 @ #s 1 0 04198233 -shirtlifter n 1 2 @ ~ 1 0 10122645 -shirtmaker n 1 1 @ 1 0 10590903 -shirtsleeve n 1 2 @ #p 1 1 04198355 -shirtsleeves n 1 1 @ 1 1 14457976 -shirttail n 2 2 @ #p 2 0 06399870 04198453 -shirtwaist n 1 1 @ 1 0 04198562 -shirtwaister n 1 1 @ 1 0 04198562 -shish_kebab n 1 2 @ ~ 1 0 07869775 -shisha n 1 1 @ 1 0 03533014 -shit n 6 3 @ + ; 6 2 14854581 06611376 13773047 13555775 09815188 05140793 -shite n 1 2 @ ; 1 0 14854581 -shithead n 1 1 @ 1 0 10039663 -shitlist n 1 1 @ 1 0 06487260 -shittah n 1 3 @ #m %s 1 0 11756329 -shittah_tree n 1 3 @ #m %s 1 0 11756329 -shitter n 1 2 @ + 1 0 10000007 -shittim n 1 1 @ 1 0 12772908 -shittimwood n 3 2 @ #s 3 0 12773142 12772908 11756522 -shitting n 1 3 @ ~ + 1 0 13459088 -shitwork n 1 1 @ 1 0 00732576 -shiv n 1 1 @ 1 0 04198722 -shiva n 2 5 @ ~ #m + ; 2 0 15296489 09528727 -shivah n 1 2 @ ; 1 0 15296489 -shivaism n 2 4 @ #m %m + 2 0 08097072 06238931 -shivaist n 1 3 @ #m + 1 0 09685564 -shivaree n 1 1 @ 1 0 07054122 -shiver n 2 2 @ + 2 1 00867983 07520112 -shivering n 1 2 @ + 1 1 14340287 -shlemiel n 1 2 @ ; 1 0 10556825 -shlep n 2 2 @ ; 2 0 10556953 00310425 -shlepper n 1 2 @ ; 1 0 10556953 -shlimazel n 1 2 @ ; 1 0 10557094 -shlock n 1 2 @ ; 1 0 04145735 -shlockmeister n 1 2 @ ; 1 0 10557246 -shmaltz n 1 2 @ ; 1 0 04627936 -shmear n 1 2 @ ; 1 0 08400605 -shmegegge n 1 2 @ ; 1 0 06609785 -shmo n 1 2 @ ; 1 0 10557404 -shmooze n 1 2 @ ; 1 0 07136469 -shmuck n 1 2 @ ; 1 0 10557404 -shnook n 1 2 @ ; 1 0 10557517 -shnorrer n 1 2 @ ; 1 0 10557699 -shoal n 3 3 @ %m + 3 0 09433312 09433134 07995453 -shoat n 1 3 @ ~ #m 1 0 02395694 -shock n 10 5 @ ~ #p + ; 10 6 07510625 01172252 00839292 14067076 07429276 07298982 07962707 07962500 07339098 04198797 -shock_absorber n 1 3 @ ~ #p 1 1 04198797 -shock_therapy n 1 2 @ ~ 1 1 00706371 -shock_treatment n 1 2 @ ~ 1 0 00706371 -shock_troops n 1 1 @ 1 0 08274004 -shock_wave n 1 2 @ ~ 1 0 07347846 -shocker n 2 2 @ + 2 0 10590977 07247803 -shockley n 1 1 @ 1 0 11298810 -shoddiness n 2 2 @ + 2 0 05140593 05041320 -shoddy n 1 1 @ 1 0 15104860 -shoe n 4 6 @ ~ #p %p + ; 4 1 04199027 04200000 03539433 02890940 -shoe-shop n 1 1 @ 1 0 04200800 -shoe_black n 1 1 @ 1 0 12179391 -shoe_bomb n 1 1 @ 1 0 04200138 -shoe_collar n 1 2 @ #p 1 0 03068707 -shoe_industry n 1 1 @ 1 0 08074225 -shoe_lace n 1 3 @ #p %p 1 0 04200637 -shoe_leather n 1 1 @ 1 1 14763879 -shoe_polish n 1 1 @ 1 0 15039568 -shoe_repairing n 1 1 @ 1 1 00617865 -shoe_shop n 1 1 @ 1 0 04200800 -shoe_store n 1 1 @ 1 1 04200800 -shoe_string n 2 3 @ #p %p 2 0 13762178 04200637 -shoebill n 1 2 @ #m 1 0 02005399 -shoebird n 1 2 @ #m 1 0 02005399 -shoeblack n 1 1 @ 1 0 09866817 -shoeblack_plant n 1 1 @ 1 0 12179391 -shoebox n 2 1 @ 2 0 04200390 04200258 -shoeful n 1 1 @ 1 1 13769549 -shoehorn n 1 1 @ 1 0 04200537 -shoelace n 1 3 @ #p %p 1 1 04200637 -shoemaker n 1 2 @ ~ 1 0 09933098 -shoemaker's_last n 1 1 @ 1 0 03644532 -shoemaking n 1 1 @ 1 0 00617865 -shoes n 1 1 @ 1 1 13926786 -shoeshine n 2 1 @ 2 0 04701267 00579082 -shoestring n 2 3 @ #p %p 2 1 04200637 13762178 -shoestring_catch n 1 2 @ ; 1 0 00140264 -shoestring_fungus n 1 2 @ #m 1 0 13231678 -shoetree n 1 1 @ 1 0 04200908 -shofar n 1 1 @ 1 0 04201064 -shogi n 1 2 @ ; 1 0 00505726 -shogun n 1 1 @ 1 0 10591072 -shogunate n 1 2 @ ~ 1 0 08440630 -shoji n 1 2 @ ; 1 0 04201297 -sholem_asch n 1 1 @ 1 0 10825554 -sholom_asch n 1 1 @ 1 0 10825554 -shona n 2 1 @ 2 0 10591239 06995135 -shoo-in n 1 1 @ 1 0 07475107 -shoo_fly n 1 2 @ #m 1 0 12907057 -shoofly n 2 2 @ ; 2 0 10591347 04201435 -shoofly_pie n 1 1 @ 1 0 07625977 -shook n 1 1 @ 1 0 04201618 -shoot n 2 3 @ ~ + 2 0 13164763 00122954 -shoot-'em-up n 1 1 @ 1 0 06616216 -shoot-down n 1 1 @ 1 1 01250569 -shooter n 5 4 @ ~ + ; 5 1 04396093 10593115 10591678 10591481 10152083 -shooting n 2 4 @ ~ %p + 2 2 00122661 00225150 -shooting_box n 1 1 @ 1 0 04202142 -shooting_brake n 1 2 @ ; 1 0 04201733 -shooting_gallery n 2 2 @ ; 2 0 04201992 04201845 -shooting_iron n 1 3 @ ~ %p 1 0 03948459 -shooting_lodge n 1 1 @ 1 0 04202142 -shooting_preserve n 1 1 @ 1 1 08587571 -shooting_range n 1 1 @ 1 0 04201845 -shooting_script n 1 1 @ 1 0 07012414 -shooting_star n 1 3 @ ~ #p 1 0 11483990 -shooting_stick n 1 1 @ 1 0 04202282 -shootout n 1 1 @ 1 0 00124617 -shop n 3 4 @ ~ %p + 3 2 04202417 04603081 00892254 -shop_assistant n 1 3 @ ~ ; 1 0 10548227 -shop_bell n 1 1 @ 1 0 04203356 -shop_boy n 1 1 @ 1 0 10591949 -shop_class n 1 1 @ 1 0 00892254 -shop_clerk n 1 2 @ ~ 1 0 10548227 -shop_floor n 1 2 @ #p 1 0 04203514 -shop_girl n 1 1 @ 1 0 10592049 -shop_mechanic n 1 1 @ 1 0 10279018 -shop_steward n 1 1 @ 1 0 10592811 -shop_talk n 1 1 @ 1 0 07136578 -shop_window n 1 2 @ #p 1 0 03211789 -shopaholic n 1 2 @ ; 1 0 10591811 -shopfront n 1 3 @ #p %p 1 0 04203705 -shophar n 1 1 @ 1 0 04201064 -shopkeeper n 1 3 @ ~ #m 1 1 10592152 -shoplifter n 1 2 @ + 1 0 09866661 -shoplifting n 1 2 @ + 1 0 00781480 -shopper n 2 3 @ ~ + 2 1 10592397 10592595 -shopping n 2 3 @ ~ + 2 1 00081836 04203889 -shopping_bag n 1 1 @ 1 0 04204081 -shopping_basket n 1 1 @ 1 0 04204238 -shopping_cart n 1 1 @ 1 0 04204347 -shopping_center n 1 2 @ %p 1 1 03965456 -shopping_centre n 1 2 @ %p 1 0 03965456 -shopping_list n 2 2 @ ~ 2 0 06495516 06491371 -shopping_mall n 1 2 @ %p 1 0 03965456 -shopwalker n 1 1 @ 1 0 10097262 -shopwindow n 1 2 @ #p 1 0 03211789 -shore n 2 5 @ ~ %p + ; 2 1 09433442 04204468 -shore_bird n 1 3 @ ~ #m 1 0 02022684 -shore_boulder n 1 1 @ 1 0 09433721 -shore_duty n 1 1 @ 1 0 00732492 -shore_leave n 1 1 @ 1 0 15140080 -shore_patrol n 1 2 @ ; 1 0 08211475 -shore_pine n 1 1 @ 1 0 11615026 -shore_station n 1 2 @ ; 1 0 03812119 -shorea n 1 3 @ #m %m 1 0 12377328 -shorea_teysmanniana n 1 3 @ #m %s 1 0 12377494 -shorebird n 1 3 @ ~ #m 1 0 02022684 -shoreline n 1 2 @ #p 1 0 09433839 -shoring n 2 2 @ + 2 0 04204468 01017550 -shoring_up n 1 2 @ + 1 0 01017550 -short n 3 4 @ #m #p + 3 1 04204619 04204755 00723984 -short's_aster n 1 1 @ 1 0 11935187 -short-billed_marsh_wren n 1 1 @ 1 0 01585422 -short-grass n 1 1 @ 1 0 12103894 -short-horned_grasshopper n 1 3 @ ~ #m 1 0 02226821 -short-leaf_pine n 1 1 @ 1 0 11616260 -short-spurred_fragrant_orchid n 1 2 @ #m 1 0 12064591 -short-staple_cotton n 1 1 @ 1 0 14870424 -short-stop n 1 1 @ 1 0 04327544 -short-stop_bath n 1 1 @ 1 0 04327544 -short-tailed_shrew n 1 2 @ #m 1 0 01892385 -short-term_memory n 1 1 @ 1 0 05760611 -short-toed_eagle n 1 2 @ #m 1 0 01610552 -short_account n 2 1 @ 2 0 13929336 06641818 -short_aria n 1 1 @ 1 0 07049634 -short_bone n 1 1 @ 1 1 05280698 -short_circuit n 1 2 @ #p 1 0 04204755 -short_covering n 1 1 @ 1 0 00080096 -short_division n 1 1 @ 1 0 00871263 -short_gastric_artery n 1 1 @ 1 0 05346191 -short_hundredweight n 1 3 @ #p %p 1 0 13721177 -short_iron n 1 1 @ 1 0 04205062 -short_letter n 1 2 @ ~ 1 0 06626286 -short_line n 1 1 @ 1 0 04205192 -short_list n 1 1 @ 1 0 06495625 -short_order n 1 1 @ 1 0 07279968 -short_pants n 1 3 @ ~ ; 1 0 04205318 -short_ribs n 1 1 @ 1 0 07661845 -short_sale n 1 1 @ 1 0 00079908 -short_saphenous_vein n 1 1 @ 1 0 05380122 -short_selling n 1 1 @ 1 0 00079908 -short_shrift n 1 1 @ 1 0 07208184 -short_sleep n 1 2 @ ~ 1 0 00858377 -short_sleeve n 1 1 @ 1 0 04205505 -short_story n 1 1 @ 1 1 06371999 -short_subject n 1 2 @ ~ 1 0 06616314 -short_temper n 1 1 @ 1 0 07552549 -short_ton n 1 3 @ #p %p 1 0 13721529 -short_wave n 1 1 @ 1 0 11507174 -short_whist n 1 2 @ ~ 1 0 00496167 -shortage n 2 2 @ ~ 2 2 05114371 14449865 -shortbread n 1 1 @ 1 0 07636020 -shortbread_cookie n 1 1 @ 1 0 07636020 -shortcake n 1 1 @ 1 0 07694659 -shortcoming n 1 1 @ 1 0 05162642 -shortcut n 1 1 @ 1 1 04204953 -shortener n 1 2 @ + 1 0 09433952 -shortening n 2 3 @ ~ + 2 0 07672687 00358931 -shortfall n 1 2 @ ~ 1 0 05114371 -shortfin_mako n 1 1 @ 1 0 01484285 -shortgrass n 1 1 @ 1 0 12103894 -shorthand n 1 1 @ 1 0 06350127 -shorthand_typist n 1 1 @ 1 0 10654015 -shorthorn n 1 1 @ 1 0 02407071 -shortia n 1 3 @ ~ #m 1 0 12252168 -shortia_galacifolia n 1 1 @ 1 0 12252383 -shortleaf_pine n 1 1 @ 1 0 11616260 -shortleaf_yellow_pine n 1 1 @ 1 0 11616260 -shortlist n 1 1 @ 1 0 06495625 -shortness n 6 4 ! @ ~ + 6 1 05133944 14450339 05137938 05052832 05002680 04915462 -shortness_of_breath n 1 1 @ 1 0 14370122 -shorts n 2 3 @ ~ ; 2 0 04205318 03234164 -shortsightedness n 2 4 @ ~ + ; 2 0 14553290 04894552 -shortstop n 2 3 @ #m ; 2 1 10592986 00723984 -shorttail_weasel n 1 2 @ ~ 1 0 02442172 -shortwave_diathermy_machine n 1 1 @ 1 0 04205613 -shoshone n 2 2 @ ~ 2 0 09668729 06914802 -shoshonean n 1 2 @ ~ 1 0 06915313 -shoshonean_language n 1 2 @ ~ 1 0 06915313 -shoshoni n 1 2 @ ~ 1 0 09668729 -shoshonian n 1 2 @ ~ 1 0 06915313 -shoshonian_language n 1 2 @ ~ 1 0 06915313 -shostakovich n 1 1 @ 1 0 11299030 -shot n 17 5 @ ~ #p %p ; 17 7 00122661 04205759 00565302 14485673 10593115 06614729 00697365 13773250 06767922 05803938 04248607 04206070 04205983 01175633 00788632 00788473 00103590 -shot_glass n 1 1 @ 1 0 04206225 -shot_hole n 1 1 @ 1 0 04206695 -shot_metal n 1 1 @ 1 0 15039703 -shot_put n 1 1 @ 1 0 07469975 -shot_putter n 1 1 @ 1 0 10593521 -shot_tower n 1 1 @ 1 0 04206790 -shote n 1 3 @ ~ #m 1 0 02395694 -shotgun n 1 3 @ ~ %p 1 1 04206356 -shotgun_shell n 1 2 @ %p 1 0 04206570 -shoulder n 5 5 @ ~ #p %p + 5 1 05548840 07661583 05549061 04207151 04206948 -shoulder_bag n 1 1 @ 1 1 04207343 -shoulder_blade n 1 3 @ #p %p 1 1 05279688 -shoulder_board n 1 2 @ #p 1 0 04207473 -shoulder_bone n 1 3 @ #p %p 1 0 05279688 -shoulder_flash n 1 2 @ ; 1 0 06884790 -shoulder_girdle n 1 2 @ #p 1 0 05586280 -shoulder_holster n 1 1 @ 1 0 04207763 -shoulder_joint n 1 3 @ #p %p 1 0 05549061 -shoulder_mark n 1 2 @ #p 1 0 04207473 -shoulder_pad n 1 1 @ 1 0 04207903 -shoulder_patch n 1 2 @ #p 1 0 04208065 -shoulder_strap n 1 2 @ #p 1 0 04333500 -shoulder_vise n 1 1 @ 1 0 04598416 -shouldered_arch n 1 1 @ 1 0 04207596 -shout n 1 3 @ ~ + 1 1 07120524 -shouter n 1 3 @ ~ + 1 0 10533983 -shouting n 2 2 @ + 2 2 07251779 07123552 -shove n 1 3 @ ~ + 1 0 00113726 -shove-ha'penny n 1 2 @ ; 1 0 00505871 -shove-halfpenny n 1 2 @ ; 1 0 00505871 -shovel n 4 3 @ ~ + 4 1 04208210 13769870 04208427 03996416 -shovel_board n 1 2 @ ; 1 0 00505871 -shovel_hat n 1 1 @ 1 0 04208582 -shovelboard n 1 1 @ 1 0 00467536 -shoveler n 2 3 @ #m + 2 0 10593618 01848976 -shovelful n 1 1 @ 1 0 13769870 -shovelhead n 1 1 @ 1 0 01495006 -shoveller n 2 2 @ #m 2 0 10593618 01848976 -shovelnose_catfish n 1 2 @ #m 1 0 02520147 -shover n 1 3 @ ~ + 1 0 10495421 -show n 4 3 @ ~ + 4 2 00520257 06879521 06619065 00755277 -show-off n 1 3 @ ~ + 1 0 10070711 -show-stopper n 2 1 @ 2 0 06892358 04689942 -show_bill n 1 2 @ %p 1 0 06793817 -show_biz n 1 2 @ %p 1 0 08067951 -show_business n 1 2 @ %p 1 0 08067951 -show_card n 1 2 @ %p 1 0 06793817 -show_me_state n 1 4 @ #m #p %p 1 0 09105821 -show_time n 1 1 @ 1 0 15295884 -show_trial n 1 1 @ 1 0 01197119 -show_window n 2 2 @ #p 2 0 14516082 03211789 -showboat n 1 1 @ 1 0 04208760 -showcase n 2 2 @ ~ 2 1 14516082 02975212 -showdown n 1 1 @ 1 1 07181043 -shower n 6 5 @ ~ #p %p + 6 4 04208936 00257580 11502497 07363668 10070563 08255795 -shower_bath n 2 3 @ #p %p 2 0 04209613 00257580 -shower_cap n 1 1 @ 1 0 04209133 -shower_curtain n 1 2 @ #p 1 0 04209239 -shower_room n 1 2 @ %p 1 1 04209509 -shower_stall n 1 3 @ #p %p 1 0 04209613 -showerhead n 1 2 @ #p 1 1 04209383 -showgirl n 1 2 @ #m 1 0 09920901 -showiness n 1 2 @ + 1 0 04699936 -showing n 2 3 @ ~ + 2 2 06888345 00521209 -showjumping n 1 2 @ #p 1 0 00450998 -showman n 2 2 @ ~ 2 0 10594043 10593745 -showmanship n 1 1 @ 1 0 05640040 -showpiece n 1 2 @ ~ 1 1 03069567 -showplace n 1 1 @ 1 0 08648917 -showroom n 1 2 @ ; 1 1 04209811 -showstopper n 2 1 @ 2 0 06892358 04689942 -showtime n 1 2 @ ~ 1 0 15265518 -showy_daisy n 1 1 @ 1 0 11967315 -showy_goldenrod n 1 1 @ 1 0 12018363 -showy_lady's-slipper n 1 1 @ 1 0 12056758 -showy_lady_slipper n 1 1 @ 1 0 12056758 -showy_milkweed n 1 1 @ 1 0 13235159 -showy_orchis n 1 1 @ 1 0 12044041 -showy_sunflower n 1 1 @ 1 0 11979187 -shrapnel n 1 1 @ 1 1 04210012 -shred n 2 3 @ ~ + 2 1 13773725 04045941 -shredder n 1 2 @ + 1 0 04210120 -shreveport n 1 2 @ #p 1 0 09092352 -shrew n 2 3 @ ~ #m 2 0 10594147 01891633 -shrew_mole n 1 3 @ ~ #m 1 0 01890860 -shrewdness n 1 4 @ ~ + ; 1 0 05621439 -shrewishness n 1 2 @ + 1 0 04642866 -shrewmouse n 1 3 @ ~ #m 1 0 01891633 -shriek n 2 2 @ + 2 2 07123012 07393161 -shrieking n 2 2 @ + 2 1 07123012 07393161 -shrift n 1 1 @ 1 0 01039560 -shrike n 1 3 @ ~ #m 1 0 01598588 -shrilling n 1 2 @ + 1 0 07393589 -shrillness n 2 2 @ + 2 0 05193621 04990021 -shrimp n 3 7 @ ~ #m #s #p %p + 3 0 10543544 07794159 01986806 -shrimp-fish n 1 2 @ #m 1 0 01457407 -shrimp_butter n 1 1 @ 1 0 07855907 -shrimp_cocktail n 1 2 @ %s 1 0 07582152 -shrimp_newburg n 1 1 @ 1 0 07870620 -shrimp_sauce n 1 1 @ 1 0 07839055 -shrimper n 1 2 @ + 1 0 04210288 -shrimpfish n 1 2 @ #m 1 0 01457407 -shrine n 1 3 @ ~ + 1 1 04210390 -shrink n 1 2 @ ~ 1 0 10488016 -shrink-wrap n 1 1 @ 1 0 04210591 -shrink-wrapped_software n 1 1 @ 1 0 06587790 -shrinkage n 3 3 @ ~ + 3 0 07313004 05112215 00781480 -shrinking n 2 3 @ ~ + 2 0 07313004 00360485 -shrinking_violet n 1 2 @ ~ 1 0 10594715 -shroud n 3 5 @ ~ #p + ; 3 0 04210723 04188368 03879116 -shrove_tuesday n 1 2 @ #p 1 0 15241898 -shrovetide n 1 3 @ #p %p 1 0 15241777 -shrub n 1 4 @ ~ #m + 1 1 13112664 -shrubbery n 2 2 @ %m 2 2 08649067 08439694 -shrubby_bittersweet n 1 2 @ #m 1 0 12748248 -shrubby_penstemon n 1 2 @ #m 1 0 12886600 -shrubby_st_john's_wort n 1 1 @ 1 0 12369476 -shrublet n 1 3 @ ~ + 1 0 13118569 -shrug n 1 2 @ + 1 1 07273924 -shtick n 4 3 @ ~ ; 4 0 13762836 00550545 00513597 00171882 -shtickl n 1 1 @ 1 0 13763058 -shtik n 4 3 @ ~ ; 4 0 13762836 00550545 00513597 00171882 -shtikl n 1 1 @ 1 0 13763058 -shtup n 1 2 @ ; 1 0 00846021 -shua n 1 2 @ #m 1 0 08100656 -shuck n 1 3 @ ~ + 1 0 14805899 -shucks n 2 1 @ 2 1 05140793 06605682 -shudder n 2 2 @ + 2 0 07520112 00348801 -shudra n 2 3 @ #m %m 2 0 10594284 08307440 -shuffle n 2 4 @ ~ #p + 2 0 00340463 00292712 -shuffleboard n 1 1 @ 1 0 00467536 -shuffler n 2 2 @ + 2 0 10594523 10594408 -shuffling n 2 4 @ ~ #p + 2 1 00292712 00340463 -shufti n 1 2 @ ; 1 0 00985921 -shuha_shinto n 1 2 @ #m 1 0 08100656 -shumac n 1 4 @ ~ #m %s 1 0 12762896 -shumard_oak n 1 1 @ 1 0 12278107 -shumard_red_oak n 1 1 @ 1 0 12278107 -shun_giku n 1 3 @ #m %p 1 0 11951052 -shunning n 1 3 @ ~ + 1 0 00203753 -shunt n 3 4 @ ~ #p + 3 2 05548521 04211001 04210858 -shunt_circuit n 1 1 @ 1 0 03888808 -shunter n 1 2 @ + 1 0 04211219 -shut-in n 1 2 @ #m 1 0 10214230 -shutdown n 1 3 @ ~ + 1 1 00229260 -shute n 1 1 @ 1 0 11299212 -shuteye n 1 1 @ 1 0 14026089 -shutout n 1 1 @ 1 0 07476495 -shutter n 2 4 @ ~ #p + 2 2 04211528 04211356 -shutterbug n 1 1 @ 1 0 10594634 -shutting n 1 2 @ + 1 0 00344040 -shutting_post n 1 1 @ 1 0 04211755 -shuttle n 3 3 @ ~ + 3 0 04212282 04211970 04211857 -shuttle_bus n 1 1 @ 1 0 04212165 -shuttle_diplomacy n 1 1 @ 1 0 07149348 -shuttle_helicopter n 1 1 @ 1 0 04212467 -shuttlecock n 1 2 @ + 1 0 04212282 -shuttlecock_fern n 1 2 @ #m 1 0 13198054 -shwa n 1 2 @ ~ 1 0 07114023 -shy n 1 2 @ + 1 0 00106888 -shy_person n 1 2 @ ~ 1 0 10594715 -shylock n 2 1 @ 2 0 10742384 10542401 -shyness n 1 2 @ + 1 0 07523180 -shyster n 1 1 @ 1 0 10594857 -si n 3 2 @ #s 3 0 14654541 13578267 06869129 -si_system n 1 1 @ 1 0 13578267 -si_unit n 1 1 @ 1 0 13578267 -sial n 1 2 @ #s 1 0 14698233 -sialadenitis n 1 1 @ 1 0 14355725 -sialia n 1 3 @ #m %m 1 0 01561884 -sialidae n 1 3 @ #m %m 1 0 02266580 -sialis n 1 3 @ #m %m 1 0 02266732 -sialis_lutaria n 1 2 @ #m 1 0 02266864 -sialolith n 1 1 @ 1 0 09434125 -siam n 1 6 @ #m #p %m %p - 1 0 09036452 -siamang n 1 2 @ #m 1 0 02483708 -siamese n 4 5 @ ~ #m #p + 4 1 06936149 09734294 04212573 02123597 -siamese_cat n 1 2 @ ~ 1 1 02123597 -siamese_connection n 1 2 @ #p 1 0 04212573 -siamese_twin n 1 1 @ 1 0 10595012 -sian n 1 2 @ #p 1 0 08729452 -sib n 2 3 @ ~ #m 2 0 10595164 10236114 -sibelius n 1 1 @ 1 0 11299367 -siberia n 1 5 @ #p %m %p + 1 1 09005712 -siberian n 1 4 @ ~ #m + 1 0 09731082 -siberian_crab n 1 2 @ #m 1 0 12634734 -siberian_crab_apple n 1 2 @ #m 1 0 12634734 -siberian_elm n 1 2 @ #m 1 0 12408077 -siberian_husky n 1 1 @ 1 0 02110185 -siberian_larch n 1 1 @ 1 0 11620016 -siberian_millet n 1 1 @ 1 0 12135576 -siberian_pea_tree n 1 1 @ 1 0 12512095 -siberian_spruce n 1 1 @ 1 0 11626010 -siberian_wall_flower n 1 2 @ #m 1 0 11887476 -sibilant n 1 2 @ + 1 0 07118747 -sibilant_consonant n 1 1 @ 1 0 07118747 -sibilation n 2 2 @ + 2 0 07384898 07129202 -sibine n 1 1 @ 1 0 06985310 -sibley_tent n 1 1 @ 1 0 04212810 -sibling n 1 3 @ ~ #m 1 0 10595164 -sibyl n 2 3 @ + ; 2 0 10595551 10595361 -siccative n 1 1 @ 1 0 14779796 -sichuan n 1 2 @ #p 1 0 08726305 -sicilia n 2 5 @ #p %m %p - 2 0 08811215 08810999 -sicilian n 1 4 @ ~ #m + 1 1 09717566 -sicilian_mafia n 1 3 @ %m ; 1 0 08245549 -sicilian_pizza n 1 1 @ 1 0 07874441 -sicily n 2 6 @ #p %m %p + - 2 1 08811215 08810999 -sick n 1 2 @ + 1 1 07950418 -sick_bag n 1 1 @ 1 0 04212943 -sick_benefit n 1 2 @ ; 1 0 13297850 -sick_berth n 1 2 @ ; 1 0 04213105 -sick_call n 1 2 @ ; 1 0 08427453 -sick_headache n 2 1 @ 2 0 14327878 14327707 -sick_joke n 1 1 @ 1 0 06779839 -sick_leave n 1 1 @ 1 0 15140190 -sick_list n 1 1 @ 1 0 06495824 -sick_parade n 1 2 @ ; 1 0 08427453 -sick_pay n 1 1 @ 1 1 13280795 -sick_person n 1 2 @ ~ 1 0 10595647 -sickbag n 1 1 @ 1 0 04212943 -sickbay n 1 2 @ ; 1 0 04213105 -sickbed n 1 1 @ 1 0 04213264 -sickeningness n 1 2 @ + 1 0 04996571 -sickle n 1 2 @ %p 1 0 04213353 -sickle-cell_anaemia n 1 1 @ 1 0 14168792 -sickle-cell_anemia n 1 1 @ 1 0 14168792 -sickle-cell_disease n 1 1 @ 1 0 14168792 -sickle_alfalfa n 1 1 @ 1 0 12548804 -sickle_cell n 1 1 @ 1 0 05454833 -sickle_feather n 1 1 @ 1 0 01897426 -sickle_lucerne n 1 1 @ 1 0 12548804 -sickle_medick n 1 1 @ 1 0 12548804 -sicklepod n 2 2 @ #m 2 0 12500518 11872324 -sickleweed_golden_aster n 1 1 @ 1 0 11952058 -sickness n 3 3 @ ~ + 3 1 14061805 14473054 14359952 -sickness_benefit n 1 2 @ ; 1 0 13297850 -sickroom n 1 1 @ 1 1 04213530 -sid_caesar n 1 1 @ 1 0 10878375 -sida n 1 3 @ #m %m 1 0 12186116 -sida_hermaphrodita n 1 2 @ #m 1 0 12186352 -sida_rhombifolia n 1 2 @ #m 1 0 12186554 -sida_spinosa n 1 2 @ #m 1 0 12186839 -sidalcea n 1 3 @ #m %m 1 0 12187030 -sidalcea_malviflora n 1 2 @ #m 1 0 12187247 -siddhartha n 1 1 @ 1 0 09532214 -siddons n 1 1 @ 1 0 11299501 -side n 12 4 @ ~ #p ; 12 10 08649345 08408709 05551318 08510666 04213626 05852553 08649167 08102282 07655626 06783265 09437454 07442569 -side-blotched_lizard n 1 2 @ #m 1 0 01681328 -side-glance n 1 1 @ 1 0 00877924 -side-look n 1 1 @ 1 0 00877924 -side-wheeler n 1 1 @ 1 0 04215800 -side-whiskers n 1 1 @ 1 0 05262802 -side_arm n 1 3 @ ~ %p 1 0 03948459 -side_chair n 1 3 @ ~ %p 1 0 04331277 -side_chapel n 1 2 @ #p 1 0 04214413 -side_dish n 1 3 @ ~ #p 1 0 07580053 -side_door n 1 1 @ 1 0 04214535 -side_drum n 1 2 @ %p 1 0 04249415 -side_effect n 2 2 @ ~ 2 0 14311977 11417387 -side_entrance n 1 1 @ 1 1 04214535 -side_horse n 1 2 @ %p 1 0 03980478 -side_judge n 1 1 @ 1 0 10596272 -side_of_bacon n 1 3 @ #p %p 1 0 07669211 -side_of_beef n 1 2 @ %p 1 0 07655790 -side_of_meat n 1 2 @ ~ 1 0 07655626 -side_of_pork n 1 3 @ ~ %p 1 0 07669588 -side_order n 1 3 @ ~ #p 1 0 07580053 -side_pocket n 1 1 @ 1 0 04214958 -side_road n 1 1 @ 1 0 04215056 -side_street n 1 1 @ 1 0 04215287 -side_view n 1 2 @ ~ 1 0 05934673 -side_yard n 1 1 @ 1 1 04216013 -sidebar n 2 2 @ ; 2 0 07143450 06271403 -sideboard n 3 4 @ ~ #p %p 3 1 04214154 04214046 02912065 -sideburn n 1 1 @ 1 0 05262802 -sidecar n 2 1 @ 2 0 07917392 04214282 -sidekick n 1 2 @ ~ 1 0 09877951 -sidelight n 1 1 @ 1 0 04214649 -sideline n 3 2 @ ~ 3 0 08651104 04214871 00432689 -sidereal_day n 1 1 @ 1 0 15208333 -sidereal_hour n 1 1 @ 1 0 15209074 -sidereal_month n 1 1 @ 1 0 15209174 -sidereal_time n 1 2 @ ~ 1 0 15208162 -sidereal_year n 1 1 @ 1 0 15208898 -siderite n 2 1 @ 2 0 15039827 09434237 -sideritis n 1 2 @ #m 1 0 12868248 -sideroblast n 1 1 @ 1 0 05448827 -sideroblastic_anaemia n 1 1 @ 1 0 14168447 -sideroblastic_anemia n 1 1 @ 1 0 14168447 -siderochrestic_anaemia n 1 1 @ 1 0 14168447 -siderochrestic_anemia n 1 1 @ 1 0 14168447 -siderocyte n 1 1 @ 1 0 05454978 -sideropenia n 1 1 @ 1 0 14168653 -siderophilin n 1 1 @ 1 0 15077917 -siderosis n 1 1 @ 1 0 14150470 -sidesaddle n 1 1 @ 1 0 04215153 -sideshow n 2 1 @ 2 0 07360957 00523148 -sideslip n 2 1 @ 2 0 00329031 00170710 -sidesman n 1 2 @ ; 1 0 10596348 -sidesplitter n 1 1 @ 1 0 06778925 -sidestep n 1 2 @ ; 1 0 00286360 -sidestroke n 1 2 @ %p 1 0 00570683 -sideswipe n 1 1 @ 1 0 07410613 -sidetrack n 1 1 @ 1 0 04216106 -sidewalk n 1 2 @ %s 1 1 04215402 -sidewall n 2 1 @ 2 0 04215684 04215588 -sidewinder n 2 2 @ #m 2 1 01756291 04215910 -siding n 2 2 @ ~ 2 1 04216106 15041050 -sidney n 1 1 @ 1 0 11299672 -sidney_caesar n 1 1 @ 1 0 10878375 -sidney_james_webb n 1 2 @ #m 1 0 11377851 -sidney_poitier n 1 1 @ 1 0 11240609 -sidney_webb n 1 2 @ #m 1 0 11377851 -sidon n 1 2 @ #p 1 0 08958212 -sidonie-gabrielle_claudine_colette n 1 1 @ 1 0 10904992 -sidonie-gabrielle_colette n 1 1 @ 1 0 10904992 -sids n 1 1 @ 1 0 14310292 -siege n 1 3 @ ~ ; 1 1 01075117 -siege_of_orleans n 1 2 @ ; 1 0 01289830 -siege_of_syracuse n 2 2 @ ; 2 0 01296296 01296127 -siege_of_vicksburg n 1 3 @ #p ; 1 0 01298797 -siege_of_yorktown n 1 3 @ #p ; 1 0 01300242 -siege_perilous n 1 1 @ 1 0 04216302 -siegfried n 1 2 @ ; 1 0 09501737 -siegfried_line n 1 2 @ #p 1 0 04216508 -siemens n 3 1 @ 3 0 13637240 11299890 11299770 -sienna n 1 2 @ ~ 1 0 14843493 -sierra n 2 1 @ 2 0 09434345 02626471 -sierra_leone n 1 6 @ #p %m %p + - 1 0 08996871 -sierra_leone_monetary_unit n 1 2 @ ~ 1 0 13685096 -sierra_leonean n 1 2 @ #m 1 0 09731225 -sierra_lodgepole_pine n 1 1 @ 1 0 11615259 -sierra_madre_occidental n 1 2 @ #p 1 0 09434469 -sierra_madre_oriental n 1 2 @ #p 1 0 09434661 -sierra_nevada n 2 3 @ #p %p 2 0 09435065 09434845 -sierra_nevada_mountains n 1 3 @ #p %p 1 0 09434845 -sierra_plum n 1 1 @ 1 0 12649866 -sierra_redwood n 1 2 @ #m 1 0 11641494 -siesta n 1 1 @ 1 0 00858631 -sieur_de_lasalle n 1 1 @ 1 0 11118205 -sieva_bean n 2 4 @ #m #p %p 2 0 12558425 07729225 -sieve n 1 3 @ ~ + 1 1 04216634 -sieve_tube n 1 2 @ #p 1 0 13099194 -sif n 1 2 @ ; 1 0 09583196 -sifter n 1 2 @ + 1 0 04216860 -sifting n 1 2 @ + 1 0 01254051 -sigeh n 1 2 @ ; 1 0 13967215 -sigh n 2 2 @ + 2 1 07129602 07393756 -sight n 7 4 @ ~ + - 7 7 05933054 06888944 05654362 06210964 05623818 00881649 13774404 -sight_bill n 1 1 @ 1 0 13422905 -sight_draft n 1 1 @ 1 0 13422905 -sight_gag n 1 1 @ 1 0 06779914 -sight_setting n 1 2 @ ~ 1 0 04217200 -sightedness n 1 2 @ + 1 0 05656537 -sighting n 1 3 @ ~ + 1 0 00880269 -sightlessness n 1 3 @ ~ + 1 0 14126660 -sightreader n 1 3 @ + ; 1 0 10596517 -sights n 1 4 @ ~ #p %p 1 0 04216963 -sightseeing n 1 2 @ + 1 1 00879607 -sightseer n 1 2 @ + 1 0 10596689 -sigint n 1 2 @ ~ 1 0 00982852 -sigma n 1 2 @ #m 1 0 06835951 -sigmodon n 1 3 @ #m %m 1 0 02338592 -sigmodon_hispidus n 1 2 @ #m 1 0 02338722 -sigmoid_colon n 1 2 @ #p 1 0 05537417 -sigmoid_flexure n 1 2 @ #p 1 0 05537417 -sigmoid_sinus n 1 1 @ 1 0 05252567 -sigmoid_vein n 1 2 @ #p 1 0 05380532 -sigmoidectomy n 1 1 @ 1 0 00687619 -sigmoidoscope n 1 1 @ 1 0 04217387 -sigmoidoscopy n 1 1 @ 1 0 00643208 -sigmund_freud n 1 1 @ 1 0 10982127 -sigmund_romberg n 1 1 @ 1 0 11269367 -sign n 11 5 @ ~ #p + ; 11 9 06646243 06793231 06791372 04217882 08685677 14301785 13856574 07286014 06876144 07276018 06811625 -sign_industry n 1 1 @ 1 0 08074330 -sign_language n 1 3 @ ~ %p 1 0 06875697 -sign_manual n 1 1 @ 1 0 06405589 -sign_of_the_cross n 1 1 @ 1 1 07274730 -sign_of_the_zodiac n 1 4 @ ~ #p ; 1 0 08685677 -sign_painter n 1 1 @ 1 0 10597642 -signage n 1 1 @ 1 0 08074421 -signal n 3 3 @ ~ + 3 2 06791372 09185280 11447319 -signal-to-noise n 1 1 @ 1 1 13825664 -signal-to-noise_ratio n 1 1 @ 1 0 13825664 -signal/noise n 1 1 @ 1 0 13825664 -signal/noise_ratio n 1 1 @ 1 0 13825664 -signal_box n 1 1 @ 1 0 04217546 -signal_caller n 2 3 @ #m ; 2 0 10498816 00726567 -signal_detection n 1 1 @ 1 0 06281175 -signal_fire n 1 1 @ 1 0 07264725 -signal_flag n 1 2 @ ~ 1 0 06875094 -signal_level n 1 1 @ 1 0 05098520 -signal_light n 1 1 @ 1 0 07264725 -signal_tower n 1 2 @ ; 1 0 04217546 -signaler n 1 3 @ ~ + 1 0 10596899 -signaling n 1 3 @ ~ + 1 1 06791372 -signaling_device n 1 2 @ ~ 1 0 04217718 -signalisation n 1 2 @ + 1 0 06798336 -signalization n 1 2 @ + 1 0 06798336 -signaller n 1 3 @ ~ + 1 0 10596899 -signalman n 1 1 @ 1 0 10597091 -signals_intelligence n 1 2 @ ~ 1 0 00982852 -signatory n 1 2 @ ~ 1 0 10597234 -signature n 5 5 @ ~ #p %p + 5 2 06404582 04931428 07029088 06863618 06256041 -signature_recognition n 1 1 @ 1 0 06645623 -signature_tune n 1 1 @ 1 0 07029088 -signboard n 1 2 @ ~ 1 0 04217882 -signer n 2 3 @ ~ + 2 0 10597505 10597234 -signet n 1 2 @ #p 1 0 04218142 -signet_ring n 1 2 @ %p 1 0 04218271 -significance n 3 5 ! @ ~ = + 3 3 05169813 05920791 06601327 -significant_digit n 1 1 @ 1 0 13742011 -significant_figure n 1 1 @ 1 0 13742011 -significant_other n 1 2 @ ~ 1 0 10024362 -signification n 1 3 @ ~ + 1 0 06601327 -signified n 1 2 @ ~ 1 0 06602472 -signifier n 1 4 @ ~ + ; 1 0 06290637 -signing n 1 4 @ ~ %p + 1 0 06875697 -signior n 1 1 @ 1 0 10597745 -signor n 1 1 @ 1 0 10597745 -signora n 2 2 @ ; 2 0 10597889 06342362 -signore n 1 1 @ 1 1 10598013 -signorina n 2 2 @ ; 2 0 10598181 06342490 -signory n 1 1 @ 1 0 13252293 -signpost n 1 3 @ ~ + 1 1 06794374 -sigrid_undset n 1 1 @ 1 0 11356183 -sigurd n 1 2 @ ; 1 0 09502080 -sigyn n 1 2 @ ; 1 0 09583321 -sihasapa n 1 1 @ 1 0 09668988 -sika n 1 2 @ #m 1 0 02431976 -sikh n 1 3 @ + ; 1 0 10598349 -sikhism n 1 2 @ - 1 0 06239931 -sikkim n 1 2 @ #p 1 0 08902569 -sikorsky n 1 1 @ 1 0 11300089 -silage n 1 1 @ 1 0 07801342 -sild n 1 1 @ 1 0 02532786 -sildenafil n 1 1 @ 1 0 04218383 -sildenafil_citrate n 1 1 @ 1 0 04218383 -silence n 4 4 ! @ ~ + 4 4 13925550 04982207 04651974 04652177 -silencer n 2 3 @ #p + 2 0 04218773 04218564 -silene n 1 3 @ ~ #m 1 0 11815491 -silene_acaulis n 1 2 @ #m 1 0 11815721 -silene_caroliniana n 1 2 @ #m 1 0 11815918 -silene_dioica n 1 2 @ #m 1 0 11816121 -silene_latifolia n 1 2 @ #m 1 0 11816336 -silene_uniflora n 1 1 @ 1 0 11816829 -silene_virginica n 1 2 @ #m 1 0 11816649 -silene_vulgaris n 1 1 @ 1 0 11816829 -silent_butler n 1 1 @ 1 0 04218921 -silent_movie n 1 1 @ 1 1 06617752 -silent_partner n 1 1 @ 1 0 10598459 -silent_person n 1 1 @ 1 0 10039569 -silent_picture n 1 1 @ 1 0 06617752 -silent_treatment n 1 1 @ 1 0 01226181 -silents n 1 1 @ 1 0 06617752 -silenus n 2 1 @ 2 0 09548489 09548316 -silesia n 2 2 @ #p 2 0 09166534 04219067 -silex n 2 2 @ ; 2 0 15041190 04219185 -silhouette n 2 2 @ + 2 1 08613345 04219277 -silica n 1 4 @ ~ #s + 1 0 15041277 -silica_gel n 1 1 @ 1 0 15041688 -silicate n 1 1 @ 1 1 15040033 -silicic_acid n 1 1 @ 1 0 15039935 -silicide n 1 1 @ 1 0 15040129 -silicle n 1 1 @ 1 0 11685766 -silicon n 1 2 @ #s 1 0 14654541 -silicon_bronze n 1 1 @ 1 0 15041793 -silicon_carbide n 1 1 @ 1 0 15040266 -silicon_chip n 1 4 @ ~ #p %p 1 0 03020034 -silicon_dioxide n 1 3 @ ~ #s 1 0 15041277 -silicon_oxide n 1 3 @ ~ #s 1 0 15041277 -silicon_valley n 1 2 @ #p 1 0 09166902 -silicone n 1 3 @ ~ %s 1 1 15040493 -silicone_polymer n 1 3 @ ~ %s 1 0 15040493 -silicone_resin n 1 1 @ 1 0 15040809 -silicone_rubber n 1 1 @ 1 0 15007016 -silicosis n 1 1 @ 1 0 14150612 -siliqua n 1 2 @ ~ 1 0 11685621 -silique n 1 2 @ ~ 1 0 11685621 -silk n 2 3 @ ~ + 2 2 04219424 15041911 -silk-cotton_tree n 1 1 @ 1 0 12190410 -silk_cotton n 1 2 @ #s 1 0 14925776 -silk_gland n 1 2 @ #p 1 0 02468178 -silk_grass n 1 1 @ 1 0 12126516 -silk_hat n 1 1 @ 1 0 03237416 -silk_oak n 1 3 @ ~ #m 1 0 12217586 -silk_road n 1 2 @ %p 1 0 08680363 -silk_screen_print n 1 1 @ 1 0 04219718 -silk_stocking n 1 1 @ 1 0 03836976 -silk_tree n 1 1 @ 1 0 11759404 -silk_vine n 1 2 @ #m 1 0 13237508 -silk_wood n 1 2 @ #m 1 0 12194147 -silkgrass n 1 1 @ 1 0 12126516 -silkiness n 1 2 @ + 1 0 04947494 -silks n 1 2 @ ; 1 0 04219580 -silkscreen n 1 1 @ 1 0 04219718 -silkweed n 1 3 @ ~ #m 1 0 13233727 -silkwood n 1 2 @ #m 1 0 12194147 -silkworm n 2 4 @ ~ #m %p 2 1 02300797 02302620 -silkworm_moth n 2 3 @ ~ #m 2 0 02302459 02300173 -silkworm_seed n 1 1 @ 1 0 01464766 -silky_anteater n 1 2 @ #m 1 0 02460817 -silky_cornel n 1 1 @ 1 0 12947895 -silky_dogwood n 2 1 @ 2 0 12947895 12947756 -silky_elm n 1 1 @ 1 0 12199790 -silky_oak n 1 2 @ #m 1 0 12218274 -silky_pocket_mouse n 1 2 @ #m 1 0 02349205 -silky_tamarin n 1 1 @ 1 0 02491329 -silky_terrier n 1 1 @ 1 0 02097658 -silky_willow n 2 2 @ #m 2 0 12730370 12725940 -silky_wisteria n 1 1 @ 1 0 12581110 -sill n 2 3 @ ~ ; 2 1 04220036 09435232 -sillabub n 2 1 @ 2 0 07916872 07613158 -sillaginidae n 1 3 @ #m %m 1 0 02637637 -sillago n 1 3 @ #m %m 1 0 02637839 -silliness n 2 3 @ ~ + 2 0 04891683 04648440 -sills n 1 1 @ 1 0 11300326 -silly n 1 1 @ 1 0 10598641 -silly_season n 1 1 @ 1 0 15230617 -silo n 2 2 @ ; 2 1 04220250 04220344 -siloxane n 1 2 @ ~ 1 0 15040899 -silphium n 1 3 @ #m %m 1 0 12015076 -silphium_laciniatum n 1 2 @ #m 1 0 12015221 -silt n 1 2 @ + 1 0 15042052 -siltstone n 1 1 @ 1 0 15042194 -silurian n 1 2 @ #p 1 0 15128200 -silurian_period n 1 2 @ #p 1 0 15128200 -silurid n 1 3 @ ~ #m 1 0 02517938 -silurid_fish n 1 3 @ ~ #m 1 0 02517938 -siluridae n 1 3 @ #m %m 1 0 02517768 -siluriform_fish n 1 3 @ ~ #m 1 0 02517442 -siluriformes n 1 3 @ #m %m 1 0 02517169 -silurus n 1 3 @ #m %m 1 0 02518178 -silurus_glanis n 1 2 @ #m 1 0 02518324 -silva n 1 1 @ 1 0 09435405 -silvan n 1 1 @ 1 0 10685480 -silvanus n 1 2 @ ; 1 0 09576746 -silver n 5 5 @ ~ #s %s + 5 4 14654954 13371866 04962062 03361837 04220523 -silver-bell_tree n 1 1 @ 1 0 12778398 -silver-bush n 2 2 @ #m 2 0 12506784 12326178 -silver-lace n 1 2 @ #m 1 0 12023407 -silver-leaved_nettle n 1 1 @ 1 0 12894930 -silver-leaved_nightshade n 1 1 @ 1 0 12894930 -silver-leaved_poplar n 1 1 @ 1 0 12732009 -silver-tip n 1 1 @ 1 0 02132580 -silver-worker n 1 2 @ ~ 1 0 10598749 -silver_age n 1 2 @ ; 1 0 15231031 -silver_ash n 1 3 @ ~ #m 1 0 12698435 -silver_beech n 1 2 @ #m 1 0 12266984 -silver_bell n 1 3 @ ~ #m 1 0 12778219 -silver_berry n 2 1 @ 2 0 12326369 12326178 -silver_birch n 1 2 @ #m 1 0 12282527 -silver_bromide n 1 2 @ #s 1 0 15015192 -silver_bullet n 1 1 @ 1 0 05661825 -silver_certificate n 1 1 @ 1 0 13394179 -silver_chloride n 1 1 @ 1 1 15018318 -silver_city n 1 2 @ #p 1 0 09116488 -silver_cord n 1 1 @ 1 0 13792468 -silver_dollar n 2 2 @ #m 2 1 13392262 11891541 -silver_fern n 2 2 @ #m 2 0 13213235 13213066 -silver_fir n 1 2 @ ~ 1 0 11621029 -silver_fox n 1 1 @ 1 0 02119359 -silver_grass n 1 2 @ #m 1 0 12122018 -silver_gray n 1 1 @ 1 1 04962062 -silver_grey n 1 1 @ 1 0 04962062 -silver_hake n 1 2 @ %p 1 0 02524659 -silver_iodide n 1 1 @ 1 0 15015355 -silver_jenny n 1 2 @ #m 1 0 02637475 -silver_jubilee n 1 1 @ 1 0 15250580 -silver_lace n 1 2 @ #m 1 0 12023407 -silver_lace_vine n 1 2 @ #m 1 0 12601106 -silver_lime n 1 1 @ 1 0 12204175 -silver_linden n 1 1 @ 1 0 12204175 -silver_lining n 1 1 @ 1 0 07493095 -silver_maple n 1 1 @ 1 0 12753007 -silver_medal n 1 1 @ 1 0 04220523 -silver_mine n 1 1 @ 1 0 04220717 -silver_nitrate n 1 3 @ ~ #s 1 0 15014170 -silver_oak n 1 2 @ #m 1 0 12218054 -silver_perch n 2 2 @ #m 2 0 02595339 02566489 -silver_pine n 2 1 @ 2 0 11655974 11613459 -silver_plate n 2 2 @ + 2 0 04220945 04220805 -silver_protein n 1 1 @ 1 0 04221241 -silver_quandong n 1 2 @ #p 1 0 12193205 -silver_quandong_tree n 1 3 @ #m %p 1 0 12192877 -silver_sage n 1 2 @ #m 1 0 12014085 -silver_sagebrush n 1 2 @ #m 1 0 12014085 -silver_salmon n 2 4 @ #m #p %p 2 0 07796468 02536864 -silver_screen n 2 2 @ ~ 2 0 06262943 04152829 -silver_solder n 1 1 @ 1 0 14718626 -silver_spoon n 1 1 @ 1 0 14492723 -silver_spruce n 1 1 @ 1 0 11626585 -silver_standard n 1 1 @ 1 0 13373584 -silver_star n 1 1 @ 1 0 06708167 -silver_star_medal n 1 1 @ 1 0 06708167 -silver_state n 1 3 @ #p %p 1 0 09110422 -silver_storm n 1 1 @ 1 0 11467650 -silver_thatch n 2 2 @ #m 2 0 12598027 12597798 -silver_tree n 2 2 @ #m 2 0 12220496 12201331 -silver_tree_fern n 1 2 @ #m 1 0 13187367 -silver_vine n 1 2 @ #m 1 0 12371704 -silver_wattle n 1 2 @ #m 1 0 11757653 -silver_wedding_anniversary n 1 1 @ 1 0 15250890 -silver_whiting n 1 2 @ #m 1 0 02598252 -silver_willow n 1 2 @ #m 1 0 12725940 -silverback n 1 2 @ #m 1 0 02481500 -silverbell_tree n 1 1 @ 1 0 12778398 -silverberry n 1 1 @ 1 0 12326178 -silverbush n 2 2 @ #m 2 0 12506784 12326178 -silverfish n 2 2 @ #m 2 0 02270623 01443736 -silverleaf_nightshade n 1 1 @ 1 0 12894930 -silverpoint n 1 1 @ 1 0 04221076 -silverrod n 1 1 @ 1 0 12016434 -silverside n 1 3 @ ~ #m 1 0 02602405 -silversides n 2 3 @ ~ #m 2 0 02602405 01441910 -silversmith n 1 2 @ ~ 1 0 10598749 -silverspot n 1 2 @ #m 1 0 02278463 -silverstein n 1 1 @ 1 0 11300465 -silversword n 1 2 @ #m 1 0 11926365 -silvertip n 1 1 @ 1 0 02132580 -silvertop_palmetto n 1 2 @ #m 1 0 12598027 -silvervine n 1 2 @ #m 1 0 12371704 -silverware n 1 2 @ ~ 1 0 04221424 -silverweed n 2 2 @ #m 2 0 12824735 12637123 -silverwork n 1 1 @ 1 0 04221586 -silverworker n 1 2 @ ~ 1 0 10598749 -silvery_spleenwort n 2 2 @ #m 2 0 13196738 13194918 -silvery_wormwood n 1 2 @ #m 1 0 11930353 -silvex n 1 1 @ 1 0 15042295 -silvia n 1 3 @ #m %m 1 0 01564630 -silvia_atricapilla n 1 2 @ #m 1 0 01564773 -silviculture n 1 1 @ 1 0 06072145 -silybum n 1 3 @ #m %m 1 0 12015384 -silybum_marianum n 1 2 @ #m 1 0 12015525 -sima n 1 2 @ #s 1 0 14698405 -simal n 1 2 @ #m 1 0 12189429 -simarouba n 1 3 @ #m %m 1 0 12716166 -simarouba_amara n 1 2 @ #m 1 0 12716400 -simarouba_glauca n 1 2 @ #m 1 0 12716594 -simaroubaceae n 1 3 @ #m %m 1 0 12715569 -simazine n 1 1 @ 1 0 15042429 -simchas_torah n 1 2 @ ; 1 0 15197302 -simchat_torah n 1 2 @ ; 1 0 15197302 -simenon n 1 1 @ 1 0 11300678 -simeon n 1 2 @ ; 1 0 10599068 -simhat_torah n 1 2 @ ; 1 0 15197302 -simhath_torah n 1 2 @ ; 1 0 15197302 -simian n 1 2 @ + 1 0 02470238 -similarity n 2 5 ! @ ~ = + 2 1 04743605 06251033 -simile n 1 1 @ 1 1 07108282 -similitude n 2 4 ! @ ~ = 2 1 04744814 03117939 -simmer n 1 2 @ + 1 0 05014556 -simmering n 1 2 @ + 1 0 00247792 -simmpleness n 1 1 @ 1 0 04786490 -simnel n 2 2 @ ; 2 0 07686634 07631672 -simoleons n 1 1 @ 1 0 13385216 -simon n 4 1 @ 4 0 11301414 11301279 11301129 11300893 -simon_bolivar n 1 1 @ 1 0 10855604 -simon_de_montfort n 1 1 @ 1 0 11187754 -simon_kuznets n 1 1 @ 1 0 11113266 -simon_legree n 2 1 @ 2 0 10609960 09604574 -simon_marks n 1 1 @ 1 0 11157422 -simon_newcomb n 1 1 @ 1 0 11204855 -simon_peter n 1 1 @ 1 0 11231157 -simon_the_canaanite n 1 1 @ 1 0 11301414 -simon_the_zealot n 1 1 @ 1 0 11301414 -simon_zelotes n 1 1 @ 1 0 11301414 -simone_de_beauvoir n 1 1 @ 1 0 10839617 -simone_weil n 1 1 @ 1 0 11379812 -simoniz n 1 3 @ + ; 1 0 15042542 -simony n 1 1 @ 1 0 01114172 -simoom n 1 1 @ 1 0 11507655 -simoon n 1 1 @ 1 0 11507655 -simper n 1 1 @ 1 0 06877990 -simperer n 1 2 @ + 1 0 10599215 -simple n 2 3 @ ~ ; 2 0 12212690 10599354 -simple_absence n 1 1 @ 1 0 14088918 -simple_closed_curve n 1 2 @ ~ 1 0 13868371 -simple_eye n 1 2 @ ~ 1 0 05312306 -simple_fraction n 1 2 @ ~ 1 0 13732295 -simple_fracture n 1 1 @ 1 0 14294117 -simple_fruit n 1 1 @ 1 0 13137951 -simple_harmonic_motion n 1 1 @ 1 0 07411011 -simple_interest n 1 1 @ 1 0 13318934 -simple_leaf n 1 2 @ ~ 1 0 13156083 -simple_machine n 1 2 @ ~ 1 0 03700963 -simple_mastectomy n 1 1 @ 1 0 00686027 -simple_microscope n 1 2 @ ~ 1 0 03484931 -simple_mindedness n 1 1 @ 1 0 04881369 -simple_pendulum n 1 1 @ 1 0 04221673 -simple_phobia n 1 2 @ ~ 1 0 14382238 -simple_pistil n 1 1 @ 1 0 11676963 -simple_protein n 1 2 @ ~ 1 0 14736972 -simple_regression n 1 4 @ ~ #p ; 1 0 06027264 -simple_sentence n 1 1 @ 1 0 06285435 -simple_sugar n 1 2 @ ~ 1 0 14954284 -simpleness n 4 4 @ ~ = + 4 0 04881369 04766059 04708113 04697442 -simpleton n 1 2 @ ~ 1 0 10599354 -simplicity n 5 5 ! @ ~ = + 5 2 04766059 04881369 04786490 04708113 04697442 -simplification n 3 3 @ ~ + 3 0 06739180 01211888 00192300 -simplism n 2 1 @ 2 0 06739345 01212037 -simpson n 2 1 @ 2 0 11301809 11301597 -simpson_desert n 1 2 @ #p 1 0 09172634 -simulacrum n 2 2 @ ~ 2 0 04678712 03265874 -simulated_military_operation n 1 3 @ #p ; 1 0 00959992 -simulation n 4 5 @ ~ + ; - 4 1 00899049 05666700 03777283 00754956 -simulative_electronic_deception n 1 1 @ 1 0 01251724 -simulator n 1 3 @ ~ + 1 0 04221823 -simulcast n 1 1 @ 1 0 06622449 -simuliidae n 1 3 @ #m %m 1 0 02205383 -simulium n 1 3 @ #m %m 1 0 02205523 -simultaneity n 1 3 @ ~ + 1 0 05048123 -simultaneous_equations n 1 1 @ 1 0 06671150 -simultaneous_operation n 1 1 @ 1 0 13532196 -simultaneousness n 1 3 @ ~ + 1 0 05048123 -simvastatin n 1 1 @ 1 0 04221994 -sin n 6 5 @ ~ #p + ; 6 2 04827957 00757080 13787379 09521994 06838868 01260731 -sinai n 3 3 @ #p %p 3 0 09435512 09172751 08896645 -sinai_desert n 1 2 @ #p 1 0 09172751 -sinai_peninsula n 1 3 @ #p %p 1 0 08896645 -sinanthropus n 1 1 @ 1 0 02473983 -sinapis n 1 2 @ #m 1 0 11896365 -sinapis_alba n 1 2 @ %p 1 0 11896519 -sinapis_arvensis n 1 1 @ 1 0 11896722 -sinapism n 1 1 @ 1 0 03802800 -sinatra n 1 1 @ 1 0 11302062 -sinbad n 1 1 @ 1 0 09604706 -sinbad_the_sailor n 1 1 @ 1 0 09604706 -sincerity n 4 5 ! @ ~ = + 4 3 07512315 04867130 04786595 04646548 -sinciput n 1 2 @ #p 1 0 05541097 -sinclair n 2 1 @ 2 0 11302449 11302224 -sinclair_lewis n 1 1 @ 1 0 11130474 -sind n 1 2 @ #p 1 0 08977845 -sindhi n 2 1 @ 2 0 09726037 06969705 -sine n 1 1 @ 1 0 13787379 -sine_curve n 1 1 @ 1 0 13909190 -sine_qua_non n 1 1 @ 1 1 05893261 -sine_wave n 1 1 @ 1 0 07345066 -sinecure n 2 1 @ 2 0 13248274 00604228 -sinequan n 1 1 @ 1 0 03229905 -sinew n 2 5 @ ~ #p %s + 2 0 05296253 05030418 -sinfulness n 1 3 @ ~ + 1 1 04827957 -sing-kwa n 1 1 @ 1 0 12166929 -singalong n 1 2 @ + 1 0 01255648 -singan n 1 2 @ #p 1 0 08729452 -singapore n 3 6 @ #m #p %m %p + 3 0 08997801 08997487 08997310 -singapore_dollar n 1 1 @ 1 0 13673946 -singapore_island n 1 3 @ #p %p 1 0 08997310 -singaporean n 1 3 @ #m + 1 0 09749614 -singe n 1 2 @ + 1 0 14289942 -singer n 3 3 @ ~ + 3 1 10599806 11302772 11302615 -singhalese n 2 2 @ #m 2 0 09732047 06971741 -singing n 2 4 @ ~ + - 2 1 00545501 06805297 -singing_voice n 1 2 @ ~ 1 0 06872122 -single n 2 3 @ ~ + 2 1 00132601 13742573 -single-breasted_jacket n 1 2 @ #p 1 0 04222307 -single-breasted_suit n 1 2 @ %p 1 0 04222470 -single-entry_bookkeeping n 1 1 @ 1 0 00619419 -single-foot n 1 2 @ + 1 0 00287276 -single-leaf n 1 1 @ 1 0 11610215 -single-leaf_pine n 1 1 @ 1 0 11610215 -single-leaf_pinyon n 1 1 @ 1 0 11610215 -single-member_system n 1 2 @ ; 1 0 05904313 -single-mindedness n 1 2 @ + 1 0 04863675 -single-propeller_plane n 1 1 @ 1 0 04222723 -single-reed_instrument n 1 2 @ ~ 1 0 04222847 -single-reed_woodwind n 1 2 @ ~ 1 0 04222847 -single-rotor_helicopter n 1 1 @ 1 0 04223066 -single-spacing n 1 1 @ 1 0 06402871 -single-valued_function n 1 3 @ ~ ; 1 0 13783816 -single_bed n 1 2 @ ~ 1 0 04222210 -single_combat n 1 1 @ 1 0 01176757 -single_cream n 1 1 @ 1 0 07847917 -single_crochet n 1 2 @ + 1 0 04222594 -single_dwelling n 1 1 @ 1 0 03180865 -single_entry n 1 1 @ 1 0 00619419 -single_file n 1 2 @ ~ 1 0 08428756 -single_nucleotide_polymorphism n 1 2 @ ; 1 0 11493452 -single_prop n 1 1 @ 1 0 04222723 -single_quote n 1 1 @ 1 0 06844427 -single_shell n 1 1 @ 1 0 04038338 -single_stitch n 1 2 @ + 1 0 04222594 -single_supplement n 1 1 @ 1 0 13325722 -single_tax n 1 1 @ 1 0 13310091 -singleness n 2 2 @ + 2 0 04867700 04865921 -singles n 2 1 @ 2 0 00483409 00483313 -singlestick n 1 1 @ 1 0 04223170 -singlet n 1 1 @ 1 0 04223299 -singletary_pea n 1 1 @ 1 0 12539564 -singleton n 3 2 @ ~ 3 0 13742980 07985135 04223435 -singsong n 2 2 @ + 2 1 07084927 01255648 -singular n 1 2 ! @ 1 0 06299916 -singular_form n 1 1 @ 1 0 06299916 -singular_matrix n 1 2 ! @ 1 0 08270169 -singularity n 2 2 @ + 2 1 04763650 04798365 -singultus n 1 2 @ ; 1 0 14359459 -sinhala n 1 1 @ 1 0 06971741 -sinhalese n 2 2 @ #m 2 0 09732047 06971741 -sinistrality n 1 2 @ + 1 0 05067367 -sinitic n 1 2 @ ~ 1 0 06929618 -sinitic_language n 1 2 @ ~ 1 0 06929618 -sink n 4 5 ! @ ~ %p ; 4 1 04223580 13555915 09435739 02998563 -sinker n 3 3 @ ~ + 3 0 07639069 04223778 00108965 -sinkhole n 1 1 @ 1 0 09435739 -sinkiang n 1 4 @ #p %m - 1 0 08729626 -sinking n 3 3 @ ~ + 3 2 07363883 07356266 07525367 -sinking_feeling n 1 1 @ 1 0 07525367 -sinking_fund n 1 1 @ 1 0 13359428 -sinking_spell n 1 1 @ 1 0 13556151 -sinlessness n 1 3 @ ~ + 1 0 13990064 -sinn_fein n 1 2 @ #p 1 0 08321218 -sinner n 1 3 @ ~ + 1 1 10601078 -sinning n 1 3 @ ~ + 1 1 00757080 -sinningia n 1 3 @ #m %m 1 0 12833341 -sinningia_speciosa n 1 2 @ #m 1 0 12833526 -sino-japanese_war n 1 2 @ ; 1 0 01275934 -sino-tibetan n 1 3 @ ~ ; 1 0 06930934 -sino-tibetan_language n 1 3 @ ~ ; 1 0 06930934 -sinoatrial_node n 1 1 @ 1 0 05389460 -sinologist n 1 2 @ + 1 0 10601234 -sinology n 1 2 @ + 1 0 06171524 -sinoper n 1 1 @ 1 0 14844169 -sinopia n 1 1 @ 1 0 14844169 -sinopis n 1 1 @ 1 0 14844169 -sinornis n 1 2 @ #m 1 0 01516609 -sinuosity n 1 2 @ + 1 0 13885207 -sinuousness n 1 2 @ + 1 0 13885207 -sinus n 3 2 @ ~ 3 0 05548032 05252970 05252016 -sinus_cavernosus n 1 1 @ 1 0 05252259 -sinus_coronarius n 1 1 @ 1 0 05252402 -sinus_ethmoidales n 1 1 @ 1 0 05253165 -sinus_headache n 1 1 @ 1 0 14327970 -sinus_paranasales n 1 1 @ 1 0 05253561 -sinus_rectus n 1 1 @ 1 0 05252705 -sinus_sigmoideus n 1 1 @ 1 0 05252567 -sinus_transversus n 1 1 @ 1 0 05252834 -sinus_venosus_sclerae n 1 1 @ 1 0 05251789 -sinusitis n 1 2 @ ~ 1 0 14355238 -sinusoid n 2 2 @ + 2 1 05253829 13909190 -sinusoidal_projection n 1 1 @ 1 0 04223915 -sion n 3 5 @ #p %m %p - 3 0 08796351 08792548 05632056 -siouan n 2 2 @ ~ 2 0 09669125 06920129 -siouan_language n 1 2 @ ~ 1 0 06920129 -sioux n 1 3 @ ~ + 1 1 09669125 -sioux_city n 1 2 @ #p 1 0 09087450 -sioux_falls n 1 2 @ #p 1 0 09139849 -sip n 1 2 @ + 1 1 00843494 -sipah-e-sahaba n 1 3 @ %p ; 1 0 08045140 -siphon n 2 3 @ + ; 2 0 04224155 01468913 -siphonaptera n 1 3 @ #m %m 1 0 02185973 -siphonophora n 1 3 @ #m %m 1 0 01912272 -siphonophore n 1 3 @ ~ #m 1 0 01912454 -sipper n 1 2 @ + 1 1 10601362 -sipuncula n 1 3 @ #m %m 1 0 02315696 -sipunculid n 1 2 @ #m 1 0 02315821 -siqueiros n 1 1 @ 1 0 11302962 -sir n 2 2 @ ; 2 1 10601451 10601526 -sir_alan_hodgkin n 1 1 @ 1 0 11053559 -sir_alec_guinness n 1 1 @ 1 0 11019269 -sir_alexander_fleming n 1 1 @ 1 0 10972825 -sir_alexander_korda n 1 1 @ 1 0 11109424 -sir_alexander_mackenzie n 1 1 @ 1 0 11147924 -sir_alexander_robertus_todd n 1 1 @ 1 0 11344549 -sir_alfred_charles_bernard_lovell n 1 1 @ 1 0 11141981 -sir_alfred_hitchcock n 1 1 @ 1 0 11052299 -sir_angus_wilson n 1 1 @ 1 0 11392210 -sir_anthony_hopkins n 1 1 @ 1 0 11059438 -sir_anthony_philip_hopkins n 1 1 @ 1 0 11059438 -sir_anthony_vandyke n 1 1 @ 1 0 11359867 -sir_arthur_conan_doyle n 1 1 @ 1 0 10906462 -sir_arthur_john_evans n 1 1 @ 1 0 10963254 -sir_arthur_stanley_eddington n 1 1 @ 1 0 10948478 -sir_arthur_sullivan n 1 1 @ 1 0 11324212 -sir_arthur_travers_harris n 1 1 @ 1 0 11030395 -sir_barton n 1 1 @ 1 0 02383604 -sir_bernard_law_montgomery n 1 1 @ 1 0 11188316 -sir_bernard_lovell n 1 1 @ 1 0 11141981 -sir_bernard_williams n 1 1 @ 1 0 11390170 -sir_charles_leonard_woolley n 1 1 @ 1 0 11397094 -sir_charles_scott_sherrington n 1 1 @ 1 0 11298240 -sir_charles_spencer_chaplin n 1 1 @ 1 0 10890637 -sir_charles_wheatstone n 1 1 @ 1 0 11383100 -sir_charles_william_siemens n 1 1 @ 1 0 11299890 -sir_christopher_wren n 1 1 @ 1 0 11398195 -sir_clive_marles_sinclair n 1 1 @ 1 0 11302224 -sir_david_alexander_cecil_low n 1 1 @ 1 0 11142155 -sir_david_bruce n 1 1 @ 1 0 10867708 -sir_david_low n 1 1 @ 1 0 11142155 -sir_edmund_hillary n 1 1 @ 1 0 11050183 -sir_edmund_percival_hillary n 1 1 @ 1 0 11050183 -sir_edward_elgar n 1 1 @ 1 0 10956134 -sir_edward_victor_appleton n 1 1 @ 1 0 10820613 -sir_edward_william_elgar n 1 1 @ 1 0 10956134 -sir_edwin_landseer_luytens n 1 1 @ 1 0 11145563 -sir_edwin_lutyens n 1 1 @ 1 0 11145563 -sir_ernst_boris_chain n 1 1 @ 1 0 10891029 -sir_francis_bacon n 1 1 @ 1 0 10830456 -sir_francis_drake n 1 1 @ 1 0 10942866 -sir_francis_galton n 1 1 @ 1 0 10988570 -sir_frank_whittle n 1 1 @ 1 0 11385442 -sir_fred_hoyle n 1 1 @ 1 0 11063309 -sir_frederick_ashton n 1 1 @ 1 0 10825923 -sir_frederick_gowland_hopkins n 1 1 @ 1 0 11059593 -sir_frederick_grant_banting n 1 1 @ 1 0 10833805 -sir_frederick_handley_page n 1 1 @ 1 0 11220149 -sir_frederick_william_herschel n 1 1 @ 1 0 11045898 -sir_galahad n 1 2 @ ; 1 0 10987176 -sir_gawain n 1 2 @ ; 1 0 10992933 -sir_geoffrey_wilkinson n 1 1 @ 1 0 11387806 -sir_george_otto_trevelyan n 1 1 @ 1 0 11348356 -sir_george_paget_thomson n 1 1 @ 1 0 11340411 -sir_geraint n 1 2 @ ; 1 0 10996533 -sir_hans_adolf_krebs n 1 1 @ 1 0 11110617 -sir_harold_george_nicolson n 1 1 @ 1 0 11206544 -sir_harold_walter_kroto n 1 1 @ 1 0 11111335 -sir_harry_maclennan_lauder n 1 1 @ 1 0 11118886 -sir_henry_bessemer n 1 1 @ 1 0 10849873 -sir_henry_joseph_wood n 1 1 @ 1 0 11395773 -sir_henry_maxmilian_beerbohm n 1 1 @ 1 0 10841241 -sir_henry_morgan n 1 1 @ 1 0 11190774 -sir_henry_morton_stanley n 1 1 @ 1 0 11313011 -sir_henry_percy n 1 1 @ 1 0 11229499 -sir_henry_rider_haggard n 1 1 @ 1 0 11022001 -sir_henry_wood n 1 1 @ 1 0 11395773 -sir_herbert_beerbohm_tree n 1 1 @ 1 0 11348160 -sir_hiram_stevens_maxim n 1 1 @ 1 0 11166060 -sir_howard_walter_florey n 1 1 @ 1 0 10973497 -sir_humphrey_davy n 1 1 @ 1 0 10925132 -sir_humphrey_gilbert n 1 1 @ 1 0 10999202 -sir_isaac_newton n 1 1 @ 1 0 11205375 -sir_isaac_pitman n 1 1 @ 1 0 11236043 -sir_jack_hobbs n 1 1 @ 1 0 11053218 -sir_jacob_epstein n 1 1 @ 1 0 10959664 -sir_james_augustus_henry_murray n 1 1 @ 1 0 11197099 -sir_james_augustus_murray n 1 1 @ 1 0 11197099 -sir_james_clark_ross n 1 1 @ 1 0 11271094 -sir_james_dewar n 1 1 @ 1 0 10932696 -sir_james_george_frazer n 1 1 @ 1 0 10979694 -sir_james_matthew_barrie n 1 1 @ 1 0 10835022 -sir_james_murray n 1 1 @ 1 0 11197099 -sir_james_paget n 1 1 @ 1 0 11220319 -sir_james_paul_mccartney n 1 2 @ #m 1 0 11167952 -sir_james_young_simpson n 1 1 @ 1 0 11301597 -sir_john_carew_eccles n 1 1 @ 1 0 10947922 -sir_john_cockcroft n 1 1 @ 1 0 10903918 -sir_john_cowdery_kendrew n 1 1 @ 1 0 11100619 -sir_john_douglas_cockcroft n 1 1 @ 1 0 10903918 -sir_john_everett_millais n 1 1 @ 1 0 11179666 -sir_john_falstaff n 1 1 @ 1 0 09598750 -sir_john_frederick_william_herschel n 1 1 @ 1 0 11046169 -sir_john_gielgud n 1 1 @ 1 0 10998860 -sir_john_hawkins n 1 1 @ 1 0 11035132 -sir_john_hawkyns n 1 1 @ 1 0 11035132 -sir_john_herschel n 1 1 @ 1 0 11046169 -sir_john_ross n 1 1 @ 1 0 11271349 -sir_john_suckling n 1 1 @ 1 0 11323448 -sir_john_tenniel n 1 1 @ 1 0 11335226 -sir_john_vanbrigh n 1 1 @ 1 0 11358598 -sir_joseph_banks n 1 1 @ 1 0 10833425 -sir_joseph_john_thomson n 1 1 @ 1 0 11340146 -sir_joseph_paxton n 1 1 @ 1 0 11227499 -sir_joshua_reynolds n 1 1 @ 1 0 11258769 -sir_karl_raimund_popper n 1 1 @ 1 0 11242849 -sir_lancelot n 1 2 @ ; 1 0 11115293 -sir_laurence_kerr_olivier n 1 1 @ 1 0 11214320 -sir_leonard_hutton n 1 1 @ 1 0 11069430 -sir_leonard_woolley n 1 1 @ 1 0 11397094 -sir_leslie_stephen n 1 1 @ 1 0 11316567 -sir_martin_frobisher n 1 1 @ 1 0 10983503 -sir_matthew_flinders n 1 1 @ 1 0 10973339 -sir_mortimer_wheeler n 1 1 @ 1 0 11383278 -sir_noel_pierce_coward n 1 1 @ 1 0 10913641 -sir_oliver_joseph_lodge n 1 1 @ 1 0 11136973 -sir_oliver_lodge n 1 1 @ 1 0 11136973 -sir_patrick_manson n 1 1 @ 1 0 11154646 -sir_paul_gavrilovich_vinogradoff n 1 1 @ 1 0 11366895 -sir_peter_brian_medawar n 1 1 @ 1 0 11170913 -sir_peter_paul_rubens n 1 1 @ 1 0 11273104 -sir_peter_ustinov n 1 1 @ 1 0 11358065 -sir_philip_sidney n 1 1 @ 1 0 11299672 -sir_rabindranath_tagore n 1 1 @ 1 0 11329030 -sir_ralph_david_richardson n 1 1 @ 1 0 11261184 -sir_rex_harrison n 1 1 @ 1 0 11031995 -sir_richard_burton n 1 1 @ 1 0 10875249 -sir_richard_francis_burton n 1 1 @ 1 0 10875249 -sir_richard_owen n 1 1 @ 1 0 11218938 -sir_richrd_steele n 1 1 @ 1 0 11314119 -sir_robert_eric_mortimer_wheeler n 1 1 @ 1 0 11383278 -sir_robert_peel n 1 1 @ 1 0 11228039 -sir_robert_robinson n 1 1 @ 1 0 11266524 -sir_robert_walpole n 1 1 @ 1 0 11372372 -sir_roger_gilbert_bannister n 1 1 @ 1 0 10833595 -sir_ronald_ross n 1 1 @ 1 0 11270948 -sir_sarvepalli_radhakrishnan n 1 1 @ 1 0 11251995 -sir_seretse_khama n 1 1 @ 1 0 11103864 -sir_stephen_harold_spender n 1 1 @ 1 0 11310523 -sir_terence_mervyn_rattigan n 1 1 @ 1 0 11254950 -sir_thomas_gresham n 1 1 @ 1 0 11015420 -sir_thomas_lawrence n 1 1 @ 1 0 11120633 -sir_thomas_malory n 1 1 @ 1 0 11152331 -sir_thomas_more n 1 1 @ 1 0 11190183 -sir_thomas_raffles n 1 1 @ 1 0 11252222 -sir_thomas_stamford_raffles n 1 1 @ 1 0 11252222 -sir_thomas_wyat n 1 1 @ 1 0 11399446 -sir_thomas_wyatt n 1 1 @ 1 0 11399446 -sir_tim_rice n 1 1 @ 1 0 11259777 -sir_tom_stoppard n 1 1 @ 1 0 11320245 -sir_walter_norman_haworth n 1 1 @ 1 0 11035363 -sir_walter_ralegh n 1 1 @ 1 0 11252627 -sir_walter_raleigh n 1 1 @ 1 0 11252627 -sir_walter_scott n 1 1 @ 1 0 11289161 -sir_william_alexander_craigie n 1 1 @ 1 0 10914134 -sir_william_chambers n 1 1 @ 1 0 10889905 -sir_william_crookes n 1 1 @ 1 0 10916505 -sir_william_gerald_golding n 1 1 @ 1 0 11004731 -sir_william_gilbert n 1 1 @ 1 0 10999584 -sir_william_herschel n 1 1 @ 1 0 11045898 -sir_william_huggins n 1 1 @ 1 0 11064472 -sir_william_rowan_hamilton n 1 1 @ 1 0 11026231 -sir_william_turner_walton n 1 1 @ 1 0 11373231 -sir_william_wallace n 1 1 @ 1 0 11371778 -sir_william_walton n 1 1 @ 1 0 11373231 -sir_winston_leonard_spenser_churchill n 1 1 @ 1 0 10897312 -sir_yehudi_menuhin n 1 1 @ 1 0 11175040 -sirach n 1 2 @ #p 1 0 06460295 -siracusa n 1 2 @ #p 1 0 08810051 -siraj-ud-daula n 1 1 @ 1 0 11303132 -sirc n 1 2 @ ; 1 0 08346905 -sirdar n 1 1 @ 1 0 10601644 -sire n 3 3 @ ~ + 3 0 10601725 10102800 01323355 -siren n 5 3 @ ~ #m 5 0 10601840 10055410 07265789 04224395 01639187 -siren_call n 1 1 @ 1 0 04687633 -siren_song n 1 1 @ 1 0 04687633 -sirenia n 1 3 @ #m %m 1 0 02073041 -sirenian n 1 3 @ ~ #m 1 0 02073250 -sirenian_mammal n 1 3 @ ~ #m 1 0 02073250 -sirenidae n 1 3 @ #m %m 1 0 01638952 -siriasis n 1 1 @ 1 0 14204586 -siris n 1 1 @ 1 0 11759609 -siris_tree n 1 1 @ 1 0 11759609 -sirius n 1 2 @ #m 1 0 09435965 -sirloin n 1 3 @ #p %p 1 1 07658958 -sirloin_steak n 1 2 @ #p 1 0 07659684 -sirloin_tip n 1 2 @ #p 1 0 07659560 -sirocco n 1 1 @ 1 0 11448153 -sirrah n 1 1 @ 1 0 10602119 -sirup n 1 2 @ ~ 1 0 07859583 -sis n 1 2 @ ~ 1 1 10602985 -sisal n 2 3 @ #m #s 2 0 15042654 12477401 -sisal_family n 1 3 @ #m %m 1 0 12476036 -sisal_hemp n 1 2 @ #s 1 0 15042654 -sise n 1 1 @ 1 0 13744722 -sisham n 1 2 @ #m 1 0 12522894 -siskin n 1 1 @ 1 0 01531512 -siskiyou_lewisia n 1 2 @ #m 1 0 11860208 -sison n 1 3 @ #m %m 1 0 12944590 -sison_amomum n 1 2 @ #m 1 0 12944723 -sissiness n 1 4 @ ~ + ; 1 0 04668139 -sissoo n 1 2 @ #m 1 0 12522894 -sissu n 1 2 @ #m 1 0 12522894 -sissy n 1 1 @ 1 0 10603378 -sister n 4 6 ! @ ~ #m + ; 4 1 10602985 10602470 10602258 09827363 -sister-in-law n 1 1 @ 1 1 10603766 -sister_ship n 1 1 @ 1 0 04224543 -sisterhood n 3 3 @ %m + 3 0 13814184 08407449 08075647 -sistership n 2 1 @ 2 0 13814184 08407449 -sistine_chapel n 1 2 @ #p 1 0 04224671 -sistrurus n 1 3 @ #m %m 1 0 01757547 -sistrurus_catenatus n 1 2 @ #m 1 0 01757677 -sistrurus_miliaris n 1 1 @ 1 0 01757901 -sisymbrium_barbarea n 1 2 @ #p 1 0 11874081 -sisymbrium_officinale n 1 2 @ #m 1 0 11897116 -sisymbrium_tanacetifolia n 1 2 @ #m 1 0 11889205 -sisyphus n 1 3 @ + ; 1 0 09498697 -sisyridae n 1 3 @ #m %m 1 0 02267644 -sisyrinchium n 1 3 @ #m %m 1 0 12418065 -sit-down n 1 1 @ 1 1 01243969 -sit-down_strike n 1 1 @ 1 0 01243969 -sit-in n 1 2 @ + 1 0 01178850 -sit-up n 1 2 @ + 1 0 00630786 -sita n 1 1 @ 1 0 09531296 -sitar n 1 1 @ 1 0 04224842 -sitar_player n 1 2 @ ~ 1 0 10603851 -sitcom n 2 1 @ 2 0 07017733 07017379 -site n 3 3 @ ~ + 3 2 08651247 08622950 06359193 -site_visit n 1 1 @ 1 0 00652311 -sitka n 1 2 @ #p 1 0 09056278 -sitka_spruce n 1 1 @ 1 0 11626152 -sitka_willow n 1 2 @ #m 1 0 12730370 -sitophylus n 1 3 @ #m %m 1 0 02182796 -sitophylus_oryzae n 1 2 @ #m 1 0 02182930 -sitotroga n 1 3 @ #m %m 1 0 02293974 -sitotroga_cerealella n 1 2 @ #m 1 0 02294097 -sitsang n 1 5 @ #p %m %p - 1 0 08906952 -sitta n 1 3 @ #m %m 1 0 01590837 -sitta_canadensis n 1 2 @ #m 1 0 01591123 -sitta_carolinensis n 1 2 @ #m 1 0 01591301 -sitta_europaea n 1 2 @ #m 1 0 01591005 -sitter n 5 4 ! @ + ; 5 0 11303522 10603959 09829305 09813219 01792955 -sittidae n 1 3 @ #m %m 1 0 01590443 -sitting n 4 4 @ %p + ; 4 2 00344421 00344259 08417920 07146190 -sitting_bull n 1 1 @ 1 0 11303698 -sitting_duck n 1 1 @ 1 0 10604089 -sitting_room n 1 3 @ ~ #p 1 1 03679712 -sitting_trot n 1 2 ! @ 1 0 00287889 -situation n 5 3 @ ~ + 5 2 13927383 13925752 14411243 08622950 00586262 -situation_comedy n 2 1 @ 2 0 07017733 07017379 -sitwell n 1 1 @ 1 0 11304011 -sitz_bath n 1 1 @ 1 0 04225031 -sium n 1 3 @ #m %m 1 0 12944960 -sium_latifolium n 1 2 @ #m 1 0 12945366 -sium_sisarum n 1 2 @ #m 1 0 12945549 -sium_suave n 1 2 @ #m 1 0 12945177 -siva n 1 3 @ ~ #m 1 0 09528727 -sivaism n 2 3 @ #m %m 2 0 08097072 06238931 -sivan n 1 2 @ #p 1 0 15216189 -sivapithecus n 1 2 @ #m 1 0 02477782 -siwan n 1 2 @ #p 1 0 15216189 -six n 2 1 @ 2 1 13744722 04225417 -six-day_war n 1 2 @ ; 1 0 01302449 -six-footer n 1 1 @ 1 0 10604180 -six-gilled_shark n 1 2 @ #m 1 0 01483021 -six-gun n 1 2 @ ~ 1 0 04086273 -six-lined_racerunner n 1 1 @ 1 0 01686044 -six-pack n 1 1 @ 1 0 04225222 -six-shooter n 1 2 @ ~ 1 0 04086273 -six-spot n 1 1 @ 1 0 04225417 -six_day_war n 1 2 @ ; 1 0 01302449 -six_nations n 1 1 @ 1 0 08305277 -six_pack n 1 1 @ 1 0 04225222 -sixer n 1 1 @ 1 0 13744722 -sixpack n 1 1 @ 1 0 04225222 -sixpence n 1 2 @ ; 1 0 13391452 -sixpenny_nail n 1 1 @ 1 0 04225337 -sixsome n 1 1 @ 1 0 07987689 -sixteen n 1 1 @ 1 0 13747606 -sixteen_personality_factor_questionnaire n 1 1 @ 1 0 06475933 -sixteenth n 2 1 @ 2 0 13848466 13738585 -sixteenth_note n 1 1 @ 1 0 06871534 -sixteenth_part n 1 1 @ 1 0 13738585 -sixth n 3 1 @ 3 0 13847402 13737952 06859925 -sixth-former n 1 2 @ ; 1 0 10604275 -sixth_baron_byron_of_rochdale n 1 1 @ 1 0 10877253 -sixth_cranial_nerve n 1 1 @ 1 0 05479108 -sixth_crusade n 1 1 @ 1 0 00970079 -sixth_sense n 1 1 @ 1 0 05708207 -sixties n 2 2 @ #p 2 2 15150134 15150013 -sixtieth n 2 1 @ 2 0 13849296 13738840 -sixtus_iv n 1 1 @ 1 0 11304139 -sixty n 1 1 @ 1 0 13749778 -sixty-fourth n 1 1 @ 1 0 13738939 -sixty-fourth_note n 1 1 @ 1 0 06871828 -sixty-nine n 1 1 @ 1 0 00855407 -size n 5 5 @ ~ = + ; 5 2 05098942 05095691 14706372 13937727 05099231 -size_constancy n 1 1 @ 1 0 05709766 -size_of_it n 1 2 @ ; 1 1 13937727 -size_stick n 1 1 @ 1 0 04225578 -sizeableness n 1 3 @ ~ + 1 0 05104548 -sizing n 1 2 @ + 1 0 14706372 -sizzle n 1 1 @ 1 0 07393919 -sjaelland n 1 3 @ #p %m 1 0 08761697 -sk-ampicillin n 1 2 @ ; 1 0 02705651 -skag n 1 2 @ ; 1 0 02837416 -skagens_odde n 1 2 @ #p 1 0 09436132 -skagerak n 1 2 @ #p 1 0 09436299 -skagerrak n 1 2 @ #p 1 0 09436299 -skagit n 2 1 @ 2 0 09669942 06914331 -skagway n 1 2 @ #p 1 0 09056476 -skanda n 1 1 @ 1 0 09529013 -skank n 2 2 @ + 2 0 14856752 00527319 -skate n 2 4 @ ~ #m + 2 0 04225729 01501160 -skateboard n 1 2 @ + 1 0 04225987 -skateboarder n 1 2 @ + 1 0 10604380 -skateboarding n 1 2 @ + 1 0 00449054 -skater n 1 3 @ ~ + 1 0 10604491 -skating n 1 3 @ ~ + 1 0 00448466 -skating_rink n 1 2 @ ~ 1 0 04093625 -skaw n 1 2 @ #p 1 0 09436132 -skeat n 1 1 @ 1 0 11304354 -skedaddle n 1 1 @ 1 0 00060747 -skeen_arch n 1 1 @ 1 0 04226172 -skeet n 1 1 @ 1 1 00124342 -skeet_shooting n 1 1 @ 1 0 00124342 -skeeter_hawk n 1 1 @ 1 0 02268443 -skeg n 1 2 @ #p 1 0 04226322 -skein n 1 1 @ 1 0 04226464 -skeletal_frame n 1 3 @ ~ #p 1 0 04226537 -skeletal_muscle n 1 3 @ ~ %p 1 0 05289861 -skeletal_structure n 1 3 @ ~ #p 1 0 05585665 -skeletal_system n 1 4 @ ~ #p %p 1 0 05585383 -skeleton n 4 5 @ ~ #p %p + 4 0 13763626 07306481 05585383 04226537 -skeleton_fork_fern n 1 1 @ 1 0 13217005 -skeleton_in_the_closet n 1 1 @ 1 0 07306481 -skeleton_in_the_cupboard n 1 1 @ 1 0 07306481 -skeleton_key n 1 1 @ 1 0 04226826 -skeleton_shrimp n 1 2 @ #m 1 0 01993525 -skene_arch n 1 1 @ 1 0 04226172 -skep n 2 1 @ 2 0 04227050 04226962 -skepful n 1 1 @ 1 0 13769994 -skeptic n 1 3 @ ~ + 1 1 10604634 -skepticism n 2 2 @ + 2 1 05698982 05980051 -sketch n 4 4 @ ~ #p + 4 3 04227144 07203016 06469694 06780678 -sketch_block n 1 1 @ 1 0 04227370 -sketch_map n 1 1 @ 1 1 04227618 -sketch_pad n 1 1 @ 1 1 04227370 -sketchbook n 1 1 @ 1 0 04227370 -sketcher n 2 2 @ + 2 0 10604880 04227519 -sketchiness n 1 2 @ + 1 0 14462565 -skew_arch n 1 1 @ 1 0 04227787 -skew_correlation n 1 2 @ ; 1 0 06031657 -skewer n 1 3 @ ~ + 1 0 04227900 -skewness n 1 2 @ + 1 0 05066195 -ski n 1 3 @ ~ + 1 0 04228054 -ski-plane n 1 1 @ 1 0 04230487 -ski_binding n 1 1 @ 1 0 04228215 -ski_boot n 1 1 @ 1 0 04228581 -ski_cap n 1 1 @ 1 0 04228693 -ski_conditions n 1 1 @ 1 0 13926068 -ski_jacket n 1 1 @ 1 0 04230387 -ski_jump n 1 2 @ + 1 0 04229620 -ski_jumper n 1 1 @ 1 0 10605375 -ski_jumping n 1 2 @ + 1 0 00441073 -ski_lift n 1 2 @ ~ 1 0 04231693 -ski_lodge n 1 1 @ 1 0 04229737 -ski_mask n 1 2 @ %p 1 0 04229816 -ski_parka n 1 1 @ 1 0 04230387 -ski_pole n 1 1 @ 1 0 04230603 -ski_race n 1 2 @ ~ 1 0 07463733 -ski_rack n 1 1 @ 1 0 04230707 -ski_resort n 1 1 @ 1 0 08652376 -ski_run n 1 2 @ ~ 1 0 04231575 -ski_slope n 1 1 @ 1 0 09436444 -ski_tow n 1 2 @ ~ 1 0 04231693 -ski_trail n 1 2 @ ~ 1 0 04231575 -ski_wax n 1 1 @ 1 0 15042772 -skiagram n 1 2 @ ~ 1 0 04042358 -skiagraph n 1 2 @ ~ 1 0 04042358 -skiagraphy n 1 2 @ ~ 1 0 13545382 -skibob n 1 1 @ 1 0 04228422 -skid n 3 4 @ #p %p + 3 0 04228844 02890940 00329031 -skid_lid n 1 2 @ ; 1 0 04229107 -skid_road n 2 1 @ 2 0 08652156 04229363 -skid_row n 1 1 @ 1 0 08652256 -skidder n 3 3 @ ~ + 3 0 10605088 10604979 04229007 -skidpan n 1 2 @ ; 1 0 04229195 -skier n 1 3 @ ~ + 1 0 10605253 -skiff n 1 2 @ ~ 1 1 04229480 -skiffle n 1 2 @ ; 1 0 07066459 -skiffle_group n 1 2 @ ; 1 0 08250635 -skiing n 1 5 @ ~ %p + - 1 0 00440747 -skiing_race n 1 2 @ ~ 1 0 07463733 -skill n 2 2 @ ~ 2 2 05637558 05636887 -skilled_worker n 1 2 @ ~ 1 1 10605985 -skilled_workman n 1 2 @ ~ 1 0 10605985 -skillet n 1 3 @ ~ %p 1 0 03400231 -skillet_bread n 1 1 @ 1 0 07685546 -skillet_cake n 1 1 @ 1 0 07634141 -skillet_corn_bread n 1 1 @ 1 0 07688130 -skillet_fish n 1 1 @ 1 0 02635781 -skilletfish n 1 1 @ 1 0 02635781 -skillfulness n 1 4 ! @ ~ + 1 0 05640433 -skilly n 1 1 @ 1 0 07704305 -skim n 2 2 @ + 2 0 09436531 06598746 -skim_milk n 1 2 ! @ 1 0 07846557 -skimmed_milk n 1 1 @ 1 0 07846557 -skimmer n 4 3 @ #m + 4 0 10605510 04229959 02859184 02043808 -skimming n 4 2 @ + 4 1 01262574 06598746 00784271 00150762 -skin n 6 6 @ ~ #p %s %p + 6 4 05238282 04230093 01895735 13962048 07738353 04230221 -skin-dive n 1 3 @ ~ + 1 0 00444651 -skin-diver n 1 2 @ + 1 0 10607291 -skin_and_bones n 1 2 @ ~ 1 0 10708797 -skin_cancer n 1 2 @ ~ 1 0 14252320 -skin_care n 1 2 @ ~ 1 0 00665679 -skin_cell n 1 3 @ ~ #p 1 0 05241072 -skin_color n 1 3 @ ~ = 1 0 04976952 -skin_colour n 1 3 @ ~ = 1 0 04976952 -skin_disease n 1 2 @ ~ 1 0 14219661 -skin_disorder n 1 2 @ ~ 1 0 14219661 -skin_diving n 1 2 @ ~ 1 0 00444651 -skin_doctor n 1 1 @ 1 0 10006177 -skin_effect n 1 1 @ 1 0 11507797 -skin_eruption n 1 1 @ 1 0 14321814 -skin_flick n 1 3 @ ~ ; 1 0 06617413 -skin_graft n 1 1 @ 1 0 05239437 -skin_patch n 1 2 @ ~ 1 0 04470741 -skin_perceptiveness n 1 1 @ 1 1 05721990 -skin_rash n 1 2 @ ~ 1 0 14321953 -skin_sensation n 1 2 @ ~ 1 0 05723210 -skin_senses n 1 2 @ #p 1 0 05655119 -skin_test n 1 2 @ ~ 1 0 05745098 -skin_tumor n 1 2 @ ~ 1 0 14235667 -skincare n 1 2 @ ~ 1 0 00665679 -skinflint n 1 2 @ ~ 1 0 10357737 -skinful n 1 2 @ ; 1 0 13769672 -skinhead n 1 2 @ #m 1 0 10607478 -skinheads n 1 2 @ %m 1 0 08371200 -skink n 1 3 @ ~ #m 1 0 01684133 -skinner n 5 2 @ + 5 0 11304811 11304669 11304461 10607706 10338094 -skinnerian n 1 2 @ + 1 0 10605608 -skinniness n 1 2 @ + 1 0 05001724 -skinny n 1 1 @ 1 0 07218853 -skinny-dip n 1 2 @ + 1 0 00442654 -skinny-dipper n 1 2 @ + 1 0 10605737 -skip n 2 3 @ ~ + 2 0 00289906 00074624 -skip_distance n 1 1 @ 1 0 05130402 -skip_rope n 1 1 @ 1 0 03605233 -skipjack n 3 2 @ #m 3 0 02628600 02628062 02176439 -skipjack_tuna n 1 2 @ #m 1 0 02628600 -skipper n 3 4 @ ~ + ; 3 0 10607824 10298912 09892831 -skipping_rope n 1 1 @ 1 0 03605233 -skirl n 1 2 @ + 1 0 07393988 -skirmish n 1 3 @ ~ + 1 1 00959376 -skirmisher n 1 2 @ + 1 1 10605848 -skirret n 1 2 @ #m 1 0 12945549 -skirt n 4 5 @ ~ #p %p ; 4 2 04231272 04230808 13095348 09989045 -skirt_chaser n 1 1 @ 1 0 10787197 -skirt_of_tasses n 1 2 @ #p 1 0 04231444 -skirting_board n 1 1 @ 1 0 02800354 -skit n 1 1 @ 1 1 00551508 -skittishness n 1 2 @ + 1 0 04625716 -skittle n 1 2 @ + 1 0 03825271 -skittle_alley n 1 3 @ #p %p 1 0 02882014 -skittle_ball n 1 1 @ 1 0 03825442 -skittle_pin n 1 1 @ 1 0 03825271 -skittles n 1 1 @ 1 0 00462383 -skivvies n 1 2 @ ; 1 0 04231905 -skivvy n 1 2 @ ; 1 0 10607933 -skopje n 1 2 @ #p 1 0 08961852 -skoplje n 1 2 @ #p 1 0 08961852 -skua n 1 3 @ ~ #m 1 0 02044778 -skuld n 1 1 @ 1 0 09582845 -skulduggery n 1 1 @ 1 0 06760722 -skulker n 2 2 @ + 2 0 10286539 10277352 -skulking n 1 2 @ + 1 1 00741272 -skull n 1 3 @ #p %p 1 1 05540121 -skull_and_crossbones n 1 2 @ #p 1 0 04232034 -skull_practice n 1 1 @ 1 0 00896114 -skull_session n 2 1 @ 2 0 07147733 00896114 -skullcap n 3 3 @ ~ #p 3 1 04232153 12867826 05540407 -skullduggery n 1 1 @ 1 0 06760722 -skunk n 4 3 @ ~ + 4 1 10539715 07476495 03990834 02445715 -skunk-weed n 1 1 @ 1 0 12810151 -skunk_bear n 1 2 @ #m 1 0 02449183 -skunk_cabbage n 2 2 @ #m 2 0 11792742 11789066 -skunkbush n 1 1 @ 1 0 12764507 -skunkweed n 1 1 @ 1 0 12810151 -sky n 1 4 @ ~ #p %p 1 1 09436708 -sky-blue n 1 1 @ 1 0 04969242 -sky_burial n 1 1 @ 1 0 07451903 -sky_glow n 1 1 @ 1 0 11463647 -sky_marshal n 1 2 @ ; 1 0 09781171 -sky_pilot n 1 2 @ ; 1 0 10316527 -sky_wave n 1 2 @ ~ 1 0 11500122 -skybox n 1 1 @ 1 0 04232312 -skycap n 1 1 @ 1 0 10608073 -skydiver n 1 2 @ + 1 0 10608188 -skydiving n 1 2 @ + 1 0 00304040 -skye_terrier n 1 2 @ ~ 1 0 02097786 -skyhook n 2 1 @ 2 0 04232543 04232437 -skylab n 1 1 @ 1 0 04232691 -skylark n 1 2 @ #m 1 0 01527917 -skylight n 1 1 @ 1 1 04232800 -skyline n 2 2 @ #p 2 0 08651735 08585657 -skyrocket n 2 2 @ + 2 0 07263053 04232902 -skysail n 1 1 @ 1 0 04233027 -skyscraper n 1 2 @ ~ 1 1 04233124 -skywalk n 1 1 @ 1 0 04233295 -skyway n 1 2 @ ~ 1 0 08492546 -skywriting n 1 1 @ 1 0 06403852 -sl n 1 2 @ ; 1 0 08044676 -slab n 1 2 @ ~ 1 1 04233405 -slack n 6 2 @ + 6 0 14858099 13556509 09436906 09355850 04775357 04233556 -slack_suit n 1 2 @ ~ 1 0 04233832 -slack_tide n 1 1 @ 1 0 07403779 -slack_water n 2 1 @ 2 0 09436906 07403779 -slackening n 1 3 @ ~ + 1 0 07443210 -slacker n 1 4 @ ~ + ; 1 0 10608385 -slacking n 1 2 @ + 1 0 00741478 -slackness n 3 2 @ + 3 0 05042138 04775357 04666416 -slacks n 1 2 @ ; 1 1 04233715 -slag n 1 2 @ ~ 1 0 15042856 -slag_code n 1 1 @ 1 0 06585203 -slagheap n 1 1 @ 1 0 07962991 -slain n 1 1 @ 1 1 07950592 -slaked_lime n 1 1 @ 1 0 14936010 -slalom n 1 2 @ + 1 0 07463950 -slam n 4 4 @ ~ #p + 4 0 07474645 07394115 07338970 06767922 -slam_dance n 1 2 @ + 1 0 00527498 -slam_dancing n 1 2 @ + 1 0 00527498 -slam_dunk n 2 2 @ + 2 0 04757350 00110745 -slammer n 2 3 @ ~ + 2 0 10608658 03592245 -slander n 2 3 @ ~ + 2 0 06720600 01220336 -slanderer n 1 2 @ + 1 0 09999135 -slang n 2 4 @ ~ + - 2 0 07159467 07157273 -slang_expression n 1 1 @ 1 0 07159467 -slang_term n 1 1 @ 1 0 07159467 -slanginess n 1 2 @ + 1 0 04912506 -slanguage n 1 1 @ 1 0 07281523 -slant n 2 3 @ ~ + 2 2 06211078 05069199 -slant-eye n 1 2 @ ; 1 0 09643799 -slap n 2 3 @ ~ + 2 0 07410745 00133668 -slapper n 1 2 @ + 1 0 10608803 -slapshot n 1 2 @ #p 1 0 01264795 -slapstick n 2 1 @ 2 1 07017877 04233960 -slash n 4 2 @ + 4 0 14287113 09437098 06844903 00388065 -slash_pocket n 1 1 @ 1 0 04234260 -slasher n 2 2 @ + 2 0 10609092 04234160 -slask n 1 2 @ #p 1 0 09166534 -slat n 1 4 @ ~ #p + 1 1 04234455 -slate n 4 2 @ + 4 1 04234670 15043002 14700162 06495948 -slate-colored_junco n 1 1 @ 1 0 01534582 -slate_club n 1 2 @ ; 1 0 08230294 -slate_pencil n 1 1 @ 1 0 04234763 -slate_roof n 1 1 @ 1 1 04234887 -slater n 1 2 @ ~ 1 0 01991028 -slating n 3 2 @ + 3 0 15043002 06712498 01105152 -slattern n 2 2 @ + 2 0 10663315 10609198 -slatternliness n 1 2 @ + 1 0 04896995 -slaughter n 3 4 @ ~ #p + 3 2 00223854 07476623 00223983 -slaughterer n 1 3 @ ~ + 1 0 09884133 -slaughterhouse n 1 1 @ 1 0 02666943 -slav n 1 4 @ ~ #m + 1 0 09676884 -slave n 3 3 @ ~ + 3 2 10609325 10609556 10609686 -slave-maker n 1 2 @ ~ 1 0 02221820 -slave-making_ant n 1 2 @ ~ 1 0 02221820 -slave_ant n 1 2 @ ~ 1 0 02221571 -slave_dealer n 1 2 @ ~ 1 1 10610201 -slave_driver n 2 1 @ 2 0 10609960 10609871 -slave_market n 1 2 @ ; 1 0 04234969 -slave_owner n 1 1 @ 1 0 10610096 -slave_ship n 1 1 @ 1 0 04235165 -slave_state n 1 3 ! @ #p 1 0 09049909 -slave_trade n 1 1 @ 1 1 01114284 -slave_trader n 1 2 @ ~ 1 0 10610201 -slave_traffic n 1 1 @ 1 0 01114284 -slaveholder n 1 1 @ 1 0 10610096 -slaveholding n 1 1 @ 1 0 00415442 -slaver n 2 2 @ ~ 2 0 10610201 10610096 -slavery n 3 3 @ ~ + 3 2 13997253 00415442 00623545 -slavey n 1 2 @ ; 1 0 10607933 -slavic n 1 3 @ ~ + 1 1 06943771 -slavic_language n 1 2 @ ~ 1 0 06943771 -slavic_people n 1 2 @ %m 1 0 09676746 -slavic_race n 1 2 @ %m 1 0 09676746 -slavonic n 1 2 @ ~ 1 0 06943771 -slavonic_language n 1 2 @ ~ 1 0 06943771 -slaw n 1 1 @ 1 0 07808587 -slayer n 1 3 @ ~ + 1 0 10231087 -slaying n 1 3 @ ~ + 1 0 00220522 -sle n 1 1 @ 1 0 14221311 -sleaze n 1 2 @ + 1 0 04818460 -sleaziness n 2 3 @ ~ + 2 0 04874223 04816761 -sled n 1 4 @ ~ %p + 1 0 04235291 -sled_dog n 1 2 @ ~ 1 0 02109811 -sledder n 1 3 @ ~ + 1 0 10610333 -sledding n 2 3 @ ~ + 2 0 00447073 00048051 -sledge n 2 4 @ ~ %p + 2 0 04235291 03731695 -sledge_dog n 1 2 @ ~ 1 0 02109811 -sledgehammer n 1 2 @ + 1 0 03731695 -sleekness n 2 2 @ + 2 0 04950336 04947494 -sleep n 4 3 @ ~ + 4 2 14024882 14025993 15273626 13962765 -sleep-learning n 1 1 @ 1 0 00892538 -sleep_apnea n 1 2 @ ~ 1 0 14370267 -sleep_deprivation n 1 1 @ 1 0 00424186 -sleep_disorder n 1 2 @ ~ 1 0 14297696 -sleep_talking n 1 1 @ 1 0 00285387 -sleep_terror_disorder n 1 1 @ 1 0 14025258 -sleeper n 9 7 @ ~ #m #p %p + ; 9 1 10610465 10610850 10610699 04433585 04236001 04235771 04235646 02619861 00064370 -sleeper_cell n 1 1 @ 1 0 08358824 -sleeper_goby n 1 2 @ #m 1 0 02619861 -sleeper_nest n 1 2 @ %m 1 0 08244532 -sleepiness n 1 4 ! @ ~ + 1 0 14030435 -sleeping n 3 5 ! @ ~ %p + 3 1 05681117 01064863 00858188 -sleeping_accommodation n 1 4 @ ~ #p %p 1 0 02821627 -sleeping_around n 1 2 @ ~ 1 0 00856342 -sleeping_bag n 1 1 @ 1 1 04235860 -sleeping_beauty n 3 1 @ 3 1 10611117 10611267 08076455 -sleeping_capsule n 1 1 @ 1 1 04236182 -sleeping_car n 1 2 @ %p 1 0 04236001 -sleeping_draught n 1 1 @ 1 0 04236182 -sleeping_hibiscus n 1 2 @ #m 1 0 12184095 -sleeping_partner n 1 1 @ 1 0 10598459 -sleeping_pill n 1 1 @ 1 1 04236182 -sleeping_room n 1 4 @ ~ #p %p 1 0 02821627 -sleeping_sickness n 1 1 @ 1 0 14343735 -sleeping_tablet n 1 1 @ 1 0 04236182 -sleepless_person n 1 1 @ 1 0 10208748 -sleeplessness n 1 2 @ + 1 0 14022959 -sleepover n 1 2 @ + 1 0 07455984 -sleepwalker n 1 2 @ + 1 1 10611361 -sleepwalking n 1 2 @ + 1 0 00285141 -sleepwear n 1 2 @ ~ 1 0 03825080 -sleepy_dick n 1 1 @ 1 0 12459882 -sleepy_sickness n 1 1 @ 1 0 14343735 -sleepyhead n 1 1 @ 1 0 10611541 -sleet n 1 2 @ + 1 0 11507951 -sleeve n 2 4 @ ~ #p %p 2 1 04236377 04236702 -sleigh n 1 4 @ ~ %p + 1 0 04235291 -sleigh_bed n 1 1 @ 1 0 04236809 -sleigh_bell n 1 1 @ 1 0 04236935 -sleight n 1 1 @ 1 0 05642815 -sleight_of_hand n 1 1 @ 1 0 00552312 -slender-tailed_meerkat n 1 1 @ 1 0 02138647 -slender_centaury n 1 1 @ 1 0 12291671 -slender_knapweed n 1 1 @ 1 0 11941094 -slender_lady_palm n 1 1 @ 1 0 12596345 -slender_loris n 1 2 @ #m 1 0 02498743 -slender_rush n 1 1 @ 1 0 11744471 -slender_salamander n 1 2 @ #m 1 0 01637615 -slender_spike_rush n 1 1 @ 1 0 12153914 -slender_wheatgrass n 1 1 @ 1 0 12106323 -slender_wild_oat n 1 1 @ 1 0 12110352 -slenderness n 3 2 @ + 3 0 05117406 05103648 05002155 -sleuth n 1 2 @ + 1 0 10611613 -sleuthhound n 2 1 @ 2 0 10611613 02088466 -sleuthing n 1 2 @ + 1 0 00635205 -slew n 1 2 @ ~ 1 0 13774404 -slews n 1 1 @ 1 0 13777509 -slezsko n 1 2 @ #p 1 0 09166534 -slice n 6 3 @ ~ + 6 4 13286524 07654667 14287113 00572043 09437241 04237086 -slice_bar n 1 1 @ 1 0 04237174 -slicer n 3 2 @ + 3 0 10611729 04237423 04237287 -slicing n 2 2 @ + 2 0 00572043 00387424 -slick n 4 3 @ ~ + 4 1 04947628 06596727 04237654 04237565 -slick_magazine n 1 1 @ 1 0 06596727 -slicker n 3 2 @ ~ 3 1 03844815 10611869 09998101 -slickness n 3 2 @ + 3 0 06760722 05095324 04947628 -slide n 7 6 @ ~ #p %p + ; 7 5 04237924 07404944 06857264 04238128 00328502 04237773 03029603 -slide_action n 1 2 @ #p 1 1 04022434 -slide_fastener n 1 2 @ #p 1 0 04238321 -slide_projector n 1 2 @ ~ 1 0 04238617 -slide_rule n 1 1 @ 1 0 04238763 -slide_valve n 1 1 @ 1 0 04238953 -slider n 4 4 @ ~ #m + 4 0 10605088 10275940 01668665 00109081 -slideway n 1 3 @ ~ %p 1 0 03029603 -sliding_board n 1 2 @ #p 1 0 04238128 -sliding_door n 1 3 @ ~ %p 1 0 04239074 -sliding_keel n 1 3 @ ~ #p 1 0 02994012 -sliding_scale n 1 1 @ 1 0 13853680 -sliding_seat n 1 2 @ #p 1 0 04239218 -sliding_window n 1 1 @ 1 0 04239333 -slight n 1 3 @ ~ + 1 1 01225783 -slight_care n 1 1 @ 1 0 01132472 -slightness n 3 3 @ ~ + 3 0 05173205 05107216 05002155 -slim_chance n 1 1 @ 1 0 05093080 -slime n 1 3 @ ~ + 1 0 14956661 -slime_bacteria n 1 2 @ #m 1 0 01378545 -slime_eels n 1 3 @ ~ #m 1 0 01478511 -slime_mold n 1 2 @ ~ 1 0 12974987 -slime_mould n 1 2 @ ~ 1 0 12974987 -slime_mushroom n 1 2 @ ~ 1 0 13003846 -sliminess n 2 2 @ + 2 0 04935405 04781349 -slimness n 2 2 @ + 2 0 05121095 05002155 -sling n 5 3 @ ~ + 5 0 07917618 04240097 04239786 04239639 04239436 -slingback n 1 1 @ 1 0 04239786 -slinger n 1 2 @ + 1 0 10611988 -slinger_ring n 1 1 @ 1 0 04239900 -slinging n 1 2 @ + 1 1 00107016 -slingshot n 1 1 @ 1 1 04240097 -slip n 15 4 @ ~ %p + 15 2 00076196 00073828 14814295 13127473 10612104 08640111 07317519 04947628 04339291 04240327 03013580 02975412 00329031 00170710 00059376 -slip-joint_pliers n 1 2 @ ; 1 0 04240867 -slip-on n 1 2 @ + 1 0 04241249 -slip-up n 1 3 @ ~ + 1 0 00073828 -slip_carriage n 1 2 @ ; 1 0 04240576 -slip_clutch n 1 1 @ 1 0 04240434 -slip_coach n 1 2 @ ; 1 0 04240576 -slip_friction_clutch n 1 1 @ 1 0 04240434 -slip_noose n 1 4 @ ~ #p %p 1 0 03829563 -slip_of_paper n 1 1 @ 1 1 04240327 -slip_of_the_tongue n 1 2 @ ~ 1 0 06770028 -slip_ring n 1 1 @ 1 0 04241573 -slip_road n 1 1 @ 1 0 02671988 -slip_stitch n 1 1 @ 1 0 04241782 -slipcover n 1 1 @ 1 0 04240752 -slipknot n 1 3 @ ~ #p 1 0 04241042 -slipover n 1 2 @ ~ 1 0 04021028 -slippage n 3 2 @ + 3 1 13556249 13556377 00328885 -slipped_disc n 1 1 @ 1 0 14296579 -slipper n 2 2 @ ~ 2 1 04241394 10605088 -slipper_orchid n 1 3 @ ~ #m 1 0 12056217 -slipper_plant n 1 3 @ ~ #m 1 0 12928071 -slipper_spurge n 1 3 @ ~ #m 1 0 12928071 -slipperiness n 2 2 @ + 2 0 04947628 04875728 -slipperwort n 1 2 @ #m 1 0 12879527 -slippery_dick n 1 2 @ #m 1 0 02608860 -slippery_elm n 1 2 @ #m 1 0 12408280 -slipskin_grape n 1 2 @ ~ 1 0 07759691 -slipstick n 1 1 @ 1 0 04238763 -slipstream n 1 1 @ 1 0 11423197 -slipway n 1 2 @ #p 1 0 04565039 -slit n 4 3 @ ~ + 4 2 04241940 05521514 13904843 09437369 -slit_lamp n 1 2 @ ; 1 0 04242084 -slit_trench n 1 1 @ 1 0 04242315 -sliver n 2 3 @ ~ + 2 0 09442838 09385137 -slivovitz n 1 1 @ 1 0 07904293 -slo-bid n 1 2 @ ; 1 0 04419315 -sloanea n 1 3 @ #m %m 1 0 12194466 -sloanea_jamaicensis n 1 2 @ #m 1 0 12194613 -slob n 1 2 @ ~ 1 1 10612210 -slobber n 1 2 @ + 1 0 05416678 -slobberer n 1 2 @ + 1 0 10033663 -sloe n 3 5 @ #m #s #p %p 3 1 12638753 12649723 07752109 -sloe_gin n 1 2 @ %s 1 0 07904637 -slogan n 1 3 @ ~ + 1 1 07152259 -sloganeer n 1 2 @ + 1 0 10612373 -sloganeering n 1 2 @ + 1 1 07246469 -slogger n 3 2 @ + 3 0 10731848 10442417 09871095 -sloop n 1 2 @ ~ 1 1 04242408 -sloop_of_war n 1 1 @ 1 0 04242587 -slop n 5 2 @ + 5 1 07805006 14956523 14858451 07938427 06775969 -slop-seller n 1 2 @ ; 1 0 10612518 -slop_basin n 1 2 @ ; 1 0 04242704 -slop_bowl n 1 2 @ ; 1 0 04242704 -slop_chest n 1 1 @ 1 0 04242871 -slop_jar n 1 1 @ 1 0 04243003 -slop_pail n 1 1 @ 1 0 04243003 -slope n 2 4 @ ~ #p + 2 2 09437454 05068461 -sloping_trough n 1 3 @ ~ %p 1 0 03029603 -sloppiness n 4 3 @ ~ + 4 0 14535056 14499734 04664964 04627506 -sloppy_joe n 1 1 @ 1 0 07697699 -slops n 2 1 @ 2 0 07805006 04243142 -slopseller n 1 2 @ ; 1 0 10612518 -slopseller's_shop n 1 1 @ 1 0 04243251 -slopshop n 1 1 @ 1 0 04243251 -slot n 7 4 @ ~ + ; 7 2 06284573 04243370 15270245 14579623 09437887 04243727 04243546 -slot_machine n 1 3 @ ~ %p 1 0 04243941 -sloth n 3 3 @ ~ #m 3 0 04637444 02456962 00758795 -sloth_bear n 1 2 @ #m 1 0 02134418 -slothfulness n 1 2 @ + 1 0 04637444 -slouch n 2 2 @ + 2 0 10612645 05003273 -slouch_hat n 1 1 @ 1 0 02987379 -sloucher n 1 2 @ + 1 0 10612803 -slough n 4 3 @ ~ + 4 0 14313440 09438313 09438212 09438055 -slough_grass n 1 1 @ 1 0 12139921 -slough_of_despond n 1 2 @ ; 1 0 14404831 -sloughing n 1 3 @ ~ + 1 0 13555599 -slovak n 2 2 @ #m 2 0 09699536 06944820 -slovak_republic n 1 4 @ #p %m %p 1 0 08759013 -slovakia n 1 5 @ #p %m %p + 1 0 08759013 -slovakian_monetary_unit n 1 2 @ ~ 1 0 13681530 -sloven n 1 3 @ ~ + 1 0 10612210 -slovene n 2 2 @ #m 2 0 09731343 06945010 -slovenia n 1 4 @ %m %p + 1 0 08818444 -slovenian n 1 3 @ #m + 1 0 09749753 -slovenija n 1 3 @ %m %p 1 0 08818444 -slovenliness n 2 3 @ ~ + 2 1 14499734 04896878 -slovenly_person n 1 2 @ ~ 1 0 10612210 -slovenly_woman n 1 1 @ 1 0 10609198 -slow-wittedness n 1 2 @ + 1 0 05645854 -slow_lane n 1 2 ! @ 1 0 04244152 -slow_loris n 1 2 @ #m 1 0 02499022 -slow_match n 1 1 @ 1 0 04244278 -slow_motion n 1 1 @ 1 0 06617866 -slow_time_scale n 1 2 @ ; 1 0 15135057 -slow_virus n 1 1 @ 1 0 01341410 -slowcoach n 1 1 @ 1 0 10442232 -slowdown n 1 2 @ + 1 0 01067577 -slowing n 1 2 @ + 1 1 05061345 -slowness n 3 3 @ ~ + 3 2 05648459 05061977 05646218 -slowpoke n 1 1 @ 1 0 10442232 -slowworm n 1 2 @ #m 1 0 01690149 -sls n 1 1 @ 1 0 15045782 -slub n 1 1 @ 1 0 04948905 -sludge n 2 2 @ ~ 2 1 14591804 14956661 -slug n 8 6 @ ~ #m #p + ; 8 1 02916350 13719102 13390788 10612931 07922607 04504935 01945685 00134780 -slugabed n 1 1 @ 1 0 10258896 -slugfest n 1 2 @ ~ 1 0 01173826 -sluggard n 1 2 @ + 1 0 10612931 -slugger n 2 4 @ ~ + ; 2 1 09843956 09871095 -sluggishness n 3 3 @ ~ + 3 0 14014990 05062518 04635953 -sluice n 1 3 @ %p + 1 1 04244379 -sluice_valve n 1 2 @ #p 1 0 04244615 -sluicegate n 1 2 @ #p 1 0 04244615 -sluiceway n 1 2 @ %p 1 0 04244379 -slum n 1 3 @ ~ + 1 1 08651832 -slum_area n 1 2 @ ~ 1 1 08651832 -slumber n 2 3 @ ~ + 2 1 14024882 14015148 -slumber_party n 1 1 @ 1 0 08256229 -slumberer n 1 3 @ ~ + 1 0 10610465 -slumgullion n 1 1 @ 1 0 07593107 -slump n 2 3 @ ~ + 2 1 13556509 14489113 -slur n 3 4 @ ~ + ; 3 0 06865953 06718543 04694441 -slurry n 1 1 @ 1 0 14591333 -slush n 1 2 @ + 1 0 15043308 -slush_fund n 1 1 @ 1 0 13360390 -slut n 2 1 @ 2 0 10609198 09772930 -sluttishness n 1 2 @ + 1 0 04896995 -sluzhba_vneshney_razvedki n 1 2 @ ; 1 0 08343905 -slyboots n 1 1 @ 1 0 10022759 -slyness n 1 2 @ + 1 0 05621178 -sm n 2 2 @ #s 2 0 14653596 06702139 -smack n 6 4 @ ~ + ; 6 0 07410745 05715864 04244847 02837416 00138599 00133668 -smacker n 2 2 @ + 2 0 00138734 00133875 -smacking n 1 3 @ ~ + 1 0 00133668 -small n 2 2 @ #p 2 1 05559023 05097081 -small-arm n 1 3 @ ~ %p 1 1 03343853 -small-for-gestational-age_infant n 1 1 @ 1 0 10613198 -small-leaved_lime n 1 1 @ 1 0 12203699 -small-leaved_linden n 1 1 @ 1 0 12203699 -small-particle_pollution n 1 1 @ 1 0 14518219 -small_beer n 1 2 @ ~ 1 0 04486445 -small_boat n 1 2 @ ~ 1 0 04244997 -small_business_administration n 1 1 @ 1 0 08352994 -small_businessman n 1 2 @ ~ 1 1 10613052 -small_calorie n 1 2 @ #p 1 0 13726296 -small_cane n 1 2 @ #m 1 0 12148439 -small_cap n 2 1 @ 2 0 08059250 06824955 -small_capital n 1 1 @ 1 0 06824955 -small_cell_carcinoma n 1 1 @ 1 0 14251616 -small_change n 1 1 @ 1 0 13388000 -small_civet n 1 1 @ 1 0 02135844 -small_computer_system_interface n 1 1 @ 1 0 04245218 -small_cranberry n 1 1 @ 1 0 12246037 -small_farmer n 1 2 @ ~ 1 0 10613738 -small_fortune n 1 1 @ 1 1 13777211 -small_fry n 2 3 @ ~ %p 2 0 10435251 09917593 -small_hours n 1 2 @ #p 1 0 15168369 -small_indefinite_amount n 1 2 @ ~ 1 0 13760316 -small_indefinite_quantity n 1 2 @ ~ 1 0 13760316 -small_intestine n 1 4 @ ~ #p %p 1 1 05534712 -small_letter n 1 1 @ 1 0 06824757 -small_loan_company n 1 2 @ ~ 1 0 08421100 -small_magellanic_cloud n 1 1 @ 1 0 09438408 -small_person n 1 2 @ ~ 1 0 10613505 -small_print n 2 2 @ #p 2 0 06761994 06678506 -small_ship n 1 2 @ %p 1 0 04245412 -small_slam n 1 1 @ 1 0 07474911 -small_stores n 1 2 @ ; 1 0 04245508 -small_stuff n 1 2 @ ~ 1 0 04245703 -small_talk n 1 1 @ 1 0 07135080 -small_town n 1 2 @ ~ 1 1 08226699 -small_voice n 1 1 @ 1 1 09184405 -small_white n 1 2 @ #m 1 0 02281015 -small_white_aster n 1 1 @ 1 0 11936864 -smaller_pectoral_muscle n 1 1 @ 1 0 05552106 -smalley n 1 1 @ 1 0 11304912 -smalleye_hammerhead n 1 1 @ 1 0 01494882 -smallholder n 1 2 @ ; 1 0 10613387 -smallholding n 1 2 @ ; 1 0 13249245 -smallmouth n 1 2 @ %p 1 0 02565072 -smallmouth_bass n 2 3 @ #p %p 2 0 07777840 02565072 -smallmouth_black_bass n 1 2 @ %p 1 0 02565072 -smallmouthed_bass n 1 2 @ %p 1 0 02565072 -smallmouthed_black_bass n 1 2 @ %p 1 0 02565072 -smallness n 4 4 ! @ ~ + 4 1 05106633 05110583 05031367 04834073 -smallpox n 1 3 @ ~ %p 1 1 14124423 -smallpox_virus n 1 2 @ ~ 1 0 01334036 -smalltooth_sawfish n 1 2 @ #m 1 0 01497413 -smaltite n 1 2 @ %s 1 0 15043118 -smarm n 1 2 @ + 1 0 06696308 -smarminess n 1 2 @ + 1 0 04868505 -smart n 1 2 @ + 1 0 14331873 -smart_aleck n 1 1 @ 1 0 10784113 -smart_bomb n 1 3 ! @ ~ 1 0 04245847 -smart_card n 1 1 @ 1 0 13377003 -smart_money n 3 3 @ ~ ; 3 0 13343123 13291831 08401970 -smart_set n 1 2 @ %m 1 0 08387930 -smarta n 1 1 @ 1 0 10613839 -smarting n 1 2 @ + 1 0 14331873 -smartness n 4 3 @ ~ + 4 0 14331873 05620955 04813712 04632963 -smash n 5 4 @ ~ + ; 5 1 07410207 07317369 00569474 00126236 00064504 -smash-up n 1 2 @ ; 1 0 07317369 -smash_hit n 1 2 @ ; 1 0 00064151 -smasher n 3 3 @ ~ + 3 0 10614225 10613996 00064504 -smashing n 1 2 @ + 1 0 00376825 -smattering n 2 2 @ + 2 0 13771154 05806498 -smear n 4 3 @ ~ + 4 0 06720216 05265139 04694441 00072261 -smear_test n 1 2 @ %p 1 0 05743296 -smear_word n 1 1 @ 1 0 06721081 -smegma n 1 1 @ 1 0 05417162 -smell n 5 4 @ ~ = + 5 3 05713737 04980008 14526182 05658603 00882961 -smelling n 1 3 @ ~ + 1 0 00882961 -smelling_bottle n 1 1 @ 1 0 04246060 -smelling_salts n 1 2 @ %s 1 0 15043399 -smelt n 2 5 @ ~ #m #p %p 2 0 07798554 02540412 -smelter n 1 2 @ + 1 0 04246156 -smeltery n 1 1 @ 1 0 04246156 -smetana n 1 1 @ 1 0 11305159 -smew n 1 2 @ #m 1 0 01855188 -smidge n 1 1 @ 1 0 13773725 -smidgen n 1 1 @ 1 0 13773725 -smidgeon n 1 1 @ 1 0 13773725 -smidgin n 1 1 @ 1 0 13773725 -smilacaceae n 1 2 @ #m 1 0 12469725 -smilax n 2 3 @ #m %m 2 0 12469936 12441552 -smilax_aspera n 1 1 @ 1 0 12470907 -smilax_rotundifolia n 1 2 @ #m 1 0 12470512 -smile n 1 3 @ ~ + 1 1 06878071 -smiledon n 1 3 @ #m %m 1 0 02130795 -smiledon_californicus n 1 2 @ #m 1 0 02130925 -smiler n 2 5 @ ~ #p + ; 2 0 10614363 05601357 -smiley n 1 1 @ 1 0 06280162 -smiling n 1 3 @ ~ + 1 1 06878071 -smilo n 1 1 @ 1 0 12126736 -smilo_grass n 1 1 @ 1 0 12126736 -smirch n 2 3 @ ~ + 2 0 04694441 00072261 -smirk n 1 2 @ + 1 0 06878580 -smirker n 1 2 @ + 1 0 10614507 -smitane n 1 1 @ 1 0 07839593 -smith n 10 2 @ ~ 10 0 11306297 11306175 11306008 11305851 11305745 11305611 11305402 11305258 10614812 10614629 -smithereens n 1 1 @ 1 0 08482866 -smithy n 1 2 @ %p 1 0 03383646 -smitty_stevens n 1 1 @ 1 0 11317519 -smock n 1 2 @ + 1 0 03258730 -smocking n 1 2 @ + 1 0 04246271 -smog n 1 3 @ + ; 1 0 14518377 -smogginess n 1 3 @ + ; 1 0 14518377 -smoke n 8 5 @ ~ %p + ; 8 2 11508092 13556893 06802880 04761960 04103491 03990834 00834636 00108181 -smoke_alarm n 1 1 @ 1 0 03343737 -smoke_bomb n 1 1 @ 1 0 04246459 -smoke_bush n 2 3 @ ~ #m 2 0 12760132 12216215 -smoke_grenade n 1 1 @ 1 0 04246459 -smoke_hole n 1 1 @ 1 0 04246633 -smoke_screen n 2 2 @ ; 2 0 04247011 01050872 -smoke_tree n 2 3 @ ~ #m 2 0 12760132 12524633 -smoked_eel n 1 1 @ 1 0 07784197 -smoked_haddock n 1 1 @ 1 0 07789745 -smoked_herring n 1 1 @ 1 0 07798233 -smoked_mackerel n 1 1 @ 1 0 07800004 -smoked_salmon n 1 2 @ ~ 1 0 07796649 -smokehouse n 1 1 @ 1 1 04246731 -smokeless_powder n 1 2 @ %s 1 0 15016503 -smoker n 3 4 ! @ ~ + 3 0 10614976 08256005 04246855 -smokescreen n 2 2 @ ; 2 0 04247011 01050872 -smokestack n 1 2 @ ~ 1 0 04247175 -smoking n 2 4 @ ~ %p + 2 1 00834636 13556893 -smoking_car n 1 1 @ 1 0 04246855 -smoking_carriage n 1 1 @ 1 0 04246855 -smoking_compartment n 1 1 @ 1 0 04246855 -smoking_gun n 1 1 @ 1 0 06280244 -smoking_jacket n 1 1 @ 1 1 03692136 -smoking_mixture n 1 1 @ 1 0 04247336 -smoking_room n 1 1 @ 1 0 04247440 -smoky_quartz n 1 1 @ 1 0 14694571 -smolder n 1 1 @ 1 0 07304096 -smolensk n 1 2 @ #p 1 0 09009816 -smollett n 1 1 @ 1 0 11306473 -smooch n 1 3 @ ~ + 1 0 00138599 -smooching n 1 3 @ ~ + 1 0 00854000 -smooth n 1 2 @ + 1 0 01263924 -smooth-haired_fox_terrier n 1 1 @ 1 0 02095212 -smooth-leaved_elm n 1 2 @ #m 1 0 12406715 -smooth_alder n 1 2 @ #m 1 0 12285900 -smooth_aster n 1 1 @ 1 0 11936946 -smooth_bark_kauri n 1 2 @ #m 1 0 11648039 -smooth_crabgrass n 1 1 @ 1 0 12117235 -smooth_darling_pea n 1 1 @ 1 0 11751974 -smooth_dogfish n 1 3 @ ~ #m 1 0 01492357 -smooth_earthball n 1 2 @ #m 1 0 12969927 -smooth_green_snake n 1 1 @ 1 0 01730185 -smooth_hammerhead n 1 1 @ 1 0 01494757 -smooth_lip_fern n 1 1 @ 1 0 13208965 -smooth_muscle n 2 3 @ ~ %p 2 0 05460473 05460291 -smooth_muscle_cell n 1 2 @ #p 1 0 05460759 -smooth_plane n 1 1 @ 1 0 04247630 -smooth_softshell n 1 2 @ #m 1 0 01672611 -smooth_sumac n 1 1 @ 1 0 12763529 -smooth_winterberry_holly n 1 1 @ 1 0 12758555 -smooth_woodsia n 1 1 @ 1 0 13202602 -smoothbark n 1 1 @ 1 0 12335937 -smoothbore n 1 1 @ 1 0 04247544 -smoother n 1 3 @ %p + 1 0 03250588 -smoothhound n 1 1 @ 1 0 01492569 -smoothhound_shark n 1 1 @ 1 0 01492569 -smoothie n 2 1 @ 2 0 10615179 07914271 -smoothing_iron n 1 2 @ ~ 1 0 03584829 -smoothing_plane n 1 1 @ 1 0 04247630 -smoothness n 5 4 ! @ ~ + 5 1 04947186 07069210 04913322 04769716 04709011 -smoothy n 1 1 @ 1 0 10615179 -smorgasbord n 2 3 @ ~ ; 2 0 08398773 07593199 -smother n 2 2 @ ~ 2 0 14500567 11508303 -smotherer n 1 2 @ + 1 0 10656223 -smoulder n 1 2 @ + 1 0 07304096 -smsgt n 1 1 @ 1 0 10579369 -smudge n 2 3 @ ~ + 2 0 07304266 04694441 -smuggler n 1 3 @ ~ + 1 1 10615334 -smuggling n 1 3 @ ~ + 1 0 01112132 -smugness n 1 2 @ + 1 0 07531998 -smut n 5 5 @ ~ #m + - 5 0 14793533 14283632 13066129 07124340 00747215 -smut_fungus n 1 3 @ ~ #m 1 0 13066129 -smut_grass n 1 2 @ #m 1 0 12140511 -smuts n 1 1 @ 1 0 11306619 -smuttiness n 2 2 @ + 2 0 14498972 04903678 -smyrna n 1 2 @ #p 1 0 09042322 -smyrnium n 1 3 @ #m %m 1 0 12945708 -smyrnium_olusatrum n 1 2 @ #m 1 0 12945828 -sn n 1 2 @ #s 1 0 14658855 -snack n 1 3 @ ~ + 1 1 07577374 -snack_bar n 1 2 @ ~ 1 0 04247736 -snack_counter n 1 2 @ ~ 1 0 04247736 -snack_food n 1 2 @ ~ 1 0 07712382 -snacker n 1 2 @ + 1 0 10362765 -snaffle n 1 2 @ + 1 0 04247876 -snaffle_bit n 1 1 @ 1 0 04247876 -snafu n 1 3 @ + ; 1 0 00075283 -snag n 4 2 @ + 4 0 13895745 13103877 09410928 05691144 -snail n 2 4 @ ~ #s + 2 1 01944390 07782475 -snail-flower n 1 2 @ #m 1 0 12577895 -snail_bean n 1 2 @ #m 1 0 12577895 -snail_butter n 1 1 @ 1 0 07857598 -snail_darter n 1 2 @ #m 1 0 02558206 -snail_flower n 1 2 @ #m 1 0 12577895 -snail_mail n 1 2 ! @ 1 0 06264932 -snailfish n 1 2 @ #m 1 0 02647294 -snailflower n 1 2 @ #m 1 0 12577895 -snake n 5 6 @ ~ #m #p %p + 5 1 01726692 10615702 09438554 09307552 04248010 -snake's_head_fritillary n 1 1 @ 1 0 12453186 -snake-fish n 1 2 @ #m 1 0 02543565 -snake-head n 1 2 @ #m 1 0 12881105 -snake-rail_fence n 1 1 @ 1 1 04604644 -snake_charmer n 1 1 @ 1 0 10615584 -snake_dance n 2 2 @ ; 2 0 08428944 00542841 -snake_doctor n 1 1 @ 1 0 02268443 -snake_eyes n 1 1 @ 1 0 13743460 -snake_feeder n 1 1 @ 1 0 02268443 -snake_fence n 1 1 @ 1 0 04604644 -snake_fern n 1 1 @ 1 0 12956588 -snake_god n 1 1 @ 1 0 10805783 -snake_in_the_grass n 1 1 @ 1 0 10615702 -snake_mackerel n 1 2 @ #m 1 0 02622249 -snake_muishond n 1 1 @ 1 0 02443959 -snake_oil n 2 2 @ ; 2 1 15043579 06610779 -snake_palm n 1 2 @ #m 1 0 11783162 -snake_pit n 2 1 @ 2 0 08582837 02820798 -snake_plant n 1 1 @ 1 0 12481458 -snake_polypody n 1 2 @ #m 1 0 13176363 -snake_river n 1 3 @ #p %p 1 0 09438554 -snake_venom n 1 1 @ 1 0 15037249 -snake_wood n 1 2 @ #m 1 0 12404729 -snakeberry n 1 1 @ 1 0 11724109 -snakebird n 1 3 @ ~ #m 1 0 02054502 -snakebite n 1 1 @ 1 0 14287647 -snakeblenny n 1 2 @ #m 1 0 02615980 -snakefish n 1 2 @ #m 1 0 02543565 -snakefly n 1 2 @ #m 1 0 02267208 -snakehead n 1 2 @ #m 1 0 12881105 -snakeroot n 2 3 @ ~ #m 2 0 12943443 11991263 -snakes_and_ladders n 1 1 @ 1 0 00506060 -snakeweed n 1 2 @ #m 1 0 11974557 -snakewood n 1 1 @ 1 0 11775626 -snap n 13 4 @ ~ + ; 13 1 00138956 15299097 07728053 07636384 07394236 07381423 07367708 05020358 04248607 04248209 00575365 00344699 00120943 -snap-brim_hat n 1 2 @ ~ 1 0 04248507 -snap_bean n 1 1 @ 1 0 07728053 -snap_brim n 1 1 @ 1 0 04248396 -snap_fastener n 1 1 @ 1 0 04248209 -snap_line n 1 1 @ 1 0 03003378 -snap_pea n 1 1 @ 1 0 12561169 -snap_ring n 1 1 @ 1 0 02960690 -snap_roll n 1 1 @ 1 0 00170643 -snap_willow n 1 2 @ #m 1 0 12728322 -snapdragon n 1 3 @ ~ #m 1 1 12877244 -snapline n 1 1 @ 1 0 03003378 -snapper n 6 7 @ ~ #m #p %p + ; 6 0 09904321 07797189 03125352 02593019 02586543 01666228 -snapping_beetle n 1 1 @ 1 0 02176439 -snapping_shrimp n 1 1 @ 1 0 01987076 -snapping_turtle n 1 3 @ ~ #m 1 0 01665932 -snappishness n 1 3 @ ~ + 1 0 04642258 -snapshot n 1 1 @ 1 1 04248607 -snapshot_program n 1 1 @ 1 0 06579592 -snare n 5 5 @ ~ #p %p + 5 1 05837370 04249415 04249204 04249029 04248851 -snare_drum n 1 2 @ %p 1 0 04249415 -snarer n 1 2 @ + 1 0 10615808 -snarl n 3 2 @ + 3 2 07129758 06878706 05685879 -snarl-up n 1 2 @ ~ 1 0 08183541 -snatch n 5 4 @ ~ + ; 5 0 07009042 05521514 00775702 00627196 00138956 -snatch_block n 1 1 @ 1 0 04249582 -snatcher n 2 3 @ ~ + 2 0 10615929 10230801 -snead n 1 1 @ 1 0 11306760 -sneak n 3 2 @ + 3 0 10616048 10486679 10091012 -sneak_preview n 1 1 @ 1 0 06888848 -sneak_thief n 1 2 @ ~ 1 0 10616204 -sneaker n 2 2 @ ~ 2 1 03472535 10091012 -sneakiness n 1 2 @ + 1 0 04657631 -sneer n 2 2 @ + 2 1 06716483 06716675 -sneerer n 1 2 @ + 1 0 10616379 -sneeze n 1 2 @ + 1 0 14314850 -sneezer n 1 2 @ + 1 0 10616578 -sneezeweed n 1 3 @ ~ #m 1 0 11977303 -sneezeweed_yarrow n 1 1 @ 1 0 11916965 -sneezewort n 1 1 @ 1 0 11916965 -sneezing n 1 2 @ + 1 0 14314850 -snellen n 1 1 @ 1 0 11306920 -snellen_chart n 1 1 @ 1 0 04249705 -snellen_test n 1 1 @ 1 0 05747056 -snick n 2 3 @ #p + 2 0 00387897 00128324 -snicker n 1 2 @ + 1 0 07128060 -snickersnee n 1 1 @ 1 0 01176540 -sniff n 1 2 @ + 1 0 00883139 -sniffer n 1 2 @ + 1 0 10616670 -sniffle n 1 2 @ + 1 0 00836149 -sniffler n 1 1 @ 1 0 10616779 -snifter n 1 1 @ 1 0 04249882 -snigger n 1 2 @ + 1 0 07128060 -snip n 2 3 @ ~ + 2 1 04250026 00359614 -snipe n 2 4 @ ~ #m + 2 0 02031934 00124151 -snipe_hunt n 1 1 @ 1 0 00514787 -snipefish n 1 2 @ #m 1 0 01457082 -sniper n 1 2 @ + 1 1 10616899 -sniper_rifle n 1 3 @ ~ ; 1 0 04250224 -snippet n 1 1 @ 1 0 04250026 -snipping n 1 2 @ + 1 0 04250026 -snips n 1 2 @ ; 1 0 04250473 -snit n 1 1 @ 1 0 14407435 -snitch n 1 2 @ + 1 0 10091012 -snitcher n 2 3 @ ~ + 2 0 10616204 10091012 -snivel n 2 2 @ + 2 0 00868523 00836149 -sniveler n 1 1 @ 1 0 10616779 -sniveling n 1 2 @ + 1 1 00868523 -sniveller n 1 3 @ ~ + 1 0 10776339 -sno-cat n 1 2 @ ; 1 0 04250599 -snob n 1 2 @ + 1 0 10617024 -snobbery n 1 2 @ ~ 1 0 04889162 -snobbishness n 1 3 @ ~ + 1 0 04889162 -snobbism n 1 2 @ ~ 1 0 04889162 -snoek n 1 1 @ 1 0 02514041 -snogging n 1 3 @ + ; 1 0 00854393 -snood n 1 1 @ 1 0 04250692 -snook n 1 2 @ #m 1 0 02560110 -snooker n 1 3 @ + - 1 0 00501304 -snooker_table n 1 2 @ %p 1 0 03982430 -snoop n 1 3 @ ~ + 1 0 10617193 -snooper n 1 3 @ ~ + 1 0 10617193 -snoopiness n 1 2 @ + 1 0 05683390 -snoopy n 1 1 @ 1 0 09604868 -snoot n 2 3 @ + ; 2 0 10617024 05598707 -snootiness n 1 1 @ 1 0 05214851 -snooze n 1 3 @ ~ + 1 0 00858377 -snore n 2 2 @ + 2 0 07394478 00835976 -snorer n 1 2 @ + 1 0 10617397 -snoring n 1 2 @ + 1 1 00835976 -snorkel n 2 3 @ #p + 2 0 04251144 04250850 -snorkel_breather n 1 2 @ #p 1 0 04250850 -snorkel_diving n 1 1 @ 1 0 00444937 -snorkeling n 1 2 @ + 1 0 00444937 -snort n 2 2 @ + 2 0 07128060 07123870 -snorter n 3 3 @ + ; 3 0 10617501 05689109 04251377 -snorting n 1 2 @ + 1 0 00834460 -snot n 2 2 @ + 2 0 10617024 05416048 -snout n 3 4 @ ~ #p ; 3 1 02452637 05598707 02452813 -snout_beetle n 1 2 @ #m 1 0 02178411 -snow n 4 6 @ ~ #s %s %p + 4 2 11508382 15043763 11307082 03066743 -snow-blindness n 1 1 @ 1 0 14555790 -snow-in-summer n 2 2 @ #m 2 0 12919403 11807525 -snow-on-the-mountain n 1 2 @ #m 1 0 12919403 -snow_bank n 1 1 @ 1 0 04251701 -snow_blower n 1 1 @ 1 0 04252653 -snow_bunting n 1 2 @ #m 1 0 01538630 -snow_chain n 1 1 @ 1 0 04440963 -snow_eater n 1 1 @ 1 0 11438612 -snow_flurry n 1 1 @ 1 0 11508578 -snow_goose n 1 1 @ 1 0 01857079 -snow_gum n 1 1 @ 1 0 12336727 -snow_job n 1 1 @ 1 0 06759256 -snow_leopard n 1 2 @ #m 1 0 02128757 -snow_lily n 1 1 @ 1 0 12451399 -snow_line n 1 1 @ 1 0 08547816 -snow_mist n 1 3 @ #p %s 1 0 11509377 -snow_mushroom n 1 2 @ #m 1 0 13061172 -snow_orchid n 1 2 @ #m 1 0 12060546 -snow_pea n 2 1 @ 2 0 12561038 07725789 -snow_plant n 1 2 @ #m 1 0 12259788 -snow_thrower n 1 1 @ 1 0 04252653 -snow_tire n 1 1 @ 1 0 04252814 -snow_trillium n 1 1 @ 1 0 12468719 -snowball n 4 3 @ %s + 4 1 11837020 07616265 07616174 04251560 -snowbank n 1 1 @ 1 0 04251701 -snowbell n 1 1 @ 1 0 12777680 -snowberry n 1 2 @ #m 1 0 12677612 -snowbird n 3 3 @ ~ #m 3 0 01558307 01538630 01534433 -snowblindness n 1 2 @ + 1 0 14555790 -snowboard n 1 2 @ + 1 0 04251791 -snowboarder n 1 2 @ + 1 0 10617665 -snowboarding n 1 2 @ + 1 0 00329468 -snowcap n 1 1 @ 1 0 09438844 -snowdrift n 1 1 @ 1 0 09438940 -snowdrop n 1 1 @ 1 0 11725973 -snowdrop_anemone n 1 1 @ 1 0 11726269 -snowdrop_tree n 1 1 @ 1 0 12778398 -snowdrop_windflower n 1 1 @ 1 0 11726269 -snowfall n 1 3 @ ~ %p 1 1 11508382 -snowfield n 1 1 @ 1 0 09439032 -snowflake n 2 5 @ #m #s #p %s 2 0 11509066 01538630 -snowman n 1 1 @ 1 0 04251983 -snowmobile n 1 3 @ ~ + 1 0 04252077 -snowplough n 1 1 @ 1 0 04252225 -snowplow n 1 1 @ 1 0 04252225 -snowshoe n 1 1 @ 1 0 04252331 -snowshoe_hare n 1 1 @ 1 0 02327842 -snowshoe_rabbit n 1 1 @ 1 0 02327842 -snowstorm n 1 1 @ 1 0 11509570 -snowsuit n 1 1 @ 1 0 04252560 -snowy_egret n 1 2 @ #m 1 0 02009380 -snowy_heron n 1 2 @ #m 1 0 02009380 -snowy_orchid n 1 1 @ 1 0 12067672 -snowy_tree_cricket n 1 1 @ 1 0 02230634 -snp n 1 2 @ ; 1 0 11493452 -snub n 2 2 @ + 2 0 07208000 01225997 -snuff n 4 4 @ ~ #p + 4 0 15044016 13774010 04252939 00883139 -snuff-color n 1 1 @ 1 0 04974681 -snuff-colour n 1 1 @ 1 0 04974681 -snuff_user n 1 1 @ 1 0 10617814 -snuffbox n 1 1 @ 1 1 04253057 -snuffbox_fern n 1 1 @ 1 0 13228017 -snuffer n 3 2 @ + 3 1 04253168 10617904 10617814 -snuffers n 1 2 @ ; 1 0 04253304 -snuffle n 1 2 @ + 1 0 00836149 -snuffler n 1 2 @ + 1 0 10618007 -snug n 1 2 @ + 1 0 03144365 -snuggery n 1 1 @ 1 0 03144365 -snuggle n 1 2 @ + 1 0 00417643 -snuggling n 1 3 @ ~ + 1 0 00854000 -snugness n 1 2 @ + 1 0 14446298 -so n 1 1 @ 1 0 06868844 -so-and-so n 1 1 @ 1 0 10539715 -so_long n 1 1 @ 1 0 06629610 -soak n 2 2 @ + 2 0 13557158 00256501 -soakage n 1 2 @ + 1 0 13557158 -soaker n 2 2 @ + 2 0 11502102 09782167 -soaking n 3 2 @ + 3 1 13557158 00277811 00256501 -soaking_up n 1 3 @ ~ ; 1 0 13423922 -soap n 3 3 @ ~ + 3 1 04253437 13285101 04253751 -soap-rock n 1 1 @ 1 0 15044327 -soap-weed n 1 1 @ 1 0 12483282 -soap_bubble n 1 1 @ 1 0 09439120 -soap_dish n 1 1 @ 1 0 04254009 -soap_dispenser n 1 1 @ 1 0 04254120 -soap_film n 1 1 @ 1 0 04254205 -soap_flakes n 1 2 @ ; 1 1 04254319 -soap_opera n 1 1 @ 1 0 06622020 -soap_pad n 1 1 @ 1 0 04254450 -soap_powder n 1 1 @ 1 1 04254535 -soap_tree n 1 1 @ 1 0 12483282 -soapberry n 1 3 @ ~ #m 1 0 12741222 -soapberry_family n 1 3 @ #m %m 1 0 12740514 -soapberry_tree n 1 3 @ ~ #m 1 0 12741222 -soapberry_vine n 1 3 @ ~ #m 1 0 12742741 -soapbox n 2 1 @ 2 0 04253931 03159640 -soapfish n 1 2 @ #m 1 0 02570484 -soapiness n 1 2 @ + 1 0 04947888 -soaprock n 1 1 @ 1 0 15044327 -soapstone n 1 1 @ 1 0 15044327 -soapsuds n 1 2 @ ~ 1 1 09439213 -soapweed n 1 1 @ 1 0 12483282 -soapwort n 1 2 @ #m 1 0 11814584 -soapwort_gentian n 1 1 @ 1 0 12295237 -soar n 1 2 @ + 1 0 00326291 -soaring n 1 3 @ ~ + 1 0 00303495 -soave n 1 1 @ 1 0 07898247 -sob n 3 3 @ + ; 3 0 14370122 09815188 00868669 -sob_sister n 1 1 @ 1 0 10618234 -sob_story n 1 1 @ 1 0 07222433 -sob_stuff n 1 1 @ 1 0 07222433 -sobbing n 1 2 @ + 1 0 00868669 -soberness n 2 4 ! @ ~ + 2 0 14019138 04647478 -sobersides n 1 1 @ 1 0 10618146 -sobralia n 1 2 @ #m 1 0 12083113 -sobriety n 4 2 @ ~ 4 1 14019138 04883804 04647478 01069777 -sobriquet n 1 1 @ 1 0 06337693 -socage n 1 1 @ 1 0 00579834 -soccer n 1 3 @ %p - 1 0 00478262 -soccer_ball n 1 1 @ 1 0 04254680 -soccer_player n 1 2 @ ~ 1 0 10618342 -sociability n 1 6 ! @ ~ #p = + 1 1 04652930 -sociable n 1 2 @ + 1 0 08256369 -sociableness n 1 5 @ ~ #p = + 1 0 04652930 -social n 1 2 @ + 1 1 08256369 -social_action n 1 2 @ ~ 1 0 06659530 -social_activity n 1 2 @ ~ 1 0 01081197 -social_affair n 1 2 @ ~ 1 0 08252211 -social_anthropologist n 1 3 @ ~ + 1 0 10618465 -social_anthropology n 1 3 @ ~ + 1 0 06147522 -social_assistance n 1 2 @ ; 1 0 01087740 -social_class n 1 4 @ ~ #m #p 1 1 07974025 -social_climber n 1 2 @ ~ 1 0 10618685 -social_club n 1 3 @ ~ %m 1 0 08227214 -social_contract n 1 1 @ 1 1 13972601 -social_control n 1 2 @ ~ 1 1 01123598 -social_dancer n 1 2 @ ~ 1 0 09990415 -social_dancing n 1 2 @ ~ 1 0 00532110 -social_democracy n 1 1 @ 1 0 06217318 -social_democratic_party n 1 1 @ 1 0 08263303 -social_development_commission n 1 1 @ 1 0 08298918 -social_disease n 1 2 @ ~ 1 0 14133159 -social_drinker n 1 1 @ 1 0 10712690 -social_event n 1 2 @ ~ 1 1 07288639 -social_function n 1 2 @ ~ 1 0 07447261 -social_gathering n 1 2 @ ~ 1 0 08252211 -social_group n 1 2 @ ~ 1 0 07950920 -social_insect n 1 1 @ 1 0 02160947 -social_insurance n 1 2 @ ~ 1 0 01087178 -social_intercourse n 1 2 @ ~ 1 0 07134445 -social_lion n 1 1 @ 1 0 10265070 -social_movement n 1 2 @ ~ 1 0 08464601 -social_occasion n 1 2 @ ~ 1 0 07447261 -social_organisation n 1 4 @ ~ #m %m 1 0 08378819 -social_organization n 1 4 @ ~ #m %m 1 1 08378819 -social_phobia n 1 2 @ ~ 1 0 14385403 -social_policy n 1 2 @ ~ 1 0 06658994 -social_process n 1 2 @ ~ 1 0 13557451 -social_psychology n 1 2 @ ~ 1 0 06141561 -social_rank n 1 2 @ ~ 1 0 13947415 -social_reformer n 1 2 @ ~ 1 0 10515194 -social_relation n 1 2 @ ~ 1 1 00032823 -social_science n 1 3 @ ~ + 1 1 06143154 -social_scientist n 1 3 @ ~ + 1 0 10619642 -social_season n 1 1 @ 1 0 15241311 -social_secretary n 1 1 @ 1 0 10619888 -social_security n 1 2 @ ~ 1 1 01087939 -social_security_administration n 1 1 @ 1 0 08134649 -social_security_number n 1 2 @ ; 1 0 06425960 -social_service n 1 2 @ ~ 1 0 00582195 -social_station n 1 2 @ ~ 1 0 13947415 -social_status n 1 2 @ ~ 1 1 13947415 -social_stratification n 1 1 @ 1 0 13939158 -social_structure n 1 4 @ ~ #m %m 1 1 08378819 -social_system n 1 4 @ ~ #m %m 1 1 08378819 -social_unit n 1 2 @ ~ 1 0 08189659 -social_welfare n 1 2 @ ~ 1 1 01086945 -social_work n 1 1 @ 1 0 01208924 -social_worker n 1 2 @ ~ 1 0 10620027 -socialisation n 3 3 @ ~ + 3 0 01266745 01232412 01128984 -socialiser n 1 2 @ + 1 0 10619492 -socialising n 1 2 @ + 1 0 01232412 -socialism n 2 4 ! @ ~ + 2 1 06220616 08366202 -socialist n 1 3 @ ~ + 1 1 10618848 -socialist_economy n 1 2 @ ~ 1 0 08366202 -socialist_labor_party n 1 1 @ 1 0 08263560 -socialist_party n 1 1 @ 1 0 08263733 -socialist_people's_libyan_arab_jamahiriya n 1 6 @ #m #p %m %p - 1 0 08959683 -socialist_republic_of_vietnam n 1 6 @ #m #p %m %p - 1 0 09163192 -socialite n 1 1 @ 1 0 10619409 -sociality n 1 4 @ ~ = + 1 1 04652635 -socialization n 3 3 @ ~ + 3 0 01266745 01232412 01128984 -socializer n 1 2 @ + 1 0 10619492 -socializing n 1 2 @ + 1 0 01232412 -society n 4 5 @ ~ %m %p + 4 2 07966140 08227214 13929588 08387930 -society_islands n 1 3 @ #p %p 1 0 08990344 -society_of_friends n 1 2 @ %m 1 0 08150377 -society_of_jesus n 1 2 @ %m 1 0 08149473 -socinian n 1 1 @ 1 0 10620212 -socinus n 1 1 @ 1 0 11307262 -socio-economic_class n 1 4 @ ~ #m #p 1 0 07974025 -sociobiologist n 1 2 @ + 1 0 10620437 -sociobiology n 1 2 @ + 1 0 06082972 -sociolinguist n 1 2 @ + 1 0 10620586 -sociolinguistics n 1 2 @ + 1 0 06181123 -sociologist n 1 3 @ ~ + 1 1 10620758 -sociology n 1 5 @ ~ %p + - 1 0 06151693 -sociology_department n 1 1 @ 1 0 08117872 -sociometry n 1 1 @ 1 0 06152631 -sociopath n 1 2 @ + 1 0 10489564 -sociopathic_personality n 1 1 @ 1 0 14388139 -sock n 2 2 @ ~ 2 1 04254777 07257582 -socket n 3 3 @ ~ #p 3 0 05280831 04255163 04255034 -socket_wrench n 1 2 @ %p 1 0 04255346 -sockeye n 2 4 @ #m #p %p 2 0 07796165 02536165 -sockeye_salmon n 2 4 @ #m #p %p 2 0 07796165 02536165 -socle n 1 1 @ 1 0 04255499 -socotra_begonia n 1 1 @ 1 0 12362514 -socrates n 1 2 @ + 1 0 11307422 -socratic_irony n 1 1 @ 1 0 04715308 -socratic_method n 1 1 @ 1 0 05661118 -sod n 4 4 @ ~ + ; 4 1 09463919 15065025 10621514 10621140 -sod's_law n 1 1 @ 1 0 07153502 -sod_house n 1 1 @ 1 0 04255899 -soda n 2 2 @ %s 2 0 15044844 07927512 -soda_ash n 1 1 @ 1 0 15044844 -soda_biscuit n 1 1 @ 1 0 07694516 -soda_bottle n 1 1 @ 1 0 03983396 -soda_can n 1 1 @ 1 0 04255586 -soda_cracker n 1 1 @ 1 0 07695284 -soda_fountain n 2 1 @ 2 0 04255768 04255670 -soda_jerk n 1 1 @ 1 0 10621294 -soda_jerker n 1 1 @ 1 0 10621294 -soda_lime n 1 1 @ 1 0 15044523 -soda_niter n 1 2 @ #s 1 0 14860603 -soda_pop n 1 2 @ %s 1 0 07927512 -soda_water n 2 3 @ #s %s 2 0 07936548 07927512 -sodalist n 1 3 @ #m + 1 0 10621400 -sodalite n 1 2 @ #s 1 0 15044648 -sodality n 1 3 @ %m + 1 0 08075388 -sodbuster n 1 2 @ ~ 1 0 10078806 -soddy n 2 1 @ 2 1 04255899 11307587 -sodium n 1 2 @ #s 1 1 14655371 -sodium-vapor_lamp n 1 1 @ 1 0 04256318 -sodium-vapour_lamp n 1 1 @ 1 0 04256318 -sodium_benzoate n 1 1 @ 1 0 14775173 -sodium_bicarbonate n 1 1 @ 1 0 14775995 -sodium_bichromate n 1 1 @ 1 0 15013875 -sodium_carbonate n 1 1 @ 1 0 15044844 -sodium_carboxymethyl_cellulose n 1 1 @ 1 0 15045030 -sodium_chlorate n 1 1 @ 1 0 15013450 -sodium_chloride n 1 4 @ ~ #s %s 1 0 14672023 -sodium_cyanide n 1 1 @ 1 0 14826904 -sodium_dichromate n 1 1 @ 1 0 15013875 -sodium_ethylmercurithiosalicylate n 1 1 @ 1 0 04424003 -sodium_fluoride n 1 1 @ 1 0 15045216 -sodium_hydride n 1 1 @ 1 0 15045379 -sodium_hydrogen_carbonate n 1 1 @ 1 0 14775995 -sodium_hydroxide n 1 1 @ 1 0 15014990 -sodium_hypochlorite n 1 2 @ ~ 1 0 15045490 -sodium_iodide n 1 1 @ 1 1 15045677 -sodium_lauryl_sulfate n 1 1 @ 1 0 15045782 -sodium_lauryl_sulphate n 1 1 @ 1 0 15045782 -sodium_nitrate n 1 2 @ #s 1 1 14860603 -sodium_nitrite n 1 1 @ 1 0 15016123 -sodium_orthophosphate n 1 1 @ 1 0 15046568 -sodium_phosphate n 1 1 @ 1 0 15046568 -sodium_pyrophosphate n 1 1 @ 1 0 15046077 -sodium_salicylate n 1 1 @ 1 0 04256033 -sodium_silicate n 1 1 @ 1 0 14882578 -sodium_sulfate n 1 1 @ 1 0 15046250 -sodium_sulphate n 1 1 @ 1 0 15046250 -sodium_thiopental n 1 1 @ 1 0 04256152 -sodium_thiosulfate n 1 1 @ 1 0 14913860 -sodium_thiosulphate n 1 1 @ 1 0 14913860 -sodium_tripolyphosphate n 1 1 @ 1 1 15046421 -sodoku n 1 1 @ 1 0 14567690 -sodom n 2 3 @ #p ; 2 0 08795880 08795654 -sodomist n 1 2 @ + 1 0 10621514 -sodomite n 1 1 @ 1 0 10621514 -sodomy n 1 2 @ + 1 0 00849294 -sofa n 1 2 @ ~ 1 1 04256520 -sofa_bed n 1 2 @ ~ 1 0 03100346 -soffit n 1 1 @ 1 0 04256758 -sofia n 1 2 @ #p 1 0 08714458 -sofia_scicolone n 1 1 @ 1 0 11138180 -soft-cast_steel n 1 1 @ 1 0 14952878 -soft-coated_wheaten_terrier n 1 1 @ 1 0 02098105 -soft-cover n 1 2 @ ~ 1 0 03886432 -soft-cover_book n 1 2 @ ~ 1 0 03886432 -soft-finned_fish n 1 5 ! @ ~ #m %m 1 0 01428580 -soft-shell_clam n 2 4 @ #m #p %p 2 0 07787429 01957335 -soft-shell_crab n 2 1 @ 2 0 07788198 01978136 -soft-shelled_crab n 2 1 @ 2 0 07788198 01978136 -soft-shelled_turtle n 1 3 @ ~ #m 1 0 01672032 -soft-shoe n 1 1 @ 1 1 00528156 -soft-shoe_dancing n 1 1 @ 1 0 00528156 -soft-shoe_shuffle n 1 1 @ 1 0 00528156 -soft_coal n 1 2 @ ~ 1 0 14815086 -soft_copy n 1 2 @ ; 1 0 06391347 -soft_corn n 1 1 @ 1 0 12145325 -soft_diet n 1 2 @ %p 1 0 07564796 -soft_drink n 1 2 @ ~ 1 1 07927197 -soft_drug n 1 3 ! @ ~ 1 0 04256993 -soft_flag n 1 1 @ 1 0 12156117 -soft_glass n 1 1 @ 1 1 14881759 -soft_goods n 1 3 @ ~ ; 1 0 03252064 -soft_ice_cream n 1 1 @ 1 0 07617051 -soft_market n 1 1 @ 1 0 01097920 -soft_money n 1 1 @ 1 0 13271094 -soft_news n 1 1 @ 1 0 06684153 -soft_option n 1 1 @ 1 0 05792691 -soft_palate n 1 3 @ #p %p 1 0 05309392 -soft_pedal n 1 2 @ #p 1 0 04257223 -soft_pretzel n 1 1 @ 1 0 07695878 -soft_roe n 1 1 @ 1 0 07799447 -soft_roll n 1 1 @ 1 0 07691863 -soft_rot n 1 2 @ ~ 1 0 14284450 -soft_rush n 1 2 @ #m 1 0 11743772 -soft_scale n 1 3 @ ~ #m 1 0 02248887 -soft_sell n 1 1 @ 1 0 01101661 -soft_shield_fern n 1 2 @ #m 1 0 13200651 -soft_soap n 2 1 @ 2 0 06696025 04257385 -soft_solder n 1 1 @ 1 0 14718715 -soft_spot n 3 3 @ ~ #p 3 1 05042283 07545594 05545212 -soft_tick n 1 2 @ #m 1 0 01779463 -soft_touch n 1 1 @ 1 0 09921409 -soft_tree_fern n 1 2 @ #m 1 0 13190747 -soft_water n 1 2 ! @ 1 0 15046716 -soft_wheat n 1 1 @ 1 0 12142750 -softback n 1 2 @ ~ 1 0 03886432 -softback_book n 1 2 @ ~ 1 0 03886432 -softball n 2 3 ! @ - 2 0 04256891 00475787 -softball_game n 1 2 @ - 1 0 00475787 -softener n 1 3 @ ~ + 1 0 15055936 -softening n 1 3 @ ~ + 1 1 13557766 -softheartedness n 1 2 @ + 1 0 07505347 -softie n 1 1 @ 1 0 10621738 -softness n 10 5 ! @ ~ + ; 10 1 04938228 14547369 14522570 14489859 04990877 04956419 04910973 04704346 04668139 04638857 -software n 1 4 ! @ ~ ; 1 0 06566077 -software_documentation n 1 1 @ 1 0 06588326 -software_engineer n 1 3 @ ~ ; 1 0 10481268 -software_error n 1 3 @ ~ ; 1 0 07300092 -software_package n 2 3 @ ~ ; 2 0 06566077 04257533 -software_product n 1 1 @ 1 0 04257533 -software_program n 1 3 @ ~ ; 1 0 06566077 -software_system n 1 3 @ ~ ; 1 0 06566077 -softwood n 1 2 @ ~ 1 0 15100257 -softy n 1 1 @ 1 0 10621738 -sogginess n 1 2 @ + 1 0 14536331 -soh n 1 1 @ 1 0 06868844 -soho n 2 2 @ #p 2 0 09121619 08875057 -soil n 4 3 @ ~ + 4 3 14498096 14844693 09335240 08493064 -soil_bank n 1 1 @ 1 0 13369282 -soil_conditioner n 1 1 @ 1 0 14845383 -soil_conservation n 1 1 @ 1 0 00819641 -soil_erosion n 1 2 @ ~ 1 0 13558003 -soil_horizon n 1 3 @ ~ #p 1 0 08658309 -soil_pipe n 1 1 @ 1 0 04257684 -soil_profile n 1 1 @ 1 0 08548605 -soiling n 1 3 @ ~ + 1 0 00276620 -soilure n 1 3 @ ~ + 1 0 00276620 -soiree n 1 2 @ ~ 1 0 08255231 -soiree_musicale n 1 1 @ 1 1 08255373 -soissons n 1 3 @ #p ; 1 0 01294791 -soixante-neuf n 1 1 @ 1 0 00855407 -soja n 1 3 @ #m %p 1 0 12532168 -soja_bean n 1 3 @ #m %p 1 0 12532168 -sojourn n 1 2 @ + 1 1 01055360 -sojourner n 1 2 @ + 1 0 10621847 -sojourner_truth n 1 1 @ 1 0 11350705 -sokoro n 1 1 @ 1 0 06985807 -sol n 3 2 @ ; 3 0 14590795 09561593 06868844 -sol_hurok n 1 1 @ 1 0 11067745 -sol_rojo n 1 2 @ ; 1 0 08040008 -solace n 3 3 @ ~ + 3 1 07492655 14446161 01211667 -solacement n 2 3 @ ~ + 2 0 14446161 07492655 -solan n 1 2 @ #m 1 0 02053425 -solan_goose n 1 2 @ #m 1 0 02053425 -solanaceae n 1 4 @ #m %m + 1 0 12892226 -solanaceous_vegetable n 1 2 @ ~ 1 0 07710007 -solandra n 1 3 @ #m %m 1 0 12913645 -solandra_guttata n 1 2 @ #m 1 0 12913791 -solanopteris n 1 3 @ #m %m 1 0 13178500 -solanopteris_bifrons n 1 2 @ #m 1 0 13178707 -solant_goose n 1 2 @ #m 1 0 02053425 -solanum n 1 3 @ #m %m 1 0 12893094 -solanum_aviculare n 1 1 @ 1 0 12893794 -solanum_burbankii n 1 1 @ 1 0 12896615 -solanum_carolinense n 1 1 @ 1 0 12893993 -solanum_commersonii n 1 3 @ #m %p 1 0 12894438 -solanum_crispum n 1 2 @ #m 1 0 12894247 -solanum_dulcamara n 1 2 @ #m 1 0 12894607 -solanum_elaeagnifolium n 1 1 @ 1 0 12894930 -solanum_giganteum n 1 1 @ 1 0 12895298 -solanum_jamesii n 1 2 @ #m 1 0 12895578 -solanum_jasmoides n 1 2 @ #m 1 0 12895811 -solanum_macranthum n 1 2 @ #m 1 0 12897999 -solanum_melanocerasum n 1 1 @ 1 0 12896615 -solanum_melongena n 1 3 @ #m %p 1 0 12896000 -solanum_nigrum n 1 2 @ ~ 1 0 12896307 -solanum_nigrum_guineese n 1 1 @ 1 0 12896615 -solanum_pseudocapsicum n 1 1 @ 1 0 12896862 -solanum_quitoense n 1 2 @ #m 1 0 12897118 -solanum_rostratum n 1 1 @ 1 0 12897341 -solanum_tuberosum n 1 3 @ #m %p 1 0 12897493 -solanum_wendlandii n 1 2 @ #m 1 0 12897788 -solanum_wrightii n 1 2 @ #m 1 0 12897999 -solar_apex n 1 2 @ #p 1 0 08494987 -solar_array n 1 3 @ #p %p 1 0 04257790 -solar_battery n 1 3 @ #p %p 1 0 04257790 -solar_calendar n 1 2 @ ~ 1 0 15178694 -solar_cell n 1 2 @ #p 1 0 04257986 -solar_collector n 1 2 @ #p 1 0 04258138 -solar_constant n 1 1 @ 1 0 15282378 -solar_day n 1 3 @ ~ %p 1 0 15155220 -solar_dish n 1 2 @ #p 1 0 04258138 -solar_eclipse n 1 2 @ ~ 1 0 07368877 -solar_energy n 1 1 @ 1 0 11509697 -solar_flare n 1 1 @ 1 0 11510223 -solar_furnace n 1 2 @ #p 1 0 04258138 -solar_gravity n 1 1 @ 1 0 11464784 -solar_halo n 1 1 @ 1 0 11487533 -solar_heater n 1 1 @ 1 0 04258333 -solar_house n 1 1 @ 1 0 04258438 -solar_magnetic_field n 1 2 @ #p 1 0 11477269 -solar_month n 1 1 @ 1 0 15209316 -solar_panel n 1 3 @ #p %p 1 0 04257790 -solar_parallax n 1 1 @ 1 0 11529441 -solar_physics n 1 1 @ 1 0 06098088 -solar_plexus n 1 2 @ #p 1 0 05508735 -solar_power n 1 1 @ 1 0 11509697 -solar_prominence n 1 1 @ 1 0 11510411 -solar_radiation n 1 2 @ ~ 1 1 11510067 -solar_system n 1 4 @ #p %m %p 1 1 09439433 -solar_telescope n 1 1 @ 1 0 04258618 -solar_thermal_system n 1 2 @ %p 1 0 04258732 -solar_trap n 1 1 @ 1 0 04357639 -solar_wind n 1 3 @ #p %s 1 1 11510571 -solar_year n 1 1 @ 1 0 15202806 -solarisation n 1 2 @ + 1 0 05044387 -solarium n 1 1 @ 1 0 04356925 -solarization n 1 2 @ + 1 0 05044387 -solder n 1 3 @ ~ + 1 0 14718822 -solderer n 1 2 @ + 1 0 10621941 -soldering n 1 2 @ + 1 0 00148653 -soldering_flux n 1 1 @ 1 0 14860280 -soldering_iron n 1 1 @ 1 0 04258859 -soldier n 2 3 @ ~ + 2 1 10622053 02207647 -soldier-fish n 1 1 @ 1 0 01451426 -soldier_grainy_club n 1 1 @ 1 0 12962059 -soldier_of_fortune n 1 2 @ ~ 1 0 10309614 -soldierfish n 1 1 @ 1 0 01451426 -soldiering n 2 2 @ + 2 1 05640184 00741478 -soldiers_of_god n 1 2 @ ; 1 0 08028148 -soldiership n 1 2 @ + 1 0 05640184 -soldiery n 1 5 @ ~ #m + ; 1 1 08397255 -sole n 4 6 @ ~ #m #p %p + 4 1 04258982 07791274 05577190 02663849 -solea n 1 3 @ #m %m 1 0 02664136 -solea_lascaris n 1 2 @ #m 1 0 02664399 -solea_solea n 1 2 @ #m 1 0 02664285 -solecism n 1 1 @ 1 0 00076196 -soledad n 1 2 @ #p 1 0 08733563 -soledad_pine n 1 1 @ 1 0 11618525 -soleidae n 1 3 @ #m %m 1 0 02663657 -soleirolia n 1 3 @ #m %m 1 0 12393527 -soleirolia_soleirolii n 1 2 @ #m 1 0 12393723 -solemness n 1 2 @ + 1 0 04647826 -solemnisation n 1 2 @ + 1 0 00516086 -solemnity n 2 3 @ ~ + 2 1 04647826 07512147 -solemnity_of_mary n 1 3 @ #p ; 1 0 15192890 -solemnization n 1 2 @ + 1 0 00516086 -solenichthyes n 1 3 @ #m %m 1 0 01453852 -solenidae n 1 3 @ #m %m 1 0 01958790 -solenogaster n 1 2 @ #m 1 0 01954516 -solenogastres n 1 3 @ #m %m 1 0 01954340 -solenoid n 1 1 @ 1 0 04259202 -solenopsis n 1 3 @ #m %m 1 0 02220960 -solenostemon n 1 2 @ #m 1 0 12868418 -solenostemon_blumei n 1 1 @ 1 0 12845413 -solenostemon_scutellarioides n 1 1 @ 1 0 12845413 -solent n 1 2 @ #p 1 0 09439879 -soleus n 1 2 @ #p 1 0 05575582 -soleus_muscle n 1 2 @ #p 1 0 05575582 -solfa n 1 2 @ %p 1 0 06867880 -solfa_syllable n 1 3 @ ~ #p 1 0 06868043 -solfege n 2 1 @ 2 0 01255935 01255808 -solfeggio n 2 1 @ 2 0 01255935 01255808 -solferino n 2 2 @ ; 2 0 04971522 01295153 -solicitation n 3 3 @ ~ + 3 0 07187773 06513764 00161044 -solicitor n 2 4 @ ~ + ; 2 0 10623354 10623175 -solicitor_general n 1 1 @ 1 0 10623533 -solicitorship n 1 2 @ + 1 0 00604321 -solicitousness n 1 2 @ + 1 0 07505207 -solicitude n 1 1 @ 1 1 07505207 -solid n 3 3 @ ~ + 3 2 15046900 14480772 13860793 -solid-state_physics n 1 1 @ 1 0 06111479 -solid_angle n 1 1 @ 1 1 13889461 -solid_body_substance n 1 2 @ ~ 1 0 05264081 -solid_figure n 1 2 @ ~ 1 0 13863473 -solid_food n 1 3 @ ~ #p 1 0 07555863 -solid_geometry n 1 2 @ ; 1 0 06012225 -solid_ground n 1 3 @ ~ #p 1 0 09334396 -solid_solution n 1 3 @ ~ #s 1 0 15051705 -solid_state n 1 1 @ 1 0 14480772 -solidago n 1 3 @ #m %m 1 0 12015840 -solidago_bicolor n 1 1 @ 1 0 12016434 -solidago_canadensis n 1 1 @ 1 0 12016567 -solidago_missouriensis n 1 1 @ 1 0 12016777 -solidago_multiradiata n 1 1 @ 1 0 12016914 -solidago_nemoralis n 1 1 @ 1 0 12017127 -solidago_odora n 1 1 @ 1 0 12017326 -solidago_rugosa n 1 1 @ 1 0 12017511 -solidago_sempervirens n 1 1 @ 1 0 12017664 -solidago_spathulata n 1 1 @ 1 0 12017853 -solidarity n 1 1 @ 1 1 04765038 -solidification n 1 4 @ ~ #p + 1 0 13491060 -solidifying n 1 4 @ ~ #p + 1 0 13491060 -solidity n 3 5 ! @ ~ = + 3 1 04941124 14452442 04671075 -solidness n 4 4 @ ~ = + 4 0 14480772 04941124 04761212 04671075 -solidus n 2 1 @ 2 0 13389194 06844903 -soliloquy n 2 2 @ + 2 0 07160752 07011529 -solingen n 1 2 @ #p 1 0 08771277 -solipsism n 1 2 @ ; 1 1 05976649 -solitaire n 4 3 @ ~ #m 4 0 04259364 01811542 01561181 00495524 -solitariness n 2 3 @ ~ + 2 0 14415163 04622415 -solitary n 2 3 @ ~ + 2 0 13999941 10172448 -solitary_confinement n 1 1 @ 1 0 13999941 -solitary_pussytoes n 1 1 @ 1 0 11922839 -solitary_vireo n 1 1 @ 1 0 01603000 -solitary_wave n 1 2 @ ; 1 0 07346344 -soliton n 1 2 @ ; 1 0 07346344 -soliton_wave n 1 2 @ ; 1 0 07346344 -solitude n 3 1 @ 3 1 14415072 14414980 08652480 -solitudinarian n 1 2 @ ~ 1 0 10172448 -solleret n 1 2 @ #p 1 0 04259468 -solmisation n 1 2 @ ~ 1 0 06867675 -solmization n 2 3 @ ~ + 2 0 06867675 01255935 -solo n 3 3 @ ~ + 3 1 01257418 07040939 00304729 -solo_blast n 1 1 @ 1 1 00132497 -solo_homer n 1 1 @ 1 0 00132497 -solo_man n 1 1 @ 1 0 02474431 -soloist n 1 3 @ ~ + 1 1 10623650 -solomon n 1 3 @ + ; 1 0 11307759 -solomon's-seal n 1 3 @ ~ #m 1 0 12474167 -solomon's_seal n 1 1 @ 1 0 06882333 -solomon_bellow n 1 1 @ 1 0 10843228 -solomon_guggenheim n 1 1 @ 1 0 11019073 -solomon_hurok n 1 1 @ 1 0 11067745 -solomon_islands n 2 3 @ #p %p 2 0 08998233 08997976 -solomons n 1 3 @ #p %p 1 0 08997976 -solon n 1 2 @ ~ 1 0 10650162 -solresol n 1 1 @ 1 0 06898052 -solstice n 1 2 @ ~ 1 0 15221818 -solubility n 3 4 ! @ + ; 3 0 13583272 05215483 05210221 -soluble_glass n 1 1 @ 1 0 14882578 -soluble_rna n 1 1 @ 1 0 14833143 -solubleness n 1 2 @ + 1 0 05010314 -solute n 1 1 @ 1 0 15047849 -solution n 5 4 @ ~ + - 5 4 14589223 06743506 05661668 08005954 00190783 -solvability n 1 3 ! @ + 1 0 05215483 -solvate n 1 2 @ + 1 0 15047988 -solvating_agent n 1 1 @ 1 1 15048184 -solvation n 1 2 @ + 1 0 13558125 -solvay n 1 1 @ 1 0 11307937 -solvay_process n 1 1 @ 1 0 13558325 -solvency n 1 3 ! @ + 1 0 14478143 -solvent n 2 3 @ ~ + 2 1 15047313 06743506 -solver n 1 2 @ + 1 0 10458111 -solving n 1 2 @ + 1 0 00153809 -solway_firth n 1 2 @ #p 1 0 09440036 -solzhenitsyn n 1 1 @ 1 0 11308120 -som n 2 1 @ 2 0 13703505 13701928 -soma n 3 4 @ ~ #m #p 3 0 13237988 09529083 05217168 -somaesthesia n 2 3 @ ~ %p 2 0 05721180 05659856 -somaesthesis n 1 3 @ ~ %p 1 0 05659856 -somali n 2 3 @ #m + 2 0 09749880 06991004 -somali_peninsula n 1 4 @ #p %p ; 1 0 08999154 -somalia n 1 7 @ #m #p %m %p + - 1 0 08998560 -somalian n 1 2 @ #m 1 0 09749880 -somalian_monetary_unit n 1 2 @ ~ 1 0 13706753 -somalian_shilling n 1 1 @ 1 0 13706864 -soman n 1 1 @ 1 0 15056372 -somataesthesis n 1 3 @ ~ %p 1 0 05659856 -somateria n 1 3 @ #m %m 1 0 01853072 -somatesthesia n 2 3 @ ~ %p 2 0 05721180 05659856 -somatic_cell n 1 2 @ ~ 1 0 05430628 -somatic_cell_nuclear_transfer n 1 2 @ ~ 1 0 00638770 -somatic_cell_nuclear_transplantation n 1 2 @ ~ 1 0 00638770 -somatic_chromosome n 1 1 @ 1 0 05443966 -somatic_delusion n 1 1 @ 1 0 14378897 -somatic_sensation n 1 2 @ ~ 1 0 05721180 -somatic_sense n 1 3 @ ~ %p 1 0 05659856 -somatic_sensory_system n 1 3 @ ~ %p 1 0 05659856 -somatosense n 1 2 @ ~ 1 0 05654873 -somatosensory_system n 1 3 @ ~ %p 1 0 05659856 -somatotrophic_hormone n 1 2 @ ~ 1 0 05412649 -somatotrophin n 1 2 @ ~ 1 0 05412649 -somatotropic_hormone n 1 2 @ ~ 1 0 05412649 -somatotropin n 1 2 @ ~ 1 0 05412649 -somatotype n 1 2 @ ~ 1 0 04998966 -somberness n 3 3 @ ~ + 3 0 13985462 07533257 04647478 -sombreness n 3 3 @ ~ + 3 0 13985462 07533257 04647478 -sombrero n 2 2 @ #p 2 0 08988333 04259630 -somebody n 1 4 @ ~ #m %p 1 0 00007846 -someone n 1 4 @ ~ #m %p 1 1 00007846 -somersault n 1 3 @ ~ + 1 1 00439484 -somersaulting n 1 3 @ ~ + 1 1 00439484 -somerset n 2 3 @ ~ #p 2 0 08883179 00439484 -somerset_maugham n 1 1 @ 1 0 11164970 -somesthesia n 2 3 @ ~ %p 2 0 05721180 05659856 -somesthesis n 1 3 @ ~ %p 1 0 05659856 -somewhere n 1 1 @ 1 0 08489765 -somite n 1 1 @ 1 0 02665812 -somme n 2 3 @ #p ; 2 0 01295528 01295373 -somme_river n 2 3 @ #p ; 2 0 01295528 01295373 -sommelier n 1 1 @ 1 0 10623806 -somnambulation n 1 2 @ + 1 0 00285141 -somnambulism n 1 2 @ + 1 0 00285141 -somnambulist n 1 2 @ + 1 0 10611361 -somniloquism n 1 2 @ + 1 0 00285387 -somniloquist n 1 2 @ + 1 0 10623949 -somniloquy n 1 2 @ + 1 0 00285387 -somnolence n 1 3 @ ~ + 1 0 14030435 -somrai n 1 1 @ 1 0 06985310 -son n 2 3 ! @ ~ 2 2 10624074 09537144 -son-in-law n 1 1 @ 1 0 10624915 -son_of_a_bitch n 1 2 @ ; 1 1 09815188 -sonant n 1 2 @ + 1 0 07120364 -sonar n 1 3 @ #p %p 1 1 04259771 -sonata n 1 3 @ ~ %p 1 0 07044088 -sonata_form n 1 1 @ 1 0 05932282 -sonatina n 1 1 @ 1 0 07044680 -sonchus n 1 3 @ #m %m 1 0 12018640 -sonchus_oleraceus n 1 1 @ 1 0 12019035 -sondheim n 1 1 @ 1 0 11308396 -sone n 1 2 @ #p 1 0 13713817 -song n 6 4 @ ~ %p + 6 4 07048000 07394588 00546389 06796642 13254011 08158741 -song_and_dance n 2 1 @ 2 0 06893772 06757289 -song_dynasty n 1 1 @ 1 0 08158741 -song_of_solomon n 1 2 @ #p 1 0 06437824 -song_of_songs n 1 2 @ #p 1 0 06437824 -song_sparrow n 1 2 @ #m 1 0 01536644 -song_thrush n 1 2 @ #m 1 0 01558149 -songbird n 1 1 @ 1 0 01526521 -songbook n 1 2 @ ~ 1 0 06418146 -songfulness n 1 2 @ + 1 0 04983688 -songhai n 1 1 @ 1 0 06998631 -songster n 3 3 @ ~ + 3 0 10624540 10624310 01526521 -songstress n 1 1 @ 1 0 10624437 -songwriter n 1 2 @ ~ 1 1 10624540 -sonic_barrier n 1 1 @ 1 0 11505057 -sonic_boom n 1 1 @ 1 0 07348041 -sonic_delay_line n 1 2 @ #p 1 0 02676097 -sonic_depth_finder n 1 1 @ 1 0 04260192 -sonnet n 1 3 @ ~ + 1 1 06381372 -sonneteer n 1 2 @ + 1 0 10625000 -sonny n 1 1 @ 1 1 09871229 -sonny_boy n 1 1 @ 1 1 09871229 -sonny_liston n 1 1 @ 1 0 11135044 -sonogram n 1 1 @ 1 1 04260364 -sonograph n 1 2 @ ~ 1 0 04260589 -sonography n 1 2 @ ~ 1 0 00901789 -sonometer n 1 1 @ 1 0 02757337 -sonora n 1 3 @ #m %m 1 0 01736256 -sonora_gum n 1 2 @ #p 1 0 12723330 -sonora_lac n 1 1 @ 1 0 14702256 -sonora_semiannulata n 1 2 @ #m 1 0 01736375 -sonoran_desert n 1 2 @ #p 1 0 09172910 -sonoran_lyre_snake n 1 1 @ 1 0 01739871 -sonoran_whipsnake n 1 1 @ 1 0 01732093 -sonority n 1 2 @ + 1 1 04989657 -sonorousness n 1 2 @ + 1 0 04989657 -sontag n 1 1 @ 1 0 11308520 -soochong n 1 1 @ 1 0 07935043 -sooner n 1 1 @ 1 0 09745132 -sooner_state n 1 3 @ #p %p 1 0 09131654 -soot n 1 2 @ + 1 0 14793533 -soot_black n 1 1 @ 1 0 04960582 -sooth n 1 2 @ ; 1 0 04867440 -soothing_syrup n 1 1 @ 1 0 04260816 -soothsayer n 1 2 @ ~ 1 1 10102506 -soothsaying n 1 2 @ ~ 1 0 05776212 -sootiness n 1 2 @ + 1 0 14498972 -sop n 3 3 @ ~ + 3 0 07861421 07216615 01024968 -soph n 1 1 @ 1 0 10625438 -sophia_loren n 1 1 @ 1 0 11138180 -sophie_tucker n 1 1 @ 1 0 11351347 -sophism n 1 2 @ + 1 0 05895138 -sophist n 2 2 @ + 2 0 10625099 09899929 -sophisticate n 1 3 @ ~ + 1 1 10625285 -sophistication n 5 4 ! @ ~ + 5 1 05987835 05895138 05641205 04880273 00753472 -sophistry n 1 1 @ 1 0 05895138 -sophocles n 1 1 @ 1 0 11308624 -sophomore n 1 2 @ + 1 1 10625438 -sophomore_class n 1 1 @ 1 0 08239590 -sophonias n 2 2 @ #p 2 0 11406023 06440663 -sophora n 1 3 @ #m %m 1 0 12570126 -sophora_japonica n 1 2 @ #m 1 0 12570394 -sophora_secundiflora n 1 2 @ #m 1 0 12570703 -sophora_sinensis n 1 2 @ #m 1 0 12570394 -sophora_tetraptera n 1 2 @ #m 1 0 12570972 -sopor n 1 1 @ 1 0 14025993 -soporific n 1 3 @ ~ + 1 0 04260934 -soprano n 3 2 @ ~ 3 1 10625546 06873139 04985930 -soprano_clef n 1 1 @ 1 0 06863326 -sops n 1 1 @ 1 0 07861421 -sorb n 1 2 @ #p 1 0 07770180 -sorb_apple n 2 4 @ ~ #p %p 2 0 12658846 07770180 -sorb_apple_tree n 1 3 @ ~ %p 1 0 12658846 -sorbate n 1 2 @ ~ 1 0 14596956 -sorbent n 1 3 @ ~ + 1 0 14597158 -sorbent_material n 1 2 @ ~ 1 0 14597158 -sorbet n 1 1 @ 1 0 07614348 -sorbian n 2 2 @ #m 2 0 09751403 06945344 -sorbic_acid n 1 1 @ 1 0 14739978 -sorbonne n 1 2 @ #p 1 0 03890713 -sorbus n 1 3 @ #m %m 1 0 12657940 -sorbus_americana n 1 1 @ 1 0 12658603 -sorbus_aucuparia n 1 2 @ %p 1 0 12658308 -sorbus_domestica n 1 3 @ ~ %p 1 0 12658846 -sorbus_sitchensis n 1 1 @ 1 0 12658715 -sorbus_torminalis n 1 1 @ 1 0 12659064 -sorcerer n 1 2 @ ~ 1 0 10625860 -sorceress n 1 2 @ ~ 1 0 10626540 -sorcery n 1 3 @ ~ + 1 0 05978812 -sordidness n 2 2 @ + 2 0 14499111 04807971 -sordino n 1 1 @ 1 0 04264050 -sore n 1 2 @ ~ 1 1 14183065 -sore_throat n 1 2 @ ~ 1 0 14173484 -sorehead n 1 1 @ 1 0 10626630 -soren_aabye_kierkegaard n 1 1 @ 1 0 11104676 -soren_kierkegaard n 1 1 @ 1 0 11104676 -soren_peter_lauritz_sorensen n 1 1 @ 1 0 11308739 -soreness n 2 3 @ ~ + 2 0 14332617 07495973 -sorensen n 1 1 @ 1 0 11308739 -sorex n 1 3 @ #m %m 1 0 01891865 -sorex_araneus n 1 2 @ #m 1 0 01892030 -sorex_cinereus n 1 1 @ 1 0 01892145 -sorex_palustris n 1 2 @ #m 1 0 01892744 -sorgho n 1 1 @ 1 0 12138757 -sorghum n 3 4 @ ~ #m %m 3 0 12137120 12136944 07860103 -sorghum_bicolor n 1 1 @ 1 0 12137337 -sorghum_halepense n 1 1 @ 1 0 12138905 -sorghum_molasses n 1 1 @ 1 0 07860103 -sorghum_vulgare_caudatum n 1 1 @ 1 0 12137954 -sorghum_vulgare_rosburghii n 1 1 @ 1 0 12138578 -sorghum_vulgare_technicum n 1 1 @ 1 0 12139196 -sorgo n 1 1 @ 1 0 12138757 -soricidae n 1 3 @ #m %m 1 0 01891438 -sorority n 1 2 @ %m 1 1 08230477 -sorption n 1 3 @ ~ + 1 1 13558490 -sorrel n 5 4 @ ~ #m #p 5 0 12702948 12603959 12179632 07736371 02389026 -sorrel_tree n 2 2 @ #m 2 0 12242409 12178780 -sorriness n 1 2 @ + 1 0 05140278 -sorrow n 4 4 ! @ ~ + 4 3 07534430 07535670 05833683 13989051 -sorrower n 1 3 @ ~ + 1 0 10335246 -sorrowfulness n 2 3 @ ~ + 2 0 13989051 07535209 -sort n 4 3 @ ~ + 4 3 05839024 04746262 10626722 13558696 -sort_program n 1 1 @ 1 0 06580103 -sorter n 2 3 @ ~ + 2 0 10626867 04261116 -sortie n 2 2 @ ; 2 0 00971309 00304851 -sorting n 3 3 @ ~ + 3 0 13558696 05732756 01016832 -sorting_algorithm n 1 1 @ 1 0 05847658 -sorting_program n 1 1 @ 1 0 06580103 -sortition n 1 1 @ 1 0 00180054 -sorus n 2 2 @ %p 2 0 13094273 13094145 -sos n 1 1 @ 1 0 06803845 -sot n 1 2 @ ~ 1 0 10037385 -soteriology n 1 2 @ + 1 0 06191687 -sothis n 1 2 @ #m 1 0 09435965 -sotho n 2 4 @ ~ #m + 2 0 09693372 06995222 -sottishness n 2 2 @ + 2 0 14019039 04885990 -sou n 1 1 @ 1 0 13393265 -sou'-east n 1 1 @ 1 0 13832841 -sou'-sou'-east n 1 1 @ 1 0 13833119 -sou'-sou'-west n 1 1 @ 1 0 13833623 -sou'-west n 1 1 @ 1 0 13833886 -sou'easter n 1 1 @ 1 0 11448714 -sou'wester n 2 1 @ 2 0 11448593 04264361 -souari n 1 3 @ #m %p 1 0 12373739 -souari_nut n 2 4 @ #m #p %p 2 0 12373739 07772026 -souari_tree n 1 3 @ #m %p 1 0 12373739 -soubise n 1 1 @ 1 0 07839730 -soubrette n 2 1 @ 2 0 10626994 05929461 -soubriquet n 1 1 @ 1 0 06337693 -souchong n 1 1 @ 1 0 07935043 -soudan n 2 6 @ #m #p %m %p - 2 0 09029457 09029242 -souffle n 1 2 @ ~ 1 0 07843464 -soufflot n 1 1 @ 1 0 11308877 -souk n 1 1 @ 1 0 04261281 -soul n 5 4 @ ~ #m %p 5 4 10627082 00007846 07480790 00933154 07061968 -soul-searching n 1 1 @ 1 0 05786871 -soul_brother n 1 1 @ 1 0 09637435 -soul_food n 1 1 @ 1 0 07938313 -soul_kiss n 1 1 @ 1 0 00138799 -soul_mate n 1 1 @ 1 0 10627252 -soul_patch n 1 1 @ 1 0 05263448 -soulfulness n 1 2 @ + 1 0 07480790 -sound n 8 6 ! @ ~ #p + ; 8 6 04981139 05718254 11480930 07371293 06278136 07111047 09446115 09440186 -sound_alphabet n 1 3 @ ~ %m 1 0 06500448 -sound_barrier n 1 1 @ 1 0 11505057 -sound_bite n 1 1 @ 1 0 07152151 -sound_bow n 1 2 @ #p 1 0 04261369 -sound_camera n 1 1 @ 1 0 04261638 -sound_effect n 1 1 @ 1 1 05917869 -sound_film n 1 2 @ %p 1 0 04261868 -sound_hole n 1 2 @ #p 1 0 04262010 -sound_judgement n 1 2 @ ~ 1 0 04892084 -sound_judgment n 1 2 @ ~ 1 0 04892084 -sound_law n 1 3 @ ~ #p 1 0 06180720 -sound_perception n 1 2 @ ~ 1 0 05711503 -sound_pollution n 1 1 @ 1 0 14518539 -sound_pressure n 1 1 @ 1 0 11497378 -sound_pressure_level n 1 1 @ 1 0 05100866 -sound_projection n 1 1 @ 1 0 11512331 -sound_property n 1 2 @ ~ 1 0 04983122 -sound_ranging n 1 1 @ 1 0 01005100 -sound_recording n 1 2 @ ~ 1 0 04262678 -sound_reflection n 1 2 @ ~ 1 0 05010801 -sound_reproduction n 1 2 @ ~ 1 0 01020362 -sound_spectrograph n 1 1 @ 1 0 04262869 -sound_spectrum n 1 2 @ ~ 1 0 11510714 -sound_structure n 1 2 @ ~ 1 0 06177729 -sound_system n 1 3 @ ~ %p 1 0 02757462 -sound_truck n 1 1 @ 1 0 04263139 -sound_unit n 1 2 @ ~ 1 0 13608319 -sound_wave n 1 3 @ ~ ; 1 1 07347224 -soundboard n 1 4 @ #p %p ; 1 0 04262161 -soundbox n 1 1 @ 1 0 04261506 -sounder n 1 2 @ + 1 0 04261767 -sounding n 2 2 @ + 2 0 05135451 01004961 -sounding_board n 2 4 @ #p %p ; 2 0 10627349 04262161 -sounding_lead n 1 2 @ #p 1 0 04262410 -sounding_line n 1 3 @ %p ; 1 0 03651947 -sounding_rocket n 1 1 @ 1 0 04262530 -soundlessness n 1 3 @ ~ + 1 0 04982856 -soundman n 1 1 @ 1 0 10627557 -soundness n 3 4 ! @ ~ + 3 0 14546844 05159948 05031849 -soundtrack n 1 3 @ ~ #p 1 1 04262969 -soup n 3 3 @ ~ ; 3 1 07583197 15048623 13927112 -soup-fin n 1 2 @ #m 1 0 01491661 -soup-strainer n 1 2 @ ; 1 0 05262422 -soup_bowl n 1 1 @ 1 1 04263257 -soup_du_jour n 1 1 @ 1 0 07583865 -soup_kitchen n 1 1 @ 1 0 08056128 -soup_ladle n 1 1 @ 1 0 04263336 -soup_plate n 1 1 @ 1 0 04263417 -soup_spoon n 1 1 @ 1 0 04263502 -soupcon n 1 2 @ ~ 1 0 13774115 -soupfin n 1 2 @ #m 1 0 01491661 -soupfin_shark n 1 2 @ #m 1 0 01491661 -soupiness n 2 3 @ ~ + 2 0 04936690 04627506 -soupspoon n 1 1 @ 1 0 04263502 -sour n 3 3 @ ~ + 3 0 07918028 05716744 04993882 -sour-gum_family n 1 3 @ #m %m 1 0 12339972 -sour_bread n 1 1 @ 1 0 07686720 -sour_cherry n 3 3 @ ~ #m 3 0 12643473 12331655 07757990 -sour_cherry_tree n 1 2 @ ~ 1 0 12643473 -sour_cream n 1 1 @ 1 0 07848093 -sour_dock n 1 2 @ %p 1 0 12604228 -sour_fig n 1 2 @ #m 1 0 11819509 -sour_gourd n 3 4 @ #m #p %p 3 0 12189779 07770439 07770289 -sour_grapes n 1 1 @ 1 0 06719299 -sour_grass n 1 3 @ ~ #m 1 0 12603959 -sour_gum n 1 1 @ 1 0 12340755 -sour_mash n 2 1 @ 2 0 14948812 07907831 -sour_mash_whiskey n 1 1 @ 1 0 07907831 -sour_milk n 1 1 @ 1 0 07844786 -sour_orange n 2 4 @ #m #p %p 2 0 12708654 07748753 -sour_salt n 1 2 @ %s 1 0 07813717 -sourball n 1 1 @ 1 0 07599383 -source n 9 5 ! @ ~ + ; 9 6 08507558 06675122 05834758 04263614 10205985 10126177 13558953 09407867 07258664 -source_book n 1 1 @ 1 0 06418558 -source_code n 1 1 @ 1 0 06358513 -source_language n 1 2 @ ~ 1 0 06283912 -source_materials n 1 1 @ 1 0 06675581 -source_of_illumination n 1 2 @ ~ 1 0 04263760 -source_program n 1 2 ! @ 1 0 06577063 -sourdine n 2 1 @ 2 0 04264050 04263950 -sourdough n 2 2 @ ; 2 1 15048748 10627714 -sourdough_bread n 1 1 @ 1 0 07686720 -soured_cream n 1 1 @ 1 0 07848093 -souring n 1 2 @ + 1 0 13559409 -sourness n 3 3 @ ~ + 3 0 05716744 04993882 04642057 -sourpuss n 1 2 @ ; 1 0 10627899 -soursop n 2 3 @ #p %p 2 0 11694664 07761309 -soursop_tree n 1 2 @ %p 1 0 11694664 -sourwood n 1 2 @ #m 1 0 12242409 -sousa n 1 1 @ 1 0 11308988 -sousaphone n 1 2 @ ~ 1 0 02804252 -souse n 3 2 @ + 3 0 09782167 07678313 00277811 -sousing n 1 2 @ + 1 0 00277811 -souslik n 1 1 @ 1 0 02358584 -sousse n 1 2 @ #p 1 0 09038439 -soutache n 1 1 @ 1 0 04264134 -soutane n 1 1 @ 1 1 04264233 -south n 5 7 @ ~ #p %m %p = - 5 4 09050730 09050244 13833375 08561583 13835899 -south-african_yellowwood n 1 2 @ #m 1 0 11652753 -south-central_dravidian n 1 2 @ ~ 1 0 06980465 -south-seeking_pole n 1 1 @ 1 0 03817331 -south_africa n 1 7 @ #m #p %m %p + - 1 1 08999482 -south_african n 1 3 @ ~ #m 1 0 09731436 -south_african_dutch n 1 1 @ 1 0 06952861 -south_african_monetary_unit n 1 2 @ ~ 1 0 13696402 -south_america n 2 6 @ #p %m %p + - 2 1 09440400 08173289 -south_american n 1 3 @ ~ #m 1 0 09731571 -south_american_bullfrog n 1 2 @ #m 1 0 01643896 -south_american_country n 1 3 @ ~ #p 1 0 08702402 -south_american_indian n 1 2 @ ~ 1 0 09726621 -south_american_nation n 1 3 @ ~ #p 1 0 08702402 -south_american_poison_toad n 1 1 @ 1 0 01654863 -south_american_sea_lion n 1 2 @ #m 1 0 02078292 -south_american_staghorn n 1 1 @ 1 0 13177768 -south_atlantic n 1 3 @ #p %p 1 0 09440948 -south_australia n 1 3 @ #p %p 1 0 08834408 -south_bend n 1 2 @ #p 1 0 09086070 -south_by_east n 1 1 @ 1 0 13833256 -south_by_west n 1 1 @ 1 0 13833504 -south_carolina n 2 5 @ #m #p %p - 2 2 09138239 09137869 -south_carolinian n 1 1 @ 1 1 09745535 -south_celestial_pole n 1 1 @ 1 0 08652854 -south_china_sea n 1 3 @ #p %p 1 0 09441107 -south_dakota n 1 3 @ #p %p 1 1 09138935 -south_dakotan n 1 1 @ 1 0 09745636 -south_dravidian n 1 2 @ ~ 1 0 06979249 -south_equatorial_current n 1 1 @ 1 0 11489383 -south_frigid_zone n 1 2 @ %p 1 0 08494459 -south_island n 1 2 @ #p 1 0 08972335 -south_korea n 1 5 @ #p %p + - 1 0 08955626 -south_korean n 1 2 @ + 1 0 09719207 -south_korean_monetary_unit n 1 2 @ ~ 1 0 13709223 -south_korean_won n 1 2 @ %p 1 0 13709360 -south_of_houston n 1 2 @ #p 1 0 09121619 -south_pacific n 1 2 @ #p 1 0 09441587 -south_platte n 1 2 @ #p 1 0 09441725 -south_platte_river n 1 2 @ #p 1 0 09441725 -south_pole n 1 3 @ #p + 1 0 08652717 -south_sea n 1 1 @ 1 1 09441875 -south_sea_islands n 1 1 @ 1 0 09442001 -south_side n 1 1 @ 1 1 08650507 -south_southeast n 1 1 @ 1 0 13833119 -south_southwest n 1 1 @ 1 0 13833623 -south_temperate_zone n 1 1 @ 1 0 08662288 -south_vietnam n 1 2 @ #p 1 0 09163844 -south_west_africa n 1 5 @ #p %m %p ; 1 0 08699654 -south_wind n 1 1 @ 1 0 11511405 -south_yorkshire n 1 3 @ #p %p 1 0 08885631 -southeast n 4 2 @ #p 4 2 13832841 08563478 13835781 08561462 -southeast_asia n 1 3 @ #p %p 1 0 08715110 -southeast_by_east n 1 1 @ 1 0 13832717 -southeast_by_south n 1 1 @ 1 0 13832993 -southeaster n 1 2 @ + 1 0 11448714 -southeastern_pocket_gopher n 1 2 @ #m 1 0 02354320 -southeastern_united_states n 1 2 @ #p 1 0 08563478 -southeastward n 1 1 @ 1 0 13832841 -souther n 1 2 @ + 1 0 11511405 -southerly n 1 1 @ 1 0 11511405 -southern_arrow_wood n 1 2 @ #m 1 0 12681141 -southern_aster n 1 1 @ 1 0 11937023 -southern_baptist n 1 2 @ #m 1 0 10628097 -southern_baptist_convention n 1 2 @ %m 1 0 08089955 -southern_beech n 1 3 @ ~ #m 1 0 12266217 -southern_beech_fern n 1 1 @ 1 0 13230843 -southern_blue_flag n 1 1 @ 1 0 12415272 -southern_bog_lemming n 1 1 @ 1 0 02345997 -southern_buckthorn n 1 1 @ 1 0 12772908 -southern_cabbage_butterfly n 1 1 @ 1 0 02281267 -southern_crab_apple n 1 1 @ 1 0 12635532 -southern_cross n 1 3 @ #m %m 1 0 09441352 -southern_cypress n 1 2 @ #m 1 0 11641963 -southern_dewberry n 1 1 @ 1 0 12655498 -southern_flounder n 1 2 @ #m 1 0 02661473 -southern_flying_squirrel n 1 1 @ 1 0 02360933 -southern_harebell n 1 1 @ 1 0 12037864 -southern_hemisphere n 1 2 @ %p 1 1 08652551 -southern_lights n 1 1 @ 1 0 11427501 -southern_live_oak n 1 1 @ 1 0 12279772 -southern_magnolia n 1 1 @ 1 0 11710136 -southern_maidenhair n 1 1 @ 1 0 13207094 -southern_porgy n 1 2 @ %p 1 0 02593679 -southern_red_cedar n 1 1 @ 1 0 11637810 -southern_red_oak n 1 1 @ 1 0 12271933 -southern_rhodesia n 1 4 @ #p %m %p 1 0 09167101 -southern_scup n 1 2 @ %p 1 0 02593679 -southern_spadefoot n 1 2 @ #m 1 0 01649556 -southern_spatterdock n 1 1 @ 1 0 11716698 -southern_tai n 1 1 @ 1 0 06935823 -southern_triangle n 1 1 @ 1 0 09461864 -southern_white_cedar n 1 2 @ #m 1 0 11635152 -southern_yellow_pine n 1 1 @ 1 0 11615967 -southerner n 1 3 @ ~ #m 1 1 10628222 -southernism n 2 2 @ ; 2 1 07152027 06195698 -southernness n 1 3 ! @ + 1 0 05079309 -southernwood n 1 2 @ #m 1 0 11929291 -southey n 1 2 @ #m 1 0 11309164 -southland n 1 1 @ 1 0 08563085 -southpaw n 2 1 @ 2 1 10252921 10253122 -southward n 1 1 @ 1 0 13833375 -southwest n 4 4 @ #p %p - 4 2 13833886 08563627 13836018 08561714 -southwest_by_south n 1 1 @ 1 0 13833760 -southwest_by_west n 1 1 @ 1 0 13834038 -southwester n 1 2 @ + 1 0 11448593 -southwestern n 1 1 @ 1 0 06949407 -southwestern_lip_fern n 1 1 @ 1 0 13209460 -southwestern_toad n 1 1 @ 1 0 01647466 -southwestern_united_states n 1 4 @ #p %p - 1 0 08563627 -southwestern_white_pine n 1 1 @ 1 0 11613692 -southwestward n 1 1 @ 1 0 13833886 -soutine n 1 1 @ 1 0 11309318 -souvenir n 2 2 @ ~ 2 1 03610270 05813822 -souvlaki n 1 2 @ ; 1 0 07870069 -souvlakia n 1 2 @ ; 1 0 07870069 -sovereign n 1 2 @ ~ 1 1 10628644 -sovereign_immunity n 1 1 @ 1 0 00214526 -sovereignty n 3 2 @ ~ 3 1 13992935 14443532 05198321 -soviet n 1 1 @ 1 0 08320201 -soviet_kgb n 1 1 @ 1 0 08485434 -soviet_russia n 1 4 @ #p %m - 1 0 09007723 -soviet_socialist_republic n 1 3 @ ~ #p 1 0 09006205 -soviet_union n 1 4 @ #p %p - 1 1 09003284 -sovietism n 1 2 @ ~ 1 0 08368308 -soviets n 1 2 @ ; 1 1 08053407 -sow n 1 1 @ 1 0 02396088 -sow_bug n 1 2 @ #m 1 0 01992262 -sow_thistle n 1 3 @ ~ #m 1 0 12018760 -sowbane n 1 1 @ 1 0 11829922 -sowbelly n 1 1 @ 1 1 07671363 -sowbread n 1 2 @ #m 1 0 12093600 -sower n 1 2 @ + 1 0 10629020 -soweto n 1 2 @ #p 1 0 09002433 -soy n 4 7 @ ~ #m #s #p %s %p 4 0 12532564 12532168 07825972 07729485 -soy_flour n 1 3 @ #s %s 1 0 07569873 -soy_sauce n 1 2 @ %s 1 0 07825972 -soya n 2 7 @ ~ #m #s #p %s %p 2 0 12532168 07729485 -soya_bean n 3 7 @ ~ #m #s #p %s %p 3 0 12532564 12532168 07729485 -soya_milk n 1 3 @ #s %s 1 0 07844867 -soyabean_oil n 1 3 @ #s %s 1 0 07675262 -soybean n 3 7 @ ~ #m #s #p %s %p 3 0 12532564 12532168 07729485 -soybean_flour n 1 3 @ #s %s 1 0 07569873 -soybean_future n 1 1 @ 1 0 04264485 -soybean_meal n 1 3 @ #s %s 1 0 07569873 -soybean_milk n 1 3 @ #s %s 1 0 07844867 -soybean_oil n 1 3 @ #s %s 1 0 07675262 -soybean_plant n 1 3 @ #m %p 1 0 12532168 -soymilk n 1 3 @ #s %s 1 0 07844867 -spa n 3 4 @ ~ #p %p 3 0 08678615 04080705 03506370 -space n 9 6 @ ~ #p %p + ; 9 7 00028651 13910384 08652970 08500433 06839190 15172212 06389553 06862202 04030655 -space-reflection_symmetry n 1 2 @ ; 1 0 06105314 -space-time n 1 1 @ 1 0 06010737 -space-time_continuum n 1 1 @ 1 0 06010737 -space_age n 1 1 @ 1 0 15262794 -space_bar n 1 2 @ #p 1 0 04264628 -space_biology n 1 1 @ 1 0 06071722 -space_cadet n 1 2 @ ; 1 0 10629142 -space_capsule n 1 1 @ 1 0 04264765 -space_heater n 1 2 @ ~ 1 0 04265275 -space_helmet n 1 1 @ 1 0 04265428 -space_laboratory n 1 2 @ ~ 1 0 04266162 -space_lattice n 1 1 @ 1 0 05732086 -space_medicine n 1 1 @ 1 0 06063275 -space_needle n 1 2 @ #p 1 0 04265535 -space_platform n 1 2 @ ~ 1 0 04266162 -space_probe n 1 2 @ %p 1 1 04265668 -space_program n 1 2 @ ~ 1 0 05900716 -space_rocket n 1 1 @ 1 0 04265904 -space_shuttle n 1 1 @ 1 0 04266014 -space_station n 1 2 @ ~ 1 0 04266162 -space_travel n 1 2 @ - 1 0 00313502 -space_vehicle n 1 3 @ ~ %p 1 0 04264914 -space_walk n 1 2 @ + 1 0 00292981 -space_writer n 1 1 @ 1 0 10629449 -spacecraft n 1 3 @ ~ %p 1 0 04264914 -spacecraft_clock_time n 1 1 @ 1 0 15131598 -spacecraft_event_time n 1 1 @ 1 0 15131448 -spacefaring n 1 2 @ - 1 0 00313502 -spaceflight n 1 2 @ - 1 0 00313502 -spaceman n 1 2 @ ~ 1 0 09818022 -spaceship n 1 1 @ 1 0 04304215 -spacesuit n 1 1 @ 1 0 04266375 -spacewalker n 1 1 @ 1 0 10629329 -spacing n 2 3 @ ~ + 2 2 15282534 05083328 -spaciousness n 1 3 @ ~ + 1 1 05105265 -spackle n 1 1 @ 1 0 15048888 -spackling_compound n 1 1 @ 1 0 15048888 -spade n 3 5 @ ~ #m + ; 3 2 04266660 04266486 09638009 -spade_bit n 1 1 @ 1 0 04266849 -spade_casino n 1 1 @ 1 0 00498947 -spadefish n 1 2 @ #m 1 0 02604954 -spadefoot n 1 3 @ ~ #m 1 0 01649170 -spadefoot_toad n 1 3 @ ~ #m 1 0 01649170 -spadeful n 1 1 @ 1 0 13769870 -spadework n 1 1 @ 1 0 00795508 -spadix n 1 2 @ #p 1 0 13133932 -spaghetti n 2 1 @ 2 0 07700003 07699914 -spaghetti_and_meatballs n 1 1 @ 1 0 07877187 -spaghetti_junction n 1 1 @ 1 0 04266968 -spaghetti_sauce n 1 2 @ ~ 1 0 07838233 -spaghetti_squash n 2 3 @ #p %p 2 0 12160303 07716906 -spaghetti_western n 1 2 @ ; 1 0 06618653 -spaghettini n 1 1 @ 1 0 07700095 -spain n 1 7 @ ~ #m #p %m %p - 1 1 09023321 -spalacidae n 1 3 @ #m %m 1 0 02368563 -spalax n 1 3 @ #m %m 1 0 02368687 -spall n 1 1 @ 1 0 09442146 -spallanzani n 1 1 @ 1 0 11309449 -spallation n 1 2 @ ; 1 0 13559509 -spam n 2 2 @ ; 2 0 07573347 06280347 -spammer n 1 1 @ 1 0 10629545 -span n 6 5 @ ~ #p %p + 6 2 15134340 05087061 13743605 13656204 02898711 00349213 -span_loading n 1 1 @ 1 0 13826732 -spandau n 1 1 @ 1 0 04267091 -spandex n 1 1 @ 1 0 04267165 -spandrel n 1 2 @ ; 1 0 04267246 -spandril n 1 2 @ ; 1 0 04267246 -spangle n 1 2 @ + 1 0 04173698 -spaniard n 1 3 @ ~ #m 1 0 09731906 -spaniel n 1 2 @ ~ 1 1 02101108 -spanish n 2 4 @ ~ ; - 2 2 06966825 09733243 -spanish-american_war n 1 2 @ %p 1 1 01308668 -spanish_american n 1 2 @ ~ 1 0 10629647 -spanish_armada n 1 1 @ 1 0 08293088 -spanish_bayonet n 2 1 @ 2 0 12482668 12482437 -spanish_broom n 2 2 @ #m 2 0 12571330 12530629 -spanish_burgoo n 1 1 @ 1 0 07589967 -spanish_capital n 1 2 @ #p 1 0 09024467 -spanish_cedar n 1 3 @ #m %s 1 0 12697152 -spanish_cedar_tree n 1 3 @ #m %s 1 0 12697152 -spanish_chestnut n 1 1 @ 1 0 12263204 -spanish_civil_war n 1 2 @ ; 1 0 01308837 -spanish_dagger n 2 1 @ 2 0 12483841 12483091 -spanish_elm n 2 2 @ #m 2 0 12818601 12818346 -spanish_fly n 1 1 @ 1 0 02179340 -spanish_garlic n 1 1 @ 1 0 12434985 -spanish_gorse n 1 2 @ #m 1 0 12530629 -spanish_grunt n 1 2 @ #m 1 0 02588945 -spanish_guinea n 1 3 @ #p %p 1 0 08763500 -spanish_heath n 1 1 @ 1 0 12228886 -spanish_inquisition n 1 1 @ 1 0 08333224 -spanish_iris n 1 1 @ 1 0 12415595 -spanish_lime n 2 4 @ #m #p %p 2 0 12744850 07763290 -spanish_lime_tree n 1 3 @ #m %p 1 0 12744850 -spanish_mackerel n 4 5 @ ~ #m #p %p 4 0 07781497 02625612 02624807 02580679 -spanish_monetary_unit n 1 2 @ ~ 1 0 13690650 -spanish_moss n 1 2 @ #m 1 0 12608127 -spanish_needles n 2 2 @ #p 2 0 11940478 11940349 -spanish_oak n 1 1 @ 1 0 12278865 -spanish_onion n 1 2 @ ~ 1 0 07722763 -spanish_oyster_plant n 1 1 @ 1 0 12010815 -spanish_paprika n 1 1 @ 1 0 07824863 -spanish_people n 1 1 @ 1 0 09733243 -spanish_peseta n 1 2 @ %p 1 0 13690758 -spanish_pointer n 1 2 @ ~ 1 0 02099997 -spanish_psyllium n 1 1 @ 1 0 12599874 -spanish_rice n 1 1 @ 1 0 07877299 -spanish_sahara n 1 2 @ #p 1 0 08970833 -spanish_tamarind n 1 2 @ #m 1 0 12670962 -spanish_tea n 1 1 @ 1 0 11828804 -spanish_war n 1 2 @ %p 1 0 01308668 -spank n 1 2 @ + 1 0 00134472 -spanker n 2 2 @ + 2 0 10608803 04267435 -spanking n 1 2 @ + 1 0 01162784 -spanner n 1 3 @ ~ %p 1 0 04606574 -spar n 3 4 @ ~ #p + 3 0 15049096 04267577 00446804 -spar_buoy n 1 1 @ 1 0 07266979 -sparaxis n 1 3 @ #m %m 1 0 12418356 -sparaxis_tricolor n 1 2 @ #m 1 0 12418507 -spare n 3 1 @ 3 0 04267870 03334912 00187890 -spare-time_activity n 1 2 @ ~ 1 0 00432689 -spare_part n 1 1 @ 1 0 04267870 -spare_time n 2 1 @ 2 1 15137425 01065687 -spare_tire n 1 2 @ #p 1 0 05556204 -spareness n 2 3 @ ~ + 2 0 05114781 05001482 -sparer n 1 2 @ + 1 0 10629820 -sparerib n 1 1 @ 1 0 07656961 -spareribs n 2 1 @ 2 0 07862348 07671459 -sparganiaceae n 1 3 @ #m %m 1 0 12156308 -sparganium n 1 3 @ #m %m 1 0 12156484 -sparge n 1 1 @ 1 0 00278555 -sparge_pipe n 1 1 @ 1 0 04267985 -sparid n 1 3 @ ~ #m 1 0 02590495 -sparid_fish n 1 3 @ ~ #m 1 0 02590495 -sparidae n 1 3 @ #m %m 1 0 02590237 -spark n 6 3 @ ~ + 6 3 07412310 04953380 11511523 13773539 11309613 09442341 -spark_advance n 1 1 @ 1 0 05051088 -spark_arrester n 2 1 @ 2 0 04268275 04268142 -spark_chamber n 1 1 @ 1 0 04268418 -spark_coil n 1 2 @ #p 1 0 04268565 -spark_counter n 1 1 @ 1 0 04268418 -spark_gap n 2 2 @ #p 2 0 04268799 04268680 -spark_lever n 1 2 @ ; 1 0 04269086 -spark_plug n 1 2 @ #p 1 0 04269270 -spark_transmitter n 1 1 @ 1 0 04269668 -sparker n 1 1 @ 1 0 04268142 -sparking_plug n 1 2 @ #p 1 0 04269270 -sparkle n 3 2 @ + 3 1 04953380 07412668 04952944 -sparkle_metal n 1 1 @ 1 0 15049309 -sparkleberry n 1 1 @ 1 0 12246773 -sparkler n 2 3 @ + ; 2 0 13372123 04268969 -sparkling n 1 2 @ + 1 0 07411645 -sparkling_water n 1 2 @ #s 1 0 07936548 -sparkling_wine n 1 2 @ ~ 1 0 07893528 -sparkplug_wrench n 1 1 @ 1 0 04269502 -sparling n 2 4 @ #m #p %p 2 0 07798872 02540983 -sparmannia n 1 3 @ #m %m 1 0 12205308 -sparmannia_africana n 1 2 @ #m 1 0 12205460 -sparring n 2 2 @ + 2 0 07182744 00446804 -sparring_match n 1 1 @ 1 0 07471708 -sparring_mate n 1 1 @ 1 0 10629939 -sparring_partner n 1 1 @ 1 0 10629939 -sparrow n 2 3 @ ~ #m 2 1 01539573 01527347 -sparrow_hawk n 2 2 @ #m 2 0 01612122 01606672 -sparrow_unit n 1 2 @ #p 1 0 08209386 -sparseness n 1 2 @ + 1 0 05114781 -sparsity n 1 2 @ + 1 0 05114781 -sparta n 1 4 @ #p %m + 1 0 08787240 -spartan n 1 2 @ #m 1 0 09711661 -spartina n 1 3 @ #m %m 1 0 12139367 -spartina_cynosuroides n 1 1 @ 1 0 12139793 -spartina_pectinmata n 1 1 @ 1 0 12139921 -spartium n 1 3 @ #m %m 1 0 12571194 -spartium_junceum n 1 2 @ #m 1 0 12571330 -spasm n 2 3 @ ~ ; 2 1 14360459 00226107 -spasmodic_laryngitis n 1 1 @ 1 0 14174011 -spasmolysis n 1 1 @ 1 0 00354785 -spasmolytic n 1 2 @ ~ 1 0 02724533 -spassky n 1 1 @ 1 0 11309772 -spastic n 1 1 @ 1 0 10630093 -spastic_abasia n 1 1 @ 1 0 14549823 -spastic_bladder n 1 1 @ 1 0 14401644 -spastic_colon n 1 1 @ 1 0 14306245 -spastic_paralysis n 1 2 @ + 1 0 14094653 -spasticity n 1 2 @ + 1 0 04771738 -spat n 3 3 @ #m + 3 0 07184735 04269822 01956344 -spatangoida n 1 3 @ #m %m 1 0 02319689 -spatchcock n 1 2 @ + 1 0 07645886 -spate n 3 2 @ ~ 3 0 13774404 07440240 07407137 -spathe n 1 1 @ 1 0 13155175 -spathe_flower n 1 2 @ #m 1 0 11792341 -spathiphyllum n 1 2 @ #m 1 0 11792341 -spatial_arrangement n 1 2 @ ~ 1 0 05083328 -spatial_property n 1 2 @ ~ 1 0 05062748 -spatial_relation n 1 3 @ ~ = 1 0 05074774 -spatiality n 1 3 @ ~ + 1 1 05062748 -spatter n 2 2 @ + 2 2 07394814 00717748 -spatterdock n 1 2 @ #m 1 0 11716422 -spattering n 2 2 @ + 2 0 07394814 00717748 -spatula n 2 3 @ ~ %p 2 0 04270147 04269944 -spatulate_leaf n 1 1 @ 1 0 13159890 -spavin n 1 2 @ ~ 1 0 14272915 -spawl n 1 1 @ 1 0 09442146 -spawn n 1 2 @ ~ 1 0 01461315 -spawner n 1 2 @ + 1 0 02513939 -spaying n 1 2 @ + 1 0 00692726 -speakeasy n 1 1 @ 1 1 04270276 -speaker n 3 4 @ ~ #p + 3 3 10630188 03691459 10631309 -speaker_identification n 1 1 @ 1 0 05763767 -speaker_system n 1 3 @ ~ #p 1 0 03691459 -speaker_unit n 1 3 @ ~ #p 1 0 03691459 -speakerphone n 1 1 @ 1 0 04270371 -speakership n 1 2 @ + 1 0 00604424 -speaking n 2 3 @ ~ + 2 1 07129867 07241837 -speaking_trumpet n 1 1 @ 1 0 04270576 -speaking_tube n 1 1 @ 1 0 04270765 -spear n 2 5 @ ~ #m %p + 2 1 04270891 04271148 -spear-point n 1 2 @ #p 1 0 04271371 -spear_carrier n 1 1 @ 1 0 10676569 -spear_thistle n 1 1 @ 1 0 11955153 -spear_thrower n 1 1 @ 1 0 04430158 -spearfish n 1 2 @ #m 1 0 02632039 -spearhead n 3 4 @ #p + ; 3 0 10631512 08415661 04271371 -spearmint n 1 2 @ %s 1 0 12856287 -spearmint_oil n 1 2 @ #s 1 0 07812662 -spearnose_bat n 1 2 @ #m 1 0 02142734 -spearpoint n 1 2 @ #p 1 0 04271371 -spec n 1 2 @ ~ 1 0 06725067 -special n 3 1 @ 3 1 07166851 07580253 07017534 -special_act n 1 2 @ ; 1 0 06565919 -special_agent n 1 2 ! @ 1 0 10631765 -special_air_service n 1 2 @ ; 1 0 08346031 -special_assessment n 1 1 @ 1 0 13315827 -special_branch n 1 2 @ ; 1 0 08121867 -special_contract n 1 1 @ 1 0 06524278 -special_court-martial n 1 1 @ 1 0 08331762 -special_delivery n 1 1 @ 1 0 06623481 -special_drawing_rights n 1 1 @ 1 0 13330941 -special_education n 1 1 @ 1 0 05757731 -special_effect n 1 2 @ ~ 1 0 05917994 -special_forces n 1 3 @ #p %m 1 0 08213424 -special_interest n 1 1 @ 1 0 07968974 -special_jury n 1 2 @ ; 1 0 08415469 -special_k n 1 1 @ 1 0 03606572 -special_olympics n 1 1 @ 1 0 07457311 -special_pleading n 2 2 @ ; 2 0 07182888 06563478 -special_relativity n 1 1 @ 1 0 06107083 -special_relativity_theory n 1 1 @ 1 0 06107083 -special_session n 1 1 @ 1 0 07147902 -special_theory_of_relativity n 1 1 @ 1 0 06107083 -special_verdict n 1 3 ! @ ; 1 0 01193672 -special_weapons_and_tactics_squad n 1 1 @ 1 0 08274126 -special_weapons_and_tactics_team n 1 1 @ 1 0 08274126 -specialisation n 3 3 @ + ; 3 0 13559782 00583747 00583461 -specialiser n 1 3 @ ~ + 1 0 10631941 -specialism n 2 2 @ + 2 0 05705184 00583461 -specialist n 2 4 ! @ ~ + 2 2 10631941 10632576 -speciality n 3 3 @ ~ + 3 0 05159225 04763925 00583461 -specialization n 3 3 @ + ; 3 2 00583747 00583461 13559782 -specializer n 1 3 @ ~ + 1 0 10631941 -specialness n 2 3 @ ~ + 2 0 04763925 04762633 -specialty n 3 2 @ ~ 3 1 05159225 04763925 00583461 -specialty_store n 1 1 @ 1 0 04271531 -speciation n 1 2 @ + 1 0 13560079 -specie n 1 2 @ ~ 1 0 13387877 -species n 2 6 @ ~ #m %m %p ; 2 2 08110373 05844881 -specific n 2 2 ! @ 2 0 05818182 04271640 -specific_gravity n 1 1 @ 1 0 04941687 -specific_heat n 1 1 @ 1 1 11472352 -specific_performance n 1 1 @ 1 0 00097923 -specification n 4 4 @ ~ + ; 4 1 06725067 07231199 06675338 01149303 -specificity n 2 2 @ + 2 2 04762915 04763147 -specifier n 1 2 @ + 1 0 10633298 -specimen n 2 2 @ ~ 2 2 05822239 05266879 -specimen_bottle n 1 1 @ 1 0 04271793 -specious_argument n 1 2 @ ~ 1 0 06755156 -speciousness n 1 2 @ + 1 0 04875113 -speck n 3 3 @ ~ + 3 3 04681230 14585519 13774115 -speckle n 1 3 @ ~ + 1 0 04682462 -speckled_alder n 1 2 @ #m 1 0 12285705 -speckled_rattlesnake n 1 2 @ #m 1 0 01757343 -speckled_trout n 2 4 @ #m #p %p 2 0 07794893 02538216 -specs n 1 5 @ ~ #p %p ; 1 0 04272054 -spectacle n 3 3 @ ~ + 3 2 06889138 04271891 00075471 -spectacled_caiman n 1 1 @ 1 0 01699254 -spectacles n 1 5 @ ~ #p %p ; 1 1 04272054 -spectacular n 1 1 @ 1 0 06894243 -spectator n 2 3 @ ~ + 2 2 10633450 04272389 -spectator_pump n 1 1 @ 1 1 04272389 -spectator_sport n 1 1 @ 1 0 00886968 -specter n 2 2 @ ~ 2 2 05898171 09547111 -spectinomycin n 1 1 @ 1 0 04272541 -spectral_color n 1 3 @ ~ %s 1 0 04959672 -spectral_colour n 1 3 @ ~ %s 1 0 04959672 -spectre n 2 2 @ ~ 2 0 09547111 05898171 -spectrogram n 1 2 @ ~ 1 0 04272638 -spectrograph n 2 3 @ ~ + 2 0 04272782 04272638 -spectrographic_analysis n 1 2 @ ~ 1 0 00649482 -spectrometer n 1 3 @ ~ + 1 1 03726516 -spectrometry n 1 3 @ ~ + 1 0 00649482 -spectrophotometer n 1 1 @ 1 1 04272928 -spectroscope n 1 4 @ ~ %p + 1 0 04273064 -spectroscopic_analysis n 1 2 @ ~ 1 0 00649482 -spectroscopy n 1 3 @ ~ + 1 1 00649482 -spectrum n 2 4 @ ~ %p + 2 2 11420831 05128219 -spectrum_analysis n 1 2 @ ~ 1 0 00649482 -spectrum_line n 1 3 @ ~ #p 1 0 06801138 -speculation n 4 3 @ ~ + 4 3 06782680 05891783 13342692 05785885 -speculativeness n 2 2 @ + 2 0 14543756 04759134 -speculator n 2 3 @ ~ + 2 0 10634316 10634075 -speculum n 2 1 @ 2 0 04273433 04273285 -speech n 8 7 @ ~ #p %p + ; - 8 6 07238694 07109196 07130050 07110457 07071483 06713930 07010821 05650820 -speech_act n 1 2 @ ~ 1 0 07160883 -speech_communication n 1 3 @ ~ ; 1 0 07109196 -speech_community n 1 1 @ 1 0 08224985 -speech_day n 1 2 @ ; 1 0 15222686 -speech_defect n 1 2 @ ~ 1 0 14400677 -speech_disorder n 1 2 @ ~ 1 0 14400677 -speech_intelligibility n 1 1 @ 1 0 04820102 -speech_organ n 1 2 @ ~ 1 0 05305614 -speech_pattern n 1 2 @ ~ 1 0 07131511 -speech_perception n 1 1 @ 1 0 05711674 -speech_production n 1 2 @ ~ 1 0 07129867 -speech_rhythm n 1 1 @ 1 0 07086323 -speech_sound n 1 4 @ ~ #p ; 1 0 07111047 -speech_spectrum n 1 1 @ 1 0 11510896 -speech_therapist n 1 2 @ + 1 0 10634464 -speech_therapy n 1 2 @ + 1 0 00707213 -speechifier n 1 3 @ ~ + 1 0 10380672 -speechlessness n 1 2 @ + 1 1 04982745 -speechmaker n 1 2 @ ~ 1 0 10380672 -speechmaking n 1 2 @ ~ 1 0 07241837 -speechwriter n 1 1 @ 1 0 10631654 -speed n 5 4 @ ~ = + 5 3 15282696 05058140 00330160 13821408 02704153 -speed-reading n 1 1 @ 1 0 05809082 -speed_bump n 1 1 @ 1 0 04273659 -speed_cop n 1 1 @ 1 0 10333838 -speed_demon n 1 1 @ 1 0 10634596 -speed_freak n 1 1 @ 1 0 10634723 -speed_indicator n 1 3 @ ~ #p 1 0 04273796 -speed_limit n 1 1 @ 1 1 06664473 -speed_of_light n 1 1 @ 1 1 15284285 -speed_skate n 1 2 @ + 1 0 04273972 -speed_skater n 1 1 @ 1 0 10634849 -speed_skating n 1 1 @ 1 0 00449168 -speed_trap n 1 1 @ 1 0 05837743 -speedboat n 1 2 @ ~ 1 0 04273569 -speeder n 1 2 @ + 1 0 10634596 -speediness n 1 3 @ ~ + 1 0 05059132 -speeding n 1 3 @ ~ + 1 0 00330160 -speeding_ticket n 1 1 @ 1 0 06558893 -speedometer n 1 3 @ ~ #p 1 0 04273796 -speedskater n 1 1 @ 1 0 10634849 -speedup n 1 2 @ + 1 0 00330457 -speedway n 2 1 @ 2 0 04274214 04274110 -speedwell n 1 3 @ ~ #m 1 0 12890265 -speer n 1 1 @ 1 0 11309958 -speke n 1 1 @ 1 0 11310081 -spelaeologist n 1 2 @ + 1 0 10460286 -spelaeology n 2 2 @ + 2 0 06121554 00798108 -speleologist n 1 2 @ + 1 0 10460286 -speleology n 2 2 @ + 2 0 06121554 00798108 -spell n 4 3 @ ~ + 4 3 14407536 15292069 15246353 07159791 -spell-checker n 1 1 @ 1 0 06420053 -spellbinder n 1 2 @ + 1 0 10634990 -spelldown n 1 1 @ 1 0 07477066 -speller n 2 2 @ + 2 0 10635149 06415323 -spelling n 1 4 @ ~ %p + 1 1 06353445 -spelling_bee n 1 1 @ 1 0 07477066 -spelling_checker n 1 1 @ 1 0 06420053 -spelling_contest n 1 1 @ 1 0 07477066 -spelt n 1 1 @ 1 0 12143065 -spelter n 1 1 @ 1 0 15049745 -spelunker n 1 2 @ + 1 0 10460286 -spencer n 1 1 @ 1 0 11310321 -spencer_tracy n 1 1 @ 1 0 11347519 -spend-all n 1 2 @ ~ 1 0 10635460 -spender n 3 3 @ ~ + 3 0 11310523 10635460 10635275 -spending n 2 3 @ ~ + 2 1 01122149 13275288 -spending_cut n 1 1 @ 1 0 00353013 -spending_money n 1 1 @ 1 0 13422545 -spending_spree n 1 1 @ 1 0 00510624 -spendthrift n 1 2 @ ~ 1 0 10635460 -spendthrift_trust n 1 1 @ 1 0 13363056 -spengler n 1 1 @ 1 0 11310679 -spenser n 1 1 @ 1 0 11310833 -spenserian_sonnet n 1 1 @ 1 0 06383334 -spenserian_stanza n 1 1 @ 1 0 06386440 -spergula n 1 3 @ #m %m 1 0 11817000 -spergula_arvensis n 1 2 @ #m 1 0 11817160 -spergularia n 1 3 @ #m %m 1 0 11817329 -spergularia_rubra n 1 2 @ #m 1 0 11817501 -sperm n 1 4 @ #p %p + 1 0 05457469 -sperm_bank n 1 1 @ 1 0 04274309 -sperm_cell n 1 3 @ #p %p 1 0 05457469 -sperm_count n 2 1 @ 2 0 13593065 00654113 -sperm_oil n 1 1 @ 1 0 15049902 -sperm_whale n 1 2 @ #m 1 0 02067240 -spermaceti n 1 1 @ 1 0 15095389 -spermatic_cord n 1 2 @ #p 1 0 05527848 -spermatid n 1 1 @ 1 0 05459101 -spermatocele n 1 1 @ 1 0 05458859 -spermatocide n 1 1 @ 1 0 04274396 -spermatocyte n 1 1 @ 1 0 05458990 -spermatogenesis n 1 1 @ 1 0 13560329 -spermatophyta n 1 3 @ #m %m 1 0 11551211 -spermatophyte n 1 2 @ ~ 1 0 11552386 -spermatozoan n 1 3 @ #p %p 1 0 05457469 -spermatozoid n 1 1 @ 1 0 13095543 -spermatozoon n 1 3 @ #p %p 1 0 05457469 -spermicide n 1 2 @ + 1 0 04274396 -spermophile n 1 3 @ ~ #m 1 0 02358091 -spermophilus n 1 3 @ #m %m 1 0 02357741 -sperry n 1 1 @ 1 0 11311011 -spewer n 1 2 @ + 1 0 10759702 -spf n 1 1 @ 1 0 05118707 -sphacele n 1 3 @ #m %m 1 0 12851673 -sphacele_calycina n 1 2 @ #m 1 0 12851860 -sphacelotheca n 1 3 @ #m %m 1 0 13067532 -sphacelotheca_reiliana n 1 2 @ #m 1 0 13067672 -sphacelus n 2 3 @ ~ + 2 0 14313440 11486708 -sphaeralcea n 1 3 @ #m %m 1 0 12187450 -sphaeralcea_coccinea n 1 1 @ 1 0 12187891 -sphaeralcea_fasciculata n 1 2 @ #m 1 0 12183026 -sphaeralcea_remota n 1 2 @ #m 1 0 12181352 -sphaeriaceae n 1 3 @ #m %m 1 0 12964130 -sphaeriales n 1 3 @ #m %m 1 0 12963796 -sphaerobolaceae n 1 2 @ #m 1 0 13047011 -sphaerocarpaceae n 1 3 @ #m %m 1 0 11544314 -sphaerocarpales n 1 3 @ #m %m 1 0 11544131 -sphaerocarpos n 1 2 @ #m 1 0 11544540 -sphaerocarpus n 1 2 @ #m 1 0 11544540 -sphagnales n 1 3 @ #m %m 1 0 11541713 -sphagnum n 1 2 @ #m 1 0 11542137 -sphagnum_moss n 1 2 @ #m 1 0 11542137 -sphalerite n 1 2 @ %s 1 0 15107876 -sphecidae n 1 3 @ #m %m 1 0 02215334 -sphecius n 1 3 @ #m %m 1 0 02216066 -sphecius_speciosis n 1 2 @ #m 1 0 02216211 -sphecoid n 1 3 @ ~ #m 1 0 02215161 -sphecoid_wasp n 1 3 @ ~ #m 1 0 02215161 -sphecoidea n 1 3 @ #m %m 1 0 02214972 -sphecotheres n 1 3 @ #m %m 1 0 01576212 -sphenion n 1 2 @ #p 1 0 05235350 -spheniscidae n 1 3 @ #m %m 1 0 02055431 -sphenisciform_seabird n 1 3 @ ~ #m 1 0 02055658 -sphenisciformes n 1 3 @ #m %m 1 0 02055280 -spheniscus n 1 3 @ #m %m 1 0 02056873 -spheniscus_demersus n 1 2 @ #m 1 0 02057035 -sphenodon n 1 3 @ #m %m 1 0 01673118 -sphenodon_punctatum n 1 2 @ #m 1 0 01673282 -sphenoid n 1 3 @ #p %p 1 0 05280998 -sphenoid_bone n 1 3 @ #p %p 1 0 05280998 -sphenoid_fontanel n 1 1 @ 1 0 05543541 -sphenoid_fontanelle n 1 1 @ 1 0 05543541 -sphenoidal_fontanel n 1 1 @ 1 0 05543541 -sphenoidal_fontanelle n 1 1 @ 1 0 05543541 -sphenopsida n 1 3 @ #m %m 1 0 13218722 -sphere n 7 4 @ ~ %p + 7 4 14514039 04274530 08653570 05853100 13899200 13898899 08521267 -sphere_of_influence n 1 1 @ 1 0 08653570 -spherical_aberration n 1 1 @ 1 0 11513761 -spherical_angle n 1 1 @ 1 0 13889331 -spherical_geometry n 1 2 @ ; 1 0 06007859 -spherical_polygon n 1 2 @ ~ 1 0 13883603 -spherical_triangle n 1 1 @ 1 0 13883763 -spherical_trigonometry n 1 2 @ ; 1 0 06008007 -sphericalness n 1 2 @ + 1 0 05073131 -sphericity n 1 2 @ + 1 0 05073131 -spherocyte n 1 1 @ 1 0 05455113 -spheroid n 1 2 @ + 1 0 13898645 -spheroid_joint n 1 2 @ ~ 1 0 05595531 -spherometer n 1 1 @ 1 0 04274686 -spherule n 1 1 @ 1 1 13899735 -sphincter n 1 2 @ ~ 1 0 05570839 -sphincter_ani n 1 3 @ #p %p 1 0 05571713 -sphincter_muscle n 1 2 @ ~ 1 0 05570839 -sphingid n 1 3 @ ~ #m 1 0 02298541 -sphingidae n 1 3 @ #m %m 1 0 02298379 -sphinx n 3 2 @ ; 3 0 10635788 09502298 04274807 -sphinx_moth n 1 3 @ ~ #m 1 0 02298541 -sphygmomanometer n 1 1 @ 1 0 04274985 -sphyraena n 1 2 @ #m 1 0 02603174 -sphyraena_barracuda n 1 1 @ 1 0 02603540 -sphyraenidae n 1 3 @ #m %m 1 0 02602970 -sphyrapicus n 1 3 @ #m %m 1 0 01840968 -sphyrapicus_varius n 1 1 @ 1 0 01841288 -sphyrapicus_varius_ruber n 1 1 @ 1 0 01841441 -sphyrna n 1 3 @ #m %m 1 0 01494339 -sphyrna_tiburo n 1 1 @ 1 0 01495006 -sphyrna_tudes n 1 1 @ 1 0 01494882 -sphyrna_zygaena n 1 1 @ 1 0 01494757 -sphyrnidae n 1 3 @ #m %m 1 0 01494188 -spic n 1 2 @ ; 1 0 09720406 -spica n 1 2 @ #m 1 0 09442496 -spiccato n 1 1 @ 1 0 00101570 -spiccato_bowing n 1 1 @ 1 0 00101570 -spice n 3 3 @ ~ + 3 1 15050011 07812184 04992570 -spice_bush n 1 2 @ #m 1 0 11706325 -spice_cake n 1 1 @ 1 0 07633064 -spice_cookie n 1 1 @ 1 0 07635934 -spice_islands n 1 2 @ #p 1 0 08909233 -spice_rack n 1 1 @ 1 0 04275175 -spice_tree n 2 3 @ ~ #m 2 0 13111174 11707827 -spiceberry n 2 3 @ #m #p 2 0 12097396 07743723 -spicebush n 2 2 @ #m 2 0 11706325 11701302 -spicemill n 1 1 @ 1 0 04275093 -spicery n 1 3 @ ~ + 1 0 04992570 -spiciness n 2 3 @ ~ + 2 0 04992570 04902283 -spick n 1 2 @ ; 1 0 09720406 -spicule n 1 1 @ 1 0 05473318 -spiculum n 1 1 @ 1 0 05473318 -spider n 3 4 @ ~ #m + 3 1 01772222 06579715 04275283 -spider's_web n 2 2 @ ~ 2 0 04275548 04275363 -spider_angioma n 1 1 @ 1 0 14248069 -spider_brake n 1 2 @ #m 1 0 13214340 -spider_crab n 1 3 @ ~ #m 1 0 01981702 -spider_fern n 2 2 @ #m 2 0 13214485 13214340 -spider_flower n 1 1 @ 1 0 11866469 -spider_mite n 1 3 @ ~ #m 1 0 01782209 -spider_monkey n 1 2 @ #m 1 0 02493793 -spider_nevus n 1 1 @ 1 0 14248069 -spider_orchid n 3 3 @ ~ #m 3 0 12075151 12048056 12047884 -spider_plant n 1 1 @ 1 0 11866469 -spider_web n 2 2 @ ~ 2 0 04275548 04275363 -spiderflower n 1 3 @ ~ #m 1 0 11866248 -spiderwort n 1 3 @ ~ #m 1 0 12606545 -spiderwort_family n 1 3 @ #m %m 1 0 12605965 -spiegel n 1 1 @ 1 0 15049401 -spiegel_iron n 1 1 @ 1 0 15049401 -spiegeleisen n 1 1 @ 1 0 15049401 -spiel n 1 2 @ + 1 0 07013400 -spielberg n 1 1 @ 1 0 11311173 -spielmeyer-vogt_disease n 1 1 @ 1 0 14169128 -spiff n 1 1 @ 1 0 04687822 -spigot n 2 4 @ ~ #p %p 2 0 04390977 03325088 -spik n 1 2 @ ; 1 0 09720406 -spike n 11 6 @ ~ #p %p + ; 11 2 07308450 04275661 13133613 13133438 07479366 04276808 04276531 04276404 04276249 04276050 04275904 -spike_arrester n 1 1 @ 1 0 04364160 -spike_heath n 1 2 @ #m 1 0 12232851 -spike_heel n 1 1 @ 1 0 04276808 -spike_lavender n 1 2 @ %s 1 0 12850336 -spike_lavender_oil n 1 2 @ #s 1 0 12850531 -spike_lee n 1 1 @ 1 0 11124647 -spike_mike n 1 1 @ 1 0 04276929 -spike_moss n 1 3 @ ~ #m 1 0 13224673 -spike_oil n 1 2 @ #s 1 0 12850531 -spike_rush n 1 3 @ ~ #m 1 0 12153580 -spike_suppressor n 1 1 @ 1 0 04364160 -spiked_loosestrife n 1 2 @ #m 1 0 12328567 -spikelet n 1 2 @ ~ 1 0 13089631 -spikemoss n 1 3 @ ~ #m 1 0 13224673 -spikenard n 1 1 @ 1 0 03809211 -spile n 2 3 @ ~ #p 2 0 03936269 02919648 -spill n 4 3 @ ~ + 4 0 15049594 04277034 00329619 00076884 -spillage n 2 2 @ + 2 0 13763806 00329619 -spillane n 1 1 @ 1 0 11311287 -spiller n 2 2 @ + 2 0 10587378 04475900 -spillikin n 1 1 @ 1 0 03591465 -spillikins n 1 1 @ 1 0 00485450 -spillover n 1 2 @ ; 1 0 11513880 -spillway n 1 1 @ 1 0 04277034 -spilogale n 1 3 @ #m %m 1 0 02446888 -spilogale_putorius n 1 2 @ #m 1 0 02447021 -spin n 5 3 @ ~ + 5 0 07442288 00343249 00309540 00306210 00101003 -spin-off n 1 2 @ + 1 0 02930492 -spin_doctor n 1 1 @ 1 0 10636014 -spin_drier n 1 1 @ 1 0 04277826 -spin_dryer n 1 1 @ 1 0 04277826 -spin_the_bottle n 1 1 @ 1 0 00487453 -spin_the_plate n 1 1 @ 1 0 00487617 -spin_the_platter n 1 1 @ 1 0 00487617 -spina_bifida n 1 1 @ 1 0 14471224 -spinach n 2 4 @ #m #p %p 2 0 11835568 07736692 -spinach_beet n 2 3 @ #p %p 2 0 11832671 07720277 -spinach_blight n 1 1 @ 1 0 14218717 -spinach_mustard n 1 2 @ #m 1 0 11879291 -spinach_plant n 1 3 @ #m %p 1 0 11835568 -spinacia n 1 3 @ #m %m 1 0 11835451 -spinacia_oleracea n 1 3 @ #m %p 1 0 11835568 -spinal n 1 2 @ ~ 1 0 14029405 -spinal_accessory n 1 1 @ 1 0 05480401 -spinal_anaesthesia n 1 2 @ ~ 1 0 14029405 -spinal_anaesthetic n 1 2 @ ~ 1 0 04277204 -spinal_anesthesia n 1 2 @ ~ 1 0 14029405 -spinal_anesthetic n 1 2 @ ~ 1 0 04277204 -spinal_canal n 1 2 @ #p 1 0 05249232 -spinal_column n 1 4 @ ~ #p %p 1 0 05588174 -spinal_cord n 1 3 @ #p %p 1 0 05503705 -spinal_curvature n 1 2 @ ~ 1 0 14504889 -spinal_fluid n 1 2 @ #p 1 0 05504107 -spinal_fusion n 1 1 @ 1 0 00699517 -spinal_nerve n 1 3 @ ~ %p 1 0 05569053 -spinal_puncture n 1 1 @ 1 0 00944068 -spinal_tap n 1 1 @ 1 0 00944068 -spinal_vein n 1 2 @ #p 1 0 05380697 -spindle n 5 4 @ #p %s ; 5 0 05605498 04277669 04277493 04277352 04276050 -spindle-tree_family n 1 3 @ #m %m 1 0 12747563 -spindle_horn n 1 2 @ #m 1 0 02428842 -spindle_tree n 1 3 @ ~ #m 1 0 12749049 -spindleberry n 1 3 @ ~ #m 1 0 12749049 -spindleberry_tree n 1 3 @ ~ #m 1 0 12749049 -spindlelegs n 2 1 @ 2 0 10635907 05562161 -spindleshanks n 2 1 @ 2 0 10635907 05562161 -spindrift n 1 1 @ 1 0 15056827 -spine n 5 5 @ ~ #p %p + 5 1 05588174 13912839 13089631 04277980 01900488 -spinel n 1 3 @ ~ %s 1 0 15050898 -spinel_ruby n 1 2 @ ~ 1 0 15051129 -spinelessness n 1 2 @ + 1 0 04889966 -spinet n 2 1 @ 2 0 04278353 04278247 -spininess n 1 2 @ + 1 0 04949799 -spinmeister n 1 1 @ 1 0 10636014 -spinnability n 1 3 @ ~ + 1 1 04720685 -spinnaker n 1 1 @ 1 0 04278447 -spinnbarkeit n 1 1 @ 1 0 04720879 -spinner n 3 3 @ #m + 3 0 10636340 04278751 04278605 -spinney n 1 2 @ ; 1 0 08437968 -spinning n 1 2 @ + 1 0 00909193 -spinning_frame n 1 2 @ %p 1 0 04278932 -spinning_jenny n 1 1 @ 1 0 04279063 -spinning_machine n 1 2 @ ~ 1 0 04279172 -spinning_rod n 1 1 @ 1 0 04279353 -spinning_top n 1 2 @ ~ 1 0 04454240 -spinning_wheel n 1 2 @ %p 1 0 04279462 -spinocerebellar_disorder n 1 2 @ %p 1 0 14471507 -spinoza n 1 1 @ 1 0 11311450 -spinster n 2 2 @ + 2 0 10636488 10636340 -spinsterhood n 1 2 @ + 1 0 13967827 -spinus n 1 3 @ #m %m 1 0 01532107 -spinus_pinus n 1 2 @ #m 1 0 01532511 -spinus_tristis n 1 2 @ #m 1 0 01532325 -spiny-finned_fish n 1 4 ! @ ~ #m 1 0 02552171 -spiny-headed_worm n 1 2 @ #m 1 0 01923404 -spiny_anteater n 2 2 @ #m 2 0 01872772 01872401 -spiny_dogfish n 1 3 @ ~ #m 1 0 01493541 -spiny_lizard n 2 3 @ ~ #m 2 0 01689081 01680264 -spiny_lobster n 2 4 @ #m #p %p 2 0 07793260 01984695 -spiny_puffer n 1 3 @ ~ #m 1 0 02655523 -spiny_softshell n 1 2 @ #m 1 0 01672432 -spiny_talinum n 1 2 @ #m 1 0 11864114 -spipistrellus_hesperus n 1 2 @ #m 1 0 02148245 -spiracle n 1 2 @ ~ 1 0 05250310 -spiraea n 3 4 @ ~ #m %m 3 0 12795555 12659356 12659203 -spiraea_prunifolia n 1 1 @ 1 0 12659539 -spiral n 6 3 @ ~ + 6 1 13876371 13876561 13560191 04279666 03065424 00343606 -spiral_bandage n 1 1 @ 1 0 04279858 -spiral_galaxy n 1 2 @ ~ 1 0 08271457 -spiral_nebula n 1 2 @ ~ 1 0 08271457 -spiral_ratchet_screwdriver n 1 2 @ %p 1 0 04279987 -spiral_spring n 1 2 @ ~ 1 0 04280259 -spirant n 1 2 @ ~ 1 0 07118554 -spiranthes n 1 3 @ #m %m 1 0 12083339 -spiranthes_cernua n 1 2 @ #m 1 0 12083847 -spiranthes_porrifolia n 1 2 @ #m 1 0 12084400 -spiranthes_romanzoffiana n 1 2 @ #m 1 0 12084158 -spiranthes_spiralis n 1 2 @ #m 1 0 12084555 -spire n 1 3 @ ~ ; 1 1 04312432 -spirea n 2 3 @ ~ #m 2 0 12795555 12659356 -spirilla n 1 1 @ 1 0 01351315 -spirillaceae n 1 3 @ #m %m 1 0 01363423 -spirillum n 2 3 @ ~ #m 2 0 01363719 01351315 -spirillum_fever n 1 1 @ 1 0 14567690 -spirillum_minus n 1 1 @ 1 0 01363887 -spirit n 8 4 @ ~ = + 8 8 10636598 14526182 04620558 09545324 13985818 06605897 04632157 04624826 -spirit_gum n 1 1 @ 1 0 14704328 -spirit_lamp n 1 1 @ 1 0 04280373 -spirit_level n 1 3 @ ~ #p 1 0 03658858 -spirit_of_turpentine n 1 2 @ %s 1 0 14893652 -spirit_rapper n 1 1 @ 1 0 10488513 -spirit_rapping n 1 2 @ #p 1 0 07257227 -spirit_stove n 1 1 @ 1 0 04280487 -spirit_world n 1 1 @ 1 0 05631841 -spiritedness n 1 4 @ ~ = + 1 0 04631700 -spiritism n 1 1 @ 1 0 04621314 -spiritlessness n 1 2 @ + 1 0 04636610 -spirits n 1 3 @ ~ + 1 1 07901587 -spirits_of_ammonia n 1 2 @ #s 1 0 15052063 -spirits_of_wine n 1 1 @ 1 0 14709706 -spiritual n 1 1 @ 1 1 07035598 -spiritual_being n 1 3 @ ~ #m 1 1 09504135 -spiritual_bouquet n 1 2 @ ; 1 0 06628663 -spiritual_domain n 1 2 @ ~ 1 0 05952199 -spiritual_jewel n 1 2 @ #m 1 0 09533910 -spiritual_leader n 1 2 @ ~ 1 0 09505153 -spiritual_rebirth n 1 2 @ ~ 1 0 00094788 -spiritual_world n 1 2 @ ~ 1 0 05952199 -spiritualisation n 1 2 @ + 1 0 00583933 -spiritualism n 3 3 @ + - 3 0 05976805 05951969 04621314 -spiritualist n 1 2 @ + 1 0 10306279 -spirituality n 2 3 @ ~ + 2 0 13247818 04621314 -spiritualization n 1 2 @ + 1 0 00583933 -spiritualty n 1 2 @ ~ 1 0 13247818 -spirochaeta n 1 2 @ #m 1 0 01381829 -spirochaetaceae n 1 3 @ #m %m 1 0 01381604 -spirochaetales n 1 3 @ #m %m 1 0 01381399 -spirochaete n 1 3 @ ~ #m 1 0 01382033 -spirochete n 1 3 @ ~ #m 1 0 01382033 -spirodela n 1 3 @ #m %m 1 0 11795366 -spirodela_polyrrhiza n 1 2 @ #m 1 0 11795580 -spirogram n 1 1 @ 1 0 04280603 -spirograph n 1 1 @ 1 0 04280706 -spirogyra n 1 2 @ #m 1 0 01410689 -spirometer n 1 1 @ 1 0 04280845 -spirometry n 1 1 @ 1 0 01005473 -spironolactone n 1 1 @ 1 0 14754192 -spirt n 1 3 @ ~ + 1 0 07436100 -spirula n 1 2 @ #m 1 0 01973148 -spirula_peronii n 1 2 @ #m 1 0 01973148 -spirulidae n 1 3 @ #m %m 1 0 01972733 -spit n 4 5 @ ~ #p %s + 4 0 09442595 05416198 04280970 00118552 -spit_and_polish n 1 2 @ ; 1 0 14496977 -spit_curl n 1 1 @ 1 0 05258627 -spitball n 2 1 @ 2 0 04281131 00109227 -spite n 2 2 @ + 2 1 07550666 04842515 -spitefulness n 2 2 @ + 2 0 07550666 04842515 -spitfire n 1 1 @ 1 0 10636746 -spitsbergen n 1 2 @ #p 1 0 08764717 -spitter n 2 2 @ + 2 0 10636874 00109227 -spitting n 1 2 @ + 1 0 00118552 -spitting_cobra n 1 2 @ #m 1 0 01748686 -spitting_image n 1 1 @ 1 0 04747616 -spitting_snake n 1 1 @ 1 0 01749244 -spittle n 1 4 @ ~ #p %s 1 0 05416198 -spittle_insect n 1 3 @ ~ #m 1 0 02257715 -spittlebug n 1 3 @ ~ #m 1 0 02257715 -spittoon n 1 1 @ 1 0 04281260 -spitz n 1 2 @ ~ 1 0 02111626 -spitzbergen n 1 2 @ #p 1 0 08764717 -spiv n 1 2 @ ; 1 0 10637038 -spizella n 1 3 @ #m %m 1 0 01535842 -spizella_arborea n 1 2 @ #m 1 0 01536334 -spizella_passerina n 1 2 @ #m 1 0 01536035 -spizella_pusilla n 1 2 @ #m 1 0 01536186 -splanchnic_nerve n 1 2 @ #p 1 0 05505479 -splash n 6 3 @ ~ + 6 1 07395104 13978166 13761171 04682319 00717748 00278221 -splash-guard n 1 2 @ #p 1 0 03796605 -splash_guard n 1 2 @ #p 1 0 03796605 -splashboard n 2 2 @ #p 2 0 04554211 04281375 -splashdown n 1 1 @ 1 0 00305980 -splasher n 2 2 @ #p 2 0 04281571 04281375 -splashiness n 1 2 @ + 1 0 04817923 -splashing n 2 2 @ + 2 0 00717748 00278221 -splat n 2 3 @ #p + 2 0 07395303 04281749 -splatter n 2 2 @ + 2 1 07394814 13761171 -splattering n 2 2 @ + 2 0 07394814 00717748 -splay n 1 1 @ 1 0 04281880 -splayfoot n 1 1 @ 1 0 05576421 -spleen n 2 4 @ #p %p + 2 1 05333467 07552549 -spleenwort n 1 3 @ ~ #m 1 0 13180534 -splendor n 2 2 @ ~ 2 2 04954920 04814238 -splendour n 2 2 @ ~ 2 0 04954920 04814238 -splenectomy n 1 1 @ 1 0 00687769 -splenic_artery n 1 2 @ #p 1 0 05350061 -splenic_fever n 1 1 @ 1 0 14260182 -splenic_vein n 1 2 @ #p 1 0 05380822 -splenitis n 1 1 @ 1 0 14355819 -splenius n 1 1 @ 1 0 05575743 -splenius_muscle n 1 1 @ 1 0 05575743 -splenomegaly n 1 1 @ 1 1 14368192 -splice n 2 2 @ + 2 0 04281998 03642573 -splicer n 3 2 @ + 3 0 10637360 10637229 04282231 -splicing n 1 2 @ + 1 1 04281998 -spliff n 1 2 @ %s 1 0 03600806 -spline n 2 3 @ ~ #p 2 0 04282379 04234455 -splint n 2 2 @ + 2 0 09442723 04282494 -splint_bone n 1 1 @ 1 0 02322817 -splinter n 1 2 @ + 1 1 09442838 -splinter_group n 1 1 @ 1 0 08252083 -splintering n 1 2 @ + 1 0 00377169 -splinters n 1 1 @ 1 1 14949075 -split n 11 5 @ ~ #p + ; 11 1 00437929 13770076 13286640 09443136 09410928 08819016 07616590 04282664 00439043 00391407 00386676 -split-brain_technique n 1 1 @ 1 0 00667612 -split-half_correlation n 1 2 @ ; 1 0 06035674 -split-pea n 1 1 @ 1 0 07726009 -split-pea_soup n 1 1 @ 1 0 07588299 -split_decision n 1 1 @ 1 0 07293903 -split_down n 1 1 @ 1 0 00439284 -split_end n 1 2 @ ; 1 1 10637483 -split_infinitive n 1 1 @ 1 0 06317107 -split_personality n 1 1 @ 1 0 14394783 -split_rail n 1 2 @ #p 1 0 04282872 -split_run n 1 1 @ 1 0 15262624 -split_second n 1 1 @ 1 1 15247110 -split_shift n 1 1 @ 1 0 15293091 -split_ticket n 1 2 ! @ 1 0 00184501 -split_up n 1 1 @ 1 0 00439043 -splitsaw n 1 1 @ 1 0 04094608 -splitsville n 1 1 @ 1 0 00215534 -splitter n 3 3 ! @ + 3 0 10637839 10637635 10505206 -splitworm n 1 1 @ 1 0 02294407 -splodge n 1 1 @ 1 0 04694809 -splotch n 1 2 @ + 1 0 04694809 -splurge n 2 2 @ + 2 0 06890000 01073824 -splutter n 2 2 @ + 2 1 07394814 07130183 -spock n 1 1 @ 1 0 11311623 -spode n 2 2 @ ; 2 0 11311817 04282992 -spodoptera n 1 3 @ #m %m 1 0 02297635 -spodoptera_exigua n 2 2 @ #m 2 0 02297938 02297819 -spodoptera_frugiperda n 2 2 @ #m 2 0 02298218 02298095 -spodumene n 1 3 @ ~ %s 1 0 15052223 -spoil n 3 3 @ + ; 3 0 13262462 01263018 00966869 -spoilable n 1 1 @ 1 0 07937344 -spoilage n 3 3 @ ~ + 3 0 13763888 13560417 01263018 -spoilation n 1 2 @ + 1 0 00966869 -spoiler n 5 4 @ ~ + ; 5 0 10637961 10443170 10395390 04283255 04283096 -spoiling n 2 3 @ ~ + 2 0 13560417 01263018 -spoils_system n 1 2 ! @ 1 0 05664803 -spoilsport n 1 3 @ ~ ; 1 0 10638136 -spokane n 1 2 @ #p 1 0 09154607 -spoke n 2 2 @ #p 2 1 04283378 04119751 -spoken_communication n 1 3 @ ~ ; 1 0 07109196 -spoken_language n 1 3 @ ~ ; 1 1 07109196 -spoken_word n 1 1 @ 1 1 06304576 -spokeshave n 1 1 @ 1 0 04283585 -spokesman n 1 1 @ 1 1 10638310 -spokesperson n 1 2 @ ~ 1 0 10638385 -spokeswoman n 1 1 @ 1 0 10638734 -spoliation n 2 3 @ + ; 2 0 01249616 00966869 -spondee n 1 2 @ + 1 0 07095775 -spondias n 1 3 @ #m %m 1 0 12765679 -spondias_mombin n 1 3 @ #m %p 1 0 12765846 -spondias_purpurea n 1 3 @ #m %p 1 0 12766043 -spondylarthritis n 1 1 @ 1 0 14189065 -spondylitis n 1 2 @ ~ 1 0 14355901 -spondylolisthesis n 1 1 @ 1 0 14294517 -sponge n 4 4 @ ~ #m + 4 1 14597758 10501453 10252674 01906749 -sponge_bag n 1 2 @ ; 1 0 04446844 -sponge_bath n 1 1 @ 1 0 00258403 -sponge_cake n 1 2 @ ~ 1 0 07632037 -sponge_cloth n 1 1 @ 1 0 04283784 -sponge_genus n 1 3 @ ~ #m 1 0 01907034 -sponge_gourd n 1 4 @ ~ #m %p 1 0 12166424 -sponge_mop n 1 1 @ 1 0 04283905 -sponge_morel n 1 2 @ #m 1 0 13032381 -sponge_mushroom n 1 2 @ #m 1 0 13032381 -spongefly n 1 2 @ #m 1 0 02267826 -sponger n 2 2 @ + 2 0 10638813 10252674 -spongillafly n 1 2 @ #m 1 0 02267826 -sponginess n 2 2 @ + 2 0 04940379 04938474 -spongioblast n 1 1 @ 1 0 05242239 -spongioblastoma n 1 1 @ 1 0 14236872 -sponsor n 2 3 @ ~ + 2 1 10407954 10466198 -sponsorship n 1 2 @ + 1 1 01215036 -spontaneity n 1 2 @ + 1 1 04786763 -spontaneous_abortion n 1 2 @ ~ 1 0 00230475 -spontaneous_combustion n 1 1 @ 1 0 13560586 -spontaneous_generation n 1 1 @ 1 0 11420376 -spontaneousness n 1 2 @ + 1 0 04786763 -spoof n 1 2 @ + 1 0 06780309 -spook n 2 2 @ + 2 0 09976917 05898171 -spool n 1 3 @ ~ + 1 0 02860415 -spoon n 3 3 @ ~ + 3 1 04284002 13770169 04284341 -spoon_bread n 1 1 @ 1 0 07689313 -spoon_food n 1 2 @ %p 1 0 07564796 -spoonbill n 1 3 @ ~ #m 1 0 02006656 -spoonbill_catfish n 1 2 @ #m 1 0 02520147 -spoondrift n 1 1 @ 1 0 15056827 -spoonerism n 1 1 @ 1 0 06770164 -spoonfeeding n 2 2 @ + 2 0 01059189 00892711 -spoonflower n 1 2 @ #m 1 0 11793403 -spoonful n 1 1 @ 1 1 13770169 -spoonleaf_yucca n 1 1 @ 1 0 12483427 -spoor n 1 1 @ 1 0 09443281 -sporangiophore n 1 1 @ 1 0 13091982 -sporangium n 1 2 @ ~ 1 0 13091774 -sporanox n 1 2 @ ; 1 0 03588668 -spore n 1 2 @ ~ 1 1 11547855 -spore_case n 2 2 @ ~ 2 0 13091774 11550725 -spore_mother_cell n 1 1 @ 1 0 11688958 -spore_sac n 1 2 @ ~ 1 0 13091774 -spork n 1 1 @ 1 0 04284438 -sporobolus n 1 3 @ #m %m 1 0 12140137 -sporobolus_cryptandrus n 1 1 @ 1 0 12140759 -sporobolus_poiretii n 1 2 @ #m 1 0 12140511 -sporocarp n 1 1 @ 1 0 11550725 -sporophore n 1 2 @ %p 1 0 13093380 -sporophyl n 1 2 @ ~ 1 0 13091620 -sporophyll n 1 2 @ ~ 1 0 13091620 -sporophyte n 1 1 @ 1 0 11686912 -sporotrichosis n 1 1 @ 1 0 14182453 -sporozoa n 1 3 @ #m %m 1 0 01421496 -sporozoan n 1 3 @ ~ #m 1 0 01421807 -sporozoite n 1 1 @ 1 0 01422185 -sporran n 1 1 @ 1 0 04284572 -sport n 7 5 @ ~ + ; - 7 2 00523513 00433216 10639238 10639047 10638922 10341660 06780882 -sport_car n 1 1 @ 1 0 04285008 -sport_coat n 1 1 @ 1 0 02850358 -sport_fish n 1 1 @ 1 0 02512830 -sport_jacket n 1 1 @ 1 0 02850358 -sport_kite n 1 1 @ 1 0 04284869 -sport_shirt n 1 1 @ 1 1 03978966 -sport_utility n 1 1 @ 1 0 04285965 -sport_utility_vehicle n 1 1 @ 1 0 04285965 -sportfishing n 1 3 @ ~ - 1 0 00453935 -sporting_chance n 1 1 @ 1 0 05092969 -sporting_dog n 1 2 @ ~ 1 0 02098550 -sporting_goods n 1 2 @ ; 1 0 04284735 -sporting_house n 1 2 @ ~ 1 0 04581595 -sporting_lady n 1 2 @ ~ 1 0 10485440 -sporting_life n 1 1 @ 1 0 00506554 -sporting_man n 2 2 @ ~ 2 0 10639469 10639359 -sportiveness n 1 2 @ + 1 0 04649835 -sports_announcer n 1 1 @ 1 0 10639637 -sports_arena n 1 1 @ 1 1 03333610 -sports_car n 1 1 @ 1 1 04285008 -sports_coat n 1 1 @ 1 0 02850358 -sports_commentator n 1 1 @ 1 0 10639637 -sports_desk n 1 1 @ 1 0 08118725 -sports_editor n 1 1 @ 1 1 10639817 -sports_equipment n 1 2 @ ~ 1 0 04285146 -sports_fan n 1 2 @ ~ 1 0 10639925 -sports_implement n 1 2 @ ~ 1 0 04285622 -sports_jacket n 1 1 @ 1 1 02850358 -sports_medicine n 1 1 @ 1 0 06063417 -sports_meeting n 1 3 @ ~ %p 1 0 07467846 -sports_page n 1 2 @ #p 1 0 06257909 -sports_section n 1 3 @ #p %p 1 0 06392787 -sports_stadium n 1 3 @ ~ %p 1 0 04295881 -sports_writer n 1 1 @ 1 1 10640084 -sportscast n 1 1 @ 1 0 06683595 -sportscaster n 1 2 @ + 1 0 10639637 -sportsman n 1 2 @ + 1 1 10638922 -sportsmanship n 1 2 @ + 1 0 04839555 -sportswear n 1 2 @ ~ 1 0 04285803 -sportswoman n 1 1 @ 1 1 10638922 -sportswriter n 1 1 @ 1 0 10640084 -sporulation n 1 3 @ ~ + 1 0 13517199 -spot n 14 5 @ ~ #m #p + 14 8 08664443 06396644 04731925 04694441 04682462 06396468 04286128 00586262 14082186 13761407 07271942 04286575 04286307 00072261 -spot-weld n 1 2 @ + 1 0 04286960 -spot-welder n 1 2 @ + 1 0 10640446 -spot-welding n 1 2 @ + 1 0 00149895 -spot_check n 1 2 @ + 1 0 00142140 -spot_jamming n 1 1 @ 1 0 01251138 -spot_market n 1 1 @ 1 0 04286796 -spot_pass n 1 1 @ 1 0 00561820 -spot_price n 1 1 @ 1 0 13305373 -spot_weld n 1 2 @ + 1 0 04286960 -spot_welder n 1 2 @ + 1 0 10640446 -spot_welding n 1 2 @ + 1 0 00149895 -spotlessness n 1 2 @ + 1 0 14496563 -spotlight n 2 3 @ #m + 2 1 14433769 04286575 -spots n 1 1 @ 1 0 14365119 -spotsylvania n 2 3 @ #p ; 2 0 09152401 01295918 -spotted_antbird n 1 2 @ #m 1 0 01554017 -spotted_barramundi n 1 2 @ #m 1 0 02545153 -spotted_bat n 1 2 @ #m 1 0 02148512 -spotted_black_bass n 1 1 @ 1 0 02564935 -spotted_bonytongue n 1 2 @ #m 1 0 02545153 -spotted_coral_root n 1 1 @ 1 0 12053690 -spotted_cowbane n 1 2 @ #m 1 0 12935166 -spotted_crake n 1 2 @ #m 1 0 02016066 -spotted_cranesbill n 1 1 @ 1 0 12686077 -spotted_dick n 1 2 @ ; 1 0 07620485 -spotted_eagle_ray n 1 2 @ #m 1 0 01499396 -spotted_fever n 1 2 @ ~ 1 0 14141490 -spotted_flycatcher n 1 2 @ #m 1 0 01556182 -spotted_gum n 1 1 @ 1 0 12338146 -spotted_hemlock n 1 2 @ #m 1 0 12935166 -spotted_hyena n 1 2 @ #m 1 0 02117900 -spotted_joe-pye_weed n 1 2 @ #m 1 0 11968704 -spotted_lynx n 1 1 @ 1 0 02127586 -spotted_owl n 1 2 @ #m 1 0 01623880 -spotted_ray n 1 2 @ #m 1 0 01499396 -spotted_salamander n 2 2 @ #m 2 0 01632458 01629962 -spotted_sandpiper n 1 2 @ #m 1 0 02027075 -spotted_sea_trout n 1 3 @ #m %p 1 0 02599557 -spotted_skunk n 1 2 @ #m 1 0 02447021 -spotted_squeateague n 1 3 @ #m %p 1 0 02599557 -spotted_sunfish n 1 2 @ #m 1 0 02563949 -spotted_water_hemlock n 1 2 @ #m 1 0 12935166 -spotted_weakfish n 1 3 @ #m %p 1 0 02599557 -spotter n 4 3 @ ~ + 4 0 10640327 10640195 10271216 10090498 -spotting n 2 2 @ + 2 0 00276813 00151087 -spousal_equivalent n 1 2 @ ~ 1 0 10024362 -spousal_relationship n 1 3 @ ~ ; 1 0 13963970 -spouse n 1 4 @ ~ #m + 1 1 10640620 -spouse_equivalent n 1 2 @ ~ 1 0 10024362 -spout n 1 4 @ ~ #p + 1 0 04287153 -spouter n 3 2 @ + 3 0 09911570 04287351 02072953 -sprachgefuhl n 1 1 @ 1 0 05707885 -sprag n 2 1 @ 2 0 04287451 03951690 -spraguea n 1 3 @ #m %m 1 0 11862089 -spraguea_umbellatum n 1 2 @ #m 1 0 11862300 -sprain n 1 2 @ + 1 0 14299336 -sprat n 2 4 @ #m #p %p 2 0 07798985 02532918 -sprawl n 2 3 @ ~ + 2 0 08539717 05082337 -sprawler n 1 2 @ + 1 0 10640968 -sprawling n 1 2 @ + 1 1 05082337 -spray n 6 3 @ ~ + 6 4 15052555 13762305 04287610 02754103 15056541 07446533 -spray_can n 1 2 @ ~ 1 0 02682922 -spray_gun n 1 1 @ 1 0 04287747 -spray_paint n 1 1 @ 1 0 04287898 -spray_painting n 1 1 @ 1 0 00717640 -sprayer n 2 3 @ ~ + 2 0 10641112 02754103 -spraying n 3 4 @ ~ + ; 3 1 00368939 13762305 00717468 -spread n 10 4 @ ~ #p + 10 4 07445896 04752859 04052442 05088324 07856270 07578093 06258031 05101512 02822220 00367976 -spread_eagle n 2 1 @ 2 0 06883565 00557287 -spread_head n 1 3 @ ~ #p 1 0 06258031 -spreader n 2 2 @ + 2 0 04287986 02903204 -spreadhead n 1 3 @ ~ #p 1 0 06258031 -spreading n 3 3 @ ~ + 3 0 07445896 06253140 00367976 -spreading_bellflower n 1 1 @ 1 0 12039317 -spreading_dogbane n 1 1 @ 1 0 11767630 -spreading_factor n 1 1 @ 1 0 14910165 -spreading_fleabane n 1 1 @ 1 0 11966385 -spreading_pogonia n 1 2 @ #m 1 0 12051514 -spreadsheet n 1 1 @ 1 0 06579952 -sprechgesang n 1 1 @ 1 0 07281871 -sprechstimme n 1 1 @ 1 0 07281871 -spree n 1 3 @ ~ + 1 1 00510475 -spree_killer n 1 1 @ 1 0 10581648 -sprig n 2 2 @ ~ 2 0 13163991 04288165 -sprig_tail n 1 1 @ 1 0 01798168 -sprigger n 1 1 @ 1 0 10664656 -sprightliness n 1 4 @ ~ = + 1 0 04632157 -sprigtail n 1 1 @ 1 0 01798168 -spring n 6 4 @ ~ %p + 6 6 15237044 04288272 09443453 08508361 05021151 00120202 -spring-cleaning n 1 2 @ + 1 0 00251636 -spring_balance n 1 1 @ 1 0 04288533 -spring_beauty n 1 2 @ #m 1 0 11859472 -spring_break n 1 1 @ 1 0 01063234 -spring_cankerworm n 1 2 @ #m 1 0 02287987 -spring_chicken n 2 2 @ ~ 2 0 10804406 01793340 -spring_cleavers n 1 1 @ 1 0 12666159 -spring_cress n 1 1 @ 1 0 11882821 -spring_equinox n 1 3 @ ~ #p 1 0 15223574 -spring_frog n 2 2 @ #m 2 0 01641739 01641391 -spring_gun n 1 1 @ 1 0 04177041 -spring_heath n 1 1 @ 1 0 12228229 -spring_mattress n 1 1 @ 1 0 04288919 -spring_onion n 1 2 @ ; 1 0 07722485 -spring_peeper n 1 2 @ #m 1 0 01650690 -spring_roll n 1 2 @ ; 1 0 07866723 -spring_scale n 1 1 @ 1 0 04288533 -spring_squill n 1 1 @ 1 0 12461673 -spring_training n 1 1 @ 1 1 15240291 -spring_vetch n 2 2 @ #m 2 0 12576555 12542466 -spring_vetchling n 1 2 @ #m 1 0 12542466 -spring_water n 2 1 @ 2 0 14847503 07936015 -springboard n 2 2 @ ~ 2 1 04288673 00236194 -springbok n 1 2 @ #m 1 0 02423589 -springbuck n 1 2 @ #m 1 0 02423589 -springer n 3 3 @ ~ #p 3 0 04288784 02403644 02101861 -springer_spaniel n 1 2 @ ~ 1 0 02101861 -springfield n 3 2 @ #p 3 1 09084483 09108055 09097707 -springiness n 1 2 @ + 1 0 05021151 -springing_cow n 1 1 @ 1 0 02403644 -springtail n 1 2 @ #m 1 0 02163297 -springtide n 2 2 ! @ 2 0 07440852 07403459 -springtime n 1 2 @ %p 1 1 15237044 -sprinkle n 2 2 @ + 2 0 11506167 00278555 -sprinkler n 1 2 @ + 1 0 04289027 -sprinkler_system n 1 2 @ %p 1 0 04289195 -sprinkles n 1 1 @ 1 0 07604182 -sprinkling n 4 2 @ + 4 1 13761966 11506167 01038261 00278555 -sprint n 1 3 @ ~ + 1 0 00294452 -sprinter n 1 3 @ ~ + 1 1 10641413 -sprit n 1 2 @ #p 1 0 04289449 -sprite n 1 2 @ ~ 1 0 09540430 -sprites n 1 1 @ 1 0 11475992 -spritsail n 1 2 @ %p 1 0 04289576 -spritz n 1 2 @ + 1 0 07446599 -spritzer n 1 1 @ 1 0 07914777 -sprocket n 3 2 @ #p 3 0 04289827 04289690 03064935 -sprocket_wheel n 1 2 @ #p 1 0 04289690 -sprog n 2 2 @ ; 2 0 10641301 10641223 -sprout n 2 3 @ ~ + 2 0 13164583 07719437 -sprouting n 1 2 @ + 1 0 13487207 -spruce n 2 5 @ ~ #m #s %s 2 0 11624840 11624531 -spruce_bark_beetle n 1 2 @ #m 1 0 02180427 -spruce_beer n 1 1 @ 1 0 07932454 -spruce_gall_aphid n 1 2 @ #m 1 0 02255023 -spruce_grouse n 1 2 @ #m 1 0 01797307 -spruce_pine n 4 1 @ 4 0 11627512 11625804 11615026 11611087 -spruce_squirrel n 1 1 @ 1 0 02357401 -spruceness n 1 3 @ ~ + 1 0 14497365 -sprue n 1 1 @ 1 1 14400979 -sprung_rhythm n 1 1 @ 1 0 07094621 -spud n 2 4 @ ~ #p %p 2 0 07710616 04289964 -spume n 1 2 @ + 1 1 09443641 -spun_sugar n 1 1 @ 1 0 07605040 -spun_yarn n 1 2 @ ; 1 0 04290079 -spunk n 2 2 @ + 2 0 15101586 04857490 -spur n 5 5 @ ~ #p %p + 5 5 07252378 13912839 13089135 04290259 02891430 -spur_blight n 1 1 @ 1 0 14218805 -spur_gear n 1 1 @ 1 0 04290507 -spur_track n 1 2 @ ~ 1 0 02891430 -spur_wheel n 1 1 @ 1 0 04290507 -spurge n 1 3 @ ~ #m 1 0 12917901 -spurge_family n 1 3 @ #m %m 1 0 12916935 -spurge_laurel n 1 1 @ 1 0 12346986 -spurge_nettle n 1 2 @ #m 1 0 12925179 -spurious_correlation n 1 2 @ ; 1 0 06036157 -spurious_wing n 1 2 @ #p 1 0 01897667 -spuriousness n 1 3 ! @ + 1 0 13960833 -spurner n 1 2 @ + 1 0 10641551 -spurred_gentian n 1 2 @ #m 1 0 12297846 -spurring n 1 2 @ + 1 0 07252378 -spurt n 1 3 @ ~ + 1 0 07436100 -sputnik n 1 1 @ 1 1 04290615 -sputter n 2 2 @ + 2 0 07394814 07130183 -sputtering n 1 2 @ + 1 1 07394814 -sputum n 1 1 @ 1 0 05415815 -sputum_smear n 1 1 @ 1 0 05266486 -spy n 2 4 @ ~ + ; 2 1 10641755 10642151 -spy_satellite n 1 1 @ 1 0 04290762 -spyeria n 1 3 @ #m %m 1 0 02278343 -spyglass n 1 1 @ 1 0 03333129 -spyhole n 1 2 @ ~ 1 0 03905208 -spying n 3 3 @ ~ + 3 0 00881441 00654234 00151087 -spymaster n 1 1 @ 1 0 10642388 -spyware n 1 1 @ 1 0 06587980 -sq_ft n 1 1 @ 1 0 13613060 -sq_in n 1 1 @ 1 0 13612943 -sq_yd n 1 1 @ 1 0 13613177 -squab n 3 2 @ #p 3 0 07646403 04290875 01814549 -squabble n 1 2 @ + 1 1 07184735 -squabbler n 1 1 @ 1 0 10642499 -squad n 3 4 @ ~ %m %p 3 2 08218122 08208560 08080947 -squad_car n 1 2 @ ~ 1 1 03141065 -squad_room n 2 2 @ #p 2 0 04291069 04290945 -squadron n 3 3 @ ~ #m 3 2 08220089 08219768 08220228 -squalidae n 1 3 @ #m %m 1 0 01493366 -squalidness n 1 2 @ + 1 0 14499111 -squall n 1 3 @ ~ + 1 0 11514008 -squall_line n 1 1 @ 1 0 11460962 -squalor n 1 1 @ 1 0 14499111 -squalus n 1 3 @ #m %m 1 0 01493687 -squalus_acanthias n 1 2 @ #m 1 0 01493829 -squalus_suckleyi n 1 2 @ #m 1 0 01494041 -squama n 1 2 @ ~ 1 0 01903234 -squamata n 1 3 @ #m %m 1 0 01673503 -squamous_cell n 1 1 @ 1 0 05242928 -squamous_cell_carcinoma n 1 1 @ 1 0 14242788 -squamule n 1 2 @ ; 1 0 13155899 -squanderer n 1 3 @ ~ + 1 0 10479561 -squandering n 1 3 @ ~ + 1 0 00743822 -squandermania n 1 2 @ ; 1 0 00744004 -square n 8 5 @ ~ #p + ; 8 3 13878634 13731021 08619620 13878951 10642988 10642845 04291511 04291242 -square-bashing n 1 2 @ ; 1 0 00896688 -square-dance_music n 1 1 @ 1 0 07062451 -square-rigger n 1 1 @ 1 0 04291992 -square_and_rabbet n 1 1 @ 1 0 02713835 -square_block n 1 2 @ ~ 1 1 03144592 -square_bracket n 1 1 @ 1 0 06842290 -square_dance n 1 4 @ ~ %p + 1 0 00539951 -square_dancer n 1 2 @ + 1 0 10642596 -square_dancing n 1 3 @ ~ %p 1 0 00539951 -square_deal n 1 1 @ 1 0 07293391 -square_foot n 1 1 @ 1 0 13613060 -square_inch n 1 1 @ 1 0 13612943 -square_knot n 1 2 @ ~ 1 0 04291759 -square_matrix n 1 3 @ ~ %p 1 0 08268085 -square_meal n 1 1 @ 1 0 07573563 -square_measure n 1 2 @ ~ 1 0 13600404 -square_meter n 1 1 @ 1 0 13613294 -square_metre n 1 1 @ 1 0 13613294 -square_mile n 1 2 @ ~ 1 1 13613408 -square_nut n 1 1 @ 1 0 04291912 -square_one n 1 1 @ 1 0 13937918 -square_root n 1 1 @ 1 1 13731840 -square_sail n 1 1 @ 1 0 04292080 -square_shooter n 1 2 ! @ 1 0 10642705 -square_toes n 1 2 @ ; 1 0 10642845 -square_yard n 1 1 @ 1 0 13613177 -squareflipper_square_flipper n 1 2 @ #m 1 0 02080713 -squareness n 1 2 @ + 1 0 05072406 -squaretail n 1 2 @ #m 1 0 02634858 -squark n 1 1 @ 1 0 09447917 -squash n 3 6 @ ~ #m #p %p - 3 0 12158798 07715561 00479887 -squash_ball n 1 1 @ 1 0 04292221 -squash_bug n 1 2 @ #m 1 0 02239774 -squash_court n 1 1 @ 1 0 04292313 -squash_pie n 1 1 @ 1 0 07626833 -squash_racket n 1 1 @ 1 0 04292414 -squash_rackets n 1 2 @ - 1 0 00479887 -squash_racquet n 1 1 @ 1 0 04292414 -squash_racquets n 1 2 @ - 1 0 00479887 -squash_vine n 1 4 @ ~ #m %p 1 0 12158798 -squat n 3 2 @ + 3 1 00630071 13773047 00344942 -squatina n 1 3 @ #m %m 1 0 01495340 -squatina_squatina n 1 2 @ #m 1 0 01495493 -squatinidae n 1 3 @ #m %m 1 0 01495192 -squatness n 1 2 @ + 1 0 05137778 -squatter n 2 2 @ + 2 0 10643218 10643095 -squattiness n 1 2 @ + 1 0 04998816 -squatting n 2 2 @ + 2 2 00630071 00344942 -squaw n 1 1 @ 1 0 10643400 -squaw-bush n 1 1 @ 1 0 12764507 -squaw_corn n 1 1 @ 1 0 12145325 -squaw_grass n 1 2 @ #m 1 0 12465557 -squaw_huckleberry n 1 1 @ 1 0 12249294 -squaw_man n 1 1 @ 1 0 10643476 -squaw_root n 1 2 @ #m 1 0 11698562 -squawbush n 1 1 @ 1 0 12764507 -squawk n 2 2 @ + 2 0 07395446 07209965 -squawk_box n 1 2 @ #p 1 0 04292572 -squawker n 2 4 @ ~ #p + 2 0 10776339 04292572 -squawroot n 1 2 @ #m 1 0 11698562 -squeak n 2 2 @ + 2 1 07395623 00061014 -squeaker n 2 2 @ + 2 0 04292733 00061014 -squeal n 1 2 @ + 1 1 07395777 -squealer n 2 6 @ ~ #m %s %p + 2 0 10206173 02395406 -squeamishness n 2 2 @ + 2 0 14360320 04897152 -squeegee n 1 2 @ + 1 0 04292921 -squeezability n 1 2 @ + 1 0 04938474 -squeeze n 8 4 @ ~ + ; 8 1 00357023 14488912 13327503 10643584 07351031 00788097 00417859 00226319 -squeeze_box n 1 2 @ %p 1 0 02672831 -squeeze_play n 2 2 @ ~ 2 0 00788097 00564710 -squeezer n 1 3 @ ~ + 1 0 04293119 -squeezing n 1 3 @ ~ + 1 0 00357023 -squelch n 2 3 @ + ; 2 0 06716796 04293258 -squelch_circuit n 1 1 @ 1 0 04293258 -squelcher n 2 3 @ + ; 2 0 06716796 04293258 -squib n 1 1 @ 1 0 04293450 -squid n 2 5 @ ~ #p %p ; 2 0 07781801 01971280 -squiggle n 2 2 @ + 2 0 06801033 06404416 -squill n 3 5 @ ~ #m #p %p 3 0 12462805 12462582 12461466 -squilla n 1 2 @ #m 1 0 01990516 -squillidae n 1 3 @ #m %m 1 0 01990186 -squinch n 1 2 @ ~ 1 0 04293744 -squint n 2 3 @ ~ + 2 0 14557415 00878328 -squint-eye n 1 1 @ 1 0 10643727 -squinter n 1 2 @ + 1 0 10643727 -squire n 3 4 @ ~ + ; 3 2 10643937 10643837 10644062 -squirearchy n 1 1 @ 1 0 08387685 -squirm n 1 2 @ + 1 0 00349705 -squirmer n 1 2 @ + 1 0 10781236 -squirrel n 2 3 @ ~ #m 2 1 02355227 14766189 -squirrel's-foot_fern n 1 2 @ #m 1 0 13188767 -squirrel_cage n 1 1 @ 1 0 04293902 -squirrel_corn n 1 1 @ 1 0 11910666 -squirrel_monkey n 1 1 @ 1 0 02494079 -squirrelfish n 2 3 @ ~ #m 2 0 02592371 01450661 -squirreltail_barley n 1 1 @ 1 0 12123932 -squirreltail_grass n 1 1 @ 1 0 12123932 -squirt n 2 3 @ ~ + 2 0 10435251 07436100 -squirt_gun n 1 1 @ 1 0 04561548 -squirter n 1 2 @ + 1 0 04561548 -squirting_cucumber n 1 2 @ #m 1 0 12165758 -squish n 1 1 @ 1 0 07395867 -sr n 2 4 @ ~ #s #p 2 0 14655731 13612791 -sravana n 1 2 @ #p 1 0 15220385 -srbija n 1 4 @ #p %m %p 1 0 08816969 -sri_lanka n 1 5 @ %m %p + - 1 0 08719100 -sri_lanka_rupee n 1 2 @ ~ 1 0 13705415 -sri_lankan n 1 2 @ #m 1 0 09750046 -sri_lankan_monetary_unit n 1 2 @ ~ 1 0 13705300 -ss n 2 3 @ #p %p 2 0 08348400 08211924 -ssa n 1 1 @ 1 0 08134649 -sse n 1 1 @ 1 0 13833119 -sspe n 1 1 @ 1 0 14344189 -ssri n 1 2 @ ~ 1 0 04169152 -sss n 1 1 @ 1 0 08353563 -ssw n 1 1 @ 1 0 13833623 -st.-bruno's-lily n 1 1 @ 1 0 12606688 -st._ambrose n 1 2 @ ; 1 0 10815648 -st._andrew n 1 2 @ ; 1 0 10818088 -st._andrew's_cross n 1 1 @ 1 0 04302598 -st._anselm n 1 1 @ 1 0 10818860 -st._anthony's_cross n 1 1 @ 1 0 04395760 -st._athanasius n 1 2 @ ; 1 0 10827155 -st._augustine n 2 3 @ #p ; 2 0 10828573 09074834 -st._augustine_grass n 1 2 @ #m 1 0 12141167 -st._baeda n 1 2 @ ; 1 0 10840769 -st._barbara's_herb n 1 3 @ ~ #m 1 0 11873612 -st._basil n 1 2 @ ; 1 0 10837918 -st._basil_the_great n 1 2 @ ; 1 0 10837918 -st._beda n 1 2 @ ; 1 0 10840769 -st._bede n 1 2 @ ; 1 0 10840769 -st._benedict n 1 1 @ 1 0 10843858 -st._boniface n 1 2 @ ; 1 0 10856486 -st._bride n 1 1 @ 1 0 10864204 -st._bridget n 1 1 @ 1 0 10864204 -st._brigid n 1 1 @ 1 0 10864204 -st._bruno n 1 2 @ ; 1 0 10868980 -st._christopher n 2 2 @ #p 2 0 10897154 08987879 -st._christopher-nevis n 1 4 @ #m #p %p 1 0 08987423 -st._cloud n 1 2 @ #p 1 0 09103217 -st._crispin n 1 1 @ 1 0 10915373 -st._cyril n 1 1 @ 1 0 10919886 -st._dabeoc's_heath n 1 2 @ #m 1 0 12234669 -st._david n 1 1 @ 1 0 10924231 -st._denis n 1 1 @ 1 0 11313911 -st._dominic n 1 2 @ ; 1 0 10938363 -st._edward_the_confessor n 1 1 @ 1 0 10952143 -st._edward_the_martyr n 1 1 @ 1 0 10952629 -st._elias_mountains n 1 3 @ #p %p 1 0 09445088 -st._elias_range n 1 3 @ #p %p 1 0 09445088 -st._elmo's_fire n 1 1 @ 1 0 11440802 -st._eustatius n 1 2 @ #p 1 0 08749312 -st._francis n 2 4 @ #p + ; 2 0 10978098 09419281 -st._francis_of_assisi n 1 2 @ ; 1 0 10978098 -st._francis_river n 1 2 @ #p 1 0 09419281 -st._george n 1 1 @ 1 0 10996285 -st._george's n 1 2 @ #p 1 0 08947180 -st._gregory_i n 1 2 @ ; 1 0 11013876 -st._gregory_of_nazianzen n 1 2 @ ; 1 0 11015080 -st._ignatius n 1 1 @ 1 0 11070994 -st._ignatius_of_loyola n 1 2 @ ; 1 0 11071177 -st._irenaeus n 1 2 @ ; 1 0 11073061 -st._james n 1 2 @ ; 1 0 11078982 -st._james_the_apostle n 1 2 @ ; 1 0 11078982 -st._jerome n 1 2 @ ; 1 0 11083064 -st._john n 3 3 @ #p ; 3 0 11085924 09419536 08824771 -st._john's n 2 2 @ #p 2 0 08825321 08710325 -st._john_chrysostom n 1 2 @ ; 1 0 11086774 -st._john_river n 1 2 @ #p 1 0 09419536 -st._john_the_apostle n 1 2 @ ; 1 0 11085924 -st._john_the_baptist n 1 2 @ ; 1 0 11087359 -st._johns n 1 2 @ #p 1 0 09419783 -st._johns_river n 1 2 @ #p 1 0 09419783 -st._joseph n 2 5 @ ~ #p %s ; 2 0 09107412 02748618 -st._jude n 1 2 @ ; 1 0 11094055 -st._kitts n 1 2 @ #p 1 0 08987879 -st._kitts_and_nevis n 1 4 @ #m #p %p 1 0 08987423 -st._lawrence n 2 3 @ #p ; 2 0 11121108 09420030 -st._lawrence_river n 1 2 @ #p 1 0 09420030 -st._lawrence_seaway n 1 1 @ 1 0 04129872 -st._leo_i n 1 1 @ 1 0 11127188 -st._louis n 2 2 @ #p 2 1 09107626 11140243 -st._lucia n 2 4 @ #m #p %p 2 0 08988609 08988453 -st._luke n 1 2 @ ; 1 0 11144604 -st._maarten n 1 2 @ #p 1 0 08749650 -st._mark n 1 1 @ 1 0 11156943 -st._martin n 2 2 @ #p 2 0 11160055 08749650 -st._mary_magdalen n 1 1 @ 1 0 11162582 -st._mary_magdalene n 1 1 @ 1 0 11162582 -st._mary_of_bethlehem n 1 2 @ #p 1 0 08854855 -st._matthew n 1 2 @ ; 1 0 11164671 -st._matthew_the_apostle n 1 2 @ ; 1 0 11164671 -st._nicholas n 1 1 @ 1 0 11205797 -st._nick n 1 1 @ 1 0 10550673 -st._olaf n 1 1 @ 1 0 11213552 -st._olav n 1 1 @ 1 0 11213552 -st._patrick n 1 1 @ 1 0 11225469 -st._paul n 2 4 @ #m #p ; 2 1 09103377 11225661 -st._peter n 1 1 @ 1 0 11231157 -st._peter's_wreath n 1 1 @ 1 0 12659539 -st._peter_the_apostle n 1 1 @ 1 0 11231157 -st._petersburg n 2 2 @ #p 2 1 09075007 09008454 -st._polycarp n 1 1 @ 1 0 11241455 -st._simon n 1 1 @ 1 0 11301414 -st._thomas n 2 2 @ ; 2 0 11338796 10820790 -st._thomas_a_becket n 1 2 @ ; 1 0 10840021 -st._thomas_and_principe n 1 3 @ #p %p 1 0 08992648 -st._thomas_aquinas n 1 2 @ ; 1 0 10820790 -st._vincent n 1 3 @ #p %p 1 0 08989324 -st._vincent_and_the_grenadines n 1 4 @ #m #p %p 1 0 08989031 -st._vitus n 1 1 @ 1 0 11367725 -st._vitus_dance n 1 1 @ 1 0 14095568 -st_andrews's_cross n 1 1 @ 1 0 12368847 -st_bernard n 1 1 @ 1 0 02109525 -st_john's_day n 1 2 @ #p 1 0 15222202 -st_john's_eve n 1 2 @ #p 1 0 15222369 -st_john's_night n 1 2 @ #p 1 0 15222369 -st_john's_wort n 1 3 @ ~ #m 1 0 12367611 -st_john's_wort_family n 1 3 @ #m %m 1 0 12363988 -st_joseph n 1 2 @ #p 1 0 15194739 -st_martin's_day n 1 2 @ #p 1 0 15185837 -st_mihiel n 1 3 @ #p ; 1 0 01293167 -st_patrick's_day n 1 1 @ 1 0 15187988 -st_peter's_wort n 1 1 @ 1 0 12369665 -st_valentine's_day n 1 2 @ #p 1 0 15187250 -stab n 3 3 @ ~ + 3 0 07494972 01173965 00788473 -stabber n 1 2 @ + 1 0 10644179 -stabile n 1 2 ! @ 1 0 04294041 -stabilisation n 2 5 ! @ ~ + ; 2 0 01266945 01159025 -stabiliser n 1 3 @ ~ + 1 0 04294212 -stability n 3 5 ! @ ~ = + 3 1 04778401 13970124 04738641 -stabilization n 2 5 ! @ ~ + ; 2 1 01159025 01266945 -stabilizer n 3 4 @ ~ #p + 3 0 15052667 04294426 04294212 -stabilizer_bar n 1 2 @ #p 1 0 04294614 -stable n 1 4 @ ~ %p + 1 1 04294879 -stable_companion n 1 1 @ 1 0 02375438 -stable_factor n 1 1 @ 1 0 15071503 -stable_gear n 1 2 @ ~ 1 0 04295081 -stableboy n 1 1 @ 1 0 10644301 -stableman n 1 1 @ 1 0 10644301 -stablemate n 1 1 @ 1 0 02375438 -stableness n 1 3 ! @ + 1 0 04778401 -stabling n 1 2 @ + 1 0 04295353 -stabroek n 1 2 @ #p 1 0 08948704 -stachyose n 1 1 @ 1 0 15052852 -stachys n 1 3 @ #m %m 1 0 12868634 -stachys_palustris n 1 2 @ #m 1 0 12869061 -stachys_sylvatica n 1 2 @ #m 1 0 12868880 -stack n 5 3 @ ~ + 5 1 07963087 13774404 06494646 04247175 04027504 -stacked_heel n 1 1 @ 1 1 04295475 -stacker n 1 2 @ + 1 0 10644469 -stacks n 2 3 @ #p ; 2 0 13777509 04295571 -stacte n 1 3 @ #s ; 1 0 15050161 -staddle n 1 1 @ 1 0 04295777 -stadium n 1 3 @ ~ %p 1 1 04295881 -stadium_jumping n 1 2 @ #p 1 0 00450998 -stael n 1 1 @ 1 0 11311959 -staff n 6 7 @ ~ #m %m %p + ; 6 3 08439955 04296261 08287586 15050320 07267160 06861860 -staff-tree_family n 1 3 @ #m %m 1 0 12747563 -staff_line n 1 2 @ #p 1 0 06862059 -staff_member n 1 3 @ #m ; 1 0 10644598 -staff_of_life n 1 4 @ ~ #p %s 1 0 07679356 -staff_office n 1 1 @ 1 0 08118991 -staff_officer n 1 3 @ ~ ; 1 0 10644839 -staff_sergeant n 1 1 @ 1 0 10645017 -staff_tree n 1 2 @ #m 1 0 12747831 -staff_vine n 1 2 @ #m 1 0 12748248 -staffa n 1 3 @ #p %p 1 0 08894133 -staffer n 1 3 @ #m ; 1 0 10644598 -staffordshire_bull_terrier n 1 1 @ 1 0 02093256 -staffordshire_bullterrier n 1 1 @ 1 0 02093256 -staffordshire_terrier n 1 1 @ 1 0 02093428 -stag n 2 2 @ ~ 2 0 02431337 02430559 -stag's-horn_coral n 1 2 @ #m 1 0 01917611 -stag's_garlic n 1 1 @ 1 0 12435486 -stag_beetle n 1 2 @ #m 1 0 02175916 -stag_party n 1 2 @ ~ 1 0 08256005 -stage n 8 5 @ ~ #p %p + 8 7 15290337 13939892 04296562 07006712 04297098 00306900 08646566 04296949 -stage_business n 1 2 @ ~ 1 0 00550341 -stage_crew n 1 2 @ %m 1 0 08243695 -stage_dancing n 1 2 @ ~ 1 0 00528397 -stage_direction n 1 2 @ #p 1 1 06789080 -stage_director n 1 2 @ ~ 1 0 10645223 -stage_door n 1 1 @ 1 1 04297327 -stage_effect n 1 1 @ 1 0 05918171 -stage_fright n 1 1 @ 1 0 07521563 -stage_left n 1 2 @ #p 1 1 08625684 -stage_manager n 1 1 @ 1 0 10645611 -stage_name n 1 1 @ 1 0 06338571 -stage_right n 1 2 @ #p 1 1 08625297 -stage_set n 1 4 @ ~ #p %p 1 0 04297476 -stage_setting n 1 2 @ %p 1 0 03773268 -stage_technician n 1 3 @ ~ #m 1 0 10645392 -stage_whisper n 1 1 @ 1 0 07130580 -stagecoach n 1 1 @ 1 0 04297098 -stagecraft n 1 2 @ ~ 1 0 05643908 -stagehand n 1 3 @ ~ #m 1 0 10645392 -stager n 2 2 @ + 2 1 10645611 10749123 -stagflation n 1 2 @ + 1 0 13560738 -stagger n 1 2 @ + 1 0 00289388 -stagger_bush n 1 2 @ #m 1 0 12240965 -stagger_head n 1 1 @ 1 0 06345566 -staggerbush n 1 2 @ #m 1 0 12240965 -staggered_board_of_directors n 1 1 @ 1 0 08380975 -staggered_head n 1 1 @ 1 0 06345566 -staggerer n 1 2 @ + 1 0 10645854 -staggers n 1 1 @ 1 0 14275764 -staghead n 1 1 @ 1 0 12521624 -staghorn_coral n 1 2 @ #m 1 0 01917611 -staghorn_fern n 1 3 @ ~ #m 1 0 13177529 -staghorn_moss n 1 1 @ 1 0 13223588 -staghorn_sumac n 1 1 @ 1 0 12764202 -staghound n 1 1 @ 1 0 02092173 -staginess n 1 2 @ + 1 1 04788693 -staging n 4 4 @ ~ %p + 4 0 07007171 04141712 00307102 00091404 -staging_area n 1 2 @ ; 1 0 08632258 -stagira n 1 2 @ #p 1 0 08789835 -stagirus n 1 2 @ #p 1 0 08789835 -stagnancy n 2 3 @ + ; 2 0 14013005 14012667 -stagnant_anoxia n 1 1 @ 1 0 14043708 -stagnant_hypoxia n 1 1 @ 1 0 14041763 -stagnation n 2 3 @ + ; 2 1 14012667 14013005 -staidness n 1 2 @ + 1 0 04647826 -stain n 5 4 @ ~ + ; 5 3 04695176 15052970 14498096 06794666 00072261 -stainability n 1 4 @ ~ + ; 1 0 04944710 -stained-glass_window n 1 1 @ 1 1 04297750 -stained_glass n 1 2 @ ~ 1 0 14882793 -stainer n 1 2 @ + 1 0 10646032 -staining n 2 4 @ ~ + ; 2 2 00275572 00276813 -stainless n 1 1 @ 1 0 14802921 -stainless_steel n 1 1 @ 1 1 14802921 -stair n 1 4 @ ~ #p %p 1 1 04314914 -stair-carpet n 1 1 @ 1 0 04297847 -stair-rod n 1 1 @ 1 0 04298053 -staircase n 1 4 @ ~ #p %p 1 1 04298308 -stairhead n 1 2 @ #p 1 0 04297944 -stairs n 1 3 @ ~ ; 1 1 04298171 -stairway n 1 4 @ ~ #p %p 1 1 04298308 -stairwell n 1 1 @ 1 1 04298661 -stake n 5 5 @ ~ #p + ; 5 3 13286801 07257815 04298906 13343526 04298765 -stake_driver n 1 2 @ #m 1 0 02011805 -stake_race n 1 1 @ 1 0 07462547 -stakeholder n 1 1 @ 1 0 10646140 -stakeout n 1 1 @ 1 0 00880893 -stakes n 1 3 @ ~ #p 1 0 13343526 -stalactite n 1 3 @ #p %s 1 0 09443753 -stalagmite n 1 3 @ #p %s 1 0 09443921 -stalemate n 2 2 @ + 2 0 14015361 07354080 -staleness n 2 5 ! @ ~ = + 2 0 05649785 04928008 -stalin n 1 1 @ 1 1 11312120 -stalin_peak n 1 2 @ #p 1 0 09251832 -stalinabad n 1 2 @ #p 1 0 09021313 -stalingrad n 1 2 @ #p 1 0 09010085 -stalinisation n 1 2 @ + 1 0 13560911 -stalinism n 1 3 @ ~ + 1 0 08440630 -stalinist n 1 2 @ + 1 0 10646325 -stalinization n 1 2 @ + 1 0 13560911 -stalino n 1 2 @ #p 1 0 09016099 -stalk n 5 4 @ ~ %p + 5 0 14805899 13129165 00711523 00320625 00290015 -stalked_puffball n 2 2 @ #m 2 0 12970733 12970293 -stalker n 3 2 @ + 3 0 10646528 10646433 10486679 -stalking n 2 3 @ ~ + 2 0 00711523 00320625 -stalking-horse n 4 2 @ ~ 4 0 10646641 06759776 04299066 02385898 -stall n 7 5 @ ~ #p + ; 7 3 04299370 02873839 04299215 07318824 04299699 02968333 01075725 -stall_bar n 1 1 @ 1 0 04299526 -stalling n 1 3 @ ~ + 1 0 01075725 -stallion n 1 2 @ ~ 1 0 02377181 -stalls n 1 3 @ ~ %p 1 0 04294879 -stalwart n 1 1 @ 1 0 10275395 -stalwartness n 1 2 @ + 1 0 05031560 -stamboul n 1 3 @ #p %p 1 0 09041785 -stambul n 1 3 @ #p %p 1 0 09041785 -stamen n 1 3 @ #p %p 1 1 11675096 -stamina n 1 2 @ ~ 1 0 05032918 -stammel n 1 1 @ 1 0 04299828 -stammer n 1 2 @ + 1 0 14402922 -stammerer n 1 2 @ + 1 0 10646780 -stamp n 9 4 @ ~ #p + 9 4 13913566 07998573 06855207 06796119 13374008 06855817 04300080 04299963 04159058 -stamp_act n 1 1 @ 1 0 06564887 -stamp_album n 1 1 @ 1 0 04300281 -stamp_battery n 1 2 @ %p 1 0 02810782 -stamp_collecting n 1 2 @ ~ 1 0 01016420 -stamp_collection n 2 2 @ ~ 2 0 07958642 01016420 -stamp_collector n 1 1 @ 1 0 10422405 -stamp_dealer n 1 1 @ 1 0 10647359 -stamp_duty n 1 1 @ 1 0 13315191 -stamp_mill n 1 2 @ ~ 1 0 04300358 -stamp_pad n 1 1 @ 1 0 03872885 -stamp_tax n 1 1 @ 1 0 13315191 -stampede n 2 2 @ + 2 1 01123420 07446270 -stamper n 3 2 @ + 3 0 10647168 10646942 04300509 -stamping_ground n 1 2 @ ~ 1 0 08581503 -stamping_machine n 1 1 @ 1 0 04300509 -stamping_mill n 1 2 @ ~ 1 0 04300358 -stan_laurel n 1 2 @ #m 1 0 11119190 -stan_musial n 1 1 @ 1 0 11197944 -stan_the_man n 1 1 @ 1 0 11197944 -stance n 2 3 @ ~ + 2 1 05082507 06196284 -stanchion n 1 1 @ 1 0 04300643 -stand n 12 5 @ ~ #p %p + 12 9 02797692 08653706 08438384 04301000 04038440 07366145 06210363 04299215 01057053 04300741 02786984 00960851 -stand-down n 2 2 @ ; 2 0 14013841 00057162 -stand-in n 1 3 @ ~ + 1 0 10648237 -stand_oil n 1 1 @ 1 0 14967893 -standard n 6 3 @ ~ + 6 2 07260623 05924920 13617952 13373214 04301242 04301140 -standard-bearer n 2 2 @ ; 2 0 10647475 09938272 -standard_and_poor's n 1 1 @ 1 0 06640848 -standard_and_poor's_index n 1 1 @ 1 0 06640848 -standard_atmosphere n 1 2 @ ~ 1 0 13711060 -standard_candle n 1 1 @ 1 0 13641534 -standard_cell n 1 2 @ ~ 1 0 04301474 -standard_deviation n 1 2 @ ; 1 1 06025172 -standard_gauge n 1 1 @ 1 0 04301626 -standard_generalized_markup_language n 1 2 @ ; 1 0 06788007 -standard_of_life n 1 1 @ 1 0 13941469 -standard_of_living n 1 1 @ 1 1 13941469 -standard_of_measurement n 1 1 @ 1 1 13854101 -standard_operating_procedure n 1 2 @ ~ 1 0 01024968 -standard_poodle n 1 1 @ 1 0 02113799 -standard_pressure n 1 2 @ ~ 1 0 13711060 -standard_procedure n 1 2 @ ~ 1 0 01024968 -standard_schnauzer n 1 1 @ 1 0 02097209 -standard_temperature n 1 2 @ ~ 1 0 13715124 -standard_time n 1 2 @ ~ 1 0 15116910 -standard_transmission n 1 1 @ 1 0 04301760 -standardisation n 3 3 @ ~ + 3 0 13938440 01158690 00999245 -standardiser n 1 2 @ + 1 0 10647582 -standardization n 3 3 @ ~ + 3 0 13938440 01158690 00999245 -standardizer n 1 2 @ + 1 0 10647582 -standby n 2 2 @ + 2 1 04301919 10737103 -standdown n 2 2 @ ; 2 0 14013841 00057162 -standee n 2 3 @ + ; 2 0 10647745 04302034 -stander n 1 5 ! @ ~ + ; 1 0 10648033 -standing n 3 3 @ ~ + 3 1 13948136 06496116 00349080 -standing_army n 1 2 @ ; 1 0 08394423 -standing_committee n 1 2 @ ~ 1 0 08326383 -standing_operating_procedure n 1 2 @ ~ 1 0 01024968 -standing_order n 1 1 @ 1 0 06654977 -standing_ovation n 1 2 @ %p 1 1 06688751 -standing_press n 1 2 @ %p 1 0 04302200 -standing_rib_roast n 1 2 @ #p 1 0 07661950 -standing_room n 1 2 @ #p 1 0 04302334 -standing_stone n 1 1 @ 1 0 03745571 -standing_wave n 1 1 @ 1 0 07346772 -standish n 1 1 @ 1 0 11312362 -standoff n 2 2 @ ~ 2 0 07353716 00961001 -standoffishness n 1 3 @ ~ + 1 0 04656996 -standpipe n 1 1 @ 1 0 04302527 -standpoint n 1 2 @ ~ 1 1 06210363 -standstill n 2 2 @ + 2 1 14015361 07366145 -standup_comedian n 1 1 @ 1 0 10117415 -stanford n 2 2 @ #p 2 0 11312556 04302740 -stanford-binet_test n 1 1 @ 1 0 01007273 -stanford_university n 1 2 @ #p 1 0 04302740 -stanford_white n 1 1 @ 1 0 11383917 -stanhope n 1 1 @ 1 0 04302863 -stanhopea n 1 2 @ #m 1 0 12084890 -stanislavsky n 1 1 @ 1 0 11312709 -stanley n 2 1 @ 2 0 11313357 11313011 -stanley_baldwin n 1 1 @ 1 0 10832085 -stanley_frank_musial n 1 1 @ 1 0 11197944 -stanley_kubrick n 1 1 @ 1 0 11112377 -stanley_smith_stevens n 1 1 @ 1 0 11317519 -stanley_steamer n 1 2 @ ; 1 0 04302988 -stanleya n 1 3 @ #m %m 1 0 11897342 -stanleya_pinnata n 1 2 @ #m 1 0 11897466 -stannic_chloride n 1 1 @ 1 0 15018448 -stannic_sulfide n 1 1 @ 1 0 14701826 -stannite n 1 1 @ 1 0 15053568 -stannous_fluoride n 1 1 @ 1 0 15018572 -stanton n 1 1 @ 1 0 11313507 -stanza n 1 4 @ ~ #p %p 1 0 07052291 -stapedectomy n 1 1 @ 1 0 00687857 -stapelia n 1 3 @ ~ #m 1 0 13238375 -stapelias_asterias n 1 2 @ #m 1 0 13238654 -stapes n 1 2 @ #p 1 0 05326465 -staph n 1 2 @ #m 1 0 01379389 -staphylaceae n 1 3 @ #m %m 1 0 12769430 -staphylea n 1 2 @ #m 1 0 12769663 -staphylinidae n 1 3 @ #m %m 1 0 02180742 -staphylococcal_enterotoxin n 1 2 @ ~ 1 0 15050516 -staphylococcal_enterotoxin_b n 1 1 @ 1 0 15050695 -staphylococcal_infection n 1 2 @ ~ 1 0 14184801 -staphylococci n 1 2 @ #m 1 0 01379389 -staphylococcus n 1 3 @ #m + 1 0 01379389 -staple n 5 4 @ ~ + ; 5 1 02800793 15018688 14596700 04303258 04303095 -staple_fiber n 1 1 @ 1 0 15018688 -staple_fibre n 1 1 @ 1 0 15018688 -staple_gun n 1 1 @ 1 0 04303357 -staplegun n 1 1 @ 1 0 04303357 -stapler n 1 2 @ + 1 0 04303497 -stapling_machine n 1 1 @ 1 0 04303497 -star n 8 5 @ ~ #m + ; 8 4 09444100 09762509 09444783 10648696 13881644 10163723 06828389 05730930 -star-duckweed n 1 2 @ #m 1 0 11795216 -star-glory n 1 1 @ 1 0 12827270 -star-leaf_begonia n 1 1 @ 1 0 12361754 -star-nosed_mole n 1 1 @ 1 0 01889849 -star-of-bethlehem n 1 3 @ ~ #m 1 0 12459629 -star-spangled_banner n 1 1 @ 1 0 02701566 -star-thistle n 1 1 @ 1 0 11948044 -star_anise n 3 5 @ #m #s #p %p 3 0 11709205 11709045 07826930 -star_aniseed n 1 3 @ #s #p 1 0 07826930 -star_apple n 1 2 @ #m 1 0 12773651 -star_begonia n 1 1 @ 1 0 12361754 -star_chamber n 1 1 @ 1 0 08335599 -star_chart n 1 1 @ 1 0 07002459 -star_divination n 1 3 @ ~ - 1 0 05778131 -star_drill n 1 1 @ 1 0 04303852 -star_earthball n 1 2 @ #m 1 0 12969670 -star_fruit n 1 2 @ #p 1 0 07746551 -star_grass n 4 3 @ ~ #m 4 0 12430198 12423211 12115748 12114770 -star_ipomoea n 1 1 @ 1 0 12828220 -star_jasmine n 1 2 @ #m 1 0 11777552 -star_magnolia n 1 1 @ 1 0 11711537 -star_of_david n 1 1 @ 1 1 06882333 -star_of_the_veldt n 1 2 @ #m 1 0 11961446 -star_sapphire n 1 1 @ 1 0 15053703 -star_saxifrage n 1 2 @ #m 1 0 12794367 -star_shell n 1 1 @ 1 0 07264384 -star_sign n 1 4 @ ~ #p ; 1 0 08685677 -star_topology n 1 1 @ 1 0 05730930 -star_tulip n 1 2 @ #m 1 0 12447581 -starboard n 1 3 ! @ + 1 1 04303672 -starch n 2 3 @ ~ + 2 0 15053867 15018889 -starch_wheat n 1 1 @ 1 0 12143215 -starches n 1 2 @ ~ 1 0 07566863 -stardom n 1 2 @ + 1 1 13948766 -stardust n 1 1 @ 1 0 05208595 -stare n 1 3 @ ~ + 1 1 00878456 -starer n 1 2 @ + 1 0 10648909 -starets n 1 2 @ ~ 1 0 10649047 -starfish n 1 2 @ #m 1 0 02317335 -starfish_flower n 1 3 @ ~ #m 1 0 13238375 -starflower n 1 1 @ 1 0 12459882 -stargazer n 3 5 @ ~ #m + ; 3 0 09994119 09818343 02611898 -stargazing n 1 2 @ + 1 0 00880563 -starkey n 1 2 @ #m 1 0 11313726 -starkness n 2 2 @ + 2 0 05124534 04697819 -starlet n 2 1 @ 2 1 10649197 09444942 -starlight n 1 1 @ 1 1 11485186 -starling n 1 3 @ ~ #m 1 0 01576695 -starnose_mole n 1 1 @ 1 0 01889849 -starr n 1 2 @ #m 1 0 11313726 -starry_saxifrage n 1 2 @ #m 1 0 12794367 -stars_and_bars n 1 1 @ 1 0 04304084 -stars_and_stripes n 1 1 @ 1 0 02701566 -starship n 1 1 @ 1 0 04304215 -start n 8 4 ! @ ~ + 8 5 07325190 15265518 00241699 00867357 00235435 08653873 06792188 05157406 -start-off n 1 1 @ 1 0 07329568 -starter n 7 4 @ ~ #p + 7 1 04304375 10649438 10649308 10355449 07581346 03127024 00920727 -starter_motor n 1 3 @ ~ #p 1 0 04304375 -starting n 1 2 @ + 1 1 00241699 -starting_block n 1 1 @ 1 0 04304557 -starting_buffer n 1 1 @ 1 1 14786257 -starting_gate n 1 1 @ 1 0 04304680 -starting_handle n 1 1 @ 1 0 03127302 -starting_line n 1 1 @ 1 0 08653873 -starting_motor n 1 3 @ ~ #p 1 0 04304375 -starting_pitcher n 1 2 @ ; 1 1 10649574 -starting_point n 1 1 @ 1 1 15266164 -starting_post n 1 1 @ 1 0 07258109 -starting_signal n 1 1 @ 1 0 06792188 -starting_stall n 1 1 @ 1 0 04304680 -starting_time n 1 2 @ ~ 1 0 15265518 -startle n 1 3 @ ~ + 1 0 00867357 -startle_reaction n 1 1 @ 1 0 00865031 -startle_reflex n 1 1 @ 1 0 00865284 -startle_response n 1 1 @ 1 0 00865031 -startup n 2 2 @ + 2 1 00242431 00239910 -starvation n 2 2 @ + 2 2 14040310 01150662 -starvation_acidosis n 1 1 @ 1 0 14020558 -starved_aster n 1 1 @ 1 0 11937102 -starveling n 1 1 @ 1 0 10649724 -starving n 1 2 @ + 1 0 01150662 -starwort n 1 1 @ 1 0 11818271 -stash n 1 2 @ + 1 0 13366912 -stash_house n 1 2 @ ; 1 0 04304812 -stasis n 2 1 @ 2 0 14567812 14013249 -stassano_furnace n 1 2 @ #p 1 0 04305016 -stat_mi n 1 3 @ #p %p 1 0 13651218 -state n 8 7 @ ~ #m %m %p = ; 8 4 08654360 00024720 08178547 08168978 14479615 13988498 08544813 08137738 -state's_attorney n 1 1 @ 1 0 10649962 -state's_evidence n 1 2 @ ; 1 0 06736083 -state-sponsored_terrorism n 1 2 @ ; 1 0 00764891 -state_attorney n 1 1 @ 1 0 10649962 -state_bank n 1 1 @ 1 0 08418763 -state_boundary n 1 2 @ ~ 1 0 08515457 -state_capital n 1 2 @ ~ 1 0 08695539 -state_capitalism n 1 1 @ 1 0 08365484 -state_change n 1 2 @ ~ 1 0 13536016 -state_department n 2 4 @ ~ %p ; 2 2 08137738 08122009 -state_government n 1 1 @ 1 1 08226018 -state_highway n 1 3 @ ~ %p 1 0 03306610 -state_line n 1 2 @ ~ 1 0 08515457 -state_of_affairs n 1 2 @ ~ 1 1 13927383 -state_of_bahrain n 1 5 @ #m #p %m %p 1 0 08848094 -state_of_eritrea n 1 4 @ #p %m %p 1 0 08777544 -state_of_flux n 1 1 @ 1 0 14033917 -state_of_grace n 1 2 @ ; 1 0 14458181 -state_of_israel n 1 5 @ #p %m %p - 1 0 08792548 -state_of_katar n 1 5 @ #m #p %m %p 1 0 08986905 -state_of_kuwait n 1 5 @ #m #p %m %p 1 0 08929243 -state_of_matter n 1 4 @ ~ = ; 1 1 14479615 -state_of_mind n 2 2 @ ~ 2 0 14016114 05669934 -state_of_nature n 1 2 @ ~ 1 0 13939353 -state_of_qatar n 1 5 @ #m #p %m %p 1 0 08986905 -state_of_the_art n 1 1 @ 1 0 13941924 -state_of_the_vatican_city n 1 3 @ #p %p 1 0 09161090 -state_of_war n 1 3 @ ~ ; 1 0 13981403 -state_prison n 1 1 @ 1 1 04305471 -state_senator n 1 1 @ 1 0 10650076 -state_socialism n 1 1 @ 1 0 08365672 -state_supreme_court n 1 2 @ ; 1 0 08336188 -state_tax_lien n 1 1 @ 1 0 13402529 -state_treasurer n 1 1 @ 1 1 10652605 -state_trooper n 1 1 @ 1 0 10730728 -statecraft n 1 1 @ 1 0 04890865 -statehouse n 1 1 @ 1 0 04305210 -stateless_person n 1 1 @ 1 0 10017890 -stateliness n 2 2 @ + 2 0 04911894 04729984 -stately_home n 1 2 @ ; 1 0 04305323 -statement n 7 5 @ ~ #p + ; 7 4 06722453 06648724 07029819 06723452 07203126 06584891 06516595 -staten_island n 1 2 @ #p 1 1 09123281 -stater n 2 1 @ 2 0 13393155 10649823 -stateroom n 1 1 @ 1 0 04305572 -states'_rights n 2 3 @ ~ ; 2 0 06185581 05188220 -states'_rights_democratic_party n 1 1 @ 1 0 08263870 -states_general n 1 2 @ ~ 1 0 08164261 -statesman n 1 3 @ ~ + 1 1 10650162 -statesmanship n 1 2 @ + 1 1 04890865 -stateswoman n 1 2 @ ~ 1 0 10652511 -static n 2 2 @ ~ 2 0 07431683 06712625 -static_electricity n 1 1 @ 1 0 11514462 -static_line n 1 2 @ #p 1 0 04305641 -static_magnet n 1 2 @ ~ 1 0 03917622 -static_tube n 1 1 @ 1 0 04305947 -statice n 1 2 @ #m 1 0 12099342 -statics n 1 1 @ 1 0 06113301 -statin n 1 2 @ ~ 1 0 03676175 -statin_drug n 1 2 @ ~ 1 0 03676175 -station n 5 4 @ ~ + ; 5 1 04306080 13947645 08656590 08624385 05057061 -station_agent n 1 1 @ 1 0 10652837 -station_house n 1 2 @ %p 1 1 03977678 -station_keeper n 1 1 @ 1 1 10008254 -station_of_the_cross n 1 1 @ 1 0 04306454 -station_waggon n 1 3 @ ~ %p 1 0 02814533 -station_wagon n 1 3 @ ~ %p 1 1 02814533 -stationariness n 1 3 @ ~ + 1 0 14006490 -stationary_stochastic_process n 1 1 @ 1 0 13561198 -stationary_wave n 1 1 @ 1 0 07346772 -stationer n 1 1 @ 1 0 10652703 -stationery n 1 2 @ ~ 1 1 06258852 -stationery_seller n 1 1 @ 1 0 10652703 -stationmaster n 1 1 @ 1 0 10652837 -stations n 1 2 @ ; 1 0 01043333 -stations_of_the_cross n 1 2 @ ; 1 0 01043333 -statistic n 1 3 @ ~ ; 1 1 06021499 -statistical_commission n 1 1 @ 1 0 08299107 -statistical_distribution n 1 3 @ ~ ; 1 0 05729036 -statistical_mechanics n 1 1 @ 1 0 06111728 -statistical_method n 1 4 @ ~ #p ; 1 0 06020737 -statistical_procedure n 1 4 @ ~ #p ; 1 0 06020737 -statistical_regression n 1 4 @ ~ #p ; 1 0 06027264 -statistical_table n 1 2 @ ~ 1 0 08266542 -statistician n 2 4 @ ~ + ; 2 1 10653238 10652954 -statistics n 1 5 @ ~ %p + - 1 0 06018465 -stator n 1 3 ! @ #p 1 0 04306592 -stator_coil n 1 2 @ #p 1 0 04306592 -statuary n 1 2 @ ~ 1 1 07958727 -statue n 1 3 @ ~ + 1 1 04306847 -statue_maker n 1 2 @ ~ 1 0 10566072 -statue_of_liberty n 1 1 @ 1 0 04307106 -statuette n 1 2 @ + 1 1 03336459 -stature n 2 3 @ ~ = 2 1 14437976 05002352 -status n 2 3 @ ~ = 2 2 13945919 13920835 -status_asthmaticus n 1 1 @ 1 0 14146128 -status_epilepticus n 1 1 @ 1 0 14090530 -status_quo n 1 1 @ 1 1 13938210 -status_seeking n 1 1 @ 1 0 04836583 -statute n 1 4 @ ~ %p ; 1 1 06564387 -statute_book n 1 3 @ %p ; 1 0 06536227 -statute_law n 1 5 @ ~ #p ; - 1 0 06535222 -statute_mile n 1 3 @ #p %p 1 0 13651218 -statute_of_limitations n 1 2 @ ; 1 0 06533484 -statute_title n 1 1 @ 1 0 06345993 -statutory_law n 1 2 @ ; 1 0 08456347 -statutory_offence n 1 2 @ ~ 1 0 00774796 -statutory_offense n 1 2 @ ~ 1 0 00774796 -statutory_rape n 1 1 @ 1 0 00846961 -staunchness n 1 2 @ + 1 0 04877783 -staurikosaur n 1 2 @ #m 1 0 01701205 -staurikosaurus n 1 2 @ #m 1 0 01701205 -stavanger n 1 2 @ #p 1 0 08765460 -stave n 3 5 @ #p %p + ; 3 0 06861860 04307269 04119892 -stave_wood n 1 1 @ 1 0 12199790 -stay n 5 4 @ ~ + ; 5 1 01053617 14010927 06542267 04307619 04307419 -stay-at-home n 1 1 @ 1 0 10653388 -stay_of_execution n 1 2 @ ; 1 0 06542569 -stayer n 1 2 @ + 1 0 01319001 -staying_power n 1 2 @ ~ 1 0 05032918 -stayman n 1 1 @ 1 0 07741706 -stayman_winesap n 1 1 @ 1 0 07741888 -stays n 1 2 @ ~ 1 0 03112869 -staysail n 1 1 @ 1 0 04307767 -std n 2 2 @ ~ 2 0 14133159 06704582 -stead n 1 2 @ ~ 1 1 00721431 -steadfastness n 2 2 @ + 2 0 04877783 04865016 -steadiness n 3 4 ! @ ~ + 3 0 04862382 04777852 04770068 -steady n 1 2 @ ~ 1 0 10682953 -steady_state_theory n 1 2 @ ; 1 0 05888572 -steak n 1 2 @ ~ 1 1 07657903 -steak_and_kidney_pie n 1 1 @ 1 0 07877411 -steak_au_poivre n 1 1 @ 1 0 07877961 -steak_knife n 1 1 @ 1 0 04307986 -steak_sauce n 1 1 @ 1 0 07823280 -steak_tartare n 1 1 @ 1 0 07877675 -steakhouse n 1 1 @ 1 1 04307878 -steal n 2 3 @ ~ + 2 0 13253751 00725152 -stealer n 1 3 @ ~ + 1 0 10707804 -stealing n 2 3 @ ~ + 2 1 00780889 01051082 -stealth n 1 2 @ + 1 1 01051082 -stealth_aircraft n 1 2 @ ~ 1 0 04308084 -stealth_bomber n 1 1 @ 1 0 04308273 -stealth_fighter n 1 1 @ 1 0 04308397 -stealthiness n 1 2 @ + 1 0 04657631 -steam n 1 3 @ ~ + 1 0 15055181 -steam_bath n 2 2 @ ~ 2 1 04308583 00258530 -steam_boiler n 1 5 @ ~ #p %m %p 1 0 02863750 -steam_chest n 1 2 @ #p 1 0 04308915 -steam_coal n 1 1 @ 1 0 14815530 -steam_engine n 1 3 @ #p %p 1 0 04309049 -steam_fitting n 1 1 @ 1 0 00270648 -steam_heat n 1 1 @ 1 0 04309682 -steam_heating n 1 1 @ 1 0 04309682 -steam_iron n 1 1 @ 1 0 04309833 -steam_line n 1 1 @ 1 0 04309925 -steam_locomotive n 1 2 @ %p 1 0 04310018 -steam_organ n 1 2 @ %p 1 0 02940706 -steam_pipe n 1 1 @ 1 0 04309925 -steam_room n 1 2 @ ~ 1 0 04308583 -steam_shovel n 1 1 @ 1 1 04310507 -steam_turbine n 1 1 @ 1 1 04310604 -steam_whistle n 1 2 @ #p 1 0 04310721 -steamboat n 1 2 @ ~ 1 1 04308807 -steamed_pudding n 1 1 @ 1 0 07618029 -steamer n 4 6 @ ~ #m #p %p + 4 0 07787429 04309548 04309348 01957335 -steamer_clam n 2 4 @ #m #p %p 2 0 07787429 01957335 -steamfitter n 1 1 @ 1 0 10653529 -steaminess n 1 2 @ + 1 0 04704116 -steamroller n 2 2 @ + 2 0 10226556 04310157 -steamship n 1 3 @ ~ %p 1 1 04309348 -steamship_company n 1 2 @ ~ 1 0 04310347 -steamship_line n 1 2 @ ~ 1 0 04310347 -stearic_acid n 1 1 @ 1 0 15056938 -stearin n 1 2 @ + 1 0 15057103 -steatite n 1 1 @ 1 0 15044327 -steatocystoma n 1 2 @ ~ 1 0 14202763 -steatopygia n 1 1 @ 1 0 05000809 -steatornis n 1 3 @ #m %m 1 0 01837363 -steatornis_caripensis n 1 2 @ #m 1 0 01837526 -steatornithidae n 1 3 @ #m %m 1 0 01837230 -steatorrhea n 1 1 @ 1 0 14567956 -steed n 1 2 @ ; 1 1 02378755 -steel n 3 5 @ ~ %s %p + 3 2 14802450 04373894 04310904 -steel-wool_pad n 1 1 @ 1 0 04312020 -steel_arch_bridge n 1 2 @ ~ 1 0 04311004 -steel_band n 1 1 @ 1 0 08250750 -steel_blue n 1 1 @ 1 1 04969540 -steel_company n 1 1 @ 1 0 08003839 -steel_drum n 1 1 @ 1 0 04311174 -steel_engraving n 3 1 @ 3 0 04311485 04311397 00938992 -steel_factory n 1 3 @ ~ %p 1 0 04311595 -steel_gray n 1 1 @ 1 0 14923060 -steel_grey n 1 1 @ 1 0 14923060 -steel_guitar n 1 1 @ 1 0 03499907 -steel_industry n 1 1 @ 1 0 08074582 -steel_mill n 1 3 @ ~ %p 1 0 04311595 -steel_plant n 1 3 @ ~ %p 1 0 04311595 -steel_plate n 1 1 @ 1 0 04311799 -steel_production n 1 2 @ ~ 1 0 13561396 -steel_trap n 2 1 @ 2 1 05620754 04311873 -steel_wool n 1 1 @ 1 0 14803578 -steele n 1 1 @ 1 0 11314119 -steelmaker n 1 1 @ 1 0 10653679 -steelman n 1 1 @ 1 0 10653679 -steelworker n 1 1 @ 1 0 10653679 -steelworks n 1 3 @ ~ %p 1 0 04311595 -steelyard n 1 1 @ 1 0 04312154 -steen n 1 1 @ 1 0 11314219 -steenbok n 1 2 @ #m 1 0 02426481 -steep n 1 1 @ 1 0 09445008 -steeper n 1 2 @ + 1 0 04312311 -steeple n 1 3 @ ~ ; 1 1 04312432 -steeplechase n 2 2 @ ~ 2 0 07463029 07462693 -steeplechaser n 1 1 @ 1 0 02384741 -steeplejack n 1 1 @ 1 0 10653793 -steepness n 1 2 @ + 1 0 05069624 -steer n 2 2 @ + 2 0 06651577 02403231 -steer_roping n 1 2 @ #p 1 0 00300333 -steerage n 2 3 @ #p + 2 0 04312654 00815173 -steerageway n 1 2 @ ; 1 0 15284553 -steerer n 2 3 @ ~ + 2 0 10169796 09995573 -steering n 3 4 @ ~ #p + 3 0 01144876 00815320 00815173 -steering_committee n 1 1 @ 1 0 08326706 -steering_gear n 1 2 @ #p 1 0 04312756 -steering_linkage n 1 3 @ #p %p 1 0 04312916 -steering_mechanism n 1 4 @ ~ %p ; 1 0 04313220 -steering_system n 1 4 @ ~ %p ; 1 0 04313220 -steering_wheel n 1 2 @ #p 1 1 04313503 -steersman n 1 2 @ ~ 1 0 10169796 -stefan_wyszynski n 1 1 @ 1 0 11400837 -stefan_zweig n 1 1 @ 1 0 11408148 -steffens n 1 1 @ 1 0 11314315 -steffi_graf n 1 1 @ 1 0 11010019 -steganography n 1 2 @ ~ 1 0 00614489 -steganopus n 1 3 @ #m %m 1 0 02038329 -steganopus_tricolor n 1 2 @ #m 1 0 02038466 -stegocephalia n 1 2 @ #m 1 0 01656340 -stegosaur n 1 2 @ #m 1 0 01701859 -stegosaur_stenops n 1 2 @ #m 1 0 01701859 -stegosaurus n 1 2 @ #m 1 0 01701859 -steichen n 1 1 @ 1 0 11314514 -stein n 2 1 @ 2 1 02824058 11314666 -steinbeck n 1 1 @ 1 0 11314792 -steinberg n 1 1 @ 1 0 11314969 -steinbok n 1 2 @ #m 1 0 02426481 -steinem n 1 1 @ 1 0 11315140 -steiner n 1 1 @ 1 0 11315249 -steinert's_disease n 1 1 @ 1 0 14163182 -steinman n 1 1 @ 1 0 11315379 -steinmetz n 1 1 @ 1 0 11315580 -steinway n 1 1 @ 1 0 11315760 -stela n 1 2 @ ~ 1 0 04313628 -stele n 2 3 @ ~ #p 2 0 13097187 04313628 -stelis n 1 2 @ #m 1 0 12085267 -stella n 1 1 @ 1 0 11316003 -stellar's_sea_eagle n 1 1 @ 1 0 01615303 -stellar_parallax n 1 1 @ 1 0 11528841 -stellaria n 1 3 @ #m %m 1 0 11817774 -stellaria_holostea n 1 1 @ 1 0 11818271 -stellaria_media n 1 1 @ 1 0 11818069 -stellate_venule n 1 1 @ 1 0 05381036 -steller n 1 1 @ 1 0 11316141 -steller's_sea_cow n 1 2 @ #m 1 0 02074726 -steller's_sea_lion n 1 2 @ #m 1 0 02079005 -steller_sea_lion n 1 2 @ #m 1 0 02079005 -stellite n 1 2 @ ; 1 0 15057212 -stem n 6 6 @ ~ #p %p + ; 6 3 06300193 13129165 04184095 04313771 02880008 00441501 -stem-cell_research n 1 2 @ ~ 1 0 00639267 -stem-winder n 1 1 @ 1 0 04314107 -stem_blight n 1 1 @ 1 0 14218887 -stem_canker n 1 1 @ 1 0 14281549 -stem_cell n 1 2 @ ~ 1 0 05607863 -stem_ginger n 1 2 @ %p 1 0 12356023 -stem_lettuce n 1 2 @ %p 1 0 11987349 -stem_turn n 1 1 @ 1 0 00441501 -stem_vowel n 1 1 @ 1 0 07114284 -stemless_carline_thistle n 1 1 @ 1 0 11945514 -stemless_daisy n 1 2 @ #m 1 0 12026476 -stemless_golden_weed n 1 2 @ #m 1 0 12019375 -stemless_hymenoxys n 1 2 @ #m 1 0 12025220 -stemma n 3 2 @ ~ 3 0 13912540 08101937 05312306 -stemmatics n 1 1 @ 1 0 06171650 -stemmatology n 1 1 @ 1 0 06171650 -stemmer n 5 2 @ + 5 0 10664656 10653903 05847753 04313986 04313867 -stemming_algorithm n 1 1 @ 1 0 05847753 -sten_gun n 1 2 @ ; 1 0 04314522 -stench n 1 2 @ ~ 1 0 05714894 -stench_bomb n 1 1 @ 1 0 04320598 -stencil n 1 2 @ + 1 0 04314216 -stendhal n 1 1 @ 1 0 11316249 -stengel n 1 1 @ 1 0 11316429 -stenocarpus n 1 3 @ #m %m 1 0 12222715 -stenocarpus_salignus n 1 3 @ #m %s 1 0 12223160 -stenocarpus_sinuatus n 1 2 @ #m 1 0 12222900 -stenochlaena n 1 2 @ #m 1 0 13185998 -stenograph n 2 1 @ 2 0 06841287 04314632 -stenographer n 1 2 @ + 1 0 10654015 -stenography n 2 2 @ + 2 1 06350127 00615462 -stenopelmatidae n 1 3 @ #m %m 1 0 02228874 -stenopelmatus n 1 3 @ #m %m 1 0 02229023 -stenopelmatus_fuscus n 1 2 @ #m 1 0 02229156 -stenopterygius n 1 2 @ #m 1 0 01725086 -stenopterygius_quadrisicissus n 1 2 @ #m 1 0 01725086 -stenosis n 1 3 @ ~ + 1 0 14107374 -stenotaphrum n 1 3 @ #m %m 1 0 12141037 -stenotaphrum_secundatum n 1 2 @ #m 1 0 12141167 -stenotomus n 1 2 @ #m 1 0 02593353 -stenotomus_aculeatus n 1 2 @ %p 1 0 02593679 -stenotomus_chrysops n 1 2 @ %p 1 0 02593453 -stenotus n 1 3 @ #m %m 1 0 12019190 -stenotus_acaulis n 1 2 @ #m 1 0 12019375 -stent n 1 1 @ 1 0 04314735 -stentor n 3 4 @ #m + ; 3 0 10654211 09491784 01396617 -step n 11 5 @ ~ #p %p + 11 5 00174412 13757249 00285557 04314914 14429608 13762579 07383823 06859056 06645039 04315185 00533922 -step-down n 1 3 @ ~ + 1 0 00351638 -step-down_transformer n 1 1 @ 1 0 04315342 -step-in n 1 2 @ ; 1 0 03885028 -step-up n 1 3 @ ~ + 1 0 00363260 -step-up_transformer n 1 2 @ ~ 1 0 04315828 -step_dancing n 1 3 @ ~ %p 1 0 00527695 -step_ladder n 1 1 @ 1 0 04315599 -step_rocket n 1 2 @ %p 1 0 03799375 -step_stool n 1 1 @ 1 0 04315713 -stepbrother n 1 1 @ 1 0 10654321 -stepchild n 1 2 @ ~ 1 1 10654461 -stepdaughter n 1 1 @ 1 0 10654596 -stepfather n 1 1 @ 1 0 10654701 -stephane_grappelli n 1 1 @ 1 0 11012042 -stephane_mallarme n 1 1 @ 1 0 11151798 -stephanie_graf n 1 1 @ 1 0 11010019 -stephanion n 1 2 @ #p 1 0 05235461 -stephanomeria n 1 3 @ #m %m 1 0 11897760 -stephanomeria_malheurensis n 1 2 @ #m 1 0 11897900 -stephanotis n 1 3 @ ~ #m 1 0 13238988 -stephanotis_floribunda n 1 2 @ #m 1 0 13239177 -stephanus_johannes_paulus_kruger n 1 1 @ 1 0 11111577 -stephead n 1 1 @ 1 0 06345566 -stephen n 1 1 @ 1 0 11316567 -stephen_a._douglas n 1 1 @ 1 0 10941206 -stephen_arnold_douglas n 1 1 @ 1 0 10941206 -stephen_butler_leacock n 1 1 @ 1 0 11121451 -stephen_collins_foster n 1 1 @ 1 0 10975796 -stephen_crane n 1 1 @ 1 0 10914447 -stephen_decatur n 1 1 @ 1 0 10926773 -stephen_foster n 1 1 @ 1 0 10975796 -stephen_girard n 1 1 @ 1 0 11001053 -stephen_grover_cleveland n 1 1 @ 1 0 10902051 -stephen_hawking n 1 1 @ 1 0 11034874 -stephen_jay_gould n 1 1 @ 1 0 11009495 -stephen_leacock n 1 1 @ 1 0 11121451 -stephen_michael_reich n 1 1 @ 1 0 11257031 -stephen_samuel_wise n 1 1 @ 1 0 11393315 -stephen_sondheim n 1 1 @ 1 0 11308396 -stephen_spender n 1 1 @ 1 0 11310523 -stephen_vincent_benet n 1 1 @ 1 0 10844667 -stephen_william_hawking n 1 1 @ 1 0 11034874 -stephenson n 1 1 @ 1 0 11316669 -stepladder n 1 1 @ 1 0 04315599 -stepmother n 1 1 @ 1 1 10654827 -stepparent n 1 2 @ ~ 1 0 10654932 -steppe n 1 2 @ ; 1 1 09445289 -stepped_line n 1 1 @ 1 0 06345566 -stepper n 3 1 @ 3 0 10184403 04315444 02388588 -stepping_down n 2 1 @ 2 0 07254456 06511762 -stepping_motor n 1 1 @ 1 0 04315444 -stepping_stone n 2 1 @ 2 1 09445435 00174260 -steprelationship n 1 1 @ 1 1 13813483 -steps n 2 3 @ ~ ; 2 2 04298171 09445566 -stepsister n 1 1 @ 1 0 10603242 -stepson n 1 1 @ 1 0 10655075 -steradian n 1 2 @ #p 1 0 13612791 -stercobilinogen n 1 1 @ 1 0 14756754 -stercolith n 1 1 @ 1 0 09256360 -stercorariidae n 1 3 @ #m %m 1 0 02043999 -stercorarius n 1 3 @ #m %m 1 0 02044358 -stercorarius_parasiticus n 1 2 @ #m 1 0 02044517 -sterculia n 1 3 @ ~ #m 1 0 12195391 -sterculia_acerifolia n 1 1 @ 1 0 12196336 -sterculia_apetala n 1 1 @ 1 0 12195533 -sterculia_family n 1 3 @ #m %m 1 0 12194776 -sterculia_foetida n 1 1 @ 1 0 12195734 -sterculia_gum n 1 1 @ 1 0 14901793 -sterculia_rupestris n 1 1 @ 1 0 12196954 -sterculiaceae n 1 3 @ #m %m 1 0 12194776 -stereo n 2 3 @ ~ %p 2 1 04315948 04316275 -stereo_system n 1 3 @ ~ %p 1 0 04315948 -stereophonic_system n 1 3 @ ~ %p 1 0 04315948 -stereophony n 1 4 @ ~ %p + 1 0 04315948 -stereoscope n 1 2 @ + 1 0 04316498 -stereoscopic_photograph n 1 2 @ ~ 1 0 04316275 -stereoscopic_picture n 1 2 @ ~ 1 0 04316275 -stereoscopic_vision n 1 1 @ 1 0 05657515 -stereoscopy n 1 2 @ + 1 0 05657515 -stereospondyli n 1 2 @ #m 1 0 01656078 -stereotype n 1 2 @ + 1 1 05927586 -sterileness n 1 2 @ + 1 0 14495230 -sterilisation n 2 3 @ ~ + 2 0 00692130 00253919 -steriliser n 1 3 @ ~ + 1 0 02758960 -sterility n 2 3 @ ~ + 2 0 14495230 14045507 -sterilization n 2 3 @ ~ + 2 0 00692130 00253919 -sterilizer n 1 3 @ ~ + 1 0 02758960 -sterling n 1 1 @ 1 0 13385080 -sterling_area n 1 1 @ 1 0 08303097 -sterling_bloc n 1 1 @ 1 0 08303097 -sterling_silver n 1 2 @ %s 1 0 15057433 -stern n 3 4 @ #p %p ; 3 1 04316646 11316828 05559256 -stern_chaser n 1 1 @ 1 0 04316815 -sterna n 1 3 @ #m %m 1 0 02043207 -sterna_hirundo n 1 2 @ #m 1 0 02043333 -sterne n 1 1 @ 1 0 11316970 -sterninae n 1 3 @ #m %m 1 0 02042923 -sternness n 2 3 @ ~ + 2 0 04710390 04639371 -sternocleido_mastoideus n 1 2 @ #p 1 1 05590366 -sternocleidomastoid n 1 2 @ #p 1 0 05590366 -sternocleidomastoid_muscle n 1 2 @ #p 1 0 05590366 -sternocleidomastoid_vein n 1 1 @ 1 0 05381148 -sternotherus n 1 3 @ #m %m 1 0 01667302 -sternpost n 1 2 @ ; 1 0 04316924 -sternum n 1 4 @ #p %p + 1 1 05281189 -sternutation n 1 1 @ 1 0 14314850 -sternutator n 1 1 @ 1 0 15057558 -sternutatory n 1 1 @ 1 0 15057558 -sternwheeler n 1 1 @ 1 0 04317063 -steroid n 2 3 @ ~ + 2 1 15057744 14745635 -steroid_alcohol n 1 2 @ ~ 1 0 15058310 -steroid_hormone n 1 2 @ ~ 1 0 14745635 -sterol n 1 2 @ ~ 1 0 15058310 -sterope n 2 3 @ #m ; 2 0 09549983 09445780 -stertor n 1 2 @ + 1 0 00835976 -stethoscope n 1 2 @ ~ 1 1 04317175 -stetson n 1 1 @ 1 1 03325941 -steuben n 1 1 @ 1 0 11317086 -steve_martin n 1 1 @ 1 0 11159920 -steve_reich n 1 1 @ 1 0 11257031 -stevedore n 1 1 @ 1 0 10655169 -steven_spielberg n 1 1 @ 1 0 11311173 -steven_weinberg n 1 1 @ 1 0 11380035 -stevens n 3 1 @ 3 0 11317519 11317416 11317309 -stevens'_law n 1 2 @ ; 1 0 05996110 -stevens'_power_law n 1 2 @ ; 1 0 05996110 -stevenson n 2 1 @ 2 0 11317897 11317749 -stevia n 2 2 @ #m 2 0 12019827 12004547 -stew n 2 3 @ ~ + 2 0 14403560 07588947 -stew_meat n 1 1 @ 1 0 07592558 -steward n 5 3 @ ~ + 5 1 10655442 10655730 10655594 10592811 09984298 -stewardess n 1 1 @ 1 0 10655875 -stewardship n 1 2 @ + 1 0 00604523 -stewart n 2 1 @ 2 0 11318171 11318039 -stewing n 2 2 @ + 2 1 07514189 00247792 -stewing_pan n 1 1 @ 1 0 04317325 -stewpan n 1 1 @ 1 0 04317325 -sth n 1 2 @ ~ 1 0 05412649 -sthene n 1 2 @ %p 1 0 13647888 -stheno n 1 2 @ ; 1 0 09498072 -stibnite n 1 2 @ %s 1 0 15060449 -stichaeidae n 1 3 @ #m %m 1 0 02615494 -sticherus n 1 3 @ #m %m 1 0 13171041 -sticherus_flabellatus n 1 2 @ #m 1 0 13171210 -stick n 9 4 @ ~ %s ; 9 3 04317420 13165646 04317976 07848645 05561707 04318131 04317833 03600806 01162928 -stick-in-the-mud n 1 1 @ 1 0 10442232 -stick_cinnamon n 1 1 @ 1 0 07814390 -stick_figure n 1 1 @ 1 0 04318384 -stick_horse n 1 1 @ 1 0 04318551 -stick_insect n 1 3 @ ~ #m 1 0 02231487 -stick_lac n 1 2 @ #s 1 0 14701949 -stick_shift n 1 1 @ 1 0 04301760 -stickball n 1 1 @ 1 0 00476235 -stickball_game n 1 1 @ 1 0 00476235 -sticker n 4 4 @ ~ %p + 4 0 13089631 07272545 06785367 03158885 -stickiness n 1 3 @ ~ + 1 0 04935239 -sticking_plaster n 1 2 @ ~ 1 0 03957420 -sticking_point n 1 1 @ 1 0 05820325 -stickleback n 1 3 @ ~ #m 1 0 01454856 -stickler n 1 2 @ + 1 0 10655986 -stickpin n 1 1 @ 1 1 04318690 -sticks_and_stone n 1 2 @ ; 1 0 15060569 -sticktight n 2 4 @ ~ #m %p 2 0 11940006 02187900 -sticktight_flea n 1 2 @ #m 1 0 02187900 -stickup n 1 2 @ + 1 0 00781912 -stickup_man n 1 2 @ ~ 1 0 10180923 -stickweed n 1 2 @ ~ 1 0 12820292 -sticky_aster n 1 2 @ #m 1 0 11993444 -sticky_bun n 1 1 @ 1 0 07693223 -sticky_end n 1 1 @ 1 0 14831665 -sticky_geranium n 1 1 @ 1 0 12686877 -stictomys n 1 3 @ #m %m 1 0 02366453 -stictopelia n 1 3 @ #m %m 1 0 01813811 -stictopelia_cuneata n 1 2 @ #m 1 0 01813948 -stieglitz n 1 1 @ 1 0 11318348 -stiff n 2 3 @ ~ ; 2 1 10656120 05218119 -stiff_aster n 1 1 @ 1 0 11934041 -stiff_gentian n 1 2 @ #m 1 0 12295796 -stiff_upper_lip n 1 1 @ 1 0 04883436 -stiffener n 1 2 @ + 1 0 15060825 -stiffening n 2 3 @ ~ + 2 1 01025411 13561521 -stiffness n 5 3 @ ~ + 5 2 05023591 05004895 04862888 04815624 04639732 -stifle n 1 2 @ #p 1 0 02464065 -stifler n 1 2 @ + 1 0 10656223 -stifling n 1 3 @ ~ + 1 0 01079604 -stigma n 4 4 @ ~ #p + 4 0 11677603 06794666 05250550 04696085 -stigmata n 1 1 @ 1 0 14286435 -stigmatic n 1 2 @ + 1 0 10656488 -stigmatisation n 1 2 @ + 1 0 01223488 -stigmatism n 3 4 ! @ + ; 3 0 14571930 13938663 05654783 -stigmatist n 1 2 @ + 1 0 10656488 -stigmatization n 1 2 @ + 1 0 01223488 -stilbesterol n 1 1 @ 1 0 03193882 -stilbestrol n 1 1 @ 1 0 14750122 -stilboestrol n 1 1 @ 1 0 14750122 -stile n 1 1 @ 1 0 04318787 -stiletto n 1 1 @ 1 0 04318892 -stiletto_heel n 1 1 @ 1 0 04276808 -still n 4 5 @ ~ %p + ; 4 1 04319248 04982478 04318982 03212811 -still's_disease n 1 1 @ 1 0 14188030 -still_hunt n 1 2 @ ~ 1 0 00711523 -still_life n 1 1 @ 1 0 04319432 -still_room n 1 1 @ 1 0 04319545 -stillbirth n 1 3 ! @ ~ 1 0 00230475 -stillborn_infant n 1 2 ! @ 1 0 10656706 -stillness n 3 4 @ ~ + ; 3 2 04982478 14522809 14006179 -stillroom n 1 1 @ 1 0 04319545 -stillson_wrench n 1 1 @ 1 0 04319774 -stilt n 4 3 @ ~ #m 4 1 03936269 04319937 02036053 02034661 -stilt_plover n 1 3 @ ~ #m 1 0 02034661 -stiltbird n 1 3 @ ~ #m 1 0 02034661 -stilton n 1 1 @ 1 0 07852229 -stilwell n 1 1 @ 1 0 11318462 -stimulant n 2 3 @ ~ + 2 2 05827684 04320126 -stimulant_drug n 1 2 @ ~ 1 0 04320126 -stimulation n 4 4 @ ~ + ; 4 2 01261974 05827684 13561719 00853835 -stimulus n 1 3 @ ~ + 1 1 05827684 -stimulus_generalisation n 1 3 @ ~ ; 1 0 05756414 -stimulus_generalization n 1 3 @ ~ ; 1 0 05756414 -sting n 4 3 @ ~ + 4 1 14332085 14329762 14297870 00779248 -sting_operation n 1 1 @ 1 0 00779599 -stingaree-bush n 1 2 @ #m 1 0 12559044 -stinger n 5 4 @ ~ %s + 5 0 07918309 06721461 04320405 02465693 01174988 -stinginess n 1 4 ! @ ~ + 1 0 04833458 -stinging n 1 2 @ + 1 0 14332085 -stinging_hair n 1 1 @ 1 0 13090248 -stinging_nettle n 1 2 @ #m 1 0 12392549 -stingray n 1 3 @ ~ #m 1 0 01498041 -stink n 1 3 @ ~ + 1 0 05714894 -stink_bell n 1 1 @ 1 0 12452673 -stink_bomb n 1 1 @ 1 0 04320598 -stink_fly n 1 3 @ ~ #m 1 0 02264885 -stinkbird n 1 2 @ #m 1 0 01809752 -stinker n 3 3 @ + ; 3 0 10539715 04320731 03655838 -stinkhorn n 1 3 @ ~ #m 1 0 13040303 -stinkiness n 1 3 @ ~ + 1 0 04980656 -stinking_bean_trefoil n 1 2 @ #m 1 0 12505752 -stinking_cedar n 1 2 @ #m 1 0 11649359 -stinking_chamomile n 1 2 @ #m 1 0 11923174 -stinking_clover n 1 1 @ 1 0 11866706 -stinking_elder n 1 1 @ 1 0 12679432 -stinking_gladwyn n 1 1 @ 1 0 12413642 -stinking_goosefoot n 1 1 @ 1 0 11830400 -stinking_hellebore n 1 1 @ 1 0 11734093 -stinking_horehound n 1 2 @ #m 1 0 12841872 -stinking_iris n 1 1 @ 1 0 12413642 -stinking_mayweed n 1 2 @ #m 1 0 11923174 -stinking_nightshade n 1 2 @ #m 1 0 12904314 -stinking_smut n 2 2 @ #m 2 0 14284026 13068434 -stinking_wattle n 1 2 @ #m 1 0 11757017 -stinking_weed n 1 1 @ 1 0 12500751 -stinking_yew n 1 2 @ #m 1 0 11649359 -stinkpot n 2 2 @ #m 2 0 10539715 01667432 -stinkweed n 1 2 @ #m 1 0 11898775 -stinky_squid n 1 2 @ #m 1 0 13042982 -stint n 3 2 @ #m 3 0 15134490 02027357 00720431 -stinter n 1 2 @ + 1 0 10656832 -stipe n 1 1 @ 1 0 13130569 -stipend n 1 3 @ ~ + 1 0 13294135 -stipendiary n 1 2 @ ; 1 0 10656969 -stipendiary_magistrate n 1 2 @ ; 1 0 10656969 -stippler n 1 2 @ + 1 0 10657165 -stipulation n 3 4 @ ~ + ; 3 0 07216761 06755568 01149303 -stipulative_definition n 1 1 @ 1 0 06745861 -stipule n 1 1 @ 1 0 11550890 -stir n 3 3 @ ~ + 3 0 13978166 07514345 00555138 -stirk n 1 1 @ 1 0 02403153 -stirrer n 2 2 @ + 2 0 10555679 04320871 -stirring n 2 2 @ + 2 1 00347490 01261845 -stirrup n 2 2 @ #p 2 1 04320973 05326465 -stirrup_cup n 1 1 @ 1 0 07912933 -stirrup_iron n 1 2 @ #p 1 0 04320973 -stirrup_pump n 1 1 @ 1 0 04321121 -stitch n 2 3 @ ~ + 2 1 04321238 14332339 -stitcher n 1 2 @ + 1 0 10657306 -stitchery n 1 4 @ ~ + - 1 0 04179385 -stitching n 1 3 @ ~ + 1 0 00715674 -stitchwort n 1 1 @ 1 0 11818271 -stizidae n 1 3 @ #m %m 1 0 02215941 -stizolobium n 1 3 @ #m %m 1 0 12549976 -stizolobium_deeringiana n 1 2 @ %p 1 0 12550408 -stizostedion n 1 3 @ #m %m 1 0 02557461 -stizostedion_vitreum n 1 2 @ ~ 1 0 02557749 -stm n 1 1 @ 1 0 05760611 -stoat n 1 1 @ 1 0 02442336 -stob n 1 1 @ 1 0 04321453 -stochastic_process n 1 2 @ ~ 1 0 13561896 -stochastic_variable n 1 1 @ 1 0 05864177 -stochasticity n 1 2 @ ~ 1 0 04771332 -stock n 17 7 @ ~ #m #p %p + - 17 8 13333833 04321534 04322026 13417071 13367070 08101937 08101410 07585208 14438541 13130305 13127091 11892637 11892029 04322387 04321804 03814727 01887474 -stock-in-trade n 1 1 @ 1 0 04324120 -stock-index_futures n 1 1 @ 1 0 06480991 -stock-purchase_warrant n 1 2 @ ~ 1 0 13418219 -stock-take n 1 1 @ 1 0 01011720 -stock-taker n 1 1 @ 1 0 10657681 -stock-taking n 2 2 @ ~ 2 0 05747815 01011425 -stock_breeder n 1 1 @ 1 0 09873899 -stock_buyback n 1 1 @ 1 0 13243466 -stock_car n 2 1 @ 2 0 04322924 04322801 -stock_certificate n 1 2 @ ~ 1 0 13417071 -stock_company n 2 1 @ 2 0 08383310 08187569 -stock_cube n 1 1 @ 1 0 07585474 -stock_dividend n 1 1 @ 1 0 13408256 -stock_exchange n 1 4 @ ~ #m - 1 0 04323026 -stock_farmer n 1 2 @ ~ 1 0 10658501 -stock_index n 1 2 @ ~ 1 0 06641924 -stock_issue n 1 2 @ ; 1 0 01060530 -stock_list n 1 3 @ ~ %p 1 0 06492664 -stock_market n 1 4 @ ~ #m - 1 1 04323026 -stock_market_index n 1 2 @ ~ 1 0 06641924 -stock_of_record n 1 1 @ 1 0 13335521 -stock_option n 2 2 @ ~ 2 0 13242239 13241940 -stock_power n 1 1 @ 1 0 06530976 -stock_purchase_plan n 1 2 @ ~ 1 0 05912814 -stock_raiser n 1 2 @ ~ 1 0 10658501 -stock_room n 1 1 @ 1 0 04324387 -stock_saddle n 1 2 @ %p 1 0 04325041 -stock_split n 1 1 @ 1 0 00439043 -stock_symbol n 1 1 @ 1 0 06531327 -stock_ticker n 1 1 @ 1 0 04432393 -stock_trader n 1 2 @ ~ 1 0 10657835 -stock_warrant n 2 2 @ ~ 2 0 13418219 06685975 -stockade n 2 3 @ ~ + 2 1 04322531 03086183 -stockbroker n 1 1 @ 1 1 10657444 -stockbroker_belt n 1 2 @ ; 1 0 08555333 -stockcar n 1 1 @ 1 0 04322692 -stocker n 1 2 @ + 1 0 01318053 -stockfish n 1 1 @ 1 0 07783102 -stockholder n 1 2 @ ~ 1 1 10657969 -stockholder_of_record n 1 1 @ 1 0 10658122 -stockholders_meeting n 1 1 @ 1 0 08310168 -stockholding n 2 1 @ 2 0 13334492 13334307 -stockholdings n 1 1 @ 1 0 13334492 -stockholm n 1 2 @ #p 1 0 08766236 -stockhorn n 1 2 @ ; 1 0 03537550 -stockinet n 1 1 @ 1 0 04323519 -stockinette n 1 1 @ 1 0 04323519 -stockinette_stitch n 1 1 @ 1 0 04323645 -stocking n 2 6 @ ~ #p %p + ; 2 2 04323819 01061029 -stocking_cap n 1 1 @ 1 0 04228693 -stocking_filler n 1 1 @ 1 0 13269318 -stocking_stuffer n 1 1 @ 1 0 13269318 -stockist n 1 2 @ + 1 0 10658304 -stockjobber n 1 2 @ ; 1 0 10657556 -stockman n 1 2 @ ~ 1 0 10658501 -stockpile n 2 3 @ ~ + 2 0 13368052 08462205 -stockpiling n 1 2 @ + 1 0 00372977 -stockpot n 1 1 @ 1 0 04324297 -stockroom n 1 1 @ 1 0 04324387 -stocks n 3 2 @ ; 3 0 04324910 04324741 04324515 -stocktake n 1 1 @ 1 0 01011720 -stocktaker n 1 1 @ 1 0 10657681 -stocktaking n 2 2 @ ~ 2 0 05747815 01011425 -stockton n 1 1 @ 1 0 11318692 -stockyard n 1 1 @ 1 0 04325208 -stodge n 1 1 @ 1 0 07803895 -stodginess n 1 2 @ + 1 0 04648059 -stoep n 1 1 @ 1 0 04327204 -stogie n 1 1 @ 1 0 04325335 -stogy n 1 1 @ 1 0 04325335 -stoic n 2 2 @ + 2 2 10658676 10658867 -stoichiometry n 1 3 @ + ; 1 0 13825840 -stoicism n 2 3 @ + ; 2 2 04630378 05976948 -stokehold n 1 2 @ ; 1 0 04325409 -stokehole n 1 2 @ ; 1 0 04325409 -stoker n 3 2 @ + 3 0 11318824 10659042 04325592 -stokes'_aster n 1 2 @ #m 1 0 12020184 -stokes-adams_syndrome n 1 1 @ 1 0 14362593 -stokesia n 1 3 @ #m %m 1 0 12020048 -stokesia_laevis n 1 2 @ #m 1 0 12020184 -stokowski n 1 1 @ 1 0 11318967 -stole n 1 1 @ 1 0 04325704 -stolen_property n 1 2 @ ~ 1 0 13262335 -stolidity n 2 2 @ + 2 0 07483782 04630378 -stolidness n 1 2 @ + 1 0 04630378 -stolon n 1 1 @ 1 0 13127843 -stoma n 2 5 @ ~ #p + ; 2 0 11680032 05246215 -stomach n 4 5 @ ~ #p %p + 4 2 05395690 05556943 07499276 07485916 -stomach_ache n 1 2 @ #p 1 0 14327266 -stomach_exercise n 1 2 @ ~ 1 0 00630634 -stomach_flu n 1 2 @ ~ 1 0 14172005 -stomach_pump n 1 1 @ 1 0 04325968 -stomach_sweetbread n 1 1 @ 1 0 07652788 -stomach_upset n 1 2 @ %p 1 0 14336317 -stomachache n 1 2 @ #p 1 0 14327266 -stomacher n 1 1 @ 1 0 04325804 -stomate n 1 2 @ ~ 1 0 11680032 -stomatitis n 1 2 @ ~ 1 0 14356044 -stomatopod n 1 3 @ ~ #m 1 0 01989869 -stomatopod_crustacean n 1 3 @ ~ #m 1 0 01989869 -stomatopoda n 1 3 @ #m %m 1 0 01989701 -stomp n 1 2 @ + 1 0 00533691 -stomper n 1 2 @ + 1 0 10646942 -stone n 13 7 @ ~ #p %s %p + ; 13 3 09416076 04326084 14696793 14699752 13720600 11684739 11319810 11319704 11319570 11319413 11319244 11319134 04629958 -stone's_throw n 1 1 @ 1 0 13762579 -stone-face n 1 2 @ #m 1 0 11820463 -stone-root n 1 2 @ #m 1 0 12844409 -stone_age n 1 4 @ #p %p ; 1 0 15231964 -stone_bass n 1 2 @ #m 1 0 02568447 -stone_bramble n 1 1 @ 1 0 12653633 -stone_breaker n 1 2 @ ; 1 0 10659188 -stone_crab n 2 4 @ #m #p %p 2 0 07788730 01977485 -stone_cress n 1 2 @ #m 1 0 11870044 -stone_curlew n 1 2 @ #m 1 0 02040266 -stone_drill n 1 2 @ ~ 1 0 02875436 -stone_facing n 1 2 @ #p 1 0 04085873 -stone_fly n 1 2 @ #m 1 0 02262803 -stone_fruit n 1 2 @ ~ 1 0 13138308 -stone_life_face n 1 2 @ #m 1 0 11820463 -stone_marten n 1 1 @ 1 0 02450677 -stone_mimicry_plant n 1 2 @ #m 1 0 11821929 -stone_parsley n 2 2 @ #m 2 0 12944723 12944390 -stone_pine n 1 2 @ %p 1 0 11611758 -stone_pit n 1 2 @ ~ 1 0 03949442 -stone_plant n 1 2 @ #m 1 0 11820463 -stone_root n 1 2 @ #m 1 0 12844409 -stone_wall n 1 2 @ ~ 1 1 04326547 -stonechat n 1 1 @ 1 0 01560793 -stonecress n 1 2 @ #m 1 0 11870044 -stonecrop n 1 3 @ ~ #m 1 0 12785889 -stonecrop_family n 1 3 @ #m %m 1 0 12785110 -stonecutter n 1 1 @ 1 0 10659294 -stoneface n 1 2 @ #m 1 0 11820463 -stonefish n 1 2 @ #m 1 0 02643836 -stonefly n 1 2 @ #m 1 0 02262803 -stonehenge n 1 1 @ 1 0 08656750 -stonemason n 1 1 @ 1 0 10297531 -stoner n 1 2 @ + 1 0 10659393 -stoneroot n 1 2 @ #m 1 0 12844409 -stonewall_jackson n 1 1 @ 1 0 11076079 -stonewaller n 1 2 @ + 1 0 10659571 -stonewalling n 1 2 @ + 1 0 01075893 -stoneware n 1 1 @ 1 0 04326676 -stonework n 1 2 @ ~ 1 0 04326799 -stonewort n 1 2 @ #m 1 0 01412694 -stoning n 1 2 @ + 1 0 01164394 -stony_coral n 1 3 @ ~ #m 1 0 01916925 -stony_tunguska n 1 2 @ #p 1 0 09463547 -stooge n 2 3 @ ~ + 2 0 10098092 09884666 -stool n 4 6 @ ~ #p %p + ; 4 1 04326896 14854262 13111700 04446521 -stool_pigeon n 2 1 @ 2 0 10091012 04327110 -stool_test n 1 1 @ 1 0 05741340 -stoolie n 1 1 @ 1 0 10091012 -stoolpigeon n 1 1 @ 1 0 10091012 -stoop n 3 2 @ + 3 1 00336654 04330109 04327204 -stooper n 2 2 @ + 2 0 10659961 10659762 -stop n 11 6 @ ~ #p %p + ; 11 5 07365849 01076046 01056411 14010927 08656893 07115914 06843520 04327324 03189083 02982790 02853449 -stop-loss_order n 1 1 @ 1 0 06530412 -stop_bath n 1 1 @ 1 0 04327544 -stop_consonant n 1 4 ! @ ~ %p 1 0 07115914 -stop_number n 1 1 @ 1 0 13821408 -stop_order n 1 1 @ 1 0 06530412 -stop_payment n 1 1 @ 1 0 06530586 -stop_press n 1 1 @ 1 0 06684262 -stop_watch n 1 1 @ 1 0 04328186 -stopcock n 1 1 @ 1 0 04327682 -stopes n 1 1 @ 1 0 11320044 -stopgap n 1 1 @ 1 0 00178551 -stoplight n 2 3 @ ~ #p 2 0 07265990 06874185 -stopover n 2 3 @ ~ + 2 0 08657100 01056411 -stoppage n 3 3 @ ~ + 3 0 14010927 02853449 01076046 -stoppard n 1 1 @ 1 0 11320245 -stopper n 4 4 @ ~ + ; 4 0 06892358 06768394 04327825 03967942 -stopper_knot n 1 2 @ ~ 1 0 04328054 -stopping n 2 2 @ ~ 2 0 03338143 00101809 -stopping_point n 1 1 @ 1 1 15267536 -stopple n 1 3 @ ~ + 1 0 03967942 -stops n 1 1 @ 1 0 00493308 -stopwatch n 1 1 @ 1 0 04328186 -storage n 6 6 @ ~ #p %p + ; 6 3 00811355 04329190 00811661 13562133 03744276 00372607 -storage-battery_grid n 1 2 @ #p 1 0 03458753 -storage_allocation n 1 2 @ ; 1 0 00164579 -storage_area n 1 2 @ #p 1 0 02964634 -storage_battery n 1 3 @ ~ %p 1 0 04328329 -storage_cell n 1 2 @ #p 1 0 04328580 -storage_device n 1 2 @ ~ 1 0 03744840 -storage_locker n 1 3 @ ~ #p 1 0 02933462 -storage_medium n 1 2 @ ~ 1 0 06263762 -storage_ring n 1 2 @ #p 1 0 04328703 -storage_room n 1 2 @ ~ 1 0 04329477 -storage_space n 1 3 @ ~ #p 1 0 04328946 -storage_tank n 1 2 @ ~ 1 0 04388743 -storage_warehouse n 1 2 @ ~ 1 0 04551055 -storax n 1 1 @ 1 0 12777179 -storax_family n 1 3 @ #m %m 1 0 12776946 -store n 4 5 @ ~ #p %p + 4 3 04202417 13367070 03744276 04329190 -store_cheese n 1 1 @ 1 0 07853125 -store_detective n 1 1 @ 1 0 10660128 -stored_program n 1 1 @ 1 0 06580219 -storefront n 1 3 @ #p %p 1 1 04203705 -storehouse n 1 2 @ ~ 1 1 04329190 -storekeeper n 1 3 @ ~ #m 1 1 10592152 -storeria n 1 3 @ #m %m 1 1 01738175 -storeria_occipitamaculata n 1 2 @ #m 1 0 01738306 -storeroom n 1 2 @ ~ 1 1 04329477 -storey n 1 3 @ ~ #p 1 0 03365991 -stork n 1 3 @ ~ #m 1 0 02002075 -storksbill n 1 3 @ ~ #m 1 0 12688716 -storm n 3 5 @ ~ #p %p + 3 2 11462526 13978344 00974630 -storm_cellar n 1 1 @ 1 0 04329681 -storm_center n 2 2 @ #p 2 0 13978601 08524572 -storm_centre n 2 2 @ #p 2 0 13978601 08524572 -storm_cloud n 1 1 @ 1 1 09445910 -storm_cone n 1 2 @ ; 1 0 06792526 -storm_door n 1 1 @ 1 0 04329834 -storm_lamp n 1 1 @ 1 0 03549897 -storm_lantern n 1 1 @ 1 0 03549897 -storm_petrel n 1 3 @ ~ #m 1 0 02060889 -storm_sash n 1 1 @ 1 0 04329958 -storm_signal n 1 2 @ ~ 1 0 06792364 -storm_trooper n 1 1 @ 1 0 10660250 -storm_troops n 1 2 @ %m 1 0 08212146 -storm_window n 1 1 @ 1 0 04329958 -storminess n 2 3 @ ~ + 2 0 14523436 07481625 -stormy_petrel n 1 2 @ #m 1 0 02061217 -story n 6 5 @ ~ #p %p ; 6 6 07221094 06369829 03365991 06514093 06681551 06757057 -storybook n 1 1 @ 1 0 06413459 -storyline n 1 1 @ 1 1 06373645 -storyteller n 2 2 @ ~ 2 1 10345804 10660333 -stotinka n 1 2 @ #p 1 0 13685913 -stoup n 2 1 @ 2 0 04330189 04330109 -stout n 2 3 @ ~ + 2 0 07890352 05097166 -stoutheartedness n 1 3 ! @ + 1 0 04858317 -stoutness n 2 2 @ + 2 0 05031560 05000537 -stove n 2 3 @ ~ %p 2 2 04330340 04330267 -stove_bolt n 1 1 @ 1 0 04330669 -stove_poker n 1 1 @ 1 0 03975926 -stovepipe n 2 1 @ 2 0 04330746 03237416 -stovepipe_iron n 1 1 @ 1 0 04330896 -stovepiping n 1 1 @ 1 0 13551117 -stover n 1 1 @ 1 0 07802246 -stowage n 3 3 @ ~ + 3 0 13326021 04329477 00811921 -stowaway n 1 2 @ + 1 0 10660471 -stowe n 1 1 @ 1 0 11320405 -stowing n 1 2 @ + 1 0 00811921 -stp n 1 1 @ 1 0 13780339 -strabismus n 1 2 @ ~ 1 0 14557415 -strabotomy n 1 1 @ 1 0 00692840 -strachey n 1 2 @ #m 1 0 11320631 -strad n 1 1 @ 1 0 04330998 -stradavarius n 1 1 @ 1 0 04330998 -straddle n 4 3 @ %p + 4 0 06211702 00438893 00349213 00081174 -stradivari n 1 1 @ 1 0 11320821 -stradivarius n 1 1 @ 1 0 11320821 -strafe n 1 2 @ + 1 0 01246334 -strafer n 1 2 @ + 1 0 10660621 -straggle n 1 2 @ + 1 0 07939159 -straggler n 1 2 @ + 1 1 10660729 -straight n 3 3 @ ~ + 3 0 10173895 07958294 04331126 -straight-arm n 1 2 @ ; 1 0 00171050 -straight-fluted_drill n 1 1 @ 1 0 04331765 -straight-line_method n 1 2 @ ; 1 0 13328578 -straight-line_method_of_depreciation n 1 2 @ ; 1 0 13328578 -straight_and_narrow n 1 1 @ 1 0 00416216 -straight_angle n 1 2 @ #p 1 0 13612688 -straight_arch n 1 1 @ 1 0 03360133 -straight_arrow n 1 1 @ 1 0 10642705 -straight_chain n 1 1 @ 1 0 09446012 -straight_chair n 1 3 @ ~ %p 1 0 04331277 -straight_face n 1 1 @ 1 1 06878803 -straight_flush n 1 1 @ 1 0 07957986 -straight_flute n 1 1 @ 1 0 04331765 -straight_hang n 1 1 @ 1 0 00437067 -straight_life_insurance n 1 1 @ 1 0 13347947 -straight_line n 1 3 ! @ ~ 1 1 13869991 -straight_man n 1 1 @ 1 0 10660883 -straight_person n 1 2 @ ~ 1 0 10173895 -straight_pin n 1 1 @ 1 0 04331892 -straight_poker n 1 1 @ 1 0 00497924 -straight_razor n 1 1 @ 1 0 04332074 -straight_shooter n 1 1 @ 1 0 10642705 -straight_sinus n 1 1 @ 1 0 05252705 -straight_thrust n 1 3 @ %p ; 1 0 01174251 -straight_ticket n 1 2 ! @ 1 0 00184652 -straightaway n 1 2 @ ~ 1 1 04331126 -straightedge n 1 1 @ 1 0 04331443 -straightener n 1 2 @ + 1 0 04331639 -straightforwardness n 2 2 @ + 2 0 04918498 04867700 -straightjacket n 1 1 @ 1 0 04332580 -straightness n 5 5 ! @ ~ = + 5 0 05074559 05074057 04918210 04872016 00857664 -strain n 11 6 @ ~ #m %p + ; 11 6 11515325 14410089 07028373 14375890 08101410 08111157 14298102 05922450 00788766 00624553 00546389 -strain_gage n 1 1 @ 1 0 04332466 -strain_gauge n 1 1 @ 1 0 04332466 -strainer n 1 3 @ ~ + 1 0 04332243 -strainer_vine n 1 4 @ ~ #m %p 1 0 12166424 -straining n 2 2 @ + 2 1 00624553 00751529 -strait n 2 2 @ ~ 2 1 09446115 13936939 -strait_and_narrow n 1 1 @ 1 0 00416216 -strait_of_calais n 1 1 @ 1 0 09447450 -strait_of_dover n 1 1 @ 1 0 09447450 -strait_of_georgia n 1 1 @ 1 0 09446617 -strait_of_gibraltar n 1 2 @ %p 1 0 09446747 -strait_of_hormuz n 1 2 @ #p 1 0 09446868 -strait_of_magellan n 1 1 @ 1 0 09447047 -strait_of_messina n 1 1 @ 1 0 09447335 -strait_of_ormuz n 1 2 @ #p 1 0 09446868 -straitjacket n 2 1 @ 2 0 05690684 04332580 -straits n 2 2 @ ~ 2 0 13936939 07418822 -strake n 1 3 @ ~ #p 1 0 04544805 -strand n 6 3 @ ~ #p 6 3 05932062 04332783 02999757 14867858 09447666 08657748 -strand_wolf n 1 2 @ #m 1 0 02117646 -strange_attractor n 1 1 @ 1 0 05866489 -strange_particle n 1 1 @ 1 0 09447806 -strange_quark n 1 1 @ 1 0 09447917 -strangeness n 3 5 @ ~ = + ; 3 1 04797482 05844545 04799344 -stranger n 2 3 ! @ ~ 2 1 10661002 10661216 -stranglehold n 2 1 @ 2 0 05193781 00814899 -strangler n 2 3 @ ~ + 2 0 13123431 10121246 -strangler_fig n 2 2 @ #m 2 0 12402051 12366313 -strangler_tree n 1 2 @ ~ 1 0 13123431 -strangles n 1 1 @ 1 0 14264352 -strangling n 1 2 @ + 1 0 00225786 -strangulation n 3 3 @ + ; 3 1 00225786 14298247 00227264 -strap n 4 4 @ ~ #p + 4 1 04333129 04333709 04333500 04332987 -strap_fern n 1 3 @ ~ #m 1 0 13174670 -strap_hinge n 1 1 @ 1 0 04333869 -strapado n 1 1 @ 1 0 00424324 -straphanger n 2 1 @ 2 0 10661464 10661334 -strapless n 1 1 @ 1 0 04334105 -strappado n 1 1 @ 1 0 00424324 -strapper n 1 1 @ 1 0 09878702 -strasberg n 1 1 @ 1 0 11321051 -strasbourg n 1 1 @ 1 0 08937850 -strassburg n 1 1 @ 1 0 08937850 -stratagem n 2 2 @ ~ 2 1 00172490 05905802 -strategian n 1 2 @ ~ 1 0 10661563 -strategic_arms_limitation_talks n 1 1 @ 1 0 07149582 -strategic_buyout n 1 1 @ 1 0 00789735 -strategic_intelligence n 1 1 @ 1 0 00982679 -strategic_warning n 1 3 @ ~ ; 1 0 07225696 -strategics n 1 1 @ 1 0 06152734 -strategist n 1 3 @ ~ + 1 1 10661563 -strategy n 2 4 @ ~ + ; 2 1 05905348 06249177 -stratford-on-avon n 1 1 @ 1 0 08880529 -stratford-upon-avon n 1 1 @ 1 0 08880529 -stratification n 5 3 @ ~ + 5 1 01013604 13939158 13562328 05074690 00919877 -stratified_language n 1 2 ! @ 1 0 06901333 -stratified_sample n 1 2 @ ; 1 0 06027051 -stratified_sampling n 1 1 @ 1 0 00162417 -stratigraphy n 1 1 @ 1 0 06118236 -stratocracy n 1 1 @ 1 0 08053003 -stratosphere n 1 3 @ #p %p 1 0 09448090 -stratum n 3 6 @ ~ #m #p + ; 3 1 08657249 07974025 06246896 -stratum_basale n 1 2 @ #p 1 0 05243704 -stratum_corneum n 1 2 @ #p 1 0 05243077 -stratum_germinativum n 1 2 @ #p 1 0 05243704 -stratum_granulosum n 1 2 @ #p 1 0 05243435 -stratum_lucidum n 1 2 @ #p 1 0 05243259 -stratus n 1 2 @ ~ 1 0 09448251 -stratus_cloud n 1 2 @ ~ 1 0 09448251 -strauss n 3 1 @ 3 0 11321647 11321428 11321296 -strauss_the_elder n 1 1 @ 1 0 11321296 -strauss_the_younger n 1 1 @ 1 0 11321428 -stravinsky n 2 2 @ + 2 1 11321841 07278775 -straw n 4 4 @ ~ #s + 4 2 14959939 14805899 04966941 04334232 -straw_boss n 1 1 @ 1 0 10661732 -straw_foxglove n 1 1 @ 1 0 12883265 -straw_hat n 1 1 @ 1 1 02859184 -straw_man n 3 1 @ 3 0 10113583 07182367 04143712 -straw_mushroom n 1 2 @ #m 1 0 13020191 -straw_poll n 1 1 @ 1 0 05801465 -straw_vote n 1 1 @ 1 0 05801465 -straw_wine n 1 1 @ 1 0 07898617 -strawberry n 3 4 @ ~ #m #p 3 1 07745940 12630144 04696316 -strawberry-shrub_family n 1 3 @ #m %m 1 0 11700401 -strawberry_blite n 1 1 @ 1 0 11829435 -strawberry_bush n 2 2 @ #m 2 0 12749852 11701066 -strawberry_daiquiri n 1 1 @ 1 0 07914586 -strawberry_geranium n 1 2 @ #m 1 0 12794568 -strawberry_guava n 1 2 @ #m 1 0 12333771 -strawberry_haemangioma n 1 1 @ 1 0 14247743 -strawberry_hemangioma n 1 1 @ 1 0 14247743 -strawberry_ice_cream n 1 1 @ 1 0 07615460 -strawberry_jam n 1 1 @ 1 0 07643200 -strawberry_mark n 1 1 @ 1 0 04696316 -strawberry_pigweed n 1 1 @ 1 0 11829435 -strawberry_preserves n 1 1 @ 1 0 07643200 -strawberry_saxifrage n 1 2 @ #m 1 0 12794568 -strawberry_shrub n 1 1 @ 1 0 11701066 -strawberry_tomato n 2 1 @ 2 0 12911264 12910676 -strawberry_tree n 1 1 @ 1 0 12230794 -strawboard n 1 1 @ 1 0 14801493 -strawflower n 3 2 @ #m 3 0 12475242 11981192 11980318 -strawman n 3 1 @ 3 0 10113583 07182367 04143712 -strawworm n 2 2 @ #m 2 0 02269657 02217839 -stray n 1 2 @ + 1 1 02122580 -strayer n 1 2 @ + 1 0 10660729 -streak n 4 3 @ ~ + 4 3 08460585 04920435 04683136 07413629 -streaker n 1 2 @ + 1 0 10662306 -stream n 5 4 @ ~ %p + 5 5 09448361 08461595 00329227 14005892 07406765 -stream_of_consciousness n 2 1 @ 2 1 06374408 05675437 -stream_orchid n 1 2 @ #m 1 0 12062781 -streambed n 1 2 @ ~ 1 0 09448690 -streamer n 4 3 @ ~ #p 4 0 11515734 06345878 03911866 02788021 -streamer_fly n 1 1 @ 1 0 04334365 -streaming n 1 1 @ 1 0 11443929 -streamlet n 1 2 @ + 1 0 09415938 -streamline_flow n 1 2 @ ~ 1 0 11521665 -streamliner n 1 2 @ + 1 1 04334504 -streep n 1 1 @ 1 0 11322068 -street n 5 5 @ ~ #p %s ; 5 3 04334599 04335209 14516256 14485811 08225426 -street_address n 1 1 @ 1 0 08491710 -street_arab n 1 2 @ ; 1 0 10663137 -street_child n 1 1 @ 1 0 10763075 -street_cleaner n 1 1 @ 1 1 10662474 -street_clothes n 1 2 @ ; 1 1 04335693 -street_corner n 1 2 @ ~ 1 1 03109486 -street_cred n 1 1 @ 1 0 04784525 -street_credibility n 1 1 @ 1 0 04784525 -street_drug n 1 2 @ ~ 1 0 03248958 -street_fighter n 2 1 @ 2 0 10662819 10662649 -street_girl n 1 1 @ 1 0 10663315 -street_lamp n 1 2 @ %p 1 0 04335886 -street_name n 4 2 @ - 4 0 06336723 06336537 06336363 06336285 -street_organ n 1 2 @ ; 1 0 02795978 -street_person n 1 1 @ 1 0 10026976 -street_sign n 1 2 @ ~ 1 0 06794110 -street_smarts n 1 1 @ 1 0 05622076 -street_sweeper n 1 1 @ 1 0 10662474 -street_theater n 1 1 @ 1 0 00899501 -street_urchin n 1 2 @ ~ 1 0 10662952 -streetcar n 1 3 @ ~ #p 1 1 04335435 -streetcar_track n 1 2 @ %p 1 0 04469003 -streetlight n 1 2 @ %p 1 1 04335886 -streetwalker n 1 2 @ + 1 0 10663315 -streisand n 1 1 @ 1 0 11322178 -strekelia n 1 3 @ #m %m 1 0 12422399 -strekelia_formosissima n 1 2 @ #m 1 0 12422559 -strelitzia n 1 3 @ #m %m 1 0 12354374 -strelitzia_family n 1 3 @ #m %m 1 0 12354068 -strelitzia_reginae n 1 2 @ #m 1 0 12354619 -strelitziaceae n 1 3 @ #m %m 1 0 12354068 -strength n 9 5 ! @ ~ = ; 9 7 05029706 05203649 05035353 05159225 05191832 05099796 05034225 14474556 05053688 -strengthener n 1 3 @ ~ + 1 0 04336034 -strengthening n 2 4 ! @ ~ + 2 0 07427224 00374063 -strenuosity n 1 2 @ + 1 0 05036237 -strenuousness n 1 2 @ + 1 0 04709759 -strep n 1 3 @ #m + 1 0 01381044 -strep_throat n 1 1 @ 1 0 14184986 -strepera n 1 3 @ #m %m 1 0 01583373 -strepsiceros n 1 3 @ #m %m 1 0 02423787 -strepsirhini n 1 2 @ #m 1 0 02497214 -streptobacillus n 1 1 @ 1 0 01377694 -streptocarpus n 1 3 @ ~ #m 1 0 12833985 -streptococcal_sore_throat n 1 1 @ 1 0 14184986 -streptococci n 1 2 @ #m 1 0 01381044 -streptococcus n 1 3 @ #m + 1 0 01381044 -streptococcus_anhemolyticus n 1 2 @ #m 1 1 01381285 -streptococcus_tonsilitis n 1 1 @ 1 0 14184986 -streptodornase n 1 1 @ 1 0 15060937 -streptokinase n 1 1 @ 1 0 15061171 -streptolysin n 1 1 @ 1 0 15061428 -streptomyces n 1 3 @ ~ #m 1 0 01376237 -streptomyces_erythreus n 1 1 @ 1 0 01376437 -streptomyces_griseus n 1 1 @ 1 0 01376543 -streptomyces_scabies n 1 1 @ 1 0 01376647 -streptomycetaceae n 1 3 @ #m %m 1 0 01375913 -streptomycin n 1 1 @ 1 0 04336380 -streptopelia n 1 3 @ #m %m 1 0 01813256 -streptopelia_risoria n 1 1 @ 1 0 01813658 -streptopelia_turtur n 1 1 @ 1 0 01813532 -streptosolen n 1 3 @ #m %m 1 0 12914048 -streptosolen_jamesonii n 1 2 @ #m 1 0 12914193 -streptothricin n 1 1 @ 1 0 04336533 -stress n 5 4 @ ~ + ; 5 5 07085375 14376188 14435187 14410089 11514805 -stress_fracture n 1 1 @ 1 0 14293352 -stress_incontinence n 1 1 @ 1 0 13562474 -stress_mark n 1 1 @ 1 0 06822476 -stress_test n 1 2 @ ~ 1 0 05747160 -stressor n 1 2 @ + 1 0 09448829 -stretch n 7 5 @ ~ #p + ; 7 5 09448945 00341243 04336645 00628692 00371059 15134490 05021345 -stretch_mark n 1 2 @ ; 1 0 04680893 -stretch_pants n 1 2 @ ; 1 1 04337287 -stretch_receptor n 1 1 @ 1 0 05323454 -stretch_reflex n 1 1 @ 1 0 00867606 -stretchability n 1 2 @ + 1 0 05021345 -stretcher n 4 4 @ ~ #p + 4 0 04337157 04336996 04336792 02957427 -stretcher-bearer n 1 1 @ 1 0 10663549 -stretcher_party n 1 1 @ 1 0 08265790 -stretchiness n 1 2 @ + 1 0 05021345 -stretching n 2 3 @ ~ + 2 1 00366521 00628692 -streusel n 2 1 @ 2 0 07623576 07621976 -strewing n 1 2 @ + 1 0 00369138 -stria n 2 3 @ ~ + 2 0 13908348 04680465 -striate_area n 1 2 @ #p 1 0 05494617 -striate_body n 1 2 @ %p 1 0 05499542 -striate_cortex n 1 2 @ #p 1 0 05494617 -striate_vein n 1 1 @ 1 0 05383348 -striated_muscle n 1 3 @ ~ %p 1 0 05289861 -striated_muscle_cell n 1 3 @ #p %p 1 0 05459769 -striated_muscle_fiber n 1 3 @ #p %p 1 0 05459769 -striated_muscle_tissue n 1 1 @ 1 0 05289743 -striation n 2 3 @ ~ + 2 1 13908348 04680465 -striatum n 1 2 @ %p 1 0 05499542 -strickland n 1 1 @ 1 0 11322344 -strickle n 3 1 @ 3 0 04337650 04337503 04337400 -strictness n 2 3 @ ~ + 2 0 04673173 04639371 -stricture n 2 2 @ ~ 2 0 14107374 06712761 -stride n 3 3 @ #p + 3 3 00285889 13757249 00249987 -stridence n 1 2 @ + 1 0 04990021 -stridency n 1 2 @ + 1 0 04990021 -strider n 1 2 @ + 1 0 10661865 -stridor n 1 1 @ 1 0 14568194 -stridulation n 1 2 @ + 1 0 07395957 -strife n 2 2 @ ~ 2 2 13979064 01167710 -strigidae n 1 3 @ #m %m 1 0 01621714 -strigiformes n 1 3 @ #m %m 1 0 01620967 -strike n 6 3 @ ~ + 6 2 01243674 00977301 07410021 00187710 00109414 00064504 -strike-slip_fault n 1 1 @ 1 0 09449127 -strike_leader n 1 1 @ 1 0 10663659 -strike_pay n 1 1 @ 1 0 13280896 -strike_zone n 1 2 @ ; 1 0 08690974 -strikebreaker n 1 1 @ 1 0 10554455 -strikebreaking n 1 1 @ 1 0 00621198 -strikeout n 1 4 @ ~ + ; 1 0 00130347 -striker n 5 4 @ ~ + ; 5 0 10663996 10663858 10663745 10178216 04337740 -striking n 2 3 @ ~ + 2 0 07339329 00125629 -strikingness n 2 3 @ ~ + 2 0 14434022 04707252 -strindberg n 1 1 @ 1 0 11322481 -string n 10 6 @ ~ #p %p + ; 10 6 04337974 02880546 04338143 08459648 07013549 03235560 14867365 09449282 04338359 02999757 -string_bass n 1 1 @ 1 0 02803934 -string_bean n 1 1 @ 1 0 07728181 -string_cheese n 1 1 @ 1 0 07854707 -string_line n 1 1 @ 1 0 08516260 -string_of_beads n 1 2 @ ~ 1 0 02815600 -string_of_words n 1 2 @ ~ 1 0 07013736 -string_orchestra n 1 1 @ 1 0 08248747 -string_quartet n 1 1 @ 1 0 08247561 -string_quartette n 1 1 @ 1 0 08247561 -string_section n 1 2 @ ~ 1 0 08217302 -string_theory n 1 3 @ #p ; 1 0 05891232 -string_tie n 1 1 @ 1 0 04339191 -stringed_instrument n 1 3 @ ~ %p 1 0 04338517 -stringency n 2 2 @ + 2 0 14450540 04673173 -stringer n 4 3 @ #m + 4 0 10662162 10662046 04339062 04338963 -strings n 1 2 @ ~ 1 0 08217302 -stringybark n 1 2 @ ~ 1 0 12335800 -stringybark_pine n 1 1 @ 1 0 11634393 -strip n 6 5 @ ~ #p %p + 6 4 09449510 04339291 02693070 07003352 04339638 00531490 -strip-jack-naked n 1 1 @ 1 0 00490155 -strip_alert n 1 1 @ 1 0 14032293 -strip_cropping n 1 1 @ 1 0 00920211 -strip_lighting n 1 1 @ 1 0 04339879 -strip_mall n 1 1 @ 1 0 04340019 -strip_mine n 1 2 @ + 1 0 04340231 -strip_miner n 1 2 @ + 1 0 10664235 -strip_mining n 1 1 @ 1 0 00922848 -strip_poker n 1 1 @ 1 0 00498086 -strip_search n 1 1 @ 1 0 00946281 -strip_show n 1 1 @ 1 0 00531490 -strip_steak n 1 1 @ 1 0 07662719 -stripe n 5 5 @ ~ #p + ; 5 1 02784732 07269758 07269552 05845749 04683136 -stripe_blight n 1 1 @ 1 0 14218991 -striped_bass n 2 2 @ #m 2 0 07778103 02568087 -striped_button_quail n 1 1 @ 1 0 02020219 -striped_coral_root n 1 1 @ 1 0 12053962 -striped_dogwood n 1 1 @ 1 0 12753762 -striped_drum n 1 2 @ #m 1 0 02594942 -striped_gentian n 1 1 @ 1 0 12295429 -striped_hyena n 1 2 @ #m 1 0 02117512 -striped_killifish n 1 2 @ #m 1 0 01447331 -striped_maple n 1 1 @ 1 0 12753762 -striped_marlin n 1 1 @ 1 0 02631628 -striped_muishond n 1 2 @ #m 1 0 02444251 -striped_mullet n 1 2 @ #m 1 0 02601767 -striped_racer n 1 1 @ 1 0 01731941 -striped_skunk n 1 2 @ #m 1 0 02446206 -striped_squirrel n 1 2 @ #m 1 0 02359915 -striped_violet n 1 1 @ 1 0 12390099 -striper n 3 2 @ #m 3 0 10664076 07778103 02568087 -stripes n 1 2 @ ; 1 0 07269552 -striping n 1 2 @ + 1 0 00264088 -stripling n 1 2 @ ~ 1 0 09772029 -stripper n 4 3 @ ~ + 4 0 15061550 10664656 10664340 04340378 -stripper_well n 1 1 @ 1 0 04340378 -stripping n 1 3 @ ~ + 1 0 00394803 -striptease n 2 3 @ ~ + 2 0 10664340 00531490 -striptease_artist n 1 2 @ ~ 1 0 10664340 -stripteaser n 1 3 @ ~ + 1 0 10664340 -striver n 1 1 @ 1 0 10609556 -striving n 1 3 @ ~ + 1 1 00788766 -strix n 1 3 @ #m %m 1 0 01622596 -strix_aluco n 1 2 @ #m 1 0 01622959 -strix_nebulosa n 1 2 @ #m 1 0 01622779 -strix_occidentalis n 1 2 @ #m 1 0 01623880 -strix_varia n 1 2 @ #m 1 0 01623110 -strizostedion_vitreum_glaucum n 1 1 @ 1 0 02557909 -strobe n 1 1 @ 1 0 04340521 -strobe_light n 1 1 @ 1 0 04340521 -strobile n 1 3 @ ~ #p 1 0 11682842 -strobilomyces n 1 3 @ #m %m 1 0 13059485 -strobilomyces_floccopus n 1 2 @ #m 1 0 13059657 -strobilus n 1 3 @ ~ #p 1 0 11682842 -stroboscope n 1 1 @ 1 0 04340521 -stroheim n 1 1 @ 1 0 11322627 -stroke n 12 5 @ ~ %p + ; 12 5 00565302 07351195 14082303 07413815 00144632 13595094 10664850 07300960 06844903 06799260 00569898 00349369 -stroke_play n 1 1 @ 1 0 00466524 -stroking n 1 3 @ ~ + 1 0 00144632 -stroll n 1 3 @ ~ + 1 1 00284101 -stroller n 2 3 @ ~ + 2 0 10553235 02766534 -stroma n 3 1 @ 3 0 12962488 12962389 05584152 -stromateid n 1 4 @ ~ #m %p 1 0 02632989 -stromateid_fish n 1 4 @ ~ #m %p 1 0 02632989 -stromateidae n 1 3 @ #m %m 1 0 02632694 -strombidae n 1 3 @ #m %m 1 0 01943213 -strombus n 1 3 @ #m %m 1 0 01943754 -strombus_gigas n 1 1 @ 1 0 01944118 -strong-armer n 1 3 @ ~ + 1 0 10184081 -strong_belief n 1 2 @ ~ 1 0 05942888 -strong_breeze n 1 2 @ #p 1 0 11433013 -strong_drink n 1 2 @ ~ 1 0 07901587 -strong_force n 1 2 @ ; 1 0 11516819 -strong_gale n 1 2 @ #p 1 0 11462276 -strong_interaction n 1 2 @ ; 1 0 11516819 -strong_point n 1 3 ! @ ~ 1 1 05159225 -strong_suit n 2 3 @ ~ #p 2 0 07957546 05159225 -strongbox n 1 2 @ ~ 1 0 04340750 -stronghold n 1 2 @ ~ 1 0 04340935 -strongman n 2 1 @ 2 0 10665190 10665006 -strongroom n 1 3 @ ~ ; 1 0 04341133 -strongylodon n 1 3 @ #m %m 1 0 12571606 -strongylodon_macrobotrys n 1 2 @ #m 1 0 12571781 -strontianite n 1 2 @ %s 1 0 15061936 -strontium n 1 3 @ ~ #s 1 0 14655731 -strontium_90 n 1 1 @ 1 0 14656001 -strop n 1 2 @ + 1 0 04341288 -strophanthin n 1 1 @ 1 0 15061674 -strophanthus n 1 3 @ ~ #m 1 0 11775959 -strophanthus_kombe n 1 1 @ 1 0 11776234 -stropharia n 1 3 @ #m %m 1 0 13010401 -stropharia_ambigua n 1 2 @ #m 1 0 13010694 -stropharia_hornemannii n 1 2 @ #m 1 0 13010951 -stropharia_rugoso-annulata n 1 2 @ #m 1 0 13011221 -strophariaceae n 1 3 @ #m %m 1 0 13010219 -strophe n 1 2 @ #p 1 0 06386693 -structural_anthropology n 1 2 @ #p 1 0 06168334 -structural_formula n 1 1 @ 1 0 06817312 -structural_gene n 1 1 @ 1 0 05441338 -structural_genomics n 1 1 @ 1 0 06075378 -structural_iron n 1 1 @ 1 0 15063108 -structural_linguistics n 1 1 @ 1 0 06181284 -structural_member n 1 3 @ ~ #p 1 0 04341414 -structural_sociology n 1 2 @ #p 1 0 06168152 -structural_steel n 1 1 @ 1 0 15063224 -structuralism n 3 2 @ #p 3 0 06181284 06168334 06168152 -structure n 5 6 @ ~ #m %m %p + 5 4 04341686 04931965 05726345 05225602 08378819 -strudel n 1 1 @ 1 0 07627693 -struggle n 3 3 @ ~ + 3 3 00788973 00958896 00622068 -struggler n 1 2 @ + 1 0 10665302 -strum n 1 2 @ + 1 0 07396120 -struma n 2 1 @ 2 0 14199477 14144247 -strumpet n 1 1 @ 1 0 09772930 -strut n 2 2 @ + 2 1 00290125 04343148 -struthio n 1 3 @ #m %m 1 0 01518718 -struthio_camelus n 1 2 @ #m 1 0 01518878 -struthiomimus n 1 2 @ #m 1 0 01716298 -struthionidae n 1 3 @ #m %m 1 0 01518564 -struthioniformes n 1 3 @ #m %m 1 0 01518347 -strychnine n 1 2 @ #s 1 1 14715008 -strymon n 1 3 @ #m %m 1 0 02282716 -strymon_melinus n 1 2 @ #m 1 0 02283077 -stuart n 3 3 @ #m %m 3 0 11322758 10665455 08158460 -stuart_davis n 1 1 @ 1 0 10924987 -stub n 5 2 @ ~ 5 1 09449657 09374646 06520429 06507815 02927399 -stub_nail n 1 1 @ 1 0 04343272 -stubbiness n 1 2 @ + 1 0 05137778 -stubble n 2 2 @ ~ 2 0 14805899 05263183 -stubbornness n 2 3 @ ~ + 2 2 04908835 04863074 -stubbs n 1 1 @ 1 0 11322937 -stucco n 1 3 @ ~ + 1 1 15062057 -stud n 5 4 @ #p + - 5 0 10665587 04343346 04143365 02377291 00498220 -stud_farm n 1 1 @ 1 0 04343919 -stud_finder n 1 1 @ 1 0 04344003 -stud_mare n 1 1 @ 1 0 02377603 -stud_poker n 1 2 @ - 1 0 00498220 -studbook n 1 1 @ 1 0 06507330 -student n 2 4 @ ~ #m + 2 2 10665698 10557854 -student_center n 1 1 @ 1 0 04343511 -student_lamp n 1 1 @ 1 0 04343630 -student_lodging n 1 1 @ 1 0 03541537 -student_nurse n 1 1 @ 1 0 10477713 -student_residence n 1 2 @ ~ 1 0 03224893 -student_teacher n 1 1 @ 1 0 10666259 -student_union n 1 2 @ #p 1 0 04343740 -studentship n 1 2 @ + 1 0 00604694 -studhorse n 1 1 @ 1 0 02377291 -studio n 3 3 ! @ ~ 3 1 04344246 04344734 04344544 -studio_apartment n 1 1 @ 1 0 04344734 -studio_couch n 1 1 @ 1 0 04344873 -studiousness n 1 3 @ ~ + 1 0 04866238 -study n 10 4 @ ~ #p + 10 8 00644503 05755883 07218470 05705355 04345028 05996646 04227144 05784242 10666464 07048627 -study_hall n 2 2 @ #p 2 0 15299225 04345201 -studying n 1 2 @ + 1 0 06598445 -stuff n 7 3 @ ~ ; 7 5 14580897 04345288 13251154 06609909 05210534 07219004 05922305 -stuff_and_nonsense n 1 2 @ ; 1 0 06609909 -stuff_shot n 1 2 @ ~ 1 0 00110554 -stuffed_cabbage n 1 1 @ 1 0 07878283 -stuffed_derma n 1 2 @ ; 1 0 07878479 -stuffed_egg n 1 1 @ 1 0 07842433 -stuffed_grape_leaves n 1 1 @ 1 0 07866409 -stuffed_mushroom n 1 2 @ %p 1 0 07734879 -stuffed_peppers n 1 1 @ 1 0 07878647 -stuffed_shirt n 1 2 @ ; 1 0 10666615 -stuffed_tomato n 2 1 @ 2 0 07878926 07878785 -stuffer n 2 2 @ + 2 0 10693459 07250727 -stuffiness n 3 2 @ + 3 0 14321333 05112474 04648059 -stuffing n 2 3 @ ~ + 2 0 07678729 04345458 -stuffing_box n 1 2 @ %p 1 0 04345595 -stuffing_nut n 1 2 @ #p 1 0 04345787 -stultification n 2 2 @ + 2 0 06716992 00272878 -stumble n 2 2 @ + 2 0 00289388 00076563 -stumblebum n 2 1 @ 2 0 10666752 10274639 -stumbler n 2 2 @ + 2 0 10667041 09879744 -stumbling_block n 1 1 @ 1 1 04345915 -stump n 4 5 @ ~ #p + ; 4 2 13111504 05560631 04346003 03159640 -stump_speech n 1 1 @ 1 0 07243306 -stump_spud n 1 1 @ 1 0 04289964 -stumper n 1 2 @ + 1 0 06785367 -stumping n 1 1 @ 1 1 00801598 -stumpknocker n 1 2 @ #m 1 0 02563949 -stun_baton n 1 1 @ 1 0 04346157 -stun_gun n 1 1 @ 1 0 04346157 -stunner n 2 2 @ + 2 0 10613996 07299439 -stunt n 2 3 @ ~ + 2 1 00046344 01319187 -stunt_flier n 1 1 @ 1 0 09839860 -stunt_flying n 1 2 @ ~ 1 0 00302861 -stunt_kite n 1 1 @ 1 0 04284869 -stunt_man n 1 1 @ 1 0 10666846 -stunt_pilot n 1 1 @ 1 0 09839860 -stunt_woman n 1 1 @ 1 0 10666846 -stuntedness n 1 2 @ + 1 0 05107495 -stunting n 1 3 @ ~ + 1 0 00302861 -stupa n 1 1 @ 1 0 04346328 -stupe n 1 2 @ ~ 1 0 10667187 -stupefaction n 3 3 @ ~ + 3 0 07510495 05679906 01267135 -stupid n 1 3 @ ~ + 1 1 10667187 -stupid_person n 1 2 @ ~ 1 0 10667187 -stupidity n 2 4 ! @ ~ + 2 2 05645597 01248075 -stupor n 2 2 @ + 2 2 07510625 05679906 -sturdiness n 3 2 @ + 3 0 14051381 05031726 04862592 -sturgeon n 1 3 @ ~ #m 1 0 02640242 -sturm_und_drang n 1 3 @ ~ ; 1 0 13979173 -sturmabteilung n 1 2 @ %m 1 0 08212146 -sturnella n 1 3 @ #m %m 1 0 01572910 -sturnella_magna n 1 1 @ 1 0 01573240 -sturnella_neglecta n 1 1 @ 1 0 01573360 -sturnidae n 1 3 @ #m %m 1 0 01576506 -sturnus n 1 3 @ #m %m 1 0 01576863 -sturnus_vulgaris n 1 2 @ #m 1 0 01577035 -sturt's_desert_pea n 1 1 @ 1 0 12516828 -sturt_pea n 1 1 @ 1 0 12516828 -stutter n 1 2 @ + 1 0 14402922 -stutterer n 1 2 @ + 1 0 10646780 -stuttgart n 1 2 @ #p 1 0 08774912 -stuyvesant n 1 1 @ 1 0 11323094 -sty n 2 1 @ 2 0 14185219 04346428 -stye n 1 1 @ 1 0 14185219 -style n 9 6 @ ~ #p %p + ; 9 4 04928903 07066659 05844105 05750163 11677259 06789215 04812871 04346511 01901213 -style_of_architecture n 1 2 @ ~ 1 0 05841351 -style_sheet n 1 1 @ 1 0 06259584 -stylemark n 1 2 @ ~ 1 1 04732543 -styler n 1 3 @ ~ + 1 0 10155849 -stylet n 1 2 @ #p 1 0 01901348 -stylisation n 1 3 @ ~ + 1 0 01159776 -stylishness n 1 3 @ ~ + 1 0 04813712 -stylist n 2 3 @ ~ + 2 1 10667477 10155849 -stylite n 1 1 @ 1 0 10667596 -stylization n 1 3 @ ~ + 1 1 01159776 -styloid_process n 1 2 @ #p 1 0 05542416 -stylomastoid_vein n 1 1 @ 1 0 05381325 -stylomecon n 1 2 @ #m 1 0 11908431 -stylomecon_heterophyllum n 1 1 @ 1 0 11908549 -stylophorum n 1 3 @ #m %m 1 0 11908718 -stylophorum_diphyllum n 1 2 @ #m 1 0 11908846 -stylopodium n 1 1 @ 1 0 11677485 -stylostixis n 1 2 @ ; 1 0 00710155 -stylus n 2 4 @ ~ #p %p 2 0 04346679 04346511 -stylus_printer n 1 1 @ 1 0 04595285 -stymie n 2 2 @ + 2 0 13927231 05691376 -stymy n 2 1 @ 2 0 13927231 05691376 -styphelia n 1 3 @ #m %m 1 0 12255086 -styphelia_humifusum n 1 2 @ #m 1 0 12254168 -styphelia_triflora n 1 2 @ #m 1 0 12255225 -stypsis n 1 3 @ = + 1 0 05202034 -styptic n 1 3 @ ~ + 1 0 02750835 -styptic_weed n 1 1 @ 1 0 12500751 -styracaceae n 1 3 @ #m %m 1 0 12776946 -styracosaur n 1 2 @ #m 1 0 01704626 -styracosaurus n 1 2 @ #m 1 0 01704626 -styrax n 1 3 @ ~ #m 1 0 12777436 -styrax_family n 1 3 @ #m %m 1 0 12776946 -styrax_japonicum n 1 1 @ 1 0 12777778 -styrax_obassia n 1 1 @ 1 0 12777680 -styrax_texana n 1 1 @ 1 0 12777892 -styrene n 1 2 @ ~ 1 0 14595543 -styrofoam n 1 2 @ ; 1 0 14595933 -styron n 1 1 @ 1 0 11323316 -styx n 1 3 @ #p ; 1 0 09449773 -suasion n 1 2 @ ~ 1 0 07245125 -suaveness n 1 2 @ + 1 0 04913322 -suavity n 1 2 @ + 1 0 04913322 -sub n 2 3 @ ~ %p 2 0 07697825 04347754 -sub-assembly n 1 1 @ 1 0 04346855 -sub-interval n 1 1 @ 1 1 06016746 -sub-saharan_africa n 1 2 @ #p 1 0 09172480 -sub-test n 1 2 @ #m 1 1 01008271 -subacute_bacterial_endocarditis n 1 1 @ 1 0 14339219 -subacute_inclusion_body_encephalitis n 1 1 @ 1 0 14344189 -subacute_sclerosing_leukoencephalitis n 1 1 @ 1 0 14344189 -subacute_sclerosing_panencephalitis n 1 1 @ 1 0 14344189 -subalpine_fir n 1 1 @ 1 0 11622591 -subalpine_larch n 1 1 @ 1 0 11619687 -subaltern n 1 3 @ + ; 1 0 10667709 -subarachnoid_space n 1 2 @ #p 1 0 05482922 -subatomic_particle n 1 2 @ ~ 1 0 09386422 -subbase n 1 1 @ 1 0 04347004 -subbing n 1 2 @ + 1 0 00623670 -subclass n 1 2 @ ; 1 0 08106661 -subclass_acnidosporidia n 1 3 @ #m %m 1 0 01425817 -subclass_actinopoda n 1 3 @ #m %m 1 0 01390287 -subclass_alismatidae n 1 2 @ #m 1 0 11668340 -subclass_amphineura n 1 3 @ #m %m 1 0 01954202 -subclass_anapsida n 1 3 @ #m %m 1 0 01661404 -subclass_archaeornithes n 1 3 @ #m %m 1 0 01515811 -subclass_archosauria n 1 3 @ #m %m 1 0 01695259 -subclass_arecidae n 1 3 @ #m %m 1 0 11668573 -subclass_asteridae n 1 3 @ #m %m 1 0 11910835 -subclass_branchiopoda n 1 3 @ #m %m 1 0 01994176 -subclass_caryophyllidae n 1 3 @ #m %m 1 0 11803475 -subclass_cirripedia n 1 3 @ #m %m 1 0 01998019 -subclass_cnidosporidia n 1 3 @ #m %m 1 0 01426784 -subclass_commelinidae n 1 3 @ #m %m 1 0 11668952 -subclass_copepoda n 1 3 @ #m %m 1 0 01996392 -subclass_crossopterygii n 1 3 @ #m %m 1 0 02514988 -subclass_diapsida n 1 1 @ 1 0 01662060 -subclass_dibranchia n 1 3 @ #m %m 1 0 01969103 -subclass_dibranchiata n 1 3 @ #m %m 1 0 01969103 -subclass_dilleniidae n 1 3 @ #m %m 1 0 12358485 -subclass_dipnoi n 1 3 @ #m %m 1 0 02515914 -subclass_discomycetes n 1 3 @ #m %m 1 0 13028337 -subclass_elasmobranchii n 1 3 @ #m %m 1 0 01481599 -subclass_entomostraca n 1 2 @ #m 1 0 01993949 -subclass_euascomycetes n 1 2 @ #m 1 0 13024348 -subclass_euryalida n 1 3 @ #m %m 1 0 02317983 -subclass_eutheria n 1 3 @ #m %m 1 0 01886220 -subclass_exopterygota n 1 2 @ #m 1 0 02232408 -subclass_hamamelidae n 1 3 @ #m %m 1 0 12313005 -subclass_heterobasidiomycetes n 1 2 @ #m 1 0 12997432 -subclass_holocephali n 1 3 @ #m %m 1 0 01480715 -subclass_homobasidiomycetes n 1 2 @ #m 1 0 12997128 -subclass_infusoria n 1 3 @ #m %m 1 0 01395531 -subclass_lepidosauria n 1 3 @ #m %m 1 0 01672767 -subclass_liliidae n 1 3 @ #m %m 1 0 12410381 -subclass_magnoliidae n 1 3 @ #m %m 1 0 11667112 -subclass_malacostraca n 1 3 @ #m %m 1 0 01975312 -subclass_metatheria n 1 3 @ #m %m 1 0 01873850 -subclass_ophiurida n 1 3 @ #m %m 1 0 02317653 -subclass_opisthobranchia n 1 3 @ #m %m 1 0 01950195 -subclass_ostracoda n 1 3 @ #m %m 1 0 01997698 -subclass_pantotheria n 1 2 @ #m 1 0 01873622 -subclass_phytomastigina n 1 3 @ #m %m 1 0 01420655 -subclass_prototheria n 1 3 @ #m %m 1 0 01871406 -subclass_rhizopoda n 1 3 @ #m %m 1 0 01391174 -subclass_rosidae n 1 3 @ #m %m 1 0 12212810 -subclass_selachii n 1 3 @ #m %m 1 0 01481599 -subclass_synapsida n 1 3 @ #m %m 1 0 01719175 -subclass_teleostei n 1 3 @ #m %m 1 0 02527813 -subclass_telosporidia n 1 3 @ #m %m 1 0 01422594 -subclass_zoomastigina n 1 3 @ #m %m 1 0 01418237 -subclavian_artery n 1 2 @ #p 1 0 05354580 -subclavian_vein n 1 1 @ 1 0 05381491 -subclinical_absence n 1 1 @ 1 0 14089080 -subcommittee n 1 1 @ 1 1 08325993 -subcompact n 1 1 @ 1 0 04347119 -subcompact_car n 1 1 @ 1 0 04347119 -subconscious n 1 2 @ + 1 0 05613478 -subconscious_mind n 1 1 @ 1 1 05613478 -subconsciousness n 1 2 @ + 1 0 05682431 -subcontinent n 1 3 @ #p ; 1 1 09449949 -subcontract n 1 2 @ + 1 0 06524767 -subcontractor n 1 2 @ + 1 0 10667863 -subculture n 1 3 @ ~ #p 1 0 08288753 -subcutaneous_injection n 1 1 @ 1 0 00323436 -subcutaneous_test n 1 1 @ 1 0 05746708 -subdata_base n 1 1 @ 1 0 06638739 -subdeacon n 1 1 @ 1 0 10668024 -subdirectory n 1 2 @ ; 1 0 06490743 -subdivider n 1 2 @ + 1 0 10668280 -subdivision n 5 4 @ ~ + ; 5 3 08674251 00398427 08401248 06392001 04348548 -subdivision_ascomycota n 1 3 @ #m %m 1 0 13023292 -subdivision_ascomycotina n 1 3 @ #m %m 1 0 13023292 -subdivision_basidiomycota n 1 3 @ #m %m 1 0 12996225 -subdivision_basidiomycotina n 1 3 @ #m %m 1 0 12996225 -subdivision_coniferophytina n 1 3 @ #m %m 1 0 11605708 -subdivision_cycadophyta n 1 3 @ #m %m 1 0 11599694 -subdivision_cycadophytina n 1 3 @ #m %m 1 0 11599694 -subdivision_deuteromycota n 1 3 @ #m %m 1 0 12995724 -subdivision_deuteromycotina n 1 3 @ #m %m 1 0 12995724 -subdivision_ginkgophyta n 1 3 @ #m %m 1 0 11663449 -subdivision_ginkgophytina n 1 3 @ #m %m 1 0 11663449 -subdivision_gnetophytina n 1 3 @ #m %m 1 0 11596486 -subdivision_mastigomycota n 1 3 @ #m %m 1 0 12976985 -subdivision_mastigomycotina n 1 3 @ #m %m 1 0 12976985 -subdivision_pinophytina n 1 2 @ #m 1 0 11607071 -subdivision_pteropsida n 1 2 @ #m 1 0 11664677 -subdivision_taxophytina n 1 2 @ #m 1 0 11660537 -subdivision_zygomycota n 1 3 @ #m %m 1 0 12972414 -subdivision_zygomycotina n 1 3 @ #m %m 1 0 12972414 -subdominant n 1 2 @ ; 1 0 06858144 -subduction n 1 1 @ 1 0 13562680 -subduedness n 2 3 @ ~ + 2 0 04955907 04889779 -subduer n 1 2 @ + 1 0 10668450 -subeditor n 1 2 @ + 1 0 10045361 -suberic_acid n 1 1 @ 1 0 14616181 -subfamily n 1 4 @ ~ #m ; 1 0 08108627 -subfamily_acoraceae n 1 2 @ #m 1 0 11780747 -subfamily_anserinae n 1 2 @ #m 1 0 01858023 -subfamily_bassariscidae n 1 2 @ #m 1 0 02508458 -subfamily_bovinae n 1 2 @ #m 1 0 02401305 -subfamily_cabombaceae n 1 3 @ #m %m 1 0 11717820 -subfamily_caesalpinioideae n 1 3 @ #m %m 1 0 12487647 -subfamily_carduelinae n 1 2 @ #m 1 0 01530691 -subfamily_carpinaceae n 1 2 @ #m 1 0 12286372 -subfamily_cetoniidae n 1 3 @ #m %m 1 0 02175263 -subfamily_corylaceae n 1 2 @ #m 1 0 12288422 -subfamily_dorylinae n 1 3 @ #m %m 1 0 02220393 -subfamily_dracaenaceae n 1 2 @ #m 1 0 12479066 -subfamily_dracenaceae n 1 2 @ #m 1 0 12479066 -subfamily_emberizidae n 1 3 @ #m %m 1 0 01536916 -subfamily_emberizinae n 1 3 @ #m %m 1 0 01536916 -subfamily_garrulinae n 1 3 @ #m %m 1 0 01579868 -subfamily_gerbillinae n 1 3 @ #m %m 1 0 02343487 -subfamily_hydromyinae n 1 3 @ #m %m 1 0 02334849 -subfamily_loriinae n 1 3 @ #m %m 1 0 01820190 -subfamily_lutrinae n 1 2 @ #m 1 0 02444500 -subfamily_malaconotinae n 1 3 @ #m %m 1 0 01599919 -subfamily_melinae n 1 2 @ #m 1 0 02447220 -subfamily_melolonthidae n 1 3 @ #m %m 1 0 02174153 -subfamily_mephitinae n 1 2 @ #m 1 0 02445564 -subfamily_merginae n 1 3 @ #m %m 1 0 01854047 -subfamily_mimosoideae n 1 3 @ #m %m 1 0 11754188 -subfamily_nelumbonaceae n 1 3 @ #m %m 1 0 11717007 -subfamily_numididae n 1 3 @ #m %m 1 0 01808785 -subfamily_numidinae n 1 3 @ #m %m 1 0 01808785 -subfamily_papilionoideae n 1 4 @ ~ #m %m 1 0 12501745 -subfamily_perdicidae n 1 3 @ #m %m 1 0 01807265 -subfamily_perdicinae n 1 3 @ #m %m 1 0 01807265 -subfamily_peristediinae n 1 2 @ #m 1 0 02651215 -subfamily_petauristidae n 1 3 @ #m %m 1 0 02362025 -subfamily_philadelphaceae n 1 3 @ #m %m 1 0 12790656 -subfamily_potoroinae n 1 3 @ #m %m 1 0 01879983 -subfamily_pythoninae n 1 3 @ #m %m 1 0 01743223 -subfamily_smilacaceae n 1 2 @ #m 1 0 12469725 -subfamily_sterninae n 1 3 @ #m %m 1 0 02042923 -subfamily_sylviinae n 1 2 @ #m 1 0 01562978 -subfamily_taxodiaceae n 1 2 @ #m 1 0 11639609 -subfamily_triglinae n 1 2 @ #m 1 0 02650696 -subfamily_turdinae n 1 3 @ #m %m 1 0 01557028 -subfamily_uvulariaceae n 1 3 @ #m %m 1 0 12474620 -subfigure n 1 2 @ ~ 1 1 13863602 -subgenus n 1 3 @ #m ; 1 0 08109624 -subgenus_azalea n 1 3 @ #m %m 1 0 12245067 -subgenus_azaleastrum n 1 3 @ #m %m 1 0 12245067 -subgenus_calliopsis n 1 2 @ #m 1 0 11957162 -subgenus_chen n 1 3 @ #m %m 1 0 01856748 -subgenus_pastor n 1 3 @ #m %m 1 0 01577265 -subgenus_poinciana n 1 2 @ #m 1 0 12498739 -subgroup n 2 3 @ ~ ; 2 1 08001083 06017053 -subhead n 1 2 @ ~ 1 0 06345320 -subheading n 1 2 @ ~ 1 0 06345320 -subject n 8 6 @ ~ #m #p + ; 8 7 06599788 04347225 05996646 05814291 06309931 10668666 09625401 06310125 -subject_area n 1 2 @ ~ 1 0 05996646 -subject_case n 1 1 @ 1 0 06311160 -subject_field n 1 2 @ ~ 1 0 05996646 -subject_matter n 1 2 @ ~ 1 1 06598915 -subjection n 2 3 @ ~ + 2 0 13996300 00089027 -subjectiveness n 1 2 @ + 1 0 04892544 -subjectivism n 2 3 @ + ; 2 0 05977135 05214121 -subjectivist n 1 2 @ + 1 1 10669009 -subjectivity n 1 2 @ + 1 0 04892544 -subjoining n 1 2 @ + 1 0 00371846 -subjugation n 3 3 @ ~ + 3 1 13996300 00421047 00089027 -subjugator n 1 2 @ + 1 0 10669125 -subjunction n 1 2 @ + 1 0 00371846 -subjunctive n 1 1 @ 1 0 13801937 -subjunctive_mood n 1 1 @ 1 0 13801937 -subkingdom n 1 3 @ ~ ; 1 0 07940865 -subkingdom_metazoa n 1 3 @ #m %m 1 0 01908703 -subkingdom_parazoa n 1 3 @ #m %m 1 0 01906328 -sublease n 1 2 @ + 1 0 13248928 -sublet n 1 2 @ + 1 0 13248928 -sublieutenant n 1 2 @ ; 1 0 10669236 -sublimate n 1 3 @ ~ + 1 0 15062284 -sublimation n 2 3 @ + ; 2 0 07360293 07297927 -sublimaze n 1 1 @ 1 0 03328650 -sublime_porte n 1 1 @ 1 0 08052227 -sublimity n 1 2 @ + 1 0 04870889 -sublingual_gland n 1 1 @ 1 0 05533392 -sublingual_salivary_gland n 1 1 @ 1 0 05533392 -sublingual_vein n 1 1 @ 1 0 05381666 -subluxation n 1 2 @ + 1 0 07445149 -submachine_gun n 1 2 @ ~ 1 1 04347519 -submandibular_gland n 1 1 @ 1 0 05533635 -submandibular_salivary_gland n 1 1 @ 1 0 05533635 -submarine n 2 4 @ ~ %p + 2 1 04347754 07697825 -submarine_ball n 1 1 @ 1 1 00109771 -submarine_earthquake n 1 1 @ 1 0 07429870 -submarine_pitch n 1 1 @ 1 0 00109771 -submarine_sandwich n 1 1 @ 1 0 07697825 -submarine_torpedo n 1 1 @ 1 0 04348070 -submariner n 1 3 @ #m + 1 0 10669357 -submaxilla n 1 3 @ ~ %p 1 0 05275905 -submaxillary_gland n 1 1 @ 1 0 05533635 -submaxillary_salivary_gland n 1 1 @ 1 0 05533635 -submediant n 1 2 @ ; 1 0 06858384 -submenu n 1 2 @ ; 1 0 06493721 -submergence n 1 3 @ ~ + 1 0 07364115 -submerging n 1 3 @ ~ + 1 0 07364115 -submersible n 2 4 ! @ ~ + 2 0 04348359 04348184 -submersible_warship n 1 2 @ ~ 1 0 04348184 -submersion n 2 3 @ ~ + 2 0 07364115 00277569 -submission n 7 4 @ ~ + ; 7 2 07167578 01166926 14580090 07509325 06772094 06771957 06731510 -submissiveness n 1 3 @ ~ + 1 0 04906471 -submitter n 2 2 @ + 2 0 10669727 10669486 -submucosa n 1 1 @ 1 1 05429994 -subnormal n 1 2 @ + 1 0 10669876 -subnormality n 2 3 @ ~ + 2 0 14505667 05646218 -suborder n 1 3 @ #m ; 1 0 08107191 -suborder_alcyonacea n 1 2 @ #m 1 0 01915290 -suborder_anisoptera n 1 2 @ #m 1 0 02268334 -suborder_anseres n 1 2 @ #m 1 0 01846156 -suborder_anthropoidea n 1 3 @ #m %m 1 0 02470451 -suborder_blattaria n 1 3 @ #m %m 1 0 02233096 -suborder_blattodea n 1 3 @ #m %m 1 0 02233096 -suborder_blennioidea n 1 3 @ #m %m 1 0 02612393 -suborder_brachyura n 1 3 @ #m %m 1 0 01976477 -suborder_carnosaura n 1 3 @ #m %m 1 0 01713310 -suborder_cephalaspida n 1 3 @ #m %m 1 0 01475421 -suborder_ceratopsia n 1 3 @ #m %m 1 0 01703341 -suborder_ceratosaura n 1 3 @ #m %m 1 0 01712432 -suborder_charadrii n 1 3 @ #m %m 1 0 02022135 -suborder_clamatores n 1 2 @ #m 1 0 01547143 -suborder_euronithopoda n 1 3 @ #m %m 1 0 01705247 -suborder_eurylaimi n 1 3 @ #m %m 1 0 01546223 -suborder_gorgonacea n 1 3 @ #m %m 1 0 01916010 -suborder_gorgoniacea n 1 3 @ #m %m 1 0 01916010 -suborder_heteroptera n 1 3 @ #m %m 1 0 02241184 -suborder_heterostraci n 1 3 @ #m %m 1 0 01475025 -suborder_homoptera n 1 3 @ #m %m 1 0 02245592 -suborder_hyperoartia n 1 2 @ #m 1 0 01477184 -suborder_hyperotreta n 1 2 @ #m 1 0 01478073 -suborder_hystricomorpha n 1 3 @ #m %m 1 0 02346315 -suborder_lacertilia n 1 3 @ #m %m 1 0 01673668 -suborder_lari n 1 3 @ #m %m 1 0 02040698 -suborder_lemuroidea n 1 4 @ ~ #m %m 1 0 02496576 -suborder_limicolae n 1 2 @ #m 1 0 02022498 -suborder_lipotyphla n 1 2 @ #m 1 0 01888821 -suborder_maniraptora n 1 3 @ #m %m 1 0 01716732 -suborder_manteodea n 1 3 @ #m %m 1 0 02235575 -suborder_marginocephalia n 1 3 @ #m %m 1 0 01702623 -suborder_megachiroptera n 1 3 @ #m %m 1 0 02139479 -suborder_megaloptera n 1 3 @ #m %m 1 0 02265471 -suborder_menotyphla n 1 2 @ #m 1 0 01888948 -suborder_menurae n 1 3 @ #m %m 1 0 01545149 -suborder_microchiroptera n 1 3 @ #m %m 1 0 02140970 -suborder_mugiloidea n 1 3 @ #m %m 1 0 02600953 -suborder_myomorpha n 1 3 @ #m %m 1 0 02330582 -suborder_mysticeti n 1 3 @ #m %m 1 0 02062991 -suborder_myxiniformes n 1 2 @ #m 1 0 01478073 -suborder_myxinoidei n 1 2 @ #m 1 0 01478073 -suborder_natantia n 1 3 @ #m %m 1 0 01986367 -suborder_nematocera n 1 3 @ #m %m 1 0 02199712 -suborder_nothosauria n 1 3 @ #m %m 1 0 01725933 -suborder_odontoceti n 1 3 @ #m %m 1 0 02066450 -suborder_ophidia n 1 3 @ #m %m 1 0 01726390 -suborder_ornithomimida n 1 3 @ #m %m 1 0 01715692 -suborder_ornithopoda n 1 3 @ #m %m 1 0 01705247 -suborder_oscines n 1 3 @ #m %m 1 0 01524885 -suborder_osteostraci n 1 3 @ #m %m 1 0 01475421 -suborder_otides n 1 2 @ #m 1 0 02018485 -suborder_pachycephalosaurus n 1 3 @ #m %m 1 0 01702862 -suborder_passeres n 1 3 @ #m %m 1 0 01524885 -suborder_percoidea n 1 3 @ #m %m 1 0 02554512 -suborder_petromyzoniformes n 1 2 @ #m 1 0 01477184 -suborder_pinnipedia n 1 3 @ #m %m 1 0 02075727 -suborder_plesiosauria n 1 3 @ #m %m 1 0 01725427 -suborder_prosauropoda n 1 2 @ #m 1 0 01708648 -suborder_prosimii n 1 3 @ #m %m 1 0 02495789 -suborder_reptantia n 1 3 @ #m %m 1 0 01982482 -suborder_ruminantia n 1 3 @ #m %m 1 0 02398732 -suborder_sauria n 1 3 @ #m %m 1 0 01673668 -suborder_sauropoda n 1 3 @ #m %m 1 0 01708778 -suborder_sauropodomorpha n 1 3 @ #m %m 1 0 01708332 -suborder_sciuromorpha n 1 3 @ #m %m 1 0 02354950 -suborder_scombroidea n 1 3 @ #m %m 1 0 02623170 -suborder_scorpaenoidea n 1 3 @ #m %m 1 0 02641825 -suborder_serpentes n 1 3 @ #m %m 1 0 01726390 -suborder_strepsirhini n 1 2 @ #m 1 0 02497214 -suborder_tarsioidea n 1 3 @ #m %m 1 0 02501101 -suborder_theropoda n 1 3 @ #m %m 1 0 01711662 -suborder_thyreophora n 1 3 @ #m %m 1 0 01701334 -suborder_tyranni n 1 3 @ #m %m 1 0 01546660 -suborder_xenarthra n 1 3 @ #m %m 1 0 02453890 -suborder_zygoptera n 1 2 @ #m 1 0 02268746 -subordinate n 2 3 @ ~ + 2 1 10669991 06292973 -subordinate_clause n 1 3 @ ~ #p 1 0 06314808 -subordinate_conjunction n 1 1 @ 1 0 06326226 -subordinate_word n 1 1 @ 1 0 06292973 -subordinateness n 1 3 @ ~ + 1 0 13951984 -subordinating_conjunction n 2 1 @ 2 0 13799796 06326226 -subordination n 5 3 ! @ + 5 0 14001852 13807853 13800675 04907153 01128655 -subornation n 2 4 @ ~ + ; 2 0 07252967 06736946 -subornation_of_perjury n 1 2 @ ; 1 0 07253142 -suborner n 1 2 @ + 1 0 09874260 -subpart n 1 1 @ 1 1 13811340 -subphylum n 1 3 @ #m ; 1 0 08103299 -subphylum_cephalochordata n 1 3 @ #m %m 1 0 01467180 -subphylum_craniata n 1 3 @ #m %m 1 0 01471070 -subphylum_pentastomida n 1 3 @ #m %m 1 0 01788730 -subphylum_tunicata n 1 3 @ #m %m 1 0 01467986 -subphylum_urochorda n 1 3 @ #m %m 1 0 01467986 -subphylum_urochordata n 1 3 @ #m %m 1 0 01467986 -subphylum_vertebrata n 1 3 @ #m %m 1 0 01471070 -subpoena n 1 3 @ + ; 1 0 06557047 -subpoena_ad_testificandum n 1 2 @ ; 1 0 06557047 -subpoena_duces_tecum n 1 2 @ ; 1 1 06557317 -subpopulation n 1 2 @ ; 1 0 06026508 -subprogram n 1 3 @ ~ #p 1 0 06582403 -subrogation n 1 3 @ + ; 1 0 00198118 -subroutine n 1 3 @ ~ #p 1 0 06582403 -subroutine_library n 1 3 @ %p ; 1 0 07977592 -subscriber n 3 2 @ + 3 0 10670668 10670483 10670310 -subscriber_line n 1 2 @ ~ 1 0 04402057 -subscript n 1 3 ! @ + 1 0 06820212 -subscription n 4 3 @ ~ + 4 2 13281130 07179820 01090018 00615659 -subscription_right n 1 1 @ 1 1 13241407 -subscription_warrant n 1 1 @ 1 0 13418713 -subsection n 1 1 @ 1 1 04348548 -subsequence n 2 2 @ + 2 0 07295507 05047617 -subsequentness n 1 2 @ + 1 0 05047617 -subservience n 3 3 @ ~ + 3 0 14529835 13952466 04906712 -subservientness n 1 2 @ + 1 0 13952466 -subset n 1 1 @ 1 0 08001209 -subshrub n 1 2 @ ~ 1 0 13118707 -subsidence n 3 3 @ ~ + 3 0 07419960 07362218 07361416 -subsidiarity n 1 3 @ ~ + 1 0 13951984 -subsidiary n 2 3 @ ~ + 2 0 10669991 08003935 -subsidiary_company n 1 1 @ 1 0 08003935 -subsidiary_ledger n 1 1 @ 1 0 13404879 -subsiding n 1 2 @ + 1 0 07362218 -subsidisation n 2 3 @ ~ + 2 0 13385583 00087423 -subsidiser n 1 2 @ + 1 0 10670885 -subsidization n 2 3 @ ~ + 2 0 13385583 00087423 -subsidizer n 1 2 @ + 1 0 10670885 -subsidy n 1 3 @ ~ + 1 1 13267014 -subsistence n 3 2 @ + 3 2 13366537 13962360 13957493 -subsistence_farming n 1 1 @ 1 0 00920357 -subsister n 1 2 @ + 1 0 10681194 -subsoil n 1 1 @ 1 1 14695838 -subspace n 1 1 @ 1 1 08004342 -subspecies n 1 2 @ ; 1 1 08110648 -substance n 7 3 @ ~ + 7 3 00019613 05921123 05919866 14580597 13353858 06598915 00020090 -substance_abuse n 1 2 @ ~ 1 0 00947923 -substance_abuser n 1 2 @ ~ 1 0 10036266 -substantia_alba n 1 4 @ ~ #s %p 1 0 05483677 -substantia_grisea n 1 3 @ #s %s 1 0 05483388 -substantia_nigra n 1 2 @ #p 1 0 05500006 -substantiality n 1 4 ! @ = + 1 0 04761212 -substantialness n 1 3 @ = + 1 0 04761212 -substantiation n 2 3 @ ~ + 2 0 05825245 00153961 -substantive n 1 3 @ ~ + 1 0 06303540 -substantive_dye n 1 1 @ 1 0 14987341 -substation n 1 1 @ 1 1 04348702 -substitutability n 1 2 @ + 1 0 04737234 -substitute n 3 4 @ ~ #m + 3 1 05696425 10671042 10648237 -substituting n 1 2 @ + 1 0 00623670 -substitution n 2 3 @ ~ + 2 1 07443761 00196485 -substitution_class n 1 1 @ 1 0 06309684 -substrate n 4 1 @ 4 1 14738892 08660146 08657887 06903699 -substratum n 3 1 @ 3 0 08660146 08657887 06903699 -substring n 1 1 @ 1 0 07013933 -substructure n 2 3 @ ~ #p 2 0 03570372 03387016 -subsumption n 2 4 @ #p %p + 2 0 06754415 05736002 -subsystem n 1 1 @ 1 1 08435937 -subterfuge n 1 1 @ 1 1 06760508 -subthalamic_nucleus n 1 2 @ #p 1 0 05498581 -subthalamus n 1 3 @ #p %p 1 0 05499044 -subtilin n 1 1 @ 1 0 04348854 -subtitle n 2 3 @ #p + 2 0 06347588 06347037 -subtlety n 2 1 @ 2 2 06606191 04711256 -subtonic n 1 2 @ ; 1 0 06858539 -subtopia n 1 2 @ ; 1 0 08539893 -subtotal n 1 1 @ 1 0 05860975 -subtracter n 2 1 @ 2 0 10671300 04348988 -subtraction n 2 4 ! @ ~ + 2 0 00871862 00360757 -subtrahend n 1 1 @ 1 0 13729135 -subtreasury n 1 1 @ 1 0 13358260 -subtropics n 1 2 @ + 1 0 08674344 -subularia n 1 3 @ #m %m 1 0 11898079 -subularia_aquatica n 1 2 @ #m 1 0 11898271 -subunit n 1 2 @ ~ 1 0 13662703 -suburb n 1 3 @ ~ #p 1 1 08554440 -suburban_area n 1 3 @ ~ #p 1 0 08554440 -suburbanite n 1 1 @ 1 1 10671387 -suburbia n 2 4 @ ~ #p + 2 0 08554440 08288977 -subvention n 2 2 @ + 2 0 13267263 01061203 -subversion n 2 2 @ + 2 0 00272448 00215838 -subversive n 1 3 @ ~ + 1 0 10527334 -subversive_activity n 1 1 @ 1 0 00215838 -subversiveness n 1 3 @ ~ + 1 0 04879658 -subverter n 1 3 @ ~ + 1 0 10527334 -subvocaliser n 1 1 @ 1 0 10671467 -subvocalizer n 1 2 @ + 1 0 10671467 -subway n 2 1 @ 2 1 03757138 04508804 -subway_fare n 1 1 @ 1 0 13308650 -subway_station n 1 1 @ 1 0 04349077 -subway_system n 1 1 @ 1 0 03757138 -subway_token n 1 1 @ 1 0 04349189 -subway_train n 1 1 @ 1 0 04349306 -subwoofer n 1 1 @ 1 0 04349401 -succade n 1 2 @ ~ 1 0 07600506 -succedaneum n 1 2 @ ; 1 0 05696941 -succeeder n 1 3 @ ~ + 1 0 09762821 -success n 4 4 ! @ ~ = 4 4 07319103 00063652 14474894 09762821 -successfulness n 1 3 @ ~ + 1 0 14474052 -succession n 5 4 @ ~ + ; 5 3 05044822 08459908 01010458 13562862 00082754 -successiveness n 1 3 @ ~ + 1 0 05044822 -successor n 3 2 @ + 3 2 10671736 05696803 10671613 -succinctness n 1 2 @ + 1 0 07089024 -succinic_acid n 1 1 @ 1 0 14616292 -succinylcholine n 1 1 @ 1 0 04349526 -succor n 1 3 @ ~ + 1 1 01209220 -succorer n 1 2 @ + 1 0 10671898 -succory n 1 3 @ #m %p 1 0 11953038 -succos n 1 3 @ #p ; 1 0 15161872 -succotash n 1 1 @ 1 0 07879072 -succoth n 1 3 @ #p ; 1 0 15161872 -succour n 1 3 @ ~ + 1 0 01209220 -succourer n 1 2 @ + 1 0 10671898 -succuba n 1 1 @ 1 0 09543021 -succubus n 1 1 @ 1 0 09543021 -succulence n 1 2 @ + 1 0 04996215 -succulency n 1 1 @ 1 0 04996215 -succulent n 1 3 @ ~ + 1 0 13084184 -succus n 1 2 @ ~ 1 0 05398609 -succussion n 1 2 @ + 1 0 00876377 -suck n 1 2 @ + 1 1 00842692 -sucker n 7 6 @ ~ #m #p %p + 7 1 09921409 13164881 10672066 07779895 07607605 02465414 01444922 -sucker_punch n 1 1 @ 1 0 00136152 -suckerfish n 1 3 @ ~ #m 1 0 02574910 -sucking n 1 2 @ + 1 0 00842692 -sucking_fish n 1 3 @ ~ #m 1 0 02574910 -sucking_louse n 1 3 @ ~ #m 1 0 02183857 -sucking_pig n 1 1 @ 1 0 02395855 -suckling n 4 1 @ 4 0 11323448 10368291 01323261 00842997 -suckling_pig n 1 1 @ 1 0 07669098 -suckling_reflex n 1 1 @ 1 0 00867790 -sucralfate n 1 1 @ 1 0 04349701 -sucrase n 1 1 @ 1 0 14921622 -sucre n 2 3 @ #p %p 2 0 13707585 08853612 -sucrose n 1 2 @ ~ 1 0 15062778 -suction n 2 2 @ + 2 1 11517494 00842692 -suction_cup n 1 1 @ 1 0 04349913 -suction_curettage n 1 1 @ 1 0 00669687 -suction_lipectomy n 1 1 @ 1 0 00682243 -suction_pump n 1 2 @ ~ 1 0 04350104 -suction_stop n 1 1 @ 1 0 07118210 -sudafed n 1 2 @ ; 1 0 03807052 -sudan n 2 6 @ #m #p %m %p - 2 0 09029457 09029242 -sudanese n 1 3 @ #m + 1 1 09732170 -sudanese_monetary_unit n 1 2 @ ~ 1 0 13695307 -sudanese_pound n 1 2 @ %p 1 0 13695420 -sudation n 1 3 @ ~ + 1 0 13535261 -sudatorium n 1 1 @ 1 0 04350235 -sudatory n 2 1 @ 2 0 04350347 04350235 -sudbury n 1 2 @ #p 1 0 08828151 -sudden_death n 1 2 @ ; 1 0 15234587 -sudden_infant_death_syndrome n 1 1 @ 1 0 14310292 -suddenness n 1 2 @ + 1 1 05060476 -sudoku n 1 1 @ 1 0 06786012 -sudor n 1 2 @ %s 1 0 05405751 -sudoriferous_gland n 1 3 @ ~ #p 1 0 05330659 -sudorific n 1 1 @ 1 0 04350347 -sudra n 2 3 @ #m %m 2 0 10594284 08307440 -suds n 2 3 @ ~ + 2 1 09439213 07887192 -sue n 1 1 @ 1 0 11323580 -suede n 2 2 @ ~ 2 0 14763964 04350458 -suede_cloth n 1 2 @ ~ 1 0 04350458 -suede_glove n 1 1 @ 1 0 03616979 -suede_leather n 1 1 @ 1 0 14763964 -suer n 2 3 @ ~ + 2 0 10674130 10672192 -suet n 1 2 @ + 1 0 07672790 -suet_pudding n 1 3 @ ~ ; 1 0 07620327 -suez n 1 2 @ #p 1 0 08900204 -suez_canal n 1 2 @ #p 1 0 08900377 -sufferance n 2 3 @ ~ + 2 0 05032795 04638175 -sufferer n 2 3 @ ~ + 2 1 10595647 10296618 -suffering n 4 3 @ ~ + 4 4 14324274 14448910 07496463 07495327 -sufficiency n 3 5 ! @ ~ = + 3 0 14492953 13580415 05112609 -suffix n 1 2 @ + 1 1 06308987 -suffix_notation n 1 1 @ 1 0 06814655 -suffixation n 1 2 @ + 1 0 00927961 -suffocation n 2 3 @ ~ + 2 1 00225593 14043882 -suffragan n 1 1 @ 1 0 10672540 -suffragan_bishop n 1 1 @ 1 0 10672540 -suffrage n 1 4 @ ~ + ; 1 1 05186306 -suffragette n 1 3 @ + ; 1 0 10672662 -suffragism n 1 1 @ 1 0 05952367 -suffragist n 1 3 @ ~ + 1 0 10672908 -suffrutex n 1 2 @ ~ 1 0 13118707 -suffusion n 1 3 @ ~ + 1 0 13534954 -sufi n 1 1 @ 1 0 10672371 -sufism n 1 1 @ 1 0 05949266 -sugar n 3 3 @ ~ + 3 1 07859284 14792703 13385216 -sugar-bush n 1 1 @ 1 0 12764008 -sugar_apple n 1 2 @ #p 1 0 07761611 -sugar_beet n 2 1 @ 2 0 11833073 07720084 -sugar_bowl n 1 2 @ #m 1 1 04350581 -sugar_candy n 1 1 @ 1 0 07609215 -sugar_cane n 2 5 @ ~ #m #p %p 2 0 12132754 12132502 -sugar_cookie n 1 1 @ 1 0 07638128 -sugar_corn n 1 2 @ #p 1 0 12144742 -sugar_daddy n 1 1 @ 1 0 10673296 -sugar_loaf n 1 1 @ 1 0 07595499 -sugar_maple n 1 1 @ 1 1 12753245 -sugar_of_lead n 1 1 @ 1 0 14989243 -sugar_palm n 1 3 @ #m %s 1 0 12584715 -sugar_pea n 2 1 @ 2 0 12561038 07725789 -sugar_ray_robinson n 1 1 @ 1 0 11266279 -sugar_refinery n 1 1 @ 1 0 04350688 -sugar_shell n 1 1 @ 1 0 04350769 -sugar_snap_pea n 2 1 @ 2 0 12561169 07725888 -sugar_sorghum n 1 1 @ 1 0 12138757 -sugar_spoon n 1 1 @ 1 0 04350769 -sugar_sumac n 1 1 @ 1 0 12764008 -sugar_syrup n 1 1 @ 1 0 07859796 -sugar_water n 1 1 @ 1 0 07936093 -sugarberry n 2 2 @ #m 2 0 12409840 07746038 -sugarcane n 2 5 @ ~ #m #p %p 2 0 12132754 12132502 -sugariness n 2 2 @ + 2 0 05716577 04994727 -sugarloaf n 1 1 @ 1 0 07595499 -sugarplum n 1 1 @ 1 0 07609316 -suggester n 1 2 @ + 1 0 10673451 -suggestibility n 1 2 @ + 1 0 14534571 -suggestion n 6 3 @ ~ + 6 4 05916155 07162680 13773361 07246582 05771679 00158996 -sugi n 1 2 @ #m 1 0 11636204 -suharto n 1 1 @ 1 0 11323721 -suicide n 2 3 @ ~ + 2 1 00222485 10673669 -suicide_bomber n 1 3 @ ~ ; 1 0 10673776 -suicide_bombing n 1 1 @ 1 0 00979902 -suicide_mission n 1 1 @ 1 0 00731756 -suicide_pact n 1 1 @ 1 0 07178992 -suicide_pill n 1 1 @ 1 0 00176609 -suicide_squeeze n 1 1 @ 1 0 00564897 -suicide_squeeze_play n 1 1 @ 1 0 00564897 -suidae n 1 3 @ #m %m 1 0 02394822 -suillus n 1 3 @ #m %m 1 0 13059139 -suillus_albivelatus n 1 2 @ #m 1 0 13059298 -suisse n 1 4 @ #p %p - 1 0 09031653 -suit n 6 5 @ ~ #m + ; 6 2 04350905 01182654 10673946 07188685 07188570 04351233 -suit_of_armor n 1 3 @ ~ %p 1 0 02862048 -suit_of_armour n 1 3 @ ~ %p 1 0 02862048 -suit_of_clothes n 1 2 @ ~ 1 0 04350905 -suitability n 1 3 ! @ ~ 1 1 04715487 -suitableness n 1 4 ! @ ~ + 1 0 04715487 -suitcase n 1 2 @ ~ 1 1 02773838 -suite n 4 4 @ ~ %p ; 4 3 07047011 04351550 08429167 08007534 -suiting n 1 1 @ 1 0 04351699 -suitor n 1 2 @ ~ 1 1 10674130 -sukarno n 1 1 @ 1 0 11323849 -sukiyaki n 1 2 @ ; 1 0 07879174 -sukkoth n 1 3 @ #p ; 1 0 15161872 -suksdorfia n 1 3 @ ~ #m 1 0 12802442 -suksdorfia_violaceae n 1 2 @ #m 1 0 12802707 -sukur n 1 1 @ 1 0 06984351 -sula n 1 3 @ #m %m 1 0 02053279 -sula_bassana n 1 2 @ #m 1 0 02053425 -sulamyd n 1 2 @ ; 1 0 04351776 -sulawesi n 1 2 @ #p 1 0 08909107 -sulcus n 1 3 @ ~ ; 1 0 05223550 -sulcus_centralis n 1 2 @ #p 1 0 05223823 -sulcus_lateralis_cerebri n 1 2 @ #p 1 0 05224080 -sulfa n 1 2 @ ~ 1 0 04352070 -sulfa_drug n 1 2 @ ~ 1 0 04352070 -sulfacetamide n 1 1 @ 1 0 04351776 -sulfadiazine n 1 1 @ 1 0 04351936 -sulfamethazine n 1 1 @ 1 0 04352435 -sulfamethoxazole n 1 1 @ 1 0 04352580 -sulfamezathine n 1 1 @ 1 0 04352435 -sulfanilamide n 1 1 @ 1 0 04352759 -sulfanilic_acid n 1 1 @ 1 0 15063358 -sulfapyridine n 1 1 @ 1 0 04352906 -sulfate n 1 2 @ ~ 1 0 15063493 -sulfide n 1 3 @ ~ %s 1 0 15063699 -sulfisoxazole n 1 1 @ 1 0 04353016 -sulfonamide n 1 2 @ ~ 1 0 04352070 -sulfonate n 1 2 @ ~ 1 0 14616410 -sulfonic_acid n 1 1 @ 1 0 14616508 -sulfonylurea n 1 2 @ ~ 1 0 04353189 -sulfur n 1 4 @ ~ #s + 1 1 14656219 -sulfur_bacteria n 1 1 @ 1 0 01363288 -sulfur_bottom n 1 2 @ #m 1 0 02064816 -sulfur_butterfly n 1 2 @ #m 1 0 02281406 -sulfur_dioxide n 1 1 @ 1 0 15064053 -sulfur_hexafluoride n 1 1 @ 1 0 15064327 -sulfur_mine n 1 1 @ 1 0 04353687 -sulfur_mustard n 1 1 @ 1 0 14957270 -sulfur_oxide n 1 1 @ 1 0 15063946 -sulfur_paintbrush n 1 1 @ 1 0 12880799 -sulfuric_acid n 1 3 @ ~ %s 1 0 15093482 -sulidae n 1 3 @ #m %m 1 0 02052936 -sulindac n 1 2 @ %s 1 0 04353410 -sulk n 1 2 @ + 1 0 07551498 -sulkiness n 3 2 @ + 3 0 07551498 07549401 04642057 -sulky n 1 1 @ 1 1 04353573 -sulla n 2 2 @ #m 2 0 12534862 11324090 -sullenness n 2 2 @ + 2 0 07552367 04642057 -sullivan n 5 1 @ 5 0 11324902 11324785 11324619 11324428 11324212 -sully n 2 1 @ 2 0 11325265 11325146 -sulpha n 1 2 @ ~ 1 0 04352070 -sulphanilic_acid n 1 1 @ 1 0 15063358 -sulphate n 1 2 @ ~ 1 0 15063493 -sulphide n 1 3 @ ~ %s 1 0 15063699 -sulphonic_acid n 1 1 @ 1 0 14616508 -sulphur n 1 4 @ ~ #s + 1 0 14656219 -sulphur-crested_cockatoo n 1 1 @ 1 0 01819313 -sulphur_bacteria n 1 1 @ 1 0 01363288 -sulphur_butterfly n 1 2 @ #m 1 0 02281406 -sulphur_dioxide n 1 1 @ 1 0 15064053 -sulphur_hexafluoride n 1 1 @ 1 0 15064327 -sulphur_mine n 1 1 @ 1 0 04353687 -sulphur_oxide n 1 1 @ 1 0 15063946 -sulphuric_acid n 1 3 @ ~ %s 1 0 15093482 -sultan n 1 2 @ ~ 1 1 10674315 -sultan_of_swat n 1 1 @ 1 0 11276100 -sultana n 2 1 @ 2 0 07760395 07752782 -sultanate n 1 2 @ ~ 1 0 08896327 -sultanate_of_oman n 1 5 @ #m #p %m %p 1 0 08975106 -sultriness n 2 2 @ + 2 0 11466909 04687119 -sum n 6 3 @ ~ + 6 5 13331198 05861067 07959016 05921123 04353803 07998712 -sum-up n 1 2 @ ~ 1 0 06467007 -sum_of_money n 1 2 @ ~ 1 1 13331198 -sum_total n 1 2 @ ~ 1 0 07959016 -sumac n 2 5 @ ~ #m #s %s 2 0 12763205 12762896 -sumac_family n 1 3 @ #m %m 1 0 12758639 -sumach n 1 4 @ ~ #m %s 1 0 12762896 -sumatra n 1 4 @ #p %m %p 1 1 08908954 -sumatran n 1 3 @ #m + 1 0 09750157 -sumer n 1 5 @ #p %p + - 1 0 08918248 -sumerian n 1 2 @ + 1 0 10674471 -sumerology n 1 1 @ 1 0 06144970 -summarisation n 1 2 @ + 1 0 06467445 -summarization n 1 2 @ + 1 0 06467445 -summary n 1 3 @ ~ + 1 1 06467007 -summary_judgement n 1 2 @ ; 1 0 01190561 -summary_judgment n 1 2 @ ; 1 0 01190561 -summary_treatment n 1 1 @ 1 0 07208184 -summation n 4 4 @ ~ + ; 4 1 06469874 13563139 07959016 00872107 -summer n 2 4 @ %p + ; 2 1 15237250 15145012 -summer_camp n 1 2 @ ~ 1 0 02945594 -summer_cohosh n 1 1 @ 1 0 11728769 -summer_crookneck n 1 1 @ 1 0 07716203 -summer_cypress n 1 2 @ #m 1 0 11831874 -summer_damask_rose n 1 1 @ 1 0 12621410 -summer_duck n 1 3 @ ~ #m 1 0 01852142 -summer_flounder n 1 2 @ #m 1 0 02661618 -summer_haw n 1 2 @ #m 1 0 12627526 -summer_house n 1 1 @ 1 0 04354026 -summer_hyacinth n 1 1 @ 1 0 12458874 -summer_redbird n 1 2 @ #m 1 0 01598074 -summer_savory n 2 3 @ #p %p 2 0 12867184 07820960 -summer_savoury n 1 2 @ #p 1 0 07820960 -summer_school n 1 1 @ 1 0 15225526 -summer_snowflake n 1 1 @ 1 0 12459882 -summer_solstice n 1 3 ! @ #p 1 0 15222012 -summer_squash n 2 5 @ ~ #m #p %p 2 0 12159055 07715721 -summer_squash_vine n 1 4 @ ~ #m %p 1 0 12159055 -summer_stock n 1 1 @ 1 0 07007556 -summer_sweet n 1 1 @ 1 0 12250180 -summer_tanager n 1 2 @ #m 1 0 01598074 -summercater n 1 1 @ 1 0 10639238 -summercaters n 1 1 @ 1 0 10674592 -summerhouse n 1 2 @ ~ 1 0 03430418 -summersault n 1 2 @ ~ 1 0 00439484 -summerset n 1 2 @ ~ 1 0 00439484 -summertime n 1 2 @ %p 1 0 15237250 -summing_up n 1 2 @ ; 1 0 06469874 -summit n 3 3 @ ~ + 3 0 13940456 08617963 08312359 -summit_meeting n 1 1 @ 1 0 08312359 -summoning n 1 3 @ #p + 1 0 05978623 -summons n 3 4 @ ~ + ; 3 0 07186528 07169098 06556692 -summum_bonum n 1 1 @ 1 0 04849614 -sumner n 1 1 @ 1 0 11325419 -sumo n 1 2 @ ; 1 0 00448232 -sumo_ring n 1 1 @ 1 0 04354182 -sumo_wrestler n 1 2 @ ; 1 0 10674713 -sump n 3 1 @ 3 0 04354387 04354287 02998563 -sump_pump n 1 1 @ 1 0 04354487 -sumpsimus n 1 1 @ 1 0 07154868 -sumpter n 1 2 @ ~ 1 0 01317391 -sumptuosity n 1 2 @ + 1 0 05146471 -sumptuousness n 2 2 @ + 2 0 14492373 05146471 -sun n 5 6 @ ~ #m #p %p + 5 4 09450163 11485367 10674896 09450454 15163797 -sun-ray n 1 1 @ 1 0 11522206 -sun-ray_lamp n 1 1 @ 1 0 04356772 -sun-worship n 1 1 @ 1 0 01046348 -sun_bathing n 1 1 @ 1 0 00442759 -sun_blocker n 1 2 @ %s 1 0 04357314 -sun_city n 1 2 @ #p 1 0 09058735 -sun_dance n 1 1 @ 1 0 00542992 -sun_deck n 1 1 @ 1 0 04355267 -sun_gear n 1 2 @ #p 1 0 04355821 -sun_god n 1 1 @ 1 0 09506973 -sun_hat n 1 2 @ ~ 1 0 04356595 -sun_helmet n 1 1 @ 1 0 03950899 -sun_king n 1 1 @ 1 0 11141019 -sun_lamp n 1 1 @ 1 0 04356772 -sun_lounge n 1 1 @ 1 0 04356925 -sun_marigold n 1 2 @ #m 1 0 11961446 -sun_myung_moon n 1 1 @ 1 0 11189054 -sun_parlor n 1 1 @ 1 0 04356925 -sun_parlour n 1 1 @ 1 0 04356925 -sun_pitcher n 1 2 @ #m 1 0 12781421 -sun_plant n 1 1 @ 1 0 11857875 -sun_porch n 1 1 @ 1 0 04356925 -sun_protection_factor n 1 1 @ 1 0 05118707 -sun_river n 1 2 @ #p 1 0 09450553 -sun_rose n 1 3 @ ~ #m 1 0 12375518 -sun_spurge n 1 2 @ #m 1 0 12918609 -sun_tea n 1 1 @ 1 0 07934373 -sun_valley n 1 2 @ #p 1 0 09082273 -sun_visor n 1 1 @ 1 0 04357795 -sun_worshiper n 1 1 @ 1 0 10675258 -sun_yat-sen n 1 1 @ 1 0 11325663 -sun_yixian n 1 1 @ 1 0 11325663 -sunbather n 1 2 @ + 1 0 10675010 -sunbeam n 1 2 @ #p 1 0 11485582 -sunbelt n 1 2 @ #p 1 0 09051726 -sunberry n 1 1 @ 1 0 12896615 -sunblind n 1 1 @ 1 0 02763901 -sunblock n 1 2 @ %s 1 0 04357314 -sunbonnet n 1 1 @ 1 0 04354589 -sunburn n 2 2 @ + 2 0 14290534 14290365 -sunburst n 3 1 @ 3 0 11485264 04354828 04354723 -sunburst_pleat n 1 2 @ #p 1 0 04354966 -sunchoke n 1 1 @ 1 0 07719058 -sunda_islands n 1 3 @ #p %p 1 0 08842258 -sundacarpus n 1 3 @ #m %m 1 0 11659500 -sundacarpus_amara n 1 2 @ #m 1 0 11659627 -sundae n 1 1 @ 1 0 07616487 -sundanese n 1 1 @ 1 0 06939542 -sunday n 2 2 @ #p 2 1 15163797 11325534 -sunday_best n 1 2 @ ; 1 0 04355115 -sunday_clothes n 1 2 @ ; 1 0 04355115 -sunday_punch n 1 1 @ 1 0 00135637 -sunday_school n 1 1 @ 1 1 08412492 -sunderland n 1 2 @ #p 1 0 08880713 -sundew n 1 2 @ #m 1 0 12782530 -sundew_family n 1 3 @ #m %m 1 0 12782108 -sundew_plant n 1 2 @ #m 1 0 12782530 -sundial n 1 2 @ %p 1 1 04355338 -sundial_lupine n 1 2 @ #m 1 0 12546962 -sundog n 1 1 @ 1 0 11487732 -sundown n 1 2 @ #p 1 1 15169248 -sundowner n 2 2 @ ; 2 0 10675142 07913081 -sundress n 1 1 @ 1 0 04355511 -sundries n 1 2 @ ; 1 0 04355684 -sundrops n 1 1 @ 1 0 12344700 -sunfish n 3 5 @ ~ #m #p %p 3 0 07780307 02656670 02562315 -sunflower n 1 3 @ ~ #m 1 0 11978233 -sunflower-seed_oil n 1 2 @ #s 1 0 07675411 -sunflower_oil n 1 2 @ #s 1 0 07675411 -sunflower_seed n 1 3 @ #p %s 1 0 07775197 -sunflower_state n 1 3 @ #p %p 1 0 09087599 -sung n 1 1 @ 1 0 08158741 -sung_dynasty n 1 1 @ 1 0 08158741 -sunglass n 1 1 @ 1 0 04355933 -sunglasses n 1 3 @ %p ; 1 0 04356056 -sunhat n 1 2 @ ~ 1 0 04356595 -sunk_fence n 1 1 @ 1 0 04356423 -sunken_arch n 1 1 @ 1 0 05577060 -sunken_garden n 1 1 @ 1 0 04356306 -sunlamp n 1 1 @ 1 0 04356772 -sunlight n 1 3 @ ~ %p 1 1 11485367 -sunna n 1 2 @ ; 1 0 00416409 -sunnah n 1 2 @ ; 1 0 00416409 -sunni n 2 3 @ #m %m 2 0 09683559 08096474 -sunni_islam n 1 3 @ #m %m 1 0 08096474 -sunni_muslim n 1 2 @ #m 1 0 09683559 -sunniness n 2 5 @ ~ #p = + 2 0 04951875 04630689 -sunnite n 1 2 @ #m 1 0 09683559 -sunporch n 1 1 @ 1 0 04356925 -sunray n 3 3 @ #m #p 3 1 11485582 11964446 11522206 -sunray_lamp n 1 1 @ 1 0 04356772 -sunray_pleat n 1 2 @ #p 1 0 04354966 -sunrise n 3 2 ! @ 3 0 15168790 11517656 07343910 -sunrise_industry n 1 2 @ ; 1 0 08074691 -sunroof n 1 2 @ #p 1 0 04357121 -sunroom n 1 1 @ 1 0 04356925 -sunrose n 1 3 @ ~ #m 1 0 12375518 -sunscreen n 1 2 @ %s 1 0 04357314 -sunset n 3 3 ! @ #p 3 0 15169248 11517776 07344015 -sunshade n 2 1 @ 2 1 02763901 03889871 -sunshine n 3 5 @ ~ #p %p = 3 1 11485367 11456462 04630689 -sunshine-roof n 1 2 @ #p 1 0 04357121 -sunshine_state n 1 4 @ #m #p %p 1 0 09071690 -sunspot n 1 1 @ 1 0 11511004 -sunstone n 1 2 @ ~ 1 0 15064560 -sunstroke n 1 1 @ 1 0 14204586 -sunsuit n 1 1 @ 1 0 04357531 -suntan n 1 2 @ + 1 0 14290534 -suntrap n 1 1 @ 1 0 04357639 -sunup n 1 1 @ 1 0 15168790 -suomi n 2 5 @ #m #p %m %p 2 0 08779504 06958255 -sup n 1 2 @ + 1 0 07579276 -super n 1 1 @ 1 0 10675721 -super_acid n 1 1 @ 1 0 03606572 -super_c n 1 1 @ 1 0 03606572 -super_heavyweight n 1 1 @ 1 0 10675609 -superabundance n 1 3 @ ~ + 1 0 05119367 -superannuation n 3 2 @ + 3 0 13384341 04925577 00197229 -superannuation_fund n 1 1 @ 1 0 13360103 -superbia n 1 2 @ ~ 1 0 00758175 -superbug n 2 2 @ #m 2 0 02247950 02247655 -supercargo n 1 1 @ 1 0 10675346 -supercharger n 1 3 @ #p + 1 0 04357930 -superciliary_arch n 1 1 @ 1 0 05603475 -superciliary_ridge n 1 1 @ 1 0 05603475 -superciliousness n 1 2 @ + 1 0 04888268 -supercilium n 1 3 @ #p %p 1 0 05313535 -superclass n 1 2 @ ; 1 0 08106798 -superclass_agnatha n 1 3 @ #m %m 1 0 01473990 -superclass_chelicerata n 1 3 @ #m %m 1 0 01768402 -superclass_gnathostomata n 1 3 @ #m %m 1 0 01479643 -superclass_myriapoda n 1 2 @ #m 1 0 01782675 -supercomputer n 1 1 @ 1 0 04358117 -superconducting_supercollider n 1 1 @ 1 0 04358256 -superconductivity n 1 1 @ 1 0 11409892 -superego n 1 3 @ #p ; 1 0 05613625 -supererogation n 1 1 @ 1 0 00633613 -superfamily n 1 2 @ ; 1 0 08108304 -superfamily_aphidoidea n 1 3 @ #m %m 1 0 02252039 -superfamily_apoidea n 1 3 @ #m %m 1 0 02206624 -superfamily_coccoidea n 1 3 @ #m %m 1 0 02248147 -superfamily_hominoidea n 1 3 @ #m %m 1 0 02471072 -superfamily_lamellicornia n 1 3 @ #m %m 1 0 02171254 -superfamily_muroidea n 1 3 @ #m %m 1 0 02330830 -superfamily_muscoidea n 1 2 @ #m 1 0 02189822 -superfamily_platyrrhini n 1 3 @ #m %m 1 0 02489288 -superfamily_sphecoidea n 1 3 @ #m %m 1 0 02214972 -superfamily_tineoidea n 1 3 @ #m %m 1 0 02291024 -superfamily_tyrannidae n 1 3 @ #m %m 1 0 01547459 -superfecta n 1 1 @ 1 0 00507539 -superfecundation n 1 1 @ 1 0 07438190 -superfetation n 1 2 @ + 1 0 07438396 -superficial_epigastric_vein n 1 1 @ 1 0 05366341 -superficial_middle_cerebral_vein n 1 1 @ 1 0 05362912 -superficial_temporal_vein n 1 1 @ 1 0 05382589 -superficiality n 2 4 ! @ ~ + 2 1 05095111 05135951 -superficies n 2 3 @ + ; 2 0 04677113 04358381 -superfluity n 1 3 @ ~ + 1 0 05120116 -superfund n 1 1 @ 1 0 05900888 -superfund_program n 1 1 @ 1 0 05900888 -superfund_site n 1 2 @ ~ 1 0 08661467 -supergiant n 1 2 @ ~ 1 0 09450708 -supergrass n 1 2 @ ; 1 0 10675481 -superhet n 1 2 @ %p 1 0 03516996 -superheterodyne_receiver n 1 2 @ %p 1 0 03516996 -superhigh_frequency n 1 2 @ #p 1 0 05057917 -superhighway n 2 3 @ ~ %p 2 1 03306610 04358491 -superinfection n 1 2 @ + 1 0 14185353 -superintendence n 1 3 @ ~ + 1 0 01135529 -superintendent n 2 3 @ ~ + 2 1 10388732 10675721 -superior n 6 4 ! @ ~ #p 6 2 10676018 10675876 10752930 09333171 09158649 06820023 -superior_alveolar_artery n 1 1 @ 1 0 05335700 -superior_cerebellar_artery n 1 1 @ 1 0 05341089 -superior_cerebral_vein n 1 1 @ 1 0 05363064 -superior_colliculus n 1 2 @ #p 1 0 05500312 -superior_conjunction n 1 2 @ ; 1 0 07415561 -superior_court n 1 2 @ ; 1 0 08335751 -superior_epigastric_veins n 1 1 @ 1 0 05366485 -superior_general n 1 1 @ 1 0 10125561 -superior_labial_artery n 1 1 @ 1 0 05349273 -superior_labial_vein n 1 1 @ 1 0 05371977 -superior_mesenteric_artery n 1 1 @ 1 0 05352112 -superior_ophthalmic_vein n 1 1 @ 1 0 05375322 -superior_planet n 1 2 @ ~ 1 0 09450866 -superior_pulmonary_vein n 1 1 @ 1 0 05378654 -superior_rectus n 1 1 @ 1 0 05317013 -superior_rectus_muscle n 1 1 @ 1 0 05317013 -superior_skill n 1 2 @ ~ 1 0 05638882 -superior_thalamostriate_vein n 1 1 @ 1 0 05383216 -superior_thyroid_vein n 1 1 @ 1 0 05384128 -superior_vena_cava n 1 1 @ 1 0 05423095 -superior_vocal_cord n 1 1 @ 1 0 05530657 -superiority n 4 4 ! @ ~ + 4 3 04728376 05158619 04889000 13950440 -superiority_complex n 1 1 @ 1 0 04887790 -superlative n 3 3 @ + - 3 1 06693870 13940456 06323284 -superlative_degree n 1 1 @ 1 0 06323284 -superload n 1 1 @ 1 0 03679037 -superman n 2 1 @ 2 0 10001764 02675657 -supermarket n 1 2 @ ~ 1 1 04358707 -supermarketeer n 1 1 @ 1 0 10676214 -supermarketer n 1 1 @ 1 0 10676214 -supermex n 1 1 @ 1 0 11348812 -supermodel n 1 1 @ 1 0 10676319 -supermolecule n 1 2 @ ~ 1 0 14944888 -supermom n 1 1 @ 1 0 10676434 -supernatant n 1 2 @ + 1 0 09451103 -supernatural n 1 4 @ %m %p + 1 1 09503877 -supernatural_being n 1 3 @ ~ #m 1 0 09504135 -supernatural_virtue n 1 2 @ ~ 1 0 04847991 -supernaturalism n 2 3 @ ~ + 2 1 05952490 04789406 -supernaturalness n 1 2 @ + 1 0 04789406 -supernova n 1 2 @ ~ 1 0 09451237 -supernumerary n 2 2 @ + 2 0 10676682 10676569 -superorder n 1 2 @ ; 1 0 08107343 -superorder_acanthopterygii n 1 3 @ #m %m 1 0 02551824 -superorder_labyrinthodonta n 1 3 @ #m %m 1 0 01655577 -superorder_labyrinthodontia n 1 3 @ #m %m 1 0 01655577 -superorder_malacopterygii n 1 3 @ #m %m 1 0 01428155 -superorder_ratitae n 1 3 @ #m %m 1 0 01518170 -superordinate n 2 2 @ ~ 2 0 10676018 06292836 -superordinate_word n 1 1 @ 1 0 06292836 -superordination n 1 1 @ 1 0 13808004 -superoxide n 2 1 @ 2 0 15064917 15064729 -superoxide_anion n 1 1 @ 1 0 15064729 -superoxide_dismutase n 1 1 @ 1 0 15065025 -superpatriotism n 1 1 @ 1 0 04878646 -superphylum n 1 3 @ #m ; 1 0 08103457 -superposition n 4 3 @ + ; 4 0 13563382 05991776 01053404 01053067 -superposition_principle n 1 2 @ ; 1 0 05991776 -superpower n 1 2 @ ~ 1 0 08177592 -superscript n 1 2 ! @ 1 0 06820023 -superscription n 2 2 @ + 2 0 06406177 00615336 -supersedure n 1 2 @ + 1 0 00197419 -supersession n 1 2 @ + 1 0 00197419 -superslasher n 1 2 @ #m 1 0 01718414 -superstar n 1 2 @ ~ 1 0 09762509 -superstition n 1 2 @ + 1 1 05952678 -superstitious_notion n 1 1 @ 1 0 05952678 -superstrate n 2 1 @ 2 0 08658001 06903972 -superstratum n 2 1 @ 2 0 08658001 06903972 -superstring n 1 1 @ 1 0 09451378 -superstructure n 1 3 @ ~ #p 1 0 04358874 -supersymmetry n 1 2 @ ; 1 0 06107436 -supertanker n 1 1 @ 1 0 04359034 -supertax n 1 1 @ 1 0 13315364 -supertitle n 1 2 @ #p 1 0 06347811 -supertonic n 1 2 @ ; 1 0 06857867 -supertwister n 1 1 @ 1 0 11517041 -supervention n 1 2 @ + 1 0 07479525 -supervising n 1 3 @ ~ + 1 0 01135529 -supervision n 1 3 @ ~ + 1 1 01135529 -supervisor n 2 5 @ ~ #p %p + 2 1 10676877 06580351 -supervisor_call_instruction n 1 1 @ 1 0 06587217 -supervisory_program n 1 3 @ #p %p 1 0 06580351 -supervisory_routine n 1 2 @ #p 1 0 06584376 -supervisory_software n 1 1 @ 1 0 06588139 -supination n 1 3 ! @ + 1 0 00345297 -supinator n 1 2 @ + 1 0 05292587 -supper n 2 3 @ ~ + 2 1 07575984 08256567 -supper_club n 1 1 @ 1 0 04359124 -suppertime n 1 1 @ 1 0 15166070 -supping n 1 2 @ + 1 0 00841777 -supplanter n 1 3 @ ~ + 1 0 10742546 -supplanting n 1 2 @ + 1 0 00197610 -supplejack n 1 1 @ 1 0 04359217 -supplement n 3 4 @ ~ #p + 3 3 06399631 05110772 02671421 -supplementary_benefit n 1 2 @ ; 1 0 01087740 -supplementation n 2 2 @ + 2 0 05110772 00371846 -suppleness n 3 2 @ + 3 1 05004091 05023022 04659730 -suppliant n 1 3 @ ~ + 1 0 10420031 -supplicant n 2 3 @ ~ + 2 0 10464052 10420031 -supplication n 3 4 @ ~ #p + 3 0 07190290 07187638 01041968 -supplier n 1 3 @ ~ + 1 1 10677271 -supply n 3 4 ! @ ~ + 3 3 13777344 13563522 01057200 -supply-side_economics n 1 1 @ 1 0 06151282 -supply_chamber n 1 2 @ ~ 1 0 04359335 -supply_closet n 1 1 @ 1 1 04359500 -supply_line n 1 1 @ 1 0 08617399 -supply_officer n 1 1 @ 1 0 10677604 -supply_route n 1 1 @ 1 0 08617399 -supply_ship n 1 1 @ 1 0 04409011 -supplying n 1 3 @ ~ + 1 0 01057200 -support n 11 4 @ ~ + ; 11 10 01215902 01212519 05693919 00971463 00154433 13365286 04360501 01017320 07031752 04359589 13365698 -support_column n 1 2 @ ~ 1 0 04360798 -support_hose n 1 1 @ 1 0 04360914 -support_level n 1 2 @ ; 1 0 13305510 -support_payment n 1 2 @ ~ 1 0 13283314 -support_stocking n 1 1 @ 1 0 04360914 -support_system n 1 1 @ 1 0 08435024 -supporter n 5 3 @ ~ + 5 1 10677713 10407954 09815790 03421117 02752615 -supporters_of_islam n 1 2 @ ; 1 0 08015321 -supporting n 1 3 @ ~ + 1 1 01017320 -supporting_fire n 1 2 @ ~ 1 0 00993956 -supporting_players n 1 1 @ 1 0 08238048 -supporting_structure n 1 2 @ ~ 1 0 04361095 -supporting_tower n 1 2 @ ~ 1 0 04361260 -supposal n 2 3 @ ~ + 2 0 05892096 05779712 -supposition n 3 3 @ ~ + 3 0 06782680 05892096 05779712 -suppository n 1 1 @ 1 0 04361381 -suppressant n 1 1 @ 1 0 04361529 -suppresser n 3 3 @ ~ + 3 0 10678472 05441468 04361641 -suppresser_gene n 1 2 @ ~ 1 0 05441468 -suppression n 4 4 @ ~ + ; 4 0 13563647 01147950 01079604 01070892 -suppressive_fire n 1 1 @ 1 0 00994144 -suppressor n 3 3 @ ~ + 3 0 10678472 05441468 04361641 -suppressor_gene n 1 2 @ ~ 1 0 05441468 -suppurating_sore n 1 1 @ 1 0 14184254 -suppuration n 2 4 @ ~ + ; 2 0 13479889 05417472 -supra_expressionism n 1 1 @ 1 1 08467757 -suprainfection n 1 1 @ 1 0 14185503 -supraorbital_ridge n 1 1 @ 1 0 05603475 -supraorbital_torus n 1 1 @ 1 0 05603475 -supraorbital_vein n 1 1 @ 1 0 05381779 -suprarenal_gland n 1 3 @ #p %p 1 0 05331171 -suprarenalectomy n 1 1 @ 1 0 00666107 -supratrochlear_vein n 1 1 @ 1 0 05381956 -supremacism n 1 1 @ 1 0 05952829 -supremacist n 1 3 @ ~ + 1 0 10678662 -supremacy n 1 3 @ ~ + 1 1 14442530 -suprematism n 1 1 @ 1 0 08466010 -suprematist n 1 1 @ 1 0 10678841 -supreme_allied_commander_atlantic n 1 2 @ #m 1 0 08175233 -supreme_allied_commander_europe n 1 2 @ #m 1 0 08175700 -supreme_authority n 1 1 @ 1 0 09804053 -supreme_being n 1 2 @ ~ 1 0 09536058 -supreme_court n 2 3 @ #m ; 2 1 08335886 08336188 -supreme_court_of_the_united_states n 1 3 @ #m ; 1 0 08335886 -supreme_headquarters n 1 3 @ ~ ; 1 0 08405267 -supreme_headquarters_allied_powers_europe n 1 2 @ #p 1 0 08174167 -supreme_truth n 1 2 @ ; 1 0 08017614 -supremo n 1 2 @ ; 1 0 10678937 -sur n 1 2 @ #p 1 0 08958334 -sura n 2 4 @ ~ #p %p 2 0 06461830 05574332 -surbase n 1 1 @ 1 0 04361801 -surcease n 1 2 @ ~ 1 0 07362075 -surcharge n 1 3 @ ~ + 1 0 13325505 -surcoat n 2 1 @ 2 0 04363777 04361937 -surd n 1 1 @ 1 0 07119897 -sure_thing n 1 3 @ ~ = 1 0 04753455 -sureness n 2 3 @ = + 2 0 05697363 04778267 -surety n 5 2 @ ~ 5 1 04754780 13349395 10187557 10149527 06685754 -surety_bond n 1 1 @ 1 0 13338960 -surf n 1 2 @ + 1 1 07344233 -surf_casting n 1 1 @ 1 0 00455173 -surf_fish n 2 3 @ ~ #m 2 0 02597004 02570838 -surf_fishing n 1 1 @ 1 0 00455173 -surface n 6 5 @ ~ #p %p + 6 5 04362025 08660339 09451517 05853449 05612809 02688443 -surface-active_agent n 1 2 @ ~ 1 1 15096783 -surface-to-air_missile n 1 3 @ ~ #p 1 0 04363210 -surface-to-air_missile_system n 1 2 @ %p 1 0 04363412 -surface_area n 1 2 @ ~ 1 1 05128519 -surface_assimilation n 1 2 @ ~ 1 0 13427789 -surface_chemistry n 1 1 @ 1 0 06090678 -surface_fire n 1 1 @ 1 0 07304630 -surface_gage n 1 1 @ 1 0 04362624 -surface_gauge n 1 1 @ 1 0 04362624 -surface_lift n 1 2 @ ~ 1 0 04362821 -surface_mail n 1 2 ! @ 1 0 06623207 -surface_noise n 1 1 @ 1 1 07430964 -surface_search_radar n 1 1 @ 1 0 04362972 -surface_ship n 1 2 ! @ 1 0 04363082 -surface_soil n 1 1 @ 1 0 14695737 -surface_tension n 1 2 @ ~ 1 1 11517999 -surfacing n 1 2 @ + 1 0 00061171 -surfactant n 1 2 @ ~ 1 1 15096783 -surfbird n 1 2 @ #m 1 0 02026629 -surfboard n 1 2 @ + 1 0 04363559 -surfboarder n 1 1 @ 1 0 10679054 -surfboarding n 1 1 @ 1 0 00445055 -surfboat n 1 1 @ 1 0 04363671 -surfeit n 3 2 @ + 3 0 14452294 05119837 00841628 -surfer n 1 2 @ + 1 0 10679054 -surffish n 2 3 @ ~ #m 2 0 02597004 02570838 -surfing n 1 2 @ + 1 0 00445055 -surfperch n 1 3 @ ~ #m 1 0 02570838 -surfriding n 1 1 @ 1 0 00445055 -surge n 3 3 @ ~ + 3 2 07440240 00364787 07348545 -surge_protector n 1 1 @ 1 0 04364160 -surge_suppressor n 1 1 @ 1 0 04364160 -surgeon n 1 2 @ ~ 1 1 10679174 -surgeon's_knot n 1 1 @ 1 0 04363874 -surgeon_general n 2 1 @ 2 0 10679610 10679503 -surgeonfish n 1 3 @ ~ #m 1 0 02621258 -surgery n 4 6 @ ~ %p + ; - 4 0 06063588 04363991 03850245 00671351 -surgical_contraception n 1 2 @ ~ 1 0 00853487 -surgical_dressing n 1 2 @ %p 1 0 04364397 -surgical_gown n 1 1 @ 1 0 03450734 -surgical_incision n 1 3 @ ~ #p 1 0 00678010 -surgical_instrument n 1 2 @ ~ 1 0 04364545 -surgical_knife n 1 2 @ ~ 1 0 04364827 -surgical_operation n 1 5 @ ~ %p ; - 1 0 00671351 -surgical_procedure n 1 5 @ ~ %p ; - 1 0 00671351 -surgical_process n 1 5 @ ~ %p ; - 1 0 00671351 -surgical_seam n 1 1 @ 1 0 04367371 -surgical_spirit n 1 2 @ ; 1 0 15065280 -surgical_strike n 1 1 @ 1 0 00977857 -suricata n 1 3 @ #m %m 1 0 02138323 -suricata_suricatta n 1 1 @ 1 0 02138647 -suricata_tetradactyla n 1 1 @ 1 0 02138777 -suricate n 1 1 @ 1 0 02138777 -surinam n 1 4 @ #m #p %p 1 0 09030752 -surinam_cherry n 3 4 @ #m #p %p 3 0 12694486 12332030 07746334 -surinam_river n 1 2 @ #p 1 0 09451864 -surinam_toad n 1 1 @ 1 0 01654083 -suriname n 1 4 @ #m #p %p 1 0 09030752 -suriname_river n 1 2 @ #p 1 0 09451864 -surinamese_monetary_unit n 1 2 @ ~ 1 0 13680032 -surliness n 1 3 @ ~ + 1 0 04642258 -surmisal n 1 3 @ ~ + 1 0 06782680 -surmise n 1 3 @ ~ + 1 1 06782680 -surmontil n 1 1 @ 1 0 04483399 -surmounter n 1 1 @ 1 0 10668450 -surmullet n 1 3 @ ~ #m 1 0 02600298 -surname n 1 2 @ ~ 1 0 06336904 -surnia n 1 3 @ #m %m 1 0 01624406 -surnia_ulula n 1 2 @ #m 1 0 01624537 -surplice n 1 1 @ 1 0 04364994 -surplus n 1 1 @ 1 1 05119714 -surplusage n 1 1 @ 1 0 05119714 -surprint n 1 1 @ 1 0 03865704 -surprisal n 1 2 @ + 1 0 00553655 -surprise n 3 3 @ ~ + 3 2 07510348 07298154 00553655 -surprise_attack n 1 2 @ ~ 1 0 01246541 -surpriser n 1 2 @ + 1 0 10679723 -surprisingness n 1 2 @ + 1 0 04796725 -surrealism n 1 3 @ %m + 1 0 08470210 -surrealist n 1 3 @ #m + 1 0 10679845 -surrebuttal n 1 2 @ ; 1 0 06563640 -surrebutter n 1 2 @ ; 1 0 06563640 -surrejoinder n 1 2 @ ; 1 0 06563801 -surrender n 4 3 @ ~ + 4 2 07542433 07255027 00213343 00067707 -surrenderer n 1 2 @ + 1 0 10679998 -surrey n 2 3 @ #m #p 2 0 08884961 04365112 -surrogate n 2 2 @ ~ 2 0 10680153 10005721 -surrogate_mother n 1 1 @ 1 0 10680370 -surround n 1 3 @ ~ + 1 0 08567235 -surroundings n 2 3 @ ~ + 2 2 14513944 08567235 -sursum_corda n 1 2 @ ; 1 0 06385434 -surtax n 1 2 @ + 1 0 13315364 -surtitle n 1 2 @ #p 1 0 06347811 -surtout n 1 1 @ 1 0 04365229 -surveillance n 1 2 @ ~ 1 1 00652466 -surveillance_of_disease n 1 1 @ 1 0 00881035 -surveillance_system n 1 1 @ 1 0 04365328 -survey n 3 3 @ ~ + 3 3 00644503 06469694 00881649 -survey_mile n 1 1 @ 1 0 13656345 -surveying n 1 3 @ ~ + 1 1 01005579 -surveying_instrument n 1 3 @ ~ %p 1 0 04365484 -surveyor n 2 3 @ ~ + 2 1 10680609 10680796 -surveyor's_instrument n 1 3 @ ~ %p 1 0 04365484 -surveyor's_level n 1 3 @ ~ %p 1 0 04365751 -survival n 3 3 @ ~ + 3 1 13962166 13563746 01022178 -survival_of_the_fittest n 1 1 @ 1 0 13563746 -survivalist n 1 1 @ 1 0 10680910 -survivor n 3 2 @ + 3 3 10681194 10681060 01324142 -survivor_guilt n 1 2 @ #p 1 0 07536437 -survivors_insurance n 1 1 @ 1 0 01088656 -survivorship_annuity n 1 1 @ 1 0 13295183 -surya n 1 1 @ 1 0 09529201 -sus n 1 3 @ #m %m 1 0 02395244 -sus_scrofa n 2 5 @ ~ #m %s %p 2 0 02396427 02395406 -susa n 1 2 @ #p 1 0 09038439 -susah n 1 2 @ #p 1 0 09038439 -susan_anthony n 1 1 @ 1 0 10819134 -susan_b._anthony n 1 1 @ 1 0 10819134 -susan_b_anthony_dollar n 1 1 @ 1 0 13392156 -susan_brownell_anthony n 1 1 @ 1 0 10819134 -susan_sontag n 1 1 @ 1 0 11308520 -susanna n 1 2 @ #p 1 0 06459016 -susceptibility n 1 5 ! @ ~ = + 1 1 14530061 -susceptibleness n 1 4 @ ~ = + 1 0 14530061 -sushi n 1 2 @ ; 1 1 07879450 -sushi_bar n 1 1 @ 1 0 04366033 -susian n 1 1 @ 1 0 06968454 -susiana n 1 1 @ 1 0 08913242 -suslik n 1 1 @ 1 0 02358584 -suspect n 2 4 @ ~ + ; 2 1 10681383 09762101 -suspended_animation n 1 2 @ ~ 1 1 14063089 -suspender n 1 4 @ %p + ; 1 0 02887489 -suspender_belt n 1 1 @ 1 0 03421324 -suspense n 3 1 @ 3 2 07522632 05699770 07511238 -suspense_account n 1 1 @ 1 0 13408776 -suspension n 7 5 @ ~ #p %p + 7 1 14591091 15271008 14010636 07368256 04366116 01017701 00209132 -suspension_bridge n 1 3 @ ~ %p 1 1 04366367 -suspension_point n 1 2 @ ; 1 0 06843838 -suspension_system n 1 3 @ #p %p 1 0 04366116 -suspensor n 1 1 @ 1 0 02752615 -suspensory n 1 1 @ 1 0 04366832 -suspensory_bandage n 1 1 @ 1 0 04366832 -suspicion n 4 3 @ ~ + 4 2 05919034 05698791 13982839 04895979 -suspiciousness n 1 2 @ + 1 0 04895979 -suspiration n 1 2 @ + 1 0 07129602 -susquehanna n 1 2 @ #p 1 0 09452017 -susquehanna_river n 1 2 @ #p 1 0 09452017 -sussex n 1 2 @ #p 1 0 08886432 -sussex_spaniel n 1 1 @ 1 0 02102480 -sussex_university n 1 2 @ #p 1 0 04512783 -sustainability n 1 2 @ + 1 0 05029594 -sustainer n 1 2 @ + 1 0 10740219 -sustaining_pedal n 1 2 @ #p 1 0 04367011 -sustaining_program n 1 1 @ 1 0 06621917 -sustainment n 1 2 @ + 1 0 01216191 -sustenance n 3 3 @ ~ + 3 1 07570720 13365286 01216191 -sustentation n 1 2 @ + 1 0 01216191 -susurration n 2 3 @ ~ + 2 0 07396233 07130341 -susurrus n 1 2 @ + 1 0 07396233 -sutherland n 1 1 @ 1 0 11325867 -sutler n 1 1 @ 1 0 10681557 -sutra n 1 1 @ 1 0 06623997 -suttee n 1 1 @ 1 0 00223575 -sutura n 1 2 @ ~ 1 0 05542893 -sutura_coronalis n 1 2 @ #p 1 0 05543917 -sutura_frontalis n 1 2 @ #p 1 0 05544078 -sutura_intermaxillaris n 1 2 @ #p 1 0 05544264 -sutura_internasalis n 1 2 @ #p 1 0 05544432 -sutura_lamboidea n 1 2 @ #p 1 0 05544575 -sutura_sagittalis n 1 2 @ #p 1 0 05545047 -sutural_bone n 1 1 @ 1 0 05610919 -suture n 3 4 @ ~ %s + 3 0 05542893 04367371 04367205 -suturing n 1 3 @ #p + 1 0 00716055 -suv n 1 1 @ 1 0 04285965 -suva n 1 2 @ #p 1 0 08779375 -suzerain n 1 1 @ 1 0 08170535 -suzerainty n 2 1 @ 2 0 14443786 08558882 -svalbard n 1 3 @ #p %p 1 0 08764561 -svante_august_arrhenius n 1 1 @ 1 0 10824352 -svedberg n 1 1 @ 1 0 11326591 -svengali n 2 1 @ 2 0 10681891 10681748 -sverdrup n 1 1 @ 1 0 11326008 -sverige n 1 4 @ #m %m %p 1 0 08765890 -svizzera n 1 4 @ #p %p - 1 0 09031653 -svoboda n 1 2 @ ; 1 0 13996211 -svr n 1 2 @ ; 1 0 08343905 -sw n 1 1 @ 1 0 13833886 -swab n 2 4 @ ~ %p + 2 0 04367746 04367480 -swabbing n 1 2 @ + 1 0 00252020 -swad n 1 2 @ ; 1 1 07960666 -swaddling_bands n 1 2 @ ; 1 0 04367950 -swaddling_clothes n 2 2 @ ; 2 0 04367950 01149793 -swag n 3 3 @ %p ; 3 0 13371190 13262663 04368109 -swage n 1 1 @ 1 0 04515444 -swage_block n 1 1 @ 1 0 04368235 -swagger n 2 3 @ + ; 2 0 10682169 00290125 -swagger_stick n 1 1 @ 1 0 04368365 -swaggerer n 1 2 @ + 1 0 10682038 -swaggie n 1 2 @ ; 1 0 10682169 -swagman n 1 2 @ ; 1 0 10682169 -swahili n 1 2 @ - 1 1 06995792 -swain n 1 1 @ 1 0 09871364 -swainsona n 1 3 @ #m %m 1 0 11751598 -swainsona_galegifolia n 1 1 @ 1 0 11751974 -swainsona_grandiflora n 1 1 @ 1 0 11752168 -swainsona_greyana n 1 1 @ 1 0 11752168 -swale n 1 1 @ 1 0 09452291 -swallow n 3 3 @ ~ + 3 2 07579276 00839778 01594372 -swallow-tailed_coat n 1 2 @ #p 1 0 04368496 -swallow-tailed_hawk n 1 2 @ #m 1 0 01609062 -swallow-tailed_kite n 1 2 @ #m 1 0 01609062 -swallow_dive n 1 1 @ 1 0 00444490 -swallow_hole n 1 1 @ 1 0 09435739 -swallow_shrike n 1 2 @ #m 1 0 01597022 -swallow_wort n 1 2 @ #m 1 0 11903671 -swallowtail n 1 2 @ #p 1 0 04368496 -swallowwort n 2 2 @ #m 2 0 13234293 11903671 -swami n 1 1 @ 1 1 09684901 -swammerdam n 1 1 @ 1 0 11326154 -swamp n 2 3 @ ~ + 2 1 09452395 13938296 -swamp_ash n 1 1 @ 1 0 12304286 -swamp_azalea n 1 1 @ 1 0 12244819 -swamp_bay n 1 1 @ 1 0 11711764 -swamp_birch n 1 2 @ #m 1 0 12283542 -swamp_blackberry n 1 1 @ 1 0 12655605 -swamp_blueberry n 1 2 @ %p 1 0 12247664 -swamp_buggy n 1 1 @ 1 0 04368695 -swamp_candleberry n 1 1 @ 1 0 11741797 -swamp_candles n 1 1 @ 1 0 12095934 -swamp_chestnut_oak n 1 1 @ 1 0 12275131 -swamp_cottonwood n 1 1 @ 1 0 12733428 -swamp_cypress n 1 2 @ #m 1 0 11641963 -swamp_dewberry n 1 1 @ 1 0 12655605 -swamp_fever n 1 2 @ ~ 1 0 14273365 -swamp_fly_honeysuckle n 1 1 @ 1 0 12677331 -swamp_gum n 1 1 @ 1 0 12338034 -swamp_hare n 1 2 @ #m 1 0 02325884 -swamp_hickory n 1 2 @ #m 1 0 12320806 -swamp_honeysuckle n 1 1 @ 1 0 12244819 -swamp_horsetail n 1 1 @ 1 0 13219976 -swamp_laurel n 2 1 @ 2 0 12237855 11711764 -swamp_lily n 1 2 @ #m 1 0 13151975 -swamp_locust n 1 2 @ #m 1 0 12495670 -swamp_mallow n 1 1 @ 1 0 12178896 -swamp_maple n 1 1 @ 1 0 12753573 -swamp_milkweed n 1 1 @ 1 0 13234678 -swamp_oak n 3 2 @ #m 3 0 12579404 12276872 12270460 -swamp_pine n 1 1 @ 1 0 11615812 -swamp_plant n 1 2 @ ~ 1 0 13122364 -swamp_poplar n 1 1 @ 1 0 12733428 -swamp_rabbit n 2 2 @ #m 2 0 02326074 02325884 -swamp_red_oak n 1 1 @ 1 0 12271933 -swamp_rose_mallow n 1 1 @ 1 0 12178896 -swamp_sparrow n 1 2 @ #m 1 0 01536780 -swamp_sunflower n 1 1 @ 1 0 11978551 -swamp_white_oak n 1 1 @ 1 0 12270460 -swamp_willow n 1 2 @ #m 1 0 12729315 -swamphen n 1 3 @ ~ #m 1 0 02016358 -swampland n 1 2 @ ~ 1 0 09452395 -swampy_beggar-ticks n 1 1 @ 1 0 11940915 -swan n 1 4 @ ~ #m %p 1 1 01858441 -swan's_down n 2 2 @ #p 2 0 04368840 01897053 -swan-flower n 1 2 @ #m 1 0 12055073 -swan-neck n 1 2 @ #m 1 0 12055073 -swan_dive n 1 1 @ 1 0 00444490 -swan_orchid n 1 2 @ #m 1 0 12055073 -swan_river_daisy n 1 2 @ #m 1 0 11941924 -swan_river_everlasting n 1 2 @ #m 1 0 12007766 -swan_song n 1 1 @ 1 0 00212678 -swanflower n 1 2 @ #m 1 0 12055073 -swank n 1 3 @ ~ + 1 0 04813712 -swanneck n 1 2 @ #m 1 0 12055073 -swansea n 1 2 @ #p 1 0 08895771 -swanson n 1 1 @ 1 0 11326433 -swap n 1 3 @ ~ + 1 0 01109687 -swap_file n 1 1 @ 1 0 08556266 -swap_space n 1 1 @ 1 0 08556266 -sward n 1 2 @ ~ 1 1 09463919 -swarm n 2 4 @ ~ %m + 2 2 08184217 07996149 -swarthiness n 1 2 @ + 1 0 04978216 -swash n 1 2 @ + 1 1 07344528 -swashbuckler n 1 2 @ ~ 1 1 09991530 -swashbuckling n 1 1 @ 1 0 04898334 -swastika n 1 2 @ ; 1 0 06883725 -swat n 1 2 @ + 1 0 00134391 -swat_squad n 1 1 @ 1 0 08274126 -swat_team n 1 1 @ 1 0 08274126 -swatch n 1 1 @ 1 1 04368949 -swath n 2 1 @ 2 0 13778907 09452653 -swathe n 1 2 @ + 1 0 04369025 -swathing n 1 2 @ + 1 1 04369146 -swatter n 1 2 @ + 1 0 04369282 -sway n 2 2 @ + 2 1 05194043 00348008 -swayer n 1 2 @ ~ 1 0 10541229 -swazi n 2 2 @ #m 2 0 09732293 06994608 -swaziland n 1 4 @ #p %m %p 1 0 09031233 -swaziland_monetary_unit n 1 2 @ ~ 1 0 13686023 -swbs n 1 1 @ 1 0 13833760 -swbw n 1 1 @ 1 0 13834038 -swearer n 2 2 @ + 2 0 10682501 10682380 -swearing n 2 2 @ + 2 1 07125096 06684572 -swearword n 1 1 @ 1 0 07125096 -sweat n 4 4 @ ~ %s + 4 1 05405751 14403560 11446459 00621627 -sweat_bag n 1 1 @ 1 1 04369485 -sweat_duct n 1 1 @ 1 0 05330518 -sweat_equity n 1 1 @ 1 0 13333546 -sweat_gland n 1 3 @ ~ #p 1 1 05330659 -sweat_pants n 1 3 @ #p ; 1 0 04370288 -sweat_room n 1 1 @ 1 0 04139395 -sweat_sock n 1 1 @ 1 0 02752496 -sweat_suit n 1 2 @ %p 1 1 04370774 -sweatband n 2 1 @ 2 1 04369618 04369732 -sweatbox n 2 1 @ 2 0 04369973 04369856 -sweater n 2 4 @ ~ %p + 2 1 04370048 10418735 -sweater_girl n 1 1 @ 1 0 10682599 -sweating n 1 3 @ ~ + 1 0 13535261 -sweating_sickness n 2 1 @ 2 0 14275978 14143239 -sweatpants n 1 3 @ #p ; 1 0 04370288 -sweats n 1 2 @ %p 1 0 04370774 -sweatshirt n 1 2 @ #p 1 1 04370456 -sweatshop n 1 1 @ 1 0 04370600 -sweatsuit n 1 2 @ %p 1 0 04370774 -swede n 3 4 @ #m #p %p 3 1 09732441 11877860 07736087 -sweden n 1 4 @ #m %m %p 1 1 08765890 -swedenborg n 1 1 @ 1 0 11326591 -swedish n 1 1 @ 1 0 06954925 -swedish_iron n 1 1 @ 1 0 15065483 -swedish_krona n 1 2 @ %p 1 0 13682330 -swedish_massage n 1 1 @ 1 0 00660173 -swedish_meatball n 1 1 @ 1 0 07871720 -swedish_mile n 1 1 @ 1 0 13655262 -swedish_monetary_unit n 1 2 @ ~ 1 0 13682221 -swedish_nightingale n 1 1 @ 1 0 11132768 -swedish_rye n 1 1 @ 1 0 07686299 -swedish_rye_bread n 1 1 @ 1 0 07686299 -swedish_turnip n 2 4 @ #m #p %p 2 0 11877860 07736087 -sweeney_todd n 1 1 @ 1 0 10714317 -sweep n 6 5 @ ~ #p + ; 6 1 05127959 09919061 07474645 04370955 00559555 00345149 -sweep-second n 1 1 @ 1 0 04371050 -sweep_hand n 1 1 @ 1 0 04371050 -sweep_oar n 1 1 @ 1 0 04370955 -sweeper n 3 3 @ #m + 3 0 10682713 02967782 02603862 -sweeping n 1 2 @ + 1 1 00252307 -sweepstakes n 1 2 @ ; 1 0 00508800 -sweet n 5 2 @ ~ 5 0 11326730 07609840 07596684 05716577 04994413 -sweet-birch_oil n 1 2 @ #s 1 0 14952441 -sweet-potato_ring_rot n 1 1 @ 1 0 14282384 -sweet-potato_whitefly n 1 3 @ ~ #m 1 0 02247511 -sweet-scented_geranium n 1 2 @ #m 1 0 12687462 -sweet_acacia n 1 2 @ #m 1 0 11757851 -sweet_alison n 1 2 @ #m 1 0 11891175 -sweet_almond n 1 3 @ ~ %p 1 0 12645174 -sweet_almond_oil n 1 1 @ 1 0 12645754 -sweet_alyssum n 1 2 @ #m 1 0 11891175 -sweet_balm n 1 3 @ #m %p 1 0 12854600 -sweet_basil n 2 3 @ #p %p 2 0 12860542 07816164 -sweet_bay n 1 1 @ 1 0 11711764 -sweet_bells n 1 2 @ #m 1 0 12240150 -sweet_birch n 1 2 @ #m 1 0 12283147 -sweet_buckeye n 1 1 @ 1 0 12768809 -sweet_calabash n 2 3 @ #p %p 2 0 12384680 07754155 -sweet_calamus n 1 4 @ #m %s %p 1 0 11780930 -sweet_cassava n 1 1 @ 1 0 12927194 -sweet_cherry n 2 4 @ ~ #p %p 2 0 12642200 07757312 -sweet_chestnut n 1 1 @ 1 0 12263204 -sweet_cicely n 3 5 @ #m #s #p %p 3 0 12940609 12692875 07821404 -sweet_cider n 1 2 @ ~ 1 0 07921948 -sweet_clover n 1 3 @ ~ #m 1 1 11750989 -sweet_coltsfoot n 2 2 @ #m 2 0 12002826 12002651 -sweet_corn n 2 2 @ #p 2 0 12144742 07732168 -sweet_corn_plant n 1 2 @ #p 1 0 12144742 -sweet_cup n 1 2 @ #p 1 0 07754279 -sweet_elder n 1 2 @ %p 1 0 12678548 -sweet_false_chamomile n 1 2 @ #m 1 0 11995092 -sweet_fanny_adams n 1 2 @ ; 1 0 13740765 -sweet_fern n 2 2 @ #m 2 0 13173882 11742310 -sweet_flag n 1 4 @ #m %s %p 1 0 11780930 -sweet_four_o'clock n 1 1 @ 1 0 11840246 -sweet_gale n 1 2 @ #m 1 0 11741175 -sweet_goldenrod n 1 1 @ 1 0 12017326 -sweet_granadilla n 1 2 @ %p 1 0 12383894 -sweet_grass n 1 3 @ ~ #m 1 0 12122245 -sweet_gum n 3 4 @ #m #s %s 3 0 12316982 12316853 12316572 -sweet_gum_tree n 1 3 @ #m %s 1 0 12316572 -sweet_lemon n 1 1 @ 1 0 12711817 -sweet_lime n 1 1 @ 1 0 12711817 -sweet_marjoram n 1 2 @ #m 1 0 12853482 -sweet_melon n 2 5 @ ~ #m #p %p 2 0 12164363 07755707 -sweet_melon_vine n 1 4 @ ~ #m %p 1 0 12164363 -sweet_nothings n 1 1 @ 1 1 07137461 -sweet_oil n 1 1 @ 1 0 07673872 -sweet_orange n 2 5 @ ~ #m #p %p 2 1 07748912 12710693 -sweet_orange_tree n 1 3 @ #m %p 1 0 12710693 -sweet_pea n 1 2 @ #m 1 0 12540800 -sweet_pepper n 2 6 @ ~ #m #p %s %p 2 0 12901264 07720615 -sweet_pepper_plant n 1 4 @ #m %s %p 1 0 12901264 -sweet_pepperbush n 1 1 @ 1 0 12250180 -sweet_pickle n 1 2 @ ~ 1 0 07825717 -sweet_potato n 3 4 @ ~ #p %p 3 0 12827684 07712063 03840681 -sweet_potato_vine n 1 2 @ %p 1 0 12827684 -sweet_reseda n 1 2 @ #m 1 0 12385566 -sweet_rocket n 1 2 @ #m 1 0 11888800 -sweet_roll n 1 2 @ ~ 1 1 07692614 -sweet_sand_verbena n 2 1 @ 2 0 11837204 11837020 -sweet_scabious n 1 1 @ 1 0 12683571 -sweet_shrub n 1 1 @ 1 1 11701066 -sweet_sorghum n 1 1 @ 1 0 12138757 -sweet_sultan n 3 2 @ #m 3 0 11955532 11948469 11918808 -sweet_talk n 1 1 @ 1 0 06696025 -sweet_talker n 1 1 @ 1 0 10615179 -sweet_tooth n 1 1 @ 1 0 07486055 -sweet_unicorn_plant n 1 2 @ #m 1 0 12875861 -sweet_vermouth n 1 2 @ #s 1 0 07899292 -sweet_vetch n 1 2 @ #m 1 0 12534625 -sweet_violet n 1 1 @ 1 0 12389317 -sweet_wattle n 1 2 @ #m 1 0 11757851 -sweet_white_violet n 1 1 @ 1 0 12388444 -sweet_william n 1 1 @ 1 0 11808299 -sweet_woodruff n 2 4 @ #s #p %p 2 0 12665271 07821260 -sweet_wormwood n 1 2 @ #m 1 0 11929743 -sweetbread n 1 1 @ 1 0 07652488 -sweetbreads n 1 1 @ 1 0 07652488 -sweetbriar n 1 1 @ 1 0 12621619 -sweetbrier n 1 1 @ 1 0 12621619 -sweetener n 2 3 @ ~ + 2 0 07858595 05695232 -sweetening n 3 3 @ ~ + 3 0 07858595 00265992 00248636 -sweetheart n 3 2 @ ~ 3 2 10682953 10682850 10613996 -sweetie n 1 2 @ ~ 1 0 10682953 -sweetleaf n 1 2 @ #m 1 0 12776558 -sweetleaf_family n 1 3 @ #m %m 1 0 12776212 -sweetmeat n 1 1 @ 1 0 07597263 -sweetness n 4 4 @ ~ = + 4 1 05716577 04994413 04980463 04778630 -sweetness_and_light n 1 1 @ 1 0 04656598 -sweetpea n 1 2 @ #m 1 0 12540800 -sweetsop n 2 3 @ #p %p 2 0 11695085 07761611 -sweetsop_tree n 1 2 @ %p 1 0 11695085 -sweetwood_bark n 1 2 @ #p 1 0 12923257 -swell n 4 2 @ ~ 4 3 07348258 09452760 04990692 09991026 -swelled_head n 1 2 @ ~ 1 0 04887497 -swellhead n 1 2 @ ~ 1 0 10047459 -swelling n 3 3 @ ~ + 3 1 14315192 13894434 13501548 -swertia n 1 3 @ #m %m 1 0 12298783 -swertia_perennia n 1 2 @ #m 1 0 12298958 -swertia_speciosa n 1 2 @ #m 1 0 12293180 -swerve n 2 2 @ + 2 1 01263257 07411350 -swerving n 1 2 @ + 1 0 01263257 -swietinia n 1 3 @ #m %m 1 0 12699778 -swietinia_macrophylla n 1 1 @ 1 0 12700088 -swietinia_mahogani n 1 2 @ #m 1 0 12699922 -swift n 4 4 @ ~ #m + 4 0 11326999 11326869 01832167 01680655 -swiftlet n 1 3 @ #m + 1 0 01833112 -swiftness n 1 4 @ ~ = + 1 0 05058140 -swig n 1 2 @ + 1 1 00840189 -swill n 1 2 @ + 1 0 07805006 -swilling n 1 2 @ + 1 0 00843325 -swim n 1 3 @ ~ + 1 0 00442115 -swim_bladder n 1 1 @ 1 0 02467581 -swim_meet n 1 2 @ %p 1 0 07468534 -swimmer n 2 3 @ ~ + 2 0 10683349 10683126 -swimmer's_itch n 1 2 @ ; 1 0 14224547 -swimmeret n 1 2 @ #p 1 0 02585446 -swimming n 1 3 @ ~ + 1 1 00442115 -swimming_bath n 1 2 @ #p 1 0 04371225 -swimming_cap n 1 1 @ 1 0 02807133 -swimming_costume n 1 2 @ ~ 1 0 04371563 -swimming_crab n 1 3 @ ~ #m 1 0 01978930 -swimming_event n 1 2 @ #p 1 0 07470545 -swimming_hole n 1 1 @ 1 1 09452866 -swimming_kick n 1 3 @ ~ #p 1 0 00574227 -swimming_meet n 1 2 @ %p 1 0 07468534 -swimming_pool n 1 2 @ #p 1 1 04371225 -swimming_stroke n 1 3 @ ~ %p 1 0 00570066 -swimming_trunks n 1 2 @ ; 1 1 04371430 -swimsuit n 1 2 @ ~ 1 1 04371563 -swimwear n 1 2 @ ~ 1 0 04371563 -swinburne n 1 1 @ 1 0 11327163 -swindle n 1 3 @ ~ + 1 0 00780148 -swindler n 1 3 @ ~ + 1 0 09955015 -swine n 1 3 @ ~ #m 1 0 02395003 -swine_flu n 1 1 @ 1 0 14122813 -swine_influenza n 1 1 @ 1 0 14122813 -swineherd n 1 1 @ 1 0 10683593 -swing n 9 4 @ ~ #p + 9 4 14009946 04371774 01173660 00327824 07066042 04992008 00571609 00571444 00541178 -swing_door n 1 3 @ ~ %p 1 0 04371979 -swing_music n 1 1 @ 1 0 07066042 -swing_shift n 1 1 @ 1 0 15292829 -swing_voter n 1 1 @ 1 0 10683927 -swinger n 2 2 @ + 2 0 10683801 10683675 -swinging n 1 2 @ + 1 0 00327824 -swinging_chad n 1 1 @ 1 0 15065584 -swinging_door n 1 3 @ ~ %p 1 1 04371979 -swinging_post n 1 1 @ 1 0 03521431 -swingletree n 1 1 @ 1 0 04577567 -swipe n 1 2 @ + 1 0 00566040 -swirl n 1 2 @ + 1 1 13878112 -swish n 1 2 @ + 1 0 07396414 -swiss n 1 2 @ ~ 1 1 09733333 -swiss_canton n 1 3 @ ~ #p 1 0 09032191 -swiss_chard n 2 3 @ #p %p 2 0 11832671 07720277 -swiss_cheese n 1 2 @ ~ 1 0 07854813 -swiss_confederation n 1 4 @ #p %p - 1 0 09031653 -swiss_franc n 1 2 @ %p 1 0 13678816 -swiss_mountain_pine n 1 1 @ 1 0 11612349 -swiss_people n 1 2 @ ~ 1 0 09733333 -swiss_pine n 1 2 @ %p 1 0 11612018 -swiss_roll n 1 1 @ 1 0 07632357 -swiss_steak n 1 1 @ 1 0 07879560 -swiss_stone_pine n 1 2 @ %p 1 0 11612018 -switch n 7 3 @ ~ + 7 2 04372370 07443761 04372948 04372756 04372171 00563823 00196084 -switch-hitter n 2 2 @ + 2 1 10684311 10684446 -switch-ivy n 1 2 @ #m 1 0 12239880 -switch_cane n 1 2 @ #m 1 0 12148439 -switch_engine n 1 1 @ 1 0 04373428 -switch_grass n 1 1 @ 1 0 12127460 -switchblade n 1 1 @ 1 0 04373089 -switchblade_knife n 1 1 @ 1 0 04373089 -switchboard n 1 2 @ #p 1 1 04373264 -switchboard_operator n 1 1 @ 1 0 10698064 -switcher n 1 2 @ + 1 0 10684146 -switcheroo n 1 1 @ 1 0 00196402 -switching n 1 3 @ ~ + 1 1 00196084 -switchman n 1 1 @ 1 0 10684538 -swither n 1 1 @ 1 0 14403560 -switzerland n 1 4 @ #p %p - 1 1 09031653 -swivel n 1 2 @ + 1 0 04373563 -swivel_chair n 1 1 @ 1 1 04373704 -swivel_pin n 1 1 @ 1 0 03618546 -swivet n 1 1 @ 1 0 07520925 -swiz n 1 2 @ ; 1 0 00780615 -swizzle n 1 2 @ %s 1 0 07918706 -swizzle_stick n 1 1 @ 1 0 04373795 -swob n 1 4 @ ~ %p + 1 0 04367480 -swoon n 1 2 @ + 1 0 07478318 -swoop n 3 3 @ + ; 3 1 06857264 00977214 00327033 -swoosh n 1 1 @ 1 0 07396530 -swop n 1 3 @ ~ + 1 0 01109687 -sword n 1 3 @ ~ %p 1 1 04373894 -sword-cut n 1 1 @ 1 0 14364217 -sword_bean n 1 2 @ #m 1 0 12511488 -sword_cane n 1 1 @ 1 0 04374315 -sword_dance n 1 1 @ 1 0 00538510 -sword_dancing n 1 1 @ 1 0 00538510 -sword_fern n 1 3 @ ~ #m 1 0 13204826 -sword_grass n 1 1 @ 1 0 12104104 -sword_knot n 1 1 @ 1 0 04374421 -sword_lily n 2 3 @ ~ #m 2 0 12417382 12411922 -sword_of_damocles n 1 1 @ 1 0 14542983 -sword_stick n 1 1 @ 1 0 04374315 -swordfish n 2 4 @ #m #p %p 2 0 07785887 02629716 -swordplay n 1 2 @ ~ 1 0 00041468 -swordsman n 1 2 @ + 1 0 10085217 -swordsmanship n 1 2 @ + 1 0 05640339 -swordtail n 1 2 @ #m 1 0 01448291 -swot n 1 2 @ + 1 0 10684630 -swung_dash n 1 1 @ 1 0 06845076 -sybarite n 1 2 @ + 1 0 10759543 -sycamore n 4 5 @ ~ #m #s %s 4 0 12807082 12806732 12754981 12403513 -sycamore_fig n 1 2 @ #m 1 0 12403513 -syconium n 1 2 @ #p 1 0 13137225 -sycophancy n 1 2 @ + 1 0 04906923 -sycophant n 1 3 @ ~ + 1 0 10684827 -sydenham n 1 1 @ 1 0 11327273 -sydenham's_chorea n 1 1 @ 1 0 14095568 -sydney n 1 3 @ #p %p 1 0 08833295 -sydney_harbor_bridge n 1 2 @ #p 1 0 04374608 -sydney_pollack n 1 1 @ 1 0 11240996 -sydney_silky n 1 1 @ 1 0 02097658 -syllabary n 1 2 @ ~ 1 0 06361770 -syllabic_script n 1 2 @ ~ 1 0 06361770 -syllabication n 1 2 @ + 1 0 00390581 -syllabicity n 1 2 @ + 1 1 07113491 -syllabification n 1 2 @ + 1 0 00390581 -syllable n 1 4 @ ~ #p + 1 1 06304671 -syllable_structure n 1 2 @ ~ 1 0 06177729 -syllabub n 2 1 @ 2 0 07916872 07613158 -syllabus n 1 3 @ ~ %p 1 0 06676416 -syllepsis n 1 1 @ 1 0 07108657 -syllogiser n 1 2 @ + 1 0 10685123 -syllogism n 1 3 @ %p + 1 0 05779116 -syllogist n 1 2 @ + 1 0 10685123 -syllogizer n 1 2 @ + 1 0 10685123 -sylph n 2 1 @ 2 0 10685398 10685300 -sylva n 1 1 @ 1 0 09435405 -sylvan n 1 1 @ 1 0 10685480 -sylvanite n 1 2 @ %s 1 0 15065713 -sylvanus n 1 2 @ ; 1 0 09576746 -sylvester_ii n 1 1 @ 1 0 11327398 -sylvia_communis n 1 1 @ 1 0 01564914 -sylvia_curruca n 1 1 @ 1 0 01565078 -sylvia_plath n 1 1 @ 1 0 11239143 -sylvian_aqueduct n 1 1 @ 1 0 05503401 -sylvian_fissure n 1 2 @ #p 1 0 05224080 -sylviidae n 1 3 @ #m %m 1 0 01562584 -sylviinae n 1 2 @ #m 1 0 01562978 -sylvilagus n 1 3 @ #m %m 1 0 02325211 -sylvilagus_aquaticus n 1 2 @ #m 1 0 02325884 -sylvilagus_floridanus n 1 1 @ 1 0 02325722 -sylvilagus_palustris n 1 1 @ 1 0 02326074 -sylvine n 1 2 @ %s 1 0 15065928 -sylvite n 1 2 @ %s 1 0 15065928 -symbion_pandora n 1 2 @ #m 1 0 02315024 -symbiosis n 1 3 @ ~ + 1 0 13842622 -symbol n 2 3 @ ~ + 2 2 06806469 05765415 -symbol-worship n 1 1 @ 1 0 01045091 -symbolatry n 1 1 @ 1 0 01045091 -symbolic_logic n 1 2 @ ~ 1 0 06164665 -symbolic_logician n 1 1 @ 1 0 10685587 -symbolic_representation n 1 2 @ ~ 1 0 05765415 -symbolisation n 3 3 @ ~ + 3 0 06602324 05765415 00412271 -symboliser n 1 2 @ + 1 0 10685853 -symbolising n 1 1 @ 1 0 00900070 -symbolism n 3 2 @ + 3 2 06807849 00412271 08470507 -symbolist n 2 2 @ + 2 1 10685685 10685853 -symbolization n 3 3 @ ~ + 3 0 06602324 05765415 00412271 -symbolizer n 1 2 @ + 1 0 10685853 -symbolizing n 1 2 @ + 1 0 00900070 -symbology n 1 1 @ 1 0 05998893 -symbololatry n 1 1 @ 1 0 01045091 -symmetricalness n 1 4 @ ~ + ; 1 0 05064827 -symmetry n 3 5 ! @ ~ + ; 3 2 05064827 13898315 04917439 -symonds n 1 1 @ 1 0 11327544 -symons n 1 1 @ 1 0 11327650 -sympathectomy n 1 1 @ 1 0 00687964 -sympathetic_nervous_system n 1 3 @ #p %p 1 0 05505131 -sympathetic_strike n 1 1 @ 1 0 01244127 -sympathetic_vibration n 1 2 @ ; 1 0 11478171 -sympathiser n 2 3 @ ~ + 2 0 10686313 10686073 -sympathizer n 2 3 @ ~ + 2 0 10686313 10686073 -sympathy n 3 3 @ ~ + 3 3 06199142 07553301 13811900 -sympathy_card n 1 2 @ ~ 1 0 06628328 -sympathy_strike n 1 1 @ 1 0 01244127 -sympatry n 1 3 ! @ + 1 0 13959463 -symphalangus n 1 2 @ #m 1 0 02483564 -symphalangus_syndactylus n 1 2 @ #m 1 0 02483708 -symphilid n 1 2 @ #m 1 0 01783706 -symphonic_music n 1 1 @ 1 0 07044760 -symphonic_poem n 1 1 @ 1 0 07047373 -symphonist n 1 1 @ 1 0 10686517 -symphony n 2 2 @ + 2 2 07044760 08248856 -symphony_orchestra n 1 1 @ 1 1 08248856 -symphoricarpos n 1 3 @ #m %m 1 0 12677427 -symphoricarpos_alba n 1 2 @ #m 1 0 12677612 -symphoricarpos_orbiculatus n 1 2 @ #m 1 0 12677841 -symphyla n 1 3 @ #m %m 1 0 01783384 -symphysion n 1 2 @ #p 1 0 05235607 -symphysis n 2 1 @ 2 0 14206375 13563948 -symphytum n 1 3 @ #m %m 1 0 12822650 -symphytum_officinale n 1 2 @ %p 1 0 12822955 -symplocaceae n 1 3 @ #m %m 1 0 12776212 -symplocarpus n 1 3 @ #m %m 1 0 11792598 -symplocarpus_foetidus n 1 2 @ #m 1 0 11792742 -symploce n 1 1 @ 1 0 07100942 -symplocus n 1 3 @ #m %m 1 0 12776391 -symplocus_paniculata n 1 1 @ 1 0 12776774 -symplocus_tinctoria n 1 2 @ #m 1 0 12776558 -symposiarch n 1 2 @ ~ 1 0 10713686 -symposiast n 1 1 @ 1 0 10686598 -symposium n 1 1 @ 1 1 08327616 -symptom n 2 5 @ ~ #p + ; 2 2 14299637 06798187 -synaeresis n 2 1 @ 2 0 13564795 13564639 -synaesthesia n 1 3 @ ~ + 1 0 05720602 -synagogue n 1 3 @ ~ ; 1 1 04374735 -synagrops n 1 3 @ #m %m 1 0 02567201 -synagrops_bellus n 1 2 @ #m 1 0 02567334 -synanceja n 1 3 @ #m %m 1 0 02643713 -synanceja_verrucosa n 1 2 @ #m 1 0 02643836 -synapse n 1 4 @ ~ #p + 1 0 05473928 -synapsid n 1 2 @ ~ 1 0 01719403 -synapsid_reptile n 1 2 @ ~ 1 0 01719403 -synapsida n 1 3 @ #m %m 1 0 01719175 -synapsis n 1 2 @ #p 1 0 13564045 -synaptomys n 1 2 @ #m 1 0 02345890 -synaptomys_borealis n 1 1 @ 1 0 02346170 -synaptomys_cooperi n 1 1 @ 1 0 02345997 -syncarp n 1 3 @ ~ + 1 0 13137672 -syncategorem n 1 3 ! @ + 1 0 06752695 -syncategoreme n 1 3 ! @ + 1 0 06752695 -synchro n 1 1 @ 1 0 04170694 -synchrocyclotron n 1 1 @ 1 0 04374907 -synchroflash n 1 1 @ 1 0 04375080 -synchromesh n 1 1 @ 1 0 04375241 -synchroneity n 1 2 @ + 1 0 13845239 -synchronic_linguistics n 1 1 @ 1 0 06181448 -synchronicity n 1 2 @ + 1 0 13845239 -synchronisation n 3 2 @ + 3 0 13845239 01001097 00807500 -synchroniser n 1 2 @ + 1 0 04375926 -synchronising n 1 2 @ + 1 0 01001097 -synchronism n 1 2 ! @ 1 1 13845239 -synchronization n 3 3 ! @ + 3 0 13845239 01001097 00807500 -synchronizer n 1 2 @ + 1 0 04375926 -synchronizing n 3 3 ! @ + 3 0 13845239 01001097 00807500 -synchronoscope n 1 1 @ 1 0 04375926 -synchronous_converter n 1 1 @ 1 0 04375405 -synchronous_motor n 1 1 @ 1 1 04375615 -synchronous_operation n 1 2 ! @ 1 0 13564501 -synchrony n 1 2 @ + 1 1 13845239 -synchroscope n 1 1 @ 1 0 04375926 -synchrotron n 1 2 @ ~ 1 0 04375775 -synchytriaceae n 1 3 @ #m %m 1 0 12978969 -synchytrium n 1 3 @ #m %m 1 0 12979129 -synchytrium_endobioticum n 1 2 @ #m 1 0 12979316 -syncopation n 3 3 @ + ; 3 0 07132729 07087223 07057385 -syncopator n 1 2 @ + 1 0 10686694 -syncope n 2 3 @ + ; 2 0 07478318 07132729 -syncretism n 2 2 @ + 2 0 14421724 13564215 -syncytium n 1 1 @ 1 0 05605762 -syndactylism n 1 2 @ ; 1 0 14471926 -syndactyly n 1 2 @ ; 1 0 14471926 -syndic n 1 1 @ 1 0 10686885 -syndicalism n 1 2 @ + 1 0 08321621 -syndicalist n 1 3 @ ~ + 1 0 09791816 -syndicate n 3 3 @ ~ + 3 2 08246302 08236438 08355324 -syndication n 2 2 @ + 2 0 01138547 01115348 -syndicator n 1 2 @ + 1 0 10687025 -syndrome n 2 3 @ ~ #p 2 1 05870790 14304060 -synecdoche n 1 3 @ + - 1 0 07108453 -synechia n 1 2 @ ~ 1 0 14206477 -synentognathi n 1 3 @ #m %m 1 0 02549533 -synercus n 1 3 @ #m %m 1 0 02409369 -synercus_caffer n 1 2 @ #m 1 0 02409508 -syneresis n 2 1 @ 2 0 13564795 13564639 -synergism n 2 3 @ ~ + 2 1 13564910 06191854 -synergist n 1 3 ! @ + 1 0 04376259 -synergy n 1 3 @ ~ + 1 0 13564910 -synesthesia n 1 3 @ ~ + 1 0 05720602 -synesthetic_metaphor n 1 1 @ 1 0 07107522 -synezesis n 1 2 @ #p 1 0 13565201 -synge n 1 1 @ 1 0 11327744 -syngnathidae n 1 3 @ #m %m 1 0 01455592 -syngnathus n 1 3 @ #m %m 1 0 01455986 -syngnathus_hildebrandi n 1 2 @ #m 1 0 01456137 -syngonium n 1 2 @ #m 1 0 11793032 -synizesis n 1 2 @ #p 1 0 13565201 -synod n 1 1 @ 1 0 08322520 -synodic_month n 1 2 @ #p 1 0 15207872 -synodontidae n 1 3 @ #m %m 1 0 02543412 -synonym n 1 3 ! @ + 1 1 06303682 -synonym_finder n 1 2 @ ~ 1 0 06421016 -synonymist n 1 2 @ + 1 0 10687135 -synonymity n 1 2 @ + 1 0 13808161 -synonymousness n 1 2 @ + 1 0 13808161 -synonymy n 1 2 @ + 1 0 13808161 -synopsis n 1 3 @ ~ + 1 0 06468951 -synoptic_gospels n 1 2 @ #p 1 0 06455497 -synoptics n 1 2 @ #p 1 0 06455497 -synovia n 1 3 @ %s + 1 0 05415200 -synovial_fluid n 1 2 @ %s 1 0 05415200 -synovial_joint n 1 2 @ ~ 1 0 05543177 -synovial_membrane n 1 1 @ 1 0 05606247 -synovitis n 1 2 @ ~ 1 0 14356328 -synovium n 1 1 @ 1 0 05606247 -synset n 1 2 @ ; 1 0 08272860 -syntactic_category n 1 3 @ ~ ; 1 0 06309383 -syntactician n 1 3 @ ~ + 1 0 10141364 -syntagm n 1 3 @ ~ + 1 0 06313457 -syntagma n 1 3 @ ~ + 1 0 06313457 -syntax n 3 4 @ ~ + ; 3 2 06176107 08436203 06176322 -syntax_checker n 1 1 @ 1 0 06580543 -syntax_error n 1 2 @ ; 1 0 07300494 -syntax_language n 1 1 @ 1 0 06901471 -synthesis n 3 4 ! @ ~ + 3 2 13565379 05783940 05774129 -synthesiser n 2 3 @ + ; 2 0 10687231 04376400 -synthesist n 1 2 @ + 1 0 10687231 -synthesizer n 2 3 @ + ; 2 0 10687231 04376400 -synthetic n 1 2 @ ~ 1 0 14901959 -synthetic_cubism n 1 1 @ 1 1 08477077 -synthetic_fiber n 1 2 @ ~ 1 0 14959058 -synthetic_heroin n 1 1 @ 1 0 03754014 -synthetic_resin n 1 2 @ ~ 1 0 14902141 -synthetic_rubber n 1 2 @ ~ 1 0 15006789 -synthetic_substance n 1 2 @ ~ 1 0 14901959 -synthetic_thinking n 1 1 @ 1 0 05783940 -synthetism n 1 1 @ 1 0 04376715 -syph n 1 3 @ ~ %p 1 0 14133985 -syphilis n 1 4 @ ~ %p + 1 0 14133985 -syphilitic n 1 1 @ 1 0 10687427 -syphon n 2 3 @ + ; 2 0 04224155 01468913 -syracuse n 4 3 @ #p ; 4 0 09125528 08810051 01296296 01296127 -syria n 1 8 @ ~ #m #p %m %p + - 1 1 09033333 -syrian n 1 3 @ ~ #m 1 0 09733459 -syrian_arab_republic n 1 7 @ ~ #m #p %m %p - 1 0 09033333 -syrian_bean_caper n 1 2 @ #m 1 0 12721122 -syrian_bear n 1 1 @ 1 0 02132466 -syrian_desert n 1 2 @ #p 1 0 09173023 -syrian_hamster n 1 2 @ #m 1 0 02343320 -syrian_monetary_unit n 1 2 @ ~ 1 0 13695567 -syrian_pound n 1 2 @ %p 1 0 13695674 -syringa n 2 3 @ #m %m 2 1 12791329 12310153 -syringa_amurensis_japonica n 1 1 @ 1 0 12311224 -syringa_emodi n 1 1 @ 1 0 12310638 -syringa_josikaea n 1 1 @ 1 0 12310840 -syringa_josikea n 1 1 @ 1 0 12310840 -syringa_persica n 1 1 @ 1 0 12311045 -syringa_reticulata n 1 1 @ 1 0 12311224 -syringa_villosa n 1 1 @ 1 0 12311413 -syringa_vulgaris n 1 1 @ 1 0 12311579 -syringe n 1 4 @ ~ %p + 1 0 04376876 -syrinx n 2 2 @ #p 2 0 03884397 02511633 -syrrhaptes n 1 3 @ #m %m 1 0 01816336 -syrrhaptes_paradoxus n 1 2 @ #m 1 0 01816474 -syrup n 1 2 @ ~ 1 0 07859583 -system n 9 5 @ ~ %p + ; 9 8 04377057 08435388 14981183 05661996 05726596 05237227 05902872 05219097 04768657 -system_administrator n 1 1 @ 1 0 10687516 -system_call n 1 1 @ 1 0 06587217 -system_clock n 2 1 @ 2 0 04378024 04377842 -system_command n 1 1 @ 1 0 07276242 -system_error n 1 1 @ 1 0 06587048 -system_of_logic n 1 3 @ ~ - 1 0 05664069 -system_of_macrophages n 1 2 @ #p 1 0 05461610 -system_of_measurement n 1 2 @ ~ 1 0 13577171 -system_of_numeration n 1 3 @ ~ - 1 0 06809074 -system_of_rules n 1 2 @ ~ 1 0 05661996 -system_of_weights n 1 2 @ ~ 1 0 13715755 -system_of_weights_and_measures n 1 2 @ ~ 1 0 13577544 -system_program n 1 1 @ 1 0 06580646 -systema_alimentarium n 1 3 @ #p %p 1 0 05329215 -systema_digestorium n 1 3 @ #p %p 1 0 05329215 -systema_lymphaticum n 1 3 @ #p %p 1 0 05396366 -systema_nervosum n 1 4 @ ~ #p %p 1 0 05462315 -systema_nervosum_centrale n 1 4 @ #p %s %p 1 0 05480794 -systema_nervosum_periphericum n 1 2 @ #p 1 0 05504336 -systema_respiratorium n 1 3 @ #p %p 1 0 05509889 -systema_skeletale n 1 4 @ ~ #p %p 1 0 05585383 -systema_urogenitale n 1 2 @ %p 1 0 05509452 -systematic_desensitisation n 1 2 @ ~ 1 0 00701755 -systematic_desensitization n 1 2 @ ~ 1 0 00701755 -systematics n 1 3 @ ~ + 1 0 06152821 -systematisation n 1 3 @ ~ + 1 0 01009190 -systematiser n 1 2 @ + 1 0 10381369 -systematism n 1 2 @ + 1 0 01031705 -systematist n 2 3 @ ~ + 2 0 10693824 10381369 -systematization n 1 3 @ ~ + 1 1 01009190 -systematizer n 1 2 @ + 1 0 10381369 -systeme_international n 1 1 @ 1 0 13578267 -systeme_international_d'unites n 1 1 @ 1 0 13578267 -systemic_circulation n 1 1 @ 1 0 11439312 -systemic_lupus_erythematosus n 1 1 @ 1 0 14221311 -systemiser n 1 2 @ + 1 0 10381369 -systemizer n 1 2 @ + 1 0 10381369 -systems_analysis n 1 1 @ 1 0 05782713 -systems_analyst n 1 1 @ 1 0 10687728 -systems_program n 1 1 @ 1 0 06580646 -systems_software n 1 1 @ 1 0 06580646 -systole n 1 2 @ ~ 1 0 07401409 -systolic_murmur n 1 1 @ 1 0 14335006 -systolic_pressure n 1 1 @ 1 0 11430483 -syzygium n 1 3 @ #m %m 1 0 12339319 -syzygium_aromaticum n 1 3 @ #m %p 1 0 12339526 -syzygy n 1 1 @ 1 0 11518330 -szechuan n 1 2 @ #p 1 0 08726305 -szechwan n 1 2 @ #p 1 0 08726305 -szechwan_province n 1 2 @ #p 1 0 08726305 -szell n 1 1 @ 1 0 11327964 -szent-gyorgyi n 1 1 @ 1 0 11328085 -szilard n 1 1 @ 1 0 11328289 -t n 6 4 @ #m #s %p 6 0 15072857 14830164 13725588 06833220 05413873 05413647 -t'ai_chi n 1 1 @ 1 0 00826789 -t'ai_chi_chuan n 1 1 @ 1 0 00826789 -t'ien-ching n 1 2 @ #p 1 0 08728882 -t-bar n 1 1 @ 1 0 04396650 -t-bar_lift n 1 1 @ 1 0 04396650 -t-bill n 1 1 @ 1 0 13394592 -t-bone_steak n 1 1 @ 1 0 07661002 -t-junction n 1 1 @ 1 0 04441902 -t-man n 1 1 @ 1 0 10713254 -t-network n 1 1 @ 1 0 04442016 -t-scope n 1 1 @ 1 0 04382537 -t-shirt n 1 2 @ ~ 1 0 03595614 -t-square n 1 1 @ 1 1 04493259 -t._e._lawrence n 1 1 @ 1 0 11120834 -t._h._white n 1 1 @ 1 0 11384022 -t._s._eliot n 1 1 @ 1 0 10957072 -t.b. n 1 2 @ ~ 1 1 14143415 -t_cell n 1 2 @ ~ 1 0 05451981 -t_hinge n 1 1 @ 1 0 04399846 -t_lymphocyte n 1 2 @ ~ 1 0 05451981 -ta n 1 2 @ #s 1 0 14656666 -ta'ziyeh n 1 2 @ ; 1 0 07281635 -taal n 1 1 @ 1 0 06952861 -tab n 5 3 @ ~ #p 5 0 06517942 06267991 04379096 04378123 03936568 -tab_key n 1 2 @ #p 1 0 04379096 -tabanidae n 1 3 @ #m %m 1 0 02195403 -tabard n 1 1 @ 1 0 04378489 -tabasco n 3 4 @ #s #p %s 3 0 08745687 07826091 07722052 -tabasco_pepper n 1 3 @ #m %p 1 0 12902021 -tabasco_plant n 1 3 @ #m %p 1 0 12902021 -tabasco_sauce n 1 2 @ %s 1 0 07826091 -tabbouleh n 1 3 @ %p ; 1 0 07808904 -tabby n 2 1 @ 2 0 02123045 02122878 -tabby_cat n 1 1 @ 1 0 02123045 -tabernacle n 3 5 @ ~ #p %p ; 3 0 04378842 04378651 04374735 -tabernacles n 1 3 @ #p ; 1 0 15161872 -tabernaemontana n 1 3 @ #m %m 1 0 11776337 -tabernaemontana_divaricate n 1 2 @ #m 1 0 11776511 -tabes n 1 1 @ 1 0 14135181 -tabes_dorsalis n 1 1 @ 1 0 14134819 -tabi n 1 1 @ 1 0 04378956 -tabis n 1 1 @ 1 0 04378956 -tablature n 1 1 @ 1 0 06816335 -table n 6 5 @ ~ %m %p + 6 3 08266235 04379243 04379964 09351905 08480135 07565259 -table-mountain_pine n 1 1 @ 1 0 11617631 -table-tennis_bat n 1 1 @ 1 0 04381724 -table-tennis_racquet n 1 1 @ 1 0 04381724 -table-tennis_table n 1 1 @ 1 0 04381587 -table_d'hote n 1 1 @ 1 0 06497331 -table_game n 1 2 @ ~ 1 0 00499066 -table_knife n 1 2 @ ~ 1 0 04380346 -table_lamp n 1 1 @ 1 0 04380533 -table_lifting n 1 2 @ #p 1 0 07257393 -table_linen n 1 2 @ ~ 1 0 04380617 -table_mat n 1 1 @ 1 0 04380801 -table_mustard n 1 3 @ ~ %s 1 0 07819480 -table_napkin n 1 2 @ ~ 1 0 03807537 -table_of_contents n 1 2 @ #p 1 0 06489659 -table_rapping n 1 2 @ #p 1 0 07257227 -table_salt n 1 1 @ 1 0 07813107 -table_saw n 1 1 @ 1 0 04380916 -table_service n 1 2 @ ~ 1 0 04175380 -table_talk n 1 1 @ 1 0 07141922 -table_tapping n 1 2 @ #p 1 0 07257227 -table_tennis n 1 2 @ - 1 1 00499263 -table_tilting n 1 2 @ #p 1 0 07257393 -table_tipping n 1 2 @ #p 1 0 07257393 -table_turning n 1 2 @ #p 1 0 07257393 -table_wine n 1 2 @ ~ 1 0 07898745 -tableau n 2 1 @ 2 2 08372715 05934780 -tableau_vivant n 1 1 @ 1 0 08372715 -tablecloth n 1 2 @ ~ 1 0 04380143 -tablefork n 1 1 @ 1 0 04380255 -tableland n 1 2 @ ~ 1 0 09453008 -tablemate n 1 1 @ 1 0 10687826 -tablespoon n 2 1 @ 2 0 13770310 04381073 -tablespoonful n 1 1 @ 1 0 13770310 -tablet n 4 2 @ ~ 4 1 04381302 14973133 04381183 03936568 -tablet-armed_chair n 1 2 @ %p 1 0 04381450 -tabletop n 1 3 @ ~ #p 1 1 04381860 -tableware n 1 3 @ ~ #p 1 0 04381994 -tabloid n 2 1 @ 2 0 06267991 06267893 -taboo n 2 3 @ + ; 2 0 05950234 04884302 -tabooli n 1 3 @ %p ; 1 0 07808904 -tabor n 1 1 @ 1 0 04382334 -tabor_pipe n 1 1 @ 1 0 03945459 -tabora n 1 2 @ #p 1 0 09035852 -taboret n 1 1 @ 1 0 04382438 -tabour n 1 1 @ 1 0 04382334 -tabouret n 1 1 @ 1 0 04382438 -tabriz n 1 2 @ #p 1 0 08912427 -tabu n 2 2 @ ; 2 0 05950234 04884302 -tabuk n 1 2 @ #p 1 0 08995013 -tabula_rasa n 2 1 @ 2 1 05613043 14484646 -tabular_array n 1 3 @ ~ %m 1 0 08266235 -tabular_matter n 1 1 @ 1 0 07002992 -tabulation n 2 2 @ + 2 1 07002992 00652659 -tabulator n 1 2 @ ~ 1 0 03116767 -tabun n 1 1 @ 1 0 15066125 -tacamahac n 1 1 @ 1 0 12731835 -tacca n 1 3 @ #m %m 1 0 12475593 -tacca_leontopetaloides n 1 2 @ #m 1 0 12475774 -tacca_pinnatifida n 1 2 @ #m 1 0 12475774 -taccaceae n 1 3 @ #m %m 1 0 12475450 -tach n 1 2 @ ~ 1 0 04382880 -tacheometer n 1 1 @ 1 0 04383015 -tachina_fly n 1 2 @ #m 1 0 02192814 -tachinidae n 1 3 @ #m %m 1 0 02192673 -tachistoscope n 1 1 @ 1 0 04382537 -tachogram n 1 1 @ 1 0 07005897 -tachograph n 1 1 @ 1 0 04382695 -tachometer n 1 2 @ ~ 1 0 04382880 -tachycardia n 1 1 @ 1 0 14363027 -tachyglossidae n 1 3 @ #m %m 1 0 01872094 -tachyglossus n 1 3 @ #m %m 1 0 01872244 -tachygraphy n 1 1 @ 1 0 06350127 -tachylite n 1 1 @ 1 0 14881224 -tachymeter n 1 1 @ 1 0 04383015 -tachypleus n 1 3 @ #m %m 1 0 01788157 -tacit_consent n 1 2 @ ; 1 0 06689125 -taciturnity n 1 2 @ + 1 0 04652438 -tacitus n 1 1 @ 1 0 11328524 -tack n 6 5 @ ~ #p + ; 6 0 08681084 04383130 04295081 04188368 00351334 00314395 -tack_hammer n 1 1 @ 1 1 04383301 -tacker n 3 2 @ + 3 0 10687922 09843048 04303357 -tackiness n 2 2 @ + 2 0 04935904 04818460 -tacking n 2 3 @ + ; 2 0 02805111 00351334 -tackle n 5 6 @ #m %m %p + ; 5 1 10688070 04091693 03351434 00727901 00561985 -tackler n 1 2 @ + 1 0 10688238 -taco n 2 3 @ ~ ; 2 0 09722898 07880751 -taco_sauce n 1 1 @ 1 0 07823369 -tacoma n 1 3 @ #p %p 1 0 09154731 -tacoma_narrows_bridge n 1 2 @ #p 1 0 04383401 -taconic_mountains n 1 2 @ #p 1 0 09453288 -taconite n 1 1 @ 1 0 14870665 -tact n 1 2 @ ~ 1 1 04841810 -tactfulness n 1 4 ! @ ~ + 1 0 04841810 -tactic n 1 2 @ + 1 1 05905152 -tactical_intelligence n 1 2 @ ~ 1 0 00982347 -tactical_maneuver n 1 2 @ ~ 1 0 00168237 -tactical_manoeuvre n 1 2 @ ~ 1 0 00168237 -tactical_warning n 1 3 @ ~ ; 1 0 07225857 -tactician n 1 2 @ + 1 0 10688356 -tactics n 2 3 @ + ; 2 1 06248968 05905152 -tactile_agnosia n 1 1 @ 1 0 14056143 -tactile_property n 1 2 @ ~ 1 0 04946553 -tactile_sensation n 1 2 @ ~ 1 0 05722427 -tactility n 1 2 @ + 1 0 05721990 -tactlessness n 1 3 ! @ + 1 0 04846243 -tactual_exploration n 1 2 @ ~ 1 0 00143885 -tactual_sensation n 2 2 @ ~ 2 1 05722427 05721990 -tad n 1 1 @ 1 0 13763185 -tadalafil n 1 1 @ 1 0 04383537 -tadarida n 1 3 @ #m %m 1 0 02149297 -tadarida_brasiliensis n 1 1 @ 1 0 02149653 -tadeus_reichstein n 1 1 @ 1 0 11257395 -tadeusz_andrzej_bonawentura_kosciuszko n 1 1 @ 1 0 11109728 -tadirida_femorosacca n 1 1 @ 1 0 02149861 -tadjik n 1 5 @ #m #p %m %p 1 0 09020961 -tadorna n 1 3 @ #m %m 1 0 01849348 -tadpole n 1 2 @ #m 1 1 02469472 -tadpole_shrimp n 1 2 @ #m 1 0 01996280 -tadzhik n 4 5 @ #m #p %m %p 4 0 09734006 09020961 08484810 06974390 -tadzhikistan n 1 5 @ #m #p %m %p 1 0 09020961 -tae_kwon_do n 1 1 @ 1 0 00826681 -taegu n 1 2 @ #p 1 0 08956461 -taekwondo n 1 1 @ 1 0 00826681 -tael n 1 1 @ 1 0 13719291 -taenia n 2 2 @ #m 2 0 04383696 01928215 -taeniidae n 1 3 @ #m %m 1 0 01927665 -taffeta n 1 1 @ 1 0 04383839 -taffeta_weave n 1 1 @ 1 0 03954012 -taffrail n 1 1 @ 1 0 04383923 -taffrail_log n 1 1 @ 1 0 03898787 -taffy n 1 2 @ ~ 1 1 07609407 -taffy_apple n 1 1 @ 1 0 07600696 -taft n 2 1 @ 2 0 11328930 11328714 -tag n 5 5 @ ~ + ; - 5 1 07273136 07273416 04045941 00487874 00145024 -tag_end n 1 2 @ ~ 1 0 04045941 -tag_line n 1 2 @ #p 1 0 06778777 -tagalog n 2 2 @ #m 2 0 10688491 06940001 -tagalong n 1 2 @ + 1 0 10688671 -tagamet n 1 2 @ ; 1 0 03031553 -tagasaste n 1 2 @ #m 1 0 12514592 -tagetes_erecta n 1 1 @ 1 0 12020736 -tagetes_patula n 1 1 @ 1 0 12020941 -tageteste n 1 3 @ #m %m 1 0 12020388 -tagger n 3 2 @ ~ 3 0 10688975 10688811 06577585 -tagging_program n 1 2 @ ~ 1 0 06577585 -tagliatelle n 1 1 @ 1 0 07701372 -tagore n 1 1 @ 1 0 11329030 -taguan n 1 2 @ #m 1 0 02362569 -tagus n 1 2 @ #p 1 0 09453566 -tagus_river n 1 2 @ #p 1 0 09453566 -tahini n 1 1 @ 1 0 07858484 -tahiti n 1 5 @ #p %m %p + 1 1 08989941 -tahitian n 2 2 @ #m 2 0 09733793 06938294 -tahoka_daisy n 1 2 @ #m 1 0 11993203 -tai n 2 3 @ ~ #m 2 0 09734294 06934389 -tai_chi n 1 1 @ 1 0 00826789 -tai_chi_chuan n 1 1 @ 1 0 00826789 -tai_dam n 1 1 @ 1 0 06935016 -tai_long n 1 1 @ 1 0 06935223 -tai_lue n 1 1 @ 1 0 06935314 -tai_nuea n 1 1 @ 1 0 06935111 -tai_yuan n 1 1 @ 1 0 06935417 -taichi n 1 1 @ 1 0 00826789 -taichichuan n 1 1 @ 1 0 00826789 -taichung n 1 2 @ #p 1 0 08731057 -taif n 1 2 @ #p 1 0 08995120 -tail n 8 7 ! @ ~ #p %p + ; 8 4 02157557 15268367 13918274 05559256 10689104 04384199 04384016 04316646 -tail-flower n 1 3 @ ~ #m 1 0 11783920 -tail_assembly n 1 3 @ #p %p 1 0 04384016 -tail_bone n 1 3 @ #p %p 1 0 05274247 -tail_coat n 1 2 @ %p 1 0 03239054 -tail_end n 3 2 @ #p 3 0 15268367 13918274 05559256 -tail_feather n 1 2 @ ~ 1 0 02469344 -tail_fin n 3 3 @ ~ #p 3 0 04529962 04384406 02466957 -tail_gate n 1 1 @ 1 0 04384757 -tail_lamp n 1 2 @ #p 1 0 04384910 -tail_rotor n 1 1 @ 1 0 04385799 -tailback n 2 3 @ #m ; 2 1 10689306 00727137 -tailboard n 1 2 @ #p 1 0 04384593 -tailcoat n 1 2 @ %p 1 0 03239054 -tailed_frog n 1 2 @ #m 1 0 01644900 -tailed_toad n 1 2 @ #m 1 0 01644900 -tailfin n 2 2 @ #p 2 0 04529962 04384406 -tailflower n 1 3 @ ~ #m 1 0 11783920 -tailgate n 1 2 @ #p 1 1 04384593 -tailgater n 1 2 @ + 1 0 10689429 -tailing n 1 2 @ + 1 0 00320486 -tailless_tenrec n 1 2 @ #m 1 0 01894522 -taillight n 1 2 @ #p 1 0 04384910 -tailor n 1 3 @ ~ + 1 0 10689564 -tailor's_chalk n 1 1 @ 1 0 04385157 -tailor's_tack n 1 1 @ 1 0 04385272 -tailor-made n 1 1 @ 1 0 04385079 -tailorbird n 1 2 @ #m 1 0 01566207 -tailoring n 1 2 @ + 1 0 00618436 -tailpiece n 1 1 @ 1 0 04385431 -tailpipe n 1 2 @ #p 1 0 04385536 -tailplane n 1 2 @ #p 1 0 03536122 -tailrace n 1 1 @ 1 0 04385669 -tails n 1 2 @ %p 1 0 03239054 -tailspin n 2 1 @ 2 0 14404042 00306210 -tailstock n 1 1 @ 1 0 04386051 -tailwind n 1 1 @ 1 0 11443409 -tailwort n 1 3 @ #m %p 1 0 12816508 -taimyr_peninsula n 1 2 @ #p 1 0 09022132 -taint n 1 3 @ ~ + 1 1 14487731 -taipan n 1 2 @ #m 1 0 01751472 -taipeh n 1 2 @ #p 1 0 08730895 -taipei n 1 2 @ #p 1 0 08730895 -taira n 1 2 @ #m 1 0 02451415 -taiwan n 2 4 @ #p %m %p 2 1 08730550 08730354 -taiwan_dollar n 1 1 @ 1 0 13674045 -taiwanese n 2 2 @ #m 2 0 09733899 06930633 -taiyuan n 1 2 @ #p 1 0 08728595 -taj_mahal n 1 1 @ 1 0 04386283 -tajik n 4 5 @ #m #p %m %p 4 0 09734006 09020961 08484810 06974390 -tajiki n 1 1 @ 1 0 06974390 -tajikistan n 1 5 @ #m #p %m %p 1 0 09020961 -tajikistani_monetary_unit n 1 2 @ ~ 1 0 13702396 -taka n 1 2 @ %p 1 0 13708014 -takahe n 1 2 @ #m 1 0 02017725 -takakkaw n 1 2 @ #p 1 0 09453718 -takayasu's_arteritis n 1 1 @ 1 0 14258957 -take n 2 3 @ ~ + 2 0 13260190 00908133 -take-home_pay n 1 1 @ 1 0 13280992 -take-in n 1 2 @ + 1 0 00756780 -take-up n 2 1 @ 2 0 04386456 00194005 -takeaway n 3 2 @ + 3 0 07594511 07217117 00556834 -takedown n 2 4 @ #p + ; 2 0 07471514 06716796 -takelma n 2 1 @ 2 0 09670051 06925538 -takeoff n 4 2 @ + 4 1 00306102 07375635 06780309 00549610 -takeoff_booster n 1 2 @ #p 1 0 02872333 -takeoff_rocket n 1 2 @ #p 1 0 02872333 -takeout n 2 3 @ + ; 2 0 07594511 06737628 -takeout_food n 1 1 @ 1 0 07594511 -takeover n 2 3 @ ~ + 2 1 01145015 00789906 -takeover_arbitrage n 1 1 @ 1 0 01094293 -takeover_attempt n 1 2 @ ~ 1 0 00790205 -takeover_bid n 1 2 @ ~ 1 0 00790347 -takeover_target n 1 2 @ ~ 1 0 08076075 -taker n 2 2 @ + 2 0 10689784 09852081 -takilman n 1 1 @ 1 0 06925538 -takin n 1 2 @ #m 1 0 02419634 -taking n 1 2 @ + 1 0 00714477 -taking_apart n 1 1 @ 1 0 07433510 -taking_hold n 1 2 @ ~ 1 0 00812274 -taking_into_custody n 1 1 @ 1 0 00088725 -taking_over n 1 1 @ 1 0 00082754 -takings n 1 2 @ ~ 1 1 13260190 -taklamakan_desert n 1 2 @ #p 1 0 09173288 -taklimakan_desert n 1 2 @ #p 1 0 09173288 -tala n 1 2 @ %p 1 0 13708282 -talapoin n 1 1 @ 1 0 02485225 -talaria n 1 2 @ ; 1 0 04386664 -talbot n 1 1 @ 1 0 11329281 -talc n 1 4 @ ~ #s + 1 0 15066367 -talcott_parsons n 1 1 @ 1 0 11224309 -talcum n 2 4 @ ~ #s %s 2 0 15066367 04386792 -talcum_powder n 1 2 @ %s 1 0 04386792 -tale n 2 3 @ ~ + 2 2 07221094 06757057 -taleban n 1 1 @ 1 0 08476165 -talebearer n 1 1 @ 1 0 10692696 -talent n 2 2 @ ~ 2 2 05624042 10689878 -talent_agent n 1 1 @ 1 0 10690002 -talent_scout n 1 2 @ ; 1 0 10562968 -talentlessness n 1 2 @ + 1 0 05647772 -taleteller n 1 1 @ 1 0 10692696 -taliban n 1 1 @ 1 0 08476165 -talien n 1 2 @ #p 1 0 08727003 -talinum n 1 3 @ #m %m 1 0 11862598 -talinum_augustissimum n 1 2 @ #m 1 0 11863242 -talinum_aurantiacum n 1 3 @ ~ #m 1 0 11862835 -talinum_brevifolium n 1 2 @ #m 1 0 11863467 -talinum_calycinum n 1 2 @ #m 1 0 11863717 -talinum_paniculatum n 1 1 @ 1 0 11863877 -talinum_spinescens n 1 2 @ #m 1 0 11864114 -talipes n 1 2 @ ~ 1 0 14214584 -talipes_calcaneus n 1 1 @ 1 0 14215046 -talipes_equinus n 1 1 @ 1 0 14214938 -talipes_valgus n 1 1 @ 1 0 14214819 -talipot n 1 3 @ #m %p 1 0 12589841 -talipot_palm n 1 3 @ #m %p 1 0 12589841 -talisman n 1 3 @ ~ + 1 0 02706586 -talk n 5 3 @ ~ + 5 3 07135734 07139316 00893243 07240549 07223985 -talk_of_the_town n 1 1 @ 1 0 07223985 -talk_show n 1 2 @ ~ 1 0 06620227 -talkativeness n 1 3 @ ~ + 1 0 04651382 -talker n 1 3 @ ~ + 1 0 10630188 -talker_identification n 1 1 @ 1 0 05763767 -talkie n 1 1 @ 1 0 06618822 -talking n 1 3 @ ~ + 1 1 07135734 -talking_book n 1 1 @ 1 0 04386962 -talking_head n 1 1 @ 1 0 10690095 -talking_picture n 1 1 @ 1 0 06618822 -talking_point n 1 1 @ 1 0 06607204 -talking_to n 1 2 @ ~ 1 0 06713930 -talks n 1 2 @ ~ 1 1 07148192 -tall n 1 1 @ 1 0 05097278 -tall-grass n 1 1 @ 1 0 12104238 -tall_bellflower n 1 1 @ 1 0 12038038 -tall_bilberry n 1 2 @ %p 1 0 12247664 -tall_buttercup n 1 1 @ 1 0 11720643 -tall_crowfoot n 1 1 @ 1 0 11720643 -tall_cupflower n 1 2 @ #m 1 0 12909068 -tall_field_buttercup n 1 1 @ 1 0 11720643 -tall_gallberry_holly n 1 1 @ 1 0 12758014 -tall_goldenrod n 1 1 @ 1 0 12018447 -tall_mallow n 1 2 @ #m 1 0 12171503 -tall_meadow_grass n 1 2 @ #m 1 0 12108871 -tall_oat_grass n 1 2 @ #m 1 0 12108871 -tall_oil n 1 1 @ 1 0 14968185 -tall_order n 1 1 @ 1 0 00797723 -tall_sunflower n 1 1 @ 1 0 11978961 -tall_tale n 1 1 @ 1 1 07221939 -tall_white_violet n 1 1 @ 1 0 12388652 -tall_yellow-eye n 1 1 @ 1 0 12605872 -tallahassee n 1 2 @ #p 1 0 09075170 -tallapoosa n 1 2 @ #p 1 0 09453887 -tallapoosa_river n 1 2 @ #p 1 0 09453887 -tallboy n 1 1 @ 1 0 03518305 -tallchief n 1 1 @ 1 0 11329507 -talleyrand n 1 1 @ 1 0 11329690 -tallgrass n 1 1 @ 1 0 12104238 -tallin n 1 2 @ #p 1 0 09012530 -tallinn n 1 2 @ #p 1 0 09012530 -tallis n 2 2 @ ; 2 0 11329808 03998333 -tallith n 1 2 @ ; 1 0 03998333 -tallness n 2 5 ! @ ~ = + 2 0 05137165 05002540 -tallow n 1 2 @ ~ 1 1 15062468 -tallow_oil n 1 1 @ 1 0 15066906 -tallulah_bankhead n 1 1 @ 1 0 10833304 -tally n 3 3 @ ~ + 3 1 00189565 06517779 00634586 -tally_clerk n 1 1 @ 1 0 10690268 -tallyman n 2 2 @ ; 2 0 10690421 10690268 -talmud n 1 2 @ %p 1 0 06462396 -talmudic_literature n 1 3 @ ~ ; 1 0 06462219 -talon n 1 2 @ #p 1 0 02156413 -talpidae n 1 3 @ #m %m 1 0 01889328 -talus n 2 2 @ #p 2 0 09454153 05271383 -talwin n 1 2 @ ; 1 0 03912664 -tam n 1 1 @ 1 0 04387095 -tam-o'-shanter n 1 1 @ 1 0 04387095 -tam-tam n 1 1 @ 1 0 03447721 -tamale n 2 3 @ #p ; 2 0 08946812 07879659 -tamale_pie n 1 1 @ 1 0 07879821 -tamandu n 1 2 @ #m 1 0 02461128 -tamandua n 1 2 @ #m 1 0 02461128 -tamandua_tetradactyla n 1 2 @ #m 1 0 02461128 -tamanoir n 1 2 @ #m 1 0 02460451 -tamara_karsavina n 1 1 @ 1 0 11097208 -tamarack n 1 1 @ 1 0 11619227 -tamarao n 1 2 @ #m 1 0 02409202 -tamarau n 1 2 @ #m 1 0 02409202 -tamaricaceae n 1 3 @ #m %m 1 0 12386039 -tamarillo n 1 2 @ #m 1 0 12903014 -tamarin n 1 3 @ ~ #m 1 0 02491107 -tamarind n 2 4 @ #m #p %p 2 0 12501202 07764630 -tamarind_tree n 1 3 @ #m %p 1 0 12501202 -tamarindo n 2 4 @ #m #p %p 2 0 12501202 07764630 -tamarindus n 1 3 @ #m %m 1 0 12501035 -tamarindus_indica n 1 3 @ #m %p 1 0 12501202 -tamarisk n 1 2 @ #m 1 0 12386462 -tamarisk_family n 1 3 @ #m %m 1 0 12386039 -tamarisk_gerbil n 1 2 @ #m 1 0 02344270 -tamarix n 1 3 @ #m %m 1 0 12386263 -tambac n 1 1 @ 1 0 15075691 -tambala n 1 2 @ #p 1 0 13683342 -tambocor n 1 2 @ ; 1 0 03362393 -tambour n 2 1 @ 2 0 04387261 04387201 -tambourine n 1 1 @ 1 0 04387400 -tamburlaine n 1 1 @ 1 0 11330026 -tameness n 2 4 ! @ = + 2 0 05206573 04905842 -tamer n 1 2 @ + 1 0 10690538 -tamerlane n 1 1 @ 1 0 11330026 -tamias n 1 3 @ #m %m 1 0 02359775 -tamias_striatus n 1 2 @ #m 1 0 02359915 -tamiasciurus n 1 2 @ #m 1 0 02357280 -tamiasciurus_douglasi n 1 1 @ 1 0 02357585 -tamiasciurus_hudsonicus n 1 1 @ 1 0 02357401 -tamil n 2 1 @ 2 0 09675393 06980315 -tamil_eelam n 1 2 @ #p 1 0 08719892 -tamil_nadu n 1 2 @ #p 1 0 08905467 -tamil_tigers n 1 2 @ ; 1 0 08032023 -tamm n 1 1 @ 1 0 11330228 -tammany n 1 2 @ #p 1 0 08048042 -tammany_hall n 1 2 @ #p 1 0 08048042 -tammany_society n 1 2 @ #p 1 0 08048042 -tammerfors n 1 2 @ #p 1 0 08780380 -tammuz n 2 2 @ #p 2 0 15216386 09517492 -tammy n 2 1 @ 2 0 04387531 04387095 -tammy_wynette n 1 1 @ 1 0 11400704 -tammy_wynetter_pugh n 1 1 @ 1 0 11400704 -tamoxifen n 1 1 @ 1 0 03298565 -tamp n 1 3 @ ~ + 1 0 04387706 -tampa n 1 2 @ #p 1 0 09075329 -tampa_bay n 1 2 @ #p 1 0 09454265 -tampax n 1 2 @ ; 1 0 04387932 -tamper n 1 3 @ ~ + 1 0 04387706 -tampere n 1 2 @ #p 1 0 08780380 -tampering n 1 2 @ + 1 1 00201516 -tampico n 1 2 @ #p 1 0 08745901 -tamping_bar n 1 2 @ ~ 1 0 04387706 -tampion n 1 1 @ 1 0 04388040 -tampon n 1 3 @ ~ + 1 0 04388162 -tamponade n 1 2 @ ~ 1 0 14508368 -tamponage n 1 3 @ ~ + 1 0 14508368 -tamus n 1 3 @ #m %m 1 0 12089625 -tamus_communis n 1 2 @ #m 1 0 12089846 -tan n 3 2 @ + 3 2 14290534 04973020 13788035 -tanacetum n 1 3 @ #m %m 1 0 12021120 -tanacetum_balsamita n 1 3 @ #m %p 1 0 12021499 -tanacetum_camphoratum n 1 2 @ #m 1 0 12021882 -tanacetum_cinerariifolium n 1 2 @ #m 1 0 12022382 -tanacetum_coccineum n 1 2 @ #m 1 0 12022054 -tanacetum_douglasii n 1 2 @ #m 1 0 12022821 -tanacetum_parthenium n 1 2 @ #m 1 0 12023108 -tanacetum_ptarmiciflorum n 1 2 @ #m 1 0 12023407 -tanacetum_vulgare n 1 2 @ #m 1 0 12023726 -tanach n 1 2 @ %p 1 0 06452363 -tanager n 1 3 @ ~ #m 1 0 01597336 -tanakh n 1 2 @ %p 1 0 06452363 -tanbark n 1 1 @ 1 0 12265740 -tanbark_oak n 1 3 @ ~ #m 1 0 12265394 -tancred n 1 1 @ 1 0 11330346 -tandearil n 1 2 @ ; 1 0 03869044 -tandem n 2 1 @ 2 0 05083567 02835271 -tandem_bicycle n 1 1 @ 1 0 02835271 -tandem_trailer n 1 1 @ 1 0 04388372 -tandoor n 1 1 @ 1 0 04388473 -tandy n 1 1 @ 1 0 11330504 -tanekaha n 1 1 @ 1 0 11650307 -taney n 1 1 @ 1 0 11330692 -tang n 7 4 @ ~ #m + 7 1 04993108 08158920 05715864 01405250 01405107 01403713 01403595 -tang_dynasty n 1 1 @ 1 0 08158920 -tanga n 2 2 @ #p 2 0 13702620 09035951 -tanganyika n 2 2 @ #p 2 0 09333512 09035305 -tange n 1 1 @ 1 0 11330963 -tangelo n 2 4 @ #m #p %p 2 0 12711182 07748574 -tangelo_tree n 1 3 @ #m %p 1 0 12711182 -tangency n 2 4 @ ~ + ; 2 0 14420074 03093792 -tangent n 2 2 @ + 2 1 13871134 13788035 -tangent_plane n 1 1 @ 1 0 13862144 -tangerine n 3 3 @ #p %p 3 0 12710295 07748416 04965574 -tangerine_tree n 1 2 @ %p 1 0 12710295 -tangibility n 1 3 ! @ + 1 0 04760024 -tangible_possession n 1 1 @ 1 0 13244753 -tangibleness n 1 2 @ + 1 0 04760024 -tangier n 1 2 @ #p 1 0 08970611 -tangier_pea n 1 2 @ #m 1 0 12542043 -tangier_peavine n 1 2 @ #m 1 0 12542043 -tangiers n 1 2 @ #p 1 0 08970611 -tanginess n 1 2 @ + 1 0 04993108 -tangle n 2 3 @ ~ + 2 2 09454412 05685879 -tangle_orchid n 1 2 @ #m 1 0 12078747 -tanglebush n 1 1 @ 1 0 12302692 -tango n 2 2 @ + 2 1 00537423 07057829 -tangor n 1 3 @ #m %p 1 0 12710917 -tangram n 1 1 @ 1 0 04388574 -tangshan n 1 2 @ #p 1 0 08728749 -tanguy n 1 1 @ 1 0 11331063 -tank n 5 5 @ ~ %p + ; 5 2 04389033 04388743 13770529 04389521 03102771 -tank_car n 1 1 @ 1 0 04389521 -tank_circuit n 1 1 @ 1 0 04389637 -tank_destroyer n 1 1 @ 1 0 04389718 -tank_driver n 1 1 @ 1 0 10690648 -tank_engine n 1 1 @ 1 0 04389854 -tank_farm n 1 1 @ 1 0 08660817 -tank_farming n 1 2 @ ~ 1 0 00918976 -tank_furnace n 1 1 @ 1 0 04390156 -tank_iron n 1 1 @ 1 0 04390338 -tank_locomotive n 1 1 @ 1 0 04389854 -tank_shell n 1 1 @ 1 0 04390483 -tank_ship n 1 2 @ ~ 1 0 03845190 -tank_suit n 1 1 @ 1 0 03710721 -tank_top n 1 1 @ 1 0 04390577 -tanka n 2 1 @ 2 0 06381594 04389340 -tankage n 3 2 @ + 3 0 13763970 13326103 00812055 -tankard n 1 1 @ 1 0 04389430 -tanker n 2 2 @ ~ 2 1 03845190 10690648 -tanker_plane n 1 1 @ 1 0 04389999 -tankful n 1 1 @ 1 0 13770529 -tannenberg n 1 3 @ #p ; 1 0 01296505 -tanner n 2 3 @ + ; 2 0 13391452 10690742 -tanner's_cassia n 1 1 @ 1 0 12499757 -tannery n 1 2 @ + 1 0 04390759 -tannia n 1 2 @ #m 1 0 11793403 -tannic_acid n 1 2 @ ~ 1 0 15067025 -tannin n 1 3 @ ~ + 1 0 15067025 -tanning n 3 3 @ ~ + 3 0 13565622 01163047 00927062 -tannoy n 1 3 @ #p ; 1 0 04390873 -tanoan n 1 2 @ ~ 1 0 06920497 -tanoan_language n 1 2 @ ~ 1 0 06920497 -tansy n 1 2 @ #m 1 0 12023726 -tansy-leaved_rocket n 1 2 @ #m 1 0 11889205 -tansy_leaf_aster n 1 2 @ #m 1 0 11993203 -tansy_mustard n 1 2 @ #m 1 0 11884967 -tansy_ragwort n 1 2 @ #m 1 0 12012253 -tantaliser n 1 2 @ + 1 0 10690849 -tantalite n 1 2 @ %s 1 0 15067375 -tantalization n 1 2 @ + 1 0 00425905 -tantalizer n 1 2 @ + 1 0 10690849 -tantalum n 1 2 @ #s 1 0 14656666 -tantalus n 1 3 @ + ; 1 0 09593651 -tantilla n 1 3 @ #m %m 1 0 01738965 -tantra n 2 1 @ 2 0 06464241 06242427 -tantrism n 2 3 @ %m + 2 0 08099647 06242427 -tantrist n 1 3 @ #m + 1 0 09684476 -tantrum n 1 1 @ 1 1 14406303 -tanzania n 1 5 @ #p %m %p + 1 0 09034550 -tanzanian n 1 2 @ #m 1 0 09734185 -tanzanian_monetary_unit n 1 2 @ ~ 1 0 13706993 -tanzanian_shilling n 1 1 @ 1 0 13707106 -tanzim n 1 2 @ ; 1 0 08020785 -tanzimul_fuqra n 1 2 @ ; 1 0 08026539 -tao n 2 4 @ #m #p ; 2 0 09848285 06242970 -taoiseach n 1 1 @ 1 0 10691052 -taoism n 4 6 @ %m %p + ; - 4 0 08098499 08098346 06243096 05977340 -taoist n 1 3 @ #m + 1 0 09848285 -taoist_trinity n 1 2 @ %m 1 0 09533498 -taos n 2 2 @ #p 2 0 09670170 09116599 -tap n 8 5 @ ~ #p + ; 8 1 07388987 07410021 04559451 04391276 04391158 04390977 00654400 00125436 -tap-off n 1 2 @ #p 1 0 00481666 -tap_dance n 1 3 @ ~ + 1 0 00527872 -tap_dancer n 1 1 @ 1 0 10691148 -tap_dancing n 1 2 @ ~ 1 0 00527872 -tap_house n 1 2 @ ~ 1 0 04395875 -tap_water n 1 1 @ 1 0 07936177 -tap_wrench n 1 1 @ 1 0 04393913 -tapa n 2 1 @ 2 0 13162945 04391445 -tapa_bark n 1 1 @ 1 0 13162945 -tape n 5 3 @ ~ + 5 2 04391569 04391838 08683986 04392113 03708036 -tape_cartridge n 1 1 @ 1 0 04392370 -tape_deck n 1 4 @ ~ #p %p 1 0 04392526 -tape_drive n 1 2 @ #p 1 0 04392764 -tape_grass n 1 2 @ #m 1 0 12615232 -tape_machine n 1 3 @ ~ %p 1 0 04393095 -tape_measure n 1 1 @ 1 0 04392113 -tape_player n 1 1 @ 1 0 04392985 -tape_recorder n 1 4 @ ~ %p + 1 1 04393095 -tape_recording n 1 3 @ ~ + 1 0 04391838 -tape_transport n 1 2 @ #p 1 0 04392764 -tapeline n 1 1 @ 1 0 04392113 -tapenade n 1 1 @ 1 0 07858336 -taper n 4 5 @ ~ #p %p + 4 0 13902793 05071368 04581829 02948072 -taper_file n 1 2 ! @ 1 0 04393301 -tapering n 1 2 @ + 1 0 00353611 -tapestry n 3 2 @ %p 3 1 04767023 04393549 04393404 -tapestry_moth n 1 2 @ #m 1 0 02292692 -tapeworm n 1 3 @ ~ #m 1 0 01927456 -tapeworm_infection n 1 1 @ 1 0 14185620 -taphephobia n 1 1 @ 1 0 14384509 -taphouse n 1 4 @ ~ %p ; 1 0 04018399 -taping n 1 3 @ ~ + 1 0 04391838 -tapioca n 1 3 @ #s %s 1 0 07619881 -tapioca_plant n 1 3 @ %s %p 1 0 12926689 -tapioca_pudding n 1 1 @ 1 0 07620047 -tapir n 1 3 @ ~ #m 1 0 02393580 -tapiridae n 1 3 @ #m %m 1 0 02393300 -tapirus n 1 3 @ #m %m 1 0 02393445 -tapirus_indicus n 1 1 @ 1 0 02393940 -tapirus_terrestris n 1 1 @ 1 0 02393807 -tapis n 1 1 @ 1 0 04393549 -tapotement n 1 1 @ 1 0 00660324 -tappa n 2 1 @ 2 0 13162945 04391445 -tappa_bark n 1 1 @ 1 0 13162945 -tappan n 1 1 @ 1 0 11331192 -tappan_zee_bridge n 1 2 @ #p 1 0 04393681 -tapper n 5 2 @ + 5 0 10691764 10691600 10691485 10691318 10691148 -tappet n 1 1 @ 1 0 04393808 -tappet_wrench n 1 2 @ ~ 1 0 03848168 -tapping n 1 3 @ ~ + 1 1 07396658 -taproom n 1 3 @ ~ #p 1 0 02796995 -taproot n 2 2 @ ; 2 0 13126050 05834946 -taps n 1 2 @ ; 1 0 06804483 -tapster n 1 2 @ + 1 0 10691764 -tar n 2 3 @ ~ + 2 1 14911704 10294602 -tar-wood n 2 2 @ #m 2 0 11655592 11654438 -tar_heel_state n 1 4 @ #m #p %p 1 0 09126305 -tar_paper n 1 1 @ 1 0 14976001 -tar_pit n 1 1 @ 1 0 09454744 -tara n 1 2 @ #p 1 0 08889784 -tara_vine n 1 2 @ #m 1 0 12371202 -tarabulus n 1 2 @ #p 1 0 08957993 -tarabulus_al-gharb n 1 2 @ #p 1 0 08960099 -tarabulus_ash-sham n 1 2 @ #p 1 0 08957993 -taracahitian n 1 2 @ ~ 1 0 09670280 -taradiddle n 2 3 @ ~ ; 2 0 06757057 06611147 -tarahumara n 1 1 @ 1 0 09670521 -tarahumara_frog n 1 2 @ #m 1 0 01642391 -taraktagenos n 1 3 @ #m %m 1 0 12379278 -taraktagenos_kurzii n 1 2 @ #m 1 0 12379531 -taraktogenos n 1 3 @ #m %m 1 0 12379278 -taraktogenos_kurzii n 1 2 @ #m 1 0 12379531 -tarantella n 2 1 @ 2 0 07057948 00533805 -tarantelle n 1 1 @ 1 0 00533805 -tarantino n 1 1 @ 1 0 11331300 -tarantism n 1 1 @ 1 0 14095742 -tarantula n 2 2 @ #m 2 0 01775370 01774750 -taras_grigoryevich_shevchenko n 1 1 @ 1 0 11298519 -tarawa n 2 3 @ #p ; 2 0 08840964 01296697 -tarawa-makin n 1 3 @ #p ; 1 0 01296697 -taraxacum n 1 3 @ #m %m 1 0 12023996 -taraxacum_kok-saghyz n 1 1 @ 1 0 12024805 -taraxacum_officinale n 1 2 @ %p 1 0 12024445 -taraxacum_ruderalia n 1 2 @ %p 1 0 12024445 -tarbell n 1 1 @ 1 0 11331442 -tarboosh n 1 1 @ 1 0 03331077 -tarchanoff_phenomenon n 1 2 @ #p 1 0 00860011 -tardigrada n 1 3 @ #m %m 1 0 01783936 -tardigrade n 1 3 @ #m %p 1 0 01784293 -tardiness n 1 3 ! @ + 1 0 05047956 -tardive_dyskinesia n 1 1 @ 1 0 14092704 -tare n 5 4 @ ~ #m ; 5 0 13275137 12575679 12125183 05028429 04394031 -tareekh_e_kasas n 1 2 @ ; 1 0 08045428 -taret_organ n 1 2 @ ; 1 0 05516230 -target n 5 4 @ ~ %p + 5 5 07262108 10470460 08660934 04394261 05981230 -target_acquisition_system n 1 1 @ 1 0 04394421 -target_area n 1 2 @ ~ 1 1 08660934 -target_cell n 2 1 @ 2 0 05608206 05455206 -target_company n 1 2 @ ~ 1 0 08076075 -target_language n 2 1 @ 2 1 06284067 06900507 -target_organ n 1 2 @ ; 1 0 05516067 -target_practice n 1 1 @ 1 1 00898425 -target_program n 1 1 @ 1 0 06576893 -target_range n 1 2 @ ~ 1 0 03349150 -tarheel n 1 1 @ 1 0 09744834 -taricha n 1 3 @ #m %m 1 0 01631035 -taricha_granulosa n 1 2 @ #m 1 0 01631354 -taricha_torosa n 1 1 @ 1 0 01631512 -tariff n 1 3 @ ~ + 1 1 13315999 -tarkovsky n 1 1 @ 1 0 11331669 -tarmac n 2 2 @ + 2 0 14977188 04394630 -tarmacadam n 2 1 @ 2 0 14977188 04394630 -tarn n 1 1 @ 1 0 09454642 -tarnish n 1 2 @ + 1 0 04695963 -tarnished_plant_bug n 1 1 @ 1 0 02238358 -taro n 3 5 @ #m #s #p %p 3 0 11786843 11786539 07736813 -taro_plant n 1 3 @ #m %p 1 0 11786539 -taro_root n 1 3 @ #s #p 1 0 07736813 -tarot n 1 1 @ 1 0 04394821 -tarot_card n 1 1 @ 1 0 04394821 -tarp n 1 1 @ 1 0 04395024 -tarpan n 1 1 @ 1 0 02381609 -tarpaulin n 1 1 @ 1 1 04395024 -tarpon n 1 3 @ ~ #m 1 0 02541687 -tarpon_atlanticus n 1 3 @ ~ #m 1 0 02541687 -tarquin n 1 1 @ 1 0 11331804 -tarquin_the_proud n 1 1 @ 1 0 11331804 -tarquinius n 1 1 @ 1 0 11331804 -tarquinius_superbus n 1 1 @ 1 0 11331804 -tarradiddle n 2 3 @ ~ ; 2 0 06757057 06611147 -tarragon n 2 3 @ #p %p 2 0 11930203 07821610 -tarriance n 1 2 @ + 1 0 01068423 -tarrietia n 1 3 @ #m %m 1 0 12201166 -tarrietia_argyrodendron n 1 2 @ #m 1 0 12201331 -tarsal n 1 3 @ #p + 1 0 05281874 -tarsal_bone n 1 2 @ #p 1 0 05281874 -tarsal_gland n 1 1 @ 1 0 05328508 -tarsier n 1 3 @ ~ #m 1 0 02501583 -tarsiidae n 1 3 @ #m %m 1 0 02501275 -tarsioidea n 1 3 @ #m %m 1 0 02501101 -tarsitis n 1 1 @ 1 0 14356497 -tarsius n 1 3 @ #m %m 1 0 02501432 -tarsius_glis n 1 1 @ 1 0 02502006 -tarsius_syrichta n 1 1 @ 1 0 02501923 -tarsus n 1 4 @ #p %p + 1 0 05594822 -tart n 3 4 @ ~ + ; 3 0 10485440 07623933 07623664 -tartan n 1 1 @ 1 0 04395106 -tartar n 4 2 @ + 4 0 15013269 10029729 09644657 09454925 -tartar_emetic n 1 1 @ 1 0 14955391 -tartar_sauce n 1 1 @ 1 0 07831450 -tartar_steak n 1 1 @ 1 0 07877675 -tartare_sauce n 1 1 @ 1 0 07831450 -tartarian_honeysuckle n 1 2 @ #m 1 0 12676940 -tartaric_acid n 1 2 @ ~ 1 0 15067576 -tartarus n 1 2 @ + 1 0 05630277 -tartary n 1 2 @ #p 1 0 08968390 -tartlet n 1 2 @ + 1 0 07624339 -tartness n 3 3 @ ~ + 3 0 05716744 04994126 04643397 -tartrate n 1 2 @ ~ 1 0 14955559 -tartu n 1 3 @ #m #p 1 0 09012735 -tartufe n 1 1 @ 1 0 10691937 -tartuffe n 1 1 @ 1 0 10691937 -tarweed n 2 3 @ ~ #m 2 0 11994150 11973341 -tarwood n 2 2 @ #m 2 0 11655592 11654438 -tarzan n 2 1 @ 2 0 10692090 09603761 -tarzan_of_the_apes n 1 1 @ 1 0 09603761 -tashkent n 1 2 @ #p 1 0 09022538 -tashmit n 1 2 @ ; 1 0 09522121 -tashmitum n 1 2 @ ; 1 0 09522121 -tashunca-uitco n 1 1 @ 1 0 10914779 -task n 2 3 @ ~ + 2 2 00795720 00719705 -task_force n 2 2 @ ; 2 1 08190609 08208444 -taskent n 1 2 @ #p 1 0 09022538 -taskmaster n 1 2 @ ~ 1 0 10692269 -taskmistress n 1 1 @ 1 0 10692405 -tasman n 1 1 @ 1 0 11332068 -tasman_dwarf_pine n 1 2 @ #m 1 0 11657153 -tasman_sea n 1 2 @ #p 1 0 09455046 -tasmania n 2 4 @ #p %p + 2 0 08834123 08833981 -tasmanian_devil n 1 2 @ #m 1 0 01884834 -tasmanian_tiger n 1 2 @ #m 1 0 01884476 -tasmanian_wolf n 1 2 @ #m 1 0 01884476 -tasse n 1 2 @ #p 1 0 04395332 -tassel n 1 2 @ ~ 1 0 04395201 -tassel_flower n 3 2 @ #m 3 0 11963572 11963305 11823572 -tassel_hyacinth n 1 1 @ 1 0 12461109 -tasset n 1 2 @ #p 1 0 04395332 -tasso n 1 1 @ 1 0 11332250 -taste n 7 5 @ ~ #p = + 7 4 05715283 07498210 05749619 07288024 07578879 05658226 00882702 -taste-maker n 1 1 @ 1 0 10728233 -taste-tester n 1 2 @ ~ 1 0 10692482 -taste_bud n 1 3 @ #p %p 1 0 05305136 -taste_cell n 1 2 @ #p 1 0 05305389 -taste_perception n 1 2 @ ~ 1 0 05715283 -taste_property n 1 3 @ ~ = 1 0 04992163 -taste_sensation n 1 2 @ ~ 1 0 05715283 -taste_tester n 1 2 @ ~ 1 0 10692482 -tastebud n 1 3 @ #p %p 1 0 05305136 -tastefulness n 1 3 ! @ + 1 0 04813395 -tastelessness n 2 4 ! @ ~ + 2 0 04997032 04818284 -taster n 1 3 @ ~ + 1 0 10692482 -tastiness n 1 2 @ + 1 0 04995421 -tasting n 3 3 @ + - 3 0 05822612 00882702 00841901 -tat n 2 2 @ + 2 0 04818460 01008097 -tatahumara n 1 1 @ 1 0 06919023 -tatar n 3 1 @ 3 0 09644657 09644332 06927228 -tatary n 1 2 @ #p 1 0 08968390 -tate n 1 1 @ 1 0 11332423 -tater n 1 4 @ ~ #p %p 1 0 07710616 -tati n 1 1 @ 1 0 11332572 -tatou n 1 1 @ 1 0 02456008 -tatouay n 1 2 @ #m 1 0 02455428 -tatter n 1 2 @ ~ 1 0 04045941 -tatterdemalion n 1 2 @ + 1 0 10504664 -tatting n 2 2 @ + 2 0 04395495 00909672 -tattle n 1 2 @ + 1 0 06805297 -tattler n 2 3 @ ~ + 2 0 10692696 02030287 -tattletale n 1 1 @ 1 0 10692696 -tattletale_gray n 1 1 @ 1 0 04962689 -tattletale_grey n 1 1 @ 1 1 04962689 -tattoo n 3 3 @ + ; 3 0 06805497 04395651 00263353 -tatu n 1 1 @ 1 0 02456008 -tatum n 2 1 @ 2 0 11332892 11332688 -tau n 1 2 @ #m 1 0 06836059 -tau-minus_particle n 1 1 @ 1 0 09455206 -tau-plus_particle n 1 1 @ 1 0 09200419 -tau_coefficient_of_correlation n 1 2 @ ; 1 0 06035213 -tau_cross n 1 1 @ 1 0 04395760 -taunt n 1 2 @ + 1 1 01222859 -taunting n 1 2 @ + 1 0 01222859 -tauon n 1 1 @ 1 0 09455206 -taupe n 1 2 @ + 1 0 04974774 -taurine n 1 1 @ 1 0 14656926 -tauromachy n 1 2 @ %p 1 0 00452034 -taurotragus n 1 3 @ #m %m 1 0 02426634 -taurotragus_derbianus n 1 2 @ #m 1 0 02427183 -taurotragus_oryx n 1 2 @ #m 1 0 02427032 -taurus n 4 4 @ #p %m ; 4 0 11201386 09752381 09455306 08686332 -taurus_the_bull n 1 1 @ 1 0 08686332 -tautness n 2 3 @ ~ + 2 0 14544335 04776940 -tautog n 1 2 @ #m 1 0 02610066 -tautoga n 1 3 @ #m %m 1 0 02609951 -tautoga_onitis n 1 2 @ #m 1 0 02610066 -tautogolabrus n 1 3 @ #m %m 1 0 02610234 -tautogolabrus_adspersus n 1 2 @ #m 1 0 02610373 -tautology n 2 3 @ + ; 2 0 07091385 07091214 -tavern n 1 2 @ ~ 1 1 04395875 -tavern_keeper n 1 3 @ ~ ; 1 0 10490421 -taw n 2 2 @ #p 2 0 06839083 04396093 -tawdriness n 1 2 @ + 1 0 04818700 -tawney n 1 1 @ 1 0 11333071 -tawniness n 1 2 @ + 1 0 04978050 -tawny_eagle n 1 2 @ #m 1 0 01614556 -tawny_owl n 1 2 @ #m 1 0 01622959 -tawse n 1 2 @ ; 1 0 04396226 -tax n 1 4 @ ~ + - 1 1 13308999 -tax-exempt n 1 1 @ 1 0 13417289 -tax-exempt_security n 1 1 @ 1 0 13417289 -tax-increase n 1 1 @ 1 0 05110988 -tax_advantage n 1 1 @ 1 1 13313591 -tax_assessment n 1 1 @ 1 0 05146178 -tax_assessor n 1 2 @ ~ 1 0 10692883 -tax_avoidance n 1 1 @ 1 0 01079951 -tax_base n 1 1 @ 1 0 13309776 -tax_benefit n 1 1 @ 1 0 13298537 -tax_bill n 1 1 @ 1 0 06517867 -tax_boost n 1 1 @ 1 0 05110988 -tax_bracket n 1 1 @ 1 0 08006250 -tax_break n 1 1 @ 1 0 13298537 -tax_collection n 1 1 @ 1 0 01016748 -tax_collector n 1 1 @ 1 0 10693052 -tax_credit n 1 1 @ 1 0 13378968 -tax_cut n 1 1 @ 1 0 00353100 -tax_deduction n 1 2 @ ~ 1 0 13329047 -tax_evasion n 1 1 @ 1 0 00741797 -tax_form n 1 1 @ 1 0 06476384 -tax_haven n 1 1 @ 1 0 08661170 -tax_hike n 1 1 @ 1 0 05110988 -tax_income n 1 2 @ ~ 1 0 13261916 -tax_law n 1 2 @ ; 1 0 08456619 -tax_liability n 1 1 @ 1 0 13309956 -tax_lien n 1 2 @ ~ 1 0 13402690 -tax_policy n 1 1 @ 1 0 05901410 -tax_program n 1 1 @ 1 0 05901410 -tax_rate n 1 1 @ 1 0 13309865 -tax_return n 1 2 @ ~ 1 1 06548671 -tax_revenue n 1 2 @ ~ 1 0 13261916 -tax_shelter n 1 1 @ 1 0 13313733 -tax_system n 1 2 @ ; 1 0 05904010 -tax_write-off n 1 2 @ ~ 1 0 13329047 -taxability n 1 2 @ + 1 0 14530563 -taxaceae n 1 3 @ #m %m 1 0 11660979 -taxales n 1 2 @ #m 1 0 11660848 -taxation n 3 4 @ ~ + - 3 0 13308999 13261916 01160170 -taxer n 1 2 @ + 1 0 10693235 -taxi n 1 4 @ ~ #m + 1 1 02930766 -taxi_dancer n 1 1 @ 1 0 10693334 -taxi_fare n 1 1 @ 1 0 13308543 -taxi_rank n 1 1 @ 1 0 08517966 -taxi_strip n 1 2 @ #p 1 1 04396466 -taxicab n 1 3 @ ~ #m 1 0 02930766 -taxidea n 1 3 @ #m %m 1 0 02447591 -taxidea_taxus n 1 2 @ #m 1 0 02447762 -taxidermist n 1 2 @ + 1 0 10693459 -taxidermy n 1 2 @ + 1 0 05636402 -taxidriver n 1 1 @ 1 1 10693646 -taximan n 1 1 @ 1 0 10693646 -taximeter n 1 1 @ 1 0 04396335 -taxis n 2 2 @ ~ 2 0 00862686 00692991 -taxistand n 1 1 @ 1 0 08517966 -taxiway n 1 2 @ #p 1 0 04396466 -taxman n 1 1 @ 1 0 10693052 -taxodiaceae n 1 2 @ #m 1 0 11639609 -taxodium n 1 3 @ #m %m 1 0 11641788 -taxodium_ascendens n 1 2 @ #m 1 0 11642243 -taxodium_distichum n 1 2 @ #m 1 0 11641963 -taxodium_mucronatum n 1 3 @ ~ #m 1 0 11642430 -taxon n 1 2 @ ~ 1 0 07992450 -taxonomer n 1 2 @ ~ 1 0 10693824 -taxonomic_category n 1 2 @ ~ 1 0 07992450 -taxonomic_group n 1 2 @ ~ 1 0 07992450 -taxonomist n 1 3 @ ~ + 1 0 10693824 -taxonomy n 3 4 @ ~ + ; 3 0 08378356 06153186 01013770 -taxophytina n 1 2 @ #m 1 0 11660537 -taxopsida n 1 2 @ #m 1 0 11660537 -taxpayer n 1 2 @ ~ 1 1 10694163 -taxus n 1 3 @ #m %m 1 0 11661207 -taxus_baccata n 1 2 @ #m 1 0 11661909 -taxus_brevifolia n 1 2 @ #m 1 0 11662128 -taxus_cuspidata n 1 2 @ #m 1 0 11662371 -taxus_floridana n 1 2 @ #m 1 0 11662585 -tay n 1 1 @ 1 0 06935911 -tay-sachs n 1 1 @ 1 0 14169364 -tay-sachs_disease n 1 1 @ 1 0 14169364 -tayalic n 1 1 @ 1 0 06940854 -tayassu n 1 3 @ #m %m 1 0 02397377 -tayassu_angulatus n 1 1 @ 1 0 02397744 -tayassu_pecari n 1 1 @ 1 0 02397987 -tayassu_tajacu n 1 1 @ 1 0 02397744 -tayassuidae n 1 3 @ #m %m 1 0 02397251 -taylor n 3 1 @ 3 0 11333601 11333390 11333237 -taymyr_peninsula n 1 2 @ #p 1 0 09022132 -tayra n 1 2 @ #m 1 0 02451415 -tazicef n 1 2 @ ; 1 0 02989685 -tazir_crime n 1 2 @ ; 1 0 00774506 -tb n 5 5 @ ~ #s #p %p 5 0 14657566 14143415 13629854 13629676 13629482 -tbilisi n 1 2 @ #p 1 0 09019194 -tbit n 1 3 @ #p %p 1 0 13629854 -tc n 2 2 @ #m 2 0 14657047 08296500 -tce n 1 1 @ 1 0 14851414 -tchad n 1 4 @ #p %m %p 1 0 08720037 -tchaikovsky n 1 1 @ 1 0 11333762 -tchotchke n 2 2 @ ; 2 0 09905530 02998696 -tchotchkeleh n 1 2 @ ; 1 0 09905530 -tcp n 1 2 @ #p 1 0 06666210 -tcp/ip n 1 2 @ %p 1 0 06666486 -tdt n 1 2 @ ; 1 0 15156746 -te n 2 2 @ #s 2 0 14657228 06869129 -te_deum n 1 1 @ 1 0 07037384 -te_kanawa n 1 1 @ 1 0 11334773 -tea n 5 8 @ ~ #m #s #p %s %p ; 5 2 07933274 07575510 12929783 08254741 07932841 -tea-like_drink n 1 1 @ 1 0 07933530 -tea-strainer n 1 1 @ 1 0 04398834 -tea_bag n 2 1 @ 2 0 07933154 04396808 -tea_ball n 1 1 @ 1 0 04396902 -tea_biscuit n 1 2 @ ; 1 0 07634901 -tea_bread n 1 1 @ 1 0 07681264 -tea_break n 1 1 @ 1 0 07577918 -tea_caddy n 1 1 @ 1 0 02935387 -tea_cart n 1 1 @ 1 0 04397027 -tea_ceremony n 1 2 @ ; 1 0 01027231 -tea_chest n 1 1 @ 1 0 04397168 -tea_cloth n 1 1 @ 1 0 04397378 -tea_cosy n 1 1 @ 1 0 03114379 -tea_cozy n 1 1 @ 1 0 03114379 -tea_family n 1 3 @ #m %m 1 0 12929061 -tea_garden n 1 1 @ 1 0 04397553 -tea_gown n 1 1 @ 1 0 04397645 -tea_leaf n 1 4 @ ~ #s #p 1 0 07932841 -tea_maker n 1 1 @ 1 0 04397860 -tea_napkin n 1 1 @ 1 0 04397949 -tea_parlor n 1 3 @ ~ ; 1 0 04398497 -tea_parlour n 1 3 @ ~ ; 1 0 04398497 -tea_party n 1 1 @ 1 1 07450463 -tea_rose n 1 1 @ 1 0 12622483 -tea_service n 1 2 @ %m 1 1 04398309 -tea_set n 1 2 @ %m 1 0 04398309 -tea_table n 1 1 @ 1 0 04398951 -tea_tortrix n 1 2 @ #m 1 0 02284611 -tea_towel n 1 1 @ 1 0 03207835 -tea_tray n 1 2 @ #m 1 0 04399046 -tea_trolley n 1 1 @ 1 0 04397027 -tea_urn n 1 1 @ 1 0 04399158 -tea_wagon n 1 1 @ 1 0 04397027 -teaberry n 2 5 @ #m #p %s %p 2 0 12235765 07743723 -teacake n 2 3 @ ~ ; 2 0 07634901 07634751 -teacart n 1 1 @ 1 1 04397027 -teach n 1 1 @ 1 0 11334003 -teach-in n 1 1 @ 1 0 07145783 -teacher n 2 4 @ ~ #m + 2 2 10694258 05854812 -teacher's_certificate n 1 1 @ 1 0 06479494 -teacher's_pet n 1 1 @ 1 0 10694849 -teacher-student_relation n 1 2 @ %m 1 0 13840553 -teachers_college n 1 1 @ 1 0 08412620 -teachership n 1 2 @ + 1 0 00604811 -teaching n 3 5 @ ~ %p + - 3 3 00887081 06185955 00883297 -teaching_aid n 1 2 @ ~ 1 0 04397261 -teaching_certificate n 1 1 @ 1 1 06479494 -teaching_fellow n 1 1 @ 1 0 10694939 -teaching_method n 1 2 @ ~ 1 1 05660937 -teaching_reading n 1 2 @ ~ 1 0 00888284 -teacup n 2 2 @ %p 2 0 13770635 04397452 -teacupful n 1 1 @ 1 0 13770635 -teahouse n 1 3 @ ~ ; 1 0 04398497 -teak n 2 4 @ #m #s %s 2 0 12916723 12916511 -teakettle n 1 1 @ 1 1 04397768 -teakwood n 1 2 @ #s 1 1 12916723 -teal n 2 4 @ ~ #m + 2 0 04968426 01848123 -team n 2 5 @ ~ %m %p + 2 2 08208560 07985384 -team_spirit n 1 1 @ 1 1 04625129 -team_sport n 1 1 @ 1 0 00887544 -team_teaching n 1 1 @ 1 0 00887702 -teammate n 1 1 @ 1 1 10695050 -teamster n 2 2 @ + 2 1 10695333 10695192 -teamsters_union n 1 1 @ 1 0 08233627 -teamwork n 1 1 @ 1 0 01203494 -teapot n 1 2 @ #m 1 0 04398044 -teapot_dome n 1 1 @ 1 0 07306680 -teapot_dome_scandal n 1 1 @ 1 0 07306680 -tear n 4 5 @ ~ #p %s + 4 2 05405324 09410928 00510723 00391086 -tear_duct n 1 2 @ #p 1 0 05331812 -tear_gas n 1 2 @ ~ 1 0 15067877 -tear_gland n 1 2 @ #p 1 0 05331653 -tear_sac n 1 2 @ #p 1 0 05331988 -tear_sheet n 1 1 @ 1 0 06257141 -tearaway n 1 2 @ ; 1 0 10695450 -teardrop n 2 3 @ #p %s 2 0 13901925 05405324 -tearfulness n 1 2 @ + 1 0 07534278 -teargas n 1 2 @ ~ 1 0 15067877 -tearing n 1 2 @ + 1 0 13505843 -tearing_down n 1 1 @ 1 0 00218045 -tearjerker n 1 1 @ 1 0 06374148 -tearoom n 1 3 @ ~ ; 1 0 04398497 -tears n 1 2 @ ~ 1 1 00868196 -teasdale n 1 1 @ 1 0 11334215 -tease n 3 2 @ + 3 1 10695555 09965134 00425905 -teasel n 1 3 @ ~ #m 1 0 12682411 -teaser n 7 4 @ ~ + ; 7 0 10695822 10695555 07250868 06784639 06397645 04456276 04398167 -teashop n 1 3 @ ~ ; 1 0 04398497 -teasing n 3 2 @ + 3 1 00425905 00513841 00256961 -teasle n 1 3 @ ~ #m 1 0 12682411 -teaspoon n 2 2 @ ~ 2 0 13770729 04398688 -teaspoonful n 1 1 @ 1 1 13770729 -teat n 1 2 @ #p 1 1 05554653 -teatime n 1 2 @ ; 1 0 07575510 -teazel n 1 3 @ ~ #m 1 0 12682411 -tebaldi n 1 1 @ 1 0 11334317 -tebet n 1 3 @ #p %p 1 0 15215068 -tebibit n 1 3 @ #p %p 1 0 13630036 -tebibyte n 1 3 @ #p %p 1 0 13629482 -tec n 1 2 @ ~ 1 0 10009276 -tech n 1 2 @ ~ 1 0 08285246 -techie n 1 2 @ ; 1 0 10695917 -technetium n 1 1 @ 1 0 14657047 -technical n 2 2 @ ; 2 0 04399269 00771356 -technical_analysis n 1 2 @ ; 1 0 00649266 -technical_analysis_of_stock_trends n 1 2 @ ; 1 0 00649266 -technical_analyst n 1 1 @ 1 0 09910840 -technical_foul n 1 2 @ ; 1 0 00771356 -technical_knockout n 1 1 @ 1 0 00134246 -technical_school n 1 2 @ ~ 1 1 08285246 -technical_sergeant n 1 1 @ 1 0 10696101 -technicality n 1 2 @ + 1 0 05820462 -technician n 2 3 @ ~ + 2 1 10696251 10696508 -technicolor n 1 1 @ 1 0 05667086 -technique n 2 3 @ ~ + 2 2 05665146 05643190 -techno n 1 1 @ 1 0 07058064 -technobabble n 1 1 @ 1 0 07088319 -technocracy n 1 1 @ 1 0 08363106 -technocrat n 2 2 @ #m 2 0 10696755 10696672 -technological_revolution n 1 1 @ 1 1 15260277 -technologist n 1 3 @ ~ + 1 0 09615807 -technology n 2 4 @ ~ + - 2 2 00949619 06125041 -technology_administration n 1 3 @ #p %p 1 0 08130712 -technophile n 1 2 ! @ 1 0 10696888 -technophilia n 1 1 @ 1 0 07555775 -technophobe n 1 2 ! @ 1 0 10697013 -technophobia n 1 1 @ 1 0 07504258 -tecophilaeacea n 1 2 @ #m 1 0 12465107 -tectaria n 1 3 @ #m %m 1 0 13201239 -tectaria_cicutaria n 1 2 @ #m 1 0 13201423 -tectaria_macrodonta n 1 2 @ #m 1 0 13201566 -tectona n 1 3 @ #m %m 1 0 12916356 -tectona_grandis n 1 3 @ #m %s 1 0 12916511 -tectonic_movement n 1 2 @ ; 1 0 07310338 -tectonics n 2 3 @ #p - 2 0 06124395 06118370 -tecumseh n 1 1 @ 1 0 11334428 -tecumtha n 1 1 @ 1 0 11334428 -ted n 1 2 @ ; 1 0 10697135 -ted_hughes n 1 1 @ 1 0 11065229 -ted_shawn n 1 1 @ 1 0 11296602 -ted_williams n 1 1 @ 1 0 11389901 -teddy n 2 2 @ %p 2 0 04399382 03013580 -teddy_bear n 1 1 @ 1 0 04399382 -teddy_boy n 1 2 @ ; 1 0 10697135 -teddy_boys n 1 1 @ 1 0 08370204 -tediousness n 1 3 @ ~ + 1 0 05206237 -tedium n 2 3 @ ~ + 2 0 07539790 05206237 -tee n 3 3 @ #p + 3 1 08661277 04399700 04399537 -tee_hinge n 1 1 @ 1 0 04399846 -tee_shirt n 1 2 @ ~ 1 0 03595614 -teeing_ground n 1 2 @ #p 1 0 08661277 -teemingness n 1 3 @ ~ + 1 0 05115040 -teen n 1 2 @ ~ 1 0 09772029 -teenager n 1 2 @ ~ 1 1 09772029 -teens n 2 2 @ #p 2 1 15148467 13747114 -teeoff n 1 2 @ + 1 0 00574077 -teepee n 1 1 @ 1 0 04412416 -teeter n 1 2 @ #p 1 0 04167759 -teeter-totter n 1 2 @ #p 1 0 04167759 -teeterboard n 1 2 @ #p 1 0 04167759 -teetertotter n 1 2 @ #p 1 0 04167759 -teeth n 1 4 @ ~ #p %m 1 0 05282433 -teething n 1 3 @ ~ + 1 0 13565781 -teething_ring n 1 1 @ 1 0 03075768 -teetotaler n 1 1 @ 1 1 10697282 -teetotaling n 1 1 @ 1 0 01069867 -teetotalism n 1 2 @ + 1 0 01069867 -teetotalist n 1 2 @ + 1 0 10697282 -teetotaller n 1 2 @ + 1 0 10697282 -teetotum n 1 2 @ ~ 1 0 04454240 -teff n 1 1 @ 1 0 12120347 -teff_grass n 1 1 @ 1 0 12120347 -tefillin n 1 2 @ ; 1 0 06856189 -teflon n 1 2 @ ; 1 0 14596398 -teg n 1 1 @ 1 0 02412909 -tegu n 1 2 @ #p 1 0 08956461 -tegucigalpa n 1 2 @ #p 1 0 08738014 -tegument n 1 5 @ ~ #p %s %p 1 0 05238282 -teheran n 1 2 @ #p 1 0 08911421 -tehran n 1 2 @ #p 1 0 08911421 -teiid n 1 3 @ ~ #m 1 0 01685439 -teiid_lizard n 1 3 @ ~ #m 1 0 01685439 -teiidae n 1 3 @ #m %m 1 0 01685277 -teilhard_de_chardin n 1 1 @ 1 0 11334609 -teju n 1 2 @ #m 1 0 01687128 -tekki n 1 2 @ ; 1 0 10695917 -tektite n 1 1 @ 1 0 14880690 -tel_aviv n 1 3 @ #p %p 1 1 08797840 -tel_aviv-jaffa n 1 3 @ #p %p 1 0 08797840 -tel_aviv-yalo n 1 3 @ #p %p 1 0 08797840 -telamon n 1 1 @ 1 0 02752810 -telanthera n 1 2 @ #m 1 0 11826999 -telco n 1 1 @ 1 0 08186221 -telco_building n 1 1 @ 1 0 04400109 -telecast n 1 3 @ %p + 1 0 06622595 -telecaster n 1 2 @ + 1 0 10697420 -telecasting n 1 5 @ ~ %p + - 1 0 06277280 -telecom n 1 4 @ ~ ; - 1 0 06271778 -telecom_equipment n 1 2 @ ~ 1 0 04400289 -telecom_hotel n 1 1 @ 1 0 04400109 -telecom_system n 1 2 @ ~ 1 0 04400289 -telecommerce n 1 2 @ ~ 1 0 01116026 -telecommunication n 2 5 @ ~ + ; - 2 0 06271778 06128307 -telecommunication_equipment n 1 2 @ ~ 1 0 04400289 -telecommunication_system n 1 2 @ ~ 1 0 04400289 -telecommuting n 1 1 @ 1 0 00585018 -teleconference n 1 1 @ 1 0 07145958 -teleconferencing n 1 1 @ 1 0 07145958 -telefilm n 1 1 @ 1 0 06614628 -telegnosis n 1 2 @ + 1 0 07256230 -telegram n 1 2 @ ~ 1 1 06622709 -telegraph n 1 2 @ + 1 1 04400499 -telegraph_form n 1 1 @ 1 1 06476475 -telegraph_key n 1 1 @ 1 0 04400737 -telegraph_line n 1 2 @ ~ 1 0 04402984 -telegraph_operator n 1 1 @ 1 1 10697519 -telegraph_plant n 1 2 @ #m 1 0 12518013 -telegraph_pole n 1 1 @ 1 0 04402449 -telegraph_post n 1 1 @ 1 0 04402449 -telegraph_wire n 1 2 @ ~ 1 0 04402984 -telegrapher n 1 2 @ + 1 1 10697519 -telegraphese n 1 1 @ 1 0 07157000 -telegraphic_signal n 1 2 @ ~ 1 0 06805665 -telegraphist n 1 2 @ + 1 0 10697519 -telegraphy n 2 3 @ + - 2 1 06274921 04400499 -telekinesis n 1 1 @ 1 0 07257045 -telemann n 1 1 @ 1 0 11334925 -telemark n 1 1 @ 1 0 00441686 -telemarketing n 1 2 @ ~ 1 0 01116026 -telemeter n 1 2 @ #p 1 0 04400899 -telemetry n 1 1 @ 1 0 01116206 -telemetry_intelligence n 1 1 @ 1 0 00983482 -telencephalon n 1 3 @ #p %p 1 0 05496802 -teleologist n 1 2 @ + 1 0 10697782 -teleology n 1 3 @ + ; 1 0 05977619 -teleost n 1 3 @ ~ #m 1 0 02528163 -teleost_fish n 1 3 @ ~ #m 1 0 02528163 -teleostan n 1 3 @ ~ #m 1 0 02528163 -teleostei n 1 3 @ #m %m 1 0 02527813 -telepathist n 2 2 @ + 2 0 10697879 10319580 -telepathy n 1 2 @ + 1 1 07255998 -telephone n 2 6 @ ~ #p %p + - 2 2 04401088 06272290 -telephone_bell n 1 1 @ 1 0 04401578 -telephone_bill n 1 1 @ 1 0 06517663 -telephone_book n 1 2 @ ~ 1 0 06423754 -telephone_booth n 1 1 @ 1 1 04401680 -telephone_box n 1 1 @ 1 0 04401680 -telephone_call n 1 2 @ ~ 1 1 06272803 -telephone_circuit n 1 2 @ ~ 1 0 04402057 -telephone_company n 1 1 @ 1 1 08186221 -telephone_conversation n 1 1 @ 1 0 07142005 -telephone_cord n 1 1 @ 1 0 04401828 -telephone_dial n 1 3 @ #p %p 1 0 03186818 -telephone_directory n 1 2 @ ~ 1 1 06423754 -telephone_exchange n 1 3 @ ~ #p 1 0 02994858 -telephone_extension n 1 1 @ 1 0 03306869 -telephone_interview n 1 1 @ 1 0 07196575 -telephone_jack n 1 1 @ 1 0 04401949 -telephone_kiosk n 1 1 @ 1 0 04401680 -telephone_line n 2 2 @ ~ 2 1 04402984 04402057 -telephone_message n 1 1 @ 1 0 06276287 -telephone_number n 1 1 @ 1 1 06426111 -telephone_operator n 1 1 @ 1 1 10698064 -telephone_order n 1 1 @ 1 1 01116876 -telephone_plug n 1 1 @ 1 0 04402342 -telephone_pole n 1 1 @ 1 1 04402449 -telephone_receiver n 1 3 @ ~ #p 1 0 04402580 -telephone_service n 1 1 @ 1 0 08186221 -telephone_set n 1 4 @ ~ #p %p 1 0 04401088 -telephone_system n 1 3 @ ~ %p 1 0 04402746 -telephone_unit n 1 2 @ ~ 1 0 13608480 -telephone_wire n 1 2 @ ~ 1 1 04402984 -telephoner n 1 2 @ + 1 0 09888017 -telephonist n 1 2 @ + 1 0 10698064 -telephony n 1 4 @ ~ + - 1 0 06272290 -telephoto n 1 1 @ 1 0 04403167 -telephoto_lens n 1 1 @ 1 0 04403413 -telephotograph n 2 2 @ ~ 2 0 04403279 04403167 -telephotography n 2 2 @ ~ 2 0 00907071 00906975 -teleportation n 1 3 @ + ; 1 0 01254473 -teleprinter n 1 1 @ 1 0 04404200 -teleprocessing n 1 1 @ 1 0 13468542 -teleprompter n 1 2 @ ; 1 0 04403524 -telerobotics n 1 1 @ 1 0 06133935 -telescope n 1 4 @ ~ %p + 1 0 04403638 -telescope_sight n 1 1 @ 1 0 04403925 -telescopic_sight n 1 1 @ 1 1 04403925 -telescopium n 1 1 @ 1 0 09455524 -telescopy n 1 2 @ + 1 0 05636554 -teleselling n 1 2 @ ~ 1 0 01116026 -telethermometer n 1 1 @ 1 0 04404072 -teletype_machine n 1 1 @ 1 0 04404200 -teletypewriter n 1 1 @ 1 0 04404200 -televangelism n 1 2 @ + 1 0 07244822 -televangelist n 1 2 @ + 1 0 10698241 -television n 3 7 @ ~ #p %p + ; - 3 3 06277280 04404412 04405907 -television-camera_tube n 1 3 @ ~ #p 1 0 04405309 -television_announcer n 1 1 @ 1 0 10733891 -television_antenna n 1 2 @ ~ 1 0 04404817 -television_camera n 1 3 @ ~ %p 1 1 04404997 -television_channel n 1 1 @ 1 0 03006398 -television_equipment n 1 3 @ ~ #p 1 0 04405540 -television_monitor n 1 1 @ 1 0 04405762 -television_news n 1 1 @ 1 0 06683692 -television_newscaster n 1 2 @ ~ 1 0 10698368 -television_pickup_tube n 1 3 @ ~ #p 1 0 04405309 -television_program n 1 2 @ ~ 1 1 06620579 -television_receiver n 1 4 @ #p %p ; 1 0 04405907 -television_reporter n 1 2 @ ~ 1 0 10698368 -television_room n 1 1 @ 1 0 04406239 -television_set n 1 4 @ #p %p ; 1 1 04405907 -television_show n 1 2 @ ~ 1 0 06620579 -television_star n 1 1 @ 1 0 10698550 -television_station n 1 4 @ ~ #p %p 1 0 04406350 -television_system n 1 4 @ ~ %p ; 1 1 04404412 -television_transmitter n 1 2 @ #p 1 0 04406552 -television_tube n 1 3 @ ~ #p 1 0 03617594 -teleworking n 1 1 @ 1 0 00585018 -telex n 1 2 @ + 1 0 04404200 -telex_machine n 1 1 @ 1 0 04404200 -telfer n 1 2 @ #p 1 0 04406687 -telferage n 1 2 @ %p 1 0 04406817 -telingo_potato n 1 3 @ #m ; 1 0 11782878 -telint n 1 1 @ 1 0 00983482 -teliospore n 1 1 @ 1 0 11549638 -tell n 1 1 @ 1 0 10698649 -teller n 4 3 @ ~ + 4 0 11335041 10699099 10698970 10345804 -tellima n 1 3 @ #m %m 1 0 12802987 -tellima_affinis n 1 2 @ #m 1 0 12799776 -tellima_grandiflora n 1 2 @ #m 1 0 12803226 -telling n 3 3 @ ~ + 3 0 07222823 07212424 06805297 -telltale n 1 2 @ + 1 0 10692696 -tellurian n 1 1 @ 1 0 10699262 -telluride n 1 2 @ %s 1 0 15068134 -tellurium n 1 3 @ #s + 1 0 14657228 -tellus n 1 2 @ ; 1 0 09572249 -telly n 1 4 @ #p %p ; 1 0 04405907 -telocentric_chromosome n 1 1 @ 1 0 05445247 -telomerase n 1 1 @ 1 0 15068282 -telomere n 1 2 @ #p 1 0 05610520 -telopea n 1 3 @ #m %m 1 0 12223405 -telopea_oreades n 1 2 @ #m 1 0 12223569 -telopea_speciosissima n 1 2 @ #m 1 0 12223764 -telophase n 2 2 @ #p 2 0 13566041 13565940 -telosporidia n 1 3 @ #m %m 1 0 01422594 -telpher n 1 2 @ #p 1 0 04406687 -telpherage n 1 2 @ %p 1 0 04406817 -telsontail n 1 2 @ #m 1 0 02163763 -telugu n 2 1 @ 2 0 09675529 06980721 -temazepam n 1 1 @ 1 0 04407007 -temblor n 1 2 @ ~ 1 0 07428954 -temerity n 1 2 @ + 1 1 04859449 -temnospondyli n 1 2 @ #m 1 0 01656576 -temp n 1 1 @ 1 0 10699415 -temper n 4 3 @ ~ + 4 3 07518468 07551052 04642258 05021535 -tempera n 1 1 @ 1 0 04407257 -temperament n 3 5 @ ~ %p = + 3 1 04623612 04628466 01000411 -temperance n 3 4 ! @ ~ + 3 0 04883614 01069777 00381567 -temperate_rain_forest n 1 1 @ 1 0 08439268 -temperate_zone n 1 2 @ ~ 1 0 08661878 -temperateness n 2 3 @ ~ + 2 0 11456462 04883243 -temperature n 2 3 @ ~ = 2 2 05011790 05725378 -temperature_change n 1 2 @ ~ 1 1 13566212 -temperature_gradient n 1 1 @ 1 1 13860145 -temperature_reduction n 1 2 @ ~ 1 0 13453160 -temperature_scale n 1 2 @ ~ 1 0 13852395 -temperature_unit n 1 2 @ ~ 1 0 13608598 -tempering n 1 2 @ + 1 0 00402951 -tempest n 2 3 @ + ; 2 1 13978344 11518494 -tempestuousness n 2 2 @ + 2 0 14523923 13979503 -templar n 1 1 @ 1 0 10239329 -template n 1 2 @ ~ 1 0 05938976 -template_rna n 1 1 @ 1 0 14832770 -temple n 4 5 @ ~ #p %p ; 4 3 04407435 05602683 04407686 04374735 -temple_of_apollo n 1 3 @ #p ; 1 0 04407844 -temple_of_artemis n 1 1 @ 1 0 04408174 -temple_of_jerusalem n 1 2 @ #p 1 0 04408330 -temple_of_solomon n 1 2 @ #p 1 0 04408330 -temple_orange n 2 4 @ #m #p %p 2 0 12710917 07747811 -temple_orange_tree n 1 3 @ #m %p 1 0 12710917 -temple_tree n 1 1 @ 1 0 11774795 -templet n 1 2 @ ~ 1 0 05938976 -templetonia n 1 3 @ #m %m 1 0 12572021 -templetonia_retusa n 1 2 @ #m 1 0 12572188 -tempo n 2 3 @ ~ ; 2 2 15264363 15283097 -temporal n 1 1 @ 1 0 06333478 -temporal_arrangement n 1 2 @ ~ 1 0 05044673 -temporal_arteritis n 1 1 @ 1 0 14259133 -temporal_artery n 1 2 @ ~ 1 0 05354744 -temporal_bone n 1 3 @ #p %p 1 0 05282000 -temporal_canthus n 1 1 @ 1 0 05314549 -temporal_ccortex n 1 3 @ #p %p 1 0 05494933 -temporal_gyrus n 1 2 @ #p 1 0 05488909 -temporal_lobe n 1 3 @ #p %p 1 0 05494933 -temporal_lobe_epilepsy n 1 1 @ 1 0 14089974 -temporal_muscle n 1 1 @ 1 0 05602304 -temporal_order n 1 2 @ ~ 1 0 05044673 -temporal_property n 1 2 @ ~ 1 0 05044528 -temporal_relation n 1 3 @ ~ = 1 0 13844690 -temporal_role n 1 1 @ 1 0 06333478 -temporal_vein n 1 2 @ ~ 1 0 05382135 -temporalis n 1 1 @ 1 0 05602304 -temporalis_muscle n 1 1 @ 1 0 05602304 -temporality n 1 1 @ 1 0 13247981 -temporalty n 2 2 @ %m 2 0 13247981 08153102 -temporariness n 1 2 @ + 1 0 05055141 -temporary n 1 1 @ 1 0 10699415 -temporary_expedient n 1 1 @ 1 0 00178832 -temporary_hookup n 1 1 @ 1 0 04408871 -temporary_injunction n 1 2 @ ; 1 0 06543536 -temporary_removal n 1 2 @ ~ 1 0 00209132 -temporary_state n 1 2 @ ~ 1 0 14015731 -temporary_worker n 1 1 @ 1 0 10699415 -temporiser n 1 2 @ + 1 0 10699558 -temporizer n 1 2 @ + 1 0 10699558 -temporomandibular_joint n 1 1 @ 1 0 05276668 -tempra n 1 2 @ ; 1 0 02674482 -temptation n 3 3 @ ~ + 3 1 05694791 07485281 00159620 -tempter n 1 2 @ + 1 0 10699752 -temptingness n 1 3 @ ~ + 1 0 04688842 -temptress n 1 1 @ 1 0 10055410 -tempura n 1 2 @ ; 1 0 07879953 -temuco n 1 2 @ #p 1 0 08721961 -temujin n 1 1 @ 1 0 10994308 -ten n 2 1 @ 2 1 13746512 04411142 -ten-day_fern n 1 2 @ #m 1 0 13200986 -ten-gallon_hat n 1 1 @ 1 1 03124170 -ten-spined_stickleback n 1 2 @ #m 1 0 01455461 -ten-spot n 1 1 @ 1 0 04411142 -ten-strike n 1 1 @ 1 0 00187710 -ten-thousandth n 1 1 @ 1 0 13739278 -ten_commandments n 1 1 @ 1 0 07169970 -ten_dollar_bill n 1 1 @ 1 0 13395407 -ten_percent n 1 1 @ 1 0 13738327 -ten_thousand n 1 1 @ 1 1 13751265 -tenability n 1 2 @ + 1 0 04783888 -tenableness n 1 2 @ + 1 0 04783888 -tenaciousness n 1 2 @ + 1 0 04864515 -tenacity n 1 2 @ + 1 1 04864515 -tenancy n 1 3 @ ~ + 1 1 01054335 -tenant n 3 3 @ ~ + 3 1 10700201 10700640 10700517 -tenant_farmer n 1 1 @ 1 0 10700840 -tenantry n 1 2 @ + 1 0 07955726 -tench n 1 2 @ #m 1 0 01440764 -tendency n 4 3 @ ~ + 4 3 06196584 07499113 04944048 08681777 -tendentiousness n 1 2 @ + 1 0 06204289 -tender n 6 3 @ ~ + 6 0 13374008 09821831 07165086 04409279 04409128 04409011 -tender_loving_care n 1 1 @ 1 0 00665221 -tender_offer n 1 2 @ ~ 1 0 07166101 -tenderfoot n 1 1 @ 1 0 10700963 -tendergreen n 1 2 @ #m 1 0 11879291 -tenderheartedness n 1 2 @ + 1 0 07554342 -tenderisation n 1 3 @ #p + 1 0 00248063 -tenderiser n 1 3 @ + ; 1 0 15068436 -tenderization n 1 3 @ #p + 1 0 00248063 -tenderizer n 1 3 @ + ; 1 0 15068436 -tenderloin n 2 2 @ ~ 2 0 08689646 07659793 -tenderness n 5 3 @ ~ + 5 1 04627241 14332617 07554342 07544647 07505347 -tending n 1 3 @ ~ + 1 1 00654885 -tendinitis n 1 2 @ ~ 1 0 14356578 -tendon n 1 5 @ ~ #p %s + 1 1 05296253 -tendon_of_achilles n 1 2 @ #p 1 0 05578740 -tendonitis n 1 2 @ ~ 1 0 14356578 -tendonous_synovitis n 1 1 @ 1 0 14356993 -tendosynovitis n 1 1 @ 1 0 14356993 -tendrac n 1 3 @ ~ #m 1 0 01894207 -tendril n 1 2 @ ~ 1 0 13102775 -tenebrionid n 1 3 @ ~ #m 1 0 02181235 -tenebrionidae n 1 3 @ #m %m 1 0 02181013 -tenement n 1 1 @ 1 1 04409384 -tenement_district n 1 1 @ 1 0 08555443 -tenement_house n 1 1 @ 1 1 04409384 -tenerife n 1 2 @ #p 1 0 09028643 -tenesmus n 1 1 @ 1 0 14571714 -tenet n 1 2 @ ~ 1 1 06790042 -teng_hsiao-ping n 1 1 @ 1 0 10930778 -teng_hsiaoping n 1 1 @ 1 0 10930778 -tenge n 2 1 @ 2 0 13702931 13701005 -tenia n 1 1 @ 1 0 04383696 -tenner n 2 1 @ 2 0 13746512 13395407 -tennessean n 1 1 @ 1 0 09745732 -tennessee n 2 5 @ #m #p %p - 2 1 09140148 09455640 -tennessee_river n 1 2 @ #p 1 0 09455640 -tennessee_walker n 1 1 @ 1 0 02379430 -tennessee_walking_horse n 1 1 @ 1 0 02379430 -tennessee_williams n 1 1 @ 1 0 11389481 -tenniel n 1 1 @ 1 0 11335226 -tennis n 1 4 @ ~ %p - 1 1 00482298 -tennis_ball n 1 1 @ 1 0 04409515 -tennis_camp n 1 1 @ 1 0 04409625 -tennis_club n 1 1 @ 1 0 08230590 -tennis_coach n 1 1 @ 1 0 10701096 -tennis_court n 1 1 @ 1 1 04409712 -tennis_elbow n 1 1 @ 1 0 14356720 -tennis_lesson n 1 1 @ 1 0 00890059 -tennis_match n 1 1 @ 1 0 07471037 -tennis_player n 1 2 @ ~ 1 0 10701180 -tennis_pro n 1 1 @ 1 0 10701644 -tennis_racket n 1 1 @ 1 1 04409806 -tennis_racquet n 1 1 @ 1 0 04409806 -tennis_shoe n 1 2 @ ~ 1 0 03472535 -tennis_shot n 1 2 @ ~ 1 0 00566135 -tennis_stroke n 1 2 @ ~ 1 0 00566135 -tenno n 1 2 @ ; 1 0 10315217 -tennyson n 1 1 @ 1 0 11335330 -tenon n 1 2 @ #p 1 0 04409911 -tenonitis n 1 2 @ ~ 1 0 14356578 -tenor n 5 2 @ ~ 5 2 06872676 04986054 10701783 06197503 05922450 -tenor_clef n 1 1 @ 1 0 06863442 -tenor_drum n 1 1 @ 1 0 04410086 -tenor_saxophonist n 1 1 @ 1 0 10701962 -tenor_voice n 1 1 @ 1 0 06872676 -tenoretic n 1 2 @ %s 1 0 04410190 -tenorist n 1 1 @ 1 0 10701962 -tenormin n 1 2 @ #s 1 0 02751782 -tenoroon n 1 1 @ 1 0 04410365 -tenosynovitis n 1 1 @ 1 0 14356993 -tenpence n 1 2 @ ; 1 0 13390857 -tenpenny_nail n 1 1 @ 1 0 04410485 -tenpin n 1 1 @ 1 0 04410565 -tenpin_bowling n 1 2 @ - 1 0 00462241 -tenpins n 1 2 @ - 1 0 00462241 -tenpounder n 1 2 @ #m 1 0 02542017 -tenrec n 1 3 @ ~ #m 1 0 01894207 -tenrec_ecaudatus n 1 2 @ #m 1 0 01894522 -tenrecidae n 1 3 @ #m %m 1 0 01894040 -tense n 1 2 @ ~ 1 1 06329506 -tense_system n 1 1 @ 1 1 07113625 -tenseness n 2 4 @ ~ + ; 2 0 14544335 14376188 -tensile_strength n 1 1 @ 1 0 05030251 -tensimeter n 1 1 @ 1 0 04410663 -tensiometer n 3 1 @ 3 0 04411019 04410886 04410760 -tension n 6 4 @ ~ + ; 6 4 14376188 14544335 14002481 11515051 13980596 00366675 -tension_headache n 1 1 @ 1 0 14328105 -tensity n 1 3 @ ~ + 1 0 14544335 -tensor n 2 3 @ ~ + 2 0 05864481 05573306 -tensor_tympani n 1 1 @ 1 0 05573474 -tent n 2 4 @ ~ %p + 2 1 04411264 09455910 -tent-caterpillar_moth n 2 2 @ #m 2 0 02307515 02307176 -tent-fly n 1 2 @ #p 1 0 04412097 -tent_caterpillar n 1 3 @ ~ #m 1 0 02307325 -tent_flap n 1 2 @ #p 1 0 04412097 -tent_peg n 1 1 @ 1 0 04412300 -tent_stitch n 1 1 @ 1 0 03920181 -tentacle n 2 3 @ ~ + 2 1 05195175 02584643 -tentaculata n 1 3 @ #m %m 1 0 01919504 -tenter n 1 2 @ %p 1 0 04411835 -tenterhook n 1 2 @ #p 1 0 04411966 -tenth n 2 1 @ 2 1 13738327 13847858 -tenth_cranial_nerve n 1 1 @ 1 0 05480076 -tenth_part n 1 1 @ 1 0 13738327 -tenthredinidae n 1 3 @ #m %m 1 0 02218563 -tenting n 1 2 @ + 1 1 01055165 -tentmaker n 1 1 @ 1 0 10702077 -tentorial_sinus n 1 1 @ 1 0 05252705 -tentorium n 1 3 @ %s ; 1 0 05607402 -tenuity n 3 2 @ + 3 0 05103648 05089612 05040939 -tenure n 2 3 @ ~ + 2 1 15291498 13242719 -tenzing_norgay n 1 1 @ 1 0 11335491 -teodor_josef_konrad_korzeniowski n 1 1 @ 1 0 10907647 -tepal n 1 1 @ 1 0 11551044 -tepary_bean n 1 2 @ #m 1 0 12558680 -tepee n 1 1 @ 1 0 04412416 -tephrosia n 1 3 @ #m %m 1 0 12572373 -tephrosia_purpurea n 1 1 @ 1 0 12572759 -tephrosia_virginiana n 1 1 @ 1 0 12572858 -tepic n 1 2 @ #p 1 0 08745800 -tepidity n 1 2 @ + 1 0 05016936 -tepidness n 2 2 @ + 2 0 05016936 04630547 -tequila n 1 2 @ #s 1 0 07905979 -tera n 1 1 @ 1 0 06983795 -terabit n 1 3 @ #p %p 1 0 13629854 -terabyte n 2 3 @ #p %p 2 0 13629676 13629482 -teraflop n 1 3 @ %p ; 1 0 13607405 -terahertz n 1 1 @ 1 0 15280108 -teras n 1 3 @ %p ; 1 0 01460108 -teratogen n 1 3 @ ~ + 1 0 09455998 -teratogenesis n 1 1 @ 1 0 13566436 -teratology n 1 1 @ 1 0 06079439 -teratoma n 1 1 @ 1 0 14251045 -terazosin n 1 1 @ 1 0 04412550 -terbinafine n 1 1 @ 1 0 04412727 -terbium n 1 2 @ #s 1 0 14657566 -terbium_metal n 1 1 @ 1 0 14624944 -terce n 1 1 @ 1 0 15229875 -tercel n 1 2 @ + 1 0 01606177 -tercelet n 1 2 @ + 1 0 01606177 -tercentenary n 1 1 @ 1 0 15251757 -tercentennial n 1 1 @ 1 0 15251757 -tercet n 1 1 @ 1 0 13744044 -terebella n 1 2 @ #m 1 0 01937234 -terebellidae n 1 3 @ #m %m 1 0 01937015 -terebinth n 1 2 @ #m 1 0 12761905 -teredinid n 1 3 @ ~ #m 1 0 01967094 -teredinidae n 1 3 @ #m %m 1 0 01966797 -teredo n 1 2 @ #m 1 0 01967308 -terence n 1 1 @ 1 0 11335695 -terence_rattigan n 1 1 @ 1 0 11254950 -teres n 1 3 @ ~ #p 1 0 05590740 -teres_major n 1 1 @ 1 0 05590939 -teres_major_muscle n 1 1 @ 1 0 05590939 -teres_minor n 1 1 @ 1 0 05591096 -teres_minor_muscle n 1 1 @ 1 0 05591096 -teres_muscle n 1 3 @ ~ #p 1 0 05590740 -teresa n 1 1 @ 1 0 11335878 -teresa_of_avila n 1 1 @ 1 0 11336176 -tereshkova n 1 1 @ 1 0 11336364 -tergiversation n 2 2 @ + 2 0 00751779 00204814 -tergiversator n 1 1 @ 1 0 10168012 -teriyaki n 1 1 @ 1 0 07880080 -term n 7 6 @ ~ #p %p + ; 7 5 06303888 15224486 06770875 05855904 06751974 15226451 04413723 -term_infant n 1 1 @ 1 0 10699981 -term_insurance n 1 1 @ 1 0 13348964 -term_of_a_contract n 1 1 @ 1 0 15274863 -term_of_enlistment n 1 1 @ 1 0 15293590 -term_of_office n 1 2 @ ~ 1 1 15291498 -term_paper n 1 1 @ 1 0 06409937 -termagant n 1 2 @ ~ 1 0 10594147 -termer n 1 1 @ 1 0 10702167 -termes n 1 2 @ #m 1 0 02223151 -terminable_interest n 1 1 @ 1 0 13288206 -terminal n 4 4 @ ~ #p %p 4 2 04412901 04413151 08566028 04413419 -terminal_emulation n 1 2 @ ; 1 0 05666176 -terminal_figure n 1 2 @ ; 1 0 04413723 -terminal_leave n 1 1 @ 1 0 15140294 -terminal_point n 1 1 @ 1 0 15268857 -terminal_velocity n 1 1 @ 1 1 15284704 -termination n 5 3 @ ~ + 5 1 15268682 08566554 07292694 06308765 00209943 -terminator n 1 1 @ 1 0 10074339 -terminology n 1 3 @ ~ + 1 1 06304059 -terminus n 5 5 @ ~ #p + ; 5 0 08566554 05981768 04413723 04413631 04412901 -terminus_a_quo n 1 1 @ 1 0 15266164 -terminus_ad_quem n 1 1 @ 1 0 15268857 -termite n 1 3 @ ~ #m 1 0 02223266 -termitidae n 1 3 @ #m %m 1 0 02223009 -terms n 2 2 @ ~ 2 2 13953936 13303315 -tern n 1 3 @ ~ #m 1 0 02043063 -ternary n 1 1 @ 1 0 13744044 -ternion n 1 1 @ 1 0 13744044 -terpene n 1 2 @ ~ 1 0 15068635 -terpsichore n 2 5 @ ~ + ; - 2 0 09567044 00428270 -terpsichorean n 1 2 @ ~ 1 0 09989502 -terra_alba n 3 3 @ #s - 3 0 14903942 14813560 14670639 -terra_cotta n 1 1 @ 1 0 04414101 -terra_firma n 1 3 @ ~ #p 1 1 09334396 -terra_incognita n 1 1 @ 1 0 08632096 -terra_sigillata n 1 1 @ 1 0 04414319 -terrace n 3 6 @ ~ #p %m + ; 3 1 03899768 09456207 08431721 -terraced_house n 1 3 @ #m ; 1 0 04413969 -terrain n 1 1 @ 1 1 08674563 -terrain_flight n 1 1 @ 1 0 00306318 -terrain_intelligence n 1 1 @ 1 0 00982536 -terramycin n 1 2 @ ; 1 0 03869389 -terrapene n 1 3 @ #m %m 1 0 01669068 -terrapene_ornata n 1 1 @ 1 0 01669372 -terrapin n 1 3 @ ~ #m 1 0 01667778 -terrarium n 1 1 @ 1 0 04414199 -terre_adelie n 1 2 @ #p 1 0 08494782 -terreplein n 1 1 @ 1 0 08662427 -terrestrial_dynamical_time n 1 2 @ ; 1 0 15156746 -terrestrial_guidance n 1 1 @ 1 0 00817191 -terrestrial_planet n 1 2 @ ~ 1 0 09456369 -terrestrial_time n 1 2 @ ; 1 0 15156746 -terribleness n 1 3 @ ~ + 1 0 04782116 -terrier n 1 2 @ ~ 1 1 02092468 -terrietia n 1 2 @ #m 1 0 12199564 -terrietia_trifoliolata n 1 1 @ 1 0 12199790 -terrine n 1 1 @ 1 0 07880213 -territorial n 2 5 @ ~ #m #p ; 2 0 10702307 08391206 -territorial_army n 1 3 @ %m %p 1 0 08391953 -territorial_division n 1 2 @ ~ 1 0 08491826 -territorial_dominion n 1 2 @ ~ 1 0 08552138 -territorial_reserve n 1 4 @ ~ #p ; 1 0 08391206 -territorial_waters n 1 4 ! @ ~ #p 1 0 09456614 -territorialisation n 1 2 @ + 1 0 01016973 -territoriality n 1 2 @ + 1 0 01221464 -territorialization n 1 2 @ + 1 0 01016973 -territory n 3 3 @ ~ + 3 2 08552138 05999134 08493064 -terror n 4 3 @ ~ + 4 2 07520612 10702615 10702483 00759500 -terrorisation n 2 3 @ + ; 2 0 01222666 00765193 -terrorism n 1 4 @ ~ + - 1 0 00759694 -terrorist n 1 5 @ ~ #m + ; 1 1 10702781 -terrorist_act n 1 3 @ ~ - 1 0 00759694 -terrorist_attack n 1 2 @ ~ 1 0 01246697 -terrorist_cell n 1 4 @ ~ %m ; 1 0 08358963 -terrorist_group n 1 3 @ ~ ; 1 0 08392137 -terrorist_organization n 1 3 @ ~ ; 1 0 08392137 -terrorization n 2 3 @ + ; 2 0 01222666 00765193 -terry n 2 1 @ 2 0 11336544 04414476 -terry_cloth n 1 1 @ 1 0 04414476 -terry_towel n 1 1 @ 1 0 04499446 -terrycloth n 1 1 @ 1 1 04414476 -terseness n 1 4 ! @ ~ + 1 0 07088438 -tertiary n 1 3 @ #p %p 1 0 15125097 -tertiary_period n 1 3 @ #p %p 1 0 15125097 -tertiary_syphilis n 1 1 @ 1 0 14134623 -tertigravida n 1 1 @ 1 0 10703221 -tertium_quid n 1 1 @ 1 0 13858481 -tertry n 1 2 @ ; 1 0 01296946 -tertullian n 1 1 @ 1 0 11336668 -terylene n 1 2 @ ; 1 0 03158414 -terza_rima n 1 1 @ 1 0 06381761 -terzetto n 1 1 @ 1 0 13744044 -tesla n 2 2 @ %p 2 0 13639009 11336850 -tesla_coil n 1 1 @ 1 0 04414675 -tessella n 1 2 @ + 1 0 04414821 -tessellation n 2 2 @ + 2 0 01052078 00263164 -tessera n 1 4 @ ~ #p + 1 0 04414909 -tesseract n 1 1 @ 1 0 13916927 -tessin n 1 2 @ #p 1 0 08801546 -test n 6 3 @ ~ + 6 5 05799212 01006675 07197021 00794367 00791078 01904699 -test-cross n 1 1 @ 1 0 00851316 -test-tube_baby n 1 1 @ 1 0 10704238 -test_ban n 1 1 @ 1 0 07255628 -test_bed n 1 1 @ 1 0 04415078 -test_case n 1 2 @ ; 1 0 01198588 -test_copy n 1 3 @ ~ ; 1 0 06590885 -test_drive n 1 2 @ + 1 0 05800387 -test_driver n 1 2 @ + 1 0 10703553 -test_equipment n 1 1 @ 1 0 04415257 -test_instrument_vehicle n 1 2 @ ~ 1 0 04415663 -test_match n 1 1 @ 1 0 07471126 -test_paper n 2 1 @ 2 0 07199328 04415460 -test_period n 1 2 @ ~ 1 0 15115926 -test_pilot n 1 1 @ 1 0 10704098 -test_range n 1 1 @ 1 0 04415578 -test_rocket n 1 2 @ ~ 1 0 04415663 -test_room n 1 1 @ 1 0 04415815 -test_suit n 1 2 @ ; 1 1 01198588 -test_tube n 1 1 @ 1 1 04415921 -testa n 1 3 @ #p + 1 0 11682349 -testacea n 1 3 @ #m %m 1 0 01393873 -testacean n 1 2 @ #m 1 0 01394040 -testament n 4 6 @ ~ #p %p + ; 4 2 05800272 06544142 06648590 06453723 -testamentary_trust n 1 1 @ 1 0 13363217 -testate n 1 3 @ ~ + 1 0 10703336 -testator n 1 2 @ ~ 1 0 10703336 -testatrix n 1 1 @ 1 0 10703480 -testcross n 1 1 @ 1 0 00851316 -testee n 1 3 @ ~ + 1 0 10703692 -tester n 2 2 @ + 2 0 10068234 04415354 -testicle n 1 5 @ ~ #p %p + 1 1 05524615 -testicular_artery n 1 2 @ #p 1 0 05355527 -testicular_cancer n 1 1 @ 1 0 14252184 -testicular_vein n 1 2 @ #p 1 0 05382729 -testiere n 1 1 @ 1 0 03005619 -testifier n 1 2 @ + 1 0 10703905 -testimonial n 3 3 @ ~ + 3 2 06648207 06697195 06694540 -testimonial_immunity n 1 2 @ ~ 1 0 00215013 -testimony n 3 4 @ ~ + ; 3 3 06734467 06732710 06648207 -testiness n 1 2 @ + 1 0 07553016 -testing n 3 3 @ ~ + 3 3 00639975 00644702 00636461 -testing_ground n 1 1 @ 1 0 08662570 -testing_room n 1 1 @ 1 1 04415815 -testis n 1 4 @ ~ #p %p 1 0 05524615 -testosterone n 1 1 @ 1 0 14748577 -testudinata n 1 3 @ #m %m 1 0 01662274 -testudines n 1 3 @ #m %m 1 0 01662274 -testudinidae n 1 3 @ #m %m 1 0 01669883 -testudo n 2 3 @ #m %m 2 0 04416005 01670378 -testudo_graeca n 1 2 @ #m 1 0 01670535 -tet n 1 2 @ #p 1 0 15183266 -tetanilla n 1 1 @ 1 0 14310504 -tetanus n 2 1 @ 2 0 14185803 00370127 -tetanus_antitoxin n 1 1 @ 1 0 15028378 -tetanus_immune_globulin n 1 1 @ 1 0 15032071 -tetanus_immunoglobulin n 1 1 @ 1 0 15032071 -tetany n 1 1 @ 1 0 14310504 -tetartanopia n 1 1 @ 1 0 14154832 -tetchiness n 1 2 @ + 1 0 07553016 -tete-a-tete n 2 3 @ ~ + 2 0 07142107 03693474 -teth n 1 2 @ #m 1 0 06837572 -tether n 1 2 @ + 1 0 03652932 -tetherball n 1 1 @ 1 0 00464277 -tethyidae n 1 3 @ #m %m 1 0 01950952 -tethys n 2 4 @ #m %m ; 2 0 09577467 01951107 -teton n 1 2 @ ~ 1 0 09669631 -teton_dakota n 1 2 @ ~ 1 0 09669631 -teton_range n 1 3 @ #p %p 1 0 09456860 -teton_sioux n 1 2 @ ~ 1 0 09669631 -tetra n 1 2 @ #m 1 0 02583890 -tetrabasic_acid n 1 1 @ 1 0 14611679 -tetrabromo-phenolsulfonephthalein n 1 1 @ 1 0 14986719 -tetracaine n 1 1 @ 1 0 04416201 -tetrachlorethylene n 1 1 @ 1 0 04416338 -tetrachloride n 1 2 @ ~ 1 0 15068754 -tetrachloroethylene n 1 1 @ 1 0 04416338 -tetrachloromethane n 1 1 @ 1 0 14798039 -tetrachoric_correlation n 1 2 @ ; 1 0 06035918 -tetrachoric_correlation_coefficient n 1 2 @ ; 1 0 06035918 -tetraclinis n 1 2 @ #m 1 0 11642912 -tetraclinis_articulata n 1 2 @ %s 1 0 11643022 -tetracycline n 1 2 @ ~ 1 0 04416530 -tetrad n 1 1 @ 1 0 13744304 -tetradecanoic_acid n 1 1 @ 1 0 14958102 -tetraethyl_lead n 1 1 @ 1 0 14600357 -tetrafluoroethylene n 1 1 @ 1 0 15068891 -tetragon n 1 3 @ ~ + 1 0 13879126 -tetragonia n 1 3 @ #m %m 1 0 11822167 -tetragonia_expansa n 1 2 @ #m 1 0 11822300 -tetragonia_tetragonioides n 1 2 @ #m 1 0 11822300 -tetragoniaceae n 1 3 @ #m %m 1 0 11818945 -tetragonurus n 1 3 @ #m %m 1 0 02634717 -tetragram n 1 2 @ ~ 1 0 06360850 -tetragrammaton n 1 1 @ 1 0 06360996 -tetrahalide n 1 1 @ 1 0 15069046 -tetrahedron n 1 1 @ 1 0 13915113 -tetrahydrocannabinol n 1 1 @ 1 0 04416785 -tetrahymena n 1 2 @ #m 1 0 01396322 -tetraiodothyronine n 1 1 @ 1 0 05413647 -tetralogy n 1 1 @ 1 0 06622252 -tetralogy_of_fallot n 1 2 @ %p 1 0 14469766 -tetrameter n 1 2 @ + 1 0 07096029 -tetramethyldiarsine n 1 1 @ 1 0 14788875 -tetraneuris n 1 3 @ #m %m 1 0 12025019 -tetraneuris_acaulis n 1 2 @ #m 1 0 12025220 -tetraneuris_grandiflora n 1 2 @ #m 1 0 12025507 -tetranychid n 1 3 @ ~ #m 1 0 01782209 -tetranychidae n 1 3 @ #m %m 1 0 01782050 -tetrao n 1 3 @ #m %m 1 0 01796870 -tetrao_urogallus n 1 2 @ #m 1 0 01797020 -tetraodontidae n 1 3 @ #m %m 1 0 02654890 -tetraonidae n 1 3 @ #m %m 1 0 01794813 -tetrapod n 1 2 @ ~ 1 0 02156732 -tetrapturus n 1 3 @ #m %m 1 0 02631899 -tetrasaccharide n 1 2 @ ~ 1 0 15069161 -tetraskele n 1 2 @ ~ 1 0 04416901 -tetraskelion n 1 2 @ ~ 1 0 04416901 -tetrasodium_pyrophosphate n 1 1 @ 1 1 15046077 -tetrasporangium n 1 1 @ 1 0 13093275 -tetraspore n 1 1 @ 1 0 11549779 -tetrazzini n 1 2 @ ~ 1 0 07864638 -tetri n 1 2 @ #p 1 0 13700766 -tetrode n 1 1 @ 1 0 04417086 -tetrodotoxin n 1 2 @ #s 1 0 15069338 -tetrose n 1 1 @ 1 0 14689940 -tetroxide n 1 1 @ 1 0 15069472 -tetryl n 1 1 @ 1 0 15069584 -tetterwort n 1 2 @ #m 1 0 11908077 -tettigoniid n 1 3 @ ~ #m 1 0 02227966 -tettigoniidae n 1 3 @ #m %m 1 0 02227773 -teucrium n 1 3 @ #m %m 1 0 12869248 -teucrium_canadense n 1 1 @ 1 0 12869668 -teucrium_chamaedrys n 1 1 @ 1 0 12869874 -teucrium_marum n 1 1 @ 1 0 12870048 -teucrium_scorodonia n 1 1 @ 1 0 12870225 -teutoburger_wald n 1 2 @ ; 1 0 01297095 -teuton n 2 4 @ ~ ; - 2 0 09747969 09689152 -teutonic_deity n 1 3 @ ~ ; 1 0 09585434 -teutonist n 1 1 @ 1 0 10704516 -tevere n 1 1 @ 1 0 09457851 -tevet n 1 3 @ #p %p 1 0 15215068 -tewkesbury n 1 2 @ ; 1 0 01297291 -texan n 1 2 @ + 1 1 09745834 -texarkana n 2 2 @ #p 2 0 09146451 09060615 -texas n 1 5 @ #m #p %p + 1 1 09141526 -texas_armadillo n 1 2 @ #m 1 0 02454794 -texas_bluebonnet n 2 1 @ 2 0 12547503 12547215 -texas_chachalaca n 1 2 @ #m 1 0 01800633 -texas_fever n 1 1 @ 1 0 14276081 -texas_horned_lizard n 1 1 @ 1 0 01682172 -texas_independence_day n 1 2 @ #p 1 0 15187800 -texas_leaguer n 1 2 @ ; 1 0 00150228 -texas_longhorn n 1 1 @ 1 0 02404432 -texas_millet n 1 1 @ 1 0 12127768 -texas_purple_spike n 1 2 @ #m 1 0 12069217 -texas_ranger n 1 1 @ 1 0 10704712 -texas_snowbell n 1 1 @ 1 0 12777892 -texas_snowbells n 1 1 @ 1 0 12777892 -texas_star n 2 2 @ #m 2 0 12298637 11992479 -texas_storksbill n 1 1 @ 1 0 12689491 -texas_toad n 1 1 @ 1 0 01647303 -texas_tortoise n 1 2 @ #m 1 0 01671705 -text n 4 5 @ ~ #p %p + 4 1 06387980 07172557 06414372 06388579 -text-matching n 1 1 @ 1 0 06581068 -text_edition n 1 3 ! @ ~ 1 0 06414372 -text_editor n 2 2 @ ; 2 0 09964659 06576727 -text_file n 1 3 @ ~ ; 1 0 06510977 -textbook n 1 2 @ ~ 1 0 06414372 -textile n 1 4 @ ~ %s %p 1 1 03309808 -textile_machine n 1 2 @ ~ 1 0 04417180 -textile_mill n 1 2 @ ~ 1 0 04417361 -textile_screw_pine n 1 1 @ 1 0 12155009 -textual_criticism n 1 2 @ ~ 1 0 06375008 -textual_matter n 1 4 @ ~ #p %p 1 0 06387980 -texture n 5 4 @ ~ = ; 5 3 04946877 05849667 04984007 04950537 04934220 -th n 2 3 @ ~ #s 2 0 15164354 14658109 -thackeray n 1 1 @ 1 0 11337202 -thaddaeus n 1 2 @ ; 1 0 11094055 -thaddeus_kosciusko n 1 1 @ 1 0 11109728 -thai n 2 3 @ #m + 2 0 09734294 06936149 -thai_monetary_unit n 1 2 @ ~ 1 0 13663694 -thailand n 1 6 @ #m #p %m %p - 1 1 09036452 -thalamostriate_vein n 1 2 @ ~ 1 0 05382855 -thalamus n 1 3 @ #p %p 1 0 05499172 -thalarctos n 1 3 @ #m %m 1 0 02133902 -thalarctos_maritimus n 1 2 @ #m 1 0 02134084 -thalassaemia n 1 2 @ ~ 1 0 14195715 -thalassaemia_major n 1 1 @ 1 0 14195939 -thalassemia n 1 2 @ ~ 1 0 14195715 -thalassemia_major n 1 1 @ 1 0 14195939 -thalassoma n 1 3 @ #m %m 1 0 02609169 -thalassoma_bifasciatum n 1 2 @ #m 1 0 02609302 -thales n 1 1 @ 1 0 11337331 -thales_of_miletus n 1 1 @ 1 0 11337331 -thalia n 2 2 @ ; 2 0 09567180 09495849 -thaliacea n 1 3 @ #m %m 1 0 01469222 -thalictrum n 1 3 @ #m %m 1 0 11738378 -thalidomide n 1 1 @ 1 0 04417467 -thalidone n 1 1 @ 1 0 03023623 -thallium n 1 2 @ #s 1 0 14657818 -thallophyta n 1 2 @ #m 1 0 11531457 -thallophyte n 1 2 @ + 1 0 11531701 -thallus n 1 2 @ ~ 1 0 11532017 -thalmencephalon n 1 3 @ #p %p 1 0 05496990 -thalweg n 2 1 @ 2 0 13912686 06801865 -thames n 1 2 @ #p 1 0 09457020 -thames_river n 1 2 @ #p 1 0 09457020 -thammuz n 1 2 @ #p 1 0 15216386 -thamnophilus n 1 3 @ #m %m 1 0 01553620 -thamnophis n 1 3 @ #m %m 1 1 01735062 -thamnophis_proximus n 1 1 @ 1 0 01735728 -thamnophis_sauritus n 1 1 @ 1 0 01735577 -thamnophis_sirtalis n 1 1 @ 1 0 01735439 -thanatology n 1 1 @ 1 0 06153698 -thanatophobia n 1 1 @ 1 0 14384602 -thanatopsis n 1 1 @ 1 0 06410283 -thanatos n 2 2 @ ; 2 0 09555514 09180967 -thane n 2 3 @ + ; 2 0 10705100 10704886 -thaneship n 1 2 @ + 1 0 00604910 -thank_offering n 1 1 @ 1 0 13273050 -thank_you n 1 1 @ 1 1 07229245 -thankfulness n 1 2 @ + 1 1 07504529 -thankless_wretch n 1 1 @ 1 0 10206763 -thanks n 2 2 @ ~ 2 2 07228971 01208797 -thanksgiving n 2 2 @ #p 2 1 15201116 07190039 -thanksgiving_cactus n 1 2 @ #m 1 0 11854479 -thanksgiving_day n 1 2 @ #p 1 0 15201116 -thar_desert n 1 2 @ #p 1 0 09173417 -tharp n 1 1 @ 1 0 11337629 -thatch n 4 2 @ + 4 1 05261310 15069712 11334003 04417672 -thatch_palm n 1 2 @ #m 1 0 12597798 -thatch_tree n 1 2 @ #m 1 0 12597798 -thatched_roof n 1 1 @ 1 0 04417672 -thatcher n 2 2 @ + 2 0 11337779 10705211 -thatcherism n 1 2 @ ; 1 0 05987522 -thatcherite n 1 2 @ ; 1 0 10705345 -thaumatolatry n 1 1 @ 1 0 01045520 -thaumaturge n 1 2 @ ~ 1 0 10625860 -thaumaturgist n 1 2 @ ~ 1 0 10625860 -thaumaturgy n 2 2 @ ~ 2 0 05967977 00099951 -thaw n 3 2 @ + 3 2 13566535 11482140 07443539 -thawing n 2 2 @ + 2 1 13566535 11482140 -thb n 1 1 @ 1 0 06699926 -thc n 1 1 @ 1 0 04416785 -thd n 1 1 @ 1 0 06704482 -the_absurd n 1 1 @ 1 0 13928191 -the_admirable_crichton n 1 1 @ 1 0 10915025 -the_alps n 1 3 @ #p %p 1 0 09194357 -the_boot n 1 1 @ 1 0 02873363 -the_city n 2 2 @ #p 2 0 08874273 08073355 -the_devil n 1 1 @ 1 0 00624147 -the_flood n 1 2 @ ; 1 0 11455386 -the_gambia n 1 4 @ #p %m %p 1 0 08945821 -the_great_calamity n 1 1 @ 1 0 07315965 -the_great_charter n 1 2 @ ; 1 0 06477003 -the_great_compromiser n 1 1 @ 1 0 10899951 -the_great_hunger n 1 1 @ 1 0 07315965 -the_great_starvation n 1 1 @ 1 0 07315965 -the_great_unwashed n 1 2 @ ~ 1 0 08180190 -the_hague n 1 2 @ #p 1 0 08950407 -the_halt n 1 2 @ ; 1 0 07946516 -the_hill n 1 2 @ #p 1 0 09071349 -the_holy_see n 1 3 @ #p %p 1 0 09161090 -the_hots n 1 1 @ 1 0 07490138 -the_indies n 1 6 @ ~ #p %m %p - 1 1 08747054 -the_irish_famine n 1 1 @ 1 0 07315965 -the_like n 1 1 @ 1 1 05845888 -the_likes_of n 1 1 @ 1 0 05845888 -the_nazarene n 1 2 @ ~ 1 0 11083656 -the_netherlands n 1 5 @ #m #p %m %p 1 1 08949093 -the_pamirs n 1 2 @ #p 1 0 09384223 -the_pits n 1 1 @ 1 0 08582837 -the_shits n 1 2 @ ; 1 1 14372286 -the_skinny n 1 1 @ 1 0 06636113 -the_star-spangled_banner n 1 1 @ 1 0 07049291 -the_states n 1 7 @ ~ #m #p %m %p - 1 0 09044862 -the_street n 1 1 @ 1 0 08073468 -the_tempter n 1 2 @ ; 1 0 09543353 -the_three_estates n 1 4 @ ~ #p ; 1 0 08167365 -the_trots n 1 2 @ ; 1 0 14372286 -the_true n 1 2 @ = 1 0 13956488 -the_venerable_bede n 1 2 @ ; 1 0 10840769 -the_virgin n 1 1 @ 1 1 11161412 -the_way_of_the_world n 1 1 @ 1 0 01226289 -the_ways_of_the_world n 1 1 @ 1 0 01226289 -thea n 1 2 @ ; 1 0 09576164 -theaceae n 1 3 @ #m %m 1 0 12929061 -theanthropism n 2 2 @ ; 2 0 05767580 05767386 -theater n 3 7 @ ~ #p %p + ; - 3 2 04417809 07006119 08551628 -theater_company n 1 2 @ ~ 1 0 08187460 -theater_critic n 1 2 @ ~ 1 0 10030147 -theater_curtain n 1 3 @ ~ #p 1 0 04418357 -theater_director n 1 2 @ ~ 1 0 10015215 -theater_in_the_round n 1 1 @ 1 0 02736645 -theater_light n 1 3 @ ~ %m 1 0 04418644 -theater_of_operations n 1 4 @ #p %p ; 1 0 08551628 -theater_of_the_absurd n 1 1 @ 1 0 07009161 -theater_of_war n 1 2 @ %p 1 0 08551420 -theater_prompter n 1 1 @ 1 0 10482414 -theater_stage n 1 4 @ ~ #p %p 1 0 04418818 -theater_ticket n 1 1 @ 1 0 06519728 -theatergoer n 1 3 @ ~ #m 1 0 10440717 -theatre n 3 6 @ ~ #p %p ; - 3 2 04417809 07006119 08551628 -theatre_curtain n 1 3 @ ~ #p 1 0 04418357 -theatre_director n 1 2 @ ~ 1 0 10015215 -theatre_of_operations n 1 4 @ #p %p ; 1 0 08551628 -theatre_of_war n 1 2 @ %p 1 0 08551420 -theatre_stage n 1 4 @ ~ #p %p 1 0 04418818 -theatre_ticket n 1 1 @ 1 0 06519728 -theatregoer n 1 3 @ ~ #m 1 1 10440717 -theatrical n 1 3 @ ~ + 1 0 06893885 -theatrical_agent n 1 1 @ 1 0 09767592 -theatrical_performance n 1 2 @ ~ 1 0 06893885 -theatrical_poster n 1 2 @ %p 1 0 06793817 -theatrical_producer n 1 2 @ ~ 1 0 10705448 -theatrical_production n 1 2 @ ~ 1 0 07007171 -theatrical_role n 1 2 @ ~ 1 0 05929008 -theatrical_season n 1 1 @ 1 0 15241405 -theatricality n 1 2 @ + 1 0 04788693 -theban n 2 2 @ #m 2 0 09711978 09711870 -thebe n 1 2 @ #p 1 0 13696050 -thebes n 2 3 @ #p %m 2 0 08899776 08789076 -theca n 2 1 @ 2 0 13092722 01905321 -thecodont n 1 2 @ #m 1 0 01723883 -thecodont_reptile n 1 2 @ #m 1 0 01723883 -thecodontia n 1 3 @ #m %m 1 0 01723678 -theelin n 1 1 @ 1 0 14750782 -theft n 1 2 @ ~ 1 0 00780889 -theia n 1 2 @ ; 1 0 09576164 -theism n 1 4 ! @ ~ + 1 0 06223669 -theist n 1 3 @ ~ + 1 0 09848110 -thelarche n 1 1 @ 1 0 07325864 -thelephoraceae n 1 3 @ #m %m 1 0 13015040 -thelonious_monk n 1 1 @ 1 0 11185500 -thelonious_sphere_monk n 1 1 @ 1 0 11185500 -thelypteridaceae n 1 3 @ #m %m 1 0 13227235 -thelypteris n 1 3 @ #m %m 1 0 13227557 -thelypteris_dryopteris n 1 2 @ #m 1 0 13197274 -thelypteris_hexagonoptera n 1 1 @ 1 0 13230843 -thelypteris_palustris n 1 3 @ ~ #m 1 0 13227778 -thelypteris_palustris_pubescens n 1 1 @ 1 0 13228017 -thelypteris_phegopteris n 1 1 @ 1 0 13231078 -thelypteris_simulata n 1 2 @ #m 1 0 13230190 -thematic_apperception_test n 1 1 @ 1 0 01008097 -thematic_vowel n 1 1 @ 1 0 07114284 -theme n 5 4 @ ~ + ; 5 2 06599788 05920272 07029247 06409752 06300193 -theme_park n 1 1 @ 1 0 08662914 -theme_song n 2 1 @ 2 0 07029088 07028964 -themis n 1 2 @ ; 1 0 09577004 -themistocles n 1 1 @ 1 0 11337999 -then n 1 1 @ 1 1 15296354 -thenar n 2 4 @ #p %p + 2 0 05565937 05565696 -theobid n 1 2 @ ; 1 0 04419315 -theobroma n 1 3 @ #m %m 1 0 12201456 -theobroma_cacao n 1 3 @ ~ #m 1 0 12201580 -theocracy n 2 3 @ ~ + 2 0 08363428 06221224 -theodicy n 1 1 @ 1 0 06183745 -theodolite n 1 3 @ ~ %p 1 0 04419073 -theodor_mommsen n 1 1 @ 1 0 11185044 -theodor_schwann n 1 1 @ 1 0 11287734 -theodor_seuss_geisel n 1 1 @ 1 0 10993636 -theodore_dreiser n 1 1 @ 1 0 10943115 -theodore_dwight_weld n 1 1 @ 1 0 11380655 -theodore_francis_powys n 1 1 @ 1 0 11245744 -theodore_harold_white n 1 1 @ 1 0 11384022 -theodore_herman_albert_dreiser n 1 1 @ 1 0 10943115 -theodore_roosevelt n 1 1 @ 1 0 11269697 -theodore_roosevelt_memorial_national_park n 1 2 @ #p 1 0 08609278 -theodore_samuel_williams n 1 1 @ 1 0 11389901 -theodosius n 1 1 @ 1 0 11338172 -theodosius_i n 1 1 @ 1 0 11338172 -theodosius_the_great n 1 1 @ 1 0 11338172 -theogony n 1 1 @ 1 0 06248863 -theologian n 1 2 @ ~ 1 1 10705615 -theological_doctrine n 1 2 @ ~ 1 0 06186301 -theological_system n 1 4 @ ~ ; - 1 0 06183899 -theological_virtue n 1 2 @ ~ 1 0 04847991 -theologiser n 1 3 @ ~ + 1 0 10705615 -theologist n 1 3 @ ~ + 1 0 10705615 -theologizer n 1 3 @ ~ + 1 0 10705615 -theology n 3 5 @ ~ + ; - 3 3 06182144 06183899 00613973 -theophany n 1 1 @ 1 0 07323682 -theophrastaceae n 1 3 @ #m %m 1 0 12099556 -theophrastus n 1 1 @ 1 0 11338484 -theophrastus_philippus_aureolus_bombastus_von_hohenheim n 1 1 @ 1 0 11222054 -theophylline n 1 1 @ 1 0 04419315 -theorem n 2 2 @ ~ 2 1 06752293 05918267 -theoretical_account n 1 2 @ ~ 1 0 05890249 -theoretician n 1 3 @ + ; 1 0 10706812 -theorisation n 1 3 @ ~ + 1 0 05779371 -theoriser n 1 3 @ + ; 1 0 10706812 -theorist n 1 3 @ + ; 1 1 10706812 -theorization n 1 3 @ ~ + 1 0 05779371 -theorizer n 1 3 @ + ; 1 0 10706812 -theory n 3 5 @ ~ #p %p + 3 3 05989479 05888929 05952979 -theory_of_dissociation n 1 2 @ ; 1 0 06108850 -theory_of_electrolytic_dissociation n 1 2 @ ; 1 0 06108850 -theory_of_evolution n 1 3 @ ~ ; 1 0 06109227 -theory_of_games n 1 3 @ ; - 1 0 06150222 -theory_of_gravitation n 1 3 @ %p ; 1 0 05990089 -theory_of_gravity n 1 3 @ %p ; 1 0 05990089 -theory_of_indicators n 1 2 @ ; 1 0 06109487 -theory_of_inheritance n 1 3 @ ~ ; 1 0 06109771 -theory_of_organic_evolution n 1 3 @ ~ ; 1 0 06109227 -theory_of_preformation n 1 1 @ 1 0 05992949 -theory_of_probability n 1 3 @ %p ; 1 0 06037108 -theory_of_punctuated_equilibrium n 1 1 @ 1 0 06111003 -theory_of_relativity n 1 4 @ ~ ; - 1 0 06106502 -theosophism n 1 1 @ 1 0 05953804 -theosophist n 1 2 @ + 1 0 10707134 -theosophy n 1 3 @ ~ + 1 0 05953614 -theoterrorism n 1 2 @ ; 1 0 00765081 -therapeutic n 1 3 @ ~ #p 1 0 04074482 -therapeutic_abortion n 1 1 @ 1 0 00231412 -therapeutic_cloning n 1 1 @ 1 0 00639007 -therapeutic_rehabilitation n 1 1 @ 1 0 00400995 -therapeutics n 1 1 @ 1 0 06064345 -theraphosidae n 1 3 @ #m %m 1 0 01774595 -therapist n 1 3 @ ~ + 1 1 10707233 -therapsid n 1 3 @ ~ #m 1 0 01719914 -therapsida n 1 3 @ #m %m 1 0 01719645 -therapy n 1 4 @ ~ + ; 1 1 00661091 -theravada n 1 2 @ ~ 1 0 06241156 -theravada_buddhism n 1 2 @ ~ 1 0 06241156 -there n 1 2 ! @ 1 0 08489627 -theremin n 1 1 @ 1 0 04419642 -thereness n 2 2 ! @ 2 0 13958921 13958800 -theresa n 1 1 @ 1 0 11335878 -theridiid n 1 2 @ #m 1 0 01774097 -theridiidae n 1 3 @ #m %m 1 0 01773930 -therm n 1 2 @ %p 1 0 13727209 -thermal n 1 2 @ + 1 0 11518645 -thermal_barrier n 1 1 @ 1 0 05124792 -thermal_emission n 1 1 @ 1 1 13566928 -thermal_equilibrium n 1 1 @ 1 0 14004017 -thermal_pollution n 1 1 @ 1 0 14518671 -thermal_printer n 1 1 @ 1 0 04419868 -thermal_reactor n 1 2 ! @ 1 0 04420024 -thermal_resistor n 1 1 @ 1 0 04420206 -thermal_spring n 1 1 @ 1 0 09305898 -thermalgesia n 1 1 @ 1 0 14333058 -thermel n 1 1 @ 1 0 04421083 -thermic_fever n 1 1 @ 1 0 14204586 -thermidor n 1 2 @ #p 1 0 15177549 -thermion n 1 2 @ + 1 0 09457199 -thermionic_current n 1 1 @ 1 0 11518743 -thermionic_emission n 1 1 @ 1 0 13566928 -thermionic_tube n 1 4 @ ~ #p %p 1 0 04494204 -thermionic_vacuum_tube n 1 4 @ ~ #p %p 1 0 04494204 -thermionic_valve n 1 4 @ ~ #p %p 1 0 04494204 -thermionics n 1 1 @ 1 0 06115322 -thermistor n 1 1 @ 1 1 04420206 -thermoacidophile n 1 1 @ 1 0 01348388 -thermobaric_bomb n 1 1 @ 1 0 04420461 -thermobia n 1 3 @ #m %m 1 0 02270810 -thermobia_domestica n 1 2 @ #m 1 0 02270945 -thermocautery n 1 2 @ ~ 1 0 00697887 -thermochemistry n 1 1 @ 1 0 06110823 -thermocoagulation n 1 1 @ 1 0 13567063 -thermocouple n 1 1 @ 1 1 04420720 -thermocouple_junction n 1 1 @ 1 0 04420720 -thermodynamics n 1 4 @ ~ + - 1 1 06114578 -thermodynamics_of_equilibrium n 1 1 @ 1 1 06114849 -thermoelectric_thermometer n 1 1 @ 1 0 04421083 -thermoelectricity n 1 2 @ + 1 0 11514672 -thermogram n 1 1 @ 1 0 07006018 -thermograph n 2 1 @ 2 0 04421417 04421258 -thermography n 1 2 @ ~ 1 0 01006313 -thermogravimeter n 1 2 @ + 1 0 04421582 -thermogravimetry n 1 2 @ + 1 0 01116466 -thermohydrometer n 1 2 @ + 1 0 04421582 -thermojunction n 1 1 @ 1 0 04421740 -thermometer n 1 4 @ ~ %p + 1 1 04421872 -thermometrograph n 1 1 @ 1 0 04421258 -thermometry n 1 2 @ + 1 1 01116360 -thermonuclear_bomb n 1 1 @ 1 0 03553248 -thermonuclear_reaction n 1 2 @ ~ 1 0 13567177 -thermonuclear_reactor n 1 1 @ 1 0 04422409 -thermonuclear_warhead n 1 2 @ #p 1 0 02753881 -thermopile n 1 1 @ 1 1 04422566 -thermoplastic n 1 3 @ ~ + 1 0 14593344 -thermoplastic_resin n 1 2 @ ~ 1 0 14593344 -thermopsis n 1 3 @ #m %m 1 0 12573078 -thermopsis_macrophylla n 1 1 @ 1 0 12573474 -thermopsis_villosa n 1 1 @ 1 0 12573647 -thermopylae n 1 2 @ ; 1 0 01297484 -thermoreceptor n 1 1 @ 1 0 05300397 -thermoregulator n 1 4 @ ~ #p %p 1 0 04422875 -thermos n 1 1 @ 1 0 04422727 -thermos_bottle n 1 1 @ 1 0 04422727 -thermos_flask n 1 1 @ 1 0 04422727 -thermosetting_compositions n 1 1 @ 1 0 14596063 -thermosetting_resin n 1 1 @ 1 0 14596063 -thermosphere n 1 2 @ #p 1 0 09457367 -thermostat n 1 5 @ ~ #p %p + 1 1 04422875 -thermostatics n 1 1 @ 1 1 06114849 -thermotherapy n 1 1 @ 1 0 00707537 -thermotropism n 1 1 @ 1 0 00862595 -theropod n 1 3 @ ~ #m 1 0 01712008 -theropod_dinosaur n 1 3 @ ~ #m 1 0 01712008 -theropoda n 1 3 @ #m %m 1 0 01711662 -thesaurus n 1 2 @ ~ 1 0 06421016 -theseus n 1 2 @ ; 1 0 09593416 -thesis n 2 1 @ 2 1 06755454 06409085 -thespesia n 1 3 @ #m %m 1 0 12188120 -thespesia_populnea n 1 2 @ #m 1 0 12188635 -thespian n 1 3 @ ~ + 1 0 09765278 -thespis n 1 1 @ 1 0 11338667 -thessalia n 1 4 @ #p %p - 1 0 08789970 -thessalian n 1 1 @ 1 0 10707616 -thessalonian n 1 1 @ 1 0 10707707 -thessalonica n 1 2 @ #p 1 0 08789605 -thessaloniki n 1 2 @ #p 1 0 08789605 -thessaly n 1 4 @ #p %p - 1 0 08789970 -theta n 1 2 @ #m 1 0 06834885 -theta_rhythm n 1 1 @ 1 0 11518915 -theta_wave n 1 1 @ 1 0 11518915 -thetis n 1 2 @ ; 1 0 09550758 -theurgy n 2 2 @ #p 2 0 09504464 05979198 -thevetia n 1 3 @ #m %m 1 0 11776861 -thevetia_neriifolia n 1 2 @ #m 1 0 11777080 -thevetia_peruviana n 1 2 @ #m 1 0 11777080 -thiabendazole n 1 1 @ 1 0 04423174 -thiamin n 1 1 @ 1 1 15091129 -thiamine n 1 1 @ 1 0 15091129 -thiamine_pyrophosphate n 1 1 @ 1 0 14800138 -thiazide n 1 2 @ ~ 1 0 04423288 -thiazine n 1 2 @ ~ 1 0 14771088 -thibet n 1 5 @ #p %m %p - 1 0 08906952 -thick n 1 1 @ 1 1 08588699 -thick-billed_murre n 1 1 @ 1 0 02047517 -thick-footed_morel n 1 2 @ #m 1 0 13033879 -thick-knee n 1 2 @ #m 1 0 02040266 -thick_skin n 1 2 @ #p 1 0 02665413 -thickener n 1 2 @ + 1 0 15069820 -thickening n 3 2 @ + 3 0 15069820 13895986 00357906 -thicket n 1 2 @ ~ 1 1 08437515 -thickhead n 1 2 @ #m 1 0 01556514 -thickness n 4 5 ! @ ~ = + 4 1 05103072 07133143 05136662 04936403 -thief n 1 2 @ ~ 1 1 10707804 -thielavia n 1 3 @ #m %m 1 0 13027670 -thielavia_basicola n 1 2 @ #m 1 0 13027879 -thievery n 1 3 @ ~ + 1 0 00780889 -thieving n 1 3 @ ~ + 1 1 00780889 -thievishness n 1 2 @ + 1 0 04875935 -thigh n 2 4 @ ~ #p %p 2 1 05562249 07648267 -thigh-slapper n 1 1 @ 1 0 06778925 -thigh_boot n 1 2 @ ~ 1 0 03521544 -thigh_pad n 1 1 @ 1 0 04423552 -thighbone n 1 3 @ #p %p 1 1 05573895 -thill n 1 1 @ 1 1 04423687 -thimble n 2 1 @ 2 0 13770829 04423845 -thimbleberry n 3 2 @ %p 3 0 12657509 12657082 12656685 -thimbleful n 1 1 @ 1 0 13770829 -thimblerig n 1 1 @ 1 0 00780731 -thimbleweed n 1 2 @ ~ 1 0 11725623 -thimerosal n 1 1 @ 1 0 04424003 -thin-leaved_bilberry n 1 1 @ 1 0 12248359 -thin-leaved_stringybark n 1 1 @ 1 0 12337246 -thin-shelled_mussel n 1 2 @ #m 1 0 01965252 -thin_air n 1 1 @ 1 0 14455847 -thin_person n 1 3 ! @ ~ 1 0 10708797 -thing n 12 2 @ ~ 12 10 13943968 00034479 05855004 04424218 07289831 05671325 06723908 04424418 04617289 05984182 07480356 00002452 -thing-in-itself n 1 1 @ 1 0 05813457 -thingamabob n 1 1 @ 1 0 03218545 -thingamajig n 1 1 @ 1 0 03218545 -thingmabob n 1 1 @ 1 0 03218545 -thingmajig n 1 1 @ 1 0 03218545 -things n 1 1 @ 1 1 13246332 -thingumabob n 1 1 @ 1 0 03218545 -thingumajig n 1 1 @ 1 0 03218545 -thingummy n 1 1 @ 1 0 03218545 -think n 1 3 @ + ; 1 0 05786372 -think_factory n 1 1 @ 1 1 08478702 -think_piece n 1 1 @ 1 0 06270129 -think_tank n 1 1 @ 1 0 08478702 -thinker n 2 3 @ ~ + 2 1 10708292 10708454 -thinking n 1 3 @ ~ + 1 1 05770926 -thinking_cap n 1 1 @ 1 0 14016275 -thinner n 1 2 @ + 1 0 14835333 -thinness n 5 4 ! @ ~ + 5 2 05103648 05001482 05136978 05114781 04936846 -thinning n 1 2 @ + 1 0 00363052 -thinning_shears n 1 2 @ ; 1 0 04424692 -thiobacillus n 1 3 @ ~ #m 1 0 01363121 -thiobacteria n 1 1 @ 1 0 01363288 -thiobacteriaceae n 1 3 @ #m %m 1 0 01362769 -thiocyanate n 1 1 @ 1 1 15070098 -thiocyanic_acid n 1 1 @ 1 0 15070234 -thiodiphenylamine n 1 2 @ ~ 1 0 14771643 -thioguanine n 1 1 @ 1 0 04424826 -thiopental n 1 1 @ 1 0 04424936 -thiopental_sodium n 1 1 @ 1 0 04424936 -thiopentobarbital_sodium n 1 1 @ 1 0 04424936 -thioridazine n 1 1 @ 1 0 04425262 -thiosulfil n 1 1 @ 1 0 04425445 -thiotepa n 1 1 @ 1 0 04425544 -thiothixene n 1 1 @ 1 0 04425656 -thiouracil n 1 1 @ 1 1 15069998 -third n 6 3 @ #m #p 6 3 13737190 00724168 13846900 06859504 04425977 04425804 -third-class_mail n 1 2 @ ~ 1 0 06275977 -third-degree_burn n 1 1 @ 1 0 14291435 -third-dimensionality n 1 2 @ ~ 1 1 05063564 -third-place_finish n 1 1 @ 1 0 07354628 -third-rater n 1 1 @ 1 0 10709256 -third_baron_rayleigh n 1 1 @ 1 0 11255211 -third_base n 2 2 @ #m 2 1 04425804 00724168 -third_baseman n 1 2 @ ; 1 0 10708976 -third_battle_of_ypres n 1 3 @ #p ; 1 0 01301080 -third_class n 2 2 @ ~ 2 0 06275977 04459243 -third_council_of_constantinople n 1 1 @ 1 0 08314501 -third_cranial_nerve n 1 1 @ 1 0 05478526 -third_crusade n 1 1 @ 1 0 00969421 -third_deck n 1 1 @ 1 0 03694098 -third_degree n 1 1 @ 1 0 07194811 -third_dimension n 1 1 @ 1 0 05138065 -third_epistel_of_john n 1 2 @ #p 1 0 06447582 -third_estate n 1 2 @ ; 1 0 08168117 -third_eye n 1 2 @ #p 1 0 05299927 -third_eyelid n 1 3 @ ~ #p 1 0 05314639 -third_gear n 1 2 @ #p 1 0 04425977 -third_house n 1 2 @ ~ 1 0 08375526 -third_lateran_council n 1 1 @ 1 0 08315860 -third_law_of_motion n 1 1 @ 1 0 05886266 -third_law_of_thermodynamics n 1 1 @ 1 0 05883296 -third_party n 2 1 @ 2 0 10709131 08264441 -third_person n 1 1 @ 1 1 06328022 -third_power n 1 1 @ 1 0 13731241 -third_rail n 1 1 @ 1 0 04426184 -third_reich n 1 1 @ 1 1 08170255 -third_sacker n 1 2 @ ; 1 1 10708976 -third_stomach n 1 2 @ #p 1 0 02399791 -third_tonsil n 1 2 @ #p 1 0 05529286 -third_trimester n 1 1 @ 1 0 15227261 -third_ventricle n 1 1 @ 1 0 05503009 -third_world n 1 1 @ 1 0 08168831 -thirst n 2 3 @ ~ + 2 2 14040660 04945254 -thirst_for_knowledge n 1 1 @ 1 0 05682798 -thirster n 1 1 @ 1 0 10270878 -thirstiness n 3 3 @ ~ + 3 0 14537250 14040660 04945254 -thirteen n 1 1 @ 1 1 13747199 -thirteenth n 1 1 @ 1 0 13848149 -thirties n 2 2 @ #p 2 1 15149038 15149180 -thirtieth n 1 1 @ 1 0 13848983 -thirty n 1 1 @ 1 1 13749407 -thirty-second n 1 1 @ 1 0 13738705 -thirty-second_note n 1 1 @ 1 0 06871675 -thirty-second_part n 1 1 @ 1 0 13738705 -thirty-something n 1 2 @ #p 1 0 15149038 -thirty_years'_war n 1 2 @ %p 1 0 01309109 -thistle n 1 3 @ ~ #m 1 0 11944196 -thistledown n 1 1 @ 1 0 11692792 -thlaspi n 1 3 @ #m %m 1 0 11898474 -thlaspi_arvense n 1 2 @ #m 1 0 11898775 -thm n 1 1 @ 1 0 06702358 -tho n 1 1 @ 1 0 06936070 -thole n 1 2 @ #p 1 0 03905730 -tholepin n 1 2 @ #p 1 0 03905730 -thomas n 5 1 @ 5 0 11339534 11339361 11339155 11339041 11338796 -thomas_a_becket n 1 2 @ ; 1 0 10840021 -thomas_a_kempis n 1 1 @ 1 0 10810818 -thomas_alva_edison n 1 1 @ 1 0 10949192 -thomas_aquinas n 1 2 @ ; 1 0 10820790 -thomas_augustus_watson n 1 1 @ 1 0 11376565 -thomas_babington_macaulay n 1 1 @ 1 0 11146914 -thomas_bayes n 1 1 @ 1 0 10838997 -thomas_bowdler n 1 1 @ 1 0 10859669 -thomas_bradley n 1 1 @ 1 0 10860999 -thomas_carew n 1 1 @ 1 0 10882436 -thomas_carlyle n 1 1 @ 1 0 10882706 -thomas_chippendale n 1 1 @ 1 0 10896046 -thomas_clayton_wolfe n 1 1 @ 1 0 11394491 -thomas_crawford n 1 1 @ 1 0 10914658 -thomas_de_quincey n 1 1 @ 1 0 10931167 -thomas_decker n 1 1 @ 1 0 10928140 -thomas_dekker n 1 1 @ 1 0 10928140 -thomas_edison n 1 1 @ 1 0 10949192 -thomas_edward_lawrence n 1 1 @ 1 0 11120834 -thomas_gainsborough n 1 1 @ 1 0 10987044 -thomas_gray n 1 1 @ 1 0 11012846 -thomas_hardy n 1 1 @ 1 0 11028675 -thomas_hart_benton n 2 1 @ 2 0 10845926 10845763 -thomas_hastings n 1 1 @ 1 0 11034307 -thomas_henry_huxley n 1 1 @ 1 0 11069534 -thomas_higginson n 1 1 @ 1 0 11049608 -thomas_hobbes n 1 1 @ 1 0 11052955 -thomas_hodgkin n 1 1 @ 1 0 11054034 -thomas_hopkins_gallaudet n 1 1 @ 1 0 10988059 -thomas_hunt_morgan n 1 1 @ 1 0 11190954 -thomas_huxley n 1 1 @ 1 0 11069534 -thomas_j._hanks n 1 1 @ 1 0 11028074 -thomas_j._jackson n 1 1 @ 1 0 11076079 -thomas_jackson n 1 1 @ 1 0 11076079 -thomas_jefferson n 1 1 @ 1 0 11081828 -thomas_jonathan_jackson n 1 1 @ 1 0 11076079 -thomas_kennerly_wolfe_jr. n 1 1 @ 1 0 11394657 -thomas_kid n 1 1 @ 1 0 11113489 -thomas_kyd n 1 1 @ 1 0 11113489 -thomas_lanier_williams n 1 1 @ 1 0 11389481 -thomas_malory n 1 1 @ 1 0 11152331 -thomas_malthus n 1 1 @ 1 0 11152856 -thomas_mann n 1 1 @ 1 0 11154023 -thomas_merton n 1 1 @ 1 0 11176797 -thomas_middleton n 1 1 @ 1 0 11178781 -thomas_moore n 1 1 @ 1 0 11189579 -thomas_more n 1 1 @ 1 0 11190183 -thomas_nast n 1 1 @ 1 0 11200949 -thomas_nelson_page n 1 1 @ 1 0 11219992 -thomas_paine n 1 1 @ 1 0 11220836 -thomas_pynchon n 1 1 @ 1 0 11249712 -thomas_reid n 1 1 @ 1 0 11257547 -thomas_robert_malthus n 1 1 @ 1 0 11152856 -thomas_stearns_eliot n 1 1 @ 1 0 10957072 -thomas_straussler n 1 1 @ 1 0 11320245 -thomas_sully n 1 1 @ 1 0 11325265 -thomas_sydenham n 1 1 @ 1 0 11327273 -thomas_tallis n 1 1 @ 1 0 11329808 -thomas_the_doubting_apostle n 1 1 @ 1 0 11338796 -thomas_wentworth_storrow_higginson n 1 1 @ 1 0 11049608 -thomas_willis n 1 1 @ 1 0 11390549 -thomas_wolfe n 2 1 @ 2 0 11394657 11394491 -thomas_woodrow_wilson n 1 1 @ 1 0 11390855 -thomas_wright_waller n 1 1 @ 1 0 11372242 -thomas_young n 1 1 @ 1 0 11403828 -thomism n 1 1 @ 1 0 06187350 -thomomys n 1 3 @ #m %m 1 0 02354470 -thomomys_bottae n 1 2 @ #m 1 0 02354621 -thomomys_talpoides n 1 2 @ #m 1 0 02354781 -thompson n 2 1 @ 2 0 11339905 11339669 -thompson_seedless n 1 1 @ 1 0 07760755 -thompson_submachine_gun n 1 1 @ 1 0 04450133 -thomsen's_disease n 1 1 @ 1 0 14545685 -thomson n 4 1 @ 4 0 11340824 11340642 11340411 11340146 -thomson's_gazelle n 1 2 @ #m 1 0 02423218 -thong n 5 2 @ #p 5 1 03643907 04426427 04426316 03464053 03364008 -thor n 1 2 @ ; 1 0 09583506 -thor_hyerdahl n 1 1 @ 1 0 11048586 -thoracentesis n 1 1 @ 1 0 00944296 -thoracic_actinomycosis n 1 1 @ 1 0 14259616 -thoracic_aorta n 1 2 @ #p 1 0 05336748 -thoracic_cavity n 1 3 @ #p %p 1 0 05553049 -thoracic_duct n 1 2 @ #p 1 0 05396690 -thoracic_medicine n 1 1 @ 1 0 06064683 -thoracic_nerve n 1 1 @ 1 0 05569979 -thoracic_outlet_syndrome n 1 1 @ 1 0 14310830 -thoracic_vein n 1 2 @ #p 1 0 05383467 -thoracic_vertebra n 1 2 @ #p 1 0 05589132 -thoracocentesis n 1 1 @ 1 0 00944296 -thoracoepigastric_vein n 1 1 @ 1 0 05383004 -thoracotomy n 1 1 @ 1 0 00698348 -thorax n 3 4 @ ~ #p %p 3 0 05553618 05552607 02665543 -thorazine n 1 2 @ ; 1 0 03023175 -thoreau n 1 2 @ + 1 1 11340992 -thorite n 1 2 @ %s 1 0 15070366 -thorium n 1 4 @ ~ #s + 1 0 14658109 -thorium-228 n 1 1 @ 1 0 14658422 -thorn n 3 3 @ ~ + 3 1 05831784 13089631 06840442 -thorn_apple n 1 3 @ ~ #m 1 0 12903367 -thornbill n 1 2 @ #m 1 0 01834540 -thorndike n 2 1 @ 2 0 11341267 11341137 -thorniness n 2 2 @ + 2 0 04949799 04643397 -thornton n 1 1 @ 1 0 11341374 -thornton_niven_wilder n 1 1 @ 1 0 11386692 -thornton_wilder n 1 1 @ 1 0 11386692 -thorny_amaranth n 1 2 @ #m 1 0 11824344 -thorny_skate n 1 2 @ #m 1 0 01501948 -thorough_bass n 1 1 @ 1 0 07032556 -thoroughbred n 3 2 @ ~ 3 0 10709358 02383231 01323599 -thoroughbred_race n 1 2 @ ~ 1 0 07463171 -thoroughbred_racing n 1 1 @ 1 0 00450230 -thoroughfare n 1 2 @ ~ 1 1 04426618 -thoroughness n 1 2 @ + 1 1 04672858 -thoroughwort n 1 2 @ #m 1 0 11968931 -thorpe n 1 1 @ 1 0 11341479 -thorshavn n 1 2 @ #p 1 0 08953029 -thorstein_bunde_veblen n 1 1 @ 1 0 11362022 -thorstein_veblen n 1 1 @ 1 0 11362022 -thortveitite n 1 2 @ %s 1 0 15070550 -thoth n 1 1 @ 1 0 09513744 -thou n 1 2 @ ~ 1 0 13750844 -thought n 4 3 @ ~ + 4 3 05833840 05770926 05954481 05945642 -thought-image n 1 1 @ 1 1 05928391 -thought-reader n 2 1 @ 2 0 10697879 10319580 -thought_process n 1 2 @ ~ 1 0 05770926 -thought_transference n 1 1 @ 1 0 07255998 -thoughtfulness n 4 6 ! @ ~ #p = + 4 0 05785508 04841358 04660536 01229793 -thoughtlessness n 2 4 ! @ ~ + 2 0 04845967 04661706 -thousand n 1 2 @ ~ 1 1 13750844 -thousand_and_one_nights n 1 2 @ - 1 0 07222230 -thousand_island_dressing n 1 1 @ 1 0 07835173 -thousandth n 2 1 @ 2 0 13849810 13739170 -thrace n 1 4 @ #p %m - 1 0 08915784 -thracian n 2 2 @ #m 2 0 09712090 06943221 -thraco-phrygian n 1 2 @ ~ 1 0 06943027 -thraldom n 1 3 @ ~ + 1 0 13997253 -thrall n 2 3 @ ~ + 2 0 13997253 10709435 -thralldom n 1 3 @ ~ + 1 0 13997253 -thrash n 1 3 @ #p + 1 0 00575083 -thrasher n 3 4 @ ~ #m + 3 0 04428191 01587834 01486010 -thrashing n 2 3 @ ~ + 2 0 07476623 01160729 -thraupidae n 1 3 @ #m %m 1 0 01597194 -thread n 4 4 @ ~ #p + 4 1 04426788 09409203 05773548 04154938 -thread-fish n 1 2 @ #m 1 0 02577952 -thread_blight n 1 1 @ 1 0 14219068 -thread_maker n 1 1 @ 1 0 10636340 -threader n 1 2 @ + 1 0 02861509 -threadfin n 1 3 @ ~ #m 1 0 02610980 -threadfish n 1 2 @ #m 1 0 02577952 -threadleaf_groundsel n 1 2 @ #m 1 0 12011838 -threads n 1 2 @ ; 1 0 04446162 -threadworm n 1 2 @ #m 1 0 01931520 -threat n 4 2 @ ~ 4 3 14543231 07226015 06733476 10702615 -threatened_abortion n 1 1 @ 1 0 00230824 -three n 2 1 @ 2 1 13744044 04480415 -three-bagger n 1 2 @ ~ 1 0 00132982 -three-banded_armadillo n 1 2 @ #m 1 0 02455135 -three-base_hit n 1 2 @ ~ 1 0 00132982 -three-card_monte n 1 1 @ 1 0 00493031 -three-centered_arch n 1 1 @ 1 0 04427216 -three-cornered_leek n 1 1 @ 1 0 12436090 -three-d n 2 1 @ 2 0 06618937 05939948 -three-day_event n 1 2 @ %p 1 0 07461050 -three-day_measles n 1 1 @ 1 0 14123259 -three-decker n 3 1 @ 3 0 07696839 04427473 04427376 -three-dimensional_figure n 1 2 @ ~ 1 1 13863473 -three-dimensional_radar n 1 1 @ 1 0 04427559 -three-dimensionality n 1 3 @ ~ + 1 1 05063564 -three-fourths n 1 1 @ 1 0 13737700 -three-hitter n 1 1 @ 1 0 00475403 -three-mile_limit n 1 1 @ 1 0 08663051 -three-piece_suit n 1 2 @ %p 1 0 04427715 -three-point_landing n 1 1 @ 1 0 00305707 -three-point_switch n 1 1 @ 1 0 04428008 -three-point_turn n 1 1 @ 1 0 01263418 -three-quarter_binding n 1 1 @ 1 0 04427857 -three-quarters n 1 1 @ 1 0 13737700 -three-ring_circus n 1 1 @ 1 0 00519941 -three-seeded_mercury n 1 2 @ #m 1 0 12922458 -three-spined_stickleback n 1 2 @ #m 1 0 01455317 -three-toed_sloth n 1 2 @ #m 1 0 02457408 -three-way_calling n 1 1 @ 1 0 06274760 -three-way_switch n 1 1 @ 1 0 04428008 -three-year-old_horse n 1 1 @ 1 0 02385461 -three_kings'_day n 1 2 @ #p 1 0 15194506 -three_year_old n 1 1 @ 1 0 02385461 -threepence n 1 2 @ ; 1 0 13391118 -threescore n 1 1 @ 1 0 08272774 -threesome n 2 2 @ ~ 2 0 13744044 07986066 -threnody n 1 2 @ ~ 1 0 07050619 -threonine n 1 1 @ 1 0 15070699 -thresher n 2 3 @ #m + 2 0 04428191 01486010 -thresher's_lung n 1 1 @ 1 0 14259865 -thresher_shark n 1 2 @ #m 1 0 01486010 -threshing n 1 2 @ + 1 1 00393161 -threshing_floor n 1 1 @ 1 0 04428382 -threshing_machine n 1 1 @ 1 0 04428191 -threshold n 5 4 @ ~ #p %p 5 4 15268993 05712426 03224032 03223686 13903738 -threshold_element n 1 1 @ 1 0 04428502 -threshold_function n 1 1 @ 1 0 13789281 -threshold_gate n 1 1 @ 1 0 04428502 -threshold_level n 1 1 @ 1 0 05100156 -threshold_operation n 1 2 @ ~ 1 0 13567344 -threskiornis n 1 3 @ #m %m 1 0 02006211 -threskiornis_aethiopica n 1 2 @ #m 1 0 02006364 -threskiornithidae n 1 3 @ #m %m 1 0 02005598 -thrift n 2 4 @ ~ #m + 2 0 12098827 04893525 -thrift_institution n 1 2 @ ~ 1 0 08422524 -thriftiness n 1 2 @ + 1 0 04893787 -thriftlessness n 1 2 @ + 1 0 04894964 -thriftshop n 1 1 @ 1 0 04428634 -thrill n 3 2 @ + 3 3 07528470 07520112 01261293 -thriller n 1 2 @ + 1 1 06370403 -thrinax n 1 3 @ #m %m 1 0 12597640 -thrinax_keyensis n 1 2 @ #m 1 0 12598027 -thrinax_microcarpa n 1 2 @ #m 1 0 12598027 -thrinax_morrisii n 1 2 @ #m 1 0 12598027 -thrinax_parviflora n 1 2 @ #m 1 0 12597798 -thrip n 1 3 @ ~ #m 1 0 02271897 -thripid n 1 3 @ ~ #m 1 0 02271897 -thripidae n 1 3 @ #m %m 1 0 02271740 -thrips n 1 3 @ ~ #m 1 0 02271897 -thrips_tobaci n 1 2 @ #m 1 0 02272552 -throat n 4 4 @ #p %p + 4 3 05547508 04428920 04428763 01514549 -throat_infection n 1 1 @ 1 0 14184986 -throat_protector n 1 1 @ 1 0 04429038 -throat_sweetbread n 1 1 @ 1 0 07652881 -throatwort n 1 1 @ 1 0 12039122 -throb n 2 2 @ + 2 0 14333334 07401726 -throbbing n 2 2 @ + 2 1 07401726 07396822 -throe n 2 1 @ 2 1 14324672 14477207 -throes n 1 1 @ 1 0 07495878 -thrombasthenia n 1 1 @ 1 0 14169717 -thrombectomy n 1 1 @ 1 0 00688098 -thrombin n 1 1 @ 1 0 14737249 -thrombocyte n 1 1 @ 1 0 15023959 -thrombocytopenia n 1 2 @ ~ 1 0 14198019 -thrombocytopenic_purpura n 1 1 @ 1 0 14565417 -thrombocytosis n 1 1 @ 1 0 14268221 -thromboembolism n 1 1 @ 1 0 14101935 -thrombokinase n 1 1 @ 1 0 15071035 -thrombolysis n 1 1 @ 1 0 13567515 -thrombolytic n 1 2 @ ~ 1 0 04429169 -thrombolytic_agent n 1 2 @ ~ 1 0 04429169 -thrombolytic_therapy n 1 1 @ 1 0 00707785 -thrombopenia n 1 2 @ ~ 1 0 14198019 -thrombophlebitis n 1 1 @ 1 0 14353862 -thromboplastin n 1 1 @ 1 0 15071035 -thrombosis n 1 3 @ ~ %p 1 1 14102075 -thrombus n 1 2 @ #p 1 1 14373246 -throne n 3 5 @ ~ #p %p + 3 1 04429376 04446521 00605023 -throng n 1 3 @ ~ + 1 1 08182716 -throstle n 2 2 @ #m 2 0 04429613 01558149 -throttle n 2 3 @ #p + 2 1 02670186 02670683 -throttle_valve n 1 2 @ #p 1 0 02670186 -throttlehold n 1 1 @ 1 0 05193781 -throttler n 1 2 @ + 1 0 10121246 -throttling n 1 2 @ + 1 0 00225786 -throughput n 1 2 @ ; 1 0 04429756 -throughway n 1 3 @ ~ %p 1 0 03306610 -throw n 5 4 @ ~ + ; 5 2 00104539 14485990 07351195 04429971 01245618 -throw-in n 1 2 @ ; 1 0 00107137 -throw-weight n 1 1 @ 1 0 05028562 -throw_pillow n 1 1 @ 1 0 04430364 -throw_rug n 1 1 @ 1 0 04144539 -throw_stick n 1 3 @ ~ ; 1 0 02871963 -throwaway n 3 3 @ ~ ; 3 0 10663137 07250339 07011689 -throwback n 2 1 @ 2 0 09819860 07343574 -thrower n 3 3 @ ~ + 3 0 10709745 10709529 10460806 -throwing_away n 1 2 @ ~ 1 0 00091234 -throwing_board n 1 1 @ 1 0 04430158 -throwing_stick n 2 3 @ ~ ; 2 0 04430158 02871963 -throwster n 1 1 @ 1 0 10709745 -thrum n 1 2 @ + 1 0 07397230 -thrush n 3 4 @ ~ #m ; 3 0 14182568 10709876 01557185 -thrush_nightingale n 1 2 @ #m 1 0 01560280 -thrust n 5 3 @ ~ + 5 3 11498203 01173965 00103834 06711404 00334935 -thrust_bearing n 1 1 @ 1 0 04430475 -thrust_fault n 1 1 @ 1 0 09457507 -thrust_stage n 1 1 @ 1 0 04430738 -thruster n 2 2 @ + 2 0 10495756 04430605 -thrusting n 1 2 @ + 1 0 00334935 -thruway n 1 3 @ ~ %p 1 1 03306610 -thryothorus n 1 3 @ #m %m 1 0 01585890 -thryothorus_ludovicianus n 1 2 @ #m 1 0 01586020 -thucydides n 1 1 @ 1 0 11341614 -thud n 1 2 @ + 1 1 07396945 -thug n 1 2 @ ~ 1 0 10184081 -thuggee n 1 1 @ 1 1 01250745 -thuggery n 1 1 @ 1 0 00775006 -thuja n 1 3 @ #m %m 1 0 11643684 -thuja_occidentalis n 1 2 @ #m 1 0 11644226 -thuja_orientalis n 1 2 @ #m 1 0 11644462 -thuja_plicata n 1 2 @ #m 1 0 11644046 -thujopsis n 1 3 @ #m %m 1 0 11644712 -thujopsis_dolobrata n 1 2 @ #m 1 0 11644872 -thule n 2 2 @ #p 2 0 08954443 08954269 -thulium n 1 2 @ #s 1 0 14658546 -thumb n 3 5 @ ~ #p %p + 3 1 05567217 04430896 03866721 -thumb_index n 1 1 @ 1 0 04431296 -thumbhole n 2 2 @ #p 2 0 04431158 04431025 -thumbnail n 1 2 @ #p 1 1 05584390 -thumbnut n 1 1 @ 1 0 04593185 -thumbprint n 1 1 @ 1 0 06644916 -thumbscrew n 2 1 @ 2 0 04431547 04431436 -thumbstall n 1 1 @ 1 0 04431648 -thumbtack n 1 2 @ + 1 0 04431745 -thump n 2 2 @ + 2 0 07396945 01175099 -thumping n 1 2 @ + 1 1 07396945 -thunbergia n 1 3 @ #m %m 1 0 12813024 -thunbergia_alata n 1 2 @ #m 1 0 12813189 -thunder n 3 4 @ ~ + ; 3 2 07377682 07397355 02837416 -thunder_bay n 1 2 @ #p 1 0 08828296 -thunder_lizard n 1 2 @ #m 1 0 01709484 -thunder_mug n 1 1 @ 1 0 03004275 -thunder_snake n 1 2 @ #m 1 0 01728572 -thunderbird n 1 2 @ ; 1 0 10709979 -thunderbolt n 2 1 @ 2 0 11519121 07298396 -thunderclap n 2 1 @ 2 0 07397552 07298396 -thundercloud n 1 1 @ 1 0 09261772 -thunderer n 2 2 @ + 2 0 09574350 04431925 -thunderhead n 1 1 @ 1 0 09457693 -thundershower n 1 1 @ 1 0 11501988 -thunderstorm n 1 1 @ 1 0 11519253 -thunk n 1 1 @ 1 0 07397641 -thunnus n 1 3 @ #m %m 1 0 02626590 -thunnus_alalunga n 1 2 @ %p 1 0 02627037 -thunnus_albacares n 1 2 @ #m 1 0 02627532 -thunnus_thynnus n 1 3 @ #m %p 1 0 02627292 -thurber n 1 1 @ 1 0 11341760 -thurible n 1 2 @ ; 1 0 02993368 -thurifer n 1 1 @ 1 0 10710171 -thuringia n 1 2 @ #p 1 0 08776320 -thursday n 1 1 @ 1 1 15164354 -thus n 1 2 @ + 1 0 14873951 -thwack n 1 2 @ + 1 1 00133567 -thwart n 1 2 @ #p 1 1 04432043 -thwarter n 1 3 @ ~ + 1 0 10349243 -thwarting n 1 2 @ + 1 0 00067990 -thylacine n 1 2 @ #m 1 0 01884476 -thylacinus n 1 3 @ #m %m 1 0 01884348 -thylacinus_cynocephalus n 1 2 @ #m 1 0 01884476 -thylogale n 1 3 @ #m %m 1 0 01879095 -thyme n 2 4 @ ~ #m #p 2 0 12870535 07821758 -thyme-leaved_sandwort n 1 1 @ 1 0 11806814 -thyme-leaved_speedwell n 1 1 @ 1 0 12892013 -thyme_camphor n 1 1 @ 1 0 15073563 -thymelaeaceae n 1 3 @ #m %m 1 0 12346179 -thymelaeales n 1 3 @ #m %m 1 0 12322887 -thymic_acid n 1 1 @ 1 0 15073563 -thymidine n 1 1 @ 1 0 15073424 -thymine n 1 2 @ #s 1 0 15072857 -thymol n 1 1 @ 1 0 15073563 -thymosin n 1 1 @ 1 0 05413102 -thymus n 2 4 @ #m #p %m 2 0 12870392 05332569 -thymus_gland n 1 2 @ #p 1 0 05332569 -thymus_serpyllum n 1 1 @ 1 0 12870891 -thymus_vulgaris n 1 2 @ %p 1 0 12870682 -thyreophora n 1 3 @ #m %m 1 0 01701334 -thyreophoran n 1 3 @ #m %m 1 0 01701334 -thyrocalcitonin n 1 1 @ 1 0 05413465 -thyroglobulin n 1 1 @ 1 1 14922779 -thyroid n 1 2 @ + 1 1 05330244 -thyroid-stimulating_hormone n 1 1 @ 1 1 15073973 -thyroid_cartilage n 1 2 @ #p 1 0 05530296 -thyroid_gland n 1 1 @ 1 1 05330244 -thyroid_hormone n 1 2 @ ~ 1 1 05413241 -thyroid_vein n 1 2 @ ~ 1 0 05383598 -thyroidectomy n 1 1 @ 1 0 00688220 -thyroiditis n 1 1 @ 1 0 14357160 -thyromegaly n 1 1 @ 1 0 14199477 -thyronine n 1 1 @ 1 1 15074456 -thyroprotein n 1 1 @ 1 0 14922637 -thyrotoxicosis n 1 3 @ ~ %p 1 0 14120767 -thyrotrophic_hormone n 1 1 @ 1 1 15073973 -thyrotrophin n 1 1 @ 1 1 15073973 -thyrotropic_hormone n 1 1 @ 1 0 15073973 -thyrotropin n 1 1 @ 1 0 15073973 -thyrotropin-releasing_factor n 1 1 @ 1 0 15074203 -thyrotropin-releasing_hormone n 1 1 @ 1 0 15074203 -thyroxin n 1 1 @ 1 0 05413647 -thyroxine n 1 1 @ 1 1 05413647 -thyrse n 1 1 @ 1 0 13132756 -thyrsopteris n 1 2 @ #m 1 0 13191884 -thyrsopteris_elegans n 1 2 @ #m 1 0 13191884 -thyrsus n 1 1 @ 1 0 13132756 -thysanocarpus n 1 3 @ #m %m 1 0 11899027 -thysanopter n 1 3 @ ~ #m 1 0 02271570 -thysanoptera n 1 3 @ #m %m 1 0 02271427 -thysanopteron n 1 3 @ ~ #m 1 0 02271570 -thysanopterous_insect n 1 3 @ ~ #m 1 0 02271570 -thysanura n 1 3 @ #m %m 1 0 02269829 -thysanuran_insect n 1 3 @ ~ #m 1 0 02270011 -thysanuron n 1 3 @ ~ #m 1 0 02270011 -thz n 1 1 @ 1 0 15280108 -ti n 3 4 @ #m #s ; 3 0 14659211 12478506 06869129 -tia n 1 1 @ 1 0 14166589 -tiamat n 1 2 @ ; 1 0 09522222 -tianjin n 1 2 @ #p 1 0 08728882 -tiara n 1 1 @ 1 0 04432203 -tiarella n 1 3 @ #m %m 1 0 12803517 -tiarella_cordifolia n 1 2 @ #m 1 0 12803754 -tiarella_unifoliata n 1 2 @ #m 1 0 12803958 -tib n 1 3 @ #p %p 1 0 13629482 -tiber n 1 1 @ 1 0 09457851 -tiberius n 1 1 @ 1 0 11341970 -tiberius_claudius_drusus_nero_germanicus n 1 1 @ 1 0 10899414 -tiberius_claudius_nero_caesar_augustus n 1 1 @ 1 0 11341970 -tibet n 1 6 @ #p %m %p + - 1 1 08906952 -tibetan n 2 1 @ 2 1 06933931 09734450 -tibetan_buddhism n 1 2 @ ; 1 0 06241825 -tibetan_mastiff n 1 1 @ 1 0 02108551 -tibetan_terrier n 1 1 @ 1 0 02097474 -tibeto-burman n 1 2 @ ~ 1 0 06931199 -tibeto-burman_language n 1 2 @ ~ 1 0 06931199 -tibia n 1 3 @ #p + 1 0 05594367 -tibia_valga n 1 2 @ #p 1 0 14559983 -tibia_vara n 1 1 @ 1 0 05561834 -tibial_vein n 1 2 @ #p 1 0 05384300 -tibialis n 1 3 @ ~ #p 1 0 05591256 -tibialis_anterior n 1 1 @ 1 0 05591503 -tibialis_anticus n 1 1 @ 1 1 05591503 -tibialis_muscle n 1 3 @ ~ #p 1 0 05591256 -tibialis_posterior n 1 1 @ 1 0 05591661 -tibialis_posticus n 1 1 @ 1 0 05591661 -tibicen n 1 3 @ #m %m 1 0 02256882 -tibit n 1 3 @ #p %p 1 0 13630036 -tibur n 1 2 @ #p 1 0 08808077 -tic n 1 1 @ 1 0 14361972 -tic-tac-toe n 1 1 @ 1 0 00506207 -tic_douloureux n 1 1 @ 1 0 14330588 -tical n 1 2 @ %p 1 0 13663820 -tichodroma n 1 3 @ #m %m 1 0 01590042 -tichodroma_muriaria n 1 2 @ #m 1 0 01590220 -tichodrome n 1 2 @ #m 1 0 01590220 -ticino n 1 2 @ #p 1 0 08801546 -tick n 4 4 @ ~ #m + 4 2 07397761 01776313 06818747 04432308 -tick-tack-toe n 1 1 @ 1 0 00506207 -tick-weed n 1 3 @ ~ #m 1 0 11956850 -tick_fever n 1 1 @ 1 0 14141656 -tick_trefoil n 1 3 @ ~ #m 1 0 12526516 -ticker n 3 5 @ ~ #p %p + 3 0 05388805 04555897 04432393 -ticker_tape n 1 1 @ 1 0 14976323 -ticket n 5 4 @ ~ + ; 5 1 06518719 07273136 06558678 06495948 04716703 -ticket-of-leave n 1 1 @ 1 0 06690928 -ticket_agent n 1 2 @ ; 1 0 09629477 -ticket_book n 1 1 @ 1 0 06414267 -ticket_booth n 1 2 @ #p 1 0 02885882 -ticket_collector n 1 1 @ 1 0 10710259 -ticket_holder n 1 1 @ 1 0 09629643 -ticket_line n 1 1 @ 1 0 08433245 -ticket_office n 1 2 @ #p 1 0 02885882 -ticket_stub n 1 2 @ ~ 1 0 06520429 -ticket_taker n 1 1 @ 1 0 10710259 -ticket_tout n 1 2 @ ; 1 0 10718509 -ticket_window n 1 1 @ 1 0 04432538 -ticking n 2 3 @ ~ + 2 0 07397761 04432662 -ticking_bomb n 1 1 @ 1 0 13944096 -tickle n 2 2 @ + 2 0 05723417 00144445 -tickler n 1 1 @ 1 0 06792818 -tickler_coil n 1 1 @ 1 0 04432785 -tickler_file n 1 1 @ 1 0 06792818 -tickling n 1 2 @ + 1 0 00144445 -tickseed n 1 3 @ ~ #m 1 0 11956850 -tickseed_sunflower n 1 1 @ 1 0 11940599 -ticktack n 1 2 @ ; 1 0 06792950 -ticktacktoe n 1 1 @ 1 0 00506207 -ticktacktoo n 1 1 @ 1 0 00506207 -ticktock n 1 2 @ + 1 0 07397955 -tickweed n 1 3 @ ~ #m 1 0 11956850 -ticonderoga n 1 3 @ #p ; 1 0 01279120 -tictac n 1 1 @ 1 0 07397955 -tidal_basin n 1 1 @ 1 0 09457979 -tidal_bore n 1 1 @ 1 0 07403920 -tidal_current n 1 3 @ ~ #p 1 0 07404114 -tidal_flow n 1 3 @ ~ #p 1 0 07404114 -tidal_river n 1 2 @ #p 1 0 09458079 -tidal_stream n 1 2 @ #p 1 0 09458079 -tidal_wave n 3 1 @ 3 0 07349069 07348870 07348694 -tidal_zone n 1 1 @ 1 0 08691188 -tidbit n 1 1 @ 1 1 07594737 -tiddler n 1 3 @ ~ %p 1 0 09917593 -tiddlywinks n 1 1 @ 1 0 00488051 -tide n 3 4 @ ~ %p + 3 2 07402519 07444495 15275727 -tide_rip n 1 1 @ 1 0 07404584 -tideland n 1 1 @ 1 0 09458269 -tidemark n 1 1 @ 1 0 04432942 -tidewater n 2 3 @ #p %p 2 2 09458372 09051898 -tidewater_region n 1 2 @ #p 1 0 09051898 -tidewater_river n 1 2 @ #p 1 0 09458079 -tidewater_stream n 1 2 @ #p 1 0 09458079 -tideway n 1 1 @ 1 0 09458494 -tidiness n 2 4 ! @ ~ + 2 0 14497233 04896515 -tidings n 1 2 @ ~ 1 1 06642138 -tidy n 1 1 @ 1 0 04433077 -tidy_sum n 1 2 @ ~ 1 0 13774404 -tidy_tips n 1 2 @ #m 1 0 11988596 -tidytips n 1 2 @ #m 1 0 11988596 -tie n 9 5 @ ~ #p + ; 9 5 03815615 13930385 13947174 04433377 03673971 07353716 06866124 04433585 04433185 -tie-in n 1 2 @ ~ 1 1 03673971 -tie-up n 2 2 @ + 2 0 13930385 07366145 -tie_beam n 1 1 @ 1 0 04433377 -tie_clip n 1 1 @ 1 0 04433800 -tie_rack n 1 1 @ 1 0 04434207 -tie_rod n 1 2 @ #p 1 0 04434531 -tie_tack n 1 1 @ 1 0 04434670 -tieback n 1 1 @ 1 0 04019881 -tiebreaker n 1 1 @ 1 0 15234469 -tien-pao n 1 2 @ #m 1 0 09533668 -tien_shan n 1 3 @ #p %p 1 0 09458587 -tientsin n 1 2 @ #p 1 0 08728882 -tiepin n 1 1 @ 1 0 04434670 -tiepolo n 1 1 @ 1 0 11342191 -tier n 5 3 @ ~ + 5 0 14428160 10710509 10710403 04434059 04433905 -tier_up n 1 1 @ 1 0 10710403 -tierce n 3 1 @ 3 0 15229875 13744044 13737190 -tiercel n 1 1 @ 1 0 01606177 -tiered_seat n 1 3 @ ~ #p 1 0 04434285 -tierra_del_fuego n 1 2 @ #p 1 0 08722394 -tietze's_syndrome n 1 1 @ 1 0 14310987 -tiff n 1 1 @ 1 0 07184735 -tiffany n 1 1 @ 1 0 11342301 -tiffany_glass n 1 1 @ 1 0 14882935 -tiffin n 1 2 @ ~ 1 0 07575076 -tiflis n 1 2 @ #p 1 0 09019194 -tiger n 2 3 @ ~ #m 2 2 10710632 02129604 -tiger_beetle n 1 2 @ #m 1 0 02165105 -tiger_cat n 2 2 @ #m 2 0 02126465 02123159 -tiger_cowrie n 1 1 @ 1 0 01953762 -tiger_cub n 1 1 @ 1 0 01323068 -tiger_lily n 2 1 @ 2 0 12427566 12427184 -tiger_moth n 1 1 @ 1 0 02305636 -tiger_rattlesnake n 1 2 @ #m 1 0 01756916 -tiger_salamander n 1 1 @ 1 0 01632601 -tiger_shark n 1 2 @ #m 1 0 01491361 -tiger_snake n 1 2 @ #m 1 0 01750437 -tigers n 1 2 @ ; 1 0 08032023 -tight_end n 1 2 @ ; 1 0 10710778 -tight_money n 1 2 ! @ 1 0 13256434 -tightening n 1 4 ! @ ~ + 1 1 00148057 -tightfistedness n 1 3 @ ~ + 1 0 04833687 -tightness n 5 4 ! @ ~ + 5 0 14450540 05721728 05088804 04833687 04776940 -tightrope n 1 2 @ ~ 1 0 04434780 -tightrope_walker n 1 1 @ 1 0 10115946 -tightrope_walking n 1 1 @ 1 0 00324978 -tights n 1 3 @ ~ ; 1 0 04434932 -tightwad n 1 1 @ 1 0 09912681 -tiglon n 1 1 @ 1 0 02130086 -tigon n 1 1 @ 1 0 02130086 -tigress n 1 1 @ 1 0 02129923 -tigris n 1 2 @ #p 1 0 09458791 -tigris_river n 1 2 @ #p 1 0 09458791 -tijuana n 1 2 @ #p 1 0 08746147 -tike n 2 3 @ ~ %p 2 0 10410815 09917593 -tilapia n 1 2 @ #m 1 0 02586129 -tilapia_nilotica n 1 1 @ 1 0 02586238 -tilde n 1 1 @ 1 0 06823561 -tilden n 1 1 @ 1 0 11342440 -tile n 3 5 @ ~ #p %s + 3 1 04435180 15074568 04435378 -tile_cutter n 1 1 @ 1 0 04435552 -tile_roof n 1 2 @ %p 1 0 04435653 -tilefish n 2 2 @ #m 2 0 02583096 02573249 -tiler n 1 2 @ + 1 0 10710913 -tilia n 1 3 @ #m %m 1 0 12202712 -tilia_americana n 1 1 @ 1 0 12203529 -tilia_cordata n 1 1 @ 1 0 12203699 -tilia_heterophylla n 1 1 @ 1 0 12203896 -tilia_japonica n 1 1 @ 1 0 12204032 -tilia_tomentosa n 1 1 @ 1 0 12204175 -tiliaceae n 1 3 @ #m %m 1 0 12202352 -tiling n 1 2 @ + 1 0 00719274 -tiliomycetes n 1 2 @ #m 1 0 13065702 -till n 3 3 @ ~ + 3 0 15074772 13357891 02976939 -tillage n 2 3 @ ~ + 2 0 09260907 00918176 -tillandsia n 1 3 @ #m %m 1 0 12607896 -tillandsia_usneoides n 1 2 @ #m 1 0 12608127 -tilled_land n 1 2 @ ~ 1 0 09260907 -tiller n 4 4 @ ~ #p + 4 0 13164970 10711005 04435759 03146846 -tilletia n 1 3 @ #m %m 1 0 13068073 -tilletia_caries n 1 2 @ #m 1 0 13068255 -tilletia_foetida n 1 2 @ #m 1 0 13068434 -tilletiaceae n 1 3 @ #m %m 1 0 13067845 -tillich n 1 1 @ 1 0 11342618 -tilling n 1 4 @ ~ #p + 1 0 00918820 -tilt n 5 4 @ ~ #p + 5 0 07472460 07183151 06202296 05068080 00348008 -tilt-top_table n 1 1 @ 1 1 04436012 -tilt_angle n 1 1 @ 1 0 13918584 -tilter n 2 2 @ + 2 0 10711144 04435870 -tilth n 2 2 @ ~ 2 1 14496063 09260907 -tilting_board n 1 2 @ #p 1 0 04167759 -tiltyard n 1 1 @ 1 0 08684572 -tim_leary n 1 1 @ 1 0 11122579 -timalia n 1 3 @ #m %m 1 0 01566509 -timaliidae n 1 3 @ #m %m 1 0 01566386 -timbale n 2 1 @ 2 0 07625324 07625201 -timbale_case n 1 1 @ 1 0 07625201 -timber n 5 4 @ ~ %s ; 5 3 14943580 04436185 04436329 09284015 04987620 -timber_hitch n 1 1 @ 1 0 04436401 -timber_line n 1 1 @ 1 0 08547655 -timber_rattlesnake n 1 3 @ ~ #m 1 0 01755740 -timber_tree n 1 1 @ 1 0 13107694 -timber_wolf n 1 1 @ 1 0 02114367 -timberland n 1 2 @ ~ 1 0 09284015 -timberline n 1 1 @ 1 0 08547655 -timberman n 1 1 @ 1 0 10711253 -timbre n 1 3 @ ~ ; 1 1 04987620 -timbrel n 1 1 @ 1 0 04436542 -timbuktu n 1 2 @ #p 1 0 08966085 -time n 10 4 @ ~ = + 10 9 07309599 15270431 15122231 15245515 00028270 07288215 15129927 15135822 04991738 15224692 -time-and-motion_study n 1 1 @ 1 0 00645365 -time-ball n 1 2 @ #p 1 0 04436675 -time-delay_measuring_instrument n 1 1 @ 1 0 04437380 -time-delay_measuring_system n 1 1 @ 1 1 04437380 -time-fuse n 1 1 @ 1 0 04437670 -time-motion_study n 1 1 @ 1 0 00645365 -time-out n 1 2 @ #p 1 0 15274305 -time-scale_factor n 1 2 @ ; 1 0 13734202 -time-switch n 1 1 @ 1 0 04438643 -time_and_a_half n 1 1 @ 1 0 13281641 -time_and_motion_study n 1 1 @ 1 0 00645365 -time_being n 1 1 @ 1 0 15135434 -time_bill n 1 1 @ 1 0 13423007 -time_bomb n 2 1 @ 2 0 13944096 04436832 -time_capsule n 1 1 @ 1 0 04436992 -time_clock n 1 1 @ 1 1 04437276 -time_constant n 2 3 @ ~ ; 2 0 15269996 13826084 -time_deposit n 1 1 @ 1 0 13381428 -time_deposit_account n 1 1 @ 1 0 13364368 -time_draft n 1 1 @ 1 0 13423007 -time_exposure n 2 1 @ 2 0 04437552 00907788 -time_frame n 1 1 @ 1 0 15116095 -time_immemorial n 1 1 @ 1 0 15252524 -time_interval n 1 2 @ ~ 1 0 15269513 -time_lag n 1 2 @ ~ 1 0 15272029 -time_limit n 1 2 @ ~ 1 0 15224156 -time_loan n 1 1 @ 1 0 13400472 -time_machine n 1 1 @ 1 1 04437793 -time_note n 1 1 @ 1 0 13415271 -time_of_arrival n 1 1 @ 1 1 15180934 -time_of_day n 1 2 @ ~ 1 0 15228378 -time_of_departure n 1 2 @ ~ 1 0 15181094 -time_of_life n 1 3 @ ~ #p 1 1 15144371 -time_of_origin n 1 1 @ 1 0 04926217 -time_of_year n 1 3 @ ~ #p 1 1 15236475 -time_off n 1 3 ! @ ~ 1 1 15118453 -time_out n 1 2 @ ~ 1 0 01062997 -time_out_of_mind n 1 1 @ 1 0 15252524 -time_period n 1 2 @ ~ 1 1 15113229 -time_plan n 1 2 @ ~ 1 1 13296593 -time_scale n 1 2 @ ~ 1 0 15134691 -time_series n 1 2 @ ; 1 0 06029547 -time_sharing n 1 2 @ ; 1 0 13844057 -time_sheet n 1 1 @ 1 0 06505154 -time_signal n 1 1 @ 1 0 06793091 -time_signature n 1 2 @ ~ 1 0 06864524 -time_slot n 1 1 @ 1 0 15270245 -time_study n 1 1 @ 1 0 00645365 -time_to_come n 1 2 @ ~ 1 0 15121625 -time_unit n 1 2 @ ~ 1 0 15154774 -time_value n 1 2 @ ; 1 0 15134913 -time_zone n 1 1 @ 1 0 08691276 -timecard n 2 1 @ 2 0 06504838 04437131 -timekeeper n 3 4 @ ~ %p ; 3 0 10711483 10711370 04437953 -timekeeping n 1 2 @ ~ 1 0 15173712 -timeless_existence n 1 1 @ 1 0 13956905 -timelessness n 1 2 @ + 1 0 13956905 -timeline n 1 1 @ 1 0 06504965 -timeliness n 2 3 ! @ + 2 1 05049253 04718826 -timepiece n 1 3 @ ~ %p 1 1 04437953 -timer n 3 4 @ ~ + ; 3 1 04438304 10711483 04438507 -times n 2 2 @ ~ 2 2 15120346 00871576 -times_square n 1 2 @ #p 1 0 09122542 -timeserver n 1 1 @ 1 0 10711641 -timetable n 2 1 @ 2 1 06496499 06496397 -timework n 1 1 @ 1 0 00795625 -timgad n 1 2 @ #p 1 0 08707431 -timid n 1 2 ! @ 1 0 07944900 -timidity n 2 5 ! @ ~ = + 2 1 07522729 04860759 -timidness n 1 3 @ ~ + 1 0 07522729 -timimoun n 1 2 @ #p 1 0 08707587 -timing n 2 4 @ ~ = + 2 1 05046009 00807078 -timolol n 1 1 @ 1 0 04438742 -timor n 1 4 @ #m #p %p 1 0 08908739 -timor_sea n 1 2 @ #p 1 0 09458967 -timorese n 1 1 @ 1 0 10711766 -timorousness n 2 4 @ ~ = + 2 0 07522729 04860759 -timothy n 3 4 @ #m #p %p 3 0 12130549 11342766 07802152 -timothy_francis_leary n 1 1 @ 1 0 11122579 -timothy_leary n 1 1 @ 1 0 11122579 -timothy_miles_bindon_rice n 1 1 @ 1 0 11259777 -timpani n 1 2 @ + 1 0 03612965 -timpanist n 1 2 @ + 1 0 10734963 -timucu n 1 1 @ 1 0 02550203 -timur n 1 1 @ 1 0 11330026 -timur_lenk n 1 1 @ 1 0 11330026 -tin n 4 4 @ ~ #s + 4 1 14658855 04438897 02949542 02946921 -tin-plating n 1 1 @ 1 0 00718195 -tin_can n 2 2 @ ~ 2 0 04439039 02946921 -tin_disease n 1 1 @ 1 0 07360477 -tin_ear n 2 1 @ 2 0 14551704 04844478 -tin_foil n 2 2 @ %s 2 0 04439712 02700767 -tin_hat n 1 1 @ 1 0 03492922 -tin_opener n 1 2 @ ~ 1 0 02951585 -tin_pan_alley n 1 1 @ 1 0 08539557 -tin_pest n 1 1 @ 1 0 07360477 -tin_plague n 1 1 @ 1 0 07360477 -tin_plate n 1 3 @ #s %s 1 0 04439840 -tin_pyrites n 1 1 @ 1 0 15053568 -tin_whistle n 1 1 @ 1 0 03912218 -tinamidae n 1 3 @ #m %m 1 0 01810132 -tinamiformes n 1 3 @ #m %m 1 0 01809977 -tinamou n 1 2 @ #m 1 0 01810268 -tinbergen n 2 1 @ 2 0 11343040 11342905 -tinca n 1 3 @ #m %m 1 0 01440655 -tinca_tinca n 1 2 @ #m 1 0 01440764 -tincture n 4 4 @ ~ + ; 4 0 14986004 06646628 04959230 04439122 -tincture_of_iodine n 1 1 @ 1 0 04439305 -tincture_of_opium n 1 1 @ 1 0 03647108 -tindal n 1 1 @ 1 0 11354333 -tindale n 1 1 @ 1 0 11354333 -tinder n 1 1 @ 1 0 15101586 -tinderbox n 2 1 @ 2 0 13944337 04439505 -tine n 1 2 @ #p 1 1 04439585 -tine_test n 1 1 @ 1 0 05746424 -tinea n 2 4 @ ~ #m %m 2 0 14125466 02291940 -tinea_barbae n 1 1 @ 1 0 14126181 -tinea_capitis n 1 1 @ 1 0 14126293 -tinea_corporis n 1 1 @ 1 0 14126412 -tinea_cruris n 1 1 @ 1 0 14126519 -tinea_pedis n 1 1 @ 1 0 14126078 -tinea_pellionella n 1 2 @ #m 1 0 02292085 -tinea_unguium n 1 1 @ 1 0 14127100 -tineid n 1 3 @ ~ #m 1 0 02291572 -tineid_moth n 1 3 @ ~ #m 1 0 02291572 -tineidae n 1 3 @ #m %m 1 0 02291391 -tineoid n 1 3 @ ~ #m 1 0 02291220 -tineoid_moth n 1 3 @ ~ #m 1 0 02291220 -tineoidea n 1 3 @ #m %m 1 0 02291024 -tineola n 1 3 @ #m %m 1 0 02292272 -tineola_bisselliella n 1 2 @ #m 1 0 02292401 -tinfoil n 1 2 @ %s 1 0 04439712 -ting n 1 2 @ + 1 0 07398097 -tinge n 2 3 @ ~ + 2 0 13774115 04959567 -tingidae n 1 3 @ #m %m 1 0 02238474 -tingle n 2 3 @ ~ + 2 0 07520112 05722868 -tingling n 1 3 @ ~ + 1 0 05722868 -tininess n 1 2 @ + 1 0 05106928 -tinker n 3 3 @ #m + 3 0 10712055 10711852 02624987 -tinker's_dam n 1 1 @ 1 0 05140793 -tinker's_damn n 1 1 @ 1 0 05140793 -tinker's_root n 1 2 @ #m 1 0 12679876 -tinkerer n 2 2 @ + 2 0 10712229 10712055 -tinkle n 1 2 @ + 1 1 07398097 -tinned_goods n 1 2 @ ~ 1 0 07572957 -tinned_meat n 1 2 @ ~ 1 0 07573103 -tinner n 1 1 @ 1 0 10712374 -tinnevelly_senna n 1 1 @ 1 0 12499979 -tinning n 2 2 @ + 2 0 00718325 00718195 -tinnitus n 1 1 @ 1 0 14568359 -tinplate n 1 3 @ #s %s 1 0 04439840 -tinsel n 2 2 @ + 2 0 04440210 04440059 -tinsmith n 1 1 @ 1 0 10712374 -tinsnips n 1 2 @ ; 1 0 04250473 -tint n 1 3 @ ~ + 1 1 04959230 -tintack n 1 1 @ 1 0 04440399 -tinter n 1 2 @ + 1 0 10712474 -tinting n 1 2 @ + 1 0 00275151 -tintinnabulation n 1 3 @ ~ + 1 0 07391863 -tintometer n 1 1 @ 1 0 03071552 -tintoretto n 1 1 @ 1 0 11343208 -tinware n 1 2 @ %s 1 0 04440486 -tip n 5 4 @ ~ #p + 5 3 08663156 13298701 06651577 13902482 08617963 -tip-off n 2 3 @ #p + 2 0 05827129 00481666 -tip-top_table n 1 1 @ 1 0 04436012 -tip_in n 1 1 @ 1 0 00112185 -tip_sheet n 1 2 @ ~ 1 0 06595797 -tip_table n 1 1 @ 1 0 04436012 -tip_truck n 1 1 @ 1 0 03256166 -tipi n 1 1 @ 1 0 04412416 -tipper n 2 2 @ + 2 0 10712573 03256166 -tipper_lorry n 1 1 @ 1 0 03256166 -tipper_truck n 1 1 @ 1 0 03256166 -tippet n 1 1 @ 1 0 04440597 -tipple n 1 3 @ ~ + 1 0 07883980 -tippler n 1 2 @ + 1 0 10712690 -tipsiness n 1 3 @ ~ + 1 0 14018567 -tipstaff n 1 1 @ 1 0 07267795 -tipster n 1 3 @ ~ + 1 0 10712835 -tipsy_cake n 1 2 @ ; 1 0 07613671 -tiptoe n 1 3 @ #p + 1 0 05577304 -tiptop n 2 1 @ 2 0 13940456 08664365 -tipu n 1 2 @ #m 1 0 12573911 -tipu_tree n 1 2 @ #m 1 0 12573911 -tipuana n 1 3 @ #m %m 1 0 12573760 -tipulidae n 1 3 @ #m %m 1 0 02205095 -tirade n 1 1 @ 1 0 07233415 -tiramisu n 1 1 @ 1 0 07613266 -tirana n 1 2 @ #p 1 0 08705091 -tire n 1 2 @ ~ 1 1 04440749 -tire_chain n 1 1 @ 1 0 04440963 -tire_iron n 1 1 @ 1 0 04441093 -tire_tool n 1 1 @ 1 1 04441093 -tiredness n 1 3 @ ~ + 1 0 14016361 -tirelessness n 1 2 @ + 1 0 04864824 -tiresias n 1 2 @ ; 1 0 09598066 -tiresomeness n 1 3 @ ~ + 1 0 05206237 -tirich_mir n 1 2 @ #p 1 0 09459114 -tiro n 1 2 @ ~ 1 0 10363913 -tirol n 1 2 @ #p 1 0 08846135 -tirolean n 1 1 @ 1 0 04505888 -tirso_de_molina n 1 1 @ 1 0 11343333 -tisane n 1 2 @ ~ 1 0 07934032 -tisha_b'ab n 1 2 @ ; 1 0 15197658 -tisha_b'av n 1 2 @ ; 1 0 15197658 -tishah_b'ab n 1 2 @ ; 1 0 15197658 -tishah_b'av n 1 2 @ ; 1 0 15197658 -tishri n 1 3 @ #p %p 1 0 15214419 -tisiphone n 1 1 @ 1 0 09506751 -tissue n 2 3 @ ~ #s 2 2 05267345 15074962 -tissue_layer n 1 3 @ ~ %s 1 0 05426243 -tissue_paper n 1 2 @ ~ 1 1 15074962 -tissue_plasminogen_activator n 1 1 @ 1 0 04441282 -tissue_typing n 1 1 @ 1 0 05746868 -tit n 3 5 @ ~ #m #p %p 3 1 05554405 05554653 01591697 -tit-tat-toe n 1 1 @ 1 0 00506207 -tit_for_tat n 1 1 @ 1 0 01237080 -titan n 3 4 @ ~ + ; 3 0 09938991 09572425 09459269 -titan_arum n 1 2 @ #m 1 0 11783488 -titaness n 1 3 @ ~ ; 1 0 09572825 -titania n 2 2 @ ; 2 0 14616740 09546453 -titanic_acid n 1 1 @ 1 0 14616620 -titanic_oxide n 1 1 @ 1 0 14616740 -titanium n 1 3 @ #s ; 1 0 14659211 -titanium_dioxide n 1 1 @ 1 0 14616740 -titanium_oxide n 1 1 @ 1 0 14616740 -titanosaur n 1 3 @ ~ #m 1 0 01710747 -titanosaurian n 1 3 @ ~ #m 1 0 01710747 -titanosauridae n 1 3 @ #m %m 1 0 01710348 -titanosaurus n 1 3 @ #m %m 1 0 01710529 -titbit n 1 1 @ 1 0 07594737 -titer n 1 1 @ 1 1 05038823 -titfer n 1 2 @ ; 1 0 04441528 -tithe n 2 1 @ 2 0 13315743 13270545 -tithe_barn n 1 1 @ 1 0 04441662 -tither n 1 2 @ + 1 0 10713012 -tithonia n 1 2 @ #m 1 0 12026018 -titi n 3 2 @ #m 3 0 12751172 12242409 02493509 -titi_family n 1 3 @ #m %m 1 0 12750306 -titi_monkey n 1 2 @ #m 1 0 02493509 -titian n 1 1 @ 1 0 11343507 -titillation n 3 2 @ + 3 0 07528976 01262345 00144445 -titivation n 1 2 @ + 1 0 00263492 -titlark n 1 3 @ ~ #m 1 0 01528654 -title n 10 4 @ ~ + ; 10 7 06345993 06343520 06346461 13948912 06545137 06339416 05181199 06346220 06343117 05175904 -title-holder n 1 2 @ ~ 1 1 09906704 -title_bar n 1 2 @ ; 1 0 07273616 -title_deed n 1 3 @ ~ ; 1 0 06546261 -title_of_respect n 1 2 @ ~ 1 0 06339416 -title_page n 1 1 @ 1 1 06257653 -title_role n 1 1 @ 1 0 05929887 -titmouse n 1 3 @ ~ #m 1 0 01591697 -tito n 1 1 @ 1 0 11343625 -titration n 1 2 @ + 1 1 00648237 -titrator n 1 2 @ + 1 0 04441790 -titre n 1 2 @ + 1 0 05038823 -titter n 1 2 @ + 1 0 07128225 -titterer n 1 2 @ + 1 0 10713124 -tittivation n 1 2 @ + 1 0 00263492 -tittle n 1 1 @ 1 0 13773725 -tittle-tattle n 1 2 @ + 1 0 07135080 -titty n 1 3 @ #p %p 1 0 05554405 -titus n 3 2 @ #p 3 0 11343998 11343847 06445989 -titus_flavius_domitianus n 1 1 @ 1 0 10938821 -titus_flavius_sabinus_vespasianus n 1 1 @ 1 0 11364799 -titus_flavius_vespasianus n 1 1 @ 1 0 11343847 -titus_livius n 1 1 @ 1 0 11135991 -titus_lucretius_carus n 1 1 @ 1 0 11144068 -titus_maccius_plautus n 1 1 @ 1 0 11239443 -titus_oates n 1 1 @ 1 0 11211071 -titus_vespasianus_augustus n 1 1 @ 1 0 11343847 -tiu n 1 1 @ 1 0 09586231 -tivoli n 1 2 @ #p 1 0 08808077 -tiyin n 2 1 @ 2 0 13703592 13701094 -tiziano_vecellio n 1 1 @ 1 0 11343507 -tizzy n 1 1 @ 1 0 14403772 -tjalling_charles_koopmans n 1 1 @ 1 0 11109027 -tjalling_koopmans n 1 1 @ 1 0 11109027 -tko n 1 1 @ 1 0 00134246 -tl n 1 2 @ #s 1 0 14657818 -tlc n 1 1 @ 1 0 00665221 -tlingit n 2 1 @ 2 0 09670637 06913025 -tm n 1 2 @ #s 1 0 14658546 -tmv n 1 1 @ 1 0 01334518 -tn n 1 5 @ #m #p %p - 1 0 09140148 -tnf n 1 1 @ 1 0 14737365 -tnt n 1 1 @ 1 0 04442143 -to-do n 1 2 @ ~ 1 0 13977366 -to_leeward n 1 1 @ 1 0 13829980 -to_windward n 1 1 @ 1 0 13829720 -toad n 1 2 @ ~ 1 1 01639765 -toad-in-the-hole n 1 1 @ 1 0 07627478 -toad_frog n 1 2 @ ~ 1 0 01639765 -toad_lily n 1 1 @ 1 0 11861641 -toad_rush n 1 1 @ 1 0 11744108 -toadfish n 1 3 @ ~ #m 1 0 02548689 -toadflax n 1 3 @ ~ #m 1 0 12884260 -toadshade n 1 1 @ 1 0 12469157 -toadstool n 1 2 ! @ 1 0 13001206 -toady n 1 3 @ ~ + 1 0 10684827 -toast n 4 3 @ ~ + 4 1 07686873 10713367 10137936 07884413 -toast_mistress n 1 1 @ 1 0 10713843 -toaster n 2 2 @ + 2 0 10713502 04442312 -toaster_oven n 1 1 @ 1 0 04442441 -toasting n 1 2 @ + 1 0 00246552 -toasting_fork n 1 1 @ 1 0 04442582 -toastmaster n 1 2 @ ~ 1 0 10713686 -toastrack n 1 1 @ 1 0 04442741 -tobacco n 2 5 @ ~ #m %s + 2 1 04442831 12907465 -tobacco_budworm n 1 2 @ #m 1 0 02310334 -tobacco_hornworm n 1 2 @ #m 1 0 02299157 -tobacco_industry n 1 1 @ 1 0 08074879 -tobacco_juice n 1 1 @ 1 0 05416861 -tobacco_mildew n 1 2 @ #m 1 0 12981443 -tobacco_mosaic n 1 1 @ 1 0 14281086 -tobacco_mosaic_virus n 1 1 @ 1 1 01334518 -tobacco_moth n 1 2 @ #m 1 0 02290340 -tobacco_pipe n 1 3 @ ~ %p 1 0 03945167 -tobacco_plant n 1 3 @ ~ #m 1 0 12907465 -tobacco_pouch n 1 1 @ 1 0 04443164 -tobacco_shop n 1 1 @ 1 0 04443257 -tobacco_thrips n 1 2 @ #m 1 0 02272286 -tobacco_user n 1 2 @ ~ 1 0 10614976 -tobacco_wilt n 1 1 @ 1 0 14279235 -tobacconist n 2 2 @ + 2 0 10713923 04443257 -tobacconist_shop n 1 1 @ 1 0 04443257 -tobago n 1 4 @ #p %m + 1 0 08756052 -tobagonian n 1 2 @ #m 1 0 10714054 -tobey n 1 1 @ 1 0 11344092 -tobias_george_smollett n 1 1 @ 1 0 11306473 -tobias_smollett n 1 1 @ 1 0 11306473 -tobin n 1 1 @ 1 0 11344235 -tobin_bronze n 1 1 @ 1 0 14960261 -tobit n 1 2 @ #p 1 0 06459681 -toboggan n 1 2 @ + 1 0 04443433 -toboggan_cap n 1 1 @ 1 0 04228693 -tobogganing n 1 3 @ ~ + 1 0 00447221 -tobogganist n 1 2 @ + 1 0 10714195 -tobramycin n 1 1 @ 1 0 04443588 -toby n 1 1 @ 1 0 04443766 -toby_fillpot_jug n 1 1 @ 1 0 04443766 -toby_jug n 1 1 @ 1 0 04443766 -tocainide n 1 1 @ 1 0 04443918 -tocantins n 1 2 @ #p 1 0 09459393 -tocantins_river n 1 2 @ #p 1 0 09459393 -toccata n 1 1 @ 1 0 07044353 -tocharian n 1 2 @ ~ 1 0 06968707 -tocktact n 1 1 @ 1 0 07397955 -tocology n 1 3 @ ~ - 1 0 06053439 -tocopherol n 1 2 @ ~ 1 0 15092409 -tocqueville n 1 1 @ 1 0 11344337 -tocsin n 2 1 @ 2 0 07265886 04444121 -tod n 1 2 @ ; 1 0 13719410 -toda n 2 1 @ 2 0 09675673 06979743 -today n 2 1 @ 2 2 15262921 15156001 -todd n 2 1 @ 2 0 11344549 10714317 -toddler n 1 2 @ + 1 0 10714465 -toddy n 1 3 @ ~ %s 1 1 07918879 -toddy_palm n 2 3 @ #m %s 2 0 12587132 12585629 -todea n 1 3 @ #m %m 1 0 12954634 -todea_barbara n 1 2 @ #m 1 0 12954799 -todea_superba n 1 2 @ #m 1 0 12954353 -todidae n 1 3 @ #m %m 1 0 01831078 -todus n 1 3 @ #m %m 1 0 01831231 -tody n 1 2 @ #m 1 0 01831360 -toe n 4 6 @ ~ #p %p + ; 4 2 05577410 04444218 05577654 04444345 -toe-in n 1 1 @ 1 0 01001489 -toe_box n 1 2 @ #p 1 0 04444522 -toe_crack n 1 1 @ 1 0 14275560 -toe_dance n 1 1 @ 1 0 00528059 -toe_dancing n 1 1 @ 1 0 00528059 -toe_toe n 1 1 @ 1 0 12115383 -toea n 1 2 @ #p 1 0 13680712 -toecap n 1 3 @ ~ #p 1 0 04444749 -toehold n 3 1 @ 3 0 14579827 04444953 00815036 -toenail n 1 3 @ ~ #p 1 0 05584486 -toetoe n 2 1 @ 2 0 12115383 12109365 -toff n 1 1 @ 1 0 10714577 -toffee n 1 2 @ ~ 1 1 07599783 -toffee_apple n 1 1 @ 1 0 07600696 -toffy n 1 2 @ ~ 1 0 07599783 -tofieldia n 1 3 @ #m %m 1 0 12461809 -tofieldia_pusilla n 1 2 @ #m 1 0 12462221 -tofranil n 1 2 @ ; 1 0 03561889 -tofu n 1 2 @ %s 1 0 07709881 -toga n 1 2 @ ~ 1 0 04445040 -toga_virilis n 1 2 @ ; 1 0 04445154 -togaviridae n 1 3 @ #m %m 1 0 01332347 -togetherness n 1 2 @ + 1 0 07530322 -toggle n 3 3 @ ~ + 3 0 06587399 04445952 04445327 -toggle_bolt n 1 1 @ 1 0 04445610 -toggle_joint n 1 1 @ 1 0 04445782 -toggle_switch n 1 2 @ ~ 1 0 04445952 -togo n 1 4 @ #p %m %p 1 0 08759986 -togo_franc n 1 2 @ %p 1 0 13678931 -togolese n 1 2 @ #m 1 0 09734535 -togolese_republic n 1 4 @ #p %m %p 1 0 08759986 -togs n 1 2 @ ; 1 0 04446162 -toil n 1 3 @ ~ + 1 0 00620752 -toiler n 1 2 @ + 1 0 10700105 -toilet n 4 4 @ ~ #p %p 4 2 04446276 04446521 14475992 00828704 -toilet_articles n 1 2 @ ~ 1 0 04447443 -toilet_bag n 1 2 @ ; 1 0 04446844 -toilet_bowl n 1 2 @ #p 1 0 04447028 -toilet_facility n 1 2 @ ~ 1 0 04018667 -toilet_kit n 1 1 @ 1 0 04447156 -toilet_paper n 1 2 @ ~ 1 0 15075141 -toilet_powder n 1 2 @ ~ 1 0 04447276 -toilet_roll n 1 1 @ 1 0 15075298 -toilet_seat n 1 2 @ #p 1 0 04447861 -toilet_soap n 1 1 @ 1 0 04447965 -toilet_table n 1 1 @ 1 0 03238586 -toilet_tissue n 1 2 @ ~ 1 0 15075141 -toilet_training n 1 2 @ + 1 0 00896228 -toilet_water n 1 1 @ 1 0 04448070 -toiletry n 1 2 @ ~ 1 0 04447443 -toilette n 1 1 @ 1 0 00828704 -toilsomeness n 1 2 @ + 1 0 04709944 -toitoi n 1 1 @ 1 0 12109365 -tojo n 1 1 @ 1 0 11344733 -tojo_eiki n 1 1 @ 1 0 11344733 -tojo_hideki n 1 1 @ 1 0 11344733 -tokamak n 1 2 @ %p 1 0 04448185 -tokay n 2 4 @ ~ #s %s 2 0 07898895 07760501 -toke n 1 1 @ 1 0 00837965 -token n 4 2 @ ~ 4 1 06795746 06646531 04448361 03610270 -token_economy n 1 1 @ 1 0 00702992 -token_money n 1 1 @ 1 0 13385778 -token_payment n 1 1 @ 1 0 13300025 -tokio n 1 2 @ #p 1 0 08923348 -toklas n 1 1 @ 1 0 11345017 -tokyo n 1 2 @ #p 1 1 08923348 -tolazamide n 1 1 @ 1 0 04448511 -tolazoline n 1 1 @ 1 0 04448680 -tolbooth n 1 2 @ #p 1 0 04449290 -tolbukhin n 1 1 @ 1 0 08714624 -tolbutamide n 1 1 @ 1 0 04448826 -tole n 1 1 @ 1 0 04449046 -tolectin n 1 3 @ %s ; 1 0 04449796 -toledo n 2 2 @ #p 2 0 09131428 09027292 -tolerance n 5 5 ! @ ~ = + 5 3 05033410 04637923 01071090 06204406 04749991 -toleration n 2 4 @ ~ + ; 2 0 04638175 01142324 -tolinase n 1 2 @ ; 1 0 04448511 -tolkien n 1 1 @ 1 0 11345181 -toll n 3 3 @ ~ + 3 2 13323749 05163807 07377244 -toll_agent n 1 1 @ 1 0 10714684 -toll_bridge n 1 1 @ 1 0 04449449 -toll_call n 1 1 @ 1 1 06274292 -toll_collector n 1 1 @ 1 0 10714684 -toll_house_cookie n 1 1 @ 1 0 07638317 -toll_line n 1 1 @ 1 0 04449700 -toll_plaza n 1 2 @ %p 1 0 08619949 -toll_road n 1 1 @ 1 0 04501018 -toll_taker n 1 1 @ 1 0 10714684 -tollbar n 1 1 @ 1 0 04449550 -tollbooth n 1 2 @ #p 1 0 04449290 -toller n 2 2 @ + 2 0 10714851 10714684 -tollgate n 1 1 @ 1 1 04449550 -tollgatherer n 1 1 @ 1 0 10714684 -tollhouse n 1 2 @ #p 1 1 04449290 -tollkeeper n 1 1 @ 1 0 10714684 -tollman n 1 1 @ 1 0 10714684 -tollon n 1 2 @ #m 1 0 12633061 -tolmetin_sodium n 1 2 @ %s 1 0 04449796 -tolmiea n 1 3 @ #m %m 1 0 12804216 -tolmiea_menziesii n 1 2 @ #m 1 0 12804352 -tolstoy n 1 1 @ 1 0 11345378 -toltec n 1 1 @ 1 0 09649249 -tolu n 1 3 @ ~ #s 1 0 12551669 -tolu_balsam n 1 3 @ ~ #s 1 0 12551669 -tolu_balsam_tree n 1 3 @ #m %s 1 0 12551173 -tolu_tree n 1 3 @ #m %s 1 0 12551173 -toluene n 1 1 @ 1 0 15075378 -toluic_acid n 1 1 @ 1 0 15075596 -tolypeutes n 1 3 @ #m %m 1 0 02454999 -tolypeutes_tricinctus n 1 2 @ #m 1 0 02455135 -tom n 3 3 @ ~ ; 3 0 09638245 02122725 01794344 -tom-tom n 1 1 @ 1 0 04410086 -tom_and_jerry n 1 2 @ %s 1 0 07919055 -tom_bradley n 1 1 @ 1 0 10860999 -tom_collins n 1 1 @ 1 0 07913882 -tom_hanks n 1 1 @ 1 0 11028074 -tom_paine n 1 1 @ 1 0 11220836 -tom_sawyer n 1 1 @ 1 0 09603919 -tom_stoppard n 1 1 @ 1 0 11320245 -tom_thumb n 2 1 @ 2 0 10715211 10715136 -tom_turkey n 1 1 @ 1 0 01794344 -tom_wolfe n 1 1 @ 1 0 11394657 -tomahawk n 1 2 @ + 1 0 04449966 -tomalley n 1 2 @ #p 1 0 07793946 -tomas_de_torquemada n 1 1 @ 1 0 11345878 -tomasso_parentucelli n 1 1 @ 1 0 11202322 -tomatillo n 3 3 @ #p %p 3 0 12911673 12911440 07734555 -tomato n 2 4 @ ~ #p %p 2 1 07734017 12905817 -tomato_blight n 1 1 @ 1 0 14219187 -tomato_concentrate n 1 1 @ 1 0 07567611 -tomato_fruitworm n 1 2 @ #m 1 0 02310334 -tomato_hornworm n 1 1 @ 1 0 02299505 -tomato_juice n 1 1 @ 1 0 07925500 -tomato_ketchup n 1 1 @ 1 0 07822197 -tomato_paste n 1 1 @ 1 1 07826250 -tomato_plant n 1 3 @ ~ %p 1 0 12905817 -tomato_sauce n 1 1 @ 1 0 07831267 -tomato_streak n 1 1 @ 1 0 14281216 -tomato_worm n 1 2 @ #m 1 0 02299157 -tomato_yellows n 1 1 @ 1 0 14219187 -tomb n 1 3 @ ~ %p 1 1 03455033 -tombac n 1 1 @ 1 0 15075691 -tombak n 1 1 @ 1 0 15075691 -tombaugh n 1 1 @ 1 0 11345539 -tombigbee n 1 2 @ #p 1 0 09459557 -tombigbee_river n 1 2 @ #p 1 0 09459557 -tombola n 1 2 @ ; 1 0 00504844 -tomboy n 1 1 @ 1 0 10715030 -tomboyishness n 1 2 @ + 1 0 04667258 -tombstone n 1 2 @ #p 1 0 03455488 -tomcat n 1 2 @ ~ 1 0 02122725 -tome n 1 1 @ 1 0 06413579 -tomentum n 2 2 @ ~ 2 0 13090091 05248006 -tomentum_cerebri n 1 1 @ 1 0 05248006 -tomfool n 1 2 @ ~ 1 0 10100761 -tomfoolery n 1 2 @ ~ 1 0 00512843 -tomistoma n 1 3 @ #m %m 1 0 01697837 -tomistoma_schlegeli n 1 2 @ #m 1 0 01697978 -tommy_gun n 1 1 @ 1 0 04450133 -tommyrot n 1 2 @ ; 1 0 06611147 -tomograph n 1 2 @ ~ 1 0 04450243 -tomography n 1 3 @ ~ ; 1 0 00901083 -tomorrow n 2 1 @ 2 2 15155891 15263795 -tompion n 1 1 @ 1 0 04388040 -tomtate n 1 2 @ #m 1 0 02589062 -tomtit n 1 2 @ #m 1 0 01592694 -ton n 2 3 @ #p %p 2 1 13721529 13721387 -tonal_language n 1 3 @ ~ %p 1 0 06904943 -tonal_pattern n 1 1 @ 1 0 05711915 -tonal_system n 1 2 @ #p 1 0 07113732 -tonality n 1 4 ! @ ~ + 1 0 06863751 -tone n 10 5 @ ~ #m + ; 10 7 07082573 04986883 04987620 14526182 04959230 06865345 05719605 14544672 06859056 05211451 -tone-beginning n 1 1 @ 1 0 00236953 -tone_arm n 1 2 @ #p 1 0 04450465 -tone_deafness n 1 1 @ 1 0 14551704 -tone_ending n 1 3 @ ~ ; 1 0 00210940 -tone_language n 1 3 @ ~ %p 1 1 06904943 -tone_of_voice n 1 2 @ ~ 1 0 07082573 -tone_poem n 1 1 @ 1 0 07047373 -tone_system n 1 2 @ #p 1 1 07113732 -tonegawa_susumu n 1 1 @ 1 0 11345705 -toner n 3 2 @ + 3 0 15076011 15075867 04450640 -tong_ho n 1 3 @ #m %p 1 0 11951052 -tonga n 2 4 @ #p %m + 2 0 09037133 06996029 -tongan n 2 2 @ #m 2 0 09750410 06938190 -tongan_monetary_unit n 1 2 @ ~ 1 0 13689984 -tongs n 1 3 @ ~ ; 1 0 04450749 -tongue n 8 6 @ ~ #p %s %p + 8 4 05301072 06904171 13918387 07082198 09442595 07652995 04450994 03037228 -tongue-fish n 1 2 @ #m 1 0 02663485 -tongue-flower n 1 2 @ #m 1 0 12063211 -tongue-lashing n 1 2 @ ~ 1 0 06712833 -tongue_and_groove_joint n 1 1 @ 1 0 04451139 -tongue_depressor n 1 1 @ 1 1 04451318 -tongue_fern n 1 2 @ #m 1 0 13178284 -tongue_tie n 1 1 @ 1 0 14472111 -tongue_twister n 1 1 @ 1 1 07133313 -tongue_worm n 1 2 @ #m 1 0 01788864 -tonguefish n 1 2 @ #m 1 0 02663485 -tongueflower n 1 2 @ #m 1 0 12063211 -tongueless_frog n 1 3 @ ~ #m 1 0 01653773 -tonguing_and_grooving_plane n 1 1 @ 1 0 03729647 -toni_morrison n 1 1 @ 1 0 11192349 -tonic n 4 5 @ ~ #s %s ; 4 0 07929172 07927512 06857726 04451473 -tonic_accent n 1 1 @ 1 0 07085961 -tonic_epilepsy n 1 1 @ 1 0 14090727 -tonic_key n 1 1 @ 1 0 06864407 -tonic_solfa n 1 2 @ %p 1 0 06867880 -tonic_water n 1 3 @ #s %s 1 0 07929172 -tonicity n 1 5 ! @ ~ + ; 1 0 14544672 -tonight n 1 1 @ 1 1 15263045 -tonka_bean n 2 2 @ #m 2 0 11750173 11749920 -tonka_bean_tree n 1 2 @ #m 1 0 11749920 -tonnage n 1 1 @ 1 0 13317269 -tonnage_duty n 1 1 @ 1 0 13317269 -tonne n 1 2 @ %p 1 0 13725588 -tonocard n 1 2 @ ; 1 0 04443918 -tonometer n 1 1 @ 1 0 04451636 -tonometry n 1 1 @ 1 0 01116696 -tons n 1 1 @ 1 1 13777509 -tonsil n 1 2 @ #p 1 0 05309050 -tonsilla n 1 2 @ #p 1 0 05309050 -tonsilla_adenoidea n 1 2 @ #p 1 0 05529286 -tonsilla_pharyngealis n 1 2 @ #p 1 0 05529286 -tonsillectomy n 1 1 @ 1 0 00688317 -tonsillitis n 1 1 @ 1 0 14357251 -tonsure n 2 2 @ + 2 0 05539717 00254922 -tontine n 2 1 @ 2 0 13347750 13295360 -tontine_insurance n 1 1 @ 1 0 13347750 -tonus n 1 3 @ ~ ; 1 0 14544672 -tony_blair n 1 1 @ 1 0 10852506 -tool n 4 4 @ ~ + ; 4 2 04451818 00173761 09976551 05526713 -tool-and-die_work n 1 1 @ 1 1 00618536 -tool_bag n 1 1 @ 1 0 04452528 -tool_cabinet n 1 1 @ 1 0 04452615 -tool_case n 1 1 @ 1 0 04452615 -tool_chest n 1 1 @ 1 0 04452615 -tool_kit n 1 1 @ 1 0 02966687 -tool_steel n 1 2 @ ~ 1 0 15076180 -toolbox n 1 1 @ 1 0 04452615 -toolhouse n 1 1 @ 1 0 04452757 -toolmaker n 1 1 @ 1 0 10715347 -toolshed n 1 1 @ 1 0 04452757 -toon n 1 1 @ 1 0 06616464 -toona n 1 3 @ #m %m 1 0 12700219 -toona_calantas n 1 2 @ #m 1 0 12700357 -tooshie n 1 2 @ #p 1 0 05559256 -toot n 2 2 @ + 2 0 07398276 00511041 -tooth n 5 6 @ ~ #m #p %p + 5 4 05282746 04452848 02155872 00179576 04453037 -tooth_decay n 1 1 @ 1 0 13444513 -tooth_doctor n 1 2 @ ~ 1 0 10004282 -tooth_enamel n 1 2 @ #p 1 0 05308655 -tooth_fairy n 1 1 @ 1 0 09546604 -tooth_fungus n 1 2 @ #m 1 0 12986227 -tooth_powder n 1 1 @ 1 0 04453557 -tooth_root n 1 3 @ #p %p 1 0 05308310 -tooth_shell n 1 1 @ 1 0 01941340 -tooth_socket n 1 2 @ #p 1 0 05285480 -toothache n 1 2 @ ~ 1 0 14323974 -toothache_tree n 1 2 @ #m 1 0 12714949 -toothbrush n 2 3 @ ~ ; 2 1 04453156 05262422 -toothbrush_tree n 1 2 @ #m 1 0 12299640 -toothed_spurge n 1 2 @ #m 1 0 12922119 -toothed_sword_fern n 1 1 @ 1 0 13205249 -toothed_whale n 1 3 @ ~ #m 1 0 02066707 -toothed_wheel n 1 1 @ 1 0 04113194 -toothpaste n 1 1 @ 1 1 04453298 -toothpick n 1 1 @ 1 0 04453390 -toothpowder n 1 1 @ 1 0 04453557 -toothsomeness n 1 2 @ + 1 0 04995793 -toothwort n 1 1 @ 1 0 11882426 -tootle n 1 2 @ + 1 0 07398362 -toowomba_canary_grass n 1 2 @ #m 1 0 12130160 -top n 11 5 ! @ ~ #p + 11 6 08663860 08663354 08617963 15256022 13940456 05037617 04454540 04454240 04453910 04453666 03035252 -top-up n 1 2 @ ; 1 0 13764213 -top_banana n 2 1 @ 2 0 10715447 10235142 -top_billing n 1 2 @ #p 1 0 07251003 -top_boot n 1 1 @ 1 0 02925666 -top_brass n 1 1 @ 1 0 08165353 -top_dog n 1 2 @ ~ 1 1 10162991 -top_dressing n 1 1 @ 1 0 07434678 -top_executive n 1 2 @ ~ 1 1 09840217 -top_fermentation n 1 1 @ 1 0 13567627 -top_fermenting_yeast n 1 1 @ 1 0 14784952 -top_hat n 1 1 @ 1 0 03237416 -top_lift n 1 1 @ 1 0 04455169 -top_of_the_inning n 1 2 @ #p 1 0 15256022 -top_of_the_line n 1 2 @ #p 1 0 04455442 -top_onion n 1 1 @ 1 0 12433540 -top_quark n 1 1 @ 1 0 09459812 -top_round n 1 1 @ 1 0 07662406 -top_side n 1 2 @ ~ 1 0 08663354 -topaz n 3 1 @ 3 0 15076523 15076349 04973020 -topcoat n 1 2 @ ~ 1 0 03456665 -tope n 1 1 @ 1 0 04346328 -topee n 1 1 @ 1 0 03950899 -topeka n 1 2 @ #p 1 0 09088815 -toper n 1 3 @ ~ + 1 0 10034201 -toper's_nose n 1 1 @ 1 0 14397040 -topgallant n 2 1 @ 2 0 04454792 04454654 -topgallant_mast n 1 1 @ 1 1 04454654 -topgallant_sail n 1 1 @ 1 0 04454792 -tophus n 2 1 @ 2 0 15085925 09454925 -topi n 2 2 @ #m 2 0 03950899 02422391 -topiary n 2 1 @ 2 0 04454908 00938134 -topic n 2 3 @ ~ + 2 2 06599788 05814291 -topic_sentence n 1 1 @ 1 0 06601217 -topical_anaesthesia n 1 1 @ 1 0 14028087 -topical_anaesthetic n 1 2 @ ~ 1 0 03681148 -topical_anesthesia n 1 1 @ 1 0 14028087 -topical_anesthetic n 1 2 @ ~ 1 0 03681148 -topical_prostaglandin_eyedrop n 1 1 @ 1 0 00657420 -topicality n 1 1 @ 1 0 05193160 -topicalization n 1 3 @ + ; 1 0 06484279 -topknot n 2 1 @ 2 0 04455048 01326198 -topmast n 1 2 @ ~ 1 0 04455250 -topminnow n 2 3 @ ~ #m 2 0 01448951 01448291 -topognosia n 1 1 @ 1 0 05724234 -topognosis n 1 1 @ 1 0 05724234 -topographic_anatomy n 1 1 @ 1 0 06060463 -topographic_point n 1 2 @ ~ 1 0 08664443 -topography n 2 3 @ ~ + 2 1 05064541 06122578 -topolatry n 1 1 @ 1 0 01045621 -topological_space n 1 3 @ ~ ; 1 0 08001685 -topology n 4 3 @ ~ ; 4 0 06122747 06060463 06017594 05730365 -toponomy n 2 1 @ 2 0 06788463 06179145 -toponym n 1 2 @ #p 1 0 06343838 -toponymy n 2 1 @ 2 0 06788463 06179145 -topos n 1 1 @ 1 0 05920482 -topper n 6 2 @ + 6 0 10715671 10715544 09851165 06781878 04455579 03237416 -topping n 1 3 @ ~ #p 1 0 07621776 -topsail n 1 2 @ ~ 1 0 04455652 -topside n 1 3 @ #p ; 1 0 04455835 -topsoil n 1 1 @ 1 1 14695737 -topspin n 1 1 @ 1 0 07442744 -topsy-turvydom n 1 2 @ ~ 1 0 13976322 -topsy-turvyness n 1 3 @ ~ + 1 0 13976322 -topv n 1 1 @ 1 0 04122011 -toque n 2 1 @ 2 0 04456011 03937835 -tor n 2 1 @ 2 0 09460046 09459979 -toradol n 1 3 @ %s ; 1 0 03612559 -torah n 3 4 @ #p %p ; 3 0 06452223 06451891 06408442 -torch n 4 4 @ ~ %p + 4 1 04456115 12889713 03359137 02855390 -torch_race n 1 2 @ ; 1 0 07464402 -torch_singer n 1 1 @ 1 0 10715881 -torch_song n 1 1 @ 1 0 07053884 -torchbearer n 1 1 @ 1 0 10715789 -torchlight n 1 1 @ 1 0 11515849 -torchwood_family n 1 3 @ #m %m 1 0 12690388 -tore n 1 1 @ 1 0 04458299 -toreador n 1 2 @ ~ 1 0 09836160 -toreador_pants n 1 1 @ 1 0 03903733 -torero n 1 1 @ 1 0 09836976 -torino n 1 2 @ #p 1 0 08810220 -torment n 6 2 @ + 6 3 14333433 07496755 07495551 07519040 07420354 00425278 -tormenter n 2 3 @ ~ + 2 0 10716005 04456276 -tormentor n 2 3 @ ~ + 2 1 10716005 04456276 -tornado n 2 2 @ ~ 2 1 11519450 03125184 -tornado_cellar n 1 1 @ 1 0 04329681 -tornado_lantern n 1 1 @ 1 0 03549897 -tornillo n 1 2 @ %p 1 0 11766189 -torodal n 1 3 @ %s ; 1 0 03612378 -toroid n 2 3 @ ~ + 2 0 13900287 13900088 -toronto n 1 4 @ #p %p ; 1 1 08828432 -torpedinidae n 1 3 @ #m %m 1 0 01496199 -torpediniformes n 1 3 @ #m %m 1 0 01496037 -torpedo n 7 4 @ ~ #m + 7 0 10152083 07697825 04457157 04456964 04456734 04456472 01496331 -torpedo-boat_destroyer n 1 1 @ 1 0 04457474 -torpedo_boat n 1 2 @ ~ 1 0 04457326 -torpedo_tube n 1 1 @ 1 0 04457638 -torpidity n 2 3 @ ~ + 2 0 14014621 04636881 -torpidness n 1 2 @ + 1 0 04636881 -torpor n 2 2 @ ~ 2 1 14014621 04636881 -torquato_tasso n 1 1 @ 1 0 11332250 -torque n 1 2 @ ~ 1 0 11519702 -torque_converter n 1 1 @ 1 0 04457767 -torque_wrench n 1 1 @ 1 0 04457910 -torquemada n 1 1 @ 1 0 11345878 -torr n 1 1 @ 1 0 13711416 -torrent n 3 2 @ + 3 2 11502102 07407593 13775706 -torreon n 1 2 @ #p 1 0 08746023 -torres_strait n 1 1 @ 1 0 09460139 -torrey's_pine n 1 1 @ 1 0 11618525 -torrey_pine n 1 1 @ 1 0 11618525 -torrey_tree n 1 2 @ #m 1 0 11649359 -torreya n 1 3 @ #m %m 1 0 11649012 -torreya_californica n 1 2 @ #m 1 0 11649150 -torreya_taxifolia n 1 2 @ #m 1 0 11649359 -torricelli n 1 1 @ 1 0 11346110 -torrid_zone n 1 1 @ 1 0 08665281 -torridity n 1 2 @ + 1 0 05016667 -torsion n 2 2 @ ~ 2 0 13885370 11519702 -torsion_balance n 1 1 @ 1 0 04458045 -torsk n 1 2 @ %p 1 0 02525382 -torso n 1 3 @ #p %p 1 1 05549830 -tort n 1 4 @ ~ ; - 1 0 00733883 -tort-feasor n 1 1 @ 1 0 10716286 -torte n 1 1 @ 1 0 07633511 -tortellini n 1 1 @ 1 0 07700167 -tortfeasor n 1 1 @ 1 0 10716286 -torticollis n 1 1 @ 1 0 14557719 -tortilla n 1 4 @ ~ #p ; 1 0 07880583 -tortilla_chip n 1 2 @ ~ 1 0 07712856 -tortoise n 1 3 @ ~ #m 1 0 01670092 -tortoise_plant n 1 3 @ #m %p 1 0 12088909 -tortoiseshell n 3 2 @ #m 3 0 14758420 02275773 02123242 -tortoiseshell-cat n 1 1 @ 1 0 02123242 -tortoiseshell_butterfly n 1 2 @ #m 1 0 02275773 -tortoiseshell_turtle n 1 2 @ #m 1 0 01664990 -tortricid n 1 3 @ ~ #m 1 0 02283951 -tortricid_moth n 1 3 @ ~ #m 1 0 02283951 -tortricidae n 1 3 @ #m %m 1 0 02283728 -tortrix n 2 2 @ #m 2 0 02284884 02284611 -tortuosity n 1 2 @ + 1 0 13885370 -tortuousness n 2 2 @ + 2 0 13885370 04766620 -torture n 5 3 @ ~ + 5 1 07496755 14333433 07495551 00751529 00421437 -torture_chamber n 1 1 @ 1 0 04458201 -torturer n 1 3 @ ~ + 1 0 10716389 -torturing n 1 3 @ ~ + 1 0 00421437 -torus n 2 2 @ ~ 2 0 13900088 04458299 -tory n 3 1 @ 3 1 10716576 10716864 10716698 -toscana n 1 4 @ #p %m %p 1 0 08811982 -toscanini n 1 1 @ 1 0 11346257 -tosh n 1 2 @ ; 1 0 06611147 -tosk n 1 1 @ 1 0 06942550 -tosk_dialect n 1 1 @ 1 0 06942550 -toss n 3 4 @ ~ + ; 3 2 01246086 00105820 00345817 -toss-up n 1 1 @ 1 0 11519799 -toss_bombing n 1 2 @ ~ 1 0 00979348 -tossed_salad n 1 2 @ ~ 1 0 07806633 -tosser n 2 2 @ + 2 0 10717196 10717055 -tossup n 1 1 @ 1 0 11519799 -tostada n 2 3 @ ~ ; 2 0 07881404 07881310 -tot n 2 1 @ 2 0 13773906 10714465 -total n 2 3 @ ~ + 2 2 04353803 05861067 -total_aphasia n 1 1 @ 1 0 14098347 -total_darkness n 1 1 @ 1 1 13983807 -total_depravity n 1 1 @ 1 0 06192027 -total_eclipse n 1 1 @ 1 0 07369206 -total_heat n 1 2 @ ; 1 0 05012272 -total_hysterectomy n 1 1 @ 1 0 00677613 -total_parenteral_nutrition n 1 1 @ 1 0 01059445 -totalisator n 1 1 @ 1 0 03890514 -totaliser n 2 2 @ #p 2 0 03890514 02679257 -totalism n 1 2 @ + 1 0 06213688 -totalitarian n 1 1 @ 1 0 10717337 -totalitarian_state n 1 1 @ 1 0 08226127 -totalitarianism n 2 2 @ ~ 2 0 08440630 06213688 -totalitation_regime n 1 1 @ 1 0 08226127 -totality n 3 3 @ ~ + 3 1 14461231 04765851 04353803 -totalizator n 1 1 @ 1 0 03890514 -totalizer n 2 2 @ #p 2 0 03890514 02679257 -totara n 1 2 @ #m 1 0 11653126 -tote n 1 2 @ + 1 0 02970408 -tote_bag n 1 1 @ 1 0 02970408 -totem n 2 4 @ %m + ; 2 0 08372574 04458409 -totem_pole n 1 1 @ 1 0 04458633 -totemism n 1 2 @ + 1 0 05954672 -totemist n 1 2 @ #m 1 0 10717461 -toter n 1 2 @ + 1 1 09897696 -totipotence n 1 2 @ + 1 0 05214976 -totipotency n 1 2 @ + 1 0 05214976 -totten_trust n 1 1 @ 1 0 13363365 -totterer n 1 2 @ + 1 0 10645854 -toucan n 1 3 @ ~ #m 1 0 01843383 -toucanet n 1 2 @ #m 1 0 01843719 -touch n 12 4 @ ~ #p + 12 7 07409592 05655119 07164163 04931428 00046522 13774115 07279285 14082186 07188238 05722427 05642553 04946760 -touch-me-not n 3 2 @ #m 3 0 12684379 12165758 11755319 -touch-typist n 1 2 @ + 1 0 10717772 -touch_football n 1 1 @ 1 0 00470682 -touch_modality n 1 2 @ #p 1 0 05655119 -touch_perception n 1 1 @ 1 0 05721990 -touch_screen n 1 1 @ 1 0 04458843 -touch_sensation n 1 2 @ ~ 1 0 05722427 -touch_system n 1 1 @ 1 0 06403107 -touch_typing n 1 1 @ 1 0 06403107 -touchback n 1 2 @ ; 1 0 00188449 -touchdown n 2 3 @ + ; 2 1 00188766 00305005 -toucher n 1 2 @ + 1 0 10717589 -touchiness n 1 2 @ + 1 0 07553016 -touching n 2 3 @ ~ + 2 0 07409592 00046522 -touchline n 1 1 @ 1 0 08654029 -touchscreen n 1 1 @ 1 0 04458843 -touchstone n 1 2 @ ~ 1 1 07260623 -touchwood n 1 1 @ 1 0 15101586 -tough n 3 2 @ ~ 3 0 10662649 10184081 09879297 -tough_guy n 1 2 @ ~ 1 0 10717921 -tough_luck n 1 2 @ ~ 1 0 14475405 -toughie n 2 2 @ ~ 2 0 10184081 06785367 -toughness n 4 3 @ ~ + 4 1 05032918 05031214 05021535 04710866 -toulon n 1 2 @ #p 1 0 08937995 -toulouse n 1 2 @ #p 1 0 08938163 -toulouse-lautrec n 1 1 @ 1 0 11346391 -toupe n 1 1 @ 1 0 04459018 -toupee n 1 1 @ 1 0 04459018 -tour n 3 3 @ ~ + 3 2 00310666 15292069 15293590 -tour_de_force n 1 1 @ 1 1 00047018 -tour_de_france n 1 1 @ 1 0 07459363 -tour_guide n 1 1 @ 1 0 10718040 -tour_of_duty n 1 1 @ 1 0 15293590 -touraco n 1 2 @ #m 1 0 01825278 -tourer n 2 3 @ ~ + 2 0 10718131 04459122 -tourette n 1 1 @ 1 0 11346568 -tourette's_syndrome n 1 1 @ 1 0 14311117 -touring_car n 1 1 @ 1 0 04459122 -tourism n 1 3 @ ~ + 1 0 00298161 -tourist n 1 3 @ ~ + 1 1 10718131 -tourist_attraction n 1 1 @ 1 0 05853820 -tourist_class n 1 1 @ 1 0 04459243 -tourist_court n 1 2 @ ~ 1 1 03790755 -touristry n 1 2 @ ~ 1 0 00298161 -tourmaline n 1 2 @ ~ 1 0 15076619 -tournament n 2 3 @ ~ %p 2 1 07464725 07472327 -tournedos n 1 1 @ 1 0 07660590 -tourney n 1 3 @ ~ + 1 0 07464725 -tourniquet n 1 1 @ 1 0 03082656 -tours n 1 2 @ #p 1 0 08938351 -tourtiere n 1 1 @ 1 0 07872381 -tout n 3 4 @ ~ + ; 3 0 10718509 10718349 10712835 -tout_ensemble n 2 2 @ ; 2 0 07955280 04676830 -touter n 1 2 @ + 1 0 10718349 -tovarich n 1 2 @ ; 1 0 10718665 -tovarisch n 1 2 @ ; 1 0 10718665 -tow n 1 2 @ + 1 1 00115292 -tow-headed_snake n 1 2 @ #m 1 0 01742447 -tow_car n 1 1 @ 1 0 04461696 -tow_truck n 1 1 @ 1 0 04461696 -towage n 1 2 @ + 1 0 00115292 -towboat n 1 2 @ %p 1 1 04495843 -towel n 1 3 @ ~ + 1 1 04459362 -towel_bar n 1 1 @ 1 0 04459909 -towel_horse n 1 1 @ 1 0 04459773 -towel_rack n 1 1 @ 1 1 04459773 -towel_rail n 1 1 @ 1 0 04459909 -towel_ring n 1 1 @ 1 0 04460038 -toweling n 1 2 @ ~ 1 1 04459610 -towelling n 1 2 @ ~ 1 0 04459610 -tower n 3 4 @ ~ %p + 3 2 04460130 13900422 04495843 -tower_block n 1 1 @ 1 0 03519387 -tower_cress n 2 2 @ #m 2 0 11872658 11872473 -tower_mustard n 2 2 @ #m 2 0 11872658 11872473 -tower_of_babel n 1 3 @ #p ; 1 0 04460634 -tower_of_london n 1 2 @ #p 1 0 04460947 -tower_of_pharos n 1 2 @ #m 1 0 04461148 -tower_of_strength n 1 1 @ 1 0 10718794 -towhead n 1 1 @ 1 0 10718952 -towhee n 1 2 @ ~ 1 0 01541922 -towing_line n 1 2 @ ; 1 0 04461294 -towing_path n 1 1 @ 1 0 04461570 -towing_rope n 1 2 @ ; 1 0 04461294 -towline n 1 2 @ ; 1 0 04461294 -town n 4 4 @ ~ %p + 4 3 08665504 08226514 08672199 11346710 -town_clerk n 1 1 @ 1 1 10719036 -town_crier n 1 1 @ 1 0 10719132 -town_gas n 1 2 @ ; 1 0 14685641 -town_hall n 1 1 @ 1 0 04461437 -town_house n 1 2 @ ~ 1 1 04115256 -town_meeting n 2 1 @ 2 2 08312241 08312462 -town_planning n 1 2 @ %m 1 0 00928542 -townee n 1 2 @ ; 1 0 10719395 -towner n 1 2 @ ~ 1 0 10719267 -townes n 1 1 @ 1 0 11346873 -townie n 1 1 @ 1 0 10719573 -townsend n 1 1 @ 1 0 11347080 -townsend_harris n 1 1 @ 1 0 11030855 -townsendia n 1 3 @ #m %m 1 0 12026306 -townsendia_exscapa n 1 2 @ #m 1 0 12026476 -townsfolk n 1 2 @ ~ 1 0 08226514 -township n 1 2 @ + 1 0 08672199 -townsman n 2 2 @ ~ 2 1 10719692 10719267 -townspeople n 1 2 @ ~ 1 0 08226514 -towny n 1 1 @ 1 0 10719573 -towpath n 1 1 @ 1 0 04461570 -towrope n 1 2 @ ; 1 0 04461294 -toxaemia n 2 2 @ ~ 2 0 14191037 14190907 -toxaemia_of_pregnancy n 1 2 @ ~ 1 0 14191037 -toxemia n 2 2 @ ~ 2 0 14191037 14190907 -toxemia_of_pregnancy n 1 2 @ ~ 1 0 14191037 -toxic_condition n 1 2 @ ~ 1 0 14509712 -toxic_dumpsite n 1 1 @ 1 0 08574038 -toxic_industrial_waste n 1 1 @ 1 0 14858637 -toxic_shock n 1 1 @ 1 0 14470144 -toxic_shock_syndrome n 1 1 @ 1 0 14470144 -toxic_site n 1 2 @ ~ 1 0 08661467 -toxic_waste n 1 1 @ 1 0 14858637 -toxic_waste_area n 1 2 @ ~ 1 0 08661467 -toxic_waste_dump n 1 1 @ 1 0 08574038 -toxic_waste_site n 1 1 @ 1 0 08574038 -toxicant n 1 2 @ ~ 1 0 15032376 -toxicity n 2 3 @ ~ + 2 0 13583478 04790942 -toxicodendron n 1 3 @ #m %m 1 0 12766241 -toxicodendron_diversilobum n 1 2 @ #m 1 0 12767208 -toxicodendron_quercifolium n 1 2 @ #m 1 0 12767423 -toxicodendron_radicans n 1 2 @ #m 1 0 12766869 -toxicodendron_vernicifluum n 1 2 @ #m 1 0 12767648 -toxicodendron_vernix n 1 2 @ #m 1 0 12766595 -toxicognath n 1 1 @ 1 0 01785092 -toxicologist n 1 3 @ ~ + 1 0 10719807 -toxicology n 1 3 @ + - 1 0 06064462 -toxin n 1 3 @ ~ + 1 1 15034074 -toxin_antitoxin n 1 1 @ 1 0 15028555 -toxoid n 1 1 @ 1 0 15034454 -toxoplasmosis n 1 1 @ 1 0 14186046 -toxostoma n 1 3 @ #m %m 1 0 01587713 -toxostoma_rufums n 1 1 @ 1 0 01588002 -toxotes n 1 3 @ #m %m 1 0 02620443 -toxotes_jaculatrix n 1 2 @ #m 1 0 02620578 -toxotidae n 1 3 @ #m %m 1 0 02620318 -toy n 5 3 @ ~ + 5 1 03964744 04462102 04461879 03769235 02085374 -toy_box n 1 1 @ 1 0 04462011 -toy_business n 1 1 @ 1 0 08075009 -toy_chest n 1 1 @ 1 0 04462011 -toy_dog n 1 2 @ ~ 1 0 02085374 -toy_industry n 1 1 @ 1 0 08075009 -toy_manchester n 1 1 @ 1 0 02094931 -toy_manchester_terrier n 1 1 @ 1 0 02094931 -toy_poodle n 1 1 @ 1 0 02113624 -toy_soldier n 1 1 @ 1 0 04462318 -toy_spaniel n 1 2 @ ~ 1 0 02086346 -toy_terrier n 1 1 @ 1 0 02087046 -toying n 1 2 @ + 1 0 00512522 -toynbee n 1 1 @ 1 0 11347317 -toyohashi n 1 2 @ #p 1 0 08926231 -toyon n 1 2 @ #m 1 0 12633061 -toyonaki n 1 2 @ #p 1 0 08926381 -toyota n 1 2 @ #p 1 0 08926543 -toyshop n 1 1 @ 1 0 04462240 -tpn n 1 1 @ 1 0 01059445 -tra-la n 1 1 @ 1 0 07050379 -tra-la-la n 1 1 @ 1 0 07050379 -trabecula n 1 2 @ + 1 0 05295160 -trablous n 1 2 @ #p 1 0 08957993 -trace n 6 4 @ ~ #p + 6 5 13773361 06646628 07164163 04463273 04462407 06647036 -trace_detector n 1 1 @ 1 0 04462576 -trace_element n 1 1 @ 1 0 15076931 -trace_program n 1 3 @ ~ %p 1 0 06580866 -tracer n 4 3 @ + ; 4 0 10719972 04463017 04462835 04462707 -tracer_bullet n 1 1 @ 1 0 04462707 -tracery n 1 2 @ ~ 1 0 04463141 -trachea n 2 4 @ #p %p + 2 1 05531814 05532050 -tracheal_vein n 1 1 @ 1 0 05384446 -tracheid n 1 2 @ #p 1 0 13098853 -tracheitis n 1 1 @ 1 0 14357370 -trachelospermum n 1 3 @ #m %m 1 0 11777365 -trachelospermum_jasminoides n 1 2 @ #m 1 0 11777552 -tracheobronchitis n 1 1 @ 1 0 14357454 -tracheophyta n 1 3 @ #m %m 1 0 11534434 -tracheophyte n 1 3 @ ~ %p 1 0 13083586 -tracheostomy n 1 2 @ %p 1 0 00693399 -tracheotomy n 1 2 @ %p 1 0 00693399 -trachinotus n 1 3 @ #m %m 1 0 02579420 -trachinotus_carolinus n 1 1 @ 1 0 02579762 -trachinotus_falcatus n 1 1 @ 1 0 02579928 -trachipteridae n 1 3 @ #m %m 1 0 02546177 -trachipterus n 1 3 @ #m %m 1 0 02546477 -trachipterus_arcticus n 1 2 @ #m 1 0 02546627 -trachodon n 1 2 @ #m 1 0 01707294 -trachodont n 1 2 @ #m 1 0 01707294 -trachoma n 1 1 @ 1 0 14257377 -trachurus n 1 2 @ #m 1 0 02580546 -trachurus_symmetricus n 1 1 @ 1 0 02580679 -trachurus_trachurus n 1 1 @ 1 0 02580830 -tracing n 3 2 @ + 3 1 00938419 04463273 00150932 -tracing_paper n 1 1 @ 1 0 15077109 -tracing_routine n 1 2 @ #p 1 0 06584536 -track n 11 6 @ ~ #p %p + ; 11 4 09387222 05826914 04463983 04037625 06612865 04464418 04464211 04464125 04463679 04463510 00440039 -track-to-track_seek_time n 1 2 @ ; 1 0 15269331 -track_and_field n 1 3 @ ~ #p 1 0 00439826 -track_event n 1 3 @ ~ #p 1 0 07468861 -track_meet n 1 2 @ %p 1 1 07468692 -track_record n 2 1 @ 2 0 00063310 00047745 -track_star n 1 1 @ 1 0 10720197 -trackball n 1 1 @ 1 0 04464615 -tracked_vehicle n 1 3 @ ~ %p 1 0 04464852 -tracker n 1 2 @ + 1 0 10720097 -tracking n 1 3 @ + ; 1 0 00320284 -tracklayer n 1 1 @ 1 0 10439087 -trackless_trolley n 1 2 @ %p 1 0 04487081 -tract n 4 2 @ ~ 4 3 08673395 05510907 06409290 05475878 -tract_house n 1 2 @ #p 1 0 04465050 -tract_housing n 1 2 @ %p 1 0 04465203 -tractability n 1 5 ! @ ~ = + 1 0 04905188 -tractableness n 1 4 @ ~ = + 1 0 04905188 -tractarian n 1 1 @ 1 1 10720267 -tractarianism n 1 1 @ 1 0 06229410 -traction n 2 2 @ ; 2 0 11460281 00116122 -traction_engine n 1 1 @ 1 0 04465358 -tractor n 2 2 @ ~ 2 1 04465501 04465666 -tractor_trailer n 1 3 @ ~ %p 1 0 04467665 -tracy n 1 1 @ 1 0 11347519 -trad n 1 2 @ ; 1 0 07065932 -trade n 7 4 @ ~ + - 7 5 01091905 00606370 01096454 01110274 08436562 11519949 01109687 -trade-in n 1 2 @ + 1 0 13248792 -trade-last n 1 1 @ 1 0 06695424 -trade-off n 1 1 @ 1 0 01166760 -trade_acceptance n 1 1 @ 1 0 13378174 -trade_balance n 1 1 @ 1 0 13409363 -trade_barrier n 1 2 @ ~ 1 0 06660224 -trade_bill n 1 2 @ ; 1 0 06537832 -trade_book n 1 2 @ ~ 1 0 06412350 -trade_cycle n 1 1 @ 1 0 07444100 -trade_deficit n 1 1 @ 1 0 13396768 -trade_discount n 1 1 @ 1 0 13274732 -trade_edition n 1 3 ! @ ~ 1 0 06412350 -trade_embargo n 1 1 @ 1 0 06660520 -trade_expense n 1 2 @ ~ 1 0 13276330 -trade_gap n 1 1 @ 1 0 13409363 -trade_good n 1 2 @ ~ 1 0 03076708 -trade_magazine n 1 1 @ 1 0 06596845 -trade_name n 1 3 @ ~ - 1 1 06845599 -trade_policy n 1 2 @ ~ 1 1 06663018 -trade_protection n 1 1 @ 1 0 01127874 -trade_rat n 1 3 @ ~ #m 1 0 02339922 -trade_route n 2 2 @ ~ 2 1 04163364 08680237 -trade_school n 1 1 @ 1 1 08285594 -trade_secret n 1 1 @ 1 0 06674385 -trade_stoppage n 1 1 @ 1 0 06660520 -trade_union n 1 4 @ ~ #p + 1 0 08233056 -trade_union_movement n 1 3 @ ~ %p 1 0 08472890 -trade_unionism n 1 1 @ 1 0 08473482 -trade_unionist n 1 2 @ + 1 0 10720964 -trade_wind n 1 1 @ 1 0 11519949 -tradecraft n 1 1 @ 1 0 05644016 -trademark n 2 3 @ ~ - 2 2 04732543 06851742 -tradeoff n 1 1 @ 1 0 01166760 -trader n 1 3 @ ~ + 1 1 10720453 -trades_union n 1 3 @ ~ #p 1 0 08233056 -tradescant n 1 1 @ 1 0 11347674 -tradescant's_aster n 1 1 @ 1 0 11937195 -tradescantia n 1 2 @ #m 1 0 12606797 -tradesman n 1 3 @ ~ #m 1 1 10592152 -tradespeople n 1 2 @ %m 1 0 07950685 -trading n 1 3 @ ~ + 1 1 00079398 -trading_card n 1 2 @ ~ 1 0 04465795 -trading_floor n 1 2 @ #p 1 0 03366301 -trading_operations n 1 2 @ ; 1 0 01107726 -trading_post n 1 1 @ 1 1 03119203 -trading_stamp n 1 1 @ 1 0 06796333 -tradition n 2 3 @ ~ + 2 2 05809745 05667404 -traditional_knowledge n 1 2 @ ~ 1 0 05985381 -traditionalism n 3 4 @ ~ + ; 3 2 04801877 01213702 05977800 -traditionalist n 1 3 @ ~ + 1 1 10721124 -traditionality n 1 3 @ ~ + 1 0 04801877 -traducement n 1 3 @ ~ + 1 0 06719579 -traducer n 1 2 @ + 1 0 09999135 -trafalgar n 1 3 @ #p ; 1 0 01297706 -trafalgar_square n 1 2 @ #p 1 0 08597023 -traffic n 4 3 @ ~ + 4 2 08425303 01113867 07279453 00040804 -traffic_circle n 1 2 @ #p 1 0 04465933 -traffic_control n 1 2 @ ~ 1 0 01070432 -traffic_cop n 1 2 @ ~ 1 0 10721321 -traffic_court n 1 2 @ ; 1 0 08336355 -traffic_island n 1 2 @ #p 1 0 04466169 -traffic_jam n 1 2 @ ~ 1 0 08183541 -traffic_lane n 1 3 @ ~ #p 1 0 04466386 -traffic_light n 1 2 @ ~ 1 1 06874185 -traffic_pattern n 1 2 @ %p 1 0 08492747 -traffic_signal n 1 2 @ ~ 1 0 06874185 -trafficator n 1 2 @ #p 1 0 07262704 -trafficker n 1 3 @ ~ + 1 0 10577284 -tragacanth n 1 1 @ 1 0 15077226 -tragedian n 2 1 @ 2 1 10721708 10721612 -tragedienne n 1 1 @ 1 0 10721819 -tragedy n 2 4 ! @ ~ + 2 2 07314838 07016948 -tragelaphus n 1 3 @ #m %m 1 0 02423787 -tragelaphus_angasi n 1 2 @ #m 1 0 02424909 -tragelaphus_buxtoni n 1 2 @ #m 1 0 02425086 -tragelaphus_eurycerus n 1 2 @ #m 1 0 02424085 -tragelaphus_imberbis n 1 1 @ 1 0 02424589 -tragelaphus_scriptus n 1 2 @ #m 1 0 02425228 -tragelaphus_strepsiceros n 1 1 @ 1 0 02424486 -tragic_flaw n 1 1 @ 1 0 14463331 -tragicomedy n 2 2 @ + 2 0 07017161 07016797 -tragopan n 1 2 @ #m 1 0 01807105 -tragopogon n 1 3 @ #m %m 1 0 12026764 -tragopogon_dubius n 1 1 @ 1 0 12026981 -tragopogon_porrifolius n 1 3 @ #m %p 1 0 12027222 -tragopogon_pratensis n 1 2 @ #m 1 0 12027658 -tragulidae n 1 3 @ #m %m 1 0 02435689 -tragulus n 1 3 @ #m %m 1 0 02436067 -tragulus_javanicus n 1 2 @ #m 1 0 02436353 -tragulus_kanchil n 1 2 @ #m 1 0 02436224 -tragus n 1 2 @ #p 1 0 05324134 -trail n 3 2 @ ~ 3 3 09460312 04466613 05826914 -trail_bike n 1 1 @ 1 0 04466871 -trail_boss n 1 1 @ 1 0 10722029 -trail_head n 1 1 @ 1 0 08585447 -trail_riding n 1 1 @ 1 0 00300113 -trailblazer n 2 1 @ 2 0 10721919 10434725 -trailer n 4 4 @ ~ #p + 4 0 09993252 06888674 04467307 04467099 -trailer_camp n 1 1 @ 1 0 04467506 -trailer_park n 1 1 @ 1 0 04467506 -trailer_truck n 1 3 @ ~ %p 1 0 04467665 -trailhead n 1 1 @ 1 0 08585447 -trailing n 1 3 @ + ; 1 0 00320284 -trailing_arbutus n 1 1 @ 1 0 12235051 -trailing_edge n 1 2 @ #p 1 0 04467899 -trailing_four_o'clock n 1 2 @ #m 1 0 11838413 -trailing_windmills n 1 2 @ #m 1 0 11838413 -train n 6 6 @ ~ #p %m + - 6 2 04468005 08459648 08427629 07294777 04468476 03431745 -train_depot n 1 2 @ ~ 1 0 04049098 -train_dispatcher n 1 1 @ 1 0 10803031 -train_fare n 1 2 @ ~ 1 0 13308750 -train_of_thought n 1 1 @ 1 0 05773548 -train_oil n 1 1 @ 1 0 15097430 -train_set n 1 1 @ 1 0 04468707 -train_station n 1 2 @ ~ 1 0 04049098 -train_ticket n 1 1 @ 1 0 06519607 -trainband n 1 2 @ %m 1 0 08285719 -trainbandsman n 1 2 @ #m 1 0 10722137 -trainbearer n 1 2 @ #m 1 0 10722239 -trained_nurse n 1 1 @ 1 0 10140929 -trained_worker n 1 2 @ ~ 1 1 10605985 -trainee n 1 3 @ ~ + 1 0 10722385 -traineeship n 1 2 @ + 1 1 13267816 -trainer n 2 3 @ ~ + 2 0 10722575 03363363 -training n 2 3 @ ~ + 2 1 00893955 04921900 -training_college n 1 2 @ ; 1 0 08285896 -training_program n 1 2 @ ~ 1 1 05909921 -training_school n 2 2 @ ~ 2 1 08286039 04069777 -training_ship n 1 1 @ 1 1 04146862 -training_table n 1 2 @ #p 1 0 07565458 -trainload n 1 1 @ 1 0 13772876 -trainman n 1 2 @ ~ 1 1 10722758 -trainmaster n 1 1 @ 1 0 10803031 -trait n 1 3 @ ~ #p 1 1 04616059 -traitor n 2 3 @ ~ + 2 1 10722965 10027590 -traitorousness n 1 3 @ ~ + 1 0 04879658 -traitress n 1 1 @ 1 0 10723230 -trajan n 1 1 @ 1 0 11347834 -trajectory n 1 2 @ ~ 1 0 11481334 -tram n 3 5 @ ~ #p + ; 3 0 04469813 04468847 04335435 -tramcar n 2 4 @ ~ #p ; 2 0 04468847 04335435 -tramline n 1 2 @ %p 1 0 04469003 -trammel n 4 3 @ ~ + 4 0 04469345 04469251 04469147 04181228 -trammel_net n 1 1 @ 1 0 04469345 -tramontana n 1 1 @ 1 0 11520271 -tramontane n 1 1 @ 1 0 11520271 -tramp n 6 3 @ ~ + 6 1 10723300 10683675 10176111 07398560 04469684 00288970 -tramp's_spurge n 1 2 @ #m 1 0 12919195 -tramp_steamer n 1 1 @ 1 0 04469684 -tramper n 2 3 @ ~ + 2 0 10646942 10176111 -trample n 1 2 @ + 1 0 07398659 -trampler n 2 2 @ + 2 0 10723474 10646942 -trampling n 1 2 @ + 1 1 07398659 -trampoline n 1 1 @ 1 0 04469514 -tramway n 2 2 @ %p 2 0 04469813 04469003 -trance n 2 3 @ ~ + 2 2 14407536 05681334 -tranche n 1 1 @ 1 0 13285619 -trandate n 1 1 @ 1 0 03630544 -trandolapril n 1 1 @ 1 0 04470037 -tranquility n 3 3 @ ~ + 3 1 04904352 13969101 07515560 -tranquilizer n 1 3 @ ~ + 1 1 04470232 -tranquilliser n 1 3 @ ~ + 1 0 04470232 -tranquillity n 3 3 @ ~ + 3 0 13969101 07515560 04904352 -tranquillizer n 1 3 @ ~ + 1 0 04470232 -trans-alaska_pipeline n 1 2 @ #p 1 0 02694776 -trans_fatty_acid n 1 3 @ ~ #s 1 0 14741124 -transactinide n 1 2 @ + 1 0 14627373 -transaction n 1 3 @ ~ + 1 1 01106808 -transaction_file n 1 2 @ ; 1 0 06510271 -transactional_immunity n 1 1 @ 1 0 00214794 -transactions n 1 3 @ ~ #p 1 0 06508112 -transactor n 1 2 @ + 1 0 10723597 -transalpine n 1 2 @ + 1 0 10723731 -transaminase n 1 2 @ ~ 1 0 15077338 -transamination n 2 2 @ + 2 0 13568109 13567960 -transcaucasia n 1 3 @ #p %p 1 0 08519916 -transcendence n 2 2 @ + 2 0 13963565 13950440 -transcendency n 2 2 @ + 2 0 13963565 13950440 -transcendental_number n 1 2 @ ~ 1 0 13730756 -transcendental_philosophy n 1 1 @ 1 0 06192186 -transcendentalism n 1 2 @ + 1 0 06192186 -transcendentalist n 1 2 @ + 1 0 10723873 -transcortical_aphasia n 1 1 @ 1 0 14098864 -transcriber n 5 3 @ ~ + 5 0 10725280 10724272 10724132 10723984 09809925 -transcript n 2 2 @ ; 2 0 07277384 06505517 -transcriptase n 1 1 @ 1 0 14984687 -transcription n 5 5 @ ~ + ; - 5 1 06349597 13568238 04470605 00939628 00910203 -transdermal_patch n 1 2 @ ~ 1 0 04470741 -transducer n 1 3 @ ~ + 1 1 04470953 -transducing_vector n 1 2 @ ~ 1 0 09460516 -transduction n 2 4 @ ~ + ; 2 0 13568796 13568524 -transept n 1 2 @ #p 1 0 04471148 -transexual n 2 1 @ 2 0 10725893 10725734 -transfer n 6 4 @ ~ %p + 6 3 00315986 10724372 00201671 06519480 05756203 01107932 -transfer_agent n 1 1 @ 1 0 08419774 -transfer_of_training n 1 2 @ ~ 1 0 05756203 -transfer_paper n 1 2 @ ~ 1 0 15077752 -transfer_payment n 1 1 @ 1 0 13278100 -transfer_rna n 1 1 @ 1 0 14833143 -transfer_tax n 1 2 @ ~ 1 0 13315616 -transferability n 1 2 @ + 1 0 04736516 -transferase n 1 2 @ ~ 1 0 15077571 -transferee n 2 2 @ ; 2 0 10724570 10724372 -transference n 3 4 @ ~ + ; 3 0 06247181 01107932 00201671 -transferer n 1 3 @ ~ + 1 0 10724699 -transferor n 1 3 @ + ; 1 0 10724999 -transferral n 1 4 @ ~ %p + 1 0 00315986 -transferred_possession n 1 2 @ ~ 1 0 13252973 -transferred_property n 1 2 @ ~ 1 0 13252973 -transferrer n 1 3 @ ~ + 1 0 10724699 -transferrin n 1 1 @ 1 0 15077917 -transfiguration n 4 3 @ + ; 4 0 15299367 07358377 00402308 00399717 -transfiguration_day n 1 2 @ ; 1 0 15299367 -transfiguration_of_jesus n 1 2 @ ; 1 0 07358377 -transformation n 5 4 @ ~ + ; 5 1 07359599 13785136 07260332 00399030 00398704 -transformer n 1 4 @ ~ %p + 1 1 04471315 -transforming_gene n 1 1 @ 1 0 05440410 -transfusion n 2 3 @ ~ + 2 1 00324056 00323923 -transfusion_reaction n 1 1 @ 1 0 01267344 -transgene n 1 1 @ 1 0 05441686 -transgression n 3 3 @ ~ + 3 1 00745005 11520435 00744862 -transgressor n 1 2 @ + 1 0 10285762 -transience n 2 3 @ ~ + 2 1 05055278 05053042 -transiency n 1 3 @ ~ + 1 0 05055278 -transient n 2 3 @ + ; 2 0 10725149 07347468 -transient_global_amnesia n 1 1 @ 1 0 05674319 -transient_ischemic_attack n 1 1 @ 1 0 14166589 -transistor n 1 5 @ ~ %p + ; 1 1 04471632 -transit n 3 5 @ ~ #p %p + 3 1 04419073 04473432 00309115 -transit_declinometer n 1 1 @ 1 0 03168933 -transit_instrument n 1 1 @ 1 0 04471912 -transit_line n 1 3 @ ~ #p 1 1 04472098 -transit_zone n 1 1 @ 1 0 08691445 -transition n 5 3 @ ~ + 5 3 00201058 07415730 07358576 07087641 06401328 -transitive n 1 2 @ ~ 1 0 06331281 -transitive_verb n 1 2 @ ~ 1 0 06331281 -transitive_verb_form n 1 2 @ ~ 1 0 06331281 -transitiveness n 1 2 @ + 1 0 13798118 -transitivity n 2 4 ! @ + ; 2 0 13798491 13798118 -transitoriness n 1 3 @ ~ + 1 0 05055278 -translating_program n 1 1 @ 1 0 06581268 -translation n 7 4 @ ~ + ; 7 3 06536389 07446404 00398704 13785736 13568983 06429483 00330984 -translator n 3 3 @ ~ + 3 0 10725280 10212501 06581268 -transliteration n 1 2 @ + 1 0 06349828 -translocation n 2 3 @ + ; 2 0 13569664 13569464 -translucence n 1 2 @ + 1 1 04702351 -translucency n 1 2 @ + 1 0 04702351 -translucent_substance n 1 2 @ ~ 1 0 15078550 -transmigrante n 1 1 @ 1 0 10725438 -transmigration n 1 2 @ + 1 0 07321387 -transmission n 5 6 @ ~ #p %p + - 5 2 00121366 06251781 13589003 07360647 04472243 -transmission_channel n 1 1 @ 1 0 06259898 -transmission_control_protocol n 1 2 @ #p 1 0 06666210 -transmission_control_protocol/internet_protocol n 1 2 @ %p 1 0 06666486 -transmission_density n 1 2 @ ; 1 0 05089367 -transmission_line n 1 3 @ ~ #p 1 0 02934168 -transmission_mechanism n 1 2 @ ~ 1 0 09460680 -transmission_shaft n 1 2 @ #p 1 0 04472563 -transmission_system n 1 4 @ ~ #p %p 1 0 04472243 -transmission_time n 1 1 @ 1 0 15131269 -transmittal n 1 3 @ ~ + 1 0 00121366 -transmittance n 1 1 @ 1 0 13589003 -transmitter n 3 5 @ ~ %p + ; 3 0 10578762 09469285 04472726 -transmitting n 1 3 @ ~ + 1 1 00121366 -transmitting_aerial n 1 3 @ ~ #p 1 0 02715229 -transmogrification n 1 2 @ + 1 0 00399846 -transmutability n 1 2 @ + 1 0 04734145 -transmutation n 3 4 @ ~ + ; 3 2 01250826 07359599 07416441 -transom n 2 1 @ 2 0 04473108 04472961 -transom_window n 1 1 @ 1 0 04473108 -transorbital_lobotomy n 1 1 @ 1 0 00684450 -transparence n 2 3 @ ~ + 2 0 11520619 04702127 -transparency n 3 4 ! @ ~ + 3 0 11520619 04702127 03375956 -transparent_gem n 1 2 @ ~ 1 0 15078050 -transparent_quartz n 1 2 @ ~ 1 0 14694293 -transparent_substance n 1 2 @ ~ 1 0 15078550 -transparentness n 1 3 @ ~ + 1 0 04702127 -transpiration n 3 2 @ + 3 1 13569905 13570072 13569774 -transplant n 3 4 @ ~ + ; 3 0 05582859 00693679 00331102 -transplantation n 2 3 @ ~ + 2 0 00693679 00331102 -transplanter n 1 2 @ + 1 0 10725613 -transplanting n 1 2 @ + 1 0 00331102 -transponder n 1 1 @ 1 0 04473275 -transport n 6 6 @ ~ #p %p + - 6 3 03100490 13570236 01105259 13986372 04392764 00315986 -transport_ship n 1 2 @ ; 1 0 04474187 -transportation n 6 6 @ ~ #p %p + - 6 2 04473432 00315986 13308147 08143653 01105259 00207761 -transportation_company n 1 2 @ ~ 1 0 08004089 -transportation_secretary n 2 2 @ #m 2 0 10573349 00602669 -transportation_security_administration n 1 2 @ #p 1 0 08144308 -transportation_system n 1 4 @ ~ #p %p 1 0 04473432 -transporter n 3 5 @ ~ #p + ; 3 0 04474035 04473884 03100897 -transposability n 1 2 @ + 1 0 04737568 -transpose n 1 1 @ 1 0 08270290 -transposition n 7 3 @ + ; 7 0 14103998 07443761 07425903 00869260 00339907 00339776 00102162 -transposon n 1 1 @ 1 0 14831812 -transsexual n 2 2 @ + 2 0 10725893 10725734 -transsexual_surgery n 1 1 @ 1 0 00691648 -transsexualism n 1 1 @ 1 0 14572074 -transshipment n 1 2 @ + 1 0 00316460 -transshipment_center n 1 1 @ 1 0 08637771 -transubstantiation n 2 2 @ + 2 0 06192411 01250826 -transudate n 1 1 @ 1 0 14853112 -transudation n 2 2 @ + 2 0 14853112 07432337 -transuranic_element n 1 1 @ 1 0 14624191 -transurethral_resection_of_the_prostate n 1 1 @ 1 0 00694088 -transvaal n 1 3 @ #p %p 1 0 09001373 -transvaal_daisy n 1 2 @ #m 1 0 11971927 -transvaal_kafferboom n 1 1 @ 1 0 12528768 -transverse_colon n 1 2 @ #p 1 0 05536858 -transverse_flute n 1 2 @ ~ 1 0 03372029 -transverse_muscle_of_abdomen n 1 1 @ 1 0 05558078 -transverse_process n 1 2 @ #p 1 0 05587628 -transverse_sinus n 1 1 @ 1 0 05252834 -transversus_abdominis n 1 1 @ 1 1 05558078 -transversus_abdominis_muscle n 1 1 @ 1 0 05558078 -transvestism n 1 1 @ 1 0 01031858 -transvestite n 1 2 @ + 1 0 10726031 -transvestitism n 1 1 @ 1 1 01031858 -transylvania n 1 1 @ 1 0 08814781 -transylvanian_alps n 1 2 @ #p 1 0 09460888 -tranylcypromine n 1 1 @ 1 0 04474317 -trap n 8 6 @ ~ #p %p + ; 8 5 04474466 04475032 05837370 04474922 01246926 05302307 04474843 02920369 -trap-and-drain_auger n 1 1 @ 1 0 04475195 -trap-door_spider n 1 2 @ #m 1 0 01775730 -trap_block n 1 2 @ ; 1 0 00562823 -trap_door n 1 1 @ 1 0 04475309 -trap_line n 1 1 @ 1 0 08432264 -trap_play n 1 2 @ ; 1 0 00976270 -trapa n 1 3 @ #m %m 1 0 12348127 -trapa_bicornis n 1 1 @ 1 0 12348635 -trapa_natans n 1 1 @ 1 0 12348518 -trapaceae n 1 3 @ #m %m 1 0 12347892 -trapeze n 1 1 @ 1 0 04475411 -trapezium n 3 3 ! @ ; 3 0 13881381 09461069 05272891 -trapezium_bone n 1 1 @ 1 0 05272891 -trapezius n 1 1 @ 1 0 05591770 -trapezius_muscle n 1 1 @ 1 0 05591770 -trapezohedron n 1 1 @ 1 0 13918717 -trapezoid n 2 3 @ + ; 2 0 13881512 05273073 -trapezoid_bone n 1 1 @ 1 0 05273073 -trapper n 1 3 @ ~ + 1 1 10726233 -trapper's_tea n 1 2 @ #m 1 0 12238756 -trapping n 1 2 @ ~ 1 1 02955540 -trappings n 1 2 @ ; 1 0 03405595 -trappist n 1 1 @ 1 0 10726388 -trapshooter n 1 1 @ 1 0 10726524 -trapshooting n 1 1 @ 1 0 00124342 -trash n 4 4 @ ~ + ; 4 0 14857497 08402147 06611998 03754295 -trash_barrel n 1 1 @ 1 0 02747177 -trash_bin n 1 1 @ 1 0 02747177 -trash_can n 1 1 @ 1 0 02747177 -trash_collection n 1 1 @ 1 0 01015843 -trash_dump n 1 2 @ ~ 1 1 08560027 -trash_heap n 1 1 @ 1 0 08573842 -trash_pickup n 1 1 @ 1 0 01015843 -trash_pile n 1 1 @ 1 0 08573842 -trashiness n 1 2 @ + 1 0 05140593 -trasimeno n 1 2 @ ; 1 0 01297978 -traubel n 1 1 @ 1 0 11348047 -trauma n 2 3 @ ~ + 2 0 14285662 14285276 -traumatic_epilepsy n 1 1 @ 1 0 14089450 -traumatology n 1 1 @ 1 0 06064838 -traumatophobia n 1 1 @ 1 0 14385919 -trautvetteria n 1 3 @ #m %m 1 0 11738832 -trautvetteria_carolinensis n 1 2 @ #m 1 0 11738997 -travail n 2 5 @ ~ #p %p + 2 0 14048441 00621627 -trave n 1 1 @ 1 0 04475496 -travel n 3 3 @ ~ + 3 2 00295701 07311115 00283127 -travel_agency n 1 1 @ 1 0 08355692 -travel_agent n 1 1 @ 1 0 10726669 -travel_allowance n 1 2 @ ~ 1 0 13293901 -travel_and_entertainment_account n 1 1 @ 1 0 13411943 -travel_bargain n 1 1 @ 1 0 13254105 -travel_expense n 1 2 @ ; 1 0 13306669 -travel_guidebook n 1 2 @ ~ 1 0 06423378 -travel_iron n 1 1 @ 1 0 04475631 -travel_kit n 1 1 @ 1 0 04447156 -travel_plan n 1 1 @ 1 0 05905706 -travel_reimbursement n 1 2 @ ~ 1 0 13293901 -travel_time n 1 1 @ 1 0 15119374 -traveler n 1 3 @ ~ + 1 1 09629752 -traveler's_check n 1 1 @ 1 0 13380309 -traveler's_joy n 1 1 @ 1 0 11731411 -traveler's_letter_of_credit n 1 2 @ ~ 1 0 13380148 -traveler's_tree n 1 2 @ #m 1 0 12355023 -traveling n 1 3 @ ~ + 1 0 00295701 -traveling_bag n 1 2 @ ~ 1 0 02773838 -traveling_salesman n 1 2 @ ~ 1 0 10726786 -traveling_wave n 1 2 @ ~ 1 0 07347051 -traveller n 1 3 @ ~ + 1 1 09629752 -traveller's_check n 1 1 @ 1 0 13380309 -traveller's_joy n 1 1 @ 1 0 11731411 -traveller's_letter_of_credit n 1 2 @ ~ 1 0 13380148 -traveller's_tree n 1 2 @ #m 1 0 12355023 -travelling n 1 3 @ ~ + 1 0 00295701 -travelling_bag n 1 2 @ ~ 1 0 02773838 -travelling_salesman n 1 2 @ ~ 1 0 10726786 -travelling_wave n 1 2 @ ~ 1 0 07347051 -travelog n 1 1 @ 1 0 06615348 -travelogue n 1 1 @ 1 1 06615348 -traversal n 2 3 @ #p + 2 0 00298047 00296946 -traverse n 4 3 @ #p + 4 0 04475496 04472961 00298047 00296946 -traverse_city n 1 2 @ #p 1 0 09101882 -traverser n 1 2 @ + 1 0 10727016 -travesty n 2 2 @ + 2 0 07016250 06780309 -trawl n 2 2 @ + 2 0 04475900 04475749 -trawl_line n 1 1 @ 1 0 04475900 -trawl_net n 1 1 @ 1 0 04475749 -trawler n 2 1 @ 2 0 10727171 04476116 -tray n 1 2 @ ~ 1 1 04476259 -tray_cloth n 1 1 @ 1 0 04476526 -trazodone n 1 1 @ 1 0 04476633 -trazodone_hydrochloride n 1 1 @ 1 0 04476633 -treachery n 2 3 @ ~ + 2 1 04879964 00749767 -treacle n 2 3 @ + ; 2 0 07860208 06775969 -tread n 4 3 @ #p + 4 1 00285889 04477091 04476972 04476831 -tread-softly n 1 2 @ #m 1 0 12925179 -tread-wheel n 1 1 @ 1 0 04477219 -treading_water n 1 2 @ %p 1 0 00575214 -treadle n 1 4 @ ~ #p + 1 0 03903424 -treadmill n 3 1 @ 3 1 04477387 04477219 00606119 -treadmill_test n 1 1 @ 1 0 05747322 -treadwheel n 1 1 @ 1 0 04477219 -treason n 3 3 @ ~ + 3 1 00782072 04879658 00749767 -treasonist n 1 3 @ ~ + 1 0 10722965 -treasure n 4 3 @ ~ + 4 4 13370669 03432972 13370448 08463969 -treasure_chest n 1 1 @ 1 0 04477548 -treasure_flower n 1 1 @ 1 0 11971406 -treasure_house n 1 1 @ 1 0 04477638 -treasure_hunt n 1 1 @ 1 0 00460706 -treasure_ship n 1 1 @ 1 0 04477725 -treasure_state n 1 4 @ #p %p - 1 0 09108164 -treasure_trove n 2 1 @ 2 0 13371355 08464098 -treasurer n 1 3 @ ~ + 1 1 10727256 -treasurer's_check n 1 1 @ 1 0 13383439 -treasurer's_cheque n 1 1 @ 1 0 13383439 -treasurership n 1 2 @ + 1 0 00605246 -treasury n 6 4 @ ~ #m %p 6 2 13356985 08120235 13394326 10727458 08139795 04477825 -treasury_bill n 1 1 @ 1 0 13394592 -treasury_bond n 1 1 @ 1 0 13394792 -treasury_department n 1 2 @ %p 1 0 08139795 -treasury_note n 1 1 @ 1 0 13394907 -treasury_obligations n 1 2 @ ~ 1 0 13394326 -treasury_secretary n 2 2 @ #m 2 0 10573129 00602448 -treasury_shares n 1 1 @ 1 0 13419951 -treasury_stock n 1 1 @ 1 0 13419951 -treat n 2 3 @ ~ + 2 0 07557165 07289358 -treater n 1 3 @ ~ + 1 0 10351874 -treatise n 1 2 @ ~ 1 0 06408651 -treatment n 4 4 @ ~ %p + 4 4 00658082 01134861 04929976 07138085 -treaty n 1 2 @ ~ 1 1 06773434 -treaty_of_versailles n 1 1 @ 1 0 06775602 -treaty_port n 1 1 @ 1 0 08639951 -treble n 1 2 @ + 1 0 04985930 -treble_clef n 1 1 @ 1 0 06862805 -treble_damages n 1 1 @ 1 0 13292244 -treble_recorder n 1 2 @ ~ 1 0 03355468 -treble_staff n 1 1 @ 1 0 06862805 -trebuchet n 1 1 @ 1 0 02981911 -trebucket n 1 1 @ 1 0 02981911 -tree n 3 6 @ ~ #m %s %p + 3 1 13104059 13912260 11348160 -tree-frog n 2 3 @ ~ #m 2 0 01650167 01644373 -tree-worship n 1 1 @ 1 0 01045714 -tree_branch n 1 3 @ ~ #p 1 1 13163803 -tree_celandine n 1 2 @ #m 1 0 11903333 -tree_clubmoss n 1 1 @ 1 0 13223710 -tree_cotton n 2 1 @ 2 0 12176453 12176278 -tree_creeper n 2 3 @ ~ #m 2 0 01589286 01554448 -tree_cricket n 1 3 @ ~ #m 1 0 02230480 -tree_diagram n 1 2 @ ~ 1 0 13912260 -tree_farm n 1 2 @ ~ 1 0 09461170 -tree_farmer n 1 1 @ 1 0 10104756 -tree_farming n 1 1 @ 1 0 00917614 -tree_fern n 1 2 @ ~ 1 0 13186654 -tree_frog n 2 3 @ ~ #m 2 0 01650167 01644373 -tree_fuchsia n 1 1 @ 1 0 12343951 -tree_heath n 2 3 @ #m %p 2 0 12254891 12227658 -tree_house n 1 1 @ 1 0 04477966 -tree_hugger n 1 2 @ ; 1 0 10727623 -tree_kangaroo n 1 2 @ #m 1 0 01879509 -tree_line n 1 1 @ 1 0 08547655 -tree_lizard n 1 2 @ #m 1 0 01681653 -tree_lupine n 1 2 @ #m 1 0 12546617 -tree_mallow n 1 2 @ #m 1 0 12182615 -tree_martin n 1 2 @ #m 1 0 01595168 -tree_of_heaven n 1 2 @ #m 1 0 12717224 -tree_of_knowledge n 1 1 @ 1 0 13240362 -tree_of_the_gods n 1 2 @ #m 1 0 12717224 -tree_onion n 1 1 @ 1 0 12433540 -tree_poppy n 1 2 @ #m 1 0 11905035 -tree_shrew n 1 3 @ ~ #m 1 0 02495242 -tree_sloth n 1 3 @ ~ #m 1 0 02456962 -tree_sparrow n 2 2 @ #m 2 0 01540090 01536334 -tree_squirrel n 1 3 @ ~ #m 1 0 02355477 -tree_stump n 1 3 @ ~ #p 1 0 13111504 -tree_surgeon n 1 1 @ 1 0 10727818 -tree_surgery n 1 1 @ 1 0 00921530 -tree_swallow n 2 2 @ #m 2 0 01595450 01595168 -tree_swift n 1 2 @ #m 1 0 01833415 -tree_toad n 1 3 @ ~ #m 1 0 01650167 -tree_tobacco n 1 1 @ 1 0 12908230 -tree_tomato n 1 2 @ #m 1 0 12903014 -tree_trunk n 1 3 @ #p %p 1 1 13165815 -tree_wallaby n 1 2 @ #m 1 0 01879509 -treehopper n 1 2 @ #m 1 0 02259708 -treelet n 1 2 @ + 1 0 13107807 -treenail n 1 1 @ 1 0 04478066 -treetop n 1 3 @ ~ #p 1 1 13128003 -trefoil n 3 3 @ ~ #m 3 0 12548280 11752578 04478257 -trefoil_arch n 1 1 @ 1 0 04478383 -treillage n 1 2 @ ~ 1 0 04478512 -trek n 2 2 @ ; 2 0 00310516 00310347 -trekker n 1 2 @ + 1 0 10727944 -trellis n 1 3 @ ~ + 1 0 04478512 -trema n 1 2 @ #m 1 0 12410205 -trematoda n 1 3 @ #m %m 1 0 01925469 -trematode n 1 3 @ ~ #m 1 0 01925695 -trematode_worm n 1 3 @ ~ #m 1 0 01925695 -tremble n 1 2 @ + 1 0 00867983 -trembler n 1 2 @ + 1 0 10498046 -trembles n 1 1 @ 1 0 14276201 -trembling n 1 3 @ ~ + 1 1 14004572 -tremella n 1 3 @ #m %m 1 0 13060912 -tremella_foliacea n 1 2 @ #m 1 0 13061471 -tremella_fuciformis n 1 2 @ #m 1 0 13061172 -tremella_lutescens n 1 2 @ #m 1 0 13061348 -tremella_reticulata n 1 3 @ #m ; 1 0 13061704 -tremellaceae n 1 3 @ #m %m 1 0 13060689 -tremellales n 1 3 @ #m %m 1 0 13060451 -tremolite n 1 2 @ #m 1 0 14725941 -tremolo n 2 2 @ ; 2 0 14004958 07399336 -tremor n 3 4 @ ~ #p + 3 2 00348801 07429484 14005137 -trenail n 1 1 @ 1 0 04478066 -trench n 3 4 @ ~ #p + 3 1 04478657 09461315 04478889 -trench_coat n 1 1 @ 1 0 04479046 -trench_fever n 1 1 @ 1 0 14142207 -trench_foot n 1 1 @ 1 0 14299480 -trench_knife n 1 1 @ 1 0 04479287 -trench_mortar n 1 1 @ 1 0 03786715 -trench_mouth n 1 1 @ 1 0 14124931 -trench_warfare n 2 1 @ 2 0 01236633 00964952 -trenchancy n 1 2 @ + 1 0 05199680 -trencher n 2 2 @ + 2 0 10728117 04479155 -trencherman n 1 1 @ 1 0 10132988 -trenching_spade n 1 1 @ 1 0 03291413 -trend n 4 3 @ ~ + 4 3 08681777 08681222 06197664 05750163 -trend-setter n 1 1 @ 1 0 10728233 -trend_analysis n 1 1 @ 1 0 05784152 -trend_line n 1 1 @ 1 0 06801313 -trend_setting n 1 1 @ 1 0 01257033 -trent n 2 2 @ #p 2 0 09461515 08812552 -trent_river n 1 2 @ #p 1 0 09461515 -trental n 1 2 @ ; 1 0 03913437 -trente-et-quarante n 1 1 @ 1 0 00495103 -trentino-alto_adige n 1 3 @ #p %p 1 0 08812399 -trento n 1 2 @ #p 1 0 08812552 -trenton n 1 2 @ #p 1 0 09113022 -trepan n 2 2 @ + 2 0 04479526 04479405 -trepang n 1 2 @ #m 1 0 02322047 -trephination n 1 2 @ + 1 0 00694276 -trephine n 1 2 @ + 1 0 04479526 -trephritidae n 1 3 @ #m %m 1 0 02196542 -trepidation n 1 1 @ 1 1 07522043 -treponema n 1 2 @ #m 1 0 01382699 -treponemataceae n 1 3 @ #m %m 1 0 01382273 -trespass n 2 3 @ ~ + 2 0 00734482 00733483 -trespass_de_bonis_asportatis n 1 1 @ 1 0 00735017 -trespass_on_the_case n 1 1 @ 1 0 00735198 -trespass_quare_clausum_fregit n 1 1 @ 1 0 00735553 -trespass_viet_armis n 1 1 @ 1 0 00735686 -trespasser n 1 3 @ ~ + 1 0 10213652 -tress n 1 2 @ ~ 1 0 05259512 -trestle n 2 2 @ #p 2 1 04479823 04479694 -trestle_bridge n 1 1 @ 1 0 04479939 -trestle_table n 1 2 @ %p 1 0 04480033 -trestlework n 1 1 @ 1 0 04480141 -trevelyan n 2 1 @ 2 0 11348584 11348356 -trevino n 1 1 @ 1 0 11348812 -trevithick n 1 1 @ 1 0 11348946 -trews n 1 2 @ ; 1 0 04480303 -trey n 2 1 @ 2 0 13744044 04480415 -trf n 1 1 @ 1 0 15074203 -trh n 1 1 @ 1 0 15074203 -tri-chad n 1 1 @ 1 0 15079184 -tri-iodomethane n 1 1 @ 1 0 14620781 -tri-iodothyronine n 1 1 @ 1 1 14835230 -triacetate n 1 1 @ 1 0 14965321 -triad n 4 2 @ ~ 4 0 13744044 07986198 07986066 06870211 -triaenodon n 1 3 @ #m %m 1 0 01493012 -triaenodon_obseus n 1 2 @ #m 1 0 01493146 -triage n 1 1 @ 1 0 01017167 -triakidae n 1 3 @ #m %m 1 0 01491991 -trial n 6 5 @ ~ %p + ; 6 4 00791078 05799212 00794367 01195867 07477231 07372959 -trial_and_error n 1 1 @ 1 1 00641421 -trial_attorney n 1 2 @ ; 1 0 10728361 -trial_balance n 1 1 @ 1 0 13411005 -trial_balloon n 2 1 @ 2 1 05800527 04480527 -trial_by_ordeal n 1 1 @ 1 0 01196477 -trial_court n 1 2 @ ; 1 1 08336490 -trial_impression n 1 3 @ ~ ; 1 0 06590885 -trial_judge n 1 2 @ ; 1 1 10728523 -trial_lawyer n 1 2 @ ; 1 0 10728361 -trial_period n 1 2 @ ~ 1 0 15115926 -trial_run n 1 2 @ ~ 1 0 05799212 -trialeurodes n 1 3 @ #m %m 1 0 02247076 -trialeurodes_vaporariorum n 1 2 @ #m 1 0 02247216 -triamcinolone n 1 1 @ 1 1 15078768 -triangle n 5 3 @ ~ + 5 1 13879320 13879634 09461724 04480995 04480853 -triangular_bandage n 1 1 @ 1 0 04239436 -triangular_prism n 1 1 @ 1 0 13885111 -triangularity n 1 2 @ + 1 0 05072523 -triangulation n 2 2 @ + 2 0 06008148 00617337 -triangulum n 1 1 @ 1 0 09461724 -triangulum_australe n 1 1 @ 1 0 09461864 -triassic n 1 2 @ #p 1 0 15126750 -triassic_period n 1 2 @ #p 1 0 15126750 -triatoma n 1 3 @ #m %m 1 0 02244396 -triavil n 1 2 @ ; 1 0 03918297 -triazine n 1 1 @ 1 0 15079030 -triazolam n 1 1 @ 1 0 04480625 -tribade n 1 2 @ ~ 1 0 10254965 -tribadism n 1 2 @ + 1 0 00857530 -tribal_chief n 1 2 @ ~ 1 0 10164025 -tribal_sheik n 1 1 @ 1 0 10588357 -tribal_sheikh n 1 1 @ 1 0 10588357 -tribal_society n 1 2 @ ~ 1 0 08288390 -tribalisation n 1 2 ! @ 1 0 00382739 -tribalism n 2 1 @ 2 0 13928943 05954807 -tribalization n 1 2 ! @ 1 0 00382739 -tribasic_acid n 1 1 @ 1 0 14611397 -tribasic_sodium_phosphate n 1 1 @ 1 0 15080747 -tribe n 4 6 @ ~ #m %m + ; 4 0 08372411 08168531 08108784 07969695 -tribe_bambuseae n 1 3 @ #m %m 1 0 12147031 -tribe_bovini n 1 2 @ #m 1 0 02401509 -tribe_bubalus n 1 3 @ #m %m 1 0 02408217 -tribe_synercus n 1 3 @ #m %m 1 0 02409369 -tribes_of_israel n 1 2 @ ~ 1 0 08372847 -tribesman n 1 2 @ #m 1 0 10728624 -tribolium n 1 3 @ #m %m 1 0 02181599 -tribologist n 1 2 @ + 1 0 10728727 -tribology n 1 2 @ + 1 0 06135095 -tribonema n 1 3 @ #m %m 1 0 01401686 -tribonemaceae n 1 3 @ #m %m 1 0 01401517 -tribromoethanol n 1 1 @ 1 0 04481144 -tribromoethyl_alcohol n 1 1 @ 1 0 04481144 -tribromomethane n 1 1 @ 1 0 14620549 -tribulation n 1 3 @ ~ + 1 0 07372959 -tribulus n 1 3 @ #m %m 1 0 12723446 -tribulus_terestris n 1 2 @ #m 1 0 12723610 -tribunal n 1 4 @ ~ %m %p 1 1 08329453 -tribune n 2 2 @ ; 2 0 10728828 04481255 -tribuneship n 1 1 @ 1 0 00605349 -tributary n 1 2 ! @ 1 0 09278997 -tribute n 3 1 @ 3 1 06697195 01122387 00784755 -tribute_album n 1 1 @ 1 0 06592421 -tributyrin n 1 1 @ 1 0 14788596 -tricarboxylic_acid_cycle n 1 3 @ #p %p 1 0 13505467 -trice n 1 1 @ 1 0 15247110 -triceps n 1 2 @ ~ 1 0 05579604 -triceps_brachii n 1 2 @ #p 1 0 05579753 -triceratops n 1 2 @ #m 1 0 01704323 -trichechidae n 1 3 @ #m %m 1 0 02073532 -trichechus n 1 3 @ #m %m 1 0 02073679 -trichechus_manatus n 1 2 @ #m 1 0 02073831 -trichina n 1 1 @ 1 0 01932936 -trichinella_spiralis n 1 1 @ 1 0 01932936 -trichiniasis n 1 1 @ 1 0 14350536 -trichinosis n 1 1 @ 1 0 14350536 -trichion n 1 2 @ #p 1 0 08523340 -trichiuridae n 1 3 @ #m %m 1 0 02622823 -trichloracetic_acid n 1 1 @ 1 0 15079310 -trichloride n 1 2 @ ~ 1 0 15016984 -trichlormethiazide n 1 1 @ 1 0 04481373 -trichloroacetic_acid n 1 1 @ 1 1 15079310 -trichloroethane n 1 1 @ 1 0 14851414 -trichloroethylene n 1 1 @ 1 0 14851414 -trichloromethane n 1 1 @ 1 0 03022406 -trichobezoar n 1 1 @ 1 0 09301044 -trichoceros n 1 3 @ #m %m 1 0 12085469 -trichodesmium n 1 2 @ #m 1 0 01359762 -trichodontidae n 1 3 @ #m %m 1 0 02558350 -trichoglossus n 1 3 @ #m %m 1 0 01820937 -trichoglossus_moluccanus n 1 2 @ #m 1 0 01821076 -tricholoma n 1 3 @ #m %m 1 0 13016749 -tricholoma_aurantium n 1 2 @ #m 1 0 13018407 -tricholoma_flavovirens n 1 2 @ #m 1 0 13017789 -tricholoma_irinum n 1 2 @ #m 1 0 13021689 -tricholoma_pardinum n 1 2 @ #m 1 0 13018088 -tricholoma_pessundatum n 1 2 @ #m 1 0 13017439 -tricholoma_populinum n 1 2 @ #m 1 0 13017240 -tricholoma_sejunctum n 1 2 @ #m 1 0 13017610 -tricholoma_vaccinum n 1 2 @ #m 1 0 13018232 -tricholoma_venenata n 1 2 @ #m 1 0 13017979 -tricholomataceae n 1 3 @ #m %m 1 0 13016457 -trichomanes n 1 3 @ #m %m 1 0 12952022 -trichomanes_boschianum n 1 1 @ 1 0 12952469 -trichomanes_reniforme n 1 1 @ 1 0 12952717 -trichomanes_speciosum n 1 1 @ 1 0 12952590 -trichomonad n 1 2 @ #m 1 0 01420525 -trichomoniasis n 1 1 @ 1 0 14186256 -trichophaga n 1 3 @ #m %m 1 0 02292564 -trichophaga_tapetzella n 1 2 @ #m 1 0 02292692 -trichophyton n 1 2 @ #m 1 0 13078483 -trichoptera n 1 3 @ #m %m 1 0 02269015 -trichopteran n 1 3 @ ~ #m 1 0 02269196 -trichopteron n 1 3 @ ~ #m 1 0 02269196 -trichopterous_insect n 1 3 @ ~ #m 1 0 02269196 -trichostema n 1 3 @ #m %m 1 0 12871074 -trichostema_dichotomum n 1 1 @ 1 0 12871859 -trichostema_lanatum n 1 2 @ #m 1 0 12871484 -trichostema_lanceolatum n 1 1 @ 1 0 12871696 -trichostigma n 1 2 @ #m 1 0 11856815 -trichosurus n 1 3 @ #m %m 1 0 01881717 -trichosurus_vulpecula n 1 2 @ #m 1 0 01881857 -trichotillomania n 1 1 @ 1 0 09183031 -trichotomy n 1 1 @ 1 0 07940121 -trichroism n 1 1 @ 1 0 11520821 -trichromacy n 1 1 @ 1 0 05656294 -trichuriasis n 1 1 @ 1 0 14455074 -trichys n 1 3 @ #m %m 1 0 02347443 -trichys_lipura n 1 2 @ #m 1 0 02347573 -trick n 7 4 @ ~ + ; 7 5 00171618 15292260 00750730 00427580 00099951 10779995 01259594 -trick_or_treat n 1 1 @ 1 0 07192990 -tricker n 1 2 @ + 1 0 10463714 -trickery n 2 3 @ ~ + 2 0 06760722 00752954 -trickiness n 2 2 @ + 2 0 04875728 04767182 -trickle n 1 3 @ ~ + 1 0 07432559 -trickster n 3 3 @ ~ + 3 0 10463714 09998101 09545755 -triclinium n 2 1 @ 2 0 04481642 04481524 -tricolor n 1 2 @ ; 1 0 04481796 -tricolor_television_tube n 1 1 @ 1 0 04481946 -tricolor_tube n 1 1 @ 1 0 04481946 -tricolour n 1 2 @ ; 1 0 04481796 -tricolour_television_tube n 1 1 @ 1 0 04481946 -tricolour_tube n 1 1 @ 1 0 04481946 -tricorn n 1 1 @ 1 0 04482177 -tricorne n 1 1 @ 1 0 04482177 -tricot n 1 1 @ 1 0 04482297 -tricuspid_valve n 1 1 @ 1 0 05393996 -tricycle n 1 2 @ ~ 1 0 04482393 -tricyclic n 1 2 @ ~ 1 0 04482543 -tricyclic_antidepressant n 1 2 @ ~ 1 0 04482543 -tricyclic_antidepressant_drug n 1 2 @ ~ 1 0 04482543 -tridacna n 1 3 @ #m %m 1 0 01959333 -tridacna_gigas n 1 2 @ #m 1 0 01959492 -tridacnidae n 1 3 @ #m %m 1 0 01959187 -trident n 1 2 @ %p 1 0 04482975 -tridymite n 1 2 @ %s 1 0 15079557 -triennial n 1 1 @ 1 0 15251757 -trier n 2 3 @ + ; 2 0 10729175 10728998 -trifid_beggar-ticks n 1 1 @ 1 0 11940750 -trifid_bur_marigold n 1 1 @ 1 0 11940750 -trifle n 3 2 @ ~ 3 0 07613480 05820462 04486445 -trifler n 1 2 @ + 1 0 10729330 -trifling n 1 2 @ + 1 0 01067819 -trifluoromethane n 1 1 @ 1 0 14620654 -trifoliata n 1 2 @ #m 1 0 12714254 -trifoliate_orange n 1 2 @ #m 1 0 12714254 -trifoliolate_leaf n 1 1 @ 1 0 13156799 -trifolium n 1 3 @ #m %m 1 0 11752404 -trifolium_alpinum n 1 1 @ 1 0 11752798 -trifolium_dubium n 1 1 @ 1 0 11752937 -trifolium_incarnatum n 1 1 @ 1 0 11753143 -trifolium_pratense n 1 1 @ 1 0 11753355 -trifolium_reflexum n 1 1 @ 1 0 11753562 -trifolium_repens n 1 1 @ 1 0 11753700 -trifolium_stoloniferum n 1 1 @ 1 0 11753562 -trifurcation n 1 2 @ + 1 0 00388842 -trig n 1 3 @ ~ ; 1 0 06012513 -triga n 1 3 @ #m %m 1 0 02650282 -trigeminal n 1 1 @ 1 0 05478896 -trigeminal_nerve n 1 1 @ 1 0 05478896 -trigeminal_neuralgia n 1 1 @ 1 0 14330588 -trigeminus n 1 1 @ 1 0 05478896 -trigger n 3 4 @ ~ #p + 3 1 03470629 04483073 00156390 -triggerfish n 1 3 @ ~ #m 1 0 02653145 -triggerman n 1 1 @ 1 0 10152083 -trigla_lucerna n 1 2 @ #m 1 0 02650413 -triglidae n 1 3 @ #m %m 1 0 02649689 -triglinae n 1 2 @ #m 1 0 02650696 -triglochin n 1 3 @ #m %m 1 0 12617384 -triglochin_maritima n 1 2 @ #m 1 0 12617559 -triglyceride n 1 2 @ #s 1 0 14885369 -trigon n 3 3 @ ~ ; 3 0 13879320 07986771 04483210 -trigonella n 1 3 @ #m %m 1 0 12574143 -trigonella_foenumgraecum n 1 3 @ #m %p 1 0 12574470 -trigonella_ornithopodioides n 1 2 @ #m 1 0 12574320 -trigonometric_function n 1 2 @ ~ 1 0 13786960 -trigonometrician n 1 2 @ + 1 0 10729442 -trigonometry n 1 4 @ ~ + ; 1 0 06012513 -trigonum_cerebrale n 1 3 @ #p %p 1 0 05227572 -trigram n 1 1 @ 1 0 06360723 -triiodomethane n 1 1 @ 1 0 03583252 -triiodothyronine n 1 1 @ 1 0 05413873 -trike n 1 2 @ ~ 1 0 04482393 -trilateral n 1 2 @ ~ 1 0 13879320 -trilby n 2 1 @ 2 0 10729567 03325941 -trilisa n 1 3 @ #m %m 1 0 12027864 -trilisa_odoratissima n 1 2 @ #m 1 0 12028012 -trill n 2 2 @ + 2 1 06860177 07133477 -trilliaceae n 1 3 @ #m %m 1 0 12467811 -trilling n 1 1 @ 1 0 11349092 -trillion n 3 2 @ ; 3 0 13776432 13752679 13752443 -trillion_floating_point_operations_per_second n 1 3 @ %p ; 1 0 13607405 -trillionth n 1 1 @ 1 0 13739826 -trillium n 1 3 @ ~ #m 1 0 12468243 -trillium_erectum n 1 1 @ 1 0 12468900 -trillium_family n 1 3 @ #m %m 1 0 12467811 -trillium_recurvatum n 1 1 @ 1 0 12468545 -trillium_sessile n 1 1 @ 1 0 12469157 -trilobite n 1 1 @ 1 0 01768244 -trilogy n 1 1 @ 1 0 07985825 -trim n 4 3 @ ~ + 4 2 14497511 04484160 13828520 00359903 -trimaran n 1 1 @ 1 0 04483307 -trimer n 1 1 @ 1 0 15079795 -trimester n 2 3 @ ~ #p 2 0 15226732 15225929 -trimipramine n 1 1 @ 1 0 04483399 -trimmer n 4 2 @ + 4 0 10487182 04483925 04483779 04483584 -trimmer_arch n 1 1 @ 1 0 04484024 -trimmer_joist n 1 1 @ 1 0 04483584 -trimming n 3 3 @ ~ + 3 1 00263000 04484160 00359903 -trimming_capacitor n 1 1 @ 1 0 04483779 -trimmings n 1 2 @ ; 1 0 03354350 -trimness n 1 2 @ + 1 0 14497511 -trimorphodon n 1 3 @ #m %m 1 0 01739518 -trimorphodon_lambda n 1 1 @ 1 0 01739871 -trimox n 1 1 @ 1 0 02703894 -trimurti n 1 2 @ %m 1 0 07986617 -trine n 1 1 @ 1 0 13744044 -trine_immersion n 1 1 @ 1 0 01038629 -trinectes n 1 3 @ #m %m 1 0 02665119 -trinectes_maculatus n 1 2 @ #m 1 0 02665250 -tringa n 1 3 @ #m %m 1 0 02027730 -tringa_flavipes n 1 1 @ 1 0 02028451 -tringa_melanoleuca n 1 1 @ 1 0 02028342 -tringa_nebularia n 1 2 @ #m 1 0 02027897 -tringa_totanus n 1 2 @ #m 1 0 02028035 -trinidad n 1 4 @ #p %p + 1 0 08755852 -trinidad_and_tobago n 1 4 @ #m #p %p 1 0 08756202 -trinidad_and_tobago_dollar n 1 1 @ 1 0 13674138 -trinidadian n 1 1 @ 1 0 10729711 -trinil_man n 1 1 @ 1 0 02473720 -trinitarian n 1 1 @ 1 0 10738787 -trinitarianism n 1 1 @ 1 0 06230502 -trinitroglycerin n 1 2 @ #s 1 0 14886579 -trinitrotoluene n 1 1 @ 1 0 04442143 -trinity n 3 3 @ ~ %m 3 0 13744044 09536789 07986066 -trinity_river n 1 2 @ #p 1 0 09462049 -trinity_sunday n 1 1 @ 1 0 15192649 -trinket n 1 2 @ #m 1 1 02787435 -trinketry n 1 2 @ %m 1 0 08464324 -trio n 5 2 @ ~ 5 2 13744044 07041595 08247152 07986198 07986066 -triode n 1 1 @ 1 0 04484432 -triolein n 1 1 @ 1 0 15079656 -trionychidae n 1 3 @ #m %m 1 0 01671874 -trionyx n 1 3 @ #m %m 1 0 01672275 -trionyx_muticus n 1 2 @ #m 1 0 01672611 -trionyx_spiniferus n 1 2 @ #m 1 0 01672432 -triopidae n 1 2 @ #m 1 0 01995975 -triops n 1 3 @ #m %m 1 0 01996091 -triose n 1 1 @ 1 0 14689817 -triostium n 1 3 @ #m %m 1 0 12679712 -triostium_perfoliatum n 1 2 @ #m 1 0 12679876 -trioxide n 1 2 @ ~ 1 0 15079925 -trip n 7 3 @ ~ + 7 1 00308370 14378311 07317519 07288385 04485226 00286240 00076563 -trip-up n 1 2 @ + 1 0 00076563 -trip_line n 1 1 @ 1 0 04484952 -trip_wire n 2 2 @ ; 2 0 07986381 04485586 -tripalmitin n 1 1 @ 1 0 15080055 -tripe n 2 3 @ ~ ; 2 0 07663220 06611998 -triphammer n 1 1 @ 1 1 04484647 -triphosphopyridine n 1 1 @ 1 0 15080168 -triphosphopyridine_nucleotide n 1 1 @ 1 1 15080277 -triphosphoric_acid n 1 1 @ 1 0 15080382 -triple n 3 3 @ ~ + 3 1 00132982 07986198 05860377 -triple-crown_season n 1 1 @ 1 1 15240503 -triple-decker n 1 1 @ 1 0 07696839 -triple-spacing n 1 2 @ + 1 0 06402970 -triple_cream n 1 1 @ 1 0 07851641 -triple_creme n 1 1 @ 1 0 07851641 -triple_crown n 2 2 @ ; 2 0 13949275 13949080 -triple_frontier n 1 2 @ #p 1 0 08711655 -triple_jump n 1 1 @ 1 0 07471972 -triple_play n 1 1 @ 1 0 00564477 -triple_sec n 1 1 @ 1 0 07910048 -triple_time n 1 1 @ 1 0 15264264 -triplet n 3 2 @ ~ 3 0 13744044 10729801 07986198 -triplet_code n 1 1 @ 1 0 08457789 -tripletail n 1 3 @ ~ #m 1 0 02636170 -tripleurospermum n 1 3 @ #m %m 1 0 12028196 -tripleurospermum_inodorum n 1 2 @ #m 1 0 12028424 -tripleurospermum_oreades_tchihatchewii n 1 2 @ #m 1 0 12028818 -tripleurospermum_tchihatchewii n 1 2 @ #m 1 0 12029039 -triplicate n 1 2 @ + 1 0 04484780 -triplicity n 2 2 @ ; 2 0 07986771 05098857 -tripling n 1 2 @ + 1 0 13570472 -triplochiton n 1 3 @ #m %m 1 0 12201761 -triplochiton_scleroxcylon n 1 2 @ #m 1 0 12201938 -tripod n 1 3 @ ~ %p 1 1 04485082 -tripoli n 3 2 @ #p 3 0 14936474 08960099 08957993 -tripos n 1 1 @ 1 0 07199456 -tripper n 4 3 @ + ; 4 0 10729923 10667041 10596689 04485226 -triptych n 1 1 @ 1 0 04485423 -triquetral n 1 1 @ 1 0 05272545 -triquetral_bone n 1 1 @ 1 0 05272545 -triquetrous_leek n 1 1 @ 1 0 12436090 -trireme n 1 1 @ 1 0 04485750 -trisaccharide n 1 2 @ ~ 1 0 15080571 -triskaidekaphobia n 1 2 @ + 1 0 14384684 -triskele n 1 1 @ 1 0 04485884 -triskelion n 1 1 @ 1 0 04485884 -trismus n 1 1 @ 1 0 14572265 -trisodium_orthophosphate n 1 1 @ 1 1 15080747 -trisodium_phosphate n 1 1 @ 1 0 15080747 -trisomy n 1 2 @ ~ 1 0 14504558 -trisomy_21 n 1 1 @ 1 0 14159623 -tristan n 1 2 @ ; 1 0 10550951 -tristan_tzara n 1 1 @ 1 0 11355247 -tristearin n 1 1 @ 1 0 15080942 -tristram n 1 2 @ ; 1 0 10550951 -trisyllable n 1 1 @ 1 0 06304338 -tritanopia n 1 2 @ + 1 0 14155031 -triteness n 1 3 @ ~ + 1 0 05649785 -tritheism n 1 3 @ + ; 1 0 06224439 -tritheist n 1 2 @ + 1 0 10730077 -triticum n 1 3 @ #m %m 1 0 12141890 -triticum_aestivum n 1 2 @ %p 1 0 12142874 -triticum_aestivum_spelta n 1 1 @ 1 0 12143065 -triticum_dicoccum n 1 1 @ 1 0 12143215 -triticum_dicoccum_dicoccoides n 1 1 @ 1 0 12143405 -triticum_durum n 1 1 @ 1 0 12142450 -triticum_spelta n 1 1 @ 1 0 12143065 -triticum_turgidum n 1 1 @ 1 0 12142450 -tritium n 1 1 @ 1 0 14611521 -tritoma n 1 3 @ ~ #m 1 0 12437513 -triton n 4 4 @ ~ #m ; 4 0 09573145 09462231 01947735 01630284 -triturus n 1 3 @ #m %m 1 0 01630533 -triturus_vulgaris n 1 2 @ #m 1 0 01630670 -triumph n 2 3 @ ~ + 2 2 07473441 07528097 -triumphal_arch n 1 1 @ 1 0 04486054 -triumvir n 1 1 @ 1 0 10730262 -triumvirate n 1 2 @ ~ 1 0 07986982 -trivalent_live_oral_poliomyelitis_vaccine n 1 1 @ 1 0 04122011 -trivet n 2 1 @ 2 0 04486322 04486213 -trivia n 1 3 @ ~ + 1 0 04486445 -triviality n 3 3 @ ~ + 3 1 05173205 05820462 04486445 -trivium n 1 2 @ ; 1 0 06172071 -trm n 1 1 @ 1 0 15131269 -trna n 1 1 @ 1 0 14833143 -trochanter n 1 2 @ #p 1 0 05574151 -troche n 1 1 @ 1 0 07607967 -trochee n 1 2 @ + 1 0 07095653 -trochilidae n 1 3 @ #m %m 1 0 01833619 -trochlear n 1 1 @ 1 0 05478684 -trochlear_nerve n 1 1 @ 1 0 05478684 -trochlearis n 1 1 @ 1 0 05478684 -trofim_denisovich_lysenko n 1 1 @ 1 0 11146010 -trogium n 1 3 @ #m %m 1 0 02261630 -trogium_pulsatorium n 1 2 @ #m 1 0 02261757 -troglodyte n 2 2 @ ~ 2 0 10172448 09902731 -troglodytes n 1 3 @ #m %m 1 0 01584529 -troglodytes_aedon n 1 2 @ #m 1 0 01584853 -troglodytes_troglodytes n 1 2 @ #m 1 0 01584695 -troglodytidae n 1 3 @ #m %m 1 0 01584004 -trogon n 1 3 @ ~ #m 1 0 01844231 -trogonidae n 1 3 @ #m %m 1 0 01843932 -trogoniformes n 1 3 @ #m %m 1 0 01843805 -troika n 3 1 @ 3 1 04486616 13744044 07987135 -trojan n 2 2 @ #m 2 0 09750524 06585552 -trojan_horse n 3 3 @ %m ; 3 0 08359753 06585552 04486718 -trojan_war n 1 2 @ ; 1 0 01309395 -troll n 4 3 @ + ; 4 1 09502481 07053089 04486934 00454493 -troller n 1 2 @ + 1 0 09793946 -trolley n 1 3 @ ~ #p 1 0 04335435 -trolley_car n 1 3 @ ~ #p 1 1 04335435 -trolley_coach n 1 2 @ %p 1 0 04487081 -trolley_line n 1 2 @ %p 1 1 04487268 -trolleybus n 1 2 @ %p 1 0 04487081 -trolling n 1 1 @ 1 0 00454493 -trollius n 1 3 @ #m %m 1 0 11739199 -trollop n 2 1 @ 2 0 10609198 09772930 -trollope n 1 1 @ 1 0 11349207 -trombicula n 1 3 @ #m %m 1 0 01780919 -trombiculiasis n 1 1 @ 1 0 14454988 -trombiculid n 1 3 @ ~ #m 1 0 01780696 -trombiculidae n 1 3 @ #m %m 1 0 01780551 -trombidiid n 1 2 @ #m 1 0 01780426 -trombidiidae n 1 3 @ #m %m 1 0 01780302 -trombone n 1 3 @ ~ + 1 0 04487394 -trombone_player n 1 1 @ 1 0 10730416 -trombonist n 1 2 @ + 1 0 10730416 -trompe_l'oeil n 1 1 @ 1 1 04487576 -trompillo n 1 1 @ 1 0 12894930 -trondheim n 1 2 @ #p 1 0 08765623 -trondheim_fiord n 1 2 @ #p 1 0 09462312 -trondheim_fjord n 1 2 @ #p 1 0 09462312 -troop n 4 4 @ ~ #m + 4 2 08274354 08274443 08274718 08274565 -troop_carrier n 1 3 @ ~ ; 1 0 04487724 -troop_movement n 1 2 @ ; 1 0 00331531 -troop_transport n 1 3 @ ~ ; 1 0 04487724 -trooper n 4 3 @ ~ #m 4 2 09902611 10730542 10730728 09902353 -troops n 1 4 @ ~ #m ; 1 1 08397255 -troopship n 1 1 @ 1 0 04487894 -tropaeolaceae n 1 3 @ #m %m 1 0 12719277 -tropaeolum n 1 3 @ #m %m 1 0 12719455 -tropaeolum_majus n 1 1 @ 1 0 12719944 -tropaeolum_minus n 1 1 @ 1 0 12720200 -tropaeolum_peregrinum n 1 1 @ 1 0 12720354 -trope n 1 4 @ ~ + - 1 0 07105475 -trophobiosis n 1 1 @ 1 0 13842841 -trophoblast n 1 3 @ #p + 1 0 01462209 -trophoblastic_cancer n 1 1 @ 1 0 14252722 -trophotropism n 1 2 @ + 1 0 00862488 -trophozoite n 1 1 @ 1 0 01422335 -trophy n 2 2 @ ~ 2 0 06709442 04487996 -trophy_case n 1 1 @ 1 0 04488202 -trophy_wife n 1 1 @ 1 0 10730820 -tropic n 1 3 @ ~ + 1 0 08675145 -tropic_bird n 1 2 @ #m 1 0 02055107 -tropic_of_cancer n 1 1 @ 1 0 08675538 -tropic_of_capricorn n 1 1 @ 1 0 08675665 -tropical_medicine n 1 1 @ 1 0 06065020 -tropical_pitcher_plant n 1 2 @ #m 1 0 12781940 -tropical_prawn n 1 2 @ #m 1 0 01988203 -tropical_rain_forest n 1 1 @ 1 0 08439369 -tropical_sore n 1 1 @ 1 0 14181187 -tropical_sprue n 1 1 @ 1 0 14400979 -tropical_year n 1 1 @ 1 0 15202806 -tropical_zone n 1 1 @ 1 0 08665281 -tropicbird n 1 2 @ #m 1 0 02055107 -tropics n 1 2 @ + 1 0 08665281 -tropidoclonion n 1 3 @ #m %m 1 1 01735898 -tropidoclonion_lineatum n 1 2 @ #m 1 0 01736032 -tropism n 1 2 @ ~ 1 0 00861611 -troponomy n 1 2 @ %p 1 0 08464449 -troponym n 1 1 @ 1 0 06304425 -troponymy n 2 2 @ %p 2 0 13808868 08464449 -tropopause n 1 2 @ #p 1 0 09462452 -troposphere n 1 3 @ #p %p 1 0 09462600 -trot n 4 3 @ ~ + 4 1 00294190 10731013 06347225 00287561 -troth n 2 2 @ ~ 2 0 07228211 07228105 -trotline n 1 1 @ 1 0 04475900 -trotsky n 1 2 @ + 1 0 11349318 -trotskyism n 1 2 @ + 1 0 06215977 -trotskyist n 1 2 @ + 1 0 10731013 -trotskyite n 1 1 @ 1 0 10731013 -trotter n 2 4 @ ~ #p + 2 0 02439568 02388276 -trotting_horse n 1 2 @ ~ 1 0 02388276 -trou-de-loup n 1 1 @ 1 0 04488295 -troubadour n 1 2 @ ~ 1 0 10099093 -trouble n 6 3 @ ~ + 6 5 05687338 07372565 07289014 00623862 07524242 14046751 -trouble_maker n 1 2 @ ~ 1 0 10731244 -trouble_shooter n 1 1 @ 1 0 10731560 -troublemaker n 1 2 @ ~ 1 0 10731244 -troubler n 1 2 @ ~ 1 0 10731244 -troubleshooter n 1 1 @ 1 1 10731560 -troublesomeness n 1 3 @ ~ + 1 0 04711435 -trough n 6 3 @ ~ #p 6 2 09462773 03471473 13893694 13357891 04488427 03717131 -trouncing n 2 3 @ ~ + 2 0 07476623 01160729 -troupe n 1 3 @ ~ %m 1 1 08187033 -trouper n 2 1 @ 2 0 10730615 09840050 -trouser n 2 4 @ ~ #p %p 2 1 04489008 04488530 -trouser_clip n 1 1 @ 1 0 02835551 -trouser_cuff n 1 2 @ #p 1 1 04488742 -trouser_leg n 1 2 @ #p 1 0 03885293 -trouser_press n 1 1 @ 1 0 04488857 -trousering n 1 1 @ 1 0 03885194 -trousseau n 1 1 @ 1 0 04489695 -trout n 2 2 @ ~ 2 0 07794452 02537085 -trout_lily n 1 1 @ 1 0 12450840 -trove n 1 1 @ 1 0 13371355 -trowel n 1 3 @ ~ + 1 0 04489817 -troy n 2 5 @ #p %m %p + 2 0 13716490 08788887 -troy_ounce n 1 3 @ #p %p 1 0 13722522 -troy_pound n 1 2 @ %p 1 0 13722757 -troy_unit n 1 3 @ ~ #p 1 0 13716686 -troy_weight n 1 2 @ %p 1 0 13716490 -truancy n 1 2 @ + 1 0 01234612 -truant n 2 1 @ 2 0 10731732 10362917 -truce n 1 1 @ 1 0 13970912 -truck n 2 4 @ ~ %p + 2 1 04490091 03490119 -truck_bed n 1 2 @ ~ 1 1 04490490 -truck_dealer n 1 1 @ 1 0 08063947 -truck_driver n 1 1 @ 1 0 10695192 -truck_farm n 1 1 @ 1 0 04490614 -truck_farming n 1 1 @ 1 0 01104544 -truck_garden n 1 1 @ 1 0 04490614 -truck_stop n 1 1 @ 1 0 04490730 -truck_traffic n 1 1 @ 1 0 08426378 -truckage n 2 3 @ ~ + 2 0 13323885 01105909 -trucker n 1 2 @ + 1 0 10695192 -trucking n 1 3 @ ~ + 1 1 01105909 -trucking_company n 1 2 @ #m 1 0 08004210 -trucking_industry n 1 2 @ %m 1 0 08075140 -trucking_rig n 1 3 @ ~ %p 1 0 04467665 -truckle n 1 1 @ 1 0 04491638 -truckle_bed n 1 1 @ 1 0 04491638 -truckler n 1 2 @ + 1 0 09800631 -truckling n 1 2 @ + 1 0 01167385 -truculence n 1 2 @ + 1 1 04644161 -truculency n 1 2 @ + 1 0 04644161 -trudge n 1 2 @ + 1 0 00289175 -trudger n 1 2 @ + 1 0 10731848 -true n 1 2 @ + 1 0 05077348 -true_anomaly n 1 1 @ 1 0 13889066 -true_bacteria n 1 4 @ ~ #m %p 1 0 01355326 -true_bill n 1 1 @ 1 0 07235696 -true_blackberry n 1 2 @ %p 1 0 12654012 -true_bug n 1 1 @ 1 0 02241426 -true_cat n 1 2 @ ~ 1 0 02121620 -true_cedar n 1 4 @ ~ #m %s 1 0 11623105 -true_dwarf n 1 1 @ 1 0 10472447 -true_fir n 1 5 @ ~ #m %s %p 1 0 11620673 -true_flycatcher n 1 3 @ ~ #m 1 0 01555809 -true_frog n 1 4 @ ~ #m %p 1 0 01640846 -true_fungus n 1 2 @ #m 1 0 12995601 -true_glottis n 1 2 @ #p 1 0 05610198 -true_guava n 1 3 @ #m %p 1 0 12333530 -true_heath n 1 3 @ ~ #m 1 0 12227420 -true_jasmine n 1 1 @ 1 0 12307240 -true_laurel n 1 3 @ #m %p 1 0 11704093 -true_lobster n 1 4 @ ~ #m %p 1 0 01983048 -true_lover's_knot n 2 1 @ 2 0 03693293 03350456 -true_lovers'_knot n 1 1 @ 1 0 03693293 -true_mahogany n 1 2 @ #m 1 0 12699922 -true_marmoset n 1 2 @ #m 1 0 02490597 -true_pepper n 1 3 @ ~ #m 1 0 13149296 -true_pine n 1 5 @ ~ #m %s %p 1 0 11608250 -true_puffball n 1 3 @ ~ #m 1 0 13043926 -true_rib n 1 1 @ 1 0 05591999 -true_sago_palm n 1 1 @ 1 0 12591702 -true_sandalwood n 1 3 @ #m %s 1 0 12735160 -true_seal n 1 3 @ ~ #m 1 0 02079389 -true_senna n 1 1 @ 1 0 12499979 -true_slime_mold n 1 2 @ #m 1 0 12975804 -true_sparrow n 1 3 @ ~ #m 1 0 01539573 -true_statement n 1 2 @ ~ 1 0 06724066 -true_toad n 1 3 @ ~ #m 1 0 01645776 -true_tulipwood n 1 2 @ #s 1 0 11712621 -true_vampire_bat n 1 3 @ ~ #m 1 0 02150482 -true_vocal_cord n 1 1 @ 1 0 05530871 -true_vocal_fold n 1 1 @ 1 0 05530871 -true_warbler n 1 3 @ ~ #m 1 0 01564394 -truelove n 1 2 @ ~ 1 0 10682953 -truelove_knot n 1 1 @ 1 0 03350456 -trueness n 3 4 @ ~ = + 3 0 13956488 04877530 04804169 -truffaut n 1 1 @ 1 0 11349635 -truffle n 3 2 @ #m 3 0 12985420 07736971 07609632 -truism n 1 2 @ ~ 1 0 07154243 -truman n 1 1 @ 1 0 11349739 -truman_doctrine n 1 1 @ 1 0 06662522 -trumbo n 1 1 @ 1 0 11350059 -trumbull n 3 1 @ 3 0 11350514 11350393 11350286 -trump n 3 4 @ ~ + ; 3 0 04491135 04490859 03110669 -trump_card n 1 1 @ 1 0 04491135 -trumpery n 2 2 @ ; 2 0 06611998 03376438 -trumpet n 1 3 @ ~ + 1 1 03110669 -trumpet-wood n 1 2 @ #m 1 0 12404729 -trumpet_arch n 1 1 @ 1 0 04491312 -trumpet_creeper n 1 1 @ 1 0 12814235 -trumpet_flower n 3 2 @ #m 3 0 12913791 12814003 12676703 -trumpet_honeysuckle n 1 2 @ #m 1 0 12676703 -trumpet_section n 1 1 @ 1 0 08217738 -trumpet_tree n 1 2 @ #m 1 0 12404729 -trumpet_vine n 2 2 @ #m 2 1 12814235 12676703 -trumpet_weed n 1 2 @ #m 1 0 11969166 -trumpeter n 4 5 @ ~ #m + ; 4 1 10732010 10171219 02021050 01860002 -trumpeter_swan n 1 2 @ #m 1 0 01860002 -trumpetfish n 1 2 @ #m 1 0 01457852 -trumpets n 1 2 @ #m 1 0 12780563 -trumpetwood n 1 2 @ #m 1 0 12404729 -trumping n 1 4 @ #p + ; 1 0 01259380 -truncated_cone n 1 1 @ 1 0 13917785 -truncated_pyramid n 1 1 @ 1 0 13917690 -truncation n 3 2 @ + 3 0 05137938 00942574 00370261 -truncation_error n 1 2 @ ; 1 0 00073525 -truncheon n 1 1 @ 1 0 04491388 -truncocolumella n 1 3 @ #m %m 1 0 12971956 -truncocolumella_citrina n 1 2 @ #m 1 0 12972136 -truncus_atrioventricularis n 1 1 @ 1 0 05390479 -truncus_celiacus n 1 1 @ 1 0 05340317 -truncus_pulmonalis n 1 1 @ 1 0 05354026 -trundle n 2 1 @ 2 0 04491638 04491545 -trundle_bed n 1 1 @ 1 0 04491638 -trunk n 5 4 @ ~ #p %p 5 2 13165815 04491769 05549830 03696065 02452967 -trunk_call n 1 2 @ ~ 1 0 06274092 -trunk_hose n 1 1 @ 1 0 04491934 -trunk_lid n 1 2 @ #p 1 0 04492060 -trunk_line n 2 1 @ 2 0 04492264 04492157 -trunk_road n 1 2 @ ; 1 0 03519578 -trunk_route n 1 1 @ 1 0 04492264 -trunkfish n 1 3 @ ~ #m 1 0 02654425 -trunks n 1 3 @ ~ ; 1 0 04205318 -trunnel n 1 1 @ 1 0 04478066 -truss n 3 4 @ #p + ; 3 0 04492585 04492375 03105467 -truss_bridge n 1 2 @ %p 1 0 04492749 -trust n 6 4 ! @ ~ + 6 5 13360498 05697976 04895246 08236621 05943066 13929852 -trust_account n 1 1 @ 1 0 13363365 -trust_busting n 1 2 @ ; 1 0 01126335 -trust_company n 1 1 @ 1 0 08424222 -trust_corporation n 1 1 @ 1 0 08424222 -trust_deed n 1 2 @ ; 1 0 06546408 -trust_fund n 1 1 @ 1 0 13363893 -trust_territory n 1 1 @ 1 0 08675795 -trustbuster n 1 1 @ 1 0 10732212 -trustee n 2 4 @ #m + ; 2 2 10732314 10516294 -trustee-beneficiary_relation n 1 2 @ ; 1 0 13840231 -trustee_account n 1 1 @ 1 0 13363365 -trusteeship n 2 1 @ 2 0 08675795 00605430 -trusteeship_council n 1 2 @ #m 1 0 08296500 -truster n 1 3 @ ~ + 1 0 09848489 -trustfulness n 1 3 @ ~ + 1 0 04895246 -trustiness n 1 4 ! @ ~ + 1 0 04668819 -trustingness n 1 3 @ ~ + 1 0 04895246 -trustor n 1 2 @ ; 1 0 10584021 -trustworthiness n 1 4 ! @ ~ + 1 0 04668819 -trusty n 1 1 @ 1 0 10732521 -truth n 5 4 ! @ ~ = 5 4 05819453 13956488 06724066 04802907 11350705 -truth_drug n 1 2 @ ~ 1 0 04492856 -truth_quark n 1 1 @ 1 0 09459812 -truth_serum n 1 2 @ ~ 1 0 04492856 -truthfulness n 1 4 ! @ ~ + 1 1 04872236 -try n 1 3 @ ~ + 1 1 00786195 -try-on n 1 2 @ + 1 0 00795008 -try_square n 1 2 @ ~ 1 0 04493109 -trygve_halvden_lie n 1 1 @ 1 0 11131808 -trygve_lie n 1 1 @ 1 0 11131808 -trying_on n 1 1 @ 1 0 00795008 -tryout n 2 3 @ ~ + 2 0 05799212 00794614 -trypetidae n 1 3 @ #m %m 1 0 02196542 -trypsin n 1 2 @ ~ 1 0 15081052 -trypsinogen n 1 1 @ 1 0 15081221 -tryptophan n 1 1 @ 1 0 15081417 -tryptophane n 1 1 @ 1 0 15081417 -tryst n 2 1 @ 2 0 08385717 01231435 -tsa n 1 2 @ #p 1 0 08144308 -tsar n 1 4 @ ~ + ; 1 0 09987239 -tsarina n 1 1 @ 1 0 09987573 -tsaritsa n 1 1 @ 1 0 09987573 -tsaritsyn n 1 2 @ #p 1 0 09010085 -tsatske n 2 2 @ ; 2 0 09905530 02998696 -tsetse n 1 2 @ #m 1 0 02191273 -tsetse_fly n 1 2 @ #m 1 0 02191273 -tsh n 1 1 @ 1 1 15073973 -tshatshke n 2 2 @ ; 2 0 09905530 02998696 -tshiluba n 1 1 @ 1 0 06993870 -tsimshian n 2 1 @ 2 0 09670772 06925644 -tsine n 1 2 @ #m 1 0 02405440 -tsoris n 1 2 @ ; 1 0 07497019 -tsouic n 1 1 @ 1 0 06940969 -tss n 1 1 @ 1 0 14470144 -tsuga n 1 3 @ #m %m 1 0 11627028 -tsuga_canadensis n 1 1 @ 1 0 11627512 -tsuga_caroliniana n 1 1 @ 1 0 11627714 -tsuga_heterophylla n 1 1 @ 1 0 11628087 -tsuga_mertensiana n 1 1 @ 1 0 11627908 -tsunami n 1 1 @ 1 1 07349299 -tsung_dao_lee n 1 1 @ 1 0 11124088 -tsuris n 1 2 @ ; 1 0 00624285 -tsushima n 1 3 @ #p ; 1 0 01298162 -tsutsugamushi_disease n 1 1 @ 1 0 14142326 -tswana n 2 2 @ #m 2 0 09693618 06995664 -tt n 3 4 @ #p %p ; 3 0 15156746 08978161 08837048 -tuamotu_archipelago n 1 2 @ #p 1 0 08990522 -tuareg n 2 2 @ #m 2 0 09734639 06990741 -tuatara n 1 2 @ #m 1 0 01673282 -tuatha_de n 1 2 @ ; 1 0 09510746 -tuatha_de_danann n 1 2 @ ; 1 0 09510746 -tub n 3 3 @ ~ #p 3 2 02808440 04493381 13770926 -tub-cart n 1 1 @ 1 0 03981924 -tub-thumper n 1 1 @ 1 0 10732644 -tub_gurnard n 1 2 @ #m 1 0 02650413 -tuba n 1 2 @ ~ 1 0 02804252 -tuba_root n 1 2 @ #m 1 0 12525753 -tubal_ligation n 1 1 @ 1 0 00148446 -tubal_pregnancy n 1 1 @ 1 0 14047641 -tubbiness n 1 2 @ + 1 0 05001089 -tube n 5 6 @ ~ #p %p + ; 5 3 04493505 04494204 13901321 05246511 03757138 -tube-nosed_bat n 1 2 @ #m 1 0 02140491 -tube-nosed_fruit_bat n 1 2 @ #m 1 1 02140491 -tube-shaped_structure n 1 3 @ ~ ; 1 0 05246511 -tube_foot n 1 2 @ #p 1 0 02322387 -tube_well n 1 1 @ 1 0 03243903 -tube_wrench n 1 2 @ ~ 1 0 03947466 -tubeless n 1 2 @ + 1 0 04494762 -tubeless_tire n 1 1 @ 1 0 04494762 -tuber n 2 5 @ ~ #m %m + 2 0 13128365 12985236 -tuber_root n 1 1 @ 1 0 13235503 -tuberaceae n 1 3 @ #m %m 1 0 12985010 -tuberales n 1 3 @ #m %m 1 0 12984802 -tubercle n 3 3 @ ~ + 3 0 14211440 13088989 05542686 -tubercle_bacillus n 1 1 @ 1 0 01377278 -tubercular n 1 1 @ 1 0 09960001 -tubercularia n 1 2 @ #m 1 0 13081565 -tuberculariaceae n 1 3 @ #m %m 1 0 13081369 -tuberculin n 1 1 @ 1 0 15111903 -tuberculin_skin_test n 1 2 @ ~ 1 0 05745907 -tuberculin_test n 1 2 @ ~ 1 0 05745907 -tuberculoid_leprosy n 1 1 @ 1 0 14136544 -tuberculosis n 1 3 @ ~ + 1 1 14143415 -tuberose n 1 2 @ #m 1 0 12480456 -tuberosity n 1 3 @ ~ + 1 0 05542686 -tuberous_begonia n 1 2 @ ~ 1 0 12360684 -tuberous_plant n 1 1 @ 1 0 13128278 -tuberous_vetch n 1 2 @ #m 1 0 12542240 -tubful n 1 1 @ 1 0 13770926 -tubing n 1 3 @ ~ + 1 1 04493505 -tubman n 1 1 @ 1 0 11350959 -tubocurarine n 1 1 @ 1 0 15111609 -tubuai_islands n 1 2 @ #p 1 0 08990701 -tubular_cavity n 1 2 @ ~ 1 0 05548726 -tubule n 1 2 @ ~ 1 1 05246796 -tubulidentata n 1 3 @ #m %m 1 0 02082358 -tucana n 1 1 @ 1 0 09462924 -tuchman n 1 1 @ 1 0 11351212 -tuck n 4 4 @ ~ + ; 4 0 07556872 05083687 04494906 04054361 -tuck_box n 1 2 @ ; 1 0 04495051 -tuck_shop n 1 2 @ ; 1 0 04495450 -tuckahoe n 1 1 @ 1 0 11790936 -tucker n 4 2 @ + 4 0 11351529 11351347 10732748 04495183 -tucker-bag n 1 2 @ ; 1 0 04495310 -tucket n 1 2 @ ; 1 0 06856884 -tucson n 1 2 @ #p 1 0 09058841 -tudor n 3 3 @ #m %m 3 1 08159031 11351677 10732854 -tudor_arch n 1 1 @ 1 0 04495555 -tudor_architecture n 1 1 @ 1 0 05843513 -tudung n 1 1 @ 1 0 04495698 -tues n 1 2 @ ~ 1 0 15164105 -tuesday n 1 2 @ ~ 1 1 15164105 -tufa n 2 1 @ 2 0 14931323 14931212 -tuff n 1 1 @ 1 0 14931212 -tuffet n 1 1 @ 1 0 03380724 -tuft n 2 2 @ ~ 2 1 07960769 01325775 -tufted_centaury n 1 1 @ 1 0 12291292 -tufted_gentian n 1 1 @ 1 0 12297507 -tufted_pansy n 1 1 @ 1 0 12388989 -tufted_puffin n 1 2 @ #m 1 0 02048353 -tufted_titmouse n 1 2 @ #m 1 0 01592387 -tufted_vetch n 1 1 @ 1 0 12575812 -tug n 2 3 @ %p + 2 1 00115500 04495843 -tug-of-war n 2 1 @ 2 1 01167847 07472168 -tugboat n 1 2 @ %p 1 0 04495843 -tugela n 1 2 @ #p 1 0 09463078 -tugela_falls n 1 2 @ #p 1 0 09463078 -tugger n 1 2 @ + 1 0 10492202 -tughrik n 1 2 @ %p 1 0 13708631 -tugrik n 1 2 @ %p 1 0 13708631 -tuileries n 2 2 @ #p 2 0 04496173 04496035 -tuileries_gardens n 1 2 @ #p 1 0 04496035 -tuileries_palace n 1 2 @ #p 1 0 04496173 -tuille n 1 2 @ #p 1 0 04496404 -tuition n 2 2 @ ; 2 1 13323988 00889294 -tuition_fee n 1 2 @ ; 1 0 13323988 -tularaemia n 1 2 @ %p 1 0 14276360 -tularemia n 1 2 @ %p 1 1 14276360 -tule_tree n 1 2 @ #p 1 0 11642622 -tulestoma n 1 3 @ #m %m 1 0 12970560 -tulip n 1 3 @ ~ #m 1 1 12454159 -tulip_bed n 1 1 @ 1 0 04496519 -tulip_gentian n 1 2 @ #m 1 0 12291959 -tulip_orchid n 1 2 @ #m 1 0 12061104 -tulip_poplar n 1 3 @ #m %s 1 0 11712282 -tulip_tree n 1 3 @ #m %s 1 1 11712282 -tulipa n 1 3 @ #m %m 1 0 12454021 -tulipa_armena n 1 1 @ 1 0 12454436 -tulipa_clusiana n 1 1 @ 1 0 12454556 -tulipa_gesneriana n 1 1 @ 1 0 12454705 -tulipa_suaveolens n 1 1 @ 1 0 12454436 -tulipwood n 2 2 @ #s 2 0 12188484 11712621 -tulipwood_tree n 1 3 @ ~ %s 1 0 12188289 -tulle n 1 1 @ 1 0 04496614 -tully n 1 1 @ 1 0 10897946 -tulostoma n 1 3 @ #m %m 1 0 12970560 -tulostomaceae n 1 3 @ #m %m 1 0 12970379 -tulostomataceae n 1 3 @ #m %m 1 0 12970379 -tulostomatales n 1 3 @ #m %m 1 0 13041548 -tulsa n 1 2 @ #p 1 0 09132778 -tulu n 2 1 @ 2 0 09675799 06980085 -tum n 1 4 @ ~ #p %p 1 0 05395690 -tumble n 2 3 @ ~ + 2 1 00437788 00076884 -tumble-dryer n 1 1 @ 1 0 04496726 -tumble_drier n 1 1 @ 1 0 04496726 -tumble_grass n 1 1 @ 1 0 12127237 -tumblebug n 1 1 @ 1 0 02172678 -tumbler n 4 4 @ ~ #p + 4 2 10732967 04496872 04497005 01814755 -tumbler_pigeon n 1 1 @ 1 0 01814755 -tumbleweed n 4 2 @ #m 4 0 12554911 11834890 11833373 11823436 -tumbling n 1 3 @ %p + 1 1 00434075 -tumbrel n 1 1 @ 1 0 04497249 -tumbril n 1 1 @ 1 0 04497249 -tumefaction n 1 2 @ + 1 0 13570574 -tumescence n 1 2 @ + 1 0 14318210 -tumidity n 1 3 @ ~ + 1 0 14318360 -tumidness n 1 3 @ ~ + 1 0 14318360 -tummy n 2 5 @ ~ #p %p ; 2 0 05556071 05395690 -tummy_crunch n 1 2 @ ~ 1 0 00630634 -tummy_tuck n 1 1 @ 1 0 00034777 -tumor n 1 2 @ ~ 1 1 14235200 -tumor_necrosis_factor n 1 1 @ 1 0 14737365 -tumor_suppressor_gene n 1 1 @ 1 0 05441806 -tumor_virus n 1 2 @ ~ 1 0 01371777 -tumour n 1 2 @ ~ 1 1 14235200 -tumour_necrosis_factor n 1 1 @ 1 0 14737365 -tums n 1 2 @ ; 1 0 14777939 -tumult n 3 3 @ ~ + 3 1 13978709 07514520 00553823 -tumultuous_disturbance n 1 1 @ 1 0 00554433 -tumultuousness n 1 3 @ ~ + 1 0 13978709 -tumulus n 1 2 @ ; 1 0 02922292 -tun n 1 1 @ 1 0 04497442 -tuna n 4 5 @ ~ #m #p %p 4 0 11852148 07780627 02626762 02527057 -tuna_fish n 1 3 @ ~ #p 1 0 07780627 -tuna_fish_salad n 1 1 @ 1 0 07808352 -tuna_oil n 1 1 @ 1 0 15081595 -tuna_salad n 1 1 @ 1 0 07808352 -tunaburger n 1 1 @ 1 0 07697408 -tundra n 1 1 @ 1 0 09463226 -tundra_soil n 1 1 @ 1 0 15081675 -tundra_swan n 1 3 @ ~ #m 1 0 01859496 -tune n 3 4 @ ~ %p + 3 1 07028373 04987169 01000843 -tune-up n 2 2 @ + 2 0 01144716 01000969 -tunefulness n 1 2 @ + 1 0 04983848 -tuner n 2 5 @ ~ #p %p + 2 0 10733117 04043733 -tung n 1 2 @ #m 1 0 12927758 -tung-oil_tree n 1 2 @ #m 1 0 12927758 -tung_oil n 1 1 @ 1 0 15086545 -tung_tree n 1 2 @ #m 1 0 12927758 -tunga n 1 3 @ #m %m 1 0 02187427 -tunga_penetrans n 1 2 @ #m 1 0 02187554 -tungstate n 1 1 @ 1 0 15081957 -tungsten n 1 2 @ #s 1 1 14659512 -tungsten_steel n 1 1 @ 1 0 15081828 -tungstic_acid n 1 1 @ 1 0 15082036 -tungus n 2 1 @ 2 0 09737453 06928610 -tungusic n 2 2 @ ~ 2 0 09737297 06928430 -tungusic_language n 1 2 @ ~ 1 0 06928430 -tunguska n 3 2 @ #p 3 0 09463547 09463362 09197432 -tunguz n 1 1 @ 1 0 06928610 -tunic n 2 2 @ ~ 2 0 05606633 04497570 -tunica n 1 2 @ ~ 1 0 05606633 -tunica_albuginea_testes n 1 1 @ 1 0 05606429 -tunica_conjunctiva_bulbi n 1 1 @ 1 0 05315382 -tunica_conjunctiva_palpebrarum n 1 1 @ 1 0 05315612 -tunicata n 1 3 @ #m %m 1 0 01467986 -tunicate n 1 3 @ ~ #m 1 0 01468238 -tuning n 1 3 @ + ; 1 1 00999588 -tuning_fork n 1 1 @ 1 0 04497801 -tunis n 1 2 @ #p 1 0 09037838 -tunisia n 1 7 @ #m #p %m %p + - 1 1 09037394 -tunisian n 1 3 @ #m + 1 0 09734760 -tunisian_dinar n 1 2 @ %p 1 0 13670668 -tunisian_dirham n 1 3 @ #p %p 1 0 13670790 -tunisian_monetary_unit n 1 2 @ ~ 1 0 13670521 -tunker n 1 2 @ #m 1 0 09677830 -tunnage n 1 1 @ 1 0 13317269 -tunnel n 2 5 @ ~ %p + ; 2 1 04497962 09230041 -tunnel_vision n 1 1 @ 1 0 14557091 -tunney n 1 1 @ 1 0 11351832 -tunny n 2 5 @ ~ #m #p %p 2 0 07780627 02626762 -tup n 1 2 @ %p 1 0 02412080 -tupac_amaru_revolutionary_movement n 1 2 @ ; 1 0 08045681 -tupac_katari_guerrilla_army n 1 2 @ ; 1 0 08046032 -tupaia n 1 2 @ #m 1 0 02495099 -tupaiidae n 1 3 @ #m %m 1 0 02494866 -tupek n 1 1 @ 1 0 04498275 -tupelo n 3 6 @ ~ #m #s #p %s 3 0 12340998 12340383 09105390 -tupelo_family n 1 3 @ #m %m 1 0 12339972 -tupelo_tree n 1 4 @ ~ #m %s 1 0 12340383 -tupi n 2 1 @ 2 0 09695132 06917497 -tupi-guarani n 1 2 @ ~ 1 0 06917602 -tupi-guarani_language n 1 2 @ ~ 1 0 06917602 -tupik n 1 1 @ 1 0 04498275 -tupinambis n 1 3 @ #m %m 1 0 01687009 -tuppence n 1 1 @ 1 0 13390963 -tupungatito n 1 2 @ #p 1 0 09177249 -tupungato n 1 2 @ #p 1 0 09463721 -turaco n 1 2 @ #m 1 0 01825278 -turacou n 1 2 @ #m 1 0 01825278 -turakoo n 1 2 @ #m 1 0 01825278 -turban n 2 1 @ 2 1 04498389 03937835 -turban_squash n 2 5 @ ~ #m #p %p 2 0 12161285 07717858 -turbatrix n 1 3 @ #m %m 1 0 01931984 -turbatrix_aceti n 1 2 @ #m 1 0 01932151 -turbellaria n 1 3 @ #m %m 1 0 01925133 -turbidity n 1 2 @ + 1 0 04703932 -turbidness n 1 2 @ + 1 0 04703932 -turbinal n 1 3 @ ~ #p 1 0 05283816 -turbinate n 1 3 @ ~ #p 1 1 05283816 -turbinate_bone n 1 3 @ ~ #p 1 0 05283816 -turbine n 1 3 @ ~ %p 1 1 04498523 -turbo-propeller_plane n 1 2 @ %p 1 0 04012482 -turbofan n 2 3 @ #p %p 2 0 03321419 03321103 -turbofan_engine n 1 3 @ #p %p 1 1 03321103 -turbogenerator n 1 2 @ #p 1 0 04498873 -turbojet n 2 3 @ #p %p 2 0 03321419 03321103 -turbojet_engine n 1 3 @ #p %p 1 0 03321103 -turboprop n 1 2 @ %p 1 0 04012482 -turbot n 2 4 @ #m #p %p 2 0 07791039 02663211 -turbulence n 3 4 @ ~ + ; 3 1 11520989 14524383 13979173 -turbulency n 1 3 @ ~ + 1 0 11520989 -turbulent_flow n 1 2 @ ~ 1 0 11521267 -turcoman n 2 1 @ 2 0 09736485 06926889 -turd n 1 2 @ ; 1 0 14854581 -turdidae n 1 3 @ #m %m 1 0 01556671 -turdinae n 1 3 @ #m %m 1 0 01557028 -turdus n 1 3 @ #m %m 1 0 01557697 -turdus_greyi n 1 2 @ #m 1 0 01559160 -turdus_iliacus n 1 2 @ #m 1 0 01558461 -turdus_merula n 1 2 @ #m 1 0 01558594 -turdus_migratorius n 1 2 @ #m 1 0 01558993 -turdus_philomelos n 1 2 @ #m 1 0 01558149 -turdus_pilaris n 1 2 @ #m 1 0 01558307 -turdus_torquatus n 1 2 @ #m 1 0 01558765 -turdus_viscivorus n 1 2 @ #m 1 0 01557962 -tureen n 1 1 @ 1 0 04499062 -turf n 3 3 @ ~ ; 3 1 09463919 08689771 08590719 -turf_war n 1 1 @ 1 0 01167952 -turfan n 1 1 @ 1 0 06968909 -turfan_dialect n 1 1 @ 1 0 06968909 -turfing_daisy n 2 2 @ #m 2 0 12029039 12028818 -turgenev n 1 1 @ 1 0 11352035 -turgidity n 1 2 @ + 1 0 07090573 -turgidness n 1 2 @ + 1 0 07090573 -turgor n 1 2 @ ; 1 0 14568762 -turgot n 1 1 @ 1 0 11352192 -turin n 1 2 @ #p 1 0 08810220 -turing n 1 1 @ 1 0 11352498 -turing_machine n 1 1 @ 1 0 04499180 -turk n 1 3 @ ~ #m 1 0 09734885 -turk's-cap n 2 1 @ 2 0 12428747 12428076 -turk's_cap-lily n 1 1 @ 1 0 12428747 -turk's_head n 1 1 @ 1 0 04499554 -turkestan n 1 2 @ #p 1 0 08724545 -turkestan_desert n 1 2 @ #p 1 0 09170475 -turkey n 5 7 @ ~ #m #p %m %p - 5 2 01794158 09039411 10224295 07647731 07365193 -turkey_buzzard n 1 2 @ #m 1 0 01619310 -turkey_cock n 1 1 @ 1 1 01794344 -turkey_drumstick n 1 1 @ 1 0 07648036 -turkey_leg n 1 1 @ 1 0 07648036 -turkey_oak n 4 1 @ 4 0 12273515 12273114 12271933 12270741 -turkey_red n 1 1 @ 1 0 04963307 -turkey_stew n 1 1 @ 1 0 07592400 -turkey_stuffing n 1 1 @ 1 0 07678953 -turkey_trot n 1 1 @ 1 0 00535873 -turkey_vulture n 1 2 @ #m 1 0 01619310 -turkey_wing n 1 2 @ #p 1 0 07648717 -turki n 2 2 @ ~ 2 0 09735258 06926458 -turkic n 1 2 @ ~ 1 0 06926458 -turkic_language n 1 2 @ ~ 1 0 06926458 -turkish n 1 1 @ 1 0 06926798 -turkish_bath n 2 1 @ 2 0 04499300 00258530 -turkish_boxwood n 1 2 @ #s 1 0 12746474 -turkish_capital n 1 2 @ #p 1 0 09040601 -turkish_coffee n 1 1 @ 1 0 07921239 -turkish_delight n 1 1 @ 1 0 07609728 -turkish_empire n 1 2 @ #p 1 0 09038597 -turkish_hizballah n 1 2 @ ; 1 0 08046346 -turkish_lira n 1 2 @ %p 1 0 13687160 -turkish_monetary_unit n 1 2 @ ~ 1 0 13687015 -turkish_tobacco n 1 2 @ ~ 1 0 14715453 -turkish_towel n 1 1 @ 1 0 04499446 -turkistan n 1 2 @ #p 1 0 08724545 -turkmen n 3 4 @ #m #p %p 3 0 09736485 09021503 06926889 -turkmen_monetary_unit n 1 2 @ ~ 1 0 13702707 -turkmenia n 1 4 @ #m #p %p 1 0 09021503 -turkmenistan n 1 4 @ #m #p %p 1 0 09021503 -turko-tatar n 1 2 @ ~ 1 0 06926458 -turkoman n 2 1 @ 2 0 09736485 06926889 -turkomen n 1 4 @ #m #p %p 1 0 09021503 -turmeric n 2 4 @ #m #p %p 2 0 12356395 07821919 -turmeric_root n 1 2 @ #m 1 0 11735570 -turmoil n 3 1 @ 3 2 13977732 07514520 00554300 -turn n 12 5 @ ~ #p + ; 12 7 13869327 00350030 00457382 07423365 07351612 00346532 00345454 15292069 15256714 06892016 01227083 00292599 -turn-on n 1 3 @ + ; 1 0 05828102 -turn_around n 1 2 @ + 1 0 07411160 -turn_indicator n 1 2 @ #p 1 0 07262704 -turn_of_events n 1 1 @ 1 0 07423365 -turn_of_expression n 1 2 @ ~ 1 0 07088645 -turn_of_phrase n 1 2 @ ~ 1 0 07088645 -turn_of_the_century n 1 1 @ 1 1 15261169 -turn_signal n 1 2 @ #p 1 0 07262704 -turnabout n 2 2 @ ~ 2 0 05789808 00346693 -turnaround n 5 3 @ ~ #p 5 0 15137295 05789808 04499660 01144555 00346693 -turnaround_time n 1 1 @ 1 0 15137295 -turnbuckle n 1 1 @ 1 0 04499810 -turncoat n 1 1 @ 1 0 10007109 -turncock n 2 1 @ 2 0 10733225 04327682 -turndown n 1 2 @ + 1 0 00205349 -turner n 8 4 @ ~ #m + 8 0 11353195 11353078 11352883 11352701 10733574 10733487 10733350 04500060 -turner's_syndrome n 1 1 @ 1 0 14565927 -turnery n 2 2 @ + 2 0 04500390 04500294 -turnicidae n 1 3 @ #m %m 1 0 02019566 -turning n 6 3 @ ~ + 6 2 00350030 00195415 09464098 07351612 04500504 00926179 -turning_away n 1 2 @ ~ 1 0 00203753 -turning_point n 2 2 @ ~ 2 1 07417851 03109486 -turnip n 2 5 @ ~ #m #p %p 2 0 11877646 07735803 -turnip-rooted_celery n 1 2 @ %p 1 0 12933616 -turnip-rooted_parsley n 1 1 @ 1 0 12942729 -turnip_bed n 1 1 @ 1 0 04500613 -turnip_cabbage n 2 4 @ #m #p %p 2 0 11877860 07733567 -turnip_greens n 1 2 @ #p 1 0 07736256 -turnip_plant n 1 3 @ ~ %p 1 0 11877473 -turnix n 1 3 @ #m %m 1 0 02019762 -turnix_sylvatica n 1 1 @ 1 0 02020219 -turnkey n 1 1 @ 1 0 10149867 -turnoff n 2 3 @ + ; 2 0 05828263 04500704 -turnout n 7 5 @ ~ #p + ; 7 0 07987216 04500866 04216106 03860882 03859958 01233917 00534480 -turnover n 4 3 @ ~ + 4 1 13826221 07624466 05112308 00348312 -turnover_rate n 1 1 @ 1 0 13826221 -turnpike n 2 1 @ 2 1 04501127 04501018 -turnround n 1 1 @ 1 0 01144555 -turnspit n 1 1 @ 1 0 04501281 -turnstile n 1 1 @ 1 0 04501370 -turnstone n 1 3 @ ~ #m 1 0 02025043 -turntable n 3 2 @ #p 3 1 04501550 04501837 04501713 -turnup n 1 5 @ ~ #p %p + 1 0 03145843 -turnverein n 1 2 @ %m 1 0 08230679 -turp n 1 1 @ 1 0 00694088 -turpentine n 2 4 @ ~ #s %s 2 0 14897369 14893652 -turpentine_camphor_weed n 1 1 @ 1 0 12871696 -turpentine_weed n 1 2 @ #m 1 0 11974557 -turpin n 1 1 @ 1 0 11353412 -turpitude n 1 1 @ 1 0 00746866 -turps n 1 2 @ %s 1 0 14893652 -turquoise n 2 1 @ 2 0 15082198 04969798 -turreae n 1 2 @ #m 1 0 12700996 -turret n 2 2 @ #p 2 0 04501947 03469175 -turret_clock n 1 1 @ 1 0 04502059 -turritis n 1 3 @ #m %m 1 0 11899432 -turritis_glabra n 1 2 @ #m 1 0 11872658 -tursiops n 1 3 @ #m %m 1 0 02069569 -tursiops_gilli n 1 1 @ 1 0 02070174 -tursiops_truncatus n 1 1 @ 1 0 02069974 -turtle n 2 3 @ ~ %p 2 0 04502197 01662784 -turtle_bean n 1 1 @ 1 0 07727458 -turtle_soup n 1 1 @ 1 0 07587206 -turtledove n 2 3 @ ~ #m 2 0 01813948 01813385 -turtlehead n 1 2 @ #m 1 0 12881105 -turtleneck n 1 2 @ %p 1 0 04502197 -turtleneck_collar n 1 2 @ #p 1 0 04502364 -turtler n 1 2 @ + 1 0 10733705 -tuscaloosa n 1 2 @ #p 1 0 09054797 -tuscan n 2 2 @ #m 2 0 09717696 06964788 -tuscan_order n 1 1 @ 1 0 04699637 -tuscany n 1 5 @ #p %m %p + 1 0 08811982 -tuscarora n 2 1 @ 2 0 09670909 06916701 -tush n 1 2 @ #p 1 0 05559256 -tushery n 1 1 @ 1 0 06387204 -tusk n 2 5 @ #s #p %s + 2 0 14757547 01465713 -tusk_shell n 1 1 @ 1 0 01941340 -tuskegee n 1 2 @ #p 1 0 09054915 -tusker n 1 2 @ %p 1 0 01871265 -tussah n 1 2 @ #m 1 0 02304797 -tussaud n 1 1 @ 1 0 11353510 -tusseh n 1 2 @ #m 1 0 02304797 -tusser n 1 2 @ #m 1 0 02304797 -tussilago n 1 3 @ #m %m 1 0 12029326 -tussilago_alpina n 1 2 @ #m 1 0 11982939 -tussilago_farfara n 1 2 @ #m 1 0 12029635 -tussle n 1 2 @ + 1 0 01172441 -tussock n 1 2 @ ~ 1 0 07960769 -tussock_bellflower n 1 1 @ 1 0 12039317 -tussock_caterpillar n 1 2 @ #m 1 0 02285801 -tussock_moth n 1 3 @ ~ #m 1 0 02285548 -tussore n 1 2 @ #m 1 0 02304797 -tussur n 1 2 @ #m 1 0 02304797 -tutankhamen n 1 1 @ 1 0 11353847 -tutee n 1 1 @ 1 0 10733820 -tutelage n 2 3 @ ~ + 2 0 00889294 00829378 -tutelo n 2 1 @ 2 0 09671089 06913121 -tutor n 1 4 @ ~ + ; 1 1 09931418 -tutorial n 1 2 @ + 1 1 07148022 -tutorship n 1 2 @ + 1 0 00889294 -tutsan n 1 1 @ 1 0 12368028 -tutsi n 1 2 @ #m 1 0 09693809 -tutti-frutti n 1 1 @ 1 0 07615569 -tutu n 2 1 @ 2 0 11354001 02780815 -tuvalu n 2 3 @ #p %p 2 0 08840374 08840200 -tuvalu_dollar n 1 1 @ 1 0 13674257 -tux n 1 1 @ 1 0 03201776 -tuxedo n 1 1 @ 1 0 03201776 -tuxtla_gutierrez n 1 2 @ #p 1 0 08746363 -tv n 2 6 @ ~ #p %p ; - 2 2 06277280 04405907 -tv-antenna n 1 2 @ ~ 1 0 04404817 -tv_announcer n 1 1 @ 1 0 10733891 -tv_audience n 1 1 @ 1 1 08222750 -tv_camera n 1 3 @ ~ %p 1 0 04404997 -tv_channel n 1 1 @ 1 0 03006398 -tv_dinner n 1 1 @ 1 0 07576311 -tv_monitor n 1 1 @ 1 0 04405762 -tv_newsman n 1 2 @ ~ 1 0 10698368 -tv_program n 1 2 @ ~ 1 0 06620579 -tv_reporter n 1 2 @ ~ 1 0 10698368 -tv_room n 1 1 @ 1 1 04406239 -tv_set n 1 4 @ #p %p ; 1 0 04405907 -tv_show n 1 2 @ ~ 1 0 06620579 -tv_star n 1 1 @ 1 0 10698550 -tv_station n 1 4 @ ~ #p %p 1 0 04406350 -twaddle n 1 3 @ + ; 1 0 06611147 -twaddler n 1 2 @ + 1 0 10733999 -twain n 1 3 @ ~ %p 1 0 13743605 -twang n 2 2 @ + 2 0 07398873 04989512 -twat n 2 1 @ 2 0 10157744 05521514 -twayblade n 2 2 @ #m 2 0 12071744 12070583 -tweak n 1 2 @ + 1 0 00357275 -tweed n 2 5 @ ~ %s + ; 2 1 04502502 03357081 -tweediness n 2 2 @ + 2 0 04948722 04817020 -tweedledee_and_tweedledum n 1 1 @ 1 0 07988716 -tweedledum_and_tweedledee n 1 1 @ 1 0 07988716 -tweet n 1 2 @ + 1 0 07399027 -tweeter n 1 2 @ + 1 0 04502670 -tweezer n 1 3 @ ~ + 1 0 03941684 -twelfth n 2 1 @ 2 0 13848052 13738459 -twelfth_cranial_nerve n 1 1 @ 1 0 05480607 -twelfth_day n 1 2 @ #p 1 0 15194506 -twelfth_night n 1 2 @ #p 1 0 15194940 -twelfth_part n 1 1 @ 1 0 13738459 -twelfthtide n 1 1 @ 1 0 15194860 -twelve n 1 2 @ ~ 1 1 13746785 -twelve-tone_music n 1 1 @ 1 0 07057539 -twelve-tone_system n 1 1 @ 1 0 07057539 -twelve_noon n 1 2 @ #p 1 0 15165490 -twelve_tribes_of_israel n 1 2 @ ~ 1 0 08372847 -twelvemonth n 1 3 @ ~ #p 1 0 15203791 -twenties n 2 2 @ #p 2 2 15148584 15148867 -twentieth n 1 1 @ 1 1 13848884 -twentieth_century n 1 1 @ 1 0 15206004 -twenty n 2 1 @ 2 1 13748128 13395296 -twenty-eight n 1 1 @ 1 1 13749146 -twenty-five n 1 1 @ 1 0 13748763 -twenty-five_percent n 1 1 @ 1 0 13737480 -twenty-four n 1 1 @ 1 0 13748622 -twenty-four_hour_period n 1 3 @ ~ %p 1 0 15155220 -twenty-four_hours n 1 3 @ ~ %p 1 1 15155220 -twenty-nine n 1 1 @ 1 0 13749278 -twenty-one n 2 1 @ 2 1 13748246 00490350 -twenty-seven n 1 1 @ 1 0 13749017 -twenty-six n 1 1 @ 1 0 13748890 -twenty-three n 1 1 @ 1 1 13748493 -twenty-twenty n 1 1 @ 1 0 05655810 -twenty-two n 2 2 @ ~ 2 1 13748367 04502851 -twenty-two_pistol n 1 1 @ 1 0 04502989 -twenty-two_rifle n 1 1 @ 1 1 04503073 -twenty_dollar_bill n 1 1 @ 1 0 13395296 -twenty_percent n 1 1 @ 1 0 13737830 -twerp n 1 1 @ 1 0 10734129 -twice-baked_bread n 1 1 @ 1 0 07689842 -twice-pinnate n 1 1 @ 1 0 13157346 -twiddle n 1 2 @ + 1 0 00340989 -twiddler n 1 2 @ + 1 0 10734235 -twig n 1 3 @ ~ + 1 1 13163991 -twig_blight n 1 1 @ 1 0 14219290 -twilight n 3 3 @ ~ #p 3 2 15169421 11515935 14423740 -twilight_of_the_gods n 1 1 @ 1 0 06372925 -twilight_sleep n 1 1 @ 1 0 14030084 -twilight_vision n 1 1 @ 1 0 05656997 -twilight_zone n 2 1 @ 2 0 09464221 04825815 -twill n 2 2 @ + 2 0 04503269 04503155 -twill_weave n 1 1 @ 1 0 04503269 -twin n 4 5 @ ~ #p + ; 4 1 10734394 09752519 09464335 03117939 -twin-aisle_airplane n 1 1 @ 1 0 04583620 -twin-prop n 1 1 @ 1 0 03227505 -twin-propeller-plane n 1 1 @ 1 0 03227505 -twin_bed n 1 1 @ 1 0 04503413 -twin_bill n 1 2 @ %p 1 0 00460951 -twin_cities n 1 3 @ #p %m 1 0 09103648 -twin_falls n 2 2 @ #p 2 0 09464335 09082395 -twin_towers n 1 3 @ #p ; 1 0 04604009 -twinberry n 2 2 @ #m 2 0 12675716 12668517 -twine n 1 3 @ ~ + 1 0 04337974 -twiner n 1 2 @ + 1 0 10734568 -twinflower n 1 3 @ ~ #m 1 0 12673328 -twinge n 2 3 @ ~ + 2 1 07494972 05725269 -twinjet n 1 1 @ 1 0 04503499 -twinkie n 1 2 @ ; 1 0 07632679 -twinkle n 2 2 @ + 2 0 07411645 04953380 -twinkler n 1 2 @ + 1 0 09464486 -twinkling n 1 1 @ 1 1 15247110 -twins n 2 2 @ ; 2 0 14883517 08686495 -twirl n 2 3 @ ~ + 2 0 13877918 00343249 -twirler n 2 4 @ ~ + ; 2 1 09843824 10435988 -twirp n 1 1 @ 1 0 10734129 -twist n 13 3 @ ~ + 13 4 07423365 07173959 00171249 00343249 14299070 13877918 13869327 07432973 07351909 05259512 00534631 00345641 00345454 -twist_bit n 1 1 @ 1 0 04503593 -twist_drill n 1 1 @ 1 0 04503593 -twist_wood n 1 2 @ #m 1 0 12680652 -twister n 2 3 @ ~ + 2 0 11519450 07639577 -twisting n 2 3 @ ~ + 2 1 00751529 00343249 -twistwood n 1 2 @ #m 1 0 12680652 -twit n 2 2 @ + 2 0 10734129 01222859 -twitch n 1 3 @ ~ + 1 0 14361664 -twitching n 1 3 @ ~ + 1 0 14361664 -twitter n 1 2 @ + 1 0 07379577 -twitterer n 1 2 @ + 1 0 02511730 -two n 2 2 @ ~ 2 1 13743269 03182795 -two-bagger n 1 2 @ ~ 1 0 00132756 -two-base_hit n 1 2 @ ~ 1 0 00132756 -two-baser n 1 2 @ ~ 1 1 00132756 -two-by-four n 1 1 @ 1 1 04503705 -two-dimensional_figure n 1 2 @ ~ 1 0 13863186 -two-dimensionality n 1 2 @ + 1 0 05063349 -two-eyed_violet n 1 1 @ 1 0 12389130 -two-grain_spelt n 1 1 @ 1 0 12143215 -two-handed_backhand n 1 1 @ 1 0 00568166 -two-handed_saw n 1 2 @ ~ 1 0 04503836 -two-hitter n 1 1 @ 1 0 00475273 -two-man_saw n 1 2 @ ~ 1 0 04503836 -two-man_tent n 1 1 @ 1 0 04504038 -two-note_call n 1 1 @ 1 0 06797047 -two-piece n 2 1 @ 2 0 04504141 02837789 -two-piece_suit n 1 1 @ 1 0 04504141 -two-seater n 1 2 @ %p 1 0 04097373 -two-spotted_ladybug n 1 2 @ #m 1 0 02165877 -two-step n 1 2 @ + 1 0 00536120 -two-thirds n 1 1 @ 1 1 13737378 -two-tier_bid n 1 1 @ 1 0 00790498 -two-timer n 2 2 @ ~ 2 0 10734741 10027590 -two-toed_anteater n 1 2 @ #m 1 0 02460817 -two-toed_sloth n 2 2 @ #m 2 0 02458135 02457945 -two-way_street n 1 1 @ 1 0 04504297 -two-wing_flying_fish n 1 1 @ 1 0 02550655 -two-winged_insects n 1 4 @ ~ #m %p 1 0 02188699 -two-year-old_horse n 1 1 @ 1 0 02385348 -two_dollar_bill n 1 1 @ 1 0 13395799 -two_dozen n 1 1 @ 1 0 13748622 -two_iron n 1 1 @ 1 0 03762332 -two_kettle n 1 1 @ 1 0 09671202 -two_weeks n 1 1 @ 1 1 15170331 -two_year_old n 1 1 @ 1 0 02385348 -twofer n 2 1 @ 2 0 07167326 06518565 -twopence n 1 1 @ 1 0 13390963 -twosome n 2 3 @ ~ %p 2 0 13743605 07985628 -twyla_tharp n 1 1 @ 1 0 11337629 -tx n 1 4 @ #m #p %p 1 0 09141526 -tyan_shan n 1 3 @ #p %p 1 0 09458587 -tyche n 1 2 @ ; 1 0 09573262 -tycho_brahe n 1 1 @ 1 0 10861926 -tycoon n 1 2 @ ~ 1 0 09840217 -tying n 1 3 @ ~ + 1 0 00149084 -tying_up n 1 1 @ 1 0 00052146 -tyiyn n 1 1 @ 1 0 13702015 -tyke n 3 3 @ ~ %p 3 0 10734891 10410815 09917593 -tylenchidae n 1 3 @ #m %m 1 0 01932358 -tylenchus n 1 3 @ #m %m 1 0 01932495 -tylenchus_tritici n 1 2 @ #m 1 0 01932643 -tylenol n 1 2 @ ; 1 0 02674482 -tyler n 2 2 @ #p 2 0 11354145 09146584 -tympan n 1 4 @ ~ %p + 1 0 03249569 -tympani n 1 2 @ + 1 0 03612965 -tympanic_bone n 1 2 @ #p 1 0 05284020 -tympanic_cavity n 1 3 @ #p %p 1 0 05324888 -tympanic_membrane n 1 4 @ ~ #p %p 1 0 05318831 -tympanic_vein n 1 1 @ 1 0 05384560 -tympanist n 1 2 @ + 1 0 10734963 -tympanites n 1 1 @ 1 0 14063877 -tympanitis n 1 1 @ 1 0 14357607 -tympanoplasty n 1 1 @ 1 0 00694420 -tympanuchus n 1 3 @ #m %m 1 0 01798352 -tympanuchus_cupido n 1 1 @ 1 0 01798706 -tympanuchus_cupido_cupido n 1 1 @ 1 0 01798979 -tympanuchus_pallidicinctus n 1 1 @ 1 0 01798839 -tympanum n 3 5 @ ~ #p %p + 3 0 05324888 05318831 03612965 -tyndale n 1 1 @ 1 0 11354333 -tyndall n 1 1 @ 1 0 11354743 -tyndall_effect n 1 1 @ 1 0 11528427 -tyne n 1 2 @ #p 1 0 09464805 -tyne_river n 1 2 @ #p 1 0 09464805 -type n 6 5 ! @ ~ + ; 6 2 05840188 09909060 08111419 06825120 06795967 04504486 -type_a n 1 1 @ 1 0 05400860 -type_ab n 1 1 @ 1 0 05401096 -type_b n 1 1 @ 1 0 05400978 -type_family n 1 2 @ %m 1 0 06825273 -type_genus n 1 2 @ ; 1 0 08109940 -type_i_allergic_reaction n 1 1 @ 1 0 14532250 -type_i_diabetes n 1 2 @ %p 1 0 14118423 -type_ii_diabetes n 1 1 @ 1 0 14118936 -type_iv_allergic_reaction n 1 1 @ 1 0 14532659 -type_metal n 1 2 @ ~ 1 0 14719458 -type_o n 1 1 @ 1 0 05401229 -type_of_architecture n 1 2 @ ~ 1 0 05841351 -type_slug n 1 1 @ 1 0 04504935 -type_species n 1 2 @ ; 1 0 08111599 -type_specimen n 1 1 @ 1 0 05938170 -typeface n 1 3 @ ~ #m 1 0 06825399 -typescript n 1 1 @ 1 0 06389109 -typesetter n 1 2 @ + 1 0 09949946 -typesetter's_case n 1 2 @ ; 1 0 02975589 -typesetting_machine n 1 3 @ ~ %p 1 0 04504770 -typewriter n 1 4 @ ~ %p + 1 1 04505036 -typewriter_carriage n 1 2 @ #p 1 0 04505345 -typewriter_font n 1 1 @ 1 0 06825996 -typewriter_keyboard n 1 4 @ ~ #p %p 1 0 04505470 -typewriter_paper n 1 2 @ ~ 1 0 15082382 -typewriter_ribbon n 1 2 @ #p 1 0 04088058 -typewriting n 1 3 @ ~ + 1 1 06402565 -typha n 1 3 @ #m %m 1 0 12155459 -typha_angustifolia n 1 1 @ 1 0 12156117 -typha_latifolia n 1 1 @ 1 0 12155773 -typhaceae n 1 3 @ #m %m 1 0 12155259 -typhlopidae n 1 2 @ #m 1 0 01740283 -typhoeus n 1 2 @ ; 1 0 09502700 -typhoid n 1 1 @ 1 1 14144416 -typhoid_bacillus n 1 1 @ 1 0 01369484 -typhoid_bacteriophage n 1 1 @ 1 0 01335333 -typhoid_fever n 1 1 @ 1 0 14144416 -typhoid_mary n 1 1 @ 1 0 11151932 -typhon n 1 2 @ ; 1 0 09502906 -typhoon n 1 1 @ 1 0 11521145 -typhus n 1 2 @ ~ 1 1 14141062 -typhus_fever n 1 2 @ ~ 1 1 14141062 -typical_jerboa n 1 2 @ #m 1 0 02352002 -typicality n 1 4 ! @ = + 1 0 14501545 -typification n 2 3 @ ~ + 2 0 05765901 00900581 -typing n 1 3 @ ~ + 1 1 06402565 -typing_paper n 1 2 @ ~ 1 0 15082382 -typing_pool n 1 1 @ 1 0 08481604 -typist n 1 3 @ ~ + 1 0 10735173 -typo n 1 1 @ 1 0 06769670 -typographer n 1 2 @ + 1 0 09949946 -typographical_error n 1 1 @ 1 0 06769670 -typography n 2 2 @ + 2 2 01103000 06677974 -typology n 1 1 @ 1 0 01013971 -tyr n 1 2 @ ; 1 0 09583723 -tyramine n 1 1 @ 1 0 15082524 -tyranni n 1 3 @ #m %m 1 0 01546660 -tyrannicide n 1 1 @ 1 0 01250671 -tyrannid n 1 3 @ ~ #m 1 0 01546921 -tyrannidae n 1 3 @ #m %m 1 0 01547459 -tyrannosaur n 1 2 @ #m 1 0 01713764 -tyrannosaurus n 1 2 @ #m 1 0 01713764 -tyrannosaurus_rex n 1 2 @ #m 1 0 01713764 -tyrannus n 1 3 @ #m %m 1 0 01548143 -tyrannus_domenicensis_domenicensis n 1 1 @ 1 0 01549053 -tyrannus_tyrannus n 1 3 @ ~ #m 1 0 01548301 -tyrannus_vociferans n 1 1 @ 1 0 01548694 -tyranny n 2 3 @ ~ + 2 1 08440630 14443912 -tyrant n 3 3 @ ~ + 3 1 10735298 10735707 10735564 -tyrant_bird n 1 3 @ ~ #m 1 0 01547832 -tyrant_flycatcher n 1 3 @ ~ #m 1 0 01547832 -tyre n 2 3 @ ~ #p 2 0 08958334 04440749 -tyrian_purple n 2 1 @ 2 0 15001753 04970312 -tyro n 1 2 @ ~ 1 0 10363913 -tyrocidin n 1 2 @ #s 1 0 04505706 -tyrocidine n 1 2 @ #s 1 0 04505706 -tyrol n 1 3 @ #p + 1 0 08846135 -tyrolean n 2 1 @ 2 0 09735023 04505888 -tyrolean_alps n 1 2 @ #p 1 0 09464652 -tyrosine n 1 1 @ 1 1 15082766 -tyrosine_kinase_inhibitor n 1 1 @ 1 0 04506005 -tyrosinemia n 1 1 @ 1 0 14169897 -tyrothricin n 1 2 @ %s 1 0 04506125 -tyrr n 1 2 @ ; 1 0 09583723 -tyrrhenian_sea n 1 2 @ #p 1 0 09464962 -tyson n 1 1 @ 1 0 11355082 -tyto n 1 3 @ #m %m 1 0 01625417 -tyto_alba n 1 2 @ #m 1 0 01625562 -tytonidae n 1 3 @ #m %m 1 0 01625275 -tzar n 1 3 @ ~ ; 1 0 09987239 -tzara n 1 1 @ 1 0 11355247 -tzarina n 1 1 @ 1 0 09987573 -tzetze n 1 2 @ #m 1 0 02191273 -tzetze_fly n 1 2 @ #m 1 0 02191273 -u n 3 4 @ ~ #m #s 3 0 15084357 14660443 06833328 -u-boat n 1 3 @ ~ %p 1 0 04347754 -u-drive n 1 1 @ 1 0 13248598 -u-turn n 1 1 @ 1 0 00347087 -u._s._air_force n 1 3 @ #p %p 1 0 08196230 -u._s._army n 1 4 @ #p %p ; 1 0 08394922 -u._s._army_special_forces n 1 3 @ #p %m 1 0 08213424 -u._s._coast_guard n 1 2 @ #p 1 0 08192557 -u._s._code n 1 2 @ ; 1 0 06668147 -u.k. n 1 6 @ ~ #m #p %p - 1 0 08860123 -u.s. n 2 7 @ ~ #m #p %m %p - 2 2 08355791 09044862 -u.s._army_criminal_investigation_laboratory n 1 2 @ #p 1 0 04510090 -u.s._congress n 1 3 @ #m %m 1 0 08161757 -u.s._constitution n 1 3 @ %p ; 1 0 06534132 -u.s._government n 1 2 @ %m 1 1 08355791 -u.s._house n 1 2 @ #m 1 0 08161971 -u.s._house_of_representatives n 1 2 @ #m 1 0 08161971 -u.s._mint n 1 2 @ #p 1 0 04510456 -u.s._national_library_of_medicine n 1 2 @ #p 1 0 03810741 -u.s._senate n 1 2 @ #m 1 0 08161591 -u.s._waters n 1 1 @ 1 0 09465984 -u.s.a. n 1 7 @ ~ #m #p %m %p - 1 0 09044862 -u308 n 1 1 @ 1 0 15106529 -uakari n 1 2 @ #m 1 0 02493224 -ubermensch n 1 1 @ 1 1 10001764 -ubiety n 1 1 @ 1 0 13958353 -ubiquinone n 1 2 @ ; 1 0 15082890 -ubiquitousness n 1 2 @ + 1 0 13958456 -ubiquity n 1 2 @ + 1 0 13958456 -ubykh n 1 1 @ 1 0 06978904 -uca n 1 3 @ #m %m 1 0 01980053 -uda n 1 2 @ ; 1 0 08046759 -udder n 1 2 @ #p 1 0 02370360 -udmurt n 2 1 @ 2 0 09644518 06956794 -udometer n 1 1 @ 1 0 04049585 -ufa n 1 2 @ #p 1 0 09009978 -ufo n 1 1 @ 1 0 05897825 -uganda n 1 5 @ #p %m %p - 1 0 09043052 -ugandan n 1 2 @ #m 1 0 09736945 -ugandan_monetary_unit n 1 2 @ ~ 1 0 13707237 -ugandan_shilling n 1 1 @ 1 0 13707346 -ugaritic n 1 1 @ 1 0 06989769 -ugli n 1 2 @ #p 1 0 07748574 -ugli_fruit n 2 4 @ #m #p %p 2 0 12711182 07748574 -ugliness n 2 4 ! @ ~ + 2 1 04690196 04852750 -ugly_duckling n 1 1 @ 1 0 10735852 -ugo_buoncompagni n 1 1 @ 1 0 11014652 -ugrian n 1 2 @ ~ 1 0 06958615 -ugric n 1 2 @ ~ 1 0 06958615 -uhf n 1 2 @ #p 1 0 05057805 -uhland n 1 1 @ 1 0 11355428 -uighur n 3 2 @ #m 3 0 09736633 06927486 06353089 -uigur n 3 2 @ #m 3 0 09736633 06927486 06353089 -uintathere n 1 2 @ #m 1 0 02372140 -uintatheriidae n 1 3 @ #m %m 1 0 02371647 -uintatherium n 1 3 @ #m %m 1 0 02371801 -uk n 1 6 @ ~ #m #p %p - 1 0 08860123 -ukase n 1 1 @ 1 0 06541301 -uke n 1 2 @ ; 1 0 04506289 -ukraine n 1 6 @ #m #p %m %p + 1 0 09014979 -ukrainian n 1 1 @ 1 1 06944623 -ukranian n 1 2 @ #m 1 0 09737050 -ukranian_monetary_unit n 1 2 @ ~ 1 0 13703022 -ukrayina n 1 5 @ #m #p %m %p 1 0 09014979 -ukulele n 1 2 @ ; 1 0 04506289 -ulaanbaatar n 1 2 @ #p 1 0 08969123 -ulalgia n 1 1 @ 1 0 14333575 -ulama n 1 2 @ %m 1 0 08380017 -ulan_bator n 1 2 @ #p 1 0 08969123 -ulanova n 1 1 @ 1 0 11355537 -ulatrophia n 1 1 @ 1 0 14081297 -ulcer n 1 3 @ ~ + 1 1 14211609 -ulcer_diet n 1 1 @ 1 0 07562017 -ulceration n 2 3 @ ~ + 2 1 14211609 13570783 -ulcerative_colitis n 1 1 @ 1 0 14306802 -ulema n 1 2 @ %m 1 0 08380017 -ulemorrhagia n 1 1 @ 1 0 14371082 -ulex n 1 3 @ #m %m 1 0 12574727 -ulex_europaeus n 1 2 @ #m 1 0 12574866 -ulfila n 1 1 @ 1 0 11355669 -ulfilas n 1 1 @ 1 0 11355669 -ulitis n 1 1 @ 1 0 14357693 -ull n 1 2 @ ; 1 0 09583888 -ullage n 1 1 @ 1 0 13764086 -ullr n 1 2 @ ; 1 0 09583888 -ulmaceae n 1 3 @ #m %m 1 0 12404943 -ulmus n 1 3 @ #m %m 1 0 12405209 -ulmus_alata n 1 2 @ #m 1 0 12406304 -ulmus_americana n 1 2 @ #m 1 0 12406488 -ulmus_campestris_sarniensis n 1 2 @ #m 1 0 12408466 -ulmus_campestris_wheatleyi n 1 2 @ #m 1 0 12408466 -ulmus_carpinifolia n 1 2 @ #m 1 0 12406715 -ulmus_crassifolia n 1 2 @ #m 1 0 12406902 -ulmus_glabra n 1 2 @ #m 1 0 12407079 -ulmus_hollandica n 1 2 @ #m 1 0 12407222 -ulmus_hollandica_vegetata n 1 2 @ #m 1 0 12407396 -ulmus_laevis n 1 2 @ #m 1 0 12407545 -ulmus_parvifolia n 1 2 @ #m 1 0 12407715 -ulmus_procera n 1 2 @ #m 1 0 12407890 -ulmus_pumila n 1 2 @ #m 1 0 12408077 -ulmus_rubra n 1 2 @ #m 1 0 12408280 -ulmus_sarniensis n 1 2 @ #m 1 0 12408466 -ulmus_serotina n 1 2 @ #m 1 0 12408717 -ulmus_thomasii n 1 2 @ #m 1 0 12408873 -ulna n 1 4 @ #p %p + 1 0 05593476 -ulnar_artery n 1 1 @ 1 0 05355706 -ulnar_nerve n 1 3 @ ~ #p 1 0 05568767 -ulnar_vein n 1 2 @ #p 1 0 05384691 -ulrich_zwingli n 1 1 @ 1 0 11408243 -ulster n 2 1 @ 2 0 08888181 04506402 -ulster_defence_association n 1 2 @ ; 1 0 08046759 -ulteriority n 1 1 @ 1 0 05215257 -ultima n 1 1 @ 1 0 06305029 -ultima_thule n 1 1 @ 1 0 08954269 -ultimacy n 1 3 @ ~ = 1 0 13942104 -ultimate n 1 1 @ 1 0 04728999 -ultimate_frisbee n 1 1 @ 1 0 00477986 -ultimateness n 1 4 @ ~ = + 1 0 13942104 -ultimatum n 1 1 @ 1 1 07191696 -ultracef n 1 2 @ ; 1 0 02989178 -ultracentrifugation n 1 2 @ + 1 1 13570923 -ultracentrifuge n 1 1 @ 1 1 04506506 -ultraconservative n 1 3 @ ~ + 1 0 10508475 -ultrahigh_frequency n 1 2 @ #p 1 0 05057805 -ultramarine n 2 3 @ ~ + 2 0 15083146 04974859 -ultramarine_blue n 1 2 @ ~ 1 0 15083146 -ultramicroscope n 1 2 @ + 1 0 04506688 -ultramontane n 1 1 @ 1 0 11356018 -ultramontanism n 1 2 @ ; 1 0 05987650 -ultranationalism n 1 2 @ + 1 0 04878646 -ultrasonography n 1 2 @ ~ 1 0 00901789 -ultrasound n 2 3 @ ~ + 2 0 11481209 00901789 -ultrasuede n 1 2 @ ; 1 0 04506895 -ultraviolet n 1 3 @ ~ + 1 1 11521940 -ultraviolet_illumination n 1 2 @ ~ 1 1 11521940 -ultraviolet_lamp n 1 2 @ ~ 1 0 04506994 -ultraviolet_light n 1 2 @ ~ 1 1 11521940 -ultraviolet_radiation n 1 2 @ ~ 1 1 11521940 -ultraviolet_source n 1 2 @ ~ 1 0 04506994 -ultraviolet_spectrum n 1 2 @ #p 1 1 11522325 -ulugh_muz_tagh n 1 2 @ #p 1 0 09465135 -ulugh_muztagh n 1 2 @ #p 1 0 09465135 -ululation n 1 2 @ + 1 0 07126734 -ulva n 1 3 @ #m %m 1 0 01408547 -ulvaceae n 1 3 @ #m %m 1 0 01408383 -ulvales n 1 3 @ #m %m 1 0 01408253 -ulvophyceae n 1 2 @ #m 1 0 01408088 -ulysses n 1 1 @ 1 0 09593044 -ulysses_grant n 1 1 @ 1 0 11011123 -ulysses_s._grant n 1 1 @ 1 0 11011123 -ulysses_simpson_grant n 1 1 @ 1 0 11011123 -uma n 2 3 @ #m %m 2 0 09529364 01678887 -uma_notata n 1 2 @ #m 1 0 01679005 -umar_al-mukhtar_forces n 1 2 @ ; 1 0 08021785 -umayyad n 1 1 @ 1 0 08159331 -umbel n 1 2 @ + 1 0 13131028 -umbellales n 1 3 @ #m %m 1 0 12213197 -umbellifer n 1 3 @ ~ #m 1 0 12930778 -umbelliferae n 1 4 @ ~ #m %m 1 0 12930044 -umbelliferous_plant n 1 3 @ ~ #m 1 0 12930778 -umbellularia n 1 3 @ #m %m 1 0 11707668 -umbellularia_californica n 1 2 @ #m 1 0 11707827 -umber n 2 3 @ ~ + 2 0 15083429 04972451 -umbilical n 1 3 @ #p %p 1 0 05520479 -umbilical_cord n 1 3 @ #p %p 1 0 05520479 -umbilical_hernia n 1 1 @ 1 0 14297489 -umbilical_vein n 1 2 @ #p 1 0 05384817 -umbilical_vesicle n 1 1 @ 1 0 01465243 -umbilicus n 1 3 @ #p + 1 0 05556595 -umbo n 1 2 @ #p 1 0 05324553 -umbra n 1 1 @ 1 0 13985098 -umbrage n 1 2 @ + 1 0 07517550 -umbrella n 3 4 @ ~ %p ; 3 1 04507155 00829918 00383071 -umbrella_arum n 1 2 @ #m 1 0 11783162 -umbrella_bird n 1 2 @ #m 1 0 01552333 -umbrella_fern n 1 2 @ #m 1 0 13171210 -umbrella_magnolia n 1 1 @ 1 0 11710393 -umbrella_pine n 1 2 @ %p 1 0 11611758 -umbrella_plant n 3 2 @ #m 3 0 12797368 12602434 12150722 -umbrella_sedge n 1 2 @ #m 1 0 12150722 -umbrella_tent n 1 1 @ 1 1 04507326 -umbrella_tree n 2 2 @ #m 2 0 11800565 11710393 -umbrellawort n 1 2 @ #m 1 0 11839460 -umbria n 1 2 @ #p 1 0 08812732 -umbrian n 1 1 @ 1 0 06962244 -umbrina n 1 3 @ #m %m 1 0 02596888 -umbrina_roncador n 1 2 @ #m 1 0 02597004 -umbundu n 1 1 @ 1 0 06995439 -umlaut n 1 1 @ 1 0 06823760 -umma n 1 2 @ ; 1 0 08224684 -umma_tameer-e-nau n 1 2 @ ; 1 0 08048300 -ummah n 1 2 @ ; 1 0 08224684 -ump n 1 1 @ 1 0 10735984 -umpirage n 2 2 @ + 2 0 07151285 01191755 -umpire n 2 3 @ ~ + 2 0 10735984 09803429 -un n 1 2 @ %m 1 1 08295580 -un_agency n 1 3 @ ~ #m 1 0 08299493 -unabridged n 1 2 @ ~ 1 0 06420219 -unabridged_dictionary n 1 2 @ ~ 1 0 06420219 -unacceptability n 1 4 ! @ ~ + 1 0 04793925 -unacceptableness n 1 3 @ ~ + 1 0 04793925 -unadaptability n 1 4 ! @ ~ + 1 0 04660080 -unaffectedness n 1 3 ! @ + 1 0 04786326 -unai n 2 2 @ #m 2 0 02458135 02457945 -unalterability n 2 4 ! @ ~ + 2 0 04742084 04740655 -unambiguity n 1 3 ! @ + 1 1 04821802 -unanimity n 1 2 @ + 1 0 13972387 -unappetisingness n 1 3 @ ~ + 1 0 04996823 -unappetizingness n 1 4 ! @ ~ + 1 0 04996823 -unapproachability n 1 3 ! @ + 1 0 04657244 -unary_operation n 1 1 @ 1 0 13517080 -unassertiveness n 1 2 @ + 1 0 07523649 -unassumingness n 1 2 @ + 1 0 04786595 -unattainableness n 1 2 @ + 1 0 14483508 -unattractiveness n 1 4 ! @ ~ + 1 0 04691476 -unau n 2 2 @ #m 2 0 02458135 02457945 -unauthorized_absence n 1 2 @ ; 1 0 00055793 -unavailability n 1 3 ! @ + 1 0 04722910 -unavoidability n 1 1 @ 1 0 04753929 -unavoidable_casualty n 1 1 @ 1 0 07315350 -unawareness n 1 3 @ ~ + 1 1 05679611 -unbalance n 2 2 @ + 2 1 14004149 14397714 -unbecomingness n 1 3 ! @ + 1 0 04902797 -unbelief n 1 3 ! @ ~ 1 0 05979909 -unbeliever n 1 2 @ ~ 1 0 10015897 -unbounded_interval n 1 1 @ 1 0 06016600 -unboundedness n 1 2 @ + 1 0 05209324 -unbreakableness n 1 3 ! @ + 1 0 04939987 -unceremoniousness n 1 3 ! @ + 1 0 04912610 -uncertainness n 1 3 @ ~ + 1 0 04756887 -uncertainty n 2 3 ! @ ~ 2 2 04756887 05698247 -uncertainty_principle n 1 2 @ ; 1 0 06108079 -unchangeability n 1 3 @ ~ + 1 0 04737934 -unchangeableness n 1 3 @ ~ + 1 0 04737934 -unchangingness n 1 3 @ ~ + 1 0 04737934 -uncheerfulness n 2 5 ! @ ~ #p + 2 0 07537068 04631298 -uncial n 1 2 @ + 1 0 06353225 -unciform_bone n 1 1 @ 1 0 05273408 -uncle n 2 4 ! @ ~ + 2 2 10736091 10736259 -uncle_joe n 1 1 @ 1 0 11318462 -uncle_remus n 1 1 @ 1 0 09604014 -uncle_sam n 1 1 @ 1 1 09604345 -uncle_tom n 2 2 @ ; 2 0 09638245 09604227 -uncleanliness n 1 4 ! @ ~ + 1 0 04896724 -uncleanness n 1 3 @ ~ + 1 0 14497763 -unclearness n 1 4 ! @ ~ + 1 0 04823866 -uncloudedness n 1 4 @ ~ = + 1 0 04701460 -uncomfortableness n 2 3 @ ~ + 2 0 14446652 07507329 -uncommonness n 2 4 ! @ ~ + 2 0 04797130 04796946 -uncommunicativeness n 1 4 ! @ ~ + 1 0 04651784 -uncompahgre_peak n 1 2 @ #p 1 0 09465290 -unconcern n 2 3 ! @ ~ 2 1 04673470 07505538 -unconditioned_reflex n 1 2 @ ~ 1 0 00863513 -unconfessed n 1 2 @ + 1 1 08477164 -uncongeniality n 1 3 ! @ + 1 0 04658686 -unconnectedness n 1 4 ! @ ~ + 1 0 13794226 -unconscientiousness n 2 3 ! @ + 2 0 04849074 04673341 -unconscious n 1 2 @ %p 1 1 05613274 -unconscious_mind n 1 2 @ %p 1 0 05613274 -unconscious_process n 1 2 @ ~ 1 0 05701738 -unconsciousness n 1 4 ! @ ~ + 1 0 05678932 -unconstraint n 1 1 @ 1 0 04885398 -unconventionality n 2 3 ! @ + 2 0 05634910 04800885 -uncouthness n 1 2 @ + 1 0 04817788 -uncovering n 2 2 @ ~ 2 0 00394803 00043195 -uncreativeness n 1 4 ! @ ~ + 1 0 05649385 -unction n 4 4 @ ~ %s ; 4 0 06696308 04868505 03845550 01041674 -unctuousness n 1 2 @ + 1 0 04868505 -uncus n 1 2 @ ; 1 0 13869676 -undecagon n 1 1 @ 1 0 13882804 -undecylenic_acid n 1 1 @ 1 0 15083713 -undependability n 1 4 ! @ ~ + 1 0 04671394 -undependableness n 1 4 ! @ ~ + 1 0 04671394 -underachievement n 1 3 ! @ + 1 1 00047550 -underachiever n 1 2 @ + 1 1 10736394 -underbelly n 3 1 @ 3 0 08511473 05557723 05042720 -underbodice n 1 1 @ 1 0 02944146 -underbody n 1 1 @ 1 0 05557723 -underboss n 1 1 @ 1 0 10273438 -underbrush n 1 3 @ ~ #m 1 1 08439476 -undercarriage n 1 2 @ ~ 1 0 04507453 -undercharge n 2 2 @ + 2 0 13307685 04507609 -underclass n 1 1 @ 1 0 08181540 -underclassman n 1 2 @ ~ 1 0 10274815 -underclothes n 1 2 @ ~ 1 0 04508949 -underclothing n 1 2 @ ~ 1 0 04508949 -undercoat n 3 3 @ ~ + 3 0 04507689 03360845 01899238 -undercover_agent n 1 3 @ ~ ; 1 0 10641755 -undercover_operation n 1 2 @ ~ 1 0 00409943 -undercover_work n 1 2 @ ~ 1 0 00654234 -undercurrent n 2 3 @ ~ #p 2 1 05922809 07404798 -undercut n 5 4 @ ~ + ; 5 0 15083974 07659793 04507891 00565809 00387526 -underdevelopment n 2 3 @ + ; 2 0 14423268 13571041 -underdog n 1 1 @ 1 0 10273572 -underdrawers n 1 2 @ ; 1 0 03234164 -underestimate n 1 2 @ + 1 0 05804491 -underestimation n 1 2 @ + 1 0 05804491 -underevaluation n 1 1 @ 1 0 05747937 -underexposure n 2 2 @ + 2 0 00907642 00157877 -underfelt n 1 2 @ ; 1 0 04508062 -underframe n 1 3 @ ~ #p 1 0 04226537 -underfur n 1 1 @ 1 0 01899238 -undergarment n 1 3 ! @ ~ 1 0 04508163 -undergrad n 1 2 @ ~ 1 0 10736602 -undergraduate n 1 2 @ ~ 1 1 10736602 -underground n 2 3 @ ~ + 2 0 08360672 03757138 -underground_press n 1 1 @ 1 0 06271620 -underground_railroad n 1 1 @ 1 0 00060817 -underground_railway n 1 1 @ 1 0 00060817 -undergrowth n 1 3 @ ~ #m 1 0 08439476 -underlay n 1 2 @ ~ 1 0 02967626 -underlayment n 1 3 @ ~ + 1 0 02967626 -underline n 1 2 @ + 1 0 06801418 -underling n 1 2 @ ~ 1 1 10669991 -underlip n 1 1 @ 1 0 05306122 -undernourishment n 1 2 @ + 1 0 14040490 -underpants n 1 4 @ ~ #p ; 1 0 04508489 -underpart n 1 2 @ ~ 1 0 01899367 -underpass n 1 1 @ 1 0 04508804 -underpayment n 2 2 @ + 2 0 13279162 01122488 -underperformer n 2 2 @ + 2 0 10736394 08076578 -underproduction n 1 2 @ + 1 0 00914509 -underrating n 1 2 @ + 1 0 05804491 -underreckoning n 1 1 @ 1 0 05804491 -underscore n 1 2 @ + 1 0 06801418 -underseal n 1 1 @ 1 0 04507689 -undersecretary n 1 1 @ 1 1 10736788 -underseller n 1 2 @ + 1 0 10736926 -undershirt n 1 1 @ 1 1 04223299 -undershrub n 1 1 @ 1 0 13118330 -underside n 1 2 @ ~ 1 1 08511241 -underskirt n 1 2 @ ~ 1 0 03920737 -undersoil n 1 1 @ 1 0 14695838 -understandability n 1 3 @ ~ + 1 0 04819026 -understanding n 4 4 @ ~ %p + 4 4 05805475 06770275 06199142 05651680 -understatement n 1 4 ! @ ~ + 1 1 06759063 -understructure n 1 3 @ ~ #p 1 0 03387016 -understudy n 1 2 @ + 1 0 10737103 -undersurface n 1 2 @ ~ 1 0 08511241 -undertaker n 1 2 @ ~ 1 1 10331841 -undertaking n 2 3 @ ~ + 2 1 00795720 01120259 -undertide n 1 3 @ ~ #p 1 0 07404798 -undertone n 3 1 @ 3 0 07083136 05922809 04959567 -undertow n 2 1 @ 2 0 07499449 07404261 -undervaluation n 1 2 @ + 1 0 05736593 -underwater_archaeology n 1 1 @ 1 0 06145158 -underwater_archeology n 1 1 @ 1 0 06145158 -underwater_diver n 1 2 @ ~ 1 0 10019552 -underwear n 1 2 @ ~ 1 1 04508949 -underwing n 1 3 @ ~ #m 1 0 02295870 -underwood n 1 3 @ ~ #m 1 0 08439476 -underworld n 2 4 @ %m %p ; 2 1 08245059 05629381 -underwriter n 3 3 @ ~ + 3 0 10215953 10209731 08070465 -undescended_testicle n 1 2 @ #p 1 0 05525391 -undescended_testis n 1 2 @ #p 1 0 05525391 -undesirability n 1 3 ! @ + 1 0 05142008 -undesirable n 1 2 @ + 1 0 10737264 -undies n 1 2 @ ; 1 0 04509171 -undine n 1 1 @ 1 0 09541346 -undiscipline n 1 2 @ ~ 1 0 04884450 -undivided_interest n 1 1 @ 1 0 13288337 -undivided_right n 1 1 @ 1 0 13288337 -undoer n 3 3 @ ~ + 3 0 10737717 10737431 10008716 -undoing n 2 2 @ + 2 1 00235074 00149262 -undress n 1 2 @ + 1 0 14456752 -undset n 1 1 @ 1 0 11356183 -undulant_fever n 1 1 @ 1 0 14128029 -undulation n 3 4 @ ~ + ; 3 0 13868944 07352048 07345593 -undulatory_theory n 1 2 @ ; 1 0 06105873 -undutifulness n 1 2 @ + 1 0 04828485 -unearned_income n 2 2 @ ; 2 0 13261597 13261380 -unearned_increment n 1 1 @ 1 0 13311679 -unearned_revenue n 2 2 @ ; 2 0 13261597 13261380 -unearned_run n 1 2 ! @ 1 1 00190040 -unease n 2 1 @ 2 0 14447019 04904851 -uneasiness n 5 3 @ ~ + 5 1 07525057 14447019 07507329 04904851 04625284 -uneducated_person n 1 2 @ ~ 1 0 10198958 -unemotional_person n 1 2 ! @ 1 0 10658867 -unemotionality n 2 4 ! @ ~ + 2 0 07483782 04629194 -unemployed n 1 2 @ ; 1 0 08477307 -unemployed_people n 1 2 @ ; 1 0 08477307 -unemployed_person n 1 2 @ ~ 1 0 10737860 -unemployment n 1 2 ! @ 1 1 13968308 -unemployment_compensation n 1 1 @ 1 1 01088437 -unemployment_line n 1 1 @ 1 0 08433343 -unemployment_rate n 1 1 @ 1 0 13819074 -unenlightenment n 1 3 ! @ ~ 1 0 05989265 -unequivocalness n 1 3 ! @ + 1 0 04821802 -unesco n 1 1 @ 1 0 08302052 -uneven_bars n 1 1 @ 1 0 04509260 -uneven_parallel_bars n 1 1 @ 1 0 04509260 -unevenness n 2 4 ! @ ~ + 2 0 04771890 04753331 -unexchangeability n 1 4 ! @ ~ + 1 0 04740864 -unexpectedness n 1 3 ! @ + 1 0 04796725 -unfairness n 3 4 ! @ ~ + 3 0 06202553 04839676 00744616 -unfaithfulness n 1 4 ! @ ~ + 1 0 04878861 -unfamiliarity n 1 5 ! @ ~ = + 1 0 04797482 -unfastener n 1 2 @ + 1 0 10737431 -unfastening n 1 2 @ + 1 0 00149262 -unfavorable_judgment n 1 2 @ ~ 1 0 06710546 -unfavorable_position n 1 1 @ 1 0 05165175 -unfavorableness n 1 4 ! @ ~ + 1 0 05161967 -unfavourableness n 1 3 @ ~ + 1 0 05161967 -unfeasibility n 1 2 @ + 1 0 05153359 -unfeelingness n 1 3 @ ~ + 1 0 04844625 -unfinished_business n 1 1 @ 1 0 00581885 -unfitness n 3 4 ! @ ~ + 3 0 14547369 05207130 04722373 -unfolding n 1 2 @ + 1 1 13571217 -unformatted_capacity n 1 2 @ ; 1 0 13755627 -unfortunate n 1 3 @ ~ + 1 1 09630641 -unfortunate_person n 1 2 @ ~ 1 0 09630641 -unfriendliness n 2 4 ! @ ~ + 2 0 07502241 04657876 -ungainliness n 1 2 @ + 1 0 05004700 -ungodliness n 1 3 ! @ + 1 0 04828754 -ungracefulness n 1 2 @ + 1 0 05004532 -ungraciousness n 1 3 ! @ + 1 0 04914991 -ungradable_opposition n 1 2 @ ~ 1 0 13857159 -ungrateful_person n 1 1 @ 1 0 10206763 -ungratefulness n 1 2 @ + 1 0 07504711 -unguent n 1 4 @ ~ %s ; 1 0 03845550 -unguiculata n 1 2 @ #m 1 0 02371125 -unguiculate n 1 2 @ + 1 0 02371344 -unguiculate_mammal n 1 1 @ 1 0 02371344 -unguis n 1 2 @ ~ 1 0 05581514 -ungulata n 1 3 @ #m %m 1 0 02370525 -ungulate n 1 4 @ ~ %p + 1 0 02370806 -unhappiness n 2 4 ! @ ~ + 2 1 07532440 13988663 -unhealthfulness n 1 4 ! @ ~ + 1 0 04791740 -unhealthiness n 1 3 @ ~ + 1 0 14052046 -unhelpfulness n 1 2 @ + 1 0 04845863 -unholiness n 1 4 ! @ ~ + 1 0 04855840 -unhurriedness n 1 3 @ ~ + 1 0 05061977 -uniat n 1 2 @ #m 1 0 09681107 -uniat_church n 1 2 @ %m 1 0 08086987 -uniate n 1 2 @ #m 1 0 09681107 -uniate_christian n 1 2 @ #m 1 0 09681107 -uniate_church n 1 2 @ %m 1 0 08086987 -unicameral_script n 1 2 @ ~ 1 0 06825736 -unicef n 1 1 @ 1 0 08299911 -unicorn n 1 1 @ 1 0 10737964 -unicorn_root n 1 3 @ ~ #m 1 0 12430198 -unicycle n 1 2 @ + 1 0 04509417 -unicyclist n 1 2 @ + 1 0 10738111 -unidentified_flying_object n 1 1 @ 1 0 05897825 -unification n 3 3 @ ~ + 3 1 07373602 14418395 00381680 -unification_church n 1 2 @ %m 1 0 08093421 -uniform n 1 3 @ ~ + 1 1 04509592 -uniform_resource_locator n 1 1 @ 1 0 06358747 -uniformity n 2 4 ! @ ~ + 2 1 04769049 04745370 -uniformness n 1 3 @ ~ + 1 0 04745370 -unilateral_contract n 1 1 @ 1 0 06525813 -unilateral_descent n 1 2 @ ~ 1 0 13814601 -unilateral_paralysis n 1 1 @ 1 0 14559644 -unilateralism n 1 3 @ ~ + 1 0 05963744 -unilateralist n 1 2 @ + 1 0 10738215 -unimportance n 2 4 ! @ ~ + 2 0 14436438 05172596 -uninitiate n 1 3 ! @ + 1 1 07948754 -uninominal_system n 1 2 @ ; 1 0 05904313 -uninominal_voting_system n 1 2 @ ; 1 0 05904313 -uninsurability n 1 2 ! @ 1 0 04718306 -unintelligibility n 2 4 ! @ ~ + 2 0 06608977 04823706 -uninterestingness n 1 4 ! @ ~ + 1 0 05205340 -unio n 1 3 @ #m %m 1 0 01964821 -uniocular_dichromat n 1 1 @ 1 0 10738321 -union n 11 8 ! @ ~ #p %p = + ; 11 3 08233056 09052314 00847340 14418395 13963970 13571365 08304895 07998712 07373277 04509815 00381680 -union_army n 1 1 @ 1 0 08394535 -union_card n 1 1 @ 1 0 06478097 -union_flag n 1 1 @ 1 0 04509985 -union_jack n 1 1 @ 1 0 04509985 -union_member n 1 1 @ 1 0 10720964 -union_of_burma n 1 6 @ #m #p %m %p - 1 0 08715390 -union_of_serbia_and_montenegro n 1 3 @ %m %p 1 0 08816236 -union_of_soviet_socialist_republics n 1 4 @ #p %p - 1 1 09003284 -union_representative n 1 2 @ ~ 1 0 10738515 -union_shop n 1 1 @ 1 0 08235173 -union_soldier n 1 1 @ 1 0 10373639 -union_suit n 1 1 @ 1 0 03688707 -unionidae n 1 3 @ #m %m 1 0 01964636 -unionisation n 1 2 @ + 1 0 00242583 -unionism n 1 2 @ + 1 0 08473482 -unionist n 1 2 @ + 1 0 10720964 -unionization n 1 2 @ + 1 0 00242583 -unipolar_depression n 1 1 @ 1 0 14391480 -uniqueness n 1 2 @ + 1 1 04763650 -unison n 3 2 @ ; 3 0 13972505 05049137 04981781 -unit n 6 4 @ ~ %p + 6 5 13583724 13810323 08189659 05869857 09465459 00003553 -unit_cell n 1 1 @ 1 1 09465795 -unit_character n 1 2 @ ; 1 0 04617106 -unit_cost n 1 1 @ 1 1 13303214 -unit_investment_trust n 1 1 @ 1 0 08072536 -unit_matrix n 1 1 @ 1 0 08269257 -unit_of_ammunition n 1 1 @ 1 0 04113641 -unit_of_measurement n 1 2 @ ~ 1 0 13583724 -unit_of_time n 1 2 @ ~ 1 0 15154774 -unit_of_viscosity n 1 2 @ ~ 1 0 13609390 -unit_trust n 1 1 @ 1 0 08072536 -unitard n 1 1 @ 1 0 03657511 -unitarian n 1 3 @ #m + 1 1 10738670 -unitarian_church n 1 2 @ %m 1 0 08092040 -unitarianism n 1 1 @ 1 0 06230358 -united_arab_emirate_dirham n 1 1 @ 1 0 13671813 -united_arab_emirate_monetary_unit n 1 2 @ ~ 1 0 13671674 -united_arab_emirates n 1 4 @ #m #p %p 1 0 09044190 -united_arab_emirates's_capital n 1 2 @ #p 1 0 09044536 -united_arab_republic n 1 6 @ #m #p %m %p - 1 0 08897065 -united_church_of_christ n 1 1 @ 1 0 08091412 -united_front n 1 1 @ 1 0 08476425 -united_kingdom n 1 6 @ ~ #m #p %p - 1 1 08860123 -united_kingdom_of_great_britain_and_northern_ireland n 1 6 @ ~ #m #p %p - 1 0 08860123 -united_methodist_church n 1 1 @ 1 0 08092960 -united_mexican_states n 1 6 @ #m #p %m %p - 1 0 08740875 -united_mine_workers n 1 1 @ 1 0 08233762 -united_mine_workers_of_america n 1 1 @ 1 0 08233762 -united_nations n 1 2 @ %m 1 1 08295580 -united_nations_agency n 1 3 @ ~ #m 1 0 08299493 -united_nations_children's_fund n 1 1 @ 1 0 08299911 -united_nations_crime_prevention_and_criminal_justice n 1 2 @ #m 1 0 08302468 -united_nations_day n 1 2 @ #p 1 0 15191080 -united_nations_educational_scientific_and_cultural_organization n 1 1 @ 1 0 08302052 -united_nations_international_children's_emergency_fund n 1 1 @ 1 0 08299911 -united_nations_office_for_drug_control_and_crime_prevention n 1 2 @ %m 1 0 08302257 -united_nations_secretariat n 1 2 @ #m 1 0 08296196 -united_republic_of_tanzania n 1 4 @ #p %m %p 1 0 09034550 -united_self-defense_force_of_colombia n 1 2 @ ; 1 0 08047032 -united_self-defense_group_of_colombia n 1 2 @ ; 1 0 08047032 -united_society_of_believers_in_christ's_second_appearing n 1 2 @ %m 1 0 08150576 -united_states n 2 7 @ ~ #m #p %m %p - 2 2 09044862 08355791 -united_states_air_force n 1 3 @ #p %p 1 0 08196230 -united_states_air_force_academy n 1 2 @ #p 1 0 08194927 -united_states_army n 1 4 @ #p %p ; 1 0 08394922 -united_states_army_criminal_investigation_laboratory n 1 2 @ #p 1 0 04510090 -united_states_army_rangers n 1 3 @ #p ; 1 0 08395298 -united_states_army_special_forces n 1 3 @ #p %m 1 0 08213424 -united_states_attorney_general n 1 1 @ 1 0 10570429 -united_states_border_patrol n 1 2 @ #p 1 0 08136767 -united_states_cabinet n 1 2 @ %m 1 0 08382570 -united_states_civil_war n 1 3 @ %p ; 1 0 01301630 -united_states_coast_guard n 1 2 @ #p 1 0 08192557 -united_states_code n 1 2 @ ; 1 0 06668147 -united_states_congress n 1 3 @ #m %m 1 0 08161757 -united_states_constitution n 1 3 @ %p ; 1 0 06534132 -united_states_customary_system n 1 1 @ 1 0 13578830 -united_states_department_of_defense n 1 2 @ %p 1 0 08131530 -united_states_department_of_state n 1 3 @ ~ %p 1 0 08137738 -united_states_dollar n 1 2 @ ~ 1 1 13674350 -united_states_dry_unit n 1 2 @ ~ 1 0 13620154 -united_states_fish_and_wildlife_service n 1 2 @ #p 1 0 08139270 -united_states_government n 1 2 @ %m 1 0 08355791 -united_states_government_accounting_office n 1 1 @ 1 0 08162245 -united_states_government_printing_office n 1 2 @ #p 1 0 08356573 -united_states_house_of_representatives n 1 2 @ #m 1 0 08161971 -united_states_intelligence_agency n 1 2 @ ~ 1 0 08339939 -united_states_intelligence_community n 1 4 @ %m %p ; 1 0 08340153 -united_states_liquid_unit n 1 2 @ ~ 1 0 13615235 -united_states_marine_corps n 1 4 @ #p %m %p 1 0 08192970 -united_states_marines n 1 4 @ #p %m %p 1 0 08192970 -united_states_marshals_service n 1 2 @ #p 1 0 08142370 -united_states_military_academy n 1 3 @ #p ; 1 0 08395465 -united_states_mint n 1 2 @ #p 1 0 04510456 -united_states_national_library_of_medicine n 1 2 @ #p 1 0 03810741 -united_states_naval_academy n 1 2 @ #p 1 0 08194074 -united_states_navy n 1 3 @ #p %p 1 0 08191987 -united_states_of_america n 1 7 @ ~ #m #p %m %p - 1 1 09044862 -united_states_post_office n 1 1 @ 1 0 08145277 -united_states_postal_inspection_service n 1 2 @ #p 1 0 08127557 -united_states_postal_service n 1 2 @ %p 1 0 08127304 -united_states_president n 1 3 @ ~ #p 1 0 10467395 -united_states_public_health_service n 1 2 @ #p 1 0 08133855 -united_states_secret_service n 1 2 @ #p 1 0 08348400 -united_states_senate n 1 2 @ #m 1 0 08161591 -united_states_supreme_court n 1 3 @ #m ; 1 0 08335886 -united_states_trade_representative n 1 1 @ 1 0 08128645 -united_states_treasury n 1 2 @ %p 1 0 08139795 -united_states_virgin_islands n 1 2 @ #p 1 0 08755003 -united_states_waters n 1 1 @ 1 0 09465984 -uniting n 2 3 @ ~ + 2 0 01238424 00381680 -unitisation n 4 3 @ + ; 4 0 05731568 01104174 01093532 00952787 -unitization n 4 3 @ + ; 4 0 05731568 01104174 01093532 00952787 -unity n 3 3 @ ~ = 3 3 14460565 13742573 04743370 -univalve n 1 3 @ ~ #m 1 0 01942177 -universal n 4 4 ! @ #p ; 4 0 07259984 06751367 05668359 04510706 -universal_agent n 1 1 @ 1 0 10738968 -universal_donor n 1 1 @ 1 0 10739135 -universal_gas_constant n 1 2 @ ; 1 0 13590079 -universal_gravitational_constant n 1 3 @ #p ; 1 0 13590327 -universal_joint n 1 2 @ #p 1 0 04510706 -universal_product_code n 1 1 @ 1 0 06354774 -universal_proposition n 1 3 ! @ ; 1 0 06751367 -universal_quantifier n 1 1 @ 1 0 06302967 -universal_resource_locator n 1 1 @ 1 0 06358747 -universal_set n 1 2 @ ; 1 0 08000644 -universal_solvent n 1 1 @ 1 0 15048463 -universal_suffrage n 1 1 @ 1 0 05186626 -universal_time n 1 2 @ ~ 1 0 15130205 -universal_veil n 1 1 @ 1 0 13094732 -universalism n 1 1 @ 1 0 06192665 -universality n 1 2 @ + 1 1 04765691 -universe n 3 6 @ ~ %m %p + ; 3 1 09466280 06026276 05814162 -universe_of_discourse n 1 1 @ 1 0 05814162 -university n 3 5 @ ~ #p %m - 3 2 08286163 04511002 08286569 -university_extension n 1 2 @ %p 1 0 00886039 -university_of_california_at_berkeley n 1 2 @ #p 1 0 04511832 -university_of_chicago n 1 2 @ #p 1 0 04511971 -university_of_michigan n 1 2 @ #p 1 0 04512092 -university_of_nebraska n 1 2 @ #p 1 0 04512216 -university_of_north_carolina n 1 2 @ #p 1 0 04512338 -university_of_paris n 1 2 @ #p 1 0 03890713 -university_of_pennsylvania n 1 3 @ #m #p 1 0 04512476 -university_of_pittsburgh n 1 2 @ #p 1 0 04512652 -university_of_sussex n 1 2 @ #p 1 0 04512783 -university_of_texas n 1 2 @ #p 1 0 04512933 -university_of_vermont n 1 2 @ #p 1 0 04513048 -university_of_washington n 1 2 @ #p 1 0 04513171 -university_of_west_virginia n 1 2 @ #p 1 0 04513297 -university_of_wisconsin n 1 2 @ #p 1 0 04513432 -university_student n 1 2 @ ~ 1 1 09936892 -unix n 1 2 @ ~ 1 0 06568706 -unix_guru n 1 1 @ 1 0 10739297 -unix_operating_system n 1 2 @ ~ 1 0 06568706 -unix_system n 1 2 @ ~ 1 0 06568706 -unjustness n 1 3 @ ~ + 1 0 04854389 -unkemptness n 1 3 @ ~ + 1 0 14499734 -unkind_person n 1 1 @ 1 0 10304278 -unkindness n 1 4 ! @ ~ + 1 0 04845312 -unknowing n 1 2 @ + 1 0 05988743 -unknowingness n 2 3 @ ~ + 2 0 05988743 05679611 -unknown n 3 3 @ ~ + 3 1 08632096 10661002 07271648 -unknown_quantity n 2 1 @ 2 1 07328436 07271648 -unknown_region n 1 1 @ 1 0 08632096 -unknown_soldier n 1 1 @ 1 0 10739391 -unlawful_carnal_knowledge n 1 2 @ ~ 1 0 00848098 -unlawfulness n 1 4 ! @ ~ + 1 0 04810865 -unleaded_gasoline n 1 2 ! @ 1 0 15083819 -unleaded_petrol n 1 1 @ 1 0 15083819 -unleavened_bread n 1 1 @ 1 1 07684164 -unlikelihood n 1 2 ! @ 1 0 04758776 -unlikeliness n 1 3 ! @ + 1 0 04758776 -unlikeness n 1 3 ! @ + 1 0 04750764 -unlisted_security n 1 3 ! @ ~ 1 0 13421095 -unlisted_stock n 1 2 @ ~ 1 0 13421286 -unloading n 1 3 ! @ + 1 1 00714173 -unmalleability n 1 3 ! @ + 1 0 05023974 -unmanageableness n 1 2 @ + 1 0 04907575 -unmanliness n 1 4 @ ~ + ; 1 0 04668139 -unmarried_man n 1 1 @ 1 0 09829923 -unmarried_woman n 1 2 @ ~ 1 0 10739512 -unmasking n 1 2 @ + 1 0 07215568 -unmentionable n 1 2 @ ~ 1 0 04508163 -unmercifulness n 1 3 @ ~ + 1 0 04831031 -unmindfulness n 1 3 ! @ + 1 0 04665543 -unnaturalness n 1 4 ! @ ~ + 1 0 04787530 -unneighborliness n 1 3 ! @ + 1 0 04658816 -unnilquadium n 1 1 @ 1 0 14653416 -unnoticeableness n 1 2 @ + 1 0 04707808 -unobserved_fire n 1 1 @ 1 0 00994321 -unobtrusiveness n 1 3 ! @ + 1 0 04707964 -unoriginality n 2 4 ! @ ~ + 2 0 05649628 04801168 -unorthodoxy n 3 3 ! @ ~ 3 0 06212422 05980412 04800729 -unpaid_worker n 1 2 @ ~ 1 0 10759151 -unpalatability n 2 4 ! @ ~ + 2 0 04996355 04780396 -unpalatableness n 2 3 @ ~ + 2 0 04996355 04780396 -unperceptiveness n 1 3 ! @ + 1 0 04845146 -unpermissiveness n 1 4 ! @ ~ + 1 0 04639113 -unperson n 1 1 @ 1 0 10361525 -unpersuasiveness n 1 3 ! @ + 1 0 05205220 -unpleasant_person n 1 2 @ ~ 1 0 09631463 -unpleasant_woman n 1 2 @ ~ 1 0 10739636 -unpleasantness n 2 4 ! @ ~ + 2 0 07494787 04779649 -unpleasingness n 1 3 ! @ + 1 0 04690933 -unpointedness n 1 3 ! @ + 1 0 05071726 -unpopularity n 1 3 ! @ + 1 0 04809089 -unpredictability n 3 3 ! @ + 3 1 04735075 04866671 04758313 -unpretentiousness n 1 3 ! @ + 1 0 04787154 -unproductiveness n 1 3 ! @ + 1 0 05148539 -unprofitability n 1 3 ! @ + 1 0 05165533 -unprofitableness n 1 3 ! @ + 1 0 05165533 -unpropitiousness n 1 3 ! @ + 1 0 05162217 -unprotectedness n 1 2 @ + 1 0 05043091 -unq n 1 1 @ 1 0 14653416 -unquestionability n 1 3 @ ~ + 1 0 04754862 -unquestionableness n 1 3 @ ~ + 1 0 04754862 -unraveler n 1 2 @ + 1 0 10016954 -unraveller n 1 2 @ + 1 0 10016954 -unrealism n 1 1 @ 1 1 05940869 -unreality n 2 4 ! @ ~ + 2 1 04762492 13960117 -unreason n 1 1 @ 1 1 14397563 -unregularity n 1 2 @ ~ 1 0 04770211 -unrelatedness n 1 4 ! @ ~ + 1 0 13796403 -unreliability n 1 4 ! @ ~ + 1 0 04671394 -unreliableness n 1 4 ! @ ~ + 1 0 04671394 -unrespectability n 1 3 ! @ + 1 0 04874409 -unresponsiveness n 1 4 ! @ ~ + 1 0 05213201 -unrest n 2 1 @ 2 1 13979503 07513711 -unrestraint n 1 3 ! @ ~ 1 0 04885091 -unrighteousness n 1 4 ! @ ~ + 1 0 04827652 -unruliness n 1 3 @ ~ + 1 0 04908396 -unsanctification n 1 3 @ ~ + 1 0 04856014 -unsanitariness n 1 4 ! @ ~ + 1 0 14495589 -unsatisfactoriness n 1 4 ! @ ~ + 1 0 04793355 -unsaturated_fatty_acid n 1 2 @ ~ 1 0 14740915 -unsavoriness n 2 2 @ + 2 0 04996571 04780605 -unscrupulousness n 1 3 ! @ + 1 0 04874086 -unseasonableness n 1 3 ! @ + 1 0 05049458 -unsecured_bond n 1 2 ! @ 1 0 13339844 -unseemliness n 1 3 ! @ + 1 0 04902668 -unseen n 1 2 @ ~ 1 0 05952199 -unselfconsciousness n 1 3 ! @ + 1 1 05677097 -unselfishness n 2 4 ! @ ~ + 2 1 04832951 01085937 -unsightliness n 1 2 @ + 1 0 04690476 -unsimilarity n 1 2 @ ~ 1 0 04750164 -unskilled_person n 1 2 @ ~ 1 0 09632274 -unskillfulness n 1 4 ! @ ~ + 1 0 05648247 -unslaked_lime n 1 2 @ %s 1 0 14789885 -unsnarling n 1 2 @ + 1 0 01244593 -unsociability n 1 4 ! @ ~ + 1 0 04656748 -unsociableness n 1 3 @ ~ + 1 0 04656748 -unsolvability n 1 2 ! @ 1 0 05215699 -unsoundness n 3 4 ! @ ~ + 3 0 14560360 05940688 05160173 -unspoken_accusation n 1 1 @ 1 0 07238308 -unstableness n 1 4 ! @ ~ + 1 0 04775747 -unsteadiness n 2 4 ! @ ~ + 2 0 04775562 04773182 -unstratified_language n 1 2 ! @ 1 0 06901591 -unsuccessful_person n 1 2 @ ~ 1 0 10273064 -unsuitability n 1 4 ! @ ~ + 1 0 04721058 -unsuitableness n 1 4 ! @ ~ + 1 0 04721058 -unsusceptibility n 1 4 ! @ ~ + 1 0 14526764 -untangling n 1 2 @ + 1 0 01244593 -untermeyer n 1 1 @ 1 0 11356283 -unthoughtfulness n 1 4 ! @ ~ + 1 0 04661706 -untidiness n 2 4 ! @ ~ + 2 0 14499594 04897428 -untier n 1 2 @ + 1 0 10737431 -untimeliness n 2 3 ! @ + 2 0 05049458 04723107 -untouchable n 1 2 @ + 1 0 10739881 -untrustiness n 1 4 ! @ ~ + 1 0 04670531 -untrustworthiness n 1 4 ! @ ~ + 1 0 04670531 -untruth n 1 2 @ ~ 1 1 06756407 -untruthfulness n 1 4 ! @ ~ + 1 0 04876053 -untying n 1 2 @ + 1 0 00149262 -untypicality n 1 2 @ + 1 0 14503060 -ununbium n 1 1 @ 1 0 14659794 -ununhexium n 1 1 @ 1 0 14659922 -ununpentium n 1 1 @ 1 0 14660052 -ununquadium n 1 1 @ 1 0 14660183 -ununtrium n 1 1 @ 1 0 14660314 -unusefulness n 1 2 @ ~ 1 0 05150588 -unusual_person n 1 2 @ ~ 1 0 09606527 -unusualness n 1 4 ! @ ~ + 1 0 04797295 -unvariedness n 1 4 ! @ ~ + 1 0 04740173 -unveiling n 2 3 @ ~ + 2 0 06891339 00238022 -unwariness n 1 3 ! @ + 1 0 04665406 -unwelcome_guest n 1 1 @ 1 0 10121952 -unwelcome_person n 1 2 @ ~ 1 0 09631129 -unwellness n 1 4 ! @ ~ + 1 0 14061805 -unwholesomeness n 1 4 ! @ ~ + 1 0 04790449 -unwieldiness n 2 2 @ + 2 0 04712130 04711665 -unwillingness n 1 4 ! @ ~ + 1 1 04645599 -unwiseness n 1 3 @ ~ + 1 0 04891333 -unworthiness n 2 4 ! @ ~ + 2 0 04807776 04721650 -unwritten_law n 1 1 @ 1 0 00416914 -unyieldingness n 1 2 @ + 1 0 04863793 -up-bow n 1 1 @ 1 0 00548068 -up-tick n 1 1 @ 1 0 05111141 -up-to-dateness n 1 4 @ ~ = + 1 0 05050379 -up_quark n 1 1 @ 1 0 09467043 -upanishad n 1 1 @ 1 0 06466253 -upbeat n 2 2 @ ~ 2 0 14447525 07087102 -upbraider n 1 2 @ + 1 0 10740017 -upbraiding n 1 2 @ + 1 0 06713187 -upbringing n 2 2 @ ~ 2 0 04921754 01129532 -upcast n 1 1 @ 1 0 04513556 -update n 1 2 @ + 1 0 06643303 -updating n 1 2 @ + 1 0 00404170 -updike n 1 1 @ 1 0 11356392 -updraft n 1 1 @ 1 0 11522649 -upending n 1 3 @ ~ + 1 0 00335814 -upgrade n 6 3 @ ~ + 6 0 09206985 06903255 05795654 05068918 04513686 01267588 -upheaval n 4 4 @ ~ + ; 4 1 13979173 13977732 07375781 00554300 -uphill n 1 1 @ 1 0 09466678 -upholder n 1 2 @ + 1 0 10740219 -upholsterer n 1 2 @ + 1 0 10740482 -upholstery n 2 3 @ #p + 2 0 04513827 01120348 -upholstery_material n 1 1 @ 1 0 04513998 -upholstery_needle n 1 1 @ 1 0 04514095 -upjohn n 1 1 @ 1 0 11356512 -upkeep n 2 2 @ ~ 2 1 00267522 01216191 -upland n 1 2 @ ~ 1 0 09302616 -upland_cotton n 1 1 @ 1 0 12176953 -upland_plover n 1 2 @ #m 1 0 02029706 -upland_sandpiper n 1 2 @ #m 1 0 02029706 -upland_white_aster n 1 1 @ 1 0 11935027 -uplift n 2 3 @ + ; 2 0 07375781 04514241 -uplifting n 1 2 @ + 1 1 07376008 -uplink n 1 1 @ 1 0 07280295 -upper n 3 4 @ ~ #p %p 3 0 04514648 04514359 02704153 -upper-case_letter n 1 2 @ ~ 1 0 06824227 -upper-normandy n 1 2 @ #p 1 0 08942508 -upper_avon n 1 2 @ #p 1 0 09211944 -upper_avon_river n 1 2 @ #p 1 0 09211944 -upper_balcony n 1 2 @ #p 1 0 04164199 -upper_berth n 1 1 @ 1 0 04514648 -upper_bound n 1 2 @ ; 1 0 13903855 -upper_cannon n 1 2 @ #p 1 0 04077594 -upper_carboniferous n 1 2 @ #p 1 0 15127507 -upper_carboniferous_period n 1 2 @ #p 1 0 15127507 -upper_class n 1 2 @ ~ 1 0 08386365 -upper_crust n 1 2 @ ~ 1 0 08386365 -upper_deck n 1 3 @ ~ %p 1 0 04514738 -upper_egypt n 1 3 @ #p %p 1 0 08898002 -upper_hand n 1 1 @ 1 1 05159123 -upper_jaw n 1 2 @ %p 1 0 05284132 -upper_jawbone n 1 2 @ %p 1 0 05284132 -upper_limit n 2 1 @ 2 2 13776137 08592898 -upper_mantle n 1 2 @ #p 1 0 09466757 -upper_paleolithic n 1 2 @ #p 1 0 15233047 -upper_peninsula n 1 2 @ #p 1 0 09466863 -upper_respiratory_infection n 1 1 @ 1 0 14180213 -upper_respiratory_tract n 1 2 @ %p 1 0 05510506 -upper_side n 1 2 @ ~ 1 0 08663354 -upper_surface n 1 2 @ ~ 1 0 04514899 -upper_tunguska n 1 2 @ #p 1 0 09197432 -upper_volta n 1 1 @ 1 0 08896440 -uppercase n 1 3 ! @ ~ 1 0 06824227 -uppercut n 1 1 @ 1 1 01175195 -uppishness n 1 2 @ + 1 0 04839009 -uppityness n 1 2 @ + 1 0 04839009 -uppp n 1 1 @ 1 0 00689729 -uppsala n 1 2 @ #p 1 0 08766846 -upright n 2 3 @ ~ #p 2 0 04515129 04515003 -upright_piano n 1 2 @ ~ 1 0 04515003 -uprightness n 3 2 @ + 3 0 05083054 05079638 04826623 -uprising n 1 2 @ ~ 1 1 00962129 -uproar n 2 3 @ ~ + 2 2 13978709 07385660 -uprooter n 1 3 @ ~ + 1 0 10008716 -upsala n 1 2 @ #p 1 0 08766846 -upset n 6 3 @ ~ + 6 2 14403282 00554850 14052403 04515444 00348312 00068170 -upset_price n 1 2 @ ; 1 0 13304665 -upset_stomach n 1 2 @ %p 1 0 14336317 -upsetter n 1 2 @ + 1 0 10740594 -upshot n 1 2 @ ~ 1 1 11410625 -upside n 1 2 @ ~ 1 0 08663354 -upside-down_cake n 1 1 @ 1 0 07634141 -upsilon n 1 2 @ #m 1 0 06836165 -upstage n 1 2 @ #p 1 0 04515630 -upstager n 1 2 @ + 1 0 10740732 -upstairs n 1 2 @ #p 1 0 04515729 -upstart n 3 2 @ ~ 3 0 10741152 10740868 00438338 -upstroke n 1 1 @ 1 0 06799588 -upsurge n 2 2 @ ~ 2 0 07440240 00364787 -uptake n 2 2 @ ~ 2 1 00838098 13571580 -upthrow n 1 2 @ ; 1 0 07375781 -upthrust n 1 2 @ ; 1 0 07375781 -uptick n 1 2 ! @ 1 0 01110973 -uptime n 1 4 ! @ ~ ; 1 0 15117809 -upton_beall_sinclair n 1 1 @ 1 0 11302449 -upton_sinclair n 1 1 @ 1 0 11302449 -uptown n 1 2 @ #p 1 1 08554206 -upturn n 1 1 @ 1 0 00266149 -upupa n 1 3 @ #m %m 1 0 01829739 -upupa_epops n 1 2 @ #m 1 0 01830042 -upupidae n 1 3 @ #m %m 1 0 01829602 -ur n 1 2 @ #p 1 0 08918800 -uracil n 1 2 @ #s 1 0 15084357 -uraemia n 1 2 @ + 1 0 14210971 -ural-altaic n 1 2 @ ~ 1 0 06955931 -ural_mountains n 1 2 @ #p 1 0 09467185 -uralic n 1 2 @ ~ 1 0 06956129 -uralic_language n 1 2 @ ~ 1 0 06956129 -urals n 1 2 @ #p 1 0 09467185 -uranalysis n 1 2 @ ; 1 0 00646332 -urania n 2 2 @ ; 2 0 09567309 09555127 -uraninite n 1 2 @ %s 1 0 15084545 -uranium n 1 3 @ ~ #s 1 0 14660443 -uranium_235 n 1 1 @ 1 0 14660700 -uranium_238 n 1 1 @ 1 0 14660835 -uranium_ore n 1 3 @ ~ %s 1 0 15084824 -uranologist n 1 4 @ ~ + ; 1 0 09818343 -uranology n 1 4 @ ~ + - 1 0 06095022 -uranoplasty n 1 1 @ 1 0 00694578 -uranoscopidae n 1 3 @ #m %m 1 0 02611767 -uranus n 2 3 @ #m ; 2 0 09568051 09467417 -uranyl n 1 2 @ #s 1 0 15084999 -uranyl_group n 1 2 @ #s 1 0 15084999 -uranyl_nitrate n 1 2 @ %s 1 0 15085175 -uranyl_oxalate n 1 2 @ %s 1 1 15085327 -uranyl_radical n 1 2 @ #s 1 0 15084999 -urarthritis n 1 1 @ 1 0 14188804 -urate n 1 2 @ ~ 1 0 15085836 -uratemia n 1 1 @ 1 0 14572353 -uraturia n 1 1 @ 1 0 14572503 -urban_area n 1 4 ! @ ~ %p 1 1 08675967 -urban_center n 1 3 @ ~ %p 1 1 08524735 -urban_guerrilla n 1 1 @ 1 0 10741258 -urban_ii n 1 1 @ 1 0 11356636 -urban_legend n 1 1 @ 1 0 06682952 -urban_planning n 2 2 @ %m 2 0 06124706 00928542 -urban_renewal n 1 1 @ 1 0 00401194 -urban_sprawl n 1 2 @ ~ 1 0 08539717 -urban_typhus n 1 1 @ 1 0 14141238 -urban_v n 1 1 @ 1 0 11356822 -urban_vi n 1 1 @ 1 0 11357086 -urban_viii n 1 1 @ 1 0 11357332 -urbana n 1 2 @ #p 1 0 09084615 -urbanisation n 2 2 @ + 2 0 14580334 13571763 -urbanity n 2 3 ! @ + 2 0 04913212 04816302 -urbanization n 2 2 @ + 2 0 14580334 13571763 -urceole n 1 1 @ 1 0 04515890 -urchin n 1 2 @ ~ 1 1 10741367 -urd n 1 1 @ 1 0 09582616 -urdu n 1 1 @ 1 0 06969916 -urea n 1 1 @ 1 0 15085472 -urea-formaldehyde_resin n 1 1 @ 1 0 14895003 -urease n 1 1 @ 1 0 15084110 -uredinales n 1 3 @ #m %m 1 0 13063046 -uremia n 1 2 @ + 1 0 14210971 -ureter n 1 2 @ #p 1 0 05512835 -ureteritis n 1 1 @ 1 0 14357770 -ureterocele n 1 1 @ 1 0 14572637 -ureterorenal_reflux n 1 1 @ 1 0 14335761 -ureterostenosis n 1 1 @ 1 0 14572770 -urethane n 1 1 @ 1 0 15084277 -urethra n 1 4 @ #p %p + 1 0 05513020 -urethral_orifice n 1 2 @ #p 1 0 05512670 -urethral_sphincter n 1 2 @ #p 1 0 05572227 -urethritis n 1 2 @ ~ 1 0 14567421 -urethrocele n 1 1 @ 1 0 14572854 -urex n 1 2 @ ; 1 0 03755140 -urey n 1 1 @ 1 0 11357514 -urga n 1 2 @ #p 1 0 08969123 -urge n 2 2 @ ~ 2 2 09180431 07490451 -urge_incontinence n 1 1 @ 1 0 13571943 -urgency n 4 3 @ ~ + 4 2 14451020 05171800 13944516 07188385 -urginea n 1 3 @ #m %m 1 0 12462401 -urginea_maritima n 1 3 @ #m %p 1 0 12462582 -urging n 3 2 @ + 3 2 07252378 01214746 07188385 -uria n 1 3 @ #m %m 1 0 02047152 -uria_aalge n 1 1 @ 1 0 02047411 -uria_lomvia n 1 1 @ 1 0 02047517 -uriah n 1 2 @ ; 1 0 11357660 -urial n 1 2 @ #m 1 0 02415130 -uric_acid n 1 1 @ 1 0 15085682 -uricaciduria n 1 1 @ 1 0 14572951 -urim_and_thummim n 1 1 @ 1 0 07200692 -urinal n 1 1 @ 1 0 04515991 -urinalysis n 1 2 @ ; 1 0 00646332 -urinary_apparatus n 1 2 @ %p 1 0 05509452 -urinary_bladder n 1 3 @ #p %p 1 0 05512337 -urinary_calculus n 1 1 @ 1 0 09325824 -urinary_hesitancy n 1 1 @ 1 0 14564519 -urinary_incontinence n 1 2 @ ~ 1 0 13474858 -urinary_organ n 1 3 @ ~ #p 1 0 05333259 -urinary_retention n 1 1 @ 1 0 04942373 -urinary_system n 1 2 @ %p 1 0 05509452 -urinary_tract n 1 3 @ #p %p 1 0 05511061 -urinary_tract_infection n 1 2 @ ~ 1 0 14566129 -urination n 1 3 @ ~ + 1 0 13515958 -urinator n 1 3 @ ~ + 1 0 10435716 -urine n 1 2 @ + 1 1 14855724 -uriniferous_tubule n 1 3 @ #p %p 1 0 05247178 -url n 1 1 @ 1 0 06358747 -urmia n 2 2 @ #p 2 0 09333706 08912559 -urn n 2 2 @ ~ 2 1 04516116 04516214 -urn_fungus n 1 1 @ 1 0 13031193 -urnula_craterium n 1 1 @ 1 0 13031193 -urobilin n 1 1 @ 1 0 14756606 -urobilinogen n 1 1 @ 1 0 14756754 -urocele n 1 1 @ 1 0 14573099 -urochesia n 1 1 @ 1 0 13572226 -urochezia n 1 1 @ 1 0 13572226 -urochord n 2 3 @ ~ #m 2 0 01468238 01466701 -urochorda n 1 3 @ #m %m 1 0 01467986 -urochordata n 1 3 @ #m %m 1 0 01467986 -urochordate n 1 3 @ ~ #m 1 0 01468238 -urocyon n 1 3 @ #m %m 1 0 02120387 -urocyon_cinereoargenteus n 1 2 @ #m 1 0 02120505 -urocystis n 1 3 @ #m %m 1 0 13068565 -urocystis_cepulae n 1 1 @ 1 0 13068735 -urocystis_tritici n 1 1 @ 1 0 13069224 -urodele n 1 2 @ #m 1 0 01628770 -urodella n 1 3 @ #m %m 1 0 01628450 -urodynia n 1 1 @ 1 0 14333645 -urogenital_apparatus n 1 2 @ %p 1 0 05509452 -urogenital_cleft n 1 2 @ #p 1 0 05522784 -urogenital_medicine n 1 1 @ 1 0 06065208 -urogenital_system n 1 2 @ %p 1 0 05509452 -urokinase n 1 1 @ 1 0 14984066 -urolith n 1 1 @ 1 0 09467696 -urologist n 1 2 @ + 1 0 10741493 -urology n 1 2 @ + 1 0 06065208 -uropathy n 1 2 @ ~ 1 0 14573196 -urophycis n 1 3 @ #m %m 1 0 02524811 -uropsilus n 1 3 @ #m %m 1 0 01890718 -uropsilus_soricipes n 1 2 @ #m 1 0 01891013 -uropygi n 1 3 @ #m %m 1 0 01771246 -uropygial_gland n 1 2 @ #p 1 0 02468017 -uropygium n 1 2 @ #p 1 0 02158354 -urosaurus n 1 3 @ #m %m 1 0 01681513 -urosaurus_ornatus n 1 2 @ #m 1 0 01681653 -ursa_major n 1 2 @ %p 1 0 09292189 -ursa_minor n 1 3 @ %m %p 1 0 09340024 -ursidae n 1 3 @ #m %m 1 0 02131418 -ursine_dasyure n 1 2 @ #m 1 0 01884834 -ursinia n 1 2 @ #m 1 0 12030092 -ursus n 1 3 @ #m %m 1 0 02131942 -ursus_americanus n 1 3 @ ~ #m 1 0 02133161 -ursus_arctos n 1 3 @ ~ #m 1 0 02132136 -ursus_arctos_horribilis n 1 1 @ 1 0 02132580 -ursus_arctos_middendorffi n 1 1 @ 1 0 02132788 -ursus_arctos_syriacus n 1 1 @ 1 0 02132466 -ursus_horribilis n 1 1 @ 1 0 02132580 -ursus_maritimus n 1 2 @ #m 1 0 02134084 -ursus_middendorffi n 1 1 @ 1 0 02132788 -ursus_thibetanus n 1 2 @ #m 1 0 02133704 -ursus_ursinus n 1 2 @ #m 1 0 02134418 -urth n 1 1 @ 1 0 09582616 -urtica n 1 3 @ #m %m 1 0 12392385 -urtica_dioica n 1 2 @ #m 1 0 12392549 -urtica_pipulifera n 1 2 @ #m 1 0 12392765 -urticaceae n 1 3 @ #m %m 1 0 12391745 -urticales n 1 3 @ #m %m 1 0 12391477 -urticaria n 1 1 @ 1 0 14322248 -urtication n 2 2 @ + 2 0 14322248 05724357 -urubupunga n 1 2 @ #p 1 0 09467765 -urubupunga_falls n 1 2 @ #p 1 0 09467765 -uruguay n 1 6 @ #m #p %m %p + 1 0 09160295 -uruguay_potato n 2 4 @ #m #p %p 2 0 12894438 07711799 -uruguay_potato_vine n 1 3 @ #m %p 1 0 12894438 -uruguay_river n 1 2 @ #p 1 0 09467921 -uruguayan n 1 3 @ #m + 1 0 09746936 -uruguayan_monetary_unit n 1 2 @ ~ 1 0 13693237 -uruguayan_peso n 1 2 @ %p 1 0 13693349 -urus n 1 2 @ #m 1 0 02405101 -us n 1 7 @ ~ #m #p %m %p - 1 1 09044862 -us_air_force n 1 3 @ #p %p 1 0 08196230 -us_air_force_academy n 1 2 @ #p 1 0 08194927 -us_army n 1 4 @ #p %p ; 1 0 08394922 -us_army_criminal_investigation_laboratory n 1 2 @ #p 1 0 04510090 -us_attorney_general n 1 1 @ 1 0 10570429 -us_border_patrol n 1 2 @ #p 1 0 08136767 -us_cabinet n 1 2 @ %m 1 0 08382570 -us_coast_guard n 1 2 @ #p 1 0 08192557 -us_congress n 1 3 @ #m %m 1 0 08161757 -us_constitution n 1 3 @ %p ; 1 0 06534132 -us_fish_and_wildlife_service n 1 2 @ #p 1 0 08139270 -us_government n 1 2 @ %m 1 0 08355791 -us_government_printing_office n 1 2 @ #p 1 0 08356573 -us_house n 1 2 @ #m 1 0 08161971 -us_house_of_representatives n 1 2 @ #m 1 0 08161971 -us_marine_corps n 1 4 @ #p %m %p 1 0 08192970 -us_marshals_service n 1 2 @ #p 1 0 08142370 -us_military_academy n 1 3 @ #p ; 1 0 08395465 -us_mint n 1 2 @ #p 1 0 04510456 -us_naval_academy n 1 2 @ #p 1 0 08194074 -us_navy n 1 3 @ #p %p 1 1 08191987 -us_post_office n 1 1 @ 1 0 08145277 -us_postal_inspection_service n 1 2 @ #p 1 0 08127557 -us_postal_service n 1 2 @ %p 1 0 08127304 -us_secret_service n 1 2 @ #p 1 0 08348400 -us_senate n 1 2 @ #m 1 0 08161591 -us_trade_representative n 1 1 @ 1 0 08128645 -usa n 2 8 @ ~ #m #p %m %p ; - 2 0 09044862 08394922 -usability n 1 1 @ 1 0 05150129 -usableness n 1 2 @ + 1 0 05150129 -usacil n 1 2 @ #p 1 0 04510090 -usaf n 1 3 @ #p %p 1 0 08196230 -usage n 3 3 @ ~ + 3 2 00947128 00413239 06283459 -usama_bin_laden n 1 1 @ 1 0 10851452 -usance n 3 4 @ ~ + ; 3 0 15299585 13451804 00413239 -usbeg n 2 1 @ 2 0 09736798 06927363 -usbek n 2 1 @ 2 0 09736798 06927363 -uscb n 1 2 @ #p 1 0 08142972 -usda n 1 1 @ 1 0 08128964 -use n 7 5 @ ~ = + ; 7 6 00947128 05149325 05149978 13451804 00414179 00158185 05190106 -use_immunity n 1 2 @ ~ 1 0 00215013 -use_of_goods_and_services n 1 3 @ ~ ; 1 0 13451804 -useableness n 1 2 @ + 1 0 05150129 -used-car n 1 1 @ 1 0 04516354 -used-car_lot n 1 1 @ 1 0 08676499 -usefulness n 1 5 ! @ ~ = + 1 1 05148699 -uselessness n 1 4 ! @ ~ + 1 1 05150588 -user n 3 3 @ ~ + 3 2 10741590 10072546 10036266 -user_interface n 1 3 @ ~ ; 1 0 06575227 -ushas n 1 1 @ 1 0 09529454 -usher n 3 3 @ ~ + 3 0 11357879 10742111 10741821 -usherette n 1 2 @ + 1 0 10742005 -ushering_in n 1 1 @ 1 0 00243237 -using n 1 3 @ ~ + 1 0 00418903 -using_up n 1 2 @ ~ 1 0 00356367 -uskub n 1 2 @ #p 1 0 08961852 -usmc n 1 4 @ #p %m %p 1 0 08192970 -usn n 1 3 @ #p %p 1 0 08191987 -usnea n 1 3 @ #m %m 1 0 12989739 -usnea_barbata n 1 2 @ #m 1 0 12989938 -usneaceae n 1 3 @ #m %m 1 0 12989462 -usps n 1 2 @ %p 1 0 08127304 -uss_cole n 1 2 @ ; 1 0 04516477 -ussher n 1 1 @ 1 0 11357879 -ussr n 1 4 @ #p %p - 1 1 09003284 -usss n 1 2 @ #p 1 0 08348400 -ustilaginaceae n 1 3 @ #m %m 1 0 13066631 -ustilaginales n 1 3 @ #m %m 1 0 13065902 -ustilaginoidea n 1 3 @ #m %m 1 0 13081050 -ustilaginoidea_virens n 1 2 @ #m 1 0 13081229 -ustilago n 1 2 @ %m 1 0 13066803 -ustilago_maydis n 1 2 @ #m 1 0 13067330 -ustinov n 1 1 @ 1 0 11358065 -usualness n 1 5 ! @ ~ = + 1 0 04796086 -usufruct n 1 3 @ + ; 1 0 05190356 -usufructuary n 1 2 @ + 1 0 10742269 -usuli n 1 2 @ ; 1 0 08474341 -usumbura n 1 2 @ #p 1 0 08716517 -usurer n 1 1 @ 1 0 10742384 -usurpation n 2 3 @ ~ + 2 0 00733483 00085432 -usurper n 1 3 @ ~ + 1 0 10742546 -usury n 2 2 @ + 2 0 13320045 01093855 -ut n 3 4 @ ~ #p %p 3 0 15130205 09147046 06868309 -ut1 n 1 2 @ ~ 1 0 15130205 -uta n 1 3 @ #m %m 1 0 01681200 -uta_stansburiana n 1 2 @ #m 1 0 01681328 -utah n 1 3 @ #p %p 1 1 09147046 -utahan n 1 1 @ 1 0 09745933 -utahraptor n 1 2 @ #m 1 0 01718414 -utc n 1 2 @ ~ 1 0 15130434 -ute n 2 1 @ 2 0 09671334 06915221 -utensil n 1 2 @ ~ 1 1 04516672 -uterine_artery n 1 2 @ #p 1 0 05355890 -uterine_cavity n 1 2 @ #p 1 0 05519401 -uterine_cervix n 1 3 @ ~ #p 1 0 05303232 -uterine_contraction n 1 2 @ #p 1 0 00370458 -uterine_tube n 1 2 @ #p 1 0 05518870 -uterine_vein n 1 1 @ 1 0 05384999 -uterus n 1 4 @ ~ #p %p 1 0 05519085 -utica n 2 2 @ #p 2 0 09125629 08920207 -utilisation n 1 3 @ ~ + 1 0 00947128 -utiliser n 1 1 @ 1 0 10743124 -utilitarian n 1 2 @ + 1 0 10742736 -utilitarianism n 1 1 @ 1 0 06187529 -utility n 6 7 ! @ ~ %p = + ; 6 3 08185758 05148699 00579334 13580058 06581410 04516874 -utility_bond n 1 1 @ 1 0 13340902 -utility_man n 2 1 @ 2 0 10742997 10742881 -utility_program n 1 4 @ ~ %p ; 1 0 06581410 -utility_revenue_bond n 1 1 @ 1 0 13340902 -utility_routine n 1 3 @ ~ #p 1 0 06584702 -utilization n 2 3 @ ~ + 2 1 00947128 14580476 -utilizer n 1 2 @ + 1 0 10743124 -utmost n 1 2 @ + 1 1 05124928 -utn n 1 2 @ ; 1 0 08048300 -utnapishtim n 1 1 @ 1 0 09522344 -uto-aztecan n 1 2 @ ~ 1 1 06918396 -uto-aztecan_language n 1 2 @ ~ 1 0 06918396 -utopia n 4 3 ! @ + 4 1 07283198 13932045 06370178 05632056 -utopian n 1 2 @ + 1 1 10743356 -utopian_socialism n 1 1 @ 1 0 06221119 -utopianism n 1 1 @ 1 1 06221323 -utrecht n 1 2 @ #p 1 0 08951278 -utricle n 1 2 @ #p 1 0 05322432 -utricularia n 1 3 @ #m %m 1 0 12872257 -utriculus n 1 2 @ #p 1 0 05322432 -utrillo n 1 1 @ 1 0 11358225 -uttar_pradesh n 1 2 @ #p 1 0 08905646 -utterance n 1 4 @ ~ %p + 1 1 07109847 -utterer n 3 3 @ ~ + 3 0 10743675 10743543 10630188 -uttermost n 1 2 @ + 1 0 05124928 -utterness n 1 1 @ 1 0 05124534 -utu n 1 2 @ ; 1 0 09522498 -utug n 1 2 @ ; 1 0 09522498 -uub n 1 1 @ 1 0 14659794 -uuh n 1 1 @ 1 0 14659922 -uup n 1 1 @ 1 0 14660052 -uuq n 1 1 @ 1 0 14660183 -uut n 1 1 @ 1 0 14660314 -uv n 1 2 @ ~ 1 0 11521940 -uvea n 1 3 @ #p + 1 0 05317960 -uveitis n 1 1 @ 1 0 14357853 -uveoscleral_pathway n 1 2 @ #p 1 0 05318137 -uvula n 1 3 @ #p + 1 0 05309245 -uvularia n 1 3 @ #m %m 1 0 12474828 -uvularia_grandiflora n 1 2 @ #m 1 0 12475242 -uvulariaceae n 1 3 @ #m %m 1 0 12474620 -uvulitis n 1 1 @ 1 0 14357942 -uvulopalatopharyngoplasty n 1 1 @ 1 0 00689729 -ux. n 1 2 @ ; 1 0 10743941 -uxor n 1 3 @ + ; 1 0 10743941 -uxoricide n 2 1 @ 2 0 10744078 00222064 -uxoriousness n 1 2 @ + 1 0 04627367 -uygur n 3 2 @ #m 3 0 09736633 06927486 06353089 -uzbak n 2 1 @ 2 0 09736798 06927363 -uzbeg n 2 1 @ 2 0 09736798 06927363 -uzbek n 3 5 @ #m #p %p - 3 0 09736798 09022265 06927363 -uzbekistan n 1 5 @ #m #p %p - 1 0 09022265 -uzbekistani_monetary_unit n 1 2 @ ~ 1 0 13703370 -uzi n 1 1 @ 1 0 04517211 -v n 4 5 @ #m #s #p %p 4 1 13643276 14661020 13744521 06833436 -v-1 n 1 1 @ 1 0 02929923 -v-8_juice n 1 1 @ 1 0 07925708 -v-day n 1 2 @ ~ 1 0 15162640 -v-e_day n 1 1 @ 1 0 15162764 -v-j_day n 1 1 @ 1 0 15162882 -v.p. n 1 2 @ ~ 1 0 10751265 -v_neck n 1 1 @ 1 0 04539535 -v_sign n 1 1 @ 1 0 07274197 -va n 2 5 @ #m #p %p - 2 0 09148970 08144122 -vac n 1 2 @ ; 1 0 15138401 -vacancy n 2 2 @ + 2 2 14455966 13910116 -vacancy_rate n 1 1 @ 1 0 13818916 -vacant_lot n 1 2 @ ~ 1 0 08676622 -vacation n 2 3 @ ~ + 2 1 15137890 01253665 -vacation_home n 1 1 @ 1 0 04517408 -vacation_spot n 1 3 @ ~ %p 1 0 08640739 -vacationer n 1 3 @ ~ + 1 0 10744164 -vacationing n 1 3 @ ~ + 1 1 01065805 -vacationist n 1 3 @ ~ + 1 0 10744164 -vaccaria n 1 3 @ #m %m 1 0 11818515 -vaccaria_hispanica n 1 2 @ #m 1 0 11818636 -vaccaria_pyramidata n 1 2 @ #m 1 0 11818636 -vaccina n 1 2 @ ~ 1 0 14358022 -vaccinating n 1 3 @ ~ + 1 1 00824054 -vaccination n 2 2 @ + 2 1 00823884 14364306 -vaccinator n 1 2 @ + 1 0 10207514 -vaccine n 1 3 @ ~ + 1 1 04517535 -vaccinee n 1 1 @ 1 0 10744456 -vaccinia n 2 2 @ ~ 2 0 14358022 14262882 -vaccinia_gangrenosa n 1 1 @ 1 0 14089719 -vaccinium n 1 3 @ #m %m 1 0 12245472 -vaccinium_angustifolium n 1 1 @ 1 0 12246941 -vaccinium_arboreum n 1 1 @ 1 0 12246773 -vaccinium_ashei n 1 1 @ 1 0 12247202 -vaccinium_caespitosum n 1 2 @ %p 1 0 12247407 -vaccinium_corymbosum n 1 2 @ %p 1 0 12247664 -vaccinium_macrocarpon n 1 2 @ %p 1 0 12245885 -vaccinium_myrsinites n 1 1 @ 1 0 12247963 -vaccinium_ovatum n 1 1 @ 1 0 12248141 -vaccinium_oxycoccus n 1 1 @ 1 0 12246037 -vaccinium_pallidum n 1 1 @ 1 0 12248941 -vaccinium_pennsylvanicum n 1 1 @ 1 0 12246941 -vaccinium_scoparium n 1 1 @ 1 0 12249122 -vaccinium_stamineum n 1 1 @ 1 0 12249294 -vaccinium_uliginosum_alpinum n 1 1 @ 1 0 12248780 -vaccinium_vitis-idaea n 1 2 @ %p 1 0 12249542 -vaccinum n 1 2 @ ~ 1 0 04517535 -vachel_lindsay n 1 1 @ 1 0 11133197 -vacillation n 2 2 @ + 2 0 05699434 00327824 -vacillator n 1 2 @ + 1 0 10603528 -vaclav_havel n 1 1 @ 1 0 11034596 -vacuity n 3 2 @ + 3 0 14456054 08653474 05174023 -vacuolation n 1 1 @ 1 0 14077693 -vacuole n 1 2 @ #p 1 0 05447087 -vacuolisation n 1 1 @ 1 0 14077693 -vacuolization n 1 1 @ 1 1 14077693 -vacuousness n 1 2 @ + 1 0 05647451 -vacuum n 4 4 @ ~ %p + 4 1 14456054 13910116 08653474 04517823 -vacuum_aspiration n 1 1 @ 1 0 00669687 -vacuum_bag n 1 2 @ #p 1 0 03258192 -vacuum_bomb n 1 1 @ 1 0 04420461 -vacuum_bottle n 1 2 @ ~ 1 0 04518132 -vacuum_chamber n 1 1 @ 1 0 04517999 -vacuum_cleaner n 1 3 @ ~ %p 1 1 04517823 -vacuum_flask n 1 2 @ ~ 1 0 04518132 -vacuum_gage n 1 1 @ 1 0 04518343 -vacuum_gauge n 1 1 @ 1 0 04518343 -vacuum_pump n 1 2 @ ~ 1 0 02692513 -vacuum_tube n 1 4 @ ~ #p %p 1 0 04494204 -vade_mecum n 1 2 @ ~ 1 0 06421301 -vaduz n 1 2 @ #p 1 0 08960843 -vagabond n 2 3 @ ~ + 2 1 09468237 10744544 -vagabondage n 1 3 @ ~ + 1 0 00297062 -vagary n 1 1 @ 1 0 07337096 -vagina n 1 4 @ #p %p + 1 0 05521111 -vaginal_artery n 1 2 @ #p 1 0 05356083 -vaginal_birth n 1 3 @ ~ %p 1 0 13448334 -vaginal_discharge n 1 1 @ 1 0 14853796 -vaginal_smear n 1 1 @ 1 0 05266759 -vaginismus n 1 1 @ 1 0 00370885 -vaginitis n 1 2 @ #p 1 0 14358335 -vaginocele n 1 2 @ ~ 1 0 14295691 -vagn_walfrid_ekman n 1 1 @ 1 0 10955748 -vagrancy n 1 2 @ + 1 0 13943236 -vagrant n 1 3 @ ~ + 1 0 10744544 -vagueness n 2 3 @ ~ + 2 1 04824350 04704839 -vagus n 1 2 @ + 1 0 05480076 -vagus_nerve n 1 1 @ 1 0 05480076 -vainglory n 1 2 @ + 1 0 04887373 -vaisakha n 1 2 @ #p 1 0 15220027 -vaishnava n 1 2 @ #m 1 0 09685711 -vaishnavism n 2 3 @ #m %m 2 0 08097391 06239215 -vaisnavism n 2 3 @ #m %m 2 0 08097391 06239215 -vaisya n 2 3 @ #m %m 2 0 10744844 08307267 -vajra n 1 1 @ 1 0 09529573 -valance n 1 1 @ 1 0 03111296 -valance_board n 1 1 @ 1 0 03111296 -valdecoxib n 1 1 @ 1 0 04518468 -valdez n 1 2 @ #p 1 0 09056677 -valdosta n 1 2 @ #p 1 0 09077977 -vale n 1 2 @ ~ 1 0 09468604 -valediction n 2 1 @ 2 0 07243565 00053525 -valedictorian n 1 1 @ 1 0 10745006 -valedictory n 1 2 @ + 1 0 07243565 -valedictory_address n 1 1 @ 1 0 07243565 -valedictory_oration n 1 1 @ 1 0 07243565 -valedictory_speaker n 1 1 @ 1 0 10745006 -valence n 2 4 @ ~ = ; 2 0 05034989 05034473 -valence_electron n 1 1 @ 1 0 09468447 -valencia n 2 2 @ #p 2 0 09163077 09028477 -valencia_orange n 1 1 @ 1 0 07749312 -valenciennes n 2 2 @ #p 2 0 08938478 04518643 -valenciennes_lace n 1 1 @ 1 0 04518643 -valency n 3 5 @ ~ = + ; 3 0 11436491 05034989 05034473 -valentina_tereshkova n 1 1 @ 1 0 11336364 -valentina_vladmirovna_tereshkova n 1 1 @ 1 0 11336364 -valentine n 2 1 @ 2 0 10745181 06627816 -valentine's_day n 1 2 @ #p 1 0 15187250 -valentine_day n 1 2 @ #p 1 0 15187250 -valerian n 1 3 @ ~ #m 1 0 12950126 -valerian_family n 1 3 @ #m %m 1 0 12949722 -valeriana n 1 3 @ #m %m 1 0 12949955 -valeriana_officinalis n 1 1 @ 1 0 12950314 -valerianaceae n 1 3 @ #m %m 1 0 12949722 -valerianella n 1 3 @ #m %m 1 0 12950501 -valerianella_locusta n 1 1 @ 1 0 12950796 -valerianella_olitoria n 1 1 @ 1 0 12950796 -valeric_acid n 1 1 @ 1 0 14740094 -valet n 1 2 @ + 1 1 10745332 -valet_de_chambre n 1 1 @ 1 0 10745332 -valet_parking n 1 1 @ 1 0 00099061 -valetta n 1 2 @ #p 1 0 08966647 -valetudinarian n 1 2 @ + 1 0 10745613 -valetudinarianism n 1 2 @ ~ 1 0 14547643 -valgus n 1 2 ! @ 1 0 14468693 -valhalla n 1 2 @ ; 1 0 05629204 -vali n 1 2 @ ; 1 0 09584079 -valiance n 1 1 @ 1 0 04857738 -valiancy n 1 2 @ + 1 0 04857738 -validation n 2 3 @ ~ + 2 1 00153961 05826291 -validity n 3 3 @ ~ + 3 2 04783567 04809453 05031012 -validness n 1 3 @ ~ + 1 0 04809453 -valine n 1 1 @ 1 0 15086088 -valise n 1 1 @ 1 0 04518764 -valium n 1 2 @ ; 1 0 03189995 -valkyrie n 1 3 @ ~ ; 1 0 09590772 -valle_d'aosta n 1 2 @ #p 1 0 08812842 -vallecula n 1 3 @ ~ ; 1 0 05222591 -valletta n 1 2 @ #p 1 0 08966647 -valley n 1 2 @ ~ 1 1 09468604 -valley_fever n 1 1 @ 1 0 14147014 -valley_girl n 1 1 @ 1 0 10745770 -valley_oak n 1 1 @ 1 0 12273939 -valley_pocket_gopher n 1 2 @ #m 1 0 02354621 -valley_white_oak n 1 1 @ 1 0 12273939 -vallisneria n 1 3 @ #m %m 1 0 12615097 -vallisneria_spiralis n 1 2 @ #m 1 0 12615232 -valmy n 1 2 @ ; 1 0 01298371 -valois n 1 2 @ %m 1 0 08159464 -valor n 1 2 @ + 1 1 04857738 -valorousness n 1 2 @ + 1 0 04857738 -valour n 1 1 @ 1 0 04857738 -valparaiso n 1 2 @ #p 1 0 08722084 -valproic_acid n 1 1 @ 1 0 04518854 -valsartan n 1 1 @ 1 0 04519019 -valse n 1 1 @ 1 0 00537534 -valuable n 1 3 @ ~ + 1 0 13371030 -valuableness n 1 3 @ ~ + 1 0 05141222 -valuation n 2 3 @ ~ + 2 1 05736149 13305673 -valuation_account n 1 1 @ 1 0 13370215 -valuation_reserve n 1 1 @ 1 0 13370215 -valuator n 1 3 @ ~ + 1 0 09802050 -value n 6 5 @ ~ = + ; 6 4 05856388 05138488 13413493 04979425 15134913 05923983 -value-added_tax n 1 1 @ 1 0 13316722 -value-system n 1 2 @ ~ 1 1 05956019 -value_judgement n 1 2 @ ~ 1 0 00875838 -value_judgment n 1 2 @ ~ 1 0 00875838 -value_orientation n 1 2 @ ~ 1 1 05956019 -value_statement n 1 1 @ 1 1 06739676 -valuelessness n 1 2 @ + 1 0 05140454 -valuer n 1 3 @ + ; 1 0 10745894 -values n 1 1 @ 1 1 05954894 -valve n 5 5 @ ~ #p %p + 5 2 05395286 04519536 04519153 01904583 01904461 -valve-in-head_engine n 1 1 @ 1 0 04519728 -valve_rocker n 1 1 @ 1 0 04099003 -valvelet n 1 2 @ + 1 0 05395548 -valvotomy n 1 1 @ 1 0 00698474 -valvula n 1 1 @ 1 0 05395548 -valvular_heart_disease n 1 2 @ ~ 1 0 14112466 -valvular_incompetence n 1 1 @ 1 0 14076011 -valvule n 1 1 @ 1 0 05395548 -valvulitis n 1 1 @ 1 0 14358474 -valvulotomy n 1 1 @ 1 0 00698474 -vambrace n 1 2 @ #p 1 0 04519887 -vamp n 3 3 @ #p + 3 0 09965134 07032206 04520020 -vamper n 1 2 @ + 1 0 09965134 -vampire n 1 2 @ ; 1 0 09544109 -vampire_bat n 1 3 @ ~ #m 1 0 02150482 -vampirism n 2 1 @ 2 0 05955095 01267808 -van n 5 3 @ ~ ; 5 0 08465558 08215495 04520480 04520382 04520170 -van_allen n 1 1 @ 1 0 11358374 -van_allen_belt n 1 2 @ #p 1 0 08676760 -van_beethoven n 1 1 @ 1 0 10841405 -van_bogaert_encephalitis n 1 1 @ 1 0 14344189 -van_buren n 1 1 @ 1 0 11358719 -van_de_graaff n 1 1 @ 1 0 11359037 -van_de_graaff_generator n 1 2 @ ~ 1 0 03280394 -van_de_velde n 1 1 @ 1 0 11359558 -van_der_waal's_forces n 1 1 @ 1 1 11522815 -van_der_waals n 1 1 @ 1 0 11359412 -van_doren n 1 1 @ 1 0 11359697 -van_dyck n 1 1 @ 1 0 11359867 -van_eyck n 1 1 @ 1 0 10964052 -van_gogh n 1 1 @ 1 0 11360022 -van_vleck n 1 1 @ 1 0 11360175 -van_wyck_brooks n 1 1 @ 1 0 10866090 -vanadate n 1 1 @ 1 0 15086811 -vanadic_acid n 1 1 @ 1 0 15087090 -vanadinite n 1 2 @ %s 1 0 15086939 -vanadium n 1 2 @ #s 1 0 14661020 -vanadium_pentoxide n 1 1 @ 1 0 15087090 -vanadium_steel n 1 1 @ 1 0 15087244 -vanbrugh n 1 1 @ 1 0 11358598 -vancocin n 1 2 @ ; 1 0 04520618 -vancomycin n 1 1 @ 1 0 04520618 -vancouver n 3 2 @ #p 3 0 11358863 09154905 08823480 -vancouver_island n 1 3 @ #p ; 1 0 08823728 -vanda n 1 3 @ ~ #m 1 0 12086012 -vanda_caerulea n 1 2 @ #m 1 0 12086192 -vandal n 2 2 @ + 2 1 10746056 10746195 -vandalism n 1 1 @ 1 1 01249816 -vanderbilt n 1 1 @ 1 0 11359187 -vandyke n 2 1 @ 2 0 11359867 05263316 -vandyke_beard n 1 1 @ 1 0 05263316 -vandyke_brown n 1 1 @ 1 0 04972268 -vane n 4 4 @ ~ #p %p 4 0 04568069 04520784 02848523 01897991 -vanellus n 1 3 @ #m %m 1 0 02024636 -vanern n 1 2 @ #p 1 0 09333905 -vanessa n 1 3 @ #m %m 1 0 02275921 -vanessa_atalanta n 1 2 @ #m 1 0 02276355 -vanessa_bell n 1 2 @ #m 1 0 10842376 -vanessa_stephen n 1 2 @ #m 1 0 10842376 -vanessa_virginiensis n 1 2 @ #m 1 0 02276078 -vanguard n 3 1 @ 3 1 08215495 08465558 06209419 -vanguards_of_conquest n 1 2 @ ; 1 0 08012765 -vangueria n 1 3 @ #m %m 1 0 12670558 -vangueria_infausta n 1 3 @ #m %p 1 0 12670758 -vangueria_madagascariensis n 1 2 @ #m 1 0 12670962 -vanilla n 3 4 @ ~ #m %s 3 0 12086539 07828807 05716462 -vanilla_bean n 1 4 @ #s #p %s 1 0 07828642 -vanilla_extract n 1 2 @ %s 1 0 07828807 -vanilla_ice_cream n 1 1 @ 1 0 07615671 -vanilla_orchid n 1 3 @ #m %p 1 0 12086778 -vanilla_planifolia n 1 3 @ #m %p 1 0 12086778 -vanilla_pudding n 1 1 @ 1 0 07618281 -vanillin n 1 2 @ #s 1 0 12087032 -vanir n 1 2 @ ; 1 0 09579345 -vanisher n 1 2 @ + 1 0 10746346 -vanishing n 2 2 @ + 2 0 07336104 00053806 -vanishing_cream n 1 1 @ 1 0 03067339 -vanishing_point n 2 2 @ #p 2 1 08676951 04676959 -vanity n 4 3 @ ~ + 4 1 07508996 05141040 04887129 03238586 -vanity_fair n 1 1 @ 1 0 04931152 -vannevar_bush n 1 1 @ 1 0 10875681 -vanquisher n 1 3 @ ~ + 1 0 09956578 -vantage n 2 2 @ ~ 2 0 08677075 05155821 -vantage_point n 1 1 @ 1 1 08677250 -vanua_levu n 1 2 @ #p 1 0 08779042 -vanuatu n 1 3 @ #p %p 1 0 09160775 -vanzetti n 1 1 @ 1 0 11360311 -vapidity n 1 2 @ + 1 0 05206573 -vapidness n 1 2 @ + 1 0 05206573 -vapor n 2 3 @ ~ + 2 2 15055633 13572436 -vapor_bath n 2 2 @ ~ 2 0 04308583 00258530 -vapor_density n 1 1 @ 1 0 04941809 -vapor_lock n 1 1 @ 1 0 04521125 -vapor_pressure n 1 1 @ 1 1 11523031 -vaporing n 1 1 @ 1 0 07229747 -vaporisation n 2 3 @ ~ + 2 0 13572436 00218902 -vaporiser n 1 1 @ 1 0 04520962 -vaporization n 2 3 @ ~ + 2 1 00218902 13572436 -vaporizer n 1 1 @ 1 0 04520962 -vaporousness n 1 1 @ 1 0 04704116 -vapors n 1 1 @ 1 0 14404460 -vapour n 2 2 @ ~ 2 0 15055633 13572436 -vapour_bath n 2 2 @ ~ 2 0 04308583 00258530 -vapour_density n 1 1 @ 1 0 04941809 -vapour_lock n 1 1 @ 1 0 04521125 -vapour_pressure n 1 1 @ 1 0 11523031 -vapourousness n 1 1 @ 1 0 04704116 -vapours n 1 1 @ 1 0 14404460 -vaquero n 1 1 @ 1 1 09973209 -vaquita n 1 1 @ 1 0 02070776 -var n 1 2 @ #p 1 0 13645132 -var. n 1 3 @ #m ; 1 1 08111157 -vara n 1 1 @ 1 0 13652661 -varan n 1 3 @ ~ #m 1 0 01694709 -varanidae n 1 3 @ #m %m 1 0 01694430 -varanus n 1 3 @ #m %m 1 0 01694558 -varanus_komodoensis n 1 1 @ 1 0 01695060 -varanus_niloticus n 1 1 @ 1 0 01694955 -vardenafil n 1 1 @ 1 0 04521428 -varese n 1 1 @ 1 0 11360534 -vargas n 1 1 @ 1 0 11360744 -vargas_llosa n 1 1 @ 1 0 11360895 -variability n 2 4 ! @ ~ + 2 1 04735233 04771890 -variable n 4 3 @ ~ + 4 2 09468959 05857459 09469152 07271280 -variable-pitch_propeller n 1 1 @ 1 0 04521571 -variable_quantity n 1 2 @ ~ 1 0 05857459 -variable_resistor n 1 3 @ ~ %p 1 1 04086794 -variable_star n 1 2 @ ~ 1 0 09469152 -variableness n 1 4 ! @ ~ + 1 0 04735233 -variance n 7 4 @ ~ + ; 7 0 07366627 07181842 06024936 04749709 04735233 01142150 00194969 -variant n 4 4 @ #m + ; 4 1 07366627 08111157 05864177 05840650 -variate n 1 2 @ + 1 0 05864177 -variation n 11 4 @ ~ + ; 11 5 07337390 00194969 07030012 05840650 04521699 13893310 13572324 11415084 10341660 00529101 00195194 -varicella n 1 1 @ 1 0 14132975 -varicella_zoster_virus n 1 1 @ 1 0 01340014 -varicocele n 1 1 @ 1 0 14573303 -varicose_vein n 1 1 @ 1 0 05421586 -varicosis n 1 1 @ 1 0 14573432 -varicosity n 1 3 @ ~ + 1 0 14573553 -varied_lorikeet n 1 2 @ #m 1 0 01820801 -variedness n 1 3 ! @ + 1 0 04735556 -variegated_horsetail n 1 1 @ 1 0 13220663 -variegated_scouring_rush n 1 1 @ 1 0 13220663 -variegation n 2 2 @ + 2 0 04735828 00195569 -varietal n 1 2 ! @ 1 0 07900225 -varietal_wine n 1 2 ! @ 1 0 07900225 -variety n 6 5 @ ~ #p = ; 6 3 08398773 04751305 08101085 07020239 05839024 04752034 -variety_meat n 1 2 @ ~ 1 0 07651454 -variety_show n 1 2 @ ~ 1 0 07020239 -variola n 1 3 @ ~ %p 1 0 14124423 -variola_major n 2 3 @ ~ %p 2 0 14124423 01334217 -variola_major_virus n 1 1 @ 1 0 01334217 -variola_minor n 2 1 @ 2 0 14124688 01334368 -variola_minor_virus n 1 1 @ 1 0 01334368 -variola_vaccina n 1 2 @ ~ 1 0 14358022 -variola_vaccine n 1 2 @ ~ 1 0 14358022 -variola_vaccinia n 1 2 @ ~ 1 0 14358022 -variola_virus n 1 2 @ ~ 1 0 01334036 -variolation n 1 1 @ 1 0 00824614 -variolization n 1 1 @ 1 0 00824614 -variometer n 1 1 @ 1 0 04521863 -variorum n 1 1 @ 1 0 06590723 -variorum_edition n 1 1 @ 1 0 06590723 -variously-leaved_pondweed n 1 2 @ #m 1 0 12616442 -varix n 1 2 @ ~ 1 0 14573713 -varlet n 2 1 @ 2 0 10536728 10391086 -varment n 1 1 @ 1 0 01316288 -varmint n 2 1 @ 2 0 10748506 01316288 -varna n 2 5 @ ~ #p %m ; 2 0 08714966 08306665 -varnish n 1 3 @ ~ + 1 0 04521987 -varnish_tree n 2 3 @ #m %p 2 0 12927494 12767648 -varnisher n 1 2 @ + 1 0 10746460 -varro n 1 1 @ 1 0 11361039 -varsity n 2 1 @ 2 0 08287182 08080652 -varsity_letter n 1 1 @ 1 0 06706504 -varsity_sock n 1 1 @ 1 0 02752496 -varuna n 1 1 @ 1 0 09529644 -varus n 1 2 ! @ 1 0 14468870 -varying_hare n 1 1 @ 1 0 02327842 -vas n 1 3 @ ~ #p 1 0 05397333 -vas_deferens n 1 2 @ #p 1 0 05526175 -vasa_brevis n 1 1 @ 1 0 05346191 -vasa_efferentia n 1 2 @ #p 1 0 05525970 -vasa_vasorum n 1 1 @ 1 1 05418585 -vasarely n 1 1 @ 1 0 11361142 -vasari n 1 1 @ 1 0 11361288 -vasco_da_gamma n 1 1 @ 1 0 10920582 -vasco_nunez_de_balboa n 1 1 @ 1 0 10831860 -vascular_bundle n 1 2 @ ~ 1 0 13097949 -vascular_hemophilia n 1 1 @ 1 0 14171176 -vascular_plant n 1 3 @ ~ %p 1 0 13083586 -vascular_ray n 1 1 @ 1 0 13098515 -vascular_spider n 1 1 @ 1 0 14248069 -vascular_strand n 1 2 @ ~ 1 0 13097949 -vascular_structure n 1 2 @ ~ 1 0 05397178 -vascular_system n 1 4 @ ~ #p %p 1 0 05511286 -vascular_tissue n 1 3 @ ~ #p 1 0 13096863 -vascularisation n 1 1 @ 1 0 13572860 -vascularity n 1 2 @ + 1 0 05214469 -vascularization n 1 2 @ + 1 0 13572860 -vasculitis n 1 1 @ 1 0 14358622 -vase n 1 2 @ ~ 1 1 04522168 -vase-fine n 1 1 @ 1 0 11730933 -vase_vine n 1 1 @ 1 0 11730933 -vasectomy n 1 2 @ + 1 0 00716179 -vaseline n 1 2 @ ; 1 0 04522309 -vaslav_nijinsky n 1 1 @ 1 0 11207585 -vasoconstriction n 1 1 @ 1 0 01150096 -vasoconstrictive n 1 2 @ ~ 1 0 04522421 -vasoconstrictor n 1 2 @ ~ 1 0 04522421 -vasodilation n 1 1 @ 1 0 00366207 -vasodilative n 1 2 @ ~ 1 0 04522904 -vasodilator n 1 2 @ ~ 1 0 04522904 -vasomax n 1 2 @ ; 1 0 03922561 -vasopressin n 1 1 @ 1 0 05414147 -vasopressor n 1 1 @ 1 0 04523201 -vasosection n 1 1 @ 1 0 00716397 -vasotec n 1 2 @ ; 1 0 03285106 -vasotomy n 1 1 @ 1 0 00716397 -vasovasostomy n 1 1 @ 1 0 00716520 -vasovesiculitis n 1 1 @ 1 0 14358709 -vassal n 1 1 @ 1 0 10746581 -vassalage n 1 1 @ 1 0 13998263 -vastness n 1 3 @ ~ + 1 0 05104548 -vat n 2 2 @ ~ 2 0 13316722 04493381 -vat_color n 1 1 @ 1 0 15001887 -vat_dye n 1 1 @ 1 0 15001887 -vatican n 1 2 @ #p 1 1 04523380 -vatican_city n 1 3 @ #p %p 1 0 09161452 -vatican_council n 1 2 @ ~ 1 0 08317885 -vatican_i n 1 1 @ 1 0 08318032 -vatican_ii n 1 1 @ 1 0 08318216 -vatican_palace n 1 2 @ #p 1 0 04523380 -vaticination n 1 3 @ ~ + 1 0 05775407 -vaticinator n 1 3 @ ~ + 1 0 10483530 -vaudeville n 1 1 @ 1 1 07020423 -vaudeville_theater n 1 1 @ 1 0 03801533 -vaudeville_theatre n 1 1 @ 1 0 03801533 -vaudevillian n 1 2 @ ~ 1 0 10746799 -vaudois n 1 1 @ 1 0 08150892 -vaughan n 1 1 @ 1 0 11361423 -vaughan_williams n 1 1 @ 1 0 11361585 -vault n 4 5 @ ~ #p %p + 4 1 04523690 04523831 04523525 00120515 -vault_of_heaven n 1 2 @ %p 1 0 08521267 -vaulter n 1 2 @ + 1 0 10746931 -vaulting n 2 4 @ ~ + ; 2 0 04523993 00288190 -vaulting_horse n 1 1 @ 1 0 04524142 -vaunt n 1 2 @ + 1 0 07230227 -vaunter n 1 2 @ + 1 0 09872066 -vaux n 1 1 @ 1 0 11361757 -vayu n 1 1 @ 1 0 09529933 -vcr n 1 1 @ 1 0 04533802 -vd n 1 2 @ ~ 1 0 14133159 -vdu n 1 2 @ ; 1 0 04539053 -veadar n 1 2 @ #p 1 0 15215693 -veal n 1 4 @ ~ #p %p 1 0 07665308 -veal_cordon_bleu n 1 1 @ 1 0 07666176 -veal_parmesan n 1 1 @ 1 0 07665438 -veal_parmigiana n 1 1 @ 1 0 07665438 -veal_roast n 1 2 @ ~ 1 0 07665844 -veal_scallopini n 1 1 @ 1 0 07876460 -veau n 1 4 @ ~ #p %p 1 0 07665308 -veblen n 2 1 @ 2 0 11362022 11361913 -vector n 4 3 @ ~ ; 4 1 05864577 13913263 09469285 01372038 -vector-borne_transmission n 1 1 @ 1 0 09469744 -vector_algebra n 1 3 @ ~ ; 1 0 06013298 -vector_decomposition n 1 1 @ 1 0 06013471 -vector_product n 1 1 @ 1 0 05864758 -vector_sum n 1 1 @ 1 0 05865034 -veda n 1 4 @ ~ + ; 1 0 06464419 -vedalia n 1 2 @ #m 1 0 02166826 -vedanga n 1 1 @ 1 0 06465780 -vedanta n 1 2 @ ; 1 0 06238574 -vedic_literature n 1 3 @ ~ ; 1 0 06464419 -vedism n 1 2 @ + 1 0 06245286 -vedist n 1 2 @ + 1 0 10747294 -veering n 1 2 @ + 1 0 01263257 -veery n 1 2 @ #m 1 0 01559639 -veg n 1 4 @ ~ #p ; 1 0 07707451 -vega n 2 2 @ #m 2 0 11362195 09469912 -vegan n 1 1 @ 1 0 10747424 -vegetable n 2 3 @ ~ #p 2 1 07707451 12212361 -vegetable_garden n 1 2 @ ~ 1 0 03620443 -vegetable_hummingbird n 1 2 @ #m 1 0 12569851 -vegetable_ivory n 1 2 @ #p 1 0 12594533 -vegetable_marrow n 2 4 @ ~ #p %p 2 0 12159555 07716504 -vegetable_matter n 1 2 @ ~ 1 0 15110956 -vegetable_oil n 1 3 @ ~ #s 1 0 07673397 -vegetable_oyster n 2 4 @ #m #p %p 2 0 12027222 07735179 -vegetable_patch n 1 2 @ ~ 1 1 03620443 -vegetable_sheep n 2 2 @ #m 2 0 12006306 11975658 -vegetable_silk n 1 2 @ #s 1 0 14925776 -vegetable_soup n 1 1 @ 1 0 07586894 -vegetable_sponge n 1 1 @ 1 0 12166793 -vegetable_tallow n 1 1 @ 1 0 15062641 -vegetable_wax n 1 1 @ 1 0 15095496 -vegetarian n 1 2 @ ~ 1 0 10747119 -vegetarianism n 1 2 @ ~ 1 0 07564971 -vegetation n 4 6 @ ~ #m + ; - 4 1 08436759 13573057 05603854 01065057 -vegetative_cell n 1 2 @ ~ 1 0 05430628 -veggie n 1 3 @ ~ #p 1 0 07707451 -vehemence n 2 3 @ ~ + 2 1 05037394 05037813 -vehicle n 4 4 @ ~ %p + 4 2 04524313 06255081 15112086 09283193 -vehicle-borne_transmission n 1 1 @ 1 0 09470027 -vehicle_traffic n 1 2 @ ~ 1 0 08425888 -vehicular_traffic n 1 2 @ ~ 1 0 08425888 -veil n 4 4 @ ~ #p + 4 1 03502331 13094556 05310596 03548930 -veiled_accusation n 1 1 @ 1 0 07238308 -veiling n 1 2 @ ~ 1 0 03429914 -vein n 5 4 @ ~ #p + 5 2 05418717 07089622 13098186 09470222 02468735 -vein_of_penis n 1 2 @ ~ 1 0 05421997 -vela n 1 2 @ #p 1 0 09470343 -velar n 1 1 @ 1 0 07120025 -velar_consonant n 1 1 @ 1 0 07120025 -velazquez n 1 1 @ 1 0 11362329 -velban n 1 2 @ ; 1 0 04535634 -velcro n 1 3 @ + ; 1 0 04524594 -veld n 1 1 @ 1 0 08677424 -veldt n 1 1 @ 1 0 08677424 -velleity n 2 1 @ 2 0 07486527 05652843 -vellication n 1 3 @ ~ + 1 0 14361664 -vellum n 2 1 @ 2 1 15087384 14759147 -velocipede n 2 2 @ ~ 2 0 04524716 04482393 -velociraptor n 1 2 @ #m 1 0 01717467 -velocity n 1 2 @ ~ 1 1 15282696 -velodrome n 1 1 @ 1 0 04524833 -velour n 1 1 @ 1 1 04524941 -velours n 1 1 @ 1 1 04524941 -veloute n 1 1 @ 1 0 07840027 -velum n 2 5 @ ~ #p %p + 2 0 13094556 05309392 -velveeta n 1 1 @ 1 0 07855317 -velvet n 1 2 @ + 1 1 04525038 -velvet-leaf n 2 2 @ #m 2 0 12182615 12173069 -velvet_ant n 1 2 @ #m 1 0 02214773 -velvet_bean n 1 2 @ %p 1 0 12550408 -velvet_bent n 1 1 @ 1 0 12107002 -velvet_bent_grass n 1 1 @ 1 0 12107002 -velvet_flower n 1 1 @ 1 0 11823572 -velvet_grass n 1 1 @ 1 0 12122725 -velvet_osier n 1 2 @ #m 1 0 12731029 -velvet_plant n 2 3 @ ~ #m 2 0 12888906 11975254 -velvet_sumac n 1 1 @ 1 0 12764202 -velvet_worm n 1 3 @ ~ #m 1 0 01999767 -velveteen n 1 1 @ 1 0 04525191 -velvetleaf n 2 2 @ #m 2 0 12182615 12173069 -velvetweed n 1 2 @ #m 1 0 12173069 -vena n 1 3 @ ~ #p 1 0 05418717 -vena_anastomotica n 1 1 @ 1 0 05357366 -vena_angularis n 1 1 @ 1 0 05357500 -vena_appendicularis n 1 1 @ 1 0 05357867 -vena_arcuata_renis n 1 2 @ #p 1 0 05358036 -vena_auricularis n 1 1 @ 1 0 05358226 -vena_axillaris n 1 1 @ 1 0 05358345 -vena_azygos n 1 1 @ 1 0 05358507 -vena_basalis n 1 1 @ 1 0 05358764 -vena_basilica n 1 2 @ #p 1 0 05358944 -vena_basivertebralis n 1 1 @ 1 0 05359124 -vena_brachialis n 1 1 @ 1 0 05359347 -vena_brachiocephalica n 1 1 @ 1 0 05359516 -vena_bronchialis n 1 1 @ 1 0 05359695 -vena_bulbi_penis n 1 2 @ #p 1 0 05421723 -vena_bulbi_vestibuli n 1 1 @ 1 0 05422574 -vena_canaliculi_cochleae n 1 1 @ 1 0 05421900 -vena_cava n 1 2 @ ~ 1 0 05422668 -vena_centrales_retinae n 1 1 @ 1 0 05360678 -vena_centralis_glandulae_suprarenalis n 1 1 @ 1 0 05360880 -vena_cephalica n 1 2 @ #p 1 0 05361123 -vena_cephalica_accessoria n 1 2 @ #p 1 0 05356442 -vena_cerebellum n 1 1 @ 1 0 05361278 -vena_cerebri n 1 2 @ ~ 1 0 05361391 -vena_cerebri_anterior n 1 1 @ 1 0 05361640 -vena_cerebri_magna n 1 1 @ 1 0 05362016 -vena_cerebri_media n 1 2 @ ~ 1 0 05362593 -vena_cerebrum_internus n 1 1 @ 1 0 05362405 -vena_cerebrum_superior n 1 1 @ 1 0 05363064 -vena_cervicalis_profunda n 1 1 @ 1 0 05363270 -vena_choroidea n 1 1 @ 1 0 05363428 -vena_circumflexa n 1 2 @ ~ 1 0 05363676 -vena_circumflexa_ilium n 1 1 @ 1 0 05363868 -vena_circumflexus_femoris n 1 1 @ 1 0 05364000 -vena_clitoridis n 1 2 @ ~ 1 0 05364184 -vena_colica n 1 1 @ 1 0 05364345 -vena_comitans n 1 1 @ 1 0 05357160 -vena_cutanea n 1 1 @ 1 0 05364905 -vena_cystica n 1 1 @ 1 0 05365059 -vena_digitalis n 1 1 @ 1 0 05365164 -vena_diploica n 1 1 @ 1 0 05365284 -vena_dorsalis_clitoridis_profunda n 1 1 @ 1 0 05423443 -vena_emissaria n 1 1 @ 1 0 05365838 -vena_epigastrica_inferior n 1 1 @ 1 0 05366206 -vena_epigastrica_superficialis n 1 1 @ 1 0 05366341 -vena_ethmoidalis n 1 1 @ 1 0 05367003 -vena_facialis n 1 3 @ ~ #p 1 0 05367341 -vena_facialis_anterior n 1 1 @ 1 0 05361805 -vena_femoralis n 1 2 @ #p 1 0 05367508 -vena_gastrica n 1 3 @ ~ #p 1 0 05367735 -vena_gastrica-dextra n 1 1 @ 1 0 05378850 -vena_gastrica_sinistra n 1 1 @ 1 0 05372725 -vena_gastroomentalis n 1 2 @ #p 1 0 05367912 -vena_genus n 1 2 @ #p 1 0 05368100 -vena_gluteus n 1 1 @ 1 0 05368739 -vena_hemiazygos_accessoria n 1 1 @ 1 0 05356657 -vena_hemizygos n 1 1 @ 1 0 05368874 -vena_hepatica n 1 2 @ #p 1 0 05369254 -vena_ileocolica n 1 1 @ 1 0 05369566 -vena_iliaca n 1 2 @ ~ 1 0 05370125 -vena_iliolumbalis n 1 1 @ 1 0 05370293 -vena_intercapitalis n 1 2 @ #p 1 0 05370410 -vena_intercostalis n 1 1 @ 1 0 05370636 -vena_intervertebralis n 1 1 @ 1 0 05370781 -vena_jugularis n 1 3 @ ~ #p 1 0 05370918 -vena_labialis n 2 3 @ ~ #p 2 0 05372125 05371663 -vena_labialis_inferior n 1 1 @ 1 0 05371829 -vena_labialis_superior n 1 1 @ 1 0 05371977 -vena_lacrimalis n 1 2 @ #p 1 0 05372428 -vena_laryngea n 1 2 @ #p 1 0 05372593 -vena_lienalis n 1 2 @ #p 1 0 05380822 -vena_lingualis n 1 2 @ #p 1 0 05372924 -vena_lumbalis n 1 1 @ 1 0 05373145 -vena_maxillaris n 1 1 @ 1 0 05373300 -vena_mesenterica n 1 1 @ 1 0 05373616 -vena_metacarpus n 1 2 @ #p 1 0 05373790 -vena_metatarsus n 1 2 @ #p 1 0 05373924 -vena_musculophrenica n 1 1 @ 1 0 05374101 -vena_nasalis_externa n 1 1 @ 1 0 05367165 -vena_nasofrontalis n 1 1 @ 1 0 05374280 -vena_obliqua_atrii_sinistri n 1 1 @ 1 0 05374475 -vena_obturatoria n 1 1 @ 1 0 05374658 -vena_occipitalis n 1 1 @ 1 0 05374861 -vena_ophthalmica n 1 2 @ ~ 1 0 05374980 -vena_ovarica n 1 1 @ 1 0 05375530 -vena_palatina n 1 1 @ 1 0 05375729 -vena_paraumbilicalis n 1 1 @ 1 0 05376050 -vena_pectoralis n 1 1 @ 1 0 05376391 -vena_perforantis n 1 1 @ 1 0 05376541 -vena_pericardiaca n 1 1 @ 1 0 05376721 -vena_peroneus n 1 2 @ #p 1 0 05376844 -vena_pharyngeus n 1 1 @ 1 0 05377098 -vena_phrenica n 1 1 @ 1 0 05377252 -vena_poplitea n 1 1 @ 1 0 05377371 -vena_portae n 1 2 @ #p 1 0 05377665 -vena_posterior_ventriculi_sinistri n 1 1 @ 1 0 05377833 -vena_profunda_penis n 1 1 @ 1 0 05422457 -vena_pulmanalis_inferior n 1 1 @ 1 0 05378458 -vena_pulmonalis n 1 3 @ ~ #p 1 0 05378234 -vena_pulmonalis_superior n 1 1 @ 1 0 05378654 -vena_pylorica n 1 1 @ 1 0 05378022 -vena_radialis n 1 2 @ #p 1 0 05379039 -vena_rectalis n 1 1 @ 1 0 05369092 -vena_renalis n 1 2 @ #p 1 0 05379247 -vena_retromandibularis n 1 1 @ 1 0 05379438 -vena_sacralis n 1 1 @ 1 0 05379635 -vena_saphena n 1 3 @ ~ #p 1 0 05379734 -vena_scapularis_dorsalis n 1 1 @ 1 0 05365420 -vena_scrotalis n 1 1 @ 1 0 05380404 -vena_sigmoideus n 1 2 @ #p 1 0 05380532 -vena_spinalis n 1 2 @ #p 1 0 05380697 -vena_sternocleidomastoidea n 1 1 @ 1 0 05381148 -vena_stylomastoidea n 1 1 @ 1 0 05381325 -vena_subclavia n 1 1 @ 1 0 05381491 -vena_sublingualis n 1 1 @ 1 0 05381666 -vena_supraorbitalis n 1 1 @ 1 0 05381779 -vena_supratrochlearis n 1 1 @ 1 0 05381956 -vena_temporalis n 1 2 @ ~ 1 0 05382135 -vena_testicularis n 1 2 @ #p 1 0 05382729 -vena_thoracica n 1 2 @ #p 1 0 05383467 -vena_thoracoepigastrica n 1 1 @ 1 0 05383004 -vena_thyroidea n 1 2 @ ~ 1 0 05383598 -vena_tibialis n 1 2 @ #p 1 0 05384300 -vena_trachealis n 1 1 @ 1 0 05384446 -vena_ulnaris n 1 2 @ #p 1 0 05384691 -vena_umbilicalis n 1 2 @ #p 1 0 05384817 -vena_vertebralis n 1 1 @ 1 0 05425207 -vena_vertebralis_accessoria n 1 1 @ 1 0 05356889 -vena_vertebralis_anterior n 1 1 @ 1 0 05357682 -vena_vesicalis n 1 1 @ 1 0 05425436 -vena_vestibularis n 1 1 @ 1 0 05425581 -vena_vorticosum n 1 1 @ 1 0 05425703 -venae_centrales_hepatis n 1 1 @ 1 0 05360470 -venae_cerebrum_inferior n 1 1 @ 1 0 05362197 -venae_ciliares n 1 1 @ 1 0 05363559 -venae_conjunctivales n 1 1 @ 1 0 05364612 -venae_dorsales_clitoridis_superficiales n 1 1 @ 1 0 05423595 -venae_dorsales_penis_profunda n 1 1 @ 1 0 05422317 -venae_dorsales_penis_superficiales n 1 1 @ 1 0 05422135 -venae_epigastricae_superiores n 1 1 @ 1 0 05366485 -venae_episclerales n 1 1 @ 1 0 05366640 -venae_esophageae n 1 1 @ 1 0 05366812 -venae_interlobulares_hepatis n 1 2 @ #p 1 0 05424074 -venae_interlobulares_renis n 1 2 @ #p 1 0 05423882 -venae_labiales_anteriores n 1 1 @ 1 0 05424351 -venae_labiales_posteriores n 1 1 @ 1 0 05424504 -venae_meningeae n 1 1 @ 1 0 05373495 -venae_palpebrales n 1 2 @ #p 1 0 05423779 -venae_pancreatica n 1 1 @ 1 0 05375881 -venae_profundae_clitoridis n 1 1 @ 1 0 05423319 -venae_pudendum n 1 1 @ 1 0 05378137 -venae_renis n 1 3 @ ~ #p 1 0 05424199 -venae_sclerales n 1 1 @ 1 0 05380252 -venality n 1 2 @ + 1 0 04854259 -venation n 2 3 @ #p ; 2 0 08373244 05421414 -vendee n 1 2 @ ~ 1 0 09885145 -vendemiaire n 1 2 @ #p 1 0 15175987 -vender n 1 3 @ ~ + 1 0 10577284 -vendetta n 1 1 @ 1 0 01236947 -vending n 1 2 @ + 1 1 01116968 -vending_machine n 1 2 @ ~ 1 1 04525305 -vendition n 1 2 @ + 1 0 01116968 -vendor n 1 3 @ ~ + 1 1 10577284 -vendue n 1 2 @ - 1 0 00092366 -veneer n 2 2 @ + 2 0 04525417 03315990 -veneering n 2 2 @ + 2 0 04525417 00927161 -venerability n 1 2 @ + 1 0 04869405 -venerableness n 1 2 @ + 1 0 04869405 -veneration n 2 3 @ ~ + 2 0 07521039 01044448 -venerator n 1 2 @ + 1 0 10747548 -venereal_disease n 1 2 @ ~ 1 0 14133159 -venereal_infection n 1 2 @ ~ 1 0 14133159 -venereal_wart n 1 1 @ 1 0 04696797 -veneridae n 1 3 @ #m %m 1 0 01957591 -venesection n 1 2 @ + 1 0 00698609 -venetia n 1 3 @ #p %p 1 0 08812952 -venetian n 1 3 @ #m + 1 0 09717454 -venetian_blind n 1 2 @ %p 1 1 04525584 -venetian_glass n 1 1 @ 1 0 04525729 -venetian_red n 1 2 @ ~ 1 0 04973386 -venetian_sumac n 1 1 @ 1 0 12760539 -veneto n 1 3 @ #p %p 1 0 08812952 -venezia n 1 4 @ #p %m %p 1 0 08813264 -venezia-euganea n 1 3 @ #p %p 1 0 08812952 -venezuela n 1 6 @ #m #p %m %p + 1 1 09161803 -venezuelan n 1 3 @ #m + 1 0 09747062 -venezuelan_monetary_unit n 1 2 @ ~ 1 0 13666675 -vengeance n 1 1 @ 1 1 01235463 -vengefulness n 1 2 @ + 1 0 07550891 -venial_sin n 1 2 ! @ 1 0 00758033 -venice n 1 5 @ #p %m %p + 1 1 08813264 -venipuncture n 1 2 @ ; 1 0 00944965 -venire n 1 2 @ ; 1 0 08414608 -venire_facias n 1 2 @ ; 1 0 06554531 -venison n 1 1 @ 1 0 07653311 -venn n 1 1 @ 1 0 11362452 -venn's_diagram n 1 1 @ 1 0 04525821 -venn_diagram n 1 1 @ 1 0 04525821 -venogram n 1 1 @ 1 0 04526112 -venography n 1 1 @ 1 0 00906046 -venom n 2 3 @ ~ + 2 0 15036916 07550666 -venomous_lizard n 1 3 @ ~ #m 1 0 01691951 -venous_blood n 1 1 @ 1 0 05402788 -venous_blood_system n 1 3 @ #p ; 1 0 05421414 -venous_blood_vessel n 1 3 @ ~ #p 1 0 05418717 -venous_pressure n 1 1 @ 1 0 11431058 -venous_sinus n 1 2 @ ~ 1 0 05252016 -venous_thrombosis n 1 2 @ ; 1 0 14353008 -vent n 5 5 @ ~ #p + - 5 2 04526241 01323901 09470550 04526416 01264447 -vent-hole n 1 3 @ ~ #p 1 0 04526241 -ventail n 1 2 @ #p 1 0 02941845 -venter n 4 6 @ ~ #p %p + ; 4 0 10747672 05556943 05424796 05424679 -venthole n 1 3 @ ~ #p 1 0 04526241 -ventilating_system n 1 2 @ %p 1 1 04526520 -ventilation n 4 4 @ ~ %p + 4 2 00266645 04526520 07144190 00831191 -ventilation_shaft n 1 2 @ #p 1 0 04526800 -ventilation_system n 1 2 @ %p 1 0 04526520 -ventilator n 2 5 @ ~ #p %p + 2 0 04526964 02895606 -venting n 1 2 @ + 1 0 01253277 -ventner n 1 1 @ 1 0 11362573 -ventolin n 1 2 @ ; 1 0 02695321 -ventose n 1 2 @ #p 1 0 15176785 -ventral_fin n 1 1 @ 1 0 02466731 -ventral_horn n 1 2 @ #p 1 0 05424963 -ventral_placentation n 1 1 @ 1 0 11682003 -ventral_root n 1 2 @ #p 1 0 05424963 -ventricle n 2 5 @ ~ #p %p + 2 0 05502556 05391763 -ventricular_aneurysm n 1 1 @ 1 0 14107849 -ventricular_fibrillation n 1 1 @ 1 0 14363139 -ventricular_fold n 1 1 @ 1 0 05530657 -ventricular_septal_defect n 1 2 @ #p 1 0 14469466 -ventriculus n 1 1 @ 1 0 01974229 -ventriloquism n 1 2 @ + 1 0 05636666 -ventriloquist n 1 2 @ + 1 0 10747815 -ventriloquist's_dummy n 1 1 @ 1 0 04527182 -ventriloquy n 1 2 @ + 1 0 05636666 -venture n 3 3 @ ~ + 3 3 00797878 13342692 01117164 -venture_capital n 1 2 @ + 1 0 13354260 -venture_capitalism n 1 1 @ 1 0 08364367 -venture_capitalist n 1 2 @ + 1 0 10747965 -venturer n 2 3 @ ~ + 2 0 10748142 09606009 -venturesomeness n 1 2 @ + 1 0 04859177 -venturi n 2 2 @ #p 2 0 11362885 04527310 -venturi_tube n 1 1 @ 1 0 04527475 -venue n 2 1 @ 2 0 08677628 08677525 -venula n 1 2 @ ~ 1 0 05426087 -venule n 1 2 @ ~ 1 0 05426087 -venus n 3 3 @ #m %m 3 2 09470762 09555127 01957739 -venus'-hair_fern n 1 1 @ 1 0 13207094 -venus'_slipper n 1 2 @ #m 1 0 12075830 -venus's_curse n 1 2 @ ~ 1 0 14133159 -venus's_flower_basket n 1 2 @ #m 1 0 01908042 -venus's_flytrap n 1 2 @ #m 1 0 12782915 -venus's_flytraps n 1 2 @ #m 1 0 12782915 -venus's_girdle n 1 2 @ #m 1 0 01921059 -venus's_shoe n 1 2 @ #m 1 0 12075830 -venus's_slipper n 1 2 @ #m 1 0 12075830 -venus_maidenhair n 1 1 @ 1 0 13207094 -venus_mercenaria n 1 4 @ ~ #m %p 1 0 01958038 -venushair n 1 1 @ 1 0 13207094 -veps n 2 2 @ #m 2 0 09707992 06958417 -vepse n 2 2 @ #m 2 0 09707992 06958417 -vepsian n 2 2 @ #m 2 0 09707992 06958417 -veracity n 1 3 ! @ + 1 1 04872414 -veracruz n 1 2 @ #p 1 0 08746475 -veranda n 1 2 @ ~ 1 1 04527648 -verandah n 1 2 @ ~ 1 1 04527648 -verapamil n 1 1 @ 1 0 04527808 -veratrum n 1 3 @ #m %m 1 0 12464278 -veratrum_viride n 1 1 @ 1 0 12464649 -verb n 2 6 @ ~ #m #p %p + 2 2 06318062 06320569 -verb_phrase n 1 1 @ 1 0 06316626 -verbal_creation n 1 2 @ ~ 1 0 00929586 -verbal_description n 1 2 @ ~ 1 0 06724763 -verbal_expression n 1 2 @ ~ 1 0 07139873 -verbal_intelligence n 1 1 @ 1 0 05619226 -verbal_noun n 1 2 @ ~ 1 0 06320314 -verbalisation n 2 2 @ + 2 0 07081043 07080868 -verbaliser n 1 2 @ ~ 1 0 10630188 -verbalism n 2 2 @ ~ 2 0 07139873 07090019 -verbalization n 2 2 @ + 2 0 07081043 07080868 -verbalizer n 1 3 @ ~ + 1 0 10630188 -verbascum n 1 3 @ #m %m 1 0 12888733 -verbascum_blattaria n 1 1 @ 1 0 12889219 -verbascum_lychnitis n 1 1 @ 1 0 12889412 -verbascum_phoeniceum n 1 1 @ 1 0 12889579 -verbascum_thapsus n 1 1 @ 1 0 12889713 -verbena n 1 2 @ #m 1 1 12914923 -verbena_family n 1 3 @ #m %m 1 0 12914433 -verbenaceae n 1 3 @ #m %m 1 0 12914433 -verbesina n 1 3 @ #m %m 1 0 12030265 -verbesina_alternifolia n 1 1 @ 1 0 12030908 -verbesina_encelioides n 1 1 @ 1 0 12031139 -verbesina_helianthoides n 1 1 @ 1 0 12031388 -verbesina_virginica n 1 1 @ 1 0 12031547 -verbiage n 2 2 @ ~ 2 0 07090019 07081739 -verbolatry n 1 1 @ 1 0 01044983 -verboseness n 1 4 ! @ ~ + 1 0 07089751 -verbosity n 1 3 @ ~ + 1 0 07089751 -verd_antique n 1 1 @ 1 0 14948055 -verdancy n 1 2 @ + 1 0 05116590 -verdandi n 1 1 @ 1 0 09582726 -verde_antique n 1 1 @ 1 0 14948055 -verdi n 1 1 @ 1 0 11363020 -verdicchio n 2 1 @ 2 0 13147918 07899660 -verdict n 1 3 @ ~ ; 1 1 01192150 -verdigris n 2 2 @ + 2 0 15096524 04528079 -verdin n 1 2 @ #m 1 0 01593553 -verdolagas n 1 2 @ #m 1 0 11858077 -verdun n 1 3 @ #p ; 1 0 01298573 -verdure n 2 1 @ 2 0 13153633 05116590 -verey_pistol n 1 1 @ 1 0 04530456 -verge n 4 4 @ ~ + ; 4 2 13903738 05125193 07267573 04528256 -verger n 1 1 @ 1 0 10748309 -vergil n 1 1 @ 1 0 11367436 -verification n 2 4 @ ~ + ; 2 1 05825245 06736769 -verifier n 1 2 @ + 1 0 10760763 -verisimilitude n 1 1 @ 1 1 04679300 -verity n 2 2 @ = 2 0 13956488 05819773 -verlaine n 1 1 @ 1 0 11363164 -vermeer n 1 1 @ 1 0 11363269 -vermicelli n 1 1 @ 1 0 07700868 -vermicide n 1 1 @ 1 0 04528354 -vermiculation n 2 2 @ + 2 0 13534773 04528490 -vermiculite n 1 1 @ 1 0 15087486 -vermiform_appendix n 1 2 @ #p 1 0 05537576 -vermiform_process n 1 2 @ #p 1 0 05537576 -vermifuge n 1 2 @ ~ 1 0 04528630 -vermilion n 1 2 @ + 1 0 04964977 -vermillion_flycatcher n 1 2 @ #m 1 0 01550172 -vermillion_rockfish n 1 1 @ 1 0 02644501 -vermin n 2 2 @ + 2 0 10748506 01315980 -vermis n 1 2 @ #p 1 0 05486159 -vermis_cerebelli n 1 2 @ #p 1 0 05486159 -vermont n 1 3 @ #p %p 1 1 09147964 -vermonter n 1 1 @ 1 0 09746014 -vermouth n 1 2 @ ~ 1 1 07899108 -vernacular n 2 4 @ ~ + - 2 0 07157273 07157123 -vernacular_art n 1 1 @ 1 0 03861959 -vernal_equinox n 2 5 ! @ ~ #p ; 2 0 15223574 08520958 -vernal_iris n 1 1 @ 1 0 12414932 -vernal_witch_hazel n 1 1 @ 1 0 12315245 -vernation n 1 3 @ #p ; 1 0 08373380 -verne n 1 1 @ 1 0 11363412 -verner n 1 1 @ 1 0 11363552 -verner's_law n 1 1 @ 1 0 06181034 -vernier n 2 1 @ 2 0 11363657 04529108 -vernier_caliper n 1 1 @ 1 0 04528968 -vernier_micrometer n 1 1 @ 1 0 04528968 -vernier_scale n 1 1 @ 1 0 04529108 -vernix n 1 1 @ 1 0 15112425 -vernix_caseosa n 1 1 @ 1 0 15112425 -vernonia n 1 2 @ #m 1 0 12031927 -verona n 1 2 @ #p 1 0 08813699 -veronal n 1 1 @ 1 0 02791894 -veronese n 1 1 @ 1 0 11363791 -veronica n 1 3 @ ~ #m 1 0 12890265 -veronica_agrestis n 1 2 @ #m 1 0 12890490 -veronica_americana n 1 2 @ #m 1 0 12890685 -veronica_anagallis-aquatica n 1 2 @ #m 1 0 12891469 -veronica_arvensis n 1 1 @ 1 0 12890928 -veronica_beccabunga n 1 2 @ #m 1 0 12891093 -veronica_chamaedrys n 1 1 @ 1 0 12891305 -veronica_michauxii n 1 2 @ #m 1 0 12891469 -veronica_officinalis n 1 1 @ 1 0 12891643 -veronica_peregrina n 1 1 @ 1 0 12891824 -veronica_serpyllifolia n 1 1 @ 1 0 12892013 -veronicastrum_virginicum n 1 2 @ #m 1 0 12882321 -verpa n 1 3 @ ~ #m 1 0 13032923 -verpa_bohemica n 1 1 @ 1 0 13033134 -verpa_conica n 1 2 @ #m 1 0 13033396 -verrazano n 1 1 @ 1 0 11363930 -verrazano-narrows_bridge n 1 2 @ #p 1 0 04529312 -verrazano_narrows n 1 2 @ #p 1 0 09123662 -verrazzano n 1 1 @ 1 0 11363930 -verruca n 1 3 @ ~ ; 1 0 04696432 -verruca_acuminata n 1 1 @ 1 0 04696797 -vers_libre n 1 1 @ 1 0 06380373 -versace n 1 1 @ 1 0 11364135 -versailles n 2 2 @ #p 2 0 08938619 04529486 -versant n 1 2 @ #p 1 0 09361517 -versatility n 1 2 @ + 1 1 05641834 -verse n 3 5 @ ~ #p + - 3 3 07092592 06381869 06384708 -verse_form n 1 3 @ ~ %p 1 0 06377442 -verse_line n 1 3 @ ~ #p 1 0 06384708 -versed n 1 2 @ ; 1 0 03761845 -versicle n 1 2 @ ~ 1 0 06385244 -versification n 3 3 @ ~ + 3 0 07093759 07093603 07093489 -versifier n 1 2 @ + 1 0 10528493 -version n 6 2 @ ~ 6 3 07173585 05840650 06408779 06536389 05928513 01267901 -verso n 2 4 ! @ ~ #p 2 0 06257569 04085181 -verst n 1 1 @ 1 0 13652799 -vertebra n 1 5 @ ~ #p %p + 1 0 05284333 -vertebral_arch n 1 2 @ #p 1 0 05587997 -vertebral_artery n 1 1 @ 1 0 05356291 -vertebral_canal n 1 2 @ #p 1 0 05249232 -vertebral_column n 1 4 @ ~ #p %p 1 1 05588174 -vertebral_vein n 1 1 @ 1 0 05425207 -vertebrata n 1 3 @ #m %m 1 0 01471070 -vertebrate n 1 6 @ ~ #m %p + - 1 1 01471682 -vertebrate_foot n 1 4 @ ~ #p %p 1 0 05563034 -vertebrate_paleontology n 1 2 @ ~ 1 0 06192789 -vertex n 2 2 @ ~ 2 1 05867283 08677801 -verthandi n 1 1 @ 1 0 09582726 -vertical n 2 4 @ ~ #p + 2 0 13828795 04515129 -vertical_angle n 1 1 @ 1 0 13918816 -vertical_bank n 1 1 @ 1 0 00169522 -vertical_circle n 1 1 @ 1 0 08677991 -vertical_combination n 1 1 @ 1 0 01238607 -vertical_file n 1 1 @ 1 0 04529681 -vertical_fin n 1 2 @ #p 1 0 04529962 -vertical_flute n 1 2 @ ~ 1 0 03343354 -vertical_integration n 1 2 @ + 1 0 01238607 -vertical_section n 1 1 @ 1 0 04529795 -vertical_stabiliser n 1 2 @ #p 1 0 04529962 -vertical_stabilizer n 1 2 @ #p 1 0 04529962 -vertical_surface n 1 2 @ ~ 1 0 04530176 -vertical_tail n 1 3 @ #p %p 1 0 04530283 -vertical_union n 1 2 @ ~ 1 0 08233426 -verticality n 1 2 @ + 1 0 05079638 -verticalness n 1 2 @ + 1 0 05079638 -verticil n 1 1 @ 1 0 13918965 -verticilliosis n 1 1 @ 1 0 14283525 -verticillium n 1 2 @ #m 1 0 13078021 -vertigo n 1 2 @ + 1 1 14372513 -vertu n 2 1 @ 2 0 05750027 04789613 -vervain n 1 2 @ #m 1 0 12914923 -vervain_family n 1 3 @ #m %m 1 0 12914433 -vervain_sage n 1 1 @ 1 0 12866635 -verve n 1 2 @ ~ 1 1 04633453 -vervet n 1 1 @ 1 0 02485536 -vervet_monkey n 1 1 @ 1 0 02485536 -verwoerd n 1 1 @ 1 0 11364243 -very-light n 1 1 @ 1 0 07264615 -very_high_frequency n 1 2 @ #p 1 0 05057695 -very_important_person n 1 1 @ 1 0 10748620 -very_light n 1 1 @ 1 0 07264615 -very_low_density_lipoprotein n 1 1 @ 1 0 15087632 -very_low_frequency n 1 2 @ #p 1 0 05057275 -very_pistol n 1 1 @ 1 0 04530456 -very_reverend n 1 1 @ 1 0 06342623 -vesalius n 1 1 @ 1 0 11364419 -vesey n 1 1 @ 1 0 11364570 -vesica n 1 3 @ ~ + 1 0 05512139 -vesical_vein n 1 1 @ 1 0 05425436 -vesicant n 1 3 @ ~ + 1 0 15112239 -vesicaria n 1 3 @ #m %m 1 0 11899595 -vesication n 1 2 @ + 1 0 13573181 -vesicatory n 1 3 @ ~ + 1 0 15112239 -vesicle n 1 2 @ ~ 1 0 05517578 -vesicopapule n 1 1 @ 1 0 14334011 -vesicoureteral_reflux n 1 1 @ 1 0 14335884 -vesicula_umbilicus n 1 1 @ 1 0 01465243 -vesicular_stomatitis n 1 1 @ 1 0 14356167 -vesiculation n 1 2 @ + 1 0 13573181 -vesiculitis n 1 1 @ 1 0 14358860 -vesiculovirus n 1 2 @ #m 1 0 01333483 -vespa n 1 2 @ #m 1 0 02212811 -vespa_crabro n 1 1 @ 1 0 02213239 -vespasian n 1 1 @ 1 0 11364799 -vesper n 2 2 @ ~ 2 0 09276872 01034571 -vesper_mouse n 1 2 @ #m 1 0 02336826 -vesper_sparrow n 1 2 @ #m 1 0 01535140 -vespers n 1 1 @ 1 0 15230180 -vespertilian_bat n 1 3 @ ~ #m 1 0 02145424 -vespertilio n 1 3 @ #m %m 1 0 02145767 -vespertilio_murinus n 1 2 @ #m 1 0 02145910 -vespertilionid n 1 3 @ ~ #m 1 0 02145424 -vespertilionidae n 1 3 @ #m %m 1 0 02145084 -vespid n 1 3 @ ~ #m 1 0 02212602 -vespid_wasp n 1 3 @ ~ #m 1 0 02212602 -vespidae n 1 3 @ #m %m 1 0 02212323 -vespucci n 1 1 @ 1 0 11365100 -vespula n 1 3 @ #m %m 1 0 02213362 -vespula_maculata n 1 1 @ 1 0 02213663 -vespula_maculifrons n 1 2 @ #m 1 0 02213788 -vespula_vulgaris n 1 2 @ #m 1 0 02213543 -vessel n 3 5 @ ~ #p %p - 3 2 05397333 04530566 04531098 -vest n 2 3 @ ~ #p 2 1 04531873 04223299 -vest_pocket n 1 2 @ ~ 1 1 04532398 -vesta n 2 3 @ + ; 2 0 09564177 09471224 -vestal n 1 2 @ + 1 0 10748804 -vestal_virgin n 1 3 @ ~ ; 1 0 09575316 -vested_interest n 2 3 @ ~ ; 2 0 13287787 07969192 -vestibular_apparatus n 1 2 @ %p 1 0 05323036 -vestibular_fold n 1 1 @ 1 0 05530657 -vestibular_gland n 1 2 @ ~ 1 0 05555294 -vestibular_sense n 1 1 @ 1 0 05659365 -vestibular_system n 1 2 @ %p 1 0 05323036 -vestibular_vein n 1 1 @ 1 0 05425581 -vestibule n 2 4 @ ~ #p + 2 1 02715513 05304603 -vestibule_of_the_ear n 1 2 @ #p 1 0 05304795 -vestibule_of_the_vagina n 1 2 @ #p 1 0 05523108 -vestibulocochlear_nerve n 1 2 @ #p 1 0 05479503 -vestige n 1 2 @ ~ 1 1 06646628 -vestiture n 1 1 @ 1 0 04532022 -vestment n 1 4 @ ~ %p + 1 0 04532106 -vestris n 1 1 @ 1 0 11365300 -vestry n 2 3 @ #p %m 2 0 08478851 04532504 -vestryman n 1 2 @ #m 1 0 10748889 -vestrywoman n 1 2 @ #m 1 0 10749004 -vesture n 2 4 @ ~ %p + 2 0 09471349 03051540 -vesuvian n 1 1 @ 1 0 15087904 -vesuvianite n 1 1 @ 1 0 15087904 -vesuvius n 1 2 @ #p 1 0 09177883 -vet n 2 4 @ ~ #m + 2 1 10749715 10749353 -vetch n 1 3 @ ~ #m 1 0 12575322 -vetchling n 1 3 @ ~ #m 1 0 12539074 -vetchworm n 1 2 @ #m 1 0 02310334 -veteran n 3 4 @ ~ #m + 3 3 10749528 10749353 10749123 -veteran_soldier n 1 1 @ 1 0 10749528 -veterans'_day n 1 2 @ #p 1 0 15200896 -veterans_day n 1 2 @ #p 1 0 15200896 -veterans_of_foreign_wars n 1 2 @ %m 1 0 08229134 -veterinarian n 1 2 @ ~ 1 0 10749715 -veterinary n 1 3 @ ~ + 1 0 10749715 -veterinary_medicine n 1 2 @ - 1 0 06065423 -veterinary_school n 1 1 @ 1 0 08287335 -veterinary_surgeon n 1 2 @ ~ 1 0 10749715 -vetluga n 1 2 @ #p 1 0 09471481 -vetluga_river n 1 2 @ #p 1 0 09471481 -veto n 2 3 @ ~ + 2 1 00209546 05198928 -vexation n 4 3 @ ~ + 4 1 07518261 14406573 05832264 00418394 -vexatious_litigation n 1 2 @ ; 1 0 01187230 -vexer n 1 2 @ + 1 0 10695555 -vfw n 1 2 @ %m 1 0 08229134 -vhf n 2 3 @ ~ #p 2 0 14177423 05057695 -vi n 2 2 @ #p 2 0 13744722 08755003 -via_media n 1 1 @ 1 0 01205564 -viability n 2 3 @ + ; 2 1 05056234 05151576 -viaduct n 1 1 @ 1 0 04532670 -viagra n 1 2 @ ; 1 0 04218383 -vial n 1 1 @ 1 0 03923379 -viand n 1 1 @ 1 1 07593471 -viands n 1 2 @ ~ 1 0 07572353 -viatical_settlement n 2 1 @ 2 0 13297595 00228762 -viatication n 1 2 @ + 1 0 00082347 -viaticus n 1 2 @ + 1 0 00082347 -viaticus_settlement n 1 1 @ 1 0 00228762 -vibe n 1 1 @ 1 0 04727883 -vibes n 1 1 @ 1 0 04532831 -vibist n 1 1 @ 1 0 10749928 -viborg n 1 2 @ #p 1 0 08762380 -vibraharp n 1 1 @ 1 0 04532831 -vibramycin n 1 1 @ 1 0 03230247 -vibrancy n 1 2 @ + 1 1 04989657 -vibraphone n 1 1 @ 1 0 04532831 -vibraphonist n 1 1 @ 1 0 10749928 -vibrating_reed n 1 2 @ ~ 1 0 04066888 -vibration n 4 4 @ ~ + ; 4 1 00345926 14004572 07345166 04727883 -vibrato n 1 3 @ ~ ; 1 0 07399137 -vibrator n 2 3 @ ~ + 2 0 04533199 04533042 -vibrio n 1 4 @ ~ #m + 1 0 01364162 -vibrio_comma n 1 2 @ #m 1 0 01364329 -vibrio_fetus n 1 2 @ #m 1 0 01364472 -vibrion n 1 3 @ ~ #m 1 0 01364162 -vibrissa n 1 1 @ 1 0 01901828 -viburnum n 1 3 @ #m %m 1 0 12680125 -viburnum_dentatum n 1 2 @ #m 1 0 12681141 -viburnum_lantana n 1 2 @ #m 1 0 12680652 -viburnum_opulus n 1 2 @ #m 1 0 12680864 -viburnum_prunifolium n 1 2 @ #m 1 0 12681579 -viburnum_recognitum n 1 2 @ #m 1 0 12681376 -viburnum_trilobum n 1 2 @ #m 1 0 12680402 -vicar n 3 3 @ + ; 3 1 10750031 10750365 10750188 -vicar-general n 1 2 @ ; 1 0 10750640 -vicar_apostolic n 1 1 @ 1 0 10750524 -vicar_of_christ n 1 3 @ ~ #m 1 0 10453533 -vicarage n 1 2 @ ~ 1 0 03892557 -vicariate n 1 1 @ 1 0 08100907 -vicarship n 1 2 @ + 1 0 08100907 -viccinium_membranaceum n 1 1 @ 1 0 12248359 -viccinium_myrtillus n 1 2 @ %p 1 0 12248574 -vice n 2 3 @ ~ + 2 1 04853873 00747029 -vice-presidency n 2 1 @ 2 0 15266568 00605511 -vice-presidential_term n 1 1 @ 1 0 15266568 -vice-regent n 1 1 @ 1 0 10751710 -vice_admiral n 1 1 @ 1 0 10750788 -vice_chairman n 1 1 @ 1 0 10750911 -vice_chancellor n 1 1 @ 1 0 10751026 -vice_crime n 1 2 @ ~ 1 0 00782241 -vice_president n 1 3 @ ~ + 1 1 10751265 -vice_president_of_the_united_states n 1 2 @ ~ 1 0 10751527 -vice_squad n 1 1 @ 1 0 08211169 -vicegerent n 1 1 @ 1 0 10751152 -vicente_lopez n 1 2 @ #p 1 0 08713539 -vicereine n 2 2 @ ~ 2 0 10752020 10751785 -viceroy n 2 4 @ ~ #m + 2 0 10751785 02277268 -viceroyalty n 1 1 @ 1 0 08678151 -viceroyship n 1 2 @ + 1 0 00605616 -vichy n 1 2 @ #p 1 0 08938819 -vichy_water n 1 1 @ 1 0 07937069 -vichyssoise n 1 1 @ 1 0 07588817 -vicia n 1 3 @ #m %m 1 0 12575089 -vicia_cracca n 1 1 @ 1 0 12575812 -vicia_faba n 1 3 @ #m %p 1 0 12576029 -vicia_orobus n 1 1 @ 1 0 12576451 -vicia_sativa n 1 1 @ 1 0 12576555 -vicia_sepium n 1 1 @ 1 0 12576695 -vicia_villosa n 1 2 @ #m 1 0 12576838 -vicinity n 1 3 @ ~ + 1 1 08641113 -vicious_circle n 2 1 @ 2 1 13573368 06755342 -vicious_cycle n 1 1 @ 1 1 13573368 -viciousness n 1 2 @ + 1 0 04830689 -vicissitude n 2 1 @ 2 0 07337694 04741655 -vicksburg n 2 3 @ #p ; 2 0 09105494 01298797 -vicomte_de_chateaubriand n 1 1 @ 1 0 10893830 -vicomte_ferdinand_marie_de_lesseps n 1 1 @ 1 0 11129286 -victim n 2 3 @ ~ + 2 2 10752093 10752480 -victimisation n 1 3 @ ~ + 1 0 00418903 -victimiser n 1 3 @ ~ + 1 0 10752719 -victimization n 2 3 @ ~ + 2 0 14477509 00418903 -victimizer n 1 3 @ ~ + 1 0 10752719 -victimless_crime n 1 1 @ 1 0 00782338 -victor n 2 2 @ ~ 2 1 10752930 10782940 -victor-marie_hugo n 1 1 @ 1 0 11065345 -victor_emanuel_ii n 1 1 @ 1 0 11365516 -victor_emanuel_iii n 1 1 @ 1 0 11365674 -victor_franz_hess n 1 1 @ 1 0 11047521 -victor_herbert n 1 1 @ 1 0 11044629 -victor_hess n 1 1 @ 1 0 11047521 -victor_horta n 1 1 @ 1 0 11061089 -victor_hugo n 1 1 @ 1 0 11065345 -victoria n 7 6 @ #m #p %p + ; 7 0 11365857 09567913 09471638 09146681 08996714 08833682 08823314 -victoria_clafin_woodhull n 1 1 @ 1 0 11396128 -victoria_cross n 1 1 @ 1 0 06708866 -victoria_day n 1 1 @ 1 0 15201384 -victoria_de_durango n 1 2 @ #p 1 0 08743229 -victoria_falls n 2 2 @ #p 2 0 09471638 09309456 -victoria_land n 1 2 @ #p 1 0 08678253 -victoria_nyanza n 1 2 @ #p 1 0 09334049 -victoria_plum n 1 2 @ ; 1 0 07752264 -victoria_sandwich n 1 2 @ ; 1 0 07642182 -victoria_sponge n 1 2 @ ; 1 0 07642182 -victorian n 1 2 @ + 1 0 10753061 -victorian_age n 1 1 @ 1 0 15122853 -victorian_architecture n 1 1 @ 1 0 05843895 -victoriana n 1 1 @ 1 0 07997581 -victory n 1 4 ! @ ~ + 1 1 07473441 -victory_celebration n 1 1 @ 1 0 00519118 -victory_day n 1 2 @ ~ 1 0 15162640 -victory_garden n 1 1 @ 1 0 04533373 -victory_lap n 1 1 @ 1 0 00295563 -victrola n 1 2 @ ; 1 1 04533499 -victual n 1 3 @ ~ + 1 0 07556637 -victualer n 2 3 @ + ; 2 0 10753182 10681557 -victualler n 2 3 @ + ; 2 0 10753182 10681557 -victuals n 3 2 @ ~ 3 0 07572353 07570720 07556637 -vicugna n 1 3 @ #m %m 1 0 02438452 -vicugna_vicugna n 1 2 @ #m 1 0 02438580 -vicuna n 3 2 @ #m 3 0 15104933 04533594 02438580 -vidal n 1 1 @ 1 0 11366109 -vidalia n 1 2 @ #p 1 0 09078102 -vidalia_onion n 1 1 @ 1 0 07722666 -vidar n 1 2 @ ; 1 0 09584218 -video n 4 6 @ ~ #p %p ; - 4 2 06277803 04534127 06277992 06277280 -video_digitizing n 1 2 @ ~ 1 0 13573499 -video_display n 1 3 @ ~ %p 1 0 03211117 -video_equipment n 1 3 @ ~ #p 1 0 04405540 -video_game n 1 2 @ ~ 1 0 00458890 -video_ipod n 1 2 @ ; 1 0 03584400 -video_recording n 1 2 @ ~ 1 0 04534127 -videocassette n 1 1 @ 1 0 04533700 -videocassette_recorder n 1 1 @ 1 0 04533802 -videodisc n 1 1 @ 1 0 04533946 -videodisk n 1 1 @ 1 0 04533946 -videotape n 2 2 @ + 2 0 04534520 04534359 -vidua n 1 3 @ #m %m 1 0 01543272 -vienna n 1 3 @ #p - 1 1 08846324 -vienna_roll n 1 1 @ 1 0 07691758 -vienna_sausage n 1 1 @ 1 0 07676855 -vienne n 2 2 @ #p 2 0 08939028 08316748 -vientiane n 1 2 @ #p 1 1 08957064 -vieques n 1 2 @ #p 1 0 08753561 -viet_nam n 1 6 @ #m #p %m %p - 1 1 09163192 -vietnam n 2 7 @ #m #p %m %p ; - 2 0 09163192 01309807 -vietnam_war n 1 2 @ ; 1 0 01309807 -vietnamese n 2 3 @ #m + 2 0 09747191 06937229 -vietnamese_monetary_unit n 1 2 @ ~ 1 0 13674759 -view n 10 4 @ ~ %p + 10 8 06208751 05933246 00881649 08560952 05945642 06782019 05983463 04144782 05127782 04674861 -view_angle n 1 1 @ 1 0 13919059 -view_finder n 1 2 @ #p 1 0 03340723 -viewer n 2 3 @ ~ + 2 1 10633450 04534651 -viewers n 1 1 @ 1 1 08222750 -viewfinder n 1 2 @ #p 1 0 03340723 -viewgraph n 1 1 @ 1 0 04534779 -viewing n 2 2 @ ~ 2 0 06888345 01029883 -viewing_audience n 1 1 @ 1 0 08222750 -viewpoint n 2 2 @ ~ 2 1 06210363 08677250 -vigdis_finnbogadottir n 1 1 @ 1 0 10971080 -vigee-lebrun n 1 1 @ 1 0 11366232 -vigil n 3 3 @ ~ ; 3 0 05678855 01029671 00880662 -vigil_candle n 1 1 @ 1 0 04534895 -vigil_light n 1 1 @ 1 0 04534895 -vigilance n 2 3 @ ~ + 2 1 05705722 04664778 -vigilance_committee n 1 1 @ 1 0 08326114 -vigilance_man n 1 1 @ 1 0 10753339 -vigilante n 1 1 @ 1 0 10753339 -vigilantism n 1 1 @ 1 1 01128266 -vigna n 1 3 @ #m %m 1 0 12577000 -vigna_aconitifolia n 1 2 @ #m 1 0 12577362 -vigna_angularis n 1 2 @ #m 1 0 12577686 -vigna_caracalla n 1 2 @ #m 1 0 12577895 -vigna_radiata n 1 2 @ #m 1 0 12578255 -vigna_sesquipedalis n 1 2 @ #m 1 0 12579038 -vigna_sinensis n 1 3 @ #m %p 1 0 12578626 -vigna_unguiculata n 1 3 @ #m %p 1 0 12578626 -vigna_unguiculata_sesquipedalis n 1 2 @ #m 1 0 12579038 -vignette n 3 1 @ 3 1 07203016 04535153 04535011 -vigor n 3 3 @ ~ + 3 1 05035961 05030806 04633197 -vigorish n 2 1 @ 2 0 13320045 13289306 -vigour n 3 2 @ ~ 3 0 05035961 05030806 04633197 -vii n 1 1 @ 1 0 13744916 -viii n 1 1 @ 1 0 13745086 -viking n 1 1 @ 1 0 09730383 -viktor_korchnoi n 1 1 @ 1 0 11109289 -viktor_lvovich_korchnoi n 1 1 @ 1 0 11109289 -viktor_vasarely n 1 1 @ 1 0 11361142 -vila n 1 2 @ #p 1 0 09160968 -vileness n 2 3 @ ~ + 2 0 04852750 04781349 -vilfredo_pareto n 1 1 @ 1 0 11222457 -vilification n 2 3 @ ~ + 2 0 06720216 06715223 -vilifier n 1 2 @ + 1 0 09999135 -villa n 4 2 @ ; 4 0 11366405 04535524 04535370 04535252 -villa-lobos n 1 1 @ 1 0 11366548 -villa_hermosa n 1 2 @ #p 1 0 08746636 -village n 3 3 @ ~ #p 3 3 08226699 08672738 09122968 -village_green n 1 1 @ 1 0 08678405 -villager n 1 1 @ 1 1 10753442 -villahermosa n 1 2 @ #p 1 0 08746636 -villain n 2 3 @ ~ + 2 2 10753546 10753779 -villainage n 1 1 @ 1 0 13953057 -villainess n 1 1 @ 1 0 10753917 -villainousness n 1 2 @ + 1 0 04853361 -villainy n 2 1 @ 2 0 04853361 00745863 -villard n 1 1 @ 1 0 11366658 -villein n 1 3 @ ~ ; 1 0 10580535 -villeinage n 2 1 @ 2 0 13953057 13243374 -villoma n 1 1 @ 1 0 14250081 -villon n 1 1 @ 1 0 11366787 -villus n 1 2 @ ~ 1 0 01901492 -vilna n 1 2 @ #p 1 0 09014273 -vilnius n 1 2 @ #p 1 0 09014273 -vilno n 1 2 @ #p 1 0 09014273 -vim n 2 2 @ ~ 2 0 14050143 04633197 -viminaria n 1 3 @ #m %m 1 0 12579242 -viminaria_denudata n 1 2 @ #m 1 0 12579404 -viminaria_juncea n 1 2 @ #m 1 0 12579404 -vin_ordinaire n 1 1 @ 1 0 07899003 -vina_del_mar n 1 2 @ #p 1 0 08722270 -vinaigrette n 1 1 @ 1 0 07833816 -vinblastine n 1 1 @ 1 0 04535634 -vinca n 1 3 @ #m %m 1 0 11777779 -vinca_major n 1 1 @ 1 0 11778257 -vinca_minor n 1 1 @ 1 0 11778092 -vinca_rosea n 1 2 @ #m 1 0 11772408 -vincent's_angina n 1 1 @ 1 0 14124931 -vincent's_infection n 1 1 @ 1 0 14124931 -vincent_van_gogh n 1 1 @ 1 0 11360022 -vincenzo_bellini n 1 1 @ 1 0 10842923 -vincetoxicum n 1 3 @ #m %m 1 0 13239471 -vincetoxicum_hirsutum n 1 2 @ #m 1 0 13239736 -vincetoxicum_negrum n 1 2 @ #m 1 0 13239736 -vincristine n 1 1 @ 1 0 04535826 -vindication n 2 3 @ ~ + 2 1 01241331 06740644 -vindicator n 1 2 @ + 1 0 09798534 -vindictiveness n 1 2 @ + 1 0 07550891 -vine n 1 2 @ ~ 1 1 13100677 -vine_cactus n 1 2 @ #m 1 0 12381931 -vine_maple n 1 1 @ 1 0 12754468 -vine_snake n 1 2 @ #m 1 0 01739381 -vinegar n 2 2 @ ~ 2 1 07828987 15088111 -vinegar_eel n 1 2 @ #m 1 0 01932151 -vinegar_fly n 1 2 @ #m 1 0 02197877 -vinegar_joe_stilwell n 1 1 @ 1 0 11318462 -vinegar_tree n 2 1 @ 2 0 12764202 12763529 -vinegar_worm n 1 2 @ #m 1 0 01932151 -vinegariness n 1 2 @ + 1 0 04994264 -vinegarishness n 1 2 @ + 1 0 04994264 -vinegarroon n 1 2 @ #m 1 0 01771766 -vinegarweed n 1 1 @ 1 0 12871696 -vinery n 1 1 @ 1 0 04536038 -vineyard n 1 1 @ 1 1 04536038 -vingt-et-un n 1 1 @ 1 0 00490350 -viniculture n 1 2 @ - 1 0 01126709 -vinifera n 1 4 @ ~ #m %p 1 0 13145444 -vinifera_grape n 2 5 @ ~ #m #p %p 2 0 13145444 07759816 -vinification n 1 2 @ + 1 0 13573666 -vino n 1 3 @ ~ #s 1 0 07891726 -vinogradoff n 1 1 @ 1 0 11366895 -vinson n 1 1 @ 1 0 11367035 -vintage n 2 1 @ 2 1 07892418 04926217 -vintager n 1 1 @ 1 0 10753989 -vintner n 2 1 @ 2 0 10754189 10754088 -vinyl n 2 1 @ 2 1 15088308 15088183 -vinyl_cyanide n 1 1 @ 1 0 14998677 -vinyl_ether n 1 2 @ ~ 1 0 03299929 -vinyl_group n 1 1 @ 1 0 15088308 -vinyl_polymer n 1 2 @ ~ 1 0 15088440 -vinyl_radical n 1 1 @ 1 0 15088308 -vinyl_resin n 1 2 @ ~ 1 0 15088440 -vinylbenzene n 1 2 @ ~ 1 0 14595543 -vinylite n 1 2 @ ; 1 0 14596599 -viocin n 1 1 @ 1 0 04537235 -viol n 1 2 @ ~ 1 0 04536153 -viola n 3 4 @ ~ #m %m 3 0 12387633 12387478 04536335 -viola_arvensis n 1 1 @ 1 0 12388143 -viola_blanda n 1 1 @ 1 0 12388444 -viola_canadensis n 1 1 @ 1 0 12388652 -viola_canina n 1 1 @ 1 0 12388858 -viola_clef n 1 1 @ 1 0 06863086 -viola_conspersa n 1 1 @ 1 0 12388293 -viola_cornuta n 1 1 @ 1 0 12388989 -viola_d'amore n 1 1 @ 1 0 04536765 -viola_da_braccio n 1 1 @ 1 0 04536465 -viola_da_gamba n 1 1 @ 1 0 04536595 -viola_ocellata n 1 1 @ 1 0 12389130 -viola_odorata n 1 1 @ 1 0 12389317 -viola_pedata n 1 1 @ 1 0 12389501 -viola_pubescens n 1 1 @ 1 0 12389727 -viola_reichenbachiana n 1 1 @ 1 0 12390314 -viola_rostrata n 1 1 @ 1 0 12389932 -viola_striata n 1 1 @ 1 0 12390099 -viola_sylvatica n 1 1 @ 1 0 12390314 -viola_tricolor n 1 1 @ 1 0 12390681 -viola_tricolor_hortensis n 1 1 @ 1 0 12390485 -violaceae n 1 3 @ #m %m 1 0 12387201 -violation n 5 3 @ ~ + 5 4 00770270 00770543 00733483 00746232 00773402 -violator n 2 2 @ + 2 0 10754449 10754281 -violence n 3 3 @ ~ + 3 3 00965404 05037813 13979977 -violent_death n 1 1 @ 1 0 07361576 -violent_disorder n 1 2 @ ~ 1 0 00554541 -violent_storm n 1 4 @ ~ #p %p 1 0 11462526 -violent_stream n 1 1 @ 1 0 07407593 -violet n 2 3 @ ~ + 2 2 12387839 04970758 -violet-flowered_petunia n 1 1 @ 1 0 12909759 -violet_family n 1 3 @ #m %m 1 0 12387201 -violet_suksdorfia n 1 2 @ #m 1 0 12802707 -violet_wood_sorrel n 1 1 @ 1 0 12703856 -violin n 1 4 @ ~ %p + 1 1 04536866 -violin_bow n 1 2 @ #p 1 0 03332271 -violin_family n 1 2 @ ; 1 0 07998323 -violin_lesson n 1 1 @ 1 0 00889971 -violin_maker n 1 2 @ ~ 1 0 10754920 -violin_section n 1 1 @ 1 0 08217450 -violinist n 1 3 @ ~ + 1 1 10754578 -violist n 1 1 @ 1 0 10755080 -violoncellist n 1 2 @ ~ 1 0 09903501 -violoncello n 1 1 @ 1 0 02992211 -viomycin n 1 1 @ 1 0 04537235 -viorna_baldwinii n 1 1 @ 1 0 11729860 -viosterol n 1 2 @ %s 1 0 15092227 -vioxx n 1 2 @ ; 1 0 04100994 -vip n 1 1 @ 1 0 10748620 -viper n 1 3 @ ~ #m 1 0 01752165 -viper's_bugloss n 1 2 @ #m 1 0 12819728 -viper's_grass n 1 3 @ #m %p 1 0 12013035 -vipera n 1 3 @ #m %m 1 0 01752433 -vipera_aspis n 1 2 @ #m 1 0 01752736 -vipera_berus n 1 2 @ #m 1 0 01752585 -viperidae n 1 3 @ #m %m 1 0 01751979 -viperine_grass_snake n 1 1 @ 1 0 01738065 -viracept n 1 1 @ 1 0 03817830 -viraemia n 1 1 @ 1 0 14573846 -virago n 2 1 @ 2 0 10755164 09787293 -viral_delivery_vector n 1 1 @ 1 0 09471865 -viral_haemorrhagic_fever n 1 2 @ ~ 1 0 14177423 -viral_hemorrhagic_fever n 1 2 @ ~ 1 0 14177423 -viral_hepatitis n 1 2 @ ~ 1 0 14130518 -viral_infection n 1 2 @ ~ 1 0 14186340 -viral_pneumonia n 1 1 @ 1 0 14179839 -viramune n 1 1 @ 1 0 03821259 -virazole n 1 2 @ ; 1 0 04087524 -virchow n 1 1 @ 1 0 11367195 -viremia n 1 1 @ 1 0 14573846 -vireo n 1 3 @ ~ #m 1 0 01602630 -vireo_olivaceous n 1 1 @ 1 0 01602832 -vireo_solitarius n 1 1 @ 1 0 01603000 -vireo_solitarius_solitarius n 1 1 @ 1 0 01603152 -vireonidae n 1 3 @ #m %m 1 0 01602353 -virga n 1 1 @ 1 0 11509204 -virgil n 1 1 @ 1 0 11367436 -virgil_garnett_thomson n 1 1 @ 1 0 11340824 -virgil_thomson n 1 1 @ 1 0 11340824 -virgilia n 1 3 @ #m %m 1 0 12579593 -virgilia_capensis n 1 2 @ #m 1 0 12579822 -virgilia_divaricata n 1 2 @ #m 1 0 12580012 -virgilia_oroboides n 1 2 @ #m 1 0 12579822 -virgin n 3 3 @ + ; 3 1 10755257 09752927 08686979 -virgin's_bower n 1 1 @ 1 0 11731157 -virgin_birth n 2 2 @ #p 2 0 13532747 06192908 -virgin_forest n 1 1 @ 1 0 13240025 -virgin_islands n 1 3 @ #p %p 1 1 08754529 -virgin_islands_national_park n 1 2 @ #p 1 0 08609487 -virgin_mary n 2 1 @ 2 1 11161412 07913537 -virgin_wool n 1 1 @ 1 0 15105008 -virginal n 1 1 @ 1 0 04537436 -virginal_membrane n 1 3 @ ~ #p 1 0 05521934 -virginia n 3 5 @ #m #p %p - 3 1 09148970 09149934 09103803 -virginia_beach n 1 2 @ #p 1 0 09151516 -virginia_bluebell n 1 2 @ #m 1 0 12821505 -virginia_chain_fern n 1 1 @ 1 0 13186546 -virginia_cowslip n 1 2 @ #m 1 0 12821505 -virginia_creeper n 1 2 @ #m 1 1 13148384 -virginia_crownbeard n 1 1 @ 1 0 12031547 -virginia_deer n 1 2 @ #m 1 0 02432291 -virginia_fence n 1 1 @ 1 0 04604644 -virginia_ham n 1 1 @ 1 0 07670044 -virginia_katherine_mcmath n 1 1 @ 1 0 11268667 -virginia_mallow n 1 2 @ #m 1 0 12186352 -virginia_mcmath n 1 1 @ 1 0 11268667 -virginia_oyster n 1 2 @ #m 1 0 01961600 -virginia_pine n 1 1 @ 1 0 11616852 -virginia_reel n 1 1 @ 1 0 00539674 -virginia_serpentaria n 1 1 @ 1 0 11801891 -virginia_serpentary n 1 1 @ 1 0 11801891 -virginia_snakeroot n 1 1 @ 1 0 11801891 -virginia_spring_beauty n 1 2 @ #m 1 0 11859737 -virginia_stock n 1 1 @ 1 0 11892181 -virginia_strawberry n 1 2 @ #m 1 0 12630999 -virginia_thimbleweed n 1 1 @ 1 0 11726433 -virginia_wade n 1 1 @ 1 0 11369676 -virginia_waterleaf n 1 1 @ 1 0 12834938 -virginia_woolf n 1 2 @ #m 1 0 11396667 -virginian n 1 1 @ 1 1 09746101 -virginian_stock n 1 1 @ 1 0 11892181 -virginian_sumac n 1 1 @ 1 0 12764202 -virginian_witch_hazel n 1 1 @ 1 0 12315060 -virginity n 1 3 @ = + 1 1 13967581 -virgo n 3 4 @ #p %m ; 3 0 09752927 09471976 08686979 -virgo_the_virgin n 1 1 @ 1 0 08686979 -virgule n 1 1 @ 1 0 06844903 -viricide n 1 2 @ + 1 0 15048293 -viridity n 1 2 @ ~ 1 0 04967191 -virilisation n 1 1 @ 1 0 13511755 -virilism n 1 1 @ 1 0 05008591 -virility n 2 2 @ + 2 0 05008449 04666837 -virility_drug n 1 2 @ ~ 1 0 04537602 -virilization n 1 2 @ + 1 0 13511755 -virino n 1 2 @ ; 1 0 09399198 -virion n 1 3 @ %p ; 1 0 01329935 -viroid n 1 1 @ 1 0 01334690 -virologist n 1 3 @ ~ + 1 0 10755394 -virology n 1 3 @ + - 1 0 06065640 -virtu n 3 1 @ 3 0 05750027 04789613 04537816 -virtual_image n 1 1 @ 1 0 11523256 -virtual_memory n 1 2 @ ; 1 0 04537919 -virtual_reality n 1 1 @ 1 0 00459013 -virtual_storage n 1 2 @ ; 1 0 04537919 -virtue n 4 4 @ ~ = + 4 2 04847298 05138958 04849759 04847482 -virtuosity n 1 2 @ ~ 1 0 05637222 -virtuoso n 2 3 @ ~ + 2 1 09762509 10755512 -virtuousness n 1 2 @ + 1 0 04847298 -virucide n 1 2 @ + 1 0 15048293 -virulence n 2 3 @ + ; 2 1 05166560 04658361 -virulency n 2 3 @ + ; 2 0 05166560 04658361 -virus n 3 5 @ ~ + ; - 3 1 01328702 14007864 06585816 -virus_infection n 1 2 @ ~ 1 0 14186340 -virusoid n 1 1 @ 1 0 01334690 -vis-a-vis n 2 2 @ ~ 2 0 05695806 03693474 -vis_major n 1 1 @ 1 0 07315350 -visa n 1 3 @ #p + 1 0 06687883 -visage n 2 4 @ ~ #p ; 2 2 05601357 04679549 -visayan n 1 3 @ ~ #m 1 0 10755648 -visayan_islands n 1 2 @ #p 1 0 08982452 -viscaceae n 1 3 @ #m %m 1 0 12738859 -viscacha n 1 2 @ #m 1 0 02368116 -viscera n 1 1 @ 1 0 05298988 -visceral_brain n 1 2 @ %p 1 1 05498773 -visceral_leishmaniasis n 1 1 @ 1 0 14181049 -visceral_pericardium n 1 2 @ #p 1 0 05428645 -visceral_pleura n 1 1 @ 1 0 05388437 -viscid_mushroom n 1 2 @ #m 1 0 13009085 -viscidity n 1 2 @ + 1 0 04935904 -viscidness n 1 2 @ + 1 0 04935904 -viscometer n 1 2 @ + 1 1 04538249 -viscometry n 1 2 @ + 1 0 01117318 -visconti n 1 1 @ 1 0 11367581 -viscose n 2 3 @ #s %s 2 0 14965780 04538403 -viscose_rayon n 1 2 @ %s 1 0 04538403 -viscosimeter n 1 2 @ + 1 0 04538249 -viscosimetry n 1 2 @ + 1 0 01117318 -viscosity n 1 3 @ ~ + 1 1 04935003 -viscount n 2 1 @ 2 0 10756148 10755815 -viscount_nelson n 1 1 @ 1 0 11203059 -viscount_northcliffe n 1 1 @ 1 0 11029298 -viscount_st._albans n 1 1 @ 1 0 10830456 -viscountcy n 2 1 @ 2 0 14433232 06343440 -viscountess n 2 2 @ ~ 2 0 10756061 10755926 -viscountess_astor n 1 1 @ 1 0 10826717 -viscounty n 2 1 @ 2 0 14433232 08557976 -viscousness n 1 3 @ ~ + 1 0 04935003 -viscum n 1 3 @ #m %m 1 0 12739072 -viscum_album n 1 2 @ #m 1 0 12739332 -viscus n 1 2 @ ~ 1 0 05298729 -vise n 1 3 @ ~ %p 1 0 04538552 -vishnu n 1 2 @ #m 1 0 09529999 -vishnuism n 1 1 @ 1 0 06239215 -visibility n 3 4 ! @ ~ + 3 1 05017458 14434329 04702545 -visible_balance n 1 1 @ 1 0 13409363 -visible_horizon n 1 2 @ #p 1 0 08585657 -visible_light n 1 4 @ ~ #p ; 1 1 11473954 -visible_radiation n 1 4 @ ~ #p ; 1 0 11473954 -visible_spectrum n 1 2 @ #p 1 0 11523369 -visible_speech n 2 1 @ 2 0 06500639 04538759 -visibleness n 1 3 @ ~ + 1 0 05017458 -visigoth n 1 1 @ 1 0 10756261 -vision n 5 4 @ ~ + - 5 5 05768252 05654362 05713524 05625465 07288485 -vision_defect n 1 2 @ ~ 1 0 14552802 -visionary n 2 3 @ ~ + 2 0 10756641 10756433 -visit n 5 3 @ ~ + 5 3 01233156 08385280 01232842 01232684 01055360 -visitant n 1 3 @ ~ + 1 0 10757193 -visitation n 3 3 @ ~ + 3 0 07372959 07316724 00652069 -visitation_right n 1 2 @ ; 1 0 05190586 -visiting n 1 2 @ + 1 0 01056236 -visiting_card n 1 1 @ 1 0 06633205 -visiting_fireman n 1 1 @ 1 0 10756837 -visiting_nurse n 1 1 @ 1 0 10756937 -visiting_professor n 1 1 @ 1 0 10757050 -visitor n 1 3 @ ~ + 1 1 10757193 -visken n 1 2 @ ; 1 0 03942244 -visor n 2 2 @ #p 2 0 04538878 02838728 -vista n 1 2 @ ~ 1 1 05933246 -vistaril n 1 2 @ ; 1 0 03554131 -vistula n 1 2 @ #p 1 0 09472135 -vistula_river n 1 2 @ #p 1 0 09472135 -visual_acuity n 1 2 @ ~ 1 0 05655567 -visual_agnosia n 1 1 @ 1 0 14100370 -visual_aphasia n 1 1 @ 1 0 14099050 -visual_area n 1 1 @ 1 0 05490204 -visual_aspect n 1 2 @ ~ 1 0 04673965 -visual_cell n 1 3 @ ~ #p 1 0 05455912 -visual_communication n 1 3 @ ~ %p 1 0 06873252 -visual_cortex n 1 1 @ 1 0 05490204 -visual_defect n 1 2 @ ~ 1 0 14552802 -visual_disorder n 1 2 @ ~ 1 0 14552802 -visual_display_unit n 1 2 @ ; 1 0 04539053 -visual_field n 1 1 @ 1 0 05933638 -visual_hallucination n 1 2 @ ~ 1 0 14378439 -visual_image n 2 2 @ ~ 2 0 05936381 05932477 -visual_impairment n 1 2 @ ~ 1 0 14552802 -visual_joke n 1 1 @ 1 0 06779914 -visual_modality n 1 3 @ ~ - 1 0 05654362 -visual_percept n 1 2 @ ~ 1 0 05932477 -visual_perception n 1 2 @ ~ 1 0 05710860 -visual_property n 1 2 @ ~ 1 0 04950126 -visual_purple n 1 3 @ #p %s 1 0 15088869 -visual_range n 1 2 @ ; 1 0 05017757 -visual_sensation n 1 1 @ 1 0 05713524 -visual_sense n 1 3 @ ~ - 1 0 05654362 -visual_signal n 1 3 @ ~ #p 1 0 06873571 -visual_space n 1 1 @ 1 1 05711414 -visual_system n 1 3 @ %p ; 1 0 05300926 -visualisation n 1 2 @ + 1 0 05936381 -visualiser n 1 1 @ 1 0 10757492 -visualization n 1 2 @ + 1 1 05936381 -visualizer n 1 2 @ + 1 0 10757492 -visually_impaired_person n 1 2 @ ~ 1 0 10757625 -vitaceae n 1 3 @ #m %m 1 0 13144303 -vital_capacity n 1 1 @ 1 0 13779570 -vital_force n 1 2 @ ; 1 0 11523839 -vital_organ n 1 1 @ 1 0 05298313 -vital_principle n 1 2 @ ~ 1 0 10757918 -vital_sign n 1 2 @ ~ 1 0 14302005 -vital_statistics n 1 2 @ ; 1 0 06029676 -vitalisation n 1 2 @ + 1 0 14049552 -vitaliser n 1 2 @ + 1 0 10056103 -vitalism n 1 3 @ + ; 1 0 05977977 -vitalist n 1 2 @ + 1 0 10757817 -vitality n 4 5 @ ~ = + ; 4 2 04633453 14050143 11523839 05005809 -vitalization n 1 2 @ + 1 0 14049552 -vitalizer n 1 2 @ + 1 0 10056103 -vitalness n 2 2 @ + 2 0 05171491 05171352 -vitals n 1 1 @ 1 1 05298313 -vitamin n 1 4 @ ~ #s + 1 1 15089258 -vitamin-deficiency_diet n 1 1 @ 1 0 07563366 -vitamin_a n 1 2 @ ~ 1 0 15089803 -vitamin_a1 n 1 1 @ 1 0 15090065 -vitamin_a2 n 1 1 @ 1 0 15090238 -vitamin_b n 1 2 @ ~ 1 0 15090742 -vitamin_b1 n 1 1 @ 1 0 15091129 -vitamin_b12 n 1 1 @ 1 0 15091304 -vitamin_b2 n 1 2 @ %s 1 0 15091473 -vitamin_b6 n 1 1 @ 1 0 15091669 -vitamin_b_complex n 1 2 @ ~ 1 0 15090742 -vitamin_bc n 1 1 @ 1 0 15091846 -vitamin_c n 1 1 @ 1 1 15093298 -vitamin_d n 1 2 @ %s 1 0 15092227 -vitamin_e n 1 2 @ ~ 1 1 15092409 -vitamin_g n 1 2 @ %s 1 0 15091473 -vitamin_h n 1 1 @ 1 0 15092650 -vitamin_k n 1 2 @ ~ 1 0 15092751 -vitamin_k1 n 1 1 @ 1 0 15092942 -vitamin_k3 n 1 1 @ 1 0 15093049 -vitamin_m n 1 1 @ 1 0 15091846 -vitamin_p n 1 1 @ 1 0 15093137 -vitamin_pill n 1 2 @ ~ 1 0 07938149 -vitelline_circulation n 1 1 @ 1 0 11439566 -vitelline_sac n 1 1 @ 1 0 01465243 -vitellus n 1 2 @ #p 1 0 01464844 -vithar n 1 2 @ ; 1 0 09584218 -vitharr n 1 2 @ ; 1 0 09584218 -viti_levu n 1 2 @ #p 1 0 08778936 -vitiation n 1 2 @ + 1 0 00233212 -viticulture n 1 2 @ - 1 0 01126709 -viticulturist n 1 1 @ 1 0 10758121 -vitidaceae n 1 3 @ #m %m 1 0 13144303 -vitiligo n 1 3 @ %p + 1 0 14232945 -vitis n 1 3 @ #m %m 1 0 13144511 -vitis_labrusca n 1 3 @ #m %p 1 0 13145040 -vitis_rotundifolia n 1 3 @ #m %p 1 0 13145250 -vitis_vinifera n 1 4 @ ~ #m %p 1 0 13145444 -vitrectomy n 1 1 @ 1 0 00680658 -vitreous_body n 1 2 @ %s 1 0 05318407 -vitreous_humor n 1 2 @ %s 1 0 05318407 -vitreous_humour n 1 2 @ %s 1 0 05318407 -vitreous_silica n 1 2 @ %s 1 0 14879750 -vitrification n 2 2 @ + 2 0 15112565 13573805 -vitrine n 1 2 @ ~ 1 0 02975212 -vitriol n 2 4 @ ~ %s + 2 0 15093482 06721604 -vittaria n 1 3 @ #m %m 1 0 13179648 -vittaria_lineata n 1 2 @ #m 1 0 13179804 -vittariaceae n 1 3 @ #m %m 1 0 13179410 -vittorio_de_sica n 1 1 @ 1 0 10932140 -vituperation n 1 2 @ + 1 0 06721604 -vitus n 1 1 @ 1 0 11367725 -vitus_behring n 1 1 @ 1 0 10846913 -vitus_bering n 1 1 @ 1 0 10846913 -viva n 1 1 @ 1 0 07198846 -viva_voce n 1 1 @ 1 0 07198846 -vivacity n 1 2 @ + 1 0 04634299 -vivaldi n 1 1 @ 1 0 11367910 -vivarium n 1 2 @ ~ 1 0 04539203 -viverra n 1 2 @ #m 1 0 02135486 -viverra_zibetha n 1 1 @ 1 0 02135610 -viverricula n 1 2 @ #m 1 0 02135726 -viverricula_indica n 1 1 @ 1 0 02135844 -viverricula_malaccensis n 1 1 @ 1 0 02135844 -viverridae n 1 3 @ #m %m 1 0 02134589 -viverrinae n 1 3 @ #m %m 1 0 02134589 -viverrine n 1 3 @ ~ #m 1 0 02134971 -viverrine_mammal n 1 3 @ ~ #m 1 0 02134971 -vividness n 2 4 @ #s = + 2 1 05193338 04975340 -vivien_leigh n 1 1 @ 1 0 11125546 -vivification n 2 4 @ ~ = + 2 0 04631700 01048466 -viviparous_eelpout n 1 2 @ #m 1 0 02617537 -vivisection n 1 2 @ + 1 0 00716777 -vivisectionist n 1 2 @ + 1 0 10758207 -vixen n 2 1 @ 2 0 10758337 02118643 -viyella n 1 2 @ ; 1 1 04539407 -vizcaino n 1 1 @ 1 0 11368076 -vizier n 1 2 @ + 1 0 10758445 -viziership n 1 2 @ + 1 0 00605715 -vizor n 2 2 @ #p 2 0 04538878 02838728 -vizsla n 1 1 @ 1 0 02100583 -vladimir_horowitz n 1 1 @ 1 0 11060937 -vladimir_ilich_lenin n 1 1 @ 1 0 11126490 -vladimir_ilich_ulyanov n 1 1 @ 1 0 11126490 -vladimir_ilyich_lenin n 1 1 @ 1 0 11126490 -vladimir_ilyich_ulyanov n 1 1 @ 1 0 11126490 -vladimir_kosma_zworykin n 1 1 @ 1 0 11408414 -vladimir_lenin n 1 1 @ 1 0 11126490 -vladimir_nabokov n 1 1 @ 1 0 11198981 -vladimir_putin n 1 1 @ 1 0 11249322 -vladimir_vladimirovich_mayakovski n 1 1 @ 1 0 11166732 -vladimir_vladimirovich_nabokov n 1 1 @ 1 0 11198981 -vladimir_vladimirovich_putin n 1 1 @ 1 0 11249322 -vladivostok n 1 2 @ #p 1 0 09010670 -vlaminck n 1 1 @ 1 0 11368240 -vldl n 1 1 @ 1 0 15087632 -vlf n 1 2 @ #p 1 0 05057275 -vocable n 1 1 @ 1 0 06304576 -vocabulary n 3 3 @ #p ; 3 3 06420678 05651242 05663275 -vocal n 2 3 @ ~ %p 2 0 07282006 07048000 -vocal_band n 1 3 @ ~ #p 1 0 05530429 -vocal_cord n 1 3 @ ~ #p 1 1 05530429 -vocal_fold n 1 3 @ ~ #p 1 0 05530429 -vocal_music n 2 2 @ ~ 2 0 07282006 00545344 -vocal_organ n 1 2 @ ~ 1 0 05305614 -vocalisation n 1 3 @ ~ + 1 0 07110615 -vocaliser n 2 3 @ ~ + 2 0 10743675 10599806 -vocalism n 2 3 @ ~ + 2 0 07113903 07110615 -vocalist n 1 3 @ ~ + 1 1 10599806 -vocalization n 2 4 @ ~ %p + 2 0 07110615 07109847 -vocalizer n 2 3 @ ~ + 2 0 10743675 10599806 -vocalizing n 1 4 @ ~ + - 1 0 00545501 -vocation n 2 2 @ ~ 2 1 00583246 08403631 -vocational_education n 1 1 @ 1 0 05757902 -vocational_program n 1 1 @ 1 1 05910712 -vocational_rehabilitation n 1 1 @ 1 1 00401314 -vocational_rehabilitation_program n 1 1 @ 1 1 05901248 -vocational_school n 1 1 @ 1 1 08285594 -vocational_training n 1 1 @ 1 1 05757902 -vocative n 1 2 @ + 1 0 06312237 -vocative_case n 1 1 @ 1 0 06312237 -vociferation n 1 2 @ ~ 1 0 07120524 -vociferator n 1 2 @ + 1 0 10758589 -vodka n 1 2 @ #s 1 0 07906111 -vodka_martini n 1 2 @ %s 1 0 07916319 -vodoun n 1 3 @ ~ - 1 0 06245816 -vogue n 2 2 @ ~ 2 1 05750163 14411884 -vogul n 2 2 @ #m 2 0 09708118 06959140 -voice n 11 4 @ ~ + ; 11 9 04981941 07110615 07399452 07073208 00179683 07277697 10758713 10638385 05202284 13802920 07030718 -voice_box n 1 3 @ #p %p 1 0 05529729 -voice_communication n 1 3 @ ~ ; 1 0 07109196 -voice_mail n 1 1 @ 1 0 06272612 -voice_of_conscience n 1 1 @ 1 0 09184405 -voice_over n 1 1 @ 1 0 07282166 -voice_part n 1 2 @ ~ 1 0 07031534 -voiced_sound n 1 1 @ 1 0 07120364 -voiceless_consonant n 1 1 @ 1 0 07119897 -voicelessness n 3 3 @ ~ + 3 0 14400507 07130341 05205537 -voicemail n 1 1 @ 1 0 06272612 -voiceprint n 1 1 @ 1 0 06646022 -voicer n 2 2 @ + 2 0 10758949 10758847 -voicing n 1 1 @ 1 0 01001640 -void n 2 3 @ ~ + 2 0 14455700 13910116 -voidance n 1 3 @ ~ + 1 0 00395797 -voider n 4 3 @ #p + 4 0 10214390 10000007 04539648 03050864 -voiding n 1 3 @ ~ + 1 0 13473097 -voile n 1 1 @ 1 0 04539794 -voix_celeste n 1 1 @ 1 0 04542474 -vol-au-vent n 1 1 @ 1 0 07627564 -volaille n 1 4 @ ~ #p %p 1 0 07644967 -volans n 1 1 @ 1 0 09472268 -volapuk n 1 1 @ 1 0 06898129 -volary n 1 1 @ 1 0 02763604 -volatile n 1 2 @ + 1 0 15093735 -volatile_oil n 1 2 @ ~ 1 0 14892655 -volatile_storage n 1 3 ! @ ~ 1 0 04539876 -volatility n 3 3 @ ~ + 3 0 05009921 04866671 04628850 -volcan_de_colima n 1 2 @ #p 1 0 09174015 -volcanic_crater n 1 3 @ ~ #p 1 0 09472413 -volcanic_eruption n 1 2 @ ~ 1 1 07436475 -volcanic_glass n 1 2 @ ~ 1 0 14880777 -volcanic_rock n 1 2 @ ~ 1 0 14933314 -volcanism n 1 1 @ 1 0 11524110 -volcano n 2 5 @ ~ %p + - 2 1 09470550 09472597 -volcano_islands n 1 2 @ #p 1 0 08926877 -volcanology n 1 1 @ 1 0 06120653 -vole n 1 2 @ ~ 1 0 02339376 -volga n 1 2 @ #p 1 0 09473239 -volga_river n 1 2 @ #p 1 0 09473239 -volgaic n 1 2 @ ~ 1 0 06957140 -volgograd n 1 2 @ #p 1 0 09010085 -volition n 2 3 @ ~ + 2 1 05652593 00163047 -volkhov n 1 2 @ #p 1 0 09473397 -volkhov_river n 1 2 @ #p 1 0 09473397 -volley n 2 3 ! @ + 2 2 00988320 00569733 -volleyball n 2 1 @ 2 1 00480211 04540053 -volleyball_court n 1 1 @ 1 0 04540153 -volleyball_game n 1 1 @ 1 0 00480211 -volleyball_net n 1 1 @ 1 0 04540255 -volleyball_player n 1 1 @ 1 0 10759047 -volt n 1 4 @ #p %p + 1 0 13643276 -volt-ampere n 1 2 @ #p 1 0 13645132 -volta n 2 2 @ #p 2 0 11368368 09473558 -voltage n 2 2 @ ~ 2 2 11523538 11493827 -voltage_divider n 1 2 @ ~ 1 0 03991443 -voltage_drop n 1 1 @ 1 0 05111704 -voltage_regulator n 1 2 @ #p 1 0 04540397 -voltaic n 1 1 @ 1 0 06996160 -voltaic_battery n 1 3 @ ~ %p 1 1 04540547 -voltaic_cell n 1 5 ! @ ~ #p %p 1 1 04540761 -voltaic_pile n 1 1 @ 1 1 04541136 -voltaire n 1 2 @ + 1 1 11368638 -voltaren n 1 3 @ %s ; 1 0 03192142 -volte-face n 1 2 @ ~ 1 0 00163406 -voltmeter n 1 2 @ ~ 1 1 04541320 -volubility n 1 2 @ + 1 0 04651195 -volume n 6 6 @ ~ #m %p = + 6 6 13779032 05099389 02870092 06413666 13779244 04990220 -volume-detonation_bomb n 1 1 @ 1 0 04420461 -volume_unit n 1 3 @ ~ #p 1 0 13600822 -volumeter n 1 2 @ + 1 0 04541475 -volumetric_analysis n 2 2 @ ~ 2 0 00648542 00647713 -voluminosity n 1 2 @ + 1 0 05106024 -voluminousness n 1 2 @ + 1 0 05106024 -volund n 1 2 @ ; 1 0 09584559 -voluntary n 2 4 @ ~ + ; 2 0 10759331 07041125 -voluntary_muscle n 1 1 @ 1 0 05290897 -volunteer n 3 5 ! @ ~ + ; 3 2 10759331 10759151 09745732 -volunteer_state n 1 5 @ #m #p %p - 1 0 09140148 -voluptuary n 1 2 @ + 1 0 10759543 -voluptuousness n 3 3 @ + ; 3 0 05210820 05116243 04686748 -volute n 2 3 @ ~ + 2 0 04279666 03065424 -volute_spring n 1 1 @ 1 0 03066359 -volution n 1 1 @ 1 0 07447177 -volva n 1 2 @ #p 1 0 11532682 -volvaria n 1 3 @ #m %m 1 0 13018749 -volvaria_bombycina n 1 2 @ #m 1 0 13018906 -volvariaceae n 1 3 @ #m %m 1 0 13018579 -volvariella n 1 3 @ #m %m 1 0 13020011 -volvariella_bombycina n 1 2 @ #m 1 0 13020481 -volvariella_volvacea n 1 2 @ #m 1 0 13020191 -volvocaceae n 1 3 @ #m %m 1 0 01409065 -volvocales n 1 3 @ #m %m 1 0 01408880 -volvox n 1 2 @ #m 1 0 01409244 -volvulus n 1 1 @ 1 0 14574014 -vombatidae n 1 3 @ #m %m 1 0 01882948 -vomer n 1 2 @ #p 1 0 05610734 -vomit n 3 3 @ ~ + 3 0 14855992 03283519 00118733 -vomiter n 1 2 @ + 1 0 10759702 -vomiting n 1 3 @ ~ + 1 1 00118733 -vomitive n 1 2 @ ~ 1 0 03283519 -vomitory n 1 2 @ #p 1 0 04541662 -vomitus n 1 1 @ 1 0 14855992 -von_bismarck n 1 1 @ 1 0 10851599 -von_blucher n 1 1 @ 1 0 10853932 -von_braun n 1 1 @ 1 0 10863124 -von_mauser n 1 1 @ 1 0 11165854 -von_neumann n 1 1 @ 1 0 11369035 -von_neumann_machine n 1 1 @ 1 0 04541777 -von_recklinghausen's_disease n 1 1 @ 1 0 14158179 -von_rundstedt n 1 1 @ 1 0 11273679 -von_sternberg n 1 1 @ 1 0 11369251 -von_willebrand n 1 1 @ 1 0 11388321 -von_willebrand's_disease n 1 1 @ 1 0 14171176 -vonnegut n 1 1 @ 1 0 11368841 -voodoo n 3 5 @ ~ + ; - 3 1 03603958 08152507 06245816 -voodooism n 1 3 @ ~ - 1 0 06245816 -voraciousness n 3 2 @ + 3 0 14040071 04886402 04834817 -voracity n 2 2 @ + 2 0 14040071 04886402 -vortex n 2 2 @ ~ 2 0 13878112 07433145 -vortex_vein n 1 1 @ 1 0 05425703 -vorticella n 1 2 @ #m 1 0 01396951 -vorticose_vein n 1 1 @ 1 0 05425703 -votary n 3 2 @ ~ 3 0 10760199 10759982 10759820 -vote n 5 5 @ ~ #m + ; 5 3 00183505 00182213 05186306 08480662 05857165 -vote_counter n 1 2 @ ~ 1 0 10699099 -vote_of_confidence n 1 1 @ 1 1 07253482 -voter n 1 4 @ ~ #m + 1 1 10760340 -voter_turnout n 1 1 @ 1 0 05857165 -voting n 1 3 @ ~ + 1 1 00183505 -voting_age n 1 2 @ #p 1 0 15152674 -voting_booth n 1 1 @ 1 0 04541987 -voting_machine n 1 1 @ 1 0 04542095 -voting_precinct n 1 1 @ 1 1 08538730 -voting_right n 1 1 @ 1 1 05188367 -voting_stock n 1 1 @ 1 0 13420221 -voting_system n 1 3 @ ~ ; 1 1 05904135 -voting_trust n 1 1 @ 1 1 13363704 -votyak n 2 1 @ 2 0 09644518 06956794 -vouchee n 1 3 @ + ; 1 0 10760622 -voucher n 3 3 @ ~ + 3 0 10760763 06675691 06518068 -vouge n 1 1 @ 1 0 04542221 -voussoir n 1 2 @ #p 1 0 04542329 -vouvray n 1 1 @ 1 0 07899769 -vow n 1 2 @ + 1 0 07228751 -vowel n 2 4 ! @ ~ + 2 1 07112550 07114712 -vowel_point n 1 1 @ 1 0 07114870 -vowel_rhyme n 1 1 @ 1 0 07097346 -vowel_sound n 1 2 @ ~ 1 1 07112550 -vowel_system n 1 1 @ 1 1 07113903 -vower n 1 2 @ + 1 0 10760951 -vox n 1 2 @ ~ 1 0 07110615 -vox_angelica n 1 1 @ 1 0 04542474 -vox_humana n 1 1 @ 1 0 04542595 -vox_populi n 1 1 @ 1 0 05949726 -voyage n 2 3 @ ~ + 2 2 00312784 00312553 -voyager n 1 2 @ + 1 1 10761190 -voyageurs_national_park n 1 2 @ #p 1 0 08609685 -voyeur n 1 2 @ + 1 0 10761326 -voyeurism n 1 2 @ + 1 0 00738372 -voznesenski n 1 1 @ 1 0 11369444 -vroom n 1 1 @ 1 0 07399620 -vt n 1 3 @ #p %p 1 0 09147964 -vuillard n 1 1 @ 1 0 11369551 -vulcan n 1 2 @ ; 1 0 09562166 -vulcanisation n 1 2 @ + 1 0 13573915 -vulcaniser n 1 2 @ + 1 0 10761519 -vulcanite n 1 1 @ 1 0 15007534 -vulcanization n 1 2 @ + 1 0 13573915 -vulcanized_fiber n 1 1 @ 1 0 03331244 -vulcanizer n 1 2 @ + 1 0 10761519 -vulcanology n 1 1 @ 1 0 06120653 -vulgar_latin n 1 1 @ 1 0 06963429 -vulgarian n 1 2 @ ~ 1 0 10761693 -vulgarisation n 2 2 @ + 2 0 01268020 00273077 -vulgariser n 2 2 @ + 2 0 10761858 10454752 -vulgarism n 2 3 @ ~ - 2 0 07124340 04817280 -vulgarity n 1 2 @ + 1 0 04817280 -vulgarization n 2 2 @ + 2 0 01268020 00273077 -vulgarizer n 2 2 @ + 2 0 10761858 10454752 -vulgate n 1 2 @ ; 1 0 06448594 -vulnerability n 2 4 ! @ ~ + 2 1 14543931 05042871 -vulpecula n 1 1 @ 1 0 09473685 -vulpes n 1 3 @ #m %m 1 0 02118854 -vulpes_fulva n 1 2 @ #m 1 0 02119477 -vulpes_macrotis n 1 2 @ #m 1 0 02119789 -vulpes_velox n 1 2 @ #m 1 0 02119634 -vulpes_vulpes n 1 3 @ ~ #m 1 0 02119022 -vultur n 1 3 @ #m %m 1 0 01619675 -vultur_gryphus n 1 2 @ #m 1 0 01619835 -vulture n 2 3 @ ~ + 2 1 01616318 10293172 -vulva n 1 4 @ #p %p + 1 0 05521636 -vulvar_slit n 1 2 @ #p 1 0 05522784 -vulvectomy n 1 1 @ 1 0 00716676 -vulvitis n 1 1 @ 1 0 14358993 -vulvovaginitis n 1 1 @ 1 0 14359073 -vx_gas n 1 1 @ 1 0 14960963 -vyacheslav_mikhailovich_molotov n 1 1 @ 1 0 11184927 -w n 4 5 @ #m #s #p %p 4 0 14659512 13834399 13644522 06833544 -w._b._yeats n 1 1 @ 1 0 11402463 -w._c._fields n 1 1 @ 1 0 10970718 -w._c._handy n 1 1 @ 1 0 11027885 -w._e._b._du_bois n 1 1 @ 1 0 10944013 -w._h._auden n 1 1 @ 1 0 10828233 -w._h._hudson n 1 1 @ 1 0 11064330 -w._k._kellogg n 1 1 @ 1 0 11099438 -w._somerset_maugham n 1 1 @ 1 0 11164970 -w._v._quine n 1 1 @ 1 0 11250991 -w._w._jacobs n 1 1 @ 1 0 11078059 -w.c. n 1 1 @ 1 0 04558478 -w.m.d. n 1 3 @ ~ ; 1 0 04565963 -wa n 1 3 @ #p %p 1 0 09152944 -wabash n 1 2 @ #p 1 0 09473808 -wabash_river n 1 2 @ #p 1 0 09473808 -wac n 2 1 @ 2 0 10761962 08212740 -wacko n 1 1 @ 1 0 10368414 -waco n 1 2 @ #p 1 0 09146813 -wad n 3 3 @ ~ + 3 0 15112702 13774404 07579399 -wadding n 1 2 @ ~ 1 0 14976448 -waddle n 1 2 @ + 1 0 00290406 -waddler n 1 2 @ + 1 0 10762064 -wade n 1 2 @ + 1 0 11369676 -wader n 1 3 @ ~ + 1 0 02000954 -waders n 1 2 @ ; 1 0 04542715 -wadi n 1 1 @ 1 0 09474010 -wading n 1 2 @ + 1 0 00293307 -wading_bird n 1 2 @ ~ 1 0 02000954 -wading_pool n 1 1 @ 1 0 04542858 -wads n 1 1 @ 1 1 13777509 -wafer n 3 1 @ 3 1 14705183 07695012 07687053 -waffle n 1 2 @ ~ 1 1 07641699 -waffle_iron n 1 1 @ 1 0 04542943 -waffler n 1 2 @ + 1 0 10762212 -waft n 1 2 @ ~ 1 0 03911866 -wafture n 1 2 @ ~ 1 0 07274027 -wag n 2 3 @ + ; 2 1 10762342 00347652 -wage n 1 3 @ ~ #p 1 1 13279262 -wage_claim n 1 1 @ 1 0 07192845 -wage_concession n 1 1 @ 1 0 07217260 -wage_earner n 1 2 @ ~ 1 0 10041887 -wage_floor n 1 1 @ 1 0 06658441 -wage_freeze n 1 1 @ 1 0 00809373 -wage_hike n 1 1 @ 1 0 05110185 -wage_increase n 1 1 @ 1 0 05110185 -wage_scale n 1 2 @ ~ 1 0 13853546 -wage_schedule n 1 2 @ ~ 1 0 13853546 -wage_setter n 1 1 @ 1 1 14494594 -wager n 2 4 @ ~ #p + 2 1 00506658 13343526 -wagerer n 1 3 @ ~ + 1 0 09851876 -wages n 1 1 @ 1 1 07295629 -wagga_wagga n 1 2 @ #p 1 0 08833524 -waggery n 2 1 @ 2 0 06781281 00515069 -waggishness n 1 2 @ + 1 0 06781281 -waggle n 1 2 @ + 1 0 00347652 -waggon n 2 3 @ ~ %p 2 0 04543158 02814533 -waggoner n 1 1 @ 1 0 10762607 -waggonwright n 1 1 @ 1 0 10762693 -wagner n 3 2 @ + 3 0 11370068 11369834 07278925 -wagnerian n 1 1 @ 1 0 10762480 -wagon n 5 4 @ ~ #p %p 5 2 04543158 03977966 09219858 04543509 02814533 -wagon-lit n 1 2 @ %p 1 0 04236001 -wagon_tire n 1 2 @ #p 1 0 04543636 -wagon_train n 1 2 @ %m 1 0 08427629 -wagon_wheel n 1 3 @ #p %p 1 1 04543772 -wagoner n 1 1 @ 1 0 10762607 -wagonwright n 1 1 @ 1 0 10762693 -wagram n 2 3 @ #p ; 2 0 08847165 01299037 -wagtail n 1 2 @ #m 1 0 01528396 -wahabi n 1 1 @ 1 0 10762792 -wahabism n 1 1 @ 1 0 06236602 -wahhabi n 1 1 @ 1 0 10762792 -wahhabism n 1 1 @ 1 0 06236602 -wahoo n 3 2 @ #m 3 0 12749852 12749679 02625258 -wahunsonacock n 1 1 @ 1 0 11245382 -wahvey n 1 1 @ 1 0 09538318 -waif n 1 1 @ 1 0 10763075 -waikiki n 1 2 @ #p 1 0 09079001 -wail n 1 2 @ + 1 1 07211950 -wailer n 1 2 @ + 1 0 10763245 -wailing n 1 2 @ + 1 1 00868799 -wailing_wall n 1 2 @ #p 1 0 08797619 -wain n 3 2 @ #p 3 0 11370201 09219858 04543924 -wainscot n 2 2 @ #p 2 0 04544138 04543996 -wainscoting n 2 1 @ 2 0 04544325 04543996 -wainscotting n 2 1 @ 2 0 04544325 04543996 -wainwright n 1 1 @ 1 0 10762693 -waist n 2 3 @ ~ #p 2 1 05555688 04183663 -waist_anchor n 1 1 @ 1 0 04188985 -waist_pack n 1 2 @ ~ 1 0 04544450 -waistband n 1 2 @ ~ 1 0 03438071 -waistcloth n 1 2 @ ~ 1 0 03438071 -waistcoat n 1 3 @ ~ #p 1 0 04531873 -waistline n 1 3 @ ~ #p 1 0 05555688 -wait n 2 3 @ ~ + 2 2 15272029 01063939 -waite n 1 1 @ 1 0 11370314 -waiter n 2 3 @ ~ + 2 1 10763383 10763725 -waiter's_assistant n 1 1 @ 1 0 09881358 -waiting n 1 2 @ + 1 1 01063939 -waiting_area n 1 2 @ ~ 1 0 03691817 -waiting_game n 1 1 @ 1 0 05909306 -waiting_line n 1 2 @ ~ 1 0 08432345 -waiting_list n 1 1 @ 1 1 06497013 -waiting_room n 1 2 @ ~ 1 0 03691817 -waitress n 1 3 @ ~ + 1 1 10763620 -waiver n 1 3 @ ~ + 1 0 00213694 -wajda n 1 1 @ 1 0 11370554 -wakashan n 2 2 @ ~ 2 0 09671453 06914423 -wakashan_language n 1 2 @ ~ 1 0 06914423 -wake n 4 3 @ #p - 4 1 11411610 08838556 07344368 01029883 -wake-robin n 2 3 @ ~ #m 2 0 12468243 11784497 -wake-up_call n 2 1 @ 2 0 07224481 06274546 -wake-up_signal n 1 2 @ ; 1 0 06804728 -wake_board n 1 1 @ 1 0 04544626 -wake_island n 1 3 @ #p - 1 0 08838556 -wakeboard n 1 1 @ 1 0 04544626 -wakefulness n 3 4 ! @ ~ + 3 1 05678474 14022959 05705722 -wakening n 1 3 @ ~ + 1 0 01259773 -waker n 2 2 @ + 2 0 10763985 10763878 -waking n 1 4 ! @ ~ + 1 0 05678300 -waking_up n 1 2 @ ~ 1 1 01259773 -walapai n 2 1 @ 2 0 09671808 06923283 -walbiri n 1 1 @ 1 0 06940601 -waldenses n 1 1 @ 1 0 08150892 -waldheim n 1 1 @ 1 0 11370654 -waldmeister n 2 4 @ #s #p %p 2 0 12665271 07821260 -waldorf_salad n 1 1 @ 1 0 07808022 -wale n 2 3 @ ~ #p 2 0 14298620 04544805 -wales n 1 5 @ #p %m %p - 1 0 08894456 -walesa n 1 1 @ 1 0 11370990 -walhalla n 1 2 @ ; 1 0 05629204 -walk n 7 5 @ ~ %p + ; 7 6 00283568 00127286 05003090 00284798 04544979 00287142 00584248 -walk-in n 4 2 @ + 4 0 10764296 10764128 07475762 04545984 -walk-on n 1 1 @ 1 0 10764622 -walk-through n 4 2 @ + 4 0 07282289 04546734 00897608 00293753 -walk-up n 2 3 @ #p %p 2 2 04546595 04546481 -walk-up_apartment n 1 2 @ #p 1 0 04546595 -walk_of_life n 1 1 @ 1 1 00584248 -walkabout n 3 3 @ + ; 3 0 00293657 00293545 00293417 -walkaway n 1 1 @ 1 0 07475107 -walker n 6 3 @ ~ + 6 0 11371254 11371125 10412055 04545748 04545471 04545305 -walker_foxhound n 1 1 @ 1 0 02089867 -walker_hound n 1 1 @ 1 0 02089867 -walker_percy n 1 1 @ 1 0 11229662 -walker_smith n 1 1 @ 1 0 11266279 -walkie-talkie n 1 1 @ 1 0 04545858 -walking n 1 4 @ ~ %p + 1 0 00283568 -walking_delegate n 1 1 @ 1 0 10764465 -walking_fern n 1 1 @ 1 0 13181811 -walking_horse n 1 1 @ 1 0 02379430 -walking_leaf n 2 2 @ #m 2 0 13181811 02232223 -walking_on_air n 1 3 @ ~ + 1 0 13987905 -walking_papers n 1 1 @ 1 0 07276414 -walking_shoe n 1 1 @ 1 0 04546081 -walking_stick n 2 3 @ ~ #m 2 1 04546194 02231487 -walkingstick n 1 3 @ ~ #m 1 0 02231487 -walkman n 1 2 @ ; 1 0 04546340 -walkout n 2 2 @ + 2 1 01244341 01178195 -walkover n 2 3 @ ~ + 2 1 00434568 00575365 -walkway n 1 2 @ ~ 1 0 04544979 -walky-talky n 1 1 @ 1 0 04545858 -wall n 8 6 @ ~ #p %p + ; 8 3 04546855 09474162 05604254 14564779 09474412 04547821 04547592 04051825 -wall-paperer n 1 1 @ 1 0 10765189 -wall_barley n 1 1 @ 1 0 12123741 -wall_bracket n 1 2 @ ~ 1 0 02888569 -wall_clock n 1 1 @ 1 0 04548280 -wall_creeper n 1 2 @ #m 1 0 01590220 -wall_fern n 1 1 @ 1 0 13173882 -wall_germander n 1 1 @ 1 0 12869874 -wall_hanging n 1 2 @ ~ 1 0 03491178 -wall_of_silence n 1 1 @ 1 0 01050356 -wall_painting n 1 2 @ ~ 1 0 03799710 -wall_panel n 1 2 @ #p 1 0 04548503 -wall_pellitory n 1 2 @ #m 1 0 12394638 -wall_pepper n 1 2 @ #m 1 0 12786097 -wall_plate n 1 1 @ 1 0 04548613 -wall_plug n 1 2 @ ~ 1 1 04548771 -wall_rock n 1 1 @ 1 0 09474663 -wall_rocket n 1 2 @ #m 1 0 11885292 -wall_rue n 1 1 @ 1 0 13182462 -wall_rue_spleenwort n 1 1 @ 1 0 13182462 -wall_socket n 1 2 @ ~ 1 0 04548771 -wall_st. n 1 2 @ #p 1 0 09122779 -wall_street n 2 2 @ #p 2 1 09122779 08073468 -wall_tent n 1 1 @ 1 1 04549028 -wall_unit n 1 2 @ ~ 1 0 04549122 -walla_walla n 1 2 @ #p 1 0 09155065 -wallaby n 1 2 @ ~ 1 0 01877812 -wallace n 3 1 @ 3 0 11371778 11371622 11371443 -wallace_carothers n 1 1 @ 1 0 10883533 -wallace_hume_carothers n 1 1 @ 1 0 10883533 -wallace_stevens n 1 1 @ 1 0 11317416 -wallah n 1 2 @ ; 1 0 10764719 -wallboard n 1 2 @ ~ 1 0 04547991 -wallenstein n 1 1 @ 1 0 11372054 -waller n 1 1 @ 1 0 11372242 -wallet n 1 1 @ 1 1 04548362 -walleye n 2 2 @ ~ 2 0 14557573 02557749 -walleyed_pike n 1 2 @ ~ 1 0 02557749 -wallflower n 3 3 @ ~ #m 3 1 11887119 11883328 10764907 -wallis_warfield_simpson n 1 1 @ 1 0 11301809 -wallis_warfield_windsor n 1 1 @ 1 0 11301809 -walloon n 2 2 @ #m 2 0 09750641 06966070 -walloons n 1 1 @ 1 0 08484986 -wallop n 2 2 @ + 2 0 11414411 01176031 -walloper n 3 2 @ + 3 0 10765098 10765000 06757676 -walloping n 1 2 @ + 1 0 07476623 -wallow n 2 2 @ + 2 0 09474557 07442874 -wallpaper n 1 2 @ + 1 1 15093938 -wallpaperer n 1 2 @ + 1 0 10765189 -wally n 1 2 @ ; 1 0 10765305 -walnut n 3 7 @ ~ #m #s #p %s %p 3 1 07771212 12318615 12318378 -walnut_blight n 1 1 @ 1 0 14219394 -walnut_family n 1 3 @ #m %m 1 0 12317919 -walnut_oil n 1 2 @ #s 1 0 07675535 -walnut_tree n 1 5 @ ~ #m %s %p 1 1 12318378 -walpole n 2 1 @ 2 0 11372599 11372372 -walpurgis_night n 1 1 @ 1 0 15181977 -walrus n 1 3 @ ~ #m 1 1 02081571 -walrus_moustache n 1 1 @ 1 0 05262698 -walrus_mustache n 1 1 @ 1 0 05262698 -walt_disney n 1 1 @ 1 0 10937126 -walt_disney_world n 1 2 @ #p 1 0 09075688 -walt_whitman n 1 1 @ 1 0 11384986 -walt_whitman_bridge n 1 2 @ #p 1 0 04549276 -walter n 1 1 @ 1 0 11372799 -walter_de_la_mare n 1 1 @ 1 0 10928645 -walter_elias_disney n 1 1 @ 1 0 10937126 -walter_gropius n 1 1 @ 1 0 11017295 -walter_hess n 1 1 @ 1 0 11047961 -walter_john_de_la_mare n 1 1 @ 1 0 10928645 -walter_lippmann n 1 1 @ 1 0 11134620 -walter_mitty n 1 1 @ 1 0 10765435 -walter_piston n 1 1 @ 1 0 11235926 -walter_ralegh n 1 1 @ 1 0 11252627 -walter_raleigh n 1 1 @ 1 0 11252627 -walter_reed n 1 1 @ 1 0 11256335 -walter_rudolf_hess n 1 1 @ 1 0 11047961 -walter_scott n 1 1 @ 1 0 11289161 -walter_william_skeat n 1 1 @ 1 0 11304354 -walther_hermann_nernst n 1 1 @ 1 0 11203287 -walther_richard_rudolf_hess n 1 1 @ 1 0 11047701 -walton n 3 1 @ 3 0 11373231 11373099 11372896 -waltz n 3 2 @ + 3 0 07475762 07058184 00537534 -waltzer n 1 2 @ + 1 0 10765587 -wampanoag n 1 2 @ ~ 1 0 09671641 -wampee n 1 2 @ #m 1 0 12609968 -wampum n 2 1 @ 2 0 13385216 04549407 -wampumpeag n 1 1 @ 1 0 04549407 -wan n 1 1 @ 1 0 04583477 -wanamaker n 1 1 @ 1 0 11373379 -wand n 4 2 @ ~ 4 1 04549629 13164285 07267573 02809364 -wanda_landowska n 1 1 @ 1 0 11115929 -wandala n 1 1 @ 1 0 06984101 -wanderer n 2 3 @ ~ + 2 1 10765679 06579715 -wandering n 1 3 @ ~ + 1 0 00297062 -wandering_albatross n 1 2 @ #m 1 0 02058594 -wandering_jew n 1 1 @ 1 0 10765885 -wandering_nerve n 1 1 @ 1 0 05480076 -wanderlust n 1 1 @ 1 0 09183140 -wandflower n 2 2 @ #m 2 0 12418507 12251278 -wane n 1 2 @ + 1 0 13470491 -wangle n 1 2 @ + 1 0 05906554 -wangler n 1 2 @ + 1 0 10089615 -wangling n 1 2 @ + 1 0 05906554 -waning n 1 3 ! @ + 1 1 07423001 -wank n 1 3 @ + ; 1 0 00856193 -wankel_engine n 1 1 @ 1 0 04549721 -wankel_rotary_engine n 1 1 @ 1 0 04549721 -wanker n 1 2 @ + 1 0 10717196 -wannabe n 1 1 @ 1 0 09801533 -wannabee n 1 1 @ 1 0 09801533 -wanness n 1 2 @ + 1 0 04977561 -want n 4 3 @ ~ + 4 4 14493426 14449405 09367991 07486229 -want_ad n 1 1 @ 1 0 07249932 -wanted_notice n 1 2 @ ~ 1 0 07276538 -wanted_poster n 1 2 @ ~ 1 0 07276538 -wanter n 1 2 @ + 1 0 10766025 -wanton n 1 3 @ ~ + 1 0 10766260 -wantonness n 2 2 @ + 2 0 04885398 04851715 -wapiti n 2 3 @ ~ #m 2 0 02431785 02431122 -war n 4 7 ! @ ~ %p + ; - 4 3 00973077 13981403 01236296 00801125 -war_admiral n 1 1 @ 1 0 02383912 -war_advocacy n 1 1 @ 1 0 06222236 -war_baby n 1 1 @ 1 0 10766409 -war_between_the_states n 1 3 @ %p ; 1 0 01301630 -war_bride n 1 1 @ 1 0 10766626 -war_chest n 1 2 @ ; 1 0 13360254 -war_cloud n 1 1 @ 1 0 07286278 -war_correspondent n 1 1 @ 1 0 10766718 -war_crime n 1 1 @ 1 1 00782518 -war_criminal n 1 1 @ 1 0 10766899 -war_cry n 2 1 @ 2 0 07152752 07123404 -war_dance n 1 1 @ 1 0 00543114 -war_department n 1 1 @ 1 1 08145092 -war_game n 1 2 @ ; 1 0 00461402 -war_god n 1 1 @ 1 1 10767654 -war_hawk n 1 1 @ 1 0 10162644 -war_machine n 1 4 @ ~ %m - 1 0 08199025 -war_of_1812 n 1 1 @ 1 0 01311344 -war_of_american_independence n 1 2 @ %p 1 0 01302086 -war_of_greek_independence n 1 1 @ 1 0 01310074 -war_of_nerves n 1 1 @ 1 0 00953410 -war_of_the_austrian_succession n 1 2 @ %p 1 0 01310347 -war_of_the_grand_alliance n 1 2 @ %p 1 0 01310536 -war_of_the_league_of_augsburg n 1 2 @ %p 1 0 01310536 -war_of_the_roses n 1 3 @ %p ; 1 0 01311045 -war_of_the_spanish_succession n 1 2 @ %p 1 0 01310789 -war_paint n 3 3 @ ~ ; 3 0 04552195 04552097 03714235 -war_party n 2 2 @ ; 2 0 08265912 08264110 -war_power n 1 1 @ 1 0 13945682 -war_room n 1 1 @ 1 0 04552551 -war_secretary n 1 1 @ 1 0 00603131 -war_to_end_war n 1 2 @ %p 1 0 01311520 -war_vessel n 1 5 @ ~ #m %p ; 1 0 04552696 -war_whoop n 1 1 @ 1 0 07123404 -war_widow n 1 1 @ 1 0 10768810 -war_zone n 1 2 @ ; 1 0 08688779 -waratah n 2 2 @ #m 2 0 12223764 12223569 -warble n 1 1 @ 1 0 02195257 -warble_fly n 1 2 @ #m 1 0 02195091 -warbler n 2 3 @ ~ + 2 0 10766492 01563128 -warburg n 2 1 @ 2 0 11373672 11373550 -ward n 7 5 @ ~ #p %p + 7 3 10767020 08672397 04549919 11374281 11374085 11373897 02992032 -ward-heeler n 1 1 @ 1 1 10278805 -warden n 1 2 @ + 1 0 10767154 -wardenship n 1 2 @ + 1 0 00605812 -warder n 1 3 @ ~ + 1 0 10767265 -wardership n 1 2 @ + 1 0 00605909 -wardress n 1 2 @ ~ 1 0 10767432 -wardrobe n 3 3 @ ~ #p 3 2 04550184 04550426 04550546 -wardroom n 1 2 @ ; 1 1 04550676 -ware n 2 3 @ ~ #p 2 0 04550840 03748886 -warehouse n 1 3 @ ~ + 1 1 04551055 -warehouseman n 1 1 @ 1 0 10767519 -warehouseman's_lien n 1 1 @ 1 0 13402879 -warehouser n 1 2 @ + 1 0 10767519 -warehousing n 1 3 @ ~ + 1 1 00372607 -warfare n 2 5 @ ~ %p ; - 2 2 00973077 01236296 -warfarin n 1 1 @ 1 0 04551205 -warhead n 1 3 @ ~ #p 1 0 04551375 -warhol n 1 1 @ 1 0 11374448 -warhorse n 3 3 @ ~ ; 3 1 04551638 10749123 02378415 -wariness n 1 4 ! @ = + 1 0 04664413 -warji n 1 1 @ 1 0 06983320 -warlock n 1 1 @ 1 0 10767762 -warlord n 1 1 @ 1 0 10767837 -warlpiri n 1 1 @ 1 0 06940601 -warm-up n 1 2 @ + 1 1 01144716 -warm_front n 1 1 @ 1 0 11460728 -warmer n 1 3 @ ~ + 1 0 03508101 -warmheartedness n 2 3 @ ~ + 2 0 07546279 07544647 -warming n 2 3 @ ~ + 2 0 13491876 11482140 -warming_pan n 1 1 @ 1 0 04551833 -warmness n 2 3 @ ~ + 2 0 07544647 05016753 -warmonger n 1 2 @ ~ 1 0 10316013 -warmongering n 1 1 @ 1 1 06222236 -warmth n 5 2 @ ~ 5 3 05725527 07546279 05016753 04628192 04627000 -warner n 2 2 @ + 2 0 11374589 10768022 -warning n 3 3 @ ~ + 3 2 07224151 06672297 07212874 -warning_bell n 1 1 @ 1 0 04444121 -warning_coloration n 1 1 @ 1 0 04979002 -warning_device n 1 2 @ ~ 1 0 02694426 -warning_light n 1 2 @ ~ 1 0 06874571 -warning_of_attack n 1 2 @ ; 1 0 07226151 -warning_of_war n 1 2 @ ; 1 0 07226330 -warning_signal n 1 2 @ ~ 1 0 06803157 -warp n 4 4 @ #s #p + 4 0 14504726 13885700 07434102 04551950 -warpath n 2 1 @ 2 0 07548860 00416646 -warping n 1 2 @ + 1 0 07434102 -warplane n 1 3 @ ~ ; 1 0 04552348 -warragal n 2 1 @ 2 0 02381744 02115641 -warrant n 4 4 @ ~ + ; 4 1 06547059 13418219 06687358 06685456 -warrant_officer n 1 2 @ ; 1 0 10768391 -warrantee n 3 3 @ ~ + 3 0 10768272 10768148 06685456 -warranter n 1 2 @ + 1 0 10149527 -warrantor n 1 2 @ + 1 0 10149527 -warranty n 1 2 @ ~ 1 0 06685456 -warren n 5 2 @ %m 5 0 11374952 11374789 09474765 08678515 07996598 -warren_burger n 1 1 @ 1 0 10872287 -warren_e._burger n 1 1 @ 1 0 10872287 -warren_earl_burger n 1 1 @ 1 0 10872287 -warren_gamaliel_harding n 1 1 @ 1 0 11028446 -warren_harding n 1 1 @ 1 0 11028446 -warrener n 1 1 @ 1 0 10768505 -warrigal n 2 1 @ 2 0 02381744 02115641 -warrior n 1 3 @ ~ + 1 1 10768585 -wars_of_the_roses n 1 3 @ %p ; 1 0 01311045 -warsaw n 1 2 @ #p 1 1 08983105 -warship n 1 5 @ ~ #m %p ; 1 0 04552696 -warszawa n 1 2 @ #p 1 0 08983105 -wart n 3 4 @ ~ + ; 3 1 13895852 14464883 04696432 -warthog n 1 2 @ #m 1 0 02397096 -wartime n 1 1 @ 1 0 15293328 -wartweed n 1 2 @ #m 1 0 12918609 -wartwort n 1 2 @ #m 1 0 12918609 -warwick n 1 1 @ 1 0 11375087 -wasabi n 2 3 @ #m ; 2 0 11899921 07857356 -wash n 8 5 @ ~ %p + ; 8 3 04553389 00255710 09474895 13574193 11423197 04553245 03648219 01096674 -wash-and-wear n 1 2 @ + 1 0 04553561 -wash-hand_basin n 1 3 @ #p ; 1 0 04553703 -wash-hand_stand n 1 1 @ 1 0 04555400 -wash_drawing n 1 1 @ 1 0 04553245 -wash_leather n 1 1 @ 1 0 14762038 -wash_room n 1 2 @ ~ 1 0 04018667 -washables n 1 1 @ 1 0 03648219 -washbasin n 2 3 @ #p ; 2 1 04553920 04553703 -washboard n 2 2 @ #p 2 0 04554406 04554211 -washbowl n 2 3 @ #p ; 2 1 04553920 04553703 -washcloth n 1 1 @ 1 0 04554523 -washday n 1 1 @ 1 0 15222840 -washer n 3 3 @ ~ + 3 0 10768903 04554871 04554684 -washerman n 1 1 @ 1 0 10769084 -washerwoman n 1 1 @ 1 0 10769188 -washhouse n 1 1 @ 1 0 04554998 -washing n 2 4 @ ~ %p + 2 1 00255710 03648219 -washing-up n 1 1 @ 1 0 00256122 -washing_day n 1 1 @ 1 0 15222840 -washing_machine n 1 1 @ 1 0 04554684 -washing_powder n 1 1 @ 1 0 04254535 -washing_soda n 1 1 @ 1 0 15044844 -washington n 5 5 @ ~ #p %p + 5 4 09070793 09152944 08357129 11375418 11375677 -washington's_birthday n 1 3 @ #p ; 1 0 15187451 -washington_d.c. n 1 4 @ ~ #p %p 1 0 09070793 -washington_irving n 1 1 @ 1 0 11073453 -washington_monument n 1 2 @ #p 1 0 04555101 -washingtonian n 2 2 @ + 2 0 09746314 09746189 -washout n 3 4 @ ~ + ; 3 0 13919173 13574193 10097477 -washrag n 1 1 @ 1 0 04554523 -washroom n 1 1 @ 1 0 04555291 -washstand n 2 1 @ 2 0 04555400 04553920 -washtub n 1 1 @ 1 0 04555600 -washup n 2 3 @ ~ + 2 1 00255214 00255600 -washwoman n 1 1 @ 1 0 10769188 -waslaw_nijinsky n 1 1 @ 1 0 11207585 -wasp n 2 2 @ ~ 2 0 09641578 02212062 -wasp's_nest n 1 1 @ 1 0 09475044 -wasp_waist n 1 1 @ 1 0 05555840 -wasps'_nest n 1 1 @ 1 0 09475044 -wassail n 1 2 @ + 1 0 07931280 -wassailer n 2 2 @ + 2 0 10769321 10713502 -wasserman_reaction n 1 1 @ 1 0 05742241 -wassermann n 2 1 @ 2 0 11375909 05742241 -wassermann_test n 1 1 @ 1 0 05742241 -wassily_kandinski n 1 1 @ 1 0 11096338 -wassily_kandinsky n 1 1 @ 1 0 11096338 -wassily_leontief n 1 1 @ 1 0 11128834 -wastage n 2 2 @ + 2 0 13574452 13328273 -waste n 5 4 @ ~ + ; 5 3 14856263 00742645 04894964 08504594 01252124 -waste-paper_basket n 1 1 @ 1 0 04555700 -waste-yard n 1 2 @ ~ 1 0 08560027 -waste_basket n 1 1 @ 1 0 04555700 -waste_material n 1 2 @ ~ 1 1 14856263 -waste_matter n 1 2 @ ~ 1 0 14856263 -waste_of_effort n 1 1 @ 1 0 00743155 -waste_of_energy n 1 1 @ 1 0 00743155 -waste_of_material n 1 1 @ 1 0 00743251 -waste_of_money n 1 1 @ 1 0 00743348 -waste_of_time n 1 1 @ 1 1 00743500 -waste_paper n 1 1 @ 1 0 15094053 -waste_pipe n 1 2 @ ~ 1 0 03231912 -waste_product n 1 2 @ ~ 1 0 14856263 -wastebasket n 1 1 @ 1 1 04555700 -wastebin n 1 1 @ 1 0 02747177 -wastefulness n 2 3 @ ~ + 2 0 04894964 00742645 -wasteland n 1 2 @ ~ 1 1 08504594 -wastepaper_basket n 1 1 @ 1 0 04555700 -waster n 2 3 @ ~ + 2 0 10769459 10008716 -wastewater n 1 2 @ #s 1 1 14857021 -wasteweir n 1 1 @ 1 0 04277034 -wasteyard n 1 2 @ ~ 1 0 08560027 -wasting n 2 3 @ ~ + 2 0 14548105 14365741 -wasting_away n 1 2 @ ~ 1 0 14365741 -wasting_disease n 1 1 @ 1 0 14144064 -wastrel n 1 1 @ 1 0 10769459 -watch n 6 5 @ ~ %p + ; 6 4 04555897 15292336 00880662 15292502 10271216 01029671 -watch_bracelet n 1 1 @ 1 0 04556204 -watch_cap n 1 1 @ 1 0 04556408 -watch_case n 1 2 @ #p 1 0 04556533 -watch_chain n 1 1 @ 1 0 03374838 -watch_crystal n 1 2 @ #p 1 0 03142679 -watch_fire n 1 1 @ 1 0 06873927 -watch_glass n 2 2 @ #p 2 0 04556664 03142679 -watch_guard n 1 1 @ 1 0 03374838 -watch_key n 1 1 @ 1 0 04556816 -watch_night n 1 1 @ 1 0 01034816 -watch_pocket n 1 1 @ 1 0 03375070 -watchband n 1 1 @ 1 0 04556204 -watchdog n 2 2 @ ~ 2 0 10769607 02103841 -watcher n 3 4 @ ~ #m + 3 1 10633450 10770059 10769782 -watchfulness n 2 3 @ ~ + 2 0 05705722 04664778 -watching n 1 3 @ ~ + 1 1 00879759 -watchmaker n 1 1 @ 1 1 10769905 -watchman n 1 3 @ ~ #m 1 1 10770059 -watchstrap n 1 1 @ 1 0 04556204 -watchtower n 1 2 @ ~ 1 0 04556948 -watchword n 2 1 @ 2 0 07152752 06674188 -water n 6 8 @ ~ #s #p %s %p + ; 6 4 14845743 09225146 14847357 04562658 14855724 07935504 -water-base_paint n 1 2 @ ~ 1 0 04557308 -water-color n 4 2 @ ~ 4 0 14991319 04558804 04558578 00938642 -water-colour n 4 2 @ ~ 4 0 14991319 04558804 04558578 00938642 -water-cooled_reactor n 1 2 @ ~ 1 0 04559023 -water-lily_family n 1 3 @ #m %m 1 0 11714618 -water-milfoil_family n 1 3 @ #m %m 1 0 12326604 -water-mint n 1 1 @ 1 0 12855494 -water-plantain_family n 1 3 @ #m %m 1 0 12611815 -water-rate n 1 2 @ ; 1 0 13325382 -water-shield n 2 2 @ #m 2 0 11718681 11718296 -water-shield_family n 1 3 @ #m %m 1 0 11717820 -water-skiing n 1 2 @ + 1 1 00445226 -water-soluble_vitamin n 1 2 @ ~ 1 0 15089645 -water-target n 1 2 @ #m 1 0 11718681 -water_arum n 1 2 @ #m 1 0 11786131 -water_avens n 1 1 @ 1 0 12632072 -water_back n 1 2 @ #p 1 0 04557111 -water_bearer n 2 2 @ ; 2 0 09753642 08687884 -water_bed n 1 1 @ 1 0 04557522 -water_beetle n 1 2 @ #m 1 0 02177196 -water_birch n 1 2 @ #m 1 0 12283542 -water_bird n 1 2 @ ~ 1 0 01845132 -water_biscuit n 1 1 @ 1 0 07695504 -water_bitternut n 1 2 @ #m 1 0 12320414 -water_blister n 1 1 @ 1 0 14312776 -water_boatman n 1 2 @ #m 1 0 02243209 -water_bottle n 1 2 @ ~ 1 0 04557648 -water_boy n 1 1 @ 1 0 10770309 -water_buffalo n 1 3 @ ~ #m 1 1 02408429 -water_bug n 2 3 @ ~ #m 2 0 02241799 02234848 -water_butt n 1 1 @ 1 0 04557751 -water_buttercup n 1 2 @ #m 1 0 11720891 -water_cabbage n 1 2 @ #m 1 0 11791569 -water_caltrop n 1 1 @ 1 0 12348518 -water_cannon n 1 1 @ 1 0 04557872 -water_carpet n 1 2 @ #m 1 0 12797025 -water_cart n 1 2 @ ~ 1 0 04558059 -water_chestnut n 3 5 @ ~ #m #p %p 3 0 12348294 12153741 07737980 -water_chestnut_plant n 1 3 @ ~ #m 1 0 12348294 -water_chevrotain n 1 2 @ #m 1 0 02436645 -water_chickweed n 1 1 @ 1 0 11861487 -water_chinquapin n 2 4 @ #m #p %p 2 0 11717577 07772631 -water_chute n 1 1 @ 1 0 04558199 -water_clock n 1 1 @ 1 0 04558347 -water_closet n 1 1 @ 1 0 04558478 -water_clover n 1 2 @ #m 1 0 12957924 -water_company n 1 1 @ 1 0 08186546 -water_conservation n 1 1 @ 1 0 00819858 -water_cooler n 1 1 @ 1 0 04559166 -water_crowfoot n 1 2 @ #m 1 0 11720891 -water_deer n 1 2 @ #m 1 0 02436645 -water_development n 1 1 @ 1 1 00948737 -water_dog n 2 1 @ 2 0 10770433 02098906 -water_dragon n 2 2 @ #m 2 0 13151975 11728099 -water_dropwort n 1 2 @ #m 1 0 12940939 -water_elm n 2 2 @ #m 2 0 12407545 12406488 -water_faucet n 1 1 @ 1 0 04559451 -water_fennel n 1 2 @ #m 1 0 12941220 -water_fern n 1 2 @ ~ 1 0 12957076 -water_filter n 1 1 @ 1 0 04559620 -water_finder n 1 1 @ 1 0 03216199 -water_flaxseed n 1 2 @ #m 1 0 11795580 -water_flea n 2 2 @ #m 2 0 01997119 01994910 -water_fountain n 1 1 @ 1 1 03241335 -water_gage n 1 2 @ ~ 1 0 04559730 -water_gap n 1 1 @ 1 0 09475716 -water_gas n 1 1 @ 1 0 14878650 -water_gate n 1 2 @ #p 1 0 04244615 -water_gauge n 1 2 @ ~ 1 0 04559730 -water_gillyflower n 1 1 @ 1 0 12094401 -water_glass n 4 2 @ ~ 4 0 14882578 04559910 04559730 04558347 -water_gum n 1 1 @ 1 0 12340581 -water_gun n 1 1 @ 1 0 04561548 -water_hammer n 1 1 @ 1 0 07399735 -water_hazard n 1 1 @ 1 0 04559994 -water_heater n 1 2 @ ~ 1 0 04560113 -water_hemlock n 1 2 @ #m 1 0 12934985 -water_hen n 2 3 @ ~ #m 2 0 02018207 02016358 -water_hickory n 1 2 @ #m 1 0 12320414 -water_hole n 1 1 @ 1 0 09475827 -water_horehound n 1 2 @ #m 1 0 12852428 -water_horsetail n 1 1 @ 1 0 13219976 -water_hyacinth n 1 2 @ #m 1 0 12610328 -water_ice n 2 4 @ ~ #s %s 2 0 14915184 07614348 -water_jacket n 1 1 @ 1 0 04560619 -water_jug n 1 1 @ 1 0 04560804 -water_jump n 1 1 @ 1 0 04560882 -water_lemon n 1 2 @ #p 1 0 07754279 -water_lettuce n 1 2 @ #m 1 0 11791569 -water_level n 4 2 @ ~ 4 1 05132221 09476123 08678783 04561010 -water_lily n 1 4 @ ~ #m %p 1 0 11714853 -water_line n 2 2 @ ~ 2 1 08678783 08679011 -water_lobelia n 1 1 @ 1 0 12169099 -water_locust n 1 2 @ #m 1 0 12495670 -water_main n 1 2 @ #p 1 1 04561167 -water_mat n 1 2 @ #m 1 0 12797025 -water_meter n 1 1 @ 1 0 04561287 -water_milfoil n 1 2 @ #m 1 0 12327022 -water_mill n 1 2 @ %p 1 0 04561422 -water_mint n 1 1 @ 1 0 12855494 -water_moccasin n 2 2 @ #m 2 0 01754533 01737728 -water_mold n 1 2 @ #m 1 0 12980080 -water_nymph n 4 4 @ ~ #m ; 4 0 12611640 11715430 09550125 09546772 -water_oak n 1 1 @ 1 0 12276110 -water_of_crystallisation n 1 1 @ 1 0 15094136 -water_of_crystallization n 1 1 @ 1 0 15094136 -water_of_hydration n 1 1 @ 1 0 15094136 -water_on_the_knee n 1 1 @ 1 0 14193325 -water_orchid n 1 2 @ #m 1 0 12610328 -water_ouzel n 1 3 @ ~ #m 1 0 01601694 -water_ox n 1 3 @ ~ #m 1 0 02408429 -water_parsnip n 1 2 @ #m 1 0 12945177 -water_parting n 1 2 @ ~ 1 0 08679369 -water_pill n 1 2 @ ~ 1 0 03214670 -water_pimpernel n 1 3 @ ~ #m 1 0 12096395 -water_pipe n 1 1 @ 1 0 03533014 -water_pistol n 1 1 @ 1 0 04561548 -water_plant n 1 3 @ ~ %p 1 0 13121544 -water_plantain n 1 3 @ ~ #m 1 0 12612170 -water_pollution n 1 1 @ 1 0 14518820 -water_polo n 1 1 @ 1 0 00464478 -water_pore n 1 1 @ 1 0 13153729 -water_program n 1 1 @ 1 1 00948737 -water_project n 1 1 @ 1 1 00948737 -water_pump n 1 2 @ #p 1 0 04561965 -water_rat n 3 3 @ ~ #m 3 0 10770433 02341974 02335127 -water_right n 1 1 @ 1 1 05188547 -water_sapphire n 1 1 @ 1 0 15019357 -water_scooter n 1 1 @ 1 0 04562122 -water_scorpion n 1 2 @ #m 1 0 02242455 -water_shamrock n 1 2 @ #m 1 0 12484784 -water_shrew n 1 2 @ ~ 1 0 01892551 -water_skater n 1 3 @ ~ #m 1 0 02243562 -water_ski n 1 2 @ + 1 0 04562262 -water_skin n 1 1 @ 1 0 04562390 -water_snake n 1 2 @ ~ 1 0 01737021 -water_softener n 1 2 @ ~ 1 0 15056112 -water_spaniel n 1 3 @ ~ ; 1 0 02102605 -water_speedwell n 1 2 @ #m 1 0 12891469 -water_spirit n 1 2 @ ~ 1 0 09546772 -water_sport n 1 3 @ ~ - 1 1 00441824 -water_sprite n 2 3 @ ~ #m 2 0 13171797 09546772 -water_star_grass n 1 2 @ #m 1 0 12610740 -water_starwort n 1 2 @ #m 1 0 12693865 -water_stoma n 1 1 @ 1 0 13153729 -water_strider n 1 3 @ ~ #m 1 0 02243562 -water_supply n 1 3 @ #p %p 1 0 04562658 -water_system n 2 3 @ #p %p 2 0 09476011 04562658 -water_table n 1 1 @ 1 0 09476123 -water_tank n 1 1 @ 1 0 03035715 -water_tap n 1 1 @ 1 0 04559451 -water_thrush n 1 2 @ #m 1 0 01570421 -water_tower n 1 1 @ 1 1 04562935 -water_travel n 1 3 @ ~ - 1 0 00313647 -water_trumpet n 1 2 @ #m 1 0 11787190 -water_turkey n 1 1 @ 1 0 02054711 -water_under_the_bridge n 1 1 @ 1 0 15121153 -water_vapor n 1 3 @ ~ #s 1 1 15055442 -water_vapour n 1 3 @ ~ #s 1 0 15055442 -water_vascular_system n 1 2 @ #p 1 0 02151448 -water_violet n 1 1 @ 1 0 12094612 -water_vole n 2 2 @ #m 2 0 02341974 02341475 -water_waggon n 1 1 @ 1 0 04563020 -water_wagon n 1 1 @ 1 0 04563020 -water_wheel n 2 4 @ ~ #p %p 2 0 04563413 04563204 -water_wings n 1 2 @ ; 1 0 04563560 -water_witch n 1 1 @ 1 0 10770891 -water_yam n 1 1 @ 1 0 12088327 -waterbird n 1 2 @ ~ 1 0 01845132 -waterbuck n 1 3 @ ~ #m 1 0 02427724 -waterbury n 1 2 @ #p 1 0 09069752 -watercannon n 1 1 @ 1 0 04557872 -watercolor n 4 3 @ ~ + 4 2 04558578 04558804 14991319 00938642 -watercolorist n 1 2 @ + 1 1 10770545 -watercolour n 4 3 @ ~ + 4 0 14991319 04558804 04558578 00938642 -watercolourist n 1 2 @ + 1 0 10770545 -watercourse n 3 3 @ ~ %p 3 0 09475179 09448361 04559275 -watercraft n 2 4 @ ~ %p - 2 0 05644334 04530566 -watercress n 2 4 @ ~ #m + 2 0 11869689 07732904 -waterdog n 1 1 @ 1 0 01632952 -watered-silk n 1 1 @ 1 0 03779246 -watered_stock n 1 1 @ 1 0 13420359 -waterer n 2 2 @ + 2 0 10770767 10770309 -waterfall n 1 3 @ ~ #p 1 1 09475292 -waterfinder n 1 1 @ 1 0 03216199 -waterford n 1 2 @ #p 1 0 08889944 -waterfowl n 1 2 @ ~ 1 0 01845132 -waterfront n 1 2 @ ~ 1 1 08633683 -watergate n 1 1 @ 1 0 07306963 -watergate_scandal n 1 1 @ 1 0 07306963 -waterhouse-friderichsen_syndrome n 1 1 @ 1 0 14470496 -wateriness n 3 2 @ + 3 0 14535056 05113929 04937427 -watering n 2 3 @ ~ + 2 0 13505843 00278403 -watering_can n 1 2 @ %p 1 0 04560292 -watering_cart n 1 1 @ 1 0 04560502 -watering_hole n 1 3 @ ~ %p 1 0 08678615 -watering_place n 1 3 @ ~ %p 1 1 08678615 -watering_pot n 1 2 @ %p 1 0 04560292 -waterleaf n 1 3 @ ~ #m 1 0 12834798 -waterleaf_family n 1 3 @ #m %m 1 0 12834408 -waterlessness n 1 3 @ ~ + 1 0 14536438 -waterline n 1 2 @ ~ 1 0 08678783 -waterloo n 3 3 @ #p ; 3 0 08852065 07476851 01299476 -waterman n 1 2 @ ~ 1 0 09861946 -watermark n 2 2 @ ~ 2 1 08679011 07270893 -watermeal n 1 3 @ ~ #m 1 0 11796005 -watermelon n 2 4 @ #m #p %p 2 0 12164065 07756951 -watermelon_begonia n 1 1 @ 1 0 13151082 -watermelon_vine n 1 3 @ #m %p 1 0 12164065 -waterpower n 1 1 @ 1 0 11524213 -waterproof n 2 3 @ ~ + 2 0 04561734 04049405 -waterproofing n 2 2 @ + 2 1 00830099 04561857 -waters n 2 2 @ #p 2 0 11376069 05399627 -waterscape n 1 1 @ 1 0 04161233 -watershed n 3 2 @ ~ 3 1 08679369 08518940 07417851 -waterside n 1 1 @ 1 0 09475925 -waterskin n 1 1 @ 1 0 04562390 -waterspout n 3 1 @ 3 0 11524324 11502102 04562496 -watertown n 2 2 @ #p 2 0 09158789 09125881 -waterway n 2 2 @ ~ 2 1 09476331 04559275 -waterweed n 1 3 @ ~ #m 1 0 12614477 -waterwheel n 2 4 @ ~ #p %p 2 0 04563413 04563204 -waterwheel_plant n 1 2 @ #m 1 0 12783316 -waterworks n 2 2 @ ; 2 0 08186546 04563790 -wats n 1 1 @ 1 0 04563942 -wats_line n 1 1 @ 1 0 04563942 -watson n 3 1 @ 3 0 11376565 11376400 11376201 -watt n 2 3 @ #p %p 2 1 13644522 11376742 -watt-hour n 1 2 @ #p 1 0 13727333 -watt_second n 1 2 @ %p 1 0 13726074 -wattage n 1 2 @ ~ 1 0 11449419 -watteau n 1 1 @ 1 0 11376939 -wattle n 3 3 @ ~ + 3 2 05471427 04564118 11756669 -wattle_and_daub n 1 1 @ 1 0 15060688 -wattmeter n 1 1 @ 1 0 04564278 -watts n 1 1 @ 1 0 11377043 -watusi n 1 2 @ #m 1 0 09693809 -watutsi n 1 2 @ #m 1 0 09693809 -waugh n 1 1 @ 1 0 11377168 -wausau n 1 2 @ #p 1 0 09158897 -wave n 9 5 @ ~ %p + ; 9 6 07352190 00346095 07345593 07352835 07274027 05259240 13868944 11524451 10771066 -wave-off n 1 1 @ 1 0 00281898 -wave-particle_duality n 1 2 @ ; 1 0 04920568 -wave_angle n 1 1 @ 1 0 13919394 -wave_equation n 1 1 @ 1 0 06671339 -wave_form n 1 1 @ 1 0 07347664 -wave_front n 2 3 @ #p ; 2 0 11513631 08681966 -wave_guide n 1 2 @ #p 1 0 04564413 -wave_mechanics n 1 1 @ 1 0 06107850 -wave_number n 1 2 @ ~ 1 0 13644047 -wave_shape n 1 1 @ 1 0 07347664 -wave_theory n 1 3 ! @ ; 1 0 06105873 -wave_theory_of_light n 1 3 ! @ ; 1 0 06105873 -wave_train n 1 1 @ 1 0 08461875 -waveband n 1 2 @ ; 1 0 06260628 -waveform n 1 1 @ 1 0 07347664 -wavefront n 1 2 @ ; 1 0 08681966 -waveguide n 1 2 @ #p 1 0 04564413 -wavelength n 2 1 @ 2 2 05086269 06208265 -wavelet n 1 2 @ + 1 0 07344663 -wavell n 1 1 @ 1 0 11377315 -waver n 3 2 @ + 3 0 10771270 01063350 00348571 -waverer n 1 2 @ + 1 0 10603528 -wavering n 2 3 @ ~ + 2 0 05699434 04770911 -waviness n 2 3 @ = + 2 0 05074374 04772955 -waving n 1 3 @ ~ + 1 0 07274027 -wavy-leaved_aster n 1 1 @ 1 0 11937278 -waw n 1 2 @ #m 1 0 06837251 -wax n 1 3 @ ~ + 1 1 15094294 -wax-chandler n 1 1 @ 1 0 09907717 -wax-myrtle_family n 1 3 @ #m %m 1 0 11740824 -wax_bean n 2 2 @ #m 2 0 12557556 07728708 -wax_begonia n 1 1 @ 1 0 12362274 -wax_crayon n 1 1 @ 1 0 03128248 -wax_figure n 1 1 @ 1 0 04564581 -wax_insect n 1 1 @ 1 0 02249256 -wax_light n 1 3 @ ~ %p 1 0 02948072 -wax_mallow n 1 2 @ #m 1 0 12184095 -wax_moth n 1 2 @ #m 1 0 02289307 -wax_myrtle n 1 4 @ ~ #m %s 1 0 11741350 -wax_palm n 3 3 @ #m %s 3 0 12588780 12588320 12587487 -wax_paper n 1 1 @ 1 0 15096661 -wax_plant n 1 1 @ 1 0 13237188 -waxberry n 2 2 @ #m 2 0 12677612 11741797 -waxflower n 3 2 @ #m 3 0 13239177 12366186 12258885 -waxiness n 1 2 @ + 1 0 05216240 -waxing n 2 3 ! @ + 2 1 00719388 07414566 -waxmallow n 1 2 @ #m 1 0 12184095 -waxwing n 1 3 @ ~ #m 1 0 01603600 -waxwork n 2 2 @ #m 2 0 12748248 04564581 -waxycap n 1 3 @ ~ #m 1 0 13070308 -way n 12 5 @ ~ #p %p ; 12 11 04928903 00172710 08679972 13939604 00415676 04564698 00312691 13777764 05084733 05791764 05839910 13285973 -way_of_life n 1 2 @ ~ 1 1 00415676 -way_out n 1 2 @ ~ 1 1 03303965 -way_station n 2 1 @ 2 0 08657100 04579795 -waybill n 1 1 @ 1 0 06520742 -wayfarer n 2 2 @ ~ 2 0 10771539 10771392 -wayfaring n 1 1 @ 1 0 00297318 -wayfaring_tree n 1 2 @ #m 1 0 12680652 -wayland n 1 2 @ ; 1 0 09585218 -wayland_the_smith n 1 2 @ ; 1 0 09585218 -wayne n 2 1 @ 2 0 11377712 11377564 -wayne_gretzky n 1 1 @ 1 0 11015525 -ways n 1 2 @ #p 1 1 04565039 -ways_and_means n 1 1 @ 1 0 13365978 -ways_and_means_committee n 1 1 @ 1 0 08326487 -wayside n 1 2 @ #p 1 1 04565233 -wb n 1 2 @ %p 1 0 13638577 -wbc n 1 2 @ ~ 1 0 05449959 -wbn n 1 1 @ 1 0 13834524 -wbs n 1 1 @ 1 0 13834280 -weak_force n 1 2 @ ; 1 0 11517210 -weak_interaction n 1 2 @ ; 1 0 11517210 -weak_part n 1 3 ! @ ~ 1 1 05042283 -weak_point n 1 2 ! @ 1 1 05159606 -weak_spot n 1 2 @ ~ 1 0 05042283 -weakener n 1 2 @ + 1 0 09476521 -weakening n 2 4 ! @ ~ + 2 1 07427337 00362355 -weakfish n 2 4 @ #m #p %p 2 0 07792470 02599347 -weakling n 1 2 @ ~ 1 0 10771636 -weakly_interacting_massive_particle n 1 3 @ #p ; 1 0 09476717 -weakness n 5 4 ! @ ~ + 5 3 14462946 05204982 05040275 14474718 07498614 -weal n 1 1 @ 1 0 14298620 -weald n 1 2 @ ; 1 0 08645212 -wealth n 4 4 ! @ ~ + 4 4 14491271 05116128 13353280 13250398 -wealthiness n 1 3 @ ~ + 1 0 14491271 -wealthy_man n 1 2 @ ~ 1 0 10292052 -wealthy_person n 1 2 @ ~ 1 0 10529231 -weaning n 1 2 @ + 1 1 00198270 -weapon n 2 4 @ ~ #p + 2 2 04565375 07246932 -weapon-grade_plutonium n 1 1 @ 1 0 14650366 -weapon_of_mass_destruction n 1 3 @ ~ ; 1 0 04565963 -weapon_system n 1 3 @ ~ #p 1 1 04565375 -weaponry n 1 3 @ ~ %p 1 0 04566257 -weapons_carrier n 1 2 @ ; 1 1 04566561 -weapons_emplacement n 1 2 @ ~ 1 0 03469031 -weapons_platform n 1 3 @ ~ ; 1 0 03962525 -weapons_plutonium n 1 1 @ 1 0 14650366 -weapons_system n 1 3 @ ~ %p 1 1 04566257 -wear n 3 4 @ ~ %p + 3 0 14562683 03051540 00830257 -wear_and_tear n 1 2 @ ~ 1 0 13328357 -wearable n 1 3 @ ~ %p 1 0 03051540 -wearer n 1 2 @ + 1 1 10771809 -weariness n 1 3 @ ~ + 1 1 14016361 -wearing n 2 4 @ ~ + ; 2 0 13475538 00830257 -wearing_apparel n 1 2 @ ~ 1 0 02728440 -wearing_away n 1 4 @ ~ + ; 1 0 13475538 -weary_willie n 1 1 @ 1 0 11100139 -weasel n 2 3 @ ~ #m 2 0 10771990 02441942 -weasel_word n 1 1 @ 1 0 06762245 -weather n 1 4 @ ~ + ; 1 1 11524662 -weather_bureau n 1 1 @ 1 0 08353734 -weather_chart n 1 4 @ ~ %p ; 1 0 04567222 -weather_condition n 1 3 @ ~ ; 1 0 11524662 -weather_deck n 1 3 @ ~ %p 1 0 04566862 -weather_eye n 1 1 @ 1 0 04664778 -weather_forecast n 1 1 @ 1 0 06750698 -weather_forecaster n 1 1 @ 1 0 10772092 -weather_forecasting n 1 2 @ ; 1 0 06749729 -weather_map n 1 4 @ ~ %p ; 1 0 04567222 -weather_outlook n 1 1 @ 1 0 06750698 -weather_radar n 1 1 @ 1 0 04567480 -weather_satellite n 1 1 @ 1 0 04567593 -weather_sheet n 1 4 @ ~ #p ; 1 0 04188368 -weather_ship n 1 1 @ 1 0 04567746 -weather_side n 1 1 @ 1 0 13829720 -weather_station n 1 1 @ 1 0 08599976 -weather_strip n 1 1 @ 1 0 04567870 -weather_stripping n 1 1 @ 1 0 04567870 -weather_vane n 1 2 @ ~ 1 0 04568069 -weatherboard n 2 1 @ 2 0 15103007 13829720 -weatherboarding n 1 1 @ 1 0 15103007 -weathercock n 1 1 @ 1 0 04566756 -weatherglass n 1 1 @ 1 0 04567098 -weatherliness n 1 3 @ + ; 1 0 04774901 -weatherman n 1 1 @ 1 0 10772092 -weatherstrip n 1 1 @ 1 0 04567870 -weatherstripping n 1 1 @ 1 0 04567870 -weathervane n 1 2 @ ~ 1 0 04568069 -weave n 1 4 @ ~ %p + 1 1 04568298 -weaver n 2 4 @ ~ #m + 2 0 10772190 01542786 -weaver's_broom n 1 2 @ #m 1 0 12571330 -weaver's_hitch n 1 1 @ 1 0 04189092 -weaver's_knot n 1 1 @ 1 0 04189092 -weaver_finch n 1 3 @ ~ #m 1 0 01542786 -weaverbird n 1 3 @ ~ #m 1 0 01542786 -weaving n 1 3 @ ~ + 1 0 00909281 -web n 7 5 @ ~ #p %p + 7 3 09477037 04568557 01897991 08434259 04604276 04568713 01898328 -web-spinning_mite n 1 1 @ 1 0 01779939 -web-toed_salamander n 1 3 @ ~ #m 1 0 01637932 -web_browser n 1 2 @ ~ 1 0 06571301 -web_log n 1 1 @ 1 0 06402202 -web_map_server n 1 2 @ ~ 1 0 06578323 -web_map_service n 1 2 @ ~ 1 0 06578323 -web_page n 1 2 @ ~ 1 0 06358900 -web_site n 1 2 @ ~ 1 0 06359193 -web_spinner n 1 2 @ #m 1 0 02183507 -webb n 2 2 @ #m 2 0 11378087 11377851 -webbed_foot n 1 1 @ 1 0 02155206 -webbing n 3 2 @ + 3 0 09477319 04568944 04568841 -webbing_clothes_moth n 1 2 @ #m 1 0 02292401 -webbing_moth n 1 2 @ #m 1 0 02292401 -webcam n 1 1 @ 1 0 04569063 -weber n 6 2 @ %p 6 0 13638577 11378929 11378805 11378662 11378462 11378254 -weber's_law n 1 2 @ ; 1 0 05996353 -weber-fechner_law n 1 2 @ ; 1 0 05877718 -webfoot n 1 2 @ %p 1 0 02154620 -webmaster n 1 1 @ 1 0 10772289 -webpage n 1 2 @ ~ 1 0 06358900 -website n 1 2 @ ~ 1 0 06359193 -webster n 3 1 @ 3 0 11379336 11379217 11379108 -webworm n 1 3 @ ~ #m 1 0 02308139 -webworm_moth n 1 2 @ ~ 1 0 02308471 -wed n 1 1 @ 1 0 15164233 -weddell_sea n 1 1 @ 1 0 09477427 -wedding n 3 4 @ ~ %m + 3 2 07452074 01036996 08256735 -wedding_anniversary n 1 2 @ ~ 1 0 15250691 -wedding_band n 1 1 @ 1 0 04569338 -wedding_cake n 1 1 @ 1 0 07632802 -wedding_ceremony n 1 1 @ 1 1 07452074 -wedding_chest n 1 1 @ 1 0 03535024 -wedding_day n 1 2 @ %p 1 1 15222951 -wedding_dress n 1 1 @ 1 0 02898585 -wedding_gift n 1 2 @ ~ 1 0 13269459 -wedding_gown n 1 1 @ 1 0 02898585 -wedding_guest n 1 1 @ 1 0 10772392 -wedding_licence n 1 1 @ 1 0 06551339 -wedding_license n 1 1 @ 1 0 06551339 -wedding_march n 1 1 @ 1 0 07059150 -wedding_night n 1 2 @ #p 1 1 15223048 -wedding_party n 1 2 @ %m 1 0 08256735 -wedding_picture n 1 1 @ 1 0 04569205 -wedding_present n 1 2 @ ~ 1 0 13269459 -wedding_reception n 1 1 @ 1 0 08254876 -wedding_ring n 1 1 @ 1 0 04569338 -wedge n 7 5 @ ~ #p + ; 7 1 13919547 07697825 06823259 04569983 04569822 04569520 03023878 -wedge_bone n 1 2 @ #p 1 0 07659196 -wedge_heel n 1 2 @ #p 1 1 04569983 -wedge_shape n 1 1 @ 1 0 13919547 -wedgie n 1 2 @ %p 1 0 04570118 -wedgwood n 2 2 @ ; 2 0 11379436 04570214 -wedlock n 1 3 @ ~ ; 1 0 13963970 -wednesday n 1 1 @ 1 1 15164233 -wee n 1 2 @ ; 1 0 15246258 -wee_small_voice n 1 1 @ 1 0 09184405 -weed n 3 4 ! @ ~ + 3 1 13085113 04570680 03990834 -weed-whacker n 1 1 @ 1 0 04570416 -weed_killer n 1 3 @ ~ %s 1 0 14906850 -weeder n 2 2 @ + 2 0 10772937 04570416 -weedkiller n 1 3 @ ~ %s 1 0 14906850 -weeds n 1 2 @ ; 1 1 04570532 -week n 3 5 @ ~ #p %p + 3 3 15169873 15135996 15136147 -week_from_monday n 1 2 @ ; 1 1 15170178 -weekday n 1 2 @ ~ 1 1 15163157 -weekend n 1 4 @ #p %p + 1 1 15170504 -weekend_warrior n 2 2 @ ; 2 0 10772721 10772580 -weekender n 2 2 @ + 2 0 10772472 04570815 -weekly n 1 1 @ 1 1 06594258 -weeknight n 1 1 @ 1 0 15167675 -weeness n 1 2 @ + 1 0 05106928 -weenie n 1 3 @ ~ #p 1 0 07676602 -weenie_roast n 1 1 @ 1 0 07577244 -weeper n 2 3 @ ~ + 2 0 10773126 10773040 -weepiness n 1 2 @ + 1 0 07534278 -weeping n 1 3 @ ~ + 1 1 00868196 -weeping_beech n 1 2 @ #m 1 0 12262018 -weeping_love_grass n 1 1 @ 1 0 12120578 -weeping_spruce n 1 1 @ 1 0 11625223 -weeping_tree_broom n 1 2 @ #m 1 0 12514992 -weeping_willow n 1 2 @ #m 1 0 12726670 -weevil n 1 2 @ ~ 1 0 02177972 -weewee n 1 1 @ 1 0 14855724 -weft n 1 3 @ #s #p 1 0 04598965 -wegener n 1 1 @ 1 0 11379536 -wei n 1 1 @ 1 0 08159591 -wei_dynasty n 1 1 @ 1 0 08159591 -weigela n 1 2 @ #m 1 0 12681893 -weigela_florida n 1 2 @ #m 1 0 12681893 -weighbridge n 1 1 @ 1 0 04570958 -weigher n 1 2 @ + 1 0 10773277 -weighing n 1 3 @ ~ + 1 0 05785067 -weighing_machine n 1 2 @ ~ 1 0 04141975 -weight n 8 5 @ ~ = + ; 8 5 05026843 04571292 05172322 04571088 07538812 13715755 13608788 13589321 -weight_gainer n 1 1 @ 1 0 10117739 -weight_gaining n 1 1 @ 1 1 00627321 -weight_unit n 2 3 @ ~ #p 2 0 13717155 13608788 -weightiness n 2 3 @ ~ + 2 0 05172322 05027529 -weighting n 1 2 @ ; 1 1 13589321 -weightlessness n 1 3 @ ~ + 1 1 05028700 -weightlift n 1 2 @ ~ 1 0 00626188 -weightlifter n 1 2 @ + 1 0 10773394 -weightlifting n 1 3 @ ~ + 1 0 00626188 -weil n 2 1 @ 2 0 11379812 11379691 -weil's_disease n 1 1 @ 1 0 14273753 -weill n 1 1 @ 1 0 11379908 -weimar n 1 2 @ #p 1 0 08771400 -weimar_republic n 1 1 @ 1 0 08170070 -weimaraner n 1 1 @ 1 0 02092339 -weinberg n 1 1 @ 1 0 11380035 -weir n 2 1 @ 2 1 04571566 04571686 -weird n 1 1 @ 1 0 09586442 -weird_sister n 1 3 @ ~ ; 1 0 09582343 -weirdie n 1 1 @ 1 0 09976917 -weirdness n 1 2 @ + 1 0 04798511 -weirdo n 2 2 @ ; 2 0 09976917 09976283 -weirdy n 1 1 @ 1 0 09976917 -weisenheimer n 1 1 @ 1 0 10784113 -weismann n 1 1 @ 1 0 11380159 -weissbier n 1 3 @ ~ ; 1 0 07888465 -weisshorn n 1 2 @ #p 1 0 09477567 -weizenbier n 1 1 @ 1 0 07888709 -weizenbock n 1 1 @ 1 0 07888816 -weizmann n 1 1 @ 1 0 11380429 -weka n 1 2 @ #m 1 0 02015357 -welcher n 1 1 @ 1 0 10773527 -welcome n 2 3 @ ~ + 2 1 14413265 06631322 -welcome_mat n 1 1 @ 1 0 03223299 -welcome_wagon n 1 1 @ 1 0 04571800 -welcomer n 1 2 @ + 1 0 10146927 -welcoming_committee n 1 1 @ 1 0 08326266 -weld n 3 4 @ ~ #m + 3 0 12385830 11380655 04571958 -welder n 1 3 @ ~ + 1 0 10773665 -welder's_mask n 1 1 @ 1 0 04572121 -welding n 1 3 @ ~ + 1 0 00149508 -weldment n 1 2 @ + 1 0 04572235 -welfare n 3 2 @ ~ 3 2 01086945 05142641 14447525 -welfare_case n 1 1 @ 1 1 10773800 -welfare_state n 1 1 @ 1 1 08178085 -welfare_work n 1 2 @ ~ 1 0 00582195 -welfare_worker n 1 2 @ ~ 1 0 10620027 -welkin n 1 2 @ %p 1 0 08521267 -well n 5 2 @ ~ 5 2 04572344 04572935 06675979 04572800 04572559 -well-being n 1 3 ! @ ~ 1 1 14447525 -well-wisher n 1 2 @ ~ 1 0 10686073 -well-wishing n 1 2 @ + 1 1 06630459 -well_point n 1 1 @ 1 0 04573129 -well_water n 1 1 @ 1 0 14847503 -wellbeing n 1 2 @ ~ 1 0 14447525 -wellerism n 1 1 @ 1 0 07105342 -welles n 1 1 @ 1 0 11380768 -wellhead n 2 1 @ 2 0 08508736 04573045 -wellington n 3 2 @ #p 3 0 11380923 08973202 03516844 -wellington_boot n 1 1 @ 1 0 03516844 -wellness n 1 4 ! @ = + 1 0 14447908 -wellpoint n 1 1 @ 1 0 04573129 -wells n 1 1 @ 1 0 11381193 -wellspring n 2 1 @ 2 0 08508736 06675979 -welsh n 3 4 @ #m + ; 3 0 09747329 06961557 02405577 -welsh_black n 1 1 @ 1 0 02405577 -welsh_corgi n 1 2 @ ~ 1 0 02112826 -welsh_onion n 1 1 @ 1 0 12433952 -welsh_pony n 1 1 @ 1 0 02382750 -welsh_poppy n 1 2 @ #m 1 0 11907100 -welsh_rabbit n 1 1 @ 1 0 07880325 -welsh_rarebit n 1 1 @ 1 0 07880325 -welsh_springer_spaniel n 1 1 @ 1 0 02102177 -welsh_terrier n 1 2 @ ~ 1 0 02095727 -welsher n 1 2 @ + 1 0 10773527 -welshman n 1 2 @ #m 1 0 09747329 -welt n 2 2 @ + 2 0 14298620 04573281 -weltanschauung n 1 2 @ ~ 1 1 06211389 -welted_thistle n 1 2 @ #m 1 0 11944751 -welter n 1 2 @ ~ 1 1 14500567 -welterweight n 4 1 @ 4 0 13719529 10774113 10774018 10773901 -weltschmerz n 1 1 @ 1 0 07533735 -welty n 1 1 @ 1 0 11381457 -welwitschia n 1 2 @ #m 1 0 11599324 -welwitschia_mirabilis n 1 2 @ #m 1 0 11599324 -welwitschiaceae n 1 3 @ #m %m 1 0 11598991 -wembley n 1 2 @ #p 1 0 08875202 -wen n 1 2 @ ~ 1 0 14202763 -wen-ti n 1 1 @ 1 0 09533406 -wen_ch'ang n 1 1 @ 1 0 09533406 -wench n 1 1 @ 1 0 09989045 -wencher n 1 2 @ + 1 0 10774223 -wendy_house n 1 2 @ ~ 1 0 03963813 -werdnig-hoffman_disease n 1 1 @ 1 0 14170070 -werewolf n 1 1 @ 1 0 09503121 -werfel n 1 1 @ 1 0 11381583 -werlhof's_disease n 1 1 @ 1 0 14565417 -werner_karl_heisenberg n 1 1 @ 1 0 11038810 -wernher_magnus_maximilian_von_braun n 1 1 @ 1 0 10863124 -wernher_von_braun n 1 1 @ 1 0 10863124 -wernicke n 1 1 @ 1 0 11381684 -wernicke's_aphasia n 1 1 @ 1 0 14099172 -wernicke's_area n 1 2 @ #p 1 0 05490370 -wernicke's_center n 1 2 @ #p 1 0 05490370 -wernicke's_encephalopathy n 1 1 @ 1 0 14397372 -weser n 1 2 @ #p 1 0 09477718 -weser_river n 1 2 @ #p 1 0 09477718 -wesley n 2 2 @ + 2 0 11381964 11381824 -wesleyan n 1 3 @ #m + 1 0 10312773 -wesleyan_methodist_church n 1 2 @ %m 1 0 08092713 -wesleyan_methodists n 1 2 @ %m 1 0 08092713 -wesleyanism n 1 1 @ 1 0 06231680 -wesleyism n 1 1 @ 1 0 06231680 -wessex n 1 2 @ #p 1 0 08886636 -west n 8 6 @ ~ #p %p = - 8 3 08682575 13834399 08682819 13836136 11382398 11382278 11382112 08561835 -west-sider n 1 1 @ 1 0 10774756 -west_africa n 1 3 @ #p %p 1 0 09178310 -west_african n 1 3 @ ~ + 1 0 06996309 -west_bank n 1 4 @ #p %p - 1 0 08793489 -west_bengal n 1 2 @ #p 1 0 08906272 -west_berlin n 1 3 @ #p %m 1 0 08769836 -west_berliner n 1 2 @ #m 1 1 09748541 -west_by_north n 1 1 @ 1 0 13834524 -west_by_south n 1 1 @ 1 0 13834280 -west_chadic n 1 2 @ ~ 1 0 06983521 -west_coast n 1 2 @ #p 1 0 09048303 -west_coast_hemlock n 1 1 @ 1 0 11628087 -west_country n 1 2 @ #p 1 0 08886277 -west_end n 1 3 @ #p %p 1 0 08875369 -west_germanic n 1 2 @ ~ 1 0 06946823 -west_germanic_language n 1 2 @ ~ 1 0 06946823 -west_germany n 1 1 @ 1 0 08768881 -west_highland_white_terrier n 1 1 @ 1 0 02098286 -west_indian n 1 3 @ ~ #m 1 0 10774440 -west_indian_cherry n 2 3 @ #p %p 2 0 12694486 07746334 -west_indian_jasmine n 1 1 @ 1 0 11774972 -west_indian_satinwood n 1 1 @ 1 0 12715408 -west_indian_smallpox n 1 1 @ 1 0 14124688 -west_indian_snowberry n 1 2 @ #m 1 0 12662379 -west_indies n 1 6 @ ~ #p %m %p - 1 1 08747054 -west_malaysia n 1 3 @ #p %p 1 0 08964647 -west_midland n 1 1 @ 1 0 06949121 -west_nile_encephalitis n 1 1 @ 1 0 14344033 -west_nile_encephalitis_virus n 1 1 @ 1 0 01332940 -west_nile_virus n 1 1 @ 1 0 01332940 -west_northwest n 1 1 @ 1 0 13834643 -west_pakistan n 1 5 @ #p %m %p - 1 0 08975902 -west_palm_beach n 1 2 @ #p 1 0 09075496 -west_point n 1 3 @ #p ; 1 0 09123809 -west_saxon n 3 1 @ 3 0 09703101 06949762 06949407 -west_side n 1 1 @ 1 1 08650593 -west_southwest n 1 1 @ 1 0 13834162 -west_sussex n 1 2 @ #p 1 0 08883643 -west_tocharian n 1 1 @ 1 0 06969018 -west_virginia n 1 3 @ #p %p 1 0 09155306 -west_virginian n 1 1 @ 1 0 09746438 -west_wind n 1 2 @ ~ 1 0 11525480 -west_yorkshire n 1 3 @ #p %p 1 0 08885490 -wester n 1 3 @ ~ + 1 0 11525480 -westerly n 1 2 @ + 1 0 11525614 -western n 2 2 @ ~ 2 1 06616035 07698672 -western_australia n 1 3 @ #p %p 1 0 08834654 -western_australia_coral_pea n 1 2 @ #m 1 0 12534208 -western_ax n 1 1 @ 1 0 03226090 -western_axe n 1 1 @ 1 0 03226090 -western_balsam_poplar n 1 1 @ 1 0 12733218 -western_big-eared_bat n 1 1 @ 1 0 02148991 -western_birch n 1 2 @ #m 1 0 12283542 -western_black-legged_tick n 1 2 @ #m 1 0 01777649 -western_blackberry n 1 3 @ ~ %p 1 0 12654659 -western_blind_snake n 1 2 @ #m 1 0 01740885 -western_box_turtle n 1 1 @ 1 0 01669372 -western_buttercup n 1 1 @ 1 0 11722342 -western_chimpanzee n 1 1 @ 1 0 02482060 -western_chokecherry n 1 1 @ 1 0 12650915 -western_church n 1 4 @ %m %p - 1 0 08083599 -western_civilization n 1 1 @ 1 0 08292051 -western_coral_snake n 1 2 @ #m 1 0 01746191 -western_crab_apple n 1 2 @ ~ 1 0 12635744 -western_culture n 1 1 @ 1 0 08292051 -western_dewberry n 1 3 @ ~ %p 1 0 12654659 -western_diamondback n 1 2 @ #m 1 0 01756508 -western_diamondback_rattlesnake n 1 2 @ #m 1 0 01756508 -western_empire n 1 2 @ #p 1 0 08800911 -western_fence_lizard n 1 1 @ 1 0 01680655 -western_gray_squirrel n 1 2 @ #m 1 0 02356612 -western_grey_squirrel n 1 2 @ #m 1 0 02356612 -western_hemisphere n 1 2 @ %p 1 1 08682389 -western_hemlock n 1 1 @ 1 0 11628087 -western_holly_fern n 1 1 @ 1 0 13200542 -western_honey_mesquite n 1 1 @ 1 0 11765568 -western_islands n 1 3 @ #p %p 1 0 08893223 -western_isles n 1 3 @ #p %p 1 0 08893223 -western_kingbird n 1 1 @ 1 0 01548492 -western_ladies'_tresses n 1 2 @ #m 1 0 12084400 -western_larch n 1 1 @ 1 0 11619455 -western_lowland_gorilla n 1 2 @ #m 1 0 02481103 -western_malayo-polynesian n 1 2 @ ~ 1 0 06938729 -western_meadowlark n 1 1 @ 1 0 01573360 -western_mountain_ash n 1 1 @ 1 0 12658715 -western_mugwort n 1 1 @ 1 0 11930788 -western_narrow-mouthed_toad n 1 2 @ #m 1 0 01653026 -western_omelet n 1 1 @ 1 0 07843348 -western_paper_birch n 1 2 @ #m 1 0 12283542 -western_pasqueflower n 1 1 @ 1 0 11738063 -western_pipistrel n 1 2 @ #m 1 0 02148245 -western_poison_oak n 1 2 @ #m 1 0 12767208 -western_poppy n 1 2 @ #m 1 0 11901452 -western_prince's_pine n 1 1 @ 1 0 12257725 -western_ragweed n 1 1 @ 1 0 11920133 -western_rattlesnake n 1 2 @ #m 1 0 01756089 -western_red-backed_salamander n 1 2 @ #m 1 0 01636510 -western_red_cedar n 1 2 @ #m 1 0 11644046 -western_redbud n 1 1 @ 1 0 12514138 -western_ribbon_snake n 1 1 @ 1 0 01735728 -western_roman_empire n 1 2 @ #p 1 0 08800911 -western_saddle n 1 2 @ %p 1 0 04325041 -western_sahara n 1 2 @ #p 1 0 08970833 -western_samoa n 1 3 @ #p %p 1 0 08991491 -western_samoan_monetary_unit n 1 2 @ ~ 1 0 13708141 -western_sand_cherry n 1 2 @ #m 1 0 12642734 -western_sandwich n 1 1 @ 1 0 07698672 -western_saxifrage n 1 2 @ #m 1 0 12793886 -western_silvery_aster n 1 1 @ 1 0 11937360 -western_skink n 1 2 @ #m 1 0 01684578 -western_spadefoot n 1 2 @ #m 1 0 01649412 -western_tamarack n 1 1 @ 1 0 11619455 -western_tanager n 1 2 @ #m 1 0 01597906 -western_toad n 1 1 @ 1 0 01647640 -western_united_states n 1 6 @ ~ #p %p = - 1 0 08682819 -western_wall_flower n 1 2 @ #m 1 0 11887750 -western_wheatgrass n 1 1 @ 1 0 12105981 -western_whiptail n 1 1 @ 1 0 01686609 -western_white_pine n 1 1 @ 1 0 11613459 -western_wood_pewee n 1 1 @ 1 0 01549641 -western_yellow_pine n 1 1 @ 1 0 11614420 -western_yew n 1 2 @ #m 1 0 11662128 -westerner n 1 1 @ 1 1 10774329 -westernisation n 1 1 @ 1 0 13574582 -westernization n 1 1 @ 1 0 13574582 -westinghouse n 1 1 @ 1 0 11382555 -westland_pine n 1 1 @ 1 0 11655974 -westminster n 1 3 @ #p %p 1 0 08875547 -westminster_abbey n 1 2 @ #p 1 0 08876435 -weston n 1 1 @ 1 0 11382688 -weston_cell n 1 2 @ ; 1 0 04573379 -westward n 1 1 @ 1 0 13834399 -wet n 1 2 @ + 1 1 14535431 -wet-bulb_thermometer n 1 3 ! @ #p 1 0 04573625 -wet-nurse n 1 1 @ 1 0 10774870 -wet_bar n 1 1 @ 1 0 04573513 -wet_blanket n 1 3 @ ~ ; 1 0 10638136 -wet_cell n 1 1 @ 1 0 04573832 -wet_dream n 1 2 @ %p 1 0 05769156 -wet_fly n 1 2 ! @ 1 0 04573937 -wet_lung n 1 1 @ 1 0 14055052 -wet_nurse n 1 1 @ 1 0 10774870 -wet_suit n 1 1 @ 1 0 04574067 -wetback n 1 2 @ ; 1 0 09722898 -wether n 1 3 @ ~ #m 1 0 02412210 -wetland n 1 2 @ ~ 1 0 09477890 -wetness n 1 5 ! @ ~ = + 1 1 14534696 -wetnurse n 1 1 @ 1 0 10774870 -wetter n 3 3 @ ~ + 3 0 15096783 10775003 09846586 -wetting n 2 4 @ ~ + ; 2 1 00277376 13506727 -wetting_agent n 1 2 @ ~ 1 0 15096783 -weymouth_pine n 1 1 @ 1 0 11613219 -whack n 2 2 @ + 2 0 07399829 00133338 -whacker n 1 1 @ 1 0 04574234 -whacking n 1 3 @ ~ + 1 0 01160729 -whacko n 1 1 @ 1 0 10368414 -whale n 2 3 @ ~ + 2 1 10129133 02062744 -whale_louse n 1 2 @ #m 1 0 01993830 -whale_oil n 1 1 @ 1 0 15097430 -whale_shark n 1 2 @ #m 1 0 01488038 -whale_sucker n 1 2 @ #m 1 0 02575590 -whaleboat n 1 1 @ 1 0 04574348 -whalebone n 1 1 @ 1 0 14758252 -whalebone_whale n 1 3 @ ~ #m 1 0 02063224 -whaler n 2 3 @ ~ + 2 0 10775128 04574471 -whalesucker n 1 2 @ #m 1 0 02575590 -whaling_gun n 1 1 @ 1 0 04574606 -whaling_ship n 1 2 @ ~ 1 0 04574471 -whammy n 2 1 @ 2 0 07476092 07160424 -whang n 1 2 @ + 1 0 00133338 -wharf n 1 4 @ ~ %p + 1 1 03933529 -wharf_rat n 2 1 @ 2 0 10775245 02333733 -wharfage n 2 4 @ ~ %p + 2 0 13324188 03933529 -wharton n 1 1 @ 1 0 11382795 -what_for n 1 1 @ 1 0 06713026 -whatchamacallit n 1 1 @ 1 0 03218545 -whatchamacallum n 1 1 @ 1 0 03218545 -whatnot n 1 1 @ 1 0 02897692 -whatsis n 1 1 @ 1 0 03218545 -wheal n 1 1 @ 1 0 14298620 -wheat n 3 5 @ ~ #m #p %p 3 1 12142085 07803545 04966941 -wheat-grass n 1 3 @ ~ #m 1 0 12105125 -wheat_beer n 1 3 @ ~ ; 1 0 07888465 -wheat_berry n 2 4 @ ~ #p %p 2 0 12142357 07803545 -wheat_eel n 1 2 @ #m 1 0 01932643 -wheat_eelworm n 1 2 @ #m 1 0 01932643 -wheat_field n 1 1 @ 1 0 08683286 -wheat_flag_smut n 1 1 @ 1 0 13069224 -wheat_flour n 1 2 @ ~ 1 0 07569543 -wheat_future n 1 1 @ 1 0 04574861 -wheat_germ n 1 2 @ #p 1 0 07803992 -wheat_gluten n 1 1 @ 1 0 07570635 -wheat_rust n 1 2 @ #m 1 0 13065089 -wheat_scab n 1 1 @ 1 0 14217581 -wheatear n 1 2 @ #m 1 0 01561732 -wheately_elm n 1 2 @ #m 1 0 12408466 -wheatfield n 1 1 @ 1 0 08683286 -wheatflake n 1 1 @ 1 0 07705473 -wheatgrass n 1 3 @ ~ #m 1 0 12105125 -wheatley n 1 1 @ 1 0 11382930 -wheatstone n 1 1 @ 1 0 11383100 -wheatstone_bridge n 1 1 @ 1 0 04574761 -wheatworm n 1 2 @ #m 1 0 01932643 -wheedler n 1 2 @ + 1 0 10775379 -wheedling n 1 3 @ ~ + 1 0 00159899 -wheel n 7 5 @ ~ #p %p + 7 2 04574999 04313503 05195920 04575723 04113406 04039041 02834778 -wheel_and_axle n 1 1 @ 1 0 04575824 -wheel_bug n 1 2 @ #m 1 0 02244797 -wheel_horse n 1 1 @ 1 0 02387581 -wheel_lock n 1 1 @ 1 0 04576861 -wheel_spoke n 1 2 @ #p 1 0 04283378 -wheel_tree n 1 2 @ #m 1 0 12222900 -wheelbarrow n 1 1 @ 1 0 02797295 -wheelbase n 1 1 @ 1 0 05087173 -wheelchair n 1 2 @ ~ 1 1 04576002 -wheeled_vehicle n 1 3 @ ~ %p 1 0 04576211 -wheeler n 5 3 @ ~ + 5 0 11383278 10775660 10775536 09986189 02387581 -wheeler_dealer n 1 3 @ ~ ; 1 0 10194566 -wheeler_peak n 1 2 @ #p 1 0 09478047 -wheelhouse n 1 3 @ ~ #p 1 0 03939677 -wheeling n 2 3 @ #p + 2 0 09157021 00122530 -wheelwork n 1 2 @ ~ 1 0 04576971 -wheelwright n 1 1 @ 1 0 10775660 -wheeze n 2 3 @ + ; 2 1 00836407 05909384 -wheeziness n 1 2 @ + 1 0 14372855 -whelk n 2 5 @ #m #s %s + 2 0 07782804 01947396 -whelp n 1 3 @ ~ + 1 0 01322343 -whereabouts n 1 1 @ 1 1 08683383 -wherefore n 1 1 @ 1 0 09179606 -wherewithal n 1 1 @ 1 0 13354154 -wherry n 2 2 @ ; 2 0 04577293 04577139 -whetstone n 1 2 @ ~ 1 0 04577426 -whey n 2 1 @ 2 0 15097578 07849733 -whicker n 1 2 @ + 1 0 07387316 -whidah n 1 2 @ #m 1 0 01543383 -whiff n 3 4 @ ~ #m + 3 1 11497888 02662239 00130512 -whiffer n 1 2 @ + 1 0 10775771 -whiffletree n 1 1 @ 1 0 04577567 -whig n 3 1 @ 3 1 10776141 10776052 10775911 -whig_party n 1 1 @ 1 0 08264203 -while n 1 2 @ ~ 1 1 15246353 -whim n 2 1 @ 2 1 07490579 05919549 -whimper n 1 2 @ + 1 0 07211752 -whimsey n 2 1 @ 2 0 05919549 04671841 -whimsicality n 2 2 @ + 2 0 04671841 04650010 -whimsy n 2 2 @ + 2 0 05919549 04671841 -whin n 3 2 @ #m 3 0 12574866 12530818 09478210 -whinberry n 1 2 @ %p 1 0 12248574 -whinchat n 1 1 @ 1 0 01560935 -whine n 1 2 @ + 1 0 07211752 -whiner n 1 3 @ ~ + 1 0 10776339 -whinny n 1 2 @ + 1 0 07387316 -whinstone n 1 1 @ 1 0 09478210 -whip n 5 5 @ ~ %p + ; 5 1 04577769 10776766 07612367 05022902 00134574 -whip-round n 1 2 @ ; 1 0 06513953 -whip-scorpion n 1 3 @ ~ #m 1 0 01771417 -whip-snake n 1 3 @ ~ #m 1 0 01731545 -whip_hand n 1 1 @ 1 1 05159123 -whip_scorpion n 1 3 @ ~ #m 1 0 01771417 -whip_snake n 1 3 @ ~ #m 1 0 01731545 -whip_top n 1 1 @ 1 0 04578459 -whipcord n 2 1 @ 2 0 04578220 04578112 -whiplash n 2 1 @ 2 0 14298420 00134574 -whiplash_injury n 1 1 @ 1 0 14298420 -whipped_cream n 1 1 @ 1 0 07621388 -whipper n 1 2 @ + 1 0 10684146 -whipper-in n 1 1 @ 1 0 10776887 -whippersnapper n 1 1 @ 1 0 10776987 -whippet n 1 1 @ 1 0 02091134 -whipping n 4 3 @ ~ + 4 1 01163047 07476623 04578559 01176219 -whipping_boy n 1 1 @ 1 0 10555311 -whipping_cream n 1 1 @ 1 0 07848196 -whipping_post n 1 1 @ 1 0 04578329 -whipping_top n 1 1 @ 1 0 04578459 -whipple's_penstemon n 1 2 @ #m 1 0 12888457 -whippletree n 1 1 @ 1 0 04577567 -whippoorwill n 1 2 @ #m 1 0 01836087 -whipsaw n 1 3 @ ~ + 1 0 04503836 -whipsnake n 1 3 @ ~ #m 1 0 01731545 -whipstitch n 1 2 @ ~ 1 0 04578559 -whipstitching n 1 2 @ ~ 1 0 04578559 -whiptail n 1 3 @ ~ #m 1 0 01685808 -whiptail_lizard n 1 3 @ ~ #m 1 0 01685808 -whir n 1 2 @ + 1 1 07399917 -whirl n 4 3 @ ~ + 4 1 07442068 13878112 00787061 00343249 -whirlaway n 1 1 @ 1 0 02384017 -whirler n 2 2 @ + 2 0 10777147 04578708 -whirligig n 2 3 @ ~ + 2 0 04454240 02966193 -whirligig_beetle n 1 2 @ #m 1 0 02177506 -whirling n 1 2 @ + 1 0 00342755 -whirling_dervish n 1 1 @ 1 0 10777147 -whirlpool n 1 3 @ ~ + 1 0 07433145 -whirlwind n 1 2 @ ~ 1 0 11525779 -whirlybird n 1 3 @ ~ %p 1 0 03512147 -whirr n 1 2 @ + 1 0 07399917 -whirring n 1 2 @ + 1 1 07399917 -whisk n 2 2 @ + 2 0 04578934 04578801 -whisk_broom n 1 1 @ 1 0 04578801 -whisk_fern n 1 3 @ ~ #m 1 0 13216812 -whisker n 2 2 @ + 2 0 13761603 01901828 -whisker_jack n 1 3 @ ~ #m 1 0 01581166 -whiskers n 1 4 @ ~ #p %p 1 1 05261566 -whiskey n 1 3 @ ~ #s 1 1 07906284 -whiskey_bottle n 1 1 @ 1 0 04579056 -whiskey_jug n 1 1 @ 1 0 04579145 -whiskey_neat n 1 1 @ 1 0 07918454 -whiskey_on_the_rocks n 1 1 @ 1 0 07918601 -whiskey_sour n 1 2 @ %s 1 0 07918193 -whisky n 1 3 @ ~ #s 1 1 07906284 -whisky_neat n 1 1 @ 1 0 07918454 -whisky_on_the_rocks n 1 1 @ 1 1 07918601 -whisky_sour n 1 2 @ %s 1 0 07918193 -whisper n 2 3 @ ~ + 2 1 07130341 07392783 -whisperer n 1 2 @ + 1 0 10777299 -whispering n 2 3 @ ~ + 2 0 07392783 07130341 -whispering_bells n 1 2 @ #m 1 0 12835331 -whispering_campaign n 1 1 @ 1 0 00801450 -whispering_dome n 1 1 @ 1 0 04579230 -whispering_gallery n 1 1 @ 1 0 04579230 -whist n 1 2 @ ~ 1 0 00496167 -whist_drive n 1 2 @ ; 1 0 07450549 -whistle n 5 3 @ ~ + 5 0 07400156 06806098 04579667 04579432 03912218 -whistle-blower n 1 1 @ 1 0 10777400 -whistle-stop_tour n 1 2 @ #p 1 0 00749232 -whistle_blower n 1 1 @ 1 0 10777400 -whistle_buoy n 1 1 @ 1 0 07266665 -whistle_stop n 1 1 @ 1 0 04579795 -whistleblower n 1 1 @ 1 0 10777400 -whistler n 5 4 @ ~ #m + 5 0 11383425 10777768 02361706 01850373 01556514 -whistling n 3 2 @ + 3 2 07400156 00547454 06806098 -whistling_buoy n 1 1 @ 1 0 07266665 -whistling_marmot n 1 1 @ 1 0 02361706 -whistling_swan n 1 1 @ 1 0 01859689 -whit n 1 1 @ 1 1 13773725 -whit-tuesday n 1 2 @ #p 1 0 15242599 -whit_leather n 1 1 @ 1 0 14761450 -white n 12 7 ! @ ~ #m #p + ; 12 2 09638875 04960729 11384291 11384159 11384022 11383917 11383767 11383546 09478355 07841037 04579986 03357081 -white-alder_family n 1 3 @ #m %m 1 0 12249821 -white-bellied_swallow n 1 1 @ 1 0 01595450 -white-berry_yew n 1 2 @ #m 1 0 11663263 -white-breasted_nuthatch n 1 2 @ #m 1 0 01591301 -white-chinned_petrel n 1 2 @ #m 1 0 02059541 -white-coat_hypertension n 1 1 @ 1 0 14105504 -white-crowned_sparrow n 1 2 @ #m 1 0 01535690 -white-faced_hornet n 1 1 @ 1 0 02213663 -white-footed_mouse n 1 2 @ #m 1 0 02336826 -white-headed_stilt n 1 2 @ #m 1 0 02035402 -white-heart_hickory n 1 2 @ #m 1 0 12322099 -white-leaved_rockrose n 1 1 @ 1 0 12374705 -white-lipped_peccary n 1 1 @ 1 0 02397987 -white-man's_foot n 1 1 @ 1 0 12599435 -white-pine_rust n 1 1 @ 1 0 14277833 -white-rayed_mule's_ears n 1 2 @ #m 1 0 12032686 -white-rumped_shrike n 1 1 @ 1 0 01599388 -white-stemmed_filaree n 1 1 @ 1 0 12689305 -white-tailed_deer n 1 2 @ #m 1 0 02432291 -white-tailed_jackrabbit n 1 1 @ 1 0 02327175 -white-tailed_kite n 1 2 @ #m 1 0 01609391 -white-tailed_sea_eagle n 1 1 @ 1 0 01615458 -white-throated_sparrow n 1 2 @ #m 1 0 01535469 -white-tipped_shark n 1 2 @ #m 1 0 01490112 -white-topped_aster n 1 3 @ ~ #m 1 0 12013511 -white_admiral n 2 2 @ #m 2 0 02276902 02276749 -white_alder n 2 2 @ #m 2 0 12285369 12250180 -white_anglo-saxon_protestant n 1 1 @ 1 0 09641578 -white_ant n 1 3 @ ~ #m 1 0 02223266 -white_arsenic n 1 1 @ 1 0 14768201 -white_ash n 2 1 @ 2 0 12336727 12304115 -white_aspen n 1 1 @ 1 0 12732009 -white_avens n 2 1 @ 2 0 12632733 12631813 -white_backlash n 1 1 @ 1 0 00203208 -white_baneberry n 1 1 @ 1 0 11724363 -white_basswood n 1 1 @ 1 0 12203896 -white_bead n 1 1 @ 1 0 11724363 -white_bean n 1 1 @ 1 0 07727140 -white_bedstraw n 1 1 @ 1 0 12666369 -white_beech n 1 2 @ #m 1 0 12261808 -white_beer n 1 3 @ ~ ; 1 0 07888465 -white_birch n 1 2 @ #m 1 0 12282737 -white_blood_cell n 1 2 @ ~ 1 0 05449959 -white_blood_corpuscle n 1 2 @ ~ 1 0 05449959 -white_book n 1 1 @ 1 0 07219530 -white_bread n 1 2 @ ~ 1 0 07687211 -white_broom n 1 2 @ #m 1 0 12521186 -white_bryony n 1 1 @ 1 0 12163279 -white_burgundy n 1 1 @ 1 0 07894551 -white_cake n 1 1 @ 1 0 07632980 -white_camas n 1 2 @ #m 1 0 12467197 -white_campion n 1 2 @ #m 1 0 11816336 -white_cedar n 2 2 @ #m 2 0 11644226 11635152 -white_cell n 1 2 @ ~ 1 0 05449959 -white_chocolate n 1 2 @ %s 1 0 07604587 -white_cinnamon n 1 2 @ #p 1 0 12372520 -white_cinnamon_tree n 1 3 @ #m %p 1 0 12372233 -white_clover n 1 1 @ 1 0 11753700 -white_cockle n 1 2 @ #m 1 0 11816336 -white_cohosh n 1 1 @ 1 0 11724363 -white_corpuscle n 1 2 @ ~ 1 0 05449959 -white_crappie n 1 1 @ 1 0 02563079 -white_croaker n 2 2 @ #m 2 0 02598878 02598573 -white_currant n 1 2 @ #m 1 0 12805762 -white_cypress n 1 2 @ #m 1 0 11635152 -white_cypress_pine n 1 1 @ 1 0 11634243 -white_daisy n 1 2 @ #m 1 0 11989869 -white_dead_nettle n 1 2 @ #m 1 0 12849279 -white_dipladenia n 1 2 @ #m 1 0 11773408 -white_dog's-tooth_violet n 1 1 @ 1 0 12450607 -white_dogtooth_violet n 1 1 @ 1 0 12450607 -white_dwarf n 1 1 @ 1 0 09478569 -white_dwarf_star n 1 1 @ 1 0 09478569 -white_elephant n 2 1 @ 2 0 13252853 02504196 -white_elm n 1 2 @ #m 1 0 12406488 -white_fairy_lantern n 1 2 @ #m 1 0 12446908 -white_false_indigo n 1 1 @ 1 0 12509821 -white_feather n 1 1 @ 1 0 06856487 -white_feldspar n 1 1 @ 1 0 14865533 -white_fir n 2 1 @ 2 0 11621727 11621281 -white_flag n 1 1 @ 1 1 04580126 -white_fox n 1 3 @ ~ #m 1 0 02120079 -white_friar n 1 2 @ #m 1 0 10778148 -white_fringed_orchid n 1 1 @ 1 0 12066261 -white_fringed_orchis n 1 1 @ 1 0 12066261 -white_fritillary n 1 1 @ 1 0 12453018 -white_fungus n 1 2 @ #m 1 0 12979829 -white_globe_lily n 1 2 @ #m 1 0 12446908 -white_gold n 1 1 @ 1 0 14719169 -white_goods n 2 3 @ ~ ; 2 0 04580493 04580298 -white_heat n 1 1 @ 1 1 05017121 -white_heather n 1 2 @ #m 1 0 12233998 -white_hellebore n 1 1 @ 1 0 12464649 -white_honeysuckle n 2 2 @ #m 2 0 12674484 12244819 -white_hope n 1 1 @ 1 0 10778999 -white_horehound n 1 1 @ 1 0 12854193 -white_horse n 1 1 @ 1 0 07352693 -white_horse_nettle n 1 1 @ 1 0 12894930 -white_house n 2 3 @ #p %p 2 1 08128837 04580777 -white_knight n 1 2 @ ~ 1 0 08076705 -white_lead n 1 1 @ 1 0 15097722 -white_lead_ore n 1 2 @ %s 1 0 14670178 -white_leather n 1 1 @ 1 0 14761450 -white_leg n 1 1 @ 1 0 14103018 -white_lettuce n 1 2 @ #m 1 0 11997160 -white_lie n 1 1 @ 1 0 06757771 -white_lily n 2 2 @ #m 2 0 12426978 11715810 -white_line n 1 1 @ 1 0 07262462 -white_lotus n 1 2 @ #m 1 0 11715810 -white_lung n 1 1 @ 1 0 14055052 -white_lupine n 1 1 @ 1 0 12546420 -white_madder n 1 1 @ 1 0 12666369 -white_magic n 1 2 @ ~ 1 0 05979800 -white_maire n 1 2 @ #m 1 0 12301766 -white_mallee n 1 1 @ 1 0 12337131 -white_mallow n 1 2 @ #m 1 0 12174521 -white_man n 1 2 @ ~ 1 1 09641002 -white_man's_burden n 1 1 @ 1 0 01132709 -white_mangrove n 2 2 @ #m 2 0 12915811 12325234 -white_marlin n 1 1 @ 1 0 02631775 -white_matsutake n 1 1 @ 1 0 13232106 -white_matter n 1 4 @ ~ #s %p 1 0 05483677 -white_meat n 1 2 @ #p 1 0 07648408 -white_melilot n 1 1 @ 1 0 11751213 -white_metal n 1 1 @ 1 0 14719597 -white_milkweed n 1 1 @ 1 0 13234114 -white_mountain_ash n 1 1 @ 1 0 12337391 -white_mulberry n 1 1 @ 1 0 12399384 -white_mullein n 1 1 @ 1 0 12889412 -white_mullet n 1 2 @ #m 1 0 02601921 -white_mustard n 1 2 @ %p 1 0 11896519 -white_nile n 1 1 @ 1 0 09478678 -white_noise n 1 1 @ 1 0 07431852 -white_oak n 1 2 @ ~ 1 0 12269652 -white_onion_sauce n 1 1 @ 1 0 07839730 -white_pages n 1 1 @ 1 0 07251148 -white_paper n 1 1 @ 1 0 07219530 -white_pelican n 1 2 @ #m 1 0 02052204 -white_people n 1 2 @ %m 1 0 09639237 -white_pepper n 2 4 @ #m %s %p 2 0 13149506 07815956 -white_perch n 1 2 @ #m 1 0 02566489 -white_person n 1 3 @ ~ #m 1 0 09638875 -white_pine n 2 4 @ ~ #s %s 2 0 11612923 11609251 -white_pine_blister_rust n 1 1 @ 1 0 14277833 -white_plague n 2 3 @ ~ ; 2 0 14144064 14064408 -white_popinac n 1 2 @ #m 1 0 11762433 -white_poplar n 2 2 @ #s 2 0 12732009 11712621 -white_potato n 2 5 @ ~ #m #p %p 2 0 12897493 07710616 -white_potato_vine n 1 3 @ #m %p 1 0 12897493 -white_pox n 1 1 @ 1 0 14124688 -white_prairie_aster n 1 1 @ 1 0 11933903 -white_race n 1 2 @ %m 1 0 09639237 -white_rhinoceros n 1 1 @ 1 0 02392824 -white_rice n 1 1 @ 1 0 07804657 -white_river n 1 2 @ #p 1 0 09478355 -white_rocket n 1 2 @ #m 1 0 11885524 -white_room n 1 2 @ ~ 1 0 03040376 -white_russia n 1 5 @ #m #p %m %p 1 0 09011151 -white_russian n 3 2 @ #m 3 0 09695979 07931612 06944480 -white_rust n 1 2 @ #m 1 0 12981954 -white_sage n 1 1 @ 1 0 11930788 -white_sale n 1 1 @ 1 0 01120176 -white_sanicle n 1 2 @ #m 1 0 11917835 -white_sauce n 1 2 @ ~ 1 0 07837362 -white_sea n 1 2 @ #p 1 0 09478810 -white_seabass n 1 2 @ #m 1 0 02560546 -white_separatism n 1 2 @ + 1 0 08380606 -white_separatist n 1 2 @ + 1 0 10779238 -white_shark n 1 2 @ #m 1 0 01484850 -white_sheep n 1 2 @ #m 1 0 02415253 -white_silk-cotton_tree n 1 1 @ 1 0 12190410 -white_slave n 1 1 @ 1 0 10779416 -white_slaver n 1 1 @ 1 0 10779504 -white_slime_mushroom n 1 1 @ 1 0 13003974 -white_snakeroot n 1 2 @ #m 1 0 11917835 -white_snapdragon n 1 1 @ 1 0 12877493 -white_spanish_broom n 1 2 @ #m 1 0 12521186 -white_spruce n 1 1 @ 1 0 11625632 -white_squire n 1 1 @ 1 0 08076833 -white_stork n 1 2 @ #m 1 0 02002556 -white_stringybark n 1 1 @ 1 0 12337246 -white_sturgeon n 2 3 @ #m %p 2 0 02640857 02640626 -white_supremacist n 1 3 @ ~ + 1 0 10779610 -white_supremacy n 1 2 @ + 1 0 06204126 -white_sweet_clover n 1 1 @ 1 0 11751213 -white_tai n 1 1 @ 1 0 06934848 -white_tail n 1 2 @ #m 1 0 02432291 -white_thistle n 2 3 @ ~ #m 2 0 11902709 11831521 -white_tie n 2 2 @ %p 2 0 04580994 03239054 -white_tie_and_tails n 1 2 @ %p 1 0 03239054 -white_titi n 1 2 @ #m 1 0 12750767 -white_trash n 1 2 @ ; 1 0 09641226 -white_trumpet_lily n 1 1 @ 1 0 12427757 -white_turnip n 2 4 @ #m #p %p 2 0 11877646 07735981 -white_violet n 2 1 @ 2 1 12388444 12388652 -white_vitriol n 1 1 @ 1 0 15108324 -white_walnut n 1 3 @ #m %p 1 0 12318965 -white_water n 1 1 @ 1 0 09478962 -white_wax_tree n 1 1 @ 1 0 12308664 -white_whale n 1 2 @ #m 1 0 02072798 -white_willow n 1 2 @ #m 1 0 12725738 -white_wine n 1 2 @ ~ 1 0 07892813 -white_wolf n 1 1 @ 1 0 02114548 -white_woman n 1 1 @ 1 0 09641130 -white_wood_aster n 1 1 @ 1 0 11933387 -white_yam n 1 1 @ 1 0 12088327 -white_zinnia n 1 1 @ 1 0 12034384 -whitebait n 2 2 @ #m 2 0 07799132 02530052 -whitebark_pine n 1 1 @ 1 0 11614039 -whitebarked_pine n 1 1 @ 1 0 11614039 -whitecap n 1 1 @ 1 0 07352693 -whitecup n 1 2 @ #m 1 0 12908854 -whited_sepulcher n 1 1 @ 1 0 10777894 -whited_sepulchre n 1 1 @ 1 0 10777894 -whiteface n 2 1 @ 2 1 02407625 10778044 -whitefish n 3 6 @ ~ #m #p %p ; 3 0 07795317 07795133 02538985 -whitefly n 1 3 @ ~ #m 1 0 02246628 -whitehall n 2 2 @ #p 2 0 08596830 08357448 -whitehead n 2 2 @ #p 2 0 11384566 05245626 -whitehorse n 1 2 @ #p 1 0 08830882 -whitelash n 1 1 @ 1 0 00203208 -whiteman's_foot n 1 1 @ 1 0 12599435 -whitener n 1 4 @ ~ #s + 1 0 14779205 -whiteness n 3 3 @ ~ + 3 1 04960729 13990064 04978371 -whitening n 1 3 @ ~ + 1 0 00273877 -whiteout n 1 1 @ 1 0 11508808 -whitetail n 1 2 @ #m 1 0 02432291 -whitetail_antelope_squirrel n 1 1 @ 1 0 02357911 -whitetail_deer n 1 2 @ #m 1 0 02432291 -whitetail_jackrabbit n 1 1 @ 1 0 02327175 -whitetail_prairie_dog n 1 1 @ 1 0 02359667 -whitethorn n 1 2 @ #m 1 0 12627750 -whitethroat n 3 2 @ #m 3 0 01565078 01564914 01535469 -whitetip_shark n 2 2 @ #m 2 0 01493146 01490112 -whitewash n 3 2 @ + 3 0 07476952 04581102 01241594 -whitewater n 1 1 @ 1 0 09478962 -whitewood n 1 2 @ #s 1 0 11712621 -whitey n 1 2 @ ; 1 0 09641422 -whiting n 6 5 @ ~ #m #p %p 6 0 07778680 07778494 02637977 02597367 02524659 02523110 -whitlavia n 1 1 @ 1 0 12837259 -whitlow n 1 1 @ 1 0 14176570 -whitlow_grass n 1 1 @ 1 0 11886157 -whitlowwort n 1 2 @ #m 1 0 11813490 -whitman n 2 1 @ 2 0 11384986 11384755 -whitmonday n 1 2 @ #p 1 0 15242432 -whitney n 2 2 @ #p 2 0 11385126 09479072 -whitney_moore_young_jr. n 1 1 @ 1 0 11404140 -whitney_young n 1 1 @ 1 0 11404140 -whitsun n 1 3 @ #p %p 1 0 15242719 -whitsun_monday n 1 2 @ #p 1 0 15242432 -whitsun_tuesday n 1 2 @ #p 1 0 15242599 -whitsunday n 1 2 @ #p 1 0 15242209 -whitsuntide n 1 3 @ #p %p 1 0 15242719 -whittier n 1 1 @ 1 0 11385277 -whittle n 1 1 @ 1 0 11385442 -whittler n 1 2 @ + 1 0 10779775 -whitweek n 1 3 @ #p %p 1 0 15242719 -whiz n 2 3 @ ~ + 2 1 09762509 07400361 -whiz-kid n 1 1 @ 1 0 10135709 -whizbang n 2 1 @ 2 0 04581425 04581262 -whizbang_shell n 1 1 @ 1 0 04581425 -whizz n 1 2 @ ~ 1 0 09762509 -whizz-kid n 1 1 @ 1 0 10135709 -whizzbang n 2 1 @ 2 0 04581425 04581262 -who n 1 1 @ 1 0 08302724 -whodunit n 1 2 @ ~ 1 1 06370792 -whole n 2 4 @ ~ %p + 2 1 05869584 00003553 -whole-word_method n 1 1 @ 1 1 00888546 -whole_blood n 1 1 @ 1 0 05402961 -whole_caboodle n 1 1 @ 1 0 14461679 -whole_gale n 1 2 @ #p 1 0 11462401 -whole_kit n 1 1 @ 1 0 14461679 -whole_kit_and_boodle n 1 1 @ 1 0 14461679 -whole_kit_and_caboodle n 1 1 @ 1 0 14461679 -whole_life_insurance n 1 1 @ 1 0 13347947 -whole_meal_bread n 1 2 @ ~ 1 0 07682316 -whole_meal_flour n 1 2 @ ; 1 0 07569644 -whole_milk n 1 2 ! @ 1 0 07846802 -whole_name n 1 1 @ 1 0 06292478 -whole_note n 1 1 @ 1 0 06870576 -whole_number n 1 2 @ ~ 1 1 13728499 -whole_rest n 1 1 @ 1 0 06870726 -whole_shebang n 1 1 @ 1 0 14461679 -whole_snipe n 1 2 @ #m 1 0 02032222 -whole_step n 1 1 @ 1 0 06859056 -whole_to_part_relation n 1 1 @ 1 0 13808566 -whole_tone n 1 1 @ 1 0 06859056 -whole_wheat_bread n 1 2 @ ~ 1 0 07682316 -whole_wheat_flour n 1 2 @ ; 1 0 07569644 -whole_works n 1 1 @ 1 0 14461679 -wholeheartedness n 2 2 @ + 2 0 04867539 04645473 -wholeness n 2 4 @ ~ = + 2 0 14460565 14050011 -wholesale n 1 3 ! @ + 1 0 01114646 -wholesale_house n 1 2 @ #m 1 0 03206405 -wholesale_price_index n 1 1 @ 1 0 06641524 -wholesaler n 1 3 @ ~ + 1 1 10222497 -wholesomeness n 1 4 ! @ ~ + 1 0 04789689 -whoop n 1 2 @ + 1 0 07123288 -whoopee n 1 1 @ 1 0 00519251 -whooper n 2 3 @ #m + 2 0 02013177 01859325 -whooper_swan n 1 2 @ #m 1 0 01859325 -whooping_cough n 1 1 @ 1 0 14144626 -whooping_crane n 1 2 @ #m 1 0 02013177 -whoosh n 1 1 @ 1 0 07396530 -whopper n 2 1 @ 2 0 06757676 04574234 -whore n 1 3 @ ~ + 1 1 10485440 -whoredom n 1 2 @ + 1 0 00748155 -whorehouse n 1 2 @ ~ 1 0 04581595 -whoremaster n 2 1 @ 2 0 10779995 10779897 -whoremonger n 2 1 @ 2 0 10779995 10779897 -whoreson n 2 2 @ ; 2 0 09842823 09815188 -whorl n 3 3 @ ~ #p 3 1 13875970 05257737 03065424 -whorled_aster n 1 1 @ 1 0 11932927 -whorled_caraway n 1 1 @ 1 0 12934685 -whorled_loosestrife n 1 1 @ 1 0 12096089 -whorled_milkweed n 1 1 @ 1 0 13235766 -whorlywort n 1 2 @ #m 1 0 12882321 -whortleberry n 2 3 @ #p %p 2 0 12248574 07743224 -why n 1 1 @ 1 0 09179606 -whydah n 1 2 @ #m 1 0 01543383 -wi n 1 3 @ #p %p 1 0 09157163 -wicca n 2 1 @ 2 0 08485977 06245462 -wiccan n 1 1 @ 1 0 10780105 -wichita n 3 2 @ #p 3 0 09671974 09088989 06916021 -wichita_falls n 1 2 @ #p 1 0 09146912 -wick n 2 3 @ ~ #p 2 0 04582044 04581829 -wickedness n 5 3 @ ~ + 5 1 00745637 14563564 04852750 04827957 04781349 -wicker n 2 1 @ 2 1 15097849 04582205 -wicker_basket n 1 2 @ ~ 1 0 04582349 -wickerwork n 1 1 @ 1 0 04582205 -wicket n 4 2 @ %p 4 0 04582869 04582771 04582625 04582454 -wicket-keeper n 1 1 @ 1 0 10780185 -wicket_door n 1 1 @ 1 0 04582625 -wicket_gate n 1 1 @ 1 0 04582625 -wickiup n 1 1 @ 1 0 04583022 -wickliffe n 1 1 @ 1 0 11399866 -wickup n 1 2 @ #m 1 0 12342498 -wiclif n 1 1 @ 1 0 11399866 -wicopy n 1 2 @ #m 1 0 12347639 -widal's_test n 1 1 @ 1 0 05740162 -widal_test n 1 1 @ 1 0 05740162 -wide-angle_lens n 1 1 @ 1 0 04583212 -wide-body n 1 1 @ 1 0 04583620 -wide-body_aircraft n 1 1 @ 1 0 04583620 -wide_area_network n 1 1 @ 1 0 04583477 -wide_screen n 1 1 @ 1 1 04583776 -wide_wale n 1 1 @ 1 0 04583888 -widebody_aircraft n 1 1 @ 1 0 04583620 -widegrip_pushup n 1 1 @ 1 0 00629496 -wideness n 2 4 ! @ ~ + 2 0 05136343 05104548 -widening n 3 4 ! @ #p + 3 0 13574804 04500866 00407270 -widgeon n 1 3 @ ~ #m 1 0 01848648 -widget n 2 2 @ ~ 2 0 03218545 02729965 -widow n 1 3 @ ~ + 1 1 10780284 -widow's_peak n 1 2 @ #p 1 0 05256562 -widow's_walk n 1 1 @ 1 0 04583967 -widow's_weeds n 1 2 @ ; 1 0 04570532 -widow_bird n 1 2 @ #m 1 0 01543383 -widow_woman n 1 2 @ ~ 1 0 10780284 -widower n 1 1 @ 1 1 10780506 -widowhood n 2 2 @ + 2 1 15153667 13967970 -widowman n 1 1 @ 1 0 10780506 -width n 1 3 @ ~ = 1 1 05136150 -wieland n 1 2 @ ; 1 0 09585218 -wiener n 2 3 @ ~ #p 2 0 11385611 07676602 -wiener_roast n 1 1 @ 1 0 07577244 -wiener_schnitzel n 1 2 @ ; 1 0 07880458 -wienerwurst n 1 3 @ ~ #p 1 0 07676602 -wiesbaden n 1 1 @ 1 0 08775053 -wiesel n 1 1 @ 1 0 11385748 -wiesenboden n 1 1 @ 1 0 15097994 -wiesenthal n 1 1 @ 1 0 11386005 -wife n 1 4 ! @ ~ + 1 1 10780632 -wiffle n 1 2 @ ; 1 0 04584056 -wiffle_ball n 1 2 @ ; 1 0 04584056 -wifi n 1 1 @ 1 0 04595028 -wig n 2 2 @ ~ 2 1 04584207 06713099 -wig_tree n 1 1 @ 1 0 12760539 -wigeon n 1 3 @ ~ #m 1 0 01848648 -wigging n 1 1 @ 1 0 06713099 -wiggle n 1 2 @ + 1 0 00349705 -wiggle_nail n 1 1 @ 1 0 03112240 -wiggle_room n 1 1 @ 1 0 04659567 -wiggler n 3 3 @ #m + 3 0 10781236 02200509 01935395 -wiggliness n 1 2 @ + 1 0 04775185 -wight n 2 2 @ #p 2 0 09976429 09479238 -wigmaker n 1 1 @ 1 1 10781460 -wigner n 1 1 @ 1 0 11386138 -wigwam n 1 1 @ 1 0 04584373 -wikiup n 1 1 @ 1 0 04583022 -wilbur_wright n 1 1 @ 1 0 11398783 -wild n 2 3 @ ~ + 2 0 13939353 08683548 -wild-goose_chase n 1 1 @ 1 0 00320742 -wild_angelica n 1 1 @ 1 0 12932365 -wild_apple n 1 2 @ ~ 1 0 12634211 -wild_ass n 1 3 @ ~ #m 1 0 02390454 -wild_basil n 1 2 @ #m 1 0 12843970 -wild_bean n 2 4 @ #m #p %p 2 0 12507379 07774032 -wild_bergamot n 1 3 @ ~ #m 1 0 12858150 -wild_bill_hickock n 1 1 @ 1 0 11049443 -wild_blue_yonder n 1 1 @ 1 0 09224566 -wild_boar n 1 3 @ #m %p 1 0 02396427 -wild_buckwheat n 1 1 @ 1 0 12602612 -wild_cabbage n 1 2 @ #m 1 0 11875523 -wild_calla n 1 2 @ #m 1 0 11786131 -wild_card n 2 1 @ 2 0 07328646 04584512 -wild_carrot n 1 2 @ #m 1 0 12937130 -wild_cavy n 1 1 @ 1 0 02364840 -wild_celery n 2 2 @ #m 2 0 12933274 12615232 -wild_chamomile n 1 2 @ #m 1 0 11995092 -wild_cherry n 2 4 @ ~ #p %p 2 0 12642090 12641931 -wild_cherry_tree n 1 3 @ ~ %p 1 0 12641931 -wild_chervil n 1 2 @ #m 1 0 12932966 -wild_china_tree n 1 2 @ #m 1 0 12741586 -wild_cinnamon n 2 3 @ #m %p 2 0 12372233 12330891 -wild_clary n 1 1 @ 1 0 12866635 -wild_climbing_hempweed n 1 2 @ #m 1 0 11996251 -wild_coffee n 1 2 @ #m 1 0 12679876 -wild_cotton n 1 1 @ 1 0 12177455 -wild_crab n 1 2 @ #m 1 0 12634986 -wild_cranberry n 1 1 @ 1 0 12231358 -wild_crocus n 1 1 @ 1 0 11737752 -wild_dog n 1 3 @ ~ #m 1 1 02115335 -wild_duck n 1 1 @ 1 0 01851895 -wild_emmer n 1 1 @ 1 0 12143405 -wild_fig n 2 2 @ #m 2 0 12402051 12366053 -wild_flower n 1 2 @ ~ 1 0 11672400 -wild_garlic n 2 1 @ 2 0 12435649 12435486 -wild_geranium n 1 1 @ 1 0 12686077 -wild_ginger n 1 3 @ ~ #m 1 0 11802212 -wild_goat n 1 2 @ ~ 1 0 02417534 -wild_hollyhock n 2 2 @ #m 2 0 12187247 12181352 -wild_hop n 1 1 @ 1 0 12163456 -wild_horse n 1 2 @ ~ 1 1 02381460 -wild_hyacinth n 2 2 @ #m 2 0 12459275 12449934 -wild_hydrangea n 1 2 @ #m 1 0 12788678 -wild_indigo n 1 3 @ ~ #m 1 0 12509476 -wild_leek n 2 1 @ 2 0 12435338 12432356 -wild_licorice n 3 2 @ #m 3 0 12666050 12533190 12508497 -wild_lily_of_the_valley n 2 1 @ 2 0 12256920 12256708 -wild_liquorice n 2 2 @ #m 2 0 12533190 12508497 -wild_lupine n 1 2 @ #m 1 0 12546962 -wild_madder n 1 1 @ 1 0 12666369 -wild_man n 1 2 @ ~ 1 1 10781684 -wild_mandrake n 1 3 @ #m %p 1 0 11700058 -wild_mango n 1 3 @ #m %p 1 0 12717644 -wild_mango_tree n 1 3 @ #m %p 1 0 12717644 -wild_marjoram n 1 3 @ #m %p 1 0 12853287 -wild_meadow_lily n 1 1 @ 1 0 12426749 -wild_medlar n 1 3 @ #m %p 1 0 12670758 -wild_medlar_tree n 1 3 @ #m %p 1 0 12670758 -wild_morning-glory n 2 2 @ #m 2 0 12825061 12824053 -wild_mustard n 1 1 @ 1 0 11896722 -wild_oat n 1 1 @ 1 0 12110236 -wild_oat_grass n 1 1 @ 1 0 12110236 -wild_oats n 1 3 @ ~ #m 1 0 12475035 -wild_olive n 1 1 @ 1 0 12326033 -wild_onion n 1 3 @ ~ #m 1 0 12431861 -wild_orange n 2 2 @ #m 2 0 12714254 12643113 -wild_ox n 1 3 @ ~ #m 1 0 02402175 -wild_pansy n 1 1 @ 1 0 12390681 -wild_parsley n 1 1 @ 1 0 12930951 -wild_parsnip n 1 1 @ 1 0 12942025 -wild_pea n 1 3 @ ~ #m 1 0 12539306 -wild_peach n 1 2 @ #m 1 0 12380761 -wild_peanut n 1 2 @ #m 1 0 12505253 -wild_pink n 2 2 @ #m 2 0 12046028 11815918 -wild_pitch n 1 1 @ 1 1 00109892 -wild_plum n 2 3 @ ~ #p 2 0 12638556 07765728 -wild_plum_tree n 1 2 @ ~ 1 0 12638556 -wild_potato n 1 2 @ #m 1 0 12895578 -wild_potato_vine n 1 1 @ 1 0 12827907 -wild_pumpkin n 1 3 @ #m %p 1 0 12162425 -wild_quinine n 1 2 @ #m 1 0 12001294 -wild_radish n 1 2 @ #m 1 0 11894558 -wild_rape n 1 2 @ #m 1 0 11894558 -wild_raspberry n 1 1 @ 1 0 12656369 -wild_red_oat n 1 1 @ 1 0 12110475 -wild_rice n 2 4 @ #m #p %p 2 0 12145919 07804771 -wild_rosemary n 1 2 @ #m 1 0 12238913 -wild_rye n 1 3 @ ~ #m 1 0 12119238 -wild_sage n 1 1 @ 1 0 12866635 -wild_sarsaparilla n 1 2 @ #m 1 0 11797722 -wild_sarsparilla n 1 2 @ #m 1 0 11797722 -wild_senna n 1 2 @ #m 1 0 12500309 -wild_sensitive_plant n 1 2 @ #m 1 0 12494358 -wild_service_tree n 1 1 @ 1 0 12659064 -wild_sheep n 1 2 @ ~ 1 0 02414578 -wild_snapdragon n 1 3 @ ~ #m 1 0 12884260 -wild_spinach n 4 3 @ #p %p 4 0 11828973 11828577 07733847 07733712 -wild_spurge n 1 2 @ #m 1 0 12919195 -wild_strawberry n 1 2 @ #m 1 0 12630641 -wild_sweet_pea n 1 1 @ 1 0 12572858 -wild_sweet_potato_vine n 1 1 @ 1 0 12827907 -wild_tamarind n 2 2 @ #m 2 0 11764478 11762927 -wild_teasel n 1 1 @ 1 0 12683096 -wild_thyme n 1 1 @ 1 0 12870891 -wild_tobacco n 1 1 @ 1 0 12908093 -wild_vanilla n 1 2 @ #m 1 0 12028012 -wild_water_lemon n 1 1 @ 1 0 12384839 -wild_west n 1 1 @ 1 0 08683177 -wild_west_show n 1 1 @ 1 0 00523263 -wild_wheat n 1 1 @ 1 0 12143405 -wild_wilkworm n 1 4 @ ~ #m %p 1 0 02302620 -wild_winterpea n 1 1 @ 1 0 12539564 -wild_yam n 1 2 @ #m 1 0 12089320 -wild_yellow_lily n 1 1 @ 1 0 12426749 -wildcat n 3 4 @ ~ #m + 3 3 04584639 09845589 02124623 -wildcat_strike n 1 1 @ 1 0 01244451 -wildcat_well n 1 1 @ 1 0 04584639 -wildcatter n 1 1 @ 1 1 10781547 -wilde n 1 1 @ 1 0 11386346 -wilde_dagga n 1 2 @ #m 1 0 12850906 -wildebeest n 1 2 @ #m 1 0 02421449 -wilder n 2 1 @ 2 0 11386692 11386503 -wilderness n 4 4 @ ~ + ; 4 0 14413831 09479424 08683548 05116730 -wilderness_campaign n 1 4 @ #p %p ; 1 0 01299735 -wildfire n 1 1 @ 1 0 07304753 -wildflower n 1 2 @ ~ 1 0 11672400 -wildfowl n 1 2 @ ~ 1 0 07646927 -wilding n 2 2 @ ~ 2 0 11531193 00554726 -wildlife n 1 1 @ 1 1 07993776 -wildness n 4 5 ! @ ~ = + 4 2 07481223 05037813 04909887 04907826 -wile n 1 3 @ ~ + 1 1 00752954 -wiley_post n 1 1 @ 1 0 11243907 -wilfulness n 1 3 @ ~ + 1 0 04908396 -wilhelm_apollinaris_de_kostrowitzki n 1 1 @ 1 0 10820444 -wilhelm_eduard_weber n 1 1 @ 1 0 11378929 -wilhelm_grimm n 1 1 @ 1 0 11016841 -wilhelm_ii n 1 1 @ 1 0 11386853 -wilhelm_karl_grimm n 1 1 @ 1 0 11016841 -wilhelm_konrad_roentgen n 1 1 @ 1 0 11268326 -wilhelm_konrad_rontgen n 1 1 @ 1 0 11268326 -wilhelm_ostwald n 1 1 @ 1 0 11218054 -wilhelm_reich n 1 1 @ 1 0 11257159 -wilhelm_richard_wagner n 1 1 @ 1 0 11369834 -wilhelm_von_opel n 1 1 @ 1 0 11215724 -wiliness n 1 2 @ + 1 0 05621178 -wilkes n 2 1 @ 2 0 11387179 11387060 -wilkes_land n 1 2 @ #p 1 0 08682188 -wilkie_collins n 1 1 @ 1 0 10905159 -wilkins n 3 1 @ 3 0 11387692 11387539 11387362 -wilkins_micawber n 1 1 @ 1 0 09601906 -wilkinson n 1 1 @ 1 0 11387806 -will n 3 5 @ ~ %p + ; 3 3 05652593 05983654 06544142 -will-o'-the-wisp n 2 1 @ 2 0 11459369 05896515 -will_durant n 1 1 @ 1 0 10945699 -will_hays n 1 1 @ 1 0 11036668 -will_keith_kellog n 1 1 @ 1 0 11099438 -will_power n 1 2 @ ~ 1 0 04862005 -will_rogers n 1 1 @ 1 0 11268883 -willa_cather n 1 1 @ 1 0 10887137 -willa_sibert_cather n 1 1 @ 1 0 10887137 -willamette n 1 2 @ #p 1 0 09479635 -willamette_river n 1 2 @ #p 1 0 09479635 -willard n 2 1 @ 2 0 11388141 11387973 -willard_frank_libby n 1 1 @ 1 0 11131505 -willard_huntington_wright n 1 1 @ 1 0 11399123 -willard_van_orman_quine n 1 1 @ 1 0 11250991 -willebrand n 1 1 @ 1 0 11388321 -willem_de_kooning n 1 1 @ 1 0 10928299 -willem_de_sitter n 1 1 @ 1 0 11303522 -willem_einthoven n 1 1 @ 1 0 10954819 -willet n 1 2 @ #m 1 0 02030837 -willful_neglect n 1 1 @ 1 0 04666083 -willfulness n 1 3 @ ~ + 1 0 04908396 -william_a._craigie n 1 1 @ 1 0 10914134 -william_and_mary n 1 1 @ 1 0 08486075 -william_ashley_sunday n 1 1 @ 1 0 11325534 -william_augustus n 1 1 @ 1 0 10917164 -william_averell_harriman n 1 1 @ 1 0 11030025 -william_beaumont n 1 1 @ 1 0 10839469 -william_benjamin_hogan n 1 1 @ 1 0 11055454 -william_blake n 1 1 @ 1 0 10852669 -william_bligh n 1 1 @ 1 0 10852961 -william_bradford n 1 1 @ 1 0 10860589 -william_bradford_shockley n 1 1 @ 1 0 11298810 -william_burroughs n 1 1 @ 1 0 10874706 -william_butler_yeats n 1 1 @ 1 0 11402463 -william_butterfield n 1 1 @ 1 0 10876661 -william_byrd n 1 1 @ 1 0 10877015 -william_carlos_williams n 1 1 @ 1 0 11390058 -william_caxton n 1 1 @ 1 0 10888644 -william_chambers n 1 1 @ 1 0 10889905 -william_christopher_handy n 1 1 @ 1 0 11027885 -william_claire_menninger n 1 1 @ 1 0 11174730 -william_clark n 1 1 @ 1 0 10899164 -william_clark_gable n 1 1 @ 1 0 10986437 -william_claude_dukenfield n 1 1 @ 1 0 10970718 -william_congreve n 1 1 @ 1 0 10907103 -william_cowper n 2 1 @ 2 0 10914006 10913871 -william_crawford_gorgas n 1 1 @ 1 0 11008462 -william_crookes n 1 1 @ 1 0 10916505 -william_curtis n 1 1 @ 1 0 10918558 -william_cuthbert_faulkner n 1 1 @ 1 0 10967633 -william_dawes n 1 1 @ 1 0 10925584 -william_dean_howells n 1 1 @ 1 0 11063061 -william_dudley_haywood n 1 1 @ 1 0 11036911 -william_edward_burghardt_du_bois n 1 1 @ 1 0 10944013 -william_ewart_gladstone n 1 1 @ 1 0 11001668 -william_f._cody n 1 1 @ 1 0 10904270 -william_falkner n 1 1 @ 1 0 10967633 -william_faulkner n 1 1 @ 1 0 10967633 -william_felton_russell n 1 1 @ 1 0 11275495 -william_franklin_graham n 1 1 @ 1 0 11010385 -william_frederick_cody n 1 1 @ 1 0 10904270 -william_fulbright n 1 1 @ 1 0 10985160 -william_gilbert n 2 1 @ 2 0 10999584 10999410 -william_gladstone n 1 1 @ 1 0 11001668 -william_golding n 1 1 @ 1 0 11004731 -william_graham_sumner n 1 1 @ 1 0 11325419 -william_green n 1 1 @ 1 0 11013324 -william_h._bonney n 1 1 @ 1 0 10857001 -william_harrison_dempsey n 1 1 @ 1 0 10930591 -william_harrison_hays n 1 1 @ 1 0 11036668 -william_harvey n 1 1 @ 1 0 11033358 -william_hazlitt n 1 1 @ 1 0 11037157 -william_henry n 1 1 @ 1 0 11040596 -william_henry_beveridge n 1 1 @ 1 0 10850667 -william_henry_fox_talbot n 1 1 @ 1 0 11329281 -william_henry_gates n 1 1 @ 1 0 10991936 -william_henry_harrison n 1 1 @ 1 0 11031420 -william_henry_hoover n 1 1 @ 1 0 11059079 -william_henry_hudson n 1 1 @ 1 0 11064330 -william_henry_mauldin n 1 1 @ 1 0 11165164 -william_henry_pratt n 1 1 @ 1 0 11096801 -william_henry_seward n 1 1 @ 1 0 11294349 -william_herschel n 1 1 @ 1 0 11045898 -william_hogarth n 1 1 @ 1 0 11055612 -william_holman_hunt n 1 1 @ 1 0 11067047 -william_holmes_mcguffey n 1 1 @ 1 0 11169135 -william_hoover n 1 1 @ 1 0 11059079 -william_howard_taft n 1 1 @ 1 0 11328714 -william_hubbs_rehnquist n 1 1 @ 1 0 11256765 -william_hyde_wollaston n 1 1 @ 1 0 11394954 -william_i n 1 1 @ 1 0 11388538 -william_ii n 1 1 @ 1 0 11388841 -william_iii n 1 1 @ 1 0 11389003 -william_inge n 1 1 @ 1 0 11071574 -william_iv n 1 1 @ 1 0 11389301 -william_james n 1 1 @ 1 1 11079392 -william_james_durant n 1 1 @ 1 0 10945699 -william_jefferson_clinton n 1 1 @ 1 0 10902591 -william_jennings_bryan n 1 1 @ 1 0 10869385 -william_john_clifton_haley_jr. n 1 1 @ 1 0 11024226 -william_kidd n 1 1 @ 1 0 11104458 -william_lawrence_shirer n 1 1 @ 1 0 11298634 -william_le_baron_jenny n 1 1 @ 1 0 11082353 -william_lloyd_garrison n 1 1 @ 1 0 10991583 -william_makepeace_thackeray n 1 1 @ 1 0 11337202 -william_maxwell_aitken n 1 1 @ 1 0 10839791 -william_mckinley n 1 1 @ 1 0 11169418 -william_menninger n 1 1 @ 1 0 11174730 -william_mitchell n 1 1 @ 1 0 11182621 -william_morris n 1 1 @ 1 0 11192067 -william_nunn_lipscom_jr. n 1 1 @ 1 0 11134730 -william_of_occam n 1 1 @ 1 0 11211517 -william_of_ockham n 1 1 @ 1 0 11211517 -william_of_orange n 1 1 @ 1 0 11389003 -william_of_wykeham n 1 1 @ 1 0 11400230 -william_patterson n 1 1 @ 1 0 11225165 -william_penn n 1 1 @ 1 0 11228956 -william_penn_adair_rogers n 1 1 @ 1 0 11268883 -william_pitt n 2 1 @ 2 0 11236497 11236317 -william_ralph_inge n 1 1 @ 1 0 11071677 -william_randolph_hearst n 1 1 @ 1 0 11037278 -william_rehnquist n 1 1 @ 1 0 11256765 -william_richard_morris n 1 1 @ 1 0 11210383 -william_rose_benet n 1 1 @ 1 0 10844527 -william_rowan_hamilton n 1 1 @ 1 0 11026231 -william_rufus n 1 1 @ 1 0 11388841 -william_s._burroughs n 1 1 @ 1 0 10874706 -william_s._gilbert n 1 1 @ 1 0 10999584 -william_saroyan n 1 1 @ 1 0 11282154 -william_schwenk_gilbert n 1 1 @ 1 0 10999584 -william_seward_burroughs n 2 1 @ 2 0 10874706 10874540 -william_shakespeare n 1 1 @ 1 0 11295196 -william_shakspere n 1 1 @ 1 0 11295196 -william_shockley n 1 1 @ 1 0 11298810 -william_somerset_maugham n 1 1 @ 1 0 11164970 -william_stanley_jevons n 1 1 @ 1 0 11084200 -william_strickland n 1 1 @ 1 0 11322344 -william_stubbs n 1 1 @ 1 0 11322937 -william_styron n 1 1 @ 1 0 11323316 -william_sydney_porter n 1 1 @ 1 0 11243102 -william_tatem_tilden_jr. n 1 1 @ 1 0 11342440 -william_tecumseh_sherman n 1 1 @ 1 0 11297983 -william_tell n 1 1 @ 1 0 10698649 -william_the_conqueror n 1 1 @ 1 0 11388538 -william_thompson n 1 1 @ 1 0 11100260 -william_thornton n 1 1 @ 1 0 11341374 -william_tindal n 1 1 @ 1 0 11354333 -william_tindale n 1 1 @ 1 0 11354333 -william_tyndale n 1 1 @ 1 0 11354333 -william_walton n 1 1 @ 1 0 11373231 -william_wilkie_collins n 1 1 @ 1 0 10905159 -william_wordsworth n 1 2 @ #m 1 0 11397657 -william_wycherley n 1 1 @ 1 0 11399716 -william_wyler n 1 1 @ 1 0 11400490 -william_wymark_jacobs n 1 1 @ 1 0 11078059 -williams n 6 1 @ 6 0 11390364 11390170 11390058 11389901 11389619 11389481 -williams_syndrome n 1 1 @ 1 0 14470754 -williamstown n 1 2 @ #p 1 0 09099411 -willie_howard_mays_jr. n 1 1 @ 1 0 11167269 -willie_mays n 1 1 @ 1 0 11167269 -willies n 1 1 @ 1 0 07525259 -willing n 1 3 @ ~ + 1 1 00163047 -willingness n 1 4 ! @ ~ + 1 1 04644512 -willis n 1 1 @ 1 0 11390549 -willow n 2 3 @ ~ #m 2 1 12724942 04584794 -willow-pattern n 1 1 @ 1 0 04584944 -willow_aster n 1 1 @ 1 0 11937446 -willow_bell n 1 1 @ 1 0 12038585 -willow_family n 1 3 @ #m %m 1 0 12723985 -willow_oak n 1 1 @ 1 0 12277150 -willow_tree n 1 3 @ ~ #m 1 0 12724942 -willowherb n 1 3 @ ~ #m 1 0 12342299 -willowware n 1 1 @ 1 0 04584944 -willpower n 1 2 @ ~ 1 1 04862005 -willy_brandt n 1 1 @ 1 0 10862822 -wilmington n 2 3 @ #p %p 2 0 09129187 09070363 -wilms'_tumor n 1 1 @ 1 0 14246097 -wilms_tumour n 1 1 @ 1 0 14246097 -wilmut n 1 1 @ 1 0 11390692 -wilno n 1 2 @ #p 1 0 09014273 -wilson n 11 3 @ #p + 11 0 11392368 11392210 11392082 11391915 11391759 11391587 11391379 11391234 11391123 11390855 09479811 -wilson's_blackcap n 1 1 @ 1 0 01567879 -wilson's_disease n 1 1 @ 1 0 14569121 -wilson's_phalarope n 1 2 @ #m 1 0 02038466 -wilson's_snipe n 1 2 @ #m 1 0 02032355 -wilson's_thrush n 1 2 @ #m 1 0 01559639 -wilson's_warbler n 1 1 @ 1 0 01567879 -wilson_cloud_chamber n 1 1 @ 1 0 03052628 -wilsonia_pusilla n 1 1 @ 1 0 01567879 -wilt n 2 3 @ ~ + 2 0 14283178 00362546 -wilt_disease n 1 2 @ ~ 1 0 14283178 -wilting n 1 2 @ + 1 0 00362546 -wilton n 1 1 @ 1 0 04585128 -wilton_carpet n 1 1 @ 1 0 04585128 -wimble n 1 1 @ 1 0 02758490 -wimbledon n 1 2 @ #p 1 0 08876773 -wimp n 2 4 @ #p + ; 2 0 10781817 09476717 -wimple n 1 1 @ 1 0 04585318 -wimshurst_machine n 1 2 @ ~ 1 0 03280394 -win n 2 3 @ ~ + 2 1 07354731 13259917 -wince n 2 2 @ + 2 0 06879056 00865471 -wincey n 1 2 @ ; 1 0 04585456 -winceyette n 1 2 @ ; 1 0 04585626 -winch n 1 4 @ ~ #p + 1 0 04585745 -winchester n 2 4 @ #p %p ; 2 0 08880859 04585980 -winchester_college n 1 2 @ #p 1 0 08411031 -winchester_drive n 1 3 @ %p ; 1 0 03209666 -winckelmann n 1 1 @ 1 0 11392539 -wind n 8 5 @ ~ %s %p + 8 3 11525955 11415492 00836537 07136711 06651577 04586932 00839597 00345641 -wind_bell n 1 1 @ 1 0 04586225 -wind_cave_national_park n 1 2 @ #p 1 0 08609858 -wind_chime n 1 1 @ 1 0 04586225 -wind_cone n 1 1 @ 1 0 07257582 -wind_deflection n 1 1 @ 1 0 05011431 -wind_energy_facility n 1 2 @ %p 1 0 04586761 -wind_exposure n 1 1 @ 1 0 05044215 -wind_farm n 1 2 @ %p 1 0 04586761 -wind_gage n 1 1 @ 1 0 02710429 -wind_gap n 1 1 @ 1 0 09479962 -wind_gauge n 1 1 @ 1 0 02710429 -wind_generation n 1 1 @ 1 0 11526894 -wind_generator n 1 2 @ %p 1 0 04587404 -wind_harp n 1 1 @ 1 0 02682407 -wind_instrument n 1 3 @ ~ %p 1 0 04586932 -wind_park n 1 2 @ %p 1 0 04586761 -wind_poppy n 1 1 @ 1 0 11908549 -wind_power n 1 1 @ 1 0 11526894 -wind_rose n 1 1 @ 1 0 04590416 -wind_scale n 1 2 @ %p 1 0 13850674 -wind_sleeve n 1 1 @ 1 0 07257582 -wind_sock n 1 1 @ 1 0 07257582 -wind_tee n 1 1 @ 1 0 04591249 -wind_tunnel n 1 1 @ 1 0 04591359 -wind_turbine n 1 2 @ #p 1 0 04591517 -wind_vane n 1 2 @ ~ 1 0 04568069 -windage n 4 1 @ 4 0 11505210 05103503 05044215 05011431 -windaus n 1 1 @ 1 0 11392754 -windbag n 1 1 @ 1 1 10121467 -windbreak n 1 1 @ 1 1 04586072 -windbreaker n 1 3 @ ~ ; 1 0 03891051 -windburn n 1 1 @ 1 0 14290751 -windcheater n 1 3 @ ~ ; 1 0 03891051 -winder n 3 3 @ ~ + 3 0 10781984 04586581 04586421 -windfall n 2 1 @ 2 0 07739035 07477587 -windfall_profit n 1 1 @ 1 0 13259630 -windflower n 1 3 @ ~ #m 1 0 11725015 -windhoek n 1 2 @ #p 1 0 08700133 -windiness n 2 4 @ ~ = + 2 0 14523787 07090108 -winding n 1 1 @ 1 0 00345641 -winding-clothes n 1 1 @ 1 1 03879116 -winding-sheet n 1 1 @ 1 0 03879116 -windjammer n 1 1 @ 1 0 04587327 -windlass n 1 3 @ ~ #p 1 0 04585745 -windlessness n 1 2 @ + 1 0 14522809 -windmill n 2 2 @ %p 2 1 04587559 04587404 -windmill_grass n 1 1 @ 1 0 12114770 -window n 8 5 @ ~ #p %p ; 8 4 04587648 04588365 04588587 09480077 15299783 04589745 04588986 04588739 -window-washing n 1 1 @ 1 1 00256217 -window_blind n 1 2 @ ~ 1 0 04589190 -window_box n 1 1 @ 1 1 04589325 -window_cleaner n 1 1 @ 1 0 10783145 -window_dresser n 1 1 @ 1 0 10783240 -window_dressing n 2 1 @ 2 0 06758698 00262908 -window_envelope n 1 2 @ %p 1 0 04589434 -window_frame n 1 3 @ #p %p 1 0 04589593 -window_glass n 1 3 @ ~ #p 1 0 03881893 -window_lock n 1 2 @ #p 1 0 04136800 -window_oyster n 1 2 @ #m 1 0 01962788 -window_pane n 1 1 @ 1 0 02675657 -window_sash n 1 3 @ ~ #p 1 0 04136510 -window_screen n 1 1 @ 1 0 04589890 -window_seat n 1 1 @ 1 0 04590021 -window_shade n 1 2 @ ~ 1 1 04590129 -window_trimmer n 1 1 @ 1 0 10783240 -window_washer n 1 1 @ 1 0 10783352 -windowpane n 2 3 @ #m #p 2 1 04589745 02662825 -windowpane_oyster n 1 2 @ #m 1 0 01962788 -windows n 1 2 @ ; 1 0 06581823 -windowsill n 1 2 @ #p 1 1 04590263 -windpipe n 1 3 @ #p %p 1 0 05531814 -windscreen n 1 2 @ #p 1 0 04590553 -windscreen_wiper n 1 2 @ #p 1 0 04590746 -windshield n 1 2 @ #p 1 1 04590553 -windshield_wiper n 1 2 @ #p 1 0 04590746 -windsock n 1 1 @ 1 0 07257582 -windsor n 2 2 @ %m 2 0 08828627 08159740 -windsor_chair n 1 1 @ 1 0 04590933 -windsor_green n 1 1 @ 1 1 14811347 -windsor_knot n 1 1 @ 1 0 04591056 -windsor_tie n 1 1 @ 1 0 04591157 -windstorm n 1 2 @ ~ 1 0 11527014 -windtalker n 1 1 @ 1 0 09933613 -windup n 1 3 @ ~ + 1 0 00211110 -windward n 2 3 ! @ ~ 2 0 13829586 08610023 -windward_islands n 1 3 @ #p %p 1 0 08749864 -windward_isles n 1 3 @ #p %p 1 0 08749864 -windward_passage n 1 2 @ #p 1 0 09480241 -windward_side n 1 1 @ 1 0 13829720 -windy_city n 1 3 @ #p %p 1 0 09083390 -wine n 2 4 @ ~ #s + 2 2 07891726 04964162 -wine-colored n 1 1 @ 1 0 04964162 -wine-coloured n 1 1 @ 1 0 04964162 -wine-maker's_yeast n 1 2 @ #m 1 0 13026015 -wine_bar n 1 1 @ 1 0 04591631 -wine_barrel n 1 1 @ 1 0 04592005 -wine_bottle n 1 3 @ ~ %p 1 0 04591713 -wine_bucket n 1 1 @ 1 0 04591887 -wine_cask n 1 1 @ 1 0 04592005 -wine_cellar n 1 1 @ 1 0 02991847 -wine_cooler n 1 1 @ 1 0 04591887 -wine_lover n 1 1 @ 1 0 10370955 -wine_maker n 2 1 @ 2 0 10754088 04592465 -wine_making n 1 2 @ - 1 0 01126564 -wine_merchant n 1 1 @ 1 0 10754189 -wine_palm n 2 3 @ #m %s 2 0 12587132 12585629 -wine_sauce n 1 1 @ 1 0 07831663 -wine_steward n 1 1 @ 1 0 10623806 -wine_taster n 1 1 @ 1 0 10783438 -wine_tasting n 1 1 @ 1 0 08486189 -wine_vinegar n 1 1 @ 1 0 07829331 -wine_waiter n 1 1 @ 1 0 10623806 -wineberry n 2 2 @ #m 2 0 12657755 12193665 -wineglass n 1 3 @ ~ %p 1 1 04592099 -wineglass_heel n 1 1 @ 1 0 04592243 -winemaker n 1 1 @ 1 0 10754088 -winemaking n 1 2 @ - 1 0 01126564 -winepress n 1 1 @ 1 0 04592356 -winery n 1 2 @ + 1 0 04592465 -winesap n 1 1 @ 1 0 07741804 -wineskin n 1 1 @ 1 0 04592596 -winfield_scott n 1 1 @ 1 0 11289307 -winfred n 1 2 @ ; 1 0 10856486 -wing n 11 7 @ ~ #p %m %p + ; 11 5 02151625 04592741 04592962 08219493 08482113 10782135 08493825 08486306 07648549 03327841 02713594 -wing-nut n 2 3 @ ~ #m 2 0 12322501 04593185 -wing_case n 1 1 @ 1 0 02152559 -wing_chair n 1 1 @ 1 0 04593077 -wing_commander n 1 1 @ 1 0 10782362 -wing_elm n 1 2 @ #m 1 0 12406304 -wing_flat n 1 1 @ 1 0 03116435 -wing_loading n 1 1 @ 1 0 13826845 -wing_nut n 2 3 @ ~ #m 2 0 12322501 04593185 -wing_screw n 1 1 @ 1 0 04593185 -wing_shooting n 1 1 @ 1 0 00225484 -wing_tip n 2 3 @ #p %p 2 0 04593524 04593376 -wingback n 2 3 @ #m ; 2 1 10782248 00727333 -winged_bean n 1 3 @ #m %p 1 0 12564083 -winged_elm n 1 2 @ #m 1 0 12406304 -winged_everlasting n 1 1 @ 1 0 11920663 -winged_pea n 2 3 @ #m %p 2 0 12564083 12545865 -winged_pigweed n 1 2 @ #m 1 0 11833373 -winged_spindle_tree n 1 1 @ 1 0 12749456 -winger n 1 2 @ ; 1 0 10782471 -wingman n 1 1 @ 1 1 10782632 -wings n 2 2 @ ; 2 1 00179916 07268035 -wingspan n 1 1 @ 1 0 05130614 -wingspread n 2 1 @ 2 0 05130735 05130614 -wingstem n 1 1 @ 1 0 12030908 -wink n 3 3 @ ~ + 3 1 15247110 06878934 00117959 -winker n 2 2 @ + 2 0 10783539 04593629 -winking n 1 3 @ ~ + 1 0 00117959 -winkle n 2 4 @ #m #s %s 2 0 07782668 01948446 -winnebago n 2 1 @ 2 0 09672105 06913214 -winner n 3 4 ! @ ~ + 3 1 10782940 10782791 09762821 -winner's_circle n 1 1 @ 1 0 08683841 -winning n 1 2 @ + 1 1 00064018 -winning_post n 1 1 @ 1 0 07258238 -winning_streak n 1 1 @ 1 0 08460847 -winnings n 1 3 ! @ + 1 0 13259917 -winnipeg n 2 2 @ #p 2 1 08824152 09480428 -winnow n 1 2 @ + 1 0 01254051 -winnowing n 1 2 @ + 1 0 01254051 -wino n 1 2 @ ~ 1 0 10037385 -winslow n 1 1 @ 1 0 11392913 -winslow_homer n 1 1 @ 1 0 11057548 -winsomeness n 1 2 @ + 1 0 04687957 -winston-salem n 1 2 @ #p 1 0 09129324 -winston_churchill n 1 1 @ 1 0 10897312 -winston_s._churchill n 1 1 @ 1 0 10897312 -winter n 1 3 @ %p + 1 1 15237782 -winter's_bark n 2 4 @ #m #p %p 2 0 13162815 11739978 -winter's_bark_family n 1 3 @ #m %m 1 0 11739530 -winter's_bark_tree n 1 3 @ #m %p 1 0 11739978 -winter_aconite n 1 2 @ #m 1 0 11733548 -winter_cherry n 2 1 @ 2 0 12910875 12896862 -winter_cress n 2 3 @ ~ #m 2 0 11873612 07733124 -winter_crookneck n 1 2 @ %p 1 0 12161969 -winter_crookneck_squash n 2 3 @ #p %p 2 0 12161969 07718329 -winter_currant n 1 2 @ #m 1 0 12805899 -winter_fern n 1 2 @ #m 1 0 12935609 -winter_flounder n 2 3 @ #p %p 2 0 07791663 02659478 -winter_flowering_cherry n 1 1 @ 1 0 12650038 -winter_hazel n 1 2 @ #m 1 0 12315598 -winter_heath n 1 1 @ 1 0 12228229 -winter_heliotrope n 1 2 @ #m 1 0 12002651 -winter_jasmine n 1 1 @ 1 0 12307076 -winter_melon n 2 4 @ ~ #p %p 2 0 12164881 07756096 -winter_melon_vine n 1 2 @ %p 1 0 12164881 -winter_mushroom n 1 2 @ #m 1 0 13022210 -winter_olympic_games n 1 1 @ 1 0 07457485 -winter_olympics n 1 1 @ 1 0 07457485 -winter_purslane n 1 1 @ 1 0 11861853 -winter_rose n 1 1 @ 1 0 11734300 -winter_savory n 2 3 @ #p %p 2 0 12867449 07821107 -winter_savoury n 1 2 @ #p 1 0 07821107 -winter_solstice n 1 3 ! @ #p 1 1 15223190 -winter_squash n 2 5 @ ~ #m #p %p 2 0 12160490 07717070 -winter_squash_plant n 1 4 @ ~ #m %p 1 0 12160490 -winter_sweet n 4 3 @ #m %p 4 0 12853706 12853287 11768505 11701698 -winter_urn n 1 1 @ 1 0 12984699 -winter_wren n 1 2 @ #m 1 0 01584695 -wintera n 1 3 @ #m %m 1 0 11740208 -wintera_colorata n 1 2 @ #m 1 0 11740414 -winteraceae n 1 3 @ #m %m 1 0 11739530 -winterberry n 1 1 @ 1 0 12757303 -wintergreen n 3 6 @ ~ #m #p %s %p 3 0 12256112 12235765 07743723 -wintergreen_family n 1 3 @ #m %m 1 0 12255659 -wintergreen_oil n 1 3 @ #s %s 1 0 07812913 -wintertime n 1 2 @ %p 1 1 15237782 -wintun n 2 1 @ 2 0 09672314 06924468 -wipe n 1 3 @ ~ + 1 0 00125126 -wipeout n 2 4 @ ~ + ; 2 0 07334490 00077249 -wiper n 3 3 @ #p + 3 0 10783646 04593866 04590746 -wiper_arm n 1 2 @ #p 1 0 04593866 -wiper_blade n 1 2 @ #p 1 0 04590746 -wiper_motor n 1 1 @ 1 0 04594114 -wire n 4 3 @ ~ + 4 4 04594218 04594489 08684107 06622709 -wire-haired_fox_terrier n 1 1 @ 1 0 02095314 -wire-haired_pointing_griffon n 1 1 @ 1 0 02103181 -wire-haired_terrier n 1 2 @ ~ 1 0 02095412 -wire-puller n 1 1 @ 1 0 10783881 -wire_cloth n 1 1 @ 1 0 04594742 -wire_cutter n 1 1 @ 1 0 04594828 -wire_gage n 1 1 @ 1 0 04594919 -wire_gauge n 1 1 @ 1 0 04594919 -wire_glass n 1 1 @ 1 0 14883098 -wire_grass n 2 2 @ #m 2 0 12133462 12118414 -wire_matrix_printer n 1 1 @ 1 0 04595285 -wire_printer n 1 1 @ 1 0 04595285 -wire_recorder n 1 1 @ 1 0 04595501 -wire_service n 1 2 @ ~ 1 0 08355075 -wire_stripper n 1 1 @ 1 0 04595611 -wire_wool n 1 1 @ 1 0 14803578 -wirehair n 1 2 @ ~ 1 0 02095412 -wirehaired_terrier n 1 2 @ ~ 1 0 02095412 -wireless n 4 5 @ ~ #p %p - 4 0 06277135 06275353 04043733 04041544 -wireless_fidelity n 1 1 @ 1 0 04595028 -wireless_local_area_network n 1 1 @ 1 0 04595028 -wireless_telegraph n 1 1 @ 1 0 04044307 -wireless_telegraphy n 2 1 @ 2 0 06275471 04044307 -wireless_telephone n 2 2 @ ~ 2 0 06276501 04044498 -wireman n 1 1 @ 1 0 10783734 -wirer n 2 2 @ + 2 0 10784015 10783734 -wiretap n 1 2 @ + 1 0 00654400 -wiretapper n 1 2 @ + 1 0 10691318 -wirework n 1 1 @ 1 0 04595762 -wireworm n 1 2 @ #m 1 0 02176916 -wiriness n 1 2 @ + 1 0 05033171 -wiring n 2 3 @ ~ + 2 0 04595855 00714806 -wiring_diagram n 1 1 @ 1 0 04595998 -wisconsin n 2 3 @ #p %p 2 0 09480556 09157163 -wisconsin_river n 1 2 @ #p 1 0 09480556 -wisconsin_weeping_willow n 1 2 @ #m 1 0 12726902 -wisconsinite n 1 1 @ 1 0 09746536 -wisdom n 5 4 ! @ ~ #p 5 4 05926236 04890112 05617107 05159948 06460524 -wisdom_book n 1 2 @ %p 1 0 06461077 -wisdom_literature n 1 2 @ %p 1 0 06461077 -wisdom_of_jesus_the_son_of_sirach n 1 2 @ #p 1 0 06460295 -wisdom_of_solomon n 1 2 @ #p 1 0 06460524 -wisdom_tooth n 1 1 @ 1 0 05307952 -wise n 3 1 @ 3 1 04931733 11393315 11393124 -wise_guy n 1 1 @ 1 1 10784113 -wise_man n 1 2 @ ~ 1 1 10309496 -wise_men n 1 3 @ %m ; 1 0 08486538 -wiseacre n 1 1 @ 1 0 10784113 -wisecrack n 1 2 @ + 1 0 06767777 -wiseness n 2 3 @ ~ + 2 0 05159948 04890112 -wisenheimer n 1 1 @ 1 1 10784113 -wisent n 1 2 @ #m 1 0 02410900 -wish n 4 4 @ ~ + ; 4 2 07486229 07185870 06630627 05791602 -wish-wash n 2 2 @ ; 2 0 07882420 06611998 -wish_list n 1 1 @ 1 0 06496299 -wishbone n 1 2 @ #p 1 0 01895511 -wishful_thinker n 1 1 @ 1 0 10062996 -wishful_thinking n 1 1 @ 1 1 05896618 -wishfulness n 1 2 @ + 1 0 07487177 -wishing n 1 3 @ ~ + 1 1 07486229 -wishing_bone n 1 2 @ #p 1 0 01895511 -wishing_cap n 1 1 @ 1 0 04596116 -wisp n 4 3 @ %m + 4 1 07960928 10784436 08008254 07992222 -wistaria n 1 3 @ ~ #m 1 0 12580457 -wister n 1 1 @ 1 0 11393446 -wisteria n 1 3 @ ~ #m 1 0 12580457 -wisteria_chinensis n 1 1 @ 1 0 12580786 -wisteria_floribunda n 1 1 @ 1 0 12580654 -wisteria_frutescens n 1 1 @ 1 0 12580896 -wisteria_venusta n 1 1 @ 1 0 12581110 -wistfulness n 1 2 @ + 1 0 07487276 -wit n 3 5 @ ~ + ; - 3 2 06776138 05618056 10762342 -witch n 4 4 @ ~ #m + 4 2 10055297 09503282 10780105 10155485 -witch's_brew n 1 1 @ 1 0 08399378 -witch-hazel_family n 1 3 @ #m %m 1 0 12314315 -witch-hunt n 1 2 @ ~ 1 0 00426275 -witch-hunter n 1 1 @ 1 0 10784675 -witch_alder n 1 2 @ #m 1 0 12315999 -witch_broom n 1 1 @ 1 0 12521624 -witch_doctor n 1 2 @ ~ 1 1 10784544 -witch_elm n 1 2 @ #m 1 0 12407079 -witch_grass n 2 1 @ 2 0 12127237 12105578 -witch_hazel n 2 3 @ ~ #m 2 0 12314808 04596224 -witch_hazel_plant n 1 3 @ ~ #m 1 0 12314808 -witchcraft n 1 1 @ 1 0 05979350 -witchery n 1 2 @ + 1 0 05979350 -witches'_brew n 1 1 @ 1 0 08399378 -witches'_broom n 1 1 @ 1 0 12521624 -witches'_broth n 1 1 @ 1 0 08399378 -witches'_butter n 1 2 @ #m 1 0 13061348 -witches'_sabbath n 1 1 @ 1 0 08398580 -witchgrass n 2 1 @ 2 0 12127237 12105578 -witching n 1 1 @ 1 0 01268183 -withdrawal n 9 3 @ ~ + 9 3 07206302 01262713 00053913 07506031 01262868 01202799 00849059 00384933 00228911 -withdrawal_method n 1 1 @ 1 0 00849059 -withdrawal_symptom n 1 1 @ 1 0 14373057 -withdrawer n 6 2 @ + 6 0 10785480 10785333 10785203 10785085 10784922 10784795 -withdrawing_room n 1 1 @ 1 0 03235042 -withdrawnness n 1 3 @ ~ + 1 0 04656996 -withe n 2 2 @ ~ 2 1 04596397 13164403 -withering n 1 2 @ + 1 0 07427060 -withers n 1 2 @ #p 1 0 02462602 -witherspoon n 1 1 @ 1 0 11393546 -withholder n 2 3 ! @ + 2 0 10785695 10785574 -withholding n 3 4 @ ~ + ; 3 3 00361192 13311368 00810794 -withholding_tax n 1 2 @ ~ 1 0 13311368 -withstander n 2 2 @ + 2 0 10785869 09615211 -withy n 1 2 @ ~ 1 0 13164403 -witloof n 2 4 @ #m #p %p 2 0 11953339 07731767 -witness n 5 4 @ ~ + ; 5 4 10786033 10633450 06734702 10786270 10786517 -witness_box n 1 2 @ #p 1 0 04596492 -witness_stand n 1 2 @ #p 1 0 04596492 -witnesser n 1 3 @ ~ + 1 0 10786033 -witold_gombrowicz n 1 1 @ 1 0 11006128 -wits n 1 1 @ 1 0 05622196 -wittgenstein n 1 1 @ 1 0 11393828 -witticism n 1 3 @ ~ - 1 0 06776138 -wittiness n 1 4 @ ~ + - 1 0 06776138 -wittol n 1 1 @ 1 0 10786755 -witwatersrand n 1 2 @ #p 1 0 09001881 -wivern n 1 1 @ 1 0 09503486 -wiz n 1 2 @ ~ 1 0 09762509 -wizard n 2 3 @ ~ + 2 1 09762509 10625860 -wizardry n 1 1 @ 1 0 05625373 -wlan n 1 1 @ 1 0 04595028 -wmd n 1 3 @ ~ ; 1 0 04565963 -wmo n 1 1 @ 1 0 08302919 -wnw n 1 1 @ 1 0 13834643 -woad n 2 3 @ ~ #m 2 0 15002138 11890022 -woadwaxen n 1 2 @ #m 1 0 12530818 -wobble n 1 3 @ ~ + 1 0 07364700 -wobbler n 1 2 @ + 1 0 04596630 -wobbly n 1 1 @ 1 0 10786892 -wodan n 1 1 @ 1 0 09586326 -wodehouse n 1 1 @ 1 0 11394042 -woden n 1 1 @ 1 0 09586326 -woe n 2 1 @ 2 1 14448910 07533877 -woefulness n 1 2 @ + 1 0 07533877 -wog n 1 2 @ ; 1 0 10786992 -wok n 1 1 @ 1 0 04596742 -wold n 1 1 @ 1 0 08645318 -wolf n 5 3 @ ~ #m 5 1 02114100 11394398 11394214 10787197 09845589 -wolf's_bane n 1 1 @ 1 0 11723452 -wolf's_milk n 1 2 @ #m 1 0 12919847 -wolf_bean n 1 1 @ 1 0 12546420 -wolf_boy n 1 1 @ 1 0 10787364 -wolf_cub n 1 1 @ 1 0 01322508 -wolf_fish n 1 2 @ #m 1 0 02616851 -wolf_pack n 2 1 @ 2 0 08477511 07995074 -wolf_pup n 1 1 @ 1 0 01322508 -wolf_spider n 1 3 @ ~ #m 1 0 01775062 -wolfbane n 1 1 @ 1 0 11723452 -wolfe n 2 1 @ 2 0 11394657 11394491 -wolff n 1 1 @ 1 0 11394848 -wolffia n 1 3 @ #m %m 1 0 11795774 -wolffia_columbiana n 1 1 @ 1 0 11796188 -wolffiella n 1 3 @ #m %m 1 0 11796318 -wolffiella_gladiata n 1 2 @ #m 1 0 11796573 -wolffish n 2 2 @ #m 2 0 02616851 02544274 -wolfgang_amadeus_mozart n 1 1 @ 1 0 11194355 -wolfgang_pauli n 1 1 @ 1 0 11226713 -wolfhound n 1 2 @ ~ 1 0 02090475 -wolfman n 1 1 @ 1 0 09503121 -wolfram n 1 2 @ #s 1 0 14659512 -wolfram_steel n 1 1 @ 1 0 15081828 -wolframite n 1 2 @ %s 1 0 15103226 -wolfsbane n 1 1 @ 1 0 11723452 -wollaston n 1 1 @ 1 0 11394954 -wollaston_prism n 1 1 @ 1 0 04098260 -wollastonite n 1 1 @ 1 0 15103485 -wollemi_pine n 1 2 @ #m 1 0 11645590 -wollstonecraft n 1 1 @ 1 0 11395199 -wolof n 1 1 @ 1 0 06996894 -wolstonian_glaciation n 1 1 @ 1 0 13487952 -wolverine n 3 2 @ #m 3 0 09743690 02449350 02449183 -wolverine_state n 1 3 @ #p %p 1 0 09099526 -woman n 4 7 ! @ ~ #m %p + ; 4 2 10787470 10788852 09911226 08477634 -woman's_body n 1 3 @ #p %p 1 0 05220126 -woman's_clothing n 1 2 @ ~ 1 0 04596852 -woman's_doctor n 1 2 @ ~ 1 0 10154013 -woman's_hat n 1 2 @ ~ 1 0 03766322 -woman-worship n 1 1 @ 1 0 01045306 -woman_chaser n 1 1 @ 1 0 10787197 -woman_hater n 1 1 @ 1 0 10322648 -woman_of_the_house n 1 1 @ 1 0 10189776 -woman_of_the_street n 1 2 @ ~ 1 0 10485440 -womanhood n 3 3 @ #m + 3 0 14425715 08477634 00606006 -womaniser n 1 3 @ ~ + 1 0 10789118 -womanishness n 1 4 @ ~ + ; 1 0 04668139 -womanizer n 1 3 @ ~ + 1 0 10789118 -womankind n 1 2 @ %m 1 0 08477912 -womanlike n 1 1 @ 1 0 04667660 -womanliness n 1 2 @ + 1 0 04667660 -womb n 1 4 @ ~ #p %p 1 1 05519085 -wombat n 1 2 @ #m 1 0 01883070 -women's_army_corps n 1 1 @ 1 0 08212740 -women's_lib n 1 3 @ %m + 1 0 00800421 -women's_liberation_movement n 1 3 @ %m + 1 0 00800421 -women's_liberationist n 1 4 @ ~ #m + 1 0 10084635 -women's_rightist n 1 3 @ ~ #m 1 0 10084635 -won n 2 2 @ %p 2 0 13709360 13708992 -won-lost_record n 1 2 @ ; 1 1 06507592 -won_ton n 2 1 @ 2 0 07702057 07588193 -wonder n 3 3 @ ~ + 3 3 07509996 07289588 05682570 -wonder_bean n 1 2 @ #m 1 0 12511239 -wonder_boy n 1 1 @ 1 0 10789415 -wonder_child n 1 1 @ 1 0 09918867 -wonder_flower n 1 1 @ 1 0 12460308 -wonder_woman n 1 1 @ 1 0 10789820 -wonderberry n 1 1 @ 1 0 12896615 -wonderer n 2 2 @ + 2 0 10789709 10789534 -wonderfulness n 1 2 @ + 1 1 04729127 -wonderland n 2 1 @ 2 0 09480699 05632175 -wonderment n 1 3 @ ~ + 1 0 07509996 -wonk n 1 1 @ 1 0 10684630 -wont n 1 1 @ 1 0 05669034 -wonton n 2 1 @ 2 0 07702057 07588193 -wonton_soup n 1 1 @ 1 0 07588193 -wood n 8 7 @ ~ #s %m %s %p + 8 2 15098161 08438533 11395895 11395773 11395609 11395466 04598582 04597066 -wood's_alloy n 1 1 @ 1 0 15103911 -wood's_metal n 1 1 @ 1 0 15103911 -wood-creeper n 1 2 @ #m 1 0 01554448 -wood-fern n 1 3 @ ~ #m 1 0 13193642 -wood-frog n 1 2 @ #m 1 0 01641206 -wood-rat n 1 3 @ ~ #m 1 0 02338901 -wood-sorrel_family n 1 3 @ #m %m 1 0 12702443 -wood_alcohol n 1 2 @ %s 1 0 14687818 -wood_anemone n 2 1 @ 2 0 11725973 11725821 -wood_ant n 1 2 @ #m 1 0 02221414 -wood_aster n 1 2 @ ~ 1 0 11932745 -wood_avens n 1 1 @ 1 0 12632526 -wood_block n 1 1 @ 1 0 04597536 -wood_chisel n 1 1 @ 1 0 04597400 -wood_coal n 2 2 @ ~ 2 0 14815263 14685296 -wood_cudweed n 1 1 @ 1 0 11972959 -wood_drake n 1 1 @ 1 0 01852329 -wood_duck n 1 3 @ ~ #m 1 0 01852142 -wood_engraving n 2 1 @ 2 0 04597706 04597536 -wood_fern n 1 3 @ ~ #m 1 0 13193642 -wood_file n 1 1 @ 1 0 04054670 -wood_frog n 1 2 @ #m 1 0 01641206 -wood_garlic n 1 1 @ 1 0 12435649 -wood_grain n 1 1 @ 1 0 04950952 -wood_hen n 1 2 @ #m 1 0 02015357 -wood_hoopoe n 1 2 @ #m 1 0 01830479 -wood_horsetail n 1 1 @ 1 0 13220525 -wood_hyacinth n 1 2 @ #m 1 0 12459275 -wood_ibis n 2 2 @ #m 2 0 02006063 02004855 -wood_laurel n 2 1 @ 2 0 12346986 12237641 -wood_lily n 2 3 @ ~ #m 2 0 12468243 12428587 -wood_meadowgrass n 1 2 @ #m 1 0 12132092 -wood_mint n 1 3 @ ~ #m 1 0 12842302 -wood_mouse n 1 2 @ ~ 1 0 02336641 -wood_nettle n 1 2 @ #m 1 0 12394118 -wood_nymph n 1 2 @ ~ 1 0 09551040 -wood_pewee n 1 3 @ ~ #m 1 0 01549430 -wood_pigeon n 1 2 @ #m 1 0 01813088 -wood_poppy n 1 2 @ #m 1 0 11908846 -wood_pulp n 1 1 @ 1 0 15103634 -wood_pussy n 1 2 @ ~ 1 0 02445715 -wood_rabbit n 1 4 @ ~ #m %p 1 0 02325366 -wood_rat n 1 3 @ ~ #m 1 0 02338901 -wood_sage n 2 1 @ 2 0 12870225 12869668 -wood_shavings n 1 1 @ 1 0 14976634 -wood_sorrel n 1 3 @ ~ #m 1 0 12702948 -wood_spirit n 1 2 @ %s 1 0 14687818 -wood_spurge n 1 2 @ #m 1 0 12920955 -wood_stork n 2 2 @ #m 2 0 02006063 02004855 -wood_strawberry n 1 2 @ #m 1 0 12630641 -wood_sugar n 1 1 @ 1 0 15103780 -wood_swallow n 1 2 @ #m 1 0 01597022 -wood_tar n 1 2 @ ~ 1 0 15104088 -wood_thrush n 1 1 @ 1 0 01559804 -wood_tick n 1 2 @ #m 1 0 01779148 -wood_vinegar n 1 1 @ 1 0 14863326 -wood_violet n 2 1 @ 2 0 12390314 12389501 -wood_vise n 1 1 @ 1 0 04598416 -wood_warbler n 2 3 @ ~ #m 2 0 01567133 01565345 -wood_widgeon n 1 3 @ ~ #m 1 0 01852142 -woodbine n 2 2 @ #m 2 0 13148384 12676534 -woodborer n 1 1 @ 1 0 01923025 -woodbury n 1 1 @ 1 0 11396000 -woodcarver n 1 1 @ 1 1 10789963 -woodcarving n 1 1 @ 1 0 04597309 -woodchuck n 1 1 @ 1 0 02361587 -woodcock n 1 2 @ ~ 1 0 02030996 -woodcock_snipe n 2 2 @ #m 2 0 02032480 02031585 -woodcraft n 2 1 @ 2 0 05758548 05644423 -woodcreeper n 1 2 @ #m 1 0 01554448 -woodcut n 2 1 @ 2 0 04597706 04597536 -woodcutter n 1 2 @ ~ 1 0 10790077 -wooden_horse n 1 2 @ ; 1 0 04486718 -wooden_leg n 1 1 @ 1 1 03906106 -wooden_shoe n 1 1 @ 1 0 04122578 -wooden_spoon n 2 2 @ ; 2 0 04598010 04597913 -woodenness n 1 2 @ + 1 0 04815916 -woodenware n 1 2 @ ~ 1 0 04597804 -woodfern n 1 3 @ ~ #m 1 0 13193642 -woodgrain n 1 1 @ 1 1 04950952 -woodgraining n 1 1 @ 1 1 04951071 -woodhewer n 1 2 @ #m 1 0 01554448 -woodhull n 1 1 @ 1 0 11396128 -woodiness n 2 2 @ + 2 0 05216102 04950952 -woodland n 1 2 @ ~ 1 0 09284015 -woodland_caribou n 1 1 @ 1 0 02434190 -woodland_oxeye n 1 1 @ 1 0 11942659 -woodland_star n 1 2 @ #m 1 0 12799776 -woodland_white_violet n 1 1 @ 1 0 12388444 -woodlet n 1 2 @ ~ 1 0 03463832 -woodlouse n 1 2 @ ~ 1 0 01991028 -woodman n 2 2 @ ~ 2 0 10790384 10790192 -woodpecker n 1 3 @ ~ #m 1 1 01838598 -woodpile n 1 1 @ 1 0 07963613 -woodrow_charles_herman n 1 1 @ 1 0 11044939 -woodrow_wilson n 1 1 @ 1 0 11390855 -woodrow_wilson_guthrie n 1 1 @ 1 0 11020721 -woodruff n 2 5 @ ~ #m #s %p 2 0 12665271 12661538 -woods n 1 4 @ ~ %m + 1 1 08438533 -woodscrew n 1 2 @ ~ 1 0 04598136 -woodshed n 1 1 @ 1 1 04598318 -woodsia n 1 3 @ ~ #m 1 0 13201969 -woodsia_alpina n 1 1 @ 1 0 13202355 -woodsia_glabella n 1 1 @ 1 0 13202602 -woodsia_ilvensis n 1 1 @ 1 0 13202125 -woodsiness n 1 2 @ + 1 0 05216102 -woodsman n 2 2 @ ~ 2 0 10790384 10790192 -woodward n 2 1 @ 2 0 11396535 11396338 -woodwardia n 1 3 @ #m %m 1 0 13186200 -woodwardia_virginica n 1 1 @ 1 0 13186546 -woodwaxen n 1 2 @ #m 1 0 12530818 -woodwind n 1 3 @ ~ %p 1 0 04598582 -woodwind_family n 1 2 @ ; 1 0 07998450 -woodwind_instrument n 1 3 @ ~ %p 1 0 04598582 -woodwork n 2 3 @ ~ - 2 1 04598792 00607775 -woodworker n 1 2 @ ~ 1 0 10790192 -woodworking n 1 3 @ ~ - 1 0 00607775 -woodworking_plane n 1 2 @ ~ 1 0 03954731 -woodworking_vise n 1 1 @ 1 0 04598416 -woodworm n 1 1 @ 1 0 01922948 -woody_allen n 1 1 @ 1 0 10814953 -woody_guthrie n 1 1 @ 1 0 11020721 -woody_herman n 1 1 @ 1 0 11044939 -woody_nightshade n 1 2 @ #m 1 0 12894607 -woody_pear n 1 2 @ #m 1 0 12224140 -woody_plant n 1 4 @ ~ %s %p 1 0 13103136 -wooer n 1 3 @ ~ + 1 0 10674130 -woof n 1 3 @ #s #p 1 0 04598965 -woofer n 1 1 @ 1 0 04599124 -wooing n 1 3 @ ~ + 1 0 07188685 -wool n 3 4 @ ~ #s + 3 1 04599235 15104217 01899593 -wool_fat n 1 2 @ #s 1 0 14816181 -wool_grass n 2 2 @ #m 2 0 12153224 12121187 -wool_grease n 1 2 @ #s 1 0 14816181 -wool_oil n 1 1 @ 1 0 15105638 -wool_stapler n 2 1 @ 2 0 10790596 10790479 -woolen n 1 3 @ #s + 1 1 04599235 -woolf n 1 2 @ #m 1 0 11396667 -woolgatherer n 1 3 @ ~ + 1 0 09993901 -woolgathering n 1 2 @ + 1 0 05769726 -woollcott n 1 1 @ 1 0 11396943 -woollen n 1 3 @ #s + 1 0 04599235 -woolley n 1 1 @ 1 0 11397094 -woolly_adelgid n 1 1 @ 1 0 02255391 -woolly_alder_aphid n 1 2 @ #m 1 0 02254246 -woolly_aphid n 1 2 @ ~ 1 0 02253715 -woolly_apple_aphid n 1 2 @ #m 1 0 02253913 -woolly_bear n 1 2 @ ~ 1 0 02310717 -woolly_bear_caterpillar n 1 2 @ ~ 1 0 02310717 -woolly_bear_moth n 1 2 @ #m 1 0 02310941 -woolly_daisy n 1 2 @ #m 1 0 11924014 -woolly_indris n 1 2 @ #m 1 0 02500596 -woolly_mammoth n 1 1 @ 1 0 02505063 -woolly_manzanita n 1 1 @ 1 0 12232503 -woolly_monkey n 1 2 @ #m 1 0 02494383 -woolly_mullein n 1 1 @ 1 0 12889713 -woolly_plant_louse n 1 2 @ ~ 1 0 02253715 -woolly_rhinoceros n 1 2 @ #m 1 0 02392555 -woolly_sunflower n 1 3 @ ~ #m 1 0 11967744 -woolly_thistle n 2 3 @ ~ #m 2 0 11998888 11954484 -woolsorter n 1 1 @ 1 0 10790479 -woolsorter's_disease n 1 1 @ 1 0 14072934 -woolsorter's_pneumonia n 1 1 @ 1 0 14072934 -woolworth n 1 1 @ 1 0 11397271 -wooly_blue_curls n 1 2 @ #m 1 0 12871484 -wooly_lip_fern n 1 1 @ 1 0 13209270 -wop n 1 2 @ ; 1 0 09716439 -worcester n 3 2 @ #p 3 0 11397488 09097871 08881017 -worcester_sauce n 1 1 @ 1 0 07840520 -worcestershire n 1 1 @ 1 0 07840520 -worcestershire_sauce n 1 1 @ 1 0 07840520 -word n 10 6 @ ~ #p %p + - 10 6 06286395 06738162 06642138 07169242 07140659 07227301 13627327 09537144 06674188 06431740 -word-painter n 1 1 @ 1 0 10790813 -word-painting n 1 2 @ ~ 1 0 07201804 -word-splitting n 1 1 @ 1 0 05749210 -word-worship n 1 1 @ 1 0 01044983 -word_accent n 1 1 @ 1 0 07086088 -word_blindness n 1 1 @ 1 0 14099050 -word_class n 1 2 @ ~ 1 1 06317464 -word_deafness n 1 1 @ 1 0 14097893 -word_division n 1 2 @ #p 1 0 00390735 -word_finder n 1 1 @ 1 0 06421154 -word_form n 1 3 @ ~ ; 1 0 06290637 -word_game n 1 2 @ ~ 1 0 00501870 -word_meaning n 1 1 @ 1 0 06602801 -word_of_advice n 1 2 @ ~ 1 1 06672297 -word_of_farewell n 1 2 @ ~ 1 1 06629392 -word_of_god n 3 4 @ ~ %p - 3 2 07323821 06431740 06455682 -word_of_honor n 1 1 @ 1 0 07227301 -word_of_mouth n 1 1 @ 1 0 07223635 -word_order n 1 2 @ #p 1 0 06389947 -word_picture n 1 2 @ ~ 1 0 07201804 -word_play n 1 1 @ 1 0 00513952 -word_processing n 1 2 @ ; 1 0 13574928 -word_processing_system n 1 1 @ 1 0 06572654 -word_processor n 1 1 @ 1 0 06572654 -word_salad n 1 1 @ 1 0 06609176 -word_sense n 1 1 @ 1 0 06602801 -word_square n 1 1 @ 1 0 06786209 -word_stress n 1 1 @ 1 0 07086088 -word_string n 1 2 @ ~ 1 0 07013736 -word_structure n 1 2 @ ~ 1 0 06177729 -wordbook n 1 2 @ ~ 1 0 06418693 -wordfinder n 1 1 @ 1 0 06421154 -wordiness n 1 4 @ ~ = + 1 0 07090108 -wording n 1 3 @ ~ + 1 1 07081739 -wordmonger n 1 1 @ 1 0 10790671 -wordnet n 2 3 @ ; - 2 0 06639428 06639204 -wordplay n 1 1 @ 1 0 06781581 -words n 5 3 @ ~ #p 5 3 07109730 07051975 06283764 07184149 07010821 -words_per_minute n 1 1 @ 1 0 15285910 -wordsmith n 1 1 @ 1 0 10790918 -wordsworth n 1 3 @ #m + 1 1 11397657 -work n 7 5 @ ~ %p + ; 7 6 00575741 04599396 00584367 05755883 11453420 04602044 03841417 -work-board n 1 1 @ 1 0 04600627 -work-clothes n 1 2 @ ~ 1 0 04600912 -work-clothing n 1 2 @ ~ 1 0 04600912 -work-in n 1 1 @ 1 0 01179004 -work-shirt n 1 1 @ 1 0 04602956 -work-study_program n 1 1 @ 1 1 00891071 -work_animal n 1 2 @ ~ 1 0 01316949 -work_bench n 1 2 @ ~ 1 0 04600486 -work_camp n 1 1 @ 1 1 04600764 -work_day n 1 1 @ 1 0 15136923 -work_flow n 1 1 @ 1 0 00250143 -work_force n 1 4 @ ~ %m %p 1 1 08212347 -work_in_progress n 1 1 @ 1 1 04601587 -work_load n 1 2 @ ~ 1 0 00581241 -work_of_art n 1 2 @ ~ 1 1 04601690 -work_papers n 1 1 @ 1 1 06531908 -work_party n 1 4 @ ~ #m %m 1 0 08242799 -work_permit n 1 1 @ 1 0 06531908 -work_shift n 1 3 @ ~ #p 1 0 15291801 -work_shoe n 1 1 @ 1 0 02904927 -work_song n 1 2 @ ~ 1 0 07053993 -work_stoppage n 1 2 @ ~ 1 0 01243674 -work_study n 1 1 @ 1 0 00645365 -work_surface n 1 2 @ ~ 1 0 04603558 -work_table n 1 2 @ ~ 1 1 04603729 -work_time n 1 3 ! @ ~ 1 0 15118228 -work_to_rule n 1 1 @ 1 0 01242539 -work_unit n 1 2 @ ~ 1 0 13609507 -workaholic n 1 2 @ ; 1 0 10791002 -workaholism n 1 1 @ 1 0 04626194 -workbag n 1 2 @ ~ 1 0 04600312 -workbasket n 1 2 @ ~ 1 0 04600312 -workbench n 1 2 @ ~ 1 1 04600486 -workboard n 1 1 @ 1 1 04600627 -workbook n 1 1 @ 1 0 06415791 -workbox n 1 2 @ ~ 1 0 04600312 -workday n 2 3 ! @ %p 2 0 15136923 15136723 -worker n 4 5 ! @ ~ #m + 4 3 09632518 10481711 02207449 09767197 -worker_bee n 1 2 @ #m 1 1 02207805 -workfellow n 1 1 @ 1 0 09936215 -workflow n 1 1 @ 1 0 00250143 -workforce n 1 4 @ ~ %m %p 1 0 08212347 -workhorse n 2 2 @ ~ 2 0 04601291 02386310 -workhouse n 2 2 @ ; 2 0 04601159 04601041 -working n 1 1 @ 1 0 04601473 -working_agreement n 1 1 @ 1 0 06771424 -working_capital n 1 3 @ ~ %m 1 1 13354420 -working_class n 1 3 @ ~ %m 1 0 08180639 -working_day n 2 2 @ %p 2 0 15136923 15136723 -working_dog n 1 2 @ ~ 1 0 02103406 -working_girl n 2 2 @ ~ 2 1 10791115 10485440 -working_group n 1 2 @ ~ 1 0 08408900 -working_man n 1 2 @ ~ 1 0 10791221 -working_memory n 1 1 @ 1 0 05760751 -working_out n 1 1 @ 1 0 00250710 -working_papers n 2 1 @ 2 0 06675799 06531908 -working_party n 1 2 @ ~ 1 0 08408900 -working_person n 1 2 @ ~ 1 0 10791221 -working_principle n 1 1 @ 1 0 05848912 -working_rule n 1 1 @ 1 0 05848912 -workingman n 1 2 @ ~ 1 0 10791221 -workings n 2 2 @ ; 2 1 04602840 04601473 -workload n 1 2 @ ~ 1 0 00581241 -workman n 1 3 @ ~ + 1 1 10791221 -workmanship n 1 3 @ ~ + 1 0 05638063 -workmate n 1 1 @ 1 0 10791820 -workmen's_compensation n 1 1 @ 1 0 13283033 -workout n 1 3 @ ~ + 1 1 00624738 -workout_suit n 1 2 @ %p 1 0 04370774 -workpiece n 1 1 @ 1 0 04601938 -workplace n 1 3 @ ~ %p 1 0 04602044 -workroom n 1 1 @ 1 0 04602762 -works n 4 4 @ ~ ; - 4 3 03956922 14461679 00577357 04602840 -works_council n 1 2 @ ; 1 0 08311933 -works_program n 1 1 @ 1 1 05910810 -worksheet n 2 1 @ 2 1 06259736 06536737 -workshop n 2 2 @ ~ 2 2 04603081 00892413 -workspace n 1 1 @ 1 0 08684191 -workstation n 1 1 @ 1 0 04603399 -worktable n 1 2 @ ~ 1 1 04603729 -workwear n 1 2 @ ~ 1 0 04603872 -workweek n 1 2 @ #p 1 1 15135996 -world n 8 6 @ ~ #m %m %p + 8 7 09466280 07965937 05809878 09270894 08179689 09480809 05670972 02472987 -world-beater n 1 1 @ 1 0 10235024 -world-weariness n 1 2 @ + 1 0 07533735 -world_affairs n 1 1 @ 1 1 01107549 -world_bank n 1 1 @ 1 0 08300783 -world_council n 1 2 @ ~ 1 1 08322625 -world_council_of_churches n 1 1 @ 1 0 08480303 -world_court n 1 2 @ #m 1 1 08299307 -world_cup n 1 1 @ 1 0 07464568 -world_health_organization n 1 1 @ 1 0 08302724 -world_meteorological_organization n 1 1 @ 1 0 08302919 -world_organisation n 1 2 @ ~ 1 0 08294696 -world_organization n 1 2 @ ~ 1 1 08294696 -world_power n 1 2 @ ~ 1 0 08177592 -world_premiere n 1 2 @ ; 1 1 06894371 -world_record n 1 1 @ 1 1 00063559 -world_series n 1 1 @ 1 1 07465781 -world_tamil_association n 1 2 @ ; 1 0 08032023 -world_tamil_movement n 1 2 @ ; 1 0 08032023 -world_trade_center n 1 3 @ #p ; 1 0 04604009 -world_trade_organization n 1 1 @ 1 0 08486971 -world_traveler n 1 1 @ 1 0 10132775 -world_view n 1 2 @ ~ 1 0 06211389 -world_war n 1 2 @ ~ 1 1 00996817 -world_war_1 n 1 2 @ %p 1 0 01311520 -world_war_2 n 1 3 @ %p - 1 0 01312096 -world_war_i n 1 2 @ %p 1 1 01311520 -world_war_ii n 1 3 @ %p - 1 1 01312096 -world_wide_web n 1 1 @ 1 0 04604276 -worldliness n 2 3 ! @ + 2 0 04880273 04621524 -worldling n 2 1 @ 2 0 10791890 10699262 -worldly_belongings n 1 1 @ 1 1 13244881 -worldly_concern n 1 1 @ 1 0 05670972 -worldly_good n 1 1 @ 1 0 04600131 -worldly_goods n 1 1 @ 1 0 13244881 -worldly_possession n 1 1 @ 1 0 04600131 -worldly_possessions n 1 1 @ 1 0 13244881 -worm n 4 4 @ ~ #p + 4 2 01922303 10792028 06586098 04604513 -worm_family n 1 3 @ ~ #m 1 0 01921559 -worm_fence n 1 1 @ 1 0 04604644 -worm_fish n 1 2 @ #m 1 0 02620956 -worm_gear n 1 2 @ %p 1 0 04604806 -worm_genus n 1 3 @ ~ #m 1 0 01921887 -worm_lizard n 1 2 @ #m 1 0 01683201 -worm_salamander n 1 2 @ #m 1 0 01637615 -worm_snake n 2 3 @ ~ #m 2 0 01740551 01728572 -worm_wheel n 1 2 @ #p 1 0 04605057 -wormcast n 2 1 @ 2 0 14855512 09480959 -wormhole n 1 1 @ 1 0 09481036 -wormian_bone n 1 1 @ 1 0 05610919 -wormseed n 1 1 @ 1 0 11828804 -wormseed_mustard n 1 2 @ #m 1 0 11888061 -wormwood n 1 3 @ ~ #m 1 0 11928549 -wormwood_oil n 1 1 @ 1 0 14893881 -wormwood_sage n 1 2 @ #m 1 0 11930571 -worn_spot n 1 1 @ 1 0 04683002 -worrier n 1 2 @ + 1 0 10792178 -worriment n 1 3 @ ~ + 1 1 04711435 -worry n 2 3 @ ~ + 2 2 05832264 07524242 -worrying n 2 2 @ + 2 0 00425278 00347853 -worrywart n 1 1 @ 1 0 10792178 -worse n 1 2 @ + 1 1 05144453 -worsening n 2 3 @ ~ + 2 0 13464204 00266253 -worship n 2 3 @ ~ + 2 1 01028655 07501420 -worship_of_heavenly_bodies n 1 1 @ 1 0 01045807 -worship_of_man n 1 1 @ 1 0 01045202 -worshiper n 2 4 @ ~ #m + 2 0 10792335 09847727 -worshipper n 2 4 @ ~ #m + 2 1 09847727 10792335 -worst n 3 3 ! @ + 3 1 07295955 04852534 00127672 -worsted n 2 1 @ 2 1 04605163 04605321 -worsted_yarn n 1 1 @ 1 0 04605321 -wort n 2 1 @ 2 0 13085747 07889193 -worth n 3 4 ! @ ~ + 3 2 13764342 05138208 11397885 -worthiness n 1 5 ! @ ~ = + 1 0 04806804 -worthlessness n 2 4 ! @ ~ + 2 1 05139561 05150986 -worthwhileness n 1 2 @ + 1 0 05139436 -worthy n 1 2 @ + 1 0 10792506 -wotan n 1 1 @ 1 0 09585889 -wouk n 1 1 @ 1 0 11398094 -wound n 4 4 @ ~ + ; 4 2 14298815 07340249 07497122 00403783 -wound_tumor_virus n 1 1 @ 1 1 01371928 -wounded n 1 1 @ 1 1 07950786 -wounding n 1 2 @ + 1 0 00403783 -wove_paper n 1 1 @ 1 0 14934655 -wow n 1 1 @ 1 0 06778925 -wpm n 1 1 @ 1 0 15285910 -wrack n 3 2 @ + 3 1 01397778 07335581 01398064 -wraith n 1 1 @ 1 0 05898171 -wrangell-st._elias_national_park n 1 2 @ #p 1 0 08610141 -wrangle n 2 3 @ ~ + 2 1 07184149 07150138 -wrangler n 2 2 @ + 2 0 10792746 10186216 -wrangling n 1 2 @ + 1 0 07150138 -wrap n 3 4 @ ~ %p + 3 1 04605446 07698782 04605726 -wraparound n 1 1 @ 1 0 04605572 -wrapper n 3 3 @ ~ + 3 1 03817647 04605726 04605446 -wrapping n 2 3 @ ~ + 2 0 04605726 04369025 -wrapping_paper n 1 2 @ ~ 1 0 15105122 -wrasse n 1 2 @ ~ 1 0 02607862 -wrath n 2 1 @ 2 1 07516905 00758972 -wreath n 1 2 @ ~ 1 1 04606014 -wreck n 4 3 @ ~ + 4 1 14423870 07353075 07301950 04606251 -wreckage n 1 3 @ ~ + 1 1 04606358 -wrecker n 3 3 @ ~ + 3 0 10792856 10544748 04461696 -wreckfish n 1 2 @ #m 1 0 02568447 -wrecking n 2 2 @ + 2 0 07335097 00217773 -wrecking_bar n 1 2 @ ~ 1 0 03138344 -wren n 2 3 @ ~ #m 2 0 11398195 01584225 -wren-tit n 1 2 @ #m 1 0 01593282 -wren_warbler n 1 2 @ #m 1 0 01565930 -wrench n 3 4 @ ~ %p + 3 0 14299070 07351909 04606574 -wrester n 1 2 @ + 1 0 10793019 -wrestle n 1 2 @ + 1 0 00622266 -wrestler n 1 3 @ ~ + 1 1 10793168 -wrestling n 2 5 @ ~ %p + - 2 2 00622266 00447540 -wrestling_hold n 1 3 @ ~ #p 1 0 00812977 -wrestling_mat n 1 1 @ 1 0 04607035 -wrestling_match n 1 2 @ %p 1 0 07471246 -wrestling_ring n 1 1 @ 1 0 04607141 -wretch n 2 1 @ 2 2 10793492 10453265 -wretchedness n 3 3 @ ~ + 3 1 14448333 14447303 04731309 -wrick n 1 3 @ + ; 1 0 14361182 -wriggle n 1 2 @ + 1 0 00349705 -wriggler n 2 3 @ #m + 2 0 10781236 02200509 -wright n 7 2 @ ~ 7 0 11399123 11398955 11398783 11398611 11398489 11398344 10793570 -wring n 1 2 @ + 1 0 07351031 -wringer n 1 2 @ + 1 0 04607242 -wrinkle n 3 4 @ ~ #p + 3 1 13905792 06251424 06251295 -wrist n 1 3 @ #p %p 1 1 05584928 -wrist_band n 1 1 @ 1 0 04607532 -wrist_bone n 1 3 @ ~ #p 1 0 05271814 -wrist_joint n 1 3 @ #p %p 1 0 05584928 -wrist_pad n 1 1 @ 1 0 04607640 -wrist_pin n 1 1 @ 1 0 04607759 -wrist_watch n 1 1 @ 1 1 04607869 -wristband n 2 2 @ #p 2 0 04607398 04556204 -wristlet n 1 1 @ 1 0 04607532 -wristwatch n 1 1 @ 1 0 04607869 -writ n 1 3 @ ~ ; 1 1 06552984 -writ_of_certiorari n 1 2 @ ; 1 0 06553631 -writ_of_detinue n 1 2 @ ; 1 0 06555695 -writ_of_election n 1 2 @ ; 1 0 06555847 -writ_of_error n 1 2 @ ; 1 0 06555971 -writ_of_execution n 1 2 @ ; 1 0 06553846 -writ_of_habeas_corpus n 1 2 @ ; 1 0 06554373 -writ_of_mandamus n 1 2 @ ; 1 0 06554675 -writ_of_prohibition n 1 2 @ ; 1 0 06556150 -writ_of_right n 1 2 @ ; 1 0 06556343 -write-down n 1 4 @ ~ + ; 1 0 13328853 -write-in n 2 2 @ + 2 0 10793799 00209789 -write-in_candidate n 1 1 @ 1 0 10793799 -write-off n 2 4 @ ~ + ; 2 0 13328853 00232604 -write_up n 1 3 @ ~ + 1 0 06681551 -writer n 2 3 @ ~ + 2 2 10794014 10801291 -writer's_block n 1 1 @ 1 0 05645465 -writer's_cramp n 1 1 @ 1 0 14360915 -writer's_name n 1 2 @ #p 1 0 06338744 -writing n 5 6 @ ~ %p + ; - 5 5 00929718 06362953 06363778 06359877 00614224 -writing_arm n 1 2 @ #p 1 0 04607982 -writing_assignment n 1 1 @ 1 0 00796197 -writing_board n 1 2 @ ~ 1 0 04608127 -writing_desk n 2 1 @ 2 1 04608435 04608329 -writing_implement n 1 2 @ ~ 1 0 04608567 -writing_ink n 1 1 @ 1 0 14918162 -writing_pad n 1 1 @ 1 0 14951110 -writing_paper n 1 2 @ ~ 1 1 15105268 -writing_style n 1 2 @ ~ 1 0 07092158 -writing_system n 1 4 @ ~ %m %p 1 0 06351202 -writing_table n 1 1 @ 1 0 04164868 -writings n 1 3 @ #p %p 1 1 06453324 -written_account n 1 2 @ ~ 1 0 06502378 -written_agreement n 1 3 @ ~ ; 1 0 06771653 -written_assignment n 1 1 @ 1 0 00796197 -written_communication n 1 3 @ ~ %p 1 0 06349220 -written_document n 1 3 @ ~ %p 1 0 06470073 -written_language n 1 3 @ ~ %p 1 1 06349220 -written_material n 1 3 @ ~ %p 1 0 06362953 -written_matter n 1 2 @ ~ 1 0 06390512 -written_record n 1 2 @ ~ 1 0 06502378 -written_report n 1 2 @ ~ 1 0 07218470 -written_symbol n 1 2 @ ~ 1 0 06817623 -written_text n 1 2 @ ~ 1 0 06349597 -written_word n 1 2 @ ~ 1 0 06360314 -wroclaw n 1 2 @ #p 1 0 08984332 -wrong n 2 3 ! @ + 2 2 04854604 00744131 -wrong-site_surgery n 1 1 @ 1 0 00673109 -wrong_'un n 1 1 @ 1 0 00477097 -wrongdoer n 1 2 @ ~ 1 0 09633969 -wrongdoing n 2 2 @ ~ 2 1 04853765 00732746 -wrongful_conduct n 1 2 @ ~ 1 0 00732746 -wrongful_death n 1 1 @ 1 0 07333971 -wrongfulness n 1 3 ! @ + 1 0 04854604 -wrongness n 3 4 ! @ ~ + 3 0 04901996 04851962 04802403 -wrought_iron n 1 3 @ ~ %s 1 1 14802262 -wry_face n 1 1 @ 1 0 06877742 -wrymouth n 1 2 @ #m 1 0 02616397 -wryneck n 2 2 @ #m 2 0 14557719 01841679 -wsw n 1 1 @ 1 0 13834162 -wtc n 1 3 @ #p ; 1 0 04604009 -wto n 1 1 @ 1 0 08486971 -wtv n 1 1 @ 1 0 01371928 -wu n 1 1 @ 1 0 06930298 -wu_dialect n 1 1 @ 1 0 06930298 -wuerzburg n 1 2 @ #p 1 0 08775179 -wuhan n 1 2 @ #p 1 0 08729283 -wulfenite n 1 1 @ 1 0 15105733 -wulfila n 1 1 @ 1 0 11355669 -wurlitzer n 1 1 @ 1 0 11399274 -wurtzite n 1 1 @ 1 0 15105849 -wurzburg n 1 2 @ #p 1 0 08775179 -wuss n 1 2 @ ~ 1 0 10771636 -wv n 1 3 @ #p %p 1 0 09155306 -www n 1 1 @ 1 0 04604276 -wy n 1 3 @ #p %p 1 0 09159003 -wyat n 1 1 @ 1 0 11399446 -wyatt n 2 1 @ 2 0 11399620 11399446 -wych_elm n 1 2 @ #m 1 0 12407079 -wych_hazel n 2 3 @ ~ #m 2 0 12314808 04596224 -wych_hazel_plant n 1 3 @ ~ #m 1 0 12314808 -wycherley n 1 1 @ 1 0 11399716 -wyclif n 1 1 @ 1 0 11399866 -wycliffe n 1 1 @ 1 0 11399866 -wye n 1 2 @ #m 1 0 06833776 -wyeth n 1 1 @ 1 0 11400126 -wyethia_amplexicaulis n 1 2 @ #m 1 0 12032429 -wyethia_helianthoides n 1 2 @ #m 1 0 12032686 -wykeham n 1 1 @ 1 0 11400230 -wykehamist n 1 2 @ ; 1 0 10801561 -wyler n 1 1 @ 1 0 11400490 -wylie n 1 1 @ 1 0 11400594 -wynette n 1 1 @ 1 0 11400704 -wynfrith n 1 2 @ ; 1 0 10856486 -wynnea n 1 1 @ 1 0 13034431 -wynnea_americana n 1 1 @ 1 0 13034555 -wynnea_sparassoides n 1 1 @ 1 0 13034788 -wyoming n 1 3 @ #p %p 1 1 09159003 -wyomingite n 1 1 @ 1 0 09746637 -wyrd n 1 1 @ 1 0 09586442 -wystan_hugh_auden n 1 1 @ 1 0 10828233 -wyszynski n 1 1 @ 1 0 11400837 -wytensin n 1 2 @ ; 1 0 03464266 -wyvern n 1 1 @ 1 0 09503486 -x n 3 2 @ #m 3 0 13746512 06833663 02678738 -x-axis n 1 1 @ 1 0 06009233 -x-linked_dominant_inheritance n 1 1 @ 1 0 04923299 -x-linked_gene n 1 1 @ 1 0 05441929 -x-linked_recessive_inheritance n 1 1 @ 1 0 04923496 -x-linked_scid n 1 1 @ 1 0 14129351 -x-or_circuit n 1 1 @ 1 0 04609354 -x-radiation n 2 2 @ ~ 2 0 11527177 00901316 -x-ray n 2 2 @ ~ 2 0 11527177 04100620 -x-ray_diffraction n 1 1 @ 1 1 11527386 -x-ray_film n 1 2 @ ~ 1 1 04609531 -x-ray_machine n 1 3 @ ~ %p 1 1 04609651 -x-ray_photograph n 1 2 @ ~ 1 0 04100620 -x-ray_photography n 1 2 @ ~ 1 0 00904623 -x-ray_picture n 1 2 @ ~ 1 0 04100620 -x-ray_therapy n 1 1 @ 1 0 00706133 -x-ray_tube n 1 2 @ #p 1 0 04609811 -x-raying n 1 3 @ ~ + 1 0 00901316 -x-scid n 1 1 @ 1 0 14129351 -x_chromosome n 1 1 @ 1 0 05442594 -x_ray n 2 2 @ ~ 2 1 11527177 04100620 -xanax n 1 2 @ ; 1 0 02699343 -xanthate n 1 2 @ ~ 1 0 15112828 -xanthelasma n 1 1 @ 1 0 14233155 -xanthemia n 1 1 @ 1 0 14566606 -xanthic_acid n 1 1 @ 1 0 15112932 -xanthine n 1 1 @ 1 0 15113050 -xanthium n 1 3 @ #m %m 1 0 12032939 -xanthoma n 1 2 @ ~ 1 0 14233267 -xanthoma_disseminatum n 1 1 @ 1 0 14233545 -xanthoma_multiplex n 1 1 @ 1 0 14233717 -xanthomatosis n 1 1 @ 1 0 14233717 -xanthomonad n 1 2 @ #m 1 0 01361683 -xanthomonas n 1 3 @ #m %m 1 0 01361465 -xanthophyceae n 1 2 @ #m 1 0 01400772 -xanthophyl n 1 1 @ 1 0 14721635 -xanthophyll n 1 1 @ 1 0 14721635 -xanthopsia n 1 1 @ 1 0 14574192 -xanthorrhoeaceae n 1 2 @ #m 1 0 12465796 -xanthorroea n 1 3 @ #m %m 1 0 12466034 -xanthosis n 1 1 @ 1 0 14233974 -xanthosoma n 1 3 @ #m %m 1 0 11793252 -xanthosoma_atrovirens n 1 2 @ #m 1 0 11793403 -xanthosoma_sagittifolium n 1 2 @ #m 1 0 11793403 -xantusiidae n 1 3 @ #m %m 1 0 01683428 -xavier n 1 1 @ 1 0 11401009 -xc n 1 1 @ 1 0 13750297 -xe n 1 2 @ #s 1 0 14661274 -xenarthra n 1 3 @ #m %m 1 0 02453890 -xenicidae n 1 3 @ #m %m 1 0 01588172 -xenicus n 1 3 @ #m %m 1 0 01588589 -xenicus_gilviventris n 1 2 @ #m 1 0 01588725 -xenogenesis n 1 2 @ ~ 1 0 11424194 -xenograft n 1 1 @ 1 0 05583624 -xenolith n 1 2 @ ; 1 0 09481120 -xenon n 1 2 @ #s 1 1 14661274 -xenophanes n 1 1 @ 1 0 11401194 -xenophobia n 1 2 @ + 1 0 14386022 -xenophon n 1 1 @ 1 0 11401282 -xenopodidae n 1 1 @ 1 0 01654245 -xenopus n 1 3 @ #m %m 1 0 01654429 -xenopus_laevis n 1 2 @ #m 1 0 01654637 -xenorhyncus n 1 3 @ #m %m 1 0 02004343 -xenorhyncus_asiaticus n 1 2 @ #m 1 0 02004492 -xenosauridae n 1 3 @ #m %m 1 0 01690703 -xenosaurus n 1 2 @ #m 1 0 01690857 -xenotime n 1 2 @ %s 1 0 15105955 -xenotransplant n 1 1 @ 1 0 01268271 -xenotransplantation n 1 1 @ 1 0 01268271 -xeranthemum n 1 2 @ #m 1 0 12033504 -xeranthemum_annuum n 1 2 @ #m 1 0 12033709 -xerobates n 1 2 @ #m 1 0 01671312 -xeroderma n 1 2 @ ~ 1 0 14537563 -xeroderma_pigmentosum n 1 1 @ 1 0 14537735 -xerodermia n 1 2 @ ~ 1 0 14537563 -xerographic_copier n 1 1 @ 1 0 04608923 -xerographic_printer n 1 1 @ 1 0 04608809 -xerography n 1 2 @ + 1 0 00904904 -xeroma n 1 1 @ 1 0 14538113 -xerophile n 1 2 @ ~ 1 0 13121104 -xerophilous_plant n 1 2 @ ~ 1 0 13121104 -xerophthalmia n 1 1 @ 1 0 14538113 -xerophthalmus n 1 1 @ 1 0 14538113 -xerophyllum n 1 3 @ #m %m 1 0 12465321 -xerophyllum_tenax n 1 2 @ #m 1 0 12465557 -xerophyte n 1 3 @ ~ + 1 0 13121104 -xerophytic_plant n 1 2 @ ~ 1 0 13121104 -xeroradiography n 1 1 @ 1 0 00905192 -xerostomia n 1 1 @ 1 0 14538329 -xerotes n 1 2 @ ~ 1 0 14536438 -xerox n 2 2 @ + 2 0 04609235 04608923 -xerox_copy n 1 1 @ 1 0 04609235 -xerox_machine n 1 1 @ 1 0 04608923 -xerxes_i n 1 1 @ 1 0 11401418 -xerxes_the_great n 1 1 @ 1 0 11401418 -xestobium_rufovillosum n 1 2 @ #m 1 0 02177775 -xhosa n 3 2 @ #m 3 0 09751496 08489285 06994700 -xi n 2 2 @ #m 2 0 13746672 06835525 -xian n 1 2 @ #p 1 0 08729452 -xii n 1 2 @ ~ 1 0 13746785 -xiii n 1 1 @ 1 0 13747199 -ximenesia_encelioides n 1 1 @ 1 0 12031139 -xinjiang n 1 4 @ #p %m - 1 0 08729626 -xinjiang_uighur_autonomous_region n 1 4 @ #p %m - 1 0 08729626 -xiphias n 1 3 @ #m %m 1 0 02629581 -xiphias_gladius n 1 3 @ #m %p 1 0 02629716 -xiphiidae n 1 3 @ #m %m 1 0 02629435 -xiphium_iris n 1 1 @ 1 0 12415595 -xiphoid_process n 1 2 @ #p 1 0 05281691 -xiphosura n 1 3 @ #m %m 1 0 01787401 -xiphosurus_polyphemus n 1 2 @ #m 1 0 01787835 -xishuangbanna_dai n 1 1 @ 1 0 06935314 -xiv n 1 1 @ 1 0 13747348 -xix n 1 1 @ 1 0 13747989 -xizang n 1 5 @ #p %m %p - 1 0 08906952 -xl n 1 1 @ 1 0 13749527 -xmas n 1 2 @ #p 1 0 15196186 -xor_circuit n 1 1 @ 1 0 04609354 -xor_gate n 1 1 @ 1 0 04609354 -xt n 1 1 @ 1 0 07431247 -xtc n 1 1 @ 1 0 02678738 -xv n 1 1 @ 1 0 13747469 -xvi n 1 1 @ 1 0 13747606 -xvii n 1 1 @ 1 0 13747725 -xviii n 1 1 @ 1 0 13747865 -xx n 2 2 @ ; 2 0 13748128 05442789 -xxi n 1 1 @ 1 0 13748246 -xxii n 1 1 @ 1 0 13748367 -xxiii n 1 1 @ 1 0 13748493 -xxiv n 1 1 @ 1 0 13748622 -xxix n 1 1 @ 1 0 13749278 -xxv n 1 1 @ 1 0 13748763 -xxvi n 1 1 @ 1 0 13748890 -xxvii n 1 1 @ 1 0 13749017 -xxviii n 1 1 @ 1 0 13749146 -xxx n 2 2 @ ; 2 0 13749407 05442916 -xxy n 1 2 @ ; 1 0 05443050 -xxy-syndrome n 1 1 @ 1 0 14306475 -xy n 1 2 @ ; 1 0 05443211 -xylaria n 1 3 @ #m %m 1 0 12966581 -xylaria_mali n 1 2 @ #m 1 0 12966804 -xylaria_polymorpha n 1 2 @ #m 1 0 12966945 -xylariaceae n 1 3 @ #m %m 1 0 12966386 -xylem n 1 3 @ #p %p 1 1 13098648 -xylene n 1 1 @ 1 0 15106143 -xylocaine n 1 2 @ ; 1 0 03662016 -xylocopa n 1 3 @ #m %m 1 0 02209230 -xylol n 1 1 @ 1 0 15106143 -xylomelum n 1 3 @ #m %m 1 0 12223950 -xylomelum_pyriforme n 1 2 @ #m 1 0 12224140 -xylophone n 1 2 @ + 1 1 03721384 -xylophonist n 1 2 @ + 1 0 10801697 -xylopia n 1 3 @ #m %m 1 0 11696776 -xylopia_aethiopica n 1 2 @ #m 1 0 11696935 -xylose n 1 1 @ 1 0 15103780 -xylosma n 1 2 @ #m 1 0 12381095 -xylosma_congestum n 1 2 @ #m 1 0 12381095 -xyphophorus n 1 3 @ #m %m 1 0 01448165 -xyphophorus_helleri n 1 2 @ #m 1 0 01448291 -xyridaceae n 1 3 @ #m %m 1 0 12605315 -xyridales n 1 3 @ #m %m 1 0 12605019 -xyris n 1 3 @ #m %m 1 0 12605519 -xyris_operculata n 1 1 @ 1 0 12605872 -xyy n 1 2 @ ; 1 0 05443333 -y n 2 3 @ #m #s 2 0 14661740 06833776 -y-axis n 1 1 @ 1 0 06009334 -y-linked_gene n 1 1 @ 1 0 05442022 -y2k n 1 1 @ 1 0 15249547 -y_chromosome n 1 1 @ 1 0 05443484 -yacca n 1 2 @ #m 1 0 11652217 -yacca_podocarp n 1 2 @ #m 1 0 11652217 -yacht n 1 2 @ + 1 1 04610013 -yacht_chair n 1 1 @ 1 0 04610176 -yacht_club n 1 1 @ 1 0 08230785 -yacht_race n 1 1 @ 1 0 07459992 -yachting n 1 3 @ ~ + 1 0 00315390 -yachting_cap n 1 2 @ %p 1 0 03610682 -yachtsman n 1 1 @ 1 0 10802043 -yachtswoman n 1 1 @ 1 0 10802043 -yack n 1 3 @ ~ + 1 0 07136940 -yafo n 1 2 @ #p 1 0 08798195 -yagi n 1 1 @ 1 0 04610274 -yagi_aerial n 1 1 @ 1 0 04610274 -yahi n 2 1 @ 2 0 09672455 06923704 -yahoo n 3 2 @ ; 3 0 10804102 10801893 06579127 -yahve n 1 1 @ 1 0 09538318 -yahveh n 1 1 @ 1 0 09538318 -yahwe n 1 1 @ 1 0 09538318 -yahweh n 1 1 @ 1 0 09538318 -yajur-veda n 1 1 @ 1 0 06465351 -yak n 2 3 @ ~ #m 2 0 07136940 02405302 -yak's_milk n 1 1 @ 1 0 07845421 -yak_butter n 1 1 @ 1 0 07856186 -yakety-yak n 1 2 @ ~ 1 0 07136940 -yakima n 1 2 @ #p 1 0 09155199 -yakut n 2 1 @ 2 0 09737161 06927645 -yakuza n 2 2 @ ; 2 0 10801802 08230906 -yale n 2 3 @ #m #p 2 1 04610368 11401617 -yale_university n 1 3 @ #m #p 1 0 04610368 -yalta n 1 2 @ #p 1 0 09017301 -yalta_conference n 1 1 @ 1 0 08328327 -yaltopya n 1 5 @ #p %m %p - 1 0 08778061 -yalu n 1 3 @ #p ; 1 0 09481285 -yalu_river n 2 3 @ #p ; 2 0 09481285 01299994 -yam n 4 5 @ ~ #m #p %p 4 0 12088223 12087961 07712267 07711907 -yam_bean n 2 2 @ #m 2 0 12555553 12555255 -yam_family n 1 3 @ #m %m 1 0 12087650 -yam_plant n 1 4 @ ~ #m %p 1 0 12087961 -yama n 1 1 @ 1 0 09530141 -yamaltu n 1 1 @ 1 0 06983795 -yamamoto n 1 1 @ 1 0 11401797 -yamani n 1 1 @ 1 0 11401947 -yamoussukro n 1 1 @ 1 0 08736956 -yana n 2 1 @ 2 0 09672590 06923792 -yanan n 1 2 @ ~ 1 0 06923580 -yang n 1 3 ! @ ; 1 0 05915356 -yang_chen_ning n 1 1 @ 1 0 11402120 -yangon n 1 2 @ #p 1 0 08715777 -yangtze n 1 2 @ #p 1 0 09481523 -yangtze_kiang n 1 2 @ #p 1 0 09481523 -yangtze_river n 1 2 @ #p 1 0 09481523 -yank n 2 4 @ ~ #m ; 2 1 10802283 09746819 -yankee n 3 5 @ ~ #m + ; 3 1 10802283 10355942 09746819 -yankee-doodle n 1 1 @ 1 0 09746819 -yankee_corn n 1 1 @ 1 0 12145148 -yanker n 1 2 @ + 1 0 10802147 -yanquapin n 1 3 @ #m %p 1 0 11717577 -yaounde n 1 2 @ #p 1 0 08717510 -yap n 1 1 @ 1 0 05302307 -yard n 9 4 @ ~ #p %p 9 3 13650447 04610879 08684294 13750844 13618076 08684676 04611154 04610676 04610503 -yard-long_bean n 1 2 @ #m 1 0 12579038 -yard_bird n 2 2 @ ~ 2 0 10802507 09962966 -yard_donkey n 1 1 @ 1 0 04611470 -yard_goods n 1 2 @ ; 1 0 04611654 -yard_grass n 1 2 @ #m 1 0 12118414 -yard_line n 1 1 @ 1 0 08654127 -yard_marker n 1 2 @ ; 1 0 04611795 -yard_measure n 1 1 @ 1 0 04611916 -yard_sale n 1 1 @ 1 0 01119250 -yardage n 1 1 @ 1 1 05130875 -yardarm n 1 2 @ #p 1 0 04611351 -yardbird n 2 2 @ ~ 2 0 10802507 09962966 -yardbird_parker n 1 1 @ 1 0 11222914 -yarder n 2 2 @ ; 2 0 13650735 04611470 -yardgrass n 1 2 @ #m 1 0 12118414 -yardie n 1 1 @ 1 0 10802621 -yardman n 2 1 @ 2 0 10802953 10802842 -yardmaster n 1 1 @ 1 0 10803031 -yardstick n 2 1 @ 2 1 07261955 04611916 -yarmelke n 1 1 @ 1 0 04612026 -yarmulka n 1 1 @ 1 0 04612026 -yarmulke n 1 1 @ 1 0 04612026 -yarn n 2 4 @ ~ %p + 2 0 07220773 04426788 -yarrow n 1 1 @ 1 0 11916696 -yashmac n 1 1 @ 1 0 04612159 -yashmak n 1 1 @ 1 0 04612159 -yasser_arafat n 1 1 @ 1 0 10821218 -yastrzemski n 1 1 @ 1 0 11402341 -yataghan n 1 1 @ 1 0 04612257 -yatobyo n 1 2 @ %p 1 0 14276360 -yaupon_holly n 1 1 @ 1 0 12758099 -yautia n 1 2 @ #m 1 0 11793403 -yavapai n 2 1 @ 2 0 09672725 06923398 -yaw n 1 2 @ + 1 0 07411350 -yawl n 2 2 @ ~ 2 0 04612504 04612373 -yawn n 1 3 @ ~ + 1 1 00837293 -yawner n 1 2 @ + 1 0 10803193 -yawning n 1 3 @ ~ + 1 0 00837293 -yaws n 1 1 @ 1 1 14144761 -yay n 1 1 @ 1 0 06936461 -yazoo n 1 2 @ #p 1 0 09481754 -yazoo_river n 1 2 @ #p 1 0 09481754 -yb n 4 3 @ #s %p 4 0 14661482 13632461 13632320 13632164 -ybit n 1 2 @ %p 1 0 13632461 -yea n 1 2 ! @ 1 0 07204008 -year n 4 5 @ ~ #p %p + 4 4 15203791 15204297 15201505 08238660 -year-end n 1 1 @ 1 1 15201994 -year_dot n 1 2 @ ; 1 0 15244351 -year_of_grace n 1 1 @ 1 0 15249458 -yearbook n 2 2 @ ~ 2 0 07282497 06426468 -yearling n 3 1 @ 3 0 10714465 02385214 01888181 -yearly n 1 2 @ ~ 1 0 06426468 -yearner n 1 2 @ + 1 0 10270878 -yearning n 1 3 @ ~ + 1 1 07486628 -years n 3 3 @ ~ %p 3 2 15153787 15242955 15141059 -yeast n 2 4 @ ~ #m + 2 0 15106271 13025647 -yeast_cake n 1 1 @ 1 0 07640560 -yeats n 1 2 @ + 1 0 11402463 -yeddo n 1 2 @ #p 1 0 08923348 -yedo n 1 2 @ #p 1 0 08923348 -yehudi_menuhin n 1 1 @ 1 0 11175040 -yekaterinoslav n 1 1 @ 1 0 09016698 -yell n 2 3 @ ~ + 2 2 07120524 07121157 -yeller n 1 3 @ ~ + 1 0 10533983 -yelling n 1 2 @ + 1 1 07123552 -yellow n 1 3 @ ~ + 1 1 04965661 -yellow-bellied_sapsucker n 1 1 @ 1 0 01841288 -yellow-bellied_terrapin n 1 2 @ #m 1 0 01668665 -yellow-blindness n 1 1 @ 1 0 14154832 -yellow-blue_color_blindness n 1 2 @ ~ 1 0 14154669 -yellow-blue_dichromacy n 1 2 @ ~ 1 0 14154669 -yellow-breasted_bunting n 1 2 @ #m 1 0 01538362 -yellow-breasted_chat n 1 1 @ 1 0 01569971 -yellow-crowned_night_heron n 1 2 @ #m 1 0 02011016 -yellow-dog_contract n 1 1 @ 1 0 06527170 -yellow-eyed_grass n 1 3 @ ~ #m 1 0 12605683 -yellow-eyed_grass_family n 1 3 @ #m %m 1 0 12605315 -yellow-fever_mosquito n 1 2 @ #m 1 0 02200850 -yellow-green_algae n 1 3 @ ~ #m 1 0 01400391 -yellow-leaf_sickle_pine n 1 2 @ #m 1 0 11655152 -yellow-shafted_flicker n 1 1 @ 1 0 01839750 -yellow-throated_marten n 1 2 @ #m 1 0 02451125 -yellow_adder's_tongue n 1 1 @ 1 0 12450840 -yellow_ageratum n 1 2 @ #m 1 0 11992806 -yellow_asphodel n 1 2 @ #m 1 0 12442697 -yellow_avens n 2 1 @ 2 0 12631932 12631637 -yellow_bachelor's_button n 1 1 @ 1 0 12705458 -yellow_bass n 1 2 @ #m 1 0 02566665 -yellow_bean n 1 1 @ 1 0 07728708 -yellow_bedstraw n 1 1 @ 1 0 12665857 -yellow_bells n 1 2 @ #m 1 0 12835331 -yellow_berry n 1 2 @ #p 1 0 13141415 -yellow_bile n 1 1 @ 1 0 05406958 -yellow_birch n 1 2 @ #m 1 0 12281788 -yellow_bone_marrow n 1 1 @ 1 0 05286008 -yellow_bristle_grass n 1 1 @ 1 0 12134836 -yellow_bristlegrass n 1 1 @ 1 0 12134836 -yellow_bugle n 1 1 @ 1 0 12841472 -yellow_bunting n 1 2 @ #m 1 0 01538200 -yellow_cattley_guava n 1 2 @ #m 1 0 12333771 -yellow_cedar n 1 2 @ #m 1 0 11635830 -yellow_chamomile n 1 2 @ #m 1 0 11923397 -yellow_chestnut_oak n 1 1 @ 1 0 12275675 -yellow_cleavers n 1 1 @ 1 0 12665857 -yellow_clintonia n 1 2 @ #m 1 0 12472559 -yellow_colicroot n 1 2 @ #m 1 0 12430675 -yellow_cypress n 1 2 @ #m 1 0 11635830 -yellow_delicious n 1 1 @ 1 0 07740342 -yellow_dock n 1 1 @ 1 0 12604639 -yellow_dwarf n 1 2 @ ~ 1 0 14284688 -yellow_dwarf_of_potato n 1 1 @ 1 0 14284876 -yellow_fever n 1 1 @ 1 0 14144960 -yellow_flag n 1 1 @ 1 0 12414602 -yellow_foxglove n 1 1 @ 1 0 12883265 -yellow_foxtail n 1 1 @ 1 0 12134836 -yellow_giant_hyssop n 1 1 @ 1 0 12840168 -yellow_globe_lily n 1 2 @ #m 1 0 12447121 -yellow_goatfish n 1 2 @ #m 1 0 02600798 -yellow_granadilla n 2 3 @ #p %p 2 0 12384375 07754279 -yellow_green n 1 1 @ 1 0 04968257 -yellow_gurnard n 1 2 @ #m 1 0 02650413 -yellow_hawkweed n 1 2 @ #m 1 0 11982342 -yellow_henbane n 1 1 @ 1 0 12911914 -yellow_honeysuckle n 2 2 @ #m 2 0 12675299 12675100 -yellow_horned_poppy n 1 2 @ #m 1 0 11905749 -yellow_hornet n 1 2 @ #m 1 0 02213788 -yellow_iris n 1 1 @ 1 0 12414602 -yellow_ironweed n 1 1 @ 1 0 12030908 -yellow_jacaranda n 1 2 @ #m 1 0 12573911 -yellow_jack n 3 1 @ 3 0 14144960 04612623 02577041 -yellow_jacket n 2 2 @ #m 2 0 03913129 02213788 -yellow_jasmine n 1 2 @ #m 1 0 12485981 -yellow_jessamine n 1 2 @ #m 1 0 12485981 -yellow_journalism n 1 1 @ 1 0 06267991 -yellow_lady's_slipper n 1 2 @ ~ 1 0 12057211 -yellow_lady-slipper n 1 2 @ ~ 1 0 12057211 -yellow_light n 1 1 @ 1 0 06874837 -yellow_locust n 1 3 @ #m %s 1 0 12568186 -yellow_loosestrife n 1 1 @ 1 0 12095781 -yellow_lupine n 1 1 @ 1 0 12546832 -yellow_man n 1 2 @ ; 1 0 09643545 -yellow_mariposa_tulip n 1 2 @ #m 1 0 12448136 -yellow_marrow n 1 1 @ 1 0 05286008 -yellow_metal n 1 2 @ ~ 1 0 14720238 -yellow_milkwort n 1 1 @ 1 0 12705458 -yellow_mombin n 2 4 @ #m #p %p 2 0 12765846 07765612 -yellow_mombin_tree n 1 3 @ #m %p 1 0 12765846 -yellow_mountain_saxifrage n 1 2 @ #m 1 0 12793284 -yellow_nutgrass n 1 2 @ #m 1 0 12150969 -yellow_oak n 1 1 @ 1 0 12279458 -yellow_ocher n 1 1 @ 1 0 14844281 -yellow_ochre n 1 1 @ 1 1 14844281 -yellow_oleander n 1 2 @ #m 1 0 11777080 -yellow_pages n 1 1 @ 1 0 07251373 -yellow_paper_daisy n 1 1 @ 1 0 11980318 -yellow_parilla n 1 2 @ #m 1 0 11713370 -yellow_pea n 1 1 @ 1 0 12573474 -yellow_perch n 1 3 @ #m %p 1 0 02557182 -yellow_peril n 1 1 @ 1 0 14543411 -yellow_pimpernel n 1 1 @ 1 0 12095412 -yellow_pine n 2 4 @ ~ #s %s 2 1 11614250 11609362 -yellow_pitcher_plant n 1 2 @ #m 1 0 12780563 -yellow_pond_lily n 1 2 @ #m 1 0 11716422 -yellow_poplar n 2 4 @ #m #s %s 2 0 11712621 11712282 -yellow_prussiate_of_potash n 1 1 @ 1 0 14995061 -yellow_race n 1 2 @ %m 1 0 09643421 -yellow_river n 1 2 @ #p 1 0 09306257 -yellow_rocket n 1 2 @ #p 1 0 11874081 -yellow_root n 1 2 @ #m 1 0 11735570 -yellow_salsify n 1 1 @ 1 0 12026981 -yellow_sand_verbena n 1 1 @ 1 0 11837351 -yellow_sea n 1 3 @ #p %p 1 0 09481958 -yellow_spiny_daisy n 1 2 @ #m 1 0 11976511 -yellow_spot n 2 3 @ ~ #p 2 0 14285113 05455690 -yellow_spot_fungus n 1 3 @ #m ; 1 0 13080866 -yellow_spruce n 1 1 @ 1 0 11626826 -yellow_squash n 2 4 @ ~ #p %p 2 0 12159388 07716034 -yellow_star-thistle n 1 1 @ 1 0 11949015 -yellow_sweet_clover n 1 1 @ 1 0 11751347 -yellow_trefoil n 1 1 @ 1 0 12549192 -yellow_trumpet n 1 2 @ #m 1 0 12780563 -yellow_turnip n 1 2 @ #p 1 0 07736087 -yellow_twining_snapdragon n 1 1 @ 1 0 12877637 -yellow_vetchling n 1 2 @ #m 1 0 12541157 -yellow_warbler n 1 2 @ #m 1 0 01568892 -yellow_water_flag n 1 1 @ 1 0 12414602 -yellow_water_lily n 1 2 @ #m 1 0 11716877 -yellow_watercress n 1 2 @ #m 1 0 11895472 -yellow_woman n 1 2 @ ; 1 0 09643670 -yellowbelly_marmot n 1 1 @ 1 0 02361850 -yellowbird n 2 2 @ #m 2 0 01568892 01532325 -yellowcake n 1 1 @ 1 0 15106529 -yellowfin n 1 2 @ #m 1 0 02627532 -yellowfin_croaker n 1 2 @ #m 1 0 02597004 -yellowfin_mojarra n 1 2 @ #m 1 0 02637179 -yellowfin_tuna n 1 2 @ #m 1 0 02627532 -yellowhammer n 2 2 @ #m 2 0 01839750 01538200 -yellowish_brown n 1 2 @ ~ 1 1 04973957 -yellowish_green n 1 1 @ 1 0 04968257 -yellowish_pink n 1 1 @ 1 0 04971675 -yellowknife n 1 2 @ #p 1 0 08826150 -yellowlegs n 1 3 @ ~ #m 1 0 02028175 -yellowness n 1 3 @ ~ + 1 0 04965661 -yellowstone n 1 2 @ #p 1 0 09482131 -yellowstone_national_park n 1 3 @ #p %p 1 0 08610305 -yellowstone_river n 1 2 @ #p 1 0 09482131 -yellowtail n 2 2 @ #m 2 0 02587877 02578928 -yellowtail_flounder n 2 4 @ #m #p %p 2 0 07790800 02659176 -yellowtail_snapper n 1 2 @ #m 1 0 02587877 -yellowthroat n 1 3 @ ~ #m 1 0 01570676 -yellowwood n 2 4 @ ~ #s %s 2 0 11651133 11650558 -yellowwood_tree n 1 3 @ ~ %s 1 0 11650558 -yelp n 1 2 @ + 1 1 07400552 -yelping n 1 2 @ + 1 1 07400552 -yemen n 1 6 @ #m #p %m %p - 1 0 09164561 -yemeni n 1 3 @ #m + 1 0 09750770 -yemeni_fils n 1 1 @ 1 0 13697621 -yemeni_monetary_unit n 1 2 @ ~ 1 0 13697380 -yemeni_rial n 1 1 @ 1 0 13697505 -yen n 2 3 @ %p + 2 1 07486922 13709700 -yenisei n 2 2 @ #p 2 0 09482330 06959932 -yenisei-samoyed n 1 1 @ 1 0 06959932 -yenisei_river n 1 2 @ #p 1 0 09482330 -yeniseian n 2 2 @ #m 2 0 09708247 06959932 -yenisey n 1 2 @ #p 1 0 09482330 -yenisey_river n 1 2 @ #p 1 0 09482330 -yenta n 2 2 @ ; 2 0 10803463 10803282 -yeoman n 2 1 @ 2 0 10803691 10803586 -yeoman_of_the_guard n 1 1 @ 1 0 10803691 -yeomanry n 2 2 @ #p 2 0 08246502 08215989 -yerba_buena n 1 2 @ #m 1 0 12857204 -yerba_mansa n 1 2 @ #m 1 0 13152339 -yerba_santa n 1 2 @ #m 1 0 12835766 -yerevan n 1 2 @ #p 1 0 09018030 -yerkes n 1 1 @ 1 0 11402626 -yersin n 1 1 @ 1 0 11402801 -yersinia_pestis n 1 1 @ 1 0 01350701 -yerupaja n 1 2 @ #p 1 0 09482566 -yerwa-maiduguri n 1 2 @ #p 1 0 08974818 -yes n 1 2 ! @ 1 1 07203900 -yes-man n 1 2 @ ~ 1 0 10098092 -yes-no_question n 1 1 @ 1 0 07195969 -yeshiva n 1 1 @ 1 0 08278032 -yeshivah n 1 1 @ 1 0 08278032 -yesterday n 2 1 @ 2 1 15156187 15263138 -yesteryear n 1 2 @ ~ 1 1 15120823 -yeti n 1 1 @ 1 0 09487252 -yevgeni_aleksandrovich_yevtushenko n 1 1 @ 1 0 11403015 -yevgeni_yevtushenko n 1 1 @ 1 0 11403015 -yevtushenko n 1 1 @ 1 0 11403015 -yew n 2 5 @ ~ #m #s %s 2 0 11661707 11661372 -yew_family n 1 3 @ #m %m 1 0 11660979 -yezo n 1 3 @ #p %p 1 0 08920722 -ygdrasil n 1 2 @ ; 1 0 09584725 -yggdrasil n 1 2 @ ; 1 0 09584725 -yhvh n 1 1 @ 1 0 09538318 -yhwh n 1 1 @ 1 0 09538318 -yi n 1 1 @ 1 0 06932948 -yib n 1 2 @ %p 1 0 13632164 -yibit n 1 2 @ %p 1 0 13632606 -yid n 1 2 @ ; 1 0 09682122 -yiddish n 1 2 @ - 1 0 06951067 -yield n 4 3 @ ~ + 4 3 00914632 13260190 04612722 13758745 -yielder n 1 2 @ + 1 0 10679998 -yielding n 2 3 @ ~ + 2 0 07255027 07176243 -yin n 1 3 ! @ ; 1 0 05915584 -yip n 1 1 @ 1 0 07400552 -yips n 1 1 @ 1 0 14376497 -yisrael n 1 5 @ #p %m %p - 1 0 08792548 -ylang-ylang n 1 2 @ #m 1 0 11695974 -ylem n 1 2 @ ; 1 0 14582025 -ymir n 1 2 @ ; 1 0 09584933 -yo-yo n 1 1 @ 1 0 04613555 -yob n 1 2 @ ~ 1 0 09879297 -yobbo n 1 2 @ ~ 1 0 09879297 -yobibit n 1 2 @ %p 1 0 13632606 -yobibyte n 1 2 @ %p 1 0 13632164 -yobo n 1 2 @ ~ 1 0 09879297 -yodel n 1 2 @ + 1 0 07123710 -yodeling n 1 2 @ + 1 0 01256124 -yodeller n 1 2 @ + 1 0 10803838 -yodh n 1 2 @ #m 1 0 06837679 -yoga n 2 4 @ ~ %p + 2 1 06239361 00630960 -yogacara n 1 1 @ 1 0 06242780 -yoghourt n 1 2 @ ~ 1 0 07849336 -yoghurt n 1 2 @ ~ 1 0 07849336 -yogi n 2 1 @ 2 0 10848946 10803978 -yogi_berra n 1 1 @ 1 0 10848946 -yogurt n 1 2 @ ~ 1 0 07849336 -yoke n 7 5 @ ~ #p %p + 7 1 04613015 13996909 13743605 08231065 04613350 04613158 04612840 -yokel n 1 1 @ 1 1 10804102 -yoko_ono n 1 1 @ 1 0 11215205 -yokohama n 1 2 @ #p 1 0 08924238 -yokuts n 2 1 @ 2 1 06924659 09672840 -yolk n 2 2 @ #p 2 0 07841345 01464844 -yolk_sac n 2 1 @ 2 0 01465243 01465046 -yom_kippur n 1 2 @ ; 1 0 15185471 -yom_kippur_war n 1 2 @ ; 1 0 01302683 -yore n 1 1 @ 1 0 15121088 -york n 1 2 @ %m 1 0 08159924 -yorkshire n 1 2 @ #p 1 0 08885211 -yorkshire_fog n 1 1 @ 1 0 12122725 -yorkshire_pudding n 1 1 @ 1 0 07690585 -yorkshire_terrier n 1 1 @ 1 0 02094433 -yorktown n 2 3 @ #p ; 2 0 09152570 01300242 -yoruba n 2 1 @ 2 0 09738275 06997368 -yosemite n 1 2 @ #p 1 0 09482715 -yosemite_falls n 1 2 @ #p 1 0 09482715 -yosemite_national_park n 1 2 @ #p 1 0 08610646 -yosemite_toad n 1 1 @ 1 0 01647180 -yottabit n 1 2 @ %p 1 0 13632461 -yottabyte n 2 2 @ %p 2 0 13632320 13632164 -you-drive n 1 1 @ 1 0 13248598 -young n 9 4 ! @ ~ + 9 1 01321579 11404280 11404140 11403828 11403692 11403600 11403456 11403220 07944050 -young's_modulus n 1 1 @ 1 0 13588497 -young_bird n 1 3 @ ~ #m 1 0 01613615 -young_buck n 1 1 @ 1 0 10804287 -young_carnivore n 1 2 @ ~ 1 0 01322685 -young_fish n 1 2 @ ~ 1 0 02513560 -young_girl n 1 2 @ ~ 1 1 10247358 -young_lady n 1 2 @ ~ 1 1 10129825 -young_mammal n 1 3 @ ~ #m 1 0 01321854 -young_man n 2 1 @ 2 2 10804287 09871364 -young_person n 1 2 @ ~ 1 0 10804406 -young_turk n 2 1 @ 2 0 10804732 10804636 -young_woman n 1 2 @ ~ 1 1 10129825 -youngness n 1 4 ! @ ~ + 1 0 04928416 -youngster n 1 3 @ ~ %p 1 1 09917593 -youngstown n 1 2 @ #p 1 0 09131553 -younker n 1 2 @ ~ 1 0 10804406 -youth n 6 3 @ ~ %p 6 6 10804406 07944050 15147713 14425853 15266034 04928585 -youth-on-age n 1 2 @ #m 1 0 12804352 -youth_crusade n 1 1 @ 1 0 00801277 -youth_culture n 1 2 @ ~ 1 0 08289089 -youth_gang n 1 3 @ %m %p 1 0 08244747 -youth_hostel n 1 1 @ 1 0 03541537 -youth_movement n 1 1 @ 1 0 00801277 -youth_subculture n 1 2 @ ~ 1 0 08289449 -youthfulness n 1 2 @ + 1 0 04928585 -yowl n 1 2 @ + 1 0 07121361 -ypres n 3 3 @ #p ; 3 0 01301080 01300782 01300508 -yquem n 1 1 @ 1 0 07899899 -yr n 1 3 @ ~ #p 1 1 15203791 -ytterbite n 1 2 @ %s 1 0 14675569 -ytterbium n 1 2 @ #s 1 0 14661482 -yttrium n 1 2 @ #s 1 0 14661740 -yuan n 2 2 @ %p 2 0 13709992 08160146 -yuan_dynasty n 1 1 @ 1 0 08160146 -yucatan n 2 3 @ #p %p 2 0 08740230 08740022 -yucatan_peninsula n 1 2 @ #p 1 0 08740022 -yucatec n 2 1 @ 2 0 09672963 06925917 -yucateco n 2 1 @ 2 0 09672963 06925917 -yucca n 1 3 @ ~ #m 1 1 12482031 -yucca_aloifolia n 1 1 @ 1 0 12482437 -yucca_baccata n 1 1 @ 1 0 12482668 -yucca_brevifolia n 1 1 @ 1 0 12482893 -yucca_carnerosana n 1 1 @ 1 0 12483091 -yucca_elata n 1 1 @ 1 0 12483282 -yucca_filamentosa n 1 1 @ 1 0 12483427 -yucca_glauca n 1 1 @ 1 0 12483625 -yucca_gloriosa n 1 1 @ 1 0 12483841 -yucca_smalliana n 1 1 @ 1 0 12484029 -yucca_whipplei n 1 1 @ 1 0 12484244 -yue n 1 1 @ 1 0 06930427 -yue_dialect n 1 1 @ 1 0 06930427 -yugoslav n 1 3 @ #m + 1 0 09750891 -yugoslavia n 2 4 @ %m %p + 2 1 08816236 08815513 -yugoslavian n 1 3 @ #m + 1 0 09750891 -yugoslavian_dinar n 1 2 @ %p 1 0 13671182 -yugoslavian_monetary_unit n 1 2 @ ~ 1 0 13671047 -yukawa n 1 1 @ 1 0 11404402 -yukon n 2 3 @ #p %p 2 0 09482916 08830456 -yukon_river n 1 2 @ #p 1 0 09482916 -yukon_territory n 1 3 @ #p %p 1 0 08830456 -yukon_time n 1 1 @ 1 0 15132865 -yukon_white_birch n 1 2 @ #m 1 0 12283395 -yule n 1 3 @ #p %p 1 0 15196537 -yule_log n 1 1 @ 1 0 15101059 -yuletide n 1 3 @ #p %p 1 0 15196537 -yuma n 3 2 @ #p 3 0 09673091 09059125 06923492 -yuman n 1 2 @ ~ 1 0 06922045 -yunnan n 1 2 @ #p 1 0 08726463 -yunnan_province n 1 2 @ #p 1 0 08726463 -yuppie n 1 1 @ 1 0 10804923 -yurak-samoyed n 1 1 @ 1 0 06959788 -yuri_alekseyevich_gagarin n 1 1 @ 1 0 10986866 -yuri_gagarin n 1 1 @ 1 0 10986866 -yurt n 1 1 @ 1 0 04613696 -yves_tanguy n 1 1 @ 1 0 11331063 -z n 2 2 @ #m 2 0 07355014 06833890 -z-axis n 1 1 @ 1 0 06009433 -zaar n 1 1 @ 1 0 06983416 -zabaglione n 1 1 @ 1 0 07621497 -zabrze n 1 2 @ #p 1 0 08984457 -zacharias n 2 2 @ #p 2 0 11405319 06441195 -zachary_taylor n 1 1 @ 1 0 11333237 -zag n 1 1 @ 1 0 13887319 -zaglossus n 1 3 @ #m %m 1 0 01872635 -zagreb n 1 2 @ #p 1 0 08819128 -zaharias n 1 1 @ 1 0 11404666 -zaire n 2 5 @ #p %m %p + 2 0 13710443 08734385 -zaire_river n 1 2 @ #p 1 0 09252078 -zairean n 1 3 @ #m + 1 0 09751622 -zairese n 1 3 @ #m + 1 0 09751622 -zairese_monetary_unit n 1 2 @ ~ 1 0 13710317 -zakat n 1 1 @ 1 0 05914851 -zalcitabine n 1 1 @ 1 0 03190763 -zalophus n 1 3 @ #m %m 1 0 02078436 -zalophus_californianus n 1 2 @ #m 1 0 02078574 -zalophus_californicus n 1 2 @ #m 1 0 02078574 -zalophus_lobatus n 1 2 @ #m 1 0 02078738 -zama n 1 3 @ #p ; 1 0 01301423 -zaman n 1 1 @ 1 0 11759853 -zamang n 1 1 @ 1 0 11759853 -zambezi n 1 3 @ #p %p 1 0 09483129 -zambezi_river n 1 3 @ #p %p 1 0 09483129 -zambia n 1 5 @ #p %m %p + 1 0 09165613 -zambian n 1 3 @ #m + 1 0 09751772 -zambian_kwacha n 1 2 @ %p 1 0 13683578 -zambian_monetary_unit n 1 2 @ ~ 1 0 13683451 -zamboni n 1 2 @ ; 1 0 04613939 -zamia n 1 3 @ ~ #m 1 0 11601918 -zamia_family n 1 3 @ #m %m 1 0 11601487 -zamia_pumila n 1 1 @ 1 0 11602091 -zamiaceae n 1 3 @ #m %m 1 0 11601487 -zane_grey n 1 1 @ 1 0 11016075 -zangwill n 1 1 @ 1 0 11404871 -zannichellia n 1 2 @ #m 1 0 12617950 -zannichellia_palustris n 1 1 @ 1 0 12618146 -zannichelliaceae n 1 3 @ #m %m 1 0 12617739 -zantac n 1 2 @ ; 1 0 04053995 -zantedeschia n 1 3 @ #m %m 1 0 11793651 -zantedeschia_aethiopica n 1 3 @ ~ #m 1 0 11793779 -zantedeschia_rehmanii n 1 1 @ 1 0 11794024 -zanthoxylum n 1 3 @ #m %m 1 0 12714550 -zanthoxylum_americanum n 1 2 @ #m 1 0 12714949 -zanthoxylum_clava-herculis n 1 2 @ #m 1 0 12715195 -zanthoxylum_flavum n 1 1 @ 1 0 12715408 -zanthoxylum_fraxineum n 1 2 @ #m 1 0 12714949 -zanuck n 1 1 @ 1 0 11404971 -zany n 2 2 @ + 2 0 10805113 10157744 -zanzibar n 1 2 @ #p 1 0 09035458 -zanzibar_copal n 1 1 @ 1 0 14896018 -zap n 1 1 @ 1 0 07479628 -zapata n 1 1 @ 1 0 11405176 -zapodidae n 1 3 @ #m %m 1 0 02350845 -zapotec n 2 1 @ 2 0 09649372 06919122 -zapotecan n 2 1 @ 2 0 09649372 06919122 -zapper n 1 2 @ + 1 0 04614083 -zapus n 1 3 @ #m %m 1 0 02351212 -zapus_hudsonius n 1 2 @ #m 1 0 02351343 -zaragoza n 1 2 @ #p 1 0 09027679 -zarathustra n 1 1 @ 1 0 11407715 -zarf n 1 2 @ ; 1 0 04614244 -zaria n 1 2 @ #p 1 0 08974974 -zarontin n 1 2 @ ; 1 0 03300578 -zarpanit n 1 2 @ ; 1 0 09521648 -zarqa n 1 2 @ #p 1 0 08928083 -zauschneria_californica n 1 2 @ #m 1 0 12342852 -zayin n 1 2 @ #m 1 0 06837357 -zb n 3 3 @ #p %p 3 0 13631845 13631687 13631512 -zbit n 1 3 @ #p %p 1 0 13631845 -zdv n 1 1 @ 1 0 02765429 -zea n 1 3 @ #m %m 1 0 12143572 -zea_mays n 1 4 @ ~ #m %p 1 0 12143676 -zea_mays_amylacea n 1 1 @ 1 0 12145325 -zea_mays_everta n 1 2 @ %p 1 0 12145477 -zea_mays_indentata n 1 1 @ 1 0 12144987 -zea_mays_indurata n 1 1 @ 1 0 12145148 -zea_mays_rugosa n 1 2 @ #p 1 0 12144742 -zea_saccharata n 1 2 @ #p 1 0 12144742 -zeal n 3 2 @ + 3 2 07555402 07481785 04644719 -zealand n 1 3 @ #p %m 1 0 08761697 -zealander n 1 2 @ #m 1 0 09700017 -zealot n 2 2 @ ~ 2 0 10805274 10402086 -zealotry n 1 1 @ 1 0 06206334 -zeaxanthin n 1 1 @ 1 0 14721781 -zebibit n 1 3 @ #p %p 1 0 13632007 -zebibyte n 1 3 @ #p %p 1 0 13631512 -zebra n 1 3 @ ~ #m 1 0 02391049 -zebra-tailed_lizard n 1 2 @ #m 1 0 01678657 -zebra_crossing n 1 3 @ ~ ; 1 0 03904183 -zebra_finch n 1 2 @ #m 1 0 01544389 -zebra_mussel n 1 2 @ #m 1 0 01965529 -zebra_orchid n 1 2 @ #m 1 0 12048537 -zebrawood n 2 4 @ ~ #s %s 2 0 11746060 11745817 -zebrawood_family n 1 2 @ #m 1 0 11746224 -zebrawood_tree n 1 3 @ ~ %s 1 0 11745817 -zebu n 1 2 @ #m 1 0 02404906 -zechariah n 2 2 @ #p 2 0 11405319 06441195 -zed n 1 2 @ #m 1 0 06833890 -zee n 1 2 @ #m 1 0 06833890 -zeeman n 1 1 @ 1 0 11405437 -zeidae n 1 3 @ #m %m 1 0 01452633 -zeitgeist n 1 1 @ 1 0 14526635 -zellig_harris n 1 1 @ 1 0 11031016 -zellig_sabbatai_harris n 1 1 @ 1 0 11031016 -zen n 3 4 @ %m + - 3 0 08099029 06242048 02675657 -zen_buddhism n 2 3 @ %m - 2 0 08099029 06242048 -zen_buddhist n 1 3 @ #m + 1 0 09683924 -zenaidura n 1 3 @ #m %m 1 0 01814091 -zenaidura_macroura n 1 2 @ #m 1 0 01814217 -zend n 1 1 @ 1 0 06973941 -zend-avesta n 1 1 @ 1 0 06430996 -zenith n 1 4 ! @ #p + 1 1 08684769 -zeno n 2 1 @ 2 0 11405826 11405684 -zeno_of_citium n 1 1 @ 1 0 11405684 -zeno_of_elea n 1 1 @ 1 0 11405826 -zeolite n 1 2 @ ~ 1 0 15106867 -zeomorphi n 1 3 @ #m %m 1 0 01452496 -zep n 1 1 @ 1 0 07697825 -zephaniah n 2 2 @ #p 2 0 11406023 06440663 -zephyr n 2 3 @ ~ ; 2 0 11431754 09573561 -zeppelin n 2 1 @ 2 0 11406141 04614372 -zeppo n 1 2 @ #m 1 0 11161228 -zero n 4 3 @ ~ + 4 2 13740168 13742358 05856217 04614505 -zero-coupon_bond n 1 2 @ ; 1 0 13341052 -zero-coupon_security n 1 2 @ ~ 1 0 13418823 -zero-sum_game n 1 2 @ ; 1 0 00509706 -zero-tolerance_policy n 1 1 @ 1 0 06663308 -zero_coupon_bond n 1 2 @ ; 1 0 13341052 -zero_coupon_security n 1 2 @ ~ 1 0 13418823 -zero_hour n 1 1 @ 1 0 15229300 -zero_point n 1 1 @ 1 0 05856217 -zero_tolerance n 1 1 @ 1 0 06206576 -zeroth_law_of_thermodynamics n 1 1 @ 1 0 05883473 -zest n 2 2 @ + 2 1 07491981 04993108 -zestfulness n 1 2 @ + 1 0 07491981 -zestril n 1 2 @ ; 1 0 03677308 -zeta n 1 2 @ #m 1 0 06834674 -zetland n 1 2 @ #p 1 0 08954057 -zettabit n 1 3 @ #p %p 1 0 13631845 -zettabyte n 2 3 @ #p %p 2 0 13631687 13631512 -zeugma n 1 2 @ ~ 1 0 07108807 -zeus n 2 4 @ #m %m ; 2 0 09573682 01452954 -zeus_faber n 1 2 @ #m 1 0 01453087 -zhou n 1 1 @ 1 0 08479407 -zhou_dynasty n 1 1 @ 1 0 08479407 -zhou_en-lai n 1 1 @ 1 0 11406314 -zhu_jiang n 1 2 @ #p 1 0 09483340 -zhuang n 1 1 @ 1 0 06936379 -zhukov n 1 1 @ 1 0 11406460 -zib n 1 3 @ #p %p 1 0 13631512 -zibit n 1 3 @ #p %p 1 0 13632007 -zidovudine n 1 1 @ 1 0 02765429 -ziegfeld n 1 1 @ 1 0 11406700 -ziegfeld_follies n 1 1 @ 1 0 07020121 -ziegler n 1 1 @ 1 0 11406906 -zig n 1 1 @ 1 0 13887319 -zigadene n 1 3 @ ~ #m 1 0 12466727 -zigadenus n 1 3 @ #m %m 1 0 12466450 -zigadenus_elegans n 1 2 @ #m 1 0 12467018 -zigadenus_glaucus n 1 2 @ #m 1 0 12467197 -zigadenus_nuttalli n 1 2 @ #m 1 0 12467433 -zigadenus_venenosus n 1 2 @ #m 1 0 12467592 -zigadenus_venenosus_gramineus n 1 2 @ #m 1 0 12467592 -ziggurat n 1 2 @ ~ 1 0 04614655 -zigzag n 1 2 @ + 1 0 13887319 -zigzag_goldenrod n 1 1 @ 1 0 12018530 -zikkurat n 1 2 @ ~ 1 0 04614655 -zikurat n 1 2 @ ~ 1 0 04614655 -zilch n 1 2 @ ~ 1 0 13740168 -zill n 1 1 @ 1 0 04614844 -zillion n 1 1 @ 1 0 13776432 -zimbabwe n 1 5 @ #p %m %p + 1 0 09167101 -zimbabwean n 1 3 @ #m + 1 0 09751895 -zimbabwean_dollar n 1 1 @ 1 0 13674660 -zimbalist n 1 1 @ 1 0 11407048 -zimmer n 1 2 @ ; 1 0 04545471 -zimmer_frame n 1 2 @ ; 1 0 04545471 -zinacef n 1 1 @ 1 0 02990103 -zinc n 1 2 @ ~ 1 1 14661977 -zinc_blende n 1 2 @ %s 1 0 15107876 -zinc_cadmium_sulfide n 1 1 @ 1 1 15096426 -zinc_deficiency n 1 1 @ 1 0 14200704 -zinc_ointment n 1 1 @ 1 0 04615018 -zinc_oxide n 1 2 @ #s 1 0 15108087 -zinc_sulfate n 1 1 @ 1 0 15108324 -zinc_sulfide n 1 1 @ 1 0 15108538 -zinc_sulphate n 1 1 @ 1 0 15108324 -zinc_sulphide n 1 1 @ 1 0 15108538 -zinc_vitriol n 1 1 @ 1 0 15108324 -zinc_white n 1 2 @ %s 1 0 15108745 -zinfandel n 2 3 @ #s %s 2 0 13147386 07898333 -zing n 2 1 @ 2 0 07400701 04635482 -zinger n 1 1 @ 1 0 07282695 -zingiber n 1 3 @ #m %m 1 0 12355594 -zingiber_officinale n 1 2 @ %p 1 0 12356023 -zingiberaceae n 1 3 @ #m %m 1 0 12355320 -zinjanthropus n 1 1 @ 1 0 02477187 -zinkenite n 1 1 @ 1 0 15108897 -zinnemann n 1 1 @ 1 0 11407175 -zinnia n 1 3 @ ~ #m 1 0 12034141 -zinnia_acerosa n 1 1 @ 1 0 12034384 -zinnia_grandiflora n 1 1 @ 1 0 12034594 -zinnwaldite n 1 2 @ %s 1 0 15109016 -zinsser n 1 1 @ 1 0 11407302 -zinzendorf n 1 1 @ 1 0 11407465 -zion n 3 5 @ #p %m %p - 3 0 08796351 08792548 05632056 -zion_national_park n 1 2 @ #p 1 0 08610810 -zionism n 2 2 @ + 2 1 06663463 08479202 -zionist n 1 2 @ + 1 1 10805501 -zionist_movement n 1 1 @ 1 0 08479202 -zip n 4 4 @ ~ #p + 4 0 13740168 06355705 05035961 04238321 -zip_code n 1 2 @ #p 1 0 06355705 -zip_fastener n 1 2 @ #p 1 0 04238321 -zip_gun n 1 1 @ 1 0 04615149 -ziphiidae n 1 3 @ #m %m 1 0 02067941 -zipper n 1 3 @ #p + 1 0 04238321 -zippo n 1 2 @ ~ 1 0 13740168 -zirbanit n 1 2 @ ; 1 0 09521648 -zircon n 1 3 @ ~ %s 1 0 15109127 -zirconia n 1 1 @ 1 0 15109391 -zirconium n 1 2 @ #s 1 0 14662281 -zirconium_dioxide n 1 1 @ 1 0 15109391 -zirconium_oxide n 1 1 @ 1 0 15109391 -zirconium_silicate n 1 3 @ ~ %s 1 0 15109127 -zit n 1 2 @ ~ 1 0 14334306 -zither n 1 2 @ ~ 1 0 04615226 -zithern n 1 2 @ ~ 1 0 04615226 -zithromax n 1 1 @ 1 0 02765656 -ziti n 1 1 @ 1 0 07700255 -zizania n 1 3 @ #m %m 1 0 12145802 -zizania_aquatica n 1 3 @ #m %p 1 0 12145919 -ziziphus n 1 3 @ #m %m 1 0 13143097 -ziziphus_jujuba n 1 3 @ #m %p 1 0 13143285 -ziziphus_lotus n 1 2 @ #m 1 0 13143483 -zizz n 2 2 @ ; 2 0 07479799 00858742 -zloty n 1 2 @ %p 1 1 13710777 -zn n 1 2 @ ~ 1 0 14661977 -zoanthropy n 1 1 @ 1 0 14379017 -zoarces n 1 3 @ #m %m 1 0 02617402 -zoarces_viviparus n 1 2 @ #m 1 0 02617537 -zoarcidae n 1 3 @ #m %m 1 0 02617029 -zocor n 1 2 @ ; 1 0 04221994 -zodiac n 2 5 @ #p %p + ; 2 0 08685188 04615456 -zodiacal_light n 1 1 @ 1 1 11527556 -zoisia n 1 3 @ #m %m 1 0 12146100 -zola n 1 1 @ 1 0 11407591 -zollinger-ellison_syndrome n 1 1 @ 1 0 14471054 -zoloft n 1 2 @ ; 1 0 04174853 -zomba n 1 2 @ #p 1 0 08963244 -zombi n 5 3 @ %s ; 5 0 10805932 10805783 10805638 09825519 07919165 -zombi_spirit n 1 2 @ ; 1 0 10805932 -zombie n 5 3 @ %s ; 5 1 10805638 10805932 10805783 09825519 07919165 -zombie_spirit n 1 2 @ ; 1 0 10805932 -zona n 1 3 @ ~ ; 1 0 05611062 -zona_pellucida n 1 1 @ 1 0 05608615 -zonal_pelargonium n 1 2 @ #m 1 0 12687698 -zone n 4 4 @ ~ + ; 4 1 08688247 08541841 08509442 05611062 -zone_fire n 1 1 @ 1 0 00994989 -zone_of_interior n 1 2 @ #p 1 0 08551984 -zoning n 1 2 @ #m 1 1 00928751 -zoning_board n 1 1 @ 1 0 08413529 -zoning_commission n 1 1 @ 1 0 08413681 -zonotrichia n 1 3 @ #m %m 1 0 01535310 -zonotrichia_albicollis n 1 2 @ #m 1 0 01535469 -zonotrichia_leucophrys n 1 2 @ #m 1 0 01535690 -zonula n 1 1 @ 1 0 05611221 -zonule n 1 1 @ 1 0 05611221 -zoo n 1 1 @ 1 1 03745146 -zoo_keeper n 1 1 @ 1 0 10806113 -zooerastia n 1 1 @ 1 0 00858060 -zooerasty n 1 1 @ 1 0 00858060 -zooflagellate n 1 2 @ #m 1 0 01418620 -zooid n 1 1 @ 1 0 01416213 -zoolatry n 1 2 @ ~ 1 0 01046441 -zoological_garden n 1 1 @ 1 0 03745146 -zoological_science n 1 3 @ ~ - 1 0 06083243 -zoologist n 1 3 @ ~ + 1 0 10806222 -zoology n 2 6 @ ~ #m %m + - 2 0 07993279 06083243 -zoom n 2 2 @ + 2 0 07375525 00326291 -zoom_lens n 1 1 @ 1 0 04403413 -zoomastigina n 1 3 @ #m %m 1 0 01418237 -zoomastigote n 1 2 @ #m 1 0 01418620 -zoomorphism n 1 1 @ 1 0 05735145 -zoonosis n 1 3 @ ~ + 1 0 14276649 -zoonotic_disease n 1 2 @ ~ 1 0 14276649 -zoophilia n 1 1 @ 1 0 00738598 -zoophilism n 1 1 @ 1 0 00738598 -zoophobia n 1 2 @ ~ 1 0 14384796 -zoophyte n 1 1 @ 1 0 01906178 -zooplankton n 1 2 @ #m 1 0 01384164 -zoopsia n 1 1 @ 1 0 14378586 -zoospore n 1 1 @ 1 0 11549895 -zoot_suit n 1 1 @ 1 0 04615644 -zootoxin n 1 2 @ ~ 1 0 15034741 -zori n 1 1 @ 1 0 04027706 -zoril n 1 2 @ #m 1 0 02444384 -zoroaster n 1 2 @ + 1 0 11407715 -zoroastrian n 1 2 @ + 1 0 09686146 -zoroastrianism n 1 3 @ ~ - 1 0 06244149 -zoster n 1 1 @ 1 0 14132829 -zostera n 1 3 @ #m %m 1 0 12618524 -zostera_marina n 1 2 @ #m 1 0 12618727 -zosteraceae n 1 2 @ #m 1 0 12618336 -zovirax n 1 2 @ ; 1 0 02678528 -zoysia n 1 3 @ ~ #m 1 0 12146311 -zoysia_japonica n 1 1 @ 1 0 12146654 -zoysia_matrella n 1 1 @ 1 0 12146488 -zoysia_tenuifolia n 1 1 @ 1 0 12146823 -zr n 1 2 @ #s 1 0 14662281 -zsigmondy n 1 1 @ 1 0 11407865 -zu n 1 2 @ ; 1 0 09522615 -zubird n 1 2 @ ; 1 0 09522615 -zucchini n 2 3 @ #p %p 2 0 12159804 07716358 -zuider_zee n 1 2 @ #p 1 0 09483519 -zukerman n 1 1 @ 1 0 11408041 -zulu n 3 2 @ #m 3 0 09752023 08489392 06994792 -zuni n 1 1 @ 1 0 09673232 -zurich n 1 2 @ #p 1 0 09033117 -zurvan n 1 1 @ 1 0 10806612 -zurvanism n 2 1 @ 2 0 08151096 06251553 -zweig n 1 1 @ 1 0 11408148 -zwieback n 1 1 @ 1 0 07689842 -zwingli n 1 1 @ 1 0 11408243 -zworykin n 1 1 @ 1 0 11408414 -zydeco n 1 1 @ 1 0 07062550 -zygnema n 1 2 @ #m 1 0 01410330 -zygnemales n 1 3 @ #m %m 1 0 01409940 -zygnemataceae n 1 3 @ #m %m 1 0 01410109 -zygnematales n 1 3 @ #m %m 1 0 01409940 -zygocactus n 1 3 @ #m %m 1 0 11854232 -zygocactus_truncatus n 1 2 @ #m 1 0 11854479 -zygodactyl_foot n 1 2 ! @ 1 0 02154824 -zygoma n 1 3 @ #p + 1 0 05284851 -zygomatic n 1 3 @ #p %p 1 0 05273822 -zygomatic_arch n 1 2 @ #p 1 0 05284851 -zygomatic_bone n 1 3 @ #p %p 1 0 05273822 -zygomatic_process n 1 2 @ #p 1 0 05546383 -zygomycetes n 1 3 @ #m %m 1 0 12972629 -zygomycota n 1 3 @ #m %m 1 0 12972414 -zygomycotina n 1 3 @ #m %m 1 0 12972414 -zygophyllaceae n 1 3 @ #m %m 1 0 12720532 -zygophyllum n 1 3 @ #m %m 1 0 12720893 -zygophyllum_fabago n 1 2 @ #m 1 0 12721122 -zygoptera n 1 2 @ #m 1 0 02268746 -zygospore n 1 1 @ 1 0 13239921 -zygote n 1 4 @ ~ + ; 1 0 05431926 -zygotene n 1 2 @ #p 1 0 13575109 -zyloprim n 1 2 @ ; 1 0 02698036 -zymase n 1 1 @ 1 0 15109586 -zymogen n 1 1 @ 1 0 14691445 -zymology n 1 1 @ 1 0 06080361 -zymolysis n 1 3 @ ~ + 1 0 13575433 -zymosis n 2 4 @ ~ + ; 2 0 13575433 13575226 -zymurgy n 1 1 @ 1 0 06080361 -zyrian n 1 1 @ 1 0 06957042 diff --git a/corpora/en/wordnet/dict/index.sense b/corpora/en/wordnet/dict/index.sense deleted file mode 100644 index 26113e618..000000000 --- a/corpora/en/wordnet/dict/index.sense +++ /dev/null @@ -1,206941 +0,0 @@ -'hood%1:15:00:: 08641944 1 0 -'s_gravenhage%1:15:00:: 08950407 1 0 -'tween%4:02:00:: 00250898 1 0 -'tween_decks%4:02:00:: 00498293 1 0 -.22%1:06:00:: 04502851 1 0 -.22-caliber%3:01:00:: 03146310 1 0 -.22-calibre%3:01:00:: 03146310 1 0 -.22_caliber%3:01:00:: 03146310 1 0 -.22_calibre%3:01:00:: 03146310 1 0 -.38-caliber%3:01:00:: 03146602 1 0 -.38-calibre%3:01:00:: 03146602 1 0 -.38_caliber%3:01:00:: 03146602 1 0 -.38_calibre%3:01:00:: 03146602 1 0 -.45-caliber%3:01:00:: 03146895 1 0 -.45-calibre%3:01:00:: 03146895 1 0 -.45_caliber%3:01:00:: 03146895 1 0 -.45_calibre%3:01:00:: 03146895 1 0 -0%1:23:00:: 13742358 1 20 -0%5:00:00:cardinal:00 02186132 1 3 -1%1:23:00:: 13742573 1 21 -1%5:00:00:cardinal:00 02186338 1 107 -1-dodecanol%1:27:00:: 14930670 1 0 -1-hitter%1:04:00:: 00475142 1 0 -10%1:23:00:: 13746512 1 4 -10%5:00:00:cardinal:00 02187296 1 69 -10-membered%5:00:00:membered:00 01503760 1 0 -100%1:23:00:: 13750415 1 5 -100%5:00:00:cardinal:00 02196107 1 33 -1000%1:23:00:: 13750844 1 0 -1000%5:00:00:cardinal:00 02198752 1 19 -10000%1:23:00:: 13751265 1 0 -100000%1:23:00:: 13751404 1 1 -1000000%1:23:00:: 13751533 1 0 -1000000000%1:23:00:: 13751829 1 0 -1000000000000%1:23:00:: 13752172 2 0 -1000000000000%1:23:01:: 13752443 1 0 -1000th%5:00:00:ordinal:00 02212473 1 0 -100th%5:00:00:ordinal:00 02209423 1 0 -101%5:00:00:cardinal:00 02196211 1 0 -101st%5:00:00:ordinal:00 02209551 1 0 -105%5:00:00:cardinal:00 02196333 1 0 -105th%5:00:00:ordinal:00 02209678 1 0 -10th%5:00:00:ordinal:00 02203373 1 0 -11%1:23:00:: 13746672 1 6 -11%5:00:00:cardinal:00 02187379 1 10 -11-plus%1:04:00:: 00637145 1 0 -110%5:00:00:cardinal:00 02196439 1 0 -110th%5:00:00:ordinal:00 02209806 1 0 -115%5:00:00:cardinal:00 02196543 1 0 -115th%5:00:00:ordinal:00 02209933 1 0 -11_november%1:28:00:: 15185837 1 0 -11th%5:00:00:ordinal:00 02203500 1 2 -12%1:23:00:: 13746785 1 6 -12%5:00:00:cardinal:00 02187465 1 25 -12-tone_music%1:10:00:: 07057539 1 0 -12-tone_system%1:10:00:: 07057539 1 0 -120%1:23:00:: 13750574 1 0 -120%5:00:00:cardinal:00 02196657 1 0 -120th%5:00:00:ordinal:00 02210068 1 0 -125%5:00:00:cardinal:00 02196769 1 0 -125th%5:00:00:ordinal:00 02210202 1 0 -12th%5:00:00:ordinal:00 02203629 1 0 -13%1:23:00:: 13747199 1 0 -13%5:00:00:cardinal:00 02187606 1 11 -130%5:00:00:cardinal:00 02196891 1 0 -130th%5:00:00:ordinal:00 02210344 1 0 -135%5:00:00:cardinal:00 02197007 1 0 -135th%5:00:00:ordinal:00 02210478 1 0 -13th%5:00:00:ordinal:00 02203763 1 2 -14%1:23:00:: 13747348 1 1 -14%5:00:00:cardinal:00 02187699 1 19 -140%5:00:00:cardinal:00 02197130 1 0 -140th%5:00:00:ordinal:00 02210620 1 0 -144%1:23:00:: 13750504 1 0 -145%5:00:00:cardinal:00 02197244 1 0 -145th%5:00:00:ordinal:00 02210752 1 0 -14_july%1:28:00:: 15200493 1 0 -14th%5:00:00:ordinal:00 02203868 1 1 -15%1:23:00:: 13747469 1 4 -15%5:00:00:cardinal:00 02187793 1 34 -150%5:00:00:cardinal:00 02197364 1 0 -150th%5:00:00:ordinal:00 02210892 1 0 -1530s%1:28:00:: 15148787 1 0 -155%5:00:00:cardinal:00 02197476 1 0 -155th%5:00:00:ordinal:00 02211024 1 0 -15_august_1945%1:28:00:: 15162882 1 0 -15_may_organization%1:14:00:: 08039312 1 0 -15_minutes%1:28:00:: 15228267 1 8 -15th%5:00:00:ordinal:00 02203976 1 8 -16%1:23:00:: 13747606 1 4 -16%5:00:00:cardinal:00 02187903 1 17 -160%5:00:00:cardinal:00 02197595 1 0 -160th%5:00:00:ordinal:00 02211164 1 0 -165%5:00:00:cardinal:00 02197708 1 0 -165th%5:00:00:ordinal:00 02211296 1 0 -16_pf%1:10:00:: 06475933 1 0 -16th%5:00:00:ordinal:00 02204131 1 0 -17%1:23:00:: 13747725 1 1 -17%5:00:00:cardinal:00 02187995 1 7 -170%5:00:00:cardinal:00 02197828 1 0 -170th%5:00:00:ordinal:00 02211436 1 0 -1728%1:23:00:: 13751158 1 0 -175%5:00:00:cardinal:00 02197944 1 0 -1750s%1:28:00:: 15149933 1 0 -175th%5:00:00:ordinal:00 02211572 1 0 -1760s%1:28:00:: 15150304 1 0 -1770s%1:28:00:: 15150790 1 0 -1780s%1:28:00:: 15151175 1 0 -1790s%1:28:00:: 15151561 1 0 -17_november%1:14:00:: 08042536 1 0 -17th%5:00:00:ordinal:00 02204237 1 4 -18%1:23:00:: 13747865 1 0 -18%5:00:00:cardinal:00 02188108 1 18 -18-karat_gold%1:27:00:: 14639269 1 0 -180%5:00:00:cardinal:00 02198069 1 0 -180th%5:00:00:ordinal:00 02211716 1 0 -1820s%1:28:00:: 15148958 1 0 -1830s%1:28:00:: 15149271 1 0 -1840s%1:28:00:: 15149562 1 0 -1850s%1:28:00:: 15149853 1 0 -1860s%1:28:00:: 15150224 1 0 -1870s%1:28:00:: 15150710 1 0 -1880s%1:28:00:: 15151084 1 0 -1890s%1:28:00:: 15151470 1 0 -18th%5:00:00:ordinal:00 02204363 1 2 -19%1:23:00:: 13747989 1 2 -19%5:00:00:cardinal:00 02188205 1 8 -190%5:00:00:cardinal:00 02198187 1 0 -1900s%1:28:00:: 15148707 1 0 -190th%5:00:00:ordinal:00 02211850 1 0 -1920s%1:28:00:: 15148867 1 0 -1930s%1:28:00:: 15149180 1 0 -1940s%1:28:00:: 15149472 1 0 -1950s%1:28:00:: 15149763 1 0 -1960s%1:28:00:: 15150134 1 0 -1970s%1:28:00:: 15150618 1 0 -1980s%1:28:00:: 15150993 1 0 -1990s%1:28:00:: 15151379 1 0 -19th%5:00:00:ordinal:00 02204472 1 7 -1_chronicles%1:10:00:: 06435651 1 0 -1_esdras%1:10:00:: 06459978 1 0 -1_kings%1:10:00:: 06435004 1 0 -1_maccabees%1:10:00:: 06460776 1 0 -1_samuel%1:10:00:: 06434650 1 0 -1st%5:00:00:ordinal:00 02202047 1 2 -1st-class_mail%1:10:00:: 06265272 1 0 -1st_baron_beaverbrook%1:18:00:: 10839791 1 0 -1st_baron_verulam%1:18:00:: 10830456 1 0 -1st_class%1:10:00:: 06265272 1 0 -1st_earl_attlee%1:18:00:: 10827873 1 0 -1st_earl_baldwin_of_bewdley%1:18:00:: 10832085 1 0 -1st_earl_of_balfour%1:18:00:: 10832568 1 0 -1st_lieutenant%1:18:00:: 10092978 1 0 -1st_viscount_montgomery_of_alamein%1:18:00:: 11188316 1 0 -2%1:23:00:: 13743269 1 12 -2%5:00:00:cardinal:00 02186470 1 96 -2-dimensional%5:00:00:multidimensional:00 00660551 1 0 -2-hitter%1:04:00:: 00475273 1 0 -2-hydroxybenzoic_acid%1:27:00:: 15010038 1 0 -2-methylpropenoic_acid%1:27:00:: 14615822 1 0 -20%1:23:00:: 13748128 1 4 -20%5:00:00:cardinal:00 02188317 1 32 -20/20%1:09:00:: 05655810 1 0 -200%5:00:00:cardinal:00 02198302 1 0 -200th%5:00:00:ordinal:00 02211989 1 0 -20th%5:00:00:ordinal:00 02204716 1 6 -21%1:23:00:: 13748246 1 2 -21%5:00:00:cardinal:00 02188431 1 12 -21st%5:00:00:ordinal:00 02204823 1 0 -22%1:23:00:: 13748367 1 4 -22%5:00:00:cardinal:00 02188525 1 13 -22-karat_gold%1:27:00:: 14639368 1 0 -22nd%5:00:00:ordinal:00 02204932 1 0 -23%1:23:00:: 13748493 1 1 -23%5:00:00:cardinal:00 02188620 1 8 -23rd%5:00:00:ordinal:00 02205045 1 0 -24%1:23:00:: 13748622 1 3 -24%5:00:00:cardinal:00 02188720 1 24 -24-hour_interval%1:28:00:: 15155220 1 0 -24-karat_gold%1:27:00:: 14639467 1 0 -24/7%1:28:00:: 15118011 1 0 -24th%5:00:00:ordinal:00 02205158 1 1 -25%1:23:00:: 13748763 1 3 -25%5:00:00:cardinal:00 02188817 1 31 -25th%5:00:00:ordinal:00 02205271 1 1 -26%1:23:00:: 13748890 1 1 -26%5:00:00:cardinal:00 02188913 1 10 -26th%5:00:00:ordinal:00 02205384 1 0 -27%1:23:00:: 13749017 1 1 -27%5:00:00:cardinal:00 02189008 1 7 -27th%5:00:00:ordinal:00 02205496 1 0 -28%1:23:00:: 13749146 1 0 -28%5:00:00:cardinal:00 02189108 1 4 -28th%5:00:00:ordinal:00 02205610 1 0 -29%1:23:00:: 13749278 1 4 -29%5:00:00:cardinal:00 02189209 1 6 -29th%5:00:00:ordinal:00 02205725 1 0 -2_chronicles%1:10:00:: 06435916 1 0 -2_esdras%1:10:00:: 06460167 1 0 -2_kings%1:10:00:: 06435198 1 0 -2_maccabees%1:10:00:: 06460926 1 0 -2_samuel%1:10:00:: 06434826 1 0 -2d%5:00:00:ordinal:00 02202146 1 1 -2nd%5:00:00:ordinal:00 02202146 1 0 -2nd_lieutenant%1:18:00:: 10569011 1 0 -3%1:23:00:: 13744044 1 9 -3%5:00:00:cardinal:00 02186580 1 77 -3-d%1:09:00:: 05939948 2 0 -3-d%1:10:00:: 06618937 1 0 -3-dimensional%5:00:00:multidimensional:00 00660809 1 0 -3-hitter%1:04:00:: 00475403 1 1 -3-membered%5:00:00:membered:00 01502796 1 0 -30%1:23:00:: 13749407 1 4 -30%5:00:00:cardinal:00 02189306 1 27 -300%5:00:00:cardinal:00 02198409 1 0 -300th%5:00:00:ordinal:00 02212108 1 0 -30_minutes%1:28:00:: 15228162 1 15 -30th%5:00:00:ordinal:00 02205838 1 2 -31%5:00:00:cardinal:00 02189396 1 0 -31st%5:00:00:ordinal:00 02205947 1 0 -32%5:00:00:cardinal:00 02189491 1 0 -32nd%5:00:00:ordinal:00 02206056 1 0 -33%5:00:00:cardinal:00 02189587 1 0 -33rd%5:00:00:ordinal:00 02206173 1 0 -34%5:00:00:cardinal:00 02189688 1 0 -34th%5:00:00:ordinal:00 02206291 1 0 -35%5:00:00:cardinal:00 02189786 1 0 -35th%5:00:00:ordinal:00 02206409 1 0 -36%5:00:00:cardinal:00 02189883 1 0 -365_days%1:28:00:: 15202131 1 0 -366_days%1:28:00:: 15202230 1 0 -36th%5:00:00:ordinal:00 02206526 1 0 -37%5:00:00:cardinal:00 02189979 1 0 -37th%5:00:00:ordinal:00 02206642 1 0 -38%5:00:00:cardinal:00 02190080 1 0 -38th%5:00:00:ordinal:00 02206762 1 0 -39%5:00:00:cardinal:00 02190182 1 0 -39th%5:00:00:ordinal:00 02206881 1 0 -3d%1:09:00:: 05939948 2 0 -3d%1:10:00:: 06618937 1 0 -3d_radar%1:06:00:: 04427559 1 0 -3rd%5:00:00:ordinal:00 02202307 1 1 -3rd_october_organization%1:14:00:: 08016385 1 0 -3tc%1:06:00:: 03636062 1 0 -4%1:23:00:: 13744304 1 13 -4%5:00:00:cardinal:00 02186665 1 51 -4-dimensional%5:00:00:multidimensional:00 00661146 1 0 -4-hitter%1:04:00:: 00475535 1 0 -4-membered%5:00:00:membered:00 01502925 1 0 -40%1:23:00:: 13749527 1 3 -40%5:00:00:cardinal:00 02190278 1 19 -400%5:00:00:cardinal:00 02198520 1 0 -400th%5:00:00:ordinal:00 02212231 1 0 -401-k%1:09:00:: 05911560 1 0 -401-k_plan%1:09:00:: 05911560 1 0 -40th%5:00:00:ordinal:00 02206998 1 0 -41%5:00:00:cardinal:00 02190377 1 0 -41st%5:00:00:ordinal:00 02207105 1 0 -42%5:00:00:cardinal:00 02190469 1 0 -42nd%5:00:00:ordinal:00 02207219 1 0 -43%5:00:00:cardinal:00 02190562 1 0 -43rd%5:00:00:ordinal:00 02207334 1 0 -44%5:00:00:cardinal:00 02190660 1 0 -440_yards%1:23:00:: 13651931 1 0 -44th%5:00:00:ordinal:00 02207450 1 0 -45%5:00:00:cardinal:00 02190755 1 0 -45th%5:00:00:ordinal:00 02207566 1 0 -46%5:00:00:cardinal:00 02190849 1 0 -46th%5:00:00:ordinal:00 02207681 1 0 -47%5:00:00:cardinal:00 02190942 1 0 -47th%5:00:00:ordinal:00 02207795 1 0 -48%5:00:00:cardinal:00 02191040 1 0 -48th%5:00:00:ordinal:00 02207913 1 0 -49%5:00:00:cardinal:00 02191139 1 0 -49th%5:00:00:ordinal:00 02208030 1 0 -4th%5:00:00:ordinal:00 02202443 1 4 -4to%1:07:00:: 05096820 1 0 -4wd%1:06:00:: 03389611 2 0 -4wd%1:06:01:: 03389761 1 0 -5%1:23:00:: 13744521 1 5 -5%5:00:00:cardinal:00 02186750 1 52 -5-hitter%1:04:00:: 00475661 1 0 -5-hydroxy-3-methylglutaryl-coenzyme_a_reductase%1:27:00:: 14612444 1 0 -5-hydroxytryptamine%1:27:00:: 14808273 1 0 -5-membered%5:00:00:membered:00 01503052 1 0 -50%1:23:00:: 13749644 1 5 -50%5:00:00:cardinal:00 02191232 1 34 -500%1:23:00:: 13750712 1 0 -500%5:00:00:cardinal:00 02198631 1 9 -500th%5:00:00:ordinal:00 02212352 1 0 -50th%5:00:00:ordinal:00 02208145 1 0 -51%5:00:00:cardinal:00 02191336 1 0 -52%5:00:00:cardinal:00 02191427 1 0 -53%5:00:00:cardinal:00 02191519 1 0 -54%5:00:00:cardinal:00 02191616 1 0 -55%5:00:00:cardinal:00 02191710 1 0 -55th%5:00:00:ordinal:00 02208270 1 0 -56%5:00:00:cardinal:00 02191803 1 0 -57%5:00:00:cardinal:00 02191895 1 0 -58%5:00:00:cardinal:00 02191992 1 0 -59%5:00:00:cardinal:00 02192090 1 0 -5th%5:00:00:ordinal:00 02202712 1 0 -6%1:23:00:: 13744722 1 2 -6%5:00:00:cardinal:00 02186833 1 43 -6-membered%5:00:00:membered:00 01503179 1 0 -60%1:23:00:: 13749778 1 0 -60%5:00:00:cardinal:00 02192184 1 20 -60_minutes%1:28:00:: 15227846 1 0 -60th%5:00:00:ordinal:00 02208385 1 0 -61%5:00:00:cardinal:00 02192284 1 0 -62%5:00:00:cardinal:00 02192376 1 0 -63%5:00:00:cardinal:00 02192469 1 0 -64%5:00:00:cardinal:00 02192567 1 0 -64th%5:00:00:ordinal:00 02208492 1 0 -65%5:00:00:cardinal:00 02192662 1 0 -65th%5:00:00:ordinal:00 02208608 1 0 -66%5:00:00:cardinal:00 02192756 1 0 -67%5:00:00:cardinal:00 02192849 1 0 -68%5:00:00:cardinal:00 02192947 1 0 -69%5:00:00:cardinal:00 02193046 1 0 -6_june_1944%1:28:00:: 15162523 1 0 -6th%5:00:00:ordinal:00 02202854 1 4 -7%1:23:00:: 13744916 1 3 -7%5:00:00:cardinal:00 02186970 1 23 -7-membered%5:00:00:membered:00 01503375 1 0 -70%1:23:00:: 13749894 1 1 -70%5:00:00:cardinal:00 02193141 1 9 -70th%5:00:00:ordinal:00 02208723 1 1 -71%5:00:00:cardinal:00 02193249 1 0 -72%5:00:00:cardinal:00 02193346 1 0 -73%5:00:00:cardinal:00 02193444 1 0 -74%5:00:00:cardinal:00 02193547 1 0 -75%5:00:00:cardinal:00 02193647 1 0 -75th%5:00:00:ordinal:00 02208852 1 0 -76%5:00:00:cardinal:00 02193746 1 0 -77%5:00:00:cardinal:00 02193844 1 0 -78%1:06:00:: 04178190 2 0 -78%1:23:00:: 13750033 1 0 -78%5:00:00:cardinal:00 02193947 1 0 -79%5:00:00:cardinal:00 02194051 1 0 -7th%5:00:00:ordinal:00 02202979 1 0 -8%1:23:00:: 13745086 1 3 -8%5:00:00:cardinal:00 02187073 1 35 -8-membered%5:00:00:membered:00 01503504 1 0 -80%1:23:00:: 13750164 1 0 -80%5:00:00:cardinal:00 02194151 1 7 -80th%5:00:00:ordinal:00 02208971 1 0 -81%5:00:00:cardinal:00 02194255 1 0 -82%5:00:00:cardinal:00 02194351 1 0 -83%5:00:00:cardinal:00 02194448 1 0 -84%5:00:00:cardinal:00 02194550 1 0 -85%5:00:00:cardinal:00 02194649 1 0 -85th%5:00:00:ordinal:00 02209080 1 0 -86%5:00:00:cardinal:00 02194747 1 0 -87%5:00:00:cardinal:00 02194844 1 0 -88%5:00:00:cardinal:00 02194946 1 0 -880_yards%1:23:00:: 13651804 1 0 -89%5:00:00:cardinal:00 02195049 1 0 -8_may_1945%1:28:00:: 15162764 1 0 -8th%5:00:00:ordinal:00 02203123 1 0 -8vo%1:07:00:: 05096408 1 0 -9%1:23:00:: 13745270 1 6 -9%5:00:00:cardinal:00 02187161 1 13 -9-11%1:28:00:: 15300051 1 0 -9-membered%5:00:00:membered:00 01503633 1 0 -9/11%1:28:00:: 15300051 1 0 -90%1:23:00:: 13750297 1 0 -90%5:00:00:cardinal:00 02195145 1 6 -90th%5:00:00:ordinal:00 02209197 1 0 -91%5:00:00:cardinal:00 02195234 1 0 -92%5:00:00:cardinal:00 02195328 1 0 -93%5:00:00:cardinal:00 02195423 1 0 -94%5:00:00:cardinal:00 02195523 1 0 -95%5:00:00:cardinal:00 02195620 1 0 -95th%5:00:00:ordinal:00 02209306 1 0 -96%5:00:00:cardinal:00 02195716 1 0 -97%5:00:00:cardinal:00 02195811 1 0 -98%5:00:00:cardinal:00 02195911 1 0 -99%5:00:00:cardinal:00 02196012 1 0 -9th%5:00:00:ordinal:00 02203249 1 0 -a%1:08:00:: 05400860 7 0 -a%1:10:00:: 06831177 6 0 -a%1:23:00:: 13637376 5 0 -a%1:23:01:: 13658027 1 6 -a%1:27:00:: 15089803 2 0 -a%1:27:01:: 14829565 3 0 -a%1:27:02:: 14706889 4 0 -a'man%1:14:00:: 08346286 1 0 -a-bomb%1:06:00:: 02753044 1 0 -a-horizon%1:15:00:: 08658469 1 0 -a-line%1:06:00:: 02697221 1 0 -a-list%1:10:00:: 06485431 1 0 -a-ok%5:00:00:go:00 01122907 1 0 -a-okay%5:00:00:go:00 01122907 1 0 -a-one%5:00:00:superior:02 02341864 1 0 -a-scan_ultrasonography%1:04:00:: 00902108 1 0 -a-team%1:14:00:: 08077035 1 0 -a._a._michelson%1:18:00:: 11178393 1 0 -a._a._milne%1:18:00:: 11180812 1 0 -a._conan_doyle%1:18:00:: 10906462 1 0 -a._e._burnside%1:18:00:: 10873937 1 0 -a._e._housman%1:18:00:: 11061734 1 0 -a._e._kennelly%1:18:00:: 11101250 1 0 -a._e._w._mason%1:18:00:: 11162915 1 0 -a._noam_chomsky%1:18:00:: 10896452 1 0 -a._testudineus%1:05:00:: 02556373 1 0 -a.d.%4:02:00:: 00001837 1 0 -a.e.%1:18:00:: 11275035 1 0 -a.k.a.%4:02:00:: 00270446 1 0 -a.m.%4:02:00:: 00251304 1 0 -a.m.%5:00:00:antemeridian:00 00130518 1 0 -a_battery%1:06:00:: 02666624 1 0 -a_bit%4:02:00:: 00033663 1 21 -a_capella_singing%1:04:00:: 00546070 1 0 -a_cappella%4:02:00:: 00001740 1 0 -a_cappella%5:00:00:unaccompanied:01 02252352 1 0 -a_cappella_singing%1:04:00:: 00546070 1 0 -a_couple_of%5:00:00:few:00 01553340 1 26 -a_few%5:00:00:few:00 01553340 1 138 -a_fortiori%4:02:00:: 00063483 1 1 -a_good_deal%4:02:00:: 00059171 1 0 -a_great_deal%4:02:00:: 00059171 1 1 -a_great_deal%4:02:03:: 00059413 2 0 -a_horizon%1:15:00:: 08658469 1 0 -a_hundred_times%4:02:00:: 00359932 1 1 -a_kempis%1:18:00:: 10810818 1 0 -a_la_carte%1:10:00:: 06497117 1 0 -a_la_carte%3:00:00:: 02453183 1 0 -a_la_carte%4:02:00:: 00257981 1 0 -a_la_mode%4:02:00:: 00498182 1 0 -a_la_mode%5:00:00:fashionable:00 00971506 1 0 -a_level%1:26:00:: 14431015 1 0 -a_little%4:02:00:: 00033663 1 80 -a_lot%4:02:00:: 00059171 1 17 -a_million_times%4:02:00:: 00344659 1 0 -a_posteriori%3:00:00:: 00139126 1 0 -a_posteriori%4:02:00:: 00251525 1 0 -a_posteriori%5:00:00:empirical:00 00859350 2 0 -a_priori%3:00:00:: 00138912 1 0 -a_priori%4:02:00:: 00251611 1 0 -a_priori%5:00:00:theoretical:00 00861109 2 0 -a_trifle%4:02:00:: 00033663 1 9 -aa%1:10:00:: 06697935 3 0 -aa%1:14:00:: 08010191 2 0 -aa%1:27:00:: 14931472 1 0 -aaa%1:26:00:: 14106456 1 0 -aachen%1:15:00:: 08769439 1 0 -aah%2:32:00:: 00865776 1 0 -aaland_islands%1:15:00:: 08780510 1 0 -aalborg%1:15:00:: 08762243 1 0 -aalii%1:20:00:: 12740967 1 0 -aalst%1:15:00:: 08850663 1 0 -aalto%1:18:00:: 10806693 1 0 -aar%1:17:00:: 09186064 1 0 -aardvark%1:05:00:: 02082791 1 0 -aardwolf%1:05:00:: 02118176 1 0 -aare%1:17:00:: 09186064 1 0 -aare_river%1:17:00:: 09186064 1 0 -aarhus%1:15:00:: 08762104 1 0 -aaron%1:18:00:: 10806841 2 0 -aaron%1:18:01:: 10807016 1 0 -aaron's_rod%1:20:00:: 12889713 1 0 -aaron_burr%1:18:00:: 10874162 1 0 -aaron_copland%1:18:00:: 10909929 1 0 -aaron_montgomery_ward%1:18:00:: 11373897 1 0 -aarp%1:14:00:: 08487149 1 0 -aas%1:10:00:: 06698031 1 0 -aave%1:10:00:: 06947658 1 0 -ab%1:08:00:: 05401096 4 0 -ab%1:08:01:: 05557339 3 0 -ab%1:10:00:: 06698640 1 1 -ab%1:28:00:: 15216563 2 0 -ab_initio%4:02:00:: 00103194 1 0 -aba%1:06:00:: 02665985 2 0 -aba%1:06:01:: 02666079 1 0 -aba_transit_number%1:10:00:: 06425534 1 0 -abaca%1:20:00:: 12353431 2 0 -abaca%1:27:00:: 14947558 1 0 -abacinate%2:39:00:: 02168378 1 0 -aback%4:02:00:: 00075656 2 0 -aback%4:02:01:: 00075739 1 0 -abactinal%3:00:00:: 01665972 1 0 -abacus%1:06:00:: 02666196 2 0 -abacus%1:06:01:: 02666347 1 0 -abadan%1:15:00:: 08911602 1 0 -abaft%4:02:00:: 00275409 1 0 -abalone%1:05:00:: 01942869 1 0 -abamp%1:23:00:: 13637722 1 0 -abampere%1:23:00:: 13637722 1 0 -abandon%1:07:00:: 04885398 1 4 -abandon%1:12:00:: 07481223 2 0 -abandon%2:31:00:: 00614057 5 3 -abandon%2:31:01:: 00613393 4 5 -abandon%2:38:00:: 02076676 3 6 -abandon%2:40:00:: 02228031 1 10 -abandon%2:40:01:: 02227741 2 6 -abandoned%5:00:00:uninhabited:00 01313004 1 1 -abandoned%5:00:00:uninhibited:00 01317231 2 0 -abandoned_infant%1:18:00:: 10107883 1 0 -abandoned_person%1:18:00:: 09753930 1 0 -abandoned_ship%1:06:00:: 02666501 1 0 -abandonment%1:04:01:: 00055315 2 1 -abandonment%1:04:02:: 00091013 3 0 -abandonment%1:04:03:: 00204439 1 3 -abarticulation%1:26:00:: 14294271 1 0 -abase%2:37:00:: 01799794 1 0 -abasement%1:04:00:: 00273449 2 0 -abasement%1:26:00:: 14440623 1 1 -abash%2:37:00:: 01792097 1 0 -abashed%5:00:00:discomposed:00 00531628 1 1 -abashment%1:12:00:: 07508092 1 0 -abasia%1:26:00:: 14549070 1 0 -abasia_trepidans%1:26:00:: 14549284 1 0 -abasic%3:01:00:: 02598608 1 0 -abatable%5:00:00:stoppable:00 02288022 1 0 -abatable_nuisance%1:09:00:: 05830832 1 0 -abate%2:30:00:: 00245059 2 0 -abate%2:30:01:: 00245289 1 0 -abatement%1:04:00:: 00361333 2 0 -abatement%1:11:01:: 07368256 1 0 -abatement_of_a_nuisance%1:04:00:: 00361459 1 0 -abatic%3:01:00:: 02598608 1 0 -abatis%1:06:00:: 02666735 1 0 -abator%1:18:00:: 09754051 1 0 -abattis%1:06:00:: 02666735 1 0 -abattoir%1:06:00:: 02666943 1 0 -abaxial%3:00:00:: 00002312 1 0 -abaxially%4:02:00:: 00512503 1 0 -abaya%1:06:00:: 02667093 1 0 -abb%1:14:00:: 08011266 1 0 -abbacy%1:15:00:: 08550364 1 0 -abbatial%3:01:00:: 02598768 1 0 -abbe%1:18:00:: 09754152 1 0 -abbe_condenser%1:06:00:: 02667244 1 0 -abbess%1:18:00:: 09754217 1 0 -abbey%1:06:00:: 02667379 3 0 -abbey%1:06:01:: 02667478 2 0 -abbey%1:06:02:: 02667576 1 1 -abbot%1:18:00:: 09754404 1 2 -abbott_lawrence_lowell%1:18:00:: 11142368 1 0 -abbreviate%2:30:00:: 00243749 2 0 -abbreviate%2:30:01:: 00243900 1 0 -abbreviated%5:00:00:short:01 01436432 1 1 -abbreviated%5:00:00:short:02 01442597 2 0 -abbreviation%1:04:00:: 00359135 2 0 -abbreviation%1:10:00:: 07091587 1 0 -abbreviator%1:18:00:: 09754907 1 0 -abc%1:09:00:: 05872742 1 0 -abc's%1:09:00:: 05872742 1 0 -abcoulomb%1:23:00:: 13636866 1 0 -abcs%1:09:00:: 05872742 1 0 -abdias%1:10:00:: 06439712 2 0 -abdias%1:18:00:: 11211236 1 0 -abdicable%5:00:00:unwanted:00 02528048 1 0 -abdicate%2:41:00:: 02379198 1 0 -abdication%1:10:00:: 07254456 1 0 -abdication%1:10:01:: 06511762 2 0 -abdicator%1:18:00:: 09755657 1 0 -abdomen%1:08:00:: 05556943 1 2 -abdomen%1:08:01:: 05558345 2 0 -abdominal%1:08:00:: 05557339 1 0 -abdominal%3:01:00:: 02934594 1 3 -abdominal_actinomycosis%1:26:00:: 14259739 1 0 -abdominal_aorta%1:08:00:: 05336635 1 0 -abdominal_aortic_aneurysm%1:26:00:: 14106456 1 0 -abdominal_breathing%1:04:00:: 00833296 1 0 -abdominal_cavity%1:08:00:: 05558345 1 0 -abdominal_delivery%1:04:00:: 00185778 1 0 -abdominal_external_oblique_muscle%1:08:00:: 05557839 1 0 -abdominal_muscle%1:08:00:: 05557339 1 0 -abdominal_nerve_plexus%1:08:00:: 05508735 1 0 -abdominal_pregnancy%1:26:00:: 14047440 1 0 -abdominal_wall%1:08:00:: 05604434 1 0 -abdominocentesis%1:04:00:: 00943471 1 0 -abdominoplasty%1:04:00:: 00034777 1 0 -abdominous%5:00:00:fat:01 00986457 1 0 -abdominousness%1:07:00:: 04999964 1 0 -abdominovesical%3:01:00:: 02598981 1 0 -abduce%2:32:00:: 01015866 1 0 -abducens%1:08:00:: 05479108 1 0 -abducens_muscle%1:08:00:: 05316407 1 0 -abducens_nerve%1:08:00:: 05479108 1 0 -abducent%1:08:00:: 05479108 1 0 -abducent%3:00:00:: 00002956 1 0 -abducent_nerve%1:08:00:: 05479108 1 0 -abduct%2:35:00:: 01449427 2 0 -abduct%2:35:02:: 01471043 1 0 -abducting%3:00:00:: 00002956 1 0 -abduction%1:04:00:: 00775460 1 0 -abduction%1:04:01:: 00333037 2 0 -abductor%1:08:00:: 05291010 2 0 -abductor%1:18:00:: 10230801 1 0 -abductor_muscle%1:08:00:: 05291010 1 0 -abeam%4:02:00:: 00075881 1 0 -abecedarian%1:14:00:: 08093653 2 0 -abecedarian%1:18:00:: 09755788 1 0 -abecedarian%5:00:00:alphabetic:00 00100881 1 0 -abecedarius%1:10:00:: 06377971 1 0 -abed%4:02:00:: 00229216 1 1 -abel%1:18:00:: 09587217 2 0 -abel%1:18:01:: 10807197 1 0 -abel_janszoon_tasman%1:18:00:: 11332068 1 0 -abel_tasman%1:18:00:: 11332068 1 0 -abelard%1:18:00:: 10807317 1 0 -abele%1:20:00:: 12732009 1 0 -abelia%1:20:00:: 12671651 1 0 -abelian_group%1:09:00:: 06017472 1 0 -abelmoschus%1:20:00:: 12171750 1 0 -abelmoschus_esculentus%1:20:00:: 12171966 1 0 -abelmoschus_moschatus%1:20:00:: 12172481 1 0 -abelmosk%1:20:00:: 12172481 1 0 -abenaki%1:18:00:: 09645871 1 0 -aberdare%1:15:00:: 08895148 1 0 -aberdeen%1:15:00:: 08892186 4 0 -aberdeen%1:15:01:: 09094093 3 0 -aberdeen%1:15:02:: 09139380 2 0 -aberdeen%1:15:03:: 09153570 1 0 -aberdeen_angus%1:05:00:: 02405929 1 0 -aberdonian%3:01:00:: 02599114 1 0 -aberrance%1:26:00:: 14503665 1 0 -aberrancy%1:26:00:: 14503665 1 0 -aberrant%1:18:00:: 09755893 1 0 -aberrant%5:00:00:abnormal:00 01596122 1 1 -aberrate%2:42:00:: 02661769 2 0 -aberrate%2:42:01:: 02662076 1 0 -aberration%1:19:00:: 11420139 3 0 -aberration%1:26:00:: 14386590 2 0 -aberration%1:26:01:: 14503665 1 1 -abet%2:41:00:: 02549211 1 3 -abetalipoproteinemia%1:26:00:: 14151884 1 0 -abetment%1:10:00:: 07251619 1 0 -abettal%1:10:00:: 07251619 1 0 -abetter%1:18:00:: 09756049 1 0 -abettor%1:18:00:: 09756049 1 0 -abeyance%1:26:00:: 14010636 1 0 -abeyant%5:00:00:inactive:01 00034032 1 0 -abfarad%1:23:00:: 13636529 1 0 -abhenry%1:23:00:: 13639147 1 0 -abhor%2:37:00:: 01774426 1 1 -abhorrence%1:12:00:: 07503430 1 0 -abhorrent%5:00:00:offensive:01 01625063 1 1 -abhorrer%1:18:00:: 09756195 1 0 -abidance%1:04:00:: 01021889 3 0 -abidance%1:04:01:: 01053920 2 0 -abidance%1:04:02:: 01203676 1 0 -abide%2:31:00:: 00668099 2 1 -abide%2:42:01:: 02637202 1 2 -abide_by%2:41:00:: 02542280 1 2 -abide_by%2:41:01:: 02457233 2 0 -abiding%5:00:00:permanent:00 01754873 1 2 -abidjan%1:15:00:: 08736779 1 0 -abience%1:16:00:: 09180616 1 0 -abient%3:01:00:: 02599689 1 0 -abies%1:20:00:: 11620560 1 0 -abies_alba%1:20:00:: 11621547 1 0 -abies_amabilis%1:20:00:: 11621281 1 0 -abies_balsamea%1:20:00:: 11621950 1 0 -abies_bracteata%1:20:00:: 11622771 1 0 -abies_concolor%1:20:00:: 11621727 1 0 -abies_fraseri%1:20:00:: 11622184 1 0 -abies_grandis%1:20:00:: 11622368 1 0 -abies_lasiocarpa%1:20:00:: 11622591 1 0 -abies_lowiana%1:20:00:: 11621727 1 0 -abies_venusta%1:20:00:: 11622771 1 0 -abila%1:17:00:: 09321694 1 0 -abilene%1:15:00:: 09142674 1 0 -abilene%1:15:01:: 09088151 2 0 -ability%1:07:00:: 05200169 1 19 -ability%1:09:00:: 05616246 2 9 -abiogenesis%1:19:00:: 11420376 1 0 -abiogenetic%3:01:00:: 02599837 1 0 -abiogenist%1:18:00:: 09756400 1 0 -abiotrophy%1:11:00:: 07428111 1 0 -abject%5:00:00:contemptible:00 00904745 1 3 -abject%5:00:00:hopeless:00 01229435 3 0 -abject%5:00:00:submissive:00 00789281 4 0 -abject%5:00:00:unfortunate:00 01049941 2 1 -abjection%1:26:01:: 14440623 1 1 -abjectly%4:02:00:: 00264339 1 0 -abjuration%1:10:00:: 07206096 1 0 -abjure%2:32:00:: 00798717 1 0 -abjurer%1:18:00:: 09754541 1 0 -abkhas%1:14:00:: 08487953 2 0 -abkhas%1:18:00:: 09639543 1 0 -abkhasian%1:10:00:: 06978656 2 0 -abkhasian%1:18:00:: 09639543 1 0 -abkhaz%1:14:00:: 08487953 3 0 -abkhaz%1:15:00:: 09019355 2 0 -abkhaz%1:18:00:: 09639543 1 0 -abkhaz%3:01:00:: 02599269 1 0 -abkhazia%1:15:00:: 09019355 1 0 -abkhazian%1:10:00:: 06978656 2 0 -abkhazian%1:18:00:: 09639543 1 0 -abkhazian%3:01:00:: 02599269 1 0 -ablactate%2:34:00:: 01186958 1 0 -ablactation%1:04:00:: 00198270 2 0 -ablactation%1:22:00:: 13423405 1 0 -ablate%2:30:00:: 00275466 1 0 -ablate%2:30:10:: 00177578 2 0 -ablated%5:00:00:decreased:00 00882018 1 1 -ablation%1:04:00:: 00393369 1 2 -ablation%1:22:00:: 13423489 2 0 -ablative%1:10:00:: 06312418 1 0 -ablative%3:01:00:: 03041636 1 0 -ablative%5:00:00:subtractive:00 00050260 2 0 -ablative_absolute%1:10:00:: 06312612 1 0 -ablative_case%1:10:00:: 06312418 1 0 -ablaut%1:10:00:: 07112103 1 0 -ablaze%5:00:00:colorful:00 00402731 3 0 -ablaze%5:00:00:light:06 00270496 4 0 -ablaze%5:00:00:lighted:00 00475308 2 0 -ablaze%5:00:00:passionate:00 01726021 1 1 -able%3:00:00:: 00001740 1 70 -able%5:00:00:capable:00 00306663 3 4 -able%5:00:00:competent:00 00510348 2 7 -able%5:00:00:fit:01 01017439 4 0 -able-bodied%5:00:00:fit:01 01017439 1 0 -able-bodied_seaman%1:18:00:: 09756500 1 0 -able-bodiedism%1:04:00:: 01154237 1 0 -able-bodism%1:04:00:: 01154237 1 0 -able_seaman%1:18:00:: 09756500 1 0 -ableism%1:04:00:: 01154237 1 0 -ablepharia%1:26:00:: 14152169 1 0 -ablism%1:04:00:: 01154237 1 0 -abloom%5:00:00:mature:01 01488856 1 0 -abls%1:10:00:: 06698775 1 0 -ablution%1:04:00:: 00255450 1 0 -ablutionary%5:00:00:purifying:00 02117866 1 0 -ably%4:02:00:: 00185172 1 1 -abm%1:06:00:: 02716626 1 0 -abnaki%1:10:00:: 06908048 2 0 -abnaki%1:18:00:: 09645871 1 0 -abnaki%3:01:00:: 02599409 1 0 -abnegate%2:32:00:: 00758042 3 0 -abnegate%2:33:00:: 01116275 2 0 -abnegate%2:40:00:: 02213074 1 0 -abnegation%1:04:00:: 00205649 2 0 -abnegation%1:10:00:: 07204665 1 0 -abnegator%1:18:00:: 09754633 1 0 -abney_level%1:06:00:: 02667693 1 0 -abnormal%3:00:00:: 01595596 1 1 -abnormal%3:00:03:: 01598592 2 0 -abnormal%5:00:00:immoderate:00 01533535 3 0 -abnormal_psychology%1:09:00:: 06137759 1 0 -abnormalcy%1:26:00:: 14501726 1 0 -abnormality%1:04:00:: 00737188 4 0 -abnormality%1:07:00:: 04798185 3 0 -abnormality%1:09:01:: 05646535 2 0 -abnormality%1:26:00:: 14501726 1 1 -abnormally%4:02:00:: 00227171 1 1 -abo%1:18:00:: 09676490 1 2 -abo_antibodies%1:27:00:: 15027888 1 1 -abo_blood_group_system%1:09:00:: 05733361 1 0 -abo_group%1:09:00:: 05733361 1 0 -abo_system%1:09:00:: 05733361 1 0 -aboard%4:02:00:: 00249736 2 1 -aboard%4:02:01:: 00249878 1 4 -aboard%4:02:02:: 00249964 4 0 -aboard%4:02:04:: 00250056 3 0 -abocclusion%1:26:00:: 14053965 1 0 -abode%1:06:00:: 03259505 2 1 -abode%1:15:00:: 08558963 1 1 -abohm%1:23:00:: 13646694 1 0 -abolish%2:41:00:: 02427334 1 9 -abolishable%5:00:00:destructible:00 00738182 1 0 -abolishment%1:04:00:: 00228283 1 0 -abolition%1:04:00:: 00228283 1 1 -abolitionary%3:01:00:: 03138752 1 0 -abolitionism%1:09:00:: 05958208 1 0 -abolitionist%1:18:00:: 09756637 1 2 -abomasal%3:01:00:: 03138895 1 0 -abomasum%1:05:00:: 02399942 1 0 -abominable%5:00:00:bad:00 01126291 2 0 -abominable%5:00:00:hateful:00 01460679 1 1 -abominable_snowman%1:18:00:: 09487252 1 0 -abominably%4:02:00:: 00055101 2 0 -abominably%4:02:01:: 00309632 1 0 -abominate%2:37:00:: 01774426 1 0 -abomination%1:04:00:: 00745431 3 0 -abomination%1:12:00:: 07503430 2 0 -abomination%1:18:00:: 09756961 1 0 -abominator%1:18:00:: 09754780 1 0 -abor%1:10:00:: 06933824 1 0 -aborad%4:02:00:: 00172875 1 0 -aboral%3:00:00:: 01665674 1 0 -aboriginal%1:18:00:: 09676490 1 0 -aboriginal%1:18:01:: 09620794 2 0 -aboriginal%3:00:00:: 01037148 2 0 -aboriginal%3:01:00:: 02599509 1 0 -aboriginal%5:00:00:early:00 00813589 3 0 -aboriginal_australian%1:10:00:: 06940290 1 0 -aborigine%1:18:00:: 09620794 1 1 -aborigine%1:18:01:: 09676490 2 0 -abort%1:04:00:: 00034939 1 0 -abort%2:29:00:: 00059899 3 0 -abort%2:29:01:: 00060063 2 0 -abort%2:30:00:: 00353839 1 0 -aborticide%1:04:00:: 00231315 2 0 -aborticide%1:06:00:: 02667906 1 0 -abortifacient%1:06:00:: 02667906 1 0 -abortifacient%5:00:00:causative:00 00322844 1 0 -abortion%1:04:00:: 00230324 1 3 -abortion%1:11:00:: 07319652 2 0 -abortion-inducing_drug%1:06:00:: 02667906 1 0 -abortion_pill%1:06:00:: 02668093 1 0 -abortionist%1:18:00:: 09757175 1 0 -abortive%5:00:00:unfruitful:00 01082714 1 0 -abortively%4:02:00:: 00264475 1 0 -abortus%1:05:00:: 01460303 1 0 -aboulia%1:26:00:: 14026166 1 0 -aboulic%5:00:00:neurotic:00 01583486 1 0 -abound%2:42:00:: 02715279 1 2 -abound%2:42:01:: 02715595 2 0 -abound_in%2:42:00:: 02715923 1 1 -abounding%5:00:00:abundant:00 00014358 1 1 -about%4:02:00:: 00007015 1 55 -about%4:02:01:: 00071165 3 5 -about%4:02:02:: 00072201 5 3 -about%4:02:03:: 00358114 6 2 -about%4:02:04:: 00072329 4 3 -about%4:02:05:: 00073033 7 1 -about%4:02:06:: 00071840 2 10 -about%5:00:00:active:01 00032358 1 0 -about-face%1:04:01:: 00163406 2 0 -about-face%1:04:02:: 00346936 1 0 -about-face%2:31:00:: 00689068 2 0 -about-face%2:38:00:: 01909042 1 2 -about_turn%1:04:00:: 00346936 1 0 -above%1:10:00:: 06392660 1 0 -above%4:02:00:: 00079947 1 32 -above%4:02:01:: 00080169 2 9 -above%5:00:00:preceding:00 00125993 1 13 -above-mentioned%5:00:00:preceding:00 00126116 1 1 -above-named%5:00:00:preceding:00 00126116 1 0 -above_all%4:02:00:: 00150671 1 5 -above_all%4:02:01:: 00158190 2 0 -aboveboard%4:02:00:: 00314384 1 0 -aboveboard%5:00:00:straight:04 02318728 1 0 -aboveground%5:00:00:surface:00 02471264 1 1 -abracadabra%1:10:00:: 06610063 1 0 -abrachia%1:26:00:: 14466258 1 0 -abradant%1:06:00:: 02668393 2 0 -abradant%1:27:00:: 14799244 1 0 -abrade%2:35:00:: 01254013 1 0 -abrade%2:35:01:: 01251651 2 0 -abrader%1:06:00:: 02668393 1 0 -abrading_stone%1:06:00:: 02668613 1 0 -abraham%1:18:00:: 10807487 1 0 -abraham's_bosom%1:09:00:: 05628031 1 0 -abraham_lincoln%1:18:00:: 11132462 1 2 -abraham_stoker%1:18:00:: 11318824 1 0 -abramis%1:05:00:: 01440344 1 0 -abramis_brama%1:05:00:: 01440467 1 0 -abranchial%3:00:00:: 01107094 1 0 -abranchiate%3:00:00:: 01107094 1 0 -abranchious%3:00:00:: 01107094 1 0 -abrase%2:35:00:: 01254013 1 0 -abrasion%1:19:00:: 11460063 3 0 -abrasion%1:22:00:: 13423615 2 0 -abrasion%1:26:00:: 14286549 1 0 -abrasive%1:27:00:: 14799244 1 0 -abrasive%5:00:00:disagreeable:00 00090219 2 0 -abrasive%5:00:00:rough:00 02239289 1 0 -abrasive_material%1:27:00:: 14799244 1 0 -abrasiveness%1:07:00:: 04949066 1 0 -abrasiveness%1:07:01:: 04780114 2 0 -abreact%2:37:00:: 01815471 1 0 -abreaction%1:04:00:: 00253395 1 1 -abreast%4:02:00:: 00250484 1 0 -abreast%5:00:00:informed:00 01306645 1 0 -abridge%2:30:00:: 00243900 1 1 -abridge%2:30:01:: 00236843 2 0 -abridged%3:00:00:: 00004413 1 0 -abridgement%1:10:00:: 06468123 1 0 -abridger%1:18:00:: 09754907 1 0 -abridgment%1:10:00:: 06468123 1 1 -abroach%5:00:00:tapped:00 01659762 1 0 -abroad%4:02:00:: 00104003 1 8 -abroad%4:02:01:: 00181676 3 1 -abroad%4:02:02:: 00263180 2 2 -abroad%5:00:00:foreign:02 01037763 1 6 -abrocoma%1:05:00:: 02368280 1 0 -abrocome%1:05:00:: 02368399 1 0 -abrogate%2:41:00:: 02478584 1 1 -abrogation%1:04:00:: 00231887 1 0 -abrogator%1:18:00:: 09757311 1 0 -abronia%1:20:00:: 11836556 1 0 -abronia_elliptica%1:20:00:: 11837020 1 0 -abronia_fragrans%1:20:00:: 11837204 1 0 -abronia_latifolia%1:20:00:: 11837351 1 0 -abronia_maritima%1:20:00:: 11837562 1 0 -abronia_umbellata%1:20:00:: 11837743 1 0 -abronia_villosa%1:20:00:: 11837970 1 0 -abrupt%5:00:00:discourteous:00 00640520 4 0 -abrupt%5:00:00:staccato:00 02294122 1 3 -abrupt%5:00:00:steep:00 01145151 3 0 -abrupt%5:00:00:sudden:00 01143585 2 2 -abruptio_placentae%1:26:00:: 14054102 1 0 -abruption%1:04:00:: 01068528 1 0 -abruptly%4:02:00:: 00061528 1 9 -abruptly-pinnate%5:00:00:compound:00 02172617 1 0 -abruptly-pinnate_leaf%1:20:00:: 13160116 1 0 -abruptness%1:07:00:: 05060476 3 0 -abruptness%1:07:01:: 05069624 2 0 -abruptness%1:07:02:: 04915462 1 1 -abruzzi%1:15:00:: 08804154 1 0 -abruzzi_e_molise%1:15:00:: 08804154 1 0 -abs%1:27:00:: 14592028 1 0 -abscess%1:26:00:: 14312172 1 3 -abscessed%5:00:00:septic:00 02114190 1 0 -abscessed_tooth%1:26:00:: 14312363 1 0 -abscise%2:35:00:: 01255222 2 0 -abscise%2:35:01:: 01255355 1 0 -abscissa%1:09:00:: 06011589 1 1 -abscission%1:04:00:: 00392709 2 0 -abscission%1:22:00:: 13423779 1 0 -abscond%2:38:00:: 02073714 1 0 -absconder%1:18:00:: 09755241 1 0 -abscondment%1:04:00:: 00055633 1 0 -abseil%1:04:00:: 00326809 1 0 -abseil%2:38:00:: 01923058 1 0 -abseiler%1:18:00:: 09757449 1 0 -absence%1:04:00:: 01234345 2 8 -absence%1:26:00:: 13960974 1 25 -absence%1:26:01:: 14088412 4 0 -absence%1:28:00:: 15270862 3 0 -absence_seizure%1:26:00:: 14088412 1 0 -absence_without_leave%1:04:00:: 00055793 1 0 -absent%2:30:00:: 00421535 1 2 -absent%3:00:00:: 01847672 1 12 -absent%5:00:00:inattentive:00 00165171 3 0 -absent%5:00:00:nonexistent:00 00927832 2 0 -absentee%1:18:00:: 09757653 1 0 -absentee_ballot%1:10:00:: 06476573 1 0 -absentee_rate%1:24:00:: 13817761 1 1 -absenteeism%1:04:00:: 01234528 1 1 -absently%4:02:00:: 00066190 1 6 -absentminded%5:00:00:inattentive:00 00165171 1 3 -absentmindedly%4:02:00:: 00066190 1 3 -absentmindedness%1:09:00:: 05701209 1 0 -absinth%1:13:00:: 07908411 1 0 -absinthe%1:13:00:: 07908411 2 0 -absinthe%1:20:00:: 11929477 1 0 -absinthe_oil%1:27:00:: 14893881 1 0 -absolute%1:09:00:: 05854474 1 1 -absolute%3:00:00:: 00005205 1 11 -absolute%5:00:00:arbitrary:00 00719328 3 1 -absolute%5:00:00:inalienable:00 00094069 5 0 -absolute%5:00:00:unequivocal:00 00897015 4 0 -absolute%5:00:01:complete:00 00520892 2 4 -absolute_alcohol%1:27:00:: 14709791 1 0 -absolute_ceiling%1:07:00:: 05132827 1 0 -absolute_frequency%1:23:00:: 13598237 1 0 -absolute_magnitude%1:07:00:: 05090979 1 0 -absolute_majority%1:23:00:: 13581067 1 0 -absolute_pitch%1:09:00:: 05658106 1 0 -absolute_scale%1:24:00:: 13853002 1 0 -absolute_space%1:03:00:: 00029007 1 0 -absolute_temperature%1:07:00:: 05013095 1 1 -absolute_threshold%1:09:00:: 05712559 1 0 -absolute_value%1:23:00:: 13581465 1 0 -absolute_viscosity%1:23:00:: 13589140 1 0 -absolute_zero%1:07:00:: 05013204 1 0 -absolutely%4:02:00:: 00008997 1 13 -absolutely%4:02:01:: 00007488 2 0 -absoluteness%1:07:00:: 04738398 2 0 -absoluteness%1:07:01:: 05124534 1 0 -absolution%1:04:00:: 00094240 2 0 -absolution%1:26:00:: 14574349 1 0 -absolutism%1:09:00:: 05958337 4 0 -absolutism%1:09:01:: 06213688 3 0 -absolutism%1:14:00:: 08440630 2 0 -absolutism%1:26:00:: 14443912 1 0 -absolutist%1:18:00:: 09755398 1 0 -absolutist%3:01:00:: 03139045 1 0 -absolutistic%3:01:00:: 03139045 1 0 -absolve%2:32:00:: 00902424 2 0 -absolve%2:32:02:: 00903711 1 0 -absolved%5:00:00:innocent:00 01320184 1 0 -absolver%1:18:00:: 09755555 1 0 -absolvitory%5:00:00:exculpatory:00 00923495 1 0 -absorb%2:30:00:: 00395698 5 2 -absorb%2:31:00:: 00602255 2 5 -absorb%2:31:03:: 00600370 9 0 -absorb%2:31:06:: 00601043 7 1 -absorb%2:35:00:: 01539063 4 4 -absorb%2:35:01:: 01539633 1 8 -absorb%2:35:10:: 01470524 8 0 -absorb%2:40:00:: 02216560 3 4 -absorb%2:43:00:: 02765464 6 1 -absorbable%3:00:00:: 00008734 1 0 -absorbance%1:07:00:: 05089367 1 0 -absorbate%1:27:00:: 14597628 1 0 -absorbed%5:00:00:attentive:00 00163948 1 7 -absorbed%5:00:00:unreflected:00 02009166 2 1 -absorbefacient%5:00:00:absorbent:00 00006777 1 0 -absorbency%1:07:00:: 04940964 1 1 -absorbent%1:27:00:: 14597413 1 0 -absorbent%3:00:00:: 00006336 1 0 -absorbent_cotton%1:27:00:: 14598251 1 0 -absorbent_material%1:27:00:: 14597413 1 0 -absorber%1:27:00:: 14598079 1 0 -absorbing%5:00:00:interesting:00 01344171 1 0 -absorptance%1:23:00:: 13586455 1 0 -absorption%1:09:00:: 05700087 6 0 -absorption%1:09:01:: 05704266 5 0 -absorption%1:22:00:: 13423922 1 4 -absorption%1:22:01:: 13434688 4 0 -absorption%1:22:02:: 13424183 2 3 -absorption%1:22:03:: 13434878 3 0 -absorption_band%1:19:00:: 11420631 1 0 -absorption_coefficient%1:23:00:: 13586455 1 0 -absorption_factor%1:07:00:: 05010062 1 0 -absorption_indicator%1:27:00:: 14598383 1 0 -absorption_spectrum%1:19:00:: 11421214 1 1 -absorption_unit%1:23:00:: 13599871 1 0 -absorptive%3:00:00:: 00006336 1 1 -absorptivity%1:07:00:: 05010062 1 0 -absquatulate%2:38:00:: 02073714 1 0 -abstain%2:34:00:: 01196037 2 1 -abstain%2:41:00:: 02463426 1 1 -abstainer%1:18:00:: 09757944 2 0 -abstainer%1:18:01:: 09758173 1 0 -abstemious%3:00:00:: 00009046 1 0 -abstemious%5:00:00:temperate:00 02401863 2 0 -abstemiously%4:02:00:: 00264555 1 0 -abstemiousness%1:07:00:: 04883942 2 0 -abstemiousness%1:07:01:: 05114262 1 0 -abstention%1:07:00:: 04882622 1 1 -abstentious%5:00:00:abstemious:00 00009346 1 0 -abstinence%1:04:00:: 01068773 2 0 -abstinence%1:07:00:: 04882622 1 0 -abstinent%1:18:00:: 09757944 1 0 -abstinent%5:00:00:abstemious:00 00009346 1 0 -abstract%1:09:00:: 05854150 1 2 -abstract%1:10:00:: 06468951 2 0 -abstract%2:31:00:: 00692329 1 5 -abstract%2:31:01:: 00734587 3 1 -abstract%2:32:00:: 01008288 4 0 -abstract%2:40:00:: 02276866 2 1 -abstract%3:00:00:: 00011757 1 5 -abstract%5:00:00:nonrepresentational:00 01980557 2 1 -abstract%5:00:00:theoretical:01 00862526 3 0 -abstract_art%1:06:00:: 02669079 1 1 -abstract_artist%1:18:00:: 09758424 1 0 -abstract_entity%1:03:00:: 00002137 1 0 -abstract_expressionism%1:06:00:: 02668747 1 2 -abstract_thought%1:09:00:: 05772356 1 0 -abstracted%5:00:00:inattentive:00 00165171 1 0 -abstractedly%4:02:00:: 00066190 1 0 -abstractedness%1:09:00:: 05700625 1 0 -abstracter%1:18:00:: 09755086 1 0 -abstraction%1:03:00:: 00002137 6 0 -abstraction%1:04:00:: 00392848 2 3 -abstraction%1:06:00:: 02669001 4 2 -abstraction%1:09:00:: 05854150 1 5 -abstraction%1:09:01:: 05700625 5 0 -abstraction%1:09:02:: 05780104 3 2 -abstractionism%1:06:00:: 02669079 1 1 -abstractionism%1:09:00:: 05940869 2 0 -abstractionist%1:18:00:: 09758424 1 0 -abstractionist%5:00:00:nonrepresentational:00 01980557 1 0 -abstractive%5:00:00:theoretical:00 00860932 1 1 -abstractly%4:02:00:: 00197947 1 0 -abstractness%1:07:00:: 04762134 1 0 -abstractor%1:18:00:: 09755086 1 0 -abstruse%5:00:00:esoteric:00 00899226 1 0 -abstrusely%4:02:00:: 00264759 1 0 -abstruseness%1:07:00:: 04823416 1 1 -abstruseness%1:09:00:: 05926358 2 0 -abstrusity%1:09:00:: 05926358 1 0 -absurd%1:26:00:: 13928191 1 0 -absurd%5:00:00:foolish:00 02570643 2 1 -absurd%5:00:00:illogical:00 01431112 1 7 -absurdity%1:07:01:: 04891683 2 1 -absurdity%1:10:00:: 06607809 1 6 -absurdly%4:02:00:: 00301039 1 0 -absurdness%1:10:00:: 06607809 1 0 -abu_ali_al-husain_ibn_abdallah_ibn_sina%1:18:00:: 10829733 1 0 -abu_dhabi%1:15:00:: 09044536 1 0 -abu_hafs_al-masri_brigades%1:14:00:: 08010364 1 0 -abu_nidal_organization%1:14:00:: 08020242 1 0 -abu_sayyaf%1:14:00:: 08010559 1 0 -abudefduf%1:05:00:: 02607345 1 0 -abudefduf_saxatilis%1:05:00:: 02607470 1 0 -abuja%1:15:00:: 08974171 1 0 -abukir%1:17:00:: 09186225 1 0 -abukir_bay%1:17:00:: 09186225 1 0 -abul-walid_mohammed_ibn-ahmad_ibn-mohammed_ibn-roshd%1:18:00:: 10829450 1 0 -abulia%1:26:00:: 14026166 1 0 -abulic%5:00:00:neurotic:00 01583486 1 0 -abundance%1:07:00:: 05115040 1 2 -abundance%1:24:00:: 13820000 3 0 -abundance%1:24:01:: 13820239 2 0 -abundant%3:00:00:: 00013887 1 1 -abundantly%4:02:00:: 00214554 1 0 -abuse%1:04:01:: 00947719 3 0 -abuse%1:04:02:: 00419908 1 1 -abuse%1:10:00:: 06715223 2 0 -abuse%2:30:00:: 00203213 2 2 -abuse%2:30:02:: 00203556 4 0 -abuse%2:32:00:: 00845299 3 0 -abuse%2:41:00:: 02516594 1 3 -abused%3:00:01:: 00017352 2 0 -abused%5:00:00:misused:00 02495564 1 1 -abuser%1:18:00:: 09758643 1 0 -abusive%5:00:00:harmful:00 01160584 2 0 -abusive%5:00:00:offensive:02 01628531 1 0 -abusively%4:02:00:: 00055739 1 0 -abut%2:35:00:: 01466978 1 0 -abutilon%1:20:00:: 12172715 1 0 -abutilon_theophrasti%1:20:00:: 12173069 1 0 -abutment%1:06:00:: 02669295 2 0 -abutment%1:15:00:: 08620763 1 0 -abutment_arch%1:06:00:: 02669442 1 0 -abutter%1:18:00:: 09758781 1 0 -abuzz%5:00:00:noisy:00 01920697 1 0 -abvolt%1:23:00:: 13642464 1 0 -abwatt%1:23:00:: 13644165 1 0 -aby%2:41:00:: 02520509 1 0 -aby_moritz_warburg%1:18:00:: 11373550 1 0 -aby_warburg%1:18:00:: 11373550 1 0 -abydos%1:15:00:: 09040299 1 0 -abye%2:41:00:: 02520509 1 0 -abyla%1:17:00:: 09321694 1 0 -abysm%1:17:00:: 09186359 1 0 -abysmal%5:00:00:deep:01 00690683 2 0 -abysmal%5:00:00:immeasurable:00 01499155 1 0 -abysmally%4:02:00:: 00055101 1 0 -abyss%1:17:00:: 09186359 1 3 -abyssal%3:01:00:: 02973733 1 0 -abyssal%5:00:00:deep:01 00690683 2 0 -abyssal_zone%1:17:00:: 09186592 1 0 -abyssinia%1:15:00:: 08778061 1 0 -abyssinian%1:05:00:: 02124313 1 0 -abyssinian_banana%1:20:00:: 12353754 1 0 -abyssinian_cat%1:05:00:: 02124313 1 0 -ac%1:19:00:: 11423952 2 0 -ac%1:27:00:: 14627655 1 0 -acacia%1:20:00:: 11756092 1 0 -acacia_auriculiformis%1:20:00:: 11756870 1 0 -acacia_cambegei%1:20:00:: 11757017 1 0 -acacia_catechu%1:20:00:: 11757190 1 0 -acacia_dealbata%1:20:00:: 11757653 1 0 -acacia_farnesiana%1:20:00:: 11757851 1 0 -acacia_melanoxylon%1:20:00:: 11758122 1 0 -acacia_pycnantha%1:20:00:: 11758276 1 0 -acacia_xanthophloea%1:20:00:: 11758483 1 0 -academe%1:14:00:: 08274923 1 0 -academia%1:14:00:: 08274923 1 0 -academic%1:18:00:: 09759069 1 2 -academic%3:01:00:: 02599939 1 18 -academic%5:00:00:scholarly:00 02083908 3 2 -academic%5:00:00:theoretical:01 00862718 2 3 -academic_administrator%1:18:00:: 09758885 1 0 -academic_costume%1:06:00:: 02669534 1 0 -academic_degree%1:10:00:: 06697331 1 0 -academic_department%1:14:00:: 08115204 1 0 -academic_freedom%1:26:00:: 13992194 1 0 -academic_gown%1:06:00:: 02669723 1 0 -academic_program%1:09:00:: 05909730 1 1 -academic_relation%1:24:00:: 13840404 1 0 -academic_requirement%1:09:00:: 05892991 1 0 -academic_robe%1:06:00:: 02669723 1 0 -academic_session%1:28:00:: 15225249 1 0 -academic_term%1:28:00:: 15225249 1 0 -academic_year%1:28:00:: 15203565 1 0 -academically%4:02:00:: 00121286 1 4 -academician%1:18:00:: 09759069 3 0 -academician%1:18:01:: 09759311 2 0 -academician%1:18:02:: 09759501 1 0 -academicianship%1:04:00:: 00588473 1 1 -academicism%1:07:00:: 04802079 1 0 -academism%1:07:00:: 04802079 1 0 -academy%1:06:00:: 02669885 4 0 -academy%1:14:00:: 08279298 1 5 -academy%1:14:01:: 08277805 3 0 -academy%1:14:02:: 08280124 2 1 -academy_award%1:10:00:: 07268967 1 0 -academy_of_motion_picture_arts_and_sciences%1:14:00:: 08280462 1 0 -academy_of_television_arts_and_sciences%1:14:00:: 08280649 1 0 -acadia%1:15:00:: 08821187 1 0 -acadia_national_park%1:15:00:: 08602037 1 0 -acadian%1:18:00:: 09677168 1 0 -acalypha%1:20:00:: 12922283 1 0 -acalypha_virginica%1:20:00:: 12922458 1 0 -acantha%1:25:00:: 13912839 1 0 -acanthaceae%1:20:00:: 12811856 1 0 -acanthion%1:08:00:: 05231264 1 0 -acanthisitta%1:05:00:: 01588858 1 0 -acanthisitta_chloris%1:05:00:: 01588996 1 0 -acanthisittidae%1:05:00:: 01588172 1 0 -acanthocephala%1:05:00:: 01923171 1 0 -acanthocephalan%1:05:00:: 01923404 1 0 -acanthocereus%1:20:00:: 11842861 1 0 -acanthocereus_pentagonus%1:20:00:: 11843053 1 0 -acanthocereus_tetragonus%1:20:00:: 11843053 1 0 -acanthocybium%1:05:00:: 02625132 1 0 -acanthocybium_solandri%1:05:00:: 02625258 1 0 -acanthocyte%1:08:00:: 05454452 1 0 -acanthocytosis%1:26:00:: 14071758 1 0 -acanthoid%5:00:00:pointed:00 01810011 1 0 -acantholysis%1:26:00:: 14221601 1 0 -acanthoma%1:26:00:: 14235667 1 0 -acanthophis%1:05:00:: 01750027 1 0 -acanthophis_antarcticus%1:05:00:: 01750167 1 0 -acanthopterygian%1:05:00:: 02552171 1 0 -acanthopterygii%1:05:00:: 02551824 1 0 -acanthoscelides%1:05:00:: 02182498 1 0 -acanthoscelides_obtectus%1:05:00:: 02182642 1 0 -acanthosis%1:26:00:: 14221741 1 0 -acanthosis_nigricans%1:26:00:: 14221924 1 0 -acanthotic%3:01:00:: 02600131 1 0 -acanthous%5:00:00:pointed:00 01810011 1 0 -acanthuridae%1:05:00:: 02621107 1 0 -acanthurus%1:05:00:: 02621419 1 0 -acanthurus_chirurgus%1:05:00:: 02621577 1 0 -acanthus%1:20:00:: 12812235 1 0 -acanthus_family%1:20:00:: 12811856 1 0 -acanthus_mollis%1:20:00:: 12812478 1 0 -acapnia%1:26:00:: 14042165 1 0 -acapnial%3:01:00:: 02600244 1 0 -acapnic%3:01:00:: 02600244 1 0 -acapnotic%3:01:00:: 02600244 1 0 -acapulco%1:15:00:: 08742205 1 1 -acapulco_de_juarez%1:15:00:: 08742205 1 0 -acapulco_gold%1:06:00:: 02670049 1 0 -acaracide%1:27:00:: 14598834 1 0 -acardia%1:26:00:: 14019296 1 0 -acariasis%1:26:00:: 14453066 1 0 -acaricide%1:27:00:: 14598834 1 0 -acarid%1:05:00:: 01780142 1 0 -acaridae%1:05:00:: 01780026 1 0 -acaridiasis%1:26:00:: 14453066 1 0 -acarina%1:05:00:: 01775879 1 0 -acarine%1:05:00:: 01776192 1 0 -acariosis%1:26:00:: 14453066 1 0 -acaroid_resin%1:27:00:: 14598937 1 0 -acarophobia%1:26:00:: 14381732 1 0 -acarpellous%3:00:00:: 00316167 1 0 -acarpelous%3:00:00:: 00316167 1 0 -acarpous%5:00:00:unfruitful:00 01082925 1 0 -acarus%1:05:00:: 01781570 1 0 -acaryote%1:08:00:: 05449538 1 0 -acatalectic%1:10:00:: 06348215 1 0 -acatalectic%3:00:00:: 00317886 1 0 -acataphasia%1:26:00:: 14096123 1 0 -acathexia%1:26:00:: 14014425 1 0 -acathexis%1:16:00:: 09185865 1 0 -acaudal%3:00:00:: 00320847 1 0 -acaudate%3:00:00:: 00320847 1 0 -acaulescent%3:00:00:: 00322321 1 0 -acc%1:14:00:: 08196622 1 0 -accaroid_resin%1:27:00:: 14598937 1 0 -accede%2:32:00:: 00878348 1 1 -accede%2:32:01:: 00804139 3 0 -accede%2:41:00:: 02381397 2 0 -accelerando%1:28:00:: 15264726 1 0 -accelerando%4:02:00:: 00264927 1 0 -accelerando%5:00:00:increasing:02 02537841 1 0 -accelerate%2:30:00:: 00438178 1 11 -accelerate%2:30:01:: 00439343 2 1 -accelerated%5:00:00:fast:01 00977105 1 1 -acceleration%1:04:00:: 00330457 2 2 -acceleration%1:07:00:: 05060783 1 2 -acceleration%1:28:00:: 15275851 3 1 -acceleration_unit%1:23:00:: 13599982 1 0 -accelerative%5:00:00:increasing:00 02535161 1 0 -accelerator%1:06:00:: 02670186 2 1 -accelerator%1:06:01:: 02670382 4 0 -accelerator%1:06:02:: 02670683 1 2 -accelerator%1:27:00:: 14723628 3 0 -accelerator_factor%1:27:00:: 15071366 1 0 -accelerator_pedal%1:06:00:: 02670683 1 0 -acceleratory%5:00:00:increasing:00 02535161 1 0 -accelerometer%1:06:00:: 02670935 1 0 -accent%1:10:00:: 07085375 4 0 -accent%1:10:01:: 07131511 1 5 -accent%1:10:02:: 06822198 5 0 -accent%1:10:03:: 07155661 3 0 -accent%1:26:00:: 14434866 2 1 -accent%2:32:00:: 00983333 2 0 -accent%2:32:01:: 01013367 1 0 -accent_mark%1:10:00:: 06822198 1 0 -accented%3:00:00:: 02319538 2 0 -accented%3:00:04:: 02320751 1 0 -accenting%1:04:00:: 01264243 1 1 -accentor%1:05:00:: 01527194 1 0 -accentual%3:00:01:: 02290454 2 0 -accentual%3:01:00:: 03139235 1 0 -accentual_system%1:10:00:: 07112805 1 1 -accentuate%2:32:00:: 01013367 1 2 -accentuate%2:32:01:: 00983333 2 0 -accentuation%1:04:00:: 01264243 2 0 -accentuation%1:10:00:: 07085786 1 0 -accept%2:31:00:: 00686447 1 34 -accept%2:31:01:: 00719231 4 12 -accept%2:31:03:: 00668805 7 2 -accept%2:31:08:: 00718489 11 0 -accept%2:32:00:: 00797697 3 17 -accept%2:40:00:: 02236124 2 33 -accept%2:40:01:: 02301825 6 7 -accept%2:40:03:: 02236624 5 8 -accept%2:40:07:: 02210622 9 0 -accept%2:40:12:: 02209936 10 0 -accept%2:42:00:: 02741546 8 0 -acceptability%1:07:00:: 04792679 1 0 -acceptable%3:00:00:: 00017782 1 2 -acceptable%5:00:00:fit:02 01020709 4 0 -acceptable%5:00:00:good:01 01124768 3 0 -acceptable%5:00:00:standard:03 02297966 2 0 -acceptableness%1:07:00:: 04792679 1 0 -acceptably%4:02:00:: 00055312 1 0 -acceptance%1:04:00:: 00180413 2 3 -acceptance%1:04:03:: 00082525 7 0 -acceptance%1:07:00:: 04638175 6 0 -acceptance%1:09:00:: 06193727 1 4 -acceptance%1:10:01:: 07176073 4 1 -acceptance%1:21:00:: 13381602 5 0 -acceptance%1:26:00:: 13932421 3 1 -acceptance_sampling%1:04:00:: 00806621 1 0 -acceptant%5:00:00:receptive:00 01985557 1 0 -acceptation%1:04:00:: 00180413 3 0 -acceptation%1:10:00:: 06602801 2 0 -acceptation%1:26:00:: 14412725 1 0 -accepted%5:00:00:acknowledged:00 00027599 1 2 -accepting%5:00:00:acceptive:00 00076127 1 2 -acceptive%3:00:00:: 00075952 1 0 -acceptive%5:00:00:receptive:00 01985557 2 0 -acceptor%1:18:00:: 09759684 2 0 -acceptor%1:27:00:: 14583843 1 0 -acceptor_rna%1:27:00:: 14833143 1 0 -access%1:04:00:: 00281132 6 0 -access%1:06:00:: 02671062 3 2 -access%1:06:01:: 02671224 5 0 -access%1:07:00:: 05176188 1 2 -access%1:07:01:: 05175467 2 2 -access%1:10:00:: 06354204 4 0 -access%2:38:00:: 02007417 2 0 -access%2:40:00:: 02248808 1 0 -access_code%1:10:00:: 06354204 1 0 -access_road%1:06:00:: 02671988 1 1 -access_time%1:28:00:: 15171857 1 0 -accessary%1:18:00:: 09759875 1 0 -accessary%5:00:00:supportive:00 02355248 1 0 -accessibility%1:07:00:: 04718999 1 0 -accessibility%1:07:02:: 04655649 2 0 -accessible%3:00:00:: 00019131 1 0 -accessible%5:00:00:approachable:00 00134251 4 0 -accessible%5:00:00:available:00 00183675 3 0 -accessible%5:00:00:comprehensible:00 00533221 2 0 -accession%1:04:03:: 00236581 6 0 -accession%1:07:00:: 05176188 5 0 -accession%1:10:02:: 07177192 4 0 -accession%1:21:00:: 13253423 3 0 -accession%1:21:01:: 13341962 2 0 -accession%1:22:00:: 13424477 1 0 -accession%2:32:00:: 00999568 1 0 -accessional%3:01:00:: 03139363 1 0 -accessorial%5:00:00:inessential:00 00902946 1 0 -accessory%1:06:00:: 02671421 2 1 -accessory%1:06:01:: 02671780 1 1 -accessory%1:18:00:: 09759875 3 0 -accessory%5:00:00:supportive:00 02354897 2 0 -accessory%5:00:01:supportive:00 02355248 1 0 -accessory_after_the_fact%1:18:00:: 09760080 1 0 -accessory_before_the_fact%1:18:00:: 09760290 1 0 -accessory_cephalic_vein%1:08:00:: 05356442 1 0 -accessory_during_the_fact%1:18:00:: 09760476 1 0 -accessory_fruit%1:20:00:: 13140367 1 0 -accessory_hemiazygos_vein%1:08:00:: 05356657 1 0 -accessory_hemiazygous_vein%1:08:00:: 05356657 1 0 -accessory_nerve%1:08:00:: 05480401 1 0 -accessory_vertebral_vein%1:08:00:: 05356889 1 0 -accho%1:15:00:: 08793310 1 0 -acciaccatura%1:10:00:: 06871983 1 0 -accidence%1:09:00:: 06178238 1 0 -accident%1:11:00:: 07300960 2 5 -accident%1:11:01:: 07301336 1 7 -accident-prone%5:00:00:inclined:02 01293049 1 0 -accident_surgery%1:09:00:: 06064838 1 0 -accidental%1:10:00:: 06867345 1 0 -accidental%5:00:00:unintended:00 01338909 1 0 -accidental_injury%1:11:00:: 07313636 1 0 -accidentally%4:02:00:: 00040547 1 1 -accidentally%4:02:02:: 00062650 3 0 -accidentally%4:02:03:: 00212411 2 0 -accipiter%1:05:00:: 01606335 1 0 -accipiter_cooperii%1:05:00:: 01606809 1 0 -accipiter_gentilis%1:05:00:: 01606522 1 0 -accipiter_nisus%1:05:00:: 01606672 1 0 -accipitridae%1:05:00:: 01605119 1 0 -accipitriformes%1:05:00:: 01604968 1 0 -accipitrine%3:01:00:: 03139452 1 0 -acclaim%1:10:00:: 06691684 1 0 -acclaim%2:32:00:: 00861725 1 3 -acclaim%2:32:01:: 00861929 2 0 -acclamation%1:10:00:: 06691684 1 0 -acclimate%2:30:00:: 00393677 1 0 -acclimation%1:22:00:: 13424643 1 0 -acclimatisation%1:22:00:: 13424643 1 0 -acclimatise%2:30:00:: 00393677 1 0 -acclimatization%1:22:00:: 13424643 1 0 -acclimatize%2:30:00:: 00393677 1 1 -acclivitous%5:00:00:ascending:00 02484530 1 0 -acclivity%1:17:00:: 09206985 1 0 -accolade%1:10:00:: 06696483 1 0 -accommodate%2:30:00:: 00299580 2 5 -accommodate%2:30:01:: 00482893 7 0 -accommodate%2:32:00:: 00885925 6 0 -accommodate%2:34:00:: 01184453 3 3 -accommodate%2:42:00:: 02702830 1 5 -accommodate%2:42:01:: 02651424 5 0 -accommodate%2:42:03:: 02732798 4 2 -accommodating%3:00:00:: 00020787 1 0 -accommodating%5:00:00:helpful:00 01195963 2 0 -accommodating_iol%1:06:00:: 02672152 1 0 -accommodating_lens_implant%1:06:00:: 02672152 1 0 -accommodatingly%4:02:00:: 00231620 1 0 -accommodation%1:04:00:: 01210816 5 0 -accommodation%1:04:01:: 00193225 6 0 -accommodation%1:06:00:: 02672371 4 0 -accommodation%1:09:00:: 05755486 3 0 -accommodation%1:10:02:: 07177437 2 0 -accommodation%1:11:00:: 07369604 1 0 -accommodation_endorser%1:18:00:: 09760735 1 0 -accommodation_ladder%1:06:00:: 02672646 1 0 -accommodation_reflex%1:04:00:: 00117124 1 0 -accommodational%3:01:00:: 03139585 1 0 -accommodative%3:00:00:: 00020787 1 0 -accommodative%5:00:00:adaptive:00 00046339 3 0 -accommodative%5:00:00:noncompetitive:00 00513388 2 0 -accommodator%1:18:00:: 10369166 1 0 -accompanied%3:00:00:: 02250899 1 1 -accompanied%3:00:01:: 02252053 2 0 -accompaniment%1:04:00:: 00827782 4 0 -accompaniment%1:07:00:: 05109511 3 0 -accompaniment%1:10:00:: 07031752 2 1 -accompaniment%1:11:00:: 07284554 1 1 -accompanist%1:18:00:: 09760913 1 0 -accompany%2:36:00:: 01728355 3 3 -accompany%2:38:00:: 02025550 2 8 -accompany%2:42:00:: 02716165 1 20 -accompany%2:42:01:: 02716767 4 1 -accompanying%5:00:00:subsequent:00 00122844 1 0 -accompanying_vein%1:08:00:: 05357160 1 0 -accompanyist%1:18:00:: 09760913 1 0 -accomplice%1:18:00:: 09761068 1 1 -accomplish%2:36:00:: 01640855 1 29 -accomplish%2:41:00:: 02526085 2 13 -accomplishable%5:00:00:possible:00 01821690 1 0 -accomplished%5:00:00:complete:00 00521329 2 1 -accomplished%5:00:00:settled:02 02129535 3 0 -accomplished%5:00:00:skilled:00 02226028 1 1 -accomplished_fact%1:04:00:: 00047941 1 0 -accomplishment%1:04:00:: 00035189 1 7 -accomplishment%1:09:00:: 05637558 2 0 -accord%1:07:00:: 04713332 4 0 -accord%1:10:00:: 07176804 2 0 -accord%1:10:01:: 06773434 3 0 -accord%1:26:00:: 13971065 1 0 -accord%2:40:00:: 02255268 2 5 -accord%2:42:00:: 02700104 1 20 -accord_and_satisfaction%1:10:00:: 07178525 1 0 -accordance%1:04:00:: 01086572 2 0 -accordance%1:10:00:: 07176804 1 8 -accordance_of_rights%1:04:00:: 01086572 1 0 -accordant%3:00:00:: 00552841 1 0 -accordant%5:00:00:consistent:00 00577122 2 0 -according%5:00:00:accordant:00 00553140 1 0 -according%5:00:00:reported:00 00471572 2 0 -accordingly%4:02:00:: 00062857 1 10 -accordingly%4:02:01:: 00063089 2 1 -accordion%1:06:00:: 02672831 1 0 -accordion_door%1:06:00:: 03376771 1 0 -accordionist%1:18:00:: 09761310 1 0 -accost%2:32:00:: 00781652 2 0 -accost%2:32:01:: 00990655 1 4 -accouchement%1:22:00:: 13448334 1 0 -accoucheur%1:18:00:: 10369699 1 0 -accoucheuse%1:18:00:: 10314836 1 0 -account%1:07:00:: 05157732 10 0 -account%1:07:01:: 05169037 6 1 -account%1:10:00:: 06514093 1 12 -account%1:10:02:: 06516955 9 0 -account%1:10:03:: 06681551 2 7 -account%1:10:04:: 06738281 4 3 -account%1:10:05:: 07217924 8 0 -account%1:16:00:: 09179382 5 1 -account%1:21:02:: 13354985 7 0 -account%1:26:00:: 13929037 3 5 -account%2:32:00:: 00867644 4 0 -account%2:32:02:: 00965035 3 0 -account%2:40:00:: 02265231 2 0 -account%2:42:01:: 02607432 1 0 -account_book%1:21:00:: 13404248 1 0 -account_executive%1:18:00:: 09761753 1 0 -account_for%2:32:00:: 00939621 2 6 -account_for%2:42:00:: 02635033 1 24 -account_payable%1:26:00:: 14490801 1 0 -account_representative%1:18:00:: 09761753 1 0 -account_statement%1:21:00:: 13354985 1 0 -accountability%1:07:00:: 04669828 1 0 -accountable%5:00:00:responsible:00 01996875 1 0 -accountancy%1:04:00:: 00618734 1 0 -accountant%1:18:00:: 09761403 1 1 -accountantship%1:04:00:: 00588598 1 0 -accounting%1:04:00:: 00618734 3 1 -accounting%1:09:00:: 05662532 2 1 -accounting%1:10:00:: 06739509 1 1 -accounting%1:21:00:: 13354985 5 0 -accounting%1:21:01:: 13405962 4 0 -accounting_data%1:14:00:: 08462534 1 0 -accounting_entry%1:21:00:: 13405296 1 0 -accounting_firm%1:14:00:: 08062326 1 0 -accounting_principle%1:09:00:: 05955593 1 0 -accounting_standard%1:09:00:: 05955593 1 0 -accounting_system%1:21:00:: 13405962 1 0 -accounts_payable%1:21:00:: 13407561 1 0 -accounts_receivable%1:21:00:: 13407208 1 0 -accouter%2:40:00:: 02342016 1 0 -accoutered%5:00:00:equipped:00 01094398 1 0 -accouterment%1:06:00:: 02671780 1 1 -accoutre%2:40:00:: 02342016 1 0 -accoutred%5:00:00:equipped:00 01094398 1 0 -accoutrement%1:06:00:: 02671780 1 0 -accra%1:15:00:: 08946564 1 0 -accredit%2:31:00:: 00727791 3 0 -accredit%2:41:00:: 02475535 1 2 -accredit%2:41:01:: 02475772 2 0 -accreditation%1:04:00:: 01140193 1 7 -accredited%5:00:00:authorized:00 00178811 1 0 -accrete%2:30:00:: 00396325 1 0 -accrete%2:30:01:: 00159368 2 0 -accretion%1:21:00:: 13263540 6 0 -accretion%1:22:00:: 13424865 1 2 -accretion%1:22:01:: 13425067 5 0 -accretion%1:22:02:: 13425245 4 0 -accretion%1:22:03:: 13425425 3 0 -accretion%1:23:00:: 13754565 2 0 -accretionary%5:00:00:increasing:00 02535335 1 0 -accretive%5:00:00:increasing:00 02535533 1 0 -accroides%1:27:00:: 14598937 1 0 -accroides_gum%1:27:00:: 14598937 1 0 -accroides_resin%1:27:00:: 14598937 1 0 -accrual%1:04:00:: 00372013 1 0 -accrual_basis%1:21:00:: 13406638 1 0 -accrue%2:30:00:: 00155869 1 2 -accrue%2:40:10:: 02230056 2 0 -accrued%5:00:00:increased:00 00880447 1 1 -accruement%1:04:00:: 00372013 1 0 -acculturate%2:30:00:: 00159880 1 1 -acculturation%1:04:00:: 01128984 1 1 -acculturation%1:09:00:: 05984936 2 0 -acculturation%1:09:01:: 05757049 3 0 -acculturational%3:01:00:: 03139749 1 0 -acculturative%3:01:00:: 03139749 1 0 -accumbent%5:00:00:unerect:00 01238201 1 0 -accumulate%2:30:00:: 00158804 2 4 -accumulate%2:40:00:: 02304982 1 4 -accumulated%5:00:00:increased:00 00880447 1 0 -accumulation%1:04:00:: 00372013 3 1 -accumulation%1:14:00:: 07951464 2 1 -accumulation%1:21:00:: 13366693 4 0 -accumulation%1:22:00:: 13424865 1 2 -accumulative%5:00:00:acquisitive:00 00029769 2 0 -accumulative%5:00:00:additive:00 00048460 1 0 -accumulator%1:06:00:: 04328329 2 0 -accumulator%1:06:01:: 02673078 3 0 -accumulator%1:18:00:: 09936362 1 0 -accumulator_register%1:06:00:: 02673078 1 0 -accuracy%1:07:02:: 04802907 1 7 -accuracy%1:07:03:: 04803209 2 2 -accurate%3:00:00:: 00021766 1 12 -accurate%5:00:00:correct:00 00631798 2 0 -accurately%4:02:01:: 00204523 1 7 -accurately%4:02:02:: 00204798 2 3 -accurse%2:32:00:: 00864910 1 0 -accursed%5:00:00:cursed:00 00669853 1 0 -accurst%5:00:00:cursed:00 00669853 1 0 -accusal%1:10:00:: 07234230 1 0 -accusation%1:10:00:: 07234230 1 3 -accusation%1:10:01:: 06730780 2 0 -accusative%1:10:00:: 06311557 1 0 -accusative%3:01:00:: 02861997 2 0 -accusative%5:00:00:inculpatory:00 00924257 1 1 -accusative_case%1:10:00:: 06311557 1 0 -accusatorial%3:01:00:: 03041739 1 0 -accusatory%5:00:00:inculpatory:00 00924257 1 0 -accuse%2:32:00:: 00842989 1 22 -accuse%2:32:01:: 00843468 2 0 -accused%1:18:00:: 09762011 1 0 -accuser%1:18:00:: 09762385 1 0 -accusing%5:00:00:inculpatory:00 00924257 1 2 -accusingly%4:02:00:: 00066418 1 1 -accusive%5:00:00:inculpatory:00 00924257 1 0 -accustom%2:30:00:: 00273445 1 2 -accustomed%3:00:00:: 00024417 1 7 -accustomed%5:00:00:usual:00 00489491 2 0 -ace%1:04:00:: 00568701 6 0 -ace%1:06:00:: 02673291 2 3 -ace%1:14:00:: 08175498 5 0 -ace%1:18:00:: 09762509 3 2 -ace%1:23:00:: 13742573 1 10 -ace%1:27:00:: 14735642 4 0 -ace%2:33:00:: 01113367 2 0 -ace%2:33:01:: 01077759 4 0 -ace%2:33:02:: 01085130 3 0 -ace%2:41:00:: 02522581 1 0 -ace%5:00:00:superior:02 02341864 1 0 -ace_inhibitor%1:06:00:: 02673637 1 0 -ace_of_clubs%1:06:00:: 02674101 1 0 -ace_of_diamonds%1:06:00:: 02674184 1 0 -ace_of_hearts%1:06:00:: 02674273 1 0 -ace_of_spades%1:06:00:: 02674358 1 1 -acebutolol%1:06:00:: 02673480 1 0 -acedia%1:04:00:: 00758795 1 0 -acellular%3:00:00:: 00328128 1 0 -acellular_slime_mold%1:20:00:: 12975804 1 0 -acentric%3:01:00:: 03140110 1 0 -acentric%5:00:00:eccentric:00 00543407 2 0 -acentric_chromosome%1:08:00:: 05444610 1 0 -acephalia%1:26:00:: 14019441 1 0 -acephalism%1:26:00:: 14019441 1 0 -acephalous%5:00:00:headless:00 01184448 1 0 -acephaly%1:26:00:: 14019441 1 0 -acer%1:20:00:: 12752039 1 0 -acer_argutum%1:20:00:: 12755559 1 0 -acer_campestre%1:20:00:: 12754648 1 0 -acer_circinatum%1:20:00:: 12754468 1 0 -acer_glabrum%1:20:00:: 12754174 1 0 -acer_japonicum%1:20:00:: 12755727 1 0 -acer_macrophyllum%1:20:00:: 12754003 1 0 -acer_negundo%1:20:00:: 12755225 1 0 -acer_negundo_californicum%1:20:00:: 12755387 1 0 -acer_palmatum%1:20:00:: 12755876 1 0 -acer_pennsylvanicum%1:20:00:: 12753762 1 0 -acer_platanoides%1:20:00:: 12754781 1 0 -acer_pseudoplatanus%1:20:00:: 12754981 1 0 -acer_rubrum%1:20:00:: 12753573 1 0 -acer_saccharinum%1:20:00:: 12753007 1 0 -acer_saccharum%1:20:00:: 12753245 1 0 -acer_spicatum%1:20:00:: 12754311 1 0 -aceraceae%1:20:00:: 12751823 1 0 -acerate%5:00:00:simple:01 02167133 1 0 -acerate_leaf%1:20:00:: 13157595 1 0 -acerb%5:00:00:sour:00 02369027 1 0 -acerb%5:00:00:unpleasant:00 01802165 2 0 -acerbate%2:30:00:: 00270440 2 0 -acerbate%2:37:00:: 01773535 1 0 -acerbic%5:00:00:sour:00 02369027 1 0 -acerbic%5:00:00:unpleasant:00 01802165 2 0 -acerbity%1:07:00:: 04643397 3 0 -acerbity%1:07:01:: 04994126 2 0 -acerbity%1:07:02:: 04995009 1 0 -acerola%1:13:00:: 07746334 2 0 -acerola%1:20:00:: 12694486 1 0 -acerose%5:00:00:simple:01 02167133 1 0 -acervate%3:01:00:: 02600447 1 0 -acervulus%1:20:00:: 11533026 1 0 -acetabular%5:00:00:concave:00 00535844 1 0 -acetabulum%1:08:00:: 05596224 1 0 -acetal%1:27:00:: 14710805 1 0 -acetaldehyde%1:27:00:: 14711008 1 0 -acetaldol%1:27:00:: 14710935 1 0 -acetamide%1:27:00:: 14711197 1 0 -acetaminophen%1:06:00:: 02674482 1 0 -acetanilid%1:06:00:: 02674912 1 0 -acetanilide%1:06:00:: 02674912 1 0 -acetate%1:06:00:: 02675219 2 0 -acetate%1:27:00:: 14599806 1 0 -acetate_disk%1:06:00:: 02675077 1 0 -acetate_rayon%1:06:00:: 02675219 1 0 -acetic%3:01:00:: 03039907 1 0 -acetic_acid%1:27:00:: 14599168 1 0 -acetic_anhydride%1:27:00:: 14768640 1 0 -acetify%2:30:00:: 00264875 2 0 -acetify%2:39:00:: 02196690 1 0 -acetin%1:27:00:: 14599494 1 0 -acetoacetic_acid%1:27:00:: 14927051 1 0 -acetone%1:27:00:: 14600504 1 4 -acetone_body%1:27:00:: 14926595 1 0 -acetonemia%1:26:00:: 14267205 1 3 -acetonic%3:01:00:: 02600593 1 0 -acetonuria%1:26:00:: 14271480 1 0 -acetophenetidin%1:06:00:: 02675354 1 0 -acetose%5:00:00:sour:00 02369179 1 0 -acetous%5:00:00:sour:00 02369179 1 0 -acetphenetidin%1:06:00:: 02675354 1 0 -acetum%1:13:00:: 07828987 2 0 -acetum%1:27:00:: 14599641 1 0 -acetyl%1:27:00:: 14594456 1 0 -acetyl_chloride%1:27:00:: 14808911 1 0 -acetyl_group%1:27:00:: 14594456 1 0 -acetyl_radical%1:27:00:: 14594456 1 0 -acetylate%2:30:00:: 00524299 1 0 -acetylate%2:30:01:: 00524083 2 0 -acetylation%1:22:00:: 13425637 1 0 -acetylcholine%1:27:00:: 14808418 1 0 -acetylene%1:27:00:: 14600742 1 0 -acetylenic%3:01:00:: 02600691 1 0 -acetylic%3:01:00:: 02600792 1 0 -acetylise%2:30:00:: 00524299 1 0 -acetylise%2:30:01:: 00524083 2 0 -acetylize%2:30:00:: 00524299 1 0 -acetylize%2:30:01:: 00524083 2 0 -acetylsalicylic_acid%1:06:00:: 02748618 1 0 -achaea%1:15:00:: 08782490 1 0 -achaean%1:14:00:: 08160586 2 0 -achaean%1:18:00:: 09710619 1 0 -achaean%3:01:00:: 02600893 1 0 -achaian%1:18:00:: 09710619 1 0 -ache%1:26:00:: 14323683 1 2 -ache%2:37:06:: 01805684 2 3 -ache%2:39:00:: 02122164 3 2 -ache%2:39:01:: 02121511 1 3 -achene%1:20:00:: 12036067 1 0 -achenial%3:01:00:: 02601123 1 0 -acheron%1:17:00:: 09186709 1 0 -acheronian%5:00:00:dark:01 00273652 1 0 -acherontia%1:05:00:: 02299715 1 0 -acherontia_atropos%1:05:00:: 02299846 1 0 -acherontic%5:00:00:dark:01 00273652 1 0 -acheson%1:18:00:: 10807858 1 0 -acheson_process%1:22:00:: 13425839 1 0 -acheta%1:05:00:: 02229867 1 0 -acheta_assimilis%1:05:00:: 02230187 1 0 -acheta_domestica%1:05:00:: 02230023 1 0 -achievability%1:26:00:: 14482444 1 0 -achievable%5:00:00:possible:00 01821690 1 0 -achieve%2:41:00:: 02526085 1 100 -achievement%1:04:00:: 00035189 1 39 -achiever%1:18:00:: 09762821 1 0 -achille_ratti%1:18:00:: 11238303 1 0 -achillea%1:20:00:: 11916467 1 0 -achillea_millefolium%1:20:00:: 11916696 1 0 -achillea_ptarmica%1:20:00:: 11916965 1 0 -achilles%1:18:00:: 09594298 1 0 -achilles'_heel%1:07:00:: 05042468 1 0 -achilles_tendon%1:08:00:: 05578740 1 0 -achimenes%1:20:00:: 12830222 1 0 -aching%1:26:00:: 14323683 1 0 -aching%5:00:00:painful:00 01711465 1 1 -achira%1:20:00:: 12351091 1 0 -achlamydeous%3:00:00:: 00365681 1 0 -achlorhydria%1:26:00:: 14054262 1 0 -achlorhydric%3:01:00:: 02601242 1 0 -achmad_sukarno%1:18:00:: 11323849 1 0 -achoerodus%1:05:00:: 02608151 1 0 -achoerodus_gouldii%1:05:00:: 02608284 1 0 -acholia%1:26:00:: 14054465 1 0 -achomawi%1:10:00:: 06921755 3 0 -achomawi%1:14:00:: 08488081 2 0 -achomawi%1:18:00:: 09645996 1 0 -achondrite%1:17:00:: 09186928 1 0 -achondritic%3:00:00:: 00365936 2 0 -achondritic%3:01:00:: 02601326 1 0 -achondroplasia%1:26:00:: 14121804 1 0 -achondroplastic%3:01:00:: 02899271 1 0 -achondroplasty%1:26:00:: 14121804 1 0 -achras%1:20:00:: 12772419 1 0 -achras_zapota%1:20:00:: 12774641 1 0 -achromasia%1:07:00:: 04977561 1 0 -achromatic%3:00:00:: 00386392 1 0 -achromatic_color%1:07:00:: 04960079 1 0 -achromatic_colour%1:07:00:: 04960079 1 0 -achromatic_lens%1:06:00:: 02675522 1 0 -achromatic_vision%1:09:00:: 05655482 1 0 -achromaticity%1:07:00:: 04958634 1 0 -achromatin%1:08:00:: 05436381 1 0 -achromatinic%3:01:00:: 02696638 1 0 -achromatise%2:30:00:: 00524530 1 0 -achromatism%1:07:00:: 04958634 1 0 -achromatize%2:30:00:: 00524530 1 0 -achromatous%5:00:00:uncolored:00 00401831 1 0 -achromia%1:07:00:: 04959061 1 0 -achromic%5:00:00:uncolored:00 00401922 1 0 -achromous%5:00:00:uncolored:00 00401922 1 0 -achromycin%1:06:00:: 04416530 1 0 -achy%5:00:00:painful:00 01711465 1 0 -achylia%1:26:00:: 14054642 1 0 -achylia_gastrica%1:26:00:: 14054642 1 0 -acicula%1:17:00:: 09187036 1 0 -acicular%5:00:00:simple:01 02167133 1 0 -aciculate%3:01:00:: 02601432 1 0 -acid%1:06:00:: 02675657 2 0 -acid%1:27:00:: 14607521 1 4 -acid%5:00:00:acidic:00 00025470 3 0 -acid%5:00:00:sour:00 02369335 2 0 -acid%5:00:00:unpleasant:00 01802165 1 1 -acid-base_balance%1:22:00:: 13425980 1 0 -acid-base_equilibrium%1:22:00:: 13425980 1 0 -acid-base_indicator%1:27:00:: 14609198 1 0 -acid-fast%5:00:00:impervious:00 01774191 1 0 -acid-forming%5:00:00:acidic:00 00025633 1 0 -acid-loving%3:00:00:: 00026706 1 0 -acid-tasting%5:00:00:tasty:00 02395810 1 0 -acid-wash%2:35:00:: 01537271 1 0 -acid_anhydrides%1:27:00:: 14808617 1 0 -acid_dye%1:27:00:: 14754378 1 0 -acid_halide%1:27:00:: 14808752 1 0 -acid_head%1:18:00:: 09763272 1 0 -acid_hydrogen%1:27:00:: 14640890 1 0 -acid_precipitation%1:26:00:: 14517629 1 0 -acid_rain%1:26:00:: 14517629 1 0 -acid_rock%1:10:00:: 07065562 1 0 -acid_test%1:09:00:: 05747495 1 0 -acid_value%1:23:00:: 13581598 1 0 -acidemia%1:26:00:: 14020753 1 0 -acidic%3:00:00:: 00025238 1 0 -acidic%5:00:00:sour:00 02369335 2 0 -acidic_hydrogen%1:27:00:: 14640890 1 0 -acidification%1:22:00:: 13426238 1 0 -acidify%2:30:00:: 00264875 2 0 -acidify%2:39:00:: 02196690 1 0 -acidimetric%3:01:00:: 02601564 1 0 -acidimetry%1:04:00:: 00647919 1 0 -acidity%1:07:01:: 05039526 3 0 -acidity%1:07:02:: 04993882 1 1 -acidity%1:09:00:: 05716961 2 0 -acidophil%1:05:00:: 01349333 1 0 -acidophile%1:05:00:: 01349333 1 0 -acidophilic%5:00:00:acid-loving:00 00026895 1 0 -acidophilous%5:00:00:acid-loving:00 00026895 1 0 -acidophilus%1:05:00:: 01380298 1 0 -acidophilus_milk%1:13:00:: 07845571 1 0 -acidosis%1:26:00:: 14019600 1 0 -acidotic%3:01:00:: 02601674 1 0 -acidulate%2:39:00:: 02196690 1 0 -acidulent%5:00:00:sour:00 02369335 1 0 -acidulous%5:00:00:sour:00 02369335 1 0 -acidulousness%1:09:00:: 05716961 1 0 -aciduric%5:00:00:acid-loving:00 00026895 1 0 -acinar%3:01:00:: 02601788 2 0 -acinar%3:01:01:: 02601940 1 0 -acinic%3:01:00:: 02601940 1 0 -acinonyx%1:05:00:: 02130190 1 0 -acinonyx_jubatus%1:05:00:: 02130308 1 0 -acinos%1:20:00:: 12839409 1 0 -acinos_arvensis%1:20:00:: 12839574 1 0 -acinose%3:01:00:: 02601940 1 0 -acinous%3:01:00:: 02601940 1 0 -acinus%1:08:00:: 05516366 2 0 -acinus%1:20:00:: 13138155 1 0 -acipenser%1:05:00:: 02640453 1 0 -acipenser_huso%1:05:00:: 02640857 1 0 -acipenser_transmontanus%1:05:00:: 02640626 1 0 -acipenseridae%1:05:00:: 02640093 1 0 -ack-ack%1:06:00:: 02715712 1 0 -ack-ack_gun%1:06:00:: 02715712 1 0 -ackee%1:13:00:: 07762740 1 0 -acknowledge%2:31:02:: 00740449 5 0 -acknowledge%2:31:09:: 00592883 6 0 -acknowledge%2:32:00:: 00817311 1 5 -acknowledge%2:32:01:: 00892467 4 1 -acknowledge%2:32:04:: 00892698 2 3 -acknowledge%2:32:07:: 01059123 3 2 -acknowledgeable%5:00:00:identifiable:00 01272609 1 0 -acknowledged%3:00:00:: 00027247 1 0 -acknowledged%5:00:00:unquestionable:00 01918464 2 0 -acknowledgement%1:10:00:: 06628861 2 0 -acknowledgement%1:26:00:: 14411981 1 0 -acknowledgment%1:10:00:: 06628861 3 0 -acknowledgment%1:10:01:: 06763681 2 0 -acknowledgment%1:26:00:: 14411981 1 0 -aclant%1:14:00:: 08174995 1 0 -aclinic_line%1:15:00:: 08490531 1 0 -acme%1:15:00:: 08677801 2 0 -acme%1:26:00:: 13940456 1 0 -acne%1:26:00:: 14222112 1 0 -acne_rosacea%1:26:00:: 14222352 1 0 -acne_vulgaris%1:26:00:: 14222541 1 0 -acned%5:00:00:blemished:00 00246175 1 0 -acneiform%3:01:00:: 02602190 1 0 -acnidosporidia%1:05:00:: 01425817 1 0 -acocanthera%1:20:00:: 11768242 1 0 -acocanthera_oblongifolia%1:20:00:: 11768505 1 0 -acocanthera_oppositifolia%1:20:00:: 11768816 1 0 -acocanthera_spectabilis%1:20:00:: 11768505 1 0 -acocanthera_venenata%1:20:00:: 11768816 1 0 -acokanthera%1:20:00:: 11768242 1 0 -acold%5:00:00:cold:01 01251830 1 0 -acolyte%1:18:00:: 09763349 1 1 -aconcagua%1:17:00:: 09187204 1 0 -aconite%1:20:00:: 11722982 1 0 -aconitum%1:20:00:: 11722769 1 0 -aconitum_lycoctonum%1:20:00:: 11723452 1 0 -aconitum_napellus%1:20:00:: 11723227 1 0 -acoraceae%1:20:00:: 11780747 1 0 -acorea%1:26:00:: 14021853 1 0 -acores%1:15:00:: 08985345 1 0 -acorn%1:20:00:: 12267677 1 0 -acorn-shaped%5:00:00:formed:00 02144834 1 0 -acorn_barnacle%1:05:00:: 01998741 1 0 -acorn_cup%1:20:00:: 12267931 1 0 -acorn_squash%1:13:00:: 07717410 2 0 -acorn_squash%1:20:00:: 12160857 1 0 -acorn_tube%1:06:00:: 02675885 1 0 -acorus%1:20:00:: 11780589 1 0 -acorus_calamus%1:20:00:: 11780930 1 0 -acousma%1:26:00:: 14377830 1 0 -acoustic%1:06:00:: 02675987 1 0 -acoustic%3:01:00:: 02868489 1 0 -acoustic_aphasia%1:26:00:: 14097893 1 0 -acoustic_buoy%1:10:00:: 07266442 1 0 -acoustic_delay_line%1:06:00:: 02676097 1 0 -acoustic_device%1:06:00:: 02676261 1 0 -acoustic_gramophone%1:06:00:: 03452267 1 0 -acoustic_guitar%1:06:00:: 02676566 1 0 -acoustic_impedance%1:19:00:: 11504478 1 0 -acoustic_meatus%1:08:00:: 05248667 1 0 -acoustic_modem%1:06:00:: 02676670 1 0 -acoustic_nerve%1:08:00:: 05479503 1 0 -acoustic_phenomenon%1:19:00:: 11425401 1 0 -acoustic_power%1:07:00:: 05100866 1 0 -acoustic_projection%1:19:00:: 11512331 1 0 -acoustic_radiation_pressure%1:07:00:: 05100981 1 0 -acoustic_reactance%1:19:00:: 11504478 1 0 -acoustic_resistance%1:19:00:: 11504478 1 0 -acoustic_spectrum%1:19:00:: 11510714 1 0 -acoustic_storage%1:06:00:: 02676805 1 0 -acoustic_wave%1:11:00:: 07347224 1 0 -acoustical%3:01:00:: 02868489 1 1 -acoustically%4:02:00:: 00134843 1 1 -acoustician%1:18:00:: 09763668 1 0 -acousticophobia%1:26:00:: 14384227 1 0 -acoustics%1:09:00:: 06094774 1 0 -acquaint%2:32:00:: 00901103 1 1 -acquaint%2:32:01:: 00874175 2 1 -acquaint%2:32:02:: 00832778 3 0 -acquaintance%1:09:00:: 05817145 1 2 -acquaintance%1:18:00:: 09763784 3 1 -acquaintance%1:26:00:: 13930245 2 1 -acquaintanceship%1:26:00:: 13930245 1 0 -acquainted%5:00:00:familiar:00 00965894 1 1 -acquiesce%2:32:00:: 00804139 1 3 -acquiescence%1:10:00:: 07175575 2 1 -acquiescence%1:26:00:: 14413162 1 3 -acquiescent%5:00:00:obedient:00 01612627 1 0 -acquirable%5:00:00:available:00 00183832 1 0 -acquire%2:29:00:: 00094460 3 1 -acquire%2:30:00:: 00524682 2 5 -acquire%2:30:05:: 00545557 7 0 -acquire%2:31:00:: 00597915 6 0 -acquire%2:40:00:: 02210855 1 34 -acquire%2:40:06:: 02288295 5 0 -acquire%2:42:00:: 02695378 4 0 -acquired%5:00:00:noninheritable:00 01315670 1 1 -acquired_hemochromatosis%1:26:00:: 14207388 1 0 -acquired_immune_deficiency_syndrome%1:26:00:: 14127782 1 0 -acquired_immunity%1:26:00:: 14528193 1 0 -acquired_reflex%1:04:00:: 00864226 1 0 -acquired_taste%1:12:00:: 07498455 1 0 -acquirement%1:09:00:: 05637558 1 0 -acquirer%1:14:00:: 08419562 2 0 -acquirer%1:14:01:: 08419354 3 0 -acquirer%1:14:02:: 08419163 4 0 -acquirer%1:18:00:: 09764201 1 0 -acquiring%1:04:00:: 00041899 1 0 -acquisition%1:04:00:: 00077419 1 11 -acquisition%1:09:00:: 05637558 4 0 -acquisition%1:09:01:: 05752544 3 0 -acquisition%1:21:00:: 13253255 2 0 -acquisition_agreement%1:10:00:: 06527710 1 0 -acquisitive%3:00:00:: 00029343 1 0 -acquisitiveness%1:07:00:: 04946078 1 0 -acquit%2:32:00:: 00904046 1 1 -acquit%2:41:00:: 02518161 2 0 -acquittal%1:04:00:: 01193886 1 0 -acquittance%1:10:00:: 06552814 1 0 -acquitted%5:00:00:innocent:00 01320474 1 0 -acragas%1:15:00:: 08811812 1 0 -acrasiomycetes%1:20:00:: 12975982 1 0 -acre%1:15:00:: 08793310 3 0 -acre%1:15:01:: 08854725 2 0 -acre%1:23:00:: 13613742 1 15 -acre-foot%1:23:00:: 13617468 1 0 -acre_inch%1:23:00:: 13617630 1 0 -acreage%1:07:00:: 05128870 1 4 -acres%1:21:00:: 13246662 1 4 -acrid%5:00:00:tasty:00 02398608 1 0 -acrid%5:00:00:unpleasant:00 01802165 2 0 -acridid%1:05:00:: 02226821 1 0 -acrididae%1:05:00:: 02226598 1 0 -acridity%1:07:00:: 04995100 2 0 -acridity%1:07:01:: 04780232 3 0 -acridity%1:09:00:: 05717266 1 0 -acridness%1:07:00:: 04995100 1 0 -acridness%1:07:01:: 04780232 2 0 -acridotheres%1:05:00:: 01577818 1 0 -acridotheres_tristis%1:05:00:: 01577941 1 0 -acrilan%1:06:00:: 03979847 1 0 -acrimonious%5:00:00:resentful:00 00116744 1 0 -acrimony%1:07:00:: 04643397 1 0 -acris%1:05:00:: 01651370 1 0 -acris_crepitans%1:05:00:: 01651641 1 0 -acris_gryllus%1:05:00:: 01651778 1 0 -acritical%5:00:00:noncritical:01 00651841 1 0 -acroanaesthesia%1:26:00:: 14028291 1 0 -acroanesthesia%1:26:00:: 14028291 1 0 -acrobat%1:18:00:: 09764381 1 0 -acrobates%1:05:00:: 01882372 1 0 -acrobatic%5:00:00:active:01 00032497 1 1 -acrobatic_feat%1:04:00:: 00438065 1 0 -acrobatic_stunt%1:04:00:: 00438065 1 0 -acrobatics%1:04:00:: 00434075 1 1 -acrobatics%1:04:01:: 00302861 2 0 -acrocarp%1:20:00:: 11539289 1 0 -acrocarpous%3:00:00:: 02590268 1 0 -acrocarpous_moss%1:20:00:: 11539289 1 0 -acrocarpus%1:20:00:: 12490330 1 0 -acrocarpus_fraxinifolius%1:20:00:: 12490490 1 0 -acrocentric%3:01:00:: 03140220 1 0 -acrocentric_chromosome%1:08:00:: 05444709 1 0 -acrocephalus%1:05:00:: 01565480 1 0 -acrocephalus_schoenobaenus%1:05:00:: 01565599 1 0 -acrocephaly%1:26:00:: 14164190 1 0 -acroclinium%1:20:00:: 11917186 1 0 -acroclinium_roseum%1:20:00:: 11917407 1 0 -acrocomia%1:20:00:: 12583529 1 0 -acrocomia_aculeata%1:20:00:: 12583855 1 0 -acrocomia_vinifera%1:20:00:: 12583681 1 0 -acrocyanosis%1:26:00:: 14303448 1 0 -acrodont%1:05:00:: 01324916 1 0 -acrogen%1:20:00:: 11536369 1 0 -acrogenic%3:01:00:: 02602434 1 0 -acrogenous%3:01:00:: 02602434 1 0 -acrolein%1:27:00:: 14998290 1 0 -acromegalia%1:26:00:: 14368483 1 0 -acromegalic%5:00:00:unshapely:00 02140834 1 0 -acromegaly%1:26:00:: 14368483 1 0 -acromial_process%1:08:00:: 05280365 1 0 -acromicria%1:26:00:: 14021936 1 0 -acromikria%1:26:00:: 14021936 1 0 -acromion%1:08:00:: 05280365 1 0 -acromphalus%1:26:00:: 14022068 1 0 -acromyotonia%1:26:00:: 14545548 1 0 -acronym%1:10:00:: 07091902 1 0 -acronymic%3:01:00:: 02859341 1 0 -acronymous%3:01:00:: 02859341 1 0 -acropetal%3:00:00:: 00031674 1 0 -acrophobia%1:26:00:: 14382766 1 0 -acrophobic%5:00:00:afraid:00 00078329 1 0 -acrophony%1:10:00:: 07230796 1 0 -acropolis%1:06:00:: 02676938 1 0 -acropora%1:05:00:: 01917434 1 0 -acroscopic%3:00:00:: 00002730 1 0 -acrosome%1:08:00:: 05457795 1 0 -across%4:02:00:: 00272844 2 1 -across%4:02:01:: 00272951 1 4 -across-the-board%5:00:00:comprehensive:00 00526062 1 0 -across_the_board%4:02:00:: 00150925 1 0 -across_the_country%4:02:00:: 00407215 1 0 -across_the_nation%4:02:00:: 00407215 1 2 -acrostic%1:10:00:: 06786209 1 0 -acrostic%1:10:01:: 06366130 2 0 -acrostichum%1:20:00:: 13206001 1 0 -acrostichum_aureum%1:20:00:: 13206178 1 0 -acrylamide%1:27:00:: 14711364 1 0 -acrylate%1:27:00:: 14998421 1 0 -acrylate_resin%1:27:00:: 14593671 1 0 -acrylic%1:06:00:: 02677028 4 0 -acrylic%1:06:01:: 02677136 3 0 -acrylic%1:27:00:: 14593671 2 0 -acrylic%1:27:01:: 14965958 1 0 -acrylic_acid%1:27:00:: 14998522 1 0 -acrylic_fiber%1:27:00:: 14965958 1 0 -acrylic_paint%1:06:00:: 02677136 1 0 -acrylic_resin%1:27:00:: 14593671 1 0 -acrylonitrile%1:27:00:: 14998677 1 0 -acrylonitrile-butadiene-styrene%1:27:00:: 14592028 1 0 -act%1:03:00:: 00030358 2 24 -act%1:10:00:: 07009640 3 9 -act%1:10:01:: 06532095 1 35 -act%1:10:02:: 06892016 4 3 -act%1:10:03:: 07014029 5 0 -act%2:29:00:: 00010435 2 22 -act%2:29:01:: 00013615 5 1 -act%2:33:00:: 01095899 4 4 -act%2:36:00:: 01719302 3 7 -act%2:36:03:: 01719921 10 0 -act%2:36:04:: 01721556 9 0 -act%2:41:00:: 02367363 1 35 -act%2:41:06:: 02525447 7 0 -act%2:41:07:: 02419073 8 0 -act%2:42:00:: 02744977 6 0 -act_as%2:29:00:: 00013615 2 0 -act_as%2:42:00:: 02671613 1 24 -act_involuntarily%2:29:00:: 00010241 1 0 -act_of_god%1:11:00:: 07315350 1 0 -act_of_terrorism%1:04:00:: 00759694 1 0 -act_on%2:41:00:: 02376429 1 5 -act_on%2:41:01:: 02376631 2 2 -act_out%2:36:00:: 01722447 2 1 -act_out%2:36:01:: 01722645 1 1 -act_reflexively%2:29:00:: 00010241 1 0 -act_superior%2:41:00:: 02593551 1 0 -act_up%2:39:00:: 02122522 2 0 -act_up%2:41:00:: 02517655 1 0 -act_upon%2:41:00:: 02536557 1 0 -actable%3:00:00:: 00795785 1 0 -actaea%1:20:00:: 11723655 1 0 -actaea_alba%1:20:00:: 11724363 1 0 -actaea_rubra%1:20:00:: 11724109 1 0 -acth%1:08:00:: 05408113 1 0 -actias%1:05:00:: 02302853 1 0 -actias_luna%1:05:00:: 02302969 1 0 -actifed%1:06:00:: 02677232 1 0 -actin%1:27:00:: 14731334 1 0 -actinal%3:00:00:: 01665816 1 0 -actinaria%1:05:00:: 01914415 1 0 -acting%1:04:00:: 00548326 1 5 -acting%5:00:00:impermanent:00 01756166 1 4 -acting_out%1:10:00:: 07014596 1 0 -acting_out%1:10:01:: 06887962 2 0 -actinia%1:05:00:: 01914961 1 0 -actinia%1:05:02:: 01914830 2 0 -actinian%1:05:00:: 01914830 1 0 -actiniaria%1:05:00:: 01914415 1 0 -actiniarian%1:05:00:: 01914830 1 0 -actinic%3:01:00:: 03039997 1 0 -actinic_dermatitis%1:26:00:: 14222685 1 0 -actinic_keratosis%1:26:00:: 14228376 1 0 -actinic_radiation%1:19:00:: 11421401 1 0 -actinic_ray%1:19:00:: 11421401 1 0 -actinide%1:27:00:: 14584110 1 0 -actinide_series%1:27:00:: 14625110 1 0 -actinidia%1:20:00:: 12371002 1 0 -actinidia_arguta%1:20:00:: 12371202 1 0 -actinidia_chinensis%1:20:00:: 12371439 1 0 -actinidia_deliciosa%1:20:00:: 12371439 1 0 -actinidia_polygama%1:20:00:: 12371704 1 0 -actinidiaceae%1:20:00:: 12370842 1 0 -actiniopteris%1:20:00:: 13206438 1 0 -actinism%1:07:00:: 04917292 1 0 -actinium%1:27:00:: 14627655 1 0 -actinoid%1:27:00:: 14584110 1 0 -actinoid%5:00:00:actinomorphic:00 02374557 1 0 -actinolite%1:27:00:: 14725217 1 0 -actinomeris%1:20:00:: 12030479 1 0 -actinomeris_alternifolia%1:20:00:: 12030908 1 0 -actinometer%1:06:00:: 02677436 1 1 -actinometric%3:01:00:: 02602644 1 0 -actinometrical%3:01:00:: 02602644 1 0 -actinometry%1:04:00:: 00998037 1 0 -actinomorphic%3:00:00:: 02374349 1 0 -actinomorphous%3:00:00:: 02374349 1 0 -actinomyces%1:05:00:: 01375760 1 0 -actinomycetaceae%1:05:00:: 01375460 1 0 -actinomycetal%3:01:00:: 02602784 1 0 -actinomycetales%1:05:00:: 01374989 1 0 -actinomycete%1:05:00:: 01375204 1 0 -actinomycetous%3:01:00:: 02602784 1 0 -actinomycin%1:06:00:: 02677602 1 0 -actinomycosis%1:26:00:: 14254102 1 0 -actinomycotic%3:01:00:: 02602951 1 0 -actinomyxidia%1:05:00:: 01427005 1 0 -actinomyxidian%1:05:00:: 01427143 1 0 -actinon%1:27:00:: 14584110 1 0 -actinopod%1:05:00:: 01390466 1 0 -actinopoda%1:05:00:: 01390287 1 0 -actinotherapy%1:04:00:: 00705580 1 0 -actinozoa%1:05:00:: 01913838 1 0 -actinozoan%1:05:00:: 01914163 1 0 -action%1:04:00:: 00576451 10 0 -action%1:04:01:: 01181902 8 1 -action%1:04:02:: 00037396 1 94 -action%1:04:03:: 00952963 3 16 -action%1:04:04:: 01182312 9 0 -action%1:06:00:: 02677718 7 1 -action%1:07:00:: 04835950 6 1 -action%1:10:00:: 06373513 5 1 -action%1:22:00:: 13518963 4 7 -action%1:26:00:: 14006945 2 18 -action%2:36:00:: 01640855 2 0 -action%2:41:00:: 02582042 1 0 -action_at_law%1:04:00:: 01181902 1 0 -action_mechanism%1:06:00:: 02677718 1 0 -action_officer%1:18:00:: 09764732 1 0 -action_painting%1:06:00:: 02668747 1 0 -action_plant%1:20:00:: 11755319 1 0 -action_potential%1:11:00:: 07308308 1 0 -action_replay%1:04:00:: 01020117 1 0 -action_spectrum%1:19:00:: 11421618 1 0 -actionable%5:00:00:unjust:00 01370864 1 0 -actitis%1:05:00:: 02026798 1 0 -actitis_hypoleucos%1:05:00:: 02026948 1 0 -actitis_macularia%1:05:00:: 02027075 1 0 -actium%1:04:00:: 01268457 2 0 -actium%1:15:00:: 08786161 1 0 -activase%1:06:00:: 04441282 1 0 -activate%2:30:00:: 00190682 2 2 -activate%2:30:01:: 00190886 5 0 -activate%2:30:02:: 00190999 4 0 -activate%2:30:03:: 00191385 3 0 -activate%2:36:00:: 01643657 1 3 -activated%5:00:00:active:07 00042692 3 0 -activated%5:00:00:active:08 00034924 4 0 -activated%5:00:00:reactive:00 01928926 2 0 -activated%5:00:00:treated:00 01954005 1 3 -activated_carbon%1:27:00:: 14796359 1 0 -activated_charcoal%1:27:00:: 14796359 1 0 -activating%1:04:00:: 01046984 1 0 -activating%5:00:00:causative:00 00322938 1 0 -activating_agent%1:27:00:: 14723425 1 0 -activation%1:04:00:: 01046984 2 0 -activation%1:04:01:: 00236821 3 0 -activation%1:22:00:: 13426376 1 0 -activation_energy%1:19:00:: 11421822 1 6 -activator%1:27:00:: 14723079 1 0 -active%1:18:00:: 09764900 3 0 -active%1:24:00:: 13803158 2 0 -active%1:27:00:: 14776804 1 16 -active%3:00:00:: 00041618 11 0 -active%3:00:01:: 00031974 5 3 -active%3:00:02:: 00037457 1 9 -active%3:00:03:: 00038750 3 5 -active%3:00:04:: 00040325 13 0 -active%3:00:05:: 00041361 12 0 -active%3:00:06:: 00035465 7 2 -active%3:00:07:: 00042457 6 2 -active%3:00:08:: 00034710 14 0 -active%3:00:09:: 00042037 10 0 -active%3:00:10:: 00043411 9 0 -active%5:00:00:existent:00 00927373 8 1 -active%5:00:00:involved:00 01515280 4 4 -active%5:00:00:operational:00 01660444 2 7 -active_agent%1:27:00:: 14776804 1 0 -active_air_defense%1:04:00:: 00960395 1 0 -active_application%1:10:00:: 06570520 1 0 -active_birth%1:22:00:: 13426591 1 0 -active_citizen%1:18:00:: 09765118 1 0 -active_immunity%1:26:00:: 14527553 1 0 -active_matrix_screen%1:06:00:: 02678010 1 0 -active_placebo%1:06:00:: 02678174 1 0 -active_site%1:15:00:: 08623260 1 0 -active_transport%1:22:00:: 13426726 1 0 -active_trust%1:21:00:: 13360950 1 0 -active_voice%1:24:00:: 13803158 1 0 -actively%4:02:00:: 00079617 1 3 -activeness%1:07:00:: 04635104 2 0 -activeness%1:26:00:: 14006945 1 0 -activewear%1:06:00:: 04285803 1 0 -activism%1:09:00:: 05901840 1 2 -activist%1:18:00:: 10315837 1 0 -activist%5:00:00:active:03 00039122 1 0 -activistic%5:00:00:active:03 00039122 1 0 -activity%1:04:00:: 00407535 1 43 -activity%1:07:00:: 04635104 6 0 -activity%1:22:00:: 13440063 3 13 -activity%1:22:01:: 13518963 5 0 -activity%1:26:00:: 14006945 2 36 -activity%1:26:01:: 14531203 4 0 -actomyosin%1:27:00:: 14729737 1 0 -actor%1:18:00:: 09765278 1 14 -actor%1:18:01:: 09767197 2 0 -actor's_agent%1:18:00:: 09767592 1 0 -actor's_assistant%1:18:00:: 10033082 1 0 -actor's_line%1:10:00:: 07010821 1 0 -actress%1:18:00:: 09767700 1 3 -acts%1:10:00:: 06442405 1 0 -acts_of_the_apostles%1:10:00:: 06442405 1 0 -actual%3:00:00:: 00043765 1 22 -actual%5:00:00:current:00 00666610 5 0 -actual%5:00:00:real:00 01933520 2 8 -actual%5:00:00:true:00 02460964 3 3 -actual%5:00:02:real:00 01933731 4 2 -actual_damages%1:21:00:: 13291356 1 0 -actual_eviction%1:04:00:: 01194711 1 0 -actual_possession%1:04:00:: 00809886 1 0 -actual_sin%1:04:00:: 00757337 1 0 -actualisation%1:04:00:: 00931847 1 0 -actualise%2:32:00:: 00987870 2 0 -actualise%2:36:00:: 01644746 1 0 -actuality%1:26:00:: 13954818 1 4 -actualization%1:04:00:: 00931847 1 0 -actualize%2:32:00:: 00987870 2 0 -actualize%2:36:00:: 01644746 1 0 -actually%4:02:00:: 00149138 2 13 -actually%4:02:01:: 00149510 1 36 -actually%4:02:02:: 00149744 4 0 -actually%4:02:03:: 00150003 3 0 -actuarial%3:01:00:: 02939542 1 0 -actuarial_table%1:14:00:: 08266542 1 0 -actuary%1:18:00:: 10652954 1 0 -actuate%2:36:00:: 01643657 1 2 -actuate%2:36:02:: 01649999 2 0 -actuated%5:00:00:motivated:00 01558641 1 0 -actuating%5:00:00:causative:00 00322938 1 0 -actuation%1:04:00:: 00045250 1 0 -actuator%1:06:00:: 02678384 1 0 -actus_reus%1:04:00:: 00732746 1 0 -acuate%5:00:00:pointed:00 01810189 1 0 -acuity%1:09:00:: 05620468 2 0 -acuity%1:09:01:: 05655567 1 0 -acular%1:06:00:: 03612559 1 0 -aculea%1:05:00:: 01900985 1 0 -aculeate%3:01:00:: 02603069 1 0 -aculeated%3:01:00:: 02603069 1 0 -aculeus%1:05:00:: 01901091 2 0 -aculeus%1:20:00:: 13089419 1 0 -acumen%1:09:00:: 05621808 2 0 -acumen%1:20:00:: 13089526 1 0 -acuminate%2:30:00:: 00393227 1 0 -acuminate%5:00:00:simple:01 02167285 1 0 -acuminate_leaf%1:20:00:: 13157684 1 0 -acupressure%1:04:00:: 00710338 1 0 -acupuncture%1:04:00:: 00710155 1 0 -acute%1:10:00:: 06822576 1 0 -acute%3:00:00:: 00044760 1 2 -acute%3:00:02:: 01811820 4 0 -acute%5:00:00:critical:03 00650900 6 0 -acute%5:00:00:perceptive:00 01744515 3 1 -acute%5:00:00:pointed:00 01810189 5 0 -acute%5:00:00:sharp:04 00803275 2 2 -acute-angled_triangle%1:25:00:: 13879816 1 0 -acute_accent%1:10:00:: 06822576 1 0 -acute_angle%1:25:00:: 13891937 1 0 -acute_anterior_poliomyelitis%1:26:00:: 14140176 1 0 -acute_brain_disorder%1:26:00:: 14054762 1 0 -acute_gastritis%1:26:00:: 14346606 1 0 -acute_glaucoma%1:26:00:: 14255536 1 0 -acute_glossitis%1:26:00:: 14347045 1 0 -acute_hemorrhagic_encephalitis%1:26:00:: 14342742 1 0 -acute_inclusion_body_encephalitis%1:26:00:: 14343062 1 0 -acute_kidney_failure%1:26:00:: 14114886 1 0 -acute_leukemia%1:26:00:: 14243268 1 0 -acute_lymphoblastic_leukemia%1:26:00:: 14243393 1 0 -acute_lymphocytic_leukemia%1:26:00:: 14243393 1 0 -acute_myelocytic_leukemia%1:26:00:: 14243649 1 0 -acute_myeloid_leukemia%1:26:00:: 14243649 1 0 -acute_organic_brain_syndrome%1:26:00:: 14054762 1 0 -acute_pyelonephritis%1:26:00:: 14566476 1 0 -acute_renal_failure%1:26:00:: 14114886 1 0 -acute_schizophrenic_episode%1:26:00:: 14400325 1 0 -acute_triangle%1:25:00:: 13879816 1 0 -acutely%4:02:00:: 00140759 2 1 -acutely%4:02:01:: 00502325 1 4 -acutely%4:02:02:: 00503102 3 0 -acutely%4:02:03:: 00272587 4 0 -acuteness%1:07:00:: 04705536 3 0 -acuteness%1:09:00:: 05620468 2 0 -acuteness%1:09:01:: 05653327 1 0 -acyclic%3:00:01:: 00677877 1 0 -acyclic%3:00:02:: 00677313 2 0 -acyclovir%1:06:00:: 02678528 1 0 -acyl%1:27:00:: 14594708 1 0 -acyl_anhydrides%1:27:00:: 14808617 1 0 -acyl_group%1:27:00:: 14594708 1 0 -acyl_halide%1:27:00:: 14808752 1 0 -acylation%1:22:00:: 13426948 1 0 -acylglycerol%1:27:00:: 14885088 1 0 -ad%1:10:00:: 07248801 1 6 -ad%4:02:00:: 00001837 1 0 -ad-lib%1:10:00:: 06714697 1 0 -ad-lib%2:36:00:: 01728840 1 0 -ad-lib%5:00:00:unprepared:00 01845451 1 1 -ad-lib%5:00:00:unscripted:00 02213557 2 0 -ad_agency%1:14:00:: 08353912 1 0 -ad_blitz%1:04:00:: 00798959 1 0 -ad_campaign%1:04:00:: 00798959 1 1 -ad_hoc%4:02:00:: 00250987 1 1 -ad_hoc%5:00:00:specific:00 01103529 2 0 -ad_hoc%5:00:00:unplanned:00 01798371 1 0 -ad_hominem%5:00:00:personal:00 01767826 1 0 -ad_infinitum%4:02:01:: 00087777 1 2 -ad_interim%4:02:00:: 00088549 1 0 -ad_lib%4:02:00:: 00088655 1 0 -ad_libitum%4:02:00:: 00088655 1 0 -ad_nauseam%4:02:00:: 00251073 1 0 -ad_val%4:02:00:: 00251166 1 0 -ad_valorem%4:02:00:: 00251166 1 0 -ad_valorem_tax%1:21:00:: 13316722 1 0 -ada%1:27:00:: 14707361 1 0 -ada-scid%1:26:00:: 14129223 1 0 -adactylia%1:26:00:: 14152803 1 0 -adactylism%1:26:00:: 14152803 1 0 -adactylous%3:01:00:: 02603235 1 0 -adactyly%1:26:00:: 14152803 1 0 -adad%1:18:00:: 09515027 1 0 -adage%1:10:00:: 07153838 1 0 -adagio%1:04:00:: 00526259 2 0 -adagio%1:10:00:: 07047804 1 0 -adagio%4:02:00:: 00265059 1 0 -adagio%5:00:00:slow:02 00982881 1 0 -adalia%1:05:00:: 02165754 2 0 -adalia%1:15:00:: 09040839 1 0 -adalia_bipunctata%1:05:00:: 02165877 1 0 -adam%1:06:00:: 02678738 3 0 -adam%1:18:00:: 09586553 1 14 -adam%1:18:01:: 10808045 2 0 -adam's_apple%1:08:00:: 05530296 2 0 -adam's_apple%1:20:00:: 11776511 1 0 -adam's_needle%1:20:00:: 12483427 1 0 -adam's_needle-and-thread%1:20:00:: 12483427 1 0 -adam's_peak%1:17:00:: 09187594 1 0 -adam-and-eve%1:20:00:: 12045514 1 0 -adam_smith%1:18:00:: 11305258 1 0 -adamance%1:07:00:: 04863793 1 0 -adamant%1:27:00:: 14834563 1 0 -adamant%5:00:00:inflexible:02 01024812 1 2 -adamantine%3:01:00:: 02603319 1 0 -adamantine%5:00:00:hard:01 01151246 2 0 -adamantine%5:00:00:inflexible:02 01024812 3 0 -adamantly%4:02:00:: 00177174 1 1 -adams%1:17:00:: 09187407 4 0 -adams%1:18:00:: 10808200 3 0 -adams%1:18:01:: 10808353 2 0 -adams%1:18:02:: 10808539 1 0 -adams-stokes_syndrome%1:26:00:: 14362593 1 0 -adana%1:15:00:: 09040475 1 0 -adansonia%1:20:00:: 12189620 1 0 -adansonia_digitata%1:20:00:: 12189987 1 0 -adansonia_gregorii%1:20:00:: 12189779 1 0 -adapa%1:18:00:: 09515131 1 0 -adapid%1:05:00:: 02496210 1 0 -adapid_group%1:05:00:: 02496210 1 0 -adapin%1:06:00:: 03229905 1 0 -adapt%2:30:01:: 00299580 1 7 -adapt%2:30:02:: 00150287 2 3 -adaptability%1:07:00:: 04659090 1 0 -adaptable%3:00:00:: 01027263 1 1 -adaptation%1:04:01:: 00193406 3 0 -adaptation%1:10:00:: 06408779 1 1 -adaptation%1:22:00:: 13427078 2 0 -adaptational%5:00:00:adaptive:00 00046471 1 0 -adaptative%3:00:00:: 00046109 1 0 -adapted%5:00:00:modified:00 01540637 1 1 -adapter%1:06:00:: 02678897 2 0 -adapter%1:18:00:: 09809925 1 0 -adaption%1:22:00:: 13427078 1 0 -adaptive%3:00:00:: 00046109 1 0 -adaptive_radiation%1:11:00:: 07440045 1 0 -adaptor%1:06:00:: 02678897 1 0 -adar%1:28:00:: 15215480 1 0 -adar_sheni%1:28:00:: 15215693 1 0 -adaxial%3:00:00:: 00002527 1 0 -adaxially%4:02:00:: 00512597 1 0 -add%1:26:00:: 14056280 1 0 -add%2:30:00:: 00182406 1 116 -add%2:31:00:: 00640828 4 3 -add%2:32:00:: 00949288 5 1 -add%2:32:01:: 01027174 2 68 -add%2:40:00:: 02324478 3 15 -add%2:42:00:: 02745172 6 0 -add-in%1:06:00:: 03033986 1 0 -add-on%1:06:00:: 02679415 1 0 -add-on%1:06:01:: 02671421 2 0 -add_on%2:30:00:: 00183757 1 1 -add_on%2:35:00:: 01328705 2 0 -add_to%2:30:00:: 00157347 1 0 -add_together%2:31:00:: 00640828 2 0 -add_together%2:32:00:: 00949288 1 0 -add_up%2:32:00:: 00949288 2 2 -add_up%2:42:00:: 02619612 4 0 -add_up%2:42:01:: 02627363 1 4 -add_up%2:42:03:: 02645007 3 0 -addable%5:00:00:additive:00 00048706 1 0 -addax%1:05:00:: 02421136 1 0 -addax_nasomaculatus%1:05:00:: 02421136 1 0 -addend%1:23:00:: 13728818 1 0 -addendum%1:10:00:: 06399631 1 0 -adder%1:05:00:: 01752585 3 0 -adder%1:06:00:: 02679142 2 0 -adder%1:18:00:: 09768753 1 0 -adder's_fern%1:20:00:: 13173882 1 0 -adder's_tongue%1:20:00:: 12960378 1 0 -adder's_tongue_fern%1:20:00:: 12960378 1 0 -addible%5:00:00:additive:00 00048706 1 0 -addict%1:18:00:: 09768830 2 0 -addict%1:18:01:: 09769076 1 0 -addict%2:34:00:: 01165290 1 0 -addicted%3:00:00:: 00047029 1 1 -addiction%1:04:00:: 00087849 3 0 -addiction%1:12:00:: 07486145 2 0 -addiction%1:26:00:: 14062725 1 0 -addictive%3:00:00:: 00047786 1 0 -adding_machine%1:06:00:: 02679257 1 0 -addis_ababa%1:15:00:: 08778401 1 0 -addison's_disease%1:26:00:: 14116908 1 0 -addison's_syndrome%1:26:00:: 14116908 1 0 -addition%1:04:01:: 00872107 6 0 -addition%1:04:02:: 00363788 2 5 -addition%1:06:00:: 02679415 1 5 -addition%1:15:00:: 08554872 5 0 -addition%1:21:00:: 13253423 4 0 -addition%1:23:00:: 13754293 3 1 -addition_reaction%1:22:00:: 13427356 1 0 -additional%5:00:03:additive:00 00048858 1 0 -additionally%4:02:00:: 00046167 1 2 -additions_to_esther%1:10:00:: 06458685 1 0 -additive%1:06:00:: 02679788 1 5 -additive%3:00:00:: 00048129 2 0 -additive%3:00:04:: 01417451 1 0 -additive_inverse%1:24:00:: 13843001 1 0 -addle%2:30:00:: 00210647 2 0 -addle%2:31:00:: 00620532 1 0 -addle-head%1:18:00:: 10598904 1 0 -addlebrained%5:00:00:confused:00 00435872 1 1 -addled%5:00:00:confused:00 00436115 2 0 -addled%5:00:00:stale:00 01069187 1 0 -addlehead%1:18:00:: 10598904 1 0 -addlepated%5:00:00:confused:00 00435872 1 0 -address%1:07:00:: 04842232 8 0 -address%1:07:01:: 05082648 7 0 -address%1:10:00:: 07238694 3 3 -address%1:10:01:: 06794216 5 0 -address%1:10:02:: 06787150 6 0 -address%1:10:03:: 07067591 4 1 -address%1:10:04:: 06356515 1 21 -address%1:15:00:: 08491027 2 5 -address%2:30:00:: 00464687 10 0 -address%2:32:00:: 00897564 1 16 -address%2:32:01:: 00990655 9 0 -address%2:32:02:: 00989201 2 5 -address%2:32:03:: 00990812 3 4 -address%2:32:04:: 01033527 8 0 -address%2:33:00:: 01150981 4 2 -address%2:34:00:: 01160899 5 1 -address%2:40:00:: 02249018 7 0 -address%2:41:08:: 02601456 6 0 -addressable%5:00:00:available:00 00183932 1 0 -addressed%3:00:00:: 00050641 1 1 -addressee%1:18:00:: 09769345 1 0 -addressing_machine%1:06:00:: 02679961 1 0 -addressograph%1:06:00:: 02679961 1 0 -adduce%2:32:00:: 01015866 1 0 -adducent%3:00:00:: 00003131 1 0 -adducer%1:18:00:: 09769525 1 0 -adducing%1:10:00:: 06649704 1 0 -adduct%1:27:00:: 14584016 1 0 -adduct%2:35:00:: 01449236 1 0 -adducting%3:00:00:: 00003131 1 0 -adduction%1:04:00:: 00333203 1 0 -adductive%3:00:00:: 00003131 1 0 -adductor%1:08:00:: 05291728 1 0 -adductor_muscle%1:08:00:: 05291728 1 0 -ade%1:13:00:: 07925966 1 0 -adelaide%1:15:00:: 08834543 1 0 -adelges%1:05:00:: 02254531 1 0 -adelges_abietis%1:05:00:: 02255023 1 0 -adelges_piceae%1:05:00:: 02254901 1 0 -adelgid%1:05:00:: 02254697 1 0 -adelgidae%1:05:00:: 02254370 1 0 -adelie%1:05:00:: 02056228 1 0 -adelie_coast%1:15:00:: 08494782 1 0 -adelie_land%1:15:00:: 08494782 1 0 -adelie_penguin%1:05:00:: 02056228 1 0 -adeline_virginia_stephen_woolf%1:18:00:: 11396667 1 0 -aden%1:15:00:: 09164903 1 0 -aden-abyan_islamic_army%1:14:00:: 08025112 1 0 -adenanthera%1:20:00:: 11758628 1 0 -adenanthera_pavonina%1:20:00:: 11758799 1 0 -adenauer%1:18:00:: 10808756 1 0 -adenine%1:27:00:: 14706889 1 0 -adenitis%1:26:00:: 14257687 1 0 -adenium%1:20:00:: 11769002 1 0 -adenium_multiflorum%1:20:00:: 11769176 1 0 -adenium_obesum%1:20:00:: 11769176 1 0 -adenocarcinoma%1:26:00:: 14246710 1 0 -adenocarcinomatous%3:01:00:: 02603423 1 0 -adenohypophysis%1:08:00:: 05484355 1 0 -adenoid%1:08:00:: 05529286 1 0 -adenoid%3:01:00:: 02603540 1 0 -adenoidal%3:01:00:: 02603673 1 0 -adenoidal%5:00:00:high:03 01213550 2 0 -adenoidectomy%1:04:00:: 00665970 1 0 -adenoma%1:26:00:: 14235793 1 1 -adenomatous_polyp%1:26:00:: 14234611 1 0 -adenomegaly%1:26:00:: 14367005 1 0 -adenomyosarcoma%1:26:00:: 14246097 1 0 -adenomyosis%1:26:00:: 14204763 1 0 -adenopathy%1:26:00:: 14117173 1 0 -adenosine%1:27:00:: 14707101 1 0 -adenosine_deaminase%1:27:00:: 14707361 1 0 -adenosine_diphosphate%1:27:00:: 14707903 1 0 -adenosine_monophosphate%1:27:00:: 14707710 1 0 -adenosine_triphosphate%1:27:00:: 14708042 1 0 -adenosis%1:26:00:: 14059928 1 0 -adenota%1:05:00:: 02427958 1 0 -adenota_vardoni%1:05:00:: 02428089 1 0 -adenovirus%1:05:00:: 01330126 1 0 -adenylic_acid%1:27:00:: 14707710 1 0 -adept%1:18:00:: 09762509 1 0 -adept%5:00:00:skilled:00 02226162 1 1 -adeptness%1:09:00:: 05642175 1 0 -adequacy%1:07:00:: 04792357 1 2 -adequacy%1:07:01:: 05112609 2 1 -adequate%3:00:00:: 00051045 1 17 -adequate%5:00:00:satisfactory:00 02080937 3 1 -adequate%5:00:00:sufficient:00 02336109 2 4 -adequate_to%5:00:00:adequate:00 00051373 1 4 -adequately%4:02:00:: 00369718 1 5 -adequateness%1:07:00:: 04792357 1 0 -ader_wax%1:27:00:: 14665102 1 0 -adermin%1:27:00:: 15091669 1 0 -adesite%1:27:00:: 14932222 1 0 -adh%1:08:00:: 05414147 1 0 -adhd%1:26:00:: 14056280 1 0 -adhere%2:30:00:: 00486557 2 3 -adhere%2:35:00:: 01356750 6 0 -adhere%2:35:01:: 01220885 3 1 -adhere%2:42:00:: 02718178 1 5 -adhere%2:42:01:: 02638630 5 0 -adhere%2:42:02:: 02638845 4 0 -adherence%1:04:00:: 01212882 1 2 -adherence%1:07:00:: 04935528 2 0 -adherent%1:18:00:: 10016103 1 3 -adherent%5:00:00:adhesive:00 00053032 1 0 -adhesion%1:04:00:: 01212882 4 0 -adhesion%1:07:00:: 04935528 3 0 -adhesion%1:08:00:: 05584008 2 0 -adhesion%1:26:00:: 14206224 1 0 -adhesion_contract%1:10:00:: 06521878 1 0 -adhesive%1:27:00:: 14702416 1 3 -adhesive%3:00:00:: 00052672 1 0 -adhesive_agent%1:27:00:: 14702416 1 0 -adhesive_bandage%1:06:00:: 02680110 1 0 -adhesive_friction%1:19:00:: 11460281 1 0 -adhesive_material%1:27:00:: 14702416 1 0 -adhesive_plaster%1:06:00:: 03957420 1 0 -adhesive_tape%1:06:00:: 02680337 1 0 -adhesiveness%1:07:00:: 04935528 1 0 -adhocracy%1:14:00:: 08009239 1 0 -adi_granth%1:10:00:: 06430784 1 0 -adiabatic%3:00:00:: 00744141 1 0 -adiabatic_process%1:22:00:: 13427481 1 0 -adiantaceae%1:20:00:: 13179216 1 0 -adiantum%1:20:00:: 13206584 1 0 -adiantum_bellum%1:20:00:: 13207572 1 0 -adiantum_capillus-veneris%1:20:00:: 13207094 1 0 -adiantum_pedatum%1:20:00:: 13207335 1 0 -adiantum_tenerum%1:20:00:: 13207736 1 0 -adiantum_tenerum_farleyense%1:20:00:: 13207923 1 0 -adience%1:16:00:: 09180791 1 0 -adient%3:01:00:: 02603779 1 0 -adieu%1:10:00:: 06629610 1 1 -adige%1:17:00:: 09187743 1 0 -adios%1:10:00:: 06629610 1 1 -adipic_acid%1:27:00:: 14612317 1 0 -adipose%5:00:00:fatty:00 00992133 1 0 -adipose_cell%1:08:00:: 05456622 1 0 -adipose_tissue%1:08:00:: 05268965 1 0 -adipose_tumor%1:26:00:: 14239322 1 0 -adiposeness%1:07:00:: 04999741 1 0 -adiposis%1:07:00:: 05000537 1 0 -adiposity%1:07:00:: 04999741 1 0 -adirondack_mountains%1:17:00:: 09187923 1 0 -adirondacks%1:17:00:: 09187923 1 0 -adit%1:06:00:: 02680512 1 0 -aditi%1:18:00:: 09524027 1 0 -aditya%1:18:00:: 09524151 1 0 -adjacency%1:07:00:: 05085991 1 0 -adjacent%5:00:00:close:01 00447472 1 4 -adjacent%5:00:00:connected:00 00566342 2 2 -adjacent%5:00:00:near:00 00444984 3 1 -adjectival%3:01:00:: 02936020 1 2 -adjectivally%4:02:00:: 00512691 1 0 -adjective%1:10:00:: 06321702 1 3 -adjective%1:10:01:: 06319029 2 2 -adjective%3:00:00:: 00055340 2 0 -adjective%3:01:00:: 02936020 1 0 -adjectively%4:02:00:: 00267321 1 0 -adjoin%2:30:01:: 00183383 3 0 -adjoin%2:35:02:: 01466978 1 3 -adjoin%2:35:03:: 01205696 2 0 -adjoining_room%1:06:00:: 02680638 1 0 -adjourn%2:30:00:: 00364297 1 4 -adjourn%2:41:00:: 02428487 2 0 -adjournment%1:04:00:: 00216038 1 2 -adjournment%1:04:01:: 01067070 2 0 -adjudge%2:32:00:: 00822367 1 0 -adjudicate%2:31:00:: 00698855 2 0 -adjudicate%2:41:03:: 02501278 1 0 -adjudication%1:04:00:: 00874457 1 1 -adjudicative%3:01:00:: 02603926 1 0 -adjudicator%1:18:00:: 09769636 1 0 -adjudicatory%3:01:00:: 02603926 1 0 -adjunct%1:10:00:: 06312767 3 0 -adjunct%1:17:00:: 09188229 1 5 -adjunct%1:18:00:: 09769803 2 0 -adjunct%5:00:00:subordinate:01 00793250 2 0 -adjunct%5:00:00:supportive:00 02354897 1 0 -adjunction%1:04:00:: 00147454 1 0 -adjunctive%5:00:00:connected:00 00566733 1 0 -adjuration%1:10:00:: 07187150 1 0 -adjuratory%5:00:00:beseeching:00 00714190 1 0 -adjuratory%5:00:01:imperative:00 00712765 2 0 -adjure%2:32:00:: 00755331 2 0 -adjure%2:32:01:: 00759657 1 0 -adjust%2:30:00:: 00296178 1 19 -adjust%2:30:01:: 00150287 3 6 -adjust%2:30:03:: 00298067 4 2 -adjust%2:30:05:: 00464321 2 6 -adjust%2:31:00:: 00699334 5 0 -adjustable%5:00:00:adaptable:00 01027686 1 0 -adjustable%5:00:00:changeable:00 00344686 2 0 -adjustable_spanner%1:06:00:: 02680754 1 0 -adjustable_wrench%1:06:00:: 02680754 1 0 -adjusted%3:00:00:: 00350621 1 4 -adjusted%3:00:02:: 00351523 2 0 -adjusted%5:00:00:altered:00 00352536 4 0 -adjusted%5:00:00:oriented:00 01682677 3 0 -adjuster%1:18:00:: 09769929 1 0 -adjusting_entry%1:21:00:: 13405480 1 0 -adjustive%5:00:00:adaptive:00 00046558 1 0 -adjustment%1:04:00:: 00199707 2 3 -adjustment%1:04:01:: 00999787 3 1 -adjustment%1:11:00:: 07369604 1 5 -adjustment%1:21:00:: 13274092 5 0 -adjustment%1:22:00:: 13427078 4 0 -adjustor%1:18:00:: 09769929 1 0 -adjutant%1:05:00:: 02003037 2 0 -adjutant%1:18:00:: 09770179 1 0 -adjutant_bird%1:05:00:: 02003037 1 0 -adjutant_general%1:18:00:: 09770359 1 0 -adjutant_stork%1:05:00:: 02003037 1 0 -adjuvant%1:06:00:: 02680947 1 0 -adjuvant%5:00:00:helpful:00 01196098 2 0 -adjuvant%5:00:00:supportive:00 02354897 1 0 -adlai_ewing_stevenson%1:18:00:: 11317749 1 0 -adlai_stevenson%1:18:00:: 11317749 1 0 -adlumia%1:20:00:: 11909745 1 0 -adlumia_fungosa%1:20:00:: 11909864 1 0 -adman%1:18:00:: 09773962 1 0 -admass%1:14:00:: 08180484 1 0 -admeasure%2:40:00:: 02295082 1 0 -administer%2:29:00:: 00081072 4 1 -administer%2:40:00:: 02294436 3 2 -administer%2:40:01:: 02309621 2 6 -administer%2:41:00:: 02431971 1 9 -administer%2:41:01:: 02603567 5 0 -administrable%5:00:00:manageable:00 01474806 1 0 -administrate%2:41:00:: 02431971 1 0 -administration%1:04:00:: 01135952 1 8 -administration%1:04:01:: 00694990 3 2 -administration%1:04:02:: 00694866 6 0 -administration%1:04:04:: 01124794 5 0 -administration%1:14:00:: 08164585 2 3 -administration%1:28:00:: 15266265 4 1 -administrative%3:01:00:: 02904075 1 16 -administrative_body%1:14:00:: 08077292 1 0 -administrative_data_processing%1:22:00:: 13427633 1 0 -administrative_district%1:15:00:: 08491826 1 0 -administrative_division%1:15:00:: 08491826 1 0 -administrative_hearing%1:04:00:: 01200000 1 0 -administrative_law%1:14:00:: 08453108 1 0 -administrative_official%1:18:00:: 09880427 1 1 -administrative_unit%1:14:00:: 08077292 1 0 -administratively%4:02:00:: 00265166 1 0 -administrator%1:18:00:: 09770949 1 5 -administrator%1:18:01:: 09770743 2 3 -administrator%1:18:02:: 09770472 3 0 -administrivia%1:04:00:: 01137206 1 0 -admirability%1:07:00:: 04729127 1 0 -admirable%5:00:00:estimable:00 00904290 1 4 -admirable%5:00:00:pleasing:00 01807605 2 2 -admirableness%1:07:00:: 04729127 1 0 -admirably%4:02:00:: 00218886 1 2 -admiral%1:05:00:: 02276258 2 0 -admiral%1:18:00:: 09771204 1 0 -admiral_byrd%1:18:00:: 10876798 1 0 -admiral_dewey%1:18:00:: 10933084 1 0 -admiral_nelson%1:18:00:: 11203059 1 0 -admiral_nimitz%1:18:00:: 11207929 1 0 -admiralty%1:04:00:: 00588703 2 0 -admiralty%1:14:00:: 08349548 1 0 -admiralty_brass%1:27:00:: 14960261 1 0 -admiralty_island%1:15:00:: 09057170 1 0 -admiralty_islands%1:15:00:: 08843085 1 0 -admiralty_law%1:14:00:: 08454191 1 1 -admiralty_metal%1:27:00:: 14960261 1 0 -admiralty_mile%1:23:00:: 13660619 1 0 -admiralty_range%1:17:00:: 09188094 1 0 -admiration%1:04:00:: 01218593 3 0 -admiration%1:12:01:: 07500741 1 8 -admiration%1:12:02:: 07509996 2 1 -admire%2:37:00:: 01827858 1 13 -admire%2:39:00:: 02164694 2 8 -admired%5:00:00:loved:00 01462046 1 0 -admirer%1:18:00:: 09771435 3 0 -admirer%1:18:01:: 10677713 1 1 -admirer%1:18:02:: 09771664 2 0 -admiringly%4:02:00:: 00055859 1 0 -admissibility%1:07:00:: 04793016 1 0 -admissible%3:00:00:: 01761871 1 1 -admission%1:04:00:: 01248191 1 8 -admission%1:07:00:: 05176188 4 0 -admission%1:10:00:: 07215948 2 1 -admission%1:21:00:: 13321495 3 0 -admission_charge%1:21:00:: 13321495 1 0 -admission_day%1:28:00:: 15158189 1 0 -admission_fee%1:21:00:: 13321495 1 0 -admission_price%1:21:00:: 13321495 1 0 -admissive%5:00:00:receptive:00 01985812 1 0 -admit%2:32:00:: 00817311 1 64 -admit%2:40:00:: 02236624 4 1 -admit%2:41:00:: 02449847 3 1 -admit%2:41:01:: 02502536 2 11 -admit%2:42:00:: 02741682 6 0 -admit%2:42:03:: 02671279 8 0 -admit%2:42:04:: 02732798 7 0 -admit%2:42:06:: 02745486 5 0 -admittable%5:00:00:admissible:00 01762065 1 0 -admittance%1:04:00:: 01248191 2 0 -admittance%1:07:00:: 05176188 1 0 -admittedly%4:02:00:: 00184284 1 1 -admittible%5:00:00:admissible:00 01762065 1 0 -admix%2:30:00:: 00396703 1 1 -admixture%1:04:00:: 00380083 3 0 -admixture%1:06:00:: 02681084 2 0 -admixture%1:26:00:: 14487598 1 0 -admonish%2:32:00:: 00824066 3 0 -admonish%2:32:01:: 00871195 2 0 -admonish%2:32:02:: 00870577 1 1 -admonisher%1:18:00:: 09771855 1 0 -admonishing%5:00:00:unfavorable:02 00996864 1 0 -admonishment%1:10:00:: 06714420 1 0 -admonition%1:10:00:: 06714420 2 0 -admonition%1:10:01:: 06672297 1 3 -admonitory%5:00:00:dissuasive:00 01771124 1 0 -admonitory%5:00:00:unfavorable:02 00996864 2 0 -adnate%3:00:00:: 02483386 1 0 -adnexa%1:08:00:: 05221649 1 0 -adnexal%3:01:00:: 02604117 1 0 -adnoun%1:10:00:: 06320440 1 0 -ado%1:04:00:: 00555138 1 1 -adobe%1:06:00:: 02681392 2 0 -adobe%1:27:00:: 14600927 1 0 -adobe_brick%1:06:00:: 02681392 1 0 -adobe_house%1:06:00:: 04255899 1 2 -adobe_lily%1:20:00:: 12453714 1 0 -adobo%1:13:00:: 07579917 1 0 -adolesce%2:30:00:: 00252710 1 0 -adolescence%1:26:00:: 14426910 2 0 -adolescence%1:28:00:: 15147850 1 3 -adolescent%1:18:00:: 09772029 1 1 -adolescent%3:01:00:: 02602261 1 1 -adolescent%5:00:00:immature:01 01490061 4 0 -adolescent%5:00:00:immature:02 01492596 3 0 -adolescent%5:00:00:young:00 01647983 2 0 -adolf_eichmann%1:18:00:: 10953797 1 0 -adolf_hitler%1:18:00:: 11052672 1 0 -adolf_loos%1:18:00:: 11138085 1 0 -adolf_windaus%1:18:00:: 11392754 1 0 -adolph_simon_ochs%1:18:00:: 11211870 1 0 -adolphe_sax%1:18:00:: 11283158 1 0 -adonic%1:10:00:: 06385080 1 0 -adonic%3:01:00:: 02604261 1 0 -adonic%5:00:00:rhythmical:00 02019470 2 0 -adonic_line%1:10:00:: 06385080 1 0 -adonis%1:18:00:: 09547629 3 0 -adonis%1:18:01:: 10288964 1 1 -adonis%1:20:00:: 11724529 2 0 -adonis_annua%1:20:00:: 11724660 1 0 -adopt%2:30:00:: 00413195 5 2 -adopt%2:30:01:: 00524682 4 2 -adopt%2:31:04:: 00601822 7 0 -adopt%2:36:00:: 01701311 6 0 -adopt%2:40:00:: 02346724 2 6 -adopt%2:40:02:: 02346895 1 34 -adopt%2:41:01:: 02381726 3 2 -adoptable%3:00:00:: 00055765 1 0 -adopted%3:00:00:: 01034296 1 2 -adoptee%1:18:00:: 09772330 1 0 -adopter%1:18:00:: 09772448 1 0 -adoption%1:04:00:: 00180413 1 2 -adoption%1:04:01:: 00084371 3 0 -adoption%1:04:02:: 01185292 2 0 -adoptive%3:00:00:: 01406263 1 0 -adoptive%3:00:04:: 01034296 2 0 -adoptive_parent%1:18:00:: 09772448 1 0 -adorability%1:07:00:: 04686257 1 0 -adorable%5:00:00:lovable:00 01459755 1 0 -adorableness%1:07:00:: 04686257 1 0 -adorably%4:02:00:: 00265298 1 0 -adoration%1:04:01:: 01218766 2 0 -adoration%1:04:02:: 01043989 3 0 -adoration%1:12:00:: 07501420 1 0 -adore%2:37:00:: 01777817 1 1 -adored%5:00:00:loved:00 01462124 1 0 -adorer%1:18:00:: 09771435 1 0 -adoring%5:00:00:loving:00 01464433 2 0 -adoring%5:00:00:reverent:00 02012073 1 0 -adoringly%4:02:00:: 00055949 1 0 -adorn%2:36:00:: 01675963 1 3 -adorn%2:41:00:: 02386675 3 0 -adorn%2:42:00:: 02748927 2 0 -adorned%3:00:00:: 00056002 1 0 -adornment%1:04:00:: 00262596 2 0 -adornment%1:06:00:: 02681518 1 0 -adoxography%1:04:00:: 00930481 1 0 -adp%1:22:00:: 13436063 2 0 -adp%1:27:00:: 14707903 1 0 -adp_system%1:06:00:: 03085915 1 0 -adpressed%5:00:00:close:01 00447909 1 0 -adps%1:06:00:: 03085915 1 0 -adrenal%1:08:00:: 05331171 1 0 -adrenal%3:01:00:: 02604343 1 1 -adrenal%3:01:01:: 02604473 2 0 -adrenal_cortex%1:08:00:: 05490983 1 0 -adrenal_cortical_steroid%1:27:00:: 14751417 1 0 -adrenal_gland%1:08:00:: 05331171 1 0 -adrenal_medulla%1:08:00:: 05491308 1 0 -adrenalectomy%1:04:00:: 00666107 1 0 -adrenalin%1:08:00:: 05408388 1 0 -adrenaline%1:08:00:: 05408388 1 0 -adrenarche%1:11:00:: 07325639 1 0 -adrenergic%1:06:00:: 02682038 1 0 -adrenergic%3:01:00:: 02604543 1 0 -adrenergic_agonist_eyedrop%1:04:00:: 00656835 1 0 -adrenergic_drug%1:06:00:: 02682038 1 0 -adrenocortical%3:01:00:: 02606070 1 0 -adrenocorticotrophic%5:00:00:stimulative:00 02309668 1 0 -adrenocorticotrophic_hormone%1:08:00:: 05408113 1 0 -adrenocorticotrophin%1:08:00:: 05408113 1 0 -adrenocorticotropic%5:00:00:stimulative:00 02309668 1 0 -adrenocorticotropic_hormone%1:08:00:: 05408113 1 0 -adrenocorticotropin%1:08:00:: 05408113 1 0 -adrenosterone%1:27:00:: 14747838 1 0 -adrian%1:18:00:: 10808886 2 0 -adrian%1:18:01:: 11021342 1 0 -adrianople%1:15:00:: 08916111 1 0 -adrianopolis%1:15:00:: 08916111 1 0 -adriatic%1:17:00:: 09188383 1 0 -adriatic_sea%1:17:00:: 09188383 1 0 -adrift%4:02:00:: 00267558 2 0 -adrift%4:02:01:: 00267704 1 0 -adrift%5:00:00:afloat:00 00077059 2 0 -adrift%5:00:00:purposeless:00 01910652 1 0 -adroit%3:00:00:: 00061262 1 0 -adroitly%4:02:00:: 00056054 1 1 -adroitness%1:09:00:: 05642175 1 1 -adscititious%5:00:00:extrinsic:00 01349760 1 0 -adscititious%5:00:00:inessential:00 00903117 2 0 -adscript%3:00:00:: 02350035 1 0 -adscript%5:00:00:unfree:00 01064619 2 0 -adscripted%5:00:00:unfree:00 01064619 1 0 -adsorb%2:35:00:: 01540232 1 1 -adsorbable%3:00:00:: 00008877 1 0 -adsorbate%1:27:00:: 14598704 1 0 -adsorbate%3:00:00:: 00008877 1 0 -adsorbent%1:27:00:: 14598525 1 0 -adsorbent%3:00:00:: 00008206 1 0 -adsorbent_material%1:27:00:: 14598525 1 0 -adsorption%1:22:00:: 13427789 1 0 -adsorptive%3:00:00:: 00008206 1 0 -adsuki_bean%1:20:00:: 12577686 1 0 -adulate%2:32:00:: 00880518 1 0 -adulation%1:10:00:: 06695753 1 0 -adulator%1:18:00:: 10095869 1 0 -adulatory%5:00:00:flattering:00 00907830 1 0 -adult%1:05:00:: 01321456 2 5 -adult%1:18:00:: 09605289 1 5 -adult%5:00:00:mature:01 01488616 1 1 -adult%5:00:00:sexy:00 02134397 2 0 -adult-onset_diabetes%1:26:00:: 14118936 1 0 -adult-onset_diabetes_mellitus%1:26:00:: 14118936 1 0 -adult_body%1:08:00:: 05219561 1 0 -adult_education%1:04:00:: 00885297 1 1 -adult_female%1:18:00:: 10787470 1 0 -adult_female_body%1:08:00:: 05220126 1 0 -adult_intelligence%1:24:00:: 13822249 1 0 -adult_male%1:18:00:: 10287213 1 0 -adult_male_body%1:08:00:: 05220306 1 0 -adult_respiratory_distress_syndrome%1:26:00:: 14055052 1 0 -adult_tooth%1:08:00:: 05306708 1 0 -adulterant%1:27:00:: 14616939 1 0 -adulterant%3:00:00:: 02117232 1 0 -adulterate%2:30:00:: 00487748 1 0 -adulterate%5:00:00:impure:02 01908539 1 0 -adulterated%5:00:00:impure:02 01908539 1 0 -adulterating%3:00:00:: 02117232 1 0 -adulteration%1:04:00:: 00163630 2 0 -adulteration%1:26:00:: 14487443 1 0 -adulterator%1:18:00:: 09772606 2 0 -adulterator%1:27:00:: 14616939 1 0 -adulterer%1:18:00:: 09772746 1 2 -adulteress%1:18:00:: 09772930 1 0 -adulterine%5:00:00:illegitimate:00 01407738 1 0 -adulterous%5:00:00:illicit:00 01550779 1 0 -adulterous%5:00:00:unfaithful:01 00961195 2 0 -adulterously%4:02:00:: 00134964 1 0 -adultery%1:04:00:: 00848466 1 0 -adulthood%1:26:00:: 14425103 2 0 -adulthood%1:28:00:: 15152817 1 1 -adumbrate%2:32:00:: 01006421 1 0 -adumbrate%2:32:01:: 00927711 2 0 -adumbration%1:06:00:: 02682207 2 0 -adumbration%1:09:00:: 05776015 1 0 -adumbrative%5:00:00:prophetic:00 01882162 1 0 -adust%5:00:00:brunet:00 00244820 2 0 -adust%5:00:00:dry:01 02551946 1 0 -advance%1:04:00:: 00282050 4 1 -advance%1:04:01:: 00364260 6 0 -advance%1:10:00:: 07164349 3 1 -advance%1:11:00:: 07445265 1 7 -advance%1:11:01:: 07357388 2 6 -advance%1:21:00:: 13375891 5 0 -advance%2:30:00:: 00248659 7 2 -advance%2:30:01:: 00158222 12 0 -advance%2:30:08:: 00497061 3 5 -advance%2:30:09:: 00558371 8 1 -advance%2:32:00:: 00875806 2 6 -advance%2:33:00:: 01111028 6 3 -advance%2:38:00:: 01992503 1 7 -advance%2:38:01:: 01993926 5 4 -advance%2:38:04:: 01994288 11 0 -advance%2:40:00:: 02283949 10 0 -advance%2:41:00:: 02397637 9 0 -advance%2:41:01:: 02554922 4 4 -advance%5:00:00:early:00 00813915 1 0 -advance%5:00:00:front:00 00198383 2 0 -advance_death_benefit%1:21:00:: 13297397 1 0 -advanced%5:00:00:civilized:00 00412171 7 1 -advanced%5:00:00:front:00 00198383 8 1 -advanced%5:00:00:high-tech:00 01208738 5 1 -advanced%5:00:00:late:00 00816839 6 1 -advanced%5:00:00:late:02 00819526 2 3 -advanced%5:00:00:precocious:00 01840121 1 5 -advanced%5:00:00:progressive:01 01876261 3 2 -advanced%5:00:02:high:02 01211296 4 2 -advanced_research_and_development_activity%1:14:00:: 08340753 1 0 -advancement%1:04:01:: 00282050 2 0 -advancement%1:04:02:: 00249501 3 0 -advancement%1:10:00:: 07251984 1 0 -advancer%1:18:00:: 09773076 1 0 -advancing%5:00:00:progressive:01 01876555 1 0 -advantage%1:07:00:: 05155821 1 23 -advantage%1:07:01:: 05142863 3 0 -advantage%1:23:00:: 13610426 2 0 -advantage%2:41:00:: 02513268 1 0 -advantageous%3:00:00:: 00064479 1 1 -advantageous%5:00:00:expedient:00 00931833 2 0 -advantageously%4:02:00:: 00013793 1 0 -advantageousness%1:07:00:: 05160796 1 0 -advect%2:38:00:: 02102655 1 0 -advection%1:22:00:: 13427989 1 0 -advective%3:01:00:: 02606182 1 0 -advent%1:04:00:: 00048828 1 1 -advent%1:11:00:: 07322550 3 0 -advent%1:28:01:: 15241507 2 0 -advent_sunday%1:28:00:: 15241655 1 0 -adventism%1:09:00:: 06226934 1 0 -adventist%1:18:00:: 09678747 1 0 -adventitia%1:08:00:: 05606633 1 0 -adventitial%3:01:00:: 02606283 1 0 -adventitious%5:00:00:extrinsic:00 01349435 1 0 -adventitious_root%1:20:00:: 13126192 1 0 -adventive%5:00:00:foreign:01 01034858 1 0 -adventure%1:04:00:: 00796315 1 12 -adventure%2:41:00:: 02545272 2 0 -adventure%2:41:01:: 02544348 1 1 -adventure_story%1:10:00:: 06370268 1 0 -adventurer%1:18:00:: 09606009 1 1 -adventurer%1:18:01:: 10072708 2 0 -adventuresome%3:00:00:: 00065791 1 0 -adventuress%1:18:00:: 09773169 1 0 -adventurism%1:07:00:: 04662182 1 0 -adventuristic%3:01:00:: 02606393 1 0 -adventurous%3:00:00:: 00065791 1 1 -adventurousness%1:07:00:: 04859177 1 0 -adverb%1:10:00:: 06323612 2 0 -adverb%1:10:01:: 06319157 1 3 -adverbial%1:10:00:: 06324355 1 0 -adverbial%3:01:00:: 02936235 1 1 -adverbially%4:02:00:: 00267435 1 0 -adversary%1:18:00:: 09773245 1 1 -adversative%5:00:00:disjunctive:00 00564504 1 0 -adversative_conjunction%1:24:00:: 13800267 1 0 -adverse%5:00:00:unfavorable:01 00995647 2 0 -adverse%5:00:00:unfavorable:02 00997036 1 4 -adverse_opinion%1:10:00:: 06782383 1 0 -adverse_witness%1:18:00:: 09773682 1 0 -adversely%4:02:00:: 00261102 1 0 -adversity%1:11:00:: 07336612 2 0 -adversity%1:26:00:: 14475661 1 1 -advert%1:10:00:: 07248801 1 0 -advert%2:32:01:: 01026728 2 0 -advert%2:32:12:: 01024190 3 0 -advert%2:39:00:: 02170427 1 0 -advertence%1:09:00:: 05704096 1 0 -advertency%1:09:00:: 05704096 1 0 -advertent%5:00:00:attentive:00 00164308 1 0 -advertently%4:02:00:: 00153681 1 0 -advertise%2:32:00:: 00976653 2 0 -advertise%2:32:01:: 00975902 1 7 -advertised%5:00:00:publicized:00 00469767 1 1 -advertisement%1:10:00:: 07248801 1 2 -advertiser%1:18:00:: 09773962 1 0 -advertising%1:04:00:: 01101329 2 6 -advertising%1:10:00:: 07248801 1 7 -advertising_agency%1:14:00:: 08353912 1 2 -advertising_campaign%1:04:00:: 00798959 1 1 -advertising_department%1:14:00:: 08118260 1 0 -advertising_division%1:14:00:: 08118260 1 0 -advertize%2:32:00:: 00976653 1 0 -advertize%2:32:01:: 00975902 2 0 -advertizement%1:10:00:: 07248801 1 0 -advertizer%1:18:00:: 09773962 1 0 -advertizing%1:10:00:: 07248801 1 0 -advertorial%1:10:00:: 07249180 1 0 -advice%1:10:00:: 06671484 1 18 -advice_and_consent%1:10:00:: 06535980 1 0 -advil%1:06:00:: 03556281 1 0 -advisability%1:07:00:: 05160399 1 1 -advisable%3:00:00:: 00067038 1 1 -advise%2:32:00:: 00872886 1 11 -advise%2:32:01:: 00873682 2 10 -advise%2:32:02:: 00875394 3 4 -advised%3:00:02:: 00067966 1 0 -advised%5:00:00:informed:00 01306967 2 0 -advisedly%4:02:00:: 00062330 1 1 -advisee%1:18:00:: 09774167 1 0 -advisement%1:09:00:: 05785067 1 0 -adviser%1:18:00:: 09774266 1 0 -advisor%1:18:00:: 09774266 1 1 -advisory%1:10:00:: 06747008 1 0 -advisory%5:00:00:informative:00 01304802 1 0 -advisory_board%1:14:00:: 08381636 1 0 -advisory_service%1:04:00:: 00577931 1 0 -advocacy%1:04:00:: 01214171 1 1 -advocate%1:18:00:: 09774783 1 2 -advocate%1:18:01:: 09775663 2 0 -advocate%2:32:00:: 00875141 1 9 -advocate%2:32:01:: 00827730 2 1 -advocator%1:18:00:: 09774783 1 0 -advowson%1:07:00:: 05175613 1 0 -adynamia%1:07:00:: 05040833 1 0 -adynamic%3:00:04:: 00810481 1 0 -adynamic%5:00:00:weak:00 02324944 2 0 -adz%1:06:00:: 02682311 1 0 -adze%1:06:00:: 02682311 1 0 -adzhar%1:15:00:: 09019592 1 0 -adzharia%1:15:00:: 09019592 1 0 -adzuki_bean%1:20:00:: 12577686 1 0 -aec%1:14:00:: 08122358 1 0 -aecial%3:01:00:: 02606502 1 0 -aeciospore%1:20:00:: 13063666 1 0 -aecium%1:20:00:: 13063514 1 0 -aedes%1:05:00:: 02200705 1 0 -aedes_aegypti%1:05:00:: 02200850 1 0 -aedes_albopictus%1:05:00:: 02201000 1 0 -aegadean_islands%1:15:00:: 08784905 1 0 -aegadean_isles%1:04:00:: 01268633 2 0 -aegadean_isles%1:15:00:: 08784905 1 0 -aegates%1:15:00:: 08784905 1 0 -aegates_isles%1:04:00:: 01268633 1 0 -aegean%1:17:00:: 09188609 1 7 -aegean%3:01:00:: 03017025 2 0 -aegean%3:01:01:: 03017159 1 5 -aegean_civilisation%1:14:00:: 08290156 1 0 -aegean_civilization%1:14:00:: 08290156 1 0 -aegean_culture%1:14:00:: 08290156 1 0 -aegean_island%1:15:00:: 08782627 1 1 -aegean_sea%1:17:00:: 09188609 1 0 -aegiceras%1:20:00:: 12916025 1 0 -aegiceras_majus%1:20:00:: 12916179 1 0 -aegilops%1:20:00:: 12104614 1 0 -aegilops_triuncalis%1:20:00:: 12104734 1 0 -aegina%1:05:00:: 01910998 2 0 -aegina%1:15:00:: 08782847 1 0 -aegir%1:11:00:: 07403920 1 0 -aegis%1:04:00:: 01214863 1 1 -aegis%1:06:00:: 02895154 2 0 -aegisthus%1:18:00:: 09595717 1 0 -aegospotami%1:04:00:: 01268886 2 0 -aegospotami%1:17:00:: 09188894 1 0 -aegospotamos%1:04:00:: 01268886 2 0 -aegospotamos%1:17:00:: 09188894 1 0 -aegypiidae%1:05:00:: 01616551 1 0 -aegypius%1:05:00:: 01617949 1 0 -aegypius_monachus%1:05:00:: 01618082 1 0 -aegyptopithecus%1:05:00:: 02479332 1 0 -aelius_donatus%1:18:00:: 10939187 1 0 -aeneas%1:18:00:: 09594604 1 0 -aeneas_silvius%1:18:00:: 11236852 1 0 -aeneid%1:10:00:: 06380055 1 0 -aengus%1:18:00:: 09507909 1 0 -aeolia%1:15:00:: 08784104 1 0 -aeolian%1:14:00:: 08160697 2 0 -aeolian%1:18:00:: 09710753 1 0 -aeolian%3:01:00:: 02606601 1 0 -aeolian%3:01:01:: 02600999 2 0 -aeolian_harp%1:06:00:: 02682407 1 0 -aeolian_lyre%1:06:00:: 02682407 1 0 -aeolic%1:10:00:: 06977800 1 0 -aeolic_dialect%1:10:00:: 06977800 1 0 -aeolis%1:15:00:: 08784104 1 0 -aeolotropic%5:00:00:anisotropic:00 01361264 1 0 -aeolus%1:18:00:: 09553490 1 0 -aeon%1:18:00:: 09536584 1 1 -aeon%1:28:00:: 15243590 3 0 -aeon%1:28:01:: 15243730 2 0 -aeonian%3:01:00:: 02720312 1 0 -aeonian%5:00:00:permanent:00 01755024 2 0 -aeonium%1:20:00:: 12786684 1 0 -aeonium_haworthii%1:20:00:: 12786836 1 0 -aepyceros%1:05:00:: 02422561 1 0 -aepyceros_melampus%1:05:00:: 02422699 1 0 -aepyornidae%1:05:00:: 01522147 1 0 -aepyorniformes%1:05:00:: 01521980 1 0 -aepyornis%1:05:00:: 01522450 1 0 -aerate%2:30:00:: 00190999 2 0 -aerate%2:30:01:: 00185465 3 0 -aerate%2:39:00:: 02112891 1 0 -aerated%5:00:00:effervescent:00 02276660 2 0 -aerated%5:00:00:treated:00 01954128 1 9 -aeration%1:04:00:: 00200244 2 0 -aeration%1:22:00:: 13428159 1 5 -aerator%1:06:00:: 02682569 1 11 -aerial%1:04:00:: 00561226 1 1 -aerial%1:06:00:: 02715229 2 0 -aerial%3:00:00:: 01380267 1 0 -aerial%5:00:00:insubstantial:00 00626136 2 0 -aerial_ladder%1:06:00:: 02682699 1 0 -aerial_ladder_truck%1:06:00:: 03632852 1 0 -aerial_torpedo%1:06:00:: 02682811 1 0 -aerial_tramway%1:06:00:: 04469813 1 0 -aerialist%1:18:00:: 09764598 1 0 -aerially%4:02:00:: 00202718 1 0 -aerides%1:20:00:: 12044467 1 0 -aerie%1:15:00:: 08492354 2 0 -aerie%1:17:00:: 09189157 1 0 -aeriferous%3:01:00:: 02606762 1 0 -aeriform%5:00:00:gaseous:00 02262879 1 0 -aeriform%5:00:00:insubstantial:00 00626136 2 0 -aerify%2:30:00:: 00442267 1 0 -aerobacter%1:05:00:: 01353773 1 0 -aerobacter_aerogenes%1:05:00:: 01353932 1 1 -aerobatics%1:04:00:: 00302861 1 0 -aerobe%1:05:00:: 01326897 1 0 -aerobic%3:00:00:: 00068566 1 1 -aerobic%3:00:02:: 00069217 2 0 -aerobic_exercise%1:04:00:: 00625858 1 0 -aerobics%1:04:00:: 00625858 1 0 -aerobiosis%1:19:00:: 11473685 1 0 -aerobiotic%5:00:00:aerobic:00 00068738 1 0 -aerodontalgia%1:26:00:: 14324099 1 0 -aerodrome%1:06:00:: 02692232 1 0 -aerodynamic%3:01:00:: 02980122 1 1 -aerodynamic%5:00:00:smooth:00 02238128 2 0 -aerodynamic_force%1:19:00:: 11422114 1 0 -aerodynamic_lift%1:19:00:: 11422277 1 0 -aerodynamics%1:09:00:: 06114351 1 0 -aeroembolism%1:26:00:: 14101317 1 0 -aeroembolism%1:26:01:: 14068344 2 0 -aerofoil%1:06:00:: 02688443 1 0 -aerogenerator%1:06:00:: 04587404 1 0 -aerogram%1:10:00:: 06626060 1 0 -aerogramme%1:10:00:: 06626060 1 0 -aerolite%1:17:00:: 09189289 1 0 -aerolitic%3:01:00:: 02606960 1 0 -aerological%3:01:00:: 02606856 1 0 -aerology%1:09:00:: 06119226 1 0 -aeromechanic%3:01:00:: 02607078 1 0 -aeromechanics%1:09:00:: 06114351 1 0 -aeromedical%3:01:00:: 02607187 1 0 -aeromedicine%1:09:00:: 06046037 1 0 -aeronaut%1:18:00:: 09826204 1 0 -aeronautic%3:01:00:: 02607298 1 0 -aeronautical%3:01:00:: 02607298 1 0 -aeronautical_engineer%1:18:00:: 09775907 1 0 -aeronautical_engineering%1:04:00:: 00949948 2 0 -aeronautical_engineering%1:09:00:: 06126177 1 0 -aeronautics%1:09:00:: 06096913 1 0 -aerophagia%1:04:00:: 00840057 1 0 -aerophilatelic%3:01:00:: 03007038 1 0 -aerophilately%1:04:00:: 01016628 1 0 -aerophile%1:18:00:: 09776186 1 0 -aerophilic%3:00:00:: 00068566 1 0 -aerophilous%3:00:00:: 00068566 1 0 -aerophyte%1:20:00:: 13122985 1 0 -aeroplane%1:06:00:: 02691156 1 0 -aerosol%1:06:00:: 02682922 2 0 -aerosol%1:19:00:: 11422597 1 11 -aerosol_bomb%1:06:00:: 02682922 2 0 -aerosol_bomb%1:06:01:: 04420461 1 0 -aerosol_can%1:06:00:: 02682922 1 0 -aerosol_container%1:06:00:: 02682922 1 0 -aerosolise%2:35:00:: 01377758 2 0 -aerosolise%2:35:01:: 01377940 1 0 -aerosolised%5:00:00:gaseous:00 02262984 1 0 -aerosolize%2:35:00:: 01377758 1 2 -aerosolize%2:35:01:: 01377940 2 0 -aerosolized%5:00:00:gaseous:00 02262984 1 1 -aerospace%1:15:00:: 08502171 1 0 -aerospace_engineer%1:18:00:: 09776079 1 0 -aerospace_medicine%1:09:00:: 06046037 1 0 -aertex%1:06:00:: 02683183 1 0 -aery%1:15:00:: 08492354 2 0 -aery%1:17:00:: 09189157 1 0 -aery%5:00:00:insubstantial:00 00626136 1 0 -aeschylean%3:01:00:: 03028216 1 0 -aeschylus%1:18:00:: 10809086 1 1 -aeschynanthus%1:20:00:: 12830568 1 0 -aeschynanthus_radicans%1:20:00:: 12830789 1 0 -aesculapian%3:01:00:: 02607455 1 0 -aesculapius%1:18:00:: 09559201 1 0 -aesculus%1:20:00:: 12768177 1 0 -aesculus_hippocastanum%1:20:00:: 12768369 1 0 -aesir%1:18:00:: 09579070 1 0 -aesop%1:18:00:: 10809223 1 0 -aesop's_fables%1:10:00:: 06372428 1 0 -aesthesia%1:09:00:: 05678148 1 0 -aesthesis%1:09:00:: 05712076 1 0 -aesthete%1:18:00:: 10064537 1 0 -aesthetic%1:09:00:: 05968971 1 0 -aesthetic%3:00:00:: 00069531 2 2 -aesthetic%3:01:00:: 02991287 1 10 -aesthetic%5:00:00:tasteful:02 02393086 3 0 -aesthetical%3:00:00:: 00069531 1 0 -aesthetically%4:02:00:: 00261231 1 0 -aesthetician%1:18:00:: 10064669 2 0 -aesthetician%1:18:01:: 10064831 1 0 -aesthetics%1:09:00:: 06161223 1 0 -aestival%5:00:00:summery:00 01255022 1 0 -aestivate%2:29:00:: 00016183 1 0 -aestivation%1:14:00:: 07947069 2 0 -aestivation%1:26:00:: 14014162 1 0 -aether%1:10:00:: 06254915 2 0 -aether%1:18:00:: 09553599 1 0 -aethionema%1:20:00:: 11869890 1 0 -aethusa%1:20:00:: 12931109 1 0 -aethusa_cynapium%1:20:00:: 12931231 1 0 -aetiologic%3:01:00:: 02940953 2 0 -aetiologic%3:01:01:: 02941235 1 0 -aetiological%3:01:00:: 02940953 2 0 -aetiological%3:01:01:: 02941235 1 0 -aetiologist%1:18:00:: 10066059 1 0 -aetiology%1:09:00:: 06161048 2 0 -aetiology%1:11:00:: 07327608 1 0 -aetobatus%1:05:00:: 01499261 1 0 -aetobatus_narinari%1:05:00:: 01499396 1 0 -afar%4:02:00:: 00100883 1 4 -afars_and_issas%1:15:00:: 08762495 1 0 -afeard%5:00:00:afraid:00 00078463 1 0 -afeared%5:00:00:afraid:00 00078463 1 0 -afebrile%3:01:00:: 02726921 1 0 -affability%1:07:00:: 04654652 1 0 -affable%5:00:00:friendly:01 01075178 1 0 -affableness%1:07:00:: 04654652 1 0 -affably%4:02:00:: 00220052 1 1 -affair%1:09:00:: 05671325 1 23 -affair%1:11:00:: 07447261 3 4 -affair%1:26:00:: 13931889 2 5 -affaire%1:26:00:: 13931889 1 0 -affaire_d'honneur%1:04:00:: 01172784 1 0 -affairs%1:04:00:: 01107359 2 1 -affairs%1:09:00:: 05671676 1 8 -affect%1:12:00:: 07479926 1 1 -affect%2:29:00:: 00019448 2 11 -affect%2:30:00:: 00137313 1 43 -affect%2:32:00:: 00838043 4 4 -affect%2:37:00:: 01767949 5 0 -affect%2:42:00:: 02677097 3 4 -affectation%1:04:00:: 00755673 1 0 -affected%3:00:00:: 00070939 1 5 -affected%3:00:01:: 00073048 2 1 -affected%3:00:02:: 01559903 3 0 -affected_role%1:10:00:: 06332136 1 0 -affectedly%4:02:00:: 00066527 1 0 -affectedness%1:04:00:: 00755673 2 0 -affectedness%1:07:00:: 04787763 1 0 -affecting%5:00:00:moving:01 01560821 1 0 -affectingly%4:02:00:: 00066605 1 1 -affection%1:12:00:: 07544647 1 9 -affectional%5:00:00:emotional:00 00854255 1 0 -affectionate%5:00:00:loving:00 01464700 1 2 -affectionately%4:02:00:: 00077747 1 2 -affectionateness%1:07:00:: 04627000 2 0 -affectionateness%1:12:00:: 07544647 1 0 -affective%5:00:00:emotional:00 00854255 1 0 -affective_disorder%1:26:00:: 14388910 1 0 -affenpinscher%1:05:00:: 02110627 1 0 -afferent%1:08:00:: 05475134 1 0 -afferent%3:00:00:: 00333351 1 1 -afferent_fiber%1:08:00:: 05475397 1 0 -afferent_nerve%1:08:00:: 05475134 1 0 -afferent_neuron%1:08:00:: 05466892 1 0 -affiance%2:32:00:: 00886602 1 0 -affiant%1:18:00:: 09776261 1 0 -affidavit%1:10:00:: 06736529 1 1 -affiliate%1:14:00:: 08009478 2 0 -affiliate%1:18:00:: 09776346 1 0 -affiliate%2:41:00:: 02435311 2 0 -affiliate%2:41:12:: 02589245 1 0 -affiliated%5:00:00:related:02 01973311 1 1 -affiliation%1:04:00:: 01082061 2 2 -affiliation%1:26:00:: 13930385 1 2 -affinal%5:00:00:related:01 01971519 1 0 -affine%1:18:00:: 09776522 1 0 -affine%3:01:00:: 02607608 1 0 -affine%5:00:00:related:01 01971519 2 0 -affine_geometry%1:09:00:: 06005399 1 0 -affine_transformation%1:24:00:: 13785965 1 0 -affined%5:00:00:connected:00 00566835 1 0 -affinity%1:07:01:: 04747798 6 0 -affinity%1:07:02:: 04688648 7 0 -affinity%1:19:01:: 11422822 5 0 -affinity%1:19:02:: 11426778 1 1 -affinity%1:24:01:: 13813283 2 0 -affinity%1:24:02:: 13812296 3 0 -affinity%1:24:03:: 13811410 4 0 -affirm%2:31:00:: 00665886 1 9 -affirm%2:32:00:: 01011031 2 3 -affirm%2:32:01:: 01011725 3 2 -affirmable%5:00:00:possible:00 01821920 1 0 -affirmation%1:04:00:: 01186192 4 0 -affirmation%1:10:00:: 06732350 1 1 -affirmation%1:10:01:: 06684798 3 0 -affirmation%1:10:02:: 07203126 2 0 -affirmative%1:10:00:: 07203696 1 0 -affirmative%3:00:00:: 00075135 1 0 -affirmative%5:00:00:favorable:02 00996089 3 0 -affirmative%5:00:00:positive:01 01817908 2 0 -affirmative_action%1:10:00:: 06659685 1 0 -affirmative_pleading%1:10:00:: 06559832 1 0 -affirmatively%4:02:00:: 00512790 1 0 -affirmativeness%1:07:00:: 05167117 1 0 -affirmatory%3:00:00:: 00075135 1 0 -affirmed%1:05:00:: 02384639 1 0 -affirmer%1:18:00:: 09814660 1 0 -affix%1:10:00:: 06308049 1 0 -affix%2:35:00:: 01356370 1 7 -affix%2:35:01:: 01328705 2 2 -affix%2:35:02:: 01298283 3 0 -affixal%3:01:00:: 02607752 1 0 -affixation%1:04:00:: 00927694 2 0 -affixation%1:04:01:: 00379422 3 0 -affixation%1:09:00:: 06177923 1 0 -affixed%3:00:00:: 00158701 1 6 -affixial%3:01:00:: 02607752 1 0 -afflatus%1:09:00:: 05835449 1 0 -afflict%2:30:00:: 00259927 2 0 -afflict%2:37:00:: 01797730 1 0 -afflicted%5:00:00:ill:01 02542148 1 1 -afflicted%5:00:00:unfit:01 01018264 2 0 -affliction%1:11:00:: 07305234 3 0 -affliction%1:26:00:: 14213199 2 0 -affliction%1:26:02:: 14477342 1 0 -afflictive%5:00:00:unpleasant:00 01804175 1 0 -affluence%1:26:00:: 14491625 1 3 -affluent%1:17:00:: 09278997 2 0 -affluent%1:18:00:: 09776642 1 0 -affluent%5:00:00:rich:00 02022167 1 0 -afford%2:34:00:: 01192628 1 24 -afford%2:40:00:: 02339171 2 13 -afford%2:40:01:: 02358034 4 0 -afford%2:42:00:: 02744451 3 0 -affordable%5:00:00:cheap:00 00935103 1 0 -afforest%2:35:00:: 01567888 1 0 -afforestation%1:04:00:: 00400278 1 0 -affranchise%2:41:00:: 02477135 1 0 -affray%1:04:01:: 01176335 2 0 -affray%1:10:00:: 07184545 1 0 -affricate%1:10:00:: 07118990 1 0 -affricate_consonant%1:10:00:: 07118990 1 0 -affrication%1:10:00:: 07116641 1 0 -affricative%1:10:00:: 07118990 1 0 -affright%1:12:00:: 07520612 1 0 -affright%2:37:00:: 01779165 1 0 -affront%1:04:00:: 01225027 1 1 -affront%2:32:00:: 00848420 1 1 -affusion%1:04:00:: 01038147 1 0 -afghan%1:05:00:: 02088094 5 0 -afghan%1:06:00:: 02683323 1 1 -afghan%1:06:01:: 04187970 4 0 -afghan%1:10:00:: 06975132 3 0 -afghan%1:18:00:: 09689435 2 0 -afghan%3:01:00:: 03003928 1 0 -afghan_hound%1:05:00:: 02088094 1 0 -afghan_monetary_unit%1:23:00:: 13663077 1 0 -afghani%1:10:00:: 06975132 2 0 -afghani%1:23:00:: 13663229 1 0 -afghani%3:01:00:: 03003928 1 0 -afghanistan%1:15:00:: 08703454 1 0 -afghanistani%1:18:00:: 09689435 1 0 -afghanistani%3:01:00:: 03003928 1 0 -afibrinogenemia%1:26:00:: 14170623 1 0 -aficionado%1:18:00:: 09776807 2 0 -aficionado%1:18:01:: 09776933 1 0 -afield%4:02:00:: 00262847 3 0 -afield%4:02:01:: 00262971 2 0 -afield%4:02:03:: 00263180 1 0 -afire%5:00:00:lighted:00 00475308 1 1 -afisr%1:14:00:: 08197386 1 0 -afl%1:14:00:: 08233913 1 0 -afl-cio%1:14:00:: 08234103 1 0 -aflame%5:00:00:lighted:00 00475308 2 0 -aflame%5:00:00:passionate:00 01726021 1 2 -aflare%5:00:00:lighted:00 00475308 2 1 -aflare%5:00:00:moving:02 01563147 1 1 -aflatoxin%1:27:00:: 14714645 1 0 -aflaxen%1:06:00:: 03808144 1 0 -aflicker%5:00:00:unsteady:00 02304119 1 0 -afloat%3:00:00:: 00076921 2 0 -afloat%5:00:00:full:00 01083754 3 0 -afloat%5:00:00:purposeless:00 01910652 1 1 -aflutter%5:00:00:excited:00 00919813 1 0 -afoot%4:02:01:: 00239064 1 1 -afoot%5:00:00:current:00 00666784 2 0 -afoot%5:00:00:moving:02 01562167 1 0 -aforementioned%5:00:00:same:02 02068730 1 0 -aforesaid%5:00:00:same:02 02068730 1 2 -aforethought%5:00:00:premeditated:00 01842963 1 0 -afoul%5:00:00:tangled:00 00255308 1 0 -afp%1:27:00:: 15033846 1 0 -afraid%3:00:00:: 00077645 1 29 -afraid%5:00:00:concerned:00 00543993 2 3 -afraid%5:00:00:disinclined:00 01293396 4 0 -afraid%5:00:02:concerned:00 00544231 3 1 -aframomum%1:20:00:: 12357802 1 0 -aframomum_melegueta%1:20:00:: 12357968 1 0 -afrasian%1:10:00:: 06986558 1 0 -afrasian_language%1:10:00:: 06986558 1 0 -afresh%4:02:00:: 00112843 1 0 -africa%1:17:00:: 09189411 1 10 -african%1:18:00:: 09634494 1 0 -african%3:01:00:: 02941790 1 5 -african-american%1:18:00:: 09637013 1 0 -african-american%5:00:00:black:02 00242293 1 0 -african-american_music%1:10:00:: 07025604 1 0 -african_american%1:18:00:: 09637013 1 0 -african_american_english%1:10:00:: 06947658 1 0 -african_american_vernacular_english%1:10:00:: 06947658 1 0 -african_bowstring_hemp%1:20:00:: 12481150 1 0 -african_chameleon%1:05:00:: 01694178 1 0 -african_clawed_frog%1:05:00:: 01654637 1 0 -african_coral_snake%1:05:00:: 01746952 1 0 -african_country%1:15:00:: 08698379 1 0 -african_crocodile%1:05:00:: 01697457 1 0 -african_daisy%1:20:01:: 11925303 3 0 -african_daisy%1:20:02:: 11992806 1 0 -african_daisy%1:20:03:: 11971783 2 0 -african_elephant%1:05:00:: 02504458 1 0 -african_gray%1:05:00:: 01817953 1 0 -african_green_monkey%1:05:00:: 02485688 1 0 -african_grey%1:05:00:: 01817953 1 0 -african_hemp%1:20:01:: 12205460 2 0 -african_hemp%1:20:02:: 12481150 1 0 -african_holly%1:20:00:: 12895298 1 0 -african_hunting_dog%1:05:00:: 02116738 1 0 -african_lily%1:20:00:: 12429352 1 0 -african_love_grass%1:20:00:: 12120578 1 0 -african_mahogany%1:20:00:: 12699031 1 0 -african_marigold%1:20:00:: 12020736 1 0 -african_millet%1:20:00:: 12118661 1 0 -african_monitor%1:05:00:: 01694955 1 0 -african_nation%1:15:00:: 08698379 1 0 -african_oil_palm%1:20:00:: 12590499 1 0 -african_sandalwood%1:20:00:: 12509109 1 0 -african_scented_mahogany%1:20:00:: 12698027 1 0 -african_tea%1:06:00:: 03608870 1 0 -african_tulip%1:20:00:: 12429352 1 0 -african_violet%1:20:00:: 12833149 1 0 -african_walnut%1:20:00:: 12699618 1 0 -african_wild_ass%1:05:00:: 02390640 1 0 -african_yellowwood%1:20:00:: 11652578 1 0 -africander%1:05:00:: 02406046 1 0 -africanized_bee%1:05:00:: 02208498 1 0 -africanized_honey_bee%1:05:00:: 02208498 1 0 -afrikaans%1:10:00:: 06952861 1 0 -afrikaans%3:01:00:: 03042394 1 0 -afrikander%1:18:00:: 09635635 1 0 -afrikaner%1:18:00:: 09635635 1 0 -afrikaner%3:01:00:: 03042394 1 0 -afrl%1:06:00:: 02688895 1 0 -afro%1:08:00:: 05258889 1 0 -afro-american%1:18:00:: 09637013 1 0 -afro-american%5:00:00:black:02 00242293 1 0 -afro-asian%3:01:00:: 02942200 1 0 -afro-asiatic%1:10:00:: 06986558 1 0 -afro-wig%1:06:00:: 02683454 1 0 -afro_hairdo%1:08:00:: 05258889 1 0 -afroasiatic%1:10:00:: 06986558 1 0 -afroasiatic_language%1:10:00:: 06986558 1 0 -afrocarpus%1:20:00:: 11653323 1 0 -afrocarpus_falcata%1:20:00:: 11653570 1 0 -afropavo%1:05:00:: 01803641 1 0 -afropavo_congensis%1:05:00:: 01803641 1 0 -afspc%1:14:00:: 08196892 1 0 -aft%3:00:00:: 01033371 1 0 -aft%4:02:00:: 00275409 1 1 -after%4:02:00:: 00508070 2 0 -after%4:02:01:: 00061203 1 5 -after%5:00:00:aft:00 01033542 1 0 -after-hours%5:00:00:late:00 00817004 1 1 -after-school%5:00:00:outside:00 01693189 1 1 -after-shave%1:06:00:: 02683791 1 0 -after-shave_lotion%1:06:00:: 02683791 1 0 -after_a_fashion%4:02:00:: 00151040 1 1 -after_all%4:02:00:: 00151149 1 17 -after_all%4:02:01:: 00151305 2 11 -after_hours%4:02:00:: 00151426 1 0 -after_part%1:06:00:: 04316646 1 0 -afterbirth%1:08:00:: 05520965 1 0 -afterburner%1:06:00:: 02683558 1 0 -aftercare%1:04:00:: 00656192 1 0 -afterdamp%1:27:00:: 14726642 1 0 -afterdeck%1:06:00:: 02683692 1 0 -aftereffect%1:19:00:: 11411501 1 1 -aftereffect%1:26:00:: 14311574 2 0 -afterglow%1:12:00:: 07492368 2 0 -afterglow%1:19:00:: 11517898 1 0 -afterimage%1:09:00:: 05936130 1 0 -afterlife%1:28:00:: 15143864 1 0 -aftermath%1:11:00:: 07294019 2 0 -aftermath%1:19:00:: 11411610 1 0 -aftermost%5:00:00:aft:00 01033616 1 0 -afternoon%1:10:00:: 06632807 2 1 -afternoon%1:28:00:: 15166191 1 51 -afternoon_tea%1:13:00:: 07575510 1 0 -afterpains%1:26:00:: 14330992 1 0 -afterpiece%1:10:00:: 07008544 1 0 -afters%1:13:00:: 07609840 1 0 -aftersensation%1:09:00:: 05936130 1 0 -aftershaft%1:05:00:: 01897257 1 0 -aftershafted%5:00:00:feathered:00 00997914 1 0 -aftershock%1:11:00:: 07429637 1 0 -aftertaste%1:09:00:: 05936300 1 0 -afterthought%1:06:00:: 02683936 2 0 -afterthought%1:09:00:: 05790012 1 0 -afterward%4:02:00:: 00061203 1 13 -afterwards%4:02:00:: 00061203 1 6 -afterworld%1:09:00:: 05626524 1 0 -ag%1:27:00:: 14654954 1 0 -aga%1:10:00:: 06340047 1 0 -again%4:02:00:: 00040365 1 249 -again_and_again%4:02:00:: 00176981 1 6 -against_the_clock%4:02:00:: 00151521 1 0 -against_the_wind%4:02:00:: 00094893 1 0 -against_time%4:02:00:: 00151521 1 0 -agal%1:06:00:: 02684083 1 0 -agalactia%1:26:00:: 14022199 1 0 -agalactosis%1:26:00:: 14022199 1 0 -agalinis%1:20:00:: 12883733 1 0 -agama%1:05:00:: 01687978 1 0 -agamemnon%1:18:00:: 09594906 1 0 -agamete%1:20:00:: 11547737 1 0 -agamic%5:00:00:asexual:00 02136158 1 0 -agamid%1:05:00:: 01687665 1 0 -agamid_lizard%1:05:00:: 01687665 1 0 -agamidae%1:05:00:: 01687441 1 0 -agammaglobulinemia%1:26:00:: 14128331 1 0 -agamogenesis%1:22:00:: 13434120 1 0 -agamogenetic%5:00:00:asexual:00 02136158 1 0 -agamous%5:00:00:asexual:00 02136158 1 0 -agapanthus%1:20:00:: 12429148 1 0 -agapanthus_africanus%1:20:00:: 12429352 1 0 -agape%1:04:00:: 01028534 3 0 -agape%1:12:00:: 07543732 2 0 -agape%1:12:01:: 07543910 1 0 -agape%5:00:00:open:08 01654582 1 1 -agape_love%1:12:00:: 07543732 1 0 -agapornis%1:05:00:: 01819918 1 0 -agar%1:27:00:: 14900008 2 0 -agar%1:27:02:: 14900184 1 0 -agar-agar%1:27:00:: 14900008 1 0 -agaric%1:20:00:: 12998815 2 0 -agaric%1:20:02:: 13054073 1 0 -agaricaceae%1:20:00:: 13000372 1 0 -agaricales%1:20:00:: 12998349 1 0 -agaricus%1:20:00:: 13000668 1 0 -agaricus_arvensis%1:20:00:: 13001366 1 0 -agaricus_campestris%1:20:00:: 13001529 1 0 -agassiz%1:18:00:: 10809317 1 0 -agastache%1:20:00:: 12839839 1 0 -agastache_foeniculum%1:20:00:: 12840362 1 0 -agastache_mexicana%1:20:00:: 12840502 1 0 -agastache_nepetoides%1:20:00:: 12840168 1 0 -agate%1:27:00:: 14708232 1 1 -agate_line%1:23:00:: 13713003 1 0 -agateware%1:06:00:: 02684248 1 0 -agatha_christie%1:18:00:: 10896987 1 0 -agathis%1:20:00:: 11647131 1 0 -agathis_alba%1:20:00:: 11647868 1 0 -agathis_australis%1:20:00:: 11647703 1 0 -agathis_dammara%1:20:00:: 11647868 1 0 -agathis_lanceolata%1:20:00:: 11648268 1 0 -agathis_robusta%1:20:00:: 11648039 1 0 -agavaceae%1:20:00:: 12476036 1 0 -agave%1:20:00:: 12476510 1 0 -agave_americana%1:20:00:: 12477163 1 0 -agave_atrovirens%1:20:00:: 12477747 1 0 -agave_cantala%1:20:00:: 12477583 1 0 -agave_family%1:20:00:: 12476036 1 0 -agave_sisalana%1:20:00:: 12477401 1 0 -agave_tequilana%1:20:00:: 12477983 1 0 -agaze%5:00:00:open:08 01654769 1 0 -agdestis%1:20:00:: 11856055 1 0 -agdistis%1:18:00:: 09576914 1 0 -age%1:07:00:: 04924103 1 75 -age%1:28:00:: 15145171 3 6 -age%1:28:01:: 15153787 5 0 -age%1:28:02:: 15254028 2 23 -age%1:28:03:: 15242955 4 0 -age%2:30:00:: 00248026 2 1 -age%2:30:01:: 00248512 1 1 -age%2:30:02:: 00249679 3 0 -age-old%5:00:00:old:01 01638962 1 1 -age-related%5:00:00:related:02 01973529 1 0 -age-related_macular_degeneration%1:26:00:: 14256889 1 0 -age_bracket%1:14:00:: 07943480 1 0 -age_class%1:14:00:: 07974766 1 0 -age_group%1:14:00:: 07943480 1 1 -age_limit%1:10:00:: 06664213 1 0 -age_norm%1:09:00:: 06023243 1 0 -age_of_consent%1:28:00:: 15151764 1 0 -age_of_fishes%1:28:00:: 15127982 1 0 -age_of_mammals%1:28:00:: 15124361 1 0 -age_of_man%1:28:00:: 15124545 1 0 -age_of_reason%1:14:00:: 08472590 1 1 -age_of_reptiles%1:28:00:: 15126175 1 0 -aged%1:14:00:: 07943870 1 1 -aged%5:00:00:preserved:02 01071794 5 0 -aged%5:00:00:ripe:00 01493423 4 0 -aged%5:00:00:worn:00 02581047 2 1 -aged%5:00:01:old:02 01644225 1 2 -aged%5:00:02:old:02 01644541 3 0 -agedness%1:07:00:: 04927632 1 0 -agee%1:18:00:: 10809576 1 0 -ageing%1:22:00:: 13429006 2 0 -ageing%1:22:01:: 13551965 1 0 -ageing%5:00:00:old:02 01644709 1 0 -ageism%1:04:00:: 01154373 1 0 -agelaius%1:05:00:: 01575270 1 0 -agelaius_phoeniceus%1:05:00:: 01575401 1 0 -ageless%5:00:00:permanent:00 01755024 1 0 -agelessness%1:07:00:: 04742418 1 0 -agelong%5:00:00:long:02 01438743 1 0 -agency%1:04:00:: 00172710 5 0 -agency%1:14:00:: 08337324 1 20 -agency%1:14:01:: 08057206 2 6 -agency%1:26:00:: 14000403 4 0 -agency%1:26:01:: 14007546 3 1 -agency_security%1:21:00:: 13340080 1 0 -agenda%1:09:00:: 05910940 1 3 -agenda%1:10:00:: 06485261 2 0 -agenda_item%1:10:00:: 06482868 1 0 -agendum%1:10:00:: 06485261 1 0 -agene%1:27:00:: 15017121 1 0 -agenesia%1:22:00:: 13428308 1 0 -agenesis%1:22:00:: 13428308 1 0 -agenise%2:30:00:: 00517365 1 0 -agenize%2:30:00:: 00517365 1 0 -agent%1:10:00:: 06332364 6 0 -agent%1:17:00:: 09190918 1 21 -agent%1:18:01:: 09777012 4 1 -agent%1:18:02:: 09777353 2 6 -agent%1:18:03:: 10373801 5 0 -agent%1:27:00:: 14778436 3 5 -agent-in-place%1:18:00:: 09778266 1 0 -agent_bank%1:14:00:: 08418885 1 0 -agent_bank%1:14:01:: 08418316 2 0 -agent_orange%1:27:00:: 14601039 1 0 -agent_provocateur%1:18:00:: 09778392 1 0 -agential%3:01:00:: 02607909 1 0 -agentive_role%1:10:00:: 06332364 1 0 -agerasia%1:07:00:: 04674624 1 0 -ageratina%1:20:00:: 11917633 1 0 -ageratina_altissima%1:20:00:: 11917835 1 0 -ageratum%1:20:01:: 11918286 2 0 -ageratum%1:20:02:: 11955896 1 0 -ageratum_houstonianum%1:20:00:: 11918473 1 0 -aggeus%1:10:00:: 06440937 2 0 -aggeus%1:18:00:: 11021916 1 0 -agglomerate%1:14:00:: 07961480 2 0 -agglomerate%1:27:00:: 14711647 1 0 -agglomerate%2:35:00:: 01484714 1 2 -agglomerate%5:00:00:collective:00 00467019 1 0 -agglomerated%5:00:00:collective:00 00467019 1 0 -agglomeration%1:04:00:: 01014490 2 0 -agglomeration%1:14:00:: 07959269 1 2 -agglomerative%5:00:00:collective:00 00467019 1 0 -agglomerator%1:06:00:: 02684356 1 0 -agglutinate%2:35:00:: 01221684 2 0 -agglutinate%2:35:01:: 01222016 1 0 -agglutinate%5:00:00:adhesive:00 00053154 1 0 -agglutinating_activity%1:22:00:: 13428804 1 1 -agglutination%1:22:00:: 13428421 2 1 -agglutination%1:22:01:: 13428608 1 3 -agglutination%1:22:02:: 13428804 3 0 -agglutination_test%1:09:00:: 05739613 1 0 -agglutinative%5:00:00:adhesive:00 00053154 2 0 -agglutinative%5:00:00:synthetic:02 00112018 1 0 -agglutinin%1:27:00:: 15028684 1 8 -agglutinogen%1:27:00:: 15029002 1 0 -aggrade%2:35:00:: 01307771 1 0 -aggrandise%2:32:00:: 00956405 1 0 -aggrandisement%1:04:00:: 00373544 1 0 -aggrandize%2:32:00:: 00956405 1 0 -aggrandizement%1:04:00:: 00373544 1 0 -aggravate%2:30:00:: 00208210 1 3 -aggravate%2:37:00:: 01820901 2 2 -aggravated%5:00:00:angry:00 00114266 2 0 -aggravated%5:00:00:intense:00 01510320 1 0 -aggravated_assault%1:04:00:: 00768063 1 0 -aggravating%5:00:00:intensifying:00 01340422 1 0 -aggravatingly%4:02:00:: 00508884 1 1 -aggravation%1:04:00:: 01221790 2 0 -aggravation%1:04:01:: 00374835 3 0 -aggravation%1:12:00:: 07518878 1 0 -aggravator%1:18:00:: 09778537 1 0 -aggregate%1:06:00:: 04353803 1 1 -aggregate%1:14:00:: 08418103 3 0 -aggregate%1:27:00:: 14594925 2 0 -aggregate%2:35:00:: 01385170 2 0 -aggregate%2:42:00:: 02627555 1 0 -aggregate%5:00:00:multiple:00 02216694 2 0 -aggregate%5:00:01:collective:00 00467240 1 2 -aggregate_fruit%1:20:00:: 13137672 1 0 -aggregated%5:00:00:collective:00 00467240 1 0 -aggregation%1:04:00:: 01014066 2 0 -aggregation%1:14:00:: 07951464 1 1 -aggregative%5:00:00:collective:00 00467240 1 0 -aggregator%1:18:00:: 09936620 1 0 -aggress%2:33:00:: 01118449 1 0 -aggression%1:04:00:: 00964569 3 1 -aggression%1:04:01:: 01221611 5 0 -aggression%1:04:02:: 01237167 4 0 -aggression%1:07:00:: 04658268 1 2 -aggression%1:12:00:: 07548567 2 1 -aggressive%3:00:00:: 00082241 1 6 -aggressive%5:00:00:hostile:01 01244846 3 0 -aggressive%5:00:00:invasive:00 01356143 2 0 -aggressively%4:02:00:: 00049947 1 0 -aggressiveness%1:07:00:: 04837232 1 3 -aggressiveness%1:07:01:: 04643662 3 0 -aggressiveness%1:12:00:: 07548567 2 1 -aggressor%1:18:00:: 09821253 1 1 -aggressor%1:18:01:: 09778676 2 1 -aggrieve%2:37:00:: 01797582 2 0 -aggrieve%2:41:00:: 02513879 1 0 -aggro%1:04:00:: 01172598 1 0 -aggroup%2:33:00:: 01089878 1 0 -agha%1:10:00:: 06340047 1 0 -aghan%1:28:00:: 15220864 1 0 -aghast%5:00:00:afraid:00 00078576 1 2 -agile%5:00:00:active:01 00032733 1 1 -agile%5:00:00:intelligent:00 01334833 2 0 -agilely%4:02:00:: 00189615 1 1 -agility%1:07:00:: 05003850 1 0 -agincourt%1:04:00:: 01269161 1 0 -aging%1:22:00:: 13429006 2 0 -aging%1:22:01:: 13551965 1 0 -aging%5:00:00:old:02 01644709 1 0 -agio%1:21:00:: 13324297 1 0 -agiotage%1:21:00:: 13324297 1 0 -agism%1:04:00:: 01154373 1 0 -agitate%2:35:00:: 01419473 6 0 -agitate%2:37:00:: 01762528 2 1 -agitate%2:38:00:: 01893988 4 0 -agitate%2:38:01:: 01889610 5 0 -agitate%2:41:00:: 02585050 1 2 -agitate%2:41:10:: 02589576 3 0 -agitated%3:00:00:: 00085264 1 2 -agitated%3:00:02:: 00087354 2 1 -agitated_depression%1:26:00:: 14389584 1 0 -agitating%5:00:00:provocative:00 01896925 1 0 -agitation%1:04:00:: 00554300 4 0 -agitation%1:04:01:: 00333366 5 0 -agitation%1:12:00:: 07513508 3 0 -agitation%1:26:00:: 13979503 2 0 -agitation%1:26:01:: 14403107 1 1 -agitative%5:00:00:provocative:00 01896925 1 0 -agitator%1:18:00:: 09778783 1 0 -agitprop%1:10:00:: 06674791 1 0 -agkistrodon%1:05:00:: 01754190 1 0 -agkistrodon_contortrix%1:05:00:: 01754370 1 0 -agkistrodon_piscivorus%1:05:00:: 01754533 1 0 -aglaia%1:18:00:: 09495619 1 0 -aglaomorpha%1:20:00:: 13174206 1 0 -aglaomorpha_meyeniana%1:20:00:: 13174354 1 0 -aglaonema%1:20:00:: 11781430 1 0 -aglaonema_modestum%1:20:00:: 11781658 1 0 -agleam%5:00:00:bright:00 00279092 1 0 -aglet%1:06:00:: 02684515 2 0 -aglet%1:06:01:: 02684649 1 0 -aglitter%5:00:00:bright:00 00279618 1 0 -aglow%5:00:00:bright:00 00279332 1 0 -agnail%1:08:00:: 05584746 1 0 -agnate%1:18:00:: 10236663 1 0 -agnate%5:00:00:related:01 01971671 1 0 -agnatha%1:05:00:: 01473990 1 0 -agnathan%1:05:00:: 01474283 1 0 -agnatic%5:00:00:related:01 01971671 1 0 -agnation%1:24:00:: 13814898 1 0 -agnes_de_mille%1:18:00:: 10929886 1 0 -agnes_george_de_mille%1:18:00:: 10929886 1 0 -agnes_gonxha_bojaxhiu%1:18:00:: 11335878 1 0 -agni%1:18:00:: 09524263 1 0 -agnise%2:31:00:: 00728617 1 0 -agnize%2:31:00:: 00728617 1 0 -agnomen%1:10:00:: 06334377 1 0 -agnosia%1:26:00:: 14099933 1 0 -agnostic%1:18:00:: 09778927 2 0 -agnostic%1:18:01:: 09779124 1 0 -agnostic%3:00:00:: 01305929 2 0 -agnostic%3:01:00:: 02604683 1 0 -agnostical%3:00:00:: 01305929 1 0 -agnosticism%1:09:00:: 05980051 2 0 -agnosticism%1:09:01:: 06222508 1 0 -agnus_dei%1:10:00:: 06883274 1 0 -agnus_dei%1:10:01:: 06456276 2 0 -ago%4:02:00:: 00074095 1 82 -ago%5:00:00:past:00 01728476 1 0 -agog%5:00:00:excited:00 00919919 1 0 -agon%1:04:00:: 00035697 1 0 -agonadal%3:01:00:: 02975469 1 0 -agonal%3:01:00:: 02608090 1 0 -agone%5:00:00:past:00 01728476 1 0 -agonic_line%1:15:00:: 08490685 1 0 -agonidae%1:05:00:: 02647503 1 0 -agonise%2:37:00:: 01794363 2 0 -agonise%2:37:01:: 01794523 1 0 -agonised%5:00:00:painful:00 01711614 1 0 -agonising%5:00:00:painful:00 01711724 1 0 -agonist%1:06:00:: 02684789 4 0 -agonist%1:08:00:: 05293268 3 0 -agonist%1:18:00:: 09779280 2 0 -agonist%1:18:01:: 10172793 1 0 -agonistic%3:01:00:: 02608244 1 0 -agonistic%5:00:00:affected:01 00073358 3 0 -agonistic%5:00:00:competitive:00 00512769 2 0 -agonistical%5:00:00:competitive:00 00512769 1 0 -agonize%2:37:00:: 01794363 2 0 -agonize%2:37:01:: 01794523 1 0 -agonized%5:00:00:painful:00 01711614 1 0 -agonizing%5:00:00:painful:00 01711724 1 0 -agonizingly%4:02:00:: 00261389 1 0 -agonus%1:05:00:: 02647903 1 0 -agonus_cataphractus%1:05:00:: 02648035 1 0 -agony%1:12:00:: 07495551 1 5 -agony%1:26:00:: 14324274 2 4 -agony_aunt%1:18:00:: 09779461 1 0 -agony_column%1:10:00:: 06271514 1 0 -agora%1:06:00:: 02684962 3 0 -agora%1:15:00:: 08492461 2 0 -agora%1:23:00:: 13706415 1 0 -agoraphobia%1:26:00:: 14381840 1 0 -agoraphobic%5:00:00:afraid:00 00078705 1 0 -agouti%1:05:00:: 02366002 1 0 -agra%1:15:00:: 08904115 1 0 -agranulocytic%3:01:00:: 02608380 1 0 -agranulocytosis%1:26:00:: 14071896 1 0 -agranulosis%1:26:00:: 14071896 1 0 -agrapha%1:10:00:: 07154760 1 0 -agraphia%1:26:00:: 14095948 1 0 -agraphic%3:01:00:: 02608507 1 0 -agrarian%5:00:00:rural:00 02050841 1 0 -agree%2:32:00:: 00805376 1 62 -agree%2:32:01:: 00764222 2 25 -agree%2:32:04:: 01035530 7 0 -agree%2:40:02:: 02291135 6 0 -agree%2:42:00:: 02657219 3 4 -agree%2:42:01:: 02700104 4 1 -agree%2:42:03:: 02741793 5 0 -agreeability%1:07:00:: 04640927 1 0 -agreeable%3:00:00:: 00089051 1 0 -agreeable%5:00:00:accordant:00 00553279 3 0 -agreeable%5:00:00:consistent:00 00577122 2 0 -agreeableness%1:07:00:: 04640927 2 0 -agreeableness%1:07:01:: 04779053 1 0 -agreeably%4:02:00:: 00219110 1 1 -agreed%5:00:00:united:00 02476338 1 0 -agreed_upon%5:00:00:uncontroversial:00 00603194 1 3 -agreement%1:07:00:: 04713428 2 8 -agreement%1:09:00:: 05795044 4 2 -agreement%1:10:00:: 07175241 6 0 -agreement%1:10:01:: 06770275 1 9 -agreement%1:24:03:: 13797313 5 0 -agreement%1:26:01:: 13971065 3 6 -agrestic%5:00:00:rural:00 02051013 1 0 -agrestic%5:00:00:unrefined:01 01949611 2 0 -agribusiness%1:04:00:: 01104406 1 0 -agricola%1:18:00:: 10809675 1 0 -agricultural%3:01:00:: 02790222 1 6 -agricultural%5:00:00:rural:00 02050841 2 0 -agricultural_agent%1:18:00:: 09971385 1 1 -agricultural_laborer%1:18:00:: 09779623 1 0 -agricultural_labourer%1:18:00:: 09779623 1 0 -agriculturalist%1:18:00:: 09779790 1 0 -agriculture%1:04:00:: 00916464 2 1 -agriculture%1:04:01:: 01104406 1 4 -agriculture%1:14:00:: 08075287 4 0 -agriculture%1:14:01:: 08128964 3 0 -agriculture_department%1:14:00:: 08128964 1 0 -agriculture_secretary%1:04:00:: 00600200 2 0 -agriculture_secretary%1:18:00:: 10570704 1 0 -agriculturist%1:18:00:: 09779790 1 0 -agrigento%1:15:00:: 08811812 1 0 -agrimonia%1:20:00:: 12622875 1 0 -agrimonia_eupatoria%1:20:00:: 12623077 1 0 -agrimonia_procera%1:20:00:: 12623211 1 0 -agrimony%1:20:00:: 12622875 1 0 -agriocharis%1:05:00:: 01794460 1 0 -agriocharis_ocellata%1:05:00:: 01794651 1 0 -agrippa%1:18:00:: 10809857 1 0 -agrippina%1:18:00:: 10810046 2 0 -agrippina%1:18:01:: 10810215 1 0 -agrippina_the_elder%1:18:00:: 10810046 1 0 -agrippina_the_younger%1:18:00:: 10810215 1 0 -agrobacterium%1:05:00:: 01354521 1 0 -agrobacterium_tumefaciens%1:05:00:: 01354724 1 1 -agrobiologic%3:01:00:: 02608592 1 0 -agrobiological%3:01:00:: 02608592 1 0 -agrobiology%1:09:00:: 06066072 1 0 -agrologic%3:01:00:: 02608753 1 0 -agrological%3:01:00:: 02608753 1 0 -agrology%1:09:00:: 06066267 1 0 -agromania%1:16:00:: 09181889 1 0 -agronomic%3:01:00:: 02608902 1 0 -agronomical%3:01:00:: 02608902 1 0 -agronomist%1:18:00:: 09780120 1 0 -agronomy%1:09:00:: 06065819 1 0 -agropyron%1:20:00:: 12104943 1 0 -agropyron_cristatum%1:20:00:: 12105353 1 0 -agropyron_intermedium%1:20:00:: 12106134 1 0 -agropyron_pauciflorum%1:20:00:: 12106323 1 0 -agropyron_repens%1:20:00:: 12105578 1 0 -agropyron_smithii%1:20:00:: 12105981 1 0 -agropyron_subsecundum%1:20:00:: 12105828 1 0 -agropyron_trachycaulum%1:20:00:: 12106323 1 0 -agrostemma%1:20:00:: 11805380 1 0 -agrostemma_githago%1:20:00:: 11805544 1 0 -agrostis%1:20:00:: 12106540 1 0 -agrostis_alba%1:20:00:: 12132092 1 0 -agrostis_canina%1:20:00:: 12107002 1 0 -agrostis_nebulosa%1:20:00:: 12107191 1 0 -agrostis_palustris%1:20:00:: 12107336 1 0 -aground%3:00:00:: 00077449 1 0 -aground%4:02:00:: 00270011 1 0 -agrypnia%1:04:00:: 01030033 1 0 -agrypnotic%3:01:00:: 02609065 1 0 -agua%1:05:00:: 01646388 1 0 -agua_toad%1:05:00:: 01646388 1 0 -aguacate%1:13:00:: 07764847 1 0 -ague%1:10:00:: 06822576 3 0 -ague%1:26:00:: 14065332 1 1 -ague%1:26:01:: 14340462 2 0 -ague_grass%1:20:00:: 12430471 1 0 -ague_root%1:20:00:: 12430471 1 0 -ague_weed%1:20:00:: 12295796 1 0 -agueweed%1:20:01:: 12295796 1 0 -agueweed%1:20:02:: 11968931 2 0 -aguish%5:00:00:ill:01 02542256 1 0 -ahab%1:18:00:: 10810397 1 0 -ahead%4:02:00:: 00066781 1 21 -ahead%4:02:01:: 00067045 4 1 -ahead%4:02:02:: 00067265 3 5 -ahead%4:02:03:: 00067513 7 0 -ahead%4:02:04:: 00067823 6 0 -ahead%4:02:05:: 00068070 5 0 -ahead%4:02:06:: 00075442 2 5 -ahead%5:00:00:up:00 02490631 1 1 -ahead_of_the_game%4:02:00:: 00151655 1 0 -ahead_of_time%4:02:00:: 00100082 1 0 -ahem%1:10:00:: 07126521 1 0 -ahimsa%1:10:00:: 06789801 1 0 -ahistorical%3:01:00:: 02920321 1 0 -ahmad_shah_masoud%1:18:00:: 11163342 1 0 -ahmed_salman_rushdie%1:18:00:: 11274454 1 0 -ahmed_zoki_yamani%1:18:00:: 11401947 1 0 -ahorse%4:02:00:: 00002436 1 0 -ahorse%5:00:00:moving:02 01562284 1 0 -ahorseback%4:02:00:: 00002436 1 0 -ahorseback%5:00:00:moving:02 01562284 1 1 -ahpcrc%1:06:00:: 02741681 1 0 -ahriman%1:18:00:: 09532101 1 0 -ahuehuete%1:20:00:: 11642622 1 0 -ahura%1:18:00:: 09524555 1 0 -ahura_mazda%1:18:00:: 09531955 1 0 -ahvenanmaa%1:15:00:: 08780510 1 0 -ai%1:04:00:: 00845352 4 0 -ai%1:05:00:: 02457408 3 0 -ai%1:09:00:: 06133203 2 0 -ai%1:14:00:: 08395682 1 0 -aiai%1:14:00:: 08012384 1 0 -aid%1:04:00:: 01207609 2 9 -aid%1:04:01:: 00654885 4 0 -aid%1:07:00:: 05154908 1 10 -aid%1:21:00:: 13265904 3 6 -aid%2:29:00:: 00082081 2 1 -aid%2:41:00:: 02547586 1 36 -aid_station%1:06:00:: 03238407 1 0 -aide%1:18:00:: 09780249 2 1 -aide%1:18:01:: 09770179 1 3 -aide-de-camp%1:18:00:: 09770179 1 0 -aide-memoire%1:10:00:: 06506430 1 0 -aided%3:00:00:: 02353707 1 0 -aides%1:18:00:: 09570298 1 0 -aidoneus%1:18:00:: 09570298 1 0 -aids%1:26:00:: 14127782 1 0 -aigina%1:15:00:: 08782847 1 0 -aiglet%1:06:00:: 02684515 2 0 -aiglet%1:06:01:: 02684649 1 0 -aigret%1:06:00:: 02685082 1 0 -aigrette%1:06:00:: 02685082 1 0 -aiguilette%1:06:00:: 02684515 1 0 -aiken%1:18:00:: 10810549 1 0 -aikido%1:04:00:: 00825331 1 0 -ail%1:13:00:: 07818277 1 0 -ail%2:29:00:: 00078665 1 0 -ail%2:29:01:: 00070816 2 0 -ailanthus%1:20:00:: 12717072 1 0 -ailanthus_altissima%1:20:00:: 12717224 1 0 -ailanthus_silkworm%1:05:00:: 02303777 1 0 -aileron%1:06:00:: 02685253 1 0 -ailey%1:18:00:: 10810671 1 0 -ailing%5:00:00:ill:01 02542325 1 2 -ailment%1:26:00:: 14055408 1 7 -ailurophobia%1:26:00:: 14385002 1 0 -ailuropoda%1:05:00:: 02510240 1 0 -ailuropoda_melanoleuca%1:05:00:: 02510455 1 0 -ailuropodidae%1:05:00:: 02510065 1 0 -ailurus%1:05:00:: 02509694 1 0 -ailurus_fulgens%1:05:00:: 02509815 1 0 -aim%1:04:00:: 00815644 3 4 -aim%1:09:00:: 05982152 1 12 -aim%1:09:01:: 05981230 2 4 -aim%1:15:00:: 08680888 4 0 -aim%2:31:00:: 00705517 7 2 -aim%2:31:01:: 00708980 2 7 -aim%2:31:02:: 00713015 4 3 -aim%2:32:00:: 00955472 6 2 -aim%2:32:09:: 01026975 3 5 -aim%2:33:00:: 01151110 1 8 -aim%2:33:10:: 01150559 5 2 -aimee_semple_mcpherson%1:18:00:: 11169943 1 0 -aimless%5:00:00:purposeless:00 01910652 1 3 -aimless%5:00:00:unsettled:01 02127159 2 0 -aimlessly%4:02:00:: 00205808 1 1 -aimlessness%1:07:00:: 05174326 1 1 -ain%5:00:00:personal:00 01768724 1 0 -aioli%1:13:00:: 07834774 1 0 -aioli_sauce%1:13:00:: 07834774 1 0 -air%1:04:00:: 00300441 9 0 -air%1:07:00:: 04727214 3 9 -air%1:10:01:: 07028373 7 0 -air%1:10:02:: 06255354 8 0 -air%1:15:00:: 08653314 2 29 -air%1:15:01:: 08499057 5 1 -air%1:19:00:: 11431754 4 3 -air%1:27:00:: 14841267 1 42 -air%1:27:01:: 14842703 6 0 -air%2:30:00:: 00488770 6 0 -air%2:30:01:: 00489029 5 0 -air%2:32:00:: 00954608 4 0 -air%2:32:01:: 00973056 3 0 -air%2:32:02:: 00973728 2 0 -air%2:39:00:: 02112891 1 1 -air-breathing%3:01:00:: 02609168 1 0 -air-condition%2:40:00:: 02331326 2 0 -air-condition%2:40:01:: 02331575 1 0 -air-conditioned%5:00:00:cool:01 02530282 1 0 -air-cool%2:40:00:: 02331326 1 0 -air-cooled%5:00:00:cool:01 02530370 1 0 -air-dried%5:00:00:dry:01 02552222 1 0 -air-drop%2:35:00:: 01489859 1 0 -air-dry%5:00:00:dry:01 02552315 1 0 -air-filled%5:00:00:full:00 01084023 1 0 -air-freight%2:38:00:: 01951159 1 0 -air-intake%1:06:00:: 02689961 1 0 -air-raid_shelter%1:06:00:: 02868638 1 0 -air-ship%2:38:00:: 01951159 1 0 -air-slake%2:30:00:: 00214794 1 0 -air-sleeve%1:10:00:: 07257582 1 0 -air-tight%5:00:00:invulnerable:00 02525597 1 0 -air-tight%5:00:00:tight:02 01398528 2 0 -air-to-air%3:00:00:: 00090917 1 0 -air-to-air_missile%1:06:00:: 02693413 1 0 -air-to-ground%3:00:00:: 00090718 1 0 -air-to-ground_missile%1:06:00:: 02693540 1 0 -air-to-surface%3:00:00:: 00090718 1 0 -air-to-surface_missile%1:06:00:: 02693540 1 1 -air_alert%1:10:00:: 06803023 3 0 -air_alert%1:26:00:: 14031922 2 0 -air_alert%1:28:00:: 15297859 1 0 -air_attache%1:18:00:: 09780395 1 0 -air_attack%1:04:00:: 00974111 1 0 -air_bag%1:06:00:: 02685365 1 0 -air_base%1:06:00:: 02685585 1 0 -air_bladder%1:05:00:: 02467581 1 0 -air_bubble%1:17:00:: 09191635 1 0 -air_castle%1:09:00:: 05769471 1 0 -air_cell%1:08:00:: 05528395 1 0 -air_cleaner%1:06:00:: 02688273 1 0 -air_combat_command%1:14:00:: 08196622 1 0 -air_compressor%1:06:00:: 02686227 1 0 -air_conditioner%1:06:00:: 02686379 1 0 -air_conditioning%1:06:00:: 02686379 1 0 -air_corps%1:14:00:: 08194815 1 1 -air_cover%1:04:00:: 00818170 1 0 -air_crew%1:14:00:: 08273406 1 0 -air_current%1:19:01:: 11525955 1 0 -air_cushion%1:06:00:: 02687539 3 0 -air_cushion%1:06:02:: 02687682 2 0 -air_cushion%1:27:00:: 14842560 1 0 -air_defense%1:04:00:: 00960192 1 1 -air_division%1:14:00:: 08219330 1 0 -air_duct%1:06:00:: 02690941 1 0 -air_embolism%1:26:00:: 14101317 1 0 -air_embolism%1:26:01:: 14068344 2 0 -air_filter%1:06:00:: 02688273 1 0 -air_flow%1:11:00:: 07406601 1 0 -air_force%1:14:00:: 08196024 1 2 -air_force%1:14:01:: 08196230 2 0 -air_force_academy%1:14:00:: 08279800 1 0 -air_force_intelligence_surveillance_and_reconnaissance%1:14:00:: 08197386 1 0 -air_force_isr%1:14:00:: 08197386 1 0 -air_force_officer%1:18:00:: 09780828 1 0 -air_force_research_laboratory%1:06:00:: 02688895 1 0 -air_force_space_command%1:14:00:: 08196892 1 0 -air_gas%1:27:00:: 14862481 1 0 -air_group%1:14:00:: 08219628 1 0 -air_gun%1:06:00:: 02689274 1 0 -air_hammer%1:06:00:: 02689434 1 0 -air_hole%1:06:00:: 02689556 2 0 -air_hole%1:19:00:: 11423028 1 0 -air_horn%1:06:00:: 02689648 2 0 -air_horn%1:06:01:: 02689748 1 0 -air_hose%1:06:00:: 02690270 1 0 -air_hostess%1:18:00:: 10655875 1 0 -air_jacket%1:06:00:: 03703945 1 0 -air_lane%1:15:00:: 08492546 1 0 -air_letter%1:10:00:: 06626060 1 0 -air_lock%1:06:00:: 02690583 1 0 -air_mail%1:10:00:: 06623100 1 0 -air_marshal%1:18:00:: 09781171 1 0 -air_mass%1:26:00:: 14520518 1 0 -air_mattress%1:06:00:: 02690809 1 1 -air_medal%1:10:00:: 06708007 1 0 -air_mile%1:23:00:: 13660337 1 0 -air_national_guard%1:14:00:: 08197149 1 0 -air_out%2:30:00:: 00488770 2 0 -air_out%2:39:00:: 02112891 1 0 -air_passage%1:06:00:: 02690941 1 0 -air_plant%1:20:00:: 13122985 1 0 -air_pocket%1:19:00:: 11423028 1 0 -air_pollution%1:26:00:: 14517412 1 0 -air_potato%1:20:00:: 12088768 1 0 -air_power%1:14:00:: 08433727 1 0 -air_pressure%1:19:00:: 11429458 1 0 -air_pump%1:06:00:: 02692513 1 0 -air_raid%1:04:00:: 00974111 1 0 -air_reconnaissance%1:04:00:: 00985356 1 0 -air_rifle%1:06:00:: 02689274 1 0 -air_sac%1:05:01:: 02467746 3 0 -air_sac%1:05:02:: 02467884 2 0 -air_sac%1:08:03:: 05528395 1 0 -air_search_radar%1:06:00:: 02692680 1 0 -air_shaft%1:06:00:: 02692787 1 0 -air_sick%5:00:00:ill:01 02542675 1 0 -air_sickness%1:26:00:: 14203605 1 0 -air_sock%1:10:00:: 07257582 1 0 -air_space%1:15:01:: 08555569 1 0 -air_spring%1:06:00:: 02687682 1 0 -air_station%1:06:00:: 02685585 1 0 -air_terminal%1:06:00:: 02693246 1 0 -air_thermometer%1:06:00:: 03426285 1 0 -air_traffic%1:14:00:: 08425556 1 0 -air_transport%1:04:00:: 01105635 1 0 -air_transportation%1:04:00:: 01105635 1 0 -air_transportation_system%1:06:00:: 02693709 1 0 -air_travel%1:04:00:: 00300441 1 0 -air_traveler%1:18:00:: 09781398 1 0 -air_traveller%1:18:00:: 09781398 1 0 -air_unit%1:14:00:: 08195797 1 0 -air_wave%1:11:00:: 07347373 1 1 -air_well%1:06:00:: 02692787 1 0 -airborne%5:00:00:mobile:00 01522895 1 3 -airborne_patrol%1:04:00:: 00825005 1 0 -airborne_transmission%1:17:00:: 09191427 1 0 -airbrake%1:06:00:: 02685701 2 0 -airbrake%1:06:01:: 02685855 1 0 -airbrush%1:06:00:: 02685995 1 0 -airbrush%2:35:00:: 01363320 1 0 -airburst%1:11:00:: 07408086 1 0 -airbus%1:06:00:: 02686121 1 0 -aircraft%1:06:00:: 02686568 1 15 -aircraft_carrier%1:06:00:: 02687172 1 1 -aircraft_engine%1:06:00:: 02687423 1 0 -aircraft_landing%1:04:00:: 00305153 1 0 -aircraftman%1:18:00:: 09780547 1 0 -aircraftsman%1:18:00:: 09780547 1 0 -aircrew%1:14:00:: 08273406 1 0 -aircrewman%1:18:00:: 09780676 1 0 -airdock%1:06:00:: 02687821 1 0 -airdrome%1:06:00:: 02692232 1 0 -airdrop%1:04:00:: 00317709 1 0 -aire%1:17:00:: 09191707 1 0 -aire_river%1:17:00:: 09191707 1 0 -aired%5:00:00:ventilated:00 02508917 1 0 -airedale%1:05:00:: 02096051 1 0 -airedale_terrier%1:05:00:: 02096051 1 0 -airfare%1:21:00:: 13308336 1 0 -airfield%1:06:00:: 02687992 1 0 -airflow%1:11:00:: 07406601 1 1 -airfoil%1:06:00:: 02688443 1 0 -airforce%1:14:00:: 08196024 1 0 -airframe%1:06:00:: 02689144 1 1 -airfreight%2:38:00:: 01951159 1 0 -airgun%1:06:00:: 02689274 1 0 -airhead%1:15:00:: 08689357 2 0 -airhead%1:18:00:: 09780984 1 0 -airheaded%5:00:00:frivolous:00 02120828 1 0 -airily%4:02:00:: 00341835 1 1 -airiness%1:07:00:: 05028963 2 0 -airiness%1:07:01:: 05105745 1 0 -airiness%1:07:02:: 04632866 3 0 -airing%1:04:00:: 00266645 3 0 -airing%1:04:01:: 00312266 2 0 -airing%1:10:00:: 06253140 1 0 -airing_cupboard%1:06:00:: 02689819 1 0 -airless%5:00:00:unventilated:00 02509484 1 1 -airlift%1:04:00:: 00316594 1 0 -airlift%2:35:00:: 01452057 1 0 -airlike%5:00:00:gaseous:00 02262879 1 0 -airline%1:06:00:: 02690081 2 0 -airline%1:06:01:: 02690270 1 0 -airline_business%1:06:00:: 02690081 1 0 -airliner%1:06:00:: 02690373 1 0 -airlock%1:06:00:: 02690583 1 0 -airmail%1:10:00:: 06264812 2 0 -airmail%1:10:01:: 06622993 1 0 -airmail%2:32:00:: 01032127 1 0 -airmail_letter%1:10:00:: 06626060 1 0 -airmailer%1:06:00:: 02690715 1 0 -airman%1:18:00:: 09826204 1 0 -airmanship%1:09:00:: 05635188 1 0 -airplane%1:06:00:: 02691156 1 5 -airplane_landing%1:04:00:: 00305153 1 0 -airplane_maneuver%1:04:00:: 00170844 1 0 -airplane_mechanics%1:04:00:: 00607075 1 1 -airplane_pilot%1:18:00:: 10433164 1 0 -airplane_propeller%1:06:00:: 02692086 1 0 -airplane_ticket%1:10:00:: 06519253 1 0 -airport%1:06:00:: 02692232 1 4 -airport_terminal%1:06:00:: 02693246 1 0 -airpost%1:10:00:: 06264812 1 0 -airs%1:07:00:: 04788011 1 2 -airscrew%1:06:00:: 02692086 1 0 -airship%1:06:00:: 02692877 1 0 -airsick%5:00:00:ill:01 02542675 1 0 -airsickness%1:26:00:: 14203605 1 0 -airspace%1:15:00:: 08502317 2 0 -airspace%1:15:01:: 08555569 1 0 -airspeed%1:28:00:: 15283433 1 2 -airstream%1:19:00:: 11423356 1 0 -airstream%1:19:01:: 11423197 2 0 -airstrip%1:06:00:: 02693070 1 0 -airt%2:38:00:: 01953334 1 0 -airtight%5:00:00:invulnerable:00 02525597 1 0 -airtight%5:00:00:tight:02 01398528 2 0 -airwave%1:10:00:: 06255354 1 0 -airway%1:06:00:: 02690081 4 0 -airway%1:06:01:: 02690941 1 4 -airway%1:08:00:: 05510173 3 0 -airway%1:15:00:: 08492546 2 0 -airwoman%1:18:00:: 09826605 1 0 -airworthiness%1:26:00:: 14547188 1 0 -airworthy%3:00:00:: 02088198 1 0 -airy%5:00:00:insubstantial:00 00626136 4 0 -airy%5:00:00:light:01 01186913 3 0 -airy%5:00:00:utopian:00 02498213 2 0 -airy%5:00:00:ventilated:00 02508917 1 4 -aisle%1:06:00:: 02693860 2 2 -aisle%1:06:02:: 02694045 3 0 -aisle%1:06:03:: 02694182 1 2 -aitchbone%1:13:00:: 07663118 1 0 -aix%1:05:00:: 01851996 1 0 -aix-la-chapelle%1:15:00:: 08769439 1 0 -aix_galericulata%1:05:00:: 01852400 1 0 -aix_sponsa%1:05:00:: 01852142 1 0 -aizoaceae%1:20:00:: 11818945 1 0 -ajaia%1:05:00:: 02007161 1 0 -ajaia_ajaja%1:05:00:: 02007284 1 0 -ajar%5:00:00:open:01 01652601 1 0 -ajax%1:18:00:: 09589323 1 0 -ajuga%1:20:00:: 12840640 1 0 -ajuga_chamaepitys%1:20:00:: 12841472 1 0 -ajuga_genevensis%1:20:00:: 12841193 1 0 -ajuga_pyramidalis%1:20:00:: 12841354 1 0 -ajuga_reptans%1:20:00:: 12841007 1 0 -ak%1:15:00:: 09055015 1 0 -akaba%1:15:00:: 08927678 1 0 -akan%1:10:00:: 06997486 1 0 -akaryocyte%1:08:00:: 05449538 1 0 -akaryote%1:08:00:: 05449538 1 0 -akee%1:13:00:: 07762740 2 0 -akee%1:20:00:: 12742290 1 0 -akee_tree%1:20:00:: 12742290 1 0 -aken%1:15:00:: 08769439 1 0 -akeridae%1:05:00:: 01951721 1 0 -akha%1:10:00:: 06932803 1 0 -akhbari%1:14:00:: 08474120 1 0 -akhenaten%1:18:00:: 10810923 1 0 -akhenaton%1:18:00:: 10810923 1 0 -akimbo%4:02:00:: 00270110 1 0 -akimbo%5:00:00:crooked:01 02312060 1 0 -akin%5:00:00:related:01 01971846 2 0 -akin%5:00:00:similar:00 02071782 1 3 -akinesia%1:26:00:: 14085474 1 0 -akinesis%1:26:00:: 14085474 1 0 -akinetic_epilepsy%1:26:00:: 14086528 1 0 -akira_kurosawa%1:18:00:: 11112907 1 0 -akka%1:15:00:: 08793310 1 0 -akkadian%1:10:00:: 06987525 1 0 -akko%1:15:00:: 08793310 1 0 -akmola%1:15:00:: 09020119 1 0 -akron%1:15:00:: 09130452 1 0 -aksa_martyrs_brigades%1:14:00:: 08010942 1 0 -aku%1:10:00:: 06997368 1 0 -akvavit%1:13:00:: 07902799 1 0 -akwa'ala%1:10:00:: 06922389 3 0 -akwa'ala%1:14:00:: 08488250 2 0 -akwa'ala%1:18:00:: 09646112 1 0 -al%1:15:00:: 09053185 2 0 -al%1:27:00:: 14627820 1 0 -al-aksa_martyrs_brigades%1:14:00:: 08010942 1 0 -al-asifa%1:14:00:: 08011523 1 0 -al-fatah%1:14:00:: 08011523 1 0 -al-gama'a_al-islamiyya%1:14:00:: 08012028 1 0 -al-hakim%1:18:00:: 10813813 1 0 -al-hasan_ibn_al-haytham%1:18:00:: 10813986 1 0 -al-haytham%1:18:00:: 10813986 1 0 -al-hudaydah%1:15:00:: 09165146 1 0 -al-iraq%1:15:00:: 08913434 1 0 -al-itihaad_al-islamiya%1:14:00:: 08012384 1 0 -al-jama'a_al-islamiyyah_al-muqatilah_bi-libya%1:14:00:: 08032594 1 0 -al-jihad%1:14:00:: 08012765 1 0 -al-ma'unah%1:14:00:: 08013176 1 0 -al-magrib%1:15:00:: 08969291 1 0 -al-muhajiroun%1:14:00:: 08013453 1 0 -al-mukalla%1:15:00:: 09165294 1 0 -al-qa'ida%1:14:00:: 08013845 1 0 -al-qaeda%1:14:00:: 08013845 1 0 -al-qaida%1:14:00:: 08013845 1 0 -al-qur'an%1:10:00:: 06461609 1 0 -al-rashid_trust%1:14:00:: 08014202 1 0 -al-tawhid%1:14:00:: 08014860 1 0 -al-ummah%1:14:00:: 08015116 1 0 -al_alamayn%1:04:00:: 01278232 1 0 -al_aqabah%1:15:00:: 08927678 1 0 -al_capone%1:18:00:: 10881784 1 0 -al_dente%5:00:00:hard:01 01151335 1 0 -al_faran%1:14:00:: 08022972 1 0 -al_gore%1:18:00:: 11008313 1 0 -al_hirschfeld%1:18:00:: 11052043 1 0 -al_itihaad_al_islamiya%1:14:00:: 08012384 1 0 -al_jolson%1:18:00:: 11089669 1 0 -al_ladhiqiyah%1:15:00:: 09034402 1 0 -al_madinah%1:15:00:: 08994339 1 0 -al_nathir%1:14:00:: 08013653 1 0 -al_qahira%1:15:00:: 08898633 1 0 -al_qanoon%1:14:00:: 08030711 1 0 -al_sunna_wal_jamma%1:14:00:: 08014615 1 0 -al_tawhid%1:14:00:: 08014860 1 0 -ala%1:05:01:: 02151940 2 0 -ala%1:08:00:: 05309965 1 0 -alabama%1:10:00:: 06912248 4 0 -alabama%1:15:00:: 09053185 1 3 -alabama%1:17:00:: 09191875 3 0 -alabama%1:18:00:: 09646220 2 0 -alabama_lip_fern%1:20:00:: 13208965 1 0 -alabama_river%1:17:00:: 09191875 1 0 -alabaman%1:18:00:: 09740856 1 1 -alabamian%1:18:00:: 09740856 1 1 -alabaster%1:07:00:: 04961062 3 0 -alabaster%1:27:00:: 14665351 1 2 -alabaster%1:27:01:: 14665469 2 0 -alabaster%3:01:00:: 02609369 1 0 -alabastrine%3:01:00:: 02609369 1 0 -alacritous%5:00:00:fast:01 00977238 1 0 -alacrity%1:07:01:: 04632963 1 0 -aladdin%1:18:00:: 09589444 1 0 -aladdin's_lamp%1:06:00:: 02694279 1 0 -alalia%1:26:00:: 14085592 1 0 -alamo%1:04:00:: 01269360 1 0 -alan_alexander_milne%1:18:00:: 11180812 1 0 -alan_bartlett_shepard_jr.%1:18:00:: 11297263 1 0 -alan_hodgkin%1:18:00:: 11053559 1 0 -alan_jay_lerner%1:18:00:: 11129130 1 0 -alan_lloyd_hodgkin%1:18:00:: 11053559 1 0 -alan_mathison_turing%1:18:00:: 11352498 1 0 -alan_paton%1:18:00:: 11225350 1 0 -alan_seeger%1:18:00:: 11290864 1 0 -alan_shepard%1:18:00:: 11297263 1 0 -alan_stewart_paton%1:18:00:: 11225350 1 0 -alan_turing%1:18:00:: 11352498 1 0 -aland_islands%1:15:00:: 08780510 1 0 -alanine%1:27:00:: 14602490 1 0 -alar%1:27:00:: 14708531 1 0 -alar%3:01:00:: 03133666 1 0 -alar%5:00:00:winged:00 02567117 2 0 -alaric%1:18:00:: 10811118 1 0 -alarm%1:06:00:: 02694426 2 3 -alarm%1:06:01:: 02694662 4 0 -alarm%1:10:00:: 06803157 3 0 -alarm%1:12:00:: 07519773 1 5 -alarm%2:32:00:: 00872414 2 1 -alarm%2:37:00:: 01782650 1 2 -alarm_bell%1:10:00:: 07265886 1 0 -alarm_clock%1:06:00:: 02694662 1 0 -alarm_system%1:06:00:: 02694426 1 0 -alarmed%5:00:00:afraid:00 00078851 1 1 -alarming%3:00:00:: 00193015 1 0 -alarmingly%4:02:00:: 00005674 1 1 -alarmism%1:10:00:: 07224684 1 0 -alarmist%1:18:00:: 09781504 1 0 -alarum%1:10:00:: 06803157 1 0 -alary%5:00:00:winged:00 02567117 1 0 -alas%4:02:00:: 00042769 1 0 -alaska%1:15:00:: 09055015 1 15 -alaska_cedar%1:20:00:: 11635830 1 0 -alaska_cod%1:05:00:: 02522866 1 0 -alaska_crab%1:05:00:: 01981276 2 0 -alaska_crab%1:13:00:: 07788435 1 0 -alaska_fur_seal%1:05:00:: 02077787 1 0 -alaska_king_crab%1:05:00:: 01981276 2 0 -alaska_king_crab%1:13:00:: 07788435 1 0 -alaska_native%1:18:00:: 09741074 1 0 -alaska_peninsula%1:17:00:: 09192122 1 0 -alaska_range%1:17:00:: 09192280 1 0 -alaska_rein_orchid%1:20:00:: 12068615 1 0 -alaska_standard_time%1:28:00:: 15132865 1 0 -alaskan%1:18:00:: 09740954 1 0 -alaskan%3:01:00:: 02609503 1 0 -alaskan_brown_bear%1:05:00:: 02132788 1 0 -alaskan_king_crab%1:05:00:: 01981276 2 0 -alaskan_king_crab%1:13:00:: 07788435 1 0 -alaskan_malamute%1:05:00:: 02110063 1 0 -alaskan_native%1:18:00:: 09741074 1 0 -alaskan_pipeline%1:06:00:: 02694776 1 0 -alastrim%1:26:00:: 14124688 1 0 -alate%5:00:00:winged:00 02567281 1 0 -alated%5:00:00:winged:00 02567281 1 0 -alauda%1:05:00:: 01527774 1 0 -alauda_arvensis%1:05:00:: 01527917 1 0 -alaudidae%1:05:00:: 01527480 1 0 -alb%1:06:00:: 02694966 1 0 -albacore%1:05:00:: 02627037 2 0 -albacore%1:13:00:: 07780874 1 0 -alban_berg%1:18:00:: 10846089 1 0 -albania%1:15:00:: 08704822 1 0 -albanian%1:10:00:: 06942252 2 0 -albanian%1:18:00:: 09689958 1 0 -albanian%3:01:00:: 02609813 1 0 -albanian_capital%1:15:00:: 08705091 1 0 -albanian_monetary_unit%1:23:00:: 13684503 1 0 -albany%1:15:00:: 09118313 1 2 -albany%1:15:01:: 09076533 2 0 -albatrellus%1:20:00:: 13050555 1 0 -albatrellus_dispansus%1:20:00:: 13050705 1 0 -albatrellus_ovinus%1:20:00:: 13050940 1 0 -albatross%1:05:00:: 02058221 2 0 -albatross%1:09:00:: 05689645 1 0 -albedo%1:24:00:: 13820432 1 0 -albee%1:18:00:: 10811228 1 0 -alben_barkley%1:18:00:: 10834690 1 0 -alben_william_barkley%1:18:00:: 10834690 1 0 -albers%1:18:00:: 10811352 1 0 -albers-schonberg_disease%1:26:00:: 14210119 1 0 -albert%1:18:00:: 10811540 1 0 -albert_abraham_michelson%1:18:00:: 11178393 1 0 -albert_bruce_sabin%1:18:00:: 11277279 1 0 -albert_camus%1:18:00:: 10881092 1 0 -albert_edward%1:18:00:: 10951459 1 0 -albert_einstein%1:18:00:: 10954498 1 0 -albert_francis_charles_augustus_emmanuel%1:18:00:: 10811540 1 0 -albert_gore_jr.%1:18:00:: 11008313 1 0 -albert_michelson%1:18:00:: 11178393 1 0 -albert_sabin%1:18:00:: 11277279 1 0 -albert_schweitzer%1:18:00:: 11287964 1 0 -albert_speer%1:18:00:: 11309958 1 0 -albert_szent-gyorgyi%1:18:00:: 11328085 1 0 -albert_von_szent-gyorgyi%1:18:00:: 11328085 1 0 -alberta%1:15:00:: 08822202 1 0 -alberti%1:18:00:: 10811708 1 0 -alberto_giacometti%1:18:00:: 10997553 1 0 -albescent%5:00:00:white:01 00393422 1 0 -albigenses%1:14:00:: 08085159 1 0 -albigensian%3:01:00:: 02609673 1 0 -albigensianism%1:09:00:: 06227708 1 0 -albinal%3:01:00:: 02609984 1 0 -albinic%3:01:00:: 02609984 1 0 -albinism%1:26:00:: 14152279 1 0 -albinistic%3:01:00:: 02609984 1 0 -albino%1:18:00:: 09781650 1 0 -albino_luciano%1:18:00:: 11087612 1 0 -albinotic%3:01:00:: 02609984 1 0 -albion%1:15:00:: 08872936 1 0 -albite%1:27:00:: 14865533 1 0 -albitic%3:01:00:: 02610260 1 0 -albizia%1:20:00:: 11759224 1 0 -albizia_julibrissin%1:20:00:: 11759404 1 0 -albizia_lebbeck%1:20:00:: 11759609 1 0 -albizia_saman%1:20:00:: 11759853 1 0 -albizzia%1:20:00:: 11759224 1 0 -albizzia_julibrissin%1:20:00:: 11759404 1 0 -albizzia_lebbeck%1:20:00:: 11759609 1 0 -alborg%1:15:00:: 08762243 1 0 -albrecht_durer%1:18:00:: 10945977 1 0 -albrecht_eusebius_wenzel_von_wallenstein%1:18:00:: 11372054 1 0 -albright's_disease%1:26:00:: 14366486 1 0 -albuca%1:20:00:: 12429770 1 0 -albuginaceae%1:20:00:: 12981595 1 0 -albuginea%1:08:00:: 05606528 1 0 -albugo%1:20:00:: 12981791 1 0 -albula%1:05:00:: 02542283 1 0 -albula_vulpes%1:05:00:: 02542432 1 0 -albulidae%1:05:00:: 02542162 1 0 -album%1:06:00:: 02695079 2 1 -album%1:10:00:: 06591815 1 2 -albumen%1:13:00:: 07841037 2 0 -albumen%1:27:00:: 14731509 1 0 -albumin%1:27:00:: 14731509 1 9 -albuminoid%1:27:00:: 15026716 1 0 -albuminous%3:01:00:: 02610364 1 0 -albuminuria%1:26:00:: 14265958 1 0 -albuminuric%3:01:00:: 02610486 1 0 -albuquerque%1:15:00:: 09115315 1 0 -albuterol%1:06:00:: 02695321 1 0 -alca%1:05:00:: 02045705 1 0 -alca_torda%1:05:00:: 02045864 1 0 -alcaeus%1:18:00:: 10811900 1 0 -alcahest%1:27:00:: 15048463 1 0 -alcaic%1:10:00:: 06378104 1 0 -alcaic_verse%1:10:00:: 06378104 1 0 -alcalde%1:18:00:: 09781804 1 0 -alcalescent%5:00:00:alkaline:00 00026051 1 0 -alcapton%1:27:00:: 14585048 1 0 -alcaptonuria%1:26:00:: 14084709 1 0 -alcazar%1:06:00:: 02695627 1 0 -alcea%1:20:00:: 12173407 1 0 -alcea_rosea%1:20:00:: 12173912 1 0 -alcedinidae%1:05:00:: 01826998 1 0 -alcedo%1:05:00:: 01827658 1 0 -alcedo_atthis%1:05:00:: 01827793 1 0 -alcelaphus%1:05:00:: 02421962 1 0 -alces%1:05:00:: 02432867 1 0 -alces_alces%1:05:00:: 02432983 1 0 -alchemic%3:01:00:: 02610603 1 0 -alchemical%3:01:00:: 02610603 1 0 -alchemise%2:30:00:: 00139586 1 0 -alchemist%1:18:00:: 09781921 1 0 -alchemistic%3:01:00:: 02610761 1 0 -alchemistical%3:01:00:: 02610761 1 0 -alchemize%2:30:00:: 00139586 1 0 -alchemy%1:09:00:: 05778749 2 0 -alchemy%1:24:00:: 13840958 1 0 -alcibiades%1:18:00:: 10812047 1 0 -alcidae%1:05:00:: 02045024 1 0 -alcides%1:18:00:: 09578005 1 0 -alcohol%1:13:00:: 07884567 1 3 -alcohol%1:27:00:: 14708720 2 0 -alcohol-dependent%5:00:00:addicted:00 00047243 1 0 -alcohol-in-glass_thermometer%1:06:00:: 02695762 1 0 -alcohol-soluble%5:00:00:soluble:01 02265306 1 0 -alcohol_abuse%1:04:00:: 00948064 1 0 -alcohol_addiction%1:26:00:: 14064644 1 0 -alcohol_amnestic_disorder%1:26:00:: 14395597 1 0 -alcohol_group%1:27:00:: 14595076 1 0 -alcohol_radical%1:27:00:: 14595076 1 0 -alcohol_thermometer%1:06:00:: 02695762 1 0 -alcoholic%1:18:00:: 09782167 1 0 -alcoholic%3:00:00:: 01158596 1 0 -alcoholic%5:00:00:addicted:00 00047243 2 0 -alcoholic_abuse%1:04:00:: 00948064 1 0 -alcoholic_beverage%1:13:00:: 07884567 1 0 -alcoholic_dementia%1:26:00:: 14395597 1 0 -alcoholic_drink%1:13:00:: 07884567 1 0 -alcoholics_anonymous%1:14:00:: 08010191 1 0 -alcoholise%2:30:00:: 00139729 2 0 -alcoholise%2:30:01:: 00139908 1 0 -alcoholism%1:16:01:: 09181993 2 0 -alcoholism%1:26:00:: 14064644 1 0 -alcoholism_abuse%1:04:00:: 00948064 1 0 -alcoholize%2:30:00:: 00139729 3 0 -alcoholize%2:30:01:: 00139908 2 0 -alcoholize%2:34:00:: 01176734 1 0 -alcott%1:18:00:: 10812225 1 0 -alcove%1:06:00:: 02696048 1 0 -alcyonacea%1:05:00:: 01915290 1 0 -alcyonaria%1:05:00:: 01915093 1 0 -alcyone%1:18:00:: 09486639 1 0 -aldactone%1:27:00:: 14754192 1 0 -aldebaran%1:17:00:: 09192462 1 0 -aldehyde%1:27:00:: 14584765 1 0 -aldehyde-alcohol%1:27:00:: 14711799 1 0 -aldehyde_group%1:27:00:: 14595176 1 0 -aldehyde_radical%1:27:00:: 14595176 1 0 -aldehydic%3:01:00:: 02610917 1 0 -alder%1:20:00:: 12284262 2 0 -alder%1:20:02:: 12284665 1 0 -alder-leaved_serviceberry%1:20:00:: 12623818 1 0 -alder_blight%1:26:00:: 14215908 1 0 -alder_buckthorn%1:20:00:: 13142380 1 0 -alder_dogwood%1:20:00:: 13142380 1 0 -alder_fly%1:05:00:: 02266864 1 0 -alder_tree%1:20:00:: 12284262 1 0 -alderfly%1:05:00:: 02266864 1 0 -alderleaf_juneberry%1:20:00:: 12623818 1 0 -alderman%1:18:00:: 09782397 1 1 -aldermanic%3:01:00:: 03040103 1 0 -aldermanly%3:01:00:: 03040103 1 0 -aldohexose%1:27:00:: 14710501 1 0 -aldol%1:27:00:: 14711799 1 0 -aldol_reaction%1:22:00:: 13429194 1 0 -aldomet%1:06:00:: 03755991 1 0 -aldose%1:27:00:: 14710662 1 0 -aldosterone%1:27:00:: 14752511 1 0 -aldosteronism%1:26:00:: 14117317 1 0 -aldous_huxley%1:18:00:: 11069746 1 0 -aldous_leonard_huxley%1:18:00:: 11069746 1 0 -aldrovanda%1:20:00:: 12783173 1 0 -aldrovanda_vesiculosa%1:20:00:: 12783316 1 0 -ale%1:13:00:: 07889510 1 0 -ale_drinker%1:18:00:: 09846894 1 0 -aleatory%5:00:00:unpredictable:00 01842198 1 0 -aleatory_contract%1:10:00:: 06522119 1 0 -alec_guinness%1:18:00:: 11019269 1 0 -alecost%1:20:00:: 12021499 1 0 -alectis%1:05:00:: 02577823 1 0 -alectis_ciliaris%1:05:00:: 02577952 1 0 -alecto%1:18:00:: 09506598 1 0 -alectoria%1:20:00:: 12990407 1 0 -alectoris%1:05:00:: 01807988 1 0 -alectoris_graeca%1:05:00:: 01808291 1 0 -alectoris_ruffa%1:05:00:: 01808140 1 0 -alectura%1:05:00:: 01801753 1 0 -alectura_lathami%1:05:00:: 01801876 1 0 -alee%4:02:00:: 00270218 1 0 -alehoof%1:20:00:: 12847374 1 0 -alehouse%1:06:00:: 02696165 1 0 -aleksandr_aleksandrovich_blok%1:18:00:: 10853628 1 0 -aleksandr_borodin%1:18:00:: 10858333 1 0 -aleksandr_feodorovich_kerensky%1:18:00:: 11102144 1 0 -aleksandr_i._solzhenitsyn%1:18:00:: 11308120 1 0 -aleksandr_mikjailovich_prokhorov%1:18:00:: 11246718 1 0 -aleksandr_nikolayevich_scriabin%1:18:00:: 11289830 1 0 -aleksandr_pavlovich%1:18:00:: 10812550 1 0 -aleksandr_porfirevich_borodin%1:18:00:: 10858333 1 0 -aleksandr_prokhorov%1:18:00:: 11246718 1 0 -aleksandr_scriabin%1:18:00:: 11289830 1 0 -aleksandr_sergeyevich_pushkin%1:18:00:: 11249191 1 0 -aleksandr_solzhenitsyn%1:18:00:: 11308120 1 0 -aleksey_maksimovich_peshkov%1:18:00:: 11008870 1 0 -aleksey_maximovich_peshkov%1:18:00:: 11008870 1 0 -alembic%1:06:00:: 02696246 1 0 -alendronate%1:06:00:: 02696384 1 0 -alep%1:15:00:: 09034286 1 0 -aleph%1:10:00:: 06836714 1 0 -aleph-nought%1:23:00:: 13753894 1 0 -aleph-null%1:23:00:: 13753894 1 0 -aleph-zero%1:23:00:: 13753894 1 0 -alepisaurus%1:05:00:: 02544086 1 0 -aleppo%1:15:00:: 09034286 1 0 -aleppo_boil%1:26:00:: 14181187 1 0 -aleppo_grass%1:20:00:: 12138905 1 0 -alert%1:10:00:: 07224774 2 0 -alert%1:10:01:: 06803157 3 0 -alert%1:26:00:: 14031660 1 0 -alert%2:32:00:: 00872414 1 9 -alert%3:00:00:: 00091311 1 7 -alert%5:00:00:aware:00 00190653 3 0 -alert%5:00:00:energetic:00 00874226 2 0 -alerting%1:10:00:: 07224774 2 0 -alerting%1:26:00:: 14036043 1 1 -alertly%4:02:00:: 00270292 1 1 -alertness%1:07:00:: 04664628 3 0 -alertness%1:09:00:: 05705722 1 2 -alertness%1:26:00:: 14036043 2 0 -alessandro_di_mariano_dei_filipepi%1:18:00:: 10859012 1 0 -alessandro_farnese%1:18:00:: 11226126 1 0 -alessandro_manzoni%1:18:00:: 11155331 1 0 -alethic_logic%1:09:00:: 06166046 1 0 -aletris%1:20:00:: 12429942 1 0 -aletris_aurea%1:20:00:: 12430675 1 0 -aletris_farinosa%1:20:00:: 12430471 1 0 -aletta_jacobs%1:18:00:: 11077762 1 0 -aleuria_aurantia%1:20:00:: 13029760 1 0 -aleurites%1:20:00:: 12927354 1 0 -aleurites_fordii%1:20:00:: 12927758 1 0 -aleurites_moluccana%1:20:00:: 12927494 1 0 -aleurone%1:27:00:: 14729953 1 0 -aleuronic%3:01:00:: 02611013 1 0 -aleut%1:10:00:: 06918312 3 0 -aleut%1:14:00:: 08488411 2 0 -aleut%1:18:00:: 09782589 1 0 -aleutian%1:18:00:: 09782589 1 0 -aleutian%3:01:00:: 02604802 1 0 -aleutian_islands%1:15:00:: 08835675 1 0 -aleutians%1:15:00:: 08835675 1 0 -aleve%1:06:00:: 03808144 1 0 -alewife%1:05:00:: 02531114 2 0 -alewife%1:13:00:: 07785631 1 0 -alex_boncayao_brigade%1:14:00:: 08011266 1 0 -alex_haley%1:18:00:: 11024033 1 0 -alexander%1:18:00:: 10812360 2 0 -alexander%1:20:00:: 12945828 1 0 -alexander_alexandrovich_blok%1:18:00:: 10853628 1 0 -alexander_archipelago%1:15:00:: 09057021 1 0 -alexander_bell%1:18:00:: 10842213 1 0 -alexander_calder%1:18:00:: 10879009 1 0 -alexander_fleming%1:18:00:: 10972825 1 0 -alexander_graham_bell%1:18:00:: 10842213 1 0 -alexander_hamilton%1:18:00:: 11025668 1 0 -alexander_i%1:18:00:: 10812550 1 0 -alexander_ii%1:18:00:: 10812800 1 0 -alexander_iii%1:18:00:: 10813049 1 0 -alexander_isayevich_solzhenitsyn%1:18:00:: 11308120 1 0 -alexander_melville_bell%1:18:00:: 10842575 1 0 -alexander_pope%1:18:00:: 11242743 1 0 -alexander_pushkin%1:18:00:: 11249191 1 0 -alexander_selcraig%1:18:00:: 11291824 1 0 -alexander_selkirk%1:18:00:: 11291824 1 0 -alexander_the_great%1:18:00:: 10812360 1 1 -alexander_the_liberator%1:18:00:: 10812800 1 0 -alexander_vi%1:18:00:: 10813204 1 0 -alexander_wilson%1:18:00:: 11392082 1 0 -alexander_woollcott%1:18:00:: 11396943 1 0 -alexanders%1:20:00:: 12945828 1 0 -alexandre_dumas%1:18:00:: 10944902 1 0 -alexandre_emile_jean_yersin%1:18:00:: 11402801 1 0 -alexandre_gustave_eiffel%1:18:00:: 10954039 1 0 -alexandre_yersin%1:18:00:: 11402801 1 0 -alexandria%1:15:00:: 08898187 2 0 -alexandria%1:15:01:: 09091285 1 0 -alexandria_senna%1:20:00:: 12499979 1 0 -alexandrian%1:18:00:: 09782730 1 0 -alexandrian%3:01:00:: 03028338 1 0 -alexandrian_laurel%1:20:00:: 12365462 1 0 -alexandrian_senna%1:20:00:: 12499979 1 0 -alexandrine%1:10:00:: 06348373 1 0 -alexandrite%1:27:00:: 14715679 1 0 -alexia%1:26:00:: 14099050 1 0 -alexic%1:18:00:: 09782855 1 0 -alexic%3:01:00:: 03040264 1 0 -alexis_carrel%1:18:00:: 10883688 1 0 -alexis_charles_henri_maurice_de_tocqueville%1:18:00:: 11344337 1 0 -alexis_de_tocqueville%1:18:00:: 11344337 1 0 -aleyrodes%1:05:00:: 02246487 1 0 -aleyrodidae%1:05:00:: 02246284 1 0 -alfalfa%1:13:00:: 07801779 2 0 -alfalfa%1:20:00:: 12549420 1 0 -alfalfa_sprout%1:13:00:: 07719756 1 0 -alfilaria%1:20:00:: 12688903 1 0 -alfileria%1:20:00:: 12688903 1 0 -alfonso_borgia%1:18:00:: 10880024 1 0 -alfred%1:18:00:: 10813374 1 0 -alfred_alistair_cooke%1:18:00:: 10908756 1 0 -alfred_bernhard_nobel%1:18:00:: 11208688 1 0 -alfred_binet%1:18:00:: 10851282 1 0 -alfred_charles_kinsey%1:18:00:: 11105609 1 0 -alfred_charles_william_harmsworth%1:18:00:: 11029298 1 0 -alfred_damon_runyon%1:18:00:: 11273907 1 0 -alfred_de_musset%1:18:00:: 11198094 1 0 -alfred_dreyfus%1:18:00:: 10943405 1 0 -alfred_edward_housman%1:18:00:: 11061734 1 0 -alfred_edward_woodley_mason%1:18:00:: 11162915 1 0 -alfred_eisenstaedt%1:18:00:: 10955282 1 0 -alfred_habdank_skarbek_korzybski%1:18:00:: 11109563 1 0 -alfred_hawthorne%1:18:00:: 11049938 1 0 -alfred_hitchcock%1:18:00:: 11052299 1 0 -alfred_joseph_hitchcock%1:18:00:: 11052299 1 0 -alfred_kastler%1:18:00:: 11097525 1 0 -alfred_korzybski%1:18:00:: 11109563 1 0 -alfred_kroeber%1:18:00:: 11110917 1 0 -alfred_krupp%1:18:00:: 11111845 1 0 -alfred_lord_tennyson%1:18:00:: 11335330 1 0 -alfred_lothar_wegener%1:18:00:: 11379536 1 0 -alfred_louis_kroeber%1:18:00:: 11110917 1 0 -alfred_lunt%1:18:00:: 11145199 1 0 -alfred_nobel%1:18:00:: 11208688 1 0 -alfred_north_whitehead%1:18:00:: 11384566 1 0 -alfred_noyes%1:18:00:: 11210291 1 0 -alfred_russel_wallace%1:18:00:: 11371443 1 0 -alfred_stieglitz%1:18:00:: 11318348 1 0 -alfred_tennyson%1:18:00:: 11335330 1 0 -alfred_thayer_mahan%1:18:00:: 11149483 1 0 -alfred_the_great%1:18:00:: 10813374 1 0 -alfresco%4:02:00:: 00110659 1 0 -alfresco%5:00:00:outdoor:00 01692512 1 1 -alga%1:05:00:: 01397114 1 0 -algae%1:05:00:: 01397114 1 6 -algal%3:01:00:: 02832586 1 0 -algarobilla%1:20:00:: 11766046 1 0 -algarroba%1:20:00:: 12493208 2 0 -algarroba%1:20:01:: 11765859 4 0 -algarroba%1:20:02:: 12493426 1 0 -algarroba%1:20:03:: 11766046 3 0 -algarroba_bean%1:20:00:: 12493426 1 0 -algarrobilla%1:20:00:: 11766046 1 0 -algebra%1:09:00:: 06012726 1 0 -algebraic%3:01:00:: 02854350 1 0 -algebraic_language%1:10:00:: 06898794 1 0 -algebraic_number%1:23:00:: 13730902 1 0 -algebraical%3:01:00:: 02854350 1 0 -algebraically%4:02:00:: 00131550 1 4 -algebraist%1:18:00:: 09784043 1 0 -alger%1:18:00:: 10813527 1 0 -algeria%1:15:00:: 08705397 1 0 -algerian%1:18:00:: 09690083 1 0 -algerian%3:01:00:: 02977826 1 2 -algerian_capital%1:15:00:: 08706058 1 0 -algerian_centime%1:23:00:: 13668632 1 0 -algerian_dinar%1:23:00:: 13668491 1 0 -algerian_monetary_unit%1:23:00:: 13668380 1 0 -algerie%1:15:00:: 08705397 1 0 -algeripithecus%1:05:00:: 02479482 1 0 -algeripithecus_minutus%1:05:00:: 02479634 1 0 -algernon_charles_swinburne%1:18:00:: 11327163 1 0 -algid%5:00:00:cold:01 01251958 1 0 -algidity%1:26:00:: 14204441 1 0 -algiers%1:15:00:: 08706058 1 0 -algin%1:27:00:: 14900454 1 0 -alginic_acid%1:27:00:: 14900454 1 0 -algoid%3:01:00:: 02611112 1 0 -algol%1:10:00:: 06901764 2 0 -algol%1:17:00:: 09192566 1 0 -algolagnia%1:12:00:: 07493682 1 0 -algolagnic%3:01:00:: 02611187 1 0 -algology%1:09:00:: 06074507 1 0 -algometer%1:06:00:: 02696569 1 0 -algometric%3:01:00:: 02611290 1 0 -algometrical%3:01:00:: 02611290 1 0 -algometry%1:04:00:: 00998196 1 0 -algonkian%1:10:00:: 06908159 2 0 -algonkian%1:18:00:: 09646432 1 0 -algonkian%3:01:00:: 02611442 1 0 -algonkin%1:10:00:: 06908159 2 0 -algonkin%1:18:00:: 09646432 1 0 -algonquian%1:10:00:: 06906971 2 0 -algonquian%1:18:00:: 09646608 1 0 -algonquian%3:01:00:: 02611442 1 0 -algonquian_language%1:10:00:: 06906971 1 0 -algonquin%1:10:00:: 06906971 2 0 -algonquin%1:18:00:: 09646608 1 0 -algonquin%3:01:00:: 02611442 1 0 -algophilia%1:12:00:: 07493682 1 0 -algophobia%1:26:00:: 14382871 1 0 -algophobic%5:00:00:afraid:00 00078942 1 0 -algorism%1:09:00:: 06004599 2 0 -algorism%1:10:00:: 06810691 1 0 -algorithm%1:09:00:: 05847438 1 0 -algorithm_error%1:11:00:: 07300781 1 0 -algorithmic%3:00:00:: 00092691 1 0 -algorithmic_language%1:10:00:: 06898972 1 0 -algorithmic_program%1:09:00:: 05847438 1 0 -algorithmic_rule%1:09:00:: 05847438 1 0 -algren%1:18:00:: 10813711 1 0 -alhacen%1:18:00:: 10813986 1 0 -alhambra%1:06:00:: 02696669 1 0 -alhazen%1:18:00:: 10813986 1 0 -ali%1:18:00:: 10814328 2 0 -ali%1:18:01:: 10814574 1 0 -ali_baba%1:18:00:: 09782946 1 0 -alias%1:10:00:: 06338158 1 0 -alias%4:02:00:: 00270446 1 0 -alibi%1:10:00:: 06741099 1 2 -alibi%1:10:01:: 06741305 2 0 -alibi%2:32:00:: 00893741 1 0 -alice-josephine_pons%1:18:00:: 11242321 1 0 -alice_b._toklas%1:18:00:: 11345017 1 0 -alice_hamilton%1:18:00:: 11025926 1 0 -alice_malsenior_walker%1:18:00:: 11371125 1 0 -alice_paul%1:18:00:: 11226614 1 0 -alice_walker%1:18:00:: 11371125 1 0 -alicia_alonso%1:18:00:: 10815343 1 0 -alicyclic_compound%1:27:00:: 14601178 1 0 -alidad%1:06:00:: 02696843 2 0 -alidad%1:06:01:: 02697022 1 0 -alidade%1:06:00:: 02696843 2 0 -alidade%1:06:01:: 02697022 1 0 -alien%1:18:00:: 10103485 1 2 -alien%1:18:01:: 10661002 2 0 -alien%1:18:02:: 09484465 3 0 -alien%2:37:00:: 01823528 2 0 -alien%2:40:00:: 02221010 1 0 -alien%5:00:00:extrinsic:00 01349927 1 3 -alien%5:00:00:foreign:01 01035007 2 2 -alien_absconder%1:18:00:: 09783130 1 0 -alienable%3:00:00:: 00093275 1 0 -alienage%1:07:00:: 04799789 1 0 -alienate%2:37:00:: 01823528 1 3 -alienate%2:37:01:: 01823888 3 0 -alienate%2:40:00:: 02221010 2 0 -alienated%5:00:00:unloved:00 01463326 2 0 -alienated%5:00:00:unoriented:00 01683908 1 1 -alienating%5:00:00:antagonistic:01 00760783 1 0 -alienation%1:04:00:: 00035891 4 0 -alienation%1:04:01:: 01108150 3 0 -alienation%1:12:00:: 07502387 1 2 -alienation%1:26:00:: 14415773 2 0 -alienation_of_affection%1:04:00:: 00734107 1 0 -alienator%1:18:00:: 09783369 1 0 -alienee%1:18:00:: 09783537 1 0 -alienism%1:07:00:: 04799789 2 0 -alienism%1:09:00:: 06056787 1 0 -alienist%1:18:00:: 09783653 1 0 -alienor%1:18:00:: 09783776 1 0 -aliform%5:00:00:winged:00 02567117 1 0 -alight%2:38:00:: 01978576 2 0 -alight%2:38:01:: 01978700 1 1 -alight%5:00:00:lighted:00 00475308 1 0 -align%2:30:00:: 00464321 1 2 -align%2:30:01:: 00466053 4 0 -align%2:31:00:: 00733632 3 1 -align%2:42:00:: 02658867 2 1 -aligned%3:00:01:: 00731804 1 0 -aligned%5:00:00:straight:01 02311190 2 0 -aligning%5:00:00:orienting:00 01684811 1 0 -alignment%1:04:00:: 01000068 4 0 -alignment%1:07:00:: 05077146 2 2 -alignment%1:11:00:: 07415167 3 0 -alignment%1:14:00:: 08293982 1 2 -alike%3:00:00:: 01410606 1 2 -alike%4:02:00:: 00069672 1 2 -alike%4:02:01:: 00069603 2 0 -alikeness%1:07:00:: 04744814 1 0 -aliment%1:13:00:: 07570720 1 0 -aliment%2:34:00:: 01204191 1 0 -alimental%5:00:00:wholesome:00 02557719 1 0 -alimentary%5:00:00:wholesome:00 02557719 1 0 -alimentary_canal%1:08:00:: 05532225 1 0 -alimentary_paste%1:13:00:: 07698915 1 0 -alimentary_tract%1:08:00:: 05532225 1 0 -alimentary_tract_smear%1:08:00:: 05265417 1 0 -alimentation%1:04:00:: 01057759 2 0 -alimentation%1:13:00:: 07570720 1 0 -alimentative%3:01:00:: 02611694 1 0 -alimony%1:21:00:: 13283620 1 0 -aline%2:30:00:: 00464321 1 0 -alinement%1:14:00:: 08293982 1 0 -aliphatic%5:00:00:acyclic:02 00677448 1 0 -aliphatic_compound%1:27:00:: 14601294 1 0 -aliquant%1:23:00:: 13734816 1 0 -aliquant_part%1:23:00:: 13734816 1 0 -aliquot%1:23:00:: 13734629 1 1 -aliquot%5:00:00:fractional:00 00516887 1 0 -aliquot_part%1:23:00:: 13734629 1 0 -alir%1:14:00:: 08016900 1 0 -alisma%1:20:00:: 12612020 1 0 -alisma_plantago-aquatica%1:20:00:: 12612170 1 0 -alismales%1:20:00:: 12610933 1 0 -alismataceae%1:20:00:: 12611815 1 0 -alismatidae%1:20:00:: 11668340 1 0 -alistair_cooke%1:18:00:: 10908756 1 0 -aliterate%1:18:00:: 09783884 1 0 -aliterate_person%1:18:00:: 09783884 1 0 -alive%3:00:01:: 00094448 1 14 -alive%3:00:04:: 00118567 3 0 -alive%5:00:00:active:05 00041488 7 0 -alive%5:00:00:aware:00 00190653 6 0 -alive%5:00:00:existent:00 00927373 5 0 -alive%5:00:00:lively:00 00805115 2 3 -alive%5:00:00:sensitive:02 02106366 4 0 -aliveness%1:07:00:: 05005447 2 0 -aliveness%1:26:00:: 13961642 1 0 -aliyah%1:04:00:: 00056551 2 0 -aliyah%1:10:00:: 06696991 1 0 -alizarin%1:27:00:: 14986277 1 0 -alizarin_carmine%1:27:00:: 14986438 1 0 -alizarin_crimson%1:27:00:: 14986438 1 1 -alizarin_red%1:27:00:: 14986438 1 0 -alizarin_yellow%1:27:00:: 14754705 1 0 -alizarine%1:27:00:: 14986277 1 0 -alizarine_red%1:07:00:: 04963307 1 0 -alka-seltzer%1:27:00:: 14776924 1 0 -alkahest%1:27:00:: 15048463 1 0 -alkahestic%3:01:00:: 02611803 1 0 -alkalemia%1:26:00:: 14020936 1 0 -alkalescent%5:00:00:alkaline:00 00026051 1 0 -alkali%1:27:00:: 14618253 1 3 -alkali%1:27:01:: 14712036 2 0 -alkali_bee%1:05:00:: 02210921 1 3 -alkali_grass%1:20:00:: 12467018 1 0 -alkali_metal%1:27:00:: 14712224 1 0 -alkali_poisoning%1:26:00:: 14510104 1 0 -alkalic%3:00:00:: 00025728 1 0 -alkalify%2:30:00:: 00265094 1 0 -alkalimetry%1:04:00:: 00648087 1 0 -alkaline%3:00:00:: 00025728 1 2 -alkaline-earth_metal%1:27:00:: 14712489 1 0 -alkaline-loving%3:00:00:: 00027074 1 0 -alkaline_earth%1:27:00:: 14712489 1 0 -alkaline_metal%1:27:00:: 14712224 1 0 -alkalinise%2:30:00:: 00134737 2 0 -alkalinise%2:30:01:: 00134898 1 0 -alkalinity%1:07:00:: 05039709 1 0 -alkalinize%2:30:00:: 00134737 2 0 -alkalinize%2:30:01:: 00134898 1 0 -alkalinuria%1:26:00:: 14021118 1 0 -alkalise%2:30:00:: 00265094 1 0 -alkaliser%1:27:00:: 14778019 1 0 -alkalize%2:30:00:: 00265094 1 0 -alkalizer%1:27:00:: 14778019 1 0 -alkaloid%1:27:00:: 14712692 1 0 -alkaloidal%3:01:00:: 02611943 1 0 -alkalosis%1:26:00:: 14021266 1 0 -alkalotic%3:01:00:: 02612058 1 0 -alkaluria%1:26:00:: 14021118 1 0 -alkane%1:27:00:: 14951377 1 0 -alkane_series%1:27:00:: 14951377 1 0 -alkanet%1:20:00:: 12817694 1 0 -alkapton%1:27:00:: 14585048 1 0 -alkaptonuria%1:26:00:: 14084709 1 0 -alkene%1:27:00:: 14713120 1 0 -alkeran%1:06:00:: 03743577 1 0 -alky%1:18:00:: 09782167 1 0 -alkyd%1:27:00:: 14902500 1 0 -alkyd_resin%1:27:00:: 14902500 1 0 -alkyl%1:27:00:: 14617189 1 0 -alkyl_group%1:27:00:: 14617189 1 0 -alkyl_halide%1:27:00:: 14601646 1 0 -alkyl_radical%1:27:00:: 14617189 1 0 -alkylating_agent%1:06:00:: 02697438 1 0 -alkylbenzene%1:27:00:: 14601505 1 0 -alkylbenzenesulfonate%1:27:00:: 14713247 1 1 -alkylic%3:01:00:: 02612184 1 0 -alkyne%1:27:00:: 14600742 1 0 -all%3:00:00:: 02269286 1 247 -all%4:02:00:: 00008007 1 26 -all%5:00:00:complete:00 00521584 2 3 -all-around%5:00:00:comprehensive:00 00526541 1 0 -all-day_sucker%1:13:00:: 07607605 1 0 -all-devouring%5:00:00:omnivorous:00 00315254 1 0 -all-embracing%5:00:00:comprehensive:00 00526062 1 0 -all-encompassing%5:00:00:comprehensive:00 00526062 1 0 -all-fired%4:02:00:: 00025144 1 0 -all-fired%5:00:00:immoderate:00 01533659 1 1 -all-important%5:00:00:important:00 01276150 1 2 -all-inclusive%5:00:00:comprehensive:00 00526062 1 0 -all-knowing%5:00:00:wise:00 02569454 1 1 -all-mains%5:00:00:adaptable:00 01027832 1 0 -all-metal%5:00:00:metallic:00 01527930 1 0 -all-night%5:00:00:long:02 01441530 1 0 -all-or-none%5:00:00:complete:00 00521692 1 0 -all-or-none_law%1:09:00:: 05874017 1 0 -all-or-nothing%5:00:00:complete:00 00521692 1 0 -all-out%5:00:00:complete:00 00521811 1 2 -all-powerful%5:00:00:powerful:00 01826186 1 0 -all-purpose%5:00:00:general:00 01102058 1 0 -all-round%5:00:00:comprehensive:00 00526541 1 1 -all-rounder%1:18:00:: 09784870 1 0 -all-terrain_bike%1:06:00:: 03792782 1 0 -all-time%5:00:00:incomparable:00 00505086 1 1 -all-victorious%5:00:00:unconquerable:00 00570512 1 1 -all-weather%5:00:00:unrestricted:00 02003023 1 1 -all_along%4:02:00:: 00068215 1 5 -all_arounder%1:18:00:: 09784870 1 0 -all_at_once%4:02:00:: 00151957 2 1 -all_at_once%4:02:01:: 00461834 1 1 -all_clear%1:10:00:: 06804097 1 0 -all_clear%1:10:01:: 06689554 2 0 -all_day_long%4:02:00:: 00304787 1 0 -all_fools'_day%1:28:00:: 15188505 1 0 -all_fours%1:04:00:: 00489730 1 0 -all_get_out%1:23:00:: 13775319 1 0 -all_important%5:00:00:important:00 01276150 1 0 -all_in%5:00:00:tired:00 02432154 1 0 -all_in_all%4:02:00:: 00151755 1 3 -all_of_a_sudden%4:02:00:: 00151957 1 1 -all_of_a_sudden%4:02:01:: 00061677 2 1 -all_over%4:02:00:: 00025728 2 6 -all_over%4:02:01:: 00198039 1 12 -all_over%5:00:00:finished:01 01003277 1 4 -all_right%4:02:00:: 00053004 1 24 -all_right%4:02:01:: 00053152 2 9 -all_right%4:02:02:: 00015471 3 4 -all_right%5:00:00:satisfactory:00 02081114 1 10 -all_saints'_day%1:28:00:: 15195059 1 0 -all_souls'_day%1:28:00:: 15195477 1 0 -all_the_same%4:02:00:: 00027384 1 1 -all_the_time%4:02:01:: 00157000 1 8 -all_the_way%4:02:03:: 00285854 2 5 -all_the_way%4:02:04:: 00152173 3 0 -all_the_way%4:02:09:: 00152066 1 9 -all_together%4:02:00:: 00461834 1 1 -all_together%4:02:01:: 00063774 2 0 -all_told%4:02:00:: 00063630 1 2 -all_too%4:02:00:: 00250258 1 8 -alla_breve%1:10:00:: 06865049 1 0 -alla_nazimova%1:18:00:: 11201941 1 0 -allah%1:18:00:: 09538544 1 0 -allamanda%1:20:00:: 11769621 1 0 -allamanda_cathartica%1:20:00:: 11769803 1 0 -allantoic%3:01:00:: 02612300 1 0 -allantoid%5:00:00:rounded:00 02044642 1 0 -allantois%1:05:00:: 01473393 1 0 -allargando%5:00:00:decreasing:02 02538184 1 0 -allay%2:34:00:: 01204021 2 0 -allay%2:37:00:: 01815185 1 0 -allayer%1:18:00:: 10518349 1 0 -allegation%1:10:00:: 07236077 1 1 -allegation%1:10:01:: 06731186 2 1 -allege%2:32:00:: 01016002 1 5 -alleged%5:00:00:declared:00 00687614 1 3 -alleged%5:00:00:questionable:00 01916555 2 1 -allegedly%4:02:00:: 00154307 1 0 -allegement%1:10:00:: 06731186 1 0 -alleghany_plum%1:20:00:: 12638753 1 0 -alleghenies%1:17:00:: 09192708 1 0 -allegheny%1:17:00:: 09192973 1 0 -allegheny_chinkapin%1:20:00:: 12263738 1 0 -allegheny_mountain_spurge%1:20:00:: 12747120 1 0 -allegheny_mountains%1:17:00:: 09192708 1 0 -allegheny_plum%1:20:00:: 12638753 1 0 -allegheny_river%1:17:00:: 09192973 1 0 -allegheny_spurge%1:20:00:: 12747120 1 0 -allegheny_vine%1:20:00:: 11909864 1 0 -allegiance%1:04:00:: 01206153 1 1 -allegiance%1:07:00:: 04877938 2 0 -allegiant%5:00:00:loyal:00 00961667 1 0 -allegoric%5:00:00:representative:00 01981916 1 0 -allegorical%5:00:00:representative:00 01981916 1 0 -allegorically%4:02:00:: 00135198 1 0 -allegorise%2:30:00:: 00135285 2 0 -allegorise%2:31:00:: 00624263 1 0 -allegoriser%1:18:00:: 09784160 1 0 -allegorize%2:30:00:: 00135285 2 0 -allegorize%2:31:00:: 00624263 1 0 -allegorizer%1:18:00:: 09784160 1 0 -allegory%1:10:00:: 06372095 1 2 -allegory%1:10:01:: 06366581 3 0 -allegory%1:10:02:: 06880664 2 0 -allegretto%1:10:00:: 07039949 2 0 -allegretto%1:28:00:: 15264891 1 0 -allegretto%4:02:00:: 00270581 1 0 -allegretto%5:00:00:fast:02 00982170 1 0 -allegro%1:10:00:: 07039770 2 0 -allegro%1:28:00:: 15265021 1 0 -allegro%4:02:00:: 00270713 1 0 -allegro%5:00:00:fast:02 00982065 1 0 -allegro_con_spirito%1:28:00:: 15265135 1 1 -allele%1:08:00:: 05437785 1 0 -allelic%3:01:00:: 02612400 1 0 -allelomorph%1:08:00:: 05437785 1 0 -allelomorphic%3:01:00:: 02612400 1 0 -allemande%1:13:00:: 07840124 1 0 -allemande_sauce%1:13:00:: 07840124 1 0 -allen%1:18:00:: 10814776 3 0 -allen%1:18:01:: 10814953 2 0 -allen%1:18:02:: 10815113 1 0 -allen_ginsberg%1:18:00:: 11000660 1 0 -allen_screw%1:06:00:: 02697576 1 0 -allen_stewart_konigsberg%1:18:00:: 10814953 1 0 -allen_tate%1:18:00:: 11332423 1 0 -allen_wrench%1:06:00:: 02697675 1 0 -allentown%1:15:00:: 09134999 1 0 -allergen%1:27:00:: 14584260 1 0 -allergenic%3:01:00:: 02612531 1 0 -allergic%3:01:00:: 02612653 1 0 -allergic%5:00:00:susceptible:00 02360944 2 0 -allergic_eczema%1:26:00:: 14225346 1 0 -allergic_reaction%1:26:00:: 14532816 1 0 -allergic_rhinitis%1:26:00:: 14533937 1 0 -allergist%1:18:00:: 09784306 1 0 -allergology%1:09:00:: 06046245 1 0 -allergy%1:26:00:: 14532816 1 0 -allergy_diet%1:13:00:: 07561730 1 0 -alleviant%1:06:00:: 03879854 1 0 -alleviate%2:29:00:: 00064095 1 2 -alleviate%2:30:00:: 00518395 2 1 -alleviated%5:00:00:mitigated:00 01519465 1 0 -alleviation%1:04:00:: 00354884 2 0 -alleviation%1:12:00:: 07493280 1 0 -alleviative%5:00:00:moderating:00 01341153 1 0 -alleviator%1:06:00:: 03879854 2 0 -alleviator%1:18:00:: 09784443 1 0 -alleviatory%5:00:00:moderating:00 01341153 1 0 -alley%1:06:00:: 02697759 1 1 -alley%1:06:01:: 02882014 2 0 -alley_cat%1:05:00:: 02122510 1 1 -alleyway%1:06:00:: 02697759 1 1 -allgood%1:20:00:: 11828973 1 0 -allhallows%1:28:00:: 15195059 1 0 -allhallows_eve%1:28:00:: 15191233 1 0 -allhallowtide%1:28:00:: 15195388 1 0 -alliaceae%1:20:00:: 12430878 1 0 -alliaceous%3:01:00:: 02626634 1 0 -alliaceous%5:00:00:odorous:00 01055682 2 0 -alliaceous_plant%1:20:00:: 12431434 1 0 -alliance%1:04:00:: 01081456 5 0 -alliance%1:10:00:: 06773684 4 0 -alliance%1:14:00:: 08293982 3 0 -alliance%1:24:00:: 13792183 2 0 -alliance%1:26:00:: 14418822 1 0 -alliaria%1:20:00:: 11870212 1 0 -alliaria_officinalis%1:20:00:: 11870418 1 0 -allice%1:05:00:: 02530999 1 0 -allice_shad%1:05:00:: 02530999 1 0 -allied%3:01:01:: 02612787 3 0 -allied%3:01:02:: 02612939 2 0 -allied%5:00:00:aligned:01 00731955 5 0 -allied%5:00:00:related:01 01972070 1 1 -allied%5:00:00:united:00 02476485 4 0 -allied_command_atlantic%1:14:00:: 08174995 1 0 -allied_command_europe%1:14:00:: 08175498 1 0 -allies%1:14:00:: 08170978 3 0 -allies%1:14:01:: 08171210 2 0 -allies%1:14:02:: 08171592 1 0 -alligator%1:05:00:: 01698434 2 1 -alligator%1:27:00:: 14760447 1 1 -alligator%2:30:00:: 00337700 1 0 -alligator_clip%1:06:00:: 02915904 1 0 -alligator_grass%1:20:00:: 11824747 1 0 -alligator_lizard%1:05:00:: 01689811 1 0 -alligator_mississipiensis%1:05:00:: 01698640 1 0 -alligator_pear%1:13:00:: 07764847 1 0 -alligator_sinensis%1:05:00:: 01698782 1 0 -alligator_snapper%1:05:00:: 01666585 1 0 -alligator_snapping_turtle%1:05:00:: 01666585 1 0 -alligator_weed%1:20:00:: 11824747 1 0 -alligator_wrench%1:06:00:: 02697876 1 0 -alligatored%5:00:00:rough:00 02239479 1 1 -alligatorfish%1:05:00:: 02648313 1 0 -alligatoridae%1:05:00:: 01698144 1 0 -allionia%1:20:00:: 11838266 1 0 -allionia_incarnata%1:20:00:: 11838413 1 0 -allioniaceae%1:20:00:: 11835806 1 0 -allis%1:05:00:: 02530999 1 0 -allis_shad%1:05:00:: 02530999 1 0 -alliterate%2:36:00:: 01702154 1 0 -alliteration%1:10:00:: 07097094 1 0 -alliterative%5:00:00:rhymed:00 01965849 1 0 -alliteratively%4:02:00:: 00270842 1 0 -alliterator%1:18:00:: 09784564 1 0 -allium%1:20:00:: 12431128 1 0 -allium_acuminatum%1:20:00:: 12432069 1 0 -allium_ampeloprasum%1:20:00:: 12432356 1 0 -allium_ascalonicum%1:20:00:: 12433178 1 0 -allium_canadense%1:20:00:: 12432574 1 0 -allium_carinatum%1:20:00:: 12432707 1 0 -allium_cepa%1:20:00:: 12432808 1 0 -allium_cepa_aggregatum%1:20:00:: 12433178 1 0 -allium_cepa_viviparum%1:20:00:: 12433540 1 0 -allium_cernuum%1:20:00:: 12433769 1 0 -allium_fistulosum%1:20:00:: 12433952 1 0 -allium_haematochiton%1:20:00:: 12434106 1 0 -allium_neopolitanum%1:20:00:: 12434483 1 0 -allium_paradoxum%1:20:00:: 12434634 1 0 -allium_porrum%1:20:00:: 12434239 1 0 -allium_sativum%1:20:00:: 12434775 1 0 -allium_schoenoprasum%1:20:00:: 12435152 1 0 -allium_scorodoprasum%1:20:00:: 12434985 1 0 -allium_sphaerocephalum%1:20:00:: 12435965 1 0 -allium_tricoccum%1:20:00:: 12435338 1 0 -allium_triquetrum%1:20:00:: 12436090 1 0 -allium_tuberosum%1:20:00:: 12435777 1 0 -allium_ursinum%1:20:00:: 12435649 1 0 -allium_vineale%1:20:00:: 12435486 1 0 -allmouth%1:05:00:: 02548247 1 0 -alloantibody%1:27:00:: 15029482 1 0 -allocable%5:00:00:distributive:00 00468176 1 3 -allocatable%5:00:00:distributive:00 00468176 1 0 -allocate%2:40:00:: 02234087 1 6 -allocation%1:04:00:: 01083645 2 1 -allocation%1:04:01:: 00164579 3 0 -allocation%1:21:00:: 13289467 1 1 -allocation_unit%1:23:00:: 13626942 1 0 -allocator%1:18:00:: 09784707 1 0 -allochronic%5:00:00:asynchronous:00 02379820 1 0 -allochthonous%3:00:00:: 00180496 1 0 -allocution%1:10:00:: 07239183 1 0 -allogamous%3:01:00:: 02613090 1 0 -allogamy%1:11:00:: 07437870 1 0 -allogeneic%3:00:00:: 02595829 1 0 -allograft%1:08:00:: 05583386 1 0 -allograph%1:10:00:: 06819557 1 0 -allograph%1:10:01:: 06404806 2 0 -allographic%3:01:00:: 02613206 1 0 -allomerism%1:11:00:: 07337935 1 0 -allomerous%3:01:00:: 02613294 1 0 -allometric%3:01:00:: 02613393 1 0 -allometry%1:09:00:: 05998356 1 0 -allomorph%1:10:00:: 06306606 2 0 -allomorph%1:27:00:: 14819856 1 0 -allomorphic%3:01:00:: 02613502 1 0 -allopathic%3:01:00:: 03073110 1 0 -allopathy%1:04:00:: 00710692 1 0 -allopatric%3:00:00:: 02376995 1 0 -allopatry%1:26:00:: 13959289 1 0 -allophone%1:10:00:: 07111933 1 0 -allophonic%3:01:00:: 02613584 1 0 -allopurinol%1:06:00:: 02698036 1 0 -allosaur%1:05:00:: 01714231 1 0 -allosaurus%1:05:00:: 01714231 1 0 -allot%2:40:00:: 02255268 2 4 -allot%2:40:01:: 02228698 1 6 -allot%2:40:02:: 02294436 3 2 -allotment%1:04:00:: 01083645 2 1 -allotment%1:21:00:: 13289467 1 44 -allotrope%1:27:00:: 14624025 1 0 -allotropic%3:01:00:: 02613683 1 0 -allotropical%3:01:00:: 02613683 1 0 -allotropism%1:19:00:: 11409329 1 0 -allotropy%1:19:00:: 11409329 1 0 -allotted%5:00:00:assigned:00 00847103 1 0 -allover%5:00:00:complete:00 00521976 1 0 -allow%2:31:00:: 00723545 6 3 -allow%2:31:01:: 00724150 4 8 -allow%2:32:00:: 00802318 2 49 -allow%2:32:06:: 00802946 10 0 -allow%2:40:00:: 02255462 3 17 -allow%2:40:01:: 02319669 9 0 -allow%2:41:00:: 02423183 1 65 -allow%2:41:01:: 02423650 8 0 -allow%2:42:00:: 02721438 5 3 -allow%2:42:07:: 02745486 7 0 -allow_for%2:42:00:: 02721438 1 8 -allow_in%2:41:00:: 02502536 1 2 -allowable%3:00:00:: 01760944 2 0 -allowable%5:00:00:admissible:00 01762257 3 0 -allowable%5:00:00:deductible:00 00689878 1 3 -allowably%4:02:00:: 00086926 1 0 -allowance%1:04:00:: 01141841 6 0 -allowance%1:07:00:: 04749991 4 1 -allowance%1:21:00:: 13286254 1 2 -allowance%1:21:01:: 13274092 3 1 -allowance%1:21:02:: 13293377 2 1 -allowance%1:21:03:: 13370215 5 0 -allowance%2:40:00:: 02255821 1 0 -allowance_account%1:21:00:: 13370215 1 0 -alloy%1:26:00:: 14487598 2 0 -alloy%1:27:00:: 14586769 1 0 -alloy%2:30:00:: 00493517 1 0 -alloy%2:30:02:: 00396880 2 0 -alloy_cast_iron%1:27:00:: 14715786 1 0 -alloy_iron%1:27:00:: 14715786 1 0 -alloy_steel%1:27:00:: 14716042 1 0 -alloyed%5:00:00:blended:00 01329306 2 0 -alloyed%5:00:00:impure:02 01908641 1 0 -allspice%1:13:00:: 07814007 3 0 -allspice%1:20:00:: 12331066 1 0 -allspice%1:20:01:: 11700864 2 0 -allspice_tree%1:20:01:: 12331066 2 0 -allspice_tree%1:20:02:: 12331263 1 0 -allude%2:32:00:: 01026728 1 0 -allure%1:07:00:: 04688842 1 0 -allure%2:32:00:: 00793785 1 0 -allurement%1:04:00:: 00161044 3 0 -allurement%1:07:00:: 04688842 2 0 -allurement%1:09:00:: 05695446 1 0 -alluring%5:00:00:seductive:00 02097480 1 0 -allusion%1:10:00:: 06766544 1 7 -allusive%5:00:00:indirect:02 00766957 1 0 -allusiveness%1:07:00:: 04919458 1 0 -alluvial%3:01:00:: 03006126 1 0 -alluvial_cone%1:19:00:: 11423471 1 0 -alluvial_deposit%1:17:00:: 09193282 1 0 -alluvial_fan%1:19:00:: 11423471 1 0 -alluvial_flat%1:17:00:: 09193551 1 0 -alluvial_plain%1:17:00:: 09193551 1 0 -alluvial_sediment%1:17:00:: 09193282 1 0 -alluvial_soil%1:27:00:: 14719725 1 0 -alluviation%1:19:00:: 11445395 1 0 -alluvion%1:17:00:: 09193282 3 0 -alluvion%1:19:00:: 11454591 2 0 -alluvion%1:22:00:: 13429300 1 0 -alluvium%1:17:00:: 09193282 1 0 -ally%1:14:00:: 08305942 1 3 -ally%1:18:00:: 09785042 2 1 -ally%2:41:00:: 02430191 1 0 -ally_with%2:41:00:: 02434737 1 1 -allyl%1:27:00:: 14617427 1 0 -allyl_alcohol%1:27:00:: 14719893 1 0 -allyl_group%1:27:00:: 14617427 1 0 -allyl_radical%1:27:00:: 14617427 1 0 -allyl_resin%1:27:00:: 14720101 1 0 -allylic%3:01:00:: 02613965 1 0 -alma-ata%1:15:00:: 09020299 1 0 -alma_mater%1:14:00:: 08402339 1 0 -almanac%1:10:00:: 06426279 2 0 -almanac%1:10:01:: 06426655 1 0 -almandine%1:27:00:: 15051301 1 0 -almandine%1:27:01:: 14676486 2 0 -almandite%1:27:00:: 14676486 1 0 -almaty%1:15:00:: 09020299 1 0 -almighty%1:18:00:: 09536363 1 0 -almighty%5:00:00:powerful:00 01826186 1 0 -almond%1:13:00:: 07750586 2 0 -almond%1:20:00:: 12645174 1 0 -almond-eyed%5:00:00:eyed:00 00953731 1 0 -almond-leaves_willow%1:20:00:: 12727729 1 0 -almond-scented%5:00:00:odorous:00 01055767 1 0 -almond-shaped%5:00:00:rounded:00 02044736 1 0 -almond_cookie%1:13:00:: 07636126 1 0 -almond_crescent%1:13:00:: 07636126 1 0 -almond_extract%1:13:00:: 07826544 1 0 -almond_moth%1:05:00:: 02290664 1 0 -almond_oil%1:20:00:: 12645754 1 0 -almond_tree%1:20:00:: 12644902 1 0 -almond_willow%1:20:00:: 12727960 1 0 -almoner%1:18:00:: 09785236 1 0 -almoravid%1:18:00:: 09682967 1 0 -almost%4:02:00:: 00073033 1 175 -alms%1:04:00:: 01090117 1 0 -alms-giving%1:04:00:: 01090225 1 0 -alms_box%1:06:00:: 03982767 1 0 -alms_dish%1:06:00:: 02698244 1 0 -alms_tray%1:06:00:: 02698244 1 0 -almsgiver%1:18:00:: 09785580 1 0 -almsgiving%1:04:00:: 01090225 1 0 -alnico%1:27:00:: 14716358 1 0 -alnus%1:20:00:: 12283981 1 0 -alnus_crispa%1:20:00:: 12286197 1 0 -alnus_glutinosa%1:20:00:: 12284821 1 0 -alnus_incana%1:20:00:: 12285049 1 0 -alnus_maritima%1:20:00:: 12285195 1 0 -alnus_rhombifolia%1:20:00:: 12285369 1 0 -alnus_rubra%1:20:00:: 12285512 1 0 -alnus_rugosa%1:20:00:: 12285705 1 0 -alnus_serrulata%1:20:00:: 12285900 1 0 -alnus_veridis%1:20:00:: 12286068 1 0 -alnus_veridis_crispa%1:20:00:: 12286197 1 0 -alnus_vulgaris%1:20:00:: 12284821 1 0 -alocasia%1:20:00:: 11782036 1 0 -alocasia_macrorrhiza%1:20:00:: 11782266 1 0 -aloe%1:20:00:: 12436677 1 0 -aloe_family%1:20:00:: 12436260 1 0 -aloe_ferox%1:20:00:: 12436907 1 0 -aloe_vera%1:20:00:: 12437047 1 0 -aloeaceae%1:20:00:: 12436260 1 0 -aloes%1:06:00:: 02698366 1 2 -aloft%4:02:00:: 00498499 4 0 -aloft%4:02:01:: 00498610 3 0 -aloft%4:02:04:: 00499084 1 0 -aloft%4:02:07:: 00499004 2 0 -aloha%1:10:00:: 06631921 1 0 -aloha_state%1:15:00:: 09078231 1 0 -alois_senefelder%1:18:00:: 11292662 1 0 -alone%4:02:00:: 00008600 1 32 -alone%4:02:01:: 00157967 2 28 -alone%5:00:00:exclusive:00 01862697 3 1 -alone%5:00:00:incomparable:00 00505853 4 0 -alone%5:00:00:unaccompanied:00 02251212 2 4 -alone%5:00:00:unsocial:00 02249766 1 26 -aloneness%1:07:00:: 04622415 1 1 -along%4:02:00:: 00068577 2 9 -along%4:02:01:: 00068368 1 25 -along%4:02:02:: 00068753 4 2 -along%4:02:03:: 00068986 3 2 -along%4:02:04:: 00069164 5 0 -alongside%4:02:00:: 00250056 1 0 -alonso%1:18:00:: 10815343 1 0 -aloof%4:02:00:: 00122816 1 0 -aloof%5:00:00:reserved:01 01987646 1 1 -aloofness%1:07:00:: 04656996 2 0 -aloofness%1:12:02:: 07505871 1 1 -alopecia%1:26:00:: 14457361 1 0 -alopecia_areata%1:26:00:: 14457630 1 0 -alopecic%3:01:00:: 02614093 1 0 -alopecurus%1:20:00:: 12107489 1 0 -alopecurus_pratensis%1:20:00:: 12107710 1 0 -alopex%1:05:00:: 02119961 1 0 -alopex_lagopus%1:05:00:: 02120079 1 0 -alopiidae%1:05:00:: 01485673 1 0 -alopius%1:05:00:: 01485801 1 0 -alopius_vulpinus%1:05:00:: 01486010 1 0 -alosa%1:05:00:: 02530294 1 0 -alosa_alosa%1:05:00:: 02530999 1 0 -alosa_chrysocloris%1:05:00:: 02530831 1 0 -alosa_pseudoharengus%1:05:00:: 02531114 1 0 -alosa_sapidissima%1:05:00:: 02530637 1 0 -alouatta%1:05:00:: 02492536 1 0 -aloud%4:02:00:: 00069771 1 10 -aloud%4:02:01:: 00069901 2 1 -aloys_senefelder%1:18:00:: 11292662 1 0 -alp%1:17:00:: 09193705 1 0 -alpaca%1:05:00:: 02438272 3 0 -alpaca%1:06:00:: 02698473 2 0 -alpaca%1:27:00:: 15104598 1 0 -alpena%1:15:00:: 09100080 1 0 -alpenstock%1:06:00:: 02698634 1 0 -alpestrine%5:00:00:upland:00 01219279 1 0 -alpha%1:10:00:: 06834138 1 1 -alpha%1:11:00:: 07329169 2 0 -alpha%5:00:00:exploratory:00 00877816 2 0 -alpha%5:00:00:important:00 01276482 1 0 -alpha-adrenergic_blocker%1:06:00:: 02698769 1 0 -alpha-adrenergic_blocking_agent%1:06:00:: 02698769 1 0 -alpha-adrenergic_receptor%1:08:00:: 05609111 1 0 -alpha-adrenoceptor%1:08:00:: 05609111 1 0 -alpha-beta_brass%1:27:00:: 14720238 1 0 -alpha-blocker%1:06:00:: 02698769 1 0 -alpha-interferon%1:06:00:: 02699096 1 0 -alpha-linolenic_acid%1:27:00:: 14609443 1 0 -alpha-lipoprotein%1:27:00:: 14907349 1 0 -alpha-naphthol%1:27:00:: 14609689 1 0 -alpha-naphthol_test%1:27:00:: 14609784 1 0 -alpha-tocopheral%1:27:00:: 14720833 1 0 -alpha_and_omega%1:10:00:: 06604209 2 0 -alpha_and_omega%1:28:00:: 15244094 1 0 -alpha_blocker%1:06:00:: 02698769 1 0 -alpha_brass%1:27:00:: 14720474 1 0 -alpha_bronze%1:27:00:: 14720588 1 0 -alpha_centauri%1:17:00:: 09193772 1 0 -alpha_crucis%1:17:00:: 09193933 1 0 -alpha_decay%1:22:00:: 13429432 1 0 -alpha_fetoprotein%1:27:00:: 15033846 1 0 -alpha_foetoprotein%1:27:00:: 15033846 1 0 -alpha_geminorum%1:17:00:: 09237749 1 0 -alpha_globulin%1:27:00:: 14731964 1 0 -alpha_iron%1:27:00:: 14720692 1 0 -alpha_methyl_dopa%1:06:00:: 03755991 1 0 -alpha_orionis%1:17:00:: 09219731 1 0 -alpha_particle%1:17:00:: 09194052 1 0 -alpha_privative%1:10:00:: 06308674 1 0 -alpha_radiation%1:19:00:: 11423607 1 0 -alpha_ray%1:19:00:: 11423607 1 0 -alpha_receptor%1:08:00:: 05609111 1 0 -alpha_rhythm%1:19:00:: 11423756 1 0 -alpha_software%1:10:00:: 06566805 1 0 -alpha_test%1:09:00:: 05799761 1 0 -alpha_wave%1:19:00:: 11423756 1 0 -alphabet%1:09:00:: 05872742 2 0 -alphabet%1:10:00:: 06497459 1 0 -alphabet_soup%1:13:00:: 07583978 2 0 -alphabet_soup%1:14:00:: 08400191 1 0 -alphabetic%3:00:00:: 00100634 2 0 -alphabetic%3:01:00:: 02614194 1 0 -alphabetic_character%1:10:00:: 06828818 1 1 -alphabetic_script%1:10:00:: 06361314 1 0 -alphabetic_writing%1:10:00:: 06361314 1 0 -alphabetical%3:00:00:: 00100634 2 0 -alphabetical%3:01:00:: 02614194 1 0 -alphabetically%4:02:00:: 00202833 1 0 -alphabetisation%1:04:00:: 01011028 1 0 -alphabetise%2:30:00:: 00279239 1 0 -alphabetised%5:00:00:alphabetic:00 00100989 1 0 -alphabetiser%1:18:00:: 09785409 1 0 -alphabetization%1:04:00:: 01011028 1 0 -alphabetize%2:30:00:: 00279239 1 1 -alphabetize%2:40:00:: 02330967 2 0 -alphabetized%5:00:00:alphabetic:00 00100989 1 0 -alphabetizer%1:18:00:: 09785409 1 0 -alphameric%3:01:00:: 02614579 1 0 -alphamerical%3:01:00:: 02614579 1 0 -alphanumeric%3:01:00:: 02614579 1 0 -alphanumeric_characters%1:10:00:: 06500262 1 0 -alphanumeric_display%1:06:00:: 03196598 1 0 -alphanumerical%3:01:00:: 02614579 1 0 -alphanumerics%1:10:00:: 06500262 1 0 -alphavirus%1:05:00:: 01332488 1 0 -alphonse_bertillon%1:18:00:: 10849213 1 0 -alphonse_capone%1:18:00:: 10881784 1 0 -alpine%3:01:00:: 03025590 2 0 -alpine%3:01:01:: 03025746 1 0 -alpine%5:00:00:upland:00 01219373 3 0 -alpine_anemone%1:20:00:: 11725311 1 0 -alpine_ash%1:20:00:: 12336973 1 0 -alpine_azalea%1:20:00:: 12240477 1 0 -alpine_bearberry%1:20:00:: 12231709 1 0 -alpine_besseya%1:20:00:: 12878325 1 0 -alpine_celery_pine%1:20:00:: 11650430 1 0 -alpine_clover%1:20:00:: 11752798 1 0 -alpine_clubmoss%1:20:00:: 13222985 1 0 -alpine_coltsfoot%1:20:00:: 11982939 1 0 -alpine_enchanter's_nightshade%1:20:00:: 12341795 1 0 -alpine_fir%1:20:00:: 11622591 1 0 -alpine_glacier%1:17:00:: 09194227 1 0 -alpine_gold%1:20:00:: 11983375 1 0 -alpine_golden_chain%1:20:00:: 12538209 1 0 -alpine_goldenrod%1:20:00:: 12016914 1 0 -alpine_hulsea%1:20:00:: 11983375 1 0 -alpine_lady_fern%1:20:00:: 13194758 1 0 -alpine_lift%1:06:00:: 04396650 1 0 -alpine_milk_vetch%1:20:00:: 12508618 1 0 -alpine_mouse-ear%1:20:00:: 11807696 1 0 -alpine_salamander%1:05:00:: 01630148 1 0 -alpine_scurvy%1:26:00:: 14200873 1 0 -alpine_sunflower%1:20:00:: 12025507 1 0 -alpine_totara%1:20:00:: 11652966 1 0 -alpine_type_of_glacier%1:17:00:: 09194227 1 0 -alpine_woodsia%1:20:00:: 13202355 1 0 -alpinia%1:20:00:: 12356668 1 0 -alpinia_galanga%1:20:00:: 12356960 1 0 -alpinia_officinalis%1:20:00:: 12357100 1 0 -alpinia_officinarum%1:20:00:: 12357100 1 0 -alpinia_purpurata%1:20:00:: 12357343 1 0 -alpinia_speciosa%1:20:00:: 12357485 1 0 -alpinia_zerumbet%1:20:00:: 12357485 1 0 -alpinism%1:04:00:: 00325975 1 0 -alpinist%1:18:00:: 09785659 1 0 -alprazolam%1:06:00:: 02699343 1 0 -alps%1:17:00:: 09194357 1 0 -already%4:02:00:: 00031798 1 107 -alright%4:02:00:: 00053004 2 0 -alright%4:02:01:: 00053152 1 0 -alright%4:02:02:: 00015471 3 0 -alright%5:00:00:satisfactory:00 02081492 1 0 -als%1:26:00:: 14105737 1 0 -alsace%1:15:00:: 08940209 1 0 -alsatia%1:15:00:: 08940209 1 0 -alsatian%1:05:00:: 02106662 2 0 -alsatian%1:18:00:: 09785786 1 0 -alsatian%3:01:00:: 02972344 1 0 -also%4:02:00:: 00047534 1 411 -also-ran%1:18:00:: 10272913 1 0 -also_known_as%4:02:00:: 00270446 1 1 -alsobia%1:20:00:: 12830974 1 0 -alsobia_dianthiflora%1:20:00:: 12831141 1 0 -alsophila%1:05:00:: 02287476 1 0 -alsophila_pometaria%1:05:00:: 02287622 1 0 -alstonia%1:20:00:: 11770013 1 0 -alstonia_scholaris%1:20:00:: 11770256 1 0 -alstroemeria%1:20:00:: 12438571 1 0 -alstroemeria_pelegrina%1:20:00:: 12438783 1 0 -alstroemeriaceae%1:20:00:: 12438046 1 0 -alt%1:24:00:: 13836550 1 0 -altace%1:06:00:: 04051068 1 0 -altai_mountains%1:17:00:: 09194710 1 0 -altaic%1:10:00:: 06926212 2 0 -altaic%1:18:00:: 09690208 1 0 -altaic%3:01:00:: 02614816 1 0 -altaic_language%1:10:00:: 06926212 1 0 -altair%1:17:00:: 09194938 1 0 -altar%1:06:00:: 02699494 2 0 -altar%1:06:01:: 02699629 1 0 -altar_boy%1:18:00:: 09785891 1 0 -altar_wine%1:13:00:: 07893425 1 0 -altarpiece%1:06:00:: 02699770 1 0 -altay_mountains%1:17:00:: 09194710 1 0 -altazimuth%1:06:00:: 02699915 1 0 -alter%2:29:00:: 00060477 5 0 -alter%2:30:00:: 00123170 2 2 -alter%2:30:01:: 00126264 1 26 -alter%2:30:04:: 00201407 4 0 -alter%2:36:00:: 01667132 3 1 -alter_ego%1:18:00:: 09785992 1 1 -alterability%1:07:00:: 04741530 1 0 -alterable%3:00:00:: 00349295 1 0 -alterable%5:00:00:commutable:00 00348380 2 0 -alteration%1:04:00:: 00399393 3 0 -alteration%1:04:01:: 00199707 2 2 -alteration%1:11:00:: 07296428 1 4 -alterative%5:00:00:healthful:00 01165943 1 0 -altercate%2:32:00:: 00775156 1 0 -altercation%1:10:00:: 07184545 1 5 -altered%3:00:00:: 00352127 1 1 -altered%5:00:00:castrated:00 02136970 2 0 -altered%5:00:00:modified:00 01540637 3 0 -altering%1:04:00:: 00692506 1 0 -alternanthera%1:20:00:: 11824548 1 0 -alternanthera_philoxeroides%1:20:00:: 11824747 1 0 -alternate%1:18:00:: 10680153 1 0 -alternate%2:30:00:: 00121214 5 0 -alternate%2:30:01:: 00121506 1 3 -alternate%2:30:02:: 00121678 4 0 -alternate%2:31:00:: 00604930 3 0 -alternate%2:41:00:: 02393726 2 0 -alternate%3:00:00:: 01663359 4 0 -alternate%5:00:00:secondary:01 01853934 2 2 -alternate%5:00:01:cyclic:01 00675928 3 1 -alternate%5:00:02:cyclic:01 00676093 1 3 -alternately%4:02:00:: 00137562 1 3 -alternating%3:00:00:: 00763767 1 0 -alternating%5:00:01:cyclic:01 00675928 2 0 -alternating_current%1:19:00:: 11423952 1 0 -alternating_electric_current%1:19:00:: 11423952 1 0 -alternation%1:04:00:: 01010684 1 0 -alternation_of_generations%1:19:00:: 11424194 1 0 -alternative%1:09:00:: 05790944 1 16 -alternative%5:00:00:disjunctive:00 00564667 2 1 -alternative%5:00:00:secondary:01 01853934 1 4 -alternative%5:00:00:unconventional:01 00608668 3 0 -alternative_birth%1:22:00:: 13429585 1 0 -alternative_birthing%1:22:00:: 13429585 1 0 -alternative_energy%1:19:00:: 11424400 1 0 -alternative_medicine%1:04:00:: 00613473 1 0 -alternative_pleading%1:10:00:: 06560021 1 0 -alternatively%4:02:00:: 00063172 1 1 -alternator%1:06:00:: 02700064 1 0 -althaea%1:20:00:: 12174311 1 0 -althea%1:20:00:: 12174311 1 0 -althea_gibson%1:18:00:: 10998117 1 0 -althea_officinalis%1:20:00:: 12174521 1 0 -althea_rosea%1:20:00:: 12173912 1 0 -altimeter%1:06:00:: 02700258 1 0 -altissimo%5:00:00:high:03 01213721 1 0 -altitude%1:07:00:: 05131647 1 3 -altitude%1:24:00:: 13836550 3 0 -altitude%1:25:00:: 13897657 2 0 -altitude_sickness%1:26:00:: 14042914 1 0 -altitudinal%3:01:00:: 02614945 1 0 -altitudinous%5:00:00:high:01 01205131 1 0 -alto%1:07:00:: 04986526 5 0 -alto%1:07:01:: 04986637 4 0 -alto%1:10:00:: 06872905 2 0 -alto%1:10:01:: 06872785 3 0 -alto%1:18:00:: 09786115 1 0 -alto%5:00:01:high:03 01213786 3 0 -alto%5:00:02:high:03 01213961 2 0 -alto%5:00:03:low:03 01215663 1 0 -alto_clef%1:10:00:: 06863086 1 0 -alto_relievo%1:06:00:: 02700422 1 0 -alto_rilievo%1:06:00:: 02700422 1 0 -alto_saxophonist%1:18:00:: 09786226 1 0 -altocumulus%1:17:00:: 09195098 1 0 -altocumulus_cloud%1:17:00:: 09195098 1 0 -altogether%1:26:00:: 14456586 1 0 -altogether%4:02:00:: 00063630 2 1 -altogether%4:02:03:: 00151755 3 0 -altogether%4:02:04:: 00008007 1 11 -altoist%1:18:00:: 09786226 1 0 -alton_glenn_miller%1:18:00:: 11180209 1 0 -altoona%1:15:00:: 09135142 1 0 -altostratus%1:17:00:: 09195235 1 0 -altostratus_cloud%1:17:00:: 09195235 1 0 -altricial%3:00:00:: 00101331 1 0 -altruism%1:07:00:: 04833276 1 1 -altruist%1:18:00:: 10421956 1 0 -altruistic%3:00:00:: 00101609 1 0 -altruistically%4:02:00:: 00270974 1 0 -alula%1:05:00:: 01897667 2 0 -alula%1:05:02:: 02190465 1 0 -alular%3:01:00:: 02615079 1 0 -alum%1:06:00:: 02700622 4 0 -alum%1:18:00:: 09786338 3 0 -alum%1:27:01:: 14628119 2 0 -alum%1:27:02:: 14628307 1 0 -alumbloom%1:20:00:: 12798284 1 0 -alumina%1:27:00:: 14823944 1 0 -aluminate%1:27:00:: 14824140 1 0 -aluminiferous%5:00:00:metallic:00 01528039 1 0 -aluminise%2:35:00:: 01338113 1 0 -aluminium%1:27:00:: 14627820 1 0 -aluminium_bronze%1:27:00:: 14722912 1 0 -aluminium_chloride%1:27:00:: 15017878 1 0 -aluminium_foil%1:06:00:: 02700767 1 0 -aluminium_hydroxide%1:27:00:: 14824238 1 0 -aluminium_oxide%1:27:00:: 14823944 1 0 -aluminize%2:35:00:: 01338113 1 0 -aluminous%3:01:00:: 02615207 1 0 -aluminum%1:27:00:: 14627820 1 5 -aluminum_bronze%1:27:00:: 14722912 1 0 -aluminum_business%1:14:00:: 08066186 1 0 -aluminum_chloride%1:27:00:: 15017878 1 1 -aluminum_foil%1:06:00:: 02700767 1 2 -aluminum_hydroxide%1:27:00:: 14824238 1 0 -aluminum_industry%1:14:00:: 08066186 1 0 -aluminum_oxide%1:27:00:: 14823944 1 0 -alumna%1:18:00:: 09786338 1 0 -alumnus%1:18:00:: 09786338 1 0 -alumroot%1:20:00:: 12798284 1 0 -alundum%1:27:00:: 14824469 1 1 -alupent%1:06:00:: 03752649 1 0 -alvar_aalto%1:18:00:: 10806693 1 0 -alveolar%1:10:00:: 07115493 1 0 -alveolar%3:01:00:: 02615325 1 8 -alveolar%3:01:02:: 02615424 2 0 -alveolar_arch%1:08:00:: 05310206 1 0 -alveolar_artery%1:08:00:: 05335310 1 0 -alveolar_bed%1:08:00:: 05387842 1 1 -alveolar_consonant%1:10:00:: 07115493 1 0 -alveolar_ectasia%1:26:00:: 14064296 1 0 -alveolar_point%1:08:00:: 05234911 1 0 -alveolar_process%1:08:00:: 05310351 1 0 -alveolar_resorption%1:26:00:: 14081124 1 0 -alveolar_rhabdomyosarcoma%1:26:00:: 14245758 1 0 -alveolar_rhabdosarcoma%1:26:00:: 14245758 1 0 -alveolar_ridge%1:08:00:: 05310351 1 0 -alveolate%5:00:00:cellular:00 00327690 1 0 -alveolitis%1:26:00:: 14257779 2 0 -alveolitis%1:26:01:: 14257993 1 0 -alveolus%1:08:00:: 05528395 1 5 -alveolus%1:08:02:: 05285480 2 0 -alvin_ailey%1:18:00:: 10810671 1 0 -alvine%3:01:00:: 02850047 1 0 -always%4:02:00:: 00019339 1 196 -always%4:02:01:: 00019609 5 0 -always%4:02:02:: 00019757 4 0 -always%4:02:03:: 00020280 3 0 -always%4:02:04:: 00020476 2 0 -alyssum%1:20:00:: 11870607 2 0 -alyssum%1:20:01:: 11870747 1 0 -alytes%1:05:00:: 01648001 1 0 -alytes_cisternasi%1:05:00:: 01648356 1 0 -alytes_obstetricans%1:05:00:: 01648139 1 0 -alzheimer's%1:26:00:: 14396096 1 0 -alzheimer's_disease%1:26:00:: 14396096 1 0 -alzheimers%1:26:00:: 14396096 1 0 -am%1:10:00:: 06281594 3 0 -am%1:10:01:: 06701001 2 0 -am%1:27:00:: 14628494 1 0 -amabilis_fir%1:20:00:: 11621281 1 0 -amadavat%1:05:00:: 01543936 1 0 -amaethon%1:18:00:: 09507639 1 0 -amah%1:18:00:: 10282672 2 0 -amah%1:18:01:: 10774870 1 0 -amain%4:02:00:: 00273048 2 0 -amain%4:02:01:: 00273133 1 0 -amalgam%1:14:00:: 07963987 2 0 -amalgam%1:27:00:: 14716550 1 0 -amalgamate%2:35:00:: 01462005 1 0 -amalgamate%5:00:00:united:00 02476637 1 0 -amalgamated%5:00:00:united:00 02476637 1 0 -amalgamation%1:04:00:: 01238424 1 0 -amalgamative%3:01:00:: 02615587 1 0 -amalgamator%1:18:00:: 09786922 1 0 -amandine_aurore_lucie_dupin%1:18:00:: 11280013 1 0 -amanita%1:20:00:: 13002433 1 0 -amanita_caesarea%1:20:00:: 13002750 1 0 -amanita_mappa%1:20:00:: 13002925 1 0 -amanita_muscaria%1:20:00:: 13003061 1 0 -amanita_phalloides%1:20:00:: 13003254 1 0 -amanita_rubescens%1:20:00:: 13003522 1 0 -amanita_verna%1:20:00:: 13003712 1 0 -amanuensis%1:18:00:: 10654015 1 0 -amaranth%1:20:01:: 11823043 2 0 -amaranth%1:20:02:: 11823305 1 0 -amaranth_family%1:20:00:: 11822557 1 0 -amaranthaceae%1:20:00:: 11822557 1 0 -amaranthine%3:01:00:: 02615711 1 0 -amaranthine%5:00:00:immortal:00 01558086 2 0 -amaranthus%1:20:00:: 11822849 1 0 -amaranthus_albus%1:20:00:: 11823436 1 0 -amaranthus_caudatus%1:20:00:: 11823572 1 0 -amaranthus_cruentus%1:20:00:: 11823756 1 0 -amaranthus_graecizans%1:20:00:: 11823436 1 0 -amaranthus_hybridus_erythrostachys%1:20:00:: 11823756 1 0 -amaranthus_hybridus_hypochondriacus%1:20:00:: 11823756 1 0 -amaranthus_hypochondriacus%1:20:00:: 11824146 1 0 -amaranthus_spinosus%1:20:00:: 11824344 1 0 -amarelle%1:13:00:: 07758125 2 0 -amarelle%1:20:00:: 12643688 1 0 -amaretto%1:13:00:: 07908567 1 0 -amarillo%1:15:00:: 09142771 1 0 -amaryllidaceae%1:20:00:: 12418680 1 0 -amaryllis%1:20:00:: 12419037 1 0 -amaryllis_belladonna%1:20:00:: 12419394 1 0 -amaryllis_family%1:20:00:: 12418680 1 0 -amass%2:30:00:: 00158804 1 1 -amass%2:40:00:: 02304982 2 0 -amastia%1:26:00:: 14022369 1 0 -amaterasu%1:18:00:: 09534675 1 0 -amaterasu_omikami%1:18:00:: 09534675 1 0 -amateur%1:18:00:: 09786585 1 11 -amateur%1:18:01:: 09786760 2 0 -amateur%5:00:00:nonprofessional:00 01869634 1 3 -amateur%5:00:01:unprofessional:00 01870636 2 0 -amateurish%5:00:00:unprofessional:00 01870636 1 0 -amateurishly%4:02:00:: 00214433 1 0 -amateurishness%1:09:00:: 05649116 1 1 -amateurism%1:09:00:: 06246076 1 0 -amati%1:06:00:: 02700895 2 0 -amati%1:18:00:: 10815477 1 0 -amative%5:00:00:loving:00 01465061 1 0 -amativeness%1:12:00:: 07489059 1 0 -amatory%5:00:00:loving:00 01465214 1 0 -amatungulu%1:20:00:: 11771924 1 0 -amauropelta%1:20:00:: 13228194 1 0 -amaurosis%1:26:00:: 14096412 1 0 -amaurotic%3:01:00:: 02615804 1 0 -amaze%2:31:00:: 00724832 1 4 -amaze%2:31:01:: 00622384 2 1 -amazed%5:00:00:surprised:00 02357810 1 6 -amazement%1:12:00:: 07509572 1 13 -amazing%5:00:00:impressive:00 01282510 2 5 -amazing%5:00:00:surprising:00 02359789 1 5 -amazingly%4:02:00:: 00213301 1 0 -amazon%1:05:00:: 01818299 4 0 -amazon%1:17:00:: 09195372 3 0 -amazon%1:18:01:: 09787076 2 0 -amazon%1:18:02:: 09787293 1 0 -amazon_ant%1:05:00:: 02222582 1 0 -amazon_river%1:17:00:: 09195372 1 0 -amazona%1:05:00:: 01818169 1 0 -ambage%1:10:00:: 07090379 1 0 -ambages%1:04:00:: 00415988 1 0 -ambagious%5:00:00:indirect:02 00767626 1 0 -ambassador%1:18:00:: 09787534 1 7 -ambassador%1:18:01:: 09787765 2 0 -ambassadorial%3:01:00:: 03040846 1 0 -ambassadorship%1:04:00:: 00588780 1 0 -ambassadress%1:18:00:: 09787878 1 0 -amber%1:07:00:: 04966240 1 1 -amber%1:27:00:: 14894880 2 0 -amber%5:00:00:chromatic:00 00369504 1 3 -amber-green%5:00:00:chromatic:00 00369648 1 0 -amber_lily%1:20:00:: 12439830 1 0 -amberbell%1:20:00:: 12450840 1 0 -amberboa%1:20:00:: 11918631 1 0 -amberboa_moschata%1:20:00:: 11918808 1 0 -amberfish%1:05:00:: 02578771 1 0 -ambergris%1:27:00:: 14700985 1 0 -amberjack%1:05:00:: 02578771 1 0 -ambiance%1:15:00:: 08494133 2 0 -ambiance%1:26:00:: 14524849 1 1 -ambidexterity%1:07:00:: 05067199 1 0 -ambidextrous%3:00:00:: 02029752 1 0 -ambidextrous%5:00:00:dishonest:00 01223271 2 0 -ambidextrousness%1:07:00:: 05067199 1 0 -ambience%1:15:00:: 08494133 2 0 -ambience%1:26:00:: 14524849 1 0 -ambient%5:00:01:close:01 00447753 1 0 -ambiguity%1:07:00:: 04825114 2 1 -ambiguity%1:10:00:: 06604319 1 6 -ambiguous%3:00:00:: 00102201 2 4 -ambiguous%3:00:04:: 00895442 1 9 -ambiguous%5:00:00:unstructured:00 01672239 3 1 -ambiguously%4:02:00:: 00220323 1 0 -ambit%1:07:00:: 05125377 1 0 -ambition%1:07:00:: 04836268 2 2 -ambition%1:12:00:: 07484547 1 9 -ambition%2:37:00:: 01826060 1 0 -ambitionless%3:00:00:: 00105023 1 0 -ambitious%3:00:00:: 00104051 1 5 -ambitious%5:00:00:difficult:00 00745642 2 4 -ambitiously%4:02:00:: 00262206 1 0 -ambitiousness%1:07:00:: 04836268 1 0 -ambivalence%1:12:00:: 07483305 1 0 -ambivalency%1:12:00:: 07483305 1 0 -ambivalent%5:00:00:uncertain:02 00337841 1 0 -ambiversion%1:07:00:: 04622216 1 0 -ambiversive%3:00:00:: 01351922 1 0 -amble%1:04:00:: 00284101 1 0 -amble%2:38:00:: 01918183 1 2 -ambler%1:18:00:: 10553235 1 0 -ambloplites%1:05:00:: 02564130 1 0 -ambloplites_rupestris%1:05:00:: 02564403 1 0 -amblygonite%1:27:00:: 14665605 1 0 -amblyopia%1:26:00:: 14096598 1 0 -amblyopic%3:01:00:: 02615921 1 0 -amblyrhynchus%1:05:00:: 01677613 1 0 -amblyrhynchus_cristatus%1:05:00:: 01677747 1 0 -ambo%1:06:00:: 03159640 1 0 -amboina_pine%1:20:00:: 11647868 1 0 -amboyna%1:20:01:: 12565368 2 0 -amboyna%1:20:02:: 12565590 1 0 -amboyna_pine%1:20:00:: 11647868 1 0 -ambrogio_damiano_achille_ratti%1:18:00:: 11238303 1 0 -ambrose%1:18:00:: 10815648 1 0 -ambrose_bierce%1:18:00:: 10851139 1 0 -ambrose_everett_burnside%1:18:00:: 10873937 1 0 -ambrose_gwinett_bierce%1:18:00:: 10851139 1 0 -ambrosia%1:13:01:: 07610295 4 0 -ambrosia%1:13:02:: 07610502 3 0 -ambrosia%1:20:00:: 11919447 2 0 -ambrosia%1:27:00:: 14774090 1 0 -ambrosia_artemisiifolia%1:20:00:: 11919761 1 0 -ambrosia_psilostachya%1:20:00:: 11920133 1 0 -ambrosia_trifida%1:20:00:: 11919975 1 0 -ambrosiaceae%1:20:00:: 11919232 1 0 -ambrosial%5:00:00:heavenly:00 01179241 2 0 -ambrosial%5:00:00:tasty:00 02395910 1 0 -ambrosian%3:01:00:: 02616071 1 0 -ambrosian%5:00:00:heavenly:00 01179241 3 0 -ambrosian%5:00:00:tasty:00 02395910 2 0 -ambulacral%3:01:00:: 02616202 1 0 -ambulacrum%1:05:00:: 02317025 1 0 -ambulance%1:06:00:: 02701002 1 3 -ambulance_chaser%1:18:00:: 09787955 1 0 -ambulant%5:00:00:mobile:00 01522985 1 0 -ambulant_plague%1:26:00:: 14139333 1 0 -ambulate%2:38:00:: 01911698 1 0 -ambulation%1:04:00:: 00283951 1 0 -ambulatory%1:06:00:: 02701125 1 0 -ambulatory%3:01:00:: 02616345 1 0 -ambulatory%5:00:00:mobile:00 01522985 2 0 -ambulatory_plague%1:26:00:: 14139333 1 0 -ambuscade%1:04:00:: 01246926 1 1 -ambuscade%2:33:00:: 01138204 1 0 -ambush%1:04:00:: 01246926 1 5 -ambush%2:33:00:: 01138204 1 2 -ambush%2:33:01:: 01142203 2 1 -ambusher%1:18:00:: 09788073 1 0 -ambystoma%1:05:00:: 01631903 1 0 -ambystoma_maculatum%1:05:00:: 01632458 1 0 -ambystoma_mexicanum%1:05:00:: 01632777 1 0 -ambystoma_talpoideum%1:05:00:: 01632308 1 0 -ambystoma_tigrinum%1:05:00:: 01632601 1 0 -ambystomatidae%1:05:00:: 01631759 1 0 -ambystomid%1:05:00:: 01632047 1 0 -ambystomid_salamander%1:05:00:: 01632047 1 0 -amd%1:26:00:: 14256889 1 0 -ameba%1:05:00:: 01392380 1 0 -ameban%3:01:00:: 03040974 1 0 -amebiasis%1:26:00:: 14175165 1 0 -amebic%3:01:00:: 03040974 1 0 -amebic_dysentery%1:26:00:: 14175313 1 0 -amebiosis%1:26:00:: 14175165 1 0 -ameboid%3:01:00:: 02616480 1 0 -amebous%3:01:00:: 03040974 1 0 -amedeo_avogadro%1:18:00:: 10830046 1 0 -amedeo_modigliano%1:18:00:: 11183955 1 0 -ameer%1:18:00:: 10052497 1 0 -ameiuridae%1:05:00:: 02518813 1 0 -ameiurus%1:05:00:: 02518990 1 0 -ameiurus_melas%1:05:00:: 02519340 1 0 -amelanchier%1:20:00:: 12623368 1 0 -amelanchier_alnifolia%1:20:00:: 12623818 1 0 -amelanchier_bartramiana%1:20:00:: 12624055 1 0 -amelia%1:26:00:: 14466344 1 0 -amelia_earhart%1:18:00:: 10947403 1 0 -ameliorate%2:30:00:: 00205046 2 0 -ameliorate%2:30:01:: 00205885 1 0 -ameliorating%5:00:00:bettering:00 00232385 1 0 -amelioration%1:04:00:: 00261029 1 0 -ameliorative%5:00:00:bettering:00 00232385 1 0 -amelioratory%5:00:00:bettering:00 00232385 1 0 -ameloblast%1:08:00:: 05448053 1 0 -amelogenesis%1:22:00:: 13429780 1 0 -amen%1:18:00:: 09511368 1 0 -amen-ra%1:18:00:: 09511519 1 0 -amen_cadence%1:10:00:: 07046030 1 0 -amen_corner%1:06:00:: 02701260 1 7 -amenability%1:07:00:: 04906026 1 0 -amenable%5:00:00:compliant:00 00696828 1 1 -amenable%5:00:00:responsible:00 01997415 4 0 -amenable%5:00:00:susceptible:00 02362499 2 0 -amenable%5:00:01:susceptible:00 02361325 3 0 -amenableness%1:07:00:: 04906026 1 0 -amend%2:30:00:: 00205885 2 2 -amend%2:30:01:: 00199912 3 0 -amend%2:32:00:: 00996328 1 9 -amendable%5:00:00:corrigible:00 00635078 1 0 -amendatory%5:00:00:bettering:00 00232620 1 0 -amended%3:00:00:: 00354090 1 2 -amended%5:00:00:better:00 00230843 2 0 -amended_return%1:10:00:: 06548991 1 2 -amendment%1:04:00:: 01250101 1 6 -amendment%1:10:00:: 06723635 2 1 -amends%1:04:00:: 00095329 2 0 -amends%1:21:00:: 13290676 1 0 -amenhotep_iv%1:18:00:: 10810923 1 0 -amenia%1:26:00:: 14302261 1 0 -amenities%1:21:00:: 13366137 1 0 -amenity%1:07:00:: 04779053 1 0 -amenorrhea%1:26:00:: 14302261 1 0 -amenorrheal%3:01:00:: 02616627 1 0 -amenorrheic%3:01:00:: 02616627 1 0 -amenorrhoea%1:26:00:: 14302261 1 0 -amenorrhoeal%3:01:00:: 02616627 1 0 -amenorrhoeic%3:01:00:: 02616627 1 0 -ament%1:20:00:: 11674798 1 0 -amentaceous%5:00:00:productive:00 01865640 1 0 -amentia%1:09:00:: 05646926 1 0 -amentiferae%1:20:00:: 12313574 1 0 -amentiferous%5:00:00:productive:00 01865640 1 0 -amerce%2:41:00:: 02500265 1 0 -amerce%2:41:01:: 02498987 2 0 -amercement%1:21:00:: 13301328 1 0 -amerciable%5:00:00:illegal:00 01402343 1 0 -america%1:15:00:: 09044862 1 39 -america%1:17:00:: 09195615 2 1 -american%1:10:00:: 06947479 2 2 -american%1:18:00:: 09738708 1 33 -american%1:18:01:: 09738400 3 0 -american%3:01:00:: 02927303 2 4 -american%3:01:01:: 02927512 1 117 -american-indian_language%1:10:00:: 06906439 1 0 -american_agave%1:20:00:: 12477163 1 0 -american_alligator%1:05:00:: 01698640 1 0 -american_aloe%1:20:00:: 12476510 1 0 -american_angelica_tree%1:20:00:: 11797508 1 0 -american_antelope%1:05:00:: 02429456 1 0 -american_arborvitae%1:20:00:: 11644226 1 0 -american_arrowroot%1:20:00:: 12351790 1 0 -american_aspen%1:20:00:: 12734070 1 0 -american_badger%1:05:00:: 02447762 1 0 -american_baptist_convention%1:14:00:: 08089797 1 0 -american_barberry%1:20:00:: 11697802 1 0 -american_basswood%1:20:00:: 12203529 1 0 -american_beech%1:20:00:: 12261808 1 0 -american_bison%1:05:00:: 02410702 1 0 -american_bittern%1:05:00:: 02011805 1 0 -american_bittersweet%1:20:00:: 12748248 1 0 -american_black_bear%1:05:00:: 02133161 1 0 -american_blight%1:05:00:: 02253913 1 0 -american_bog_asphodel%1:20:00:: 12464128 1 0 -american_brooklime%1:20:00:: 12890685 1 0 -american_buffalo%1:05:00:: 02410702 1 0 -american_bugbane%1:20:00:: 11728769 1 0 -american_capital%1:15:00:: 09070793 1 0 -american_centaury%1:20:00:: 12298395 1 0 -american_chameleon%1:05:00:: 01682714 1 0 -american_cheese%1:13:00:: 07852919 1 0 -american_chestnut%1:20:00:: 12263038 1 0 -american_civil_war%1:04:00:: 01301630 1 0 -american_cockroach%1:05:00:: 02234355 1 0 -american_columbo%1:20:00:: 12292877 1 0 -american_coot%1:05:00:: 02018207 1 0 -american_copper%1:05:00:: 02282553 1 0 -american_crab_apple%1:20:00:: 12635151 1 0 -american_cranberry%1:20:00:: 12245885 1 0 -american_cranberry_bush%1:20:00:: 12680402 1 0 -american_crayfish%1:05:00:: 01985797 1 0 -american_creeper%1:05:00:: 01589718 1 0 -american_cress%1:20:00:: 11873845 1 0 -american_crow%1:05:00:: 01579149 1 0 -american_dewberry%1:20:01:: 12655245 2 0 -american_dewberry%1:20:02:: 12655351 1 0 -american_dog_tick%1:05:00:: 01779148 1 0 -american_dog_violet%1:20:00:: 12388293 1 0 -american_dogwood%1:20:00:: 12947544 1 0 -american_dream%1:12:00:: 07484792 1 1 -american_dwarf_birch%1:20:00:: 12283790 1 0 -american_eagle%1:05:00:: 01614925 1 0 -american_egret%1:05:00:: 02009912 1 0 -american_elder%1:20:00:: 12678548 1 0 -american_elk%1:05:00:: 02431785 1 0 -american_elk%1:05:01:: 02431122 2 0 -american_elm%1:20:00:: 12406488 1 0 -american_english%1:10:00:: 06947479 1 0 -american_falls%1:17:00:: 09195796 1 0 -american_featherfoil%1:20:00:: 12094401 1 0 -american_federalist_party%1:14:00:: 08259753 1 0 -american_federation_of_labor%1:14:00:: 08233913 1 0 -american_federation_of_labor_and_congress_of_industrial_organizations%1:14:00:: 08234103 1 0 -american_feverfew%1:20:00:: 12001294 1 0 -american_flag%1:06:00:: 02701566 1 0 -american_flagfish%1:05:00:: 01447946 1 0 -american_fly_honeysuckle%1:20:00:: 12674685 1 0 -american_flying_squirrel%1:05:00:: 02360781 1 0 -american_football%1:04:00:: 00469651 1 0 -american_football_game%1:04:00:: 00469651 1 0 -american_foxhound%1:05:00:: 02089725 1 0 -american_frogbit%1:20:00:: 12614096 1 0 -american_gallinule%1:05:00:: 02017475 1 0 -american_gentian%1:20:00:: 12292877 1 0 -american_germander%1:20:00:: 12869668 1 0 -american_ginseng%1:20:00:: 11800020 1 0 -american_gray_birch%1:20:00:: 12282235 1 0 -american_green_toad%1:05:00:: 01647033 1 0 -american_grey_birch%1:20:00:: 12282235 1 0 -american_hackberry%1:20:00:: 12409651 1 0 -american_harvest_mouse%1:05:00:: 02336275 1 0 -american_hazel%1:20:00:: 12289310 1 0 -american_hellebore%1:20:00:: 12464649 1 0 -american_holly%1:20:00:: 12757816 1 0 -american_hop%1:20:00:: 12398384 1 0 -american_hornbeam%1:20:00:: 12287195 1 0 -american_indian%1:10:00:: 06906439 2 0 -american_indian%1:18:00:: 09645091 1 0 -american_indian_day%1:28:00:: 15190779 1 0 -american_ivy%1:20:00:: 13148384 1 0 -american_kestrel%1:05:00:: 01612122 1 0 -american_labor_party%1:14:00:: 08257779 1 0 -american_lady_crab%1:05:00:: 01979526 1 0 -american_language%1:10:00:: 06947479 1 0 -american_larch%1:20:00:: 11619227 1 0 -american_laurel%1:20:00:: 12237641 1 0 -american_legion%1:14:00:: 08228980 1 0 -american_leishmaniasis%1:26:00:: 14181409 1 0 -american_licorice%1:20:00:: 12533190 1 0 -american_lime%1:20:00:: 12203529 1 0 -american_liquorice%1:20:00:: 12533190 1 0 -american_lobster%1:05:00:: 01983481 2 0 -american_lobster%1:13:00:: 07792926 1 0 -american_lotus%1:20:00:: 11717577 1 0 -american_magpie%1:05:00:: 01582498 1 0 -american_maidenhair_fern%1:20:00:: 13207335 1 0 -american_marten%1:05:00:: 02450561 1 0 -american_mastodon%1:05:00:: 02506248 1 0 -american_mastodont%1:05:00:: 02506248 1 0 -american_merganser%1:05:00:: 01854838 1 0 -american_mink%1:05:00:: 02443015 1 0 -american_mistletoe%1:20:01:: 12739966 1 0 -american_mistletoe%1:20:02:: 12738259 2 0 -american_mountain_ash%1:20:00:: 12658603 1 0 -american_oil_palm%1:20:00:: 12590600 1 0 -american_olive%1:20:00:: 12309630 1 0 -american_organ%1:06:00:: 02701730 1 0 -american_oriole%1:05:00:: 01571904 1 0 -american_parasol%1:20:00:: 13014409 1 0 -american_parsley_fern%1:20:00:: 13210350 1 0 -american_party%1:14:00:: 08257971 1 0 -american_pasqueflower%1:20:00:: 11737752 1 0 -american_pennyroyal%1:20:00:: 12847927 1 0 -american_persimmon%1:20:00:: 12771597 1 0 -american_pit_bull_terrier%1:05:00:: 02093428 1 0 -american_plaice%1:05:00:: 02660091 1 0 -american_plan%1:21:00:: 13415744 1 0 -american_plane%1:20:00:: 12807409 1 0 -american_pulsatilla%1:20:00:: 11737752 1 0 -american_quaking_aspen%1:20:00:: 12734070 1 0 -american_raspberry%1:20:00:: 12656528 1 0 -american_rattlebox%1:20:00:: 12519824 1 0 -american_red_elder%1:20:00:: 12679432 1 0 -american_red_plum%1:20:00:: 12638964 1 0 -american_red_squirrel%1:05:00:: 02357401 1 0 -american_redstart%1:05:00:: 01568294 1 0 -american_revised_version%1:10:00:: 06449477 1 0 -american_revolution%1:04:00:: 01302086 1 1 -american_revolutionary_leader%1:18:00:: 09740085 1 0 -american_revolutionary_war%1:04:00:: 01302086 1 0 -american_robin%1:05:00:: 01558993 1 0 -american_rock_brake%1:20:00:: 13210350 1 0 -american_sable%1:05:00:: 02450561 1 0 -american_saddle_horse%1:05:00:: 02379630 1 0 -american_samoa%1:15:00:: 08991878 1 0 -american_shrew_mole%1:05:00:: 01891274 1 0 -american_sign_language%1:10:00:: 06876007 1 0 -american_smelt%1:13:00:: 07798728 1 0 -american_smokewood%1:20:00:: 12760316 1 0 -american_smooth_dogfish%1:05:00:: 01492708 1 0 -american_spicebush%1:20:00:: 11706325 1 0 -american_spikenard%1:20:00:: 11797981 1 0 -american_staffordshire_terrier%1:05:00:: 02093428 1 0 -american_standard_code_for_information_interchange%1:10:00:: 06356755 1 0 -american_standard_version%1:10:00:: 06449477 1 0 -american_star_grass%1:20:00:: 12423444 1 0 -american_state%1:15:00:: 08655464 1 0 -american_stock_exchange%1:06:00:: 02701871 1 0 -american_sweet_chestnut%1:20:00:: 12263038 1 0 -american_sweet_gum%1:20:00:: 12316572 1 0 -american_sycamore%1:20:00:: 12807409 1 0 -american_toad%1:05:00:: 01646802 1 0 -american_turkey_oak%1:20:00:: 12273515 1 0 -american_twinflower%1:20:00:: 12673588 1 0 -american_virgin_islands%1:15:00:: 08755003 1 0 -american_wall_fern%1:20:00:: 13173697 1 0 -american_war_of_independence%1:04:00:: 01302086 1 0 -american_water_ouzel%1:05:00:: 01602209 1 0 -american_water_shrew%1:05:00:: 01892744 1 0 -american_water_spaniel%1:05:00:: 02102806 1 0 -american_watercress%1:20:00:: 11882636 1 0 -american_watercress%1:20:02:: 11873845 2 0 -american_white_birch%1:20:00:: 12281974 1 0 -american_white_oak%1:20:00:: 12270027 1 0 -american_white_pine%1:20:00:: 11613219 1 0 -american_widgeon%1:05:00:: 01848840 1 0 -american_wistaria%1:20:00:: 12580896 1 0 -american_wisteria%1:20:00:: 12580896 1 0 -american_woodcock%1:05:00:: 02031585 1 0 -american_wormseed%1:20:00:: 11828804 1 0 -americana%1:06:00:: 02701393 1 3 -americanisation%1:22:00:: 13429888 1 0 -americanise%2:30:00:: 00409643 2 0 -americanise%2:30:01:: 00410406 1 0 -americanism%1:04:00:: 00413554 3 0 -americanism%1:07:00:: 04878539 1 1 -americanism%1:10:00:: 07081345 2 0 -americanization%1:22:00:: 13429888 1 0 -americanize%2:30:00:: 00409643 2 0 -americanize%2:30:01:: 00410406 1 0 -americium%1:27:00:: 14628494 1 0 -americus_vespucius%1:18:00:: 11365100 1 0 -amerigo_vespucci%1:18:00:: 11365100 1 0 -amerind%1:10:00:: 06906439 1 0 -amerind%3:01:00:: 02928066 1 0 -amerindian%1:18:00:: 09644820 1 0 -amerindian_language%1:10:00:: 06906439 1 0 -amerindian_race%1:18:00:: 09648176 1 0 -amerindic%3:01:00:: 02928066 1 0 -ametabolic%3:00:00:: 01508592 1 0 -ametabolic%5:00:00:nonmetamorphic:00 01531274 2 0 -ametabolous%3:00:00:: 01508592 1 0 -amethopterin%1:06:00:: 03755712 1 0 -amethyst%1:27:00:: 14722589 1 0 -amethyst%5:00:00:chromatic:00 00369732 1 0 -amethystine%3:01:00:: 02616906 1 0 -amethystine_python%1:05:00:: 01744555 1 4 -ametria%1:26:00:: 14152924 1 0 -ametropia%1:26:00:: 14096724 1 0 -ametropic%3:00:00:: 00105388 1 0 -amex%1:06:00:: 02701871 1 0 -amhara%1:18:00:: 09705671 1 0 -amharic%1:10:00:: 06987812 1 0 -amharic%3:01:00:: 02616997 1 0 -amia%1:05:00:: 02638960 1 0 -amia_calva%1:05:00:: 02639087 1 0 -amiability%1:07:00:: 04654652 2 0 -amiability%1:12:00:: 07551691 1 0 -amiable%5:00:00:friendly:01 01075178 2 1 -amiable%5:00:00:good-natured:00 01134232 1 1 -amiableness%1:07:00:: 04654652 1 0 -amiably%4:02:00:: 00220052 1 0 -amianthum%1:20:00:: 12438977 1 0 -amianthum_muscaetoxicum%1:20:00:: 12439154 1 0 -amianthum_muscitoxicum%1:20:00:: 12439154 1 0 -amicability%1:07:00:: 04654998 2 0 -amicability%1:12:00:: 07499830 1 0 -amicable%3:00:00:: 01246579 1 1 -amicableness%1:07:00:: 04654998 2 0 -amicableness%1:12:00:: 07499830 1 0 -amicably%4:02:00:: 00262552 1 0 -amicus_curiae%1:18:00:: 09788237 1 3 -amicus_curiae_brief%1:10:00:: 06543949 1 0 -amide%1:27:00:: 14724264 1 0 -amidopyrine%1:06:00:: 02702166 1 0 -amidship%4:02:00:: 00402030 1 0 -amidship%4:02:01:: 00273238 2 0 -amidship%5:00:00:central:01 00330219 1 0 -amidships%4:02:00:: 00402030 1 0 -amigo%1:18:00:: 09788521 1 0 -amiidae%1:05:00:: 02638835 1 0 -amine%1:27:00:: 14739004 1 0 -aminic%3:01:00:: 02617146 1 0 -amino%1:27:00:: 14617597 1 0 -amino%3:01:00:: 02617146 1 0 -amino_acid%1:27:00:: 14601829 1 1 -amino_group%1:27:00:: 14617597 1 0 -amino_plastic%1:27:00:: 14743381 1 0 -amino_resin%1:27:00:: 14743381 1 0 -aminoaciduria%1:26:00:: 14266168 1 0 -aminoalkane%1:27:00:: 14739004 1 0 -aminoalkanoic_acid%1:27:00:: 14601829 1 0 -aminobenzine%1:27:00:: 14754505 1 0 -aminobenzoic_acid%1:27:00:: 14743289 1 0 -aminomethane%1:27:00:: 14617715 1 1 -aminopherase%1:27:00:: 15077338 1 0 -aminophylline%1:06:00:: 02701984 1 0 -aminoplast%1:27:00:: 14743381 1 0 -aminopyrine%1:06:00:: 02702166 1 0 -aminotransferase%1:27:00:: 15077338 1 0 -amiodarone%1:06:00:: 02702304 1 0 -amir%1:18:00:: 10052497 1 0 -amish%1:18:00:: 09677713 1 0 -amish_sect%1:14:00:: 08093813 1 0 -amiss%4:02:00:: 00271998 1 0 -amiss%4:02:01:: 00010276 2 0 -amiss%4:02:03:: 00010047 3 0 -amiss%5:00:00:malfunctioning:00 01092371 1 1 -amitosis%1:22:00:: 13430074 1 0 -amitotic%3:01:00:: 02617357 1 0 -amitriptyline%1:06:00:: 02702575 1 0 -amitriptyline_hydrochloride%1:06:00:: 02702575 1 0 -amity%1:07:00:: 04655929 1 1 -amity%1:26:00:: 13970460 2 0 -amlodipine_besylate%1:06:00:: 02702809 1 0 -amman%1:15:00:: 08927548 1 0 -ammeter%1:06:00:: 02702989 1 0 -ammine%1:27:00:: 14743727 1 0 -ammino%3:01:00:: 02617476 1 0 -ammo%1:06:00:: 02703275 1 3 -ammobium%1:20:00:: 11920498 1 0 -ammobium_alatum%1:20:00:: 11920663 1 0 -ammodytes%1:05:00:: 02618372 1 0 -ammodytidae%1:05:00:: 02618244 1 0 -ammonia%1:27:00:: 14743582 2 0 -ammonia%1:27:01:: 14743840 1 0 -ammonia_alum%1:27:00:: 14628307 1 0 -ammonia_clock%1:06:00:: 02703124 1 0 -ammonia_water%1:27:00:: 14743840 1 0 -ammoniac%1:27:00:: 14743976 1 1 -ammoniac%3:01:00:: 02617641 1 0 -ammoniacal%3:01:00:: 02617641 1 0 -ammoniate%2:30:00:: 00187147 1 0 -ammoniated%3:01:00:: 03132715 1 0 -ammonification%1:22:00:: 13430262 1 0 -ammonify%2:30:00:: 00497219 1 0 -ammonite%1:17:00:: 09195958 1 0 -ammonitic%3:01:00:: 02617812 1 0 -ammonium%1:27:00:: 14744120 1 0 -ammonium_alum%1:27:00:: 14628307 1 0 -ammonium_carbamate%1:27:00:: 14744291 1 0 -ammonium_carbonate%1:27:00:: 14744417 1 0 -ammonium_chloride%1:27:00:: 14744589 1 0 -ammonium_hydroxide%1:27:00:: 14743840 1 0 -ammonium_ion%1:27:00:: 14744120 1 1 -ammonium_nitrate%1:27:00:: 15014012 1 0 -ammoniuria%1:26:00:: 14266313 1 0 -ammonoid%1:17:00:: 09195958 1 0 -ammotragus%1:05:00:: 02415971 1 0 -ammotragus_lervia%1:05:00:: 02416104 1 0 -ammunition%1:06:00:: 02703275 1 11 -ammunition%1:10:00:: 06484696 3 0 -ammunition%1:27:00:: 14585808 2 0 -ammunition_chest%1:06:00:: 02937237 1 0 -amnesia%1:09:00:: 05672391 1 0 -amnesiac%1:18:00:: 09788611 1 0 -amnesiac%5:00:00:unmindful:00 01978237 1 0 -amnesic%1:18:00:: 09788611 1 0 -amnesic%3:01:00:: 02617933 1 0 -amnesic%5:00:00:unmindful:00 01978237 2 0 -amnesic_aphasia%1:26:00:: 14098663 1 0 -amnestic%3:01:00:: 02617933 1 0 -amnestic_aphasia%1:26:00:: 14098663 1 0 -amnesty%1:04:00:: 01249315 3 0 -amnesty%1:10:00:: 06552639 2 0 -amnesty%1:26:00:: 14529082 1 0 -amnesty%2:32:00:: 00905677 1 0 -amnic%3:01:00:: 02618108 1 0 -amnio%1:04:00:: 00943600 1 0 -amniocentesis%1:04:00:: 00943600 1 0 -amnion%1:05:00:: 01472638 1 0 -amnionic%3:01:00:: 02618108 1 0 -amnionic_fluid%1:08:00:: 05399627 1 0 -amnios%1:05:00:: 01472638 1 0 -amniota%1:05:00:: 01472303 1 0 -amniote%1:05:00:: 01472502 1 0 -amniotic%3:01:00:: 02618108 1 0 -amniotic_cavity%1:08:00:: 05399486 1 0 -amniotic_fluid%1:08:00:: 05399627 1 0 -amniotic_sac%1:05:00:: 01472638 1 0 -amobarbital%1:06:00:: 02703499 1 0 -amobarbital_sodium%1:06:00:: 02703692 1 0 -amoeba%1:05:00:: 01392380 1 0 -amoeban%3:01:00:: 03040974 1 0 -amoebiasis%1:26:00:: 14175165 1 0 -amoebic%3:01:00:: 03040974 1 0 -amoebic_dysentery%1:26:00:: 14175313 1 0 -amoebida%1:05:00:: 01391569 1 0 -amoebina%1:05:00:: 01391569 1 0 -amoebiosis%1:26:00:: 14175165 1 0 -amoeboid%3:01:00:: 02616480 1 0 -amoebous%3:01:00:: 03040974 1 0 -amok%4:02:00:: 00273306 2 0 -amok%4:02:01:: 00273504 1 0 -amok%5:00:00:insane:00 02074673 1 0 -amon%1:18:00:: 09511368 1 0 -amon-ra%1:18:00:: 09511519 1 0 -amontillado%1:13:00:: 07901264 1 0 -amor%1:18:00:: 09560061 1 0 -amora%1:18:00:: 09788761 1 0 -amoralism%1:09:00:: 05958427 1 0 -amoralist%1:18:00:: 09789150 1 0 -amorality%1:07:00:: 04854893 1 0 -amorally%4:02:00:: 00364623 1 0 -amorist%1:18:00:: 09789304 1 1 -amoristic%3:01:00:: 02618361 1 0 -amorous%5:00:01:loving:00 01465061 1 1 -amorous%5:00:02:loving:00 01465214 2 0 -amorously%4:02:00:: 00267950 1 0 -amorousness%1:12:01:: 07544213 1 0 -amorousness%1:12:02:: 07489059 2 0 -amorpha%1:20:00:: 12504094 1 0 -amorpha_californica%1:20:00:: 12504570 1 0 -amorpha_canescens%1:20:00:: 12504306 1 0 -amorpha_fruticosa%1:20:00:: 12504783 1 0 -amorphophallus%1:20:00:: 11782761 1 0 -amorphophallus_campanulatus%1:20:00:: 11782878 1 0 -amorphophallus_paeonifolius%1:20:00:: 11782878 1 0 -amorphophallus_rivieri%1:20:00:: 11783162 1 0 -amorphophallus_titanum%1:20:00:: 11783488 1 0 -amorphous%5:00:00:inorganic:02 01680283 2 0 -amorphous%5:00:00:noncrystalline:00 00269580 3 0 -amorphous%5:00:00:unformed:00 02151837 1 4 -amorphous_shape%1:25:00:: 13867492 1 0 -amort%5:00:00:dejected:00 00703366 1 0 -amortisation%1:04:00:: 01121070 2 0 -amortisation%1:04:01:: 01122938 1 0 -amortise%2:40:00:: 02352263 1 0 -amortization%1:04:00:: 01121070 2 0 -amortization%1:04:01:: 01122938 1 0 -amortize%2:40:00:: 02352263 1 0 -amos%1:10:00:: 06439560 2 0 -amos%1:18:00:: 10816136 1 0 -amount%1:03:00:: 00033615 3 20 -amount%1:07:00:: 05107765 2 39 -amount%1:09:00:: 05861067 4 6 -amount%1:21:00:: 13331198 1 40 -amount%2:42:00:: 02627363 3 4 -amount%2:42:01:: 02645007 2 4 -amount%2:42:03:: 02664992 1 10 -amount_of_money%1:21:00:: 13331198 1 1 -amour%1:26:00:: 13931889 1 0 -amour_propre%1:12:00:: 07508996 1 0 -amoxicillin%1:06:00:: 02703894 1 0 -amoxil%1:06:00:: 02703894 1 0 -amoy%1:10:00:: 06930633 1 0 -amp%1:23:00:: 13637376 1 4 -amp%1:27:00:: 14707710 2 0 -amperage%1:19:00:: 11424704 1 0 -ampere%1:23:00:: 13637376 2 0 -ampere%1:23:02:: 13637841 1 0 -ampere-hour%1:23:00:: 13637124 1 0 -ampere-minute%1:23:00:: 13636989 1 0 -ampere-second%1:23:00:: 13636648 1 0 -ampere-turn%1:23:00:: 13642122 1 0 -ampersand%1:10:00:: 06841873 1 0 -amphetamine%1:06:00:: 02704153 1 0 -amphetamine_sulfate%1:06:00:: 02704462 1 0 -amphetamine_sulphate%1:06:00:: 02704462 1 0 -amphibia%1:05:00:: 01625747 1 0 -amphibian%1:05:00:: 01627424 3 0 -amphibian%1:06:00:: 02704645 2 0 -amphibian%1:06:01:: 02704792 1 0 -amphibian%3:01:00:: 02831979 1 0 -amphibian_family%1:05:00:: 01626134 1 0 -amphibian_genus%1:05:00:: 01626600 1 0 -amphibiotic%5:00:00:amphibious:00 00125553 1 0 -amphibious%3:00:00:: 00125319 2 0 -amphibious%3:01:00:: 02831979 1 0 -amphibious_aircraft%1:06:00:: 02704645 1 0 -amphibious_assault%1:04:00:: 00981369 1 0 -amphibious_demonstration%1:04:00:: 00972319 1 0 -amphibious_landing%1:04:00:: 00057748 1 0 -amphibious_operation%1:04:00:: 00981180 1 0 -amphibious_vehicle%1:06:00:: 02704792 1 0 -amphibole%1:27:00:: 14665767 1 0 -amphibole_group%1:27:00:: 14666012 1 0 -amphibolips%1:05:00:: 02217050 1 0 -amphibolite%1:27:00:: 14666369 1 0 -amphibology%1:10:00:: 06604743 1 1 -amphiboly%1:10:00:: 06604743 1 0 -amphibrach%1:10:00:: 07095516 1 0 -amphicarpa%1:20:00:: 12505032 1 0 -amphicarpa_bracteata%1:20:00:: 12505253 1 0 -amphicarpaea%1:20:00:: 12505032 1 0 -amphicarpaea_bracteata%1:20:00:: 12505253 1 0 -amphictyony%1:14:00:: 08360248 1 0 -amphidiploid%1:05:00:: 01319932 1 0 -amphidiploidy%1:26:00:: 14570581 1 0 -amphigory%1:10:00:: 06608035 1 0 -amphimixis%1:11:00:: 07373481 2 0 -amphimixis%1:22:00:: 13555240 1 0 -amphineura%1:05:00:: 01954202 1 0 -amphioxidae%1:05:00:: 01467504 1 0 -amphioxus%1:05:00:: 01467804 1 0 -amphipod%1:05:00:: 01992773 1 0 -amphipoda%1:05:00:: 01992516 1 0 -amphiprion%1:05:00:: 02606926 1 0 -amphiprion_percula%1:05:00:: 02607201 1 0 -amphiprostylar%5:00:00:apteral:00 00139492 1 0 -amphiprostyle%5:00:00:apteral:00 00139492 1 0 -amphiprotic%3:00:00:: 00026515 1 0 -amphisbaena%1:05:00:: 01683036 2 0 -amphisbaena%1:18:00:: 09492733 1 0 -amphisbaenia%1:05:00:: 01683036 1 0 -amphisbaenidae%1:05:00:: 01682920 1 0 -amphistylar%5:00:00:apteral:00 00139492 2 0 -amphistylar%5:00:00:columned:00 00140880 1 0 -amphitheater%1:06:00:: 02704949 2 0 -amphitheater%1:06:01:: 02705201 1 0 -amphitheatre%1:06:00:: 02704949 2 0 -amphitheatre%1:06:01:: 02705201 1 0 -amphitheatric%3:01:00:: 02618468 1 0 -amphitheatrical%3:01:00:: 02618468 1 0 -amphitheatrum_flavium%1:06:00:: 03072828 1 0 -amphitropous%3:00:00:: 01029873 1 0 -amphitropous_ovule%1:20:00:: 11679528 1 0 -amphiuma%1:05:00:: 01638722 1 0 -amphiumidae%1:05:00:: 01638482 1 0 -amphora%1:06:00:: 02705429 1 0 -amphoric%3:01:00:: 02618668 1 0 -amphoteric%3:00:00:: 00026515 1 0 -amphotericin%1:06:00:: 02705558 1 0 -ampicillin%1:06:00:: 02705651 1 0 -ample%3:00:00:: 00105746 1 8 -ample%5:00:00:abundant:00 00014490 2 2 -ample%5:00:00:large:00 01383394 3 0 -ampleness%1:07:00:: 05104256 2 0 -ampleness%1:07:01:: 05112910 1 0 -amplexicaul_leaf%1:20:00:: 13153532 1 0 -amplification%1:04:01:: 00365329 3 0 -amplification%1:04:02:: 00371487 1 1 -amplification%1:07:00:: 05109324 2 0 -amplifier%1:06:00:: 02705944 1 1 -amplify%2:30:00:: 00434077 1 4 -amplify%2:30:01:: 00263904 4 0 -amplify%2:30:02:: 00264386 3 0 -amplify%2:32:00:: 00839834 2 0 -amplitude%1:07:01:: 05098311 3 0 -amplitude%1:07:02:: 05115418 2 0 -amplitude%1:11:00:: 07444882 1 6 -amplitude_distortion%1:19:00:: 11512144 1 0 -amplitude_level%1:07:00:: 05098425 1 0 -amplitude_modulation%1:10:00:: 06281594 1 0 -amply%4:02:00:: 00397016 1 2 -amply%4:02:01:: 00178909 2 0 -ampoule%1:06:00:: 03923379 1 0 -ampul%1:06:00:: 03923379 1 0 -ampule%1:06:00:: 03923379 1 0 -ampulla%1:06:00:: 02706221 2 0 -ampulla%1:08:00:: 05254197 1 0 -ampullar%3:01:00:: 02618880 1 0 -ampullary%3:01:00:: 02618880 1 0 -amputate%2:35:00:: 01254692 1 2 -amputation%1:04:00:: 00666350 2 0 -amputation%1:26:00:: 14550469 1 0 -amputator%1:18:00:: 09789449 1 0 -amputee%1:18:00:: 09789566 1 0 -amrinone%1:06:00:: 02706373 1 0 -amsinckia%1:20:00:: 12816753 1 0 -amsinckia_grandiflora%1:20:00:: 12817129 1 0 -amsinckia_intermedia%1:20:00:: 12816942 1 0 -amsler_grid%1:09:00:: 05931658 1 0 -amsonia%1:20:00:: 11770526 1 0 -amsonia_tabernaemontana%1:20:00:: 11770753 1 0 -amsterdam%1:15:00:: 08949737 1 2 -amuck%4:02:00:: 00273306 2 0 -amuck%4:02:01:: 00273504 1 0 -amuck%5:00:00:insane:00 02074673 1 0 -amulet%1:06:00:: 02706586 1 1 -amun%1:18:00:: 09511368 1 0 -amun_ra%1:18:00:: 09511519 1 0 -amundsen%1:18:00:: 10816223 1 0 -amur%1:17:00:: 09196103 1 0 -amur_privet%1:20:00:: 12308112 1 0 -amur_river%1:17:00:: 09196103 1 0 -amusd%1:10:00:: 06703522 1 0 -amuse%2:32:00:: 00859758 2 1 -amuse%2:41:00:: 02492362 1 6 -amused%5:00:00:pleased:00 01805355 1 1 -amusement%1:04:00:: 00429048 2 1 -amusement%1:12:00:: 07491476 1 3 -amusement_arcade%1:06:00:: 02706806 1 0 -amusement_park%1:15:00:: 08494231 1 0 -amusing%5:00:00:humorous:00 01265308 2 0 -amusing%5:00:00:interesting:00 01344485 1 0 -amusingly%4:02:00:: 00094177 1 0 -amusive%5:00:00:interesting:00 01344485 1 0 -amy_lowell%1:18:00:: 11142517 1 0 -amy_lyon%1:18:00:: 11026078 1 0 -amygdala%1:08:00:: 05495571 1 0 -amygdalaceae%1:20:00:: 12644464 1 0 -amygdaliform%5:00:00:rounded:00 02044736 1 0 -amygdalin%1:27:00:: 14887464 1 0 -amygdaline%3:01:00:: 02619083 1 0 -amygdaloid%1:27:00:: 14722738 1 0 -amygdaloid%5:00:00:rounded:00 02044736 1 0 -amygdaloid_nucleus%1:08:00:: 05495571 1 0 -amygdaloidal%5:00:00:rounded:00 02044736 1 0 -amygdalotomy%1:04:00:: 00683722 1 0 -amygdalus%1:20:00:: 12644713 1 0 -amygdalus_communis%1:20:00:: 12645174 1 0 -amygdalus_communis_amara%1:20:00:: 12645530 1 0 -amyl%1:27:00:: 14617834 1 0 -amyl_alcohol%1:27:00:: 14744698 1 0 -amyl_nitrate%1:06:00:: 02706916 1 0 -amylaceous%5:00:00:starchy:00 02299189 1 0 -amylase%1:27:00:: 14735457 1 0 -amyloid%1:27:01:: 14730105 2 0 -amyloid%1:27:02:: 15054862 1 0 -amyloid%5:00:00:starchy:00 02299189 1 0 -amyloid_plaque%1:08:00:: 05244421 1 0 -amyloid_protein_plaque%1:08:00:: 05244421 1 0 -amyloidal%5:00:00:starchy:00 02299189 1 0 -amyloidosis%1:26:00:: 14065693 1 0 -amylolysis%1:22:00:: 13430391 1 0 -amylolytic%3:01:00:: 02619174 1 0 -amylum%1:27:00:: 15053867 1 0 -amyotonia%1:26:00:: 14545845 1 0 -amyotrophia%1:26:00:: 14105629 1 0 -amyotrophic_lateral_sclerosis%1:26:00:: 14105737 1 0 -amyotrophy%1:26:00:: 14105629 1 0 -amytal%1:06:00:: 02703692 1 0 -amyxia%1:26:00:: 14338848 1 0 -an%1:10:00:: 06698150 1 0 -an_nafud%1:15:00:: 09171376 1 0 -an_nefud%1:15:00:: 09171376 1 0 -ana%1:14:00:: 08462964 2 0 -ana%1:18:00:: 09507756 1 0 -anabantidae%1:05:00:: 02556014 1 0 -anabaptism%1:09:00:: 06231794 1 0 -anabaptist%1:18:00:: 09677427 1 2 -anabaptist_denomination%1:14:00:: 08093111 1 0 -anabas%1:05:00:: 02556195 1 0 -anabas_testudineus%1:05:00:: 02556373 1 0 -anabatic%3:00:00:: 00109633 1 0 -anabiosis%1:26:00:: 14063290 1 0 -anabiotic%3:01:00:: 02619291 1 0 -anabolic%3:00:00:: 00107648 2 0 -anabolic%3:01:00:: 02619404 1 0 -anabolic_steroid%1:27:00:: 15111116 1 0 -anabolism%1:22:00:: 13430495 1 0 -anabrus%1:05:00:: 02228565 1 0 -anabrus_simplex%1:05:00:: 02228697 1 0 -anacanthini%1:05:00:: 02521472 1 0 -anacardiaceae%1:20:00:: 12758639 1 0 -anacardium%1:20:00:: 12759120 1 0 -anacardium_occidentale%1:20:00:: 12759273 1 0 -anachronic%5:00:00:asynchronous:00 02379925 1 0 -anachronism%1:06:00:: 02707036 2 1 -anachronism%1:18:00:: 09606873 3 0 -anachronism%1:28:00:: 15180304 1 1 -anachronistic%5:00:00:asynchronous:00 02379925 1 0 -anachronistically%4:02:00:: 00228112 1 1 -anachronous%5:00:00:asynchronous:00 02379925 1 0 -anacin_iii%1:06:00:: 02674482 1 0 -anaclinal%3:00:00:: 00108263 1 0 -anaclisis%1:26:00:: 13930725 1 0 -anaclitic%3:01:00:: 02619527 1 0 -anaclitic_depression%1:26:00:: 14389739 1 0 -anacoluthia%1:10:00:: 07098989 1 0 -anacoluthic%3:01:00:: 02619686 1 0 -anacoluthon%1:10:00:: 07098989 1 0 -anaconda%1:05:00:: 01743086 1 18 -anacyclus%1:20:00:: 11920867 1 0 -anacyclus_pyrethrum%1:20:00:: 11920998 1 0 -anadama_bread%1:13:00:: 07680168 1 0 -anadenanthera%1:20:00:: 11760128 1 0 -anadenanthera_colubrina%1:20:00:: 11760294 1 0 -anadiplosis%1:10:00:: 07099598 1 0 -anadromous%3:00:00:: 00109261 1 0 -anaemia%1:26:00:: 14195315 2 0 -anaemia%1:26:01:: 14372738 1 0 -anaemic%3:01:00:: 03041331 1 0 -anaemic%5:00:00:weak:00 02324781 2 0 -anaerobe%1:05:00:: 01327028 1 0 -anaerobic%3:00:00:: 00069060 1 1 -anaerobic%3:00:02:: 00069427 2 0 -anaerobic_exercise%1:04:00:: 00625993 1 0 -anaerobiotic%3:00:00:: 00069060 1 0 -anaesthesia%1:26:00:: 14023491 1 1 -anaesthetic%1:06:00:: 02710766 1 0 -anaesthetic%3:01:00:: 03041491 1 0 -anaesthetic%5:00:00:insensible:00 02103052 2 0 -anaesthetic_agent%1:06:00:: 02710766 1 0 -anaesthetise%2:29:00:: 00021065 1 0 -anaesthetist%1:18:00:: 09793495 1 0 -anaesthetize%2:29:00:: 00021065 1 0 -anagallis%1:20:00:: 12092127 1 0 -anagallis_arvensis%1:20:00:: 12092417 1 0 -anagallis_tenella%1:20:00:: 12092629 1 0 -anagasta%1:05:00:: 02289845 1 0 -anagasta_kuehniella%1:05:00:: 02289988 1 0 -anaglyph%1:06:01:: 02707188 2 0 -anaglyph%1:06:02:: 02707344 1 0 -anaglyphic%3:01:00:: 02619839 1 0 -anaglyphical%3:01:00:: 02619839 1 0 -anaglyphy%1:22:00:: 13430786 1 0 -anaglyptic%3:01:00:: 02619839 1 0 -anaglyptical%3:01:00:: 02619839 1 0 -anagnost%1:18:00:: 09789668 1 0 -anagoge%1:09:00:: 06246241 1 0 -anagogic%3:01:00:: 02620134 1 0 -anagogical%3:01:00:: 02620134 1 0 -anagram%1:10:00:: 06287620 1 0 -anagram%2:31:00:: 00625518 1 0 -anagrammatic%3:01:00:: 02620252 1 0 -anagrammatical%3:01:00:: 02620252 1 0 -anagrammatise%2:31:00:: 00625518 1 0 -anagrammatize%2:31:00:: 00625518 1 0 -anagrams%1:04:00:: 00502030 1 0 -anagyris%1:20:00:: 12505563 1 0 -anagyris_foetida%1:20:00:: 12505752 1 0 -anaheim%1:15:00:: 09062015 1 0 -anal%3:00:00:: 00109966 2 0 -anal%3:01:00:: 02620436 1 0 -anal_intercourse%1:04:00:: 00849294 1 0 -anal_personality%1:07:00:: 04619083 1 0 -anal_phase%1:28:00:: 15145782 1 0 -anal_retentive%3:00:00:: 00109966 1 0 -anal_retentive_personality%1:07:00:: 04619083 1 0 -anal_sex%1:04:00:: 00849294 1 0 -anal_sphincter%1:08:00:: 05571713 1 0 -anal_stage%1:28:00:: 15145782 1 0 -analbuminemia%1:26:00:: 14072126 1 0 -analecta%1:10:00:: 06612538 1 0 -analects%1:10:00:: 06612538 1 0 -analeptic%1:06:00:: 02707547 1 0 -analeptic%5:00:00:stimulative:00 02309800 1 2 -analgesia%1:26:00:: 14552205 1 0 -analgesic%1:06:00:: 02707683 1 0 -analgesic%5:00:00:moderating:00 01341490 1 0 -analgetic%5:00:00:moderating:00 01341490 1 0 -analog%1:07:00:: 04746430 1 0 -analog%3:00:00:: 00110497 1 0 -analog-digital_converter%1:06:00:: 03197446 1 0 -analog-to-digital_converter%1:06:00:: 03197446 1 0 -analog_clock%1:06:00:: 02708093 1 0 -analog_computer%1:06:00:: 02708224 1 0 -analog_watch%1:06:00:: 02708433 1 0 -analogical%5:00:00:figurative:00 01419462 1 0 -analogise%2:31:00:: 00653283 1 0 -analogist%1:18:00:: 09789898 1 0 -analogize%2:31:00:: 00653283 1 0 -analogous%3:00:00:: 01221290 2 0 -analogous%5:00:00:similar:00 02071973 1 6 -analogously%4:02:00:: 00070650 1 1 -analogue%1:07:00:: 04746430 1 1 -analogue%3:00:00:: 00110497 1 0 -analogue_computer%1:06:00:: 02708224 1 1 -analogy%1:04:00:: 00651176 2 2 -analogy%1:09:00:: 05780339 1 2 -analogy%1:09:01:: 05942579 3 0 -analphabet%1:18:00:: 09790047 1 0 -analphabetic%1:18:00:: 09790047 1 0 -analphabetic%3:00:00:: 00101152 2 0 -analphabetic%3:01:00:: 02614435 1 0 -analphabetic%5:00:00:illiterate:00 01421887 3 0 -analphabetism%1:09:00:: 05649256 1 0 -analysand%1:18:00:: 09790188 1 0 -analyse%2:31:00:: 00644583 1 2 -analyse%2:31:01:: 00643473 3 0 -analyse%2:31:02:: 00643197 4 0 -analyse%2:31:04:: 00736216 2 0 -analyser%1:06:00:: 02708711 1 0 -analysis%1:04:00:: 00634276 1 45 -analysis%1:04:01:: 00704305 6 0 -analysis%1:09:00:: 05772667 2 5 -analysis%1:09:02:: 06014043 5 0 -analysis%1:10:00:: 06376014 3 2 -analysis%1:10:01:: 07067876 4 0 -analysis_of_variance%1:09:00:: 06030601 1 0 -analysis_situs%1:09:00:: 06017594 1 0 -analyst%1:18:00:: 09790482 1 9 -analyst%1:18:01:: 09790278 3 0 -analyst%1:18:02:: 09791530 2 0 -analytic%3:00:01:: 00110853 4 0 -analytic%3:00:02:: 00111415 3 0 -analytic%3:00:03:: 00112231 2 3 -analytic%3:01:00:: 02620550 1 10 -analytic_geometry%1:09:00:: 06008382 1 0 -analytic_thinking%1:09:00:: 05772667 1 0 -analytical%3:00:03:: 00112231 1 1 -analytical%3:00:04:: 00110853 2 0 -analytical_balance%1:06:00:: 02708555 1 0 -analytical_cubism%1:14:00:: 08476988 1 5 -analytical_geometry%1:09:00:: 06008382 1 0 -analytical_review%1:21:00:: 13411785 1 0 -analytically%4:02:00:: 00240533 1 1 -analyticity%1:07:00:: 05208690 1 1 -analyzable%5:00:00:complex:00 02176741 1 0 -analyze%2:31:00:: 00644583 1 21 -analyze%2:31:01:: 00643473 2 2 -analyze%2:31:03:: 00643197 4 0 -analyze%2:31:04:: 00736216 3 0 -analyzed%3:00:00:: 00416765 1 0 -analyzer%1:06:00:: 02708711 1 1 -anamnesis%1:09:00:: 05761918 2 0 -anamnesis%1:10:00:: 06515297 1 0 -anamnestic%3:01:00:: 02620724 1 0 -anamnestic_reaction%1:04:00:: 00860857 1 0 -anamnestic_response%1:04:00:: 00860857 1 0 -anamorphic%3:01:01:: 02620863 2 0 -anamorphic%3:01:02:: 02620992 1 0 -anamorphism%1:06:00:: 02708885 3 0 -anamorphism%1:22:00:: 13431043 2 0 -anamorphism%1:22:01:: 13431221 1 0 -anamorphosis%1:06:00:: 02708885 2 0 -anamorphosis%1:22:00:: 13431221 1 0 -ananas%1:13:00:: 07753275 2 0 -ananas%1:20:00:: 12607198 1 0 -ananas_comosus%1:20:00:: 12607456 1 0 -ananias%1:18:00:: 09607055 1 0 -anapaest%1:10:00:: 07095390 1 0 -anapaestic%3:01:00:: 02938689 1 0 -anapest%1:10:00:: 07095390 1 0 -anapestic%3:01:00:: 02938689 1 0 -anaphalis%1:20:00:: 11921200 1 0 -anaphalis_margaritacea%1:20:00:: 11921395 1 0 -anaphase%1:22:00:: 13431380 1 0 -anaphasic%3:01:00:: 02621117 1 0 -anaphor%1:10:00:: 06287859 1 0 -anaphora%1:10:00:: 07100815 1 0 -anaphora%1:10:01:: 07100678 2 0 -anaphoric%3:01:00:: 02938590 1 0 -anaphoric_pronoun%1:10:00:: 06325576 1 0 -anaphoric_relation%1:24:00:: 13802805 1 0 -anaphrodisia%1:12:00:: 07488676 1 0 -anaphrodisiac%3:00:00:: 02137713 1 0 -anaphylactic%3:01:00:: 03140875 1 0 -anaphylactic_shock%1:26:00:: 14067902 1 0 -anaphylaxis%1:26:00:: 14533547 1 0 -anaplasia%1:26:00:: 14369194 1 0 -anaplasmosis%1:26:00:: 14260044 1 1 -anaplastic%3:01:00:: 02621246 1 0 -anaplasty%1:04:00:: 00690501 1 0 -anaprox%1:06:00:: 03808144 1 0 -anapsid%1:05:00:: 01661592 1 0 -anapsid_reptile%1:05:00:: 01661592 1 0 -anapsida%1:05:00:: 01661404 1 0 -anapurna%1:17:00:: 09197945 2 0 -anapurna%1:18:00:: 09527560 1 0 -anarchic%5:00:00:uncontrolled:00 00600192 1 0 -anarchical%5:00:00:uncontrolled:00 00600192 1 0 -anarchically%4:02:00:: 00240865 1 0 -anarchism%1:09:00:: 06213890 1 0 -anarchist%1:18:00:: 09791816 1 1 -anarchistic%3:01:00:: 02621348 1 0 -anarchy%1:26:00:: 13973059 1 2 -anarhichadidae%1:05:00:: 02616572 1 0 -anarhichas%1:05:00:: 02616705 1 0 -anarthria%1:26:00:: 14100092 1 0 -anas%1:05:00:: 01847565 1 0 -anas_acuta%1:05:00:: 01849157 1 0 -anas_americana%1:05:00:: 01848840 1 0 -anas_clypeata%1:05:00:: 01848976 1 0 -anas_crecca%1:05:00:: 01848323 1 0 -anas_discors%1:05:00:: 01848453 1 0 -anas_penelope%1:05:00:: 01848648 1 0 -anas_platyrhynchos%1:05:00:: 01847806 1 0 -anas_querquedula%1:05:00:: 01848555 1 0 -anas_rubripes%1:05:00:: 01847978 1 0 -anasa%1:05:00:: 02239659 1 0 -anasa_tristis%1:05:00:: 02239774 1 0 -anasarca%1:26:00:: 14315897 1 0 -anasarcous%3:01:00:: 02621496 1 0 -anasazi%1:18:00:: 09647473 1 0 -anaspid%1:05:00:: 01475940 1 0 -anaspida%1:05:00:: 01475794 1 0 -anastalsis%1:22:00:: 13431569 1 0 -anastatica%1:20:00:: 11870916 1 0 -anastatica_hierochuntica%1:20:00:: 11871059 1 0 -anastigmat%1:06:00:: 02709101 1 0 -anastigmatic%3:00:00:: 00108595 2 0 -anastigmatic%3:01:00:: 02621609 1 0 -anastigmatic_lens%1:06:00:: 02709265 1 0 -anastomose%2:35:00:: 01292169 2 0 -anastomose%2:35:01:: 01292366 1 0 -anastomosis%1:08:00:: 05249420 1 7 -anastomotic%3:01:00:: 02948363 1 1 -anastomotic_vein%1:08:00:: 05357366 1 0 -anastomus%1:05:00:: 02003456 1 0 -anastrophe%1:10:00:: 07101140 1 0 -anastylosis%1:04:00:: 00269471 1 0 -anathema%1:10:00:: 07233863 2 0 -anathema%1:18:00:: 09792125 1 0 -anathematisation%1:04:00:: 00206600 1 0 -anathematise%2:32:00:: 00864910 1 0 -anathematization%1:04:00:: 00206600 1 0 -anathematize%2:32:00:: 00864910 1 0 -anathemise%2:32:00:: 00864910 2 0 -anathemise%2:32:01:: 00865958 1 0 -anathemize%2:32:00:: 00865958 1 0 -anathemize%2:32:01:: 00864910 2 0 -anatidae%1:05:00:: 01845627 1 0 -anatole_france%1:18:00:: 10977368 1 0 -anatoli_karpov%1:18:00:: 11096991 1 0 -anatoli_yevgenevich_karpov%1:18:00:: 11096991 1 0 -anatolia%1:15:00:: 08701942 1 0 -anatolian%1:10:00:: 06975594 1 0 -anatolian_language%1:10:00:: 06975594 1 0 -anatomic%3:01:00:: 02897524 1 1 -anatomic%3:01:01:: 02897730 2 0 -anatomical%1:10:00:: 07151892 1 2 -anatomical%3:01:00:: 02897524 1 7 -anatomical%3:01:01:: 02897730 2 0 -anatomical_reference%1:10:00:: 07151892 1 0 -anatomical_sphincter%1:08:00:: 05570839 1 0 -anatomical_structure%1:08:00:: 05225602 1 0 -anatomically%4:02:00:: 00064083 1 2 -anatomise%2:35:00:: 01550594 1 0 -anatomist%1:18:00:: 09792237 1 0 -anatomize%2:31:00:: 00645241 2 0 -anatomize%2:35:00:: 01550594 1 0 -anatomy%1:04:00:: 00646187 3 1 -anatomy%1:08:00:: 05217168 2 2 -anatomy%1:09:00:: 06057539 1 4 -anatotitan%1:05:00:: 01706401 1 0 -anatoxin%1:27:00:: 15034454 1 0 -anatropous%3:00:00:: 01029710 1 0 -anatropous_ovule%1:20:00:: 11679652 1 0 -anaxagoras%1:18:00:: 10816424 1 0 -anaximander%1:18:00:: 10816644 1 0 -anaximenes%1:18:00:: 10816890 1 0 -ancestor%1:18:00:: 09792555 1 2 -ancestor_worship%1:04:00:: 01029323 1 0 -ancestral%3:01:00:: 02604913 2 0 -ancestral%5:00:00:inheritable:00 01314197 1 5 -ancestress%1:18:00:: 09792896 1 0 -ancestry%1:07:00:: 04922787 2 0 -ancestry%1:14:00:: 08101937 1 3 -anchor%1:06:00:: 02709367 1 3 -anchor%1:09:00:: 05694232 2 1 -anchor%1:18:00:: 09792969 3 0 -anchor%2:35:00:: 01304716 2 3 -anchor%2:35:01:: 01304944 1 3 -anchor_chain%1:06:00:: 02709637 1 0 -anchor_light%1:06:00:: 02709763 1 0 -anchor_ring%1:25:00:: 13875392 1 0 -anchor_rope%1:06:00:: 02709637 1 0 -anchorage%1:04:00:: 00052052 5 0 -anchorage%1:15:00:: 08639776 4 0 -anchorage%1:15:01:: 09055906 3 0 -anchorage%1:21:00:: 13320691 2 0 -anchorage%1:26:00:: 13923582 1 0 -anchorage_ground%1:15:00:: 08639776 1 0 -anchorite%1:18:00:: 10519126 1 0 -anchoritic%5:00:00:unworldly:00 02578546 1 0 -anchorman%1:18:00:: 09792969 1 0 -anchorperson%1:18:00:: 09792969 1 0 -anchovy%1:05:00:: 02533834 2 0 -anchovy%1:13:00:: 07783667 1 0 -anchovy_butter%1:13:00:: 07856895 1 0 -anchovy_dressing%1:13:00:: 07834065 1 0 -anchovy_paste%1:13:00:: 07783827 1 0 -anchovy_pear%1:13:00:: 07753448 2 0 -anchovy_pear%1:20:00:: 12327528 1 0 -anchovy_pear_tree%1:20:00:: 12327528 1 0 -anchovy_pizza%1:13:00:: 07874343 1 0 -anchovy_sauce%1:13:00:: 07830493 1 0 -anchusa%1:20:00:: 12817464 1 0 -anchusa_capensis%1:20:00:: 12817855 1 0 -anchusa_officinalis%1:20:00:: 12817694 1 0 -anchusa_riparia%1:20:00:: 12818004 1 0 -anchylosis%1:26:00:: 14022520 1 0 -ancien_regime%1:14:00:: 08051739 1 0 -ancient%1:18:00:: 09793141 2 0 -ancient%1:18:01:: 09793248 1 0 -ancient%5:00:00:old:02 01644847 2 5 -ancient%5:00:00:past:00 01728614 1 5 -ancient_greek%1:10:00:: 06977434 1 0 -ancient_history%1:09:00:: 05612531 2 0 -ancient_history%1:10:00:: 06514529 1 0 -ancient_pine%1:20:00:: 11612575 1 0 -anciently%4:02:00:: 00005210 1 1 -ancientness%1:07:00:: 04925756 1 0 -ancients%1:14:00:: 07943646 1 0 -ancillary%5:00:00:supportive:00 02354897 1 0 -ancistrodon%1:05:00:: 01754190 1 1 -ancohuma%1:17:00:: 09196302 1 0 -anconeous_muscle%1:08:00:: 05292856 1 0 -ancylidae%1:05:00:: 01949684 1 0 -ancylose%2:29:00:: 00096264 2 0 -ancylose%2:29:01:: 00096396 1 0 -ancylostomatidae%1:05:00:: 01932800 1 0 -ancylus%1:05:00:: 01949817 1 0 -ancylus_fluviatilis%1:05:00:: 01949973 1 0 -and_circuit%1:06:00:: 02709908 1 0 -and_gate%1:06:00:: 02709908 1 0 -and_how%4:02:00:: 00152345 1 0 -and_so%4:02:00:: 00117620 1 0 -and_so_forth%4:02:00:: 00103664 1 4 -and_so_on%4:02:00:: 00103664 1 9 -and_then%4:02:00:: 00117620 1 76 -and_then_some%4:02:00:: 00152440 1 0 -andalucia%1:15:00:: 08493261 1 0 -andalusia%1:15:00:: 08493261 1 0 -andalusian%3:01:00:: 02621799 1 0 -andaman_marble%1:20:00:: 12770892 1 0 -andaman_redwood%1:20:00:: 12565590 1 0 -andaman_sea%1:17:00:: 09196454 1 0 -andante%1:10:00:: 07040148 2 0 -andante%1:28:00:: 15265219 1 0 -andante%4:02:00:: 00267812 1 0 -andante%5:00:00:slow:02 00982954 1 0 -andantino%5:00:00:fast:02 00982275 1 0 -andean%3:01:00:: 03025853 1 1 -andean_condor%1:05:00:: 01619835 1 0 -andelmin%1:20:00:: 12506181 1 0 -anders_celsius%1:18:00:: 10888891 1 0 -andersen%1:18:00:: 10817102 1 0 -anderson%1:18:00:: 10817244 5 0 -anderson%1:18:01:: 10817458 4 0 -anderson%1:18:02:: 10817607 3 0 -anderson%1:18:03:: 10817717 2 0 -anderson%1:18:04:: 10817935 1 0 -andes%1:17:00:: 09196611 1 0 -andesite%1:27:00:: 14725364 1 0 -andhra_pradesh%1:15:00:: 08904954 1 0 -andira%1:20:00:: 12505987 1 0 -andira_inermis%1:20:00:: 12506341 1 0 -andiron%1:06:00:: 02710044 1 0 -andorra%1:15:00:: 09023118 1 0 -andorran%1:18:00:: 09690496 1 0 -andorran%3:01:00:: 02978000 1 0 -andradite%1:27:00:: 14829264 1 0 -andre_derain%1:18:00:: 10931333 1 0 -andre_eglevsky%1:18:00:: 10953344 1 0 -andre_gide%1:18:00:: 10998651 1 0 -andre_le_notre%1:18:00:: 11127011 1 0 -andre_maginot%1:18:00:: 11149243 1 0 -andre_malraux%1:18:00:: 11152758 1 0 -andre_markoff%1:18:00:: 11157275 1 0 -andre_maurois%1:18:00:: 11165712 1 0 -andre_paul_guillaume_gide%1:18:00:: 10998651 1 0 -andre_weil%1:18:00:: 11379691 1 0 -andrea_guarneri%1:18:00:: 11017831 1 0 -andrea_mantegna%1:18:00:: 11154857 1 0 -andrea_palladio%1:18:00:: 11221495 1 0 -andreaea%1:20:00:: 11539825 1 0 -andreaeales%1:20:00:: 11539675 1 0 -andreas_vesalius%1:18:00:: 11364419 1 0 -andrei_andreyevich_gromyko%1:18:00:: 11017118 1 0 -andrei_arsenevich_tarkovsky%1:18:00:: 11331669 1 0 -andrei_dimitrievich_sakharov%1:18:00:: 11278498 1 0 -andrei_gromyko%1:18:00:: 11017118 1 0 -andrei_markov%1:18:00:: 11157275 1 0 -andrei_sakharov%1:18:00:: 11278498 1 0 -andrei_tarkovsky%1:18:00:: 11331669 1 0 -andrei_voznesenski%1:18:00:: 11369444 1 0 -andrena%1:05:00:: 02210427 1 8 -andrenid%1:05:00:: 02210427 1 0 -andrenidae%1:05:00:: 02210096 1 0 -andres_martinez%1:18:00:: 11201386 1 0 -andres_segovia%1:18:00:: 11291284 1 0 -andrew%1:18:00:: 10818088 1 0 -andrew's_clintonia%1:20:00:: 12472326 1 0 -andrew_carnegie%1:18:00:: 10882988 1 0 -andrew_d._white%1:18:00:: 11383546 1 0 -andrew_dickson_white%1:18:00:: 11383546 1 0 -andrew_fielding_huxley%1:18:00:: 11069974 1 0 -andrew_huxley%1:18:00:: 11069974 1 0 -andrew_jackson%1:18:00:: 11075823 1 0 -andrew_jackson_downing%1:18:00:: 10942279 1 0 -andrew_johnson%1:18:00:: 11088059 1 0 -andrew_lloyd_webber%1:18:00:: 11136405 1 0 -andrew_marvell%1:18:00:: 11160361 1 0 -andrew_mellon%1:18:00:: 11172609 1 0 -andrew_w._mellon%1:18:00:: 11172609 1 0 -andrew_william_mellon%1:18:00:: 11172609 1 0 -andrew_wyeth%1:18:00:: 11400126 1 0 -andrews%1:18:00:: 10818312 1 0 -andricus%1:05:00:: 02217201 1 0 -andrija_mohorovicic%1:18:00:: 11184531 1 0 -androecium%1:20:00:: 13093928 1 0 -androgen%1:27:00:: 14747587 1 0 -androgenesis%1:22:00:: 13431722 1 0 -androgenetic%3:01:00:: 02621901 1 0 -androgenic%3:01:00:: 02622093 1 0 -androgenic_hormone%1:27:00:: 14747587 1 0 -androgenous%3:01:00:: 02621901 1 0 -androgeny%1:22:00:: 13431722 1 0 -androglossia%1:07:00:: 04982113 1 0 -androgyne%1:18:00:: 10172080 1 0 -androgynous%3:00:00:: 01478626 2 0 -androgynous%3:01:01:: 02622210 1 0 -androgyny%1:07:00:: 05008746 1 0 -android%1:06:00:: 02710201 1 0 -andromeda%1:17:00:: 09197271 4 0 -andromeda%1:18:00:: 09497364 3 0 -andromeda%1:20:00:: 12229443 2 0 -andromeda%1:20:02:: 12243459 1 0 -andromeda_galaxy%1:14:00:: 08271656 1 0 -andromeda_glaucophylla%1:20:00:: 12229651 1 0 -andromeda_polifolia%1:20:00:: 12229887 1 0 -androphobia%1:26:00:: 14381997 1 0 -andropogon%1:20:00:: 12108249 1 0 -andropogon_furcatus%1:20:00:: 12133682 1 0 -andropogon_gerardii%1:20:00:: 12133682 1 0 -andropogon_scoparius%1:20:00:: 12133462 1 0 -andropogon_virginicus%1:20:00:: 12108613 1 0 -androsterone%1:27:00:: 14747981 1 0 -andryala%1:20:00:: 11921792 1 0 -andrzej_wajda%1:18:00:: 11370554 1 0 -andvari%1:18:00:: 09579198 1 0 -andy_warhol%1:18:00:: 11374448 1 0 -ane%5:00:00:cardinal:00 02186338 1 0 -anecdotal%3:01:00:: 03044331 1 0 -anecdotal%5:00:00:communicative:00 00495916 2 0 -anecdote%1:10:00:: 07220586 1 8 -anecdotic%5:00:00:communicative:00 00495916 1 0 -anecdotical%5:00:00:communicative:00 00495916 1 0 -anecdotist%1:18:00:: 09793352 1 0 -anechoic%5:00:00:unreverberant:00 02011320 1 0 -anechoic_chamber%1:06:00:: 02710324 1 0 -aneides%1:05:00:: 01636984 1 0 -aneides_lugubris%1:05:00:: 01637338 1 0 -anele%2:29:00:: 00085626 1 0 -anemia%1:20:00:: 12955639 3 0 -anemia%1:26:00:: 14195315 1 5 -anemia%1:26:01:: 14372738 2 0 -anemia_adiantifolia%1:20:00:: 12955840 1 0 -anemic%3:01:00:: 03041331 2 0 -anemic%5:00:00:weak:00 02324781 1 1 -anemic_anoxia%1:26:00:: 14043458 1 0 -anemic_hypoxia%1:26:00:: 14041508 1 0 -anemographic%3:01:00:: 02622386 1 0 -anemography%1:04:00:: 00998329 1 0 -anemometer%1:06:00:: 02710429 1 0 -anemometric%3:01:00:: 02622493 1 0 -anemometrical%3:01:00:: 02622493 1 0 -anemometry%1:04:00:: 00998423 1 0 -anemone%1:05:00:: 01914609 2 0 -anemone%1:20:00:: 11725015 1 0 -anemone_canadensis%1:20:00:: 11725480 1 0 -anemone_cylindrica%1:20:00:: 11725623 1 0 -anemone_fish%1:05:00:: 02607072 1 0 -anemone_ludoviciana%1:20:00:: 11737752 1 0 -anemone_nemorosa%1:20:00:: 11725821 1 0 -anemone_occidentalis%1:20:00:: 11738063 1 0 -anemone_pulsatilla%1:20:00:: 11738203 1 0 -anemone_quinquefolia%1:20:00:: 11725973 1 0 -anemone_riparia%1:20:00:: 11726145 1 0 -anemone_sylvestris%1:20:00:: 11726269 1 0 -anemone_tetonensis%1:20:00:: 11725311 1 0 -anemone_virginiana%1:20:00:: 11726433 1 0 -anemonella%1:20:00:: 11726569 1 0 -anemonella_thalictroides%1:20:00:: 11726707 1 0 -anemophilous%3:00:00:: 00196664 1 0 -anemopsis%1:20:00:: 13152203 1 0 -anemopsis_californica%1:20:00:: 13152339 1 0 -anencephalia%1:26:00:: 14152617 1 0 -anencephalic%3:01:00:: 02622678 1 0 -anencephalous%3:01:00:: 02622678 1 0 -anencephaly%1:26:00:: 14152617 1 0 -anergy%1:26:00:: 14128536 1 0 -anergy%1:26:01:: 14010845 2 0 -aneroid%1:06:00:: 02710600 1 0 -aneroid%3:01:00:: 03042661 1 0 -aneroid_barometer%1:06:00:: 02710600 1 0 -anesthesia%1:26:00:: 14023491 1 0 -anesthesiologist%1:18:00:: 09793495 1 0 -anesthesiology%1:09:00:: 06046383 1 0 -anesthetic%1:06:00:: 02710766 1 0 -anesthetic%3:01:00:: 03041491 1 0 -anesthetic%5:00:00:insensible:00 02103052 2 0 -anesthetic_agent%1:06:00:: 02710766 1 0 -anesthetise%2:29:00:: 00021065 1 0 -anesthetist%1:18:00:: 09793495 1 0 -anesthetize%2:29:00:: 00021065 1 0 -anesthyl%1:06:00:: 02711110 1 0 -anestric%3:01:00:: 02622859 1 0 -anestrous%3:00:00:: 02138257 2 0 -anestrous%3:01:00:: 02622859 1 0 -anestrum%1:26:00:: 14038482 1 0 -anestrus%1:26:00:: 14038482 1 0 -anethum%1:20:00:: 12931449 1 0 -anethum_graveolens%1:20:00:: 12931542 1 0 -aneuploid%3:01:00:: 03005728 1 0 -aneuploidy%1:26:00:: 14022661 1 0 -aneurin%1:27:00:: 15091129 1 0 -aneurism%1:26:00:: 14106025 1 0 -aneurismal%3:01:00:: 03005862 1 0 -aneurismatic%3:01:00:: 03005862 1 0 -aneurysm%1:26:00:: 14106025 1 0 -aneurysmal%3:01:00:: 03005862 1 0 -aneurysmatic%3:01:00:: 03005862 1 0 -anew%4:02:00:: 00112843 1 3 -anfractuous%5:00:00:crooked:01 02312250 1 0 -ang%1:14:00:: 08197149 1 0 -angara%1:17:00:: 09197432 1 0 -angara_river%1:17:00:: 09197432 1 0 -angas%1:10:00:: 06982989 1 0 -angel%1:17:00:: 09197660 4 0 -angel%1:18:00:: 09538915 1 8 -angel%1:18:02:: 09793717 3 0 -angel%1:18:03:: 10546850 2 0 -angel's_trumpet%1:20:01:: 12899537 2 0 -angel's_trumpet%1:20:02:: 12899752 1 0 -angel-wing_begonia%1:20:00:: 12361135 1 0 -angel_cake%1:13:00:: 07632240 1 0 -angel_dust%1:06:00:: 03921499 1 0 -angel_falls%1:17:00:: 09197660 1 0 -angel_food_cake%1:13:00:: 07632240 1 0 -angel_shark%1:05:00:: 01495493 1 0 -angelfish%1:05:01:: 01495493 3 0 -angelfish%1:05:02:: 02605936 1 0 -angelfish%1:05:03:: 02604954 2 0 -angelic%3:01:00:: 02870663 2 0 -angelic%5:00:00:good:02 01130261 1 2 -angelic%5:00:00:lovable:00 01459949 3 0 -angelica%1:13:01:: 07826340 3 0 -angelica%1:13:02:: 07826453 2 0 -angelica%1:20:00:: 12931906 1 0 -angelica_archangelica%1:20:00:: 12932173 1 0 -angelica_sylvestris%1:20:00:: 12932365 1 0 -angelical%3:01:00:: 02870663 1 0 -angelical%5:00:00:good:02 01130261 3 0 -angelical%5:00:00:lovable:00 01459949 2 0 -angelically%4:02:00:: 00268056 1 0 -angelim%1:20:00:: 12506181 1 0 -angelique%1:20:00:: 12931906 1 0 -angelo_correr%1:18:00:: 11014450 1 0 -angelo_guiseppe_roncalli%1:18:00:: 11086607 1 0 -angelology%1:09:00:: 06182757 1 0 -angelus%1:10:00:: 06456384 2 0 -angelus%1:11:00:: 07446744 1 0 -angelus_bell%1:11:00:: 07446744 1 0 -anger%1:04:00:: 00758972 3 0 -anger%1:12:00:: 07516354 1 22 -anger%1:26:00:: 14036539 2 1 -anger%2:37:00:: 01785971 1 1 -anger%2:37:01:: 01787106 2 0 -angered%5:00:00:angry:00 00114454 1 0 -angevin%1:18:00:: 09709229 1 0 -angevine%1:18:00:: 09709229 1 0 -angiitis%1:26:00:: 14258176 1 0 -angina%1:26:00:: 14173625 1 0 -angina%1:26:01:: 14108039 2 0 -angina_pectoris%1:26:00:: 14108039 1 0 -anginal%3:01:00:: 02623037 1 0 -anginose%3:01:00:: 02623037 1 0 -anginous%3:01:00:: 02623037 1 0 -angiocardiogram%1:06:00:: 02711237 1 0 -angiocarp%1:20:00:: 11665648 1 0 -angiocarpic%3:01:00:: 02623229 1 0 -angiocarpous%3:01:00:: 02623229 1 0 -angioedema%1:26:00:: 14120310 1 0 -angiogenesis%1:22:00:: 13431992 1 0 -angiogenesis_inhibitor%1:06:00:: 02711422 1 0 -angiogram%1:06:00:: 02711573 1 0 -angiography%1:04:00:: 00905336 1 0 -angiohemophilia%1:26:00:: 14171176 1 0 -angiologist%1:18:00:: 09793830 1 0 -angiology%1:09:00:: 06046528 1 0 -angioma%1:26:00:: 14235928 1 0 -angiomatous%3:01:00:: 02623387 1 0 -angiopathy%1:26:00:: 14071419 1 0 -angioplasty%1:04:00:: 00666468 1 0 -angiopteris%1:20:00:: 13215586 1 0 -angiopteris_evecta%1:20:00:: 13215586 1 0 -angiosarcoma%1:26:00:: 14240262 1 0 -angioscope%1:06:00:: 02711780 1 0 -angiosperm%1:20:00:: 11665372 1 0 -angiospermae%1:20:00:: 11664929 1 0 -angiospermous%3:01:00:: 02623529 1 0 -angiospermous_tree%1:20:00:: 13109733 1 0 -angiospermous_yellowwood%1:20:00:: 11650919 1 0 -angiotelectasia%1:26:00:: 14014521 1 0 -angiotensin%1:06:00:: 02711890 1 0 -angiotensin-converting_enzyme%1:27:00:: 14735642 1 0 -angiotensin-converting_enzyme_inhibitor%1:06:00:: 02673637 1 0 -angiotensin_converting_enzyme%1:27:00:: 14735642 1 0 -angiotensin_i%1:06:00:: 02712134 1 0 -angiotensin_ii%1:06:00:: 02712280 1 0 -angiotensin_ii_inhibitor%1:06:00:: 02712393 1 0 -angiotonin%1:06:00:: 02711890 1 0 -angle%1:09:00:: 06211078 2 2 -angle%1:18:00:: 09702673 3 0 -angle%1:25:00:: 13887509 1 10 -angle%2:31:00:: 00680485 5 0 -angle%2:33:00:: 01141612 4 0 -angle%2:35:00:: 01319346 3 0 -angle%2:38:00:: 02038357 2 0 -angle%2:38:01:: 02044866 1 2 -angle-closure_glaucoma%1:26:00:: 14255536 1 0 -angle-park%2:38:00:: 01934731 1 0 -angle_bracket%1:06:00:: 02712545 2 0 -angle_bracket%1:10:00:: 06842452 1 0 -angle_iron%1:06:00:: 02712545 1 0 -angle_of_attack%1:25:00:: 13891082 1 0 -angle_of_dip%1:25:00:: 13892897 1 0 -angle_of_extinction%1:25:00:: 13891735 1 1 -angle_of_incidence%1:25:00:: 13890869 1 0 -angle_of_inclination%1:25:00:: 13889602 1 0 -angle_of_reflection%1:25:00:: 13891371 1 0 -angle_of_refraction%1:25:00:: 13891547 1 0 -angle_of_view%1:25:00:: 13919059 1 0 -angled%5:00:00:angular:00 02048247 1 0 -angled_loofah%1:20:00:: 12166929 1 0 -angledozer%1:06:00:: 02712643 1 0 -angler%1:05:00:: 02548247 3 0 -angler%1:18:00:: 09793946 2 0 -angler%1:18:01:: 09794081 1 0 -angler_fish%1:05:00:: 02548247 1 0 -anglerfish%1:05:00:: 02548247 1 0 -anglesea%1:15:00:: 08895928 1 0 -anglesea_island%1:15:00:: 08895928 1 0 -anglesey%1:15:00:: 08895928 1 0 -anglesey_island%1:15:00:: 08895928 1 0 -anglewing%1:05:00:: 02277422 1 0 -angleworm%1:05:00:: 01935395 1 0 -anglia%1:15:00:: 08873067 1 0 -anglian%1:10:00:: 06949852 1 0 -anglican%1:18:00:: 09958292 1 2 -anglican%3:01:00:: 02954459 1 8 -anglican_catholic%1:18:00:: 09680235 1 0 -anglican_church%1:14:00:: 08087981 1 2 -anglican_communion%1:14:00:: 08087981 1 0 -anglicanism%1:09:00:: 06229106 1 0 -anglicisation%1:22:00:: 13432085 1 0 -anglicise%2:30:00:: 00300317 1 0 -anglicism%1:04:00:: 00413674 2 0 -anglicism%1:10:00:: 07081473 1 0 -anglicization%1:22:00:: 13432085 1 0 -anglicize%2:30:00:: 00300317 1 0 -angling%1:04:00:: 00454237 1 0 -anglo-american%1:18:00:: 09740724 1 3 -anglo-catholic%3:01:00:: 02921108 1 0 -anglo-catholicism%1:09:00:: 06229240 1 0 -anglo-french%1:10:00:: 06965834 1 0 -anglo-indian%1:18:00:: 09702541 1 0 -anglo-indian%3:01:00:: 02921199 1 0 -anglo-jewish%3:01:00:: 02922690 1 1 -anglo-norman%1:10:00:: 06965834 1 0 -anglo-saxon%1:10:00:: 06949591 3 0 -anglo-saxon%1:18:00:: 09701977 1 2 -anglo-saxon%1:18:01:: 09702134 2 0 -anglo-saxon%3:01:00:: 03114843 1 1 -anglo-saxon_deity%1:18:00:: 09586011 1 0 -anglomania%1:09:00:: 05670512 1 0 -anglophil%1:18:00:: 09794211 1 0 -anglophile%1:18:00:: 09794211 1 0 -anglophilia%1:12:00:: 07500957 1 1 -anglophilic%3:01:00:: 02623672 1 0 -anglophobe%1:18:00:: 09794320 1 0 -anglophobia%1:12:00:: 07502099 1 0 -anglophobic%3:01:00:: 02623776 1 0 -angola%1:15:00:: 08707917 1 0 -angolan%1:18:00:: 09690621 1 0 -angolan%3:01:00:: 03042812 1 0 -angolan_capital%1:15:00:: 08708304 1 0 -angolan_monetary_unit%1:23:00:: 13683805 1 0 -angolese%1:18:00:: 09690762 1 0 -angora%1:05:01:: 02417387 2 0 -angora%1:05:02:: 02328150 3 0 -angora%1:05:03:: 02123478 4 0 -angora%1:15:00:: 09040601 1 0 -angora_cat%1:05:00:: 02123478 1 0 -angora_goat%1:05:00:: 02417387 1 0 -angora_rabbit%1:05:00:: 02328150 1 0 -angostura%1:20:00:: 13163093 1 0 -angostura_bark%1:20:00:: 13163093 1 0 -angostura_bridge%1:06:00:: 02712762 1 0 -angoumois_grain_moth%1:05:00:: 02294097 1 0 -angoumois_moth%1:05:00:: 02294097 1 0 -angraecum%1:20:00:: 12044571 1 0 -angrecum%1:20:00:: 12044784 1 0 -angrily%4:02:00:: 00227323 1 6 -angriness%1:26:00:: 14036539 1 0 -angry%3:00:00:: 00113818 1 17 -angry%5:00:00:stormy:00 00304144 2 1 -angry%5:00:00:unhealthy:00 01173697 3 0 -angry_walk%1:04:00:: 00290015 1 0 -angst%1:12:00:: 07526002 1 2 -angstrom%1:23:00:: 13658027 1 0 -angstrom_unit%1:23:00:: 13658027 1 0 -anguid_lizard%1:05:00:: 01689411 1 0 -anguidae%1:05:00:: 01689226 1 0 -anguilla%1:05:00:: 02526673 2 0 -anguilla%1:15:00:: 08708742 1 0 -anguilla_sucklandii%1:05:00:: 02527057 1 0 -anguillan%1:18:00:: 09690864 1 0 -anguillan%3:01:01:: 03042986 1 0 -anguillidae%1:05:00:: 02526486 1 0 -anguilliformes%1:05:00:: 02525866 1 0 -anguillula%1:05:00:: 01931984 1 0 -anguillula_aceti%1:05:00:: 01932151 1 0 -anguine%3:01:00:: 02623880 1 0 -anguis%1:05:00:: 01690005 1 0 -anguis_fragilis%1:05:00:: 01690149 1 0 -anguish%1:12:02:: 07496755 1 4 -anguish%1:26:00:: 14449022 2 2 -anguish%2:37:00:: 01792567 2 0 -anguish%2:37:02:: 01794969 1 0 -anguished%5:00:00:sorrowful:00 01364585 1 1 -angular%3:00:00:: 02047807 2 1 -angular%3:01:00:: 02930616 1 1 -angular_acceleration%1:19:00:: 11469108 1 0 -angular_artery%1:08:00:: 05335850 1 0 -angular_distance%1:25:00:: 13888491 1 0 -angular_momentum%1:07:00:: 05029327 1 0 -angular_position%1:24:00:: 13836371 1 0 -angular_shape%1:25:00:: 13864763 1 0 -angular_unit%1:23:00:: 13600097 1 0 -angular_vein%1:08:00:: 05357500 1 0 -angular_velocity%1:19:00:: 11469265 1 0 -angularity%1:07:00:: 05070849 2 0 -angularity%1:25:00:: 13864763 1 0 -angulate%2:30:00:: 00573457 1 0 -angulate%3:00:00:: 02047807 1 0 -angulation%1:04:00:: 00405106 2 0 -angulation%1:04:01:: 00998514 1 0 -angus%1:05:00:: 02405929 2 0 -angus%1:18:00:: 09507909 1 0 -angus_frank_johnstone_wilson%1:18:00:: 11392210 1 0 -angus_og%1:18:00:: 09507909 1 0 -angwantibo%1:05:00:: 02499568 1 0 -anhedonia%1:26:00:: 14026285 1 0 -anhidrosis%1:26:00:: 14023804 1 0 -anhima%1:05:00:: 01860713 1 0 -anhima_cornuta%1:05:00:: 01860864 1 0 -anhimidae%1:05:00:: 01860337 1 0 -anhinga%1:05:00:: 02054502 1 0 -anhinga_anhinga%1:05:00:: 02054711 1 0 -anhingidae%1:05:00:: 02054251 1 0 -anhydride%1:27:00:: 14767291 1 0 -anhydrosis%1:26:00:: 14023804 1 0 -anhydrous%3:00:00:: 02555550 1 1 -ani%1:05:00:: 01824344 1 0 -anicius_manlius_severinus_boethius%1:18:00:: 10854777 1 0 -anicteric%3:01:00:: 02623991 1 0 -anicteric%5:00:00:healthy:00 01171955 2 0 -anigozanthus%1:20:00:: 12312405 1 0 -anigozanthus_manglesii%1:20:00:: 12312728 1 0 -anil%1:20:00:: 12536291 2 0 -anil%1:27:00:: 14754860 1 0 -anile%5:00:00:old:02 01644967 1 0 -aniline%1:27:00:: 14754505 1 0 -aniline_dye%1:27:00:: 14754985 1 0 -aniline_oil%1:27:00:: 14754505 1 0 -anima%1:09:00:: 05675715 1 0 -animadversion%1:10:00:: 06709998 1 0 -animadvert%2:32:00:: 01027668 1 0 -animadvert%2:32:01:: 00827158 2 0 -animal%1:03:00:: 00015388 1 67 -animal%5:00:00:physical:00 01778572 1 1 -animal-worship%1:04:00:: 01046441 1 0 -animal_black%1:27:00:: 14668895 1 0 -animal_charcoal%1:27:00:: 14668895 1 0 -animal_communication%1:10:00:: 06796506 1 0 -animal_disease%1:26:00:: 14253124 1 0 -animal_fancier%1:18:00:: 09794426 1 0 -animal_fat%1:27:00:: 14787520 1 0 -animal_fiber%1:27:00:: 14959472 1 0 -animal_fibre%1:27:00:: 14959472 1 0 -animal_foot%1:05:00:: 02153445 1 0 -animal_glue%1:27:00:: 14703190 1 0 -animal_group%1:14:00:: 07993929 1 0 -animal_husbandry%1:04:00:: 00917211 1 0 -animal_kingdom%1:05:00:: 01313093 1 0 -animal_leg%1:05:00:: 02464327 1 0 -animal_magnetism%1:07:00:: 04686388 1 0 -animal_material%1:27:00:: 14755804 1 0 -animal_nature%1:07:00:: 04623443 1 0 -animal_oil%1:27:00:: 14755077 1 0 -animal_order%1:05:00:: 01342529 1 0 -animal_pigment%1:27:00:: 14756039 1 0 -animal_product%1:27:00:: 14700745 1 0 -animal_psychology%1:09:00:: 06138789 1 0 -animal_scientist%1:18:00:: 10806222 1 0 -animal_skin%1:27:00:: 14758842 1 0 -animal_starch%1:27:00:: 14795749 1 0 -animal_stuffer%1:18:00:: 10693459 1 0 -animal_tissue%1:08:00:: 05267548 1 0 -animal_toxin%1:27:00:: 15034741 1 0 -animal_trainer%1:18:00:: 10159045 1 0 -animal_virus%1:05:00:: 01335659 1 0 -animalcule%1:05:00:: 01324019 1 0 -animalculum%1:05:00:: 01324019 1 0 -animalia%1:05:00:: 01313093 1 0 -animalisation%1:04:00:: 00271879 1 0 -animalise%2:30:00:: 00113853 3 0 -animalise%2:30:01:: 00114052 2 0 -animalise%2:36:00:: 01680756 1 0 -animalism%1:07:00:: 04624517 2 0 -animalism%1:09:00:: 05958549 1 0 -animalistic%3:01:00:: 02624086 1 0 -animality%1:07:00:: 04623443 1 0 -animalization%1:04:00:: 00271879 2 0 -animalization%1:06:00:: 02712907 1 0 -animalize%2:30:00:: 00113853 3 0 -animalize%2:30:01:: 00114052 2 0 -animalize%2:36:00:: 01680756 1 0 -animate%2:29:00:: 00024279 4 0 -animate%2:30:00:: 00192836 3 0 -animate%2:30:01:: 00547995 2 0 -animate%2:37:00:: 01812720 1 1 -animate%3:00:01:: 00118066 2 0 -animate%3:00:02:: 00120252 1 1 -animate%3:00:04:: 00117385 3 0 -animate_being%1:03:00:: 00015388 1 0 -animate_thing%1:03:00:: 00004258 1 0 -animated%3:00:00:: 00118567 1 2 -animated%5:00:00:moving:03 01565608 2 0 -animated_cartoon%1:10:00:: 06616464 1 0 -animated_oat%1:20:00:: 12110475 1 0 -animatedly%4:02:00:: 00263323 1 0 -animateness%1:07:00:: 05005447 1 0 -animating%5:00:00:invigorating:00 01356932 1 0 -animation%1:04:00:: 00908405 5 0 -animation%1:04:01:: 00552436 6 0 -animation%1:04:02:: 01048466 4 0 -animation%1:07:00:: 05005809 2 0 -animation%1:07:01:: 04631700 3 0 -animation%1:26:00:: 13961642 1 0 -animatism%1:09:00:: 05735256 1 0 -animatistic%3:01:00:: 02624209 1 0 -animator%1:18:00:: 09794550 2 0 -animator%1:18:01:: 10056103 1 0 -animatronics%1:09:00:: 06133802 1 0 -anime%1:27:00:: 14896018 1 0 -anime%1:27:01:: 14766265 2 0 -animise%2:30:00:: 00547995 1 0 -animism%1:09:00:: 05958712 1 0 -animist%1:18:00:: 09794668 1 0 -animist%3:01:00:: 02624314 1 0 -animistic%3:01:00:: 02624314 1 0 -animize%2:30:00:: 00547995 1 1 -animosity%1:12:00:: 07548100 1 1 -animus%1:12:00:: 07548100 1 0 -anion%1:17:00:: 09197815 1 2 -anionic%1:27:00:: 14618050 1 7 -anionic%3:01:00:: 02930255 1 2 -anionic_compound%1:27:00:: 14617944 1 0 -anionic_detergent%1:27:00:: 14618050 1 0 -anise%1:13:00:: 07826653 2 0 -anise%1:20:00:: 12943049 1 0 -anise-scented%5:00:00:odorous:00 01055846 1 0 -anise_cookie%1:13:00:: 07637045 1 0 -anise_hyssop%1:20:00:: 12840362 1 0 -anise_plant%1:20:00:: 12943049 1 0 -anise_seed%1:13:00:: 07826653 1 0 -anise_tree%1:20:00:: 11708658 1 0 -aniseed%1:13:00:: 07826653 1 0 -aniseikonia%1:26:00:: 14097162 1 0 -aniseikonic%3:01:00:: 02624477 1 0 -anisette%1:13:00:: 07908647 1 0 -anisette_de_bordeaux%1:13:00:: 07908647 1 0 -anisogamete%1:08:00:: 05457201 1 0 -anisogametic%3:01:00:: 02624834 1 0 -anisogamic%3:01:00:: 02624615 1 0 -anisogamous%3:01:00:: 02624615 1 0 -anisogamy%1:22:00:: 13432249 1 0 -anisometric%5:00:00:unequal:00 00892635 1 0 -anisometropia%1:26:00:: 14555560 1 0 -anisometropic%3:01:00:: 02625007 1 0 -anisoptera%1:05:00:: 02268334 1 0 -anisotremus%1:05:00:: 02589486 1 0 -anisotremus_surinamensis%1:05:00:: 02589796 1 0 -anisotremus_virginicus%1:05:00:: 02589623 1 0 -anisotropic%3:00:00:: 01361107 1 0 -anisotropically%4:02:00:: 00003294 1 0 -anisotropy%1:07:00:: 04917680 1 0 -anjou%1:13:00:: 07768139 2 0 -anjou%1:15:00:: 08940371 1 0 -ankara%1:15:00:: 09040601 1 0 -ankle%1:08:00:: 05578442 1 7 -ankle-deep%5:00:00:shallow:01 00692154 1 1 -ankle_brace%1:06:00:: 02713003 1 0 -ankle_bracelet%1:06:00:: 02713097 1 0 -ankle_joint%1:08:00:: 05578442 1 0 -anklebone%1:08:00:: 05271383 1 0 -anklet%1:06:00:: 02713097 3 0 -anklet%1:06:01:: 02713218 2 0 -anklet%1:06:02:: 02713364 1 0 -anklets%1:06:00:: 02713218 1 0 -ankus%1:06:00:: 02713496 1 0 -ankyloglossia%1:26:00:: 14472111 1 0 -ankylosaur%1:05:00:: 01702256 1 0 -ankylosaurus%1:05:00:: 01702256 1 0 -ankylose%2:29:00:: 00096264 2 0 -ankylose%2:29:01:: 00096396 1 0 -ankylosing_spondylitis%1:26:00:: 14220474 1 0 -ankylosis%1:26:00:: 14022520 1 0 -ankylotic%3:01:00:: 02625149 1 0 -anlage%1:08:00:: 05298159 1 0 -ann_arbor%1:15:00:: 09100223 1 0 -anna%1:23:00:: 13704418 1 0 -anna_amalia_mercouri%1:18:00:: 11175748 1 0 -anna_eleanor_roosevelt%1:18:00:: 11270380 1 0 -anna_howard_shaw%1:18:00:: 11296139 1 0 -anna_mary_robertson_moses%1:18:00:: 11193645 1 0 -anna_pavlova%1:18:00:: 11227400 1 0 -annaba%1:15:00:: 08706247 1 0 -annalist%1:18:00:: 09794797 1 0 -annalistic%3:01:00:: 02625281 1 0 -annals%1:10:00:: 06515662 2 0 -annals%1:10:01:: 06597617 1 0 -annam%1:15:00:: 09163192 1 0 -annamese%1:10:00:: 06937229 2 0 -annamese%1:18:00:: 09747191 1 0 -annamite%1:10:00:: 06937229 1 0 -annapolis%1:15:00:: 09094217 1 0 -annapurna%1:17:00:: 09197945 2 0 -annapurna%1:18:00:: 09527560 1 0 -anne%1:18:00:: 10818469 1 0 -anne_boleyn%1:18:00:: 10855431 1 0 -anne_bradstreet%1:18:00:: 10861174 1 0 -anne_bronte%1:18:00:: 10865860 1 0 -anne_dudley_bradstreet%1:18:00:: 10861174 1 0 -anne_hathaway%1:18:00:: 11034485 1 0 -anne_hutchinson%1:18:00:: 11069085 1 0 -anne_mansfield_sullivan%1:18:00:: 11324428 1 0 -anne_robert_jacques_turgot%1:18:00:: 11352192 1 0 -anne_sexton%1:18:00:: 11294582 1 0 -anne_sullivan%1:18:00:: 11324428 1 0 -anneal%2:30:00:: 00303056 1 0 -annealing%1:04:00:: 00402951 1 0 -annelid%1:05:00:: 01934440 1 0 -annelid%3:01:00:: 02625975 1 0 -annelid_worm%1:05:00:: 01934440 1 0 -annelida%1:05:00:: 01934207 1 0 -annelidan%3:01:00:: 02625975 1 0 -annex%1:06:00:: 02713594 1 0 -annex%2:35:00:: 01329141 2 0 -annex%2:40:00:: 02215355 1 0 -annexa%1:08:00:: 05221649 1 0 -annexal%3:01:00:: 02604117 1 0 -annexation%1:04:00:: 00078536 2 0 -annexation%1:04:01:: 00373418 1 0 -annexational%3:01:00:: 02626177 1 0 -annexe%1:06:00:: 02713594 1 0 -annie_oakley%1:18:00:: 11210806 1 0 -anniellidae%1:05:00:: 01691085 1 0 -annihilate%2:30:00:: 00470701 1 1 -annihilated%5:00:00:destroyed:00 00734798 1 0 -annihilating%5:00:00:destructive:00 00586617 1 1 -annihilating%5:00:00:disrespectful:00 01995047 2 0 -annihilation%1:04:00:: 00218208 1 2 -annihilation%1:11:00:: 07330828 2 1 -annihilative%5:00:00:destructive:00 00586617 1 0 -annihilator%1:18:00:: 09794917 1 0 -anniversary%1:28:00:: 15249799 1 5 -anno_domini%4:02:00:: 00001837 1 0 -annon%1:13:00:: 07761611 1 0 -annona%1:20:00:: 11693812 1 0 -annona_cherimola%1:20:00:: 11694300 1 0 -annona_diversifolia%1:20:00:: 11694469 1 0 -annona_glabra%1:20:00:: 11695285 1 0 -annona_muricata%1:20:00:: 11694664 1 0 -annona_reticulata%1:20:00:: 11694866 1 0 -annona_squamosa%1:20:00:: 11695085 1 0 -annonaceae%1:20:00:: 11693566 1 0 -annotate%2:32:00:: 00961329 2 0 -annotate%2:36:00:: 01704953 1 0 -annotating%1:04:00:: 00371735 1 0 -annotation%1:04:00:: 00371735 2 0 -annotation%1:10:00:: 06763273 1 0 -annotator%1:18:00:: 09795010 1 0 -announce%2:32:00:: 00974367 1 74 -announce%2:32:01:: 00974173 4 2 -announce%2:32:02:: 00965871 2 13 -announce%2:32:07:: 00975427 3 2 -announced%5:00:00:declared:00 00687750 1 0 -announcement%1:10:00:: 06746580 2 3 -announcement%1:10:01:: 06726158 1 4 -announcer%1:18:00:: 09795124 2 0 -announcer%1:18:01:: 09795334 1 0 -annoy%2:37:00:: 01787955 1 5 -annoyance%1:04:00:: 00418394 5 0 -annoyance%1:09:00:: 05830059 4 0 -annoyance%1:12:00:: 07518261 2 1 -annoyance%1:18:00:: 09778537 3 0 -annoyance%1:26:00:: 14406573 1 3 -annoyed%5:00:00:displeased:00 01806106 1 3 -annoyed%5:00:00:troubled:00 02455845 2 0 -annoyer%1:18:00:: 10695555 1 0 -annoying%1:04:00:: 00418394 1 0 -annoying%5:00:00:disagreeable:00 00089550 1 1 -annoyingly%4:02:00:: 00003380 1 0 -annual%1:10:00:: 06426468 2 0 -annual%1:20:00:: 11552806 1 0 -annual%3:00:00:: 00678024 1 1 -annual%5:00:00:periodic:00 01969150 2 0 -annual_fern%1:20:00:: 13208302 1 0 -annual_parallax%1:19:00:: 11528636 1 0 -annual_ring%1:19:00:: 11424816 1 0 -annual_salt-marsh_aster%1:20:00:: 11935627 1 0 -annually%4:02:00:: 00081737 1 4 -annually%4:02:01:: 00250570 2 0 -annualry%1:08:00:: 05567489 1 0 -annuitant%1:18:00:: 09795556 1 0 -annuity%1:21:00:: 13294503 1 0 -annuity_in_advance%1:21:00:: 13294763 1 0 -annul%2:32:00:: 00799798 2 0 -annul%2:41:00:: 02478059 1 0 -annular%5:00:00:rounded:00 02044860 1 0 -annular_eclipse%1:11:00:: 07369099 1 0 -annular_scotoma%1:26:00:: 14556426 1 0 -annulate%5:00:00:rounded:00 02044860 1 0 -annulated%5:00:00:rounded:00 02044860 1 0 -annulet%1:06:00:: 02713769 3 0 -annulet%1:06:01:: 02713835 2 0 -annulet%1:06:02:: 02713992 1 0 -annulment%1:04:00:: 01240979 2 0 -annulment%1:04:01:: 00231887 3 0 -annulment%1:26:00:: 14564056 1 0 -annulus%1:20:00:: 13095348 2 0 -annulus%1:25:00:: 13875392 1 0 -annum%1:28:00:: 15204201 1 0 -annunciate%2:32:00:: 00974173 1 0 -annunciation%1:10:00:: 06747190 2 0 -annunciation%1:10:01:: 06726158 3 0 -annunciation%1:28:00:: 15186147 1 0 -annunciation_day%1:28:00:: 15186147 1 0 -annunciation_lily%1:20:00:: 12426978 1 0 -annunciator%1:06:00:: 02714139 1 0 -annunciatory%3:01:00:: 02626487 1 0 -annwfn%1:09:00:: 05626618 1 0 -annwn%1:09:00:: 05626618 1 0 -ano%1:14:00:: 08020242 1 0 -anoa%1:05:00:: 02409038 1 0 -anoa_depressicornis%1:05:00:: 02409038 1 0 -anoa_mindorensis%1:05:00:: 02409202 1 0 -anobiidae%1:05:00:: 02177644 1 0 -anodal%3:01:00:: 02626829 1 0 -anode%1:06:00:: 02714315 1 66 -anode%1:06:01:: 02714535 2 0 -anodic%3:01:00:: 02626829 1 0 -anodise%2:30:00:: 00136567 1 0 -anodize%2:30:00:: 00136567 1 0 -anodonta%1:05:00:: 01965111 1 0 -anodyne%1:06:00:: 02707683 1 0 -anodyne%5:00:00:moderating:00 01341490 1 0 -anoectochilus%1:20:00:: 12045004 1 0 -anoestrous%3:01:00:: 02622859 1 0 -anoestrum%1:26:00:: 14038482 1 0 -anoestrus%1:26:00:: 14038482 1 0 -anogramma%1:20:00:: 13208138 1 0 -anogramma_leptophylla%1:20:00:: 13208302 1 0 -anoint%2:29:00:: 00085626 2 0 -anoint%2:31:00:: 00675412 1 0 -anointer%1:18:00:: 09795639 1 0 -anointing%1:04:00:: 00712833 1 0 -anointing_of_the_sick%1:04:00:: 01039637 1 0 -anointment%1:04:00:: 00712833 1 0 -anole%1:05:00:: 01682714 1 0 -anolis%1:05:00:: 01682588 1 0 -anolis_carolinensis%1:05:00:: 01682714 1 0 -anomala%1:05:00:: 02173571 1 0 -anomala_orientalis%1:05:00:: 02173784 1 0 -anomalist%1:18:00:: 09606380 1 0 -anomalistic_month%1:28:00:: 15208036 1 0 -anomalistic_year%1:28:00:: 15201822 1 0 -anomalopidae%1:05:00:: 01451524 1 0 -anomalops%1:05:00:: 01451863 1 0 -anomalopteryx%1:05:00:: 01523493 1 0 -anomalopteryx_oweni%1:05:00:: 01523493 1 0 -anomalous%5:00:00:abnormal:00 01596455 1 1 -anomalous_communication%1:10:00:: 07255791 1 0 -anomalously%4:02:00:: 00271152 1 0 -anomalousness%1:26:00:: 14505821 1 0 -anomaly%1:15:00:: 08622763 3 0 -anomaly%1:18:00:: 09606527 2 0 -anomaly%1:26:00:: 14505821 1 0 -anomia%1:05:00:: 01962350 2 0 -anomia%1:26:00:: 14098663 1 0 -anomia_ephippium%1:05:00:: 01962506 1 0 -anomic%5:00:00:unoriented:00 01683908 1 1 -anomic_aphasia%1:26:00:: 14098663 1 0 -anomie%1:07:00:: 04851865 2 0 -anomie%1:26:00:: 14415898 1 1 -anomiidae%1:05:00:: 01962223 1 0 -anomy%1:07:00:: 04851865 2 0 -anomy%1:26:00:: 14415898 1 0 -anon%4:02:00:: 00033809 2 0 -anon%4:02:01:: 00035320 1 0 -anon.%3:00:00:: 00120574 1 0 -anonym%1:10:00:: 06338278 1 0 -anonymity%1:26:00:: 14436285 1 1 -anonymous%3:00:00:: 00120574 1 7 -anonymous%5:00:00:faceless:00 00236652 2 1 -anonymous_file_transfer_protocol%1:10:00:: 06665612 1 0 -anonymous_ftp%1:10:00:: 06665612 1 0 -anonymously%4:02:00:: 00262655 1 0 -anoperineal%3:01:00:: 02627136 1 0 -anopheles%1:05:00:: 02201252 1 0 -anopheline%1:05:00:: 02201497 1 0 -anopheline%3:01:00:: 02627257 1 0 -anopia%1:26:00:: 14553873 1 0 -anoplophora_glabripennis%1:05:00:: 02183096 1 0 -anoplura%1:05:00:: 02183697 1 0 -anorak%1:06:00:: 03891051 1 0 -anorchia%1:26:00:: 14022849 1 0 -anorchidism%1:26:00:: 14022849 1 0 -anorchism%1:26:00:: 14022849 1 0 -anorectal%3:01:00:: 02627383 1 0 -anorectic%1:18:00:: 09795751 1 0 -anorectic%5:00:00:causative:00 00323047 2 0 -anorectic%5:00:00:thin:03 00988797 1 0 -anorexia%1:26:00:: 14055796 1 1 -anorexia_nervosa%1:26:00:: 14061263 1 0 -anorexic%1:18:00:: 09795751 1 0 -anorexic%5:00:00:thin:03 00988797 1 0 -anorexigenic%5:00:00:causative:00 00323047 1 0 -anorgasmia%1:26:00:: 14056588 1 0 -anorthic%3:00:00:: 00366185 1 0 -anorthite%1:27:00:: 14865667 1 0 -anorthitic%3:01:00:: 02627510 1 0 -anorthography%1:26:00:: 14095948 1 0 -anorthopia%1:26:00:: 14097321 1 0 -anosmatic%3:01:00:: 02627612 1 0 -anosmia%1:26:00:: 14552477 1 0 -anosmic%3:01:00:: 02627612 1 0 -anosmic%5:00:00:impaired:00 01274524 2 0 -anostraca%1:05:00:: 01995137 1 0 -another%5:00:00:other:00 02070188 1 51 -anouilh%1:18:00:: 10818715 1 0 -anova%1:09:00:: 06030601 1 0 -anovulant%1:06:00:: 03936895 1 0 -anovulation%1:22:00:: 13432443 1 0 -anovulatory_drug%1:06:00:: 03936895 1 0 -anoxemia%1:26:00:: 14503234 1 0 -anoxemic%3:01:00:: 02627787 1 0 -anoxia%1:26:00:: 14043243 1 0 -anoxic%3:01:00:: 02627927 1 0 -anoxic_anoxia%1:26:00:: 14043579 1 0 -anpu%1:18:00:: 09511712 1 0 -ans%1:08:00:: 05504532 1 0 -ansaid%1:06:00:: 03371532 1 0 -ansar_al-islam%1:14:00:: 08015321 1 0 -ansar_al_islam%1:14:00:: 08015321 1 0 -anselm%1:18:00:: 10818860 1 0 -anser%1:05:00:: 01856225 1 0 -anser_anser%1:05:00:: 01856553 1 0 -anser_cygnoides%1:05:00:: 01856380 1 0 -anseres%1:05:00:: 01846156 1 0 -anseriform_bird%1:05:00:: 01845477 1 0 -anseriformes%1:05:00:: 01845272 1 0 -anserinae%1:05:00:: 01858023 1 0 -anserine%3:01:00:: 02628073 1 0 -anserine%5:00:00:stupid:00 00439905 2 0 -anshar%1:18:00:: 09515269 1 0 -answer%1:04:00:: 01234952 5 0 -answer%1:10:00:: 07200527 3 12 -answer%1:10:01:: 06746005 1 29 -answer%1:10:02:: 06743506 2 21 -answer%1:10:03:: 06560254 4 0 -answer%2:31:00:: 00636279 3 7 -answer%2:31:02:: 00719590 2 7 -answer%2:31:03:: 00635523 4 5 -answer%2:31:05:: 00718308 10 0 -answer%2:32:00:: 00815686 1 63 -answer%2:32:06:: 00815171 5 4 -answer%2:34:00:: 01183896 9 0 -answer%2:42:00:: 02658570 8 0 -answer%2:42:01:: 02746017 6 0 -answer%2:42:02:: 02669789 7 0 -answer_for%2:32:00:: 00867644 1 0 -answerability%1:07:00:: 04669828 1 0 -answerable%5:00:00:responsible:00 01997221 2 0 -answerable%5:00:00:soluble:02 02266351 1 0 -answerableness%1:07:00:: 04669828 1 0 -answerer%1:18:00:: 10524413 1 0 -answering%5:00:00:responsive:00 01999608 1 1 -answering_machine%1:06:00:: 02714751 1 0 -ant%1:05:00:: 02219486 1 6 -ant_bear%1:05:01:: 02082791 2 0 -ant_bear%1:05:02:: 02460451 1 0 -ant_bird%1:05:00:: 01553142 1 0 -ant_cow%1:05:00:: 02253494 1 0 -ant_lion%1:05:00:: 02264021 2 0 -ant_lion%1:05:01:: 02264232 1 0 -ant_shrike%1:05:00:: 01553762 1 0 -ant_thrush%1:05:00:: 01553527 1 0 -antabuse%1:06:00:: 03214051 1 0 -antacid%1:27:00:: 14778019 1 0 -antacid%5:00:00:antagonistic:02 00623814 1 0 -antagonise%2:37:00:: 01807314 2 0 -antagonise%2:41:00:: 02564841 1 1 -antagonism%1:04:00:: 01074252 4 0 -antagonism%1:12:02:: 07548366 3 0 -antagonism%1:24:00:: 13860548 2 0 -antagonism%1:26:00:: 13980288 1 0 -antagonist%1:06:00:: 02714883 3 0 -antagonist%1:08:00:: 05293420 2 0 -antagonist%1:18:00:: 09773245 1 10 -antagonistic%3:00:01:: 00760577 3 0 -antagonistic%3:00:02:: 00623565 4 0 -antagonistic%5:00:00:hostile:01 01245138 2 1 -antagonistic%5:00:00:incompatible:01 00508480 5 0 -antagonistic%5:00:00:negative:02 01818680 1 1 -antagonistic_muscle%1:08:00:: 05293040 1 0 -antagonistically%4:02:00:: 00265438 1 0 -antagonize%2:37:00:: 01807314 1 2 -antagonize%2:41:00:: 02564841 2 0 -antakiya%1:15:00:: 09040998 1 0 -antakya%1:15:00:: 09040998 1 0 -antalya%1:15:00:: 09040839 1 0 -antananarivo%1:15:00:: 08962465 1 0 -antapex%1:15:00:: 08495249 1 0 -antarctic%1:15:00:: 08494459 1 0 -antarctic%5:00:00:polar:00 02444627 1 0 -antarctic_circle%1:15:00:: 08494676 1 0 -antarctic_continent%1:17:00:: 09198106 1 0 -antarctic_ocean%1:17:00:: 09198574 1 0 -antarctic_peninsula%1:17:00:: 09198755 1 0 -antarctic_zone%1:15:00:: 08494459 1 0 -antarctica%1:17:00:: 09198106 1 0 -antares%1:17:00:: 09198997 1 1 -antbird%1:05:00:: 01553142 1 0 -ante%1:21:00:: 13343917 1 0 -ante%2:33:00:: 01139380 1 0 -ante_meridiem%4:02:00:: 00251304 1 0 -ante_meridiem%5:00:00:antemeridian:00 00130518 1 0 -ante_up%2:40:00:: 02252931 1 0 -anteater%1:05:00:: 02460009 2 0 -anteater%1:05:01:: 02082791 3 0 -anteater%1:05:02:: 01872401 6 0 -anteater%1:05:03:: 01872772 5 0 -anteater%1:05:04:: 02461830 1 1 -anteater%1:05:05:: 01885498 4 0 -antebellum%5:00:00:nonmodern:00 01537144 1 1 -antecede%2:42:00:: 02712443 1 0 -antecedence%1:07:00:: 05047279 1 0 -antecedency%1:07:00:: 05047279 1 0 -antecedent%1:10:00:: 06603651 4 0 -antecedent%1:11:00:: 07326880 2 1 -antecedent%1:18:00:: 09792555 1 1 -antecedent%1:24:00:: 13844923 3 0 -antecedent%3:00:00:: 00121865 1 0 -antecedently%4:02:00:: 00060632 1 0 -antechamber%1:06:00:: 02715513 1 0 -antecubital%3:01:00:: 02628171 1 0 -antedate%2:30:00:: 00277086 2 0 -antedate%2:42:00:: 02712443 1 0 -antediluvial%3:01:00:: 02846743 1 0 -antediluvian%1:18:00:: 09793248 2 0 -antediluvian%1:18:01:: 09795894 1 0 -antediluvian%3:01:00:: 02846743 1 0 -antediluvian%5:00:00:old:01 01639230 2 0 -antediluvian_patriarch%1:18:00:: 09795894 1 0 -antedon%1:05:00:: 02320888 1 0 -antedonidae%1:05:00:: 02320621 1 0 -antefix%1:06:00:: 02715096 1 0 -antelope%1:05:00:: 02419796 1 6 -antelope_chipmunk%1:05:00:: 02357911 1 0 -antelope_squirrel%1:05:00:: 02357911 1 0 -antemeridian%3:00:00:: 00130412 1 0 -antemortem%3:00:00:: 00121552 1 0 -antenatal%3:00:00:: 00129103 1 0 -antenna%1:05:00:: 02584915 3 0 -antenna%1:06:00:: 02715229 1 14 -antenna%1:07:00:: 04843270 2 2 -antennal%3:01:00:: 02628337 1 0 -antennaria%1:20:00:: 11921949 1 0 -antennaria_dioica%1:20:00:: 11922374 1 0 -antennaria_plantaginifolia%1:20:00:: 11922192 1 0 -antennariidae%1:05:00:: 02548990 1 0 -antennary%3:01:00:: 02628337 1 0 -antenuptial%3:01:00:: 03043173 1 0 -antepartum%3:00:00:: 00129103 1 0 -antepenult%1:10:00:: 06305223 1 0 -antepenultima%1:10:00:: 06305223 1 0 -antepenultimate%1:10:00:: 06305223 1 0 -antepenultimate%5:00:00:intermediate:00 01015940 1 0 -anterior%1:08:00:: 05306190 1 1 -anterior%3:00:00:: 00130778 1 3 -anterior%5:00:00:antecedent:00 00122128 2 0 -anterior_cardinal_vein%1:08:00:: 05360042 1 0 -anterior_cerebral_artery%1:08:00:: 05341416 1 0 -anterior_cerebral_vein%1:08:00:: 05361640 1 0 -anterior_crural_nerve%1:08:00:: 05568104 1 0 -anterior_facial_vein%1:08:00:: 05361805 1 0 -anterior_fontanelle%1:08:00:: 05543425 1 0 -anterior_horn%1:08:00:: 05424963 1 0 -anterior_jugular_vein%1:08:00:: 05371144 1 0 -anterior_labial_veins%1:08:00:: 05424351 1 0 -anterior_meningeal_artery%1:08:00:: 05351278 1 0 -anterior_naris%1:08:00:: 05600109 1 0 -anterior_pituitary%1:08:00:: 05484355 1 0 -anterior_pituitary_gland%1:08:00:: 05484355 1 0 -anterior_root%1:08:00:: 05424963 1 0 -anterior_serratus_muscle%1:08:00:: 05550494 1 0 -anterior_synechia%1:26:00:: 14206722 1 0 -anterior_temporal_artery%1:08:00:: 05354955 1 0 -anterior_vertebral_vein%1:08:00:: 05357682 1 0 -anteriority%1:07:00:: 05078289 1 0 -anteriority%1:07:01:: 05047279 2 0 -anteriorly%4:02:00:: 00265579 1 0 -anterograde%3:00:00:: 00130281 1 0 -anterograde_amnesia%1:09:00:: 05672862 1 0 -anteroom%1:06:00:: 02715513 1 0 -anthelminthic%1:06:00:: 04528630 1 0 -anthelminthic%5:00:00:healthful:00 01165266 1 0 -anthelmintic%1:06:00:: 04528630 1 0 -anthelmintic%5:00:00:healthful:00 01165266 1 0 -anthem%1:10:00:: 07035870 2 0 -anthem%1:10:01:: 07048928 1 0 -anthemis%1:20:00:: 11923016 1 0 -anthemis_arvensis%1:20:00:: 11923637 1 0 -anthemis_cotula%1:20:00:: 11923174 1 0 -anthemis_nobilis%1:20:00:: 11949402 1 0 -anthemis_tinctoria%1:20:00:: 11923397 1 0 -anther%1:20:00:: 11675245 1 0 -antheraea%1:05:00:: 02304229 1 0 -antheraea_mylitta%1:05:00:: 02304797 1 0 -antheraea_pernyi%1:05:00:: 02304657 1 0 -antheraea_polyphemus%1:05:00:: 02304432 1 0 -antheral%5:00:00:male:00 01477251 1 0 -anthericum%1:20:00:: 12439400 1 0 -anthericum_liliago%1:20:00:: 12439626 1 0 -anthericum_torreyi%1:20:00:: 12439830 1 0 -antheridial%3:01:00:: 02605035 1 0 -antheridiophore%1:20:00:: 13091492 1 0 -antheridium%1:20:00:: 13091312 1 0 -antheropeas%1:20:00:: 11923827 1 0 -antheropeas_wallacei%1:20:00:: 11924014 1 0 -antherozoid%1:20:00:: 13095543 1 0 -anthesis%1:22:00:: 13439570 1 0 -anthidium%1:05:00:: 02211773 1 0 -anthill%1:17:00:: 09199101 1 1 -anthoceropsida%1:20:00:: 11538123 1 0 -anthoceros%1:20:00:: 11538716 1 0 -anthocerotaceae%1:20:00:: 11538582 1 0 -anthocerotales%1:20:00:: 11538341 1 0 -anthologise%2:36:00:: 01626705 1 0 -anthologist%1:18:00:: 09796062 1 0 -anthologize%2:36:00:: 01626705 1 0 -anthology%1:10:00:: 06591609 1 0 -anthonomus%1:05:00:: 02178563 1 0 -anthonomus_grandis%1:05:00:: 02178717 1 0 -anthony%1:18:00:: 10820163 1 0 -anthony%1:18:01:: 10819134 2 0 -anthony_burgess%1:18:00:: 10872505 1 0 -anthony_charles_lynton_blair%1:18:00:: 10852506 1 0 -anthony_comstock%1:18:00:: 10906048 1 0 -anthony_hopkins%1:18:00:: 11059438 1 0 -anthony_trollope%1:18:00:: 11349207 1 0 -anthony_vandyke%1:18:00:: 11359867 1 0 -anthony_wayne%1:18:00:: 11377564 1 0 -anthophagous%5:00:00:herbivorous:00 00314265 1 0 -anthophilous%5:00:00:herbivorous:00 00314265 1 0 -anthophyllite%1:27:00:: 14725444 1 0 -anthophyta%1:20:00:: 11664929 1 0 -anthozoa%1:05:00:: 01913838 1 0 -anthozoan%1:05:00:: 01914163 1 0 -anthracite%1:27:00:: 14814921 1 0 -anthracite_coal%1:27:00:: 14814921 1 0 -anthracitic%3:01:00:: 02628550 1 0 -anthracosis%1:26:00:: 14150210 1 0 -anthrax%1:26:00:: 14260182 1 0 -anthrax%1:26:01:: 14072423 2 0 -anthrax_bacillus%1:05:00:: 01350226 1 0 -anthrax_pneumonia%1:26:00:: 14072934 1 0 -anthrenus_scrophulariae%1:05:00:: 02170599 1 0 -anthriscus%1:20:00:: 12932532 1 0 -anthriscus_cereifolium%1:20:00:: 12932706 1 0 -anthriscus_sylvestris%1:20:00:: 12932966 1 0 -anthropic%3:01:00:: 02628667 1 0 -anthropical%3:01:00:: 02628667 1 0 -anthropocentric%3:01:00:: 03135137 1 0 -anthropocentricity%1:09:00:: 06201476 1 0 -anthropocentrism%1:09:00:: 06201476 1 0 -anthropogenesis%1:22:00:: 13432647 1 0 -anthropogenetic%3:01:00:: 02628811 1 0 -anthropogenic%3:01:00:: 02628811 1 0 -anthropogeny%1:22:00:: 13432647 1 0 -anthropoid%1:05:00:: 02470709 2 0 -anthropoid%1:18:00:: 09796185 1 0 -anthropoid%5:00:01:human:00 01259015 2 0 -anthropoid%5:00:02:nonhuman:00 01260282 1 0 -anthropoid_ape%1:05:00:: 02470899 1 0 -anthropoidal%5:00:00:nonhuman:00 01260282 1 0 -anthropoidea%1:05:00:: 02470451 1 0 -anthropolatry%1:04:00:: 01045202 1 0 -anthropological%3:01:00:: 02907175 1 0 -anthropologist%1:18:00:: 09796323 1 3 -anthropology%1:09:00:: 06143546 1 2 -anthropology_department%1:14:00:: 08115602 1 0 -anthropometric%3:01:00:: 02629017 1 0 -anthropometrical%3:01:00:: 02629017 1 0 -anthropometry%1:04:00:: 00998604 1 0 -anthropomorphic%5:00:00:human:00 01259123 1 1 -anthropomorphise%2:31:00:: 00727409 1 0 -anthropomorphism%1:09:00:: 05767386 1 0 -anthropomorphize%2:31:00:: 00727409 1 0 -anthropomorphous%5:00:00:human:00 01259123 1 0 -anthropophagite%1:18:00:: 09891079 1 0 -anthropophagous%3:01:00:: 02629182 1 0 -anthropophagus%1:18:00:: 09891079 1 0 -anthropophagy%1:04:00:: 00412982 1 0 -anthroposophy%1:09:00:: 05953881 1 0 -anthurium%1:20:00:: 11783920 1 0 -anthurium_andraeanum%1:20:00:: 11784126 1 0 -anthurium_scherzerianum%1:20:00:: 11784126 1 0 -anthus%1:05:00:: 01528542 1 0 -anthus_pratensis%1:05:00:: 01528845 1 0 -anthyllis%1:20:00:: 12506614 1 0 -anthyllis_barba-jovis%1:20:00:: 12506784 1 0 -anthyllis_vulneraria%1:20:00:: 12506991 1 0 -anti%1:18:00:: 09796809 1 0 -anti%3:00:00:: 01817405 1 7 -anti-american%1:18:00:: 09796974 1 0 -anti-american%3:01:00:: 02927803 1 0 -anti-catholicism%1:09:00:: 06227453 1 1 -anti-drug_law%1:10:00:: 06532910 1 0 -anti-dumping_duty%1:21:00:: 13317759 1 0 -anti-g_suit%1:06:00:: 02720576 1 0 -anti-imperialist_international_brigade%1:14:00:: 08026904 1 0 -anti-impotence_drug%1:06:00:: 04537602 1 0 -anti-inflammatory%1:06:00:: 02721538 1 0 -anti-inflammatory_drug%1:06:00:: 02721538 1 0 -anti-intellectual%1:18:00:: 10423031 1 0 -anti-intellectual%5:00:00:nonintellectual:00 01333886 1 1 -anti-masonic_party%1:14:00:: 08258184 1 0 -anti-personnel_bomb%1:06:00:: 03390327 1 0 -anti-racketeering_law%1:10:00:: 06533039 1 0 -anti-semite%1:18:00:: 09797742 1 5 -anti-semite%5:00:00:prejudiced:00 00285905 1 0 -anti-semitic%3:01:00:: 03043482 1 4 -anti-semitism%1:09:00:: 06203956 1 22 -anti-submarine_rocket%1:06:00:: 02724722 1 0 -anti-sway_bar%1:06:00:: 04294614 1 0 -anti-takeover_defense%1:04:00:: 00790086 1 0 -anti-tnf_compound%1:06:00:: 02724966 1 0 -anti-torque_rotor%1:06:00:: 04385799 1 0 -anti-virus_program%1:10:00:: 06569966 1 0 -anti-war_movement%1:04:00:: 00799125 1 0 -antiacid%1:27:00:: 14778019 1 0 -antiadrenergic%3:01:00:: 02605157 1 0 -antiaircraft%1:06:00:: 02715712 1 0 -antiaircraft%5:00:00:defensive:00 01630439 1 0 -antiaircraft_fire%1:04:00:: 00987775 1 0 -antiaircraft_gun%1:06:00:: 02715712 1 0 -antialiasing%1:09:00:: 05665421 1 0 -antianxiety_agent%1:06:00:: 04470232 1 0 -antianxiety_drug%1:06:00:: 03771443 1 0 -antiapartheid%3:01:00:: 02605281 1 0 -antiarrhythmic%1:06:00:: 02715941 1 0 -antiarrhythmic_drug%1:06:00:: 02715941 1 0 -antiarrhythmic_medication%1:06:00:: 02715941 1 0 -antiauthoritarian%5:00:00:democratic:00 00715586 1 0 -antibacterial%1:06:00:: 02716205 1 0 -antibacterial%3:01:00:: 02833873 1 0 -antibacterial_drug%1:06:00:: 02716205 1 0 -antiballistic_missile%1:06:00:: 02716626 1 0 -antibaryon%1:17:00:: 09199219 1 0 -antiberiberi_factor%1:27:00:: 15091129 1 0 -antibiosis%1:14:00:: 07990648 1 0 -antibiotic%1:06:00:: 02716866 1 0 -antibiotic%3:01:00:: 02629301 1 1 -antibiotic_drug%1:06:00:: 02716866 1 0 -antiblack%5:00:00:prejudiced:00 00285905 1 0 -antibody%1:27:00:: 15027189 1 17 -antic%1:04:00:: 00427580 1 0 -antic%2:29:00:: 00105778 1 0 -antic%5:00:00:strange:00 00967646 1 1 -anticancer%3:01:00:: 02629410 1 0 -anticatalyst%1:27:00:: 14725024 1 0 -anticholinergic%1:06:00:: 02717901 1 0 -anticholinergic%3:00:00:: 00061088 1 0 -anticholinergic_drug%1:06:00:: 02717901 1 0 -anticholinesterase%1:06:00:: 02718084 1 0 -antichrist%1:18:00:: 10819285 1 0 -anticipant%1:18:00:: 09797113 1 0 -anticipant%5:00:00:hopeful:00 01228797 1 0 -anticipate%2:30:00:: 00342640 6 1 -anticipate%2:31:00:: 00719734 1 8 -anticipate%2:31:01:: 00720808 3 4 -anticipate%2:32:00:: 00917772 4 3 -anticipate%2:37:00:: 01804961 5 2 -anticipate%2:41:00:: 02565491 2 5 -anticipated%5:00:00:expected:00 00929815 1 5 -anticipation%1:09:00:: 05775081 3 2 -anticipation%1:09:01:: 05951323 2 4 -anticipation%1:12:00:: 07511080 1 4 -anticipation%1:26:00:: 14486122 4 0 -anticipative%5:00:00:hopeful:00 01228797 1 0 -anticipator%1:18:00:: 09797113 1 0 -anticipatory%5:00:00:antecedent:00 00122245 1 0 -anticipatory_breach%1:04:00:: 00069444 1 0 -anticlimactic%3:00:00:: 02487906 2 0 -anticlimactic%3:01:00:: 02629659 1 0 -anticlimactical%3:01:00:: 02629659 1 0 -anticlimax%1:10:00:: 06373991 2 0 -anticlimax%1:11:00:: 07427951 1 0 -anticlinal%3:00:00:: 00109016 1 0 -anticlockwise%3:00:00:: 00442057 1 0 -anticlockwise%4:02:00:: 00254059 1 0 -anticoagulant%1:06:00:: 02718259 1 0 -anticoagulant_medication%1:06:00:: 02718259 1 0 -anticoagulation%1:04:00:: 00710015 1 1 -anticoagulative%3:01:00:: 02629846 1 0 -anticonvulsant%1:06:00:: 02718469 1 0 -anticonvulsant_drug%1:06:00:: 02718469 1 0 -anticyclone%1:26:00:: 14521021 1 0 -anticyclonic%3:01:00:: 02629942 1 0 -antidepressant%1:06:00:: 02718811 1 0 -antidepressant_drug%1:06:00:: 02718811 1 0 -antidiabetic%1:06:00:: 02719105 1 0 -antidiabetic_drug%1:06:00:: 02719105 1 0 -antidiarrheal%1:06:00:: 02719294 1 0 -antidiarrheal_drug%1:06:00:: 02719294 1 0 -antidiuretic%1:06:00:: 02719450 1 0 -antidiuretic_drug%1:06:00:: 02719450 1 0 -antidiuretic_hormone%1:08:00:: 05414147 1 0 -antido%1:10:00:: 06895176 1 0 -antidorcas%1:05:00:: 02423465 1 0 -antidorcas_euchore%1:05:00:: 02423589 1 0 -antidorcas_marsupialis%1:05:00:: 02423589 1 0 -antidotal%3:01:00:: 02605416 1 0 -antidote%1:06:00:: 02719588 1 0 -antidromic%5:00:00:abnormal:00 01596674 1 0 -antielectron%1:17:00:: 09397896 1 0 -antiemetic%1:06:00:: 02719750 1 0 -antiemetic_drug%1:06:00:: 02719750 1 0 -antiepileptic%1:06:00:: 02718469 1 0 -antiepileptic_drug%1:06:00:: 02718469 1 0 -antiestablishmentarianism%1:09:00:: 05958919 1 0 -antiestablishmentism%1:09:00:: 05958919 1 0 -antifeminism%1:04:00:: 01156070 1 0 -antifeminist%1:18:00:: 09912243 1 0 -antiferromagnetic%3:01:00:: 02605509 1 0 -antiferromagnetism%1:19:00:: 11479640 1 0 -antifertility%5:00:00:protective:00 01887819 1 0 -antiflatulent%1:06:00:: 02719951 1 0 -antifouling_paint%1:06:00:: 02720048 1 0 -antifreeze%1:27:00:: 14766364 1 0 -antifungal%1:06:00:: 02720201 1 0 -antifungal%3:01:00:: 02832818 1 0 -antifungal_agent%1:06:00:: 02720201 1 0 -antigen%1:27:00:: 15037339 1 11 -antigenic%3:01:00:: 02630121 1 0 -antigenic_determinant%1:27:00:: 15037664 1 0 -antigone%1:18:00:: 09596374 1 0 -antigonia%1:05:00:: 01453591 1 0 -antigonus%1:18:00:: 10819533 1 0 -antigonus_cyclops%1:18:00:: 10819533 1 0 -antigram%1:10:00:: 06294147 1 0 -antigua%1:15:00:: 08709945 1 0 -antigua_and_barbuda%1:15:00:: 08709704 1 0 -antiguan%1:18:00:: 09691024 1 0 -antiguan%3:01:01:: 03043667 1 0 -antihaemophilic_factor%1:27:00:: 15071684 1 0 -antihaemophilic_globulin%1:27:00:: 15071684 1 0 -antihemophilic_factor%1:27:00:: 15071684 1 0 -antihemophilic_globulin%1:27:00:: 15071684 1 0 -antihemorrhagic_factor%1:27:00:: 15092751 1 0 -antiheretical%5:00:00:orthodox:00 01690167 1 0 -antihero%1:18:00:: 10172942 1 0 -antihistamine%1:06:00:: 02720725 1 0 -antihypertensive%1:06:00:: 02721160 1 0 -antihypertensive_drug%1:06:00:: 02721160 1 0 -antiknock%1:27:00:: 14585223 1 0 -antiknock%5:00:00:leaded:00 01396931 1 0 -antiknocking%5:00:00:leaded:00 01396931 1 0 -antilepton%1:17:00:: 09199341 1 0 -antilles%1:15:00:: 08747737 1 0 -antilocapra%1:05:00:: 02429276 1 0 -antilocapra_americana%1:05:00:: 02429456 1 0 -antilocapridae%1:05:00:: 02429123 1 0 -antilog%1:10:00:: 06812794 1 0 -antilogarithm%1:10:00:: 06812794 1 0 -antilope%1:05:00:: 02420389 1 0 -antilope_cervicapra%1:05:00:: 02420509 1 0 -antimacassar%1:06:00:: 02721813 1 0 -antimagnetic%3:00:00:: 01470141 1 0 -antimalarial%1:06:00:: 02721948 1 0 -antimalarial_drug%1:06:00:: 02721948 1 0 -antimatter%1:27:00:: 14582535 1 0 -antimeson%1:17:00:: 09199498 1 0 -antimetabolite%1:06:00:: 02722166 1 0 -antimicrobial%1:06:00:: 03208229 1 0 -antimicrobial%5:00:00:healthful:00 01165474 1 0 -antimicrobic%1:06:00:: 03208229 1 0 -antimicrobic%5:00:00:healthful:00 01165474 1 0 -antimonial%5:00:00:metallic:00 01528126 1 0 -antimonial_lead%1:27:00:: 14905197 1 0 -antimonic%3:01:00:: 02630221 1 0 -antimonious%3:01:00:: 02630221 1 0 -antimonopoly%5:00:00:fair:03 00956568 1 0 -antimony%1:27:00:: 14628668 1 0 -antimony_potassium_tartrate%1:27:00:: 14955391 1 0 -antimuon%1:17:00:: 09199581 1 0 -antimycin%1:06:00:: 02722349 1 0 -antimycotic%1:06:00:: 02720201 1 0 -antimycotic_agent%1:06:00:: 02720201 1 0 -antineoplastic%1:06:00:: 02722458 1 0 -antineoplastic%3:01:00:: 02629410 1 0 -antineoplastic_antibiotic%1:06:00:: 02722997 1 0 -antineoplastic_drug%1:06:00:: 02722458 1 0 -antineutrino%1:17:00:: 09199728 1 0 -antineutron%1:17:00:: 09199817 1 0 -antinode%1:15:00:: 08498732 1 0 -antinomasia%1:10:00:: 07101557 1 0 -antinomian%1:18:00:: 09797257 1 0 -antinomian%3:01:00:: 02630402 1 0 -antinomianism%1:09:00:: 06187154 1 0 -antinomy%1:10:00:: 06724437 1 0 -antioch%1:15:00:: 09040998 1 0 -antiophthalmic_factor%1:27:00:: 15089803 1 0 -antioxidant%1:27:00:: 14724645 1 0 -antiparallel%5:00:00:parallel:00 01718470 1 0 -antiparticle%1:17:00:: 09199904 1 0 -antipasto%1:13:00:: 07581249 1 0 -antipathetic%5:00:00:disinclined:00 01293542 1 0 -antipathetic%5:00:00:hostile:01 01245138 2 0 -antipathetical%5:00:00:disinclined:00 01293542 1 0 -antipathetical%5:00:00:hostile:01 01245138 2 0 -antipathy%1:09:00:: 05811466 2 0 -antipathy%1:12:00:: 07502669 1 2 -antipernicious_anemia_factor%1:27:00:: 15091304 1 0 -antipersonnel%5:00:00:offensive:03 01629212 1 0 -antipersonnel_bomb%1:06:00:: 03390327 1 0 -antiperspirant%1:06:00:: 02723165 1 0 -antiphlogistic%5:00:00:antagonistic:02 00623939 1 0 -antiphon%1:10:00:: 07033245 1 0 -antiphonal%1:10:00:: 07034516 1 0 -antiphonal%3:01:00:: 03110741 1 0 -antiphonal%3:01:01:: 02630519 2 0 -antiphonary%1:10:00:: 07034516 1 0 -antiphonary%3:01:00:: 02630519 1 0 -antiphony%1:10:00:: 07048782 1 0 -antiphony%1:10:01:: 07033245 2 0 -antiphrasis%1:10:00:: 07101250 1 0 -antipodal%1:24:00:: 13829243 1 0 -antipodal%3:01:00:: 02630695 1 0 -antipodal_opposition%1:24:00:: 13829243 1 0 -antipode%1:24:00:: 13855100 1 0 -antipodean%3:01:00:: 02630695 1 0 -antipodes%1:15:00:: 08631750 1 0 -antipollution%3:01:00:: 02605621 1 0 -antipope%1:18:00:: 09797375 1 0 -antiproton%1:17:00:: 09200193 1 0 -antiprotozoal%1:06:00:: 02723292 1 0 -antiprotozoal_drug%1:06:00:: 02723292 1 0 -antipruritic%1:06:00:: 02723491 1 0 -antipsychotic%1:06:00:: 03713736 1 0 -antipsychotic_agent%1:06:00:: 03713736 1 0 -antipsychotic_drug%1:06:00:: 03713736 1 0 -antipyresis%1:04:00:: 00664285 1 0 -antipyretic%1:06:00:: 02723595 1 0 -antipyretic%3:00:00:: 01170136 1 0 -antiquarian%1:18:00:: 09797606 1 0 -antiquarian%3:01:00:: 03043838 2 0 -antiquarian%3:01:01:: 03043937 1 0 -antiquark%1:17:00:: 09200317 1 0 -antiquary%1:18:00:: 09797606 1 0 -antiquate%2:30:00:: 00253501 2 0 -antiquate%2:30:01:: 00253664 1 0 -antiquated%5:00:00:old:01 01639230 1 0 -antique%1:06:00:: 02723754 2 0 -antique%1:18:00:: 10376890 1 0 -antique%2:30:00:: 00253501 2 0 -antique%2:40:00:: 02326795 1 0 -antique%5:00:00:old:01 01639446 1 2 -antique%5:00:00:unfashionable:00 00974159 2 2 -antique%5:00:01:old:01 01638962 3 0 -antiquity%1:06:00:: 02724026 3 0 -antiquity%1:07:00:: 04925756 2 0 -antiquity%1:28:00:: 15253139 1 1 -antiredeposition%1:22:00:: 13432802 1 1 -antirrhinum%1:20:00:: 12877041 1 0 -antirrhinum_coulterianum%1:20:00:: 12877493 1 0 -antirrhinum_filipes%1:20:00:: 12877637 1 0 -antirrhinum_majus%1:20:00:: 12877838 1 0 -antisatellite%3:01:00:: 02605786 1 0 -antisemitic%3:01:00:: 03043482 1 0 -antisemitism%1:09:00:: 06203956 1 0 -antisepsis%1:22:00:: 13432903 2 0 -antisepsis%1:26:00:: 14495230 1 0 -antiseptic%1:06:00:: 02724207 1 0 -antiseptic%3:00:00:: 02115324 1 1 -antiseptic%5:00:00:clean:02 00424240 4 0 -antiseptic%5:00:00:incorrupt:00 00622828 2 1 -antiseptic%5:00:00:purifying:00 02118047 3 0 -antisepticize%2:29:00:: 00062774 1 0 -antiserum%1:08:00:: 05403702 1 6 -antisocial%5:00:00:unsociable:00 02258972 1 0 -antisocial%5:00:00:unsocial:00 02249948 2 0 -antisocial_personality_disorder%1:26:00:: 14388139 1 0 -antispasmodic%1:06:00:: 02724533 1 0 -antispasmodic_agent%1:06:00:: 02724533 1 0 -antistrophe%1:10:00:: 06386832 1 0 -antistrophic%3:01:00:: 02630994 1 0 -antisubmarine%5:00:00:defensive:00 01630579 1 0 -antisyphilitic%1:06:00:: 02724838 1 0 -antitank%5:00:00:defensive:00 01630673 1 0 -antitauon%1:17:00:: 09200419 1 0 -antithesis%1:10:00:: 07101406 2 0 -antithesis%1:24:00:: 13855230 1 1 -antithetic%5:00:00:different:00 02065404 1 0 -antithetical%5:00:00:different:00 02065404 1 1 -antithetically%4:02:00:: 00273649 1 0 -antithyroid%3:01:00:: 02981508 1 6 -antitoxic%5:00:00:nontoxic:00 02450814 1 0 -antitoxin%1:27:00:: 15028050 1 0 -antitrade%1:19:00:: 11520120 1 0 -antitrade_wind%1:19:00:: 11520120 1 0 -antitrades%1:19:00:: 11424938 1 0 -antitrust%5:00:00:fair:03 00956568 1 1 -antitrust_case%1:04:00:: 01184045 1 1 -antitrust_law%1:10:00:: 06533297 1 0 -antitrust_legislation%1:10:00:: 06533297 1 0 -antitumor%3:01:00:: 02629410 1 0 -antitumour%3:01:00:: 02629410 1 0 -antitussive%1:06:00:: 02725242 1 0 -antitype%1:09:01:: 05927364 1 0 -antitype%1:09:02:: 05841029 2 0 -antitypic%3:01:00:: 02631085 1 0 -antitypical%3:01:00:: 02631085 1 0 -antivenene%1:27:00:: 15028208 1 0 -antivenin%1:27:00:: 15028208 1 0 -antivert%1:06:00:: 03739136 1 0 -antiviral%1:06:00:: 02725367 1 0 -antiviral%3:01:00:: 02605953 1 0 -antiviral_agent%1:06:00:: 02725367 1 0 -antiviral_drug%1:06:00:: 02725367 1 0 -antler%1:05:00:: 01325658 1 0 -antler-like%5:00:00:horned:00 02034248 1 0 -antler_moth%1:05:00:: 02296276 1 0 -antlered%5:00:00:horned:00 02034179 1 0 -antlia%1:17:00:: 09200527 1 0 -antlion%1:05:00:: 02264021 2 0 -antlion%1:05:01:: 02264232 1 0 -antlion_fly%1:05:00:: 02264021 1 0 -antofagasta%1:15:00:: 08721145 1 0 -antoine_domino%1:18:00:: 10938640 1 0 -antoine_henri_becquerel%1:18:00:: 10840563 1 0 -antoine_laurent_de_jussieu%1:18:00:: 11094928 1 0 -antoine_laurent_lavoisier%1:18:00:: 11119917 1 0 -antoine_lavoisier%1:18:00:: 11119917 1 0 -anton_bruckner%1:18:00:: 10868025 1 0 -anton_chekhov%1:18:00:: 10894652 1 0 -anton_chekov%1:18:00:: 10894652 1 0 -anton_gregor_rubinstein%1:18:00:: 11273286 1 0 -anton_grigorevich_rubinstein%1:18:00:: 11273286 1 0 -anton_pavlovich_chekhov%1:18:00:: 10894652 1 0 -anton_pavlovich_chekov%1:18:00:: 10894652 1 0 -anton_rubenstein%1:18:00:: 11273286 1 0 -anton_van_leeuwenhoek%1:18:00:: 11129808 1 0 -anton_van_leuwenhoek%1:18:00:: 11129808 1 0 -antonin_dvorak%1:18:00:: 10946961 1 0 -antonine_wall%1:06:00:: 02725596 1 0 -antoninus%1:18:00:: 10819755 1 0 -antonio_allegri_da_correggio%1:18:00:: 10912079 1 0 -antonio_gaudi%1:18:00:: 10992336 1 0 -antonio_gaudi_i_cornet%1:18:00:: 10992336 1 0 -antonio_ghislieri%1:18:00:: 11237075 1 0 -antonio_lopez_de_santa_ana%1:18:00:: 11280905 1 0 -antonio_lopez_de_santa_anna%1:18:00:: 11280905 1 0 -antonio_lucio_vivaldi%1:18:00:: 11367910 1 0 -antonio_pignatelli%1:18:00:: 11072673 1 0 -antonio_stradivari%1:18:00:: 11320821 1 0 -antonio_vivaldi%1:18:00:: 11367910 1 0 -antonius%1:18:00:: 10820163 1 0 -antonius_pius%1:18:00:: 10820053 1 0 -antonius_stradivarius%1:18:00:: 11320821 1 0 -antony%1:18:00:: 10820163 1 0 -antony_tudor%1:18:00:: 11351677 1 0 -antonym%1:10:00:: 06288024 1 0 -antonymous%3:00:00:: 02381764 1 0 -antonymy%1:24:00:: 13808405 1 0 -antrorse%3:00:00:: 00123653 1 0 -antrozous%1:05:00:: 02147452 1 0 -antrozous_pallidus%1:05:00:: 02147591 1 0 -antrum%1:08:00:: 05304252 1 0 -antsy%5:00:00:tense:03 02406166 1 0 -antum%1:18:00:: 09515473 1 0 -antwerp%1:15:00:: 08850741 1 0 -antwerpen%1:15:00:: 08850741 1 0 -anu%1:18:00:: 09515570 1 0 -anubis%1:18:00:: 09511712 1 0 -anunnaki%1:18:00:: 09515712 1 0 -anura%1:05:00:: 01639369 1 0 -anuran%1:05:00:: 01639765 1 0 -anuran%3:01:00:: 02631238 1 0 -anuresis%1:26:00:: 14065903 1 0 -anuretic%3:01:00:: 02631453 1 0 -anuria%1:26:00:: 14065903 1 0 -anuric%3:01:00:: 02631453 1 0 -anurous%5:00:00:acaudate:00 00320985 1 0 -anus%1:08:00:: 05538016 1 0 -anvers%1:15:00:: 08850741 1 0 -anvil%1:06:00:: 02725872 1 1 -anvil%1:08:00:: 05326340 2 0 -anwar_el-sadat%1:18:00:: 11277900 1 0 -anwar_sadat%1:18:00:: 11277900 1 0 -anxiety%1:12:00:: 07523905 2 9 -anxiety%1:26:00:: 14374432 1 20 -anxiety_attack%1:26:00:: 14081665 1 0 -anxiety_disorder%1:26:00:: 14380473 1 0 -anxiety_hysteria%1:26:00:: 14393716 1 0 -anxiety_neurosis%1:26:00:: 14393958 1 0 -anxiety_reaction%1:26:00:: 14380717 1 0 -anxiolytic%1:06:00:: 03771443 1 0 -anxiolytic%3:01:00:: 02631594 1 0 -anxiolytic_drug%1:06:00:: 03771443 1 0 -anxious%5:00:00:eager:00 00811248 1 3 -anxious%5:00:00:troubled:00 02456157 2 0 -anxiously%4:02:00:: 00185970 1 7 -anxiousness%1:12:00:: 07524760 2 0 -anxiousness%1:26:00:: 14374432 1 0 -any%4:02:00:: 00024509 1 4 -any%5:00:00:some:00 02267686 1 47 -any-and-all_bid%1:04:00:: 00790677 1 0 -any_longer%4:02:01:: 00031606 1 1 -anyhow%4:02:00:: 00026571 1 14 -anyhow%4:02:01:: 00027258 2 0 -anymore%4:02:01:: 00031606 1 11 -anyplace%4:02:00:: 00025290 1 0 -anyway%4:02:00:: 00026571 1 16 -anyway%4:02:01:: 00027258 2 0 -anyways%4:02:00:: 00026571 1 0 -anywhere%4:02:00:: 00025290 1 9 -anzac%1:18:00:: 09797873 1 0 -anzio%1:15:00:: 08807716 1 0 -ao_dai%1:06:00:: 02726017 1 0 -aorist%1:10:00:: 06330037 1 0 -aoristic%3:01:00:: 02631686 1 0 -aorta%1:08:00:: 05335971 1 3 -aortal%3:01:00:: 02631812 1 0 -aortic%3:01:00:: 02631812 1 0 -aortic_aneurysm%1:26:00:: 14106352 1 0 -aortic_arch%1:08:00:: 05336377 1 0 -aortic_orifice%1:08:00:: 05246089 1 0 -aortic_plexus%1:08:00:: 05236582 1 0 -aortic_stenosis%1:26:00:: 14106609 1 0 -aortic_valve%1:08:00:: 05394526 1 0 -aortitis%1:26:00:: 14258293 1 0 -aotus%1:05:00:: 02492240 1 0 -aotus_trivirgatus%1:05:00:: 02492356 1 0 -aoudad%1:05:00:: 02416104 1 0 -apace%4:02:00:: 00085811 1 0 -apache%1:10:00:: 06919433 3 0 -apache%1:18:00:: 09649926 1 2 -apache%1:18:01:: 09607208 2 0 -apache_dance%1:04:00:: 00530386 1 0 -apache_devil_dance%1:04:00:: 00541972 1 0 -apadana%1:06:00:: 02726210 1 0 -apalachicola%1:17:00:: 09200649 1 0 -apalachicola_river%1:17:00:: 09200649 1 0 -apalachicola_rosemary%1:20:00:: 12845908 1 0 -apanage%1:21:00:: 13254443 2 0 -apanage%1:21:01:: 13298287 1 0 -apar%1:05:00:: 02455135 1 0 -apart%4:02:01:: 00180756 2 10 -apart%4:02:02:: 00180944 6 0 -apart%4:02:03:: 00181075 1 18 -apart%4:02:04:: 00181253 5 0 -apart%4:02:06:: 00234201 4 0 -apart%4:02:07:: 00234389 3 1 -apart%5:00:00:separate:00 02110161 2 0 -apart%5:00:00:unconnected:00 00567860 1 1 -apartheid%1:10:00:: 06659168 1 0 -apartment%1:06:00:: 02726305 1 32 -apartment_building%1:06:00:: 02726681 1 3 -apartment_house%1:06:00:: 02726681 1 1 -apatetic_coloration%1:07:00:: 04979203 1 0 -apathetic%5:00:00:spiritless:00 02281611 1 0 -apathetic%5:00:00:uninterested:00 01342949 2 0 -apathetically%4:02:00:: 00265660 1 0 -apathy%1:07:01:: 04636610 2 0 -apathy%1:12:00:: 07483622 1 0 -apatite%1:27:00:: 14666510 1 0 -apatosaur%1:05:00:: 01709484 1 0 -apatosaurus%1:05:00:: 01709484 1 0 -apatosaurus_excelsus%1:05:00:: 01709484 1 0 -apatura%1:05:00:: 02278704 1 0 -apatura_iris%1:05:00:: 02278980 1 0 -apc%1:06:00:: 02726861 2 0 -apc%1:06:01:: 02740300 1 0 -ape%1:05:00:: 02470325 1 1 -ape%1:18:00:: 09796185 3 0 -ape%1:18:01:: 09964411 2 0 -ape%2:32:00:: 00849592 2 0 -ape%2:42:00:: 02675067 1 0 -ape-man%1:18:00:: 10322801 1 0 -ape-man%1:18:01:: 09797998 2 0 -apeldoorn%1:15:00:: 08950035 1 0 -apelike%5:00:00:imitative:00 01216710 2 0 -apelike%5:00:00:nonhuman:00 01260282 1 0 -apennines%1:17:00:: 09200874 1 0 -aper%1:18:00:: 09964411 1 0 -apercu%1:10:00:: 06468749 1 0 -aperea%1:05:00:: 02364840 1 0 -aperient%1:06:00:: 04025748 1 0 -aperient%5:00:00:laxative:00 00637979 1 0 -aperiodic%3:00:00:: 01970464 1 0 -aperitif%1:13:00:: 07886463 1 0 -aperture%1:06:00:: 02727016 3 0 -aperture%1:06:01:: 02727141 1 1 -aperture%1:17:00:: 09201031 2 0 -apery%1:04:00:: 00549472 1 0 -apetalous%3:00:00:: 01776532 1 0 -apetalous_flower%1:20:00:: 11674019 1 0 -apex%1:15:00:: 08677801 1 3 -apex%1:15:01:: 08494987 2 0 -apex_of_the_sun's_way%1:15:00:: 08494987 1 0 -apgar_score%1:09:00:: 05739400 1 0 -aphaeresis%1:22:00:: 13433061 1 0 -aphaeretic%3:01:00:: 02631955 1 0 -aphagia%1:26:00:: 14096328 1 0 -aphakia%1:26:00:: 14097432 1 0 -aphakic%1:18:00:: 09798096 1 0 -aphakic%3:01:00:: 02632148 1 0 -aphanite%1:27:00:: 14726315 1 0 -aphanitic%3:01:00:: 02632263 1 0 -aphasia%1:26:00:: 14097574 1 0 -aphasic%1:18:00:: 09798244 1 0 -aphasic%3:01:00:: 02632363 1 0 -aphasic%5:00:00:inarticulate:00 00151530 2 0 -aphasmidia%1:05:00:: 01929788 1 0 -aphelion%1:15:00:: 08495908 1 0 -apheresis%1:04:00:: 00649992 2 0 -apheresis%1:22:00:: 13433061 1 0 -apheretic%3:01:00:: 02631955 1 0 -aphesis%1:22:00:: 13433283 1 0 -aphetic%3:01:00:: 02632504 1 0 -aphid%1:05:00:: 02252226 1 0 -aphid_lion%1:05:00:: 02264591 1 0 -aphididae%1:05:00:: 02252429 1 0 -aphidoidea%1:05:00:: 02252039 1 0 -aphis%1:05:00:: 02252608 1 0 -aphis_fabae%1:05:00:: 02252972 1 0 -aphis_lion%1:05:00:: 02264591 1 0 -aphis_pomi%1:05:00:: 02252799 1 0 -aphonia%1:26:00:: 14400507 1 0 -aphonic%5:00:00:inarticulate:00 00151661 1 0 -aphorise%2:32:00:: 00741911 1 0 -aphorism%1:10:00:: 07153130 1 0 -aphorist%1:18:00:: 09798404 1 0 -aphoristic%3:01:00:: 02653651 1 0 -aphoristic%5:00:00:concise:00 00546951 2 0 -aphorize%2:32:00:: 00741911 1 0 -aphotic%5:00:00:dark:01 00273901 1 0 -aphriza%1:05:00:: 02026498 1 0 -aphriza_virgata%1:05:00:: 02026629 1 0 -aphrodisia%1:12:00:: 07488567 1 0 -aphrodisiac%1:06:00:: 02727281 1 0 -aphrodisiac%3:00:00:: 02137538 1 0 -aphrodisiacal%3:00:00:: 02137538 1 0 -aphrodite%1:18:00:: 09554132 1 0 -aphrophora%1:05:00:: 02258354 1 0 -aphrophora_saratogensis%1:05:00:: 02258629 1 0 -aphthous_ulcer%1:26:00:: 14211985 1 0 -aphyllanthaceae%1:20:00:: 12440128 1 0 -aphyllanthes%1:20:00:: 12440385 1 0 -aphyllophorales%1:20:00:: 13049285 1 0 -aphyllous%5:00:00:leafless:00 01703619 1 0 -apia%1:15:00:: 08991752 1 0 -apiaceae%1:20:00:: 12930044 1 0 -apian%3:01:00:: 02632595 1 0 -apiarian%3:01:00:: 02632696 1 0 -apiarist%1:18:00:: 09846755 1 0 -apiary%1:06:00:: 02727426 1 0 -apical%5:00:00:top:00 02440184 1 0 -apical_placentation%1:20:00:: 11681255 1 0 -apiculate%5:00:00:simple:01 02167405 1 0 -apicultural%3:01:00:: 02632799 1 0 -apiculture%1:04:00:: 00916285 1 0 -apiculturist%1:18:00:: 09846755 1 0 -apidae%1:05:00:: 02207942 1 0 -apiece%4:02:00:: 00239908 1 2 -apios%1:20:00:: 12507236 1 0 -apios_americana%1:20:00:: 12507379 1 0 -apios_tuberosa%1:20:00:: 12507379 1 0 -apis%1:05:00:: 02208143 1 0 -apis_mellifera%1:05:00:: 02208280 1 0 -apis_mellifera_adansonii%1:05:00:: 02208498 1 0 -apis_mellifera_scutellata%1:05:00:: 02208498 1 0 -apish%5:00:00:imitative:00 01216710 1 0 -apishamore%1:06:00:: 02727566 1 0 -apium%1:20:00:: 12933164 1 0 -apium_graveolens%1:20:00:: 12933274 1 0 -apium_graveolens_dulce%1:20:00:: 12933403 1 0 -apium_graveolens_rapaceum%1:20:00:: 12933616 1 0 -apivorous%5:00:00:insectivorous:00 00315631 1 0 -aplacental%3:00:00:: 01831346 1 0 -aplacophora%1:05:00:: 01954340 1 0 -aplacophoran%1:05:00:: 01954516 1 0 -aplanatic%5:00:00:corrected:00 00634259 1 0 -aplasia%1:26:00:: 14023901 1 0 -aplastic_anaemia%1:26:00:: 14164341 1 0 -aplastic_anemia%1:26:00:: 14164341 1 0 -aplectrum%1:20:00:: 12045352 1 0 -aplectrum_hyemale%1:20:00:: 12045514 1 0 -aplite%1:27:00:: 14726484 1 0 -aplitic%3:01:00:: 02632916 1 0 -aplodontia%1:05:00:: 02363818 1 0 -aplodontia_rufa%1:05:00:: 02363996 1 0 -aplodontiidae%1:05:00:: 02363681 1 0 -aplomb%1:07:00:: 04904162 1 1 -aplysia%1:05:00:: 01951107 1 0 -aplysia_punctata%1:05:00:: 01951274 1 0 -aplysiidae%1:05:00:: 01950952 1 0 -apnea%1:26:00:: 14369408 1 0 -apneic%3:01:00:: 02633011 1 0 -apnoeic%3:01:00:: 02633011 1 0 -apoapsis%1:15:00:: 08495617 1 0 -apocalypse%1:10:00:: 06447897 2 0 -apocalypse%1:11:00:: 07315631 1 0 -apocalyptic%3:01:00:: 02633115 2 0 -apocalyptic%5:00:00:prophetic:00 01882292 1 1 -apocalyptical%5:00:00:prophetic:00 01882292 1 0 -apocarpous%3:00:00:: 00113476 1 0 -apochromatic%5:00:00:corrected:00 00634404 1 0 -apocope%1:10:00:: 07091737 1 0 -apocrine%3:00:00:: 00098529 1 0 -apocrine_gland%1:08:00:: 05330848 1 0 -apocrypha%1:10:00:: 06457952 1 0 -apocryphal%3:01:00:: 02633222 2 0 -apocryphal%5:00:00:questionable:00 01916693 1 1 -apocynaceae%1:20:00:: 11766609 1 0 -apocynaceous%3:01:00:: 02633329 1 0 -apocynum%1:20:00:: 11767196 1 0 -apocynum_androsaemifolium%1:20:00:: 11767630 1 0 -apocynum_cannabinum%1:20:00:: 11767877 1 0 -apocynum_pumilum%1:20:00:: 11768108 1 0 -apodal%5:00:00:footless:00 01031908 1 0 -apodeictic%5:00:00:true:00 02461295 1 0 -apodeme%1:05:00:: 01905121 1 0 -apodemus%1:05:00:: 02332606 1 0 -apodemus_sylvaticus%1:05:00:: 02333190 1 0 -apodictic%5:00:00:true:00 02461295 1 0 -apodidae%1:05:00:: 01831930 1 0 -apodiform_bird%1:05:00:: 01831712 1 0 -apodiformes%1:05:00:: 01831519 1 0 -apodous%5:00:00:footless:00 01031908 1 0 -apoenzyme%1:27:00:: 14730301 1 0 -apogametic%3:01:00:: 02633447 1 0 -apogamic%3:01:00:: 02633447 1 0 -apogamous%3:01:00:: 02633447 1 0 -apogamy%1:22:00:: 13433462 1 0 -apogean%3:01:00:: 02633696 1 0 -apogee%1:15:00:: 08495420 2 0 -apogee%1:28:00:: 15291199 1 1 -apogon%1:05:00:: 02572369 1 0 -apogon_maculatus%1:05:00:: 02572484 1 0 -apogonidae%1:05:00:: 02571983 1 0 -apoidea%1:05:00:: 02206624 1 0 -apojove%1:15:00:: 08496095 1 0 -apolemia%1:05:00:: 01913440 1 0 -apolitical%5:00:00:nonpolitical:00 01815219 1 0 -apollinaire%1:18:00:: 10820444 1 0 -apollo%1:18:00:: 09553767 1 0 -apollo_asteroid%1:17:00:: 09201189 1 0 -apollo_program%1:09:00:: 05899621 1 0 -apologetic%3:00:00:: 01631830 1 1 -apologetically%4:02:00:: 00174106 1 3 -apologetics%1:09:00:: 06182866 1 0 -apologia%1:10:01:: 06740919 1 1 -apologise%2:32:00:: 00892923 2 0 -apologise%2:32:01:: 00894738 1 0 -apologist%1:18:00:: 09798534 1 1 -apologize%2:32:00:: 00892923 1 3 -apologize%2:32:01:: 00894738 2 0 -apologue%1:10:00:: 06372095 1 0 -apology%1:09:00:: 05821102 3 0 -apology%1:10:00:: 06633363 1 2 -apology%1:10:02:: 06740919 2 0 -apolune%1:15:00:: 08496199 1 0 -apomict%1:20:00:: 11536567 1 0 -apomictic%3:01:00:: 02633877 1 0 -apomictic%5:00:00:asexual:00 02136158 2 0 -apomictical%3:01:00:: 02633877 1 0 -apomixis%1:22:00:: 13433727 1 0 -apomorphine%1:06:00:: 02727660 1 0 -aponeurosis%1:08:00:: 05582690 1 0 -aponeurotic%3:01:00:: 02634073 1 0 -apopemptic%3:01:00:: 02822472 1 0 -apophasis%1:10:00:: 07101649 1 0 -apophatic%3:01:00:: 02634232 1 0 -apophatism%1:09:00:: 05942104 1 0 -apophthegm%1:10:00:: 07153130 1 0 -apophyseal%3:01:01:: 02634428 1 0 -apophysis%1:08:00:: 05473104 2 0 -apophysis%1:20:00:: 13088460 1 0 -apoplectic%3:01:00:: 02634569 1 0 -apoplectiform%3:01:00:: 02634709 1 0 -apoplectoid%3:01:00:: 02634709 1 0 -apoplexy%1:26:00:: 14082303 1 0 -apoptosis%1:19:00:: 11486381 1 0 -aporocactus%1:20:00:: 11843285 1 0 -aporocactus_flagelliformis%1:20:00:: 11843441 1 0 -aposelene%1:15:00:: 08496199 1 0 -aposematic_coloration%1:07:00:: 04979002 1 0 -aposiopesis%1:10:00:: 07101778 1 0 -aposiopetic%3:01:00:: 02634820 1 0 -apostasy%1:04:00:: 00204814 2 0 -apostasy%1:26:00:: 14413411 1 0 -apostate%1:18:00:: 10007109 1 0 -apostate%5:00:00:unfaithful:00 00959979 1 0 -apostatise%2:32:00:: 00757856 1 0 -apostatize%2:32:00:: 00757856 1 0 -apostelic_father%1:18:00:: 09799213 1 0 -apostle%1:18:00:: 09798811 3 0 -apostle%1:18:01:: 09799213 2 0 -apostle%1:18:02:: 09799461 1 0 -apostle_of_germany%1:18:00:: 10856486 1 0 -apostle_of_the_gentiles%1:18:00:: 11225661 1 0 -apostle_paul%1:18:00:: 11225661 1 0 -apostleship%1:04:00:: 00588881 1 0 -apostolic%3:01:00:: 02859500 1 4 -apostolic%3:01:01:: 02879638 2 0 -apostolic_delegate%1:18:00:: 09799607 1 0 -apostolical%3:01:00:: 02859500 2 0 -apostolical%3:01:01:: 02879638 1 0 -apostrophe%1:10:00:: 07101937 1 0 -apostrophe%1:10:01:: 06841987 2 0 -apostrophic%3:01:00:: 02634940 1 0 -apostrophise%2:32:00:: 00993754 1 0 -apostrophize%2:32:00:: 00993754 1 0 -apothecaries'_ounce%1:23:00:: 13722522 1 0 -apothecaries'_pound%1:23:00:: 13722757 1 0 -apothecaries'_unit%1:23:00:: 13716878 1 0 -apothecaries'_weight%1:23:00:: 13716878 1 0 -apothecary%1:18:00:: 10421470 1 3 -apothecary's_shop%1:06:00:: 03249342 1 0 -apothecial%3:01:00:: 02635069 1 0 -apothecium%1:20:00:: 11533622 1 0 -apothegm%1:10:00:: 07153130 1 0 -apothegmatic%3:01:00:: 02635221 1 0 -apothegmatic%5:00:00:concise:00 00546951 2 0 -apothegmatical%3:01:00:: 02635221 1 0 -apotheose%2:31:00:: 00693633 1 0 -apotheosis%1:04:00:: 01029114 2 0 -apotheosis%1:18:00:: 10325243 1 0 -apotheosise%2:31:00:: 00693633 1 0 -apotheosize%2:31:00:: 00693633 1 0 -apotropaic%5:00:00:lucky:00 01468319 1 0 -appal%2:37:00:: 01810447 1 0 -appal%2:37:01:: 01782650 2 0 -appalachia%1:15:00:: 08493493 1 0 -appalachian%1:18:00:: 09799808 1 0 -appalachian%3:01:00:: 02635395 1 0 -appalachian_mountains%1:17:00:: 09201301 1 0 -appalachians%1:17:00:: 09201301 1 0 -appall%2:37:00:: 01810447 1 0 -appall%2:37:10:: 01782650 2 0 -appalled%5:00:00:afraid:00 00078576 1 0 -appalling%1:11:00:: 07285872 1 1 -appalling%5:00:00:alarming:00 00193367 1 4 -appallingly%4:02:00:: 00261575 1 0 -appaloosa%1:05:00:: 02379743 1 0 -appanage%1:21:00:: 13254443 2 0 -appanage%1:21:01:: 13298287 1 0 -apparatchik%1:18:00:: 09799920 2 0 -apparatchik%1:18:01:: 09800056 1 0 -apparatus%1:06:00:: 02727825 1 22 -apparatus%1:08:00:: 05218899 2 0 -apparatus_urogenitalis%1:08:00:: 05509452 1 0 -apparel%1:06:00:: 02728440 1 0 -apparel%2:29:00:: 00047945 1 0 -apparel_chain%1:14:00:: 08061609 1 0 -apparel_industry%1:14:00:: 08066317 1 0 -appareled%5:00:00:clothed:00 00454440 1 0 -apparency%1:07:00:: 04706727 1 0 -apparent%5:00:00:obvious:00 01618376 1 19 -apparent%5:00:00:superficial:00 01873985 2 8 -apparent_horizon%1:15:00:: 08585657 1 0 -apparent_motion%1:19:00:: 11425088 1 0 -apparent_movement%1:19:00:: 11425088 1 0 -apparently%4:02:00:: 00039941 1 52 -apparently%4:02:01:: 00039318 2 0 -apparentness%1:07:01:: 04706727 1 0 -apparition%1:04:00:: 00050484 4 0 -apparition%1:09:00:: 05897553 3 0 -apparition%1:11:00:: 07323436 2 0 -apparition%1:18:00:: 09547111 1 1 -apparitional%5:00:00:supernatural:00 01574925 1 0 -appeal%1:04:00:: 01185611 3 8 -appeal%1:07:00:: 04687333 2 8 -appeal%1:10:00:: 07186828 1 9 -appeal%1:10:02:: 06513764 4 0 -appeal%2:32:00:: 00755447 2 2 -appeal%2:32:12:: 01024864 5 0 -appeal%2:37:00:: 01807882 3 1 -appeal%2:41:00:: 02497586 1 4 -appeal%2:41:04:: 02497824 4 0 -appeal_board%1:14:00:: 08323301 1 7 -appealable%3:00:00:: 00132849 1 0 -appealing%3:00:00:: 00170358 1 3 -appealing%3:00:02:: 02376277 2 1 -appealingly%4:02:00:: 00261694 1 0 -appealingness%1:07:00:: 04687333 1 0 -appeals_board%1:14:00:: 08323301 1 0 -appeals_court%1:14:00:: 08330106 1 0 -appear%2:30:00:: 00422090 2 102 -appear%2:30:01:: 00425967 3 22 -appear%2:30:02:: 00425071 5 7 -appear%2:36:00:: 01721169 6 2 -appear%2:39:00:: 02133435 1 121 -appear%2:39:01:: 02134672 4 14 -appear%2:41:03:: 02597762 7 1 -appearance%1:04:00:: 00050195 5 1 -appearance%1:04:01:: 01233627 3 2 -appearance%1:04:02:: 00755277 6 0 -appearance%1:07:00:: 04673965 1 19 -appearance%1:09:00:: 05939432 4 1 -appearance%1:11:00:: 07321772 2 4 -appearing%1:04:00:: 01233627 1 0 -appeasable%5:00:00:placable:00 01784946 1 0 -appease%2:32:00:: 00765213 3 1 -appease%2:34:00:: 01194114 2 1 -appease%2:37:00:: 01765392 1 2 -appeasement%1:04:00:: 01150938 1 0 -appeaser%1:18:00:: 09800249 1 0 -appeasing%5:00:00:conciliatory:00 00759826 1 0 -appellant%1:18:00:: 09800469 1 0 -appellant%3:01:00:: 03044083 1 0 -appellate%3:01:00:: 03044083 1 0 -appellate_court%1:14:00:: 08330106 1 0 -appellation%1:10:00:: 06338908 1 0 -appellative%1:10:00:: 06338908 1 0 -appellative%3:01:00:: 02635499 1 0 -appellative%5:00:00:denotative:00 00722386 2 0 -append%2:32:00:: 01027174 3 0 -append%2:35:00:: 01328513 2 0 -append%2:35:01:: 01328705 1 1 -appendage%1:06:00:: 02728763 3 0 -appendage%1:08:00:: 05559908 1 0 -appendage%1:08:01:: 05470189 2 0 -appendaged%3:00:00:: 00133259 1 0 -appendant%5:00:00:affixed:00 00158864 1 0 -appendectomy%1:04:00:: 00666232 1 0 -appendicectomy%1:04:00:: 00666232 1 0 -appendicitis%1:26:00:: 14258512 1 0 -appendicle%1:06:00:: 02728968 1 0 -appendicular%3:01:00:: 02635611 1 0 -appendicular_artery%1:08:00:: 05336893 1 0 -appendicular_skeleton%1:08:00:: 05587034 1 0 -appendicular_vein%1:08:00:: 05357867 1 0 -appendicularia%1:05:00:: 01470733 1 0 -appendix%1:08:00:: 05537576 2 0 -appendix%1:10:00:: 06399337 1 6 -appenzeller%1:05:00:: 02107908 1 0 -apperceive%2:39:00:: 02107097 1 0 -apperception%1:09:00:: 05708658 1 0 -apperceptive%5:00:00:perceptive:00 01745191 1 0 -appertain%2:42:00:: 02653706 1 0 -appetence%1:12:00:: 07485626 1 0 -appetency%1:12:00:: 07485626 1 0 -appetent%5:00:00:desirous:00 00888051 1 0 -appetiser%1:13:00:: 07581346 1 0 -appetising%3:00:00:: 00133417 1 0 -appetisingness%1:07:00:: 04995531 1 0 -appetite%1:12:00:: 07485626 1 5 -appetite_suppressant%1:06:00:: 04361529 1 0 -appetitive%3:01:00:: 02997529 1 0 -appetizer%1:13:00:: 07581346 1 0 -appetizing%3:00:00:: 00133417 1 0 -appetizingness%1:07:00:: 04995531 1 0 -appian_way%1:06:00:: 02729060 1 0 -applaud%2:32:00:: 00860292 2 4 -applaud%2:32:01:: 00861929 1 5 -applaudable%5:00:00:worthy:00 02585545 1 0 -applauder%1:18:00:: 09926088 1 0 -applause%1:10:00:: 06691989 1 9 -apple%1:13:00:: 07739125 1 1 -apple%1:20:00:: 12633994 2 0 -apple-scented%5:00:00:odorous:00 01055923 1 0 -apple-shaped%5:00:00:round:00 02041134 1 0 -apple-sized%5:00:00:sized:00 02222578 1 0 -apple_aphid%1:05:00:: 02252799 1 0 -apple_blight%1:26:00:: 14216054 1 0 -apple_butter%1:13:00:: 07642742 1 0 -apple_canker%1:26:00:: 14216054 1 0 -apple_dumpling%1:13:00:: 07614103 1 0 -apple_fritter%1:13:00:: 07640014 1 0 -apple_geranium%1:20:00:: 12688187 1 0 -apple_jelly%1:13:00:: 07643474 1 0 -apple_juice%1:13:00:: 07924366 1 0 -apple_maggot%1:05:00:: 02196896 1 0 -apple_mint%1:20:00:: 12856479 1 0 -apple_nut%1:20:00:: 12594533 1 0 -apple_of_discord%1:06:00:: 02729345 1 0 -apple_of_peru%1:20:01:: 12907057 1 0 -apple_of_peru%1:20:02:: 12903503 2 0 -apple_orchard%1:06:00:: 02729755 1 0 -apple_pie%1:13:00:: 07626174 1 0 -apple_polisher%1:18:00:: 09800631 1 0 -apple_rust%1:20:00:: 13065514 1 0 -apple_sauce%1:13:00:: 07825850 1 0 -apple_tart%1:13:00:: 07624130 1 0 -apple_tart%1:13:01:: 07623834 2 0 -apple_tree%1:20:00:: 12633638 1 3 -apple_turnover%1:13:00:: 07624666 1 0 -applecart%1:06:00:: 02729222 2 0 -applecart%1:09:00:: 05795835 1 0 -applejack%1:13:00:: 07903543 1 1 -applemint%1:20:00:: 12856479 1 0 -applesauce%1:10:00:: 06611998 2 0 -applesauce%1:13:00:: 07825850 1 0 -applesauce_cake%1:13:00:: 07629697 1 0 -applet%1:10:00:: 06570647 1 0 -appleton%1:15:00:: 09157555 2 0 -appleton%1:18:00:: 10820613 1 0 -appleton_layer%1:15:00:: 08582337 1 0 -applewood%1:20:00:: 12633866 1 0 -appliance%1:06:00:: 02729837 2 0 -appliance%1:06:01:: 02729965 1 0 -applicability%1:24:00:: 13795180 1 2 -applicable%5:00:00:relevant:00 01975448 1 6 -applicant%1:18:00:: 09607280 1 13 -application%1:04:00:: 00036061 7 0 -application%1:04:01:: 00633329 6 0 -application%1:04:02:: 00949134 1 17 -application%1:04:03:: 00712225 3 4 -application%1:06:00:: 03691128 5 0 -application%1:10:00:: 06512580 2 8 -application%1:10:01:: 06570110 4 0 -application-oriented_language%1:10:00:: 06899110 1 0 -application_form%1:10:00:: 06473837 1 1 -application_program%1:10:00:: 06570110 1 0 -applications_programme%1:10:00:: 06570110 1 0 -applicative%5:00:00:practical:00 01834812 1 0 -applicator%1:06:00:: 02730265 1 1 -applicatory%5:00:00:practical:00 01834812 1 0 -applied%3:00:00:: 00863049 1 0 -applied_anatomy%1:09:00:: 06059125 1 0 -applied_math%1:09:00:: 06018022 1 0 -applied_mathematics%1:09:00:: 06018022 1 0 -applied_psychology%1:09:00:: 06138347 1 0 -applied_science%1:09:00:: 06125041 1 0 -applied_scientist%1:18:00:: 09615807 1 0 -applier%1:06:00:: 02730265 2 0 -applier%1:18:00:: 09607280 1 0 -applique%1:06:00:: 02730437 1 0 -applique%2:36:00:: 01670777 1 0 -apply%2:32:00:: 00765396 3 13 -apply%2:32:01:: 01026558 9 1 -apply%2:34:00:: 01158872 1 45 -apply%2:35:00:: 01363648 4 11 -apply%2:40:00:: 02309165 6 2 -apply%2:41:01:: 02561332 7 1 -apply%2:41:06:: 02560164 8 1 -apply%2:41:09:: 02595523 10 0 -apply%2:42:00:: 02676789 2 29 -apply%2:42:01:: 02707429 5 4 -appoggiatura%1:10:00:: 06871983 1 0 -appoint%2:40:00:: 02341370 3 0 -appoint%2:41:00:: 02475922 2 8 -appoint%2:41:01:: 02396205 1 13 -appointed%3:00:02:: 00846462 1 2 -appointed%5:00:00:assigned:00 00847196 2 2 -appointed%5:00:00:furnished:00 01097315 4 1 -appointed%5:00:00:settled:02 02129718 3 1 -appointee%1:18:00:: 09800964 1 2 -appointee%1:18:01:: 09607630 2 2 -appointive%3:00:00:: 00846462 2 0 -appointive%3:01:00:: 02635794 1 0 -appointment%1:04:00:: 00163779 1 6 -appointment%1:04:01:: 00586105 5 0 -appointment%1:04:02:: 00090393 6 0 -appointment%1:06:00:: 02730568 3 1 -appointment%1:14:00:: 08385009 2 1 -appointment%1:18:00:: 09607630 4 0 -appointment_book%1:10:00:: 06416049 1 0 -appointment_calendar%1:10:00:: 06416049 1 0 -apportion%2:40:00:: 02294179 2 0 -apportion%2:40:01:: 02234087 1 3 -apportionable%5:00:00:distributive:00 00468176 1 0 -apportioned%5:00:00:distributed:00 00540236 1 0 -apportioning%1:04:00:: 01083645 1 0 -apportionment%1:04:00:: 01083645 1 0 -apposable%3:00:00:: 01662510 1 0 -appose%2:35:00:: 01500214 1 0 -apposite%5:00:00:apropos:00 00138314 1 0 -appositeness%1:07:00:: 04716491 1 0 -apposition%1:04:00:: 01051801 3 0 -apposition%1:22:00:: 13433948 2 0 -apposition%1:24:00:: 13801217 1 0 -appositional%3:01:00:: 02635941 1 0 -appositive%3:01:00:: 02635941 1 0 -appositively%4:02:00:: 00121413 1 0 -appraisal%1:04:00:: 00875519 3 0 -appraisal%1:09:00:: 05733583 1 1 -appraisal%1:10:01:: 06528783 2 0 -appraise%2:31:00:: 00646542 2 0 -appraise%2:31:01:: 00681429 1 2 -appraiser%1:18:01:: 09802050 1 1 -appraiser%1:18:02:: 09802239 2 0 -appraising%5:00:00:critical:02 00649892 1 0 -appreciable%5:00:00:considerable:00 00624416 1 4 -appreciably%4:02:01:: 00006610 1 6 -appreciate%2:30:00:: 00316195 4 0 -appreciate%2:30:01:: 00315605 5 0 -appreciate%2:31:00:: 00592341 2 11 -appreciate%2:37:00:: 01805982 1 12 -appreciate%2:40:00:: 02256109 3 5 -appreciated%5:00:00:understood:00 01378429 1 0 -appreciation%1:04:00:: 01218593 4 1 -appreciation%1:04:01:: 00364440 5 1 -appreciation%1:09:00:: 05806623 1 7 -appreciation%1:09:01:: 05749619 2 2 -appreciation%1:10:00:: 07229111 3 1 -appreciative%5:00:00:discriminating:00 00774676 2 0 -appreciative%5:00:00:grateful:00 01146732 1 1 -appreciatively%4:02:00:: 00271264 1 0 -appreciativeness%1:12:00:: 07504529 1 0 -appreciator%1:18:00:: 09802445 1 0 -apprehend%2:31:00:: 00588221 1 2 -apprehend%2:35:00:: 01215137 2 1 -apprehend%2:37:00:: 01782432 3 0 -apprehended%5:00:00:understood:00 01378429 1 0 -apprehender%1:18:00:: 09801102 2 0 -apprehender%1:18:01:: 10240082 1 0 -apprehensible%5:00:00:comprehensible:00 00533452 1 0 -apprehension%1:04:00:: 00088725 4 0 -apprehension%1:09:00:: 05805475 2 3 -apprehension%1:09:01:: 05951566 3 0 -apprehension%1:12:00:: 07521674 1 5 -apprehensive%5:00:00:afraid:00 00079069 3 0 -apprehensive%5:00:00:perceptive:00 01745027 1 0 -apprehensive%5:00:00:uneasy:00 00822907 2 0 -apprehensively%4:02:00:: 00185970 1 0 -apprehensiveness%1:12:00:: 07521674 1 0 -apprentice%1:18:00:: 09801864 1 10 -apprentice%2:31:00:: 00602635 1 1 -apprenticed%5:00:00:unfree:00 01064806 1 0 -apprenticeship%1:04:00:: 00588998 1 1 -appressed%5:00:00:close:01 00447909 1 0 -apprisal%1:10:00:: 07212424 1 0 -apprise%2:30:00:: 00315605 4 0 -apprise%2:30:01:: 00316195 3 0 -apprise%2:32:00:: 00873682 1 0 -apprise%2:32:01:: 00831074 2 0 -apprize%2:30:00:: 00315605 4 0 -apprize%2:30:01:: 00316195 3 0 -apprize%2:32:00:: 00831074 2 0 -apprize%2:32:01:: 00873682 1 0 -appro%1:26:00:: 14412564 1 0 -approach%1:04:00:: 00280853 2 9 -approach%1:04:01:: 00573268 9 0 -approach%1:04:02:: 00941140 1 29 -approach%1:06:00:: 02671062 3 2 -approach%1:07:00:: 05046471 7 0 -approach%1:07:01:: 04746134 8 0 -approach%1:10:00:: 07164349 6 0 -approach%1:11:00:: 07310507 5 0 -approach%1:15:00:: 08493961 4 0 -approach%2:32:00:: 00990392 5 6 -approach%2:38:00:: 02053941 1 46 -approach%2:38:01:: 01849746 4 6 -approach%2:41:00:: 02439281 3 6 -approach%2:42:00:: 02703952 2 9 -approach_path%1:15:00:: 08493961 1 0 -approach_pattern%1:15:00:: 08492747 1 0 -approach_shot%1:04:00:: 00573268 1 0 -approach_trench%1:06:00:: 02730748 1 0 -approachability%1:07:00:: 04655649 1 0 -approachable%3:00:00:: 00134060 2 0 -approachable%5:00:00:accessible:00 00019349 3 0 -approachable%5:00:00:comprehensible:00 00533221 1 1 -approaching%1:04:00:: 00280853 3 0 -approaching%1:07:00:: 05046471 2 0 -approaching%1:11:00:: 07310507 1 0 -approaching%5:00:00:future:00 01732601 1 0 -approbate%2:31:00:: 00687033 2 0 -approbate%2:32:00:: 00803815 1 0 -approbation%1:10:00:: 06687178 2 0 -approbation%1:12:00:: 07500612 1 0 -approbative%5:00:00:favorable:02 00996089 1 0 -approbatory%5:00:00:favorable:02 00996089 1 0 -appropriable%5:00:00:alienable:00 00093433 1 0 -appropriate%2:31:00:: 00724150 1 11 -appropriate%2:40:00:: 02272549 2 1 -appropriate%3:00:00:: 00134701 1 29 -appropriately%4:02:00:: 00139508 1 2 -appropriateness%1:07:00:: 04715947 2 0 -appropriateness%1:07:01:: 04899031 1 0 -appropriation%1:04:00:: 00083975 3 0 -appropriation%1:04:01:: 00373418 2 0 -appropriation%1:21:00:: 13289845 1 3 -appropriation_bill%1:10:00:: 06537124 1 0 -appropriative%3:01:00:: 02636123 1 0 -appropriator%1:18:00:: 09802641 1 0 -approval%1:04:02:: 01215392 1 11 -approval%1:10:00:: 06686736 4 0 -approval%1:12:00:: 07500159 2 3 -approval%1:26:00:: 14412374 3 1 -approve%2:31:00:: 00673983 2 7 -approve%2:32:00:: 00806502 1 27 -approved%5:00:00:authorized:00 00179035 1 4 -approver%1:18:00:: 09802844 1 0 -approving%1:04:00:: 01215392 1 0 -approving%5:00:00:favorable:02 00996089 1 0 -approvingly%4:02:00:: 00261966 1 2 -approximate%2:31:00:: 00672433 2 2 -approximate%2:42:00:: 02666060 1 5 -approximate%5:00:00:close:01 00448130 3 0 -approximate%5:00:00:close:02 00451872 2 0 -approximate%5:00:00:inexact:00 00915976 1 3 -approximate_range%1:07:00:: 05126066 1 0 -approximately%4:02:00:: 00007015 1 26 -approximation%1:04:00:: 00146277 4 0 -approximation%1:07:00:: 04744032 2 1 -approximation%1:09:00:: 05803379 1 3 -approximation%1:10:00:: 06783442 3 0 -approximative%5:00:00:inexact:00 00915976 1 0 -appurtenance%1:06:00:: 02671421 2 0 -appurtenance%1:06:01:: 03430959 1 0 -appurtenant%5:00:00:supportive:00 02354897 1 0 -apr%1:28:00:: 15211189 1 0 -apractic%5:00:00:unfit:01 01018359 1 0 -apraxia%1:26:00:: 14091126 1 0 -apraxic%5:00:00:unfit:01 01018359 1 0 -apresoline%1:06:00:: 03550671 1 0 -apricot%1:07:00:: 04971675 3 0 -apricot%1:13:00:: 07750872 2 0 -apricot%1:20:00:: 12640607 1 0 -apricot_bar%1:13:00:: 07637949 1 0 -apricot_sauce%1:13:00:: 07832307 1 0 -apricot_tree%1:20:00:: 12640607 1 0 -april%1:28:00:: 15211189 1 22 -april_14%1:28:00:: 15188688 1 0 -april_fool%1:04:00:: 00514356 2 0 -april_fool%1:18:00:: 09801275 1 0 -april_fools'%1:28:00:: 15188505 1 0 -april_fools'_day%1:28:00:: 15188505 1 0 -apron%1:06:00:: 02730930 1 3 -apron%1:06:01:: 02731123 4 0 -apron%1:06:02:: 04013362 3 0 -apron%1:15:00:: 08496334 2 0 -apron_string%1:06:00:: 02731251 1 0 -apropos%3:00:00:: 00138169 1 0 -apropos%4:02:00:: 00273752 1 0 -apropos%4:02:01:: 00156222 2 0 -apse%1:06:00:: 02731398 1 0 -apsidal%3:01:00:: 02636261 1 0 -apsis%1:06:00:: 02731398 1 0 -apsu%1:18:00:: 09515877 1 0 -apt%5:00:00:apropos:00 00138314 4 0 -apt%5:00:00:inclined:02 01292411 1 6 -apt%5:00:00:intelligent:00 01334958 3 0 -apt%5:00:00:likely:00 01411919 2 0 -aptenodytes%1:05:00:: 02056421 1 0 -aptenodytes_forsteri%1:05:00:: 02056728 1 0 -aptenodytes_patagonica%1:05:00:: 02056570 1 0 -apteral%3:00:00:: 00139344 1 0 -apteral%5:00:00:wingless:00 02568389 2 0 -apterous%5:00:00:wingless:00 02568389 1 0 -apterygidae%1:05:00:: 01520284 1 0 -apterygiformes%1:05:00:: 01520058 1 0 -apteryx%1:05:00:: 01520576 1 0 -aptitude%1:09:00:: 05622456 1 3 -aptitudinal%3:01:00:: 02636358 1 0 -aptly%4:02:00:: 00185172 1 0 -aptness%1:07:00:: 04716491 2 0 -aptness%1:07:01:: 04943154 1 0 -apulia%1:15:00:: 08810358 1 0 -apus%1:05:00:: 01832381 2 0 -apus%1:17:00:: 09201714 1 0 -apus_apus%1:05:00:: 01832493 1 0 -apyretic_tetanus%1:26:00:: 14310504 1 0 -aqaba%1:15:00:: 08927678 1 0 -aqua%1:07:00:: 04969798 1 0 -aqua-lung%1:06:00:: 02731629 1 0 -aqua_fortis%1:27:00:: 14766532 1 0 -aqua_regia%1:27:00:: 14767477 1 0 -aqua_vitae%1:13:00:: 07902336 1 0 -aquacultural%3:01:00:: 02790474 1 0 -aquaculture%1:04:00:: 00916147 1 0 -aqualung%1:06:00:: 02731629 1 0 -aquamarine%1:07:00:: 04969798 2 0 -aquamarine%1:27:00:: 14767663 1 0 -aquanaut%1:18:00:: 10607291 1 0 -aquanaut%1:18:01:: 09801371 2 0 -aquaphobia%1:26:00:: 14382967 1 0 -aquaphobic%5:00:00:afraid:00 00080098 1 0 -aquaplane%1:06:00:: 02731900 1 0 -aquaplane%2:38:00:: 01942854 2 0 -aquaplane%2:38:01:: 01956512 1 0 -aquarium%1:06:00:: 02732072 1 0 -aquarius%1:15:00:: 08687884 3 0 -aquarius%1:17:00:: 09201840 2 0 -aquarius%1:18:00:: 09753642 1 0 -aquarius_the_water_bearer%1:15:00:: 08687884 1 0 -aquatic%1:20:00:: 11536673 1 0 -aquatic%3:00:00:: 00124077 2 0 -aquatic%3:01:00:: 02636582 1 0 -aquatic_bird%1:05:00:: 01844917 1 0 -aquatic_fern%1:20:00:: 12957076 1 0 -aquatic_mammal%1:05:00:: 02062017 1 0 -aquatic_plant%1:20:00:: 13121544 1 0 -aquatic_vertebrate%1:05:00:: 01473806 1 0 -aquatics%1:04:00:: 00441824 1 0 -aquatint%1:04:00:: 00939091 2 0 -aquatint%1:06:00:: 02732295 1 0 -aquatint%2:36:00:: 01750668 1 0 -aquavit%1:13:00:: 07902799 1 0 -aqueduct%1:06:00:: 02732433 1 0 -aqueductus_cerebri%1:08:00:: 05503401 1 0 -aqueous%3:00:00:: 01355089 2 0 -aqueous%3:01:00:: 02636461 1 14 -aqueous_humor%1:08:00:: 05318263 1 0 -aqueous_humour%1:08:00:: 05318263 1 0 -aqueous_solution%1:27:00:: 14589912 1 0 -aquicultural%3:01:00:: 02790474 1 0 -aquiculture%1:04:00:: 00918976 1 0 -aquifer%1:17:00:: 09201998 1 0 -aquiferous%3:01:00:: 02636708 1 0 -aquifoliaceae%1:20:00:: 12756286 1 0 -aquila%1:05:00:: 01614195 3 0 -aquila%1:15:00:: 08804319 2 0 -aquila%1:17:00:: 09202142 1 0 -aquila_chrysaetos%1:05:00:: 01614343 1 0 -aquila_degli_abruzzi%1:15:00:: 08804319 1 0 -aquila_rapax%1:05:00:: 01614556 1 0 -aquilege%1:20:00:: 11727091 1 0 -aquilegia%1:20:00:: 11727091 1 0 -aquilegia_caerulea%1:20:00:: 11727540 1 0 -aquilegia_canadensis%1:20:00:: 11727358 1 0 -aquilegia_scopulorum_calcarea%1:20:00:: 11727540 1 0 -aquilegia_vulgaris%1:20:00:: 11727738 1 0 -aquiline%5:00:00:crooked:01 02312354 1 0 -aquinas%1:18:00:: 10820790 1 0 -aquitaine%1:15:00:: 08940517 1 0 -aquitania%1:15:00:: 08940517 1 0 -ar%1:15:00:: 09059274 3 0 -ar%1:23:00:: 13613862 2 0 -ar%1:27:00:: 14628920 1 0 -ar_rimsal%1:15:00:: 09172111 1 0 -ara%1:05:00:: 01818409 2 0 -ara%1:17:00:: 09202285 1 0 -arab%1:05:00:: 02379908 2 0 -arab%1:18:00:: 09729530 1 0 -arab-berbers%1:14:00:: 08483500 1 0 -arab-israeli_war%1:04:00:: 01302449 2 0 -arab-israeli_war%1:04:01:: 01302683 1 0 -arab_chief%1:18:00:: 10588357 1 0 -arab_league%1:14:00:: 08172103 1 0 -arab_republic_of_egypt%1:15:00:: 08897065 1 0 -arab_revolutionary_brigades%1:14:00:: 08020242 1 0 -arabesque%1:06:00:: 02732572 2 0 -arabesque%1:07:00:: 05081802 1 0 -arabia%1:15:00:: 08847694 1 0 -arabian%1:05:00:: 02379908 2 0 -arabian%1:18:00:: 09729530 1 0 -arabian%3:01:00:: 03044462 2 0 -arabian%3:01:01:: 03044566 1 0 -arabian_camel%1:05:00:: 02437312 1 0 -arabian_coffee%1:20:00:: 12663023 1 0 -arabian_desert%1:15:00:: 09167767 2 0 -arabian_desert%1:15:01:: 09168020 1 0 -arabian_gulf%1:17:00:: 09390424 1 0 -arabian_jasmine%1:20:00:: 12307455 1 0 -arabian_nights%1:10:00:: 07222230 1 0 -arabian_nights'_entertainment%1:10:00:: 07222230 1 0 -arabian_peninsula%1:15:00:: 08847694 1 0 -arabian_sea%1:17:00:: 09202405 1 1 -arabian_tea%1:06:00:: 03608870 1 0 -arabic%1:10:00:: 06988057 1 0 -arabic%3:01:00:: 03044740 1 0 -arabic_alphabet%1:10:00:: 06500062 1 0 -arabic_language%1:10:00:: 06988057 1 0 -arabic_numeral%1:10:00:: 06807501 1 0 -arabidopsis%1:20:00:: 11871294 1 0 -arabidopsis_lyrata%1:20:00:: 11871748 1 0 -arabidopsis_thaliana%1:20:00:: 11871496 1 0 -arability%1:07:00:: 04715818 1 0 -arabis%1:20:00:: 11871916 1 0 -arabis_canadensis%1:20:00:: 11872324 1 0 -arabis_glabra%1:20:00:: 11872658 1 0 -arabis_turrita%1:20:00:: 11872473 1 0 -arabist%1:18:00:: 09802951 1 0 -arable%5:00:00:productive:00 01865807 1 1 -araceae%1:20:00:: 11778534 1 0 -araceous%3:01:00:: 02641201 1 0 -arachis%1:20:00:: 11748330 1 0 -arachis_hypogaea%1:20:00:: 11748501 1 0 -arachnid%1:05:00:: 01769347 1 0 -arachnida%1:05:00:: 01768969 1 0 -arachnidian%3:01:00:: 02636811 1 0 -arachnoid%1:05:00:: 01769347 2 0 -arachnoid%1:08:00:: 05482676 1 0 -arachnoid%3:01:00:: 02636811 1 0 -arachnoid_membrane%1:08:00:: 05482676 1 0 -arachnophobia%1:26:00:: 14382075 1 0 -arafat%1:18:00:: 10821218 1 0 -arafura_sea%1:17:00:: 09202603 1 0 -aragon%1:15:00:: 09027460 2 0 -aragon%1:18:00:: 10821379 1 0 -aragonite%1:27:00:: 14666758 1 0 -araguaia%1:17:00:: 09202810 1 0 -araguaia_river%1:17:00:: 09202810 1 0 -araguaya%1:17:00:: 09202810 1 0 -araguaya_river%1:17:00:: 09202810 1 0 -arak%1:13:00:: 07902937 1 0 -aral_sea%1:17:00:: 09330233 1 0 -arales%1:20:00:: 11778391 1 0 -aralia%1:20:00:: 11797321 1 0 -aralia_elata%1:20:00:: 11798496 1 0 -aralia_hispida%1:20:00:: 11798270 1 0 -aralia_nudicaulis%1:20:00:: 11797722 1 0 -aralia_racemosa%1:20:00:: 11797981 1 0 -aralia_spinosa%1:20:00:: 11797508 1 0 -aralia_stipulata%1:20:00:: 11798688 1 0 -araliaceae%1:20:00:: 11796744 1 0 -aram%1:15:00:: 09033813 1 0 -aram_ilich_khachaturian%1:18:00:: 11103648 1 0 -aram_kachaturian%1:18:00:: 11095587 1 0 -aram_khachaturian%1:18:00:: 11103648 1 0 -aramaean%1:18:00:: 09803060 1 0 -aramaean%3:01:00:: 02637182 1 0 -aramaic%1:10:00:: 06988307 1 0 -aramaic%1:10:01:: 06351888 2 0 -aramaic%3:01:00:: 02637063 1 0 -aramaic_script%1:10:00:: 06351888 1 0 -arame%1:05:00:: 01397690 1 0 -aramean%1:18:00:: 09803060 1 0 -aramean%3:01:00:: 02637182 1 0 -aramus%1:05:00:: 02013362 1 0 -aramus_guarauna%1:05:00:: 02013567 1 0 -aramus_pictus%1:05:00:: 02013706 1 0 -aran_islands%1:15:00:: 08708870 1 0 -aranea%1:05:00:: 01773319 1 0 -aranea_diademata%1:05:00:: 01773797 1 0 -araneae%1:05:00:: 01771966 1 0 -araneida%1:05:00:: 01771966 1 0 -araneidal%3:01:00:: 02637380 1 0 -araneidan%3:01:00:: 02637380 1 0 -araneus%1:05:00:: 01773319 1 0 -araneus_cavaticus%1:05:00:: 01773549 1 0 -aranyaka%1:10:00:: 06465623 1 0 -arapaho%1:10:00:: 06908291 2 0 -arapaho%1:18:00:: 09650250 1 0 -arapahoe%1:10:00:: 06908291 2 0 -arapahoe%1:18:00:: 09650250 1 0 -ararat%1:17:00:: 09203032 1 0 -arariba%1:20:00:: 11749603 1 0 -araroba%1:06:00:: 02732696 1 0 -aras%1:17:00:: 09203217 1 0 -arauca%1:17:00:: 09203481 1 0 -araucaria%1:20:00:: 11645914 1 0 -araucaria_araucana%1:20:00:: 11646167 1 0 -araucaria_bidwillii%1:20:00:: 11646694 1 0 -araucaria_columnaris%1:20:00:: 11646517 1 0 -araucaria_cunninghamii%1:20:00:: 11646955 1 0 -araucaria_excelsa%1:20:00:: 11646344 1 0 -araucaria_family%1:20:00:: 11645271 1 0 -araucaria_heterophylla%1:20:00:: 11646344 1 0 -araucariaceae%1:20:00:: 11645271 1 0 -araujia%1:20:00:: 13235947 1 0 -araujia_sericofera%1:20:00:: 13236100 1 0 -arava%1:06:00:: 03654086 1 0 -arawak%1:10:00:: 06917764 2 0 -arawak%1:18:00:: 09803247 1 0 -arawakan%1:10:00:: 06917764 2 0 -arawakan%1:18:00:: 09803247 1 0 -arawakan%3:01:00:: 02637537 1 0 -arawn%1:18:00:: 09508076 1 0 -araxes%1:17:00:: 09203217 1 0 -arb%1:18:00:: 09803800 1 0 -arbalest%1:06:00:: 02981911 1 0 -arbalist%1:06:00:: 02981911 1 0 -arbiter%1:18:00:: 09803429 2 0 -arbiter%1:18:02:: 09804053 1 0 -arbitrable%3:00:00:: 00140233 1 0 -arbitrage%1:04:00:: 01093965 1 0 -arbitrage%2:40:00:: 02260959 1 0 -arbitrager%1:18:00:: 09803800 1 0 -arbitrageur%1:18:00:: 09803800 1 0 -arbitral%3:01:00:: 02637730 1 0 -arbitrament%1:04:00:: 01190884 1 0 -arbitrarily%4:02:00:: 00070765 1 3 -arbitrariness%1:07:00:: 04671841 1 0 -arbitrary%3:00:00:: 00718924 1 8 -arbitrate%2:32:00:: 00760956 1 1 -arbitration%1:04:00:: 01190884 2 0 -arbitration%1:10:00:: 07150850 1 0 -arbitration_clause%1:10:00:: 06393253 1 0 -arbitrational%3:01:00:: 02637730 1 0 -arbitrative%3:01:00:: 02637973 1 0 -arbitrator%1:18:00:: 09803429 1 0 -arbitrement%1:04:00:: 01190884 1 0 -arbor%1:06:00:: 02732827 3 0 -arbor%1:06:01:: 04277493 2 0 -arbor%1:20:00:: 13107891 1 0 -arbor_day%1:28:00:: 15158359 1 0 -arboraceous%5:00:00:wooded:00 02573192 1 0 -arborary%3:01:00:: 02638121 1 0 -arboreal%3:00:00:: 00141818 2 0 -arboreal%3:01:00:: 02638121 1 1 -arboreal%5:00:00:branchy:00 00613382 3 0 -arboreal_salamander%1:05:00:: 01637338 1 0 -arboreous%3:00:04:: 00141818 1 0 -arboreous%5:00:00:branchy:00 00613382 3 0 -arboreous%5:00:00:wooded:00 02573192 2 0 -arborescent%5:00:00:branchy:00 00613382 1 0 -arborescent_plant%1:20:00:: 13103750 1 0 -arboresque%5:00:00:branchy:00 00613382 1 0 -arboretum%1:06:00:: 02733075 1 0 -arborical%3:01:00:: 02638121 1 0 -arboriculture%1:04:00:: 00917614 1 0 -arboriculturist%1:18:00:: 10104756 1 0 -arboriform%5:00:00:branchy:00 00613382 1 0 -arborise%2:30:00:: 00329495 1 0 -arborist%1:18:00:: 10727818 1 0 -arborize%2:30:00:: 00329495 1 0 -arborolatry%1:04:00:: 01045714 1 0 -arborous%3:01:00:: 02638121 1 0 -arborvirus%1:05:00:: 01329186 1 0 -arborvitae%1:20:00:: 11643835 1 0 -arbour%1:06:00:: 02732827 1 0 -arbovirus%1:05:00:: 01329186 1 0 -arbutus%1:20:00:: 12230347 1 0 -arbutus_menziesii%1:20:00:: 12230540 1 0 -arbutus_unedo%1:20:00:: 12230794 1 0 -arc%1:19:00:: 11511523 1 37 -arc%1:25:00:: 13874384 2 6 -arc%1:25:01:: 13896100 3 0 -arc%2:38:00:: 02034986 1 0 -arc-boutant%1:06:00:: 03373943 1 0 -arc_cosecant%1:24:00:: 13789136 1 0 -arc_cosine%1:24:00:: 13787853 1 0 -arc_cotangent%1:24:00:: 13788502 1 0 -arc_lamp%1:06:00:: 02735361 1 0 -arc_light%1:06:00:: 02735361 1 0 -arc_secant%1:24:00:: 13788820 1 0 -arc_sine%1:24:00:: 13787551 1 0 -arc_tangent%1:24:00:: 13788182 1 0 -arca%1:05:00:: 01963136 1 0 -arcade%1:06:01:: 02733213 2 0 -arcade%1:06:02:: 02733378 1 0 -arcadia%1:15:00:: 08790353 1 0 -arcadian%1:18:00:: 09711754 1 0 -arcadian%5:00:00:rural:00 02051179 1 0 -arcadic%1:10:00:: 06977948 1 0 -arcadic_dialect%1:10:00:: 06977948 1 0 -arcado-cyprians%1:14:00:: 08160586 1 0 -arcane%5:00:00:esoteric:00 00899612 1 0 -arcangelo_corelli%1:18:00:: 10910948 1 0 -arcanum%1:10:00:: 06672953 1 0 -arccos%1:24:00:: 13787853 1 0 -arccosecant%1:24:00:: 13789136 1 0 -arccosine%1:24:00:: 13787853 1 0 -arccotangent%1:24:00:: 13788502 1 0 -arcdegree%1:23:00:: 13611207 1 0 -arced%5:00:00:curved:00 02315461 1 0 -arcella%1:05:00:: 01394492 1 0 -arcellidae%1:05:00:: 01394193 1 0 -arceuthobium%1:20:00:: 12738087 1 0 -arceuthobium_pusillum%1:20:00:: 12738259 1 0 -arch%1:06:00:: 02733524 4 0 -arch%1:06:01:: 02734217 3 0 -arch%1:08:00:: 05576573 2 1 -arch%1:25:00:: 13886133 1 1 -arch%2:38:00:: 02034986 1 3 -arch%5:00:00:playful:00 02122715 3 0 -arch%5:00:00:skilled:00 02226661 2 0 -arch%5:00:00:superior:01 02338917 1 0 -arch_over%2:38:00:: 02035315 1 0 -arch_support%1:06:00:: 02735268 1 0 -archaean%5:00:00:early:00 00814073 1 0 -archaebacteria%1:05:00:: 01347583 1 0 -archaebacterium%1:05:00:: 01347583 1 0 -archaeobacteria%1:05:00:: 01347583 1 0 -archaeologic%3:01:00:: 02638392 1 0 -archaeological%3:01:00:: 02638392 1 0 -archaeologist%1:18:00:: 09804806 1 1 -archaeology%1:09:00:: 06144081 1 0 -archaeopteryx%1:05:00:: 01516212 1 0 -archaeopteryx_lithographica%1:05:00:: 01516212 1 0 -archaeornis%1:05:00:: 01517389 1 0 -archaeornithes%1:05:00:: 01515811 1 0 -archaeozoic%1:28:00:: 15129220 1 0 -archaeozoic%5:00:00:early:00 00814251 1 0 -archaeozoic_aeon%1:28:00:: 15129220 1 0 -archaic%5:00:00:early:02 00817731 2 0 -archaic%5:00:00:old:01 01639230 1 0 -archaicism%1:10:00:: 07073447 1 0 -archaise%2:30:00:: 00522068 1 0 -archaism%1:10:00:: 07073447 1 0 -archaist%1:18:00:: 09797606 2 0 -archaist%1:18:01:: 09804230 1 0 -archaistic%3:01:00:: 02638740 1 0 -archaize%2:30:00:: 00522068 1 1 -archangel%1:18:00:: 09539183 1 1 -archangel%1:20:00:: 12932173 2 0 -archangelic%3:01:00:: 02638894 1 0 -archangelical%3:01:00:: 02638894 1 0 -archbishop%1:18:00:: 09805151 1 5 -archbishopric%1:15:00:: 08550455 1 0 -archdeacon%1:18:00:: 09804343 1 0 -archdeaconry%1:15:00:: 08550560 1 0 -archdiocesan%3:01:00:: 02639193 1 0 -archdiocese%1:15:00:: 08550862 1 0 -archducal%3:01:00:: 02639302 1 0 -archduchess%1:18:00:: 09804518 1 0 -archduchy%1:15:00:: 08556950 1 0 -archduke%1:18:00:: 09804658 1 0 -archean%1:28:00:: 15129220 1 0 -archean%5:00:00:early:00 00814073 1 0 -archean_aeon%1:28:00:: 15129220 1 0 -archean_eon%1:28:00:: 15129220 1 0 -arched%3:01:00:: 02639064 1 1 -arched%5:00:00:curved:00 02315461 2 1 -archegonial%3:01:00:: 02639430 1 0 -archegoniate%3:01:00:: 02639430 1 0 -archegonium%1:20:00:: 11689054 1 0 -archenteron%1:05:00:: 01462945 1 0 -archeobacteria%1:05:00:: 01347583 1 0 -archeologic%3:01:00:: 02638392 1 0 -archeological%3:01:00:: 02638392 1 1 -archeological_remains%1:17:00:: 09203677 1 0 -archeological_site%1:15:00:: 08550076 1 0 -archeologist%1:18:00:: 09804806 1 0 -archeology%1:09:00:: 06144081 1 0 -archeopteryx%1:05:00:: 01516212 1 0 -archeozoic%1:28:00:: 15129220 1 0 -archeozoic%5:00:00:early:00 00814251 1 0 -archeozoic_eon%1:28:00:: 15129220 1 0 -archepiscopal%3:01:00:: 02639895 1 0 -archer%1:15:00:: 08687525 3 0 -archer%1:18:00:: 09805324 1 0 -archer%1:18:01:: 09753348 2 0 -archerfish%1:05:00:: 02620578 1 0 -archery%1:04:00:: 00446980 1 0 -arches_national_park%1:15:00:: 08602254 1 0 -archespore%1:20:00:: 11688378 1 0 -archesporial%3:01:00:: 02639590 1 0 -archesporium%1:20:00:: 11688378 1 0 -archetypal%5:00:00:first:00 01011392 1 0 -archetype%1:09:00:: 05938400 1 0 -archetypical%5:00:00:first:00 01011392 1 0 -archiannelid%1:05:00:: 01934844 1 0 -archiannelida%1:05:00:: 01934705 1 0 -archibald_macleish%1:18:00:: 11148152 1 0 -archibald_percival_wavell%1:18:00:: 11377315 1 0 -archidiaconal%3:01:00:: 02639772 1 0 -archidiaconate%1:26:00:: 14432527 1 0 -archidiskidon%1:05:00:: 02505342 1 0 -archidiskidon_imperator%1:05:00:: 02505485 1 0 -archiepiscopal%3:01:00:: 02639895 1 0 -archil%1:20:01:: 12988572 2 0 -archil%1:27:00:: 14989430 1 0 -archilochus%1:05:00:: 01834039 1 0 -archilochus_colubris%1:05:00:: 01834177 1 0 -archimandrite%1:18:00:: 09754404 1 0 -archimedes%1:18:00:: 10821514 1 0 -archimedes'_principle%1:09:00:: 05874716 1 0 -archine%1:23:00:: 13652443 1 0 -arching%5:00:00:curved:00 02315461 1 1 -archipallium%1:08:00:: 05481870 1 0 -archipelagic%3:01:00:: 02640086 1 0 -archipelago%1:17:00:: 09203827 1 0 -architect%1:18:00:: 09805475 1 9 -architectonic%3:01:00:: 02898121 1 0 -architectonics%1:09:00:: 06124395 1 0 -architectural%3:01:00:: 02897957 1 4 -architectural_engineering%1:09:00:: 06134075 1 0 -architectural_ornament%1:06:00:: 02734423 1 0 -architectural_plan%1:06:00:: 03954199 1 0 -architectural_style%1:09:00:: 05841351 1 0 -architecturally%4:02:00:: 00268165 1 0 -architecture%1:04:00:: 00610738 3 1 -architecture%1:06:00:: 02734725 1 3 -architecture%1:07:00:: 04932278 4 0 -architecture%1:09:00:: 06123363 2 1 -architeuthis%1:05:00:: 01972131 1 0 -architrave%1:06:00:: 02734835 2 0 -architrave%1:06:01:: 02734994 1 0 -archival%3:01:00:: 02640223 1 0 -archive%1:06:00:: 02735086 1 0 -archive%2:35:00:: 01384638 1 0 -archives%1:10:00:: 06592991 1 1 -archivist%1:18:00:: 09806944 1 0 -archly%4:02:00:: 00274160 1 0 -archness%1:07:00:: 04649651 1 0 -archosargus%1:05:00:: 02591757 1 0 -archosargus_probatocephalus%1:05:00:: 02592055 1 0 -archosargus_rhomboidalis%1:05:00:: 02591911 1 0 -archosaur%1:05:00:: 01695681 1 0 -archosauria%1:05:00:: 01695259 1 0 -archosaurian%1:05:00:: 01695681 1 0 -archosaurian%3:01:00:: 02640354 1 0 -archosaurian_reptile%1:05:00:: 01695681 1 0 -archpriest%1:18:00:: 09807075 1 0 -archway%1:06:00:: 02734217 1 0 -arcidae%1:05:00:: 01963017 1 0 -arciform%5:00:00:curved:00 02315461 1 0 -arcminute%1:23:00:: 13611567 1 0 -arco%5:00:00:bowed:00 00945658 1 0 -arcsec%1:24:00:: 13788820 1 0 -arcsecant%1:24:00:: 13788820 1 0 -arcsecond%1:23:00:: 13611395 1 0 -arcsin%1:24:00:: 13787551 1 0 -arcsine%1:24:00:: 13787551 1 0 -arctan%1:24:00:: 13788182 1 0 -arctangent%1:24:00:: 13788182 1 0 -arctic%1:06:00:: 02735538 2 0 -arctic%1:15:00:: 08496477 1 2 -arctic%5:00:00:cold:01 01252151 2 0 -arctic%5:00:00:polar:00 02444475 1 1 -arctic_archipelago%1:15:00:: 08825987 1 0 -arctic_char%1:05:00:: 02538562 1 0 -arctic_circle%1:15:00:: 08496798 1 1 -arctic_fox%1:05:00:: 02120079 1 0 -arctic_ground_squirrel%1:05:00:: 02359047 1 0 -arctic_hare%1:05:00:: 02327656 1 0 -arctic_moss%1:20:00:: 12991184 1 0 -arctic_mouse-ear%1:20:00:: 11807696 1 0 -arctic_ocean%1:17:00:: 09204977 1 0 -arctic_poppy%1:20:00:: 11901759 1 0 -arctic_skua%1:05:00:: 02044517 1 0 -arctic_willow%1:20:00:: 12726528 1 0 -arctic_wolf%1:05:00:: 02114548 1 0 -arctic_zone%1:15:00:: 08496477 1 0 -arctictis%1:05:00:: 02135981 1 0 -arctictis_bintourong%1:05:00:: 02136103 1 0 -arctiid%1:05:00:: 02305407 1 0 -arctiid_moth%1:05:00:: 02305407 1 0 -arctiidae%1:05:00:: 02305245 1 0 -arctium%1:20:00:: 11924330 1 0 -arctium_lappa%1:20:00:: 11924849 1 0 -arctium_minus%1:20:00:: 11924661 1 0 -arctocebus%1:05:00:: 02499434 1 0 -arctocebus_calabarensis%1:05:00:: 02499568 1 0 -arctocephalus%1:05:00:: 02077023 1 0 -arctocephalus_philippi%1:05:00:: 02077384 1 0 -arctonyx%1:05:00:: 02448754 1 0 -arctonyx_collaris%1:05:00:: 02448885 1 0 -arctostaphylos%1:20:00:: 12231031 1 0 -arctostaphylos_alpina%1:20:00:: 12231709 1 0 -arctostaphylos_andersonii%1:20:00:: 12232114 1 0 -arctostaphylos_manzanita%1:20:00:: 12232280 1 0 -arctostaphylos_tomentosa%1:20:00:: 12232503 1 0 -arctostaphylos_uva-ursi%1:20:00:: 12231358 1 0 -arctotis%1:20:00:: 11925140 1 0 -arctotis_stoechadifolia%1:20:00:: 11925450 1 0 -arctotis_venusta%1:20:00:: 11925450 1 0 -arcturus%1:17:00:: 09205334 1 0 -arcuate%5:00:00:curved:00 02315461 1 0 -arcuate_artery%1:08:00:: 05337055 1 0 -arcuate_artery_of_the_kidney%1:08:00:: 05337178 1 0 -arcuate_vein_of_the_kidney%1:08:00:: 05358036 1 0 -arcus%1:08:00:: 05317815 1 0 -arcus_senilis%1:08:00:: 05317815 1 1 -arcus_zygomaticus%1:08:00:: 05284851 1 0 -arda%1:14:00:: 08340753 1 0 -ardea%1:05:00:: 02008316 1 0 -ardea_herodius%1:05:00:: 02008497 1 0 -ardea_occidentalis%1:05:00:: 02008643 1 0 -ardeb%1:23:00:: 13616340 1 0 -ardeidae%1:05:00:: 02007721 1 0 -ardennes%1:15:00:: 08941681 1 0 -ardennes_counteroffensive%1:04:00:: 01271107 1 0 -ardent%5:00:00:bright:00 00281342 3 0 -ardent%5:00:00:enthusiastic:00 00886117 2 0 -ardent%5:00:00:passionate:00 01726235 1 1 -ardent_spirits%1:13:00:: 07902336 1 0 -ardently%4:02:00:: 00265782 1 0 -ardisia%1:20:00:: 12097180 1 0 -ardisia_crenata%1:20:00:: 12097396 1 0 -ardisia_escallonoides%1:20:00:: 12097556 1 0 -ardisia_paniculata%1:20:00:: 12097556 1 0 -ardor%1:12:00:: 07544129 2 0 -ardor%1:12:01:: 07555402 1 3 -ardor%1:12:02:: 07481375 3 0 -ardour%1:12:00:: 07544129 2 0 -ardour%1:12:01:: 07555402 1 0 -ardour%1:12:02:: 07481375 3 0 -ards%1:26:00:: 14055052 1 0 -arduous%5:00:00:difficult:00 00745858 3 0 -arduous%5:00:00:effortful:00 00836544 1 1 -arduous%5:00:02:effortful:00 00837977 2 0 -arduously%4:02:00:: 00274268 1 0 -arduousness%1:07:00:: 04709759 1 0 -are%1:23:00:: 13613862 1 0 -area%1:06:00:: 02735688 5 8 -area%1:07:00:: 05128519 6 5 -area%1:08:00:: 05221895 3 20 -area%1:09:00:: 05815517 2 27 -area%1:15:01:: 08497294 1 146 -area%1:26:00:: 14514039 4 9 -area_17_of_brodmann%1:08:00:: 05494617 1 0 -area_bombing%1:04:00:: 00978993 1 0 -area_code%1:10:00:: 06354626 1 0 -area_of_cardiac_dullness%1:08:00:: 05391540 1 0 -area_unit%1:23:00:: 13600404 1 0 -areal%3:01:00:: 02640503 1 0 -areaway%1:06:00:: 02736396 1 1 -areca%1:20:00:: 12584191 1 0 -areca_catechu%1:20:00:: 12584365 1 0 -areca_nut%1:13:00:: 07770869 1 0 -arecaceae%1:20:00:: 12581381 1 0 -arecidae%1:20:00:: 11668573 1 0 -areflexia%1:26:00:: 14406465 1 0 -arena%1:06:00:: 02736511 4 0 -arena%1:06:01:: 04295881 3 0 -arena%1:15:00:: 08497107 2 0 -arena%1:26:00:: 14514039 1 1 -arena_theater%1:06:00:: 02736645 1 0 -arenaceous%3:00:00:: 00142040 1 0 -arenaceous_rock%1:27:00:: 14697485 1 0 -arenaria%1:05:00:: 02024923 2 0 -arenaria%1:20:00:: 11805837 1 0 -arenaria-melanocephala%1:05:00:: 02025389 1 0 -arenaria_caroliniana%1:20:00:: 11806369 1 0 -arenaria_groenlandica%1:20:00:: 11806219 1 0 -arenaria_interpres%1:05:00:: 02025239 1 0 -arenaria_peploides%1:20:00:: 11806521 1 0 -arenaria_serpyllifolia%1:20:00:: 11806814 1 0 -arenaria_stricta%1:20:00:: 11806679 1 0 -arenaviridae%1:05:00:: 01333082 1 0 -arenavirus%1:05:00:: 01330497 1 0 -arendt%1:18:00:: 10821699 1 0 -arenga%1:20:00:: 12584559 1 0 -arenga_pinnata%1:20:00:: 12584715 1 0 -arenicolous%3:01:00:: 02640629 1 0 -areola%1:08:01:: 05554804 2 0 -areola%1:08:02:: 05555017 1 0 -areolar%3:01:00:: 02640746 1 0 -areolar_tissue%1:08:00:: 05268255 1 0 -areolate%3:01:00:: 02640746 1 0 -areopagite%1:18:00:: 09807379 1 0 -areopagus%1:14:00:: 08164110 2 0 -areopagus%1:15:00:: 08785743 1 0 -arequipa%1:15:00:: 08979590 1 0 -arere%1:20:00:: 12201938 1 0 -ares%1:18:00:: 09555236 1 0 -arete%1:17:00:: 09205509 1 0 -areteria_cervicalis%1:08:00:: 05341920 1 0 -arethusa%1:20:00:: 12045860 1 0 -arethusa_bulbosa%1:20:00:: 12046028 1 0 -argal%1:05:00:: 02414763 1 0 -argali%1:05:00:: 02414763 1 0 -argasid%1:05:00:: 01779463 1 0 -argasidae%1:05:00:: 01779340 1 0 -argemone%1:20:00:: 11902709 1 0 -argemone_mexicana%1:20:00:: 11902982 1 0 -argent%1:27:00:: 14986144 1 0 -argent%5:00:00:achromatic:00 00387392 1 0 -argentic%3:01:00:: 02640908 1 0 -argentiferous%5:00:00:metallic:00 01528239 1 0 -argentina%1:05:00:: 02542804 2 0 -argentina%1:15:00:: 08711974 1 0 -argentine%1:05:00:: 02542958 1 0 -argentine%3:01:00:: 02966972 1 0 -argentine_hemorrhagic_fever%1:26:00:: 14073505 1 0 -argentine_monetary_unit%1:23:00:: 13663448 1 0 -argentine_republic%1:15:00:: 08711974 1 0 -argentinian%1:18:00:: 09691149 1 0 -argentinian%3:01:00:: 02966972 1 0 -argentinidae%1:05:00:: 02542598 1 0 -argentinosaur%1:05:00:: 01711160 1 0 -argentite%1:27:00:: 14666885 1 0 -argentous%3:01:00:: 02641012 1 0 -argil%1:27:00:: 14602597 1 0 -argillaceous%3:00:00:: 00142270 1 0 -argillaceous_rock%1:27:00:: 14697600 1 0 -argillite%1:27:00:: 14667017 1 0 -arginine%1:27:00:: 14767796 1 0 -argiope%1:05:00:: 01772985 1 0 -argiope_aurantia%1:05:00:: 01773157 1 0 -argiopidae%1:05:00:: 01772782 1 0 -argive%1:18:00:: 09807495 1 0 -argive%3:01:00:: 03017788 1 1 -argle-bargle%1:10:00:: 07182485 1 0 -argo%1:17:00:: 09205607 1 0 -argon%1:27:00:: 14628920 1 7 -argonaut%1:05:00:: 01970667 3 0 -argonaut%1:18:00:: 09607782 1 0 -argonaut%1:18:01:: 09589585 2 0 -argonauta%1:05:00:: 01970502 1 0 -argonauta_argo%1:05:00:: 01970667 1 0 -argonautidae%1:05:00:: 01970342 1 0 -argonne%1:04:00:: 01287431 1 0 -argonne_forest%1:04:00:: 01287431 1 0 -argonon%1:27:00:: 14624369 1 0 -argos%1:15:00:: 08786660 1 0 -argosy%1:14:00:: 08386280 1 0 -argot%1:10:00:: 07157273 1 1 -arguable%5:00:00:controversial:00 00602117 2 0 -arguable%5:00:00:plausible:00 01799670 1 0 -arguably%4:02:00:: 00005343 1 0 -argue%2:32:00:: 00773432 2 17 -argue%2:32:01:: 00772640 3 0 -argue%2:32:02:: 00772189 1 34 -arguer%1:18:00:: 09997404 1 0 -argufy%2:32:00:: 00775156 1 0 -arguing%1:10:00:: 07183151 1 0 -argument%1:09:00:: 05857781 6 0 -argument%1:09:01:: 05773049 7 0 -argument%1:10:00:: 07140978 3 2 -argument%1:10:01:: 06467680 4 1 -argument%1:10:02:: 06648724 1 22 -argument%1:10:03:: 07183151 2 21 -argument%1:10:04:: 06356299 5 0 -argumentation%1:09:00:: 05773049 2 0 -argumentation%1:10:00:: 07140978 1 0 -argumentative%3:00:00:: 00603367 1 1 -argumentatively%4:02:00:: 00318830 1 0 -argun%1:17:00:: 09205890 1 0 -argun_river%1:17:00:: 09205890 1 0 -argus%1:05:00:: 01803893 2 0 -argus%1:18:00:: 09489889 1 0 -argus-eyed%5:00:00:alert:00 00091764 2 0 -argus-eyed%5:00:00:sighted:00 02158438 1 0 -argus_pheasant%1:05:00:: 01803893 1 0 -argusianus%1:05:00:: 01803764 1 0 -argy-bargy%1:10:00:: 07182485 1 0 -argyle%1:06:00:: 02736798 3 0 -argyle%1:06:01:: 02736934 2 0 -argyle%1:06:02:: 02737166 1 0 -argyll%1:06:00:: 02736798 3 0 -argyll%1:06:01:: 02736934 2 0 -argyll%1:06:02:: 02737166 1 0 -argynnis%1:05:00:: 02278601 1 0 -argyranthemum%1:20:00:: 11925720 1 0 -argyranthemum_frutescens%1:20:00:: 11925898 1 0 -argyreia%1:20:00:: 12824581 1 0 -argyrodite%1:27:00:: 14667181 1 0 -argyrol%1:06:00:: 03762809 1 0 -argyrotaenia%1:05:00:: 02284771 1 0 -argyrotaenia_citrana%1:05:00:: 02284884 1 0 -argyroxiphium%1:20:00:: 11926185 1 0 -argyroxiphium_sandwicense%1:20:00:: 11926365 1 0 -arhant%1:18:00:: 09532837 1 0 -arhat%1:18:00:: 09532837 1 0 -arhus%1:15:00:: 08762104 1 0 -aria%1:10:00:: 07049514 1 0 -ariadne%1:18:00:: 09564889 1 0 -arial_mosaic%1:06:00:: 03787904 1 0 -ariana%1:15:00:: 09037991 1 0 -arianism%1:09:00:: 06187756 1 1 -arianist%1:18:00:: 09807609 1 2 -arianrhod%1:18:00:: 09508228 1 0 -arianrod%1:18:00:: 09508228 1 0 -aricara%1:10:00:: 06915821 2 0 -aricara%1:18:00:: 09650456 1 0 -arid%5:00:00:dry:01 02552415 1 0 -arid%5:00:00:dull:03 00806991 2 0 -aridity%1:07:00:: 05148186 1 1 -aridity%1:26:00:: 14537250 2 0 -aridness%1:26:00:: 14537250 1 0 -aries%1:15:00:: 08686129 3 0 -aries%1:17:00:: 09206133 2 0 -aries%1:18:00:: 09752246 1 0 -aries_the_ram%1:15:00:: 08686129 1 0 -arietta%1:10:00:: 07049634 1 0 -aright%4:02:00:: 00203922 1 0 -ariidae%1:05:00:: 02520669 1 0 -arikara%1:10:00:: 06915821 2 0 -arikara%1:18:00:: 09650456 1 0 -aril%1:20:00:: 13090871 1 0 -ariled%5:00:00:covered:00 01694892 1 0 -arillate%5:00:00:covered:00 01694892 1 0 -arilus%1:05:00:: 02244670 1 0 -arilus_cristatus%1:05:00:: 02244797 1 0 -ariocarpus%1:20:00:: 11843709 1 0 -ariocarpus_fissuratus%1:20:00:: 11843896 1 0 -ariomma%1:05:00:: 02634414 1 0 -ariose%5:00:00:melodious:00 01501505 1 0 -arioso%1:10:00:: 07087508 1 0 -arisaema%1:20:00:: 11784323 1 0 -arisaema_atrorubens%1:20:00:: 11784497 1 0 -arisaema_dracontium%1:20:00:: 11784825 1 0 -arisaema_triphyllum%1:20:00:: 11784497 1 0 -arisarum%1:20:00:: 11785100 1 0 -arisarum_vulgare%1:20:00:: 11785276 1 0 -arise%2:29:00:: 00018158 7 0 -arise%2:30:00:: 00339738 4 7 -arise%2:38:00:: 01983264 3 8 -arise%2:38:04:: 01968569 5 1 -arise%2:41:00:: 02583139 6 0 -arise%2:42:00:: 02624263 1 29 -arise%2:42:01:: 02625786 2 9 -arishth%1:20:00:: 12696492 1 0 -arista%1:05:00:: 02585168 1 0 -aristarchus%1:17:00:: 09206289 2 0 -aristarchus%1:18:00:: 10821867 1 0 -aristarchus_of_samos%1:18:00:: 10822027 1 0 -aristide_maillol%1:18:00:: 11149867 1 0 -aristocort%1:27:00:: 15078768 1 0 -aristocracy%1:14:01:: 08388207 1 2 -aristocracy%1:14:02:: 08387213 2 1 -aristocrat%1:18:00:: 09807754 1 0 -aristocratic%5:00:01:noble:02 01590484 1 1 -aristocratical%5:00:00:noble:02 01590484 1 0 -aristocratically%4:02:00:: 00202955 1 0 -aristolochia%1:20:00:: 11801247 1 0 -aristolochia_clematitis%1:20:00:: 11801392 1 0 -aristolochia_durior%1:20:00:: 11801665 1 0 -aristolochia_macrophylla%1:20:00:: 11801665 1 0 -aristolochia_serpentaria%1:20:00:: 11801891 1 0 -aristolochiaceae%1:20:00:: 11801038 1 0 -aristolochiales%1:20:00:: 11800799 1 0 -aristopak%1:27:00:: 15078768 1 0 -aristophanes%1:18:00:: 10822211 1 0 -aristotelean%1:18:00:: 09808080 1 0 -aristotelean%3:01:00:: 03028465 1 0 -aristotelia%1:20:00:: 12193458 1 0 -aristotelia_racemosa%1:20:00:: 12193665 1 0 -aristotelia_serrata%1:20:00:: 12193665 1 0 -aristotelian%1:18:00:: 09808080 1 0 -aristotelian%3:01:00:: 03028465 1 1 -aristotelian_logic%1:09:00:: 05664344 1 0 -aristotelianism%1:09:00:: 05969194 1 0 -aristotelic%3:01:00:: 03028465 1 0 -aristotle%1:18:00:: 10822338 1 4 -arithmancy%1:09:00:: 05776592 1 0 -arithmetic%1:09:00:: 06004067 1 4 -arithmetic%3:01:00:: 03044869 1 0 -arithmetic_mean%1:09:00:: 06024230 1 0 -arithmetic_operation%1:04:00:: 00872541 1 0 -arithmetic_progression%1:14:00:: 08460924 1 0 -arithmetical%3:01:00:: 03044869 1 0 -arithmetically%4:02:00:: 00271625 1 0 -arithmetician%1:18:00:: 09808351 1 0 -arity%1:09:00:: 05857974 1 0 -arius%1:05:00:: 02520985 2 0 -arius%1:18:00:: 10822567 1 0 -arizona%1:05:00:: 01733346 2 0 -arizona%1:15:00:: 09057311 1 1 -arizona_ash%1:20:00:: 12306270 1 0 -arizona_cypress%1:20:00:: 11631854 1 0 -arizona_elegans%1:05:00:: 01733466 1 0 -arizona_sycamore%1:20:00:: 12808007 1 0 -arizona_white_oak%1:20:00:: 12270278 1 0 -arizona_wild_cotton%1:20:00:: 12177455 1 0 -arizonan%1:18:00:: 09741233 1 0 -arizonian%1:18:00:: 09741233 1 0 -arjuna%1:18:00:: 09486781 1 0 -ark%1:06:00:: 02737351 2 0 -ark%1:06:01:: 02737467 1 0 -ark_of_the_covenant%1:06:00:: 02737467 1 0 -ark_shell%1:05:00:: 01963317 1 0 -arkansan%1:18:00:: 09741331 1 0 -arkansas%1:15:00:: 09059274 1 4 -arkansas%1:17:00:: 09206375 2 0 -arkansas_kingbird%1:05:00:: 01548492 1 0 -arkansas_river%1:17:00:: 09206375 1 0 -arkansawyer%1:18:00:: 09741331 1 0 -arles%1:21:00:: 13350322 1 0 -arlington%1:15:00:: 09142887 1 0 -arm%1:06:00:: 04236377 6 0 -arm%1:06:01:: 04565375 3 1 -arm%1:06:02:: 02737660 4 1 -arm%1:06:03:: 02737833 2 3 -arm%1:08:00:: 05563770 1 104 -arm%1:14:00:: 08401248 5 0 -arm%2:33:00:: 01087197 1 4 -arm%2:40:00:: 02334867 2 1 -arm's_length%1:07:00:: 05129928 1 1 -arm-twisting%1:10:00:: 07245472 1 0 -arm_band%1:06:00:: 02739427 1 0 -arm_bone%1:08:00:: 05593017 1 0 -arm_exercise%1:04:00:: 00629176 1 0 -arm_guard%1:06:00:: 02738859 1 0 -arm_pad%1:06:00:: 02738859 1 0 -armada%1:14:00:: 08293003 1 0 -armadillidiidae%1:05:00:: 01991233 1 0 -armadillidium%1:05:00:: 01991367 1 0 -armadillo%1:05:00:: 02454379 1 2 -armageddon%1:04:00:: 00956340 2 0 -armageddon%1:15:00:: 08506932 1 0 -armagnac%1:13:00:: 07903731 1 0 -armament%1:04:00:: 01156899 2 0 -armament%1:06:00:: 02738031 1 1 -armamentarium%1:14:00:: 07953367 1 0 -armand_jean_du_plessis%1:18:00:: 11261483 1 0 -armata_corsa%1:14:00:: 08015731 1 0 -armature%1:06:00:: 02738271 1 0 -armband%1:06:00:: 02738449 2 0 -armband%1:10:00:: 07262942 1 0 -armchair%1:06:00:: 02738535 1 3 -armchair_liberal%1:18:00:: 09808466 1 0 -armed%3:00:01:: 00142407 1 10 -armed%3:00:02:: 00144877 3 0 -armed%3:00:03:: 00146210 2 0 -armed_bullhead%1:05:00:: 02648035 1 0 -armed_combat%1:04:00:: 00964343 1 0 -armed_forces%1:14:00:: 08199025 1 6 -armed_forces_censorship%1:04:00:: 00822159 1 0 -armed_forces_day%1:28:00:: 15189347 1 0 -armed_islamic_group%1:14:00:: 08016035 1 0 -armed_robbery%1:04:00:: 00781912 1 0 -armed_service%1:14:00:: 08198137 1 1 -armed_services%1:14:00:: 08199025 1 0 -armenia%1:15:00:: 09017526 1 0 -armenian%1:10:00:: 06942699 2 0 -armenian%1:10:01:: 06352117 3 0 -armenian%1:18:00:: 09690371 1 0 -armenian%3:01:00:: 02625648 1 0 -armenian_alphabet%1:10:00:: 06352117 1 0 -armenian_apostolic_orthodox_church%1:14:00:: 08083083 1 0 -armenian_church%1:14:00:: 08083083 1 0 -armenian_language%1:10:00:: 06942699 1 0 -armenian_monetary_unit%1:23:00:: 13699313 1 0 -armenian_secret_army_for_the_liberation_of_armenia%1:14:00:: 08016385 1 0 -armeria%1:20:00:: 12098665 1 0 -armeria_maritima%1:20:00:: 12099031 1 0 -armerican_cheddar%1:13:00:: 07852919 1 0 -armet%1:06:00:: 02738741 1 0 -armful%1:23:00:: 13764540 1 1 -armguard%1:06:00:: 02888270 1 0 -armhole%1:06:00:: 02738978 1 0 -armiger%1:18:01:: 09808686 1 0 -armiger%1:18:02:: 09808591 2 0 -armilla%1:06:00:: 02739123 2 0 -armilla%1:06:01:: 02739248 1 0 -armillaria%1:20:00:: 13231436 1 0 -armillaria_caligata%1:20:00:: 13231919 1 0 -armillaria_ponderosa%1:20:00:: 13232106 1 0 -armillaria_zelleri%1:20:00:: 13232363 1 0 -armillariella%1:20:00:: 13232515 1 0 -armillariella_mellea%1:20:00:: 13232779 1 0 -armillary%3:01:00:: 02641118 1 0 -armillary_sphere%1:06:00:: 02739248 1 0 -armin%1:18:00:: 10822786 1 0 -arming%1:04:00:: 01156899 1 0 -arminian%1:18:00:: 10738871 1 0 -arminian%3:01:00:: 02625546 1 0 -arminian_baptist%1:14:00:: 08090083 1 0 -arminian_church%1:14:00:: 08092190 1 0 -arminianism%1:09:00:: 06229586 1 0 -arminius%1:18:00:: 10822786 2 0 -arminius%1:18:01:: 10822962 1 0 -armistice%1:26:00:: 13970912 1 0 -armistice_day%1:28:00:: 15200896 1 0 -armless%3:00:00:: 00146786 1 0 -armlet%1:06:00:: 02739427 1 0 -armlike%5:00:00:armed:03 00146430 1 0 -armoire%1:06:00:: 02739550 1 1 -armor%1:05:00:: 01902750 3 0 -armor%1:06:00:: 02739668 1 2 -armor%1:14:00:: 08197742 2 0 -armor%2:40:00:: 02341684 1 0 -armor-bearer%1:18:00:: 09808686 1 0 -armor-clad%5:00:00:armored:01 00143854 1 0 -armor-plated%5:00:00:armored:01 00143854 1 0 -armor_plate%1:06:00:: 02740764 1 0 -armor_plating%1:06:00:: 02740764 1 0 -armoracia%1:20:00:: 11872850 1 0 -armoracia_rusticana%1:20:00:: 11872973 1 0 -armored%3:00:01:: 00143589 1 2 -armored%3:00:02:: 00146883 2 0 -armored%5:00:00:equipped:00 01094647 3 0 -armored_car%1:06:00:: 02739889 2 0 -armored_car%1:06:01:: 02740061 1 0 -armored_catfish%1:05:00:: 02520525 1 0 -armored_combat_vehicle%1:06:00:: 04389033 1 0 -armored_dinosaur%1:05:00:: 01701551 1 0 -armored_personnel_carrier%1:06:00:: 02740300 1 0 -armored_scale%1:05:00:: 02249515 1 0 -armored_sea_robin%1:05:00:: 02651617 1 0 -armored_searobin%1:05:00:: 02651617 1 0 -armored_vehicle%1:06:00:: 02740533 1 0 -armorer%1:14:00:: 08066095 3 0 -armorer%1:18:00:: 09808794 2 0 -armorer%1:18:01:: 09808949 1 0 -armorial%3:01:00:: 03045059 1 0 -armorial_bearing%1:06:00:: 03008565 1 0 -armory%1:06:00:: 02741367 4 0 -armory%1:06:02:: 02743207 3 0 -armory%1:06:03:: 02743426 2 0 -armory%1:09:00:: 05634059 1 0 -armour%1:05:00:: 01902750 3 0 -armour%1:06:00:: 02739668 2 0 -armour%1:14:00:: 08197742 1 0 -armour%2:40:00:: 02341684 1 0 -armour-clad%5:00:00:armored:01 00143854 1 0 -armour-plated%5:00:00:armored:01 00143854 1 0 -armour_plate%1:06:00:: 02740764 1 0 -armoured%3:00:01:: 00143589 2 0 -armoured%3:00:02:: 00146883 1 0 -armoured_car%1:06:00:: 02739889 2 0 -armoured_car%1:06:01:: 02740061 1 0 -armoured_combat_vehicle%1:06:00:: 04389033 1 0 -armoured_personnel_carrier%1:06:00:: 02740300 1 0 -armoured_vehicle%1:06:00:: 02740533 1 0 -armourer%1:14:00:: 08066095 3 0 -armourer%1:18:00:: 09808794 2 0 -armourer%1:18:01:: 09808949 1 0 -armoury%1:06:00:: 02741367 4 0 -armoury%1:06:02:: 02743207 3 0 -armoury%1:06:03:: 02743426 2 0 -armoury%1:09:00:: 05634059 1 0 -armpit%1:08:00:: 05549576 1 2 -armrest%1:06:00:: 02741475 1 0 -arms%1:06:00:: 04566257 1 11 -arms%1:06:01:: 03058726 2 0 -arms-runner%1:18:00:: 10152440 1 0 -arms_control%1:04:00:: 00808485 1 0 -arms_deal%1:04:00:: 01110633 1 0 -arms_industry%1:14:00:: 08068924 1 0 -arms_manufacturer%1:18:00:: 09809134 1 0 -arms_race%1:11:00:: 07472808 1 0 -armstrong%1:18:00:: 10823199 2 0 -armstrong%1:18:01:: 10823369 1 0 -army%1:14:00:: 08191230 1 61 -army%1:14:01:: 08183290 2 2 -army%1:14:02:: 08394922 3 0 -army_ant%1:05:00:: 02220518 1 0 -army_attache%1:18:00:: 09809279 1 0 -army_base%1:06:00:: 02741587 1 0 -army_brat%1:18:00:: 09809427 1 0 -army_corps%1:14:00:: 08212527 1 0 -army_cutworm%1:05:00:: 02296912 1 0 -army_engineer%1:18:00:: 09809538 1 0 -army_for_the_liberation_of_rwanda%1:14:00:: 08016900 1 0 -army_high_performance_computing_research_center%1:06:00:: 02741681 1 0 -army_hut%1:06:00:: 03550153 1 0 -army_intelligence%1:14:00:: 08395682 1 0 -army_national_guard%1:14:00:: 08396990 1 0 -army_of_muhammad%1:14:00:: 08026197 1 0 -army_of_the_confederacy%1:14:00:: 08394657 1 0 -army_of_the_pure%1:14:00:: 08031020 1 0 -army_of_the_righteous%1:14:00:: 08031020 1 0 -army_officer%1:18:00:: 09809749 1 0 -army_tank%1:06:00:: 04389033 1 0 -army_unit%1:14:00:: 08190754 1 0 -army_worm%1:05:00:: 02297442 1 0 -armyworm%1:05:01:: 02297294 2 0 -armyworm%1:05:02:: 02297442 1 0 -armyworm%1:05:03:: 02204907 3 0 -arna_wendell_bontemps%1:18:00:: 10857159 1 0 -arng%1:14:00:: 08396990 1 0 -arnhem%1:15:00:: 08950230 1 0 -arnica%1:06:00:: 02741981 3 0 -arnica%1:20:01:: 11926833 2 0 -arnica%1:20:02:: 11927509 1 0 -arnica_bud%1:20:00:: 11989087 1 0 -arnica_cordifolia%1:20:00:: 11926976 1 0 -arnica_montana%1:20:00:: 11927215 1 0 -arno%1:17:00:: 09206693 1 0 -arno_river%1:17:00:: 09206693 1 0 -arnold%1:18:00:: 10823529 2 0 -arnold%1:18:01:: 10823760 1 0 -arnold-chiari_deformity%1:26:00:: 14213867 1 0 -arnold_daniel_palmer%1:18:00:: 11221650 1 0 -arnold_gesell%1:18:00:: 10997234 1 0 -arnold_joseph_toynbee%1:18:00:: 11347317 1 0 -arnold_lucius_gesell%1:18:00:: 10997234 1 0 -arnold_of_brescia%1:18:00:: 10823894 1 0 -arnold_palmer%1:18:00:: 11221650 1 0 -arnold_schoenberg%1:18:00:: 11285902 1 0 -arnold_schonberg%1:18:00:: 11285902 1 0 -arnold_toynbee%1:18:00:: 11347317 1 0 -arnoseris%1:20:00:: 11927616 1 0 -arnoseris_minima%1:20:00:: 11927740 1 0 -aroeira_blanca%1:20:00:: 12764978 1 0 -aroid%1:20:00:: 11779300 1 0 -aroid%3:01:00:: 02641201 1 0 -arolla_pine%1:20:00:: 11612018 1 0 -aroma%1:07:00:: 04980008 1 1 -aroma%1:09:01:: 05714466 2 0 -aromatherapy%1:04:00:: 00662196 1 0 -aromatic%3:01:00:: 02641378 1 0 -aromatic%5:00:00:fragrant:00 01052428 2 0 -aromatic_aster%1:20:00:: 11935715 1 0 -aromatic_compound%1:27:00:: 14610088 1 0 -aromatic_hydrocarbon%1:27:00:: 14767996 1 0 -aromatise%2:39:00:: 02126382 1 0 -aromatize%2:39:00:: 02126382 1 0 -arouet%1:18:00:: 11368638 1 0 -around%4:02:00:: 00071050 9 1 -around%4:02:01:: 00071165 1 26 -around%4:02:02:: 00071456 10 0 -around%4:02:03:: 00007015 5 2 -around%4:02:04:: 00072329 3 12 -around%4:02:05:: 00071601 2 13 -around%4:02:06:: 00071741 4 6 -around%4:02:07:: 00071840 8 1 -around%4:02:08:: 00072043 7 1 -around%4:02:09:: 00072201 6 1 -around-the-clock%5:00:00:continuous:01 00595147 1 0 -around_the_bend%5:00:00:insane:00 02074929 1 0 -around_the_clock%4:02:00:: 00152559 1 0 -arousal%1:04:00:: 00242808 1 1 -arousal%1:04:01:: 00853835 4 0 -arousal%1:09:00:: 05678745 3 0 -arousal%1:26:00:: 14023997 2 0 -arouse%2:29:00:: 00022686 4 2 -arouse%2:29:01:: 00018813 5 2 -arouse%2:29:05:: 00018526 2 3 -arouse%2:36:00:: 01629958 3 2 -arouse%2:37:00:: 01759326 1 14 -arouse%2:37:01:: 01762283 7 0 -arouse%2:38:00:: 01894164 6 1 -aroused%5:00:00:agitated:00 00085630 6 0 -aroused%5:00:00:awakened:00 02014514 1 1 -aroused%5:00:00:excited:00 00920494 2 1 -aroused%5:00:00:passionate:00 01726021 5 0 -aroused%5:00:00:sexy:00 02131668 4 0 -aroused%5:00:00:tense:03 02405677 3 0 -arouser%1:18:00:: 10763985 1 0 -arp%1:18:00:: 10824146 1 0 -arpeggio%1:10:00:: 06869610 1 0 -arpent%1:23:00:: 13614143 1 0 -arquebus%1:06:00:: 02742070 1 0 -arrack%1:13:00:: 07902937 1 0 -arraign%2:32:00:: 00843852 2 1 -arraign%2:41:00:: 02497992 1 1 -arraignment%1:10:00:: 07235936 1 0 -arrange%2:29:00:: 00038849 5 2 -arrange%2:31:00:: 00735571 7 0 -arrange%2:32:04:: 01021629 2 7 -arrange%2:35:00:: 01463963 1 13 -arrange%2:36:00:: 01706129 6 0 -arrange%2:36:02:: 01745141 4 2 -arrange%2:36:03:: 01648126 3 3 -arranged%3:00:00:: 01681028 1 2 -arranged%5:00:00:artificial:00 01571869 3 0 -arranged%5:00:01:organized:02 01670427 2 0 -arrangement%1:04:01:: 00939628 6 0 -arrangement%1:07:00:: 05075602 4 2 -arrangement%1:09:00:: 05726596 3 4 -arrangement%1:09:01:: 05795044 1 13 -arrangement%1:10:00:: 07038400 5 1 -arrangement%1:14:00:: 07938773 2 4 -arranger%1:18:00:: 10383237 1 0 -arranger%1:18:01:: 09809925 2 0 -arranging%1:04:00:: 00939628 1 0 -arrant%5:00:00:unmitigated:00 01520091 1 0 -arras%1:06:00:: 04393404 1 0 -array%1:06:00:: 02742194 4 0 -array%1:06:01:: 02742322 3 0 -array%1:10:00:: 06888174 2 1 -array%1:14:00:: 07939382 1 4 -array%2:31:00:: 00733632 2 0 -array%2:35:00:: 01474209 1 1 -arrayed%5:00:00:clothed:00 00454849 1 0 -arrears%1:21:00:: 13397443 2 0 -arrears%1:26:00:: 14490685 1 0 -arrest%1:04:00:: 00088725 1 5 -arrest%1:26:00:: 14010927 2 0 -arrest%2:33:00:: 01131473 2 2 -arrest%2:35:00:: 01215137 1 20 -arrest%2:35:01:: 01505958 3 1 -arrest%2:38:00:: 01859586 4 0 -arrest_warrant%1:10:00:: 06547615 1 0 -arrested_development%1:26:00:: 14503354 1 0 -arrester%1:06:00:: 02742468 1 0 -arrester_hook%1:06:00:: 02742468 1 0 -arresting%5:00:00:impressive:00 01282921 1 0 -arrhenatherum%1:20:00:: 12108742 1 0 -arrhenatherum_elatius%1:20:00:: 12108871 1 0 -arrhenius%1:18:00:: 10824352 1 0 -arrhenius_theory_of_dissociation%1:09:00:: 06108850 1 0 -arrhythmia%1:26:00:: 14110674 1 0 -arrhythmic%5:00:00:unrhythmical:00 02021235 2 0 -arrhythmic%5:00:00:unsteady:00 02303575 1 0 -arrhythmical%5:00:00:unrhythmical:00 02021235 1 0 -arriere_pensee%1:09:00:: 05698620 1 0 -arrival%1:04:00:: 00048225 1 4 -arrival%1:04:01:: 00048374 2 3 -arrival%1:18:00:: 09810166 3 1 -arrival_gate%1:06:00:: 02742663 1 0 -arrival_time%1:28:00:: 15180934 1 0 -arrive%2:38:00:: 02005948 1 52 -arrive%2:41:00:: 02585860 2 0 -arrive_at%2:38:00:: 02020590 1 20 -arrivederci%1:10:00:: 06629610 1 0 -arriver%1:18:00:: 09810166 1 0 -arriviste%1:18:00:: 10740868 1 0 -arroba%1:23:01:: 13717619 1 0 -arroba%1:23:02:: 13616427 2 0 -arrogance%1:07:00:: 04887912 1 1 -arrogant%5:00:00:proud:00 01889819 1 1 -arrogantly%4:02:00:: 00266016 1 1 -arrogate%2:40:00:: 02274482 3 0 -arrogate%2:40:01:: 02276746 2 0 -arrogate%2:40:02:: 02275365 1 1 -arrogation%1:04:00:: 00085678 1 0 -arrogator%1:18:00:: 09810364 1 0 -arrow%1:06:00:: 02742753 2 3 -arrow%1:10:00:: 06818121 1 17 -arrow-grass_family%1:20:00:: 12617140 1 0 -arrow-shaped%5:00:00:simple:01 02170673 1 0 -arrow_arum%1:20:00:: 11790788 1 0 -arrow_grass%1:20:00:: 12617559 1 0 -arrow_leaved_aster%1:20:00:: 11935794 1 0 -arrow_wood%1:20:00:: 12681141 2 0 -arrow_wood%1:20:02:: 12681376 1 0 -arrowhead%1:06:00:: 02743050 1 0 -arrowleaf_groundsel%1:20:00:: 12012510 1 0 -arrowroot%1:20:00:: 12351790 2 0 -arrowroot%1:20:02:: 12351091 3 0 -arrowroot%1:27:00:: 15054347 1 0 -arrowroot_family%1:20:00:: 12351287 1 0 -arrowsmith%1:18:00:: 09810633 1 0 -arrowworm%1:05:00:: 01923890 1 0 -arroyo%1:17:00:: 09206896 1 3 -arroyo_willow%1:20:00:: 12729023 1 0 -arroz_con_pollo%1:13:00:: 07862095 1 0 -arse%1:08:00:: 05538215 2 0 -arse%1:08:01:: 05559256 1 0 -arse_about%2:42:00:: 02639606 1 0 -arse_around%2:32:00:: 00854150 2 0 -arse_around%2:42:00:: 02639606 1 0 -arsehole%1:08:00:: 05538215 1 0 -arsenal%1:06:01:: 02743207 2 0 -arsenal%1:06:02:: 02741367 3 0 -arsenal%1:06:03:: 02743426 1 0 -arsenate%1:27:00:: 14610261 1 0 -arsenic%1:27:00:: 14629149 2 0 -arsenic%1:27:01:: 14768201 1 1 -arsenic_acid%1:27:00:: 14610347 1 0 -arsenic_group%1:27:00:: 14788714 1 0 -arsenic_trioxide%1:27:00:: 14768201 1 0 -arsenical%1:27:00:: 14602721 1 0 -arsenical%3:01:00:: 02641571 1 0 -arsenide%1:27:00:: 14610443 1 0 -arsenious%3:01:00:: 02641731 1 0 -arsenopyrite%1:27:00:: 14667328 1 0 -arsenous_anhydride%1:27:00:: 14768201 1 0 -arsenous_oxide%1:27:00:: 14768201 1 0 -arsine%1:27:00:: 14756200 1 0 -arson%1:04:00:: 00378296 1 0 -arsonist%1:18:00:: 09810707 1 0 -art%1:04:00:: 00933420 2 15 -art%1:06:00:: 02743547 1 49 -art%1:09:00:: 05638987 3 7 -art%1:10:00:: 06998748 4 3 -art_class%1:04:00:: 00885457 1 0 -art_collection%1:14:00:: 07953499 1 0 -art_critic%1:18:00:: 09810867 1 0 -art_dealer%1:18:00:: 09810983 1 0 -art_deco%1:14:00:: 08465118 1 0 -art_department%1:14:00:: 08115778 1 0 -art_director%1:18:01:: 09811112 1 0 -art_editor%1:18:00:: 09811281 1 1 -art_exhibition%1:14:00:: 08407839 1 0 -art_form%1:09:00:: 05841151 1 0 -art_gallery%1:06:00:: 03412058 1 0 -art_historian%1:18:00:: 09811414 1 0 -art_history%1:09:00:: 06156015 1 0 -art_movement%1:14:00:: 08466643 1 0 -art_nouveau%1:14:00:: 08465312 1 0 -art_object%1:06:00:: 03838535 1 0 -art_paper%1:27:00:: 14768854 1 0 -art_rock%1:10:00:: 07065333 1 0 -art_school%1:06:00:: 02746978 1 6 -art_student%1:18:00:: 09813351 1 1 -art_tatum%1:18:00:: 11332688 1 0 -art_teacher%1:18:00:: 09813441 1 1 -artamidae%1:05:00:: 01596761 1 0 -artamus%1:05:00:: 01596887 1 0 -artaxerxes%1:18:01:: 10824541 2 0 -artaxerxes%1:18:02:: 10824710 1 0 -artaxerxes_i%1:18:00:: 10824541 1 0 -artaxerxes_ii%1:18:00:: 10824710 1 0 -artefact%1:03:00:: 00021939 1 0 -artefactual%3:01:00:: 02986740 1 0 -artemia%1:05:00:: 01995323 1 0 -artemia_salina%1:05:00:: 01995686 1 0 -artemis%1:18:00:: 09556697 1 0 -artemis_pontica%1:20:00:: 11930994 1 0 -artemis_spinescens%1:20:00:: 11931135 1 0 -artemisia%1:20:00:: 11928352 1 0 -artemisia_abrotanum%1:20:00:: 11929291 1 0 -artemisia_absinthium%1:20:00:: 11929477 1 0 -artemisia_annua%1:20:00:: 11929743 1 0 -artemisia_californica%1:20:00:: 11929880 1 0 -artemisia_campestris%1:20:00:: 11930038 1 0 -artemisia_cana%1:20:00:: 12014085 1 0 -artemisia_dracunculus%1:20:00:: 11930203 1 0 -artemisia_filifolia%1:20:00:: 11930353 1 0 -artemisia_frigida%1:20:00:: 11930571 1 0 -artemisia_gnaphalodes%1:20:00:: 11930788 1 0 -artemisia_ludoviciana%1:20:00:: 11930788 1 0 -artemisia_maritima%1:20:00:: 12014355 1 0 -artemisia_stelleriana%1:20:00:: 11931312 1 0 -artemisia_tridentata%1:20:00:: 12014524 1 0 -artemisia_vulgaris%1:20:00:: 11931540 1 0 -artemision_at_ephesus%1:06:00:: 02744077 1 0 -artemus_ward%1:18:00:: 10866571 1 0 -arteria%1:08:00:: 05333777 1 0 -arteria_alveolaris%1:08:00:: 05335310 1 0 -arteria_alveolaris_inferior%1:08:00:: 05335515 1 0 -arteria_alveolaris_superior%1:08:00:: 05335700 1 0 -arteria_angularis%1:08:00:: 05335850 1 0 -arteria_appendicularis%1:08:00:: 05336893 1 0 -arteria_arcuata%1:08:00:: 05337055 1 0 -arteria_ascendens%1:08:00:: 05337855 1 0 -arteria_auricularis%1:08:00:: 05338025 1 0 -arteria_axillaris%1:08:00:: 05338166 1 0 -arteria_basilaris%1:08:00:: 05338410 1 0 -arteria_brachialis%1:08:00:: 05338614 1 0 -arteria_buccalis%1:08:00:: 05339168 1 0 -arteria_bulbi_penis%1:08:00:: 05337485 1 0 -arteria_bulbi_vestibuli%1:08:00:: 05337663 1 0 -arteria_carotis%1:08:00:: 05339357 1 0 -arteria_celiaca%1:08:00:: 05340317 1 0 -arteria_centralis_retinae%1:08:00:: 05340599 1 0 -arteria_cerebelli%1:08:00:: 05340795 1 0 -arteria_cerebri%1:08:00:: 05341206 1 0 -arteria_choroidea%1:08:00:: 05342070 1 0 -arteria_ciliaris%1:08:00:: 05342214 1 0 -arteria_circumflexa_femoris%1:08:00:: 05342673 1 0 -arteria_circumflexa_humeri%1:08:00:: 05342854 1 0 -arteria_circumflexa_ilium%1:08:00:: 05343037 1 0 -arteria_circumflexa_scapulae%1:08:00:: 05343218 1 0 -arteria_colica%1:08:00:: 05343408 1 0 -arteria_communicans%1:08:00:: 05343542 1 0 -arteria_coronaria%1:08:00:: 05343718 1 0 -arteria_cystica%1:08:00:: 05344350 1 0 -arteria_digitalis%1:08:00:: 05344514 1 0 -arteria_epigastrica%1:08:00:: 05344697 1 0 -arteria_ethmoidalis%1:08:00:: 05344848 1 0 -arteria_facialis%1:08:00:: 05345038 1 0 -arteria_femoralis%1:08:00:: 05345247 1 0 -arteria_gastrica%1:08:00:: 05345581 1 0 -arteria_gastrica_breves%1:08:00:: 05346191 1 0 -arteria_gastrica_sinistra%1:08:00:: 05345978 1 0 -arteria_glutes%1:08:00:: 05346406 1 0 -arteria_hepatica%1:08:00:: 05346585 1 0 -arteria_ileocolica%1:08:00:: 05346892 1 0 -arteria_ileum%1:08:00:: 05346714 1 0 -arteria_iliaca%1:08:00:: 05347146 1 0 -arteria_iliolumbalis%1:08:00:: 05347871 1 0 -arteria_infraorbitalis%1:08:00:: 05348054 1 0 -arteria_intercostalis%1:08:00:: 05348540 1 0 -arteria_labialis%1:08:00:: 05348884 1 0 -arteria_labialis_inferior%1:08:00:: 05349101 1 0 -arteria_labialis_superior%1:08:00:: 05349273 1 0 -arteria_lacrimalis%1:08:00:: 05349659 1 0 -arteria_laryngea%1:08:00:: 05349906 1 0 -arteria_lienalis%1:08:00:: 05350061 1 0 -arteria_lingualis%1:08:00:: 05350256 1 0 -arteria_lumbalis%1:08:00:: 05350453 1 0 -arteria_maxillaris%1:08:00:: 05350679 1 0 -arteria_meningea%1:08:00:: 05351058 1 0 -arteria_mesenterica%1:08:00:: 05351746 1 0 -arteria_metacarpea%1:08:00:: 05352291 1 0 -arteria_metatarsea%1:08:00:: 05352433 1 0 -arteria_musculophrenica%1:08:00:: 05352601 1 0 -arteria_nutricia%1:08:00:: 05352754 1 0 -arteria_ophthalmica%1:08:00:: 05352896 1 0 -arteria_ovarica%1:08:00:: 05353070 1 0 -arteria_palatina%1:08:00:: 05353241 1 0 -arteria_pancreatica%1:08:00:: 05353364 1 0 -arteria_perinealis%1:08:00:: 05353507 1 0 -arteria_poplitea%1:08:00:: 05345421 1 0 -arteria_pudenda%1:08:00:: 05353683 1 0 -arteria_pulmonalis%1:08:00:: 05353819 1 0 -arteria_radialis%1:08:00:: 05338847 1 0 -arteria_rectalis%1:08:00:: 05354238 1 0 -arteria_renalis%1:08:00:: 05354381 1 0 -arteria_subclavia%1:08:00:: 05354580 1 0 -arteria_temporalis_anterior%1:08:00:: 05354955 1 0 -arteria_temporalis_intermedia%1:08:00:: 05355146 1 0 -arteria_temporalis_posterior%1:08:00:: 05355341 1 0 -arteria_testicularis%1:08:00:: 05355527 1 0 -arteria_ulnaris%1:08:00:: 05355706 1 0 -arteria_uterina%1:08:00:: 05355890 1 0 -arteria_vaginalis%1:08:00:: 05356083 1 0 -arteria_vertebralis%1:08:00:: 05356291 1 0 -arterial%3:01:00:: 02641856 1 6 -arterial_blood%1:08:00:: 05400445 1 0 -arterial_blood_gases%1:04:00:: 00998768 1 0 -arterial_blood_vessel%1:08:00:: 05333777 1 0 -arterial_plaque%1:08:00:: 05244619 1 0 -arterial_pressure%1:19:00:: 11430863 1 0 -arterial_road%1:06:00:: 02744323 1 0 -arterial_sclerosis%1:26:00:: 14108324 1 0 -arterialise%2:30:00:: 00120095 1 0 -arterialize%2:30:00:: 00120095 1 0 -arteriectasia%1:26:00:: 14024185 1 0 -arteriectasis%1:26:00:: 14024185 1 0 -arteriogram%1:06:00:: 02744423 1 0 -arteriography%1:04:00:: 00905742 1 0 -arteriola%1:08:00:: 05337301 1 0 -arteriolar%3:01:00:: 02948640 1 4 -arteriole%1:08:00:: 05337301 1 2 -arteriolosclerosis%1:26:00:: 14108232 1 2 -arteriosclerosis%1:26:00:: 14108324 1 0 -arteriosclerosis_obliterans%1:26:00:: 14109889 1 1 -arteriosclerotic%3:01:00:: 02930987 1 0 -arteriovenous%3:01:00:: 02642258 1 0 -arteritis%1:26:00:: 14258609 1 0 -artery%1:06:01:: 02744532 2 0 -artery%1:08:00:: 05333777 1 5 -artery_of_the_labyrinth%1:08:00:: 05349445 1 0 -artery_of_the_penis_bulb%1:08:00:: 05337485 1 0 -artery_of_the_vestibule_bulb%1:08:00:: 05337663 1 0 -artesian%3:00:00:: 00098933 1 0 -artesian_well%1:06:00:: 02744634 1 0 -artful%3:00:00:: 00147734 2 0 -artful%3:00:02:: 01310685 1 0 -artfully%4:02:00:: 00245953 1 1 -artfully%4:02:01:: 00315595 2 0 -artfully%4:02:02:: 00293926 3 0 -artfulness%1:07:00:: 04876705 1 0 -arthralgia%1:26:00:: 14324572 1 0 -arthralgic%3:01:00:: 02642394 1 0 -arthritic%1:18:00:: 09811568 1 0 -arthritic%5:00:00:unhealthy:00 01173795 1 0 -arthritis%1:26:00:: 14186541 1 2 -arthrocentesis%1:04:00:: 00943861 1 0 -arthrodesis%1:04:00:: 00666600 1 0 -arthrogram%1:06:00:: 02744844 1 0 -arthrography%1:04:00:: 00905842 1 0 -arthromere%1:08:00:: 05225439 1 0 -arthromeric%3:01:00:: 02642497 1 0 -arthropathy%1:26:00:: 14024296 1 0 -arthroplasty%1:04:00:: 00666733 1 0 -arthropod%1:05:00:: 01767661 1 0 -arthropod_family%1:05:00:: 01759182 1 0 -arthropod_genus%1:05:00:: 01762525 1 0 -arthropoda%1:05:00:: 01767199 1 0 -arthropodal%3:01:00:: 02642634 1 0 -arthropodan%3:01:00:: 02642634 1 0 -arthropodous%3:01:00:: 02642634 1 0 -arthropteris%1:20:00:: 13204482 1 0 -arthroscope%1:06:00:: 02744961 1 0 -arthroscopy%1:04:00:: 00666884 1 0 -arthrospore%1:20:01:: 13092385 2 0 -arthrospore%1:20:02:: 13092548 1 0 -arthrosporic%3:01:00:: 02642886 1 0 -arthrosporous%3:01:00:: 02642886 1 0 -arthur%1:18:00:: 10824888 2 0 -arthur%1:18:01:: 10825180 1 0 -arthur_ashe%1:18:00:: 10825718 1 0 -arthur_compton%1:18:00:: 10905703 1 0 -arthur_conan_doyle%1:18:00:: 10906462 1 0 -arthur_edwin_kennelly%1:18:00:: 11101250 1 0 -arthur_evans%1:18:00:: 10963254 1 0 -arthur_fiedler%1:18:00:: 10970488 1 0 -arthur_garfield_hays%1:18:00:: 11036521 1 0 -arthur_holly_compton%1:18:00:: 10905703 1 0 -arthur_holmes%1:18:00:: 11056799 1 0 -arthur_honegger%1:18:00:: 11057679 1 0 -arthur_jacob_arshawsky%1:18:00:: 11296429 1 0 -arthur_james_balfour%1:18:00:: 10832568 1 0 -arthur_john_gielgud%1:18:00:: 10998860 1 0 -arthur_koestler%1:18:00:: 11108584 1 0 -arthur_laffer%1:18:00:: 11114285 1 0 -arthur_marx%1:18:00:: 11161045 1 0 -arthur_meier_schlesinger%1:18:00:: 11284742 1 0 -arthur_meier_schlesinger_jr.%1:18:00:: 11284884 1 0 -arthur_miller%1:18:00:: 11179923 1 0 -arthur_mitchell%1:18:00:: 11181937 1 0 -arthur_neville_chamberlain%1:18:00:: 10889689 1 0 -arthur_rimbaud%1:18:00:: 11262765 1 0 -arthur_robert_ashe%1:18:00:: 10825718 1 0 -arthur_rubinstein%1:18:00:: 11273479 1 0 -arthur_schlesinger%1:18:00:: 11284742 2 0 -arthur_schlesinger%1:18:01:: 11284884 1 0 -arthur_schlesinger_jr.%1:18:00:: 11284884 1 0 -arthur_schopenhauer%1:18:00:: 11286354 1 0 -arthur_seymour_sullivan%1:18:00:: 11324212 1 0 -arthur_stanley_jefferson_laurel%1:18:00:: 11119190 1 0 -arthur_sullivan%1:18:00:: 11324212 1 0 -arthur_symons%1:18:00:: 11327650 1 0 -arthur_tappan%1:18:00:: 11331192 1 0 -arthur_tatum%1:18:00:: 11332688 1 0 -arthur_wellesley%1:18:00:: 11380923 1 0 -arthurian%3:01:00:: 02643082 1 0 -arthurian_legend%1:10:00:: 06371734 1 0 -artichoke%1:13:00:: 07718747 2 0 -artichoke%1:20:00:: 11959632 1 0 -artichoke_heart%1:13:00:: 07718920 1 0 -artichoke_plant%1:20:00:: 11959632 1 0 -article%1:03:00:: 00022903 2 6 -article%1:10:00:: 06268096 1 14 -article%1:10:01:: 06324669 4 0 -article%1:10:02:: 06392935 3 1 -article%2:32:00:: 00885082 1 0 -article_of_clothing%1:06:00:: 03051540 1 0 -article_of_commerce%1:06:00:: 02745091 1 0 -article_of_faith%1:09:00:: 05942888 2 0 -article_of_faith%1:10:00:: 06270690 1 0 -article_of_furniture%1:06:00:: 03405725 1 0 -articled%5:00:00:unfree:00 01064806 1 0 -articles_of_agreement%1:10:00:: 06526486 1 0 -articles_of_confederation%1:10:00:: 06533863 1 0 -articles_of_incorporation%1:10:00:: 06470688 1 0 -articular%3:01:00:: 02643220 1 0 -articular_muscle%1:08:00:: 05293597 1 0 -articulary%3:01:00:: 02643220 1 0 -articulate%2:32:00:: 00978549 3 1 -articulate%2:32:01:: 00978369 5 0 -articulate%2:32:02:: 00980453 2 1 -articulate%2:40:00:: 02354287 1 1 -articulate%2:42:00:: 02622637 4 0 -articulate%3:00:00:: 00150202 1 1 -articulate%3:00:04:: 00153410 2 0 -articulated%3:00:00:: 00153410 1 0 -articulated_ladder%1:06:00:: 02745228 1 0 -articulated_lorry%1:06:00:: 04467665 1 0 -articulately%4:02:00:: 00268312 2 0 -articulately%4:02:03:: 00327848 1 0 -articulateness%1:07:00:: 04651195 1 0 -articulatio%1:08:00:: 05595083 1 0 -articulatio_coxae%1:08:00:: 05596004 1 0 -articulatio_cubiti%1:08:00:: 05579944 1 0 -articulatio_genus%1:08:00:: 05573602 1 0 -articulatio_humeri%1:08:00:: 05549061 1 0 -articulatio_plana%1:08:00:: 05578251 1 0 -articulatio_radiocarpea%1:08:00:: 05584928 1 0 -articulatio_spheroidea%1:08:00:: 05595531 1 0 -articulatio_synovialis%1:08:00:: 05543177 1 0 -articulatio_talocruralis%1:08:00:: 05578442 1 0 -articulatio_temporomandibularis%1:08:00:: 05276668 1 0 -articulatio_trochoidea%1:08:00:: 05597188 1 0 -articulation%1:04:00:: 00147314 5 0 -articulation%1:08:00:: 05595083 4 0 -articulation%1:10:00:: 07131854 1 1 -articulation%1:10:01:: 07073208 3 0 -articulation%1:25:00:: 13911151 2 0 -articulative%3:01:00:: 02643446 1 0 -articulator%1:08:00:: 05301392 2 0 -articulator%1:18:00:: 09811712 1 0 -articulatory%3:01:00:: 02643446 1 0 -articulatory_system%1:08:00:: 05296639 1 0 -artie_shaw%1:18:00:: 11296429 1 0 -artifact%1:03:00:: 00021939 1 1 -artifactual%3:01:00:: 02986740 1 0 -artifice%1:04:00:: 00172598 1 1 -artificer%1:18:00:: 09974648 2 0 -artificer%1:18:01:: 10214637 1 0 -artificer%1:18:02:: 09808794 3 0 -artificial%3:00:00:: 01571363 1 4 -artificial%5:00:00:affected:01 00073465 2 2 -artificial%5:00:00:inorganic:02 01680417 3 0 -artificial_additive%1:06:00:: 03377845 1 0 -artificial_blood%1:27:00:: 14768480 1 0 -artificial_flower%1:06:00:: 02745395 1 0 -artificial_heart%1:06:00:: 02745492 1 0 -artificial_horizon%1:06:00:: 02745611 1 0 -artificial_insemination%1:04:00:: 00845352 1 0 -artificial_intelligence%1:09:00:: 06133203 1 0 -artificial_joint%1:06:00:: 02745816 1 0 -artificial_kidney%1:06:00:: 02746008 1 0 -artificial_lake%1:06:00:: 04078747 1 1 -artificial_language%1:10:00:: 06894544 1 0 -artificial_pacemaker%1:06:00:: 03870290 1 0 -artificial_respiration%1:04:00:: 00831919 1 0 -artificial_satellite%1:06:00:: 04137444 1 0 -artificial_skin%1:06:00:: 02746225 1 0 -artificiality%1:07:00:: 04788494 1 0 -artificially%4:02:00:: 00140566 1 2 -artillery%1:06:00:: 02746365 1 8 -artillery%1:10:00:: 07246932 3 1 -artillery%1:14:00:: 08389297 2 3 -artillery_fire%1:04:00:: 00994449 1 1 -artillery_plant%1:20:00:: 12395289 1 0 -artillery_shell%1:06:00:: 02746595 1 0 -artillery_unit%1:14:00:: 08389297 1 0 -artilleryman%1:18:00:: 09811852 1 1 -artiodactyl%1:05:00:: 02394477 1 0 -artiodactyl%3:01:00:: 02643673 1 0 -artiodactyl_mammal%1:05:00:: 02394477 1 0 -artiodactyla%1:05:00:: 02394068 1 0 -artiodactylous%3:01:00:: 02643673 1 0 -artisan%1:18:00:: 09974648 1 1 -artisan's_lien%1:21:00:: 13401261 1 0 -artist%1:18:00:: 09812338 1 44 -artist's_loft%1:06:00:: 02746683 1 0 -artist's_model%1:18:00:: 09813219 1 0 -artist's_workroom%1:06:00:: 02746841 1 0 -artiste%1:18:00:: 09813126 1 0 -artistic%3:01:00:: 02991122 1 18 -artistic%5:00:00:aesthetic:00 00069948 2 3 -artistic%5:00:00:tasteful:02 02393086 3 0 -artistic_creation%1:04:00:: 00933420 1 0 -artistic_movement%1:14:00:: 08466643 1 0 -artistic_production%1:04:00:: 00933420 1 0 -artistic_style%1:07:00:: 04929422 1 0 -artistically%4:02:00:: 00248375 1 1 -artistry%1:09:00:: 05638987 1 1 -artium_baccalaurens%1:10:00:: 06698640 1 0 -artium_magister%1:10:00:: 06701001 1 0 -artless%3:00:00:: 00149861 2 0 -artless%3:00:02:: 01309991 1 0 -artless%5:00:00:unrefined:01 01949740 4 0 -artless%5:00:00:unskilled:00 02228901 3 0 -artlessly%4:02:00:: 00274369 2 0 -artlessly%4:02:01:: 00274527 1 0 -artlessness%1:07:00:: 04872676 2 0 -artlessness%1:07:01:: 04880830 1 0 -artocarpus%1:20:00:: 12400261 1 0 -artocarpus_altilis%1:20:00:: 12400489 1 0 -artocarpus_communis%1:20:00:: 12400489 1 0 -artocarpus_heterophyllus%1:20:00:: 12400720 1 0 -artocarpus_odoratissima%1:20:00:: 12400924 1 0 -artois%1:15:00:: 08940670 1 0 -arts%1:09:00:: 06153846 1 5 -arts_and_crafts%1:04:00:: 00935005 1 0 -artsd%1:10:00:: 06705306 1 0 -artsy-craftsy%5:00:00:pretentious:00 01849844 1 0 -artur_rubinstein%1:18:00:: 11273479 1 0 -artur_schnabel%1:18:00:: 11285456 1 0 -arturo_toscanini%1:18:00:: 11346257 1 0 -artwork%1:10:00:: 06998748 1 0 -arty%5:00:00:pretentious:00 01849740 1 1 -arty-crafty%5:00:00:pretentious:00 01849844 1 0 -aruba%1:15:00:: 08748794 1 0 -arugula%1:20:00:: 11886537 1 0 -arui%1:05:00:: 02416104 1 0 -arulo%1:10:00:: 06895266 1 0 -arum%1:20:01:: 11779300 2 0 -arum%1:20:02:: 11780018 1 0 -arum_family%1:20:00:: 11778534 1 0 -arum_lily%1:20:00:: 11793779 1 0 -arum_maculatum%1:20:00:: 11780148 1 0 -arum_palaestinum%1:20:00:: 11780424 1 0 -arundinaceous%3:01:00:: 02643900 1 0 -arundinaria%1:20:00:: 12148079 1 0 -arundinaria_gigantea%1:20:00:: 12148253 1 0 -arundinaria_tecta%1:20:00:: 12148439 1 0 -arundo%1:20:00:: 12109189 1 0 -arundo_conspicua%1:20:00:: 12109365 1 0 -arundo_donax%1:20:00:: 12109498 1 0 -arundo_richardii%1:20:00:: 12115383 1 0 -aruru%1:18:00:: 09515988 1 0 -arvicola%1:05:00:: 02341805 1 0 -arvicola_amphibius%1:05:00:: 02341974 1 0 -aryan%1:18:00:: 09635823 2 0 -aryan%1:18:01:: 09635973 1 0 -aryan%3:01:00:: 03074565 1 0 -arytaenoid%1:08:00:: 05530092 1 0 -arytenoid%1:08:00:: 05530092 1 0 -arytenoid_cartilage%1:08:00:: 05530092 1 0 -as%1:15:00:: 08991878 2 0 -as%1:27:00:: 14629149 1 0 -as%4:02:00:: 00022131 1 30 -as_a_formality%4:02:00:: 00260328 1 0 -as_a_group%4:02:00:: 00157304 1 1 -as_a_matter_of_fact%4:02:00:: 00148869 1 4 -as_far_as_possible%4:02:01:: 00119230 1 1 -as_follows%4:02:00:: 00152684 1 14 -as_if_by_magic%4:02:00:: 00129788 1 0 -as_it_is%4:02:00:: 00027093 1 2 -as_it_were%4:02:00:: 00152776 1 4 -as_luck_would_have_it%4:02:00:: 00042254 1 0 -as_much_as_possible%4:02:00:: 00119230 1 3 -as_needed%4:02:00:: 00181418 1 1 -as_required%4:02:00:: 00181418 1 3 -as_such%4:02:00:: 00036762 1 12 -as_the_crow_flies%4:02:00:: 00152998 1 0 -as_usual%4:02:00:: 00107144 1 4 -as_we_say%4:02:00:: 00152882 1 1 -as_well%4:02:01:: 00047534 1 34 -as_yet%4:02:00:: 00027918 1 9 -asa_dulcis%1:27:00:: 14897941 1 0 -asa_gray%1:18:00:: 11012474 1 0 -asa_yoelson%1:18:00:: 11089669 1 0 -asadha%1:28:00:: 15220267 1 0 -asafetida%1:27:00:: 14768989 1 0 -asafoetida%1:27:00:: 14768989 1 0 -asahikawa%1:15:00:: 08923177 1 0 -asala%1:14:00:: 08016385 1 0 -asama%1:15:00:: 08926681 1 0 -asamiya%1:10:00:: 06970784 1 0 -asana%1:07:00:: 05081957 1 0 -asanga%1:18:00:: 10825407 1 0 -asap%4:02:00:: 00034137 1 0 -asaph_hall%1:18:00:: 11024419 1 0 -asarabacca%1:20:00:: 11802995 1 0 -asarh%1:28:00:: 15220267 1 0 -asarum%1:20:00:: 11802076 1 0 -asarum_canadense%1:20:00:: 11802410 1 0 -asarum_europaeum%1:20:00:: 11802995 1 0 -asarum_shuttleworthii%1:20:00:: 11802800 1 0 -asarum_virginicum%1:20:00:: 11802586 1 0 -asat%3:01:00:: 02605786 1 0 -asbat_al-ansar%1:14:00:: 08017257 1 0 -asbestos%1:27:00:: 14725591 1 0 -asbestos_abatement%1:04:00:: 00361684 1 0 -asbestosis%1:26:00:: 14150363 1 0 -ascaphidae%1:05:00:: 01644542 1 0 -ascaphus%1:05:00:: 01644699 1 0 -ascaphus_trui%1:05:00:: 01644900 1 0 -ascariasis%1:26:00:: 14453175 1 0 -ascaridae%1:05:00:: 01930485 1 0 -ascaridia%1:05:00:: 01930995 1 0 -ascaridia_galli%1:05:00:: 01931140 1 0 -ascaris%1:05:00:: 01930672 1 0 -ascaris_lumbricoides%1:05:00:: 01930852 1 0 -ascend%2:38:01:: 02037472 6 0 -ascend%2:38:02:: 01969216 1 3 -ascend%2:38:03:: 01970348 7 0 -ascend%2:38:04:: 02103021 5 0 -ascend%2:38:05:: 01969779 8 0 -ascend%2:38:10:: 02105657 4 0 -ascend%2:41:00:: 02381571 3 0 -ascend%2:42:02:: 02751451 2 0 -ascendable%5:00:00:scalable:00 02083391 1 0 -ascendance%1:26:00:: 14441825 1 0 -ascendancy%1:26:00:: 14441825 1 1 -ascendant%1:18:00:: 09792555 2 0 -ascendant%1:26:00:: 14442361 1 0 -ascendant%5:00:00:ascending:00 02484638 1 0 -ascendant%5:00:00:dominant:01 00791631 2 0 -ascendence%1:26:00:: 14441825 1 0 -ascendency%1:26:00:: 14441825 1 0 -ascendent%1:18:00:: 09792555 2 0 -ascendent%1:26:00:: 14442361 1 0 -ascendent%5:00:00:ascending:00 02484638 1 0 -ascendent%5:00:00:dominant:01 00791631 2 0 -ascender%1:10:00:: 06800532 3 0 -ascender%1:10:01:: 06830561 2 0 -ascender%1:18:00:: 09813522 1 0 -ascendible%5:00:00:scalable:00 02083391 1 0 -ascending%1:04:00:: 00324384 1 0 -ascending%3:00:00:: 02484208 1 2 -ascending_aorta%1:08:00:: 05336246 1 0 -ascending_artery%1:08:00:: 05337855 1 0 -ascending_colon%1:08:00:: 05537060 1 0 -ascending_node%1:15:00:: 08498279 1 0 -ascension%1:04:00:: 00324384 5 0 -ascension%1:11:00:: 07445480 2 0 -ascension%1:11:01:: 07311661 4 0 -ascension%1:11:02:: 07311822 3 0 -ascension%1:28:00:: 15193052 1 0 -ascension_day%1:28:00:: 15193052 1 0 -ascension_of_christ%1:11:00:: 07311822 1 0 -ascension_of_the_lord%1:28:00:: 15193052 1 0 -ascensional%3:01:00:: 02644050 1 0 -ascensive%5:00:00:ascending:00 02484638 1 0 -ascent%1:04:00:: 00324384 3 0 -ascent%1:11:00:: 07445480 2 0 -ascent%1:17:00:: 09206985 1 0 -ascertain%2:31:00:: 00662589 2 1 -ascertain%2:31:01:: 00721302 4 0 -ascertain%2:32:00:: 00920336 3 0 -ascertain%2:32:01:: 00918872 1 4 -ascertainable%5:00:00:determinable:00 00738829 1 1 -ascertained%5:00:00:determined:00 01610484 1 0 -ascesis%1:04:00:: 01069012 1 0 -ascetic%1:18:00:: 09758173 1 0 -ascetic%3:01:00:: 02644177 1 0 -ascetic%5:00:00:abstemious:00 00009618 2 0 -ascetical%3:01:00:: 02644177 1 0 -ascetical%5:00:00:abstemious:00 00009618 2 0 -ascetically%4:02:00:: 00266258 1 0 -asceticism%1:04:00:: 01069012 3 0 -asceticism%1:07:00:: 04881998 2 0 -asceticism%1:09:01:: 05959082 1 0 -asch%1:18:00:: 10825554 1 0 -aschelminthes%1:05:00:: 01929396 1 0 -ascidiaceae%1:05:00:: 01468532 1 0 -ascidian%1:05:00:: 01468712 1 0 -ascidian_tadpole%1:05:00:: 01470895 1 0 -ascii%1:10:00:: 06356755 1 0 -ascii_character%1:10:00:: 06820425 1 0 -ascii_character_set%1:10:00:: 06357078 1 0 -ascii_control_character%1:10:00:: 06820601 1 0 -ascii_text_file%1:10:00:: 06511242 1 0 -ascites%1:26:00:: 14110025 1 0 -ascitic%3:01:00:: 02644407 1 0 -asclepia_meadii%1:20:00:: 13234857 1 0 -asclepiad%1:20:00:: 13233435 1 0 -asclepiadaceae%1:20:00:: 13233012 1 0 -asclepiadaceous%3:01:00:: 02644602 1 0 -asclepias%1:20:00:: 13233548 1 0 -asclepias_albicans%1:20:00:: 13234114 1 0 -asclepias_curassavica%1:20:00:: 13234293 1 0 -asclepias_exaltata%1:20:00:: 13234519 1 0 -asclepias_incarnata%1:20:00:: 13234678 1 0 -asclepias_meadii%1:20:00:: 13234857 1 0 -asclepias_purpurascens%1:20:00:: 13235011 1 0 -asclepias_speciosa%1:20:00:: 13235159 1 0 -asclepias_subverticillata%1:20:00:: 13235319 1 0 -asclepias_tuberosa%1:20:00:: 13235503 1 0 -asclepias_verticillata%1:20:00:: 13235766 1 0 -asclepius%1:18:00:: 09559201 1 0 -ascocarp%1:20:00:: 11532816 1 0 -ascocarpous%3:01:00:: 02644748 1 0 -ascolichen%1:20:00:: 12987423 1 0 -ascoma%1:20:00:: 11533472 1 0 -ascomycete%1:20:00:: 13024012 1 0 -ascomycetes%1:20:00:: 13023783 1 0 -ascomycetous%3:01:00:: 03023077 1 0 -ascomycetous_fungus%1:20:00:: 13024012 1 0 -ascomycota%1:20:00:: 13023292 1 0 -ascomycotina%1:20:00:: 13023292 1 0 -ascophyllum%1:05:00:: 01405442 1 0 -ascophyllum_nodosum%1:05:00:: 01405616 1 0 -ascorbic_acid%1:27:00:: 15093298 1 0 -ascospore%1:20:00:: 13092240 1 0 -ascosporic%3:01:00:: 02644870 1 0 -ascosporous%3:01:00:: 02644870 1 0 -ascot%1:06:00:: 02747063 1 0 -ascribable%5:00:00:attributable:00 00171872 1 0 -ascribe%2:31:00:: 00726300 1 3 -ascription%1:09:00:: 05734559 2 0 -ascription%1:09:01:: 05734909 1 0 -ascus%1:20:00:: 13092078 1 0 -asdic%1:06:00:: 04259771 1 0 -asea%4:02:00:: 00447578 1 0 -asean%1:14:00:: 08487504 1 0 -asepsis%1:22:00:: 13432903 2 0 -asepsis%1:26:00:: 14495230 1 0 -aseptic%5:00:00:antiseptic:00 02115759 1 0 -asexual%3:00:00:: 02135913 1 0 -asexual_reproduction%1:22:00:: 13434120 1 0 -asexuality%1:07:00:: 05008085 1 0 -asexually%4:02:00:: 00073546 1 0 -asgard%1:09:00:: 05626767 1 0 -ash%1:20:00:: 12303462 2 1 -ash%1:20:02:: 12303921 3 0 -ash%1:27:01:: 14769160 1 2 -ash%2:30:00:: 00383437 1 0 -ash-bin%1:06:00:: 02747177 1 0 -ash-blonde%5:00:00:blond:00 00243945 1 0 -ash-gray%5:00:00:achromatic:00 00387593 1 0 -ash-grey%5:00:00:achromatic:00 00387593 1 0 -ash-key%1:20:00:: 12306419 1 0 -ash-leaved_maple%1:20:00:: 12755225 1 0 -ash-pan%1:06:00:: 02747672 1 0 -ash_bin%1:06:00:: 02747177 1 0 -ash_cake%1:13:00:: 07688265 1 0 -ash_can%1:06:00:: 02747379 1 0 -ash_gray%1:07:00:: 04962062 1 0 -ash_grey%1:07:00:: 04962062 1 0 -ash_tree%1:20:00:: 12303462 1 0 -ash_wednesday%1:28:00:: 15195622 1 0 -ashamed%3:00:00:: 00153898 1 5 -ashamedly%4:02:00:: 00266393 1 0 -ashbin%1:06:00:: 02747177 1 0 -ashcake%1:13:00:: 07688265 1 0 -ashcan%1:06:00:: 02747177 1 0 -ashcan_school%1:06:00:: 02747379 2 0 -ashcan_school%1:14:00:: 08275497 1 0 -ashe%1:18:00:: 10825718 1 0 -ashen%5:00:00:colorless:02 00404568 1 2 -ashen%5:00:00:woody:00 02575653 2 0 -asheville%1:15:00:: 09128040 1 0 -ashir%1:18:00:: 09516146 1 0 -ashkenazi%1:18:00:: 09607903 1 0 -ashkhabad%1:15:00:: 09021812 1 0 -ashlar%1:06:00:: 02747541 1 0 -ashley_montagu%1:18:00:: 11186356 1 0 -ashore%4:02:00:: 00139173 1 2 -ashram%1:15:00:: 08643267 2 0 -ashram%1:15:01:: 08643386 1 0 -ashton%1:18:00:: 10825923 1 0 -ashtoreth%1:18:00:: 09516323 1 0 -ashtray%1:06:00:: 02747802 1 0 -ashur%1:15:00:: 08919241 2 0 -ashur%1:18:00:: 09516146 1 0 -ashurbanipal%1:18:00:: 10826033 1 0 -ashy%5:00:00:achromatic:00 00387593 1 0 -asia%1:14:00:: 08172877 2 0 -asia%1:17:00:: 09207288 1 5 -asia_minor%1:15:00:: 08701942 1 2 -asian%1:18:00:: 09641757 1 0 -asian%3:01:00:: 02968525 1 0 -asian_american%1:18:00:: 09642821 1 0 -asian_black_grouse%1:05:02:: 01795900 1 0 -asian_coral_snake%1:05:00:: 01746727 1 0 -asian_country%1:15:00:: 08700255 1 0 -asian_crocodile%1:05:00:: 01697611 1 0 -asian_horseshoe_crab%1:05:00:: 01788291 1 0 -asian_influenza%1:26:00:: 14122670 1 0 -asian_longhorned_beetle%1:05:00:: 02183096 1 0 -asian_nation%1:15:00:: 08700255 1 0 -asian_russia%1:15:00:: 09007613 1 0 -asian_seabass%1:05:00:: 02560546 1 0 -asian_shamanism%1:09:00:: 06244852 1 0 -asian_tiger_mosquito%1:05:00:: 02201000 1 0 -asian_wild_ox%1:05:00:: 02409870 1 0 -asiatic%1:18:00:: 09641757 1 0 -asiatic%3:01:00:: 02968525 1 0 -asiatic_beetle%1:05:00:: 02173784 1 0 -asiatic_black_bear%1:05:00:: 02133704 1 0 -asiatic_buffalo%1:05:00:: 02408429 1 0 -asiatic_cholera%1:26:00:: 14129579 1 0 -asiatic_cockroach%1:05:00:: 02233943 1 0 -asiatic_flu%1:26:00:: 14122670 1 0 -asiatic_flying_squirrel%1:05:00:: 02362194 1 0 -asiatic_shrew_mole%1:05:00:: 01891013 1 0 -asiatic_sweetleaf%1:20:00:: 12776774 1 0 -aside%1:10:00:: 07011075 1 0 -aside%1:10:01:: 06600684 2 0 -aside%4:02:00:: 00233892 1 7 -aside%4:02:01:: 00234052 2 5 -aside%4:02:03:: 00233687 6 0 -aside%4:02:04:: 00180756 3 4 -aside%4:02:05:: 00234201 5 0 -aside%4:02:06:: 00234951 4 0 -asilidae%1:05:00:: 02195996 1 0 -asimina%1:20:00:: 11695485 1 0 -asimina_triloba%1:20:00:: 11695599 1 0 -asimov%1:18:00:: 10826204 1 0 -asin%1:28:00:: 15220625 1 0 -asinine%5:00:00:foolish:00 02571277 1 0 -asininity%1:07:00:: 04891944 1 0 -asio%1:05:00:: 01624707 1 0 -asio_otus%1:05:00:: 01624833 1 0 -ask%2:32:00:: 00784342 1 244 -ask%2:32:01:: 00752493 2 165 -ask%2:32:02:: 00784727 3 16 -ask%2:32:04:: 00897746 5 1 -ask%2:32:05:: 00755745 4 2 -ask%2:32:09:: 01068565 7 0 -ask%2:42:00:: 02627934 6 0 -ask_for%2:37:00:: 01760143 1 4 -ask_for_it%2:30:00:: 00351048 1 0 -ask_for_trouble%2:30:00:: 00351048 1 0 -ask_in%2:35:00:: 01469770 1 0 -ask_jeeves%1:10:00:: 06579294 1 0 -ask_out%2:41:00:: 02486693 1 1 -ask_over%2:41:00:: 02384686 1 0 -ask_round%2:41:00:: 02384686 1 0 -askance%4:02:00:: 00271751 2 0 -askance%4:02:02:: 00271899 1 0 -askance%5:00:00:indirect:00 00762721 1 0 -askant%5:00:00:indirect:00 00762721 1 0 -asker%1:18:00:: 10207831 1 0 -askew%4:02:01:: 00272169 1 0 -askew%5:00:00:crooked:01 02312450 1 0 -asking%1:10:00:: 07185325 1 0 -asking_price%1:21:00:: 13304009 1 0 -asklepios%1:18:00:: 09559201 1 0 -asl%1:10:00:: 06876007 1 0 -aslant%4:02:00:: 00274710 2 0 -aslant%4:02:01:: 00274962 1 0 -aslant%5:00:00:inclined:01 01234747 1 0 -asleep%3:00:00:: 00187736 1 9 -asleep%4:02:00:: 00275035 1 1 -asleep%4:02:01:: 00275127 2 0 -asleep%5:00:00:dead:01 00095873 3 0 -asleep%5:00:00:insensible:00 02103333 2 0 -aslope%5:00:00:inclined:01 01234747 1 0 -asmara%1:15:00:: 08777815 1 0 -asmera%1:15:00:: 08777815 1 0 -asocial%5:00:00:unsocial:00 02250231 1 0 -asocial%5:00:02:unsocial:00 02249948 2 0 -asp%1:05:01:: 01752736 1 0 -asp%1:05:02:: 01748389 2 0 -asp_viper%1:05:00:: 01752736 1 0 -aspadana%1:15:00:: 08912012 1 0 -aspalathus%1:20:00:: 12507670 1 0 -aspalathus_cedcarbergensis%1:20:00:: 12507823 1 0 -aspalathus_linearis%1:20:00:: 12507823 1 0 -asparagaceae%1:20:00:: 12440623 1 0 -asparaginase%1:06:00:: 02747915 1 0 -asparagine%1:27:00:: 14602851 1 0 -asparagus%1:13:00:: 07719213 2 0 -asparagus%1:20:00:: 12441183 1 0 -asparagus_asparagoides%1:20:00:: 12441552 1 0 -asparagus_bean%1:20:00:: 12579038 1 0 -asparagus_bed%1:06:00:: 02748088 1 0 -asparagus_fern%1:20:00:: 12441390 1 0 -asparagus_officinales%1:20:00:: 12441183 1 0 -asparagus_pea%1:20:00:: 12545865 1 0 -asparagus_plumosus%1:20:00:: 12441390 1 0 -asparagus_setaceous%1:20:00:: 12441390 1 0 -aspartame%1:13:00:: 07858841 1 0 -aspartic_acid%1:27:00:: 14602987 1 0 -aspect%1:07:01:: 04679738 5 0 -aspect%1:07:02:: 04733118 2 18 -aspect%1:09:00:: 05850624 1 24 -aspect%1:09:01:: 05933246 3 2 -aspect%1:24:00:: 13804669 4 0 -aspect_ratio%1:24:00:: 13820544 1 0 -aspectual%3:01:00:: 03045196 1 0 -aspen%1:20:00:: 12733647 1 0 -aspen_poplar%1:20:00:: 12732009 1 0 -asper%1:23:00:: 13687420 1 0 -asperger's_syndrome%1:26:00:: 14084291 1 0 -aspergill%1:06:00:: 02748183 1 0 -aspergillaceae%1:20:00:: 13027190 1 0 -aspergillales%1:20:00:: 13026763 1 0 -aspergillosis%1:26:00:: 14182871 2 0 -aspergillosis%1:26:01:: 14071559 3 0 -aspergillosis%1:26:02:: 14260349 1 0 -aspergillus%1:20:00:: 13027375 1 0 -aspergillus_fumigatus%1:20:00:: 13027557 1 0 -asperity%1:07:01:: 04710127 1 0 -asperity%1:07:02:: 04643099 2 0 -asperse%2:32:00:: 00846509 1 0 -aspersion%1:04:00:: 01220336 2 0 -aspersion%1:04:01:: 01038261 3 0 -aspersion%1:10:00:: 06718543 1 0 -aspersorium%1:06:00:: 02748359 1 0 -aspersorium%1:06:01:: 02748183 2 0 -asperula%1:20:00:: 12661420 1 0 -asperula_odorata%1:20:00:: 12665271 1 0 -asperula_tinctoria%1:20:00:: 12661661 1 0 -asphalt%1:27:01:: 14667455 2 0 -asphalt%1:27:02:: 14769465 1 1 -asphalt%2:35:00:: 01267866 1 0 -asphaltic%3:00:00:: 02598494 1 0 -aspheric%5:00:00:rounded:00 02045008 1 0 -aspherical%5:00:00:rounded:00 02045008 1 0 -asphodel%1:20:00:: 12441958 1 0 -asphodelaceae%1:20:00:: 12441770 1 0 -asphodeline%1:20:00:: 12442220 1 0 -asphodeline_lutea%1:20:00:: 12442697 1 0 -asphodelus%1:20:00:: 12442865 1 0 -asphyxia%1:26:00:: 14042423 1 0 -asphyxiate%2:30:00:: 00359511 3 0 -asphyxiate%2:35:00:: 01569181 1 0 -asphyxiate%2:35:01:: 01476180 2 0 -asphyxiated%3:01:00:: 03045377 1 0 -asphyxiating%5:00:00:breathless:00 00268273 1 0 -asphyxiation%1:04:00:: 00225593 2 0 -asphyxiation%1:26:00:: 14043882 1 0 -asphyxiator%1:06:00:: 03345837 1 0 -aspic%1:13:00:: 07808675 1 0 -aspidelaps%1:05:00:: 01746818 1 0 -aspidelaps_lubricus%1:05:00:: 01746952 1 0 -aspidiotus%1:05:00:: 02249673 1 0 -aspidiotus_perniciosus%1:05:00:: 02249809 1 0 -aspidistra%1:20:00:: 12443323 1 0 -aspidistra_elatio%1:20:00:: 12443323 1 0 -aspidophoroides%1:05:00:: 02648174 1 0 -aspidophoroides_monopterygius%1:05:00:: 02648313 1 0 -aspinwall%1:15:00:: 08739669 1 0 -aspirant%1:18:00:: 09801533 1 1 -aspirant%5:00:00:ambitious:00 00104533 1 0 -aspirate%1:10:00:: 07116758 1 0 -aspirate%2:29:00:: 00003316 3 0 -aspirate%2:32:00:: 00952039 2 0 -aspirate%2:35:00:: 01540693 1 0 -aspiration%1:04:00:: 00836788 4 0 -aspiration%1:07:00:: 04836491 1 2 -aspiration%1:10:00:: 07116869 3 0 -aspiration%1:12:00:: 07484547 2 0 -aspiration_pneumonia%1:26:00:: 14260550 1 0 -aspirator%1:06:00:: 02748491 1 0 -aspire%2:31:00:: 00705517 1 2 -aspirer%1:18:00:: 09801533 1 0 -aspirin%1:06:00:: 02748618 1 1 -aspirin_powder%1:06:00:: 02749169 1 0 -aspiring%5:00:00:ambitious:00 00104533 1 0 -aspis%1:05:00:: 01753354 1 0 -aspleniaceae%1:20:00:: 13179972 1 0 -asplenium%1:20:00:: 13180304 1 0 -asplenium_adiantum-nigrum%1:20:00:: 13180875 1 0 -asplenium_billotii%1:20:00:: 13182937 1 0 -asplenium_bradleyi%1:20:00:: 13182662 1 0 -asplenium_ceterach%1:20:00:: 13183489 1 0 -asplenium_montanum%1:20:00:: 13182338 1 0 -asplenium_nidus%1:20:00:: 13181055 1 0 -asplenium_nigripes%1:20:00:: 13184001 1 0 -asplenium_pinnatifidum%1:20:00:: 13182799 1 0 -asplenium_platyneuron%1:20:00:: 13181244 1 0 -asplenium_rhizophyllum%1:20:00:: 13181811 1 0 -asplenium_ruta-muraria%1:20:00:: 13182462 1 0 -asplenium_scolopendrium%1:20:00:: 13183056 1 0 -asplenium_trichomanes%1:20:00:: 13181988 1 0 -asplenium_viride%1:20:00:: 13182164 1 0 -asquint%5:00:00:indirect:00 00762721 1 0 -ass%1:04:00:: 00846021 4 0 -ass%1:05:00:: 02389346 3 0 -ass%1:08:00:: 05559256 1 3 -ass%1:18:00:: 09813632 2 1 -ass-kisser%1:18:00:: 10684827 1 0 -assagai%1:06:00:: 02749670 1 0 -assail%2:32:00:: 00862683 3 0 -assail%2:33:00:: 01120069 1 6 -assail%2:33:01:: 01119169 2 0 -assailability%1:07:00:: 05043349 1 0 -assailable%5:00:00:vulnerable:00 02523664 1 0 -assailant%1:18:00:: 09821253 1 0 -assam%1:15:00:: 08902097 1 0 -assam_fever%1:26:00:: 14181049 1 0 -assam_rubber%1:20:00:: 12402840 1 0 -assamese%1:10:00:: 06970784 2 0 -assamese%1:18:00:: 09673779 1 0 -assamese%3:01:00:: 02977465 1 0 -assassin%1:18:00:: 09813696 1 6 -assassin%1:18:01:: 09814084 2 0 -assassin_bug%1:05:00:: 02244173 1 0 -assassinate%2:32:00:: 00847158 2 0 -assassinate%2:41:00:: 02483000 1 0 -assassinated%5:00:00:dead:01 00096072 1 0 -assassination%1:04:00:: 00221056 2 0 -assassination%1:10:01:: 06719974 1 0 -assassinator%1:18:00:: 09813696 1 0 -assault%1:04:00:: 00974444 1 6 -assault%1:04:01:: 00767826 2 1 -assault%1:04:02:: 00773402 4 0 -assault%1:05:00:: 02384225 3 0 -assault%2:32:00:: 00862683 3 0 -assault%2:33:00:: 01120069 1 7 -assault%2:41:03:: 02567519 2 0 -assault_and_battery%1:04:00:: 00768203 1 0 -assault_gun%1:06:00:: 02749292 2 0 -assault_gun%1:06:01:: 02749479 1 0 -assault_rifle%1:06:00:: 02749479 1 0 -assaulter%1:18:00:: 09821253 1 0 -assaultive%5:00:00:offensive:03 01629349 1 0 -assay%1:04:00:: 00791527 4 0 -assay%1:09:00:: 05738625 1 1 -assay%1:10:00:: 07219162 3 0 -assay%1:27:00:: 14584390 2 0 -assay%2:31:00:: 00694974 1 1 -assay%2:41:00:: 02530167 2 0 -assay-mark%1:10:00:: 06855035 1 0 -assayer%1:18:00:: 09814252 1 0 -assegai%1:06:00:: 02749670 1 0 -assemblage%1:04:00:: 01229938 3 1 -assemblage%1:06:00:: 03533486 2 1 -assemblage%1:14:00:: 07975026 1 2 -assemblage%1:14:01:: 07951464 4 0 -assemble%2:36:00:: 01656788 1 15 -assemble%2:41:00:: 02428924 2 13 -assemble%2:41:03:: 02598143 3 1 -assembler%1:10:00:: 06573337 1 0 -assemblies_of_god%1:14:00:: 08150770 1 0 -assembling%1:04:00:: 01014066 1 0 -assembly%1:04:00:: 01229938 6 0 -assembly%1:04:01:: 00912001 2 3 -assembly%1:06:00:: 02749790 1 3 -assembly%1:06:01:: 03386420 3 1 -assembly%1:06:02:: 02749953 5 0 -assembly%1:14:00:: 08163792 4 0 -assembly_hall%1:06:00:: 02750070 1 0 -assembly_language%1:10:00:: 06899310 1 0 -assembly_line%1:06:00:: 04008385 1 1 -assembly_plant%1:06:00:: 02750169 1 0 -assembly_program%1:10:00:: 06573337 1 0 -assemblyman%1:18:00:: 09814381 1 0 -assemblywoman%1:18:00:: 09814488 1 0 -assent%1:10:00:: 07175575 1 5 -assent%2:32:00:: 00804139 1 3 -assenter%1:18:00:: 09814567 1 0 -assentient%5:00:00:affirmative:00 00075389 1 0 -assenting%1:10:00:: 07177192 1 0 -assert%2:31:00:: 00717045 4 1 -assert%2:32:00:: 01011031 2 6 -assert%2:32:01:: 01016778 1 22 -assert%2:41:00:: 02373785 3 2 -assert_oneself%2:41:00:: 02519055 1 4 -assertable%5:00:00:possible:00 01821920 1 0 -asserted%5:00:01:declared:00 00687952 1 0 -asserter%1:18:00:: 09814660 1 0 -asserting%3:00:00:: 00686890 1 0 -assertion%1:10:00:: 06729499 1 2 -assertion%1:10:01:: 07203126 2 1 -assertive%3:00:00:: 00156101 1 1 -assertively%4:02:00:: 00266490 1 0 -assertiveness%1:07:00:: 05167237 1 1 -assertiveness_training%1:04:00:: 00701325 1 0 -assess%2:31:00:: 00681429 1 14 -assess%2:31:01:: 00682230 4 0 -assess%2:40:00:: 02308389 3 0 -assess%2:40:01:: 02308552 2 0 -assessable%5:00:00:ponderable:00 01815540 2 0 -assessable%5:00:00:taxable:00 02400471 1 0 -assessee%1:18:00:: 09815076 1 0 -assessment%1:04:00:: 00874067 4 0 -assessment%1:07:00:: 05146055 3 0 -assessment%1:09:00:: 05733583 1 4 -assessment%1:21:00:: 13403146 2 0 -assessor%1:18:00:: 10692883 1 2 -asset%1:07:00:: 05154517 1 1 -assets%1:21:00:: 13329641 1 0 -asseverate%2:32:00:: 01016778 1 0 -asseveration%1:10:00:: 06729499 1 0 -asseverator%1:18:00:: 09814660 1 0 -asshole%1:08:00:: 05538215 2 0 -asshole%1:18:00:: 09815188 1 0 -assibilate%2:30:00:: 00547022 2 0 -assibilate%2:32:00:: 01054027 1 0 -assibilation%1:10:00:: 07129202 2 0 -assibilation%1:22:00:: 13434406 1 0 -assiduity%1:07:00:: 04865502 1 1 -assiduous%5:00:00:diligent:00 00754393 1 0 -assiduously%4:02:00:: 00272305 1 0 -assiduousness%1:07:00:: 04865502 1 0 -assign%2:31:00:: 00677683 4 7 -assign%2:31:02:: 00726300 3 7 -assign%2:31:03:: 00740053 8 0 -assign%2:34:00:: 01160370 5 1 -assign%2:40:00:: 02228531 7 0 -assign%2:40:01:: 02228698 2 15 -assign%2:40:02:: 02276746 6 0 -assign%2:41:00:: 02391803 1 15 -assignable%5:00:00:alienable:00 00093556 1 0 -assignation%1:04:00:: 01231435 1 0 -assignation%1:04:01:: 01083645 2 0 -assigned%3:00:00:: 00846944 1 1 -assignee%1:18:00:: 09815455 1 2 -assigning%1:04:00:: 00164345 1 1 -assignment%1:04:00:: 00730247 1 7 -assignment%1:04:01:: 00163779 6 0 -assignment%1:04:02:: 00164345 3 2 -assignment%1:04:03:: 00796586 5 0 -assignment%1:10:02:: 06545528 2 3 -assignment%1:21:02:: 13254237 4 0 -assignor%1:18:00:: 09815677 1 0 -assimilable%5:00:00:digestible:00 01182302 1 0 -assimilate%2:30:00:: 00159642 2 2 -assimilate%2:30:01:: 00160261 3 1 -assimilate%2:30:02:: 00160447 5 0 -assimilate%2:31:00:: 00602255 1 2 -assimilate%2:35:00:: 01540042 4 0 -assimilating%5:00:00:absorbent:00 00006885 1 0 -assimilation%1:09:00:: 05755714 6 0 -assimilation%1:09:01:: 05757049 5 0 -assimilation%1:22:00:: 13434537 4 0 -assimilation%1:22:01:: 13434688 3 0 -assimilation%1:22:02:: 13434878 2 0 -assimilation%1:26:00:: 13930928 1 0 -assimilative%5:00:00:absorbent:00 00006885 2 0 -assimilative%5:00:00:receptive:00 01985976 1 0 -assimilator%1:18:00:: 10251779 1 0 -assimilatory%5:00:00:absorbent:00 00006885 1 0 -assist%1:04:00:: 00558008 2 1 -assist%1:04:01:: 01207609 1 1 -assist%2:41:00:: 02414710 2 4 -assist%2:41:01:: 02540670 3 0 -assist%2:41:02:: 02547586 1 21 -assistance%1:04:00:: 01207609 1 28 -assistance%1:07:00:: 05154908 2 3 -assistant%1:18:00:: 09815790 1 7 -assistant%5:00:00:subordinate:01 00793250 1 4 -assistant_foreman%1:18:00:: 10661732 1 0 -assistant_professor%1:18:00:: 09816654 1 0 -assisted%3:00:00:: 02353707 1 0 -assisted_suicide%1:04:00:: 00222939 1 0 -assistive%5:00:00:helpful:00 01196276 1 0 -assize%1:10:00:: 06553472 2 0 -assize%1:10:01:: 06664353 1 0 -assizes%1:14:00:: 08330843 1 0 -associability%1:07:00:: 04688058 1 0 -associable%5:00:00:associative:00 00157659 1 0 -associableness%1:07:00:: 04688058 1 0 -associate%1:10:00:: 06697703 5 0 -associate%1:11:00:: 07284848 4 0 -associate%1:18:00:: 09816771 1 7 -associate%1:18:01:: 09945905 2 0 -associate%1:18:02:: 09817174 3 0 -associate%2:31:00:: 00713167 1 25 -associate%2:41:00:: 02470175 3 1 -associate%2:41:02:: 02589245 2 3 -associate%5:00:00:subordinate:01 00793426 1 0 -associate_degree%1:10:00:: 06697703 1 0 -associate_in_applied_science%1:10:00:: 06698031 1 0 -associate_in_arts%1:10:00:: 06697935 1 0 -associate_in_nursing%1:10:00:: 06698150 1 0 -associate_professor%1:18:00:: 09817386 1 1 -associated_state%1:15:00:: 08627316 1 0 -associateship%1:04:00:: 00589103 1 0 -association%1:04:00:: 01081628 2 6 -association%1:09:00:: 05763916 4 3 -association%1:14:00:: 08049401 1 10 -association%1:14:01:: 07990377 8 0 -association%1:22:00:: 13435152 7 0 -association%1:24:00:: 13782769 6 0 -association%1:26:00:: 13930385 5 1 -association%1:26:02:: 14421139 3 3 -association_area%1:08:00:: 05487224 1 0 -association_cortex%1:08:00:: 05487224 1 0 -association_football%1:04:00:: 00478262 1 0 -association_for_the_advancement_of_retired_persons%1:14:00:: 08487149 1 0 -association_of_islamic_groups_and_communities%1:14:00:: 08028623 1 0 -association_of_orangemen%1:14:00:: 08036669 1 0 -association_of_southeast_asian_nations%1:14:00:: 08487504 1 0 -association_theory%1:09:00:: 06137918 1 0 -associational%3:01:00:: 02645042 1 0 -associationism%1:09:00:: 06137918 1 0 -associative%3:00:00:: 00157389 1 0 -associative_aphasia%1:26:00:: 14098078 1 0 -associatory%3:00:00:: 00157389 1 0 -assoil%2:32:01:: 00904046 1 0 -assonance%1:10:00:: 07097346 1 0 -assonant%5:00:00:rhymed:00 01966016 2 0 -assonant%5:00:00:same:00 02063279 1 0 -assonate%2:42:00:: 02750642 1 0 -assort%2:31:00:: 00654625 2 0 -assort%2:41:12:: 02589245 1 0 -assortative_mating%1:04:00:: 00847770 1 0 -assorted%5:00:00:different:00 02065665 2 0 -assorted%5:00:00:heterogeneous:00 01199083 1 1 -assortment%1:04:00:: 01012712 2 0 -assortment%1:14:00:: 08398773 1 1 -assouan%1:15:00:: 08898457 1 0 -assuage%2:29:00:: 00064095 3 0 -assuage%2:34:00:: 01204021 2 0 -assuage%2:37:00:: 01765392 1 0 -assuagement%1:12:00:: 07493280 1 0 -assuan%1:15:00:: 08898457 1 0 -assuasive%5:00:00:reassuring:00 00197151 1 0 -assume%2:29:00:: 00050652 9 0 -assume%2:30:00:: 00524682 3 13 -assume%2:31:00:: 00632236 1 68 -assume%2:35:00:: 01470856 8 0 -assume%2:36:00:: 01721754 7 0 -assume%2:38:00:: 01982395 5 3 -assume%2:40:00:: 02274482 6 0 -assume%2:40:01:: 02301825 4 6 -assume%2:41:00:: 02381726 2 13 -assumed%5:00:00:counterfeit:00 01116857 1 0 -assumed_name%1:10:00:: 06338158 1 0 -assumed_name%1:10:01:: 06334512 2 0 -assuming%5:00:00:forward:02 00205696 1 0 -assumption%1:04:00:: 00082870 3 1 -assumption%1:04:01:: 00083260 7 0 -assumption%1:07:00:: 04838727 6 0 -assumption%1:09:00:: 05892096 2 13 -assumption%1:10:00:: 06753800 1 15 -assumption%1:11:00:: 07357866 5 0 -assumption%1:28:00:: 15193908 4 0 -assumption_of_mary%1:28:00:: 15193908 1 0 -assumptive%5:00:00:acknowledged:00 00028008 2 0 -assumptive%5:00:00:forward:02 00205696 1 0 -assur%1:15:00:: 08919241 1 0 -assurance%1:09:00:: 05697363 1 11 -assurance%1:10:00:: 07227406 3 1 -assurance%1:10:01:: 07227772 2 1 -assurance%1:21:02:: 13345286 4 0 -assurbanipal%1:18:00:: 10826033 1 0 -assure%2:31:00:: 00662589 4 6 -assure%2:32:00:: 01019643 2 9 -assure%2:32:01:: 00776268 3 9 -assure%2:32:02:: 00884011 6 1 -assure%2:32:03:: 00890590 1 20 -assure%2:37:00:: 01766407 5 2 -assured%5:00:00:confident:00 00339157 1 2 -assured%5:00:00:secure:02 02094203 2 1 -assuredly%4:02:00:: 00266812 1 3 -assuredness%1:07:00:: 04904162 1 0 -assurgent%5:00:00:ascending:00 02484919 2 0 -assurgent%5:00:02:ascending:00 02485050 1 0 -assuring%5:00:00:reassuring:00 00197247 1 0 -assyria%1:15:00:: 08918944 1 0 -assyrian%1:10:00:: 06988684 2 1 -assyrian%1:10:01:: 06987659 3 0 -assyrian%1:18:00:: 09640490 1 1 -assyrian_akkadian%1:10:00:: 06987659 1 0 -assyrian_neo-aramaic%1:10:00:: 06988684 1 0 -assyriology%1:09:00:: 06144762 1 1 -astacidae%1:05:00:: 01984958 1 0 -astacura%1:05:00:: 01984958 1 0 -astacus%1:05:00:: 01985331 1 0 -astaire%1:18:00:: 10826352 1 0 -astana%1:15:00:: 09020119 1 0 -astarte%1:18:00:: 09516323 1 0 -astasia%1:26:00:: 14550366 1 0 -astatic%5:00:00:changeable:00 00344816 1 0 -astatic_coils%1:06:00:: 02750320 1 0 -astatic_galvanometer%1:06:00:: 02750652 1 0 -astatine%1:27:00:: 14629561 1 0 -aster%1:08:00:: 05446006 2 0 -aster%1:20:00:: 11931918 1 0 -aster_acuminatus%1:20:00:: 11932927 1 0 -aster_arenosus%1:20:00:: 11933099 1 0 -aster_cordifolius%1:20:00:: 11933257 1 0 -aster_divaricatus%1:20:00:: 11933387 1 0 -aster_dumosus%1:20:00:: 11933546 1 0 -aster_ericoides%1:20:00:: 11933728 1 0 -aster_falcatus%1:20:00:: 11933903 1 0 -aster_family%1:20:00:: 11911591 1 0 -aster_linarifolius%1:20:00:: 11934041 1 0 -aster_linosyris%1:20:00:: 11934239 1 0 -aster_macrophyllus%1:20:00:: 11934463 1 0 -aster_novae-angliae%1:20:00:: 11934616 1 0 -aster_novi-belgii%1:20:00:: 11934807 1 0 -aster_ptarmicoides%1:20:00:: 11935027 1 0 -aster_shortii%1:20:00:: 11935187 1 0 -aster_tripolium%1:20:00:: 11935330 1 0 -aster_turbinellis%1:20:00:: 11935469 1 0 -asteraceae%1:20:00:: 11911591 1 0 -astereognosis%1:26:00:: 14056143 1 0 -asteriated%3:01:00:: 02645187 1 0 -asterid_dicot_family%1:20:00:: 11566230 1 0 -asterid_dicot_genus%1:20:00:: 11579418 1 0 -asteridae%1:20:00:: 11910835 1 0 -asterion%1:08:00:: 05231397 1 0 -asterisk%1:10:00:: 06828389 1 2 -asterisk%2:30:00:: 00510869 1 0 -asterisked%5:00:00:marked:00 01480492 1 0 -asterism%1:17:00:: 09208496 2 0 -asterism%1:25:00:: 13881810 1 0 -asterismal%3:01:00:: 02645303 1 0 -astern%4:02:00:: 00275201 3 0 -astern%4:02:01:: 00275409 2 0 -astern%4:02:02:: 00275872 1 0 -asternal%5:00:00:unconnected:00 00568171 1 0 -asteroid%1:17:00:: 09208702 1 0 -asteroid%5:00:00:angular:00 02048344 1 0 -asteroid_belt%1:15:00:: 08498888 1 0 -asteroidal%3:01:00:: 02980854 1 1 -asteroidea%1:05:00:: 02317212 1 0 -asterope%1:17:00:: 09445780 2 0 -asterope%1:18:00:: 09549983 1 0 -asthenia%1:26:00:: 14547976 1 0 -asthenic%5:00:00:ectomorphic:00 00828095 2 0 -asthenic%5:00:00:weak:00 02324944 1 0 -asthenic_type%1:07:00:: 04999111 1 0 -asthenopia%1:26:00:: 14016863 1 0 -asthenosphere%1:17:00:: 09209025 1 0 -astheny%1:26:00:: 14547976 1 0 -asthma%1:26:00:: 14145911 1 0 -asthma_attack%1:26:00:: 14145911 1 0 -asthmatic%1:18:00:: 09817536 1 0 -asthmatic%5:00:00:unhealthy:00 01174048 1 0 -astigmatic%3:00:00:: 00108698 1 0 -astigmatism%1:26:01:: 13938899 2 0 -astigmatism%1:26:02:: 14553590 1 0 -astigmia%1:26:01:: 13938899 2 0 -astigmia%1:26:02:: 14553590 1 0 -astilbe%1:20:00:: 12794985 1 0 -astilbe_biternata%1:20:00:: 12795209 1 0 -astilbe_chinensis_pumila%1:20:00:: 12795352 1 0 -astilbe_japonica%1:20:00:: 12795555 1 0 -astir%5:00:00:active:01 00032358 2 0 -astir%5:00:00:awake:00 00186925 1 0 -astomatal%3:01:00:: 02645868 1 0 -astomatous%3:00:00:: 02310771 1 0 -astonied%5:00:00:surprised:00 02357810 1 0 -astonish%2:31:00:: 00724832 1 1 -astonished%5:00:00:surprised:00 02357810 1 4 -astonishing%5:00:00:impressive:00 01283155 2 0 -astonishing%5:00:00:surprising:00 02359789 1 4 -astonishingly%4:02:00:: 00213301 1 2 -astonishment%1:12:00:: 07509572 1 8 -astor%1:18:00:: 10826557 2 0 -astor%1:18:01:: 10826717 1 0 -astound%2:31:00:: 00724832 1 3 -astounded%5:00:00:surprised:00 02357810 1 0 -astounding%5:00:00:impressive:00 01283155 2 0 -astounding%5:00:00:incredible:00 00645856 1 1 -astraddle%4:02:00:: 00275974 1 0 -astragal%1:06:00:: 02815237 2 0 -astragal%1:08:00:: 05271383 1 0 -astragalar%3:01:00:: 02646072 1 0 -astragalus%1:08:00:: 05271383 2 0 -astragalus%1:20:00:: 12508077 1 0 -astragalus_alpinus%1:20:00:: 12508618 1 0 -astragalus_danicus%1:20:00:: 12508762 1 0 -astragalus_glycyphyllos%1:20:00:: 12508497 1 0 -astrakhan%1:15:00:: 09004358 2 0 -astrakhan%1:27:00:: 14764440 1 0 -astral%3:01:00:: 02802976 1 1 -astrantia%1:20:00:: 12934036 1 0 -astrantia_major%1:20:00:: 12934174 1 0 -astraphobia%1:26:00:: 14383067 1 0 -astray%4:02:00:: 00206386 1 1 -astray%4:02:04:: 00495858 2 0 -astreus%1:20:00:: 13045834 1 0 -astreus_hygrometricus%1:20:00:: 13046130 1 0 -astreus_pteridis%1:20:00:: 13045975 1 0 -astride%4:02:00:: 00275974 1 2 -astride%4:02:01:: 00276076 2 0 -astringe%2:30:00:: 00304662 2 0 -astringe%2:35:00:: 01388386 1 0 -astringence%1:09:00:: 05717549 1 0 -astringency%1:07:00:: 05202034 2 0 -astringency%1:09:00:: 05717549 1 0 -astringent%1:06:00:: 02750835 1 0 -astringent%3:00:00:: 00189580 2 0 -astringent%5:00:00:sour:00 02369027 1 1 -astringent_drug%1:06:00:: 02750835 1 0 -astrobiology%1:09:00:: 06071722 1 0 -astrocyte%1:08:00:: 05467758 1 0 -astrocytic%3:01:00:: 02646215 1 0 -astrodome%1:06:00:: 02751067 1 0 -astrodynamics%1:09:00:: 06096451 1 0 -astrogate%2:38:00:: 01841947 2 0 -astrogate%2:38:01:: 01933766 1 0 -astrogator%1:18:00:: 09817694 1 0 -astroglia%1:08:00:: 05467619 1 0 -astrolabe%1:06:00:: 02751215 1 0 -astrolatry%1:04:00:: 01045807 1 0 -astrologer%1:18:00:: 09817816 1 0 -astrological%3:01:00:: 02910506 1 0 -astrologist%1:18:00:: 09817816 1 0 -astrology%1:09:00:: 05778131 1 0 -astroloma%1:20:00:: 12254014 1 0 -astroloma_humifusum%1:20:00:: 12254168 1 0 -astrometry%1:09:00:: 06096600 1 0 -astronaut%1:18:00:: 09818022 1 0 -astronautic%3:01:00:: 02646381 1 0 -astronautical%3:01:00:: 02646381 1 0 -astronautics%1:09:00:: 06096913 1 0 -astronavigation%1:04:00:: 00816530 1 0 -astronium%1:20:00:: 12759496 1 0 -astronium_fraxinifolium%1:20:00:: 12759668 1 0 -astronomer%1:18:00:: 09818343 1 0 -astronomic%3:01:00:: 02646605 1 0 -astronomic%5:00:00:large:00 01383582 2 0 -astronomical%3:01:00:: 02646605 1 1 -astronomical%5:00:00:large:00 01383582 2 1 -astronomical_telescope%1:06:00:: 02751295 1 0 -astronomical_unit%1:23:00:: 13657244 1 1 -astronomical_year%1:28:00:: 15202806 1 0 -astronomically%4:02:00:: 00121550 1 0 -astronomy%1:09:00:: 06095022 1 1 -astronomy_satellite%1:06:00:: 02751490 1 0 -astronomy_unit%1:23:00:: 13649054 1 0 -astrophysical%3:01:00:: 02907798 1 0 -astrophysicist%1:18:00:: 09819291 1 0 -astrophysics%1:09:00:: 06097775 1 1 -astrophyton%1:05:00:: 02318538 1 0 -astrophyton_muricatum%1:05:00:: 02318687 1 0 -astropogon%1:05:00:: 02572628 1 0 -astropogon_stellatus%1:05:00:: 02572763 1 0 -astute%5:00:00:smart:00 00438909 1 1 -astutely%4:02:00:: 00272587 1 0 -astuteness%1:09:00:: 05621439 1 0 -astuteness%1:09:01:: 05613962 2 0 -astylar%5:00:00:noncolumned:00 00141647 1 0 -asuncion%1:15:00:: 08978667 1 0 -asunder%4:02:00:: 00180944 1 0 -asunder%5:00:00:separate:00 02110317 1 0 -asur%1:15:00:: 08919241 1 0 -asura%1:18:00:: 09524440 1 0 -asurbanipal%1:18:00:: 10826033 1 0 -asvina%1:28:00:: 15220625 1 0 -asvins%1:18:00:: 09524671 1 0 -aswan%1:15:00:: 08898457 1 0 -aswan_high_dam%1:06:00:: 02751623 1 0 -asylum%1:06:00:: 03746574 2 0 -asylum%1:06:01:: 04071102 1 0 -asymmetric%3:00:00:: 02373599 1 2 -asymmetrical%3:00:00:: 02373599 1 0 -asymmetrical%5:00:00:irregular:00 01961048 2 0 -asymmetrically%4:02:00:: 00175778 1 2 -asymmetry%1:07:00:: 05065717 1 1 -asymptomatic%5:00:00:well:01 02540899 1 0 -asymptote%1:25:00:: 13870935 1 0 -asymptotic%3:01:00:: 02929071 1 1 -asymptotically%4:02:00:: 00073657 1 1 -asynchronism%1:24:00:: 13845838 1 0 -asynchronous%3:00:00:: 02379595 2 0 -asynchronous%3:00:01:: 02380819 1 0 -asynchronous_operation%1:22:00:: 13435377 1 0 -asynchronous_transfer_mode%1:10:00:: 06279071 1 0 -asynchrony%1:24:00:: 13845838 1 2 -asynclitism%1:26:00:: 14049098 1 0 -asyndetic%3:00:00:: 02381189 1 0 -asyndeton%1:10:00:: 07099135 1 0 -asynergia%1:26:00:: 14024391 1 0 -asynergic%3:01:00:: 02646804 1 0 -asynergy%1:26:00:: 14024391 1 0 -asystole%1:26:00:: 14024581 1 0 -at%1:23:00:: 13681048 2 0 -at%1:27:00:: 14629561 1 0 -at-bat%1:04:00:: 00458456 1 1 -at_a_loss%4:02:00:: 00262773 1 0 -at_a_loss%5:00:00:perplexed:00 01765926 1 1 -at_a_low_price%4:02:00:: 00158575 1 0 -at_a_lower_place%4:02:00:: 00080039 1 0 -at_a_time%4:02:00:: 00153261 1 8 -at_all%4:02:00:: 00056729 1 81 -at_all_costs%4:02:00:: 00153116 1 0 -at_an_equal_rate%4:02:00:: 00257026 1 0 -at_any_cost%4:02:00:: 00153116 1 0 -at_any_expense%4:02:00:: 00153116 1 0 -at_any_rate%4:02:00:: 00026571 1 4 -at_any_rate%4:02:01:: 00104661 2 0 -at_arm's_length%4:02:00:: 00249549 1 1 -at_bay%5:00:00:unfree:00 01064913 1 4 -at_best%4:02:00:: 00105775 1 4 -at_bottom%4:02:00:: 00104099 1 0 -at_close_range%4:02:00:: 00410043 1 1 -at_fault%5:00:00:guilty:00 01321429 1 0 -at_first_blush%4:02:00:: 00103426 1 0 -at_first_glance%4:02:00:: 00103324 1 3 -at_first_hand%4:02:00:: 00340403 1 0 -at_first_sight%4:02:00:: 00103324 1 2 -at_hand%5:00:01:close:01 00448314 2 4 -at_hand%5:00:02:close:01 00448644 1 5 -at_heart%4:02:00:: 00104099 1 2 -at_home%1:14:00:: 08254540 1 1 -at_home%4:02:00:: 00098166 2 0 -at_home%4:02:01:: 00098267 1 1 -at_large%4:02:00:: 00104233 1 3 -at_large%5:00:00:free:00 01062114 1 1 -at_last%4:02:00:: 00047903 1 44 -at_least%4:02:00:: 00104345 2 57 -at_least%4:02:01:: 00104661 1 60 -at_leisure%4:02:00:: 00104990 1 0 -at_length%4:02:00:: 00065575 1 0 -at_loggerheads%5:00:00:hostile:01 01245441 1 0 -at_long_last%4:02:00:: 00047903 1 0 -at_most%4:02:00:: 00104528 1 2 -at_odds%5:00:00:inconsistent:00 00578234 1 1 -at_once%4:02:00:: 00048739 1 24 -at_once%4:02:03:: 00153261 2 9 -at_one_time%4:02:00:: 00153261 1 2 -at_one_time%4:02:01:: 00118965 2 0 -at_peace%5:00:02:dead:01 00095873 1 0 -at_present%4:02:00:: 00049220 1 8 -at_random%4:02:00:: 00070765 1 1 -at_rest%5:00:00:asleep:00 00188058 1 0 -at_rest%5:00:00:dead:01 00095873 2 0 -at_sea%5:00:00:perplexed:00 01766133 1 0 -at_stake%4:02:00:: 00158831 2 0 -at_stake%4:02:01:: 00158936 1 0 -at_that_place%4:02:00:: 00109151 1 0 -at_the_best%4:02:00:: 00105775 1 0 -at_the_least%4:02:00:: 00104345 1 2 -at_the_most%4:02:00:: 00104528 1 1 -at_the_ready%5:00:00:ready:00 01931034 1 0 -at_the_same_time%4:02:03:: 00120095 1 23 -at_the_same_time%4:02:05:: 00120223 2 8 -at_the_worst%4:02:00:: 00105908 1 0 -at_times%4:02:00:: 00021212 1 15 -at_variance%5:00:00:discordant:00 00554098 1 0 -at_will%4:02:00:: 00153372 1 0 -at_work%5:00:00:busy:00 00293248 1 3 -at_worst%4:02:00:: 00105908 1 1 -atabrine%1:06:00:: 04034641 1 0 -atacama_desert%1:15:00:: 09168193 1 0 -atacama_trench%1:17:00:: 09209132 1 0 -atactic%3:01:00:: 02646952 1 0 -atactic_abasia%1:26:00:: 14549382 1 0 -atakapa%1:10:00:: 06907567 2 0 -atakapa%1:18:00:: 09647680 1 0 -atakapan%1:10:00:: 06907567 1 0 -atar%1:27:00:: 14892989 1 0 -ataractic%1:06:00:: 04470232 1 0 -ataractic%5:00:00:depressant:00 02308472 1 0 -ataractic_agent%1:06:00:: 04470232 1 0 -ataractic_drug%1:06:00:: 04470232 1 0 -atarax%1:06:00:: 03554131 1 0 -ataraxia%1:07:00:: 04904560 1 0 -ataraxic%5:00:00:depressant:00 02308472 1 0 -ataraxis%1:12:00:: 07515790 1 0 -ataturk%1:18:00:: 10826952 1 0 -atavism%1:11:00:: 07343574 1 0 -atavist%1:18:00:: 09819860 1 0 -atavistic%5:00:00:regressive:01 01877182 1 0 -ataxia%1:26:00:: 14091254 1 0 -ataxic%3:01:00:: 02646952 1 0 -ataxic_abasia%1:26:00:: 14549382 1 0 -ataxic_aphasia%1:26:00:: 14098458 1 0 -ataxy%1:26:00:: 14091254 1 0 -atayalic%1:10:00:: 06940854 1 0 -ate%1:18:00:: 09557289 1 0 -atelectasis%1:26:00:: 14502896 1 0 -ateleiosis%1:26:00:: 14508799 1 0 -ateleiotic%3:01:00:: 02899383 1 0 -ateles%1:05:00:: 02493673 1 0 -ateles_geoffroyi%1:05:00:: 02493793 1 0 -atelier%1:06:00:: 02746841 1 0 -ateliosis%1:26:00:: 14508799 1 0 -aten%1:18:00:: 09511875 1 0 -atenolol%1:06:00:: 02751782 1 0 -ateria_gastrica_dextra%1:08:00:: 05345783 1 0 -atf%1:14:00:: 08140219 1 0 -athabascan%1:10:00:: 06907728 1 14 -athabascan%1:18:00:: 09647834 2 0 -athabaskan%1:10:00:: 06907728 2 0 -athabaskan%1:18:00:: 09647834 1 0 -athanasian_creed%1:09:00:: 05958114 1 0 -athanasianism%1:09:00:: 06187960 1 0 -athanasius%1:18:00:: 10827155 1 0 -athanasius_the_great%1:18:00:: 10827155 1 0 -athanor%1:06:00:: 02752039 1 0 -athapascan%1:10:00:: 06907728 2 0 -athapascan%1:18:00:: 09647834 1 0 -athapaskan%1:10:00:: 06907728 2 0 -athapaskan%1:18:00:: 09647834 1 0 -athapaskan_language%1:10:00:: 06907728 1 0 -athar%1:27:00:: 14892989 1 0 -atharva-veda%1:10:00:: 06465255 1 0 -atheism%1:09:00:: 06223468 1 0 -atheism%1:09:01:: 05980256 2 0 -atheist%1:18:00:: 09820044 1 1 -atheist%3:01:00:: 02826443 1 0 -atheistic%3:01:00:: 02826443 2 0 -atheistic%5:00:00:irreligious:00 01784217 1 1 -atheistical%3:01:00:: 02826443 1 0 -atheistical%5:00:00:irreligious:00 01784217 2 0 -athelstan%1:18:00:: 10827513 1 0 -athena%1:18:00:: 09557387 1 0 -athenaeum%1:06:00:: 02752199 2 0 -athenaeum%1:14:00:: 08228405 1 0 -athene%1:05:00:: 01621994 2 0 -athene%1:18:00:: 09557387 1 0 -athene_noctua%1:05:00:: 01622120 1 0 -atheneum%1:06:00:: 02752199 2 0 -atheneum%1:14:00:: 08228405 1 0 -athenian%1:18:00:: 09711132 1 0 -athenian%3:01:00:: 02972499 1 0 -athens%1:15:00:: 08785343 1 1 -athens%1:15:01:: 09076982 3 0 -athens%1:15:02:: 09130599 2 0 -atherinidae%1:05:00:: 02602215 1 0 -atherinopsis%1:05:00:: 02602620 1 0 -atherinopsis_californiensis%1:05:00:: 02602760 1 0 -atherodyde%1:06:00:: 04051269 1 0 -atherogenesis%1:26:00:: 14108576 1 0 -atheroma%1:08:00:: 05269495 1 0 -atheromatic%3:01:00:: 03008447 1 0 -atheromatous%3:01:00:: 03008447 1 1 -atherosclerosis%1:26:00:: 14108713 1 0 -atherosclerotic%3:01:00:: 02647123 1 0 -atherurus%1:05:00:: 02347140 1 0 -athetosis%1:26:00:: 14108938 1 0 -athinai%1:15:00:: 08785343 1 0 -athiorhodaceae%1:05:00:: 01361840 1 0 -athirst%5:00:00:desirous:00 00888200 1 0 -athlete%1:18:00:: 09820263 1 7 -athlete's_foot%1:26:00:: 14126078 1 0 -athlete's_heart%1:08:00:: 05389182 1 0 -athletic%3:01:00:: 02907656 1 3 -athletic%5:00:00:active:01 00032497 2 1 -athletic%5:00:00:mesomorphic:00 00828661 3 0 -athletic_competition%1:11:00:: 07456638 1 0 -athletic_contest%1:11:00:: 07456638 1 0 -athletic_facility%1:06:00:: 02752311 1 0 -athletic_field%1:15:00:: 08570758 1 0 -athletic_game%1:04:00:: 00463246 1 0 -athletic_sock%1:06:00:: 02752496 1 0 -athletic_supporter%1:06:00:: 02752615 1 0 -athletic_training%1:04:00:: 00893498 1 0 -athletic_type%1:07:00:: 04999306 1 0 -athletic_wear%1:06:00:: 04285803 1 0 -athleticism%1:07:00:: 05036237 1 1 -athletics%1:04:00:: 00523513 1 1 -athletics%1:04:01:: 00886582 3 0 -athletics%1:11:00:: 07456638 2 0 -athodyd%1:06:00:: 04051269 1 0 -athol_fugard%1:18:00:: 10984979 1 0 -athos%1:15:00:: 08785132 1 0 -athrotaxis%1:20:00:: 11632794 1 0 -athrotaxis_selaginoides%1:20:00:: 11632929 1 0 -athwart%4:02:00:: 00274710 2 0 -athwart%4:02:01:: 00276145 1 0 -athyriaceae%1:20:00:: 13192025 1 0 -athyrium%1:20:00:: 13194328 1 0 -athyrium_distentifolium%1:20:00:: 13194758 1 0 -athyrium_filix-femina%1:20:00:: 13194572 1 0 -athyrium_pycnocarpon%1:20:00:: 13194918 1 0 -athyrium_thelypteroides%1:20:00:: 13196738 1 0 -atilt%5:00:00:inclined:01 01234527 1 0 -ativan%1:06:00:: 03690005 1 0 -atlanta%1:04:00:: 01269633 2 1 -atlanta%1:15:00:: 09076675 1 7 -atlantic%1:17:00:: 09209263 1 3 -atlantic%3:01:00:: 02946507 1 1 -atlantic_bonito%1:05:00:: 02628062 1 0 -atlantic_bottlenose_dolphin%1:05:00:: 02069974 1 0 -atlantic_city%1:15:00:: 09112857 1 0 -atlantic_coast%1:17:00:: 09210236 1 0 -atlantic_cod%1:05:00:: 02522722 1 0 -atlantic_croaker%1:05:00:: 02596720 1 0 -atlantic_halibut%1:05:00:: 02660519 1 0 -atlantic_herring%1:05:00:: 02532272 1 0 -atlantic_manta%1:05:00:: 01500476 1 0 -atlantic_moonfish%1:05:00:: 02578233 1 0 -atlantic_ocean%1:17:00:: 09209263 1 1 -atlantic_puffin%1:05:00:: 02047975 1 0 -atlantic_ridley%1:05:00:: 01664492 1 0 -atlantic_sailfish%1:05:00:: 02630615 1 0 -atlantic_salmon%1:05:00:: 02535537 2 0 -atlantic_salmon%1:13:00:: 07796005 1 0 -atlantic_sea_bream%1:05:00:: 02591911 1 0 -atlantic_spiny_dogfish%1:05:00:: 01493829 1 0 -atlantic_standard_time%1:28:00:: 15131734 1 0 -atlantic_time%1:28:00:: 15131734 1 0 -atlantic_tripletail%1:05:00:: 02636405 1 0 -atlantic_walrus%1:05:00:: 02081798 1 0 -atlantic_white_cedar%1:20:00:: 11635152 1 0 -atlantides%1:18:00:: 09549216 1 0 -atlantis%1:09:00:: 05626929 1 0 -atlas%1:06:00:: 02752810 4 0 -atlas%1:08:00:: 05588746 3 0 -atlas%1:10:00:: 06427086 2 0 -atlas%1:18:00:: 09575548 1 0 -atlas_cedar%1:20:00:: 11624192 1 0 -atlas_moth%1:05:00:: 02305085 1 0 -atlas_mountains%1:17:00:: 09210346 1 0 -atlas_vertebra%1:08:00:: 05588746 1 0 -atm%1:06:00:: 02977058 3 0 -atm%1:10:00:: 06279071 2 0 -atm%1:23:00:: 13711060 1 1 -atmometer%1:06:00:: 02752917 1 0 -atmosphere%1:07:00:: 04727214 6 0 -atmosphere%1:15:00:: 08499057 3 7 -atmosphere%1:17:00:: 09210604 5 4 -atmosphere%1:23:00:: 13711060 2 7 -atmosphere%1:26:00:: 14520278 4 5 -atmosphere%1:26:01:: 14524849 1 18 -atmospheric%3:01:00:: 02831736 1 1 -atmospheric_condition%1:19:00:: 11524662 1 0 -atmospheric_electricity%1:19:00:: 11476231 1 0 -atmospheric_phenomenon%1:19:00:: 11425580 1 0 -atmospheric_pressure%1:19:00:: 11429458 1 0 -atmospheric_state%1:26:00:: 14520278 1 0 -atmospheric_static%1:11:00:: 07431683 1 0 -atmospherical%3:01:00:: 02831736 1 0 -atmospherics%1:11:00:: 07431683 1 0 -atole%1:13:00:: 07703515 1 0 -atoll%1:17:00:: 09210862 1 0 -atom%1:27:00:: 14619225 1 19 -atom%1:27:01:: 14585519 2 0 -atom-bomb%2:33:00:: 01132980 1 0 -atom_bomb%1:06:00:: 02753044 1 1 -atom_smasher%1:06:00:: 02670382 1 0 -atomic%3:00:00:: 00610532 2 1 -atomic%3:01:00:: 02884619 1 4 -atomic%5:00:00:small:00 01392071 3 0 -atomic_bomb%1:06:00:: 02753044 1 2 -atomic_clock%1:06:00:: 02753394 1 0 -atomic_cocktail%1:06:00:: 02753569 1 0 -atomic_energy%1:19:00:: 11425989 1 0 -atomic_energy_commission%1:14:00:: 08122358 1 1 -atomic_explosion%1:11:00:: 07408386 1 0 -atomic_mass%1:07:00:: 05025935 1 0 -atomic_mass_unit%1:23:00:: 13715495 1 0 -atomic_number%1:23:00:: 13598715 1 0 -atomic_number_1%1:27:00:: 14640434 1 0 -atomic_number_10%1:27:00:: 14646152 1 0 -atomic_number_100%1:27:00:: 14637339 1 0 -atomic_number_101%1:27:00:: 14645092 1 0 -atomic_number_102%1:27:00:: 14647722 1 0 -atomic_number_103%1:27:00:: 14643323 1 0 -atomic_number_104%1:27:00:: 14653416 1 0 -atomic_number_105%1:27:00:: 14636523 1 0 -atomic_number_106%1:27:00:: 14654058 1 0 -atomic_number_107%1:27:00:: 14631757 1 0 -atomic_number_108%1:27:00:: 14639795 1 0 -atomic_number_109%1:27:00:: 14644963 1 0 -atomic_number_11%1:27:00:: 14655371 1 0 -atomic_number_110%1:27:00:: 14636392 1 0 -atomic_number_111%1:27:00:: 14652824 1 0 -atomic_number_112%1:27:00:: 14659794 1 0 -atomic_number_113%1:27:00:: 14660314 1 0 -atomic_number_114%1:27:00:: 14660183 1 0 -atomic_number_115%1:27:00:: 14660052 1 0 -atomic_number_116%1:27:00:: 14659922 1 0 -atomic_number_12%1:27:00:: 14644249 1 0 -atomic_number_13%1:27:00:: 14627820 1 0 -atomic_number_14%1:27:00:: 14654541 1 0 -atomic_number_15%1:27:00:: 14649197 1 0 -atomic_number_16%1:27:00:: 14656219 1 0 -atomic_number_17%1:27:00:: 14634591 1 0 -atomic_number_18%1:27:00:: 14628920 1 0 -atomic_number_19%1:27:00:: 14650807 1 0 -atomic_number_2%1:27:00:: 14639921 1 0 -atomic_number_20%1:27:00:: 14632648 1 0 -atomic_number_21%1:27:00:: 14653831 1 0 -atomic_number_22%1:27:00:: 14659211 1 0 -atomic_number_23%1:27:00:: 14661020 1 0 -atomic_number_24%1:27:00:: 14635092 1 0 -atomic_number_25%1:27:00:: 14644654 1 0 -atomic_number_26%1:27:00:: 14642417 1 0 -atomic_number_27%1:27:00:: 14635290 1 0 -atomic_number_28%1:27:00:: 14646610 1 0 -atomic_number_29%1:27:00:: 14635722 1 0 -atomic_number_3%1:27:00:: 14643793 1 0 -atomic_number_30%1:27:00:: 14661977 1 0 -atomic_number_31%1:27:00:: 14638256 1 0 -atomic_number_32%1:27:00:: 14638517 1 0 -atomic_number_33%1:27:00:: 14629149 1 0 -atomic_number_34%1:27:00:: 14654175 1 0 -atomic_number_35%1:27:00:: 14632129 1 0 -atomic_number_36%1:27:00:: 14642916 1 0 -atomic_number_37%1:27:00:: 14652954 1 0 -atomic_number_38%1:27:00:: 14655731 1 0 -atomic_number_39%1:27:00:: 14661740 1 0 -atomic_number_4%1:27:00:: 14631295 1 0 -atomic_number_40%1:27:00:: 14662281 1 0 -atomic_number_41%1:27:00:: 14646942 1 0 -atomic_number_42%1:27:00:: 14645661 1 0 -atomic_number_43%1:27:00:: 14657047 1 0 -atomic_number_44%1:27:00:: 14653242 1 0 -atomic_number_45%1:27:00:: 14652623 1 0 -atomic_number_46%1:27:00:: 14648754 1 0 -atomic_number_47%1:27:00:: 14654954 1 0 -atomic_number_48%1:27:00:: 14632444 1 0 -atomic_number_49%1:27:00:: 14641223 1 0 -atomic_number_5%1:27:00:: 14631871 1 0 -atomic_number_50%1:27:00:: 14658855 1 0 -atomic_number_51%1:27:00:: 14628668 1 0 -atomic_number_52%1:27:00:: 14657228 1 0 -atomic_number_53%1:27:00:: 14641397 1 0 -atomic_number_54%1:27:00:: 14661274 1 0 -atomic_number_55%1:27:00:: 14634232 1 0 -atomic_number_56%1:27:00:: 14629998 1 0 -atomic_number_57%1:27:00:: 14643118 1 0 -atomic_number_58%1:27:00:: 14633957 1 0 -atomic_number_59%1:27:00:: 14651212 1 0 -atomic_number_6%1:27:00:: 14633206 1 0 -atomic_number_60%1:27:00:: 14645882 1 0 -atomic_number_61%1:27:00:: 14651479 1 0 -atomic_number_62%1:27:00:: 14653596 1 0 -atomic_number_63%1:27:00:: 14637176 1 0 -atomic_number_64%1:27:00:: 14638041 1 0 -atomic_number_65%1:27:00:: 14657566 1 0 -atomic_number_66%1:27:00:: 14636647 1 0 -atomic_number_67%1:27:00:: 14640222 1 0 -atomic_number_68%1:27:00:: 14636988 1 0 -atomic_number_69%1:27:00:: 14658546 1 0 -atomic_number_7%1:27:00:: 14647235 1 0 -atomic_number_70%1:27:00:: 14661482 1 0 -atomic_number_71%1:27:00:: 14644063 1 0 -atomic_number_72%1:27:00:: 14639556 1 0 -atomic_number_73%1:27:00:: 14656666 1 0 -atomic_number_74%1:27:00:: 14659512 1 0 -atomic_number_75%1:27:00:: 14652390 1 0 -atomic_number_76%1:27:00:: 14647907 1 0 -atomic_number_77%1:27:00:: 14642219 1 0 -atomic_number_78%1:27:00:: 14649543 1 0 -atomic_number_79%1:27:00:: 14638799 1 0 -atomic_number_8%1:27:00:: 14648100 1 0 -atomic_number_80%1:27:00:: 14645346 1 0 -atomic_number_81%1:27:00:: 14657818 1 0 -atomic_number_82%1:27:00:: 14643467 1 0 -atomic_number_83%1:27:00:: 14631502 1 0 -atomic_number_84%1:27:00:: 14650556 1 0 -atomic_number_85%1:27:00:: 14629561 1 0 -atomic_number_86%1:27:00:: 14652104 1 0 -atomic_number_87%1:27:00:: 14637864 1 0 -atomic_number_88%1:27:00:: 14651921 1 0 -atomic_number_89%1:27:00:: 14627655 1 0 -atomic_number_9%1:27:00:: 14637507 1 0 -atomic_number_90%1:27:00:: 14658109 1 0 -atomic_number_91%1:27:00:: 14651708 1 0 -atomic_number_92%1:27:00:: 14660443 1 0 -atomic_number_93%1:27:00:: 14646403 1 0 -atomic_number_94%1:27:00:: 14649775 1 0 -atomic_number_95%1:27:00:: 14628494 1 0 -atomic_number_96%1:27:00:: 14636220 1 0 -atomic_number_97%1:27:00:: 14631134 1 0 -atomic_number_98%1:27:00:: 14633037 1 0 -atomic_number_99%1:27:00:: 14636822 1 0 -atomic_physics%1:09:00:: 06100555 1 1 -atomic_pile%1:06:00:: 02753710 1 0 -atomic_power%1:19:00:: 11426125 1 0 -atomic_reactor%1:06:00:: 02753710 1 0 -atomic_spectrum%1:19:00:: 11426288 1 0 -atomic_theory%1:09:00:: 06102476 2 0 -atomic_theory%1:09:01:: 06103270 1 0 -atomic_warhead%1:06:00:: 02753881 1 0 -atomic_weapon%1:06:00:: 03834604 1 0 -atomic_weight%1:07:00:: 05025935 1 0 -atomisation%1:04:00:: 00388210 1 0 -atomisation%1:04:01:: 00218602 2 0 -atomise%2:30:00:: 00330144 3 0 -atomise%2:33:00:: 01133288 2 0 -atomise%2:35:00:: 01373138 1 0 -atomiser%1:06:00:: 02754103 1 0 -atomism%1:09:00:: 06102476 2 0 -atomism%1:09:01:: 06138099 1 0 -atomist_theory%1:09:00:: 06102476 1 0 -atomistic%3:00:00:: 01680836 1 0 -atomistic_theory%1:09:00:: 06102476 1 0 -atomistical%3:00:00:: 01680836 1 0 -atomization%1:04:00:: 00388210 1 0 -atomization%1:04:01:: 00218602 2 0 -atomize%2:30:00:: 00330144 3 0 -atomize%2:33:00:: 01133288 2 0 -atomize%2:35:00:: 01373138 1 0 -atomizer%1:06:00:: 02754103 1 0 -aton%1:18:00:: 09511875 1 0 -atonal%3:00:00:: 02438188 1 0 -atonalism%1:10:00:: 06864014 1 0 -atonalistic%3:01:00:: 02647236 1 0 -atonality%1:10:00:: 06864014 1 0 -atonally%4:02:00:: 00236668 1 1 -atone%2:37:00:: 01796800 2 0 -atone%2:41:12:: 02520509 1 1 -atonement%1:04:00:: 00095121 2 0 -atonement%1:21:00:: 13292787 1 0 -atonia%1:26:00:: 14545845 1 0 -atonic%3:00:00:: 02320886 2 0 -atonic%3:01:00:: 02647358 1 0 -atonicity%1:26:00:: 14545845 1 0 -atony%1:26:00:: 14545845 1 0 -atop%4:02:00:: 00276225 1 1 -atopic_allergy%1:26:00:: 14532250 1 0 -atopic_dermatitis%1:26:00:: 14222788 1 0 -atopic_eczema%1:26:00:: 14222788 1 0 -atopognosia%1:26:00:: 14091965 1 0 -atopognosis%1:26:00:: 14091965 1 0 -atopy%1:26:00:: 14532250 1 0 -atorvastatin%1:06:00:: 02754421 1 0 -atoxic%3:00:00:: 02450640 1 0 -atp%1:27:00:: 14708042 1 0 -atrabilious%5:00:00:ill-natured:00 01135269 1 0 -atrazine%1:27:00:: 14629772 1 0 -atresia%1:26:00:: 14049262 1 0 -atreus%1:18:00:: 09594756 1 0 -atrial%3:01:00:: 02647497 1 0 -atrial_artery%1:08:00:: 05343941 1 0 -atrial_auricle%1:08:00:: 05392348 1 0 -atrial_fibrillation%1:26:00:: 14362373 1 0 -atrial_septal_defect%1:26:00:: 14469334 1 0 -atrichornis%1:05:00:: 01545889 1 0 -atrichornithidae%1:05:00:: 01545752 1 0 -atrioventricular%3:01:00:: 02647688 1 0 -atrioventricular_block%1:26:00:: 14362593 1 0 -atrioventricular_bundle%1:08:00:: 05390479 1 0 -atrioventricular_nodal_rhythm%1:07:00:: 04768309 1 0 -atrioventricular_node%1:08:00:: 05390761 1 0 -atrioventricular_trunk%1:08:00:: 05390479 1 0 -atrioventricular_valve%1:08:00:: 05394277 1 0 -atrip%5:00:00:free:00 01062819 1 0 -atriplex%1:20:00:: 11830570 1 0 -atriplex_hortensis%1:20:00:: 11831100 1 0 -atriplex_hymenelytra%1:20:00:: 11831297 1 0 -atriplex_lentiformis%1:20:00:: 11831521 1 0 -atriplex_mexicana%1:20:00:: 11829205 1 0 -atrium%1:06:00:: 02754656 2 0 -atrium%1:08:00:: 05393023 1 0 -atrium_cordis%1:08:00:: 05393230 1 0 -atrium_dextrum%1:08:00:: 05393429 1 0 -atrium_of_the_heart%1:08:00:: 05393230 1 0 -atrium_sinistrum%1:08:00:: 05393629 1 0 -atrocious%5:00:00:alarming:00 00193480 3 0 -atrocious%5:00:00:bad:00 01126291 2 0 -atrocious%5:00:00:evil:00 01131454 1 0 -atrociously%4:02:00:: 00055101 1 1 -atrociously%4:02:01:: 00117372 2 0 -atrociousness%1:07:00:: 04830343 1 0 -atrocity%1:04:00:: 00424767 2 0 -atrocity%1:07:00:: 04830343 1 0 -atromid-s%1:06:00:: 03047353 1 0 -atropa%1:20:00:: 12898226 1 0 -atropa_belladonna%1:20:00:: 12898342 1 0 -atrophedema%1:26:00:: 14120310 1 0 -atrophic%3:01:00:: 03009360 1 3 -atrophic_arthritis%1:26:00:: 14186738 1 0 -atrophied%3:00:00:: 00554879 1 1 -atrophy%1:11:00:: 07427060 2 0 -atrophy%1:26:00:: 14365741 1 4 -atrophy%2:29:00:: 00093979 1 0 -atropidae%1:05:00:: 02261184 1 0 -atropine%1:06:00:: 02754756 1 0 -atropos%1:18:00:: 09565787 1 0 -atrovent%1:06:00:: 03584111 1 0 -atsugewi%1:10:00:: 06921853 2 0 -atsugewi%1:18:00:: 09650609 1 0 -attacapa%1:10:00:: 06907567 1 0 -attacapan%1:10:00:: 06907567 2 0 -attacapan%1:18:00:: 09647680 1 0 -attach%2:35:00:: 01290422 3 3 -attach%2:35:01:: 01296462 1 22 -attach%2:35:02:: 01290255 2 4 -attach%2:40:00:: 02273293 5 0 -attach%2:41:03:: 02538086 4 0 -attach_to%2:42:00:: 02705535 2 0 -attach_to%2:42:01:: 02716165 1 3 -attachable%3:00:00:: 00161431 1 0 -attache%1:06:00:: 02755140 2 0 -attache%1:18:00:: 09821086 1 0 -attache_case%1:06:00:: 02755140 1 0 -attached%3:00:01:: 00157925 3 0 -attached%3:00:02:: 00160425 2 0 -attached%5:00:00:loving:00 01465468 4 0 -attached%5:00:00:related:02 01973311 1 1 -attachment%1:04:00:: 00147595 7 0 -attachment%1:04:01:: 00379422 6 0 -attachment%1:04:02:: 01212882 5 0 -attachment%1:06:00:: 02755244 2 1 -attachment%1:06:01:: 02755352 4 0 -attachment%1:10:00:: 06554981 3 0 -attachment%1:12:00:: 07545161 1 1 -attack%1:04:00:: 00972621 1 17 -attack%1:04:01:: 00236953 6 1 -attack%1:04:02:: 00773814 5 1 -attack%1:04:03:: 00941140 4 1 -attack%1:04:04:: 00457723 2 3 -attack%1:04:05:: 01220619 9 0 -attack%1:10:00:: 06711159 3 2 -attack%1:22:00:: 13435548 8 0 -attack%1:26:00:: 14081375 7 0 -attack%2:29:00:: 00019792 6 0 -attack%2:30:00:: 00347610 5 1 -attack%2:32:00:: 00862683 2 9 -attack%2:33:00:: 01119169 1 22 -attack%2:33:01:: 01118449 3 8 -attack%2:33:02:: 01120069 4 4 -attack_aircraft%1:06:00:: 03335030 1 0 -attack_aircraft_carrier%1:06:00:: 02687172 1 1 -attack_dog%1:05:00:: 02104184 1 0 -attack_submarine%1:06:00:: 02755529 1 0 -attacker%1:18:00:: 09821253 1 3 -attacking%5:00:00:offensive:03 01629349 1 0 -attain%2:38:00:: 02006834 2 6 -attain%2:38:01:: 02020590 4 0 -attain%2:40:13:: 02286687 3 0 -attain%2:41:00:: 02526085 1 16 -attainability%1:26:00:: 14482444 1 0 -attainable%5:00:00:possible:00 01822153 1 0 -attainableness%1:26:00:: 14482444 1 0 -attainder%1:04:00:: 00232765 1 0 -attained%5:00:00:earned:00 00821603 1 1 -attainment%1:04:00:: 00062806 1 1 -attainment%1:04:01:: 00048656 2 1 -attainment%1:09:00:: 05637558 3 0 -attaint%2:39:00:: 02149501 2 0 -attaint%2:41:00:: 02547225 1 0 -attalea%1:20:00:: 12584970 1 0 -attalea_funifera%1:20:00:: 12585137 1 0 -attar%1:27:00:: 14892989 1 0 -attar_of_roses%1:27:00:: 14893128 1 0 -attemper%2:30:00:: 00170381 1 0 -attempt%1:04:00:: 00786195 1 49 -attempt%1:04:02:: 00773814 2 2 -attempt%2:36:00:: 01651293 2 15 -attempt%2:41:00:: 02530167 1 50 -attempted%5:00:00:unsuccessful:00 02333880 1 2 -attempter%1:18:00:: 10728998 1 0 -attend%2:39:00:: 02170427 5 1 -attend%2:41:00:: 02540670 4 1 -attend%2:41:12:: 02549581 2 2 -attend%2:42:00:: 02612762 1 84 -attend%2:42:01:: 02716567 3 1 -attend_to%2:31:00:: 00616670 1 1 -attend_to%2:41:01:: 02540670 2 0 -attendance%1:04:00:: 01233397 1 2 -attendance%1:14:00:: 08185063 3 0 -attendance%1:28:00:: 15284999 2 0 -attendance_check%1:04:00:: 01012257 1 0 -attendant%1:11:00:: 07284554 3 0 -attendant%1:18:00:: 09821831 1 3 -attendant%1:18:01:: 09608002 2 0 -attendant%5:00:00:present:02 01846815 1 0 -attendant%5:00:00:subsequent:00 00122844 2 0 -attended%3:00:00:: 02252053 1 0 -attended%5:00:00:cared-for:00 00308488 2 0 -attendee%1:18:01:: 09608002 1 0 -attender%1:18:00:: 09821831 2 0 -attender%1:18:01:: 09608002 3 0 -attender%1:18:02:: 10165448 1 0 -attending%1:04:01:: 01233397 2 0 -attending%1:09:00:: 05702275 1 0 -attention%1:04:01:: 00654885 2 10 -attention%1:04:02:: 01228645 4 4 -attention%1:07:00:: 05082790 6 1 -attention%1:09:00:: 05702275 1 56 -attention%1:09:01:: 05650579 5 2 -attention%1:09:02:: 05853636 3 4 -attention-getting%5:00:00:appealing:00 00170717 2 0 -attention-getting%5:00:00:conspicuous:00 00579498 1 0 -attention_deficit_disorder%1:26:00:: 14056280 1 0 -attention_deficit_hyperactivity_disorder%1:26:00:: 14056280 1 0 -attention_span%1:09:00:: 05702602 1 0 -attentional%3:01:00:: 02647917 1 0 -attentive%3:00:00:: 00163592 1 2 -attentive%3:00:04:: 01194483 2 0 -attentively%4:02:00:: 00196417 1 1 -attentiveness%1:07:00:: 04663204 2 0 -attentiveness%1:07:01:: 04662951 3 0 -attentiveness%1:09:00:: 05702726 1 0 -attenuate%2:30:00:: 00220701 2 0 -attenuate%2:30:01:: 00226379 1 0 -attenuate%5:00:00:decreased:00 00882166 1 0 -attenuated%5:00:00:decreased:00 00882166 2 0 -attenuated%5:00:02:decreased:00 00882312 1 0 -attenuation%1:07:00:: 05041712 2 0 -attenuation%1:11:00:: 07427534 1 0 -attenuator%1:06:00:: 02755675 1 0 -attest%2:32:00:: 00820352 2 1 -attest%2:32:01:: 00820976 1 2 -attest%2:32:02:: 01014821 3 0 -attest%2:32:04:: 00820611 4 0 -attestant%1:18:00:: 10786270 1 0 -attestant%1:18:01:: 09822640 2 0 -attestation%1:10:00:: 06736405 1 0 -attestation%1:10:01:: 06649915 2 0 -attestation_report%1:04:00:: 00578154 1 0 -attestation_service%1:04:00:: 00578154 1 0 -attestator%1:18:00:: 10786270 1 0 -attested%5:00:00:genuine:00 01115920 1 0 -attester%1:18:00:: 09822640 1 0 -attestor%1:18:00:: 10786270 1 0 -attic%1:06:00:: 03686130 1 2 -attic%1:06:01:: 02755823 4 0 -attic%1:08:00:: 05539454 3 0 -attic%1:10:00:: 06977610 2 0 -attic%3:01:00:: 03017286 1 1 -attic_fan%1:06:00:: 02755984 1 0 -attica%1:15:00:: 08786283 1 1 -atticus%1:05:00:: 02304967 1 0 -atticus_atlas%1:05:00:: 02305085 1 0 -attila%1:18:00:: 10827678 1 0 -attila_the_hun%1:18:00:: 10827678 1 0 -attilio%1:08:00:: 05263448 1 0 -attire%1:06:00:: 02756098 1 2 -attire%2:29:00:: 00044149 1 0 -attired%5:00:00:clothed:00 00454440 1 1 -attitude%1:04:00:: 00755863 3 1 -attitude%1:07:01:: 05079866 2 12 -attitude%1:09:00:: 06193203 1 65 -attitude%1:24:00:: 13828343 4 0 -attitudinal%3:01:00:: 02648021 1 0 -attitudinise%2:41:00:: 02519494 1 0 -attitudinize%2:41:00:: 02519494 1 0 -attlee%1:18:00:: 10827873 1 0 -attorn%2:31:00:: 00593200 1 0 -attorney%1:18:00:: 10249950 1 8 -attorney-client_privilege%1:07:00:: 05179838 1 0 -attorney-client_relation%1:24:00:: 13839662 1 0 -attorney_general%1:04:00:: 00599917 3 1 -attorney_general%1:18:00:: 09822830 1 3 -attorney_general%1:18:01:: 10570429 2 1 -attorney_general_of_the_united_states%1:04:00:: 00599917 1 0 -attorneyship%1:04:00:: 00589217 1 0 -attosecond%1:28:00:: 15235540 1 0 -attract%2:35:00:: 01505254 1 23 -attract%2:35:01:: 01350025 3 0 -attract%2:37:00:: 01807882 2 4 -attractable%5:00:00:magnetic:00 01469927 1 0 -attracter%1:09:00:: 05850823 3 0 -attracter%1:09:01:: 05866199 2 0 -attracter%1:18:00:: 10032676 1 0 -attraction%1:07:00:: 04688246 3 2 -attraction%1:09:00:: 05850823 4 1 -attraction%1:10:00:: 06615561 2 2 -attraction%1:18:00:: 10032676 5 0 -attraction%1:19:00:: 11426530 1 4 -attractive%3:00:01:: 00166146 1 4 -attractive%3:00:02:: 00169955 3 0 -attractive%5:00:00:appealing:00 00170847 2 3 -attractive_feature%1:09:00:: 05850823 1 0 -attractive_force%1:19:00:: 11426530 1 0 -attractive_nuisance%1:09:00:: 05831057 1 0 -attractively%4:02:00:: 00242006 1 0 -attractiveness%1:07:00:: 04686003 2 0 -attractiveness%1:07:01:: 04688246 1 0 -attractor%1:09:00:: 05850823 3 0 -attractor%1:09:01:: 05866199 2 0 -attractor%1:18:00:: 10032676 1 0 -attributable%3:00:00:: 00171590 1 4 -attribute%1:03:00:: 00024264 2 1 -attribute%1:09:00:: 05849040 1 2 -attribute%2:31:00:: 00726300 1 16 -attribute%2:31:01:: 00740053 2 0 -attribution%1:09:00:: 05734559 2 0 -attribution%1:09:01:: 05734909 1 0 -attributive%3:00:00:: 00172562 1 0 -attributive_genitive%1:10:00:: 06312001 1 0 -attributive_genitive%5:00:00:attributive:00 00172774 1 0 -attributive_genitive_case%1:10:00:: 06312001 1 0 -attributively%4:02:00:: 00268651 1 0 -attrited%5:00:00:worn:00 02581172 1 0 -attrition%1:04:00:: 00361795 5 0 -attrition%1:11:00:: 07356970 4 0 -attrition%1:12:00:: 07534700 3 0 -attrition%1:19:00:: 11460063 2 0 -attrition%1:22:00:: 13423615 1 0 -attrition_rate%1:28:00:: 15276307 1 0 -attritional%3:01:00:: 02648106 1 0 -attune%2:30:00:: 00297780 1 1 -atypical%3:00:00:: 02469928 1 1 -atypical%5:00:00:abnormal:00 01596809 2 0 -atypical_pneumonia%1:26:00:: 14147964 1 0 -atypicality%1:26:00:: 14503060 1 0 -atypically%4:02:00:: 00128290 1 0 -au%1:23:00:: 13657244 2 0 -au%1:27:00:: 14638799 1 0 -au_courant%5:00:00:informed:00 01306645 1 0 -au_fait%5:00:00:informed:00 01306645 1 0 -au_gratin%5:00:00:cooked:00 00616408 1 0 -au_jus%5:00:00:juicy:00 01368948 1 0 -au_naturel%5:00:00:unclothed:00 00457998 1 0 -au_pair%1:18:00:: 09823683 1 0 -au_pair_girl%1:18:00:: 09823832 1 0 -au_revoir%1:10:00:: 06629610 1 0 -auberge%1:06:00:: 03541696 1 0 -aubergine%1:13:00:: 07713074 2 0 -aubergine%1:20:00:: 12896000 1 0 -auburn%5:00:00:chromatic:00 00369831 1 0 -auc%1:14:00:: 08047032 1 0 -auchincloss%1:18:00:: 10828091 1 0 -auckland%1:15:00:: 08972920 1 0 -auction%1:04:00:: 00092366 2 0 -auction%1:04:01:: 00491161 1 0 -auction%2:40:00:: 02244773 1 0 -auction_block%1:06:00:: 02756601 1 0 -auction_bridge%1:04:00:: 00491161 1 0 -auction_house%1:14:00:: 08076946 1 0 -auction_off%2:40:00:: 02244773 1 0 -auction_pitch%1:04:00:: 00498558 1 0 -auction_sale%1:04:00:: 00092366 1 0 -auctioneer%1:18:00:: 09608377 1 0 -auctioneer%2:40:00:: 02244773 1 0 -auctorial%3:01:00:: 02651014 1 0 -aucuba%1:20:00:: 12946432 1 0 -audacious%5:00:00:adventurous:00 00066146 3 0 -audacious%5:00:00:bold:00 00250119 1 1 -audacious%5:00:00:unashamed:00 00155144 2 0 -audaciously%4:02:00:: 00266955 1 0 -audaciousness%1:07:00:: 04859449 1 0 -audaciousness%1:07:02:: 04838510 2 0 -audacity%1:07:00:: 04859449 1 1 -audacity%1:07:02:: 04838510 2 1 -audad%1:05:00:: 02416104 1 0 -auden%1:18:00:: 10828233 1 0 -audenesque%3:01:00:: 03028778 1 0 -audibility%1:07:00:: 05018934 1 0 -audible%1:04:00:: 00188183 1 0 -audible%3:00:00:: 00173764 1 2 -audibleness%1:07:00:: 05018934 1 0 -audibly%4:02:00:: 00268797 1 0 -audience%1:10:00:: 07143624 4 0 -audience%1:14:00:: 08221897 1 60 -audience%1:14:01:: 08222293 2 9 -audience%1:26:00:: 14484778 3 0 -audile%1:18:00:: 10165673 1 0 -audile%3:01:00:: 02868704 1 0 -audio%1:06:00:: 02756751 4 0 -audio%1:06:01:: 04262678 3 0 -audio%1:07:00:: 05056386 2 0 -audio%1:10:00:: 06278136 1 0 -audio-lingual%3:01:00:: 03045457 1 0 -audio_amplifier%1:06:00:: 02756854 1 0 -audio_cd%1:06:00:: 02757061 1 0 -audio_compact_disc%1:06:00:: 02757061 1 0 -audio_frequency%1:07:00:: 05056386 1 0 -audio_lingual_acquisition%1:09:00:: 05755007 1 0 -audio_recording%1:06:00:: 04262678 1 0 -audio_system%1:06:00:: 02757462 1 1 -audiocassette%1:06:00:: 02756977 1 0 -audiogram%1:06:00:: 02757211 1 0 -audiology%1:09:00:: 06060732 1 0 -audiometer%1:06:00:: 02757337 1 0 -audiometric%3:01:00:: 02648270 1 0 -audiometry%1:04:00:: 00998982 2 0 -audiometry%1:09:00:: 06060732 1 0 -audiotape%1:06:00:: 02757714 2 0 -audiotape%1:06:01:: 02757810 1 0 -audiovisual%1:06:00:: 02757927 1 0 -audiovisual%3:01:00:: 02648392 1 0 -audiovisual_aid%1:06:00:: 02757927 1 0 -audit%1:04:00:: 00141176 2 0 -audit%1:21:00:: 13411157 1 2 -audit%2:31:00:: 00600235 2 0 -audit%2:31:01:: 00697062 1 1 -audit_program%1:09:00:: 05891426 1 0 -audit_programme%1:09:00:: 05891426 1 0 -audited_account%1:21:00:: 13411157 1 0 -audition%1:04:01:: 00794614 2 0 -audition%1:09:00:: 05657718 1 0 -audition%2:36:00:: 01718535 1 2 -auditive%3:01:00:: 02868704 1 0 -auditor%1:18:00:: 09822955 3 0 -auditor%1:18:01:: 10165448 1 0 -auditor%1:18:02:: 09823153 2 0 -auditorium%1:06:00:: 02758134 1 3 -auditory%3:01:00:: 02868704 1 0 -auditory_agnosia%1:26:00:: 14100243 1 0 -auditory_aphasia%1:26:00:: 14097893 1 0 -auditory_apparatus%1:08:00:: 05300675 1 0 -auditory_area%1:08:00:: 05488223 1 0 -auditory_canal%1:08:00:: 05248667 1 0 -auditory_center%1:08:00:: 05463873 1 0 -auditory_communication%1:10:00:: 07109019 1 0 -auditory_cortex%1:08:00:: 05488223 1 0 -auditory_hallucination%1:26:00:: 14377830 1 0 -auditory_hyperesthesia%1:26:00:: 14551321 1 0 -auditory_image%1:09:00:: 05936995 1 0 -auditory_meatus%1:08:00:: 05248667 1 0 -auditory_modality%1:09:00:: 05657718 1 0 -auditory_nerve%1:08:00:: 05479503 1 0 -auditory_ossicle%1:08:00:: 05277941 1 0 -auditory_perception%1:09:00:: 05711503 1 0 -auditory_sensation%1:09:00:: 05718254 1 0 -auditory_sense%1:09:00:: 05657718 1 0 -auditory_system%1:08:00:: 05300507 1 0 -auditory_tube%1:08:00:: 05325153 1 0 -audubon%1:18:00:: 10828368 1 0 -audubon's_caracara%1:05:00:: 01612955 1 0 -audubon's_warbler%1:05:00:: 01569262 1 0 -audubon_warbler%1:05:00:: 01569262 1 0 -auf_wiedersehen%1:10:00:: 06629610 1 0 -aug%1:28:00:: 15212455 1 4 -augean%5:00:00:dirty:01 00420182 1 0 -augean_stables%1:06:00:: 02758270 1 0 -augeas%1:18:00:: 09486424 1 0 -augend%1:23:00:: 13728924 1 0 -auger%1:06:00:: 02758490 2 0 -auger%1:06:01:: 03968886 1 0 -aught%1:23:00:: 13740168 1 0 -augite%1:27:00:: 14667668 1 0 -augitic%3:01:00:: 02648576 1 0 -augment%2:30:00:: 00157950 2 1 -augment%2:30:01:: 00154388 1 8 -augmentation%1:04:00:: 00365231 3 0 -augmentation%1:10:00:: 07030376 2 0 -augmentation%1:11:00:: 07369470 1 0 -augmentative%5:00:00:increasing:00 02535645 1 0 -augmentative%5:00:00:intensifying:00 01340522 2 0 -augmented%5:00:00:increased:00 00880586 1 0 -augmentin%1:06:00:: 02703894 1 0 -augsburg_confession%1:10:00:: 06472607 1 0 -augur%1:18:00:: 09823287 1 0 -augur%2:32:00:: 00871942 1 1 -augur%2:32:01:: 00918471 2 0 -augury%1:11:00:: 07286014 1 0 -august%1:28:00:: 15212455 1 15 -august%5:00:00:honorable:00 01226660 2 0 -august%5:00:00:noble:02 01591050 1 0 -august_1%1:28:00:: 15190228 1 0 -august_15%1:28:00:: 15193908 1 0 -august_6%1:28:00:: 15299367 1 0 -august_f._mobius%1:18:00:: 11183791 1 0 -august_ferdinand_mobius%1:18:00:: 11183791 1 0 -august_friedrich_leopold_weismann%1:18:00:: 11380159 1 0 -august_plum%1:20:00:: 12638964 1 0 -august_strindberg%1:18:00:: 11322481 1 0 -august_von_wassermann%1:18:00:: 11375909 1 0 -august_wilhelm_von_hoffmann%1:18:00:: 11055042 1 0 -augusta%1:15:00:: 09092822 1 0 -augusta%1:15:01:: 09077111 2 0 -augustan%3:01:00:: 03045585 1 0 -auguste_comte%1:18:00:: 10906234 1 0 -auguste_rodin%1:18:00:: 11267949 1 0 -augustin_eugene_scribe%1:18:00:: 11289999 1 0 -augustin_jean_fresnel%1:18:00:: 10981961 1 0 -augustine%1:18:00:: 10828573 1 0 -augustine_of_hippo%1:18:00:: 10828573 1 0 -augustinian%1:18:00:: 10778711 1 0 -augustinian_canons%1:14:00:: 08148294 1 0 -augustinian_hermits%1:14:00:: 08148388 1 0 -augustinian_order%1:14:00:: 08148067 1 0 -augustus%1:18:00:: 10828990 1 0 -augustus_welby_northmore_pugin%1:18:00:: 11248232 1 0 -auk%1:05:00:: 02045369 1 0 -auklet%1:05:00:: 02045596 1 0 -aulacorhyncus%1:05:00:: 01843576 1 0 -auld%5:00:00:old:01 01639636 1 0 -auld_langsyne%1:28:00:: 15252635 1 0 -aulostomidae%1:05:00:: 01457576 1 0 -aulostomus%1:05:00:: 01457708 1 0 -aulostomus_maculatus%1:05:00:: 01457852 1 0 -aum%1:14:00:: 08017614 1 0 -aum_shinrikyo%1:14:00:: 08017614 1 0 -aunt%1:18:00:: 09823502 1 4 -auntie%1:18:00:: 09823502 1 0 -aunty%1:18:00:: 09823502 1 0 -aura%1:07:00:: 04951716 2 0 -aura%1:07:01:: 04727214 3 0 -aura%1:26:00:: 14302460 1 0 -aural%3:01:00:: 02648698 2 0 -aural%3:01:01:: 02648847 1 0 -aurally%4:02:00:: 00076681 1 2 -aureate%5:00:00:chromatic:00 00369941 2 0 -aureate%5:00:00:fancy:00 01794771 1 0 -aurelius%1:18:00:: 10819755 1 0 -aureolaria%1:20:00:: 12878525 1 0 -aureolaria_pedicularia%1:20:00:: 12878784 1 0 -aureolaria_virginica%1:20:00:: 12879068 1 0 -aureole%1:07:00:: 04951716 2 0 -aureole%1:19:00:: 11427067 1 0 -aureomycin%1:06:00:: 03023415 1 4 -auric%3:01:00:: 02650083 1 0 -auricle%1:08:01:: 05392348 1 0 -auricle%1:08:02:: 05323889 2 0 -auricula%1:08:00:: 05392562 2 0 -auricula%1:20:00:: 12091806 1 0 -auricula_atrii%1:08:00:: 05392348 1 0 -auricular%3:01:00:: 02979028 1 0 -auricular%3:01:01:: 02648988 3 0 -auricular%3:01:02:: 02649125 2 0 -auricular_appendage%1:08:00:: 05392562 1 0 -auricular_appendix%1:08:00:: 05392562 1 0 -auricular_artery%1:08:00:: 05338025 1 0 -auricular_point%1:08:00:: 05231592 1 0 -auricular_vein%1:08:00:: 05358226 1 0 -auriculare%1:08:00:: 05231592 1 0 -auricularia%1:20:00:: 13062272 1 0 -auricularia_auricula%1:20:00:: 13062421 1 0 -auriculariaceae%1:20:00:: 13062112 1 0 -auriculariales%1:20:00:: 13061921 1 0 -auriculate%5:00:00:eared:00 00812417 1 0 -auriculated%5:00:00:eared:00 00812417 1 0 -auriculoventricular%3:01:00:: 02647688 1 0 -auriferous%5:00:00:metallic:00 01528349 1 0 -auriform%5:00:00:rounded:00 02045144 1 0 -aurify%2:30:00:: 00285231 2 0 -aurify%2:30:01:: 00382410 1 0 -auriga%1:17:00:: 09211056 1 0 -auriparus%1:05:00:: 01593423 1 0 -auriparus_flaviceps%1:05:00:: 01593553 1 0 -auriscope%1:06:00:: 03858183 1 0 -aurochs%1:05:01:: 02405101 2 0 -aurochs%1:05:02:: 02410900 1 0 -aurora%1:18:00:: 09572113 3 0 -aurora%1:19:00:: 11427241 2 0 -aurora%1:28:00:: 15168790 1 0 -aurora_australis%1:19:00:: 11427501 1 0 -aurora_borealis%1:19:00:: 11427619 1 0 -auroral%3:01:01:: 02649706 2 0 -auroral%3:01:02:: 02649873 1 0 -aurorean%3:01:00:: 02649706 1 0 -auroscope%1:06:00:: 03858183 1 0 -aurous%3:01:00:: 02650083 1 0 -auschwitz%1:06:00:: 02758600 1 0 -auscultate%2:39:00:: 02150192 1 0 -auscultation%1:04:00:: 00876542 1 0 -auscultatory%3:01:00:: 02650214 1 0 -auspex%1:18:00:: 09823287 1 0 -auspicate%2:30:00:: 00347420 2 0 -auspicate%2:32:00:: 00871942 1 0 -auspice%1:11:00:: 07286799 1 0 -auspices%1:04:00:: 01214863 1 0 -auspicious%3:00:00:: 00176150 1 0 -auspiciously%4:02:00:: 00217434 1 1 -auspiciousness%1:07:00:: 05161150 1 0 -aussie%1:18:00:: 09691279 1 0 -austen%1:18:00:: 10829293 1 0 -austenite%1:27:00:: 14769760 1 0 -austenitic%3:01:00:: 02650303 1 0 -austenitic_manganese_steel%1:27:00:: 14947255 1 0 -austenitic_steel%1:27:00:: 14769962 1 0 -austere%5:00:00:abstemious:00 00009618 3 0 -austere%5:00:00:nonindulgent:00 01300187 2 0 -austere%5:00:00:plain:01 01792387 1 1 -austerely%4:02:00:: 00276279 1 0 -austereness%1:07:00:: 04697666 1 0 -austerity%1:07:01:: 04881998 1 1 -austerlitz%1:04:00:: 01269857 2 0 -austerlitz%1:15:00:: 08758172 1 0 -austin%1:15:00:: 09143017 1 2 -austin_friar%1:18:00:: 10778888 1 0 -austin_friars%1:14:00:: 08148512 1 0 -austral%1:23:00:: 13663562 1 0 -austral%5:00:00:southern:01 01605327 1 0 -austral_islands%1:15:00:: 08990701 1 0 -australasia%1:15:00:: 08836165 1 0 -australasian%3:01:00:: 02650425 1 0 -australia%1:15:00:: 08831004 1 3 -australia%1:17:00:: 09211266 2 0 -australian%1:10:00:: 06940290 2 0 -australian%1:18:00:: 09691279 1 0 -australian%3:01:00:: 03045750 1 0 -australian_aborigine%1:18:00:: 09676490 1 0 -australian_alps%1:17:00:: 09211735 1 0 -australian_arowana%1:05:00:: 02545153 1 0 -australian_blacksnake%1:05:00:: 01750743 1 0 -australian_bonytongue%1:05:00:: 02545387 1 0 -australian_capital%1:15:00:: 08832269 1 0 -australian_chestnut%1:20:00:: 12512674 1 0 -australian_cockroach%1:05:00:: 02234570 1 0 -australian_coral_snake%1:05:00:: 01747285 1 0 -australian_crawl%1:04:00:: 00570366 1 0 -australian_desert%1:15:00:: 09168336 1 0 -australian_dollar%1:23:00:: 13671967 1 0 -australian_grass_tree%1:20:01:: 12466206 1 0 -australian_grass_tree%1:20:02:: 12254667 2 0 -australian_hare's_foot%1:20:00:: 13188619 1 0 -australian_heath%1:20:00:: 12252866 1 0 -australian_honeysuckle%1:20:00:: 12215824 1 0 -australian_labor_party%1:14:00:: 08261162 1 0 -australian_lungfish%1:05:00:: 02516994 1 0 -australian_magpie%1:05:00:: 01582856 1 0 -australian_nettle%1:20:00:: 12394328 1 0 -australian_nettle_tree%1:20:00:: 12394328 1 0 -australian_pea%1:20:00:: 12527081 1 0 -australian_pine%1:20:00:: 12225563 1 0 -australian_pitcher_plant%1:20:00:: 12784889 1 0 -australian_reed_grass%1:20:00:: 12113323 1 0 -australian_sea_lion%1:05:00:: 02078738 1 0 -australian_state%1:15:00:: 08832447 1 0 -australian_stilt%1:05:00:: 02036053 1 0 -australian_sumac%1:20:00:: 12762405 1 0 -australian_sword_lily%1:20:00:: 12312728 1 0 -australian_terrier%1:05:00:: 02096294 1 0 -australian_turtledove%1:05:00:: 01813948 1 0 -australopithecine%1:05:00:: 02476219 1 0 -australopithecine%3:01:00:: 02650537 1 0 -australopithecus%1:05:00:: 02475821 1 0 -australopithecus_afarensis%1:05:00:: 02476567 1 0 -australopithecus_africanus%1:05:00:: 02476870 1 0 -australopithecus_boisei%1:05:00:: 02477028 1 0 -australopithecus_robustus%1:05:00:: 02477329 1 0 -austria%1:15:00:: 08845555 1 0 -austria-hungary%1:15:00:: 08845366 1 0 -austrian%1:18:00:: 09691604 1 0 -austrian%3:01:00:: 02961099 1 0 -austrian_capital%1:15:00:: 08846324 1 0 -austrian_monetary_unit%1:23:00:: 13705800 1 0 -austrian_schilling%1:23:00:: 13705929 1 0 -austrian_winter_pea%1:20:00:: 12561309 1 0 -austro-asiatic%1:10:00:: 06936620 1 0 -austro-asiatic_language%1:10:00:: 06936620 1 0 -austrocedrus%1:20:00:: 11633116 1 0 -austrocedrus_chilensis%1:20:00:: 11633284 1 0 -austronesia%1:15:00:: 08836329 1 0 -austronesian%1:10:00:: 06937531 2 0 -austronesian%1:18:00:: 09691435 1 0 -austronesian%3:01:00:: 02977638 1 0 -austronesian_language%1:10:00:: 06937531 1 0 -austrotaxus%1:20:00:: 11662764 1 0 -austrotaxus_spicata%1:20:00:: 11662937 1 0 -autacoid%1:08:00:: 05414534 1 0 -autacoidal%3:01:00:: 02650672 1 0 -autarchic%3:01:00:: 02650795 1 0 -autarchical%3:01:00:: 02650795 1 0 -autarchy%1:14:00:: 08361001 2 0 -autarchy%1:26:00:: 13993356 1 0 -autarkic%5:00:00:independent:00 00728103 1 0 -autarkical%3:01:00:: 02650795 1 0 -autarkical%5:00:00:independent:00 00728103 2 0 -autarky%1:26:00:: 13993356 1 0 -auteur%1:18:00:: 09823927 1 0 -authentic%5:00:00:genuine:00 01115635 2 6 -authentic%5:00:00:trustworthy:00 02465115 1 6 -authentically%4:02:00:: 00269153 1 0 -authenticate%2:31:00:: 00664276 1 1 -authenticated%5:00:00:genuine:00 01115920 1 0 -authentication%1:04:00:: 00154233 2 0 -authentication%1:10:00:: 06855035 1 0 -authenticator%1:18:00:: 09802239 1 0 -authenticity%1:07:00:: 04783247 1 7 -author%1:18:00:: 10794014 1 38 -author%1:18:01:: 10126177 2 6 -author%2:36:00:: 01704452 1 0 -author's_name%1:10:00:: 06338744 1 0 -authoress%1:18:00:: 09824065 1 0 -authorial%3:01:00:: 02651014 1 0 -authoring_language%1:10:00:: 06566949 1 0 -authorisation%1:04:00:: 01138670 4 0 -authorisation%1:07:00:: 05196582 2 0 -authorisation%1:07:02:: 05176607 3 0 -authorisation%1:10:00:: 06556481 1 0 -authorise%2:32:00:: 00803325 2 0 -authorise%2:41:00:: 02473981 1 0 -authorised%3:00:00:: 00178575 1 0 -authorised%5:00:00:official:00 01632808 2 0 -authoriser%1:18:00:: 09825096 1 0 -authoritarian%1:18:00:: 09824135 1 0 -authoritarian%5:00:00:domineering:00 00787357 2 0 -authoritarian%5:00:00:undemocratic:00 00717684 1 2 -authoritarian_regime%1:14:00:: 08051384 1 0 -authoritarian_state%1:14:00:: 08051384 1 0 -authoritarianism%1:14:00:: 08440630 1 0 -authoritative%5:00:00:influential:00 01830403 1 1 -authoritative%5:00:00:official:00 01632808 3 0 -authoritative%5:00:00:standard:01 02295098 2 0 -authoritatively%4:02:00:: 00241383 1 1 -authorities%1:14:00:: 08050678 1 10 -authority%1:07:00:: 05196582 1 18 -authority%1:07:02:: 05176607 6 1 -authority%1:09:00:: 05697363 4 2 -authority%1:10:00:: 06411592 7 0 -authority%1:14:00:: 08337324 5 1 -authority%1:18:00:: 09824361 3 3 -authority%1:18:01:: 09824609 2 5 -authority_figure%1:18:00:: 09824978 1 0 -authorization%1:04:00:: 01138670 4 0 -authorization%1:07:00:: 05196582 2 0 -authorization%1:07:02:: 05176607 3 0 -authorization%1:10:00:: 06556481 1 5 -authorize%2:32:00:: 00803325 1 32 -authorize%2:41:00:: 02473981 2 0 -authorized%3:00:00:: 00178575 1 1 -authorized%5:00:00:official:00 01632808 2 0 -authorized_shares%1:21:00:: 13342398 1 0 -authorized_stock%1:21:00:: 13342398 1 0 -authorized_version%1:10:00:: 06449095 1 0 -authorizer%1:18:00:: 09825096 1 0 -authorship%1:04:00:: 00929718 1 1 -authorship%1:04:01:: 00240754 2 0 -autism%1:09:00:: 05896998 1 0 -autistic%5:00:00:ill:01 02542878 1 0 -auto%1:06:00:: 02958343 1 2 -auto-changer%1:06:00:: 04063154 1 0 -auto-da-fe%1:04:00:: 01164730 1 0 -auto-mechanic%1:18:00:: 09825750 1 0 -auto-suggestion%1:04:00:: 00158805 1 0 -auto_accessory%1:06:00:: 02758753 1 0 -auto_company%1:14:00:: 08002269 1 0 -auto_factory%1:06:00:: 02761696 1 0 -auto_limitation%1:04:00:: 01124110 1 1 -auto_loan%1:21:00:: 13400024 1 0 -auto_maker%1:14:00:: 08066763 1 0 -auto_manufacturer%1:14:00:: 08066763 1 0 -auto_mechanics%1:04:00:: 00607185 1 2 -auto_part%1:06:00:: 02762044 1 0 -auto_race%1:11:00:: 07458892 1 0 -auto_racing%1:04:00:: 00449517 1 0 -auto_tire%1:06:00:: 02971167 1 0 -autoantibody%1:27:00:: 15027618 1 0 -autobahn%1:06:00:: 02758863 1 0 -autobiographer%1:18:00:: 09825296 1 0 -autobiographic%3:01:00:: 02651244 2 0 -autobiographic%3:01:01:: 02651468 1 0 -autobiographical%3:01:00:: 02651244 2 0 -autobiographical%3:01:01:: 02651468 1 0 -autobiography%1:10:00:: 06516087 1 0 -autobus%1:06:00:: 02924116 1 0 -autocatalysis%1:22:00:: 13435770 1 0 -autocatalytic%3:01:00:: 02651696 1 0 -autochthon%1:18:00:: 09757076 1 0 -autochthonal%5:00:00:native:01 01036383 1 0 -autochthonic%5:00:00:native:01 01036383 1 0 -autochthonous%3:00:00:: 00180359 1 0 -autochthonous%5:00:00:native:01 01036383 2 0 -autochthony%1:07:00:: 04800152 1 0 -autoclave%1:06:00:: 02758960 1 0 -autoclave%2:29:00:: 00062973 1 0 -autocoid%1:08:00:: 05414534 1 0 -autocracy%1:09:00:: 06214020 2 0 -autocracy%1:14:00:: 08361001 1 0 -autocrat%1:18:00:: 10735298 1 0 -autocratic%5:00:00:domineering:00 00787595 1 0 -autocratic%5:00:00:undemocratic:00 00717684 2 0 -autocratically%4:02:00:: 00203076 2 0 -autocratically%4:02:02:: 00311430 1 0 -autocue%1:06:00:: 04010779 1 0 -autodefensas_unidas_de_colombia%1:14:00:: 08047032 1 0 -autodidact%1:18:00:: 09825413 1 0 -autodidactic%3:01:00:: 03005593 1 0 -autoecious%3:00:00:: 00180655 1 0 -autoerotic%5:00:00:sexy:00 02131834 1 0 -autoeroticism%1:04:00:: 00855527 1 0 -autoerotism%1:04:00:: 00855527 1 0 -autofluorescence%1:19:00:: 11427736 1 3 -autofluorescent%5:00:00:light:06 00270732 1 0 -autofocus%1:06:00:: 02759257 1 0 -autogamic%3:00:00:: 00871494 1 0 -autogamous%3:00:00:: 00871494 1 0 -autogamy%1:11:00:: 07438655 1 0 -autogenesis%1:19:00:: 11420376 1 0 -autogenetic%3:01:00:: 02651816 1 0 -autogenic%3:00:00:: 00181030 1 0 -autogenic_therapy%1:04:00:: 00710550 1 0 -autogenic_training%1:04:00:: 00710550 1 0 -autogenics%1:04:00:: 00710550 1 0 -autogenous%3:00:00:: 00181030 1 0 -autogeny%1:19:00:: 11420376 1 0 -autogiro%1:06:00:: 02759387 1 0 -autograft%1:08:00:: 05583158 1 0 -autograph%1:10:00:: 06407094 1 0 -autograph%1:10:02:: 06404907 2 0 -autograph%2:32:00:: 00997133 1 0 -autograph_album%1:06:00:: 02759615 1 0 -autographed%5:00:00:signed:00 02161016 1 0 -autographic%3:01:00:: 02651921 1 0 -autogyro%1:06:00:: 02759387 1 0 -autoicous%5:00:00:monoecious:00 01543088 1 0 -autoimmune%3:01:00:: 02649399 1 0 -autoimmune_diabetes%1:26:00:: 14118423 1 0 -autoimmune_disease%1:26:00:: 14187378 1 0 -autoimmune_disorder%1:26:00:: 14187378 1 0 -autoimmunity%1:26:00:: 14527977 1 0 -autoinjector%1:06:00:: 02759700 1 0 -autolatry%1:04:00:: 01044761 1 0 -autoloader%1:06:00:: 02759963 1 1 -autoloading%5:00:00:automatic:00 00181904 1 0 -autologous%3:00:00:: 01220487 1 0 -autolysis%1:22:00:: 13435918 1 0 -autolytic%3:01:00:: 02652018 1 0 -automaker%1:14:00:: 08066763 1 0 -automat%1:06:00:: 02760099 2 0 -automat%1:06:01:: 02760199 1 0 -automate%2:30:00:: 00479932 1 1 -automated%5:00:00:automatic:00 00182086 1 0 -automated_teller%1:06:00:: 02977058 1 0 -automated_teller_machine%1:06:00:: 02977058 1 0 -automatic%1:06:01:: 02760855 1 0 -automatic%1:06:02:: 02760658 2 0 -automatic%3:00:00:: 00181476 1 7 -automatic%5:00:00:involuntary:02 02522669 3 1 -automatic%5:00:00:mechanical:00 01499999 2 5 -automatic_choke%1:06:00:: 02760298 1 0 -automatic_data_processing%1:22:00:: 13436063 1 0 -automatic_data_processing_system%1:06:00:: 03085915 1 0 -automatic_drive%1:06:00:: 02761034 1 0 -automatic_face_recognition%1:10:00:: 06644105 1 0 -automatic_firearm%1:06:00:: 02760429 1 0 -automatic_gun%1:06:00:: 02760429 1 0 -automatic_pilot%1:06:00:: 02762169 2 0 -automatic_pilot%1:09:00:: 05679305 1 0 -automatic_pistol%1:06:00:: 02760658 1 0 -automatic_rifle%1:06:00:: 02760855 1 0 -automatic_teller%1:06:00:: 02977058 1 0 -automatic_teller_machine%1:06:00:: 02977058 1 0 -automatic_transmission%1:06:00:: 02761034 1 0 -automatic_washer%1:06:00:: 04554684 1 0 -automatic_weapon%1:06:00:: 02760429 1 0 -automatically%4:02:00:: 00005567 1 17 -automatically%4:02:01:: 00114029 2 0 -automation%1:04:00:: 00102457 1 2 -automation%1:06:00:: 02761206 3 0 -automation%1:26:00:: 14574504 2 0 -automatise%2:30:00:: 00479932 2 0 -automatise%2:30:05:: 00480221 1 0 -automatism%1:04:00:: 00859490 1 0 -automatize%2:30:00:: 00479932 2 0 -automatize%2:30:05:: 00480221 1 0 -automaton%1:06:00:: 02761392 2 0 -automaton%1:18:01:: 09825519 1 0 -automatonlike%5:00:00:mechanical:00 01499999 1 0 -automeris%1:05:00:: 02303917 1 0 -automeris_io%1:05:00:: 02304036 1 0 -automobile%1:06:00:: 02958343 1 15 -automobile%2:38:00:: 01930738 1 0 -automobile_battery%1:06:00:: 02961225 1 0 -automobile_driver%1:18:00:: 10502576 1 0 -automobile_engine%1:06:00:: 02761557 1 0 -automobile_factory%1:06:00:: 02761696 1 0 -automobile_horn%1:06:00:: 02761834 1 0 -automobile_industry%1:14:00:: 08067077 1 1 -automobile_insurance%1:21:00:: 13345403 1 0 -automobile_loan%1:21:00:: 13400024 1 0 -automobile_mechanic%1:18:00:: 09825750 1 0 -automobile_race%1:11:00:: 07458892 1 0 -automobile_tire%1:06:00:: 02971167 1 0 -automobile_traffic%1:14:00:: 08426111 1 0 -automobile_trunk%1:06:00:: 03696065 1 0 -automobilist%1:18:00:: 10334101 1 0 -automotive%3:01:00:: 02926936 1 2 -automotive%5:00:00:moving:02 01562488 2 0 -automotive_engineer%1:18:00:: 09825939 1 0 -automotive_engineering%1:04:00:: 00950070 1 0 -automotive_technology%1:04:00:: 00950070 1 0 -automotive_vehicle%1:06:00:: 03791235 1 0 -automysophobia%1:26:00:: 14383163 1 0 -autonomic%5:00:00:involuntary:02 02522938 1 13 -autonomic_ganglion%1:08:00:: 05297163 1 0 -autonomic_nervous_system%1:08:00:: 05504532 1 0 -autonomic_plexus%1:08:00:: 05236709 1 0 -autonomous%5:00:00:free:00 01062393 1 0 -autonomous%5:00:01:independent:00 00728225 3 0 -autonomous%5:00:02:independent:00 00728431 2 0 -autonomy%1:26:01:: 13992514 1 1 -autonomy%1:26:02:: 14001031 2 0 -autophyte%1:20:00:: 13124654 1 0 -autophytic%3:01:00:: 02652590 1 0 -autophytic_plant%1:20:00:: 13124654 1 0 -autopilot%1:06:00:: 02762169 2 0 -autopilot%1:09:00:: 05679305 1 0 -autoplastic%3:01:00:: 02652124 1 0 -autoplasty%1:04:00:: 00667096 2 0 -autoplasty%1:08:00:: 05583158 1 0 -autopsy%1:04:00:: 00141396 1 1 -autopsy%2:39:00:: 02150039 1 0 -autoradiograph%1:06:00:: 02762371 1 0 -autoradiographic%3:01:00:: 02652261 1 0 -autoradiography%1:22:00:: 13436206 1 0 -autoregulation%1:22:00:: 13436503 1 0 -autosemantic%5:00:00:categorematic:00 02593124 1 0 -autosexing%1:04:00:: 00915347 1 0 -autosomal%3:01:00:: 02956502 1 0 -autosomal_dominant_disease%1:26:00:: 14162025 1 0 -autosomal_dominant_disorder%1:26:00:: 14162025 1 0 -autosomal_recessive_defect%1:26:00:: 14162275 1 0 -autosomal_recessive_disease%1:26:00:: 14162275 1 0 -autosome%1:08:00:: 05443966 1 0 -autostrada%1:06:00:: 02762508 1 0 -autosuggestion%1:04:00:: 00158805 1 0 -autotelic%3:01:00:: 02652372 1 0 -autotelism%1:09:00:: 05946089 1 0 -autotomic%3:01:00:: 02652490 1 0 -autotomise%2:35:00:: 01513990 1 0 -autotomize%2:35:00:: 01513990 1 0 -autotomy%1:04:00:: 00394242 1 0 -autotroph%1:20:00:: 13124654 1 0 -autotrophic%3:01:00:: 02652590 1 0 -autotrophic_organism%1:20:00:: 13124654 1 0 -autotype%1:06:00:: 03316274 2 0 -autotype%1:22:00:: 13436361 1 0 -autotypic%3:01:00:: 02653056 1 0 -autotypy%1:22:00:: 13436361 1 0 -autumn%1:28:00:: 15236859 1 7 -autumn-blooming%5:00:00:autumnal:00 01255530 1 0 -autumn-flowering%5:00:00:autumnal:00 01255530 1 0 -autumn_crocus%1:20:00:: 12455540 1 0 -autumn_pumpkin%1:20:00:: 12158443 1 0 -autumn_sneezeweed%1:20:00:: 11977512 1 0 -autumnal%3:00:00:: 01255296 1 0 -autumnal%5:00:00:mature:02 01491930 2 0 -autumnal_equinox%1:15:00:: 08521112 2 0 -autumnal_equinox%1:28:00:: 15223750 1 0 -auvergne%1:15:00:: 08940835 1 0 -auxesis%1:22:00:: 13436682 1 0 -auxetic%3:01:00:: 02653174 1 0 -auxiliary%1:18:00:: 09780249 1 2 -auxiliary%5:00:00:secondary:01 01854129 1 1 -auxiliary%5:00:00:supportive:00 02354897 2 0 -auxiliary_airfield%1:06:00:: 02762609 1 0 -auxiliary_boiler%1:06:00:: 02762725 1 0 -auxiliary_cell%1:14:00:: 08359581 1 0 -auxiliary_engine%1:06:00:: 02762909 1 0 -auxiliary_equipment%1:06:00:: 03842377 1 0 -auxiliary_operation%1:22:00:: 13436809 1 0 -auxiliary_pump%1:06:00:: 02763083 1 0 -auxiliary_research_submarine%1:06:00:: 02763198 1 0 -auxiliary_storage%1:06:00:: 02763306 1 0 -auxiliary_verb%1:10:00:: 06318513 1 0 -auxin%1:27:00:: 14745057 1 0 -auxinic%3:01:00:: 02653281 1 0 -av%1:28:00:: 15216563 1 0 -avadavat%1:05:00:: 01543936 1 0 -avahi%1:05:00:: 02500472 1 0 -avahi_laniger%1:05:00:: 02500596 1 0 -avail%1:07:00:: 05149832 1 2 -avail%2:34:00:: 01161561 1 3 -avail%2:34:04:: 01193569 3 0 -avail%2:41:00:: 02549048 2 2 -availability%1:07:00:: 04718999 1 3 -available%3:00:00:: 00183053 1 91 -available%5:00:00:disposable:02 00777650 3 0 -available%5:00:00:free:00 01062631 2 0 -availableness%1:07:00:: 04718999 1 0 -avalanche%1:11:00:: 07405137 1 0 -avalanche%1:11:01:: 07285036 2 0 -avalanche%2:38:00:: 01966706 1 0 -avalanche_lily%1:20:00:: 12451566 1 0 -avalokiteshvara%1:18:00:: 09532691 1 0 -avalokitesvara%1:18:00:: 09532691 1 0 -avant-garde%1:14:00:: 08465558 1 0 -avant-garde%5:00:00:original:00 01686906 1 1 -avaram%1:20:00:: 12499757 1 0 -avarice%1:04:00:: 00758525 1 1 -avarice%1:07:00:: 04945758 2 0 -avaricious%5:00:00:acquisitive:00 00029933 1 0 -avariciously%4:02:00:: 00276391 1 0 -avariciousness%1:07:00:: 04945758 1 0 -avaritia%1:04:00:: 00758525 1 0 -avascular%3:01:00:: 02874053 1 0 -avatar%1:18:00:: 09530238 2 0 -avatar%1:18:02:: 10418302 1 0 -ave_maria%1:10:00:: 06456515 1 0 -avellan%3:01:00:: 02653806 1 0 -avellane%3:01:00:: 02653806 1 0 -avena%1:20:00:: 12109719 1 0 -avena_barbata%1:20:00:: 12110352 1 0 -avena_fatua%1:20:00:: 12110236 1 0 -avena_sativa%1:20:00:: 12110085 1 0 -avene_sterilis%1:20:00:: 12110475 1 0 -avenge%2:33:00:: 01153486 1 1 -avenged%3:44:00:: 03147281 1 0 -avenger%1:18:00:: 09826074 1 0 -avens%1:20:00:: 12631331 1 0 -aventail%1:06:00:: 02941845 1 0 -aventurine%1:27:00:: 15064560 1 0 -avenue%1:04:00:: 00941604 1 1 -avenue%1:06:00:: 02763472 2 0 -aver%2:32:00:: 01011031 2 0 -aver%2:32:01:: 01016002 1 0 -average%1:09:00:: 06021761 1 13 -average%1:09:01:: 05856979 3 0 -average%1:24:00:: 13820655 2 0 -average%2:31:00:: 00639998 3 1 -average%2:41:00:: 02527294 2 2 -average%2:42:00:: 02645389 1 15 -average%5:00:00:common:01 00486290 2 6 -average%5:00:00:moderate:00 01531957 4 2 -average%5:00:00:ordinary:00 01673061 3 3 -average%5:00:01:normal:01 01594472 6 0 -average%5:00:02:normal:01 01594146 1 34 -average%5:00:03:normal:01 01594811 5 0 -average_cost%1:07:00:: 05145573 1 4 -average_out%2:31:00:: 00639998 1 1 -average_out%2:42:00:: 02645389 2 0 -averageness%1:07:00:: 04795061 2 0 -averageness%1:26:00:: 14501172 1 0 -averell_harriman%1:18:00:: 11030025 1 0 -averment%1:10:00:: 06729499 1 0 -averrhoa%1:20:00:: 12704191 1 0 -averrhoa_bilimbi%1:20:00:: 12704513 1 0 -averrhoa_carambola%1:20:00:: 12704343 1 0 -averroes%1:18:00:: 10829450 1 0 -averse%5:00:00:disinclined:00 01293542 1 0 -aversion%1:04:00:: 00204022 2 0 -aversion%1:12:00:: 07502669 1 1 -aversion_therapy%1:04:00:: 00701491 1 0 -aversive%3:01:00:: 02997632 1 0 -aversive_conditioning%1:09:00:: 05758907 1 0 -aversive_stimulus%1:09:00:: 05832113 1 0 -avert%2:38:00:: 02034511 2 1 -avert%2:41:00:: 02453321 1 5 -avertable%3:00:00:: 00343700 1 0 -avertible%3:00:00:: 00343700 1 0 -averting%1:04:00:: 01077738 1 0 -averting%1:04:01:: 00204022 2 0 -aves%1:05:00:: 01502262 1 0 -avesta%1:10:00:: 06430996 1 0 -avestan%1:10:00:: 06973941 1 0 -avestan%1:10:01:: 06352301 2 0 -avestan%3:01:00:: 02926519 1 0 -avian%3:01:00:: 02653924 1 0 -avianise%2:30:00:: 00124074 1 0 -avianize%2:30:00:: 00124074 1 0 -aviary%1:06:00:: 02763604 1 1 -aviate%2:38:00:: 01941093 1 0 -aviation%1:04:00:: 00300441 4 0 -aviation%1:09:00:: 05635188 3 0 -aviation%1:14:00:: 08433727 1 1 -aviation%1:14:01:: 08067218 2 0 -aviation_medicine%1:09:00:: 06046037 1 0 -aviator%1:18:00:: 09826204 1 0 -aviatress%1:18:00:: 09826605 1 0 -aviatrix%1:18:00:: 09826605 1 0 -avicenna%1:18:00:: 10829733 1 0 -avicennia%1:20:00:: 12915230 1 0 -avicennia_marina%1:20:00:: 12915568 1 0 -avicennia_officinalis%1:20:00:: 12915811 1 0 -avicenniaceae%1:20:00:: 12915400 1 0 -avid%5:00:00:desirous:00 00888477 1 0 -avid%5:00:00:enthusiastic:00 00886253 2 0 -avidity%1:12:01:: 07555184 1 0 -avidly%4:02:00:: 00267137 1 0 -avidness%1:12:00:: 07555184 1 0 -avifauna%1:14:00:: 07993643 1 0 -avifaunal%3:01:00:: 02654035 1 0 -avifaunistic%3:01:00:: 02654035 1 0 -avignon%1:15:00:: 08934313 1 0 -avionic%3:01:00:: 02654216 1 0 -avionics%1:09:00:: 06097231 1 0 -avirulent%3:00:00:: 00046014 1 0 -avitaminosis%1:26:00:: 14198576 1 0 -avitaminotic%3:01:00:: 02654314 1 0 -avo%1:23:00:: 13690549 1 0 -avocado%1:13:00:: 07764847 1 15 -avocado%1:20:00:: 11706761 2 0 -avocado%5:00:00:chromatic:00 00370160 1 0 -avocado_pear%1:13:00:: 07764847 1 0 -avocado_tree%1:20:00:: 11706761 1 0 -avocation%1:04:00:: 00432689 1 0 -avocational%3:01:00:: 02654442 1 0 -avocet%1:05:00:: 02036711 1 0 -avogadro%1:18:00:: 10830046 1 0 -avogadro's_hypothesis%1:09:00:: 05874941 1 0 -avogadro's_law%1:09:00:: 05874941 1 0 -avogadro's_number%1:23:00:: 13585819 1 0 -avogadro_number%1:23:00:: 13585819 1 0 -avoid%2:32:00:: 00811375 1 24 -avoid%2:34:00:: 01189823 4 1 -avoid%2:41:00:: 02478059 5 0 -avoid%2:41:01:: 02453321 2 22 -avoid%2:41:03:: 02463510 3 18 -avoidable%3:00:00:: 00343700 1 0 -avoidance%1:04:00:: 00203753 1 4 -avoirdupois%1:07:00:: 04999401 2 0 -avoirdupois%1:23:00:: 13715921 1 0 -avoirdupois_unit%1:23:00:: 13716084 1 0 -avoirdupois_weight%1:23:00:: 13715921 1 0 -avon%1:15:00:: 08881153 3 0 -avon%1:17:00:: 09211944 2 0 -avon%1:17:01:: 09212151 1 0 -avouch%2:32:00:: 00819923 1 0 -avouchment%1:10:00:: 06732350 1 0 -avow%2:32:00:: 01011031 1 0 -avow%2:32:01:: 00819923 2 0 -avowal%1:10:00:: 06732350 1 0 -avowed%5:00:00:declared:00 00688074 1 1 -avowedly%4:02:00:: 00276528 1 0 -avowedly%4:02:01:: 00184284 2 0 -avower%1:18:00:: 09826698 1 0 -avower%1:18:01:: 09814660 2 0 -avulse%2:38:00:: 02032117 1 0 -avulsion%1:04:00:: 00384658 2 0 -avulsion%1:11:00:: 07297376 1 0 -avuncular%3:01:00:: 02654548 2 0 -avuncular%3:01:01:: 02654652 1 0 -await%2:31:00:: 00720063 1 25 -awaited%5:00:00:expected:00 00929815 1 1 -awake%2:29:00:: 00018526 1 7 -awake%3:00:00:: 00186616 1 9 -awake%5:00:00:aware:00 00190653 2 0 -awaken%2:29:00:: 00018813 1 8 -awaken%2:29:01:: 00018526 2 8 -awaken%2:31:00:: 00736095 3 1 -awakened%3:00:00:: 02014387 1 2 -awakened%5:00:00:awake:00 00187049 2 0 -awakening%1:04:00:: 01259773 1 1 -award%1:04:00:: 00087663 1 26 -award%1:10:00:: 06696483 2 6 -award%1:21:00:: 13268146 3 5 -award%2:40:00:: 02261888 1 6 -award%2:40:01:: 02262278 2 2 -award-winning%3:01:00:: 02654752 1 0 -awarding%1:04:00:: 00087663 1 1 -aware%3:00:00:: 00190115 1 40 -aware%3:00:04:: 01977155 2 0 -awareness%1:09:00:: 05675905 1 10 -awareness%1:09:01:: 05677952 2 2 -awash%5:00:00:full:00 01083754 1 0 -away%3:00:00:: 01219938 2 0 -away%4:02:00:: 00232936 1 70 -away%4:02:01:: 00233295 2 21 -away%4:02:02:: 00233687 11 0 -away%4:02:03:: 00234052 3 13 -away%4:02:04:: 00234553 4 3 -away%4:02:05:: 00234747 6 2 -away%4:02:06:: 00234951 10 0 -away%4:02:07:: 00235070 9 0 -away%4:02:08:: 00235254 5 2 -away%4:02:09:: 00235438 7 1 -away%4:02:10:: 00235570 8 0 -away%5:00:00:absent:00 01847864 1 1 -away%5:00:00:inaccurate:00 00023655 3 0 -away_game%1:04:00:: 00456690 1 0 -awayness%1:26:00:: 13961273 1 0 -awe%1:12:00:: 07521039 2 0 -awe%1:12:02:: 07510184 1 4 -awe%2:37:00:: 01779644 1 1 -awe-inspiring%5:00:00:impressive:00 01282510 1 1 -aweary%5:00:00:tired:00 02432428 1 0 -awed%3:00:00:: 02014715 2 1 -awed%5:00:00:reverent:00 02012157 1 2 -aweigh%5:00:00:free:00 01062819 2 0 -aweigh%5:00:00:up:00 02490831 1 0 -aweless%5:00:00:irreverent:00 02013083 2 0 -aweless%5:00:00:unawed:00 02015134 1 0 -awesome%5:00:00:impressive:00 01282510 1 0 -awestricken%3:00:00:: 02014715 1 0 -awestruck%3:00:00:: 02014715 1 3 -awful%3:00:02:: 01587077 3 0 -awful%4:02:00:: 00054950 1 4 -awful%5:00:00:alarming:00 00193799 2 4 -awful%5:00:00:bad:00 01126291 1 10 -awful%5:00:00:extraordinary:00 01677200 5 0 -awful%5:00:00:impressive:00 01282510 6 0 -awful%5:00:00:reverent:00 02012157 4 0 -awfully%4:02:00:: 00054950 1 5 -awfully%4:02:01:: 00056340 2 0 -awfully%4:02:02:: 00055101 3 0 -awfulness%1:07:00:: 04782116 1 1 -awheel%5:00:00:moving:02 01562668 1 0 -awhile%4:02:00:: 00144405 1 1 -awing%5:00:00:impressive:00 01282510 1 0 -awkward%3:00:00:: 01140514 2 2 -awkward%5:00:00:difficult:00 00746047 5 0 -awkward%5:00:00:inconvenient:00 00605406 1 6 -awkward%5:00:00:infelicitous:00 01001180 4 0 -awkward%5:00:00:uncomfortable:01 00480439 6 0 -awkward%5:00:00:unwieldy:00 02564023 3 1 -awkwardly%4:02:00:: 00194737 1 3 -awkwardness%1:07:00:: 05004294 3 0 -awkwardness%1:07:01:: 05162807 2 0 -awkwardness%1:07:02:: 04711665 5 0 -awkwardness%1:07:03:: 04815624 4 0 -awkwardness%1:09:01:: 05648459 1 0 -awl%1:06:00:: 02763714 1 0 -awl-shaped%5:00:00:formed:00 02144913 1 0 -awless%5:00:00:irreverent:00 02013083 2 0 -awless%5:00:00:unawed:00 02015134 1 0 -awlwort%1:20:00:: 11898271 1 0 -awn%1:20:00:: 13090743 1 0 -awned%3:00:00:: 00216858 1 0 -awning%1:06:00:: 02763901 1 0 -awning_deck%1:06:00:: 03549732 1 0 -awninged%5:00:00:covered:00 01695041 1 0 -awnless%3:00:00:: 00217183 1 0 -awnless_bromegrass%1:20:00:: 12111043 1 0 -awny%3:00:00:: 00216858 1 0 -awol%1:18:00:: 09757836 1 0 -awol%5:00:00:absent:00 01848171 1 0 -awry%4:02:00:: 00271998 1 1 -awry%4:02:01:: 00272169 2 0 -awry%5:00:00:crooked:01 02312450 1 1 -awry%5:00:00:malfunctioning:00 01092371 2 0 -ax%1:06:00:: 02764044 1 2 -ax%2:30:00:: 00354317 2 0 -ax%2:35:00:: 01257953 1 0 -ax_handle%1:06:00:: 02764398 1 0 -ax_head%1:06:00:: 02764505 1 0 -axe%1:06:00:: 02764044 1 8 -axe%2:30:00:: 00354317 2 0 -axe%2:35:00:: 01257953 1 0 -axe_handle%1:06:00:: 02764398 1 0 -axe_head%1:06:00:: 02764505 1 0 -axenic%5:00:00:germfree:00 02116783 1 0 -axenic%5:00:00:pure:02 01906173 2 0 -axerophthol%1:27:00:: 15089803 1 0 -axial%3:01:00:: 02654894 1 1 -axial%3:01:02:: 02655015 2 0 -axial%5:00:00:lengthwise:00 01445063 3 0 -axial_motion%1:11:00:: 07441619 1 0 -axial_muscle%1:08:00:: 05587531 1 0 -axial_rotation%1:11:00:: 07441619 1 0 -axial_skeleton%1:08:00:: 05587288 1 0 -axially%4:02:00:: 00076820 1 1 -axil%1:20:00:: 13130423 1 0 -axile%3:01:00:: 02655015 1 0 -axile_placentation%1:20:00:: 11681393 1 0 -axilla%1:08:00:: 05549576 1 0 -axillary%3:01:01:: 02655180 2 0 -axillary%3:01:02:: 03133666 1 0 -axillary_artery%1:08:00:: 05338166 1 0 -axillary_cavity%1:08:00:: 05549576 1 0 -axillary_fossa%1:08:00:: 05549576 1 0 -axillary_node%1:08:00:: 05430300 1 0 -axillary_vein%1:08:00:: 05358345 1 0 -axiological%3:01:00:: 02655318 1 0 -axiology%1:09:00:: 06161606 1 0 -axiom%1:10:00:: 07152948 1 1 -axiom%1:10:01:: 06753550 2 0 -axiomatic%3:01:00:: 02653385 3 0 -axiomatic%3:01:02:: 02653651 2 0 -axiomatic%5:00:00:obvious:00 01618895 1 1 -axiomatical%3:01:00:: 02653385 1 0 -axiomatically%4:02:00:: 00121657 1 0 -axis%1:06:00:: 02764614 6 0 -axis%1:08:00:: 05588840 5 0 -axis%1:09:00:: 06008609 1 6 -axis%1:14:00:: 08171094 4 0 -axis%1:14:01:: 08171792 3 0 -axis%1:20:00:: 13128771 2 0 -axis_of_rotation%1:06:00:: 02764614 1 0 -axis_vertebra%1:08:00:: 05588840 1 0 -axle%1:06:00:: 02764779 1 1 -axle_bar%1:06:00:: 02764935 1 0 -axle_grease%1:27:00:: 14770146 1 0 -axletree%1:06:00:: 02765028 1 0 -axolemma%1:08:00:: 05286167 1 0 -axolotl%1:05:00:: 01632777 1 0 -axon%1:08:00:: 05468849 1 0 -axonal%3:01:00:: 02655431 1 0 -axone%1:08:00:: 05468849 1 0 -axseed%1:20:00:: 12519089 1 0 -ayah%1:18:00:: 09826821 1 0 -ayapana%1:20:00:: 11937692 1 0 -ayapana_triplinervis%1:20:00:: 11937692 1 0 -ayatollah%1:18:00:: 09826945 1 0 -ayatollah_khomeini%1:18:00:: 11104008 1 0 -ayatollah_ruholla_khomeini%1:18:00:: 11104008 1 0 -aye-aye%1:05:00:: 02498153 1 0 -ayin%1:10:00:: 06838329 1 0 -ayn_rand%1:18:00:: 11253630 1 0 -ayr%1:15:00:: 08892327 1 0 -ayrshire%1:05:00:: 02406432 1 0 -aythya%1:05:00:: 01850676 1 0 -aythya_affinis%1:05:00:: 01851731 1 0 -aythya_americana%1:05:00:: 01851207 1 0 -aythya_ferina%1:05:00:: 01851038 1 0 -aythya_marila%1:05:00:: 01851573 1 0 -aythya_valisineria%1:05:00:: 01850873 1 0 -ayurveda%1:10:00:: 06466030 1 0 -az%1:15:00:: 09057311 2 0 -az%1:25:00:: 13893502 1 0 -az_zarqa%1:15:00:: 08928083 1 0 -azactam%1:06:00:: 02765868 1 0 -azadirachta%1:20:00:: 12696322 1 0 -azadirachta_indica%1:20:00:: 12696492 1 0 -azadirachtin%1:27:00:: 14739271 1 0 -azalea%1:20:00:: 12245319 1 0 -azaleastrum%1:20:00:: 12245067 1 0 -azathioprine%1:06:00:: 02765247 1 0 -azedarach%1:20:00:: 12695975 1 0 -azederach%1:20:00:: 12695975 1 0 -azerbaijan%1:15:00:: 09018162 1 0 -azerbaijani%1:10:00:: 06927007 2 0 -azerbaijani%1:18:00:: 09735542 1 0 -azerbaijani%3:01:00:: 02655560 1 0 -azerbaijani_monetary_unit%1:23:00:: 13699612 1 0 -azerbaijani_republic%1:15:00:: 09018162 1 0 -azerbajdzhan%1:15:00:: 09018162 1 0 -azerbajdzhan_republic%1:15:00:: 09018162 1 0 -azeri%1:14:00:: 08483265 1 0 -azide%1:27:00:: 14770248 1 0 -azido%3:01:00:: 02655723 1 0 -azido_group%1:27:00:: 14621194 1 0 -azido_radical%1:27:00:: 14621194 1 0 -azimuth%1:25:00:: 13893502 1 1 -azimuthal%3:01:00:: 02655838 1 0 -azithromycin%1:06:00:: 02765656 1 0 -azo%3:01:00:: 02655943 1 0 -azo_dye%1:27:00:: 14770500 1 0 -azo_group%1:27:00:: 14621319 1 0 -azo_radical%1:27:00:: 14621319 1 0 -azoic%5:00:00:early:00 00814468 1 0 -azoimide%1:27:00:: 14612764 1 0 -azolla%1:20:00:: 12959371 1 0 -azolla_caroliniana%1:20:00:: 12959538 1 0 -azollaceae%1:20:00:: 12959226 1 0 -azonal%3:00:00:: 02590057 1 0 -azonic%5:00:00:azonal:00 02590168 1 0 -azores%1:15:00:: 08985345 1 0 -azotaemia%1:26:00:: 14210971 1 0 -azote%1:27:00:: 14647623 1 0 -azotemia%1:26:00:: 14210971 1 0 -azotemic%3:01:00:: 02656218 1 0 -azotic%3:01:00:: 03091996 1 0 -azoturia%1:26:00:: 14211212 1 0 -azt%1:06:00:: 02765429 1 0 -aztec%1:18:00:: 09648911 1 0 -aztec_lily%1:20:00:: 12422559 1 0 -aztec_marigold%1:20:00:: 12020736 1 0 -aztecan%1:10:00:: 06918734 1 0 -aztreonam%1:06:00:: 02765868 1 0 -azure%1:07:00:: 04969242 1 0 -azure%2:30:00:: 00284958 1 0 -azure%5:00:00:chromatic:00 00370267 1 0 -azure_aster%1:20:00:: 11935877 1 0 -azurite%1:27:00:: 14667855 1 0 -azygos%5:00:00:single:05 02214366 1 0 -azygos_vein%1:08:00:: 05358507 1 0 -azygous%5:00:00:single:05 02214366 1 0 -azygous_vein%1:08:00:: 05358507 1 0 -azymia%1:26:00:: 14110146 1 0 -b%1:05:00:: 01349948 1 1 -b%1:08:00:: 05400978 7 0 -b%1:10:00:: 06831284 6 0 -b%1:23:00:: 13614256 5 0 -b%1:23:03:: 13713521 4 0 -b%1:27:00:: 14631871 3 0 -b%1:27:01:: 15090742 2 0 -b-52%1:06:00:: 02766044 1 4 -b-complex_vitamin%1:27:00:: 15090742 1 0 -b-flat_clarinet%1:06:00:: 02834027 1 0 -b-girl%1:18:00:: 09852430 1 0 -b-horizon%1:15:00:: 08658612 1 0 -b-meson%1:17:00:: 09224828 1 0 -b-scan_ultrasonography%1:04:00:: 00902240 1 0 -b._b._king%1:18:00:: 11105298 1 0 -b._f._skinner%1:18:00:: 11304461 1 0 -b.c.%4:02:00:: 00002142 1 0 -b.c.e.%4:02:00:: 00002296 1 0 -b.o.%1:07:00:: 04980920 1 0 -b.t.u.%1:23:00:: 13727478 1 0 -b.th.u.%1:23:00:: 13726947 1 0 -b_battery%1:06:00:: 02813981 1 0 -b_cell%1:08:00:: 05451695 1 0 -b_complex%1:27:00:: 15090742 1 0 -b_horizon%1:15:00:: 08658612 1 0 -b_lymphocyte%1:08:00:: 05451695 1 0 -b_vitamin%1:27:00:: 15090742 1 1 -ba%1:10:00:: 06698640 2 0 -ba%1:27:00:: 14629998 1 0 -baa%1:11:00:: 07376168 1 0 -baa%2:32:00:: 01048330 1 0 -baa-lamb%1:05:00:: 02412700 1 0 -baader-meinhof_gang%1:14:00:: 08017974 1 0 -baader_meinhof_gang%1:14:00:: 08017974 1 0 -baal%1:18:00:: 09516700 1 0 -baal_merodach%1:18:00:: 09519288 1 0 -baas%1:18:00:: 09827166 1 0 -baba%1:13:00:: 07629797 1 0 -baba_au_rhum%1:13:00:: 07629898 1 0 -babacu_oil%1:20:00:: 12592971 1 0 -babar%1:18:00:: 09589748 1 0 -babassu%1:20:00:: 12592544 1 0 -babassu_nut%1:20:00:: 12592839 1 0 -babassu_oil%1:20:00:: 12592971 1 0 -babassu_palm%1:20:00:: 12592544 1 0 -babbitt%1:27:00:: 14772007 1 0 -babbitt%2:35:00:: 01272349 1 0 -babbitt_metal%1:27:00:: 14772007 1 0 -babbitting%1:04:00:: 00827535 1 0 -babble%1:10:00:: 06610143 1 0 -babble%2:32:00:: 01037650 2 2 -babble%2:32:01:: 00937208 4 0 -babble%2:32:02:: 01065630 1 3 -babble%2:39:00:: 02187922 3 0 -babble_out%2:32:00:: 00937208 1 0 -babbler%1:05:00:: 01566645 2 0 -babbler%1:18:00:: 09911570 1 0 -babbling%1:10:00:: 06610143 1 0 -babe%1:18:00:: 09827683 1 6 -babe%1:18:01:: 09827363 2 0 -babe_didrikson%1:18:00:: 11404666 1 0 -babe_ruth%1:18:00:: 11276100 1 0 -babe_zaharias%1:18:00:: 11404666 1 0 -babel%1:04:00:: 00379993 2 0 -babel%1:06:00:: 04460634 1 0 -babelike%5:00:00:dependent:00 00726189 1 1 -babesiidae%1:05:00:: 01425336 1 0 -babies'-breath%1:20:00:: 11810358 1 0 -babies'_slippers%1:20:00:: 12545635 1 0 -babinski%1:04:00:: 00117267 1 0 -babinski_reflex%1:04:00:: 00117267 1 0 -babinski_sign%1:04:00:: 00117267 1 0 -babiroussa%1:05:00:: 02396796 1 0 -babirusa%1:05:00:: 02396796 1 0 -babirussa%1:05:00:: 02396796 1 0 -babka%1:13:00:: 07630667 1 0 -baboo%1:18:00:: 09827246 1 0 -baboon%1:05:00:: 02486410 1 0 -baboonish%3:01:00:: 02656464 1 0 -babu%1:18:00:: 09827246 1 0 -babushka%1:06:00:: 02766168 1 0 -baby%1:04:00:: 00796767 7 0 -baby%1:05:00:: 01322221 6 0 -baby%1:18:00:: 09827683 1 16 -baby%1:18:01:: 09827519 2 1 -baby%1:18:02:: 09827363 5 0 -baby%1:18:03:: 09918554 3 0 -baby%1:18:04:: 09828216 4 0 -baby%2:41:00:: 02570267 1 0 -baby's_bed%1:06:00:: 02766320 1 0 -baby's_breath%1:20:00:: 11810358 1 0 -baby's_dummy%1:06:00:: 03075768 1 0 -baby's_room%1:06:00:: 03836062 1 0 -baby's_tears%1:20:00:: 12393723 1 0 -baby-boom_generation%1:14:00:: 08371838 1 0 -baby-faced%5:00:00:faced:00 00235239 1 0 -baby-like%4:02:00:: 00510393 1 0 -baby-sit%2:41:00:: 02456270 2 0 -baby-sit%2:41:01:: 02602898 1 0 -baby-sitter%1:18:00:: 09829305 1 0 -baby-walker%1:06:00:: 04545305 1 0 -baby-wise%4:02:00:: 00510393 1 1 -baby_bed%1:06:00:: 02766320 1 0 -baby_bird%1:05:00:: 01504344 1 0 -baby_blue-eyes%1:20:00:: 12836337 1 0 -baby_boom%1:14:00:: 08371838 1 0 -baby_boomer%1:18:00:: 09828403 1 0 -baby_buggy%1:06:00:: 02766534 1 0 -baby_buster%1:18:00:: 09828600 1 0 -baby_carriage%1:06:00:: 02766534 1 0 -baby_doc%1:18:00:: 10946750 1 0 -baby_doctor%1:18:00:: 09828760 1 0 -baby_farmer%1:18:00:: 09828988 1 0 -baby_grand%1:06:00:: 02766792 1 0 -baby_grand_piano%1:06:00:: 02766792 1 0 -baby_minder%1:18:00:: 09829122 1 0 -baby_oil%1:06:00:: 02766961 1 0 -baby_powder%1:06:00:: 02767038 1 0 -baby_rose%1:20:00:: 12622072 1 0 -baby_shoe%1:06:00:: 02767147 1 0 -baby_sitting%1:04:00:: 00655727 1 0 -baby_talk%1:10:00:: 07155426 2 0 -baby_talk%1:10:01:: 07155531 1 0 -baby_tears%1:20:00:: 12393723 1 0 -baby_tooth%1:08:00:: 05306894 1 0 -babyhood%1:26:00:: 14427239 2 0 -babyhood%1:28:00:: 15145586 1 0 -babyish%5:00:00:immature:02 01492907 1 0 -babylon%1:15:00:: 08916832 1 0 -babylonia%1:15:00:: 08917503 1 0 -babylonian%1:10:01:: 06352446 2 0 -babylonian%1:18:00:: 09640220 1 1 -babylonian%3:01:00:: 02656539 1 0 -babylonian_captivity%1:04:00:: 00208141 1 0 -babylonian_weeping_willow%1:20:00:: 12726670 1 0 -babyminder%1:18:00:: 09829122 1 0 -babyrousa%1:05:00:: 02396667 1 0 -babyrousa_babyrussa%1:05:00:: 02396796 1 0 -babysitter%1:18:00:: 09829305 1 0 -babysitting%1:04:00:: 00655727 1 0 -babytalk%1:10:00:: 07155426 2 0 -babytalk%1:10:01:: 07155531 1 0 -bacca%1:20:00:: 13137951 1 0 -baccalaureate%1:10:00:: 06698252 2 0 -baccalaureate%1:10:01:: 07244154 1 0 -baccarat%1:04:00:: 00489933 1 0 -baccate%3:01:00:: 02656699 1 0 -baccate%5:00:00:fruitful:00 01080717 2 0 -bacchanal%1:04:00:: 00511212 3 0 -bacchanal%1:18:00:: 10526300 1 0 -bacchanal%1:18:01:: 09829798 2 0 -bacchanal%5:00:00:intoxicated:00 00797706 1 0 -bacchanalia%1:04:00:: 00511676 1 0 -bacchanalia%1:04:01:: 00511212 2 0 -bacchanalian%5:00:00:intoxicated:00 00797706 1 0 -bacchant%1:18:00:: 09829506 3 0 -bacchant%1:18:01:: 09829798 2 0 -bacchant%1:18:02:: 10526300 1 0 -bacchante%1:18:00:: 09829650 1 0 -bacchantic%3:01:00:: 02656801 1 0 -baccharis%1:20:00:: 11937965 1 0 -baccharis_halimifolia%1:20:00:: 11938261 1 0 -baccharis_pilularis%1:20:00:: 11938732 1 0 -baccharis_viminea%1:20:00:: 11938556 1 0 -bacchic%5:00:00:intoxicated:00 00797706 1 0 -bacchus%1:18:00:: 09559404 1 0 -bacciferous%5:00:00:fruitful:00 01080717 1 0 -baccivorous%5:00:00:herbivorous:00 00314390 1 0 -baccy%1:06:00:: 04442831 1 0 -bach%1:10:00:: 07277915 2 0 -bach%1:18:00:: 10830229 1 0 -bach%2:42:00:: 02616118 1 0 -bachelor%1:18:00:: 09829923 1 2 -bachelor%1:18:01:: 10238749 2 0 -bachelor%2:42:00:: 02616118 1 0 -bachelor's_button%1:20:01:: 11947802 1 0 -bachelor's_button%1:20:02:: 11826198 2 0 -bachelor's_degree%1:10:00:: 06698252 1 0 -bachelor-at-arms%1:18:00:: 10238749 1 0 -bachelor_girl%1:18:00:: 09830080 1 0 -bachelor_of_arts%1:10:00:: 06698640 1 0 -bachelor_of_arts_in_library_science%1:10:00:: 06698775 1 0 -bachelor_of_arts_in_nursing%1:10:00:: 06698902 1 0 -bachelor_of_divinity%1:10:00:: 06699012 1 0 -bachelor_of_laws%1:10:00:: 06704898 1 0 -bachelor_of_literature%1:10:00:: 06699115 1 0 -bachelor_of_medicine%1:10:00:: 06699225 1 0 -bachelor_of_music%1:10:00:: 06699366 1 0 -bachelor_of_naval_science%1:10:00:: 06699465 1 0 -bachelor_of_science%1:10:00:: 06699579 1 1 -bachelor_of_science_in_architecture%1:10:00:: 06699685 1 0 -bachelor_of_science_in_engineering%1:10:00:: 06699811 1 0 -bachelor_of_theology%1:10:00:: 06699926 1 0 -bachelor_party%1:14:00:: 08255660 1 0 -bachelorette%1:18:00:: 09830080 1 0 -bachelorhood%1:26:00:: 13967715 2 0 -bachelorhood%1:28:00:: 15153353 1 0 -bacillaceae%1:05:00:: 01356459 1 0 -bacillar%3:01:00:: 02656930 1 0 -bacillar%5:00:00:formed:00 02144988 2 0 -bacillariophyceae%1:05:00:: 01400891 1 0 -bacillary%3:01:00:: 02656930 1 0 -bacillary%5:00:00:formed:00 02144988 2 0 -bacillary_dysentery%1:26:00:: 14184608 1 0 -bacillary_white_diarrhea%1:26:00:: 14275077 1 0 -bacillary_white_diarrhoea%1:26:00:: 14275077 1 0 -bacilliform%5:00:00:formed:00 02144988 1 0 -bacillus%1:05:00:: 01349948 1 0 -bacillus_anthracis%1:05:00:: 01350226 1 0 -bacillus_globigii%1:05:00:: 01350485 1 0 -bacillus_subtilis%1:05:00:: 01350485 1 0 -bacitracin%1:06:00:: 02767240 1 0 -back%1:04:00:: 00725775 9 0 -back%1:06:00:: 04059701 2 12 -back%1:06:01:: 02767433 8 0 -back%1:06:02:: 02767665 7 0 -back%1:06:03:: 02840619 6 0 -back%1:08:00:: 05558717 1 53 -back%1:08:01:: 05588174 5 0 -back%1:15:02:: 08625846 3 4 -back%1:18:00:: 09830194 4 0 -back%2:30:00:: 00223109 9 0 -back%2:30:01:: 00185857 10 0 -back%2:30:03:: 00560628 8 0 -back%2:33:00:: 01139104 7 0 -back%2:38:00:: 01997119 2 6 -back%2:38:01:: 01997512 4 4 -back%2:40:00:: 02217695 5 2 -back%2:41:00:: 02453889 1 7 -back%2:41:01:: 02556817 3 4 -back%2:42:00:: 02693965 6 0 -back%3:00:00:: 00197576 1 15 -back%4:02:00:: 00074407 2 36 -back%4:02:01:: 00074201 4 15 -back%4:02:03:: 00074964 6 1 -back%4:02:04:: 00075161 1 91 -back%4:02:05:: 00075269 3 24 -back%4:02:06:: 00075367 5 14 -back%5:00:00:noncurrent:00 00668816 3 0 -back%5:00:00:posterior:00 00131692 2 1 -back-blast%1:11:00:: 07408519 1 0 -back-channel%3:01:00:: 02657100 1 0 -back-formation%1:10:00:: 06288350 1 0 -back-geared%5:00:00:geared:00 01100394 1 0 -back-number%1:18:00:: 10161521 1 0 -back-to-back%5:00:00:succeeding:00 00127543 1 1 -back_and_forth%4:02:00:: 00076193 1 8 -back_away%2:32:00:: 00799383 1 1 -back_brace%1:06:00:: 02768655 1 1 -back_breaker%1:06:00:: 02675657 1 0 -back_burner%1:26:00:: 13950143 1 0 -back_channel%1:10:00:: 06260817 1 0 -back_circle%1:04:00:: 00434396 1 1 -back_country%1:15:00:: 08502672 1 1 -back_door%1:04:00:: 00281291 1 1 -back_door%1:06:00:: 02768744 3 0 -back_door%1:10:00:: 06354481 2 0 -back_down%2:38:00:: 01997680 1 2 -back_down%2:41:00:: 02380980 2 0 -back_end%1:15:00:: 08629508 1 0 -back_entrance%1:06:00:: 02768744 1 0 -back_exercise%1:04:00:: 00629803 1 0 -back_judge%1:18:00:: 09830553 1 0 -back_matter%1:10:00:: 06390805 1 0 -back_of_beyond%1:15:00:: 08499680 1 0 -back_off%2:38:00:: 01997680 1 6 -back_off%2:41:00:: 02380980 2 0 -back_out%2:32:00:: 00799383 2 0 -back_out%2:38:00:: 01997376 1 2 -back_pack%1:06:00:: 02769748 1 0 -back_porch%1:06:00:: 02770211 1 2 -back_room%1:06:00:: 02770293 1 0 -back_saw%1:06:00:: 02770585 1 0 -back_street%1:06:00:: 02697759 1 0 -back_talk%1:10:00:: 06721949 1 0 -back_tooth%1:08:00:: 05306476 1 1 -back_up%2:30:00:: 00223109 3 1 -back_up%2:35:00:: 01478603 5 0 -back_up%2:36:00:: 01694620 4 0 -back_up%2:38:00:: 01997680 2 3 -back_up%2:41:00:: 02556126 1 3 -backache%1:26:00:: 14325335 1 0 -backband%1:06:00:: 02767815 1 0 -backbeat%1:10:00:: 07086861 1 0 -backbench%1:06:00:: 02767956 1 0 -backbencher%1:18:00:: 09830400 1 0 -backbend%1:04:00:: 00434231 1 2 -backbite%2:32:00:: 00907657 1 0 -backbiter%1:18:00:: 09999135 1 0 -backblast%1:11:00:: 07408519 1 0 -backboard%1:06:00:: 02768114 2 0 -backboard%1:06:01:: 02768226 1 0 -backbone%1:06:00:: 02768433 5 0 -backbone%1:06:01:: 04277980 4 0 -backbone%1:07:00:: 05032351 2 1 -backbone%1:08:00:: 05588174 3 0 -backbone%1:09:00:: 05694232 1 1 -backbreaking%5:00:00:effortful:00 00836544 1 0 -backchat%1:10:00:: 06777794 1 0 -backcloth%1:06:00:: 02768864 1 0 -backcross%2:35:00:: 01429825 1 0 -backdate%2:41:00:: 02561846 1 0 -backdoor%1:04:00:: 00281291 3 0 -backdoor%1:06:00:: 02768744 2 0 -backdoor%1:10:00:: 06354481 1 0 -backdown%1:10:00:: 07206302 1 0 -backdrop%1:06:00:: 02768864 1 1 -backed%3:00:00:: 00200026 1 0 -backed%5:00:00:coated:00 01699410 2 0 -backer%1:18:00:: 09793717 1 2 -backfield%1:14:00:: 08429744 1 0 -backfire%1:04:00:: 00073032 4 0 -backfire%1:11:00:: 07408621 2 0 -backfire%1:11:01:: 07408965 1 0 -backfire%1:11:03:: 07303153 3 0 -backfire%2:30:00:: 00379023 3 0 -backfire%2:39:00:: 02173663 2 0 -backfire%2:41:00:: 02378950 1 0 -backflow%1:11:00:: 07406350 1 0 -backflowing%1:11:00:: 07406350 1 0 -backgammon%1:04:00:: 00502822 1 0 -backgammon_board%1:06:00:: 02768973 1 0 -background%1:06:00:: 02768864 8 0 -background%1:06:01:: 02769075 7 0 -background%1:07:00:: 04921417 1 8 -background%1:09:00:: 05933834 2 5 -background%1:09:01:: 05823517 3 5 -background%1:11:00:: 07430480 4 2 -background%1:11:01:: 07285191 5 2 -background%1:26:00:: 14513259 6 1 -background%2:30:00:: 00513492 1 0 -background_knowledge%1:09:00:: 05823517 1 0 -background_level%1:07:00:: 05098620 1 0 -background_noise%1:11:00:: 07430770 1 0 -background_processing%1:22:00:: 13436992 1 0 -background_radiation%1:11:00:: 07431119 1 0 -background_signal%1:11:00:: 07430480 1 0 -backgrounder%1:10:00:: 07144571 1 0 -backgrounding%1:22:00:: 13436992 1 0 -backhand%1:04:00:: 00566690 1 0 -backhand%2:35:00:: 01404664 1 0 -backhand%3:00:00:: 01033840 1 0 -backhand%5:00:00:written:00 02284892 2 0 -backhand_drive%1:04:00:: 00568057 1 0 -backhand_shot%1:04:00:: 00566690 1 0 -backhand_stroke%1:04:00:: 00566690 1 0 -backhanded%3:00:00:: 01033840 1 0 -backhanded%5:00:00:indirect:02 00767133 2 0 -backhander%1:04:00:: 00133160 1 0 -backhoe%1:06:00:: 02769290 1 0 -backing%1:04:00:: 01213886 1 2 -backing%1:06:00:: 02769460 2 1 -backing%1:21:00:: 13365698 3 0 -backlash%1:04:00:: 00203020 2 0 -backlash%1:11:00:: 07350192 1 0 -backlash%2:41:00:: 02378950 1 0 -backless%3:00:00:: 00201130 1 0 -backlighting%1:06:00:: 02769669 1 0 -backlog%1:14:00:: 07953603 1 1 -backlog%1:21:00:: 13368052 3 0 -backlog%1:27:00:: 15100945 2 0 -backlog%2:30:00:: 00159236 1 0 -backmost%5:00:00:back:00 00197773 1 0 -backpack%1:06:00:: 02769748 1 0 -backpack%2:38:00:: 01926031 1 0 -backpacker%1:18:00:: 09830629 1 0 -backpacking%1:04:00:: 00319312 1 0 -backpacking_tent%1:06:00:: 02769963 1 0 -backpedal%2:31:00:: 00688960 3 0 -backpedal%2:38:00:: 01935953 1 0 -backpedal%2:38:01:: 01929041 2 0 -backplate%1:06:00:: 02770078 1 0 -backrest%1:06:00:: 02767433 1 0 -backroom%1:06:01:: 02770441 1 0 -backroom_boy%1:18:00:: 09830759 1 0 -backsaw%1:06:00:: 02770585 1 0 -backscatter%2:30:00:: 00330751 1 0 -backscratcher%1:06:00:: 02770721 2 0 -backscratcher%1:18:00:: 09830926 1 0 -backseat%1:06:00:: 02770830 2 0 -backseat%1:26:00:: 13951629 1 0 -backseat_driver%1:18:00:: 09831057 1 0 -backsheesh%1:21:00:: 13298701 1 0 -backside%1:08:00:: 05559256 2 0 -backside%1:15:00:: 08629508 1 0 -backslap%2:41:00:: 02374572 1 0 -backslapper%1:18:00:: 09831166 1 0 -backslide%2:30:00:: 00204585 1 0 -backslider%1:18:00:: 10511239 1 0 -backsliding%1:04:00:: 00068333 1 0 -backspace%1:06:00:: 02771004 1 0 -backspace%2:32:00:: 01005373 1 0 -backspace_character%1:10:00:: 06820837 1 0 -backspace_key%1:06:00:: 02771004 1 0 -backspacer%1:06:00:: 02771004 1 0 -backspin%1:11:00:: 07442439 1 0 -backstage%1:06:00:: 04592962 1 2 -backstage%4:02:00:: 00276729 2 0 -backstage%4:02:01:: 00276840 1 0 -backstage%5:00:00:private:00 01860328 1 0 -backstair%5:00:00:covert:00 01706111 1 0 -backstairs%1:06:00:: 02771166 1 0 -backstairs%5:00:00:covert:00 01706111 1 0 -backstay%1:06:00:: 02771286 1 0 -backstitch%1:06:00:: 02771383 1 0 -backstitch%2:35:00:: 01330567 1 2 -backstop%1:04:00:: 00177638 3 0 -backstop%1:06:00:: 02771547 2 0 -backstop%1:18:00:: 09901143 1 0 -backstop%2:33:00:: 01076130 1 0 -backstroke%1:04:00:: 00571283 1 0 -backstroke%2:38:00:: 01962375 1 0 -backstroker%1:18:00:: 09831303 1 0 -backswept%5:00:00:backward:01 00201722 1 0 -backswimmer%1:05:00:: 02241008 1 0 -backsword%1:06:00:: 02771750 2 0 -backsword%1:06:01:: 04223170 1 0 -backtalk%1:10:00:: 06721949 1 0 -backtrack%2:38:00:: 02004528 1 0 -backup%1:04:00:: 01213886 5 0 -backup%1:06:00:: 02771840 4 0 -backup%1:10:00:: 07031752 3 0 -backup%1:18:00:: 10648237 2 0 -backup%1:22:00:: 13437181 1 0 -backup_file%1:10:00:: 06509513 1 0 -backup_man%1:18:00:: 10648237 1 0 -backup_system%1:06:00:: 02772101 1 0 -backward%3:00:01:: 00201354 1 2 -backward%3:00:02:: 00204077 2 0 -backward%4:02:01:: 00075966 2 2 -backward%4:02:02:: 00074201 3 0 -backward%4:02:03:: 00074407 1 4 -backward%5:00:00:retarded:00 01840673 3 0 -backward%5:00:00:undynamic:00 00810636 4 0 -backward_and_forward%4:02:00:: 00076193 1 1 -backwardness%1:09:00:: 05646218 1 0 -backwards%4:02:01:: 00075966 2 0 -backwards%4:02:03:: 00074407 1 1 -backwash%1:11:00:: 07344368 3 0 -backwash%1:19:00:: 11423197 1 0 -backwash%1:19:01:: 11411610 2 0 -backwater%1:15:00:: 08502507 2 0 -backwater%1:17:00:: 09212360 1 0 -backwoods%1:15:00:: 08502672 1 3 -backwoodsman%1:18:00:: 10113072 1 0 -backyard%1:06:00:: 02772197 1 4 -bacon%1:13:00:: 07670433 1 4 -bacon%1:18:00:: 10830456 3 0 -bacon%1:18:01:: 10830731 2 0 -bacon-lettuce-tomato_sandwich%1:13:00:: 07698401 1 0 -bacon_and_eggs%1:13:00:: 07862244 2 0 -bacon_and_eggs%1:20:00:: 12545635 1 0 -bacon_rind%1:13:00:: 07670902 1 0 -bacon_strip%1:13:00:: 07670657 1 0 -bacteremia%1:26:00:: 14110219 1 0 -bacteremic%3:01:00:: 02657221 1 0 -bacteria%1:05:00:: 01348530 1 3 -bacteria_bed%1:06:00:: 02772282 1 0 -bacteria_family%1:05:00:: 01352059 1 0 -bacteria_genus%1:05:00:: 01352574 1 0 -bacteria_order%1:05:00:: 01351959 1 0 -bacteria_species%1:05:00:: 01353411 1 0 -bacteriacide%1:27:00:: 14772185 1 0 -bacteriaemia%1:26:00:: 14110219 1 0 -bacterial%3:01:00:: 02833544 1 14 -bacterial_plaque%1:08:00:: 05244755 1 0 -bacterial_toxin%1:27:00:: 15034939 1 0 -bacterially%4:02:00:: 00129908 1 0 -bactericidal%5:00:00:antiseptic:00 02116054 1 0 -bactericide%1:06:00:: 02716205 2 0 -bactericide%1:27:00:: 14772185 1 0 -bacteriemia%1:26:00:: 14110219 1 0 -bacteriochlorophyll%1:05:00:: 01399065 1 0 -bacterioid%3:01:00:: 02657741 1 0 -bacterioidal%3:01:00:: 02657741 1 0 -bacteriologic%3:01:00:: 02914740 1 0 -bacteriological%3:01:00:: 02914740 1 0 -bacteriological_warfare%1:04:00:: 00996056 1 0 -bacteriologist%1:18:00:: 09831411 1 0 -bacteriology%1:09:00:: 06046692 1 0 -bacteriolysis%1:22:00:: 13437379 1 0 -bacteriolytic%3:01:00:: 02657334 1 0 -bacteriophage%1:05:00:: 01334862 1 0 -bacteriophagic%3:01:00:: 02657454 1 0 -bacteriophagous%3:01:00:: 02657454 1 0 -bacteriostasis%1:22:00:: 13437495 1 0 -bacteriostat%1:27:00:: 14779082 1 0 -bacteriostatic%3:01:00:: 02657619 1 0 -bacterise%2:30:00:: 00138360 1 0 -bacterium%1:05:00:: 01348530 1 0 -bacterize%2:30:00:: 00138360 1 0 -bacteroid%1:05:00:: 01349735 1 0 -bacteroid%3:01:00:: 02657741 1 0 -bacteroidaceae%1:05:00:: 01364587 1 0 -bacteroidal%3:01:00:: 02657741 1 0 -bacteroides%1:05:00:: 01364866 1 0 -bactrian_camel%1:05:00:: 02437482 1 0 -baculiform%5:00:00:formed:00 02144988 1 0 -bad%1:07:00:: 05144079 1 2 -bad%3:00:00:: 01125429 1 51 -bad%3:00:09:: 01150475 5 0 -bad%4:02:03:: 00016240 2 1 -bad%4:02:04:: 00016458 1 1 -bad%5:00:00:counterfeit:00 01117226 13 0 -bad%5:00:00:evil:00 01131803 12 0 -bad%5:00:00:harmful:00 01160775 11 0 -bad%5:00:00:inferior:02 02345713 7 0 -bad%5:00:00:intense:00 01510444 2 3 -bad%5:00:00:invalid:00 02500050 6 0 -bad%5:00:00:malfunctioning:00 01092572 14 0 -bad%5:00:00:nonstandard:03 02298642 8 0 -bad%5:00:00:stale:00 01069283 4 1 -bad%5:00:00:uncomfortable:00 00478311 3 3 -bad%5:00:00:unhealthy:00 01174222 10 0 -bad%5:00:02:unsound:00 02274537 9 0 -bad-mannered%5:00:00:impolite:00 00641944 1 0 -bad-tempered%5:00:00:ill-natured:00 01136248 1 0 -bad_block%1:23:00:: 13626789 1 0 -bad_blood%1:12:00:: 07548100 1 0 -bad_check%1:21:00:: 13382121 1 0 -bad_cheque%1:21:00:: 13382121 1 0 -bad_debt%1:21:00:: 13398768 1 0 -bad_egg%1:18:00:: 09831731 1 0 -bad_fairy%1:18:00:: 09542170 1 0 -bad_guy%1:18:00:: 09831856 1 1 -bad_hat%1:18:00:: 10731244 1 1 -bad_lands%1:15:00:: 08502797 1 0 -bad_luck%1:11:00:: 07304852 3 1 -bad_luck%1:19:00:: 11427842 2 1 -bad_luck%1:26:00:: 14475405 1 2 -bad_manners%1:07:00:: 04914881 1 0 -bad_person%1:18:00:: 09831962 1 0 -bad_temper%1:12:00:: 07518132 1 0 -bad_weather%1:26:00:: 14523090 1 2 -badaga%1:10:00:: 06979853 2 0 -badaga%1:18:00:: 09674307 1 0 -baddeleyite%1:27:00:: 14667949 1 0 -baddie%1:18:00:: 10753779 1 0 -bade%1:10:00:: 06983225 1 0 -badge%1:09:00:: 05851131 2 2 -badge%1:10:00:: 06882561 1 3 -badge%2:35:00:: 01589869 1 0 -badger%1:05:00:: 02447366 2 0 -badger%1:18:00:: 09746536 1 0 -badger%2:32:00:: 00767530 2 0 -badger%2:37:00:: 01803380 1 2 -badger_dog%1:05:00:: 02089232 1 0 -badger_skunk%1:05:00:: 02446645 1 0 -badger_state%1:15:00:: 09157163 1 0 -badgerer%1:18:00:: 10167565 1 0 -badgering%1:04:00:: 00425278 1 0 -badinage%1:10:00:: 06777961 1 0 -badlands%1:15:00:: 08502797 2 0 -badlands%1:17:00:: 09212572 1 0 -badlands_national_park%1:15:00:: 08602456 1 0 -badly%4:02:00:: 00011516 2 4 -badly%4:02:02:: 00015953 1 7 -badly%4:02:03:: 00016240 6 0 -badly%4:02:04:: 00016458 5 0 -badly%4:02:05:: 00016678 4 0 -badly%4:02:06:: 00016950 3 0 -badly%4:02:07:: 00013236 9 0 -badly%4:02:08:: 00012286 10 0 -badly%4:02:10:: 00014014 8 0 -badly%4:02:12:: 00014738 7 0 -badminton%1:04:00:: 00480508 1 0 -badminton_court%1:06:00:: 02772435 1 0 -badminton_equipment%1:06:00:: 02772554 1 0 -badminton_racket%1:06:00:: 02772700 1 0 -badminton_racquet%1:06:00:: 02772700 1 0 -badmouth%2:32:00:: 00848169 1 0 -badness%1:07:00:: 05144079 1 8 -badness%1:07:01:: 05036715 2 0 -badness%1:07:02:: 04909563 3 0 -baeda%1:18:00:: 10840769 1 0 -baedeker%1:10:00:: 06423233 2 0 -baedeker%1:18:00:: 10831003 1 0 -baffin_bay%1:17:00:: 09212690 1 0 -baffin_island%1:15:00:: 08819683 1 1 -baffle%1:06:00:: 02772868 1 0 -baffle%2:30:00:: 00234988 3 0 -baffle%2:31:00:: 00622384 1 1 -baffle%2:41:00:: 02558172 2 0 -baffle_board%1:06:00:: 02772868 1 0 -baffled%1:14:00:: 07944242 1 1 -baffled%5:00:00:perplexed:00 01766133 1 0 -bafflement%1:09:00:: 05685030 1 0 -baffling%5:00:00:difficult:00 00746451 1 1 -bag%1:04:00:: 00432881 9 0 -bag%1:05:00:: 02370360 8 0 -bag%1:06:00:: 02773037 1 8 -bag%1:06:01:: 02773838 6 1 -bag%1:06:02:: 02774152 4 2 -bag%1:06:03:: 02797881 3 2 -bag%1:18:00:: 09832321 7 0 -bag%1:23:00:: 13764639 5 1 -bag%1:23:01:: 13754778 2 2 -bag%2:35:00:: 01485839 5 0 -bag%2:35:01:: 01479874 1 1 -bag%2:40:01:: 02292432 4 0 -bag%2:42:00:: 02714360 3 0 -bag%2:42:01:: 02717362 2 0 -bag-shaped%5:00:00:formed:00 02145135 1 0 -bag_lady%1:18:00:: 09832633 1 0 -bag_of_tricks%1:09:00:: 05616955 1 1 -bagascosis%1:26:00:: 14260774 1 0 -bagasse%1:27:00:: 14772317 1 0 -bagassosis%1:26:00:: 14260774 1 0 -bagatelle%1:04:00:: 00501479 3 0 -bagatelle%1:06:00:: 02774502 2 0 -bagatelle%1:10:00:: 07042498 1 0 -bagdad%1:15:00:: 08914193 1 0 -bagel%1:13:00:: 07693725 1 0 -bagful%1:23:00:: 13764639 1 0 -baggage%1:06:00:: 02774630 1 1 -baggage%1:06:01:: 02774921 3 0 -baggage%1:18:00:: 09832456 2 0 -baggage_car%1:06:00:: 02775039 1 0 -baggage_claim%1:06:00:: 02775178 1 0 -baggageman%1:18:00:: 09832538 1 0 -bagger%1:06:00:: 02775359 2 0 -bagger%1:18:00:: 10390427 1 0 -bagging%1:06:00:: 04123567 1 0 -baggy%5:00:00:loose:01 01446991 1 1 -baghdad%1:15:00:: 08914193 1 0 -bagman%1:18:00:: 09832762 2 0 -bagman%1:18:01:: 10726786 1 0 -bagnio%1:06:00:: 04581595 1 0 -bagnio%1:06:01:: 02806875 2 0 -bagpipe%1:06:00:: 02775483 1 1 -bagpiper%1:18:00:: 10435041 1 0 -baguet%1:13:00:: 07687381 1 0 -baguette%1:13:00:: 07687381 1 0 -bahai%1:18:00:: 09832873 1 0 -bahai%3:01:00:: 02657966 1 0 -bahaism%1:09:00:: 06244552 1 0 -bahama_grass%1:20:00:: 12115748 1 0 -bahama_islands%1:15:00:: 08847268 1 0 -bahamas%1:15:00:: 08847268 1 0 -bahamian%1:18:00:: 09691729 1 0 -bahamian%3:01:00:: 03045992 1 0 -bahamian_dollar%1:23:00:: 13672077 1 0 -bahasa%1:10:00:: 06939198 1 0 -bahasa_indonesia%1:10:00:: 06939198 1 0 -bahasa_kebangsaan%1:10:00:: 06939051 1 0 -bahasa_malaysia%1:10:00:: 06939051 1 0 -bahasa_melayu%1:10:00:: 06939051 1 0 -bahia_blanca%1:15:00:: 08712698 1 0 -bahia_coquilla%1:20:00:: 12585137 1 0 -bahia_grass%1:20:00:: 12128306 1 0 -bahia_piassava%1:20:00:: 12585137 1 0 -bahrain%1:15:00:: 08848094 2 0 -bahrain%1:15:01:: 08848421 1 0 -bahrain_dinar%1:23:00:: 13668864 1 0 -bahrain_island%1:15:00:: 08848421 1 0 -bahraini%1:18:00:: 09691858 1 0 -bahraini%3:01:00:: 03046184 1 0 -bahrainian_monetary_unit%1:23:00:: 13668751 1 0 -bahrein%1:15:00:: 08848094 2 0 -bahrein%1:15:01:: 08848421 1 0 -bahrein_island%1:15:00:: 08848421 1 0 -bahreini%1:18:00:: 09691858 1 0 -baht%1:23:00:: 13663820 1 0 -bai%1:10:00:: 06931605 1 0 -baic%1:10:00:: 06931605 1 0 -baikal%1:17:00:: 09242767 1 0 -bail%1:09:00:: 05903445 2 0 -bail%1:21:00:: 13350976 1 0 -bail%2:30:01:: 00177011 5 0 -bail%2:30:02:: 00177136 4 0 -bail%2:32:00:: 00890403 3 0 -bail%2:40:00:: 02293732 2 0 -bail%2:41:00:: 02421749 1 0 -bail_bond%1:21:00:: 13350976 1 0 -bail_out%2:30:00:: 00449426 2 0 -bail_out%2:41:00:: 02494259 1 0 -bailable%5:00:00:eligible:00 00852101 2 0 -bailable%5:00:00:permissive:02 01763683 1 0 -bailee%1:18:00:: 09832978 1 0 -bailey%1:06:00:: 02775689 4 0 -bailey%1:06:01:: 02775813 3 0 -bailey%1:18:00:: 10831136 2 0 -bailey%1:18:01:: 10831363 1 0 -bailey_bridge%1:06:00:: 02775897 1 0 -bailiff%1:18:00:: 09833111 1 0 -bailiffship%1:04:00:: 00589318 1 0 -bailiwick%1:09:00:: 05996646 2 0 -bailiwick%1:15:00:: 08550664 1 0 -bailment%1:04:00:: 01108971 1 0 -bailor%1:18:00:: 09833275 1 0 -bain-marie%1:06:00:: 02776007 1 0 -baiomys%1:05:00:: 02337480 1 0 -baiomys_taylori%1:05:00:: 02337598 1 0 -bairava%1:18:00:: 09528919 1 0 -bairdiella%1:05:00:: 02595217 1 0 -bairdiella_chrysoura%1:05:00:: 02595339 1 0 -bairiki%1:15:00:: 08840964 1 0 -bairn%1:18:00:: 09833441 1 0 -baisa%1:23:00:: 13697262 1 0 -baisakh%1:28:00:: 15220027 1 0 -bait%1:06:00:: 02776205 2 0 -bait%1:09:00:: 05695232 1 1 -bait%2:32:00:: 00850501 1 1 -bait%2:33:00:: 01114911 3 0 -bait%2:41:00:: 02577877 2 0 -bait_and_switch%1:04:00:: 00091977 1 0 -bait_casting%1:04:00:: 00454855 1 0 -baiting%1:04:00:: 00425182 1 0 -baiza%1:23:00:: 13697262 1 0 -baize%1:06:00:: 02776505 1 0 -baja_california%1:17:00:: 09343761 1 0 -bake%2:30:00:: 00319886 1 6 -bake%2:30:02:: 00544136 3 1 -bake%2:36:00:: 01663749 2 1 -bake%2:42:00:: 02755565 4 0 -bakeapple%1:20:00:: 12657294 1 0 -baked%5:00:00:cooked:00 00616532 2 1 -baked%5:00:00:dry:01 02551946 1 1 -baked-apple_berry%1:20:00:: 12657294 1 0 -baked_alaska%1:13:00:: 07610620 1 0 -baked_egg%1:13:00:: 07842605 1 0 -baked_goods%1:13:00:: 07622061 1 0 -baked_potato%1:13:00:: 07710952 1 0 -bakehouse%1:06:00:: 02776631 1 0 -bakelite%1:27:00:: 14596216 1 0 -baker%1:18:00:: 09833536 2 0 -baker%1:18:01:: 09833651 1 0 -baker's_dozen%1:23:00:: 13747199 1 0 -baker's_eczema%1:26:00:: 14225215 1 0 -baker's_yeast%1:20:00:: 13025854 1 0 -bakersfield%1:15:00:: 09062320 1 0 -bakery%1:06:00:: 02776631 1 0 -bakeshop%1:06:00:: 02776631 1 0 -baking%1:04:00:: 00246341 2 0 -baking%1:04:01:: 00715843 1 0 -baking%5:00:00:hot:01 01247975 1 0 -baking-powder_biscuit%1:13:00:: 07694403 1 0 -baking_chocolate%1:13:00:: 07602279 1 0 -baking_hot%5:00:00:hot:01 01247975 1 0 -baking_powder%1:27:00:: 14772461 1 0 -baking_soda%1:27:00:: 14775995 1 0 -baking_tray%1:06:00:: 03101796 1 0 -bakke_decision%1:04:00:: 01191364 1 0 -baklava%1:13:00:: 07627790 1 0 -baksheesh%1:21:00:: 13298701 1 0 -bakshis%1:21:00:: 13298701 1 0 -bakshish%1:21:00:: 13298701 1 0 -baku%1:15:00:: 09018426 1 0 -bakunin%1:18:00:: 10831483 1 0 -balaclava%1:06:00:: 02776825 1 0 -balaclava_helmet%1:06:00:: 02776825 1 0 -balaena%1:05:00:: 02063846 1 0 -balaena_mysticetus%1:05:00:: 02064000 1 0 -balaeniceps%1:05:00:: 02005238 1 0 -balaeniceps_rex%1:05:00:: 02005399 1 0 -balaenicipitidae%1:05:00:: 02005102 1 0 -balaenidae%1:05:00:: 02063516 1 0 -balaenoptera%1:05:00:: 02064608 1 0 -balaenoptera_acutorostrata%1:05:00:: 02065407 1 0 -balaenoptera_borealis%1:05:00:: 02065263 1 0 -balaenoptera_musculus%1:05:00:: 02064816 1 0 -balaenoptera_physalus%1:05:00:: 02065026 1 0 -balaenopteridae%1:05:00:: 02064154 1 0 -balagan%1:26:00:: 13976527 1 0 -balalaika%1:06:00:: 02776978 1 0 -balance%1:06:00:: 02777100 12 0 -balance%1:06:01:: 03118539 10 0 -balance%1:06:02:: 02777402 11 0 -balance%1:07:00:: 05076827 3 1 -balance%1:07:02:: 05064827 9 0 -balance%1:15:00:: 08687150 8 0 -balance%1:18:00:: 09753065 7 0 -balance%1:21:00:: 13408980 2 3 -balance%1:21:01:: 13409160 6 0 -balance%1:24:00:: 13810818 5 0 -balance%1:25:00:: 13897996 4 0 -balance%1:26:00:: 14002279 1 28 -balance%2:35:00:: 01602318 3 2 -balance%2:40:00:: 02264967 2 3 -balance%2:42:00:: 02673134 1 6 -balance%2:42:01:: 02743020 4 1 -balance-of-payments_problem%1:26:00:: 14411079 1 0 -balance_beam%1:06:00:: 02777292 1 0 -balance_of_international_payments%1:21:00:: 13410458 1 1 -balance_of_payments%1:21:00:: 13410458 1 1 -balance_of_power%1:26:00:: 14002813 1 2 -balance_of_trade%1:21:00:: 13409363 1 0 -balance_sheet%1:21:00:: 13403964 1 1 -balance_wheel%1:06:00:: 02777402 1 0 -balanced%3:00:00:: 00893441 1 10 -balanced_budget%1:21:00:: 13421702 1 0 -balanced_diet%1:13:00:: 07561848 1 0 -balancer%1:05:00:: 02152212 2 0 -balancer%1:18:00:: 09833751 1 0 -balanchine%1:18:00:: 10831656 1 0 -balancing%1:04:00:: 00185104 1 0 -balanidae%1:05:00:: 01998467 1 0 -balanitis%1:26:00:: 14260898 1 0 -balanoposthitis%1:26:00:: 14260991 1 0 -balanus%1:05:00:: 01998599 1 0 -balanus_balanoides%1:05:00:: 01998741 1 0 -balarama%1:18:00:: 09531409 1 0 -balas%1:27:00:: 15051392 1 0 -balas_ruby%1:27:00:: 15051392 1 0 -balata%1:20:00:: 12774299 2 0 -balata%1:20:02:: 12774496 1 0 -balata_tree%1:20:00:: 12774299 1 0 -balaton%1:17:00:: 09212935 1 0 -balboa%1:18:00:: 10831860 2 0 -balboa%1:23:00:: 13664153 1 0 -balbriggan%1:06:00:: 02777638 1 0 -balconied%3:00:00:: 00206003 1 0 -balcony%1:06:01:: 02777734 2 0 -balcony%1:06:02:: 02777927 1 0 -bald%2:30:00:: 00126143 1 0 -bald%5:00:00:bare:00 01698610 3 0 -bald%5:00:00:hairless:00 00210848 2 1 -bald%5:00:00:overt:00 01705088 1 1 -bald-faced%5:00:00:faced:00 00235326 1 0 -bald-faced%5:00:00:unashamed:00 00155144 2 0 -bald-faced_hornet%1:05:00:: 02213663 1 0 -bald-headed%5:00:00:hairless:00 00210848 1 0 -bald-pated%5:00:00:hairless:00 00210848 1 0 -bald_cypress%1:20:00:: 11641963 2 0 -bald_cypress%1:20:02:: 11642243 1 0 -bald_eagle%1:05:00:: 01614925 1 0 -baldachin%1:06:00:: 02778131 1 0 -balder%1:18:00:: 09579491 1 0 -balderdash%1:10:00:: 06608143 1 0 -baldhead%1:18:00:: 09833896 1 0 -balding%5:00:00:hairless:00 00211026 1 1 -baldly%4:02:00:: 00277209 1 0 -baldness%1:26:00:: 14457041 1 0 -baldpate%1:05:00:: 01848840 2 0 -baldpate%1:18:00:: 09833896 1 0 -baldr%1:18:00:: 09579491 1 0 -baldric%1:06:00:: 02778294 1 0 -baldrick%1:06:00:: 02778294 1 0 -baldwin%1:13:00:: 07739923 3 0 -baldwin%1:18:00:: 10832085 2 0 -baldwin%1:18:01:: 10832251 1 0 -baldy%1:18:00:: 09833896 1 0 -bale%1:06:00:: 02778456 1 1 -bale%1:15:00:: 09032483 2 0 -bale%2:35:00:: 01386200 1 0 -bale_out%2:30:00:: 00449426 1 0 -balearic_islands%1:15:00:: 09024668 1 0 -baleen%1:27:00:: 14758252 1 0 -baleen_whale%1:05:00:: 02063224 1 0 -balefire%1:11:00:: 07303335 1 0 -baleful%5:00:00:alarming:00 00194357 2 0 -baleful%5:00:00:maleficent:00 00224366 1 1 -balefully%4:02:00:: 00277329 1 0 -balefulness%1:07:00:: 04846533 1 0 -balenciaga%1:18:00:: 10832415 1 0 -balfour%1:18:00:: 10832568 1 0 -bali%1:15:00:: 08908509 1 1 -balibago%1:20:00:: 12180168 1 0 -balinese%1:10:00:: 06939656 1 1 -baling_wire%1:06:00:: 02778588 1 0 -balistes%1:05:00:: 02653359 1 0 -balistes_vetula%1:05:00:: 02653497 1 0 -balistidae%1:05:00:: 02652979 1 0 -balk%1:04:00:: 00107279 4 0 -balk%1:06:00:: 04045644 3 0 -balk%1:09:00:: 05689249 2 0 -balk%1:15:00:: 08516080 1 0 -balk%2:41:00:: 02583545 1 3 -balkan%1:18:00:: 09709332 1 0 -balkan_country%1:15:00:: 08698126 1 0 -balkan_mountain_range%1:17:00:: 09213076 1 0 -balkan_mountains%1:17:00:: 09213076 1 0 -balkan_nation%1:15:00:: 08698126 1 0 -balkan_peninsula%1:15:00:: 08713772 1 0 -balkan_state%1:15:00:: 08698126 1 0 -balkan_wars%1:04:00:: 01302935 1 0 -balkanise%2:41:00:: 02469711 1 0 -balkanize%2:41:00:: 02469711 1 2 -balkans%1:15:00:: 08698038 3 0 -balkans%1:15:01:: 08713772 2 0 -balkans%1:17:00:: 09213076 1 0 -balker%1:18:00:: 09833997 1 0 -balkiness%1:07:00:: 04908721 1 1 -balking%5:00:00:intractable:00 02452379 1 1 -balkline%1:15:00:: 08516260 1 0 -balky%5:00:00:intractable:00 02452379 1 0 -ball%1:04:00:: 00107400 12 0 -ball%1:04:01:: 00474568 11 0 -ball%1:06:01:: 02778669 1 35 -ball%1:06:02:: 02779435 6 1 -ball%1:06:03:: 03802228 2 5 -ball%1:08:00:: 05576194 10 0 -ball%1:08:01:: 05524615 5 1 -ball%1:11:00:: 07448885 9 0 -ball%1:14:00:: 08253268 4 2 -ball%1:14:01:: 07961016 8 0 -ball%1:18:00:: 10832731 7 0 -ball%1:25:00:: 13899404 3 3 -ball%2:35:00:: 01523270 1 1 -ball-and-socket_joint%1:06:00:: 02779719 2 0 -ball-and-socket_joint%1:08:00:: 05595531 1 0 -ball-breaker%1:04:00:: 00720166 2 0 -ball-breaker%1:18:00:: 09834258 1 0 -ball-buster%1:04:00:: 00720166 2 0 -ball-buster%1:18:00:: 09834258 1 0 -ball-hawking%5:00:00:skilled:00 02226756 1 1 -ball-peen_hammer%1:06:00:: 02783035 1 0 -ball-shaped%5:00:00:round:00 02041229 1 0 -ball_and_chain%1:06:00:: 02779609 1 0 -ball_bearing%1:06:00:: 02780315 1 0 -ball_boy%1:18:00:: 09834159 1 0 -ball_carrier%1:18:00:: 09834378 1 0 -ball_cartridge%1:06:00:: 02780445 1 0 -ball_club%1:14:00:: 08079613 1 3 -ball_cock%1:06:00:: 02780588 1 0 -ball_fern%1:20:00:: 13188767 1 0 -ball_field%1:06:00:: 02780916 1 1 -ball_game%1:04:00:: 00471437 1 1 -ball_gown%1:06:00:: 02781121 1 0 -ball_hawk%1:18:00:: 09835230 1 0 -ball_hawking%1:04:00:: 00557865 1 0 -ball_nettle%1:20:00:: 12893993 1 0 -ball_nightshade%1:20:00:: 12893993 1 0 -ball_of_fire%1:18:00:: 10135709 2 0 -ball_of_fire%1:18:01:: 10462429 1 0 -ball_over%2:37:00:: 01809064 1 0 -ball_up%2:41:00:: 02527651 1 0 -ball_valve%1:06:00:: 02783459 1 0 -ballad%1:10:00:: 06378298 2 2 -ballad%1:10:01:: 07049713 1 3 -ballad_maker%1:18:00:: 10624540 1 0 -ballade%1:10:00:: 06378427 1 0 -balladeer%1:18:00:: 09980090 1 0 -ballast%1:06:00:: 02779845 1 1 -ballast%1:06:01:: 02779971 5 0 -ballast%1:06:02:: 02780121 4 0 -ballast%1:07:00:: 04691992 3 0 -ballast%1:27:00:: 14699209 2 0 -ballast%2:30:00:: 00271403 1 0 -ballast_resistor%1:06:00:: 02780121 1 1 -ballcock%1:06:00:: 02780588 1 0 -balldress%1:06:00:: 02780704 1 0 -ballerina%1:18:00:: 09834592 1 1 -ballet%1:04:00:: 00528667 1 4 -ballet%1:10:00:: 07054336 2 1 -ballet_company%1:14:00:: 08187707 1 1 -ballet_dancer%1:18:00:: 09834699 1 1 -ballet_master%1:18:00:: 09834885 1 0 -ballet_mistress%1:18:00:: 09835017 1 0 -ballet_position%1:07:00:: 05080382 1 0 -ballet_skirt%1:06:00:: 02780815 1 0 -balletic%3:01:00:: 02658043 1 0 -balletomane%1:18:00:: 09835153 1 1 -balletomania%1:09:00:: 05670615 1 0 -ballgame%1:04:00:: 00471437 2 0 -ballgame%1:26:00:: 13932739 1 0 -ballista%1:06:00:: 02981911 1 0 -ballistic%3:01:00:: 02658188 1 0 -ballistic_capsule%1:06:00:: 04264914 1 0 -ballistic_fingerprinting%1:10:00:: 06423994 1 0 -ballistic_galvanometer%1:06:00:: 02781213 1 0 -ballistic_identification%1:10:00:: 06423994 1 0 -ballistic_missile%1:06:00:: 02781338 1 4 -ballistic_missile_defense_organization%1:14:00:: 08395991 1 0 -ballistic_pendulum%1:06:00:: 02781517 1 0 -ballistic_trajectory%1:19:00:: 11481487 1 0 -ballistics%1:09:00:: 06114246 2 0 -ballistics%1:19:00:: 11481487 1 0 -ballistite%1:27:00:: 15016503 1 0 -ballistocardiogram%1:10:00:: 07003672 1 0 -ballistocardiograph%1:06:00:: 02781764 1 0 -ballock%1:08:00:: 05524615 1 0 -balloon%1:06:00:: 02782093 1 3 -balloon%1:06:01:: 02782329 2 1 -balloon%2:30:00:: 00256117 2 0 -balloon%2:38:00:: 01948659 1 0 -balloon_bomb%1:06:00:: 02782432 1 0 -balloon_flower%1:20:00:: 12887293 1 0 -balloon_sail%1:06:00:: 02782602 1 0 -balloon_seat%1:06:00:: 02826683 1 0 -balloon_vine%1:20:00:: 12743009 1 0 -balloonfish%1:05:00:: 02656032 1 0 -ballooning%1:04:00:: 00303221 1 0 -balloonist%1:18:00:: 09835348 1 0 -ballot%1:04:00:: 00183505 2 1 -ballot%1:10:00:: 06470922 1 3 -ballot%2:41:00:: 02463141 1 0 -ballot_box%1:06:00:: 02782681 1 0 -ballota%1:20:00:: 12841686 1 0 -ballota_nigra%1:20:00:: 12841872 1 0 -balloting%1:04:00:: 00183505 1 0 -ballottement%1:04:00:: 00144182 1 0 -ballpark%1:06:00:: 02782778 1 1 -ballpark%1:07:00:: 05126066 2 0 -ballpen%1:06:00:: 02783161 1 0 -ballplayer%1:18:00:: 09835506 1 8 -ballpoint%1:06:00:: 02783161 1 0 -ballpoint_pen%1:06:00:: 02783161 1 0 -ballroom%1:06:00:: 02783324 1 3 -ballroom_dance%1:04:00:: 00534849 1 0 -ballroom_dancing%1:04:00:: 00534849 1 0 -ballroom_music%1:10:00:: 07060697 1 0 -balls-up%1:04:00:: 00075618 1 0 -ballup%1:04:00:: 00075618 1 0 -bally%5:00:00:unmitigated:00 01520655 1 0 -ballyhoo%1:10:00:: 07248507 1 1 -ballyhoo%2:32:00:: 00976365 1 0 -ballyhoo_artist%1:18:00:: 10579835 1 0 -ballyrag%2:37:00:: 01781520 1 0 -balm%1:06:00:: 03845550 2 0 -balm%1:27:01:: 14896923 1 0 -balm_of_gilead%1:20:01:: 11621950 1 1 -balm_of_gilead%1:20:02:: 12692521 3 0 -balm_of_gilead%1:27:00:: 14897083 2 0 -balmily%4:02:00:: 00303930 1 0 -balminess%1:26:00:: 14522570 1 0 -balmoral%1:06:00:: 02783567 2 0 -balmoral%1:06:01:: 02783708 1 0 -balmoral_castle%1:15:00:: 08892428 1 0 -balmy%5:00:00:clement:02 00438332 2 0 -balmy%5:00:00:insane:00 02074929 1 0 -balochi%1:10:00:: 06974687 1 0 -baloney%1:10:00:: 06611147 1 0 -balsa%1:20:00:: 12191587 2 0 -balsa%1:20:02:: 12191813 1 0 -balsa_raft%1:06:00:: 02783900 1 0 -balsa_wood%1:20:00:: 12191813 1 0 -balsam%1:06:00:: 02783790 3 0 -balsam%1:20:00:: 11552686 1 1 -balsam%1:27:00:: 14896714 2 0 -balsam-scented%5:00:00:odorous:00 01056001 1 0 -balsam_apple%1:20:01:: 12167436 1 0 -balsam_capivi%1:27:00:: 14897620 1 0 -balsam_family%1:20:00:: 12683950 1 0 -balsam_fir%1:20:00:: 11621950 1 0 -balsam_herb%1:20:00:: 12021499 1 0 -balsam_of_peru%1:20:00:: 12551877 1 0 -balsam_of_tolu%1:20:00:: 12551669 1 0 -balsam_pear%1:20:00:: 12167602 1 0 -balsam_poplar%1:20:00:: 12731835 1 0 -balsam_willow%1:20:00:: 12729950 1 0 -balsam_woolly_aphid%1:05:00:: 02254901 1 0 -balsamic%3:01:00:: 02658412 1 0 -balsaminaceae%1:20:00:: 12683950 1 0 -balsamorhiza%1:20:00:: 11938977 1 0 -balsamroot%1:20:00:: 11939180 1 0 -balsamy%3:01:00:: 02658412 1 0 -balthasar%1:18:00:: 10832908 1 0 -balthazar%1:18:00:: 10832908 1 0 -baltic%1:10:00:: 06945679 2 0 -baltic%1:17:00:: 09213254 1 0 -baltic%3:01:00:: 02962551 2 0 -baltic%3:01:01:: 02962659 1 0 -baltic-finnic%1:10:00:: 06957524 1 0 -baltic_language%1:10:00:: 06945679 1 0 -baltic_republic%1:15:00:: 09012101 1 0 -baltic_sea%1:17:00:: 09213254 1 0 -baltic_state%1:15:00:: 09012101 1 0 -baltimore%1:15:00:: 09094381 1 8 -baltimore_bird%1:05:00:: 01572489 1 0 -baltimore_oriole%1:05:00:: 01572489 1 0 -balto-slavic%1:10:00:: 06943558 1 0 -balto-slavic_language%1:10:00:: 06943558 1 0 -balto-slavonic%1:10:00:: 06943558 1 0 -baluchi%1:10:00:: 06974687 1 0 -baluster%1:06:00:: 02783994 1 0 -balusters%1:06:00:: 02788148 1 0 -balustrade%1:06:00:: 02788148 1 3 -balzac%1:18:00:: 10833111 1 1 -balzacian%3:01:00:: 03028863 1 0 -bam%1:11:00:: 07376257 2 0 -bam%1:15:00:: 08911726 1 0 -bamako%1:15:00:: 08965958 1 0 -bambino%1:18:00:: 10714465 1 0 -bamboo%1:20:00:: 12147226 2 0 -bamboo%1:20:02:: 12147539 1 0 -bamboo_curtain%1:09:00:: 05692094 1 0 -bamboo_fern%1:20:00:: 13209808 1 0 -bamboo_palm%1:20:01:: 12595699 2 0 -bamboo_palm%1:20:02:: 12596148 1 0 -bamboo_shoot%1:13:00:: 07719330 1 0 -bamboozle%2:32:00:: 00839194 1 0 -bambusa%1:20:00:: 12147699 1 0 -bambusa_vulgaris%1:20:00:: 12147835 1 0 -bambuseae%1:20:00:: 12147031 1 0 -ban%1:10:00:: 06542047 1 1 -ban%1:10:01:: 07255401 4 0 -ban%1:10:02:: 06698902 5 0 -ban%1:23:00:: 13685578 3 0 -ban%1:23:01:: 13702315 2 0 -ban%2:32:00:: 00796392 2 2 -ban%2:41:00:: 02493666 1 2 -ban%2:41:01:: 02504017 4 0 -ban%2:41:02:: 02504280 3 0 -banal%5:00:01:unoriginal:00 01688757 1 0 -banality%1:10:00:: 07154046 1 0 -banana%1:13:00:: 07753592 2 1 -banana%1:20:00:: 12352287 1 1 -banana_boat%1:06:00:: 02784124 1 0 -banana_bread%1:13:00:: 07684938 1 0 -banana_family%1:20:00:: 12351975 1 0 -banana_oil%1:27:00:: 14772594 1 0 -banana_passion_fruit%1:20:00:: 12384569 1 0 -banana_peel%1:13:00:: 07738570 1 0 -banana_quit%1:05:00:: 01539272 1 0 -banana_republic%1:15:00:: 08503004 1 0 -banana_skin%1:13:00:: 07738570 1 0 -banana_split%1:13:00:: 07616748 1 0 -banana_tree%1:20:00:: 12352287 1 0 -banausic%5:00:00:ordinary:00 01673434 1 0 -band%1:06:00:: 02784218 7 1 -band%1:06:01:: 02784732 4 2 -band%1:06:02:: 02784998 13 0 -band%1:06:03:: 04092609 9 0 -band%1:06:04:: 02785191 12 0 -band%1:06:05:: 02785365 11 0 -band%1:06:06:: 02785570 10 0 -band%1:07:00:: 04680465 3 2 -band%1:08:00:: 05267211 8 0 -band%1:10:00:: 06260518 6 1 -band%1:14:00:: 08249038 2 8 -band%1:14:01:: 08240169 1 12 -band%1:14:02:: 08249960 5 1 -band%2:35:00:: 01304342 1 1 -band%2:35:10:: 01297401 2 0 -band-tail_pigeon%1:05:00:: 01812866 1 0 -band-tailed_pigeon%1:05:00:: 01812866 1 0 -band_aid%1:04:00:: 00268457 2 0 -band_aid%1:06:00:: 02786058 1 0 -band_of_partisans%1:14:00:: 08017257 1 0 -band_oneself%2:41:00:: 02430078 1 0 -band_saw%1:06:00:: 02786837 1 0 -band_together%2:41:00:: 02470685 1 1 -bandage%1:06:00:: 02785648 1 6 -bandage%2:29:00:: 00083124 2 0 -bandage%2:35:03:: 01303547 1 0 -bandaged%5:00:00:treated:02 01955494 1 5 -bandaging%1:04:00:: 00696882 1 0 -bandana%1:06:00:: 02786198 1 0 -bandanna%1:06:00:: 02786198 1 0 -bandbox%1:06:00:: 02786331 1 0 -bandeau%1:06:00:: 02892767 1 0 -banded%3:00:00:: 00222969 1 0 -banded%5:00:00:belted:00 00223375 3 0 -banded%5:00:00:patterned:00 01787009 2 0 -banded_adder%1:05:00:: 01751215 1 0 -banded_anteater%1:05:00:: 01885498 1 0 -banded_gecko%1:05:00:: 01675722 1 0 -banded_krait%1:05:00:: 01751215 1 0 -banded_palm_civet%1:05:00:: 02137302 1 0 -banded_purple%1:05:00:: 02276902 1 0 -banded_rattlesnake%1:05:00:: 01755740 1 0 -banded_rudderfish%1:05:00:: 02579091 1 0 -banded_sand_snake%1:05:00:: 01738731 1 0 -banded_stilt%1:05:00:: 02036228 1 0 -banded_water_snake%1:05:00:: 01737472 1 0 -bandelet%1:06:00:: 02713835 1 0 -bandelette%1:06:00:: 02713835 1 0 -banderilla%1:06:00:: 02786463 1 0 -banderillero%1:18:00:: 09836343 1 0 -bandicoot%1:05:00:: 01876326 1 0 -bandicoot_rat%1:05:00:: 02334201 1 0 -banding%1:06:00:: 02784732 2 0 -banding%1:07:00:: 04680465 1 0 -bandit%1:18:00:: 09837088 1 3 -banditry%1:04:00:: 00966294 1 0 -bandleader%1:18:00:: 09837201 1 0 -bandlet%1:06:00:: 02713835 1 0 -bandmaster%1:18:00:: 09837360 1 0 -bandoleer%1:06:00:: 02786611 1 1 -bandolier%1:06:00:: 02786611 1 0 -bandoneon%1:06:00:: 02786736 1 0 -bandsaw%1:06:00:: 02786837 1 0 -bandsman%1:18:00:: 09837459 1 0 -bandstand%1:06:00:: 02786984 1 1 -bandtail%1:05:00:: 01812866 1 0 -bandung%1:15:00:: 08909933 1 0 -bandwagon%1:06:00:: 02787120 2 0 -bandwagon%1:09:00:: 05751533 1 0 -bandwagon_effect%1:19:00:: 11411839 1 0 -bandwidth%1:23:00:: 13579510 1 1 -bandy%2:32:00:: 00813651 3 0 -bandy%2:33:00:: 01138446 2 0 -bandy%2:33:01:: 01147296 1 1 -bandy%5:00:00:unfit:01 01018530 1 0 -bandy-legged%5:00:00:unfit:01 01018530 1 0 -bandy_about%2:32:00:: 00970107 1 0 -bandy_leg%1:08:00:: 05561834 1 0 -bandy_legs%1:26:00:: 14560253 1 0 -bandyleg%1:08:00:: 05561834 1 0 -bane%1:26:00:: 14445226 1 0 -baneberry%1:20:01:: 11723770 2 0 -baneberry%1:20:02:: 11723986 1 0 -baneful%5:00:00:maleficent:00 00224366 2 0 -baneful%5:00:00:noxious:00 01611329 1 0 -banefully%4:02:00:: 00277435 1 0 -banff%1:15:00:: 08822427 1 0 -bang%1:04:00:: 00064504 5 0 -bang%1:08:00:: 05258985 3 1 -bang%1:11:00:: 07376257 2 2 -bang%1:11:01:: 07410207 1 2 -bang%1:12:00:: 07528470 4 0 -bang%2:35:00:: 01242391 1 3 -bang%2:35:01:: 01242832 3 2 -bang%2:35:02:: 01236941 6 0 -bang%2:35:04:: 01426397 5 0 -bang%2:38:00:: 02100176 4 1 -bang%2:39:00:: 02187693 2 2 -bang%4:02:00:: 00277585 1 1 -bang's_disease%1:26:00:: 14261508 1 0 -bang-up%5:00:00:good:01 01123879 1 0 -bang_out%2:36:00:: 01728213 1 0 -bang_up%2:29:00:: 00053159 2 0 -bang_up%2:35:00:: 01566705 1 0 -bangalore%1:15:00:: 08903352 1 0 -bangalore_torpedo%1:06:00:: 02787269 1 0 -banger%1:06:00:: 03345115 2 0 -banger%1:13:00:: 07677860 1 0 -bangiaceae%1:05:00:: 01415256 1 0 -banging%1:04:00:: 01176115 2 1 -banging%1:11:00:: 07376539 1 1 -banging%5:00:00:large:00 01388062 1 0 -bangkok%1:15:00:: 09036880 1 0 -bangla%1:10:00:: 06970946 1 0 -bangla_desh%1:15:00:: 08848731 1 0 -bangladesh%1:15:00:: 08848731 1 0 -bangladeshi%1:18:00:: 09691994 1 0 -bangladeshi%3:01:00:: 03046349 1 0 -bangladeshi_monetary_unit%1:23:00:: 13707897 1 0 -bangle%1:06:00:: 02787435 2 0 -bangle%1:06:01:: 02887970 1 0 -bangor%1:15:00:: 08888367 3 0 -bangor%1:15:01:: 08895254 2 0 -bangor%1:15:02:: 09092948 1 0 -bangtail%1:05:00:: 02382948 1 0 -bangui%1:15:00:: 08718801 1 0 -banian%1:06:00:: 02788462 2 0 -banian%1:20:00:: 12402348 1 0 -banian_tree%1:20:00:: 12402348 1 0 -banish%2:38:00:: 02003359 4 1 -banish%2:41:00:: 02503803 3 1 -banish%2:41:01:: 02504017 1 3 -banish%2:41:02:: 02504280 2 1 -banishment%1:04:00:: 00206302 2 0 -banishment%1:26:00:: 14427633 1 0 -banister%1:06:00:: 02788148 1 2 -banjo%1:06:00:: 02787622 1 1 -banjul%1:15:00:: 08946042 1 0 -bank%1:04:00:: 00169305 10 0 -bank%1:06:00:: 02787772 9 0 -bank%1:06:01:: 04139859 8 0 -bank%1:14:00:: 08420278 2 20 -bank%1:14:01:: 08462066 4 1 -bank%1:17:00:: 09213434 3 2 -bank%1:17:01:: 09213565 1 25 -bank%1:17:02:: 09213828 7 0 -bank%1:21:00:: 13368318 5 0 -bank%1:21:01:: 13356402 6 0 -bank%2:31:02:: 00688377 8 0 -bank%2:35:00:: 01587705 2 1 -bank%2:35:01:: 01234793 7 0 -bank%2:38:00:: 02039413 1 2 -bank%2:40:00:: 02310855 6 0 -bank%2:40:01:: 02343056 5 0 -bank%2:40:02:: 02343374 3 0 -bank%2:40:03:: 02343252 4 0 -bank-depositor_relation%1:24:00:: 13838766 1 0 -bank_account%1:21:00:: 13359690 1 1 -bank_bill%1:21:00:: 13393762 1 0 -bank_building%1:06:00:: 02787772 1 0 -bank_card%1:21:00:: 13376426 1 0 -bank_charter%1:10:00:: 06476899 1 0 -bank_check%1:21:00:: 13381734 1 0 -bank_clerk%1:18:00:: 10698970 1 0 -bank_closing%1:04:00:: 00229688 1 0 -bank_commissioner%1:18:00:: 09837580 1 0 -bank_deposit%1:21:00:: 13381145 1 0 -bank_discount%1:21:00:: 13319253 1 0 -bank_draft%1:21:00:: 13380530 1 0 -bank_examination%1:04:00:: 01265325 1 0 -bank_examiner%1:18:00:: 09837981 1 0 -bank_failure%1:26:00:: 14478862 1 0 -bank_gravel%1:27:00:: 14699321 1 0 -bank_guard%1:18:00:: 09838117 1 0 -bank_holding_company%1:14:00:: 08185501 1 0 -bank_holiday%1:28:00:: 15200032 1 0 -bank_identification_number%1:10:00:: 06425534 1 0 -bank_line%1:21:00:: 13379413 1 0 -bank_loan%1:21:00:: 13374597 1 0 -bank_manager%1:18:00:: 09838200 1 0 -bank_martin%1:05:00:: 01596273 1 0 -bank_note%1:21:00:: 13393762 1 0 -bank_of_england%1:14:00:: 08352035 1 0 -bank_of_japan%1:14:00:: 08352218 1 0 -bank_rate%1:21:00:: 13319415 1 0 -bank_robber%1:18:00:: 09838295 1 0 -bank_run%1:04:00:: 00396344 1 0 -bank_shot%1:04:00:: 00110415 1 0 -bank_statement%1:10:00:: 06516782 1 0 -bank_swallow%1:05:00:: 01596273 1 0 -bank_vault%1:06:00:: 04523831 1 0 -bank_withdrawal%1:04:00:: 00396213 1 0 -bankable%5:00:00:acceptable:00 00018069 2 0 -bankable%5:00:00:profitable:00 01871204 1 0 -bankbook%1:21:00:: 13414159 1 0 -banker%1:18:00:: 09837824 1 9 -banker%1:18:01:: 09837720 2 0 -banker's_acceptance%1:21:00:: 13381602 1 0 -banker's_bill%1:21:00:: 13393762 1 0 -banker's_check%1:21:00:: 13380309 1 0 -banker's_draft%1:21:00:: 13380530 1 0 -bankhead%1:18:00:: 10833304 1 0 -bankia%1:05:00:: 01967396 1 0 -bankia_setaceae%1:05:00:: 01967517 1 0 -banking%1:04:00:: 01100273 2 0 -banking%1:04:01:: 01100658 1 0 -banking_company%1:14:00:: 08420278 1 0 -banking_concern%1:14:00:: 08420278 1 0 -banking_game%1:04:00:: 00509566 1 0 -banking_industry%1:14:00:: 08066491 1 0 -banking_system%1:14:00:: 08066491 1 0 -banknote%1:21:00:: 13393762 1 0 -bankroll%1:21:00:: 13356569 1 0 -bankroll%2:40:00:: 02216384 1 0 -bankrupt%1:18:00:: 09838370 1 0 -bankrupt%2:40:00:: 02318165 1 1 -bankrupt%5:00:00:insolvent:00 02026629 1 1 -bankruptcy%1:04:00:: 01186397 3 0 -bankruptcy%1:26:00:: 14478433 2 1 -bankruptcy%1:26:01:: 14478684 1 1 -banks%1:18:00:: 10833425 1 0 -banksia%1:20:00:: 12215579 1 0 -banksia_integrifolia%1:20:00:: 12215824 1 0 -banksia_rose%1:20:00:: 12620969 1 0 -banned%5:00:00:illegal:00 01402498 1 0 -banner%1:06:00:: 02788021 1 4 -banner%1:06:01:: 04301140 3 0 -banner%1:10:00:: 06345878 2 0 -banner%5:00:01:superior:02 02342196 1 0 -banneret%1:18:00:: 10238898 1 0 -bannerlike%4:02:00:: 00138852 1 1 -banning%1:10:00:: 07255401 1 0 -banning-order%1:10:00:: 06542742 1 0 -bannister%1:06:00:: 02788148 2 0 -bannister%1:18:00:: 10833595 1 0 -bannock%1:13:00:: 07683360 1 0 -bannockburn%1:04:00:: 01270153 1 0 -banns%1:10:00:: 06747369 1 0 -banquet%1:13:00:: 07578093 2 0 -banquet%1:14:00:: 08253640 1 2 -banquet%2:34:00:: 01185981 2 0 -banquet%2:34:01:: 01186208 1 0 -banquet_song%1:10:00:: 07053606 1 0 -banqueting%1:04:00:: 00840751 1 0 -banquette%1:06:00:: 02788386 1 0 -banshee%1:18:00:: 09544262 1 3 -banshie%1:18:00:: 09544262 1 0 -bantam%1:05:00:: 01791954 1 0 -bantam%5:00:00:small:00 01392249 1 0 -bantamweight%1:18:00:: 09838511 2 0 -bantamweight%1:18:01:: 09838621 1 0 -banteng%1:05:00:: 02405440 1 0 -banter%1:10:00:: 06777794 1 2 -banter%2:32:00:: 00855295 1 1 -bantering%5:00:00:humorous:00 01264913 1 0 -banteringly%4:02:00:: 00277728 1 0 -banti's_disease%1:26:00:: 14072239 1 0 -banti's_syndrome%1:26:00:: 14072239 1 0 -banting%1:05:00:: 02405440 2 0 -banting%1:18:00:: 10833805 1 0 -bantoid%3:01:00:: 03046559 1 0 -bantoid_language%1:10:00:: 06991980 1 0 -bantu%1:10:00:: 06991980 2 0 -bantu%1:18:00:: 09692624 1 0 -bantu%3:01:00:: 03046708 1 0 -bantu-speaking%3:01:00:: 03046931 1 0 -bantu-speaking%5:00:00:communicative:00 00496170 2 0 -banyan%1:06:00:: 02788462 2 0 -banyan%1:20:00:: 12402348 1 0 -banyan_tree%1:20:00:: 12402348 1 0 -banzai%1:10:00:: 06692740 1 0 -banzai_attack%1:04:00:: 00975074 1 0 -banzai_charge%1:04:00:: 00975074 1 0 -baobab%1:20:00:: 12189987 1 0 -bap%1:13:00:: 07680313 1 0 -baphia%1:20:00:: 12508936 1 0 -baphia_nitida%1:20:00:: 12509109 1 0 -baptise%2:32:00:: 01028079 1 0 -baptised%3:00:00:: 02594329 1 0 -baptisia%1:20:00:: 12509297 1 0 -baptisia_australis%1:20:00:: 12509665 1 0 -baptisia_lactea%1:20:00:: 12509821 1 0 -baptisia_tinctoria%1:20:00:: 12509993 1 0 -baptism%1:04:00:: 01037819 1 0 -baptismal%3:01:00:: 03047071 1 0 -baptismal_font%1:06:00:: 02788572 1 0 -baptismal_name%1:10:00:: 06337458 1 0 -baptist%1:18:00:: 09838701 1 2 -baptist_church%1:14:00:: 08089420 1 0 -baptist_denomination%1:14:00:: 08089627 1 0 -baptistery%1:06:00:: 02788572 1 0 -baptistic%3:01:00:: 02954633 1 0 -baptistic_doctrine%1:09:00:: 06232047 1 0 -baptistry%1:06:00:: 02788572 1 0 -baptists%1:14:00:: 08089420 1 0 -baptize%2:32:00:: 01028079 1 8 -baptized%3:00:00:: 02594329 1 0 -bar%1:04:00:: 01077350 6 1 -bar%1:06:00:: 02788689 3 4 -bar%1:06:01:: 02907391 12 0 -bar%1:06:02:: 02789271 5 1 -bar%1:06:04:: 02796995 1 10 -bar%1:06:05:: 02789487 2 4 -bar%1:06:06:: 02937469 11 0 -bar%1:06:07:: 02789770 15 0 -bar%1:06:08:: 02790012 14 0 -bar%1:06:09:: 02790154 13 0 -bar%1:07:00:: 04683136 10 0 -bar%1:10:00:: 06864725 4 1 -bar%1:14:00:: 08112402 9 0 -bar%1:17:00:: 09214060 8 0 -bar%1:23:00:: 13711855 7 0 -bar%2:32:00:: 00796588 1 9 -bar%2:35:00:: 01478002 2 5 -bar%2:35:01:: 01342910 4 1 -bar%2:41:00:: 02503803 3 1 -bar-room_plant%1:20:00:: 12443323 1 0 -bar-shaped%5:00:00:formed:00 02145209 1 0 -bar_absolute%1:23:00:: 13712120 1 0 -bar_billiards%1:04:00:: 00501479 1 0 -bar_bit%1:06:00:: 02791795 1 0 -bar_chart%1:10:00:: 07001717 1 0 -bar_code%1:10:00:: 06354774 1 0 -bar_exam%1:10:00:: 07197537 1 0 -bar_examination%1:10:00:: 07197537 1 0 -bar_fly%1:18:00:: 09839085 1 0 -bar_girl%1:18:00:: 09852430 1 0 -bar_graph%1:10:00:: 07001717 1 0 -bar_hop%2:34:00:: 01171941 1 0 -bar_line%1:10:00:: 06800698 1 0 -bar_magnet%1:06:00:: 02793296 1 0 -bar_mask%1:06:00:: 02793414 1 0 -bar_mitzvah%1:11:00:: 07453924 1 0 -bar_mitzvah%2:41:00:: 02474958 1 0 -bar_printer%1:06:00:: 02794664 1 0 -bar_sinister%1:10:00:: 06795290 2 0 -bar_sinister%1:26:00:: 13953215 1 0 -bar_soap%1:06:00:: 02797455 1 0 -baraka%1:18:00:: 10834011 1 0 -baranduki%1:05:00:: 02360480 1 0 -barany%1:18:00:: 10834176 1 0 -barb%1:05:00:: 01898185 4 0 -barb%1:06:00:: 02790322 3 0 -barb%1:06:01:: 02790550 2 0 -barb%1:10:00:: 06767922 1 1 -barb%2:35:00:: 01339181 1 0 -barbacan%1:06:00:: 02791665 1 0 -barbadian%1:18:00:: 09693982 1 0 -barbadian%3:01:00:: 03047188 1 0 -barbados%1:15:00:: 08755214 2 0 -barbados%1:15:01:: 08755436 1 0 -barbados-gooseberry_vine%1:20:00:: 11852531 1 0 -barbados_cherry%1:13:00:: 07746334 2 0 -barbados_cherry%1:20:00:: 12694486 1 0 -barbados_dollar%1:23:00:: 13672177 1 0 -barbados_gooseberry%1:13:00:: 07769102 2 0 -barbados_gooseberry%1:20:01:: 11852531 1 0 -barbados_maidenhair%1:20:00:: 13207923 1 0 -barbados_pride%1:20:00:: 11758799 1 0 -barbara_hepworth%1:18:00:: 11044168 1 0 -barbara_tuchman%1:18:00:: 11351212 1 0 -barbara_ward%1:18:00:: 11374281 1 0 -barbara_wertheim_tuchman%1:18:00:: 11351212 1 0 -barbarea%1:20:00:: 11873396 1 0 -barbarea_praecox%1:20:00:: 11873845 1 0 -barbarea_verna%1:20:00:: 11873845 1 0 -barbarea_vulgaris%1:20:00:: 11874081 1 0 -barbarian%1:18:00:: 10553402 1 1 -barbarian%1:18:01:: 10410815 2 0 -barbarian%5:00:00:noncivilized:00 00412788 1 0 -barbaric%5:00:00:noncivilized:00 00412788 1 3 -barbaric%5:00:00:tasteless:02 02393670 2 0 -barbarisation%1:04:00:: 00272123 1 0 -barbarise%2:30:00:: 00134328 2 0 -barbarise%2:30:01:: 00134564 1 0 -barbarism%1:04:00:: 00424934 1 0 -barbarity%1:04:00:: 00424934 2 0 -barbarity%1:07:00:: 04830343 1 0 -barbarization%1:04:00:: 00272123 1 0 -barbarize%2:30:00:: 00134328 2 0 -barbarize%2:30:01:: 00134564 1 0 -barbarossa%1:18:00:: 10979887 1 0 -barbarossa%1:18:01:: 10834337 2 0 -barbarous%5:00:00:inhumane:00 01263013 1 0 -barbarous%5:00:00:noncivilized:00 00413224 2 0 -barbarously%4:02:00:: 00277857 1 0 -barbarousness%1:07:00:: 04830343 1 0 -barbary%1:15:00:: 08503238 1 0 -barbary_ape%1:05:00:: 02487847 1 0 -barbary_coast%1:15:00:: 08503477 2 0 -barbary_coast%1:15:01:: 08503639 1 0 -barbary_pirate%1:18:00:: 09966941 1 0 -barbary_sheep%1:05:00:: 02416104 1 0 -barbasco%1:20:00:: 12100187 1 0 -barbate%5:00:00:unshaven:00 02153965 1 0 -barbecue%1:06:00:: 02790669 3 0 -barbecue%1:13:00:: 07576781 2 0 -barbecue%1:13:02:: 07654148 1 0 -barbecue%2:30:00:: 00324806 1 2 -barbecue_pit%1:17:00:: 09214269 1 0 -barbecue_sauce%1:13:00:: 07835331 1 0 -barbecued%5:00:00:cooked:00 00616654 1 0 -barbecued_spareribs%1:13:00:: 07862348 1 0 -barbecued_wing%1:13:00:: 07648997 1 0 -barbecuing%1:04:00:: 00247654 1 0 -barbed%5:00:00:armed:02 00145083 2 0 -barbed%5:00:00:sarcastic:00 02079313 1 1 -barbed_wire%1:06:00:: 02790823 1 4 -barbel%1:05:00:: 02585285 1 0 -barbell%1:06:00:: 02790996 1 5 -barbellate%5:00:00:armed:02 00145083 1 0 -barbeque%1:06:00:: 02790669 3 0 -barbeque%1:13:00:: 07576781 2 0 -barbeque%1:13:02:: 07654148 1 0 -barbeque%2:30:00:: 00324806 1 0 -barber%1:18:00:: 09838895 2 0 -barber%1:18:01:: 10834439 1 0 -barber%2:29:00:: 00042792 1 0 -barber's_itch%1:26:00:: 14126181 1 0 -barber's_pole%1:10:00:: 07267067 1 0 -barber_chair%1:06:00:: 02791124 1 0 -barberry%1:20:00:: 11697560 1 0 -barberry_family%1:20:00:: 11697158 1 0 -barbershop%1:06:00:: 02791270 1 0 -barbershop_quartet%1:14:00:: 08247400 1 0 -barberton_daisy%1:20:00:: 11971927 1 0 -barbet%1:05:00:: 01842235 1 0 -barbette%1:06:00:: 02791385 1 0 -barbette_carriage%1:06:00:: 02791532 1 0 -barbican%1:06:00:: 02791665 1 0 -barbital%1:06:00:: 02791894 1 1 -barbitone%1:06:00:: 02791894 1 0 -barbiturate%1:06:00:: 02792049 1 1 -barbituric_acid%1:27:00:: 14772716 1 0 -barbra_joan_streisand%1:18:00:: 11322178 1 0 -barbra_streisand%1:18:00:: 11322178 1 0 -barbu%1:05:00:: 02611294 1 0 -barbuda%1:15:00:: 08710113 1 0 -barbwire%1:06:00:: 02790823 1 0 -barcarole%1:10:00:: 07049931 1 0 -barcarolle%1:10:00:: 07049931 1 0 -barcelona%1:15:00:: 09025189 1 0 -bard%1:06:00:: 02792305 2 0 -bard%1:18:00:: 09839022 1 0 -bard%2:36:00:: 01670315 1 0 -bard_of_avon%1:18:00:: 11295196 1 0 -barde%2:36:00:: 01670315 1 0 -bardeen%1:18:00:: 10834543 1 0 -bardic%3:01:00:: 03047388 1 0 -bardolatry%1:04:00:: 01044268 1 0 -bare%2:30:00:: 00194912 3 0 -bare%2:32:00:: 00954608 2 0 -bare%2:35:00:: 01340028 1 1 -bare%3:00:00:: 01698400 4 0 -bare%3:00:04:: 02155524 3 0 -bare%5:00:00:empty:00 01086915 9 0 -bare%5:00:00:inhospitable:00 01242750 8 0 -bare%5:00:00:meager:00 00106821 2 2 -bare%5:00:00:narrow:02 02563466 5 0 -bare%5:00:00:plain:01 01792573 6 0 -bare%5:00:00:unadorned:00 00060605 10 0 -bare%5:00:00:unclothed:00 00457998 1 2 -bare%5:00:00:unpainted:00 01714157 7 0 -bare-ass%5:00:00:unclothed:00 00458266 1 0 -bare-assed%5:00:00:unclothed:00 00458266 1 0 -bare-breasted%5:00:00:unclothed:00 00458488 1 0 -bare-knuckle%5:00:00:disorderly:00 01667271 1 0 -bare-knuckled%5:00:00:disorderly:00 01667271 1 0 -bare_bone%1:08:00:: 05271607 1 0 -bare_bones%1:09:00:: 05921685 1 0 -bareback%4:02:00:: 00277970 1 0 -bareback%5:00:00:unsaddled:00 00460624 1 0 -barebacked%4:02:00:: 00277970 1 0 -barebacked%5:00:00:unsaddled:00 00460624 1 0 -bareboat%1:06:00:: 02792409 1 0 -bareboating%1:04:00:: 00315534 1 0 -bared%5:00:00:unclothed:00 00458664 1 0 -barefaced%5:00:00:overt:00 01705088 1 0 -barefaced%5:00:00:unashamed:00 00155144 2 0 -barefacedly%4:02:00:: 00209518 1 0 -barefoot%4:02:00:: 00278078 1 1 -barefoot%5:00:00:unshod:00 02156686 1 2 -barefooted%4:02:00:: 00278078 1 0 -barefooted%5:00:00:unshod:00 02156686 1 0 -barehanded%5:00:00:unarmed:01 00143201 1 0 -bareheaded%5:00:00:unclothed:00 00458664 1 0 -barelegged%5:00:00:unclothed:00 00458810 1 0 -barely%4:02:00:: 00002621 1 11 -barely%4:02:01:: 00073763 2 2 -bareness%1:07:00:: 04697819 3 0 -bareness%1:26:00:: 14456893 2 0 -bareness%1:26:01:: 14525548 1 0 -barents_sea%1:17:00:: 09214422 1 0 -barf%1:27:00:: 14855992 1 0 -barf%2:29:00:: 00076400 1 0 -bargain%1:10:00:: 06771159 1 3 -bargain%1:21:01:: 13253751 2 0 -bargain%2:32:00:: 00764782 2 0 -bargain%2:40:00:: 02259829 1 1 -bargain-priced%5:00:00:cheap:00 00934554 1 1 -bargain_down%2:40:00:: 02259387 1 0 -bargain_hunter%1:18:00:: 09839343 1 0 -bargain_rate%1:07:00:: 05147237 1 0 -bargainer%1:18:00:: 10720453 1 0 -bargainer%1:18:01:: 09839167 2 0 -bargaining%1:10:00:: 07149836 1 1 -bargaining_chip%1:07:00:: 05156673 1 0 -barge%1:06:00:: 02792552 1 5 -barge%2:38:00:: 01996574 1 2 -barge%2:38:01:: 01950502 2 0 -barge_in%2:32:00:: 00780191 2 0 -barge_in%2:38:00:: 02019011 1 1 -barge_pole%1:06:00:: 02792948 1 0 -bargee%1:18:00:: 10261388 1 0 -bargello%1:06:00:: 02792822 1 0 -bargeman%1:18:00:: 10261388 1 0 -bari%1:15:00:: 08810505 1 0 -baric%3:01:00:: 02658629 1 0 -barilla%1:20:01:: 11833999 2 0 -barilla%1:20:02:: 11834654 1 0 -baring%1:04:00:: 00394803 1 0 -barish%1:10:00:: 06933689 1 0 -barite%1:27:00:: 14678230 1 0 -baritone%1:06:00:: 02793089 3 0 -baritone%1:10:00:: 06872562 2 0 -baritone%1:18:00:: 09839436 1 0 -baritone%5:00:00:low:03 01215797 1 0 -baritone_horn%1:06:00:: 02793089 1 0 -baritone_voice%1:10:00:: 06872562 1 0 -barium%1:27:00:: 14629998 1 1 -barium_dioxide%1:27:00:: 14630630 1 0 -barium_enema%1:04:00:: 00696300 1 0 -barium_hydroxide%1:27:00:: 14630363 1 0 -barium_monoxide%1:27:00:: 14630492 1 0 -barium_oxide%1:27:00:: 14630492 1 0 -barium_peroxide%1:27:00:: 14630630 1 0 -barium_protoxide%1:27:00:: 14630492 1 0 -barium_sulfate%1:27:00:: 14772877 1 0 -barium_sulphate%1:27:00:: 14772877 1 0 -barium_sulphate%1:27:01:: 14678230 2 0 -bark%1:06:00:: 02793199 3 1 -bark%1:11:00:: 07376621 4 0 -bark%1:11:02:: 07376731 2 1 -bark%1:20:00:: 13162297 1 4 -bark%2:30:00:: 00511763 5 0 -bark%2:32:00:: 01047745 4 0 -bark%2:32:01:: 01047596 1 1 -bark%2:35:00:: 01263784 3 0 -bark%2:35:01:: 01263904 2 0 -bark-louse%1:05:00:: 02261063 1 0 -bark_beetle%1:05:00:: 02180233 1 0 -bark_louse%1:05:00:: 02261063 1 0 -barkeep%1:18:00:: 09841188 1 1 -barkeeper%1:18:00:: 09841188 1 0 -barker%1:05:00:: 02084732 2 0 -barker%1:18:00:: 09839515 1 0 -barking_deer%1:05:00:: 02434954 1 0 -barking_frog%1:05:00:: 01643507 1 0 -barkley%1:18:00:: 10834690 1 0 -barky%5:00:00:rough:00 02239607 1 0 -barley%1:13:00:: 07803093 1 2 -barley%1:20:00:: 12123244 2 0 -barley-sugar%1:13:00:: 07598928 1 0 -barley_candy%1:13:00:: 07598928 1 0 -barley_grass%1:20:00:: 12123741 1 0 -barley_water%1:13:00:: 07584859 1 0 -barleycorn%1:13:00:: 07803093 2 0 -barleycorn%1:20:00:: 12123648 1 0 -barm%1:27:00:: 15106271 1 0 -barmaid%1:18:00:: 09839702 1 0 -barman%1:18:00:: 09841188 1 0 -barmbrack%1:13:00:: 07680416 1 0 -barmy%5:00:00:insane:00 02074929 2 0 -barmy%5:00:00:spirited:00 02281182 1 0 -barn%1:06:00:: 02793495 1 22 -barn%1:23:00:: 13614256 2 0 -barn_dance%1:11:00:: 07449452 1 0 -barn_door%1:06:00:: 02793842 1 0 -barn_grass%1:20:00:: 12117695 1 0 -barn_millet%1:20:00:: 12117695 1 0 -barn_owl%1:05:00:: 01625562 1 0 -barn_spider%1:05:00:: 01773549 1 0 -barn_swallow%1:05:00:: 01594787 1 0 -barnaba_chiaramonti%1:18:00:: 11237550 1 0 -barnaby's_thistle%1:20:00:: 11949015 1 0 -barnacle%1:05:01:: 01998183 1 0 -barnacle%1:05:02:: 01857851 2 0 -barnacle_goose%1:05:00:: 01857851 1 0 -barnburner%1:11:00:: 07319399 2 0 -barnburner%1:18:00:: 09839774 1 1 -barndoor%1:06:00:: 02793684 1 0 -barndoor_skate%1:05:00:: 01502101 1 0 -barney_oldfield%1:18:00:: 11213966 1 0 -barnful%1:23:00:: 13764998 1 1 -barnstorm%2:33:00:: 01094661 2 0 -barnstorm%2:33:01:: 01094898 1 0 -barnstormer%1:18:00:: 09839860 2 0 -barnstormer%1:18:01:: 09840050 1 0 -barnum%1:18:00:: 10834869 1 0 -barnyard%1:06:00:: 02793930 1 2 -barnyard_grass%1:20:00:: 12117695 1 0 -barograph%1:06:00:: 02794008 1 0 -barographic%3:01:00:: 02658737 1 0 -barometer%1:06:00:: 02794156 1 0 -barometric%3:01:00:: 02658835 1 0 -barometric_pressure%1:19:00:: 11495708 1 1 -barometrical%3:01:00:: 02658835 1 0 -baron%1:18:00:: 09840435 2 0 -baron%1:18:01:: 09840217 3 0 -baron%1:18:02:: 09840520 1 0 -baron_adrian%1:18:00:: 10808886 1 0 -baron_alexander_von_humboldt%1:18:00:: 11065938 1 0 -baron_clive%1:18:00:: 10902934 1 0 -baron_clive_of_plassey%1:18:00:: 10902934 1 0 -baron_de_la_brede_et_de_montesquieu%1:18:00:: 11186911 1 0 -baron_friedrich_heinrich_alexander_von_humboldt%1:18:00:: 11065938 1 0 -baron_friedrich_wilhelm_ludolf_gerhard_augustin_von_steuben%1:18:00:: 11317086 1 0 -baron_georges_cuvier%1:18:00:: 10919278 1 0 -baron_hermann_ludwig_ferdinand_von_helmholtz%1:18:00:: 11039344 1 0 -baron_hugh_caswall_tremenheere_dowding%1:18:00:: 10941714 1 0 -baron_jean_baptiste_joseph_fourier%1:18:00:: 10976468 1 0 -baron_karl_maria_friedrich_ernst_von_weber%1:18:00:: 11378462 1 0 -baron_karl_wilhelm_von_humboldt%1:18:00:: 11066209 1 0 -baron_lister%1:18:00:: 11134895 1 0 -baron_lloyd_webber_of_sydmonton%1:18:00:: 11136405 1 0 -baron_munchausen%1:18:00:: 11196305 1 0 -baron_olivier_of_birghton%1:18:00:: 11214320 1 0 -baron_richard_von_krafft-ebing%1:18:00:: 11110205 1 0 -baron_snow_of_leicester%1:18:00:: 11307082 1 0 -baron_verulam%1:18:00:: 10830456 1 0 -baron_wilhelm_von_humboldt%1:18:00:: 11066209 1 0 -baronage%1:14:00:: 08388636 1 0 -baronduki%1:05:00:: 02360480 1 0 -baroness%1:18:00:: 09843309 1 0 -baroness_dudevant%1:18:00:: 11280013 1 0 -baroness_emmusca_orczy%1:18:00:: 11216264 1 0 -baroness_jackson_of_lodsworth%1:18:00:: 11374281 1 0 -baroness_karen_blixen%1:18:00:: 10935745 1 0 -baroness_thatcher_of_kesteven%1:18:00:: 11337779 1 0 -baronet%1:18:00:: 09840639 1 0 -baronetage%1:04:00:: 00589415 2 0 -baronetage%1:14:00:: 08388783 1 0 -baronetcy%1:10:00:: 06343364 2 0 -baronetcy%1:26:00:: 14432623 1 0 -baronetise%2:41:00:: 02398681 1 0 -baronetize%2:41:00:: 02398681 1 0 -barong%1:06:00:: 02794368 1 0 -baronial%5:00:00:impressive:00 01283508 1 1 -baronne_anne_louise_germaine_necker_de_steal-holstein%1:18:00:: 11311959 1 0 -barony%1:15:00:: 08557057 3 0 -barony%1:21:00:: 13251906 1 1 -barony%1:26:00:: 14432623 2 0 -baroque%1:07:00:: 04698307 2 0 -baroque%1:28:00:: 15259076 1 0 -baroque%3:01:00:: 02974023 2 0 -baroque%5:00:00:fancy:00 01794995 1 1 -baroque_era%1:28:00:: 15259076 1 0 -baroque_period%1:28:00:: 15259076 1 0 -baroqueness%1:07:00:: 04698307 1 0 -baroreceptor%1:08:00:: 05300128 1 1 -barosaur%1:05:00:: 01709876 1 0 -barosaurus%1:05:00:: 01709876 1 0 -barouche%1:06:00:: 02794474 1 0 -barque%1:06:00:: 02793199 1 0 -barrack%1:06:00:: 02794779 1 1 -barrack%2:32:00:: 00850192 3 0 -barrack%2:32:01:: 00858781 2 0 -barrack%2:42:00:: 02651745 1 0 -barracking%1:04:00:: 01068633 1 0 -barracouta%1:05:00:: 02514041 1 0 -barracuda%1:05:00:: 02603317 1 0 -barrage%1:04:00:: 00987863 2 1 -barrage%1:10:00:: 07083441 1 2 -barrage%2:32:00:: 00863579 1 0 -barrage_balloon%1:06:00:: 02794972 1 0 -barrage_fire%1:04:00:: 00987863 1 0 -barrage_jam%2:32:00:: 01057342 1 0 -barrage_jamming%1:04:00:: 01251010 1 0 -barramundi%1:05:00:: 02560546 1 0 -barranquilla%1:15:00:: 08732807 1 0 -barrater%1:18:00:: 09840871 1 0 -barrator%1:18:00:: 09840871 1 0 -barratry%1:04:00:: 00765343 4 0 -barratry%1:04:01:: 00769401 3 0 -barratry%1:04:02:: 00776466 2 0 -barratry%1:04:03:: 01114172 1 0 -barred%5:00:00:marked:00 01480603 2 0 -barred%5:00:00:obstructed:00 01620893 1 0 -barred_owl%1:05:00:: 01623110 1 0 -barred_pickerel%1:05:00:: 02561937 1 0 -barrel%1:06:00:: 02795169 2 5 -barrel%1:06:01:: 02795528 1 8 -barrel%1:23:01:: 13619920 5 0 -barrel%1:23:04:: 13764764 4 0 -barrel%1:25:00:: 13901211 3 2 -barrel%2:35:00:: 01502540 1 0 -barrel-shaped%5:00:00:round:00 02041711 1 0 -barrel_cactus%1:20:01:: 11847169 1 0 -barrel_cactus%1:20:02:: 11845557 2 0 -barrel_knot%1:06:00:: 02795783 1 0 -barrel_maker%1:18:00:: 09963773 1 0 -barrel_organ%1:06:00:: 02795978 1 0 -barrel_roll%1:04:00:: 00170536 1 2 -barrel_vault%1:06:00:: 02796207 1 0 -barreled%3:00:00:: 00206205 1 0 -barreled%5:00:00:pointed:00 01810348 2 0 -barrelfish%1:05:00:: 02635154 1 0 -barrelful%1:23:00:: 13764764 1 0 -barrelhouse%1:06:00:: 02795670 1 0 -barrelled%3:00:02:: 00206205 1 0 -barrelled%5:00:00:pointed:00 01810348 2 0 -barrels%1:23:00:: 13774311 1 0 -barren%1:15:00:: 08504594 1 0 -barren%5:00:00:inhospitable:00 01242750 1 0 -barren%5:00:00:nonexistent:00 00927978 3 0 -barren%5:00:00:sterile:00 01002664 2 0 -barren_ground_caribou%1:05:00:: 02434415 1 0 -barrenness%1:07:00:: 05148186 2 0 -barrenness%1:26:00:: 14045347 1 0 -barrenwort%1:20:00:: 11699071 1 0 -barrette%1:06:00:: 02796318 1 0 -barretter%1:06:00:: 02780121 1 0 -barricade%1:06:00:: 04096848 1 2 -barricade%1:06:01:: 02796412 2 1 -barricade%2:33:00:: 01127075 3 0 -barricade%2:33:01:: 01127215 2 0 -barricade%2:35:00:: 01478002 1 1 -barricaded%5:00:00:obstructed:00 01620893 1 0 -barricado%2:33:00:: 01127075 1 0 -barrie%1:18:00:: 10835022 1 0 -barrier%1:06:00:: 02796623 1 4 -barrier%1:09:00:: 05690916 2 3 -barrier%1:17:00:: 09214581 3 2 -barrier_island%1:17:00:: 09214760 1 0 -barrier_reef%1:17:00:: 09214916 1 0 -barrier_strip%1:06:00:: 03606106 1 0 -barring%1:04:00:: 00207622 1 0 -barrio%1:15:00:: 08676253 2 0 -barrio%1:15:01:: 08676349 1 0 -barrister%1:18:00:: 09840963 1 0 -barroom%1:06:00:: 02796995 1 0 -barrow%1:06:01:: 02797295 3 0 -barrow%1:06:02:: 02922292 2 0 -barrow%1:23:00:: 13764897 1 0 -barrow's_goldeneye%1:05:00:: 01850553 1 0 -barrow-boy%1:18:00:: 09968128 1 0 -barrow-man%1:18:00:: 09968128 1 0 -barrowful%1:23:00:: 13764897 1 0 -barrymore%1:18:00:: 10835218 5 0 -barrymore%1:18:01:: 10835450 4 0 -barrymore%1:18:02:: 10835709 3 0 -barrymore%1:18:03:: 10835866 2 0 -barrymore%1:18:04:: 10836029 1 0 -bars%1:06:00:: 03888605 1 0 -barstow%1:15:00:: 09062478 1 0 -bart%1:18:00:: 09840639 1 0 -bartender%1:18:00:: 09841188 1 2 -barter%1:04:00:: 01109687 1 0 -barter%2:40:00:: 02259241 1 0 -barter_away%2:40:00:: 02294056 1 0 -barterer%1:18:00:: 09841400 1 0 -barth%1:18:00:: 10836184 2 0 -barth%1:18:01:: 10836308 1 0 -barthelme%1:18:00:: 10836413 1 0 -barthold_george_niebuhr%1:18:00:: 11206705 1 0 -bartholdi%1:18:00:: 10836555 1 0 -bartholin%1:18:00:: 10836725 1 0 -bartholin's_gland%1:08:00:: 05523859 1 0 -bartholomeu_dias%1:18:00:: 10934154 1 0 -bartholomeu_diaz%1:18:00:: 10934154 1 0 -bartholomew_roberts%1:18:00:: 11264193 1 0 -bartle_frere%1:20:00:: 12214245 1 0 -bartlesville%1:15:00:: 09132053 1 0 -bartlett%1:13:00:: 07768230 3 0 -bartlett%1:18:00:: 10836862 2 0 -bartlett%1:18:01:: 10837023 1 0 -bartlett_pear%1:13:00:: 07768230 1 1 -bartok%1:18:00:: 10837258 1 0 -bartolome_esteban_murillo%1:18:00:: 11197633 1 0 -bartolomeo_alberto_capillari%1:18:00:: 11014833 1 0 -bartolomeo_prignano%1:18:00:: 11357086 1 0 -bartolomeo_vanzetti%1:18:00:: 11360311 1 0 -bartolommeo_eustachio%1:18:00:: 10963050 1 0 -bartonia%1:20:00:: 12035907 1 0 -bartram_juneberry%1:20:00:: 12624055 1 0 -bartramia%1:05:00:: 02029571 1 0 -bartramia_longicauda%1:05:00:: 02029706 1 0 -bartramian_sandpiper%1:05:00:: 02029706 1 0 -baruch%1:10:00:: 06459323 3 0 -baruch%1:18:00:: 10837461 2 0 -baruch%1:18:01:: 10837567 1 0 -baruch_de_spinoza%1:18:00:: 11311450 1 0 -barunduki%1:05:00:: 02360480 1 0 -barycenter%1:15:00:: 08523064 1 0 -barye%1:23:00:: 13712120 1 0 -baryon%1:17:00:: 09215023 1 0 -baryon_number%1:23:00:: 13599114 1 0 -baryshnikov%1:18:00:: 10837737 1 0 -baryta%1:27:00:: 14630204 1 0 -barytes%1:27:00:: 14678230 1 0 -barytic%3:01:00:: 02659044 1 0 -barytone%1:18:00:: 09839436 1 0 -bas_bleu%1:18:00:: 09861599 1 0 -bas_mitzvah%1:11:00:: 07454196 1 0 -bas_relief%1:06:00:: 02803129 1 1 -basal%3:00:02:: 00318667 1 0 -basal%5:00:00:basic:00 01856066 2 0 -basal%5:00:00:essential:00 00901060 3 0 -basal_body_temperature%1:07:00:: 05014710 1 0 -basal_body_temperature_method%1:04:00:: 00852522 1 0 -basal_body_temperature_method_of_family_planning%1:04:00:: 00852522 1 0 -basal_ganglion%1:08:00:: 05497363 1 0 -basal_metabolic_rate%1:22:00:: 13437610 1 0 -basal_metabolism%1:22:00:: 13437753 1 0 -basal_placentation%1:20:00:: 11681554 1 0 -basal_temperature%1:07:00:: 05014710 1 0 -basal_vein%1:08:00:: 05358764 1 0 -basalt%1:27:00:: 14773022 1 0 -basaltic%3:01:00:: 02659154 1 0 -bascule%1:06:00:: 02797535 1 0 -base%1:06:00:: 02797692 8 2 -base%1:06:01:: 03387016 2 3 -base%1:06:02:: 02797881 3 3 -base%1:06:03:: 02798117 20 0 -base%1:06:04:: 02798290 1 4 -base%1:06:05:: 02798574 19 0 -base%1:06:06:: 03569964 17 0 -base%1:06:07:: 02798769 18 0 -base%1:09:00:: 05793554 7 2 -base%1:10:00:: 06300193 16 0 -base%1:10:01:: 06658118 6 2 -base%1:14:00:: 08013845 15 0 -base%1:15:00:: 08511777 5 2 -base%1:15:01:: 08490402 14 0 -base%1:17:00:: 09215315 4 2 -base%1:23:00:: 13597794 13 0 -base%1:24:00:: 13809769 12 0 -base%1:25:00:: 13897837 11 0 -base%1:27:00:: 14618253 10 0 -base%1:27:01:: 14964590 9 0 -base%2:31:00:: 00636888 1 75 -base%2:34:00:: 01200068 3 0 -base%2:42:04:: 02756196 2 0 -base%5:00:00:basic:00 01856066 1 6 -base%5:00:00:counterfeit:00 01117362 7 0 -base%5:00:00:ignoble:01 01589650 5 0 -base%5:00:00:illegitimate:00 01407816 6 0 -base%5:00:00:inferior:02 02345859 3 0 -base%5:00:00:lowborn:00 01592857 2 1 -base%5:00:00:wrong:01 02036077 4 0 -base-forming%5:00:00:alkaline:00 00026294 1 0 -base_hit%1:04:00:: 00131090 1 1 -base_metal%1:27:00:: 14618674 1 0 -base_of_operations%1:06:00:: 02798290 1 0 -base_on_balls%1:04:00:: 00127286 1 3 -base_pair%1:27:00:: 14630769 1 0 -base_rate%1:21:00:: 13319726 1 0 -base_runner%1:18:00:: 09841696 1 1 -baseball%1:04:00:: 00471613 1 21 -baseball%1:06:00:: 02799071 2 2 -baseball_bat%1:06:00:: 02799175 1 0 -baseball_cap%1:06:00:: 02799323 1 0 -baseball_card%1:06:00:: 02799442 1 0 -baseball_clinic%1:10:00:: 07146784 1 0 -baseball_club%1:14:00:: 08079613 1 0 -baseball_coach%1:18:00:: 09841515 1 0 -baseball_diamond%1:06:00:: 02799593 1 0 -baseball_equipment%1:06:00:: 02799897 1 0 -baseball_field%1:06:00:: 02780916 1 0 -baseball_game%1:04:00:: 00471613 1 2 -baseball_glove%1:06:00:: 02800213 1 0 -baseball_league%1:14:00:: 08231874 1 0 -baseball_manager%1:18:00:: 09841515 1 0 -baseball_mitt%1:06:00:: 02800213 1 0 -baseball_play%1:04:00:: 00564177 1 0 -baseball_player%1:18:00:: 09835506 1 0 -baseball_score%1:04:00:: 00189476 1 0 -baseball_season%1:28:00:: 15240389 1 0 -baseball_swing%1:04:00:: 00571444 1 0 -baseball_team%1:14:00:: 08079319 1 0 -baseboard%1:06:00:: 02800354 1 0 -baseborn%5:00:00:illegitimate:00 01407816 2 0 -baseborn%5:00:00:lowborn:00 01592857 1 0 -based%5:00:00:settled:01 02126140 2 1 -based%5:00:00:supported:00 02351064 1 3 -basel%1:15:00:: 09032483 1 0 -baseless%5:00:00:unsupported:02 02353211 1 0 -baseline%1:15:00:: 08573140 3 0 -baseline%1:15:01:: 08650919 2 0 -baseline%1:24:00:: 13854318 1 1 -basely%4:02:00:: 00397720 1 0 -basement%1:06:00:: 02800497 1 18 -basement%1:06:01:: 02800675 2 0 -baseness%1:07:00:: 04807971 1 0 -basenji%1:05:00:: 02110806 1 0 -bash%1:11:00:: 07410207 1 1 -bash%1:11:01:: 07448038 2 0 -bash%2:35:00:: 01397088 1 0 -bashful%5:00:00:backward:02 00204249 2 0 -bashful%5:00:00:timid:00 00252130 1 1 -bashfully%4:02:00:: 00228910 1 0 -bashfulness%1:12:00:: 07508092 1 0 -basia%1:15:00:: 08914413 1 0 -basic%1:06:00:: 02800793 2 0 -basic%1:10:00:: 06902909 1 0 -basic%3:00:00:: 01855764 1 45 -basic%5:00:00:alkaline:00 00026168 4 0 -basic%5:00:00:standard:01 02295298 2 17 -basic%5:00:02:first:00 01011753 3 0 -basic_assumption%1:09:00:: 05893512 1 0 -basic_cognitive_process%1:09:00:: 05701944 1 0 -basic_color%1:27:00:: 14773275 1 0 -basic_colour%1:27:00:: 14773275 1 0 -basic_dye%1:27:00:: 14773275 1 0 -basic_english%1:10:00:: 06895396 1 0 -basic_iron%1:27:00:: 14773447 1 0 -basic_point_defense_missile_system%1:06:00:: 02800940 1 0 -basic_principle%1:09:00:: 05871362 1 0 -basic_slag%1:27:00:: 14773618 1 0 -basic_training%1:04:00:: 00895680 1 0 -basically%4:02:00:: 00003483 1 7 -basics%1:09:00:: 05871362 2 0 -basics%1:10:00:: 06639563 1 0 -basidial%3:01:00:: 02659292 1 0 -basidiocarp%1:20:00:: 11533212 1 0 -basidiolichen%1:20:00:: 12987535 1 0 -basidiomycete%1:20:00:: 12997654 1 0 -basidiomycetes%1:20:00:: 12996841 1 0 -basidiomycetous%3:01:00:: 02659404 1 0 -basidiomycetous_fungi%1:20:00:: 12997654 1 0 -basidiomycota%1:20:00:: 12996225 1 0 -basidiomycotina%1:20:00:: 12996225 1 0 -basidiospore%1:20:00:: 11548465 1 0 -basidiosporous%3:01:00:: 02659571 1 0 -basidium%1:20:00:: 12994475 1 0 -basifixed%5:00:00:affixed:00 00158961 1 0 -basify%2:30:00:: 00265094 1 0 -basil%1:13:00:: 07816164 3 0 -basil%1:18:00:: 10837918 2 0 -basil%1:20:00:: 12860365 1 0 -basil_balm%1:20:01:: 12859272 1 0 -basil_balm%1:20:02:: 12839574 2 0 -basil_mint%1:20:00:: 12863819 1 0 -basil_of_caesarea%1:18:00:: 10837918 1 0 -basil_the_great%1:18:00:: 10837918 1 0 -basil_thyme%1:20:00:: 12839574 1 0 -basilar%3:01:00:: 02659733 1 0 -basilar_artery%1:08:00:: 05338410 1 0 -basilar_membrane%1:08:00:: 05286272 1 0 -basilary%3:01:00:: 02659733 1 0 -basileus%1:18:00:: 09841865 1 1 -basilic_vein%1:08:00:: 05358944 1 0 -basilica%1:06:01:: 02801047 2 0 -basilica%1:06:02:: 02801184 1 0 -basilican%3:01:00:: 02659931 1 0 -basilicata%1:15:00:: 08804487 1 0 -basiliscus%1:05:00:: 01682293 1 0 -basilisk%1:05:01:: 01682435 3 0 -basilisk%1:06:00:: 02801450 2 0 -basilisk%1:18:00:: 09492877 1 0 -basin%1:06:00:: 02801525 1 2 -basin%1:06:01:: 04553920 5 0 -basin%1:15:00:: 08518940 4 0 -basin%1:17:00:: 09215437 3 0 -basin%1:23:00:: 13765086 2 0 -basinal%3:01:00:: 02660065 1 0 -basined%5:00:00:enclosed:00 01657056 1 0 -basinet%1:06:00:: 02801823 1 0 -basinful%1:23:00:: 13765086 1 0 -basipetal%3:00:00:: 00031824 1 0 -basis%1:09:00:: 05793554 2 28 -basis%1:24:00:: 13790912 1 38 -basis%1:24:01:: 13809769 3 0 -basiscopic%3:00:00:: 00002843 1 0 -basivertebral_vein%1:08:00:: 05359124 1 0 -bask%2:35:00:: 01548181 2 2 -bask%2:37:13:: 01820302 1 3 -basket%1:04:00:: 00190431 4 0 -basket%1:06:00:: 02801938 1 6 -basket%1:06:01:: 02802215 3 0 -basket%1:23:00:: 13765207 2 2 -basket-handle_arch%1:06:00:: 04427216 1 0 -basket-shaped%5:00:00:formed:00 02145308 1 0 -basket_ash%1:20:00:: 12305089 1 0 -basket_fern%1:20:01:: 13205249 1 0 -basket_fern%1:20:02:: 13175682 2 0 -basket_fish%1:05:00:: 02318167 1 0 -basket_flower%1:20:01:: 11947429 1 0 -basket_hilt%1:06:00:: 02802886 1 0 -basket_maker%1:18:00:: 09842395 1 0 -basket_oak%1:20:00:: 12276628 1 0 -basket_rummy%1:04:00:: 00497060 1 0 -basket_spikemoss%1:20:00:: 13224922 1 0 -basket_star%1:05:00:: 02318167 1 0 -basket_weave%1:06:00:: 02802990 1 1 -basket_willow%1:20:00:: 12729729 1 0 -basketball%1:04:00:: 00480993 1 3 -basketball%1:06:00:: 02802426 2 0 -basketball_backboard%1:06:00:: 02768226 1 0 -basketball_clinic%1:10:00:: 07146640 1 0 -basketball_coach%1:18:00:: 09841955 1 0 -basketball_court%1:06:00:: 02802544 1 0 -basketball_equipment%1:06:00:: 02802721 1 0 -basketball_game%1:04:00:: 00480993 1 0 -basketball_hoop%1:06:00:: 02802215 1 0 -basketball_league%1:14:00:: 08232299 1 0 -basketball_play%1:04:00:: 00563494 1 0 -basketball_player%1:18:00:: 09842047 1 0 -basketball_score%1:04:00:: 00190338 1 0 -basketball_season%1:28:00:: 15240633 1 0 -basketball_shot%1:04:00:: 00110057 1 0 -basketball_team%1:14:00:: 08079852 1 1 -basketeer%1:18:00:: 09842047 1 0 -basketful%1:23:00:: 13765207 1 0 -basketmaker%1:18:00:: 09842288 1 0 -basketry%1:04:00:: 00607293 1 0 -basketweaver%1:18:00:: 09842288 1 0 -basking_shark%1:05:00:: 01485479 1 0 -basle%1:15:00:: 09032483 1 0 -basophil%1:08:00:: 05453523 1 0 -basophile%1:08:00:: 05453523 1 0 -basophilia%1:07:00:: 04944910 1 0 -basophilic%3:01:00:: 03008659 1 2 -basotho%1:18:00:: 09692125 1 0 -basque%1:10:00:: 06966695 2 0 -basque%1:18:00:: 09692250 1 0 -basque_fatherland_and_liberty%1:14:00:: 08018189 1 0 -basque_homeland_and_freedom%1:14:00:: 08018189 1 0 -basra%1:15:00:: 08914413 1 0 -bass%1:05:00:: 02565573 8 0 -bass%1:06:02:: 02803349 7 0 -bass%1:07:01:: 04986796 1 2 -bass%1:10:00:: 06872354 6 0 -bass%1:10:01:: 07032292 2 1 -bass%1:13:01:: 07777512 5 0 -bass%1:13:02:: 07777945 4 0 -bass%1:18:00:: 09842528 3 0 -bass%5:00:00:low:03 01215935 1 0 -bass_clarinet%1:06:00:: 02803539 1 0 -bass_clef%1:10:00:: 06862954 1 0 -bass_drum%1:06:00:: 02803666 1 0 -bass_fiddle%1:06:00:: 02803934 1 0 -bass_guitar%1:06:00:: 02804123 1 0 -bass_horn%1:06:00:: 02804252 1 0 -bass_part%1:10:00:: 07032292 1 0 -bass_viol%1:06:00:: 04536595 1 0 -bass_viol%1:06:01:: 02803934 2 0 -bass_voice%1:10:00:: 06872354 1 0 -bassariscidae%1:05:00:: 02508458 1 0 -bassariscus%1:05:00:: 02508615 1 0 -bassariscus_astutus%1:05:00:: 02508742 1 0 -bassarisk%1:05:00:: 02508742 1 0 -basse-normandie%1:15:00:: 08940936 1 0 -basset%1:05:00:: 02088238 1 0 -basset%2:30:00:: 00425845 1 0 -basset_horn%1:06:00:: 02803809 1 0 -basset_hound%1:05:00:: 02088238 1 0 -basset_oboe%1:06:00:: 03510866 1 0 -basseterre%1:15:00:: 08988068 1 0 -bassia%1:20:00:: 11831730 1 0 -bassia_scoparia%1:20:00:: 11831874 1 0 -bassine%1:20:00:: 12585967 1 0 -bassinet%1:06:00:: 02804414 1 1 -bassinet%1:06:01:: 02804515 2 0 -bassist%1:18:00:: 09842629 1 0 -basso%1:10:00:: 06872354 2 0 -basso%1:18:00:: 09842528 1 0 -basso_continuo%1:10:00:: 07032556 1 0 -basso_profundo%1:10:00:: 06872479 1 0 -basso_relievo%1:06:00:: 02803129 1 0 -basso_rilievo%1:06:00:: 02803129 1 0 -bassoon%1:06:00:: 02804610 1 0 -bassoonist%1:18:00:: 09842716 1 0 -basswood%1:20:00:: 12202936 2 0 -basswood%1:20:02:: 12203331 1 0 -bast%1:18:00:: 09512028 3 0 -bast%1:20:01:: 13098962 2 0 -bast%1:20:02:: 13099444 1 0 -bast_fiber%1:20:00:: 13099444 1 0 -bastard%1:06:00:: 02804772 3 0 -bastard%1:18:00:: 09815188 1 22 -bastard%1:18:01:: 09842823 2 0 -bastard%5:00:00:counterfeit:00 01117477 1 0 -bastard_feverfew%1:20:00:: 12001077 1 0 -bastard_indigo%1:20:00:: 12572759 1 0 -bastard_indigo%1:20:01:: 12504570 3 0 -bastard_indigo%1:20:02:: 12504783 2 0 -bastard_lignum_vitae%1:20:00:: 12722567 1 0 -bastard_pennyroyal%1:20:00:: 12871859 1 0 -bastard_pimpernel%1:20:00:: 12092930 1 0 -bastard_ridley%1:05:00:: 01664492 1 0 -bastard_title%1:10:00:: 06257772 1 0 -bastard_toadflax%1:20:00:: 12736228 1 0 -bastard_turtle%1:05:00:: 01664492 1 0 -bastard_wing%1:05:00:: 01897667 1 0 -bastard_yellowwood%1:20:00:: 11653570 1 0 -bastardisation%1:04:00:: 00272303 1 0 -bastardise%2:32:00:: 00818253 2 0 -bastardise%2:41:00:: 02580853 1 0 -bastardised%5:00:00:impure:02 01908755 1 0 -bastardization%1:04:00:: 00272303 2 0 -bastardization%1:10:00:: 06726478 1 0 -bastardize%2:32:00:: 00818253 2 0 -bastardize%2:41:00:: 02580853 1 0 -bastardized%5:00:00:impure:02 01908755 1 0 -bastardly%5:00:00:contemptible:00 00905039 2 0 -bastardly%5:00:00:illegitimate:00 01407909 1 0 -bastardy%1:26:00:: 13953215 1 0 -bastardy_proceeding%1:04:00:: 01183798 1 0 -baste%1:06:00:: 02805111 1 0 -baste%2:30:00:: 00321652 1 2 -baste%2:35:00:: 01331348 3 0 -baste%2:35:01:: 01417416 2 0 -baster%1:06:00:: 02805283 3 0 -baster%1:18:00:: 09843048 2 0 -baster%1:18:01:: 09843200 1 0 -bastille%1:06:00:: 02805443 2 0 -bastille%1:06:01:: 02805584 1 0 -bastille_day%1:28:00:: 15200493 1 0 -bastinado%1:04:00:: 00422114 2 0 -bastinado%1:06:00:: 02805845 1 0 -bastinado%2:35:00:: 01399921 1 0 -basting%1:04:01:: 00247955 2 0 -basting%1:06:00:: 02805111 1 0 -basting_stitch%1:06:00:: 02805111 1 0 -bastion%1:06:00:: 02805983 3 0 -bastion%1:06:01:: 02806088 2 0 -bastion%1:14:00:: 08064372 1 1 -bastioned%5:00:00:protected:00 01885275 1 0 -bastnaesite%1:27:00:: 14668065 1 0 -bastnasite%1:27:00:: 14668065 1 0 -basuco%1:06:00:: 02806274 1 0 -basuto%1:10:00:: 06995526 1 0 -basutoland%1:15:00:: 08958830 1 0 -bat%1:04:00:: 00458456 2 1 -bat%1:05:00:: 02139199 1 2 -bat%1:06:00:: 02806379 5 0 -bat%1:06:02:: 03132076 4 0 -bat%1:06:03:: 04292414 3 0 -bat%2:29:00:: 00008195 2 2 -bat%2:35:00:: 01412912 5 0 -bat%2:35:01:: 01413173 1 11 -bat%2:35:02:: 01413436 4 0 -bat%2:35:03:: 01413561 3 0 -bat_boy%1:18:00:: 09843443 1 0 -bat_mitzvah%1:11:00:: 07454196 1 0 -bat_mitzvah%2:41:00:: 02475109 1 0 -bata%1:10:00:: 06984556 1 0 -bataan%1:04:00:: 01270343 1 0 -batch%1:14:00:: 08400452 3 0 -batch%1:14:01:: 08400772 1 1 -batch%1:23:00:: 13774404 2 0 -batch%2:35:00:: 01386073 1 0 -batch_processing%1:22:00:: 13437902 1 0 -bate%2:30:00:: 00216801 3 0 -bate%2:38:00:: 02094057 2 0 -bate%2:41:00:: 02511075 1 0 -bateau_bridge%1:06:00:: 03981760 1 0 -bated%5:00:00:decreased:00 00882462 1 0 -batfish%1:05:00:: 02547733 1 0 -batfowl%2:35:00:: 01480025 1 0 -bath%1:04:00:: 00257770 2 2 -bath%1:06:00:: 02808440 3 1 -bath%1:06:01:: 02807731 6 0 -bath%1:06:02:: 02806530 1 5 -bath%1:15:00:: 08878202 5 0 -bath%1:23:00:: 13616560 4 0 -bath%2:29:00:: 00037919 1 0 -bath_asparagus%1:20:00:: 12460146 1 0 -bath_chair%1:06:00:: 02806762 1 0 -bath_linen%1:06:00:: 02807260 1 0 -bath_mat%1:06:00:: 02807401 1 0 -bath_mitzvah%1:11:00:: 07454196 1 0 -bath_oil%1:06:00:: 02807523 1 0 -bath_powder%1:06:00:: 04447276 1 0 -bath_salts%1:06:00:: 02808185 1 0 -bath_soap%1:06:00:: 04447965 1 0 -bath_towel%1:06:00:: 02808304 1 1 -bath_water%1:27:00:: 14773787 1 0 -bathe%1:04:00:: 00442437 1 0 -bathe%2:29:00:: 00035603 1 5 -bathe%2:29:01:: 00037919 3 0 -bathe%2:35:00:: 01582070 2 2 -bather%1:18:00:: 10683126 1 1 -bather%1:18:01:: 09843602 2 0 -bathetic%5:00:00:emotional:00 00854413 1 0 -bathhouse%1:06:00:: 02806875 2 0 -bathhouse%1:06:01:: 02806992 1 0 -bathing%1:04:00:: 00427853 1 1 -bathing%1:04:01:: 00255214 2 1 -bathing_cap%1:06:00:: 02807133 1 0 -bathing_costume%1:06:00:: 04371563 1 0 -bathing_machine%1:06:00:: 02806992 1 0 -bathing_suit%1:06:00:: 04371563 1 2 -bathing_trunks%1:06:00:: 04371430 1 0 -bathing_tub%1:06:00:: 02808440 1 0 -batholite%1:27:00:: 14932303 1 0 -batholith%1:27:00:: 14932303 1 0 -batholithic%3:01:00:: 02660164 1 0 -batholitic%3:01:00:: 02660164 1 0 -bathometer%1:06:00:: 02808695 1 0 -bathos%1:10:00:: 07068048 1 1 -bathos%1:10:01:: 06373991 3 0 -bathos%1:12:00:: 07482267 2 0 -bathrobe%1:06:00:: 02807616 1 2 -bathroom%1:06:00:: 02807731 1 6 -bathroom%1:06:01:: 04446276 2 0 -bathroom_cleaner%1:06:00:: 02807998 1 0 -bathroom_fixture%1:06:00:: 02808097 1 0 -bathroom_tissue%1:27:00:: 15075141 1 0 -bathsheba%1:18:00:: 10838288 1 0 -bathtub%1:06:00:: 02808440 1 2 -bathtub_gin%1:13:00:: 07902698 1 1 -bathyal%3:01:00:: 02974248 1 0 -bathyal_district%1:17:00:: 09255343 1 0 -bathyal_zone%1:17:00:: 09255343 1 0 -bathyergidae%1:05:00:: 02369012 1 0 -bathyergus%1:05:00:: 02369170 1 0 -bathymeter%1:06:00:: 02808695 1 0 -bathymetric%3:01:00:: 02660337 1 0 -bathymetrical%3:01:00:: 02660337 1 0 -bathymetry%1:04:00:: 00999089 1 0 -bathyscape%1:06:00:: 02808829 1 0 -bathyscaph%1:06:00:: 02808829 1 0 -bathyscaphe%1:06:00:: 02808829 1 0 -bathysphere%1:06:00:: 02808968 1 0 -batidaceae%1:20:00:: 11827169 1 0 -batik%1:06:00:: 02809105 1 0 -batik%2:30:00:: 00288814 1 0 -batis%1:20:00:: 11827348 1 0 -batis_maritima%1:20:00:: 11827541 1 0 -batiste%1:06:00:: 02809241 1 0 -batman%1:18:00:: 09843716 1 0 -batna%1:15:00:: 08706399 1 0 -batoidei%1:05:00:: 01496617 1 0 -batoko_palm%1:20:00:: 12378249 1 0 -baton%1:06:00:: 02809364 1 3 -baton%1:06:01:: 02809491 5 0 -baton%1:06:02:: 02809605 4 0 -baton%1:06:03:: 02809736 3 0 -baton%1:06:04:: 04491388 2 0 -baton_rouge%1:15:00:: 09091398 1 1 -baton_rouge_bridge%1:06:01:: 02809866 1 0 -baton_twirler%1:18:00:: 09843824 1 0 -batrachia%1:05:00:: 01639369 1 0 -batrachian%1:05:00:: 01639765 1 0 -batrachian%3:01:00:: 02631238 1 0 -batrachoididae%1:05:00:: 02548522 1 0 -batrachomyomachia%1:10:00:: 07184652 1 0 -batrachoseps%1:05:00:: 01637478 1 0 -bats%5:00:00:insane:00 02074929 1 0 -batsman%1:18:00:: 09843956 1 0 -batswana%1:18:00:: 09693618 1 0 -battalion%1:14:00:: 08214083 1 2 -battalion%1:23:00:: 13775093 2 0 -batten%1:06:00:: 02810008 2 0 -batten%1:06:01:: 02810930 1 0 -batten%2:35:00:: 01306292 2 0 -batten%2:35:01:: 01306425 1 0 -batten_down%2:35:00:: 01306425 1 0 -batter%1:13:00:: 07860805 2 0 -batter%1:18:00:: 09843956 1 2 -batter%2:30:00:: 00546609 3 0 -batter%2:35:00:: 01417416 2 0 -batter%2:35:01:: 01417705 1 3 -batter's_box%1:06:00:: 02810270 1 3 -batter-fried%5:00:00:cooked:00 00616748 1 0 -batter_bread%1:13:00:: 07689313 1 0 -battercake%1:13:00:: 07640203 1 0 -battered%5:00:00:abused:01 00017509 3 0 -battered%5:00:00:damaged:00 00679562 1 2 -battered%5:00:00:worn:00 02581254 2 1 -battering%1:04:00:: 01176115 1 0 -battering_ram%1:06:00:: 02810139 1 1 -battery%1:04:00:: 00768203 7 0 -battery%1:04:01:: 00987863 6 0 -battery%1:06:00:: 02810471 2 9 -battery%1:06:03:: 02810782 5 0 -battery%1:14:01:: 07953827 3 2 -battery%1:14:02:: 08389572 1 21 -battery%1:14:03:: 08077177 4 0 -battery-acid%1:06:00:: 02675657 1 0 -battery-powered%5:00:00:powered:00 01828706 1 0 -battery_acid%1:27:00:: 14773865 1 0 -battery_charger%1:06:00:: 03008976 1 0 -batting%1:04:00:: 00126584 1 2 -batting%1:06:00:: 02810930 2 0 -batting_average%1:24:00:: 13817872 1 2 -batting_average%1:24:01:: 13818143 2 1 -batting_cage%1:06:00:: 02811059 1 0 -batting_coach%1:18:00:: 09844221 1 1 -batting_glove%1:06:00:: 02811204 1 0 -batting_helmet%1:06:00:: 02811350 1 0 -batting_order%1:10:00:: 06486161 1 0 -battle%1:04:00:: 00953559 1 73 -battle%1:04:01:: 00788973 2 8 -battle%1:04:02:: 00958896 3 0 -battle%2:33:00:: 01092366 1 6 -battle-ax%1:06:00:: 02811468 1 1 -battle-ax%1:18:00:: 09844356 2 0 -battle-axe%1:06:00:: 02811468 2 0 -battle-axe%1:18:00:: 09844356 1 0 -battle-scarred%5:00:00:injured:00 01318252 1 0 -battle_born_state%1:15:00:: 09110422 1 0 -battle_cruiser%1:06:00:: 02811618 1 0 -battle_cry%1:10:00:: 07123404 1 8 -battle_cry%1:10:01:: 07152752 2 0 -battle_damage%1:11:00:: 07339808 1 0 -battle_dress%1:06:00:: 02811719 1 0 -battle_fatigue%1:26:00:: 14388596 1 0 -battle_flag%1:06:00:: 02811842 1 2 -battle_fleet%1:14:00:: 08293238 1 0 -battle_group%1:14:00:: 08213671 1 0 -battle_line%1:15:00:: 08595054 1 2 -battle_of_atlanta%1:04:00:: 01269633 1 0 -battle_of_austerlitz%1:04:00:: 01269857 1 0 -battle_of_boyne%1:04:00:: 01272787 1 0 -battle_of_britain%1:04:00:: 01270628 1 0 -battle_of_brunanburh%1:04:00:: 01273081 1 0 -battle_of_bull_run%1:04:00:: 01273491 1 0 -battle_of_bunker_hill%1:04:00:: 01273735 1 0 -battle_of_caporetto%1:04:00:: 01274171 1 0 -battle_of_chattanooga%1:04:00:: 01275389 1 0 -battle_of_chickamauga%1:04:00:: 01275697 1 0 -battle_of_cowpens%1:04:00:: 01276436 1 0 -battle_of_crecy%1:04:00:: 01276634 1 0 -battle_of_cunaxa%1:04:00:: 01276875 1 0 -battle_of_cynoscephalae%1:04:00:: 01277065 1 0 -battle_of_el_alamein%1:04:00:: 01278232 1 0 -battle_of_flodden_field%1:04:00:: 01278692 1 0 -battle_of_fontenoy%1:04:00:: 01278873 1 0 -battle_of_fredericksburg%1:04:00:: 01279342 1 0 -battle_of_gettysburg%1:04:00:: 01279615 1 0 -battle_of_granicus_river%1:04:00:: 01279866 1 0 -battle_of_guadalcanal%1:04:00:: 01280055 1 0 -battle_of_hastings%1:04:00:: 01280514 1 0 -battle_of_hohenlinden%1:04:00:: 01280792 1 0 -battle_of_ipsus%1:04:00:: 01281427 1 0 -battle_of_issus%1:04:00:: 01281638 1 0 -battle_of_ivry%1:04:00:: 01281813 1 0 -battle_of_jena%1:04:00:: 01282289 1 0 -battle_of_jutland%1:04:00:: 01282466 1 0 -battle_of_kerbala%1:04:00:: 01270860 1 0 -battle_of_lake_trasimenus%1:04:00:: 01283185 1 0 -battle_of_langside%1:04:00:: 01283389 1 0 -battle_of_lepanto%1:04:00:: 01283565 1 0 -battle_of_leuctra%1:04:00:: 01283753 1 0 -battle_of_little_bighorn%1:04:00:: 01284444 1 0 -battle_of_lule_burgas%1:04:00:: 01285101 1 0 -battle_of_lutzen%1:04:00:: 01285305 1 0 -battle_of_magenta%1:04:00:: 01285784 1 0 -battle_of_maldon%1:04:00:: 01286000 1 0 -battle_of_marathon%1:04:00:: 01286569 1 0 -battle_of_marston_moor%1:04:00:: 01286938 1 0 -battle_of_midway%1:04:00:: 01287782 1 0 -battle_of_minden%1:04:00:: 01288057 1 0 -battle_of_monmouth%1:04:00:: 01288272 1 0 -battle_of_monmouth_court_house%1:04:00:: 01288272 1 0 -battle_of_naseby%1:04:00:: 01288549 1 0 -battle_of_navarino%1:04:00:: 01288795 1 0 -battle_of_omdurman%1:04:00:: 01289444 1 0 -battle_of_panipat%1:04:00:: 01289997 1 0 -battle_of_pharsalus%1:04:00:: 01290711 1 0 -battle_of_philippi%1:04:00:: 01290840 1 0 -battle_of_pittsburgh_landing%1:04:00:: 01294502 1 0 -battle_of_plassey%1:04:00:: 01291310 1 0 -battle_of_plataea%1:04:00:: 01291517 1 0 -battle_of_poitiers%1:04:00:: 01291839 1 0 -battle_of_puebla%1:04:00:: 01292200 1 0 -battle_of_pydna%1:04:00:: 01292343 1 0 -battle_of_ravenna%1:04:00:: 01292553 1 0 -battle_of_rocroi%1:04:00:: 01292735 1 0 -battle_of_rossbach%1:04:00:: 01292928 1 0 -battle_of_saratoga%1:04:00:: 01294127 1 0 -battle_of_sempatch%1:04:00:: 01294330 1 0 -battle_of_shiloh%1:04:00:: 01294502 1 0 -battle_of_soissons-reims%1:04:00:: 01294791 1 0 -battle_of_solferino%1:04:00:: 01295153 1 0 -battle_of_spotsylvania_courthouse%1:04:00:: 01295918 1 0 -battle_of_st_mihiel%1:04:00:: 01293167 1 0 -battle_of_tannenberg%1:04:00:: 01296505 1 0 -battle_of_tertry%1:04:00:: 01296946 1 0 -battle_of_teutoburger_wald%1:04:00:: 01297095 1 0 -battle_of_tewkesbury%1:04:00:: 01297291 1 0 -battle_of_the_aisne%1:04:00:: 01294791 1 0 -battle_of_the_ardennes_bulge%1:04:00:: 01271107 1 0 -battle_of_the_bismarck_sea%1:04:00:: 01271669 1 0 -battle_of_the_bulge%1:04:00:: 01271107 1 0 -battle_of_the_chemin-des-dames%1:04:00:: 01294791 1 0 -battle_of_the_coral_sea%1:04:00:: 01276194 1 0 -battle_of_the_little_bighorn%1:04:00:: 01284444 1 0 -battle_of_the_marne%1:04:00:: 01271428 1 0 -battle_of_the_philippine_sea%1:04:00:: 01290997 1 0 -battle_of_the_somme%1:04:01:: 01295373 2 0 -battle_of_the_somme%1:04:02:: 01295528 1 0 -battle_of_the_spanish_armada%1:04:00:: 01295684 1 0 -battle_of_thermopylae%1:04:00:: 01297484 1 0 -battle_of_trafalgar%1:04:00:: 01297706 1 0 -battle_of_trasimeno%1:04:00:: 01297978 1 0 -battle_of_valmy%1:04:00:: 01298371 1 0 -battle_of_verdun%1:04:00:: 01298573 1 0 -battle_of_wagram%1:04:00:: 01299037 1 0 -battle_of_wake%1:04:00:: 01299224 1 0 -battle_of_wake_island%1:04:00:: 01299224 1 0 -battle_of_waterloo%1:04:00:: 01299476 1 0 -battle_of_wits%1:04:00:: 01168840 1 0 -battle_of_ypres%1:04:01:: 01300508 3 0 -battle_of_ypres%1:04:02:: 01300782 2 0 -battle_of_ypres%1:04:03:: 01301080 1 0 -battle_of_zama%1:04:00:: 01301423 1 0 -battle_plan%1:09:00:: 05902786 1 0 -battle_royal%1:04:00:: 00554200 1 0 -battle_sight%1:06:00:: 02812342 1 0 -battledore%1:04:00:: 00480885 2 0 -battledore%1:06:00:: 02772700 1 0 -battledore_and_shuttlecock%1:04:00:: 00480885 1 0 -battlefield%1:15:00:: 08506641 1 5 -battlefront%1:15:00:: 08573674 1 1 -battleful%5:00:00:aggressive:00 00082766 1 2 -battleground%1:15:00:: 08506641 1 1 -battlement%1:06:00:: 02811936 1 0 -battlemented%5:00:00:fancy:00 01796109 2 0 -battlemented%5:00:00:protected:00 01885382 1 0 -battler%1:18:00:: 09939313 1 0 -battleship%1:06:00:: 02812201 1 0 -battlesight%1:06:00:: 02812342 1 0 -battlewagon%1:06:00:: 02812201 1 0 -battue%1:04:00:: 00452734 1 0 -battue%1:04:01:: 00224260 2 0 -batty%5:00:00:insane:00 02074929 1 0 -batwing%1:06:00:: 02812505 1 1 -batwing%5:00:00:winged:00 02567473 1 0 -bauble%1:06:00:: 02787435 2 0 -bauble%1:10:00:: 07267702 1 0 -baud%1:23:00:: 13579679 1 0 -baud_rate%1:23:00:: 13579679 1 0 -baudelaire%1:18:00:: 10838484 1 0 -bauhaus%1:09:00:: 05841624 1 0 -bauhinia%1:20:00:: 12490671 1 0 -bauhinia_monandra%1:20:00:: 12490827 1 0 -bauhinia_variegata%1:20:00:: 12491017 1 0 -baulk%1:06:00:: 04045644 3 0 -baulk%1:09:00:: 05689249 2 0 -baulk%1:15:00:: 08516080 1 0 -baulk%2:41:00:: 02583545 1 0 -baulk-line%1:15:00:: 08516260 1 0 -baulker%1:18:00:: 09833997 1 0 -baum%1:18:00:: 10838665 1 0 -bauxite%1:27:00:: 14668277 1 0 -bauxitic%3:01:00:: 02660546 1 0 -bavaria%1:15:00:: 08771596 1 2 -bavarian%1:18:00:: 09844457 1 0 -bavarian%3:01:00:: 02969775 1 0 -bavarian_blue%1:13:00:: 07852532 1 0 -bavarian_cream%1:13:00:: 07620597 1 0 -bawbee%1:21:00:: 13389105 1 0 -bawd%1:18:00:: 10485440 1 0 -bawdily%4:02:00:: 00278188 1 0 -bawdiness%1:07:00:: 04903368 1 0 -bawdry%1:10:00:: 07124736 1 0 -bawdy%1:10:00:: 07124736 1 0 -bawdy%5:00:00:dirty:02 00424787 1 1 -bawdyhouse%1:06:00:: 04581595 1 1 -bawl%2:29:00:: 00066862 3 0 -bawl%2:32:00:: 01048569 1 8 -bawl%2:32:01:: 01046480 2 0 -bawl_out%2:32:00:: 00824767 1 0 -bawler%1:18:00:: 10533983 1 0 -bawler%1:18:01:: 09844566 2 0 -bawling%1:04:00:: 00868799 1 0 -bawling_out%1:10:00:: 06713187 1 0 -bay%1:05:00:: 02388917 7 0 -bay%1:06:00:: 02696048 6 0 -bay%1:06:01:: 02812631 5 0 -bay%1:06:02:: 02812785 4 0 -bay%1:11:00:: 07376836 2 1 -bay%1:17:00:: 09215664 1 7 -bay%1:20:00:: 11704093 3 0 -bay%2:32:00:: 01047951 2 0 -bay%2:32:01:: 01048073 1 1 -bay%5:00:00:colored:00 00395977 1 0 -bay-leaved_caper%1:20:00:: 11865574 1 0 -bay-rum_tree%1:20:00:: 12330891 1 0 -bay_grass%1:20:00:: 12120114 1 0 -bay_laurel%1:20:00:: 11704093 1 0 -bay_leaf%1:13:00:: 07816296 1 0 -bay_lynx%1:05:00:: 02127482 1 0 -bay_myrtle%1:20:00:: 11741575 1 0 -bay_of_bengal%1:17:00:: 09216442 1 0 -bay_of_biscay%1:17:00:: 09216588 1 0 -bay_of_campeche%1:17:00:: 09297729 1 0 -bay_of_fundy%1:17:00:: 09216781 1 0 -bay_of_naples%1:17:00:: 09216968 1 0 -bay_of_ob%1:17:00:: 09298974 1 0 -bay_rum%1:06:00:: 02813252 1 0 -bay_scallop%1:05:00:: 01966377 2 0 -bay_scallop%1:13:00:: 07798025 1 0 -bay_state%1:15:00:: 09095023 1 0 -bay_stater%1:18:00:: 09741432 1 0 -bay_tree%1:20:00:: 11704093 1 0 -bay_willow%1:20:00:: 12729521 1 0 -bay_window%1:06:00:: 02813399 2 0 -bay_window%1:08:00:: 05556071 1 0 -bay_wreath%1:06:00:: 03648804 1 0 -baya%1:05:00:: 01543175 1 0 -bayard%1:18:00:: 10838802 1 0 -bayat%1:10:00:: 07227055 1 0 -bayberry%1:20:01:: 12330891 1 0 -bayberry%1:20:02:: 11741797 2 0 -bayberry_tallow%1:20:00:: 11742003 1 0 -bayberry_wax%1:20:00:: 11742003 1 0 -baycol%1:06:00:: 02998209 1 0 -bayer%1:06:00:: 02748618 1 0 -bayes%1:18:00:: 10838997 1 0 -bayes'_postulate%1:09:00:: 05918704 1 0 -bayes'_theorem%1:09:00:: 05918379 1 0 -bayesian%3:01:00:: 02625430 1 0 -baykal%1:17:00:: 09242767 1 0 -bayonet%1:06:00:: 02812949 1 5 -bayonet%2:35:00:: 01231980 1 0 -bayonne%1:15:00:: 09113207 1 0 -bayonne_bridge%1:06:00:: 02813089 1 0 -bayou%1:17:00:: 09217086 1 0 -bayrut%1:15:00:: 08957806 1 0 -bayt_lahm%1:15:00:: 08795232 1 0 -bazaar%1:04:00:: 01118182 3 0 -bazaar%1:06:00:: 02813544 1 1 -bazaar%1:06:01:: 02813645 2 0 -bazar%1:06:00:: 02813544 2 0 -bazar%1:06:01:: 02813645 1 0 -bazooka%1:06:00:: 02813752 1 0 -bb%1:06:00:: 02813874 1 0 -bb_gun%1:06:00:: 02814116 1 0 -bb_shot%1:06:00:: 02813874 1 0 -bbl%1:23:01:: 13619920 1 0 -bbs%1:06:00:: 02916684 1 0 -bc%4:02:00:: 00002142 1 0 -bce%4:02:00:: 00002296 1 0 -bd%1:10:00:: 06699012 1 0 -bdellium%1:27:00:: 14898273 1 0 -be%1:27:00:: 14631295 1 0 -be%2:40:00:: 02268246 10 2 -be%2:41:00:: 02445925 8 86 -be%2:42:00:: 02603699 4 701 -be%2:42:01:: 02614181 11 1 -be%2:42:02:: 02620587 7 189 -be%2:42:03:: 02604760 1 10742 -be%2:42:04:: 02749904 5 698 -be%2:42:05:: 02655135 3 901 -be%2:42:06:: 02616386 2 3019 -be%2:42:07:: 02664769 6 270 -be%2:42:08:: 02697725 9 58 -be%2:42:09:: 02702508 13 0 -be%2:42:13:: 02744820 12 0 -be-all_and_end-all%1:09:00:: 05865454 1 0 -be_active%2:29:00:: 00014549 1 0 -be_adrift%2:38:00:: 01902783 1 0 -be_after%2:31:00:: 00705227 1 3 -be_all_and_end_all%1:09:00:: 05865454 1 0 -be_amiss%2:31:01:: 00619869 1 0 -be_at_pains%2:41:00:: 02531088 1 0 -be_born%2:30:00:: 00360932 1 52 -be_due%2:42:00:: 02634567 1 25 -be_full%2:34:00:: 01188342 1 0 -be_given%2:42:00:: 02719399 1 0 -be_intimate%2:35:00:: 01426397 1 2 -be_on%2:30:00:: 00424337 1 1 -be_on_cloud_nine%2:37:00:: 01813668 1 0 -be_on_the_ball%2:31:00:: 00596484 1 0 -be_quiet%2:32:00:: 01041061 1 1 -be_sick%2:29:01:: 00076400 1 0 -be_well%2:29:00:: 00065495 1 1 -be_with_it%2:31:00:: 00596484 1 0 -beach%1:17:00:: 09217230 1 14 -beach%2:38:00:: 01978947 1 0 -beach_aster%1:20:00:: 11966617 1 0 -beach_ball%1:06:00:: 02814224 1 0 -beach_buggy%1:06:00:: 03256788 1 0 -beach_chair%1:06:00:: 03168217 1 0 -beach_erosion%1:22:00:: 13438006 1 0 -beach_flea%1:05:00:: 01993214 1 0 -beach_goldenrod%1:20:00:: 12017664 1 0 -beach_grass%1:20:00:: 12103349 1 0 -beach_heather%1:20:00:: 12376740 1 0 -beach_house%1:06:00:: 02814338 1 0 -beach_morning_glory%1:20:00:: 12828628 1 0 -beach_pancake%1:20:00:: 11837562 1 0 -beach_pea%1:20:00:: 12540250 1 0 -beach_plum%1:13:00:: 07751977 2 0 -beach_plum%1:20:00:: 12639376 1 0 -beach_plum_bush%1:20:00:: 12639376 1 0 -beach_sand_verbena%1:20:00:: 11837743 1 0 -beach_strawberry%1:20:00:: 12630763 1 0 -beach_towel%1:06:00:: 02814428 1 0 -beach_waggon%1:06:00:: 02814533 1 0 -beach_wagon%1:06:00:: 02814533 1 0 -beach_wormwood%1:20:00:: 11931312 1 0 -beachball%1:06:00:: 02814224 1 0 -beachcomber%1:18:00:: 09844685 1 0 -beachfront%1:17:00:: 09217414 1 0 -beachhead%1:04:00:: 00036299 2 0 -beachhead%1:15:00:: 08689449 1 3 -beachwear%1:06:00:: 02814774 1 0 -beacon%1:06:00:: 04041930 2 0 -beacon%1:06:01:: 02814860 3 0 -beacon%1:10:00:: 07264213 1 1 -beacon%2:38:00:: 01933204 2 0 -beacon%2:39:00:: 02160433 1 0 -beacon_fire%1:10:00:: 07264213 1 0 -beacon_hill%1:15:00:: 09096190 1 0 -beacon_light%1:06:00:: 02814860 1 1 -bead%1:06:00:: 02815071 1 1 -bead%1:06:01:: 02815237 3 0 -bead%1:25:00:: 13901585 2 0 -bead%2:35:00:: 01360091 3 0 -bead%2:36:00:: 01670511 2 0 -bead%2:42:00:: 02625521 1 0 -bead_and_quirk%1:06:00:: 04035481 1 0 -bead_fern%1:20:00:: 13198914 1 0 -bead_tree%1:20:00:: 12553742 1 0 -beaded%5:00:00:covered:00 01695160 1 1 -beaded_lizard%1:05:00:: 01692523 1 0 -beading%1:06:00:: 02815237 2 0 -beading%1:06:01:: 02815389 1 0 -beading_plane%1:06:00:: 02815478 1 0 -beadle%1:18:00:: 09844770 1 1 -beadle%1:18:01:: 10839131 2 0 -beadlike%5:00:00:bright:00 00280245 1 0 -beads%1:06:00:: 02815600 1 0 -beadsman%1:18:00:: 09844898 1 1 -beadwork%1:06:00:: 02815237 2 0 -beadwork%1:06:01:: 02815389 1 0 -beady%5:00:00:adorned:00 00056660 2 0 -beady%5:00:00:bright:00 00280245 1 1 -beady-eyed%5:00:00:malicious:00 00225821 1 0 -beagle%1:05:00:: 02088364 1 0 -beagling%1:04:00:: 00452864 1 0 -beak%1:05:00:: 01758308 2 1 -beak%1:05:01:: 01758510 1 1 -beak%1:08:00:: 05598707 4 0 -beak%1:20:00:: 12875594 3 0 -beak%2:35:00:: 01243474 1 0 -beaked%3:00:00:: 00206403 1 0 -beaked_hazelnut%1:20:00:: 12289585 1 0 -beaked_parsley%1:20:00:: 12932706 1 0 -beaked_salmon%1:05:00:: 02529293 1 0 -beaked_whale%1:05:00:: 02068206 1 0 -beaker%1:06:00:: 02815749 2 0 -beaker%1:06:01:: 02815834 1 0 -beakless%3:00:00:: 00207467 1 0 -beaklike%5:00:00:beaked:00 00206627 1 0 -beam%1:06:00:: 02815950 2 9 -beam%1:06:01:: 02777292 7 0 -beam%1:06:02:: 02816381 6 0 -beam%1:07:00:: 05136546 5 0 -beam%1:10:00:: 06792645 1 9 -beam%1:19:00:: 11428023 4 3 -beam%1:19:01:: 11428379 3 3 -beam%2:29:00:: 00029214 1 5 -beam%2:32:00:: 00973056 4 1 -beam%2:32:01:: 01067380 3 1 -beam%2:37:01:: 01829747 6 0 -beam%2:39:03:: 02161530 5 0 -beam%2:43:03:: 02763740 2 1 -beam-ends%1:15:00:: 08511017 1 0 -beam_balance%1:06:00:: 02816494 1 0 -beam_of_light%1:19:00:: 11428023 1 0 -beam_scale%1:06:00:: 04312154 1 0 -beaming%5:00:00:bright:00 00280463 3 0 -beaming%5:00:00:cheerful:00 00362892 1 1 -beaming%5:00:00:proud:00 01890097 2 0 -beamish%5:00:00:cheerful:00 00363031 1 0 -beamy%5:00:00:bright:00 00280463 2 0 -beamy%5:00:00:wide:00 02561014 1 0 -bean%1:08:00:: 05539454 4 0 -bean%1:13:00:: 07724943 1 2 -bean%1:20:00:: 12556307 3 0 -bean%1:20:02:: 13136316 2 0 -bean%2:35:00:: 01400856 1 0 -bean-caper_family%1:20:00:: 12720532 1 0 -bean-shaped%5:00:00:rounded:00 02045255 1 0 -bean_aphid%1:05:00:: 02252972 1 0 -bean_beetle%1:05:00:: 02166229 1 0 -bean_blight%1:26:00:: 14217253 1 0 -bean_caper%1:20:00:: 12721122 1 0 -bean_counter%1:18:00:: 09845016 1 0 -bean_curd%1:13:00:: 07709881 1 0 -bean_dip%1:13:00:: 07582811 1 0 -bean_plant%1:20:00:: 12556307 1 0 -bean_sprout%1:13:00:: 07719616 1 0 -bean_tostada%1:13:00:: 07881525 1 0 -bean_town%1:15:00:: 09095751 1 0 -bean_tree%1:20:00:: 13108131 1 0 -bean_trefoil%1:20:00:: 12505752 1 0 -bean_weevil%1:05:00:: 02182642 1 0 -beanbag%1:06:00:: 02816656 1 0 -beanball%1:04:00:: 00107551 1 0 -beaner%1:04:00:: 00107551 1 0 -beanfeast%1:14:00:: 08254195 1 0 -beanie%1:06:00:: 02816768 1 0 -beano%1:04:00:: 00504660 1 0 -beanstalk%1:20:00:: 13129938 1 0 -beantown%1:15:00:: 09095751 1 0 -beany%1:06:00:: 02816768 1 0 -bear%1:05:00:: 02131653 1 1 -bear%1:18:00:: 09845191 2 0 -bear%2:29:00:: 00059019 13 0 -bear%2:29:01:: 00056930 2 17 -bear%2:29:02:: 00047745 9 1 -bear%2:31:00:: 00668099 3 13 -bear%2:35:00:: 01432601 4 10 -bear%2:35:01:: 01601234 12 0 -bear%2:36:00:: 01652139 5 6 -bear%2:40:00:: 02302220 11 0 -bear%2:40:01:: 02291708 8 4 -bear%2:40:02:: 02301825 6 5 -bear%2:41:00:: 02518161 10 0 -bear%2:42:01:: 02630871 1 23 -bear%2:42:14:: 02700867 7 4 -bear's-paw_fern%1:20:00:: 13174354 1 0 -bear's_breech%1:20:00:: 12812478 1 0 -bear's_breeches%1:20:00:: 12812478 1 0 -bear's_ear%1:20:00:: 12091806 1 0 -bear's_foot%1:20:00:: 11734093 1 0 -bear's_grape%1:20:00:: 12231358 1 0 -bear-sized%5:00:00:large:00 01383684 1 0 -bear_away%2:35:00:: 01434278 1 0 -bear_cat%1:05:00:: 02509815 1 0 -bear_claw%1:05:00:: 02156320 3 0 -bear_claw%1:06:00:: 02816895 2 0 -bear_claw%1:13:00:: 07692887 1 0 -bear_cub%1:05:00:: 01322983 1 0 -bear_down%2:32:01:: 00750979 6 0 -bear_down%2:32:12:: 00840980 5 0 -bear_down%2:33:00:: 01082023 4 0 -bear_down%2:33:03:: 01121719 3 0 -bear_down%2:35:00:: 01597096 1 1 -bear_down%2:35:01:: 01389186 2 0 -bear_down_on%2:35:00:: 01597096 2 0 -bear_down_on%2:38:00:: 01927992 1 2 -bear_down_upon%2:38:00:: 01927992 1 0 -bear_grass%1:20:01:: 12480004 3 0 -bear_grass%1:20:02:: 12483625 2 0 -bear_grass%1:20:03:: 12484029 1 0 -bear_grass%1:20:04:: 12465557 4 0 -bear_hug%1:04:00:: 00813220 1 0 -bear_hug%1:04:01:: 00174782 2 0 -bear_in_mind%2:31:00:: 00609506 1 2 -bear_market%1:14:00:: 08073130 1 0 -bear_oak%1:20:00:: 12272735 1 0 -bear_off%2:35:00:: 01434278 1 0 -bear_on%2:30:00:: 00137313 2 2 -bear_on%2:32:00:: 00765977 3 1 -bear_on%2:42:00:: 02676054 1 2 -bear_on%2:42:01:: 02679899 4 0 -bear_out%2:42:00:: 02663340 1 3 -bear_paw%1:13:00:: 07692887 1 0 -bear_up%2:31:00:: 00669243 1 1 -bear_upon%2:30:00:: 00137313 1 1 -bear_witness%2:32:00:: 01014821 2 1 -bear_witness%2:32:02:: 01015244 1 1 -bearable%5:00:00:tolerable:00 02435206 1 0 -bearberry%1:20:01:: 12231192 3 0 -bearberry%1:20:02:: 12757303 2 0 -bearberry%1:20:03:: 13141564 1 0 -bearberry_willow%1:20:00:: 12730776 1 0 -bearcat%1:05:00:: 02136103 1 0 -beard%1:05:00:: 01955318 5 0 -beard%1:05:01:: 02416270 4 0 -beard%1:08:00:: 05261566 1 8 -beard%1:18:00:: 09845401 3 0 -beard%1:20:00:: 13090594 2 0 -beard%2:42:00:: 02687730 1 1 -beard_lichen%1:20:00:: 12989938 1 0 -beard_moss%1:20:00:: 12989938 1 0 -beard_worm%1:05:00:: 01928865 1 0 -bearded%5:00:00:awned:00 00217075 2 0 -bearded%5:00:00:unshaven:00 02153965 1 10 -bearded_darnel%1:20:00:: 12125183 1 0 -bearded_iris%1:20:00:: 12412355 1 0 -bearded_seal%1:05:00:: 02080713 1 0 -bearded_vulture%1:05:00:: 01617443 1 0 -bearded_wheatgrass%1:20:00:: 12105828 1 0 -beardless%5:00:00:hairless:00 00211092 2 0 -beardless%5:00:00:shaven:00 02153620 1 0 -beardless_iris%1:20:00:: 12412606 1 0 -beardown%5:00:00:strong:00 02321575 1 1 -bearer%1:18:00:: 10311243 2 1 -bearer%1:18:01:: 10395073 3 0 -bearer%1:18:02:: 10179911 4 0 -bearer%1:18:03:: 09897696 1 3 -bearer_bond%1:21:00:: 13338066 1 0 -bearer_of_the_sword%1:14:00:: 08010559 1 0 -bearing%1:06:00:: 02817031 6 0 -bearing%1:06:01:: 03008565 5 0 -bearing%1:07:00:: 04910377 3 1 -bearing%1:07:01:: 05002822 4 0 -bearing%1:15:00:: 08680888 2 1 -bearing%1:24:01:: 13795695 1 1 -bearing%3:00:00:: 00217297 1 0 -bearing_brass%1:27:00:: 14773989 1 0 -bearing_false_witness%1:04:00:: 00772381 1 0 -bearing_metal%1:27:00:: 14719597 1 0 -bearing_rein%1:06:00:: 02817251 1 0 -bearing_wall%1:06:00:: 02817386 1 0 -bearish%5:00:00:pessimistic:00 01664783 1 0 -bearnaise%1:13:00:: 07835547 1 0 -bearskin%1:06:00:: 02817516 2 0 -bearskin%1:27:00:: 14764518 1 0 -bearwood%1:20:00:: 13141564 1 0 -beast%1:03:00:: 00015388 1 4 -beast%1:18:00:: 09845589 2 1 -beast_of_burden%1:05:00:: 01317089 1 0 -beastliness%1:07:01:: 04781967 2 0 -beastliness%1:07:02:: 04845684 1 0 -beastly%4:02:00:: 00269032 1 0 -beastly%5:00:00:inhumane:00 01263445 2 0 -beastly%5:00:00:unpleasant:00 01802774 1 0 -beat%1:04:00:: 00314094 10 0 -beat%1:04:01:: 00547616 9 0 -beat%1:07:00:: 05058893 8 0 -beat%1:10:00:: 07086518 3 1 -beat%1:10:02:: 07094093 7 0 -beat%1:11:00:: 07400906 2 1 -beat%1:11:01:: 07376937 6 0 -beat%1:15:00:: 08507381 1 1 -beat%1:18:00:: 09845849 5 0 -beat%1:19:00:: 11477710 4 0 -beat%2:29:00:: 00075421 23 0 -beat%2:31:00:: 00622384 22 0 -beat%2:33:00:: 01101913 1 18 -beat%2:33:14:: 01104852 21 0 -beat%2:35:00:: 01398919 3 8 -beat%2:35:01:: 01397210 2 9 -beat%2:35:03:: 01418179 10 1 -beat%2:35:10:: 01399576 11 1 -beat%2:35:12:: 01399450 20 0 -beat%2:36:00:: 01624897 5 3 -beat%2:36:02:: 01756006 18 0 -beat%2:36:05:: 01726879 19 0 -beat%2:38:00:: 01880113 4 4 -beat%2:38:01:: 01945938 9 1 -beat%2:38:02:: 02093390 15 0 -beat%2:38:03:: 01880673 16 0 -beat%2:38:04:: 02093610 8 1 -beat%2:38:13:: 01879579 17 0 -beat%2:39:00:: 02174830 6 2 -beat%2:39:01:: 02175578 14 0 -beat%2:39:03:: 02162815 7 1 -beat%2:41:03:: 02573853 13 0 -beat%2:42:00:: 02746140 12 0 -beat%5:00:00:tired:00 02432154 1 0 -beat-up%5:00:00:damaged:00 00679562 1 1 -beat_a_retreat%2:38:00:: 02009347 1 0 -beat_about%2:31:00:: 00649362 1 0 -beat_around_the_bush%2:32:00:: 00835506 1 0 -beat_back%2:35:00:: 01506157 1 0 -beat_down%2:38:00:: 01883550 3 0 -beat_down%2:39:00:: 02160321 2 0 -beat_down%2:40:00:: 02259387 1 0 -beat_generation%1:14:00:: 08369615 1 0 -beat_in%2:31:00:: 00606471 1 0 -beat_out%2:33:00:: 01101913 1 2 -beat_out%2:38:00:: 01880560 2 0 -beat_up%2:35:00:: 01385643 2 0 -beat_up%2:35:01:: 01397210 1 0 -beatable%5:00:00:conquerable:00 00569304 1 0 -beaten%3:44:00:: 03147543 1 0 -beaten%5:00:00:familiar:00 00966037 2 0 -beaten-up%5:00:00:damaged:00 00679562 1 0 -beater%1:06:00:: 02817650 2 0 -beater%1:18:00:: 09845737 1 0 -beatific%5:00:00:good:02 01130261 2 0 -beatific%5:00:00:joyful:00 01363824 1 0 -beatification%1:04:00:: 01040128 3 0 -beatification%1:04:01:: 01265475 2 0 -beatification%1:26:00:: 13987719 1 0 -beatified%5:00:00:holy:00 02054075 1 0 -beatify%2:32:00:: 00822912 3 0 -beatify%2:37:01:: 01812068 2 0 -beatify%2:37:03:: 01812324 1 0 -beating%1:04:00:: 01160729 2 0 -beating%1:04:01:: 01176219 1 1 -beating-reed_instrument%1:06:00:: 02817799 1 0 -beatitude%1:10:00:: 06301012 2 0 -beatitude%1:26:00:: 13987719 1 0 -beatles%1:14:00:: 08369920 1 0 -beatnik%1:18:00:: 09845849 1 1 -beatniks%1:14:00:: 08369615 1 0 -beatrice%1:18:00:: 09589876 1 0 -beatrice_lillie%1:18:00:: 11132117 1 0 -beatrice_webb%1:18:00:: 11378087 1 0 -beats%1:14:00:: 08369615 1 0 -beats_per_minute%1:28:00:: 15286042 1 0 -beau%1:18:00:: 09871364 1 1 -beau%1:18:01:: 09991026 2 0 -beau_brummell%1:18:00:: 10868397 1 0 -beau_geste%1:04:00:: 01228544 1 0 -beau_ideal%1:09:00:: 05924519 1 0 -beau_monde%1:14:00:: 08387930 1 0 -beaufort_scale%1:23:00:: 13648947 2 0 -beaufort_scale%1:24:00:: 13850674 1 0 -beaufort_sea%1:17:00:: 09217508 1 0 -beaugregory%1:05:00:: 02606751 1 0 -beaujolais%1:13:00:: 07894102 1 0 -beaumont%1:15:00:: 09143205 3 0 -beaumont%1:18:00:: 10839329 2 0 -beaumont%1:18:01:: 10839469 1 0 -beaumontia%1:20:00:: 11770969 1 0 -beaumontia_grandiflora%1:20:00:: 11771147 1 0 -beaut%1:09:00:: 05925702 1 0 -beauteous%5:00:00:beautiful:00 00218305 1 0 -beauteousness%1:07:00:: 04685396 1 0 -beautician%1:18:00:: 09845999 1 0 -beautification%1:04:00:: 00261604 1 0 -beautiful%3:00:00:: 00217728 1 25 -beautiful%5:00:00:pleasant:00 01800764 2 0 -beautifully%4:02:00:: 00242006 1 6 -beautify%2:30:00:: 00293141 1 1 -beautify%2:36:00:: 01675963 3 0 -beautify%2:42:00:: 02748927 2 0 -beauty%1:07:00:: 04683814 1 16 -beauty%1:09:00:: 05925702 3 1 -beauty%1:18:00:: 10613996 2 1 -beauty_bush%1:20:00:: 12672631 1 0 -beauty_consultant%1:18:00:: 09846142 1 0 -beauty_parlor%1:06:00:: 04131208 1 0 -beauty_parlour%1:06:00:: 04131208 1 0 -beauty_quark%1:17:00:: 09227530 1 0 -beauty_salon%1:06:00:: 04131208 1 0 -beauty_shop%1:06:00:: 04131208 1 0 -beauty_sleep%1:28:00:: 15273875 1 0 -beauty_spot%1:06:00:: 02818027 1 0 -beauty_treatment%1:04:00:: 00261797 1 0 -beauvoir%1:18:00:: 10839617 1 0 -beaux_arts%1:09:00:: 06156968 1 0 -beaver%1:05:00:: 02363005 7 0 -beaver%1:06:00:: 02818135 6 0 -beaver%1:06:01:: 02818254 5 0 -beaver%1:06:02:: 03237416 4 0 -beaver%1:08:00:: 05262120 3 0 -beaver%1:18:00:: 09745229 2 0 -beaver%1:27:00:: 14764617 1 0 -beaver%2:41:00:: 02414913 1 0 -beaver_away%2:41:00:: 02414913 1 0 -beaver_board%1:06:00:: 02818402 1 0 -beaver_fur%1:27:00:: 14764617 1 0 -beaver_rat%1:05:00:: 02335231 1 0 -beaver_state%1:15:00:: 09133010 1 0 -beaverbrook%1:18:00:: 10839791 1 0 -bebop%1:10:00:: 07063101 1 0 -bebop%2:38:00:: 01895263 1 0 -becalm%2:30:00:: 00416571 1 0 -becalmed%5:00:00:nonmoving:00 01564512 1 0 -bechamel%1:13:00:: 07837362 1 0 -bechamel_sauce%1:13:00:: 07837362 1 0 -bechance%2:30:00:: 00344643 2 0 -bechance%2:30:01:: 00345000 1 0 -becharm%2:37:00:: 01806505 2 0 -becharm%2:41:00:: 02586458 1 0 -bechtel_crab%1:20:00:: 12635955 1 0 -bechuana%1:18:00:: 09693618 1 0 -beck%1:10:00:: 06877008 1 0 -becker_muscular_dystrophy%1:26:00:: 14161075 1 0 -becket%1:06:00:: 02818507 2 0 -becket%1:18:00:: 10840021 1 0 -becket_bend%1:06:00:: 04189092 1 0 -beckett%1:18:00:: 10840354 1 0 -beckley%1:15:00:: 09155692 1 0 -beckman_thermometer%1:06:00:: 02818687 1 0 -beckon%2:32:00:: 01041415 1 9 -beckon%2:32:01:: 01041644 3 0 -beckon%2:37:00:: 01807051 2 1 -becloud%2:39:00:: 02157731 1 0 -become%2:30:00:: 00149583 1 327 -become%2:42:00:: 02623529 3 5 -become%2:42:01:: 02626604 2 220 -become%2:42:03:: 02724258 4 0 -become_flat%2:30:01:: 00538323 1 0 -becoming%5:00:00:flattering:00 00907972 2 0 -becoming%5:00:00:proper:00 01878870 1 0 -becomingly%4:02:00:: 00278259 1 0 -becomingness%1:07:00:: 04900597 1 0 -becquerel%1:18:00:: 10840563 1 0 -bed%1:06:00:: 02818832 1 51 -bed%1:06:01:: 02819474 2 3 -bed%1:06:02:: 02819697 8 0 -bed%1:06:03:: 02819881 7 0 -bed%1:06:04:: 03650173 6 0 -bed%1:15:00:: 08659076 5 0 -bed%1:17:00:: 09217638 3 2 -bed%1:17:01:: 09217867 4 0 -bed%2:29:00:: 00017865 5 0 -bed%2:35:00:: 01426397 4 0 -bed%2:35:01:: 01500082 3 0 -bed%2:35:02:: 01567653 2 0 -bed%2:40:00:: 02337066 1 0 -bed-and-breakfast%1:06:00:: 02820085 1 0 -bed-ground%1:15:00:: 08499357 1 0 -bed-hop%2:38:00:: 02095390 1 0 -bed-wetting%1:22:00:: 13438088 1 0 -bed_and_breakfast%1:06:00:: 02820085 1 0 -bed_bug%1:05:00:: 02240517 1 0 -bed_check%1:09:00:: 05825688 1 0 -bed_clothing%1:06:00:: 02820210 1 0 -bed_cover%1:06:00:: 02822220 1 0 -bed_covering%1:06:00:: 02822220 1 0 -bed_down%2:29:00:: 00017531 1 1 -bed_ground%1:15:00:: 08499357 1 0 -bed_jacket%1:06:00:: 02820675 1 0 -bed_linen%1:06:00:: 02821030 1 1 -bed_of_flowers%1:06:00:: 03368352 1 0 -bed_of_roses%1:06:00:: 04109471 1 0 -bed_pillow%1:06:00:: 02821328 1 0 -bed_rest%1:04:00:: 01064468 1 0 -bed_sheet%1:06:00:: 04188179 1 0 -bed_wetter%1:18:00:: 09846586 1 0 -beda%1:18:00:: 10840769 1 0 -bedamn%2:32:00:: 00865958 1 1 -bedaub%2:35:00:: 01251828 1 0 -bedaubed%5:00:00:adorned:00 00056849 1 0 -bedaze%2:39:00:: 02115430 1 0 -bedazzle%2:39:00:: 02162434 1 0 -bedbug%1:05:00:: 02240517 1 0 -bedchamber%1:06:00:: 02821627 1 0 -bedclothes%1:06:00:: 02820210 1 0 -bedcover%1:06:00:: 02822220 1 0 -bedded%3:00:00:: 00207547 2 0 -bedded%3:00:04:: 00208229 1 0 -bedder%1:20:00:: 13083461 1 0 -bedding%1:06:00:: 02820210 1 3 -bedding%1:06:01:: 02820432 2 0 -bedding_geranium%1:20:00:: 12687698 1 0 -bedding_material%1:06:00:: 02820432 1 0 -bedding_plant%1:20:00:: 13083461 1 0 -bede%1:18:00:: 10840769 1 0 -bedeck%2:36:00:: 01679980 1 0 -bedesman%1:18:00:: 09844898 1 0 -bedevil%2:31:00:: 00621734 2 0 -bedevil%2:37:00:: 01803003 1 0 -bedevilment%1:04:00:: 00425278 1 0 -bedew%2:30:00:: 00215254 1 0 -bedewed%5:00:00:wet:01 02547862 1 0 -bedfast%5:00:00:ill:01 02543034 1 1 -bedfellow%1:18:00:: 09846265 2 0 -bedfellow%1:18:01:: 09846355 1 0 -bedford_cord%1:06:00:: 02820556 1 0 -bedframe%1:06:00:: 02822579 1 0 -bedground%1:15:00:: 08499357 1 1 -bedhop%2:38:00:: 02095390 1 0 -bedight%2:36:00:: 01679980 1 0 -bedim%2:30:00:: 00313860 1 0 -bedim%2:30:01:: 00313712 2 0 -bedimmed%5:00:00:indistinct:00 00781539 1 0 -bedizen%2:29:00:: 00045240 2 0 -bedizen%2:36:00:: 01679254 1 0 -bedlam%1:06:00:: 02820798 2 0 -bedlam%1:26:00:: 13976322 1 0 -bedlamite%1:18:00:: 10276942 1 0 -bedless%3:00:00:: 00207961 1 0 -bedlington_terrier%1:05:00:: 02093647 1 0 -bedloe's_island%1:15:00:: 09114401 1 0 -bedouin%1:18:00:: 09846469 1 0 -bedpan%1:06:00:: 02821202 1 0 -bedpost%1:06:00:: 02821415 1 1 -bedraggle%2:30:00:: 00216692 1 0 -bedraggled%5:00:00:damaged:00 00679717 2 0 -bedraggled%5:00:00:dirty:01 00420287 1 2 -bedrest%1:04:00:: 01064468 1 0 -bedrich_smetana%1:18:00:: 11305159 1 0 -bedrid%5:00:00:ill:01 02543034 1 0 -bedridden%5:00:00:ill:01 02543034 1 0 -bedrock%1:09:00:: 05871362 2 0 -bedrock%1:17:00:: 09218044 1 0 -bedroll%1:06:00:: 02821543 1 0 -bedroom%1:06:00:: 02821627 1 22 -bedroom_community%1:15:00:: 08555001 1 0 -bedroom_furniture%1:06:00:: 02821943 1 0 -bedroom_set%1:14:00:: 08007667 1 1 -bedroom_suite%1:14:00:: 08007667 1 0 -bedside%1:15:00:: 08649711 1 1 -bedside_manner%1:07:00:: 04910562 1 0 -bedsit%1:06:00:: 02822064 1 0 -bedsitter%1:06:00:: 02822064 1 0 -bedsitting_room%1:06:00:: 02822064 1 0 -bedsore%1:26:00:: 14212126 1 0 -bedspread%1:06:00:: 02822220 1 0 -bedspring%1:06:00:: 02822399 1 0 -bedstead%1:06:00:: 02822579 1 1 -bedstraw%1:20:00:: 12665048 1 0 -bedtime%1:28:00:: 15168475 1 1 -beduin%1:18:00:: 09846469 1 0 -bedwetter%1:18:00:: 09846586 1 0 -bee%1:05:00:: 02206856 1 20 -bee%1:14:00:: 07975909 2 0 -bee_balm%1:20:01:: 12854600 3 0 -bee_balm%1:20:02:: 12858397 2 0 -bee_balm%1:20:03:: 12858871 1 0 -bee_beetle%1:05:00:: 02171164 1 0 -bee_eater%1:05:00:: 01828970 1 0 -bee_fly%1:05:00:: 02195819 1 0 -bee_house%1:06:00:: 02727426 1 0 -bee_killer%1:05:00:: 02196119 1 0 -bee_moth%1:05:00:: 02289307 1 0 -bee_orchid%1:20:00:: 12074867 1 0 -bee_sting%1:26:00:: 14287741 1 0 -beebalm%1:20:01:: 12854600 3 0 -beebalm%1:20:02:: 12858397 2 0 -beebalm%1:20:03:: 12858871 1 0 -beebread%1:27:00:: 14774090 1 7 -beech%1:20:00:: 12260799 1 2 -beech%1:20:02:: 12261179 2 0 -beech_family%1:20:00:: 12260208 1 0 -beech_fern%1:20:00:: 13230662 1 0 -beech_marten%1:05:00:: 02450677 1 0 -beech_tree%1:20:00:: 12260799 1 0 -beechen%5:00:00:woody:00 02575733 1 0 -beecher%1:18:00:: 10841065 1 0 -beechnut%1:13:00:: 07771082 1 0 -beechwood%1:20:00:: 12261179 1 0 -beef%1:05:00:: 02404186 1 6 -beef%1:10:00:: 07209965 3 0 -beef%1:13:00:: 07663592 2 3 -beef%2:32:00:: 00910973 1 0 -beef_bourguignonne%1:13:00:: 07862461 1 0 -beef_broth%1:13:00:: 07585015 1 0 -beef_burrito%1:13:00:: 07881117 1 0 -beef_cattle%1:05:00:: 02404186 1 2 -beef_fondue%1:13:00:: 07868045 1 0 -beef_goulash%1:13:00:: 07590752 1 0 -beef_jerky%1:13:00:: 07664936 1 0 -beef_loin%1:13:00:: 07658814 1 0 -beef_man%1:18:00:: 09902017 1 1 -beef_neck%1:13:00:: 07661486 1 0 -beef_patty%1:13:00:: 07664121 1 0 -beef_plant%1:20:00:: 11826715 1 0 -beef_roast%1:13:00:: 07663796 1 0 -beef_stew%1:13:00:: 07592481 1 0 -beef_stock%1:13:00:: 07585015 1 0 -beef_stroganoff%1:13:00:: 07878145 1 0 -beef_tallow%1:27:00:: 14774397 1 0 -beef_tea%1:13:00:: 07810633 1 0 -beef_tenderloin%1:13:00:: 07659968 1 0 -beef_tongue%1:13:00:: 07653126 1 0 -beef_up%2:30:00:: 00220869 1 1 -beef_wellington%1:13:00:: 07862611 1 0 -beefalo%1:05:00:: 02407763 1 0 -beefburger%1:13:00:: 07697100 1 0 -beefcake%1:06:00:: 02822762 1 0 -beefeater%1:18:00:: 10803691 1 0 -beefed-up%5:00:00:strong:00 02321702 1 1 -beefsteak%1:13:00:: 07658168 1 0 -beefsteak_begonia%1:20:00:: 12361560 1 0 -beefsteak_fungus%1:20:00:: 13053608 1 0 -beefsteak_geranium%1:20:00:: 12361946 1 0 -beefsteak_morel%1:20:00:: 13038068 1 0 -beefsteak_plant%1:20:01:: 11826715 2 0 -beefsteak_plant%1:20:02:: 12860978 1 0 -beefsteak_tomato%1:13:00:: 07734183 1 0 -beefwood%1:20:00:: 12774299 1 0 -beefwood%1:20:01:: 12225349 3 0 -beefwood%1:20:02:: 12218490 5 0 -beefwood%1:20:03:: 12223160 4 0 -beefwood%1:20:04:: 12225769 2 0 -beefy%5:00:00:robust:00 02038126 1 1 -beehive%1:06:00:: 02822865 4 0 -beehive%1:06:01:: 02823030 1 1 -beehive%1:08:00:: 05257393 3 0 -beehive%1:17:00:: 09218159 2 0 -beehive_state%1:15:00:: 09147046 1 0 -beekeeper%1:18:00:: 09846755 1 0 -beekeeping%1:04:00:: 00916285 1 0 -beeline%1:15:00:: 08616872 1 0 -beelzebub%1:18:00:: 09543353 1 0 -beep%1:11:00:: 07377082 1 0 -beep%2:32:01:: 00791372 2 0 -beep%2:39:00:: 02183175 1 0 -beeper%1:06:00:: 02823124 1 0 -beer%1:13:00:: 07886849 1 18 -beer_barrel%1:06:00:: 02823335 1 0 -beer_bottle%1:06:00:: 02823428 1 2 -beer_can%1:06:00:: 02823510 1 0 -beer_drinker%1:18:00:: 09846894 1 0 -beer_garden%1:06:00:: 02823586 1 0 -beer_glass%1:06:00:: 02823750 1 0 -beer_hall%1:06:00:: 02823848 1 0 -beer_keg%1:06:00:: 02823335 1 0 -beer_maker%1:18:00:: 09874118 1 0 -beer_mat%1:06:00:: 02823964 1 0 -beer_mug%1:06:00:: 02824058 1 0 -beerbohm%1:18:00:: 10841241 1 0 -beery%5:00:00:intoxicated:00 00798017 1 0 -beeswax%1:27:00:: 15094824 1 0 -beeswax%2:35:00:: 01268870 1 0 -beet%1:13:00:: 07719839 2 0 -beet%1:20:00:: 11832214 1 0 -beet_armyworm%1:05:00:: 02297938 1 0 -beet_blight%1:26:00:: 14216152 1 0 -beet_green%1:13:00:: 07719980 1 0 -beet_sugar%1:13:00:: 07596258 2 0 -beet_sugar%1:27:00:: 14774491 1 0 -beethoven%1:10:00:: 07278014 2 0 -beethoven%1:18:00:: 10841405 1 0 -beethovenian%3:01:00:: 03028987 1 0 -beetle%1:05:00:: 02164464 1 1 -beetle%1:06:00:: 03715386 2 0 -beetle%2:35:00:: 01399821 3 0 -beetle%2:38:00:: 02103612 2 0 -beetle%2:42:00:: 02697435 1 0 -beetle%5:00:00:protrusive:00 01353516 1 0 -beetle-browed%5:00:00:unfriendly:01 01077158 1 0 -beetle_off%2:38:00:: 02011040 1 0 -beetleweed%1:20:00:: 12251278 1 0 -beetling%5:00:00:protrusive:00 01353516 1 0 -beetroot%1:13:00:: 07719839 2 0 -beetroot%1:20:00:: 11832480 1 0 -befall%2:30:00:: 00344643 2 0 -befall%2:30:01:: 00345000 1 3 -befit%2:42:00:: 02699941 1 2 -befitting%5:00:00:appropriate:00 00135092 1 0 -befittingly%4:02:00:: 00139508 1 0 -befog%2:39:00:: 02157731 1 1 -befogged%5:00:00:confused:00 00436385 1 0 -befool%2:32:00:: 00854904 2 0 -befool%2:41:00:: 02576349 1 0 -befooling%1:10:00:: 06716992 1 0 -before%4:02:01:: 00066781 2 0 -before%4:02:03:: 00060939 1 68 -before_christ%4:02:00:: 00002142 1 0 -before_long%4:02:00:: 00033922 1 1 -beforehand%4:02:00:: 00067045 1 0 -beforehand%5:00:00:early:00 00813915 1 0 -befoul%2:30:00:: 00492410 1 0 -befouled%5:00:00:dirty:01 00420480 1 0 -befoulment%1:26:00:: 14498404 1 0 -befriend%2:41:00:: 02588677 1 1 -befuddle%2:31:00:: 00621734 1 1 -befuddle%2:34:00:: 01190741 2 0 -befuddled%5:00:00:perplexed:00 01766133 2 0 -befuddled%5:00:01:confused:00 00436115 3 0 -befuddled%5:00:02:confused:00 00436385 1 1 -befuddlement%1:09:00:: 05685030 1 0 -beg%2:32:00:: 00759269 1 11 -beg%2:32:01:: 00782057 2 5 -beg%2:32:02:: 00810226 4 0 -beg%2:40:00:: 02270815 3 2 -beg_off%2:32:00:: 00894221 1 0 -beget%2:29:00:: 00054628 1 2 -begetter%1:18:00:: 10080869 1 0 -beggar%1:18:00:: 09847010 1 1 -beggar%2:40:00:: 02317970 2 0 -beggar%2:42:00:: 02707681 1 0 -beggar's-ticks%1:20:00:: 11940006 1 0 -beggar's_lice%1:20:00:: 12820113 1 0 -beggar's_lice%1:20:02:: 12526516 2 0 -beggar-my-neighbor%1:04:00:: 00490155 1 0 -beggar-my-neighbor_policy%1:09:00:: 05902014 1 0 -beggar-my-neighbor_strategy%1:09:00:: 05902014 1 0 -beggar-my-neighbour%1:04:00:: 00490155 1 0 -beggar-my-neighbour_policy%1:09:00:: 05902014 1 0 -beggar-my-neighbour_strategy%1:09:00:: 05902014 1 0 -beggar-ticks%1:20:01:: 11940006 2 0 -beggar-ticks%1:20:02:: 11940478 1 0 -beggar_lice%1:20:00:: 12820113 1 0 -beggar_lice%1:20:02:: 12526516 2 0 -beggarly%5:00:00:poor:03 02025718 1 0 -beggarly%5:00:00:stingy:00 01112969 2 0 -beggarman%1:18:00:: 09847267 1 0 -beggarweed%1:20:00:: 12526754 1 0 -beggarwoman%1:18:00:: 09847344 1 0 -beggary%1:10:00:: 07187996 1 1 -beggary%1:26:00:: 14494032 2 0 -begging%1:10:00:: 07187996 1 0 -begild%2:36:00:: 01683101 1 0 -begin%1:18:00:: 10841657 1 0 -begin%2:30:00:: 00345761 1 375 -begin%2:30:01:: 00348746 3 27 -begin%2:32:03:: 00747640 4 9 -begin%2:32:04:: 01070777 10 0 -begin%2:41:00:: 02526509 9 0 -begin%2:41:04:: 02600948 8 0 -begin%2:42:00:: 02608347 2 57 -begin%2:42:02:: 02679227 5 0 -begin%2:42:03:: 02608823 7 0 -begin%2:42:04:: 02609203 6 0 -beginner%1:18:00:: 10363913 1 1 -beginner%1:18:01:: 10107303 2 0 -beginning%1:04:00:: 00235435 5 2 -beginning%1:09:00:: 05868051 3 6 -beginning%1:11:00:: 07290905 1 18 -beginning%1:15:00:: 08507558 4 2 -beginning%1:28:00:: 15265518 2 8 -beginning%5:00:00:opening:00 01009206 1 0 -beginning_rhyme%1:10:00:: 07097094 1 0 -begonia%1:20:00:: 12360108 1 0 -begonia_cheimantha%1:20:00:: 12360958 1 0 -begonia_cocchinea%1:20:00:: 12361135 1 0 -begonia_dregei%1:20:00:: 12361350 1 0 -begonia_erythrophylla%1:20:00:: 12361560 1 0 -begonia_family%1:20:00:: 12359734 1 0 -begonia_feastii%1:20:00:: 12361560 1 0 -begonia_heracleifolia%1:20:00:: 12361754 1 0 -begonia_rex%1:20:00:: 12361946 1 0 -begonia_semperflorens%1:20:00:: 12362274 1 0 -begonia_socotrana%1:20:00:: 12362514 1 0 -begonia_tuberhybrida%1:20:00:: 12362668 1 0 -begoniaceae%1:20:00:: 12359734 1 0 -begotten%5:00:00:biological:00 01406058 1 0 -begrime%2:35:00:: 01534147 1 0 -begrimed%5:00:00:dirty:01 00420650 1 0 -begrudge%2:37:00:: 01825125 2 0 -begrudge%2:37:01:: 01827064 1 0 -beguile%2:37:00:: 01806505 2 1 -beguile%2:41:00:: 02578235 1 1 -beguiled%5:00:00:enchanted:00 00865620 1 0 -beguilement%1:04:00:: 00515414 2 0 -beguilement%1:07:00:: 04686388 1 0 -beguiler%1:18:00:: 09910374 2 0 -beguiler%1:18:01:: 09998101 1 0 -beguiling%5:00:00:dishonest:00 01223781 2 0 -beguiling%5:00:00:seductive:00 02097480 1 1 -beguine%1:04:00:: 00535321 3 0 -beguine%1:10:00:: 07054994 2 0 -beguine%1:18:00:: 10602695 1 0 -begum%1:18:00:: 09847425 1 0 -behalf%1:04:00:: 00721660 1 4 -behalf%1:07:00:: 05143300 2 2 -behave%2:29:00:: 00010435 1 18 -behave%2:41:00:: 02519666 3 1 -behave%2:41:01:: 02518161 2 3 -behavior%1:04:00:: 01220984 1 30 -behavior%1:04:01:: 01221254 4 0 -behavior%1:07:00:: 04897762 3 8 -behavior%1:26:00:: 14008342 2 8 -behavior_modification%1:04:00:: 00700979 1 0 -behavior_therapy%1:04:00:: 00700979 1 0 -behavioral%3:01:00:: 02941652 1 1 -behaviorism%1:09:00:: 06139764 1 0 -behaviorist%1:18:00:: 09608520 1 0 -behaviorist%3:01:00:: 02660651 1 0 -behavioristic%3:01:00:: 02660651 1 0 -behavioristic_psychology%1:09:00:: 06139764 1 0 -behaviour%1:04:00:: 01220984 4 0 -behaviour%1:04:01:: 01221254 3 0 -behaviour%1:07:00:: 04897762 2 0 -behaviour%1:26:00:: 14008342 1 0 -behavioural%3:01:00:: 02941652 1 0 -behaviourism%1:09:00:: 06139764 1 0 -behaviourist%1:18:00:: 09608520 1 0 -behaviourist%3:01:00:: 02660651 1 0 -behaviouristic%3:01:00:: 02660651 1 0 -behaviouristic_psychology%1:09:00:: 06139764 1 0 -behead%2:35:00:: 01571354 1 1 -beheaded%5:00:00:headless:00 01184584 1 0 -beheading%1:04:00:: 00228181 2 0 -beheading%1:04:01:: 01165224 1 0 -behemoth%1:18:00:: 10128909 1 0 -behemoth%1:18:01:: 09938991 2 0 -behest%1:10:00:: 07170572 1 0 -behind%1:08:00:: 05559256 1 1 -behind%4:02:00:: 00221985 1 13 -behind%4:02:01:: 00222180 2 3 -behind%4:02:02:: 00222479 5 0 -behind%4:02:03:: 00222713 4 0 -behind%4:02:04:: 00222879 3 0 -behind%5:00:00:down:00 02492383 1 1 -behind-the-scenes%5:00:00:covert:00 01707531 1 0 -behindhand%4:02:00:: 00222479 1 0 -behindhand%5:00:00:unpunctual:00 01901082 1 0 -behmen%1:18:00:: 10854397 1 0 -behmenism%1:09:00:: 06188146 1 0 -behold%2:39:00:: 02130160 1 7 -beholden%5:00:00:obligated:00 01616798 1 0 -beholder%1:18:00:: 09626589 1 0 -beholding%1:09:00:: 05710860 1 0 -behoove%2:42:00:: 02668378 1 1 -behove%2:42:00:: 02668378 1 0 -behrens%1:18:00:: 10841880 1 0 -behring%1:18:00:: 10846913 1 0 -beige%1:07:00:: 04973291 1 0 -beige%5:00:00:chromatic:00 00370501 1 0 -beigel%1:13:00:: 07693725 1 0 -beignet%1:13:00:: 07639716 1 0 -beijing%1:15:00:: 08724726 1 0 -beijing_dialect%1:10:00:: 06930093 1 0 -being%1:03:00:: 00004475 2 6 -being%1:26:00:: 13954253 1 12 -beingness%1:26:00:: 13954253 1 0 -beira%1:15:00:: 08971404 1 0 -beirut%1:15:00:: 08957806 1 0 -bejewel%2:36:00:: 01678685 1 0 -bel%1:18:00:: 09516881 2 0 -bel%1:23:00:: 13713521 1 0 -bel-merodach%1:18:00:: 09519288 1 0 -bel_and_the_dragon%1:10:00:: 06459173 1 0 -bel_canto%1:04:00:: 00546216 1 1 -bel_esprit%1:18:00:: 09847629 1 0 -bela_bartok%1:18:00:: 10837258 1 0 -bela_ferenc_blasko%1:18:00:: 11144431 1 0 -bela_lugosi%1:18:00:: 11144431 1 0 -belabor%2:32:02:: 00827302 2 1 -belabor%2:35:00:: 01398235 3 0 -belabor%2:41:00:: 02415265 1 1 -belabour%2:32:02:: 00827302 3 0 -belabour%2:35:00:: 01398235 2 0 -belabour%2:41:00:: 02415265 1 0 -belamcanda%1:20:00:: 12415911 1 0 -belamcanda_chinensis%1:20:00:: 12416073 1 0 -belarus%1:15:00:: 09011151 1 0 -belarusian%1:10:00:: 06944480 1 0 -belarusian%3:01:00:: 02660940 1 0 -belarusian_monetary_unit%1:23:00:: 13699925 1 0 -belated%5:00:00:unpunctual:00 01901186 1 1 -belatedly%4:02:00:: 00100267 1 0 -belau%1:15:00:: 08977948 1 0 -belay%1:17:00:: 09218494 1 0 -belay%2:35:00:: 01342636 2 0 -belay%2:35:01:: 01342755 1 0 -belaying_pin%1:06:00:: 02824152 1 0 -belch%1:04:00:: 00117578 1 2 -belch%2:29:00:: 00003431 1 2 -belch%2:30:00:: 00307568 2 0 -belching%1:04:00:: 00117578 2 1 -belching%1:04:01:: 00117810 1 1 -beldam%1:18:00:: 09847543 2 0 -beldam%1:18:01:: 10155485 1 0 -beldame%1:18:00:: 09847543 2 0 -beldame%1:18:01:: 10155485 1 0 -beleaguer%2:33:00:: 01127411 2 0 -beleaguer%2:37:00:: 01803380 1 0 -beleaguering%1:04:00:: 01075117 1 0 -belem%1:15:00:: 08854855 1 0 -belemnite%1:05:00:: 01973723 1 0 -belemnitic%3:01:00:: 02661099 1 0 -belemnitidae%1:05:00:: 01973566 1 0 -belemnoidea%1:05:00:: 01973375 1 0 -belfast%1:15:00:: 08888479 1 0 -belfry%1:06:00:: 02824319 2 0 -belfry%1:06:01:: 02946127 1 1 -belgian%1:18:00:: 09694109 1 0 -belgian%3:01:00:: 02960507 1 2 -belgian_beef_stew%1:13:00:: 07863644 1 0 -belgian_capital%1:15:00:: 08850450 1 0 -belgian_congo%1:15:00:: 08734385 1 0 -belgian_endive%1:13:00:: 07731767 1 0 -belgian_franc%1:23:00:: 13676897 1 0 -belgian_griffon%1:05:00:: 02112497 1 0 -belgian_hare%1:05:00:: 02328009 1 0 -belgian_sheepdog%1:05:00:: 02104882 1 0 -belgian_shepherd%1:05:00:: 02104882 1 0 -belgian_waffle%1:13:00:: 07641807 1 0 -belgique%1:15:00:: 08849753 1 0 -belgium%1:15:00:: 08849753 1 0 -belgrade%1:15:00:: 08817418 1 0 -belie%2:32:00:: 00836705 2 0 -belie%2:42:00:: 02663141 1 3 -belief%1:09:00:: 05941423 1 19 -belief%1:09:01:: 05916739 2 6 -believability%1:07:00:: 04782878 1 0 -believable%3:00:04:: 00644839 1 1 -believably%4:02:00:: 00244641 1 1 -believably%4:02:03:: 00296131 2 0 -believe%2:31:00:: 00683280 1 118 -believe%2:31:01:: 00684273 4 10 -believe%2:31:02:: 00684068 5 2 -believe%2:31:03:: 00721098 3 37 -believe%2:31:04:: 00689344 2 72 -believe_in%2:31:01:: 00733895 1 24 -believer%1:18:00:: 09847727 2 1 -believer%1:18:01:: 09848489 1 1 -believing%1:09:00:: 05726093 1 0 -believingly%4:02:00:: 00296658 1 0 -belike%4:02:00:: 00138611 1 0 -belisarius%1:18:00:: 10842030 1 0 -belittle%2:30:00:: 00441881 3 0 -belittle%2:32:00:: 00845909 2 0 -belittle%2:32:01:: 00864475 1 0 -belittled%5:00:00:decreased:00 00882580 1 0 -belittling%1:04:00:: 01220074 2 0 -belittling%1:10:00:: 06718434 1 0 -belittling%5:00:00:uncomplimentary:00 00906655 1 0 -belize%1:15:00:: 08737521 1 0 -belize_dollar%1:23:00:: 13672274 1 0 -bell%1:06:00:: 02824448 1 9 -bell%1:06:02:: 03222516 2 2 -bell%1:06:03:: 02824858 10 0 -bell%1:06:04:: 03017168 9 0 -bell%1:11:00:: 07377244 3 1 -bell%1:18:00:: 10842213 8 0 -bell%1:18:01:: 10842376 7 0 -bell%1:18:02:: 10842575 6 0 -bell%1:25:00:: 13886260 5 0 -bell%1:28:00:: 15227593 4 0 -bell%2:35:00:: 01297274 1 0 -bell-bottom%5:00:00:bottomed:00 02442441 1 0 -bell-bottomed%5:00:00:bottomed:00 02442441 1 0 -bell-bottoms%1:06:00:: 02825442 1 0 -bell-like_call%1:10:00:: 06796942 1 0 -bell-shaped%5:00:00:convex:00 00537644 1 0 -bell-shaped_curve%1:09:00:: 06026088 1 0 -bell_apple%1:13:00:: 07754279 1 0 -bell_arch%1:06:00:: 02825153 1 0 -bell_book%1:10:00:: 06504326 1 0 -bell_buoy%1:10:00:: 07266573 1 0 -bell_captain%1:18:00:: 09848916 1 0 -bell_cot%1:06:00:: 02825657 1 0 -bell_cote%1:06:00:: 02825657 1 0 -bell_deck%1:06:00:: 02825775 1 0 -bell_founder%1:18:00:: 09849167 1 0 -bell_foundry%1:06:00:: 02825872 1 0 -bell_gable%1:06:00:: 02825961 1 0 -bell_glass%1:06:00:: 02826068 1 0 -bell_heather%1:20:01:: 12228387 2 0 -bell_heather%1:20:02:: 12228546 1 0 -bell_jar%1:06:00:: 02826068 1 0 -bell_magpie%1:05:00:: 01583495 1 0 -bell_metal%1:27:00:: 14774575 1 0 -bell_morel%1:20:00:: 13032923 1 0 -bell_pepper%1:13:00:: 07720875 2 0 -bell_pepper%1:20:00:: 12901264 1 0 -bell_push%1:06:00:: 02826589 1 0 -bell_ringer%1:04:00:: 00064789 3 0 -bell_ringer%1:18:00:: 09849256 2 0 -bell_ringer%1:18:01:: 10714851 1 0 -bell_ringing%1:04:00:: 00544441 3 0 -bell_ringing%1:10:00:: 07245885 2 0 -bell_ringing%1:11:00:: 07446920 1 0 -bell_seat%1:06:00:: 02826683 1 0 -bell_shape%1:25:00:: 13886260 1 0 -bell_tent%1:06:00:: 02826812 1 0 -bell_the_cat%2:41:00:: 02545939 1 0 -bell_toad%1:05:00:: 01644900 1 0 -bell_tower%1:06:00:: 02826886 1 0 -bella_sombra%1:20:00:: 11855842 1 0 -belladonna%1:06:00:: 02825004 2 0 -belladonna%1:20:00:: 12898342 1 0 -belladonna_lily%1:20:00:: 12419394 1 0 -belladonna_plant%1:20:00:: 12898342 1 0 -bellarmine%1:06:00:: 02825240 2 0 -bellarmine%1:18:00:: 10842730 1 0 -bellarmino%1:18:00:: 10842730 1 0 -bellbird%1:05:00:: 01552034 1 0 -bellbottom%5:00:00:bottomed:00 02442441 1 0 -bellbottom_pants%1:06:00:: 02825442 1 0 -bellbottom_trousers%1:06:00:: 02825442 1 0 -bellboy%1:18:00:: 09848775 1 0 -belle%1:18:00:: 09849012 1 1 -belle_de_nuit%1:20:00:: 12827537 1 0 -belle_isle_cress%1:20:00:: 11873845 1 0 -belle_miriam_silverman%1:18:00:: 11300326 1 0 -belleau_wood%1:04:00:: 01271428 1 0 -bellerophon%1:18:00:: 09500003 1 0 -belles-lettres%1:10:00:: 06366269 1 0 -belles_lettres%1:10:00:: 06366269 1 0 -belletristic%5:00:00:literate:01 01421249 1 0 -bellflower%1:20:00:: 12036939 1 0 -bellflower_family%1:20:00:: 12036533 1 0 -bellhop%1:18:00:: 09848775 1 1 -bellicose%5:00:00:aggressive:00 00082766 1 0 -bellicoseness%1:07:00:: 04643875 1 0 -bellicosity%1:07:00:: 04643875 1 0 -bellied%3:00:00:: 00222662 1 0 -bellied%5:00:00:protrusive:00 01353618 2 0 -belligerence%1:07:00:: 04643662 2 0 -belligerence%1:12:00:: 07548695 1 0 -belligerency%1:04:00:: 00964781 2 0 -belligerency%1:12:00:: 07548695 1 0 -belligerent%1:18:00:: 09939313 1 0 -belligerent%5:00:00:hostile:01 01244846 1 3 -belligerent%5:00:00:unpeaceful:00 01742537 2 0 -belligerently%4:02:00:: 00242478 1 1 -belling%1:10:00:: 07054122 1 0 -bellingham%1:15:00:: 09153710 1 0 -bellini%1:18:00:: 10842923 1 0 -bellis%1:20:00:: 11939380 1 0 -bellis_perennis%1:20:00:: 11939699 1 0 -bellman%1:18:00:: 09848775 1 0 -belloc%1:18:00:: 10843035 1 0 -bellow%1:10:00:: 07121361 1 2 -bellow%1:18:00:: 10843228 2 0 -bellow%2:32:00:: 01048569 1 10 -bellow%2:32:01:: 01048718 2 0 -bellower%1:18:00:: 10533983 1 0 -bellowing%1:10:00:: 07121361 1 0 -bellows%1:06:00:: 02826259 1 0 -bellows_fish%1:05:00:: 01457082 1 0 -bellpull%1:06:00:: 02826459 1 0 -bells_of_ireland%1:20:00:: 12857779 1 0 -bellwether%1:05:00:: 02412337 2 0 -bellwether%1:18:00:: 09849349 1 0 -bellwort%1:20:00:: 12475035 1 0 -belly%1:05:01:: 02157415 5 0 -belly%1:08:00:: 05556943 1 8 -belly%1:08:02:: 05555917 2 2 -belly%1:15:00:: 08588486 4 0 -belly%1:25:00:: 13895262 3 0 -belly%2:30:00:: 00257535 1 0 -belly-flop%2:38:00:: 01963316 1 0 -belly-land%2:38:00:: 01980617 1 0 -belly-up%5:00:00:insolvent:00 02026629 1 0 -belly_button%1:08:00:: 05556595 1 0 -belly_dance%1:04:00:: 00530554 1 0 -belly_dance%2:36:00:: 01710190 1 0 -belly_dancer%1:18:00:: 09849462 1 0 -belly_dancing%1:04:00:: 00530554 1 0 -belly_flop%1:04:00:: 00443517 1 0 -belly_flopper%1:04:00:: 00443517 1 0 -belly_laugh%1:10:00:: 06778925 2 0 -belly_laugh%1:10:01:: 07127790 1 0 -belly_out%2:30:00:: 00257535 1 0 -belly_whop%1:04:00:: 00443517 1 0 -belly_whopper%1:04:00:: 00443517 1 0 -bellyache%1:26:00:: 14327266 1 0 -bellyache%2:32:00:: 00910973 1 0 -bellyacher%1:18:00:: 10776339 1 0 -bellyband%1:06:00:: 02827020 2 0 -bellyband%1:06:01:: 02827148 1 0 -bellybutton%1:08:00:: 05556595 1 0 -bellyful%1:07:00:: 05120000 1 0 -bellying%5:00:00:protrusive:00 01353618 1 0 -bellylaugh%2:29:00:: 00029742 1 0 -bellyless%3:00:00:: 00222873 1 0 -belmont%1:06:00:: 02827289 1 0 -belmont_park%1:06:00:: 02827289 1 0 -belmont_stakes%1:11:00:: 07462405 1 0 -belo_horizonte%1:15:00:: 08855126 1 0 -belong%2:40:00:: 02301680 1 10 -belong%2:42:01:: 02737569 4 2 -belong%2:42:02:: 02737724 2 4 -belong%2:42:03:: 02737876 3 3 -belong%2:42:06:: 02719930 6 0 -belong%2:42:07:: 02756359 5 0 -belong_to%2:42:00:: 02719930 1 34 -belonging%1:12:00:: 07529817 1 0 -belongings%1:21:00:: 13244109 1 0 -belonidae%1:05:00:: 02549796 1 0 -belorussia%1:15:00:: 09011151 1 0 -belorussian%1:18:00:: 09695979 1 0 -belostomatidae%1:05:00:: 02242004 1 0 -beloved%1:18:00:: 09849598 1 0 -beloved%5:00:00:loved:00 01462324 1 7 -below%4:02:00:: 00079866 2 13 -below%4:02:01:: 00080039 1 16 -below%4:02:02:: 00258282 3 2 -below%4:02:03:: 00486067 5 0 -below%4:02:06:: 00094396 4 2 -below_the_belt%4:02:00:: 00285266 1 0 -below_the_belt%5:00:00:unfair:00 00957551 1 0 -belowground%5:00:00:buried:00 00292750 2 0 -belowground%5:00:00:subsurface:00 02471984 1 2 -belsen%1:06:00:: 02827466 1 0 -belshazzar%1:18:00:: 10843425 1 1 -belt%1:04:00:: 00133338 7 0 -belt%1:06:00:: 02827606 2 4 -belt%1:06:01:: 02827883 1 4 -belt%1:06:02:: 02828115 6 0 -belt%1:11:00:: 07410207 4 1 -belt%1:15:00:: 08509786 3 2 -belt%1:17:00:: 09452653 5 0 -belt%2:35:00:: 01415162 2 1 -belt%2:35:01:: 01366061 3 0 -belt%2:36:00:: 01704030 1 1 -belt-fed%5:00:00:belted:00 00223504 1 0 -belt-like%5:00:00:belted:00 00223582 1 0 -belt-shaped%5:00:00:formed:00 02145388 1 0 -belt_along%2:38:00:: 02058994 1 0 -belt_ammunition%1:06:00:: 02828115 1 0 -belt_bag%1:06:00:: 04544450 1 0 -belt_buckle%1:06:00:: 02828299 1 1 -belt_down%2:34:00:: 01202374 1 0 -belt_maker%1:18:00:: 09849801 1 0 -belt_out%2:36:00:: 01704030 1 1 -belt_up%2:32:00:: 01041061 1 0 -belted%3:00:00:: 00223220 1 0 -belted_ammunition%1:06:00:: 02828115 1 0 -belted_kingfisher%1:05:00:: 01828096 1 0 -belted_sandfish%1:05:00:: 02568807 1 0 -belting%1:06:00:: 02828427 1 0 -beltless%3:00:00:: 00223683 1 0 -beltlike%5:00:00:belted:00 00223582 1 0 -beltway%1:06:00:: 02828648 1 0 -beluga%1:05:01:: 02640857 1 0 -beluga%1:05:02:: 02072798 2 0 -beluga_caviar%1:13:00:: 07799738 1 0 -belvedere%1:06:00:: 02828555 2 0 -belvedere%1:20:00:: 11831874 1 0 -bema%1:06:00:: 03004824 1 0 -bemidji%1:15:00:: 09102415 1 0 -bemire%2:35:00:: 01534147 1 0 -bemisia%1:05:00:: 02247363 1 0 -bemisia_tabaci%1:05:00:: 02247655 1 0 -bemoan%2:32:00:: 00911350 1 2 -bemock%2:32:00:: 00849080 1 0 -bemuse%2:37:00:: 01791232 1 0 -bemused%5:00:00:perplexed:00 01766133 2 0 -bemused%5:00:00:thoughtful:00 02419159 1 0 -bemusement%1:09:00:: 05685030 1 0 -ben%1:17:00:: 09218641 1 0 -ben_gurion%1:18:00:: 10844805 1 0 -ben_hecht%1:18:00:: 11037966 1 0 -ben_hogan%1:18:00:: 11055454 1 0 -ben_jonson%1:18:00:: 11091184 1 0 -ben_shahn%1:18:00:: 11295033 1 0 -ben_sira%1:10:00:: 06460295 1 0 -benadryl%1:06:00:: 03203225 1 0 -bench%1:06:00:: 02828884 1 9 -bench%1:06:01:: 04600486 4 1 -bench%1:06:03:: 02829116 7 0 -bench%1:14:00:: 08166187 3 1 -bench%1:14:01:: 08328700 5 0 -bench%1:14:02:: 08209519 6 0 -bench%1:17:00:: 09456207 2 1 -bench%2:39:00:: 02141722 2 0 -bench%2:41:00:: 02482889 1 3 -bench_clamp%1:06:00:: 02829246 1 0 -bench_hook%1:06:00:: 02829353 1 0 -bench_lathe%1:06:00:: 02829510 1 0 -bench_mark%1:10:02:: 07259145 1 0 -bench_press%1:04:00:: 00626574 1 2 -bench_press%1:06:00:: 02829596 2 0 -bench_vise%1:06:00:: 04538552 1 0 -bench_warmer%1:18:00:: 09849874 1 0 -bench_warrant%1:10:00:: 06547615 1 0 -benchley%1:18:00:: 10843705 1 0 -benchmark%1:10:01:: 07261143 1 0 -benchmark%1:10:02:: 07259145 2 0 -bend%1:06:00:: 02829696 3 1 -bend%1:06:01:: 02830013 6 0 -bend%1:11:00:: 07310991 2 1 -bend%1:15:00:: 09133364 5 0 -bend%1:25:01:: 13907415 4 0 -bend%1:25:02:: 13869327 1 1 -bend%2:35:00:: 01280014 3 5 -bend%2:35:08:: 01280488 6 0 -bend%2:38:00:: 02035919 1 23 -bend%2:38:01:: 02033137 2 11 -bend%2:38:02:: 02034300 5 1 -bend%2:38:03:: 02062632 4 3 -bend_dexter%1:06:00:: 02830013 1 0 -bend_over_backwards%2:29:00:: 00011361 1 0 -bend_sinister%1:10:00:: 06795290 1 0 -bendability%1:07:00:: 05022709 1 0 -bendable%5:00:00:flexible:01 01022367 1 0 -benday%2:36:00:: 01750061 1 0 -benday_process%1:09:00:: 05665625 1 0 -bended%5:00:00:unerect:00 01238343 1 3 -bender%1:04:00:: 00511041 2 0 -bender%1:04:02:: 00107875 3 0 -bender%1:06:00:: 02830157 1 0 -bending%1:04:00:: 00405206 3 0 -bending%1:07:00:: 05011277 2 0 -bending%1:11:00:: 07310991 1 0 -bendopa%1:27:00:: 14605132 1 0 -bends%1:26:00:: 14068344 1 0 -bendy_tree%1:20:00:: 12188635 1 0 -beneath%4:02:00:: 00080039 1 1 -benedetto_caetani%1:18:00:: 10856799 1 0 -benedetto_odescalchi%1:18:00:: 11072396 1 0 -benedick%1:18:00:: 09849990 1 0 -benedict%1:18:00:: 10843858 2 0 -benedict%1:18:01:: 09849990 3 0 -benedict%1:18:02:: 10844401 1 0 -benedict_arnold%1:18:00:: 10823529 1 0 -benedict_de_spinoza%1:18:00:: 11311450 1 0 -benedict_xiv%1:18:00:: 10844031 1 0 -benedict_xv%1:18:00:: 10844231 1 0 -benedictine%1:13:00:: 07908812 2 0 -benedictine%1:18:00:: 10112434 1 0 -benedictine%3:01:00:: 03047501 2 0 -benedictine%3:01:01:: 03047611 1 0 -benedictine_order%1:14:00:: 08148601 1 0 -benediction%1:04:00:: 01043693 1 1 -benediction%1:10:00:: 07189411 2 0 -benedictive%3:01:00:: 02661202 1 0 -benedictory%3:01:00:: 02661202 1 0 -benefact%2:41:00:: 02548219 1 0 -benefaction%1:04:00:: 01226679 2 0 -benefaction%1:21:00:: 13270260 1 0 -benefactive_role%1:10:00:: 06332545 1 0 -benefactor%1:18:00:: 09608709 1 0 -benefactress%1:18:00:: 09609155 1 0 -benefic%5:00:00:beneficent:00 00224031 1 0 -benefice%1:21:00:: 13248087 1 0 -benefice%2:40:00:: 02201521 1 0 -beneficed%3:00:00:: 00208052 1 0 -beneficence%1:07:00:: 04840537 2 0 -beneficence%1:12:00:: 07545833 1 0 -beneficent%3:00:00:: 00223802 1 0 -beneficent%5:00:00:charitable:00 00359645 2 0 -beneficial%5:00:00:advantageous:00 00064787 1 6 -beneficially%4:02:00:: 00278366 1 0 -beneficiary%1:10:00:: 06332545 2 0 -beneficiary%1:18:00:: 09850121 1 2 -beneficiary%3:01:00:: 02661314 1 0 -beneficiate%2:30:00:: 00577170 1 0 -beneficiation%1:22:00:: 13516312 1 0 -benefit%1:07:00:: 05142641 2 15 -benefit%1:10:00:: 06892534 3 1 -benefit%1:21:00:: 13296899 1 16 -benefit%2:40:00:: 02290461 1 15 -benefit%2:40:01:: 02290956 2 7 -benefit_album%1:10:00:: 06592421 1 0 -benefit_concert%1:10:00:: 06892657 1 0 -benefit_of_clergy%1:04:00:: 01139490 1 0 -benelux%1:14:00:: 08305766 1 0 -benet%1:18:00:: 10844527 2 0 -benet%1:18:01:: 10844667 1 0 -benevolence%1:04:00:: 01226679 3 0 -benevolence%1:07:00:: 04840285 2 0 -benevolence%1:12:00:: 07545717 1 0 -benevolent%3:01:00:: 02661446 1 0 -benevolent%5:00:00:charitable:00 00359645 4 0 -benevolent%5:00:00:generous:01 01111312 3 0 -benevolent%5:00:00:kind:00 01372948 2 0 -benevolently%4:02:00:: 00394593 1 0 -benficiate%2:30:00:: 00238255 1 0 -benford's_law%1:09:00:: 05875392 1 0 -bengal%1:15:00:: 08710535 1 0 -bengal_bean%1:20:00:: 12550408 1 0 -bengal_kino%1:27:00:: 14901265 1 0 -bengal_light%1:10:00:: 07264484 1 0 -bengal_rose%1:20:00:: 12621260 1 0 -bengal_tiger%1:05:00:: 02129837 1 0 -bengali%1:10:00:: 06970946 3 0 -bengali%1:14:00:: 08483353 2 0 -bengali%1:18:00:: 09692430 1 0 -bengali%3:01:00:: 03047714 1 0 -benghal_bean%1:20:00:: 12550408 1 0 -benghazi%1:15:00:: 08960363 1 0 -benight%2:30:00:: 00313860 3 0 -benight%2:35:00:: 01380483 2 0 -benight%2:37:00:: 01809884 1 0 -benighted%5:00:00:unenlightened:00 00884501 2 0 -benighted%5:00:00:unpunctual:00 01901496 1 0 -benign%3:00:00:: 00226618 2 0 -benign%3:00:02:: 02594565 1 0 -benign%5:00:00:kind:00 01372773 3 0 -benign_prostatic_hyperplasia%1:26:00:: 14368917 1 0 -benign_tumor%1:26:00:: 14236226 1 0 -benign_tumour%1:26:00:: 14236226 1 0 -benignancy%1:07:00:: 04840981 1 0 -benignant%3:00:04:: 00226618 1 0 -benignant%5:00:00:kind:00 01372568 2 0 -benignantly%4:02:00:: 00278493 1 0 -benignity%1:04:00:: 00034574 2 0 -benignity%1:07:00:: 04840981 1 0 -benignly%4:02:00:: 00278493 1 0 -benin%1:15:00:: 08759420 1 0 -benin_franc%1:23:00:: 13677019 1 0 -beninese%1:18:00:: 09694269 1 0 -beninese%3:01:00:: 03047898 1 0 -benison%1:10:00:: 07189562 1 0 -benito_mussolini%1:18:00:: 11198253 1 0 -benjamin%1:18:00:: 10845050 2 0 -benjamin%1:27:00:: 14897941 1 0 -benjamin_britten%1:18:00:: 10864635 1 0 -benjamin_bush%1:20:00:: 11706325 1 0 -benjamin_david_goodman%1:18:00:: 11007332 1 0 -benjamin_disraeli%1:18:00:: 10937364 1 0 -benjamin_franklin%1:18:00:: 10979079 1 0 -benjamin_franklin_bridge%1:06:00:: 02830294 1 0 -benjamin_franklin_norris_jr.%1:18:00:: 11209543 1 0 -benjamin_harris%1:18:00:: 11030260 1 0 -benjamin_harrison%1:18:00:: 11031668 1 0 -benjamin_henry_latrobe%1:18:00:: 11118602 1 0 -benjamin_jonson%1:18:00:: 11091184 1 0 -benjamin_jowett%1:18:00:: 11092938 1 0 -benjamin_kubelsky%1:18:00:: 10845424 1 0 -benjamin_peirce%1:18:00:: 11228486 1 0 -benjamin_ricketson_tucker%1:18:00:: 11351529 1 0 -benjamin_rush%1:18:00:: 11274269 1 0 -benjamin_shahn%1:18:00:: 11295033 1 0 -benjamin_spock%1:18:00:: 11311623 1 0 -benjamin_thompson%1:18:00:: 11339669 1 0 -benjamin_west%1:18:00:: 11382112 1 0 -benne%1:20:00:: 12874783 1 0 -bennet%1:20:01:: 12631813 2 0 -bennet%1:20:02:: 12632733 1 0 -bennett%1:18:00:: 10845248 1 0 -bennettitaceae%1:20:00:: 11604393 1 0 -bennettitales%1:20:00:: 11604225 1 0 -bennettitis%1:20:00:: 11604576 1 0 -benni%1:20:00:: 12874783 1 0 -bennie%1:06:00:: 02830596 1 0 -bennington%1:15:00:: 09148422 1 1 -benniseed%1:13:00:: 07827410 1 0 -benny%1:18:00:: 10845424 2 0 -benny%1:20:00:: 12874783 1 0 -benny_goodman%1:18:00:: 11007332 1 0 -benny_hill%1:18:00:: 11049938 1 0 -benoit_mandelbrot%1:18:00:: 11153456 1 0 -bent%1:09:00:: 05624254 4 0 -bent%1:09:01:: 06199702 1 2 -bent%1:15:00:: 08570533 3 0 -bent%1:20:00:: 12106786 2 0 -bent%5:00:00:damaged:00 00680005 3 0 -bent%5:00:00:resolute:00 01990172 1 0 -bent%5:00:02:unerect:00 01238343 2 0 -bent-grass%1:20:00:: 12106786 1 0 -bent_grass%1:20:00:: 12106786 1 0 -bent_hang%1:04:00:: 00436609 1 0 -bent_on%5:00:00:resolute:00 01990172 1 0 -benthal%3:01:00:: 02661574 1 0 -bentham%1:18:00:: 10845603 1 0 -benthic%3:01:00:: 02661574 1 0 -benthic_division%1:15:00:: 08578517 1 0 -benthonic%3:01:00:: 02661574 1 0 -benthonic_zone%1:15:00:: 08578517 1 0 -benthos%1:03:00:: 00005787 2 0 -benthos%1:15:00:: 08578517 1 0 -benton%1:18:00:: 10845763 2 0 -benton%1:18:01:: 10845926 1 0 -bentonite%1:27:00:: 14813709 1 0 -bentonitic%3:01:00:: 02661806 1 0 -bentwood%1:06:00:: 02830430 1 0 -benumb%2:39:00:: 02115273 1 0 -benumbed%5:00:00:insensible:00 02103333 1 0 -benumbed%5:00:00:uninterested:00 01343679 2 0 -benvenuto_cellini%1:18:00:: 10888788 1 0 -benweed%1:20:00:: 12012253 1 0 -benzedrine%1:06:00:: 02830596 1 0 -benzene%1:27:00:: 14774699 1 0 -benzene_formula%1:27:00:: 14774894 1 0 -benzene_nucleus%1:27:00:: 14774894 1 0 -benzene_ring%1:27:00:: 14774894 1 0 -benzenoid%3:01:00:: 02661922 1 0 -benzine%1:27:00:: 14774699 1 0 -benzoate%1:27:00:: 14775067 1 0 -benzoate_of_soda%1:27:00:: 14775173 1 0 -benzocaine%1:06:00:: 02830721 1 0 -benzodiazepine%1:06:00:: 02830852 1 0 -benzofuran%1:27:00:: 14898101 1 0 -benzoic%3:01:00:: 02662020 1 0 -benzoic_acid%1:27:00:: 14775321 1 0 -benzoin%1:20:00:: 11706120 2 0 -benzoin%1:27:00:: 14897941 1 0 -benzoin_odoriferum%1:20:00:: 11706325 1 0 -benzol%1:27:00:: 14774699 1 0 -benzoquinone%1:27:00:: 15000973 1 0 -benzoyl_group%1:27:00:: 14622768 1 0 -benzoyl_peroxide%1:27:00:: 14775430 1 0 -benzoyl_radical%1:27:00:: 14622768 1 0 -benzyl%1:27:00:: 14622623 1 0 -benzyl_group%1:27:00:: 14622623 1 0 -benzyl_radical%1:27:00:: 14622623 1 0 -benzylic%3:01:00:: 02662142 1 0 -benzylpenicillin%1:06:00:: 03910723 1 0 -beograd%1:15:00:: 08817418 1 0 -beowulf%1:18:00:: 09589996 1 0 -beplaster%2:35:00:: 01612964 1 0 -bequeath%2:40:00:: 02229055 1 0 -bequest%1:21:00:: 13263779 1 4 -berate%2:32:00:: 00824767 1 2 -berating%1:10:00:: 06713377 1 0 -berber%1:10:00:: 06990544 2 0 -berber%1:18:00:: 09850317 1 0 -berberidaceae%1:20:00:: 11697158 1 0 -berberis%1:20:00:: 11697388 1 0 -berberis_canadensis%1:20:00:: 11697802 1 0 -berberis_thunbergii%1:20:00:: 11698245 1 0 -berberis_vulgaris%1:20:00:: 11698042 1 0 -berbers%1:14:00:: 08483500 1 0 -berceuse%1:10:00:: 07051851 1 0 -bercy%1:13:00:: 07835701 1 0 -bercy_butter%1:13:00:: 07835701 1 0 -bereave%2:40:00:: 02315421 1 0 -bereaved%1:18:00:: 09850457 1 0 -bereaved%5:00:00:sorrowful:00 01364817 1 0 -bereaved_person%1:18:00:: 09850457 1 0 -bereavement%1:26:00:: 13989280 1 3 -bereft%5:00:00:sorrowful:00 01364817 2 0 -bereft%5:00:00:unloved:00 01463414 1 0 -beret%1:06:00:: 02831237 1 0 -berg%1:17:00:: 09308572 1 1 -berg%1:18:00:: 10846089 2 0 -bergall%1:05:00:: 02610373 1 0 -bergamot%1:20:00:: 12708941 1 0 -bergamot_mint%1:20:01:: 12855710 2 0 -bergamot_mint%1:20:02:: 12858397 1 0 -bergamot_orange%1:20:00:: 12708941 1 0 -bergen%1:15:00:: 08765315 1 0 -bergenia%1:20:00:: 12796022 1 0 -bergman%1:18:00:: 10846224 2 0 -bergman%1:18:01:: 10846400 1 0 -bergson%1:18:00:: 10846504 1 0 -beria%1:18:00:: 10846693 1 0 -beriberi%1:26:00:: 14199264 1 0 -bering%1:18:00:: 10846913 1 0 -bering_sea%1:17:00:: 09218782 1 0 -bering_standard_time%1:28:00:: 15133289 1 0 -bering_strait%1:17:00:: 09218963 1 0 -bering_time%1:28:00:: 15133289 1 0 -berit%1:04:00:: 01031392 1 0 -berith%1:04:00:: 01031392 1 0 -berk%1:18:00:: 09850642 1 0 -berkeley%1:15:00:: 09062585 2 0 -berkeley%1:18:00:: 10847125 1 0 -berkelium%1:27:00:: 14631134 1 0 -berkshire%1:15:00:: 08881256 1 0 -berkshire_hills%1:17:00:: 09219078 1 0 -berkshires%1:17:00:: 09219078 1 0 -berlage%1:18:00:: 10847330 1 0 -berlin%1:06:00:: 02831335 3 0 -berlin%1:15:00:: 08769645 1 6 -berlin%1:18:00:: 10847454 2 0 -berlin_airlift%1:04:00:: 00316806 1 0 -berlin_doughnut%1:13:00:: 07639344 1 0 -berliner%1:18:00:: 09748408 1 0 -berlioz%1:18:00:: 10847653 1 0 -berm%1:06:00:: 04206948 2 0 -berm%1:17:00:: 09219233 1 0 -bermuda%1:15:00:: 08710678 1 0 -bermuda_buttercup%1:20:00:: 12703383 1 0 -bermuda_cedar%1:20:00:: 11637482 1 0 -bermuda_chub%1:05:00:: 02604480 1 0 -bermuda_dollar%1:23:00:: 13672367 1 0 -bermuda_grass%1:20:00:: 12115748 1 0 -bermuda_lily%1:20:00:: 12427757 1 0 -bermuda_maidenhair%1:20:00:: 13207572 1 0 -bermuda_maidenhair_fern%1:20:00:: 13207572 1 0 -bermuda_onion%1:13:00:: 07722390 1 0 -bermuda_plan%1:21:00:: 13415998 1 0 -bermuda_rig%1:06:00:: 02831455 1 0 -bermuda_shorts%1:06:00:: 02831595 1 0 -bermuda_triangle%1:15:00:: 08710951 1 0 -bermudan%1:18:00:: 09694392 1 0 -bermudan%3:01:00:: 03048046 1 0 -bermudan_rig%1:06:00:: 02831455 1 0 -bermudas%1:15:00:: 08710678 1 0 -bermudian%1:18:00:: 09694392 1 0 -bermudian_rig%1:06:00:: 02831455 1 0 -bern%1:15:00:: 09032321 1 4 -berna_eli_oldfield%1:18:00:: 11213966 1 0 -bernard%1:18:00:: 10847793 1 0 -bernard_arthur_owen_williams%1:18:00:: 11390170 1 0 -bernard_baruch%1:18:00:: 10837567 1 0 -bernard_hinault%1:18:00:: 11050723 1 0 -bernard_law_montgomery%1:18:00:: 11188316 1 0 -bernard_malamud%1:18:00:: 11151084 1 0 -bernard_mannes_baruch%1:18:00:: 10837567 1 0 -bernardo_bertolucci%1:18:00:: 10849323 1 0 -bernd_heinrich_wilhelm_von_kleist%1:18:00:: 11107436 1 0 -berne%1:15:00:: 09032321 1 0 -bernese_mountain_dog%1:05:00:: 02107683 1 0 -bernhard_riemann%1:18:00:: 11262168 1 0 -bernhardt%1:18:00:: 10847994 1 0 -bernini%1:18:00:: 10848122 1 0 -bernoulli%1:18:00:: 10848356 3 0 -bernoulli%1:18:01:: 10848500 2 0 -bernoulli%1:18:02:: 10848641 1 0 -bernoulli's_law%1:09:00:: 05875148 1 0 -bernoulli_distribution%1:09:00:: 06036697 1 0 -bernstein%1:18:00:: 10848802 1 0 -beroe%1:05:00:: 01919385 1 0 -berra%1:18:00:: 10848946 1 0 -berretta%1:06:00:: 02843909 1 0 -berried%5:00:00:fruitful:00 01080717 1 0 -berry%1:13:00:: 07742704 1 3 -berry%1:18:00:: 10849083 3 0 -berry%1:20:00:: 13137409 2 0 -berry%2:35:00:: 01384102 1 0 -berry_fern%1:20:00:: 13196369 1 0 -berrylike%3:01:00:: 02656699 1 0 -berserk%1:18:00:: 09850760 1 0 -berserk%5:00:00:insane:00 02074673 1 0 -berserker%1:18:00:: 09850760 1 0 -berteroa%1:20:00:: 11874300 1 0 -berteroa_incana%1:20:00:: 11874423 1 0 -berth%1:04:00:: 00586262 1 2 -berth%1:06:00:: 02831724 3 0 -berth%1:15:00:: 08640111 2 0 -berth%2:35:00:: 01305542 2 0 -berth%2:35:03:: 01305361 3 0 -berth%2:40:00:: 02336947 1 0 -bertholletia%1:20:00:: 12327718 1 0 -bertholletia_excelsa%1:20:00:: 12327846 1 0 -bertillon%1:18:00:: 10849213 1 0 -bertillon_system%1:04:00:: 00152230 1 0 -bertolt_brecht%1:18:00:: 10863552 1 0 -bertolucci%1:18:00:: 10849323 1 0 -bertram_brockhouse%1:18:00:: 10865140 1 0 -bertrand_arthur_william_russell%1:18:00:: 11274812 1 0 -bertrand_russell%1:18:00:: 11274812 1 0 -berycomorphi%1:05:00:: 01450081 1 0 -beryl%1:27:00:: 14668539 1 0 -beryllium%1:27:00:: 14631295 1 1 -beryllium_bronze%1:27:00:: 14775626 1 0 -berzelius%1:18:00:: 10849435 1 0 -beseech%2:32:00:: 00759657 1 2 -beseeching%3:00:00:: 00713995 1 0 -beseechingly%4:02:00:: 00278633 1 0 -beseem%2:42:00:: 02699941 1 0 -beset%2:33:00:: 01126700 2 2 -beset%2:35:00:: 01517355 3 0 -beset%2:37:00:: 01789514 1 5 -beshrew%2:32:00:: 00865958 1 0 -besides%4:02:01:: 00029037 1 10 -besides%4:02:03:: 00047534 2 1 -besiege%2:32:00:: 00778122 3 0 -besiege%2:33:00:: 01127411 1 2 -besiege%2:37:00:: 01798287 2 0 -besieged%5:00:00:enclosed:00 01657129 1 0 -besieger%1:18:00:: 09850974 1 2 -besieger%1:18:01:: 09851087 2 0 -besieging%1:04:00:: 01075117 1 0 -besmear%2:35:00:: 01251828 1 0 -besmirch%2:32:00:: 00846509 1 2 -besmirch%2:35:00:: 01252601 2 1 -besom%1:06:00:: 02831894 1 0 -besot%2:39:00:: 02115618 1 0 -besotted%5:00:00:intoxicated:00 00798103 1 0 -bespangle%2:35:01:: 01377444 2 0 -bespangle%2:36:00:: 01669906 1 0 -bespatter%2:35:00:: 01538629 1 0 -bespeak%2:32:00:: 00752764 2 0 -bespeak%2:32:01:: 00921300 1 1 -bespeckle%2:35:00:: 01538310 1 0 -bespectacled%5:00:00:adorned:00 00056943 1 2 -bespoke%5:00:00:custom-made:00 00672382 1 0 -bespoken%5:00:00:attached:01 00158110 2 0 -bespoken%5:00:00:custom-made:00 00672382 1 0 -bespot%2:35:00:: 01273529 1 0 -besprent%5:00:00:wet:01 02547953 1 0 -besprinkle%2:30:00:: 00228655 1 0 -bessel%1:18:00:: 10849625 1 0 -bessemer%1:18:00:: 10849873 1 0 -bessemer_converter%1:06:00:: 02831998 1 0 -bessemer_process%1:22:00:: 13438223 1 0 -bessera%1:20:00:: 12443547 1 0 -bessera_elegans%1:20:00:: 12443736 1 0 -besseya%1:20:00:: 12878019 1 0 -besseya_alpina%1:20:00:: 12878325 1 0 -bessie_smith%1:18:00:: 11305745 1 0 -bessy_cerca%1:05:00:: 02653497 1 0 -best%1:04:00:: 00127531 1 6 -best%1:18:00:: 09851165 2 1 -best%1:18:01:: 10850049 3 0 -best%2:33:00:: 01109259 1 1 -best%3:00:00:: 00227507 1 94 -best%4:02:00:: 00188057 2 6 -best%4:02:01:: 00188137 1 14 -best%4:02:03:: 00509846 3 0 -best%5:00:00:advisable:00 00067379 2 0 -best-known%5:00:00:known:00 01375546 1 1 -best-loved%5:00:00:loved:00 01462882 1 0 -best-selling%5:00:00:popular:00 01816195 1 1 -best_and_greatest%1:18:00:: 09574544 1 0 -best_evidence_rule%1:10:00:: 06653727 1 0 -best_friend%1:18:00:: 09851371 1 1 -best_man%1:18:00:: 09851465 1 0 -best_of_all%4:02:00:: 00187953 1 0 -best_seller%1:10:00:: 06412497 1 2 -bestial%5:00:00:inhumane:00 01263445 1 1 -bestialise%2:30:00:: 00410244 1 0 -bestiality%1:04:00:: 00858060 2 0 -bestiality%1:07:00:: 04830578 1 0 -bestialize%2:30:00:: 00410244 1 0 -bestially%4:02:00:: 00280427 1 0 -bestiary%1:10:00:: 06412610 1 0 -bestir%2:38:00:: 02083806 1 0 -bestir_oneself%2:30:00:: 00348541 1 0 -bestow%2:40:00:: 02263346 1 4 -bestow%2:40:01:: 02324478 3 0 -bestow%2:40:02:: 02263692 2 1 -bestowal%1:04:00:: 01086356 1 1 -bestowal%1:21:00:: 13271937 2 0 -bestower%1:18:00:: 10025730 1 0 -bestowment%1:04:00:: 01086356 2 0 -bestowment%1:21:00:: 13271937 1 0 -bestrew%2:35:00:: 01378331 1 0 -bestride%2:38:00:: 01923414 1 0 -bestseller%1:10:00:: 06412497 1 0 -bestubbled%5:00:00:unshaven:00 02154118 1 1 -bet%1:04:00:: 00506658 2 0 -bet%1:21:00:: 13343526 1 1 -bet%2:31:00:: 00712708 3 0 -bet%2:32:00:: 00918580 1 19 -bet%2:33:00:: 01155687 2 0 -bet_on%2:33:00:: 01139104 1 4 -beta%1:10:00:: 06834245 1 1 -beta%1:20:00:: 11832108 2 0 -beta%5:00:00:exploratory:00 00877938 2 0 -beta%5:00:00:important:00 01276693 1 0 -beta-adrenergic_blocker%1:06:00:: 02832168 1 0 -beta-adrenergic_blocking_agent%1:06:00:: 02832168 1 0 -beta-adrenergic_receptor%1:08:00:: 05609524 1 0 -beta-adrenoceptor%1:08:00:: 05609524 1 0 -beta-blocking_agent%1:06:00:: 02832168 1 0 -beta-carotene%1:27:00:: 14721470 1 0 -beta-hydroxybutyric_acid%1:27:00:: 14927250 1 0 -beta-interferon%1:06:00:: 02832652 1 0 -beta-lactamase%1:27:00:: 14978544 1 0 -beta-lipoprotein%1:27:00:: 14943009 1 0 -beta-naphthol%1:27:00:: 14730421 1 0 -beta_blocker%1:06:00:: 02832168 1 0 -beta_blocker_eyedrop%1:04:00:: 00657080 1 0 -beta_cell%1:08:00:: 05268383 1 0 -beta_centauri%1:17:00:: 09219349 1 0 -beta_crucis%1:17:00:: 09219467 1 0 -beta_decay%1:22:00:: 13438521 1 0 -beta_endorphin%1:27:00:: 14809247 1 0 -beta_globulin%1:27:00:: 15077917 1 0 -beta_iron%1:27:00:: 14722056 1 0 -beta_orionis%1:17:00:: 09410365 1 0 -beta_particle%1:17:00:: 09219592 1 0 -beta_radiation%1:19:00:: 11428699 1 0 -beta_ray%1:19:00:: 11428699 1 0 -beta_receptor%1:08:00:: 05609524 1 0 -beta_rhythm%1:19:00:: 11428862 1 0 -beta_software%1:10:00:: 06567143 1 0 -beta_test%1:09:00:: 05799952 1 0 -beta_vulgaris%1:20:01:: 11832214 1 0 -beta_vulgaris_cicla%1:20:00:: 11832671 1 0 -beta_vulgaris_rubra%1:20:00:: 11832480 1 0 -beta_vulgaris_vulgaris%1:20:00:: 11832899 1 0 -beta_wave%1:19:00:: 11428862 1 0 -betaine%1:27:00:: 14721951 1 0 -betake_oneself%2:38:00:: 01839963 1 0 -betatron%1:06:00:: 02832838 1 0 -bete_noire%1:18:00:: 09792125 1 0 -betel%1:20:00:: 13149970 1 0 -betel_nut%1:13:00:: 07770869 1 0 -betel_palm%1:20:00:: 12584365 1 0 -betel_pepper%1:20:00:: 13149970 1 0 -betelgeuse%1:17:00:: 09219731 1 0 -beth%1:10:00:: 06836822 1 0 -bethe%1:18:00:: 10850273 1 0 -bethel%1:06:00:: 02833040 1 0 -bethink%2:31:00:: 00683127 2 1 -bethink%2:39:00:: 02166761 1 3 -bethlehem%1:15:00:: 08795232 2 0 -bethlehem%1:15:01:: 09135246 1 0 -bethlehem-judah%1:15:00:: 08795232 1 0 -bethlehem_ephrathah%1:15:00:: 08795232 1 0 -bethune%1:18:00:: 10850469 1 0 -betide%2:30:00:: 00345000 1 0 -betimes%4:02:00:: 00100592 1 0 -betise%1:04:00:: 01248075 1 0 -betoken%2:32:00:: 00871942 2 0 -betoken%2:32:01:: 00921300 1 0 -betray%2:32:00:: 00841986 5 1 -betray%2:32:01:: 00936330 1 8 -betray%2:32:03:: 00854420 6 0 -betray%2:37:00:: 01799235 3 2 -betray%2:41:00:: 02537407 2 3 -betray%2:41:01:: 02576503 4 1 -betrayal%1:04:00:: 00749767 1 2 -betrayal%1:07:00:: 04879879 2 0 -betrayer%1:18:00:: 10027590 2 0 -betrayer%1:18:01:: 10206173 1 0 -betroth%2:32:00:: 00886602 1 0 -betrothal%1:04:00:: 01036778 2 0 -betrothal%1:10:00:: 07228211 1 0 -betrothed%1:18:00:: 09851575 1 0 -betrothed%5:00:00:attached:01 00158110 1 1 -betsy_griscom_ross%1:18:00:: 11270577 1 0 -betsy_ross%1:18:00:: 11270577 1 0 -bette_davis%1:18:00:: 10924347 1 0 -better%1:07:00:: 05143558 1 1 -better%1:07:01:: 05143690 4 0 -better%1:18:00:: 09851876 2 0 -better%1:18:01:: 09851719 3 0 -better%2:30:00:: 00205046 3 1 -better%2:30:01:: 00205885 2 1 -better%2:33:00:: 01106864 1 1 -better%3:00:00:: 00230335 1 69 -better%3:00:02:: 00231761 2 23 -better%4:02:00:: 00059607 1 45 -better%4:02:01:: 00509846 2 2 -better%5:00:00:advisable:00 00067379 3 8 -better%5:00:00:major:01 01471260 4 0 -better-known%5:00:00:known:00 01375689 1 0 -better-looking%5:00:00:beautiful:00 00218950 1 1 -better_half%1:18:00:: 10640620 1 0 -better_off%5:00:00:fortunate:00 01048202 1 3 -bettering%3:00:00:: 00232234 1 0 -betterment%1:04:00:: 00261029 3 0 -betterment%1:11:00:: 07357388 1 1 -betterment%1:26:00:: 14422751 2 0 -betting%5:00:00:indulgent:00 01297946 1 0 -betting_odds%1:24:00:: 13823483 1 0 -betting_shop%1:06:00:: 02833140 1 0 -bettong%1:05:00:: 01880716 1 0 -bettongia%1:05:00:: 01880570 1 0 -bettor%1:18:00:: 09851876 1 0 -betty_friedan%1:18:00:: 10982450 1 0 -betty_naomi_friedan%1:18:00:: 10982450 1 0 -betty_naomi_goldstein_friedan%1:18:00:: 10982450 1 0 -betula%1:20:00:: 12280886 1 0 -betula_alleghaniensis%1:20:00:: 12281788 1 0 -betula_cordifolia%1:20:00:: 12281974 1 0 -betula_fontinalis%1:20:00:: 12283542 1 0 -betula_glandulosa%1:20:00:: 12283790 1 0 -betula_lenta%1:20:00:: 12283147 1 0 -betula_leutea%1:20:00:: 12281788 1 0 -betula_neoalaskana%1:20:00:: 12283395 1 0 -betula_nigra%1:20:00:: 12282933 1 0 -betula_papyrifera%1:20:00:: 12281974 1 0 -betula_pendula%1:20:00:: 12282527 1 0 -betula_populifolia%1:20:00:: 12282235 1 0 -betula_pubescens%1:20:00:: 12282737 1 0 -betulaceae%1:20:00:: 12280487 1 0 -betulaceous%3:01:00:: 02662252 1 0 -between%4:02:00:: 00250898 2 1 -between%4:02:03:: 00498387 1 1 -between_decks%4:02:00:: 00498293 1 0 -betweenbrain%1:08:00:: 05496990 1 0 -betwixt%4:02:00:: 00498387 1 0 -beurre_noisette%1:13:00:: 07849026 1 0 -bevatron%1:06:00:: 02833275 1 0 -bevel%1:06:00:: 02833403 2 0 -bevel%1:06:01:: 02833576 1 0 -bevel%2:35:00:: 01583993 1 4 -bevel_gear%1:06:00:: 02833793 1 0 -bevel_square%1:06:00:: 02833403 1 0 -beverage%1:13:00:: 07881800 1 2 -beveridge%1:18:00:: 10850667 1 0 -beverly_hills%1:15:00:: 09062791 1 0 -beverly_sills%1:18:00:: 11300326 1 0 -bevin%1:18:00:: 10850964 1 0 -bevy%1:14:00:: 07991579 2 0 -bevy%1:14:01:: 08415774 1 2 -bewail%2:32:00:: 00911350 1 1 -beware%2:31:00:: 00724664 1 2 -bewhisker%2:40:00:: 02332173 1 0 -bewhiskered%5:00:00:unshaven:00 02153965 1 2 -bewick's_swan%1:05:00:: 01859852 1 0 -bewilder%2:31:00:: 00622384 1 2 -bewilder%2:37:00:: 01791232 2 1 -bewildered%5:00:00:perplexed:00 01766133 1 6 -bewilderedly%4:02:00:: 00194834 1 1 -bewilderingly%4:02:00:: 00209227 1 1 -bewilderment%1:09:00:: 05685030 1 1 -bewitch%2:32:00:: 00777522 2 0 -bewitch%2:32:01:: 00776988 3 0 -bewitch%2:37:00:: 01806505 1 1 -bewitched%5:00:00:enchanted:00 00865765 1 1 -bewitchery%1:07:00:: 04686388 1 0 -bewitching%5:00:00:attractive:01 00166753 1 0 -bewitchingly%4:02:00:: 00278834 1 0 -bewitchment%1:09:00:: 05979454 1 0 -bewray%2:32:00:: 00936330 1 0 -bextra%1:06:00:: 04518468 1 0 -bey%1:18:00:: 09852179 2 0 -bey%1:18:01:: 09852289 1 0 -beyond%4:02:00:: 00045607 3 0 -beyond%4:02:01:: 00045704 1 10 -beyond%4:02:02:: 00045897 2 1 -beyond_a_doubt%4:02:00:: 00373216 1 0 -beyond_a_shadow_of_a_doubt%4:02:00:: 00373216 1 0 -beyond_control%4:02:00:: 00148422 1 0 -beyond_doubt%4:02:00:: 00373216 1 0 -beyond_doubt%5:00:00:unquestionable:00 01918541 1 0 -beyond_measure%4:02:00:: 00046545 1 1 -bezant%1:21:00:: 13389194 1 0 -bezel%1:06:00:: 02833943 1 0 -bezique%1:04:00:: 00494100 1 0 -bezoar_goat%1:05:00:: 02417663 1 0 -bezzant%1:21:00:: 13389194 1 0 -bh%1:27:00:: 14631757 1 0 -bhadon%1:28:00:: 15220503 1 0 -bhadrapada%1:28:00:: 15220503 1 0 -bhaga%1:18:00:: 09524840 1 0 -bhagavad-gita%1:10:00:: 06431156 1 0 -bhagavadgita%1:10:00:: 06431156 1 0 -bhakti%1:04:00:: 01042998 1 0 -bhang%1:06:00:: 02834147 1 0 -bharat%1:15:00:: 08900535 1 0 -bhumi_devi%1:18:00:: 09525170 1 0 -bhutan%1:15:00:: 08852209 1 0 -bhutanese%1:18:00:: 09694529 1 0 -bhutanese%3:01:00:: 03048204 1 0 -bhutanese_monetary_unit%1:23:00:: 13689282 1 0 -bhutani%1:18:00:: 09694529 1 0 -bi%1:27:00:: 14631502 1 0 -bi-fold_door%1:06:00:: 02836513 1 0 -bialy%1:13:00:: 07692517 1 0 -bialystoker%1:13:00:: 07692517 1 0 -biannual%5:00:00:periodic:00 01969348 1 0 -biannually%4:02:00:: 00279174 1 0 -bias%1:09:00:: 06201908 1 1 -bias%1:25:00:: 13904164 2 0 -bias%2:31:00:: 00680346 2 0 -bias%2:33:00:: 01085677 1 0 -bias%5:00:00:oblique:00 01719393 1 0 -biased%5:00:00:partial:01 01723091 1 0 -biaural%3:00:00:: 00240417 1 0 -biauricular%3:01:00:: 02649570 1 0 -biauriculate_heart%1:08:00:: 05389310 1 0 -biaxal%3:01:00:: 02662394 1 0 -biaxate%3:01:00:: 02662394 1 0 -biaxial%3:01:00:: 02662394 1 0 -bib%1:06:00:: 02834295 2 0 -bib%1:06:01:: 02834397 1 0 -bib%2:34:00:: 01172114 1 0 -bib-and-tucker%1:06:00:: 02834506 1 0 -bibb_lettuce%1:13:00:: 07724078 1 0 -bibbed%3:00:00:: 00236839 1 0 -bible%1:10:00:: 06431740 1 13 -bible%1:10:01:: 06422643 2 0 -bible-worship%1:04:00:: 01044867 1 0 -bible_belt%1:15:00:: 08510030 1 1 -bible_leaf%1:20:00:: 12021499 1 0 -bibless%3:00:00:: 00236922 1 0 -biblical%3:01:00:: 02854521 1 8 -biblical%3:01:02:: 02854747 2 0 -biblical_aramaic%1:10:00:: 06988540 1 0 -biblical_latin%1:10:00:: 06963571 1 0 -bibliographer%1:18:00:: 09852558 1 0 -bibliographic%3:01:00:: 02662538 1 0 -bibliographical%3:01:00:: 02662538 1 1 -bibliography%1:10:00:: 06486630 1 2 -bibliolatrous%3:01:00:: 02662692 1 0 -bibliolatry%1:04:00:: 01044867 1 0 -bibliomania%1:07:00:: 04946266 1 0 -bibliomaniacal%3:01:00:: 02662792 1 0 -bibliophile%1:18:00:: 09852679 1 0 -bibliophilic%3:01:00:: 02662933 1 0 -bibliopole%1:18:00:: 09852826 1 0 -bibliopolic%3:01:00:: 02663040 1 0 -bibliopolist%1:18:00:: 09852826 1 0 -bibliothec%1:18:00:: 10257948 1 0 -bibliotheca%1:14:00:: 07978055 1 0 -bibliothecal%3:01:00:: 02663145 1 0 -bibliothecarial%3:01:00:: 02663145 1 0 -bibliotic%3:01:00:: 02663351 1 0 -bibliotics%1:09:00:: 05998526 1 0 -bibliotist%1:18:00:: 09852979 1 0 -bibos%1:05:00:: 02409702 1 0 -bibos_frontalis%1:05:00:: 02410141 1 0 -bibos_gaurus%1:05:00:: 02410011 1 0 -bibulous%5:00:02:intoxicated:00 00798491 1 0 -bicameral%3:00:00:: 00233263 1 0 -bicameral%5:00:00:divided:00 02479361 2 0 -bicameral_script%1:10:00:: 06825863 1 0 -bicapsular%3:01:00:: 02663453 1 0 -bicarbonate%1:27:00:: 14775729 1 0 -bicarbonate_of_soda%1:27:00:: 14775995 1 0 -bicentenary%1:28:00:: 15251600 1 0 -bicentenary%3:01:00:: 02999190 1 0 -bicentennial%1:28:00:: 15251600 1 0 -bicentennial%3:01:00:: 02999190 1 0 -bicentric%5:00:00:central:01 00330322 1 0 -bicephalous%5:00:00:headed:01 01183892 1 0 -biceps%1:08:00:: 05579239 1 2 -biceps_brachii%1:08:00:: 05579436 1 1 -biceps_humeri%1:08:00:: 05579436 1 0 -bichloride%1:27:00:: 15017343 1 0 -bichloride_of_mercury%1:27:00:: 14950694 1 0 -bichromate%1:27:00:: 15013764 1 0 -bichromated%3:01:00:: 02663583 1 0 -bichrome%5:00:00:colored:00 00396115 1 0 -bicipital%3:01:00:: 02663676 1 0 -bicker%1:10:00:: 07184735 1 0 -bicker%2:32:00:: 00774056 1 1 -bickering%1:10:00:: 07184735 1 1 -bicolor%5:00:00:colored:00 00396115 1 0 -bicolor_lespediza%1:20:00:: 12543186 1 0 -bicolored%5:00:00:colored:00 00396115 1 0 -bicolour%5:00:00:colored:00 00396115 1 0 -bicoloured%5:00:00:colored:00 00396115 1 0 -biconcave%5:00:00:concave:00 00536008 1 0 -biconvex%5:00:00:convex:00 00537745 1 0 -bicorn%1:06:00:: 02834642 1 0 -bicorn%5:00:00:horned:00 02034324 1 0 -bicornate%5:00:00:horned:00 02034324 1 0 -bicorne%1:06:00:: 02834642 1 0 -bicorned%5:00:00:horned:00 02034324 1 0 -bicornuate%5:00:00:horned:00 02034324 1 0 -bicornuous%5:00:00:horned:00 02034324 1 0 -bicuspid%1:08:00:: 05307358 1 0 -bicuspid%5:00:00:angular:00 02048449 1 0 -bicuspid_valve%1:08:00:: 05393813 1 0 -bicuspidate%5:00:00:angular:00 02048449 1 0 -bicycle%1:06:00:: 02834778 1 5 -bicycle%2:38:00:: 01935476 1 0 -bicycle-built-for-two%1:06:00:: 02835271 1 0 -bicycle_chain%1:06:00:: 02835412 1 0 -bicycle_clip%1:06:00:: 02835551 1 0 -bicycle_pump%1:06:00:: 02835724 1 0 -bicycle_race%1:11:00:: 07459249 1 0 -bicycle_rack%1:06:00:: 02835829 1 0 -bicycle_seat%1:06:00:: 02835915 1 0 -bicycle_traffic%1:14:00:: 08426211 1 0 -bicycle_wheel%1:06:00:: 02836035 1 0 -bicycler%1:18:00:: 09986189 1 0 -bicyclic%5:00:00:cyclic:02 00676754 1 0 -bicycling%1:04:00:: 00451563 1 0 -bicyclist%1:18:00:: 09986189 1 0 -bicylindrical%3:01:00:: 02709036 1 0 -bid%1:04:00:: 00786887 2 1 -bid%1:10:00:: 07165086 3 0 -bid%1:10:01:: 06737112 4 0 -bid%1:10:03:: 07168131 1 1 -bid%2:32:00:: 00793580 6 1 -bid%2:32:01:: 00902932 2 3 -bid%2:32:02:: 00759657 3 3 -bid%2:40:00:: 02298632 1 6 -bid%2:40:01:: 02300060 4 1 -bid%2:40:04:: 02240674 5 1 -bid_price%1:21:00:: 13304186 1 0 -bida%1:15:00:: 08987262 1 0 -biddable%5:00:00:obedient:00 01612627 1 0 -bidder%1:18:00:: 09853087 1 1 -bidder%1:18:01:: 09853184 2 0 -bidding%1:10:00:: 07186528 2 0 -bidding%1:10:01:: 06737112 3 0 -bidding%1:10:02:: 07168131 1 1 -bidding_contest%1:04:00:: 01169112 1 0 -biddy%1:05:01:: 01792042 2 0 -biddy%1:05:02:: 01792640 1 0 -bide%2:42:00:: 02637202 1 1 -bidens%1:20:00:: 11939887 1 0 -bidens_bipinnata%1:20:00:: 11940349 1 0 -bidens_connata%1:20:00:: 11940915 1 0 -bidens_coronata%1:20:00:: 11940599 1 0 -bidens_trichosperma%1:20:00:: 11940599 1 0 -bidens_tripartita%1:20:00:: 11940750 1 0 -bidentate%5:00:00:rough:02 02245944 1 0 -bidet%1:06:00:: 02836174 1 0 -bidirectional%3:00:00:: 00233442 1 0 -biedermeier%3:01:00:: 02625838 1 0 -biennial%1:20:00:: 11552976 1 0 -biennial%3:00:00:: 00678221 1 0 -biennial%5:00:00:periodic:00 01969477 2 0 -biennially%4:02:00:: 00279050 1 0 -bier%1:06:00:: 02836268 2 0 -bier%1:06:01:: 02836392 1 0 -bierce%1:18:00:: 10851139 1 0 -biface%5:00:00:bidirectional:00 00233635 1 0 -bifacial%5:00:00:bidirectional:00 00233635 1 0 -biff%1:04:00:: 00134780 1 0 -biff%2:35:00:: 01416020 1 0 -bifid%5:00:00:divided:00 02479492 1 0 -bifilar%3:01:00:: 02728303 1 0 -biflagellate%3:01:00:: 03015336 1 0 -bifocal%5:00:00:central:01 00330396 1 0 -bifocals%1:06:00:: 02836607 1 0 -bifoliate%5:00:00:leafy:00 01700944 1 0 -biform%5:00:00:formed:00 02145464 1 0 -bifurcate%2:30:00:: 00329817 2 0 -bifurcate%2:42:00:: 02718863 1 0 -bifurcate%5:00:00:divided:00 02479602 1 0 -bifurcated%5:00:00:divided:00 02480023 1 0 -bifurcation%1:04:00:: 00388710 3 0 -bifurcation%1:25:00:: 13886910 2 0 -bifurcation%1:25:01:: 13887056 1 0 -big%3:00:01:: 01382086 1 107 -big%4:02:00:: 00225672 2 1 -big%4:02:01:: 00225805 4 0 -big%4:02:02:: 00225892 3 0 -big%4:02:03:: 00226054 1 1 -big%5:00:00:conspicuous:00 00579622 5 2 -big%5:00:00:generous:01 01111418 12 0 -big%5:00:00:generous:02 01114658 11 0 -big%5:00:00:heavy:08 01191780 10 0 -big%5:00:00:important:00 01276872 2 7 -big%5:00:00:intemperate:00 02402439 6 0 -big%5:00:00:intense:00 01510444 3 2 -big%5:00:00:loud:00 01453084 4 2 -big%5:00:00:mature:01 01488616 9 0 -big%5:00:00:pregnant:00 00173391 13 0 -big%5:00:00:proud:00 01890187 8 0 -big%5:00:02:proud:00 01890752 7 0 -big-bang_theory%1:09:00:: 05887911 1 0 -big-bellied%5:00:00:bellied:00 00222775 1 0 -big-boned%5:00:00:robust:00 02038421 1 0 -big-bud_hickory%1:20:00:: 12322099 1 0 -big-chested%5:00:00:robust:00 02038555 1 1 -big-cone_douglas_fir%1:20:00:: 11629047 1 0 -big-cone_spruce%1:20:00:: 11629047 1 0 -big-eared_bat%1:05:00:: 02144936 1 0 -big-eyed_scad%1:05:00:: 02581108 1 0 -big-leaf_maple%1:20:00:: 12754003 1 0 -big-shouldered%5:00:00:robust:00 02038735 1 1 -big-ticket%5:00:00:expensive:00 00933415 1 1 -big-toothed_aspen%1:20:00:: 12734215 1 0 -big-tree_plum%1:20:00:: 12640081 1 0 -big_band%1:14:00:: 08250168 1 1 -big_bang%1:11:00:: 07408796 1 0 -big_bang_theory%1:09:00:: 05887911 1 0 -big_bedbug%1:05:00:: 02244515 1 0 -big_ben%1:06:00:: 02836766 1 0 -big_bend%1:15:00:: 08602650 1 0 -big_bend_national_park%1:15:00:: 08602822 1 0 -big_bill_haywood%1:18:00:: 11036911 1 0 -big_bill_tilden%1:18:00:: 11342440 1 0 -big_blue%1:06:00:: 02836900 1 0 -big_board%1:06:00:: 02837134 2 0 -big_board%1:06:01:: 03822951 1 0 -big_brother%1:18:00:: 09853467 2 0 -big_brother%1:18:01:: 09853541 1 0 -big_brown_bat%1:05:00:: 02147173 1 0 -big_bucks%1:21:00:: 13250680 1 0 -big_business%1:14:00:: 07967129 1 0 -big_businessman%1:18:00:: 09840217 1 0 -big_cat%1:05:00:: 02127808 1 0 -big_cheese%1:18:00:: 09853881 1 0 -big_deal%1:07:00:: 05168697 2 0 -big_deal%1:18:00:: 09853881 1 0 -big_dipper%1:06:00:: 04102406 2 0 -big_dipper%1:17:00:: 09219858 1 0 -big_enchilada%1:18:00:: 09853881 1 0 -big_fish%1:18:00:: 09853881 1 0 -big_game%1:05:00:: 02153109 1 0 -big_gun%1:18:00:: 09853881 1 0 -big_h%1:06:00:: 02837416 1 0 -big_hand%1:06:00:: 03772584 1 0 -big_league%1:14:00:: 08231499 1 3 -big_leaguer%1:18:00:: 10283931 1 1 -big_marigold%1:20:00:: 12020736 1 0 -big_money%1:21:00:: 13250680 1 0 -big_sagebrush%1:20:00:: 12014524 1 0 -big_science%1:04:00:: 00637912 1 0 -big_shagbark%1:20:00:: 12321395 1 0 -big_shellbark%1:20:00:: 12321395 1 0 -big_shellbark_hickory%1:20:00:: 12321395 1 0 -big_shot%1:18:00:: 09853881 1 1 -big_sioux_river%1:17:00:: 09220574 1 0 -big_sister%1:18:00:: 09854218 1 0 -big_spender%1:18:00:: 10635625 1 0 -big_stick%1:10:00:: 06880013 1 0 -big_sur%1:15:00:: 09166756 1 0 -big_time%1:26:00:: 14475154 1 0 -big_toe%1:08:00:: 05577741 1 0 -big_top%1:06:00:: 03035252 1 0 -big_tree%1:20:00:: 11641494 1 0 -big_wheel%1:18:00:: 09853881 1 0 -bigamist%1:18:00:: 09853305 1 0 -bigamous%5:00:00:polygamous:00 01545059 1 0 -bigamy%1:04:00:: 00775095 2 0 -bigamy%1:26:00:: 13964466 1 0 -bigarade%1:20:00:: 12708654 1 0 -bigeminal%5:00:00:multiple:00 02216890 1 0 -bigeneric%5:00:00:crossbred:00 01904371 1 0 -bigeye%1:05:00:: 02571652 1 0 -bigeye_scad%1:05:00:: 02581108 1 0 -bigfoot%1:18:00:: 09487385 1 0 -bigger%5:00:00:large:00 01383756 1 9 -biggin%1:06:00:: 02837309 1 0 -biggish%5:00:00:large:00 01383857 1 0 -bighead%1:26:00:: 14261112 1 0 -bigheaded%5:00:00:proud:00 01890382 1 0 -bighearted%5:00:00:generous:01 01111418 1 0 -bigheartedness%1:07:00:: 04832401 1 0 -bighorn%1:05:00:: 02415577 2 0 -bighorn%1:17:00:: 09220046 1 0 -bighorn_river%1:17:00:: 09220046 1 0 -bighorn_sheep%1:05:00:: 02415577 1 0 -bight%1:06:00:: 02837567 4 0 -bight%1:17:00:: 09220239 3 0 -bight%1:25:00:: 13869896 2 0 -bight%1:25:01:: 13875884 1 0 -bight%2:35:00:: 01342536 1 0 -bight_of_benin%1:17:00:: 09220434 1 0 -bigmouthed%5:00:00:indiscreet:00 00773299 1 0 -bigness%1:07:00:: 05103946 1 0 -bignonia%1:20:00:: 12813870 1 0 -bignonia_capreolata%1:20:00:: 12814003 1 0 -bignoniaceae%1:20:00:: 12813393 1 0 -bignoniaceous%3:01:00:: 02663798 1 0 -bignoniad%1:20:00:: 12813753 1 0 -bigos%1:13:00:: 07589458 1 0 -bigot%1:18:00:: 09853645 1 0 -bigoted%5:00:00:intolerant:00 02436794 1 0 -bigotry%1:09:00:: 06206210 1 0 -bigram%1:10:00:: 06360599 1 0 -bigtooth_aspen%1:20:00:: 12734215 1 0 -bigtoothed_aspen%1:20:00:: 12734215 1 0 -bigwig%1:18:00:: 10235142 1 0 -bihar%1:15:00:: 08905085 1 0 -bihari%1:10:00:: 06970510 1 0 -bijou%1:06:00:: 02837702 1 0 -bijugate_leaf%1:20:00:: 13157346 1 0 -bijugous_leaf%1:20:00:: 13157346 1 0 -bike%1:06:00:: 02834778 2 0 -bike%1:06:02:: 03790512 1 0 -bike%2:38:00:: 01935476 1 0 -bikers%1:14:00:: 08370878 1 0 -bikini%1:06:00:: 02837789 2 0 -bikini%1:15:00:: 08839296 1 0 -bikini_pants%1:06:00:: 02837887 1 0 -bilabial%1:10:00:: 07117333 1 0 -bilabial%3:01:00:: 03048385 1 0 -bilabiate%5:00:00:lipped:00 01704273 1 0 -bilateral%5:00:00:multilateral:00 00237788 3 0 -bilateral%5:00:00:reciprocal:00 01946012 2 0 -bilateral%5:00:00:symmetrical:00 02372118 1 1 -bilateral_contract%1:10:00:: 06522357 1 0 -bilateral_descent%1:24:00:: 13814456 1 0 -bilateral_symmetry%1:07:00:: 05065386 1 0 -bilateralism%1:07:00:: 05065386 1 0 -bilaterality%1:07:00:: 05065386 1 0 -bilaterally%4:02:00:: 00252965 1 0 -bilaterally%4:02:01:: 00252872 2 0 -bilaterally_symmetric%5:00:00:symmetrical:00 02372118 1 0 -bilaterally_symmetrical%3:00:00:: 02374697 1 0 -bilaterally_symmetrical%5:00:00:symmetrical:00 02372118 2 0 -bilberry%1:13:00:: 07743224 3 0 -bilberry%1:20:01:: 12248359 2 0 -bilberry%1:20:02:: 12248574 1 0 -bilby%1:05:00:: 01876667 1 0 -bile%1:08:00:: 05406570 1 1 -bile_acid%1:27:00:: 15059552 1 0 -bile_duct%1:08:00:: 05386845 1 0 -bile_salt%1:27:00:: 15012999 1 0 -bilestone%1:17:00:: 09286200 1 0 -bilge%1:06:00:: 02838014 2 0 -bilge%1:27:00:: 15059797 1 0 -bilge%2:30:00:: 00257947 2 0 -bilge%2:30:01:: 00258528 1 0 -bilge_keel%1:06:00:: 02838178 1 0 -bilge_pump%1:06:00:: 02838345 1 0 -bilge_water%1:27:00:: 15059797 1 0 -bilge_well%1:06:00:: 02838577 1 0 -bilges%1:06:00:: 02838448 1 0 -bilgewater%1:10:00:: 06611147 1 0 -bilgy%5:00:00:malodorous:00 01053539 1 0 -bilharzia%1:26:00:: 14180565 1 0 -bilharziasis%1:26:00:: 14180565 1 1 -biliary%3:01:00:: 02663950 2 0 -biliary%3:01:02:: 02664067 1 0 -biliary_ductule%1:08:00:: 05387028 1 0 -bilimbi%1:20:00:: 12704513 1 0 -bilinear%5:00:00:linear:02 01417678 1 0 -bilingual%1:18:00:: 09854290 1 0 -bilingual%5:00:00:multilingual:00 01545777 1 1 -bilingual_dictionary%1:10:00:: 06419234 1 0 -bilingualism%1:09:00:: 05622617 1 0 -bilingualist%1:18:00:: 09854290 1 0 -bilingually%4:02:00:: 00129426 1 0 -bilious%3:01:00:: 02664067 1 0 -bilious%5:00:00:ill-natured:00 01135269 3 0 -bilious%5:00:00:ill:01 02543149 2 0 -biliousness%1:07:00:: 04642258 2 0 -biliousness%1:26:00:: 14062565 1 0 -bilirubin%1:27:00:: 14756369 1 0 -bilk%2:38:00:: 02074377 4 0 -bilk%2:40:00:: 02313801 3 0 -bilk%2:41:00:: 02572792 1 1 -bilk%2:41:01:: 02558172 2 0 -bill%1:04:00:: 00551407 4 1 -bill%1:05:00:: 01758308 10 0 -bill%1:06:00:: 02838728 9 0 -bill%1:06:01:: 02838958 8 0 -bill%1:10:00:: 06793426 6 0 -bill%1:10:01:: 06516955 2 6 -bill%1:10:02:: 07250339 5 0 -bill%1:10:04:: 06536853 1 22 -bill%1:10:06:: 06486874 7 0 -bill%1:21:00:: 13393762 3 4 -bill%2:32:00:: 00977153 2 1 -bill%2:32:01:: 00991900 3 0 -bill%2:40:00:: 02320374 1 2 -bill-me_order%1:10:00:: 06529630 1 0 -bill_clinton%1:18:00:: 10902591 1 0 -bill_gates%1:18:00:: 10991936 1 0 -bill_haley%1:18:00:: 11024226 1 0 -bill_mauldin%1:18:00:: 11165164 1 0 -bill_of_attainder%1:10:00:: 06537323 1 0 -bill_of_entry%1:10:00:: 06487050 1 0 -bill_of_exchange%1:21:00:: 13377268 1 0 -bill_of_fare%1:10:00:: 06492939 1 0 -bill_of_goods%1:10:00:: 06487172 2 0 -bill_of_goods%1:10:01:: 06610557 1 0 -bill_of_health%1:10:00:: 06479204 1 1 -bill_of_indictment%1:10:00:: 07235335 1 0 -bill_of_lading%1:10:00:: 06520742 1 0 -bill_of_particulars%1:10:00:: 06559114 1 0 -bill_of_review%1:04:00:: 01197479 1 0 -bill_of_rights%1:10:00:: 06727758 1 0 -bill_of_sale%1:10:00:: 06545728 1 0 -bill_poster%1:18:00:: 09854510 1 0 -bill_russell%1:18:00:: 11275495 1 0 -bill_sticker%1:18:00:: 09854510 1 0 -billabong%1:17:00:: 09220770 2 0 -billabong%1:17:01:: 09220922 1 0 -billboard%1:06:00:: 02839110 1 0 -billed%5:00:00:beaked:00 00206750 1 0 -billet%1:04:00:: 00586262 3 0 -billet%1:06:00:: 02839200 2 0 -billet%1:10:00:: 06626286 1 0 -billet%2:42:00:: 02653159 1 0 -billet_doux%1:10:00:: 06626618 1 0 -billfish%1:05:01:: 02630739 2 0 -billfish%1:05:02:: 02549989 4 0 -billfish%1:05:03:: 02641379 1 0 -billfish%1:05:04:: 02551668 3 0 -billfold%1:06:00:: 04548362 1 0 -billhook%1:06:00:: 02838958 1 0 -billiard%3:01:00:: 02664215 1 0 -billiard_ball%1:06:00:: 02839351 1 0 -billiard_hall%1:06:00:: 02839592 1 0 -billiard_marker%1:06:00:: 02839477 1 0 -billiard_parlor%1:06:00:: 02839592 1 0 -billiard_parlour%1:06:00:: 02839592 1 0 -billiard_player%1:18:00:: 09854421 1 0 -billiard_room%1:06:00:: 02839592 1 0 -billiard_saloon%1:06:00:: 02839592 1 0 -billiard_table%1:06:00:: 03982430 1 0 -billiards%1:04:00:: 00499924 1 0 -billie_jean_king%1:18:00:: 11105463 1 0 -billie_jean_moffitt_king%1:18:00:: 11105463 1 0 -billie_the_kid%1:18:00:: 10857001 1 0 -billing%1:10:00:: 07190941 1 0 -billings%1:15:00:: 09108728 1 0 -billingsgate%1:10:00:: 06721342 1 0 -billion%1:23:00:: 13751829 3 0 -billion%1:23:01:: 13752172 1 1 -billion%1:23:02:: 13776432 2 0 -billion%5:00:00:cardinal:00 02199342 1 4 -billion%5:00:01:cardinal:00 02199523 2 0 -billion-dollar_grass%1:20:00:: 12117912 1 0 -billionaire%1:18:00:: 10529684 1 0 -billionth%1:23:00:: 13739721 2 0 -billionth%1:24:00:: 13850019 1 0 -billionth%5:00:00:ordinal:00 02212698 1 0 -billow%1:11:00:: 07348545 1 0 -billow%2:30:00:: 00256117 4 0 -billow%2:38:00:: 02041206 3 0 -billow%2:38:02:: 02041422 1 1 -billow%2:38:03:: 02041728 2 0 -billowing%5:00:00:stormy:00 00304455 1 0 -billowy%5:00:00:stormy:00 00304455 1 0 -billy%1:05:00:: 02416880 2 0 -billy%1:06:00:: 04491388 1 0 -billy-ho%1:23:00:: 13775319 1 0 -billy_buttons%1:20:00:: 11958888 1 0 -billy_club%1:06:00:: 04491388 1 0 -billy_goat%1:05:00:: 02416880 1 0 -billy_graham%1:18:00:: 11010385 1 0 -billy_mitchell%1:18:00:: 11182621 1 0 -billy_sunday%1:18:00:: 11325534 1 0 -billy_wilder%1:18:00:: 11386503 1 0 -billyo%1:23:00:: 13775319 1 0 -billyoh%1:23:00:: 13775319 1 0 -billystick%1:06:00:: 04491388 1 0 -bilobate%5:00:00:compound:00 02171724 1 0 -bilobated%5:00:00:compound:00 02171724 1 0 -bilobed%5:00:00:compound:00 02171724 1 0 -bilocation%1:15:00:: 08489890 1 0 -bilocular%5:00:00:divided:00 02480151 1 0 -bilocular_capsule%1:20:00:: 11685400 1 0 -biloculate%5:00:00:divided:00 02480151 1 0 -biloxi%1:10:00:: 06908401 3 0 -biloxi%1:15:00:: 09104474 2 0 -biloxi%1:18:00:: 09650729 1 0 -bilsted%1:20:00:: 12316572 1 0 -biltong%1:13:00:: 07665013 1 0 -bimanual%5:00:00:handed:00 02028046 1 0 -bimbo%1:18:00:: 09854708 1 0 -bimester%1:28:00:: 15204609 1 0 -bimestrial%5:00:00:long:02 01438853 2 0 -bimestrial%5:00:00:periodic:00 01969881 1 0 -bimetal%1:27:00:: 14776237 1 0 -bimetal%5:00:00:metallic:00 01528463 1 0 -bimetallic%3:01:02:: 02664354 1 0 -bimetallic%5:00:00:metallic:00 01528463 2 0 -bimetallic_strip%1:06:00:: 02839758 1 0 -bimetallism%1:21:00:: 13373746 1 0 -bimetallist%1:18:00:: 09854813 1 0 -bimetallistic%3:01:00:: 02664354 1 0 -bimillenary%1:28:00:: 15141375 2 0 -bimillenary%1:28:01:: 15252300 1 0 -bimillenial%3:01:00:: 02664592 1 0 -bimillennium%1:28:00:: 15141375 2 0 -bimillennium%1:28:01:: 15252300 1 0 -bimli%1:20:00:: 12178129 1 0 -bimli_hemp%1:20:00:: 12178129 1 0 -bimodal%3:00:00:: 00240197 1 0 -bimolecular%3:01:00:: 02900932 1 1 -bimonthly%1:10:00:: 06594751 1 0 -bimonthly%4:02:00:: 00255075 2 0 -bimonthly%4:02:01:: 00255181 1 0 -bimonthly%5:00:00:periodic:00 01969881 2 0 -bimonthly%5:00:01:periodic:00 01970014 1 0 -bimorphemic%3:01:00:: 02936511 1 0 -bimotored%5:00:00:motorized:00 01559655 1 0 -bin%1:06:00:: 02839910 1 2 -bin%1:10:00:: 06425534 3 0 -bin%1:23:00:: 13765306 2 0 -bin%2:35:00:: 01493142 1 0 -bin_laden%1:18:00:: 10851452 1 0 -bin_liner%1:06:00:: 02841063 1 0 -binary%1:10:00:: 06570963 2 0 -binary%1:17:00:: 09221070 1 0 -binary%3:01:00:: 02664700 1 0 -binary%5:00:00:multiple:00 02216985 2 0 -binary_arithmetic_operation%1:22:00:: 13440935 1 0 -binary_code%1:10:00:: 06357304 1 0 -binary_compound%1:27:00:: 14618834 1 0 -binary_digit%1:23:00:: 13741512 1 0 -binary_file%1:10:00:: 06509675 1 0 -binary_notation%1:10:00:: 06809905 1 0 -binary_number_system%1:10:00:: 06810020 1 0 -binary_numeration_system%1:10:00:: 06810020 1 0 -binary_operation%1:22:00:: 13440935 1 0 -binary_program%1:10:00:: 06570963 1 0 -binary_star%1:17:00:: 09221070 1 0 -binary_system%1:10:00:: 06810020 1 0 -binate%5:00:00:compound:00 02171836 1 0 -binaural%3:00:00:: 00240417 1 0 -binaurally%4:02:00:: 00207945 1 0 -bind%1:09:00:: 05689801 1 0 -bind%2:29:00:: 00074558 10 0 -bind%2:30:09:: 00567291 9 0 -bind%2:32:00:: 00885217 6 1 -bind%2:35:00:: 01303242 3 4 -bind%2:35:01:: 01285440 8 0 -bind%2:35:02:: 01335804 7 0 -bind%2:35:06:: 01356750 1 8 -bind%2:35:07:: 01286913 5 1 -bind%2:35:08:: 01303547 4 3 -bind%2:41:01:: 02538086 2 4 -bind_off%2:35:00:: 01286038 1 1 -bind_over%2:41:00:: 02495592 1 0 -bindable%5:00:00:attachable:00 00161684 1 0 -binder%1:06:00:: 02840134 4 0 -binder%1:06:01:: 02840245 3 0 -binder%1:06:03:: 02840361 1 1 -binder%1:27:01:: 14704465 2 0 -binder's_board%1:27:00:: 14776391 1 0 -binder_board%1:27:00:: 14776391 1 0 -bindery%1:06:00:: 02840515 1 0 -binding%1:04:00:: 00696882 3 1 -binding%1:06:00:: 02840619 5 0 -binding%1:06:01:: 02840927 2 1 -binding%1:06:02:: 04228215 4 0 -binding%1:07:00:: 04689198 1 4 -binding%5:00:00:valid:00 02499036 1 1 -binding_energy%1:19:00:: 11429057 1 0 -bindweed%1:20:00:: 12823859 1 0 -bine%1:20:00:: 12398174 1 0 -binet%1:18:00:: 10851282 1 0 -binet-simon_scale%1:04:00:: 01007372 1 0 -binful%1:23:00:: 13765306 1 0 -bing_cherry%1:13:00:: 07757511 1 0 -bing_crosby%1:18:00:: 10916731 1 0 -binge%1:04:00:: 00510723 2 0 -binge%1:04:01:: 01073824 1 0 -binge%2:34:00:: 01193099 1 0 -binge-eating_syndrome%1:26:00:: 14057001 1 0 -binge-purge_syndrome%1:26:00:: 14056685 1 0 -binge-vomit_syndrome%1:26:00:: 14056685 1 0 -binger%1:18:00:: 09974177 1 0 -binghamton%1:15:00:: 09124589 1 0 -bingle%1:04:00:: 00132601 1 0 -bingo%1:04:00:: 00504660 1 0 -binnacle%1:06:00:: 02841187 1 0 -binocular%3:01:00:: 02872265 1 0 -binocular_microscope%1:06:00:: 02841506 1 0 -binocular_vision%1:09:00:: 05656042 1 0 -binoculars%1:06:00:: 02841315 1 1 -binomial%1:09:00:: 06036506 1 1 -binomial%3:01:00:: 03048558 1 24 -binomial%5:00:00:onymous:00 00121183 2 0 -binomial_distribution%1:09:00:: 06036697 1 8 -binomial_theorem%1:09:00:: 06036939 1 0 -binominal%5:00:00:onymous:00 00121183 1 0 -binturong%1:05:00:: 02136103 1 0 -binuclear%3:00:00:: 00241260 1 0 -binucleate%3:00:00:: 00241260 1 0 -binucleated%3:00:00:: 00241260 1 0 -bio-assay%1:09:00:: 05740300 1 0 -bio_lab%1:06:00:: 02842008 1 0 -bioarm%1:06:00:: 02842303 1 0 -bioassay%1:09:00:: 05740300 1 2 -bioassay%2:31:00:: 00695120 1 0 -bioattack%1:04:00:: 00967780 1 0 -biocatalyst%1:27:00:: 14723909 1 0 -biocatalytic%3:01:00:: 02664825 1 0 -biochemical%3:01:00:: 02664932 1 1 -biochemical_mechanism%1:22:00:: 13438671 1 1 -biochemically%4:02:00:: 00133987 1 0 -biochemist%1:18:00:: 09854915 1 0 -biochemistry%1:09:00:: 06079620 1 0 -biochip%1:06:00:: 02841641 1 0 -bioclimatic%3:01:00:: 02665088 1 0 -bioclimatology%1:09:00:: 06119496 1 0 -biodefence%1:04:00:: 00961594 1 0 -biodefense%1:04:00:: 00961594 1 0 -biodegradable%5:00:00:perishable:00 01753652 1 0 -biodegradable_pollution%1:26:00:: 14517067 1 0 -biodegrade%2:30:00:: 00191220 1 0 -biodiversity%1:07:00:: 04751652 1 0 -bioelectricity%1:19:00:: 11429238 1 0 -bioengineering%1:09:00:: 06126523 1 0 -bioethics%1:09:00:: 06159777 1 0 -biofeedback%1:09:00:: 05910070 1 0 -bioflavinoid%1:27:00:: 15093137 1 0 -biogenesis%1:04:00:: 00850260 2 0 -biogenesis%1:22:00:: 13438817 1 0 -biogenetic%3:01:00:: 02665212 1 0 -biogenic%3:01:00:: 02665497 1 0 -biogenic%5:00:00:essential:00 00901161 2 0 -biogenous%3:01:00:: 02665367 1 0 -biogeny%1:04:00:: 00850260 1 0 -biogeographic%3:01:00:: 02665642 1 0 -biogeographical%3:01:00:: 02665642 1 0 -biogeographical_region%1:15:00:: 08578364 1 0 -biogeography%1:09:00:: 06066414 1 0 -biographer%1:18:00:: 09855433 1 0 -biographic%3:01:00:: 03048680 1 0 -biographical%3:01:00:: 03048680 1 1 -biography%1:10:00:: 06515827 1 3 -biohazard%1:17:00:: 09221424 2 0 -biohazard%1:26:00:: 14542441 1 0 -biohazard_suit%1:06:00:: 02841847 1 0 -bioko%1:15:00:: 08763932 1 0 -biologic%3:01:00:: 02665803 1 0 -biologic_attack%1:04:00:: 00967780 1 0 -biological%3:00:00:: 01405904 2 0 -biological%3:01:00:: 02665803 1 11 -biological_agent%1:17:00:: 09221424 1 0 -biological_attack%1:04:00:: 00967780 1 0 -biological_clock%1:28:00:: 15135536 1 0 -biological_defence%1:04:00:: 00961594 1 0 -biological_defense%1:04:00:: 00961594 1 0 -biological_group%1:14:00:: 07941170 1 0 -biological_process%1:22:00:: 13526110 1 0 -biological_research%1:04:00:: 00638080 1 0 -biological_science%1:09:00:: 06037666 1 0 -biological_terrorism%1:04:00:: 00763132 1 0 -biological_time%1:28:00:: 15116532 1 0 -biological_warfare%1:04:00:: 00967780 1 2 -biological_warfare_defence%1:04:00:: 00967993 1 0 -biological_warfare_defense%1:04:00:: 00967993 1 0 -biological_weapon%1:06:00:: 02842303 1 0 -biologically%4:02:00:: 00133613 1 0 -biologism%1:04:00:: 00411235 1 0 -biologist%1:18:00:: 09855630 1 1 -biologistic%3:01:00:: 02666029 1 0 -biology%1:09:00:: 06037666 1 4 -biology%1:14:00:: 07993109 3 0 -biology%1:19:00:: 11473488 2 0 -biology_department%1:14:00:: 08115912 1 0 -biology_lab%1:06:00:: 02842008 1 0 -biology_laboratory%1:06:00:: 02842008 1 0 -bioluminescence%1:19:00:: 11476619 1 0 -bioluminescent%5:00:00:light:06 00270856 1 0 -biomass%1:07:00:: 05024691 2 0 -biomass%1:27:00:: 14684918 1 0 -biome%1:14:00:: 07941945 1 0 -biomedical%3:01:00:: 02760316 1 1 -biomedical_cloning%1:04:00:: 00639007 1 0 -biomedical_science%1:09:00:: 06041466 1 0 -biomedicine%1:09:00:: 06046898 2 0 -biomedicine%1:09:01:: 06047096 1 2 -biometric_authentication%1:10:00:: 06424275 1 0 -biometric_identification%1:10:00:: 06424275 1 0 -biometrics%1:09:00:: 06041600 1 0 -biometry%1:09:00:: 06041600 1 0 -bionic%3:01:00:: 02666434 1 0 -bionic%5:00:00:artificial:00 01572009 2 0 -bionic_man%1:18:00:: 09985978 1 0 -bionic_woman%1:18:00:: 09985978 1 0 -bionics%1:09:00:: 06126336 1 0 -bionomic%3:01:00:: 02906478 1 0 -bionomical%3:01:00:: 02906478 1 0 -bionomics%1:09:00:: 06070929 1 0 -biont%1:03:00:: 00006400 1 0 -biophysicist%1:18:00:: 09856267 1 1 -biophysics%1:09:00:: 06097478 1 0 -biopiracy%1:04:00:: 00782629 1 0 -biopsy%1:09:00:: 05740929 1 3 -bioremediation%1:04:00:: 01135163 2 0 -bioremediation%1:09:00:: 06127057 1 0 -biosafety%1:26:00:: 14538811 1 0 -biosafety_level%1:26:00:: 14428404 1 0 -biosafety_level_1%1:26:00:: 14428655 1 0 -biosafety_level_2%1:26:00:: 14428796 1 0 -biosafety_level_3%1:26:00:: 14428970 1 0 -biosafety_level_4%1:26:00:: 14429150 1 0 -bioscience%1:09:00:: 06037298 1 0 -bioscope%1:06:00:: 02842133 2 0 -bioscope%1:06:01:: 02842219 1 0 -biosphere%1:15:00:: 08499504 1 0 -biostatistics%1:09:00:: 06041600 1 0 -biosynthesis%1:22:00:: 13438817 1 0 -biosynthetic%3:01:00:: 02666530 1 0 -biosystematic%3:01:00:: 02666637 1 0 -biosystematics%1:09:00:: 06152973 1 0 -biosystematy%1:09:00:: 06152973 1 0 -biota%1:14:00:: 07993109 1 0 -biotech%1:09:00:: 06126761 1 0 -biotechnology%1:09:00:: 06126523 2 0 -biotechnology%1:09:01:: 06126761 1 0 -bioterrorism%1:04:00:: 00763132 1 0 -biotic%3:01:00:: 02983891 1 0 -biotic_community%1:14:00:: 07941729 1 0 -biotin%1:27:00:: 15092650 1 0 -biotite%1:27:00:: 14668743 1 0 -biotitic%3:01:00:: 02666747 1 0 -biotype%1:14:00:: 07941574 1 0 -biotypic%3:01:00:: 02666852 1 0 -biovular%3:00:00:: 00292298 1 0 -bioweapon%1:06:00:: 02842303 1 0 -biparous%5:00:00:multiparous:00 02475430 1 0 -bipartisan%5:00:00:nonpartisan:00 00731471 1 1 -bipartite%5:00:00:compound:00 02171938 1 0 -bipartite%5:00:00:multilateral:00 00238037 2 0 -bipartizan%5:00:00:nonpartisan:00 00731471 1 0 -biped%1:05:00:: 02157285 1 0 -biped%3:00:00:: 00241672 1 0 -bipedal%3:00:00:: 00241672 1 0 -bipedalism%1:07:00:: 04998254 1 0 -bipinnate%5:00:00:compound:00 02172038 1 0 -bipinnate_leaf%1:20:00:: 13160015 1 0 -bipinnatifid%5:00:00:compound:00 02172152 1 0 -biplane%1:06:00:: 02842573 1 0 -biplane_flying_fish%1:05:00:: 02550780 1 0 -bipolar%3:00:00:: 02475604 3 0 -bipolar%3:01:00:: 02838220 2 0 -bipolar%3:01:01:: 02838374 1 0 -bipolar_disorder%1:26:00:: 14392639 1 0 -biprism%1:06:00:: 02842684 1 0 -biquadrate%1:23:00:: 13731356 1 0 -biquadratic%1:09:00:: 05862113 3 0 -biquadratic%1:10:00:: 06670390 2 0 -biquadratic%1:23:00:: 13731356 1 0 -biquadratic%3:01:00:: 03107913 1 0 -biquadratic_equation%1:10:00:: 06670390 1 0 -biquadratic_polynomial%1:09:00:: 05862113 1 0 -biracial%5:00:00:racial:00 01927904 1 0 -biradial%5:00:00:symmetrical:00 02372303 1 0 -biradially%4:02:00:: 00052659 1 0 -biramous%5:00:00:divided:00 02479602 1 0 -birch%1:06:00:: 02842809 3 0 -birch%1:20:00:: 12281241 2 0 -birch%1:20:02:: 12281600 1 0 -birch%2:35:00:: 01411978 1 0 -birch%5:00:00:woody:00 02575834 1 0 -birch_bark%1:06:00:: 02843029 1 0 -birch_beer%1:13:00:: 07927716 1 0 -birch_family%1:20:00:: 12280487 1 0 -birch_leaf_miner%1:05:00:: 02219015 1 0 -birch_oil%1:27:00:: 14952441 1 0 -birch_rod%1:06:00:: 02842809 1 0 -birch_tree%1:20:00:: 12281241 1 0 -birchbark%1:06:00:: 02843029 1 0 -birchbark_canoe%1:06:00:: 02843029 1 0 -birchen%5:00:00:woody:00 02575834 1 0 -bird%1:05:00:: 01503061 1 29 -bird%1:06:01:: 04212282 5 0 -bird%1:10:00:: 07123870 4 0 -bird%1:13:00:: 07644382 2 1 -bird%1:18:00:: 09989045 3 0 -bird%2:33:00:: 01139865 1 0 -bird's-eye%5:00:00:wide:00 02561123 1 0 -bird's-eye_bush%1:20:00:: 12382875 1 0 -bird's-eye_maple%1:20:00:: 12752892 1 0 -bird's-foot_fern%1:20:00:: 13212379 1 0 -bird's-foot_violet%1:20:00:: 12389501 1 0 -bird's-nest_fungus%1:20:00:: 13046669 1 0 -bird's_eye%1:20:00:: 12891305 1 0 -bird's_eye_view%1:09:00:: 06209101 1 0 -bird's_foot%1:05:00:: 02154416 1 0 -bird's_foot_clover%1:20:00:: 12545635 1 0 -bird's_foot_trefoil%1:20:01:: 12545635 2 0 -bird's_foot_trefoil%1:20:02:: 12574320 1 0 -bird's_nest%1:17:00:: 09221571 1 0 -bird's_nest_fern%1:20:01:: 13181055 1 0 -bird-footed_dinosaur%1:05:00:: 01712008 1 0 -bird-nest%2:35:00:: 01383245 1 0 -bird-on-the-wing%1:20:00:: 12705698 1 0 -bird-scarer%1:06:00:: 04143712 1 0 -bird_cherry%1:20:00:: 12647376 1 0 -bird_cherry_tree%1:20:00:: 12647376 1 0 -bird_dog%1:05:00:: 02098806 1 0 -bird_family%1:05:00:: 01504437 1 0 -bird_fancier%1:18:00:: 09856401 1 0 -bird_feed%1:13:00:: 07805594 1 0 -bird_feeder%1:06:00:: 02843553 1 0 -bird_food%1:13:00:: 07805594 1 0 -bird_genus%1:05:00:: 01507175 1 0 -bird_louse%1:05:00:: 02185481 1 0 -bird_nest%1:17:00:: 09221571 1 0 -bird_of_jove%1:05:00:: 01613294 1 0 -bird_of_juno%1:05:00:: 01805801 1 0 -bird_of_minerva%1:05:00:: 01621127 1 0 -bird_of_night%1:05:00:: 01621127 1 0 -bird_of_paradise%1:05:00:: 01571126 3 0 -bird_of_paradise%1:20:01:: 12354619 2 0 -bird_of_paradise%1:20:02:: 12489815 1 0 -bird_of_passage%1:05:00:: 01515303 2 0 -bird_of_passage%1:18:00:: 10765679 1 0 -bird_of_prey%1:05:00:: 01604330 1 0 -bird_parker%1:18:00:: 11222914 1 0 -bird_pepper%1:20:00:: 12901724 1 0 -bird_sanctuary%1:06:00:: 02763604 1 0 -bird_shot%1:06:00:: 02843777 1 1 -bird_vetch%1:20:00:: 12575812 1 0 -bird_watcher%1:18:00:: 09856500 2 0 -bird_watcher%1:18:01:: 10384214 1 0 -birdbath%1:06:00:: 02843158 1 1 -birdbrain%1:18:00:: 10598904 1 0 -birdcage%1:06:00:: 02843276 1 0 -birdcage_mask%1:06:00:: 02843365 1 0 -birdcall%1:06:00:: 02843465 2 0 -birdcall%1:10:00:: 06796642 1 0 -birder%1:18:00:: 09856500 1 0 -birdfeeder%1:06:00:: 02843553 1 0 -birdhouse%1:06:00:: 02843684 1 1 -birdie%1:06:00:: 04212282 2 0 -birdie%1:23:00:: 13595276 1 0 -birdie%2:35:00:: 01598507 1 5 -birdlime%1:27:00:: 14702703 1 0 -birdlime%2:38:00:: 02083237 1 0 -birdnest%1:17:00:: 09221571 1 0 -birdnest%2:35:00:: 01383245 1 0 -birdnesting%1:04:00:: 00711799 1 0 -birdseed%1:13:00:: 07805594 1 0 -birdseed_grass%1:20:00:: 12129986 1 0 -birdsong%1:10:00:: 06796642 1 0 -birdwatch%2:33:00:: 01139865 1 0 -birefringence%1:19:00:: 11503482 1 3 -birefringent%3:01:00:: 02837278 1 0 -biretta%1:06:00:: 02843909 1 0 -biriani%1:13:00:: 07654298 1 0 -birken%5:00:00:woody:00 02575834 1 0 -birl%2:38:00:: 02048051 2 0 -birl%2:38:01:: 02048272 1 0 -birle%2:38:00:: 02048272 1 0 -birling%1:04:00:: 00343894 1 0 -birmingham%1:15:00:: 08877613 2 1 -birmingham%1:15:01:: 09053947 1 1 -biro%1:06:00:: 02783161 1 0 -birr%1:11:00:: 07399917 2 0 -birr%1:23:00:: 13664396 1 0 -birr%2:39:00:: 02188587 1 0 -birretta%1:06:00:: 02843909 1 0 -birth%1:11:00:: 07320302 2 2 -birth%1:18:00:: 09856671 5 0 -birth%1:22:00:: 13532886 3 1 -birth%1:24:00:: 13813765 4 0 -birth%1:28:00:: 15142167 1 6 -birth%2:29:00:: 00056930 1 0 -birth-control_campaigner%1:18:00:: 09856827 1 0 -birth-control_reformer%1:18:00:: 09856827 1 0 -birth_canal%1:08:00:: 05226937 1 0 -birth_certificate%1:10:00:: 06478452 1 0 -birth_control%1:04:00:: 00851994 1 12 -birth_control_device%1:06:00:: 03096593 1 0 -birth_control_pill%1:06:00:: 03936895 1 0 -birth_defect%1:26:00:: 14465048 1 0 -birth_pangs%1:26:00:: 14330833 1 0 -birth_prevention%1:04:00:: 00851994 1 1 -birth_rate%1:28:00:: 15276427 1 0 -birth_trauma%1:26:00:: 14287995 1 0 -birth_trauma%1:26:01:: 14285461 2 0 -birthday%1:28:00:: 15250178 1 8 -birthday%1:28:01:: 15252422 2 1 -birthday_cake%1:13:00:: 07629988 1 0 -birthday_card%1:10:00:: 06627260 1 0 -birthday_gift%1:21:00:: 13269054 1 0 -birthday_party%1:11:00:: 07448121 1 0 -birthday_present%1:21:00:: 13269054 1 0 -birthday_suit%1:26:00:: 14456586 1 0 -birthing%1:22:00:: 13532886 1 0 -birthing_coach%1:18:00:: 10241024 1 0 -birthmark%1:07:00:: 04692638 1 0 -birthplace%1:15:00:: 08510350 1 1 -birthplace%1:15:01:: 08510456 2 0 -birthrate%1:28:00:: 15276427 1 0 -birthright%1:07:00:: 04921576 1 1 -birthright%1:07:01:: 04921308 3 0 -birthright%1:21:00:: 13263920 2 0 -birthroot%1:20:00:: 12468900 1 0 -birthwort%1:20:00:: 11801392 1 0 -birthwort_family%1:20:00:: 11801038 1 0 -biryani%1:13:00:: 07654298 1 0 -bisayan%1:18:00:: 10755648 1 0 -bisayas%1:15:00:: 08982452 1 0 -biscayne_bay%1:17:00:: 09221723 1 0 -biscayne_national_park%1:15:00:: 08602997 1 0 -biscuit%1:13:00:: 07693972 1 4 -biscuit%1:13:02:: 07635155 2 1 -biscutalla_laevigata%1:20:00:: 11874878 1 0 -biscutella%1:20:00:: 11874707 1 0 -bise%1:19:00:: 11429356 1 0 -bisect%2:35:00:: 01550817 1 0 -bisection%1:04:00:: 00386450 1 0 -bisectional%3:01:00:: 02837404 1 0 -biserial_correlation%1:09:00:: 06033889 1 0 -biserial_correlation_coefficient%1:09:00:: 06033889 1 0 -biserrate%5:00:00:rough:02 02246056 1 0 -bisexual%1:18:00:: 09857007 1 0 -bisexual%3:00:00:: 01203147 1 0 -bisexual%5:00:00:androgynous:00 01478907 2 0 -bisexual_person%1:18:00:: 09857007 1 0 -bisexuality%1:04:00:: 00857160 2 0 -bisexuality%1:07:00:: 05008746 1 0 -bishkek%1:15:00:: 09020792 1 0 -bishop%1:06:00:: 02844056 3 0 -bishop%1:13:00:: 07913300 2 0 -bishop%1:18:00:: 09857200 1 6 -bishop's_cap%1:20:00:: 12800586 1 0 -bishop's_hat%1:20:00:: 11699071 1 0 -bishop's_pine%1:20:00:: 11610437 1 0 -bishop's_throne%1:06:00:: 02983904 1 0 -bishop_berkeley%1:18:00:: 10847125 1 0 -bishop_of_rome%1:18:00:: 10453533 1 0 -bishop_pine%1:20:00:: 11610437 1 0 -bishop_ulfila%1:18:00:: 11355669 1 0 -bishop_ulfilas%1:18:00:: 11355669 1 0 -bishop_wulfila%1:18:00:: 11355669 1 0 -bishopric%1:15:00:: 08550966 1 0 -bishopry%1:04:00:: 00589494 1 1 -biskek%1:15:00:: 09020792 1 0 -bismarck%1:15:00:: 09129719 2 0 -bismarck%1:18:00:: 10851599 1 0 -bismarck_archipelago%1:15:00:: 08842819 1 0 -bismarck_sea%1:04:00:: 01271669 2 0 -bismarck_sea%1:17:00:: 09221900 1 0 -bismarckian%3:01:00:: 03029133 1 0 -bismark%1:13:00:: 07639344 1 0 -bismuth%1:27:00:: 14631502 1 0 -bismuthal%3:01:00:: 02837489 1 0 -bismuthic%3:01:00:: 02837588 1 0 -bison%1:05:00:: 02410509 1 0 -bison_bison%1:05:00:: 02410702 1 0 -bison_bonasus%1:05:00:: 02410900 1 0 -bisontine%3:01:00:: 02837700 1 0 -bisque%1:13:00:: 07584332 1 0 -bissau%1:15:00:: 08948027 1 0 -bissextile_day%1:28:00:: 15159426 1 0 -bissextile_year%1:28:00:: 15202230 1 0 -bister%1:27:00:: 14843640 1 0 -bistered%3:01:00:: 02837794 1 0 -bistre%1:27:00:: 14843640 1 0 -bistred%3:01:00:: 02837794 1 0 -bistro%1:06:00:: 02844214 1 0 -bistroic%3:01:00:: 02837910 1 0 -bisulcate%5:00:00:divided:00 02480747 1 0 -bit%1:06:00:: 02844307 11 0 -bit%1:06:01:: 02844714 5 1 -bit%1:06:02:: 02845002 10 0 -bit%1:10:00:: 06892016 9 0 -bit%1:10:01:: 07009042 8 0 -bit%1:11:00:: 07309457 4 1 -bit%1:13:00:: 07579076 7 0 -bit%1:17:00:: 09222051 2 4 -bit%1:23:00:: 13625237 6 0 -bit%1:23:01:: 13761407 1 18 -bit%1:28:00:: 15246853 3 1 -bit-by-bit%5:00:00:gradual:01 01143006 1 0 -bit_by_bit%4:02:00:: 00107987 2 0 -bit_by_bit%4:02:01:: 00422281 1 0 -bit_field%1:14:00:: 08005761 1 0 -bit_part%1:09:00:: 05929363 1 1 -bitartrate%1:27:00:: 14955682 1 0 -bitch%1:05:00:: 02083672 4 0 -bitch%1:10:00:: 07209965 3 0 -bitch%1:18:00:: 09982873 2 0 -bitch%1:26:00:: 14408519 1 0 -bitch%2:32:00:: 00907657 2 0 -bitch%2:32:01:: 00910973 1 0 -bitchery%1:04:00:: 01222333 1 0 -bitchiness%1:07:00:: 04842515 1 0 -bitchy%5:00:00:malicious:00 00225912 1 0 -bite%1:04:00:: 00838816 8 0 -bite%1:04:01:: 00361041 9 0 -bite%1:07:00:: 04992834 7 0 -bite%1:10:00:: 06776986 6 0 -bite%1:11:00:: 07477413 5 0 -bite%1:13:00:: 07577374 4 0 -bite%1:13:01:: 07579076 2 1 -bite%1:26:00:: 14287408 1 1 -bite%1:26:01:: 14297870 3 0 -bite%2:35:00:: 01445932 1 12 -bite%2:35:01:: 01441382 3 1 -bite%2:35:02:: 01445407 4 0 -bite%2:39:00:: 02120451 2 2 -bite_off%2:35:00:: 01445756 1 2 -bite_out%2:32:00:: 00985706 1 2 -bite_plate%1:06:00:: 02845130 1 0 -biteplate%1:06:00:: 02845130 1 0 -biter%1:18:00:: 09857852 1 1 -bitewing%1:06:00:: 02845293 1 0 -bithynia%1:15:00:: 08503921 1 0 -biting%5:00:00:painful:00 01711910 2 0 -biting%5:00:00:sarcastic:00 02079313 1 3 -biting_louse%1:05:00:: 02185481 1 0 -biting_midge%1:05:00:: 02202678 1 0 -bitingly%4:02:00:: 00422435 1 0 -bitis%1:05:00:: 01752889 1 0 -bitis_arietans%1:05:00:: 01753032 1 0 -bitis_gabonica%1:05:00:: 01753180 1 0 -bitmap%1:06:00:: 02845425 1 0 -bitok%1:13:00:: 07862770 1 0 -bits_per_inch%1:07:00:: 05089048 1 0 -bits_per_second%1:28:00:: 15276642 1 0 -bitstock%1:06:00:: 02886907 1 0 -bitt%1:06:00:: 02864593 1 0 -bitt%2:35:00:: 01286554 1 0 -bitt_pin%1:06:00:: 02845860 1 0 -bittacidae%1:05:00:: 02162831 1 0 -bitter%1:07:00:: 04994824 3 0 -bitter%1:09:00:: 05717115 2 0 -bitter%1:13:00:: 07889814 1 0 -bitter%2:39:00:: 02195751 1 0 -bitter%4:02:00:: 00422435 1 0 -bitter%5:00:00:hostile:01 01245610 5 1 -bitter%5:00:00:intolerable:00 02435901 2 10 -bitter%5:00:00:painful:00 01711910 7 0 -bitter%5:00:00:resentful:00 00116744 1 12 -bitter%5:00:00:sorrowful:00 01364993 4 2 -bitter%5:00:00:tasty:00 02396098 6 0 -bitter%5:00:00:unpleasant:00 01802165 3 6 -bitter-bark%1:20:00:: 12669362 1 0 -bitter_almond%1:20:00:: 12645530 1 0 -bitter_almond_oil%1:20:00:: 12645913 1 0 -bitter_aloes%1:06:00:: 02698366 1 0 -bitter_betch%1:20:00:: 12576451 1 0 -bitter_cassava%1:20:00:: 12926689 1 0 -bitter_chocolate%1:13:00:: 07602279 1 0 -bitter_cress%1:20:00:: 11881742 1 0 -bitter_dock%1:20:00:: 12604639 1 0 -bitter_end%1:06:00:: 02845576 2 0 -bitter_end%1:26:00:: 14476697 1 2 -bitter_floom%1:20:00:: 12298395 1 0 -bitter_hickory%1:20:00:: 12320806 1 0 -bitter_lemon%1:13:00:: 07927836 1 0 -bitter_orange%1:13:00:: 07748753 2 0 -bitter_orange%1:20:00:: 12708654 1 0 -bitter_orange_tree%1:20:00:: 12708654 1 0 -bitter_pea%1:20:00:: 12525168 1 0 -bitter_pecan%1:20:00:: 12320414 1 0 -bitter_pignut%1:20:00:: 12320806 1 0 -bitter_principle%1:27:00:: 14776523 1 0 -bitter_salts%1:27:00:: 14945725 1 0 -bitter_spar%1:27:00:: 14673747 1 0 -bittercress%1:20:00:: 11881742 1 0 -bitterish%5:00:00:tasty:00 02396267 1 0 -bitterly%4:02:00:: 00052762 1 3 -bitterly%4:02:01:: 00052882 2 1 -bitterly%4:02:02:: 00422435 3 0 -bittern%1:05:00:: 02011460 1 0 -bitterness%1:07:00:: 04994824 4 0 -bitterness%1:07:01:: 04643397 2 1 -bitterness%1:09:00:: 05717115 3 0 -bitterness%1:12:00:: 07548978 1 7 -bitternut%1:20:00:: 12320806 1 0 -bitternut_hickory%1:20:00:: 12320806 1 0 -bitterroot%1:20:00:: 11860555 1 0 -bitters%1:13:00:: 07903101 1 1 -bittersweet%1:20:01:: 12748248 2 0 -bittersweet%1:20:02:: 12894607 1 0 -bittersweet%5:00:00:sad:00 01362273 1 1 -bittersweet%5:00:00:tasty:00 02396354 2 0 -bittersweet_chocolate%1:13:00:: 07603722 1 0 -bittersweet_nightshade%1:20:00:: 12894607 1 0 -bitterweed%1:20:01:: 11919447 2 0 -bitterweed%1:20:02:: 12003167 1 0 -bitterwood%1:20:01:: 12718995 1 0 -bitterwood%1:20:02:: 12718483 2 0 -bitterwood%1:20:03:: 12716594 3 0 -bitterwood_tree%1:20:00:: 12715914 1 0 -bitthead%1:06:00:: 02845763 1 0 -bittie%5:00:00:small:00 01392633 1 0 -bitty%5:00:00:small:00 01392633 1 0 -bitumastic%1:06:00:: 02845985 1 0 -bitumen%1:27:00:: 14911530 1 0 -bitumenoid%3:01:00:: 03048971 1 0 -bituminise%2:30:00:: 00517240 1 0 -bituminize%2:30:00:: 00517240 1 0 -bituminoid%3:01:00:: 03048971 1 0 -bituminous%3:01:00:: 03048845 1 0 -bituminous_coal%1:27:00:: 14815086 1 0 -biu-mandara%1:10:00:: 06984953 1 0 -bivalent%3:00:02:: 01546826 2 0 -bivalent%3:01:01:: 03049071 1 0 -bivalve%1:05:00:: 01955933 1 0 -bivalve%3:00:00:: 02483908 1 0 -bivalved%3:00:00:: 02483908 1 0 -bivalvia%1:05:00:: 01955463 1 0 -bivariate%3:01:00:: 03049220 1 0 -bivouac%1:06:00:: 02944826 1 1 -bivouac%1:15:00:: 08518171 2 0 -bivouac%2:42:00:: 02653996 1 0 -bivouacking%1:04:00:: 01055165 1 0 -biweekly%1:10:00:: 06594904 1 0 -biweekly%4:02:00:: 00254711 2 0 -biweekly%4:02:01:: 00254851 1 0 -biweekly%5:00:00:periodic:00 01969038 1 0 -biweekly%5:00:01:periodic:00 01968721 2 0 -biyearly%4:02:00:: 00279050 1 0 -biyearly%4:02:01:: 00255315 2 0 -biyearly%5:00:01:periodic:00 01969348 2 0 -biyearly%5:00:02:periodic:00 01969477 1 0 -biz%1:04:00:: 00583089 1 0 -bizarre%5:00:00:unconventional:01 00608791 1 2 -bizarreness%1:07:00:: 04798511 1 0 -bize%1:19:00:: 11429356 1 0 -bizet%1:18:00:: 10851865 1 0 -bizonal%3:01:00:: 03132360 1 0 -bja%1:14:00:: 08135770 1 0 -bjs%1:14:00:: 08136027 1 0 -bk%1:27:00:: 14631134 1 0 -blab%2:32:00:: 00937208 1 1 -blab%2:32:02:: 01036804 2 0 -blab_out%2:32:00:: 00937208 1 0 -blabber%1:18:00:: 10206173 1 0 -blabber%2:32:00:: 01036804 1 0 -blabbermouth%1:18:00:: 10692696 1 0 -blabbermouthed%5:00:00:communicative:00 00496259 2 0 -blabbermouthed%5:00:00:indiscreet:00 00773299 1 0 -blabby%5:00:00:indiscreet:00 00773299 1 0 -blaberus%1:05:00:: 02235078 1 0 -black%1:06:00:: 02846141 7 0 -black%1:06:01:: 02846260 6 0 -black%1:07:00:: 04960277 1 4 -black%1:18:00:: 09636339 5 0 -black%1:18:01:: 10851987 4 0 -black%1:18:02:: 10852130 3 0 -black%1:26:00:: 13983807 2 0 -black%2:30:00:: 00280532 1 0 -black%3:00:01:: 00392812 1 52 -black%3:00:02:: 00241952 2 4 -black%5:00:00:angry:00 00114797 3 4 -black%5:00:00:colored:00 00396296 7 1 -black%5:00:00:covert:00 01706341 10 0 -black%5:00:00:dark:01 00274068 8 1 -black%5:00:00:dirty:01 00421002 14 0 -black%5:00:00:dishonorable:00 01227546 12 0 -black%5:00:00:evil:00 01131935 5 2 -black%5:00:00:hopeless:00 01229561 4 2 -black%5:00:00:illegal:00 01402580 11 0 -black%5:00:00:sarcastic:00 02079507 9 0 -black%5:00:00:undiluted:00 00756897 13 0 -black%5:00:00:unfortunate:00 01050088 6 2 -black-and-blue%5:00:00:injured:00 01318330 1 0 -black-and-tan%5:00:00:patterned:00 01787138 1 0 -black-and-tan_coonhound%1:05:00:: 02089078 1 0 -black-and-tan_terrier%1:05:00:: 02094721 1 0 -black-and-white%3:00:00:: 00394331 2 0 -black-and-white%3:01:00:: 02666952 1 0 -black-and-white%5:00:00:divided:00 02480317 3 0 -black-backed_gull%1:05:00:: 02041875 1 0 -black-barred%5:00:00:patterned:00 01787231 1 0 -black-billed_cuckoo%1:05:00:: 01823740 1 0 -black-body_radiation%1:19:00:: 11429661 1 0 -black-capped_chickadee%1:05:00:: 01592257 1 0 -black-coated%5:00:00:coated:00 01699576 1 0 -black-crowned_night_heron%1:05:00:: 02010728 1 0 -black-eyed_pea%1:13:00:: 07726672 3 0 -black-eyed_pea%1:20:00:: 12578626 2 0 -black-eyed_pea%1:20:02:: 12578916 1 0 -black-eyed_susan%1:20:01:: 12008487 3 0 -black-eyed_susan%1:20:03:: 12813189 1 0 -black-eyed_susan%1:20:04:: 12180456 2 0 -black-eyed_susan_vine%1:20:00:: 12813189 1 0 -black-footed_albatross%1:05:00:: 02058747 1 0 -black-footed_ferret%1:05:00:: 02443484 1 0 -black-fronted_bush_shrike%1:05:00:: 01600341 1 0 -black-gray%5:00:00:achromatic:00 00387808 1 0 -black-grey%5:00:00:achromatic:00 00387808 1 0 -black-haired%5:00:00:brunet:00 00245319 1 1 -black-headed_snake%1:05:00:: 01739094 1 0 -black-legged_tick%1:05:00:: 01777909 1 0 -black-marked%5:00:00:patterned:00 01787331 1 0 -black-market%5:00:00:illegal:00 01402580 1 1 -black-necked_cobra%1:05:00:: 01748686 1 0 -black-necked_grebe%1:05:00:: 02050586 1 0 -black-necked_stilt%1:05:00:: 02034971 1 0 -black-necked_stork%1:05:00:: 02004492 1 0 -black-seeded%5:00:00:seedy:00 02255317 1 0 -black-stem_spleenwort%1:20:00:: 13181406 1 0 -black-stemmed_spleenwort%1:20:00:: 13181406 1 0 -black-tailed_deer%1:05:00:: 02432704 1 0 -black-tie%5:00:00:formal:01 01043746 1 0 -black-winged_stilt%1:05:00:: 02035210 1 0 -black_africa%1:15:00:: 09172480 1 0 -black_african%1:18:00:: 09635534 1 0 -black_american%1:18:00:: 09637013 1 0 -black_and_gold_garden_spider%1:05:00:: 01773157 1 0 -black_and_tan%1:18:00:: 09857957 1 0 -black_and_white%1:06:00:: 02846399 2 0 -black_and_white%1:10:00:: 06349220 1 0 -black_and_white%3:00:02:: 00394331 1 1 -black_angus%1:05:00:: 02405929 1 0 -black_apricot%1:20:00:: 12641180 1 0 -black_archangel%1:20:00:: 12841872 1 0 -black_art%1:09:00:: 05978812 1 0 -black_ash%1:20:00:: 12305089 1 0 -black_bamboo%1:20:00:: 12149350 1 0 -black_bass%1:05:01:: 02564720 2 0 -black_bass%1:05:02:: 02567772 1 0 -black_bead%1:20:00:: 11764814 1 0 -black_bean%1:13:00:: 07727458 1 0 -black_bear%1:05:01:: 02133161 2 0 -black_bear%1:05:02:: 02133704 1 0 -black_bearberry%1:20:00:: 12231709 1 0 -black_bee%1:05:00:: 02208848 1 0 -black_beech%1:20:00:: 12267411 1 0 -black_belt%1:10:00:: 07268166 2 0 -black_belt%1:18:00:: 09858165 1 0 -black_bile%1:08:00:: 05406782 1 0 -black_bindweed%1:20:00:: 12089846 1 0 -black_birch%1:20:01:: 12282933 2 0 -black_birch%1:20:02:: 12283147 1 0 -black_body%1:17:00:: 09222406 1 9 -black_book%1:10:00:: 06487260 1 0 -black_box%1:06:00:: 02846733 1 0 -black_bread%1:13:00:: 07685918 1 1 -black_bream%1:05:00:: 02593191 1 0 -black_bryony%1:20:00:: 12089846 1 0 -black_buck%1:05:00:: 02420509 1 0 -black_buffalo%1:05:00:: 01445593 1 0 -black_calla%1:20:00:: 11780424 1 0 -black_caraway%1:20:00:: 11737125 1 0 -black_carpet_beetle%1:05:00:: 02170738 1 0 -black_cat%1:05:00:: 02450829 1 0 -black_catechu%1:20:00:: 11757433 1 0 -black_cherry%1:13:00:: 07757312 2 0 -black_cherry%1:20:00:: 12648888 1 0 -black_cherry_tree%1:20:00:: 12648888 1 0 -black_cock%1:05:00:: 01796019 1 0 -black_cohosh%1:20:00:: 11728945 1 0 -black_comedy%1:10:00:: 07015841 1 0 -black_cottonwood%1:20:00:: 12733218 2 0 -black_cottonwood%1:20:02:: 12733428 1 0 -black_crappie%1:05:00:: 02562971 1 0 -black_currant%1:13:00:: 07744559 2 0 -black_currant%1:20:00:: 12805561 1 0 -black_cypress_pine%1:20:00:: 11633999 1 0 -black_death%1:26:00:: 14139462 1 0 -black_diamond%1:27:01:: 14793393 1 0 -black_disease%1:26:00:: 14265006 1 0 -black_duck%1:05:00:: 01847978 1 0 -black_economy%1:14:00:: 08364548 1 0 -black_elder%1:20:00:: 12679201 1 0 -black_elderberry%1:20:00:: 12678548 1 0 -black_english%1:10:00:: 06947658 1 0 -black_english_vernacular%1:10:00:: 06947658 1 0 -black_eye%1:11:00:: 07475870 3 0 -black_eye%1:26:00:: 14289387 1 1 -black_eye%1:26:01:: 14438419 2 0 -black_felt_cup%1:20:00:: 12984160 1 0 -black_flag%1:06:00:: 02847009 1 1 -black_fly%1:05:01:: 02205673 1 0 -black_forest%1:17:00:: 09222742 1 0 -black_fox%1:05:00:: 02119247 1 0 -black_friar%1:18:00:: 10778345 1 0 -black_fritillary%1:20:00:: 12452480 1 0 -black_grama%1:20:00:: 12112337 1 0 -black_greasewood%1:20:00:: 11835251 1 0 -black_grouse%1:05:00:: 01795545 1 0 -black_guillemot%1:05:00:: 02046939 1 0 -black_gum%1:20:01:: 12340755 1 0 -black_gum%1:20:02:: 12338454 2 0 -black_hand%1:14:00:: 08246036 1 0 -black_haw%1:20:01:: 12681579 2 0 -black_haw%1:20:02:: 12773142 1 0 -black_hawk%1:18:00:: 10852320 1 0 -black_hellebore%1:20:01:: 11734300 2 0 -black_hellebore%1:20:02:: 11734493 1 0 -black_hemlock%1:20:00:: 11627908 1 0 -black_henbane%1:20:00:: 12904314 1 0 -black_hickory%1:20:01:: 12320627 2 0 -black_hickory%1:20:02:: 12322099 1 0 -black_hickory%1:20:03:: 12319204 3 0 -black_hills%1:15:00:: 09139993 2 0 -black_hills%1:17:00:: 09222880 1 0 -black_hole%1:17:00:: 09223177 1 1 -black_hole_of_calcutta%1:06:00:: 02847223 1 0 -black_hollander%1:20:00:: 12727960 1 0 -black_horehound%1:20:00:: 12841872 1 0 -black_huckleberry%1:20:00:: 12236768 1 0 -black_humor%1:10:00:: 07068133 1 0 -black_humour%1:10:00:: 07068133 1 0 -black_ice%1:27:00:: 14915462 1 0 -black_jack_pershing%1:18:00:: 11230780 1 0 -black_kite%1:05:00:: 01608814 1 0 -black_knapweed%1:20:00:: 11948656 1 0 -black_knot%1:26:00:: 14278219 1 0 -black_larch%1:20:00:: 11619227 1 0 -black_lead%1:27:00:: 14796575 1 0 -black_letter%1:10:00:: 06826589 1 0 -black_locust%1:20:00:: 12568186 2 0 -black_locust%1:20:02:: 12568506 1 0 -black_lotion%1:06:00:: 02847942 1 0 -black_lovage%1:20:00:: 12945828 1 0 -black_lung%1:26:00:: 14150210 1 0 -black_lung_disease%1:26:00:: 14150210 1 0 -black_magic%1:09:00:: 05978812 1 0 -black_maire%1:20:00:: 12301613 1 0 -black_mallee%1:20:00:: 12338454 1 0 -black_mamba%1:05:00:: 01749742 1 0 -black_man%1:18:00:: 09637211 1 1 -black_mangrove%1:20:01:: 12915568 2 0 -black_mangrove%1:20:02:: 12916179 1 0 -black_margate%1:05:00:: 02589796 1 0 -black_maria%1:04:00:: 00496599 2 0 -black_maria%1:06:00:: 03977966 1 0 -black_market%1:04:00:: 01097739 2 0 -black_market%1:14:00:: 08425173 1 0 -black_market%2:40:00:: 02242256 1 0 -black_marketeer%1:18:00:: 09858560 1 0 -black_marketeer%2:40:00:: 02246166 1 0 -black_marlin%1:05:00:: 02631475 1 0 -black_medick%1:20:00:: 12549192 1 0 -black_morel%1:20:00:: 13033577 1 0 -black_moss%1:20:00:: 12608127 1 0 -black_mulberry%1:20:00:: 12399534 1 0 -black_music%1:10:00:: 07025604 1 0 -black_muslim%1:18:00:: 09858733 1 0 -black_mustard%1:20:00:: 11879505 1 0 -black_nightshade%1:20:00:: 12896307 1 0 -black_oak%1:20:00:: 12279458 1 0 -black_olive%1:13:00:: 07767549 1 1 -black_opal%1:27:00:: 14776686 1 0 -black_operation%1:04:00:: 00984357 1 0 -black_out%2:29:00:: 00023868 4 1 -black_out%2:30:00:: 00201906 3 1 -black_out%2:30:01:: 00312648 2 1 -black_out%2:43:00:: 02762299 1 1 -black_panther%1:18:00:: 09858913 1 0 -black_panthers%1:14:00:: 08258358 1 0 -black_pea%1:20:00:: 12540488 1 0 -black_pepper%1:13:00:: 07815839 2 0 -black_pepper%1:20:00:: 13149506 1 0 -black_person%1:18:00:: 09636339 1 0 -black_pine%1:20:01:: 11658331 2 0 -black_pine%1:20:02:: 11658544 1 0 -black_pine%1:20:03:: 11614713 4 0 -black_pine%1:20:04:: 11618290 3 0 -black_pine%1:20:05:: 11611233 5 0 -black_plague%1:26:00:: 14139462 1 0 -black_poplar%1:20:00:: 12732491 1 0 -black_prince%1:18:00:: 10949782 1 0 -black_pudding%1:13:00:: 07676121 1 0 -black_race%1:18:00:: 09636890 1 0 -black_racer%1:05:00:: 01730960 1 0 -black_raspberry%1:20:00:: 12656685 1 0 -black_rat%1:05:00:: 02333909 1 0 -black_rat_snake%1:05:00:: 01732789 1 0 -black_rhinoceros%1:05:00:: 02393161 1 0 -black_rock_desert%1:15:00:: 09168592 1 0 -black_rockweed%1:05:00:: 01405250 1 0 -black_root_rot_fungus%1:20:00:: 12966804 1 0 -black_rot%1:26:00:: 14278360 1 0 -black_rudderfish%1:05:00:: 02635154 1 0 -black_sage%1:20:00:: 12871484 1 0 -black_sally%1:20:00:: 12338454 1 0 -black_salsify%1:13:00:: 07735294 2 0 -black_salsify%1:20:00:: 12013035 1 0 -black_saltwort%1:20:00:: 12093885 1 0 -black_sea%1:17:00:: 09223325 1 0 -black_sea_bass%1:05:00:: 02567772 1 0 -black_september%1:14:00:: 08020242 1 0 -black_september_movement%1:14:00:: 08018666 1 0 -black_sheep%1:05:00:: 02413050 2 0 -black_sheep%1:18:00:: 10555430 1 0 -black_snakeroot%1:20:01:: 11728945 2 0 -black_snakeroot%1:20:02:: 11802410 1 0 -black_spleenwort%1:20:00:: 13180875 1 0 -black_spot%1:26:00:: 14278500 1 0 -black_spruce%1:20:00:: 11625804 1 0 -black_squirrel%1:05:00:: 02356977 1 0 -black_stork%1:05:00:: 02002724 1 0 -black_sumac%1:20:00:: 12763762 1 0 -black_swan%1:05:00:: 01860187 1 0 -black_tai%1:10:00:: 06935016 1 0 -black_tea%1:13:00:: 07934530 1 0 -black_tie%1:06:00:: 02847631 2 0 -black_tie%1:06:01:: 03201776 1 0 -black_tongue%1:26:00:: 14311801 1 0 -black_tree_fern%1:20:00:: 13187367 1 0 -black_turnstone%1:05:00:: 02025389 1 0 -black_vernacular%1:10:00:: 06947658 1 0 -black_vernacular_english%1:10:00:: 06947658 1 0 -black_vomit%1:26:00:: 14144960 1 0 -black_vulture%1:05:01:: 01618082 2 0 -black_vulture%1:05:02:: 01620414 1 0 -black_walnut%1:13:00:: 07771405 2 0 -black_walnut%1:20:00:: 12319204 1 0 -black_walnut_tree%1:20:00:: 12319204 1 0 -black_wattle%1:20:00:: 11756870 1 0 -black_weevil%1:05:00:: 02182930 1 0 -black_whale%1:05:01:: 02067240 2 0 -black_whale%1:05:02:: 02071636 1 0 -black_widow%1:05:00:: 01774384 1 0 -black_willow%1:20:00:: 12729315 1 0 -black_woman%1:18:00:: 09637339 1 0 -blackamoor%1:18:00:: 09636339 1 0 -blackback_flounder%1:05:00:: 02659478 1 0 -blackball%1:04:00:: 00207622 1 0 -blackball%2:41:00:: 02504017 1 0 -blackball%2:41:01:: 02473431 2 0 -blackbeard%1:18:00:: 11334003 1 0 -blackbeetle%1:05:00:: 02233943 1 0 -blackberry%1:13:00:: 07744811 1 2 -blackberry%1:20:00:: 12653762 2 0 -blackberry%2:35:00:: 01383089 1 0 -blackberry-lily%1:20:00:: 12416073 1 0 -blackberry_bush%1:20:00:: 12653762 1 0 -blackbird%1:05:01:: 01574045 1 0 -blackbird%1:05:02:: 01558594 2 0 -blackboard%1:06:00:: 02846511 1 2 -blackboard_eraser%1:06:00:: 02846619 1 0 -blackbody%1:17:00:: 09222406 1 0 -blackbody_radiation%1:19:00:: 11429661 1 0 -blackbuck%1:05:00:: 02420509 1 0 -blackburn%1:05:00:: 01569060 1 0 -blackburnian_warbler%1:05:00:: 01569060 1 0 -blackcap%1:05:01:: 01564773 4 0 -blackcap%1:05:02:: 01592257 3 0 -blackcap%1:05:04:: 02042180 2 0 -blackcap%1:20:00:: 12656685 1 0 -blackcap_raspberry%1:20:00:: 12656685 1 0 -blackcock%1:05:00:: 01796019 1 0 -blackdamp%1:27:00:: 14797264 1 0 -blacken%2:30:00:: 00280532 1 2 -blacken%2:30:01:: 00379440 2 0 -blacken_out%2:30:00:: 00312648 1 0 -blackened%5:00:00:colored:00 00396296 2 0 -blackened%5:00:00:smoky:00 02234187 1 2 -blackening%1:04:00:: 00274437 1 1 -blackface%1:06:00:: 02846874 1 0 -blackfish%1:05:01:: 02535163 2 0 -blackfish%1:05:02:: 02071636 3 0 -blackfish%1:05:03:: 02610066 1 0 -blackfly%1:05:01:: 02205673 2 0 -blackfly%1:05:02:: 02252972 1 0 -blackfoot%1:10:00:: 06908494 2 0 -blackfoot%1:18:00:: 09650839 1 0 -blackfoot_daisy%1:20:00:: 11995840 1 0 -blackfriar%1:18:00:: 10778345 1 0 -blackguard%1:18:00:: 09886220 1 0 -blackguard%2:32:00:: 00845299 2 0 -blackguard%2:32:01:: 00851933 1 0 -blackguardly%5:00:00:dishonest:00 01224964 1 0 -blackhead%1:08:00:: 05245775 1 0 -blackheart%1:13:00:: 07757753 2 0 -blackheart%1:26:00:: 14278102 1 0 -blackheart_cherry%1:13:00:: 07757753 1 0 -blacking%1:27:00:: 15039568 1 0 -blackish%5:00:00:achromatic:00 00387699 1 0 -blackish-brown%5:00:00:chromatic:00 00370601 1 0 -blackish-gray%5:00:00:achromatic:00 00387808 1 0 -blackish-grey%5:00:00:achromatic:00 00387808 1 0 -blackish-red%5:00:00:chromatic:00 00370688 1 0 -blackjack%1:04:00:: 00490350 4 0 -blackjack%1:06:00:: 02847461 2 0 -blackjack%1:06:01:: 02847009 3 0 -blackjack%1:20:00:: 12274863 1 0 -blackjack%2:41:00:: 02581073 1 0 -blackjack_oak%1:20:00:: 12274863 1 0 -blacklead%2:35:00:: 01602821 1 0 -blackleg%1:18:00:: 10554455 1 0 -blackleg%2:41:00:: 02412939 1 0 -blacklist%1:10:00:: 06487260 1 0 -blacklist%2:41:00:: 02473143 1 0 -blackmail%1:04:00:: 00784598 1 0 -blackmail%2:40:00:: 02241767 2 0 -blackmail%2:41:00:: 02581073 1 0 -blackmailer%1:18:00:: 09858299 1 2 -blackmouth_bass%1:05:00:: 02567334 1 0 -blackness%1:07:00:: 04960277 1 4 -blackness%1:26:00:: 13983807 2 2 -blackout%1:09:00:: 05679800 4 0 -blackout%1:09:01:: 05672391 5 0 -blackout%1:11:00:: 07422506 3 0 -blackout%1:26:00:: 13984082 2 1 -blackout%1:28:00:: 15271619 1 1 -blackpoll%1:05:00:: 01569566 1 0 -blackpool%1:15:00:: 08878367 1 0 -blacksburg%1:15:00:: 09150284 1 0 -blackseed%1:20:00:: 12140511 1 0 -blackshirt%1:18:00:: 09859038 1 0 -blacksmith%1:18:00:: 09859152 1 1 -blacksnake%1:05:01:: 01730960 2 0 -blacksnake%1:05:02:: 01732789 1 0 -blacktail%1:05:00:: 02432704 1 0 -blacktail_deer%1:05:00:: 02432704 1 0 -blacktail_jackrabbit%1:05:00:: 02327435 1 0 -blacktail_prairie_dog%1:05:00:: 02359556 1 0 -blackthorn%1:20:01:: 12627119 2 0 -blackthorn%1:20:02:: 12649723 1 0 -blacktip_shark%1:05:00:: 01489920 1 0 -blacktop%1:27:00:: 14976871 1 0 -blacktop%2:35:00:: 01266604 1 0 -blacktopping%1:27:00:: 14976871 1 0 -blackwall_hitch%1:06:00:: 02847728 1 0 -blackwash%1:06:00:: 02847852 3 0 -blackwash%1:06:01:: 02847942 2 0 -blackwash%1:10:00:: 06719974 1 0 -blackwash%2:30:00:: 00281703 2 0 -blackwash%2:32:00:: 00847365 1 0 -blackwater%1:26:00:: 14073331 1 0 -blackwater_fever%1:26:00:: 14073647 1 0 -blackwood%1:20:00:: 12524188 2 0 -blackwood%1:20:02:: 12524395 1 0 -blackwood_tree%1:20:00:: 12524188 1 0 -bladder%1:06:00:: 02848118 2 0 -bladder%1:08:00:: 05512139 1 0 -bladder_campion%1:20:01:: 11816336 2 0 -bladder_campion%1:20:02:: 11816829 1 0 -bladder_cherry%1:20:00:: 12910875 1 0 -bladder_disorder%1:26:00:: 14057221 1 0 -bladder_fern%1:20:00:: 13195761 1 0 -bladder_fucus%1:05:00:: 01405250 1 0 -bladder_ketmia%1:20:00:: 12180456 1 0 -bladder_senna%1:20:00:: 12518481 1 0 -bladder_sphincter%1:08:00:: 05572396 1 0 -bladder_stone%1:17:00:: 09223487 1 0 -bladder_worm%1:05:00:: 01924800 1 0 -bladderlike%3:01:00:: 03049350 1 0 -bladdernose%1:05:00:: 02081060 1 0 -bladdernut_family%1:20:00:: 12769430 1 0 -bladderpod%1:20:01:: 11890884 4 0 -bladderpod%1:20:02:: 11893640 3 0 -bladderpod%1:20:03:: 11899762 2 0 -bladderpod%1:20:04:: 12168898 1 0 -bladderwort%1:20:00:: 12872458 1 0 -bladderwort_family%1:20:00:: 12871992 1 0 -bladderwrack%1:05:01:: 01405250 2 0 -bladderwrack%1:05:02:: 01405616 1 0 -bladdery%3:01:00:: 03049350 1 0 -blade%1:06:00:: 02848216 9 0 -blade%1:06:01:: 04373894 4 1 -blade%1:06:02:: 02848523 8 0 -blade%1:06:03:: 02848806 7 0 -blade%1:08:00:: 05236029 6 0 -blade%1:13:00:: 07661165 5 0 -blade%1:17:00:: 09223591 3 1 -blade%1:18:00:: 09859285 2 1 -blade%1:20:00:: 13131883 1 4 -blade_apple%1:13:00:: 07769102 1 0 -blade_bit%1:06:00:: 03353147 1 0 -blade_roast%1:13:00:: 07661273 1 0 -bladed%3:01:01:: 03049475 1 1 -bladed%3:01:02:: 03049642 2 0 -bladed%5:00:00:thin:01 02412732 3 0 -bladelike%5:00:00:simple:01 02168248 1 0 -blae%5:00:00:chromatic:00 00370771 1 0 -blaeberry%1:20:00:: 12248574 1 0 -blah%1:10:00:: 07087777 1 0 -blahs%1:12:00:: 07539962 1 0 -blaia_zimondal%1:10:00:: 06895601 1 0 -blain%1:26:00:: 14183420 1 0 -blair%1:18:00:: 10852506 1 0 -blaise_pascal%1:18:00:: 11224419 1 0 -blake%1:18:00:: 10852669 1 0 -blamable%5:00:00:guilty:00 01321529 1 0 -blame%1:10:00:: 06713752 2 2 -blame%1:10:01:: 07237758 1 3 -blame%2:31:00:: 00727991 3 4 -blame%2:32:00:: 00842538 1 12 -blame%2:32:01:: 00842772 2 9 -blame%5:00:00:cursed:00 00669942 1 0 -blame_game%1:10:00:: 07236307 1 0 -blameable%5:00:00:guilty:00 01321529 1 0 -blamed%5:00:00:cursed:00 00669942 1 0 -blameful%5:00:00:guilty:00 01321529 1 0 -blameless%5:00:00:innocent:00 01320705 1 0 -blamelessly%4:02:00:: 00498747 1 0 -blamelessness%1:26:00:: 13989863 1 0 -blameworthiness%1:26:00:: 13990960 1 0 -blameworthy%5:00:00:guilty:00 01321529 1 0 -blanc%1:13:00:: 07836600 1 0 -blanc_fixe%1:27:00:: 14772877 1 0 -blanch%2:29:00:: 00103619 1 1 -blanch%2:30:00:: 00322559 2 0 -blanched%5:00:00:colorless:02 00404568 1 1 -blanched%5:00:02:colorless:02 00405554 2 0 -blanching_agent%1:27:00:: 14779205 1 0 -blancmange%1:13:00:: 07610746 1 0 -bland%5:00:00:diplomatic:00 00758800 3 0 -bland%5:00:00:tasteless:01 02399595 1 1 -bland%5:00:00:unstimulating:00 02307563 2 0 -bland_diet%1:13:00:: 07562017 1 0 -blandfordia%1:20:00:: 12443929 1 0 -blandish%2:32:00:: 00880227 1 0 -blandishment%1:04:00:: 00159899 2 0 -blandishment%1:10:00:: 06695862 1 0 -blandly%4:02:00:: 00183716 1 2 -blandness%1:07:00:: 04997282 2 0 -blandness%1:07:01:: 04913322 3 0 -blandness%1:07:02:: 04629417 1 1 -blank%1:06:00:: 02848921 4 0 -blank%1:06:01:: 02849051 3 0 -blank%1:06:02:: 03632189 2 0 -blank%1:10:00:: 06839190 1 0 -blank%2:41:00:: 02451261 1 0 -blank%5:00:00:empty:00 01087093 1 1 -blank%5:00:00:unloaded:00 01425056 3 0 -blank%5:00:02:uncommunicative:00 00500889 2 1 -blank_check%1:21:00:: 13383696 2 0 -blank_check%1:26:00:: 13993685 1 0 -blank_cheque%1:21:00:: 13383696 1 0 -blank_endorsement%1:10:00:: 06405423 1 0 -blank_out%2:30:00:: 00202089 2 0 -blank_out%2:31:00:: 00609100 1 0 -blank_shell%1:06:00:: 02848921 1 0 -blank_space%1:10:00:: 06389553 1 0 -blank_verse%1:10:00:: 06378524 1 0 -blanket%1:06:00:: 02849154 1 19 -blanket%1:06:01:: 02849419 3 0 -blanket%1:17:00:: 09223725 2 4 -blanket%2:35:00:: 01359007 1 1 -blanket%2:42:00:: 02749405 2 0 -blanket%5:00:00:comprehensive:00 00526062 1 0 -blanket_flower%1:20:00:: 11970846 1 0 -blanket_jam%2:32:00:: 01057837 1 0 -blanket_stitch%1:06:00:: 02849565 1 0 -blanketed%5:00:00:covered:00 01695269 1 0 -blankly%4:02:00:: 00279278 1 0 -blankness%1:26:00:: 14455419 1 0 -blanquillo%1:05:00:: 02583096 1 0 -blantyre%1:15:00:: 08962951 1 0 -blare%1:11:00:: 07377473 1 1 -blare%2:39:00:: 02183175 2 0 -blare%2:39:01:: 02182479 1 1 -blare_out%2:32:00:: 00975334 1 0 -blarina%1:05:00:: 01892271 1 0 -blarina_brevicauda%1:05:00:: 01892385 1 0 -blaring%1:11:00:: 07377473 1 1 -blaring%5:00:00:loud:00 01453187 1 0 -blarney%1:10:00:: 06696025 1 0 -blarney%2:32:00:: 00768778 1 0 -blarney_stone%1:06:00:: 02849729 1 0 -blase%5:00:00:sophisticated:00 02270782 1 0 -blase%5:00:00:unconcerned:00 00545484 3 0 -blase%5:00:00:uninterested:00 01343200 2 0 -blaspheme%2:32:00:: 00865387 1 1 -blaspheme%2:32:01:: 00814458 2 0 -blasphemer%1:18:00:: 09859412 1 0 -blasphemous%5:00:00:dirty:02 00425002 2 0 -blasphemous%5:00:00:irreverent:00 02012748 1 1 -blasphemously%4:02:00:: 00279398 1 0 -blasphemy%1:04:00:: 00746587 2 0 -blasphemy%1:10:00:: 07124172 1 1 -blast%1:04:00:: 00128867 1 2 -blast%1:10:00:: 06711159 6 0 -blast%1:11:00:: 07408171 4 0 -blast%1:11:01:: 07376257 2 1 -blast%1:11:02:: 07287288 5 0 -blast%1:19:00:: 11465017 3 0 -blast%2:30:02:: 00336158 9 0 -blast%2:30:03:: 00241924 10 0 -blast%2:32:02:: 00823827 8 0 -blast%2:33:00:: 01135922 3 1 -blast%2:33:01:: 01134781 7 0 -blast%2:35:00:: 01401772 2 2 -blast%2:36:00:: 01759021 5 0 -blast%2:36:02:: 01758276 6 0 -blast%2:38:02:: 02101216 4 0 -blast%2:39:00:: 02182479 1 3 -blast_furnace%1:06:00:: 02849885 1 0 -blast_off%2:35:00:: 01515056 1 0 -blast_trauma%1:26:00:: 14288107 1 0 -blast_wave%1:11:00:: 07347846 1 0 -blasted%5:00:00:cursed:00 00669942 1 0 -blastema%1:08:00:: 05431402 1 0 -blastemal%3:01:00:: 03049812 1 0 -blastematic%3:01:00:: 03049812 1 0 -blastemic%3:01:00:: 03049812 1 0 -blaster%1:18:00:: 09859557 1 0 -blasting%5:00:00:destructive:00 00586883 1 1 -blasting%5:00:00:loud:00 01453187 2 0 -blasting_cap%1:06:00:: 02850060 1 0 -blasting_gelatin%1:06:00:: 02850218 1 0 -blastocele%1:05:00:: 01459242 1 0 -blastocladia%1:20:00:: 12978826 1 0 -blastocladiales%1:20:00:: 12978381 1 0 -blastocoel%1:05:00:: 01459242 1 0 -blastocoele%1:05:00:: 01459242 1 0 -blastocoelic%3:01:00:: 03050012 1 0 -blastocyst%1:05:00:: 01462042 1 0 -blastocyte%1:08:00:: 05447962 1 0 -blastocytoma%1:26:00:: 14236595 1 0 -blastoderm%1:05:00:: 01459480 1 0 -blastodermatic%3:01:00:: 03050164 1 0 -blastodermic%3:01:00:: 03050164 1 0 -blastodermic_vessicle%1:05:00:: 01462042 1 0 -blastodiaceae%1:20:00:: 12978654 1 0 -blastodisc%1:05:00:: 01459480 1 0 -blastoff%1:04:00:: 00103590 1 0 -blastogenesis%1:09:00:: 05992804 2 0 -blastogenesis%1:22:00:: 13438979 1 0 -blastogenetic%3:01:00:: 02667148 1 0 -blastoma%1:26:00:: 14236595 1 0 -blastomere%1:05:00:: 01459664 1 0 -blastomeric%3:01:00:: 03050324 1 0 -blastomyces%1:20:00:: 13080174 1 0 -blastomycete%1:20:00:: 13080306 1 0 -blastomycosis%1:26:00:: 14125159 1 0 -blastomycotic%3:01:00:: 03050430 1 0 -blastoporal%3:01:00:: 03050560 1 0 -blastopore%1:05:00:: 01463115 1 0 -blastoporic%3:01:00:: 03050560 1 0 -blastosphere%1:05:00:: 01461646 1 0 -blastospheric%3:01:00:: 03050716 1 0 -blastula%1:05:00:: 01461646 1 0 -blastular%3:01:00:: 03050716 1 0 -blat%2:32:00:: 01048330 1 0 -blat_out%2:32:00:: 00975334 1 0 -blatancy%1:07:00:: 04706882 1 1 -blatant%5:00:00:noisy:00 01920367 2 2 -blatant%5:00:00:unconcealed:00 02090567 1 2 -blatantly%4:02:00:: 00253498 1 0 -blate%2:32:00:: 01048330 1 0 -blate%5:00:00:backward:02 00204249 1 0 -blather%1:10:00:: 06610332 1 0 -blather%2:32:00:: 01037650 1 0 -blatherskite%1:10:00:: 06610332 1 0 -blatta%1:05:00:: 02233767 1 0 -blatta_orientalis%1:05:00:: 02233943 1 0 -blattaria%1:05:00:: 02233096 1 0 -blattella%1:05:00:: 02234719 1 0 -blattella_germanica%1:05:00:: 02234848 1 0 -blattidae%1:05:00:: 02233577 1 0 -blattodea%1:05:00:: 02233096 1 0 -blaxploitation%1:04:00:: 00419315 1 0 -blaze%1:04:00:: 00736786 3 1 -blaze%1:07:00:: 04952570 4 0 -blaze%1:07:01:: 04681058 5 0 -blaze%1:11:00:: 07305907 2 3 -blaze%1:22:00:: 13439088 1 4 -blaze%2:32:00:: 00922025 5 0 -blaze%2:33:00:: 01135086 2 3 -blaze%2:38:00:: 02014863 4 0 -blaze%2:43:00:: 02764438 3 0 -blaze%2:43:01:: 02764614 1 5 -blaze_away%2:32:00:: 00767918 3 0 -blaze_away%2:33:00:: 01135086 2 1 -blaze_away%2:36:00:: 01713587 1 1 -blaze_out%2:38:00:: 02014863 1 1 -blaze_up%2:43:00:: 02762806 1 0 -blazer%1:06:00:: 02850358 1 0 -blazing%1:22:00:: 13439088 1 0 -blazing%5:00:00:bright:00 00280844 1 3 -blazing%5:00:00:unconcealed:00 02090567 2 0 -blazing_star%1:20:01:: 11991263 2 0 -blazing_star%1:20:02:: 12035631 1 0 -blazon%1:06:00:: 03058726 1 0 -blazon%2:36:00:: 01684180 1 0 -blazon_out%2:32:00:: 00974786 1 0 -blazonry%1:06:00:: 03058726 1 0 -bleach%1:04:00:: 00274009 3 0 -bleach%1:07:00:: 04961136 1 1 -bleach%1:27:00:: 14779205 2 0 -bleach%2:30:00:: 00279465 2 0 -bleach%2:30:01:: 00279822 1 1 -bleach_liquor%1:27:00:: 14781062 1 0 -bleach_out%2:30:00:: 00279822 1 0 -bleached%5:00:00:artificial:00 01572171 2 0 -bleached%5:00:00:colorless:02 00404961 1 1 -bleacher%1:18:00:: 09859684 1 0 -bleachers%1:06:00:: 02850552 1 1 -bleaching_agent%1:27:00:: 14779205 1 0 -bleaching_clay%1:27:00:: 14780605 1 0 -bleaching_earth%1:27:00:: 14780605 1 0 -bleaching_powder%1:27:00:: 14780850 1 0 -bleak%5:00:00:cold:01 01252399 3 0 -bleak%5:00:00:hopeless:00 01229561 1 2 -bleak%5:00:00:inhospitable:00 01242750 2 1 -bleakly%4:02:00:: 00175255 1 3 -bleakness%1:26:01:: 14525548 1 0 -blear%2:30:00:: 00312990 1 0 -blear%5:00:00:tired:00 02432562 1 0 -blear-eyed%5:00:00:tired:00 02432562 1 0 -bleary%5:00:00:indistinct:00 00781644 2 0 -bleary%5:00:00:tired:00 02432562 1 1 -bleary-eyed%5:00:00:tired:00 02432562 1 0 -bleat%1:11:00:: 07377931 1 1 -bleat%2:32:00:: 01048330 2 1 -bleat%2:32:01:: 01048492 1 1 -bleb%1:08:00:: 05517837 1 1 -blebbed%5:00:00:blemished:00 00246348 1 0 -blebby%5:00:00:blemished:00 00246348 2 0 -blebby%5:00:00:unhealthy:00 01174438 1 0 -blechnaceae%1:20:00:: 13184492 1 0 -blechnum%1:20:00:: 13184873 1 0 -blechnum_spicant%1:20:00:: 13185269 1 0 -bleed%2:29:00:: 00074834 1 10 -bleed%2:29:01:: 00086077 2 2 -bleed%2:30:00:: 00449153 5 0 -bleed%2:38:00:: 02060792 4 0 -bleed%2:40:09:: 02360003 3 0 -bleeder%1:18:00:: 10170989 1 0 -bleeder's_disease%1:26:00:: 14170337 1 0 -bleeding%1:26:00:: 14288235 1 0 -bleeding_heart%1:18:00:: 09859818 2 0 -bleeding_heart%1:20:00:: 11910271 1 0 -bleeding_tooth%1:05:00:: 01946827 1 0 -bleep%1:11:00:: 07377082 1 0 -bleep%2:39:00:: 02187171 1 0 -blemish%1:07:00:: 04692157 1 1 -blemish%2:30:00:: 00263044 3 0 -blemish%2:35:00:: 01538161 2 0 -blemish%2:35:01:: 01549905 1 0 -blemished%3:00:00:: 00245952 1 0 -blemished%5:00:00:imperfect:00 01752553 2 0 -blench%2:29:00:: 00103619 1 0 -blend%1:04:00:: 00380696 3 0 -blend%1:10:00:: 06288527 2 0 -blend%1:11:00:: 07375405 1 2 -blend%2:30:00:: 00394813 3 0 -blend%2:35:00:: 01462468 1 7 -blend%2:42:00:: 02700455 2 1 -blend_in%2:30:00:: 00396035 2 0 -blend_in%2:42:00:: 02700455 1 0 -blende%1:27:00:: 15107876 1 0 -blended%3:00:00:: 01329138 1 0 -blended_whiskey%1:13:00:: 07906572 1 0 -blended_whisky%1:13:00:: 07906572 1 0 -blender%1:06:00:: 02850732 1 0 -blending%1:04:00:: 01003936 2 0 -blending%1:04:01:: 00380696 1 1 -blenheim%1:04:00:: 01271915 1 0 -blenheim_spaniel%1:05:00:: 02086646 1 0 -blenniidae%1:05:00:: 02612982 1 0 -blennioid%1:05:00:: 02612657 1 0 -blennioid_fish%1:05:00:: 02612657 1 0 -blennioidea%1:05:00:: 02612393 1 0 -blennius%1:05:00:: 02613434 1 0 -blennius_pholis%1:05:00:: 02613572 1 0 -blenny%1:05:00:: 02613181 1 0 -blepharism%1:26:00:: 14362075 1 0 -blepharitis%1:26:00:: 14261244 1 0 -blepharospasm%1:26:00:: 14361064 1 0 -blephilia%1:20:00:: 12842105 1 0 -blephilia_celiata%1:20:00:: 12842642 1 0 -blephilia_hirsuta%1:20:00:: 12842519 1 0 -bleriot%1:18:00:: 10852803 1 0 -bless%2:32:00:: 00866505 1 4 -bless%2:32:01:: 00866702 4 0 -bless%2:32:02:: 00867231 3 1 -bless%2:40:00:: 02264075 2 1 -blessed%3:00:00:: 00670741 1 1 -blessed%5:00:00:happy:00 01148764 6 0 -blessed%5:00:00:saved:00 01451768 5 0 -blessed%5:00:01:cursed:00 00669942 3 1 -blessed%5:00:01:holy:00 02054075 4 0 -blessed%5:00:02:holy:00 02054216 2 1 -blessed_event%1:11:00:: 07320894 1 0 -blessed_thistle%1:20:01:: 11955532 2 0 -blessed_thistle%1:20:02:: 12015525 1 0 -blessed_trinity%1:18:00:: 09536789 1 0 -blessed_virgin%1:18:00:: 11161412 1 0 -blessedly%4:02:00:: 00003771 1 0 -blessedness%1:26:00:: 13987719 1 0 -blessing%1:04:00:: 01043693 5 0 -blessing%1:04:01:: 01215392 1 1 -blessing%1:10:00:: 07189411 4 0 -blessing%1:10:01:: 07190039 3 0 -blessing%1:26:00:: 14474264 2 0 -blest%3:00:00:: 00670741 1 0 -blether%1:10:00:: 07137129 1 0 -blether%2:32:00:: 01037650 1 0 -bletia%1:20:00:: 12046428 1 0 -bletia_striata%1:20:00:: 12046815 1 0 -bletilla%1:20:00:: 12046620 1 0 -bletilla_striata%1:20:00:: 12046815 1 0 -bleu%1:13:00:: 07852045 1 0 -bleu_cheese_dressing%1:13:00:: 07833535 1 0 -blewits%1:20:00:: 13017102 1 0 -blida%1:15:00:: 08706502 1 0 -bligh%1:18:00:: 10852961 1 0 -blighia%1:20:00:: 12742041 1 0 -blighia_sapida%1:20:00:: 12742290 1 0 -blight%1:26:00:: 14562854 1 1 -blight%1:26:01:: 14215331 2 0 -blight%2:43:00:: 02771320 1 1 -blight_canker%1:26:00:: 14217147 1 0 -blighted%5:00:00:destroyed:00 00734906 1 1 -blighter%1:18:00:: 10419630 1 0 -blighter%1:18:01:: 09908025 2 0 -blighty%1:15:00:: 08873147 1 0 -blighty_wound%1:11:00:: 07340453 1 0 -blimp%1:06:00:: 02850950 2 0 -blimp%1:18:00:: 09937489 1 0 -blimpish%5:00:00:conservative:00 00574644 1 0 -blind%1:06:00:: 02851099 3 1 -blind%1:06:01:: 02851384 2 1 -blind%1:10:00:: 06760508 4 0 -blind%1:14:00:: 07944408 1 5 -blind%2:30:01:: 00312278 3 0 -blind%2:39:00:: 02168194 2 2 -blind%2:39:01:: 02168555 1 2 -blind%3:00:00:: 02158826 1 11 -blind%5:00:00:irrational:00 01926654 3 3 -blind%5:00:00:unperceptive:00 01746292 2 4 -blind_alley%1:04:00:: 00038573 2 0 -blind_alley%1:06:00:: 02851540 1 0 -blind_bend%1:06:00:: 02851795 1 0 -blind_corner%1:06:00:: 02851675 1 0 -blind_curve%1:06:00:: 02851795 1 0 -blind_date%1:14:00:: 08385490 2 0 -blind_date%1:18:00:: 09859975 1 0 -blind_drunk%5:00:01:intoxicated:00 00798103 1 0 -blind_eel%1:05:00:: 01638722 1 0 -blind_flying%1:04:00:: 00303049 1 0 -blind_gentian%1:20:01:: 12294331 2 0 -blind_gentian%1:20:02:: 12294723 1 0 -blind_gut%1:08:00:: 05536370 1 0 -blind_landing%1:04:00:: 00303049 1 0 -blind_person%1:18:00:: 09860130 1 0 -blind_side%1:15:00:: 08649873 1 0 -blind_snake%1:05:00:: 01740551 1 0 -blind_spot%1:08:00:: 05456082 2 0 -blind_spot%1:09:00:: 05815691 1 0 -blind_staggers%1:26:00:: 14275764 1 0 -blind_stitching%1:04:00:: 00715949 1 0 -blind_trust%1:21:00:: 13361083 1 0 -blinded%5:00:00:blind:00 02159293 1 1 -blinder%1:06:00:: 04593629 1 0 -blindfold%1:06:00:: 02851939 1 0 -blindfold%2:35:00:: 01337927 1 0 -blindfold%5:00:00:blind:00 02159364 1 0 -blindfolded%5:00:00:blind:00 02159364 1 1 -blinding%5:00:00:bright:00 00280844 1 0 -blindly%4:02:00:: 00173992 1 4 -blindly%4:02:01:: 00064189 2 1 -blindman's_bluff%1:04:00:: 00484362 1 0 -blindman's_buff%1:04:00:: 00484362 1 0 -blindness%1:26:00:: 14126660 1 7 -blindside%2:33:00:: 01120612 2 0 -blindside%2:41:00:: 02596730 1 0 -blindworm%1:05:01:: 01690149 1 0 -blindworm%1:05:02:: 01655344 2 0 -bling%1:06:00:: 02852043 1 0 -bling_bling%1:06:00:: 02852043 1 0 -blini%1:13:00:: 07640844 1 0 -blink%1:04:00:: 00117959 1 0 -blink%2:29:00:: 00007739 1 11 -blink%2:29:01:: 00008435 2 2 -blink%2:39:00:: 02159890 3 0 -blink_away%2:29:00:: 00008435 1 0 -blink_of_an_eye%1:28:00:: 15247110 1 0 -blinker%1:06:00:: 02852173 1 1 -blinker%1:06:01:: 04593629 3 0 -blinker%1:10:00:: 07262704 2 0 -blinker%2:35:00:: 01337819 1 0 -blinking%1:04:00:: 00117959 1 0 -blinking%5:00:00:closed:03 01655386 1 0 -blinking%5:00:00:unmitigated:00 01520655 2 0 -blinking_chickweed%1:20:00:: 11861487 1 0 -blinks%1:20:00:: 11861487 1 0 -blintz%1:13:00:: 07640991 1 0 -blintze%1:13:00:: 07640991 1 0 -bliny%1:13:00:: 07640844 1 0 -blip%1:10:00:: 07263358 2 0 -blip%1:11:00:: 07299203 1 0 -bliss%1:26:00:: 13987905 1 0 -blissful%5:00:00:happy:00 01148897 1 1 -blissfully%4:02:00:: 00274842 1 2 -blissfulness%1:26:00:: 13987905 1 0 -blissus%1:05:00:: 02239073 1 0 -blissus_leucopterus%1:05:00:: 02239192 1 0 -blister%1:08:00:: 05517837 3 0 -blister%1:20:00:: 13088858 2 0 -blister%1:26:00:: 14464512 1 0 -blister%2:30:00:: 00379774 1 2 -blister%2:30:01:: 00379996 3 0 -blister%2:32:00:: 00863906 2 0 -blister_beetle%1:05:00:: 02179012 1 0 -blister_blight%1:26:00:: 14216234 2 0 -blister_blight%1:26:01:: 14216318 1 0 -blister_copper%1:27:00:: 14781513 1 0 -blister_pack%1:06:00:: 02852360 1 0 -blister_rust%1:20:00:: 13064457 2 0 -blister_rust%1:26:00:: 14277833 1 0 -blistering%1:22:00:: 13573181 1 0 -blistering%5:00:00:fast:01 00977372 3 0 -blistering%5:00:00:hot:01 01248064 2 1 -blistering%5:00:00:unpleasant:00 01802165 1 1 -blistering_agent%1:27:00:: 14957270 1 0 -blistery%5:00:00:hot:01 01248064 1 0 -blistery%5:00:00:unhealthy:00 01174438 2 0 -blithe%5:00:00:cheerful:00 00363291 2 1 -blithe%5:00:00:unconcerned:00 00545600 1 3 -blithely%4:02:00:: 00050297 1 2 -blitheness%1:12:00:: 07530478 1 0 -blither%2:32:00:: 01037650 1 0 -blithesome%5:00:00:cheerful:00 00363291 1 0 -blitt%1:10:00:: 06699115 1 0 -blitz%1:04:00:: 00975781 2 0 -blitz%1:04:02:: 00976085 1 0 -blitz%2:33:00:: 01126219 1 0 -blitzkrieg%1:04:00:: 00975781 1 0 -blitzkrieg%2:33:00:: 01093365 1 0 -blitzstein%1:18:00:: 10853244 1 0 -blixen%1:18:00:: 10935745 1 0 -blizzard%1:14:00:: 08459087 2 0 -blizzard%1:19:00:: 11509570 1 1 -bloat%1:26:00:: 14315549 1 8 -bloat%2:30:00:: 00361797 1 1 -bloat%2:30:01:: 00361952 2 0 -bloater%1:13:00:: 07785235 1 0 -blob%1:25:00:: 13910019 1 2 -blob%2:35:00:: 01531998 1 0 -bloc%1:14:00:: 08171094 1 1 -blocadren%1:06:00:: 04438742 1 0 -bloch%1:18:00:: 10853413 1 0 -block%1:04:00:: 00562398 12 0 -block%1:06:00:: 02852523 1 29 -block%1:06:01:: 02853449 10 0 -block%1:06:02:: 04020298 8 0 -block%1:06:04:: 03288225 9 0 -block%1:06:05:: 02756601 11 0 -block%1:06:06:: 02853016 5 1 -block%1:09:00:: 05645199 7 0 -block%1:14:00:: 07954014 4 1 -block%1:15:00:: 08642145 2 6 -block%1:23:00:: 13626464 6 0 -block%1:25:01:: 13914608 3 1 -block%2:30:00:: 00477382 15 0 -block%2:30:01:: 00477528 14 0 -block%2:30:02:: 00269423 16 0 -block%2:31:00:: 00609100 13 0 -block%2:32:00:: 01057034 4 1 -block%2:33:00:: 01147060 12 0 -block%2:35:00:: 01478002 1 7 -block%2:35:02:: 01479333 9 0 -block%2:35:03:: 01531492 8 0 -block%2:35:06:: 01217924 11 0 -block%2:35:12:: 01476483 10 0 -block%2:39:00:: 02145543 7 0 -block%2:39:05:: 02198423 6 0 -block%2:41:00:: 02557199 2 3 -block%2:41:01:: 02559752 3 1 -block%2:41:03:: 02444297 5 0 -block_anaesthesia%1:26:00:: 14027396 1 0 -block_and_tackle%1:06:00:: 02853745 1 0 -block_anesthesia%1:26:00:: 14027396 1 0 -block_capital%1:10:00:: 06839637 1 2 -block_diagram%1:06:00:: 02853991 1 1 -block_grant%1:04:00:: 00088154 1 0 -block_letter%1:10:00:: 06839637 1 0 -block_of_metal%1:06:00:: 03570526 1 0 -block_off%2:33:00:: 01126961 1 1 -block_off%2:35:00:: 01478002 2 0 -block_off%2:35:01:: 01477394 3 0 -block_out%2:31:00:: 00711236 1 1 -block_out%2:32:00:: 01006699 4 0 -block_out%2:35:00:: 01358737 3 0 -block_out%2:35:01:: 01477538 2 0 -block_plane%1:06:00:: 02854532 1 0 -block_up%2:35:00:: 01478002 1 0 -block_vote%1:04:00:: 00183995 1 0 -blockade%1:04:00:: 00954086 1 8 -blockade%1:06:00:: 02853218 2 0 -blockade%2:33:00:: 01126846 4 0 -blockade%2:33:01:: 01126961 3 0 -blockade%2:35:00:: 01478002 2 0 -blockade%2:41:00:: 02557199 1 0 -blockade-runner%1:06:00:: 02853336 1 0 -blockaded%5:00:00:obstructed:00 01620893 1 0 -blockading%5:00:00:preventive:00 01764183 1 2 -blockage%1:04:00:: 01074694 3 0 -blockage%1:06:00:: 02853449 2 0 -blockage%1:26:00:: 14507951 1 0 -blockbuster%1:04:00:: 00064151 2 0 -blockbuster%1:06:00:: 02853870 1 0 -blocked%5:00:00:closed:01 01653857 1 0 -blocked%5:00:01:obstructed:00 01621080 2 0 -blocker%1:06:00:: 02854156 2 0 -blocker%1:18:00:: 09860248 1 0 -blockhead%1:18:00:: 10039663 1 0 -blockheaded%5:00:00:stupid:00 00440292 1 0 -blockhouse%1:06:00:: 02854378 1 0 -blocking%1:04:00:: 00562398 1 0 -blocking_agent%1:06:00:: 02854156 1 0 -blockish%5:00:00:cubic:00 00657473 1 0 -blocky%5:00:00:cubic:00 00657473 1 0 -bloemfontein%1:15:00:: 09002325 1 0 -blog%1:10:00:: 06402202 1 0 -blog%2:32:00:: 00865280 1 0 -blogger%1:18:00:: 09860415 1 0 -blok%1:18:00:: 10853628 1 0 -bloke%1:18:00:: 09908025 1 1 -blolly%1:20:00:: 12662379 1 0 -blond%1:07:00:: 04966017 2 0 -blond%1:18:00:: 09860506 1 0 -blond%3:00:00:: 00243606 1 2 -blonde%1:07:00:: 04966017 2 0 -blonde%1:18:00:: 09860506 1 2 -blonde%3:00:00:: 00243606 1 1 -blonde_lilian%1:20:00:: 12450607 1 0 -blondness%1:07:00:: 04977247 1 0 -blood%1:07:00:: 04628747 2 2 -blood%1:08:00:: 05399847 1 61 -blood%1:14:00:: 08101937 4 1 -blood%1:14:01:: 07944618 5 0 -blood%1:18:00:: 10505942 3 1 -blood%2:35:00:: 01233642 1 0 -blood-and-guts%5:00:00:intense:00 01510628 1 1 -blood-brain_barrier%1:17:00:: 09223911 1 0 -blood-filled%5:00:00:bloody:00 00247868 1 1 -blood-oxygenation_level_dependent_functional_magnetic_resonance_imaging%1:04:00:: 00902975 1 0 -blood-red%5:00:00:chromatic:00 00381097 1 0 -blood-related%5:00:00:related:01 01971846 1 0 -blood-twig%1:20:00:: 12948053 1 0 -blood_agar%1:27:00:: 14900342 1 0 -blood_bank%1:21:00:: 13368517 1 0 -blood_berry%1:20:00:: 11856573 1 0 -blood_blister%1:26:00:: 14312889 1 0 -blood_brother%1:18:00:: 09876454 1 0 -blood_brother%1:18:01:: 09860653 2 0 -blood_brotherhood%1:26:00:: 13929477 1 0 -blood_cell%1:08:00:: 05449268 1 0 -blood_clam%1:05:00:: 01963479 1 0 -blood_clot%1:08:00:: 05402333 1 0 -blood_clotting%1:22:00:: 13439230 1 0 -blood_coagulation%1:22:00:: 13439230 1 0 -blood_corpuscle%1:08:00:: 05449268 1 0 -blood_count%1:04:00:: 00652803 2 0 -blood_count%1:23:00:: 13592105 1 0 -blood_cup%1:20:00:: 13030852 1 0 -blood_cyst%1:26:00:: 14201989 1 0 -blood_disease%1:26:00:: 14189204 1 0 -blood_disorder%1:26:00:: 14189204 1 0 -blood_donor%1:18:00:: 09860813 1 0 -blood_dyscrasia%1:26:00:: 14053850 1 0 -blood_extravasation%1:26:00:: 14370526 1 0 -blood_feud%1:04:00:: 01236947 1 0 -blood_flower%1:20:00:: 13234293 1 0 -blood_fluke%1:05:00:: 01927159 1 0 -blood_glucose%1:27:00:: 14884481 1 0 -blood_group%1:08:00:: 05400601 1 0 -blood_heat%1:07:00:: 05014879 1 0 -blood_kinship%1:24:00:: 13813591 1 0 -blood_knot%1:06:00:: 02795783 1 0 -blood_lily%1:20:00:: 12420535 1 0 -blood_line%1:14:00:: 08101937 1 0 -blood_meal%1:13:00:: 07570141 1 0 -blood_money%1:21:01:: 13290566 1 0 -blood_money%1:21:02:: 13284184 2 0 -blood_money%1:21:03:: 13281925 3 0 -blood_plasma%1:08:00:: 05403427 1 0 -blood_platelet%1:27:00:: 15023959 1 0 -blood_poisoning%1:26:00:: 14189837 1 0 -blood_pressure%1:19:00:: 11429968 1 2 -blood_profile%1:04:00:: 00652975 1 0 -blood_pudding%1:13:00:: 07676121 1 0 -blood_relation%1:18:00:: 10236114 1 0 -blood_relative%1:18:00:: 10236114 1 1 -blood_sausage%1:13:00:: 07676121 1 0 -blood_serum%1:08:00:: 05403149 1 0 -blood_spavin%1:26:00:: 14273084 1 0 -blood_sport%1:04:00:: 00451866 1 0 -blood_stream%1:08:00:: 05401951 1 0 -blood_sugar%1:27:00:: 14884481 1 0 -blood_test%1:09:00:: 05742551 1 0 -blood_transfusion%1:04:00:: 00324056 1 1 -blood_type%1:08:00:: 05400601 1 0 -blood_typing%1:04:00:: 00152990 1 0 -blood_vessel%1:08:00:: 05417975 1 4 -bloodbath%1:04:00:: 00224260 1 0 -bloodberry%1:20:00:: 11856573 1 0 -bloodcurdling%5:00:00:alarming:00 00194817 1 0 -blooded%5:00:00:purebred:00 01903813 1 0 -bloodguilt%1:26:00:: 13991121 1 0 -bloodguilty%5:00:00:guilty:00 01321939 1 0 -bloodhound%1:05:00:: 02088466 1 2 -bloodily%4:02:00:: 00269488 1 0 -bloodiness%1:07:00:: 04624687 2 0 -bloodiness%1:26:00:: 13974937 1 0 -bloodleaf%1:20:00:: 11826569 1 0 -bloodless%3:00:00:: 00249433 2 0 -bloodless%5:00:00:colorless:02 00404568 5 0 -bloodless%5:00:00:dead:01 00096239 1 1 -bloodless%5:00:00:nonhuman:00 01260451 4 0 -bloodless%5:00:00:spiritless:00 02281813 3 0 -bloodless_revolution%1:04:00:: 01304356 1 0 -bloodlessly%4:02:00:: 00269299 1 0 -bloodletting%1:04:00:: 00698004 1 0 -bloodletting%1:04:01:: 00224260 2 0 -bloodline%1:07:00:: 04923907 2 0 -bloodline%1:14:00:: 08101937 1 0 -bloodlust%1:12:00:: 07485203 1 0 -bloodmobile%1:06:00:: 02854630 1 0 -bloodroot%1:20:00:: 11908077 1 0 -bloodshed%1:04:00:: 00224260 2 0 -bloodshed%1:04:01:: 00221178 1 2 -bloodshot%5:00:00:unhealthy:00 01175007 1 0 -bloodstain%1:07:00:: 04695605 1 0 -bloodstained%5:00:00:bloody:00 00247993 1 1 -bloodstock%1:14:00:: 08101755 1 0 -bloodstone%1:27:00:: 14781631 1 0 -bloodstream%1:08:00:: 05401951 1 3 -bloodsucker%1:05:00:: 01937909 1 0 -bloodsucking%5:00:00:bloody:00 00248118 1 1 -bloodsucking%5:00:00:dependent:00 00726723 2 0 -bloodthirstiness%1:07:00:: 04624687 1 0 -bloodthirsty%5:00:00:bloody:00 00248251 1 1 -bloodwood_tree%1:20:01:: 12496949 2 0 -bloodwood_tree%1:20:02:: 12565102 1 0 -bloodworm%1:05:00:: 01937579 1 0 -bloodwort%1:20:00:: 12312110 1 0 -bloodwort_family%1:20:00:: 12311894 1 0 -bloody%2:30:00:: 00228127 1 0 -bloody%3:00:00:: 00247439 1 8 -bloody%4:02:00:: 00025144 1 0 -bloody%5:00:00:unmitigated:00 01520655 2 0 -bloody-minded%5:00:00:bloody:00 00248251 2 0 -bloody-minded%5:00:00:stubborn:00 02327078 1 0 -bloody_mary%1:13:00:: 07913393 2 0 -bloody_mary%1:18:00:: 11161664 1 0 -bloody_shame%1:13:00:: 07913537 1 0 -bloom%1:19:00:: 11410527 6 0 -bloom%1:20:00:: 11669335 2 2 -bloom%1:22:00:: 13439390 1 3 -bloom%1:26:00:: 14050871 4 1 -bloom%1:28:00:: 15151641 3 1 -bloom%1:28:01:: 15295045 5 0 -bloom%2:30:00:: 00294245 1 11 -bloom_of_youth%1:28:00:: 15151641 1 0 -bloomer%1:04:00:: 00074790 2 0 -bloomer%1:20:00:: 11672269 1 0 -bloomeria%1:20:00:: 12444261 1 0 -bloomeria_crocea%1:20:00:: 12444490 1 0 -bloomers%1:06:00:: 02854739 1 0 -bloomfield%1:18:00:: 10853767 1 0 -blooming%1:22:00:: 13439390 1 3 -blooming%5:00:00:unmitigated:00 01520655 1 0 -blooming-fool_begonia%1:20:00:: 12360958 1 0 -bloomington%1:15:00:: 09085089 1 0 -bloomsbury%1:15:00:: 08874920 1 0 -bloomsbury_group%1:14:00:: 08240966 1 0 -blooper%1:04:00:: 00074790 1 0 -blossom%1:20:00:: 11669335 1 6 -blossom%1:28:00:: 15295045 2 0 -blossom%2:30:00:: 00293760 2 2 -blossom%2:30:01:: 00294245 1 3 -blossom_forth%2:30:00:: 00293760 1 0 -blossom_out%2:30:00:: 00293760 1 0 -blossoming%1:22:00:: 13439570 1 0 -blot%1:04:00:: 00072261 2 0 -blot%1:07:00:: 04694441 1 7 -blot%2:35:00:: 01538928 1 0 -blot%2:35:01:: 01531998 2 0 -blot_out%2:30:00:: 00313987 1 6 -blotch%1:07:00:: 04694809 1 1 -blotch%2:36:00:: 01696135 1 0 -blotched%5:00:00:patterned:00 01787408 1 0 -blotchy%5:00:00:blemished:00 00246497 2 0 -blotchy%5:00:00:patterned:00 01787408 1 0 -blotted_out%5:00:00:destroyed:00 00735088 1 0 -blotter%1:10:00:: 06502858 2 0 -blotter%1:27:00:: 14781752 1 0 -blotting_paper%1:27:00:: 14781752 1 0 -blotto%5:00:00:intoxicated:00 00798103 1 0 -blouse%1:06:00:: 02854926 1 0 -bloviate%2:32:00:: 00829014 1 0 -blow%1:04:01:: 01173038 1 25 -blow%1:04:02:: 00835501 7 0 -blow%1:06:00:: 03066743 6 0 -blow%1:11:00:: 07338681 2 7 -blow%1:11:01:: 07298982 4 1 -blow%1:11:02:: 07475870 3 2 -blow%1:19:00:: 11465017 5 0 -blow%2:29:00:: 00007012 1 6 -blow%2:29:01:: 00034948 3 3 -blow%2:30:04:: 00435294 21 0 -blow%2:30:07:: 00310155 22 0 -blow%2:30:08:: 00477247 6 1 -blow%2:32:03:: 00883226 19 0 -blow%2:32:09:: 00934965 18 0 -blow%2:32:12:: 00779804 20 0 -blow%2:35:08:: 01545208 17 0 -blow%2:38:00:: 01902783 4 2 -blow%2:38:03:: 02100632 14 0 -blow%2:38:08:: 01849054 16 0 -blow%2:38:09:: 02101046 13 0 -blow%2:38:12:: 02068745 15 0 -blow%2:39:00:: 02135727 11 0 -blow%2:39:01:: 02135877 5 1 -blow%2:39:05:: 02178340 10 0 -blow%2:39:08:: 02117170 12 0 -blow%2:40:00:: 02266148 9 0 -blow%2:40:02:: 02268351 8 0 -blow%2:41:00:: 02527651 7 0 -blow%2:43:00:: 02769241 2 5 -blow-by-blow%5:00:00:careful:00 00309620 1 0 -blow-dry%2:30:00:: 00219224 1 0 -blow_a_fuse%2:37:00:: 01795428 1 0 -blow_drier%1:06:00:: 03483316 1 0 -blow_dryer%1:06:00:: 03483316 1 0 -blow_fly%1:05:00:: 02191773 1 0 -blow_gas%1:27:00:: 14781872 1 0 -blow_off%2:35:00:: 01290945 1 1 -blow_one's_stack%2:37:00:: 01795428 1 0 -blow_out%2:30:00:: 00435294 1 2 -blow_out%2:43:00:: 02761897 2 0 -blow_out%2:43:01:: 02761012 3 0 -blow_out_of_the_water%2:37:00:: 01809064 1 0 -blow_over%2:30:00:: 00421691 1 0 -blow_tube%1:06:00:: 02855560 1 0 -blow_tube%1:06:01:: 02855253 2 0 -blow_up%2:30:00:: 00240293 2 1 -blow_up%2:30:01:: 00264386 6 0 -blow_up%2:30:02:: 00263682 8 0 -blow_up%2:30:03:: 00306723 1 4 -blow_up%2:30:04:: 00264034 7 0 -blow_up%2:30:05:: 00306298 5 0 -blow_up%2:32:00:: 00956405 4 0 -blow_up%2:37:00:: 01795428 3 0 -blowback%1:10:00:: 06635104 2 0 -blowback%1:11:00:: 07408965 1 0 -blowball%1:20:00:: 12024176 1 0 -blower%1:05:00:: 02062430 3 0 -blower%1:06:00:: 02855089 1 3 -blower%1:06:02:: 03271574 2 0 -blowfish%1:05:00:: 02655020 2 0 -blowfish%1:13:00:: 07781972 1 1 -blowfly%1:05:00:: 02191773 1 0 -blowgun%1:06:00:: 02855253 1 0 -blowhard%1:18:00:: 09872066 1 0 -blowhole%1:06:00:: 04526241 2 0 -blowhole%1:08:00:: 05250420 1 0 -blowing%1:22:00:: 13439807 1 3 -blowing_gas%1:27:00:: 14781872 1 1 -blowing_up%1:10:00:: 06713377 1 0 -blowjob%1:04:00:: 00855301 1 0 -blowlamp%1:06:00:: 02855390 1 0 -blown%5:00:00:breathless:00 00268748 2 0 -blown%5:00:00:moving:02 01562809 1 1 -blown-up%5:00:00:large:00 01383935 1 0 -blowout%1:04:00:: 00518669 3 0 -blowout%1:11:00:: 07318618 2 0 -blowout%1:11:01:: 07475107 1 0 -blowpipe%1:06:00:: 02855560 1 0 -blowpipe%1:06:01:: 02855253 2 0 -blowsy%5:00:00:untidy:00 02424716 1 0 -blowtorch%1:06:00:: 02855390 1 0 -blowtube%1:06:00:: 02855560 1 0 -blowtube%1:06:01:: 02855253 2 0 -blowup%1:06:00:: 03289462 3 0 -blowup%1:10:00:: 07014320 2 0 -blowup%1:11:00:: 07308563 1 0 -blowy%5:00:00:stormy:00 00305225 1 0 -blowzy%5:00:00:untidy:00 02424716 1 0 -blt%1:13:00:: 07698401 1 0 -blu-82%1:06:00:: 02836900 1 0 -blub%2:29:00:: 00067274 1 0 -blubber%1:07:00:: 04999401 2 0 -blubber%1:27:00:: 14781989 1 0 -blubber%2:29:00:: 00067274 1 1 -blubber%2:32:00:: 00943732 2 0 -blubber_out%2:32:00:: 00943732 1 0 -blubberer%1:18:00:: 09860940 1 0 -blubbery%5:00:00:fat:01 00986611 1 0 -blucher%1:06:00:: 02855701 2 0 -blucher%1:18:00:: 10853932 1 0 -bludgeon%1:06:00:: 02855793 1 2 -bludgeon%2:35:00:: 01423929 2 0 -bludgeon%2:41:00:: 02505606 1 0 -bludgeoner%1:18:00:: 09861059 1 0 -blue%1:05:00:: 02282257 7 0 -blue%1:06:00:: 02703692 6 0 -blue%1:06:01:: 02855925 2 9 -blue%1:07:00:: 04968895 1 9 -blue%1:14:00:: 08480847 3 3 -blue%1:17:00:: 09224566 4 1 -blue%1:27:00:: 14986593 5 0 -blue%2:30:00:: 00521641 1 0 -blue%5:00:00:chromatic:00 00370869 1 48 -blue%5:00:00:dejected:00 00703615 3 1 -blue%5:00:00:depressing:00 00364881 8 0 -blue%5:00:00:noble:02 01590484 6 0 -blue%5:00:00:nonindulgent:00 01300370 7 0 -blue%5:00:00:northern:02 01606058 2 13 -blue%5:00:00:sexy:00 02132224 5 0 -blue%5:00:02:dirty:02 00425002 4 1 -blue-belly%1:05:00:: 01680655 1 0 -blue-black%5:00:00:achromatic:00 00388152 1 1 -blue-blind%5:00:00:blind:00 02160696 1 0 -blue-blindness%1:26:00:: 14155031 1 0 -blue-blooded%5:00:00:noble:02 01590484 1 0 -blue-chip%5:00:00:valuable:00 02501247 1 0 -blue-chip_stock%1:21:00:: 13334767 1 0 -blue-collar%3:00:00:: 02556720 1 1 -blue-collar%5:00:00:lower-class:00 00260100 2 1 -blue-eyed%5:00:00:eyed:00 00953814 2 1 -blue-eyed%5:00:00:loved:00 01462461 1 1 -blue-eyed_african_daisy%1:20:00:: 11925450 1 0 -blue-eyed_grass%1:20:00:: 12418221 1 0 -blue-eyed_mary%1:20:00:: 12882158 1 0 -blue-flowered%5:00:00:colored:00 00396444 1 0 -blue-fruited%5:00:00:fruitful:00 01080823 1 0 -blue-gray%5:00:00:achromatic:00 00388032 1 0 -blue-green%5:00:00:chromatic:00 00371163 1 0 -blue-green_algae%1:05:00:: 01358572 1 1 -blue-grey%5:00:00:achromatic:00 00388032 1 0 -blue-headed_vireo%1:05:00:: 01603152 1 0 -blue-lilac%5:00:00:chromatic:00 00371311 1 0 -blue-pencil%2:30:00:: 00200863 1 0 -blue-purple%5:00:00:chromatic:00 00371411 1 0 -blue-ribbon%5:00:00:superior:02 02342309 1 1 -blue-sky%5:00:00:noncommercial:00 00484538 1 0 -blue-violet%5:00:00:chromatic:00 00371511 1 0 -blue-white%5:00:00:achromatic:00 00387922 1 0 -blue-winged_teal%1:05:00:: 01848453 1 0 -blue_african_lily%1:20:00:: 12429352 1 0 -blue_air%1:17:00:: 09224566 1 1 -blue_angel%1:06:00:: 02703692 1 0 -blue_ash%1:20:00:: 12305819 1 0 -blue_baby%1:18:00:: 09861166 1 0 -blue_blood%1:18:00:: 09807754 1 0 -blue_book%1:10:00:: 06507711 2 0 -blue_book%1:10:01:: 07219636 1 0 -blue_book%1:10:02:: 06414151 3 0 -blue_bugle%1:20:00:: 12841193 1 0 -blue_bull%1:05:00:: 02425532 1 0 -blue_cardinal_flower%1:20:00:: 12169320 1 0 -blue_cat%1:05:00:: 02519862 1 0 -blue_catfish%1:05:00:: 02519862 1 0 -blue_channel_cat%1:05:00:: 02519862 1 0 -blue_channel_catfish%1:05:00:: 02519862 1 0 -blue_cheese%1:13:00:: 07852045 1 0 -blue_cheese_dressing%1:13:00:: 07833535 2 0 -blue_cheese_dressing%1:13:02:: 07833672 1 0 -blue_chip%1:06:00:: 02856013 2 0 -blue_chip%1:21:00:: 13334767 1 0 -blue_cohosh%1:20:00:: 11698562 1 0 -blue_columbine%1:20:00:: 11727540 1 0 -blue_copperas%1:27:00:: 14782252 1 0 -blue_crab%1:05:00:: 01979874 2 0 -blue_crab%1:13:00:: 07787980 1 0 -blue_curls%1:20:00:: 12871272 1 0 -blue_daisy%1:20:00:: 11969607 1 0 -blue_darter%1:05:00:: 01606809 1 0 -blue_devil%1:06:00:: 02703692 2 0 -blue_devil%1:20:00:: 12819728 1 0 -blue_devils%1:26:00:: 14404460 1 0 -blue_elder%1:20:00:: 12678794 1 0 -blue_elderberry%1:20:00:: 12678794 1 0 -blue_false_indigo%1:20:00:: 12509665 1 0 -blue_fig%1:20:00:: 12192877 2 0 -blue_fig%1:20:02:: 12193334 1 0 -blue_flag%1:20:00:: 12415089 1 0 -blue_fleabane%1:20:00:: 11965962 1 0 -blue_fox%1:05:00:: 02120278 1 0 -blue_funk%1:26:00:: 14404610 1 0 -blue_goose%1:05:00:: 01856890 1 0 -blue_grama%1:20:00:: 12112219 1 0 -blue_grass%1:20:00:: 12131405 1 0 -blue_green%1:07:00:: 04968426 1 0 -blue_gum%1:20:00:: 12337617 1 0 -blue_jack%1:05:00:: 02536864 1 0 -blue_jasmine%1:20:00:: 11730015 1 0 -blue_jay%1:05:00:: 01580870 1 0 -blue_jean%1:06:00:: 03594734 1 0 -blue_jessamine%1:20:00:: 11730015 1 0 -blue_jet%1:19:00:: 11475067 1 0 -blue_joke%1:10:00:: 06779096 1 0 -blue_law%1:10:00:: 06538105 1 0 -blue_lotus%1:20:01:: 11716041 2 0 -blue_lotus%1:20:02:: 11716167 1 0 -blue_mahoe%1:20:00:: 12178494 1 0 -blue_marguerite%1:20:00:: 11969607 1 0 -blue_marlin%1:05:00:: 02631330 1 0 -blue_mockingbird%1:05:00:: 01587278 1 0 -blue_mold_fungus%1:20:00:: 12981086 1 0 -blue_moon%1:28:00:: 15244200 1 0 -blue_mountain_tea%1:20:00:: 12017326 1 0 -blue_murder%1:10:00:: 07121904 1 0 -blue_nile%1:17:00:: 09224193 1 0 -blue_note%1:10:00:: 07051517 1 0 -blue_orchid%1:20:00:: 12086192 1 0 -blue_pea%1:20:00:: 12517642 1 0 -blue_peafowl%1:05:00:: 01806364 1 0 -blue_peter%1:10:00:: 06875552 1 0 -blue_pickerel%1:05:00:: 02557909 1 0 -blue_pike%1:05:00:: 02557909 1 0 -blue_pikeperch%1:05:00:: 02557909 1 0 -blue_pimpernel%1:20:00:: 12868019 1 0 -blue_point%1:05:01:: 01961059 2 0 -blue_point%1:13:00:: 07786484 1 0 -blue_point_siamese%1:05:00:: 02123785 1 0 -blue_pointed%1:05:00:: 01484562 1 0 -blue_poppy%1:20:00:: 11906917 1 0 -blue_racer%1:05:00:: 01731137 1 0 -blue_ribbon%1:10:00:: 07268302 1 0 -blue_ribbon_commission%1:14:00:: 08322756 1 0 -blue_ribbon_committee%1:14:00:: 08322756 1 0 -blue_ribbon_jury%1:14:00:: 08415469 1 0 -blue_ridge%1:17:00:: 09224325 1 0 -blue_ridge_mountains%1:17:00:: 09224325 1 0 -blue_runner%1:05:00:: 02577164 1 0 -blue_sage%1:20:00:: 12014524 4 0 -blue_sage%1:20:01:: 12864902 3 0 -blue_sage%1:20:02:: 12865239 2 0 -blue_sage%1:20:03:: 12865367 1 0 -blue_shark%1:05:00:: 01491006 1 0 -blue_skullcap%1:20:00:: 12868019 1 0 -blue_sky%1:17:00:: 09224566 1 0 -blue_sky_law%1:10:00:: 06538215 1 0 -blue_star%1:20:00:: 11770753 1 0 -blue_stem%1:20:00:: 12133682 1 0 -blue_stone%1:27:00:: 14782252 1 0 -blue_story%1:10:00:: 06779096 1 0 -blue_succory%1:20:00:: 11946918 1 0 -blue_thistle%1:20:00:: 12819728 1 0 -blue_tit%1:05:00:: 01592694 1 0 -blue_toadflax%1:20:00:: 12884100 1 0 -blue_tulip%1:20:00:: 11737752 1 0 -blue_vitriol%1:27:00:: 14782252 1 0 -blue_wall%1:04:00:: 01050356 1 0 -blue_wall_of_silence%1:04:00:: 01050356 1 0 -blue_walleye%1:05:00:: 02557909 1 0 -blue_whale%1:05:00:: 02064816 1 0 -blueback_salmon%1:05:00:: 02536165 1 0 -bluebeard%1:18:00:: 09590205 1 0 -bluebell%1:20:00:: 12291959 2 0 -bluebell%1:20:01:: 12037328 3 0 -bluebell%1:20:02:: 12459275 1 0 -blueberry%1:13:00:: 07743544 2 0 -blueberry%1:20:00:: 12246232 1 0 -blueberry_bush%1:20:00:: 12246232 1 0 -blueberry_pie%1:13:00:: 07626405 1 1 -blueberry_root%1:20:00:: 11698562 1 0 -blueberry_yogurt%1:13:00:: 07849506 1 0 -bluebill%1:05:00:: 01851375 1 0 -bluebird%1:05:01:: 01562014 2 0 -bluebird%1:05:02:: 01594004 1 0 -bluebonnet%1:06:00:: 02783567 2 0 -bluebonnet%1:20:00:: 12547215 1 0 -bluebottle%1:05:00:: 02191979 2 0 -bluebottle%1:20:00:: 11947802 1 0 -bluecoat%1:18:00:: 09861287 1 0 -bluefin%1:05:00:: 02627292 2 0 -bluefin%1:13:00:: 07781207 1 0 -bluefin_tuna%1:05:00:: 02627292 2 0 -bluefin_tuna%1:13:00:: 07781207 1 0 -bluefish%1:05:00:: 02573704 1 1 -bluefish%1:13:00:: 07785783 2 0 -bluegill%1:05:00:: 02563792 1 0 -bluegrass%1:10:00:: 07062190 3 0 -bluegrass%1:15:00:: 09090389 2 0 -bluegrass%1:20:00:: 12131405 1 0 -bluegrass_country%1:15:00:: 09090389 1 0 -bluegrass_region%1:15:00:: 09090389 1 0 -bluegrass_state%1:15:00:: 09089139 1 0 -bluegrass_stater%1:18:00:: 09743275 1 0 -bluehead%1:05:00:: 02609302 1 0 -blueing%1:22:00:: 13439935 2 0 -blueing%1:27:00:: 14986593 1 0 -blueish%5:00:00:chromatic:00 00370869 1 0 -bluejack_oak%1:20:00:: 12273114 1 0 -bluejacket%1:18:00:: 09861395 1 0 -blueness%1:07:00:: 04968895 1 0 -bluenose%1:18:00:: 09725546 1 0 -bluepoint%1:05:00:: 01961059 2 0 -bluepoint%1:13:00:: 07786484 1 0 -blueprint%1:06:00:: 02856109 2 0 -blueprint%1:09:00:: 05902327 1 0 -blueprint%2:36:00:: 01683582 1 0 -blueprint_paper%1:27:00:: 14782150 1 0 -blues%1:10:00:: 07051185 1 2 -blues%1:26:00:: 14404460 2 0 -bluestem%1:20:00:: 12133682 1 0 -bluestem_wheatgrass%1:20:00:: 12105981 1 0 -bluestocking%1:18:00:: 09861599 1 1 -bluestone%1:27:00:: 14995812 1 0 -bluethroat%1:05:00:: 01562451 1 0 -bluethroat_pikeblenny%1:05:00:: 02614653 1 0 -bluetick%1:05:00:: 02088632 1 0 -bluetongue%1:26:00:: 14261717 1 0 -blueweed%1:20:00:: 12819728 1 0 -bluewing%1:05:00:: 01848453 1 0 -bluff%1:04:00:: 00756598 3 0 -bluff%1:10:00:: 06759602 2 2 -bluff%1:17:00:: 09224725 1 5 -bluff%2:32:00:: 00837872 2 0 -bluff%2:33:00:: 01076953 1 0 -bluff%5:00:00:steep:00 01145422 1 0 -bluff%5:00:01:direct:02 00764301 2 0 -bluff_out%2:33:00:: 01076953 1 0 -bluffer%1:18:00:: 09861718 1 0 -bluffly%4:02:00:: 00279523 1 0 -bluffness%1:07:00:: 04650913 1 0 -bluing%1:22:00:: 13439935 2 0 -bluing%1:27:00:: 14986593 1 0 -bluish%5:00:00:chromatic:00 00370869 1 1 -bluish-gray%5:00:00:achromatic:00 00388032 1 0 -bluish-grey%5:00:00:achromatic:00 00388032 1 0 -bluish-lilac%5:00:00:chromatic:00 00371311 1 0 -bluish-purple%5:00:00:chromatic:00 00371411 1 0 -bluish-violet%5:00:00:chromatic:00 00371511 1 0 -bluish-white%5:00:00:achromatic:00 00387922 1 0 -bluish_black%5:00:00:achromatic:00 00388152 1 0 -bluish_green%1:07:00:: 04968426 1 0 -bluish_green%5:00:00:chromatic:00 00371163 1 0 -blunder%1:04:00:: 00074790 1 2 -blunder%2:32:00:: 00981944 3 0 -blunder%2:38:00:: 02051547 2 0 -blunder%2:41:00:: 02566227 1 1 -blunder_out%2:32:00:: 00981944 1 0 -blunderbuss%1:06:00:: 02856237 1 0 -blunderer%1:18:00:: 09879744 1 0 -blunt%2:30:00:: 00227913 4 0 -blunt%2:30:01:: 00228019 1 1 -blunt%2:30:02:: 00192051 5 0 -blunt%2:35:00:: 01246444 3 0 -blunt%2:39:00:: 02115273 2 0 -blunt%5:00:00:direct:02 00764484 3 1 -blunt%5:00:00:dull:01 00800464 2 1 -blunt%5:00:00:pointless:00 01811683 1 1 -blunt%5:00:00:unconditional:00 00556881 4 0 -blunt-leaf_heath%1:20:00:: 12253664 1 0 -blunt_file%1:06:00:: 02856362 1 0 -blunt_trauma%1:26:00:: 14288725 1 0 -blunted%5:00:00:dull:01 00800597 1 0 -bluntly%4:02:00:: 00279523 1 0 -bluntness%1:07:01:: 04705671 2 0 -bluntness%1:07:02:: 04846383 1 0 -blur%1:09:00:: 05940414 1 4 -blur%2:30:00:: 00311113 6 0 -blur%2:30:01:: 00312990 5 0 -blur%2:31:00:: 00620673 3 1 -blur%2:35:00:: 01251928 4 0 -blur%2:39:00:: 02161758 2 1 -blur%2:39:01:: 02158034 1 2 -blurb%1:10:00:: 07248060 1 0 -blurred%5:00:00:indistinct:00 00781644 1 5 -blurred%5:00:00:unclear:00 00430545 2 0 -blurriness%1:07:00:: 04704346 1 0 -blurry%5:00:00:indistinct:00 00781644 1 0 -blurt%2:32:00:: 00981944 1 1 -blurt_out%2:32:00:: 00981944 1 0 -blush%1:04:00:: 00118268 2 0 -blush%1:26:00:: 14050871 1 0 -blush%2:29:00:: 00103317 1 9 -blush%2:30:01:: 00289159 2 0 -blush_wine%1:13:00:: 07893253 1 0 -blusher%1:06:00:: 04112752 2 0 -blusher%1:20:00:: 13003522 1 0 -blushful%5:00:00:chromatic:00 00371611 2 0 -blushful%5:00:00:discomposed:00 00531887 1 0 -blushing%5:00:00:discomposed:00 00531887 1 1 -blushing_mushroom%1:20:00:: 13003522 1 0 -bluster%1:10:00:: 06889591 2 1 -bluster%1:10:01:: 07230089 4 0 -bluster%1:19:00:: 11465297 3 0 -bluster%1:26:00:: 13976182 1 2 -bluster%2:29:00:: 00012434 3 0 -bluster%2:32:00:: 00883226 2 1 -bluster%2:43:00:: 02770362 1 1 -blusterer%1:18:00:: 10274318 1 0 -blustering%5:00:00:stormy:00 00304670 1 0 -blusterous%5:00:00:stormy:00 00304670 1 0 -blustery%5:00:00:domineering:00 00788032 2 0 -blustery%5:00:00:stormy:00 00304670 1 1 -bm%1:22:00:: 13441387 2 0 -bm%1:27:00:: 14854262 1 0 -bmdo%1:14:00:: 08395991 1 0 -bmi%1:10:00:: 06640016 1 0 -bmr%1:22:00:: 13437610 1 0 -bmus%1:10:00:: 06699366 1 0 -bns%1:10:00:: 06699465 1 0 -bo's'n%1:18:00:: 09862183 1 0 -bo'sun%1:18:00:: 09862183 1 0 -bo_hai%1:17:00:: 09226209 1 0 -bo_tree%1:20:00:: 12402596 1 0 -boa%1:05:00:: 01741943 2 0 -boa%1:06:00:: 03325584 1 0 -boa_constrictor%1:05:00:: 01742172 1 6 -boann%1:18:00:: 09508368 1 0 -boar%1:05:01:: 02396014 2 0 -boar%1:05:02:: 02396427 1 0 -boar_thistle%1:20:00:: 11955153 1 0 -board%1:06:00:: 02856463 3 4 -board%1:06:01:: 03201208 6 0 -board%1:06:02:: 03098140 7 0 -board%1:06:03:: 03211616 5 0 -board%1:06:04:: 03033986 8 0 -board%1:06:05:: 02857023 9 0 -board%1:13:00:: 07565259 4 0 -board%1:14:00:: 08322981 1 28 -board%1:27:00:: 15101854 2 18 -board%2:34:00:: 01176897 4 0 -board%2:34:01:: 01177118 3 0 -board%2:38:00:: 02018049 1 5 -board%2:42:00:: 02656763 2 2 -board_foot%1:23:00:: 13617835 1 0 -board_game%1:04:00:: 00502415 1 0 -board_measure%1:23:00:: 13617713 1 0 -board_meeting%1:14:00:: 08308039 1 0 -board_member%1:18:00:: 10308168 1 0 -board_of_appeals%1:14:00:: 08323301 1 0 -board_of_directors%1:14:00:: 08380768 1 3 -board_of_education%1:14:00:: 08413408 1 0 -board_of_regents%1:14:00:: 08323658 1 1 -board_of_selectmen%1:14:00:: 08323471 1 0 -board_of_trade_unit%1:23:00:: 13727478 1 0 -board_of_trustees%1:14:00:: 08323825 1 1 -board_rule%1:06:00:: 02857812 1 0 -board_up%2:35:00:: 01235224 1 0 -boarder%1:18:00:: 10269458 1 0 -boarder%1:18:01:: 09862345 3 0 -boarder%1:18:02:: 09862479 2 0 -boarding%1:04:00:: 00058337 1 2 -boarding%1:06:00:: 02857365 2 0 -boarding_card%1:10:00:: 06690647 1 0 -boarding_house%1:06:00:: 02857477 1 0 -boarding_pass%1:10:00:: 06690647 1 0 -boarding_school%1:14:00:: 08411701 1 0 -boardinghouse%1:06:00:: 02857477 1 1 -boardroom%1:06:00:: 02857644 1 0 -boards%1:06:00:: 02857907 2 0 -boards%1:06:01:: 02858044 1 0 -boardwalk%1:06:00:: 02858179 1 0 -boarfish%1:05:01:: 01453475 2 0 -boarfish%1:05:02:: 01453742 1 0 -boarhound%1:05:00:: 02088745 1 0 -boast%1:10:00:: 07229530 1 1 -boast%2:32:00:: 00883226 1 7 -boast%2:42:00:: 02631659 2 6 -boaster%1:18:00:: 09872066 1 0 -boastful%5:00:00:proud:00 01890752 1 1 -boastfully%4:02:00:: 00225672 1 1 -boastfulness%1:07:00:: 04887373 1 0 -boasting%1:10:00:: 07229530 1 0 -boat%1:06:00:: 02858304 1 14 -boat%1:06:01:: 03456024 2 0 -boat%2:38:00:: 01944692 1 0 -boat-billed_heron%1:05:00:: 02011281 1 0 -boat-race%2:33:00:: 01086854 1 0 -boat-shaped%5:00:00:concave:00 00536103 1 0 -boat_bug%1:05:01:: 02243209 1 0 -boat_club%1:14:00:: 08230785 1 0 -boat_deck%1:06:00:: 02859084 1 0 -boat_hook%1:06:00:: 02859343 1 0 -boat_paddle%1:06:00:: 03873416 1 0 -boat_race%1:11:00:: 07459523 1 0 -boat_racing%1:04:00:: 00449695 1 0 -boat_train%1:06:00:: 02859729 1 0 -boat_whistle%1:06:00:: 02859829 1 0 -boatbill%1:05:00:: 02011281 1 0 -boatbuilder%1:18:00:: 09861863 1 0 -boater%1:06:00:: 02859184 1 1 -boater%1:18:00:: 09861946 2 0 -boathouse%1:06:00:: 02859443 1 0 -boating%1:04:00:: 00315390 1 2 -boatload%1:23:00:: 13775523 1 1 -boatman%1:18:00:: 09861946 1 0 -boatmanship%1:09:00:: 05639941 1 0 -boatswain%1:18:00:: 09862183 1 3 -boatswain's_chair%1:06:00:: 02859557 1 0 -boatswain_bird%1:05:00:: 02055107 1 0 -boatyard%1:06:00:: 02859955 1 0 -bob%1:04:00:: 00336274 7 0 -bob%1:05:00:: 02158066 6 0 -bob%1:06:00:: 02860063 5 0 -bob%1:06:01:: 02860239 4 0 -bob%1:06:02:: 02860847 3 0 -bob%1:08:00:: 05259109 2 0 -bob%1:23:00:: 13686877 1 0 -bob%2:29:00:: 00039121 5 0 -bob%2:32:00:: 00899352 4 0 -bob%2:35:00:: 01556178 3 0 -bob%2:38:00:: 01865383 1 6 -bob%2:38:01:: 01939811 2 0 -bob_about%2:38:00:: 01865866 1 0 -bob_around%2:38:00:: 01865866 1 0 -bob_dylan%1:18:00:: 10947108 1 0 -bob_hope%1:18:00:: 11059263 1 0 -bob_marley%1:18:00:: 11157580 1 0 -bob_mathias%1:18:00:: 11164332 1 0 -bob_under%2:39:00:: 02156963 1 0 -bob_up%2:42:00:: 02625786 1 0 -bob_woodward%1:18:00:: 11396338 1 0 -bobber%1:06:00:: 02860063 1 0 -bobbin%1:06:00:: 02860415 1 0 -bobbin_lace%1:06:00:: 03938522 1 0 -bobble%1:04:00:: 00071864 1 0 -bobble%2:41:00:: 02527651 1 0 -bobby%1:18:00:: 09862621 1 0 -bobby-socker%1:18:00:: 09862713 1 0 -bobby_fischer%1:18:00:: 10971528 1 0 -bobby_jones%1:18:00:: 11090512 1 0 -bobby_orr%1:18:00:: 11217072 1 0 -bobby_pin%1:06:00:: 02860640 1 1 -bobbysock%1:06:00:: 02713218 1 0 -bobbysocks%1:06:00:: 02713218 1 0 -bobbysoxer%1:18:00:: 09862713 1 1 -bobcat%1:05:00:: 02127482 1 0 -bobfloat%1:06:00:: 02860063 1 0 -bobolink%1:05:00:: 01573898 1 0 -bobsled%1:06:00:: 02860847 2 0 -bobsled%1:06:01:: 02861022 1 0 -bobsled%2:38:00:: 01939811 1 0 -bobsledding%1:04:00:: 00447463 1 0 -bobsleigh%1:06:00:: 02860847 2 0 -bobsleigh%1:06:01:: 02861022 1 0 -bobtail%1:05:00:: 02158066 1 0 -bobtail%1:05:01:: 02105641 2 0 -bobtail%5:00:00:caudate:00 00319851 1 0 -bobtailed%5:00:00:caudate:00 00319851 1 0 -bobwhite%1:05:00:: 01804478 1 0 -bobwhite_quail%1:05:00:: 01804478 1 0 -boccaccio%1:18:00:: 10854146 1 0 -bocce%1:04:00:: 00462997 1 0 -bocce_ball%1:06:00:: 02861147 1 0 -bocci%1:04:00:: 00462997 1 0 -bocci_ball%1:06:00:: 02861147 1 0 -boccie%1:04:00:: 00462997 1 0 -boccie_ball%1:06:00:: 02861147 1 0 -bocconia%1:20:01:: 11903333 2 0 -bocconia%1:20:02:: 11906514 1 0 -bocconia_frutescens%1:20:00:: 11903333 1 0 -boche%1:18:00:: 09748239 1 0 -bock%1:13:00:: 07887461 1 0 -bock_beer%1:13:00:: 07887461 1 0 -bod%1:08:00:: 05217168 1 0 -bodacious%5:00:00:unashamed:00 00155144 2 0 -bodacious%5:00:00:unmitigated:00 01520908 1 0 -boddhisatva%1:18:00:: 09532384 1 0 -bode%2:32:00:: 00871942 1 1 -bodega%1:06:00:: 02861286 1 0 -bodensee%1:17:00:: 09252766 1 0 -bodge%2:41:00:: 02527651 1 0 -bodhisattva%1:18:00:: 09532384 1 0 -bodice%1:06:00:: 02861387 1 1 -bodice_ripper%1:10:00:: 06369554 1 0 -bodied%3:00:00:: 00627849 1 0 -bodied%5:00:00:corporeal:00 00630466 2 0 -bodiless%5:00:00:incorporeal:00 00631040 1 0 -bodiless%5:00:00:unbodied:00 00629269 2 0 -bodily%3:01:01:: 02667275 1 0 -bodily%4:02:00:: 00226353 1 2 -bodily%5:00:00:corporeal:00 00630329 3 0 -bodily%5:00:00:physical:00 01778935 2 0 -bodily_cavity%1:08:00:: 05303402 1 0 -bodily_fluid%1:08:00:: 05397468 1 0 -bodily_function%1:22:00:: 13440063 1 1 -bodily_process%1:22:00:: 13440063 1 0 -bodily_property%1:07:00:: 04997988 1 0 -bodily_structure%1:08:00:: 05225602 1 0 -boding%1:12:00:: 07522128 1 0 -bodkin%1:06:00:: 02861509 4 0 -bodkin%1:06:01:: 02861658 3 0 -bodkin%1:06:02:: 02861777 2 0 -bodkin%1:06:03:: 03981094 1 0 -bodo-garo%1:10:00:: 06933689 1 0 -bodoni%1:10:00:: 06826726 2 0 -bodoni%1:18:00:: 10854265 1 0 -bodoni_font%1:10:00:: 06826726 1 0 -body%1:06:00:: 02861886 11 0 -body%1:06:01:: 04261506 10 0 -body%1:07:00:: 04934546 7 2 -body%1:07:01:: 05024616 9 0 -body%1:08:00:: 05216365 1 113 -body%1:08:01:: 05549830 5 7 -body%1:08:02:: 05217859 3 14 -body%1:10:00:: 06394701 8 1 -body%1:14:00:: 07965085 2 19 -body%1:14:02:: 08436288 6 5 -body%1:17:00:: 09224911 4 7 -body%2:42:00:: 02698944 1 0 -body-build%1:07:00:: 04998530 1 0 -body-surf%2:38:00:: 01948339 1 0 -body_and_soul%4:02:00:: 00164353 1 0 -body_armor%1:06:00:: 02862048 1 0 -body_armour%1:06:00:: 02862048 1 0 -body_bag%1:06:00:: 02862770 1 0 -body_count%1:23:00:: 13592219 1 0 -body_covering%1:08:00:: 05237755 1 0 -body_english%1:04:00:: 00333572 1 0 -body_fluid%1:08:00:: 05397468 1 0 -body_forth%2:42:00:: 02698443 1 0 -body_guard%2:38:00:: 02026868 1 0 -body_hair%1:08:00:: 05255578 1 0 -body_language%1:10:00:: 06876892 1 0 -body_length%1:23:00:: 13653821 1 1 -body_lotion%1:06:00:: 02862916 1 0 -body_louse%1:05:00:: 02184720 1 0 -body_mass_index%1:10:00:: 06640016 1 0 -body_odor%1:07:00:: 04980920 1 0 -body_odour%1:07:00:: 04980920 1 0 -body_of_water%1:17:00:: 09225146 1 1 -body_of_work%1:06:00:: 03841417 1 0 -body_pad%1:06:00:: 02863340 1 0 -body_part%1:08:00:: 05220461 1 2 -body_plethysmograph%1:06:00:: 02863176 1 0 -body_politic%1:14:00:: 08168978 1 0 -body_process%1:22:00:: 13440063 1 0 -body_servant%1:18:00:: 09863238 1 1 -body_snatcher%1:18:00:: 10144571 1 0 -body_stocking%1:06:00:: 02863014 1 0 -body_structure%1:08:00:: 05225602 1 0 -body_substance%1:08:00:: 05263850 1 0 -body_suit%1:06:00:: 03657511 1 0 -body_temperature%1:07:00:: 05014879 1 0 -body_type%1:07:00:: 04998966 1 0 -body_waste%1:27:00:: 14853947 1 0 -body_weight%1:07:00:: 05027135 1 8 -bodybuilder%1:18:00:: 09862845 1 8 -bodybuilding%1:04:00:: 00625993 1 1 -bodyguard%1:14:00:: 08215801 2 0 -bodyguard%1:18:00:: 09863031 1 1 -bodyless%5:00:00:unbodied:00 00629269 1 0 -bodypaint%2:36:00:: 01681635 1 0 -bodywork%1:04:00:: 00713493 2 0 -bodywork%1:06:00:: 02863426 1 0 -boehm%1:18:00:: 10854397 1 0 -boehme%1:18:00:: 10854397 1 0 -boehmenism%1:09:00:: 06188146 1 0 -boehmeria%1:20:00:: 12392943 1 0 -boehmeria_nivea%1:20:00:: 12393269 1 0 -boell%1:18:00:: 10854627 1 0 -boeotia%1:15:00:: 08789243 1 0 -boeotian%3:01:00:: 03017468 1 1 -boer%1:18:00:: 09635635 1 0 -boer_war%1:04:00:: 01303252 1 0 -boethius%1:18:00:: 10854777 1 0 -boeuf%1:13:00:: 07663592 1 0 -boeuf_bourguignonne%1:13:00:: 07862461 1 0 -boeuf_fondu_bourguignon%1:13:00:: 07868045 1 0 -boffin%1:18:00:: 09863339 1 0 -boffo%5:00:00:successful:00 02331721 1 0 -bofors_gun%1:06:00:: 02863536 1 0 -bog%1:17:00:: 09225943 1 1 -bog%2:30:00:: 00363916 1 1 -bog%2:30:01:: 00363742 2 0 -bog_asphodel%1:20:00:: 12463743 1 0 -bog_aster%1:20:00:: 11935953 1 0 -bog_bilberry%1:20:00:: 12248780 1 0 -bog_candles%1:20:00:: 12066018 1 0 -bog_down%2:30:00:: 00363916 4 0 -bog_down%2:30:01:: 00363742 1 1 -bog_down%2:38:00:: 01834896 3 0 -bog_down%2:38:01:: 01835103 2 0 -bog_hemp%1:20:00:: 12393086 1 0 -bog_kalmia%1:20:00:: 12237855 1 0 -bog_laurel%1:20:00:: 12237855 1 0 -bog_moss%1:20:00:: 11542137 1 0 -bog_myrtle%1:20:00:: 12484784 1 0 -bog_pimpernel%1:20:00:: 12092629 1 0 -bog_plant%1:20:00:: 13122364 1 0 -bog_rein_orchid%1:20:00:: 12066018 1 0 -bog_rhubarb%1:20:00:: 12002428 1 0 -bog_rose%1:20:00:: 12046028 1 0 -bog_rosemary%1:20:00:: 12229651 1 0 -bog_soil%1:27:00:: 14782403 1 0 -bog_spavin%1:26:00:: 14273183 1 0 -bog_star%1:20:00:: 12801781 1 0 -bog_whortleberry%1:20:00:: 12248780 1 0 -bogart%1:18:00:: 10855047 1 0 -bogartian%3:01:00:: 03029274 1 1 -bogbean%1:20:00:: 12484784 1 0 -bogey%1:06:00:: 02863638 3 0 -bogey%1:18:00:: 09542258 1 1 -bogey%1:23:00:: 13595414 2 0 -bogey%2:35:00:: 01598921 1 2 -bogeyman%1:18:00:: 09488117 1 0 -boggle%2:31:00:: 00726153 3 0 -boggle%2:38:00:: 01910779 1 1 -boggle%2:42:00:: 02640311 2 0 -boggy%5:00:00:wet:01 02548066 1 0 -bogie%1:06:00:: 02863638 2 0 -bogie%1:18:00:: 09542258 1 0 -bogmat%1:20:00:: 11796573 1 0 -bogota%1:15:00:: 08732979 1 0 -bogus%5:00:00:counterfeit:00 01117477 1 3 -bogy%1:06:00:: 02863638 1 1 -bogy%1:18:00:: 09542258 2 0 -bohemia%1:14:00:: 08241309 2 0 -bohemia%1:15:00:: 08758882 1 0 -bohemian%1:18:00:: 09863500 3 0 -bohemian%1:18:01:: 09863620 2 0 -bohemian%1:18:02:: 10154186 1 0 -bohemian%3:01:00:: 02667426 1 0 -bohemian%5:00:00:unconventional:00 00606859 2 0 -bohemian_waxwing%1:05:00:: 01603953 1 0 -bohemianism%1:04:00:: 01223672 1 0 -bohme%1:18:00:: 10854397 1 0 -bohr%1:18:00:: 10855200 1 0 -bohr_theory%1:09:00:: 06103422 1 0 -bohrium%1:27:00:: 14631757 1 0 -boidae%1:05:00:: 01741744 1 0 -boil%1:07:00:: 05014099 2 0 -boil%1:26:00:: 14183210 1 0 -boil%2:30:00:: 00328128 2 4 -boil%2:30:01:: 00375021 1 4 -boil%2:30:02:: 00374668 3 3 -boil%2:37:00:: 01767612 5 0 -boil%2:38:00:: 01885430 4 0 -boil_down%2:30:00:: 00236999 3 0 -boil_down%2:30:01:: 00237259 2 0 -boil_down%2:30:03:: 00237704 1 1 -boil_over%2:30:00:: 00375268 1 0 -boil_smut%1:20:00:: 13067330 1 0 -boiled%5:00:00:cooked:00 00616822 1 0 -boiled_dinner%1:13:00:: 07862946 1 0 -boiled_egg%1:13:00:: 07841495 1 0 -boiler%1:06:00:: 02863750 1 1 -boiler%1:06:01:: 03612814 2 0 -boilerplate%1:06:00:: 02863995 2 0 -boilerplate%1:10:00:: 07075006 1 0 -boilers_suit%1:06:00:: 03863262 1 0 -boilersuit%1:06:00:: 03863262 1 0 -boiling%1:04:00:: 00247792 2 0 -boiling%1:22:00:: 13440779 1 1 -boiling%4:02:00:: 00003846 1 0 -boiling_point%1:07:00:: 04629030 2 0 -boiling_point%1:07:01:: 05014099 1 0 -boiling_water_reactor%1:06:00:: 02864122 1 0 -boise%1:15:00:: 09081560 1 0 -boisterous%5:00:00:disorderly:00 01666489 1 1 -boisterous%5:00:00:spirited:00 02279360 2 0 -boisterous%5:00:00:stormy:00 00304949 3 0 -boisterously%4:02:00:: 00221287 1 0 -boisterousness%1:07:00:: 04985064 2 0 -boisterousness%1:26:00:: 14523669 1 0 -bok_choi%1:13:00:: 07714448 2 0 -bok_choi%1:20:00:: 11879054 1 0 -bok_choy%1:13:00:: 07714448 2 0 -bok_choy%1:20:00:: 11879054 1 0 -bokkos%1:10:00:: 06983114 1 0 -bokmaal%1:10:00:: 06954461 1 0 -bokmal%1:10:00:: 06954461 1 0 -bola%1:06:00:: 02864342 2 0 -bola%1:06:01:: 02865351 1 0 -bola_tie%1:06:00:: 02865351 1 0 -bolanci%1:10:00:: 06982855 1 0 -bolbitis%1:20:00:: 13202933 1 0 -bold%1:10:00:: 06827219 1 0 -bold%3:00:00:: 00249721 1 9 -bold%5:00:00:conspicuous:00 00579881 2 3 -bold%5:00:00:steep:00 01145422 3 0 -bold_face%1:10:00:: 06827219 1 0 -bold_fmri%1:04:00:: 00902975 1 0 -boldface%1:10:00:: 06827219 1 0 -boldface%2:36:00:: 01748916 1 0 -boldly%4:02:00:: 00185051 1 2 -boldness%1:07:00:: 04858785 1 1 -boldness%1:07:01:: 04707252 3 0 -boldness%1:07:02:: 04838210 2 0 -bole%1:10:00:: 06982855 3 0 -bole%1:20:00:: 13165815 2 0 -bole%1:27:00:: 14990864 1 0 -bolero%1:04:00:: 00530755 3 0 -bolero%1:06:00:: 02864504 2 0 -bolero%1:10:00:: 07055103 1 0 -boletaceae%1:20:00:: 13054211 1 0 -bolete%1:20:00:: 13054560 1 0 -boletellus%1:20:00:: 13059852 1 0 -boletellus_russellii%1:20:00:: 13060017 1 0 -boletus%1:20:00:: 13055009 1 0 -boletus_chrysenteron%1:20:00:: 13055423 1 0 -boletus_edulis%1:20:00:: 13055577 1 0 -boletus_frostii%1:20:00:: 13055792 1 0 -boletus_luridus%1:20:00:: 13055949 1 0 -boletus_mirabilis%1:20:00:: 13056135 1 0 -boletus_pallidus%1:20:00:: 13056349 1 0 -boletus_pulcherrimus%1:20:00:: 13056607 1 0 -boletus_pulverulentus%1:20:00:: 13056799 1 0 -boletus_roxanae%1:20:00:: 13057054 1 0 -boletus_subvelutipes%1:20:00:: 13057242 1 0 -boletus_variipes%1:20:00:: 13057422 1 0 -boletus_zelleri%1:20:00:: 13057639 1 0 -boleyn%1:18:00:: 10855431 1 0 -bolide%1:19:00:: 11484260 1 0 -bolingbroke%1:18:00:: 11041814 1 0 -bolivar%1:18:00:: 10855604 2 0 -bolivar%1:23:00:: 13666790 1 0 -bolivia%1:04:00:: 00497321 2 0 -bolivia%1:15:00:: 08852843 1 0 -bolivian%1:18:00:: 09694664 1 0 -bolivian%3:01:00:: 02967485 1 0 -bolivian_monetary_unit%1:23:00:: 13690911 1 0 -boliviano%1:23:00:: 13691022 1 0 -boll%1:20:00:: 11685512 1 0 -boll_weevil%1:05:00:: 02178717 1 0 -bollard%1:06:00:: 02864593 1 0 -bollix%2:41:00:: 02527651 1 0 -bollix_up%2:41:00:: 02527651 1 0 -bollock%1:06:00:: 02864878 2 0 -bollock%1:08:00:: 05524615 1 0 -bollocks%2:41:00:: 02527651 1 0 -bollocks_up%2:41:00:: 02527651 1 0 -bollworm%1:05:00:: 02310000 1 0 -bollywood%1:14:00:: 08068375 1 0 -bolo%1:06:00:: 02864987 2 0 -bolo%1:06:01:: 02865351 1 1 -bolo_knife%1:06:00:: 02864987 1 0 -bolo_tie%1:06:00:: 02865351 1 0 -bologna%1:13:00:: 07676273 2 0 -bologna%1:15:00:: 08806458 1 0 -bologna_sausage%1:13:00:: 07676273 1 0 -bolognese_pasta_sauce%1:13:00:: 07830986 1 0 -bologram%1:06:00:: 02865108 1 0 -bolograph%1:06:00:: 02865108 1 0 -bolographic%3:01:00:: 02667550 1 0 -bolometer%1:06:00:: 02865214 1 0 -bolometric%3:01:00:: 02667637 1 0 -boloney%1:10:00:: 06611147 1 0 -bolshevik%1:18:00:: 09863749 1 1 -bolshevik%1:18:01:: 09863936 2 0 -bolshevik%3:01:00:: 02875499 1 0 -bolshevise%2:30:00:: 00409281 1 0 -bolshevism%1:14:00:: 08368308 1 0 -bolshevist%1:18:00:: 09863936 1 0 -bolshevist%3:01:00:: 02875499 1 0 -bolshevistic%3:01:00:: 02875499 1 0 -bolshevize%2:30:00:: 00409281 1 0 -bolshie%1:18:00:: 09863749 1 0 -bolshy%1:18:00:: 09863749 1 0 -bolshy%5:00:00:stubborn:00 02327315 1 0 -bolster%1:06:00:: 02865509 1 1 -bolster%2:30:00:: 00321486 3 0 -bolster%2:30:01:: 00223374 1 3 -bolster%2:35:00:: 01219282 2 0 -bolster_up%2:30:00:: 00223374 1 0 -bolt%1:04:00:: 00204943 7 0 -bolt%1:04:01:: 00555983 4 1 -bolt%1:06:00:: 02865665 6 0 -bolt%1:06:01:: 02865931 3 1 -bolt%1:06:02:: 02866106 2 1 -bolt%1:06:03:: 02866286 5 0 -bolt%1:19:00:: 11519121 1 2 -bolt%2:30:00:: 00436304 7 0 -bolt%2:34:00:: 01173933 6 0 -bolt%2:34:01:: 01202651 3 1 -bolt%2:35:00:: 01348838 2 2 -bolt%2:38:00:: 01966039 1 2 -bolt%2:38:01:: 02011040 5 0 -bolt%2:38:02:: 02073714 4 0 -bolt%4:02:00:: 00277585 2 0 -bolt%4:02:01:: 00194578 1 1 -bolt-hole%1:17:00:: 09226367 1 0 -bolt_cutter%1:06:00:: 02866386 1 0 -bolt_down%2:34:00:: 01174099 2 0 -bolt_down%2:34:01:: 01202374 1 0 -bolt_of_lightning%1:19:00:: 11519121 1 0 -bolt_out%2:38:00:: 02011040 1 1 -bolti%1:05:00:: 02586238 1 0 -boltonia%1:20:00:: 11941261 1 0 -boltzmann%1:18:00:: 10855834 1 0 -boltzmann's_constant%1:23:00:: 13585997 1 0 -boltzmann_distribution_law%1:09:00:: 05877178 1 0 -bolus%1:06:00:: 02866474 2 0 -bolus%1:25:00:: 13901490 1 0 -bolzano%1:15:00:: 08804662 1 0 -bomarea%1:20:00:: 12419592 1 0 -bomarea_edulis%1:20:00:: 12419878 1 0 -bomarea_salsilla%1:20:00:: 12420124 1 0 -bomb%1:06:00:: 02866578 1 8 -bomb%1:06:01:: 02867592 2 1 -bomb%1:11:00:: 07365193 3 0 -bomb%2:33:00:: 01131902 1 3 -bomb%2:41:00:: 02523521 2 0 -bomb_blast%1:11:00:: 07408288 1 0 -bomb_calorimeter%1:06:00:: 02867592 1 1 -bomb_out%2:33:00:: 01132541 1 0 -bomb_rack%1:06:00:: 02868429 1 0 -bomb_shelter%1:06:00:: 02868638 1 1 -bomb_site%1:15:00:: 08516431 1 0 -bomb_up%2:35:00:: 01488463 1 0 -bombacaceae%1:20:00:: 12188985 1 0 -bombard%1:06:00:: 02867267 1 0 -bombard%2:30:00:: 00291624 4 0 -bombard%2:32:00:: 00863579 3 0 -bombard%2:33:00:: 01131902 2 0 -bombard%2:35:00:: 01507914 1 0 -bombardier%1:18:00:: 09864252 2 0 -bombardier%1:18:01:: 09864429 1 0 -bombardier_beetle%1:05:00:: 02167505 1 0 -bombardment%1:04:00:: 00987863 2 0 -bombardment%1:04:01:: 00978413 4 0 -bombardment%1:04:02:: 00978580 3 0 -bombardment%1:10:00:: 07083441 1 0 -bombardon%1:06:00:: 02867267 2 0 -bombardon%1:06:01:: 03512030 1 0 -bombast%1:10:00:: 07087777 1 1 -bombastic%5:00:00:rhetorical:00 02016881 1 0 -bombastically%4:02:00:: 00269588 2 0 -bombastically%4:02:01:: 00269726 1 0 -bombax%1:20:00:: 12189293 1 0 -bombax_ceiba%1:20:00:: 12189429 1 0 -bombax_malabarica%1:20:00:: 12189429 1 0 -bombay%1:15:00:: 08903872 1 1 -bombay_ceiba%1:20:00:: 12190410 1 0 -bombay_hemp%1:20:00:: 12178129 1 0 -bombazine%1:06:00:: 02867401 1 0 -bomber%1:06:00:: 02867715 1 9 -bomber%1:13:00:: 07697825 3 0 -bomber%1:18:00:: 09864536 2 0 -bomber_aircrew%1:14:00:: 08273531 1 0 -bomber_crew%1:14:00:: 08273531 1 0 -bomber_harris%1:18:00:: 11030395 1 0 -bomber_jacket%1:06:00:: 02867966 1 0 -bombie%1:06:00:: 02868068 1 0 -bombilate%2:39:00:: 02182109 1 0 -bombilation%1:11:00:: 07378234 1 0 -bombina%1:05:00:: 01648494 1 0 -bombina_bombina%1:05:00:: 01648620 1 0 -bombinate%2:39:00:: 02182109 1 0 -bombination%1:11:00:: 07378234 1 0 -bombing%1:04:00:: 00978413 1 2 -bombing%1:04:01:: 00979742 2 0 -bombing_run%1:04:00:: 00978764 1 0 -bomblet%1:06:00:: 02868240 1 0 -bombproof%1:06:00:: 02868638 1 3 -bombproof%2:30:00:: 00166220 1 0 -bombproof%5:00:00:invulnerable:00 02525732 1 0 -bombshell%1:06:00:: 02868546 3 0 -bombshell%1:11:00:: 07298396 2 0 -bombshell%1:18:00:: 09864632 1 0 -bombsight%1:06:00:: 02868870 1 0 -bombus%1:05:00:: 02209508 1 4 -bombycid%1:05:00:: 02300173 1 0 -bombycid_moth%1:05:00:: 02300173 1 0 -bombycidae%1:05:00:: 02300018 1 0 -bombycilla%1:05:00:: 01603478 1 0 -bombycilla_cedrorun%1:05:00:: 01603812 1 0 -bombycilla_garrulus%1:05:00:: 01603953 1 0 -bombycillidae%1:05:00:: 01603316 1 0 -bombyliidae%1:05:00:: 02195693 1 0 -bombyx%1:05:00:: 02300378 1 0 -bombyx_mori%1:05:00:: 02300554 1 0 -bon_mot%1:10:00:: 06776783 1 0 -bon_ton%1:14:00:: 08387930 1 0 -bon_vivant%1:18:00:: 10061656 1 0 -bon_voyage%1:10:00:: 06629858 1 0 -bona_fide%5:00:00:genuine:00 01115635 2 0 -bona_fide%5:00:00:sincere:00 02179707 1 0 -bonaire%1:15:00:: 08748917 1 0 -bonanza%1:11:00:: 07477587 2 0 -bonanza%1:17:00:: 09226498 1 0 -bonaparte%1:18:00:: 11200276 1 0 -bonasa%1:05:00:: 01797767 1 0 -bonasa_umbellus%1:05:00:: 01797886 1 0 -bonavist%1:20:00:: 12537569 1 0 -bonbon%1:13:00:: 07599649 1 0 -bonce%1:08:00:: 05539454 1 0 -bond%1:06:00:: 04181228 5 1 -bond%1:06:01:: 02755352 6 1 -bond%1:07:00:: 04935528 10 0 -bond%1:18:00:: 10855987 8 0 -bond%1:18:01:: 09590377 9 0 -bond%1:19:00:: 11436283 1 15 -bond%1:21:02:: 13417410 2 13 -bond%1:21:03:: 13350976 4 1 -bond%1:24:00:: 13792183 3 6 -bond%1:27:00:: 14782529 7 0 -bond%2:35:00:: 01356750 1 1 -bond%2:35:01:: 01607072 4 0 -bond%2:40:00:: 02351925 3 0 -bond%2:41:13:: 02538086 2 0 -bond-trading_activity%1:04:00:: 00079603 1 0 -bond_certificate%1:21:00:: 13417410 1 0 -bond_issue%1:21:00:: 13337471 1 0 -bond_paper%1:27:00:: 14782529 1 0 -bond_rating%1:09:00:: 05738404 1 0 -bond_servant%1:18:00:: 09865398 1 0 -bond_trading%1:04:00:: 00079603 1 0 -bondable%5:00:00:adhesive:00 00053248 2 0 -bondable%5:00:00:attachable:00 00161684 1 0 -bondage%1:04:00:: 00843681 3 0 -bondage%1:26:00:: 13997253 2 0 -bondage%1:26:01:: 13997529 1 0 -bonded_labor%1:26:00:: 13997778 1 0 -bonderise%2:35:00:: 01266457 1 0 -bonderize%2:35:00:: 01266457 1 0 -bondholder%1:18:00:: 09864761 1 0 -bonding%1:04:00:: 00148653 3 0 -bonding%1:09:00:: 05665769 2 0 -bonding%1:24:00:: 13781820 1 0 -bondmaid%1:18:00:: 09865068 2 0 -bondmaid%1:18:01:: 09865162 1 0 -bondman%1:18:00:: 09864891 2 0 -bondman%1:18:01:: 09864968 1 0 -bondsman%1:18:00:: 09865279 2 0 -bondsman%1:18:01:: 09864891 1 1 -bondsman%1:18:02:: 09864968 3 0 -bondswoman%1:18:00:: 09865279 1 0 -bondswoman%1:18:01:: 09865068 3 0 -bondswoman%1:18:02:: 09865162 2 0 -bonduc%1:20:01:: 12488454 2 0 -bonduc%1:20:02:: 12496427 1 0 -bonduc_nut%1:20:00:: 11689197 1 0 -bonduc_tree%1:20:00:: 12488454 1 0 -bondwoman%1:18:00:: 09865068 2 0 -bondwoman%1:18:01:: 09865162 1 0 -bone%1:07:00:: 04961331 3 0 -bone%1:08:00:: 05269901 1 10 -bone%1:27:00:: 14757848 2 3 -bone%2:30:00:: 00197423 2 0 -bone%2:31:00:: 00605783 1 0 -bone%5:00:01:bony:00 00295924 1 0 -bone-ash_cup%1:06:00:: 02868975 1 0 -bone-covered%5:00:00:armored:02 00147052 1 0 -bone-dry%5:00:00:dry:01 02552646 1 0 -bone-forming_cell%1:08:00:: 05448149 1 0 -bone-headed_dinosaur%1:05:00:: 01703011 1 0 -bone-idle%5:00:00:idle:00 00294463 1 0 -bone-lazy%5:00:00:idle:00 00294463 1 0 -bone_age%1:07:00:: 04924674 1 0 -bone_ash%1:27:00:: 14782689 1 0 -bone_black%1:27:00:: 14668895 1 0 -bone_cell%1:08:00:: 05447599 1 0 -bone_char%1:27:00:: 14668895 1 0 -bone_china%1:06:00:: 02869155 1 0 -bone_dry%5:00:00:dry:01 02552646 1 0 -bone_fat%1:27:00:: 14783038 1 0 -bone_marrow%1:08:00:: 05285623 1 2 -bone_marrow%1:13:00:: 07873057 2 0 -bone_of_contention%1:10:00:: 06600139 1 0 -bone_oil%1:27:01:: 14783251 2 0 -bone_oil%1:27:02:: 14783436 1 0 -bone_spavin%1:26:00:: 14273277 1 0 -bone_up%2:31:00:: 00605783 1 0 -boned%5:00:01:bony:00 00296061 2 0 -boned%5:00:02:boneless:00 00296482 1 0 -bonefish%1:05:00:: 02542432 1 0 -bonehead%1:18:00:: 10039663 1 0 -boneheaded%5:00:00:stupid:00 00440292 1 0 -boneless%3:00:00:: 00296354 1 0 -bonelet%1:08:00:: 05277728 1 0 -bonelike%5:00:00:bony:00 00296186 1 0 -bonemeal%1:27:00:: 14782833 1 1 -boner%1:04:00:: 00074790 1 0 -bones%1:06:00:: 02869249 1 0 -boneset%1:20:01:: 11968931 2 0 -boneset%1:20:02:: 12822955 1 0 -bonesetter%1:18:00:: 09865547 1 0 -boneshaker%1:06:00:: 02869563 1 0 -bonete%1:17:00:: 09226591 1 0 -boney%3:00:00:: 00295657 1 0 -boney%5:00:00:thin:03 00990192 2 0 -bonfire%1:11:00:: 07303335 1 3 -bonfire_night%1:28:00:: 15159139 1 0 -bong%1:11:00:: 07376454 1 0 -bong%2:39:00:: 02184503 1 0 -bongo%1:05:00:: 02424085 2 0 -bongo%1:06:00:: 02869737 1 0 -bongo_drum%1:06:00:: 02869737 1 0 -bonheur%1:12:00:: 07527061 1 0 -bonhoeffer%1:18:00:: 10856215 1 0 -bonhomie%1:07:00:: 04654652 1 0 -boniface%1:18:00:: 10856486 1 0 -boniface%1:18:01:: 10186774 2 0 -boniface_viii%1:18:00:: 10856799 1 0 -boniness%1:07:00:: 05001867 1 0 -bonito%1:05:01:: 02627835 3 0 -bonito%1:05:02:: 02629230 2 0 -bonito%1:13:00:: 07781022 1 0 -bonito_shark%1:05:00:: 01484562 1 0 -bonk%2:35:00:: 01397088 2 0 -bonk%2:35:01:: 01426397 1 0 -bonkers%5:00:00:insane:00 02074929 1 0 -bonn%1:15:00:: 08772137 1 1 -bonnet%1:06:00:: 02869837 1 3 -bonnet%1:06:01:: 03530910 2 0 -bonnet%2:29:00:: 00047511 1 0 -bonnet_macaque%1:05:00:: 02487675 1 0 -bonnet_monkey%1:05:00:: 02487675 1 0 -bonnet_shark%1:05:00:: 01495006 1 0 -bonnethead%1:05:00:: 01495006 1 0 -bonney%1:18:00:: 10857001 1 0 -bonnie%5:00:00:beautiful:00 00218440 1 0 -bonnily%4:02:00:: 00498933 1 0 -bonny%5:00:00:beautiful:00 00218440 1 0 -bonobo%1:05:00:: 02482650 1 0 -bonsai%1:20:00:: 13111881 1 0 -bontemps%1:18:00:: 10857159 1 0 -bonus%1:09:00:: 05829656 1 1 -bonus%1:21:00:: 13273154 2 0 -bonxie%1:05:00:: 02044778 1 0 -bony%3:00:00:: 00295657 3 0 -bony%3:01:00:: 03138224 2 0 -bony%5:00:00:thin:03 00988988 1 2 -bony-plated%5:00:00:armored:01 00144020 1 0 -bony_fish%1:05:00:: 02514825 1 0 -bony_labyrinth%1:08:00:: 05321917 1 0 -bonyness%1:07:00:: 05001867 1 0 -bonzer%5:00:00:extraordinary:00 01675931 1 0 -boo%1:10:00:: 07123870 1 0 -boo%2:32:00:: 00862225 1 1 -boo-boo%1:04:00:: 00074790 1 0 -boob%1:08:00:: 05554405 2 0 -boob%1:18:00:: 10039391 1 0 -boob%2:41:00:: 02566227 1 0 -boob_tube%1:06:00:: 04405907 1 0 -booboisie%1:14:00:: 08181820 1 0 -booby%1:05:00:: 02053584 2 0 -booby%1:18:00:: 10039391 1 1 -booby_hatch%1:06:00:: 02820798 1 0 -booby_prize%1:06:00:: 02869965 1 0 -booby_trap%1:06:00:: 03639675 1 2 -booby_trap%1:09:00:: 05688990 2 0 -boocercus_eurycerus%1:05:00:: 02424085 1 0 -boodle%1:04:00:: 00493308 2 0 -boodle%1:21:00:: 13385216 1 0 -booger%1:08:00:: 05416128 2 0 -booger%1:18:00:: 09488117 1 0 -boogeyman%1:18:00:: 09488117 1 0 -boogie%1:10:00:: 07063249 1 0 -boogie%2:38:00:: 01897203 1 0 -boogie-woogie%1:10:00:: 07063249 1 0 -boojum_tree%1:20:00:: 12382233 1 0 -book%1:06:00:: 02870092 2 10 -book%1:06:02:: 02870526 11 0 -book%1:10:00:: 06410904 1 46 -book%1:10:01:: 07009946 4 1 -book%1:10:02:: 06636524 3 2 -book%1:10:03:: 06394865 10 0 -book%1:10:04:: 06431740 9 0 -book%1:10:05:: 06461609 8 0 -book%1:14:00:: 07954211 7 0 -book%1:14:01:: 07954441 6 0 -book%1:21:00:: 13404248 5 0 -book%2:31:00:: 00678777 1 3 -book%2:41:00:: 02498136 3 1 -book%2:41:01:: 02498320 2 1 -book%2:41:03:: 02599754 4 0 -book_agent%1:18:00:: 09865672 1 0 -book_bag%1:06:00:: 02870676 1 0 -book_binding%1:06:00:: 02840619 1 0 -book_fair%1:04:00:: 01118338 2 0 -book_fair%1:14:00:: 08408418 1 0 -book_jacket%1:10:00:: 07248320 1 1 -book_louse%1:05:00:: 02261419 1 0 -book_lover%1:18:00:: 09852679 1 0 -book_lung%1:08:00:: 05528245 1 0 -book_matches%1:06:00:: 04126980 1 0 -book_of_account%1:21:00:: 13404248 1 0 -book_of_amos%1:10:00:: 06439560 1 0 -book_of_baruch%1:10:00:: 06459323 1 0 -book_of_common_prayer%1:10:00:: 06457171 1 0 -book_of_daniel%1:10:00:: 06438995 1 0 -book_of_deuteronomy%1:10:00:: 06433475 1 0 -book_of_ecclesiastes%1:10:00:: 06437531 1 0 -book_of_esther%1:10:00:: 06436717 1 0 -book_of_exodus%1:10:00:: 06432715 1 0 -book_of_ezekiel%1:10:00:: 06438748 1 0 -book_of_ezra%1:10:00:: 06436183 1 0 -book_of_facts%1:10:00:: 06417598 1 0 -book_of_genesis%1:10:00:: 06432376 1 0 -book_of_habakkuk%1:10:00:: 06440489 1 0 -book_of_haggai%1:10:00:: 06440937 1 0 -book_of_hosea%1:10:00:: 06439253 1 0 -book_of_instructions%1:10:00:: 06422144 1 0 -book_of_isaiah%1:10:00:: 06438126 1 0 -book_of_jeremiah%1:10:00:: 06438290 1 0 -book_of_job%1:10:00:: 06436939 1 0 -book_of_joel%1:10:00:: 06439408 1 0 -book_of_jonah%1:10:00:: 06439924 1 0 -book_of_joshua%1:10:00:: 06433923 1 0 -book_of_judges%1:10:00:: 06434165 1 0 -book_of_judith%1:10:00:: 06459834 1 0 -book_of_knowledge%1:10:00:: 06427710 1 0 -book_of_lamentations%1:10:00:: 06438477 1 0 -book_of_leviticus%1:10:00:: 06433035 1 0 -book_of_malachi%1:10:00:: 06441464 1 0 -book_of_maps%1:10:00:: 06427086 1 0 -book_of_micah%1:10:00:: 06440102 1 0 -book_of_mormon%1:10:00:: 06455775 1 0 -book_of_nahum%1:10:00:: 06440313 1 0 -book_of_nehemiah%1:10:00:: 06436443 1 0 -book_of_numbers%1:10:00:: 06433249 1 0 -book_of_obadiah%1:10:00:: 06439712 1 0 -book_of_proverbs%1:10:00:: 06437308 1 0 -book_of_psalms%1:10:00:: 06437137 1 0 -book_of_psalms%1:10:01:: 06417467 2 0 -book_of_revelation%1:10:00:: 06447897 1 0 -book_of_ruth%1:10:00:: 06434368 1 0 -book_of_susanna%1:10:00:: 06459016 1 0 -book_of_the_prophet_daniel%1:10:00:: 06438995 1 0 -book_of_tobit%1:10:00:: 06459681 1 0 -book_of_zachariah%1:10:00:: 06441195 1 0 -book_of_zephaniah%1:10:00:: 06440663 1 0 -book_review%1:10:00:: 06410655 1 0 -book_scorpion%1:05:00:: 01771100 1 0 -book_seller%1:18:00:: 09865838 1 0 -book_token%1:10:00:: 06518253 1 0 -book_up%2:32:00:: 00794880 1 0 -book_value%1:21:00:: 13337146 1 0 -bookable%5:00:00:reserved:02 01988565 1 0 -bookbinder%1:18:00:: 09865744 1 0 -bookbindery%1:06:00:: 02870772 1 0 -bookbinding%1:04:00:: 00607374 1 0 -bookcase%1:06:00:: 02870880 1 2 -bookclub%1:14:00:: 08228538 1 0 -bookdealer%1:18:00:: 09865838 1 0 -booked%5:00:00:reserved:02 01988468 1 1 -bookend%1:06:00:: 02871005 1 0 -booker%1:18:00:: 09865954 1 2 -booker_t._washington%1:18:00:: 11375677 1 0 -booker_taliaferro_washington%1:18:00:: 11375677 1 0 -bookfair%1:04:00:: 01118338 2 0 -bookfair%1:14:00:: 08408418 1 0 -bookie%1:18:00:: 09866222 1 0 -booking%1:04:00:: 01218327 2 1 -booking%1:04:01:: 00270919 1 6 -booking_agent%1:18:00:: 09865954 1 0 -booking_clerk%1:18:00:: 09629477 1 0 -bookish%5:00:00:scholarly:00 02084101 1 0 -bookishness%1:07:00:: 04866365 1 0 -bookkeeper%1:18:00:: 09866115 1 0 -bookkeeping%1:04:00:: 00619230 1 0 -booklet%1:10:00:: 06413889 1 0 -booklouse%1:05:00:: 02261419 1 0 -booklover%1:18:00:: 09852679 1 0 -bookmaker%1:18:00:: 09866222 2 0 -bookmaker%1:18:01:: 09866354 1 0 -bookman%1:18:00:: 10557854 1 0 -bookmark%1:06:00:: 02871147 1 0 -bookmarker%1:06:00:: 02871147 1 0 -bookmobile%1:06:00:: 02871314 1 0 -bookplate%1:10:00:: 07272416 1 0 -bookseller%1:18:00:: 09866473 1 0 -bookshelf%1:06:00:: 02871439 1 2 -bookshop%1:06:00:: 02871525 1 0 -bookstall%1:06:00:: 02871525 1 0 -bookstore%1:06:00:: 02871525 1 0 -bookworm%1:18:00:: 09866559 2 0 -bookworm%1:18:01:: 10411356 1 0 -boole%1:18:00:: 10857271 1 0 -boolean%3:01:00:: 02667741 1 0 -boolean_algebra%1:09:00:: 06165000 1 0 -boolean_logic%1:09:00:: 06165000 1 0 -boolean_operation%1:22:00:: 13440935 1 0 -boom%1:06:00:: 02871631 5 0 -boom%1:06:01:: 02871824 4 0 -boom%1:11:01:: 07377682 1 2 -boom%1:11:02:: 07477587 3 0 -boom%1:26:00:: 14488813 2 0 -boom%2:30:00:: 00310386 5 0 -boom%2:35:00:: 01401772 2 1 -boom%2:39:00:: 02187510 1 5 -boom%2:39:01:: 02174662 4 0 -boom%2:43:00:: 02770535 3 0 -boom_box%1:06:00:: 03436182 1 0 -boom_out%2:39:00:: 02174662 1 0 -boom_town%1:15:00:: 08671293 1 0 -boomer%1:18:00:: 09828403 1 0 -boomerang%1:04:00:: 00073032 2 0 -boomerang%1:06:00:: 02871963 1 0 -boomerang%2:38:00:: 02005778 1 1 -booming%5:00:00:full:01 01456977 2 0 -booming%5:00:00:successful:00 02331857 1 0 -boon%1:26:00:: 14474264 1 1 -boon%5:00:00:close:02 00452020 1 1 -boondocks%1:15:00:: 08502672 1 0 -boondoggle%1:04:00:: 00041614 1 0 -boondoggle%2:41:00:: 02447247 1 0 -boone%1:18:00:: 10857418 1 0 -boor%1:18:00:: 10410815 1 0 -boorish%5:00:00:unrefined:01 01949859 1 0 -boorishly%4:02:00:: 00279763 1 0 -boorishness%1:07:01:: 04817788 2 0 -boorishness%1:07:02:: 04914576 1 0 -boost%1:04:00:: 01211019 1 3 -boost%1:04:01:: 01211339 3 0 -boost%1:07:00:: 05110408 2 1 -boost%2:30:00:: 00497061 4 1 -boost%2:30:02:: 00310937 2 2 -boost%2:35:00:: 01516071 5 0 -boost%2:38:00:: 01975912 1 3 -boost%2:41:00:: 02554922 3 1 -boost_up%2:38:00:: 01873784 1 1 -booster%1:06:00:: 02872172 6 0 -booster%1:06:01:: 02872333 5 0 -booster%1:06:02:: 02872529 4 0 -booster%1:18:00:: 09866661 3 0 -booster%1:18:01:: 10482220 2 0 -booster%1:18:02:: 10677713 1 0 -booster_amplifier%1:06:00:: 02872529 1 0 -booster_cable%1:06:00:: 03604843 1 0 -booster_dose%1:06:00:: 02872172 1 0 -booster_rocket%1:06:00:: 02872333 1 0 -booster_shot%1:06:00:: 02872172 1 0 -booster_station%1:06:00:: 02872529 1 0 -booster_unit%1:06:00:: 02872333 1 0 -boot%1:04:00:: 00136329 7 0 -boot%1:04:01:: 00422261 6 0 -boot%1:06:00:: 02872752 1 13 -boot%1:06:01:: 02873244 2 1 -boot%1:06:02:: 02873363 5 0 -boot%1:06:03:: 02873520 4 0 -boot%1:12:00:: 07528470 3 0 -boot%2:29:00:: 00098346 2 0 -boot%2:35:00:: 01372556 1 0 -boot-shaped%5:00:00:formed:00 02145598 1 0 -boot_camp%1:06:00:: 02873623 1 0 -boot_maker%1:18:00:: 09867069 1 0 -boot_out%2:35:00:: 01468576 2 0 -boot_out%2:41:00:: 02401809 1 0 -boot_sale%1:04:00:: 01118614 1 0 -bootblack%1:18:00:: 09866817 1 0 -bootboys%1:14:00:: 08371200 1 0 -booted%5:00:00:shod:00 02156111 1 1 -booted_armillaria%1:20:00:: 13231919 1 0 -bootee%1:06:00:: 02873733 1 0 -bootes%1:17:00:: 09226738 1 0 -booth%1:06:00:: 02873839 2 1 -booth%1:06:01:: 02874086 4 0 -booth%1:06:02:: 02874214 1 1 -booth%1:18:00:: 10857540 3 0 -boothose%1:06:00:: 02874336 1 0 -bootie%1:06:00:: 02873733 1 0 -bootjack%1:06:00:: 02874442 1 0 -bootlace%1:06:00:: 02874537 1 0 -bootleg%1:06:00:: 02874642 2 0 -bootleg%1:13:00:: 07902520 1 0 -bootleg%2:36:00:: 01625985 2 0 -bootleg%2:40:00:: 02242049 1 0 -bootleg%5:00:00:illegal:00 01402580 1 0 -bootlegger%1:18:00:: 09866922 1 2 -bootlegging%1:04:00:: 00092663 1 1 -bootlegging%1:04:01:: 00092847 2 0 -bootless%5:00:00:unproductive:00 01866812 1 0 -bootlick%2:32:00:: 00880978 1 0 -bootlicker%1:18:00:: 09800631 1 0 -bootlicking%5:00:00:insincere:00 02181231 1 0 -bootlicking%5:00:00:servile:00 00790394 2 0 -bootmaker%1:18:00:: 09867069 1 0 -bootstrap%1:06:00:: 02874750 1 0 -bootstrap%2:41:00:: 02552052 1 0 -boott's_goldenrod%1:20:00:: 12018014 1 0 -booty%1:21:00:: 13262663 1 1 -booyong%1:20:00:: 12199790 1 0 -booze%1:13:00:: 07901587 1 1 -booze%2:34:00:: 01171183 1 0 -booze-up%1:04:00:: 00511041 1 0 -boozer%1:18:00:: 09782167 1 0 -boozing%1:04:00:: 00748515 1 0 -boozy%5:00:00:intoxicated:00 00798491 1 0 -bop%1:10:00:: 07063101 2 0 -bop%1:14:00:: 08141664 1 0 -bop%2:35:00:: 01397088 2 0 -bop%2:38:00:: 01895263 1 0 -bopeep%1:04:00:: 00487072 1 0 -boracic%3:01:00:: 03050870 1 0 -boracic_acid%1:27:00:: 14783670 1 0 -borage%1:13:00:: 07816398 2 0 -borage%1:20:00:: 12816508 1 0 -borage_family%1:20:00:: 12815925 1 0 -boraginaceae%1:20:00:: 12815925 1 0 -borago%1:20:00:: 12816359 1 0 -borago_officinalis%1:20:00:: 12816508 1 0 -borassus%1:20:00:: 12585512 1 0 -borassus_flabellifer%1:20:00:: 12585629 1 0 -borate%1:27:00:: 14783588 1 1 -borated%3:01:00:: 02667973 1 0 -borax%1:27:00:: 14669084 1 0 -bordeaux%1:13:00:: 07895237 2 0 -bordeaux%1:15:00:: 08934532 1 0 -bordeaux_mixture%1:06:00:: 02874876 1 0 -bordeaux_wine%1:13:00:: 07895237 1 0 -bordelaise%1:13:00:: 07835823 1 0 -bordello%1:06:00:: 04581595 1 0 -border%1:06:00:: 02875013 5 0 -border%1:06:01:: 03780247 4 0 -border%1:15:00:: 08512736 1 5 -border%1:15:01:: 08565701 3 1 -border%1:25:00:: 13903387 2 1 -border%2:35:00:: 01466978 5 0 -border%2:35:01:: 01467370 1 3 -border%2:35:02:: 01586850 3 1 -border%2:40:00:: 02361600 4 0 -border%2:42:00:: 02710673 2 1 -border_collie%1:05:00:: 02106166 1 0 -border_district%1:15:00:: 08513163 1 0 -border_on%2:42:00:: 02703952 1 3 -border_patrol%1:14:00:: 08328876 1 0 -border_patrolman%1:18:00:: 09867311 1 1 -border_terrier%1:05:00:: 02093754 1 0 -bordered%3:00:00:: 00257742 1 0 -borderer%1:18:00:: 09867154 1 0 -borderland%1:15:00:: 08513163 1 0 -borderline%1:15:00:: 08512736 1 0 -borderline%5:00:00:minimal:00 01496311 1 1 -borderline_intelligence%1:24:00:: 13822364 1 0 -borderline_schizophrenia%1:26:00:: 14398929 1 0 -bore%1:06:00:: 02875233 4 0 -bore%1:07:00:: 05103283 3 0 -bore%1:11:00:: 07403920 2 0 -bore%1:18:00:: 09867437 1 0 -bore%2:35:00:: 01443021 2 4 -bore%2:37:00:: 01821884 1 7 -bore-hole%1:06:00:: 02875233 1 0 -bore_bit%1:06:00:: 02875436 1 0 -boreal%3:01:00:: 03133413 2 0 -boreal%3:01:01:: 03133530 1 0 -boreal%5:00:00:northern:01 01604453 3 0 -boreas%1:18:00:: 09556915 2 0 -boreas%1:19:00:: 11487950 1 0 -borecole%1:20:00:: 11876976 1 0 -bored%5:00:00:tired:00 02432682 1 1 -bored%5:00:00:uninterested:00 01343200 2 1 -boredom%1:12:00:: 07539790 1 7 -borer%1:05:00:: 01923025 2 0 -borer%1:06:00:: 02875436 1 0 -borges%1:18:00:: 10857697 1 0 -borgia%1:18:00:: 10880024 1 0 -borgia%1:18:01:: 10813204 4 0 -borgia%1:18:02:: 10857849 3 0 -borgia%1:18:03:: 10858018 2 0 -boric%3:01:00:: 03050870 1 0 -boric_acid%1:27:00:: 14783670 2 0 -boric_acid%1:27:01:: 14783808 1 0 -boring%1:04:00:: 00923130 2 0 -boring%1:04:01:: 00942799 1 0 -boring%5:00:00:uninteresting:00 01345307 1 2 -boringly%4:02:00:: 00215048 1 0 -boringness%1:07:00:: 05206006 1 0 -boris_fyodorovich_godunov%1:18:00:: 11003599 1 0 -boris_godunov%1:18:00:: 11003599 1 0 -boris_karloff%1:18:00:: 11096801 1 0 -boris_leonidovich_pasternak%1:18:00:: 11224654 1 0 -boris_pasternak%1:18:00:: 11224654 1 0 -boris_spassky%1:18:00:: 11309772 1 0 -boris_vasilevich_spassky%1:18:00:: 11309772 1 0 -born%1:18:00:: 10858164 1 0 -born%3:00:00:: 01733462 1 5 -born%5:00:00:intelligent:00 01335708 2 0 -born-again%5:00:00:regenerate:00 01957177 1 0 -born-again_christian%1:18:00:: 09867818 1 0 -bornean%1:18:00:: 09694771 1 0 -borneo%1:15:00:: 08843215 1 0 -bornholm_disease%1:26:00:: 14330340 1 0 -bornite%1:27:00:: 14669242 1 0 -borodin%1:18:00:: 10858333 1 0 -borodino%1:04:00:: 01272134 1 0 -boron%1:27:00:: 14631871 1 0 -boron_chamber%1:06:00:: 02875626 1 0 -boron_counter_tube%1:06:00:: 02875815 1 0 -boron_trifluoride%1:27:00:: 14784111 1 0 -boronic%3:01:00:: 02668058 1 0 -borosilicate%1:27:00:: 14784198 1 0 -borough%1:15:00:: 08540532 1 3 -borough%1:15:01:: 08540016 2 0 -borough_english%1:21:00:: 13263375 1 0 -borrelia%1:05:00:: 01383027 1 0 -borrelia_burgdorferi%1:05:00:: 01383151 1 0 -borrow%2:40:00:: 02324026 1 16 -borrow%2:40:01:: 02346724 2 5 -borrow_pit%1:17:00:: 09226869 1 0 -borrower%1:18:00:: 09867633 1 1 -borrower's_card%1:10:00:: 06478199 1 0 -borrowing%1:04:00:: 01111133 2 0 -borrowing%1:04:01:: 00084371 1 1 -borrowing_cost%1:21:00:: 13302201 1 0 -borsch%1:13:00:: 07584423 1 0 -borscht%1:13:00:: 07584423 1 0 -borscht_belt%1:15:00:: 09125984 1 0 -borscht_circuit%1:15:00:: 09125984 1 0 -borsh%1:13:00:: 07584423 1 0 -borshch%1:13:00:: 07584423 1 0 -borsht%1:13:00:: 07584423 1 0 -borsht_belt%1:15:00:: 09125984 1 0 -borsht_circuit%1:15:00:: 09125984 1 0 -borstal%1:06:00:: 02875948 1 0 -bortsch%1:13:00:: 07584423 1 0 -borzoi%1:05:00:: 02090622 1 0 -bos%1:05:00:: 02401661 1 0 -bos'n%1:18:00:: 09862183 1 0 -bos_banteng%1:05:00:: 02405440 1 0 -bos_grunniens%1:05:00:: 02405302 1 0 -bos_indicus%1:05:00:: 02404573 1 0 -bos_primigenius%1:05:00:: 02405101 1 0 -bos_taurus%1:05:00:: 02402425 1 0 -bosc%1:13:00:: 07768068 1 0 -bosch%1:18:00:: 10858468 1 0 -bose%1:18:00:: 10858577 1 0 -bose-einstein_statistics%1:09:00:: 05875723 1 0 -boselaphus%1:05:00:: 02425393 1 0 -boselaphus_tragocamelus%1:05:00:: 02425532 1 0 -bosh%1:10:00:: 06611147 1 0 -bosie%1:04:00:: 00477097 1 0 -bosie_ball%1:04:00:: 00477097 1 0 -bosin's_disease%1:26:00:: 14344189 1 0 -bosk%1:14:00:: 08438840 1 0 -boskop_man%1:05:00:: 02475478 1 0 -boskopoid%3:01:00:: 02668153 1 0 -bosky%5:00:00:wooded:00 02573443 1 0 -bosna_i_hercegovina%1:15:00:: 08817630 1 0 -bosnia%1:15:00:: 08817630 2 0 -bosnia%1:15:01:: 08818135 1 0 -bosnia-herzegovina%1:15:00:: 08817630 1 0 -bosnia_and_herzegovina%1:15:00:: 08817630 1 0 -bosnian%3:01:00:: 02964629 1 0 -bosom%1:04:00:: 00180770 4 1 -bosom%1:06:00:: 02876084 3 1 -bosom%1:08:00:: 05554405 6 0 -bosom%1:08:01:: 05553486 2 1 -bosom%1:09:00:: 05919263 5 0 -bosom%1:26:00:: 14416473 1 1 -bosom%2:35:00:: 01424456 2 0 -bosom%2:39:00:: 02147313 1 0 -bosom_of_abraham%1:09:00:: 05628031 1 0 -bosomed%5:00:00:breasted:00 02142787 1 0 -bosomy%5:00:00:shapely:00 02138989 1 0 -boson%1:17:00:: 09226997 1 0 -bosporus%1:17:00:: 09227219 1 0 -bosporus_bridge%1:06:00:: 02876193 1 0 -boss%1:06:00:: 03626115 5 0 -boss%1:18:00:: 09867956 2 4 -boss%1:18:01:: 10104209 1 6 -boss%1:18:02:: 10403162 4 0 -boss%1:18:03:: 10104064 3 1 -boss%2:35:00:: 01531265 1 0 -boss%5:00:00:superior:02 02342463 1 0 -boss-eyed%5:00:00:cross-eyed:00 00653617 1 0 -boss_around%2:37:00:: 01781520 1 0 -bossism%1:04:00:: 01128547 1 0 -bossy%5:00:00:domineering:00 00787595 1 0 -boston%1:15:00:: 09095751 1 13 -boston_baked_beans%1:13:00:: 07863107 1 0 -boston_brown_bread%1:13:00:: 07680761 1 0 -boston_bull%1:05:00:: 02096585 1 0 -boston_cream_pie%1:13:00:: 07634048 1 0 -boston_fern%1:20:00:: 13205058 1 0 -boston_harbor%1:15:00:: 09096089 1 0 -boston_ivy%1:20:00:: 13148208 1 0 -boston_lettuce%1:13:00:: 07724173 1 0 -boston_rocker%1:06:00:: 02876326 1 0 -boston_tea_party%1:04:00:: 01178415 1 0 -boston_terrier%1:05:00:: 02096585 1 0 -bostonian%1:18:00:: 09741526 1 0 -bosun%1:18:00:: 09862183 1 0 -bosun's_chair%1:06:00:: 02859557 1 0 -boswell%1:18:00:: 10858872 1 0 -boswell%1:18:01:: 09868157 2 0 -boswellia%1:20:00:: 12691834 1 0 -boswellia_carteri%1:20:00:: 12692024 1 0 -boswellia_serrata%1:20:00:: 12692160 1 0 -bosworth_field%1:04:00:: 01272367 1 0 -bot%1:05:00:: 02311879 1 0 -bota%1:06:00:: 02876457 1 0 -botanic%3:01:00:: 02668258 1 0 -botanical%1:06:00:: 02876537 1 0 -botanical%3:01:00:: 02668258 1 0 -botanical_garden%1:06:00:: 02733075 1 0 -botanical_medicine%1:04:00:: 00700421 1 0 -botanise%2:31:00:: 00645415 1 0 -botanist%1:18:00:: 09868270 1 0 -botanize%2:31:00:: 00645415 1 0 -botany%1:09:00:: 06066555 2 0 -botany%1:14:00:: 08436759 1 0 -botany_bay_fig%1:20:00:: 12403276 1 0 -botaurus%1:05:00:: 02011668 1 0 -botaurus_lentiginosus%1:05:00:: 02011805 1 0 -botaurus_stellaris%1:05:00:: 02011943 1 0 -botch%1:04:00:: 00074790 1 0 -botch%2:41:00:: 02527651 1 0 -botch_up%2:41:00:: 02527651 1 0 -botched%5:00:00:unskilled:00 02229201 1 0 -botcher%1:18:00:: 09879744 1 0 -botchy%5:00:00:unskilled:00 02229000 1 0 -botfly%1:05:00:: 02193163 1 0 -both%5:00:00:some:00 02268133 1 4 -bother%1:09:00:: 05830059 2 0 -bother%1:11:00:: 07372565 1 0 -bother%2:37:00:: 01787955 2 16 -bother%2:37:02:: 01791408 6 0 -bother%2:37:03:: 01791535 5 0 -bother%2:38:00:: 02018858 4 0 -bother%2:41:00:: 02507464 1 18 -bother%2:41:01:: 02507736 3 8 -botheration%1:09:00:: 05830059 2 0 -botheration%1:26:00:: 14406573 1 0 -bothered%5:00:00:discomposed:00 00532147 1 0 -bothersome%5:00:00:disagreeable:00 00089550 1 0 -bothidae%1:05:00:: 02660769 1 0 -bothrops%1:05:00:: 01758019 1 0 -bothrops_atrops%1:05:00:: 01758141 1 0 -botonee%5:00:00:buttoned:00 00296783 1 0 -botonnee%5:00:00:buttoned:00 00296783 1 0 -botox%1:27:00:: 14587886 1 0 -botrychium%1:20:00:: 12960729 1 0 -botrychium_lunaria%1:20:00:: 12961112 1 0 -botrychium_matricariifolium%1:20:00:: 12961242 1 0 -botrychium_multifidum%1:20:00:: 12961393 1 0 -botrychium_virginianum%1:20:00:: 12961536 1 0 -botryoid%3:01:00:: 02668432 1 0 -botryoidal%3:01:00:: 02668432 1 0 -botswana%1:15:00:: 08852389 1 0 -botswana_monetary_unit%1:23:00:: 13695815 1 0 -botswanan%3:01:00:: 02668585 1 0 -botticelli%1:18:00:: 10859012 1 0 -bottle%1:06:00:: 02876657 1 28 -bottle%1:06:01:: 02877266 3 0 -bottle%1:23:00:: 13765396 2 2 -bottle%2:35:00:: 01502279 2 0 -bottle%2:40:00:: 02283080 1 0 -bottle-fed%3:00:00:: 00267356 1 0 -bottle-grass%1:20:00:: 12135049 1 0 -bottle-green%5:00:00:chromatic:00 00371741 1 0 -bottle-nosed_dolphin%1:05:00:: 02069701 1 0 -bottle-nosed_whale%1:05:00:: 02068541 1 0 -bottle-shaped%5:00:00:formed:00 02145674 1 0 -bottle-tree%1:20:00:: 12196129 1 0 -bottle_bank%1:06:00:: 02877513 1 0 -bottle_bill%1:10:00:: 06537562 1 0 -bottle_collection%1:04:01:: 01015551 2 0 -bottle_collection%1:04:02:: 00949042 3 0 -bottle_collection%1:14:00:: 07954576 1 0 -bottle_cork%1:06:00:: 03108853 1 0 -bottle_gentian%1:20:00:: 12294331 1 0 -bottle_gourd%1:20:00:: 12166128 1 0 -bottle_grass%1:20:00:: 12135049 1 0 -bottle_green%1:07:00:: 04967882 1 0 -bottle_opener%1:06:00:: 02877962 1 0 -bottle_screw%1:06:00:: 03109150 1 0 -bottle_tree%1:20:00:: 12196129 1 0 -bottle_up%2:41:00:: 02423762 1 0 -bottlebrush%1:06:00:: 02877642 1 0 -bottlebrush_buckeye%1:20:00:: 12769065 1 0 -bottlecap%1:06:00:: 02877765 1 0 -bottled_gas%1:27:00:: 14878483 1 0 -bottled_water%1:13:00:: 07935737 1 0 -bottlefeed%2:34:00:: 01187271 1 0 -bottleful%1:23:00:: 13765396 1 0 -bottleneck%1:06:00:: 02877865 2 0 -bottleneck%1:25:00:: 13912992 1 1 -bottleneck%2:30:00:: 00304946 2 0 -bottleneck%2:41:00:: 02557902 1 0 -bottlenose%1:05:01:: 02068541 2 0 -bottlenose%1:05:02:: 02069701 1 0 -bottlenose_dolphin%1:05:00:: 02069701 1 0 -bottlenose_whale%1:05:00:: 02068541 1 0 -bottler%1:14:00:: 08066644 1 0 -bottling_plant%1:06:00:: 02878107 1 0 -bottom%1:06:00:: 02878222 7 0 -bottom%1:08:00:: 05559256 3 2 -bottom%1:15:00:: 08511241 1 9 -bottom%1:15:01:: 08511970 2 5 -bottom%1:17:00:: 09217638 5 1 -bottom%1:17:01:: 09227428 6 0 -bottom%1:28:00:: 15256245 4 1 -bottom%2:31:00:: 00728954 3 0 -bottom%2:35:00:: 01238358 2 0 -bottom%2:40:00:: 02337699 1 0 -bottom%3:00:00:: 02440691 1 0 -bottom%5:00:00:worst:00 00229978 2 0 -bottom-dweller%1:05:00:: 01316579 1 0 -bottom-dwelling%3:01:00:: 02668695 1 0 -bottom-feeder%1:05:00:: 01316579 2 0 -bottom-feeder%1:05:01:: 01316734 1 0 -bottom-feeding%3:01:00:: 02668839 1 0 -bottom-up%3:00:00:: 02443406 1 0 -bottom_dog%1:18:00:: 09868703 1 0 -bottom_feeder%1:18:00:: 09868782 1 0 -bottom_fermentation%1:22:00:: 13441154 1 0 -bottom_fermenting_yeast%1:27:00:: 14784831 1 0 -bottom_fish%1:05:00:: 02513355 1 0 -bottom_line%1:10:00:: 06606618 2 0 -bottom_line%1:21:00:: 13423267 1 0 -bottom_lurkers%1:05:00:: 01316838 1 0 -bottom_of_the_inning%1:28:00:: 15256245 1 0 -bottom_out%2:35:00:: 01238500 2 0 -bottom_out%2:38:00:: 02007898 1 0 -bottom_quark%1:17:00:: 09227530 1 0 -bottom_rot%1:26:00:: 14278642 1 0 -bottom_rot_fungus%1:20:00:: 13015688 1 0 -bottom_round%1:13:00:: 07662517 1 0 -bottomed%3:00:00:: 02442274 1 0 -bottomland%1:17:00:: 09227428 1 1 -bottomless%3:00:00:: 02443005 2 0 -bottomless%5:00:00:deep:01 00690892 1 1 -bottomless%5:00:00:unclothed:00 00458940 4 0 -bottomless%5:00:00:unlimited:00 01415917 3 0 -bottomlessness%1:07:00:: 05135582 1 0 -bottommost%5:00:00:bottom:00 02440881 1 0 -botuliform%5:00:00:formed:00 02145754 1 0 -botulin%1:27:00:: 15035123 1 0 -botulinal%3:01:00:: 02986098 1 1 -botulinum%1:05:00:: 01357328 1 0 -botulinum_toxin%1:27:00:: 14587688 1 0 -botulinum_toxin_a%1:27:00:: 14587886 1 0 -botulinus%1:05:00:: 01357328 1 0 -botulinus_toxin%1:27:00:: 15035123 1 0 -botulism%1:26:00:: 14068894 1 0 -botulismotoxin%1:27:00:: 15035123 1 0 -bouchee%1:13:00:: 07627223 1 0 -boucle%1:06:00:: 02878425 1 1 -boudoir%1:06:00:: 02878534 1 0 -bouffant%1:08:00:: 05257476 1 0 -bouffant%5:00:00:large:00 01384081 1 1 -bouffe%1:10:00:: 07026646 1 0 -bougainvillaea%1:20:00:: 11838741 1 0 -bougainville%1:15:00:: 08843571 2 0 -bougainville%1:18:00:: 10859194 1 0 -bougainville_trench%1:17:00:: 09227683 1 0 -bougainvillea%1:20:00:: 11838916 1 0 -bougainvillea_glabra%1:20:00:: 11839167 1 0 -bough%1:20:00:: 13165727 1 6 -boughed%5:00:04:limbed:00 01414488 1 0 -boughless%5:00:04:limbless:00 01414938 1 0 -boughten%5:00:00:factory-made:00 00675228 1 0 -bouillabaisse%1:13:00:: 07591586 1 0 -bouillon%1:13:00:: 07584938 1 0 -bouillon_cube%1:13:00:: 07810531 1 0 -boulder%1:15:00:: 09067721 2 0 -boulder%1:17:00:: 09227839 1 1 -boulder_clay%1:27:00:: 15074772 1 0 -boulder_fern%1:20:00:: 13189428 1 0 -bouldered%5:00:00:rough:00 02241988 1 0 -bouldery%5:00:00:rough:00 02241988 1 0 -boule%1:06:00:: 02878628 1 0 -boulevard%1:06:00:: 02763472 1 1 -boulevardier%1:18:00:: 09868899 1 0 -boulez%1:18:00:: 10859369 1 0 -boulle%1:06:00:: 02878628 1 0 -bounce%1:04:00:: 00120202 2 1 -bounce%1:07:00:: 05020981 1 2 -bounce%1:11:00:: 07350401 3 0 -bounce%2:35:00:: 01469080 7 0 -bounce%2:35:03:: 01404389 2 5 -bounce%2:38:00:: 01892104 1 13 -bounce%2:38:01:: 01964788 5 1 -bounce%2:38:02:: 01892608 3 4 -bounce%2:40:00:: 02254923 4 1 -bounce%2:40:01:: 02254767 6 0 -bounce_back%2:30:00:: 00268011 1 2 -bounce_out%2:35:00:: 01404538 1 1 -bouncer%1:18:00:: 09869009 1 0 -bounciness%1:07:00:: 05020981 1 0 -bouncing%1:11:00:: 07350401 1 2 -bouncing%5:00:00:healthy:00 01170984 1 0 -bouncing%5:00:00:lively:00 00805309 2 0 -bouncing_bess%1:20:00:: 11814584 1 0 -bouncing_bet%1:20:00:: 11814584 1 0 -bouncing_betty%1:06:00:: 02878796 1 1 -bouncing_putty%1:27:00:: 14784290 1 0 -bouncy%5:00:00:elastic:00 00843595 1 0 -bouncy%5:00:00:lively:00 00805309 2 0 -bound%1:04:00:: 00120202 4 0 -bound%1:07:00:: 05124057 3 0 -bound%1:15:00:: 08512259 2 0 -bound%1:25:00:: 13903079 1 1 -bound%2:30:00:: 00233335 3 2 -bound%2:38:00:: 01892104 4 1 -bound%2:38:01:: 01963942 1 4 -bound%2:42:00:: 02710673 2 2 -bound%3:00:01:: 00252954 1 4 -bound%3:00:02:: 00256636 3 2 -bound%3:00:03:: 01058854 2 3 -bound%5:00:00:constipated:00 00638396 9 0 -bound%5:00:00:oriented:00 01682822 6 1 -bound%5:00:00:sworn:00 02371495 7 0 -bound%5:00:00:treated:02 01955494 5 1 -bound%5:00:00:unfree:00 01064806 8 0 -bound%5:00:01:certain:03 00340626 4 2 -bound_form%1:10:00:: 06306945 1 0 -bound_morpheme%1:10:00:: 06306945 1 0 -bound_off%2:38:00:: 01892734 1 0 -bound_up%5:00:00:committed:00 00518405 2 0 -bound_up%5:00:00:related:02 01973655 1 1 -boundary%1:07:00:: 05124057 3 0 -boundary%1:15:00:: 08512259 1 4 -boundary%1:25:00:: 13903079 2 2 -boundary_condition%1:10:00:: 06755776 1 0 -boundary_layer%1:19:00:: 11431191 1 0 -boundary_line%1:15:00:: 08512736 1 0 -bounded%5:00:00:finite:00 01006788 1 3 -bounded_interval%1:09:00:: 06016462 1 0 -boundedness%1:07:00:: 05209659 1 0 -bounden%5:00:00:obligatory:00 00848375 1 0 -bounder%1:18:00:: 09886220 1 0 -bounder%1:18:01:: 09869171 2 0 -bounderish%5:00:00:unrefined:01 01950857 1 0 -boundless%5:00:00:infinite:00 01007657 1 1 -boundlessly%4:02:00:: 00225264 1 0 -boundlessness%1:07:00:: 05209324 1 0 -bounds%1:15:00:: 08512259 1 1 -bounteous%5:00:00:generous:01 01111418 1 0 -bounteously%4:02:00:: 00279867 1 0 -bounteousness%1:07:00:: 04832244 1 0 -bountied%5:00:00:rewarding:00 02015767 1 0 -bountiful%5:00:00:fruitful:00 01080900 2 0 -bountiful%5:00:00:generous:01 01111418 1 0 -bountifully%4:02:00:: 00279867 1 0 -bountifulness%1:07:00:: 05115418 1 0 -bounty%1:06:00:: 02878883 4 0 -bounty%1:07:01:: 04832244 3 0 -bounty%1:07:02:: 05115418 2 0 -bounty%1:21:00:: 13272059 1 0 -bounty_hunter%1:18:00:: 09869317 2 0 -bounty_hunter%1:18:01:: 09869447 1 0 -bouquet%1:06:00:: 02879087 1 3 -bouquet%1:07:00:: 04980463 2 0 -bourbon%1:13:00:: 07906718 2 1 -bourbon%1:14:00:: 08154012 4 0 -bourbon%1:18:00:: 09869578 3 0 -bourbon%1:18:01:: 09869706 1 7 -bourbon_dynasty%1:14:00:: 08154012 1 0 -bourdon%1:06:00:: 03245724 1 0 -bourgeois%1:18:00:: 09869830 2 0 -bourgeois%1:18:01:: 09882716 1 0 -bourgeois%5:00:00:capitalistic:00 00297598 1 0 -bourgeois%5:00:01:middle-class:00 00260695 3 0 -bourgeois%5:00:02:middle-class:00 00260780 2 0 -bourgeoisie%1:14:00:: 08181658 1 1 -bourgeon%2:30:00:: 00357332 1 0 -bourgogne%1:15:00:: 08941057 1 0 -bourguignon%1:13:00:: 07835921 1 0 -bourguignon_sauce%1:13:00:: 07835921 1 0 -bourn%1:09:00:: 05981546 2 0 -bourn%1:15:00:: 08513072 1 0 -bourne%1:09:00:: 05981546 2 0 -bourne%1:15:00:: 08513072 1 0 -bourse%1:06:00:: 02879228 1 0 -bourtree%1:20:00:: 12679201 1 0 -bouse%2:35:00:: 01455095 1 0 -boustrophedon%1:10:00:: 06361446 1 0 -boustrophedonic%3:01:00:: 02668981 1 0 -bout%1:04:01:: 00510723 4 0 -bout%1:11:00:: 07456906 3 0 -bout%1:28:00:: 15256714 1 1 -bout%1:28:01:: 15119072 2 0 -bouteloua%1:20:00:: 12111882 1 0 -bouteloua_eriopoda%1:20:00:: 12112337 1 0 -bouteloua_gracilis%1:20:00:: 12112219 1 0 -boutique%1:06:00:: 02879309 1 0 -boutonneuse_fever%1:26:00:: 14078120 1 0 -boutonniere%1:06:00:: 02879422 1 0 -bouvet_island%1:15:00:: 08711143 1 0 -bouvier_des_flandres%1:05:00:: 02106382 1 0 -bouviers_des_flandres%1:05:00:: 02106382 1 0 -bouvines%1:04:00:: 01272582 1 0 -bouyei%1:10:00:: 06936290 1 0 -bovid%1:05:00:: 02401031 1 0 -bovid%3:01:00:: 02842185 1 0 -bovidae%1:05:00:: 02400139 1 0 -bovinae%1:05:00:: 02401305 1 0 -bovine%1:05:00:: 02402010 1 0 -bovine%3:01:00:: 02842185 1 2 -bovine%5:00:00:dull:03 00807277 2 0 -bovine_spongiform_encephalitis%1:26:00:: 14261846 1 0 -bovini%1:05:00:: 02401509 1 0 -bovril%1:13:00:: 07810633 1 0 -bow%1:04:01:: 00547765 9 0 -bow%1:06:00:: 02879517 2 2 -bow%1:06:01:: 02879718 4 1 -bow%1:06:02:: 02880008 3 1 -bow%1:06:03:: 02880189 1 4 -bow%1:06:04:: 02880308 8 0 -bow%1:10:00:: 07229341 7 0 -bow%1:10:01:: 07274425 6 0 -bow%1:25:00:: 13896100 5 0 -bow%2:32:00:: 00898691 1 11 -bow%2:32:01:: 00878348 2 3 -bow%2:36:00:: 01729295 5 0 -bow%2:38:00:: 02040273 3 1 -bow%2:38:01:: 02062632 4 0 -bow-tie%1:06:00:: 02883205 1 0 -bow-wow%1:05:00:: 02084732 2 0 -bow-wow%1:11:00:: 07378163 1 0 -bow_and_arrow%1:06:00:: 02880393 1 0 -bow_down%2:32:00:: 00898691 2 0 -bow_down%2:38:00:: 02063610 1 1 -bow_leg%1:08:00:: 05561834 2 0 -bow_leg%1:26:00:: 14560253 1 0 -bow_legs%1:26:00:: 14560253 1 0 -bow_out%2:41:00:: 02380760 2 0 -bow_out%2:41:01:: 02380980 1 0 -bow_tie%1:06:00:: 02883205 1 0 -bow_window%1:06:00:: 02813399 1 0 -bow_wood%1:20:00:: 12399899 1 0 -bowditch%1:18:00:: 10859485 1 0 -bowdler%1:18:00:: 10859669 1 0 -bowdlerisation%1:04:00:: 00396825 2 0 -bowdlerisation%1:04:01:: 00397191 1 0 -bowdlerise%2:30:00:: 00201034 1 0 -bowdleriser%1:18:00:: 10073992 1 0 -bowdlerism%1:04:00:: 00397545 1 0 -bowdlerization%1:04:00:: 00396825 2 0 -bowdlerization%1:04:01:: 00397191 1 0 -bowdlerize%2:30:00:: 00201034 1 0 -bowdlerizer%1:18:00:: 10073992 1 0 -bowed%3:00:00:: 00945513 1 0 -bowed%5:00:00:curved:00 02315461 2 0 -bowed%5:00:00:submissive:00 00789392 4 0 -bowed%5:00:00:unfit:01 01018530 3 0 -bowed_down%5:00:00:burdened:00 00869690 1 1 -bowed_stringed_instrument%1:06:00:: 02880546 1 0 -bowel%1:08:00:: 05534333 1 0 -bowel_movement%1:22:00:: 13441387 1 0 -bowelless%5:00:00:merciless:00 01507808 1 0 -bowels%1:15:00:: 08516584 1 0 -bower%1:06:00:: 02732827 1 1 -bower%2:35:00:: 01390210 1 0 -bower_actinidia%1:20:00:: 12371202 1 0 -bowerbird%1:05:00:: 01600657 1 0 -bowery%1:15:00:: 09121936 1 0 -bowery%5:00:00:leafy:00 01701017 1 0 -bowfin%1:05:00:: 02639087 1 0 -bowfront%5:00:00:rounded:00 02045345 1 0 -bowhead%1:05:00:: 02064000 1 0 -bowhead_whale%1:05:00:: 02064000 1 0 -bowie%1:18:00:: 10859857 1 0 -bowie_knife%1:06:00:: 02880842 1 0 -bowiea%1:20:00:: 12444666 1 0 -bowiea_volubilis%1:20:00:: 12444898 1 0 -bowing%1:04:00:: 00101410 2 0 -bowing%1:10:00:: 07274425 1 0 -bowing%5:00:00:submissive:00 00789392 1 0 -bowknot%1:06:00:: 02880189 1 0 -bowl%1:04:00:: 00104409 9 0 -bowl%1:06:00:: 02880940 3 1 -bowl%1:06:01:: 02881193 1 2 -bowl%1:06:02:: 02881397 8 0 -bowl%1:06:03:: 04295881 5 0 -bowl%1:06:04:: 02881546 7 0 -bowl%1:06:05:: 02882301 6 0 -bowl%1:23:00:: 13765531 4 0 -bowl%1:25:00:: 13893694 2 1 -bowl%2:33:00:: 01146507 3 0 -bowl%2:35:04:: 01616738 2 0 -bowl%2:38:00:: 01887324 1 0 -bowl-shaped%5:00:00:concave:00 00536195 1 0 -bowl_over%2:31:00:: 00726153 2 0 -bowl_over%2:38:00:: 01909978 1 0 -bowlder%1:17:00:: 09227839 1 1 -bowleg%1:08:00:: 05561834 1 0 -bowleg%5:00:00:unfit:01 01018530 1 0 -bowlegged%5:00:00:unfit:01 01018530 1 0 -bowler%1:06:00:: 02881757 3 0 -bowler%1:18:00:: 09869961 2 0 -bowler%1:18:01:: 09870096 1 0 -bowler_hat%1:06:00:: 02881757 1 0 -bowlful%1:23:00:: 13765531 1 0 -bowline%1:06:00:: 02881906 1 0 -bowline_knot%1:06:00:: 02881906 1 0 -bowling%1:04:00:: 00461782 1 0 -bowling%1:04:01:: 00041740 3 0 -bowling%1:04:02:: 00104976 2 0 -bowling_alley%1:06:00:: 02882014 2 0 -bowling_alley%1:06:01:: 02882190 1 0 -bowling_ball%1:06:00:: 02882301 1 0 -bowling_equipment%1:06:00:: 02882483 1 0 -bowling_green%1:15:00:: 08516660 2 0 -bowling_green%1:15:01:: 09089524 1 0 -bowling_league%1:14:00:: 08232410 1 0 -bowling_pin%1:06:00:: 02882647 1 0 -bowling_score%1:04:00:: 00187056 1 0 -bowling_shoe%1:06:00:: 02882894 1 0 -bowls%1:04:00:: 00462804 1 0 -bowman%1:18:00:: 09805324 1 0 -bowman's_capsule%1:08:00:: 05247621 1 0 -bowse%2:35:00:: 01455095 1 0 -bowsprit%1:06:00:: 02883004 1 0 -bowstring%1:06:00:: 02883101 1 1 -bowstring_hemp%1:20:01:: 12480895 3 0 -bowstring_hemp%1:20:02:: 12481641 2 0 -bowstring_hemp%1:27:00:: 14784506 1 0 -bowtie%1:06:00:: 02883205 1 0 -bowtie_pasta%1:13:00:: 07699430 1 0 -box%1:04:00:: 00135148 10 0 -box%1:06:00:: 02883344 1 25 -box%1:06:01:: 02884011 9 0 -box%1:06:02:: 02884225 2 8 -box%1:06:03:: 02884450 8 0 -box%1:06:04:: 02884607 7 0 -box%1:20:00:: 12746106 6 0 -box%1:23:00:: 13765624 3 3 -box%1:25:00:: 13883494 5 0 -box%1:26:00:: 14408951 4 1 -box%2:35:00:: 01420765 2 0 -box%2:35:01:: 01419982 3 0 -box%2:35:02:: 01485158 1 1 -box-shaped%5:00:00:cubic:00 00657600 1 0 -box_beam%1:06:00:: 02884859 1 0 -box_calf%1:27:00:: 14784601 1 0 -box_camera%1:06:00:: 02884994 1 0 -box_coat%1:06:00:: 02885233 1 0 -box_elder%1:20:00:: 12755225 1 0 -box_end_wrench%1:06:00:: 02886434 1 0 -box_family%1:20:00:: 12745788 1 0 -box_girder%1:06:00:: 02884859 1 0 -box_huckleberry%1:20:00:: 12237152 1 0 -box_in%2:42:00:: 02711721 1 1 -box_kite%1:06:00:: 02885785 1 0 -box_kodak%1:06:00:: 02884994 1 1 -box_number%1:15:00:: 08491531 1 0 -box_number%1:15:01:: 08491410 2 0 -box_office%1:06:00:: 02885882 2 0 -box_office%1:21:00:: 13258167 1 0 -box_pleat%1:06:00:: 02886035 1 0 -box_seat%1:06:00:: 02886183 1 0 -box_seat%1:06:01:: 02884450 2 0 -box_spring%1:06:00:: 02886321 1 0 -box_tortoise%1:05:00:: 01669191 1 0 -box_turtle%1:05:00:: 01669191 1 0 -box_up%2:42:00:: 02711721 1 0 -box_white_oak%1:20:00:: 12278371 1 0 -box_wrench%1:06:00:: 02886434 1 0 -boxberry%1:13:00:: 07743723 2 0 -boxberry%1:20:00:: 12668517 1 0 -boxcar%1:06:00:: 02885108 1 5 -boxcars%1:23:00:: 13746946 1 0 -boxed%5:00:00:bordered:00 00258090 1 1 -boxed%5:00:00:enclosed:00 01657233 2 0 -boxed-in%5:00:00:enclosed:00 01657233 1 0 -boxed_in%5:00:00:enclosed:00 01657233 1 1 -boxer%1:05:00:: 02108089 4 0 -boxer%1:18:00:: 09870208 1 1 -boxer%1:18:01:: 10390427 2 0 -boxer%1:18:02:: 09870746 3 0 -boxers%1:06:00:: 03234164 1 0 -boxershorts%1:06:00:: 03234164 1 0 -boxfish%1:05:00:: 02654425 1 0 -boxful%1:23:00:: 13765624 1 0 -boxing%1:04:00:: 00445802 1 0 -boxing%1:04:01:: 00322228 2 0 -boxing_day%1:28:00:: 15196746 1 0 -boxing_equipment%1:06:00:: 02885338 1 0 -boxing_glove%1:06:00:: 02885462 1 0 -boxing_match%1:11:00:: 07465960 1 0 -boxing_ring%1:06:00:: 02885663 1 0 -boxlike%5:00:00:cubic:00 00657600 1 0 -boxthorn%1:20:00:: 12904938 1 0 -boxwood%1:20:00:: 12746106 2 0 -boxwood%1:20:02:: 12746474 1 0 -boxy%5:00:00:cubic:00 00657600 1 0 -boy%1:18:00:: 10285313 1 144 -boy%1:18:01:: 09637837 4 1 -boy%1:18:02:: 09870926 2 42 -boy%1:18:03:: 10624074 3 16 -boy_orator_of_the_platte%1:18:00:: 10869385 1 0 -boy_scout%1:18:00:: 09871681 1 1 -boy_scout%1:18:01:: 09871867 2 0 -boy_scouts%1:14:00:: 08470710 1 0 -boy_scouts_of_america%1:14:00:: 08470928 1 0 -boy_wonder%1:18:00:: 09871952 1 0 -boycott%1:04:00:: 00206130 1 0 -boycott%2:41:00:: 02465494 1 2 -boyfriend%1:18:00:: 09871364 1 0 -boyhood%1:28:00:: 15147504 1 6 -boyish%5:00:00:young:00 01648313 1 2 -boyishly%4:02:00:: 00269881 1 0 -boyishness%1:07:00:: 04667076 1 0 -boykinia%1:20:00:: 12796192 1 0 -boykinia_elata%1:20:00:: 12796385 1 0 -boykinia_occidentalis%1:20:00:: 12796385 1 0 -boyle%1:18:00:: 10860108 2 0 -boyle%1:18:01:: 10860347 1 0 -boyle's_law%1:09:00:: 05875988 1 0 -boylike%4:02:00:: 00269881 1 0 -boylike%5:00:00:young:00 01648313 1 0 -boyne%1:04:00:: 01272787 1 0 -boys-and-girls%1:20:00:: 12924036 1 0 -boysenberry%1:13:00:: 07745046 2 0 -boysenberry%1:20:00:: 12654857 1 0 -boysenberry_bush%1:20:00:: 12654857 1 0 -boytrose%3:01:00:: 02668432 1 0 -bozeman%1:15:00:: 09108586 1 0 -bozo%1:18:00:: 10153414 2 0 -bozo%1:18:01:: 10157744 1 0 -bph%1:26:00:: 14368917 1 0 -bpi%1:07:00:: 05089048 1 0 -bpm%1:28:00:: 15286042 1 0 -bps%1:28:00:: 15276642 1 0 -br%1:14:00:: 08041484 2 0 -br%1:27:00:: 14632129 1 0 -bra%1:06:00:: 02892767 1 0 -brabancon_griffon%1:05:00:: 02112706 1 0 -brabble%2:32:00:: 00774056 1 0 -brace%1:06:00:: 02886599 9 0 -brace%1:06:01:: 02886907 8 0 -brace%1:06:03:: 02887079 7 0 -brace%1:06:04:: 02887209 1 1 -brace%1:06:05:: 02887489 6 0 -brace%1:06:06:: 02887683 5 0 -brace%1:10:00:: 06842165 4 0 -brace%1:14:00:: 07985223 3 0 -brace%1:23:00:: 13743605 2 0 -brace%2:29:00:: 00022686 4 0 -brace%2:35:00:: 01219706 3 1 -brace%2:35:01:: 01219993 2 2 -brace%2:37:00:: 01806109 1 2 -brace_and_bit%1:06:00:: 02887832 1 0 -brace_oneself_for%2:30:00:: 00273257 1 0 -brace_up%2:30:00:: 00221718 1 0 -brace_wrench%1:06:00:: 02888429 1 0 -braced%5:00:00:prepared:00 01843746 1 1 -braced%5:00:00:supported:00 02351149 2 0 -bracelet%1:06:00:: 02887970 2 0 -bracelet%1:06:01:: 04556204 1 0 -bracelet_wood%1:20:00:: 12099972 1 0 -bracer%1:06:00:: 02888133 2 0 -bracer%1:06:01:: 02888270 1 0 -bracero%1:18:00:: 09872285 1 0 -braces%1:06:02:: 02887079 1 0 -brachial%3:01:00:: 02669125 1 0 -brachial_artery%1:08:00:: 05338614 1 0 -brachial_plexus%1:08:00:: 05506034 1 0 -brachial_vein%1:08:00:: 05359347 1 0 -brachiate%2:38:00:: 01891489 1 0 -brachiate%5:00:00:armed:03 00146501 2 0 -brachiate%5:00:00:branchy:00 00613728 1 0 -brachiation%1:04:00:: 00283450 1 0 -brachinus%1:05:00:: 02167375 1 0 -brachiocephalic_vein%1:08:00:: 05359516 1 0 -brachiopod%1:05:00:: 02315487 1 0 -brachiopod%3:01:00:: 02669223 1 0 -brachiopoda%1:05:00:: 02315309 1 0 -brachiopodous%3:01:00:: 02669223 1 0 -brachium%1:25:00:: 13914141 1 0 -brachycephalic%1:18:00:: 09872464 1 0 -brachycephalic%3:00:00:: 00262124 1 0 -brachycephalism%1:07:00:: 05212362 1 0 -brachycephaly%1:07:00:: 05212362 1 0 -brachychiton%1:20:00:: 12195965 1 0 -brachychiton_acerifolius%1:20:00:: 12196336 1 0 -brachychiton_australis%1:20:00:: 12196527 1 0 -brachychiton_populneus%1:20:00:: 12196694 1 0 -brachychiton_rupestris%1:20:00:: 12196954 1 0 -brachycome%1:20:00:: 11941719 1 0 -brachycome_iberidifolia%1:20:00:: 11941924 1 0 -brachycranial%3:00:00:: 00262124 1 0 -brachycranic%3:00:00:: 00262124 1 0 -brachydactylia%1:26:00:: 14092114 1 0 -brachydactylic%5:00:00:abnormal:00 01597105 1 0 -brachydactylous%5:00:00:abnormal:00 01597105 1 0 -brachydactyly%1:26:00:: 14092114 1 0 -brachypterous%5:00:00:winged:00 02567593 1 0 -brachystegia%1:20:00:: 12491200 1 0 -brachystegia_speciformis%1:20:00:: 12491435 1 0 -brachyura%1:05:00:: 01976477 1 0 -brachyuran%1:05:00:: 01976868 1 0 -brachyurous%3:01:00:: 02669373 1 0 -bracing%1:06:00:: 02886599 1 2 -bracing%5:00:00:invigorating:00 01357027 1 0 -bracken%1:20:01:: 13189844 2 0 -bracken%1:20:02:: 13190060 1 0 -bracket%1:06:00:: 02888569 4 0 -bracket%1:10:00:: 06842290 3 0 -bracket%1:10:01:: 06842452 2 0 -bracket%1:14:00:: 08006094 1 0 -bracket%2:31:00:: 00656916 3 0 -bracket%2:32:00:: 00800586 2 0 -bracket%2:35:00:: 01218791 1 0 -bracket_creep%1:21:00:: 13310415 1 0 -bracket_fungus%1:20:00:: 13050397 1 0 -bracket_out%2:32:00:: 00800586 1 0 -bracketed_blenny%1:05:00:: 02614978 1 0 -brackish%5:00:00:salty:00 01074062 2 0 -brackish%5:00:00:unpalatable:00 01716845 1 0 -brackishness%1:07:00:: 04993752 1 0 -bract%1:20:00:: 13154841 1 0 -bracteal%3:01:00:: 02669490 1 0 -bracteate%3:01:00:: 02669616 1 0 -bracted%3:01:00:: 02669616 1 0 -bracteolate%3:01:00:: 02669731 1 0 -bracteole%1:20:00:: 13155095 1 0 -bractlet%1:20:00:: 13155095 1 0 -brad%1:06:00:: 02888817 1 1 -brad%2:35:00:: 01342439 1 0 -bradawl%1:06:00:: 02888898 1 0 -bradbury%1:18:00:: 10860444 1 0 -bradford%1:18:00:: 10860589 1 0 -bradley%1:18:00:: 10860807 2 0 -bradley%1:18:01:: 10860999 1 0 -bradley's_spleenwort%1:20:00:: 13182662 1 0 -bradley_method%1:22:00:: 13441536 1 0 -bradley_method_of_childbirth%1:22:00:: 13441536 1 0 -bradstreet%1:18:00:: 10861174 1 0 -brady%1:18:00:: 10861329 2 0 -brady%1:18:01:: 10861535 1 0 -bradycardia%1:26:00:: 14362510 1 0 -bradypodidae%1:05:00:: 02456776 1 0 -bradypus%1:05:00:: 02457249 1 0 -bradypus_tridactylus%1:05:00:: 02457408 1 0 -brae%1:17:00:: 09228055 1 0 -brag%1:10:00:: 07229747 1 0 -brag%2:32:00:: 00883226 1 2 -brag%5:00:00:superior:02 02342463 1 0 -braga%1:15:00:: 08985958 1 0 -brage%1:18:00:: 09579714 1 0 -bragg%1:18:00:: 10861741 1 0 -braggadocio%1:10:00:: 07230089 1 1 -braggart%1:18:00:: 09872066 1 0 -braggart%5:00:00:proud:00 01890752 1 0 -bragger%1:18:00:: 09872066 1 0 -bragging%1:10:00:: 07229747 1 0 -bragging%5:00:00:proud:00 01890752 1 0 -braggy%5:00:00:proud:00 01890752 1 0 -bragi%1:18:00:: 09579714 1 0 -brahe%1:18:00:: 10861926 1 0 -brahma%1:05:00:: 02404573 2 0 -brahma%1:18:00:: 09524921 1 0 -brahman%1:05:00:: 02404573 4 0 -brahman%1:14:00:: 08306959 3 0 -brahman%1:18:00:: 09872557 2 0 -brahman%1:18:03:: 09872782 1 0 -brahmana%1:10:00:: 06465457 1 0 -brahmanism%1:09:00:: 06237865 2 0 -brahmanism%1:14:00:: 08096950 1 0 -brahmaputra%1:17:00:: 09228144 1 0 -brahmaputra_river%1:17:00:: 09228144 1 0 -brahmi%1:10:00:: 06352618 1 0 -brahmin%1:05:00:: 02404573 4 0 -brahmin%1:14:00:: 08306959 3 0 -brahmin%1:18:00:: 09872557 2 0 -brahmin%1:18:03:: 09872782 1 0 -brahminic%3:01:00:: 02669806 1 0 -brahminical%3:01:00:: 02669806 1 0 -brahminism%1:09:00:: 06237865 2 0 -brahminism%1:14:00:: 08096950 1 0 -brahms%1:10:00:: 07278146 2 0 -brahms%1:18:00:: 10862113 1 0 -brahui%1:10:00:: 06982581 2 0 -brahui%1:18:00:: 09725935 1 0 -braid%1:06:00:: 02889035 2 0 -braid%1:08:00:: 05259512 1 1 -braid%2:35:00:: 01519569 3 0 -braid%2:35:01:: 01519727 2 0 -braid%2:36:00:: 01674717 1 1 -braided%5:00:00:woven:00 02579760 1 0 -braiding%1:06:00:: 02889035 1 0 -brail%1:06:00:: 02889228 2 0 -brail%1:06:01:: 02889332 1 0 -brail%2:33:00:: 01141413 2 0 -brail%2:35:00:: 01214927 1 0 -braille%1:10:00:: 06362792 2 0 -braille%1:18:00:: 10862281 1 0 -braille%2:32:00:: 00995716 1 0 -brain%1:08:00:: 05481095 1 22 -brain%1:09:00:: 05618056 2 5 -brain%1:09:01:: 05611302 3 5 -brain%1:13:00:: 07652585 5 0 -brain%1:18:00:: 10126926 4 3 -brain%2:35:00:: 01401676 1 0 -brain%2:35:01:: 01327020 2 0 -brain-fag%1:26:00:: 14018203 1 0 -brain-stem%1:08:00:: 05501185 1 0 -brain-teaser%1:10:00:: 06785223 1 0 -brain-worker%1:18:00:: 09872996 1 0 -brain_cell%1:08:00:: 05465868 1 0 -brain_coral%1:05:00:: 01917289 1 0 -brain_damage%1:26:00:: 14085220 1 0 -brain_dead%5:00:00:dead:01 00096414 1 0 -brain_death%1:19:00:: 11487078 1 0 -brain_disease%1:26:00:: 14085708 1 0 -brain_disorder%1:26:00:: 14085708 1 0 -brain_doctor%1:18:00:: 10354265 1 0 -brain_drain%1:04:00:: 01062468 1 0 -brain_edema%1:26:00:: 14317064 1 0 -brain_fever%1:26:00:: 14138364 1 0 -brain_mushroom%1:20:00:: 13038068 1 0 -brain_science%1:09:00:: 06082025 1 0 -brain_stem%1:08:00:: 05501185 1 0 -brain_sugar%1:27:00:: 14876771 1 0 -brain_surgeon%1:18:00:: 10354754 1 0 -brain_surgery%1:04:00:: 00667246 1 0 -brain_trust%1:14:00:: 08241512 1 0 -brain_truster%1:18:00:: 09830759 1 0 -brain_tumor%1:26:00:: 14236743 1 1 -brain_tumour%1:26:00:: 14236743 1 0 -brain_wave%1:19:00:: 11431302 1 0 -braincase%1:08:00:: 05540513 1 0 -brainchild%1:06:00:: 03574004 1 0 -brainiac%1:18:00:: 10126926 1 0 -brainish%5:00:00:incautious:00 00326608 1 0 -brainless%5:00:00:unintelligent:00 01336837 1 0 -brainpan%1:08:00:: 05540513 1 0 -brainpower%1:09:00:: 05618056 1 0 -brainsick%5:00:00:insane:00 02075321 1 0 -brainstem%1:08:00:: 05501185 1 0 -brainstorm%1:09:00:: 05807306 1 0 -brainstorm%2:31:00:: 00630223 1 0 -brainstorming%1:04:00:: 01203277 1 0 -brainwash%2:31:00:: 00605671 2 0 -brainwash%2:32:00:: 00769989 1 0 -brainwashed%3:00:00:: 00629532 1 0 -brainwashing%1:04:00:: 00888960 1 0 -brainwave%1:09:00:: 05807306 2 0 -brainwave%1:19:00:: 11431302 1 0 -brainworker%1:18:00:: 09872996 1 0 -brainy%5:00:00:intelligent:00 01335156 1 1 -braise%2:30:00:: 00325208 1 0 -braised%5:00:00:cooked:00 00616913 1 0 -braising%1:04:00:: 00247229 1 0 -brake%1:06:00:: 02889425 1 2 -brake%1:06:01:: 02889646 5 0 -brake%1:14:00:: 08437721 4 0 -brake%1:20:01:: 13189844 3 0 -brake%1:20:02:: 13214031 2 0 -brake%2:38:00:: 01863593 2 0 -brake%2:38:01:: 01863817 1 0 -brake_band%1:06:00:: 02889856 1 0 -brake_cylinder%1:06:00:: 02889996 1 0 -brake_disk%1:06:00:: 02890188 1 0 -brake_drum%1:06:00:: 02890351 1 0 -brake_failure%1:11:00:: 07421580 1 0 -brake_light%1:10:00:: 07265990 1 0 -brake_lining%1:06:00:: 02890513 1 0 -brake_pad%1:06:00:: 02890662 1 0 -brake_pedal%1:06:00:: 02890804 1 0 -brake_shoe%1:06:00:: 02890940 1 0 -brake_system%1:06:00:: 02891188 1 0 -brakeman%1:18:00:: 09873135 1 0 -brakes%1:06:00:: 02891188 1 4 -braky%5:00:00:ferned:00 00209253 2 0 -braky%5:00:00:wooded:00 02573708 1 0 -braless%5:00:00:unclothed:00 00458488 1 0 -bram_stoker%1:18:00:: 11318824 1 0 -brama%1:05:00:: 02582591 1 0 -brama_raii%1:05:00:: 02582721 1 0 -bramante%1:18:00:: 10862507 1 0 -bramble%1:20:02:: 13119870 1 3 -bramble_bush%1:20:00:: 12653218 1 0 -brambling%1:05:00:: 01530575 1 0 -brambly%5:00:00:wooded:00 02573708 1 0 -bramidae%1:05:00:: 02582437 1 0 -bramley's_seedling%1:13:00:: 07742224 1 0 -bran%1:13:00:: 07568991 2 0 -bran%1:27:00:: 14806176 1 0 -bran-new%5:00:00:new:00 01641460 1 0 -bran_flake%1:13:00:: 07705386 1 0 -bran_muffin%1:13:00:: 07690431 1 0 -branch%1:06:00:: 02737833 6 0 -branch%1:14:00:: 08401248 1 19 -branch%1:17:01:: 09228324 5 0 -branch%1:19:00:: 11415721 4 0 -branch%1:20:00:: 13163250 2 15 -branch%1:25:00:: 13913849 3 5 -branch%2:30:00:: 00328802 2 0 -branch%2:30:01:: 00329244 1 0 -branch_line%1:06:00:: 02891430 1 0 -branch_out%2:30:00:: 00436404 1 1 -branch_water%1:13:00:: 07935878 1 0 -branched%5:00:00:branchy:00 00613866 2 0 -branched%5:00:00:divided:00 02479602 1 1 -branched_chain%1:17:00:: 09228492 1 0 -branched_chain_ketoaciduria%1:26:00:: 14159887 1 0 -branchia%1:05:00:: 02510769 1 0 -branchial%3:01:00:: 02670050 1 0 -branchial_arch%1:05:00:: 02511303 1 0 -branchial_cleft%1:05:00:: 02511107 1 0 -branchiate%3:00:00:: 01106989 1 0 -branching%1:04:00:: 00388392 1 0 -branching%5:00:00:branchy:00 00613866 1 0 -branching%5:00:00:divergent:00 00612891 2 0 -branchiobdella%1:05:00:: 01935997 1 0 -branchiobdellidae%1:05:00:: 01935743 1 0 -branchiopod%1:05:00:: 01994492 1 0 -branchiopod%3:01:00:: 02670202 1 0 -branchiopod_crustacean%1:05:00:: 01994492 1 0 -branchiopoda%1:05:00:: 01994176 1 0 -branchiopodan%1:05:00:: 01994492 1 0 -branchiopodan%3:01:00:: 02670202 1 0 -branchiopodous%3:01:00:: 02670202 1 0 -branchiostegidae%1:05:00:: 02582919 1 0 -branchiostomidae%1:05:00:: 01467504 1 0 -branchiura%1:05:00:: 01997436 1 0 -branchless%3:00:00:: 00614680 1 0 -branchlet%1:20:00:: 13163991 1 0 -branchy%3:00:00:: 00613068 1 0 -brancusi%1:18:00:: 10862676 1 0 -brand%1:06:00:: 04373894 6 0 -brand%1:09:00:: 05845140 2 3 -brand%1:10:00:: 06845599 1 7 -brand%1:10:01:: 06794666 5 0 -brand%1:10:02:: 06795543 3 2 -brand%1:27:00:: 15101157 4 0 -brand%2:32:00:: 01031109 4 0 -brand%2:35:00:: 01588876 3 0 -brand%2:41:00:: 02508245 2 0 -brand%2:41:01:: 02508663 1 1 -brand-name_drug%1:06:00:: 02891566 1 0 -brand-new%5:00:00:new:00 01641460 1 0 -brand-newness%1:07:00:: 04926620 1 0 -brand_name%1:10:00:: 06845599 1 0 -branded%3:00:00:: 01481402 2 0 -branded%5:00:00:proprietary:00 01110251 1 1 -brandenburg%1:15:00:: 08775597 1 0 -branding%1:04:00:: 01223488 1 0 -branding_iron%1:06:00:: 03585337 1 0 -brandish%1:10:00:: 06890254 1 0 -brandish%2:35:00:: 01446901 1 2 -brandish%2:39:00:: 02142520 2 1 -brandmark%2:35:00:: 01588876 1 0 -brandt%1:18:00:: 10862822 1 0 -brandy%1:13:00:: 07903208 1 3 -brandy_glass%1:06:00:: 04249882 1 0 -brandy_nose%1:26:00:: 14397040 1 0 -brandy_sling%1:13:00:: 07917791 1 0 -brandy_snifter%1:06:00:: 04249882 1 0 -brandyball%1:13:00:: 07599068 1 0 -brandysnap%1:13:00:: 07695097 1 0 -brant%1:05:00:: 01857325 1 0 -brant_goose%1:05:00:: 01857325 1 0 -branta%1:05:00:: 01857171 1 0 -branta_bernicla%1:05:00:: 01857512 1 0 -branta_canadensis%1:05:00:: 01857632 1 0 -branta_leucopsis%1:05:00:: 01857851 1 0 -braque%1:18:00:: 10862999 1 0 -brasenia%1:20:00:: 11718521 1 0 -brasenia_schreberi%1:20:00:: 11718681 1 0 -brash%5:00:00:forward:02 00204779 1 1 -brash_oak%1:20:00:: 12278371 1 0 -brashly%4:02:00:: 00284319 1 0 -brashness%1:07:00:: 04662283 2 0 -brashness%1:07:01:: 04818700 1 0 -brasier%1:06:00:: 02893418 1 0 -brasil%1:15:00:: 08853741 1 0 -brasilia%1:15:00:: 08855308 1 0 -brasov%1:15:00:: 08814333 1 0 -brass%1:06:00:: 02891788 2 2 -brass%1:06:01:: 02892201 7 0 -brass%1:06:02:: 02892304 5 1 -brass%1:07:00:: 04838210 4 1 -brass%1:14:00:: 08164585 3 1 -brass%1:14:01:: 08217135 6 0 -brass%1:27:00:: 14716997 1 11 -brass_band%1:14:00:: 08249336 1 0 -brass_buttons%1:20:00:: 11958499 1 0 -brass_family%1:14:00:: 07998206 1 0 -brass_hat%1:18:00:: 09873242 1 0 -brass_instrument%1:06:00:: 02891788 1 0 -brass_knuckles%1:06:00:: 02892948 1 0 -brass_knucks%1:06:00:: 02892948 1 0 -brass_monkey%1:06:00:: 02893148 1 0 -brass_ring%1:26:00:: 14484378 1 0 -brass_section%1:14:00:: 08217135 1 0 -brassaia_actinophylla%1:20:00:: 11800565 1 0 -brassard%1:06:00:: 02892392 1 0 -brassavola%1:20:00:: 12047345 1 0 -brassbound%5:00:00:bound:02 00256883 2 0 -brassbound%5:00:00:inflexible:02 01025732 1 0 -brasserie%1:06:00:: 02892499 1 0 -brassia%1:20:00:: 12047586 1 0 -brassia_lawrenceana%1:20:00:: 12047884 1 0 -brassia_verrucosa%1:20:00:: 12048056 1 0 -brassica%1:20:00:: 11875100 1 1 -brassica_hirta%1:20:00:: 11896519 1 0 -brassica_juncea%1:20:00:: 11878633 1 0 -brassica_kaber%1:20:00:: 11896722 1 0 -brassica_napus%1:20:00:: 11879722 1 0 -brassica_napus_napobrassica%1:20:00:: 11877860 1 0 -brassica_nigra%1:20:00:: 11879505 1 0 -brassica_oleracea%1:20:00:: 11875523 2 0 -brassica_oleracea%1:20:02:: 11875691 1 0 -brassica_oleracea_acephala%1:20:00:: 11876976 1 0 -brassica_oleracea_botrytis%1:20:00:: 11876634 1 0 -brassica_oleracea_capitata%1:20:00:: 11875938 1 0 -brassica_oleracea_gemmifera%1:20:00:: 11876432 1 0 -brassica_oleracea_gongylodes%1:20:00:: 11877283 1 0 -brassica_oleracea_italica%1:20:00:: 11876803 1 0 -brassica_perviridis%1:20:00:: 11879291 1 0 -brassica_rapa%1:20:00:: 11877646 1 0 -brassica_rapa_chinensis%1:20:00:: 11879054 1 0 -brassica_rapa_pekinensis%1:20:00:: 11878808 1 0 -brassica_rapa_perviridis%1:20:00:: 11879291 1 0 -brassica_rapa_ruvo%1:20:00:: 11878101 1 0 -brassicaceae%1:20:00:: 11867525 1 0 -brassie%1:06:00:: 02892626 1 0 -brassiere%1:06:00:: 02892767 1 0 -brasslike%3:01:00:: 02670411 1 0 -brassy%3:01:00:: 02670411 1 1 -brassy%5:00:00:tasteless:02 02393791 2 0 -brassy%5:00:00:unashamed:00 00155144 3 0 -brat%1:13:00:: 07677982 2 0 -brat%1:18:00:: 10702483 1 0 -bratislava%1:15:00:: 08759263 1 0 -brattice%1:06:00:: 02893269 1 0 -brattice%2:40:00:: 02336375 1 0 -brattish%5:00:00:impolite:00 00641813 1 0 -brattle%2:39:00:: 02172127 1 0 -brattleboro%1:15:00:: 09148529 1 0 -bratty%5:00:00:impolite:00 00641813 1 0 -bratwurst%1:13:00:: 07677982 1 0 -braun%1:18:00:: 10863124 2 0 -braun%1:18:01:: 10863440 1 0 -braun's_holly_fern%1:20:00:: 13200193 1 0 -braunschweig%1:15:00:: 08772551 1 0 -bravado%1:10:00:: 06889591 1 2 -bravais_lattice%1:09:00:: 05732086 1 0 -brave%1:14:00:: 07944754 2 0 -brave%1:18:00:: 09645788 1 0 -brave%2:42:00:: 02707251 1 1 -brave%3:00:00:: 00262792 1 10 -brave%5:00:00:bold:00 00250119 2 1 -brave%5:00:00:colorful:03 00407151 3 0 -brave_out%2:42:00:: 02707251 1 0 -bravely%4:02:00:: 00172980 1 2 -braveness%1:07:00:: 04857083 1 0 -bravery%1:07:00:: 04857083 1 1 -bravery%1:12:00:: 07526182 2 0 -bravo%1:10:00:: 06692834 2 0 -bravo%1:18:00:: 09813696 1 0 -bravo%2:32:00:: 00860482 1 0 -bravura%1:09:00:: 05637356 1 0 -braw%5:00:00:colorful:03 00407151 1 0 -brawl%1:04:00:: 01176431 2 0 -brawl%1:11:00:: 07448038 1 0 -brawl%2:32:00:: 00774344 1 0 -brawler%1:18:00:: 09873348 1 0 -brawn%1:07:00:: 05030418 1 0 -brawniness%1:07:00:: 05030418 1 0 -brawny%5:00:00:strong:00 02321809 1 0 -braxton-hicks_contraction%1:04:00:: 00370688 1 0 -braxton_bragg%1:18:00:: 10861741 1 0 -bray%1:11:00:: 07378059 1 0 -bray%2:29:00:: 00029630 3 0 -bray%2:30:00:: 00331082 2 0 -bray%2:32:00:: 01054553 1 0 -braze%2:35:00:: 01595697 1 0 -brazen%2:32:00:: 00868471 1 0 -brazen%3:01:00:: 02905485 2 0 -brazen%5:00:00:unashamed:00 00155144 1 2 -brazen-faced%5:00:00:unashamed:00 00155144 1 0 -brazenly%4:02:00:: 00076948 1 1 -brazenness%1:07:00:: 04859636 1 1 -brazier%1:06:00:: 02893418 1 0 -brazil%1:13:00:: 07771731 2 0 -brazil%1:15:00:: 08853741 1 2 -brazil-nut_tree%1:20:00:: 12327846 1 0 -brazil_nut%1:13:00:: 07771731 2 0 -brazil_nut%1:20:00:: 12327846 1 0 -brazilian%1:18:00:: 09694894 1 0 -brazilian%3:01:00:: 02966829 1 2 -brazilian_capital%1:15:00:: 08855308 1 0 -brazilian_guava%1:20:00:: 12334153 1 0 -brazilian_ironwood%1:20:00:: 12489676 1 0 -brazilian_monetary_unit%1:23:00:: 13667797 1 0 -brazilian_pepper_tree%1:20:00:: 12765402 1 0 -brazilian_potato_tree%1:20:00:: 12897999 1 0 -brazilian_rosewood%1:20:00:: 12523475 1 0 -brazilian_trumpeter%1:05:00:: 02021281 1 0 -brazilwood%1:20:00:: 12489268 2 0 -brazilwood%1:20:02:: 12489524 1 0 -brazos%1:17:00:: 09228619 1 0 -brazos_river%1:17:00:: 09228619 1 0 -brazzaville%1:15:00:: 08734250 1 0 -breach%1:04:01:: 00068901 1 1 -breach%1:11:00:: 07313814 3 0 -breach%1:17:00:: 09228801 2 0 -breach%2:35:00:: 01593614 2 1 -breach%2:41:00:: 02566528 1 1 -breach_of_contract%1:04:00:: 00069173 1 0 -breach_of_duty%1:04:00:: 00069604 1 0 -breach_of_promise%1:04:00:: 00069815 1 0 -breach_of_the_covenant_of_warranty%1:04:00:: 00069685 1 0 -breach_of_the_peace%1:04:00:: 00771713 1 0 -breach_of_trust%1:04:00:: 00069918 1 0 -breach_of_trust_with_fraudulent_intent%1:04:00:: 00070077 1 0 -breach_of_warranty%1:04:00:: 00070215 1 0 -bread%1:13:00:: 07679356 1 3 -bread%1:21:00:: 13385216 2 0 -bread%2:35:00:: 01337653 1 0 -bread-and-butter_issue%1:09:00:: 05815267 1 0 -bread-bin%1:06:00:: 02893692 1 0 -bread-stick%1:13:00:: 07680517 1 0 -bread_and_butter%1:21:00:: 13365286 1 1 -bread_and_butter_pickle%1:13:00:: 07825399 1 0 -bread_board%1:06:00:: 02893800 1 0 -bread_dough%1:13:00:: 07861158 1 1 -bread_knife%1:06:00:: 02893941 1 0 -bread_line%1:14:00:: 08432606 1 0 -bread_maker%1:18:00:: 09833536 1 0 -bread_mold%1:20:00:: 12973937 1 0 -bread_sauce%1:13:00:: 07831955 1 0 -breadbasket%1:06:00:: 02893608 3 0 -breadbasket%1:08:00:: 05395690 2 0 -breadbasket%1:15:00:: 08516767 1 0 -breadboard%1:06:00:: 02893800 1 0 -breadbox%1:06:00:: 02893692 1 0 -breadcrumb%1:13:00:: 07622473 1 0 -breadfruit%1:13:00:: 07754451 2 0 -breadfruit%1:20:00:: 12400489 1 0 -breadfruit_tree%1:20:00:: 12400489 1 0 -breadline%1:14:00:: 08432606 1 0 -breadroot%1:20:00:: 12564613 1 0 -breadstick%1:13:00:: 07680517 1 0 -breadstuff%1:13:01:: 07679356 1 0 -breadstuff%1:13:02:: 07567039 2 0 -breadth%1:07:00:: 05136150 2 2 -breadth%1:09:00:: 05618293 1 2 -breadth_index%1:24:00:: 13820826 1 0 -breadthways%4:02:00:: 00280042 1 0 -breadthwise%4:02:00:: 00280042 1 0 -breadwinner%1:18:00:: 09873473 1 0 -break%1:04:00:: 00376400 6 1 -break%1:04:01:: 00383952 13 0 -break%1:04:02:: 00294748 14 0 -break%1:04:03:: 00500280 11 0 -break%1:04:04:: 00059989 16 0 -break%1:04:05:: 01062997 5 1 -break%1:04:06:: 00188007 15 0 -break%1:04:07:: 00482892 12 0 -break%1:11:00:: 07367812 1 3 -break%1:11:01:: 07316856 2 2 -break%1:11:02:: 07367548 9 0 -break%1:11:03:: 07313814 4 1 -break%1:11:04:: 07297633 10 0 -break%1:17:00:: 09278537 3 1 -break%1:26:00:: 14292090 8 0 -break%1:28:00:: 15271008 7 0 -break%2:29:04:: 00107739 57 0 -break%2:29:10:: 00030463 59 0 -break%2:29:11:: 00107604 58 0 -break%2:30:00:: 00334186 2 13 -break%2:30:01:: 00339464 53 0 -break%2:30:02:: 00362348 10 4 -break%2:30:03:: 00364064 1 15 -break%2:30:04:: 00558536 16 2 -break%2:30:05:: 00434374 17 2 -break%2:30:06:: 00258665 3 9 -break%2:30:07:: 00258366 55 0 -break%2:30:08:: 00155046 56 0 -break%2:30:09:: 00390215 21 1 -break%2:30:10:: 00334996 5 8 -break%2:30:11:: 00202569 12 3 -break%2:30:12:: 00202784 22 1 -break%2:30:14:: 00551412 52 0 -break%2:30:15:: 00336260 54 0 -break%2:31:05:: 00738314 51 0 -break%2:31:06:: 00738440 50 0 -break%2:32:00:: 00933821 15 2 -break%2:32:04:: 00779061 47 0 -break%2:32:05:: 00935987 46 0 -break%2:32:07:: 00744439 49 0 -break%2:32:13:: 00778745 48 0 -break%2:33:00:: 01106864 14 2 -break%2:35:00:: 01369346 42 0 -break%2:35:01:: 01369758 4 8 -break%2:35:04:: 01557646 41 0 -break%2:35:05:: 01298931 43 0 -break%2:35:09:: 01228396 45 0 -break%2:35:10:: 01610463 39 0 -break%2:35:11:: 01610666 38 0 -break%2:35:13:: 01228524 44 0 -break%2:35:14:: 01597995 40 0 -break%2:37:00:: 01785395 9 4 -break%2:38:00:: 01896484 37 0 -break%2:38:01:: 01972976 20 1 -break%2:38:02:: 02073233 7 4 -break%2:38:08:: 02029369 8 4 -break%2:38:09:: 01991347 35 0 -break%2:38:10:: 02030764 19 1 -break%2:38:11:: 01989053 36 0 -break%2:38:15:: 02101373 34 0 -break%2:40:07:: 02318165 33 0 -break%2:41:00:: 02566528 6 5 -break%2:41:01:: 02535716 18 1 -break%2:41:06:: 02399331 32 0 -break%2:41:09:: 02559395 29 0 -break%2:41:10:: 02478469 30 0 -break%2:41:11:: 02570684 11 3 -break%2:41:13:: 02431320 31 0 -break%2:41:15:: 02600082 28 0 -break%2:42:00:: 02668523 13 2 -break%2:42:03:: 02681524 26 0 -break%2:42:04:: 02681639 25 0 -break%2:42:05:: 02746449 24 0 -break%2:42:14:: 02625187 27 0 -break%2:42:15:: 02746617 23 0 -break-axe%1:20:00:: 12194613 1 0 -break-dance%2:38:00:: 01896484 1 0 -break-in%1:04:00:: 00785263 1 0 -break_apart%2:30:01:: 00368662 3 0 -break_apart%2:35:00:: 01562061 2 0 -break_apart%2:36:00:: 01657977 1 0 -break_away%2:35:00:: 01259691 2 1 -break_away%2:38:00:: 02075049 5 0 -break_away%2:38:01:: 02073233 1 2 -break_away%2:41:00:: 02535457 4 0 -break_away%2:41:01:: 02535716 3 0 -break_bread%2:34:00:: 01172545 1 0 -break_camp%2:38:00:: 02076857 1 2 -break_dance%1:04:00:: 00526412 1 0 -break_dance%2:38:00:: 01896484 1 0 -break_dancing%1:04:00:: 00526412 1 0 -break_down%2:29:00:: 00030647 8 0 -break_down%2:30:00:: 00434374 4 2 -break_down%2:30:09:: 00209174 7 0 -break_down%2:31:00:: 00643473 2 3 -break_down%2:33:00:: 01103836 1 3 -break_down%2:35:01:: 01370126 6 0 -break_down%2:37:00:: 01784295 3 2 -break_down%2:38:00:: 02041877 5 1 -break_even%2:38:00:: 02007237 2 1 -break_even%2:40:00:: 02280018 1 1 -break_in%2:30:00:: 00202569 6 0 -break_in%2:30:01:: 00335555 5 0 -break_in%2:30:03:: 00347804 3 2 -break_in%2:32:00:: 00780191 2 2 -break_in%2:35:00:: 01207817 4 0 -break_in%2:41:00:: 02570684 1 2 -break_into%2:30:00:: 00549396 2 2 -break_into%2:32:00:: 00986417 1 4 -break_loose%2:30:00:: 00306539 1 2 -break_loose%2:38:00:: 02074677 2 1 -break_of_day%1:28:00:: 15168790 1 1 -break_of_serve%1:04:00:: 00482892 1 0 -break_of_the_day%1:28:00:: 15168790 1 0 -break_off%2:30:00:: 00362348 2 2 -break_off%2:30:03:: 00362805 1 2 -break_off%2:35:00:: 01259458 5 0 -break_off%2:35:01:: 01259691 3 1 -break_off%2:35:02:: 01298931 4 0 -break_one's_back%2:41:00:: 02421199 1 1 -break_open%2:30:00:: 00307785 3 0 -break_open%2:30:01:: 00309310 2 0 -break_open%2:35:01:: 01346430 1 2 -break_out%2:30:00:: 00309074 5 1 -break_out%2:30:03:: 00346958 2 3 -break_out%2:30:04:: 00345508 1 4 -break_out%2:35:00:: 01485732 4 1 -break_out%2:38:00:: 02073233 3 2 -break_seal%1:06:00:: 02894431 1 3 -break_short%2:30:00:: 00362805 1 0 -break_someone's_heart%2:37:00:: 01792951 1 0 -break_through%2:30:00:: 00426749 2 1 -break_through%2:30:01:: 00548266 3 0 -break_through%2:30:02:: 00539770 1 3 -break_up%2:29:00:: 00030366 19 0 -break_up%2:30:00:: 00338071 16 0 -break_up%2:30:01:: 00355803 15 0 -break_up%2:30:02:: 00209174 18 0 -break_up%2:30:03:: 00447309 6 1 -break_up%2:30:04:: 00330565 17 0 -break_up%2:30:08:: 00364297 13 0 -break_up%2:30:09:: 00355955 14 0 -break_up%2:32:00:: 00778275 5 1 -break_up%2:35:01:: 01560984 10 0 -break_up%2:35:02:: 01562061 4 1 -break_up%2:35:03:: 01442578 11 0 -break_up%2:35:04:: 01215017 12 0 -break_up%2:35:10:: 01610463 9 0 -break_up%2:36:00:: 01657977 8 0 -break_up%2:37:04:: 01785579 7 0 -break_up%2:38:00:: 02029663 3 2 -break_up%2:38:01:: 02030424 1 5 -break_up%2:41:00:: 02431320 2 3 -break_water%2:38:00:: 01961510 1 0 -break_wind%2:29:00:: 00101629 1 0 -break_with%2:41:00:: 02431834 1 3 -breakability%1:07:00:: 05043755 1 0 -breakable%1:06:00:: 02894024 1 1 -breakable%3:00:00:: 00708017 1 0 -breakableness%1:07:00:: 04939324 1 0 -breakage%1:04:00:: 00376400 3 0 -breakage%1:21:00:: 13293512 2 0 -breakage%1:23:00:: 13754948 1 0 -breakaway%1:04:00:: 00385266 1 1 -breakaway%5:00:00:independent:00 00728619 1 0 -breakax%1:20:00:: 12194613 1 0 -breakaxe%1:20:00:: 12194613 1 0 -breakbone_fever%1:26:00:: 14129784 1 0 -breakdown%1:04:02:: 00553362 1 5 -breakdown%1:09:00:: 05781800 4 0 -breakdown%1:11:01:: 07421316 3 0 -breakdown%1:26:01:: 14066492 2 0 -breaker%1:06:00:: 03034244 3 0 -breaker%1:11:00:: 07344233 2 0 -breaker%1:18:00:: 09873604 1 0 -breaker_point%1:06:00:: 03213826 1 0 -breakers%1:11:00:: 07344233 1 0 -breakfast%1:13:00:: 07574602 1 12 -breakfast%2:34:00:: 01185740 1 2 -breakfast%2:34:01:: 01185875 2 0 -breakfast_area%1:06:00:: 02894158 1 0 -breakfast_food%1:13:00:: 07702642 1 0 -breakfast_nook%1:06:00:: 02894158 1 0 -breakfast_table%1:06:00:: 02894337 1 3 -breakfast_time%1:28:00:: 15165805 1 0 -breaking%1:04:00:: 00376400 1 1 -breaking_and_entering%1:04:00:: 00785263 1 0 -breaking_away%1:04:00:: 00053020 2 0 -breaking_away%1:04:01:: 00385266 1 2 -breaking_ball%1:04:00:: 00107875 1 0 -breaking_off%1:04:00:: 01068528 1 0 -breaking_point%1:19:00:: 11515526 2 0 -breaking_point%1:26:00:: 14376695 1 0 -breaking_wind%1:04:00:: 00839597 1 0 -breakneck%5:00:00:dangerous:00 02059280 1 0 -breakout%1:04:00:: 00059989 1 0 -breakstone%1:20:00:: 12793015 1 0 -breakthrough%1:04:01:: 00975955 3 0 -breakthrough%1:04:02:: 00151409 2 1 -breakthrough%1:09:00:: 05808218 1 1 -breakup%1:04:00:: 00215314 1 2 -breakup%1:11:00:: 07331400 2 1 -breakwater%1:06:00:: 02894605 1 2 -bream%1:05:00:: 02563182 4 0 -bream%1:05:02:: 02590702 3 0 -bream%1:13:01:: 07777189 2 0 -bream%1:13:02:: 07777358 1 0 -bream%2:35:00:: 01245229 1 0 -breast%1:05:00:: 01514431 4 0 -breast%1:08:00:: 05554405 2 2 -breast%1:08:01:: 05553288 1 6 -breast%1:13:00:: 07648408 3 0 -breast%2:33:00:: 01079172 3 0 -breast%2:38:01:: 02021149 2 0 -breast%2:42:00:: 02710244 1 0 -breast-deep%4:02:00:: 00258904 1 0 -breast-fed%3:00:00:: 00267145 1 0 -breast-high%4:02:00:: 00258904 1 0 -breast_cancer%1:26:00:: 14246899 1 0 -breast_drill%1:06:00:: 02894847 1 0 -breast_feeding%1:04:00:: 01058870 1 0 -breast_implant%1:06:00:: 02895008 1 0 -breast_of_lamb%1:13:00:: 07667480 1 0 -breast_of_veal%1:13:00:: 07665983 1 0 -breast_pocket%1:06:00:: 02895328 1 0 -breastbone%1:08:00:: 05281189 1 0 -breasted%3:00:00:: 02142592 1 0 -breastfeed%2:34:00:: 01186428 1 0 -breastless%3:00:00:: 02142983 1 0 -breastpin%1:06:00:: 02906438 1 0 -breastplate%1:06:00:: 02895154 1 0 -breaststroke%1:04:00:: 00571060 1 0 -breaststroke%2:38:00:: 01962178 1 0 -breaststroker%1:18:00:: 09873769 1 0 -breastwork%1:06:00:: 03889503 1 1 -breath%1:04:00:: 00835032 1 15 -breath%1:10:00:: 07163988 4 1 -breath%1:19:00:: 11432262 5 0 -breath%1:27:00:: 14841770 2 14 -breath%1:28:00:: 15274695 3 1 -breath_of_fresh_air%1:11:00:: 07357253 1 0 -breathalyse%2:41:00:: 02533597 1 0 -breathalyser%1:06:00:: 02895438 1 0 -breathalyze%2:41:00:: 02533597 1 0 -breathalyzer%1:06:00:: 02895438 1 0 -breathe%2:29:00:: 00001740 1 22 -breathe%2:29:01:: 00105333 9 0 -breathe%2:30:03:: 00239754 8 0 -breathe%2:32:00:: 00779360 7 0 -breathe%2:32:01:: 00941346 5 0 -breathe%2:32:03:: 00929703 6 0 -breathe%2:40:00:: 02325272 3 1 -breathe%2:42:00:: 02617083 2 1 -breathe%2:42:01:: 02751787 4 0 -breathe_in%2:29:00:: 00005041 1 1 -breathe_out%2:29:00:: 00004227 1 0 -breathed%5:00:00:inaudible:00 00174719 1 0 -breather%1:06:00:: 04250850 2 0 -breather%1:28:00:: 15274695 1 0 -breathing%1:04:00:: 00831191 1 5 -breathing%3:00:00:: 00267452 1 1 -breathing_apparatus%1:06:00:: 02895606 1 0 -breathing_device%1:06:00:: 02895606 1 0 -breathing_in%1:04:00:: 00836788 1 0 -breathing_machine%1:06:00:: 02895606 1 0 -breathing_out%1:04:00:: 00835267 1 0 -breathing_place%1:28:00:: 15274695 1 0 -breathing_room%1:23:00:: 13778089 1 0 -breathing_space%1:23:00:: 13778089 2 0 -breathing_space%1:28:00:: 15274695 1 1 -breathing_spell%1:28:00:: 15274695 1 0 -breathing_time%1:28:00:: 15274695 1 0 -breathless%3:00:00:: 00267871 1 5 -breathless%5:00:00:dead:01 00096595 3 0 -breathless%5:00:00:exciting:00 00921369 2 1 -breathlessly%4:02:00:: 00219748 1 2 -breathlessness%1:26:00:: 14370122 1 0 -breathtaking%5:00:00:exciting:00 00921369 1 0 -breccia%1:27:00:: 14697839 1 0 -brecciate%2:30:00:: 00338964 2 0 -brecciate%2:35:00:: 01585021 1 0 -brecht%1:18:00:: 10863552 1 0 -breech%1:06:00:: 02895881 1 0 -breech-loading%3:01:00:: 02670572 1 0 -breech_birth%1:04:00:: 00185438 1 0 -breech_closer%1:06:00:: 02896074 1 0 -breech_delivery%1:04:00:: 00185438 1 0 -breech_presentation%1:04:00:: 00185438 1 0 -breechblock%1:06:00:: 02896074 1 0 -breechcloth%1:06:00:: 02896294 1 0 -breechclout%1:06:00:: 02896294 1 0 -breeched%5:00:00:clothed:00 00454984 1 0 -breeches%1:06:00:: 02896442 1 1 -breeches_buoy%1:06:00:: 02896694 1 0 -breechloader%1:06:00:: 02896856 1 0 -breed%1:09:00:: 05839547 2 0 -breed%1:14:00:: 08101410 1 1 -breed%2:29:00:: 00056334 4 0 -breed%2:35:00:: 01430447 2 1 -breed%2:35:01:: 01429455 3 0 -breed%2:36:00:: 01649024 1 1 -breed's_hill%1:15:00:: 09096343 1 0 -breeder%1:18:00:: 09873899 1 0 -breeder_reactor%1:06:00:: 02896949 1 0 -breeding%1:04:00:: 00849523 5 0 -breeding%1:04:01:: 01129532 3 0 -breeding%1:04:02:: 00914929 4 0 -breeding%1:07:02:: 04921900 2 0 -breeding%1:07:03:: 04813540 1 1 -breeding%5:00:00:fruitful:00 01081068 1 1 -breeding_ground%1:15:00:: 08516885 1 0 -breeze%1:04:00:: 00575365 2 0 -breeze%1:19:00:: 11431754 1 6 -breeze%2:38:00:: 01894520 2 0 -breeze%2:43:00:: 02769480 1 0 -breeze_block%1:06:00:: 03031957 1 0 -breeze_through%2:41:00:: 02522581 1 0 -breezily%4:02:00:: 00280168 1 0 -breeziness%1:07:00:: 04633797 2 0 -breeziness%1:26:00:: 14523787 1 0 -breezy%5:00:00:lively:00 00805566 1 0 -breezy%5:00:00:stormy:00 00305225 2 0 -bregma%1:08:00:: 05231769 1 0 -bregmatic%3:01:00:: 02670678 1 0 -breiz%1:15:00:: 08941208 1 0 -bremen%1:15:00:: 08770013 1 0 -bremerhaven%1:15:00:: 08770274 1 0 -bren%1:06:00:: 02897097 1 0 -bren_gun%1:06:00:: 02897097 1 0 -brenner_pass%1:17:00:: 09228928 1 0 -brent%1:05:00:: 01857325 1 0 -brent_goose%1:05:00:: 01857325 1 0 -brer_rabbit%1:18:00:: 09590980 1 0 -brescia%1:15:00:: 08804845 1 0 -breslau%1:15:00:: 08984332 1 0 -brest%1:15:00:: 08934694 1 0 -bret_harte%1:18:00:: 11032840 1 0 -bretagne%1:15:00:: 08941208 1 0 -brethren%1:14:00:: 08147670 1 0 -breton%1:10:00:: 06961771 2 0 -breton%1:18:00:: 09709001 1 0 -breuer%1:18:00:: 10863717 1 0 -breughel%1:18:00:: 10868177 1 0 -breughel_the_elder%1:18:00:: 10868177 1 0 -breve%1:10:00:: 06822831 1 0 -brevet%1:10:00:: 06471069 1 0 -brevet%2:41:00:: 02554797 1 0 -breviary%1:10:00:: 06417096 1 0 -brevibloc%1:06:00:: 03296759 1 0 -brevicipitidae%1:05:00:: 01652583 1 0 -brevity%1:07:00:: 05053042 2 1 -brevity%1:10:00:: 07089431 1 1 -brevoortia%1:05:00:: 02531503 1 0 -brevoortia_tyrannis%1:05:00:: 02531625 1 0 -brew%1:13:00:: 07886572 1 0 -brew%2:30:00:: 00327813 2 0 -brew%2:36:00:: 01663920 1 0 -brewage%1:13:00:: 07886572 1 0 -brewer%1:18:00:: 09874014 2 0 -brewer%1:18:01:: 09874118 1 0 -brewer's_mole%1:05:00:: 01890144 1 0 -brewer's_mountain_heather%1:20:00:: 12243109 1 0 -brewer's_spruce%1:20:00:: 11625223 1 0 -brewer's_yeast%1:20:00:: 13025854 2 0 -brewer's_yeast%1:27:00:: 14784705 1 0 -brewery%1:06:00:: 02897237 1 0 -brewing%1:04:00:: 00915140 1 0 -brewpub%1:06:00:: 02897389 1 0 -brezhnev%1:18:00:: 10863896 1 0 -briar%1:06:00:: 02897572 4 0 -briar%1:20:01:: 12227658 3 0 -briar%1:20:02:: 12470512 2 0 -briar%1:20:03:: 12621619 1 0 -briar_pipe%1:06:00:: 02897572 1 0 -briard%1:05:00:: 02105251 1 0 -briarroot%1:20:00:: 12227909 1 0 -briarwood%1:20:00:: 12228045 1 0 -briary%5:00:00:armed:02 00145083 1 0 -bribable%5:00:00:corrupt:00 00621207 1 0 -bribe%1:21:00:: 13284562 1 1 -bribe%2:40:00:: 02284096 1 1 -briber%1:18:00:: 09874260 1 1 -bribery%1:04:00:: 00776262 1 0 -bric-a-brac%1:06:00:: 02897692 1 1 -brick%1:06:00:: 02897820 1 7 -brick%1:18:00:: 09874428 2 1 -brick-shaped%5:00:00:cubic:00 00657726 1 0 -brick_cheese%1:13:00:: 07852712 1 0 -brick_in%2:35:00:: 01390078 1 0 -brick_over%2:35:00:: 01390078 1 0 -brick_red%1:07:00:: 04973585 1 0 -brick_trowel%1:06:00:: 02898269 1 0 -brick_up%2:35:00:: 01390078 1 0 -brickbat%1:10:00:: 06710960 2 0 -brickbat%1:17:00:: 09229158 1 0 -brickellia%1:20:00:: 11942144 1 0 -brickfield%1:06:00:: 02898478 1 0 -brickkiln%1:06:00:: 02898093 1 0 -bricklayer%1:18:00:: 09874518 1 1 -bricklayer's_hammer%1:06:00:: 02898173 1 0 -bricklaying%1:04:00:: 00607458 1 2 -brickle%5:00:00:breakable:00 00708498 1 0 -brickly%5:00:00:breakable:00 00708498 1 0 -bricks_and_mortar%1:27:00:: 14785065 1 0 -brickwork%1:06:00:: 02898369 1 0 -brickyard%1:06:00:: 02898478 1 0 -bricole%1:06:00:: 02981911 1 0 -bridal%1:04:00:: 01037469 1 0 -bridal%3:01:00:: 02843382 2 0 -bridal%3:01:01:: 02843495 1 0 -bridal-wreath%1:20:01:: 12659539 2 0 -bridal-wreath%1:20:02:: 12797860 1 0 -bridal_gown%1:06:00:: 02898585 1 0 -bridal_wreath%1:20:01:: 12659539 2 0 -bridal_wreath%1:20:02:: 12797860 1 0 -bride%1:18:00:: 09874618 1 3 -bride%1:18:01:: 09874725 3 0 -bride%1:18:02:: 10864204 2 0 -bride's_bonnet%1:20:00:: 12472778 1 0 -bride-gift%1:21:00:: 13269596 1 1 -bride-to-be%1:18:00:: 10085970 1 0 -bride_price%1:21:00:: 13265603 1 0 -bridecake%1:13:00:: 07632802 1 0 -bridegroom%1:18:00:: 10147935 1 1 -bridegroom%1:18:01:: 10148035 2 0 -bridesmaid%1:18:00:: 09874862 1 0 -bridge%1:04:00:: 00490569 5 1 -bridge%1:06:00:: 02898711 1 4 -bridge%1:06:01:: 02899257 9 0 -bridge%1:06:02:: 02899439 8 0 -bridge%1:06:03:: 02899569 7 0 -bridge%1:06:04:: 02899694 6 0 -bridge%1:06:05:: 02899808 2 3 -bridge%1:08:00:: 05599203 4 1 -bridge%1:24:00:: 13793330 3 2 -bridge%2:35:00:: 01296324 2 1 -bridge%2:38:00:: 01915131 3 0 -bridge%2:42:00:: 02623194 1 3 -bridge_agent%1:18:00:: 09875025 1 0 -bridge_circuit%1:06:00:: 02899808 1 0 -bridge_deck%1:06:00:: 02899257 1 0 -bridge_hand%1:14:00:: 07957327 1 0 -bridge_over%2:42:00:: 02623194 2 0 -bridge_over%2:42:01:: 02623346 1 0 -bridge_partner%1:18:00:: 09875188 1 0 -bridge_player%1:18:00:: 09875353 1 0 -bridge_whist%1:04:00:: 00491037 1 0 -bridgeable%3:00:00:: 00278266 1 0 -bridged-t%1:06:00:: 02900011 1 1 -bridgehead%1:15:00:: 08689028 1 1 -bridgehead%1:15:01:: 08517010 2 0 -bridgeport%1:15:00:: 09068921 1 0 -bridges%1:18:00:: 10864064 1 0 -bridget%1:18:00:: 10864204 1 0 -bridgetown%1:15:00:: 08755664 1 0 -bridgework%1:06:00:: 02899569 1 0 -bridle%1:04:00:: 01146039 2 0 -bridle%1:06:00:: 02900160 1 4 -bridle%2:32:00:: 01056918 3 0 -bridle%2:35:00:: 01300655 2 0 -bridle%2:37:00:: 01786292 1 0 -bridle_at%2:32:00:: 00848894 1 0 -bridle_path%1:06:00:: 02900459 1 0 -bridle_road%1:06:00:: 02900459 1 0 -bridle_up%2:32:00:: 00848894 1 0 -bridoon%1:06:00:: 02900594 1 0 -brie%1:13:00:: 07852614 1 0 -brief%1:10:00:: 06468640 2 0 -brief%1:10:01:: 06543781 1 2 -brief%2:32:00:: 00831273 1 1 -brief%5:00:00:concise:00 00547166 2 6 -brief%5:00:00:short:01 01436432 3 1 -brief%5:00:00:short:02 01442826 1 12 -briefcase%1:06:00:: 02900705 1 3 -briefcase_bomb%1:06:00:: 02900857 1 0 -briefcase_computer%1:06:00:: 02900987 1 0 -briefing%1:10:00:: 07217782 1 1 -briefless%5:00:00:unpatronized:00 01739080 1 0 -briefly%4:02:00:: 00092682 1 10 -briefly%4:02:03:: 00289860 2 9 -briefness%1:07:00:: 05053042 2 0 -briefness%1:07:01:: 05134238 1 0 -briefs%1:06:00:: 02901114 1 0 -brier%1:20:01:: 12227658 5 0 -brier%1:20:02:: 12470512 4 0 -brier%1:20:03:: 12621619 3 0 -brier%1:20:04:: 12621836 1 2 -brier%1:20:06:: 13090018 2 0 -brier-wood%1:20:00:: 12228045 1 0 -brier_patch%1:20:00:: 12621836 1 0 -brierpatch%1:20:00:: 12621836 1 0 -brierwood%1:20:00:: 12228045 1 0 -briery%5:00:00:armed:02 00145083 1 0 -brig%1:06:00:: 02901259 2 0 -brig%1:06:01:: 02901377 1 1 -brigade%1:14:00:: 08213978 1 19 -brigade%2:33:00:: 01090216 1 0 -brigadier%1:18:00:: 09875540 1 4 -brigadier_general%1:18:00:: 09875540 1 1 -brigand%1:18:00:: 09837088 1 0 -brigandine%1:06:00:: 02901481 1 0 -brigantine%1:06:00:: 02901620 1 0 -brigate_rosse%1:14:00:: 08041484 1 0 -brigham_young%1:18:00:: 11403220 1 0 -bright%3:00:00:: 00278551 1 16 -bright%3:00:02:: 00284930 7 0 -bright%4:02:00:: 00077168 1 1 -bright%5:00:00:auspicious:00 00176387 10 0 -bright%5:00:00:colorful:00 00402855 2 6 -bright%5:00:00:glorious:00 01121238 6 1 -bright%5:00:00:happy:00 01149050 9 0 -bright%5:00:00:intelligent:00 01335458 3 5 -bright%5:00:00:light:06 00271022 4 3 -bright%5:00:00:polished:00 01812237 5 1 -bright%5:00:00:reverberant:00 02009688 8 0 -bright's_disease%1:26:00:: 14113798 1 0 -bright-red%5:00:00:chromatic:00 00371841 1 0 -bright_as_a_new_penny%5:00:00:bright:00 00281075 1 0 -bright_blue%5:00:00:chromatic:00 00370267 1 1 -bright_side%1:12:00:: 07493095 1 0 -brighten%2:30:01:: 00312815 1 1 -brighten%2:43:00:: 02771169 2 0 -brightly%4:02:00:: 00077168 1 1 -brightly-colored%5:00:00:colored:00 00396523 1 0 -brightly-coloured%5:00:00:colored:00 00396523 1 0 -brightness%1:07:00:: 04952242 1 11 -brightness%1:07:02:: 05018103 3 0 -brightness%1:09:00:: 05620955 2 0 -brightness_constancy%1:09:00:: 05709148 1 0 -brightness_level%1:07:00:: 05018103 1 0 -brighton%1:15:00:: 08878533 1 0 -brigid%1:18:00:: 10864204 1 0 -brigit%1:18:00:: 09508474 1 0 -brigit_nilsson%1:18:00:: 11207768 1 0 -brihaspati%1:18:00:: 09525065 1 0 -brill%1:05:00:: 02662993 1 0 -brilliance%1:07:00:: 04952570 1 1 -brilliance%1:07:01:: 04814238 2 1 -brilliance%1:09:00:: 05619743 3 0 -brilliancy%1:07:00:: 04954920 1 1 -brilliant%5:00:00:bright:00 00281173 5 2 -brilliant%5:00:00:colorful:00 00402855 4 2 -brilliant%5:00:00:impressive:00 01285376 3 2 -brilliant%5:00:00:intelligent:00 01335156 2 7 -brilliant%5:00:00:reverberant:00 02009688 6 1 -brilliant%5:00:00:superior:02 02342608 1 11 -brilliant_pebble%1:06:00:: 02901901 1 0 -brilliantine%1:06:00:: 02901793 1 0 -brilliantly%4:02:00:: 00077042 2 1 -brilliantly%4:02:01:: 00077168 1 3 -brim%1:06:00:: 02902079 2 0 -brim%1:06:01:: 02902250 1 1 -brim%2:30:00:: 00182269 2 0 -brim%2:42:00:: 02715812 1 0 -brim_over%2:38:00:: 02072159 1 1 -brimful%5:00:00:full:00 01084091 1 0 -brimfull%5:00:00:full:00 01084091 1 0 -brimless%3:01:00:: 02670812 1 0 -brimming%5:00:00:full:00 01084091 1 0 -brimstone%1:27:00:: 14785325 1 0 -brinded%5:00:00:patterned:00 01787548 1 0 -brindisi%1:15:00:: 08807894 1 0 -brindle%5:00:00:patterned:00 01787548 1 3 -brindled%5:00:00:patterned:00 01787548 1 0 -brine%1:13:00:: 07937203 2 0 -brine%1:27:00:: 15008847 1 0 -brine%2:30:00:: 00216561 1 0 -brine-cured%5:00:00:preserved:02 01073311 1 0 -brine_shrimp%1:05:00:: 01995686 1 0 -brinell_number%1:23:00:: 13609948 1 0 -bring%2:30:00:: 00135857 5 9 -bring%2:32:03:: 00767334 11 0 -bring%2:35:00:: 01433294 4 19 -bring%2:35:02:: 01434140 6 4 -bring%2:35:04:: 01438902 2 55 -bring%2:36:00:: 01629589 3 31 -bring%2:36:01:: 01618547 7 3 -bring%2:37:05:: 01808218 10 0 -bring%2:38:00:: 02077656 1 122 -bring%2:40:00:: 02247390 9 1 -bring%2:40:02:: 02324478 8 2 -bring_about%2:36:03:: 01752884 2 0 -bring_about%2:38:00:: 02090679 1 0 -bring_around%2:29:00:: 00022099 3 0 -bring_around%2:29:01:: 00081725 2 0 -bring_around%2:32:00:: 00767122 1 0 -bring_back%2:29:00:: 00022099 2 1 -bring_back%2:38:00:: 02078294 1 6 -bring_down%2:30:00:: 00429060 6 0 -bring_down%2:32:00:: 00748282 3 1 -bring_down%2:37:00:: 01830307 5 0 -bring_down%2:38:00:: 01981036 4 0 -bring_down%2:38:01:: 01973125 1 3 -bring_down%2:41:00:: 02402409 2 1 -bring_forth%2:29:00:: 00054628 4 1 -bring_forth%2:36:00:: 01752495 3 1 -bring_forth%2:36:01:: 01627355 1 2 -bring_forth%2:39:00:: 02141146 2 1 -bring_forward%2:32:00:: 01025455 2 1 -bring_forward%2:38:00:: 01993926 1 1 -bring_home%2:30:00:: 00543161 1 3 -bring_home%2:40:00:: 02289854 2 0 -bring_home_the_bacon%2:40:00:: 02219442 2 0 -bring_home_the_bacon%2:41:00:: 02524171 1 0 -bring_in%2:38:00:: 02078591 1 18 -bring_in%2:38:01:: 02080783 5 0 -bring_in%2:40:00:: 02247390 3 1 -bring_in%2:40:01:: 02289295 2 4 -bring_in%2:40:03:: 02262932 4 0 -bring_off%2:41:00:: 02522864 1 0 -bring_on%2:36:00:: 01644050 1 6 -bring_on%2:36:01:: 01644238 3 0 -bring_on%2:39:00:: 02157100 2 0 -bring_oneself%2:41:00:: 02507278 1 3 -bring_out%2:30:00:: 00514463 4 1 -bring_out%2:32:00:: 00967625 3 1 -bring_out%2:32:01:: 01065115 8 0 -bring_out%2:32:06:: 00933821 9 0 -bring_out%2:35:00:: 01475301 2 2 -bring_out%2:35:01:: 01214597 7 0 -bring_out%2:37:00:: 01818669 6 0 -bring_out%2:39:00:: 02143283 1 9 -bring_out%2:39:01:: 02157100 5 0 -bring_outside%2:38:00:: 02084104 1 0 -bring_round%2:29:00:: 00022099 2 0 -bring_round%2:32:00:: 00767122 1 0 -bring_through%2:41:00:: 02551832 1 0 -bring_to%2:29:00:: 00022099 1 0 -bring_to_bear%2:41:00:: 02560999 1 4 -bring_together%2:35:01:: 01295275 1 6 -bring_together%2:35:02:: 01607072 2 3 -bring_up%2:29:00:: 00098346 8 0 -bring_up%2:32:00:: 01024190 7 0 -bring_up%2:32:06:: 01025246 6 0 -bring_up%2:36:00:: 01629958 1 3 -bring_up%2:38:00:: 01974062 4 1 -bring_up%2:38:02:: 01859854 5 1 -bring_up%2:41:00:: 02539788 2 2 -bring_up%2:41:01:: 02398161 3 1 -bringing%1:04:00:: 00317207 1 1 -bringing_close_together%1:04:00:: 00146277 1 0 -bringing_up%1:04:00:: 01129532 1 0 -brininess%1:07:00:: 04993604 1 0 -brinjal%1:20:00:: 12896000 1 0 -brink%1:07:00:: 05125193 3 0 -brink%1:15:00:: 08517127 2 0 -brink%1:25:00:: 13903738 1 1 -brinkmanship%1:10:00:: 06661243 1 0 -brinton%1:18:00:: 10864428 1 0 -briny%1:17:00:: 09345932 1 0 -briny%5:00:00:salty:00 01074062 1 0 -brio%1:07:00:: 04631700 1 0 -brioche%1:13:00:: 07691539 1 0 -briony%1:20:00:: 12163035 1 0 -brioschi%1:27:00:: 14777104 1 0 -briquet%1:06:00:: 02902411 1 0 -briquette%1:06:00:: 02902411 1 0 -bris%1:04:00:: 01031392 1 0 -brisance%1:19:00:: 11412179 1 0 -brisant%3:01:00:: 02670899 1 0 -brisbane%1:15:00:: 08832877 1 0 -brisbane_quandong%1:20:00:: 12192877 1 0 -brisk%2:30:00:: 00205766 1 0 -brisk%5:00:00:active:06 00035779 3 0 -brisk%5:00:00:energetic:00 00874226 1 2 -brisk%5:00:00:invigorating:00 01357027 2 1 -brisk_up%2:30:00:: 00205766 1 0 -brisken%2:30:00:: 00205766 1 0 -brisket%1:13:00:: 07657547 1 0 -briskly%4:02:00:: 00280283 1 4 -briskness%1:07:00:: 04632963 1 0 -brisling%1:05:00:: 02532918 2 0 -brisling%1:13:00:: 07798985 1 0 -briss%1:04:00:: 01031392 1 0 -bristle%1:05:00:: 01901610 2 1 -bristle%1:06:00:: 02902535 1 5 -bristle%2:31:00:: 00651298 4 0 -bristle%2:38:00:: 01983597 2 2 -bristle%2:42:00:: 02715595 1 3 -bristle%2:42:02:: 02715456 3 0 -bristle-pointed%5:00:00:pointed:00 01810453 1 0 -bristle_at%2:32:00:: 00848894 1 1 -bristle_brush%1:06:00:: 02902687 1 0 -bristle_fern%1:20:00:: 12952165 1 0 -bristle_grass%1:20:00:: 12134486 1 0 -bristle_up%2:32:00:: 00848894 1 0 -bristlecone_fir%1:20:00:: 11622771 1 0 -bristlecone_pine%1:20:00:: 11617272 1 0 -bristled%5:00:00:armed:02 00145083 1 0 -bristlegrass%1:20:00:: 12134486 1 0 -bristlelike%5:00:00:armed:02 00145628 1 0 -bristletail%1:05:00:: 02270200 1 0 -bristliness%1:07:00:: 04949799 1 0 -bristly%5:00:00:armed:02 00145083 2 0 -bristly%5:00:00:ill-natured:00 01135420 1 0 -bristly_locust%1:20:00:: 12567950 1 0 -bristly_oxtongue%1:20:00:: 12003167 1 0 -bristly_sarsaparilla%1:20:00:: 11798270 1 0 -bristly_sarsparilla%1:20:00:: 11798270 1 0 -bristol%1:15:00:: 08878708 1 0 -bristol_channel%1:17:00:: 09229249 1 0 -brit%1:05:01:: 02530188 2 0 -brit%1:05:02:: 01996895 3 0 -brit%1:18:00:: 09700964 1 0 -britain%1:15:00:: 08860123 1 2 -britannia_metal%1:27:00:: 14785436 1 0 -britannic%3:01:00:: 02958017 1 1 -britches%1:06:00:: 02902816 1 0 -brith%1:04:00:: 01031392 1 0 -briticism%1:10:00:: 07081473 1 0 -british%1:18:00:: 09732544 1 3 -british%3:01:00:: 03022177 1 11 -british_cabinet%1:14:00:: 08382056 1 0 -british_capacity_unit%1:23:00:: 13615557 1 0 -british_capital%1:15:00:: 08873622 1 0 -british_columbia%1:15:00:: 08822855 1 0 -british_commonwealth%1:14:00:: 08049989 1 0 -british_crown%1:10:00:: 06884337 1 0 -british_east_africa%1:15:00:: 08858529 1 0 -british_empire%1:15:00:: 08857682 1 0 -british_empiricism%1:09:00:: 05959263 1 0 -british_guiana%1:15:00:: 08948346 1 0 -british_honduras%1:15:00:: 08737521 1 0 -british_house_of_commons%1:14:00:: 08162691 1 0 -british_house_of_lords%1:14:00:: 08162860 1 0 -british_imperial_system%1:23:00:: 13577731 1 0 -british_isles%1:15:00:: 08858248 1 0 -british_labour_party%1:14:00:: 08261320 1 0 -british_monetary_unit%1:23:00:: 13686526 1 0 -british_parliament%1:14:00:: 08319408 1 0 -british_people%1:18:00:: 09732544 1 0 -british_pound%1:23:00:: 13686660 1 0 -british_pound_sterling%1:23:00:: 13686660 1 0 -british_shilling%1:23:00:: 13686877 1 0 -british_system%1:23:00:: 13577731 1 0 -british_thermal_unit%1:23:00:: 13726947 1 0 -british_virgin_islands%1:15:00:: 08754814 1 0 -british_west_africa%1:15:00:: 08858713 1 0 -british_west_indies%1:15:00:: 08747494 1 0 -britisher%1:18:00:: 09700964 1 0 -britishism%1:04:00:: 00413674 2 0 -britishism%1:10:00:: 07081473 1 0 -briton%1:18:00:: 09688366 2 0 -briton%1:18:01:: 09700964 1 0 -briton%3:01:00:: 03132826 1 0 -brits%1:18:00:: 09732544 1 0 -britt%1:05:01:: 02530188 1 0 -britt%1:05:02:: 01996895 2 0 -brittanic%1:10:00:: 06961399 1 0 -brittany%1:15:00:: 08941208 1 0 -brittany_spaniel%1:05:00:: 02101388 1 0 -britten%1:18:00:: 10864635 1 0 -brittle%1:13:00:: 07599783 1 0 -brittle%5:00:00:breakable:00 00708498 1 2 -brittle%5:00:00:coldhearted:00 02533682 2 0 -brittle%5:00:00:untempered:02 01522214 3 0 -brittle-star%1:05:00:: 02317781 1 0 -brittle_bladder_fern%1:20:00:: 13196003 1 0 -brittle_bush%1:20:00:: 11963932 1 0 -brittle_fern%1:20:00:: 13196003 1 0 -brittle_maidenhair%1:20:00:: 13207736 1 0 -brittle_maidenhair_fern%1:20:00:: 13207736 1 0 -brittle_star%1:05:00:: 02317781 1 0 -brittle_willow%1:20:00:: 12728322 1 0 -brittlebush%1:20:00:: 11963932 1 0 -brittleness%1:07:00:: 04939547 1 0 -brix_scale%1:23:00:: 13610046 1 0 -brno%1:15:00:: 08758334 1 0 -broach%1:06:00:: 02906438 1 0 -broach%2:32:00:: 00964911 1 0 -broached%5:00:00:tapped:00 01659762 1 0 -broad%1:18:00:: 09875663 1 0 -broad%3:00:04:: 02560548 1 14 -broad%5:00:00:broad-minded:00 00286837 8 0 -broad%5:00:00:clear:00 00428878 4 2 -broad%5:00:00:comprehensive:00 00526062 2 12 -broad%5:00:00:general:00 01101891 3 5 -broad%5:00:00:high:02 01211531 5 1 -broad%5:00:00:large:00 01384212 6 0 -broad%5:00:00:noticeable:00 01287160 7 0 -broad-bean%1:20:00:: 12576029 1 0 -broad-bean_plant%1:20:00:: 12576029 1 0 -broad-brimmed%5:00:00:wide:00 02561302 1 0 -broad-headed%5:00:00:brachycephalic:00 00262328 1 0 -broad-leafed%5:00:00:deciduous:00 00914269 1 0 -broad-leaved%5:00:00:deciduous:00 00914269 1 0 -broad-leaved_bottletree%1:20:00:: 12196527 1 0 -broad-leaved_dock%1:20:00:: 12604639 1 0 -broad-leaved_everlasting_pea%1:20:00:: 12540001 1 0 -broad-leaved_montia%1:20:00:: 11861238 1 0 -broad-leaved_plantain%1:20:01:: 12599435 2 0 -broad-leaved_plantain%1:20:02:: 12600095 1 0 -broad-leaved_twayblade%1:20:00:: 12071259 1 0 -broad-minded%3:00:00:: 00286578 2 0 -broad-minded%3:00:04:: 02155771 1 0 -broad-mindedly%4:02:00:: 00406868 1 0 -broad-mindedness%1:09:00:: 06204623 1 0 -broad-shouldered%5:00:00:robust:00 02038735 1 0 -broad_arrow%1:06:00:: 02902916 3 0 -broad_arrow%1:10:00:: 06818317 2 0 -broad_arrow%1:10:01:: 07271052 1 0 -broad_bean%1:13:00:: 07729384 4 0 -broad_bean%1:13:02:: 07801892 3 0 -broad_bean%1:20:00:: 12576029 2 0 -broad_bean%1:20:02:: 12576323 1 0 -broad_beech_fern%1:20:00:: 13230843 1 0 -broad_buckler-fern%1:20:00:: 13193143 1 0 -broad_gauge%1:06:00:: 02903964 1 0 -broad_hatchet%1:06:00:: 02904109 1 0 -broad_interpretation%1:09:00:: 05766698 1 0 -broad_jump%1:04:00:: 00440382 2 0 -broad_jump%1:11:00:: 07469609 1 0 -broad_leaved_centaury%1:20:00:: 12291564 1 0 -broad_leaved_goldenrod%1:20:00:: 12018530 1 0 -broadax%1:06:00:: 02903006 1 0 -broadaxe%1:06:00:: 02903006 1 0 -broadband%3:01:00:: 02671038 2 0 -broadband%3:01:01:: 02671202 1 0 -broadbill%1:05:01:: 01546506 4 0 -broadbill%1:05:02:: 01848976 3 0 -broadbill%1:05:03:: 01851375 2 0 -broadbill%1:05:04:: 02011281 1 0 -broadcast%1:10:00:: 06254007 1 3 -broadcast%1:10:01:: 06619428 2 0 -broadcast%2:32:00:: 00968211 3 0 -broadcast%2:32:01:: 00973056 1 2 -broadcast%2:35:00:: 01501184 2 0 -broadcast_area%1:15:00:: 08517204 1 0 -broadcast_journalist%1:18:00:: 09875979 1 0 -broadcast_medium%1:10:00:: 06264176 1 0 -broadcast_station%1:06:00:: 02903405 1 0 -broadcaster%1:06:00:: 02903204 2 0 -broadcaster%1:18:00:: 09875786 1 0 -broadcasting%1:10:00:: 06276697 2 0 -broadcasting%1:10:01:: 06264176 1 2 -broadcasting_company%1:14:00:: 08002015 1 1 -broadcasting_station%1:06:00:: 02903405 1 0 -broadcasting_studio%1:06:00:: 02903588 1 0 -broadcloth%1:06:00:: 02903727 2 0 -broadcloth%1:06:01:: 02903852 1 0 -broaden%2:30:00:: 00317468 4 1 -broaden%2:30:01:: 00317569 1 9 -broaden%2:30:02:: 00540235 2 1 -broaden%2:30:05:: 00436404 3 1 -broadening%1:04:00:: 00250597 2 1 -broadening%1:04:01:: 00407270 1 2 -broadening%1:22:00:: 13574804 3 0 -broadleaf%5:00:00:deciduous:00 00914269 1 0 -broadloom%1:06:00:: 02904233 1 0 -broadloom%5:00:00:seamless:00 02254434 1 0 -broadly%4:02:00:: 00221583 1 1 -broadly%4:02:01:: 00221795 2 0 -broadly_speaking%4:02:00:: 00221583 1 0 -broadness%1:07:00:: 05136343 1 0 -broadnosed%3:00:00:: 01408929 1 0 -broadsheet%1:10:00:: 07250339 1 0 -broadside%1:04:00:: 00988177 5 0 -broadside%1:06:00:: 02904348 4 0 -broadside%1:06:01:: 02904505 3 0 -broadside%1:10:00:: 07250339 1 1 -broadside%1:10:01:: 07233415 2 0 -broadside%2:35:00:: 01237231 1 0 -broadside%4:02:00:: 00453422 1 0 -broadside%5:00:00:side:00 02441373 1 0 -broadsword%1:06:00:: 02904640 1 0 -broadtail%1:05:00:: 02414043 2 0 -broadtail%1:27:00:: 14765148 1 0 -broadway%1:15:00:: 09122086 1 4 -broadwise%4:02:00:: 00280042 1 0 -brobdingnag%1:09:00:: 05627083 1 0 -brobdingnagian%3:01:00:: 02671423 1 0 -brobdingnagian%5:00:00:large:00 01387319 2 0 -broca%1:18:00:: 10864858 1 0 -broca's_aphasia%1:26:00:: 14098458 1 0 -broca's_area%1:08:00:: 05488385 1 0 -broca's_center%1:08:00:: 05488385 1 0 -broca's_convolution%1:08:00:: 05488385 1 0 -broca's_gyrus%1:08:00:: 05488385 1 0 -brocade%1:06:00:: 02904803 1 0 -brocade%2:36:00:: 01674243 1 0 -brocaded%5:00:00:adorned:00 00057149 1 1 -brocadopa%1:27:00:: 14605132 1 0 -broccoli%1:13:00:: 07714990 2 0 -broccoli%1:20:00:: 11876803 1 0 -broccoli_raab%1:13:00:: 07715407 2 0 -broccoli_raab%1:20:00:: 11878101 1 0 -broccoli_rabe%1:13:00:: 07715407 2 0 -broccoli_rabe%1:20:00:: 11878101 1 0 -brochette%1:06:00:: 02903126 1 0 -brochure%1:10:00:: 06413889 1 0 -brocket%1:05:01:: 02434712 1 0 -brocket%1:05:02:: 02431542 2 0 -brockhouse%1:18:00:: 10865140 1 0 -brodiaea%1:20:00:: 12445387 1 0 -brodiaea_elegans%1:20:00:: 12445628 1 0 -brodmann's_area%1:08:00:: 05488615 1 0 -brodmann's_area_17%1:08:00:: 05494617 1 0 -brogan%1:06:00:: 02904927 1 0 -broglie%1:18:00:: 10865329 1 0 -brogue%1:06:00:: 02904927 1 0 -broider%2:36:00:: 01667607 1 0 -broil%1:04:00:: 00246754 1 0 -broil%2:30:00:: 00328370 1 2 -broil%2:30:01:: 00544136 2 1 -broil%2:42:00:: 02755565 3 0 -broiled%5:00:00:cooked:00 00617033 1 0 -broiler%1:06:00:: 02905036 1 1 -broiler%1:13:00:: 07645242 2 0 -broiling%1:04:00:: 00246754 1 0 -broke%5:00:00:poor:00 02023287 1 2 -broken%3:00:01:: 00289082 1 16 -broken%3:00:02:: 00289983 2 1 -broken%3:00:03:: 00289594 4 0 -broken%5:00:00:damaged:00 00680156 11 0 -broken%5:00:00:destroyed:00 00735195 10 0 -broken%5:00:00:disorganized:00 01669246 8 0 -broken%5:00:00:distributed:00 00540366 12 0 -broken%5:00:00:humble:00 01893303 3 1 -broken%5:00:00:impaired:00 01274626 9 0 -broken%5:00:00:imperfect:00 01752692 7 0 -broken%5:00:00:incomplete:00 00524388 13 0 -broken%5:00:00:rough:00 02239746 6 0 -broken%5:00:00:tame:01 02388441 5 0 -broken-backed%5:00:00:convex:00 00537884 3 0 -broken-backed%5:00:00:damaged:00 00680395 1 1 -broken-backed%5:00:00:unfit:01 01018667 2 0 -broken-down%5:00:00:damaged:00 00679717 1 1 -broken-down%5:00:00:unserviceable:00 02124886 2 0 -broken-field%5:00:00:broken:02 00290337 1 0 -broken_arch%1:06:00:: 02905152 1 0 -broken_heart%1:12:00:: 07534847 1 0 -broken_home%1:14:00:: 07973373 1 0 -broken_in%5:00:00:tame:01 02388441 1 0 -broken_wind%1:26:00:: 14265350 1 0 -brokenhearted%5:00:00:sorrowful:00 01365103 1 0 -brokenheartedness%1:12:00:: 07535010 1 0 -broker%1:18:00:: 09777012 1 1 -broker%2:40:00:: 02261464 1 0 -broker-dealer%1:18:00:: 09876152 1 0 -brokerage%1:06:00:: 02905288 3 0 -brokerage%1:14:00:: 08069878 1 1 -brokerage%1:14:01:: 08057460 2 0 -brokerage_account%1:21:00:: 13351457 1 0 -brokerage_firm%1:14:00:: 08069878 1 0 -brokerage_house%1:06:00:: 02905288 1 0 -brolly%1:06:00:: 03415252 1 0 -bromate%2:30:00:: 00187016 2 0 -bromate%2:30:01:: 00525674 1 0 -bromberg%1:15:00:: 08983274 1 0 -brome%1:20:00:: 12110778 1 0 -bromegrass%1:20:00:: 12110778 1 0 -bromelia%1:20:00:: 12607717 1 0 -bromeliaceae%1:20:00:: 12606907 1 0 -bromeosin%1:27:00:: 14987484 1 0 -bromic%3:01:00:: 02671577 1 0 -bromic_acid%1:27:00:: 14785524 1 0 -bromide%1:10:00:: 07154046 2 0 -bromide%1:27:00:: 14785625 1 0 -bromidic%3:01:00:: 02671714 1 0 -bromidic%5:00:01:unoriginal:00 01689223 2 0 -brominate%2:30:00:: 00187016 2 0 -brominate%2:30:01:: 00525674 1 0 -bromine%1:27:00:: 14632129 1 0 -bromo-seltzer%1:27:00:: 14777188 1 0 -bromoform%1:27:00:: 14620549 1 0 -bromophenol_blue%1:27:00:: 14986719 1 1 -bromothymol_blue%1:27:00:: 14986890 1 0 -brompheniramine_maleate%1:06:00:: 02905422 1 0 -bromphenol_blue%1:27:00:: 14986719 1 0 -brompton_stock%1:20:00:: 11892817 1 0 -bromthymol_blue%1:27:00:: 14986890 1 0 -bromus%1:20:00:: 12110630 1 0 -bromus_arvensis%1:20:00:: 12111627 1 0 -bromus_inermis%1:20:00:: 12111043 1 0 -bromus_japonicus%1:20:00:: 12111744 1 0 -bromus_secalinus%1:20:00:: 12111238 1 0 -bromus_tectorum%1:20:00:: 12111399 1 0 -bronc%1:05:00:: 02380745 1 4 -bronchial%3:01:00:: 02948482 1 4 -bronchial_artery%1:08:00:: 05339047 1 25 -bronchial_asthma%1:26:00:: 14145911 1 0 -bronchial_pneumonia%1:26:00:: 14148231 1 0 -bronchial_tube%1:08:00:: 05531511 1 0 -bronchial_vein%1:08:00:: 05359695 1 0 -bronchiolar%3:01:00:: 02948774 1 1 -bronchiole%1:08:00:: 05531666 1 13 -bronchiolitis%1:26:00:: 14146459 1 1 -bronchitic%5:00:00:ill:01 02543324 1 0 -bronchitis%1:26:00:: 14146273 1 0 -broncho%1:05:00:: 02380745 1 0 -bronchodilator%1:06:00:: 02905612 1 0 -bronchopneumonia%1:26:00:: 14148231 1 0 -bronchoscope%1:06:00:: 02905886 1 0 -bronchoscopic%3:01:00:: 03141026 1 0 -bronchoscopic_smear%1:08:00:: 05266486 1 0 -bronchospasm%1:04:00:: 00226511 1 0 -bronchus%1:08:00:: 05531511 1 7 -bronco%1:05:00:: 02380745 1 0 -bronco_buster%1:18:00:: 09883630 1 0 -bronco_busting%1:04:00:: 00299826 1 0 -broncobuster%1:18:00:: 09883630 1 0 -bronislaw_kasper_malinowski%1:18:00:: 11151579 1 0 -bronislaw_malinowski%1:18:00:: 11151579 1 0 -bronte%1:18:00:: 10865567 3 0 -bronte%1:18:01:: 10865700 2 0 -bronte%1:18:02:: 10865860 1 0 -bronte_sisters%1:14:00:: 07989620 1 0 -brontosaur%1:05:00:: 01709484 1 0 -brontosaurus%1:05:00:: 01709484 1 0 -bronx%1:15:00:: 09119989 1 0 -bronx-whitestone_bridge%1:06:00:: 02906027 1 0 -bronx_cheer%1:10:00:: 07123870 1 0 -bronze%1:06:00:: 02906175 2 0 -bronze%1:27:00:: 14717275 1 2 -bronze%2:29:00:: 00103875 2 0 -bronze%2:30:00:: 00281913 1 0 -bronze%5:00:00:chromatic:00 00371945 1 1 -bronze%5:00:00:metallic:00 01528644 2 0 -bronze-red%5:00:00:chromatic:00 00372029 1 0 -bronze_age%1:28:00:: 15231263 2 0 -bronze_age%1:28:01:: 15231415 1 0 -bronze_medal%1:06:00:: 02906254 1 0 -bronze_star%1:10:00:: 06708304 1 0 -bronze_star_medal%1:10:00:: 06708304 1 0 -bronzed%5:00:00:brunet:00 00244958 1 3 -bronzed_diabetes%1:26:00:: 14206929 1 0 -bronzy%5:00:00:chromatic:00 00371945 1 0 -brooch%1:06:00:: 02906438 1 0 -brooch%2:35:00:: 01548576 1 0 -brood%1:14:00:: 07990824 1 10 -brood%2:29:00:: 00060185 5 0 -brood%2:31:00:: 00704249 1 5 -brood%2:37:00:: 01805384 4 0 -brood%2:42:00:: 02719016 3 0 -brood%2:42:01:: 02744061 2 1 -brood_bitch%1:05:00:: 02083780 1 0 -brood_hen%1:05:00:: 01792955 1 0 -brooder%1:06:00:: 03567066 1 0 -brooder_pneumonia%1:26:00:: 14260349 1 0 -brooding%1:12:00:: 07533607 2 1 -brooding%1:22:00:: 13441812 1 1 -brooding%5:00:00:thoughtful:00 02419434 1 3 -broodmare%1:05:00:: 02377603 1 0 -broody%1:05:00:: 01792955 1 0 -broody%5:00:00:oviparous:00 02519292 1 0 -broody%5:00:00:thoughtful:00 02419434 2 0 -broody_hen%1:05:00:: 01792955 1 1 -brook%1:17:00:: 09229409 1 3 -brook%2:31:00:: 00668099 1 1 -brook_thistle%1:20:00:: 11955040 1 0 -brook_trout%1:05:00:: 02538216 2 0 -brook_trout%1:13:00:: 07794893 1 0 -brooke%1:18:00:: 10865990 1 0 -brooklet%1:17:00:: 09229641 1 0 -brooklime%1:20:01:: 12890685 2 0 -brooklime%1:20:02:: 12891093 1 0 -brooklyn%1:15:00:: 09120087 1 6 -brooklyn_bridge%1:06:00:: 02906578 1 0 -brooks%1:18:00:: 10866090 1 0 -brookweed%1:20:01:: 12096563 2 0 -brookweed%1:20:02:: 12096674 1 0 -broom%1:06:00:: 02906734 1 3 -broom%1:20:00:: 12520864 2 0 -broom%1:20:02:: 12233529 3 0 -broom%2:35:00:: 01393714 1 0 -broom%2:35:01:: 01266375 2 0 -broom-weed%1:20:00:: 11974888 1 0 -broom_beard_grass%1:20:00:: 12133462 1 0 -broom_closet%1:06:00:: 02906963 1 0 -broom_grass%1:20:00:: 12108432 1 0 -broom_handle%1:06:00:: 02907082 1 0 -broom_palm%1:20:00:: 12597798 1 0 -broom_sedge%1:20:00:: 12108613 1 0 -broom_snakeroot%1:20:00:: 11974557 1 0 -broom_snakeweed%1:20:00:: 11974557 1 0 -broom_tree%1:20:00:: 12530439 1 0 -broomcorn%1:20:00:: 12139196 1 0 -broomcorn_millet%1:20:00:: 12127575 1 0 -broomrape_family%1:20:00:: 12874231 1 0 -broomstick%1:06:00:: 02907082 1 0 -broomweed%1:20:00:: 11974888 1 0 -brosme_brosme%1:05:00:: 02525382 1 0 -brosmius%1:05:00:: 02525287 1 0 -broth%1:13:00:: 07584593 2 0 -broth%1:13:01:: 07585208 1 0 -broth_of_a_boy%1:18:00:: 09876308 1 1 -broth_of_a_man%1:18:00:: 09876308 1 0 -brothel%1:06:00:: 04581595 1 2 -brothel_keeper%1:18:00:: 10279669 1 0 -brother%1:18:00:: 09876454 1 36 -brother%1:18:01:: 09876701 5 0 -brother%1:18:02:: 09876892 2 6 -brother%1:18:03:: 09877951 3 0 -brother%1:18:04:: 09877124 4 0 -brother-in-law%1:18:00:: 09877288 1 1 -brotherhood%1:12:00:: 07500042 3 1 -brotherhood%1:14:00:: 08075388 2 1 -brotherhood%1:14:01:: 08233056 4 0 -brotherhood%1:24:00:: 13814336 1 1 -brotherlike%3:00:00:: 00291471 1 0 -brotherly%3:00:00:: 00291471 1 1 -brotherly%4:02:00:: 00289088 1 0 -brotherly_love%1:07:00:: 04840405 1 0 -brotula%1:05:00:: 02559144 1 0 -brotulidae%1:05:00:: 02558980 1 0 -brougham%1:06:00:: 02907194 2 0 -brougham%1:06:01:: 02907296 1 0 -brouhaha%1:04:00:: 00552568 2 0 -brouhaha%1:11:00:: 07385660 1 0 -broussonetia%1:20:00:: 12403862 1 0 -broussonetia_papyrifera%1:20:00:: 12403994 1 0 -brow%1:08:00:: 05602548 1 9 -brow%1:08:01:: 05313535 2 3 -brow%1:15:00:: 08584787 3 2 -brow_ptosis%1:26:00:: 14559134 1 0 -browallia%1:20:00:: 12898774 1 0 -browbeat%2:32:00:: 01035199 2 0 -browbeat%2:37:00:: 01781520 1 1 -brown%1:06:00:: 02907985 4 0 -brown%1:07:00:: 04971928 1 2 -brown%1:18:00:: 10866217 3 0 -brown%1:18:01:: 10866385 2 0 -brown%2:30:00:: 00320246 1 1 -brown%2:30:01:: 00285705 2 0 -brown%5:00:00:brunet:00 00245112 2 0 -brown%5:00:00:chromatic:00 00372111 1 38 -brown-black%5:00:00:achromatic:00 00388249 1 0 -brown-gray%5:00:00:achromatic:00 00388350 1 0 -brown-green%5:00:00:chromatic:00 00372266 1 0 -brown-grey%5:00:00:achromatic:00 00388350 1 0 -brown-haired%5:00:00:brunet:00 00245319 1 0 -brown-nose%2:32:00:: 00881534 1 0 -brown-purple%5:00:00:chromatic:00 00372367 1 0 -brown-speckled%5:00:00:patterned:00 01787740 1 0 -brown-striped%5:00:00:patterned:00 01787842 1 0 -brown-tail_moth%1:05:00:: 02286425 1 0 -brown_algae%1:05:00:: 01402600 1 0 -brown_ash%1:20:00:: 12305089 1 0 -brown_bat%1:05:00:: 02146371 1 0 -brown_bear%1:05:00:: 02132136 1 0 -brown_bells%1:20:00:: 12453539 1 0 -brown_bent%1:20:00:: 12107002 1 0 -brown_betty%1:13:00:: 07618587 1 0 -brown_bread%1:13:01:: 07680761 2 0 -brown_bread%1:13:02:: 07682316 1 0 -brown_bullhead%1:05:00:: 02519472 1 0 -brown_butter%1:13:00:: 07849026 1 0 -brown_coal%1:27:00:: 14815263 1 0 -brown_creeper%1:05:00:: 01589718 1 0 -brown_cup%1:20:00:: 12968309 1 0 -brown_hickory%1:20:00:: 12320627 1 0 -brown_hyena%1:05:00:: 02117646 1 0 -brown_lacewing%1:05:00:: 02265330 1 0 -brown_lemming%1:05:00:: 02345078 1 0 -brown_oak%1:20:00:: 12199790 1 0 -brown_onion_sauce%1:13:00:: 07839864 1 0 -brown_pine%1:20:00:: 11652376 1 0 -brown_rat%1:05:00:: 02333546 1 0 -brown_rice%1:13:00:: 07804543 1 0 -brown_root_rot_fungus%1:20:00:: 13027879 1 0 -brown_rot%1:26:00:: 14278773 1 0 -brown_rot_gummosis%1:26:00:: 14278953 1 0 -brown_sauce%1:13:01:: 07836077 2 0 -brown_sauce%1:13:02:: 07836456 1 0 -brown_snail%1:05:00:: 01945143 1 0 -brown_soft_scale%1:05:00:: 02249134 1 0 -brown_study%1:09:00:: 05701107 1 0 -brown_sugar%1:13:00:: 07596452 1 0 -brown_swiss%1:05:00:: 02406533 1 0 -brown_thrasher%1:05:00:: 01588002 1 0 -brown_thrush%1:05:00:: 01588002 1 0 -brown_trout%1:05:00:: 02537319 1 0 -brown_university%1:06:00:: 02907985 1 0 -browne%1:18:00:: 10866571 2 0 -browne%1:18:01:: 10866738 1 0 -browned%5:00:00:brunet:00 00245112 1 0 -browned_off%5:00:00:displeased:00 01806483 1 0 -brownian_motion%1:19:00:: 11433140 1 0 -brownian_movement%1:19:00:: 11433140 1 0 -brownie%1:13:00:: 07636271 3 0 -brownie%1:18:00:: 09540739 2 0 -brownie%1:18:01:: 09877370 1 0 -brownie_mix%1:13:00:: 07593972 1 0 -browning%1:04:00:: 00246552 4 0 -browning%1:18:00:: 10866883 3 0 -browning%1:18:01:: 10867064 2 0 -browning%1:18:02:: 10867238 1 0 -browning_automatic_rifle%1:06:00:: 02907391 1 0 -browning_machine_gun%1:06:00:: 02907656 1 0 -brownish%5:00:00:chromatic:00 00372111 1 1 -brownish-black%5:00:00:achromatic:00 00388249 1 0 -brownish-gray%5:00:00:achromatic:00 00388350 1 0 -brownish-green%5:00:00:chromatic:00 00372266 1 0 -brownish-grey%5:00:00:achromatic:00 00388350 1 0 -brownish-orange%5:00:00:chromatic:00 00384099 1 0 -brownish-purple%5:00:00:chromatic:00 00372367 1 0 -brownish-red%5:00:00:chromatic:00 00377702 1 0 -brownish-speckled%5:00:00:patterned:00 01787740 1 0 -brownish-striped%5:00:00:patterned:00 01787842 1 0 -brownish-yellow%5:00:00:chromatic:00 00369504 1 0 -brownish_yellow%1:07:00:: 04966428 1 0 -brownness%1:07:00:: 04971928 1 0 -brownout%1:26:00:: 13984082 1 0 -brownshirt%1:18:00:: 09877443 1 0 -brownstone%1:06:00:: 02907873 2 0 -brownstone%1:27:00:: 14785840 1 0 -brownsville%1:15:00:: 09143321 1 0 -browntail%1:05:00:: 02286425 1 0 -browse%1:04:00:: 00839023 3 0 -browse%1:10:00:: 06598648 2 0 -browse%1:14:00:: 08437317 1 0 -browse%2:34:00:: 01174742 4 0 -browse%2:35:00:: 01315333 3 0 -browse%2:35:01:: 01576165 2 0 -browse%2:40:00:: 02326355 1 0 -browser%1:10:00:: 06571301 2 0 -browser%1:18:00:: 09877587 1 0 -browsing%1:04:00:: 00839023 2 0 -browsing%1:10:00:: 06598648 1 0 -bruce%1:18:00:: 10867473 2 0 -bruce%1:18:01:: 10867708 1 0 -bruce_lee%1:18:00:: 11124300 1 0 -brucella%1:05:00:: 01351170 1 0 -brucellosis%1:26:00:: 14261508 2 0 -brucellosis%1:26:01:: 14128029 1 1 -bruch%1:18:00:: 10867933 1 0 -bruchidae%1:05:00:: 02181863 1 0 -bruchus%1:05:00:: 02182220 1 0 -bruchus_pisorum%1:05:00:: 02182355 1 0 -brucine%1:27:00:: 14715189 1 0 -bruckenthalia%1:20:00:: 12232683 1 0 -bruckenthalia_spiculifolia%1:20:00:: 12232851 1 0 -bruckner%1:18:00:: 10868025 1 0 -bruegel%1:18:00:: 10868177 1 0 -brueghel%1:18:00:: 10868177 1 0 -bruges%1:15:00:: 08851034 1 0 -brugmansia%1:20:00:: 12899333 1 0 -brugmansia_arborea%1:20:00:: 12899537 1 0 -brugmansia_sanguinea%1:20:00:: 12899971 1 0 -brugmansia_suaveolens%1:20:00:: 12899752 1 0 -bruin%1:05:01:: 02132136 2 0 -bruin%1:05:02:: 02132320 1 0 -bruise%1:26:00:: 14288871 1 1 -bruise%2:30:00:: 00259560 4 0 -bruise%2:30:01:: 00339268 3 0 -bruise%2:35:00:: 01492725 1 2 -bruise%2:37:00:: 01793177 2 0 -bruiser%1:18:01:: 09878702 1 0 -bruising%5:00:00:forceful:00 00841800 2 0 -bruising%5:00:00:harmful:00 01160880 1 0 -bruit%2:32:00:: 01042228 1 1 -brule%1:18:00:: 09650989 1 0 -brumaire%1:28:00:: 15176161 1 0 -brumal%5:00:00:wintry:00 01256076 1 0 -brummagem%1:15:00:: 08877613 1 0 -brummagem%5:00:00:tasteless:02 02394366 1 0 -brummell%1:18:00:: 10868397 1 0 -brummie%1:18:00:: 09877750 1 0 -brummy%1:18:00:: 09877750 1 0 -brumous%5:00:00:cloudy:00 00461609 1 0 -brunanburh%1:04:00:: 01273081 1 0 -brunch%1:13:00:: 07574923 1 0 -brunch%2:34:00:: 01185604 1 0 -brunch_coat%1:06:00:: 02908123 1 0 -brunei%1:15:00:: 08896092 1 0 -brunei_dollar%1:23:00:: 13672462 1 0 -bruneian%1:18:00:: 09695514 1 0 -bruneian%3:01:00:: 03051035 1 0 -brunelleschi%1:18:00:: 10868562 1 0 -brunet%1:18:00:: 09877856 1 0 -brunet%3:00:00:: 00244503 1 0 -brunette%1:18:00:: 09877856 1 0 -brunette%3:00:00:: 00244503 1 0 -brunfelsia%1:20:00:: 12898959 1 0 -brunfelsia_americana%1:20:00:: 12899166 1 0 -brunhild%1:18:00:: 09590495 1 0 -brunn%1:15:00:: 08758334 1 0 -brunnhilde%1:18:00:: 09590495 1 0 -bruno%1:18:00:: 10868738 3 0 -bruno%1:18:01:: 10868980 2 0 -bruno%1:18:02:: 11127565 1 0 -bruno_of_toul%1:18:00:: 11127565 1 0 -bruno_walter%1:18:00:: 11372799 1 0 -brunswick%1:15:00:: 08772551 3 0 -brunswick%1:15:01:: 09093072 1 0 -brunswick%1:15:02:: 09077266 2 0 -brunswick_stew%1:13:00:: 07589543 1 0 -brunt%1:07:00:: 05035712 1 0 -brusa%1:15:00:: 09042213 1 0 -brush%1:04:00:: 00959376 6 0 -brush%1:04:02:: 00256620 8 0 -brush%1:04:03:: 00656386 7 0 -brush%1:04:04:: 00039545 9 0 -brush%1:05:00:: 02157954 5 0 -brush%1:06:00:: 02908217 2 8 -brush%1:06:01:: 02908605 4 0 -brush%1:11:00:: 07413714 3 1 -brush%1:14:00:: 08437515 1 11 -brush%2:30:00:: 00555780 5 1 -brush%2:35:00:: 01240720 2 10 -brush%2:35:01:: 01243809 1 11 -brush%2:35:02:: 01243982 3 5 -brush%2:35:10:: 01373718 6 0 -brush%2:38:00:: 01870043 4 2 -brush-footed_butterfly%1:05:00:: 02274822 1 0 -brush-off%1:04:00:: 00203649 1 0 -brush-tail_porcupine%1:05:00:: 02347274 1 0 -brush-tailed_phalanger%1:05:00:: 01881857 1 0 -brush-tailed_porcupine%1:05:00:: 02347274 1 0 -brush_aside%2:32:00:: 00800930 1 2 -brush_cut%1:08:00:: 05260714 1 1 -brush_discharge%1:19:00:: 11433297 1 0 -brush_down%2:32:00:: 00825648 1 0 -brush_fire%1:11:00:: 07303466 1 1 -brush_kangaroo%1:05:00:: 01877812 1 0 -brush_off%2:32:01:: 00800930 1 0 -brush_on%2:35:00:: 01265386 1 1 -brush_turkey%1:05:00:: 01801876 1 0 -brush_up%2:30:00:: 00473799 2 0 -brush_up%2:31:00:: 00696852 1 1 -brush_wolf%1:05:00:: 02114855 1 0 -brushed%5:00:00:groomed:00 02427412 2 1 -brushed%5:00:00:soft:01 01153141 3 0 -brushed%5:00:00:touched:00 02445207 1 1 -brushing%1:04:02:: 00256620 2 0 -brushing%1:04:03:: 00656386 1 2 -brushlike%5:00:00:armed:02 00145706 1 0 -brushup%1:04:00:: 00897811 1 0 -brushwood%1:14:00:: 08437515 2 0 -brushwood%1:27:00:: 14785197 1 0 -brushwork%1:09:00:: 05643491 1 0 -brushy%5:00:00:wooded:00 02573443 1 2 -brusk%5:00:00:discourteous:00 00640660 1 0 -brusque%5:00:00:discourteous:00 00640660 1 0 -brusquely%4:02:00:: 00279523 1 0 -brusqueness%1:07:00:: 04915462 1 0 -brussels%1:15:00:: 08850450 1 0 -brussels_biscuit%1:13:00:: 07689842 1 0 -brussels_carpet%1:06:00:: 02908773 1 0 -brussels_griffon%1:05:00:: 02112497 1 0 -brussels_lace%1:06:00:: 02908951 1 0 -brussels_sprout%1:20:00:: 11876432 1 0 -brussels_sprouts%1:13:00:: 07715221 1 0 -brut%5:00:00:dry:03 02368068 1 0 -brutal%5:00:00:direct:02 00765173 4 0 -brutal%5:00:00:inhumane:00 01263445 3 0 -brutal%5:00:00:intense:00 01510798 2 0 -brutal%5:00:01:inhumane:00 01263013 1 1 -brutalisation%1:04:00:: 00271879 3 0 -brutalisation%1:04:01:: 00733317 2 0 -brutalisation%1:26:00:: 14574675 1 0 -brutalise%2:30:00:: 00113853 3 0 -brutalise%2:30:01:: 00114052 2 0 -brutalise%2:41:00:: 02515934 1 0 -brutality%1:04:00:: 00424934 2 2 -brutality%1:07:00:: 04830689 1 2 -brutalization%1:04:00:: 00271879 3 0 -brutalization%1:04:01:: 00733317 2 0 -brutalization%1:26:00:: 14574675 1 0 -brutalize%2:30:00:: 00113853 3 0 -brutalize%2:30:01:: 00114052 2 0 -brutalize%2:41:00:: 02515934 1 0 -brutally%4:02:00:: 00201195 1 0 -brute%1:03:00:: 00015388 2 0 -brute%1:18:00:: 09845589 1 2 -brute%5:00:00:inhumane:00 01263445 1 1 -brutish%5:00:00:inhumane:00 01263445 1 0 -brutishly%4:02:00:: 00280427 1 0 -brutus%1:18:00:: 10869207 1 0 -bruxelles%1:15:00:: 08850450 1 0 -bruxism%1:04:00:: 00279534 1 0 -brya%1:20:00:: 11748936 1 0 -brya_ebenus%1:20:00:: 11749112 1 0 -bryaceae%1:20:00:: 11540970 1 0 -bryales%1:20:00:: 11540000 1 0 -bryan%1:15:00:: 09143549 2 0 -bryan%1:18:00:: 10869385 1 0 -bryan_donkin%1:18:00:: 10939630 1 0 -bryanthus%1:20:00:: 12233249 1 0 -bryanthus_taxifolius%1:20:00:: 12242850 1 0 -bryce_canyon_national_park%1:15:00:: 08603158 1 0 -brynhild%1:18:00:: 09590495 1 0 -bryonia_alba%1:20:00:: 12163279 1 0 -bryonia_dioica%1:20:00:: 12163456 1 0 -bryony%1:20:00:: 12163035 1 0 -bryophyta%1:20:00:: 11536778 1 0 -bryophyte%1:20:00:: 11537327 1 0 -bryophytic%3:01:00:: 03141177 1 0 -bryopsida%1:20:00:: 11538935 1 0 -bryozoa%1:05:00:: 02313495 1 0 -bryozoan%1:05:00:: 02313709 1 0 -brythonic%1:10:00:: 06961399 1 0 -bryum%1:20:00:: 11541111 1 0 -bs%1:10:00:: 06699579 1 0 -bsarch%1:10:00:: 06699685 1 0 -bse%1:26:00:: 14261846 1 0 -btu%1:23:00:: 13726947 1 0 -bubaline%3:01:00:: 02992363 1 0 -bubalus%1:05:00:: 02408217 1 0 -bubalus_bubalis%1:05:00:: 02408429 1 0 -bubalus_mindorensis%1:05:00:: 02409202 1 0 -bubble%1:06:00:: 02909053 4 0 -bubble%1:09:00:: 05896379 3 0 -bubble%1:09:01:: 05907251 2 0 -bubble%1:17:00:: 09229709 1 6 -bubble%2:29:00:: 00003431 5 0 -bubble%2:30:00:: 00519056 1 3 -bubble%2:30:01:: 00519229 4 0 -bubble%2:38:00:: 01969084 3 0 -bubble%2:39:00:: 02187922 2 0 -bubble-jet_printer%1:06:00:: 02909285 1 0 -bubble_and_squeak%1:13:00:: 07863229 1 0 -bubble_bath%1:04:00:: 00257969 1 0 -bubble_chamber%1:06:00:: 02909165 1 0 -bubble_dance%1:04:00:: 00531745 1 0 -bubble_gum%1:13:00:: 07600285 1 1 -bubble_gum_dermatitis%1:26:00:: 14222918 1 0 -bubble_jet_printer%1:06:00:: 02909285 1 0 -bubble_over%2:37:00:: 01763101 1 1 -bubble_pack%1:06:00:: 02852360 1 0 -bubble_shell%1:05:00:: 01952029 1 0 -bubble_up%2:38:00:: 01990946 1 0 -bubblejet%1:06:00:: 02909285 1 0 -bubbler%1:06:00:: 03241335 1 0 -bubbler%1:06:01:: 02909408 2 0 -bubbliness%1:07:00:: 04733347 1 0 -bubbling%5:00:00:effervescent:00 02276305 1 0 -bubbling%5:00:00:lively:00 00805810 2 0 -bubbly%1:13:00:: 07893642 1 0 -bubbly%5:00:00:effervescent:00 02276305 1 0 -bubbly%5:00:00:lively:00 00805676 2 0 -buber%1:18:00:: 10869683 1 0 -bubo%1:05:00:: 01622230 2 0 -bubo%1:26:00:: 14315722 1 0 -bubo_virginianus%1:05:00:: 01622483 1 0 -bubonic%3:01:00:: 03051194 1 0 -bubonic_plague%1:26:00:: 14139015 1 0 -bubulcus%1:05:00:: 02010144 1 0 -bubulcus_ibis%1:05:00:: 02010272 1 0 -buccal%3:01:00:: 02671795 1 0 -buccal%5:00:01:oral:00 01665457 3 0 -buccal%5:00:02:oral:00 01665581 2 0 -buccal_artery%1:08:00:: 05339168 1 0 -buccal_cavity%1:08:00:: 05302899 1 0 -buccaneer%1:18:00:: 10435367 1 0 -buccaneer%2:42:00:: 02616012 1 0 -buccaneering%1:04:00:: 00783527 1 0 -buccinator_muscle%1:08:00:: 05294068 1 0 -buccinidae%1:05:00:: 01947275 1 0 -bucconidae%1:05:00:: 01842380 1 0 -buccula%1:08:00:: 05599769 1 0 -bucephala%1:05:00:: 01850035 1 0 -bucephala_islandica%1:05:00:: 01850553 1 0 -bucephela_albeola%1:05:00:: 01850192 1 0 -bucephela_clangula%1:05:00:: 01850373 1 0 -buceros%1:05:00:: 01829288 1 0 -bucerotidae%1:05:00:: 01829143 1 0 -buchanan%1:18:00:: 10869931 1 0 -bucharest%1:15:00:: 08814474 1 0 -bucharesti%1:15:00:: 08814474 1 0 -buchenwald%1:06:00:: 02909543 1 0 -buchloe%1:20:00:: 12112488 1 0 -buchloe_dactyloides%1:20:00:: 12112609 1 0 -buchner%1:18:00:: 10870072 1 0 -buck%1:05:00:: 01888264 5 0 -buck%1:06:00:: 04140631 4 0 -buck%1:06:01:: 04524142 1 1 -buck%1:18:00:: 10870235 3 0 -buck%1:21:00:: 13395897 2 0 -buck%2:38:00:: 01884383 4 0 -buck%2:38:01:: 02055267 3 0 -buck%2:41:00:: 02378851 2 1 -buck%2:41:01:: 02531500 1 2 -buck's_fizz%1:13:00:: 07930315 1 0 -buck-and-wing%1:04:00:: 00528298 1 0 -buck-toothed%5:00:00:toothed:00 02438655 1 0 -buck_fever%1:12:00:: 07511524 1 0 -buck_private%1:18:00:: 10476467 1 0 -buck_sergeant%1:18:00:: 09777870 1 0 -buck_up%2:37:00:: 01806407 1 1 -buckaroo%1:18:00:: 09973209 1 0 -buckbean%1:20:00:: 12484784 1 0 -buckbean_family%1:20:00:: 12484413 1 0 -buckboard%1:06:00:: 02909706 1 2 -bucked_up%5:00:00:pleased:00 01805489 1 0 -buckeroo%1:18:00:: 09973209 1 0 -bucket%1:06:00:: 02909870 1 2 -bucket%1:23:00:: 13765749 2 0 -bucket%2:35:00:: 01433042 2 0 -bucket%2:35:01:: 01502441 1 0 -bucket_along%2:38:00:: 02058994 1 0 -bucket_seat%1:06:00:: 02910145 1 0 -bucket_shop%1:06:01:: 02910241 2 0 -bucket_shop%1:14:00:: 08070130 1 0 -bucketful%1:23:00:: 13765749 1 0 -buckeye%1:18:00:: 09745041 3 0 -buckeye%1:20:00:: 12768369 2 0 -buckeye%1:20:02:: 12768682 1 0 -buckeye_state%1:15:00:: 09130076 1 0 -bucking_bronco%1:05:00:: 02380875 1 0 -buckingham_palace%1:15:00:: 08875843 1 0 -buckle%1:06:00:: 02910353 1 2 -buckle%1:25:00:: 13885700 2 0 -buckle%2:30:00:: 00356954 3 1 -buckle%2:35:00:: 01548290 1 1 -buckle%2:35:01:: 01279186 2 1 -buckle_down%2:41:00:: 02421199 1 0 -buckle_under%2:32:00:: 00804476 1 0 -buckler%1:06:00:: 04192698 1 0 -buckler_fern%1:20:00:: 13192625 1 0 -buckler_mustard%1:20:00:: 11874878 1 0 -buckleya%1:20:00:: 12735817 1 0 -buckleya_distichophylla%1:20:00:: 12735817 1 0 -buckminster_fuller%1:18:00:: 10985440 1 0 -buckminsterfullerene%1:27:00:: 14622350 1 0 -buckram%1:06:00:: 02910542 1 0 -buckram%2:30:00:: 00417975 1 0 -buckram%5:00:00:formal:01 01043924 1 0 -bucksaw%1:06:00:: 02910701 1 0 -buckshee%5:00:00:unpaid:00 01710054 1 0 -buckshot%1:06:00:: 02843777 1 0 -buckskin%1:05:00:: 02381004 1 8 -buckskin%1:27:00:: 14760555 2 0 -buckskins%1:06:00:: 02910864 1 0 -buckthorn%1:20:01:: 12772753 2 0 -buckthorn%1:20:02:: 13141141 1 0 -buckthorn%1:20:03:: 12599185 3 0 -buckthorn_berry%1:20:00:: 13141415 1 0 -buckthorn_family%1:20:00:: 13140699 1 0 -bucktooth%1:08:00:: 05306390 1 0 -buckwheat%1:13:00:: 07803310 2 0 -buckwheat%1:20:00:: 12601494 1 0 -buckwheat_cake%1:13:00:: 07640653 1 0 -buckwheat_family%1:20:00:: 12600574 1 0 -buckwheat_tree%1:20:00:: 12751172 1 0 -buckyball%1:27:00:: 14622350 1 0 -bucolic%1:10:00:: 06379439 2 0 -bucolic%1:18:00:: 10410668 1 0 -bucolic%3:01:00:: 02895044 2 0 -bucolic%5:00:01:rural:00 02051179 1 1 -bucuresti%1:15:00:: 08814474 1 0 -bud%1:20:00:: 13165086 2 2 -bud%1:20:02:: 11674914 1 3 -bud%2:30:00:: 00357998 1 2 -bud%2:30:02:: 00345652 2 1 -bud_brush%1:20:00:: 11931135 1 0 -bud_sagebrush%1:20:00:: 11931135 1 0 -budapest%1:15:00:: 08952423 1 0 -buddha%1:18:00:: 09532214 1 3 -buddha%1:18:02:: 09532942 2 0 -buddhism%1:09:00:: 06240244 2 0 -buddhism%1:14:00:: 08098708 1 0 -buddhist%1:18:00:: 09683757 1 1 -buddhist%3:01:00:: 02924102 1 1 -buddhistic%3:01:00:: 02924102 1 0 -budding%1:22:00:: 13441959 1 0 -budding%5:00:00:undeveloped:00 00742620 1 0 -buddleia%1:20:00:: 12485653 1 0 -buddy%1:18:00:: 09877951 1 7 -buddy-buddy%5:00:00:close:02 00452114 1 0 -buddy_holly%1:18:00:: 11056654 1 0 -buddy_system%1:04:00:: 00389763 1 0 -budge%1:18:00:: 10870440 1 0 -budge%2:38:00:: 01893988 1 3 -budgereegah%1:05:00:: 01821869 1 0 -budgerigar%1:05:00:: 01821869 1 0 -budgerygah%1:05:00:: 01821869 1 0 -budget%1:21:02:: 13421832 1 4 -budget%1:21:03:: 13421462 2 3 -budget%2:31:00:: 00724029 1 2 -budget_cut%1:04:00:: 00352585 1 0 -budget_deficit%1:21:00:: 13396485 1 0 -budget_for%2:31:00:: 00723851 1 0 -budget_items%1:21:00:: 13277179 1 0 -budgetary%3:01:00:: 03022593 1 1 -budgie%1:05:00:: 01821869 1 0 -budorcas%1:05:00:: 02419515 1 0 -budorcas_taxicolor%1:05:00:: 02419634 1 0 -buena_vista%1:04:00:: 01273230 1 0 -buenos_aires%1:15:00:: 08712876 1 0 -buff%1:06:00:: 02910964 5 0 -buff%1:07:00:: 04973957 4 0 -buff%1:08:00:: 05239589 3 0 -buff%1:18:00:: 10077593 1 2 -buff%1:27:00:: 14760696 2 0 -buff%2:35:00:: 01246095 2 0 -buff%2:35:02:: 01417578 1 1 -buff%5:00:00:chromatic:00 00372476 1 0 -buff-brown%5:00:00:chromatic:00 00372571 1 0 -buff-colored%5:00:00:colored:00 00396627 1 0 -buff-coloured%5:00:00:colored:00 00396627 1 0 -buffalo%1:05:01:: 02407959 4 0 -buffalo%1:05:02:: 02410702 1 3 -buffalo%1:13:00:: 07663492 3 0 -buffalo%1:15:00:: 09118505 2 0 -buffalo%2:37:00:: 01780010 1 0 -buffalo_bill%1:18:00:: 10904270 1 0 -buffalo_bill's_wild_west_show%1:04:00:: 00523263 1 0 -buffalo_bill_cody%1:18:00:: 10904270 1 0 -buffalo_bur%1:20:00:: 12897341 1 0 -buffalo_carpet_beetle%1:05:00:: 02170599 1 0 -buffalo_chip%1:17:00:: 09243906 1 0 -buffalo_clover%1:20:00:: 11753562 2 0 -buffalo_clover%1:20:03:: 12547215 1 0 -buffalo_fish%1:05:00:: 01445429 1 0 -buffalo_gnat%1:05:00:: 02205673 1 0 -buffalo_gourd%1:20:00:: 12162425 1 0 -buffalo_grass%1:20:00:: 12112609 2 0 -buffalo_grass%1:20:02:: 12141167 1 0 -buffalo_indian%1:18:00:: 09649554 1 0 -buffalo_nut%1:20:01:: 12736999 2 0 -buffalo_nut%1:20:02:: 12737251 1 0 -buffalo_wing%1:13:00:: 07648913 1 0 -buffalofish%1:05:00:: 01445429 2 0 -buffalofish%1:13:00:: 07779263 1 0 -buffel_grass%1:20:00:: 12114010 1 0 -buffer%1:06:00:: 02911158 6 0 -buffer%1:06:01:: 02911332 5 0 -buffer%1:06:02:: 03328201 3 0 -buffer%1:06:03:: 02911485 4 0 -buffer%1:06:04:: 02910964 7 0 -buffer%1:15:00:: 08688424 2 0 -buffer%1:27:00:: 14785941 1 8 -buffer%2:30:00:: 00513344 1 5 -buffer%2:35:00:: 01576917 2 0 -buffer_country%1:15:00:: 08517327 1 0 -buffer_solution%1:27:00:: 14786110 1 0 -buffer_state%1:15:00:: 08517327 1 0 -buffer_storage%1:06:00:: 02911485 1 0 -buffer_store%1:06:00:: 02911485 1 0 -buffer_zone%1:15:00:: 08688424 1 0 -buffered_aspirin%1:06:00:: 02911890 1 0 -bufferin%1:06:00:: 02911890 1 0 -buffet%1:06:00:: 02912065 1 1 -buffet%1:06:01:: 04247736 3 0 -buffet%1:13:00:: 07576182 2 0 -buffet%2:35:00:: 01417705 1 3 -buffet%2:35:01:: 01417578 2 0 -buffet_car%1:06:00:: 03200357 1 0 -buffeted%5:00:00:troubled:00 02456530 1 0 -buffeting%1:11:00:: 07410526 1 0 -buffing_wheel%1:06:00:: 02912319 1 0 -bufflehead%1:05:00:: 01850192 1 0 -buffoon%1:18:00:: 09930876 2 0 -buffoon%1:18:01:: 09931165 1 1 -buffoonery%1:04:00:: 00513401 1 0 -buffoonish%5:00:00:humorous:00 01265108 1 0 -bufo%1:05:00:: 01646292 1 0 -bufo_americanus%1:05:00:: 01646802 1 0 -bufo_boreas%1:05:00:: 01647640 1 0 -bufo_bufo%1:05:00:: 01646555 1 0 -bufo_calamita%1:05:00:: 01646648 1 0 -bufo_canorus%1:05:00:: 01647180 1 0 -bufo_debilis%1:05:00:: 01647033 1 0 -bufo_marinus%1:05:00:: 01646388 1 0 -bufo_microscaphus%1:05:00:: 01647466 1 0 -bufo_speciosus%1:05:00:: 01647303 1 0 -bufo_viridis%1:05:00:: 01646902 1 0 -bufonidae%1:05:00:: 01645634 1 0 -bug%1:05:01:: 02236896 4 0 -bug%1:05:02:: 02236355 1 1 -bug%1:05:03:: 01384491 5 0 -bug%1:06:00:: 02912440 3 0 -bug%1:26:00:: 14464675 2 0 -bug%2:37:00:: 01803380 1 1 -bug%2:39:00:: 02188848 2 0 -bug-hunter%1:18:00:: 10059904 1 0 -bug_out%2:38:00:: 02081946 1 1 -bugaboo%1:09:00:: 05832621 2 0 -bugaboo%1:18:00:: 09488117 1 0 -buganda%1:15:00:: 09043411 1 0 -bugbane%1:20:00:: 11728530 2 0 -bugbane%1:20:02:: 12464649 1 0 -bugbear%1:09:00:: 05811662 2 0 -bugbear%1:18:00:: 09488117 1 0 -bugged%5:00:00:wired:00 02568738 1 0 -bugger%1:18:00:: 10621514 1 0 -bugger%2:41:00:: 02568392 1 0 -bugger_all%1:23:00:: 13740765 1 0 -bugger_off%2:38:00:: 02010864 1 0 -buggery%1:04:00:: 00849294 1 0 -bugginess%1:26:00:: 14472526 1 0 -buggy%1:06:00:: 02912557 1 2 -buggy%5:00:00:dirty:01 00421202 2 0 -buggy%5:00:00:insane:00 02074929 1 0 -buggy_whip%1:06:00:: 02912673 1 0 -bugle%1:06:00:: 02912894 1 3 -bugle%1:06:01:: 02913035 3 0 -bugle%1:20:00:: 12840749 2 0 -bugle%2:36:00:: 01726039 1 0 -bugle_call%1:10:00:: 06804199 1 0 -bugler%1:18:00:: 09878179 1 1 -bugleweed%1:20:01:: 12840749 2 0 -bugleweed%1:20:02:: 12852234 1 0 -bugloss%1:20:01:: 12817694 1 0 -bugloss%1:20:02:: 12003167 2 0 -bugologist%1:18:00:: 10059904 1 0 -bugology%1:09:00:: 06072275 1 0 -buhl%1:06:00:: 02878628 1 0 -build%1:07:00:: 04998530 1 2 -build%1:08:00:: 05217168 2 0 -build%2:30:00:: 00252990 2 11 -build%2:30:02:: 00447158 4 1 -build%2:30:05:: 00253277 9 0 -build%2:30:10:: 00226882 10 0 -build%2:31:03:: 00637115 8 0 -build%2:36:00:: 01654628 1 123 -build%2:36:04:: 01739099 6 0 -build%2:36:09:: 01655505 3 4 -build%2:36:10:: 01685601 7 0 -build%2:41:00:: 02443424 5 0 -build_in%2:30:00:: 00467151 1 0 -build_on%2:42:00:: 02663643 1 2 -build_up%2:30:00:: 00252990 2 6 -build_up%2:30:02:: 00154608 1 7 -build_up%2:30:03:: 00171852 5 0 -build_up%2:30:06:: 00253277 4 0 -build_up%2:33:00:: 01087197 3 2 -build_upon%2:42:00:: 02663643 1 0 -builder%1:18:00:: 09878275 3 0 -builder%1:18:01:: 09878559 2 0 -builder%1:27:00:: 15097209 1 11 -building%1:04:00:: 00911048 2 3 -building%1:04:01:: 01104637 3 1 -building%1:06:00:: 02913152 1 48 -building%1:14:00:: 07973241 4 0 -building_block%1:06:00:: 02914813 2 0 -building_block%1:17:00:: 09465459 1 0 -building_code%1:10:00:: 06668432 1 0 -building_complex%1:06:00:: 02914991 1 0 -building_department%1:14:00:: 08119226 1 0 -building_material%1:27:00:: 14786479 1 0 -building_permit%1:10:00:: 06550046 1 0 -building_site%1:15:00:: 08676622 1 0 -building_society%1:14:00:: 08422930 1 0 -building_supply_house%1:06:00:: 02915199 1 1 -building_supply_store%1:06:00:: 02915199 1 0 -buildup%1:04:00:: 00372226 1 3 -buildup%1:10:00:: 07247451 3 0 -buildup%1:22:00:: 13442168 2 0 -built%5:00:00:improved:00 01288690 1 4 -built-in%5:00:00:intrinsic:00 01348528 1 2 -built-in_bed%1:06:01:: 02915379 1 0 -built-soap_powder%1:06:00:: 04254535 1 0 -built-up%5:00:00:settled:01 02126332 1 0 -built_in_bed%1:06:00:: 02831724 1 0 -buirdly%5:00:00:robust:00 02038126 1 0 -bujumbura%1:15:00:: 08716517 1 0 -bukharin%1:18:00:: 10870691 1 0 -bulawayo%1:15:00:: 09167652 1 0 -bulb%1:06:00:: 03665924 2 2 -bulb%1:06:01:: 02915480 3 1 -bulb%1:08:01:: 05227079 6 0 -bulb%1:08:02:: 05495172 5 0 -bulb%1:20:00:: 13134059 1 2 -bulb%1:25:00:: 13864035 4 0 -bulb-shaped%5:00:00:round:00 02041807 1 0 -bulbaceous%3:01:00:: 03141315 1 0 -bulbar%3:01:00:: 03141487 1 0 -bulbar_conjunctiva%1:08:00:: 05315382 1 0 -bulbed%3:01:00:: 03141421 1 0 -bulbil%1:20:00:: 13134531 1 0 -bulblet%1:20:00:: 13134531 1 0 -bulblet_bladder_fern%1:20:00:: 13196369 1 0 -bulblet_fern%1:20:00:: 13196369 1 0 -bulblike%5:00:00:round:00 02041807 1 0 -bulbourethral_gland%1:08:00:: 05523629 1 0 -bulbous%5:00:00:protrusive:00 01353618 2 0 -bulbous%5:00:00:round:00 02041807 1 0 -bulbous_iris%1:20:00:: 12412850 1 0 -bulbous_plant%1:20:00:: 13134302 1 0 -bulbul%1:05:00:: 01560419 1 0 -bulgaria%1:15:00:: 08714132 1 1 -bulgarian%1:10:00:: 06945569 2 0 -bulgarian%1:18:00:: 09695620 1 0 -bulgarian%3:01:00:: 03051307 1 0 -bulgarian_capital%1:15:00:: 08714458 1 0 -bulgarian_monetary_unit%1:23:00:: 13685678 1 0 -bulge%1:25:00:: 13894434 1 3 -bulge%2:30:00:: 00263231 1 3 -bulge%2:30:01:: 00256369 4 0 -bulge%2:38:00:: 02081946 3 0 -bulge%2:42:00:: 02714360 2 0 -bulge_out%2:38:00:: 02081946 1 0 -bulghur%1:13:00:: 07803408 1 0 -bulginess%1:07:00:: 05070453 1 0 -bulging%3:00:06:: 00537339 1 1 -bulging%5:00:00:protrusive:00 01353618 2 1 -bulgur%1:13:00:: 07803408 1 0 -bulgur_pilaf%1:13:00:: 07873679 1 0 -bulgur_wheat%1:13:00:: 07803408 1 0 -bulgy%5:00:00:protrusive:00 01353618 1 0 -bulima_nervosa%1:26:00:: 14056685 1 0 -bulimarexia%1:26:00:: 14056685 1 0 -bulimia%1:26:00:: 14039828 2 0 -bulimia%1:26:01:: 14057001 1 0 -bulimic%1:18:00:: 09836057 1 0 -bulimic%3:01:00:: 02671885 1 0 -bulk%1:07:00:: 05099389 2 1 -bulk%1:07:02:: 05122557 1 5 -bulk%1:07:03:: 05025413 3 0 -bulk%2:30:00:: 00256369 2 0 -bulk%2:30:01:: 00263564 1 2 -bulk_large%2:42:00:: 02744061 1 0 -bulk_mail%1:10:00:: 06266077 1 0 -bulk_modulus%1:23:00:: 13588233 1 0 -bulkhead%1:06:00:: 02915675 1 0 -bulkiness%1:07:00:: 05104421 1 0 -bulky%5:00:00:large:00 01384438 1 4 -bull%1:04:00:: 00075790 4 1 -bull%1:05:01:: 02403325 1 2 -bull%1:05:02:: 01887623 11 0 -bull%1:10:00:: 06611376 3 1 -bull%1:10:01:: 06726761 10 0 -bull%1:15:00:: 08517449 9 0 -bull%1:15:01:: 08686332 8 0 -bull%1:18:00:: 09879144 5 0 -bull%1:18:01:: 09878921 6 0 -bull%1:18:02:: 09878702 2 1 -bull%1:18:03:: 09752381 7 0 -bull%2:30:00:: 00156139 4 0 -bull%2:32:00:: 00839526 3 0 -bull%2:40:00:: 02272373 2 0 -bull%2:41:00:: 02374449 1 1 -bull's-eye%1:06:00:: 03162297 1 0 -bull's_eye%1:04:00:: 00187144 1 13 -bull's_eye%1:04:01:: 00064789 3 1 -bull's_eye%1:15:00:: 08517449 2 2 -bull-snake%1:05:00:: 01733757 1 0 -bull_bay%1:20:00:: 11710136 1 0 -bull_fiddle%1:06:00:: 02803934 1 0 -bull_market%1:14:00:: 08073243 1 0 -bull_mastiff%1:05:00:: 02108422 1 0 -bull_moose_party%1:14:00:: 08262695 1 0 -bull_neck%1:08:00:: 05547313 1 0 -bull_nettle%1:20:00:: 12893993 1 0 -bull_nose%1:26:00:: 14262045 1 0 -bull_pine%1:20:00:: 11614420 1 0 -bull_run%1:04:00:: 01273491 2 0 -bull_run%1:15:00:: 09151800 1 0 -bull_session%1:10:00:: 07142924 1 0 -bull_shark%1:05:00:: 01489501 1 0 -bull_snake%1:05:00:: 01733757 1 0 -bull_terrier%1:05:00:: 02093056 1 0 -bull_thistle%1:20:00:: 11955153 1 0 -bull_through%2:41:00:: 02374449 1 0 -bull_tongue%1:06:00:: 02918204 1 0 -bulla%1:06:00:: 02915807 2 0 -bulla%1:08:00:: 05517837 1 0 -bullace%1:20:00:: 12639736 1 0 -bullace_grape%1:13:00:: 07759424 1 0 -bullate%5:00:00:rough:00 02239888 1 0 -bullbat%1:05:00:: 01836384 1 0 -bullbrier%1:20:00:: 12470512 1 0 -bulldog%1:05:00:: 02108672 1 0 -bulldog%2:33:00:: 01119030 1 0 -bulldog%2:33:01:: 01108815 2 0 -bulldog_ant%1:05:00:: 02222321 1 0 -bulldog_clip%1:06:00:: 02915904 1 0 -bulldog_wrench%1:06:00:: 02916065 1 0 -bulldoze%2:35:00:: 01575388 1 0 -bulldozer%1:06:00:: 02916179 1 0 -bullet%1:04:00:: 00108181 3 0 -bullet%1:06:00:: 02916350 1 35 -bullet%1:06:01:: 02917067 2 0 -bullet-headed%5:00:00:brachycephalic:00 00262444 2 0 -bullet-headed%5:00:00:stubborn:00 02327428 1 0 -bullet_fingerprinting%1:10:00:: 06423994 1 0 -bullet_hole%1:17:00:: 09229941 1 1 -bullet_train%1:06:00:: 02917067 1 0 -bullet_vote%2:41:00:: 02462858 1 0 -bullethead%1:08:00:: 05539370 1 1 -bulletin%1:10:00:: 06682290 1 2 -bulletin%2:32:00:: 00955033 1 2 -bulletin_board%1:06:00:: 02916538 2 0 -bulletin_board%1:06:01:: 02916684 1 0 -bulletin_board_system%1:06:00:: 02916684 1 0 -bulletproof%2:30:00:: 00166331 1 0 -bulletproof%5:00:00:armored:01 00144102 2 0 -bulletproof%5:00:00:incontestable:00 00591513 1 0 -bulletproof_vest%1:06:00:: 02916936 1 0 -bullfight%1:06:00:: 02917163 1 0 -bullfighter%1:18:00:: 09836160 1 0 -bullfighting%1:04:00:: 00452034 1 0 -bullfinch%1:05:00:: 01534155 2 0 -bullfinch%1:18:00:: 10870897 1 0 -bullfrog%1:05:00:: 01641577 1 0 -bullhead%1:05:00:: 02645538 1 0 -bullhead%1:05:01:: 02519148 2 0 -bullhead_catfish%1:05:00:: 02519148 1 0 -bullheaded%5:00:00:stubborn:00 02327428 1 0 -bullheadedness%1:07:00:: 04863074 1 0 -bullhorn%1:06:00:: 02917377 1 0 -bullion%1:06:00:: 02917521 2 0 -bullion%1:21:00:: 13371682 1 0 -bullish%5:00:00:optimistic:00 01663916 1 0 -bullnecked%5:00:00:strong:00 02322157 1 1 -bullnose%1:06:00:: 02917607 1 0 -bullnosed_plane%1:06:00:: 02917607 1 0 -bullock%1:05:01:: 02403231 2 0 -bullock%1:05:02:: 02403820 1 0 -bullock's_heart%1:13:00:: 07761461 2 0 -bullock's_heart%1:20:00:: 11694866 1 0 -bullock's_heart_tree%1:20:00:: 11694866 1 0 -bullock's_oriole%1:05:00:: 01572654 1 0 -bullock_block%1:06:00:: 02864878 1 0 -bullock_heart%1:20:00:: 11694866 1 0 -bullocky%5:00:00:strong:00 02322248 1 0 -bullpen%1:06:00:: 02917742 2 0 -bullpen%1:06:01:: 02917964 1 0 -bullring%1:06:00:: 02918112 1 0 -bullrush%1:20:01:: 11743772 2 0 -bullrush%1:20:02:: 12155773 1 0 -bullshit%1:10:00:: 06611376 1 0 -bullshit%2:32:00:: 00839526 1 1 -bullshot%1:13:00:: 07913644 1 0 -bullterrier%1:05:00:: 02093056 1 0 -bully%1:18:00:: 09879297 1 1 -bully%1:18:01:: 09879552 2 0 -bully%2:32:00:: 01035199 2 0 -bully%2:37:00:: 01781520 1 0 -bully%5:00:00:good:01 01123879 1 1 -bully_beef%1:13:00:: 07664266 1 0 -bully_off%2:33:00:: 01084048 1 0 -bully_pulpit%1:04:00:: 00598439 1 0 -bully_tree%1:20:00:: 12774299 1 0 -bullyboy%1:18:00:: 09879616 1 1 -bullying%1:04:00:: 01222477 1 0 -bullying%5:00:00:domineering:00 00788032 1 0 -bullyrag%2:37:00:: 01781520 1 0 -bulnesia%1:20:00:: 12721357 1 0 -bulnesia_sarmienti%1:20:00:: 12721477 1 0 -bulrush%1:20:01:: 11743772 2 0 -bulrush%1:20:02:: 12155773 1 0 -bulrush_millet%1:20:00:: 12128825 1 0 -bultmann%1:18:00:: 10871129 1 0 -bulwark%1:06:00:: 02894605 3 0 -bulwark%1:06:01:: 04051825 1 0 -bulwark%1:06:02:: 02918330 2 0 -bulwark%2:33:00:: 01128071 1 0 -bulwer-lytton%1:18:00:: 11146494 1 0 -bum%1:08:00:: 05559256 4 0 -bum%1:18:01:: 10723300 2 1 -bum%1:18:02:: 10539715 1 2 -bum%1:18:03:: 10197967 3 0 -bum%2:40:00:: 02270404 1 1 -bum%2:42:00:: 02639606 2 0 -bum%5:00:00:inferior:02 02346013 1 0 -bum_about%2:42:00:: 02639606 1 0 -bum_around%2:42:00:: 02639606 1 0 -bumble%2:32:00:: 00981544 3 0 -bumble%2:38:00:: 01901133 2 0 -bumble%2:41:00:: 02527651 1 0 -bumblebee%1:05:00:: 02209624 1 13 -bumbler%1:18:00:: 09879744 1 0 -bumbling%5:00:00:maladroit:00 00063563 1 0 -bumboat%1:06:00:: 02918455 1 0 -bumelia%1:20:00:: 12772557 1 0 -bumelia_lanuginosa%1:20:00:: 12773142 1 0 -bumelia_lycioides%1:20:00:: 12772908 1 0 -bumf%1:10:00:: 06598244 1 0 -bummer%1:26:00:: 14406900 1 0 -bummer%1:26:01:: 14311709 2 0 -bump%1:11:00:: 07338681 3 0 -bump%1:25:00:: 13894434 2 0 -bump%1:26:00:: 14289504 1 0 -bump%2:35:00:: 01239619 1 2 -bump%2:35:01:: 01527508 5 0 -bump%2:38:00:: 01895383 3 1 -bump%2:40:12:: 02248465 2 1 -bump%2:41:00:: 02399331 4 0 -bump_around%2:38:00:: 01865051 1 0 -bump_into%2:35:00:: 01240308 1 1 -bump_off%2:41:00:: 02482425 1 2 -bump_up%2:30:00:: 00158687 1 0 -bumper%1:06:00:: 02918595 2 0 -bumper%1:06:01:: 02918831 1 0 -bumper-to-bumper%5:00:00:slow:01 00980961 1 0 -bumper_car%1:06:00:: 02918964 1 0 -bumper_guard%1:06:00:: 02919148 1 0 -bumper_jack%1:06:00:: 02919308 1 0 -bumph%1:10:00:: 06598244 1 0 -bumpiness%1:07:00:: 04949681 1 0 -bumpkin%1:18:00:: 10804102 1 0 -bumpkinly%5:00:00:provincial:00 00636891 1 0 -bumptious%5:00:00:forward:02 00205033 1 0 -bumptiously%4:02:00:: 00280593 1 0 -bumptiousness%1:07:00:: 05167412 1 0 -bumpy%3:00:00:: 02243567 1 0 -bumpy%5:00:02:rough:00 02240006 2 0 -bun%1:13:00:: 07680932 1 0 -bun-fight%1:11:00:: 07448232 1 0 -buna%1:27:00:: 15007803 1 0 -buna_rubber%1:27:00:: 15007803 1 0 -bunce%1:11:00:: 07477587 1 0 -bunch%1:14:00:: 07959943 1 6 -bunch%1:14:01:: 08273843 2 3 -bunch%1:14:02:: 07954731 3 1 -bunch%2:35:00:: 01484392 2 1 -bunch%2:38:00:: 02027411 1 2 -bunch_grass%1:20:00:: 12103476 1 0 -bunch_together%2:38:00:: 02027411 1 0 -bunch_up%2:35:00:: 01484392 2 0 -bunch_up%2:38:00:: 02027411 1 0 -bunchberry%1:20:00:: 12948251 1 0 -bunche%1:18:00:: 10871270 1 0 -bunchgrass%1:20:00:: 12103476 1 0 -bunchy%5:00:00:concentrated:00 00538891 1 0 -bunco%1:04:00:: 00779248 1 0 -bunco%2:41:00:: 02572119 1 0 -bunco_game%1:04:00:: 00779248 1 0 -buncombe%1:10:00:: 06611681 1 0 -bundesbank%1:14:00:: 08352134 1 0 -bundle%1:06:00:: 02919414 2 4 -bundle%1:14:00:: 08008017 1 4 -bundle%1:21:00:: 13250680 3 0 -bundle%2:29:00:: 00015163 4 0 -bundle%2:35:00:: 01487008 1 2 -bundle%2:35:01:: 01483779 3 0 -bundle%2:35:03:: 01484392 2 0 -bundle_of_his%1:08:00:: 05390479 1 0 -bundle_off%2:38:00:: 01955009 1 0 -bundle_up%2:29:00:: 00047032 2 0 -bundle_up%2:35:00:: 01487008 1 0 -bundled-up%5:00:00:clothed:00 00455084 1 1 -bundling%1:04:00:: 00322391 2 0 -bundling%1:04:01:: 00113954 3 0 -bundling%1:10:00:: 07188979 1 0 -bunfight%1:11:00:: 07448232 1 0 -bung%1:06:00:: 02919648 1 0 -bung%2:35:00:: 01345769 2 0 -bung%2:40:00:: 02202133 1 0 -bungaloid%3:01:00:: 03051512 1 0 -bungalow%1:06:00:: 02919792 1 0 -bungarus%1:05:00:: 01750920 1 0 -bungarus_fasciatus%1:05:00:: 01751215 1 0 -bungee%1:06:00:: 02919890 1 0 -bungee_cord%1:06:00:: 02919890 1 0 -bunghole%1:06:00:: 02919976 2 0 -bunghole%1:08:00:: 05538215 1 0 -bungle%1:04:00:: 00074790 1 0 -bungle%2:29:00:: 00013172 2 0 -bungle%2:41:00:: 02527651 1 0 -bungled%5:00:00:unskilled:00 02229201 1 0 -bungler%1:18:00:: 09879744 1 0 -bunglesome%5:00:00:unwieldy:00 02564023 1 0 -bungling%5:00:00:maladroit:00 00063563 2 0 -bungling%5:00:00:unskilled:00 02229324 1 0 -bunion%1:26:00:: 14316352 1 0 -bunji-bunji%1:20:00:: 12698774 1 0 -bunk%1:06:00:: 02831724 2 4 -bunk%1:06:01:: 02920083 3 3 -bunk%1:06:02:: 02920259 6 0 -bunk%1:06:03:: 02920164 1 9 -bunk%1:10:00:: 06611681 4 0 -bunk%1:10:01:: 06607339 5 0 -bunk%2:38:00:: 02075049 3 0 -bunk%2:40:00:: 02337230 2 0 -bunk%2:41:00:: 02573853 1 0 -bunk_bed%1:06:00:: 02920259 1 0 -bunk_down%2:29:00:: 00017531 1 0 -bunk_off%2:42:00:: 02614023 1 0 -bunker%1:06:00:: 02920369 1 1 -bunker%1:06:01:: 02920503 3 0 -bunker%1:06:02:: 02920658 2 0 -bunker%2:35:00:: 01404278 1 1 -bunker%2:38:00:: 02013322 3 0 -bunker%2:40:00:: 02338872 2 0 -bunker_buster%1:06:00:: 02920785 1 0 -bunker_hill%1:04:00:: 01273735 1 0 -bunker_mentality%1:07:00:: 04843675 1 0 -bunkmate%1:18:00:: 09880075 1 2 -bunko%1:04:00:: 00779248 1 0 -bunko_game%1:04:00:: 00779248 1 0 -bunkum%1:10:00:: 06611681 1 0 -bunny%1:05:00:: 02324587 2 0 -bunny%1:18:00:: 09880189 1 0 -bunny_girl%1:18:00:: 09880189 1 0 -bunny_hug%1:04:00:: 00536249 1 0 -bunny_rabbit%1:05:00:: 02324587 1 0 -buns%1:08:00:: 05559256 1 0 -bunsen%1:06:00:: 02921029 2 0 -bunsen%1:18:00:: 10871424 1 0 -bunsen_burner%1:06:00:: 02921029 1 0 -bunt%1:04:00:: 00128477 1 1 -bunt%1:20:01:: 13068255 4 0 -bunt%1:20:02:: 13068434 3 0 -bunt%1:26:00:: 14284026 2 0 -bunt%2:35:00:: 01235769 2 0 -bunt%2:35:01:: 01408297 1 0 -buntal%1:27:00:: 14867690 1 0 -bunter%1:18:00:: 09880338 1 1 -bunting%1:05:00:: 01537134 2 0 -bunting%1:06:00:: 02921195 1 0 -bunuel%1:18:00:: 10871655 1 0 -bunya_bunya%1:13:00:: 07737594 2 0 -bunya_bunya%1:20:00:: 11646694 1 0 -bunya_bunya_tree%1:20:00:: 11646694 1 0 -bunyan%1:18:00:: 09591155 2 0 -bunyan%1:18:01:: 10871756 1 0 -bunyaviridae%1:05:00:: 01331345 1 0 -bunyavirus%1:05:00:: 01331522 1 0 -buoy%1:10:00:: 07266178 1 0 -buoy%2:32:00:: 00922771 3 0 -buoy%2:35:00:: 01218512 2 0 -buoy%2:38:00:: 01904795 1 0 -buoy_up%2:32:00:: 00860136 1 1 -buoy_up%2:35:00:: 01218512 3 0 -buoy_up%2:37:01:: 01814074 2 0 -buoyancy%1:07:00:: 05028963 2 0 -buoyancy%1:07:01:: 04633959 4 0 -buoyancy%1:07:02:: 04944412 3 0 -buoyancy%1:12:00:: 07530723 1 0 -buoyant%5:00:00:cheerful:00 00363621 2 1 -buoyant%5:00:00:light:01 01187072 1 1 -buoyantly%4:02:00:: 00280730 1 0 -buphthalmum%1:20:00:: 11942366 1 0 -buphthalmum_salicifolium%1:20:00:: 11942659 1 0 -bur%1:06:00:: 02921292 2 0 -bur%1:20:00:: 12036368 1 0 -bur%2:30:00:: 00181434 1 0 -bur-reed_family%1:20:00:: 12156308 1 0 -bur_grass%1:20:00:: 12113657 1 0 -bur_marigold%1:20:00:: 11940006 1 0 -bur_oak%1:20:00:: 12274358 1 0 -bur_reed%1:20:00:: 12156679 1 0 -bura%1:10:00:: 06983895 1 0 -burbage%1:18:00:: 10871926 1 0 -burbank%1:18:00:: 10872105 1 0 -burberry%1:06:00:: 02921406 1 0 -burble%2:39:00:: 02187922 1 0 -burbling%5:00:00:lively:00 00806064 1 0 -burbly%5:00:00:lively:00 00806064 1 0 -burbot%1:05:00:: 02523427 1 0 -burchell's_zebra%1:05:00:: 02391234 1 0 -burden%1:06:01:: 03679986 2 2 -burden%1:09:00:: 05920159 4 0 -burden%1:09:01:: 05832745 1 7 -burden%1:10:00:: 06604066 3 0 -burden%2:32:00:: 00750532 2 0 -burden%2:35:00:: 01487311 1 0 -burden_of_proof%1:04:00:: 01130905 1 0 -burdened%3:00:00:: 00869461 1 1 -burdened%5:00:00:encumbered:00 00868241 2 0 -burdenless%5:00:00:unencumbered:00 00869138 1 0 -burdensome%5:00:00:heavy:02 01189109 1 0 -burdensomeness%1:07:00:: 04711031 1 0 -burdock%1:20:00:: 11924445 1 0 -bureau%1:06:00:: 03015254 2 1 -bureau%1:14:00:: 08337324 1 3 -bureau_de_change%1:14:00:: 08002125 1 0 -bureau_of_alcohol_tobacco_and_firearms%1:14:00:: 08140219 1 0 -bureau_of_customs%1:14:00:: 08142972 1 0 -bureau_of_diplomatic_security%1:14:00:: 08138259 1 0 -bureau_of_engraving_and_printing%1:14:00:: 08143163 1 0 -bureau_of_intelligence_and_research%1:14:00:: 08138686 1 0 -bureau_of_justice_assistance%1:14:00:: 08135770 1 0 -bureau_of_justice_statistics%1:14:00:: 08136027 1 0 -bureau_of_the_census%1:14:00:: 08129621 1 0 -bureaucracy%1:14:00:: 08456727 1 6 -bureaucracy%1:14:01:: 08051565 2 0 -bureaucracy%1:14:02:: 08009659 3 0 -bureaucrat%1:18:00:: 09880427 1 0 -bureaucratic%3:01:00:: 03051619 1 3 -bureaucratic_procedure%1:04:00:: 01025563 1 0 -bureaucratically%4:02:00:: 00280972 2 0 -bureaucratically%4:02:01:: 00281099 1 0 -bureaucratism%1:14:00:: 08456727 1 0 -buret%1:06:00:: 02921592 1 0 -burette%1:06:00:: 02921592 1 0 -burg%1:15:00:: 08671168 1 0 -burgeon%2:30:01:: 00357854 1 3 -burgeon_forth%2:30:00:: 00357332 1 0 -burger%1:13:00:: 07697100 2 0 -burger%1:18:00:: 10872287 1 0 -burgess%1:18:00:: 09880646 2 0 -burgess%1:18:01:: 10872505 1 0 -burgh%1:15:00:: 08540193 1 0 -burgher%1:18:00:: 09869830 2 0 -burgher%1:18:01:: 09880646 1 0 -burglar%1:18:00:: 09880741 1 1 -burglar_alarm%1:06:00:: 02921756 2 0 -burglar_alarm%1:10:00:: 06803478 1 0 -burglarious%3:01:00:: 03051889 1 0 -burglarise%2:41:00:: 02571511 1 0 -burglarize%2:41:00:: 02571511 1 0 -burglarproof%5:00:00:protected:00 01885532 1 0 -burglary%1:04:00:: 00785045 1 2 -burgle%2:41:00:: 02571511 1 0 -burgomaster%1:18:00:: 09880881 1 0 -burgoo%1:13:01:: 07874995 1 0 -burgoo%1:13:02:: 07589724 3 0 -burgoo%1:13:03:: 07589872 2 0 -burgoyne%1:18:00:: 10872624 1 0 -burgrass%1:20:00:: 12113657 1 0 -burgrave%1:18:00:: 09881009 2 0 -burgrave%1:18:01:: 09881133 1 0 -burgundy%1:07:00:: 04963905 3 0 -burgundy%1:13:00:: 07893891 2 0 -burgundy%1:15:00:: 08941057 1 0 -burgundy_sauce%1:13:00:: 07835921 1 0 -burgundy_wine%1:13:00:: 07893891 1 0 -burhinidae%1:05:00:: 02039942 1 0 -burhinus%1:05:00:: 02040113 1 0 -burhinus_oedicnemus%1:05:00:: 02040266 1 0 -burial%1:04:00:: 01050627 2 0 -burial%1:11:00:: 07451687 1 5 -burial_chamber%1:06:00:: 02921884 1 0 -burial_garment%1:06:00:: 02922159 1 0 -burial_ground%1:15:00:: 08521623 1 0 -burial_mound%1:06:00:: 02922292 1 0 -burial_site%1:15:00:: 08521623 1 0 -burial_vault%1:06:00:: 04523690 1 0 -buried%3:00:00:: 00292611 1 0 -burin%1:06:00:: 02922461 1 0 -burk%1:18:00:: 10872839 1 0 -burka%1:06:00:: 02922578 1 0 -burke%1:18:00:: 10873059 1 0 -burke%1:18:01:: 10872839 2 0 -burke%2:30:00:: 00462894 2 0 -burke%2:41:00:: 02482784 1 0 -burked%5:00:00:suppressed:00 00470284 1 0 -burkina_faso%1:15:00:: 08896440 1 0 -burkina_faso_franc%1:23:00:: 13679038 1 0 -burl%1:07:00:: 04948905 3 0 -burl%1:20:00:: 13166044 2 0 -burl%1:20:02:: 13166191 1 0 -burl%2:30:00:: 00180495 1 0 -burlap%1:06:00:: 02922798 1 0 -burlap_bag%1:06:00:: 03469903 1 0 -burled%5:00:00:patterned:00 01787941 1 0 -burlesque%1:10:00:: 07017999 1 0 -burlesque%1:10:01:: 06780309 2 0 -burlesque%2:32:00:: 00849939 1 0 -burlesque%3:01:00:: 02873654 1 0 -burlington%1:15:00:: 09148662 1 0 -burly%5:00:00:robust:00 02038126 1 2 -burma%1:15:00:: 08715390 1 3 -burma_padauk%1:20:00:: 12565730 1 0 -burmannia%1:20:00:: 12087408 1 0 -burmanniaceae%1:20:00:: 12087207 1 0 -burmeisteria%1:05:00:: 02456505 1 0 -burmeisteria_retusa%1:05:00:: 02456645 1 0 -burmese%1:10:00:: 06932435 2 0 -burmese%1:18:00:: 09695747 1 0 -burmese%3:01:00:: 03052018 1 0 -burmese-yi%1:10:00:: 06932265 1 0 -burmese_cat%1:05:00:: 02123917 1 0 -burmese_rosewood%1:20:00:: 12565730 1 0 -burn%1:04:00:: 00403911 5 0 -burn%1:07:00:: 04694090 4 0 -burn%1:26:00:: 14325437 1 1 -burn%1:26:01:: 14289590 3 0 -burn%1:26:02:: 14290534 2 1 -burn%2:29:00:: 00104299 12 1 -burn%2:30:00:: 00377002 3 9 -burn%2:30:01:: 00378042 7 2 -burn%2:30:02:: 00378664 1 11 -burn%2:30:03:: 00196364 15 0 -burn%2:30:08:: 00373766 11 1 -burn%2:34:00:: 01205000 14 0 -burn%2:36:05:: 01756277 13 0 -burn%2:37:00:: 01829292 6 2 -burn%2:39:00:: 02120451 4 4 -burn%2:39:04:: 02121048 10 1 -burn%2:40:01:: 02268881 9 1 -burn%2:41:00:: 02485322 8 1 -burn%2:43:01:: 02768874 2 10 -burn%2:43:02:: 02762468 5 2 -burn_bag%1:06:00:: 02922877 1 0 -burn_center%1:06:00:: 02922996 1 0 -burn_down%2:30:00:: 00377351 1 3 -burn_down%2:30:02:: 00378664 2 2 -burn_mark%1:07:00:: 04694090 1 0 -burn_off%2:30:00:: 00196252 2 1 -burn_off%2:34:00:: 01205000 1 1 -burn_out%2:30:00:: 00435294 1 0 -burn_plant%1:20:00:: 12437047 1 0 -burn_up%2:30:03:: 00377351 3 0 -burn_up%2:34:00:: 01205000 2 0 -burn_up%2:43:00:: 02762806 1 1 -burnability%1:07:00:: 04712405 1 0 -burnable%5:00:00:combustible:00 00473243 1 0 -burned%5:00:00:cooked:00 00617137 3 0 -burned%5:00:00:destroyed:00 00735336 2 0 -burned%5:00:00:treated:00 01954263 1 0 -burned-out%5:00:00:destroyed:00 00735336 3 0 -burned-out%5:00:00:tired:00 02432851 1 0 -burned-out%5:00:00:unserviceable:00 02125057 2 0 -burned-over%5:00:00:destroyed:00 00735336 1 0 -burner%1:06:00:: 02923129 1 1 -burner%1:06:01:: 02923331 2 0 -burnet_bloodwort%1:20:00:: 12637485 1 0 -burnett%1:18:00:: 10873303 1 0 -burnham%1:18:00:: 10873505 1 0 -burning%1:04:00:: 00378069 1 1 -burning%1:04:01:: 01165112 4 0 -burning%1:04:02:: 01164618 5 0 -burning%1:04:03:: 00422391 6 0 -burning%1:22:00:: 13450206 3 0 -burning%1:26:00:: 14325437 2 0 -burning%5:00:00:important:00 01276992 1 0 -burning_at_the_stake%1:04:00:: 01164618 1 0 -burning_bush%1:20:00:: 13118398 1 0 -burning_bush%1:20:01:: 11831874 4 0 -burning_bush%1:20:02:: 12749679 2 0 -burning_bush%1:20:03:: 12712626 3 0 -burnish%1:07:00:: 04955160 1 0 -burnish%2:35:00:: 01246095 1 0 -burnished%5:00:00:polished:00 01812237 1 0 -burnoose%1:06:00:: 02923535 1 0 -burnous%1:06:00:: 02923535 1 0 -burnouse%1:06:00:: 02923535 1 0 -burns%1:18:00:: 10873679 2 0 -burns%1:18:01:: 10873783 1 0 -burnside%1:08:00:: 05262802 2 0 -burnside%1:18:00:: 10873937 1 0 -burnt%5:00:00:cooked:00 00617137 1 1 -burnt%5:00:00:destroyed:00 00735336 3 0 -burnt%5:00:00:treated:00 01954263 2 0 -burnt-out%5:00:00:destroyed:00 00735336 3 0 -burnt-out%5:00:00:tired:00 02432851 1 0 -burnt-out%5:00:00:unserviceable:00 02125057 2 0 -burnt_lime%1:27:00:: 14789885 1 0 -burnt_sienna%1:07:00:: 04973386 1 1 -burnt_sienna%1:27:00:: 14843767 2 0 -burnt_umber%1:07:00:: 04972451 2 0 -burnt_umber%1:27:00:: 15083611 1 0 -burnup%1:04:00:: 00356516 2 0 -burnup%1:11:00:: 07459642 1 0 -burp%1:04:00:: 00117578 1 0 -burp%2:29:00:: 00003431 1 0 -burp_gun%1:06:00:: 02923682 1 0 -burping%1:04:00:: 00117578 1 0 -burqa%1:06:00:: 02922578 1 0 -burr%1:06:00:: 02923802 2 1 -burr%1:06:01:: 02923915 4 0 -burr%1:06:02:: 02921292 5 0 -burr%1:18:00:: 10874162 3 0 -burr%1:20:00:: 12036368 1 2 -burr%2:30:00:: 00181434 1 0 -burr-headed%5:00:00:headed:01 01183966 1 1 -burr_drill%1:06:00:: 03176238 1 0 -burr_marigold%1:20:00:: 11940006 1 0 -burr_oak%1:20:00:: 12274358 1 0 -burrawong%1:20:00:: 11604046 1 0 -burred%5:00:00:armed:02 00145083 1 0 -burrfish%1:05:00:: 02656301 1 0 -burrhus_frederic_skinner%1:18:00:: 11304461 1 0 -burrill_bernard_crohn%1:18:00:: 10915862 1 0 -burrito%1:13:00:: 07880968 1 0 -burrlike%3:01:00:: 02672015 1 0 -burro%1:05:00:: 02389779 1 0 -burro_deer%1:05:00:: 02432511 1 0 -burroughs%1:18:00:: 10874393 3 0 -burroughs%1:18:01:: 10874540 2 0 -burroughs%1:18:02:: 10874706 1 0 -burrow%1:17:00:: 09230041 1 4 -burrow%2:38:00:: 02042067 1 3 -burry%5:00:00:armed:02 00145083 1 0 -bursa%1:08:00:: 05516554 2 0 -bursa%1:15:00:: 09042213 1 0 -bursa_omentalis%1:08:00:: 05428136 1 0 -bursal%3:01:00:: 02672116 1 0 -bursar%1:18:00:: 09881265 1 0 -bursary%1:21:00:: 13358151 1 0 -bursera%1:20:00:: 12691189 1 0 -bursera_microphylla%1:20:00:: 12691428 1 0 -bursera_simaruba%1:20:00:: 12691661 1 0 -burseraceae%1:20:00:: 12690388 1 0 -bursiform%5:00:00:concave:00 00536304 1 0 -bursitis%1:26:00:: 14261384 1 1 -burst%1:04:00:: 00377364 1 5 -burst%1:04:01:: 00988320 2 2 -burst%1:04:02:: 00555325 3 1 -burst%1:11:00:: 07434942 4 0 -burst%2:30:00:: 00309310 1 11 -burst%2:30:01:: 00333594 8 0 -burst%2:30:02:: 00424224 6 2 -burst%2:30:09:: 00306017 3 7 -burst%2:37:00:: 01785395 2 7 -burst%2:38:00:: 01964634 4 4 -burst%2:38:04:: 01989562 7 0 -burst%2:42:00:: 02715595 5 2 -burst_forth%2:30:00:: 00306539 2 0 -burst_forth%2:30:01:: 00294522 3 0 -burst_forth%2:38:00:: 01966501 1 0 -burst_in_on%2:32:00:: 00780444 1 0 -burst_out%2:30:00:: 00307785 3 0 -burst_out%2:30:01:: 00426156 2 1 -burst_out%2:32:00:: 00930009 1 3 -burst_upon%2:32:00:: 00780444 1 0 -burster%1:06:00:: 03008275 1 0 -bursting_charge%1:06:00:: 03008275 1 0 -bursting_explosive%1:06:00:: 03212247 1 0 -burt%1:18:00:: 10874921 1 0 -burthen%1:06:00:: 02924023 1 0 -burthen%2:35:00:: 01487311 1 0 -burton%1:13:00:: 07889990 3 0 -burton%1:18:00:: 10875107 2 0 -burton%1:18:01:: 10875249 1 0 -burundi%1:15:00:: 08716219 1 0 -burundi%3:01:00:: 03052218 1 0 -burundi_franc%1:23:00:: 13677109 1 0 -burundian%1:18:00:: 09695871 1 0 -burundian%3:01:00:: 03052218 1 0 -burunduki%1:05:00:: 02360480 1 0 -burweed_marsh_elder%1:20:00:: 11985321 1 0 -bury%2:31:00:: 00610167 6 0 -bury%2:35:00:: 01234625 3 3 -bury%2:35:01:: 01530098 5 1 -bury%2:35:02:: 01582409 4 1 -bury%2:39:00:: 02147466 1 7 -bury%2:41:00:: 02456493 2 6 -burying%1:04:00:: 01050627 1 0 -burying_ground%1:15:00:: 08521623 1 0 -bus%1:06:00:: 02924116 1 2 -bus%1:06:01:: 02924554 4 0 -bus%1:06:02:: 02924713 3 0 -bus%1:09:00:: 05730591 2 0 -bus%2:30:00:: 00180728 3 0 -bus%2:38:00:: 01949110 2 0 -bus%2:38:01:: 01950128 1 0 -bus_company%1:14:00:: 08186761 1 1 -bus_depot%1:06:00:: 02926288 1 0 -bus_driver%1:18:00:: 09883362 1 0 -bus_fare%1:21:00:: 13308432 1 0 -bus_lane%1:06:00:: 02925808 1 0 -bus_line%1:06:00:: 02925901 1 1 -bus_route%1:15:00:: 08517554 1 0 -bus_service%1:14:00:: 08186761 1 0 -bus_station%1:06:00:: 02926288 1 0 -bus_stop%1:15:00:: 08517676 1 1 -bus_terminal%1:06:00:: 02926288 1 0 -bus_ticket%1:10:00:: 06519846 1 0 -bus_topology%1:09:00:: 05730591 1 0 -bus_traffic%1:14:00:: 08426298 1 0 -busbar%1:06:00:: 02924713 1 0 -busboy%1:18:00:: 09881358 1 3 -busby%1:06:00:: 02817516 1 0 -bush%1:08:00:: 05263587 7 0 -bush%1:14:00:: 08438223 3 2 -bush%1:15:00:: 08505018 2 2 -bush%1:18:00:: 10875468 6 0 -bush%1:18:01:: 10875681 5 0 -bush%1:18:02:: 10875910 4 0 -bush%1:20:00:: 13112664 1 5 -bush%2:40:00:: 02336255 1 0 -bush%5:00:00:inferior:02 02346242 1 0 -bush-league%5:00:00:inferior:02 02346242 1 0 -bush_administration%1:14:00:: 08165866 1 0 -bush_administration%1:14:01:: 08165650 2 0 -bush_baby%1:05:00:: 02499808 1 0 -bush_bean%1:20:00:: 12556533 1 0 -bush_clover%1:20:00:: 12542910 1 0 -bush_hibiscus%1:20:00:: 12185859 1 0 -bush_honeysuckle%1:20:01:: 12672083 3 0 -bush_honeysuckle%1:20:02:: 12672289 2 0 -bush_honeysuckle%1:20:03:: 12676940 1 0 -bush_jacket%1:06:00:: 02925385 1 1 -bush_lawyer%1:20:00:: 12653436 1 0 -bush_league%1:14:00:: 08231678 1 0 -bush_leaguer%1:18:00:: 10321340 1 0 -bush_nasturtium%1:20:00:: 12720200 1 0 -bush_out%2:38:00:: 02077546 1 0 -bush_pea%1:20:00:: 12573256 1 0 -bush_poppy%1:20:00:: 11905035 1 0 -bush_shrike%1:05:00:: 01600085 1 0 -bush_tit%1:05:00:: 01593028 1 0 -bush_vetch%1:20:00:: 12576695 1 0 -bush_violet%1:20:00:: 12898774 1 0 -bush_willow%1:20:01:: 12324388 2 0 -bush_willow%1:20:02:: 12324558 1 0 -bushbaby%1:05:00:: 02499808 1 0 -bushbuck%1:05:00:: 02425228 1 0 -bushed%5:00:00:tired:00 02432154 1 0 -bushel%1:23:01:: 13622591 2 0 -bushel%1:23:02:: 13620871 1 3 -bushel%2:30:00:: 00260648 1 0 -bushel_basket%1:06:00:: 02925009 1 0 -bushido%1:10:00:: 06667625 1 0 -bushing%1:06:00:: 02925107 2 0 -bushing%1:06:01:: 02925250 1 0 -bushman%1:18:00:: 09881519 2 0 -bushman%1:18:01:: 09881613 1 0 -bushman's_poison%1:20:00:: 11768816 1 0 -bushnell%1:18:00:: 10876160 1 0 -bushtit%1:05:00:: 01593028 1 0 -bushwhack%2:33:00:: 01138204 1 1 -bushwhack%2:38:00:: 02053723 3 0 -bushwhack%2:42:00:: 02615880 2 0 -bushwhacker%1:18:00:: 10176357 1 1 -bushwhacker%1:18:01:: 09881748 2 0 -bushwhacking%5:00:00:concealed:00 02088760 1 1 -bushy%5:00:00:branchy:00 00613975 2 0 -bushy%5:00:00:ungroomed:00 02428610 1 1 -bushy_aster%1:20:00:: 11933546 1 0 -bushytail_woodrat%1:05:00:: 02339922 1 0 -busily%4:02:00:: 00208273 1 3 -business%1:04:00:: 00582388 3 13 -business%1:04:01:: 01094725 2 20 -business%1:04:02:: 01096245 6 7 -business%1:04:03:: 00550341 9 0 -business%1:09:00:: 05983801 5 9 -business%1:09:01:: 05833022 4 12 -business%1:14:00:: 08061042 1 35 -business%1:14:01:: 08401554 8 0 -business%1:14:02:: 07966927 7 5 -business_activity%1:04:00:: 01095753 1 1 -business_address%1:15:00:: 08559922 1 0 -business_agent%1:18:00:: 09777975 1 1 -business_card%1:10:00:: 06425404 1 0 -business_college%1:14:00:: 08281682 1 0 -business_community%1:14:00:: 08113073 1 0 -business_concern%1:14:00:: 08061042 1 14 -business_cycle%1:11:00:: 07444100 1 0 -business_data_processing%1:22:00:: 13427633 1 0 -business_deal%1:04:00:: 01110274 1 0 -business_deduction%1:21:00:: 13310858 1 0 -business_department%1:14:00:: 08118039 1 0 -business_district%1:15:00:: 08539072 1 2 -business_editor%1:18:00:: 09881895 1 0 -business_enterprise%1:04:00:: 01094725 1 1 -business_establishment%1:06:00:: 03953020 1 0 -business_executive%1:18:00:: 09966255 1 1 -business_expense%1:21:00:: 13276330 1 0 -business_firm%1:14:00:: 08059870 1 1 -business_index%1:10:00:: 06640317 1 0 -business_interruption_insurance%1:21:00:: 13345962 1 0 -business_leader%1:18:00:: 09840217 1 1 -business_letter%1:10:00:: 06624724 1 0 -business_life%1:04:00:: 00606227 1 0 -business_line%1:06:00:: 03671668 1 0 -business_loan%1:21:00:: 13374764 1 0 -business_lunch%1:13:00:: 07575226 1 0 -business_news%1:10:00:: 06681454 1 0 -business_office%1:06:00:: 03841666 1 0 -business_organisation%1:14:00:: 08061042 1 0 -business_organization%1:14:00:: 08061042 1 1 -business_people%1:14:00:: 07945077 1 0 -business_relation%1:24:00:: 13836841 1 0 -business_relationship%1:26:00:: 13929037 1 1 -business_school%1:14:00:: 08281812 1 0 -business_sector%1:14:00:: 07966927 1 0 -business_suit%1:06:00:: 02925519 1 0 -business_traveler%1:18:00:: 09883047 1 0 -businesslike%5:00:00:efficient:00 00839959 1 1 -businesslike%5:00:00:purposeful:00 01910114 2 0 -businessman%1:18:00:: 09882007 1 10 -businessmen%1:14:00:: 08113073 1 1 -businesspeople%1:14:00:: 07945077 1 0 -businessperson%1:18:00:: 09882716 1 0 -businesswoman%1:18:00:: 09882615 1 0 -busk%2:36:00:: 01759166 1 0 -busker%1:18:00:: 09883174 1 0 -buskin%1:06:00:: 02925666 1 0 -busload%1:23:00:: 13765866 1 0 -busman%1:18:00:: 09883362 1 0 -busman's_holiday%1:04:00:: 01065945 1 0 -buspar%1:06:00:: 02926044 1 0 -buspirone%1:06:00:: 02926044 1 0 -buss%1:04:00:: 00138221 1 0 -buss%2:35:00:: 01431230 1 0 -bust%1:04:00:: 00510723 4 0 -bust%1:06:00:: 02926188 3 0 -bust%1:08:00:: 05551494 2 0 -bust%1:11:00:: 07365024 1 0 -bust%2:30:00:: 00333594 5 0 -bust%2:35:00:: 01369346 4 0 -bust%2:35:01:: 01369758 1 1 -bust%2:35:02:: 01573515 3 0 -bust%2:41:00:: 02494850 2 0 -bust%5:00:00:poor:00 02023287 1 0 -bust-up%1:10:00:: 07184965 1 0 -bust-up_takeover%1:04:00:: 00175433 1 0 -bust_up%2:35:00:: 01566185 1 0 -bustard%1:05:00:: 02018795 1 0 -bustard_quail%1:05:00:: 02019929 1 0 -busted%5:00:00:damaged:00 00680156 1 0 -buster%1:18:00:: 09883452 4 0 -buster%1:18:01:: 09883630 3 0 -buster%1:18:02:: 09883740 2 0 -buster%1:18:03:: 10083358 1 0 -buster%1:18:04:: 09828600 5 0 -buster_keaton%1:18:00:: 11098380 1 0 -bustier%1:06:00:: 02926426 1 0 -bustle%1:04:00:: 00555138 1 1 -bustle%1:06:00:: 02926591 2 0 -bustle%2:38:00:: 02058191 1 2 -bustle_about%2:38:00:: 02058191 1 1 -bustling%5:00:00:active:06 00035868 1 2 -busty%5:00:00:shapely:00 02138989 1 0 -busy%2:41:00:: 02415831 1 1 -busy%3:00:00:: 00292937 1 30 -busy%5:00:00:fancy:00 01795203 2 1 -busy%5:00:00:intrusive:01 01352561 3 1 -busy%5:00:00:occupied:00 01623360 5 0 -busy%5:00:01:active:06 00035978 4 1 -busy_bee%1:18:00:: 10040945 1 0 -busybodied%5:00:00:intrusive:01 01352561 1 0 -busybody%1:18:00:: 09883807 1 0 -busyness%1:26:00:: 14008050 1 0 -busywork%1:04:00:: 00581621 1 0 -but%4:02:01:: 00004722 1 2 -but_then%4:02:00:: 00119578 1 1 -butacaine%1:06:00:: 02926727 1 0 -butacaine_sulfate%1:06:00:: 02926727 1 0 -butadiene%1:27:00:: 14912092 1 0 -butane%1:27:00:: 14685017 1 0 -butanoic_acid%1:27:00:: 14788332 1 0 -butanol%1:27:00:: 14788200 1 0 -butanone%1:27:00:: 14787954 1 0 -butat%1:23:00:: 13668266 1 0 -butazolidin%1:06:00:: 03922722 1 0 -butch%1:18:00:: 09883947 1 0 -butch%5:00:00:homosexual:00 01201758 2 0 -butch%5:00:00:masculine:01 01483562 1 0 -butcher%1:18:00:: 09884133 3 0 -butcher%1:18:01:: 09884305 2 0 -butcher%1:18:02:: 09884391 1 0 -butcher%1:18:03:: 09879744 4 0 -butcher%2:35:00:: 01322854 1 1 -butcher's_broom%1:20:00:: 12463134 1 0 -butcher_block%1:06:00:: 02926886 1 0 -butcher_board%1:06:00:: 02926886 1 0 -butcher_cumberland%1:18:00:: 10917164 1 0 -butcher_knife%1:06:00:: 02927053 1 0 -butcher_paper%1:27:00:: 14879115 1 0 -butcher_shop%1:06:00:: 02927161 1 0 -butcherbird%1:05:01:: 01598988 1 0 -butcherbird%1:05:02:: 01583209 2 0 -butchering%1:04:00:: 00620424 1 0 -butcherly%5:00:00:bloody:00 00249104 2 0 -butcherly%5:00:00:unskilled:00 02229000 1 0 -butchery%1:04:00:: 00620424 2 0 -butchery%1:04:02:: 00223983 3 0 -butchery%1:06:00:: 02666943 1 0 -butea%1:20:00:: 12510197 1 0 -butea_frondosa%1:20:00:: 12510343 1 0 -butea_gum%1:27:00:: 14901265 1 0 -butea_kino%1:27:00:: 14901265 1 0 -butea_monosperma%1:20:00:: 12510343 1 0 -butene%1:27:00:: 14787093 1 0 -buteo%1:05:00:: 01607103 1 0 -buteo_buteo%1:05:00:: 01607962 1 0 -buteo_jamaicensis%1:05:00:: 01607429 1 0 -buteo_lagopus%1:05:00:: 01607600 1 0 -buteo_lineatus%1:05:00:: 01607812 1 0 -buteonine%1:05:00:: 01607309 1 0 -buteonine%3:01:00:: 02672219 1 0 -butler%1:18:00:: 09884509 1 1 -butler%1:18:01:: 10876419 3 0 -butler%1:18:02:: 10876513 2 0 -butt%1:06:00:: 02927296 1 2 -butt%1:06:01:: 02927399 9 0 -butt%1:06:02:: 02927608 8 0 -butt%1:06:03:: 04394261 5 0 -butt%1:06:04:: 03030663 6 0 -butt%1:06:05:: 02928413 7 0 -butt%1:08:00:: 05559256 4 0 -butt%1:18:00:: 09884666 3 0 -butt%1:20:00:: 13124855 2 0 -butt%2:35:00:: 01235769 2 2 -butt%2:35:01:: 01498713 3 1 -butt%2:35:02:: 01466978 1 3 -butt-weld%1:06:00:: 02929582 1 0 -butt-weld%2:35:00:: 01596404 1 0 -butt-welding%1:04:00:: 00149699 1 0 -butt_against%2:35:00:: 01466978 1 2 -butt_against%2:35:01:: 01240308 2 0 -butt_end%1:06:00:: 02927296 1 0 -butt_hinge%1:06:00:: 02928299 1 0 -butt_in%2:32:00:: 00780191 1 0 -butt_joint%1:06:00:: 02928413 1 0 -butt_on%2:35:00:: 01466978 1 0 -butt_pack%1:06:00:: 03321563 1 0 -butt_shaft%1:06:00:: 02929462 1 0 -butt_weld%1:06:00:: 02929582 1 0 -butt_welding%1:04:00:: 00149699 1 0 -butte%1:15:00:: 09108884 2 0 -butte%1:17:00:: 09230202 1 0 -butter%1:13:00:: 07848338 1 3 -butter%1:18:00:: 09884815 2 0 -butter%2:35:00:: 01267998 1 0 -butter-and-eggs%1:20:00:: 12884260 1 0 -butter-bean_plant%1:20:00:: 12558425 1 0 -butter-flower%1:20:00:: 11720353 1 0 -butter-print%1:20:00:: 12173069 1 0 -butter_bean%1:13:00:: 07729225 2 0 -butter_bean%1:20:00:: 12558425 1 0 -butter_churn%1:06:00:: 03029445 1 0 -butter_cookie%1:13:00:: 07635827 1 0 -butter_daisy%1:20:00:: 12031139 1 0 -butter_dish%1:06:00:: 02927764 1 0 -butter_knife%1:06:00:: 02928049 1 0 -butter_up%2:32:00:: 00881534 1 0 -butterball%1:05:00:: 01850192 2 0 -butterball%1:18:00:: 10082146 1 0 -butterbean%1:13:00:: 07729225 1 0 -butterbur%1:20:00:: 12002428 1 0 -buttercrunch%1:13:00:: 07723968 1 0 -buttercup%1:20:00:: 11720353 1 0 -buttercup_family%1:20:00:: 11719468 1 0 -buttercup_squash%1:13:00:: 07718068 2 0 -buttercup_squash%1:20:00:: 12161577 1 0 -butterfat%1:27:00:: 14787707 1 1 -butterfield%1:18:00:: 10876661 1 0 -butterfingered%5:00:00:maladroit:00 00063563 1 0 -butterfingers%1:18:00:: 09884934 1 0 -butterfish%1:05:01:: 02632989 2 0 -butterfish%1:05:02:: 02615298 3 0 -butterfish%1:13:00:: 07786005 1 0 -butterflower%1:20:00:: 11720353 1 0 -butterfly%1:04:00:: 00570854 2 0 -butterfly%1:05:00:: 02274259 1 0 -butterfly%2:32:00:: 01037910 3 0 -butterfly%2:35:00:: 01613921 2 0 -butterfly%2:38:01:: 01900156 1 0 -butterfly-shaped%5:00:00:formed:00 02145832 1 0 -butterfly_bush%1:20:00:: 12485653 1 0 -butterfly_collector%1:18:00:: 10254761 1 0 -butterfly_effect%1:19:00:: 11412334 1 0 -butterfly_fish%1:05:00:: 02605316 1 0 -butterfly_flower%1:20:01:: 12913144 1 0 -butterfly_flower%1:20:02:: 12490827 2 0 -butterfly_nut%1:06:00:: 04593185 1 0 -butterfly_orchid%1:20:01:: 12080395 1 0 -butterfly_orchid%1:20:02:: 12043836 5 0 -butterfly_orchid%1:20:03:: 12061380 4 0 -butterfly_orchid%1:20:04:: 12061614 3 0 -butterfly_orchid%1:20:05:: 12074408 2 0 -butterfly_orchis%1:20:01:: 12043836 2 0 -butterfly_orchis%1:20:02:: 12061614 1 0 -butterfly_pea%1:20:01:: 12517445 2 0 -butterfly_pea%1:20:02:: 12517642 1 0 -butterfly_pea%1:20:03:: 12513172 3 0 -butterfly_plant%1:20:01:: 12074408 2 0 -butterfly_plant%1:20:02:: 12076852 1 0 -butterfly_ray%1:05:00:: 01498699 1 0 -butterfly_stroke%1:04:00:: 00570854 1 0 -butterfly_valve%1:06:00:: 02927887 1 0 -butterfly_weed%1:20:00:: 13235503 1 0 -butterflyfish%1:05:01:: 02652132 1 0 -butterhead_lettuce%1:13:00:: 07723753 1 0 -buttermilk%1:13:00:: 07847047 1 0 -buttermilk_biscuit%1:13:00:: 07694516 1 0 -buttermilk_pancake%1:13:00:: 07640749 1 0 -butternut%1:13:01:: 07771891 2 0 -butternut%1:20:00:: 12318965 1 0 -butternut_squash%1:13:00:: 07717556 2 0 -butternut_squash%1:20:00:: 12161744 1 0 -butternut_tree%1:20:00:: 12318965 1 0 -butterscotch%1:13:00:: 07600394 1 0 -butterweed%1:20:00:: 12000191 2 0 -butterweed%1:20:02:: 12012111 1 0 -butterwort%1:20:00:: 12872914 1 0 -buttery%1:06:00:: 02928172 2 0 -buttery%1:06:01:: 03885535 1 0 -buttery%5:00:00:fatty:00 00992291 2 0 -buttery%5:00:00:insincere:00 02181432 1 0 -buttinsky%1:18:00:: 09885059 1 0 -buttock%1:08:00:: 05559727 1 0 -buttocks%1:08:00:: 05559256 1 1 -button%1:06:00:: 02928608 1 8 -button%1:06:01:: 04027023 2 6 -button%1:06:02:: 04073425 6 0 -button%1:06:03:: 02928841 7 0 -button%1:08:01:: 05523420 5 0 -button%1:10:00:: 07268413 4 0 -button%1:20:00:: 11531916 3 0 -button%2:35:00:: 01367862 2 0 -button%2:35:01:: 01368126 1 0 -button-down%5:00:00:buttoned:00 00296935 2 0 -button-down%5:00:00:conventional:01 00607656 1 1 -button-quail%1:05:00:: 02019929 1 0 -button-shaped%5:00:00:formed:00 02145918 1 0 -button_fern%1:20:01:: 13201423 2 0 -button_fern%1:20:02:: 13212559 1 0 -button_hole%1:06:00:: 02928930 1 0 -button_mangrove%1:20:00:: 12324906 1 0 -button_pink%1:20:00:: 11809437 1 0 -button_quail%1:05:00:: 02019929 1 0 -button_snakeroot%1:20:01:: 12938445 2 0 -button_snakeroot%1:20:02:: 12938667 1 0 -button_snakeroot%1:20:03:: 11991263 3 0 -button_tree%1:20:00:: 12324906 1 0 -button_up%2:32:00:: 01041061 1 0 -buttoned%3:00:00:: 00296625 1 1 -buttoned-down%5:00:00:conventional:01 00607656 1 0 -buttoned-up%5:00:00:conservative:00 00574744 2 0 -buttoned-up%5:00:00:taciturn:00 02383564 1 0 -buttonhole%1:06:00:: 02928930 1 0 -buttonhole%2:41:00:: 02458943 1 0 -buttonhole_stitch%1:06:00:: 02929059 1 0 -buttonhook%1:06:00:: 02929184 1 0 -buttonlike%5:00:00:bright:00 00280245 1 0 -buttonwood%1:20:00:: 12807409 1 0 -buttony%5:00:00:adorned:00 00057390 2 0 -buttony%5:00:00:bright:00 00280245 1 0 -buttress%1:06:00:: 02929289 1 0 -buttress%2:30:00:: 00222728 2 0 -buttress%2:30:01:: 00222861 1 0 -buttressed%5:00:00:supported:00 02351149 1 1 -buttressing%1:06:00:: 02929289 1 0 -buttweld%2:35:00:: 01596404 1 0 -butty%1:13:00:: 07696527 1 0 -butut%1:23:00:: 13668266 1 0 -butyl%1:27:00:: 15008025 1 0 -butyl_alcohol%1:27:00:: 14788200 1 0 -butyl_nitrite%1:06:00:: 02929749 1 0 -butyl_rubber%1:27:00:: 15007917 1 0 -butylate%2:30:00:: 00184633 1 0 -butylene%1:27:00:: 14787093 1 0 -butyraceous%3:01:00:: 02672344 1 0 -butyric%3:01:00:: 02672500 1 0 -butyric_acid%1:27:00:: 14788332 1 0 -butyrin%1:27:00:: 14788485 1 0 -buxaceae%1:20:00:: 12745788 1 0 -buxom%5:00:00:fat:01 00986975 2 0 -buxom%5:00:00:shapely:00 02138989 1 0 -buxomly%4:02:00:: 00237278 1 0 -buxomness%1:07:00:: 05001302 1 0 -buxus%1:20:00:: 12745976 1 0 -buxus_sempervirens%1:20:00:: 12746253 1 0 -buy%1:21:00:: 13253751 1 0 -buy%2:31:09:: 00683670 5 0 -buy%2:40:00:: 02207206 1 102 -buy%2:40:02:: 02284096 2 2 -buy%2:40:03:: 02212103 4 0 -buy%2:42:00:: 02646757 3 0 -buy-and-bust_operation%1:04:00:: 00410096 1 0 -buy_at%2:41:00:: 02466134 1 0 -buy_back%2:40:00:: 02207890 1 0 -buy_food%2:40:00:: 02326955 1 0 -buy_in%2:40:00:: 02323286 1 0 -buy_into%2:40:00:: 02284544 1 0 -buy_it%2:30:00:: 00359806 1 1 -buy_off%2:40:00:: 02284803 1 0 -buy_out%2:40:00:: 02274299 1 2 -buy_the_farm%2:30:00:: 00358431 1 0 -buy_time%2:30:00:: 00460759 1 1 -buy_up%2:40:00:: 02274299 1 2 -buyback%1:04:00:: 00079212 1 0 -buyer%1:18:00:: 09885145 1 1 -buyer's_market%1:04:00:: 01097920 1 0 -buyers'_market%1:04:00:: 01097920 1 0 -buyi%1:10:00:: 06936290 1 0 -buying%1:04:00:: 00081572 1 3 -buyout%1:04:00:: 00789534 1 0 -buyout_bid%1:10:00:: 07165410 1 0 -buzz%1:04:00:: 01260008 2 1 -buzz%1:11:00:: 07378234 1 1 -buzz%2:32:00:: 00792304 4 0 -buzz%2:38:00:: 01924267 2 3 -buzz%2:39:00:: 02182109 1 4 -buzz%2:42:00:: 02706605 3 2 -buzz_bomb%1:06:00:: 02929923 1 0 -buzz_off%2:38:00:: 02010864 1 0 -buzz_saw%1:06:00:: 03034663 1 0 -buzzard%1:05:01:: 01619310 1 0 -buzzard%1:05:02:: 01607962 2 0 -buzzards_bay%1:17:00:: 09230361 1 0 -buzzer%1:06:00:: 03222516 1 0 -buzzer%1:06:01:: 02930080 2 0 -buzzing%5:00:00:noisy:00 01920697 1 2 -buzzword%1:10:00:: 06608277 1 0 -bvd%1:06:00:: 02930214 1 0 -bvd's%1:06:00:: 02930214 1 0 -bw%1:04:00:: 00967780 1 5 -bw_defence%1:04:00:: 00967993 1 0 -bw_defense%1:04:00:: 00967993 1 0 -bwr%1:06:00:: 02864122 1 0 -by%4:02:00:: 00417787 1 2 -by%4:02:01:: 00233687 2 0 -by-and-by%1:28:00:: 15252770 1 0 -by-bid%2:40:00:: 02298998 1 0 -by-blow%1:18:00:: 09842823 1 0 -by-catch%1:05:00:: 01319685 1 0 -by-election%1:04:00:: 00183240 1 0 -by-line%1:04:00:: 00432689 2 0 -by-line%1:10:00:: 06348885 1 0 -by-product%1:06:00:: 02930492 2 2 -by-product%1:19:00:: 11412592 1 4 -by_a_long_shot%4:02:00:: 00155343 1 1 -by_all_means%4:02:00:: 00056916 1 1 -by_all_odds%4:02:00:: 00036935 1 0 -by_and_by%4:02:00:: 00155488 1 0 -by_and_large%4:02:00:: 00155621 1 2 -by_any_means%4:02:00:: 00155765 1 1 -by_artificial_means%4:02:00:: 00140566 1 0 -by_chance%4:02:00:: 00040547 3 0 -by_chance%4:02:02:: 00353485 2 0 -by_chance%4:02:03:: 00420004 1 0 -by_choice%4:02:00:: 00062330 1 0 -by_design%4:02:00:: 00062330 1 1 -by_experimentation%4:02:00:: 00085339 1 0 -by_far%4:02:00:: 00047056 1 2 -by_fits_and_starts%4:02:00:: 00156117 1 0 -by_hand%4:02:01:: 00054524 1 1 -by_heart%4:02:00:: 00155893 1 1 -by_hook_or_by_crook%4:02:00:: 00155765 1 0 -by_inches%4:02:00:: 00155995 1 0 -by_luck%4:02:00:: 00353485 1 1 -by_machine%4:02:00:: 00054636 1 0 -by_memory%4:02:00:: 00155893 1 0 -by_nature%4:02:00:: 00505352 1 1 -by_no_means%4:02:00:: 00057042 1 15 -by_right_of_office%4:02:00:: 00252499 1 0 -by_rights%4:02:00:: 00505450 1 0 -by_small_degrees%4:02:00:: 00155995 1 0 -by_the_bye%4:02:00:: 00156222 1 0 -by_the_day%4:02:00:: 00250798 1 0 -by_the_piece%4:02:00:: 00156387 1 0 -by_the_way%4:02:00:: 00156222 1 5 -by_trial_and_error%4:02:00:: 00084038 1 0 -by_word_of_mouth%4:02:00:: 00156496 2 0 -by_word_of_mouth%4:02:01:: 00258088 1 1 -byblos%1:15:00:: 08958535 1 0 -bycatch%1:05:00:: 01319685 1 0 -bydgoszcz%1:15:00:: 08983274 1 0 -bye%1:10:00:: 06629610 2 0 -bye%1:10:01:: 07176499 1 0 -bye-bye%1:10:00:: 06629610 1 0 -bye-election%1:04:00:: 00183240 1 0 -byelarus%1:15:00:: 09011151 1 0 -byelorussia%1:15:00:: 09011151 1 0 -byelorussian%1:10:00:: 06944480 2 0 -byelorussian%1:18:00:: 09695979 1 0 -bygone%1:28:00:: 15121153 1 1 -bygone%5:00:00:past:00 01728919 1 1 -bylaw%1:10:00:: 06537951 1 0 -byname%1:10:00:: 06337693 1 0 -bypass%1:06:00:: 02828648 1 1 -bypass%1:06:01:: 04211001 3 0 -bypass%1:08:00:: 05548203 2 0 -bypass%2:32:00:: 00811171 1 4 -bypass_capacitor%1:06:00:: 02930339 1 0 -bypass_condenser%1:06:00:: 02930339 1 0 -bypast%5:00:00:past:00 01728919 1 0 -bypath%1:06:00:: 02930645 1 0 -byplay%1:04:00:: 00550341 1 0 -byproduct%1:06:00:: 02930492 2 0 -byproduct%1:19:00:: 11412592 1 0 -byrd%1:18:00:: 10876798 2 0 -byrd%1:18:01:: 10877015 1 0 -byre%1:06:00:: 03123809 1 0 -byrnie%1:06:00:: 03499468 1 0 -byroad%1:06:00:: 02930645 1 0 -byron%1:18:00:: 10877253 1 0 -byssus%1:05:00:: 01955318 1 0 -bystander%1:18:00:: 09885334 1 0 -byte%1:23:00:: 13626013 1 0 -byway%1:06:00:: 02930645 1 0 -byword%1:10:00:: 07153838 1 0 -byzant%1:21:00:: 13389194 1 0 -byzantine%1:18:00:: 09696124 1 0 -byzantine%3:01:00:: 02969925 2 0 -byzantine%3:01:01:: 02970073 1 0 -byzantine%5:00:00:complex:00 02176841 3 0 -byzantine_architecture%1:09:00:: 05841740 1 0 -byzantine_church%1:14:00:: 08086219 1 0 -byzantine_empire%1:15:00:: 08800676 1 0 -byzantine_greek%1:10:00:: 06977190 1 0 -byzantinism%1:09:00:: 06188721 1 0 -byzantium%1:15:00:: 08801099 1 0 -byzantium%1:15:01:: 08800676 2 0 -c%1:06:00:: 03066743 12 0 -c%1:10:00:: 06831391 11 0 -c%1:10:01:: 06902696 9 0 -c%1:10:02:: 06866332 10 0 -c%1:23:00:: 13636648 8 0 -c%1:23:01:: 13750415 7 0 -c%1:23:02:: 13714491 1 21 -c%1:27:00:: 14633206 6 0 -c%1:27:01:: 14829765 4 0 -c%1:27:02:: 14828511 5 0 -c%1:27:03:: 15093298 3 0 -c%1:28:00:: 15284285 2 0 -c%5:00:00:cardinal:00 02196107 1 0 -c-clamp%1:06:00:: 02988066 1 0 -c-horizon%1:15:00:: 08658776 1 0 -c-note%1:21:00:: 13395074 1 0 -c-ration%1:13:00:: 07566231 1 0 -c-reactive_protein%1:27:00:: 14732299 1 0 -c-section%1:04:00:: 00185778 1 0 -c._d._gibson%1:18:00:: 10998474 1 0 -c._diphtheriae%1:05:00:: 01366700 1 0 -c._h._best%1:18:00:: 10850049 1 0 -c._k._ogden%1:18:00:: 11212786 1 0 -c._northcote_parkinson%1:18:00:: 11223119 1 0 -c._p._snow%1:18:00:: 11307082 1 0 -c._psittaci%1:05:00:: 01372944 1 0 -c._s._forester%1:18:00:: 10975404 1 0 -c._s._lewis%1:18:00:: 11130291 1 0 -c._trachomatis%1:05:00:: 01373090 1 0 -c._vann_woodward%1:18:00:: 11396535 1 0 -c._w._post%1:18:00:: 11243562 1 0 -c.e.%4:02:00:: 00001981 1 0 -c.o.d.%4:02:00:: 00253938 1 0 -c.p.u.%1:06:00:: 02995345 1 0 -c2h6%1:27:00:: 14850826 1 0 -c_and_w%1:10:00:: 07060440 1 0 -c_battery%1:06:00:: 02987950 1 0 -c_clef%1:10:00:: 06863209 1 0 -c_compiler%1:10:00:: 06573934 1 0 -c_horizon%1:15:00:: 08658776 1 0 -c_major%1:10:00:: 06866442 1 0 -c_major_scale%1:10:00:: 06866442 1 0 -c_program%1:10:00:: 06902831 1 0 -ca%1:15:00:: 09060768 2 0 -ca%1:27:00:: 14632648 1 0 -ca-ca%2:29:00:: 00074038 1 0 -caaba%1:06:00:: 03606719 1 0 -cab%1:06:00:: 02930766 3 0 -cab%1:06:01:: 02931013 2 0 -cab%1:06:02:: 02931148 1 4 -cab%2:38:03:: 01949007 1 0 -cab_fare%1:21:00:: 13308543 1 0 -cabal%1:09:00:: 05908882 2 0 -cabal%1:14:00:: 08241798 1 0 -cabal%2:31:00:: 00706975 1 0 -cabala%1:09:00:: 05954100 2 0 -cabala%1:10:00:: 06673770 1 0 -cabalism%1:04:00:: 01213406 2 0 -cabalism%1:09:00:: 05954366 1 0 -cabalist%1:18:00:: 09885416 3 0 -cabalist%1:18:01:: 09885534 2 0 -cabalist%1:18:02:: 09885676 1 0 -cabalistic%5:00:00:esoteric:00 00899738 1 0 -cabana%1:06:00:: 02931294 1 3 -cabaret%1:04:00:: 00520672 2 0 -cabaret%1:06:00:: 02931417 1 0 -cabasset%1:06:00:: 03785721 1 0 -cabassous%1:05:00:: 02455428 1 0 -cabassous_unicinctus%1:05:00:: 02455428 1 0 -cabbage%1:13:00:: 07713895 1 1 -cabbage%1:20:00:: 11875691 3 0 -cabbage%1:21:00:: 13385216 2 0 -cabbage%2:40:00:: 02276866 1 0 -cabbage-bark_tree%1:20:00:: 12506341 1 0 -cabbage_bark%1:20:00:: 12506341 1 0 -cabbage_butterfly%1:05:00:: 02280649 1 0 -cabbage_palm%1:20:01:: 12596849 2 0 -cabbage_palm%1:20:02:: 12591017 4 0 -cabbage_palm%1:20:03:: 12591351 3 0 -cabbage_palm%1:20:04:: 12597134 1 0 -cabbage_palmetto%1:20:00:: 12597134 1 0 -cabbage_tree%1:20:01:: 12591351 1 0 -cabbage_tree%1:20:02:: 12478768 3 0 -cabbage_tree%1:20:03:: 12506341 2 0 -cabbageworm%1:05:00:: 02310585 1 0 -cabbala%1:09:00:: 05954100 2 0 -cabbala%1:10:00:: 06673770 1 0 -cabbalah%1:09:00:: 05954100 2 0 -cabbalah%1:10:00:: 06673770 1 0 -cabby%1:18:00:: 10693646 1 0 -cabdriver%1:18:00:: 10693646 1 0 -cabell%1:18:00:: 10877456 1 0 -caber%1:06:00:: 02931836 1 0 -cabernet%1:13:00:: 07895710 1 0 -cabernet_sauvignon%1:13:00:: 07895710 1 0 -cabernet_sauvignon_grape%1:20:00:: 13146740 1 0 -cabg%1:04:00:: 00675808 1 0 -cabin%1:06:00:: 02932019 3 0 -cabin%1:06:01:: 02932227 1 5 -cabin%1:06:02:: 02932400 2 3 -cabin%2:35:00:: 01302577 1 0 -cabin_boy%1:18:00:: 09885769 1 0 -cabin_car%1:06:00:: 02932523 1 0 -cabin_class%1:06:00:: 02932693 1 0 -cabin_cruiser%1:06:00:: 02932891 1 0 -cabin_liner%1:06:00:: 02933750 1 0 -cabinet%1:06:00:: 02933112 1 4 -cabinet%1:06:01:: 02933340 4 0 -cabinet%1:06:02:: 02933462 3 0 -cabinet%1:14:00:: 08381820 2 0 -cabinet_minister%1:04:00:: 00585964 2 0 -cabinet_minister%1:18:00:: 09886010 1 0 -cabinet_wood%1:27:00:: 14787816 1 0 -cabinetmaker%1:18:00:: 09885866 1 0 -cabinetmaking%1:04:00:: 00617601 1 0 -cabinetry%1:04:00:: 00607542 1 0 -cabinetwork%1:04:00:: 00607542 2 0 -cabinetwork%1:06:00:: 02933649 1 0 -cable%1:06:00:: 02933842 3 1 -cable%1:06:01:: 02933990 6 0 -cable%1:06:02:: 02934168 2 1 -cable%1:10:00:: 06275095 1 2 -cable%1:10:01:: 06278338 5 0 -cable%1:23:00:: 13652886 4 0 -cable%2:32:00:: 01007222 1 1 -cable%2:35:00:: 01288921 2 0 -cable's_length%1:23:00:: 13652886 1 0 -cable_car%1:06:00:: 02934451 1 0 -cable_length%1:23:00:: 13652886 1 0 -cable_railway%1:06:00:: 02934641 1 0 -cable_system%1:06:00:: 02933990 1 0 -cable_television%1:06:00:: 02933990 2 0 -cable_television%1:10:00:: 06278338 1 0 -cable_television_service%1:06:00:: 02933990 1 0 -cable_tramway%1:06:00:: 04469813 1 0 -cablegram%1:10:00:: 06275095 1 0 -cabman%1:18:00:: 10693646 1 0 -cabochon%1:27:00:: 14700046 1 0 -cabomba%1:20:00:: 11718096 1 0 -cabomba_caroliniana%1:20:00:: 11718296 1 0 -cabombaceae%1:20:00:: 11717820 1 0 -caboodle%1:14:00:: 07954731 1 0 -caboose%1:06:00:: 02932523 2 0 -caboose%1:06:01:: 03412220 1 0 -cabot%1:18:00:: 10877584 2 0 -cabot%1:18:01:: 10877841 1 0 -cabotage%1:04:00:: 00315307 2 0 -cabotage%1:07:00:: 05175771 1 0 -cabriolet%1:06:00:: 02931013 1 0 -cabstand%1:15:00:: 08517966 1 0 -cacajao%1:05:00:: 02493109 1 0 -cacalia%1:20:00:: 11942875 1 0 -cacalia_javanica%1:20:00:: 11963305 1 0 -cacalia_lutea%1:20:00:: 11963305 1 0 -cacao%1:20:00:: 12201580 1 0 -cacao_bean%1:13:00:: 07754894 1 0 -cacao_moth%1:05:00:: 02290340 1 0 -cacao_tree%1:20:00:: 12201580 1 0 -cacatua%1:05:00:: 01818959 1 0 -cacatua_galerita%1:05:00:: 01819313 1 0 -cachalot%1:05:00:: 02067240 1 0 -cache%1:06:00:: 02934888 1 1 -cache%1:06:01:: 02935017 3 0 -cache%1:21:00:: 13366912 2 0 -cache%2:40:00:: 02305856 1 0 -cachectic%3:01:00:: 02672591 1 0 -cachet%1:06:00:: 02935316 3 0 -cachet%1:10:00:: 06705984 1 0 -cachet%1:10:01:: 06548110 2 0 -cachexia%1:26:00:: 14548105 1 0 -cachexy%1:26:00:: 14548105 1 0 -cachi%1:17:00:: 09230500 1 0 -cachinnate%2:29:00:: 00032414 1 0 -cachinnation%1:10:00:: 07127350 1 0 -cachou%1:13:00:: 07607832 1 0 -cacicus%1:05:00:: 01573483 1 0 -cacique%1:05:00:: 01573627 1 0 -cackel%2:32:02:: 01056102 1 0 -cackle%1:10:00:: 07127451 3 0 -cackle%1:10:01:: 07136940 2 0 -cackle%1:11:00:: 07378437 1 0 -cackle%2:29:00:: 00031418 3 1 -cackle%2:32:00:: 01056369 2 1 -cackle%2:32:01:: 01056554 1 2 -cackler%1:05:01:: 01792808 1 0 -cackler%1:05:02:: 01566645 2 0 -cackly%5:00:00:cacophonous:00 00299144 1 1 -cacodaemon%1:18:00:: 09542541 1 0 -cacodaemonic%3:01:00:: 02672729 1 0 -cacodemon%1:18:00:: 09542541 1 0 -cacodemonic%3:01:00:: 02672729 1 0 -cacodyl%1:27:01:: 14788714 2 0 -cacodyl%1:27:02:: 14788875 1 0 -cacodyl_group%1:27:00:: 14788714 1 0 -cacodyl_radical%1:27:00:: 14788714 1 0 -cacodylic%3:01:00:: 02672886 1 0 -cacoethes%1:16:00:: 09181557 1 0 -cacogenesis%1:26:00:: 14045835 1 0 -cacogenic%3:01:00:: 02715365 1 0 -cacogenics%1:09:00:: 06042690 1 0 -cacography%1:10:00:: 06404147 1 0 -cacomistle%1:05:00:: 02508742 1 0 -cacomixle%1:05:00:: 02508742 1 0 -cacophonic%3:00:00:: 00298767 1 0 -cacophonous%3:00:00:: 00298767 1 0 -cacophony%1:07:00:: 04984938 2 0 -cacophony%1:11:00:: 07377473 1 0 -cactaceae%1:20:00:: 11841529 1 0 -cactus%1:20:00:: 11842204 1 0 -cactus_euphorbia%1:20:00:: 12921660 1 0 -cactus_family%1:20:00:: 11841529 1 0 -cactus_mouse%1:05:00:: 02337171 1 0 -cactus_wren%1:05:00:: 01586374 1 0 -cacuminal%5:00:00:backward:01 00201802 1 0 -cad%1:10:00:: 06567689 2 0 -cad%1:18:00:: 09886220 1 0 -cadaster%1:10:00:: 06502192 1 0 -cadastral%3:01:00:: 02673022 1 0 -cadastre%1:10:00:: 06502192 1 0 -cadaver%1:08:00:: 05218119 1 1 -cadaveric%3:01:00:: 02673139 1 0 -cadaverine%1:27:00:: 15095771 1 0 -cadaverous%3:01:00:: 02673139 2 0 -cadaverous%5:00:00:thin:03 00988988 1 1 -caddice-fly%1:05:00:: 02269340 1 0 -caddice_fly%1:05:00:: 02269340 1 0 -caddie%1:18:00:: 09886403 1 0 -caddie%2:33:00:: 01096860 1 0 -caddis-fly%1:05:00:: 02269340 1 0 -caddis_fly%1:05:00:: 02269340 1 0 -caddish%5:00:00:discourteous:00 00640931 1 0 -caddisworm%1:05:00:: 02269657 1 0 -caddo%1:10:00:: 06915601 2 0 -caddo%1:18:00:: 09651123 1 0 -caddoan%1:10:00:: 06915601 1 0 -caddoan_language%1:10:00:: 06915601 1 0 -caddy%1:06:00:: 02935387 1 0 -caddy%2:33:00:: 01096860 1 0 -cadence%1:07:00:: 04991879 3 0 -cadence%1:10:00:: 07045928 2 0 -cadence%1:10:01:: 07094093 1 1 -cadenced%5:00:00:rhythmical:00 02019635 1 0 -cadency%1:07:00:: 04991879 1 0 -cadent%5:00:00:rhythmical:00 02019635 1 0 -cadenza%1:10:00:: 07046218 1 2 -cadet%1:18:00:: 09886540 1 0 -cadetship%1:04:00:: 00589596 1 0 -cadge%2:40:00:: 02270404 1 0 -cadge%2:40:01:: 02270165 2 0 -cadger%1:18:00:: 10330189 1 0 -cadiz%1:15:00:: 09025451 1 0 -cadmium%1:27:00:: 14632444 1 0 -cadmium_cell%1:06:00:: 04573379 1 0 -cadmium_orange%1:27:00:: 15096331 1 0 -cadmium_sulfide%1:27:00:: 15095926 1 0 -cadmium_sulphide%1:27:00:: 14677610 1 0 -cadmium_yellow%1:27:00:: 15096048 1 1 -cadmium_yellow_pale%1:27:00:: 15096233 1 0 -cadmus%1:18:00:: 09490054 1 0 -cadra%1:05:00:: 02290521 1 0 -cadra_cautella%1:05:00:: 02290664 1 0 -cadra_figulilella%1:05:00:: 02290870 1 0 -cadre%1:14:00:: 08242100 2 1 -cadre%1:14:01:: 08358594 1 1 -caducean%3:01:00:: 02673345 1 0 -caduceus%1:10:00:: 06884520 1 0 -caducous%3:00:00:: 01758582 1 0 -caecal%3:01:00:: 02684742 1 0 -caeciliadae%1:05:00:: 01655116 1 0 -caecilian%1:05:00:: 01655344 1 0 -caecilian%3:01:00:: 02673446 1 0 -caeciliidae%1:05:00:: 01655116 1 0 -caecum%1:08:00:: 05536370 1 0 -caelum%1:17:00:: 09230646 1 0 -caenogenesis%1:22:00:: 13444940 1 0 -caenolestes%1:05:00:: 01875880 1 0 -caenolestidae%1:05:00:: 01875717 1 0 -caesalpinia%1:20:00:: 12488121 1 0 -caesalpinia_bonduc%1:20:00:: 12488454 1 0 -caesalpinia_bonducella%1:20:00:: 12488454 1 0 -caesalpinia_coriaria%1:20:00:: 12488709 1 0 -caesalpinia_decapetala%1:20:00:: 12489046 1 0 -caesalpinia_echinata%1:20:00:: 12489268 1 0 -caesalpinia_ferrea%1:20:00:: 12489676 1 0 -caesalpinia_gilliesii%1:20:00:: 12489815 1 0 -caesalpinia_pulcherrima%1:20:00:: 12490054 1 0 -caesalpinia_sepiaria%1:20:00:: 12489046 1 0 -caesalpiniaceae%1:20:00:: 12487394 1 0 -caesalpinioideae%1:20:00:: 12487647 1 0 -caesar%1:18:00:: 10878161 1 1 -caesar%1:18:01:: 10878375 2 0 -caesar's_agaric%1:20:00:: 13002750 1 0 -caesar_salad%1:13:00:: 07806879 1 0 -caesarea%1:15:00:: 08795492 1 0 -caesarean%1:04:00:: 00185778 1 0 -caesarean%3:01:00:: 03029573 1 0 -caesarean%3:01:01:: 03029400 2 0 -caesarean_delivery%1:04:00:: 00185778 1 0 -caesarean_section%1:04:00:: 00185778 1 0 -caesarian%1:04:00:: 00185778 1 0 -caesarian%3:01:00:: 03029573 1 0 -caesarian%3:01:01:: 03029400 2 0 -caesarian_delivery%1:04:00:: 00185778 1 0 -caesarian_section%1:04:00:: 00185778 1 0 -caesarism%1:14:00:: 08440630 1 0 -caesaropapism%1:09:00:: 06188721 1 0 -caesium%1:27:00:: 14634232 1 0 -caesium_clock%1:06:00:: 02935490 1 0 -caespitose%5:00:00:ungregarious:01 02253817 1 0 -caesura%1:10:00:: 07085072 2 0 -caesura%1:28:00:: 15271732 1 0 -caesural%3:01:00:: 02673594 1 0 -cafe%1:06:00:: 02935658 1 5 -cafe_au_lait%1:13:00:: 07919572 1 0 -cafe_noir%1:13:00:: 07919665 1 0 -cafe_royale%1:13:00:: 07929940 1 0 -cafeteria%1:06:00:: 02935891 1 13 -cafeteria_facility%1:06:00:: 02936020 1 0 -cafeteria_tray%1:06:00:: 02936176 1 0 -caff%1:06:00:: 02936281 1 0 -caffe_latte%1:13:00:: 07920222 1 0 -caffein%1:27:00:: 14761122 1 0 -caffein_addict%1:18:00:: 09886700 1 0 -caffein_addiction%1:26:00:: 14065156 1 0 -caffeine%1:27:00:: 14761122 1 0 -caffeine_addict%1:18:00:: 09886700 1 0 -caffeine_intoxication%1:26:00:: 14510247 1 0 -caffeinic%3:01:00:: 02673712 1 0 -caffeinism%1:26:00:: 14510247 1 0 -caffer%1:18:00:: 10228864 1 0 -caffer_cat%1:05:00:: 02125872 1 0 -caffre%1:18:00:: 10228864 1 0 -caftan%1:06:00:: 02936402 2 0 -caftan%1:06:01:: 02936570 1 0 -cage%1:06:00:: 02936714 1 4 -cage%1:06:01:: 02936921 4 0 -cage%1:06:02:: 02811059 5 0 -cage%1:18:00:: 10878530 3 0 -cage%1:26:00:: 13998966 2 2 -cage%2:41:00:: 02496036 1 0 -cage_in%2:41:00:: 02496036 1 0 -cager%1:18:00:: 09842047 1 0 -cagey%5:00:00:cautious:00 00325619 2 0 -cagey%5:00:00:smart:00 00439252 1 1 -cagily%4:02:00:: 00281237 1 0 -cagliostro%1:18:00:: 10878672 1 0 -cagney%1:18:00:: 10878844 1 0 -cagoule%1:06:00:: 02937010 1 0 -cagy%5:00:00:cautious:00 00325619 2 0 -cagy%5:00:00:smart:00 00439252 1 0 -cahita%1:10:00:: 06918932 2 0 -cahita%1:18:00:: 09670415 1 0 -cahoot%1:10:00:: 07177111 1 0 -caiman%1:05:00:: 01699040 1 0 -caiman_lizard%1:05:00:: 01687290 1 0 -caiman_sclerops%1:05:00:: 01699254 1 0 -caimitillo%1:20:00:: 12773917 1 0 -caimito%1:20:00:: 12773651 1 0 -cain%1:18:00:: 09586994 1 0 -cainogenesis%1:22:00:: 13444940 1 0 -cairene%1:18:00:: 09886807 1 0 -cairina%1:05:00:: 01852544 1 0 -cairina_moschata%1:05:00:: 01852671 1 0 -cairn%1:05:00:: 02096177 2 0 -cairn%1:10:00:: 07273802 1 0 -cairn_terrier%1:05:00:: 02096177 1 0 -cairned%3:01:00:: 02673810 1 0 -cairngorm%1:27:00:: 14694571 1 0 -cairo%1:15:00:: 08898633 2 0 -cairo%1:15:01:: 09082988 1 0 -caisson%1:06:00:: 02937093 4 0 -caisson%1:06:01:: 03064443 1 0 -caisson%1:06:02:: 02937237 3 0 -caisson%1:06:03:: 02937336 2 0 -caisson_disease%1:26:00:: 14068344 1 0 -caitiff%1:18:00:: 09886911 1 0 -caitiff%5:00:00:cowardly:00 00265214 1 0 -caitra%1:28:00:: 15219694 1 0 -cajan_pea%1:13:00:: 07726230 2 0 -cajan_pea%1:20:00:: 12510774 1 0 -cajanus%1:20:00:: 12510569 1 0 -cajanus_cajan%1:20:00:: 12510774 1 0 -cajole%2:32:00:: 00768778 1 0 -cajolery%1:10:00:: 06695862 1 0 -cajolingly%4:02:00:: 00286265 1 0 -cajun%1:18:00:: 09677280 1 0 -cakchiquel%1:10:00:: 06926112 2 0 -cakchiquel%1:18:00:: 09651418 1 0 -cake%1:06:00:: 02937469 1 2 -cake%1:13:00:: 07628870 3 0 -cake%1:13:02:: 07663899 2 0 -cake%2:35:01:: 01262321 1 0 -cake_mix%1:13:00:: 07594066 1 0 -cakehole%1:08:00:: 05302307 1 0 -cakewalk%1:04:00:: 00530874 1 0 -cakewalk%1:04:01:: 00036580 2 0 -cakewalk%2:38:00:: 01896657 1 0 -cakile%1:20:00:: 11880218 1 0 -cakile_maritima%1:20:00:: 11880411 1 0 -calaba%1:20:00:: 12364940 1 0 -calabar-bean_vine%1:20:00:: 12486882 1 0 -calabar_bean%1:20:00:: 12487058 1 0 -calabash%1:06:00:: 03449451 4 0 -calabash%1:06:01:: 02937614 5 0 -calabash%1:20:00:: 12815668 2 0 -calabash%1:20:01:: 12815838 1 0 -calabash%1:20:02:: 12166128 3 0 -calabash_pipe%1:06:00:: 02937614 1 0 -calabash_tree%1:20:00:: 12815668 1 0 -calabazilla%1:20:00:: 12162425 1 0 -calabria%1:15:00:: 08804962 1 0 -calabur_tree%1:20:00:: 12194147 1 0 -calabura%1:20:00:: 12194147 1 0 -caladenia%1:20:00:: 12048399 1 0 -caladenia_cairnsiana%1:20:00:: 12048537 1 0 -caladium%1:20:00:: 11785668 1 0 -caladium_bicolor%1:20:00:: 11785875 1 0 -calais%1:15:00:: 08934868 1 0 -calamagrostic_quadriseta%1:20:00:: 12113323 1 0 -calamagrostis%1:20:00:: 12112789 1 0 -calamagrostis_acutiflora%1:20:00:: 12113195 1 0 -calamari%1:13:00:: 07781801 1 0 -calamary%1:13:00:: 07781801 1 0 -calamine%1:27:00:: 14678406 1 0 -calamine_lotion%1:06:00:: 02937766 1 0 -calamint%1:20:00:: 12842887 1 0 -calamintha%1:20:00:: 12842765 1 0 -calamintha_grandiflora%1:20:00:: 12843316 1 0 -calamintha_nepeta%1:20:00:: 12843557 1 0 -calamintha_nepeta_glantulosa%1:20:00:: 12843557 1 0 -calamintha_sylvatica%1:20:00:: 12843144 1 0 -calamitous%5:00:00:unfortunate:00 01050088 1 0 -calamity%1:11:00:: 07314838 1 3 -calamity_jane%1:18:00:: 10872839 1 0 -calamus%1:05:00:: 02592607 4 0 -calamus%1:05:01:: 02468617 5 0 -calamus%1:20:00:: 12586298 1 0 -calamus%1:20:01:: 11780930 3 0 -calamus%1:20:02:: 11781176 2 0 -calamus_australis%1:20:00:: 12586725 1 0 -calamus_oil%1:20:00:: 11781301 1 0 -calamus_penna%1:05:00:: 02592734 1 0 -calamus_rotang%1:20:00:: 12586499 1 0 -calan%1:06:00:: 04527808 1 0 -calando%5:00:00:decreasing:02 02538295 1 0 -calandrinia%1:20:00:: 11858406 1 0 -calandrinia_ciliata%1:20:00:: 11858814 1 0 -calanthe%1:20:00:: 12048928 1 0 -calapooya%1:18:00:: 09658254 1 0 -calapuya%1:18:00:: 09658254 1 0 -calash%1:06:00:: 02937958 2 0 -calash%1:06:01:: 02938095 1 0 -calash_top%1:06:00:: 02937958 1 0 -calathian_violet%1:20:00:: 12295033 1 0 -calc-tufa%1:27:00:: 14931323 1 0 -calcaneal%3:01:00:: 02673880 1 0 -calcaneus%1:08:00:: 05274808 1 0 -calcareous%3:01:00:: 02673969 1 0 -calcarine_fissure%1:08:00:: 05224585 1 0 -calcarine_sulcus%1:08:00:: 05224585 1 0 -calced%3:00:00:: 02156934 1 0 -calcedony%1:27:00:: 14806333 1 0 -calceiform%3:01:00:: 02674148 1 0 -calceolaria%1:20:00:: 12879527 1 0 -calceolate%3:01:00:: 02674148 1 0 -calceus%1:06:00:: 02938218 1 0 -calcic%3:01:00:: 02674303 1 0 -calcicolous%3:00:00:: 02595071 1 0 -calciferol%1:27:00:: 15092227 1 0 -calciferous%3:01:00:: 02674398 1 0 -calcific%3:01:00:: 03009696 1 0 -calcification%1:22:00:: 13442312 1 1 -calcification%1:26:00:: 14364980 2 0 -calcification%1:26:01:: 14011408 3 0 -calcifugous%3:00:00:: 02595167 1 0 -calcify%2:30:00:: 00498662 3 0 -calcify%2:30:01:: 00498530 4 0 -calcify%2:30:02:: 00498988 1 1 -calcify%2:30:04:: 00572362 2 0 -calcimine%1:06:00:: 02938321 1 0 -calcimine%2:35:00:: 01269988 1 0 -calcination%1:22:00:: 13442476 1 0 -calcine%2:30:00:: 00372251 1 0 -calcined_lime%1:27:00:: 14789885 1 0 -calcite%1:27:00:: 14935751 1 0 -calcitic%3:01:00:: 02674530 1 0 -calcitonin%1:08:00:: 05413465 1 0 -calcium%1:27:00:: 14632648 1 3 -calcium-channel_blocker%1:06:00:: 02938514 1 0 -calcium-cyanamide%1:27:00:: 14789220 1 0 -calcium_bicarbonate%1:27:00:: 14936790 1 0 -calcium_blocker%1:06:00:: 02938514 1 0 -calcium_carbide%1:27:00:: 14789087 1 0 -calcium_carbonate%1:27:00:: 14936905 1 0 -calcium_chloride%1:27:00:: 14937225 1 0 -calcium_hydrate%1:27:00:: 14936010 1 0 -calcium_hydride%1:27:00:: 14937366 1 1 -calcium_hydroxide%1:27:00:: 14936010 1 0 -calcium_hypochlorite%1:27:00:: 14789365 1 0 -calcium_ion%1:27:00:: 15071229 1 0 -calcium_lactate%1:27:00:: 14789504 1 1 -calcium_light%1:06:00:: 03669665 1 0 -calcium_nitrate%1:27:00:: 14789724 1 0 -calcium_octadecanoate%1:27:00:: 14790259 1 0 -calcium_oxide%1:27:00:: 14789885 1 0 -calcium_phosphate%1:27:00:: 14790137 1 0 -calcium_stearate%1:27:00:: 14790259 1 0 -calcium_sulfate%1:27:00:: 14937521 1 0 -calcium_sulphate%1:27:00:: 14937521 1 0 -calculable%3:00:00:: 00301187 1 0 -calculate%2:31:00:: 00637259 1 21 -calculate%2:31:02:: 00713015 5 0 -calculate%2:31:03:: 00712135 2 3 -calculate%2:31:05:: 00712708 6 0 -calculate%2:32:01:: 00926472 4 0 -calculate%2:40:00:: 02265231 3 0 -calculated%5:00:00:intended:00 01337939 1 0 -calculating%5:00:00:hard:02 01155603 1 1 -calculating_machine%1:06:00:: 02938886 1 0 -calculatingly%4:02:00:: 00505979 1 1 -calculation%1:04:00:: 00868910 1 7 -calculation%1:09:00:: 05802185 2 4 -calculation%1:09:01:: 05796423 3 0 -calculative%5:00:00:hard:02 01155603 1 0 -calculator%1:06:00:: 02938886 2 0 -calculator%1:18:00:: 09887034 1 0 -calculous%3:01:00:: 02674642 1 0 -calculus%1:09:00:: 06013741 3 0 -calculus%1:17:00:: 09230768 1 1 -calculus%1:17:01:: 09454925 2 0 -calculus_of_variations%1:09:00:: 06015978 1 0 -calcutta%1:15:00:: 08903636 1 0 -calcuttan%3:01:00:: 02978495 1 0 -calder%1:18:00:: 10879009 1 0 -caldera%1:17:00:: 09231117 1 0 -calderon%1:18:00:: 10879155 1 0 -calderon_de_la_barca%1:18:00:: 10879155 1 0 -caldron%1:06:00:: 02939185 1 0 -caldwell%1:18:00:: 10879364 1 0 -calean%1:06:00:: 03533014 1 0 -caleche%1:06:00:: 02937958 2 0 -caleche%1:06:01:: 02938095 1 0 -caledonia%1:15:00:: 08891415 1 0 -caledonian_canal%1:06:00:: 02939291 1 0 -calefacient%5:00:00:hot:01 01248198 1 0 -calefaction%1:07:00:: 05016451 1 0 -calefactive%5:00:00:hot:01 01248358 1 0 -calefactory%5:00:00:hot:01 01248358 1 0 -calendar%1:10:01:: 06487395 2 1 -calendar%1:14:00:: 08266849 3 0 -calendar%1:28:00:: 15173479 1 1 -calendar%2:31:00:: 00678981 1 0 -calendar_day%1:28:00:: 15157041 1 0 -calendar_method%1:04:00:: 00853145 1 0 -calendar_method_of_birth_control%1:04:00:: 00853145 1 0 -calendar_month%1:28:00:: 15209413 1 0 -calendar_week%1:28:00:: 15136147 1 0 -calendar_year%1:28:00:: 15202634 1 13 -calender%1:06:00:: 02939565 1 0 -calender%2:35:00:: 01391095 1 0 -calendered%5:00:00:glazed:00 01120010 1 0 -calendric%3:01:00:: 02674772 1 0 -calendrical%3:01:00:: 02674772 1 0 -calendula%1:20:00:: 11943407 1 0 -calendula_officinalis%1:20:00:: 11943660 1 0 -caley_pea%1:20:00:: 12539564 1 0 -calf%1:05:00:: 01887896 1 6 -calf%1:05:01:: 01888045 4 0 -calf%1:08:00:: 05574332 2 1 -calf%1:27:00:: 14761334 3 0 -calf's-foot_jelly%1:13:00:: 07595051 1 0 -calf's_brain%1:13:00:: 07652696 1 0 -calf's_liver%1:13:00:: 07652207 1 0 -calf's_tongue%1:13:00:: 07653217 1 0 -calf_bone%1:08:00:: 05594201 1 0 -calf_love%1:12:00:: 07544351 1 0 -calf_roping%1:04:00:: 00300206 1 0 -calfskin%1:27:00:: 14761334 1 0 -calgary%1:15:00:: 08822546 1 0 -cali%1:15:00:: 08733163 1 0 -cali_cartel%1:14:00:: 08237400 1 0 -caliber%1:07:00:: 04728068 1 2 -caliber%1:07:01:: 05103283 2 1 -calibrate%2:30:00:: 00295697 1 4 -calibrate%2:31:02:: 00739536 3 0 -calibrate%2:35:02:: 01589497 2 0 -calibrated%3:44:00:: 03147643 1 0 -calibration%1:04:00:: 00999245 1 7 -calibre%1:07:00:: 04728068 1 1 -calibre%1:07:01:: 05103283 2 0 -caliche%1:27:01:: 14699441 2 0 -caliche%1:27:02:: 14845578 1 0 -caliche-topped%5:00:00:unpaved:00 01740085 1 1 -calico%1:06:00:: 02939763 1 0 -calico%3:01:00:: 02675055 1 0 -calico%5:00:00:colored:00 00398978 2 0 -calico_aster%1:20:00:: 11937102 1 0 -calico_bush%1:20:00:: 12237641 1 0 -calico_cat%1:05:00:: 02123242 1 0 -calico_crab%1:05:00:: 01979526 1 0 -calicular%3:01:00:: 02676046 1 0 -caliculus%1:05:00:: 02155448 1 0 -calidris%1:05:00:: 02028556 1 0 -calidris_canutus%1:05:00:: 02028900 1 0 -calidris_ferruginea%1:05:00:: 02029087 1 0 -calidris_melanotos%1:05:00:: 02028727 1 0 -calif%1:18:00:: 09887496 1 0 -calif.%1:15:00:: 09060768 1 0 -california%1:15:00:: 09060768 1 13 -california_allspice%1:20:00:: 11701302 1 0 -california_bay_tree%1:20:00:: 11707827 1 0 -california_beauty%1:20:00:: 12198793 1 0 -california_black_oak%1:20:00:: 12273344 1 0 -california_black_walnut%1:20:00:: 12318782 1 0 -california_bluebell%1:20:01:: 12837052 2 0 -california_bluebell%1:20:02:: 12837259 1 0 -california_box_elder%1:20:00:: 12755387 1 0 -california_buckthorn%1:20:00:: 13142182 1 0 -california_buckwheat%1:20:00:: 12602612 1 0 -california_coffee%1:20:00:: 13142182 1 0 -california_condor%1:05:00:: 01620135 1 0 -california_dandelion%1:20:00:: 11984144 1 0 -california_false_morel%1:20:00:: 13037585 1 0 -california_fern%1:20:00:: 12935609 1 0 -california_four_o'clock%1:20:00:: 11840067 1 0 -california_fuchsia%1:20:00:: 12342852 1 0 -california_lady's_slipper%1:20:00:: 12057660 1 0 -california_laurel%1:20:00:: 11707827 1 0 -california_live_oak%1:20:00:: 12269406 1 0 -california_newt%1:05:00:: 01631512 1 0 -california_nutmeg%1:20:00:: 11649150 1 0 -california_olive%1:20:00:: 11707827 1 0 -california_personality_inventory%1:10:00:: 06474972 1 0 -california_pitcher_plant%1:20:00:: 12781007 1 0 -california_pompano%1:05:00:: 02633677 1 0 -california_poppy%1:20:00:: 11905392 1 0 -california_privet%1:20:00:: 12309052 1 0 -california_quail%1:05:00:: 01806847 1 0 -california_redbud%1:20:00:: 12514138 1 0 -california_redwood%1:20:00:: 11641034 1 0 -california_romero%1:20:00:: 12871484 1 0 -california_sage%1:20:00:: 11929880 1 0 -california_sagebrush%1:20:00:: 11929880 1 0 -california_sea_lion%1:05:00:: 02078574 1 0 -california_single-leaf_pinyon%1:20:00:: 11610602 1 0 -california_sycamore%1:20:00:: 12807773 1 0 -california_tree_poppy%1:20:00:: 11907689 1 0 -california_whipsnake%1:05:00:: 01731941 1 0 -california_white_fir%1:20:00:: 11621727 1 0 -california_white_oak%1:20:00:: 12273939 1 0 -california_wine%1:13:00:: 07896060 1 0 -california_yellow_bells%1:20:00:: 12835331 1 0 -california_yew%1:20:00:: 11662128 1 0 -californian%1:18:00:: 09741612 1 1 -californian%3:01:00:: 03052403 1 0 -californium%1:27:00:: 14633037 1 0 -caliginous%5:00:00:dark:01 00274291 1 0 -caligula%1:18:00:: 10879551 1 0 -caliper%1:06:00:: 02939866 1 0 -caliper%2:31:00:: 00647770 1 0 -caliph%1:18:00:: 09887496 1 1 -caliphate%1:04:00:: 00589691 3 0 -caliphate%1:15:00:: 08550766 2 0 -caliphate%1:28:00:: 15248812 1 0 -caliphate_state%1:14:00:: 08028623 1 0 -calisaya%1:20:00:: 12664187 1 0 -calisthenic%3:01:00:: 02675196 1 0 -calisthenics%1:04:00:: 00627664 1 0 -calisthenics%1:04:01:: 00627437 2 0 -calixtus_ii%1:18:00:: 10879789 1 0 -calixtus_iii%1:18:00:: 10880024 1 0 -calk%1:06:00:: 02940143 1 0 -calk%2:29:00:: 00070736 3 0 -calk%2:35:00:: 01354565 2 0 -calk%2:35:01:: 01358191 1 0 -calkin%1:06:00:: 02940143 1 0 -call%1:04:00:: 00164801 12 0 -call%1:04:02:: 01055493 11 0 -call%1:04:03:: 01055954 6 1 -call%1:04:04:: 00080743 13 0 -call%1:09:00:: 06198505 2 4 -call%1:10:01:: 06272803 1 9 -call%1:10:02:: 07120524 3 3 -call%1:10:03:: 06796642 5 1 -call%1:10:04:: 07190693 9 0 -call%1:10:05:: 07192129 4 2 -call%1:10:06:: 07192511 8 0 -call%1:10:07:: 06582761 10 0 -call%1:10:08:: 07192661 7 0 -call%2:29:05:: 00107231 28 0 -call%2:31:00:: 00738583 26 0 -call%2:31:05:: 00691516 27 0 -call%2:31:13:: 00738747 25 0 -call%2:32:00:: 00971015 2 51 -call%2:32:01:: 00789448 3 38 -call%2:32:02:: 01028748 1 91 -call%2:32:03:: 00975036 10 1 -call%2:32:04:: 01062739 9 1 -call%2:32:05:: 00792471 5 25 -call%2:32:06:: 01068793 17 0 -call%2:32:07:: 00869393 20 0 -call%2:32:08:: 00822746 21 0 -call%2:32:09:: 00913065 4 25 -call%2:32:10:: 00917772 18 0 -call%2:32:11:: 00783523 22 0 -call%2:32:12:: 00874002 19 0 -call%2:32:13:: 01067995 8 1 -call%2:32:14:: 00753881 24 0 -call%2:32:15:: 00754156 23 0 -call%2:38:00:: 01899017 16 0 -call%2:40:05:: 02300060 15 0 -call%2:40:09:: 02359061 14 0 -call%2:41:00:: 02487573 6 9 -call%2:41:04:: 02429810 7 9 -call%2:41:12:: 02487901 13 0 -call%2:41:14:: 02601456 12 0 -call%2:42:09:: 02643421 11 0 -call-back%1:04:00:: 01218213 2 0 -call-back%1:10:00:: 06273207 1 1 -call-board%1:06:00:: 02940289 1 1 -call-in%1:10:00:: 06273555 1 0 -call-out%1:10:00:: 07231840 1 0 -call_at%2:38:00:: 02017299 1 0 -call_attention%2:32:00:: 00924612 1 0 -call_back%2:31:00:: 00607780 2 1 -call_back%2:32:08:: 00791506 4 0 -call_back%2:32:09:: 00791764 3 0 -call_back%2:40:00:: 02312478 1 1 -call_box%1:06:00:: 04401680 1 0 -call_box%1:06:01:: 03990210 2 0 -call_center%1:06:00:: 02940385 1 0 -call_centre%1:06:00:: 02940385 1 0 -call_down%2:32:00:: 00824767 2 0 -call_down%2:36:00:: 01629958 1 0 -call_fire%1:04:00:: 00988556 1 0 -call_for%2:32:03:: 01063695 3 1 -call_for%2:32:04:: 00752764 1 24 -call_for%2:40:00:: 02305586 4 0 -call_for%2:42:00:: 02627934 2 21 -call_forth%2:36:00:: 01629958 2 0 -call_forth%2:36:01:: 01646866 1 0 -call_forwarding%1:10:00:: 06273414 1 0 -call_girl%1:18:00:: 09889065 1 0 -call_in%2:32:00:: 00790135 5 1 -call_in%2:32:02:: 00792011 2 2 -call_in%2:35:00:: 01469960 1 2 -call_in%2:40:00:: 02312478 7 0 -call_in%2:40:02:: 02359061 6 0 -call_in%2:41:00:: 02487573 3 1 -call_in%2:41:02:: 02405120 4 1 -call_into_question%2:32:00:: 00867409 1 0 -call_it_a_day%2:42:00:: 02681335 1 0 -call_it_quits%2:42:00:: 02681335 1 0 -call_loan%1:21:00:: 13399275 1 0 -call_mark%1:10:00:: 06818439 1 0 -call_number%1:10:00:: 06818439 1 0 -call_off%2:38:00:: 01899017 2 0 -call_off%2:41:00:: 02477755 1 1 -call_on%2:32:00:: 00794640 1 8 -call_on_the_carpet%2:32:00:: 00824767 1 0 -call_one's_bluff%2:32:00:: 00868270 1 0 -call_option%1:04:00:: 00080743 2 0 -call_option%1:21:00:: 13242410 1 0 -call_out%2:32:00:: 00975584 2 6 -call_out%2:32:01:: 00912048 1 12 -call_out%2:32:12:: 00868979 3 0 -call_the_shots%2:41:00:: 02601271 1 0 -call_the_tune%2:41:00:: 02601271 1 0 -call_to_order%2:41:00:: 02425763 1 0 -call_up%1:10:00:: 07169353 1 0 -call_up%2:31:04:: 00607780 3 1 -call_up%2:32:00:: 00789448 2 1 -call_up%2:32:03:: 01025455 1 2 -call_up%2:33:00:: 01097960 4 0 -call_waiting%1:10:00:: 06273743 1 0 -calla%1:20:01:: 11786017 2 0 -calla%1:20:02:: 11793779 1 0 -calla_lily%1:20:00:: 11793779 1 0 -calla_palustris%1:20:00:: 11786131 1 0 -callable%5:00:00:due:00 00136589 1 0 -callas%1:18:00:: 10880189 1 0 -callathump%1:10:00:: 07054122 2 0 -callathump%1:14:00:: 08428623 1 0 -callback%1:10:00:: 07280072 1 0 -caller%1:18:00:: 09887850 1 3 -caller%1:18:01:: 09888017 7 0 -caller%1:18:02:: 09888269 6 0 -caller%1:18:03:: 09888429 5 0 -caller%1:18:04:: 09888635 4 0 -caller%1:18:05:: 09888832 3 0 -caller%1:18:06:: 09888978 2 0 -caller%5:00:00:cool:01 02530474 1 0 -caller%5:00:00:fresh:01 01068012 2 0 -caller-out%1:18:00:: 09888635 1 0 -caller-up%1:18:00:: 09888017 1 0 -caller_id%1:06:00:: 02940570 1 0 -calliandra%1:20:00:: 11760785 1 0 -callicebus%1:05:00:: 02493390 1 0 -calligraph%2:36:00:: 01691660 1 0 -calligrapher%1:18:00:: 09889170 1 0 -calligraphic%3:01:00:: 02909651 1 0 -calligraphical%3:01:00:: 02909651 1 0 -calligraphist%1:18:00:: 09889170 1 0 -calligraphy%1:10:00:: 06403969 1 0 -callimorpha%1:05:00:: 02305799 1 0 -callimorpha_jacobeae%1:05:00:: 02305929 1 0 -callinectes%1:05:00:: 01979738 1 0 -callinectes_sapidus%1:05:00:: 01979874 1 0 -calling%1:04:00:: 00583246 1 0 -calling_card%1:09:00:: 05852287 3 0 -calling_card%1:10:00:: 06633205 2 0 -calling_card%1:21:00:: 13376512 1 0 -calling_into_question%1:10:00:: 07232053 1 0 -calling_together%1:04:00:: 01230850 1 0 -callionymidae%1:05:00:: 02618697 1 0 -calliope%1:06:00:: 02940706 2 0 -calliope%1:18:00:: 09566320 1 0 -calliophis%1:05:00:: 01746565 1 0 -calliopsis%1:20:00:: 11957678 1 0 -calliper%1:06:00:: 02939866 1 0 -calliper%2:31:00:: 00647770 1 0 -calliphora%1:05:00:: 02191617 1 0 -calliphora_vicina%1:05:00:: 02191979 1 0 -calliphoridae%1:05:00:: 02191449 1 0 -callipygian%5:00:00:shapely:00 02139403 1 0 -callipygous%5:00:00:shapely:00 02139403 1 0 -callirhoe%1:20:00:: 12174742 1 0 -callirhoe_digitata%1:20:00:: 12175181 1 0 -callirhoe_involucrata%1:20:00:: 12175370 1 0 -callirhoe_triangulata%1:20:00:: 12175598 1 0 -callisaurus%1:05:00:: 01678522 1 0 -callisaurus_draconoides%1:05:00:: 01678657 1 0 -callistephus%1:20:00:: 11943824 1 0 -callistephus_chinensis%1:20:00:: 11943992 1 0 -callisthenics%1:04:00:: 00627664 1 0 -callisthenics%1:04:01:: 00627437 2 0 -callisto%1:17:00:: 09231263 1 0 -callithricidae%1:05:00:: 02490030 1 0 -callithrix%1:05:00:: 02490435 1 0 -callithump%1:10:00:: 07054122 2 0 -callithump%1:14:00:: 08428623 1 0 -callithump_parade%1:14:00:: 08428623 1 0 -callithumpian%3:01:00:: 02675320 1 0 -callitrichaceae%1:20:00:: 12693590 1 0 -callitriche%1:20:00:: 12693734 1 0 -callitris%1:20:00:: 11633459 1 0 -callitris_calcarata%1:20:00:: 11633999 1 0 -callitris_cupressiformis%1:20:00:: 11633863 1 0 -callitris_endlicheri%1:20:00:: 11633999 1 0 -callitris_glauca%1:20:00:: 11634243 1 0 -callitris_glaucophylla%1:20:00:: 11634243 1 0 -callitris_parlatorei%1:20:00:: 11634393 1 0 -callitris_quadrivalvis%1:20:00:: 11643022 1 0 -callophis%1:05:00:: 01746565 1 0 -callorhinus%1:05:00:: 02077533 1 0 -callorhinus_ursinus%1:05:00:: 02077787 1 0 -callosectomy%1:04:00:: 00683915 1 0 -callosity%1:07:00:: 04844625 2 0 -callosity%1:26:00:: 14364566 1 0 -callosotomy%1:04:00:: 00683915 1 0 -callous%2:30:00:: 00273114 1 0 -callous%5:00:00:insensitive:02 02107162 1 3 -callous%5:00:00:tough:02 02447569 2 0 -calloused%5:00:00:tough:02 02447569 1 2 -callously%4:02:00:: 00238529 1 1 -callousness%1:07:00:: 04844625 1 1 -callow%5:00:00:inexperienced:00 00936998 1 0 -callowness%1:26:00:: 14426568 1 0 -calluna%1:20:00:: 12233410 1 0 -calluna_vulgaris%1:20:00:: 12233529 1 0 -callus%1:20:00:: 13088688 3 0 -callus%1:26:00:: 14363785 2 0 -callus%1:26:01:: 14364566 1 0 -callus%2:30:00:: 00255752 2 0 -callus%2:30:01:: 00255880 1 0 -calm%1:07:00:: 04903813 1 3 -calm%1:19:00:: 11431617 2 0 -calm%2:29:00:: 00022316 4 0 -calm%2:30:00:: 00416571 2 1 -calm%2:37:00:: 01764800 1 5 -calm%2:37:01:: 01763829 3 0 -calm%3:00:00:: 00302761 2 0 -calm%5:00:00:composed:00 00529657 1 11 -calm_air%1:19:00:: 11431617 1 0 -calm_down%2:30:03:: 00558061 3 0 -calm_down%2:37:00:: 01764800 2 0 -calm_down%2:37:01:: 01763829 1 4 -calming%1:04:00:: 01150938 1 0 -calmly%4:02:00:: 00186756 1 9 -calmly%4:02:01:: 00448066 2 2 -calmness%1:07:00:: 04903813 1 2 -calmness%1:12:00:: 07514968 3 0 -calmness%1:26:00:: 14522265 2 0 -calnada_pea%1:20:00:: 12575812 1 0 -calocarpum%1:20:00:: 12773334 1 0 -calocarpum_zapota%1:20:00:: 12775919 1 0 -calocedrus%1:20:00:: 11634526 1 0 -calocedrus_decurrens%1:20:00:: 11634736 1 0 -calochortus%1:20:00:: 12445848 1 0 -calochortus_albus%1:20:00:: 12446908 1 0 -calochortus_amabilis%1:20:00:: 12447121 1 0 -calochortus_amoenus%1:20:00:: 12447346 1 0 -calochortus_elegans%1:20:00:: 12447581 1 0 -calochortus_kennedyi%1:20:00:: 12447891 1 0 -calochortus_luteus%1:20:00:: 12448136 1 0 -calochortus_macrocarpus%1:20:00:: 12448361 1 0 -calochortus_nuttallii%1:20:00:: 12448700 1 0 -calomel%1:27:00:: 14950937 1 0 -caloocan%1:15:00:: 08981922 1 0 -caloosahatchee%1:17:00:: 09231361 1 0 -caloosahatchee_canal%1:06:00:: 02940878 1 0 -caloosahatchee_river%1:17:00:: 09231361 1 0 -calophyllum%1:20:00:: 12364379 1 0 -calophyllum_calaba%1:20:00:: 12364940 1 0 -calophyllum_candidissimum%1:20:00:: 12365285 1 0 -calophyllum_inophyllum%1:20:00:: 12365462 1 0 -calophyllum_longifolium%1:20:00:: 12365158 1 0 -calopogon%1:20:00:: 12049134 1 0 -calopogon_pulchellum%1:20:00:: 12049282 1 0 -calopogon_tuberosum%1:20:00:: 12049282 1 0 -caloric%3:01:00:: 02814453 1 0 -caloric%3:01:02:: 02675446 2 0 -calorie%1:23:01:: 13726296 2 0 -calorie%1:23:02:: 13726562 1 0 -calorie-free%5:00:00:nonfat:00 00993117 1 0 -calorie_chart%1:10:00:: 06487610 1 0 -calorifacient%5:00:00:hot:01 01248477 1 0 -calorific%5:00:00:hot:01 01248605 1 0 -calorimeter%1:06:00:: 02941095 1 1 -calorimetric%3:01:00:: 02675738 1 1 -calorimetry%1:04:00:: 01001814 1 0 -caloscypha_fulgens%1:20:00:: 13029610 1 0 -calosoma%1:05:00:: 02167820 1 0 -calosoma_scrutator%1:05:00:: 02167944 1 0 -calostoma_cinnabarina%1:20:00:: 13042134 1 0 -calostoma_lutescens%1:20:00:: 13041943 1 0 -calostoma_ravenelii%1:20:00:: 13042316 1 0 -calostomataceae%1:20:00:: 13041725 1 0 -calpac%1:06:00:: 02941228 1 0 -calpack%1:06:00:: 02941228 1 0 -calpe%1:15:00:: 09028841 1 0 -calque%1:10:00:: 06301445 1 0 -calque_formation%1:10:00:: 06301445 1 0 -caltha%1:20:00:: 11727976 1 0 -caltha_palustris%1:20:00:: 11728099 1 0 -caltrop%1:20:00:: 12723610 1 0 -caltrop%1:20:01:: 11948044 3 0 -caltrop%1:20:02:: 12348294 2 0 -calumet%1:06:00:: 02941408 1 0 -calumniate%2:32:00:: 00846509 1 1 -calumniation%1:10:00:: 06719579 1 0 -calumniatory%5:00:00:harmful:00 01161233 1 0 -calumnious%5:00:00:harmful:00 01161233 1 0 -calumniously%4:02:00:: 00456790 1 0 -calumny%1:04:01:: 01220336 2 0 -calumny%1:10:00:: 06719579 1 1 -calvados%1:13:00:: 07903643 1 0 -calvaria%1:08:00:: 05540407 1 0 -calvary%1:11:00:: 07306032 2 0 -calvary%1:15:00:: 08796219 1 0 -calvary_clover%1:20:00:: 12549005 1 0 -calvary_cross%1:06:00:: 02941605 1 0 -calvatia%1:20:00:: 13044149 1 0 -calvatia_gigantea%1:20:00:: 13044375 1 0 -calve%2:29:00:: 00058897 2 0 -calve%2:35:00:: 01215017 1 0 -calvert_vaux%1:18:00:: 11361757 1 0 -calves'_feet%1:13:00:: 07666303 1 0 -calves'_liver%1:13:00:: 07652207 1 0 -calvin%1:18:00:: 10880398 2 0 -calvin%1:18:01:: 10880669 1 0 -calvin_coolidge%1:18:00:: 10908919 1 0 -calvin_klein%1:18:00:: 11106943 1 0 -calvin_richard_klein%1:18:00:: 11106943 1 0 -calving%1:22:00:: 13442639 1 3 -calvinism%1:09:00:: 06229853 1 0 -calvinist%1:18:00:: 09889346 1 0 -calvinist%3:01:00:: 02952975 1 0 -calvinistic%3:01:00:: 02952975 1 0 -calvinistic_baptist%1:14:00:: 08090329 1 0 -calvinistical%3:01:00:: 02952975 1 0 -calvino%1:18:00:: 10880841 1 0 -calx%1:27:00:: 14789885 1 0 -calycanthaceae%1:20:00:: 11700401 1 0 -calycanthus%1:20:00:: 11700676 1 0 -calycanthus_family%1:20:00:: 11700401 1 0 -calycanthus_floridus%1:20:00:: 11701066 1 0 -calycanthus_occidentalis%1:20:00:: 11701302 1 0 -calyceal%3:01:00:: 02675856 1 0 -calycinal%3:01:00:: 02675856 1 0 -calycine%3:01:00:: 02675856 1 0 -calycle%1:05:00:: 02155448 2 0 -calycle%1:20:00:: 11692108 1 0 -calycled%3:01:00:: 02676205 1 0 -calycophyllum%1:20:00:: 12661873 1 0 -calycophyllum_candidissimum%1:20:00:: 12662074 1 0 -calycular%3:01:00:: 02676046 1 0 -calyculate%3:01:00:: 02676205 1 0 -calyculus%1:05:00:: 02155448 2 0 -calyculus%1:20:00:: 11692108 1 0 -calymmatobacterium%1:05:00:: 01365122 1 0 -calymmatobacterium_granulomatis%1:05:00:: 01365322 1 0 -calypso%1:18:00:: 09490210 2 0 -calypso%1:20:00:: 12049562 1 0 -calypso_bulbosa%1:20:00:: 12049562 1 0 -calypter%1:05:00:: 02190465 1 0 -calyptra%1:20:00:: 11532547 1 0 -calyptrate%3:01:01:: 02676309 2 0 -calyptrate%3:01:02:: 02676383 1 0 -calyptridium_umbellatum%1:20:00:: 11862300 1 0 -calystegia%1:20:00:: 12824909 1 0 -calystegia_sepium%1:20:00:: 12825061 1 0 -calyx%1:20:00:: 11691523 1 0 -calyx_tube%1:20:00:: 11690254 1 0 -cam%1:06:00:: 02941716 2 0 -cam%1:17:00:: 09231587 1 0 -cam_river%1:17:00:: 09231587 1 0 -cam_stroke%1:11:00:: 07351195 1 0 -camachile%1:20:00:: 11764478 1 0 -camail%1:06:00:: 02941845 1 0 -camaraderie%1:07:00:: 04653627 1 1 -camarilla%1:14:00:: 08241798 1 0 -camas%1:20:00:: 12449296 1 0 -camash%1:20:00:: 12449296 1 0 -camass%1:20:00:: 12449296 1 0 -camassia%1:20:00:: 12449024 1 0 -camassia_leichtlinii%1:20:00:: 12449784 1 0 -camassia_quamash%1:20:00:: 12449526 1 0 -camassia_scilloides%1:20:00:: 12449934 1 0 -cambarus%1:05:00:: 01985667 1 0 -camber%1:04:00:: 01001344 3 0 -camber%1:17:00:: 09213828 2 0 -camber%1:25:00:: 13864423 1 0 -camber%2:38:00:: 02035425 1 0 -camber_arch%1:06:00:: 02942015 1 0 -camberwell_beauty%1:05:00:: 02275560 1 0 -cambial%3:01:00:: 02676456 1 0 -cambium%1:08:00:: 05286412 2 0 -cambium%1:20:00:: 13097338 1 0 -cambodia%1:15:00:: 08716738 1 1 -cambodian%1:18:00:: 09696280 1 0 -cambodian%3:01:00:: 02968828 1 0 -cambodian_capital%1:15:00:: 08717059 1 0 -cambodian_monetary_unit%1:23:00:: 13697727 1 0 -cambria%1:15:00:: 08894456 1 0 -cambrian%1:18:00:: 09747329 2 0 -cambrian%1:28:00:: 15128549 1 0 -cambrian%3:01:00:: 03130073 1 0 -cambrian_mountains%1:17:00:: 09231761 1 0 -cambrian_period%1:28:00:: 15128549 1 0 -cambric%1:06:00:: 02942147 1 0 -cambric_tea%1:13:00:: 07933652 1 0 -cambridge%1:06:00:: 02942227 1 1 -cambridge%1:15:00:: 08878016 3 0 -cambridge%1:15:01:: 09096664 2 0 -cambridge_university%1:06:00:: 02942227 1 0 -camcorder%1:06:00:: 02942349 1 0 -camden%1:15:00:: 09113333 1 0 -camel%1:05:00:: 02437136 1 0 -camel's_hair%1:06:00:: 02942460 1 0 -camel_racing%1:04:00:: 00449892 1 0 -camelhair%1:06:00:: 02942460 1 0 -camelia%1:20:00:: 12929403 1 0 -camelidae%1:05:00:: 02436813 1 0 -camelina%1:20:00:: 11880610 1 0 -camelina_sativa%1:20:00:: 11880791 1 0 -camellia%1:20:00:: 12929403 1 0 -camellia_japonica%1:20:00:: 12929600 1 0 -camellia_sinensis%1:20:00:: 12929783 1 0 -camellia_state%1:15:00:: 09053185 1 0 -camelopard%1:05:00:: 02439033 1 0 -camelot%1:15:00:: 08558289 1 0 -camelpox%1:26:00:: 14262153 1 0 -camelus%1:05:00:: 02436993 1 0 -camelus_bactrianus%1:05:00:: 02437482 1 0 -camelus_dromedarius%1:05:00:: 02437312 1 0 -camembert%1:13:00:: 07852833 1 0 -cameo%1:06:00:: 02942577 1 0 -camera%1:06:00:: 02942699 1 18 -camera%1:06:01:: 04404997 2 4 -camera_angle%1:07:00:: 05076384 1 0 -camera_care%1:04:00:: 00267821 1 0 -camera_lens%1:06:00:: 02943241 1 1 -camera_lucida%1:06:00:: 02943465 1 0 -camera_obscura%1:06:00:: 02943686 1 0 -camera_operator%1:18:00:: 09889539 1 0 -camera_tripod%1:06:00:: 02943871 1 0 -cameraman%1:18:00:: 09889539 1 0 -cameroon%1:15:00:: 08717209 2 0 -cameroon%1:15:01:: 09173623 1 0 -cameroon_franc%1:23:00:: 13677222 1 0 -cameroonian%1:18:00:: 09696456 1 0 -cameroonian%3:01:00:: 03052588 1 0 -cameroun%1:15:00:: 08717209 1 0 -camillo_golgi%1:18:00:: 11005780 1 0 -camion%1:06:01:: 03235979 2 0 -camion%1:06:02:: 03690473 1 0 -camise%1:06:00:: 02943964 1 0 -camisole%1:06:00:: 02944075 2 0 -camisole%1:06:01:: 02944146 1 0 -camlan%1:15:00:: 08507109 1 0 -camlet%1:06:00:: 02944256 2 0 -camlet%1:06:01:: 02944375 1 0 -camo%1:06:00:: 02944579 1 0 -camomile%1:20:00:: 11949402 1 0 -camomile_tea%1:13:00:: 07934152 1 0 -camorra%1:14:00:: 08246185 1 0 -camosh%1:20:00:: 12449296 1 0 -camouflage%1:04:00:: 01049266 4 0 -camouflage%1:06:00:: 02944459 3 0 -camouflage%1:06:01:: 02944579 2 0 -camouflage%1:07:00:: 04679074 1 0 -camouflage%2:39:00:: 02158896 1 1 -camouflaged%5:00:00:invisible:00 02517713 1 0 -camp%1:06:00:: 02944826 1 19 -camp%1:06:01:: 02945161 3 6 -camp%1:06:02:: 02945379 5 2 -camp%1:06:03:: 02945594 8 0 -camp%1:06:04:: 02945813 7 0 -camp%1:09:00:: 05649960 6 1 -camp%1:14:00:: 08478018 2 7 -camp%1:14:01:: 08240633 4 2 -camp%2:30:00:: 00525805 3 0 -camp%2:35:00:: 01514248 2 0 -camp%2:42:00:: 02653996 1 7 -camp%5:00:00:tasteless:02 02394487 1 0 -camp-made%5:00:00:handmade:00 00673662 1 0 -camp_bed%1:06:00:: 03114504 1 0 -camp_chair%1:06:00:: 02946270 1 0 -camp_david%1:15:00:: 08643499 1 0 -camp_down%2:35:00:: 01514248 1 0 -camp_follower%1:18:00:: 09890192 2 0 -camp_follower%1:18:01:: 09890296 1 0 -camp_meeting%1:14:00:: 08308156 1 0 -camp_out%2:42:00:: 02653996 1 1 -camp_robber%1:05:00:: 01581166 1 0 -campaign%1:04:00:: 00968155 3 4 -campaign%1:04:01:: 00309906 4 0 -campaign%1:04:02:: 00798245 2 5 -campaign%1:11:00:: 07472929 1 9 -campaign%2:33:00:: 01093786 3 0 -campaign%2:33:01:: 01094086 1 7 -campaign%2:41:10:: 02589576 2 2 -campaign_for_governor%1:11:00:: 07473207 1 0 -campaign_hat%1:06:00:: 02945964 1 0 -campaigner%1:18:00:: 09889691 1 0 -campaigning%1:04:00:: 00799537 1 0 -campana%1:25:00:: 13886260 1 0 -campania%1:15:00:: 08805122 1 0 -campanile%1:06:00:: 02946127 1 0 -campanula%1:20:00:: 12036939 1 0 -campanula_americana%1:20:00:: 12038038 1 0 -campanula_aparinoides%1:20:00:: 12038208 1 0 -campanula_carpatica%1:20:00:: 12039317 1 0 -campanula_divaricata%1:20:00:: 12037864 1 0 -campanula_glomerata%1:20:00:: 12038406 1 0 -campanula_medium%1:20:00:: 12037691 1 0 -campanula_persicifolia%1:20:00:: 12038585 1 0 -campanula_pyramidalis%1:20:00:: 12038760 1 0 -campanula_rapunculoides%1:20:00:: 12037499 1 0 -campanula_rapunculus%1:20:00:: 12038898 1 0 -campanula_rotundifolia%1:20:00:: 12037328 1 0 -campanula_trachelium%1:20:00:: 12039122 1 0 -campanulaceae%1:20:00:: 12036533 1 0 -campanulales%1:20:00:: 11911274 1 0 -campanular%3:01:00:: 02676610 1 0 -campanulate%3:01:00:: 02676610 1 0 -campanulated%3:01:00:: 02676610 1 0 -campbell%1:18:00:: 10880981 1 0 -campeachy%1:20:00:: 12496949 1 0 -campeche%1:15:00:: 08740617 1 0 -campeche%1:15:01:: 08740483 2 0 -campephilus%1:05:00:: 01840278 1 0 -campephilus_principalis%1:05:00:: 01840412 1 0 -camper%1:06:00:: 02946348 2 0 -camper%1:18:00:: 09889941 1 10 -camper_trailer%1:06:00:: 02946509 1 1 -campestral%5:00:00:rural:00 02051500 1 0 -campfire%1:11:00:: 07303585 1 3 -campfire_girl%1:18:00:: 09890072 1 0 -campground%1:15:00:: 08518171 1 0 -camphor%1:27:00:: 14790979 1 0 -camphor_ball%1:06:00:: 03788703 1 0 -camphor_daisy%1:20:00:: 11976314 1 0 -camphor_dune_tansy%1:20:00:: 12021882 1 0 -camphor_ice%1:06:00:: 02946633 1 0 -camphor_oil%1:27:00:: 14791202 1 0 -camphor_tree%1:20:00:: 11704620 1 0 -camphoraceous%3:01:00:: 02676825 1 0 -camphorate%2:30:00:: 00186912 1 0 -camphorated%3:00:00:: 00306131 1 0 -camphorated_tincture_of_opium%1:06:00:: 03889974 1 0 -camphoric%3:01:00:: 02676966 1 0 -camphorweed%1:20:00:: 12871696 1 0 -camping%1:04:00:: 01055165 1 13 -camping_area%1:15:00:: 08518171 1 0 -camping_bus%1:06:00:: 02946348 1 0 -camping_ground%1:15:00:: 08518171 1 0 -camping_site%1:15:00:: 08518171 1 0 -campion%1:20:00:: 11815491 1 0 -campmate%1:18:00:: 09890411 1 1 -campong%1:15:00:: 08673039 1 0 -camponotus%1:05:00:: 02220676 1 0 -campsis_radicans%1:20:00:: 12814235 1 0 -campsite%1:15:00:: 08518171 1 0 -campstool%1:06:00:: 02946753 1 0 -camptosorus%1:20:00:: 13181616 1 0 -camptosorus_rhizophyllus%1:20:00:: 13181811 1 0 -campus%1:15:00:: 08518374 1 2 -campy%5:00:00:tasteless:02 02394487 1 0 -campyloneurum%1:20:00:: 13174515 1 0 -campyloneurum_augustifolium%1:20:00:: 13175074 1 0 -campylorhynchus%1:05:00:: 01586170 1 0 -campylotropous%3:00:00:: 01029399 1 0 -campylotropous_ovule%1:20:00:: 11679779 1 0 -camshaft%1:06:00:: 02946824 1 0 -camus%1:18:00:: 10881092 1 0 -camwood%1:20:00:: 12509109 1 0 -can%1:06:00:: 02946921 1 2 -can%1:06:02:: 04446276 6 0 -can%1:06:03:: 04446521 5 0 -can%1:08:00:: 05559256 4 0 -can%1:10:01:: 07266776 3 0 -can%1:23:00:: 13765990 2 0 -can%2:30:00:: 00213794 1 2 -can%2:41:00:: 02402825 2 1 -can-do%5:00:00:dynamic:00 00808614 1 0 -can_buoy%1:10:00:: 07266776 1 0 -can_of_worms%1:09:00:: 05687832 1 0 -can_opener%1:06:00:: 02951585 1 0 -canaan%1:15:00:: 08798382 1 0 -canaanite%1:10:00:: 06989325 2 0 -canaanite%1:18:00:: 09890507 1 0 -canaanitic%1:10:00:: 06989146 1 0 -canaanitic_language%1:10:00:: 06989146 1 0 -canachites%1:05:00:: 01797180 1 0 -canachites_canadensis%1:05:00:: 01797307 1 0 -canada%1:15:00:: 08820121 1 9 -canada_anemone%1:20:00:: 11725480 1 0 -canada_balsam%1:20:01:: 11621950 2 0 -canada_balsam%1:27:00:: 14897164 1 0 -canada_garlic%1:20:00:: 12432574 1 0 -canada_ginger%1:20:00:: 11802410 1 0 -canada_goose%1:05:00:: 01857632 1 0 -canada_jay%1:05:00:: 01581166 1 0 -canada_lily%1:20:00:: 12426749 1 0 -canada_lynx%1:05:00:: 02127381 1 0 -canada_moonseed%1:20:00:: 11713370 1 0 -canada_plum%1:20:00:: 12640284 1 0 -canada_porcupine%1:05:00:: 02348173 1 0 -canada_thistle%1:20:00:: 11954161 1 0 -canada_violet%1:20:00:: 12388652 1 0 -canada_wild_rye%1:20:00:: 12119717 1 0 -canadian%1:17:00:: 09231890 2 0 -canadian%1:18:00:: 09696585 1 0 -canadian%3:01:00:: 02982473 1 1 -canadian_aspen%1:20:00:: 12734215 1 0 -canadian_bacon%1:13:00:: 07670995 1 0 -canadian_capital%1:15:00:: 08827486 1 0 -canadian_dollar%1:23:00:: 13672794 1 0 -canadian_falls%1:17:00:: 09232165 1 0 -canadian_fleabane%1:20:00:: 11956348 1 0 -canadian_french%1:10:00:: 06965961 1 0 -canadian_goldenrod%1:20:00:: 12016567 1 0 -canadian_goose%1:05:00:: 01857632 1 0 -canadian_hemlock%1:20:00:: 11627512 1 0 -canadian_maritime_provinces%1:15:00:: 08821578 1 0 -canadian_pondweed%1:20:00:: 12614625 1 0 -canadian_province%1:15:00:: 08821885 1 0 -canadian_red_pine%1:20:00:: 11616486 1 0 -canadian_river%1:17:00:: 09231890 1 0 -canadian_security_intelligence_service%1:14:00:: 08342419 1 0 -canadian_shield%1:15:00:: 08821319 1 0 -canafistola%1:20:00:: 12492106 1 0 -canafistula%1:20:00:: 12492106 1 0 -canakkale_bogazi%1:15:00:: 09041371 1 0 -canal%1:06:00:: 02947212 3 0 -canal%1:08:00:: 05250659 2 0 -canal%1:17:00:: 09232317 1 0 -canal%2:40:00:: 02336015 1 0 -canal_boat%1:06:00:: 02947660 1 0 -canal_of_schlemm%1:08:00:: 05251789 1 0 -canal_zone%1:15:00:: 08739829 1 0 -canalicular%3:01:00:: 02677112 1 0 -canaliculate%5:00:00:furrowed:00 02244065 1 0 -canaliculus%1:08:00:: 05251655 1 0 -canalis_cervicis_uteri%1:08:00:: 05519559 1 0 -canalis_inguinalis%1:08:00:: 05386544 1 0 -canalis_vertebralis%1:08:00:: 05249232 1 0 -canalisation%1:04:00:: 01142843 1 0 -canalisation%1:04:01:: 01142519 2 0 -canalise%2:38:00:: 01933900 2 0 -canalise%2:40:00:: 02336015 1 0 -canalization%1:04:00:: 01142843 1 0 -canalization%1:04:01:: 01142519 2 0 -canalize%2:38:00:: 01933900 2 0 -canalize%2:40:00:: 02336015 1 0 -canandaigua_lake%1:17:00:: 09232526 1 0 -cananga%1:20:00:: 11695813 1 0 -cananga_odorata%1:20:00:: 11695974 1 0 -canangium%1:20:00:: 11695813 1 0 -canape%1:13:00:: 07581607 1 0 -canara%1:15:00:: 08902753 1 0 -canard%1:10:00:: 06758135 1 0 -canarese%1:18:00:: 09674631 1 0 -canaries%1:15:00:: 09024972 1 0 -canary%1:05:00:: 01533339 4 0 -canary%1:07:00:: 04966114 3 0 -canary%1:18:00:: 09890662 2 0 -canary%1:18:01:: 10091012 1 0 -canary%5:00:00:chromatic:00 00372653 1 0 -canary-yellow%5:00:00:chromatic:00 00372653 1 0 -canary_bird%1:05:00:: 01533339 1 0 -canary_creeper%1:20:00:: 12720354 1 0 -canary_grass%1:20:00:: 12129986 1 0 -canary_island_hare's_foot_fern%1:20:00:: 13188462 1 0 -canary_islands%1:15:00:: 09024972 1 0 -canary_seed%1:13:00:: 07806120 1 0 -canary_whitewood%1:20:00:: 11712282 1 0 -canary_wine%1:13:00:: 07894451 1 0 -canary_yellow%1:07:00:: 04966114 1 0 -canarybird_flower%1:20:00:: 12720354 1 0 -canarybird_vine%1:20:00:: 12720354 1 0 -canasta%1:04:00:: 00497060 1 0 -canavalia%1:20:00:: 12511046 1 0 -canavalia_ensiformis%1:20:00:: 12511239 1 0 -canavalia_gladiata%1:20:00:: 12511488 1 0 -canavanine%1:27:00:: 14603143 1 0 -canberra%1:15:00:: 08832269 1 0 -cancan%1:04:00:: 00531077 1 0 -cancel%1:10:00:: 06867218 1 0 -cancel%2:32:01:: 00800460 5 0 -cancel%2:35:00:: 01549187 4 0 -cancel%2:41:00:: 02477334 3 0 -cancel%2:41:03:: 02477755 1 9 -cancel%2:42:00:: 02717831 2 0 -cancel_out%2:30:00:: 00471196 1 3 -cancellate%5:00:00:cellular:00 00327541 2 0 -cancellate%5:00:00:reticulate:00 02006538 1 0 -cancellated%5:00:00:cellular:00 00327541 2 0 -cancellated%5:00:00:reticulate:00 02006538 1 0 -cancellation%1:04:00:: 00232386 1 2 -cancellation%1:10:00:: 07207142 2 0 -cancelled%3:00:02:: 01651896 1 0 -cancellous%5:00:00:cellular:00 00327541 1 0 -cancer%1:05:00:: 01977832 5 0 -cancer%1:15:00:: 08686658 4 0 -cancer%1:17:00:: 09232687 3 0 -cancer%1:18:00:: 09752657 2 0 -cancer%1:26:00:: 14239918 1 15 -cancer_body%1:17:00:: 09417926 1 0 -cancer_borealis%1:05:00:: 01978587 1 0 -cancer_cell%1:08:00:: 05431285 1 0 -cancer_drug%1:06:00:: 02722458 1 0 -cancer_irroratus%1:05:00:: 01978455 1 0 -cancer_juice%1:08:00:: 05398760 1 0 -cancer_magister%1:05:00:: 01978287 1 0 -cancer_of_the_blood%1:26:00:: 14242922 1 0 -cancer_of_the_liver%1:26:00:: 14131651 1 0 -cancer_the_crab%1:15:00:: 08686658 1 0 -cancer_weed%1:20:00:: 12865708 1 0 -cancerous%5:00:00:malign:00 00227301 2 0 -cancerous%5:00:00:malignant:02 02594940 1 0 -cancerweed%1:20:00:: 12865708 1 0 -cancridae%1:05:00:: 01977684 1 0 -cancroid%1:26:00:: 14242788 1 0 -cancroid%3:01:00:: 02677231 1 0 -cancun%1:15:00:: 08740729 1 0 -candela%1:23:00:: 13641534 1 0 -candelabra%1:06:00:: 02947818 1 0 -candelabrum%1:06:00:: 02947818 1 0 -candelilla%1:20:00:: 12921126 2 0 -candelilla%1:20:02:: 12928307 1 0 -candelilla_wax%1:27:00:: 14791292 1 0 -candent%5:00:00:light:06 00271813 1 0 -candescent%5:00:00:light:06 00271208 1 0 -candid%5:00:00:direct:02 00764484 1 1 -candid%5:00:00:ingenuous:00 01310273 3 0 -candid%5:00:00:unstudied:00 01799297 2 0 -candid_camera%1:06:00:: 02947977 1 0 -candida%1:20:00:: 13079419 1 0 -candida_albicans%1:20:00:: 13079567 1 0 -candidacy%1:04:00:: 00799537 1 1 -candidate%1:18:00:: 09890749 2 5 -candidate%1:18:01:: 09889691 1 20 -candidature%1:04:00:: 00799537 1 0 -candidiasis%1:26:00:: 14181713 1 0 -candidly%4:02:00:: 00314835 1 1 -candidness%1:07:00:: 04871720 1 0 -candied%5:00:00:preserved:02 01071941 2 0 -candied%5:00:00:sugary:00 02337912 1 0 -candied_apple%1:13:00:: 07600696 1 0 -candied_citrus_peel%1:13:00:: 07601407 1 0 -candied_fruit%1:13:00:: 07600506 1 0 -candle%1:06:00:: 02948072 1 4 -candle%1:23:00:: 13641534 2 0 -candle%2:39:00:: 02149899 1 0 -candle_flame%1:19:00:: 11433435 1 1 -candle_holder%1:06:00:: 02948557 1 0 -candleberry%1:20:00:: 11741797 1 0 -candlelight%1:19:00:: 11433435 1 0 -candlemaker%1:18:00:: 09890894 1 0 -candlemas%1:28:00:: 15186681 1 0 -candlemas_day%1:28:00:: 15186681 1 0 -candlenut%1:20:01:: 12927494 1 0 -candlenut%1:20:02:: 11689957 2 0 -candlepin%1:06:00:: 02948293 1 0 -candlepin_bowling%1:04:00:: 00462686 1 0 -candlepins%1:04:00:: 00462686 1 0 -candlepower%1:07:00:: 05100751 1 0 -candlepower_unit%1:23:00:: 13640050 1 0 -candlesnuffer%1:06:00:: 02948403 1 0 -candlestick%1:06:00:: 02948557 1 0 -candlestick_tulip%1:20:00:: 12454556 1 0 -candlewick%1:06:00:: 02948719 1 1 -candlewick%1:06:01:: 02948834 2 0 -candlewood%1:20:00:: 12381511 1 0 -candor%1:07:00:: 04871720 2 0 -candor%1:09:00:: 06203030 1 0 -candour%1:07:00:: 04871720 1 1 -candour%1:09:00:: 06203030 2 0 -candy%1:13:00:: 07597365 1 1 -candy%2:39:00:: 02196378 1 0 -candy-like%5:00:00:cooked:00 00617271 1 0 -candy-scented%5:00:00:odorous:00 01056086 1 0 -candy_apple%1:13:00:: 07600696 1 0 -candy_bar%1:13:00:: 07598256 1 0 -candy_cane%1:13:00:: 07601572 1 0 -candy_corn%1:13:00:: 07601686 1 0 -candy_egg%1:13:00:: 07842130 1 0 -candy_kiss%1:13:00:: 07606764 1 0 -candy_store%1:06:00:: 03089624 1 1 -candy_striper%1:18:00:: 09890987 1 0 -candy_thermometer%1:06:00:: 02948942 1 0 -candyfloss%1:13:00:: 07605040 1 0 -candymaker%1:18:00:: 09953350 1 0 -candytuft%1:20:00:: 11889619 1 0 -candyweed%1:20:00:: 12705458 1 0 -cane%1:06:00:: 02949084 3 0 -cane%1:06:01:: 02949202 1 5 -cane%1:20:00:: 12136206 2 0 -cane%2:35:00:: 01412204 1 1 -cane_blight%1:26:00:: 14216404 1 0 -cane_reed%1:20:00:: 12148253 1 0 -cane_sugar%1:13:00:: 07595649 2 0 -cane_sugar%1:27:00:: 14791453 1 0 -canebrake%1:14:00:: 08437847 1 0 -canebrake_rattler%1:05:00:: 01755952 1 0 -canebrake_rattlesnake%1:05:00:: 01755952 1 0 -canecutter%1:05:00:: 02325884 1 0 -canella%1:20:00:: 12372520 1 0 -canella-alba%1:20:00:: 12372233 1 0 -canella_bark%1:20:00:: 12372520 1 0 -canella_family%1:20:00:: 12371911 1 0 -canella_winterana%1:20:00:: 12372233 1 0 -canellaceae%1:20:00:: 12371911 1 0 -canescent%5:00:00:achromatic:00 00388477 1 0 -canescent%5:00:00:hairy:00 00212949 2 0 -canetti%1:18:00:: 10881269 1 0 -canfield%1:04:00:: 00495677 1 0 -canful%1:23:00:: 13765990 1 0 -cangue%1:06:00:: 02949356 1 0 -canicola_fever%1:26:00:: 14273601 1 0 -canicula%1:17:00:: 09435965 1 0 -canicular%3:01:00:: 02677332 2 0 -canicular%3:01:02:: 02677549 1 0 -canicular_days%1:28:00:: 15237567 1 0 -canicule%1:28:00:: 15237567 1 0 -canid%1:05:00:: 02083346 1 0 -canidae%1:05:00:: 02083038 1 0 -canine%1:05:00:: 02083346 2 0 -canine%1:08:00:: 05307091 1 0 -canine%3:01:00:: 02677703 2 0 -canine%3:01:02:: 02677861 1 0 -canine_chorea%1:26:00:: 14262336 1 0 -canine_distemper%1:26:00:: 14264203 1 0 -canine_tooth%1:08:00:: 05307091 1 0 -caning%1:06:00:: 04582205 1 1 -canis%1:05:00:: 02083863 1 0 -canis_aureus%1:05:00:: 02115096 1 0 -canis_dingo%1:05:00:: 02115641 1 0 -canis_familiaris%1:05:00:: 02084071 1 0 -canis_latrans%1:05:00:: 02114855 1 0 -canis_lupus%1:05:00:: 02114367 1 0 -canis_lupus_tundrarum%1:05:00:: 02114548 1 0 -canis_major%1:17:00:: 09232841 1 0 -canis_minor%1:17:00:: 09232989 1 0 -canis_niger%1:05:00:: 02114712 1 0 -canis_rufus%1:05:00:: 02114712 1 0 -canistel%1:13:00:: 07755262 2 0 -canistel%1:20:00:: 12775717 1 0 -canistel_tree%1:20:00:: 12775717 1 0 -canister%1:06:00:: 02949542 2 0 -canister%1:06:01:: 02976641 1 0 -canister_shot%1:06:00:: 02976641 1 0 -canker%1:09:00:: 05693669 3 0 -canker%1:26:00:: 14212759 2 0 -canker%1:26:01:: 14279417 1 0 -canker%2:29:00:: 00089973 2 0 -canker%2:29:01:: 00090075 1 0 -canker_brake%1:20:00:: 13199717 1 0 -canker_sore%1:26:00:: 14212759 1 0 -cankerous%5:00:00:unhealthy:00 01175158 1 0 -cankerweed%1:20:00:: 11997160 1 0 -cankerworm%1:05:00:: 02287799 1 0 -canna%1:20:00:: 12350758 1 0 -canna_edulis%1:20:00:: 12351091 1 0 -canna_generalis%1:20:00:: 12350959 1 0 -canna_indica%1:20:00:: 12351091 1 0 -canna_lily%1:20:00:: 12350959 1 0 -cannabidaceae%1:20:00:: 12396255 1 0 -cannabin%1:27:00:: 14791560 1 0 -cannabis%1:06:00:: 02949691 2 0 -cannabis%1:20:00:: 12396924 1 0 -cannabis_indica%1:20:00:: 12397431 1 0 -cannabis_resin%1:27:00:: 14791560 1 0 -cannabis_sativa%1:20:00:: 12397210 1 0 -cannaceae%1:20:00:: 12350433 1 0 -cannae%1:04:00:: 01274000 1 0 -canned%5:00:00:preserved:02 01072112 2 0 -canned%5:00:00:recorded:00 01423187 1 0 -canned_food%1:13:00:: 07572957 1 0 -canned_foods%1:13:00:: 07572957 1 0 -canned_goods%1:13:00:: 07572957 1 0 -canned_hunt%1:04:00:: 00452947 1 0 -canned_meat%1:13:00:: 07573103 1 0 -cannel_coal%1:27:00:: 14791722 1 0 -cannelloni%1:13:00:: 07863547 1 0 -cannery%1:06:00:: 02950018 1 0 -cannes%1:15:00:: 08935212 1 0 -cannibal%1:18:00:: 09891079 1 0 -cannibal_mound%1:13:00:: 07877675 1 0 -cannibalic%5:00:00:inhumane:00 01263832 1 0 -cannibalise%2:34:00:: 01162291 1 0 -cannibalise%2:34:01:: 01162143 2 0 -cannibalism%1:04:00:: 00412839 1 0 -cannibalistic%3:01:00:: 03052770 1 0 -cannibalize%2:34:00:: 01162291 1 0 -cannibalize%2:34:01:: 01162143 2 0 -cannikin%1:06:00:: 02950120 2 0 -cannikin%1:06:01:: 02950186 1 0 -cannily%4:02:00:: 00430261 1 0 -cannister%1:06:00:: 02949542 1 0 -cannon%1:04:00:: 00500449 6 0 -cannon%1:05:00:: 02462828 5 0 -cannon%1:06:00:: 02950256 1 11 -cannon%1:06:01:: 02950482 4 0 -cannon%1:06:02:: 02950632 3 0 -cannon%1:06:03:: 02950826 2 0 -cannon%2:33:00:: 01134522 2 0 -cannon%2:33:01:: 01147987 1 0 -cannon_ball%1:06:00:: 02950943 1 0 -cannon_bone%1:05:00:: 02463024 1 0 -cannon_cracker%1:06:00:: 02951090 1 0 -cannon_fire%1:04:00:: 00994449 1 0 -cannon_fodder%1:18:00:: 09891300 1 1 -cannonade%1:04:00:: 00994623 1 0 -cannonade%2:33:00:: 01136481 1 0 -cannonball%1:06:00:: 02950943 1 0 -cannonball_along%2:38:00:: 02058994 1 0 -cannoneer%1:18:00:: 09811852 1 0 -cannula%1:06:00:: 02951170 1 0 -cannular%5:00:00:hollow:00 02264807 1 0 -cannulate%2:35:00:: 01422172 1 0 -cannulation%1:04:00:: 00321195 1 0 -cannulisation%1:04:00:: 00321195 1 0 -cannulise%2:35:00:: 01422172 1 0 -cannulization%1:04:00:: 00321195 1 0 -cannulize%2:35:00:: 01422172 1 0 -canny%5:00:00:smart:00 00439252 1 0 -canoe%1:06:00:: 02951358 1 0 -canoe%2:38:00:: 01947543 1 0 -canoe_birch%1:20:00:: 12281974 1 0 -canoe_cedar%1:20:00:: 11644046 1 0 -canoeist%1:18:00:: 09891470 1 0 -canola%1:13:00:: 07674001 1 0 -canola_oil%1:13:00:: 07674001 1 0 -canon%1:10:00:: 06664594 1 5 -canon%1:10:01:: 07042862 4 0 -canon%1:10:02:: 06430537 6 0 -canon%1:10:03:: 06487729 5 0 -canon%1:17:00:: 09233446 3 0 -canon%1:18:00:: 09891613 2 0 -canon_law%1:14:00:: 08453299 1 0 -canonic%3:01:00:: 03001527 2 0 -canonic%3:01:02:: 03001653 1 0 -canonic%5:00:00:orthodox:00 01690244 4 0 -canonic%5:00:00:standard:01 02295298 3 0 -canonical%3:01:00:: 03001527 2 0 -canonical%3:01:02:: 03001653 1 0 -canonical%5:00:00:orthodox:00 01690244 4 0 -canonical%5:00:02:standard:01 02295298 3 0 -canonical_hour%1:28:00:: 15229408 1 0 -canonically%4:02:00:: 00512874 1 0 -canonisation%1:04:00:: 01040390 1 0 -canonise%2:32:00:: 00823129 2 0 -canonise%2:32:02:: 00861077 1 0 -canonised%5:00:00:authorized:00 00179190 1 0 -canonist%1:18:00:: 09891730 1 0 -canonist%3:01:00:: 03001853 1 2 -canonization%1:04:00:: 01040390 1 0 -canonize%2:32:00:: 00823129 1 1 -canonize%2:32:02:: 00861077 2 0 -canonized%5:00:00:authorized:00 00179190 1 1 -canoodle%2:35:00:: 01226781 1 0 -canopic_jar%1:06:00:: 02951703 1 0 -canopic_vase%1:06:00:: 02951703 1 0 -canopied%5:00:00:covered:00 01695363 1 0 -canopus%1:17:00:: 09233134 1 0 -canopy%1:06:00:: 02951843 3 0 -canopy%1:06:01:: 02952109 2 0 -canopy%1:06:02:: 02952237 1 0 -canopy%2:35:00:: 01337526 1 0 -canorous%5:00:00:melodious:00 01501619 1 0 -cant%1:06:00:: 02833576 5 0 -cant%1:10:00:: 07157273 3 0 -cant%1:10:01:: 06608277 1 1 -cant%1:10:02:: 07136098 4 0 -cant%1:17:00:: 09213828 2 0 -cant%2:38:00:: 01884577 1 0 -cant_dog%1:06:00:: 03903133 1 0 -cant_hook%1:06:00:: 02952935 1 0 -cant_over%2:38:00:: 01884577 1 0 -cantabile%5:00:00:melodious:00 01501718 1 0 -cantabrian_mountains%1:17:00:: 09233284 1 0 -cantabrigian%1:18:00:: 09703708 1 0 -cantala%1:20:01:: 12477583 2 0 -cantala%1:20:02:: 12478131 1 0 -cantaloup%1:13:00:: 07755929 2 0 -cantaloup%1:20:00:: 12164656 1 0 -cantaloup_vine%1:20:00:: 12164656 1 0 -cantaloupe%1:13:00:: 07755929 2 0 -cantaloupe%1:20:00:: 12164656 1 0 -cantaloupe_vine%1:20:00:: 12164656 1 0 -cantankerous%5:00:00:ill-natured:00 01135673 2 0 -cantankerous%5:00:00:stubborn:00 02327078 1 0 -cantankerously%4:02:00:: 00281383 1 0 -cantata%1:10:00:: 07042249 1 0 -canted%5:00:00:inclined:01 01234527 1 0 -canteen%1:06:00:: 02952374 1 12 -canteen%1:06:01:: 02952485 5 0 -canteen%1:06:02:: 02952585 4 0 -canteen%1:06:03:: 02952674 3 0 -canteen%1:06:04:: 02952798 2 0 -canter%1:04:00:: 00288486 1 1 -canter%2:38:00:: 01959340 1 1 -canter%2:38:01:: 01959669 2 0 -canter%2:38:03:: 01959482 3 0 -canterbury%1:15:00:: 08883772 1 0 -canterbury_bell%1:20:01:: 12832538 1 0 -canterbury_bell%1:20:02:: 12037691 2 0 -canterbury_tales%1:10:00:: 07221623 1 0 -cantering%3:44:00:: 03147793 1 1 -cantering_rhythm%1:26:00:: 14111540 1 0 -cantharellus%1:20:00:: 13004160 1 0 -cantharellus_cibarius%1:20:00:: 13004423 1 0 -cantharellus_cinnabarinus%1:20:00:: 13004992 1 0 -cantharellus_clavatus%1:20:00:: 13004826 1 0 -cantharellus_floccosus%1:20:00:: 13004640 1 0 -canthus%1:08:00:: 05314075 1 0 -canticle%1:10:00:: 07036443 1 0 -canticle_of_canticles%1:10:00:: 06437824 1 0 -canticle_of_simeon%1:10:00:: 06456642 1 0 -canticles%1:10:00:: 06437824 1 0 -cantilever%1:06:00:: 02953056 1 1 -cantilever%2:36:00:: 01656233 2 0 -cantilever%2:42:00:: 02714865 1 0 -cantilever_bridge%1:06:00:: 02953197 1 0 -cantillate%2:32:00:: 01049737 1 0 -cantillation%1:04:00:: 01254882 1 0 -cantle%1:06:00:: 02953455 1 1 -canto%1:10:00:: 06384269 2 0 -canto%1:10:01:: 07031636 1 0 -canton%1:15:00:: 08725454 1 0 -canton%1:15:01:: 08540770 2 0 -canton%2:41:00:: 02469596 2 0 -canton%2:42:00:: 02653159 1 0 -canton_crepe%1:06:00:: 02953552 1 0 -canton_flannel%1:06:00:: 03115400 1 0 -canton_ginger%1:20:00:: 12356023 1 0 -canton_river%1:17:00:: 09483340 1 0 -cantonal%3:01:00:: 03052963 1 0 -cantonese%1:10:00:: 06930427 1 0 -cantonese_dialect%1:10:00:: 06930427 1 0 -cantonment%1:06:00:: 02944826 1 0 -cantor%1:18:00:: 09891864 2 0 -cantor%1:18:01:: 09919771 1 0 -cantus_firmus%1:10:00:: 07035305 1 0 -canty%5:00:00:energetic:00 00874547 1 0 -canuck%1:18:00:: 09696944 1 0 -canulate%2:35:00:: 01422172 1 0 -canulation%1:04:00:: 00321195 1 0 -canulisation%1:04:00:: 00321195 1 0 -canulization%1:04:00:: 00321195 1 0 -canute%1:18:00:: 10881382 1 0 -canute_the_great%1:18:00:: 10881382 1 0 -canvas%1:06:00:: 02953673 1 7 -canvas%1:06:01:: 02953850 6 0 -canvas%1:06:02:: 02954163 4 1 -canvas%1:06:03:: 04127904 5 0 -canvas%1:06:04:: 02954068 2 3 -canvas%1:26:00:: 14513489 3 1 -canvas%2:31:02:: 00644583 4 0 -canvas%2:35:00:: 01268297 3 0 -canvas%2:41:00:: 02458747 1 0 -canvas%2:41:01:: 02454312 2 0 -canvas_tent%1:06:00:: 02954163 1 0 -canvasback%1:05:00:: 01850873 1 0 -canvasback_duck%1:05:00:: 01850873 1 0 -canvass%1:06:00:: 02953673 7 0 -canvass%1:06:01:: 02953850 6 0 -canvass%1:06:02:: 02954163 4 0 -canvass%1:06:03:: 04127904 3 0 -canvass%1:06:04:: 02954068 5 0 -canvass%1:09:00:: 05800998 2 0 -canvass%1:26:00:: 14513489 1 0 -canvass%2:31:02:: 00644583 3 0 -canvass%2:41:00:: 02458747 2 0 -canvass%2:41:01:: 02454312 1 2 -canvasser%1:18:00:: 10451590 3 0 -canvasser%1:18:01:: 10565502 2 0 -canvasser%1:18:02:: 10623354 1 0 -canvasser%1:18:03:: 09892066 4 0 -canvassing%1:10:00:: 07245885 1 0 -canyon%1:17:00:: 09233446 1 5 -canyon_live_oak%1:20:00:: 12270946 1 0 -canyon_oak%1:20:00:: 12270946 1 0 -canyon_treefrog%1:05:00:: 01651059 1 0 -canyonlands_national_park%1:15:00:: 08603308 1 0 -canyonside%1:17:00:: 09233603 1 1 -caoutchouc%1:27:00:: 15006258 1 0 -caoutchouc_tree%1:20:00:: 12926039 1 0 -cap%1:06:00:: 02954340 1 10 -cap%1:06:01:: 02956247 9 0 -cap%1:06:02:: 02954938 2 2 -cap%1:06:03:: 02955065 4 1 -cap%1:06:04:: 03139089 8 0 -cap%1:06:05:: 03182232 3 1 -cap%1:10:00:: 06657646 7 0 -cap%1:17:00:: 09305358 6 0 -cap%1:20:00:: 11532351 5 0 -cap%2:30:00:: 00236104 2 0 -cap%2:42:00:: 02693168 1 3 -cap-a-pie%4:02:00:: 00251706 1 0 -cap_off%2:30:00:: 00485435 1 0 -cap_opener%1:06:00:: 02956795 1 0 -cap_screw%1:06:00:: 02957135 1 0 -capability%1:07:00:: 05202497 1 8 -capability%1:09:00:: 05623181 3 0 -capability%1:26:00:: 14530836 2 0 -capable%3:00:00:: 00306314 1 20 -capable%3:00:02:: 00308015 3 2 -capable%5:00:00:adequate:00 00051373 4 2 -capable%5:00:00:competent:00 00510348 5 1 -capable%5:00:00:susceptible:00 02361540 2 5 -capableness%1:07:00:: 05202497 2 0 -capableness%1:09:00:: 05623181 1 0 -capably%4:02:00:: 00185172 1 0 -capacious%5:00:00:large:00 01384572 1 0 -capaciousness%1:07:00:: 05105265 2 0 -capaciousness%1:09:00:: 05618607 1 0 -capacitance%1:06:00:: 02955247 2 0 -capacitance%1:19:00:: 11433546 1 1 -capacitance_unit%1:23:00:: 13632744 1 0 -capacitate%2:30:00:: 00301179 3 0 -capacitate%2:30:02:: 00525932 2 0 -capacitate%2:32:02:: 00972457 1 0 -capacitive%3:01:00:: 02678001 1 0 -capacitor%1:06:00:: 02955247 1 2 -capacitor_microphone%1:06:00:: 03087816 1 0 -capacity%1:04:00:: 00914795 4 3 -capacity%1:04:01:: 00720951 5 1 -capacity%1:07:00:: 05203397 1 15 -capacity%1:07:01:: 05033569 9 0 -capacity%1:09:00:: 05622956 8 0 -capacity%1:19:00:: 11433546 7 0 -capacity%1:23:00:: 13779374 3 6 -capacity%1:23:01:: 13755053 6 0 -capacity%1:26:00:: 14530836 2 9 -capacity_measure%1:23:00:: 13600822 1 0 -capacity_unit%1:23:00:: 13600822 1 0 -caparison%1:06:00:: 02955540 1 0 -caparison%2:36:00:: 01670315 1 0 -caparisoned%5:00:00:clothed:00 00455190 1 0 -cape%1:06:00:: 02955767 2 1 -cape%1:17:00:: 09233715 1 2 -cape_aloe%1:20:00:: 12436907 1 0 -cape_ann%1:15:00:: 09098027 1 0 -cape_breton_island%1:15:00:: 08826699 1 0 -cape_buffalo%1:05:00:: 02409508 1 0 -cape_canaveral%1:17:00:: 09234104 1 0 -cape_cod%1:15:00:: 09098184 1 0 -cape_cod_bay%1:17:00:: 09234374 1 0 -cape_cod_canal%1:15:00:: 09098358 1 0 -cape_colony%1:15:00:: 09001580 1 0 -cape_dagga%1:20:00:: 12850906 1 0 -cape_fear%1:15:00:: 09127014 1 0 -cape_fear_river%1:17:00:: 09234491 1 0 -cape_flattery%1:15:00:: 09127161 1 0 -cape_forget-me-not%1:20:01:: 12817855 2 0 -cape_forget-me-not%1:20:02:: 12818004 1 0 -cape_froward%1:15:00:: 09127274 1 0 -cape_girardeau%1:15:00:: 09106393 1 0 -cape_gooseberry%1:20:00:: 12911079 1 0 -cape_hatteras%1:15:00:: 09127461 1 0 -cape_horn%1:15:00:: 08722645 1 0 -cape_hunting_dog%1:05:00:: 02116738 1 0 -cape_hyacinth%1:20:00:: 12458874 1 0 -cape_jasmine%1:20:00:: 12666965 1 0 -cape_jessamine%1:20:00:: 12666965 1 0 -cape_kafferboom%1:20:00:: 12528109 1 0 -cape_kennedy%1:17:00:: 09234104 1 0 -cape_lobster%1:05:00:: 01983829 1 0 -cape_marigold%1:20:00:: 11961446 1 0 -cape_may%1:15:00:: 09114262 1 0 -cape_may_warbler%1:05:00:: 01568720 1 0 -cape_of_good_hope%1:15:00:: 09002195 1 0 -cape_of_good_hope%1:15:01:: 09002096 2 0 -cape_of_good_hope_province%1:15:00:: 09001580 1 0 -cape_passero%1:04:00:: 01290162 2 0 -cape_passero%1:15:00:: 08811653 1 0 -cape_periwinkle%1:20:00:: 11772408 1 0 -cape_primrose%1:20:00:: 12834190 1 0 -cape_province%1:15:00:: 09001580 1 0 -cape_sable%1:17:00:: 09234756 2 0 -cape_sable%1:17:01:: 09234885 1 0 -cape_town%1:15:00:: 09000462 1 0 -cape_trafalgar%1:17:00:: 09235053 1 0 -cape_tulip%1:20:00:: 12420722 1 0 -cape_verde%1:15:00:: 08717915 1 0 -cape_verde_escudo%1:23:00:: 13675824 1 0 -cape_verde_islands%1:15:00:: 08717730 1 0 -cape_verde_monetary_unit%1:23:00:: 13675708 1 0 -cape_yellowwood%1:20:00:: 11652578 1 0 -cape_york%1:17:00:: 09235244 1 0 -cape_york_peninsula%1:17:00:: 09235469 1 0 -capek%1:18:00:: 10881616 1 0 -capelan%1:05:00:: 02541257 1 0 -capelin%1:05:00:: 02541257 1 0 -capeline_bandage%1:06:00:: 02955944 1 0 -capella%1:05:00:: 02031752 2 0 -capella%1:17:00:: 09234654 1 0 -caper%1:04:00:: 00511817 5 0 -caper%1:04:01:: 00782792 3 0 -caper%1:04:02:: 00427580 6 0 -caper%1:04:03:: 00512267 4 0 -caper%1:13:00:: 07822053 2 0 -caper%1:20:00:: 11865071 1 0 -caper%2:38:00:: 01967104 1 1 -caper_family%1:20:00:: 11864602 1 0 -caper_sauce%1:13:00:: 07840219 1 0 -caper_spurge%1:20:00:: 12918404 1 0 -caper_tree%1:20:01:: 11865429 2 0 -caper_tree%1:20:02:: 11865574 1 0 -capercaillie%1:05:00:: 01797020 1 0 -capercailzie%1:05:00:: 01797020 1 0 -capet%1:18:00:: 10891271 1 0 -capetian%1:18:00:: 09892156 1 0 -capetian%3:01:00:: 02678087 1 0 -capetian_dynasty%1:14:00:: 08154213 1 0 -capeweed%1:20:00:: 11984144 1 0 -capful%1:23:00:: 13766080 1 0 -capibara%1:05:00:: 02365480 1 0 -capillarity%1:19:00:: 11433806 1 0 -capillary%1:06:00:: 02956069 1 2 -capillary%1:08:00:: 05425910 2 0 -capillary%3:01:00:: 02926858 1 0 -capillary%5:00:00:thin:01 02412880 2 0 -capillary_action%1:19:00:: 11433806 1 1 -capillary_artery%1:08:00:: 05337301 1 0 -capillary_bed%1:08:00:: 05268510 1 4 -capillary_fracture%1:26:00:: 14293505 1 0 -capillary_tube%1:06:00:: 02956069 1 0 -capillary_tubing%1:06:00:: 02956069 1 1 -capillary_vein%1:08:00:: 05426087 1 0 -capillary_vessel%1:08:00:: 05425910 1 0 -capital%1:06:00:: 02956247 8 0 -capital%1:10:00:: 06824227 4 1 -capital%1:10:01:: 07282929 7 0 -capital%1:14:00:: 08357129 6 0 -capital%1:15:00:: 08518505 3 3 -capital%1:15:01:: 08518747 5 0 -capital%1:21:00:: 13353607 2 3 -capital%1:21:01:: 13354420 1 15 -capital%5:00:00:primary:00 01852548 2 0 -capital%5:00:00:superior:02 02342778 1 0 -capital%5:00:00:uppercase:00 01467919 3 0 -capital_account%1:21:01:: 13355504 2 0 -capital_account%1:21:02:: 13355656 1 0 -capital_cost%1:21:00:: 13305932 1 0 -capital_expenditure%1:21:00:: 13278275 1 0 -capital_gain%1:21:00:: 13311830 1 3 -capital_gains_tax%1:21:00:: 13312190 1 0 -capital_letter%1:10:00:: 06824227 1 0 -capital_levy%1:21:00:: 13312329 1 0 -capital_loss%1:21:00:: 13312010 1 1 -capital_of_afghanistan%1:15:00:: 08704237 1 0 -capital_of_alabama%1:15:00:: 09053801 1 0 -capital_of_alaska%1:15:00:: 09055786 1 0 -capital_of_antigua_and_barbuda%1:15:00:: 08710325 1 0 -capital_of_argentina%1:15:00:: 08712876 1 0 -capital_of_arizona%1:15:00:: 09058376 1 0 -capital_of_arkansas%1:15:00:: 09060280 1 0 -capital_of_armenia%1:15:00:: 09018030 1 0 -capital_of_australia%1:15:00:: 08832269 1 0 -capital_of_austria%1:15:00:: 08846324 1 0 -capital_of_azerbaijan%1:15:00:: 09018426 1 0 -capital_of_bahrain%1:15:00:: 08848568 1 0 -capital_of_bangladesh%1:15:00:: 08849226 1 0 -capital_of_barbados%1:15:00:: 08755664 1 0 -capital_of_belarus%1:15:00:: 09011518 1 0 -capital_of_belgium%1:15:00:: 08850450 1 0 -capital_of_benin%1:15:00:: 08759684 1 0 -capital_of_bolivia%1:15:00:: 08853308 1 0 -capital_of_botswana%1:15:00:: 08852685 1 0 -capital_of_brazil%1:15:00:: 08855308 1 0 -capital_of_burundi%1:15:00:: 08716517 1 0 -capital_of_california%1:15:00:: 09064966 1 0 -capital_of_cameroon%1:15:00:: 08717510 1 0 -capital_of_canada%1:15:00:: 08827486 1 0 -capital_of_cape_verde%1:15:00:: 08718094 1 0 -capital_of_central_africa%1:15:00:: 08718801 1 0 -capital_of_chad%1:15:00:: 08720280 1 0 -capital_of_chile%1:15:00:: 08721559 1 0 -capital_of_colombia%1:15:00:: 08732979 1 0 -capital_of_colorado%1:15:00:: 09068107 1 0 -capital_of_connecticut%1:15:00:: 09069190 1 0 -capital_of_costa_rica%1:15:00:: 08736376 1 0 -capital_of_cuba%1:15:00:: 08750612 1 0 -capital_of_cyprus%1:15:00:: 08757132 1 0 -capital_of_delaware%1:15:00:: 09070233 1 0 -capital_of_djibouti%1:15:00:: 08762823 1 0 -capital_of_ecuador%1:15:00:: 08777233 1 0 -capital_of_egypt%1:15:00:: 08898633 1 0 -capital_of_estonia%1:15:00:: 09012530 1 0 -capital_of_ethiopia%1:15:00:: 08778401 1 0 -capital_of_finland%1:15:00:: 08780018 1 0 -capital_of_florida%1:15:00:: 09075170 1 0 -capital_of_france%1:15:00:: 08932568 1 0 -capital_of_gabon%1:15:00:: 08945705 1 0 -capital_of_gambia%1:15:00:: 08946042 1 0 -capital_of_georgia%1:15:00:: 09019194 2 0 -capital_of_georgia%1:15:01:: 09076675 1 0 -capital_of_ghana%1:15:00:: 08946564 1 0 -capital_of_greece%1:15:00:: 08785343 1 0 -capital_of_grenada%1:15:00:: 08947180 1 0 -capital_of_guatemala%1:15:00:: 08737376 1 0 -capital_of_guinea%1:15:00:: 08947617 1 0 -capital_of_guinea-bissau%1:15:00:: 08948027 1 0 -capital_of_hawaii%1:15:00:: 09078784 1 0 -capital_of_hungary%1:15:00:: 08952423 1 0 -capital_of_iceland%1:15:00:: 08953596 1 0 -capital_of_idaho%1:15:00:: 09081560 1 0 -capital_of_illinois%1:15:00:: 09084483 1 0 -capital_of_india%1:15:00:: 08903049 1 0 -capital_of_indiana%1:15:00:: 09085593 1 0 -capital_of_indonesia%1:15:00:: 08909719 1 0 -capital_of_iowa%1:15:00:: 09086995 1 0 -capital_of_iran%1:15:00:: 08911421 1 0 -capital_of_iraq%1:15:00:: 08914193 1 0 -capital_of_ireland%1:15:00:: 08889191 1 0 -capital_of_israel%1:15:00:: 08794798 1 0 -capital_of_italy%1:15:00:: 08806897 1 0 -capital_of_jamaica%1:15:00:: 08754238 1 0 -capital_of_japan%1:15:00:: 08923348 1 0 -capital_of_jordan%1:15:00:: 08927548 1 0 -capital_of_kansas%1:15:00:: 09088815 1 0 -capital_of_kazakhstan%1:15:00:: 09020119 1 0 -capital_of_kentucky%1:15:00:: 09089631 1 0 -capital_of_kenya%1:15:00:: 08928582 1 0 -capital_of_kuwait%1:15:00:: 08929555 1 0 -capital_of_kyrgyzstan%1:15:00:: 09020792 1 0 -capital_of_laos%1:15:00:: 08957064 1 0 -capital_of_latvia%1:15:00:: 09013353 1 0 -capital_of_lebanon%1:15:00:: 08957806 1 0 -capital_of_lesotho%1:15:00:: 08959105 1 0 -capital_of_liberia%1:15:00:: 08959495 1 0 -capital_of_libya%1:15:00:: 08960099 1 0 -capital_of_liechtenstein%1:15:00:: 08960843 1 0 -capital_of_lithuania%1:15:00:: 09014273 1 0 -capital_of_louisiana%1:15:00:: 09091398 1 0 -capital_of_luxembourg%1:15:00:: 08961402 1 0 -capital_of_madagascar%1:15:00:: 08962465 1 0 -capital_of_maine%1:15:00:: 09092822 1 0 -capital_of_malawi%1:15:00:: 08963095 1 0 -capital_of_malaysia%1:15:00:: 08963969 1 0 -capital_of_malta%1:15:00:: 08966647 1 0 -capital_of_maryland%1:15:00:: 09094217 1 0 -capital_of_massachusetts%1:15:00:: 09095751 1 0 -capital_of_mexico%1:15:00:: 08744236 1 0 -capital_of_michigan%1:15:00:: 09101318 1 0 -capital_of_minnesota%1:15:00:: 09103377 1 0 -capital_of_mississippi%1:15:00:: 09105003 1 0 -capital_of_missouri%1:15:00:: 09106912 1 0 -capital_of_moldova%1:15:00:: 09014850 1 0 -capital_of_mongolia%1:15:00:: 08969123 1 0 -capital_of_montana%1:15:00:: 09109180 1 0 -capital_of_morocco%1:15:00:: 08970445 1 0 -capital_of_mozambique%1:15:00:: 08971554 1 0 -capital_of_nebraska%1:15:00:: 09109882 1 0 -capital_of_nepal%1:15:00:: 08906809 1 0 -capital_of_nevada%1:15:00:: 09110784 1 0 -capital_of_new_hampshire%1:15:00:: 09111754 1 0 -capital_of_new_jersey%1:15:00:: 09113022 1 0 -capital_of_new_mexico%1:15:00:: 09116318 1 0 -capital_of_new_york%1:15:00:: 09118313 1 0 -capital_of_new_zealand%1:15:00:: 08973202 1 0 -capital_of_nicaragua%1:15:00:: 08739047 1 0 -capital_of_niger%1:15:00:: 08973647 1 0 -capital_of_nigeria%1:15:00:: 08974171 1 0 -capital_of_north_carolina%1:15:00:: 09127844 1 0 -capital_of_north_dakota%1:15:00:: 09129719 1 0 -capital_of_north_korea%1:15:00:: 08955397 1 0 -capital_of_northern_ireland%1:15:00:: 08888479 1 0 -capital_of_norway%1:15:00:: 08765069 1 0 -capital_of_ohio%1:15:00:: 09131001 1 0 -capital_of_oklahoma%1:15:00:: 09132597 1 0 -capital_of_oman%1:15:00:: 08975435 1 0 -capital_of_oregon%1:15:00:: 09134202 1 0 -capital_of_pakistan%1:15:00:: 08977035 1 0 -capital_of_panama%1:15:00:: 08739512 1 0 -capital_of_papua_new_guinea%1:15:00:: 08845053 1 0 -capital_of_paraguay%1:15:00:: 08978667 1 0 -capital_of_pennsylvania%1:15:00:: 09135733 1 0 -capital_of_peru%1:15:00:: 08979878 1 0 -capital_of_poland%1:15:00:: 08983105 1 0 -capital_of_portugal%1:15:00:: 08986066 1 0 -capital_of_qatar%1:15:00:: 08987262 1 0 -capital_of_red_china%1:15:00:: 08724726 1 0 -capital_of_rhode_island%1:15:00:: 09137451 1 0 -capital_of_romania%1:15:00:: 08814474 1 0 -capital_of_rwanda%1:15:00:: 08815346 1 0 -capital_of_san_marino%1:15:00:: 08992508 1 0 -capital_of_saudi_arabia%1:15:00:: 08993871 1 0 -capital_of_senegal%1:15:00:: 08996118 1 0 -capital_of_serbia_and_montenegro%1:15:00:: 08817418 1 0 -capital_of_seychelles%1:15:00:: 08996714 1 0 -capital_of_sierra_leone%1:15:00:: 08997132 1 0 -capital_of_singapore%1:15:00:: 08997801 1 0 -capital_of_slovakia%1:15:00:: 08759263 1 0 -capital_of_somalia%1:15:00:: 08998853 1 0 -capital_of_south_africa%1:15:00:: 09000272 1 0 -capital_of_south_carolina%1:15:00:: 09138358 1 0 -capital_of_south_dakota%1:15:00:: 09139508 1 0 -capital_of_south_korea%1:15:00:: 08955951 1 0 -capital_of_spain%1:15:00:: 09024467 1 0 -capital_of_sri_lanka%1:15:00:: 08719465 1 0 -capital_of_sudan%1:15:00:: 09030210 1 0 -capital_of_suriname%1:15:00:: 09031061 1 0 -capital_of_swaziland%1:15:00:: 09031501 1 0 -capital_of_sweden%1:15:00:: 08766236 1 0 -capital_of_switzerland%1:15:00:: 09032321 1 0 -capital_of_syria%1:15:00:: 09033936 1 0 -capital_of_taiwan%1:15:00:: 08730895 1 0 -capital_of_tajikistan%1:15:00:: 09021313 1 0 -capital_of_tanzania%1:15:00:: 09034967 1 0 -capital_of_tennessee%1:15:00:: 09141297 1 0 -capital_of_texas%1:15:00:: 09143017 1 0 -capital_of_thailand%1:15:00:: 09036880 1 0 -capital_of_the_bahamas%1:15:00:: 08847570 1 0 -capital_of_the_dominican_republic%1:15:00:: 08752293 1 0 -capital_of_the_netherlands%1:15:00:: 08949737 1 0 -capital_of_the_philippines%1:15:00:: 08981746 1 0 -capital_of_the_russian_federation%1:15:00:: 09004068 1 0 -capital_of_the_ukraine%1:15:00:: 09015907 1 0 -capital_of_the_united_kingdom%1:15:00:: 08873622 1 0 -capital_of_the_united_states%1:15:00:: 09070793 1 0 -capital_of_tibet%1:15:00:: 08907377 1 0 -capital_of_togo%1:15:00:: 08760228 1 0 -capital_of_trinidad_and_tobago%1:15:00:: 08756511 1 0 -capital_of_tunisia%1:15:00:: 09037838 1 0 -capital_of_turkey%1:15:00:: 09040601 1 0 -capital_of_turkmenistan%1:15:00:: 09021812 1 0 -capital_of_uganda%1:15:00:: 09043926 1 0 -capital_of_uruguay%1:15:00:: 09160571 1 0 -capital_of_utah%1:15:00:: 09147737 1 0 -capital_of_uzbek%1:15:00:: 09022538 1 0 -capital_of_vanuatu%1:15:00:: 09160968 1 0 -capital_of_venezuela%1:15:00:: 09162276 1 0 -capital_of_vermont%1:15:00:: 09148259 1 0 -capital_of_vietnam%1:15:00:: 09164095 1 0 -capital_of_virginia%1:15:00:: 09150047 1 0 -capital_of_washington%1:15:00:: 09154000 1 0 -capital_of_west_virginia%1:15:00:: 09155798 1 0 -capital_of_western_samoa%1:15:00:: 08991752 1 0 -capital_of_wisconsin%1:15:00:: 09158024 1 0 -capital_of_wyoming%1:15:00:: 09159675 1 0 -capital_of_zambia%1:15:00:: 09165996 1 0 -capital_of_zimbabwe%1:15:00:: 09167505 1 0 -capital_offense%1:04:00:: 00768353 1 0 -capital_punishment%1:04:00:: 01163779 1 1 -capital_ship%1:06:00:: 02956393 1 0 -capital_stock%1:21:00:: 13342398 1 2 -capital_stock%1:21:01:: 13334650 2 0 -capitalisation%1:04:00:: 00951626 3 0 -capitalisation%1:04:02:: 00093006 4 0 -capitalisation%1:04:03:: 00952214 2 0 -capitalisation%1:10:00:: 06402425 1 0 -capitalise%2:30:00:: 00162167 6 0 -capitalise%2:31:00:: 00731000 5 0 -capitalise%2:31:01:: 00731159 4 0 -capitalise%2:36:00:: 01692266 3 0 -capitalise%2:40:00:: 02279772 2 0 -capitalise%2:40:02:: 02330742 1 0 -capitalism%1:14:00:: 08364143 1 9 -capitalist%1:18:00:: 09609232 2 0 -capitalist%1:18:01:: 09892262 1 1 -capitalist%3:00:04:: 00297403 2 0 -capitalist%3:01:00:: 03000110 1 3 -capitalist_economy%1:14:00:: 08364143 1 0 -capitalistic%3:00:00:: 00297403 1 1 -capitalistic%3:01:00:: 03000110 2 0 -capitalization%1:04:00:: 00951626 3 0 -capitalization%1:04:02:: 00093006 4 0 -capitalization%1:04:03:: 00952214 2 0 -capitalization%1:10:00:: 06402425 1 0 -capitalize%2:30:00:: 00162167 6 0 -capitalize%2:31:00:: 00731000 5 0 -capitalize%2:31:01:: 00731159 4 0 -capitalize%2:36:00:: 01692266 3 0 -capitalize%2:40:00:: 02279772 1 3 -capitalize%2:40:02:: 02330742 2 0 -capitate%1:08:00:: 05273223 1 0 -capitate%5:00:00:round:00 02041940 1 0 -capitate_bone%1:08:00:: 05273223 1 0 -capitation%1:21:00:: 13314226 1 0 -capitol%1:06:00:: 02956500 2 0 -capitol%1:06:01:: 02956699 1 0 -capitol_building%1:06:00:: 02956500 1 0 -capitol_hill%1:15:00:: 09071349 1 0 -capitol_reef_national_park%1:15:00:: 08603525 1 0 -capitonidae%1:05:00:: 01842111 1 0 -capitular%3:01:00:: 02678218 1 0 -capitulary%3:01:00:: 02678218 1 0 -capitulate%2:33:00:: 01117812 1 1 -capitulation%1:04:00:: 00067707 3 0 -capitulation%1:10:00:: 06467868 2 0 -capitulation%1:10:01:: 06471242 1 0 -capitulum%1:20:01:: 13133786 1 0 -capitulum%1:20:02:: 13133613 2 0 -capitulum%1:20:03:: 13128156 3 0 -capiz%1:05:00:: 01962788 1 0 -caplin%1:05:00:: 02541257 1 0 -capo%1:18:00:: 09892410 1 0 -capon%1:05:00:: 01792530 2 0 -capon%1:13:00:: 07645384 1 0 -capone%1:18:00:: 10881784 1 0 -caponise%2:29:00:: 00061079 1 0 -caponize%2:29:00:: 00061079 1 0 -caporetto%1:04:00:: 01274171 1 0 -capote%1:06:00:: 02956883 2 0 -capote%1:06:01:: 02957008 1 0 -capoten%1:06:00:: 02958002 1 0 -cappadocia%1:15:00:: 08701161 1 0 -cappadocian%3:01:00:: 02678371 1 0 -capparidaceae%1:20:00:: 11864602 1 0 -capparis%1:20:00:: 11864906 1 0 -capparis_arborea%1:20:00:: 11865276 1 0 -capparis_cynophallophora%1:20:00:: 11865429 1 0 -capparis_flexuosa%1:20:00:: 11865574 1 0 -capparis_mitchellii%1:20:00:: 11865738 1 0 -capparis_spinosa%1:20:00:: 11865874 1 0 -capped%5:00:00:crowned:00 00654125 2 0 -capped%5:00:00:crowned:02 00655292 1 0 -capped_macaque%1:05:00:: 02487675 1 0 -cappelletti%1:13:00:: 07701244 1 0 -cappuccino%1:13:00:: 07920349 1 0 -cappuccino_coffee%1:13:00:: 07920349 1 0 -capra%1:05:00:: 02416410 2 0 -capra%1:18:00:: 10881986 1 0 -capra_aegagrus%1:05:00:: 02417663 1 0 -capra_falconeri%1:05:00:: 02417785 1 0 -capra_hircus%1:05:00:: 02417070 1 0 -capra_ibex%1:05:00:: 02417914 1 0 -caprella%1:05:00:: 01993400 1 0 -capreolus%1:05:00:: 02433426 1 0 -capreolus_capreolus%1:05:00:: 02433546 1 0 -capri%1:15:00:: 08805953 1 0 -capric_acid%1:27:00:: 14791830 1 0 -capriccio%1:10:00:: 07280424 1 0 -caprice%1:12:00:: 07490579 1 0 -capricious%5:00:00:arbitrary:00 00719442 2 0 -capricious%5:00:00:unpredictable:00 01842304 1 0 -capriciously%4:02:00:: 00281491 2 0 -capriciously%4:02:01:: 00281687 1 0 -capriciousness%1:07:00:: 04671841 2 0 -capriciousness%1:07:02:: 04735075 1 0 -capricorn%1:15:00:: 08687709 3 0 -capricorn%1:17:00:: 09235713 2 0 -capricorn%1:18:00:: 09753498 1 0 -capricorn_the_goat%1:15:00:: 08687709 1 0 -capricornis%1:05:00:: 02418934 1 0 -capricornus%1:17:00:: 09235713 1 0 -caprifig%1:20:00:: 12401893 1 0 -caprifoliaceae%1:20:00:: 12671157 1 0 -caprimulgid%1:05:00:: 01835276 1 0 -caprimulgidae%1:05:00:: 01835087 1 0 -caprimulgiform_bird%1:05:00:: 01834918 1 0 -caprimulgiformes%1:05:00:: 01834702 1 0 -caprimulgus%1:05:00:: 01835584 1 0 -caprimulgus_carolinensis%1:05:00:: 01835918 1 0 -caprimulgus_europaeus%1:05:00:: 01835769 1 0 -caprimulgus_vociferus%1:05:00:: 01836087 1 0 -caprine%3:01:00:: 02678502 1 0 -caprine_animal%1:05:00:: 02416519 1 0 -capriole%1:04:00:: 00512351 1 0 -capriole%1:04:01:: 00512267 2 0 -capriole%2:38:00:: 01895168 2 0 -capriole%2:38:01:: 01964891 1 0 -caproic_acid%1:27:00:: 14791988 1 0 -caproidae%1:05:00:: 01453188 1 0 -capromyidae%1:05:00:: 02366702 1 0 -capros%1:05:00:: 01453330 1 0 -capros_aper%1:05:00:: 01453475 1 0 -caprylic_acid%1:27:00:: 14792146 1 0 -capsaicin%1:27:00:: 15032829 1 0 -capsella%1:20:00:: 11881063 1 0 -capsella_bursa-pastoris%1:20:00:: 11881189 1 0 -capsicum%1:20:00:: 12900462 1 0 -capsicum%1:20:01:: 12900148 2 0 -capsicum_annuum_cerasiforme%1:20:00:: 12901565 1 0 -capsicum_annuum_conoides%1:20:00:: 12900783 1 0 -capsicum_annuum_grossum%1:20:00:: 12901264 1 0 -capsicum_annuum_longum%1:20:00:: 12900987 1 0 -capsicum_baccatum%1:20:00:: 12901724 1 0 -capsicum_frutescens%1:20:00:: 12902021 1 0 -capsicum_frutescens_baccatum%1:20:00:: 12901724 1 0 -capsicum_pepper_plant%1:20:00:: 12900462 1 0 -capsid%1:05:00:: 01329794 2 0 -capsid%1:05:01:: 02237581 1 0 -capsidae%1:05:00:: 02237239 1 0 -capsize%2:38:00:: 01893313 1 0 -capsizing%1:11:00:: 07353232 1 0 -capstan%1:06:00:: 02957252 1 1 -capstone%1:06:00:: 02957427 2 0 -capstone%1:09:00:: 05642678 1 0 -capsula_glomeruli%1:08:00:: 05247621 1 0 -capsular%3:01:00:: 02678677 2 0 -capsular%3:01:02:: 02678850 1 0 -capsulate%2:35:00:: 01581070 1 0 -capsulate%5:00:00:enclosed:00 01657420 1 0 -capsulated%5:00:00:enclosed:00 01657420 1 0 -capsule%1:06:00:: 02957586 2 2 -capsule%1:06:01:: 04264765 6 0 -capsule%1:06:02:: 02957755 1 2 -capsule%1:06:03:: 03267468 7 0 -capsule%1:08:00:: 05317191 5 0 -capsule%1:10:00:: 06468123 4 0 -capsule%1:20:00:: 11685179 3 0 -capsule%2:30:00:: 00244416 2 0 -capsule%2:35:00:: 01581070 1 0 -capsulise%2:30:00:: 00244416 2 0 -capsulise%2:35:00:: 01581070 1 0 -capsulize%2:30:00:: 00244416 2 0 -capsulize%2:35:00:: 01581070 1 0 -captain%1:18:00:: 09892513 7 0 -captain%1:18:01:: 09892693 6 0 -captain%1:18:02:: 09892831 2 14 -captain%1:18:03:: 10298912 4 6 -captain%1:18:04:: 09893015 3 7 -captain%1:18:05:: 09893191 1 16 -captain%1:18:06:: 09893344 5 2 -captain%2:41:00:: 02440486 1 0 -captain's_chair%1:06:00:: 02957862 1 0 -captain_bligh%1:18:00:: 10852961 1 0 -captain_bob%1:18:00:: 10837023 1 0 -captain_cook%1:18:00:: 10908313 1 0 -captain_hicks%1:23:00:: 13744722 1 0 -captain_horatio_hornblower%1:18:00:: 09600439 1 0 -captain_james_cook%1:18:00:: 10908313 1 0 -captain_john_smith%1:18:00:: 11305402 1 0 -captain_kidd%1:18:00:: 11104458 1 0 -captaincy%1:04:00:: 00589769 1 0 -captainship%1:04:00:: 00589769 1 0 -caption%1:10:00:: 06346891 3 0 -caption%1:10:01:: 06347588 2 0 -caption%1:10:02:: 07209691 1 0 -caption%2:40:00:: 02323870 1 0 -captious%5:00:00:critical:01 00647867 1 0 -captiously%4:02:00:: 00281834 1 0 -captivate%2:37:00:: 01806505 1 2 -captivated%5:00:00:enchanted:00 00865620 2 0 -captivated%5:00:00:loving:00 01465583 1 0 -captivating%5:00:00:attractive:01 00166753 1 1 -captivatingly%4:02:00:: 00278834 1 0 -captivation%1:12:00:: 07497976 2 0 -captivation%1:26:00:: 14407899 1 0 -captive%1:18:00:: 10476086 1 1 -captive%1:18:01:: 09893502 2 1 -captive%1:18:02:: 09893600 3 0 -captive%5:00:00:attentive:00 00163948 2 0 -captive%5:00:00:unfree:00 01065126 1 1 -captive_finance_company%1:14:00:: 08421441 1 0 -captivity%1:26:01:: 13997050 2 1 -captivity%1:26:02:: 13999206 1 2 -captopril%1:06:00:: 02958002 1 0 -captor%1:18:00:: 09609561 1 1 -capture%1:04:00:: 00088481 1 2 -capture%1:04:01:: 00775286 4 0 -capture%1:04:02:: 00166702 5 0 -capture%1:22:00:: 13442715 3 0 -capture%1:22:01:: 13442867 2 1 -capture%2:35:00:: 01480149 6 1 -capture%2:35:01:: 01215421 3 4 -capture%2:36:00:: 01686626 1 5 -capture%2:37:00:: 01806505 2 4 -capture%2:40:00:: 02272549 5 1 -capture%2:40:01:: 02304241 4 1 -capturer%1:18:00:: 09609561 1 0 -capuchin%1:05:00:: 02492035 2 0 -capuchin%1:06:00:: 02958264 1 0 -capulin%1:13:00:: 07757874 2 0 -capulin%1:20:00:: 12642964 1 0 -capulin_tree%1:20:00:: 12642964 1 0 -caput%1:08:00:: 05538625 2 0 -caput%1:25:00:: 13895362 1 0 -capybara%1:05:00:: 02365480 1 0 -car%1:06:00:: 02958343 1 71 -car%1:06:01:: 02959942 2 2 -car%1:06:02:: 02960352 4 0 -car%1:06:03:: 02960501 3 0 -car%1:06:04:: 02934451 5 0 -car-ferry%1:06:00:: 02964295 1 0 -car-mechanic%1:18:00:: 09825750 1 0 -car_battery%1:06:00:: 02961225 1 0 -car_bomb%1:06:00:: 02961544 1 0 -car_boot_sale%1:04:00:: 01118614 1 0 -car_care%1:04:00:: 00267917 1 0 -car_carrier%1:06:00:: 02962414 1 0 -car_company%1:14:00:: 08002269 1 0 -car_dealer%1:14:00:: 08063650 1 0 -car_door%1:06:00:: 02963821 1 1 -car_factory%1:06:00:: 02761696 1 0 -car_horn%1:06:00:: 02761834 1 0 -car_insurance%1:21:00:: 13345403 1 0 -car_loan%1:21:00:: 13400024 1 0 -car_maker%1:14:00:: 08066763 1 0 -car_manufacturer%1:14:00:: 08066763 1 0 -car_mirror%1:06:00:: 02965783 1 0 -car_park%1:15:00:: 08615638 1 0 -car_part%1:06:00:: 02762044 1 0 -car_pool%1:14:00:: 08240484 1 0 -car_port%1:06:00:: 02968074 1 0 -car_race%1:11:00:: 07458892 1 0 -car_racing%1:04:00:: 00449517 1 0 -car_rental%1:21:00:: 13248598 1 0 -car_seat%1:06:00:: 02970685 1 0 -car_sickness%1:26:00:: 14203813 1 0 -car_tire%1:06:00:: 02971167 1 0 -car_traffic%1:14:00:: 08426111 1 0 -car_train%1:06:00:: 02971579 1 0 -car_transporter%1:06:00:: 04474035 1 0 -car_wheel%1:06:00:: 02974003 1 0 -car_window%1:06:00:: 02974219 1 0 -carabao%1:05:00:: 02408817 1 1 -carabid_beetle%1:05:00:: 02167151 1 0 -carabidae%1:05:00:: 02166986 1 0 -carabineer%1:18:00:: 09893746 1 0 -carabiner%1:06:00:: 02960690 1 0 -carabinier%1:18:00:: 09893746 1 0 -caracal%1:05:00:: 02127678 1 0 -caracara%1:05:00:: 01612628 1 0 -caracas%1:15:00:: 09162276 1 0 -carack%1:06:00:: 02968210 1 0 -caracole%2:38:00:: 01909161 1 0 -caracolito%1:20:00:: 12702124 1 0 -caracul%1:05:00:: 02414043 1 0 -carafate%1:06:00:: 04349701 1 0 -carafe%1:06:00:: 02960903 1 0 -caragana%1:20:00:: 12511856 1 0 -caragana_arborescens%1:20:00:: 12512095 1 0 -caragana_sinica%1:20:00:: 12512294 1 0 -carageen%1:05:00:: 01414633 1 0 -carambola%1:13:00:: 07746551 2 0 -carambola%1:20:00:: 12704343 1 0 -carambola_tree%1:20:00:: 12704343 1 0 -caramel%1:07:00:: 04973957 3 0 -caramel%1:13:00:: 07601809 1 0 -caramel%1:13:01:: 07595180 2 0 -caramel%5:00:00:chromatic:00 00372799 1 0 -caramel_apple%1:13:00:: 07600696 1 0 -caramel_brown%1:07:00:: 04973957 1 0 -caramel_brown%5:00:00:chromatic:00 00372799 1 0 -caramel_bun%1:13:00:: 07693223 1 0 -caramelise%2:30:00:: 00114291 2 0 -caramelise%2:30:01:: 00114615 1 0 -caramelize%2:30:00:: 00114291 2 0 -caramelize%2:30:01:: 00114615 1 0 -caramelized_sugar%1:13:00:: 07595180 1 0 -carancha%1:05:00:: 01613177 1 0 -caranda%1:20:00:: 12588780 1 0 -caranda_palm%1:20:00:: 12588780 1 0 -caranday%1:20:00:: 12588780 1 0 -carangid%1:05:00:: 02576223 1 0 -carangid%3:01:00:: 02679063 1 0 -carangid_fish%1:05:00:: 02576223 1 0 -carangidae%1:05:00:: 02575766 1 0 -caranx%1:05:00:: 02576460 1 0 -caranx_bartholomaei%1:05:00:: 02577041 1 0 -caranx_crysos%1:05:00:: 02577164 1 0 -caranx_hippos%1:05:00:: 02576906 1 0 -carapace%1:05:00:: 01903756 1 0 -carapidae%1:05:00:: 02559232 1 0 -carassius%1:05:00:: 01443398 1 0 -carassius_auratus%1:05:00:: 01443537 1 0 -carassius_carassius%1:05:00:: 01443831 1 0 -carassius_vulgaris%1:05:00:: 01443831 1 0 -carat%1:23:00:: 13723577 1 0 -carat%1:23:02:: 13585127 2 0 -caravaggio%1:18:00:: 10882089 1 0 -caravan%1:06:00:: 04520382 2 0 -caravan%1:14:00:: 08427629 1 1 -caravan%2:38:00:: 01949333 1 0 -caravan_inn%1:06:00:: 02961035 1 0 -caravanning%1:04:00:: 01066061 1 0 -caravansary%1:06:00:: 02961035 1 0 -caravanserai%1:06:00:: 02961035 1 0 -caraway%1:13:00:: 07816726 2 0 -caraway%1:20:00:: 12934479 1 0 -caraway_seed%1:13:00:: 07827554 1 0 -caraway_seed_bread%1:13:00:: 07681355 1 0 -carbamate%1:27:00:: 14792281 1 0 -carbamic_acid%1:27:00:: 14792389 1 0 -carbamide%1:27:00:: 15085472 1 0 -carbide%1:27:00:: 14792550 1 0 -carbine%1:06:00:: 02961451 1 2 -carbineer%1:18:00:: 09893746 1 0 -carbo_loading%1:13:00:: 07562651 1 0 -carbocyclic%3:01:00:: 02679202 1 0 -carbohydrate%1:27:00:: 14792703 1 0 -carbohydrate_loading%1:13:00:: 07562651 1 0 -carbolated%3:01:00:: 02679352 1 0 -carbolic_acid%1:27:00:: 14796073 1 0 -carboloy%1:27:00:: 14793223 1 0 -carbomycin%1:06:00:: 02961714 1 0 -carbon%1:06:00:: 02961851 3 0 -carbon%1:27:00:: 14633206 1 6 -carbon%1:27:01:: 14797813 2 0 -carbon-14_dating%1:04:00:: 00992732 1 0 -carbon_14%1:27:00:: 14633856 1 0 -carbon_arc%1:06:00:: 02961947 1 0 -carbon_arc_lamp%1:06:00:: 02961947 1 0 -carbon_atom%1:27:00:: 14633781 1 0 -carbon_black%1:27:00:: 14793533 1 0 -carbon_copy%1:06:00:: 02961851 1 0 -carbon_cycle%1:22:00:: 13443120 2 0 -carbon_cycle%1:22:01:: 13443228 1 0 -carbon_dating%1:04:00:: 00992732 1 0 -carbon_dichloride%1:06:00:: 04416338 1 0 -carbon_dioxide%1:27:00:: 14796969 1 1 -carbon_dioxide_acidosis%1:26:00:: 14020271 1 0 -carbon_disulfide%1:27:00:: 14797436 1 0 -carbon_monoxide%1:27:00:: 14797641 1 0 -carbon_monoxide_gas%1:27:00:: 14797641 1 0 -carbon_monoxide_poisoning%1:26:00:: 14510401 1 0 -carbon_nanotube%1:27:00:: 14622491 1 0 -carbon_paper%1:27:00:: 14797813 1 0 -carbon_process%1:10:00:: 06681035 1 0 -carbon_steel%1:27:00:: 14803074 1 0 -carbon_tet%1:27:00:: 14798039 1 0 -carbon_tetrachloride%1:27:00:: 14798039 1 19 -carbon_tetrahalide%1:27:00:: 14798331 1 1 -carbonaceous%3:01:00:: 02863724 1 0 -carbonado%1:13:00:: 07664468 2 0 -carbonado%1:27:00:: 14793393 1 0 -carbonara%1:13:00:: 07831146 1 0 -carbonate%1:27:00:: 14798450 1 1 -carbonate%2:30:00:: 00186740 2 0 -carbonate%2:42:00:: 02627221 1 0 -carbonated%5:00:00:effervescent:00 02276852 1 0 -carbonated_water%1:13:00:: 07936548 1 0 -carbonation%1:22:00:: 13442998 1 0 -carbondale%1:15:00:: 09083151 1 0 -carbonic%3:01:00:: 02863724 1 0 -carbonic_acid%1:27:00:: 14799084 1 0 -carbonic_acid_gas%1:27:00:: 14796969 1 0 -carboniferous%1:28:00:: 15127307 1 0 -carboniferous%3:01:00:: 02863724 2 0 -carboniferous%3:01:02:: 03053044 1 0 -carboniferous_period%1:28:00:: 15127307 1 0 -carbonisation%1:22:00:: 13443370 1 0 -carbonise%2:30:00:: 00369628 2 0 -carbonise%2:30:01:: 00373520 1 0 -carbonization%1:22:00:: 13443370 1 0 -carbonize%2:30:00:: 00369628 2 0 -carbonize%2:30:01:: 00373520 1 0 -carbonnade_flamande%1:13:00:: 07863644 1 0 -carbonous%3:01:00:: 02863724 1 0 -carbonyl%1:27:00:: 14790526 1 0 -carbonyl%3:01:00:: 02679468 1 0 -carbonyl_group%1:27:00:: 14790693 1 0 -carbonylic%3:01:00:: 02679468 1 0 -carborundum%1:27:00:: 14799476 1 0 -carboxyl%1:27:00:: 14790796 1 0 -carboxyl%3:01:00:: 02679653 1 0 -carboxyl_group%1:27:00:: 14790796 1 0 -carboxylate%2:30:00:: 00526081 1 0 -carboxylic%3:01:00:: 02679653 1 0 -carboxylic_acid%1:27:00:: 14739360 1 0 -carboxymethyl_cellulose%1:27:00:: 14794203 1 1 -carboy%1:06:00:: 02962061 1 0 -carbuncle%1:26:00:: 14183774 2 0 -carbuncle%1:27:00:: 14877486 1 0 -carbuncled%5:00:00:adorned:00 00057490 2 0 -carbuncled%5:00:00:unhealthy:00 01175298 1 0 -carbuncular%5:00:00:unhealthy:00 01175298 1 0 -carburet%2:35:00:: 01599435 1 0 -carburetor%1:06:00:: 02962200 1 0 -carburettor%1:06:00:: 02962200 1 0 -carburise%2:30:00:: 00373520 1 0 -carburize%2:30:00:: 00373520 1 0 -carcajou%1:05:00:: 02449183 1 0 -carcase%1:05:00:: 01758757 1 0 -carcass%1:05:00:: 01758757 1 2 -carcharhinidae%1:05:00:: 01488539 1 0 -carcharhinus%1:05:00:: 01489275 1 0 -carcharhinus_leucas%1:05:00:: 01489501 1 0 -carcharhinus_limbatus%1:05:00:: 01489920 1 0 -carcharhinus_obscurus%1:05:00:: 01490360 1 0 -carcharhinus_plumbeus%1:05:00:: 01489709 1 0 -carcharias%1:05:00:: 01487312 1 0 -carcharias_taurus%1:05:00:: 01487506 1 0 -carchariidae%1:05:00:: 01487077 1 0 -carcharinus_longimanus%1:05:00:: 01490112 1 0 -carcharodon%1:05:00:: 01484717 1 0 -carcharodon_carcharias%1:05:00:: 01484850 1 0 -carcinogen%1:27:00:: 14793812 1 0 -carcinogenic%3:01:00:: 02679858 1 0 -carcinoid%1:26:00:: 14237148 1 0 -carcinoma%1:26:00:: 14242337 1 0 -carcinoma_in_situ%1:26:00:: 14247035 1 0 -carcinomatous%3:01:00:: 02680017 1 0 -carcinomatous_myopathy%1:26:00:: 14079156 1 0 -carcinosarcoma%1:26:00:: 14237351 1 0 -card%1:06:00:: 02962545 1 5 -card%1:06:01:: 03033986 11 0 -card%1:10:00:: 06627006 3 1 -card%1:10:01:: 06477371 2 2 -card%1:10:02:: 06793426 6 0 -card%1:10:03:: 06486161 10 0 -card%1:10:04:: 06633205 7 0 -card%1:10:05:: 06492939 9 0 -card%1:10:06:: 06507941 8 0 -card%1:18:00:: 10762342 5 0 -card%1:27:00:: 14800034 4 0 -card%2:31:00:: 00663894 2 0 -card%2:35:00:: 01356256 1 0 -card-house%1:06:00:: 03545756 1 0 -card-playing%5:00:00:indulgent:00 01297946 1 1 -card_catalog%1:06:00:: 02963302 2 0 -card_catalog%1:10:00:: 06488473 1 0 -card_catalogue%1:06:00:: 02963302 2 0 -card_catalogue%1:10:00:: 06488473 1 0 -card_game%1:04:00:: 00488225 1 0 -card_index%1:06:00:: 02963302 1 0 -card_player%1:18:00:: 09894654 1 0 -card_shark%1:18:00:: 09894909 1 0 -card_sharp%1:18:00:: 09894909 1 0 -card_sharper%1:18:00:: 09894909 1 0 -card_table%1:06:00:: 02964075 2 0 -card_table%1:06:01:: 02964196 1 1 -card_trick%1:04:00:: 00552219 1 0 -cardamine%1:20:00:: 11881426 1 0 -cardamine_bulbifera%1:20:00:: 11882237 1 0 -cardamine_bulbosa%1:20:00:: 11882821 1 0 -cardamine_diphylla%1:20:00:: 11882426 1 0 -cardamine_douglasii%1:20:00:: 11882972 1 0 -cardamine_pratensis%1:20:00:: 11882074 1 0 -cardamine_rotundifolia%1:20:00:: 11882636 1 0 -cardamom%1:13:00:: 07822323 2 0 -cardamom%1:20:00:: 12358293 1 0 -cardamon%1:13:00:: 07822323 2 0 -cardamon%1:20:00:: 12358293 1 0 -cardamum%1:13:00:: 07822323 1 0 -cardboard%1:27:00:: 14799601 1 1 -cardboard%5:00:00:artificial:00 01572325 1 0 -cardcase%1:06:00:: 02962843 1 0 -cardcastle%1:06:00:: 03545756 1 0 -cardholder%1:18:00:: 09893916 2 0 -cardholder%1:18:01:: 09894040 1 0 -cardhouse%1:06:00:: 03545756 1 0 -cardia%1:08:00:: 05396229 1 0 -cardiac%3:01:00:: 02843717 1 0 -cardiac_arrest%1:26:00:: 14024581 1 0 -cardiac_arrhythmia%1:26:00:: 14110674 1 0 -cardiac_cycle%1:11:00:: 07341304 1 0 -cardiac_glucoside%1:27:00:: 15059939 1 0 -cardiac_glycoside%1:27:00:: 15059939 1 0 -cardiac_insufficiency%1:26:00:: 14113636 1 0 -cardiac_massage%1:04:00:: 00659349 1 0 -cardiac_monitor%1:06:00:: 02962938 1 0 -cardiac_murmur%1:26:00:: 14334814 1 0 -cardiac_muscle%1:08:00:: 05389939 1 0 -cardiac_output%1:28:00:: 15277926 1 0 -cardiac_pacemaker%1:08:00:: 05389460 1 0 -cardiac_plexus%1:08:00:: 05506229 1 0 -cardiac_resuscitation%1:04:00:: 00832626 1 0 -cardiac_rhythm%1:07:00:: 04768186 1 0 -cardiac_sphincter%1:08:00:: 05571132 1 0 -cardiac_tamponade%1:26:00:: 14508578 1 0 -cardiac_valve%1:08:00:: 05395098 1 0 -cardiff%1:15:00:: 08895386 1 0 -cardigan%1:05:00:: 02113186 2 0 -cardigan%1:06:00:: 02963159 1 0 -cardigan_welsh_corgi%1:05:00:: 02113186 1 0 -cardiidae%1:05:00:: 01959668 1 0 -cardinal%1:05:00:: 01541386 4 0 -cardinal%1:07:00:: 04963449 3 0 -cardinal%1:18:00:: 09894143 1 2 -cardinal%1:23:00:: 13597585 2 0 -cardinal%3:00:00:: 02183611 2 0 -cardinal%5:00:00:important:00 01277097 1 3 -cardinal_bellarmine%1:18:00:: 10842730 1 0 -cardinal_compass_point%1:24:00:: 13831000 1 0 -cardinal_flower%1:20:00:: 12168750 1 0 -cardinal_grosbeak%1:05:00:: 01541386 1 0 -cardinal_newman%1:18:00:: 11204962 1 0 -cardinal_number%1:23:00:: 13597585 1 0 -cardinal_richelieu%1:18:00:: 11261483 1 0 -cardinal_tetra%1:05:00:: 02584145 1 0 -cardinal_vein%1:08:00:: 05359828 1 0 -cardinal_virtue%1:07:00:: 04847600 1 0 -cardinalate%1:14:00:: 08153022 1 0 -cardinalfish%1:05:00:: 02572196 1 0 -cardinalis_cardinalis%1:05:00:: 01541386 1 0 -cardinality%1:23:00:: 13591586 1 0 -cardinalship%1:04:00:: 00589948 1 0 -cardiogenic_shock%1:26:00:: 14067481 1 0 -cardiogram%1:10:00:: 07004057 1 0 -cardiograph%1:06:00:: 02963503 1 0 -cardiograph%1:06:01:: 02781764 2 0 -cardiographic%3:01:00:: 02680151 1 0 -cardiography%1:04:00:: 00832092 1 0 -cardioid%1:25:00:: 13909632 1 0 -cardioid_microphone%1:06:00:: 02963692 1 0 -cardiologic%3:01:00:: 02914902 1 0 -cardiologist%1:18:00:: 09894445 1 0 -cardiology%1:09:00:: 06047275 1 0 -cardiomegaly%1:26:00:: 14334631 1 1 -cardiomyopathy%1:26:00:: 14110966 1 0 -cardiopathy%1:26:00:: 14103288 1 0 -cardiopulmonary%3:01:00:: 02680242 1 0 -cardiopulmonary_arrest%1:26:00:: 14024581 1 0 -cardiopulmonary_exercise%1:04:00:: 00435563 1 0 -cardiopulmonary_resuscitation%1:04:00:: 00832626 1 0 -cardiorespiratory%3:01:00:: 02680242 1 0 -cardiospasm%1:04:00:: 00226711 1 0 -cardiospermum%1:20:00:: 12742546 1 0 -cardiospermum_grandiflorum%1:20:00:: 12742878 1 0 -cardiospermum_halicacabum%1:20:00:: 12743009 1 0 -cardiovascular%3:01:00:: 02874130 1 1 -cardiovascular_disease%1:26:00:: 14057371 1 0 -cardiovascular_system%1:08:00:: 05511618 1 0 -carditis%1:26:00:: 14338942 1 0 -cardium%1:05:00:: 01959834 1 0 -cardium_edule%1:05:00:: 01960177 1 0 -cardizem%1:06:00:: 03198637 1 0 -cardoon%1:13:00:: 07730033 2 0 -cardoon%1:20:00:: 11959862 1 0 -cardroom%1:06:00:: 02963987 1 1 -cards%1:04:00:: 00488225 1 1 -cardsharp%1:18:00:: 09894909 1 0 -cardsharper%1:18:00:: 09894909 1 0 -carducci%1:18:00:: 10882293 1 0 -carduelinae%1:05:00:: 01530691 1 0 -carduelis%1:05:00:: 01530846 1 0 -carduelis_cannabina%1:05:00:: 01531344 1 0 -carduelis_carduelis%1:05:00:: 01531178 1 0 -carduelis_cucullata%1:05:00:: 01531639 1 0 -carduelis_flammea%1:05:00:: 01531811 1 0 -carduelis_hornemanni%1:05:00:: 01531971 1 0 -carduelis_spinus%1:05:00:: 01531512 1 0 -cardura%1:06:00:: 03229656 1 0 -carduus%1:20:00:: 11944569 1 0 -carduus_crispus%1:20:00:: 11944751 1 0 -carduus_nutans%1:20:00:: 11944954 1 0 -care%1:04:00:: 00267522 6 1 -care%1:04:01:: 00654885 1 9 -care%1:04:02:: 00829378 5 1 -care%1:09:00:: 05615869 2 4 -care%1:12:00:: 07505047 4 1 -care%1:12:01:: 07524529 3 1 -care%2:37:00:: 01824736 3 7 -care%2:37:02:: 01822936 1 64 -care%2:37:12:: 01766748 5 1 -care%2:41:11:: 02436349 4 4 -care%2:41:13:: 02550296 2 9 -care-laden%5:00:00:troubled:00 02456875 1 0 -care_a_hang%2:37:00:: 01823149 1 1 -care_delivery%1:04:00:: 01060101 1 0 -care_for%2:29:00:: 00078760 3 0 -care_for%2:37:01:: 01828623 1 4 -care_for%2:37:08:: 01776214 2 0 -cared-for%3:00:00:: 00308355 1 0 -careen%1:04:00:: 00348008 1 0 -careen%2:38:00:: 01884974 2 0 -careen%2:38:01:: 01924882 1 1 -career%1:04:00:: 00583246 1 22 -career%1:04:01:: 00282613 2 8 -career%2:38:00:: 02082181 1 3 -career_counseling%1:10:00:: 06651047 1 0 -career_girl%1:18:00:: 09895138 1 0 -career_man%1:18:00:: 09895480 1 0 -careerism%1:04:00:: 00413086 1 1 -careerist%1:18:00:: 09895222 1 0 -carefree%5:00:00:irresponsible:00 01998260 2 0 -carefree%5:00:00:untroubled:00 02459465 1 4 -carefreeness%1:07:00:: 04672210 2 0 -carefreeness%1:12:00:: 07530866 1 0 -careful%3:00:00:: 00309021 1 19 -careful%5:00:00:mindful:00 01977488 2 2 -careful%5:00:00:provident:00 01895099 5 0 -careful%5:00:00:troubled:00 02456698 4 0 -careful%5:00:00:unhurried:00 01271961 3 1 -carefully%4:02:00:: 00153568 1 39 -carefully%4:02:02:: 00282103 2 6 -carefulness%1:07:00:: 04663494 2 0 -carefulness%1:07:01:: 04664058 1 0 -caregiver%1:18:00:: 09895561 2 0 -caregiver%1:18:01:: 10165109 1 0 -careless%3:00:00:: 00311663 1 3 -careless%5:00:00:artless:00 00150055 2 1 -careless%5:00:01:heedless:00 01194099 3 0 -carelessly%4:02:00:: 00282444 2 0 -carelessly%4:02:01:: 00221130 3 0 -carelessly%4:02:02:: 00164150 1 1 -carelessness%1:04:00:: 00739270 2 1 -carelessness%1:07:00:: 04664964 1 1 -carelian%1:10:00:: 06958063 2 0 -carelian%1:18:00:: 09706746 1 0 -caress%1:04:00:: 00144778 1 2 -caress%2:35:00:: 01226215 1 5 -caressing%1:04:00:: 00854000 1 0 -caret%1:10:00:: 06818603 1 0 -caretaker%1:18:00:: 09895701 1 1 -caretaker%1:18:01:: 09895902 2 0 -caretta%1:05:00:: 01663939 1 0 -caretta_caretta%1:05:00:: 01664065 1 0 -carew%1:18:00:: 10882436 1 0 -careworn%5:00:00:tired:00 02433000 1 1 -carex%1:20:00:: 12151814 1 0 -carex_arenaria%1:20:00:: 12152031 1 0 -carex_pseudocyperus%1:20:00:: 12152251 1 0 -carfare%1:21:00:: 13308432 1 0 -carful%1:23:00:: 13766166 1 0 -cargo%1:06:00:: 02964389 1 3 -cargo_area%1:06:00:: 02964634 1 0 -cargo_container%1:06:00:: 02964843 1 0 -cargo_cult%1:09:00:: 06225357 2 0 -cargo_cult%1:14:00:: 08151753 1 0 -cargo_deck%1:06:00:: 02964634 1 0 -cargo_door%1:06:00:: 02964934 1 0 -cargo_hatch%1:06:00:: 02965024 1 0 -cargo_helicopter%1:06:00:: 02965122 1 0 -cargo_hold%1:06:00:: 02964634 1 0 -cargo_liner%1:06:00:: 02965216 1 0 -cargo_ship%1:06:00:: 02965300 1 0 -cargo_ships%1:06:00:: 04196502 1 0 -cargo_vessel%1:06:00:: 02965300 1 0 -carhop%1:18:00:: 09896084 1 0 -cariama%1:05:00:: 02014061 1 0 -cariama_cristata%1:05:00:: 02014237 1 0 -cariamidae%1:05:00:: 02013889 1 0 -carib%1:10:00:: 06917926 2 0 -carib%1:18:00:: 09726811 1 0 -carib_indian%1:18:00:: 09726811 1 0 -carib_wood%1:20:00:: 12569037 1 0 -caribbean%1:15:00:: 08709038 2 0 -caribbean%1:17:00:: 09235894 1 1 -caribbean_island%1:15:00:: 08746942 1 1 -caribbean_language%1:10:00:: 06917926 1 0 -caribbean_sea%1:17:00:: 09235894 1 0 -caribe%1:05:00:: 02584449 1 0 -caribees%1:15:00:: 08748280 1 0 -caribou%1:05:00:: 02433925 1 0 -carica%1:20:00:: 12372932 1 0 -carica_papaya%1:20:00:: 12373100 1 0 -caricaceae%1:20:00:: 12372708 1 0 -caricature%1:10:00:: 06780069 1 0 -caricature%2:32:00:: 00849592 1 1 -caricature_plant%1:20:00:: 12812801 1 0 -caricaturist%1:18:00:: 09896170 1 0 -caries%1:22:00:: 13444513 1 0 -carillon%1:04:00:: 00544441 2 0 -carillon%1:06:00:: 02965529 1 0 -carillon_playing%1:04:00:: 00544441 1 0 -carillonneur%1:18:00:: 09896311 1 0 -carina%1:08:00:: 05227209 2 0 -carina%1:17:00:: 09236077 1 0 -carina_fornicis%1:08:00:: 05227438 1 0 -carinal%3:01:00:: 02680492 1 0 -carinate%1:05:00:: 01517966 1 0 -carinate%3:44:00:: 03153361 1 0 -carinate_bird%1:05:00:: 01517966 1 0 -carinated%3:44:00:: 03153361 1 0 -caring%1:12:01:: 07546125 1 0 -caring%5:00:00:compassionate:00 00506601 1 0 -carioca%1:04:00:: 00535455 3 0 -carioca%1:10:00:: 07055203 2 0 -carioca%1:18:00:: 09695019 1 0 -carious%5:00:00:unhealthy:00 01175427 1 0 -carissa%1:20:00:: 11771539 1 0 -carissa_bispinosa%1:20:00:: 11771746 1 0 -carissa_grandiflora%1:20:00:: 11771924 1 0 -carissa_macrocarpa%1:20:00:: 11771924 1 0 -carissa_plum%1:13:00:: 07746910 1 0 -carjack%2:35:00:: 01472417 1 0 -carjacking%1:04:00:: 00227484 1 0 -cark%2:37:00:: 01764171 1 0 -carl_anderson%1:18:00:: 10817244 1 0 -carl_august_nielsen%1:18:00:: 11207006 1 0 -carl_clinton_van_doren%1:18:00:: 11359697 1 0 -carl_david_anderson%1:18:00:: 10817244 1 0 -carl_gustaf_mossander%1:18:00:: 11193250 1 0 -carl_gustav_jung%1:18:00:: 11094611 1 0 -carl_jung%1:18:00:: 11094611 1 0 -carl_lewis%1:18:00:: 11131135 1 0 -carl_maria_von_weber%1:18:00:: 11378462 1 0 -carl_nielsen%1:18:00:: 11207006 1 0 -carl_orff%1:18:00:: 11216386 1 0 -carl_rogers%1:18:00:: 11268523 1 0 -carl_sandburg%1:18:00:: 11280213 1 0 -carl_van_doren%1:18:00:: 11359697 1 0 -carl_von_linne%1:18:00:: 11133551 1 0 -carl_xvi_gustaf%1:18:00:: 10882588 1 0 -carl_xvi_gustav%1:18:00:: 10882588 1 0 -carl_yastrzemski%1:18:00:: 11402341 1 0 -carlina%1:20:00:: 11945228 1 0 -carlina_acaulis%1:20:00:: 11945514 1 0 -carlina_vulgaris%1:20:00:: 11945783 1 0 -carline_thistle%1:20:00:: 11945367 1 0 -carling_float%1:06:00:: 03663781 1 0 -carlo_goldoni%1:18:00:: 11005320 1 0 -carload%1:14:00:: 07976069 1 1 -carload%1:23:00:: 13775523 2 0 -carlos%1:18:00:: 11201386 1 0 -carlos_chavez%1:18:00:: 10894365 1 0 -carlos_fuentes%1:18:00:: 10984876 1 0 -carlos_the_jackal%1:18:00:: 11201386 1 0 -carlovingian%1:18:00:: 09896520 1 0 -carlovingian_dynasty%1:14:00:: 08154363 1 0 -carlsbad%1:15:00:: 09115478 1 0 -carlsbad_caverns%1:17:00:: 09236251 1 0 -carlsbad_caverns_national_park%1:15:00:: 08603704 1 0 -carlyle%1:18:00:: 10882706 1 0 -carmaker%1:14:00:: 08066763 1 0 -carmelite%1:18:00:: 10778148 1 0 -carmelite%3:01:00:: 03053199 1 0 -carmelite_order%1:14:00:: 08148827 1 0 -carmichael%1:18:00:: 10882846 1 0 -carminative%1:06:00:: 02965617 1 0 -carminative%5:00:00:healthful:00 01165665 1 0 -carmine%1:07:00:: 04963449 1 0 -carmine%2:30:00:: 00535256 1 0 -carmine%5:00:00:chromatic:00 00381097 1 0 -carnage%1:04:00:: 00223983 1 0 -carnal%3:01:00:: 02976040 2 0 -carnal%5:00:00:physical:00 01778572 1 2 -carnal_abuse%1:04:00:: 00846961 2 0 -carnal_abuse%1:04:01:: 00847167 1 0 -carnal_knowledge%1:04:00:: 00845523 1 0 -carnalise%2:30:00:: 00133978 1 0 -carnality%1:12:00:: 07490214 1 0 -carnalize%2:30:00:: 00133978 3 0 -carnalize%2:31:00:: 00727012 2 0 -carnalize%2:36:00:: 01680473 1 0 -carnallite%1:27:00:: 14669413 1 0 -carnally%4:02:00:: 00430447 1 0 -carnassial%5:00:00:sharp:00 00801328 1 0 -carnassial_tooth%1:08:00:: 05283649 1 0 -carnation%1:07:00:: 04971211 2 0 -carnation%1:20:00:: 11808468 1 0 -carnation%5:00:00:chromatic:00 00372960 1 0 -carnation_family%1:20:00:: 11804604 1 0 -carnauba%1:20:00:: 12588320 2 0 -carnauba%1:20:02:: 12588584 1 0 -carnauba_palm%1:20:00:: 12588320 1 0 -carnauba_wax%1:20:00:: 12588584 1 0 -carnegie%1:18:00:: 10882988 2 0 -carnegie%1:18:01:: 10883202 1 0 -carnegie_mellon_university%1:06:00:: 02965936 1 0 -carnegiea%1:20:00:: 11844203 1 0 -carnegiea_gigantea%1:20:00:: 11844371 1 0 -carnelian%1:27:00:: 14801594 1 0 -carnify%2:30:00:: 00499422 1 0 -carniolan_bee%1:05:00:: 02208979 1 0 -carnival%1:04:00:: 00511555 1 1 -carnival%1:04:01:: 00519333 3 0 -carnival%1:04:02:: 00552679 2 0 -carnivora%1:05:00:: 02074915 1 0 -carnivore%1:05:00:: 02075296 1 0 -carnivore%1:05:02:: 01324431 2 0 -carnivorous%3:00:00:: 00313387 2 0 -carnivorous%3:01:00:: 02680580 1 0 -carnivorous_bat%1:05:00:: 02141306 1 0 -carnivorous_plant%1:20:00:: 12778605 1 0 -carnosaur%1:05:00:: 01713508 1 0 -carnosaura%1:05:00:: 01713310 1 0 -carnot%1:18:00:: 10883380 1 0 -carnot's_ideal_cycle%1:11:00:: 07341665 1 0 -carnot_cycle%1:11:00:: 07341665 1 0 -carnotite%1:27:00:: 14669677 1 0 -carob%1:13:00:: 07598335 3 0 -carob%1:20:00:: 12493208 2 0 -carob%1:20:02:: 12493426 1 0 -carob_bar%1:13:00:: 07598529 1 0 -carob_bean%1:20:00:: 12493426 1 0 -carob_bean_tree%1:20:00:: 12493208 1 0 -carob_powder%1:13:00:: 07598335 1 0 -carob_tree%1:20:00:: 12493208 1 0 -caroche%1:06:00:: 02966068 1 0 -carol%1:04:00:: 00546613 2 0 -carol%1:10:00:: 07035747 1 0 -carol%2:36:00:: 01731828 1 0 -carolean%3:01:00:: 02680723 1 0 -caroler%1:18:00:: 09896401 1 0 -carolina%1:15:00:: 09052835 1 0 -carolina_allspice%1:20:00:: 11701066 1 0 -carolina_buckthorn%1:20:00:: 13141972 1 0 -carolina_chickadee%1:05:00:: 01592540 1 0 -carolina_hemlock%1:20:00:: 11627714 1 0 -carolina_jasmine%1:20:00:: 12485981 1 0 -carolina_lupine%1:20:00:: 12573647 1 0 -carolina_moonseed%1:20:00:: 11713763 1 0 -carolina_parakeet%1:05:00:: 01821554 1 0 -carolina_pond_fern%1:20:00:: 12959538 1 0 -carolina_spring_beauty%1:20:00:: 11859275 1 0 -carolina_wren%1:05:00:: 01586020 1 0 -carolinas%1:15:00:: 09052835 1 0 -caroline%3:01:00:: 02680723 1 0 -caroline_islands%1:15:00:: 08838716 1 0 -caroling%1:04:00:: 00546861 1 0 -carolingian%1:18:00:: 09896520 1 0 -carolingian%3:01:00:: 02680977 1 0 -carolingian_dynasty%1:14:00:: 08154363 1 0 -carolinian%1:18:00:: 09741722 1 0 -caroller%1:18:00:: 09896401 1 0 -carolus%1:18:00:: 10891981 1 0 -carolus_linnaeus%1:18:00:: 11133551 1 0 -carom%1:04:00:: 00500449 2 0 -carom%1:11:00:: 07409475 1 0 -carom%2:35:00:: 01598395 2 0 -carom%2:38:00:: 01892849 1 0 -carotene%1:27:00:: 15090535 1 0 -carotene%1:27:02:: 14721236 2 0 -carotenemia%1:26:00:: 14566606 1 0 -carotenoid%1:27:00:: 14720962 1 0 -carothers%1:18:00:: 10883533 1 0 -carotid%3:01:00:: 02681141 1 0 -carotid_artery%1:08:00:: 05339357 1 0 -carotid_body%1:08:00:: 05340121 1 0 -carotid_plexus%1:08:00:: 05506369 1 0 -carotin%1:27:00:: 15090535 1 0 -carousal%1:04:00:: 00511041 1 0 -carouse%1:04:00:: 00511041 1 0 -carouse%2:41:00:: 02493260 1 0 -carousel%1:06:00:: 02966193 2 0 -carousel%1:06:01:: 02966372 1 0 -carouser%1:18:00:: 10769321 1 0 -carousing%5:00:00:intoxicated:00 00797706 1 0 -carp%1:05:00:: 01439514 2 0 -carp%1:13:00:: 07779123 1 0 -carp%2:32:00:: 00808671 1 0 -carpal%1:08:00:: 05271814 1 0 -carpal%3:01:00:: 03053336 1 0 -carpal_bone%1:08:00:: 05271814 1 0 -carpal_tunnel%1:08:00:: 05272110 1 0 -carpal_tunnel_syndrome%1:26:00:: 14057569 1 0 -carpathian_mountains%1:17:00:: 09236423 1 0 -carpathians%1:17:00:: 09236423 1 0 -carpel%1:20:00:: 11677743 1 0 -carpellary%3:01:00:: 02681282 1 0 -carpellate%3:00:00:: 00316046 1 0 -carpentaria%1:17:00:: 09297920 1 0 -carpenter%1:18:00:: 09896685 1 8 -carpenter%2:41:00:: 02408843 1 0 -carpenter's_hammer%1:06:00:: 02966545 1 0 -carpenter's_kit%1:06:00:: 02966687 1 0 -carpenter's_level%1:06:00:: 02966786 1 0 -carpenter's_mallet%1:06:00:: 02966942 1 0 -carpenter's_plane%1:06:00:: 03954731 1 0 -carpenter's_rule%1:06:00:: 02967081 1 0 -carpenter's_saw%1:06:00:: 03488188 1 0 -carpenter's_square%1:06:00:: 02967170 1 0 -carpenter_ant%1:05:00:: 02220804 1 0 -carpenter_bee%1:05:00:: 02209354 1 0 -carpenteria%1:20:00:: 12789554 1 0 -carpenteria_californica%1:20:00:: 12789554 1 0 -carpentry%1:04:00:: 00607775 1 3 -carper%1:18:00:: 09896826 1 0 -carpet%1:06:00:: 04118021 1 3 -carpet%1:17:00:: 09236766 2 0 -carpet%2:35:00:: 01234920 3 0 -carpet%2:35:01:: 01235073 2 0 -carpet%2:42:00:: 02749520 1 0 -carpet_beater%1:06:00:: 02967407 1 0 -carpet_beetle%1:05:00:: 02170400 1 0 -carpet_bomb%2:33:00:: 01132355 1 0 -carpet_bombing%1:04:00:: 00978993 1 0 -carpet_bug%1:05:00:: 02170400 1 0 -carpet_grass%1:20:00:: 12140511 1 0 -carpet_knight%1:18:00:: 09897170 1 0 -carpet_loom%1:06:00:: 02967540 1 0 -carpet_moth%1:05:00:: 02292692 1 0 -carpet_pad%1:06:00:: 02967626 1 0 -carpet_shark%1:05:00:: 01486540 1 0 -carpet_slipper%1:06:00:: 04241394 1 0 -carpet_snake%1:05:00:: 01743936 1 0 -carpet_sweeper%1:06:00:: 02967782 1 0 -carpet_tack%1:06:00:: 02967991 1 0 -carpetbag%1:06:00:: 02967294 1 0 -carpetbag%3:01:00:: 02681402 1 0 -carpetbag%5:00:00:expedient:00 00932184 2 0 -carpetbagger%1:18:00:: 09896973 1 0 -carpetbagging%5:00:00:expedient:00 00932184 1 0 -carpeted%3:00:00:: 00316274 1 2 -carpeting%1:06:00:: 04118021 1 0 -carpetweed%1:20:00:: 11821534 1 0 -carpetweed_family%1:20:00:: 11818945 1 0 -carphophis%1:05:00:: 01728445 1 0 -carphophis_amoenus%1:05:00:: 01728572 1 0 -carpinaceae%1:20:00:: 12286372 1 0 -carping%1:10:00:: 06711030 1 1 -carpinus%1:20:00:: 12286581 1 0 -carpinus_betulus%1:20:00:: 12286988 1 0 -carpinus_caroliniana%1:20:00:: 12287195 1 0 -carpobrotus%1:20:00:: 11819354 1 0 -carpobrotus_edulis%1:20:00:: 11819509 1 0 -carpocapsa%1:05:00:: 02285052 1 0 -carpocapsa_pomonella%1:05:00:: 02285179 1 0 -carpodacus%1:05:00:: 01532664 1 0 -carpodacus_mexicanus%1:05:00:: 01532829 1 0 -carpodacus_purpureus%1:05:00:: 01533000 1 0 -carpophagous%5:00:00:herbivorous:00 00314466 1 0 -carpophore%1:20:00:: 11677902 1 0 -carport%1:06:00:: 02968074 1 0 -carpospore%1:20:00:: 11548728 1 0 -carposporic%3:01:00:: 02681567 1 0 -carposporous%3:01:00:: 02681681 1 0 -carpus%1:08:00:: 05584928 1 0 -carrack%1:06:00:: 02968210 1 0 -carrageen%1:05:00:: 01414633 1 0 -carrageenan%1:27:00:: 14801711 1 0 -carrageenin%1:27:00:: 14801711 1 0 -carragheen%1:05:00:: 01414633 1 0 -carrefour%1:06:00:: 03581125 1 0 -carrel%1:06:00:: 02968333 2 0 -carrel%1:18:00:: 10883688 1 0 -carrell%1:06:00:: 02968333 1 0 -carrere%1:18:00:: 10883871 1 0 -carriage%1:06:00:: 02968473 2 2 -carriage%1:06:01:: 03895866 1 2 -carriage%1:06:02:: 02969010 4 0 -carriage%1:06:03:: 02766534 5 0 -carriage%1:07:00:: 05002822 3 0 -carriage_bolt%1:06:00:: 02969163 1 0 -carriage_dog%1:05:00:: 02110341 1 0 -carriage_house%1:06:00:: 03055857 1 0 -carriage_return%1:22:00:: 13443537 1 0 -carriage_trade%1:04:00:: 01106715 1 0 -carriage_wrench%1:06:00:: 02969527 1 0 -carriageway%1:06:00:: 02969323 1 0 -carrick_bend%1:06:00:: 02969634 1 0 -carrick_bitt%1:06:00:: 02969754 1 0 -carrier%1:05:00:: 01314145 11 0 -carrier%1:06:01:: 02687172 3 3 -carrier%1:06:02:: 02969886 10 0 -carrier%1:06:03:: 02970100 2 3 -carrier%1:14:00:: 08057633 5 1 -carrier%1:18:00:: 09897350 9 0 -carrier%1:18:01:: 09897603 8 0 -carrier%1:18:02:: 10283037 7 0 -carrier%1:18:03:: 09897696 1 3 -carrier%1:19:00:: 11501230 6 0 -carrier%1:27:00:: 14727153 4 1 -carrier_bag%1:06:00:: 04122825 1 0 -carrier_electrophoresis%1:22:00:: 13532059 1 0 -carrier_pigeon%1:05:00:: 01815036 1 0 -carrier_wave%1:19:00:: 11501230 1 0 -carrion%1:05:00:: 01758895 1 0 -carrion_crow%1:05:00:: 01620414 1 0 -carrion_flower%1:20:00:: 13238375 1 0 -carrion_fungus%1:20:00:: 13040303 1 0 -carrizo%1:20:00:: 12130937 1 0 -carroll%1:18:00:: 10884061 1 0 -carron_oil%1:06:00:: 02970311 1 0 -carrot%1:04:00:: 01219722 4 0 -carrot%1:13:00:: 07730207 3 0 -carrot%1:20:00:: 12937388 2 0 -carrot%1:20:02:: 12937678 1 0 -carrot_family%1:20:00:: 12930044 1 0 -carrot_juice%1:13:00:: 07925608 1 0 -carrot_pudding%1:13:00:: 07617839 1 0 -carrot_stick%1:13:00:: 07730320 1 0 -carrottop%1:18:00:: 10513823 1 0 -carroty%3:01:00:: 03132982 1 0 -carrousel%1:06:00:: 02966193 2 0 -carrousel%1:06:01:: 02966372 1 0 -carry%1:04:00:: 00318735 1 1 -carry%2:29:00:: 00059019 40 0 -carry%2:30:05:: 00235110 9 3 -carry%2:31:12:: 00738951 12 2 -carry%2:32:00:: 01049606 39 0 -carry%2:32:02:: 01061017 4 8 -carry%2:32:07:: 01061320 17 1 -carry%2:33:01:: 01101416 11 2 -carry%2:33:02:: 01101571 37 0 -carry%2:33:03:: 01123415 36 0 -carry%2:33:04:: 01123609 35 0 -carry%2:33:12:: 01100672 38 0 -carry%2:34:00:: 01205153 33 0 -carry%2:34:01:: 01203074 34 0 -carry%2:35:01:: 01601234 6 5 -carry%2:35:02:: 01449974 1 72 -carry%2:35:08:: 01408760 16 1 -carry%2:35:09:: 01218084 5 6 -carry%2:35:12:: 01241881 32 0 -carry%2:36:00:: 01746359 15 1 -carry%2:36:08:: 01740320 31 0 -carry%2:38:03:: 02079933 3 8 -carry%2:38:07:: 02001699 30 0 -carry%2:38:10:: 02012725 29 0 -carry%2:40:00:: 02285392 14 1 -carry%2:40:04:: 02303878 27 0 -carry%2:40:10:: 02359228 26 0 -carry%2:40:13:: 02233195 28 0 -carry%2:41:00:: 02561168 8 4 -carry%2:41:01:: 02518161 13 1 -carry%2:41:02:: 02586121 23 0 -carry%2:41:06:: 02556537 24 0 -carry%2:41:12:: 02555684 25 0 -carry%2:42:01:: 02717102 2 36 -carry%2:42:02:: 02636325 10 2 -carry%2:42:03:: 02700867 7 4 -carry%2:42:08:: 02630734 22 0 -carry%2:42:12:: 02636516 21 0 -carry%2:42:13:: 02746735 18 0 -carry%2:42:14:: 02682954 20 0 -carry%2:42:15:: 02741357 19 0 -carry-forward%1:21:00:: 13409647 1 0 -carry-over%1:09:00:: 05756203 1 1 -carry-over%1:21:00:: 13409647 2 0 -carry-the_can%2:40:00:: 02302081 1 0 -carry_amelia_moore_nation%1:18:00:: 11201061 1 0 -carry_away%2:35:00:: 01434278 1 6 -carry_back%2:31:00:: 00641532 1 0 -carry_forward%2:38:00:: 02013427 1 1 -carry_nation%1:18:00:: 11201061 1 0 -carry_off%2:30:00:: 00470701 3 0 -carry_off%2:35:00:: 01434278 2 0 -carry_off%2:41:00:: 02522864 1 0 -carry_on%2:32:00:: 00781000 3 1 -carry_on%2:41:00:: 02445509 1 9 -carry_on%2:41:02:: 02517655 4 0 -carry_on%2:42:00:: 02679899 2 1 -carry_out%2:30:00:: 00486018 2 16 -carry_out%2:36:00:: 01640855 1 21 -carry_over%2:30:00:: 00349951 1 4 -carry_over%2:38:00:: 02013427 4 0 -carry_over%2:38:01:: 02079330 2 2 -carry_over%2:40:00:: 02202802 3 0 -carry_through%2:36:00:: 01640855 1 4 -carry_through%2:41:00:: 02551832 2 0 -carry_to_term%2:29:00:: 00059559 1 0 -carry_weight%2:31:00:: 00701724 1 0 -carryall%1:06:00:: 02970408 1 0 -carrycot%1:06:00:: 02970534 1 0 -carrying_charge%1:21:00:: 13307370 1 0 -carrying_charge%1:21:02:: 13306190 2 0 -carrying_cost%1:21:00:: 13306190 1 0 -carrying_into_action%1:04:00:: 00097504 1 1 -carrying_out%1:04:00:: 01127379 1 0 -carrying_out%1:04:01:: 00097504 2 0 -carsick%5:00:00:ill:01 02542675 1 0 -carson%1:18:00:: 10884369 2 0 -carson%1:18:01:: 10884597 1 0 -carson_city%1:15:00:: 09110784 1 0 -carson_mccullers%1:18:00:: 11168839 1 0 -carson_smith_mccullers%1:18:00:: 11168839 1 0 -cart%1:06:00:: 02970849 1 5 -cart%1:06:01:: 03484083 2 1 -cart%2:35:00:: 01454810 1 1 -cart%2:35:01:: 01451502 2 0 -cart-track_plant%1:20:00:: 12599435 1 0 -cart_away%2:35:00:: 01451665 1 0 -cart_horse%1:05:00:: 02386853 1 0 -cart_off%2:35:00:: 01451665 1 1 -cart_track%1:06:00:: 04463510 1 0 -cartage%1:04:00:: 01106118 1 0 -cartagena%1:15:00:: 09025584 1 0 -cartagena%1:15:01:: 08733415 2 0 -cartagena_bark%1:20:00:: 12664005 1 0 -carte%1:10:00:: 06492939 1 0 -carte_blanche%1:07:00:: 05197701 1 0 -carte_du_jour%1:10:00:: 06492939 1 0 -cartel%1:14:00:: 08236621 1 0 -carter%1:18:00:: 09897914 3 0 -carter%1:18:01:: 10884831 2 0 -carter%1:18:02:: 10885006 1 0 -carter_administration%1:14:00:: 08166083 1 0 -cartesian%1:18:00:: 09898020 1 0 -cartesian%3:01:00:: 03026758 1 1 -cartesian_coordinate%1:09:00:: 06011092 1 0 -cartesian_coordinate_system%1:09:00:: 05728271 1 0 -cartesian_plane%1:25:00:: 13861449 1 0 -cartesian_product%1:14:00:: 07999068 1 0 -carthage%1:15:00:: 08919949 1 0 -carthaginian%1:18:00:: 09697070 1 0 -carthaginian%3:01:00:: 03104740 1 0 -carthamus%1:20:00:: 11945930 1 0 -carthamus_tinctorius%1:20:00:: 11946051 1 0 -carthorse%1:05:00:: 02386853 1 0 -carthusian%1:18:00:: 09898107 1 0 -carthusian%3:01:00:: 02682039 1 0 -carthusian_order%1:14:00:: 08149004 1 0 -cartier%1:18:00:: 10885176 1 0 -cartilage%1:08:00:: 05288091 1 1 -cartilage_bone%1:08:00:: 05273555 1 0 -cartilaginification%1:26:00:: 14183926 1 0 -cartilaginous%3:01:00:: 02681776 1 0 -cartilaginous%5:00:00:tough:01 02445863 2 0 -cartilaginous_fish%1:05:00:: 01480516 1 0 -cartilaginous_structure%1:08:00:: 05531161 1 0 -cartilaginous_tube%1:08:00:: 05531379 1 0 -carting%1:04:00:: 01106118 1 0 -cartload%1:23:00:: 13766252 1 0 -cartographer%1:18:00:: 09898215 1 0 -cartographic%3:01:00:: 02681881 1 0 -cartographical%3:01:00:: 02681881 1 0 -cartography%1:04:00:: 00924579 1 0 -carton%1:06:00:: 02971356 2 0 -carton%1:23:00:: 13766337 1 1 -cartonful%1:23:00:: 13766337 1 0 -cartoon%1:10:00:: 06780678 1 2 -cartoon%1:10:02:: 06616464 2 0 -cartoon%2:36:00:: 01693727 1 0 -cartoon_strip%1:10:00:: 07003352 1 0 -cartoonist%1:18:00:: 09898346 1 3 -cartouch%1:06:00:: 02971473 1 0 -cartouche%1:06:00:: 02971473 1 0 -cartridge%1:06:00:: 02971691 1 7 -cartridge%1:06:02:: 02971940 4 0 -cartridge%1:06:03:: 02972182 3 0 -cartridge%1:06:04:: 03704376 2 0 -cartridge_belt%1:06:00:: 02972397 1 1 -cartridge_brass%1:27:00:: 14794534 1 0 -cartridge_clip%1:06:00:: 02973017 1 0 -cartridge_ejector%1:06:00:: 02972533 1 0 -cartridge_extractor%1:06:00:: 02972714 1 0 -cartridge_font%1:10:00:: 06826407 1 0 -cartridge_fuse%1:06:00:: 02972934 1 0 -cartridge_holder%1:06:00:: 02973017 1 0 -cartridge_paper%1:27:00:: 14799833 2 0 -cartridge_paper%1:27:01:: 14799927 1 0 -cartridge_remover%1:06:00:: 02972714 1 0 -cartroad%1:06:00:: 04463510 1 0 -cartwheel%1:04:00:: 00434657 2 1 -cartwheel%1:06:00:: 02973236 1 1 -cartwheel%1:21:00:: 13392262 3 0 -cartwheel%2:38:00:: 02046286 1 0 -cartwright%1:18:00:: 09898692 2 0 -cartwright%1:18:01:: 10885352 1 0 -carum%1:20:00:: 12934368 1 0 -carum_carvi%1:20:00:: 12934479 1 0 -caruncle%1:08:00:: 05471181 1 0 -caruncula%1:08:00:: 05471181 1 0 -caruncular%3:01:00:: 02682134 1 0 -carunculate%3:01:00:: 02682298 1 0 -carunculated%3:01:00:: 02682298 1 0 -carunculous%3:01:00:: 02682134 1 0 -caruso%1:18:00:: 10885487 1 0 -carve%2:35:00:: 01255967 3 0 -carve%2:35:01:: 01256157 1 9 -carve%2:35:02:: 01256600 2 3 -carve_out%2:30:00:: 00587675 2 0 -carve_out%2:36:00:: 01758526 1 0 -carve_up%2:41:00:: 02467662 1 0 -carved%3:00:00:: 00317008 1 2 -carved_in_stone%5:00:00:unchangeable:00 00347880 1 0 -carvedilol%1:06:00:: 02973395 1 0 -carvel-built%3:00:00:: 00316572 1 0 -carven%3:00:00:: 00317008 1 2 -carver%1:18:00:: 10566072 3 0 -carver%1:18:01:: 09985470 4 0 -carver%1:18:02:: 10789963 2 0 -carver%1:18:03:: 10885603 1 0 -carving%1:04:00:: 00937656 3 0 -carving%1:04:01:: 00942234 2 0 -carving%1:06:00:: 02973558 1 2 -carving_fork%1:06:00:: 02973805 1 0 -carving_knife%1:06:00:: 02973904 1 0 -cary_grant%1:18:00:: 11011398 1 0 -carya%1:20:00:: 12319687 1 0 -carya_aquatica%1:20:00:: 12320414 1 0 -carya_cordiformis%1:20:00:: 12320806 1 0 -carya_glabra%1:20:00:: 12320627 1 0 -carya_illinoensis%1:20:00:: 12321077 1 0 -carya_illinoinsis%1:20:00:: 12321077 1 0 -carya_laciniosa%1:20:00:: 12321395 1 0 -carya_myristicaeformis%1:20:00:: 12321669 1 0 -carya_myristiciformis%1:20:00:: 12321669 1 0 -carya_ovata%1:20:00:: 12321873 1 0 -carya_tomentosa%1:20:00:: 12322099 1 0 -caryatid%1:06:00:: 02974348 1 0 -caryocar%1:20:00:: 12373526 1 0 -caryocar_nuciferum%1:20:00:: 12373739 1 0 -caryocaraceae%1:20:00:: 12373361 1 0 -caryophyllaceae%1:20:00:: 11804604 1 0 -caryophyllaceous%3:01:00:: 02682406 1 0 -caryophyllaceous_plant%1:20:00:: 11805255 1 0 -caryophyllales%1:20:00:: 11804082 1 0 -caryophyllidae%1:20:00:: 11803475 1 0 -caryophylloid_dicot_family%1:20:00:: 11565040 1 0 -caryophylloid_dicot_genus%1:20:00:: 11573660 1 0 -caryopsis%1:20:00:: 12156819 1 0 -caryota%1:20:00:: 12586867 1 0 -caryota_urens%1:20:00:: 12587132 1 0 -casaba%1:13:00:: 07756838 1 0 -casaba_melon%1:13:00:: 07756838 1 0 -casablanca%1:15:00:: 08969798 1 0 -casals%1:18:00:: 10885831 1 0 -casanova%1:18:00:: 10885994 1 0 -casanova%1:18:01:: 09898797 2 0 -casanova_de_seingalt%1:18:00:: 10885994 1 0 -casava%1:20:00:: 12926480 1 0 -casbah%1:15:00:: 08628141 1 0 -cascabel%1:06:00:: 04236935 1 0 -cascade%1:11:00:: 07363668 3 0 -cascade%1:14:00:: 08460152 2 0 -cascade%1:17:00:: 09236957 1 0 -cascade%2:35:00:: 01465732 2 0 -cascade%2:38:00:: 02071316 1 1 -cascade_down%2:38:00:: 02071316 1 1 -cascade_everlasting%1:20:00:: 11999656 1 0 -cascade_liquefier%1:06:00:: 02974454 1 0 -cascade_mountains%1:17:00:: 09237076 1 0 -cascade_penstemon%1:20:00:: 12888234 1 0 -cascade_range%1:17:00:: 09237076 1 0 -cascade_transformer%1:06:00:: 02974565 1 0 -cascades%1:17:00:: 09237076 1 0 -cascades_frog%1:05:00:: 01641930 1 0 -cascading_menu%1:10:00:: 06493721 1 0 -cascara%1:20:00:: 13141797 1 0 -cascara_buckthorn%1:20:00:: 13141564 1 0 -cascara_sagrada%1:20:00:: 13141797 1 0 -cascarilla%1:20:00:: 12923108 1 0 -cascarilla_bark%1:20:00:: 12923257 1 0 -case%1:04:00:: 01182654 3 19 -case%1:06:00:: 02974697 5 7 -case%1:06:01:: 02975212 20 0 -case%1:06:02:: 02975412 19 0 -case%1:06:03:: 02975589 18 0 -case%1:06:06:: 04190747 16 0 -case%1:06:07:: 02977619 17 0 -case%1:08:00:: 05238036 15 0 -case%1:09:00:: 05817743 4 11 -case%1:10:00:: 06310945 11 1 -case%1:10:01:: 06649426 9 3 -case%1:10:02:: 06784966 8 3 -case%1:10:03:: 06825399 14 0 -case%1:11:00:: 07308889 1 72 -case%1:18:02:: 10668666 7 3 -case%1:18:03:: 09898892 6 5 -case%1:18:04:: 09909060 13 0 -case%1:23:00:: 13766436 10 2 -case%1:26:00:: 13943400 2 39 -case%1:26:02:: 14015996 12 0 -case%2:35:01:: 01486312 2 0 -case%2:39:00:: 02165982 1 1 -case-by-case%5:00:00:independent:00 00729246 1 0 -case-fatality_proportion%1:24:00:: 13816071 1 0 -case-hardened%5:00:00:hard:02 01155815 1 0 -case-hardened_steel%1:27:00:: 14794693 1 0 -case-to-infection_proportion%1:24:00:: 13816313 1 0 -case-to-infection_ratio%1:24:00:: 13816313 1 0 -case_agreement%1:24:00:: 13797856 1 0 -case_history%1:10:00:: 06514880 1 1 -case_in_point%1:09:00:: 05821486 1 2 -case_knife%1:06:01:: 02976123 2 0 -case_knife%1:06:02:: 02976249 1 0 -case_law%1:10:00:: 06535035 2 0 -case_law%1:14:00:: 08453722 1 0 -case_load%1:04:00:: 00581382 1 1 -case_officer%1:18:00:: 09899134 1 0 -case_shot%1:06:00:: 02976641 1 0 -case_study%1:04:00:: 00646680 2 0 -case_study%1:10:00:: 07219297 1 0 -caseate%2:30:00:: 00526229 2 0 -caseate%2:30:01:: 00526339 1 0 -casebook%1:10:00:: 06503034 1 0 -casebook%5:00:00:standard:01 02295511 1 1 -cased%5:00:00:bound:02 00257032 2 0 -cased%5:00:00:sheathed:00 02155054 1 0 -caseful%1:23:00:: 13766436 1 0 -casein%1:06:00:: 02975994 2 0 -casein%1:27:00:: 14735347 1 0 -casein_glue%1:27:00:: 14703345 1 0 -casein_paint%1:06:00:: 02975994 1 0 -casemaking_clothes_moth%1:05:00:: 02292085 1 0 -casement%1:06:00:: 02976350 1 0 -casement_window%1:06:00:: 02976455 1 0 -caseous%5:00:00:unhealthy:00 01175541 1 0 -casern%1:06:00:: 02976552 1 0 -casework%1:04:00:: 01209079 1 0 -caseworker%1:18:00:: 10620027 1 0 -caseworm%1:05:00:: 02269522 1 0 -casey_jones%1:18:00:: 11090631 1 0 -casey_stengel%1:18:00:: 11316429 1 0 -cash%1:18:00:: 10886222 3 0 -cash%1:21:00:: 13386614 1 9 -cash%1:21:02:: 13386465 2 0 -cash%2:40:00:: 02256354 1 2 -cash-and-carry%3:01:00:: 02682543 1 0 -cash_account%1:21:00:: 13351680 1 0 -cash_advance%1:21:00:: 13375891 1 0 -cash_bar%1:06:00:: 02976815 1 0 -cash_basis%1:21:00:: 13406852 1 1 -cash_card%1:21:00:: 13376643 1 0 -cash_cow%1:09:00:: 05910577 1 0 -cash_crop%1:20:00:: 13086063 1 0 -cash_dispenser%1:06:00:: 02977058 1 0 -cash_equivalent%1:21:00:: 13364984 1 0 -cash_flow%1:21:00:: 13259199 1 0 -cash_in%2:40:00:: 02256354 1 0 -cash_in_hand%1:21:00:: 13356112 1 0 -cash_in_on%2:40:00:: 02279513 1 1 -cash_in_one's_chips%2:30:00:: 00358431 1 0 -cash_machine%1:06:00:: 02977058 1 0 -cash_on_delivery%4:02:00:: 00253938 1 0 -cash_out%2:42:00:: 02755232 1 0 -cash_price%1:21:00:: 13305373 1 0 -cash_register%1:06:00:: 02977438 1 1 -cash_surrender_value%1:21:00:: 13269683 1 0 -cashable%5:00:00:convertible:00 00916965 1 0 -cashbox%1:06:00:: 02976939 1 0 -cashcard%1:21:00:: 13376643 1 0 -cashed%5:00:00:paid:00 01708563 1 0 -cashew%1:13:00:: 07772147 2 0 -cashew%1:20:00:: 12759273 1 0 -cashew_nut%1:13:00:: 07772147 1 0 -cashew_tree%1:20:00:: 12759273 1 0 -cashier%1:18:00:: 10698970 1 0 -cashier%1:18:01:: 09899289 2 0 -cashier%2:41:00:: 02422559 2 0 -cashier%2:41:01:: 02427596 1 0 -cashier's_check%1:21:00:: 13383439 1 0 -cashier's_cheque%1:21:00:: 13383439 1 0 -cashmere%1:06:00:: 02977330 1 1 -cashmere%1:15:00:: 08975617 3 0 -cashmere%1:27:00:: 15104669 2 0 -cashmere_goat%1:05:00:: 02417242 1 0 -casimir_funk%1:18:00:: 10986022 1 0 -casing%1:06:00:: 02977619 3 0 -casing%1:06:01:: 04190747 1 0 -casing%1:06:02:: 02977822 2 0 -casino%1:04:00:: 00491713 2 0 -casino%1:06:00:: 02977936 1 1 -casino-hotel%1:06:00:: 03542605 2 0 -casino-hotel%1:06:02:: 03542727 1 0 -cask%1:06:00:: 02795169 2 0 -cask%1:23:00:: 13766547 1 0 -casket%1:06:00:: 02978055 2 0 -casket%1:06:01:: 03064758 1 0 -casket%2:35:00:: 01599539 1 0 -caskful%1:23:00:: 13766547 1 0 -casmerodius%1:05:00:: 02009620 1 0 -casmerodius_albus%1:05:00:: 02009750 1 0 -caspar%1:18:00:: 10886361 1 0 -caspar_bartholin%1:18:00:: 10836725 1 0 -caspase%1:27:00:: 14669823 1 0 -caspase-mediated_cell_death%1:19:00:: 11486381 1 0 -casper%1:15:00:: 09159546 1 0 -caspian%1:17:00:: 09237404 1 0 -caspian_sea%1:17:00:: 09237404 1 0 -casque%1:06:00:: 02978205 1 0 -casquet%1:06:00:: 02978367 1 0 -casquetel%1:06:00:: 02978367 1 0 -cass_gilbert%1:18:00:: 10999048 1 0 -cassandra%1:18:00:: 09596186 1 0 -cassareep%1:13:00:: 07921090 1 0 -cassava%1:20:00:: 12926480 3 0 -cassava%1:20:02:: 12927013 2 0 -cassava%1:27:00:: 14761578 1 0 -cassava_starch%1:27:00:: 14761578 1 0 -cassegrainian_telescope%1:06:00:: 02978478 1 0 -casserole%1:06:00:: 02978753 2 0 -casserole%1:13:00:: 07580359 1 0 -cassette%1:06:00:: 02978881 1 0 -cassette_deck%1:06:00:: 02979074 1 0 -cassette_player%1:06:00:: 02979186 1 0 -cassette_recorder%1:06:00:: 02979290 1 0 -cassette_tape%1:06:00:: 02979399 1 0 -cassia%1:20:00:: 12491626 2 0 -cassia%1:20:01:: 12491826 1 0 -cassia%1:20:02:: 11705171 3 0 -cassia-bark_tree%1:20:00:: 11705171 1 0 -cassia_acutifolia%1:20:00:: 12499979 1 0 -cassia_alata%1:20:00:: 12499439 1 0 -cassia_augustifolia%1:20:00:: 12499979 1 0 -cassia_auriculata%1:20:00:: 12499757 1 0 -cassia_bark%1:20:00:: 11705387 1 0 -cassia_fasciculata%1:20:00:: 12494358 1 0 -cassia_fistula%1:20:00:: 12492106 1 0 -cassia_grandis%1:20:00:: 12492460 1 0 -cassia_javonica%1:20:00:: 12492682 1 0 -cassia_marginata%1:20:00:: 12492900 1 0 -cassia_marilandica%1:20:00:: 12500309 1 0 -cassia_occidentalis%1:20:00:: 12500751 1 0 -cassia_roxburghii%1:20:00:: 12492900 1 0 -cassia_tora%1:20:00:: 12500518 1 0 -cassie%1:20:00:: 11757851 1 0 -cassin's_kingbird%1:05:00:: 01548694 1 0 -cassino%1:04:00:: 00491713 1 0 -cassiope%1:20:00:: 12233759 1 0 -cassiope_mertensiana%1:20:00:: 12233998 1 0 -cassiopeia%1:17:00:: 09237627 2 0 -cassiopeia%1:18:00:: 09497775 1 0 -cassirer%1:18:00:: 10886558 1 0 -cassiri%1:13:00:: 07932323 1 0 -cassite%1:10:00:: 06968601 1 1 -cassite%1:18:00:: 09640577 2 0 -cassiterite%1:27:00:: 14669927 1 0 -cassius%1:18:00:: 10886763 1 0 -cassius_clay%1:18:00:: 10814574 1 0 -cassius_longinus%1:18:00:: 10886763 1 0 -cassius_marcellus_clay%1:18:00:: 10814574 1 0 -cassock%1:06:00:: 02979516 1 0 -cassocked%5:00:00:clothed:00 00455310 1 1 -cassowary%1:05:00:: 01519563 1 0 -cast%1:04:01:: 01245813 7 0 -cast%1:04:02:: 00454624 8 0 -cast%1:04:03:: 00105479 9 0 -cast%1:06:00:: 02979662 6 0 -cast%1:06:02:: 02979836 5 0 -cast%1:06:03:: 03779370 2 1 -cast%1:07:00:: 04677514 4 0 -cast%1:14:00:: 08237863 1 10 -cast%1:25:00:: 13913566 3 0 -cast%2:29:00:: 00076400 11 0 -cast%2:32:00:: 00981276 10 0 -cast%2:33:00:: 01078050 9 0 -cast%2:35:00:: 01507143 4 1 -cast%2:35:01:: 01513430 8 0 -cast%2:36:00:: 01662771 7 0 -cast%2:36:01:: 01710481 3 2 -cast%2:36:02:: 01632897 1 15 -cast%2:38:01:: 01881180 6 0 -cast%2:40:13:: 02236023 2 3 -cast%2:41:14:: 02385813 5 0 -cast-iron%5:00:00:robust:00 02038891 1 0 -cast-iron_plant%1:20:00:: 12443323 1 0 -cast-off%5:00:00:unwanted:00 02528206 1 0 -cast_about%2:31:00:: 00649362 1 0 -cast_anchor%2:35:00:: 01304716 1 0 -cast_around%2:31:00:: 00649362 1 1 -cast_aside%2:40:00:: 02222318 1 2 -cast_away%2:40:00:: 02222318 1 0 -cast_down%2:37:00:: 01814396 1 1 -cast_iron%1:27:00:: 14801921 1 1 -cast_of_characters%1:14:00:: 08237863 1 0 -cast_off%2:35:00:: 01513430 1 1 -cast_off%2:36:00:: 01671609 2 0 -cast_on%2:36:00:: 01671463 1 0 -cast_out%2:40:00:: 02222318 2 0 -cast_out%2:41:00:: 02504017 1 0 -castanea%1:20:00:: 12262327 1 0 -castanea_chrysophylla%1:20:00:: 12264786 1 0 -castanea_crenata%1:20:00:: 12263588 1 0 -castanea_dentata%1:20:00:: 12263038 1 0 -castanea_mollissima%1:20:00:: 12263410 1 0 -castanea_ozarkensis%1:20:00:: 12263987 1 0 -castanea_pumila%1:20:00:: 12263738 1 0 -castanea_sativa%1:20:00:: 12263204 1 0 -castanets%1:06:00:: 02869249 1 1 -castanopsis%1:20:00:: 12264254 1 0 -castanopsis_chrysophylla%1:20:00:: 12264786 1 0 -castanospermum%1:20:00:: 12512460 1 0 -castaway%1:18:01:: 09899438 2 0 -castaway%1:18:02:: 10386312 1 0 -caste%1:14:00:: 07995617 4 0 -caste%1:14:01:: 08306047 3 0 -caste%1:14:02:: 08306194 2 0 -caste%1:26:00:: 14431738 1 0 -caste_system%1:14:00:: 08378698 1 0 -casteless%5:00:00:unwanted:00 02528566 1 0 -castellated%5:00:00:fancy:00 01796109 1 0 -caster%1:06:00:: 02980036 3 0 -caster%1:06:01:: 02980203 2 0 -caster%1:18:00:: 09609746 1 0 -caster_sugar%1:13:00:: 07595751 1 0 -castigate%2:32:00:: 00824292 1 1 -castigate%2:41:00:: 02500144 2 0 -castigation%1:04:00:: 01161017 2 0 -castigation%1:10:00:: 06713187 1 1 -castile%1:15:00:: 09027853 1 0 -castile_soap%1:06:00:: 02980325 1 0 -castilian%1:10:00:: 06967185 1 0 -castilla%1:15:00:: 09027853 1 0 -castilleia%1:20:00:: 12879719 1 0 -castilleja%1:20:00:: 12879719 1 0 -castilleja_chromosa%1:20:00:: 12880244 1 0 -castilleja_miniata%1:20:00:: 12880462 1 0 -castilleja_sessiliflora%1:20:00:: 12880638 1 0 -castilleja_sulphurea%1:20:00:: 12880799 1 0 -castillian%1:18:00:: 09709441 1 0 -casting%1:04:01:: 00909899 2 0 -casting%1:04:02:: 00454624 3 0 -casting%1:04:03:: 00161603 4 0 -casting%1:06:01:: 02979662 1 0 -casting_lots%1:04:00:: 00180054 1 0 -casting_vote%1:04:00:: 00184981 1 0 -castle%1:04:00:: 00166552 4 0 -castle%1:06:00:: 02980441 2 1 -castle%1:06:01:: 02980625 3 0 -castle%1:06:02:: 03878066 1 3 -castle%2:33:00:: 01077329 1 0 -castle_in_spain%1:09:00:: 05769471 1 0 -castle_in_the_air%1:09:00:: 05769471 1 0 -castled%5:00:00:fancy:00 01796109 1 0 -castling%1:04:00:: 00166552 1 0 -castor%1:05:00:: 02362862 5 0 -castor%1:06:00:: 02818135 4 0 -castor%1:06:01:: 02980036 3 0 -castor%1:06:02:: 02980203 2 0 -castor%1:17:00:: 09237749 1 0 -castor-oil_plant%1:20:00:: 12924623 1 0 -castor_bean%1:20:00:: 11689678 1 0 -castor_bean_plant%1:20:00:: 12924623 1 0 -castor_canadensis%1:05:00:: 02363351 1 0 -castor_fiber%1:05:00:: 02363245 1 0 -castor_oil%1:06:00:: 02980841 1 0 -castor_sugar%1:13:00:: 07595751 1 0 -castoridae%1:05:00:: 02362721 1 0 -castoroides%1:05:00:: 02363511 1 0 -castrate%1:18:00:: 10066452 1 0 -castrate%2:29:00:: 00060833 3 0 -castrate%2:29:02:: 00060477 4 0 -castrate%2:30:02:: 00541953 1 0 -castrate%2:30:03:: 00201034 2 0 -castrated%3:00:00:: 02136802 1 0 -castration%1:04:00:: 00692349 1 0 -castration%1:04:01:: 00667847 2 0 -castration%1:04:02:: 00397010 3 0 -castration_anxiety%1:26:00:: 14374764 1 0 -castrato%1:18:00:: 09899534 1 0 -castries%1:15:00:: 08988861 1 0 -castro%1:18:00:: 10886929 1 0 -castroism%1:09:00:: 06215043 1 0 -casual%5:00:00:careless:00 00312234 5 1 -casual%5:00:00:easy:01 00749749 9 0 -casual%5:00:00:irregular:00 01961205 6 0 -casual%5:00:00:unconcerned:00 00545746 1 3 -casual%5:00:01:informal:01 01044557 3 2 -casual%5:00:01:unplanned:00 01798162 4 1 -casual%5:00:02:informal:01 01044730 8 0 -casual%5:00:02:light:02 01190484 7 0 -casual%5:00:02:unplanned:00 01798484 2 2 -casually%4:02:00:: 00243086 2 1 -casually%4:02:01:: 00263893 1 1 -casualness%1:07:00:: 04912240 1 0 -casualty%1:11:01:: 07340094 4 0 -casualty%1:11:02:: 07361717 3 0 -casualty%1:18:00:: 09899671 2 0 -casualty%1:18:01:: 09899782 1 0 -casualty_care_research_center%1:14:00:: 08396760 1 0 -casuaridae%1:05:00:: 01519228 1 0 -casuariiformes%1:05:00:: 01519046 1 0 -casuarina%1:20:00:: 12224978 1 0 -casuarina_equisetfolia%1:20:00:: 12225563 1 0 -casuarinaceae%1:20:00:: 12224522 1 0 -casuarinales%1:20:00:: 12224309 1 0 -casuarius%1:05:00:: 01519401 1 0 -casuist%1:18:00:: 09899929 1 0 -casuistic%3:01:00:: 03053460 2 0 -casuistic%3:01:01:: 03053657 1 0 -casuistical%3:01:00:: 03053460 2 0 -casuistical%3:01:01:: 03053657 1 0 -casuistry%1:09:00:: 06160055 2 0 -casuistry%1:09:01:: 06160244 1 0 -casus_belli%1:11:00:: 07291215 1 0 -cat%1:04:00:: 00901476 8 0 -cat%1:05:00:: 02121620 1 18 -cat%1:05:02:: 02127808 7 0 -cat%1:06:00:: 02985606 5 0 -cat%1:06:01:: 02983507 6 0 -cat%1:06:02:: 03608870 4 0 -cat%1:18:00:: 09900153 3 0 -cat%1:18:01:: 10153414 2 0 -cat%2:29:00:: 00076400 2 0 -cat%2:35:00:: 01411870 1 0 -cat's-claw%1:20:00:: 11764814 1 0 -cat's-ear%1:20:01:: 11984144 2 0 -cat's-ear%1:20:02:: 12446737 1 0 -cat's-paw%1:06:00:: 02985828 2 0 -cat's-paw%1:18:00:: 10209616 1 0 -cat's-tail%1:20:02:: 12155773 1 0 -cat's_cradle%1:04:00:: 00484802 1 0 -cat's_eye%1:27:00:: 14803886 1 0 -cat's_feet%1:20:00:: 11922374 1 0 -cat's_foot%1:20:00:: 11922374 1 0 -cat-o'-nine-tails%1:06:00:: 02985606 1 0 -cat_and_mouse%1:04:00:: 00484532 1 0 -cat_and_rat%1:04:00:: 00484532 1 0 -cat_bear%1:05:00:: 02509815 1 0 -cat_box%1:06:00:: 02982515 1 0 -cat_burglar%1:18:00:: 10188226 1 0 -cat_cracker%1:06:00:: 02981565 1 0 -cat_fancier%1:18:00:: 09901921 1 0 -cat_flea%1:05:00:: 02187279 1 0 -cat_food%1:13:00:: 07806043 1 0 -cat_rig%1:06:00:: 02985758 1 0 -cat_scan%1:06:00:: 04142549 1 0 -cat_scanner%1:06:00:: 03084834 1 0 -cat_scratch_disease%1:26:00:: 14073906 1 0 -cat_shark%1:05:00:: 01488385 1 0 -cat_sleep%1:04:00:: 00858377 1 0 -cat_squirrel%1:05:01:: 02356381 2 0 -cat_squirrel%1:05:02:: 02357111 1 0 -cat_suit%1:06:00:: 03657511 1 0 -cat_thyme%1:20:00:: 12870048 1 0 -cat_valium%1:06:00:: 03606572 1 0 -cata-cornered%5:00:00:oblique:00 01719507 1 0 -catabatic%3:00:00:: 00109782 1 0 -catabatic_wind%1:19:00:: 11443283 1 0 -catabiosis%1:22:00:: 13443709 1 0 -catabolic%3:00:00:: 00107984 2 0 -catabolic%3:01:00:: 02682699 1 0 -catabolise%2:30:00:: 00238720 1 0 -catabolism%1:22:00:: 13443787 1 0 -catabolize%2:30:00:: 00238720 1 0 -catacala%1:05:00:: 02295717 1 0 -catachresis%1:10:00:: 07102034 1 0 -catachrestic%3:01:00:: 02682863 1 0 -catachrestical%3:01:00:: 02682863 1 0 -cataclinal%3:00:00:: 00108434 1 0 -cataclysm%1:11:00:: 07314838 2 0 -cataclysm%1:19:00:: 11434016 1 0 -cataclysmal%5:00:00:destructive:00 00587193 1 0 -cataclysmic%5:00:00:destructive:00 00587193 1 0 -catacomb%1:06:00:: 02981024 1 0 -catacorner%5:00:00:oblique:00 01719507 1 0 -catadromous%3:00:00:: 00109382 1 0 -catafalque%1:06:00:: 02981198 1 0 -cataflam%1:06:00:: 03191967 1 0 -catalan%1:10:00:: 06967529 2 0 -catalan%1:18:00:: 09900284 1 0 -catalan%3:01:00:: 03053859 2 0 -catalan%3:01:01:: 03054020 1 0 -catalase%1:27:00:: 14737639 1 0 -catalatic%3:01:00:: 02683049 1 0 -catalectic%1:10:00:: 06348500 1 0 -catalectic%3:00:00:: 00318082 1 0 -catalepsy%1:26:00:: 14070206 1 0 -cataleptic%1:18:00:: 09900391 1 0 -cataleptic%3:01:00:: 03054216 1 0 -catalexis%1:10:00:: 07094355 1 0 -catalina_cherry%1:20:00:: 12647231 1 0 -catalina_island%1:15:00:: 09066948 1 0 -catalog%1:10:00:: 06416206 1 2 -catalog%1:10:01:: 06487897 2 1 -catalog%2:31:00:: 00652622 2 0 -catalog%2:36:00:: 01626844 1 0 -catalog_buying%1:04:00:: 00082223 1 0 -cataloged_procedure%1:10:00:: 06583178 1 0 -cataloger%1:18:00:: 09900499 1 0 -catalogue%1:10:00:: 06416206 2 0 -catalogue%1:10:01:: 06487897 1 4 -catalogue%2:31:00:: 00652622 1 2 -catalogue%2:36:00:: 01626844 2 1 -cataloguer%1:18:00:: 09900499 1 0 -catalonia%1:15:00:: 09028062 1 0 -catalpa%1:20:00:: 12814643 1 0 -catalpa_bignioides%1:20:00:: 12814857 1 0 -catalpa_speciosa%1:20:00:: 12814960 1 0 -catalufa%1:05:00:: 02571810 1 0 -catalyse%2:30:00:: 00267519 1 0 -catalysis%1:22:00:: 13444131 1 0 -catalyst%1:18:00:: 09900711 2 0 -catalyst%1:27:00:: 14723628 1 0 -catalytic%3:01:00:: 03054409 1 0 -catalytic_converter%1:06:00:: 02981321 1 0 -catalytic_cracker%1:06:00:: 02981565 1 0 -catalytically%4:02:00:: 00077345 1 0 -catalyze%2:30:00:: 00267519 1 0 -catamaran%1:06:00:: 02981792 1 0 -catamenia%1:22:00:: 13513747 1 0 -catamenial%3:01:00:: 02879273 1 0 -catamite%1:18:00:: 09900873 1 0 -catamount%1:05:01:: 02125311 2 0 -catamount%1:05:02:: 02127052 1 0 -catamountain%1:05:00:: 02125081 1 0 -catananche%1:20:00:: 11946727 1 0 -catananche_caerulea%1:20:00:: 11946918 1 0 -cataphasia%1:26:00:: 14401878 1 0 -cataphatic%3:01:00:: 02683160 1 0 -cataphatism%1:09:00:: 05942338 1 0 -cataphoresis%1:22:00:: 13472518 1 0 -cataphoretic%3:01:00:: 02718845 1 0 -cataphract%1:06:00:: 02862048 1 0 -cataphyll%1:20:00:: 11686195 1 0 -cataplasia%1:11:00:: 07428257 1 0 -cataplasm%1:06:00:: 03993403 1 0 -cataplastic%3:01:00:: 02683315 1 0 -catapres%1:06:00:: 03048412 1 0 -catapult%1:06:00:: 02981911 3 0 -catapult%1:06:01:: 04240097 1 0 -catapult%1:06:02:: 02982232 2 0 -catapult%2:35:00:: 01515566 1 2 -catapult%2:35:01:: 01514348 2 1 -catapultian%3:01:00:: 02683419 1 1 -catapultic%3:01:00:: 02683419 1 0 -cataract%1:17:00:: 09237918 2 0 -cataract%1:26:00:: 14254570 1 0 -cataract_canyon%1:17:00:: 09238030 1 0 -cataract_surgery%1:04:00:: 00678425 1 0 -catarrh%1:26:00:: 14339772 1 0 -catarrhal%3:01:00:: 02683650 1 0 -catarrhal_fever%1:26:00:: 14262419 1 0 -catarrhine%1:05:00:: 02484473 1 0 -catarrhine%3:00:00:: 01408738 1 0 -catarrhinian%3:00:00:: 01408738 1 0 -catasetum%1:20:00:: 12049796 1 0 -catasetum_macrocarpum%1:20:00:: 12050014 1 0 -catastrophe%1:11:00:: 07314838 1 3 -catastrophe%1:19:00:: 11434016 3 0 -catastrophe%1:26:00:: 14476290 2 1 -catastrophic%5:00:02:harmful:00 01161635 1 1 -catastrophic_illness%1:26:00:: 14066005 1 0 -catastrophically%4:02:00:: 00132921 1 2 -catatonia%1:26:00:: 14399116 2 0 -catatonia%1:26:01:: 14545045 1 0 -catatonic%3:01:00:: 03054551 1 1 -catatonic_schizophrenia%1:26:00:: 14399116 1 0 -catatonic_type_schizophrenia%1:26:00:: 14399116 1 0 -catawba%1:10:00:: 06908605 3 0 -catawba%1:13:00:: 07759324 2 0 -catawba%1:18:00:: 09651537 1 0 -catbird%1:05:01:: 01587526 2 0 -catbird%1:05:02:: 01600657 1 0 -catboat%1:06:00:: 02982416 1 0 -catbrier%1:20:00:: 12470512 1 0 -catcall%1:10:00:: 07122018 1 2 -catcall%2:32:00:: 01060909 1 0 -catch%1:04:00:: 00138956 9 0 -catch%1:04:01:: 00088725 10 0 -catch%1:04:02:: 00458641 8 0 -catch%1:06:00:: 02982599 7 0 -catch%1:06:02:: 02982790 6 0 -catch%1:07:00:: 05164673 1 1 -catch%1:10:00:: 07067760 5 0 -catch%1:17:00:: 09238143 4 0 -catch%1:18:00:: 09900981 3 0 -catch%1:23:00:: 13755822 2 0 -catch%2:29:10:: 00087988 19 1 -catch%2:30:00:: 00543016 12 2 -catch%2:30:13:: 00460357 29 0 -catch%2:31:00:: 00599835 17 1 -catch%2:31:01:: 00725748 1 19 -catch%2:31:03:: 00589904 18 1 -catch%2:31:10:: 00726009 28 0 -catch%2:33:00:: 01082454 27 0 -catch%2:33:10:: 01155090 11 2 -catch%2:35:00:: 01439190 4 8 -catch%2:35:01:: 01215421 5 8 -catch%2:35:03:: 01480149 8 4 -catch%2:35:06:: 01327816 6 7 -catch%2:35:07:: 01505958 7 6 -catch%2:35:08:: 01328012 16 1 -catch%2:35:11:: 01380366 26 0 -catch%2:35:12:: 01480469 25 0 -catch%2:35:13:: 01401115 3 10 -catch%2:36:12:: 01738107 24 0 -catch%2:37:05:: 01806505 23 0 -catch%2:38:00:: 02018372 9 3 -catch%2:39:00:: 02189168 14 1 -catch%2:39:01:: 02117955 2 14 -catch%2:39:02:: 02150948 15 1 -catch%2:39:09:: 02109645 22 0 -catch%2:39:12:: 02189398 21 0 -catch%2:40:00:: 02248299 10 2 -catch%2:41:13:: 02510905 13 1 -catch%2:43:04:: 02761134 20 0 -catch_a_glimpse%2:39:00:: 02129879 1 2 -catch_a_wink%2:29:00:: 00015498 1 1 -catch_cold%2:29:00:: 00088120 1 0 -catch_crop%1:20:00:: 13086220 1 0 -catch_fire%2:43:00:: 02760622 1 1 -catch_it%2:41:00:: 02500489 1 1 -catch_on%2:30:00:: 00543287 2 1 -catch_on%2:31:00:: 00590366 1 3 -catch_one's_breath%2:32:00:: 00779360 1 1 -catch_out%2:31:00:: 00731574 1 0 -catch_phrase%1:10:00:: 07152463 1 0 -catch_sight%2:39:00:: 02129879 1 0 -catch_some_z's%2:29:00:: 00014742 1 0 -catch_up%2:31:00:: 00598753 2 0 -catch_up%2:38:00:: 01998793 1 2 -catch_up_with%2:33:00:: 01155090 1 9 -catch_up_with%2:41:00:: 02520730 2 2 -catchall%1:06:00:: 02983072 1 0 -catcher%1:04:00:: 00723241 2 0 -catcher%1:18:00:: 09901143 1 15 -catcher's_mask%1:06:00:: 02983189 1 0 -catchfly%1:20:01:: 11811473 2 0 -catchfly%1:20:02:: 11815491 1 0 -catching%1:04:00:: 00126886 1 1 -catching%1:04:01:: 00151087 2 0 -catching%1:04:02:: 00077981 3 0 -catching%5:00:01:infectious:00 01303042 1 0 -catchment%1:06:00:: 02983357 1 0 -catchment_area%1:15:00:: 08518940 1 0 -catchment_basin%1:15:00:: 08518940 1 0 -catchpenny%5:00:00:cheap:00 00934738 1 0 -catchphrase%1:10:00:: 07152463 1 0 -catchweed%1:20:00:: 12666159 1 0 -catchword%1:10:00:: 07152259 1 0 -catchword%1:10:01:: 06291603 2 0 -catchy%5:00:00:appealing:00 00170717 2 0 -catchy%5:00:00:difficult:00 00746819 1 0 -catclaw%1:20:00:: 11764814 1 0 -catechesis%1:04:00:: 00887882 1 0 -catechetic%3:01:00:: 02982288 1 0 -catechetic%3:01:01:: 02982102 2 0 -catechetical%3:01:00:: 02982102 1 0 -catechetical_instruction%1:04:00:: 00888037 1 0 -catechin%1:27:00:: 15067237 1 0 -catechise%2:32:00:: 00787359 2 0 -catechise%2:32:01:: 00787515 1 0 -catechism%1:10:00:: 06412771 2 0 -catechism%1:10:01:: 07194293 1 0 -catechismal%3:01:00:: 02981935 1 0 -catechist%1:18:00:: 09901337 1 0 -catechistic%3:01:00:: 02982288 1 0 -catechize%2:32:00:: 00787359 1 1 -catechize%2:32:01:: 00787515 2 0 -catecholamine%1:27:00:: 14807929 1 1 -catechu%1:20:01:: 11757190 2 0 -catechu%1:20:02:: 11757433 1 0 -catechumen%1:18:00:: 09901502 1 0 -categorem%1:10:00:: 06752410 1 0 -categorematic%3:00:00:: 02592890 1 0 -categoreme%1:10:00:: 06752410 1 0 -categorial%3:01:00:: 02683869 1 0 -categoric%3:01:00:: 02684005 1 0 -categoric%5:00:00:unqualified:02 01913931 2 0 -categorical%3:01:00:: 02684005 1 0 -categorical%5:00:00:unqualified:02 01913931 2 0 -categorical_imperative%1:10:00:: 06656143 1 0 -categorically%4:02:00:: 00087188 1 0 -categorisation%1:04:00:: 01012712 3 0 -categorisation%1:09:00:: 05732756 2 0 -categorisation%1:14:00:: 07939638 1 0 -categorise%2:31:00:: 00657260 1 0 -categorised%5:00:00:classified:01 00414823 1 0 -categorization%1:04:00:: 01012712 3 0 -categorization%1:09:00:: 05732756 2 0 -categorization%1:14:00:: 07939638 1 0 -categorize%2:31:00:: 00657260 1 1 -categorized%5:00:00:classified:01 00414823 1 1 -category%1:09:02:: 05838765 2 3 -category%1:14:00:: 07997703 1 17 -catena%1:14:00:: 08376526 1 0 -catenary%1:25:00:: 13868607 1 0 -catenate%2:35:00:: 01466303 1 0 -catenulate%2:35:00:: 01466303 1 0 -catenulate%5:00:00:formed:00 02146029 1 0 -cater%2:34:00:: 01182709 1 4 -cater%2:34:01:: 01180844 2 0 -cater-cornered%5:00:00:oblique:00 01719507 1 0 -catercorner%5:00:00:oblique:00 01719507 1 0 -caterer%1:18:00:: 09901642 1 1 -catering%1:04:00:: 01104324 1 0 -caterpillar%1:05:00:: 02309337 1 1 -caterpillar%1:06:00:: 02983507 2 0 -caterpillar-tracked%5:00:00:tracked:00 02453770 1 0 -caterpillar_track%1:06:00:: 04464418 1 0 -caterpillar_tread%1:06:00:: 04464418 1 0 -caterwaul%1:11:00:: 07378569 1 0 -caterwaul%2:32:00:: 00914634 1 0 -catfish%1:05:01:: 02517442 3 0 -catfish%1:05:02:: 02616851 2 0 -catfish%1:13:00:: 07780038 1 0 -catgut%1:06:00:: 02983741 2 0 -catgut%1:20:00:: 12572858 1 0 -catha%1:20:00:: 11598100 1 0 -catha_edulis%1:20:00:: 11598287 1 0 -catharacta%1:05:00:: 02044659 1 0 -catharacta_skua%1:05:00:: 02044908 1 0 -catharanthus%1:20:00:: 11772154 1 0 -catharanthus_roseus%1:20:00:: 11772408 1 0 -cathari%1:14:00:: 08085159 1 0 -catharism%1:09:00:: 06227708 1 0 -cathars%1:14:00:: 08085159 1 0 -catharsis%1:04:00:: 00253395 1 4 -catharsis%1:04:01:: 00253577 2 0 -cathartes%1:05:00:: 01619152 1 0 -cathartes_aura%1:05:00:: 01619310 1 0 -cathartic%1:06:00:: 04025748 1 0 -cathartic%5:00:00:emotional:00 00854869 2 0 -cathartic%5:00:00:laxative:00 00638067 3 0 -cathartic%5:00:02:healthful:00 01165830 1 0 -cathartid%1:05:00:: 01618922 1 0 -cathartidae%1:05:00:: 01618671 1 0 -cathay%1:15:00:: 08723006 1 0 -cathaya%1:20:00:: 11629354 1 0 -cathect%2:29:00:: 00023380 1 0 -cathectic%3:01:00:: 02684198 1 0 -cathedra%1:06:00:: 02983904 1 0 -cathedral%1:06:00:: 02984061 1 4 -cathedral%1:06:01:: 02984203 2 0 -cathedral%3:01:00:: 02684317 1 0 -cather%1:18:00:: 10887137 1 0 -catherine%1:18:00:: 10887420 2 0 -catherine%1:18:01:: 10887593 1 0 -catherine_de_medicis%1:18:00:: 10887790 1 0 -catherine_howard%1:18:00:: 11062111 1 0 -catherine_i%1:18:00:: 10887290 1 0 -catherine_ii%1:18:00:: 10887420 1 0 -catherine_of_aragon%1:18:00:: 10887593 1 0 -catherine_parr%1:18:00:: 11224046 1 0 -catherine_the_great%1:18:00:: 10887420 1 0 -catherine_wheel%1:06:00:: 02984328 1 0 -catheter%1:06:00:: 02984469 1 2 -catheterisation%1:04:00:: 00321562 1 0 -catheterise%2:30:00:: 00188721 1 0 -catheterization%1:04:00:: 00321562 1 0 -catheterize%2:30:00:: 00188721 1 0 -cathexis%1:16:00:: 09185612 1 0 -cathode%1:06:00:: 02984699 1 8 -cathode%1:06:01:: 02984937 2 0 -cathode-ray_oscilloscope%1:06:00:: 03857828 1 0 -cathode-ray_tube%1:06:00:: 02985137 1 0 -cathode_ray%1:19:00:: 11428567 1 0 -cathodic%3:01:00:: 02626995 1 0 -catholic%1:18:00:: 09679925 1 25 -catholic%3:01:00:: 02920951 1 25 -catholic%5:00:00:broad-minded:00 00287128 2 0 -catholic_church%1:14:00:: 08083320 1 2 -catholic_pope%1:18:00:: 10453533 1 0 -catholic_reaction_force%1:14:00:: 08024408 1 0 -catholic_school%1:14:00:: 08411369 1 0 -catholicise%2:30:00:: 00386566 1 0 -catholicism%1:09:00:: 06227263 1 5 -catholicity%1:07:00:: 04765691 2 0 -catholicity%1:09:00:: 06227263 1 0 -catholicize%2:30:00:: 00386566 1 0 -catholicon%1:06:00:: 03880770 1 0 -catholicos%1:18:00:: 09901786 1 0 -cathouse%1:06:00:: 04581595 1 0 -cation%1:17:00:: 09238294 1 0 -cationic%3:01:00:: 02930387 1 0 -cationic_detergent%1:27:00:: 14803695 1 0 -catjang_pea%1:20:00:: 12510774 1 0 -catkin%1:20:00:: 11674798 1 7 -catkinate%3:01:00:: 02684482 1 0 -catling%1:06:00:: 02985506 1 0 -catmint%1:20:00:: 12859986 1 0 -catnap%1:04:00:: 00858377 1 0 -catnap%2:29:00:: 00015498 1 0 -catnip%1:20:00:: 12859986 1 0 -catocala_nupta%1:05:00:: 02296021 1 0 -catoptric%3:01:00:: 02684557 1 0 -catoptrical%3:01:00:: 02684557 1 0 -catoptrics%1:09:00:: 06101180 1 0 -catoptrophorus%1:05:00:: 02030709 1 0 -catoptrophorus_semipalmatus%1:05:00:: 02030837 1 0 -catostomid%1:05:00:: 01444783 1 0 -catostomidae%1:05:00:: 01444520 1 0 -catostomus%1:05:00:: 01445173 1 0 -catskill_mountains%1:17:00:: 09238425 1 0 -catskills%1:17:00:: 09238425 1 0 -catsup%1:13:00:: 07822197 1 0 -catsup_bottle%1:06:00:: 02985963 1 0 -cattail%1:20:00:: 12155583 1 0 -cattail_family%1:20:00:: 12155259 1 0 -cattail_millet%1:20:00:: 12128825 1 0 -cattalo%1:05:00:: 02407763 1 0 -cattell%1:18:00:: 10891428 2 0 -cattell%1:18:01:: 10891569 1 0 -cattie%1:23:00:: 13717728 1 0 -cattiness%1:07:00:: 04842515 1 0 -cattish%5:00:00:malicious:00 00225912 1 0 -cattle%1:05:00:: 02402425 1 25 -cattle_boat%1:06:00:: 02986348 1 0 -cattle_breeding%1:04:00:: 00915497 1 0 -cattle_cake%1:13:00:: 07800487 1 0 -cattle_car%1:06:00:: 02986066 1 0 -cattle_drive%1:04:00:: 00317485 1 0 -cattle_egret%1:05:00:: 02010272 1 0 -cattle_farm%1:06:00:: 04052442 1 0 -cattle_grid%1:06:00:: 02986160 1 0 -cattle_guard%1:06:00:: 02986160 1 0 -cattle_pen%1:06:00:: 03124590 1 0 -cattle_plague%1:26:00:: 14272141 1 0 -cattle_ranch%1:06:00:: 04052442 1 0 -cattle_thief%1:18:00:: 10544480 1 1 -cattle_trail%1:06:00:: 02986480 1 0 -cattleman%1:18:00:: 09972661 2 0 -cattleman%1:18:01:: 09902017 1 2 -cattleship%1:06:00:: 02986348 1 0 -cattley_guava%1:20:00:: 12333961 1 0 -cattleya%1:20:00:: 12050533 1 0 -cattleya_citrina%1:20:00:: 12061104 1 0 -catty%1:23:00:: 13717728 1 0 -catty%5:00:00:malicious:00 00225912 1 0 -catty-corner%5:00:00:oblique:00 01719507 1 0 -catty-cornered%5:00:00:oblique:00 01719507 1 0 -catullus%1:18:00:: 10887981 1 0 -catwalk%1:06:00:: 02986605 2 0 -catwalk%1:06:01:: 02986757 1 0 -caucasia%1:15:00:: 08519624 1 0 -caucasian%1:10:00:: 06978180 2 0 -caucasian%1:18:00:: 09638875 1 0 -caucasian%3:01:00:: 02843959 1 0 -caucasian%5:00:00:white:02 00243395 2 0 -caucasian_language%1:10:00:: 06978180 1 0 -caucasian_race%1:18:00:: 09639237 1 0 -caucasian_walnut%1:20:00:: 12322699 1 0 -caucasic%3:01:00:: 02843959 1 0 -caucasoid%5:00:00:white:02 00243395 1 0 -caucasoid_race%1:18:00:: 09639237 1 0 -caucasus%1:15:00:: 08519624 2 0 -caucasus%1:17:00:: 09238674 1 0 -caucasus_mountains%1:17:00:: 09238674 1 0 -caucus%1:14:00:: 08308313 1 0 -caucus%2:41:00:: 02429682 1 1 -cauda%1:08:00:: 05228264 1 0 -caudal%3:01:00:: 02843816 1 0 -caudal%4:02:00:: 00505521 1 0 -caudal%5:00:00:caudate:00 00319965 2 0 -caudal%5:00:00:posterior:00 00131863 3 0 -caudal_anaesthesia%1:26:00:: 14028406 1 0 -caudal_anesthesia%1:26:00:: 14028406 1 0 -caudal_appendage%1:05:00:: 02158213 1 0 -caudal_block%1:26:00:: 14028406 1 0 -caudal_fin%1:05:00:: 02466957 1 0 -caudal_vertebra%1:08:00:: 05589756 1 0 -caudally%4:02:00:: 00505521 1 0 -caudata%1:05:00:: 01628450 1 0 -caudate%1:05:00:: 01628770 2 0 -caudate%1:08:00:: 05497741 1 0 -caudate%3:00:00:: 00319534 1 0 -caudate%5:00:00:simple:01 02167513 2 0 -caudate_nucleus%1:08:00:: 05497741 1 0 -caudated%3:00:00:: 00319534 1 0 -caudex%1:20:01:: 13129078 2 0 -caudex%1:20:02:: 13130305 1 0 -caudine_forks%1:04:00:: 01274374 1 0 -caught_up%5:00:00:involved:00 01515525 1 3 -caul%1:08:00:: 05310596 2 0 -caul%1:08:01:: 05429658 1 0 -cauldron%1:06:00:: 02939185 1 0 -caulescent%3:00:00:: 00321094 1 0 -cauliflower%1:13:00:: 07715103 2 0 -cauliflower%1:20:00:: 11876634 1 0 -cauliflower_ear%1:08:00:: 05324276 1 0 -cauline%3:00:00:: 00318498 2 0 -cauline%3:00:04:: 00321094 1 0 -caulk%1:27:00:: 15014696 1 0 -caulk%2:35:00:: 01354565 1 0 -caulked%3:00:00:: 01399328 1 0 -caulking%1:27:00:: 15014696 1 0 -caulophyllum%1:20:00:: 11698433 1 0 -caulophyllum_thalictrioides%1:20:00:: 11698562 1 0 -caulophyllum_thalictroides%1:20:00:: 11698562 1 0 -causa%1:04:00:: 01182654 1 0 -causal%5:00:00:causative:00 00323199 1 5 -causal_agency%1:03:00:: 00007347 1 0 -causal_agent%1:03:00:: 00007347 1 0 -causal_factor%1:09:00:: 05692419 1 1 -causalgia%1:26:00:: 14325575 1 0 -causality%1:24:00:: 13780606 1 0 -causally%4:02:00:: 00505639 1 1 -causation%1:04:00:: 00042311 1 0 -causative%3:00:00:: 00322457 1 1 -cause%1:03:00:: 00007347 4 4 -cause%1:04:00:: 01182654 5 2 -cause%1:04:01:: 00798245 3 8 -cause%1:10:00:: 06740402 2 9 -cause%1:11:00:: 07326557 1 18 -cause%2:32:00:: 00770437 2 45 -cause%2:36:00:: 01645601 1 110 -cause_celebre%1:11:00:: 07307646 1 0 -cause_of_action%1:10:00:: 06730068 1 0 -cause_of_death%1:26:00:: 14540564 1 0 -cause_to_be_perceived%2:39:00:: 02123903 1 0 -cause_to_sleep%2:29:00:: 00019273 1 0 -causeless%5:00:00:unintended:00 01339203 2 0 -causeless%5:00:00:unmotivated:00 01559042 1 0 -causerie%1:10:00:: 07135080 1 0 -causeway%1:06:00:: 02986920 1 0 -causeway%2:35:00:: 01267742 2 0 -causeway%2:40:00:: 02335904 1 0 -causing%1:04:00:: 00042311 1 0 -caustic%1:27:00:: 15014529 1 0 -caustic%5:00:00:destructive:00 00587376 2 0 -caustic%5:00:00:unpleasant:00 01802165 1 0 -caustic_lime%1:27:00:: 14936010 1 0 -caustic_potash%1:27:00:: 14996843 1 0 -caustic_remark%1:10:00:: 06777164 1 0 -caustic_soda%1:27:00:: 15014990 1 0 -caustically%4:02:00:: 00281950 1 0 -cauterant%1:06:00:: 02987047 1 0 -cauterisation%1:04:00:: 00668112 1 0 -cauterise%2:30:00:: 00373766 1 0 -cauterise%2:30:01:: 00273114 2 0 -cauterization%1:04:00:: 00668112 1 0 -cauterize%2:30:00:: 00373766 1 0 -cauterize%2:30:01:: 00273114 2 0 -cautery%1:04:00:: 00668112 2 0 -cautery%1:06:00:: 02987047 1 0 -caution%1:07:00:: 04664058 1 3 -caution%1:07:01:: 04891184 4 0 -caution%1:09:00:: 05615869 3 2 -caution%1:10:00:: 07225167 2 2 -caution%2:32:00:: 00871195 1 6 -cautionary%5:00:00:dissuasive:00 01771124 2 0 -cautionary%5:00:00:protective:00 01887638 1 0 -cautious%1:14:00:: 07944900 1 1 -cautious%3:00:00:: 00325281 1 2 -cautious%5:00:00:moderate:00 01532149 2 0 -cautious_statement%1:10:00:: 06762602 1 0 -cautiously%4:02:00:: 00282103 1 4 -cautiously%4:02:02:: 00292503 2 0 -cautiousness%1:07:00:: 04664058 1 0 -cavalcade%1:14:00:: 08427918 1 1 -cavalier%1:18:00:: 09902256 1 0 -cavalier%1:18:01:: 09902128 2 0 -cavalier%5:00:00:domineering:00 00788145 1 0 -cavalier_hat%1:06:00:: 02987379 1 0 -cavalierly%4:02:00:: 00282700 1 0 -cavalla%1:05:00:: 02625851 1 0 -cavalry%1:14:00:: 08389710 2 0 -cavalry%1:14:01:: 08397856 1 7 -cavalry_horse%1:05:00:: 02378541 1 0 -cavalry_sword%1:06:00:: 02987492 1 0 -cavalryman%1:18:00:: 09902353 2 1 -cavalryman%1:18:01:: 09902611 1 1 -cave%1:17:00:: 09238926 1 4 -cave%2:31:00:: 00649887 2 0 -cave%2:35:00:: 01283033 1 0 -cave_bat%1:05:00:: 02147591 1 0 -cave_dweller%1:18:00:: 09902731 1 0 -cave_in%1:11:00:: 07361416 1 0 -cave_in%2:38:00:: 01989053 1 2 -cave_man%1:18:00:: 09902731 1 0 -cave_myotis%1:05:00:: 02146879 1 0 -caveat%1:10:01:: 07225167 1 1 -caveat%1:10:02:: 06747907 2 0 -caveat_emptor%1:10:00:: 06663785 1 0 -cavell%1:18:00:: 10888151 1 0 -caveman%1:18:00:: 09902731 1 1 -cavendish%1:18:00:: 10888401 1 0 -cavern%1:17:00:: 09239302 2 1 -cavern%1:17:01:: 09239451 1 1 -cavern%2:35:00:: 01282888 1 0 -cavern_out%2:35:00:: 01282888 1 0 -cavernous%5:00:00:expansive:00 00947012 2 0 -cavernous%5:00:00:hollow:00 02264366 1 0 -cavernous_sinus%1:08:00:: 05252259 1 0 -cavetto%1:06:00:: 02987706 1 0 -cavia%1:05:00:: 02364377 1 0 -cavia_cobaya%1:05:00:: 02364673 1 0 -cavia_porcellus%1:05:00:: 02364840 1 0 -caviar%1:13:00:: 07799579 1 0 -caviare%1:13:00:: 07799579 1 0 -caviidae%1:05:00:: 02364221 1 0 -cavil%1:10:00:: 06761798 1 0 -cavil%2:32:00:: 00808671 1 0 -caviler%1:18:00:: 10501203 1 0 -caviller%1:18:00:: 10501203 1 0 -cavitied%5:00:00:cellular:00 00327690 1 0 -cavity%1:08:00:: 05303402 4 0 -cavity%1:17:00:: 09393108 1 1 -cavity%1:22:00:: 13444513 3 0 -cavity%1:25:00:: 13911517 2 0 -cavity_resonator%1:06:00:: 04080454 1 0 -cavity_wall%1:06:00:: 02987823 1 0 -caviuna_wood%1:20:00:: 12523475 1 0 -cavort%2:38:00:: 01883716 1 3 -cavum%1:08:00:: 05303402 1 0 -cavy%1:05:00:: 02364520 1 0 -caw%1:11:00:: 07378682 1 0 -caw%2:32:00:: 01060065 1 1 -caxton%1:18:00:: 10888644 1 0 -cay%1:17:00:: 09325395 1 0 -cayenne%1:13:00:: 07822518 2 0 -cayenne%1:13:02:: 07721942 3 0 -cayenne%1:20:00:: 12900987 1 0 -cayenne_jasmine%1:20:00:: 11772408 1 0 -cayenne_pepper%1:13:00:: 07822518 2 0 -cayenne_pepper%1:13:02:: 07721942 3 0 -cayenne_pepper%1:20:00:: 12900987 1 0 -cayman%1:05:00:: 01699040 1 0 -cayman_islands%1:15:00:: 08709399 1 0 -cayman_islands_dollar%1:23:00:: 13672967 1 0 -cayuga%1:10:00:: 06916217 2 0 -cayuga%1:18:00:: 09651653 1 0 -cayuga_lake%1:17:00:: 09239581 1 0 -cayuse%1:05:00:: 02382039 1 0 -cazique%1:05:00:: 01573627 1 0 -cbc%1:04:00:: 00652975 1 0 -cbr%1:19:00:: 11441077 1 0 -cc%1:23:00:: 13623636 1 2 -cc%5:00:00:cardinal:00 02198302 1 0 -ccc%5:00:00:cardinal:00 02198409 1 0 -ccrc%1:14:00:: 08396760 1 0 -cd%1:06:00:: 03079230 4 0 -cd%1:21:00:: 13365137 3 0 -cd%1:23:00:: 13641534 2 0 -cd%1:27:00:: 14632444 1 0 -cd%5:00:00:cardinal:00 02198520 1 0 -cd-r%1:06:00:: 02988486 1 0 -cd-rom%1:06:00:: 02988679 1 0 -cd-rom_drive%1:06:00:: 02988963 1 0 -cd-wo%1:06:00:: 02988486 1 0 -cd4%1:27:00:: 14888529 1 0 -cd4_cell%1:08:00:: 05452204 1 0 -cd4_t_cell%1:08:00:: 05452204 1 0 -cd8%1:27:00:: 14888720 1 0 -cd8_cell%1:08:00:: 05452516 1 0 -cd8_t_cell%1:08:00:: 05452516 1 0 -cd_burner%1:06:00:: 03079494 1 0 -cd_drive%1:06:00:: 02988156 1 0 -cd_player%1:06:00:: 02988304 1 0 -cdc%1:14:00:: 08124649 1 0 -cdna%1:27:00:: 14816899 1 0 -ce%1:27:00:: 14633957 1 0 -ce%4:02:00:: 00001981 1 0 -cease%1:28:00:: 15268239 1 0 -cease%2:42:00:: 02680814 1 25 -cease%2:42:13:: 02609764 2 6 -cease-fire%1:26:00:: 13970912 1 0 -cease_and_desist_order%1:10:00:: 06542830 1 0 -ceaseless%5:00:00:continuous:01 00595299 1 2 -ceaselessly%4:02:00:: 00282858 1 0 -ceaselessness%1:07:00:: 05052587 1 0 -cebidae%1:05:00:: 02491590 1 0 -cebu%1:15:00:: 08982037 1 0 -cebu%1:15:01:: 08980640 2 0 -cebu_city%1:15:00:: 08982037 1 0 -cebu_maguey%1:20:00:: 12478131 1 0 -cebuan%1:10:00:: 06940109 2 0 -cebuan%1:18:00:: 09697246 1 0 -cebuano%1:10:00:: 06940109 1 0 -cebuella%1:05:00:: 02490686 1 0 -cebuella_pygmaea%1:05:00:: 02490811 1 0 -cebus%1:05:00:: 02491906 1 0 -cebus_capucinus%1:05:00:: 02492035 1 0 -cecal%3:01:00:: 02684742 1 0 -cecal_appendage%1:08:00:: 05537576 1 0 -cecidomyidae%1:05:00:: 02189214 1 0 -cecil_b._demille%1:18:00:: 10930099 1 0 -cecil_blount_demille%1:18:00:: 10930099 1 0 -cecil_frank_powell%1:18:00:: 11244887 1 0 -cecil_j._rhodes%1:18:00:: 11259054 1 0 -cecil_john_rhodes%1:18:00:: 11259054 1 0 -cecil_rhodes%1:18:00:: 11259054 1 0 -cecil_scott_forester%1:18:00:: 10975404 1 0 -cecity%1:26:00:: 14126660 1 0 -cecropia%1:05:00:: 02303284 2 0 -cecropia%1:20:00:: 12404484 1 0 -cecropia_moth%1:05:00:: 02303284 1 0 -cecropia_peltata%1:20:00:: 12404729 1 0 -cecropiaceae%1:20:00:: 12404314 1 0 -cecum%1:08:00:: 05536370 1 0 -cedar%1:20:01:: 11623105 3 0 -cedar%1:20:02:: 11630017 1 0 -cedar%1:20:03:: 11623304 2 0 -cedar-apple_rust%1:20:00:: 13065514 1 0 -cedar-scented%5:00:00:odorous:00 01056163 1 0 -cedar_chest%1:06:00:: 02989099 1 0 -cedar_elm%1:20:00:: 12406902 1 0 -cedar_mahogany%1:20:00:: 12698027 1 0 -cedar_nut%1:20:00:: 11612235 1 0 -cedar_of_goa%1:20:00:: 11632376 1 0 -cedar_of_lebanon%1:20:00:: 11623815 1 0 -cedar_rapids%1:15:00:: 09086793 1 0 -cedar_tree%1:20:01:: 11623105 2 0 -cedar_tree%1:20:02:: 11630017 1 0 -cedar_waxwing%1:05:00:: 01603812 1 0 -cedarbird%1:05:00:: 01603812 1 0 -cedarn%5:00:00:woody:00 02575952 1 0 -cedarwood%1:20:00:: 11623304 1 0 -cede%2:40:00:: 02235229 2 0 -cede%2:40:01:: 02316649 1 0 -cedi%1:23:00:: 13667048 1 0 -cedilla%1:10:00:: 06822958 1 0 -ceding%1:04:00:: 00213052 1 0 -ceding_back%1:04:00:: 01249991 1 0 -cedrela%1:20:00:: 12697021 1 0 -cedrela_calantas%1:20:00:: 12700357 1 0 -cedrela_odorata%1:20:00:: 12697152 1 0 -cedrus%1:20:00:: 11622988 1 0 -cedrus_atlantica%1:20:00:: 11624192 1 0 -cedrus_deodara%1:20:00:: 11623967 1 0 -cedrus_libani%1:20:00:: 11623815 1 0 -cefadroxil%1:06:00:: 02989178 1 0 -cefobid%1:06:00:: 02989313 1 0 -cefoperazone%1:06:00:: 02989313 1 0 -cefotaxime%1:06:00:: 02989475 1 0 -ceftazidime%1:06:00:: 02989685 1 0 -ceftin%1:06:00:: 02990103 1 0 -ceftriaxone%1:06:00:: 02989893 1 0 -cefuroxime%1:06:00:: 02990103 1 0 -ceiba%1:20:00:: 12190241 1 0 -ceiba_pentandra%1:20:00:: 12190410 1 0 -ceiba_tree%1:20:00:: 12190410 1 0 -ceibo%1:20:00:: 12528549 1 0 -ceilidh%1:11:00:: 07448394 1 0 -ceiling%1:06:00:: 02990373 1 7 -ceiling%1:07:00:: 05132542 2 3 -ceiling%1:07:01:: 05132667 4 0 -ceiling%1:10:00:: 06657646 3 2 -ceilinged%3:00:00:: 01209770 1 0 -celandine%1:20:01:: 11903671 2 0 -celandine%1:20:02:: 12684379 1 0 -celandine_poppy%1:20:00:: 11908846 1 0 -celastraceae%1:20:00:: 12747563 1 0 -celastric_articulatus%1:20:00:: 12748534 1 0 -celastrus%1:20:00:: 12747961 1 0 -celastrus_orbiculatus%1:20:00:: 12748534 1 0 -celastrus_scandens%1:20:00:: 12748248 1 0 -celebes%1:15:00:: 08909107 1 0 -celebrant%1:18:00:: 09902851 2 0 -celebrant%1:18:01:: 09902954 1 2 -celebrate%2:41:00:: 02490877 2 6 -celebrate%2:41:01:: 02578510 1 11 -celebrate%2:41:02:: 02398956 3 2 -celebrated%5:00:00:glorious:00 01121402 2 0 -celebrated%5:00:00:known:00 01375831 1 0 -celebrater%1:18:00:: 09902954 1 0 -celebration%1:04:00:: 00428000 2 1 -celebration%1:04:01:: 00516086 3 0 -celebration%1:11:00:: 07450651 1 5 -celebrator%1:18:00:: 09902954 1 0 -celebratory%3:01:00:: 02684875 1 0 -celebrex%1:06:00:: 02990561 1 0 -celebrity%1:18:00:: 09903153 1 1 -celebrity%1:26:00:: 14437386 2 0 -celecoxib%1:06:00:: 02990561 1 0 -celeriac%1:13:00:: 07730708 2 0 -celeriac%1:20:00:: 12933616 1 0 -celerity%1:07:00:: 05059132 1 1 -celery%1:13:00:: 07730406 2 0 -celery%1:20:00:: 12933403 1 0 -celery-leaved_buttercup%1:20:00:: 11722621 1 0 -celery-topped_pine%1:20:00:: 11650160 1 0 -celery_blight%1:26:00:: 14216546 1 0 -celery_cabbage%1:13:00:: 07714287 2 0 -celery_cabbage%1:20:00:: 11878808 1 0 -celery_pine%1:20:00:: 11649878 1 0 -celery_root%1:13:00:: 07730708 2 0 -celery_root%1:20:00:: 12933616 1 0 -celery_salt%1:13:00:: 07813324 1 0 -celery_seed%1:13:00:: 07828156 1 0 -celery_stick%1:13:00:: 07708685 1 0 -celery_top_pine%1:20:00:: 11650160 1 0 -celesta%1:06:00:: 02990758 1 0 -celestial%3:01:00:: 02684971 2 1 -celestial%3:01:01:: 02685153 1 3 -celestial%5:00:00:heavenly:00 01179345 3 1 -celestial_body%1:17:00:: 09239740 1 1 -celestial_city%1:09:00:: 05628193 1 0 -celestial_equator%1:15:00:: 08520190 1 0 -celestial_globe%1:06:00:: 02990920 1 0 -celestial_guidance%1:04:00:: 00816665 1 0 -celestial_hierarchy%1:14:00:: 08378066 1 0 -celestial_horizon%1:15:00:: 08585846 1 0 -celestial_latitude%1:15:00:: 08632894 1 0 -celestial_longitude%1:15:00:: 08633191 1 0 -celestial_mechanics%1:09:00:: 06097594 1 0 -celestial_navigation%1:04:00:: 00816530 1 0 -celestial_orbit%1:15:00:: 08612049 1 0 -celestial_point%1:15:00:: 08520401 1 0 -celestial_pole%1:15:00:: 08621099 1 0 -celestial_sphere%1:15:00:: 08521267 1 0 -celestite%1:27:00:: 14670061 1 0 -celiac%3:01:00:: 03008885 2 0 -celiac%3:01:01:: 03009016 1 0 -celiac_artery%1:08:00:: 05340317 1 1 -celiac_disease%1:26:00:: 14057828 1 0 -celiac_trunk%1:08:00:: 05340317 1 0 -celibacy%1:04:00:: 01069125 2 0 -celibacy%1:26:00:: 13967507 1 0 -celibate%1:18:00:: 09903367 1 0 -celibate%5:00:00:chaste:00 00360950 1 0 -celiocentesis%1:04:00:: 00943963 1 0 -celioma%1:26:00:: 14237489 1 0 -celioscopy%1:04:00:: 00642325 1 0 -cell%1:03:00:: 00006484 2 44 -cell%1:06:00:: 02991048 3 1 -cell%1:06:01:: 02991302 7 0 -cell%1:06:02:: 02991555 6 0 -cell%1:06:03:: 02991711 1 71 -cell%1:06:04:: 02992529 5 0 -cell%1:14:00:: 08358594 4 0 -cell-free%5:00:00:noncellular:00 00328270 1 4 -cell-like%5:00:00:cellular:00 00327857 1 0 -cell-mediated_immune_response%1:04:00:: 00861199 1 0 -cell_death%1:19:00:: 11486178 1 0 -cell_division%1:22:00:: 13444703 1 0 -cell_doctrine%1:09:00:: 06105609 1 0 -cell_membrane%1:08:00:: 05312782 1 0 -cell_nucleus%1:08:00:: 05434927 1 0 -cell_organ%1:08:00:: 05445668 1 0 -cell_organelle%1:08:00:: 05445668 1 0 -cell_phone%2:32:00:: 00789934 1 0 -cell_theory%1:09:00:: 06105609 1 0 -cell_wall%1:20:00:: 11530283 1 0 -cellar%1:06:00:: 02800497 1 9 -cellar%1:06:01:: 02991847 3 0 -cellar%1:06:02:: 04108137 2 0 -cellarage%1:06:00:: 02991950 2 0 -cellarage%1:21:00:: 13320766 1 0 -cellaret%1:06:00:: 03769610 1 0 -cellblock%1:06:00:: 02992032 1 0 -cellini%1:18:00:: 10888788 1 0 -cellist%1:18:00:: 09903501 1 0 -cello%1:06:00:: 02992211 1 0 -cellophane%1:06:00:: 02992368 1 0 -cellphone%1:06:00:: 02992529 1 0 -cellular%3:00:00:: 00327031 2 0 -cellular%3:01:00:: 02685299 1 0 -cellular_division%1:22:00:: 13444703 1 0 -cellular_inclusion%1:17:00:: 09310806 1 0 -cellular_phone%1:06:00:: 02992529 1 0 -cellular_respiration%1:04:00:: 00830811 1 0 -cellular_slime_mold%1:20:00:: 12976198 1 0 -cellular_telephone%1:06:00:: 02992529 1 0 -cellularity%1:26:00:: 14061462 1 0 -cellulite%1:08:00:: 05269668 1 0 -cellulitis%1:26:00:: 14339914 1 0 -celluloid%1:10:00:: 06262567 2 0 -celluloid%1:27:00:: 14965501 1 0 -celluloid%5:00:00:artificial:00 01572458 1 0 -cellulose%1:27:00:: 14793921 1 5 -cellulose_acetate%1:27:00:: 14965135 1 1 -cellulose_ester%1:27:00:: 14794823 1 0 -cellulose_nitrate%1:27:00:: 14794993 1 0 -cellulose_tape%1:06:00:: 02992795 1 0 -cellulose_triacetate%1:27:00:: 14965321 1 0 -cellulose_xanthate%1:27:00:: 14965780 1 0 -cellulosic%1:27:00:: 14804039 1 0 -cellulosid%3:01:00:: 02686322 1 0 -celom%1:08:00:: 05606801 1 0 -celoma%1:08:00:: 05606801 1 0 -celosia%1:20:00:: 11825013 1 0 -celosia_argentea%1:20:00:: 11825211 1 0 -celosia_argentea_cristata%1:20:00:: 11825351 1 0 -celosia_cristata%1:20:00:: 11825351 1 0 -celsius%1:18:00:: 10888891 1 0 -celsius_scale%1:24:00:: 13852600 1 0 -celt%1:18:00:: 09688008 1 0 -celtic%1:10:00:: 06960298 1 0 -celtic%3:01:00:: 02957823 1 1 -celtic_cross%1:06:00:: 02993081 1 0 -celtic_deity%1:18:00:: 09507097 1 0 -celtic_language%1:10:00:: 06960298 1 0 -celtis%1:20:00:: 12409016 1 0 -celtis_australis%1:20:00:: 12409470 1 0 -celtis_laevigata%1:20:00:: 12409840 1 0 -celtis_occidentalis%1:20:00:: 12409651 1 0 -celtuce%1:13:00:: 07724819 2 0 -celtuce%1:20:00:: 11987349 1 0 -cembalo%1:06:00:: 03496296 1 0 -cembra_nut%1:20:00:: 11612235 1 0 -cembra_nut_tree%1:20:00:: 11612018 1 0 -cement%1:08:00:: 05308810 5 0 -cement%1:27:00:: 14804175 2 2 -cement%1:27:01:: 14704640 3 1 -cement%1:27:03:: 14804487 1 2 -cement%1:27:04:: 14804641 4 0 -cement%2:35:00:: 01366653 3 0 -cement%2:35:01:: 01304076 1 2 -cement%2:35:02:: 01366926 2 0 -cement_mixer%1:06:00:: 03087069 1 0 -cementite%1:27:00:: 14805145 1 0 -cementitious%3:01:00:: 02686439 1 0 -cementum%1:08:00:: 05308810 1 0 -cemetery%1:15:00:: 08521623 1 4 -cenchrus%1:20:00:: 12113471 1 0 -cenchrus_ciliaris%1:20:00:: 12114010 1 0 -cenchrus_tribuloides%1:20:00:: 12113790 1 0 -cenobite%1:18:00:: 10519291 1 0 -cenobitic%3:01:00:: 02686630 1 0 -cenobitical%3:01:00:: 02686630 1 0 -cenogenesis%1:22:00:: 13444940 1 0 -cenogenetic%3:01:00:: 02687191 1 0 -cenotaph%1:06:00:: 02993194 1 0 -cenozoic%1:28:00:: 15124361 1 0 -cenozoic%3:01:00:: 02687333 1 0 -cenozoic_era%1:28:00:: 15124361 1 0 -cense%2:39:00:: 02126686 1 0 -censer%1:06:00:: 02993368 1 0 -censor%1:18:00:: 09903639 2 0 -censor%1:18:01:: 09903936 1 0 -censor%2:31:00:: 00682928 2 0 -censor%2:41:00:: 02493666 1 0 -censored%3:00:00:: 00318942 1 0 -censorial%3:01:00:: 02687578 1 0 -censoring%1:04:00:: 00397347 2 0 -censoring%1:04:01:: 00821083 1 0 -censorious%5:00:00:critical:01 00648089 1 0 -censorship%1:04:00:: 00397347 2 0 -censorship%1:04:01:: 00821083 1 1 -censurable%5:00:00:guilty:00 01321529 1 0 -censure%1:10:00:: 06709998 1 1 -censure%1:26:00:: 14413993 2 0 -censure%2:32:00:: 00823669 1 0 -census%1:04:00:: 00653388 1 1 -census%2:32:00:: 00948707 1 0 -census_bureau%1:14:00:: 08129621 1 0 -census_taker%1:18:00:: 09904057 1 0 -cent%1:21:00:: 13390626 2 2 -cent%1:23:00:: 13664521 1 15 -cental%1:23:00:: 13721177 1 0 -centare%1:23:00:: 13613294 1 0 -centas%1:23:00:: 13701703 1 0 -centaur%1:17:00:: 09240051 2 0 -centaur%1:18:00:: 09493043 1 0 -centaurea%1:20:00:: 11947079 1 0 -centaurea_americana%1:20:00:: 11947429 1 0 -centaurea_cineraria%1:20:00:: 11947629 1 0 -centaurea_cyanus%1:20:00:: 11947802 1 0 -centaurea_gymnocarpa%1:20:00:: 11947629 1 0 -centaurea_imperialis%1:20:00:: 11948469 1 0 -centaurea_moschata%1:20:00:: 11918808 1 0 -centaurea_nigra%1:20:00:: 11948656 1 0 -centaurea_scabiosa%1:20:00:: 11948864 1 0 -centaurea_solstitialis%1:20:00:: 11949015 1 0 -centauria_calcitrapa%1:20:00:: 11948044 1 0 -centaurium%1:20:00:: 12290522 1 0 -centaurium_calycosum%1:20:00:: 12290975 1 0 -centaurium_minus%1:20:00:: 12291143 1 0 -centaurium_scilloides%1:20:00:: 12291292 1 0 -centaurus%1:17:00:: 09240051 1 0 -centaury%1:20:01:: 11947251 2 0 -centaury%1:20:02:: 12290748 1 0 -centavo%1:23:00:: 13665256 1 0 -centenarian%1:18:00:: 09904208 1 0 -centenarian%5:00:00:old:02 01645048 1 0 -centenary%1:28:00:: 15251336 1 0 -centenary%3:01:00:: 02998988 1 1 -centennial%1:28:00:: 15251336 1 1 -centennial%3:01:00:: 02998988 1 0 -centennial_state%1:15:00:: 09067277 1 0 -centennially%4:02:00:: 00283454 1 0 -center%1:04:01:: 00725506 18 0 -center%1:04:02:: 00727500 17 0 -center%1:04:03:: 00728464 16 0 -center%1:06:00:: 02993546 3 6 -center%1:06:01:: 03965456 15 0 -center%1:06:02:: 02994219 2 10 -center%1:08:00:: 05463533 7 3 -center%1:09:00:: 05921123 5 3 -center%1:09:01:: 05812038 6 3 -center%1:13:00:: 07602650 14 0 -center%1:14:00:: 08416523 12 1 -center%1:14:01:: 08481832 8 2 -center%1:15:00:: 08521816 4 5 -center%1:15:01:: 08523483 1 56 -center%1:15:02:: 08514034 11 1 -center%1:18:00:: 09904321 10 1 -center%1:18:01:: 09904556 9 1 -center%1:18:02:: 09904708 13 0 -center%2:31:00:: 00722232 2 5 -center%2:38:00:: 01852701 3 0 -center%2:42:00:: 02676496 1 11 -center%3:00:00:: 02031624 2 0 -center%5:00:00:central:01 00330506 1 2 -center_bit%1:06:00:: 02993877 1 0 -center_field%1:04:00:: 00724684 2 0 -center_field%1:06:00:: 02994219 1 0 -center_fielder%1:18:00:: 10387476 1 0 -center_for_disease_control_and_prevention%1:14:00:: 08124649 1 0 -center_line%1:25:00:: 13871967 1 1 -center_of_attention%1:09:00:: 05812038 1 0 -center_of_buoyancy%1:15:00:: 08522287 1 0 -center_of_curvature%1:07:00:: 05102764 1 0 -center_of_flotation%1:15:00:: 08522742 1 0 -center_of_gravity%1:15:00:: 08522518 1 0 -center_of_immersion%1:15:00:: 08522287 1 0 -center_of_mass%1:15:00:: 08522872 1 0 -center_on%2:42:00:: 02676496 1 7 -center_on%2:42:01:: 02723445 2 1 -center_punch%1:06:00:: 02994573 1 0 -center_punch%2:35:00:: 01443740 1 2 -center_spread%1:10:00:: 06258228 1 0 -center_stage%1:15:00:: 08524021 2 0 -center_stage%1:26:00:: 13948654 1 0 -centerboard%1:06:00:: 02994012 1 0 -centered%5:00:00:central:01 00330644 1 2 -centerfield%1:04:00:: 00724684 2 0 -centerfield%1:06:00:: 02994219 1 2 -centerfielder%1:18:00:: 10387476 1 0 -centerfold%1:10:00:: 06258361 1 0 -centering%1:04:00:: 00120943 2 0 -centering%1:09:00:: 05704694 1 1 -centerline%1:25:00:: 13871967 1 0 -centerpiece%1:06:00:: 02994419 2 0 -centerpiece%1:09:00:: 05851330 1 0 -centesimal%3:01:00:: 02687727 1 0 -centesimal%5:00:00:ordinal:00 02209423 2 0 -centesimo%1:23:00:: 13664808 1 0 -centesis%1:04:00:: 00943187 1 0 -centigrade%3:01:00:: 02687822 1 0 -centigrade_scale%1:24:00:: 13852600 1 0 -centigrade_thermometer%1:06:00:: 02994743 1 0 -centile%1:09:00:: 05737752 1 0 -centiliter%1:23:00:: 13623856 1 0 -centilitre%1:23:00:: 13623856 1 0 -centime%1:21:00:: 13390626 2 0 -centime%1:23:00:: 13665965 1 0 -centimeter%1:23:00:: 13658828 1 3 -centimetre%1:23:00:: 13658828 1 0 -centimo%1:23:00:: 13665027 1 0 -centipede%1:05:00:: 01784675 1 0 -centner%1:23:01:: 13721177 3 0 -centner%1:23:02:: 13725108 2 0 -centner%1:23:03:: 13725271 1 0 -central%1:06:00:: 02994858 1 0 -central%3:00:01:: 00329831 2 7 -central%5:00:00:important:00 01277097 1 11 -central_africa%1:15:00:: 08718577 1 0 -central_african_republic%1:15:00:: 08718577 1 0 -central_african_republic_franc%1:23:00:: 13677337 1 0 -central_america%1:14:00:: 08173165 2 0 -central_america%1:15:00:: 08735705 1 0 -central_american%1:18:00:: 09697401 1 0 -central_american%3:01:00:: 03004196 1 1 -central_american_country%1:15:00:: 08703035 1 0 -central_american_nation%1:15:00:: 08703035 1 0 -central_american_strap_fern%1:20:00:: 13175074 1 0 -central_artery_of_the_retina%1:08:00:: 05340599 1 0 -central_bank%1:14:00:: 08349916 1 0 -central_body%1:08:00:: 05446767 1 0 -central_chimpanzee%1:05:00:: 02482474 1 0 -central_city%1:15:00:: 08524130 1 13 -central_dravidian%1:10:00:: 06981498 1 0 -central_gyrus%1:08:00:: 05492655 1 0 -central_heating%1:06:00:: 02995151 1 1 -central_intelligence_agency%1:14:00:: 08124971 1 0 -central_intelligence_machinery%1:14:00:: 08342670 1 0 -central_nervous_system%1:08:00:: 05480794 1 1 -central_office%1:06:00:: 03504723 1 0 -central_park%1:15:00:: 09121230 1 0 -central_powers%1:14:00:: 08171415 1 0 -central_processing_unit%1:06:00:: 02995345 1 0 -central_processor%1:06:00:: 02995345 1 0 -central_scotoma%1:26:00:: 14556552 1 0 -central_standard_time%1:28:00:: 15132201 1 0 -central_sulcus%1:08:00:: 05223823 1 0 -central_thai%1:10:00:: 06936149 1 0 -central_time%1:28:00:: 15132201 1 0 -central_vein_of_retina%1:08:00:: 05360678 1 0 -central_vein_of_suprarenal_gland%1:08:00:: 05360880 1 0 -central_veins_of_liver%1:08:00:: 05360470 1 0 -central_vision%1:09:00:: 05656160 1 0 -centralisation%1:04:00:: 01237872 1 0 -centralisation%1:04:01:: 01015175 2 0 -centralise%2:30:00:: 00405236 1 0 -centralised%3:00:00:: 01107751 1 0 -centralising%3:00:00:: 00334702 1 0 -centralism%1:09:00:: 05986822 1 0 -centralist%3:01:00:: 02688016 1 0 -centralistic%3:01:00:: 02688016 1 0 -centrality%1:07:00:: 05078025 1 0 -centralization%1:04:00:: 01237872 1 1 -centralization%1:04:01:: 01015175 2 0 -centralize%2:30:00:: 00405236 1 2 -centralized%3:00:00:: 01107751 1 2 -centralizing%3:00:00:: 00334702 1 0 -centrally%4:02:00:: 00114750 1 5 -centranthus%1:20:00:: 12950984 1 0 -centranthus_ruber%1:20:00:: 12951146 1 0 -centrarchid%1:05:00:: 02562315 1 0 -centrarchidae%1:05:00:: 02562085 1 0 -centre%1:06:00:: 02993546 9 0 -centre%1:08:00:: 05463533 8 0 -centre%1:09:00:: 05921123 6 0 -centre%1:09:01:: 05812038 7 0 -centre%1:13:00:: 07602650 5 0 -centre%1:15:00:: 08521816 3 0 -centre%1:15:01:: 08523483 2 0 -centre%1:15:02:: 08941426 1 0 -centre%1:15:03:: 08514034 4 0 -centre%2:31:00:: 00722232 2 0 -centre%2:38:00:: 01852701 1 0 -centre_bit%1:06:00:: 02993877 1 0 -centre_for_international_crime_prevention%1:14:00:: 08302468 1 0 -centre_of_attention%1:09:00:: 05812038 1 0 -centre_of_buoyancy%1:15:00:: 08522287 1 0 -centre_of_curvature%1:07:00:: 05102764 1 0 -centre_of_flotation%1:15:00:: 08522742 1 0 -centre_of_gravity%1:15:00:: 08522518 1 0 -centre_of_immersion%1:15:00:: 08522287 1 0 -centre_of_mass%1:15:00:: 08522872 1 0 -centre_spread%1:10:00:: 06258228 1 0 -centre_stage%1:15:00:: 08524021 2 0 -centre_stage%1:26:00:: 13948654 1 0 -centreboard%1:06:00:: 02994012 1 0 -centrefold%1:10:00:: 06258361 1 0 -centrepiece%1:06:00:: 02994419 2 0 -centrepiece%1:09:00:: 05851330 1 0 -centrex%1:06:00:: 02995770 1 0 -centric%5:00:00:central:01 00330728 1 0 -centrical%5:00:00:central:01 00330728 1 0 -centrifugal%3:00:00:: 00332375 1 0 -centrifugal%5:00:00:decentralizing:00 00335225 2 0 -centrifugal%5:00:00:efferent:00 00334245 3 0 -centrifugal_force%1:19:00:: 11434594 1 0 -centrifugal_pump%1:06:00:: 02995871 1 0 -centrifugate%2:38:00:: 02047263 1 0 -centrifugation%1:22:00:: 13445296 1 2 -centrifuge%1:06:00:: 02995998 1 2 -centrifuge%2:38:00:: 02047263 1 8 -centriole%1:08:00:: 05446181 1 0 -centripetal%3:00:00:: 00332869 1 0 -centripetal%5:00:00:afferent:00 00333611 3 0 -centripetal%5:00:00:centralizing:00 00334852 2 0 -centripetal_acceleration%1:28:00:: 15276023 1 0 -centripetal_force%1:19:00:: 11434747 1 0 -centriscidae%1:05:00:: 01457276 1 0 -centrism%1:09:00:: 06214379 1 0 -centrist%1:18:00:: 09904837 1 0 -centrist%5:00:00:center:00 02031810 1 0 -centrocercus%1:05:00:: 01797472 1 0 -centrocercus_urophasianus%1:05:00:: 01797601 1 0 -centroid%1:15:00:: 08523217 1 0 -centroidal%3:01:00:: 02688131 1 0 -centrolobium%1:20:00:: 11749462 1 0 -centrolobium_robustum%1:20:00:: 11749603 1 0 -centromere%1:08:00:: 05444324 1 0 -centromeric%3:01:00:: 03139930 1 0 -centropistes_striata%1:05:00:: 02567772 1 0 -centropomidae%1:05:00:: 02559606 1 0 -centropomus%1:05:00:: 02559974 1 0 -centropristis%1:05:00:: 02567484 1 0 -centropristis_philadelphica%1:05:00:: 02567633 1 0 -centropus%1:05:00:: 01824443 1 0 -centropus_phasianinus%1:05:00:: 01824862 1 0 -centropus_sinensis%1:05:00:: 01824749 1 0 -centrosema%1:20:00:: 12512947 1 0 -centrosema_virginianum%1:20:00:: 12513172 1 0 -centrosome%1:08:00:: 05446767 1 0 -centrosomic%3:01:00:: 02688263 1 0 -centrospermae%1:20:00:: 11804433 1 0 -centrosymmetric%5:00:00:symmetrical:00 02373309 1 0 -centrum%1:08:00:: 05273684 1 0 -centunculus%1:20:00:: 12092766 1 0 -centurion%1:18:00:: 09905050 1 0 -century%1:23:00:: 13750415 2 0 -century%1:28:00:: 15205532 1 103 -century_plant%1:20:00:: 12476510 1 0 -ceo%1:18:00:: 09916348 1 0 -cephalalgia%1:26:00:: 14326607 1 0 -cephalanthera%1:20:00:: 12050766 1 0 -cephalanthera_rubra%1:20:00:: 12051103 1 0 -cephalaspid%1:05:00:: 01475648 1 0 -cephalaspida%1:05:00:: 01475421 1 0 -cephalexin%1:06:00:: 02996249 1 0 -cephalhematoma%1:26:00:: 14318552 1 0 -cephalic%3:01:00:: 02844174 1 0 -cephalic_index%1:24:00:: 13820826 1 0 -cephalic_vein%1:08:00:: 05361123 1 0 -cephalitis%1:26:00:: 14342132 1 0 -cephalobidae%1:05:00:: 01931845 1 0 -cephalochordata%1:05:00:: 01467180 1 0 -cephalochordate%1:05:00:: 01467336 1 0 -cephaloglycin%1:06:00:: 02996570 1 0 -cephalohematoma%1:26:00:: 14318552 1 0 -cephalometry%1:04:00:: 01001923 1 0 -cephalopod%1:05:00:: 01968315 1 0 -cephalopod%3:01:00:: 02688369 1 0 -cephalopod_mollusk%1:05:00:: 01968315 1 0 -cephalopoda%1:05:00:: 01968115 1 0 -cephalopodan%3:01:00:: 02688369 1 0 -cephalopterus%1:05:00:: 01552192 1 0 -cephalopterus_ornatus%1:05:00:: 01552333 1 0 -cephaloridine%1:06:00:: 02996703 1 0 -cephalosporin%1:06:00:: 02996840 1 0 -cephalotaceae%1:20:00:: 12784543 1 0 -cephalotaxaceae%1:20:00:: 11648428 1 0 -cephalotaxus%1:20:00:: 11648617 1 0 -cephalothin%1:06:00:: 02997292 1 0 -cephalotus%1:20:00:: 12784738 1 0 -cephalotus_follicularis%1:20:00:: 12784889 1 0 -cepheus%1:17:00:: 09240272 2 0 -cepheus%1:18:00:: 09497641 1 0 -cepphus%1:05:00:: 02046613 1 0 -cepphus_columba%1:05:00:: 02047045 1 0 -cepphus_grylle%1:05:00:: 02046939 1 0 -cer%1:09:00:: 05759017 1 0 -cerambycidae%1:05:00:: 02168542 1 0 -ceramic%1:06:00:: 02997391 1 0 -ceramic%3:01:00:: 03015441 1 1 -ceramic_ware%1:06:00:: 02997607 1 0 -ceramicist%1:18:00:: 10460806 1 0 -ceramics%1:04:00:: 00935247 1 0 -ceramist%1:18:00:: 10460806 1 0 -cerapteryx%1:05:00:: 02296150 1 0 -cerapteryx_graminis%1:05:00:: 02296276 1 0 -ceras%1:05:00:: 01954004 1 0 -cerastes%1:05:00:: 01753488 1 0 -cerastes_cornutus%1:05:00:: 01753488 1 0 -cerastium%1:20:00:: 11806975 1 0 -cerastium_alpinum%1:20:00:: 11807696 1 0 -cerastium_arvense%1:20:00:: 11807367 1 0 -cerastium_tomentosum%1:20:00:: 11807525 1 0 -cerate%1:06:00:: 02997773 1 0 -ceratin%1:27:00:: 14732472 1 0 -ceratitis%1:05:00:: 02197048 1 0 -ceratitis_capitata%1:05:00:: 02197185 1 0 -ceratodontidae%1:05:00:: 02516427 1 0 -ceratodus%1:05:00:: 02516776 1 0 -ceratonia%1:20:00:: 12493090 1 0 -ceratonia_siliqua%1:20:00:: 12493208 1 0 -ceratopetalum%1:20:00:: 12787196 1 0 -ceratopetalum_gummiferum%1:20:00:: 12787364 1 0 -ceratophyllaceae%1:20:00:: 11701903 1 0 -ceratophyllum%1:20:00:: 11702081 1 0 -ceratopogon%1:05:00:: 02202878 1 0 -ceratopogonidae%1:05:00:: 02202509 1 0 -ceratopsia%1:05:00:: 01703341 1 0 -ceratopsian%1:05:00:: 01703569 1 0 -ceratopsidae%1:05:00:: 01703866 1 0 -ceratopteris%1:20:00:: 13171649 1 0 -ceratopteris_pteridioides%1:20:00:: 13171797 1 0 -ceratopteris_thalictroides%1:20:00:: 13171975 1 0 -ceratosaur%1:05:00:: 01712752 1 0 -ceratosaurus%1:05:00:: 01712752 1 0 -ceratostomataceae%1:20:00:: 12964572 1 0 -ceratostomella%1:20:00:: 12964750 1 0 -ceratostomella_ulmi%1:20:00:: 12964920 1 0 -ceratotherium%1:05:00:: 02392710 1 0 -ceratotherium_simum%1:05:00:: 02392824 1 0 -ceratozamia%1:20:00:: 11602478 1 0 -cerberus%1:18:00:: 09493204 1 0 -cercaria%1:05:00:: 01925916 1 0 -cercarial%3:01:00:: 02688523 1 0 -cercidiphyllaceae%1:20:00:: 11702428 1 0 -cercidiphyllum%1:20:00:: 11702566 1 0 -cercidiphyllum_japonicum%1:20:00:: 11702713 1 0 -cercidium%1:20:00:: 12493699 1 0 -cercidium_floridum%1:20:00:: 12498055 1 0 -cercis%1:20:00:: 12513426 1 0 -cercis_canadensis%1:20:00:: 12513933 1 0 -cercis_occidentalis%1:20:00:: 12514138 1 0 -cercocebus%1:05:00:: 02485865 1 0 -cercopidae%1:05:00:: 02257536 1 0 -cercopithecidae%1:05:00:: 02483915 1 0 -cercopithecus%1:05:00:: 02484813 1 0 -cercopithecus_aethiops%1:05:00:: 02485371 1 0 -cercopithecus_aethiops_pygerythrus%1:05:00:: 02485536 1 0 -cercopithecus_aethiops_sabaeus%1:05:00:: 02485688 1 0 -cercopithecus_talapoin%1:05:00:: 02485225 1 0 -cercospora%1:20:00:: 13080674 1 0 -cercospora_kopkei%1:20:00:: 13080866 1 0 -cercosporella%1:20:00:: 13079775 1 0 -cere%1:05:00:: 01758637 1 0 -cere%2:35:00:: 01283893 1 0 -cereal%1:13:00:: 07702796 3 0 -cereal%1:13:01:: 07802417 2 0 -cereal%1:20:00:: 12141495 1 0 -cereal%3:01:00:: 02688623 1 0 -cereal_bowl%1:06:00:: 02997910 1 0 -cereal_box%1:06:00:: 02998003 1 0 -cereal_grass%1:20:00:: 12141495 1 0 -cereal_oat%1:20:00:: 12110085 1 0 -cerebellar%3:01:00:: 02688833 1 0 -cerebellar_artery%1:08:00:: 05340795 1 0 -cerebellar_hemisphere%1:08:00:: 05485856 1 0 -cerebellar_vein%1:08:00:: 05361278 1 0 -cerebellum%1:08:00:: 05485554 1 1 -cerebral%3:00:00:: 01927455 1 2 -cerebral%3:01:00:: 02688974 2 1 -cerebral_aneurysm%1:26:00:: 14107653 1 0 -cerebral_aqueduct%1:08:00:: 05503401 1 0 -cerebral_artery%1:08:00:: 05341206 1 0 -cerebral_cortex%1:08:00:: 05486510 1 2 -cerebral_death%1:19:00:: 11487078 1 0 -cerebral_edema%1:26:00:: 14317064 1 0 -cerebral_hemisphere%1:08:00:: 05476915 1 0 -cerebral_hemorrhage%1:26:00:: 14370391 1 0 -cerebral_mantle%1:08:00:: 05486510 1 0 -cerebral_palsy%1:26:00:: 14094653 1 1 -cerebral_peduncle%1:08:00:: 05476754 1 0 -cerebral_thrombosis%1:26:00:: 14102347 1 0 -cerebral_vein%1:08:00:: 05361391 1 0 -cerebrally%4:02:00:: 00133321 2 0 -cerebrally%4:02:01:: 00133413 1 0 -cerebrate%2:31:00:: 00628491 1 1 -cerebration%1:09:00:: 05770926 1 0 -cerebromeningitis%1:26:00:: 14343411 1 0 -cerebrospinal%3:01:00:: 02689112 1 0 -cerebrospinal_fever%1:26:00:: 14138364 1 0 -cerebrospinal_fluid%1:08:00:: 05504107 1 0 -cerebrospinal_meningitis%1:26:00:: 14138364 1 0 -cerebrovascular%3:01:00:: 02689256 1 0 -cerebrovascular_accident%1:26:00:: 14082303 1 0 -cerebrum%1:08:00:: 05491993 1 0 -cerecloth%1:06:00:: 02998107 1 0 -cerement%1:06:00:: 03879116 1 0 -ceremonial%1:11:00:: 07450842 1 0 -ceremonial%5:00:00:formal:01 01042491 1 0 -ceremonial_dance%1:04:00:: 00541479 1 0 -ceremonial_occasion%1:11:00:: 07450842 1 0 -ceremonially%4:02:00:: 00220669 2 0 -ceremonially%4:02:01:: 00220966 1 1 -ceremonious%3:01:00:: 02782367 1 0 -ceremonious%5:00:00:formal:01 01042703 2 0 -ceremoniously%4:02:00:: 00220966 1 0 -ceremoniousness%1:07:00:: 04911777 1 0 -ceremony%1:04:00:: 01027379 3 2 -ceremony%1:04:01:: 01026897 2 4 -ceremony%1:11:00:: 07450842 1 9 -ceres%1:17:00:: 09240409 2 0 -ceres%1:18:00:: 09558756 1 0 -ceresin%1:27:00:: 14805322 1 0 -cereus%1:20:00:: 11844651 1 0 -ceric%3:01:00:: 02689542 1 0 -ceriman%1:13:00:: 07746749 2 0 -ceriman%1:20:00:: 11789589 1 0 -cerise%1:07:00:: 04964443 1 0 -cerise%5:00:00:chromatic:00 00381097 1 0 -cerium%1:27:00:: 14633957 1 0 -cerivastatin%1:06:00:: 02998209 1 0 -cernuous%5:00:00:unerect:00 01238486 1 0 -cero%1:05:00:: 02626265 1 0 -cero%1:05:02:: 02625851 2 0 -cerotic_acid%1:27:00:: 14610548 1 0 -cerous%3:01:00:: 02689658 1 0 -ceroxylon%1:20:00:: 12587366 1 0 -ceroxylon_alpinum%1:20:00:: 12587487 1 0 -ceroxylon_andicola%1:20:00:: 12587487 1 0 -cert%1:07:00:: 04753799 1 0 -certain%3:00:01:: 00335421 3 8 -certain%3:00:02:: 00336831 2 16 -certain%3:00:03:: 00340239 4 4 -certain%3:00:05:: 02087342 5 0 -certain%5:00:00:careful:00 00309740 7 0 -certain%5:00:00:definite:00 00700884 1 131 -certain%5:00:00:reliable:00 00724397 6 0 -certainly%4:02:00:: 00144722 1 55 -certainty%1:07:00:: 04753455 2 1 -certainty%1:09:00:: 05697135 1 3 -certhia%1:05:00:: 01589582 1 0 -certhia_americana%1:05:00:: 01589718 1 0 -certhia_familiaris%1:05:00:: 01589893 1 0 -certhiidae%1:05:00:: 01589125 1 0 -certifiable%5:00:00:certified:00 00342488 2 0 -certifiable%5:00:00:insane:00 02075594 1 0 -certificate%1:10:00:: 06471345 1 3 -certificate%1:21:00:: 13416345 2 0 -certificate%2:32:00:: 00804002 2 0 -certificate%2:40:00:: 02262139 1 0 -certificate_of_deposit%1:21:00:: 13365137 1 0 -certificate_of_incorporation%1:10:00:: 06476741 1 0 -certificate_of_indebtedness%1:21:00:: 13398241 1 0 -certificated%5:00:00:certified:00 00342626 1 0 -certification%1:04:00:: 01139830 1 2 -certification%1:04:01:: 00154233 4 0 -certification%1:10:00:: 06650431 2 1 -certification%1:10:01:: 06471345 3 0 -certificatory%5:00:00:supportive:00 02355398 1 0 -certified%3:00:00:: 00342250 1 3 -certified%5:00:00:insane:00 02075594 2 0 -certified%5:00:00:registered:00 01958259 3 0 -certified_check%1:21:00:: 13383090 1 0 -certified_cheque%1:21:00:: 13383090 1 0 -certified_milk%1:13:00:: 07846014 1 0 -certified_public_accountant%1:18:00:: 09905185 1 0 -certify%2:32:00:: 00820976 1 4 -certify%2:32:01:: 00822262 5 0 -certify%2:40:02:: 02349813 2 3 -certify%2:41:00:: 02447793 4 0 -certify%2:41:02:: 02444662 3 2 -certiorari%1:10:00:: 06553631 1 1 -certitude%1:09:00:: 05697789 1 1 -cerulean%1:07:00:: 04969242 1 0 -cerulean%5:00:00:chromatic:00 00370267 1 0 -cerulean_blue%1:27:00:: 14805412 1 1 -cerumen%1:27:00:: 15095103 1 0 -ceruminous%3:01:00:: 02689782 1 0 -ceruse%1:27:00:: 15097722 1 0 -cerussite%1:27:00:: 14670178 1 0 -cervantes%1:18:00:: 10889032 1 0 -cervantes_saavedra%1:18:00:: 10889032 1 0 -cervical%3:01:00:: 02689430 2 0 -cervical%3:01:01:: 02927169 1 0 -cervical_artery%1:08:00:: 05341920 1 0 -cervical_canal%1:08:00:: 05519559 1 0 -cervical_cap%1:06:00:: 02998363 1 0 -cervical_disc_syndrome%1:26:00:: 14304722 1 0 -cervical_glands%1:08:00:: 05524062 1 0 -cervical_glands_of_the_uterus%1:08:00:: 05524062 1 0 -cervical_nerve%1:08:00:: 05569427 1 0 -cervical_plexus%1:08:00:: 05506507 1 0 -cervical_root_syndrome%1:26:00:: 14304722 1 0 -cervical_smear%1:08:00:: 05266239 1 0 -cervical_vein%1:08:00:: 05363270 1 0 -cervical_vertebra%1:08:00:: 05588551 1 0 -cervicitis%1:26:00:: 14340091 1 0 -cervicofacial_actinomycosis%1:26:00:: 14254397 1 0 -cervid%1:05:00:: 02430045 1 0 -cervidae%1:05:00:: 02429695 1 0 -cervine%3:01:00:: 02689889 1 0 -cervix%1:08:01:: 05546540 1 0 -cervix%1:08:02:: 05303232 2 0 -cervix_uteri%1:08:00:: 05303232 1 0 -cervus%1:05:00:: 02430929 1 0 -cervus_elaphus%1:05:00:: 02431122 1 0 -cervus_elaphus_canadensis%1:05:00:: 02431785 1 0 -cervus_nipon%1:05:00:: 02431976 1 0 -cervus_sika%1:05:00:: 02431976 1 0 -cervus_unicolor%1:05:00:: 02431628 1 0 -ceryle%1:05:00:: 01827948 1 0 -ceryle_alcyon%1:05:00:: 01828096 1 0 -cesar_chavez%1:18:00:: 10894208 1 0 -cesar_estrada_chavez%1:18:00:: 10894208 1 0 -cesar_franck%1:18:00:: 10978693 1 0 -cesar_ritz%1:18:00:: 11263558 1 0 -cesare_borgia%1:18:00:: 10857849 1 0 -cesarean%1:04:00:: 00185778 1 0 -cesarean%3:01:00:: 03029573 1 0 -cesarean_delivery%1:04:00:: 00185778 1 0 -cesarean_section%1:04:00:: 00185778 1 0 -cesarian%1:04:00:: 00185778 1 0 -cesarian%3:01:00:: 03029573 1 0 -cesarian_section%1:04:00:: 00185778 1 0 -cesium%1:27:00:: 14634232 1 0 -cesium_137%1:27:00:: 14634477 1 0 -cespitose%5:00:00:ungregarious:01 02253817 1 0 -cessation%1:11:00:: 07362075 1 0 -cession%1:04:00:: 00213052 1 0 -cesspit%1:06:00:: 02998563 1 0 -cesspool%1:06:00:: 02998563 1 0 -cestida%1:05:00:: 01920582 1 0 -cestidae%1:05:00:: 01920735 1 0 -cestoda%1:05:00:: 01927301 1 0 -cestode%1:05:00:: 01927456 1 0 -cestrum%1:20:00:: 12902297 1 0 -cestrum_diurnum%1:20:00:: 12902466 1 0 -cestrum_nocturnum%1:20:00:: 12902662 1 0 -cestum%1:05:00:: 01920939 1 0 -cestum_veneris%1:05:00:: 01921059 1 0 -cetacea%1:05:00:: 02062209 1 0 -cetacean%1:05:00:: 02062430 1 0 -cetacean%3:01:00:: 02689973 1 0 -cetacean_mammal%1:05:00:: 02062430 1 0 -cetaceous%3:01:00:: 02689973 1 0 -cetchup%1:13:00:: 07822197 1 0 -ceterach%1:20:00:: 13183251 1 0 -ceterach_officinarum%1:20:00:: 13183489 1 0 -ceteris_paribus%4:02:00:: 00255542 1 0 -cetonia%1:05:00:: 02175440 1 0 -cetonia_aurata%1:05:00:: 02175569 1 0 -cetoniidae%1:05:00:: 02175263 1 0 -cetorhinidae%1:05:00:: 01485306 1 0 -cetorhinus%1:05:00:: 01485073 1 0 -cetorhinus_maximus%1:05:00:: 01485479 1 0 -cetraria%1:20:00:: 12992022 1 0 -cetraria_islandica%1:20:00:: 12992177 1 0 -cetrimide%1:27:00:: 14805550 1 0 -cetus%1:17:00:: 09240507 1 0 -cewa%1:18:00:: 09697771 1 0 -ceylon%1:15:00:: 08718962 1 2 -ceylon%1:15:01:: 08719100 2 0 -ceylon_bowstring_hemp%1:20:00:: 12481289 1 0 -ceylon_cinnamon%1:20:00:: 11704791 1 0 -ceylon_cinnamon_tree%1:20:00:: 11704791 1 0 -ceylon_gooseberry%1:20:00:: 12378963 1 0 -ceylonese%3:01:00:: 03118413 1 0 -ceylonite%1:27:00:: 15051503 1 0 -cezanne%1:18:00:: 10889316 1 0 -cf%1:26:00:: 14155506 2 0 -cf%1:27:00:: 14633037 1 0 -cf%4:02:00:: 00191467 1 0 -cf.%4:02:00:: 00191467 1 0 -cfc%1:27:00:: 14603497 1 0 -cfo%1:18:00:: 09916601 1 0 -cftr%1:08:00:: 05439810 1 0 -cgs%1:23:00:: 13578140 1 0 -cgs_system%1:23:00:: 13578140 1 0 -ch'i%1:26:00:: 14050559 1 0 -ch'in%1:14:00:: 08157182 1 0 -ch'in_dynasty%1:14:00:: 08157182 1 0 -ch'in_shih_huang_ti%1:18:00:: 11250581 1 0 -ch'ing%1:14:00:: 08157405 1 0 -ch'ing_dynasty%1:14:00:: 08157405 1 0 -cha-cha%1:04:00:: 00535557 1 1 -cha-cha%2:38:00:: 01897306 1 0 -cha-cha-cha%1:04:00:: 00535557 1 0 -chabad%1:09:00:: 06234415 2 0 -chabad%1:14:00:: 08475332 1 0 -chabad-lubavitch%1:14:00:: 08475332 1 0 -chabad_hasidism%1:09:00:: 06234415 1 0 -chabasite%1:27:00:: 15107196 1 0 -chabazite%1:27:00:: 15107196 1 0 -chablis%1:13:00:: 07894551 2 0 -chablis%1:15:00:: 08935381 1 0 -chachalaca%1:05:00:: 01800424 1 0 -chachka%1:06:00:: 02998696 2 0 -chachka%1:18:00:: 09905530 1 0 -chacma%1:05:00:: 02486657 1 0 -chacma_baboon%1:05:00:: 02486657 1 0 -chad%1:10:00:: 06986276 4 0 -chad%1:15:00:: 08720037 3 0 -chad%1:17:00:: 09330467 2 0 -chad%1:27:00:: 14805676 1 0 -chadar%1:06:00:: 02998841 1 0 -chaddar%1:06:00:: 02998841 1 0 -chadian%1:18:00:: 09697650 1 0 -chadian%3:01:00:: 03054743 1 0 -chadian_franc%1:23:00:: 13677469 1 0 -chadic%1:10:00:: 06986276 1 0 -chadic_language%1:10:00:: 06986276 1 0 -chadlock%1:20:00:: 11896722 1 0 -chador%1:06:00:: 02998841 1 0 -chaenactis%1:20:00:: 11949857 1 0 -chaenomeles%1:20:00:: 12624249 1 0 -chaenomeles_japonica%1:20:00:: 12624568 1 0 -chaenomeles_speciosa%1:20:00:: 12624721 1 0 -chaenopsis%1:05:00:: 02614288 1 0 -chaenopsis_ocellata%1:05:00:: 02614653 1 0 -chaeronea%1:04:00:: 01274531 1 0 -chaeta%1:05:00:: 01901694 1 0 -chaetal%3:01:00:: 02690153 1 0 -chaetodipterus%1:05:00:: 02604811 1 0 -chaetodipterus_faber%1:05:00:: 02604954 1 0 -chaetodon%1:05:00:: 02605703 1 0 -chaetodontidae%1:05:00:: 02605139 1 0 -chaetognath%1:05:00:: 01923890 1 0 -chaetognatha%1:05:00:: 01923637 1 0 -chaetognathan%3:01:00:: 02690270 1 0 -chaetognathous%3:01:00:: 02690270 1 0 -chafe%1:12:00:: 07518261 2 0 -chafe%1:26:00:: 14333136 1 0 -chafe%2:30:00:: 00373397 6 0 -chafe%2:35:00:: 01253808 4 0 -chafe%2:35:01:: 01250908 5 0 -chafe%2:37:00:: 01787955 3 0 -chafe%2:37:01:: 01788733 2 0 -chafe%2:39:00:: 02119659 1 2 -chafed%5:00:00:painful:00 01712076 1 0 -chafeweed%1:20:00:: 11972959 1 0 -chaff%1:06:00:: 02999001 2 0 -chaff%1:27:00:: 14805899 1 0 -chaff%2:32:00:: 00855295 1 1 -chaffer%2:32:00:: 01038666 2 0 -chaffer%2:40:00:: 02259547 1 0 -chaffinch%1:05:00:: 01530439 1 0 -chafflike%3:01:00:: 02690429 1 0 -chaffweed%1:20:00:: 12092930 1 0 -chaffy%3:01:00:: 02690429 1 0 -chaffy%5:00:00:worthless:00 02502468 2 0 -chafing%1:12:00:: 07496166 1 0 -chafing_dish%1:06:00:: 02999138 1 0 -chafing_gear%1:06:00:: 02999272 1 0 -chaga%1:10:00:: 06993445 1 0 -chagall%1:18:00:: 10889533 1 0 -chagatai%1:10:00:: 06928047 1 0 -chagga%1:10:00:: 06993445 1 0 -chagrin%1:12:00:: 07507742 1 2 -chagrin%2:37:01:: 01799794 1 0 -chagrined%5:00:00:discomposed:00 00531628 1 0 -chahta%1:10:00:: 06912436 1 0 -chaim_azriel_weizmann%1:18:00:: 11380429 1 0 -chaim_soutine%1:18:00:: 11309318 1 0 -chaim_weizmann%1:18:00:: 11380429 1 0 -chain%1:06:00:: 02999410 3 2 -chain%1:06:01:: 02999757 10 0 -chain%1:06:03:: 02999936 5 1 -chain%1:06:04:: 03000021 9 0 -chain%1:14:00:: 08376250 1 14 -chain%1:14:02:: 08057816 4 1 -chain%1:17:00:: 09240621 2 3 -chain%1:17:01:: 09403734 8 0 -chain%1:18:00:: 10891029 7 0 -chain%1:23:00:: 13652994 6 0 -chain%2:35:00:: 01288636 2 0 -chain%2:35:01:: 01464931 1 0 -chain-smoke%2:34:00:: 01198452 1 0 -chain-smoker%1:18:00:: 09905697 1 0 -chain_armor%1:06:00:: 03000247 1 0 -chain_armour%1:06:00:: 03000247 1 0 -chain_fern%1:20:00:: 13186388 1 0 -chain_gang%1:14:00:: 08243248 1 0 -chain_letter%1:10:00:: 06625739 1 0 -chain_lightning%1:19:00:: 11459200 1 0 -chain_mail%1:06:00:: 03000247 1 0 -chain_of_mountains%1:17:00:: 09403734 1 0 -chain_pickerel%1:05:00:: 02561803 1 0 -chain_pike%1:05:00:: 02561803 1 0 -chain_printer%1:06:00:: 03000530 1 0 -chain_reaction%1:22:01:: 13445479 1 2 -chain_reaction%1:22:02:: 13445624 2 0 -chain_reactor%1:06:00:: 02753710 1 0 -chain_saw%1:06:00:: 03000684 1 0 -chain_stitch%1:06:00:: 03000808 2 0 -chain_stitch%1:06:01:: 03000966 1 0 -chain_store%1:06:00:: 03001115 1 1 -chain_tongs%1:06:00:: 03001282 1 0 -chain_up%2:35:00:: 01286436 1 0 -chain_wrench%1:06:00:: 03001540 1 0 -chained%5:00:00:bound:01 00253196 1 0 -chainlike%5:00:00:formed:00 02146029 1 0 -chainlink_fence%1:06:00:: 03000134 1 0 -chains%1:06:00:: 03585438 1 0 -chainsaw%1:06:00:: 03000684 1 0 -chair%1:04:00:: 00598056 2 2 -chair%1:06:00:: 03001627 1 35 -chair%1:06:01:: 03271030 4 0 -chair%1:06:02:: 03002096 5 0 -chair%1:18:00:: 10468962 3 0 -chair%2:32:00:: 00813790 2 0 -chair%2:41:00:: 02440020 1 0 -chair_car%1:06:00:: 03891664 1 0 -chair_lift%1:06:00:: 03002341 1 0 -chair_of_state%1:06:00:: 03002210 1 0 -chairlift%1:06:00:: 03002341 1 0 -chairman%1:18:01:: 10468962 1 8 -chairman%2:41:00:: 02440020 1 0 -chairman_of_the_board%1:18:00:: 09905842 1 1 -chairmanship%1:04:00:: 00590047 1 0 -chairperson%1:18:00:: 10468962 1 0 -chairwoman%1:18:01:: 10468962 1 0 -chaise%1:06:00:: 03002555 2 0 -chaise%1:06:01:: 03002711 1 1 -chaise_longue%1:06:00:: 03002711 1 0 -chait%1:28:00:: 15219694 1 0 -chaja%1:05:00:: 01861330 1 0 -chalaza%1:05:00:: 01460963 2 0 -chalaza%1:20:00:: 11679085 1 0 -chalazion%1:26:00:: 14202520 1 0 -chalcanthite%1:27:00:: 14782252 1 0 -chalcedon%1:14:00:: 08314153 2 0 -chalcedon%1:15:00:: 09041199 1 0 -chalcedony%1:27:00:: 14806333 1 0 -chalcid%1:05:00:: 02217563 1 0 -chalcid_fly%1:05:00:: 02217563 1 0 -chalcid_wasp%1:05:00:: 02217563 1 0 -chalcidae%1:05:00:: 02217334 1 0 -chalcidfly%1:05:00:: 02217563 1 0 -chalcididae%1:05:00:: 02217334 1 0 -chalcis%1:05:00:: 02217997 1 0 -chalcis_fly%1:05:00:: 02218134 1 0 -chalcocite%1:27:00:: 14670344 1 0 -chalcopyrite%1:27:00:: 14670481 1 0 -chalcostigma%1:05:00:: 01834284 1 0 -chaldaea%1:15:00:: 08917881 1 0 -chaldaea%1:15:01:: 08917503 2 0 -chaldaean%1:18:00:: 09640327 2 0 -chaldaean%1:18:01:: 09905965 1 0 -chaldaean%3:01:00:: 02690613 1 0 -chaldea%1:15:00:: 08917881 1 0 -chaldea%1:15:01:: 08917503 2 0 -chaldean%1:18:00:: 09640327 2 0 -chaldean%1:18:01:: 09905965 1 0 -chaldean%3:01:00:: 02690613 1 0 -chaldee%1:18:00:: 09640327 2 0 -chaldee%1:18:01:: 09905965 1 0 -chaldee%3:01:00:: 02690613 1 0 -chaldron%1:23:00:: 13623329 1 0 -chalet%1:06:00:: 03002816 1 0 -chalice%1:06:00:: 03002948 1 0 -chalice_vine%1:20:00:: 12913791 1 0 -chalk%1:06:00:: 03003091 4 0 -chalk%1:06:01:: 03754295 3 0 -chalk%1:07:00:: 04961472 2 0 -chalk%1:27:00:: 14806598 1 0 -chalk%2:36:00:: 01690163 1 0 -chalk_dust%1:27:00:: 14839698 1 0 -chalk_line%1:06:00:: 03003378 1 0 -chalk_out%2:36:00:: 01697628 1 0 -chalk_pit%1:06:00:: 03003548 1 0 -chalk_talk%1:04:00:: 00893402 1 0 -chalk_up%2:32:00:: 00949841 2 1 -chalk_up%2:40:00:: 02321245 1 1 -chalkboard%1:06:00:: 02846511 1 0 -chalkpit%1:06:00:: 03003548 1 0 -chalkstone%1:27:00:: 15085925 1 0 -chalky%3:01:00:: 02673969 1 0 -chalky%5:00:00:achromatic:00 00388571 2 0 -challah%1:13:00:: 07681450 1 0 -challenge%1:10:00:: 07231294 2 3 -challenge%1:10:01:: 07193405 3 1 -challenge%1:10:02:: 07208565 4 0 -challenge%1:10:03:: 07191569 5 0 -challenge%1:26:00:: 13932948 1 5 -challenge%2:32:00:: 00868591 2 7 -challenge%2:32:01:: 00869126 1 12 -challenge%2:32:02:: 00808162 4 1 -challenge%2:32:03:: 00808343 3 1 -challengeable%5:00:00:contestable:00 00590564 1 0 -challenger%1:18:00:: 10533013 1 0 -challenging%5:00:00:difficult:00 00745642 1 3 -challenging%5:00:00:provocative:00 01897106 3 0 -challenging%5:00:00:stimulating:00 02306598 2 0 -challis%1:06:00:: 03003633 1 0 -chalons%1:04:00:: 01274733 1 0 -chalons-sur-marne%1:04:00:: 01274733 1 0 -chalybeate%3:01:00:: 02690922 1 0 -chalybite%1:27:00:: 15039827 1 0 -chamaea%1:05:00:: 01593156 1 0 -chamaea_fasciata%1:05:00:: 01593282 1 0 -chamaecrista%1:20:00:: 12494115 1 0 -chamaecrista_fasciculata%1:20:00:: 12494358 1 0 -chamaecyparis%1:20:00:: 11634970 1 0 -chamaecyparis_lawsoniana%1:20:00:: 11635433 1 0 -chamaecyparis_nootkatensis%1:20:00:: 11635830 1 0 -chamaecyparis_thyoides%1:20:00:: 11635152 1 0 -chamaecytisus%1:20:00:: 12514324 1 0 -chamaecytisus_palmensis%1:20:00:: 12514592 1 0 -chamaedaphne%1:20:00:: 12234176 1 0 -chamaedaphne_calyculata%1:20:00:: 12234318 1 0 -chamaeleo%1:05:00:: 01693995 1 0 -chamaeleo_chamaeleon%1:05:00:: 01694178 1 0 -chamaeleo_oweni%1:05:00:: 01694311 1 0 -chamaeleon%1:05:00:: 01693783 2 0 -chamaeleon%1:17:00:: 09240889 1 0 -chamaeleonidae%1:05:00:: 01693472 1 0 -chamaeleontidae%1:05:00:: 01693472 1 0 -chamaemelum%1:20:00:: 11949217 1 0 -chamaemelum_nobilis%1:20:00:: 11949402 1 0 -chamber%1:06:00:: 03003730 1 6 -chamber%1:06:01:: 02821627 5 0 -chamber%1:06:02:: 03004146 3 1 -chamber%1:08:00:: 05392744 2 1 -chamber%1:14:00:: 08318904 4 0 -chamber%2:42:00:: 02656062 1 1 -chamber_music%1:10:00:: 07026239 1 3 -chamber_of_commerce%1:14:00:: 08319061 1 2 -chamber_orchestra%1:14:00:: 08248411 1 0 -chambered%5:00:00:divided:00 02480631 1 1 -chambered_nautilus%1:05:00:: 01968897 1 0 -chamberlain%1:18:00:: 09906195 2 0 -chamberlain%1:18:01:: 09906079 3 0 -chamberlain%1:18:02:: 10889689 1 0 -chambermaid%1:18:00:: 09906293 1 2 -chamberpot%1:06:00:: 03004275 1 0 -chambers%1:18:00:: 10889905 1 0 -chambray%1:06:00:: 03004409 1 0 -chameleon%1:05:00:: 01693783 3 0 -chameleon%1:17:00:: 09240889 2 0 -chameleon%1:18:00:: 09906449 1 0 -chameleon_tree_frog%1:05:00:: 01651285 1 0 -chamfer%1:06:00:: 02833576 1 0 -chamfer%2:35:00:: 01277649 2 0 -chamfer%2:35:01:: 01583993 1 0 -chamfer_bit%1:06:00:: 03004531 1 0 -chamfer_plane%1:06:00:: 03004620 1 0 -chamfron%1:06:00:: 03005619 1 0 -chammy%1:27:00:: 14761806 1 0 -chammy_leather%1:27:00:: 14761806 1 0 -chamois%1:05:00:: 02419336 2 0 -chamois%1:27:00:: 14761806 1 0 -chamois_cloth%1:06:00:: 03004713 1 0 -chamois_cress%1:20:00:: 11893916 1 0 -chamois_leather%1:27:00:: 14761806 1 0 -chamomile%1:20:00:: 11949402 1 0 -chamosite%1:27:00:: 14806728 1 0 -champ%1:18:00:: 09906704 1 1 -champ%2:34:00:: 01174973 2 0 -champ%2:34:01:: 01175132 1 0 -champagne%1:13:00:: 07893642 1 6 -champagne%1:15:00:: 08941535 2 0 -champagne-ardenne%1:15:00:: 08941535 1 0 -champagne_cup%1:13:00:: 07931001 1 0 -champagne_flute%1:06:00:: 03372549 1 0 -champaign%1:15:00:: 09083255 2 0 -champaign%1:17:00:: 09393605 1 0 -champerty%1:04:00:: 00765488 1 0 -champion%1:18:00:: 09906538 2 1 -champion%1:18:01:: 09906704 1 14 -champion%1:18:02:: 10677713 3 0 -champion%1:18:03:: 09762509 4 0 -champion%2:33:00:: 01149138 1 1 -champion%5:00:00:best:00 00228025 1 0 -champion_lode%1:19:00:: 11445960 1 0 -championship%1:04:00:: 01213886 3 0 -championship%1:11:00:: 07457834 2 0 -championship%1:26:00:: 13948912 1 2 -champlain%1:17:00:: 09330604 2 0 -champlain%1:18:00:: 10890032 1 0 -champleve%5:00:00:adorned:00 00057566 1 0 -champollion%1:18:00:: 10890211 1 0 -champs_elysees%1:15:00:: 08934174 1 0 -chanal%1:20:00:: 12531328 1 0 -chanar%1:20:00:: 12531328 1 0 -chance%1:04:00:: 00802629 3 4 -chance%1:07:00:: 05091770 4 2 -chance%1:19:00:: 11418138 2 8 -chance%1:26:00:: 14483917 1 40 -chance%1:26:01:: 14482968 5 0 -chance%2:40:12:: 02248465 3 0 -chance%2:41:00:: 02544348 2 1 -chance%2:41:01:: 02594102 1 2 -chance%5:00:00:unplanned:00 01798162 1 5 -chance-half_correlation%1:09:00:: 06035674 1 0 -chance-medley%1:04:00:: 00221343 1 0 -chance_event%1:11:00:: 07300960 1 0 -chance_on%2:40:00:: 02286687 1 0 -chance_upon%2:40:00:: 02286687 1 0 -chance_variable%1:09:00:: 05864177 1 0 -chanceful%5:00:00:dangerous:00 02059381 1 0 -chancel%1:06:00:: 03004824 1 1 -chancellery%1:06:00:: 03005033 1 0 -chancellor%1:18:00:: 09906986 2 0 -chancellor%1:18:01:: 09906848 3 0 -chancellor%1:18:02:: 09907408 1 0 -chancellor_of_the_exchequer%1:18:00:: 09907408 1 0 -chancellorship%1:04:00:: 00590148 1 0 -chancellorsville%1:04:00:: 01274909 2 0 -chancellorsville%1:15:00:: 09151963 1 0 -chancery%1:06:00:: 03005147 2 0 -chancery%1:14:00:: 08331011 1 0 -chancre%1:26:00:: 14184067 1 0 -chancroid%1:26:00:: 14212303 1 0 -chancroidal%3:01:00:: 02691028 1 0 -chancrous%3:01:00:: 02691142 1 0 -chancy%5:00:00:dangerous:00 02059381 1 0 -chancy%5:00:00:uncertain:03 00341655 2 0 -chandelier%1:06:00:: 03005285 1 3 -chandelle%1:04:00:: 00169651 1 0 -chandelle%2:38:00:: 01970125 1 1 -chandi%1:18:00:: 09525486 1 0 -chandler%1:18:00:: 09907566 3 0 -chandler%1:18:01:: 09907804 2 0 -chandler%1:18:02:: 10890437 1 0 -chandlery%1:06:00:: 03005425 2 0 -chandlery%1:06:01:: 03005515 1 0 -chanfron%1:06:00:: 03005619 1 0 -chang%1:17:00:: 09481523 1 0 -chang_jiang%1:17:00:: 09481523 1 0 -chang_kuo%1:18:00:: 09533301 1 0 -chang_kuo-lao%1:18:00:: 09533301 1 0 -changan%1:15:00:: 08729452 1 0 -change%1:04:00:: 00191142 3 17 -change%1:06:00:: 03005769 7 1 -change%1:06:01:: 03005920 6 1 -change%1:07:00:: 04752034 10 0 -change%1:11:00:: 07296428 1 46 -change%1:19:00:: 11412727 4 13 -change%1:21:01:: 13388111 8 0 -change%1:21:02:: 13387689 5 2 -change%1:21:03:: 13387479 9 0 -change%1:24:00:: 13859043 2 45 -change%2:30:00:: 00109660 2 54 -change%2:30:01:: 00126264 1 57 -change%2:30:02:: 00123170 3 13 -change%2:30:03:: 00169458 5 6 -change%2:30:04:: 00161225 6 5 -change%2:30:05:: 00550117 4 7 -change%2:30:06:: 00163251 10 0 -change%2:30:08:: 00551210 9 0 -change%2:38:00:: 02088241 8 3 -change%2:40:00:: 02257370 7 3 -change-of-pace%1:04:00:: 00107684 1 0 -change-of-pace_ball%1:04:00:: 00107684 1 0 -change-up%1:04:00:: 00107684 1 0 -change_by_reversal%2:30:00:: 00138508 1 0 -change_course%2:38:00:: 01946817 1 0 -change_form%2:30:00:: 00140967 1 0 -change_hands%2:40:00:: 02221959 1 0 -change_integrity%2:30:00:: 00140123 1 0 -change_intensity%2:39:00:: 02191106 1 0 -change_magnitude%2:30:00:: 00169651 1 0 -change_of_color%1:04:00:: 00273690 1 0 -change_of_course%1:04:00:: 00349886 1 0 -change_of_direction%1:04:00:: 00346296 1 0 -change_of_integrity%1:04:00:: 00376063 1 0 -change_of_life%1:28:00:: 15154462 1 0 -change_of_location%1:11:00:: 07311115 1 0 -change_of_magnitude%1:04:00:: 00351485 1 0 -change_of_mind%1:09:00:: 05789808 1 0 -change_of_shape%1:04:00:: 00404403 1 0 -change_of_state%1:04:00:: 00199130 1 0 -change_over%2:30:01:: 00380159 1 1 -change_over%2:30:02:: 00381013 2 0 -change_owners%2:40:00:: 02221959 1 0 -change_posture%2:38:00:: 01983771 1 0 -change_ringing%1:04:00:: 00544605 1 0 -change_shape%2:30:00:: 00140967 1 0 -change_state%2:30:00:: 00146138 1 0 -change_surface%2:30:00:: 00356258 1 0 -change_taste%2:39:00:: 02196948 1 0 -changeability%1:07:00:: 04733640 1 0 -changeable%3:00:00:: 00344125 2 0 -changeable%3:00:04:: 00356339 1 0 -changeable%5:00:00:colorful:00 00403072 4 0 -changeable%5:00:00:variable:00 02504558 3 0 -changeableness%1:07:00:: 04733640 1 0 -changed%3:00:00:: 00354433 1 2 -changed%5:00:00:altered:00 00352716 2 2 -changed%5:00:00:metamorphic:00 01531019 3 0 -changeful%3:00:00:: 00344125 1 0 -changefulness%1:07:00:: 04734885 1 0 -changeless%3:00:04:: 00356648 1 0 -changeless%5:00:00:invariable:00 02506029 2 0 -changeless%5:00:00:unchangeable:00 00347400 3 0 -changelessness%1:07:00:: 04737934 2 0 -changelessness%1:07:01:: 05054312 1 0 -changeling%1:18:00:: 09907919 2 0 -changeling%1:18:01:: 10197525 1 0 -changeover%1:11:00:: 07415730 1 0 -changer%1:06:00:: 04063154 2 0 -changer%1:18:00:: 09609871 1 0 -changing%5:00:00:dynamic:00 00808822 1 13 -changjiang%1:17:00:: 09481523 1 0 -changtzu%1:17:00:: 09241047 1 0 -channel%1:04:00:: 01113595 8 0 -channel%1:06:00:: 03006105 2 1 -channel%1:06:02:: 03006398 7 0 -channel%1:08:00:: 05250659 6 0 -channel%1:10:00:: 06259898 1 4 -channel%1:10:01:: 06260121 5 0 -channel%1:17:00:: 09241247 4 0 -channel%1:25:00:: 13893786 3 0 -channel%2:35:00:: 01435380 3 0 -channel%2:38:00:: 01933900 2 0 -channel%2:38:01:: 02079933 1 1 -channel-surf%2:30:00:: 00551611 1 0 -channel_bass%1:05:00:: 02595702 1 0 -channel_capacity%1:28:00:: 15287073 1 0 -channel_cat%1:05:00:: 02519686 1 0 -channel_catfish%1:05:00:: 02519686 1 0 -channel_island%1:15:00:: 08887013 1 0 -channel_islands_national_park%1:15:00:: 08603924 1 0 -channel_tunnel%1:06:00:: 03027935 1 0 -channelisation%1:04:00:: 01142519 1 0 -channelise%2:35:00:: 01435380 3 0 -channelise%2:35:01:: 01369059 4 0 -channelise%2:36:00:: 01757021 2 0 -channelise%2:38:03:: 01931768 1 0 -channelization%1:04:00:: 01142519 1 0 -channelize%2:35:00:: 01435380 3 0 -channelize%2:35:01:: 01369059 4 0 -channelize%2:36:00:: 01757021 2 0 -channelize%2:38:03:: 01931768 1 0 -channels%1:10:00:: 06261464 1 0 -channidae%1:05:00:: 02514198 1 0 -channukah%1:28:00:: 15199033 1 0 -channukkah%1:28:00:: 15199033 1 0 -chanoyu%1:04:00:: 01027231 1 0 -chanson_de_geste%1:10:00:: 06382506 1 0 -chant%1:10:00:: 07034634 1 0 -chant%2:32:00:: 01049737 1 6 -chant%2:32:01:: 01066775 2 2 -chantarelle%1:20:00:: 13004423 1 0 -chanted%5:00:00:musical:01 01504926 1 1 -chanter%1:06:00:: 03006626 1 0 -chanterelle%1:20:00:: 13004423 1 0 -chantey%1:10:00:: 07050042 1 0 -chanting%1:04:00:: 01254685 1 0 -chantlike%5:00:00:rhythmical:00 02020609 1 1 -chantry%1:06:00:: 03006788 2 0 -chantry%1:21:00:: 13271705 1 0 -chanty%1:10:00:: 07050042 1 0 -chanukah%1:28:00:: 15199033 1 0 -chanukkah%1:28:00:: 15199033 1 0 -chao_phraya%1:17:00:: 09241712 1 0 -chaos%1:09:00:: 06246529 4 0 -chaos%1:18:00:: 09557770 3 0 -chaos%1:19:00:: 11434899 2 0 -chaos%1:26:00:: 13976322 1 12 -chaotic%3:01:00:: 02691237 3 0 -chaotic%5:00:00:disorganized:00 01669507 1 2 -chaotic%5:00:00:wild:02 02390569 2 1 -chaotic_attractor%1:09:00:: 05866489 1 0 -chaotically%4:02:00:: 00283613 2 0 -chaotically%4:02:01:: 00283743 1 0 -chap%1:06:00:: 03006903 4 0 -chap%1:17:00:: 09241929 3 0 -chap%1:18:00:: 09908025 1 1 -chap%1:25:00:: 13907272 2 0 -chap%2:30:00:: 00337428 1 0 -chaparral%1:14:00:: 08438223 1 0 -chaparral_broom%1:20:00:: 11938732 1 0 -chaparral_cock%1:05:00:: 01824035 1 0 -chaparral_mallow%1:20:00:: 12183026 1 0 -chaparral_pea%1:20:00:: 12559044 1 0 -chaparral_sage%1:20:00:: 12865562 1 0 -chapati%1:13:00:: 07683490 1 0 -chapatti%1:13:00:: 07683490 1 0 -chapeau%1:06:00:: 03497657 1 0 -chapel%1:04:00:: 01033024 2 0 -chapel%1:06:00:: 03007130 1 8 -chapel_hill%1:15:00:: 09128201 1 0 -chapel_service%1:04:00:: 01033024 1 0 -chapelgoer%1:18:00:: 09958133 1 0 -chaperon%1:18:00:: 09908273 1 0 -chaperon%2:38:00:: 02026712 1 0 -chaperone%1:18:00:: 09908273 1 0 -chaperone%2:38:00:: 02026712 1 0 -chapfallen%5:00:00:dejected:00 00703454 1 0 -chapiter%1:06:00:: 02956247 1 0 -chaplain%1:18:00:: 09908508 1 0 -chaplaincy%1:04:00:: 00590269 1 0 -chaplainship%1:04:00:: 00590269 1 0 -chaplet%1:06:00:: 04606014 1 0 -chapleted%5:00:00:crowned:00 00654315 1 0 -chaplin%1:18:00:: 10890637 1 0 -chapman%1:18:00:: 09908678 2 0 -chapman%1:18:01:: 10890868 1 0 -chapped%5:00:00:rough:00 02240129 1 0 -chapter%1:10:00:: 06396142 1 38 -chapter%1:11:00:: 07307172 5 0 -chapter%1:14:00:: 08228665 3 2 -chapter%1:14:01:: 08228838 4 0 -chapter%1:28:00:: 15252907 2 2 -chapterhouse%1:06:00:: 03007297 2 0 -chapterhouse%1:06:01:: 03007444 1 0 -chapultepec%1:04:00:: 01275142 1 0 -char%1:05:00:: 02538406 3 0 -char%1:18:00:: 09911226 2 0 -char%1:27:00:: 14685172 1 0 -char%2:30:00:: 00379440 2 0 -char%2:43:00:: 02771997 1 0 -chara%1:05:00:: 01412925 1 0 -charabanc%1:06:00:: 02924116 1 0 -characeae%1:05:00:: 01412479 1 0 -characid%1:05:00:: 02583567 1 0 -characidae%1:05:00:: 02583211 1 0 -characin%1:05:00:: 02583567 1 0 -characin_fish%1:05:00:: 02583567 1 0 -characinidae%1:05:00:: 02583457 1 0 -character%1:07:00:: 04616916 9 0 -character%1:07:01:: 04620216 3 11 -character%1:09:00:: 05849284 2 12 -character%1:09:01:: 05929008 4 9 -character%1:10:00:: 06818970 8 0 -character%1:10:01:: 06694796 7 1 -character%1:18:00:: 09909060 5 4 -character%1:18:02:: 09587565 1 16 -character%1:26:00:: 14438693 6 1 -character%2:35:00:: 01322391 1 0 -character-at-a-time_printer%1:06:00:: 03007591 1 0 -character_actor%1:18:00:: 09909363 1 0 -character_assassination%1:10:00:: 06719974 1 0 -character_printer%1:06:00:: 03007591 1 0 -character_reference%1:10:00:: 06694796 1 0 -character_set%1:10:00:: 06488880 1 0 -character_witness%1:18:00:: 09909477 1 0 -characterisation%1:10:00:: 07201804 1 0 -characterisation%1:10:01:: 07201562 2 0 -characterise%2:32:00:: 00956687 2 0 -characterise%2:42:01:: 02697950 1 0 -characterisic_function%1:10:00:: 07001065 1 0 -characteristic%1:07:00:: 04731497 2 6 -characteristic%1:07:01:: 04917870 4 0 -characteristic%1:09:00:: 05849789 1 18 -characteristic%1:10:00:: 06813310 3 0 -characteristic%3:00:00:: 00356926 1 22 -characteristic_curve%1:10:00:: 07001065 1 0 -characteristic_root_of_a_square_matrix%1:09:00:: 05856589 1 0 -characteristically%4:02:00:: 00247567 1 3 -characterization%1:04:00:: 00548802 3 0 -characterization%1:10:00:: 07201804 1 4 -characterization%1:10:01:: 07201562 2 0 -characterize%2:32:00:: 00956687 1 9 -characterize%2:42:01:: 02697950 2 8 -characterless%5:00:00:ordinary:00 01673590 1 0 -charade%1:10:00:: 06288947 2 0 -charade%1:10:01:: 06780309 1 0 -charades%1:04:00:: 00459727 1 0 -charadrii%1:05:00:: 02022135 1 0 -charadriidae%1:05:00:: 02023133 1 0 -charadriiformes%1:05:00:: 02021438 1 0 -charadrius%1:05:00:: 02023664 1 0 -charadrius_melodus%1:05:00:: 02023855 1 0 -charadrius_morinellus%1:05:00:: 02024185 1 0 -charadrius_vociferus%1:05:00:: 02023992 1 0 -charales%1:05:00:: 01412279 1 0 -charcoal%1:06:00:: 03007824 2 2 -charcoal%1:06:01:: 03007955 4 0 -charcoal%1:07:00:: 04962240 3 0 -charcoal%1:27:00:: 14685296 1 4 -charcoal%2:36:00:: 01693138 1 1 -charcoal%5:00:00:achromatic:00 00388725 1 0 -charcoal-gray%5:00:00:achromatic:00 00388725 1 0 -charcoal-grey%5:00:00:achromatic:00 00388725 1 0 -charcoal_burner%1:06:00:: 03008080 2 0 -charcoal_burner%1:18:00:: 09909660 1 0 -charcoal_gray%1:07:00:: 04962240 1 1 -charcoal_grey%1:07:00:: 04962240 1 0 -charcot%1:18:00:: 10891830 1 0 -charcot-marie-tooth_disease%1:26:00:: 14208587 1 0 -charcuterie%1:06:00:: 03008177 1 0 -chard%1:13:00:: 07720277 2 0 -chard%1:20:00:: 11832671 1 0 -chard_plant%1:20:00:: 11832671 1 0 -chardonnay%1:13:00:: 07894799 2 0 -chardonnay%1:20:00:: 13145924 1 0 -chardonnay_grape%1:20:00:: 13145924 1 0 -charge%1:04:00:: 00829378 5 2 -charge%1:04:01:: 00974762 1 16 -charge%1:04:03:: 00731222 6 2 -charge%1:06:00:: 03008275 15 0 -charge%1:06:01:: 03008565 14 0 -charge%1:10:00:: 06561942 2 13 -charge%1:10:01:: 07169480 12 0 -charge%1:10:03:: 07190941 11 0 -charge%1:10:04:: 06730780 13 0 -charge%1:12:00:: 07528470 10 0 -charge%1:16:00:: 09185612 9 0 -charge%1:18:00:: 09909760 7 1 -charge%1:19:00:: 11435028 4 3 -charge%1:21:01:: 13400798 8 0 -charge%1:21:02:: 13306870 3 4 -charge%2:30:00:: 00517847 24 0 -charge%2:30:03:: 00518115 23 0 -charge%2:30:13:: 00498016 25 0 -charge%2:31:10:: 00727991 21 0 -charge%2:31:12:: 00700517 22 0 -charge%2:32:00:: 00869931 6 3 -charge%2:32:01:: 00750532 18 0 -charge%2:32:02:: 00843468 2 10 -charge%2:32:03:: 00843959 7 3 -charge%2:32:11:: 00750172 20 0 -charge%2:32:12:: 00750345 19 0 -charge%2:33:00:: 01121719 1 16 -charge%2:33:01:: 01152214 17 0 -charge%2:35:00:: 01488956 8 2 -charge%2:35:02:: 01490336 16 0 -charge%2:36:00:: 01685960 15 0 -charge%2:37:05:: 01762528 14 0 -charge%2:38:00:: 02055267 4 6 -charge%2:38:01:: 01985424 13 0 -charge%2:40:01:: 02317289 12 0 -charge%2:40:02:: 02321046 9 1 -charge%2:40:03:: 02320374 3 7 -charge%2:40:04:: 02347637 11 0 -charge%2:40:05:: 02348568 10 0 -charge%2:41:00:: 02475922 5 4 -charge-exchange_accelerator%1:06:00:: 03008817 1 0 -charge_account%1:21:00:: 13375604 1 0 -charge_account_credit%1:21:00:: 13375323 1 0 -charge_card%1:21:00:: 13376012 1 0 -charge_d'affaires%1:18:00:: 09909929 1 0 -charge_of_quarters%1:18:00:: 09910084 1 0 -charge_per_unit%1:21:00:: 13325010 1 0 -charge_plate%1:21:00:: 13376012 1 0 -charge_sheet%1:10:00:: 06502858 1 0 -charge_unit%1:23:00:: 13632961 1 0 -charge_up%2:37:00:: 01762528 1 0 -chargeable%5:00:00:guilty:00 01322044 1 0 -charged%3:00:00:: 00358132 1 7 -charged%5:00:00:effervescent:00 02276660 3 0 -charged%5:00:00:emotional:00 00854989 2 1 -charged%5:00:00:provocative:00 01897224 4 0 -chargeman%1:18:00:: 09859557 1 0 -charger%1:05:00:: 02378625 1 3 -charger%1:06:00:: 03008976 2 0 -chari%1:17:00:: 09431409 1 0 -chari-nile%1:10:00:: 06997938 1 0 -chari_river%1:17:00:: 09431409 1 0 -charily%4:02:00:: 00282364 1 0 -charina%1:05:00:: 01742310 1 0 -charina_bottae%1:05:00:: 01742447 1 0 -chariness%1:07:00:: 04664413 1 0 -chariot%1:06:00:: 03009111 1 1 -chariot%1:06:01:: 03009269 2 0 -chariot%2:38:00:: 01906687 2 0 -chariot%2:38:01:: 01949817 1 0 -chariot_race%1:11:00:: 07459778 1 0 -charioteer%1:17:00:: 09211056 2 0 -charioteer%1:18:00:: 09910222 1 0 -charisma%1:07:00:: 04686537 1 1 -charismatic%5:00:00:attractive:01 00167077 1 0 -charitable%3:00:00:: 00359459 2 1 -charitable%3:01:00:: 02691390 1 2 -charitable%5:00:00:kind:00 01372948 3 0 -charitable_trust%1:21:00:: 13361465 1 0 -charitableness%1:07:00:: 04832050 1 0 -charitably%4:02:00:: 00205699 1 0 -charity%1:04:00:: 01089635 3 1 -charity%1:07:00:: 04840405 2 1 -charity%1:14:00:: 08406619 1 2 -charity%1:14:01:: 08055824 5 0 -charity%1:20:00:: 12809626 4 0 -charity_case%1:18:00:: 10773800 1 0 -charity_shot%1:04:00:: 00110964 1 0 -charity_throw%1:04:00:: 00110964 1 0 -charity_toss%1:04:00:: 00110964 1 0 -charivari%1:10:00:: 07054122 1 0 -charlatan%1:18:00:: 10334782 1 1 -charlatanism%1:04:00:: 00750306 1 0 -charlemagne%1:18:00:: 10891981 1 0 -charleroi%1:15:00:: 08851364 1 0 -charles%1:17:00:: 09242037 9 0 -charles%1:18:00:: 10892416 6 0 -charles%1:18:01:: 10892218 7 0 -charles%1:18:02:: 10891981 8 0 -charles%1:18:03:: 10892564 5 0 -charles%1:18:04:: 10892786 4 0 -charles%1:18:05:: 10892947 3 0 -charles%1:18:06:: 10893153 2 0 -charles%1:18:07:: 10893433 1 0 -charles's_law%1:09:00:: 05878229 1 0 -charles's_wain%1:17:00:: 09219858 1 0 -charles_a._lindbergh%1:18:00:: 11132948 1 0 -charles_andre_joseph_marie_de_gaulle%1:18:00:: 10927824 1 0 -charles_augustin_de_coulomb%1:18:00:: 10912802 1 0 -charles_augustus_lindbergh%1:18:00:: 11132948 1 0 -charles_baudelaire%1:18:00:: 10838484 1 0 -charles_bullfinch%1:18:00:: 10870897 1 0 -charles_camille_saint-saens%1:18:00:: 11278351 1 0 -charles_christopher_parker%1:18:00:: 11222914 1 0 -charles_cornwallis%1:18:00:: 10911687 1 0 -charles_dana_gibson%1:18:00:: 10998474 1 0 -charles_darwin%1:18:00:: 10923313 1 0 -charles_de_gaulle%1:18:00:: 10927824 1 0 -charles_dickens%1:18:00:: 10934410 1 0 -charles_digby_harrod%1:18:00:: 11032359 1 0 -charles_dillon_stengel%1:18:00:: 11316429 1 0 -charles_dodgson%1:18:00:: 10884061 1 0 -charles_dudley_warner%1:18:00:: 11374589 1 0 -charles_eames%1:18:00:: 10947259 1 0 -charles_edouard_jeanneret%1:18:00:: 11123124 1 0 -charles_edward_berry%1:18:00:: 10849083 1 0 -charles_edward_ives%1:18:00:: 11075670 1 0 -charles_evans_hughes%1:18:00:: 11064662 1 0 -charles_farrar_browne%1:18:00:: 10866571 1 0 -charles_follen_mckim%1:18:00:: 11169294 1 0 -charles_fourier%1:18:00:: 10976256 1 0 -charles_francis_hall%1:18:00:: 11024582 1 0 -charles_francois_gounod%1:18:00:: 11009635 1 0 -charles_franklin_kettering%1:18:00:: 11102878 1 0 -charles_frederick_menninger%1:18:00:: 11174354 1 0 -charles_frederick_worth%1:18:00:: 11397885 1 0 -charles_goodyear%1:18:00:: 11007620 1 0 -charles_grey%1:18:00:: 11015650 1 0 -charles_hard_townes%1:18:00:: 11346873 1 0 -charles_hardin_holley%1:18:00:: 11056654 1 0 -charles_henry_harrod%1:18:00:: 11032158 1 0 -charles_herbert_best%1:18:00:: 10850049 1 0 -charles_i%1:18:00:: 10892564 2 0 -charles_i%1:18:01:: 10891981 3 0 -charles_i%1:18:02:: 10892947 1 0 -charles_ii%1:18:00:: 10892786 2 0 -charles_ii%1:18:01:: 10892947 1 0 -charles_ix%1:18:00:: 10893433 1 0 -charles_james_fox%1:18:00:: 10976997 1 0 -charles_john_huffam_dickens%1:18:00:: 10934410 1 0 -charles_joseph_clark%1:18:00:: 10898549 1 0 -charles_kay_ogden%1:18:00:: 11212786 1 0 -charles_kettering%1:18:00:: 11102878 1 0 -charles_l'enfant%1:18:00:: 11126295 1 0 -charles_lamb%1:18:00:: 11115029 1 0 -charles_laughton%1:18:00:: 11119061 1 0 -charles_lindbergh%1:18:00:: 11132948 1 0 -charles_liston%1:18:00:: 11135044 1 0 -charles_louis_de_secondat%1:18:00:: 11186911 1 0 -charles_louis_napoleon_bonaparte%1:18:00:: 11200492 1 0 -charles_lutwidge_dodgson%1:18:00:: 10884061 1 0 -charles_m._schulz%1:18:00:: 11286820 1 0 -charles_martin_hall%1:18:00:: 11024731 1 0 -charles_maurice_de_talleyrand%1:18:00:: 11329690 1 0 -charles_menninger%1:18:00:: 11174354 1 0 -charles_munroe_schulz%1:18:00:: 11286820 1 0 -charles_peirce%1:18:00:: 11228298 1 0 -charles_percy_snow%1:18:00:: 11307082 1 0 -charles_pierre_baudelaire%1:18:00:: 10838484 1 0 -charles_proteus_steinmetz%1:18:00:: 11315580 1 0 -charles_ringling%1:18:00:: 11263180 1 0 -charles_river%1:17:00:: 09242037 1 0 -charles_robert_darwin%1:18:00:: 10923313 1 0 -charles_robert_redford%1:18:00:: 11256125 1 0 -charles_sanders_peirce%1:18:00:: 11228298 1 0 -charles_schulz%1:18:00:: 11286820 1 0 -charles_stewart_parnell%1:18:00:: 11223929 1 0 -charles_stuart%1:18:00:: 10892564 1 0 -charles_taze_russell%1:18:00:: 11275772 1 0 -charles_the_bald%1:18:00:: 10892947 1 0 -charles_the_great%1:18:00:: 10891981 1 0 -charles_thomson_rees_wilson%1:18:00:: 11391234 1 0 -charles_townes%1:18:00:: 11346873 1 0 -charles_vii%1:18:00:: 10893153 1 0 -charles_watson-wentworth%1:18:00:: 11267343 1 0 -charles_wesley%1:18:00:: 11381964 1 0 -charles_wilkes%1:18:00:: 11387060 1 0 -charles_william_post%1:18:00:: 11243562 1 0 -charleston%1:04:00:: 00536359 3 0 -charleston%1:15:00:: 09138538 2 0 -charleston%1:15:01:: 09155798 1 1 -charleston%2:38:00:: 01897097 1 0 -charlestown%1:15:00:: 09096498 1 0 -charlestown_navy_yard%1:06:00:: 03009477 1 0 -charley-horse%1:26:00:: 14360742 1 0 -charley_horse%1:26:00:: 14360742 1 0 -charlie_chaplin%1:18:00:: 10890637 1 0 -charlie_parker%1:18:00:: 11222914 1 0 -charlock%1:20:00:: 11896722 1 0 -charlotte%1:13:00:: 07610890 2 0 -charlotte%1:15:00:: 09128372 1 0 -charlotte_anna_perkins_gilman%1:18:00:: 11000349 1 0 -charlotte_bronte%1:18:00:: 10865567 1 0 -charlotte_corday%1:18:00:: 10910580 1 0 -charlotte_russe%1:13:00:: 07614004 1 0 -charlottetown%1:15:00:: 08828928 1 0 -charm%1:06:00:: 03009633 3 1 -charm%1:07:00:: 04687333 1 6 -charm%1:09:00:: 05844433 4 0 -charm%1:10:00:: 07159791 2 1 -charm%2:32:00:: 00776523 4 0 -charm%2:33:00:: 01130455 3 0 -charm%2:37:00:: 01806505 1 2 -charm%2:41:00:: 02586458 2 0 -charm_campaign%1:04:00:: 00799236 1 0 -charm_quark%1:17:00:: 09242232 1 0 -charmed%5:00:00:enchanted:00 00865620 2 0 -charmed%5:00:00:loving:00 01465583 1 0 -charmer%1:18:00:: 09910374 2 0 -charmer%1:18:01:: 10615179 1 0 -charming%5:00:00:pleasing:00 01807799 1 8 -charming%5:00:00:supernatural:00 01576071 2 0 -charmingly%4:02:00:: 00236763 1 0 -charnel%1:06:00:: 03009794 1 1 -charnel%5:00:00:offensive:01 01625492 1 0 -charnel_house%1:06:00:: 03009794 1 0 -charolais%1:05:00:: 02406647 1 0 -charon%1:18:00:: 09493374 1 0 -charophyceae%1:05:00:: 01412085 1 0 -charr%1:05:00:: 02538406 1 0 -charred_pancake_cup%1:20:00:: 12984377 1 0 -charronia%1:05:00:: 02450992 1 0 -charronia_flavigula%1:05:00:: 02451125 1 0 -chart%1:06:00:: 03009920 2 2 -chart%1:10:00:: 06999802 1 7 -chart%2:31:00:: 00705095 2 1 -chart%2:31:13:: 00710803 1 5 -chart%2:36:04:: 01755137 3 0 -chartaceous%3:01:00:: 02691531 1 0 -charter%1:10:00:: 06471737 1 2 -charter%1:10:01:: 06522501 2 0 -charter%2:40:00:: 02208537 3 0 -charter%2:41:00:: 02447692 2 0 -charter%2:41:01:: 02460619 1 1 -charter_member%1:18:00:: 09910719 1 0 -charter_school%1:14:00:: 08410454 1 0 -chartered%3:00:00:: 00360041 1 0 -chartered_accountant%1:18:00:: 09910556 1 0 -charterhouse%1:06:00:: 03010057 1 0 -chartism%1:09:00:: 05956287 1 0 -chartist%1:18:00:: 09910840 2 0 -chartist%1:18:01:: 09911051 1 0 -chartless%5:00:00:unknown:00 01377257 1 0 -chartres%1:15:00:: 08935516 1 0 -chartres_cathedral%1:06:00:: 03010138 1 0 -chartreuse%1:07:00:: 04968257 2 0 -chartreuse%1:13:00:: 07908923 1 0 -chartreuse%5:00:00:chromatic:00 00373067 1 0 -charwoman%1:18:00:: 09911226 1 0 -chary%5:00:00:cautious:00 00325619 1 0 -charybdis%1:11:00:: 07433336 1 0 -chase%1:04:00:: 00319939 1 5 -chase%1:06:00:: 03010283 3 0 -chase%1:18:00:: 10893606 2 0 -chase%2:35:00:: 01583881 3 0 -chase%2:35:02:: 01277649 4 0 -chase%2:38:00:: 02001858 1 10 -chase%2:41:00:: 02535093 2 0 -chase_after%2:38:00:: 02001858 2 0 -chase_after%2:41:00:: 02535093 1 0 -chase_away%2:38:00:: 02002720 1 0 -chased%1:18:00:: 10494778 1 0 -chaser%1:13:00:: 07883860 2 0 -chaser%1:18:00:: 10494935 1 0 -chasid%1:18:00:: 10161695 1 0 -chasidic%3:01:00:: 02738464 1 0 -chasidim%1:14:00:: 08094866 1 0 -chasidism%1:09:00:: 06234257 1 0 -chasm%1:17:00:: 09242389 1 0 -chasse%1:04:00:: 00534152 1 0 -chasse%2:38:00:: 01895027 1 0 -chassid%1:18:00:: 10161695 1 0 -chassidic%3:01:00:: 02738464 1 0 -chassidim%1:14:00:: 08094866 1 0 -chassidism%1:09:00:: 06234257 1 0 -chassis%1:06:00:: 03010473 3 0 -chassis%1:06:01:: 03010656 2 0 -chassis%1:08:00:: 05217168 1 0 -chaste%3:00:00:: 00360650 1 0 -chaste%5:00:00:moral:00 01548694 3 0 -chaste%5:00:00:plain:01 01792821 2 0 -chastely%4:02:00:: 00283873 1 0 -chasten%2:30:00:: 00202934 2 0 -chasten%2:30:01:: 00202445 3 0 -chasten%2:32:00:: 00824292 1 0 -chasteness%1:07:01:: 04697442 1 0 -chastening%1:10:00:: 06714288 1 0 -chastise%2:32:00:: 00824292 1 0 -chastisement%1:04:00:: 01161017 1 1 -chastisement%1:10:00:: 06714288 2 0 -chastity%1:04:00:: 01069125 1 1 -chastity%1:07:00:: 04849759 2 0 -chasuble%1:06:00:: 03010795 1 0 -chat%1:05:01:: 01560636 3 0 -chat%1:05:02:: 01569836 2 0 -chat%1:10:00:: 07134850 1 0 -chat%2:32:00:: 01038666 1 2 -chat_room%1:10:00:: 06359467 1 0 -chat_show%1:10:00:: 06620227 1 0 -chat_up%2:32:00:: 01037910 1 0 -chat_up%2:32:01:: 00767807 2 0 -chateau%1:06:00:: 03010915 1 0 -chateau-thierry%1:04:00:: 01271428 1 0 -chateaubriand%1:13:00:: 07660361 2 0 -chateaubriand%1:18:00:: 10893830 1 0 -chatelaine%1:06:00:: 03011018 2 0 -chatelaine%1:18:00:: 09911465 1 0 -chateura%1:05:00:: 01832684 1 0 -chateura_pelagica%1:05:00:: 01832813 1 0 -chatoyant%5:00:00:colorful:00 00403072 1 0 -chatroom%1:10:00:: 06359467 1 0 -chattahoochee%1:17:00:: 09242514 1 0 -chattahoochee_river%1:17:00:: 09242514 1 0 -chattanooga%1:04:00:: 01275389 2 0 -chattanooga%1:15:00:: 09140569 1 0 -chattel%1:21:00:: 13245846 1 0 -chattel_mortgage%1:21:00:: 13352722 1 0 -chatter%1:10:00:: 07136940 1 2 -chatter%1:11:00:: 07378781 3 0 -chatter%1:11:01:: 07378952 2 0 -chatter%2:32:00:: 01036804 4 1 -chatter%2:32:01:: 01038666 3 1 -chatter%2:32:02:: 01037303 5 0 -chatter%2:35:00:: 01553869 2 1 -chatter%2:39:00:: 02185861 1 1 -chatter_mark%1:07:00:: 04692787 2 0 -chatter_mark%1:19:00:: 11436163 1 0 -chatterbox%1:18:00:: 09911570 2 0 -chatterbox%1:20:00:: 12062781 1 0 -chatterer%1:05:00:: 01550761 2 0 -chatterer%1:18:00:: 09911570 1 0 -chattering%1:11:00:: 07378781 2 0 -chattering%1:11:01:: 07378952 1 1 -chattily%4:02:00:: 00284012 1 0 -chatty%5:00:00:communicative:00 00496422 2 0 -chatty%5:00:00:voluble:00 02384077 1 0 -chaucer%1:18:00:: 10894065 1 0 -chauffeur%1:18:00:: 09908853 1 0 -chauffeur%2:38:00:: 02058049 1 0 -chauffeuse%1:18:00:: 09908986 1 0 -chaulmoogra%1:20:00:: 12379531 1 0 -chaulmoogra_oil%1:27:00:: 15086672 1 1 -chaulmoogra_tree%1:20:00:: 12379531 1 0 -chaulmugra%1:20:00:: 12379531 1 0 -chauna%1:05:00:: 01861025 1 0 -chauna_torquata%1:05:00:: 01861330 1 0 -chauvinism%1:04:01:: 01156070 2 0 -chauvinism%1:07:00:: 04878646 1 0 -chauvinist%1:18:00:: 09911849 2 0 -chauvinist%1:18:01:: 09912075 1 0 -chauvinistic%3:01:00:: 02691680 1 0 -chauvinistic%5:00:00:patriotic:00 01740358 2 0 -chavez%1:18:00:: 10894208 2 0 -chavez%1:18:01:: 10894365 1 0 -chaw%1:13:00:: 07579399 1 0 -chaw%2:34:00:: 01201574 1 0 -chawbacon%1:18:00:: 10804102 1 0 -che_guevara%1:18:00:: 11018153 1 0 -cheap%3:00:00:: 00934199 1 9 -cheap%5:00:00:inferior:02 02346013 3 1 -cheap%5:00:00:stingy:00 01113114 4 0 -cheap%5:00:00:tasteless:02 02393791 2 1 -cheap-jack%1:18:00:: 10190516 1 0 -cheap_money%1:21:00:: 13378717 1 1 -cheap_shot%1:04:00:: 01175831 2 0 -cheap_shot%1:10:00:: 06768259 1 0 -cheapen%2:30:00:: 00207728 1 0 -cheapjack%1:18:00:: 09912598 1 0 -cheapjack%5:00:00:inferior:02 02346351 1 0 -cheaply%4:02:00:: 00284183 3 0 -cheaply%4:02:01:: 00334210 2 0 -cheaply%4:02:02:: 00466835 1 0 -cheapness%1:07:00:: 05147237 1 0 -cheapness%1:07:02:: 04818460 2 0 -cheapskate%1:18:00:: 09912681 1 0 -cheat%1:04:00:: 00754424 5 0 -cheat%1:04:01:: 00780148 4 0 -cheat%1:18:00:: 09998101 3 0 -cheat%1:20:01:: 12125183 1 0 -cheat%1:20:02:: 12111238 2 0 -cheat%2:33:00:: 01104624 2 2 -cheat%2:41:00:: 02573275 1 2 -cheat%2:41:01:: 02574516 3 1 -cheat%2:41:09:: 02576503 4 0 -cheat_on%2:41:00:: 02576503 1 0 -cheater%1:18:00:: 09998101 1 0 -cheatgrass%1:20:00:: 12111399 1 0 -cheating%1:04:00:: 00754424 1 0 -cheating%5:00:00:unfair:00 00957743 2 0 -cheating%5:00:00:unfaithful:01 00961195 1 0 -chebab%1:18:00:: 09912765 1 0 -chechen%1:10:00:: 06978422 2 0 -chechen%1:18:00:: 09912907 1 0 -chechen%3:01:00:: 02691839 1 0 -chechen_republic%1:15:00:: 09004625 1 0 -chechenia%1:15:00:: 09004625 1 0 -chechnya%1:15:00:: 09004625 1 0 -check%1:04:01:: 01146039 11 0 -check%1:04:02:: 00562935 12 0 -check%1:04:04:: 00167446 13 0 -check%1:04:05:: 00141806 6 1 -check%1:06:00:: 03011162 10 0 -check%1:07:00:: 04692908 9 0 -check%1:09:00:: 05738625 2 4 -check%1:09:01:: 05825245 5 1 -check%1:09:02:: 05689249 8 0 -check%1:10:00:: 06517942 3 2 -check%1:10:01:: 06818747 7 0 -check%1:21:00:: 13381734 1 18 -check%1:26:00:: 14010927 4 1 -check%2:30:02:: 00440286 7 1 -check%2:30:03:: 00336260 25 0 -check%2:30:09:: 00336539 24 0 -check%2:30:10:: 00354634 23 0 -check%2:31:00:: 00661824 1 27 -check%2:31:01:: 00662182 6 1 -check%2:31:02:: 00662589 3 6 -check%2:31:12:: 00663353 22 0 -check%2:32:07:: 01064999 20 0 -check%2:32:10:: 00920336 21 0 -check%2:33:00:: 01114764 19 0 -check%2:33:02:: 01139756 17 0 -check%2:33:06:: 01131473 18 0 -check%2:36:00:: 01692978 16 0 -check%2:38:12:: 01861622 15 0 -check%2:38:14:: 01861767 14 0 -check%2:38:15:: 01861403 5 1 -check%2:40:00:: 02347447 13 0 -check%2:40:13:: 02347905 12 0 -check%2:41:02:: 02553697 11 0 -check%2:41:04:: 02533282 2 7 -check%2:41:08:: 02510337 4 5 -check%2:41:14:: 02557638 10 0 -check%2:42:08:: 02657219 9 0 -check%2:42:09:: 02658283 8 0 -check-in%1:04:00:: 00141669 1 0 -check-out_procedure%1:04:00:: 00141806 1 0 -check_bit%1:23:00:: 13625482 1 0 -check_character%1:10:00:: 06819824 1 0 -check_girl%1:18:00:: 09913240 1 0 -check_in%2:32:00:: 00966152 1 3 -check_into%2:31:00:: 00661824 1 1 -check_mark%1:10:00:: 06818747 1 1 -check_off%2:31:00:: 00662182 1 0 -check_out%2:31:00:: 00661824 1 6 -check_out%2:32:00:: 00966492 2 1 -check_out%2:32:01:: 00809071 7 0 -check_out%2:40:00:: 02363742 5 0 -check_out%2:40:02:: 02311260 6 0 -check_out%2:41:00:: 02376833 4 0 -check_out%2:42:06:: 02658283 3 0 -check_over%2:31:00:: 00661824 1 0 -check_overdraft_credit%1:21:00:: 13380996 1 0 -check_register%1:10:00:: 06506926 1 0 -check_stub%1:10:00:: 06507815 1 0 -check_up_on%2:31:00:: 00661824 1 0 -checkbook%1:21:00:: 13414310 1 5 -checked%5:00:00:patterned:00 01788048 1 0 -checker%1:06:00:: 03011355 3 0 -checker%1:18:00:: 09912995 2 0 -checker%1:18:01:: 09913110 1 0 -checker%2:30:00:: 00437322 2 0 -checker%2:36:00:: 01692978 1 0 -checker_board%1:06:00:: 03011521 1 0 -checkerberry%1:13:00:: 07743723 2 0 -checkerberry%1:20:00:: 12235765 1 0 -checkerbloom%1:20:00:: 12187247 1 0 -checkerboard%1:06:00:: 03011521 1 0 -checkered%5:00:00:changeable:00 00344890 2 0 -checkered%5:00:00:patterned:00 01788048 1 0 -checkered_adder%1:05:00:: 01734808 1 0 -checkered_daffodil%1:20:00:: 12453186 1 0 -checkered_lily%1:20:00:: 12451915 1 0 -checkered_whiptail%1:05:00:: 01686808 1 0 -checkers%1:04:00:: 00502952 1 0 -checking_account%1:21:00:: 13363970 1 0 -checking_program%1:10:00:: 06573472 1 0 -checklist%1:10:00:: 06489070 1 5 -checkmate%1:04:00:: 00167764 2 0 -checkmate%1:11:00:: 07475035 1 0 -checkmate%2:33:00:: 01114475 1 0 -checkout%1:04:00:: 00141806 1 1 -checkout%1:06:00:: 03011741 3 0 -checkout%1:28:00:: 15181282 2 0 -checkout_counter%1:06:00:: 03011741 1 0 -checkout_line%1:14:00:: 08432714 1 0 -checkout_time%1:28:00:: 15181282 1 0 -checkpoint%1:15:00:: 08517825 1 0 -checkrein%1:06:00:: 02817251 1 0 -checkroom%1:06:00:: 03011892 1 0 -checkrow%2:35:00:: 01529407 1 0 -checksum%1:09:00:: 05826092 1 0 -checkup%1:04:00:: 00142361 1 1 -cheddar%1:13:00:: 07852919 2 0 -cheddar%1:15:00:: 08878885 1 0 -cheddar_cheese%1:13:00:: 07852919 1 0 -cheddar_pink%1:20:00:: 11809271 1 0 -cheek%1:07:00:: 04838210 4 0 -cheek%1:08:00:: 05602835 1 22 -cheek%1:08:01:: 05559727 3 0 -cheek%1:10:00:: 06721813 2 0 -cheek%2:32:00:: 00963452 1 0 -cheek_by_jowl%4:02:00:: 00163480 1 1 -cheek_muscle%1:08:00:: 05294068 1 0 -cheek_pouch%1:08:00:: 05517145 1 0 -cheekbone%1:08:00:: 05273822 1 1 -cheekily%4:02:00:: 00284319 1 0 -cheekiness%1:07:00:: 04915866 1 0 -cheekpiece%1:06:00:: 03012013 1 0 -cheeky%5:00:00:forward:02 00204779 1 0 -cheep%1:11:00:: 07379094 1 0 -cheep%2:32:00:: 01052301 1 0 -cheer%1:07:00:: 04630689 2 0 -cheer%1:10:00:: 06692572 1 14 -cheer%2:32:00:: 00859153 4 0 -cheer%2:32:01:: 00858781 5 0 -cheer%2:32:02:: 00858568 2 1 -cheer%2:32:03:: 00859325 3 0 -cheer%2:37:02:: 01817938 1 1 -cheer_up%2:32:00:: 00859153 2 0 -cheer_up%2:32:01:: 00859325 1 0 -cheerer%1:18:00:: 09913329 1 0 -cheerful%3:00:00:: 00362467 1 4 -cheerful%5:00:00:optimistic:00 01664015 2 0 -cheerfully%4:02:00:: 00230749 1 2 -cheerfulness%1:07:00:: 04630689 1 1 -cheerfulness%1:12:00:: 07530478 2 0 -cheerily%4:02:00:: 00219325 1 0 -cheering%1:10:00:: 07251779 1 4 -cheering%5:00:00:satisfactory:00 02081563 1 0 -cheerio%1:10:00:: 06629610 1 0 -cheerlead%2:32:00:: 00858437 1 0 -cheerleader%1:18:00:: 09913455 2 0 -cheerleader%1:18:01:: 09913593 1 0 -cheerless%3:00:00:: 00364479 1 0 -cheerlessly%4:02:00:: 00230877 1 0 -cheerlessness%1:12:00:: 07537068 1 0 -cheery%5:00:00:cheerful:00 00363938 1 5 -cheese%1:13:00:: 07850329 1 2 -cheese%1:20:00:: 12171503 2 0 -cheese%2:35:00:: 01523004 2 0 -cheese%2:42:00:: 02680691 1 0 -cheese_cutter%1:06:00:: 03012499 1 0 -cheese_dip%1:13:00:: 07582892 1 0 -cheese_fondue%1:13:00:: 07867616 1 0 -cheese_pizza%1:13:00:: 07874259 1 0 -cheese_press%1:06:00:: 03012644 1 0 -cheese_rind%1:13:00:: 07850957 1 0 -cheese_sauce%1:13:00:: 07836731 1 0 -cheese_souffle%1:13:00:: 07863802 1 0 -cheese_spread%1:13:00:: 07856756 1 0 -cheese_tray%1:06:00:: 03012159 1 0 -cheeseboard%1:06:00:: 03012159 1 0 -cheeseburger%1:13:00:: 07697313 1 0 -cheesecake%1:06:00:: 03012263 2 0 -cheesecake%1:13:00:: 07630089 1 0 -cheesecloth%1:06:00:: 03012373 1 1 -cheesed_off%5:00:00:displeased:00 01806483 1 0 -cheeseflower%1:20:00:: 12171503 1 0 -cheeselike%5:00:00:soft:01 01153346 1 0 -cheesemonger%1:18:00:: 09913741 1 0 -cheeseparing%5:00:00:stingy:00 01113225 1 0 -cheesy%5:00:00:inferior:02 02346013 1 0 -cheetah%1:05:00:: 02130308 1 0 -cheever%1:18:00:: 10894522 1 0 -cheewink%1:05:00:: 01542168 1 0 -chef%1:18:01:: 09963574 1 0 -chef's_salad%1:13:00:: 07807472 1 0 -chef-d'oeuvre%1:06:00:: 03727605 1 0 -cheilanthes%1:20:00:: 13208468 1 0 -cheilanthes_alabamensis%1:20:00:: 13208965 1 0 -cheilanthes_eatonii%1:20:00:: 13209460 1 0 -cheilanthes_gracillima%1:20:00:: 13209129 1 0 -cheilanthes_lanosa%1:20:00:: 13209270 1 0 -cheilitis%1:26:00:: 14340182 1 0 -cheiloschisis%1:26:00:: 14214355 1 0 -cheilosis%1:26:00:: 14058066 1 0 -cheiranthus%1:20:00:: 11883137 1 0 -cheiranthus_allionii%1:20:00:: 11887476 1 0 -cheiranthus_asperus%1:20:00:: 11887750 1 0 -cheiranthus_cheiri%1:20:00:: 11883328 1 0 -chekhov%1:18:00:: 10894652 1 0 -chekov%1:18:00:: 10894652 1 0 -chela%1:05:00:: 02156532 2 0 -chela%1:18:00:: 09685006 1 1 -chelate%1:27:00:: 14619033 1 0 -chelate%2:42:00:: 02621706 1 0 -chelate%3:01:01:: 02691944 2 0 -chelate%3:01:02:: 02692105 1 0 -chelate_compound%1:27:00:: 14619033 1 0 -chelated%3:01:00:: 02692105 1 0 -chelation%1:22:01:: 13445831 2 0 -chelation%1:22:02:: 13445972 1 0 -chelicera%1:05:00:: 01768596 1 0 -cheliceral%3:01:00:: 02692229 1 0 -chelicerata%1:05:00:: 01768402 1 0 -chelicerate%3:01:00:: 02692229 1 0 -chelicerous%3:01:00:: 02692378 1 0 -chelidonium%1:20:00:: 11903525 1 0 -chelidonium_majus%1:20:00:: 11903671 1 0 -chelifer%1:05:00:: 01770967 1 0 -chelifer_cancroides%1:05:00:: 01771100 1 0 -cheliferous%3:01:00:: 02692034 1 0 -cheloid%1:26:00:: 14363913 1 0 -chelone%1:20:00:: 12880963 1 0 -chelone_glabra%1:20:00:: 12881105 1 0 -chelonethida%1:05:00:: 01770553 1 0 -chelonia%1:05:01:: 01662274 2 0 -chelonia%1:05:02:: 01663659 1 0 -chelonia_mydas%1:05:00:: 01663782 1 0 -chelonian%1:05:00:: 01662622 1 0 -chelonian%3:01:00:: 02692471 1 0 -chelonian_reptile%1:05:00:: 01662622 1 0 -chelonidae%1:05:00:: 01663169 1 0 -cheloniidae%1:05:00:: 01663169 1 0 -chelyabinsk%1:15:00:: 09010453 1 0 -chelydra%1:05:00:: 01666102 1 0 -chelydra_serpentina%1:05:00:: 01666228 1 0 -chelydridae%1:05:00:: 01665761 1 0 -chem_lab%1:06:00:: 03013718 1 0 -chemakuan%1:10:00:: 06913948 1 0 -chemakum%1:10:00:: 06914069 1 0 -chemic%3:01:00:: 02692624 1 0 -chemical%1:27:00:: 14806838 1 6 -chemical%3:01:00:: 02692624 1 11 -chemical%3:01:01:: 02692966 2 3 -chemical_action%1:22:00:: 13446390 1 0 -chemical_agent%1:27:00:: 14779550 1 0 -chemical_analysis%1:04:00:: 00646833 1 0 -chemical_attraction%1:19:00:: 11422822 1 0 -chemical_balance%1:06:00:: 02708555 1 0 -chemical_bomb%1:06:00:: 03012734 1 0 -chemical_bond%1:19:00:: 11436283 1 0 -chemical_chain%1:17:00:: 09240621 1 0 -chemical_change%1:22:00:: 13446390 1 0 -chemical_compound%1:27:00:: 14818238 1 0 -chemical_decomposition_reaction%1:22:00:: 13458268 1 0 -chemical_defence%1:04:00:: 00961794 1 0 -chemical_defense%1:04:00:: 00961794 1 0 -chemical_diabetes%1:26:00:: 14120096 1 0 -chemical_element%1:27:00:: 14622893 1 0 -chemical_energy%1:19:00:: 11438468 1 0 -chemical_engineering%1:04:00:: 00950217 2 0 -chemical_engineering%1:09:00:: 06127460 1 0 -chemical_equilibrium%1:22:00:: 13446197 1 0 -chemical_formula%1:10:00:: 06816935 1 1 -chemical_group%1:27:00:: 14621446 1 0 -chemical_industry%1:14:00:: 08067342 1 0 -chemical_irritant%1:27:00:: 15032661 1 0 -chemical_mace%1:27:00:: 14944617 1 0 -chemical_mechanism%1:22:00:: 13512506 1 0 -chemical_notation%1:10:00:: 06816785 1 0 -chemical_operations%1:04:00:: 00967622 1 0 -chemical_phenomenon%1:19:00:: 11409059 1 0 -chemical_plant%1:06:00:: 03012897 1 0 -chemical_process%1:22:00:: 13446390 1 0 -chemical_property%1:07:00:: 05009758 1 0 -chemical_reaction%1:22:00:: 13447361 1 1 -chemical_reactor%1:06:00:: 03013006 1 0 -chemical_science%1:09:00:: 06084469 1 0 -chemical_substance%1:27:00:: 14806838 1 0 -chemical_terrorism%1:04:00:: 00763282 1 0 -chemical_warfare%1:04:00:: 00967622 1 0 -chemical_weapon%1:06:00:: 03013162 1 0 -chemical_weapons_convention%1:10:00:: 06774468 1 0 -chemically%4:02:00:: 00129089 2 0 -chemically%4:02:01:: 00129228 1 2 -chemiluminescence%1:19:00:: 11476767 1 0 -chemiluminescent%3:01:00:: 02693278 1 0 -chemin_de_fer%1:04:00:: 00489933 1 0 -chemise%1:06:00:: 03013438 2 0 -chemise%1:06:01:: 03013580 1 0 -chemisorb%2:35:00:: 01599666 1 0 -chemisorption%1:22:00:: 13447923 1 0 -chemisorptive%5:00:00:adsorbent:00 00008443 1 0 -chemist%1:18:00:: 09913824 1 4 -chemist%1:18:01:: 10421470 2 1 -chemist's%1:06:00:: 03249342 1 0 -chemist's_shop%1:06:00:: 03249342 1 0 -chemistry%1:09:00:: 06084469 1 5 -chemistry%1:24:00:: 13840958 3 0 -chemistry%1:27:00:: 14580752 2 0 -chemistry_department%1:14:00:: 08116073 1 0 -chemistry_lab%1:06:00:: 03013718 1 0 -chemistry_laboratory%1:06:00:: 03013718 1 1 -chemnitz%1:15:00:: 08770518 1 0 -chemoimmunology%1:09:00:: 06051925 1 0 -chemoreceptive%3:01:00:: 02693440 1 0 -chemoreceptor%1:08:00:: 05300231 1 0 -chemosis%1:26:00:: 14316048 1 0 -chemosorption%1:22:00:: 13447923 1 0 -chemosorptive%5:00:00:adsorbent:00 00008443 1 0 -chemosurgery%1:04:00:: 00668404 1 0 -chemosynthesis%1:22:00:: 13448179 1 0 -chemotaxis%1:04:00:: 00862859 1 0 -chemotherapeutic%3:01:00:: 02693533 1 0 -chemotherapeutical%3:01:00:: 02693533 1 0 -chemotherapy%1:04:00:: 00662340 1 0 -chemulpo%1:15:00:: 08956140 1 0 -chen%1:05:00:: 01856748 1 0 -chen_caerulescens%1:05:00:: 01856890 1 0 -chen_n._yang%1:18:00:: 11402120 1 0 -chenfish%1:05:00:: 02598573 1 0 -chenille%1:06:00:: 03013850 2 0 -chenille%1:06:01:: 03013992 1 0 -chenille_cord%1:06:00:: 03013992 1 0 -chenin_blanc%1:13:00:: 07899533 2 0 -chenin_blanc%1:20:00:: 13147532 1 0 -chennai%1:15:00:: 08904392 1 0 -chenopodiaceae%1:20:00:: 11827775 1 0 -chenopodiales%1:20:00:: 11804082 1 0 -chenopodium%1:20:00:: 11828113 1 0 -chenopodium_album%1:20:00:: 11828577 1 0 -chenopodium_ambrosioides%1:20:00:: 11828804 1 0 -chenopodium_bonus-henricus%1:20:00:: 11828973 1 0 -chenopodium_botrys%1:20:00:: 11829205 1 0 -chenopodium_capitatum%1:20:00:: 11829435 1 0 -chenopodium_glaucum%1:20:00:: 11829672 1 0 -chenopodium_hybridum%1:20:00:: 11829922 1 0 -chenopodium_murale%1:20:00:: 11830045 1 0 -chenopodium_rubrum%1:20:00:: 11830252 1 0 -chenopodium_vulvaria%1:20:00:: 11830400 1 0 -cheoplastic_metal%1:27:00:: 14809521 1 0 -cheops%1:18:00:: 09915434 1 0 -cheque%1:21:00:: 13381734 1 0 -cheque%2:40:00:: 02311260 1 0 -chequebook%1:21:00:: 13414310 1 0 -chequer%1:06:00:: 03011355 1 0 -chequer%2:30:00:: 00437322 2 0 -chequer%2:36:00:: 01692978 1 0 -chequered%5:00:00:patterned:00 01788048 1 0 -chequing_account%1:21:00:: 13363970 1 0 -cherbourg%1:15:00:: 08935674 1 0 -cheremis%1:10:00:: 06957287 2 0 -cheremis%1:18:00:: 09706396 1 0 -cheremiss%1:10:00:: 06957287 2 0 -cheremiss%1:18:00:: 09706396 1 0 -cherepovets%1:15:00:: 09004495 1 0 -cherimolla%1:13:00:: 07761141 1 0 -cherimoya%1:13:00:: 07761141 2 0 -cherimoya%1:20:00:: 11694300 1 0 -cherimoya_tree%1:20:00:: 11694300 1 0 -cherish%2:37:00:: 01776214 1 13 -cherished%5:00:00:loved:00 01462625 1 2 -chermidae%1:05:00:: 02256010 1 0 -chernobyl%1:15:00:: 09016365 1 0 -chernozemic_soil%1:27:00:: 14809666 1 0 -cherokee%1:10:00:: 06916117 1 1 -cherokee%1:18:00:: 09651790 2 0 -cherokee_rose%1:20:00:: 12621945 1 0 -cheroot%1:06:00:: 03014119 1 0 -cherry%1:07:00:: 04964443 4 0 -cherry%1:13:00:: 07757132 3 0 -cherry%1:20:00:: 12641413 2 0 -cherry%1:20:02:: 12641796 1 0 -cherry%5:00:00:chromatic:00 00381097 1 0 -cherry-red%5:00:00:chromatic:00 00381097 1 0 -cherry-sized%5:00:00:sized:00 02222675 1 0 -cherry-tree_gum%1:27:00:: 14900571 1 0 -cherry_apple%1:20:00:: 12634734 1 0 -cherry_birch%1:20:00:: 12283147 1 0 -cherry_bomb%1:06:00:: 03014204 1 1 -cherry_crab%1:20:00:: 12634734 1 0 -cherry_laurel%1:20:01:: 12646950 1 0 -cherry_laurel%1:20:02:: 12643113 2 0 -cherry_pepper%1:20:00:: 12901565 1 0 -cherry_plum%1:20:00:: 12643313 1 0 -cherry_red%1:07:00:: 04964443 1 0 -cherry_stone%1:20:00:: 11690169 1 0 -cherry_tomato%1:13:00:: 07734292 2 0 -cherry_tomato%1:20:00:: 12906021 1 0 -cherry_tree%1:20:00:: 12641413 1 0 -cherrystone%1:05:00:: 01958435 2 0 -cherrystone%1:13:00:: 07787270 1 0 -cherrystone_clam%1:05:00:: 01958435 2 0 -cherrystone_clam%1:13:00:: 07787270 1 0 -chert%1:27:00:: 14870525 1 0 -cherty%3:01:00:: 02693701 1 0 -cherub%1:18:00:: 09539730 2 0 -cherub%1:18:01:: 09915577 1 0 -cherubic%5:00:00:lovable:00 01459949 1 0 -cherubini%1:18:00:: 10894905 1 0 -chervil%1:13:00:: 07816839 2 0 -chervil%1:20:00:: 12932706 1 0 -chesapeake_bay%1:17:00:: 09243405 1 0 -chesapeake_bay_retriever%1:05:00:: 02099849 1 0 -cheshire_cat%1:18:00:: 09591676 1 0 -cheshire_cheese%1:13:00:: 07853232 1 0 -chess%1:04:00:: 00503237 2 0 -chess%1:20:00:: 12111238 1 0 -chess_board%1:06:00:: 03014317 1 0 -chess_club%1:14:00:: 08229275 1 0 -chess_game%1:04:00:: 00503237 1 0 -chess_master%1:18:00:: 09915651 1 0 -chess_match%1:11:00:: 07466108 1 0 -chess_move%1:04:00:: 00166355 1 0 -chess_opening%1:04:00:: 00457890 1 0 -chess_piece%1:06:00:: 03014440 1 0 -chess_player%1:18:00:: 09915834 1 0 -chess_set%1:14:00:: 07997338 1 1 -chessboard%1:06:00:: 03014317 1 0 -chessman%1:06:00:: 03014440 1 0 -chest%1:06:00:: 03014705 2 1 -chest%1:06:01:: 03015254 4 0 -chest%1:08:00:: 05552607 1 34 -chest%1:08:01:: 05553288 3 0 -chest_cavity%1:08:00:: 05553049 1 0 -chest_of_drawers%1:06:00:: 03015254 1 0 -chest_pain%1:26:00:: 14325902 1 0 -chest_protector%1:06:00:: 03015478 1 0 -chest_register%1:07:00:: 05127500 1 0 -chest_tone%1:07:00:: 05127500 1 0 -chest_voice%1:07:00:: 05127500 1 0 -chester%1:15:00:: 09135993 1 0 -chester_a._arthur%1:18:00:: 10825180 1 0 -chester_alan_arthur%1:18:00:: 10825180 1 0 -chester_nimitz%1:18:00:: 11207929 1 0 -chester_william_nimitz%1:18:00:: 11207929 1 0 -chesterfield%1:06:00:: 03015052 3 0 -chesterfield%1:06:01:: 03015149 2 0 -chesterfield%1:18:00:: 10895073 1 0 -chesterton%1:18:00:: 10895274 1 0 -chestnut%1:05:00:: 02388735 6 0 -chestnut%1:05:01:: 02468504 5 0 -chestnut%1:07:00:: 04972350 4 0 -chestnut%1:13:00:: 07772274 3 0 -chestnut%1:20:00:: 12262553 2 0 -chestnut%1:20:02:: 12262905 1 0 -chestnut%5:00:00:chromatic:00 00373209 1 1 -chestnut-bark_disease%1:26:00:: 14216653 1 0 -chestnut-brown%5:00:00:chromatic:00 00373381 1 0 -chestnut-colored%5:00:00:colored:00 00396721 1 0 -chestnut-coloured%5:00:00:colored:00 00396721 1 0 -chestnut_blight%1:26:00:: 14216653 1 0 -chestnut_canker%1:26:00:: 14216653 1 0 -chestnut_oak%1:20:00:: 12275489 1 0 -chestnut_tree%1:20:00:: 12262553 1 0 -chesty%5:00:00:proud:00 01889819 2 0 -chesty%5:00:00:robust:00 02038555 1 0 -chetah%1:05:00:: 02130308 1 0 -chetrum%1:23:00:: 13689518 1 0 -cheval-de-frise%1:06:00:: 03015631 1 0 -cheval_glass%1:06:00:: 03015851 1 0 -chevalier%1:18:00:: 09902256 2 0 -chevalier%1:18:01:: 10895549 1 0 -chevalier_de_bayard%1:18:00:: 10838802 1 0 -chevalier_de_lamarck%1:18:00:: 11114791 1 0 -chevaux-de-frise%1:06:00:: 03015631 1 1 -cheviot%1:05:00:: 02413917 1 0 -cheviot_hills%1:15:00:: 08796844 1 0 -cheviots%1:15:00:: 08796844 1 0 -chevre%1:13:00:: 07853560 1 0 -chevron%1:06:01:: 03015975 2 0 -chevron%1:10:00:: 07269552 1 0 -chevrotain%1:05:00:: 02435853 1 0 -chevvy%2:37:00:: 01789514 1 0 -chevy%2:37:00:: 01789514 1 0 -chew%1:04:00:: 00278810 2 0 -chew%1:13:00:: 07579399 1 0 -chew%2:34:00:: 01201089 1 10 -chew_out%2:32:00:: 00824767 1 0 -chew_over%2:31:00:: 00630380 1 1 -chew_the_fat%2:32:00:: 01038666 1 0 -chew_up%2:32:00:: 00824767 1 0 -chewa%1:18:00:: 09697771 1 0 -chewable%5:00:00:tender:01 02446846 1 0 -chewer%1:18:00:: 09915964 1 0 -chewing%1:04:00:: 00278810 1 0 -chewing_gum%1:13:00:: 07599998 1 0 -chewing_out%1:10:00:: 06713187 1 1 -chewink%1:05:00:: 01542168 1 0 -chewy%5:00:00:elastic:00 00843988 2 0 -chewy%5:00:00:tough:01 02445978 1 0 -cheyenne%1:10:00:: 06908700 2 1 -cheyenne%1:15:00:: 09159675 1 2 -cheyenne%1:18:00:: 09651968 3 0 -cheyne-stokes_respiration%1:04:00:: 00834290 1 0 -chi%1:10:00:: 06836381 2 0 -chi%1:26:00:: 14050559 1 0 -chiacoan_peccary%1:05:00:: 02398141 1 0 -chian%3:01:00:: 02693802 1 0 -chian_turpentine%1:27:00:: 14897521 1 0 -chiang_chung-cheng%1:18:00:: 10895688 1 0 -chiang_kai-shek%1:18:00:: 10895688 1 0 -chianti%1:13:00:: 07895595 1 0 -chiaroscuro%1:06:00:: 03016056 1 0 -chiasm%1:08:00:: 05228496 1 0 -chiasma%1:08:00:: 05228496 1 0 -chiasma_opticum%1:08:00:: 05228881 1 0 -chiasmal%3:01:00:: 02693895 1 0 -chiasmatic%3:01:00:: 02693895 1 0 -chiasmic%3:01:00:: 02693895 1 0 -chiasmus%1:10:00:: 07102271 1 0 -chic%1:07:00:: 04813712 1 0 -chic%5:00:00:stylish:00 00975487 1 1 -chicago%1:04:00:: 00493308 2 0 -chicago%1:15:00:: 09083390 1 25 -chicane%1:04:00:: 00752954 3 0 -chicane%1:06:00:: 03016209 2 0 -chicane%1:14:00:: 07957456 1 0 -chicane%2:32:00:: 00808671 2 0 -chicane%2:33:00:: 01104624 1 0 -chicanery%1:04:00:: 00752954 1 0 -chicano%1:18:00:: 09722817 1 0 -chicha%1:06:00:: 03533014 1 0 -chichewa%1:10:00:: 06992600 2 0 -chichewa%1:18:00:: 09697771 1 0 -chichi%1:07:00:: 04813712 2 0 -chichi%1:18:00:: 09916109 1 0 -chichi%5:00:00:stylish:00 00975692 1 0 -chichipe%1:20:00:: 11848867 1 0 -chick%1:05:00:: 01792042 1 2 -chick%1:18:00:: 09989045 2 0 -chickadee%1:05:00:: 01592084 1 0 -chickamauga%1:04:00:: 01275697 1 0 -chickasaw%1:10:00:: 06912340 2 0 -chickasaw%1:18:00:: 09652149 1 0 -chickasaw_plum%1:20:00:: 12639168 1 0 -chicken%1:05:01:: 01791625 2 10 -chicken%1:11:00:: 07457936 4 0 -chicken%1:13:00:: 07644967 1 16 -chicken%1:18:00:: 10781817 3 0 -chicken%5:00:00:cowardly:00 00265314 1 0 -chicken-breasted%5:00:00:unshapely:00 02142139 1 0 -chicken-fight%2:33:00:: 01123030 1 0 -chicken_and_rice%1:13:00:: 07861813 1 0 -chicken_breast%1:26:00:: 14215199 1 0 -chicken_broth%1:13:00:: 07585107 1 0 -chicken_cacciatora%1:13:00:: 07580592 1 0 -chicken_cacciatore%1:13:00:: 07580592 1 0 -chicken_casserole%1:13:00:: 07580470 1 0 -chicken_coop%1:06:00:: 03016389 1 0 -chicken_cordon_bleu%1:13:00:: 07864065 1 0 -chicken_drumstick%1:13:00:: 07648150 1 0 -chicken_farm%1:06:00:: 03016511 1 0 -chicken_feed%1:06:00:: 03754295 2 0 -chicken_feed%1:13:00:: 07805389 1 0 -chicken_hawk%1:05:00:: 01606978 1 0 -chicken_kiev%1:13:00:: 07864756 1 0 -chicken_leg%1:13:00:: 07648150 1 0 -chicken_little%1:18:00:: 09591814 1 0 -chicken_liver%1:13:00:: 07652310 1 0 -chicken_louse%1:05:00:: 02185814 1 0 -chicken_manure%1:27:00:: 14863788 1 0 -chicken_marengo%1:13:00:: 07863935 1 0 -chicken_mousse%1:13:00:: 07617526 1 0 -chicken_out%2:41:00:: 02380980 1 0 -chicken_paprika%1:13:00:: 07864317 1 0 -chicken_paprikash%1:13:00:: 07864317 1 0 -chicken_provencale%1:13:00:: 07861681 1 0 -chicken_purloo%1:13:00:: 07590177 1 0 -chicken_roundworm%1:05:00:: 01931140 1 0 -chicken_run%1:06:00:: 03016737 1 0 -chicken_salad%1:13:00:: 07808479 1 0 -chicken_sandwich%1:13:00:: 07696728 1 0 -chicken_scratch%1:10:00:: 06404322 1 0 -chicken_snake%1:05:00:: 01732989 1 0 -chicken_soup%1:13:00:: 07585557 1 0 -chicken_stew%1:13:00:: 07592317 1 0 -chicken_stock%1:13:00:: 07585107 1 0 -chicken_taco%1:13:00:: 07880880 1 0 -chicken_tetrazzini%1:13:00:: 07864475 1 0 -chicken_wing%1:13:00:: 07648814 1 0 -chicken_wire%1:06:00:: 03016609 1 0 -chicken_yard%1:06:00:: 03016737 1 0 -chickenfeed%1:21:00:: 13388000 1 0 -chickenfight%2:33:00:: 01123030 1 0 -chickenhearted%5:00:00:cowardly:00 00265314 1 0 -chickenpox%1:26:00:: 14132975 1 0 -chickenshit%1:10:00:: 06611856 1 0 -chickeree%1:05:00:: 02357585 1 0 -chickpea%1:13:00:: 07726095 3 0 -chickpea%1:20:00:: 12515711 2 0 -chickpea%1:20:02:: 12515925 1 0 -chickpea_plant%1:20:00:: 12515711 1 0 -chickweed%1:20:00:: 11817914 1 0 -chickweed%1:20:02:: 11807108 2 0 -chickweed_phlox%1:20:00:: 12810847 1 0 -chicle%1:27:00:: 14900695 1 0 -chicle_gum%1:27:00:: 14900695 1 0 -chicness%1:07:00:: 04813712 1 0 -chico%1:18:00:: 11160861 1 0 -chicory%1:13:00:: 07730855 4 0 -chicory%1:13:02:: 07731284 3 0 -chicory%1:20:01:: 11953038 2 0 -chicory%1:20:02:: 11953610 1 0 -chicory_escarole%1:13:00:: 07731587 1 0 -chicory_plant%1:20:00:: 11953038 1 0 -chicory_root%1:13:00:: 07731284 2 0 -chicory_root%1:20:00:: 11953610 1 0 -chicot%1:20:00:: 12496427 1 0 -chide%2:32:00:: 00824767 1 3 -chiding%1:10:00:: 06712833 1 0 -chief%1:18:00:: 10162991 1 5 -chief%1:18:01:: 10104209 2 1 -chief%1:18:02:: 10164025 3 0 -chief%5:00:02:important:00 01277426 1 16 -chief_assistant%1:18:00:: 10531109 1 0 -chief_constable%1:18:00:: 09916209 1 0 -chief_executive%1:04:00:: 00597265 2 0 -chief_executive%1:18:00:: 10467395 1 0 -chief_executive_officer%1:18:00:: 09916348 1 0 -chief_financial_officer%1:18:00:: 09916601 1 0 -chief_joseph%1:18:00:: 11092126 1 0 -chief_justice%1:18:00:: 09916788 1 1 -chief_of_staff%1:18:00:: 09917214 1 0 -chief_of_state%1:18:00:: 10164747 1 0 -chief_operating_officer%1:18:00:: 09916348 1 0 -chief_petty_officer%1:18:00:: 09917345 1 0 -chief_secretary%1:18:00:: 09917481 1 0 -chiefly%4:02:00:: 00073897 1 11 -chieftain%1:18:00:: 10164025 2 0 -chieftain%1:18:01:: 09893344 1 3 -chieftaincy%1:04:00:: 00590383 1 0 -chieftainship%1:04:00:: 00590383 1 0 -chiffon%1:06:00:: 03016868 1 0 -chiffon_cake%1:13:00:: 07630220 1 0 -chiffonier%1:06:00:: 03016953 1 0 -chigetai%1:05:00:: 02390938 1 0 -chigger%1:05:01:: 01781071 2 0 -chigger%1:05:02:: 02187554 1 0 -chigger_flower%1:20:00:: 13235503 1 0 -chiggerflower%1:20:00:: 13235503 1 0 -chignon%1:08:00:: 05259726 1 1 -chigoe%1:05:00:: 02187554 1 0 -chigoe_flea%1:05:00:: 02187554 1 0 -chihuahua%1:05:00:: 02085620 3 0 -chihuahua%1:15:00:: 08742455 2 0 -chihuahua%1:15:01:: 08742578 1 0 -chihuahuan_desert%1:15:00:: 09168707 1 0 -chihuahuan_spotted_whiptail%1:05:00:: 01686403 1 0 -chilblain%1:26:00:: 14183522 1 0 -chilblained%5:00:00:unhealthy:00 01175636 1 0 -chilblains%1:26:00:: 14183522 1 0 -child%1:18:00:: 09917593 1 148 -child%1:18:01:: 09918248 2 65 -child%1:18:06:: 09918554 3 1 -child%1:18:07:: 09918762 4 0 -child's_body%1:08:00:: 05219420 1 0 -child's_game%1:04:00:: 00483935 1 0 -child's_play%1:04:00:: 00575365 1 0 -child's_play%1:04:01:: 00431893 2 0 -child's_room%1:06:00:: 03017070 1 0 -child-centered%5:00:00:humane:00 01262128 1 0 -child-proof%2:30:00:: 00166457 1 0 -child_abuse%1:04:00:: 00420218 1 0 -child_care%1:04:00:: 01209963 1 1 -child_molester%1:18:00:: 10411867 1 0 -child_neglect%1:04:00:: 00420336 1 0 -child_pornography%1:04:00:: 00747519 1 0 -child_prodigy%1:18:00:: 09918867 1 0 -child_psychology%1:09:00:: 06138941 1 0 -child_support%1:21:00:: 13299071 1 0 -child_welfare_agency%1:14:00:: 08423840 1 0 -child_welfare_service%1:14:00:: 08423840 1 1 -childbearing%1:22:00:: 13448334 1 0 -childbearing%3:01:00:: 02694109 1 0 -childbed%1:26:00:: 14048441 1 0 -childbed_fever%1:26:00:: 14190493 1 0 -childbirth%1:22:00:: 13448334 1 0 -childbirth-preparation_class%1:04:00:: 00885574 1 0 -childcare%1:04:00:: 01209963 1 0 -childe_hassam%1:18:00:: 11033992 1 0 -childhood%1:26:00:: 14427065 2 2 -childhood%1:28:00:: 15147097 1 9 -childish%5:00:00:immature:02 01493016 1 8 -childishly%4:02:00:: 00195680 1 2 -childishness%1:07:00:: 04928760 1 1 -childless%5:00:00:unfruitful:00 01082998 1 0 -childlessness%1:26:00:: 13933103 1 0 -childlike%5:00:00:naive:00 02272047 2 1 -childlike%5:00:00:young:00 01648491 1 2 -childly%5:00:00:young:00 01648491 1 0 -childproof%2:30:00:: 00166457 1 0 -chile%1:13:00:: 07721456 2 0 -chile%1:15:00:: 08720481 1 0 -chile_bonito%1:05:00:: 02628259 1 0 -chile_hazel%1:20:00:: 12216968 1 0 -chile_nut%1:20:00:: 12216968 1 0 -chile_pine%1:20:00:: 11646167 1 0 -chile_tarweed%1:20:00:: 11994527 1 0 -chilean%1:18:00:: 09697986 1 0 -chilean%3:01:00:: 02965985 1 0 -chilean_bonito%1:05:00:: 02628259 1 0 -chilean_cedar%1:20:00:: 11633284 1 0 -chilean_firebush%1:20:00:: 12216628 1 0 -chilean_flameflower%1:20:00:: 12216628 1 0 -chilean_hazelnut%1:20:00:: 12216968 1 0 -chilean_jasmine%1:20:00:: 11773628 1 0 -chilean_monetary_unit%1:23:00:: 13691401 1 0 -chilean_nut%1:20:00:: 12216968 1 0 -chilean_peso%1:23:00:: 13691509 1 0 -chilean_rimu%1:20:00:: 11656549 1 0 -chilean_strawberry%1:20:00:: 12630763 1 0 -chili%1:13:00:: 07721456 2 0 -chili%1:13:01:: 07864934 1 0 -chili_con_carne%1:13:00:: 07864934 1 0 -chili_dog%1:13:00:: 07865105 1 0 -chili_pepper%1:13:00:: 07721456 2 0 -chili_pepper%1:20:00:: 12900987 1 0 -chili_powder%1:13:00:: 07822687 1 0 -chili_sauce%1:13:00:: 07822845 1 0 -chili_vinegar%1:13:00:: 07823004 1 0 -chiliad%1:23:00:: 13750844 1 0 -chiliasm%1:09:00:: 06189551 1 0 -chiliast%1:18:00:: 10318414 1 0 -chiliastic%3:01:00:: 02865018 1 0 -chill%1:07:00:: 05015463 1 3 -chill%1:12:00:: 07537259 4 0 -chill%1:12:02:: 07520112 2 2 -chill%1:26:01:: 14340287 3 1 -chill%2:30:00:: 00369864 3 0 -chill%2:30:01:: 00370412 2 1 -chill%2:37:00:: 01818972 1 2 -chill_out%2:37:00:: 01763829 1 0 -chiller%1:04:00:: 01261113 1 0 -chilli%1:13:00:: 07721456 1 0 -chilli_pepper%1:20:00:: 12900987 1 0 -chilliness%1:07:00:: 05015678 1 0 -chilliness%1:07:01:: 04629604 2 0 -chilling%1:22:00:: 13453160 1 0 -chilling%5:00:00:alarming:00 00194924 1 2 -chills_and_fever%1:26:00:: 14340462 1 0 -chilly%1:13:00:: 07721456 1 0 -chilly%5:00:00:cold:01 01252566 2 0 -chilly%5:00:00:unemotional:00 00857206 1 1 -chilly%5:00:00:unfriendly:01 01077263 3 0 -chiloe%1:15:00:: 08721286 1 0 -chilomastix%1:05:00:: 01420000 1 0 -chilomeniscus%1:05:00:: 01738470 1 0 -chilomeniscus_cinctus%1:05:00:: 01738731 1 0 -chilomycterus%1:05:00:: 02656171 1 0 -chilopoda%1:05:00:: 01784427 1 0 -chilopsis%1:20:00:: 12815060 1 0 -chilopsis_linearis%1:20:00:: 12815198 1 0 -chiluba%1:18:00:: 09693244 1 0 -chimaera%1:05:01:: 01481331 3 0 -chimaera%1:09:00:: 05769314 2 0 -chimaera%1:18:00:: 09493562 1 0 -chimaera_monstrosa%1:05:00:: 01481498 1 0 -chimaeridae%1:05:00:: 01481063 1 0 -chimakum%1:18:00:: 09652278 1 0 -chimaphila%1:20:00:: 12257343 1 0 -chimaphila_corymbosa%1:20:00:: 12257725 1 0 -chimaphila_umbellata%1:20:00:: 12257725 1 0 -chimariko%1:10:00:: 06920994 2 0 -chimariko%1:18:00:: 09652398 1 0 -chimborazo%1:17:00:: 09243615 1 0 -chime%1:06:00:: 03017168 1 0 -chime%2:39:00:: 02182342 1 0 -chime_in%2:32:00:: 00780191 1 0 -chimera%1:09:00:: 05769314 2 0 -chimera%1:18:00:: 09493562 1 0 -chimeral%3:01:00:: 02694247 1 0 -chimeric%3:01:00:: 02694247 1 0 -chimerical%3:01:00:: 02694247 1 0 -chimerical%5:00:00:unrealistic:00 01942279 2 0 -chimney%1:06:00:: 03017428 1 9 -chimney%1:06:01:: 03636891 2 0 -chimney_bellflower%1:20:00:: 12038760 1 0 -chimney_breast%1:06:00:: 03017698 1 0 -chimney_corner%1:06:00:: 03017835 1 1 -chimney_plant%1:20:00:: 12038760 1 0 -chimney_swallow%1:05:01:: 01594787 2 0 -chimney_swallow%1:05:02:: 01832813 1 0 -chimney_swift%1:05:00:: 01832813 1 0 -chimneypiece%1:06:00:: 03719343 1 0 -chimneypot%1:06:00:: 03017931 1 0 -chimneystack%1:06:00:: 03018058 1 0 -chimneysweep%1:18:00:: 09919061 1 0 -chimneysweeper%1:18:00:: 09919061 1 0 -chimonanthus%1:20:00:: 11701492 1 0 -chimonanthus_praecox%1:20:00:: 11701698 1 0 -chimp%1:05:00:: 02481823 1 0 -chimpanzee%1:05:00:: 02481823 1 0 -chimwini%1:10:00:: 06992709 1 0 -chin%1:08:00:: 05599617 1 14 -chin%1:10:00:: 06933279 2 0 -chin%2:38:00:: 01975387 1 2 -chin-up%1:04:00:: 00629597 1 2 -chin-wag%1:10:00:: 07135080 1 0 -chin-wagging%1:10:00:: 07135080 1 0 -chin_music%1:10:00:: 07137129 1 1 -chin_rest%1:06:00:: 03019685 1 0 -chin_strap%1:06:00:: 03019806 1 0 -chin_up%2:38:00:: 01975387 1 1 -chin_wag%1:10:00:: 07135080 1 0 -chin_wagging%1:10:00:: 07135080 1 0 -china%1:06:00:: 03018209 2 4 -china%1:06:01:: 03018493 4 0 -china%1:15:00:: 08723006 1 5 -china%1:15:01:: 08730550 3 0 -china_aster%1:20:00:: 11943992 1 0 -china_cabinet%1:06:00:: 03018349 1 0 -china_clay%1:27:00:: 14670639 1 0 -china_closet%1:06:00:: 03018349 1 0 -china_fleece_vine%1:20:00:: 12601106 1 0 -china_grass%1:20:00:: 12393269 1 0 -china_jute%1:20:00:: 12173069 1 0 -china_pink%1:20:00:: 11808721 1 0 -china_rose%1:20:01:: 12179391 2 0 -china_rose%1:20:02:: 12621260 1 0 -china_stone%1:27:00:: 14670639 1 0 -china_tree%1:20:01:: 12695975 2 0 -china_tree%1:20:02:: 12741792 1 0 -chinaberry%1:20:01:: 12695975 2 0 -chinaberry%1:20:02:: 12741792 1 0 -chinaberry_tree%1:20:00:: 12695975 1 0 -chinaman%1:04:00:: 00476952 2 0 -chinaman%1:18:00:: 09698337 1 0 -chinaware%1:06:00:: 03018493 1 0 -chincapin%1:13:00:: 07772413 1 0 -chinch%1:05:00:: 02240517 1 0 -chinch_bug%1:05:00:: 02239192 1 0 -chincherinchee%1:20:00:: 12460308 1 0 -chinchilla%1:05:00:: 02367492 3 0 -chinchilla%1:06:00:: 03018614 2 0 -chinchilla%1:27:01:: 14764715 1 0 -chinchilla_laniger%1:05:00:: 02367492 1 0 -chinchilla_rat%1:05:00:: 02368399 1 0 -chinchillidae%1:05:00:: 02367131 1 0 -chinchillon%1:05:00:: 02368116 1 0 -chinchona%1:20:00:: 12663804 1 0 -chinchy%5:00:00:stingy:00 01113114 1 0 -chine%1:05:00:: 01895128 2 0 -chine%1:13:00:: 07654538 1 0 -chine%2:35:00:: 01323202 1 0 -chinese%1:10:00:: 06929742 1 1 -chinese%1:18:00:: 09698108 2 0 -chinese%3:01:00:: 02964782 1 5 -chinese%3:01:01:: 03122400 2 0 -chinese-red%5:00:00:chromatic:00 00385188 1 0 -chinese_alligator%1:05:00:: 01698782 1 0 -chinese_angelica%1:20:00:: 11798688 1 0 -chinese_angelica_tree%1:20:00:: 11798688 1 0 -chinese_anise%1:13:00:: 07826930 2 0 -chinese_anise%1:20:00:: 11709205 1 0 -chinese_black_mushroom%1:20:00:: 13001930 1 0 -chinese_brown_sauce%1:13:00:: 07836456 1 0 -chinese_cabbage%1:13:00:: 07714287 2 0 -chinese_cabbage%1:20:00:: 11878808 1 0 -chinese_celery%1:13:00:: 07714287 1 0 -chinese_checkers%1:04:00:: 00503981 1 0 -chinese_chequers%1:04:00:: 00503981 1 0 -chinese_chestnut%1:20:00:: 12263410 1 0 -chinese_chive%1:20:00:: 12435777 1 0 -chinese_cinnamon%1:20:00:: 11705387 1 0 -chinese_cork_oak%1:20:00:: 12279293 1 0 -chinese_date%1:13:00:: 07765999 1 0 -chinese_deity%1:18:00:: 09533048 1 0 -chinese_elm%1:20:01:: 12407715 2 0 -chinese_elm%1:20:02:: 12408077 1 0 -chinese_evergreen%1:20:00:: 11781658 1 0 -chinese_forget-me-not%1:20:00:: 12818966 1 0 -chinese_fried_rice%1:13:00:: 07868340 1 0 -chinese_goose%1:05:00:: 01856380 1 0 -chinese_gooseberry%1:13:00:: 07763629 2 0 -chinese_gooseberry%1:20:00:: 12371439 1 0 -chinese_hibiscus%1:20:00:: 12179391 1 0 -chinese_holly%1:20:00:: 12757115 1 0 -chinese_jujube%1:13:00:: 07765999 1 0 -chinese_lacquer_tree%1:20:00:: 12767648 1 0 -chinese_lantern%1:06:00:: 03018712 1 0 -chinese_lantern_plant%1:20:00:: 12910875 1 0 -chinese_magnolia%1:20:00:: 11711289 1 0 -chinese_monetary_unit%1:23:00:: 13709819 1 0 -chinese_mushroom%1:20:00:: 13020191 1 0 -chinese_mustard%1:13:00:: 07819682 2 0 -chinese_mustard%1:20:00:: 11878633 1 0 -chinese_paddlefish%1:05:00:: 02639922 1 0 -chinese_parasol%1:20:00:: 12198286 1 0 -chinese_parasol_tree%1:20:00:: 12198286 1 0 -chinese_parsley%1:13:00:: 07817315 2 0 -chinese_parsley%1:20:00:: 12936469 1 0 -chinese_pea_tree%1:20:00:: 12512294 1 0 -chinese_primrose%1:20:00:: 12091697 1 0 -chinese_privet%1:20:00:: 12308664 1 0 -chinese_puzzle%1:06:00:: 03018848 1 0 -chinese_restaurant_syndrome%1:26:00:: 14304964 1 0 -chinese_revolution%1:04:00:: 01303582 1 0 -chinese_rhubarb%1:20:00:: 12603672 1 0 -chinese_scholar_tree%1:20:00:: 12570394 1 0 -chinese_scholartree%1:20:00:: 12570394 1 0 -chinese_shan%1:10:00:: 06935111 1 0 -chinese_silk_plant%1:20:00:: 12393269 1 0 -chinese_wall%1:06:00:: 03018971 1 0 -chinese_water_chestnut%1:20:00:: 12153741 1 0 -chinese_white%1:27:00:: 15108745 1 0 -chinese_white_cabbage%1:20:00:: 11879054 1 0 -chinese_wistaria%1:20:00:: 12580786 1 0 -chinese_wood_oil%1:27:00:: 15086545 1 0 -chinese_yam%1:20:00:: 12088495 1 0 -chingpo%1:10:00:: 06933185 1 0 -chink%1:11:00:: 07379223 3 0 -chink%1:17:00:: 09243769 2 0 -chink%1:18:00:: 09698337 1 0 -chink%2:30:00:: 00336539 3 0 -chink%2:35:00:: 01423506 2 0 -chink%2:39:00:: 02186506 1 0 -chinkapin%1:13:00:: 07772413 1 0 -chinkapin_oak%1:20:00:: 12275675 1 0 -chinked%5:00:00:caulked:00 01399469 1 1 -chinless%5:00:00:opisthognathous:00 01875929 1 2 -chinning_bar%1:06:00:: 03019198 1 1 -chino%1:06:00:: 03019304 2 0 -chino%1:06:01:: 03019434 1 0 -chino-japanese_war%1:04:00:: 01275934 1 0 -chinoiserie%1:06:00:: 03019535 1 0 -chinook%1:05:00:: 02536456 5 0 -chinook%1:10:00:: 06924996 4 0 -chinook%1:13:00:: 07796321 3 0 -chinook%1:18:00:: 09652535 2 0 -chinook%1:19:00:: 11438612 1 0 -chinook_jargon%1:10:00:: 06905828 1 0 -chinook_salmon%1:05:00:: 02536456 2 0 -chinook_salmon%1:13:00:: 07796321 1 0 -chinook_wind%1:19:00:: 11438612 1 0 -chinookan%1:10:00:: 06924996 1 0 -chinquapin%1:13:00:: 07772413 3 0 -chinquapin%1:20:01:: 12263738 2 0 -chinquapin%1:20:02:: 12263987 1 0 -chinquapin_oak%1:20:00:: 12275675 1 0 -chintz%1:06:00:: 03019938 1 0 -chintzily%4:02:00:: 00466835 1 0 -chintzy%5:00:00:inferior:02 02346013 1 0 -chintzy%5:00:00:stingy:00 01113114 2 0 -chiococca%1:20:00:: 12662223 1 0 -chiococca_alba%1:20:00:: 12662379 1 0 -chionanthus%1:20:00:: 12301917 1 0 -chionanthus_virginicus%1:20:00:: 12302248 1 0 -chionochloa_conspicua%1:20:00:: 12109365 1 0 -chios%1:15:00:: 08782976 1 0 -chip%1:04:00:: 00377169 9 0 -chip%1:04:01:: 00573530 8 0 -chip%1:06:00:: 03020034 7 0 -chip%1:06:01:: 03020416 6 0 -chip%1:06:02:: 03020563 2 1 -chip%1:07:00:: 04692908 5 0 -chip%1:13:00:: 07712559 4 0 -chip%1:17:00:: 09222051 1 1 -chip%1:17:01:: 09243906 3 0 -chip%2:35:00:: 01259458 5 0 -chip%2:35:01:: 01259691 1 1 -chip%2:35:02:: 01260291 4 0 -chip%2:35:03:: 01259005 2 1 -chip%2:35:04:: 01598140 3 0 -chip_at%2:35:00:: 01256600 1 0 -chip_away%2:30:00:: 00180315 1 0 -chip_away_at%2:30:00:: 00180315 1 0 -chip_in%2:40:00:: 02308741 1 0 -chip_off%2:35:00:: 01259691 1 0 -chip_shot%1:04:00:: 00573530 1 0 -chipboard%1:27:00:: 15102455 1 0 -chipewyan%1:10:00:: 06920010 2 0 -chipewyan%1:18:00:: 09652746 1 0 -chipmunk%1:05:02:: 02360282 1 0 -chipolata%1:13:00:: 07676425 1 0 -chipotle%1:13:00:: 07721833 1 0 -chippendale%1:18:00:: 10896046 1 0 -chippendale%3:01:00:: 02694583 1 0 -chipper%5:00:00:cheerful:00 00364145 1 1 -chippewa%1:10:00:: 06911366 2 0 -chippewa%1:18:00:: 09663472 1 0 -chippewaian%1:10:00:: 06920010 1 0 -chippewyan%1:10:00:: 06920010 1 0 -chipping%1:04:00:: 00377169 1 0 -chipping_sparrow%1:05:00:: 01536035 1 0 -chips%1:13:01:: 07711080 1 0 -chiralgia%1:26:00:: 14325976 1 0 -chiricahua_apache%1:10:00:: 06919548 1 0 -chirico%1:18:00:: 10896255 1 0 -chirk%2:32:00:: 01049140 1 0 -chirk_up%2:32:00:: 00859153 1 0 -chirocephalus%1:05:00:: 01995323 1 0 -chirography%1:10:00:: 06403969 1 0 -chirology%1:09:00:: 05777830 1 0 -chiromance%2:39:00:: 02107817 1 0 -chiromancer%1:18:00:: 10395209 1 0 -chiromancy%1:09:00:: 05777830 1 0 -chiromantic%3:01:00:: 02911243 1 0 -chiron%1:17:00:: 09244022 2 0 -chiron%1:18:00:: 09493807 1 0 -chironomidae%1:05:00:: 02203008 1 0 -chironomus%1:05:00:: 02203332 1 0 -chiropodist%1:18:00:: 09919297 1 0 -chiropody%1:09:00:: 06062076 1 0 -chiropractic%1:04:00:: 00707967 1 0 -chiropractor%1:18:00:: 09919200 1 2 -chiroptera%1:05:00:: 02138921 1 0 -chiropteran%1:05:00:: 02139199 1 0 -chirp%1:11:00:: 07379409 1 0 -chirp%2:32:00:: 01052301 1 1 -chirp%2:36:00:: 01730663 2 0 -chirpily%4:02:00:: 00280730 1 0 -chirpiness%1:07:00:: 04632063 1 0 -chirpy%3:01:00:: 02694784 1 0 -chirpy%5:00:00:cheerful:00 00363621 2 0 -chirr%2:32:00:: 01052671 1 0 -chirrup%1:11:00:: 07379577 1 0 -chirrup%2:32:00:: 01052301 1 0 -chisel%1:06:00:: 03020692 1 4 -chisel%2:35:00:: 01259328 3 0 -chisel%2:41:00:: 02574516 1 0 -chisel%2:41:01:: 02573275 2 0 -chisel-like%5:00:00:sharp:00 00801462 1 0 -chisel_in%2:32:00:: 00780191 1 0 -chisel_steel%1:27:00:: 14809756 1 0 -chiseled%5:00:00:distinct:00 00779819 1 2 -chiseler%1:18:00:: 09955015 1 0 -chiseller%1:18:00:: 09955015 1 0 -chisholm_trail%1:06:00:: 03020927 1 0 -chishona%1:10:00:: 06992807 1 0 -chisinau%1:15:00:: 09014850 1 0 -chislev%1:28:00:: 15214840 1 0 -chit%1:10:00:: 06517942 2 0 -chit%1:18:00:: 09919451 1 0 -chit-chat%1:10:00:: 07135080 1 0 -chit-chat%2:32:00:: 01038666 1 0 -chit_chat%1:10:00:: 07135080 1 0 -chitchat%1:10:00:: 07135080 1 0 -chitchat%2:32:00:: 01038666 1 0 -chitin%1:27:00:: 14732722 1 0 -chitinous%3:01:00:: 02694948 1 0 -chitlings%1:13:00:: 07671722 1 0 -chitlins%1:13:00:: 07671722 1 0 -chiton%1:05:00:: 01955084 2 0 -chiton%1:06:00:: 03021121 1 0 -chittagong%1:15:00:: 08849372 1 0 -chittam_bark%1:20:00:: 13141797 1 0 -chittamwood%1:20:01:: 12773142 2 0 -chittamwood%1:20:02:: 13141564 1 0 -chittamwood%1:20:03:: 12760316 3 0 -chittem_bark%1:20:00:: 13141797 1 0 -chitter%2:32:00:: 01053623 1 0 -chitterlings%1:13:00:: 07671722 1 0 -chittimwood%1:20:01:: 12773142 2 0 -chittimwood%1:20:02:: 13141564 1 0 -chivalric%5:00:00:past:00 01729157 1 0 -chivalrous%5:00:00:courteous:00 00640106 1 1 -chivalrously%4:02:00:: 00284489 1 0 -chivalry%1:07:00:: 04913738 1 1 -chivalry%1:09:00:: 05955848 2 0 -chivaree%1:10:00:: 07054122 1 0 -chive%1:20:00:: 12435152 1 0 -chives%1:13:00:: 07817024 2 0 -chives%1:20:00:: 12435152 1 0 -chivvy%2:37:00:: 01789514 1 0 -chivy%2:37:00:: 01789514 1 1 -chiwere%1:10:00:: 06908801 1 0 -chlamydeous%3:00:00:: 00365513 1 0 -chlamydera%1:05:00:: 01601268 1 0 -chlamydera_nuchalis%1:05:00:: 01601410 1 0 -chlamydia%1:05:00:: 01372709 2 0 -chlamydia%1:26:00:: 14175579 1 0 -chlamydia_psittaci%1:05:00:: 01372944 1 0 -chlamydia_trachomatis%1:05:00:: 01373090 1 0 -chlamydiaceae%1:05:00:: 01372372 1 0 -chlamydial%3:01:00:: 02695045 1 0 -chlamydomonadaceae%1:05:00:: 01409477 1 0 -chlamydomonas%1:05:00:: 01409665 1 0 -chlamydosaurus%1:05:00:: 01688106 1 0 -chlamydosaurus_kingi%1:05:00:: 01688243 1 0 -chlamydospore%1:20:00:: 11548870 1 0 -chlamyphore%1:05:00:: 02456275 1 0 -chlamyphorus%1:05:00:: 02456147 1 0 -chlamyphorus_truncatus%1:05:00:: 02456275 1 0 -chlamys%1:06:00:: 03021228 2 0 -chlamys%1:20:00:: 11692265 1 0 -chloasma%1:26:00:: 14302652 1 0 -chloe_anthony_wofford%1:18:00:: 11192349 1 0 -chlor-trimeton%1:06:00:: 03022978 1 0 -chloral_hydrate%1:06:00:: 03021360 1 0 -chlorambucil%1:06:00:: 03021531 1 0 -chloramine%1:06:00:: 03021696 1 0 -chloramine-t%1:06:00:: 03021696 1 0 -chloramphenicol%1:06:00:: 03021858 1 0 -chloranthaceae%1:20:00:: 13151265 1 0 -chloranthus%1:20:00:: 13151439 1 0 -chlorate%1:27:00:: 14610703 1 0 -chlordiazepoxide%1:06:00:: 03022041 1 0 -chlorella%1:05:00:: 01411450 1 0 -chlorenchyma%1:20:00:: 13096677 1 0 -chlorhexidine%1:06:00:: 03022250 1 0 -chloric_acid%1:27:00:: 14610782 1 0 -chloride%1:27:00:: 15017604 1 2 -chloride%1:27:01:: 15016852 2 0 -chloride_of_lime%1:27:00:: 14780850 1 0 -chlorinate%2:29:00:: 00089602 2 0 -chlorinate%2:30:00:: 00186567 1 0 -chlorinated_lime%1:27:00:: 14780850 1 0 -chlorination%1:04:00:: 00709659 2 0 -chlorination%1:22:00:: 13448622 1 0 -chlorine%1:27:00:: 14634591 1 32 -chlorine_dioxide%1:27:00:: 14809843 1 0 -chlorine_water%1:27:00:: 14810032 1 0 -chlorinity%1:23:00:: 13581871 1 0 -chloris%1:20:00:: 12114226 1 0 -chloris_gayana%1:20:00:: 12114590 1 0 -chloris_truncata%1:20:00:: 12114770 1 0 -chlorite%1:27:00:: 14670954 1 0 -chloroacetophenone%1:27:00:: 14604038 1 0 -chlorobenzene%1:27:00:: 14603236 1 0 -chlorobenzylidenemalononitrile%1:27:00:: 14603798 1 0 -chlorococcales%1:05:00:: 01410847 1 0 -chlorococcum%1:05:00:: 01411036 1 0 -chlorofluorocarbon%1:27:00:: 14603497 1 0 -chloroform%1:06:00:: 03022406 1 0 -chloroform%2:29:00:: 00021826 1 0 -chlorofucin%1:05:00:: 01398803 1 0 -chlorohydric_acid%1:27:00:: 14912387 1 0 -chloromycetin%1:06:00:: 03021858 1 0 -chlorophis%1:05:00:: 01730429 1 0 -chlorophoneus%1:05:00:: 01600197 1 0 -chlorophoneus_nigrifrons%1:05:00:: 01600341 1 0 -chlorophthalmidae%1:05:00:: 02543737 1 0 -chlorophyceae%1:05:00:: 01407465 1 0 -chlorophyl%1:05:00:: 01398212 1 0 -chlorophyll%1:05:00:: 01398212 1 0 -chlorophyll_a%1:05:00:: 01398481 1 0 -chlorophyll_b%1:05:00:: 01398632 1 0 -chlorophyll_c%1:05:00:: 01398803 1 0 -chlorophyll_d%1:05:00:: 01398941 1 0 -chlorophyllose%3:01:00:: 02695229 1 0 -chlorophyllous%3:01:00:: 02695229 1 0 -chlorophyllum_molybdites%1:20:00:: 13012973 1 0 -chlorophyta%1:05:00:: 01407065 1 0 -chlorophyte%1:05:00:: 01407798 1 0 -chloropicrin%1:27:00:: 14810168 1 0 -chloroplast%1:20:00:: 12962992 1 0 -chloroprene%1:27:00:: 14912245 1 0 -chloroquine%1:06:00:: 03022634 1 0 -chlorosis%1:26:00:: 14166775 1 0 -chlorothiazide%1:06:00:: 03022788 1 2 -chlorotic%3:01:00:: 02695389 1 0 -chlorous_acid%1:27:00:: 14610914 1 0 -chloroxylon%1:20:00:: 12697360 1 0 -chloroxylon_swietenia%1:20:00:: 12697514 1 0 -chlorpheniramine_maleate%1:06:00:: 03022978 1 0 -chlorpromazine%1:06:00:: 03023175 1 1 -chlorpyrifos%1:27:00:: 14810466 1 0 -chlortetracycline%1:06:00:: 03023415 1 0 -chlorthalidone%1:06:00:: 03023623 1 0 -chlorura%1:05:00:: 01542316 1 0 -chlorura_chlorura%1:05:00:: 01542433 1 0 -choanocyte%1:05:00:: 01907287 1 0 -choc%1:13:00:: 07603411 1 0 -choc-ice%1:13:00:: 07614942 1 0 -chock%1:06:00:: 03023878 1 1 -chock%2:35:00:: 01218396 2 0 -chock%2:35:01:: 01342340 1 0 -chock%4:02:00:: 00253609 1 0 -chock-a-block%4:02:00:: 00253609 1 0 -chock-full%5:00:00:full:00 01084297 1 0 -chock_up%2:35:00:: 01524298 1 0 -chockablock%5:00:00:full:00 01084297 1 0 -chockful%5:00:00:full:00 01084297 1 1 -chocolate%1:07:00:: 04972451 3 0 -chocolate%1:13:00:: 07601999 2 0 -chocolate%1:13:02:: 07922764 1 1 -chocolate-brown%5:00:00:chromatic:00 00372111 1 0 -chocolate-colored%5:00:00:colored:00 00396839 1 0 -chocolate-coloured%5:00:00:colored:00 00396839 1 0 -chocolate_bar%1:13:00:: 07603511 1 0 -chocolate_cake%1:13:00:: 07630294 1 0 -chocolate_candy%1:13:00:: 07602454 1 0 -chocolate_chip_cookie%1:13:00:: 07638317 1 0 -chocolate_eclair%1:13:00:: 07628779 1 0 -chocolate_egg%1:13:00:: 07842044 1 0 -chocolate_fondue%1:13:00:: 07867751 1 0 -chocolate_fudge%1:13:00:: 07605597 1 0 -chocolate_ice_cream%1:13:00:: 07614825 1 0 -chocolate_kiss%1:13:00:: 07607138 1 0 -chocolate_liquor%1:13:00:: 07602829 1 0 -chocolate_milk%1:13:00:: 07921360 1 0 -chocolate_mousse%1:13:00:: 07617611 1 0 -chocolate_pudding%1:13:00:: 07618432 1 0 -chocolate_root%1:20:00:: 12632072 1 0 -chocolate_sauce%1:13:00:: 07836838 1 0 -chocolate_syrup%1:13:00:: 07836838 1 0 -chocolate_tree%1:20:00:: 12201580 1 0 -chocolate_truffle%1:13:00:: 07609632 1 0 -choctaw%1:10:00:: 06912436 2 0 -choctaw%1:18:00:: 09652900 1 0 -choeronycteris%1:05:00:: 02142993 1 0 -choeronycteris_mexicana%1:05:00:: 02143142 1 0 -choice%1:04:00:: 00161243 2 8 -choice%1:09:00:: 05790242 1 11 -choice%1:09:02:: 05790944 3 3 -choice%5:00:00:superior:02 02342899 1 3 -choice%5:00:00:tasty:00 02396484 2 0 -choice_morsel%1:13:00:: 07594737 1 0 -choice_of_words%1:10:00:: 07081739 1 0 -choiceness%1:07:00:: 04728604 1 0 -choir%1:06:00:: 03024064 3 0 -choir%1:14:00:: 08188638 1 2 -choir%1:14:01:: 08188814 2 0 -choir%2:36:00:: 01730799 1 0 -choir_loft%1:06:00:: 03024233 1 0 -choir_school%1:14:00:: 08410092 1 0 -choirboy%1:18:00:: 09919690 1 1 -choirmaster%1:18:00:: 09919771 1 0 -choke%1:06:00:: 03024333 2 0 -choke%1:06:01:: 03024518 1 0 -choke%2:29:00:: 00002724 1 8 -choke%2:29:01:: 00077606 14 0 -choke%2:29:03:: 00077698 5 1 -choke%2:29:04:: 00077950 4 1 -choke%2:30:00:: 00173159 13 0 -choke%2:30:01:: 00358431 12 0 -choke%2:30:06:: 00391021 11 0 -choke%2:30:08:: 00391203 10 0 -choke%2:35:00:: 01570562 2 2 -choke%2:35:01:: 01478603 8 0 -choke%2:35:02:: 01570744 3 1 -choke%2:35:03:: 01476180 9 0 -choke%2:41:00:: 02423999 7 0 -choke%2:41:03:: 02529669 6 0 -choke-full%5:00:00:full:00 01084297 1 0 -choke_back%2:30:00:: 00391417 1 0 -choke_coil%1:06:00:: 03024518 1 0 -choke_down%2:30:00:: 00391417 1 0 -choke_hold%1:04:00:: 00417131 1 0 -choke_off%2:30:00:: 00391417 1 2 -choke_off%2:35:00:: 01478603 2 1 -choke_up%2:35:00:: 01479333 1 0 -chokecherry%1:20:00:: 12650556 2 0 -chokecherry%1:20:02:: 12650805 1 0 -chokecherry_tree%1:20:00:: 12650556 1 0 -choked%5:00:00:obstructed:00 01621268 1 2 -chokedamp%1:27:00:: 14797264 1 0 -chokehold%1:04:00:: 00417131 2 0 -chokehold%1:07:00:: 05193781 1 0 -chokepoint%1:15:00:: 08543776 2 0 -chokepoint%1:25:00:: 13912992 1 0 -choker%1:06:00:: 03024746 4 0 -choker%1:06:01:: 03024882 3 0 -choker%1:18:00:: 10121246 1 0 -choker%1:18:01:: 09919899 2 0 -chokey%1:06:00:: 03025070 1 0 -choking%1:04:00:: 00225786 2 0 -choking%1:26:00:: 14058252 1 0 -choking_coil%1:06:00:: 03024518 1 0 -choky%1:06:00:: 03025070 1 0 -choky%5:00:00:tight:01 01447683 1 0 -cholangiography%1:04:00:: 00906140 1 0 -cholangitis%1:26:00:: 14340734 1 0 -cholecalciferol%1:27:00:: 15092227 1 0 -cholecystectomy%1:04:00:: 00669000 1 0 -cholecystitis%1:26:00:: 14340822 1 0 -cholecystokinin%1:08:00:: 05409136 1 0 -cholelithiasis%1:26:00:: 14115245 1 1 -cholelithotomy%1:04:00:: 00683470 1 0 -choler%1:08:00:: 05406958 3 0 -choler%1:12:01:: 07516354 2 0 -choler%1:12:02:: 07552729 1 0 -cholera%1:26:00:: 14129579 1 0 -cholera_infantum%1:26:00:: 14172217 1 0 -cholera_morbus%1:26:00:: 14172383 1 0 -choleraic%3:01:00:: 02695522 1 0 -choleric%5:00:00:angry:00 00114921 3 0 -choleric%5:00:00:ill-natured:00 01135914 2 0 -choleric%5:00:00:passionate:00 01726613 1 0 -cholestasis%1:26:00:: 14054465 1 0 -cholesterin%1:27:00:: 15058544 1 0 -cholesterol%1:27:00:: 15058544 1 4 -cholesterosis_cutis%1:26:00:: 14233717 1 0 -cholic_acid%1:27:00:: 15059694 1 0 -choline%1:27:00:: 14810561 1 0 -cholinergic%3:00:00:: 00060969 1 0 -cholinesterase%1:27:00:: 14735822 1 0 -cholla%1:20:00:: 11851839 1 0 -choloepus%1:05:00:: 02457756 1 0 -choloepus_didactylus%1:05:00:: 02457945 1 0 -choloepus_hoffmanni%1:05:00:: 02458135 1 0 -chomp%1:04:00:: 00838816 1 1 -chomp%2:34:00:: 01174973 1 0 -chomping%1:04:00:: 00279136 1 0 -chomsky%1:18:00:: 10896452 1 0 -chon%1:23:01:: 13709118 2 0 -chon%1:23:02:: 13709486 1 0 -chondrichthian%1:05:00:: 01480516 1 0 -chondrichthyes%1:05:00:: 01480336 1 0 -chondrify%2:30:00:: 00499512 1 0 -chondrin%1:27:00:: 14730802 1 0 -chondriosome%1:08:00:: 05445389 1 0 -chondrite%1:17:00:: 09244191 1 0 -chondritic%3:00:00:: 00365799 1 0 -chondrodystrophy%1:26:00:: 14121804 1 0 -chondroma%1:26:00:: 14236130 1 0 -chondrosarcoma%1:26:00:: 14240487 1 0 -chondrule%1:17:00:: 09244331 1 0 -chondrus%1:05:00:: 01414502 1 0 -chondrus_crispus%1:05:00:: 01414633 1 0 -chongqing%1:15:00:: 08725161 1 0 -choo-choo%1:06:00:: 03025165 1 0 -choose%2:31:00:: 00674607 1 80 -choose%2:31:01:: 00679937 3 11 -choose%2:31:02:: 00679389 2 19 -choose_up%2:41:00:: 02448642 1 1 -chooser%1:18:00:: 10431625 1 0 -choosey%5:00:00:fastidious:00 00984251 1 0 -choosy%5:00:00:fastidious:00 00984251 1 1 -chop%1:04:00:: 00566889 4 0 -chop%1:04:01:: 00129317 5 0 -chop%1:08:00:: 05546298 3 0 -chop%1:13:00:: 07653982 2 0 -chop%1:19:00:: 11527767 1 0 -chop%2:33:00:: 01124535 6 0 -chop%2:35:00:: 01257173 5 0 -chop%2:35:01:: 01258091 1 2 -chop%2:35:03:: 01415454 4 0 -chop%2:36:00:: 01758410 3 0 -chop%2:38:00:: 01871471 2 0 -chop-chop%4:02:00:: 00085811 1 0 -chop-suey_greens%1:13:00:: 07709701 2 0 -chop-suey_greens%1:20:00:: 11951052 1 0 -chop_down%2:35:00:: 01257507 1 1 -chop_off%2:35:00:: 01299268 1 0 -chop_shop%1:06:00:: 03025641 1 0 -chop_shot%1:04:00:: 00566889 1 0 -chop_steak%1:13:00:: 07664121 1 0 -chop_suey%1:13:00:: 07865196 1 0 -chop_up%2:35:00:: 01258091 1 0 -chopfallen%5:00:00:dejected:00 00703454 1 0 -chophouse%1:06:00:: 04307878 1 0 -chopin%1:10:00:: 07278256 1 1 -chopin%1:18:00:: 10896644 3 0 -chopin%1:18:01:: 10896823 2 0 -chopine%1:06:00:: 03025250 1 0 -chopped%5:00:00:cut:01 00661640 1 0 -chopped_steak%1:13:00:: 07664121 1 0 -chopper%1:04:00:: 00129317 1 1 -chopper%1:06:00:: 03041632 4 0 -chopper%1:06:01:: 03512147 3 0 -chopper%1:08:00:: 05283498 2 0 -choppiness%1:26:01:: 14524029 1 0 -chopping_block%1:06:00:: 03025357 1 1 -chopping_board%1:06:00:: 03025513 1 0 -choppy%5:00:00:stormy:00 00305464 2 0 -choppy%5:00:00:sudden:00 01143750 1 0 -chopsteak%1:13:00:: 07664121 1 0 -chopstick%1:06:00:: 03025755 1 0 -choragic%3:01:00:: 02695647 1 0 -choragus%1:18:00:: 09920106 1 0 -choral%1:10:00:: 07036328 1 0 -choral%3:01:01:: 02874282 1 0 -choral_ode%1:10:00:: 06384165 1 0 -chorale%1:10:00:: 07036328 1 0 -chorale_prelude%1:10:00:: 07040693 1 0 -chorally%4:02:00:: 00135998 1 0 -chord%1:10:00:: 06869951 2 2 -chord%1:25:00:: 13874927 1 2 -chord%2:30:00:: 00482180 2 0 -chord%2:36:00:: 01727354 1 0 -chordal%3:01:00:: 02695765 1 0 -chordamesoderm%1:05:00:: 01464318 1 0 -chordata%1:05:00:: 01465994 1 0 -chordate%1:05:00:: 01466257 1 0 -chordate%3:01:00:: 02695966 1 0 -chordate_family%1:05:00:: 01466828 1 0 -chordate_genus%1:05:00:: 01466996 1 0 -chordeiles%1:05:00:: 01836246 1 0 -chorditis%1:26:00:: 14340914 2 0 -chorditis%1:26:01:: 14341001 1 0 -chordomesoderm%1:05:00:: 01464318 1 0 -chordophone%1:06:00:: 03025886 1 0 -chordospartium%1:20:00:: 12514802 1 0 -chore%1:04:00:: 00719705 1 7 -chorea%1:26:00:: 14094881 2 0 -chorea%1:26:01:: 14262336 1 0 -choreic_abasia%1:26:00:: 14549491 1 0 -choreograph%2:31:00:: 00710415 2 0 -choreograph%2:36:00:: 01708317 1 5 -choreographer%1:18:00:: 09920283 1 0 -choreographic%3:01:00:: 02938143 1 1 -choreography%1:04:00:: 00528397 1 2 -choreography%1:10:00:: 07020763 2 0 -choreography%1:10:01:: 06816445 3 0 -choric%3:01:00:: 02874543 1 0 -chorine%1:18:00:: 09920901 1 2 -chorioallantoic_membrane%1:05:00:: 01473620 1 0 -chorioallantois%1:05:00:: 01473620 1 0 -choriomeningitis%1:26:00:: 14095128 1 0 -chorion%1:05:00:: 01472939 1 0 -chorionic%3:01:00:: 02874700 1 0 -chorionic_villus%1:05:00:: 01473188 1 0 -chorionic_villus_biopsy%1:09:00:: 05742962 1 0 -chorionic_villus_sampling%1:09:00:: 05742962 1 0 -chorioretinitis%1:26:00:: 14354847 1 0 -choriotis%1:05:00:: 02019308 1 0 -choriotis_australis%1:05:00:: 02019438 1 0 -chorister%1:18:00:: 09920771 1 0 -chorizagrotis%1:05:00:: 02296756 1 0 -chorizagrotis_auxiliaris%1:05:02:: 02296912 1 0 -chorizema%1:20:00:: 12515219 1 0 -chorizo%1:13:00:: 07676520 1 0 -choroid%1:08:00:: 05313115 1 0 -choroid_coat%1:08:00:: 05313115 1 0 -choroid_plexus%1:08:00:: 05506648 1 0 -choroid_vein%1:08:00:: 05363428 1 0 -choroidal_artery%1:08:00:: 05342070 1 0 -choropleth_map%1:06:00:: 03026093 1 0 -chortle%1:10:00:: 07127563 1 0 -chortle%2:29:00:: 00031663 1 4 -chorus%1:10:00:: 07050177 3 1 -chorus%1:11:00:: 07379695 1 3 -chorus%1:14:00:: 08187837 2 1 -chorus%1:14:01:: 08188449 4 0 -chorus%1:14:02:: 08187988 5 0 -chorus%2:32:00:: 00986750 1 1 -chorus%2:36:00:: 01730799 2 0 -chorus_frog%1:05:00:: 01652026 1 0 -chorus_girl%1:18:00:: 09920901 1 0 -chorus_line%1:14:00:: 08188449 1 0 -chosen%1:14:00:: 08386853 3 0 -chosen%1:15:00:: 08954975 2 0 -chosen%1:18:00:: 09921034 1 3 -chosen_people%1:14:00:: 08483136 1 0 -chou%1:13:00:: 07628576 3 0 -chou%1:13:01:: 07713895 2 0 -chou%1:14:00:: 08479407 1 0 -chou_dynasty%1:14:00:: 08479407 1 0 -chou_en-lai%1:18:00:: 11406314 1 0 -chough%1:05:00:: 01579729 1 0 -chouse%2:33:00:: 01104624 1 0 -chow%1:05:00:: 02112137 3 0 -chow%1:13:00:: 07565161 2 0 -chow%1:14:00:: 08479407 1 0 -chow_chow%1:05:00:: 02112137 1 0 -chow_dynasty%1:14:00:: 08479407 1 0 -chow_line%1:14:00:: 08432820 1 0 -chow_mein%1:13:00:: 07865484 1 0 -chowchow%1:13:01:: 07642833 2 0 -chowchow%1:13:02:: 07825312 1 0 -chowder%1:13:00:: 07587441 1 0 -chrestomathy%1:10:00:: 06400849 1 0 -chris_evert%1:18:00:: 10963815 1 0 -chrism%1:06:00:: 03026350 1 0 -chrisom%1:06:00:: 03026350 1 0 -chrissie_evert%1:18:00:: 10963815 1 0 -christ%1:18:00:: 11083656 1 21 -christ%1:18:01:: 09537660 2 0 -christ's-thorn%1:20:01:: 13143285 2 0 -christ's-thorn%1:20:02:: 13143758 1 0 -christ's_resurrection%1:11:00:: 07312018 1 0 -christ_plant%1:20:00:: 12921868 1 0 -christ_thorn%1:20:00:: 12921868 1 0 -christ_within%1:16:00:: 09184668 1 0 -christchurch%1:15:00:: 08973064 1 0 -christella%1:20:00:: 13228536 1 0 -christen%2:32:00:: 01028079 1 0 -christendom%1:14:00:: 08082236 1 1 -christening%1:04:00:: 01038375 1 1 -christiaan_eijkman%1:18:00:: 10954328 1 0 -christiaan_huygens%1:18:00:: 11070218 1 0 -christian%1:18:00:: 09678009 1 10 -christian%3:00:00:: 00411009 2 1 -christian%3:01:00:: 02952275 1 36 -christian_bible%1:10:00:: 06431740 1 0 -christian_church%1:14:00:: 08082602 1 2 -christian_church%1:14:02:: 08087776 2 0 -christian_dior%1:18:00:: 10936716 1 0 -christian_era%1:28:00:: 15249096 1 0 -christian_friedrich_hebbel%1:18:00:: 11037836 1 0 -christian_friedrich_schonbein%1:18:00:: 11285692 1 0 -christian_holy_day%1:28:00:: 15184170 1 0 -christian_huygens%1:18:00:: 11070218 1 0 -christian_johann_doppler%1:18:00:: 10940315 1 0 -christian_liturgy%1:04:00:: 01033345 1 0 -christian_name%1:10:00:: 06337458 1 0 -christian_religion%1:09:00:: 06226057 1 0 -christian_schonbein%1:18:00:: 11285692 1 0 -christian_science%1:09:00:: 06230060 2 0 -christian_science%1:14:00:: 08090803 1 0 -christian_scientist%1:18:00:: 09678581 1 0 -christian_theology%1:09:00:: 06184270 1 0 -christian_year%1:28:00:: 15173064 1 0 -christiania%1:15:00:: 08765069 1 0 -christianisation%1:11:00:: 07355347 1 0 -christianise%2:30:00:: 00385865 1 0 -christianity%1:09:00:: 06226057 1 10 -christianity%1:14:02:: 08082236 2 0 -christianization%1:11:00:: 07355347 1 0 -christianize%2:30:00:: 00385865 2 0 -christianize%2:30:01:: 00386085 1 0 -christianly%5:00:00:christian:00 00411215 1 0 -christie%1:18:00:: 10896987 1 0 -christine_marie_evert%1:18:00:: 10963815 1 0 -christless%5:00:00:unchristian:00 00411599 1 0 -christlike%5:00:00:christian:00 00411353 1 0 -christly%5:00:00:christian:00 00411353 1 0 -christmas%1:28:00:: 15196186 2 2 -christmas%1:28:01:: 15196537 1 3 -christmas_begonia%1:20:00:: 12360958 1 0 -christmas_bells%1:20:00:: 12444095 1 0 -christmas_berry%1:20:01:: 12633061 2 0 -christmas_berry%1:20:02:: 12905412 1 0 -christmas_box%1:21:00:: 13298935 1 0 -christmas_bush%1:20:00:: 12787364 1 0 -christmas_cactus%1:20:00:: 11853356 1 0 -christmas_cake%1:13:00:: 07631511 1 0 -christmas_card%1:10:00:: 06627623 1 4 -christmas_carol%1:10:00:: 07035747 1 0 -christmas_day%1:28:00:: 15196186 1 0 -christmas_disease%1:26:00:: 14170987 1 0 -christmas_eve%1:28:00:: 15196444 1 1 -christmas_factor%1:27:00:: 15071960 1 0 -christmas_fern%1:20:00:: 13199717 1 0 -christmas_flower%1:20:00:: 12920204 1 0 -christmas_gift%1:21:00:: 13269186 1 0 -christmas_green%1:20:00:: 13223265 1 0 -christmas_holly%1:20:00:: 12757816 1 0 -christmas_present%1:21:00:: 13269186 1 0 -christmas_pudding%1:13:00:: 07617708 1 0 -christmas_rose%1:20:00:: 11734300 1 0 -christmas_star%1:20:00:: 12920204 1 0 -christmas_stocking%1:06:00:: 03026506 1 0 -christmas_tree%1:06:00:: 03026626 5 0 -christmas_tree%1:20:01:: 11621281 4 0 -christmas_tree%1:20:02:: 11621547 3 0 -christmas_tree%1:20:03:: 12738599 2 0 -christmas_tree%1:20:04:: 12787364 1 0 -christmasberry%1:20:01:: 12633061 2 0 -christmasberry%1:20:02:: 12905412 1 0 -christmastide%1:28:00:: 15196537 1 0 -christmastime%1:28:00:: 15196537 1 0 -christological%3:01:00:: 02696090 1 0 -christology%1:09:00:: 06184574 2 0 -christology%1:09:01:: 06187013 1 0 -christoph_willibald_von_gluck%1:18:00:: 11002548 1 0 -christopher%1:18:00:: 10897154 1 0 -christopher_carson%1:18:00:: 10884369 1 0 -christopher_columbus%1:18:00:: 10905315 1 0 -christopher_fry%1:18:00:: 10984126 1 0 -christopher_isherwood%1:18:00:: 11074284 1 0 -christopher_marlowe%1:18:00:: 11157719 1 0 -christopher_william_bradshaw_isherwood%1:18:00:: 11074284 1 0 -chroma%1:07:00:: 04975340 1 0 -chromaesthesia%1:09:00:: 05720826 1 0 -chromate%1:27:00:: 14811826 1 0 -chromatic%3:00:00:: 00366691 3 0 -chromatic%3:00:01:: 00409750 2 0 -chromatic%3:01:00:: 02956623 1 0 -chromatic_aberration%1:19:00:: 11438904 1 0 -chromatic_color%1:07:00:: 04959672 1 0 -chromatic_colour%1:07:00:: 04959672 1 0 -chromatic_scale%1:10:00:: 06861196 1 0 -chromatic_vision%1:09:00:: 05656294 1 0 -chromatically%4:02:00:: 00064361 1 0 -chromaticity%1:07:00:: 04975122 1 0 -chromatid%1:08:00:: 05444175 1 0 -chromatin%1:08:00:: 05436080 1 0 -chromatin_granule%1:08:00:: 05436080 1 0 -chromatinic%3:01:00:: 02696234 1 0 -chromatism%1:07:00:: 04976489 2 0 -chromatism%1:26:00:: 14377965 1 0 -chromatogram%1:06:00:: 03026741 1 1 -chromatographic%3:01:00:: 02987910 1 3 -chromatographical%3:01:00:: 02987910 1 0 -chromatographically%4:02:00:: 00137459 1 0 -chromatography%1:22:00:: 13448778 1 5 -chromatography_column%1:06:00:: 03074574 1 0 -chrome%1:27:00:: 14810704 1 3 -chrome%2:30:00:: 00517128 2 0 -chrome%2:35:00:: 01395945 1 0 -chrome-nickel_steel%1:27:00:: 14810854 1 0 -chrome-tungsten_steel%1:27:00:: 14811083 1 0 -chrome_alum%1:27:00:: 14955246 1 0 -chrome_green%1:07:00:: 04967974 2 0 -chrome_green%1:27:00:: 14811196 1 0 -chrome_red%1:07:00:: 04963201 1 0 -chrome_yellow%1:27:00:: 14811556 1 0 -chromesthesia%1:09:00:: 05720826 1 0 -chromic_acid%1:27:00:: 14811706 1 1 -chromite%1:27:00:: 14671125 1 0 -chromium%1:27:00:: 14635092 1 4 -chromium-plate%2:35:00:: 01395945 1 0 -chromium_steel%1:27:00:: 14802921 1 0 -chromoblastomycosis%1:26:00:: 14125333 1 0 -chromogen%1:27:00:: 14671253 1 0 -chromolithography%1:10:00:: 06680333 1 0 -chromophore%1:27:00:: 14808147 1 0 -chromoplast%1:20:00:: 12962847 1 0 -chromosomal%3:01:00:: 02956752 1 0 -chromosomal_aberration%1:26:00:: 14504103 1 0 -chromosomal_anomaly%1:26:00:: 14504103 1 0 -chromosomal_mutation%1:11:00:: 07425011 1 0 -chromosome%1:08:00:: 05442131 1 0 -chromosome_mapping%1:04:00:: 01024643 1 0 -chromosonal_disorder%1:26:00:: 14504103 1 0 -chromosphere%1:17:00:: 09244469 1 0 -chronic%3:00:00:: 00045123 1 9 -chronic%5:00:00:long:02 01438963 2 0 -chronic%5:00:00:usual:00 00489768 3 0 -chronic_bronchitis%1:26:00:: 14146571 1 0 -chronic_eczema%1:26:00:: 14225877 1 0 -chronic_gastritis%1:26:00:: 14346731 1 0 -chronic_glaucoma%1:26:00:: 14256346 1 0 -chronic_glossitis%1:26:00:: 14347190 1 0 -chronic_kidney_failure%1:26:00:: 14115086 1 0 -chronic_leukemia%1:26:00:: 14243877 1 0 -chronic_lymphocytic_leukemia%1:26:00:: 14244003 1 0 -chronic_myelocytic_leukemia%1:26:00:: 14244160 1 0 -chronic_obstructive_pulmonary_disease%1:26:00:: 14146774 1 0 -chronic_pyelonephritis%1:26:00:: 14566766 1 0 -chronic_renal_failure%1:26:00:: 14115086 1 0 -chronic_wasting_disease%1:26:00:: 14262585 1 0 -chronically%4:02:00:: 00140884 2 0 -chronically%4:02:01:: 00141033 1 0 -chronicle%1:10:00:: 06514093 1 0 -chronicle%2:32:00:: 01001136 1 1 -chronicler%1:18:00:: 09921168 1 0 -chronograph%1:06:00:: 03026907 1 0 -chronological%3:01:00:: 02956880 1 0 -chronological_age%1:07:00:: 04924491 1 0 -chronological_record%1:10:00:: 06515662 1 0 -chronological_sequence%1:07:00:: 05044822 1 0 -chronological_succession%1:07:00:: 05044822 1 0 -chronologically%4:02:00:: 00064464 1 1 -chronologise%2:30:00:: 00277399 1 0 -chronologize%2:30:00:: 00277399 1 0 -chronology%1:09:00:: 06156346 3 0 -chronology%1:10:00:: 06503224 2 0 -chronology%1:24:00:: 13845114 1 0 -chronometer%1:06:00:: 03027001 1 0 -chronoperates%1:05:00:: 01720117 1 0 -chronoperates_paradoxus%1:05:00:: 01720266 1 0 -chronoscope%1:06:00:: 03027108 1 0 -chrosomal_abnormality%1:26:00:: 14504103 1 0 -chrysalis%1:05:00:: 02312640 1 0 -chrysanthemum%1:20:00:: 11950345 2 0 -chrysanthemum%1:20:01:: 11951271 1 1 -chrysanthemum_balsamita%1:20:00:: 12021499 1 0 -chrysanthemum_cinerariifolium%1:20:00:: 12022382 1 0 -chrysanthemum_coccineum%1:20:00:: 12022054 1 0 -chrysanthemum_coronarium%1:20:00:: 11950877 1 0 -chrysanthemum_coronarium_spatiosum%1:20:00:: 11951052 1 0 -chrysanthemum_dog%1:05:00:: 02097474 1 0 -chrysanthemum_frutescens%1:20:00:: 11925898 1 0 -chrysanthemum_lacustre%1:20:00:: 11990627 1 0 -chrysanthemum_leucanthemum%1:20:00:: 11989869 1 0 -chrysanthemum_maximum%1:20:00:: 11990167 1 0 -chrysanthemum_maximum_maximum%1:20:00:: 11990313 1 0 -chrysanthemum_morifolium%1:20:00:: 11961100 1 0 -chrysanthemum_parthenium%1:20:00:: 12023108 1 0 -chrysanthemum_ptarmiciflorum%1:20:00:: 12023407 1 0 -chrysanthemum_segetum%1:20:00:: 11950686 1 0 -chrysaora%1:05:00:: 01911271 1 0 -chrysaora_quinquecirrha%1:05:00:: 01911403 1 0 -chrysarobin%1:06:00:: 02732696 1 0 -chrysemys%1:05:00:: 01669527 1 0 -chrysemys_picta%1:05:00:: 01669654 1 0 -chrysobalanus%1:20:00:: 12624873 1 0 -chrysobalanus_icaco%1:20:00:: 12625003 1 0 -chrysoberyl%1:27:00:: 14671372 1 0 -chrysochloridae%1:05:00:: 01890274 1 0 -chrysochloris%1:05:00:: 01890411 1 0 -chrysolepis%1:20:00:: 12264621 1 0 -chrysolepis_chrysophylla%1:20:00:: 12264786 1 0 -chrysolepis_sempervirens%1:20:00:: 12265083 1 0 -chrysolite%1:27:00:: 14812047 1 0 -chrysolophus%1:05:00:: 01804029 1 0 -chrysolophus_pictus%1:05:00:: 01804163 1 0 -chrysomelid%1:05:00:: 02169497 1 0 -chrysomelidae%1:05:00:: 02169345 1 0 -chrysophrys%1:05:00:: 02592866 1 0 -chrysophrys_auratus%1:05:00:: 02593019 1 0 -chrysophrys_australis%1:05:00:: 02593191 1 0 -chrysophyceae%1:05:00:: 01400575 1 0 -chrysophyllum%1:20:00:: 12773488 1 0 -chrysophyllum_cainito%1:20:00:: 12773651 1 0 -chrysophyllum_oliviforme%1:20:00:: 12773917 1 0 -chrysophyta%1:05:00:: 01399772 1 0 -chrysopid%1:05:00:: 02264885 1 0 -chrysopidae%1:05:00:: 02264734 1 0 -chrysoprase%1:27:00:: 14812233 1 0 -chrysopsis%1:20:00:: 11951385 1 0 -chrysopsis_mariana%1:20:00:: 11951820 1 0 -chrysopsis_villosa%1:20:00:: 11981475 1 0 -chrysosplenium%1:20:00:: 12796617 1 0 -chrysosplenium_americanum%1:20:00:: 12797025 1 0 -chrysothamnus%1:20:00:: 11952153 1 0 -chrysothamnus_nauseosus%1:20:00:: 11952541 1 0 -chrysotherapy%1:04:00:: 00706222 1 0 -chrysotile%1:27:00:: 14725809 1 0 -chthonian%5:00:00:infernal:00 01303946 1 0 -chthonic%5:00:00:infernal:00 01303946 1 0 -chu_kiang%1:17:00:: 09483340 1 0 -chuang-tzu%1:18:00:: 09534058 1 0 -chub%1:05:01:: 01441272 1 0 -chub_mackerel%1:05:00:: 02624987 1 0 -chubbiness%1:07:00:: 05001089 1 0 -chubby%5:00:00:fat:01 00986766 1 0 -chuck%1:06:00:: 03027250 3 0 -chuck%1:13:00:: 07656452 2 0 -chuck%1:13:02:: 07565161 1 1 -chuck%2:29:00:: 00076400 4 0 -chuck%2:35:00:: 01514525 1 2 -chuck%2:35:01:: 01243661 3 0 -chuck%2:40:00:: 02227362 2 0 -chuck-full%5:00:00:full:00 01084297 1 0 -chuck-will's-widow%1:05:00:: 01835918 1 0 -chuck_berry%1:18:00:: 10849083 1 0 -chuck_out%2:35:00:: 01468576 2 0 -chuck_out%2:40:00:: 02222318 1 0 -chuck_short_ribs%1:13:00:: 07656645 1 0 -chuck_up_the_sponge%2:33:00:: 01083044 1 0 -chuck_wagon%1:06:00:: 03027505 1 1 -chucker-out%1:18:00:: 09869009 1 0 -chuckhole%1:17:00:: 09398076 1 0 -chuckle%1:10:00:: 07127563 1 1 -chuckle%2:29:00:: 00031663 1 8 -chuckwalla%1:05:00:: 01678343 1 0 -chuddar%1:06:00:: 02998841 1 0 -chufa%1:20:00:: 12150969 1 0 -chuff%2:29:00:: 00006802 1 1 -chuffed%5:00:00:pleased:00 01805618 1 0 -chug%1:11:00:: 07379852 1 0 -chug%2:39:00:: 02179372 1 1 -chukaku-ha%1:14:00:: 08018983 1 0 -chukchi%1:10:00:: 06928234 2 0 -chukchi%1:18:00:: 09921291 1 0 -chukchi_language%1:10:00:: 06928234 1 0 -chukchi_peninsula%1:17:00:: 09244683 1 0 -chukchi_sea%1:17:00:: 09244831 1 0 -chukka%1:06:00:: 03027625 2 0 -chukka%1:28:00:: 15255641 1 0 -chukka_boot%1:06:00:: 03027625 1 0 -chukker%1:28:00:: 15255641 1 0 -chukker-brown%5:00:00:chromatic:00 00383957 1 0 -chula_vista%1:15:00:: 09062961 1 0 -chum%1:05:00:: 02536685 3 0 -chum%1:06:00:: 03027797 2 0 -chum%1:18:00:: 09877951 1 0 -chum_salmon%1:05:00:: 02536685 1 0 -chum_up%2:41:00:: 02588871 1 0 -chumminess%1:07:00:: 04653627 1 0 -chummy%5:00:00:close:02 00452114 2 0 -chummy%5:00:00:friendly:01 01075524 1 0 -chump%1:18:00:: 09921409 1 1 -chump_change%1:21:00:: 13388000 1 0 -chunga%1:05:00:: 02014524 1 0 -chunga_burmeisteri%1:05:00:: 02014524 1 0 -chungking%1:15:00:: 08725161 1 0 -chunk%1:14:00:: 07961016 1 3 -chunk%1:23:00:: 13758197 2 0 -chunk%2:31:13:: 00657016 2 0 -chunk%2:35:00:: 01385920 1 0 -chunking%1:09:00:: 05731568 1 0 -chunky%5:00:00:short:03 02386962 2 0 -chunky%5:00:00:unshapely:00 02141021 1 1 -chunnel%1:06:00:: 03027935 1 0 -church%1:04:00:: 01032368 3 10 -church%1:06:00:: 03028079 2 59 -church%1:14:00:: 08082602 1 60 -church%1:14:01:: 08082899 4 0 -church%2:38:00:: 02079151 1 0 -church-state%1:14:00:: 08177863 1 1 -church_bell%1:06:00:: 03028596 1 3 -church_bench%1:06:00:: 03920867 1 0 -church_building%1:06:00:: 03028079 1 0 -church_calendar%1:28:00:: 15181718 1 0 -church_doctrine%1:10:00:: 06789411 1 0 -church_father%1:18:00:: 09921792 1 3 -church_festival%1:28:00:: 15162210 1 0 -church_hat%1:06:00:: 03028785 1 0 -church_key%1:06:00:: 03029066 1 0 -church_member%1:18:00:: 09922485 1 1 -church_mode%1:10:00:: 06860481 1 0 -church_mouse%1:05:00:: 02451912 1 0 -church_music%1:10:00:: 07033007 1 0 -church_of_christ_scientist%1:14:00:: 08090803 1 0 -church_of_england%1:14:00:: 08087981 1 4 -church_of_ireland%1:14:00:: 08088675 1 0 -church_of_jesus_christ_of_latter-day_saints%1:14:00:: 08089205 1 0 -church_of_rome%1:14:00:: 08083599 1 1 -church_of_scientology%1:14:00:: 08100033 1 0 -church_of_the_brethren%1:14:00:: 08090547 1 0 -church_officer%1:18:00:: 09922799 1 0 -church_property%1:21:00:: 13247818 1 0 -church_roll%1:10:00:: 06496773 1 1 -church_school%1:14:00:: 08284221 1 0 -church_service%1:04:00:: 01032368 1 1 -church_slavic%1:10:00:: 06944156 1 0 -church_tower%1:06:00:: 03029197 1 1 -church_year%1:28:00:: 15173064 1 0 -churchgoer%1:18:00:: 09922485 1 1 -churchgoing%5:00:00:religious:00 01783434 1 2 -churchill%1:15:00:: 08824323 3 0 -churchill%1:18:00:: 10897312 2 0 -churchill%1:18:01:: 10897594 1 0 -churchill_downs%1:06:00:: 03028907 1 0 -churchillian%3:01:00:: 02696386 1 1 -churchly%5:00:00:religious:00 01783522 1 0 -churchman%1:18:00:: 09928136 1 1 -churchwarden%1:18:00:: 09922659 1 0 -churchyard%1:15:00:: 08647354 1 5 -churidars%1:06:00:: 03029296 1 0 -churl%1:18:00:: 10410815 1 0 -churl%1:18:01:: 10148305 3 0 -churl%1:18:02:: 10357737 2 0 -churlish%5:00:00:ill-natured:00 01136127 2 0 -churlish%5:00:00:ungracious:00 01142595 1 0 -churlishly%4:02:00:: 00284656 1 0 -churn%1:06:00:: 03029445 1 0 -churn%2:35:00:: 01418389 1 1 -churn%2:38:00:: 01885430 2 0 -churn_out%2:36:00:: 01625044 2 0 -churn_out%2:36:01:: 01714095 1 0 -churn_up%2:37:00:: 01808374 1 0 -churned-up%5:00:02:agitated:02 00087837 1 0 -churning%5:00:00:agitated:02 00087597 2 1 -churning%5:00:02:agitated:02 00087837 1 1 -churr%2:32:00:: 01052562 1 0 -churrigueresco%5:00:00:fancy:00 01794995 1 0 -churrigueresque%5:00:00:fancy:00 01794995 1 0 -chute%1:06:00:: 03029603 2 1 -chute%1:06:01:: 03888257 1 1 -chute%2:38:00:: 01968275 1 0 -chute-the-chute%1:06:00:: 04102406 1 0 -chutney%1:13:00:: 07823105 1 0 -chutzpa%1:07:00:: 04916200 1 0 -chutzpah%1:07:00:: 04916200 1 0 -chutzpanik%1:18:00:: 09921673 1 0 -chuvash%1:10:00:: 06927952 2 0 -chuvash%1:18:00:: 09735654 1 0 -chylaceous%3:01:00:: 02851122 1 0 -chyle%1:08:00:: 05403849 1 0 -chylifactive%3:01:00:: 02851296 1 0 -chylifactory%3:01:00:: 02851296 1 0 -chyliferous%3:01:00:: 02851451 1 0 -chylific%3:01:00:: 02851296 1 0 -chyloderma%1:26:00:: 14367649 1 0 -chylomicron%1:27:00:: 14812359 1 0 -chylous%3:01:00:: 02851122 1 0 -chyme%1:27:00:: 14583400 1 0 -chymosin%1:27:00:: 15004317 1 0 -chytridiaceae%1:20:00:: 12978232 1 0 -chytridiales%1:20:00:: 12977795 1 0 -chytridiomycetes%1:20:00:: 12977565 1 0 -ci%1:23:00:: 13645599 1 0 -ci%5:00:00:cardinal:00 02196211 1 0 -cia%1:14:00:: 08124971 1 0 -cialis%1:06:00:: 04383537 1 0 -ciao%1:10:00:: 06631921 1 0 -ciardi%1:18:00:: 10897796 1 0 -cibotium%1:20:00:: 13190917 1 0 -cibotium_barometz%1:20:00:: 13191148 1 0 -cicada%1:05:00:: 02256656 1 1 -cicada_killer%1:05:00:: 02216211 1 0 -cicadellidae%1:05:00:: 02258780 1 0 -cicadidae%1:05:00:: 02256365 1 0 -cicala%1:05:00:: 02256656 1 0 -cicatrice%1:26:00:: 14363483 1 0 -cicatrise%2:35:00:: 01551679 1 0 -cicatrix%1:26:00:: 14363483 1 0 -cicatrize%2:35:00:: 01551679 1 0 -cicer%1:20:00:: 12515597 1 0 -cicer_arietinum%1:20:00:: 12515711 1 0 -cicero%1:18:00:: 10897946 2 0 -cicero%1:23:00:: 13712890 1 0 -cicerone%1:18:00:: 09923003 1 0 -cichlid%1:05:00:: 02585872 1 0 -cichlid_fish%1:05:00:: 02585872 1 0 -cichlidae%1:05:00:: 02585732 1 0 -cichorium%1:20:00:: 11952900 1 0 -cichorium_endivia%1:20:00:: 11953339 1 0 -cichorium_intybus%1:20:00:: 11953038 1 0 -cicily_isabel_fairfield%1:18:00:: 11382398 1 0 -cicindelidae%1:05:00:: 02164973 1 0 -ciconia%1:05:00:: 02002384 1 0 -ciconia_ciconia%1:05:00:: 02002556 1 0 -ciconia_nigra%1:05:00:: 02002724 1 0 -ciconiidae%1:05:00:: 02001821 1 0 -ciconiiformes%1:05:00:: 02001428 1 0 -cicuta%1:20:00:: 12934776 1 0 -cicuta_verosa%1:20:00:: 12934985 1 0 -cid%1:14:00:: 08141092 1 0 -cidade_de_praia%1:15:00:: 08718094 1 0 -cider%1:13:00:: 07921455 1 0 -cider_gum%1:20:00:: 12337922 1 0 -cider_mill%1:06:00:: 03029812 1 0 -cider_vinegar%1:13:00:: 07829248 1 0 -ciderpress%1:06:00:: 03029925 1 0 -cigar%1:06:00:: 03030035 1 7 -cigar-box_cedar%1:20:00:: 12700711 1 0 -cigar-shaped%5:00:00:pointed:00 01810613 1 0 -cigar_band%1:06:00:: 03030262 1 0 -cigar_box%1:06:00:: 03030353 1 1 -cigar_butt%1:06:00:: 03030433 1 1 -cigar_cutter%1:06:00:: 03030557 1 0 -cigar_lighter%1:06:00:: 03031422 1 0 -cigar_smoker%1:18:00:: 09923186 1 0 -cigaret%1:06:00:: 03030663 1 0 -cigarette%1:06:00:: 03030663 1 16 -cigarette_burn%1:07:00:: 04694293 1 0 -cigarette_butt%1:06:00:: 03030880 1 0 -cigarette_case%1:06:00:: 03031012 1 0 -cigarette_holder%1:06:00:: 03031152 1 0 -cigarette_lighter%1:06:00:: 03031422 1 0 -cigarette_paper%1:27:00:: 14812566 1 0 -cigarette_smoker%1:18:00:: 09923101 1 0 -cigarfish%1:05:00:: 02581642 1 0 -cigarillo%1:06:00:: 03031306 1 0 -cilantro%1:13:00:: 07817315 2 0 -cilantro%1:20:00:: 12936469 1 0 -cilial%3:01:00:: 02845379 1 0 -ciliary%3:01:00:: 02845585 1 0 -ciliary%3:01:01:: 02845379 2 0 -ciliary%3:01:02:: 02845244 3 0 -ciliary_artery%1:08:00:: 05342214 1 0 -ciliary_body%1:08:00:: 05313344 1 0 -ciliary_veins%1:08:00:: 05363559 1 0 -ciliata%1:05:00:: 01394901 1 0 -ciliate%1:05:00:: 01395254 1 1 -ciliate%3:01:00:: 02845244 2 0 -ciliate%3:01:01:: 02845379 1 0 -ciliate%5:00:00:rough:02 02246182 3 0 -ciliated%5:00:00:rough:02 02246182 1 0 -ciliated_protozoan%1:05:00:: 01395254 1 3 -cilioflagellata%1:05:00:: 01417041 1 0 -ciliophora%1:05:00:: 01394901 1 0 -ciliophoran%1:05:00:: 01395254 1 0 -cilium%1:05:00:: 01458105 1 1 -cilium%1:08:00:: 05314919 2 0 -cim%1:14:00:: 08342670 1 0 -cimabue%1:18:00:: 10898133 1 0 -cimarron%1:05:00:: 02415577 2 0 -cimarron%1:17:00:: 09244972 1 0 -cimarron_river%1:17:00:: 09244972 1 0 -cimetidine%1:06:00:: 03031553 1 0 -cimex%1:05:00:: 02240377 1 0 -cimex_lectularius%1:05:00:: 02240517 1 0 -cimicidae%1:05:00:: 02240223 1 0 -cimicifuga%1:20:00:: 11728350 1 0 -cimicifuga_americana%1:20:00:: 11728769 1 0 -cimicifuga_foetida%1:20:00:: 11729142 1 0 -cimicifuga_racemosa%1:20:00:: 11728945 1 0 -cimmerian%5:00:00:dark:01 00274373 1 0 -cinch%1:04:00:: 00498427 3 0 -cinch%1:04:01:: 00575365 1 2 -cinch%1:06:00:: 03031756 2 0 -cinch%2:31:00:: 00635794 3 0 -cinch%2:31:01:: 00663819 2 0 -cinch%2:35:00:: 01302982 1 0 -cinchona%1:20:00:: 12663804 2 0 -cinchona%1:20:01:: 12664710 1 0 -cinchona_bark%1:20:00:: 12664710 1 0 -cinchona_calisaya%1:20:00:: 12664187 1 0 -cinchona_cordifolia%1:20:00:: 12664005 1 0 -cinchona_lancifolia%1:20:00:: 12664005 1 0 -cinchona_ledgeriana%1:20:00:: 12664187 1 0 -cinchona_officinalis%1:20:00:: 12664187 1 0 -cinchona_pubescens%1:20:00:: 12664469 1 0 -cinchona_tree%1:20:00:: 12664469 1 0 -cinchonine%1:27:00:: 14713341 1 0 -cincinnati%1:15:00:: 09130883 1 2 -cincinnatus%1:18:00:: 10898308 1 0 -cinclidae%1:05:00:: 01601550 1 0 -cinclus%1:05:00:: 01601919 1 0 -cinclus_aquaticus%1:05:00:: 01602080 1 0 -cinclus_mexicanus%1:05:00:: 01602209 1 0 -cinco_de_mayo%1:28:00:: 15158450 1 0 -cincture%1:06:00:: 03438071 1 0 -cinder%1:17:00:: 09245212 1 0 -cinder_block%1:06:00:: 03031957 1 0 -cinder_pig%1:27:00:: 14812763 1 0 -cinder_track%1:06:00:: 03032158 1 0 -cinderella%1:18:00:: 09923263 1 0 -cinderella%1:18:01:: 09591973 2 0 -cine-camera%1:06:00:: 03789171 1 0 -cine-film%1:06:00:: 03789400 1 0 -cine_projector%1:06:00:: 03795976 1 0 -cinema%1:06:00:: 03032252 2 0 -cinema%1:10:00:: 06262567 1 1 -cinema_verite%1:10:00:: 06617011 1 0 -cinematic%3:01:00:: 02696795 1 3 -cinematise%2:36:00:: 01712298 1 0 -cinematize%2:36:00:: 01712298 1 0 -cinematographer%1:18:00:: 09889539 1 0 -cinematography%1:04:00:: 00907919 1 0 -cineraria%1:20:00:: 12001707 1 0 -cineraria_maritima%1:20:00:: 12011620 1 0 -cinerarium%1:06:00:: 03073694 1 0 -cinerary%3:01:00:: 02951184 1 0 -cingulate_gyrus%1:08:00:: 05496592 1 0 -cingulum%1:08:00:: 05228732 1 0 -cinnabar%1:05:00:: 02305929 2 0 -cinnabar%1:27:00:: 14671587 1 0 -cinnabar%5:00:00:chromatic:00 00385188 1 0 -cinnabar_chanterelle%1:20:00:: 13004992 1 0 -cinnabar_moth%1:05:00:: 02305929 1 0 -cinnamene%1:27:00:: 14595543 1 0 -cinnamomum%1:20:00:: 11704401 1 0 -cinnamomum_camphora%1:20:00:: 11704620 1 0 -cinnamomum_cassia%1:20:00:: 11705171 1 0 -cinnamomum_loureirii%1:20:00:: 11705573 1 0 -cinnamomum_zeylanicum%1:20:00:: 11704791 1 0 -cinnamon%1:13:00:: 07814203 3 0 -cinnamon%1:20:00:: 11704791 2 0 -cinnamon%1:20:02:: 11705052 1 0 -cinnamon-colored%5:00:00:colored:00 00396958 1 0 -cinnamon-coloured%5:00:00:colored:00 00396958 1 0 -cinnamon-red%5:00:00:colored:00 00397108 1 0 -cinnamon-scented%5:00:00:odorous:00 01056242 1 0 -cinnamon_bark%1:20:00:: 11705052 2 0 -cinnamon_bark%1:20:01:: 11705776 1 0 -cinnamon_bear%1:05:00:: 02133400 1 0 -cinnamon_bread%1:13:00:: 07681691 1 0 -cinnamon_bun%1:13:00:: 07693048 1 0 -cinnamon_colored%5:00:00:colored:00 00396958 1 0 -cinnamon_coloured%5:00:00:colored:00 00396958 1 0 -cinnamon_fern%1:20:00:: 12953919 1 0 -cinnamon_roll%1:13:00:: 07693048 1 0 -cinnamon_snail%1:13:00:: 07693048 1 0 -cinnamon_stone%1:27:00:: 14903466 1 0 -cinnamon_toast%1:13:00:: 07689490 1 0 -cinnamon_vine%1:20:00:: 12088495 1 0 -cinque%1:23:00:: 13744521 1 0 -cinquefoil%1:06:00:: 03032453 2 0 -cinquefoil%1:20:00:: 12636885 1 0 -cio%1:14:00:: 08234298 1 0 -cipher%1:10:00:: 06355307 5 0 -cipher%1:10:01:: 06254239 1 1 -cipher%1:18:00:: 09923418 4 0 -cipher%1:23:00:: 13740168 3 0 -cipher%1:23:01:: 13742358 2 0 -cipher%2:31:00:: 00637259 2 0 -cipher%2:32:00:: 00994076 1 1 -cipro%1:06:00:: 03032576 1 0 -ciprofloxacin%1:06:00:: 03032576 1 0 -cira%1:14:00:: 08019281 1 0 -circadian%3:01:00:: 02978635 1 0 -circadian_rhythm%1:28:00:: 15135700 1 0 -circaea%1:20:00:: 12341412 1 0 -circaea_alpina%1:20:00:: 12341795 1 0 -circaea_lutetiana%1:20:00:: 12341931 1 0 -circaetus%1:05:00:: 01610426 1 0 -circassian%1:10:00:: 06978527 3 0 -circassian%1:14:00:: 08488675 2 0 -circassian%1:18:00:: 09639382 1 0 -circassian_walnut%1:20:00:: 12319414 1 0 -circe%1:18:00:: 09493983 1 0 -circinate%5:00:00:rounded:00 02044860 1 0 -circinus%1:17:00:: 09245370 1 0 -circis_siliquastrum%1:20:00:: 12513613 1 0 -circle%1:04:00:: 00295172 4 2 -circle%1:06:00:: 03032811 8 0 -circle%1:06:01:: 04465933 5 0 -circle%1:06:02:: 03033019 7 0 -circle%1:06:03:: 04036494 6 0 -circle%1:14:00:: 08240169 2 10 -circle%1:25:00:: 13873502 1 15 -circle%1:25:01:: 13873917 3 4 -circle%2:35:12:: 01522716 3 0 -circle%2:38:00:: 02044278 2 4 -circle%2:38:01:: 01911339 1 6 -circle_around%2:38:00:: 02082355 1 0 -circle_of_curvature%1:07:00:: 05102889 1 0 -circle_of_willis%1:08:00:: 05342374 1 0 -circle_round%2:38:00:: 02082355 1 0 -circlet%1:06:00:: 03033267 2 0 -circlet%1:25:00:: 13873849 1 0 -circuit%1:04:00:: 00310666 2 3 -circuit%1:04:01:: 00295172 7 0 -circuit%1:06:00:: 03033362 1 4 -circuit%1:06:01:: 04038109 6 0 -circuit%1:14:00:: 08330514 5 0 -circuit%1:15:00:: 08616985 3 0 -circuit%1:15:01:: 08514592 4 0 -circuit%2:38:00:: 02082527 1 0 -circuit_board%1:06:00:: 03033986 1 0 -circuit_breaker%1:06:00:: 03034244 1 0 -circuit_card%1:06:00:: 03033986 1 0 -circuit_court_of_appeals%1:14:00:: 08330298 1 0 -circuitous%5:00:00:indirect:00 00763013 2 0 -circuitous%5:00:00:indirect:02 00767349 1 0 -circuitry%1:06:00:: 03034405 1 1 -circular%1:10:00:: 07250339 1 0 -circular%3:00:00:: 02040652 1 6 -circular%5:00:00:cyclic:01 00676271 2 0 -circular-knit%5:00:00:seamless:00 02254546 1 0 -circular_file%1:06:00:: 04555700 1 0 -circular_function%1:24:00:: 13786960 1 0 -circular_measure%1:23:00:: 13610987 1 0 -circular_plane%1:06:00:: 03034516 1 0 -circular_saw%1:06:00:: 03034663 1 0 -circularisation%1:04:00:: 01101753 1 0 -circularise%2:32:00:: 00968211 3 0 -circularise%2:38:00:: 02043665 2 0 -circularise%2:41:00:: 02454649 1 0 -circularity%1:07:00:: 05073559 1 0 -circularization%1:04:00:: 01101753 1 0 -circularize%2:30:00:: 00573571 5 0 -circularize%2:32:00:: 00968211 4 0 -circularize%2:38:00:: 02043665 3 0 -circularize%2:41:00:: 02454649 1 0 -circularize%2:41:02:: 02454548 2 0 -circularly%4:02:00:: 00284813 1 0 -circulate%2:30:00:: 00270005 8 0 -circulate%2:32:00:: 00968211 2 2 -circulate%2:32:01:: 00969873 1 2 -circulate%2:38:00:: 02042237 7 0 -circulate%2:38:01:: 02042404 4 1 -circulate%2:38:02:: 02044278 5 0 -circulate%2:38:03:: 02043190 3 1 -circulate%2:38:04:: 02042843 6 0 -circulating%5:00:00:current:00 00666960 1 0 -circulating_decimal%1:23:00:: 13736376 1 0 -circulating_library%1:06:00:: 03656091 1 0 -circulation%1:04:00:: 00368302 6 0 -circulation%1:10:00:: 06253371 1 4 -circulation%1:11:00:: 07312221 5 0 -circulation%1:19:00:: 11439031 2 1 -circulation%1:23:00:: 13592384 4 0 -circulation%1:23:01:: 13592598 3 0 -circulative%3:01:00:: 02951565 1 0 -circulatory%3:01:01:: 02951306 2 0 -circulatory%3:01:02:: 02951565 1 0 -circulatory_failure%1:26:00:: 14112101 1 0 -circulatory_system%1:08:00:: 05511618 1 1 -circumambulate%2:38:00:: 01911232 1 0 -circumboreal%5:00:00:northern:01 01604453 1 0 -circumcise%2:35:00:: 01274341 2 0 -circumcise%2:35:01:: 01274559 1 0 -circumcision%1:04:00:: 00395654 3 0 -circumcision%1:04:01:: 01031194 2 0 -circumcision%1:28:00:: 15193271 1 0 -circumduction%1:04:00:: 00333733 1 0 -circumference%1:07:00:: 05101261 1 1 -circumference%1:07:01:: 05101675 3 0 -circumference%1:15:00:: 08514592 2 0 -circumferent%5:00:00:close:01 00449332 1 0 -circumferential%5:00:00:peripheral:00 00331716 1 0 -circumflex%1:10:00:: 06823102 1 0 -circumflex_artery%1:08:00:: 05342499 1 0 -circumflex_artery_of_the_thigh%1:08:00:: 05342673 1 0 -circumflex_femoral_vein%1:08:00:: 05364000 1 0 -circumflex_humeral_artery%1:08:00:: 05342854 1 0 -circumflex_iliac_artery%1:08:00:: 05343037 1 0 -circumflex_iliac_vein%1:08:00:: 05363868 1 0 -circumflex_scapular_artery%1:08:00:: 05343218 1 0 -circumflex_vein%1:08:00:: 05363676 1 0 -circumfuse%2:38:00:: 02083396 1 0 -circumlocution%1:10:00:: 07090379 1 0 -circumlocution%1:10:01:: 06761342 2 0 -circumlocutious%5:00:00:indirect:02 00767626 1 0 -circumlocutory%5:00:00:indirect:02 00767626 1 0 -circumnavigate%2:38:00:: 01911526 1 0 -circumnavigation%1:04:00:: 00296263 1 0 -circumpolar%5:00:00:polar:00 02444375 2 0 -circumpolar%5:00:00:visible:00 02515808 1 0 -circumscribe%2:30:00:: 00235368 2 1 -circumscribe%2:35:00:: 01583494 1 1 -circumscribe%2:35:01:: 01583656 3 0 -circumscribed%5:00:00:restricted:00 02002470 1 0 -circumscription%1:04:00:: 01149480 1 0 -circumspect%5:00:00:prudent:00 01898490 1 1 -circumspection%1:07:00:: 04891184 2 0 -circumspection%1:09:00:: 05615500 1 0 -circumspectly%4:02:00:: 00281237 1 0 -circumstance%1:09:00:: 05822746 3 3 -circumstance%1:11:00:: 07451338 4 0 -circumstance%1:26:01:: 13942875 1 39 -circumstance%1:26:02:: 14512817 2 8 -circumstances%1:21:00:: 13329489 2 0 -circumstances%1:26:02:: 14473222 1 2 -circumstantial%5:00:00:specific:00 01103676 1 0 -circumstantial_evidence%1:10:00:: 06735533 1 0 -circumstantially%4:02:00:: 00499208 2 0 -circumstantially%4:02:01:: 00040547 4 0 -circumstantially%4:02:02:: 00402555 3 0 -circumstantially%4:02:03:: 00499340 1 0 -circumstantiate%2:32:00:: 01012792 1 0 -circumvallate%2:33:00:: 01131058 1 0 -circumvent%2:32:00:: 00809654 3 0 -circumvent%2:33:00:: 01104852 2 0 -circumvent%2:33:01:: 01127411 1 0 -circumvention%1:04:00:: 00741685 1 0 -circumvolute%2:42:00:: 02738396 1 0 -circumvolution%1:04:00:: 00342424 1 0 -circumvolve%2:38:00:: 02045790 1 0 -circus%1:04:00:: 00519739 2 2 -circus%1:04:01:: 00552679 3 1 -circus%1:05:00:: 01609549 6 0 -circus%1:06:00:: 03034860 5 0 -circus%1:06:01:: 03035089 4 0 -circus%1:14:00:: 08189211 1 2 -circus_acrobat%1:18:00:: 09923561 1 0 -circus_aeruginosus%1:05:00:: 01609956 1 0 -circus_cyaneus%1:05:00:: 01610226 1 0 -circus_pygargus%1:05:00:: 01610100 1 0 -circus_tent%1:06:00:: 03035252 1 0 -cirio%1:20:00:: 12382233 1 0 -cirque%1:17:00:: 09245515 1 0 -cirrhosis%1:26:00:: 14116482 1 0 -cirrhosis_of_the_liver%1:26:00:: 14116482 1 0 -cirrhus%1:20:00:: 13102946 1 0 -cirriped%1:05:00:: 01998183 1 0 -cirripede%1:05:00:: 01998183 1 0 -cirripedia%1:05:00:: 01998019 1 0 -cirrocumulus%1:17:00:: 09245650 1 0 -cirrocumulus_cloud%1:17:00:: 09245650 1 0 -cirrostratus%1:17:00:: 09245833 1 0 -cirrostratus_cloud%1:17:00:: 09245833 1 0 -cirrus%1:05:00:: 01900341 3 0 -cirrus%1:17:00:: 09245964 2 0 -cirrus%1:20:00:: 13102946 1 0 -cirrus_cloud%1:17:00:: 09245964 1 0 -cirsium%1:20:00:: 11953762 1 0 -cirsium_arvense%1:20:00:: 11954161 1 0 -cirsium_discolor%1:20:00:: 11954345 1 0 -cirsium_eriophorum%1:20:00:: 11954642 1 0 -cirsium_flodmanii%1:20:00:: 11954484 1 0 -cirsium_helenioides%1:20:00:: 11954798 1 0 -cirsium_heterophylum%1:20:00:: 11954798 1 0 -cirsium_lanceolatum%1:20:00:: 11955153 1 0 -cirsium_rivulare%1:20:00:: 11955040 1 0 -cirsium_vulgare%1:20:00:: 11955153 1 0 -cis%1:14:00:: 08295138 1 0 -cisalpine%5:00:00:cismontane:00 00410268 1 0 -cisc%1:07:00:: 04932561 2 0 -cisc%1:14:00:: 08343102 1 0 -cisco%1:05:00:: 02539573 2 0 -cisco%1:13:00:: 07795459 1 0 -cislunar%3:01:00:: 02757446 1 0 -cismontane%3:00:00:: 00410078 1 0 -cissy%5:00:00:unmanly:00 01476325 1 0 -cistaceae%1:20:00:: 12374002 1 0 -cistercian%1:18:00:: 10726388 1 0 -cistern%1:06:00:: 03035510 3 0 -cistern%1:06:01:: 03035715 2 0 -cistern%1:08:00:: 05516711 1 0 -cisterna%1:08:00:: 05516711 1 0 -cistothorus%1:05:00:: 01584994 1 0 -cistothorus_palustris%1:05:00:: 01585287 1 0 -cistothorus_platensis%1:05:00:: 01585422 1 0 -cistron%1:08:00:: 05436752 1 0 -cistus%1:20:00:: 12374238 1 0 -cistus_albidus%1:20:00:: 12374705 1 0 -cistus_ladanifer%1:20:00:: 12374862 1 0 -cistus_ladanum%1:20:00:: 12374862 1 0 -citadel%1:06:00:: 02806088 1 0 -citation%1:05:00:: 02384326 6 0 -citation%1:10:00:: 06706125 1 2 -citation%1:10:01:: 06763681 3 0 -citation%1:10:02:: 06558277 5 0 -citation%1:10:03:: 06613056 4 0 -citation%1:10:04:: 07180570 2 0 -citation_form%1:10:00:: 06300632 1 0 -cite%1:10:00:: 06763681 1 0 -cite%2:32:00:: 01024190 1 13 -cite%2:32:01:: 01023071 2 4 -cite%2:32:02:: 01023259 4 2 -cite%2:32:05:: 01023574 5 0 -cite%2:32:06:: 01015866 6 0 -cite%2:32:07:: 00791134 7 0 -cite%2:36:00:: 01705257 3 3 -citellus%1:05:00:: 02357741 1 0 -citellus_citellus%1:05:00:: 02358584 1 0 -citellus_lateralis%1:05:00:: 02358390 1 0 -citellus_leucurus%1:05:00:: 02357911 1 0 -citellus_parryi%1:05:00:: 02359047 1 0 -citellus_richardsoni%1:05:00:: 02358712 1 0 -citellus_variegatus%1:05:00:: 02358890 1 0 -citharichthys%1:05:00:: 02662081 1 0 -citharichthys_cornutus%1:05:00:: 02662397 1 0 -cither%1:06:00:: 04615226 1 0 -cither%1:06:01:: 03035832 2 0 -cithern%1:06:00:: 03035832 1 0 -citified%5:00:00:urban:00 02052603 1 0 -citify%2:30:00:: 00499642 1 0 -citizen%1:18:00:: 09923673 1 29 -citizen_genet%1:18:00:: 10994097 1 0 -citizenry%1:14:00:: 08160276 1 0 -citizens_committee%1:14:00:: 08325686 1 2 -citizenship%1:07:00:: 04898208 2 0 -citizenship%1:26:00:: 13953467 1 0 -citizenship_day%1:28:00:: 15190652 1 0 -citlaltepetl%1:15:00:: 09173777 1 0 -citole%1:06:00:: 03035832 1 0 -citrange%1:13:00:: 07750299 2 0 -citrange%1:20:00:: 12712320 1 0 -citrange_tree%1:20:00:: 12712320 1 0 -citrate%1:27:00:: 14604184 1 0 -citrate%2:30:00:: 00136673 1 1 -citric%3:01:00:: 03054978 1 0 -citric_acid%1:27:00:: 14812872 1 0 -citric_acid_cycle%1:22:00:: 13505467 1 0 -citrin%1:27:00:: 15093137 1 0 -citrine%1:27:00:: 14813067 1 0 -citron%1:13:00:: 07750449 1 1 -citron%1:20:00:: 12709349 2 0 -citron_tree%1:20:00:: 12709349 1 0 -citroncirus%1:20:00:: 12712149 1 0 -citroncirus_webberi%1:20:00:: 12712320 1 0 -citronwood%1:20:00:: 12709591 1 0 -citronwood%1:20:02:: 11643506 2 0 -citrophilous_mealybug%1:05:00:: 02251067 1 0 -citrophilus_mealybug%1:05:00:: 02251067 1 0 -citrous%3:01:00:: 03055059 2 0 -citrous%3:01:01:: 03055237 1 0 -citrous_fruit%1:13:00:: 07747055 1 0 -citrulline%1:27:00:: 14604286 1 0 -citrullus%1:20:00:: 12163649 1 0 -citrullus_vulgaris%1:20:00:: 12164065 1 0 -citrus%1:13:00:: 07747055 1 1 -citrus%1:20:00:: 12707781 2 0 -citrus_aurantifolia%1:20:00:: 12711984 1 0 -citrus_aurantium%1:20:00:: 12708654 1 0 -citrus_bergamia%1:20:00:: 12708941 1 0 -citrus_decumana%1:20:00:: 12709103 1 0 -citrus_fruit%1:13:00:: 07747055 1 0 -citrus_grandis%1:20:00:: 12709103 1 0 -citrus_limetta%1:20:00:: 12711817 1 0 -citrus_limon%1:20:00:: 12711596 1 0 -citrus_limonia%1:20:00:: 12711398 1 0 -citrus_maxima%1:20:00:: 12709103 1 0 -citrus_mealybug%1:05:00:: 02251593 1 0 -citrus_medica%1:20:00:: 12709349 1 0 -citrus_nobilis%1:20:00:: 12710917 1 0 -citrus_paradisi%1:20:00:: 12709688 1 0 -citrus_reticulata%1:20:00:: 12709901 1 0 -citrus_sinensis%1:20:00:: 12710693 1 0 -citrus_tangelo%1:20:00:: 12711182 1 0 -citrus_tree%1:20:00:: 12707781 1 0 -citrus_whitefly%1:05:00:: 02246941 1 0 -citta_del_vaticano%1:15:00:: 09161452 1 0 -cittern%1:06:00:: 03035832 1 0 -city%1:14:00:: 08226335 3 1 -city%1:15:00:: 08524735 1 103 -city%1:15:01:: 08540903 2 13 -city-born%5:00:00:urban:00 02052603 1 0 -city-bred%5:00:00:urban:00 02052603 1 0 -city-like%5:00:00:urban:00 02052757 1 0 -city-state%1:14:00:: 08177958 1 0 -city_block%1:15:00:: 08642145 1 0 -city_boy%1:18:00:: 09924313 1 0 -city_center%1:15:00:: 08524130 1 0 -city_centre%1:15:00:: 08524130 1 0 -city_council%1:14:00:: 08311282 1 1 -city_desk%1:14:00:: 08118592 1 0 -city_district%1:15:00:: 08537837 1 0 -city_editor%1:18:00:: 09923996 1 0 -city_father%1:18:00:: 09924106 1 0 -city_hall%1:06:00:: 03036022 1 0 -city_limit%1:15:00:: 08541130 1 0 -city_limits%1:15:00:: 08541130 1 0 -city_line%1:15:00:: 08516002 1 0 -city_man%1:18:00:: 09924195 1 0 -city_manager%1:18:00:: 10303814 1 0 -city_of_bridges%1:15:00:: 08851034 1 0 -city_of_brotherly_love%1:15:00:: 09136182 1 0 -city_of_god%1:09:00:: 05628193 1 0 -city_of_light%1:15:00:: 08932568 1 0 -city_of_london%1:15:00:: 08874273 1 0 -city_of_the_angels%1:15:00:: 09063673 1 0 -city_of_westminster%1:15:00:: 08875547 1 0 -city_planning%1:04:00:: 00928542 1 0 -city_room%1:14:00:: 08118592 1 0 -city_slicker%1:18:00:: 09924313 1 0 -city_state%1:14:00:: 08177958 1 0 -city_university%1:06:00:: 03036244 1 1 -cityfied%5:00:00:urban:00 02052603 1 0 -cityscape%1:06:00:: 03036149 2 0 -cityscape%1:09:00:: 06209770 1 0 -citywide%5:00:00:comprehensive:00 00526696 1 0 -ciudad_bolivar%1:15:00:: 09162414 1 0 -ciudad_de_mexico%1:15:00:: 08744236 1 0 -ciudad_juarez%1:15:00:: 08742743 1 0 -ciudad_trujillo%1:15:00:: 08752293 1 0 -ciudad_victoria%1:15:00:: 08742892 1 0 -cive%1:20:00:: 12435152 1 0 -civet%1:05:00:: 02135220 1 0 -civet_bean%1:13:00:: 07729225 1 0 -civet_cat%1:05:01:: 02135220 2 0 -civet_cat%1:05:02:: 02508742 1 0 -civic%3:01:00:: 02697329 1 4 -civic%3:01:02:: 02696920 2 0 -civic_center%1:06:00:: 03078506 1 1 -civic_center%1:15:00:: 08543496 2 0 -civic_duty%1:04:00:: 01131004 1 0 -civic_leader%1:18:00:: 09924437 1 0 -civic_pride%1:07:00:: 04886790 1 0 -civic_responsibility%1:04:00:: 01131004 1 0 -civic_spirit%1:07:00:: 04886790 1 0 -civics%1:09:00:: 06143454 1 0 -civies%1:06:00:: 03036341 1 0 -civil%3:00:00:: 00642379 2 1 -civil%3:00:01:: 00642934 5 0 -civil%3:01:00:: 02696920 4 0 -civil%3:01:01:: 02697116 3 0 -civil%5:00:00:civilian:00 01518161 1 7 -civil%5:00:00:civilized:00 00412355 6 0 -civil-libertarian%5:00:00:liberal:00 00575520 1 0 -civil_action%1:04:00:: 01184230 1 0 -civil_authority%1:18:00:: 10541833 1 1 -civil_censorship%1:04:00:: 00821518 1 0 -civil_contempt%1:04:00:: 01180718 1 0 -civil_day%1:28:00:: 15157041 1 0 -civil_death%1:04:00:: 00232765 2 0 -civil_death%1:26:00:: 13952792 1 0 -civil_defense%1:04:00:: 00960688 1 3 -civil_disobedience%1:04:00:: 01179927 1 0 -civil_engineer%1:18:00:: 09924540 1 0 -civil_engineering%1:09:00:: 06127683 1 0 -civil_law%1:10:01:: 06534659 2 0 -civil_law%1:14:00:: 08453464 1 3 -civil_leader%1:18:00:: 09924437 1 0 -civil_libertarian%1:18:00:: 09924854 1 0 -civil_liberty%1:07:00:: 05183242 2 0 -civil_liberty%1:26:00:: 13995662 1 0 -civil_list%1:21:00:: 13422061 1 0 -civil_marriage%1:04:00:: 01037577 1 0 -civil_officer%1:18:00:: 10541833 1 0 -civil_order%1:26:00:: 13968859 1 0 -civil_right%1:07:00:: 05182563 1 0 -civil_rights_activist%1:18:00:: 09924996 1 0 -civil_rights_leader%1:18:00:: 09924996 1 0 -civil_rights_movement%1:14:00:: 08471369 1 0 -civil_rights_worker%1:18:00:: 09924996 1 0 -civil_servant%1:18:00:: 09925459 1 0 -civil_service%1:14:00:: 08357258 1 2 -civil_suit%1:04:00:: 01183031 1 0 -civil_time%1:28:00:: 15116910 1 0 -civil_union%1:26:00:: 13964591 1 0 -civil_war%1:04:00:: 00962567 1 11 -civil_wrong%1:04:00:: 00733883 1 0 -civil_year%1:28:00:: 15202634 1 0 -civilian%1:18:00:: 09924742 1 2 -civilian%3:00:00:: 01517921 1 8 -civilian_clothing%1:06:00:: 03036469 1 0 -civilian_dress%1:06:00:: 03036469 1 0 -civilian_garb%1:06:00:: 03036469 1 0 -civilisation%1:07:00:: 04811995 4 0 -civilisation%1:14:00:: 08111783 3 0 -civilisation%1:14:01:: 08287844 2 0 -civilisation%1:22:00:: 13448970 1 0 -civilise%2:30:01:: 00411312 2 0 -civilise%2:41:00:: 02388403 1 0 -civilised%3:00:00:: 00411886 1 0 -civilised%5:00:00:refined:01 01947741 2 0 -civility%1:04:00:: 01227908 2 0 -civility%1:07:00:: 04914133 1 0 -civilization%1:07:00:: 04811995 4 0 -civilization%1:14:00:: 08111783 1 17 -civilization%1:14:01:: 08287844 3 0 -civilization%1:22:00:: 13448970 2 0 -civilize%2:30:01:: 00411312 2 0 -civilize%2:41:00:: 02388403 1 0 -civilized%3:00:00:: 00411886 1 3 -civilized%5:00:00:refined:01 01947741 2 0 -civilly%4:02:00:: 00337892 1 0 -civvies%1:06:00:: 03036341 1 0 -cjd%1:26:00:: 14100494 1 0 -cl%1:23:00:: 13623856 2 0 -cl%1:27:00:: 14634591 1 0 -cl%5:00:00:cardinal:00 02197364 1 0 -clabber%1:13:00:: 07850219 1 0 -clabber%2:30:00:: 00457770 1 0 -clack%1:06:00:: 03036701 2 0 -clack%1:11:00:: 07379963 1 0 -clack%2:32:00:: 01036804 3 0 -clack%2:32:01:: 01054849 2 0 -clack%2:39:00:: 02172127 1 0 -clack_valve%1:06:00:: 03036701 1 0 -clad%3:00:00:: 00453726 1 4 -clad%5:00:00:sheathed:00 02155233 2 0 -cladding%1:06:00:: 03315644 1 0 -clade%1:14:00:: 07992308 1 0 -cladistic_analysis%1:09:00:: 06153402 1 0 -cladistics%1:09:00:: 06153402 1 0 -cladode%1:20:00:: 13130014 1 0 -cladogram%1:25:00:: 13912424 1 0 -cladonia%1:20:00:: 12990938 1 0 -cladonia_rangiferina%1:20:00:: 12991184 1 0 -cladoniaceae%1:20:00:: 12990800 1 0 -cladophyll%1:20:00:: 13130014 1 0 -cladorhyncus%1:05:00:: 02035845 1 0 -cladorhyncus_leucocephalum%1:05:00:: 02036228 1 0 -cladrastis%1:20:00:: 12516040 1 0 -cladrastis_kentukea%1:20:00:: 12516165 1 0 -cladrastis_lutea%1:20:00:: 12516165 1 0 -claes_oldenburg%1:18:00:: 11213726 1 0 -claes_thure_oldenburg%1:18:00:: 11213726 1 0 -claforan%1:06:00:: 02989475 1 0 -claim%1:04:00:: 01061945 3 6 -claim%1:07:01:: 05181199 5 2 -claim%1:07:02:: 05175904 4 3 -claim%1:10:00:: 06729864 1 26 -claim%1:10:01:: 07192129 6 0 -claim%1:10:02:: 06730563 2 11 -claim%2:32:00:: 00756338 1 34 -claim%2:32:01:: 00756076 5 1 -claim%2:32:02:: 01018352 3 9 -claim%2:32:03:: 00758333 4 4 -claim%2:40:00:: 02275365 2 14 -claim_agent%1:18:00:: 09769929 1 0 -claim_form%1:10:00:: 06473940 1 0 -claim_jumper%1:18:00:: 09925824 1 0 -claimant%1:18:00:: 09925592 1 8 -claiming_race%1:11:00:: 07461650 1 0 -claims_adjuster%1:18:00:: 09769929 1 0 -claims_adjustor%1:18:00:: 09769929 1 0 -clairvoyance%1:10:00:: 07256695 1 1 -clairvoyant%1:18:00:: 09925953 1 0 -clairvoyant%5:00:00:extrasensory:00 02109012 1 0 -clairvoyant%5:00:00:prophetic:00 01882474 2 0 -clam%1:05:00:: 01956481 1 2 -clam%1:13:00:: 07786686 3 0 -clam%1:21:00:: 13395897 2 0 -clam%2:35:00:: 01383947 1 0 -clam_chowder%1:13:00:: 07587700 1 0 -clam_dip%1:13:00:: 07582970 1 0 -clam_up%2:32:00:: 01041061 1 0 -clamant%5:00:00:imperative:00 00712877 2 0 -clamant%5:00:00:noisy:00 01920367 1 0 -clamatores%1:05:00:: 01547143 1 0 -clamatorial%3:01:00:: 02697677 1 0 -clambake%1:13:00:: 07576969 1 0 -clamber%1:04:00:: 00325502 1 0 -clamber%2:38:00:: 01921772 1 7 -clammily%4:02:00:: 00499448 1 0 -clamminess%1:26:00:: 14536085 1 0 -clammy%5:00:00:wet:01 02548619 1 2 -clammy_chickweed%1:20:00:: 11807108 1 0 -clammy_locust%1:20:00:: 12568649 1 0 -clammyweed%1:20:00:: 11867311 1 0 -clamor%1:10:00:: 07122118 2 0 -clamor%1:11:00:: 07377473 1 5 -clamor%2:32:00:: 00915041 2 3 -clamor%2:32:03:: 00774641 1 5 -clamor%2:41:00:: 02506924 3 0 -clamoring%1:10:00:: 07122118 1 1 -clamorous%5:00:00:noisy:00 01920367 1 1 -clamorously%4:02:00:: 00412708 1 0 -clamour%1:10:00:: 07122118 1 0 -clamour%2:32:00:: 00915041 1 0 -clamour%2:32:03:: 00774641 2 0 -clamouring%1:10:00:: 07122118 1 0 -clamp%1:06:00:: 03036866 1 0 -clamp%2:32:00:: 00747932 2 1 -clamp%2:35:00:: 01343610 1 7 -clamp_down%2:30:10:: 00418921 1 0 -clampdown%1:04:00:: 00808967 1 0 -clams%1:21:00:: 13385216 1 0 -clamshell%1:05:00:: 01956849 1 2 -clamshell%1:06:00:: 03037108 2 0 -clan%1:14:00:: 07969695 1 1 -clan_member%1:18:00:: 10308275 1 0 -clandestine%5:00:00:covert:00 01706465 1 1 -clandestine_operation%1:04:00:: 00983651 1 0 -clang%1:11:00:: 07380144 1 1 -clang%2:39:00:: 02174115 1 3 -clanger%1:04:00:: 00076393 1 0 -clanging%5:00:00:noisy:00 01920834 1 1 -clangor%1:11:00:: 07380144 1 2 -clangor%2:39:00:: 02174461 1 0 -clangor%2:39:01:: 02174115 2 0 -clangoring%1:11:00:: 07380144 1 1 -clangorous%5:00:00:noisy:00 01920834 1 0 -clangour%1:11:00:: 07380144 1 0 -clangour%2:39:00:: 02174461 1 0 -clangula%1:05:00:: 01853763 1 0 -clangula_hyemalis%1:05:00:: 01853870 1 0 -clank%1:11:00:: 07380144 1 0 -clank%2:39:00:: 02174311 1 1 -clanking%5:00:00:noisy:00 01921011 1 2 -clannish%5:00:00:joint:00 02111981 1 1 -clannish%5:00:00:private:00 01858740 2 0 -clannishly%4:02:00:: 00284890 1 0 -clannishness%1:07:00:: 04889337 1 1 -clansman%1:18:00:: 10308275 1 0 -clanswoman%1:18:00:: 10308275 1 0 -clap%1:11:00:: 07376257 1 2 -clap%1:11:01:: 07379963 3 0 -clap%1:26:00:: 14133543 2 0 -clap%2:29:00:: 00034115 4 1 -clap%2:32:00:: 00861929 3 1 -clap%2:35:00:: 01237398 7 0 -clap%2:35:01:: 01237599 6 0 -clap%2:35:03:: 01607590 1 2 -clap%2:38:03:: 02094172 5 0 -clap%2:38:04:: 02094299 2 1 -clap_on%2:35:00:: 01364997 1 0 -clap_together%2:36:00:: 01623365 1 0 -clap_up%2:36:00:: 01623365 1 0 -clapboard%1:27:00:: 15103007 1 0 -clapboard%2:35:00:: 01337412 1 0 -clapped_out%5:00:00:worn:00 02581365 1 0 -clapper%1:06:00:: 03037228 3 0 -clapper%1:08:00:: 05301072 2 0 -clapper%1:18:00:: 09926088 1 0 -clapper_valve%1:06:00:: 03036701 1 0 -clapperboard%1:06:00:: 03037404 1 0 -clapperclaw%2:32:00:: 00845299 2 0 -clapperclaw%2:35:00:: 01306566 1 0 -clappers%1:06:00:: 02869249 1 0 -clapping%1:10:00:: 06691989 1 2 -claptrap%1:10:00:: 07087777 1 0 -claque%1:14:00:: 08223137 1 0 -clara_josephine_schumann%1:18:00:: 11287186 1 0 -clare_booth_luce%1:18:00:: 11143806 1 0 -clarence%1:06:00:: 03037590 1 0 -clarence_darrow%1:18:00:: 10923146 1 0 -clarence_day%1:18:00:: 10925772 1 0 -clarence_malcolm_lowry%1:18:00:: 11142922 1 0 -clarence_seward_darrow%1:18:00:: 10923146 1 0 -clarence_shepard_day_jr.%1:18:00:: 10925772 1 0 -claret%1:07:00:: 04964001 1 1 -claret%1:13:00:: 07895435 2 0 -claret%2:34:00:: 01171799 1 0 -claret_cup%1:13:00:: 07931096 1 0 -clarification%1:04:02:: 00264192 2 0 -clarification%1:10:00:: 07171206 1 0 -clarified_butter%1:13:00:: 07848771 1 0 -clarify%2:30:02:: 00505151 2 0 -clarify%2:32:00:: 00939857 1 3 -clarifying%5:00:00:instructive:00 01323815 1 0 -clarinet%1:06:00:: 03037709 1 0 -clarinet_section%1:14:00:: 08218004 1 0 -clarinetist%1:18:00:: 09926246 1 0 -clarinettist%1:18:00:: 09926246 1 0 -clarion%1:06:00:: 03037899 1 0 -clarion%2:32:00:: 00978055 2 0 -clarion%2:36:00:: 01733994 1 0 -clarion%5:00:00:loud:00 01453381 1 0 -clarity%1:07:00:: 04701460 2 1 -clarity%1:07:01:: 04820258 1 17 -clark%1:18:00:: 10898549 4 0 -clark%1:18:01:: 10898693 3 0 -clark%1:18:02:: 10898929 2 0 -clark%1:18:03:: 10899164 1 0 -clark's_nutcracker%1:05:00:: 01581984 1 0 -clark_cell%1:06:00:: 03038041 1 0 -clark_gable%1:18:00:: 10986437 1 0 -clark_standard_cell%1:06:00:: 03038041 1 0 -clarksburg%1:15:00:: 09155986 1 0 -claro%1:06:00:: 03038190 1 0 -clary%1:20:00:: 12866162 1 0 -clary_sage%1:13:00:: 07820683 2 0 -clary_sage%1:20:00:: 12865037 1 0 -clash%1:04:00:: 00959376 4 0 -clash%1:11:00:: 07380144 1 2 -clash%1:26:00:: 13981137 2 1 -clash%1:26:01:: 13981271 3 0 -clash%2:32:00:: 00805228 3 0 -clash%2:35:00:: 01561143 1 1 -clash%2:42:00:: 02667698 2 0 -clashing%5:00:00:incompatible:01 00508592 1 0 -clasp%1:04:00:: 00812526 2 0 -clasp%1:06:00:: 03038281 1 0 -clasp%2:35:00:: 01216522 1 4 -clasp%2:35:01:: 01222328 4 0 -clasp%2:35:02:: 01548290 3 0 -clasp%2:35:03:: 01548576 2 0 -clasp_knife%1:06:00:: 03038480 1 0 -class%1:04:00:: 00884466 4 4 -class%1:07:00:: 04815177 8 0 -class%1:14:00:: 07997703 1 15 -class%1:14:01:: 07974025 3 6 -class%1:14:02:: 08103777 7 0 -class%1:14:03:: 08238463 2 13 -class%1:14:04:: 08238660 6 0 -class%1:14:05:: 08239808 5 2 -class%2:31:00:: 00654625 1 2 -class-action_suit%1:04:00:: 01183166 1 0 -class-conscious%5:00:00:hierarchical:00 01203703 1 0 -class_acrasiomycetes%1:20:00:: 12975982 1 0 -class_act%1:18:00:: 10325549 1 0 -class_actinozoa%1:05:00:: 01913838 1 0 -class_action%1:04:00:: 01183166 1 0 -class_amphibia%1:05:00:: 01625747 1 0 -class_angiospermae%1:20:00:: 11664929 1 0 -class_anthoceropsida%1:20:00:: 11538123 1 0 -class_anthozoa%1:05:00:: 01913838 1 0 -class_aphasmidia%1:05:00:: 01929788 1 0 -class_arachnida%1:05:00:: 01768969 1 0 -class_archiannelida%1:05:00:: 01934705 1 0 -class_ascidiaceae%1:05:00:: 01468532 1 0 -class_ascomycetes%1:20:00:: 13023783 1 0 -class_asteroidea%1:05:00:: 02317212 1 0 -class_aves%1:05:00:: 01502262 1 0 -class_bacillariophyceae%1:05:00:: 01400891 1 0 -class_basidiomycetes%1:20:00:: 12996841 1 0 -class_bivalvia%1:05:00:: 01955463 1 0 -class_bryopsida%1:20:00:: 11538935 1 0 -class_cephalopoda%1:05:00:: 01968115 1 0 -class_cestoda%1:05:00:: 01927301 1 0 -class_channidae%1:05:00:: 02514198 1 0 -class_charophyceae%1:05:00:: 01412085 1 0 -class_chilopoda%1:05:00:: 01784427 1 0 -class_chlorophyceae%1:05:00:: 01407465 1 0 -class_chondrichthyes%1:05:00:: 01480336 1 0 -class_chrysophyceae%1:05:00:: 01400575 1 0 -class_chytridiomycetes%1:20:00:: 12977565 1 0 -class_ciliata%1:05:00:: 01394901 1 0 -class_ciliophora%1:05:00:: 01394901 1 0 -class_coniferopsida%1:20:00:: 11605708 1 0 -class_crinoidea%1:05:00:: 02319967 1 0 -class_crustacea%1:05:00:: 01974399 1 0 -class_cryptophyceae%1:05:00:: 01421164 1 0 -class_cyanobacteria%1:05:00:: 01358259 1 0 -class_cyanophyceae%1:05:00:: 01358259 1 0 -class_cycadopsida%1:20:00:: 11599694 1 0 -class_cyclosporeae%1:05:00:: 01403968 1 0 -class_deuteromycetes%1:20:00:: 12996068 1 0 -class_diatomophyceae%1:05:00:: 01400891 1 0 -class_dicotyledonae%1:20:00:: 11665781 1 0 -class_dicotyledones%1:20:00:: 11665781 1 0 -class_diplopoda%1:05:00:: 01786402 1 0 -class_echinoidea%1:05:00:: 02318915 1 0 -class_equisetatae%1:20:00:: 13218722 1 0 -class_euglenophyceae%1:05:00:: 01406262 1 0 -class_eumycetes%1:20:00:: 12995435 1 0 -class_feeling%1:12:00:: 07548224 1 0 -class_fellow%1:18:00:: 10560106 1 0 -class_filicinae%1:20:00:: 13169219 1 0 -class_filicopsida%1:20:00:: 13169219 1 0 -class_flagellata%1:05:00:: 01416354 1 0 -class_gasteromycetes%1:20:00:: 13038944 1 0 -class_gasteropoda%1:05:00:: 01941670 1 0 -class_gastromycetes%1:20:00:: 13038944 1 0 -class_gastropoda%1:05:00:: 01941670 1 0 -class_ginkgophytina%1:20:00:: 11663449 1 0 -class_ginkgopsida%1:20:00:: 11663449 1 0 -class_gnetopsida%1:20:00:: 11596486 1 0 -class_gymnospermae%1:20:00:: 11595312 1 0 -class_hemiascomycetes%1:20:00:: 13024763 1 0 -class_hepaticae%1:20:00:: 11542341 1 0 -class_hepaticopsida%1:20:00:: 11542341 1 0 -class_heterokontae%1:05:00:: 01400575 1 0 -class_hexapoda%1:05:00:: 02159271 1 0 -class_hirudinea%1:05:00:: 01937719 1 0 -class_holothuroidea%1:05:00:: 02321342 1 0 -class_hyalospongiae%1:05:00:: 01907495 1 0 -class_hydrozoa%1:05:00:: 01911511 1 0 -class_hymenomycetes%1:20:00:: 12998130 1 0 -class_insecta%1:05:00:: 02159271 1 0 -class_lamellibranchia%1:05:00:: 01955463 1 0 -class_larvacea%1:05:00:: 01470287 1 0 -class_liliopsida%1:20:00:: 11667562 1 0 -class_list%1:10:00:: 06489190 1 0 -class_lycopodiate%1:20:00:: 13220842 1 0 -class_lycopodineae%1:20:00:: 13221383 1 0 -class_lycopsida%1:20:00:: 13220842 1 0 -class_magnoliopsida%1:20:00:: 11665781 1 0 -class_mammalia%1:05:00:: 01861465 1 0 -class_mastigophora%1:05:00:: 01416354 1 0 -class_merostomata%1:05:00:: 01787191 1 0 -class_monocotyledonae%1:20:00:: 11667562 1 0 -class_monocotyledones%1:20:00:: 11667562 1 0 -class_musci%1:20:00:: 11538935 1 0 -class_myriapoda%1:05:00:: 01786402 1 0 -class_myxomycetes%1:20:00:: 12975608 1 0 -class_nuda%1:05:00:: 01919099 1 0 -class_oligochaeta%1:05:00:: 01935012 1 0 -class_onychophora%1:05:00:: 01999374 1 0 -class_oomycetes%1:20:00:: 12977296 1 0 -class_ophiuroidea%1:05:00:: 02317488 1 0 -class_osteichthyes%1:05:00:: 02514575 1 0 -class_pauropoda%1:05:00:: 01783205 1 0 -class_pelecypoda%1:05:00:: 01955463 1 0 -class_period%1:04:00:: 01232246 1 0 -class_phaeophyceae%1:05:00:: 01402169 1 0 -class_phasmidia%1:05:00:: 01929951 1 0 -class_pinopsida%1:20:00:: 11607071 1 0 -class_placodermi%1:05:00:: 01479937 1 0 -class_plectomycetes%1:20:00:: 13026529 1 0 -class_polychaeta%1:05:00:: 01936219 1 0 -class_polyplacophora%1:05:00:: 01954729 1 0 -class_psilopsida%1:20:00:: 13215936 1 0 -class_psilotatae%1:20:00:: 13215936 1 0 -class_pteridospermopsida%1:20:00:: 11604698 1 0 -class_pyrenomycetes%1:20:00:: 13028070 1 0 -class_reptilia%1:05:00:: 01660719 1 0 -class_rhodophyceae%1:05:00:: 01413744 1 0 -class_sarcodina%1:05:00:: 01389875 1 0 -class_scaphopoda%1:05:00:: 01941030 1 0 -class_schizomycetes%1:05:00:: 01358135 1 0 -class_scyphozoa%1:05:00:: 01910529 1 0 -class_sphenopsida%1:20:00:: 13218722 1 0 -class_sporozoa%1:05:00:: 01421496 1 0 -class_structure%1:14:00:: 08378555 1 0 -class_struggle%1:04:00:: 00959800 1 0 -class_symphyla%1:05:00:: 01783384 1 0 -class_tardigrada%1:05:00:: 01783936 1 0 -class_taxopsida%1:20:00:: 11660537 1 0 -class_tentaculata%1:05:00:: 01919504 1 0 -class_thaliacea%1:05:00:: 01469222 1 0 -class_tiliomycetes%1:20:00:: 13065702 1 0 -class_trematoda%1:05:00:: 01925469 1 0 -class_turbellaria%1:05:00:: 01925133 1 0 -class_ulvophyceae%1:05:00:: 01408088 1 0 -class_war%1:04:00:: 00959800 1 0 -class_warfare%1:04:00:: 00959800 1 0 -class_xanthophyceae%1:05:00:: 01400772 1 0 -class_zygomycetes%1:20:00:: 12972629 1 0 -classic%1:06:00:: 03038595 1 2 -classic%1:18:00:: 09926426 2 1 -classic%3:00:00:: 00413622 2 0 -classic%5:00:00:standard:01 02295098 1 6 -classic%5:00:01:classical:00 00413861 3 0 -classic_hemochromatosis%1:26:00:: 14207256 1 0 -classical%1:10:00:: 07025900 1 0 -classical%3:00:00:: 00413622 1 8 -classical%3:01:00:: 02698145 3 0 -classical%5:00:00:standard:01 02295098 2 2 -classical%5:00:00:standard:03 02298152 4 0 -classical%5:00:01:classical:00 00413861 5 0 -classical_architecture%1:09:00:: 05841985 1 0 -classical_ballet%1:04:00:: 00529622 1 0 -classical_conditioning%1:09:00:: 05759182 1 0 -classical_greek%1:10:00:: 06977610 1 0 -classical_haemophilia%1:26:00:: 14170772 1 0 -classical_hemophilia%1:26:00:: 14170772 1 0 -classical_latin%1:10:00:: 06963082 1 0 -classical_mechanics%1:09:00:: 06111335 1 0 -classical_music%1:10:00:: 07025900 1 0 -classical_mythology%1:14:00:: 07978924 1 0 -classical_scholar%1:18:00:: 09926656 1 0 -classical_style%1:07:00:: 04698511 1 0 -classicalism%1:09:00:: 06154724 1 0 -classically%4:02:00:: 00246934 1 1 -classicise%2:30:00:: 00526643 1 0 -classicism%1:09:00:: 06154724 1 0 -classicist%1:18:00:: 09926519 1 1 -classicist%1:18:01:: 09926656 2 0 -classicistic%3:01:00:: 02919986 1 0 -classicize%2:30:00:: 00526643 1 0 -classics%1:09:00:: 06170371 1 1 -classifiable%5:00:00:identifiable:00 01272718 1 0 -classification%1:04:00:: 01012712 1 8 -classification%1:04:01:: 01148904 4 0 -classification%1:09:00:: 05732756 3 0 -classification%1:14:00:: 07939638 2 7 -classification_system%1:09:00:: 05727220 1 0 -classificatory%3:01:00:: 03018802 1 1 -classified%1:10:00:: 07249585 1 0 -classified%3:00:01:: 00414709 1 2 -classified%3:00:02:: 00415228 2 0 -classified_ad%1:10:00:: 07249585 1 0 -classified_advertisement%1:10:00:: 07249585 1 0 -classified_stock%1:21:00:: 13335008 1 0 -classifier%1:10:00:: 06308436 2 0 -classifier%1:18:00:: 09926862 1 1 -classify%2:31:00:: 00654625 1 14 -classify%2:31:01:: 00739662 3 0 -classify%2:41:00:: 02508803 2 0 -classifying_adjective%1:10:00:: 06322157 1 0 -classless%5:00:00:democratic:00 00715677 1 1 -classmate%1:18:00:: 10560106 1 1 -classroom%1:06:00:: 03038685 1 5 -classroom_project%1:04:00:: 00728849 1 0 -classwork%1:04:00:: 00728975 1 0 -classy%5:00:00:stylish:00 00975778 1 0 -clast%1:17:00:: 09246134 1 0 -clastic%5:00:00:detachable:00 00162248 2 0 -clastic%5:00:00:disintegrative:00 01332070 1 0 -clastic_rock%1:17:00:: 09246292 1 0 -clathraceae%1:20:00:: 13042514 1 0 -clathrate%5:00:00:enclosed:00 01657562 2 0 -clathrate%5:00:00:reticulate:00 02006538 1 0 -clathrus%1:20:00:: 13042694 1 0 -clatonia_lanceolata%1:20:00:: 11859472 1 0 -clatter%1:11:00:: 07380473 1 4 -clatter%2:39:00:: 02172127 1 6 -clattery%5:00:00:noisy:00 01921171 1 0 -claude_achille_debussy%1:18:00:: 10926597 1 0 -claude_bernard%1:18:00:: 10847793 1 0 -claude_debussey%1:18:00:: 10926597 1 0 -claude_e._shannon%1:18:00:: 11295619 1 0 -claude_elwood_shannon%1:18:00:: 11295619 1 0 -claude_levi-strauss%1:18:00:: 11130113 1 0 -claude_monet%1:18:00:: 11185392 1 0 -claude_shannon%1:18:00:: 11295619 1 0 -claudication%1:26:00:: 14549937 1 0 -claudio_monteverdi%1:18:00:: 11187364 1 0 -claudius%1:18:00:: 10899414 1 0 -claudius_i%1:18:00:: 10899414 1 0 -claudius_ptolemaeus%1:18:00:: 11247413 1 0 -clausal%3:01:00:: 02936971 1 0 -clause%1:10:00:: 06314144 1 2 -clause%1:10:01:: 06392935 2 1 -clausewitz%1:18:00:: 10899747 1 0 -claustrophobe%1:18:00:: 09926991 1 0 -claustrophobia%1:26:00:: 14383252 1 1 -claustrophobic%5:00:00:afraid:00 00079356 2 0 -claustrophobic%5:00:00:confined:00 00558612 1 0 -claustrum%1:08:00:: 05497922 1 0 -clavariaceae%1:20:00:: 12985629 1 0 -claver%2:32:00:: 01038666 1 0 -claviceps%1:20:00:: 12965463 1 0 -claviceps_purpurea%1:20:00:: 12965626 1 0 -clavichord%1:06:00:: 03038870 1 0 -clavicipitaceae%1:20:00:: 13024500 1 0 -clavicle%1:08:00:: 05274105 1 0 -clavier%1:06:00:: 03928814 1 0 -clavier%1:06:01:: 03039015 2 0 -clavus%1:26:00:: 14364802 1 0 -claw%1:05:00:: 02156140 1 2 -claw%1:05:01:: 02154742 4 0 -claw%1:05:02:: 02156532 3 1 -claw%1:06:00:: 03532672 2 1 -claw%2:32:00:: 00845765 4 0 -claw%2:35:00:: 01306654 3 0 -claw%2:35:01:: 01213504 2 1 -claw%2:38:00:: 01914297 1 1 -claw-shaped%5:00:00:formed:00 02146159 1 0 -claw_hammer%1:06:00:: 02966545 1 0 -claw_hatchet%1:06:00:: 03039156 1 0 -clawback%1:04:00:: 00089657 1 0 -clawed%5:00:00:armed:02 00145883 2 0 -clawed%5:00:00:unguiculate:00 02489961 1 0 -clawfoot%1:26:00:: 14214001 1 0 -clawhammer%1:06:00:: 02966545 1 0 -clawlike%5:00:00:unguiculate:00 02490098 1 0 -claxon%1:06:00:: 03622058 1 0 -claxon%2:32:00:: 01053495 2 0 -claxon%2:39:00:: 02183175 1 0 -clay%1:08:00:: 05218119 5 0 -clay%1:18:00:: 10899951 4 0 -clay%1:18:01:: 10900146 3 0 -clay%1:27:00:: 14813182 1 11 -clay%1:27:02:: 14956325 2 0 -clay-colored_robin%1:05:00:: 01559160 1 0 -clay_pigeon%1:06:00:: 03039259 1 0 -clay_pipe%1:06:00:: 03039618 1 0 -clay_sculpture%1:06:00:: 03779621 1 0 -clayey%3:00:00:: 00142270 1 0 -clayey%5:00:00:compact:00 00502487 2 0 -claymore%1:06:00:: 03039353 2 0 -claymore%1:06:01:: 03039493 1 0 -claymore_mine%1:06:00:: 03039353 1 0 -claystone%1:27:00:: 14814419 1 0 -claytonia%1:20:00:: 11859024 1 0 -claytonia_caroliniana%1:20:00:: 11859275 1 0 -claytonia_virginica%1:20:00:: 11859737 1 0 -clayware%1:06:00:: 03992703 1 0 -clean%1:04:00:: 00626838 1 1 -clean%2:29:00:: 00035758 4 1 -clean%2:30:00:: 00180837 9 0 -clean%2:30:01:: 00177714 2 3 -clean%2:30:02:: 00177861 10 0 -clean%2:35:00:: 01532589 1 16 -clean%2:35:01:: 01533442 3 2 -clean%2:35:02:: 01532434 8 0 -clean%2:35:04:: 01608706 7 0 -clean%2:35:12:: 01608951 6 0 -clean%2:42:00:: 02741960 5 0 -clean%3:00:01:: 00417413 1 17 -clean%3:00:02:: 00424008 8 0 -clean%3:00:03:: 00426347 7 0 -clean%3:00:04:: 00427331 6 0 -clean%4:02:00:: 00285092 2 0 -clean%4:02:04:: 00009373 1 1 -clean%5:00:00:adroit:00 00061664 17 0 -clean%5:00:00:antiseptic:00 02116473 9 0 -clean%5:00:00:complete:00 00522101 15 0 -clean%5:00:00:easy:01 00749947 14 0 -clean%5:00:00:empty:00 01087093 12 0 -clean%5:00:00:fair:03 00956733 13 0 -clean%5:00:00:legible:00 01404898 11 0 -clean%5:00:00:moral:00 01548808 10 0 -clean%5:00:00:perfect:00 01749915 5 1 -clean%5:00:00:pure:02 01906320 4 1 -clean%5:00:00:unaddicted:00 00047653 18 0 -clean%5:00:00:unarmed:01 00143294 16 0 -clean%5:00:00:unqualified:02 01914108 2 2 -clean%5:00:01:pure:02 01906464 3 1 -clean-burning%5:00:00:fueled:00 01098678 1 0 -clean-cut%5:00:00:distinct:00 00780011 2 0 -clean-cut%5:00:00:tidy:00 02423073 1 0 -clean-handed%3:00:00:: 01319874 1 0 -clean-limbed%5:00:00:shapely:00 02139563 1 0 -clean-living%5:00:00:moral:00 01548808 1 0 -clean-shaven%5:00:00:shaven:00 02153705 1 1 -clean_and_jerk%1:04:00:: 00626838 1 0 -clean_bill_of_health%1:10:00:: 07227589 1 0 -clean_bomb%1:06:00:: 03039711 1 0 -clean_house%2:35:00:: 01533442 1 0 -clean_out%2:30:00:: 00448864 1 5 -clean_out%2:40:00:: 02314784 3 0 -clean_out%2:41:00:: 02403408 2 0 -clean_room%1:06:00:: 03040376 1 0 -clean_slate%1:26:00:: 14484646 1 1 -clean_up%2:29:00:: 00040766 4 0 -clean_up%2:30:03:: 00275843 1 8 -clean_up%2:40:00:: 02254671 3 0 -clean_up%2:40:04:: 02279315 2 0 -cleanable%5:00:00:clean:01 00417898 1 0 -cleaner%1:06:00:: 03040587 1 4 -cleaner%1:18:00:: 09927089 3 0 -cleaner%1:18:01:: 09927305 2 0 -cleaners%1:06:00:: 03039827 1 0 -cleaning%1:04:00:: 00251013 1 13 -cleaning_device%1:06:00:: 03039947 1 0 -cleaning_equipment%1:06:00:: 03039947 1 0 -cleaning_implement%1:06:00:: 03039947 1 0 -cleaning_lady%1:18:00:: 09911226 1 0 -cleaning_pad%1:06:00:: 03040229 1 0 -cleaning_woman%1:18:00:: 09911226 1 0 -cleanliness%1:07:00:: 04896161 2 0 -cleanliness%1:26:00:: 14496451 1 0 -cleanly%4:02:00:: 00230996 1 2 -cleanly%4:02:01:: 00285447 3 0 -cleanly%4:02:02:: 00285561 2 0 -cleanly%5:00:00:clean:01 00417978 1 0 -cleanness%1:26:00:: 14496193 1 0 -cleanness%1:26:02:: 13990389 2 0 -cleanse%2:29:00:: 00035758 1 1 -cleanse%2:30:05:: 00501896 2 0 -cleanser%1:06:00:: 03040587 1 0 -cleansing%1:04:00:: 00251013 1 1 -cleansing%5:00:00:antiseptic:00 02116304 2 0 -cleansing%5:00:00:purifying:00 02117866 1 1 -cleansing_agent%1:06:00:: 03040587 1 0 -cleanthes%1:18:00:: 10900366 1 0 -cleanup%1:04:00:: 00251013 3 0 -cleanup%1:10:00:: 06486405 2 0 -cleanup%1:21:00:: 13259797 1 0 -cleanup_position%1:10:00:: 06486405 1 0 -cleanup_spot%1:10:00:: 06486405 1 0 -clear%1:15:00:: 08632423 2 0 -clear%1:26:00:: 13990502 1 0 -clear%2:30:01:: 00195342 5 2 -clear%2:30:02:: 00181664 1 16 -clear%2:30:03:: 00549217 20 0 -clear%2:30:08:: 00178235 24 0 -clear%2:30:09:: 00195617 2 5 -clear%2:30:10:: 00450565 23 0 -clear%2:30:11:: 00450691 22 0 -clear%2:30:12:: 00450863 21 0 -clear%2:31:00:: 00621058 10 1 -clear%2:32:00:: 00904046 18 0 -clear%2:32:01:: 00803325 4 2 -clear%2:32:09:: 00761454 19 0 -clear%2:38:00:: 02081178 9 1 -clear%2:38:01:: 02053490 17 0 -clear%2:39:05:: 02156844 8 1 -clear%2:40:00:: 02289295 15 0 -clear%2:40:03:: 02291548 13 0 -clear%2:40:04:: 02291258 14 0 -clear%2:40:07:: 02289134 7 1 -clear%2:40:09:: 02208409 16 0 -clear%2:40:12:: 02350440 12 0 -clear%2:41:00:: 02422409 11 0 -clear%2:41:01:: 02523351 6 1 -clear%2:43:00:: 02771169 3 2 -clear%3:00:00:: 00428404 1 55 -clear%3:00:02:: 00431447 4 4 -clear%3:00:03:: 00460735 11 0 -clear%3:00:04:: 00697923 10 0 -clear%4:02:01:: 00285687 2 0 -clear%4:02:03:: 00285854 1 3 -clear%5:00:00:clearheaded:00 00435190 2 8 -clear%5:00:00:discerning:00 00771616 17 0 -clear%5:00:00:distinct:00 00780011 9 1 -clear%5:00:00:innocent:00 01320184 16 0 -clear%5:00:00:legible:00 01405047 15 0 -clear%5:00:00:net:00 01582598 14 0 -clear%5:00:00:perfect:00 01750073 13 0 -clear%5:00:00:unencumbered:00 00869253 8 1 -clear%5:00:00:unobstructed:00 01622505 3 6 -clear%5:00:00:unqualified:02 01914108 12 0 -clear%5:00:00:untroubled:00 02459667 6 1 -clear%5:00:01:pure:02 01906464 7 1 -clear%5:00:02:free:00 01062938 5 3 -clear-air_turbulence%1:26:00:: 14524487 1 0 -clear-cut%2:30:00:: 00195091 1 0 -clear-cut%5:00:00:clear:00 00429016 1 2 -clear-cut%5:00:00:cleared:00 01290028 2 0 -clear-cut%5:00:00:distinct:00 00780011 3 0 -clear-eyed%5:00:00:discerning:00 00771803 1 0 -clear-sighted%5:00:00:discerning:00 00771803 2 0 -clear-sighted%5:00:00:sighted:00 02158646 1 0 -clear-thinking%3:00:00:: 00435013 1 0 -clear_and_present_danger%1:26:00:: 14541247 1 0 -clear_away%2:30:00:: 00181559 1 0 -clear_liquid_diet%1:13:00:: 07562172 1 0 -clear_off%2:30:00:: 00181559 1 0 -clear_out%2:30:00:: 00448864 3 0 -clear_out%2:30:03:: 00576228 2 0 -clear_out%2:38:00:: 01856350 1 2 -clear_sailing%1:04:00:: 00282953 1 0 -clear_the_air%2:38:00:: 02003186 1 0 -clear_the_throat%2:29:00:: 00035089 1 0 -clear_up%2:30:00:: 00178235 3 1 -clear_up%2:30:02:: 00484892 2 1 -clear_up%2:31:00:: 00621058 5 0 -clear_up%2:32:00:: 00939857 1 3 -clear_up%2:43:00:: 02771169 4 0 -clearance%1:04:00:: 01141593 3 0 -clearance%1:07:00:: 05090111 1 1 -clearance%1:23:00:: 13778261 2 0 -clearance_sale%1:04:00:: 01118776 1 0 -clearcutness%1:07:00:: 04821451 1 0 -cleared%3:00:00:: 01289701 1 3 -cleared%5:00:00:innocent:00 01320184 2 0 -clearheaded%3:00:00:: 00435013 1 1 -clearing%1:04:00:: 01247647 2 0 -clearing%1:04:01:: 00264192 3 0 -clearing%1:15:00:: 08541288 1 3 -clearing_house%1:14:00:: 08055516 1 1 -clearly%4:02:00:: 00039058 1 32 -clearly%4:02:01:: 00202341 2 10 -clearly%4:02:02:: 00181901 3 6 -clearly%4:02:03:: 00285687 4 1 -clearness%1:07:01:: 04820258 1 3 -clearness%1:07:02:: 04701460 2 0 -clearstory%1:06:00:: 03041810 1 0 -clearway%1:06:00:: 03040836 1 0 -clearweed%1:20:00:: 12395068 1 0 -cleat%1:06:00:: 03040983 3 0 -cleat%1:06:01:: 03041114 2 0 -cleat%1:06:02:: 03041265 1 1 -cleat%2:35:00:: 01304602 2 0 -cleat%2:40:00:: 02352395 1 0 -cleats%1:06:00:: 03041449 1 0 -cleavable%5:00:00:divisible:00 00784922 1 0 -cleavage%1:04:00:: 00386345 5 0 -cleavage%1:08:00:: 05553897 4 0 -cleavage%1:22:00:: 13449156 3 0 -cleavage%1:22:01:: 13449319 2 0 -cleavage%1:26:00:: 13920012 1 0 -cleavage_cavity%1:05:00:: 01459242 1 0 -cleave%2:35:00:: 01556572 1 1 -cleave%2:35:01:: 01558681 2 0 -cleave%2:35:02:: 01220885 3 0 -cleaver%1:06:00:: 03041632 1 0 -cleavers%1:20:00:: 12666159 1 0 -clef%1:10:00:: 06862562 1 0 -cleft%1:17:00:: 09258715 2 0 -cleft%1:25:00:: 13908201 1 2 -cleft%5:00:00:compound:00 02172255 1 0 -cleft_foot%1:26:00:: 14214209 1 0 -cleft_lip%1:26:00:: 14214355 1 0 -cleft_palate%1:26:00:: 14214486 1 0 -cleg%1:05:00:: 02195526 1 0 -clegg%1:05:00:: 02195526 1 0 -cleistes%1:20:00:: 12051285 1 0 -cleistes_divaricata%1:20:00:: 12051514 1 0 -cleistes_rosea%1:20:00:: 12051792 1 0 -cleistocarp%1:20:00:: 11533772 1 0 -cleistogamic%3:01:00:: 02697781 1 0 -cleistogamous%3:01:00:: 02697781 1 0 -cleistogamy%1:11:00:: 07439167 1 0 -cleistothecium%1:20:00:: 11533772 1 0 -clematis%1:20:00:: 11729478 1 0 -clematis_baldwinii%1:20:00:: 11729860 1 0 -clematis_crispa%1:20:00:: 11730015 1 0 -clematis_lasiantha%1:20:00:: 11730205 1 0 -clematis_ochreleuca%1:20:00:: 11730312 1 0 -clematis_tangutica%1:20:00:: 11730458 1 0 -clematis_texensis%1:20:00:: 11730602 1 0 -clematis_versicolor%1:20:00:: 11730750 1 0 -clematis_verticillaris%1:20:00:: 11731659 1 0 -clematis_viorna%1:20:00:: 11730933 1 0 -clematis_virginiana%1:20:00:: 11731157 1 0 -clematis_vitalba%1:20:00:: 11731411 1 0 -clemence_sophia_harned_lozier%1:18:00:: 11143163 1 0 -clemenceau%1:18:00:: 10900524 1 0 -clemency%1:04:01:: 01071411 2 0 -clemency%1:26:00:: 14522408 1 0 -clemens%1:18:00:: 10900730 1 0 -clement%3:00:01:: 00437539 2 0 -clement%3:00:02:: 00438166 1 0 -clement_attlee%1:18:00:: 10827873 1 0 -clement_iii%1:18:00:: 10900953 1 0 -clement_philibert_leo_delibes%1:18:00:: 10928978 1 0 -clement_richard_attlee%1:18:00:: 10827873 1 0 -clement_vii%1:18:00:: 10901192 1 0 -clement_xi%1:18:00:: 10901420 1 0 -clement_xiv%1:18:00:: 10901589 1 0 -clementine%1:13:00:: 07748157 2 0 -clementine%1:20:00:: 12710415 1 0 -clementine_tree%1:20:00:: 12710415 1 0 -clench%1:04:00:: 00812526 2 0 -clench%1:06:00:: 03042984 1 0 -clench%2:35:01:: 01572978 1 1 -clench%2:35:02:: 01394812 2 1 -clenched%5:00:00:tight:01 01447781 1 0 -clenched_fist%1:08:00:: 05565064 1 0 -cleome%1:20:00:: 11866248 1 0 -cleome%1:20:01:: 11866078 2 0 -cleome_hassleriana%1:20:00:: 11866469 1 0 -cleome_pinnata%1:20:00:: 11897466 1 0 -cleome_serrulata%1:20:00:: 11866706 1 0 -cleopatra%1:18:00:: 10901827 1 0 -clepsydra%1:06:00:: 04558347 1 0 -clerestory%1:06:00:: 03041810 1 0 -clergy%1:14:00:: 08152787 1 2 -clergyman%1:18:00:: 09927451 1 13 -cleric%1:18:00:: 09928136 1 1 -clerical%3:01:00:: 02697911 2 1 -clerical%3:01:01:: 02698031 1 3 -clerical%5:00:00:white-collar:00 02556229 3 0 -clerical_collar%1:06:00:: 03041964 1 0 -clericalism%1:10:00:: 06489410 1 0 -clericalist%1:18:00:: 09928364 1 0 -clerid%1:05:00:: 02170993 1 0 -clerid_beetle%1:05:00:: 02170993 1 0 -cleridae%1:05:00:: 02170848 1 0 -clerihew%1:10:00:: 06378627 1 0 -clerisy%1:14:00:: 08387354 1 0 -clerk%1:18:00:: 09928451 1 7 -clerk%1:18:01:: 10548227 2 2 -clerk%2:41:00:: 02411802 1 0 -clerking%1:04:00:: 00619230 1 1 -clerkship%1:04:00:: 00590518 1 0 -clethra%1:20:00:: 12249993 1 0 -clethra_alnifolia%1:20:00:: 12250180 1 0 -clethraceae%1:20:00:: 12249821 1 0 -clethrionomys%1:05:00:: 02342109 1 0 -cleveland%1:15:00:: 09130714 1 5 -cleveland%1:18:00:: 10902051 2 0 -clever%5:00:00:adroit:00 00061885 3 0 -clever%5:00:00:intelligent:00 01334958 2 1 -clever%5:00:00:smart:00 00439252 1 2 -clever_clogs%1:18:00:: 09928845 1 0 -clever_dick%1:18:00:: 09928845 1 0 -cleverly%4:02:00:: 00187455 1 1 -cleverness%1:07:00:: 04730367 3 0 -cleverness%1:09:00:: 05620955 2 0 -cleverness%1:09:01:: 05633672 1 1 -clevis%1:06:00:: 03042139 1 0 -clew%1:10:00:: 06643763 2 0 -clew%1:14:00:: 07961379 1 0 -clew%2:35:00:: 01523401 1 0 -clews%1:06:00:: 03042384 1 0 -cli%1:10:00:: 06575505 1 0 -clianthus%1:20:00:: 12516584 1 0 -clianthus_formosus%1:20:00:: 12516828 1 0 -clianthus_puniceus%1:20:00:: 12517077 1 0 -clianthus_speciosus%1:20:00:: 12516828 1 0 -cliche%1:10:00:: 07154046 1 5 -cliched%5:00:00:unoriginal:00 01689442 1 0 -clichy%1:15:00:: 08933437 1 0 -clichy-la-garenne%1:15:00:: 08933437 1 0 -click%1:04:00:: 00112828 4 0 -click%1:06:00:: 03901548 3 0 -click%1:10:00:: 07118210 2 0 -click%1:11:00:: 07379223 1 2 -click%2:31:13:: 00591755 7 0 -click%2:32:00:: 01054849 6 0 -click%2:32:01:: 01055146 5 0 -click%2:35:00:: 01242208 4 0 -click%2:38:00:: 01893771 1 5 -click%2:39:00:: 02185664 2 1 -click%2:39:01:: 02185861 3 0 -click-clack%1:11:00:: 07380686 1 0 -click_beetle%1:05:00:: 02176439 1 0 -click_off%2:30:00:: 00491551 1 1 -click_open%2:35:00:: 01346548 1 1 -clickety-clack%1:11:00:: 07380784 1 0 -clickety-click%1:11:00:: 07380784 1 1 -client%1:06:00:: 03827107 3 0 -client%1:18:00:: 09985075 1 9 -client%1:18:01:: 09984659 2 1 -client-centered_therapy%1:04:00:: 00703236 1 0 -client-server%3:01:00:: 02885370 1 0 -clientage%1:24:00:: 13837351 1 0 -clientele%1:14:00:: 08401554 1 1 -cliff%1:17:00:: 09246464 1 3 -cliff-brake%1:20:00:: 13211790 1 0 -cliff-hanging%5:00:00:tense:03 02405805 1 0 -cliff_brake%1:20:00:: 13211790 1 0 -cliff_diving%1:04:00:: 00443692 1 0 -cliff_dweller%1:18:00:: 09929005 1 0 -cliff_dwelling%1:06:00:: 03042490 1 0 -cliff_penstemon%1:20:00:: 12887713 1 0 -cliff_rose%1:20:00:: 12099031 1 0 -cliff_swallow%1:05:00:: 01594968 1 0 -cliffhanger%1:10:00:: 06621681 2 0 -cliffhanger%1:11:00:: 07458099 1 0 -clifford_odets%1:18:00:: 11212120 1 0 -clifford_trust%1:21:00:: 13361624 1 0 -cliftonia%1:20:00:: 12751043 1 0 -cliftonia_monophylla%1:20:00:: 12751172 1 0 -climacteric%1:28:01:: 15154462 2 0 -climacteric%1:28:02:: 15154646 1 0 -climactic%3:00:00:: 02487718 1 0 -climate%1:26:00:: 14519366 1 5 -climate%1:26:01:: 14524661 2 3 -climate_change%1:22:00:: 13449450 1 0 -climatic%3:01:00:: 03055374 1 0 -climatic_zone%1:15:00:: 08542081 1 0 -climatical%3:01:00:: 03055374 1 0 -climatically%4:02:00:: 00286026 1 0 -climatologist%1:18:00:: 09929202 1 0 -climatology%1:09:00:: 06119377 1 0 -climax%1:04:00:: 00062133 3 1 -climax%1:10:00:: 06373747 2 2 -climax%1:10:01:: 07102373 5 0 -climax%1:11:00:: 07417043 1 2 -climax%1:26:00:: 14568516 4 0 -climax%2:30:00:: 00485609 1 2 -climb%1:04:00:: 00325110 3 0 -climb%1:11:00:: 07370410 2 0 -climb%1:17:00:: 09206985 1 0 -climb%2:30:00:: 00433232 3 2 -climb%2:30:01:: 00155143 6 0 -climb%2:30:03:: 00249017 5 0 -climb%2:38:00:: 01921964 1 36 -climb%2:38:01:: 01923909 2 2 -climb%2:38:06:: 02037989 4 0 -climb-down%1:10:00:: 07206302 1 0 -climb_down%2:38:00:: 01978576 1 3 -climb_on%2:38:00:: 01923414 1 1 -climb_up%2:30:02:: 00155547 3 0 -climb_up%2:38:00:: 01921964 1 3 -climb_up%2:38:10:: 02105657 2 0 -climbable%5:00:00:passable:00 01725031 2 0 -climbable%5:00:00:scalable:00 02083391 1 0 -climber%1:06:00:: 03126385 5 0 -climber%1:18:00:: 09929298 4 0 -climber%1:18:01:: 10618685 2 0 -climber%1:18:02:: 10334957 3 0 -climber%1:20:00:: 13102409 1 0 -climbing%1:11:00:: 07370410 1 0 -climbing_bird's_nest_fern%1:20:00:: 13176714 1 0 -climbing_bittersweet%1:20:00:: 12748248 1 0 -climbing_boneset%1:20:00:: 11996251 1 0 -climbing_corydalis%1:20:00:: 11904274 1 0 -climbing_fern%1:20:00:: 12956170 1 0 -climbing_frame%1:06:00:: 03042697 1 0 -climbing_fumitory%1:20:00:: 11909864 1 0 -climbing_hemp-vine%1:20:00:: 11996251 1 0 -climbing_hempweed%1:20:00:: 11996251 1 0 -climbing_hydrangea%1:20:01:: 12791790 1 0 -climbing_hydrangea%1:20:02:: 12788487 3 0 -climbing_hydrangea%1:20:03:: 12789226 2 0 -climbing_iron%1:06:00:: 03126385 1 0 -climbing_lily%1:20:00:: 12455950 1 0 -climbing_maidenhair%1:20:00:: 12956588 1 0 -climbing_maidenhair_fern%1:20:00:: 12956588 1 0 -climbing_nightshade%1:20:00:: 12894607 1 0 -climbing_onion%1:20:00:: 12444898 1 0 -climbing_perch%1:05:00:: 02556373 1 0 -climbing_salamander%1:05:00:: 01637112 1 0 -clime%1:26:00:: 14519366 1 0 -clinch%1:04:00:: 00059728 1 1 -clinch%1:04:01:: 00417859 5 0 -clinch%1:06:00:: 03042829 3 0 -clinch%1:06:01:: 03042984 2 0 -clinch%1:06:02:: 03036866 4 0 -clinch%2:32:00:: 00763713 6 0 -clinch%2:35:00:: 01344748 5 0 -clinch%2:35:01:: 01344903 1 3 -clinch%2:35:02:: 01572978 3 0 -clinch%2:35:04:: 01424867 4 0 -clinch%2:35:12:: 01573143 2 0 -clinch_river%1:17:00:: 09246660 1 0 -clinched%5:00:00:tight:01 01447781 1 3 -clincher%1:06:00:: 03043173 3 0 -clincher%1:09:00:: 05692758 2 0 -clincher%1:10:00:: 06649567 1 0 -clincher-built%3:00:00:: 00316827 1 0 -cline%1:18:00:: 10902232 1 0 -cling%1:13:00:: 07738224 1 0 -cling%2:35:00:: 01220885 1 9 -cling%2:35:02:: 01216331 3 2 -cling%2:37:00:: 01776065 2 5 -cling_film%1:06:00:: 04135710 1 0 -cling_to%2:35:00:: 01220303 1 10 -clingfilm%1:06:00:: 04135710 1 0 -clingfish%1:05:00:: 02635580 1 0 -clingstone%1:13:00:: 07738224 1 0 -clinic%1:06:00:: 03043274 3 0 -clinic%1:10:00:: 07146300 2 0 -clinic%1:14:00:: 08054076 1 0 -clinical%3:01:00:: 02885529 1 14 -clinical%5:00:00:objective:00 01615460 2 1 -clinical_anatomy%1:09:00:: 06059125 1 0 -clinical_depression%1:26:00:: 14389240 1 0 -clinical_neurology%1:09:00:: 06052864 1 0 -clinical_psychologist%1:18:00:: 10489944 1 0 -clinical_psychology%1:09:00:: 06057172 1 0 -clinical_test%1:04:00:: 00792356 1 0 -clinical_thermometer%1:06:00:: 03043423 1 0 -clinical_trial%1:04:00:: 00792356 1 0 -clinically%4:02:00:: 00064583 1 1 -clinician%1:18:00:: 09929577 1 0 -clinid%1:05:00:: 02614140 1 0 -clinid_fish%1:05:00:: 02614140 1 0 -clinidae%1:05:00:: 02613960 1 0 -clink%1:06:00:: 03592245 2 0 -clink%1:11:00:: 07379223 1 0 -clink%2:39:00:: 02186506 2 0 -clink%2:39:01:: 02186690 1 1 -clinker%1:06:00:: 03043693 2 0 -clinker%1:17:00:: 09245212 1 0 -clinker%2:30:00:: 00526749 2 0 -clinker%2:30:01:: 00526895 1 0 -clinker-built%3:00:00:: 00316827 1 0 -clinker_block%1:06:00:: 03031957 1 0 -clinker_brick%1:06:00:: 03043693 1 0 -clinking%5:00:00:reverberant:00 02009880 1 0 -clinocephalism%1:26:00:: 14159153 1 0 -clinocephaly%1:26:00:: 14159153 1 0 -clinodactyly%1:26:00:: 14159318 1 0 -clinometer%1:06:00:: 03043798 1 0 -clinopodium%1:20:00:: 12843844 1 0 -clinopodium_grandiflorum%1:20:00:: 12843316 1 0 -clinopodium_vulgare%1:20:00:: 12843970 1 0 -clinoril%1:06:00:: 04353410 1 0 -clinquant%5:00:00:adorned:00 00057737 1 0 -clinton%1:15:00:: 09086894 4 0 -clinton%1:18:00:: 10902591 2 0 -clinton%1:18:01:: 10902409 3 0 -clinton%1:18:02:: 10902752 1 0 -clinton's_lily%1:20:00:: 12472024 1 0 -clinton_administration%1:14:00:: 08165760 1 0 -clintonia%1:20:00:: 12472024 1 0 -clintonia_andrewsiana%1:20:00:: 12472326 1 0 -clintonia_borealis%1:20:00:: 12472559 1 0 -clintonia_uniflora%1:20:00:: 12472778 1 0 -clio%1:18:00:: 09566436 1 0 -clioquinol%1:06:00:: 03583109 1 0 -clip%1:04:00:: 00359614 5 0 -clip%1:04:01:: 00133234 6 0 -clip%1:06:00:: 02973017 1 2 -clip%1:06:01:: 03043958 3 1 -clip%1:06:02:: 03044166 4 0 -clip%1:11:00:: 07309599 2 1 -clip%2:30:00:: 00292877 5 0 -clip%2:35:01:: 01367616 3 0 -clip%2:35:03:: 01456463 1 2 -clip%2:35:04:: 01321002 4 0 -clip%2:38:00:: 01901447 2 0 -clip-clop%1:11:00:: 07380934 1 0 -clip-on%1:06:00:: 03044801 1 0 -clip-on%5:00:00:attachable:00 00161878 1 0 -clip_art%1:06:00:: 03044278 1 0 -clip_artist%1:18:00:: 09929770 1 0 -clip_joint%1:06:00:: 03044537 1 0 -clip_lead%1:06:00:: 03044671 1 0 -clipboard%1:06:00:: 03044418 1 0 -clipped%5:00:00:short:02 01442974 2 0 -clipped%5:00:00:trimmed:00 02454885 1 0 -clipper%1:06:00:: 03044934 4 0 -clipper%1:06:01:: 03045074 3 0 -clipper%1:06:02:: 03045228 2 0 -clipper%1:06:03:: 03669886 1 0 -clipper_ship%1:06:00:: 03045228 1 0 -clippety-clop%1:11:00:: 07380934 1 0 -clipping%1:04:00:: 00359614 3 0 -clipping%1:04:02:: 00359903 2 0 -clipping%1:10:00:: 06612649 1 0 -clique%1:14:00:: 08240633 1 1 -cliquish%5:00:00:private:00 01858740 1 0 -cliquishly%4:02:00:: 00284890 1 0 -cliquishness%1:07:00:: 04889337 1 0 -clit%1:08:00:: 05523420 1 0 -clitocybe%1:20:00:: 13020623 1 0 -clitocybe_clavipes%1:20:00:: 13020964 1 0 -clitocybe_dealbata%1:20:00:: 13021166 1 0 -clitocybe_inornata%1:20:00:: 13021332 1 0 -clitocybe_irina%1:20:00:: 13021689 1 0 -clitocybe_nuda%1:20:00:: 13017102 1 0 -clitocybe_robusta%1:20:00:: 13021543 1 0 -clitocybe_subconnexa%1:20:00:: 13021867 1 0 -clitoral%3:01:00:: 02840328 1 0 -clitoral_vein%1:08:00:: 05364184 1 0 -clitoria%1:20:00:: 12517253 1 0 -clitoria_mariana%1:20:00:: 12517445 1 0 -clitoria_turnatea%1:20:00:: 12517642 1 0 -clitoric%3:01:00:: 02840328 1 0 -clitoridectomy%1:04:00:: 00669155 1 0 -clitoris%1:08:00:: 05523420 1 0 -clitter%2:39:00:: 02172296 1 0 -clive%1:18:00:: 10902934 1 0 -clive_sinclair%1:18:00:: 11302224 1 0 -clive_staples_lewis%1:18:00:: 11130291 1 0 -clivers%1:20:00:: 12666159 1 0 -cloaca%1:06:00:: 04179126 2 0 -cloaca%1:08:00:: 05304341 1 0 -cloak%1:06:00:: 03045337 2 0 -cloak%1:06:01:: 03045698 1 1 -cloak%2:35:00:: 01334535 3 0 -cloak%2:35:01:: 01617034 2 0 -cloak%2:39:00:: 02147603 1 0 -cloak-and-dagger%5:00:00:covert:00 01706465 1 0 -cloaked%5:00:00:covered:00 01695505 2 0 -cloaked%5:00:00:covert:00 01707230 1 0 -cloakmaker%1:18:00:: 09929861 1 0 -cloakroom%1:06:00:: 03045800 2 0 -cloakroom%1:06:01:: 03045928 1 0 -clobber%1:21:00:: 13251154 1 0 -clobber%2:35:00:: 01412912 2 0 -clobber%2:35:01:: 01417416 1 2 -cloche%1:06:00:: 03046029 2 0 -cloche%1:06:01:: 03046133 1 0 -clock%1:06:00:: 03046257 1 15 -clock%2:30:00:: 00490968 1 1 -clock-watching%1:09:00:: 05703070 1 0 -clock_dial%1:06:00:: 03046657 1 0 -clock_face%1:06:00:: 03046657 1 0 -clock_golf%1:04:00:: 00573106 1 0 -clock_in%2:32:00:: 00966330 1 0 -clock_off%2:32:00:: 00966640 1 0 -clock_on%2:32:00:: 00966330 1 0 -clock_out%2:32:00:: 00966640 1 0 -clock_pendulum%1:06:00:: 03046802 1 0 -clock_radio%1:06:00:: 03046921 1 0 -clock_time%1:28:00:: 15129927 1 0 -clock_tower%1:06:00:: 03047052 1 0 -clock_up%2:32:01:: 01002618 1 0 -clock_watcher%1:18:00:: 09929988 1 0 -clocking%1:28:00:: 15133903 1 1 -clockmaker%1:18:00:: 09930102 1 0 -clocks%1:20:00:: 12688903 1 0 -clocksmith%1:18:00:: 09930102 1 0 -clockwise%3:00:00:: 00441781 1 1 -clockwise%4:02:00:: 00254369 1 0 -clockwise_rotation%1:11:00:: 07441373 1 0 -clockwork%1:06:00:: 03047171 1 0 -clockwork_universe%1:09:00:: 06211529 1 0 -clod%1:14:00:: 07961016 1 2 -clod%1:18:00:: 10274639 2 1 -cloddish%5:00:00:stupid:00 00440489 1 0 -clodhopper%1:06:00:: 02904927 1 1 -clofibrate%1:06:00:: 03047353 1 0 -clog%1:04:00:: 00530208 3 0 -clog%1:06:00:: 03047553 2 0 -clog%1:06:01:: 03047690 1 0 -clog%2:30:00:: 00441007 4 0 -clog%2:30:02:: 00182037 6 0 -clog%2:30:03:: 00368367 5 0 -clog%2:35:00:: 01478603 1 4 -clog%2:35:01:: 01301230 3 0 -clog%2:36:00:: 01709931 2 0 -clog_dance%1:04:00:: 00530208 1 0 -clog_dancer%1:18:00:: 09990690 1 0 -clog_dancing%1:04:00:: 00530208 1 0 -clog_up%2:35:00:: 01478603 1 0 -clogged%5:00:00:encumbered:00 00868448 3 0 -clogged%5:00:00:obstructed:00 01621268 2 0 -clogged%5:00:00:thick:02 02415764 1 1 -clogging%5:00:00:preventive:00 01764351 1 1 -cloggy%5:00:00:compact:00 00502487 1 0 -cloisonne%1:06:00:: 03047799 1 0 -cloisonne%5:00:00:adorned:00 00057566 1 0 -cloister%1:06:00:: 04073948 1 0 -cloister%1:06:01:: 03047941 2 0 -cloister%2:30:00:: 00495636 3 0 -cloister%2:35:00:: 01471434 2 0 -cloister%2:42:00:: 02724126 1 0 -cloistered%5:00:00:private:00 01859055 2 0 -cloistered%5:00:00:unworldly:00 02578894 1 0 -cloistral%5:00:00:unworldly:00 02578894 1 0 -clomid%1:06:00:: 03048094 1 0 -clomiphene%1:06:00:: 03048094 1 0 -clomiphene_citrate%1:06:00:: 03048094 1 0 -clomipramine%1:06:00:: 03048322 1 0 -clomp%2:38:00:: 01930033 1 1 -clon%1:14:00:: 07940242 1 0 -clonal%3:01:00:: 02698301 1 0 -clone%1:06:00:: 03626925 3 0 -clone%1:14:00:: 07940242 2 0 -clone%1:18:00:: 10531557 1 0 -clone%2:36:00:: 01694984 1 0 -clonic%3:01:00:: 02817113 1 1 -clonidine%1:06:00:: 03048412 1 0 -cloning%1:04:00:: 00638243 1 0 -clonus%1:26:00:: 14083061 1 0 -clop%1:11:00:: 07380934 1 0 -clop%2:39:00:: 02184965 1 0 -clopidogrel_bisulfate%1:06:00:: 03048598 1 0 -clopping%1:11:00:: 07380934 1 0 -clorox%1:27:00:: 14815628 1 0 -close%1:04:00:: 00210797 3 0 -close%1:10:00:: 06398401 2 0 -close%1:28:00:: 15267536 1 8 -close%2:30:08:: 00352137 17 0 -close%2:32:05:: 00763831 6 1 -close%2:35:00:: 01345109 1 32 -close%2:35:06:: 01346978 2 20 -close%2:35:07:: 01478423 14 0 -close%2:35:11:: 01423285 15 0 -close%2:35:14:: 01607288 13 0 -close%2:35:15:: 01291941 16 0 -close%2:38:08:: 02104503 10 0 -close%2:38:10:: 02054541 11 0 -close%2:38:15:: 02054382 12 0 -close%2:39:10:: 02140781 9 0 -close%2:41:00:: 02426395 3 18 -close%2:41:01:: 02425913 4 13 -close%2:41:15:: 02375619 8 0 -close%2:42:00:: 02610628 5 2 -close%2:42:01:: 02754276 7 0 -close%3:00:01:: 00446921 1 38 -close%3:00:02:: 00451510 2 23 -close%3:00:05:: 00444519 3 6 -close%4:02:01:: 00409709 1 17 -close%4:02:02:: 00505226 2 4 -close%5:00:00:accurate:00 00022219 5 3 -close%5:00:00:careful:00 00309945 4 4 -close%5:00:00:confined:00 00558738 7 1 -close%5:00:00:equal:00 00890622 6 2 -close%5:00:00:fine:00 02232739 9 0 -close%5:00:00:private:00 01859368 11 0 -close%5:00:00:restrained:00 02000298 10 0 -close%5:00:00:short:01 01436567 13 0 -close%5:00:00:stingy:00 01113225 14 0 -close%5:00:00:tight:01 01447937 12 0 -close%5:00:00:uncommunicative:00 00501004 15 0 -close%5:00:00:unventilated:00 02509484 8 0 -close-fitting%5:00:00:tight:01 01447937 1 0 -close-grained%5:00:00:fine:00 02232869 1 0 -close-hauled%5:00:00:close:01 00448777 1 0 -close-knit%5:00:00:close:02 00452407 1 0 -close-minded%5:00:00:narrow-minded:00 00287962 1 0 -close-order_drill%1:04:00:: 00896526 1 0 -close-packed%5:00:00:compact:00 00502646 1 1 -close-quarter_fighting%1:04:00:: 00959537 1 0 -close-set%5:00:00:close:01 00448924 1 0 -close_at_hand%5:00:00:close:01 00448644 1 1 -close_at_hand%5:00:01:close:01 00448314 2 0 -close_call%1:04:00:: 00061014 1 0 -close_corporation%1:14:00:: 08383690 1 0 -close_down%2:41:00:: 02426395 1 0 -close_in%2:35:00:: 01587062 2 0 -close_in%2:38:00:: 02054703 1 7 -close_off%2:35:00:: 01477394 3 0 -close_off%2:38:00:: 02031826 2 0 -close_off%2:42:00:: 02680531 1 1 -close_order%1:14:00:: 08427163 1 0 -close_out%2:30:00:: 00351719 3 0 -close_out%2:40:00:: 02352538 2 0 -close_out%2:42:00:: 02629390 1 0 -close_quarters%1:15:00:: 08623424 1 0 -close_set%5:00:00:close:01 00448924 1 0 -close_shave%1:04:00:: 00061014 1 0 -close_support%1:04:00:: 00971984 1 0 -close_supporting_fire%1:04:00:: 00988696 1 0 -close_to%4:02:00:: 00007015 1 3 -close_to_the_wind%4:02:00:: 00160288 1 0 -close_together%5:00:00:close:01 00448130 1 0 -close_up%2:32:00:: 01041061 4 0 -close_up%2:35:00:: 01476483 2 0 -close_up%2:35:01:: 01291941 3 0 -close_up%2:41:00:: 02426395 1 0 -close_up%4:02:00:: 00410043 1 2 -closed%3:00:01:: 01653538 1 8 -closed%3:00:02:: 01660135 2 6 -closed%3:00:03:: 01655162 4 3 -closed%3:00:04:: 01652782 3 6 -closed%5:00:00:enclosed:00 01657760 9 0 -closed%5:00:00:restricted:00 02002580 7 0 -closed%5:00:00:shuttered:00 02256659 6 0 -closed%5:00:00:union:00 02474377 5 1 -closed%5:00:00:unreceptive:00 01986349 8 0 -closed-angle_glaucoma%1:26:00:: 14255536 1 0 -closed-captioned%3:44:00:: 03154986 1 0 -closed-chain%5:00:00:cyclic:02 00676855 1 0 -closed-circuit%3:01:00:: 02698379 1 0 -closed-circuit_television%1:06:00:: 03049066 1 0 -closed-class_word%1:10:00:: 06291318 1 0 -closed-door%5:00:00:private:00 01859466 1 0 -closed-end_fund%1:14:00:: 08071908 1 0 -closed-end_investment_company%1:14:00:: 08071908 1 0 -closed-heart_surgery%1:04:00:: 00675357 1 0 -closed-loop_system%1:06:00:: 03049326 1 0 -closed-minded%5:00:00:narrow-minded:00 00287962 1 0 -closed-ring%5:00:00:cyclic:02 00676855 1 0 -closed_book%1:09:00:: 05685538 1 0 -closed_chain%1:17:00:: 09246883 1 0 -closed_circuit%1:06:00:: 03048883 1 1 -closed_corporation%1:14:00:: 08383690 1 0 -closed_couplet%1:10:00:: 06385728 1 0 -closed_curve%1:25:00:: 13868248 1 0 -closed_fracture%1:26:00:: 14294117 1 0 -closed_gentian%1:20:01:: 12294331 2 0 -closed_gentian%1:20:02:: 12294723 1 0 -closed_in%5:00:00:enclosed:00 01657760 1 0 -closed_interval%1:09:00:: 06016462 1 3 -closed_loop%1:06:00:: 03049326 1 0 -closed_primary%1:04:00:: 00182897 1 0 -closed_session%1:10:00:: 07147116 1 0 -closed_shop%1:14:00:: 08235076 1 0 -closed_universe%1:17:00:: 09247071 1 0 -closedown%1:04:00:: 00229260 1 0 -closefisted%5:00:00:stingy:00 01113505 1 0 -closelipped%5:00:00:uncommunicative:00 00501004 1 0 -closely%4:02:00:: 00160440 1 19 -closely%4:02:01:: 00160659 3 2 -closely%4:02:02:: 00505226 2 2 -closely-held%5:00:00:owned:00 00360442 1 0 -closely_held_corporation%1:14:00:: 08384041 1 0 -closely_knit%5:00:00:close:02 00452407 1 1 -closemouthed%5:00:00:uncommunicative:00 00501004 1 0 -closeness%1:07:00:: 05085572 3 0 -closeness%1:07:01:: 04657407 5 0 -closeness%1:07:02:: 05112474 2 0 -closeness%1:07:03:: 04655442 6 0 -closeness%1:07:04:: 04833687 4 0 -closeness%1:12:00:: 07530124 1 0 -closeout%1:04:00:: 01118890 1 0 -closer%1:18:00:: 09930257 2 0 -closer%1:18:01:: 09930464 1 0 -closer%4:02:00:: 00407802 1 3 -closest%4:02:00:: 00408021 1 0 -closet%1:06:00:: 03049457 4 0 -closet%1:06:01:: 04558478 2 1 -closet%1:06:02:: 04550184 3 1 -closet%1:06:03:: 03148324 1 4 -closet%2:35:00:: 01302717 1 0 -closet_auger%1:06:00:: 03049605 1 0 -closet_drama%1:10:00:: 07015400 1 0 -closet_queen%1:18:00:: 09930628 1 0 -closeup%1:06:00:: 03049695 1 3 -closeup_lens%1:06:00:: 03049782 1 0 -closing%1:04:00:: 00229260 4 0 -closing%1:04:01:: 00344040 1 2 -closing%1:04:02:: 00211110 5 0 -closing%1:04:03:: 00281462 3 0 -closing%1:10:00:: 06398401 2 0 -closing%3:00:00:: 01010025 1 3 -closing_curtain%1:04:00:: 00210797 1 0 -closing_off%1:04:00:: 01202029 1 1 -closing_price%1:21:00:: 13304340 1 0 -closing_time%1:28:00:: 15168665 1 0 -clostridia%1:05:00:: 01357156 1 0 -clostridial_myonecrosis%1:26:00:: 14313943 1 0 -clostridium%1:05:00:: 01357156 1 0 -clostridium_botulinum%1:05:00:: 01357328 1 0 -clostridium_perfringens%1:05:00:: 01357507 1 0 -clostridium_perfringens_epsilon_toxin%1:27:00:: 14714353 1 0 -closure%1:04:00:: 00229260 7 0 -closure%1:04:01:: 01074694 6 0 -closure%1:04:02:: 00281462 1 1 -closure%1:06:00:: 02853449 5 0 -closure%1:09:00:: 06249421 3 0 -closure%1:09:01:: 05789089 4 0 -closure%1:10:00:: 06666829 2 0 -closure%2:30:00:: 00527034 1 0 -closure_by_compartment%1:10:00:: 06667027 1 0 -clot%1:08:00:: 05402091 1 1 -clot%2:30:00:: 00457770 3 0 -clot%2:30:01:: 00457998 1 1 -clot%2:30:02:: 00458276 2 0 -clot%2:30:04:: 00368367 4 0 -clot_buster%1:06:00:: 04429169 1 0 -clotbur%1:20:00:: 11924445 1 0 -cloth%1:06:00:: 03309808 1 16 -cloth_cap%1:06:00:: 03049924 1 0 -cloth_covering%1:06:00:: 03050026 1 0 -clothe%2:29:00:: 00047945 1 4 -clothe%2:35:00:: 01617034 3 0 -clothe%2:41:00:: 02386675 2 2 -clothed%3:00:00:: 00453726 1 1 -clothed%5:00:00:covered:00 01695505 2 0 -clothes%1:06:00:: 02728440 1 44 -clothes_basket%1:06:00:: 03050864 1 0 -clothes_closet%1:06:00:: 03050546 1 0 -clothes_designer%1:18:00:: 09972157 1 0 -clothes_drier%1:06:00:: 03050655 1 0 -clothes_dryer%1:06:00:: 03050655 1 0 -clothes_hamper%1:06:00:: 03050864 1 0 -clothes_hanger%1:06:00:: 03057920 1 0 -clothes_moth%1:05:00:: 02291748 1 0 -clothes_peg%1:06:00:: 03051249 1 0 -clothes_pin%1:06:00:: 03051249 1 0 -clothes_tree%1:06:00:: 03051396 1 0 -clothesbrush%1:06:00:: 03050453 1 1 -clotheshorse%1:06:00:: 03051041 1 2 -clotheshorse%1:18:00:: 09991026 2 0 -clothesless%5:00:00:unclothed:00 00459102 1 0 -clothesline%1:06:00:: 03051152 1 1 -clothespin%1:06:00:: 03051249 1 0 -clothespress%1:06:00:: 03050546 1 0 -clothier%1:18:00:: 09930772 1 0 -clothing%1:06:00:: 03051540 1 9 -clothing_store%1:06:00:: 03052464 1 0 -clotho%1:18:00:: 09565503 1 0 -clotted%5:00:00:thick:02 02415764 1 1 -clotted_cream%1:13:00:: 07847453 1 0 -clotting%1:22:00:: 13454479 1 0 -clotting_factor%1:27:00:: 15022776 1 0 -clotting_time%1:28:00:: 15296920 1 0 -cloture%1:10:00:: 06666829 1 0 -cloture%2:30:00:: 00527034 1 0 -cloud%1:14:00:: 07996149 6 0 -cloud%1:17:00:: 09247410 2 16 -cloud%1:19:01:: 11439690 1 24 -cloud%1:26:00:: 13982999 5 0 -cloud%1:26:01:: 13960357 3 1 -cloud%1:26:02:: 14525108 4 0 -cloud%2:30:02:: 00510364 7 0 -cloud%2:30:03:: 00391833 8 0 -cloud%2:30:04:: 00587962 6 0 -cloud%2:35:00:: 01537959 5 0 -cloud%2:37:00:: 01769565 4 0 -cloud%2:38:00:: 02041577 3 1 -cloud%2:39:00:: 02157731 2 1 -cloud%2:43:00:: 02770717 1 1 -cloud-covered%5:00:00:cloudy:00 00461971 1 0 -cloud-cuckoo-land%1:09:00:: 05627222 1 0 -cloud_bank%1:17:00:: 09247847 1 0 -cloud_chamber%1:06:00:: 03052628 1 0 -cloud_cover%1:26:00:: 14524198 1 0 -cloud_grass%1:20:00:: 12107191 1 0 -cloud_nine%1:26:00:: 13987905 1 0 -cloud_over%2:30:00:: 00361388 2 0 -cloud_over%2:43:00:: 02771020 1 1 -cloud_seeder%1:18:00:: 10575594 1 0 -cloud_up%2:43:00:: 02771020 1 0 -cloudberry%1:20:00:: 12657294 1 0 -cloudburst%1:19:00:: 11502102 1 1 -clouded%5:00:00:cloudy:00 00461971 2 1 -clouded%5:00:00:confused:00 00436544 3 0 -clouded%5:00:00:troubled:00 02457015 1 2 -clouded%5:00:00:unclear:00 00430545 4 0 -cloudiness%1:07:00:: 04703698 3 0 -cloudiness%1:26:00:: 14524198 1 0 -cloudiness%1:26:01:: 13984468 2 0 -clouding%1:22:00:: 13449566 1 0 -clouding_up%1:22:00:: 13449566 1 0 -cloudless%5:00:00:clear:03 00460946 1 0 -cloudlessness%1:07:00:: 04951978 1 0 -cloudlike%5:00:00:cloudy:00 00462129 1 0 -cloudy%3:00:00:: 00461311 2 0 -cloudy%5:00:00:indistinct:00 00781974 1 1 -cloudy%5:00:00:opaque:00 00433529 3 0 -clout%1:04:00:: 00134780 4 0 -clout%1:06:01:: 03052917 3 0 -clout%1:07:00:: 05157274 2 0 -clout%1:10:00:: 07262278 1 0 -clout%2:35:00:: 01412759 1 0 -clout_nail%1:06:00:: 03052917 1 0 -clove%1:13:00:: 07814487 4 0 -clove%1:13:01:: 07818422 3 0 -clove%1:20:00:: 12339526 2 0 -clove%1:20:02:: 12339831 1 0 -clove-scented%5:00:00:odorous:00 01056325 1 0 -clove_hitch%1:06:00:: 03053047 1 0 -clove_oil%1:27:00:: 14893271 1 0 -clove_pink%1:20:00:: 11808468 1 0 -clove_tree%1:20:00:: 12339526 1 0 -cloven%5:00:00:divided:00 02480747 1 0 -cloven-footed%3:01:00:: 02698514 1 0 -cloven-hoofed%3:01:00:: 02698514 1 0 -cloven_foot%1:05:00:: 02154264 2 0 -cloven_foot%1:10:00:: 06795657 1 0 -cloven_hoof%1:05:00:: 02154264 2 0 -cloven_hoof%1:10:00:: 06795657 1 0 -clover%1:20:00:: 11752578 1 1 -clover-leaf_roll%1:13:00:: 07692248 1 0 -clover-root%1:20:00:: 12632526 1 0 -clover_fern%1:20:00:: 12957608 1 0 -cloverleaf%1:06:00:: 03053163 1 0 -cloveroot%1:20:00:: 12632526 1 0 -clovis%1:18:00:: 10903172 1 0 -clovis_culture%1:14:00:: 08291582 1 0 -clovis_i%1:18:00:: 10903172 1 0 -clowder%1:14:00:: 07995365 1 0 -clown%1:18:00:: 09930876 2 1 -clown%1:18:01:: 09931165 1 1 -clown%2:29:00:: 00105778 1 0 -clown_anemone_fish%1:05:00:: 02607201 1 0 -clown_around%2:29:00:: 00105778 1 0 -clowning%1:04:00:: 00513401 1 1 -clowning%1:10:00:: 06781383 2 0 -clownish%5:00:00:humorous:00 01265108 1 0 -clownlike%5:00:00:humorous:00 01265108 1 0 -cloy%2:34:00:: 01193932 2 0 -cloy%2:40:00:: 02333225 1 0 -cloying%5:00:00:sweet:02 02368566 1 0 -cloyingly%4:02:00:: 00253713 1 0 -clozapine%1:06:00:: 03053272 1 0 -clozaril%1:06:00:: 03053272 1 0 -cloze%3:01:00:: 02698663 1 0 -cloze_procedure%1:09:00:: 05741139 1 0 -cloze_test%1:09:00:: 05741139 1 0 -club%1:06:00:: 03053474 3 3 -club%1:06:01:: 03446070 5 1 -club%1:06:02:: 03054311 4 2 -club%1:06:03:: 03053788 6 0 -club%1:06:04:: 02931417 7 0 -club%1:14:00:: 08227214 2 9 -club%1:14:01:: 08079613 1 14 -club%2:35:00:: 01423929 3 0 -club%2:35:01:: 01320321 4 0 -club%2:41:03:: 02592111 2 0 -club%2:41:10:: 02592250 1 0 -club-head%1:06:00:: 03446268 1 0 -club-moss%1:20:00:: 13221529 1 0 -club-shaped%5:00:00:formed:00 02146235 2 0 -club-shaped%5:00:01:formed:00 02146347 1 0 -club_car%1:06:00:: 03053976 1 0 -club_drug%1:06:00:: 03054098 1 0 -club_fungus%1:20:00:: 12985773 1 0 -club_head%1:06:00:: 03446268 1 0 -club_member%1:18:00:: 10308394 1 0 -club_moss%1:20:00:: 13221529 1 0 -club_sandwich%1:13:00:: 07696839 1 0 -club_soda%1:13:00:: 07936548 1 0 -club_steak%1:13:00:: 07660463 1 0 -clubable%5:00:00:sociable:00 02257601 1 0 -clubbable%5:00:00:sociable:00 02257601 1 0 -clubbing%1:26:00:: 14302847 1 0 -clubbish%5:00:00:sociable:00 02257731 1 0 -clubby%5:00:00:private:00 01858740 2 0 -clubby%5:00:00:sociable:00 02257731 1 0 -clubfoot%1:26:00:: 14214584 1 1 -clubfooted%5:00:00:unshapely:00 02141209 1 0 -clubhead%1:06:00:: 03446268 1 0 -clubhouse%1:06:00:: 03054311 1 2 -clubmoss_family%1:20:00:: 13222477 1 0 -clubroom%1:06:00:: 03054491 1 0 -clubroot_fungus%1:20:00:: 12983654 1 0 -cluck%1:11:00:: 07381100 1 2 -cluck%2:32:00:: 01054849 1 3 -clucking%1:11:00:: 07381100 1 0 -clue%1:10:00:: 06802785 1 9 -clue%1:10:01:: 06643763 2 2 -clue%2:35:00:: 01523401 1 0 -clue_in%2:32:00:: 00927900 1 0 -clueless%5:00:00:uninformed:00 01308736 1 0 -clumber%1:05:00:: 02101556 1 0 -clumber_spaniel%1:05:00:: 02101556 1 0 -clump%1:11:00:: 07396945 3 0 -clump%1:14:00:: 07959943 1 9 -clump%1:14:01:: 07961016 2 1 -clump%2:35:00:: 01484392 4 0 -clump%2:38:00:: 01930033 3 0 -clump%2:38:01:: 02025009 2 0 -clump%2:39:00:: 02184965 1 0 -clumping%1:11:00:: 07380934 1 0 -clumsily%4:02:00:: 00190359 1 1 -clumsiness%1:07:01:: 05004294 2 0 -clumsiness%1:07:02:: 04815624 3 0 -clumsiness%1:09:01:: 05648459 1 0 -clumsy%5:00:00:awkward:00 01140896 1 4 -clumsy%5:00:00:infelicitous:00 01001180 2 1 -clumsy%5:00:00:unskilled:00 02229324 4 0 -clumsy%5:00:00:unwieldy:00 02564023 3 0 -clumsy_person%1:18:01:: 09931267 1 0 -clunch%1:27:00:: 14814531 1 0 -clunk%1:11:00:: 07396945 1 0 -clunk%2:39:00:: 02184965 1 0 -clunking%1:11:00:: 07380934 1 0 -clunky%5:00:00:audible:00 00174056 2 0 -clunky%5:00:00:awkward:00 01140896 1 0 -clupea%1:05:00:: 02531820 1 0 -clupea_harangus%1:05:00:: 02532028 1 0 -clupea_harengus_harengus%1:05:00:: 02532272 1 0 -clupea_harengus_pallasii%1:05:00:: 02532451 1 0 -clupea_sprattus%1:05:00:: 02532918 1 0 -clupeid%1:05:00:: 02529772 1 0 -clupeid_fish%1:05:00:: 02529772 1 0 -clupeidae%1:05:00:: 02529515 1 0 -clusia%1:20:00:: 12365900 1 0 -clusia_flava%1:20:00:: 12366053 1 0 -clusia_insignis%1:20:00:: 12366186 1 0 -clusia_major%1:20:00:: 12366313 1 0 -clusia_rosea%1:20:00:: 12366313 1 0 -clusiaceae%1:20:00:: 12363988 1 0 -cluster%1:14:00:: 07959943 1 11 -cluster%2:35:00:: 01484392 2 2 -cluster%2:38:00:: 02025009 1 4 -cluster_bean%1:20:00:: 12520406 1 0 -cluster_bomb%1:06:00:: 03054605 1 0 -cluster_bomblet%1:06:00:: 02868240 1 0 -cluster_headache%1:26:00:: 14327543 1 0 -cluster_of_differentiation_4%1:27:00:: 14888529 1 0 -cluster_of_differentiation_8%1:27:00:: 14888720 1 0 -clustered%5:00:00:collective:00 00467019 2 0 -clustered%5:00:00:gregarious:01 02253536 1 0 -clustered_bellflower%1:20:00:: 12038406 1 0 -clustered_lady's_slipper%1:20:00:: 12057895 1 0 -clustered_poppy_mallow%1:20:00:: 12175598 1 0 -clustering%1:14:00:: 07959943 1 0 -clutch%1:04:00:: 00812526 1 2 -clutch%1:06:00:: 03054901 7 0 -clutch%1:06:01:: 03055159 6 0 -clutch%1:06:02:: 03055418 5 0 -clutch%1:14:00:: 08400452 4 0 -clutch%1:14:01:: 08400870 3 0 -clutch%1:26:00:: 14032737 2 1 -clutch%2:31:04:: 00737656 3 0 -clutch%2:35:00:: 01212572 1 16 -clutch%2:35:04:: 01220303 2 1 -clutch_bag%1:06:00:: 03055418 1 0 -clutch_pedal%1:06:00:: 03055159 1 0 -clutches%1:04:00:: 00812526 1 1 -clutter%1:10:00:: 07263745 2 0 -clutter%1:26:00:: 14500567 1 0 -clutter%2:30:00:: 00181875 1 0 -clutter_up%2:30:00:: 00181875 1 0 -cluttered%5:00:00:untidy:00 02424949 1 3 -clv%5:00:00:cardinal:00 02197476 1 0 -clx%5:00:00:cardinal:00 02197595 1 0 -clxv%5:00:00:cardinal:00 02197708 1 0 -clxx%5:00:00:cardinal:00 02197828 1 0 -clxxv%5:00:00:cardinal:00 02197944 1 0 -clxxx%5:00:00:cardinal:00 02198069 1 0 -clyde%1:17:00:: 09247942 1 0 -clyde_tombaugh%1:18:00:: 11345539 1 0 -clyde_william_tombaugh%1:18:00:: 11345539 1 0 -clydesdale%1:05:00:: 02386968 1 0 -clydesdale_terrier%1:05:00:: 02097967 1 0 -clypeus%1:05:00:: 01903631 1 0 -clyster%1:04:00:: 00695944 1 0 -clytemnestra%1:18:00:: 09595545 1 0 -clytocybe_alba%1:20:00:: 13021543 1 0 -cm%1:23:00:: 13658828 1 31 -cm%1:27:00:: 14636220 2 0 -cmb%1:19:00:: 11441077 1 0 -cmbr%1:19:00:: 11441077 1 0 -cmv%1:05:00:: 01339801 1 0 -cn_gas%1:27:00:: 14604038 1 0 -cn_tower%1:06:00:: 03055537 1 0 -cnemidophorus%1:05:00:: 01685679 1 0 -cnemidophorus_exsanguis%1:05:00:: 01686403 1 0 -cnemidophorus_sexlineatus%1:05:00:: 01686044 1 0 -cnemidophorus_tesselatus%1:05:00:: 01686808 1 0 -cnemidophorus_tigris%1:05:00:: 01686609 1 0 -cnemidophorus_velox%1:05:00:: 01686220 1 0 -cnicus%1:20:00:: 11955398 1 0 -cnicus_benedictus%1:20:00:: 11955532 1 0 -cnidaria%1:05:00:: 01909111 1 0 -cnidarian%1:05:00:: 01909422 1 0 -cnidoscolus%1:20:00:: 12924984 1 0 -cnidoscolus_urens%1:20:00:: 12925179 1 0 -cnidosporidia%1:05:00:: 01426784 1 0 -cnossos%1:15:00:: 08784581 1 0 -cnossus%1:15:00:: 08784581 1 0 -cnpz%1:14:00:: 08035233 1 0 -cns%1:08:00:: 05480794 1 0 -cnut%1:18:00:: 10881382 1 0 -co%1:15:00:: 09067277 4 0 -co%1:18:00:: 09957013 3 0 -co%1:27:00:: 14797641 1 0 -co%1:27:01:: 14635290 2 0 -co-author%2:36:00:: 01704631 1 0 -co-beneficiary%1:18:00:: 09933972 1 0 -co-defendant%1:18:00:: 09933411 1 0 -co-discoverer%1:18:00:: 09934085 1 0 -co-ed%1:18:00:: 09934213 1 0 -co-ed%5:00:00:integrated:00 01326415 1 0 -co-educate%2:41:00:: 02387792 1 0 -co-occur%2:42:00:: 02660442 1 0 -co-occur_with%2:42:00:: 02660819 1 0 -co-occurrence%1:07:00:: 05048301 2 0 -co-occurrence%1:11:00:: 07284554 1 0 -co-occurrent%5:00:00:synchronous:00 02378496 1 0 -co-op%1:04:00:: 01100877 1 0 -co-operative_republic_of_guyana%1:15:00:: 08948346 1 0 -co-opt%2:40:00:: 02362460 4 0 -co-opt%2:41:01:: 02397266 3 0 -co-opt%2:41:02:: 02401051 1 1 -co-opt%2:41:03:: 02536098 2 0 -co-optation%1:04:00:: 00181191 1 8 -co-optation%1:04:01:: 00164999 2 0 -co-option%1:04:00:: 00181191 1 0 -co-option%1:04:01:: 00164999 2 0 -co-ordinate%1:09:00:: 06010930 1 0 -co-ordinated%5:00:00:adroit:00 00062152 3 0 -co-ordinated%5:00:00:integrated:02 01328229 2 0 -co-ordinated%5:00:00:matched:00 01486704 1 0 -co-pilot%1:18:00:: 09964202 1 0 -co-referent%3:01:00:: 02704005 1 0 -co-respondent%1:18:00:: 09965625 1 0 -co-sign%2:32:00:: 00998030 2 0 -co-sign%2:41:00:: 02465145 1 0 -co-star%1:18:00:: 09967967 1 0 -co-star%2:36:00:: 01721415 2 0 -co-star%2:42:00:: 02631537 1 0 -co-vary%2:42:00:: 02662647 1 0 -co-worker%1:18:00:: 09936215 1 3 -co2%1:27:00:: 14796969 1 0 -coach%1:06:00:: 03055670 4 0 -coach%1:06:01:: 03895866 3 0 -coach%1:06:02:: 02924116 5 0 -coach%1:18:00:: 09931418 2 0 -coach%1:18:01:: 09931640 1 20 -coach%2:32:00:: 00833702 1 2 -coach%2:38:00:: 01931262 2 1 -coach-and-four%1:06:00:: 03055670 1 0 -coach_dog%1:05:00:: 02110341 1 0 -coach_horse%1:05:00:: 02387887 1 0 -coach_house%1:06:00:: 03055857 1 0 -coach_station%1:06:00:: 02926288 1 0 -coachbuilder%1:18:00:: 09932227 1 0 -coaching%1:04:00:: 00270800 1 1 -coaching_job%1:04:00:: 00270800 1 1 -coachman%1:18:00:: 09932336 1 0 -coachwhip%1:05:00:: 01731764 2 0 -coachwhip%1:20:00:: 12381931 1 0 -coachwhip_snake%1:05:00:: 01731764 1 0 -coact%2:41:00:: 02417098 1 0 -coaction%1:04:00:: 01205156 1 0 -coadjutor%1:18:00:: 09610093 1 0 -coagulable%5:00:00:thick:02 02415938 1 0 -coagulant%1:27:00:: 14815728 1 0 -coagulase%1:27:00:: 14735953 1 0 -coagulate%2:30:00:: 00457998 1 1 -coagulate%2:30:01:: 00458276 2 0 -coagulate%5:00:00:thick:02 02416036 1 0 -coagulated%5:00:00:solid:01 02260382 2 0 -coagulated%5:00:00:thick:02 02416036 1 0 -coagulation%1:22:00:: 13454479 1 0 -coagulation_factor%1:27:00:: 15022776 1 0 -coagulator%1:27:00:: 14815728 1 0 -coagulum%1:08:00:: 05402091 1 0 -coahuila%1:15:00:: 08743003 1 0 -coal%1:17:00:: 09273130 2 0 -coal%1:27:00:: 14814616 1 5 -coal%2:35:00:: 01599983 3 0 -coal%2:40:00:: 02352704 2 0 -coal%2:43:00:: 02771997 1 0 -coal-black%5:00:00:achromatic:00 00388849 1 3 -coal-burning%5:00:00:fueled:00 01098826 1 0 -coal-fired%5:00:00:fueled:00 01098826 1 0 -coal-tar_creosote%1:27:00:: 14825631 1 0 -coal_black%1:07:00:: 04960582 1 0 -coal_car%1:06:00:: 03056097 1 0 -coal_chute%1:06:00:: 03056215 1 0 -coal_gas%1:27:00:: 14685475 1 0 -coal_house%1:06:00:: 03056288 1 0 -coal_industry%1:14:00:: 08067460 1 0 -coal_mine%1:06:00:: 03056368 1 0 -coal_miner%1:18:00:: 09932508 1 0 -coal_miner's_lung%1:26:00:: 14150210 1 0 -coal_oil%1:27:00:: 14687633 1 0 -coal_scuttle%1:06:00:: 04158002 1 0 -coal_seam%1:15:00:: 08659242 1 0 -coal_shovel%1:06:00:: 03056493 1 0 -coal_tar%1:27:00:: 14911899 1 0 -coal_tongs%1:06:00:: 03347472 1 0 -coalbin%1:06:00:: 03056010 1 0 -coalesce%2:30:00:: 00394813 1 2 -coalesce%2:35:00:: 01461152 2 1 -coalesced%5:00:00:united:00 02476637 1 0 -coalescence%1:04:00:: 00382109 1 1 -coalescency%1:04:00:: 00382109 1 0 -coalescent%5:00:00:united:00 02476870 1 0 -coalescing%5:00:00:united:00 02476870 1 0 -coalface%1:15:00:: 08659331 1 0 -coalfield%1:15:00:: 08659663 1 0 -coalhole%1:06:00:: 03056010 1 0 -coaling_station%1:15:00:: 08639367 1 0 -coalition%1:04:00:: 00382109 3 0 -coalition%1:14:00:: 08293982 1 1 -coalition%1:26:00:: 14418662 2 0 -coalman%1:18:00:: 09932429 1 0 -coalpit%1:06:00:: 03056368 1 0 -coaming%1:06:00:: 03056583 1 0 -coapt%2:35:00:: 01600098 2 0 -coapt%2:35:01:: 01600191 1 0 -coarctate%5:00:00:enclosed:00 01657867 1 0 -coarctation%1:07:00:: 05071185 2 0 -coarctation%1:11:00:: 07313518 1 0 -coarse%3:00:00:: 02230990 1 1 -coarse%5:00:00:inferior:02 02346557 3 0 -coarse%5:00:00:unrefined:01 01950198 2 1 -coarse-furred%5:00:00:hairy:00 00213071 1 0 -coarse-grained%5:00:01:coarse:00 02231355 2 0 -coarse-grained%5:00:02:coarse:00 02231502 1 0 -coarse-haired%5:00:00:hairy:00 00213071 1 0 -coarse-textured%5:00:00:rough:00 02243086 1 0 -coarsely%4:02:00:: 00190709 1 1 -coarsen%2:30:00:: 00136443 2 0 -coarsen%2:35:00:: 01253468 1 0 -coarsened%5:00:00:inferior:02 02346785 1 1 -coarseness%1:07:01:: 04948722 3 0 -coarseness%1:07:02:: 04949256 2 0 -coarseness%1:07:03:: 04817280 4 0 -coarseness%1:10:00:: 07072838 1 0 -coast%1:04:00:: 00328502 4 0 -coast%1:09:00:: 05934029 3 0 -coast%1:17:00:: 09428293 1 20 -coast%1:17:01:: 09248153 2 0 -coast%2:38:00:: 01886728 1 1 -coast_banksia%1:20:00:: 12215824 1 0 -coast_boykinia%1:20:00:: 12796385 1 0 -coast_lily%1:20:00:: 12427946 1 0 -coast_live_oak%1:20:00:: 12269406 1 0 -coast_mountains%1:17:00:: 09248477 1 0 -coast_polypody%1:20:00:: 13173488 1 0 -coast_range%1:17:00:: 09248477 1 0 -coast_redwood%1:20:00:: 11641034 1 0 -coast_rhododendron%1:20:00:: 12244458 1 0 -coast_white_cedar%1:20:00:: 11635152 1 0 -coastal%3:00:00:: 00462909 2 1 -coastal%3:01:00:: 02698782 1 1 -coastal_diving_bird%1:05:00:: 02040505 1 0 -coastal_plain%1:17:00:: 09248294 1 0 -coastal_rein_orchid%1:20:00:: 12066821 1 0 -coaster%1:06:00:: 03056701 3 0 -coaster%1:18:00:: 09932616 2 0 -coaster%1:18:01:: 09932706 1 0 -coaster_brake%1:06:00:: 03056873 1 0 -coaster_wagon%1:06:00:: 04543509 1 0 -coastguard%1:14:00:: 08192361 1 0 -coastguardsman%1:18:00:: 09932788 1 0 -coastland%1:17:00:: 09248399 1 0 -coastline%1:15:00:: 08613000 1 0 -coastward%4:02:00:: 00447511 1 0 -coastwise%4:02:00:: 00286166 1 0 -coastwise%5:00:00:coastal:00 00463162 1 0 -coat%1:05:00:: 01898731 3 0 -coat%1:06:00:: 03057021 1 29 -coat%1:06:01:: 03058107 2 1 -coat%2:29:00:: 00051511 2 1 -coat%2:35:00:: 01264283 1 3 -coat%2:35:01:: 01262321 3 0 -coat-of-mail_shell%1:05:00:: 01955084 1 0 -coat_button%1:06:00:: 03057541 1 0 -coat_closet%1:06:00:: 03057636 1 0 -coat_hanger%1:06:00:: 03057920 1 0 -coat_of_arms%1:06:00:: 03058726 1 0 -coat_of_mail%1:06:00:: 02862048 1 0 -coat_of_paint%1:06:00:: 03058949 1 0 -coat_rack%1:06:00:: 03059103 1 0 -coat_stand%1:06:00:: 03051396 1 0 -coat_tree%1:06:00:: 03051396 1 0 -coatdress%1:06:00:: 03057724 1 0 -coated%3:00:00:: 01699095 1 1 -coated%5:00:00:clothed:00 00455405 2 0 -coatee%1:06:00:: 03057841 1 0 -coati%1:05:00:: 02509515 1 0 -coati-mondi%1:05:00:: 02509515 1 0 -coati-mundi%1:05:00:: 02509515 1 0 -coating%1:04:00:: 00712225 4 0 -coating%1:06:00:: 03058107 1 1 -coating%1:06:01:: 03058603 3 0 -coating%1:07:00:: 04700642 2 0 -coatrack%1:06:00:: 03059103 1 0 -coatroom%1:06:00:: 03045800 1 0 -coats_land%1:15:00:: 08541454 1 0 -coattail%1:06:00:: 03059236 1 1 -coattails_effect%1:19:00:: 11412993 1 0 -coauthor%1:18:00:: 09932892 1 0 -coax%1:06:00:: 03059366 1 0 -coax%2:32:00:: 00768778 1 5 -coax_cable%1:06:00:: 03059366 1 0 -coaxal%5:00:00:concentric:00 00543117 1 0 -coaxer%1:18:00:: 10775379 1 0 -coaxial%5:00:00:concentric:00 00543117 1 1 -coaxial_cable%1:06:00:: 03059366 1 0 -coaxing%1:10:00:: 06696025 1 0 -coaxing%5:00:00:persuasive:00 01770177 1 2 -coaxingly%4:02:00:: 00286265 1 0 -cob%1:05:01:: 01858780 4 0 -cob%1:05:02:: 02386141 2 0 -cob%1:05:03:: 02041875 3 0 -cob%1:13:00:: 07772788 1 0 -cobalamin%1:27:00:: 15091304 1 0 -cobalt%1:27:00:: 14635290 1 0 -cobalt_60%1:27:00:: 14635542 1 0 -cobalt_bloom%1:27:00:: 14674776 1 0 -cobalt_blue%1:07:00:: 04969798 1 1 -cobalt_blue%1:27:00:: 14671744 2 0 -cobalt_ultramarine%1:27:00:: 14671744 1 0 -cobaltite%1:27:00:: 14671895 1 0 -cobber%1:18:00:: 09933020 1 0 -cobble%1:06:00:: 03059528 1 0 -cobble%2:30:00:: 00261845 2 0 -cobble%2:35:00:: 01267475 1 0 -cobble_together%2:36:00:: 01626600 1 0 -cobble_up%2:36:00:: 01626600 1 0 -cobbler%1:13:01:: 07625831 3 0 -cobbler%1:13:02:: 07913774 2 0 -cobbler%1:18:00:: 09933098 1 1 -cobbler's_last%1:06:00:: 03644532 1 0 -cobblers%1:08:00:: 05525100 2 0 -cobblers%1:10:00:: 06608405 1 0 -cobblestone%1:06:00:: 03059528 1 0 -cobblestone%2:35:00:: 01267475 1 0 -cobbling%1:04:00:: 00617865 1 0 -cobia%1:05:00:: 02574271 1 0 -cobitidae%1:05:00:: 01438461 1 0 -cobnut%1:13:00:: 07772788 2 0 -cobnut%1:20:00:: 12289433 1 0 -cobol%1:10:00:: 06902611 1 0 -cobra%1:05:00:: 01747885 1 0 -cobweb%1:06:00:: 03059685 3 0 -cobweb%1:06:01:: 03059806 2 0 -cobweb%1:06:02:: 03059934 1 0 -cobwebby%5:00:00:dirty:01 00421308 2 0 -cobwebby%5:00:00:thin:01 02413390 1 0 -coca%1:06:00:: 03060074 3 0 -coca%1:18:00:: 10903413 2 0 -coca%1:20:00:: 12690046 1 0 -coca_cola%1:13:00:: 07928696 1 1 -coca_plant%1:20:00:: 12690046 1 0 -cocain%1:06:00:: 03060294 1 0 -cocaine%1:06:00:: 03060294 1 1 -cocaine_addict%1:18:00:: 09933235 1 0 -cocaine_addiction%1:26:00:: 14064984 1 0 -cocainise%2:29:00:: 00021679 1 0 -cocainize%2:29:00:: 00021679 1 0 -cocarboxylase%1:27:00:: 14800138 1 0 -coccal%3:01:00:: 02698898 1 0 -cocci%1:05:00:: 01350855 1 0 -coccid_insect%1:05:00:: 02248368 1 0 -coccidae%1:05:00:: 02248744 1 0 -coccidia%1:05:00:: 01422835 1 0 -coccidioidomycosis%1:26:00:: 14147014 1 1 -coccidiomycosis%1:26:00:: 14147014 1 0 -coccidiosis%1:26:00:: 14453290 1 1 -coccidium%1:05:00:: 01423302 1 0 -coccinellidae%1:05:00:: 02165247 1 0 -coccobacillus%1:05:00:: 01350994 1 0 -coccoid%5:00:00:round:00 02042078 1 0 -coccoidea%1:05:00:: 02248147 1 0 -coccothraustes%1:05:00:: 01540697 1 0 -coccothraustes_coccothraustes%1:05:00:: 01540832 1 0 -cocculus%1:20:00:: 11713628 1 0 -cocculus_carolinus%1:20:00:: 11713763 1 0 -coccus%1:05:00:: 01350855 1 0 -coccus_hesperidum%1:05:00:: 02249134 1 0 -coccygeal%3:01:00:: 02699011 1 0 -coccygeal_nerve%1:08:00:: 05569577 1 0 -coccygeal_plexus%1:08:00:: 05506832 1 0 -coccygeal_vertebra%1:08:00:: 05589756 1 0 -coccyx%1:08:00:: 05274247 1 0 -coccyzus%1:05:00:: 01823610 1 0 -coccyzus_erythropthalmus%1:05:00:: 01823740 1 0 -cochimi%1:10:00:: 06922485 2 0 -cochimi%1:18:00:: 09653014 1 0 -cochin%1:05:00:: 01790812 1 0 -cochin_china%1:05:00:: 01790812 1 0 -cochineal%1:05:00:: 02250280 2 0 -cochineal%1:27:00:: 14987025 1 0 -cochineal_insect%1:05:00:: 02250280 1 0 -cochise%1:18:00:: 10903570 1 0 -cochlea%1:08:00:: 05326624 1 0 -cochlear%3:01:00:: 03014655 1 0 -cochlearia%1:20:00:: 11883799 1 0 -cochlearia_officinalis%1:20:00:: 11883945 1 0 -cochlearius%1:05:00:: 02011156 1 0 -cochlearius_cochlearius%1:05:00:: 02011281 1 0 -cochon_de_lait%1:13:00:: 07669098 1 0 -cochran%1:18:00:: 10903722 1 0 -cock%1:05:00:: 01514668 5 0 -cock%1:05:01:: 01792158 4 0 -cock%1:06:00:: 04327682 2 0 -cock%1:06:01:: 03481824 3 0 -cock%1:08:00:: 05526713 1 0 -cock%2:35:00:: 01247426 2 2 -cock%2:38:00:: 01916634 3 0 -cock%2:38:01:: 01884868 1 2 -cock's_eggs%1:20:00:: 12912274 1 0 -cock-a-doodle-doo%1:11:00:: 07381231 1 0 -cock-a-hoop%5:00:00:proud:00 01890752 1 0 -cock-a-leekie%1:13:00:: 07585644 1 0 -cock-and-bull_story%1:10:00:: 06757289 1 0 -cock_of_the_rock%1:05:01:: 01551080 2 0 -cock_of_the_rock%1:05:02:: 01551300 1 0 -cock_sucking%1:04:00:: 00855301 1 0 -cock_up%2:38:00:: 01983006 1 0 -cockade%1:06:00:: 03060599 1 0 -cockaigne%1:09:00:: 05627385 1 0 -cockamamie%5:00:00:foolish:00 02571536 1 0 -cockamamy%5:00:00:foolish:00 02571536 1 0 -cockateel%1:05:00:: 01819734 1 0 -cockatiel%1:05:00:: 01819734 1 0 -cockatoo%1:05:00:: 01819115 1 1 -cockatoo_parrot%1:05:00:: 01819734 1 0 -cockatrice%1:18:00:: 09494149 1 0 -cockchafer%1:05:00:: 02174659 1 0 -cockcroft%1:18:00:: 10903918 1 0 -cockcroft-walton_accelerator%1:06:00:: 03060728 1 0 -cockcroft-walton_voltage_multiplier%1:06:00:: 03060728 1 0 -cockcroft_and_walton_accelerator%1:06:00:: 03060728 1 0 -cockcroft_and_walton_voltage_multiplier%1:06:00:: 03060728 1 0 -cockcrow%1:28:00:: 15168790 1 0 -cocked_hat%1:06:00:: 03061050 1 0 -cocker%1:05:00:: 02102318 1 0 -cocker%2:41:00:: 02570267 1 0 -cocker_spaniel%1:05:00:: 02102318 1 0 -cockerel%1:05:00:: 01792429 1 0 -cockeyed%5:00:00:crooked:01 02312450 1 1 -cockeyed%5:00:00:foolish:00 02570643 2 0 -cockeyed%5:00:00:intoxicated:00 00798103 3 0 -cockfight%1:11:00:: 07466195 1 0 -cockfighting%1:04:00:: 00452152 1 0 -cockhorse%1:06:00:: 03061211 1 0 -cockiness%1:07:00:: 05167412 1 0 -cockle%1:05:00:: 01959985 2 0 -cockle%1:13:00:: 07787613 1 0 -cockle%2:35:00:: 01278817 2 0 -cockle%2:38:00:: 02040054 1 0 -cockle-bur%1:20:00:: 12033139 1 0 -cockle-burr%1:20:00:: 12033139 1 0 -cocklebur%1:20:00:: 12033139 1 0 -cocklebur%1:20:02:: 11924849 2 0 -cockleburr%1:20:00:: 12033139 1 0 -cockleshell%1:06:00:: 03061345 1 0 -cockloft%1:06:00:: 03061428 1 0 -cockney%1:10:00:: 06948017 2 0 -cockney%1:18:00:: 09704770 1 0 -cockney%3:01:00:: 03055543 2 0 -cockney%3:01:01:: 03055658 1 0 -cockpit%1:06:00:: 03061505 1 2 -cockpit%1:06:01:: 03061674 3 0 -cockpit%1:06:02:: 03061819 2 0 -cockroach%1:05:00:: 02233338 1 1 -cockscomb%1:05:00:: 01792255 4 0 -cockscomb%1:06:00:: 03061893 3 0 -cockscomb%1:18:00:: 09973490 2 0 -cockscomb%1:20:00:: 11825351 1 0 -cocksfoot%1:20:00:: 12116429 1 0 -cockspur%1:20:01:: 11841247 2 0 -cockspur%1:20:02:: 12116429 1 0 -cockspur_hawthorn%1:20:00:: 12627347 1 0 -cockspur_thorn%1:20:00:: 12627347 1 0 -cocksucker%1:18:00:: 09815188 2 0 -cocksucker%1:18:01:: 09933324 1 0 -cocksure%5:00:00:confident:00 00339288 1 0 -cocksureness%1:09:00:: 05697789 1 0 -cocktail%1:13:00:: 07911677 1 0 -cocktail%1:13:01:: 07581775 2 0 -cocktail_dress%1:06:00:: 03062015 1 0 -cocktail_lounge%1:06:00:: 03062122 1 0 -cocktail_party%1:11:00:: 07448608 1 5 -cocktail_sauce%1:13:00:: 07837110 1 0 -cocktail_shaker%1:06:00:: 03062245 1 0 -cocktail_table%1:06:00:: 03063968 1 0 -cockup%1:04:00:: 00075618 1 0 -cocky%5:00:00:assertive:00 00156440 1 3 -cocky-leeky%1:13:00:: 07585644 1 0 -coco%1:20:00:: 12587803 1 0 -coco_de_macao%1:20:00:: 12592544 1 0 -coco_palm%1:20:00:: 12587803 1 1 -coco_plum%1:13:00:: 07758407 2 0 -coco_plum%1:20:00:: 12625003 1 0 -coco_plum_tree%1:20:00:: 12625003 1 0 -cocoa%1:13:01:: 07755089 2 0 -cocoa%1:13:02:: 07922764 1 0 -cocoa_bean%1:13:00:: 07754894 1 0 -cocoa_butter%1:13:00:: 07602996 2 0 -cocoa_butter%1:27:00:: 14864731 1 0 -cocoa_palm%1:20:00:: 12587803 1 0 -cocoa_plum%1:13:00:: 07758407 2 0 -cocoa_plum%1:20:00:: 12625003 1 0 -cocoa_powder%1:13:00:: 07603177 1 0 -cocoanut%1:13:00:: 07772935 1 0 -cocobolo%1:20:00:: 12523850 1 0 -coconspirator%1:18:00:: 09958892 1 0 -coconspire%2:31:00:: 00707322 1 0 -coconut%1:13:00:: 07772935 2 1 -coconut%1:13:02:: 07773238 1 3 -coconut%1:20:01:: 12587803 3 0 -coconut_cake%1:13:00:: 07630398 1 0 -coconut_cream%1:13:00:: 07840672 1 0 -coconut_macaroon%1:13:00:: 07636779 1 0 -coconut_meat%1:13:00:: 07773238 1 0 -coconut_milk%1:13:00:: 07773428 2 0 -coconut_milk%1:13:02:: 07840672 1 0 -coconut_oil%1:13:00:: 07674161 1 0 -coconut_palm%1:20:00:: 12587803 1 0 -coconut_tree%1:20:00:: 12587803 1 0 -coconut_water%1:13:00:: 07773428 1 0 -cocoon%1:05:00:: 02312744 1 1 -cocoon%2:35:00:: 01581933 2 0 -cocoon%2:38:00:: 02092680 1 0 -cocooning%1:04:00:: 01201906 1 0 -cocopa%1:10:00:: 06922579 2 0 -cocopa%1:18:00:: 09653144 1 0 -cocopah%1:10:00:: 06922579 2 0 -cocopah%1:18:00:: 09653144 1 0 -cocos%1:20:00:: 12587686 1 0 -cocos_nucifera%1:20:00:: 12587803 1 0 -cocoswood%1:20:00:: 11749273 1 0 -cocotte%1:06:00:: 03062336 2 0 -cocotte%1:18:00:: 10485440 1 0 -cocoyam%1:13:00:: 07736813 2 0 -cocoyam%1:20:00:: 11786843 1 0 -cocozelle%1:13:00:: 07716649 2 0 -cocozelle%1:20:00:: 12159942 1 0 -cocteau%1:18:00:: 10904107 1 0 -cocus%1:18:00:: 09574926 1 0 -cocuswood%1:20:00:: 11749273 1 0 -cocytus%1:17:00:: 09248724 1 0 -cod%1:05:00:: 02522399 3 0 -cod%1:13:00:: 07789063 2 0 -cod%1:20:00:: 13140049 1 0 -cod%2:32:00:: 00850501 2 0 -cod%2:32:01:: 00854904 1 0 -cod%4:02:00:: 00253938 1 0 -cod%5:00:00:due:00 00136727 1 0 -cod-liver_oil%1:27:00:: 14815867 1 0 -cod_liver_oil%1:27:00:: 14815867 1 0 -cod_oil%1:27:00:: 14816064 1 0 -coda%1:10:00:: 07039478 1 0 -codariocalyx%1:20:00:: 12517820 1 0 -codariocalyx_motorius%1:20:00:: 12518013 1 0 -coddle%2:30:00:: 00320410 2 0 -coddle%2:41:00:: 02570267 1 2 -coddled_egg%1:13:00:: 07841495 1 0 -coddler%1:18:00:: 10395390 1 0 -code%1:10:00:: 06353934 2 1 -code%1:10:01:: 06667317 1 9 -code%1:10:02:: 06355894 3 0 -code%2:32:00:: 00994076 2 0 -code%2:35:00:: 01589723 1 1 -code_flag%1:10:00:: 06875392 1 0 -code_of_behavior%1:09:00:: 05668095 1 3 -code_of_conduct%1:09:00:: 05668095 1 1 -codefendant%1:18:00:: 09933411 1 0 -codeine%1:06:00:: 03062461 1 0 -coder%1:18:00:: 10481268 1 0 -codetalker%1:18:00:: 09933613 1 0 -codex%1:10:00:: 06407372 2 0 -codex%1:10:01:: 06489560 1 0 -codfish%1:05:00:: 02522399 2 0 -codfish%1:13:00:: 07789063 1 0 -codfish_ball%1:13:00:: 07865575 1 0 -codfish_cake%1:13:00:: 07865575 1 0 -codger%1:18:00:: 09933842 1 0 -codiaeum%1:20:00:: 12923439 1 0 -codiaeum_variegatum%1:20:00:: 12923652 1 0 -codicil%1:10:00:: 06544657 1 0 -codification%1:04:00:: 01009507 1 2 -codification%1:10:00:: 06667317 2 1 -codified%5:00:00:written:02 02286790 1 0 -codify%2:30:01:: 00481739 1 1 -coding%1:04:00:: 00614489 1 0 -coding_dna%1:27:00:: 14830992 1 0 -coding_system%1:10:00:: 06353757 1 0 -codlin_moth%1:05:00:: 02285179 1 0 -codling%1:05:00:: 02522637 1 0 -codling_moth%1:05:00:: 02285179 1 0 -codlins-and-cream%1:20:00:: 12343092 1 0 -codon%1:27:00:: 14816401 1 0 -codpiece%1:06:00:: 03062651 1 0 -codswallop%1:10:00:: 06611998 1 0 -cody%1:18:00:: 10904270 1 0 -coeducate%2:41:00:: 02387792 1 0 -coeducation%1:04:00:: 00884202 1 0 -coeducational%5:00:00:integrated:00 01326415 1 0 -coefficient%1:23:00:: 13586122 1 4 -coefficient_of_absorption%1:23:00:: 13586455 1 0 -coefficient_of_concordance%1:09:00:: 06035014 1 0 -coefficient_of_correlation%1:09:00:: 06032246 1 0 -coefficient_of_drag%1:23:00:: 13586831 1 0 -coefficient_of_elasticity%1:23:00:: 13587963 1 0 -coefficient_of_expansion%1:23:00:: 13588625 1 0 -coefficient_of_friction%1:23:00:: 13587030 1 0 -coefficient_of_mutual_induction%1:23:00:: 13587236 1 0 -coefficient_of_reflection%1:23:00:: 13588819 1 0 -coefficient_of_self_induction%1:23:00:: 13587525 1 0 -coefficient_of_viscosity%1:23:00:: 13589140 1 0 -coelacanth%1:05:00:: 02515713 1 0 -coelenterata%1:05:00:: 01909111 1 0 -coelenterate%1:05:00:: 01909422 1 0 -coelenterate_family%1:05:00:: 01908287 1 0 -coelenterate_genus%1:05:00:: 01908415 1 0 -coelenteron%1:05:00:: 01905543 1 0 -coeliac%3:01:00:: 03008885 1 0 -coeliac_plexus%1:08:00:: 05508735 1 0 -coeloglossum%1:20:00:: 12052053 1 0 -coeloglossum_bracteatum%1:20:00:: 12052267 1 0 -coeloglossum_viride%1:20:00:: 12052447 1 0 -coelogyne%1:20:00:: 12052787 1 0 -coelom%1:08:00:: 05606801 1 0 -coelophysis%1:05:00:: 01713170 1 0 -coelostat%1:06:00:: 03062798 1 0 -coenobite%1:18:00:: 10519291 1 0 -coenobitic%3:01:00:: 02686630 1 0 -coenobitical%3:01:00:: 02686630 1 0 -coenzyme%1:27:00:: 14800277 1 0 -coenzyme_a%1:27:00:: 14800539 1 0 -coenzyme_q%1:27:00:: 15082890 1 0 -coequal%5:00:00:equal:00 00890781 1 0 -coerce%2:41:00:: 02504562 1 2 -coercion%1:04:00:: 00156812 2 0 -coercion%1:04:01:: 01127245 1 0 -coercive%5:00:00:powerful:00 01826327 1 0 -coereba%1:05:00:: 01539136 1 0 -coerebidae%1:05:00:: 01538775 1 0 -coetaneous%5:00:00:synchronous:00 02378191 1 0 -coeur_d'alene%1:15:00:: 09081688 2 0 -coeur_d'alene%1:18:00:: 09653295 1 0 -coeur_d'alene_lake%1:17:00:: 09243100 1 0 -coeval%1:18:00:: 09960417 1 0 -coeval%5:00:00:synchronous:00 02378191 1 0 -coevals%1:14:00:: 08369406 1 0 -coexist%2:42:00:: 02604477 2 0 -coexist%2:42:01:: 02604618 1 1 -coexistence%1:26:00:: 13957268 1 2 -coexistent%5:00:00:synchronous:00 02378347 1 1 -coexisting%5:00:00:synchronous:00 02378347 1 0 -coextension%1:07:00:: 05133748 1 0 -coextensive%5:00:00:commensurate:00 00481463 1 0 -cofactor%1:27:00:: 14800706 1 0 -coffea%1:20:00:: 12662654 1 0 -coffea_arabica%1:20:00:: 12663023 1 0 -coffea_canephora%1:20:00:: 12663359 1 0 -coffea_liberica%1:20:00:: 12663254 1 0 -coffea_robusta%1:20:00:: 12663359 1 0 -coffee%1:07:00:: 04972451 4 0 -coffee%1:13:00:: 07929519 1 46 -coffee%1:13:01:: 07929351 3 0 -coffee%1:20:00:: 12662772 2 0 -coffee-table_book%1:06:00:: 03064118 1 0 -coffee_bar%1:06:00:: 02935658 1 0 -coffee_bean%1:13:00:: 07929351 1 0 -coffee_berry%1:13:00:: 07929351 1 0 -coffee_blight%1:26:00:: 14216793 1 0 -coffee_break%1:13:00:: 07577918 1 1 -coffee_cake%1:13:00:: 07630512 1 0 -coffee_can%1:06:00:: 03062985 1 0 -coffee_cappuccino%1:13:00:: 07920349 1 0 -coffee_cream%1:13:00:: 07847917 1 0 -coffee_cup%1:06:00:: 03063073 1 2 -coffee_fern%1:20:00:: 13212025 1 0 -coffee_filter%1:06:00:: 03063199 1 0 -coffee_fungus%1:20:00:: 13016289 1 0 -coffee_grinder%1:06:00:: 03063485 1 0 -coffee_grounds%1:17:00:: 09248914 1 0 -coffee_liqueur%1:13:00:: 07909129 1 0 -coffee_maker%1:06:00:: 03063338 1 0 -coffee_mill%1:06:00:: 03063485 1 0 -coffee_mug%1:06:00:: 03063599 1 0 -coffee_ring%1:13:00:: 07691424 1 0 -coffee_roll%1:13:00:: 07692614 1 0 -coffee_rose%1:20:00:: 11776511 1 0 -coffee_royal%1:13:00:: 07929940 1 0 -coffee_senna%1:20:00:: 12500751 1 0 -coffee_shop%1:06:00:: 02935658 1 2 -coffee_stall%1:06:00:: 03063834 1 0 -coffee_substitute%1:13:00:: 07731122 1 0 -coffee_table%1:06:00:: 03063968 1 0 -coffee_tree%1:20:00:: 12662772 1 0 -coffee_urn%1:06:00:: 03064250 1 0 -coffeeberry%1:20:00:: 13142182 1 0 -coffeecake%1:13:00:: 07630512 1 0 -coffeehouse%1:06:00:: 02935658 1 1 -coffeepot%1:06:00:: 03063689 1 1 -coffer%1:06:00:: 03064350 2 0 -coffer%1:06:02:: 03064443 1 0 -cofferdam%1:06:00:: 02937093 1 0 -coffey_still%1:06:00:: 03064562 1 0 -coffin%1:06:00:: 03064758 1 3 -coffin%2:35:00:: 01499948 1 0 -coffin_nail%1:06:00:: 03030663 1 0 -cofounder%1:18:00:: 09610173 1 0 -cog%1:06:00:: 03064935 2 0 -cog%1:18:00:: 09934337 1 0 -cog%2:35:00:: 01293918 2 0 -cog%2:35:01:: 01391460 1 0 -cog_railway%1:06:00:: 03065063 1 0 -cogency%1:07:00:: 04783567 2 0 -cogency%1:24:00:: 13794793 1 0 -cogent%5:00:00:persuasive:00 01770392 1 0 -cogent_evidence%1:09:00:: 05824739 1 0 -cogged%5:00:00:toothed:00 02438749 1 0 -coggle%2:38:00:: 01918803 1 0 -coggle%2:38:01:: 01869003 2 0 -cogitable%5:00:00:thinkable:00 02418093 1 0 -cogitate%2:31:00:: 00628491 2 0 -cogitate%2:31:01:: 00703512 1 0 -cogitation%1:09:00:: 05784242 2 0 -cogitation%1:09:01:: 05835568 1 0 -cogitative%3:01:00:: 02898433 1 0 -cogitative%5:00:00:thoughtful:00 02419933 2 0 -cognac%1:13:00:: 07903841 1 0 -cognate%1:10:00:: 06289074 2 0 -cognate%1:18:00:: 10236114 1 0 -cognate%5:00:01:related:01 01971846 3 0 -cognate%5:00:01:related:02 01973823 2 0 -cognate%5:00:02:related:02 01973969 1 1 -cognate_word%1:10:00:: 06289074 1 0 -cognation%1:24:00:: 13813591 2 0 -cognation%1:24:01:: 13814755 1 0 -cognisable%3:00:00:: 01374582 1 0 -cognisance%1:09:00:: 05675905 1 0 -cognisant%3:00:00:: 00190115 1 0 -cognise%2:31:00:: 00594621 1 0 -cognition%1:03:00:: 00023271 1 0 -cognitive%3:01:00:: 02898584 1 0 -cognitive_content%1:09:00:: 05809192 1 0 -cognitive_factor%1:09:00:: 05686481 1 0 -cognitive_neuroscience%1:09:00:: 06082136 1 0 -cognitive_neuroscientist%1:18:00:: 09934488 1 0 -cognitive_operation%1:09:00:: 05701363 1 0 -cognitive_process%1:09:00:: 05701363 1 0 -cognitive_psychology%1:09:00:: 06138582 1 0 -cognitive_science%1:09:00:: 06142861 1 0 -cognitive_scientist%1:18:00:: 09934647 1 0 -cognitive_semantics%1:09:00:: 06180548 1 0 -cognitive_state%1:09:00:: 05669934 1 0 -cognitively%4:02:00:: 00512992 1 0 -cognizable%3:00:00:: 01374582 1 0 -cognizance%1:09:00:: 05675905 1 1 -cognizance%1:09:01:: 05805157 2 0 -cognizance%1:09:02:: 05710481 3 0 -cognizant%3:00:00:: 00190115 1 0 -cognize%2:31:00:: 00594621 1 0 -cognomen%1:10:00:: 06336904 2 0 -cognomen%1:10:01:: 06337693 1 0 -cognoscente%1:18:00:: 09956387 1 0 -cognoscible%3:00:00:: 01374582 1 0 -cognovit_judgement%1:04:00:: 01188273 1 0 -cognovit_judgment%1:04:00:: 01188273 1 0 -cogwheel%1:06:00:: 03430551 1 0 -cohabit%2:42:00:: 02651193 1 0 -cohabitation%1:04:00:: 01054876 1 0 -cohan%1:18:00:: 10904463 1 0 -cohere%2:35:00:: 01220885 1 1 -cohere%2:42:00:: 02753426 3 0 -cohere%2:42:01:: 02753642 2 0 -coherence%1:07:00:: 04821277 2 0 -coherence%1:26:00:: 14420464 1 0 -coherency%1:07:00:: 04821277 2 0 -coherency%1:26:00:: 14420464 1 0 -coherent%3:00:00:: 00464513 1 3 -coherent%3:00:01:: 00328528 3 0 -coherent%5:00:00:adhesive:00 00053384 4 0 -coherent%5:00:00:rational:00 01925708 2 2 -coherently%4:02:00:: 00286371 1 0 -cohesion%1:19:00:: 11436585 3 0 -cohesion%1:22:00:: 13449714 2 0 -cohesion%1:26:00:: 14420464 1 4 -cohesive%5:00:00:adhesive:00 00053564 1 3 -cohesive%5:00:00:united:00 02477047 2 0 -cohesiveness%1:07:01:: 04935904 2 0 -cohesiveness%1:26:00:: 14420464 1 1 -cohn%1:18:00:: 10904639 1 0 -coho%1:05:00:: 02536864 2 0 -coho%1:13:00:: 07796468 1 0 -coho_salmon%1:05:00:: 02536864 2 0 -coho_salmon%1:13:00:: 07796468 1 0 -cohoe%1:05:00:: 02536864 2 0 -cohoe%1:13:00:: 07796468 1 0 -cohort%1:14:00:: 08251104 2 0 -cohort%1:14:01:: 08251213 1 0 -cohort%1:14:02:: 07943480 3 0 -cohosh%1:20:00:: 11723770 1 0 -cohune%1:20:00:: 12593122 1 0 -cohune-nut_oil%1:20:00:: 12593508 1 0 -cohune_fat%1:20:00:: 12593508 1 0 -cohune_nut%1:20:00:: 12593341 1 0 -cohune_oil%1:20:00:: 12593508 1 0 -cohune_palm%1:20:00:: 12593122 1 0 -coif%1:06:00:: 03065243 2 0 -coif%1:08:00:: 05256862 1 0 -coif%2:29:00:: 00038849 2 0 -coif%2:35:00:: 01334647 1 0 -coiffe%2:29:00:: 00038849 1 0 -coiffeur%1:18:00:: 09934774 1 0 -coiffeuse%1:18:00:: 09934846 1 0 -coiffure%1:08:00:: 05256862 1 0 -coiffure%2:29:00:: 00038849 1 0 -coign%1:06:01:: 04035912 2 0 -coign%1:06:02:: 04036004 1 0 -coigne%1:06:01:: 04035912 2 0 -coigne%1:06:02:: 04036004 1 0 -coigue%1:20:00:: 12266644 1 0 -coil%1:06:00:: 03065424 1 1 -coil%1:06:01:: 03065708 6 0 -coil%1:06:02:: 03066029 5 0 -coil%1:06:03:: 03066130 4 0 -coil%1:06:04:: 03066232 3 0 -coil%1:25:00:: 13875970 2 0 -coil%2:35:00:: 01523986 3 0 -coil%2:36:00:: 01663580 2 0 -coil%2:38:00:: 02049190 1 2 -coil_spring%1:06:00:: 03066359 1 0 -coiled%3:00:00:: 02317327 1 0 -coiling%5:00:00:coiled:00 02317598 1 0 -coin%1:21:02:: 13388245 1 7 -coin%2:36:00:: 01639105 2 0 -coin%2:36:01:: 01697986 1 3 -coin-operated%3:01:00:: 02699121 1 0 -coin_bank%1:06:00:: 04139859 1 0 -coin_blank%1:06:00:: 03954393 1 0 -coin_box%1:06:00:: 03066464 1 0 -coin_collecting%1:04:00:: 01015996 1 0 -coin_collection%1:04:00:: 01015996 2 0 -coin_collection%1:14:00:: 07954863 1 0 -coin_collector%1:18:00:: 10366779 1 0 -coin_machine%1:06:00:: 04243941 1 0 -coin_silver%1:27:00:: 14816613 1 0 -coin_slot%1:06:00:: 03066606 1 0 -coinage%1:04:02:: 00940560 3 0 -coinage%1:10:00:: 06294441 2 0 -coinage%1:21:00:: 13387877 1 0 -coincide%2:30:00:: 00345312 2 5 -coincide%2:42:00:: 02660442 1 9 -coincide%2:42:01:: 02658734 3 4 -coincidence%1:07:01:: 05048301 3 0 -coincidence%1:07:02:: 05077661 2 0 -coincidence%1:11:00:: 07316999 1 6 -coincident%5:00:00:congruent:00 00561757 2 0 -coincident%5:00:00:synchronous:00 02378496 1 0 -coincidental%5:00:00:synchronous:00 02378496 1 0 -coincidentally%4:02:00:: 00510629 1 0 -coincidently%4:02:00:: 00510629 1 0 -coinciding%5:00:00:synchronous:00 02378496 1 0 -coiner%1:18:00:: 09934921 3 0 -coiner%1:18:01:: 09935107 2 0 -coiner%1:18:02:: 09935233 1 0 -coinsurance%1:21:00:: 13346209 1 0 -coinsure%2:40:00:: 02251631 1 0 -coir%1:20:00:: 12588054 1 0 -coital%3:01:00:: 02887741 1 0 -coition%1:04:00:: 00845523 1 0 -coitus%1:04:00:: 00845523 1 0 -coitus_interruptus%1:04:00:: 00849059 1 0 -coke%1:06:00:: 03066743 3 0 -coke%1:13:00:: 07928696 2 0 -coke%1:27:00:: 14685768 1 0 -coke%2:30:00:: 00498836 1 0 -col%1:17:00:: 09249034 1 0 -cola%1:13:00:: 07927931 2 0 -cola%1:20:00:: 12197211 1 0 -cola_acuminata%1:20:00:: 12197359 1 0 -cola_extract%1:13:00:: 07774479 1 0 -cola_nut%1:20:00:: 12197601 1 0 -colander%1:06:00:: 03066849 1 0 -colaptes%1:05:00:: 01839470 1 0 -colaptes_auratus%1:05:00:: 01839750 1 0 -colaptes_caper_collaris%1:05:00:: 01840120 1 0 -colaptes_chrysoides%1:05:00:: 01839949 1 0 -colbert%1:13:00:: 07837234 1 0 -colbert_butter%1:13:00:: 07837234 1 0 -colchicaceae%1:20:00:: 12455101 1 0 -colchicine%1:06:00:: 03066965 1 0 -colchicum%1:20:00:: 12455342 1 0 -colchicum_autumnale%1:20:00:: 12455540 1 0 -colchis%1:15:00:: 09015653 1 0 -cold%1:07:00:: 05015117 2 5 -cold%1:09:00:: 05725676 3 0 -cold%1:26:00:: 14145501 1 5 -cold%3:00:01:: 01251128 1 35 -cold%3:00:02:: 01257612 2 13 -cold%5:00:00:cool:03 02532398 4 0 -cold%5:00:00:dead:01 00096815 13 0 -cold%5:00:00:far:00 00442827 12 0 -cold%5:00:00:inhumane:00 01263971 9 0 -cold%5:00:00:intense:00 01510914 7 0 -cold%5:00:00:perfect:00 01750256 5 0 -cold%5:00:00:stale:00 01069454 3 1 -cold%5:00:00:unconscious:00 00572060 11 0 -cold%5:00:00:unenthusiastic:00 00887317 10 0 -cold%5:00:00:unloving:00 01466775 8 0 -cold%5:00:00:unoriginal:00 01689580 6 0 -cold-blooded%3:00:00:: 02532898 2 0 -cold-blooded%5:00:00:inhumane:00 01263971 1 1 -cold-bloodedly%4:02:00:: 00342498 1 1 -cold-cream%2:35:00:: 01364637 1 0 -cold-eyed%5:00:00:impartial:00 01723648 1 0 -cold-shoulder%2:31:00:: 00617413 1 0 -cold-temperate%5:00:00:temperate:01 02402846 1 0 -cold-water_flat%1:06:00:: 03067810 1 0 -cold_cash%1:21:00:: 13422684 1 0 -cold_cathode%1:06:00:: 03067093 1 0 -cold_cereal%1:13:00:: 07704755 1 0 -cold_chisel%1:06:00:: 03067212 1 0 -cold_comfort%1:12:00:: 07492928 1 0 -cold_cream%1:06:00:: 03067339 1 0 -cold_cuts%1:13:00:: 07654438 1 0 -cold_duck%1:13:00:: 07893792 1 0 -cold_feet%1:12:00:: 07523016 1 0 -cold_fish%1:18:00:: 09935351 1 0 -cold_frame%1:06:00:: 03067518 1 4 -cold_front%1:19:00:: 11460829 1 0 -cold_fusion%1:22:00:: 13449892 1 0 -cold_gangrene%1:26:00:: 14313661 1 0 -cold_medicine%1:06:00:: 03067690 1 0 -cold_rubber%1:27:00:: 15007190 1 0 -cold_shoulder%1:04:00:: 01225997 1 0 -cold_snap%1:28:00:: 15246683 1 0 -cold_sober%5:00:00:sober:01 00799716 1 1 -cold_sore%1:26:00:: 14132375 1 0 -cold_spell%1:28:00:: 15246683 1 0 -cold_storage%1:04:00:: 00811825 2 0 -cold_storage%1:26:00:: 14013549 1 0 -cold_stuffed_tomato%1:13:00:: 07878926 1 0 -cold_sweat%1:26:00:: 14405774 1 1 -cold_turkey%1:04:00:: 00229034 2 0 -cold_turkey%1:10:00:: 07140237 1 0 -cold_war%1:26:00:: 13982000 1 7 -cold_war%1:26:01:: 13982156 2 0 -cold_water%1:10:00:: 06718269 1 0 -cold_wave%1:19:00:: 11439924 1 0 -cold_weather%1:19:00:: 11440012 1 3 -cold_work%2:36:00:: 01669070 1 0 -coldcock%2:35:00:: 01412346 1 0 -coldcream%1:06:00:: 03067339 1 0 -coldhearted%3:00:00:: 02533540 1 0 -coldheartedness%1:12:00:: 07506149 1 0 -coldly%4:02:00:: 00164890 1 5 -coldness%1:07:00:: 05015117 3 0 -coldness%1:07:01:: 04629604 2 1 -coldness%1:09:00:: 05725676 1 1 -coldwork%2:36:00:: 01669070 1 0 -cole%1:13:00:: 07714078 2 0 -cole%1:20:00:: 11876976 1 0 -cole_albert_porter%1:18:00:: 11243268 1 0 -cole_porter%1:18:00:: 11243268 1 0 -coleman_hawkins%1:18:00:: 11035017 1 0 -coleonyx%1:05:00:: 01675599 1 0 -coleoptera%1:05:00:: 02163982 1 0 -coleridge%1:18:00:: 10904821 1 1 -coleridgean%3:01:00:: 03029801 1 0 -coleridgian%3:01:00:: 03029801 1 0 -coleslaw%1:13:00:: 07808587 1 0 -colette%1:18:00:: 10904992 1 0 -coleus%1:20:00:: 12844939 1 0 -coleus_amboinicus%1:20:00:: 12845187 1 0 -coleus_aromaticus%1:20:00:: 12845187 1 0 -coleus_blumei%1:20:00:: 12845413 1 0 -colewort%1:20:00:: 11876976 1 0 -colic%1:26:00:: 14325732 1 0 -colic_artery%1:08:00:: 05343408 1 0 -colic_root%1:20:00:: 12430198 1 0 -colic_vein%1:08:00:: 05364345 1 0 -colicky%5:00:00:unhealthy:00 01175741 1 0 -colicroot%1:20:00:: 12430198 1 0 -colima%1:15:00:: 09174015 1 0 -colin_luther_powell%1:18:00:: 11245110 1 0 -colin_powell%1:18:00:: 11245110 1 0 -colinus%1:05:00:: 01804340 1 0 -colinus_virginianus%1:05:00:: 01804653 1 0 -coliphage%1:05:00:: 01335218 1 0 -coliseum%1:06:00:: 02704949 1 0 -colitis%1:26:00:: 14341091 1 0 -collaborate%2:41:00:: 02416278 1 9 -collaborate%2:41:01:: 02416751 2 0 -collaboration%1:04:01:: 01205156 1 4 -collaboration%1:04:02:: 01205341 2 0 -collaborationism%1:04:00:: 01205341 1 0 -collaborationist%1:18:00:: 09935793 1 0 -collaborative%5:00:00:cooperative:00 00620208 1 0 -collaborator%1:18:00:: 09935434 3 0 -collaborator%1:18:01:: 09935793 2 0 -collaborator%1:18:02:: 09953483 1 1 -collage%1:06:00:: 03067912 1 17 -collage%1:14:00:: 07954946 2 0 -collage_film%1:10:00:: 06615818 1 0 -collagen%1:08:00:: 05287090 1 0 -collagenase%1:27:00:: 14736079 1 0 -collagenic%3:01:00:: 02699289 1 0 -collagenous%3:01:00:: 02699289 1 0 -collapsable%3:00:00:: 00465737 1 0 -collapse%1:04:01:: 00327510 3 1 -collapse%1:11:00:: 07361128 2 2 -collapse%1:11:01:: 07477945 4 0 -collapse%1:26:01:: 14066203 1 3 -collapse%2:29:00:: 00030647 2 6 -collapse%2:30:00:: 00224460 7 0 -collapse%2:37:00:: 01785579 6 0 -collapse%2:38:00:: 01989053 1 8 -collapse%2:38:01:: 02083497 3 0 -collapse%2:38:02:: 02041877 4 0 -collapse%2:38:03:: 01989562 5 0 -collapsible%3:00:00:: 00465737 1 1 -collapsible_shelter%1:06:00:: 04411264 1 0 -collar%1:04:00:: 00088725 9 0 -collar%1:04:02:: 01145688 8 0 -collar%1:06:00:: 03068181 1 5 -collar%1:06:01:: 03024882 7 0 -collar%1:06:02:: 03068486 6 0 -collar%1:06:03:: 03068707 5 0 -collar%1:06:04:: 03068862 4 0 -collar%1:06:05:: 03068998 3 0 -collar%1:07:00:: 04680752 2 0 -collar%2:35:00:: 01215137 1 1 -collar%2:35:01:: 01215694 3 0 -collar%2:35:02:: 01215851 2 0 -collar_blight%1:26:00:: 14216888 1 0 -collar_cell%1:05:00:: 01907287 1 0 -collarbone%1:08:00:: 05274105 1 0 -collard%1:20:00:: 11877193 1 0 -collard_greens%1:13:00:: 07714188 1 0 -collards%1:13:00:: 07714188 1 0 -collared_lizard%1:05:00:: 01679626 1 0 -collared_peccary%1:05:00:: 02397744 1 0 -collared_pika%1:05:00:: 02328942 1 0 -collarless%3:01:00:: 02699451 1 0 -collate%2:31:00:: 00661713 1 1 -collate%2:35:00:: 01385759 2 0 -collateral%1:21:00:: 13352865 1 0 -collateral%3:00:00:: 01417228 1 0 -collateral%5:00:00:parallel:00 01718609 4 0 -collateral%5:00:00:secondary:01 01854420 3 0 -collateral%5:00:00:supportive:00 02355521 2 0 -collateral_damage%1:11:00:: 07361863 1 0 -collateral_fraud%1:04:00:: 00778017 1 0 -collateralize%2:32:00:: 00886457 1 0 -collation%1:04:01:: 00651531 3 0 -collation%1:04:02:: 01014607 2 0 -collation%1:13:00:: 07577374 1 0 -colleague%1:18:00:: 09936215 1 7 -colleague%1:18:01:: 09935990 2 1 -collect%1:10:00:: 07189633 1 0 -collect%2:35:00:: 01380638 3 12 -collect%2:35:01:: 01384439 4 8 -collect%2:40:00:: 02304982 1 16 -collect%2:40:01:: 02218173 2 15 -collect%2:40:03:: 02305586 5 2 -collect%4:02:00:: 00253794 1 0 -collect%5:00:00:due:00 00136727 1 0 -collect_call%1:10:00:: 06273294 1 0 -collectable%1:06:00:: 03069213 1 0 -collectable%5:00:00:due:00 00136884 1 0 -collected%3:44:00:: 03147919 1 0 -collected%5:00:00:composed:00 00530354 2 0 -collectedly%4:02:00:: 00286889 1 0 -collectible%1:06:00:: 03069213 1 0 -collectible%5:00:00:due:00 00136884 1 0 -collecting%1:04:00:: 01014066 1 0 -collection%1:04:00:: 01014066 4 1 -collection%1:10:00:: 06591442 2 1 -collection%1:10:01:: 06513764 3 1 -collection%1:14:00:: 07951464 1 12 -collection_plate%1:06:00:: 03960374 1 0 -collective%1:14:00:: 08056601 1 1 -collective%3:00:00:: 00466808 2 0 -collective%5:00:00:joint:00 02112701 1 7 -collective%5:00:00:socialistic:00 00298293 3 0 -collective_agreement%1:10:00:: 06526961 1 0 -collective_bargaining%1:10:00:: 07150023 1 0 -collective_farm%1:14:00:: 08056747 1 0 -collective_noun%1:10:00:: 06319575 1 0 -collective_security%1:26:00:: 14540220 1 0 -collectively%4:02:00:: 00117082 1 1 -collectivisation%1:04:00:: 01152787 1 0 -collectivise%2:41:00:: 02433767 1 0 -collectivised%5:00:00:collective:00 00467564 1 0 -collectivised%5:00:00:socialistic:00 00298507 2 0 -collectivism%1:09:00:: 06214580 2 0 -collectivism%1:14:00:: 08368308 1 0 -collectivist%1:18:00:: 10619176 1 0 -collectivist%5:00:00:socialistic:00 00298507 1 0 -collectivistic%5:00:00:socialistic:00 00298507 1 0 -collectivization%1:04:00:: 01152787 1 0 -collectivize%2:41:00:: 02433767 1 0 -collectivized%5:00:00:collective:00 00467564 1 0 -collectivized%5:00:00:socialistic:00 00298507 2 0 -collector%1:06:00:: 03069381 4 0 -collector%1:17:00:: 09249155 3 1 -collector%1:18:00:: 09936362 2 1 -collector%1:18:01:: 09936620 1 9 -collector's_item%1:06:00:: 03069567 1 0 -collector_of_internal_revenue%1:18:00:: 10693052 1 0 -colleen%1:18:00:: 09936825 1 0 -college%1:06:00:: 03069752 3 0 -college%1:14:00:: 08278169 1 45 -college%1:14:01:: 08278324 2 0 -college_boy%1:18:00:: 09937056 1 0 -college_girl%1:18:00:: 09934213 1 1 -college_level%1:26:00:: 14431338 1 1 -college_man%1:18:00:: 09937056 1 0 -college_of_cardinals%1:14:00:: 08085824 1 0 -college_student%1:18:00:: 09936892 1 2 -collegial%3:01:00:: 02699792 1 0 -collegial%3:01:02:: 02699524 2 0 -collegian%1:18:00:: 09937056 1 1 -collegiate%3:01:00:: 02699524 1 1 -collegiate_dictionary%1:10:00:: 06419354 1 0 -collembola%1:05:00:: 02163144 1 0 -collembolan%1:05:00:: 02163297 1 0 -collet%1:06:00:: 03069919 3 0 -collet%1:06:01:: 03329536 1 0 -collet%1:06:02:: 03070059 2 0 -collet_chuck%1:06:00:: 03070059 1 0 -collide%2:35:00:: 01561143 3 0 -collide%2:35:01:: 01562733 2 0 -collide%2:42:00:: 02667698 1 0 -collide_with%2:35:00:: 01236164 1 1 -collider%1:06:00:: 03070193 1 0 -collie%1:05:00:: 02106030 1 0 -collier%1:18:00:: 09932508 1 0 -colliery%1:06:00:: 03070396 1 0 -colligate%2:31:00:: 00685224 2 0 -colligate%2:31:02:: 00713167 1 0 -colligation%1:09:00:: 05764197 2 0 -colligation%1:26:00:: 14420954 1 0 -collimate%2:30:00:: 00465461 2 0 -collimate%2:30:01:: 00525281 1 0 -collimation%1:04:00:: 01000276 1 0 -collimator%1:06:00:: 03070587 2 0 -collimator%1:06:01:: 03070854 1 0 -collinear%5:00:00:linear:01 00658513 1 0 -collins%1:13:00:: 07913882 2 0 -collins%1:18:00:: 10905159 1 0 -collinsia%1:20:00:: 12881429 1 0 -collinsia_bicolor%1:20:00:: 12881631 1 0 -collinsia_heterophylla%1:20:00:: 12881631 1 0 -collinsia_parviflora%1:20:00:: 12881913 1 0 -collinsia_verna%1:20:00:: 12882158 1 0 -collinsonia%1:20:00:: 12844220 1 0 -collinsonia_canadensis%1:20:00:: 12844409 1 0 -collis_potter_huntington%1:18:00:: 11067184 1 0 -collision%1:10:00:: 07183000 3 0 -collision%1:11:00:: 07301543 2 0 -collision%1:11:01:: 07302542 1 6 -collision_course%1:04:00:: 00038863 2 0 -collision_course%1:17:00:: 09249272 1 0 -collocalia%1:05:00:: 01832979 1 0 -collocalia_inexpectata%1:05:00:: 01833112 1 0 -collocate%2:31:00:: 00657016 2 0 -collocate%2:42:00:: 02612610 1 0 -collocate_with%2:42:00:: 02660819 1 0 -collocation%1:04:00:: 01051801 2 0 -collocation%1:10:00:: 07015151 1 0 -collodion%1:27:00:: 14795263 1 0 -collogue%2:32:00:: 00876994 1 0 -colloid%1:27:00:: 14588219 1 0 -colloidal%3:01:00:: 02903946 1 2 -colloidal_gel%1:27:00:: 14590542 1 0 -colloidal_solution%1:27:00:: 14590795 1 0 -colloidal_suspension%1:27:00:: 14590795 1 0 -colloidally%4:02:00:: 00287074 1 0 -colloquial%5:00:01:informal:02 01045963 1 1 -colloquialism%1:10:00:: 07075172 1 0 -colloquially%4:02:00:: 00286667 1 0 -colloquium%1:10:00:: 07239327 2 0 -colloquium%1:14:00:: 08327906 1 0 -colloquy%1:10:00:: 07137733 2 0 -colloquy%1:10:01:: 07143044 1 0 -collotype%1:10:00:: 06679726 1 0 -collotype_printing%1:10:00:: 06679726 1 0 -collude%2:31:00:: 00707624 1 0 -collusion%1:09:00:: 05795244 1 2 -collusion%1:10:00:: 07176962 2 0 -collusive%5:00:00:covert:00 01707084 1 0 -colly%2:35:00:: 01534147 1 0 -collyrium%1:06:00:: 03309214 1 0 -collywobbles%1:26:00:: 14172383 1 0 -colobus%1:05:00:: 02488702 1 0 -colobus_guereza%1:05:00:: 02488894 1 0 -colobus_monkey%1:05:00:: 02488702 1 0 -colocasia%1:20:00:: 11786365 1 0 -colocasia_esculenta%1:20:00:: 11786539 1 0 -cologne%1:06:00:: 03071021 2 0 -cologne%1:15:00:: 08772307 1 0 -cologne_water%1:06:00:: 03071021 1 0 -colombia%1:15:00:: 08732116 1 0 -colombian%1:18:00:: 09698517 1 0 -colombian%3:01:00:: 02967618 1 1 -colombian_monetary_unit%1:23:00:: 13691651 1 0 -colombian_peso%1:23:00:: 13691764 1 0 -colombo%1:15:00:: 08719465 1 0 -colon%1:08:00:: 05535869 1 2 -colon%1:10:00:: 06842660 5 0 -colon%1:15:00:: 08739669 4 0 -colon%1:23:00:: 13667372 3 0 -colon%1:23:01:: 13667643 2 0 -colon_cancer%1:26:00:: 14247239 1 0 -colonel%1:18:00:: 09937250 1 33 -colonel_blimp%1:18:00:: 09937489 1 0 -colonel_blimp%1:18:01:: 09592147 2 0 -colonial%1:18:00:: 09937688 1 1 -colonial%3:01:00:: 02700029 1 5 -colonial%3:01:01:: 02700199 2 0 -colonial%5:00:00:complex:00 02177397 3 0 -colonialism%1:04:00:: 00426526 1 0 -colonialist%1:18:00:: 09937802 1 0 -colonic%1:04:00:: 00696147 1 0 -colonic%3:01:00:: 02700317 1 0 -colonic_irrigation%1:04:00:: 00696147 1 0 -colonisation%1:04:00:: 01252280 1 0 -colonise%2:30:00:: 00414174 2 0 -colonise%2:41:00:: 02590340 1 0 -colonised%5:00:00:inhabited:00 01311605 1 0 -coloniser%1:18:00:: 09937903 1 0 -colonist%1:18:00:: 10583387 1 0 -colonization%1:04:00:: 01252280 1 0 -colonize%2:30:00:: 00414174 2 0 -colonize%2:41:00:: 02590340 1 1 -colonized%5:00:00:inhabited:00 01311605 1 0 -colonizer%1:18:00:: 09937903 1 0 -colonnade%1:06:01:: 03071160 1 0 -colonnade%1:06:02:: 02733213 2 0 -colonnaded%5:00:00:columned:00 00141316 1 0 -colonoscope%1:06:00:: 03071288 1 0 -colonoscopy%1:04:00:: 00642446 1 0 -colony%1:14:00:: 08374049 1 7 -colony%1:14:01:: 07995856 2 2 -colony%1:14:02:: 07996010 6 0 -colony%1:15:00:: 09048460 3 0 -colony%1:15:01:: 08499840 5 0 -colony%1:15:02:: 08514233 4 0 -colophon%1:06:00:: 03071431 1 0 -colophony%1:27:00:: 14896128 1 0 -color%1:07:00:: 04956594 1 48 -color%1:07:01:: 04674968 8 0 -color%1:07:02:: 04988478 3 3 -color%1:07:03:: 05193338 2 4 -color%1:07:04:: 04677952 5 1 -color%1:09:01:: 05844663 7 0 -color%1:14:00:: 07968354 4 2 -color%1:27:00:: 14984973 6 0 -color%2:30:00:: 00283911 1 7 -color%2:30:01:: 00281101 6 0 -color%2:32:00:: 00836926 2 2 -color%2:32:01:: 00837133 5 0 -color%2:36:01:: 01696648 4 0 -color%2:41:00:: 02537092 3 1 -color%3:00:00:: 00394135 1 4 -color-blind%5:00:00:blind:00 02159453 1 0 -color-blind%5:00:00:unprejudiced:00 00286470 2 0 -color-blind_person%1:18:00:: 09610255 1 0 -color_bar%1:09:00:: 05692234 1 0 -color_bearer%1:18:00:: 09938272 1 4 -color_blindness%1:26:00:: 14153010 1 0 -color_chart%1:10:00:: 07001446 1 0 -color_circle%1:10:00:: 07001547 1 0 -color_code%1:10:00:: 06355078 1 0 -color_constancy%1:09:00:: 05709343 1 0 -color_force%1:19:00:: 11516819 1 0 -color_guard%1:18:00:: 09938449 1 0 -color_in%2:30:00:: 00283911 1 0 -color_line%1:09:00:: 05692234 1 0 -color_of_law%1:07:00:: 04678401 1 0 -color_property%1:07:00:: 04974968 1 0 -color_scheme%1:14:00:: 07964144 1 1 -color_sergeant%1:18:00:: 09938554 1 3 -color_spectrum%1:19:00:: 11523369 1 0 -color_television%1:06:00:: 03072201 1 0 -color_television_system%1:06:00:: 03072201 1 0 -color_television_tube%1:06:00:: 03072440 1 0 -color_tube%1:06:00:: 03072440 1 0 -color_tv%1:06:00:: 03072201 1 1 -color_tv_tube%1:06:00:: 03072440 1 0 -color_vision%1:09:00:: 05656294 1 0 -color_vision_deficiency%1:26:00:: 14153010 1 0 -color_wash%1:06:00:: 03072682 1 0 -color_wheel%1:10:00:: 07001547 1 0 -coloradan%1:18:00:: 09741816 1 0 -coloradillo%1:20:00:: 12668131 1 0 -colorado%1:15:00:: 09067277 1 2 -colorado%1:17:00:: 09249418 3 0 -colorado%1:17:01:: 09250016 2 0 -colorado_beetle%1:05:00:: 02169974 1 0 -colorado_blue_spruce%1:20:00:: 11626585 1 0 -colorado_desert%1:15:00:: 09168915 1 0 -colorado_fir%1:20:00:: 11621727 1 0 -colorado_four_o'clock%1:20:00:: 11840476 1 0 -colorado_plateau%1:17:00:: 09250165 1 0 -colorado_potato_beetle%1:05:00:: 02169974 1 0 -colorado_river%1:17:00:: 09249418 2 0 -colorado_river%1:17:01:: 09250016 1 0 -colorado_river_hemp%1:20:00:: 12569616 1 0 -colorado_springs%1:15:00:: 09067878 1 0 -colorado_spruce%1:20:00:: 11626585 1 0 -coloration%1:04:00:: 00161739 3 0 -coloration%1:07:00:: 04975988 2 0 -coloration%1:07:01:: 04988478 1 0 -coloratura%1:04:00:: 00546299 2 0 -coloratura%1:18:00:: 09938080 1 1 -coloratura_soprano%1:18:00:: 09938080 1 0 -colorcast%1:10:00:: 06620790 1 0 -colorcast%2:32:00:: 00969769 1 0 -colorectal%3:01:00:: 02700434 1 0 -colored%1:18:00:: 09637512 1 0 -colored%3:00:00:: 00394562 1 13 -colored%5:00:00:artificial:00 01572171 4 0 -colored%5:00:00:black:02 00242575 2 12 -colored%5:00:00:partial:01 01723091 3 0 -colored_audition%1:09:00:: 05721019 1 0 -colored_hearing%1:09:00:: 05721019 1 0 -colored_person%1:18:00:: 09637512 1 0 -colorfast%5:00:00:impervious:00 01774376 1 0 -colorful%3:00:00:: 00402419 1 6 -colorful%3:00:02:: 00394562 3 0 -colorful%3:00:03:: 00406867 2 3 -colorimeter%1:06:00:: 03071552 1 0 -colorimetric%3:01:00:: 02700615 1 0 -colorimetric_analysis%1:04:00:: 00647536 1 0 -colorimetrical%3:01:00:: 02700615 1 0 -colorimetry%1:04:00:: 00647536 1 0 -coloring%1:04:00:: 00274941 3 0 -coloring%1:07:00:: 04956594 2 0 -coloring%1:13:00:: 07567139 1 0 -coloring_book%1:06:00:: 03071782 1 0 -coloring_material%1:27:00:: 14984973 1 0 -colorise%2:30:03:: 00283911 1 0 -colorist%1:18:00:: 09938672 1 0 -colorize%2:30:03:: 00283911 1 0 -colorless%3:00:02:: 00404202 2 0 -colorless%3:00:03:: 00408031 1 0 -colorlessness%1:07:00:: 04958634 1 0 -colors%1:06:00:: 03071923 1 5 -colors%1:06:01:: 03072056 2 0 -colossae%1:15:00:: 08701555 1 0 -colossal%5:00:01:large:00 01384730 1 3 -colosseum%1:06:00:: 03072828 1 0 -colossian%1:18:00:: 09938851 1 0 -colossians%1:10:00:: 06444711 1 0 -colossus%1:18:00:: 10128909 1 0 -colossus%1:18:01:: 09938991 2 0 -colossus_of_rhodes%1:06:00:: 03073016 1 0 -colostomy%1:04:00:: 00668552 1 0 -colostrum%1:08:00:: 05399356 1 0 -colour%1:07:00:: 04956594 6 0 -colour%1:07:01:: 04674968 8 0 -colour%1:07:02:: 04988478 5 0 -colour%1:07:03:: 05193338 4 0 -colour%1:07:04:: 04677952 7 0 -colour%1:09:01:: 05844663 3 0 -colour%1:14:00:: 07968354 2 0 -colour%1:27:00:: 14984973 1 0 -colour%2:30:00:: 00281101 6 0 -colour%2:30:09:: 00283911 5 0 -colour%2:32:03:: 00836926 4 0 -colour%2:32:04:: 00837133 3 0 -colour%2:36:01:: 01696648 2 0 -colour%2:41:02:: 02537092 1 0 -colour%3:00:02:: 00394135 1 1 -colour-blind%5:00:00:blind:00 02159453 1 0 -colour-blind%5:00:00:unprejudiced:00 00286470 2 0 -colour_bar%1:09:00:: 05692234 1 0 -colour_blindness%1:26:00:: 14153010 1 0 -colour_constancy%1:09:00:: 05709343 1 0 -colour_in%2:30:00:: 00283911 1 0 -colour_line%1:09:00:: 05692234 1 0 -colour_of_law%1:07:00:: 04678401 1 0 -colour_scheme%1:14:00:: 07964144 1 0 -colour_supplement%1:10:00:: 06596179 1 0 -colour_television%1:06:00:: 03072201 1 0 -colour_television_system%1:06:00:: 03072201 1 0 -colour_television_tube%1:06:00:: 03072440 1 0 -colour_tube%1:06:00:: 03072440 1 0 -colour_tv%1:06:00:: 03072201 1 0 -colour_tv_tube%1:06:00:: 03072440 1 0 -colour_vision_deficiency%1:26:00:: 14153010 1 0 -colour_wash%1:06:00:: 03072682 1 0 -colouration%1:04:00:: 00161739 3 0 -colouration%1:07:00:: 04975988 2 0 -colouration%1:07:01:: 04988478 1 0 -colourcast%1:10:00:: 06620790 1 0 -coloured%3:00:00:: 00394562 1 0 -coloured%5:00:00:artificial:00 01572171 3 0 -coloured%5:00:00:black:02 00242575 4 0 -coloured%5:00:00:partial:01 01723091 2 0 -colourful%3:00:00:: 00402419 2 0 -colourful%3:00:03:: 00406867 1 0 -colouring%1:04:00:: 00274941 3 0 -colouring%1:07:00:: 04956594 2 0 -colouring%1:13:00:: 07567139 1 0 -colouring_material%1:27:00:: 14984973 1 0 -colourise%2:30:03:: 00283911 1 0 -colourize%2:30:03:: 00283911 1 0 -colourless%3:00:02:: 00404202 2 0 -colourless%3:00:03:: 00408031 1 0 -colourlessness%1:07:00:: 04958634 1 0 -colours%1:06:00:: 03071923 2 0 -colours%1:06:01:: 03072056 1 0 -colpitis%1:26:00:: 14341253 1 0 -colpocele%1:26:00:: 14295691 1 0 -colpocystitis%1:26:00:: 14341334 1 0 -colpocystocele%1:26:00:: 14296966 1 0 -colpoxerosis%1:26:00:: 14058456 1 0 -colt%1:05:02:: 02376791 1 2 -colt%1:06:00:: 03073296 2 1 -coltan%1:27:00:: 14672373 1 0 -colter%1:06:00:: 03073384 1 0 -coltish%5:00:00:playful:00 02122132 1 0 -coltsfoot%1:20:00:: 12029635 2 0 -coltsfoot%1:20:01:: 12251278 1 0 -coluber%1:05:00:: 01730679 1 0 -coluber_constrictor%1:05:00:: 01730960 1 0 -coluber_constrictor_flaviventris%1:05:00:: 01731137 1 0 -coluber_hippocrepis%1:05:00:: 01731277 1 0 -colubrid%1:05:00:: 01727646 1 0 -colubrid_snake%1:05:00:: 01727646 1 0 -colubridae%1:05:00:: 01726960 1 0 -colubrina%1:20:00:: 13142695 1 0 -colugo%1:05:00:: 02502514 1 0 -columba%1:05:00:: 01812471 2 0 -columba%1:17:00:: 09250551 1 0 -columba_fasciata%1:05:00:: 01812866 1 0 -columba_livia%1:05:00:: 01812662 1 0 -columba_palumbus%1:05:00:: 01813088 1 0 -columbarium%1:06:00:: 03073545 3 0 -columbarium%1:06:01:: 03073694 2 0 -columbarium%1:06:02:: 03228692 1 0 -columbary%1:06:00:: 03228692 1 0 -columbia%1:06:00:: 03073832 5 0 -columbia%1:15:00:: 09138358 3 0 -columbia%1:15:01:: 09106502 4 0 -columbia%1:15:02:: 09140674 2 0 -columbia%1:17:00:: 09250678 1 0 -columbia_river%1:17:00:: 09250678 1 0 -columbia_tiger_lily%1:20:00:: 12427391 1 0 -columbia_university%1:06:00:: 03073832 1 0 -columbian%3:01:00:: 03029984 1 0 -columbian_mammoth%1:05:00:: 02505238 1 0 -columbidae%1:05:00:: 01811682 1 0 -columbiform_bird%1:05:00:: 01810700 1 0 -columbiformes%1:05:00:: 01810466 1 0 -columbine%1:20:00:: 11727091 1 1 -columbite%1:27:00:: 14683859 1 0 -columbite-tantalite%1:27:00:: 14672373 1 0 -columbium%1:27:00:: 14647154 1 0 -columbo%1:20:00:: 12292877 1 0 -columbus%1:15:00:: 09131001 1 4 -columbus%1:15:01:: 09077410 4 0 -columbus%1:15:02:: 09104604 3 0 -columbus%1:18:00:: 10905315 2 0 -columbus_day%1:28:00:: 15190895 1 0 -columella%1:25:00:: 13900914 1 0 -column%1:06:00:: 03073977 7 1 -column%1:06:01:: 03074380 6 1 -column%1:06:02:: 03074574 2 10 -column%1:08:00:: 05585999 9 0 -column%1:10:00:: 06268567 5 4 -column%1:10:01:: 06268357 8 0 -column%1:14:00:: 08429052 1 18 -column%1:14:01:: 08433575 3 8 -column%1:25:02:: 13900422 4 5 -column_chromatography%1:22:00:: 13450070 1 1 -column_inch%1:23:00:: 13713300 1 0 -columnar%5:00:01:columned:00 00140989 2 0 -columnar%5:00:02:columned:00 00141111 1 0 -columnar_cell%1:08:00:: 05242070 1 0 -columnar_epithelial_cell%1:08:00:: 05242070 1 0 -columnea%1:20:00:: 12831535 1 0 -columned%3:00:00:: 00140542 1 1 -columniation%1:07:00:: 05076069 1 0 -columniform%5:00:00:columned:00 00141111 1 0 -columnist%1:18:00:: 09939154 1 1 -columnlike%5:00:00:columned:00 00141111 1 1 -colutea%1:20:00:: 12518305 1 0 -colutea_arborescens%1:20:00:: 12518481 1 0 -colymbiformes%1:05:00:: 02049299 1 0 -colza%1:20:00:: 11879722 1 0 -colza_oil%1:20:00:: 11880032 1 0 -coma%1:09:00:: 05680193 1 1 -coma%1:17:00:: 09251002 3 0 -coma%1:20:00:: 13090395 2 0 -coma_berenices%1:17:00:: 09251229 1 0 -comal%5:00:00:hairy:00 00213172 1 0 -comanche%1:10:00:: 06914930 2 0 -comanche%1:18:00:: 09653438 1 0 -comandra%1:20:00:: 12736064 1 0 -comandra_pallida%1:20:00:: 12736228 1 0 -comate%5:00:00:crowned:00 00654394 1 0 -comate%5:00:00:hairy:00 00213172 2 0 -comatose%3:01:00:: 02844578 1 0 -comatose%5:00:00:unconscious:00 00572202 2 0 -comatoseness%1:09:00:: 05680193 1 0 -comatula%1:05:00:: 02321062 1 0 -comatulid%1:05:00:: 02321170 1 0 -comatulidae%1:05:00:: 02320769 1 0 -comb%1:04:00:: 00256746 5 0 -comb%1:05:00:: 01921440 4 0 -comb%1:05:01:: 01792255 2 1 -comb%1:06:00:: 03074855 1 3 -comb%1:06:01:: 03075097 3 0 -comb%2:29:00:: 00038365 3 1 -comb%2:35:00:: 01319193 2 1 -comb%2:35:01:: 01596645 1 1 -comb-footed_spider%1:05:00:: 01774097 1 0 -comb-like%3:01:00:: 02707283 1 0 -comb-out%1:04:00:: 00256961 1 0 -comb-out%1:04:01:: 00090610 2 0 -comb-plate%1:05:00:: 01918585 1 0 -comb_jelly%1:05:00:: 01918744 1 0 -comb_out%2:29:00:: 00038365 2 0 -comb_out%2:40:00:: 02223630 1 0 -combat%1:04:00:: 00964343 1 14 -combat%1:04:01:: 01170962 2 1 -combat%2:33:00:: 01092366 1 7 -combat-ready%5:00:00:operational:00 01660444 1 0 -combat_area%1:15:00:: 08688590 1 0 -combat_boot%1:06:00:: 02925666 1 0 -combat_casualty%1:11:00:: 07339808 1 0 -combat_ceiling%1:07:00:: 05132962 1 0 -combat_fatigue%1:26:00:: 14388596 1 0 -combat_injury%1:11:00:: 07340249 1 0 -combat_intelligence%1:04:00:: 00982347 1 0 -combat_mission%1:04:00:: 00970903 1 1 -combat_neurosis%1:26:00:: 14388596 1 0 -combat_pay%1:21:00:: 13279809 1 0 -combat_pilot%1:18:00:: 09939827 1 0 -combat_ship%1:06:00:: 04552696 1 0 -combat_zone%1:15:00:: 08688590 2 0 -combat_zone%1:15:01:: 08689646 1 0 -combatant%1:18:00:: 09939313 1 0 -combatant%5:00:00:military:01 01517632 1 1 -combative%5:00:00:aggressive:00 00082766 3 0 -combative%5:00:00:argumentative:00 00603804 1 0 -combative%5:00:00:competitive:00 00512769 2 0 -combatively%4:02:00:: 00287207 1 0 -combativeness%1:07:00:: 04837615 1 0 -combed%3:00:00:: 02429066 1 0 -comber%1:06:00:: 03075248 3 0 -comber%1:11:00:: 07352617 2 0 -comber%1:18:00:: 09940026 1 0 -combinable%5:00:00:combinative:00 00472694 1 1 -combination%1:04:00:: 00378985 7 0 -combination%1:04:01:: 00870453 6 0 -combination%1:14:00:: 07963711 1 18 -combination%1:14:01:: 08272961 4 0 -combination%1:14:02:: 08373544 3 0 -combination%1:14:03:: 07964495 5 0 -combination%1:14:04:: 08373723 2 0 -combination_in_restraint_of_trade%1:14:00:: 07964809 1 1 -combination_lock%1:06:00:: 03075370 1 0 -combination_plane%1:06:00:: 03075500 1 0 -combination_salad%1:13:00:: 07807317 1 0 -combinational%5:00:00:combinative:00 00472694 1 0 -combinative%3:00:00:: 00472336 1 0 -combinative%5:00:00:integrative:00 01331244 2 0 -combinatorial%5:00:00:combinative:00 00472534 2 0 -combinatorial%5:00:00:integrative:00 01331244 1 0 -combinatory%3:00:01:: 00472336 1 0 -combinatory%5:00:00:integrative:00 01331244 2 0 -combinatory%5:00:02:combinative:00 00472694 3 0 -combine%1:06:00:: 03075634 1 1 -combine%1:11:00:: 07373803 3 0 -combine%1:14:00:: 08236621 2 0 -combine%2:30:00:: 00394813 7 1 -combine%2:30:02:: 00193486 2 12 -combine%2:35:01:: 01461328 3 5 -combine%2:35:03:: 01385170 6 1 -combine%2:40:00:: 02309008 4 4 -combine%2:41:00:: 02377938 5 2 -combine%2:42:00:: 02631163 1 14 -combined%3:00:00:: 01329830 1 1 -combined_dna_index_system%1:10:00:: 06509075 1 0 -combined_operation%1:04:00:: 00955565 1 0 -combing%1:04:00:: 00256746 1 0 -combining%1:04:00:: 00378985 2 0 -combining%1:11:00:: 07373803 1 0 -combining_form%1:10:00:: 06307152 1 0 -combining_weight%1:07:00:: 05026508 1 0 -combo%1:14:00:: 08250302 1 1 -combretaceae%1:20:00:: 12323411 1 0 -combretum%1:20:00:: 12324056 1 0 -combretum_appiculatum%1:20:00:: 12324388 1 0 -combretum_bracteosum%1:20:00:: 12324222 1 0 -combretum_erythrophyllum%1:20:00:: 12324558 1 0 -combretum_family%1:20:00:: 12323411 1 0 -combtooth_blenny%1:05:00:: 02613181 1 0 -comburant%5:00:00:combustible:00 00473502 1 0 -comburent%5:00:00:combustible:00 00473502 1 0 -combust%2:30:00:: 00377002 5 0 -combust%2:37:00:: 01795428 3 0 -combust%2:37:01:: 01786419 4 0 -combust%2:43:00:: 02760622 2 0 -combust%2:43:02:: 02762468 1 0 -combustibility%1:07:00:: 04712405 1 0 -combustible%1:27:00:: 14816745 1 0 -combustible%3:00:00:: 00472992 1 0 -combustible_material%1:27:00:: 14816745 1 0 -combustibleness%1:07:00:: 04712405 1 0 -combustion%1:04:00:: 00378069 3 0 -combustion%1:22:00:: 13450206 1 2 -combustion%1:26:00:: 13978914 2 0 -combustive%5:00:00:combustible:00 00473502 1 0 -come%1:08:00:: 05404336 1 0 -come%2:30:01:: 00341917 3 147 -come%2:30:02:: 00342812 6 11 -come%2:30:03:: 00542120 4 41 -come%2:30:13:: 00344886 13 2 -come%2:31:13:: 00659984 21 0 -come%2:31:14:: 00723349 17 1 -come%2:38:00:: 01849221 1 276 -come%2:38:02:: 02006709 16 1 -come%2:38:03:: 01839690 11 3 -come%2:38:04:: 02005948 2 235 -come%2:39:00:: 02197360 20 0 -come%2:42:00:: 02729963 12 2 -come%2:42:02:: 02617567 19 0 -come%2:42:03:: 02686805 9 6 -come%2:42:04:: 02625339 5 40 -come%2:42:05:: 02743565 10 3 -come%2:42:09:: 02743214 8 7 -come%2:42:11:: 02627363 15 1 -come%2:42:12:: 02645007 14 1 -come%2:42:13:: 02743921 7 9 -come%2:42:15:: 02737187 18 0 -come-at-able%5:00:00:accessible:00 00019505 2 0 -come-at-able%5:00:00:possible:00 01822153 1 0 -come-on%1:07:00:: 04689660 2 0 -come-on%1:09:00:: 05695232 1 0 -come_about%2:30:00:: 00339934 1 4 -come_across%2:31:00:: 00592037 5 0 -come_across%2:32:00:: 01063529 4 0 -come_across%2:38:00:: 02023107 3 0 -come_across%2:39:00:: 02136138 2 0 -come_across%2:40:02:: 02286687 1 3 -come_after%2:41:00:: 02406585 2 0 -come_after%2:42:00:: 02720354 1 2 -come_alive%2:29:00:: 00018526 1 1 -come_along%2:30:00:: 00425071 1 7 -come_along%2:30:01:: 00248659 2 2 -come_apart%2:30:00:: 00334186 1 0 -come_around%2:30:06:: 00344042 2 0 -come_around%2:31:00:: 00654446 1 1 -come_away%2:35:00:: 01299758 1 2 -come_away%2:38:00:: 02010572 2 1 -come_back%2:30:00:: 00548153 1 3 -come_back%2:32:00:: 00959524 2 2 -come_back%2:32:01:: 00816353 4 1 -come_back%2:38:01:: 01998982 3 1 -come_before%2:41:00:: 02407766 1 0 -come_by%2:40:00:: 02206014 2 3 -come_by%2:41:00:: 02488641 1 4 -come_close%2:41:00:: 02373974 1 3 -come_close%2:42:00:: 02666060 2 2 -come_down%2:29:00:: 00087454 4 1 -come_down%2:30:00:: 00237704 2 2 -come_down%2:32:12:: 00827458 5 0 -come_down%2:38:00:: 01970826 1 14 -come_down%2:43:00:: 02756821 3 1 -come_forth%2:30:00:: 00528990 1 2 -come_forth%2:42:00:: 02625016 2 0 -come_forward%2:38:00:: 02089174 1 1 -come_hell_or_high_water%4:02:00:: 00156833 1 0 -come_home%2:31:13:: 00591755 1 1 -come_in%2:31:00:: 00659776 5 0 -come_in%2:32:00:: 00914769 4 1 -come_in%2:38:01:: 02006709 2 12 -come_in%2:38:02:: 02016523 1 44 -come_in%2:42:00:: 02667419 3 1 -come_in_for%2:42:00:: 02729260 1 2 -come_in_handy%2:42:00:: 02725460 1 1 -come_into%2:40:00:: 02206014 1 2 -come_into_being%2:30:01:: 00361208 1 3 -come_near%2:38:00:: 02053941 2 2 -come_near%2:38:01:: 01849746 3 0 -come_near%2:41:00:: 02596371 1 3 -come_of_age%2:41:00:: 02540445 1 1 -come_off%2:30:00:: 00343898 2 1 -come_off%2:35:00:: 01299758 1 2 -come_off%2:35:01:: 01259691 3 0 -come_on%2:30:00:: 00348103 5 0 -come_on%2:30:01:: 00423702 1 9 -come_on%2:30:02:: 00248659 3 2 -come_on%2:35:00:: 01526605 4 0 -come_on%2:38:00:: 02053941 2 5 -come_out%2:30:00:: 00423702 1 33 -come_out%2:30:01:: 00425967 2 6 -come_out%2:30:03:: 00548266 11 0 -come_out%2:30:04:: 00528990 3 5 -come_out%2:31:00:: 00659776 6 2 -come_out%2:32:00:: 00935141 10 0 -come_out%2:32:01:: 00935456 9 0 -come_out%2:38:00:: 02081946 8 0 -come_out%2:38:01:: 02089174 7 1 -come_out%2:38:06:: 02097925 5 2 -come_out%2:42:00:: 02610845 4 3 -come_out_of_the_closet%2:32:00:: 00935456 1 0 -come_over%2:32:00:: 01063529 1 1 -come_round%2:31:00:: 00654446 1 0 -come_short%2:37:12:: 01799484 1 0 -come_through%2:30:00:: 00426749 1 6 -come_through%2:38:00:: 02021921 2 1 -come_through%2:41:00:: 02524171 4 0 -come_through%2:42:00:: 02619924 3 0 -come_to%2:29:00:: 00024047 4 2 -come_to%2:39:00:: 02108791 1 10 -come_to%2:41:00:: 02526811 3 4 -come_to%2:42:03:: 02676054 2 4 -come_to_grips%2:41:00:: 02437157 1 4 -come_to_hand%2:30:00:: 00423430 1 0 -come_to_life%2:30:00:: 00361208 1 2 -come_to_life%2:42:00:: 02665767 2 0 -come_to_light%2:30:00:: 00423430 1 1 -come_to_mind%2:31:00:: 00609352 1 3 -come_to_the_fore%2:38:00:: 02089174 1 1 -come_together%2:38:03:: 02054541 1 0 -come_up%2:30:00:: 00339738 2 8 -come_up%2:35:00:: 01526605 8 1 -come_up%2:35:01:: 01381549 12 0 -come_up%2:35:02:: 01384752 11 0 -come_up%2:36:03:: 01627779 1 9 -come_up%2:38:00:: 01970348 10 0 -come_up%2:38:01:: 01990281 4 3 -come_up%2:38:02:: 01849221 3 7 -come_up%2:38:03:: 01968569 6 2 -come_up%2:40:00:: 02213336 9 0 -come_up%2:42:00:: 02625786 5 2 -come_up%2:42:01:: 02721840 7 1 -come_up_to%2:32:00:: 00990655 1 3 -come_upon%2:40:01:: 02212646 2 1 -come_upon%2:40:09:: 02286687 1 10 -come_with%2:42:00:: 02716165 1 6 -comeback%1:04:00:: 00051077 2 0 -comeback%1:10:00:: 07199922 1 2 -comedian%1:18:00:: 09940146 1 4 -comedian%1:18:01:: 09940725 2 0 -comedienne%1:18:00:: 09940818 2 0 -comedienne%1:18:01:: 09940987 1 0 -comedo%1:08:00:: 05245775 1 0 -comedown%1:04:00:: 00273601 1 0 -comedy%1:10:00:: 07015510 1 18 -comedy%1:10:01:: 06781383 2 2 -comedy_ballet%1:04:00:: 00529902 1 0 -comeliness%1:07:00:: 04685396 1 0 -comely%5:00:00:beautiful:00 00218440 2 0 -comely%5:00:00:proper:00 01878870 1 0 -comenius%1:18:00:: 10905568 1 0 -comer%1:18:00:: 09810166 2 0 -comer%1:18:01:: 09941089 1 1 -comer_vann_woodward%1:18:00:: 11396535 1 0 -comestible%1:13:00:: 07556637 1 0 -comestible%3:00:00:: 00828779 1 0 -comet%1:17:00:: 09251407 1 1 -comet-like%5:00:00:starry:00 02299673 1 0 -cometary%3:01:00:: 02980696 1 1 -cometic%3:01:00:: 02980696 1 0 -comeupance%1:11:00:: 07294423 1 0 -comeuppance%1:11:00:: 07294423 1 0 -comfit%1:13:00:: 07604956 1 0 -comfit%2:36:00:: 01626420 1 0 -comfort%1:04:00:: 01211667 3 4 -comfort%1:04:01:: 01211185 7 0 -comfort%1:06:00:: 04033995 6 0 -comfort%1:12:00:: 07492516 2 5 -comfort%1:26:00:: 14445379 1 5 -comfort%1:26:01:: 14491889 4 0 -comfort%1:26:02:: 13987219 5 0 -comfort%2:29:00:: 00082308 2 1 -comfort%2:37:01:: 01814815 1 4 -comfort_food%1:13:00:: 07556406 1 0 -comfort_station%1:06:00:: 04018667 1 0 -comfort_woman%1:18:00:: 09941172 1 0 -comfort_zone%1:09:00:: 05725879 1 0 -comfortable%3:00:00:: 00476819 1 17 -comfortable%3:00:01:: 00479330 2 2 -comfortable%5:00:00:rich:00 02022556 5 0 -comfortable%5:00:00:sufficient:00 02336338 4 0 -comfortable%5:00:00:wide:02 02563194 3 0 -comfortableness%1:12:00:: 07530000 2 0 -comfortableness%1:26:00:: 14445379 1 0 -comfortably%4:02:00:: 00154885 1 5 -comfortably%4:02:01:: 00013626 3 0 -comfortably%4:02:02:: 00155020 2 2 -comforted%5:00:00:comfortable:01 00479783 1 1 -comforter%1:06:00:: 04033995 3 0 -comforter%1:06:01:: 03075768 4 0 -comforter%1:18:00:: 10686313 1 0 -comforter%1:18:01:: 10518349 2 0 -comforting%5:00:00:reassuring:00 00197319 2 1 -comforting%5:00:00:satisfactory:00 02081563 1 1 -comfortingly%4:02:00:: 00287399 1 0 -comfortless%5:00:00:uncomfortable:00 00478590 1 0 -comforts%1:21:00:: 13366137 1 4 -comfrey%1:13:00:: 07817160 2 0 -comfrey%1:20:00:: 12822769 1 0 -comfy%3:00:00:: 00476819 1 0 -comic%1:18:00:: 09940146 1 0 -comic%3:01:00:: 02973392 2 2 -comic%5:00:00:humorous:00 01265308 1 3 -comic_book%1:10:00:: 06596364 1 1 -comic_opera%1:10:00:: 07026646 1 0 -comic_strip%1:10:00:: 07003352 1 0 -comical%5:00:00:humorous:00 01265308 1 0 -comicality%1:07:00:: 05210717 1 0 -comically%4:02:00:: 00081375 1 1 -coming%1:04:00:: 00062133 4 0 -coming%1:04:01:: 00048828 2 2 -coming%1:04:02:: 00280853 1 2 -coming%1:07:00:: 05046471 3 0 -coming%5:00:01:future:00 01732601 1 5 -coming_attraction%1:10:00:: 06615927 1 0 -coming_back%1:11:00:: 07447022 1 0 -coming_into_court%1:04:00:: 01233627 1 0 -coming_together%1:04:00:: 01230965 1 0 -coming_together%1:04:02:: 00146856 2 0 -coming_upon%1:04:00:: 00147187 1 0 -comint%1:04:00:: 00983287 1 0 -comity%1:26:00:: 13969854 1 0 -comity_of_nations%1:26:00:: 13969988 1 0 -comma%1:05:00:: 02278024 2 0 -comma%1:10:00:: 06842852 1 0 -comma_bacillus%1:05:00:: 01364329 1 0 -comma_butterfly%1:05:00:: 02278024 1 0 -command%1:07:00:: 05197797 3 5 -command%1:07:02:: 04719376 4 2 -command%1:09:00:: 05641959 6 1 -command%1:10:00:: 07168131 1 23 -command%1:10:01:: 06584891 7 0 -command%1:14:00:: 08190292 2 11 -command%1:26:00:: 13953608 5 1 -command%2:32:00:: 00751567 2 8 -command%2:32:01:: 00751887 1 10 -command%2:32:02:: 01018177 3 6 -command%2:41:00:: 02441022 5 1 -command%2:42:00:: 02696129 4 1 -command_guidance%1:04:00:: 00817017 1 0 -command_key%1:06:00:: 03097673 1 0 -command_language%1:10:00:: 06899446 1 0 -command_line%1:10:00:: 06586355 1 0 -command_line_interface%1:10:00:: 06575505 1 0 -command_module%1:06:00:: 03075946 1 0 -command_overhead%1:28:00:: 15298011 1 0 -command_post%1:06:00:: 03076104 1 0 -command_processing_overhead%1:28:00:: 15298011 1 0 -command_processing_overhead_time%1:28:00:: 15298011 1 0 -command_prompt%1:10:00:: 06280604 1 0 -command_sergeant_major%1:18:00:: 10581278 1 0 -commandant%1:18:00:: 09941964 1 0 -commandeer%2:35:00:: 01471825 1 1 -commander%1:18:00:: 09941964 1 10 -commander%1:18:01:: 09941571 3 0 -commander%1:18:02:: 09780828 4 0 -commander%1:18:03:: 09941383 2 3 -commander_in_chief%1:18:00:: 09941787 1 0 -commandership%1:04:00:: 00590626 1 0 -commandery%1:04:00:: 00590626 1 0 -commanding%5:00:00:high:01 01205232 1 1 -commanding_officer%1:18:00:: 09941964 1 4 -commandment%1:09:00:: 06185955 2 0 -commandment%1:10:00:: 07169848 1 2 -commando%1:14:00:: 08404373 2 0 -commando%1:18:00:: 09942275 1 2 -comme_il_faut%5:00:00:proper:00 01878870 1 0 -commedia_dell'arte%1:10:00:: 07015928 1 0 -commelina%1:20:00:: 12606438 1 0 -commelinaceae%1:20:00:: 12605965 1 0 -commelinales%1:20:00:: 12605019 1 0 -commelinidae%1:20:00:: 11668952 1 0 -commemorate%2:31:00:: 00611481 2 2 -commemorate%2:31:01:: 00612042 3 0 -commemorate%2:31:02:: 00612612 1 3 -commemorating%3:01:00:: 03055809 1 0 -commemoration%1:10:00:: 06688522 2 0 -commemoration%1:11:00:: 07452841 1 0 -commemorative%1:17:00:: 09251689 1 0 -commemorative%3:01:00:: 03055809 1 0 -commence%2:30:00:: 00345761 1 8 -commence%2:30:01:: 00348746 2 6 -commence%2:36:00:: 01650610 3 3 -commencement%1:04:00:: 00235435 3 0 -commencement%1:11:02:: 07454758 2 0 -commencement%1:28:00:: 15265518 1 0 -commencement_ceremony%1:11:00:: 07454758 1 0 -commencement_day%1:28:00:: 15158691 1 0 -commencement_exercise%1:11:00:: 07454758 1 0 -commend%2:32:00:: 00882395 1 10 -commend%2:32:01:: 00882523 5 0 -commend%2:32:02:: 00882948 4 0 -commend%2:32:03:: 00883112 3 1 -commend%2:36:00:: 01689169 2 1 -commendable%4:02:00:: 00218886 1 0 -commendable%5:00:00:worthy:00 02585545 1 2 -commendation%1:10:00:: 06706125 1 0 -commendation%1:10:01:: 06686736 2 0 -commensal%1:05:00:: 01386182 1 0 -commensal%3:01:00:: 02700792 1 0 -commensalism%1:24:00:: 13842241 1 0 -commensally%4:02:00:: 00243235 1 0 -commensurable%5:00:00:commensurate:00 00481592 1 0 -commensurate%3:00:00:: 00481222 1 3 -commensurateness%1:24:00:: 13817279 1 0 -comment%1:10:00:: 06765044 1 24 -comment%1:10:01:: 06762711 2 6 -comment%1:10:02:: 07223170 3 0 -comment%2:32:00:: 01058574 1 23 -comment%2:32:01:: 00961329 3 0 -comment%2:32:10:: 01033189 2 1 -commentary%1:10:00:: 06762711 1 4 -commentate%2:32:00:: 00939035 2 0 -commentate%2:32:11:: 00961586 1 0 -commentator%1:18:00:: 09942431 2 0 -commentator%1:18:01:: 10369528 1 2 -commerce%1:04:00:: 01090446 1 10 -commerce%1:10:00:: 07137622 3 0 -commerce%1:14:00:: 08129268 2 0 -commerce_department%1:14:00:: 08129268 1 0 -commerce_secretary%1:04:00:: 00600435 2 0 -commerce_secretary%1:18:00:: 10570961 1 0 -commercial%1:10:00:: 07250034 1 4 -commercial%3:00:00:: 00483146 1 22 -commercial%3:01:00:: 03137558 2 2 -commercial%5:00:00:inferior:02 02346878 3 0 -commercial-grade%5:00:00:inferior:02 02346878 1 0 -commercial_activity%1:04:00:: 01095753 1 0 -commercial_agency%1:14:00:: 08354842 1 0 -commercial_art%1:06:00:: 03076298 1 1 -commercial_artist%1:18:00:: 09942587 1 0 -commercial_bank%1:14:00:: 08418420 1 0 -commercial_bribery%1:04:00:: 00776581 1 0 -commercial_credit%1:21:00:: 13379619 1 0 -commercial_credit_company%1:14:00:: 08421807 1 0 -commercial_document%1:10:00:: 06472025 1 0 -commercial_enterprise%1:04:00:: 01094725 2 0 -commercial_enterprise%1:14:00:: 08065093 1 1 -commercial_finance_company%1:14:00:: 08421807 1 0 -commercial_instrument%1:10:00:: 06472025 1 0 -commercial_law%1:14:00:: 08455037 1 0 -commercial_letter_of_credit%1:21:00:: 13380004 1 0 -commercial_loan%1:21:00:: 13374764 1 0 -commercial_message%1:10:00:: 07250034 1 0 -commercial_paper%1:21:00:: 13414849 1 0 -commercial_traveler%1:18:00:: 10726786 1 0 -commercial_traveller%1:18:00:: 10726786 1 0 -commercial_treaty%1:10:00:: 06773857 1 0 -commercialisation%1:04:00:: 00951781 1 0 -commercialise%2:30:00:: 00470386 1 0 -commercialised%5:00:00:commercial:00 00483481 1 0 -commercialism%1:04:00:: 01090446 1 1 -commercialization%1:04:00:: 00951781 1 1 -commercialize%2:30:00:: 00470386 2 0 -commercialize%2:34:00:: 01164725 1 0 -commercialized%5:00:00:commercial:00 00483481 1 0 -commercially%4:02:00:: 00077497 1 6 -commie%1:18:00:: 09945319 1 1 -comminate%2:32:00:: 00864910 1 0 -commination%1:10:00:: 06733682 2 0 -commination%1:10:01:: 07189779 1 0 -comminatory%5:00:00:inculpatory:00 00924635 1 0 -commingle%2:30:00:: 00394813 2 0 -commingle%2:35:00:: 01462806 1 0 -comminute%2:30:00:: 00331082 1 0 -comminuted_fracture%1:26:00:: 14292571 1 0 -commiphora%1:20:00:: 12692323 1 0 -commiphora_meccanensis%1:20:00:: 12692521 1 0 -commiphora_myrrha%1:20:00:: 12692714 1 0 -commiserate%2:37:00:: 01822248 1 1 -commiseration%1:10:00:: 06633692 2 0 -commiseration%1:12:00:: 07553964 1 1 -commiserative%5:00:00:sympathetic:00 02375312 1 0 -commissaire_maigret%1:18:00:: 09600764 1 0 -commissar%1:18:00:: 09942697 1 0 -commissariat%1:13:00:: 07572353 1 0 -commissary%1:06:00:: 03076411 1 1 -commissary%1:06:01:: 03076623 2 0 -commission%1:04:00:: 00731222 9 0 -commission%1:04:01:: 00773235 8 0 -commission%1:04:02:: 01140471 3 1 -commission%1:10:00:: 06478988 7 0 -commission%1:10:01:: 07169480 6 0 -commission%1:14:00:: 08324514 1 27 -commission%1:14:01:: 08402442 5 0 -commission%1:21:00:: 13320860 2 1 -commission%1:26:00:: 14009274 4 0 -commission%2:41:00:: 02475261 3 0 -commission%2:41:01:: 02475401 1 2 -commission%2:41:02:: 02480803 2 0 -commission_on_human_rights%1:14:00:: 08297284 1 0 -commission_on_narcotic_drugs%1:14:00:: 08297464 1 0 -commission_on_the_status_of_women%1:14:00:: 08297646 1 0 -commission_plan%1:14:00:: 08225853 1 0 -commissionaire%1:18:00:: 09942871 1 0 -commissioned%3:00:00:: 00485431 1 0 -commissioned%5:00:00:authorized:00 00178811 2 0 -commissioned_military_officer%1:18:00:: 09943239 1 0 -commissioned_naval_officer%1:18:00:: 09943541 1 0 -commissioned_officer%1:18:00:: 09942970 1 0 -commissioner%1:18:00:: 09943811 1 5 -commissioner%1:18:01:: 09944022 2 0 -commissioning%1:04:00:: 01140471 1 0 -commissure%1:08:00:: 05476094 1 0 -commit%2:32:01:: 00887463 2 12 -commit%2:40:00:: 02349212 4 1 -commit%2:40:02:: 02348568 3 3 -commit%2:40:05:: 02271137 5 1 -commit%2:41:00:: 02582615 1 12 -commit%2:41:01:: 02375468 6 0 -commit_suicide%2:35:00:: 01324996 1 0 -commitment%1:04:00:: 01206153 2 2 -commitment%1:04:01:: 01165692 5 0 -commitment%1:04:02:: 01239868 3 1 -commitment%1:07:01:: 04646990 1 2 -commitment%1:10:00:: 06684383 4 0 -committal%1:04:00:: 01165692 1 0 -committal%1:04:01:: 00773235 2 0 -committal_service%1:04:00:: 01034233 1 0 -committal_to_memory%1:09:00:: 05755156 1 0 -committal_to_writing%1:04:00:: 00614224 1 0 -committed%3:00:00:: 00518164 1 3 -committed%3:00:04:: 00157925 2 0 -committedness%1:07:00:: 04646990 1 0 -committee%1:14:00:: 08324514 1 16 -committee%1:14:01:: 08325686 2 1 -committee_for_state_security%1:14:00:: 08485434 1 0 -committee_meeting%1:14:00:: 08308039 1 0 -committee_member%1:18:00:: 09944160 1 1 -committeeman%1:18:00:: 09944337 1 3 -committeewoman%1:18:00:: 09944430 1 0 -commix%2:35:00:: 01462005 1 0 -commixture%1:04:00:: 00380083 1 0 -commode%1:06:00:: 04446521 1 0 -commode%1:06:01:: 03016953 2 0 -commodious%3:00:00:: 00475996 1 0 -commodiousness%1:07:00:: 05105265 1 0 -commodities_exchange%1:06:00:: 03077074 1 0 -commodities_market%1:06:00:: 03077074 1 0 -commodity%1:06:00:: 03076708 1 4 -commodity_brokerage%1:14:00:: 08070236 1 0 -commodity_exchange%1:06:00:: 03077074 1 0 -commodore%1:18:00:: 09945021 1 0 -commodore_john_barry_bridge%1:06:00:: 03077304 1 0 -commodore_perry%1:18:00:: 11230158 1 0 -commodore_vanderbilt%1:18:00:: 11359187 1 0 -common%1:15:00:: 08615374 1 1 -common%3:00:01:: 00485711 2 14 -common%3:00:02:: 00492677 1 32 -common%5:00:00:familiar:02 00970610 4 9 -common%5:00:00:inferior:02 02346557 7 0 -common%5:00:00:informal:02 01046226 5 2 -common%5:00:00:lowborn:00 01593079 6 1 -common%5:00:00:ordinary:00 01673815 9 0 -common%5:00:00:shared:00 02152473 3 13 -common%5:00:00:unrefined:01 01950198 8 0 -common-law%5:00:00:unwritten:00 02287175 1 0 -common-law_marriage%1:26:00:: 13964879 1 0 -common_ageratum%1:20:00:: 11918473 1 0 -common_alder%1:20:00:: 12284821 1 0 -common_allamanda%1:20:00:: 11769803 1 0 -common_american_shad%1:05:00:: 02530637 1 0 -common_amsinckia%1:20:00:: 12816942 1 0 -common_apricot%1:20:00:: 12641007 1 0 -common_arrowhead%1:20:00:: 12612640 1 0 -common_ax%1:06:00:: 03077442 1 0 -common_axe%1:06:00:: 03077442 1 0 -common_bamboo%1:20:00:: 12147835 1 0 -common_barberry%1:20:00:: 11698042 1 0 -common_barley%1:20:00:: 12123450 1 0 -common_basil%1:20:00:: 12860542 1 0 -common_bean%1:13:00:: 07726796 2 0 -common_bean%1:20:00:: 12556793 1 0 -common_bean_plant%1:20:00:: 12556793 1 0 -common_bearberry%1:20:00:: 12231358 1 0 -common_beech%1:20:00:: 12261359 1 0 -common_beet%1:20:00:: 11832214 1 0 -common_bile_duct%1:08:00:: 05386845 1 0 -common_birch%1:20:00:: 12282527 1 0 -common_bird_cherry%1:20:00:: 12647560 1 0 -common_blackfish%1:05:00:: 02071636 1 0 -common_bog_rosemary%1:20:00:: 12229887 1 0 -common_booklouse%1:05:00:: 02261757 1 0 -common_box%1:20:00:: 12746253 1 0 -common_brant_goose%1:05:00:: 01857512 1 0 -common_broom%1:20:00:: 12521394 1 0 -common_burdock%1:20:00:: 11924661 1 0 -common_buttercup%1:20:00:: 11721124 1 0 -common_calamint%1:20:00:: 12843144 1 0 -common_camas%1:20:00:: 12449526 1 0 -common_canary%1:05:00:: 01533481 1 0 -common_caper%1:20:00:: 11865874 1 0 -common_cardinal_vein%1:08:00:: 05360297 1 0 -common_carline_thistle%1:20:00:: 11945783 1 0 -common_carotid%1:08:00:: 05339583 1 0 -common_carotid_artery%1:08:00:: 05339583 1 0 -common_carrier%1:14:00:: 08057633 1 0 -common_chickweed%1:20:00:: 11818069 1 0 -common_chord%1:10:00:: 06870211 1 0 -common_cockscomb%1:20:00:: 11825351 1 0 -common_cold%1:26:00:: 14145501 1 0 -common_comfrey%1:20:00:: 12822955 1 0 -common_coral_tree%1:20:00:: 12528549 1 0 -common_corn_salad%1:20:00:: 12950796 1 0 -common_cotton_grass%1:20:00:: 12152722 1 0 -common_daisy%1:20:00:: 11939699 1 0 -common_dandelion%1:20:00:: 12024445 1 0 -common_denominator%1:07:00:: 04617441 2 0 -common_denominator%1:23:00:: 13735476 1 0 -common_devil's_claw%1:20:00:: 12875269 1 0 -common_divisor%1:23:00:: 13734992 1 0 -common_dogbane%1:20:00:: 11767630 1 0 -common_dolphin%1:05:00:: 02069412 1 0 -common_duckweed%1:20:00:: 11795049 1 0 -common_eel%1:05:00:: 02526818 1 0 -common_eland%1:05:00:: 02427032 1 0 -common_elder%1:20:00:: 12679201 1 0 -common_era%1:28:00:: 15249096 1 0 -common_era%4:02:00:: 00001981 1 0 -common_european_ash%1:20:00:: 12304703 1 0 -common_european_dogwood%1:20:00:: 12948053 1 0 -common_european_earwig%1:05:00:: 02273392 1 0 -common_european_jay%1:05:00:: 01580490 1 0 -common_evening_primrose%1:20:00:: 12344483 1 0 -common_facial_vein%1:08:00:: 05364448 1 0 -common_factor%1:23:00:: 13734992 1 0 -common_fate%1:09:00:: 06249685 1 0 -common_fault%1:17:00:: 09372313 1 0 -common_fennel%1:13:00:: 07817758 2 0 -common_fennel%1:20:00:: 12939282 1 0 -common_fig%1:20:00:: 12401684 1 0 -common_fig_tree%1:20:00:: 12401684 1 0 -common_flat_pea%1:20:00:: 12562141 1 0 -common_four-o'clock%1:20:00:: 11839823 1 0 -common_foxglove%1:20:00:: 12882945 1 0 -common_fraction%1:23:00:: 13732295 1 0 -common_front%1:14:00:: 08471589 1 0 -common_garden_cress%1:20:00:: 11890507 1 0 -common_garter_snake%1:05:00:: 01735439 1 0 -common_ginger%1:20:00:: 12356023 1 0 -common_good%1:07:00:: 05159854 1 0 -common_grape_hyacinth%1:20:00:: 12460957 1 0 -common_grape_vine%1:20:00:: 13145444 1 0 -common_ground%1:24:00:: 13791122 1 0 -common_gum_cistus%1:20:00:: 12374862 1 0 -common_heath%1:20:01:: 12253487 2 0 -common_heath%1:20:02:: 12253664 1 0 -common_hop%1:20:00:: 12398174 1 0 -common_hops%1:20:00:: 12398174 1 0 -common_horehound%1:20:00:: 12854193 1 0 -common_horsetail%1:20:00:: 13219833 1 0 -common_hyacinth%1:20:00:: 12458550 1 0 -common_iguana%1:05:00:: 01677366 1 0 -common_iliac_artery%1:08:00:: 05347359 1 1 -common_iliac_vein%1:08:00:: 05369924 1 0 -common_ivy%1:20:00:: 11798978 1 0 -common_jasmine%1:20:00:: 12307240 1 0 -common_juniper%1:20:00:: 11638109 1 0 -common_kingsnake%1:05:00:: 01734637 1 0 -common_knowledge%1:09:00:: 05612241 1 0 -common_laburnum%1:20:00:: 12538380 1 0 -common_lady's-slipper%1:20:00:: 12056758 1 0 -common_land%1:15:00:: 08542304 1 0 -common_law%1:10:00:: 06535035 1 1 -common_law%1:14:00:: 08453722 2 0 -common_lettuce%1:20:00:: 11986511 1 0 -common_lilac%1:20:00:: 12311579 1 0 -common_limpet%1:05:00:: 01949085 1 0 -common_logarithm%1:10:00:: 06812915 1 0 -common_louse%1:05:00:: 02184473 1 0 -common_lynx%1:05:00:: 02127292 1 0 -common_mackerel%1:05:00:: 02624551 1 0 -common_madia%1:20:00:: 11994336 1 0 -common_maidenhair%1:20:00:: 13207094 1 0 -common_mallow%1:20:00:: 12171316 1 0 -common_man%1:18:00:: 09610405 1 8 -common_marigold%1:20:00:: 11943660 1 0 -common_market%1:14:00:: 08173515 1 0 -common_matrimony_vine%1:20:00:: 12905135 1 0 -common_measure%1:10:00:: 07094731 3 0 -common_measure%1:23:00:: 13734992 2 0 -common_measure%1:28:00:: 15264010 1 0 -common_meter%1:10:00:: 07094731 1 0 -common_milkwort%1:20:00:: 12706410 1 0 -common_mood%1:24:00:: 13801700 1 0 -common_moonseed%1:20:00:: 11713370 1 0 -common_moonwort%1:20:00:: 12961112 1 0 -common_morel%1:20:00:: 13032381 1 0 -common_morning_glory%1:20:01:: 12826895 2 0 -common_morning_glory%1:20:02:: 12827068 1 0 -common_mosquito%1:05:00:: 02202006 1 0 -common_mugwort%1:20:00:: 11931540 1 0 -common_mullein%1:20:00:: 12889713 1 0 -common_multiple%1:23:00:: 13735355 1 0 -common_murre%1:05:00:: 02047411 1 0 -common_myrtle%1:20:00:: 12330587 1 0 -common_nardoo%1:20:00:: 12957803 1 0 -common_newt%1:05:00:: 01630670 1 0 -common_nightshade%1:20:00:: 12896307 1 0 -common_noun%1:10:00:: 06320153 1 0 -common_nuisance%1:09:00:: 05831566 1 0 -common_nutcracker%1:05:00:: 01581874 1 0 -common_oak%1:20:00:: 12277578 1 0 -common_opossum%1:05:00:: 01875313 1 0 -common_or_garden%5:00:00:familiar:02 00970803 1 0 -common_osier%1:20:00:: 12731029 1 0 -common_pea%1:20:00:: 12560420 1 0 -common_people%1:14:00:: 07947255 1 0 -common_pepper%1:20:00:: 13149506 1 0 -common_person%1:18:00:: 09610405 1 0 -common_pitcher_plant%1:20:00:: 12779851 1 0 -common_plantain%1:20:00:: 12599435 1 0 -common_plum%1:20:00:: 12639584 1 0 -common_polypody%1:20:00:: 13173882 1 0 -common_pond-skater%1:05:00:: 02243878 1 0 -common_privet%1:20:00:: 12309277 1 0 -common_purslane%1:20:00:: 11858077 1 0 -common_raccoon%1:05:00:: 02508213 1 0 -common_racoon%1:05:00:: 02508213 1 0 -common_ragweed%1:20:00:: 11919761 1 0 -common_reed%1:20:00:: 12130937 1 0 -common_room%1:06:00:: 03077616 1 0 -common_rorqual%1:05:00:: 02065026 1 0 -common_rose_mallow%1:20:00:: 12178896 1 0 -common_roundworm%1:05:00:: 01930852 1 0 -common_rush%1:20:00:: 11743772 1 0 -common_sage%1:20:00:: 12865824 1 0 -common_salt%1:13:00:: 07813107 2 0 -common_salt%1:27:00:: 14672023 1 0 -common_scold%1:18:00:: 10561861 1 0 -common_scoter%1:05:00:: 01853666 1 0 -common_scurvy_grass%1:20:00:: 11883945 1 0 -common_seal%1:05:00:: 02079851 1 0 -common_sense%1:09:00:: 05614657 1 2 -common_shares%1:21:00:: 13335172 1 0 -common_shiner%1:05:00:: 01441910 1 0 -common_shrew%1:05:00:: 01892030 1 0 -common_sickle_pine%1:20:00:: 11654984 1 0 -common_snapping_turtle%1:05:00:: 01666228 1 0 -common_snowberry%1:20:00:: 12677612 1 0 -common_soldier%1:18:00:: 10476467 1 1 -common_sorrel%1:13:00:: 07736371 1 0 -common_speedwell%1:20:00:: 12891643 1 0 -common_spindle_tree%1:20:00:: 12749289 1 0 -common_spoonbill%1:05:00:: 02006985 1 0 -common_spotted_orchid%1:20:00:: 12058822 1 0 -common_st_john's_wort%1:20:00:: 12368028 1 0 -common_staghorn_fern%1:20:00:: 13177884 1 0 -common_starling%1:05:00:: 01577035 1 0 -common_stinkhorn%1:20:00:: 13040629 1 0 -common_stock%1:21:00:: 13335172 1 0 -common_stock_equivalent%1:21:00:: 13336492 1 0 -common_sunflower%1:20:00:: 11978713 1 0 -common_tarweed%1:20:00:: 11994336 1 0 -common_teasel%1:20:00:: 12682668 1 0 -common_thorn_apple%1:20:00:: 12903503 1 0 -common_thyme%1:20:00:: 12870682 1 0 -common_time%1:28:00:: 15264010 1 0 -common_tobacco%1:20:00:: 12907857 1 0 -common_topaz%1:27:00:: 15076523 1 0 -common_touch%1:07:00:: 04931567 1 0 -common_unicorn_plant%1:20:00:: 12875269 1 0 -common_valerian%1:20:00:: 12950314 1 0 -common_vetchling%1:20:00:: 12541157 1 0 -common_viper%1:05:00:: 01752585 1 0 -common_wallaby%1:05:00:: 01878061 1 0 -common_wart%1:07:00:: 04696695 1 0 -common_wasp%1:05:00:: 02213543 1 0 -common_water_snake%1:05:00:: 01737472 1 0 -common_watercress%1:20:00:: 11893131 1 0 -common_wheat%1:20:00:: 12142874 1 0 -common_white_dogwood%1:20:00:: 12947313 1 0 -common_winterberry_holly%1:20:00:: 12758471 1 0 -common_wolffia%1:20:00:: 11796188 1 0 -common_wood_sorrel%1:20:00:: 12703190 1 0 -common_wormwood%1:20:00:: 11929477 1 0 -common_year%1:28:00:: 15202131 1 0 -common_yellowthroat%1:05:00:: 01570839 1 0 -common_yellowwood%1:20:00:: 11653570 1 0 -common_zebra%1:05:00:: 02391234 1 0 -commonage%1:21:00:: 13247149 1 0 -commonality%1:07:00:: 04764741 2 0 -commonality%1:14:00:: 08181930 1 0 -commonalty%1:14:00:: 08181930 1 0 -commoner%1:18:00:: 09610405 1 1 -commonly%4:02:00:: 00106921 1 11 -commonness%1:07:00:: 04795545 3 0 -commonness%1:07:01:: 04764741 4 0 -commonness%1:07:02:: 04817280 2 0 -commonness%1:26:00:: 14501375 1 0 -commonplace%1:10:00:: 07154046 1 1 -commonplace%5:00:00:unexciting:00 00922840 2 1 -commonplace%5:00:00:unoriginal:00 01688757 3 0 -commonplace%5:00:02:ordinary:00 01673946 1 1 -commonplace_book%1:10:00:: 06415584 1 0 -commonplaceness%1:07:00:: 04795545 1 0 -commons%1:14:00:: 08181930 3 0 -commons%1:14:01:: 08168117 4 0 -commons%1:15:00:: 08615374 1 0 -commons%1:15:01:: 08542304 2 0 -commonsense%5:00:00:reasonable:00 01943746 1 3 -commonsensible%5:00:00:reasonable:00 01943746 1 0 -commonsensical%5:00:00:reasonable:00 01943746 1 0 -commonweal%1:07:00:: 05159854 1 0 -commonwealth%1:14:00:: 08168978 2 2 -commonwealth%1:14:01:: 08361329 4 0 -commonwealth%1:14:02:: 08375154 3 0 -commonwealth%1:15:00:: 08542403 1 2 -commonwealth_country%1:14:00:: 08166931 1 0 -commonwealth_day%1:28:00:: 15200164 1 0 -commonwealth_of_australia%1:15:00:: 08831004 1 0 -commonwealth_of_dominica%1:15:00:: 08763193 1 0 -commonwealth_of_independent_states%1:14:00:: 08295138 1 0 -commonwealth_of_nations%1:14:00:: 08049989 1 0 -commonwealth_of_puerto_rico%1:15:00:: 08752974 1 0 -commonwealth_of_the_bahamas%1:15:00:: 08847268 1 0 -commotion%1:04:00:: 00553823 2 2 -commotion%1:11:00:: 07442068 3 0 -commotion%1:26:00:: 13977366 1 6 -commove%2:35:00:: 01419473 2 0 -commove%2:37:00:: 01762528 1 0 -communal%3:01:02:: 02700918 2 1 -communal%5:00:00:common:02 00493012 1 2 -communalise%2:40:00:: 02295979 1 0 -communalism%1:04:00:: 01081346 1 0 -communalism%1:04:01:: 01040943 2 0 -communalize%2:40:00:: 02295979 1 0 -communally%4:02:00:: 00162938 1 0 -commune%1:14:00:: 08375369 2 1 -commune%1:15:00:: 08541609 1 5 -commune%2:32:01:: 00760402 2 0 -commune%2:32:02:: 00760187 1 2 -communicable%5:00:00:communicative:00 00496569 2 0 -communicable%5:00:00:infectious:00 01303042 1 0 -communicable_disease%1:26:00:: 14122053 1 0 -communicant%1:18:00:: 09945223 1 0 -communicate%2:32:00:: 00740577 2 8 -communicate%2:32:01:: 00742320 1 9 -communicate%2:32:02:: 01070102 5 0 -communicate%2:32:07:: 00760402 7 0 -communicate%2:32:08:: 01030678 6 0 -communicate%2:35:00:: 01355518 4 0 -communicate%2:40:10:: 02231661 3 0 -communicating%1:10:00:: 06252138 1 1 -communicating_artery%1:08:00:: 05343542 1 0 -communication%1:03:00:: 00033020 2 9 -communication%1:10:01:: 06252138 1 26 -communication%1:24:00:: 13792842 3 1 -communication_channel%1:10:00:: 06260121 1 0 -communication_equipment%1:06:00:: 03077958 1 0 -communication_system%1:06:00:: 03077958 2 0 -communication_system%1:06:01:: 03078287 1 3 -communication_theory%1:09:00:: 05997361 1 0 -communication_trench%1:06:00:: 02730748 1 0 -communicational%5:00:00:communicative:00 00496670 1 2 -communications%1:09:00:: 05997361 1 0 -communications_intelligence%1:04:00:: 00983287 1 0 -communications_protocol%1:10:00:: 06665108 1 0 -communications_satellite%1:06:00:: 03077741 1 0 -communications_security_establishment%1:14:00:: 08342888 1 0 -communications_technology%1:04:00:: 00950356 1 0 -communicative%3:00:00:: 00494907 2 0 -communicative%3:01:00:: 02956371 1 3 -communicativeness%1:07:00:: 04650527 1 0 -communicator%1:18:00:: 09610660 1 0 -communicatory%3:00:00:: 00494907 1 0 -communion%1:04:01:: 01036333 1 4 -communion%1:10:00:: 07134575 2 3 -communion%1:14:00:: 08147019 3 0 -communion_table%1:06:00:: 02699629 1 0 -communique%1:10:00:: 06682794 1 1 -communisation%1:04:00:: 01152973 2 0 -communisation%1:04:01:: 01153139 1 0 -communisation%1:04:02:: 01151788 3 0 -communise%2:30:00:: 00408852 2 0 -communise%2:30:01:: 00409281 1 0 -communism%1:09:00:: 06214744 2 4 -communism%1:14:00:: 08365855 1 35 -communism_peak%1:17:00:: 09251832 1 0 -communist%1:18:00:: 09945319 2 4 -communist%1:18:01:: 09945603 1 7 -communist%3:01:00:: 02874876 1 18 -communist_china%1:15:00:: 08723006 1 1 -communist_economy%1:14:00:: 08367579 1 0 -communist_manifesto%1:10:00:: 06727416 1 0 -communist_party%1:14:00:: 08258523 1 0 -communist_party_of_kampuchea%1:14:00:: 08028999 1 0 -communistic%3:01:00:: 02874876 1 1 -community%1:14:00:: 08223802 1 67 -community%1:14:02:: 07941729 6 0 -community%1:14:04:: 08224274 3 2 -community%1:15:00:: 08553535 5 0 -community%1:21:00:: 13240839 2 4 -community%1:26:00:: 13971382 4 1 -community_center%1:06:00:: 03078506 1 0 -community_chest%1:14:00:: 08055964 1 0 -community_college%1:14:00:: 08282542 1 1 -community_of_interests%1:26:00:: 13971382 1 0 -community_of_scholars%1:14:00:: 08113197 1 0 -community_property%1:21:00:: 13245504 1 0 -community_service%1:04:00:: 01210102 2 0 -community_service%1:04:01:: 01210281 1 0 -communization%1:04:00:: 01152973 2 0 -communization%1:04:01:: 01153139 1 0 -communization%1:04:02:: 01151788 3 0 -communize%2:30:00:: 00408852 2 0 -communize%2:30:01:: 00409281 1 1 -commutability%1:07:00:: 04734145 2 0 -commutability%1:07:01:: 04737234 1 0 -commutable%3:00:00:: 00348198 1 0 -commutable%5:00:00:exchangeable:00 00917768 2 0 -commutate%2:30:00:: 00139367 1 0 -commutation%1:04:00:: 00315700 1 1 -commutation%1:04:01:: 01165919 3 0 -commutation%1:04:02:: 00196485 4 0 -commutation%1:10:00:: 06548498 2 0 -commutation_ticket%1:10:00:: 06519077 1 0 -commutative%5:00:00:independent:00 00728826 1 0 -commutative_group%1:09:00:: 06017472 1 0 -commutator%1:06:00:: 03078670 1 1 -commute%1:04:00:: 00307455 1 0 -commute%2:30:00:: 00380424 3 2 -commute%2:30:01:: 00161987 4 1 -commute%2:30:02:: 00161225 5 0 -commute%2:30:04:: 00553407 1 12 -commute%2:38:00:: 02061846 2 2 -commuter%1:06:00:: 03078802 1 6 -commuter%1:18:00:: 09945745 2 2 -commuter_traffic%1:14:00:: 08425657 1 2 -commuter_train%1:06:00:: 03078802 1 0 -commuting%1:04:00:: 00315700 1 2 -comoro_islands%1:15:00:: 08733690 1 0 -comoros%1:15:00:: 08733897 1 0 -comose%5:00:00:crowned:00 00654394 1 0 -comose%5:00:00:hairy:00 00213172 2 0 -comp%1:10:00:: 07197889 1 0 -compact%1:06:00:: 03078995 1 1 -compact%1:06:01:: 03079136 3 0 -compact%1:10:00:: 06772260 2 0 -compact%2:35:00:: 01387786 4 0 -compact%2:35:02:: 01483779 2 0 -compact%2:35:03:: 01389329 3 0 -compact%2:35:09:: 01484027 1 0 -compact%3:00:00:: 00502180 1 2 -compact%5:00:00:concise:00 00547317 3 0 -compact%5:00:00:short:03 02387413 2 0 -compact-disk_burner%1:06:00:: 03079494 1 0 -compact_car%1:06:00:: 03079136 1 0 -compact_disc%1:06:00:: 03079230 1 0 -compact_disc_read-only_memory%1:06:00:: 02988679 1 0 -compact_disc_recordable%1:06:00:: 02988486 1 0 -compact_disc_write-once%1:06:00:: 02988486 1 0 -compact_disk%1:06:00:: 03079230 1 0 -compaction%1:04:00:: 00358089 2 0 -compaction%1:11:00:: 07419233 1 0 -compactly%4:02:00:: 00287601 3 0 -compactly%4:02:01:: 00290308 2 0 -compactly%4:02:02:: 00300002 1 0 -compactness%1:07:01:: 05088804 1 0 -compactness%1:07:02:: 04941325 2 0 -companion%1:18:00:: 09945905 1 25 -companion%1:18:01:: 09760609 3 0 -companion%1:18:02:: 09946278 2 9 -companion%2:42:00:: 02716767 1 0 -companionability%1:07:00:: 04653479 1 0 -companionable%5:00:00:sociable:00 02257856 1 0 -companionableness%1:07:00:: 04653479 1 0 -companionate%5:00:00:friendly:01 01075742 1 0 -companionship%1:26:00:: 13929588 1 1 -companionway%1:06:00:: 03079616 1 0 -company%1:14:00:: 08184861 6 3 -company%1:14:01:: 08058098 1 60 -company%1:14:02:: 08187033 4 5 -company%1:14:03:: 08214272 2 28 -company%1:14:04:: 08219059 8 0 -company%1:14:05:: 08077711 9 0 -company%1:14:06:: 08264897 7 0 -company%1:18:00:: 09887850 5 3 -company%1:26:00:: 13929588 3 6 -company%2:42:00:: 02716767 1 0 -company_man%1:18:00:: 09946437 1 0 -company_name%1:10:00:: 06845199 1 0 -company_operator%1:18:00:: 09946574 1 1 -company_union%1:14:00:: 08234792 1 0 -comparability%1:07:00:: 04746842 1 0 -comparable%3:00:00:: 00503982 1 11 -comparable%5:00:00:same:00 02063554 2 1 -comparable_to%5:00:00:comparable:00 00504431 1 4 -comparable_with%5:00:00:comparable:00 00504172 1 2 -comparably%4:02:00:: 00370597 1 0 -comparative%1:10:00:: 06322693 1 0 -comparative%3:00:00:: 00006032 2 0 -comparative%3:01:00:: 02990954 1 4 -comparative_anatomist%1:18:00:: 09946672 1 0 -comparative_anatomy%1:09:00:: 06059282 1 0 -comparative_degree%1:10:00:: 06322693 1 0 -comparative_literature%1:09:00:: 06169667 1 2 -comparative_negligence%1:04:00:: 00739632 1 0 -comparative_psychology%1:09:00:: 06138789 1 0 -comparatively%4:02:00:: 00160834 1 7 -compare%1:07:00:: 04746842 1 0 -compare%2:31:00:: 00652900 1 57 -compare%2:31:01:: 00653620 3 9 -compare%2:32:00:: 00982779 4 0 -compare%2:42:00:: 02729632 2 12 -comparing%1:04:00:: 00142665 1 0 -comparison%1:04:00:: 00142665 1 16 -comparison%1:07:00:: 04746842 3 0 -comparison%1:24:00:: 13853808 2 8 -comparison-shop%2:40:00:: 02326672 1 0 -compart%2:35:00:: 01474449 1 0 -compartment%1:06:00:: 03079741 2 1 -compartment%1:06:01:: 03080309 1 4 -compartment_pressure%1:19:00:: 11495822 1 0 -compartmental%5:00:00:compartmented:00 00329034 1 0 -compartmentalisation%1:04:00:: 01012712 2 0 -compartmentalisation%1:26:00:: 14417146 1 0 -compartmentalise%2:30:00:: 00483801 1 0 -compartmentalised%5:00:00:compartmented:00 00329034 1 0 -compartmentalization%1:04:00:: 01012712 2 0 -compartmentalization%1:26:00:: 14417146 1 0 -compartmentalize%2:30:00:: 00483801 1 0 -compartmentalized%5:00:00:compartmented:00 00329034 1 0 -compartmented%3:00:00:: 00328798 1 0 -compass%1:06:00:: 03080497 1 3 -compass%1:06:01:: 03080633 4 0 -compass%1:07:00:: 05125377 2 2 -compass%1:09:00:: 05623628 3 0 -compass%2:31:00:: 00588221 3 0 -compass%2:38:00:: 01911526 2 0 -compass%2:41:00:: 02527085 1 0 -compass_card%1:06:00:: 03080731 1 0 -compass_flower%1:20:00:: 11915658 1 0 -compass_north%1:24:00:: 13831441 1 0 -compass_plane%1:06:00:: 03034516 1 0 -compass_plant%1:20:00:: 11915658 2 0 -compass_plant%1:20:04:: 12545232 1 0 -compass_point%1:24:00:: 13830305 1 0 -compass_saw%1:06:00:: 03080904 1 0 -compassion%1:07:00:: 04829550 2 1 -compassion%1:12:00:: 07553741 1 2 -compassionate%2:37:00:: 01821996 1 0 -compassionate%3:00:00:: 00506299 1 0 -compassionate_leave%1:28:00:: 15139691 1 0 -compassionately%4:02:00:: 00238281 1 1 -compassionateness%1:12:00:: 07553741 1 0 -compatibility%1:07:00:: 04712735 2 0 -compatibility%1:12:00:: 07554758 1 0 -compatible%3:00:01:: 00507464 1 6 -compatible%3:00:02:: 00509039 2 0 -compatible%5:00:00:miscible:00 00509576 3 0 -compatible_software%1:10:00:: 06567400 2 0 -compatible_software%1:10:01:: 06567531 1 0 -compatibly%4:02:00:: 00287749 1 0 -compatriot%1:18:00:: 09970699 1 1 -compeer%1:18:00:: 09626238 1 0 -compel%2:41:00:: 02506546 1 21 -compel%2:42:00:: 02635420 2 0 -compelling%5:00:00:persuasive:00 01770591 2 0 -compelling%5:00:00:powerful:00 01826477 1 0 -compendious%5:00:00:concise:00 00547317 1 0 -compendium%1:10:00:: 06467996 2 0 -compendium%1:10:01:: 06591442 1 0 -compensable%5:00:00:paid:00 01708663 1 0 -compensate%2:40:00:: 02249741 6 0 -compensate%2:40:01:: 02250625 2 1 -compensate%2:40:02:: 02253456 5 0 -compensate%2:41:00:: 02519991 4 0 -compensate%2:42:00:: 02672540 1 5 -compensate%2:42:03:: 02672859 3 0 -compensated%5:00:00:paid:00 01708898 1 0 -compensating_balance%1:21:00:: 13409850 1 0 -compensation%1:04:00:: 00259643 3 0 -compensation%1:21:00:: 13282550 1 6 -compensation%1:22:00:: 13450636 2 0 -compensatory_damages%1:21:00:: 13291356 1 0 -compensatory_spending%1:04:00:: 01122754 1 0 -compensatory_time%1:28:00:: 15118935 1 0 -compere%1:18:00:: 09946814 1 0 -compere%2:41:00:: 02592397 1 0 -compete%2:33:00:: 01072262 1 24 -competence%1:07:00:: 05153520 1 7 -competence_hearing%1:04:00:: 01200266 1 0 -competency%1:07:00:: 05153520 1 0 -competent%3:00:00:: 00510050 1 7 -competent%3:00:02:: 00512130 3 0 -competent%5:00:00:adequate:00 00051571 2 3 -competently%4:02:00:: 00185172 1 1 -competition%1:04:00:: 01168569 3 4 -competition%1:11:00:: 07456188 2 4 -competition%1:18:00:: 10533013 4 0 -competition%1:24:01:: 13837009 1 17 -competitive%3:00:00:: 00512487 1 12 -competitive%5:00:00:aggressive:00 00083003 3 1 -competitive%5:00:00:capitalistic:00 00297755 2 4 -competitively%4:02:00:: 00243314 1 1 -competitiveness%1:07:00:: 04837425 1 0 -competitor%1:18:00:: 10533013 1 7 -competitory%3:00:00:: 00512487 1 0 -compilation%1:04:00:: 01014731 2 0 -compilation%1:10:00:: 06593099 1 0 -compile%2:36:00:: 01626138 2 3 -compile%2:36:01:: 01627105 3 0 -compile%2:40:00:: 02304982 1 3 -compiler%1:10:00:: 06573600 2 0 -compiler%1:18:00:: 09946957 1 0 -compiling%1:04:00:: 01014731 1 1 -compiling_program%1:10:00:: 06573600 1 0 -complacence%1:12:00:: 07531713 1 0 -complacency%1:12:00:: 07531713 1 0 -complacent%5:00:00:contented:00 00589067 1 0 -complacently%4:02:00:: 00287940 1 0 -complain%2:32:00:: 00907147 1 29 -complain%2:32:01:: 00844298 2 0 -complainant%1:18:00:: 10437852 1 0 -complainer%1:18:00:: 10776339 1 0 -complaining%3:00:00:: 00513799 1 0 -complainingly%4:02:00:: 00288307 1 0 -complaint%1:10:00:: 07208708 3 1 -complaint%1:10:02:: 07208930 2 1 -complaint%1:10:03:: 06562217 4 0 -complaint%1:10:04:: 06561942 5 0 -complaint%1:26:00:: 14055408 1 3 -complaintive%3:00:00:: 00513799 1 0 -complaisance%1:07:00:: 04641153 1 1 -complaisant%5:00:00:accommodating:00 00021110 1 0 -complect%2:42:00:: 02622969 1 0 -complement%1:07:00:: 05109511 4 1 -complement%1:09:00:: 05696297 6 0 -complement%1:10:00:: 06315638 1 15 -complement%1:14:00:: 08218212 3 1 -complement%1:23:00:: 13591998 2 1 -complement%1:27:00:: 14736201 5 0 -complement%2:30:02:: 00455919 1 3 -complement_fixation%1:04:00:: 00861382 1 0 -complement_fixation_test%1:09:00:: 05741949 1 0 -complemental%5:00:00:additive:00 00049016 1 0 -complementarity%1:24:01:: 13857314 1 0 -complementarity%1:24:02:: 13841467 2 0 -complementary%1:07:00:: 04975739 1 0 -complementary%5:00:00:additive:00 00049016 2 0 -complementary%5:00:00:antonymous:00 02381963 1 0 -complementary_angles%1:25:00:: 13888387 1 0 -complementary_color%1:07:00:: 04975739 1 0 -complementary_distribution%1:07:00:: 05087664 1 0 -complementary_dna%1:27:00:: 14816899 1 0 -complementary_medicine%1:04:00:: 00613819 1 0 -complementation%1:07:00:: 05087664 2 0 -complementation%1:24:00:: 13800418 1 0 -complete%2:30:00:: 00455750 2 5 -complete%2:30:02:: 00484166 1 52 -complete%2:32:00:: 01020731 5 1 -complete%2:33:00:: 01117484 4 1 -complete%2:41:00:: 02563724 3 3 -complete%3:00:00:: 00520214 1 67 -complete%5:00:00:finished:01 01003277 5 0 -complete%5:00:00:perfect:00 01750386 2 4 -complete%5:00:00:skilled:00 02226028 3 0 -complete%5:00:00:unmitigated:00 01520091 4 0 -complete_blood_count%1:04:00:: 00652975 1 0 -complete_fracture%1:26:00:: 14292688 1 0 -completed%5:00:00:complete:00 00521329 1 4 -completed%5:00:00:consummated:00 00551950 2 0 -completed%5:00:02:complete:00 00522240 3 0 -completely%4:02:03:: 00157624 2 10 -completely%4:02:04:: 00008007 1 37 -completeness%1:07:00:: 04785414 2 0 -completeness%1:26:00:: 14460974 1 2 -completing%5:00:00:additive:00 00049016 1 0 -completion%1:04:00:: 00211110 2 2 -completion%1:04:02:: 00557419 1 3 -complex%1:06:00:: 02914991 4 0 -complex%1:09:00:: 05870365 1 6 -complex%1:12:00:: 07482521 3 0 -complex%1:27:00:: 14817592 2 1 -complex%3:00:00:: 02176178 1 28 -complex_absence%1:26:00:: 14088758 1 0 -complex_body_part%1:08:00:: 05225602 1 0 -complex_conjugate%1:23:00:: 13729732 1 0 -complex_fraction%1:23:00:: 13736057 1 0 -complex_instruction_set_computer%1:07:00:: 04932561 1 0 -complex_instruction_set_computing%1:07:00:: 04932561 1 0 -complex_number%1:23:00:: 13729428 1 3 -complex_quantity%1:23:00:: 13729428 1 0 -complex_sentence%1:10:00:: 06285559 1 0 -complexifier%1:18:00:: 09947127 1 0 -complexify%2:30:00:: 00401202 2 0 -complexify%2:30:01:: 00401373 1 0 -complexion%1:07:00:: 04976952 1 1 -complexion%1:07:01:: 04624289 5 0 -complexion%1:07:02:: 04675193 4 0 -complexion%1:09:00:: 06211206 3 0 -complexion%1:14:00:: 07964324 2 0 -complexion%2:30:00:: 00287848 1 0 -complexity%1:07:00:: 04766275 1 10 -complexly%4:02:00:: 00513098 1 0 -complexness%1:07:00:: 04766275 1 0 -compliance%1:04:01:: 01166926 3 0 -compliance%1:04:02:: 01203676 1 1 -compliance%1:07:00:: 04641153 2 0 -compliancy%1:07:00:: 04641153 1 0 -compliant%3:00:00:: 00696518 1 0 -complicate%2:30:00:: 00402539 1 5 -complicate%2:30:01:: 00400883 2 2 -complicated%5:00:00:complex:00 02177584 1 11 -complicatedness%1:07:00:: 04766620 1 0 -complication%1:04:00:: 01076359 1 3 -complication%1:07:00:: 04766620 5 0 -complication%1:11:00:: 07423899 4 0 -complication%1:26:00:: 13933221 2 2 -complication%1:26:01:: 14074041 3 0 -complicity%1:26:00:: 13991245 1 4 -compliment%1:10:00:: 06695227 1 4 -compliment%2:32:00:: 00881661 1 2 -compliment%2:32:01:: 00881901 2 1 -complimentary%3:00:00:: 00905905 1 1 -complimentary%5:00:00:unpaid:00 01710260 2 0 -compliments%1:10:01:: 06630627 1 0 -complin%1:28:00:: 15230363 1 0 -compline%1:28:00:: 15230363 1 0 -complot%2:31:00:: 00706975 1 0 -comply%2:41:00:: 02542280 1 9 -component%1:06:00:: 03081021 3 4 -component%1:09:00:: 05868954 1 20 -component%1:24:00:: 13809207 2 10 -component_part%1:24:00:: 13809207 1 0 -comport%2:41:00:: 02519666 1 0 -comport%2:41:01:: 02518161 2 0 -comportment%1:07:00:: 04910377 1 1 -compos_mentis%5:00:00:sane:00 02073678 1 0 -compose%2:31:00:: 00706804 6 0 -compose%2:36:01:: 01698271 3 4 -compose%2:36:03:: 01705494 2 5 -compose%2:36:09:: 01626138 4 3 -compose%2:37:00:: 01765178 5 1 -compose%2:42:00:: 02621244 1 14 -composed%3:00:00:: 00529266 1 2 -composedly%4:02:00:: 00286889 1 0 -composer%1:18:00:: 09947232 1 24 -composing%1:04:00:: 00939452 2 0 -composing%1:07:00:: 05076472 1 1 -compositae%1:20:00:: 11911591 1 0 -composite%1:09:00:: 05870365 1 9 -composite%1:20:00:: 11915214 2 0 -composite%3:01:00:: 02701099 2 0 -composite%5:00:00:complex:00 02177755 1 2 -composite_material%1:27:00:: 14817783 1 0 -composite_number%1:23:00:: 13594417 1 0 -composite_order%1:07:00:: 04699474 1 0 -composite_plant%1:20:00:: 11915214 1 0 -composite_school%1:14:00:: 08413248 1 0 -compositeness%1:07:00:: 05208796 1 0 -composition%1:04:01:: 00929718 6 1 -composition%1:04:02:: 00939452 5 1 -composition%1:06:00:: 03081660 9 0 -composition%1:07:01:: 04933544 2 4 -composition%1:07:02:: 05076472 1 4 -composition%1:10:00:: 06409752 8 0 -composition%1:10:01:: 07037465 4 1 -composition%1:10:02:: 06677974 7 0 -composition%1:27:00:: 14588492 3 2 -composition_board%1:27:00:: 14799601 1 0 -compositional%5:00:00:integrative:00 01331459 1 0 -compositor%1:18:00:: 09949946 1 0 -compositor's_case%1:06:00:: 02975589 1 0 -compost%1:27:00:: 14818101 1 3 -compost%2:30:00:: 00527232 1 0 -compost_heap%1:14:00:: 07961956 1 0 -compost_pile%1:14:00:: 07961956 1 0 -composure%1:07:00:: 04903813 1 3 -compote%1:13:00:: 07611046 1 0 -compound%1:06:00:: 03081859 3 1 -compound%1:09:00:: 05870180 1 3 -compound%1:27:00:: 14818238 2 1 -compound%2:30:00:: 00193486 2 3 -compound%2:30:01:: 00227165 1 6 -compound%2:35:00:: 01461328 5 0 -compound%2:36:00:: 01657828 4 0 -compound%2:40:00:: 02265881 3 0 -compound%3:00:00:: 02171024 1 0 -compound%5:00:00:complex:00 02177872 2 0 -compound%5:00:02:complex:00 02177397 3 0 -compound_eye%1:08:00:: 05312427 1 0 -compound_fraction%1:23:00:: 13736057 1 0 -compound_fracture%1:26:00:: 14292796 1 0 -compound_interest%1:21:00:: 13318804 1 0 -compound_leaf%1:20:00:: 13156592 1 0 -compound_lens%1:06:00:: 03081986 1 0 -compound_lever%1:06:00:: 03082127 1 0 -compound_microscope%1:06:00:: 03082280 1 0 -compound_morphology%1:09:00:: 06178510 1 0 -compound_number%1:23:00:: 13597147 1 0 -compound_pendulum%1:06:00:: 03927792 1 0 -compound_pistil%1:20:00:: 11677045 1 0 -compound_protein%1:27:00:: 14731135 1 0 -compound_sentence%1:10:00:: 06286100 1 0 -compounded%5:00:00:combined:00 01330008 1 0 -compounding%1:04:00:: 00378985 1 1 -comprehend%2:31:00:: 00588221 1 11 -comprehend%2:39:00:: 02106506 2 1 -comprehend%2:42:00:: 02629793 3 0 -comprehended%5:00:00:understood:00 01378429 1 0 -comprehendible%3:00:00:: 00532892 1 0 -comprehensibility%1:07:00:: 04819026 1 0 -comprehensible%3:00:00:: 00532892 1 0 -comprehension%1:09:00:: 05805902 1 5 -comprehension%1:24:00:: 13794034 2 0 -comprehensive%1:10:00:: 07197889 1 0 -comprehensive%3:00:00:: 00525453 1 8 -comprehensive%5:00:00:inclusive:00 01863970 2 0 -comprehensive_examination%1:10:00:: 07197889 1 0 -comprehensive_school%1:14:00:: 08413248 1 0 -comprehensively%4:02:00:: 00288450 1 3 -comprehensiveness%1:09:00:: 05618293 2 0 -comprehensiveness%1:26:00:: 14461519 1 0 -compress%1:06:00:: 03082450 1 2 -compress%2:35:00:: 01387786 2 2 -compress%2:35:01:: 01389329 1 6 -compressed%5:00:00:closed:03 01655538 1 1 -compressed%5:00:00:compressible:00 00514613 2 1 -compressed%5:00:00:thin:01 02413037 3 0 -compressed_air%1:27:00:: 14842378 1 0 -compressed_gas%1:27:00:: 14842226 1 0 -compressibility%1:07:00:: 04938474 1 0 -compressible%3:00:00:: 00514396 1 0 -compressible%5:00:00:soft:01 01153435 2 0 -compressing%1:04:00:: 00356790 1 0 -compression%1:04:00:: 00356790 4 0 -compression%1:04:01:: 00616083 3 0 -compression%1:11:00:: 07313241 2 0 -compression%1:11:02:: 07419233 1 0 -compression_bandage%1:06:00:: 03082656 1 0 -compression_fracture%1:26:00:: 14292944 1 0 -compressor%1:06:00:: 03082807 1 0 -comprise%2:42:00:: 02629535 2 6 -comprise%2:42:01:: 02633356 1 8 -comprise%2:42:03:: 02620587 3 1 -compromise%1:04:00:: 01205564 1 4 -compromise%1:10:00:: 07179342 2 1 -compromise%2:32:00:: 01035380 2 2 -compromise%2:32:01:: 01035803 1 3 -compromise%2:32:03:: 01036592 3 0 -compromise_verdict%1:04:00:: 01192633 1 0 -compromiser%1:18:00:: 09970822 1 0 -compromising%3:00:00:: 01026262 1 1 -compromising%5:00:00:vulnerable:00 02523867 2 0 -compsognathus%1:05:00:: 01714536 1 0 -compton%1:18:00:: 10905703 1 0 -comptonia%1:20:00:: 11742175 1 0 -comptonia_asplenifolia%1:20:00:: 11742310 1 0 -comptonia_peregrina%1:20:00:: 11742310 1 0 -comptroller%1:18:00:: 09761403 1 0 -comptroller_general%1:18:00:: 09950150 1 3 -comptroller_of_the_currency%1:14:00:: 08142801 2 0 -comptroller_of_the_currency%1:18:00:: 09950318 1 0 -comptrollership%1:04:00:: 00590806 1 0 -compulsion%1:04:00:: 00156812 3 1 -compulsion%1:16:00:: 09183255 2 1 -compulsion%1:16:01:: 09181330 1 3 -compulsive%1:18:00:: 09950457 1 4 -compulsive%5:00:00:ambitious:00 00104699 2 0 -compulsive%5:00:00:neurotic:00 01583659 1 7 -compulsively%4:02:00:: 00243608 1 1 -compulsiveness%1:07:00:: 04625882 1 0 -compulsivity%1:07:00:: 04625882 1 10 -compulsorily%4:02:00:: 00288655 1 0 -compulsory%5:00:00:obligatory:00 00848466 1 0 -compulsory_process%1:07:00:: 05177705 1 0 -compunction%1:12:00:: 07536074 1 1 -computable%5:00:00:calculable:00 00301432 1 0 -computation%1:04:00:: 00868910 1 3 -computation%1:09:00:: 05802185 2 1 -computational%3:01:00:: 02907473 1 0 -computational_linguist%1:18:00:: 09950728 1 0 -computational_linguistics%1:09:00:: 06168552 1 0 -computationally%4:02:00:: 00288955 1 0 -compute%2:31:00:: 00637259 1 35 -computed_axial_tomography%1:04:00:: 00901476 1 0 -computed_tomography%1:04:00:: 00901476 1 0 -computer%1:06:00:: 03082979 1 6 -computer%1:18:00:: 09887034 2 0 -computer-aided_design%1:10:00:: 06567689 1 0 -computer-oriented_language%1:10:00:: 06899633 1 0 -computer_accessory%1:06:00:: 03084204 1 0 -computer_address%1:10:00:: 06356515 1 0 -computer_architecture%1:07:00:: 04932278 2 0 -computer_architecture%1:10:00:: 06725249 1 0 -computer_backup%1:06:00:: 02771840 1 0 -computer_business%1:14:00:: 08066965 1 0 -computer_circuit%1:06:00:: 03084420 1 0 -computer_code%1:10:00:: 06355894 1 0 -computer_database%1:10:00:: 06588511 1 0 -computer_dealer%1:14:00:: 08063738 1 0 -computer_display%1:06:00:: 03085602 1 0 -computer_error%1:11:00:: 07299569 1 0 -computer_expert%1:18:00:: 09950917 1 0 -computer_file%1:10:00:: 06509210 1 0 -computer_file_name%1:10:00:: 06335532 1 0 -computer_filename%1:10:00:: 06335532 1 0 -computer_game%1:04:00:: 00458890 1 0 -computer_graphic%1:06:00:: 03453696 1 0 -computer_graphics%1:06:00:: 03084647 1 0 -computer_guru%1:18:00:: 09950917 1 0 -computer_hardware%1:06:00:: 03493333 1 0 -computer_industry%1:14:00:: 08067565 1 0 -computer_keyboard%1:06:00:: 03085013 1 0 -computer_language%1:10:00:: 06899633 1 0 -computer_memory%1:06:00:: 03744276 1 0 -computer_memory_unit%1:23:00:: 13601596 1 0 -computer_menu%1:10:00:: 06493392 1 0 -computer_monitor%1:06:00:: 03085219 1 0 -computer_mouse%1:06:00:: 03793489 1 0 -computer_network%1:06:00:: 03085333 1 0 -computer_operation%1:22:00:: 13450862 1 0 -computer_paper%1:27:00:: 14820052 1 0 -computer_peripheral%1:06:00:: 03916720 1 0 -computer_program%1:10:00:: 06568978 1 0 -computer_programing%1:04:00:: 00928947 1 0 -computer_programme%1:10:00:: 06568978 1 0 -computer_programmer%1:18:00:: 10481268 1 0 -computer_programming%1:04:00:: 00928947 1 0 -computer_readable%3:01:00:: 02902214 1 0 -computer_science%1:09:00:: 06128570 1 0 -computer_scientist%1:18:00:: 09951070 1 0 -computer_screen%1:06:00:: 03085602 1 0 -computer_simulation%1:09:00:: 05666700 1 0 -computer_software%1:10:00:: 06566077 1 0 -computer_storage%1:06:00:: 03744276 1 0 -computer_store%1:06:00:: 03085781 1 0 -computer_system%1:06:00:: 03085915 1 0 -computer_technology%1:04:00:: 00950705 1 0 -computer_user%1:18:00:: 09951274 1 0 -computer_virus%1:10:00:: 06585816 1 0 -computerise%2:36:00:: 01718952 3 0 -computerise%2:40:00:: 02218759 2 0 -computerise%2:40:01:: 02337364 1 0 -computerization%1:04:00:: 00102779 1 0 -computerize%2:36:00:: 01718952 3 0 -computerize%2:40:00:: 02218759 2 0 -computerize%2:40:01:: 02337364 1 0 -computerized_axial_tomography%1:04:00:: 00901476 1 0 -computerized_axial_tomography_scanner%1:06:00:: 03084834 1 0 -computerized_tomography%1:04:00:: 00901476 1 0 -computing%1:04:00:: 00868910 2 0 -computing%1:09:00:: 06128570 1 0 -computing_device%1:06:00:: 03082979 1 0 -computing_machine%1:06:00:: 03082979 1 0 -computing_system%1:06:00:: 03085915 1 0 -comrade%1:18:00:: 09945905 1 55 -comrade%1:18:01:: 09951524 2 0 -comrade%1:18:02:: 09877124 3 0 -comradeliness%1:07:00:: 04653627 1 0 -comradely%5:00:00:friendly:01 01075864 1 0 -comradery%1:07:00:: 04653627 1 0 -comradeship%1:07:00:: 04653627 1 0 -comstock%1:18:00:: 10906048 1 0 -comstock's_mealybug%1:05:00:: 02251233 1 0 -comstock_mealybug%1:05:00:: 02251233 1 0 -comstockery%1:04:00:: 00397647 1 0 -comte%1:18:00:: 10906234 1 0 -comte_de_mirabeau%1:18:00:: 11181634 1 0 -comte_de_rochambeau%1:18:00:: 11266703 1 0 -comte_de_saxe%1:18:00:: 11283300 1 0 -comte_donatien_alphonse_francois_de_sade%1:18:00:: 11278120 1 0 -comtesse_du_barry%1:18:00:: 10943811 1 0 -comtism%1:09:00:: 05993622 1 0 -con%1:04:00:: 00779248 3 0 -con%1:10:00:: 06649325 1 1 -con%1:18:00:: 09962966 2 0 -con%2:31:00:: 00604576 2 0 -con%2:41:00:: 02572119 1 1 -con%4:02:00:: 00289294 1 0 -con_artist%1:18:00:: 09954879 1 0 -con_brio%4:02:00:: 00019900 1 0 -con_brio%5:00:00:spirited:00 02279523 1 0 -con_game%1:04:00:: 00779248 1 1 -con_man%1:18:00:: 09954879 1 0 -conacaste%1:20:00:: 11761202 1 0 -conakry%1:15:00:: 08947617 1 0 -conan_doyle%1:18:00:: 10906462 1 0 -concatenate%2:30:00:: 00190180 2 0 -concatenate%2:35:00:: 01465054 1 0 -concatenation%1:04:00:: 00146443 4 0 -concatenation%1:14:00:: 08376250 3 0 -concatenation%1:24:00:: 13793127 2 0 -concatenation%1:26:00:: 14419737 1 0 -concave%3:00:00:: 00535452 1 3 -concave_lens%1:06:00:: 03215337 1 0 -concave_polygon%1:25:00:: 13866827 1 0 -concave_polyhedron%1:25:00:: 13884384 1 0 -concave_shape%1:25:00:: 13864965 1 0 -concavely%4:02:00:: 00499823 1 0 -concaveness%1:07:00:: 05070032 1 0 -concavity%1:07:00:: 05070032 2 0 -concavity%1:25:00:: 13864965 1 0 -concavo-concave%5:00:00:concave:00 00536008 1 0 -concavo-convex%5:00:00:concave:00 00536416 1 0 -conceal%2:39:00:: 02146790 2 1 -conceal%2:39:01:: 02144835 1 8 -concealed%3:00:00:: 02088404 2 1 -concealed%5:00:00:invisible:00 02517817 1 2 -concealing%1:04:00:: 01048912 1 0 -concealing%3:00:00:: 02091020 1 0 -concealment%1:04:00:: 01048912 3 0 -concealment%1:06:00:: 04151940 2 0 -concealment%1:26:00:: 14416089 1 0 -concede%2:32:00:: 00818553 1 10 -concede%2:32:01:: 00806049 2 6 -concede%2:33:00:: 01117609 4 0 -concede%2:40:00:: 02316649 3 4 -conceding%1:10:00:: 07176243 1 0 -conceit%1:07:00:: 04887129 5 0 -conceit%1:10:00:: 07088868 3 0 -conceit%1:10:01:: 07068473 4 0 -conceit%1:10:02:: 07106113 2 0 -conceit%1:12:00:: 07508996 1 1 -conceited%5:00:00:proud:00 01891773 1 0 -conceitedly%4:02:00:: 00289421 1 0 -conceitedness%1:07:00:: 04887129 1 0 -conceivability%1:26:00:: 14482299 1 0 -conceivable%5:00:00:thinkable:00 02418249 1 2 -conceivableness%1:26:00:: 14482299 1 0 -conceivably%4:02:00:: 00193759 1 4 -conceive%2:29:00:: 00054285 3 2 -conceive%2:31:00:: 00689344 2 10 -conceive%2:36:00:: 01633343 1 21 -conceive_of%2:36:01:: 01636397 1 6 -conceiver%1:18:00:: 10383816 1 0 -concenter%2:31:00:: 00731789 1 0 -concentrate%1:09:00:: 05937878 3 1 -concentrate%1:13:00:: 07567390 2 1 -concentrate%1:27:00:: 14837506 1 3 -concentrate%2:30:00:: 00236999 8 0 -concentrate%2:30:01:: 00237511 1 8 -concentrate%2:30:02:: 00405236 3 4 -concentrate%2:30:03:: 00237259 7 0 -concentrate%2:30:07:: 00244625 4 2 -concentrate%2:30:12:: 00365188 6 0 -concentrate%2:31:00:: 00722232 2 4 -concentrate%2:38:00:: 02032934 5 1 -concentrate_on%2:42:00:: 02676496 1 5 -concentrated%3:00:00:: 00538565 1 5 -concentrated%3:00:01:: 01157762 4 0 -concentrated%3:00:02:: 00757923 5 0 -concentrated%5:00:00:intense:00 01511031 3 2 -concentrated%5:00:00:undiluted:00 00757001 2 5 -concentrated_fire%1:04:00:: 00989583 1 0 -concentration%1:04:01:: 00375071 3 3 -concentration%1:04:02:: 01231980 6 1 -concentration%1:07:01:: 04865502 7 0 -concentration%1:07:02:: 05038593 1 25 -concentration%1:07:03:: 05088804 2 5 -concentration%1:09:00:: 05704266 5 2 -concentration%1:11:00:: 07413899 4 2 -concentration_camp%1:06:00:: 03086183 1 7 -concentration_camp%1:26:00:: 14448692 2 0 -concentration_gradient%1:24:00:: 13859692 1 0 -concentre%2:31:00:: 00731789 1 0 -concentric%3:00:00:: 00542953 1 0 -concentrical%3:00:00:: 00542953 1 0 -concentricity%1:07:00:: 05073723 1 0 -concepcion%1:15:00:: 08721449 1 0 -concept%1:09:00:: 05835747 1 37 -concept_album%1:10:00:: 06592078 1 0 -conception%1:04:01:: 00844847 2 4 -conception%1:09:00:: 05835747 1 11 -conception%1:09:03:: 05633385 4 1 -conception%1:11:00:: 07328942 3 2 -conceptional%5:00:00:abstract:00 00012071 1 0 -conceptive%5:00:00:fertile:00 01001945 1 0 -conceptual%5:00:00:abstract:00 00012362 1 1 -conceptual_semantics%1:09:00:: 06180548 1 0 -conceptualisation%1:04:00:: 00940842 2 0 -conceptualisation%1:09:00:: 05836275 1 0 -conceptualise%2:36:00:: 01633343 1 0 -conceptualism%1:09:00:: 05969537 1 0 -conceptualistic%3:01:00:: 02701253 1 0 -conceptuality%1:09:00:: 05836275 1 2 -conceptualization%1:04:00:: 00940842 1 1 -conceptualization%1:09:00:: 05836275 2 0 -conceptualize%2:36:00:: 01633343 1 0 -conceptually%4:02:00:: 00289586 1 1 -conceptus%1:05:00:: 01458842 1 0 -concern%1:09:00:: 05670710 1 21 -concern%1:09:01:: 05832264 4 4 -concern%1:12:00:: 07504841 3 4 -concern%1:12:01:: 07524529 2 12 -concern%1:14:00:: 08061042 5 2 -concern%2:42:00:: 02676054 1 56 -concern%2:42:01:: 02678438 2 22 -concerned%3:00:00:: 00543603 1 15 -concerned%5:00:00:involved:00 01515692 2 12 -concerned%5:00:01:involved:00 01516346 3 0 -concernedly%4:02:00:: 00289748 1 0 -concert%1:10:00:: 06892775 1 5 -concert%2:32:00:: 00761600 2 0 -concert%2:36:00:: 01639003 1 0 -concert-goer%1:18:00:: 09951616 1 0 -concert_band%1:14:00:: 08249459 1 0 -concert_dance%1:04:00:: 00528667 1 0 -concert_grand%1:06:00:: 03086457 1 0 -concert_hall%1:06:00:: 03086580 1 1 -concert_piano%1:06:00:: 03086457 1 0 -concert_pitch%1:07:00:: 04985580 1 0 -concerted%5:00:00:joint:00 02112108 1 1 -concerted_music%1:10:00:: 07024929 1 0 -concertina%1:06:00:: 03086670 2 0 -concertina%1:06:01:: 03086868 1 1 -concertina%2:38:00:: 02083694 1 0 -concertise%2:36:00:: 01716407 1 0 -concertize%2:36:00:: 01716407 1 0 -concerto%1:10:00:: 07043275 1 3 -concerto_grosso%1:10:00:: 07043389 1 0 -concession%1:10:00:: 06526619 1 2 -concession%1:10:01:: 07216412 3 0 -concession%1:10:02:: 07176243 2 1 -concessionaire%1:18:00:: 09951717 1 3 -concessioner%1:18:00:: 09951717 1 0 -concessive%3:01:00:: 03056010 1 0 -conch%1:05:00:: 01943899 1 0 -concha%1:08:00:: 05229198 1 0 -conchfish%1:05:00:: 02572763 1 0 -conchologist%1:18:00:: 09951835 1 0 -conchology%1:04:00:: 01015689 1 0 -concierge%1:18:00:: 09951953 1 2 -conciliable%5:00:00:placable:00 01784946 1 0 -conciliate%2:30:00:: 00482893 3 0 -conciliate%2:32:00:: 00764902 2 0 -conciliate%2:37:00:: 01765392 1 1 -conciliation%1:04:00:: 01151407 3 0 -conciliation%1:10:00:: 07151122 2 0 -conciliation%1:26:00:: 13971561 1 0 -conciliative%3:00:00:: 00759551 1 0 -conciliator%1:18:00:: 09952163 1 0 -conciliatory%3:00:00:: 00759551 2 0 -conciliatory%3:00:04:: 01026262 1 1 -concise%3:00:00:: 00546646 1 1 -concisely%4:02:00:: 00289860 1 0 -conciseness%1:10:00:: 07089024 1 1 -concision%1:10:00:: 07089024 1 0 -conclave%1:14:00:: 08308410 1 1 -conclude%2:31:00:: 00634472 1 33 -conclude%2:31:01:: 00715074 2 9 -conclude%2:32:01:: 01021420 3 1 -conclude%2:32:06:: 01071762 5 0 -conclude%2:42:02:: 02610628 4 0 -concluded%5:00:00:finished:01 01003277 1 0 -concluding%5:00:00:closing:00 01010271 1 2 -conclusion%1:04:00:: 00209943 6 1 -conclusion%1:04:01:: 00162632 9 0 -conclusion%1:09:00:: 05838176 1 29 -conclusion%1:09:01:: 05781541 2 5 -conclusion%1:10:00:: 06398401 8 0 -conclusion%1:10:01:: 06753030 5 1 -conclusion%1:10:02:: 07177622 7 0 -conclusion%1:11:00:: 07291312 4 1 -conclusion%1:28:00:: 15267536 3 1 -conclusion_of_law%1:04:00:: 01192463 1 0 -conclusive%3:00:00:: 00550282 1 3 -conclusively%4:02:00:: 00092985 1 4 -conclusiveness%1:07:00:: 04754440 1 0 -concoct%2:35:00:: 01459896 1 1 -concoct%2:36:00:: 01634142 4 0 -concoct%2:36:01:: 01666131 2 0 -concoct%2:36:02:: 01635056 3 0 -concoction%1:04:00:: 00926668 4 0 -concoction%1:09:00:: 05634219 3 0 -concoction%1:11:00:: 07375053 2 0 -concoction%1:13:00:: 07882497 1 0 -concomitance%1:07:00:: 05048690 1 0 -concomitant%1:11:00:: 07284554 1 0 -concomitant%5:00:00:subsequent:00 00122844 1 0 -concord%1:04:00:: 01283935 6 0 -concord%1:10:00:: 07180183 5 0 -concord%1:15:00:: 09111754 1 1 -concord%1:15:01:: 09096903 4 0 -concord%1:24:00:: 13797313 3 0 -concord%1:26:00:: 13969243 2 0 -concord%2:32:00:: 00805376 4 0 -concord%2:35:00:: 01465506 3 0 -concord%2:36:00:: 01648488 2 0 -concord%2:42:00:: 02700104 1 0 -concord_grape%1:13:00:: 07759194 1 0 -concordance%1:10:00:: 06492040 3 0 -concordance%1:10:02:: 07180183 2 0 -concordance%1:26:00:: 13969243 1 0 -concordant%5:00:00:accordant:00 00553478 2 0 -concordant%5:00:00:consistent:00 00577122 1 2 -concordat%1:10:00:: 06772260 1 0 -concourse%1:04:00:: 00147091 3 0 -concourse%1:06:00:: 03086963 2 0 -concourse%1:14:00:: 08182716 1 0 -concrete%1:27:00:: 14820180 1 16 -concrete%2:30:00:: 00374534 2 0 -concrete%2:35:00:: 01600355 1 0 -concrete%3:00:00:: 00013160 1 9 -concrete%5:00:00:solid:01 02260477 2 0 -concrete_jungle%1:15:00:: 08509251 1 0 -concrete_mixer%1:06:00:: 03087069 1 0 -concrete_representation%1:09:00:: 05941037 1 0 -concretely%4:02:00:: 00197811 1 1 -concreteness%1:07:00:: 04759849 1 0 -concretion%1:04:00:: 00382109 4 0 -concretion%1:11:00:: 07419233 3 0 -concretion%1:17:00:: 09230768 2 0 -concretion%1:22:00:: 13451073 1 0 -concretise%2:30:00:: 00552006 1 0 -concretism%1:09:00:: 05941037 1 0 -concretistic%3:01:00:: 02701377 1 2 -concretize%2:30:00:: 00552006 2 0 -concretize%2:31:00:: 00715769 1 0 -concubinage%1:04:00:: 01055065 1 0 -concubine%1:18:00:: 09952393 1 0 -concupiscence%1:12:00:: 07487955 1 0 -concupiscent%5:00:00:passionate:00 01727133 1 0 -concur%2:30:00:: 00345312 2 1 -concur%2:32:00:: 00805376 1 5 -concurrence%1:04:00:: 01205702 2 1 -concurrence%1:07:00:: 05048301 4 0 -concurrence%1:10:00:: 07176682 1 1 -concurrence%1:26:00:: 13971802 3 0 -concurrency%1:04:00:: 01205702 2 0 -concurrency%1:10:00:: 07176682 1 0 -concurrent%5:00:00:synchronous:00 02378496 1 3 -concurrent_execution%1:22:00:: 13518279 1 0 -concurrent_negligence%1:04:00:: 00739850 1 0 -concurrent_operation%1:22:00:: 13451204 1 0 -concurrently%4:02:00:: 00120223 1 0 -concurring%5:00:00:accordant:00 00553478 1 0 -concurring_opinion%1:10:00:: 06552116 1 0 -concuss%2:29:00:: 00070633 2 0 -concuss%2:38:00:: 01890510 1 0 -concussion%1:11:00:: 07411490 1 1 -concussion%1:11:01:: 07409930 2 1 -condemn%2:32:00:: 00864159 1 18 -condemn%2:32:01:: 00906735 5 1 -condemn%2:32:02:: 00856578 2 2 -condemn%2:39:00:: 02149302 4 1 -condemn%2:40:00:: 02273768 6 0 -condemn%2:41:00:: 02507093 3 1 -condemnable%5:00:00:wrong:01 02035765 1 0 -condemnation%1:04:00:: 01223257 2 3 -condemnation%1:04:01:: 01189282 5 0 -condemnation%1:10:00:: 06709692 1 3 -condemnation%1:10:01:: 07233634 3 1 -condemnation%1:26:00:: 14574846 4 0 -condemnatory%5:00:00:inculpatory:00 00924791 1 1 -condemning%5:00:00:inculpatory:00 00924791 1 0 -condensate%1:19:00:: 11446242 2 0 -condensate%1:27:00:: 15008765 1 0 -condensation%1:04:00:: 00357680 6 0 -condensation%1:09:00:: 06246700 1 3 -condensation%1:10:00:: 06468123 5 0 -condensation%1:11:00:: 07313241 4 0 -condensation%1:19:00:: 11446242 3 0 -condensation%1:22:00:: 13451348 2 0 -condensation_pump%1:06:00:: 03087245 1 0 -condensation_trail%1:17:00:: 09255519 1 0 -condense%2:30:00:: 00244625 2 1 -condense%2:30:01:: 00364868 1 2 -condense%2:30:03:: 00366275 4 0 -condense%2:30:04:: 00365188 7 0 -condense%2:30:05:: 00366547 3 0 -condense%2:30:06:: 00365647 5 0 -condense%2:30:07:: 00365446 6 0 -condensed_milk%1:13:00:: 07846471 1 1 -condenser%1:06:00:: 03087366 4 0 -condenser%1:06:01:: 02955247 1 1 -condenser%1:06:02:: 03087521 3 0 -condenser%1:06:03:: 03087643 2 0 -condenser_microphone%1:06:00:: 03087816 1 0 -condensing%1:04:00:: 00357680 1 0 -condescend%2:32:10:: 00908977 4 0 -condescend%2:41:00:: 02591312 2 0 -condescend%2:41:01:: 02591455 1 0 -condescend%2:41:12:: 02517827 3 0 -condescending%5:00:00:superior:01 02338917 1 3 -condescendingly%4:02:00:: 00292133 1 0 -condescendingness%1:07:00:: 04655168 1 0 -condescension%1:07:00:: 04888268 1 3 -condescension%1:07:01:: 04655168 3 0 -condescension%1:10:00:: 06719404 2 0 -condign%5:00:00:merited:00 01371258 1 0 -condiment%1:13:00:: 07810907 1 0 -condition%1:09:00:: 05822746 4 1 -condition%1:09:01:: 05798863 8 0 -condition%1:10:01:: 06755568 2 12 -condition%1:10:02:: 06770875 7 0 -condition%1:26:00:: 13920835 1 72 -condition%1:26:01:: 13920429 3 2 -condition%1:26:02:: 14546227 5 0 -condition%1:26:05:: 13923440 6 0 -condition%2:29:00:: 00041687 5 0 -condition%2:30:00:: 00207418 4 0 -condition%2:32:00:: 01018928 3 1 -condition%2:41:00:: 02553697 2 1 -condition%2:41:01:: 02571768 1 2 -conditional%3:00:00:: 00555325 2 0 -conditional%5:00:00:qualified:02 01913413 1 1 -conditional_contract%1:10:00:: 06522633 1 0 -conditional_probability%1:07:00:: 05092236 1 0 -conditional_reaction%1:04:00:: 00864226 1 0 -conditional_reflex%1:04:00:: 00864226 1 0 -conditional_relation%1:24:00:: 13860281 1 0 -conditional_response%1:04:00:: 00864226 1 0 -conditional_sale%1:10:00:: 06528191 2 0 -conditional_sale%1:21:00:: 13352341 1 0 -conditionality%1:26:00:: 13924069 1 0 -conditionally%4:02:00:: 00292684 1 0 -conditioned%3:00:00:: 01637032 1 0 -conditioned%5:00:00:fit:01 01017600 2 0 -conditioned_avoidance%1:04:00:: 00864680 1 0 -conditioned_avoidance_response%1:04:00:: 00864680 1 0 -conditioned_emotion%1:09:00:: 05759017 1 0 -conditioned_emotional_response%1:09:00:: 05759017 1 0 -conditioned_reaction%1:04:00:: 00864226 1 7 -conditioned_reflex%1:04:00:: 00864226 1 2 -conditioned_response%1:04:00:: 00864226 1 1 -conditioned_stimulus%1:09:00:: 05828425 1 2 -conditioner%1:04:00:: 00625551 1 1 -conditioner%1:06:00:: 03088020 3 0 -conditioner%1:18:00:: 09953178 2 0 -conditioning%1:09:00:: 05752921 1 2 -conditions%1:19:00:: 11524662 3 0 -conditions%1:26:03:: 13923030 2 0 -conditions%1:26:04:: 13923219 1 0 -condo%1:06:00:: 03088580 1 0 -condole%2:37:00:: 01822536 1 0 -condole_with%2:37:00:: 01821996 1 0 -condolence%1:10:00:: 06633692 1 0 -condolent%5:00:00:sympathetic:00 02375491 1 0 -condom%1:06:00:: 03088164 1 0 -condominium%1:06:00:: 03088389 2 0 -condominium%1:06:01:: 03088580 1 0 -condonation%1:04:00:: 01227351 1 0 -condone%2:32:00:: 00893167 1 1 -condor%1:05:00:: 01619536 1 0 -condorcet%1:18:00:: 10906638 1 0 -conduce%2:41:12:: 02555908 1 0 -conducive%5:00:00:causative:00 00323426 1 0 -conduct%1:04:00:: 01220984 1 5 -conduct%1:07:00:: 04897762 2 3 -conduct%2:36:00:: 01732921 2 30 -conduct%2:36:04:: 01733213 6 0 -conduct%2:38:00:: 02079933 5 1 -conduct%2:38:01:: 01999798 4 2 -conduct%2:41:00:: 02445509 1 44 -conduct%2:41:01:: 02518161 3 2 -conductance%1:19:00:: 11503813 1 0 -conductance_unit%1:23:00:: 13633229 1 0 -conducting%1:04:00:: 01136265 1 0 -conducting%1:04:01:: 01133760 2 0 -conducting_wire%1:06:00:: 04594489 1 2 -conduction%1:19:00:: 11512818 1 2 -conduction_anaesthesia%1:26:00:: 14027396 1 0 -conduction_anesthesia%1:26:00:: 14027396 1 0 -conduction_aphasia%1:26:00:: 14098078 1 0 -conduction_deafness%1:26:00:: 14551146 1 0 -conductive%3:00:00:: 00557813 1 0 -conductive_hearing_loss%1:26:00:: 14551146 1 0 -conductivity%1:19:00:: 11512818 1 2 -conductor%1:06:00:: 03088707 4 0 -conductor%1:18:00:: 09952539 1 6 -conductor%1:18:01:: 09953052 3 1 -conductor%1:27:00:: 14821043 2 1 -conductress%1:18:00:: 09953275 1 0 -conduit%1:06:00:: 03089014 1 0 -condylar%3:01:00:: 02701548 1 0 -condylar_process%1:08:00:: 05471837 1 0 -condyle%1:08:00:: 05471629 1 0 -condylion%1:08:00:: 05231940 1 0 -condyloid_process%1:08:00:: 05471837 1 0 -condyloma_acuminatum%1:07:00:: 04696797 1 0 -condylura%1:05:00:: 01889740 1 0 -condylura_cristata%1:05:00:: 01889849 1 0 -cone%1:06:00:: 03089348 1 4 -cone%1:08:00:: 05456257 4 0 -cone%1:20:00:: 11682842 3 0 -cone%1:25:00:: 13872592 2 0 -cone%2:35:00:: 01584321 1 0 -cone-bearing%5:00:00:evergreen:00 00913720 1 0 -cone-nosed_bug%1:05:00:: 02244515 1 0 -cone-shaped%3:01:00:: 02844728 1 0 -cone_cell%1:08:00:: 05456257 1 0 -cone_clutch%1:06:00:: 03089477 1 0 -cone_friction_clutch%1:06:00:: 03089477 1 0 -cone_pepper%1:20:00:: 12900783 1 0 -cone_shape%1:25:00:: 13872592 1 0 -coneflower%1:20:01:: 11962272 3 0 -coneflower%1:20:02:: 12008252 1 0 -coneflower%1:20:03:: 12006766 2 0 -conelike%3:01:00:: 02844728 1 0 -conenose%1:05:00:: 02244515 1 0 -conenose_bug%1:05:00:: 02244515 1 0 -conepatus%1:05:00:: 02446512 1 0 -conepatus_leuconotus%1:05:00:: 02446645 1 0 -conessi%1:20:00:: 11772879 1 0 -conestoga%1:06:00:: 03122295 1 0 -conestoga_wagon%1:06:00:: 03122295 1 1 -coney%1:05:00:: 02569334 1 0 -coney%1:05:01:: 02324045 4 0 -coney%1:05:02:: 02328429 3 0 -coney%1:05:03:: 02372584 2 0 -coney_island%1:15:00:: 09120207 1 0 -confab%1:10:00:: 07134850 1 0 -confab%2:32:00:: 01038666 1 0 -confab%2:32:01:: 00876665 2 0 -confabulate%2:32:00:: 01038666 2 0 -confabulate%2:32:01:: 00876665 3 0 -confabulate%2:36:03:: 01634887 1 0 -confabulation%1:09:00:: 05935535 2 0 -confabulation%1:10:00:: 07134850 1 0 -confect%1:13:00:: 07597365 1 0 -confect%2:36:00:: 01626420 2 0 -confect%2:36:01:: 01750813 1 0 -confection%1:04:00:: 00926668 2 0 -confection%1:13:00:: 07596684 1 0 -confection%2:36:00:: 01626420 1 0 -confectionary%1:06:00:: 03089624 1 0 -confectioner%1:18:00:: 09953350 1 0 -confectionery%1:04:00:: 00433113 3 0 -confectionery%1:06:00:: 03089624 2 0 -confectionery%1:13:00:: 07596967 1 0 -confederacy%1:10:00:: 06524935 4 0 -confederacy%1:14:00:: 08303275 2 1 -confederacy%1:14:01:: 08251303 3 0 -confederacy%1:15:00:: 09050244 1 1 -confederate%1:18:00:: 09761068 3 0 -confederate%1:18:01:: 09953483 2 0 -confederate%1:18:02:: 09953615 1 1 -confederate%2:41:00:: 02470685 1 0 -confederate%2:41:10:: 02434541 2 0 -confederate%5:00:00:southern:02 01606942 1 2 -confederate%5:00:00:united:00 02476485 2 0 -confederate_army%1:14:00:: 08394657 1 0 -confederate_flag%1:06:00:: 04304084 1 0 -confederate_jasmine%1:20:00:: 11777552 1 0 -confederate_rose%1:20:00:: 12179122 1 0 -confederate_rose_mallow%1:20:00:: 12179122 1 0 -confederate_soldier%1:18:00:: 09953775 1 0 -confederate_states%1:15:00:: 09050244 1 0 -confederate_states_of_america%1:15:00:: 09050244 1 0 -confederation%1:04:00:: 01081456 3 0 -confederation%1:14:00:: 08303275 2 0 -confederation%1:26:00:: 14418822 1 0 -confederative%5:00:00:united:00 02476485 1 0 -confer%2:32:00:: 00876665 1 1 -confer%2:40:00:: 02263346 2 0 -confer_with%2:32:00:: 00877559 1 3 -conferee%1:18:00:: 09953965 2 0 -conferee%1:18:01:: 09954081 1 0 -conference%1:10:00:: 07142566 3 2 -conference%1:14:00:: 08308497 1 12 -conference%1:14:01:: 08231184 2 2 -conference_call%1:10:00:: 06274408 1 0 -conference_center%1:06:00:: 03089753 1 0 -conference_house%1:06:00:: 03089753 1 2 -conference_room%1:06:00:: 03089879 1 1 -conference_table%1:06:00:: 03090000 1 0 -conferment%1:04:00:: 01086356 1 0 -conferral%1:04:00:: 01086356 1 0 -conferrer%1:18:00:: 10025730 1 0 -conferrer%1:18:01:: 09954246 2 0 -conferva%1:05:00:: 01401842 1 0 -confervoid_algae%1:05:00:: 01402039 1 0 -confess%2:32:00:: 00819508 1 10 -confess%2:32:01:: 00818553 2 3 -confess%2:32:03:: 00818805 3 0 -confessedly%4:02:00:: 00184284 1 0 -confession%1:04:00:: 01039307 3 1 -confession%1:10:00:: 07216083 1 4 -confession%1:10:01:: 06472242 2 1 -confession%1:10:02:: 06727133 4 0 -confession%1:10:03:: 06472409 5 0 -confession_of_judgement%1:04:00:: 01188273 1 0 -confession_of_judgment%1:04:00:: 01188273 1 0 -confessional%1:06:00:: 03090172 1 0 -confessor%1:18:00:: 09954355 1 1 -confessor%1:18:01:: 09954479 2 0 -confetti%1:06:00:: 03090278 1 0 -confidant%1:18:00:: 09954639 1 2 -confidante%1:18:00:: 09954804 1 1 -confide%2:32:00:: 00936465 1 6 -confide%2:40:00:: 02349212 2 1 -confidence%1:09:00:: 05697363 1 13 -confidence%1:10:00:: 06673435 5 0 -confidence%1:12:00:: 07526505 2 6 -confidence%1:26:02:: 14483744 3 3 -confidence%1:26:03:: 13929852 4 0 -confidence_game%1:04:00:: 00779248 1 0 -confidence_man%1:18:00:: 09954879 1 0 -confidence_trick%1:04:00:: 00779248 1 0 -confident%3:00:00:: 00338817 1 7 -confident%5:00:00:capable:00 00306909 3 0 -confident%5:00:00:certain:02 00337172 2 0 -confidential%5:00:00:classified:02 00415696 4 0 -confidential%5:00:00:close:02 00452605 3 0 -confidential%5:00:00:private:00 01859801 1 2 -confidential%5:00:02:private:00 01859571 2 0 -confidential_adviser-advisee_relation%1:24:00:: 13838930 1 0 -confidential_information%1:10:00:: 06651577 1 0 -confidentiality%1:09:00:: 05615749 2 0 -confidentiality%1:26:00:: 14416668 1 1 -confidentially%4:02:01:: 00169312 1 2 -confidently%4:02:00:: 00212727 1 2 -confiding%5:00:00:trustful:00 02462883 1 1 -confidingly%4:02:00:: 00320568 1 0 -configuration%1:07:00:: 05064037 2 1 -configuration%1:09:00:: 05731779 1 1 -configurational%3:01:00:: 02701662 1 0 -configurationism%1:09:00:: 06141324 1 0 -configure%2:36:00:: 01657641 1 0 -configured%5:00:00:organized:02 01670524 1 0 -confine%2:30:00:: 00233335 1 5 -confine%2:30:01:: 00235368 2 4 -confine%2:35:01:: 01301410 6 0 -confine%2:35:03:: 01347298 3 3 -confine%2:41:00:: 02495038 5 0 -confine%2:42:00:: 02711114 4 0 -confined%3:00:00:: 00558373 2 0 -confined%3:00:01:: 01356283 1 0 -confined%5:00:00:unfree:00 01065126 3 0 -confinement%1:04:00:: 01146576 2 1 -confinement%1:04:01:: 01148614 4 0 -confinement%1:26:00:: 13998576 3 0 -confinement%1:26:01:: 14048441 1 1 -confines%1:07:00:: 05126228 1 1 -confining%5:00:00:confined:00 00558738 2 0 -confining%5:00:00:restrictive:00 02004023 1 1 -confirm%2:30:00:: 00221840 3 2 -confirm%2:31:00:: 00665886 1 18 -confirm%2:32:00:: 01012073 2 5 -confirm%2:41:00:: 02474603 5 0 -confirm%2:41:01:: 02476518 4 1 -confirmable%5:00:00:empirical:00 00859453 1 0 -confirmation%1:04:00:: 01038761 5 0 -confirmation%1:04:01:: 01038895 4 0 -confirmation%1:09:00:: 05825245 1 4 -confirmation%1:10:00:: 06650070 2 1 -confirmation%1:10:01:: 07179943 3 0 -confirmation_hearing%1:10:00:: 07147511 1 0 -confirmative%5:00:00:supportive:00 02355521 1 0 -confirmatory%5:00:00:supportive:00 02355521 1 0 -confirmed%3:00:00:: 01634495 2 1 -confirmed%5:00:00:unchangeable:00 00347571 1 2 -confirming%3:00:02:: 01820481 1 0 -confirming%5:00:00:supportive:00 02355521 2 0 -confiscate%2:40:01:: 02273293 1 2 -confiscate%5:00:00:lost:03 01452385 1 0 -confiscation%1:04:00:: 00085678 1 0 -confit%1:13:00:: 07581132 1 0 -confiture%1:13:00:: 07597145 1 0 -conflagrate%2:43:00:: 02760622 2 0 -conflagrate%2:43:01:: 02761372 1 0 -conflagration%1:11:00:: 07303697 1 0 -conflate%2:30:00:: 00394813 1 0 -conflict%1:04:00:: 00958896 1 6 -conflict%1:04:01:: 00953559 3 4 -conflict%1:07:00:: 04714679 5 2 -conflict%1:10:00:: 07181935 7 0 -conflict%1:12:00:: 07483439 2 4 -conflict%1:24:00:: 13855377 6 0 -conflict%1:26:00:: 13980845 4 2 -conflict%2:41:11:: 02567147 2 1 -conflict%2:42:00:: 02667228 1 2 -conflict_of_interest%1:26:00:: 13933391 1 0 -conflicting%5:00:00:inconsistent:00 00578234 1 2 -conflicting%5:00:00:opposed:00 01662912 2 0 -confluence%1:04:01:: 00380881 2 0 -confluence%1:04:02:: 00147091 3 0 -confluence%1:15:00:: 08542634 1 0 -confluent%1:17:00:: 09278997 1 0 -confluent%5:00:00:convergent:00 00612383 1 1 -conflux%1:04:00:: 00380881 1 0 -conform%2:30:01:: 00150287 2 1 -conform%2:42:06:: 02662979 1 1 -conform_to%2:30:00:: 00150776 3 1 -conform_to%2:42:00:: 02668956 2 2 -conform_to%2:42:01:: 02667900 1 6 -conformable%5:00:00:compliant:00 00696828 2 0 -conformable%5:00:00:consistent:00 00577122 3 0 -conformable%5:00:00:obedient:00 01612878 1 0 -conformably%4:02:00:: 00023493 1 0 -conformal_projection%1:06:00:: 03090437 1 0 -conformance%1:07:00:: 04713692 1 0 -conformation%1:04:01:: 01203676 3 0 -conformation%1:07:00:: 05064037 2 0 -conformation%1:25:00:: 13898207 1 0 -conformational_entropy%1:07:00:: 05012941 1 0 -conforming%5:00:00:orthodox:00 01690448 1 0 -conformism%1:09:00:: 06211963 1 0 -conformist%1:18:00:: 09957614 1 0 -conformist%3:00:00:: 00610057 1 0 -conformist%5:00:00:orthodox:00 01690448 2 0 -conformity%1:04:00:: 01203676 2 2 -conformity%1:07:01:: 04801763 5 0 -conformity%1:07:02:: 04713692 1 2 -conformity%1:09:00:: 06211963 3 1 -conformity%1:10:01:: 07176804 4 0 -confound%2:31:01:: 00619610 2 0 -confound%2:31:02:: 00621734 1 2 -confounded%5:00:00:perplexed:00 01766133 1 0 -confoundedly%4:02:00:: 00420525 1 0 -confounding%5:00:00:unsupportive:00 02356579 1 0 -confrere%1:18:00:: 09935990 1 1 -confront%2:32:00:: 00812298 2 11 -confront%2:32:03:: 01066433 3 7 -confront%2:33:00:: 01078783 1 24 -confront%2:42:00:: 02742638 4 4 -confrontation%1:04:00:: 01169744 4 0 -confrontation%1:04:01:: 00651670 5 0 -confrontation%1:10:00:: 07181043 3 0 -confrontation%1:10:01:: 07231728 1 1 -confrontation%1:10:02:: 07181713 2 0 -confrontational%3:01:00:: 02701775 1 0 -confucian%1:18:00:: 09955406 1 0 -confucian%3:01:00:: 02924600 1 0 -confucianism%1:09:00:: 05969758 1 0 -confucianist%1:18:00:: 09955406 1 0 -confucius%1:18:00:: 10906822 1 0 -confusable%5:00:00:similar:00 02072341 1 0 -confuse%2:31:01:: 00620673 5 0 -confuse%2:31:02:: 00619610 1 10 -confuse%2:31:03:: 00621734 2 5 -confuse%2:36:00:: 01657254 4 0 -confuse%2:37:00:: 01790739 3 0 -confused%3:00:00:: 00435492 5 1 -confused%5:00:00:disorganized:00 01669246 4 2 -confused%5:00:00:incoherent:00 00465221 2 3 -confused%5:00:00:perplexed:00 01766133 1 5 -confused%5:00:00:unoriented:00 01684133 3 2 -confusedly%4:02:00:: 00294289 1 0 -confusedness%1:09:00:: 05683582 1 0 -confusing%5:00:00:disorienting:00 01685706 1 1 -confusing%5:00:00:unclear:00 00430756 2 1 -confusingly%4:02:00:: 00209227 1 0 -confusion%1:04:00:: 00072473 5 0 -confusion%1:04:01:: 00379754 4 0 -confusion%1:09:00:: 05683582 2 7 -confusion%1:12:00:: 07507912 3 0 -confusion%1:26:01:: 13975752 1 14 -confutable%5:00:00:deniable:00 00721371 1 0 -confutation%1:09:00:: 05826722 2 0 -confutation%1:10:00:: 07201105 1 0 -confutative%5:00:00:deniable:00 00721371 1 0 -confute%2:31:00:: 00667424 1 0 -confuter%1:18:00:: 10510546 1 0 -conga%1:04:00:: 00536516 2 0 -conga%1:10:00:: 07055295 1 0 -conga%2:38:00:: 01896767 1 0 -conga_line%1:14:00:: 08432149 1 0 -conge%1:04:00:: 01141729 2 0 -conge%1:04:01:: 00216607 3 0 -conge%1:06:00:: 03090598 1 0 -conge%2:32:00:: 00898918 1 0 -congeal%2:30:00:: 00442669 1 2 -congealed%5:00:00:solid:01 02260570 1 0 -congealment%1:22:00:: 13451508 1 0 -congee%1:04:00:: 01141729 3 0 -congee%1:04:01:: 00216607 4 0 -congee%1:06:00:: 03090598 2 0 -congee%1:13:00:: 07704205 1 0 -congee%2:32:00:: 00898918 2 0 -congee%2:38:00:: 02008978 1 0 -congelation%1:22:00:: 13451508 1 0 -congenator%1:05:00:: 01328302 1 0 -congener%1:03:00:: 00003993 3 0 -congener%1:05:00:: 01328302 2 0 -congener%1:27:00:: 14800842 1 0 -congeneric%1:05:00:: 01328302 1 0 -congeneric%3:01:00:: 02989167 1 0 -congenerical%3:01:00:: 02989167 1 0 -congenerous%3:01:00:: 02989167 1 0 -congenial%3:00:00:: 00560586 1 0 -congenial%5:00:00:compatible:01 00507789 2 0 -congeniality%1:07:00:: 04655829 2 0 -congeniality%1:07:02:: 04712978 1 0 -congenially%4:02:00:: 00302340 1 0 -congenialness%1:07:02:: 04712978 1 0 -congenital%5:00:00:noninheritable:00 01315844 1 1 -congenital_abnormality%1:26:00:: 14465048 1 0 -congenital_afibrinogenemia%1:26:00:: 14171492 1 0 -congenital_anomaly%1:26:00:: 14465048 1 0 -congenital_defect%1:26:00:: 14465048 1 0 -congenital_disease%1:26:00:: 14151139 1 0 -congenital_disorder%1:26:00:: 14465048 1 0 -congenital_heart_defect%1:26:00:: 14469014 1 0 -congenital_megacolon%1:26:00:: 14156488 1 0 -congenital_pancytopenia%1:26:00:: 14164866 1 0 -conger%1:05:00:: 02527622 1 0 -conger_eel%1:05:00:: 02527622 1 0 -congeries%1:14:00:: 08418103 1 0 -congest%2:35:00:: 01478603 1 0 -congested%5:00:00:full:00 01084486 1 1 -congestion%1:26:00:: 14320394 1 1 -congestion%1:26:01:: 13944747 2 1 -congestive%3:01:00:: 03007354 1 1 -congestive_heart_failure%1:26:00:: 14112719 1 0 -congius%1:23:00:: 13622209 1 0 -conglobate%2:30:00:: 00144694 1 0 -conglobation%1:11:00:: 07375214 2 0 -conglobation%1:25:00:: 13865786 1 0 -conglobe%2:30:00:: 00144694 1 0 -conglomerate%1:14:00:: 08058937 2 0 -conglomerate%1:27:00:: 14863031 1 0 -conglomerate%2:30:00:: 00158804 1 0 -conglomerate%5:00:00:combined:00 01330114 1 0 -conglomeration%1:11:00:: 07375214 3 0 -conglomeration%1:14:00:: 08418103 2 0 -conglomeration%1:25:00:: 13865786 1 0 -conglutinate%2:35:00:: 01221542 2 0 -conglutinate%2:35:01:: 01600191 1 0 -conglutination%1:04:00:: 00382109 2 0 -conglutination%1:22:00:: 13571365 1 0 -congo%1:13:00:: 07934678 4 0 -congo%1:15:00:: 08734385 1 1 -congo%1:15:01:: 08734044 3 0 -congo%1:17:00:: 09252078 2 0 -congo_copal%1:27:00:: 14895498 1 0 -congo_eel%1:05:00:: 01638722 1 0 -congo_franc%1:23:00:: 13677579 1 0 -congo_gum%1:27:00:: 14895498 1 0 -congo_peafowl%1:05:00:: 01803641 1 0 -congo_red%1:27:00:: 14770631 1 0 -congo_river%1:17:00:: 09252078 1 0 -congo_snake%1:05:00:: 01638722 1 0 -congolese%1:18:00:: 09698644 1 0 -congolese%3:01:00:: 03056115 1 0 -congoo_mallee%1:20:00:: 12337131 1 0 -congou%1:13:00:: 07934678 1 0 -congou_tea%1:13:00:: 07934678 1 0 -congratulate%2:32:00:: 00881661 1 5 -congratulate%2:32:01:: 00881998 2 3 -congratulate%2:32:11:: 00883847 4 0 -congratulate%2:37:00:: 01772498 3 1 -congratulation%1:10:00:: 06633896 1 4 -congratulation%1:10:01:: 07140348 2 0 -congratulations%1:10:01:: 06693198 1 1 -congratulatory%5:00:00:felicitous:00 01000093 1 1 -congregant%1:18:00:: 09955517 1 0 -congregate%2:38:00:: 02023600 1 2 -congregating%1:04:00:: 01231686 1 0 -congregation%1:04:00:: 01231686 3 0 -congregation%1:14:00:: 07991364 1 32 -congregation%1:14:01:: 07976181 2 2 -congregation_of_the_inquisition%1:14:00:: 08333639 1 0 -congregational%3:01:00:: 02701922 1 7 -congregational%3:01:02:: 02954799 2 0 -congregational_christian_church%1:14:00:: 08091152 1 0 -congregational_church%1:14:00:: 08090973 1 0 -congregationalism%1:09:00:: 06230613 1 0 -congregationalist%1:18:00:: 09955643 1 0 -congregationalist%3:01:00:: 02954799 1 0 -congress%1:04:01:: 00845523 4 0 -congress%1:14:00:: 08308800 2 1 -congress%1:14:01:: 08161757 1 24 -congress%1:14:02:: 08318691 3 0 -congress_boot%1:06:00:: 03090710 1 0 -congress_gaiter%1:06:00:: 03090710 1 1 -congress_of_industrial_organizations%1:14:00:: 08234298 1 0 -congress_of_racial_equality%1:14:00:: 08308922 1 0 -congress_shoe%1:06:00:: 03090710 1 0 -congressional%3:01:00:: 02981648 1 2 -congressional_district%1:15:00:: 08542884 1 0 -congressional_medal_of_honor%1:10:00:: 06707178 1 0 -congressional_record%1:10:00:: 06508417 1 0 -congressman%1:18:00:: 09955781 1 3 -congresswoman%1:18:00:: 09955781 1 0 -congreve%1:18:00:: 10907103 1 0 -congridae%1:05:00:: 02527498 1 0 -congruence%1:07:00:: 04714156 1 0 -congruent%3:00:00:: 00561600 2 0 -congruent%3:00:04:: 00562116 1 0 -congruity%1:07:00:: 04714156 1 0 -congruous%3:00:00:: 00562116 1 0 -congruous%5:00:00:compatible:01 00507912 2 0 -congruousness%1:07:00:: 04714156 1 0 -conic%1:25:00:: 13872975 1 0 -conic%3:01:00:: 02844728 1 0 -conic_morel%1:20:00:: 13033577 1 0 -conic_projection%1:06:00:: 03090856 1 0 -conic_section%1:25:00:: 13872975 1 0 -conic_verpa%1:20:00:: 13033396 1 0 -conic_waxycap%1:20:00:: 13070875 1 0 -conical%3:01:00:: 02844728 1 0 -conical_buoy%1:10:00:: 07266879 1 0 -conical_projection%1:06:00:: 03090856 1 0 -conically%4:02:00:: 00290527 1 0 -conidiophore%1:20:00:: 11549138 1 0 -conidiospore%1:20:00:: 11549009 1 0 -conidium%1:20:00:: 11549009 1 0 -conifer%1:20:00:: 13108841 1 0 -coniferales%1:20:00:: 11607392 1 0 -coniferophyta%1:20:00:: 11605708 1 0 -coniferophytina%1:20:00:: 11605708 1 0 -coniferopsida%1:20:00:: 11605708 1 0 -coniferous%5:00:00:evergreen:00 00913720 1 0 -coniferous_tree%1:20:00:: 13108841 1 0 -conilurus%1:05:00:: 02334337 1 0 -conima%1:27:00:: 14820641 1 0 -coniogramme%1:20:00:: 13209647 1 0 -coniogramme_japonica%1:20:00:: 13209808 1 0 -conium%1:20:00:: 12935457 1 0 -conium_maculatum%1:20:00:: 12935609 1 0 -conjectural%5:00:00:theoretical:00 00861216 1 0 -conjecturally%4:02:00:: 00020019 1 0 -conjecture%1:09:00:: 05891783 1 1 -conjecture%1:09:01:: 05773923 3 0 -conjecture%1:10:00:: 06782680 2 0 -conjecture%2:31:00:: 00633443 1 1 -conjoin%2:35:00:: 01291069 1 1 -conjoin%2:41:00:: 02488834 2 0 -conjoined%5:00:00:joint:00 02112455 1 1 -conjoined_twin%1:18:00:: 10595012 1 0 -conjoint%5:00:00:joint:00 02112455 1 0 -conjointly%4:02:00:: 00117082 1 0 -conjugal%3:01:00:: 02872066 1 2 -conjugal_family%1:14:00:: 07973487 1 0 -conjugal_right%1:07:00:: 05177897 1 0 -conjugal_visitation%1:07:00:: 05178220 1 0 -conjugal_visitation_right%1:07:00:: 05178220 1 0 -conjugally%4:02:00:: 00499521 1 0 -conjugate%1:27:00:: 14820425 1 22 -conjugate%2:30:00:: 00396513 1 1 -conjugate%2:30:04:: 00574218 3 0 -conjugate%2:32:00:: 00983123 2 0 -conjugate%5:00:00:compound:00 02172377 2 0 -conjugate%5:00:00:united:00 02477211 1 0 -conjugate%5:00:01:bound:03 01059058 4 0 -conjugate%5:00:02:bound:03 01059252 3 0 -conjugate_solution%1:27:00:: 14820425 1 0 -conjugated%5:00:00:united:00 02477211 2 0 -conjugated%5:00:01:bound:03 01059058 3 0 -conjugated%5:00:02:bound:03 01059252 1 5 -conjugated_protein%1:27:00:: 14731135 1 0 -conjugation%1:04:00:: 00847340 5 0 -conjugation%1:04:01:: 00381680 6 0 -conjugation%1:14:01:: 08006741 4 0 -conjugation%1:14:02:: 08006868 3 0 -conjugation%1:24:00:: 13804085 2 0 -conjugation%1:26:00:: 14420954 1 0 -conjunct%3:00:00:: 00565799 1 0 -conjunct%5:00:00:joint:00 02112108 3 0 -conjunct%5:00:00:united:00 02477335 2 0 -conjunction%1:06:00:: 03605915 6 0 -conjunction%1:07:00:: 05048301 1 3 -conjunction%1:10:00:: 06325826 3 1 -conjunction%1:11:00:: 07415167 5 0 -conjunction%1:24:02:: 13799392 4 0 -conjunction%1:26:00:: 14420954 2 1 -conjunctiva%1:08:00:: 05315095 1 0 -conjunctival%3:01:00:: 02702099 1 0 -conjunctival_layer_of_bulb%1:08:00:: 05315382 1 0 -conjunctival_layer_of_eyelids%1:08:00:: 05315612 1 0 -conjunctival_veins%1:08:00:: 05364612 1 0 -conjunctive%1:10:00:: 06325826 1 0 -conjunctive%3:00:00:: 00563648 1 0 -conjunctive%5:00:00:joint:00 02112108 2 0 -conjunctivitis%1:26:00:: 14341432 1 0 -conjunctivitis_arida%1:26:00:: 14538113 1 0 -conjuncture%1:11:00:: 07417298 1 0 -conjuration%1:04:00:: 00099951 3 0 -conjuration%1:09:00:: 05978159 2 0 -conjuration%1:10:00:: 07160116 1 0 -conjure%2:31:00:: 00706975 3 0 -conjure%2:32:03:: 00759657 2 0 -conjure%2:36:00:: 01629958 1 0 -conjure_man%1:18:00:: 10055181 1 0 -conjure_up%2:36:00:: 01629958 1 5 -conjurer%1:18:00:: 10055181 2 0 -conjurer%1:18:01:: 10280674 1 0 -conjuring%1:09:00:: 05978159 1 0 -conjuring_trick%1:04:00:: 00099951 1 0 -conjuror%1:18:00:: 10055181 2 0 -conjuror%1:18:01:: 10280674 1 0 -conjury%1:09:00:: 05978159 1 0 -conk%1:08:00:: 05598868 1 0 -conk%2:29:00:: 00023646 4 0 -conk%2:30:00:: 00358431 3 0 -conk%2:35:00:: 01401371 2 0 -conk%2:38:00:: 01862340 1 0 -conk_out%2:29:00:: 00099517 2 0 -conk_out%2:30:00:: 00434374 1 0 -conker%1:20:00:: 12768682 1 0 -conn%2:38:00:: 01933093 1 0 -conn's_syndrome%1:26:00:: 14305149 1 0 -connaraceae%1:20:00:: 11746224 1 0 -connarus%1:20:00:: 11746419 1 0 -connarus_guianensis%1:20:00:: 11746600 1 0 -connate%3:00:00:: 02483540 1 0 -connate%5:00:00:related:02 01973969 2 0 -connatural%5:00:00:native:03 01034153 2 0 -connatural%5:00:00:similar:00 02072537 1 0 -connect%2:31:00:: 00713167 2 4 -connect%2:32:00:: 01069190 6 1 -connect%2:32:12:: 01069391 4 3 -connect%2:35:00:: 01354673 1 8 -connect%2:35:01:: 01237761 5 1 -connect%2:35:03:: 01421122 10 0 -connect%2:35:07:: 01407568 11 0 -connect%2:41:00:: 02389346 9 0 -connect%2:41:01:: 02389592 8 0 -connect%2:42:02:: 02622234 3 3 -connect%2:42:05:: 02747403 7 0 -connected%3:00:00:: 00566099 2 3 -connected%5:00:00:on:00 01651346 4 0 -connected%5:00:00:related:02 01973311 1 5 -connected%5:00:00:wired:00 02568884 3 0 -connected%5:00:02:on-line:00 01650581 5 0 -connectedness%1:24:00:: 13791389 2 0 -connectedness%1:26:00:: 14419164 1 0 -connecter%1:06:00:: 03091374 1 0 -connecticut%1:15:00:: 09068444 1 3 -connecticut%1:15:01:: 09068805 3 0 -connecticut%1:17:00:: 09252273 2 0 -connecticut_river%1:17:00:: 09252273 1 0 -connecticuter%1:18:00:: 09741904 1 0 -connecting_flight%1:04:00:: 00301443 1 0 -connecting_rod%1:06:00:: 03091044 1 0 -connecting_room%1:06:00:: 03091223 1 0 -connection%1:04:00:: 00145218 9 0 -connection%1:04:01:: 00316989 8 0 -connection%1:06:00:: 03091374 3 4 -connection%1:09:00:: 05763916 5 1 -connection%1:18:00:: 09956035 7 0 -connection%1:18:01:: 09956147 4 2 -connection%1:24:00:: 13791389 1 14 -connection%1:25:00:: 13870805 6 0 -connection%1:26:00:: 14419164 2 11 -connective%1:06:00:: 03091374 2 0 -connective%1:10:00:: 06325826 1 0 -connective%5:00:00:conjunctive:00 00563980 1 2 -connective_tissue%1:08:00:: 05286536 1 1 -connectivity%1:07:00:: 04918053 1 0 -connector%1:06:00:: 03091374 1 0 -connemara_heath%1:20:00:: 12234669 1 0 -connexion%1:04:00:: 00145218 6 0 -connexion%1:04:01:: 00316989 5 0 -connexion%1:06:00:: 03091374 4 0 -connexion%1:09:00:: 05763916 3 0 -connexion%1:24:00:: 13791389 2 0 -connexion%1:25:00:: 13870805 1 0 -conning_tower%1:06:00:: 03091907 2 0 -conning_tower%1:06:01:: 03092053 1 0 -conniption%1:26:00:: 14406303 1 0 -connivance%1:10:00:: 07176962 1 0 -connivance%1:10:01:: 06689125 2 0 -connive%2:31:00:: 00707956 2 0 -connive%2:41:12:: 02585360 1 0 -connive_at%2:41:01:: 02417389 1 0 -conniving%5:00:00:covert:00 01707084 1 0 -conniving%5:00:00:hard:02 01155603 2 0 -connochaetes%1:05:00:: 02421308 1 0 -connoisseur%1:18:00:: 09956387 1 2 -connoisseurship%1:09:00:: 05750027 1 0 -connolly%1:18:00:: 10907236 1 0 -connors%1:18:00:: 10907501 1 0 -connotation%1:09:00:: 05923566 2 2 -connotation%1:10:00:: 06602935 1 3 -connotational%5:00:00:connotative:00 00723395 1 0 -connotative%3:00:00:: 00723163 1 0 -connotative_of%5:00:00:connotative:00 00723395 1 0 -connote%2:32:00:: 00931232 2 0 -connote%2:32:01:: 00929839 1 2 -connubial%3:01:00:: 02872066 1 0 -connubial%4:02:00:: 00499521 1 0 -conocarpus%1:20:00:: 12324756 1 0 -conocarpus_erectus%1:20:00:: 12324906 1 0 -conoclinium%1:20:00:: 11955770 1 0 -conoclinium_coelestinum%1:20:00:: 11955896 1 0 -conodont%1:05:01:: 01476418 2 0 -conodont%1:05:02:: 01476696 1 0 -conodonta%1:05:00:: 01476135 1 0 -conodontophorida%1:05:00:: 01476135 1 0 -conoid%1:25:00:: 13872592 1 0 -conopodium%1:20:00:: 12935982 1 0 -conopodium_denudatum%1:20:00:: 12936155 1 0 -conospermum%1:20:00:: 12216028 1 0 -conoy%1:18:00:: 09653616 1 0 -conquer%2:30:00:: 00462092 1 5 -conquer%2:33:00:: 01114303 3 1 -conquer%2:40:00:: 02272549 2 1 -conquerable%3:00:00:: 00569090 1 0 -conquerable%5:00:00:surmountable:00 02357006 2 0 -conquering%1:04:00:: 00089027 1 0 -conqueror%1:18:00:: 09956578 1 1 -conquest%1:04:00:: 00065216 2 1 -conquest%1:04:01:: 00089027 1 2 -conquest%1:04:02:: 00160532 3 0 -conquistador%1:18:00:: 09956780 1 0 -conrad%1:18:00:: 10907647 1 0 -conrad_aiken%1:18:00:: 10810549 1 0 -conrad_potter_aiken%1:18:00:: 10810549 1 0 -conradina%1:20:00:: 12845732 1 0 -conradina_glabra%1:20:00:: 12845908 1 0 -consanguine%5:00:00:related:01 01971846 1 0 -consanguineal%5:00:00:related:01 01971846 1 0 -consanguineous%5:00:00:related:01 01971846 1 0 -consanguinity%1:24:00:: 13813591 1 0 -conscience%1:07:00:: 04848492 2 6 -conscience%1:12:00:: 07506797 3 1 -conscience%1:16:00:: 09184136 1 12 -conscience-smitten%5:00:00:guilty:00 01322236 1 0 -conscience_money%1:21:00:: 13283187 1 0 -conscienceless%5:00:00:unconscientious:00 02086472 1 0 -conscientious%3:00:00:: 02086115 2 0 -conscientious%5:00:00:careful:00 00310138 1 2 -conscientious_objector%1:18:00:: 09957013 1 3 -conscientiously%4:02:00:: 00178586 1 0 -conscientiousness%1:07:00:: 04848686 1 0 -conscientiousness%1:07:01:: 04672355 2 0 -conscionable%5:00:00:just:00 01370053 1 0 -conscious%3:00:00:: 00570590 2 6 -conscious%5:00:00:aware:00 00190960 3 6 -conscious%5:00:00:intended:00 01337767 1 7 -consciously%4:02:00:: 00242663 1 3 -consciousness%1:09:00:: 05675130 1 20 -consciousness%1:09:01:: 05675905 2 1 -consciousness-altering_drug%1:06:00:: 04017137 1 0 -conscript%1:18:00:: 10028765 1 0 -conscript%2:33:00:: 01098706 1 1 -conscription%1:04:00:: 01157850 1 1 -consecrate%2:32:00:: 00866702 4 0 -consecrate%2:32:01:: 00886978 3 0 -consecrate%2:32:04:: 00887463 2 0 -consecrate%2:41:00:: 02386012 1 0 -consecrate%3:00:00:: 00573225 1 0 -consecrated%3:00:00:: 00573225 1 0 -consecrated%5:00:00:holy:00 02054310 2 0 -consecration%1:04:00:: 01040646 2 0 -consecration%1:04:01:: 01041111 1 0 -consecutive%4:02:00:: 00292349 1 0 -consecutive%5:00:00:continuous:01 00596511 3 0 -consecutive%5:00:00:ordered:00 01667729 2 0 -consecutive%5:00:00:succeeding:00 00127543 1 3 -consecutive_operation%1:22:00:: 13554800 1 0 -consecutively%4:02:00:: 00020142 1 0 -consensual%5:00:00:accordant:00 00553594 1 0 -consensus%1:26:00:: 13971901 1 3 -consent%1:10:00:: 06689667 1 7 -consent%2:32:00:: 00797697 1 6 -consent_decree%1:10:00:: 06540284 1 0 -consentaneous%5:00:00:accordant:00 00553732 1 0 -consentient%5:00:00:accordant:00 00553732 1 0 -consenting%5:00:00:willing:00 02565327 1 0 -consequence%1:07:00:: 05170574 3 3 -consequence%1:11:00:: 07294019 2 4 -consequence%1:19:00:: 11410625 1 18 -consequent%5:00:00:subsequent:00 00122844 1 4 -consequential%5:00:00:important:00 01277753 1 0 -consequentially%4:02:00:: 00294702 1 0 -consequently%4:02:00:: 00062857 1 7 -consequently%4:02:01:: 00294459 2 1 -conservancy%1:04:00:: 00819524 2 0 -conservancy%1:14:00:: 08325530 1 0 -conservation%1:04:00:: 00819274 2 1 -conservation%1:09:00:: 06104073 3 0 -conservation%1:11:00:: 07419599 1 2 -conservation_of_charge%1:09:00:: 06104372 1 0 -conservation_of_electricity%1:09:00:: 06104372 1 0 -conservation_of_energy%1:09:00:: 06104578 1 0 -conservation_of_mass%1:09:00:: 06104844 1 0 -conservation_of_matter%1:09:00:: 06104844 1 0 -conservation_of_momentum%1:09:00:: 06105107 1 0 -conservation_of_parity%1:09:00:: 06105314 1 0 -conservationist%1:18:00:: 10060621 1 0 -conservatism%1:09:00:: 06216160 1 6 -conservative%1:18:00:: 09957156 1 3 -conservative%1:18:01:: 09957523 2 0 -conservative%3:00:00:: 00574422 1 11 -conservative%5:00:00:conventional:01 00607656 4 0 -conservative%5:00:00:middle-class:00 00260780 5 0 -conservative%5:00:00:moderate:00 01532149 3 1 -conservative%5:00:00:right:03 02030312 2 1 -conservative_jew%1:18:00:: 09611548 1 0 -conservative_judaism%1:09:00:: 06234619 2 0 -conservative_judaism%1:14:00:: 08095160 1 0 -conservative_party%1:14:00:: 08258744 1 0 -conservatively%4:02:00:: 00292503 1 1 -conservativism%1:09:00:: 06216160 1 0 -conservativist%1:18:00:: 09957156 1 0 -conservatoire%1:06:00:: 03092314 1 0 -conservator%1:18:00:: 09983889 1 0 -conservator%1:18:01:: 09611722 2 0 -conservator-ward_relation%1:24:00:: 13839120 1 0 -conservatory%1:06:00:: 03092166 3 0 -conservatory%1:06:01:: 03092314 2 0 -conservatory%1:14:00:: 08287436 1 0 -conserve%1:13:00:: 07642471 1 0 -conserve%2:30:00:: 00212049 4 0 -conserve%2:40:00:: 02269143 3 0 -conserve%2:40:02:: 02280132 2 0 -conserve%2:42:00:: 02682567 1 0 -conserved%5:00:00:preserved:01 00737432 1 0 -conserves%1:13:00:: 07642471 1 0 -consider%2:31:00:: 00690614 1 107 -consider%2:31:01:: 00734054 3 37 -consider%2:31:05:: 00691312 9 0 -consider%2:31:08:: 00689344 6 2 -consider%2:32:00:: 00950431 4 27 -consider%2:32:02:: 00813044 5 15 -consider%2:39:00:: 02166460 2 51 -consider%2:39:04:: 02133185 7 0 -consider%2:39:08:: 02130300 8 0 -considerable%3:00:00:: 00624026 1 32 -considerably%4:02:01:: 00014285 1 19 -considerate%3:00:00:: 00638981 1 2 -considerately%4:02:00:: 00182775 1 2 -considerateness%1:07:00:: 04841358 1 0 -consideration%1:04:02:: 01229793 6 0 -consideration%1:07:00:: 04841358 4 1 -consideration%1:09:00:: 05784831 1 17 -consideration%1:09:01:: 05822746 2 11 -consideration%1:10:00:: 07138915 3 1 -consideration%1:21:00:: 13323313 5 0 -considered%5:00:00:well-advised:00 00068180 1 0 -consign%2:40:00:: 02347637 2 1 -consign%2:40:01:: 02348324 1 3 -consign%2:40:02:: 02348459 3 0 -consignee%1:18:00:: 09958447 1 0 -consigner%1:18:00:: 09958569 1 0 -consignment%1:04:00:: 01165692 2 0 -consignment%1:04:01:: 00317917 3 0 -consignment%1:06:00:: 02964389 1 0 -consignor%1:18:00:: 09958569 1 0 -consist%2:42:00:: 02653381 1 4 -consist%2:42:01:: 02633356 4 0 -consist%2:42:02:: 02658050 3 0 -consist%2:42:04:: 02750854 2 0 -consistence%1:07:00:: 04934546 2 0 -consistence%1:07:02:: 04745932 1 1 -consistency%1:07:00:: 04934546 1 2 -consistency%1:07:01:: 04785195 4 0 -consistency%1:07:02:: 04745932 2 2 -consistency%1:26:00:: 14420780 3 0 -consistent%3:00:00:: 00576680 1 7 -consistent%3:00:01:: 00464513 3 0 -consistent%3:00:04:: 01867996 2 0 -consistent%5:00:00:homogeneous:00 01200095 4 0 -consistently%4:02:00:: 00120474 1 8 -consistory%1:14:00:: 08331121 1 0 -consociate%2:41:00:: 02470175 1 0 -consolable%3:00:00:: 01232204 1 0 -consolation%1:04:00:: 01211667 2 0 -consolation%1:12:00:: 07492655 1 3 -consolatory%5:00:00:reassuring:00 00197319 1 0 -console%1:06:00:: 02933340 4 0 -console%1:06:01:: 03092476 3 0 -console%1:06:02:: 03092656 2 0 -console%1:06:03:: 03092883 1 0 -console%2:37:00:: 01814815 1 1 -console_table%1:06:00:: 03092883 1 0 -consolida%1:20:00:: 11732309 1 0 -consolida_ambigua%1:20:00:: 11732567 1 0 -consolidate%2:30:00:: 00242580 1 3 -consolidate%2:30:01:: 00242747 3 0 -consolidate%2:30:02:: 00165450 2 1 -consolidate%2:30:03:: 00165618 5 0 -consolidate%2:30:04:: 00165789 4 0 -consolidated%5:00:00:compact:00 00502730 2 0 -consolidated%5:00:00:united:00 02476637 1 1 -consolidation%1:04:00:: 01237415 2 1 -consolidation%1:11:00:: 07374633 1 1 -consolidation%1:17:00:: 09252586 3 0 -consolidative%5:00:00:centralizing:00 00334940 2 0 -consolidative%5:00:00:integrative:00 01331540 1 0 -consoling%5:00:00:reassuring:00 00197319 1 1 -consolingly%4:02:00:: 00287399 1 0 -consomme%1:13:00:: 07584110 1 0 -consonance%1:07:00:: 04984351 2 0 -consonance%1:10:00:: 07097548 1 0 -consonant%1:10:00:: 07115021 1 4 -consonant%1:10:01:: 07115381 2 2 -consonant%5:00:00:consistent:00 00577122 2 0 -consonant%5:00:00:harmonious:00 01163320 1 0 -consonant_rhyme%1:10:00:: 07097548 1 0 -consonant_system%1:10:00:: 07112942 1 2 -consonantal%3:00:02:: 02287636 1 4 -consonantal%3:01:00:: 02702209 2 0 -consonantal_system%1:10:00:: 07112942 1 5 -consonate%2:39:00:: 02184163 1 0 -consort%1:14:00:: 08188814 2 0 -consort%1:18:00:: 09958724 1 0 -consort%2:38:00:: 01927747 3 0 -consort%2:41:12:: 02589245 1 2 -consort%2:42:00:: 02700104 2 0 -consortium%1:14:00:: 08236438 1 0 -conspecific%1:05:00:: 01314026 1 0 -conspecific%3:01:00:: 02989459 1 0 -conspectus%1:10:00:: 06468328 1 0 -conspicuous%3:00:00:: 00579084 1 2 -conspicuous%5:00:00:unconcealed:00 02090567 2 0 -conspicuous_consumption%1:22:00:: 13451665 1 0 -conspicuously%4:02:00:: 00370920 1 2 -conspicuously%4:02:01:: 00208390 2 2 -conspicuousness%1:07:00:: 04706087 2 0 -conspicuousness%1:26:00:: 14434219 1 0 -conspiracy%1:09:00:: 05908882 2 3 -conspiracy%1:10:00:: 06524935 1 3 -conspiracy%1:14:00:: 08251303 3 2 -conspiracy_of_silence%1:10:00:: 06525406 1 0 -conspirative%3:01:00:: 02919275 1 0 -conspirator%1:18:00:: 09958892 1 1 -conspiratorial%3:01:00:: 02919275 1 0 -conspire%2:31:00:: 00706975 1 3 -conspire%2:31:01:: 00707624 2 2 -constable%1:18:00:: 09959142 1 1 -constable%1:18:01:: 09959258 3 0 -constable%1:18:02:: 10907851 2 0 -constabulary%1:14:00:: 08209687 1 0 -constance%1:14:00:: 08316965 2 0 -constance%1:17:00:: 09252766 1 0 -constancy%1:07:00:: 04738641 1 1 -constancy%1:07:02:: 04877264 3 0 -constancy%1:09:00:: 05708818 2 0 -constant%1:09:00:: 05858936 1 4 -constant%1:23:00:: 13585429 2 0 -constant%3:00:00:: 00583239 2 2 -constant%5:00:00:continuous:01 00595299 3 0 -constant%5:00:00:invariable:00 02506029 1 14 -constant-width_font%1:10:00:: 06825996 1 0 -constant_lambert%1:18:00:: 11115131 1 0 -constant_of_gravitation%1:23:00:: 13590327 1 0 -constant_of_proportionality%1:23:00:: 13593634 1 0 -constant_quantity%1:09:00:: 05858936 1 0 -constantan%1:27:00:: 14820747 1 0 -constantin_brancusi%1:18:00:: 10862676 1 0 -constantina%1:15:00:: 08814664 1 0 -constantine%1:15:00:: 08706823 2 0 -constantine%1:18:00:: 10907962 1 0 -constantine_i%1:18:00:: 10907962 1 0 -constantine_the_great%1:18:00:: 10907962 1 0 -constantinople%1:14:00:: 08313790 5 0 -constantinople%1:14:01:: 08314327 4 0 -constantinople%1:14:02:: 08314501 3 0 -constantinople%1:14:03:: 08314901 2 0 -constantinople%1:15:00:: 09041785 1 0 -constantly%4:02:01:: 00020280 2 1 -constantly%4:02:03:: 00020476 1 2 -constatation%1:09:00:: 05893512 1 1 -constellate%2:30:00:: 00142055 3 0 -constellate%2:38:00:: 02025009 2 0 -constellate%2:42:00:: 02689882 1 0 -constellation%1:09:00:: 05731779 1 1 -constellation%1:17:00:: 09252970 2 0 -consternate%2:37:00:: 01791053 1 0 -consternation%1:12:00:: 07519773 1 2 -constipate%2:29:00:: 00074558 2 0 -constipate%2:30:01:: 00441007 1 0 -constipated%3:00:00:: 00638253 1 0 -constipation%1:04:00:: 00272878 2 0 -constipation%1:26:00:: 14371161 1 0 -constituency%1:14:00:: 08238156 1 0 -constituent%1:06:00:: 03081021 1 7 -constituent%1:09:00:: 05868954 5 0 -constituent%1:10:00:: 06312966 4 0 -constituent%1:18:00:: 09611884 2 2 -constituent%1:24:00:: 13809207 3 0 -constituent%5:00:00:essential:00 00901345 1 0 -constitute%2:36:00:: 01647229 4 0 -constitute%2:41:00:: 02396205 2 1 -constitute%2:42:00:: 02620587 1 31 -constitute%2:42:03:: 02621395 3 0 -constituted%3:00:00:: 01635146 1 0 -constitution%1:04:00:: 00237078 2 1 -constitution%1:06:00:: 03093018 5 0 -constitution%1:07:00:: 04933544 4 0 -constitution%1:10:00:: 06533648 1 2 -constitution%1:10:01:: 06534132 3 0 -constitution_of_the_united_states%1:10:00:: 06534132 1 0 -constitution_state%1:15:00:: 09068444 1 0 -constitutional%1:04:00:: 00284544 1 0 -constitutional%3:00:00:: 00179925 2 0 -constitutional%3:01:00:: 02702332 1 0 -constitutional%5:00:00:essential:00 00901345 4 0 -constitutional%5:00:00:intrinsic:00 01348528 3 0 -constitutional_convention%1:14:00:: 08309226 1 0 -constitutional_union_party%1:14:00:: 08258974 1 0 -constitutionalise%2:30:00:: 00568661 1 0 -constitutionalism%1:09:00:: 06216948 2 0 -constitutionalism%1:14:00:: 08361172 1 0 -constitutionalist%1:18:00:: 09959387 1 0 -constitutionalize%2:30:00:: 00568661 3 0 -constitutionalize%2:38:00:: 01882479 2 0 -constitutionalize%2:40:00:: 02353201 1 0 -constitutionally%4:02:00:: 00122124 1 0 -constitutive%5:00:00:essential:00 00901345 1 0 -constrain%2:30:00:: 00418765 2 0 -constrain%2:35:00:: 01301051 1 0 -constrained%5:00:00:affected:01 00073761 1 0 -constrainedly%4:02:00:: 00499628 1 0 -constraining%5:00:00:restrictive:00 02004023 1 1 -constraint%1:04:00:: 01149621 3 0 -constraint%1:06:00:: 04081844 2 0 -constraint%1:26:00:: 13998781 1 0 -constrict%2:30:00:: 00304422 2 0 -constrict%2:35:00:: 01387786 1 1 -constricted%3:00:00:: 01448456 2 0 -constricted%5:00:00:tense:02 02405038 1 1 -constricting%5:00:00:narrow:00 02562235 1 0 -constriction%1:04:00:: 01149911 4 0 -constriction%1:09:00:: 05721728 3 0 -constriction%1:11:00:: 07313518 2 0 -constriction%1:25:00:: 13912992 1 1 -constrictive%5:00:00:narrow:00 02562235 1 0 -constrictive%5:00:00:restrictive:00 02004023 2 0 -constrictor%1:05:00:: 01741562 1 0 -constrictor_constrictor%1:05:00:: 01742172 1 0 -constringe%2:30:00:: 00304422 1 0 -construal%1:10:00:: 06742630 1 0 -construct%1:09:00:: 05835747 1 0 -construct%2:31:00:: 00634090 6 0 -construct%2:35:00:: 01583142 3 2 -construct%2:36:00:: 01654628 1 28 -construct%2:36:01:: 01653442 2 5 -construct%2:36:02:: 01757546 5 0 -construct%2:36:03:: 01757721 4 0 -construction%1:04:00:: 00911048 1 25 -construction%1:04:01:: 01104637 7 0 -construction%1:04:02:: 00873381 5 1 -construction%1:06:00:: 04341686 4 1 -construction%1:09:00:: 05771836 3 2 -construction%1:10:00:: 07173959 6 0 -construction%1:10:01:: 06313651 2 5 -construction_industry%1:14:00:: 08067683 1 0 -construction_paper%1:27:00:: 14820933 1 0 -construction_worker%1:18:00:: 09959527 1 0 -constructive%3:00:00:: 00584820 1 5 -constructive%5:00:00:positive:01 01818077 2 0 -constructive-metabolic%5:00:00:anabolic:00 00107868 1 0 -constructive_breach%1:04:00:: 00069444 1 0 -constructive_eviction%1:04:00:: 01194904 1 0 -constructive_fraud%1:04:00:: 00777806 1 0 -constructive_metabolism%1:22:00:: 13430495 1 0 -constructive_possession%1:04:00:: 00810026 1 0 -constructive_trust%1:21:00:: 13361962 1 0 -constructively%4:02:00:: 00295006 1 2 -constructiveness%1:07:00:: 05165745 1 0 -constructivism%1:14:00:: 08465776 1 0 -constructivist%1:18:00:: 09959658 1 0 -constructor%1:18:00:: 09878275 1 0 -construe%2:31:00:: 00623151 1 5 -construe_with%2:42:00:: 02660819 1 0 -consubstantial%3:01:00:: 02702473 1 0 -consubstantiate%2:30:00:: 00243572 1 0 -consubstantiate%2:30:01:: 00243379 2 0 -consubstantiation%1:09:00:: 06188292 1 0 -consuetude%1:04:00:: 00413795 1 0 -consuetudinal%1:10:00:: 06421844 1 0 -consuetudinary%1:10:00:: 06421844 1 0 -consul%1:18:00:: 09959797 1 0 -consular%3:01:00:: 03056304 1 0 -consulate%1:06:00:: 03093427 1 0 -consulship%1:04:00:: 00590913 1 0 -consult%2:32:00:: 00876442 4 0 -consult%2:32:01:: 00877083 2 4 -consult%2:32:02:: 00877559 1 15 -consult%2:32:05:: 00876665 3 2 -consultancy%1:04:00:: 00631712 1 0 -consultant%1:18:00:: 09774266 1 3 -consultation%1:04:00:: 01264050 3 0 -consultation%1:10:00:: 07143624 1 2 -consultation%1:10:01:: 07143137 2 2 -consultative%5:00:00:informative:00 01304802 1 0 -consultatory%5:00:00:informative:00 01304802 1 0 -consulting_company%1:14:00:: 08062464 1 0 -consulting_firm%1:14:00:: 08062464 1 1 -consulting_service%1:04:00:: 00577749 1 0 -consultive%5:00:00:informative:00 01304802 1 0 -consumable%5:00:00:expendable:00 00932829 1 0 -consume%2:31:00:: 00600903 6 0 -consume%2:34:00:: 01156834 2 3 -consume%2:34:01:: 01157517 5 0 -consume%2:34:02:: 01158181 3 2 -consume%2:34:03:: 01197014 1 3 -consume%2:35:00:: 01565921 4 1 -consumer%1:18:00:: 09612848 1 10 -consumer_credit%1:21:00:: 13374426 1 0 -consumer_durables%1:06:00:: 03257877 1 0 -consumer_finance_company%1:14:00:: 08421100 1 0 -consumer_goods%1:06:00:: 03093574 1 0 -consumer_loan%1:21:00:: 13399782 1 0 -consumer_price_index%1:10:00:: 06641654 1 0 -consumer_research%1:04:00:: 00640721 1 0 -consumerism%1:04:00:: 00799409 2 0 -consumerism%1:09:00:: 05995220 1 0 -consuming%5:00:00:intense:00 01511152 1 0 -consummate%2:36:00:: 01641632 2 1 -consummate%2:36:01:: 01641751 1 2 -consummate%5:00:00:perfect:00 01750386 2 0 -consummate%5:00:00:skilled:00 02226979 1 0 -consummate%5:00:00:unmitigated:00 01520091 3 0 -consummated%3:00:00:: 00551806 1 1 -consummation%1:04:00:: 00061598 2 0 -consummation%1:04:01:: 00061792 1 0 -consumption%1:04:00:: 00356367 4 0 -consumption%1:04:01:: 00838098 1 2 -consumption%1:22:00:: 13451804 3 0 -consumption%1:26:00:: 14144064 2 0 -consumption_weed%1:20:00:: 11938261 1 0 -consumptive%1:18:00:: 09960001 1 0 -consumptive%3:00:00:: 01867502 1 3 -consumptive%5:00:00:ill:01 02543436 2 0 -contact%1:04:00:: 00124880 2 4 -contact%1:04:02:: 00039297 1 29 -contact%1:06:00:: 03093792 7 1 -contact%1:06:01:: 03094159 9 0 -contact%1:10:00:: 06261260 6 1 -contact%1:10:01:: 07279285 8 0 -contact%1:11:00:: 07339329 4 2 -contact%1:18:00:: 09960117 5 1 -contact%1:26:00:: 14419510 3 2 -contact%2:32:00:: 00743344 1 10 -contact%2:35:03:: 01205696 2 0 -contact_action%1:22:00:: 13444131 1 0 -contact_arm%1:06:00:: 04593866 1 0 -contact_dermatitis%1:26:00:: 14223074 1 0 -contact_lens%1:06:00:: 03094159 1 0 -contact_print%1:06:00:: 03094347 1 0 -contact_sport%1:04:00:: 00433458 1 1 -contadino%1:18:00:: 09613118 1 0 -contagion%1:10:00:: 06282383 3 0 -contagion%1:11:00:: 07360647 2 0 -contagion%1:26:00:: 14122235 1 0 -contagious%5:00:01:infectious:00 01303042 2 0 -contagious%5:00:02:infectious:00 01303298 1 0 -contagious_abortion%1:26:00:: 14261508 1 0 -contagious_disease%1:26:00:: 14122235 1 0 -contagiously%4:02:00:: 00302477 1 0 -contain%2:33:00:: 01131473 6 0 -contain%2:41:00:: 02510337 3 2 -contain%2:42:00:: 02629535 1 111 -contain%2:42:06:: 02747287 4 0 -contain%2:42:13:: 02700867 2 34 -contain%2:42:14:: 02701210 5 0 -contained%5:00:00:controlled:00 00599005 1 0 -container%1:06:00:: 03094503 1 5 -container_ship%1:06:00:: 03095699 1 0 -container_vessel%1:06:00:: 03095699 1 0 -containerful%1:23:00:: 13756125 1 0 -containerise%2:35:00:: 01482744 1 0 -containerize%2:35:00:: 01482744 1 0 -containership%1:06:00:: 03095699 1 0 -containment%1:04:00:: 01147451 3 0 -containment%1:06:00:: 03095965 2 0 -containment%1:09:00:: 05986948 1 0 -contaminant%1:27:00:: 14821984 1 0 -contaminate%2:30:00:: 00492706 1 4 -contaminate%2:30:01:: 00493259 2 1 -contaminated%3:00:00:: 01909491 1 0 -contaminated%5:00:00:impure:02 01908889 2 0 -contaminating%3:00:02:: 00426608 1 0 -contaminating%5:00:00:infectious:00 01303449 2 0 -contamination%1:04:00:: 00276987 3 0 -contamination%1:26:00:: 14487731 1 2 -contamination%1:27:00:: 14821984 2 0 -contaminative%5:00:00:septic:00 02114483 1 0 -conte_alessandro_giuseppe_antonio_anastasio_volta%1:18:00:: 11368368 1 0 -conte_alessandro_volta%1:18:00:: 11368368 1 0 -contemn%2:37:00:: 01774799 1 0 -contemplate%2:31:00:: 00704388 3 5 -contemplate%2:31:01:: 00630380 4 1 -contemplate%2:31:02:: 00703875 2 7 -contemplate%2:39:00:: 02164825 1 8 -contemplation%1:04:01:: 00878926 1 3 -contemplation%1:09:00:: 05785508 2 2 -contemplative%1:18:00:: 09960315 1 0 -contemplative%5:00:00:thoughtful:00 02419434 1 1 -contemplativeness%1:07:00:: 04660805 1 0 -contemporaneity%1:07:00:: 05050668 1 0 -contemporaneity%1:07:02:: 05048948 2 0 -contemporaneous%5:00:01:synchronous:00 02378191 2 0 -contemporaneous%5:00:02:synchronous:00 02378872 1 0 -contemporaneously%4:02:00:: 00295176 1 0 -contemporaneousness%1:07:00:: 05050668 1 0 -contemporaneousness%1:07:02:: 05048948 2 0 -contemporaries%1:14:00:: 08369406 1 1 -contemporary%1:18:00:: 09960417 1 3 -contemporary%5:00:00:current:00 00667079 2 5 -contemporary%5:00:00:modern:00 01536094 1 10 -contemporary%5:00:00:synchronous:00 02378872 3 1 -contemporary_world%1:28:00:: 15120528 1 0 -contemporise%2:31:00:: 00735866 2 0 -contemporise%2:42:00:: 02739254 1 0 -contemporize%2:31:00:: 00735866 2 0 -contemporize%2:42:00:: 02739254 1 0 -contempt%1:04:00:: 01180200 4 0 -contempt%1:07:00:: 04915687 2 2 -contempt%1:10:00:: 06715927 3 0 -contempt%1:12:00:: 07502980 1 7 -contempt_of_congress%1:04:00:: 01180398 1 0 -contempt_of_court%1:04:00:: 01180557 1 0 -contemptibility%1:07:00:: 04807971 1 0 -contemptible%3:00:00:: 00904548 1 1 -contemptibly%4:02:00:: 00080445 1 0 -contemptuous%5:00:00:disrespectful:00 01995288 1 2 -contemptuously%4:02:00:: 00080534 1 1 -contemptuousness%1:07:00:: 04888510 1 0 -contend%2:32:00:: 00869596 3 2 -contend%2:32:01:: 00773432 2 3 -contend%2:32:02:: 00756898 1 10 -contend%2:33:00:: 01072262 5 1 -contend%2:33:01:: 01090335 6 0 -contend%2:41:00:: 02587532 4 1 -contender%1:18:00:: 10533013 1 0 -content%1:06:00:: 04347225 7 0 -content%1:09:00:: 05809192 5 2 -content%1:10:00:: 06598915 2 8 -content%1:14:00:: 07955057 1 12 -content%1:23:00:: 13779374 4 2 -content%1:24:00:: 13816521 3 3 -content%1:26:00:: 14412882 6 1 -content%2:34:00:: 01194238 1 3 -content%2:37:00:: 01816844 2 2 -content%3:00:00:: 00588797 1 0 -content_word%1:10:00:: 06289250 1 0 -contented%3:00:00:: 00588797 1 3 -contentedly%4:02:00:: 00238169 1 1 -contentedness%1:26:00:: 14412882 1 0 -contention%1:04:00:: 01168569 3 0 -contention%1:10:00:: 07183151 2 1 -contention%1:10:02:: 06731378 1 5 -contentious%5:00:00:argumentative:00 00603804 1 0 -contentious%5:00:00:controversial:00 00602293 2 0 -contentiousness%1:07:00:: 04643979 1 0 -contentment%1:12:00:: 07531105 1 0 -contents%1:10:00:: 06489659 1 0 -conterminous%5:00:00:commensurate:00 00481463 3 0 -conterminous%5:00:00:connected:00 00566961 1 0 -conterminous%5:00:01:connected:00 00566342 2 0 -contest%1:04:00:: 01168961 2 1 -contest%1:11:00:: 07456188 1 8 -contest%2:32:00:: 00869596 1 3 -contestable%3:00:00:: 00590390 1 0 -contestant%1:18:00:: 09613191 1 1 -contestant%1:18:01:: 10018021 2 0 -contestation%1:10:00:: 07183151 1 0 -contested%3:44:00:: 03148333 1 0 -contestee%1:18:00:: 09612131 1 0 -contester%1:18:00:: 09612291 1 0 -context%1:10:00:: 06284898 1 14 -context%1:26:00:: 14512817 2 4 -context_of_use%1:10:00:: 06284898 1 0 -contextual%3:01:00:: 03002190 1 0 -contextual_definition%1:10:00:: 06744663 1 0 -contextualism%1:09:00:: 05959407 1 0 -contextually%4:02:00:: 00510852 1 0 -contiguity%1:07:00:: 05085991 1 0 -contiguous%5:00:00:close:01 00449079 1 1 -contiguous%5:00:00:connected:00 00566961 2 0 -contiguous%5:00:01:connected:00 00566342 3 0 -contiguousness%1:07:00:: 05085991 1 0 -continence%1:07:00:: 04882813 1 1 -continence%1:07:02:: 04884177 2 0 -continency%1:07:00:: 04882813 1 0 -continent%1:15:00:: 08696737 2 2 -continent%1:17:00:: 09254614 1 5 -continent%3:00:00:: 00591817 1 0 -continent%5:00:00:chaste:00 00360950 2 0 -continent-wide%5:00:00:continental:00 01567203 1 0 -continental%3:00:00:: 01566916 4 0 -continental%3:01:00:: 02886090 3 0 -continental%3:01:01:: 02886263 1 3 -continental%3:01:02:: 02886406 2 0 -continental_army%1:14:00:: 08394811 1 0 -continental_breakfast%1:13:00:: 07574780 1 0 -continental_congress%1:14:00:: 08318423 1 0 -continental_divide%1:15:00:: 08679562 1 0 -continental_drift%1:19:00:: 11434448 1 0 -continental_glacier%1:17:00:: 09255070 1 0 -continental_plan%1:21:00:: 13416106 1 0 -continental_quilt%1:06:00:: 03266749 1 0 -continental_shelf%1:17:00:: 09255207 1 0 -continental_slope%1:17:00:: 09255343 1 0 -contingence%1:11:00:: 07290761 1 0 -contingency%1:11:00:: 07290761 1 1 -contingency%1:26:00:: 14001973 2 0 -contingency_fee%1:21:00:: 13321081 1 0 -contingency_procedure%1:10:00:: 06583354 1 0 -contingent%1:14:00:: 08404549 2 0 -contingent%1:14:01:: 07976420 1 1 -contingent%5:00:00:conditional:00 00555859 2 0 -contingent%5:00:00:possible:00 01822411 1 0 -contingent%5:00:00:uncertain:03 00341933 3 0 -contingent_on%5:00:00:conditional:00 00555859 1 0 -contingent_probability%1:07:00:: 05092236 1 0 -contingent_upon%5:00:00:conditional:00 00555859 1 0 -continual%3:00:00:: 00592222 1 4 -continual%5:00:00:continuous:01 00595863 2 0 -continually%4:02:01:: 00088931 1 21 -continuance%1:04:00:: 01017987 1 2 -continuance%1:28:00:: 15133488 3 0 -continuance%1:28:02:: 15133621 2 0 -continuant%1:10:00:: 07118367 1 0 -continuant%5:00:00:soft:03 01157179 1 0 -continuant_consonant%1:10:00:: 07118367 1 0 -continuation%1:04:00:: 01017987 1 2 -continuation%1:07:00:: 05051896 4 0 -continuation%1:09:00:: 06250208 3 0 -continuation%1:10:00:: 06399503 2 0 -continuative%1:10:00:: 06325826 1 0 -continue%2:30:10:: 00118523 10 0 -continue%2:32:00:: 00781000 2 39 -continue%2:38:00:: 01995549 4 5 -continue%2:41:00:: 02410175 5 2 -continue%2:42:00:: 02679899 3 22 -continue%2:42:01:: 02684924 1 146 -continue%2:42:06:: 02687916 9 0 -continue%2:42:10:: 02727462 8 0 -continue%2:42:11:: 02747709 7 0 -continue%2:42:12:: 02747922 6 1 -continued%3:00:00:: 00597758 1 12 -continued_fraction%1:23:00:: 13736550 1 0 -continuing%5:00:00:continued:00 00597988 1 7 -continuing%5:00:00:long:02 01438963 2 0 -continuing_education%1:04:00:: 00884311 1 0 -continuing_trespass%1:04:00:: 00734783 1 0 -continuity%1:07:00:: 05054130 3 0 -continuity%1:10:00:: 07010393 2 0 -continuity%1:26:00:: 14422035 1 12 -continuity_army_council%1:14:00:: 08019281 1 0 -continuity_irish_republican_army%1:14:00:: 08019281 1 0 -continuo%1:10:00:: 07032556 1 0 -continuous%3:00:01:: 00594413 1 16 -continuous%3:00:02:: 00597424 2 4 -continuous_creation_theory%1:09:00:: 05888572 1 0 -continuous_receiver_watch%1:04:00:: 00881257 1 0 -continuous_tense%1:24:00:: 13805734 1 0 -continuously%4:02:00:: 00191656 1 6 -continuously%4:02:01:: 00282858 2 4 -continuousness%1:07:00:: 05052587 1 0 -continuum%1:28:00:: 15123754 1 2 -conto%1:23:00:: 13676285 1 0 -contopus%1:05:00:: 01549314 1 0 -contopus_sordidulus%1:05:00:: 01549641 1 0 -contopus_virens%1:05:00:: 01549430 1 0 -contort%2:35:00:: 01350699 1 0 -contorted%5:00:02:crooked:01 02312719 1 0 -contortion%1:04:00:: 00404726 1 3 -contortion%1:25:00:: 13885370 2 2 -contortionist%1:18:00:: 09960545 1 0 -contour%1:07:00:: 05064037 2 2 -contour%1:09:00:: 05851517 3 0 -contour%1:10:00:: 06801580 1 6 -contour%2:36:00:: 01689752 1 0 -contour_feather%1:05:00:: 01897536 1 0 -contour_language%1:10:00:: 06905141 1 1 -contour_line%1:10:00:: 06801580 1 0 -contour_map%1:06:00:: 03096142 1 0 -contour_sheet%1:06:00:: 03353467 1 0 -contra%1:18:00:: 09612447 1 0 -contra_danse%1:04:00:: 00539121 1 0 -contra_danse%2:38:00:: 01896295 1 0 -contraband%1:06:00:: 03096273 1 0 -contraband%5:00:00:illegal:00 01402580 1 1 -contrabandist%1:18:00:: 10615334 1 0 -contrabass%1:06:00:: 02803934 1 1 -contrabass%5:00:00:low:03 01216145 1 0 -contrabassoon%1:06:00:: 03096439 1 0 -contraception%1:04:00:: 00852181 1 4 -contraceptive%1:06:00:: 03096593 1 4 -contraceptive%5:00:00:protective:00 01887819 1 0 -contraceptive_device%1:06:00:: 03096593 1 1 -contraceptive_diaphragm%1:06:00:: 03189461 1 0 -contraceptive_method%1:04:00:: 00852181 1 0 -contraceptive_pill%1:06:00:: 03936895 1 0 -contraclockwise%3:00:00:: 00442057 1 0 -contract%1:04:01:: 00491366 3 0 -contract%1:10:00:: 06520944 1 19 -contract%1:10:01:: 06737394 2 2 -contract%2:29:00:: 00087736 4 2 -contract%2:30:00:: 00305109 8 0 -contract%2:30:04:: 00240571 5 1 -contract%2:30:05:: 00243900 9 0 -contract%2:30:07:: 00365188 7 0 -contract%2:32:00:: 00888786 1 8 -contract%2:35:00:: 01279474 6 0 -contract%2:35:04:: 01387786 3 2 -contract%2:41:00:: 02409941 2 3 -contract_bridge%1:04:00:: 00491366 1 0 -contract_in%2:32:00:: 00798249 1 0 -contract_killing%1:04:00:: 00221480 1 0 -contract_law%1:09:00:: 06162042 1 0 -contract_of_adhesion%1:10:00:: 06521878 1 0 -contract_of_hazard%1:10:00:: 06528403 1 0 -contract_offer%1:10:00:: 07161613 1 0 -contract_out%2:32:00:: 00798402 2 0 -contract_out%2:41:00:: 02410719 1 0 -contract_under_seal%1:10:00:: 06524278 1 0 -contractable%5:00:00:infectious:00 01303042 1 0 -contracted%3:00:00:: 00554478 1 0 -contractile%5:00:00:contracted:00 00554624 1 0 -contractile_organ%1:08:00:: 05289601 1 0 -contractility%1:07:00:: 05201813 1 0 -contracting%1:04:00:: 00077981 1 0 -contraction%1:04:00:: 00365471 4 0 -contraction%1:04:01:: 00369802 1 1 -contraction%1:10:00:: 06289472 3 0 -contraction%1:11:02:: 07313241 2 0 -contractor%1:08:00:: 05289601 4 0 -contractor%1:18:00:: 09960688 1 5 -contractor%1:18:01:: 09960891 3 0 -contractor%1:18:02:: 09961012 2 0 -contractual%3:01:00:: 02702656 1 4 -contractually%4:02:00:: 00080768 1 0 -contracture%1:04:00:: 00369399 1 0 -contradance%1:04:00:: 00539121 1 0 -contradance%2:38:00:: 01896295 1 0 -contradict%2:31:00:: 00666886 4 0 -contradict%2:32:00:: 00823436 2 1 -contradict%2:32:01:: 00776059 3 0 -contradict%2:42:00:: 02663141 1 5 -contradiction%1:10:00:: 07206596 3 0 -contradiction%1:10:01:: 07206887 2 1 -contradiction%1:24:00:: 13857676 1 7 -contradiction_in_terms%1:10:00:: 07206887 1 0 -contradictorily%4:02:00:: 00141146 1 1 -contradictoriness%1:24:00:: 13857486 1 0 -contradictory%1:24:00:: 13783259 1 0 -contradictory%5:00:00:antonymous:00 02382144 1 1 -contradictory%5:00:00:incompatible:01 00508750 4 0 -contradictory%5:00:00:inconsistent:00 00578234 3 0 -contradictory%5:00:00:unsupportive:00 02356579 2 0 -contradistinction%1:09:00:: 05748614 1 1 -contradistinguish%2:31:00:: 00661584 1 0 -contrafagotto%1:06:00:: 03096439 1 0 -contrail%1:17:00:: 09255519 1 0 -contraindicate%2:32:00:: 00928476 1 0 -contraindication%1:10:00:: 06797947 1 0 -contralateral%3:00:00:: 02591787 1 0 -contralto%1:10:00:: 06872905 2 0 -contralto%1:18:00:: 09961198 1 1 -contralto%5:00:00:low:03 01215663 1 0 -contraption%1:06:00:: 02729965 1 1 -contrapuntal%3:00:00:: 01544169 2 0 -contrapuntal%3:01:00:: 02855970 1 0 -contrapuntist%1:18:00:: 09612580 1 0 -contrarian%1:18:00:: 09612700 1 0 -contrariety%1:24:00:: 13858392 1 0 -contrarily%4:02:00:: 00170412 2 0 -contrarily%4:02:02:: 00247969 1 0 -contrariness%1:07:00:: 04641869 2 0 -contrariness%1:07:01:: 04909018 1 0 -contrarious%5:00:00:stubborn:00 02328012 1 0 -contrariwise%4:02:00:: 00170412 3 0 -contrariwise%4:02:01:: 00177686 2 0 -contrariwise%4:02:03:: 00247969 1 0 -contrary%1:24:00:: 13858270 2 0 -contrary%1:24:01:: 13858604 1 3 -contrary%1:24:02:: 13783421 3 0 -contrary%5:00:00:antonymous:00 02382396 2 1 -contrary%5:00:00:different:00 02065958 1 5 -contrary%5:00:00:disobedient:00 01613839 3 0 -contrary%5:00:00:unfavorable:01 00995647 4 0 -contrary_to_fact%5:00:00:conditional:00 00555709 1 0 -contras%1:14:00:: 08030185 1 0 -contrast%1:04:00:: 00651813 2 10 -contrast%1:07:00:: 05126362 5 0 -contrast%1:09:00:: 05711084 4 2 -contrast%1:09:01:: 05748786 3 3 -contrast%1:24:00:: 13855627 1 23 -contrast%2:31:00:: 00661213 1 7 -contrast%2:42:00:: 02666882 2 3 -contrast_material%1:27:00:: 14899687 1 0 -contrast_medium%1:27:00:: 14899687 1 0 -contrasting%5:00:00:different:00 02066142 1 1 -contrastingly%4:02:00:: 00295366 1 0 -contrastive%5:00:00:antonymous:00 02382572 1 0 -contrastive%5:00:00:different:00 02066142 2 0 -contrastive%5:00:00:disjunctive:00 00564858 3 0 -contrasty%3:00:00:: 01021923 1 0 -contravene%2:32:00:: 00823436 2 0 -contravene%2:41:00:: 02567147 1 0 -contravention%1:04:00:: 01170813 1 0 -contredanse%1:04:00:: 00539121 1 0 -contredanse%2:38:00:: 01896295 1 0 -contretemps%1:04:00:: 00959645 1 0 -contribute%2:40:00:: 02308741 2 25 -contribute%2:40:01:: 02324478 1 31 -contribute%2:40:02:: 02237782 4 3 -contribute%2:41:12:: 02555908 3 13 -contributing%5:00:00:causative:00 00323426 1 1 -contribution%1:04:00:: 01089778 3 3 -contribution%1:04:01:: 01102712 5 0 -contribution%1:04:02:: 00787465 1 12 -contribution%1:21:00:: 13270038 2 4 -contribution%1:21:01:: 13269890 4 2 -contributive%5:00:00:causative:00 00323426 1 0 -contributor%1:18:00:: 10670310 1 1 -contributor%1:18:01:: 09961331 2 1 -contributory%5:00:00:causative:00 00323426 1 3 -contributory_negligence%1:04:00:: 00740048 1 0 -contrite%5:00:00:penitent:00 01743506 1 0 -contritely%4:02:00:: 00217998 1 0 -contriteness%1:12:00:: 07534700 1 0 -contrition%1:12:00:: 07534700 1 1 -contrivance%1:04:01:: 00940709 6 0 -contrivance%1:06:00:: 02729965 1 2 -contrivance%1:06:01:: 03644248 5 0 -contrivance%1:09:00:: 05905802 3 0 -contrivance%1:09:01:: 05634457 2 1 -contrivance%1:09:02:: 05727808 4 0 -contrive%2:36:00:: 01632411 2 1 -contrive%2:36:01:: 01638368 1 1 -contrive%2:36:02:: 01632897 3 0 -contrived%5:00:00:affected:01 00073465 2 0 -contrived%5:00:00:planned:00 01797394 1 1 -contriver%1:18:00:: 10438172 1 0 -control%1:04:00:: 00803617 5 5 -control%1:04:02:: 00830448 3 7 -control%1:06:00:: 03096960 9 1 -control%1:07:00:: 05196375 1 19 -control%1:07:01:: 04882968 7 3 -control%1:09:01:: 05641959 8 2 -control%1:09:02:: 05798569 4 5 -control%1:10:00:: 06657202 11 0 -control%1:18:00:: 09504790 10 0 -control%1:24:00:: 13827205 2 16 -control%1:26:00:: 14441825 6 4 -control%2:31:00:: 00597385 8 0 -control%2:31:01:: 00662589 7 0 -control%2:31:11:: 00663160 6 0 -control%2:35:00:: 01224744 3 7 -control%2:37:06:: 01803936 4 1 -control%2:41:00:: 02441022 1 28 -control%2:41:01:: 02510337 2 20 -control%2:41:02:: 02520997 5 0 -control_account%1:21:00:: 13405015 1 0 -control_board%1:06:00:: 03098140 1 0 -control_center%1:06:00:: 03097362 1 0 -control_character%1:10:00:: 06820601 1 0 -control_circuit%1:06:00:: 03097535 1 0 -control_condition%1:09:00:: 05798569 1 1 -control_experiment%1:09:00:: 05798413 1 0 -control_freak%1:18:00:: 09961469 1 0 -control_function%1:22:00:: 13452117 1 0 -control_grid%1:06:00:: 03458552 1 0 -control_key%1:06:00:: 03097673 1 0 -control_operation%1:22:00:: 13452117 1 0 -control_panel%1:06:00:: 03098140 1 0 -control_rod%1:06:00:: 03098515 1 0 -control_room%1:06:00:: 03098688 1 0 -control_stick%1:06:00:: 04317976 1 0 -control_stock%1:21:00:: 13336650 1 0 -control_surface%1:06:00:: 02688443 1 0 -control_system%1:06:00:: 03098806 1 0 -control_tower%1:06:00:: 03098959 1 1 -controllable%5:00:00:manageable:00 01474942 1 0 -controlled%3:00:00:: 00598679 1 6 -controlled_substance%1:06:00:: 03097890 1 0 -controller%1:06:00:: 03096960 3 0 -controller%1:18:00:: 09761403 1 2 -controller%1:18:01:: 10525134 2 0 -controllership%1:04:00:: 00591006 1 0 -controlling%5:00:00:dominant:01 00791944 1 0 -controlling_interest%1:21:00:: 13287414 1 0 -controversial%3:00:00:: 00601783 1 1 -controversialist%1:18:00:: 09615465 1 0 -controversially%4:02:00:: 00302622 1 0 -controversy%1:10:00:: 07183151 1 8 -controvert%2:31:00:: 00667747 2 0 -controvert%2:32:00:: 00776059 1 0 -contumacious%5:00:00:insubordinate:00 02330574 1 0 -contumaciously%4:02:00:: 00198661 1 0 -contumacy%1:04:00:: 01180858 1 0 -contumacy%1:04:02:: 01179564 2 0 -contumelious%5:00:00:disrespectful:00 01995500 1 0 -contumeliously%4:02:00:: 00080534 1 0 -contumely%1:10:00:: 06715223 1 0 -contuse%2:35:00:: 01492725 1 0 -contusion%1:04:00:: 00126100 2 0 -contusion%1:26:00:: 14288871 1 1 -conundrum%1:10:00:: 06785223 1 0 -conurbation%1:15:00:: 08539717 1 0 -conuropsis%1:05:00:: 01821418 1 0 -conuropsis_carolinensis%1:05:00:: 01821554 1 0 -convalesce%2:29:00:: 00092690 1 0 -convalescence%1:22:00:: 13452347 1 0 -convalescent%1:18:00:: 09961605 1 0 -convalescent%5:00:00:ill:01 02543598 1 0 -convallaria%1:20:00:: 12471366 1 0 -convallaria_majalis%1:20:00:: 12471544 1 0 -convallariaceae%1:20:00:: 12471150 1 0 -convect%2:38:00:: 02043068 1 0 -convection%1:22:01:: 13452614 1 2 -convection%1:22:02:: 13452750 2 0 -convector%1:06:00:: 03099147 1 0 -convene%2:32:00:: 00793037 2 0 -convene%2:38:00:: 02024508 1 2 -convener%1:18:00:: 09961739 1 0 -convenience%1:06:00:: 02729965 4 0 -convenience%1:06:01:: 04018667 3 0 -convenience%1:07:00:: 04718563 2 1 -convenience%1:26:00:: 14446493 1 5 -convenience_food%1:13:00:: 07593549 1 0 -convenience_store%1:06:00:: 03099274 1 0 -conveniences%1:21:00:: 13366137 1 0 -convenient%3:00:00:: 00604617 1 16 -convenient%3:00:02:: 00475996 2 0 -conveniently%4:02:00:: 00197395 1 4 -convening%1:04:00:: 01231819 1 0 -convent%1:06:00:: 03099454 1 1 -convent%1:14:00:: 08224413 2 0 -conventicle%1:06:00:: 03099622 2 0 -conventicle%1:14:00:: 08384900 1 0 -convention%1:04:00:: 01231819 5 0 -convention%1:07:00:: 04801532 4 0 -convention%1:09:00:: 05667613 2 4 -convention%1:10:00:: 06774316 3 0 -convention%1:14:00:: 08309086 1 4 -conventional%3:00:00:: 00605516 1 12 -conventional%3:00:01:: 00607421 4 1 -conventional%3:00:02:: 00610861 3 1 -conventional%5:00:00:formal:01 01042703 7 0 -conventional%5:00:00:nonrepresentational:00 01980796 5 1 -conventional%5:00:00:orthodox:00 01690606 2 2 -conventional%5:00:00:traditional:00 00611281 6 1 -conventionalisation%1:04:00:: 01159964 1 0 -conventionalise%2:30:00:: 00527367 1 0 -conventionalised%5:00:00:artificial:00 01572604 1 0 -conventionalism%1:07:00:: 04801532 1 0 -conventionality%1:07:00:: 04801532 3 0 -conventionality%1:09:00:: 05650180 2 0 -conventionality%1:09:01:: 06212155 1 0 -conventionalization%1:04:00:: 01159964 1 0 -conventionalize%2:30:00:: 00527367 1 1 -conventionalize%2:36:00:: 01687569 2 0 -conventionalized%5:00:00:artificial:00 01572604 1 0 -conventionally%4:02:00:: 00023574 1 1 -conventioneer%1:18:00:: 09961889 1 0 -conventual%5:00:00:unworldly:00 02578894 1 0 -converge%2:30:00:: 00368847 4 0 -converge%2:38:00:: 02032634 3 0 -converge%2:42:00:: 02710402 1 1 -converge%2:42:01:: 02732401 2 0 -convergence%1:04:01:: 00146572 4 0 -convergence%1:09:00:: 05863106 2 0 -convergence%1:09:01:: 05764365 3 0 -convergence%1:11:00:: 07414740 1 0 -convergency%1:04:00:: 00146572 2 0 -convergency%1:09:00:: 05863106 1 0 -convergent%3:00:00:: 00612114 1 0 -convergent_strabismus%1:26:00:: 14506233 1 0 -convergent_thinker%1:18:00:: 10458111 1 0 -convergent_thinking%1:09:00:: 05796937 1 0 -converging%1:04:00:: 00146572 1 0 -converging_lens%1:06:00:: 03099771 1 0 -conversance%1:09:00:: 05817145 1 0 -conversancy%1:09:00:: 05817145 1 0 -conversant%5:00:00:informed:00 01307067 1 0 -conversation%1:10:00:: 07133701 1 20 -conversation_piece%1:09:00:: 05812370 1 0 -conversation_stopper%1:10:00:: 06768394 1 0 -conversational%5:00:00:informal:02 01045963 1 1 -conversational_partner%1:18:00:: 10210911 1 0 -conversationalist%1:18:00:: 09961999 1 0 -conversationally%4:02:00:: 00286667 1 0 -conversationist%1:18:00:: 09961999 1 0 -converse%1:10:00:: 06751742 1 0 -converse%2:32:00:: 00964694 1 5 -converse%5:00:00:antonymous:00 02382762 1 0 -converse%5:00:00:backward:01 00201961 2 0 -conversely%4:02:00:: 00078050 1 5 -conversion%1:04:00:: 00400083 9 0 -conversion%1:04:01:: 00094788 4 1 -conversion%1:04:02:: 00189106 3 2 -conversion%1:04:03:: 01093380 8 0 -conversion%1:09:00:: 05802912 2 3 -conversion%1:10:00:: 07102483 7 0 -conversion%1:11:00:: 07415730 1 9 -conversion%1:11:01:: 07355194 6 0 -conversion%1:22:00:: 13452947 5 0 -conversion_disorder%1:26:00:: 14386697 1 0 -conversion_factor%1:23:00:: 13593438 1 0 -conversion_hysteria%1:26:00:: 14386697 1 0 -conversion_reaction%1:26:00:: 14386697 1 0 -converso%1:18:00:: 09962214 1 0 -convert%1:18:00:: 09962414 1 3 -convert%2:30:00:: 00381013 1 13 -convert%2:30:01:: 00384411 3 3 -convert%2:30:02:: 00161225 4 3 -convert%2:30:03:: 00115157 2 5 -convert%2:30:04:: 00114837 11 0 -convert%2:30:07:: 00385385 5 1 -convert%2:30:09:: 00161987 10 0 -convert%2:32:00:: 00769553 9 0 -convert%2:33:00:: 01084588 8 0 -convert%2:33:01:: 01084724 7 0 -convert%2:33:02:: 01084866 6 0 -converted%5:00:00:regenerate:00 01957177 1 0 -converter%1:06:00:: 03099945 1 0 -convertibility%1:07:00:: 04736757 1 0 -convertible%1:06:00:: 03100240 1 2 -convertible%1:06:01:: 03100346 3 0 -convertible%1:21:00:: 13419325 2 0 -convertible%3:00:00:: 00916706 1 0 -convertible%5:00:00:adaptable:00 01027988 2 0 -convertible%5:00:00:commutable:00 00348537 3 0 -convertible_bond%1:21:00:: 13337634 1 0 -convertible_security%1:21:00:: 13419325 1 0 -convertor%1:06:00:: 03099945 1 0 -convex%3:00:00:: 00537339 1 1 -convex_lens%1:06:00:: 03099771 1 0 -convex_polygon%1:25:00:: 13866626 1 0 -convex_polyhedron%1:25:00:: 13884261 1 0 -convex_shape%1:25:00:: 13864153 1 0 -convexity%1:07:00:: 05070290 1 1 -convexity%1:25:00:: 13864153 2 0 -convexly%4:02:00:: 00499711 1 0 -convexness%1:07:00:: 05070290 1 0 -convexo-concave%5:00:00:convex:00 00538017 1 0 -convexo-convex%5:00:00:convex:00 00537745 1 0 -convey%2:32:00:: 00928630 1 9 -convey%2:32:01:: 01061017 2 8 -convey%2:35:00:: 01433294 7 0 -convey%2:38:00:: 02077656 6 0 -convey%2:38:02:: 02079933 5 0 -convey%2:40:00:: 02221454 4 0 -convey%2:40:10:: 02231661 3 0 -conveyable%5:00:00:alienable:00 00093556 1 0 -conveyance%1:04:00:: 01108402 4 0 -conveyance%1:04:01:: 00315986 5 0 -conveyance%1:06:00:: 03100490 3 0 -conveyance%1:10:00:: 06252954 2 0 -conveyance%1:10:01:: 06546633 1 0 -conveyance_of_title%1:04:00:: 01108402 1 0 -conveyancer%1:18:00:: 09962612 1 0 -conveyancing%1:04:00:: 01108402 1 0 -conveyer%1:06:00:: 03100897 2 0 -conveyer%1:18:00:: 09962789 1 0 -conveyer_belt%1:06:00:: 03100897 1 0 -conveying%1:04:00:: 01108402 1 0 -conveyor%1:06:00:: 03100897 2 1 -conveyor%1:18:00:: 09962789 1 1 -conveyor_belt%1:06:00:: 03100897 1 0 -convict%1:18:00:: 09962966 1 1 -convict%1:18:01:: 09963159 2 0 -convict%2:32:00:: 00906367 1 11 -convict_fish%1:05:00:: 02649218 1 0 -convictfish%1:05:00:: 02649218 1 0 -conviction%1:04:00:: 01189282 2 3 -conviction%1:09:00:: 05942888 1 19 -convince%2:32:00:: 00769553 1 15 -convinced%3:00:00:: 00338421 2 3 -convinced%5:00:00:certain:02 00337172 1 10 -convincible%5:00:00:susceptible:00 02361848 1 0 -convincing%3:00:00:: 00614990 1 4 -convincingly%4:02:00:: 00192511 1 2 -convincingness%1:07:00:: 05192130 1 0 -convivial%5:00:00:sociable:00 02258002 1 1 -conviviality%1:04:00:: 00509846 2 0 -conviviality%1:07:00:: 04653357 1 0 -convivially%4:02:00:: 00302902 1 0 -convocation%1:04:00:: 01230850 2 0 -convocation%1:14:00:: 08402222 1 0 -convoke%2:32:00:: 00793037 1 0 -convolute%2:32:00:: 00932798 2 0 -convolute%2:35:00:: 01281184 1 0 -convolute%5:00:00:coiled:00 02317800 1 0 -convoluted%5:00:00:coiled:00 02317800 1 0 -convoluted%5:00:00:complex:00 02176841 2 0 -convolution%1:04:00:: 00404959 3 0 -convolution%1:08:00:: 05492426 2 0 -convolution%1:25:00:: 13878112 1 0 -convolution_of_broca%1:08:00:: 05488385 1 0 -convolve%2:35:00:: 01281184 1 0 -convolvulaceae%1:20:00:: 12823164 1 0 -convolvulus%1:20:00:: 12823717 1 0 -convolvulus_arvensis%1:20:00:: 12824053 1 0 -convolvulus_scammonia%1:20:00:: 12824289 1 0 -convolvulus_sepium%1:20:00:: 12825061 1 0 -convoy%1:04:00:: 00827974 3 0 -convoy%1:14:00:: 08417801 1 1 -convoy%1:14:01:: 08417673 2 0 -convoy%2:38:00:: 02026433 1 0 -convulse%2:29:00:: 00032297 2 1 -convulse%2:32:00:: 00859937 1 1 -convulse%2:35:00:: 01388813 6 0 -convulse%2:35:01:: 01389007 5 0 -convulse%2:38:00:: 01890792 3 0 -convulse%2:38:01:: 01890088 4 0 -convulsion%1:11:00:: 07305438 4 0 -convulsion%1:26:00:: 14082595 2 0 -convulsion%1:26:01:: 14082788 1 0 -convulsion%1:26:02:: 13977732 3 0 -convulsive%5:00:00:unsteady:00 02303754 1 2 -convulsive%5:00:00:violent:00 02511340 2 1 -convulsively%4:02:00:: 00198531 1 2 -cony%1:05:01:: 02324045 3 0 -cony%1:05:02:: 02328429 2 0 -cony%1:05:03:: 02372584 1 0 -conyza%1:20:00:: 11956208 1 0 -conyza_canadensis%1:20:00:: 11956348 1 0 -coo%1:11:00:: 07381329 1 0 -coo%2:32:00:: 00909896 2 0 -coo%2:32:01:: 00910000 1 0 -cooccur%2:42:00:: 02660442 1 0 -cooccur_with%2:42:00:: 02660819 1 0 -cooccurring%5:00:00:synchronous:00 02378496 1 1 -cook%1:18:00:: 09963320 1 7 -cook%1:18:01:: 10908313 2 0 -cook%2:30:00:: 00322847 3 6 -cook%2:30:03:: 00323377 5 0 -cook%2:36:00:: 01664172 2 9 -cook%2:36:01:: 01665638 1 9 -cook%2:41:00:: 02576921 4 0 -cook_out%2:30:00:: 00324806 1 0 -cook_strait%1:17:00:: 09255768 1 0 -cook_up%2:36:00:: 01634424 2 0 -cook_up%2:36:01:: 01666131 1 1 -cookbook%1:10:00:: 06413020 1 0 -cooke%1:18:00:: 10908534 2 0 -cooke%1:18:01:: 10908756 1 0 -cooked%3:00:00:: 00615757 1 0 -cooker%1:06:00:: 03101156 1 0 -cookery%1:04:00:: 00243918 1 0 -cookery_book%1:10:00:: 06413020 1 0 -cookfire%1:06:00:: 03101302 1 1 -cookhouse%1:06:00:: 03412220 1 0 -cookhouse%1:06:01:: 03101375 2 0 -cookie%1:10:00:: 06387538 3 0 -cookie%1:13:00:: 07635155 1 1 -cookie%1:18:00:: 09963680 2 0 -cookie-cutter%5:00:00:same:00 02063759 1 0 -cookie-sized%5:00:00:sized:00 02222773 1 0 -cookie_cutter%1:06:00:: 03101517 1 0 -cookie_jar%1:06:00:: 03101664 1 0 -cookie_jar_reserve%1:21:00:: 13369723 1 0 -cookie_sheet%1:06:00:: 03101796 1 0 -cooking%1:04:00:: 00243918 1 4 -cooking_apple%1:13:00:: 07742012 1 0 -cooking_chocolate%1:13:00:: 07602279 1 0 -cooking_oil%1:13:00:: 07673145 1 0 -cooking_pan%1:06:00:: 03880531 1 0 -cooking_stove%1:06:00:: 04330340 1 0 -cooking_utensil%1:06:00:: 03101986 1 1 -cookout%1:13:00:: 07576577 1 0 -cookstove%1:06:00:: 03102371 1 0 -cookware%1:06:00:: 03101986 1 0 -cooky%1:13:00:: 07635155 2 0 -cooky%1:18:00:: 09963680 1 0 -cooky_jar%1:06:00:: 03101664 1 0 -cool%1:07:01:: 05016001 1 0 -cool%1:07:02:: 04904162 2 0 -cool%2:30:00:: 00369864 2 1 -cool%2:30:01:: 00370412 1 15 -cool%2:30:02:: 00370126 3 0 -cool%3:00:01:: 02529945 1 25 -cool%3:00:02:: 02531422 4 0 -cool%3:00:03:: 02532200 3 0 -cool%5:00:00:composed:00 00530772 2 2 -cool%5:00:00:fashionable:00 00971660 6 0 -cool%5:00:00:unqualified:02 01914250 5 0 -cool-white%5:00:00:achromatic:00 00387922 1 0 -cool_down%2:30:00:: 00370412 1 0 -cool_down%2:30:01:: 00369864 3 0 -cool_down%2:30:02:: 00370126 2 0 -cool_it%2:37:00:: 01763829 1 0 -cool_jazz%1:10:00:: 07063413 1 0 -cool_off%2:30:00:: 00370126 2 1 -cool_off%2:37:00:: 01763829 1 1 -cool_off%2:37:01:: 01777707 3 0 -cool_one's_heels%2:42:00:: 02638206 1 0 -coolant%1:27:00:: 14822141 1 2 -coolant_system%1:06:00:: 03102516 1 0 -cooler%1:06:00:: 03102654 1 1 -cooler%1:06:01:: 03102771 3 0 -cooler%1:13:00:: 07914006 2 0 -cooley's_anaemia%1:26:00:: 14195939 1 0 -cooley's_anemia%1:26:00:: 14195939 1 0 -coolheaded%5:00:00:composed:00 00530772 1 0 -coolidge%1:18:00:: 10908919 1 0 -coolie%1:18:00:: 09642917 1 0 -cooling%1:06:00:: 03102859 2 1 -cooling%1:22:00:: 13453160 1 6 -cooling_system%1:06:00:: 03102859 2 0 -cooling_system%1:06:01:: 03103128 1 0 -cooling_tower%1:06:00:: 03103396 1 0 -coolly%4:02:00:: 00295545 1 4 -coolness%1:07:00:: 05015678 2 1 -coolness%1:07:01:: 04629604 4 0 -coolness%1:07:02:: 04858632 3 1 -coolness%1:12:00:: 07515328 1 1 -coolwart%1:20:00:: 12803754 1 0 -cooly%1:18:00:: 09642917 1 0 -coon%1:05:00:: 02508213 3 0 -coon%1:18:00:: 09638009 2 0 -coon%1:18:01:: 09613559 1 1 -coon_bear%1:05:00:: 02510455 1 0 -coon_cat%1:05:01:: 02509515 1 0 -coon_cat%1:05:02:: 02508742 2 0 -coondog%1:05:00:: 02088992 1 0 -coonhound%1:05:00:: 02088839 1 0 -coonskin%1:06:00:: 03103563 1 0 -coonskin_cap%1:06:00:: 03103563 1 0 -coontie%1:20:00:: 11602091 1 0 -coop%1:06:00:: 02936714 2 0 -coop%1:06:01:: 03016389 1 2 -coop_in%2:35:00:: 01347519 1 0 -coop_up%2:35:00:: 01347519 1 0 -cooper%1:18:00:: 10909127 3 0 -cooper%1:18:01:: 10909303 2 0 -cooper%1:18:02:: 10909471 1 0 -cooper%1:18:03:: 09963773 4 0 -cooper%2:36:00:: 01659144 1 0 -cooper's_hawk%1:05:00:: 01606809 1 0 -cooper_union%1:06:00:: 03103682 1 0 -cooper_union_for_the_advancement_of_science_and_art%1:06:00:: 03103682 1 0 -cooperate%2:41:00:: 02416278 1 20 -cooperation%1:04:01:: 01202904 1 7 -cooperation%1:04:02:: 00411384 2 1 -cooperative%1:04:00:: 01100877 1 3 -cooperative%1:14:00:: 08227088 2 1 -cooperative%3:00:00:: 00619972 2 3 -cooperative%5:00:00:joint:00 02112108 1 7 -cooperative%5:00:00:noncompetitive:00 00513388 3 0 -cooperatively%4:02:00:: 00163340 1 0 -cooperativeness%1:07:00:: 04906026 1 0 -cooperator%1:18:00:: 09935434 1 0 -cooperstown%1:15:00:: 09118639 1 0 -coordinate%1:09:00:: 06010930 1 2 -coordinate%2:30:00:: 00404642 1 9 -coordinate%2:30:01:: 00466053 4 1 -coordinate%2:41:00:: 02437905 2 4 -coordinate%2:41:01:: 02438228 3 1 -coordinate%5:00:00:equal:00 00890874 1 1 -coordinate_axis%1:09:00:: 06008896 1 0 -coordinate_bond%1:19:00:: 11437957 1 0 -coordinate_clause%1:10:00:: 06314595 1 0 -coordinate_geometry%1:09:00:: 06008382 1 0 -coordinate_system%1:09:00:: 05728024 1 0 -coordinated%5:00:00:adroit:00 00062152 2 1 -coordinated%5:00:00:integrated:02 01328229 1 1 -coordinated%5:00:00:matched:00 01486704 3 0 -coordinated_universal_time%1:28:00:: 15130434 1 0 -coordinately%4:02:00:: 00499933 1 0 -coordinating%3:00:00:: 00552315 1 0 -coordinating_conjunction%1:10:00:: 06326054 2 0 -coordinating_conjunction%1:24:00:: 13799655 1 0 -coordination%1:04:00:: 00807273 2 1 -coordination%1:09:00:: 05641556 1 1 -coordination%1:09:01:: 05641432 4 0 -coordination%1:24:00:: 13800539 3 0 -coordination_compound%1:27:00:: 14817592 1 0 -coordinative%3:00:00:: 00552315 1 0 -coordinator%1:18:00:: 09963914 1 1 -coosa%1:17:00:: 09255921 1 0 -coosa_river%1:17:00:: 09255921 1 0 -coot%1:05:00:: 02018027 1 0 -cooter%1:05:00:: 01668892 1 0 -cootie%1:05:00:: 02184720 1 0 -cop%1:18:00:: 09879144 1 20 -cop%2:35:00:: 01215137 2 0 -cop%2:40:00:: 02322230 1 0 -cop_out%2:31:00:: 00679715 1 0 -copacetic%5:00:00:satisfactory:00 02081672 1 0 -copaiba%1:27:00:: 14897620 1 0 -copaiba_balsam%1:27:00:: 14897620 1 0 -copal%1:27:00:: 14895189 1 0 -copaline%1:27:00:: 14895373 1 0 -copalite%1:27:00:: 14895373 1 0 -copartner%1:18:00:: 09964064 1 0 -copartnership%1:14:00:: 08060878 1 0 -copasetic%5:00:00:satisfactory:00 02081672 1 0 -cope%1:06:00:: 03503097 1 0 -cope%1:06:01:: 03103904 2 0 -cope%2:41:00:: 02587532 1 5 -cope_with%2:41:00:: 02594674 1 18 -copeck%1:23:00:: 13699189 1 0 -copehan%1:10:00:: 06924214 1 0 -copenhagen%1:15:00:: 08761868 1 4 -copepod%1:05:00:: 01996585 1 0 -copepod_crustacean%1:05:00:: 01996585 1 0 -copepoda%1:05:00:: 01996392 1 0 -copernican%5:00:00:heliocentric:00 01119033 2 0 -copernican%5:00:00:important:00 01277952 1 0 -copernican_system%1:09:00:: 05890642 1 0 -copernicia%1:20:00:: 12588156 1 0 -copernicia_alba%1:20:00:: 12588780 1 0 -copernicia_australis%1:20:00:: 12588780 1 0 -copernicia_cerifera%1:20:00:: 12588320 1 0 -copernicia_prunifera%1:20:00:: 12588320 1 0 -copernicus%1:17:00:: 09256182 2 0 -copernicus%1:18:00:: 10909724 1 0 -copesetic%5:00:00:satisfactory:00 02081672 1 0 -copesettic%5:00:00:satisfactory:00 02081672 1 0 -copestone%1:06:00:: 02957427 2 0 -copestone%1:09:00:: 05642678 1 0 -copier%1:06:00:: 03257586 1 0 -copilot%1:18:00:: 09964202 1 0 -coping%1:06:00:: 03503097 1 1 -coping_saw%1:06:00:: 03104019 1 0 -coping_stone%1:06:00:: 02957427 1 0 -copious%5:00:01:abundant:00 00014490 2 0 -copious%5:00:02:abundant:00 00014858 1 0 -copiously%4:02:00:: 00214554 1 0 -copiousness%1:07:00:: 05115040 1 0 -coplanar%5:00:00:planar:00 00659181 1 0 -copland%1:18:00:: 10909929 1 0 -copley%1:18:00:: 10910076 1 0 -copolymer%1:27:00:: 14902949 1 0 -copolymerise%2:30:00:: 00266391 1 0 -copolymerize%2:30:00:: 00266391 1 0 -copout%1:04:00:: 00069060 1 0 -copper%1:05:00:: 02282385 5 0 -copper%1:07:00:: 04973669 4 0 -copper%1:18:00:: 09879144 3 0 -copper%1:21:00:: 13391774 2 0 -copper%1:27:00:: 14635722 1 4 -copper%2:35:00:: 01265880 1 0 -copper's_nark%1:18:00:: 10345659 1 0 -copper-base_alloy%1:27:00:: 14822563 1 0 -copper-bottom%2:40:00:: 02353408 1 0 -copper-bottomed%5:00:00:bottomed:00 02442604 1 0 -copper_beech%1:20:00:: 12261571 1 0 -copper_color%1:07:00:: 04973669 1 0 -copper_colored%5:00:00:chromatic:00 00373493 1 0 -copper_glance%1:27:00:: 14670344 1 0 -copper_mine%1:06:00:: 03104147 1 0 -copper_nose%1:26:00:: 14397040 1 0 -copper_oxide%1:27:00:: 14822762 1 0 -copper_pyrites%1:27:00:: 14670481 1 0 -copper_rockfish%1:05:00:: 02644360 1 0 -copper_sulfate%1:27:00:: 14822839 1 0 -copper_sulphate%1:27:00:: 14822839 1 0 -copperhead%1:05:01:: 01754370 1 0 -copperhead%1:05:02:: 01747589 2 0 -copperplate%1:06:00:: 03104247 3 0 -copperplate%1:06:01:: 03104413 2 0 -copperplate%1:10:00:: 06350777 1 0 -copperplate_engraving%1:06:00:: 03104247 1 0 -coppersmith%1:18:00:: 09964315 1 0 -copperware%1:06:00:: 03104512 1 0 -coppery%5:00:00:chromatic:00 00373493 1 0 -coppice%1:14:00:: 08437515 1 0 -coppola%1:18:00:: 10910305 1 0 -copra%1:13:00:: 07773572 1 0 -copra_oil%1:13:00:: 07674161 1 0 -coprinaceae%1:20:00:: 13005835 1 0 -coprinus%1:20:00:: 13005568 1 0 -coprinus_atramentarius%1:20:00:: 13005984 1 0 -coprinus_comatus%1:20:00:: 13006171 1 0 -coprolalia%1:26:00:: 14503528 1 0 -coprolite%1:17:00:: 09256272 1 0 -coprolith%1:17:00:: 09256360 1 0 -coprophagia%1:04:00:: 00839163 1 0 -coprophagy%1:04:00:: 00839163 1 0 -copse%1:14:00:: 08437515 1 0 -copt%1:18:00:: 09681234 2 0 -copt%1:18:01:: 09700706 1 0 -coptic%1:10:00:: 06990371 1 0 -coptic%3:01:00:: 03056463 1 0 -coptic_church%1:14:00:: 08087203 1 0 -coptis%1:20:00:: 11731861 1 0 -coptis_groenlandica%1:20:00:: 11732052 1 0 -coptis_trifolia_groenlandica%1:20:00:: 11732052 1 0 -copula%1:10:00:: 06472824 1 0 -copular%3:01:00:: 02984491 1 0 -copulate%2:35:00:: 01428853 1 0 -copulation%1:04:00:: 00845523 1 0 -copulative%1:10:00:: 06472824 1 0 -copulative%5:00:00:conjunctive:00 00563789 1 0 -copulative_conjunction%1:24:00:: 13799967 1 0 -copulatory%3:01:00:: 02887741 1 0 -copy%1:06:00:: 03104594 2 6 -copy%1:10:00:: 06505517 1 7 -copy%1:10:01:: 06390512 3 2 -copy%1:10:02:: 06676109 4 0 -copy%2:36:00:: 01742886 2 3 -copy%2:36:01:: 01693881 4 0 -copy%2:36:03:: 01734929 3 0 -copy%2:36:05:: 01747374 1 3 -copy_editing%1:10:00:: 06428105 1 0 -copy_editor%1:18:00:: 09964659 1 0 -copy_out%2:36:00:: 01747602 1 0 -copybook%1:10:00:: 06415922 1 0 -copycat%1:18:00:: 09964411 1 0 -copyedit%2:31:00:: 00628125 1 0 -copyhold%1:21:00:: 13242923 1 0 -copyholder%1:06:00:: 03105088 1 0 -copying%1:04:00:: 01019524 1 0 -copyist%1:18:00:: 09964805 1 0 -copyread%2:31:00:: 00628125 1 0 -copyreader%1:18:00:: 09964659 1 0 -copyright%1:10:00:: 06473168 1 0 -copyright%2:40:00:: 02239533 1 0 -copyright_infringement%1:04:00:: 00770834 1 0 -copyrighted%5:00:00:proprietary:00 01110470 1 0 -copywriter%1:18:00:: 09965021 1 0 -coq_au_vin%1:13:00:: 07861557 1 0 -coquet%2:32:00:: 01037910 1 0 -coquetry%1:04:00:: 00512522 1 0 -coquette%1:18:00:: 09965134 1 2 -coquette%2:32:00:: 01037910 1 0 -coquettish%5:00:00:sexy:00 02131958 1 0 -coquettishly%4:02:00:: 00303034 1 0 -coquilla_nut%1:20:00:: 12585373 1 0 -coquille%1:06:00:: 03105214 2 0 -coquille%1:13:00:: 07865700 1 0 -coquilles_saint-jacques%1:13:00:: 07865788 1 0 -cor_anglais%1:06:00:: 03288742 1 0 -cor_pulmonale%1:26:00:: 14367080 1 0 -cora%1:18:00:: 09569467 1 0 -coracan%1:20:00:: 12118661 1 0 -coracias%1:05:00:: 01826542 1 0 -coracias_garrulus%1:05:00:: 01826680 1 0 -coraciidae%1:05:00:: 01826223 1 0 -coraciiform_bird%1:05:00:: 01825930 1 0 -coraciiformes%1:05:00:: 01825417 1 0 -coracle%1:06:00:: 03105306 1 0 -coragyps%1:05:00:: 01620282 1 0 -coragyps_atratus%1:05:00:: 01620414 1 0 -corakan%1:20:00:: 12118661 1 0 -coral%1:05:00:: 01915811 4 0 -coral%1:07:00:: 04971820 1 1 -coral%1:13:00:: 07793795 3 0 -coral%1:27:00:: 14823036 2 0 -coral%5:00:00:chromatic:00 00373621 1 0 -coral-red%5:00:00:chromatic:00 00373731 1 0 -coral-root_bittercress%1:20:00:: 11882237 1 0 -coral-wood%1:20:00:: 11758799 1 0 -coral_bean%1:20:00:: 12570703 1 0 -coral_bean_tree%1:20:00:: 12528382 1 0 -coral_bush%1:20:00:: 12572188 1 0 -coral_drops%1:20:00:: 12443736 1 0 -coral_fungus%1:20:00:: 12985857 1 0 -coral_gem%1:20:00:: 12545429 1 0 -coral_honeysuckle%1:20:00:: 12676703 1 0 -coral_necklace%1:20:00:: 11811059 1 0 -coral_pea%1:20:00:: 12536871 1 0 -coral_reef%1:17:00:: 09256479 1 0 -coral_root%1:20:00:: 12053405 1 0 -coral_sea%1:04:00:: 01276194 2 0 -coral_sea%1:17:00:: 09256663 1 0 -coral_snake%1:05:01:: 01745484 2 0 -coral_snake%1:05:02:: 01746359 1 0 -coral_tree%1:20:00:: 12527738 1 0 -coral_vine%1:20:02:: 12537068 1 0 -coralbells%1:20:00:: 12798910 1 0 -coralberry%1:20:01:: 12097396 2 0 -coralberry%1:20:02:: 12677841 1 0 -corallorhiza%1:20:00:: 12053138 1 0 -corallorhiza_maculata%1:20:00:: 12053690 1 0 -corallorhiza_striata%1:20:00:: 12053962 1 0 -corallorhiza_trifida%1:20:00:: 12054195 1 0 -coralroot%1:20:00:: 11882237 1 0 -coralwood%1:20:00:: 11758799 1 0 -coralwort%1:20:00:: 11882237 1 0 -corbel%1:06:00:: 03105467 1 0 -corbel%2:40:00:: 02352824 1 0 -corbel_arch%1:06:00:: 03105645 1 0 -corbel_step%1:06:00:: 03105810 1 0 -corbelled%3:44:00:: 03148653 1 0 -corbett%1:18:00:: 10910421 1 0 -corbie-step%1:06:00:: 03105810 1 0 -corbie_gable%1:06:00:: 03105974 1 0 -corbiestep%1:06:00:: 03105810 1 0 -corbina%1:05:00:: 02598134 1 0 -corchorus%1:20:00:: 12204546 2 0 -corchorus%1:20:01:: 12204730 1 0 -cord%1:06:00:: 03106110 1 5 -cord%1:06:01:: 03106722 4 0 -cord%1:06:02:: 03106898 3 0 -cord%1:23:00:: 13602401 2 0 -cord%2:35:00:: 01503841 1 0 -cord%2:35:01:: 01286674 2 0 -cord_blood%1:08:00:: 05402472 1 0 -cord_grass%1:20:00:: 12139575 1 0 -cordage%1:06:00:: 03107046 2 0 -cordage%1:23:00:: 13579829 1 0 -cordaitaceae%1:20:00:: 11606661 1 0 -cordaitales%1:20:00:: 11606379 1 0 -cordaites%1:20:00:: 11606846 1 0 -cordarone%1:06:00:: 02702304 1 0 -cordate%5:00:00:simple:01 02167628 1 0 -cordate_leaf%1:20:00:: 13157780 1 0 -corday%1:18:00:: 10910580 1 0 -corded%5:00:00:rough:00 02240275 1 0 -cordell_hull%1:18:00:: 11065562 1 0 -cordgrass%1:20:00:: 12139575 1 0 -cordia%1:20:00:: 12818147 1 0 -cordia_alliodora%1:20:00:: 12818346 1 0 -cordia_gerascanthus%1:20:00:: 12818601 1 0 -cordial%1:13:00:: 07907943 1 0 -cordial%5:00:00:friendly:01 01075178 1 1 -cordial%5:00:00:warm:02 02531122 2 0 -cordial%5:00:02:sincere:00 02179808 3 0 -cordial_reception%1:10:00:: 06631506 1 0 -cordiality%1:07:00:: 04655929 1 0 -cordially%4:02:00:: 00219855 1 0 -cordierite%1:27:00:: 14672544 1 0 -cordiform%5:00:00:simple:01 02167628 1 0 -cordite%1:06:00:: 03107152 1 0 -corditis%1:26:00:: 14341563 1 0 -cordless%3:01:00:: 02703911 1 0 -cordoba%1:15:00:: 09025728 3 0 -cordoba%1:15:01:: 08713136 4 0 -cordoba%1:18:00:: 10910769 2 0 -cordoba%1:23:00:: 13691269 1 0 -cordon%1:06:00:: 03107383 3 0 -cordon%1:10:01:: 07267931 2 0 -cordon%1:14:00:: 08376948 1 0 -cordon_bleu%1:10:00:: 07268302 2 0 -cordon_bleu%1:18:00:: 09965424 1 0 -cordon_off%2:35:00:: 01588297 1 0 -cordova%1:15:00:: 09025728 2 0 -cordova%1:15:01:: 08713136 3 0 -cordova%1:18:00:: 10910769 1 0 -cordovan%1:27:00:: 14762145 1 0 -cords%1:06:04:: 03107488 1 0 -corduroy%1:06:00:: 03106722 1 1 -corduroy%1:06:01:: 03107609 2 0 -corduroy%2:36:00:: 01750895 1 0 -corduroys%1:06:04:: 03107488 1 1 -cordwood%1:27:00:: 15100834 1 0 -cordylidae%1:05:00:: 01684941 1 0 -cordyline%1:20:00:: 12478283 1 0 -cordyline_australis%1:20:00:: 12478768 1 0 -cordyline_terminalis%1:20:00:: 12478506 1 0 -cordylus%1:05:00:: 01685107 1 0 -core%1:06:00:: 03107716 10 0 -core%1:06:01:: 03107904 9 0 -core%1:06:02:: 03108069 8 0 -core%1:09:00:: 05921123 4 2 -core%1:10:00:: 06604066 7 0 -core%1:14:00:: 08242223 1 5 -core%1:14:01:: 08308922 6 0 -core%1:15:00:: 08524262 2 4 -core%1:17:00:: 09256815 3 2 -core%1:17:01:: 09256895 5 1 -core%2:35:00:: 01590523 1 1 -core_bit%1:06:00:: 03108455 1 0 -core_drill%1:06:00:: 03108624 1 0 -core_dump%1:10:00:: 06390051 1 0 -core_group%1:14:00:: 08242223 1 0 -core_memory%1:06:00:: 03706415 1 0 -core_out%2:35:00:: 01282545 1 0 -coreference%1:24:00:: 13799063 1 0 -coreferent%5:00:00:related:02 01974071 1 0 -coreferential%3:01:00:: 02704005 1 0 -coregonidae%1:05:00:: 02538730 1 0 -coregonus%1:05:00:: 02539251 1 0 -coregonus_artedi%1:05:00:: 02539573 1 0 -coregonus_clupeaformis%1:05:00:: 02539424 1 0 -coreid%1:05:00:: 02239528 1 0 -coreid_bug%1:05:00:: 02239528 1 0 -coreidae%1:05:00:: 02239347 1 0 -coreligionist%1:18:00:: 09965515 1 0 -corelli%1:18:00:: 10910948 1 0 -coreopsis%1:20:00:: 11956850 1 0 -coreopsis_gigantea%1:20:00:: 11957317 1 0 -coreopsis_maritima%1:20:00:: 11957514 1 0 -coreopsis_tinctoria%1:20:00:: 11957678 1 0 -corer%1:06:00:: 03108759 1 0 -corespondent%1:18:00:: 09965625 1 0 -corgard%1:06:00:: 03804311 1 0 -corgi%1:05:00:: 02112826 1 0 -coriaceous%5:00:00:tough:01 02446070 1 0 -coriander%1:13:00:: 07817315 3 0 -coriander%1:13:02:: 07817465 2 0 -coriander%1:20:00:: 12936469 1 0 -coriander_plant%1:20:00:: 12936469 1 0 -coriander_seed%1:13:00:: 07817465 1 0 -coriandrum%1:20:00:: 12936333 1 0 -coriandrum_sativum%1:20:00:: 12936469 1 0 -coricidin%1:06:00:: 03022978 1 0 -corinth%1:15:00:: 08786432 1 0 -corinthian%1:18:00:: 09711320 2 0 -corinthian%1:18:01:: 10439727 1 0 -corinthian%3:01:00:: 02704686 2 0 -corinthian%3:01:02:: 02845048 1 0 -corinthian_order%1:07:00:: 04699298 1 0 -coriolis_effect%1:19:00:: 11413263 1 0 -coriolis_force%1:19:00:: 11440123 1 0 -corium%1:08:00:: 05243879 1 0 -corixa%1:05:00:: 02243065 1 0 -corixidae%1:05:00:: 02242942 1 0 -cork%1:06:00:: 03108853 4 0 -cork%1:06:01:: 02860063 5 0 -cork%1:15:00:: 08889400 3 0 -cork%1:27:00:: 14823227 1 1 -cork%1:27:01:: 14823547 2 0 -cork%2:30:00:: 00321341 2 0 -cork%2:35:00:: 01423623 1 0 -cork_jacket%1:06:00:: 03662887 1 0 -cork_oak%1:20:00:: 12278650 1 0 -cork_tree%1:20:01:: 12529220 2 0 -cork_tree%1:20:02:: 12713866 1 0 -cork_up%2:35:00:: 01423623 1 0 -corkage%1:21:00:: 13307995 1 0 -corkboard%1:27:00:: 14823376 1 0 -corked%5:00:00:bad:00 01126683 1 0 -corker%1:06:00:: 03109033 2 0 -corker%1:10:00:: 06506603 1 0 -corking%5:00:00:good:01 01123879 1 0 -corkscrew%1:06:00:: 03109150 1 1 -corkscrew%2:38:00:: 02049561 1 0 -corkscrew_flower%1:20:00:: 12577895 1 0 -corkwood%1:20:00:: 11742878 1 0 -corkwood_family%1:20:00:: 11742531 1 0 -corkwood_tree%1:20:00:: 11742878 1 0 -corky%5:00:00:bad:00 01126683 1 0 -corm%1:20:00:: 13134680 1 0 -cormorant%1:05:00:: 02054036 1 0 -cormose%3:01:00:: 02704120 1 0 -cormous%3:01:00:: 02704120 1 0 -cormous_plant%1:20:00:: 13134844 1 0 -corn%1:07:00:: 04627809 7 0 -corn%1:13:00:: 07731952 3 1 -corn%1:13:03:: 07906877 6 0 -corn%1:20:00:: 12143676 1 3 -corn%1:20:01:: 12144117 5 0 -corn%1:20:02:: 12144580 2 2 -corn%1:26:00:: 14364802 4 0 -corn%2:30:00:: 00528225 2 0 -corn%2:34:00:: 01179155 1 0 -corn-fed%5:00:00:nourished:00 02300413 1 0 -corn-fed%5:00:00:provincial:00 00637172 2 0 -corn_beef%1:13:00:: 07664266 1 0 -corn_belt%1:15:00:: 08543916 1 0 -corn_borer%1:05:01:: 02289610 2 0 -corn_borer%1:05:02:: 02309841 1 0 -corn_borer_moth%1:05:00:: 02289610 1 0 -corn_cake%1:13:00:: 07688021 1 0 -corn_campion%1:20:00:: 11805544 1 0 -corn_chamomile%1:20:00:: 11923637 1 0 -corn_chip%1:13:00:: 07712748 1 0 -corn_chowder%1:13:00:: 07587618 1 0 -corn_cob%1:15:00:: 08544125 1 0 -corn_cockle%1:20:00:: 11805544 1 0 -corn_dab%1:13:00:: 07688757 1 0 -corn_dance%1:04:00:: 00542065 1 0 -corn_dodger%1:13:00:: 07688757 1 0 -corn_earworm%1:05:00:: 02310334 1 0 -corn_exchange%1:06:00:: 03110937 1 0 -corn_field%1:15:00:: 08544719 1 0 -corn_flake%1:13:00:: 07705303 1 0 -corn_fritter%1:13:00:: 07640105 1 0 -corn_gluten%1:13:00:: 07570447 1 0 -corn_gluten_feed%1:13:00:: 07570530 1 0 -corn_lily%1:20:00:: 12417836 1 0 -corn_liquor%1:13:00:: 07902520 1 0 -corn_marigold%1:20:00:: 11950686 1 0 -corn_mayweed%1:20:01:: 12028424 1 0 -corn_mayweed%1:20:02:: 11923637 2 0 -corn_mint%1:20:00:: 12855365 1 0 -corn_muffin%1:13:00:: 07690511 1 0 -corn_oil%1:13:00:: 07674267 1 0 -corn_poppy%1:20:00:: 11902200 1 0 -corn_pudding%1:13:00:: 07617932 1 0 -corn_salad%1:20:00:: 12950669 1 0 -corn_silk%1:20:00:: 12145638 1 0 -corn_smut%1:20:00:: 13067191 1 0 -corn_snake%1:05:00:: 01732614 1 0 -corn_snow%1:27:00:: 15044122 1 0 -corn_speedwell%1:20:00:: 12890928 1 0 -corn_spurrey%1:20:00:: 11817160 1 0 -corn_spurry%1:20:00:: 11817160 1 0 -corn_stalk%1:20:00:: 11678010 1 0 -corn_sugar%1:13:00:: 07596362 2 0 -corn_sugar%1:27:00:: 14823690 1 0 -corn_syrup%1:13:00:: 07860548 1 1 -corn_tash%1:13:00:: 07688265 1 0 -corn_whiskey%1:13:00:: 07906877 1 0 -corn_whisky%1:13:00:: 07906877 1 0 -cornaceae%1:20:00:: 12946088 1 0 -cornbread%1:13:00:: 07687789 1 0 -corncob%1:15:00:: 08544125 1 0 -corncrake%1:05:00:: 02015797 1 0 -corncrib%1:06:00:: 03109253 1 0 -cornea%1:08:00:: 05317354 1 0 -corneal%3:01:00:: 02704245 1 0 -corneal_graft%1:04:00:: 00681613 1 0 -corneal_transplant%1:04:00:: 00681613 1 0 -corned%5:00:00:preserved:02 01072196 1 0 -corned_beef%1:13:00:: 07664266 1 0 -corned_beef_hash%1:13:00:: 07869522 1 0 -corneille%1:18:00:: 10911104 1 0 -cornel%1:20:00:: 12946849 1 0 -cornelia_otis_skinner%1:18:00:: 11304669 1 0 -cornelian%1:27:00:: 14801594 1 0 -cornelian_cherry%1:20:00:: 12948495 1 0 -cornelis_jansen%1:18:00:: 11080745 1 0 -cornelius_jansenius%1:18:00:: 11080745 1 0 -cornelius_vanderbilt%1:18:00:: 11359187 1 0 -cornell%1:18:00:: 10911288 2 0 -cornell%1:18:01:: 10911534 1 0 -cornell_university%1:06:00:: 03109350 1 0 -corneous%5:00:00:hard:01 01151452 1 0 -corner%1:06:00:: 03109486 4 9 -corner%1:06:01:: 03109693 11 0 -corner%1:06:02:: 03109881 3 11 -corner%1:15:00:: 08544275 2 15 -corner%1:15:01:: 08659993 5 5 -corner%1:15:02:: 08544419 1 20 -corner%1:15:03:: 08544593 10 0 -corner%1:17:00:: 09257011 9 1 -corner%1:25:00:: 13872421 6 3 -corner%1:26:00:: 14445072 7 1 -corner%1:26:01:: 14408951 8 1 -corner%2:38:00:: 01909275 3 0 -corner%2:38:01:: 01934205 2 0 -corner%2:41:00:: 02442924 1 1 -corner_kick%1:04:00:: 00137709 1 0 -corner_man%1:18:00:: 10056719 1 0 -corner_pocket%1:06:00:: 03110100 1 0 -corner_post%1:06:00:: 03110202 1 1 -cornerback%1:18:00:: 09965787 1 0 -cornered%5:00:00:unfree:00 01064913 1 0 -cornerstone%1:06:00:: 03110332 3 0 -cornerstone%1:06:01:: 03110470 2 0 -cornerstone%1:09:00:: 05793554 1 0 -cornet%1:06:00:: 03110669 1 0 -cornetfish%1:05:00:: 01454545 1 0 -cornetist%1:18:00:: 10732010 1 0 -corneum%1:08:00:: 05243077 1 0 -cornfield%1:15:00:: 08544719 1 1 -cornflour%1:27:00:: 15054467 1 0 -cornflower%1:20:00:: 11947802 2 0 -cornflower%1:20:02:: 12475242 1 0 -cornflower_aster%1:20:00:: 12020184 1 0 -cornhusk%1:20:00:: 13139837 1 0 -cornhusker%1:18:00:: 09965905 1 0 -cornhusker%1:18:01:: 09744161 2 0 -cornhusker_state%1:15:00:: 09109444 1 0 -cornhusking%1:04:00:: 01265071 2 0 -cornhusking%1:14:00:: 08188967 1 0 -cornice%1:06:00:: 03111041 3 0 -cornice%1:06:01:: 03111177 2 0 -cornice%1:06:02:: 03111296 1 0 -cornice%2:40:00:: 02352946 1 0 -cornish%1:05:00:: 01790398 2 0 -cornish%1:10:00:: 06961681 1 0 -cornish%3:01:00:: 02704344 1 0 -cornish_fowl%1:05:00:: 01790398 1 0 -cornish_heath%1:20:00:: 12228689 1 0 -cornish_pasty%1:13:00:: 07865911 1 0 -cornishman%1:18:00:: 09703809 1 0 -cornishwoman%1:18:00:: 09703932 1 0 -cornmeal%1:13:00:: 07568095 1 1 -cornmeal_mush%1:13:00:: 07703333 1 0 -cornpone%1:13:00:: 07688624 1 0 -cornsilk%1:20:00:: 12145638 1 0 -cornsmut%1:20:00:: 13067191 1 0 -cornstalk%1:20:00:: 11678010 1 0 -cornstarch%1:27:00:: 15054467 1 0 -cornu%1:08:00:: 05607001 1 0 -cornucopia%1:07:00:: 05115804 2 0 -cornucopia%1:10:00:: 06808121 1 0 -cornus%1:20:00:: 12946578 1 0 -cornus_amomum%1:20:00:: 12947895 1 0 -cornus_canadensis%1:20:00:: 12948251 1 0 -cornus_florida%1:20:00:: 12947313 1 0 -cornus_mas%1:20:00:: 12948495 1 0 -cornus_obliqua%1:20:00:: 12947756 1 0 -cornus_sanguinea%1:20:00:: 12948053 1 0 -cornus_stolonifera%1:20:00:: 12947544 1 0 -cornwall%1:15:00:: 08881398 1 0 -cornwallis%1:18:00:: 10911687 1 0 -corny%5:00:00:unoriginal:00 01689223 1 0 -corokia%1:20:00:: 12948633 1 0 -corolla%1:20:00:: 11691046 1 0 -corollary%1:09:00:: 05780563 2 0 -corollary%1:11:00:: 07294260 1 0 -corona%1:06:00:: 03111483 6 0 -corona%1:08:00:: 05607126 5 0 -corona%1:19:00:: 11427067 1 1 -corona%1:19:01:: 11440802 3 0 -corona%1:19:02:: 11440691 4 0 -corona%1:20:00:: 11691332 2 0 -corona_borealis%1:17:00:: 09257141 1 0 -corona_discharge%1:19:00:: 11440802 1 0 -coronach%1:10:00:: 07050619 1 0 -coronal%1:06:00:: 04606014 1 0 -coronal_suture%1:08:00:: 05543917 1 0 -coronary%1:26:00:: 14102831 1 0 -coronary%3:01:00:: 02984607 1 0 -coronary-artery_disease%1:26:00:: 14108324 1 0 -coronary_artery%1:08:00:: 05343718 1 2 -coronary_artery_bypass_graft%1:04:00:: 00675808 1 0 -coronary_artery_disease%1:26:00:: 14108713 1 0 -coronary_bypass%1:04:00:: 00675808 1 0 -coronary_bypass_surgery%1:04:00:: 00675808 1 0 -coronary_care_unit%1:14:00:: 08077842 1 0 -coronary_failure%1:26:00:: 14112255 1 0 -coronary_heart_disease%1:26:00:: 14102631 1 0 -coronary_insufficiency%1:26:00:: 14113636 1 0 -coronary_occlusion%1:26:00:: 14102454 1 0 -coronary_sinus%1:08:00:: 05252402 1 0 -coronary_thrombosis%1:26:00:: 14102831 1 0 -coronate%2:41:00:: 02390949 1 0 -coronation%1:11:00:: 07453638 1 0 -coroner%1:18:00:: 09965985 1 5 -coronet%1:05:00:: 02462213 2 0 -coronet%1:06:00:: 03111564 1 0 -coroneted%5:00:00:noble:02 01591227 1 0 -coronilla%1:20:00:: 12518879 1 0 -coronilla_varia%1:20:00:: 12519089 1 0 -coronion%1:08:00:: 05232074 1 0 -coronoid_process%1:08:00:: 05472032 1 0 -coronoid_process_of_the_mandible%1:08:00:: 05472205 1 0 -coropuna%1:17:00:: 09257280 1 0 -corot%1:18:00:: 10911948 1 0 -corozo%1:20:00:: 12589142 1 0 -corozo_palm%1:20:00:: 12589142 1 0 -corp%1:14:00:: 08059412 1 0 -corporal%1:18:00:: 09966139 1 9 -corporal%5:00:00:corporeal:00 00630466 2 0 -corporal%5:00:00:physical:00 01778935 1 0 -corporal_punishment%1:04:00:: 01161161 1 0 -corporality%1:07:00:: 04760771 1 0 -corporate%3:01:00:: 02984781 1 4 -corporate%5:00:00:corporeal:00 00630466 2 2 -corporate%5:00:00:joint:00 02112701 3 0 -corporate%5:00:00:organized:02 01670669 4 0 -corporate_bond%1:21:00:: 13337770 1 0 -corporate_executive%1:18:00:: 09966255 1 0 -corporate_finance%1:04:00:: 01098968 1 0 -corporate_investor%1:14:00:: 08075929 1 0 -corporate_trust%1:14:00:: 08236621 1 0 -corporation%1:08:00:: 05556071 2 0 -corporation%1:14:00:: 08059412 1 40 -corporation_law%1:09:00:: 06162223 1 0 -corporatism%1:07:00:: 05197043 1 0 -corporatist%1:18:00:: 09966470 1 0 -corporatist%3:01:00:: 02984911 1 0 -corporeal%3:00:00:: 00629997 1 1 -corporeal%5:00:00:physical:00 01778935 2 0 -corporeality%1:07:00:: 04760771 1 1 -corposant%1:19:00:: 11440802 1 0 -corps%1:14:00:: 08212527 1 4 -corps%1:14:01:: 08213079 2 2 -corps_de_ballet%1:14:00:: 08189089 1 0 -corps_diplomatique%1:14:00:: 08357647 1 0 -corpse%1:08:00:: 05218119 1 22 -corpulence%1:07:00:: 05000537 1 1 -corpulency%1:07:00:: 05000342 1 0 -corpulent%5:00:00:fat:01 00987180 1 0 -corpus%1:08:00:: 05221526 3 0 -corpus%1:14:00:: 07955455 2 0 -corpus%1:21:00:: 13355868 1 0 -corpus_amygdaloideum%1:08:00:: 05495571 1 0 -corpus_callosum%1:08:00:: 05491461 1 0 -corpus_christi%1:15:00:: 09143649 2 0 -corpus_christi%1:28:00:: 15193660 1 0 -corpus_delicti%1:10:00:: 06734823 1 1 -corpus_geniculatum_laterale%1:08:00:: 05487694 1 0 -corpus_geniculatum_mediale%1:08:00:: 05487941 1 0 -corpus_luteum%1:08:00:: 05518614 1 0 -corpus_mamillare%1:08:00:: 05228020 1 0 -corpus_sternum%1:08:00:: 05281452 1 0 -corpus_striatum%1:08:00:: 05499542 1 0 -corpuscle%1:08:00:: 05449268 2 0 -corpuscle%1:27:00:: 14585519 1 0 -corpuscular%3:01:00:: 02984998 1 0 -corpuscular-radiation_pressure%1:19:00:: 11497173 1 1 -corpuscular_radiation%1:19:00:: 11499510 1 2 -corpuscular_theory%1:09:00:: 06106084 1 0 -corpuscular_theory_of_light%1:09:00:: 06106084 1 0 -corrade%2:35:00:: 01254013 1 0 -corral%1:06:00:: 03124590 1 2 -corral%2:35:00:: 01600478 1 1 -corral%2:35:01:: 01466198 2 0 -corral%2:35:02:: 01381796 3 0 -corrasion%1:22:00:: 13423615 1 0 -correct%2:29:04:: 00079470 8 0 -correct%2:30:00:: 00199659 1 13 -correct%2:30:09:: 00296178 7 0 -correct%2:32:00:: 00824292 3 1 -correct%2:38:03:: 01971603 6 0 -correct%2:41:00:: 02553428 5 0 -correct%2:41:01:: 02519991 2 5 -correct%2:42:03:: 02672540 4 0 -correct%3:00:00:: 00631391 1 5 -correct%3:00:04:: 00633410 4 0 -correct%5:00:00:proper:00 01879261 2 5 -correct%5:00:02:proper:00 01879464 3 2 -correctable%5:00:00:corrigible:00 00635078 2 0 -correctable%5:00:00:reversible:00 01759092 1 0 -corrected%3:00:00:: 00634062 1 0 -correction%1:04:00:: 00258854 1 2 -correction%1:04:01:: 00662527 7 0 -correction%1:04:02:: 01161821 6 0 -correction%1:07:00:: 05111511 5 0 -correction%1:10:00:: 06714288 4 0 -correction%1:10:01:: 06428537 3 1 -correction%1:23:00:: 13755957 2 1 -correctional%5:00:00:punitive:00 01902703 1 0 -correctional_institution%1:06:00:: 03111690 1 0 -correctional_rehabilitation%1:04:00:: 00400851 1 0 -corrections%1:04:00:: 01166092 2 0 -corrections%1:14:00:: 08120624 1 0 -correctitude%1:07:00:: 04898437 1 0 -corrective%1:06:00:: 03111899 1 0 -corrective%5:00:00:bettering:00 00232754 2 0 -corrective%5:00:00:nonindulgent:00 01300661 1 0 -correctly%4:02:01:: 00203922 1 6 -correctness%1:07:01:: 04802198 1 2 -correctness%1:07:02:: 04899201 2 0 -correggio%1:18:00:: 10912079 1 0 -corregidor%1:04:00:: 01270343 1 0 -correlate%1:09:00:: 05858407 1 0 -correlate%2:31:00:: 00713996 2 0 -correlate%2:42:00:: 02658979 1 4 -correlate%5:00:00:related:02 01974298 1 0 -correlated%5:00:00:related:02 01974298 1 2 -correlation%1:09:00:: 06032246 2 2 -correlation%1:09:01:: 06031248 3 0 -correlation%1:24:00:: 13841651 1 9 -correlation_coefficient%1:09:00:: 06032246 1 0 -correlation_matrix%1:09:00:: 06030049 1 0 -correlation_table%1:09:00:: 06030906 1 0 -correlational%3:01:00:: 02704461 1 0 -correlational_analysis%1:09:00:: 06029830 1 0 -correlational_statistics%1:09:00:: 06031248 1 0 -correlative%1:09:00:: 05858407 1 0 -correlative%5:00:00:reciprocal:00 01946267 2 0 -correlative%5:00:00:related:02 01974298 1 0 -correlativity%1:24:00:: 13841651 1 0 -correspond%2:32:00:: 01006810 3 3 -correspond%2:42:00:: 02657219 1 9 -correspond%2:42:01:: 02699497 4 0 -correspond%2:42:04:: 02633534 2 6 -correspondence%1:07:01:: 04745240 5 0 -correspondence%1:07:02:: 04713428 2 2 -correspondence%1:07:03:: 05064827 4 0 -correspondence%1:10:00:: 06623614 1 5 -correspondence%1:24:01:: 13817279 3 0 -correspondence_course%1:04:00:: 00890320 1 1 -correspondence_school%1:14:00:: 08278589 1 0 -correspondent%1:18:00:: 09966554 1 3 -correspondent%1:18:01:: 09966710 2 2 -correspondent%5:00:00:similar:00 02071973 1 0 -corresponding%5:00:00:related:02 01974451 1 9 -corresponding%5:00:00:same:00 02063554 3 1 -corresponding%5:00:00:similar:00 02072660 2 7 -correspondingly%4:02:00:: 00187228 1 1 -corrida%1:06:00:: 02917163 1 0 -corridor%1:06:00:: 03112099 1 9 -corrie%1:17:00:: 09245515 1 0 -corrigenda%1:10:00:: 06489847 1 0 -corrigendum%1:10:00:: 06769578 1 0 -corrigible%3:00:00:: 00634862 1 0 -corroborant%5:00:00:invigorating:00 01357206 1 0 -corroborate%2:31:00:: 00665886 1 3 -corroborate%2:32:00:: 01012561 2 1 -corroborate%2:42:00:: 02663340 3 0 -corroborating_evidence%1:10:00:: 06735731 1 0 -corroboration%1:10:00:: 06650431 1 0 -corroborative%5:00:00:supportive:00 02355521 1 0 -corroboratory%5:00:00:supportive:00 02355521 1 0 -corrode%2:30:00:: 00273963 2 0 -corrode%2:30:01:: 00274283 1 1 -corroded%5:00:00:unsound:01 02275803 1 0 -corrodentia%1:05:00:: 02260183 1 0 -corroding%1:22:00:: 13453428 1 0 -corrosion%1:22:00:: 13453428 2 0 -corrosion%1:26:00:: 14561995 1 0 -corrosion-resistant%5:00:00:impervious:00 01775034 1 0 -corrosive%1:27:00:: 14823788 1 0 -corrosive%5:00:00:destructive:00 00587376 1 1 -corrosive%5:00:00:sarcastic:00 02079732 2 0 -corrosive_sublimate%1:27:00:: 14950694 1 0 -corrugate%2:35:00:: 01387164 1 0 -corrugated%5:00:00:furrowed:00 02244198 1 1 -corrugated_board%1:27:00:: 14800979 1 0 -corrugated_cardboard%1:27:00:: 14800979 1 0 -corrugated_fastener%1:06:00:: 03112240 1 0 -corrugated_iron%1:06:00:: 03112431 1 1 -corrugation%1:04:00:: 00406485 2 0 -corrugation%1:25:00:: 13902229 1 0 -corrupt%2:30:00:: 00203081 4 0 -corrupt%2:35:00:: 01537959 3 0 -corrupt%2:40:00:: 02284096 2 0 -corrupt%2:41:00:: 02579447 1 1 -corrupt%3:00:00:: 00620731 1 3 -corrupt%3:00:04:: 02319129 2 0 -corrupt%5:00:00:imperfect:00 01752792 3 0 -corrupt%5:00:00:stale:00 01070716 4 0 -corrupted%5:00:00:corrupt:00 00621100 2 0 -corrupted%5:00:00:imperfect:00 01752792 1 0 -corruptedly%4:02:00:: 00500015 1 0 -corruptibility%1:07:00:: 04851585 1 0 -corruptible%5:00:00:corrupt:00 00621207 1 0 -corrupting%5:00:00:infectious:00 01303449 3 0 -corrupting%5:00:00:noxious:00 01611490 2 0 -corrupting%5:00:00:seductive:00 02097796 1 0 -corruption%1:04:00:: 00272448 5 0 -corruption%1:04:01:: 00159396 6 0 -corruption%1:07:00:: 04853948 1 1 -corruption%1:07:01:: 04850996 4 0 -corruption%1:22:00:: 13453640 3 0 -corruption%1:26:00:: 14561102 2 0 -corruptive%5:00:00:evil:00 01132366 1 0 -corruptly%4:02:00:: 00500015 1 0 -corruptness%1:07:00:: 04853948 2 0 -corruptness%1:26:00:: 14440035 1 0 -corsage%1:06:00:: 02879087 1 1 -corsair%1:06:00:: 03112605 2 0 -corsair%1:18:00:: 09966941 1 0 -corse%1:15:00:: 08941895 2 0 -corse%1:15:01:: 08942091 1 0 -corselet%1:06:00:: 03112719 1 0 -corset%1:06:00:: 03112869 1 0 -corset%2:29:00:: 00049669 1 0 -corsica%1:15:00:: 08941895 2 0 -corsica%1:15:01:: 08942091 1 0 -corsican%3:01:00:: 03025252 1 0 -corsican_army%1:14:00:: 08015731 1 0 -corslet%1:06:00:: 03112719 1 0 -cortaderia%1:20:00:: 12114981 1 0 -cortaderia_richardii%1:20:00:: 12115383 1 0 -cortaderia_selloana%1:20:00:: 12115180 1 0 -cortef%1:27:00:: 14752702 1 0 -cortege%1:14:00:: 08429167 2 0 -cortege%1:14:01:: 08429482 1 0 -cortes%1:18:00:: 10912243 1 0 -cortex%1:08:00:: 05490578 2 1 -cortex%1:08:01:: 05486510 1 4 -cortex%1:08:02:: 05320636 3 0 -cortez%1:18:00:: 10912243 1 0 -cortical%3:01:00:: 02974979 1 6 -cortical_area%1:08:00:: 05486920 1 0 -cortical_cataract%1:26:00:: 14256014 1 0 -cortical_epilepsy%1:26:00:: 14086626 1 0 -cortical_potential%1:19:00:: 11431302 1 1 -cortical_region%1:08:00:: 05486920 1 0 -cortically%4:02:00:: 00093618 1 1 -corticifugal%5:00:00:efferent:00 00334379 1 0 -corticipetal%5:00:00:afferent:00 00333824 1 0 -corticium%1:20:00:: 13015229 1 0 -corticium_salmonicolor%1:20:00:: 13015509 1 0 -corticium_solani%1:20:00:: 13015688 1 0 -cortico-hypothalamic%3:01:00:: 02982840 1 2 -corticoafferent%5:00:00:afferent:00 00333824 1 0 -corticoefferent%5:00:00:efferent:00 00334379 1 0 -corticofugal%5:00:00:efferent:00 00334379 1 2 -corticoid%1:27:00:: 14751417 1 0 -corticospinal_tract%1:08:00:: 05491612 1 0 -corticosteroid%1:27:00:: 14751417 1 1 -corticosterone%1:27:00:: 14745891 1 0 -corticotrophin%1:08:00:: 05408113 1 0 -corticotropin%1:08:00:: 05408113 1 1 -cortina%1:20:00:: 13073979 1 0 -cortinariaceae%1:20:00:: 13074084 1 0 -cortinarius%1:20:00:: 13074277 1 0 -cortinarius_armillatus%1:20:00:: 13074619 1 0 -cortinarius_atkinsonianus%1:20:00:: 13074814 1 0 -cortinarius_corrugatus%1:20:00:: 13075020 1 0 -cortinarius_gentilis%1:20:00:: 13075272 1 0 -cortinarius_mutabilis%1:20:00:: 13075441 1 0 -cortinarius_semisanguineus%1:20:00:: 13075684 1 0 -cortinarius_subfoetidus%1:20:00:: 13075847 1 0 -cortinarius_violaceus%1:20:00:: 13076041 1 0 -cortisol%1:27:00:: 14752702 1 0 -cortisone%1:27:00:: 14752952 1 0 -cortland%1:13:00:: 07740033 1 0 -cortone_acetate%1:27:00:: 14752952 1 0 -corundom%1:27:00:: 14672717 1 0 -corundum%1:27:00:: 14672717 1 0 -coruscant%5:00:00:bright:00 00279618 1 0 -coruscate%2:30:00:: 00473003 2 0 -coruscate%2:43:00:: 02766390 1 0 -coruscation%1:09:00:: 05619903 2 0 -coruscation%1:11:00:: 07412668 1 0 -corvee%1:04:00:: 00621326 1 0 -corvette%1:06:00:: 03113035 1 0 -corvidae%1:05:00:: 01578341 1 0 -corvine%3:01:00:: 02845158 1 0 -corvine_bird%1:05:00:: 01578575 1 0 -corvus%1:05:00:: 01578821 2 0 -corvus%1:17:00:: 09257429 1 0 -corvus_brachyrhyncos%1:05:00:: 01579149 1 0 -corvus_corax%1:05:00:: 01579260 1 0 -corvus_frugilegus%1:05:00:: 01579410 1 0 -corvus_monedula%1:05:00:: 01579578 1 0 -coryanthes%1:20:00:: 12054499 1 0 -corydalidae%1:05:00:: 02265717 1 0 -corydalis%1:05:00:: 02265860 3 0 -corydalis%1:20:00:: 11903881 2 0 -corydalis%1:20:01:: 11904109 1 0 -corydalis_claviculata%1:20:00:: 11904274 1 0 -corydalis_sempervirens%1:20:00:: 11904477 1 0 -corydalis_solida%1:20:00:: 11904743 1 0 -corydalus%1:05:00:: 02265860 1 0 -corydalus_cornutus%1:05:00:: 02266050 1 0 -corylaceae%1:20:00:: 12288422 1 0 -corylopsis%1:20:00:: 12315424 1 0 -corylus%1:20:00:: 12288598 1 0 -corylus_americana%1:20:00:: 12289310 1 0 -corylus_avellana%1:20:00:: 12289433 1 0 -corylus_avellana_grandis%1:20:00:: 12289433 1 0 -corylus_cornuta%1:20:00:: 12289585 1 0 -corymb%1:20:00:: 13131282 1 0 -corymbose%3:01:00:: 02704611 1 0 -corynebacteriaceae%1:05:00:: 01366015 1 0 -corynebacterium%1:05:00:: 01366276 1 0 -corynebacterium_diphtheriae%1:05:00:: 01366700 1 0 -corypha%1:20:00:: 12589286 1 0 -corypha_gebanga%1:20:00:: 12589458 1 0 -corypha_umbraculifera%1:20:00:: 12589841 1 0 -corypha_utan%1:20:00:: 12589458 1 0 -coryphaena_equisetis%1:05:00:: 02582349 1 0 -coryphaena_hippurus%1:05:00:: 02582220 1 0 -coryphaenidae%1:05:00:: 02581803 1 0 -coryphantha%1:20:00:: 11845277 1 0 -corythosaur%1:05:00:: 01706686 1 0 -corythosaurus%1:05:00:: 01706686 1 0 -coryza%1:26:00:: 14355060 1 0 -cos%1:13:00:: 07724492 2 0 -cos%1:24:00:: 13787723 1 0 -cos_lettuce%1:13:00:: 07724492 2 0 -cos_lettuce%1:20:00:: 11986729 1 0 -cosa_nostra%1:14:00:: 08245802 1 0 -coscoroba%1:05:00:: 01858281 1 0 -cosec%1:24:00:: 13789002 1 0 -cosecant%1:24:00:: 13789002 1 1 -coseismal%5:00:00:unstable:00 02292303 1 0 -coseismic%5:00:00:unstable:00 02292303 1 0 -cosh%1:06:00:: 02847461 1 0 -cosh%2:35:00:: 01401552 1 0 -cosher%5:00:00:clean:04 00427644 1 0 -cosign%2:32:00:: 00998030 2 0 -cosign%2:41:00:: 02465145 1 0 -cosignatory%1:18:00:: 09613690 1 0 -cosignatory%5:00:00:joint:00 02112891 1 0 -cosigner%1:18:00:: 09613690 1 1 -cosigner%1:18:01:: 09613853 2 0 -cosily%4:02:00:: 00187120 1 1 -cosimo_de_medici%1:18:00:: 10912451 1 0 -cosimo_the_elder%1:18:00:: 10912451 1 0 -cosine%1:24:00:: 13787723 1 0 -cosiness%1:26:00:: 14446298 1 0 -cosmea%1:20:00:: 11958080 1 0 -cosmetic%1:06:00:: 03113152 1 0 -cosmetic%5:00:00:aesthetic:00 00070111 2 0 -cosmetic%5:00:00:nonfunctional:00 01091234 1 0 -cosmetic_dentistry%1:09:00:: 06047923 1 0 -cosmetic_surgeon%1:18:00:: 09967270 1 0 -cosmetic_surgery%1:04:00:: 00674158 1 0 -cosmetically%4:02:00:: 00078187 1 0 -cosmetician%1:18:00:: 09967063 1 0 -cosmetician%1:18:01:: 09845999 2 0 -cosmetologist%1:18:00:: 09967159 1 0 -cosmetology%1:04:00:: 00631887 1 0 -cosmic%3:01:00:: 02702807 1 7 -cosmic%5:00:00:large:00 01385663 2 0 -cosmic_background_radiation%1:19:00:: 11441077 1 0 -cosmic_dust%1:19:00:: 11441416 1 0 -cosmic_microwave_background%1:19:00:: 11441077 1 0 -cosmic_microwave_background_radiation%1:19:00:: 11441077 1 0 -cosmic_radiation%1:19:00:: 11441561 1 0 -cosmic_ray%1:19:00:: 11441707 1 0 -cosmic_string%1:17:00:: 09449282 1 0 -cosmic_time%1:28:00:: 15116724 1 0 -cosmid%1:05:00:: 01372199 1 0 -cosmocampus%1:05:00:: 01456296 1 0 -cosmocampus_profundus%1:05:00:: 01456454 1 0 -cosmogenic%3:01:00:: 02703438 1 0 -cosmogeny%1:09:00:: 06098195 1 0 -cosmogonic%3:01:00:: 02703438 1 0 -cosmogonical%3:01:00:: 02703438 1 0 -cosmogony%1:09:00:: 06098195 1 0 -cosmographer%1:18:00:: 09819477 1 0 -cosmographist%1:18:00:: 09819477 1 0 -cosmography%1:06:00:: 03113337 2 0 -cosmography%1:09:00:: 06123126 1 0 -cosmolatry%1:04:00:: 01045924 1 0 -cosmologic%3:01:00:: 02703438 1 0 -cosmologic%3:01:01:: 02703001 2 0 -cosmological%3:01:00:: 02703438 1 0 -cosmological%3:01:01:: 02703001 2 0 -cosmological_constant%1:23:00:: 13589546 1 0 -cosmologist%1:18:00:: 09819667 1 0 -cosmology%1:09:00:: 06098195 2 0 -cosmology%1:09:01:: 06163223 1 0 -cosmonaut%1:18:00:: 09818022 1 0 -cosmopolitan%1:18:00:: 09967406 1 0 -cosmopolitan%3:00:00:: 01106614 1 0 -cosmopolitan%3:00:02:: 00635955 2 0 -cosmopolitan%5:00:00:comprehensive:00 00527188 3 0 -cosmopolite%1:18:00:: 09967406 1 0 -cosmos%1:17:00:: 09466280 1 1 -cosmos%1:20:00:: 11958080 2 0 -cosmotron%1:06:00:: 03113505 1 0 -cosponsor%2:40:00:: 02220349 1 2 -coss%1:23:00:: 13652529 1 0 -cossack%1:18:00:: 09967555 1 0 -cosset%2:41:00:: 02570267 1 0 -cost%1:07:00:: 05145118 2 7 -cost%1:07:01:: 05163807 3 4 -cost%1:21:00:: 13275847 1 75 -cost%2:42:00:: 02702508 1 35 -cost%2:42:01:: 02628961 2 16 -cost-benefit_analysis%1:09:00:: 05781953 1 0 -cost-effective%5:00:00:efficient:00 00840103 1 0 -cost-efficient%5:00:00:efficient:00 00840103 1 0 -cost-of-living_allowance%1:21:00:: 13274364 1 0 -cost-of-living_benefit%1:21:00:: 13297097 1 0 -cost-of-living_index%1:10:00:: 06641654 1 0 -cost-plus%5:00:00:indeterminate:01 00740767 1 1 -cost-plus_contract%1:10:00:: 06522784 1 0 -cost-pull_inflation%1:22:00:: 13453737 1 0 -cost_accountant%1:18:00:: 09967816 1 1 -cost_accounting%1:04:00:: 00619011 1 0 -cost_analysis%1:04:00:: 00648790 1 1 -cost_cutting%1:04:00:: 00352778 1 0 -cost_increase%1:07:00:: 05110408 1 0 -cost_ledger%1:21:00:: 13404534 1 0 -cost_of_capital%1:21:00:: 13305932 1 0 -cost_of_living%1:21:00:: 13302001 1 3 -cost_overrun%1:21:00:: 13301835 1 0 -costa%1:08:01:: 05279026 2 0 -costa%1:08:02:: 05592126 1 0 -costa_rica%1:15:00:: 08736107 1 0 -costa_rican%1:18:00:: 09698788 1 0 -costa_rican%3:01:00:: 03056693 1 0 -costa_rican_colon%1:23:00:: 13667372 1 0 -costa_rican_monetary_unit%1:23:00:: 13667255 1 0 -costal%3:01:00:: 02704844 1 0 -costal_cartilage%1:08:00:: 05592302 1 0 -costal_groove%1:08:00:: 05223248 1 0 -costalgia%1:26:00:: 14330046 1 0 -costanoan%1:10:00:: 06924560 2 0 -costanoan%1:18:00:: 09653805 1 0 -costate%5:00:00:ribbed:00 02021664 2 0 -costate%5:00:00:rough:00 02240379 1 0 -costermonger%1:18:00:: 09968128 1 0 -costia%1:05:00:: 01419573 1 0 -costia_necatrix%1:05:00:: 01419573 1 0 -costiasis%1:26:00:: 14262740 1 0 -costing%1:04:00:: 00619142 1 0 -costive%3:00:00:: 00637751 1 0 -costless%5:00:00:unpaid:00 01710260 1 0 -costliness%1:07:00:: 05146272 1 0 -costly%5:00:01:expensive:00 00933599 2 2 -costly%5:00:02:expensive:00 00933941 1 2 -costmary%1:13:00:: 07817599 2 0 -costmary%1:20:00:: 12021499 1 0 -costoaxillary_vein%1:08:00:: 05364730 1 0 -costochondritis%1:26:00:: 14341652 1 0 -costs%1:21:00:: 13293625 1 0 -costume%1:06:00:: 03113657 1 7 -costume%1:06:01:: 03113835 4 0 -costume%1:06:02:: 03114041 2 1 -costume%1:06:03:: 03114236 3 0 -costume%2:29:00:: 00051761 1 1 -costume%2:40:00:: 02337545 2 0 -costume_designer%1:18:01:: 09968259 1 0 -costumed%5:00:00:clothed:00 00455485 1 0 -costumer%1:18:00:: 09968259 1 0 -costumier%1:18:00:: 09968259 1 0 -costus_oil%1:27:00:: 14893406 1 0 -costusroot%1:20:00:: 12010188 1 0 -cosy%1:06:00:: 03114379 1 0 -cosy%5:00:00:comfortable:00 00477284 1 0 -cot%1:06:00:: 03114504 3 0 -cot%1:06:01:: 03131574 2 0 -cot%1:06:02:: 03342432 1 0 -cot_death%1:26:00:: 14310292 1 0 -cotacachi%1:15:00:: 09174166 1 0 -cotan%1:24:00:: 13788369 1 0 -cotangent%1:24:00:: 13788369 1 0 -cote%1:06:00:: 03114634 1 0 -cote_d'azur%1:15:00:: 08939437 1 0 -cote_d'ivoire%1:15:00:: 08736517 1 0 -cote_d'ivoire_franc%1:23:00:: 13677998 1 0 -cotenant%1:18:00:: 09968433 1 0 -coterie%1:14:00:: 08240633 1 0 -coterminous%5:00:00:commensurate:00 00481463 1 0 -coterminously%4:02:00:: 00020676 1 0 -cotes_de_provence%1:13:00:: 07896165 1 0 -cothromboplastin%1:27:00:: 15071503 1 0 -cotilion%1:04:00:: 00536655 2 0 -cotilion%1:11:00:: 07449037 1 0 -cotillion%1:04:00:: 00536655 2 0 -cotillion%1:11:00:: 07449037 1 0 -cotinga%1:05:00:: 01550761 1 0 -cotingidae%1:05:00:: 01550429 1 0 -cotinus%1:20:00:: 12760013 1 0 -cotinus_americanus%1:20:00:: 12760316 1 0 -cotinus_coggygria%1:20:00:: 12760539 1 0 -cotinus_obovatus%1:20:00:: 12760316 1 0 -cotoneaster%1:20:00:: 12625383 1 0 -cotoneaster_dammeri%1:20:00:: 12625670 1 0 -cotoneaster_horizontalis%1:20:00:: 12625823 1 0 -cotonou%1:15:00:: 08759852 1 0 -cotopaxi%1:15:00:: 09174301 1 0 -cotswold%1:05:00:: 02413484 1 0 -cotswold_hills%1:15:00:: 08796707 1 0 -cotswolds%1:15:00:: 08796707 1 0 -cottage%1:06:00:: 02919792 1 4 -cottage_cheese%1:13:00:: 07851767 1 0 -cottage_dweller%1:18:00:: 09968549 1 0 -cottage_industry%1:04:00:: 00913427 1 0 -cottage_pie%1:13:00:: 07866151 1 0 -cottage_pink%1:20:00:: 11809594 1 0 -cottage_tent%1:06:00:: 03114743 1 1 -cottage_tulip%1:20:00:: 12454793 1 0 -cottager%1:18:00:: 09968549 1 0 -cottar%1:06:00:: 03114839 2 0 -cottar%1:18:00:: 09968741 1 0 -cotter%1:06:00:: 03114839 3 0 -cotter%1:18:00:: 09968652 2 0 -cotter%1:18:01:: 09968741 1 0 -cotter_pin%1:06:00:: 03115014 1 1 -cottidae%1:05:00:: 02644967 1 0 -cottier%1:18:00:: 09968652 1 0 -cotton%1:06:00:: 03115180 2 2 -cotton%1:06:01:: 03115301 4 0 -cotton%1:20:00:: 12175949 3 0 -cotton%1:27:01:: 14870078 1 6 -cotton%2:37:00:: 01777107 1 0 -cotton-seed_tree%1:20:00:: 11938261 1 0 -cotton_ball%1:26:00:: 14279543 1 0 -cotton_bollworm%1:05:00:: 02310334 1 0 -cotton_cake%1:27:00:: 14824556 1 0 -cotton_candy%1:13:00:: 07605040 1 0 -cotton_fiber%1:27:00:: 14870078 1 0 -cotton_flannel%1:06:00:: 03115400 1 0 -cotton_gin%1:06:00:: 03115525 1 0 -cotton_grass%1:20:00:: 12152532 1 0 -cotton_mill%1:06:00:: 03115663 1 0 -cotton_mouse%1:05:00:: 02337332 1 0 -cotton_on%2:31:00:: 00590366 1 0 -cotton_plant%1:20:00:: 12175949 1 0 -cotton_rat%1:05:00:: 02338722 1 0 -cotton_rose%1:20:01:: 11970101 2 0 -cotton_rose%1:20:02:: 12179122 1 0 -cotton_rush%1:20:00:: 12152532 1 0 -cotton_stainer%1:05:00:: 02245443 1 0 -cotton_strain%1:05:00:: 02248062 1 0 -cotton_thistle%1:20:00:: 11998888 1 0 -cotton_up%2:37:09:: 01804753 1 0 -cotton_wool%1:27:01:: 14870078 1 0 -cottonmouth%1:05:00:: 01754533 1 1 -cottonmouth_moccasin%1:05:00:: 01754533 1 0 -cottonseed%1:20:00:: 11689815 1 0 -cottonseed_cake%1:27:00:: 14824556 1 0 -cottonseed_oil%1:13:00:: 07674393 1 0 -cottontail%1:05:00:: 02325366 1 0 -cottontail_rabbit%1:05:00:: 02325366 1 0 -cottonweed%1:20:01:: 11825749 2 0 -cottonweed%1:20:03:: 11921395 1 0 -cottonwick%1:05:00:: 02589196 1 0 -cottonwood%1:20:00:: 12732756 1 0 -cottonwood%1:20:02:: 12203896 2 0 -cottony%5:00:00:soft:01 01153595 1 0 -cottony-white%5:00:00:achromatic:00 00389035 1 0 -cottrell_precipitator%1:06:00:: 03998673 1 0 -cottus%1:05:00:: 02645143 1 0 -cotula%1:20:00:: 11958316 1 0 -cotula_coronopifolia%1:20:00:: 11958499 1 0 -coturnix%1:05:00:: 01804796 1 0 -coturnix_communis%1:05:00:: 01805070 1 0 -coturnix_coturnix%1:05:00:: 01805070 1 0 -cotyledon%1:20:00:: 11686398 1 0 -cotyloid%5:00:00:concave:00 00535844 1 0 -cotyloid_cavity%1:08:00:: 05596224 1 0 -cotyloid_joint%1:08:00:: 05595531 1 0 -cotyloidal%5:00:00:concave:00 00535844 1 0 -coucal%1:05:00:: 01824575 1 0 -couch%1:06:00:: 04256520 1 5 -couch%1:06:01:: 03115762 3 0 -couch%1:06:02:: 03115897 2 0 -couch%2:32:00:: 00981276 1 1 -couch_grass%1:20:00:: 12105578 1 0 -couch_potato%1:18:00:: 09944529 1 0 -couchant%5:00:00:unerect:00 01238773 1 0 -couchette%1:06:00:: 03116008 1 0 -coude_system%1:06:00:: 03116163 1 0 -coude_telescope%1:06:00:: 03116163 1 0 -coue%1:18:00:: 10912626 1 0 -cougar%1:05:00:: 02125311 1 0 -cough%1:26:00:: 14359174 1 0 -cough%2:29:00:: 00005815 1 6 -cough_drop%1:13:00:: 07607967 1 0 -cough_out%2:29:00:: 00006238 1 0 -cough_up%2:29:00:: 00006238 2 0 -cough_up%2:40:00:: 02200341 1 0 -coughing%1:26:00:: 14359174 1 0 -coughing_up%1:04:00:: 00118445 1 0 -coulisse%1:06:00:: 03116333 2 0 -coulisse%1:06:01:: 03116435 1 0 -coulomb%1:18:00:: 10912802 2 0 -coulomb%1:23:00:: 13636648 1 0 -coulomb's_law%1:09:00:: 05876148 1 0 -coulter%1:06:00:: 03073384 1 0 -coumadin%1:06:00:: 04551205 1 0 -coumara_nut%1:20:00:: 11750173 1 0 -coumarone%1:27:00:: 14898101 1 0 -coumarone-indene_resin%1:27:00:: 14824702 1 0 -coumarone_resin%1:27:00:: 14824702 1 0 -coumarouna%1:20:00:: 11749742 1 0 -coumarouna_odorata%1:20:00:: 11749920 1 0 -council%1:14:00:: 08309409 3 0 -council%1:14:01:: 08310949 1 8 -council%1:14:02:: 08312559 2 0 -council_bluffs%1:15:00:: 09086509 1 0 -council_board%1:06:00:: 03090000 1 0 -council_chamber%1:06:00:: 02857644 1 0 -council_member%1:18:00:: 09944763 1 0 -council_of_basel-ferrara-florence%1:14:00:: 08317139 1 0 -council_of_chalcedon%1:14:00:: 08314153 1 0 -council_of_constance%1:14:00:: 08316965 1 0 -council_of_economic_advisors%1:14:00:: 08124496 1 0 -council_of_ephesus%1:14:00:: 08313983 1 0 -council_of_trent%1:14:00:: 08317529 1 0 -council_of_vienne%1:14:00:: 08316748 1 0 -council_on_environmental_policy%1:14:00:: 08128004 1 0 -council_table%1:06:00:: 03090000 1 0 -council_tax%1:21:00:: 13312754 1 0 -councillor%1:18:00:: 09944763 1 0 -councillorship%1:04:00:: 00591111 1 0 -councilman%1:18:00:: 09944677 1 0 -councilorship%1:04:00:: 00591111 1 0 -councilwoman%1:18:00:: 09944931 1 0 -counsel%1:10:00:: 06650701 2 0 -counsel%1:18:00:: 09775663 1 5 -counsel%2:32:00:: 00872886 1 3 -counsel_to_the_crown%1:18:00:: 10235385 1 0 -counseling%1:10:00:: 06650701 1 4 -counselling%1:10:00:: 06650701 1 0 -counsellor%1:18:00:: 09775663 3 0 -counsellor%1:18:01:: 09968845 2 0 -counsellor%1:18:02:: 09969062 1 0 -counsellorship%1:04:00:: 00591236 1 0 -counselor%1:18:00:: 09775663 3 0 -counselor%1:18:01:: 09968845 1 3 -counselor%1:18:02:: 09969062 2 1 -counselor-at-law%1:18:00:: 09775663 1 0 -counselorship%1:04:00:: 00591236 1 0 -count%1:04:00:: 00634586 2 4 -count%1:18:00:: 09969218 3 0 -count%1:23:00:: 13591761 1 4 -count%2:31:00:: 00685081 6 2 -count%2:31:02:: 00712708 8 0 -count%2:31:12:: 00712556 9 0 -count%2:32:00:: 00948071 1 23 -count%2:32:01:: 00947857 4 3 -count%2:32:03:: 00950431 3 4 -count%2:42:00:: 02645839 2 7 -count%2:42:01:: 02731632 5 2 -count%2:42:04:: 02747140 7 0 -count_alessandro_di_cagliostro%1:18:00:: 10878672 1 0 -count_alessandro_volta%1:18:00:: 11368368 1 0 -count_down%2:32:00:: 00947717 1 0 -count_ferdinand_von_zeppelin%1:18:00:: 11406141 1 0 -count_fleet%1:05:00:: 02384120 1 0 -count_lev_nikolayevitch_tolstoy%1:18:00:: 11345378 1 0 -count_maurice_maeterlinck%1:18:00:: 11148899 1 0 -count_nikolaus_ludwig_von_zinzendorf%1:18:00:: 11407465 1 0 -count_noun%1:10:00:: 06319799 1 0 -count_off%2:32:00:: 00975733 1 0 -count_on%2:31:01:: 00712135 1 1 -count_out%2:33:00:: 01101313 1 0 -count_palatine%1:18:00:: 09969375 1 0 -count_per_minute%1:28:00:: 15285180 1 0 -count_rumford%1:18:00:: 11339669 1 0 -countable%5:00:00:calculable:00 00301589 1 0 -countdown%1:04:00:: 00653518 1 0 -countenance%1:07:00:: 04679549 1 6 -countenance%1:08:00:: 05601357 3 1 -countenance%1:10:00:: 06687358 2 1 -countenance%2:32:00:: 00802318 1 0 -counter%1:04:00:: 00135504 9 0 -counter%1:06:00:: 03116530 1 3 -counter%1:06:01:: 03116767 3 1 -counter%1:06:02:: 03116942 8 0 -counter%1:06:03:: 03117199 2 1 -counter%1:06:04:: 02912065 4 1 -counter%1:06:06:: 03117420 7 0 -counter%1:10:00:: 07199922 6 0 -counter%1:18:00:: 09969491 5 0 -counter%2:32:00:: 00815379 1 2 -counter%2:41:00:: 02565491 2 1 -counter%4:02:00:: 00293253 1 1 -counter%5:00:00:negative:02 01818680 1 2 -counter-drill%2:35:00:: 01443631 1 1 -counter-revolutionist%1:18:00:: 09969869 1 0 -counter-sabotage%1:04:00:: 00986813 1 0 -counter_check%1:21:00:: 13382614 1 0 -counter_conditioning%1:09:00:: 05759949 1 0 -counter_reformation%1:14:00:: 08474623 1 0 -counter_tube%1:06:00:: 03118346 1 0 -counteract%2:41:00:: 02564841 1 2 -counteract%2:41:01:: 02543607 4 0 -counteract%2:41:02:: 02564973 2 1 -counteract%2:41:03:: 02543874 3 1 -counteraction%1:04:00:: 00233386 1 0 -counteractive%5:00:00:active:07 00042837 1 0 -counteractively%4:02:00:: 00293329 1 0 -counterargument%1:10:00:: 06649108 1 0 -counterattack%1:04:00:: 00978173 1 1 -counterattack%1:04:01:: 00458094 2 0 -counterattack%2:33:00:: 01125084 1 1 -counterattraction%1:10:00:: 06615736 1 0 -counterbalance%1:06:00:: 03118539 1 1 -counterbalance%1:21:00:: 13291189 3 0 -counterbalance%1:25:00:: 13897996 2 0 -counterbalance%2:41:00:: 02543874 3 0 -counterbalance%2:42:00:: 02666531 2 0 -counterbalance%2:42:01:: 02672540 1 1 -counterbalanced%5:00:00:balanced:00 00893878 1 1 -counterbattery_fire%1:04:00:: 00989937 1 0 -counterblast%1:10:00:: 06711705 1 0 -counterblow%1:04:00:: 01173569 1 0 -counterbombardment%1:04:00:: 00990071 1 0 -counterbore%1:06:00:: 03117642 1 0 -counterchallenge%2:32:00:: 00808528 1 1 -counterchange%2:30:00:: 00121926 1 0 -countercharge%1:04:00:: 00974994 2 0 -countercharge%1:10:00:: 06731069 1 0 -countercheck%1:09:00:: 05738894 2 0 -countercheck%1:26:00:: 14015266 1 0 -countercheck%2:41:00:: 02533508 2 0 -countercheck%2:41:01:: 02564973 1 0 -counterclaim%1:04:00:: 01184407 1 0 -counterclaim%2:32:00:: 01018645 1 0 -counterclockwise%3:00:00:: 00442057 1 0 -counterclockwise%4:02:00:: 00254059 1 0 -counterclockwise_rotation%1:11:00:: 07441494 1 0 -countercoup%1:04:00:: 01145219 1 0 -counterculture%1:09:00:: 05752020 1 0 -countercurrent%1:04:00:: 01168199 2 0 -countercurrent%1:11:00:: 07404584 1 0 -counterdemonstration%1:04:00:: 01177990 1 0 -counterdemonstrator%1:18:00:: 09969589 1 0 -counterespionage%1:04:00:: 00654683 1 0 -counterexample%1:09:00:: 05826832 1 0 -counterfactual%5:00:00:conditional:00 00555709 1 0 -counterfactuality%1:07:00:: 04759712 1 0 -counterfeit%1:06:00:: 03562262 1 0 -counterfeit%2:36:00:: 01654271 1 0 -counterfeit%3:00:00:: 01116380 1 0 -counterfeiter%1:18:00:: 10105085 1 0 -counterfire%1:04:00:: 00989773 1 0 -counterfoil%1:10:00:: 06507815 1 0 -counterglow%1:19:00:: 11442298 1 0 -counterinsurgency%1:04:00:: 00963749 1 0 -counterinsurgent%3:01:00:: 02845704 1 0 -counterintelligence%1:04:00:: 00986275 1 0 -counterintuitive%5:00:00:unreasonable:00 01944904 1 0 -counterintuitively%4:02:00:: 00254276 1 0 -counterirritant%1:06:00:: 03117776 1 0 -counterman%1:18:00:: 09969718 1 0 -countermand%1:10:00:: 07168486 1 0 -countermand%2:32:00:: 00799798 1 0 -countermarch%1:04:00:: 00291004 1 0 -countermarch%2:31:00:: 00659260 2 0 -countermarch%2:38:00:: 01997020 1 0 -countermeasure%1:04:00:: 00174663 1 0 -countermine%1:04:00:: 01077190 1 0 -countermine%2:33:00:: 01125882 2 0 -countermine%2:41:00:: 02543607 1 0 -countermortar_fire%1:04:00:: 00990195 1 0 -countermove%1:04:00:: 00978173 1 0 -counteroffensive%1:04:00:: 00980200 1 1 -counteroffer%1:10:00:: 07164972 1 0 -counterpane%1:06:00:: 02822220 1 0 -counterpart%1:06:00:: 03117939 2 1 -counterpart%1:09:00:: 05695806 1 12 -counterperson%1:18:00:: 09969718 1 0 -counterplan%1:09:00:: 05908391 1 0 -counterplay%1:04:00:: 00458094 1 0 -counterplea%1:10:00:: 06561343 1 0 -counterplot%1:09:00:: 05908391 1 0 -counterplot%2:31:00:: 00707490 1 0 -counterpoint%1:10:00:: 07025419 1 2 -counterpoint%2:36:00:: 01705841 2 0 -counterpoint%2:42:00:: 02666882 1 1 -counterpoise%1:06:00:: 03118539 1 0 -counterpoise%2:42:00:: 02666691 1 0 -counterpoised%5:00:00:balanced:00 00893878 1 0 -counterpoison%1:06:00:: 02719588 1 0 -counterpose%2:42:00:: 02666691 1 0 -counterpreparation_fire%1:04:00:: 00990319 1 0 -counterproductive%5:00:00:harmful:00 01161877 1 0 -counterproposal%1:10:00:: 07162424 1 1 -counterpunch%1:04:00:: 00135504 1 0 -counterreformation%1:26:00:: 14424384 1 0 -counterrevolution%1:04:00:: 00963057 1 0 -counterrevolutionary%1:18:00:: 09969869 1 0 -counterrevolutionary%3:00:00:: 02015403 2 0 -counterrevolutionary%3:01:00:: 02845871 1 0 -counterrevolutionist%1:18:00:: 09969869 1 0 -countershot%1:04:00:: 00123143 1 1 -countersign%1:10:00:: 06405020 2 0 -countersign%1:10:01:: 06674188 1 0 -countersign%2:32:00:: 00997432 1 0 -countersignature%1:10:00:: 06405020 1 0 -countersink%1:06:00:: 03117642 2 0 -countersink%1:06:01:: 03118051 1 0 -countersink%2:35:00:: 01530273 1 0 -countersink_bit%1:06:00:: 03117642 1 0 -counterspy%1:18:00:: 09970192 1 0 -counterstain%1:27:00:: 15053212 1 0 -counterstrike%2:33:00:: 01125084 1 0 -countersubversion%1:04:00:: 00986663 1 0 -countersuit%1:04:00:: 01183373 1 0 -countertenor%1:10:00:: 06872785 2 0 -countertenor%1:18:00:: 09970295 1 0 -countertenor%5:00:00:high:03 01213961 1 0 -counterterror%3:01:00:: 02845996 1 0 -counterterrorism%1:09:00:: 05906734 1 0 -counterterrorist%1:18:00:: 09970088 1 0 -counterterrorist%3:01:00:: 02845996 1 0 -counterterrorist_center%1:14:00:: 08125420 1 0 -countertop%1:06:00:: 03118245 1 0 -countertransference%1:09:00:: 06247484 1 0 -countervail%2:41:00:: 02543874 2 0 -countervail%2:42:00:: 02718015 1 0 -countervailing_duty%1:21:00:: 13318024 1 0 -counterweight%1:06:00:: 03118539 1 0 -counterweight%2:42:00:: 02666691 1 0 -counterwoman%1:18:00:: 09969718 1 0 -countess%1:18:00:: 09970402 1 0 -counting%1:04:00:: 00634586 1 2 -countinghouse%1:06:00:: 03118846 1 0 -countless%5:00:00:incalculable:00 00301951 1 5 -countlessness%1:07:00:: 05122419 1 0 -countrified%5:00:00:rural:00 02051616 1 0 -country%1:14:00:: 08168978 1 68 -country%1:14:01:: 08166552 3 12 -country%1:15:00:: 08544813 2 29 -country%1:15:01:: 08644722 4 11 -country%1:15:02:: 08497294 5 3 -country-bred%5:00:00:rural:00 02051788 1 0 -country-dance%1:04:00:: 00539121 1 0 -country-dance%2:38:00:: 01896295 1 0 -country-style%5:00:00:rural:00 02051881 1 0 -country_and_western%1:10:00:: 07060440 1 0 -country_borage%1:20:00:: 12845187 1 0 -country_club%1:14:00:: 08229362 1 1 -country_dancing%1:04:00:: 00539121 1 0 -country_doctor%1:18:00:: 09970493 1 1 -country_house%1:06:00:: 03118969 1 0 -country_music%1:10:00:: 07060440 1 0 -country_of_origin%1:15:00:: 08510169 1 0 -country_people%1:14:00:: 07945236 2 0 -country_people%1:14:01:: 07945369 1 0 -country_store%1:06:00:: 03119203 1 1 -countryfied%5:00:00:rural:00 02051616 1 0 -countryfolk%1:14:00:: 07945236 2 0 -countryfolk%1:14:01:: 07945369 1 0 -countryman%1:18:00:: 09970963 1 4 -countryman%1:18:01:: 09971135 2 0 -countryseat%1:21:00:: 13251980 1 0 -countryside%1:15:00:: 08645033 1 2 -countrywide%5:00:00:comprehensive:00 00526984 1 0 -countrywoman%1:18:00:: 09971047 2 0 -countrywoman%1:18:01:: 09971273 1 0 -counts/minute%1:28:00:: 15285180 1 0 -county%1:15:00:: 08546183 1 34 -county%1:15:01:: 08546870 2 0 -county_agent%1:18:00:: 09971385 1 0 -county_council%1:14:00:: 08357529 1 0 -county_courthouse%1:15:00:: 08547143 1 0 -county_line%1:15:00:: 08515911 1 0 -county_palatine%1:15:00:: 08547048 1 0 -county_seat%1:15:00:: 08547143 1 0 -county_town%1:15:00:: 08547300 1 0 -countywide%5:00:00:comprehensive:00 00526832 1 0 -coup%1:04:00:: 01145015 1 1 -coup%1:04:01:: 00065336 2 1 -coup_d'etat%1:04:00:: 01145015 1 0 -coup_d'oeil%1:04:00:: 00877625 1 0 -coup_de_grace%1:04:00:: 00219463 1 0 -coup_de_main%1:04:00:: 01246541 1 0 -coup_de_theatre%1:10:00:: 07007341 3 0 -coup_de_theatre%1:10:01:: 07007444 2 0 -coup_de_theatre%1:11:00:: 07298543 1 0 -coupe%1:06:00:: 03119396 1 0 -couperin%1:18:00:: 10913010 1 0 -couple%1:14:00:: 07985628 1 13 -couple%1:14:01:: 07988857 2 9 -couple%1:17:00:: 09257563 5 0 -couple%1:23:00:: 13743605 4 2 -couple%1:23:01:: 13771290 3 6 -couple%2:35:00:: 01428853 4 0 -couple%2:35:01:: 01297624 2 2 -couple%2:35:02:: 01292885 1 5 -couple%2:41:00:: 02490430 3 1 -couple_on%2:35:00:: 01297624 1 0 -couple_up%2:35:00:: 01297624 1 0 -coupled%5:00:00:connected:00 00567161 2 0 -coupled%5:00:00:united:00 02477211 1 0 -coupler%1:06:00:: 03119510 1 0 -couplet%1:10:00:: 06378917 2 0 -couplet%1:23:00:: 13743605 1 0 -coupling%1:04:00:: 00847340 3 0 -coupling%1:06:00:: 03119510 2 0 -coupling%1:06:01:: 04613158 1 2 -coupon%1:09:00:: 05822001 2 1 -coupon%1:10:00:: 06518068 1 1 -coupon_bond%1:21:00:: 13338066 1 0 -courage%1:07:00:: 04857083 1 15 -courageous%3:00:04:: 00262792 1 1 -courageously%4:02:00:: 00172980 1 0 -courageousness%1:07:00:: 04857083 1 0 -courante%1:04:00:: 00526663 1 0 -courbaril%1:20:00:: 11750508 1 0 -courbaril_copal%1:20:00:: 11750745 1 0 -courbet%1:18:00:: 10913203 1 0 -coureur_de_bois%1:18:00:: 09971595 1 0 -courgette%1:13:00:: 07716358 2 0 -courgette%1:20:00:: 12159804 1 0 -courier%1:18:00:: 10311021 1 1 -courlan%1:05:00:: 02013567 1 0 -course%1:04:00:: 00038262 4 9 -course%1:04:01:: 00884466 1 61 -course%1:06:00:: 03119790 9 0 -course%1:06:01:: 03120029 8 0 -course%1:13:00:: 07556970 7 0 -course%1:14:00:: 08377085 2 14 -course%1:14:01:: 08238463 6 0 -course%1:15:00:: 08681222 3 11 -course%1:17:00:: 09387222 5 5 -course%2:33:00:: 01144873 3 0 -course%2:38:00:: 02066939 2 0 -course%2:38:02:: 02067540 1 0 -course%4:02:00:: 00038625 1 1 -course_catalog%1:10:00:: 06674947 1 0 -course_catalogue%1:10:00:: 06674947 1 0 -course_credit%1:04:00:: 00065855 1 0 -course_of_action%1:04:00:: 00038262 1 0 -course_of_instruction%1:04:00:: 00884466 1 0 -course_of_lectures%1:04:00:: 00890441 1 0 -course_of_study%1:04:00:: 00884466 2 0 -course_of_study%1:10:00:: 06676416 1 0 -course_session%1:04:00:: 01232246 1 0 -courser%1:05:00:: 02039171 4 0 -courser%1:05:01:: 02378625 2 0 -courser%1:05:02:: 02087314 3 0 -courser%1:18:00:: 09971682 1 0 -coursework%1:04:00:: 00885088 1 0 -coursing%1:04:00:: 00453126 1 0 -court%1:04:00:: 01229223 11 0 -court%1:06:00:: 03120198 10 0 -court%1:06:01:: 03120491 4 2 -court%1:06:02:: 03120778 2 5 -court%1:06:03:: 03790755 7 0 -court%1:06:04:: 03121040 9 0 -court%1:06:05:: 03649459 8 0 -court%1:14:00:: 08329453 1 42 -court%1:14:01:: 08051946 3 3 -court%1:14:02:: 08329322 6 0 -court%1:18:00:: 10913355 5 0 -court%2:41:00:: 02534492 1 5 -court%2:41:01:: 02534936 2 1 -court%2:41:10:: 02534761 3 0 -court-martial%1:04:00:: 01196316 2 0 -court-martial%1:14:00:: 08331525 1 0 -court-martial%2:41:01:: 02499172 1 0 -court-ordered%5:00:00:legal:00 01400876 1 0 -court_card%1:06:00:: 03314028 1 0 -court_favor%2:32:00:: 00881329 1 0 -court_favour%2:32:00:: 00881329 1 0 -court_game%1:04:00:: 00479076 1 0 -court_of_appeals%1:14:00:: 08330106 1 0 -court_of_assize%1:14:00:: 08330843 1 0 -court_of_assize_and_nisi_prius%1:14:00:: 08330843 1 0 -court_of_chancery%1:14:00:: 08331011 1 0 -court_of_domestic_relations%1:14:00:: 08332090 1 0 -court_of_justice%1:06:00:: 03649459 1 0 -court_of_law%1:06:00:: 03649459 1 0 -court_of_saint_james's%1:14:00:: 08052135 1 0 -court_order%1:10:00:: 06539502 1 2 -court_plaster%1:06:00:: 03121556 1 0 -court_tennis%1:04:00:: 00483705 1 0 -courtelle%1:06:00:: 03121190 1 0 -courteous%3:00:00:: 00639842 2 0 -courteous%5:00:00:polite:00 00641460 1 1 -courteously%4:02:00:: 00218479 1 0 -courtesan%1:18:01:: 09952393 1 0 -courtesy%1:04:00:: 01228245 1 2 -courtesy%1:07:00:: 04912732 3 0 -courtesy%1:10:00:: 06714874 2 0 -courthouse%1:06:00:: 03121298 2 0 -courthouse%1:06:01:: 03121431 1 0 -courtier%1:18:00:: 09971839 1 2 -courting%1:10:00:: 07188685 1 0 -courtliness%1:07:01:: 04813283 1 0 -courtly%5:00:00:dignified:00 00751838 1 0 -courtly_love%1:09:00:: 05668581 1 0 -courtroom%1:06:00:: 03120778 1 0 -courtship%1:10:00:: 07188685 1 0 -courtyard%1:06:00:: 03120198 1 2 -couscous%1:13:00:: 07701597 2 0 -couscous%1:13:01:: 07937461 1 0 -cousin%1:18:00:: 09972010 1 5 -cousin-german%1:18:00:: 09972010 1 0 -cousinly%3:00:00:: 00453529 1 0 -cousteau%1:18:00:: 10913503 1 0 -couth%5:00:00:refined:01 01948014 1 0 -couthie%5:00:00:friendly:01 01076024 1 0 -couthy%5:00:00:friendly:01 01076024 1 0 -couture%1:04:00:: 00618642 1 0 -couturier%1:18:00:: 09972157 1 0 -couvade%1:04:00:: 00413904 1 0 -couverture%1:13:00:: 07603930 1 0 -covalence%1:07:00:: 05034761 1 0 -covalency%1:07:00:: 05034761 1 0 -covalent%3:01:00:: 02705254 1 0 -covalent_bond%1:19:00:: 11436748 1 0 -covariance%1:09:00:: 06025287 1 0 -covariant%5:00:00:variable:00 02504830 1 0 -covariation%1:09:00:: 06032752 1 0 -cove%1:17:00:: 09257761 1 1 -cove%1:17:02:: 09257843 2 0 -coven%1:14:00:: 08398467 1 0 -covenant%1:10:00:: 06772260 1 0 -covenant%1:10:01:: 06525588 2 0 -covenant%2:32:00:: 01030832 2 0 -covenant%2:41:00:: 02474780 1 0 -coventry%1:15:00:: 08879867 2 0 -coventry%1:26:00:: 14427633 1 0 -cover%1:04:00:: 01049685 3 4 -cover%1:04:01:: 00988893 7 1 -cover%1:04:02:: 01049992 10 0 -cover%1:06:00:: 03121698 9 0 -cover%1:06:01:: 02849154 2 8 -cover%1:06:02:: 04151940 1 9 -cover%1:06:03:: 04453910 6 1 -cover%1:06:04:: 02840619 4 2 -cover%1:17:00:: 09257949 5 1 -cover%1:21:00:: 13318411 8 0 -cover%2:29:02:: 00060185 25 0 -cover%2:29:15:: 00048633 26 0 -cover%2:32:00:: 00891216 14 1 -cover%2:32:01:: 01033527 5 14 -cover%2:32:02:: 00967098 8 3 -cover%2:32:12:: 00967455 13 1 -cover%2:33:00:: 01148296 12 1 -cover%2:33:01:: 01129201 9 2 -cover%2:33:07:: 01150010 23 0 -cover%2:33:13:: 01148580 24 0 -cover%2:35:00:: 01332730 1 35 -cover%2:35:01:: 01207951 2 19 -cover%2:35:02:: 01430447 21 0 -cover%2:35:13:: 01582200 20 0 -cover%2:35:14:: 01336635 22 0 -cover%2:38:00:: 01912159 7 4 -cover%2:39:12:: 02148369 11 1 -cover%2:39:14:: 02147109 19 0 -cover%2:40:00:: 02310674 18 0 -cover%2:41:01:: 02395000 10 1 -cover%2:41:08:: 02474446 16 0 -cover%2:41:10:: 02395194 17 0 -cover%2:42:00:: 02675935 4 16 -cover%2:42:01:: 02687916 3 18 -cover%2:42:02:: 02629793 6 10 -cover%2:42:14:: 02672859 15 0 -cover-up%1:04:00:: 01050187 1 0 -cover_charge%1:21:00:: 13318411 1 0 -cover_crop%1:20:00:: 13086438 1 0 -cover_for%2:32:01:: 00895855 1 0 -cover_girl%1:18:00:: 09972458 1 0 -cover_glass%1:06:00:: 03122573 1 0 -cover_letter%1:10:00:: 06624816 1 0 -cover_plate%1:06:00:: 03123666 1 0 -cover_slip%1:06:00:: 03122573 1 0 -cover_song%1:06:00:: 03121698 1 0 -cover_up%2:39:00:: 02148369 1 0 -cover_version%1:06:00:: 03121698 1 0 -coverage%1:07:00:: 05123760 2 1 -coverage%1:10:00:: 06683784 3 0 -coverage%1:21:00:: 13344664 1 1 -coverall%1:06:02:: 03121897 1 0 -covered%3:00:00:: 01694223 1 12 -covered_bridge%1:06:00:: 03122073 1 0 -covered_couch%1:06:00:: 03122202 1 0 -covered_option%1:04:00:: 00080619 1 0 -covered_smut%1:20:00:: 13066448 1 0 -covered_stadium%1:06:00:: 03220692 1 0 -covered_stand%1:06:00:: 03452953 1 0 -covered_wagon%1:06:00:: 03122295 1 1 -covering%1:04:00:: 00828082 4 0 -covering%1:04:01:: 00712225 5 0 -covering%1:04:02:: 01049685 3 0 -covering%1:06:00:: 03122748 2 0 -covering%1:17:00:: 09257949 1 0 -covering_fire%1:04:00:: 00988893 1 0 -covering_letter%1:10:00:: 06624816 1 0 -covering_material%1:27:00:: 14825062 1 0 -coverlet%1:06:00:: 03123553 1 1 -covert%1:06:00:: 04151940 2 0 -covert%1:14:00:: 07991780 1 0 -covert%3:00:00:: 01705655 1 0 -covert%5:00:00:protected:00 01885614 2 0 -covert_operation%1:04:00:: 00984195 1 0 -covertly%4:02:00:: 00078445 1 2 -covertness%1:26:00:: 14416349 1 0 -covet%2:37:00:: 01827232 1 1 -coveted%5:00:00:desirable:00 00733297 1 0 -covetous%5:00:00:acquisitive:00 00029933 2 0 -covetous%5:00:00:desirous:00 00888765 1 0 -covetously%4:02:00:: 00276391 2 0 -covetously%4:02:01:: 00303177 1 0 -covetousness%1:04:00:: 00758525 3 0 -covetousness%1:07:00:: 04945758 2 0 -covetousness%1:12:01:: 07549979 1 1 -covey%1:14:00:: 07991868 2 0 -covey%1:14:01:: 08310309 1 0 -coville%1:20:00:: 12723062 1 0 -cow%1:05:01:: 02403454 1 20 -cow%1:05:02:: 01887787 2 1 -cow%1:18:00:: 09972587 3 0 -cow%2:37:00:: 01779803 1 0 -cow's_head%1:20:00:: 13034062 1 0 -cow-nosed_ray%1:05:00:: 01499732 1 0 -cow-tongue_fern%1:20:00:: 13174823 1 0 -cow_barn%1:06:00:: 03123809 1 0 -cow_chip%1:17:00:: 09243906 1 0 -cow_cockle%1:20:00:: 11818636 1 0 -cow_dung%1:17:00:: 09243906 1 0 -cow_lily%1:20:00:: 11716422 1 0 -cow_man%1:18:00:: 09902017 1 0 -cow_manure%1:27:00:: 14863883 1 0 -cow_oak%1:20:00:: 12276628 1 0 -cow_parsley%1:20:00:: 12932966 1 0 -cow_parsnip%1:20:00:: 12939874 1 0 -cow_pasture%1:15:00:: 08547468 1 0 -cow_pen%1:06:00:: 03124590 1 0 -cow_pie%1:27:00:: 14855066 1 0 -cow_pony%1:05:00:: 02379081 1 0 -cow_shark%1:05:00:: 01483021 1 0 -cow_town%1:15:00:: 08671382 1 0 -cowage%1:20:01:: 12550408 2 0 -cowage%1:20:02:: 12550788 1 0 -coward%1:18:00:: 09614047 1 4 -coward%1:18:01:: 10913641 2 0 -cowardice%1:07:00:: 04860065 1 2 -cowardliness%1:07:00:: 04860065 1 0 -cowardly%3:00:00:: 00264776 1 2 -cowbarn%1:06:00:: 03123809 1 0 -cowbell%1:06:00:: 03123917 1 0 -cowberry%1:13:00:: 07744057 2 0 -cowberry%1:20:00:: 12249542 1 0 -cowbird%1:05:00:: 01575117 1 0 -cowboy%1:18:00:: 09972661 1 9 -cowboy%1:18:02:: 09972946 3 0 -cowboy%1:18:03:: 09973072 2 0 -cowboy_boot%1:06:00:: 03124043 1 0 -cowboy_hat%1:06:00:: 03124170 1 0 -cowcatcher%1:06:00:: 03328201 1 0 -cower%2:38:00:: 02063771 2 0 -cower%2:38:01:: 02063988 1 1 -cowfish%1:05:00:: 02654745 1 0 -cowgirl%1:18:00:: 09973422 1 0 -cowhand%1:18:00:: 09972661 1 1 -cowherb%1:20:00:: 11818636 1 0 -cowherd%1:18:00:: 09972661 1 0 -cowhide%1:06:00:: 03124313 3 0 -cowhide%1:27:00:: 14762248 1 1 -cowhide%1:27:01:: 14759444 2 0 -cowhide%2:35:00:: 01411768 1 0 -cowhouse%1:06:00:: 03123809 1 0 -cowl%1:06:00:: 03530910 1 0 -cowl%1:06:01:: 03124474 2 0 -cowl%2:35:00:: 01337224 1 0 -cowl-shaped%5:00:00:formed:00 02146481 1 0 -cowl_muscle%1:08:00:: 05591770 1 0 -cowled%5:00:00:clothed:00 00455605 1 1 -cowlick%1:08:00:: 05256702 1 0 -cowling%1:06:00:: 03530910 1 1 -cowman%1:18:00:: 09972661 1 0 -cownose_ray%1:05:00:: 01499732 1 0 -cowpea%1:13:00:: 07726672 3 0 -cowpea%1:20:00:: 12578626 2 0 -cowpea%1:20:02:: 12578916 1 0 -cowpea_plant%1:20:00:: 12578626 1 0 -cowpen_daisy%1:20:00:: 12031139 1 0 -cowpens%1:04:00:: 01276436 1 0 -cowper%1:18:00:: 10913871 2 0 -cowper%1:18:01:: 10914006 1 0 -cowper's_gland%1:08:00:: 05523629 1 0 -cowpie%1:27:00:: 14855066 1 0 -cowpoke%1:18:00:: 09972661 1 0 -cowpox%1:26:00:: 14262882 1 0 -cowpuncher%1:18:00:: 09972661 1 1 -cowrie%1:05:00:: 01953361 1 0 -cowry%1:05:00:: 01953361 1 0 -cows%1:05:00:: 02402425 1 5 -cows'_milk%1:13:00:: 07845335 1 0 -cowshed%1:06:00:: 03123809 1 0 -cowskin%1:27:00:: 14762248 1 0 -cowslip%1:20:00:: 12091377 1 0 -cowslip%1:20:01:: 11728099 2 0 -cowtown%1:15:00:: 08671382 1 0 -cox%1:18:00:: 09973624 2 0 -cox%1:27:00:: 14737847 1 0 -cox%2:41:00:: 02447133 1 0 -cox's_orange_pippin%1:13:00:: 07740115 1 0 -cox-1%1:27:00:: 14738052 1 0 -cox-2%1:27:00:: 14738295 1 0 -cox-2_inhibitor%1:06:00:: 03124700 1 0 -coxa%1:08:00:: 05596004 1 0 -coxcomb%1:05:00:: 01792255 3 0 -coxcomb%1:06:00:: 03061893 2 0 -coxcomb%1:18:00:: 09973490 1 0 -coxsackie_virus%1:05:00:: 01338178 1 0 -coxsackievirus%1:05:00:: 01338178 1 0 -coxswain%1:18:00:: 09973624 1 0 -coy%5:00:00:indefinite:00 00701894 2 0 -coy%5:00:00:modest:01 01538118 1 0 -coy%5:00:00:timid:00 00252310 3 0 -coydog%1:05:00:: 02115012 1 0 -coyly%4:02:00:: 00291916 1 0 -coyness%1:07:00:: 04788159 1 2 -coyol%1:20:00:: 12583681 1 0 -coyol_palm%1:20:00:: 12583681 1 0 -coyote%1:05:00:: 02114855 1 1 -coyote%1:18:00:: 09973749 3 0 -coyote%1:18:01:: 09973903 2 0 -coyote_brush%1:20:00:: 11938732 1 0 -coyote_bush%1:20:00:: 11938732 1 0 -coyote_state%1:15:00:: 09138935 1 0 -coypu%1:05:00:: 02366959 1 0 -cozen%2:40:00:: 02288656 3 0 -cozen%2:41:00:: 02574874 2 0 -cozen%2:41:01:: 02575082 1 0 -cozenage%1:04:00:: 00754280 1 0 -cozily%4:02:00:: 00187120 1 0 -coziness%1:26:00:: 14446298 1 0 -cozy%1:06:00:: 03114379 1 0 -cozy%5:00:00:close:02 00452773 3 0 -cozy%5:00:00:comfortable:00 00477284 1 2 -cozy%5:00:00:friendly:01 01076145 2 0 -cozy_up%2:37:09:: 01804753 1 0 -cpa%1:18:00:: 09905185 1 0 -cpi%1:10:00:: 06641654 1 0 -cpi%1:10:01:: 06474972 2 0 -cpr%1:04:00:: 00832626 1 0 -cps%1:28:00:: 15279104 1 3 -cpu%1:06:00:: 02995345 1 0 -cpu_board%1:06:00:: 03125057 1 0 -cr%1:27:00:: 14635092 1 3 -crab%1:04:00:: 00445529 7 0 -crab%1:05:00:: 01976957 1 1 -crab%1:05:01:: 02185167 6 0 -crab%1:13:00:: 07787715 5 0 -crab%1:15:00:: 08686658 4 0 -crab%1:18:00:: 09974054 2 0 -crab%1:18:01:: 09752657 3 0 -crab%2:32:00:: 00910973 4 0 -crab%2:33:00:: 01140065 3 0 -crab%2:38:00:: 01902678 2 0 -crab%2:38:02:: 01932586 1 0 -crab-eating_dog%1:05:00:: 02116185 1 0 -crab-eating_fox%1:05:00:: 02116185 1 0 -crab-eating_macaque%1:05:00:: 02488003 1 0 -crab-eating_opossum%1:05:00:: 01875610 1 0 -crab-eating_raccoon%1:05:00:: 02508346 1 0 -crab-eating_seal%1:05:00:: 02076402 1 0 -crab_apple%1:13:00:: 07739344 3 0 -crab_apple%1:20:01:: 12634211 2 0 -crab_apple%1:20:02:: 12634429 1 0 -crab_cactus%1:20:00:: 11854479 1 0 -crab_cocktail%1:13:00:: 07582027 1 0 -crab_grass%1:20:00:: 12117017 1 0 -crab_legs%1:13:00:: 07788106 1 0 -crab_louis%1:13:00:: 07808166 1 0 -crab_louse%1:05:00:: 02185167 1 0 -crab_nebula%1:17:00:: 09258587 1 0 -crabapple%1:13:00:: 07739344 3 0 -crabapple%1:20:01:: 12634211 2 0 -crabapple%1:20:02:: 12634429 1 0 -crabapple_jelly%1:13:00:: 07643577 1 0 -crabbed%5:00:00:ill-natured:00 01136248 1 0 -crabbedness%1:07:00:: 04641700 1 0 -crabbiness%1:07:00:: 04641700 1 0 -crabby%5:00:00:ill-natured:00 01136248 1 0 -crabby_person%1:18:00:: 09974054 1 0 -crabeater_seal%1:05:00:: 02076402 1 0 -crabgrass%1:20:00:: 12117017 1 0 -crabmeat%1:13:00:: 07787715 1 0 -crabs%1:26:00:: 14454874 1 0 -crabwise%5:00:00:oblique:00 01719779 1 0 -cracidae%1:05:00:: 01799086 1 0 -crack%1:04:00:: 00376994 10 0 -crack%1:04:01:: 00787061 9 0 -crack%1:06:00:: 03416329 2 2 -crack%1:06:01:: 03125184 8 0 -crack%1:07:00:: 04693096 7 0 -crack%1:10:00:: 06767777 6 0 -crack%1:11:00:: 07381423 4 1 -crack%1:17:00:: 09258715 1 3 -crack%1:25:00:: 13907272 3 1 -crack%1:26:00:: 14485673 5 0 -crack%2:30:00:: 00337065 7 1 -crack%2:30:01:: 00336260 1 6 -crack%2:30:02:: 00337234 6 1 -crack%2:30:05:: 00336718 11 0 -crack%2:30:07:: 00238542 12 0 -crack%2:30:08:: 00238372 13 0 -crack%2:30:09:: 00539770 5 2 -crack%2:32:00:: 00953923 10 0 -crack%2:35:00:: 01401955 4 2 -crack%2:37:00:: 01785579 9 0 -crack%2:39:00:: 02182851 3 2 -crack%2:39:01:: 02183024 2 4 -crack%2:41:00:: 02571067 8 0 -crack%5:00:00:superior:02 02341864 1 2 -crack-up%1:26:00:: 14066492 1 0 -crack_addict%1:18:00:: 09974177 1 0 -crack_cocaine%1:06:00:: 03125184 1 0 -crack_down%2:30:10:: 00418921 1 0 -crack_of_doom%1:28:00:: 15171307 1 0 -crack_shot%1:18:00:: 10294953 1 0 -crack_up%2:29:00:: 00030366 3 0 -crack_up%2:32:00:: 00861333 2 0 -crack_up%2:37:00:: 01785579 1 1 -crack_willow%1:20:00:: 12728322 1 0 -crackbrained%5:00:00:insane:00 02075737 1 0 -crackdown%1:04:00:: 01148182 1 0 -cracked%5:00:00:insane:00 02074929 3 0 -cracked%5:00:01:rough:00 02239479 2 0 -cracked%5:00:02:rough:00 02240129 1 1 -cracked-wheat_bread%1:13:00:: 07681805 1 0 -cracked_wheat%1:13:00:: 07803779 1 0 -cracker%1:06:00:: 03125352 5 0 -cracker%1:06:01:: 03345115 4 0 -cracker%1:13:00:: 07681926 1 1 -cracker%1:18:00:: 10513938 2 0 -cracker%1:18:01:: 09974278 3 0 -cracker-barrel%5:00:00:rural:00 02052005 1 0 -cracker_bonbon%1:06:00:: 03125352 1 0 -cracker_crumbs%1:13:00:: 07622587 1 0 -crackerberry%1:20:00:: 12948251 1 0 -crackerjack%1:06:00:: 03599212 2 0 -crackerjack%1:18:00:: 10222353 1 0 -crackers%5:00:00:insane:00 02074929 1 0 -cracking%1:04:00:: 00376994 2 1 -cracking%1:11:00:: 07381423 1 1 -cracking%1:22:00:: 13453861 3 0 -cracking%5:00:00:good:01 01123879 1 0 -crackle%1:06:00:: 03125588 2 0 -crackle%1:11:00:: 07381678 1 2 -crackle%2:30:00:: 00122648 3 1 -crackle%2:32:00:: 01058224 2 1 -crackle%2:39:00:: 02175384 1 2 -crackle%5:00:00:fancy:00 01795460 1 0 -crackle_china%1:06:00:: 03125588 1 0 -crackleware%1:06:00:: 03125588 1 0 -crackling%1:11:00:: 07381678 2 0 -crackling%1:27:00:: 14677485 1 0 -cracklings%1:13:00:: 07671845 1 0 -crackpot%1:18:00:: 09974496 1 1 -cracksman%1:18:00:: 10546062 1 0 -cracow%1:15:00:: 08983413 1 0 -cracticidae%1:05:00:: 01582625 1 0 -cracticus%1:05:00:: 01583043 1 0 -cradle%1:06:00:: 03125729 1 2 -cradle%1:06:01:: 04098795 4 0 -cradle%1:15:00:: 08510456 2 1 -cradle%1:28:00:: 15142452 3 0 -cradle%2:33:00:: 01076514 6 0 -cradle%2:35:00:: 01222177 1 3 -cradle%2:35:01:: 01536663 5 0 -cradle%2:35:02:: 01555648 4 0 -cradle%2:38:00:: 01876735 3 0 -cradle%2:41:00:: 02540262 2 0 -cradle_cap%1:26:00:: 14223870 1 0 -cradlesong%1:04:00:: 00546738 2 0 -cradlesong%1:10:00:: 07051851 1 0 -craft%1:04:00:: 00606370 1 3 -craft%1:06:00:: 03125870 2 1 -craft%1:09:00:: 05621178 5 0 -craft%1:09:01:: 05638063 4 0 -craft%1:14:00:: 08436562 3 0 -craft%2:36:00:: 01658762 1 0 -craft_fair%1:04:00:: 01118495 1 0 -craft_union%1:14:00:: 08234493 1 0 -crafter%1:18:00:: 09975425 1 1 -craftily%4:02:00:: 00293926 1 0 -craftiness%1:07:00:: 04876561 2 0 -craftiness%1:09:00:: 05621178 1 0 -craftsman%1:18:00:: 09974648 3 1 -craftsman%1:18:01:: 09975425 2 1 -craftsman%1:18:02:: 09975630 1 1 -craftsmanship%1:09:00:: 05638063 1 1 -crafty%5:00:00:artful:00 00148078 1 1 -crag%1:17:00:: 09259025 1 1 -cragfast%5:00:00:stuck:00 00161170 1 0 -cragged%5:00:00:rough:00 02240490 1 0 -craggy%5:00:00:rough:00 02240490 1 1 -cragsman%1:18:00:: 10535604 1 0 -craig_ventner%1:18:00:: 11362573 1 0 -craigie%1:18:00:: 10914134 1 0 -crake%1:05:00:: 02015554 1 0 -cram%2:30:00:: 00407146 4 0 -cram%2:31:00:: 00605783 3 0 -cram%2:35:00:: 01524298 1 1 -cram%2:35:10:: 01612295 2 0 -cram_full%5:00:00:full:00 01084297 1 0 -crambe%1:20:00:: 11884198 1 0 -crambe_maritima%1:20:00:: 11884384 1 0 -crammer%1:10:00:: 06414727 4 0 -crammer%1:14:00:: 08278707 3 0 -crammer%1:18:00:: 09975933 1 0 -crammer%1:18:01:: 09975806 2 0 -cramp%1:06:00:: 03126090 3 0 -cramp%1:06:01:: 03126251 2 0 -cramp%1:26:00:: 14360459 1 1 -cramp%2:29:00:: 00031068 4 0 -cramp%2:29:01:: 00031181 3 0 -cramp%2:30:00:: 00236289 2 0 -cramp%2:35:00:: 01304466 1 0 -cramp_iron%1:06:00:: 03126090 1 0 -crampbark%1:20:00:: 12680864 1 0 -cramped%5:00:00:incommodious:00 00476663 1 0 -crampfish%1:05:00:: 01496331 1 0 -crampon%1:06:00:: 03126385 2 0 -crampon%1:06:01:: 03126580 1 0 -crampoon%1:06:00:: 03126385 2 0 -crampoon%1:06:01:: 03126580 1 0 -cran%1:23:00:: 13616688 1 0 -cranberry%1:13:00:: 07743902 2 0 -cranberry%1:20:00:: 12245695 1 0 -cranberry_bush%1:20:00:: 12680402 1 0 -cranberry_culture%1:04:00:: 00917961 1 0 -cranberry_heath%1:20:00:: 12254168 1 0 -cranberry_juice%1:13:00:: 07924443 1 0 -cranberry_sauce%1:13:00:: 07823698 1 0 -cranberry_tree%1:20:01:: 12680402 2 0 -cranberry_tree%1:20:02:: 12680864 1 0 -cranch%2:35:00:: 01594978 1 0 -crane%1:05:00:: 02012849 5 0 -crane%1:06:00:: 03126707 4 0 -crane%1:17:00:: 09295455 3 0 -crane%1:18:00:: 10914331 2 0 -crane%1:18:01:: 10914447 1 0 -crane%2:29:00:: 00028167 1 2 -crane's_bill%1:20:00:: 12685831 1 0 -crane_fly%1:05:00:: 02205219 1 0 -cranesbill%1:20:00:: 12685831 1 0 -crangon%1:05:00:: 01986681 1 0 -crangonidae%1:05:00:: 01986538 1 0 -cranial%3:01:00:: 02844273 1 0 -cranial_cavity%1:08:00:: 05392906 1 0 -cranial_index%1:24:00:: 13820826 1 0 -cranial_nerve%1:08:00:: 05476256 1 0 -cranial_orbit%1:08:00:: 05285275 1 0 -craniata%1:05:00:: 01471070 1 0 -craniate%1:05:00:: 01471682 1 0 -craniologist%1:18:00:: 10427467 1 0 -craniology%1:09:00:: 06041805 1 0 -craniometer%1:06:00:: 03126927 1 0 -craniometric%3:01:00:: 02844419 1 0 -craniometric_point%1:08:00:: 05230603 1 0 -craniometrical%3:01:00:: 02844419 1 0 -craniometry%1:09:00:: 06147308 1 0 -craniotomy%1:04:00:: 00668736 1 0 -cranium%1:08:00:: 05540513 1 0 -crank%1:06:00:: 03127024 4 0 -crank%1:06:01:: 03754295 3 0 -crank%1:18:00:: 10148305 1 0 -crank%1:18:01:: 09974496 2 0 -crank%2:35:00:: 01595149 3 0 -crank%2:35:01:: 01280958 5 0 -crank%2:35:02:: 01341815 4 0 -crank%2:38:00:: 01858796 2 0 -crank%2:38:01:: 01991744 1 0 -crank%5:00:00:unstable:00 02292421 1 0 -crank_call%1:10:00:: 06273890 1 1 -crank_handle%1:06:00:: 03127302 1 0 -crank_letter%1:10:00:: 06624967 1 0 -crank_out%2:36:00:: 01753272 1 0 -crank_up%2:35:00:: 01595149 2 0 -crank_up%2:38:00:: 01858796 1 0 -crankcase%1:06:00:: 03127203 1 0 -crankiness%1:07:00:: 04641869 1 0 -crankshaft%1:06:00:: 03127408 1 0 -cranky%5:00:00:ill-natured:00 01136541 2 0 -cranky%5:00:00:unstable:00 02292421 1 1 -crannied%3:00:00:: 00466577 1 0 -cranny%1:17:00:: 09259104 2 0 -cranny%1:25:01:: 13907272 1 0 -crap%1:10:00:: 06611376 2 0 -crap%1:27:00:: 14854581 1 0 -crap%2:29:00:: 00074038 1 0 -crap-shooter%1:18:00:: 10591678 1 0 -crap_game%1:04:00:: 00509302 1 0 -crap_shooting%1:04:00:: 00509302 1 0 -crap_up%2:35:00:: 01479009 1 0 -crapaud%1:05:00:: 01643896 1 0 -crape%1:06:00:: 03130563 2 0 -crape%1:13:00:: 07641138 1 0 -crape%2:35:00:: 01223833 2 0 -crape%2:35:02:: 01599805 1 0 -crape_fern%1:20:01:: 12954353 1 0 -crape_jasmine%1:20:00:: 11776511 1 0 -crape_myrtle%1:20:00:: 12329260 1 0 -crapette%1:04:00:: 00496760 1 0 -crapper%1:06:00:: 04446521 1 0 -crappie%1:05:00:: 02562796 2 0 -crappie%1:13:00:: 07780486 1 0 -crappy%5:00:00:bad:00 01127782 1 0 -craps%1:04:00:: 00508952 2 0 -craps%1:23:00:: 13743460 1 0 -crapshoot%1:04:00:: 00509302 2 0 -crapshoot%1:04:01:: 00802785 1 0 -crapshooter%1:18:00:: 09976024 1 0 -crapulence%1:04:00:: 00748515 1 0 -crapulent%5:00:00:gluttonous:00 00010537 1 0 -crapulous%5:00:01:gluttonous:00 00010385 2 0 -crapulous%5:00:02:gluttonous:00 00010537 1 0 -crash%1:04:00:: 00126236 4 1 -crash%1:11:00:: 07301950 2 4 -crash%1:11:01:: 07380144 1 9 -crash%1:11:02:: 07477945 3 1 -crash%1:11:03:: 07478874 5 0 -crash%2:29:00:: 00017674 13 0 -crash%2:30:10:: 00434919 12 0 -crash%2:30:11:: 00583064 11 0 -crash%2:35:00:: 01561819 3 2 -crash%2:35:01:: 01562061 5 1 -crash%2:35:02:: 01562209 9 0 -crash%2:35:07:: 01507407 10 0 -crash%2:38:00:: 02019011 8 0 -crash%2:38:01:: 02088627 2 3 -crash%2:38:02:: 01972570 1 9 -crash%2:38:04:: 02019282 4 1 -crash%2:39:00:: 02177512 7 0 -crash%2:42:00:: 02657080 6 0 -crash-dive%2:38:00:: 01967923 1 0 -crash_barrier%1:06:00:: 03127531 1 0 -crash_course%1:10:00:: 06676709 1 0 -crash_dive%1:04:00:: 00327279 1 0 -crash_helmet%1:06:00:: 03127747 1 0 -crash_land%2:38:00:: 01980766 1 0 -crash_landing%1:04:00:: 00305519 1 0 -crash_program%1:10:00:: 06676709 1 0 -crash_programme%1:10:00:: 06676709 1 0 -crasher%1:18:00:: 10121952 1 0 -crashing%5:00:00:unmitigated:00 01520655 1 0 -craspedia%1:20:00:: 11958742 1 0 -crass%5:00:00:unrefined:01 01950711 1 0 -crassitude%1:07:00:: 04844343 1 0 -crassness%1:07:00:: 04844343 1 1 -crassostrea%1:05:00:: 01961468 1 0 -crassula%1:20:00:: 12785312 1 0 -crassulaceae%1:20:00:: 12785110 1 0 -crataegus%1:20:00:: 12626030 1 0 -crataegus_aestivalis%1:20:00:: 12627526 1 0 -crataegus_apiifolia%1:20:00:: 12626674 1 0 -crataegus_biltmoreana%1:20:00:: 12626878 1 0 -crataegus_calpodendron%1:20:00:: 12627119 1 0 -crataegus_coccinea%1:20:00:: 12628705 1 0 -crataegus_coccinea_mollis%1:20:00:: 12628356 1 0 -crataegus_crus-galli%1:20:00:: 12627347 1 0 -crataegus_laevigata%1:20:00:: 12627750 1 0 -crataegus_marshallii%1:20:00:: 12626674 1 0 -crataegus_mollis%1:20:00:: 12628356 1 0 -crataegus_monogyna%1:20:00:: 12628060 1 0 -crataegus_oxyacantha%1:20:00:: 12628579 1 0 -crataegus_oxycantha%1:20:00:: 12627750 1 0 -crataegus_pedicellata%1:20:00:: 12628705 1 0 -crataegus_tomentosa%1:20:00:: 12627119 1 0 -crate%1:06:00:: 03127925 1 1 -crate%1:23:00:: 13766637 2 0 -crate%2:35:00:: 01486678 1 0 -crateful%1:23:00:: 13766637 1 0 -crater%1:17:00:: 09259219 3 0 -crater%1:17:01:: 09472413 1 0 -crater%1:17:02:: 09259376 2 0 -crater_lake_national_park%1:15:00:: 08604085 1 0 -crateva%1:20:00:: 11866942 1 0 -craton%1:17:00:: 09259500 1 0 -craunch%2:35:00:: 01594978 1 0 -cravat%1:06:01:: 03128085 1 0 -crave%2:32:00:: 00758538 2 0 -crave%2:34:00:: 01188485 1 5 -craved%5:00:00:wanted:00 02527220 1 1 -craven%1:18:00:: 10452024 1 0 -craven%5:00:00:cowardly:00 00265496 1 1 -cravenness%1:07:00:: 04860272 1 0 -craving%1:12:00:: 07485475 1 0 -craw%1:05:00:: 01974055 1 0 -crawdad%1:05:00:: 01985128 2 0 -crawdad%1:13:00:: 07788885 1 0 -crawdaddy%1:05:00:: 01985128 1 0 -crawfish%1:05:01:: 01984695 3 0 -crawfish%1:05:02:: 01985128 2 0 -crawfish%1:13:00:: 07788885 1 0 -crawfish%2:32:00:: 00799383 1 0 -crawfish_out%2:32:00:: 00799383 1 0 -crawford%1:18:00:: 10914548 2 0 -crawford%1:18:01:: 10914658 1 0 -crawl%1:04:01:: 00294868 3 0 -crawl%1:04:02:: 00570366 2 0 -crawl%1:04:03:: 00330035 1 1 -crawl%2:38:00:: 01885845 1 32 -crawl%2:38:01:: 01961974 5 0 -crawl%2:38:03:: 02063771 4 0 -crawl%2:42:00:: 02716048 3 0 -crawl%2:42:01:: 02730682 2 1 -crawl_in%2:29:00:: 00017865 1 0 -crawl_space%1:15:00:: 08555710 1 0 -crawler%1:05:00:: 01935395 3 0 -crawler%1:18:00:: 10684827 1 0 -crawler%1:18:01:: 09976119 2 0 -crawling%1:04:00:: 00294868 1 0 -crawlspace%1:15:00:: 08555710 1 0 -crax%1:05:00:: 01799540 1 0 -crayfish%1:05:01:: 01984695 4 0 -crayfish%1:05:02:: 01985128 3 0 -crayfish%1:13:01:: 07788885 2 0 -crayfish%1:13:02:: 07793260 1 0 -crayon%1:06:00:: 03128248 1 0 -crayon%2:36:00:: 01692709 1 0 -craze%1:07:00:: 04693274 3 0 -craze%1:09:00:: 05751173 1 1 -craze%1:26:00:: 14391876 2 0 -craze%2:30:00:: 00337568 2 0 -craze%2:37:00:: 01787822 1 0 -crazed%5:00:00:insane:00 02075847 1 1 -crazily%4:02:00:: 00080890 1 2 -craziness%1:04:00:: 00512843 3 0 -craziness%1:09:00:: 05647156 2 0 -craziness%1:26:00:: 14397889 1 0 -crazy%1:18:00:: 09976283 1 0 -crazy%5:00:00:enthusiastic:00 00886448 5 0 -crazy%5:00:00:excited:00 00919984 3 1 -crazy%5:00:00:impractical:00 01836766 2 2 -crazy%5:00:00:insane:00 02075321 1 10 -crazy%5:00:00:strange:00 00967897 4 0 -crazy_bone%1:08:00:: 05580662 1 0 -crazy_glue%1:27:00:: 14703458 1 0 -crazy_horse%1:18:00:: 10914779 1 0 -crazy_house%1:06:00:: 02820798 1 0 -crazy_quilt%1:06:00:: 03128427 1 0 -crazy_weed%1:20:00:: 12554526 1 0 -crazyweed%1:20:00:: 12554526 1 0 -creak%1:11:00:: 07381864 1 0 -creak%2:39:00:: 02171664 1 9 -creakily%4:02:00:: 00303376 1 0 -creaking%1:11:00:: 07381864 1 1 -creakingly%4:02:00:: 00303376 1 0 -creaky%5:00:00:noisy:00 01921335 2 0 -creaky%5:00:00:unhealthy:00 01173795 3 0 -creaky%5:00:00:worn:00 02581530 1 0 -cream%1:06:00:: 03128519 3 0 -cream%1:13:00:: 07847198 2 0 -cream%1:14:00:: 08387035 1 2 -cream%2:30:00:: 00171339 5 0 -cream%2:35:00:: 01418037 1 0 -cream%2:35:01:: 01261018 4 0 -cream%2:35:02:: 01364483 3 0 -cream%2:35:03:: 01412912 2 0 -cream-colored%5:00:00:colored:00 00397191 1 0 -cream-colored_courser%1:05:00:: 02039497 1 0 -cream-of-tartar_tree%1:20:00:: 12189779 1 0 -cream_cheese%1:13:00:: 07851298 1 0 -cream_of_tartar%1:27:00:: 15013269 1 0 -cream_off%2:31:00:: 00677445 2 0 -cream_off%2:35:00:: 01261018 1 0 -cream_pitcher%1:06:00:: 03129001 1 0 -cream_puff%1:13:00:: 07628576 1 0 -cream_sauce%1:13:00:: 07837545 1 0 -cream_soda%1:13:00:: 07928163 1 0 -cream_violet%1:20:00:: 12390099 1 0 -creamcups%1:20:00:: 11907405 1 0 -creamer%1:06:00:: 03129001 1 0 -creamery%1:06:00:: 03128868 1 0 -creaminess%1:07:00:: 04936690 1 0 -creamy%5:00:00:chromatic:00 00373811 1 1 -creamy%5:00:00:thick:02 02416285 2 0 -creamy-colored%5:00:00:colored:00 00397191 1 0 -creamy-white%5:00:00:colored:00 00397191 1 0 -creamy-yellow%5:00:00:chromatic:00 00373915 1 0 -crease%1:06:00:: 03628728 3 0 -crease%1:25:01:: 13905792 2 0 -crease%1:25:02:: 13907415 1 0 -crease%2:30:10:: 00564857 4 0 -crease%2:35:00:: 01278427 1 1 -crease%2:35:01:: 01277784 2 0 -crease%2:35:02:: 01240514 3 0 -crease-resistant%3:01:00:: 03056871 1 0 -creaseless%5:00:00:smooth:00 02237303 1 0 -creaseproof%3:01:00:: 03056871 1 0 -creashak%1:20:00:: 12231358 1 0 -create%2:36:00:: 01617192 1 94 -create%2:36:01:: 01685313 3 6 -create%2:36:02:: 01753788 2 38 -create%2:36:03:: 01621555 6 0 -create%2:36:13:: 01640207 5 0 -create%2:41:00:: 02476385 4 0 -create_by_mental_act%2:36:00:: 01631534 1 0 -create_from_raw_material%2:36:00:: 01653013 1 0 -create_from_raw_stuff%2:36:00:: 01653013 1 0 -create_mentally%2:36:00:: 01631534 1 0 -create_verbally%2:36:00:: 01697816 1 0 -creatin%1:27:00:: 14825243 1 0 -creatine%1:27:00:: 14825243 1 0 -creatine_phosphate%1:27:00:: 14982421 1 0 -creatine_phosphoric_acid%1:27:00:: 14982421 1 0 -creating_by_mental_acts%1:04:00:: 00927261 1 0 -creating_by_removal%1:04:00:: 00941777 1 0 -creating_from_raw_materials%1:04:00:: 00908909 1 0 -creation%1:04:00:: 00908492 1 5 -creation%1:04:01:: 00240184 4 2 -creation%1:04:02:: 00237869 5 1 -creation%1:06:00:: 03129123 2 4 -creation%1:11:00:: 07328942 3 2 -creation%1:17:00:: 09466280 6 0 -creation_science%1:09:00:: 05959785 1 0 -creationism%1:09:00:: 05959578 1 0 -creative%3:00:00:: 00643250 1 13 -creative%5:00:00:constructive:00 00585202 2 3 -creative_activity%1:04:00:: 00908492 1 0 -creative_person%1:18:00:: 09812338 1 0 -creative_thinker%1:18:00:: 10708292 1 0 -creative_thinking%1:09:00:: 05624700 1 0 -creatively%4:02:00:: 00176139 1 1 -creativeness%1:09:00:: 05624700 1 1 -creativity%1:09:00:: 05624700 1 2 -creator%1:18:00:: 09614315 2 1 -creator%1:18:01:: 09536363 1 3 -creature%1:03:00:: 00015388 1 16 -creature%1:18:01:: 09976429 2 2 -creature%1:18:02:: 09976551 3 1 -creature_comforts%1:21:00:: 13366137 1 0 -creche%1:06:00:: 03129471 1 1 -creche%1:06:01:: 03129636 2 0 -crecy%1:04:00:: 01276634 1 0 -cred%1:07:00:: 04784525 1 0 -credal%3:01:00:: 03057075 1 0 -credence%1:06:00:: 03129753 2 0 -credence%1:09:00:: 06193727 1 0 -credendum%1:10:00:: 06270690 1 0 -credential%1:10:00:: 06471345 1 0 -credentialled%5:00:00:certified:00 00342755 1 0 -credentials%1:10:00:: 06471345 1 0 -credenza%1:06:00:: 03129753 1 0 -credibility%1:07:00:: 04782878 1 0 -credible%3:00:00:: 00644839 1 1 -credible%5:00:00:convincing:00 00615191 3 0 -credible%5:00:00:credulous:00 00646691 2 1 -credibleness%1:07:00:: 04782878 1 0 -credibly%4:02:00:: 00296131 1 0 -credit%1:04:00:: 00065855 6 1 -credit%1:04:01:: 00037200 4 3 -credit%1:09:00:: 05803747 9 0 -credit%1:10:00:: 06688274 1 7 -credit%1:10:01:: 06346681 8 0 -credit%1:10:02:: 06763681 7 0 -credit%1:21:00:: 13374281 5 2 -credit%1:21:01:: 13405646 3 4 -credit%1:21:02:: 13378518 2 5 -credit%2:31:00:: 00683930 4 1 -credit%2:31:01:: 00727143 1 4 -credit%2:31:12:: 00727791 2 3 -credit%2:40:00:: 02264752 3 2 -credit_account%1:21:00:: 13375604 1 0 -credit_analyst%1:18:00:: 09790666 1 0 -credit_application%1:10:00:: 06512943 1 0 -credit_bureau%1:14:00:: 08354065 1 0 -credit_card%1:21:00:: 13376012 1 0 -credit_crunch%1:26:00:: 14488912 1 0 -credit_entry%1:21:00:: 13405646 1 0 -credit_hour%1:04:00:: 00066075 1 0 -credit_line%1:10:00:: 06348885 2 0 -credit_line%1:21:00:: 13379413 1 0 -credit_order%1:10:00:: 06529630 1 0 -credit_rating%1:09:00:: 05803747 1 0 -credit_side%1:21:00:: 13406374 1 0 -credit_system%1:09:00:: 05903112 1 1 -credit_union%1:14:00:: 08234628 1 0 -creditable%5:00:00:worthy:00 02585919 1 1 -creditably%4:02:00:: 00442384 1 0 -credited%5:00:00:attributable:00 00172172 1 0 -creditor%1:18:00:: 09976728 1 0 -credits%1:10:00:: 06489968 1 0 -creditworthiness%1:07:00:: 04669063 1 0 -creditworthy%5:00:00:trustworthy:00 02465350 1 0 -credo%1:09:00:: 05959954 1 6 -credulity%1:07:00:: 04895558 1 0 -credulous%3:00:00:: 00646413 1 0 -credulous%5:00:00:naive:00 02272305 2 0 -credulously%4:02:00:: 00296658 1 0 -credulousness%1:07:00:: 04881156 1 0 -cree%1:10:00:: 06909298 2 0 -cree%1:18:00:: 09653971 1 0 -creed%1:09:00:: 05959954 1 2 -creed%1:10:00:: 06789411 2 1 -creedal%3:01:00:: 03057075 1 1 -creek%1:17:00:: 09229409 1 7 -creek%1:18:00:: 09654079 2 0 -creek_bed%1:17:00:: 09448690 1 0 -creek_confederacy%1:14:00:: 08303862 1 0 -creel%1:06:00:: 03129848 1 0 -creep%1:04:00:: 00294868 4 0 -creep%1:06:00:: 03129944 3 0 -creep%1:11:00:: 07312503 2 0 -creep%1:18:00:: 09976917 1 0 -creep%2:38:00:: 01885845 1 11 -creep%2:38:04:: 01911888 2 4 -creep%2:38:06:: 02060588 3 2 -creep%2:38:07:: 02063771 4 0 -creep_feed%1:13:00:: 07800636 1 1 -creep_in%2:35:00:: 01228866 1 0 -creep_up%2:38:00:: 01993212 1 1 -creeper%1:05:00:: 01589286 3 0 -creeper%1:18:00:: 09976119 2 0 -creeper%1:20:00:: 13102648 1 1 -creepiness%1:09:00:: 05723080 1 0 -creeping%1:04:00:: 00294868 1 0 -creeping_bellflower%1:20:00:: 12037499 1 0 -creeping_bent%1:20:00:: 12107336 1 0 -creeping_bentgrass%1:20:00:: 12107336 1 0 -creeping_bugle%1:20:00:: 12841007 1 0 -creeping_buttercup%1:20:00:: 11722466 1 0 -creeping_charlie%1:20:00:: 12095647 1 0 -creeping_crowfoot%1:20:00:: 11722466 1 0 -creeping_fern%1:20:00:: 12956367 1 0 -creeping_jenny%1:20:00:: 12095647 1 0 -creeping_juniper%1:20:00:: 11638525 1 0 -creeping_lily%1:20:00:: 12455950 1 0 -creeping_oxalis%1:20:00:: 12703557 1 0 -creeping_snowberry%1:20:00:: 12235479 1 0 -creeping_soft_grass%1:20:00:: 12122918 1 0 -creeping_spike_rush%1:20:00:: 12154114 1 0 -creeping_st_john's_wort%1:20:00:: 12368451 1 0 -creeping_thistle%1:20:00:: 11954161 1 0 -creeping_thyme%1:20:00:: 12870891 1 0 -creeping_willow%1:20:00:: 12730143 1 0 -creeping_windmill_grass%1:20:00:: 12114770 1 0 -creeping_wintergreen%1:20:00:: 12235765 1 0 -creeping_wood_sorrel%1:20:00:: 12703557 1 0 -creeping_zinnia%1:20:00:: 12009792 1 0 -creeps%1:12:00:: 07519983 2 0 -creeps%1:26:00:: 14263089 1 0 -creepy%5:00:00:alarming:00 00195191 2 0 -creepy%5:00:00:offensive:01 01625760 1 0 -creepy-crawlies%1:12:00:: 07503716 1 0 -creepy-crawly%1:05:00:: 01314781 1 0 -creepy-crawly%5:00:00:alarming:00 00195191 1 0 -creese%1:06:00:: 03628728 1 0 -cremains%1:08:00:: 05218533 1 0 -cremate%2:30:00:: 00379154 1 1 -cremation%1:04:00:: 00378880 1 0 -cremation_chamber%1:06:00:: 03130066 1 0 -crematorium%1:06:00:: 03130066 2 0 -crematorium%1:06:01:: 03130233 1 0 -crematory%1:06:00:: 03130066 2 0 -crematory%1:06:01:: 03130233 1 0 -creme_anglais%1:13:00:: 07619301 1 0 -creme_brulee%1:13:00:: 07619409 1 0 -creme_caramel%1:13:00:: 07619208 1 0 -creme_de_cacao%1:13:00:: 07909231 1 0 -creme_de_fraise%1:13:00:: 07909504 1 0 -creme_de_menthe%1:13:00:: 07909362 1 0 -cremona%1:15:00:: 08808792 1 0 -crenate%5:00:00:rough:02 02246296 1 0 -crenate_leaf%1:20:00:: 13160604 1 0 -crenated%5:00:00:rough:02 02246296 1 0 -crenation%1:25:00:: 13874558 1 0 -crenature%1:25:00:: 13874558 1 0 -crenel%1:06:00:: 03130340 2 0 -crenel%1:25:00:: 13874558 1 0 -crenel%2:40:00:: 02335629 1 0 -crenelate%2:40:00:: 02335629 1 0 -crenelation%1:04:00:: 00911572 2 0 -crenelation%1:06:00:: 02811936 1 0 -crenellate%2:40:00:: 02335629 1 0 -crenellation%1:04:00:: 00911572 2 0 -crenellation%1:06:00:: 02811936 1 0 -crenelle%1:06:00:: 03130340 2 0 -crenelle%1:25:00:: 13874558 1 0 -crenulate%5:00:00:rough:02 02246410 1 0 -crenulated%5:00:00:rough:02 02246410 1 0 -creole%1:10:00:: 06905358 3 0 -creole%1:18:01:: 09709531 2 0 -creole%1:18:02:: 09709673 1 0 -creole%3:01:01:: 03057253 2 0 -creole%3:01:02:: 03057413 1 0 -creole-fish%1:05:00:: 02569905 1 0 -creolize%2:30:00:: 00116365 1 0 -creon%1:18:00:: 09596547 1 0 -creosol%1:27:00:: 14825487 1 0 -creosote%1:27:00:: 14825812 1 0 -creosote%1:27:01:: 14825631 2 0 -creosote%2:30:00:: 00186446 1 0 -creosote_bush%1:20:00:: 12723062 1 0 -crepe%1:06:00:: 03130563 3 0 -crepe%1:13:00:: 07641138 2 0 -crepe%1:27:02:: 14826173 1 0 -crepe%2:35:00:: 01599805 1 0 -crepe_de_chine%1:06:00:: 03130761 1 0 -crepe_fern%1:20:02:: 12954799 1 0 -crepe_flower%1:20:00:: 12329260 1 0 -crepe_gardenia%1:20:00:: 11776511 1 0 -crepe_jasmine%1:20:00:: 11776511 1 0 -crepe_marocain%1:06:00:: 03722944 1 0 -crepe_myrtle%1:20:00:: 12329260 1 0 -crepe_paper%1:27:00:: 14826173 1 0 -crepe_rubber%1:27:00:: 15006682 1 0 -crepe_suzette%1:13:00:: 07641256 1 0 -crepis%1:20:00:: 11959104 1 0 -crepitate%2:39:00:: 02175384 1 0 -crepitation%1:11:00:: 07381678 1 0 -crepitation_rale%1:11:00:: 07382044 1 0 -crepuscle%1:28:00:: 15169421 1 0 -crepuscular%5:00:00:dark:01 00274551 1 0 -crepuscule%1:28:00:: 15169421 1 0 -crescendo%1:07:00:: 04990525 1 1 -crescendo%2:30:00:: 00546729 1 0 -crescendo%5:00:00:increasing:02 02537946 1 1 -crescent%1:25:00:: 13896217 1 0 -crescent%5:00:00:rounded:00 02045473 1 0 -crescent-cell_anaemia%1:26:00:: 14168792 1 0 -crescent-cell_anemia%1:26:00:: 14168792 1 0 -crescent-shaped%5:00:00:rounded:00 02045473 1 0 -crescent_roll%1:13:00:: 07691650 1 0 -crescent_wrench%1:06:00:: 03130866 1 0 -crescentia%1:20:00:: 12815434 1 0 -crescentia_cujete%1:20:00:: 12815668 1 0 -cresol%1:27:00:: 14825982 1 0 -cress%1:13:00:: 07732747 2 0 -cress%1:20:00:: 11869351 1 0 -cress_green%5:00:00:chromatic:00 00374001 1 0 -cress_plant%1:20:00:: 11869351 1 0 -cresson%5:00:00:chromatic:00 00374001 1 0 -crest%1:05:00:: 01326015 5 0 -crest%1:06:00:: 03131038 4 0 -crest%1:06:01:: 03138981 3 0 -crest%1:15:00:: 08547544 1 8 -crest%1:15:01:: 08617963 2 3 -crest%2:38:00:: 02007777 2 0 -crest%2:42:00:: 02693168 1 0 -crested%5:00:01:adorned:00 00057881 3 0 -crested%5:00:02:adorned:00 00057992 2 0 -crested%5:00:03:adorned:00 00058280 1 1 -crested_cariama%1:05:00:: 02014237 1 0 -crested_coral_root%1:20:00:: 12069009 1 0 -crested_myna%1:05:00:: 01577941 1 0 -crested_penguin%1:05:00:: 02057330 1 0 -crested_screamer%1:05:00:: 01861148 1 0 -crested_swift%1:05:00:: 01833415 1 0 -crested_wheat_grass%1:20:00:: 12105353 1 0 -crested_wheatgrass%1:20:00:: 12105353 1 0 -crestfallen%5:00:00:dejected:00 00703454 1 0 -crestless_wave%1:11:00:: 07348258 1 0 -cretaceous%1:28:00:: 15126361 1 0 -cretaceous%3:01:00:: 03057591 2 0 -cretaceous%3:01:01:: 03057732 1 0 -cretaceous_period%1:28:00:: 15126361 1 0 -cretan%1:18:00:: 09709795 1 0 -cretan_dittany%1:20:00:: 12853706 1 0 -crete%1:15:00:: 08784333 1 0 -crete_dittany%1:20:00:: 12853706 1 0 -cretin%1:18:00:: 10197525 1 0 -cretinism%1:26:00:: 14121667 1 0 -cretinous%5:00:00:retarded:00 01841179 1 0 -cretonne%1:06:00:: 03131193 1 0 -creutzfeldt-jakob_disease%1:26:00:: 14100494 1 0 -crevalle_jack%1:05:00:: 02576906 1 0 -crevasse%1:17:00:: 09259677 1 0 -crevice%1:17:00:: 09258715 2 0 -crevice%1:25:00:: 13907272 1 1 -crew%1:14:00:: 08242799 2 4 -crew%1:14:01:: 08273167 1 15 -crew%1:14:02:: 08273736 4 0 -crew%1:14:03:: 08273843 3 0 -crew%2:33:00:: 01089614 1 0 -crew_cut%1:08:00:: 05260821 1 0 -crew_member%1:18:00:: 09977178 1 2 -crew_neck%1:06:00:: 03131431 1 0 -crew_neckline%1:06:00:: 03131431 1 0 -crewelwork%1:06:00:: 03131325 1 0 -crewet%1:06:00:: 03140431 1 0 -crewman%1:18:00:: 09977082 3 0 -crewman%1:18:01:: 09977178 2 0 -crewman%1:18:02:: 10546633 1 0 -crex%1:05:00:: 02015685 1 0 -crex_crex%1:05:00:: 02015797 1 0 -crib%1:04:00:: 00491901 5 0 -crib%1:04:01:: 00492083 4 0 -crib%1:06:00:: 03131574 1 3 -crib%1:06:01:: 03131669 3 0 -crib%1:10:00:: 06347225 2 0 -crib%2:35:00:: 01272234 3 0 -crib%2:40:00:: 02278470 2 0 -crib%2:41:00:: 02574977 1 0 -crib_death%1:26:00:: 14310292 1 0 -cribbage%1:04:00:: 00491901 1 0 -cribbage_board%1:06:00:: 03131791 1 0 -cricetidae%1:05:00:: 02335349 1 0 -cricetus%1:05:00:: 02342727 1 0 -cricetus_cricetus%1:05:00:: 02343058 1 0 -crichton%1:18:00:: 10915025 1 0 -crick%1:18:00:: 10915173 2 0 -crick%1:26:00:: 14361182 1 0 -crick%2:29:00:: 00025510 1 0 -cricket%1:04:00:: 00476389 2 0 -cricket%1:05:00:: 02229544 1 1 -cricket%2:33:00:: 01076017 1 0 -cricket-bat_willow%1:20:00:: 12726357 1 0 -cricket_ball%1:06:00:: 03131967 1 0 -cricket_bat%1:06:00:: 03132076 1 0 -cricket_equipment%1:06:00:: 03132261 1 0 -cricket_frog%1:05:00:: 01651487 1 0 -cricket_match%1:11:00:: 07466322 1 0 -cricketer%1:18:00:: 09977326 1 0 -crier%1:18:00:: 10719132 2 0 -crier%1:18:01:: 10773126 1 0 -crier%1:18:02:: 09977520 3 0 -crime%1:04:00:: 00766234 1 18 -crime%1:04:01:: 00767477 2 2 -crime_rate%1:28:00:: 15276801 1 0 -crime_syndicate%1:14:00:: 08246302 1 0 -crime_wave%1:11:00:: 07325102 1 0 -crimea%1:15:00:: 09015460 1 0 -crimea-congo_hemorrhagic_fever%1:26:00:: 14179390 1 0 -crimean_war%1:04:00:: 01303739 1 0 -criminal%1:18:00:: 09977660 1 12 -criminal%5:00:00:guilty:00 01322323 2 1 -criminal%5:00:00:illegal:00 01402763 3 0 -criminal%5:00:00:wrong:01 02035765 1 1 -criminal_congress%1:04:00:: 00848098 1 0 -criminal_contempt%1:04:00:: 01181066 1 0 -criminal_conversation%1:04:00:: 00848466 1 0 -criminal_court%1:14:00:: 08331213 1 0 -criminal_intelligence_services_of_canada%1:14:00:: 08343102 1 0 -criminal_investigation_command%1:14:00:: 08141092 1 0 -criminal_law%1:10:00:: 06539178 1 1 -criminal_maintenance%1:04:00:: 00765791 1 0 -criminal_negligence%1:04:00:: 00740342 1 0 -criminal_offence%1:04:00:: 00766234 1 0 -criminal_offense%1:04:00:: 00766234 1 0 -criminal_possession%1:04:00:: 00810234 1 0 -criminal_prosecution%1:04:00:: 01198307 1 0 -criminal_record%1:10:00:: 06490173 1 0 -criminal_suit%1:04:00:: 01183497 1 0 -criminalisation%1:04:00:: 01125959 1 0 -criminalise%2:41:00:: 02480923 1 0 -criminalism%1:26:00:: 13991346 1 0 -criminality%1:26:00:: 13991346 1 2 -criminalization%1:04:00:: 01125959 1 0 -criminalize%2:41:00:: 02480923 2 0 -criminalize%2:41:02:: 02515080 1 0 -criminally%4:02:00:: 00291589 2 0 -criminally%4:02:01:: 00291765 1 0 -criminalness%1:26:00:: 13991346 1 0 -criminate%2:32:00:: 00842989 1 0 -criminate%2:32:01:: 00823669 2 0 -criminative%5:00:00:inculpatory:00 00924952 1 0 -criminatory%5:00:00:inculpatory:00 00924952 1 0 -criminological%3:01:00:: 02919863 1 0 -criminologist%1:18:00:: 09978442 1 0 -criminology%1:09:00:: 06151942 1 0 -crimp%1:08:01:: 05258299 3 0 -crimp%1:18:00:: 09978566 2 0 -crimp%1:25:00:: 13907415 1 0 -crimp%2:35:00:: 01223833 2 0 -crimp%2:35:01:: 01457206 1 0 -crimper%1:06:00:: 03150232 2 0 -crimper%1:18:00:: 09978566 1 0 -crimson%1:07:00:: 04963588 1 1 -crimson%2:29:00:: 00103317 1 0 -crimson%5:00:00:bloody:00 00248560 2 5 -crimson%5:00:00:chromatic:00 00381097 1 7 -crimson%5:00:00:colored:00 00395626 3 0 -crimson-magenta%5:00:00:chromatic:00 00374214 1 0 -crimson-purple%5:00:00:chromatic:00 00374303 1 0 -crimson-yellow%5:00:00:chromatic:00 00374390 1 0 -crimson_clover%1:20:00:: 11753143 1 0 -cringe%2:38:00:: 02063771 2 1 -cringe%2:38:01:: 02061069 1 2 -cringing%5:00:00:submissive:00 00789871 1 0 -cringle%1:06:00:: 03132438 1 0 -crinion%1:15:00:: 08523340 1 0 -crinkle%1:25:00:: 13905792 1 0 -crinkle%2:30:10:: 00564857 2 0 -crinkle%2:35:00:: 01278427 1 0 -crinkle-root%1:20:00:: 11882426 1 0 -crinkle_root%1:20:00:: 11882426 1 0 -crinkled%5:00:00:uneven:00 00911762 1 0 -crinkleroot%1:20:00:: 11882426 1 0 -crinkly%5:00:00:uneven:00 00911762 1 0 -crinoid%1:05:00:: 02320127 1 0 -crinoid%3:01:00:: 02842320 1 0 -crinoidea%1:05:00:: 02319967 1 0 -crinoline%1:06:00:: 03132666 3 0 -crinoline%1:06:01:: 03132776 2 0 -crinoline%1:06:02:: 03534580 1 0 -criollo%1:13:00:: 07922955 2 0 -criollo%1:18:00:: 09978697 1 0 -cripple%1:18:00:: 09978889 1 1 -cripple%2:29:00:: 00091647 2 0 -cripple%2:30:00:: 00225832 1 2 -crippled%5:00:00:unfit:01 01018788 1 1 -crippling%5:00:00:unhealthful:00 01168166 1 1 -crisis%1:11:00:: 07417644 2 8 -crisis%1:26:00:: 13933560 1 9 -crisis_intervention%1:04:00:: 00703422 1 0 -crisp%1:13:00:: 07712559 1 1 -crisp%2:30:00:: 00322151 2 0 -crisp%2:35:00:: 01278427 1 0 -crisp%5:00:00:cold:01 01252714 3 0 -crisp%5:00:00:concise:00 00547641 6 0 -crisp%5:00:00:curly:00 01030372 5 0 -crisp%5:00:00:distinct:00 00780352 1 3 -crisp%5:00:00:fresh:01 01068104 4 0 -crisp%5:00:00:tender:01 02446931 2 0 -crispate%5:00:00:rough:02 02246539 1 0 -crispen%2:30:00:: 00322151 1 0 -crisphead_lettuce%1:13:00:: 07724269 1 0 -crispin%1:18:00:: 10915373 1 0 -crispiness%1:07:00:: 04939547 1 0 -crisply%4:02:00:: 00211651 1 0 -crispness%1:07:01:: 04939547 3 0 -crispness%1:07:02:: 04927098 1 2 -crispness%1:10:00:: 07089276 2 0 -crispy%5:00:00:tender:01 02446931 1 0 -crisscross%1:07:00:: 04681387 1 0 -crisscross%2:30:00:: 00510713 3 0 -crisscross%2:35:00:: 01276800 2 0 -crisscross%2:38:00:: 01913237 1 1 -crisscross%4:02:00:: 00293171 1 0 -crisscross%5:00:00:reticulate:00 02006700 1 0 -crisscrossed%5:00:00:reticulate:00 02006700 1 3 -cristal%1:06:00:: 02678738 1 0 -cristobal_balenciaga%1:18:00:: 10832415 1 0 -cristobal_colon%1:18:00:: 10905315 1 0 -cristobalite%1:27:00:: 14672893 1 0 -cristoforo_colombo%1:18:00:: 10905315 1 0 -criterial%5:00:00:standard:01 02295710 1 0 -criterion%1:09:00:: 05924920 2 2 -criterion%1:10:00:: 07260623 1 3 -criterional%5:00:00:standard:01 02295710 1 0 -crith%1:23:00:: 13717914 1 0 -critic%1:18:00:: 09979589 1 6 -critic%1:18:01:: 09979321 2 2 -critic%1:18:02:: 09979072 3 0 -critical%3:00:01:: 00647542 1 7 -critical%3:00:02:: 00649586 3 5 -critical%3:00:03:: 00650577 6 1 -critical%3:00:04:: 00651935 2 5 -critical%3:01:00:: 02830645 7 0 -critical%5:00:00:crucial:00 00656132 5 2 -critical%5:00:00:indispensable:00 00903894 4 3 -critical_analysis%1:09:00:: 05733864 1 0 -critical_angle%1:25:00:: 13891242 1 0 -critical_appraisal%1:09:00:: 05733864 1 0 -critical_mass%1:07:00:: 05024797 2 0 -critical_mass%1:07:01:: 05108412 1 0 -critical_point%1:26:00:: 14033185 1 0 -critical_review%1:10:00:: 06410391 1 0 -criticality%1:26:00:: 14451672 1 0 -criticality%1:26:01:: 14033587 2 0 -critically%4:02:00:: 00184778 1 2 -criticalness%1:26:00:: 14451672 1 0 -criticise%2:32:00:: 00826509 1 2 -criticise%2:33:00:: 01096097 2 0 -criticism%1:09:00:: 05734018 2 3 -criticism%1:10:00:: 06710546 1 6 -criticism%1:10:01:: 06374587 3 2 -criticize%2:32:00:: 00826509 1 13 -criticize%2:33:00:: 01096097 2 0 -critique%1:09:00:: 05734018 2 0 -critique%1:10:00:: 06410391 1 0 -critique%2:32:00:: 00855512 1 0 -critter%1:05:00:: 01314663 1 0 -critter_sitter%1:18:00:: 10420507 1 0 -crius%1:18:00:: 09575033 1 0 -crixivan%1:06:00:: 03568430 1 0 -crna_gora%1:15:00:: 08817235 1 0 -cro%1:06:00:: 03857828 1 0 -cro-magnon%1:05:00:: 02475358 1 0 -croak%1:10:00:: 07125367 1 0 -croak%2:30:00:: 00358431 1 1 -croak%2:32:00:: 00909219 3 0 -croak%2:32:01:: 01064401 2 0 -croaker%1:05:00:: 02596381 2 0 -croaker%1:13:00:: 07778342 1 0 -croaking%1:10:00:: 07125367 1 1 -croaky%5:00:00:cacophonous:00 00299313 1 0 -croat%1:18:00:: 09751256 1 0 -croatia%1:15:00:: 08815858 1 0 -croatian%1:18:00:: 09751256 1 0 -croatian%3:01:00:: 02964107 1 0 -crocanthemum_canadense%1:20:00:: 12375769 1 0 -crocethia%1:05:00:: 02029243 1 0 -crocethia_alba%1:05:00:: 02029378 1 0 -crochet%1:06:00:: 03132879 1 0 -crochet%2:36:00:: 01672490 2 0 -crochet%2:36:01:: 01672753 1 1 -crochet_hook%1:06:00:: 03133050 1 0 -crochet_needle%1:06:00:: 03133050 1 0 -crochet_stitch%1:06:00:: 03133177 1 0 -crocheting%1:04:00:: 00909565 2 0 -crocheting%1:06:00:: 03132879 1 0 -crock%1:06:00:: 03133415 3 0 -crock%1:10:00:: 06608525 2 0 -crock%1:27:00:: 14793533 1 0 -crock%2:35:00:: 01535002 2 0 -crock%2:38:00:: 02060959 1 0 -crock_pot%1:06:00:: 03133878 1 0 -crock_up%2:37:00:: 01785579 1 0 -crocked%5:00:00:intoxicated:00 00798103 1 1 -crockery%1:06:00:: 03133538 1 0 -crocket%1:06:00:: 03133744 1 0 -crocketed%5:00:00:adorned:00 00058379 1 1 -crockett%1:18:00:: 10915566 1 0 -crocodile%1:05:00:: 01697178 1 0 -crocodile_bird%1:05:00:: 02039780 1 0 -crocodile_river%1:17:00:: 09339512 1 0 -crocodile_tears%1:10:00:: 06760249 1 0 -crocodilia%1:05:00:: 01696282 1 0 -crocodilian%1:05:00:: 01696633 1 0 -crocodilian_reptile%1:05:00:: 01696633 1 0 -crocodilus%1:05:00:: 01697002 1 0 -crocodylia%1:05:00:: 01696282 1 0 -crocodylidae%1:05:00:: 01696849 1 0 -crocodylus%1:05:00:: 01697002 1 0 -crocodylus_niloticus%1:05:00:: 01697457 1 0 -crocodylus_porosus%1:05:00:: 01697611 1 0 -crocolite%1:27:00:: 14673032 1 0 -crocus%1:20:00:: 12416423 1 0 -crocus_sativus%1:20:00:: 12416703 1 0 -crocuta%1:05:00:: 02117772 1 0 -crocuta_crocuta%1:05:00:: 02117900 1 0 -croesus%1:18:00:: 10915772 1 0 -croesus%1:18:01:: 09979913 2 0 -croft%1:06:00:: 03134015 1 0 -crofter%1:18:00:: 09979985 1 1 -crohn%1:18:00:: 10915862 1 0 -crohn's_disease%1:26:00:: 14305990 1 0 -croissant%1:13:00:: 07691650 1 0 -croix_de_guerre%1:10:00:: 06709245 1 0 -cromlech%1:06:00:: 03220237 1 0 -cromorne%1:06:00:: 03628831 1 0 -cromwell%1:18:00:: 10916105 1 0 -cromwellian%3:01:00:: 03030235 1 0 -cronartium%1:20:00:: 13064247 1 0 -cronartium_ribicola%1:20:00:: 13064457 1 0 -crone%1:18:00:: 10155485 1 1 -cronk%2:32:00:: 01064401 1 0 -cronk%2:32:01:: 01053339 2 0 -cronus%1:18:00:: 09557965 1 0 -crony%1:18:00:: 09877951 1 1 -cronyism%1:04:00:: 01154487 1 0 -cronyn%1:18:00:: 10916325 1 0 -croo_monkey%1:05:00:: 02488003 1 0 -crook%1:06:00:: 03134118 3 0 -crook%1:18:00:: 09977660 1 2 -crook%1:25:00:: 13869327 2 1 -crook%2:38:00:: 02034671 1 0 -crookback%1:18:00:: 10192412 1 0 -crookback%5:00:00:unfit:01 01019000 1 0 -crookbacked%5:00:00:unfit:01 01019000 1 0 -crooked%3:00:01:: 02311544 1 2 -crooked%3:00:02:: 02319129 2 0 -crooked%5:00:00:irregular:00 01961048 3 0 -crooked%5:00:00:unerect:00 01239199 4 0 -crooked-stemmed_aster%1:20:00:: 11936027 1 0 -crookedly%4:02:00:: 00240954 1 0 -crookedness%1:07:00:: 05074218 2 0 -crookedness%1:07:01:: 04875556 3 0 -crookedness%1:25:00:: 13885370 1 0 -crookes%1:18:00:: 10916505 1 0 -crookes_radiometer%1:06:00:: 03134232 1 0 -crookes_tube%1:06:00:: 03134394 1 0 -crookneck%1:13:00:: 07716203 1 0 -crookneck_squash%1:13:00:: 07716203 1 0 -croon%2:32:00:: 01049470 1 4 -crooner%1:18:00:: 09980090 1 0 -crooning%1:04:00:: 00546972 2 0 -crooning%1:04:01:: 00547101 1 0 -crop%1:05:00:: 01974055 6 0 -crop%1:06:00:: 03134496 5 0 -crop%1:06:01:: 03134595 4 0 -crop%1:14:00:: 07955566 3 0 -crop%1:20:00:: 13085864 1 8 -crop%1:20:01:: 11530512 2 0 -crop%2:35:00:: 01321002 6 0 -crop%2:35:01:: 01576165 5 0 -crop%2:35:02:: 01553761 1 1 -crop%2:35:10:: 01576478 4 0 -crop%2:36:00:: 01652537 3 0 -crop%2:36:01:: 01741446 2 0 -crop-dusting%1:04:00:: 00368939 1 0 -crop_failure%1:26:00:: 14478975 1 0 -crop_out%2:30:00:: 00425845 1 0 -crop_up%2:39:00:: 02157519 1 2 -cropped%5:00:00:planted:00 01831679 1 0 -cropper%1:18:00:: 10586444 1 0 -croquet%1:04:00:: 00466880 1 0 -croquet%2:33:00:: 01154669 2 0 -croquet%2:35:00:: 01600873 1 0 -croquet_ball%1:06:00:: 03134739 1 0 -croquet_equipment%1:06:00:: 03134853 1 0 -croquet_mallet%1:06:00:: 03135030 1 0 -croquette%1:13:00:: 07866015 1 0 -crore%1:23:00:: 13751686 1 0 -crosby%1:18:00:: 10916731 1 0 -crosier%1:10:00:: 07267309 1 0 -cross%1:04:00:: 00850425 6 0 -cross%1:05:00:: 01327322 5 0 -cross%1:06:00:: 03135152 3 1 -cross%1:06:01:: 03135532 1 2 -cross%1:07:00:: 04681387 2 1 -cross%1:26:00:: 14477667 4 0 -cross%2:35:00:: 01429953 8 0 -cross%2:36:09:: 01691798 7 0 -cross%2:38:00:: 01912159 1 47 -cross%2:38:01:: 01913997 6 0 -cross%2:38:03:: 02023396 2 7 -cross%2:38:04:: 01914657 4 1 -cross%2:41:00:: 02558172 3 1 -cross%2:42:00:: 02685390 5 0 -cross%5:00:00:crosswise:00 01445917 1 4 -cross%5:00:00:ill-natured:00 01136248 2 1 -cross-banded%5:00:00:patterned:00 01788169 1 0 -cross-check%2:31:00:: 00663682 1 0 -cross-classification%1:09:00:: 05735789 1 0 -cross-country%4:02:00:: 00293416 2 0 -cross-country%4:02:01:: 00293543 1 0 -cross-country_jumping%1:04:00:: 00451186 1 0 -cross-country_riding%1:04:00:: 00451186 1 0 -cross-country_skiing%1:04:00:: 00440941 1 0 -cross-cultural%3:01:00:: 02872908 1 0 -cross-division%1:09:00:: 05735789 1 0 -cross-dress%2:29:00:: 00051637 1 0 -cross-dresser%1:18:00:: 10726031 1 0 -cross-examination%1:10:00:: 07194950 1 1 -cross-examiner%1:18:00:: 09980458 1 0 -cross-eye%1:26:00:: 14506233 1 0 -cross-eyed%3:00:00:: 00653514 1 0 -cross-fertilisation%1:04:00:: 00040545 2 0 -cross-fertilisation%1:11:00:: 07437575 1 0 -cross-fertilise%2:29:00:: 00053656 2 0 -cross-fertilise%2:29:01:: 00053889 1 0 -cross-fertilization%1:04:00:: 00040545 2 0 -cross-fertilization%1:11:00:: 07437575 1 0 -cross-fertilize%2:29:00:: 00053656 2 0 -cross-fertilize%2:29:01:: 00053889 1 0 -cross-file%2:41:00:: 02472033 1 0 -cross-florida_waterway%1:17:00:: 09259746 1 0 -cross-grained%5:00:00:stubborn:00 02328012 1 0 -cross-grained%5:00:00:uneven:00 00911935 2 0 -cross-index%1:10:00:: 06764867 1 0 -cross-index%2:41:00:: 02472958 1 0 -cross-leaved_heath%1:20:00:: 12228546 1 0 -cross-legged%4:02:00:: 00292021 1 1 -cross-linguistic%3:01:00:: 02843095 1 0 -cross-linguistically%4:02:00:: 00131289 1 0 -cross-link%1:19:00:: 11436929 1 0 -cross-link%2:35:00:: 01291527 1 0 -cross-linkage%1:19:00:: 11436929 1 0 -cross-modal%3:01:00:: 02976164 1 0 -cross-ply%3:01:00:: 02705409 1 0 -cross-pollinate%2:29:00:: 00054059 1 0 -cross-pollinating%3:01:00:: 02705572 1 0 -cross-pollination%1:04:00:: 00157318 2 0 -cross-pollination%1:11:00:: 07438792 1 0 -cross-purpose%1:09:00:: 05983122 1 1 -cross-question%1:10:00:: 07195630 1 0 -cross-questioner%1:18:00:: 09980458 1 0 -cross-refer%2:32:00:: 01025935 1 0 -cross-reference%1:10:00:: 06764867 1 0 -cross-section%5:00:00:crosswise:00 01446240 1 1 -cross-sectional%3:01:00:: 02943631 1 2 -cross-sectional%5:00:00:crosswise:00 01446240 2 0 -cross-sentential%3:01:00:: 02991962 1 0 -cross-shaped%5:00:00:formed:00 02146557 1 0 -cross-stitch%1:06:00:: 03137744 2 0 -cross-stitch%1:06:01:: 03137863 1 0 -cross-town%5:00:00:crossed:01 00652893 1 0 -cross_bit%1:06:00:: 03136254 1 0 -cross_bun%1:13:00:: 07691237 1 0 -cross_country%1:11:00:: 07460793 1 0 -cross_dressing%1:04:00:: 01031858 1 0 -cross_examine%2:32:00:: 00787049 1 0 -cross_hair%1:06:00:: 03136773 1 0 -cross_infection%1:26:00:: 14178326 1 0 -cross_of_calvary%1:06:00:: 02941605 1 0 -cross_of_lorraine%1:06:00:: 03690279 1 0 -cross_off%2:32:00:: 00800750 1 1 -cross_oneself%2:32:00:: 00898568 1 0 -cross_out%2:32:00:: 00800750 1 0 -cross_product%1:09:00:: 05864758 1 0 -cross_question%2:32:00:: 00787049 1 0 -cross_section%1:07:00:: 05092421 3 0 -cross_section%1:09:00:: 05822085 2 0 -cross_section%1:15:00:: 08548065 1 3 -cross_street%1:06:00:: 03137973 1 0 -cross_thwart%1:06:00:: 04432043 1 0 -cross_vine%1:20:00:: 12814003 1 0 -cross_wire%1:06:00:: 03136773 1 0 -crossbar%1:06:00:: 03135656 3 0 -crossbar%1:06:01:: 03135788 2 0 -crossbar%1:06:02:: 03135917 1 0 -crossbeam%1:06:00:: 04475496 1 0 -crossbench%1:06:00:: 03136051 1 0 -crossbencher%1:18:00:: 09980275 1 0 -crossbill%1:05:00:: 01533893 1 0 -crossbones%1:10:00:: 06807971 1 0 -crossbow%1:06:00:: 03136369 1 0 -crossbred%3:00:00:: 01904156 1 0 -crossbreed%1:05:00:: 01327322 1 0 -crossbreed%2:35:00:: 01429953 1 0 -crossbreeding%1:04:00:: 00850425 1 0 -crossbreeding%1:04:01:: 00849768 2 0 -crosscheck%1:04:00:: 00563097 2 0 -crosscheck%1:09:00:: 05825802 1 0 -crosscurrent%1:04:00:: 01168199 2 0 -crosscurrent%1:11:00:: 07404584 1 0 -crosscut%1:06:00:: 04204953 2 0 -crosscut%1:15:00:: 08617311 1 0 -crosscut%2:35:00:: 01601025 1 0 -crosscut_handsaw%1:06:00:: 03136504 1 0 -crosscut_saw%1:06:00:: 03136504 1 0 -crosse%1:06:00:: 03136657 1 0 -crossed%3:00:01:: 00652692 1 1 -crossed%3:00:02:: 00653295 2 0 -crossed_eye%1:26:00:: 14506233 1 0 -crossfire%1:04:00:: 00990474 2 0 -crossfire%1:10:00:: 07134179 1 0 -crosshairs%1:09:00:: 05812485 1 0 -crosshatch%1:07:00:: 04681797 1 0 -crosshatch%2:36:00:: 01695976 1 0 -crosshatched%5:00:00:shaded:02 00277749 1 0 -crosshead%1:06:00:: 03137044 2 0 -crosshead%1:10:00:: 06344329 1 0 -crossheading%1:10:00:: 06344329 1 0 -crossing%1:04:00:: 00313245 7 0 -crossing%1:04:01:: 00297532 1 1 -crossing%1:04:02:: 00850425 6 0 -crossing%1:06:00:: 03137228 5 0 -crossing%1:06:01:: 03581125 4 0 -crossing%1:15:00:: 08547938 3 0 -crossing%1:17:00:: 09283623 2 0 -crossing_guard%1:18:00:: 09980658 1 0 -crossing_over%1:22:00:: 13454130 1 0 -crossjack%1:06:00:: 03137473 1 0 -crossly%4:02:00:: 00293650 1 0 -crossness%1:07:00:: 04641700 2 0 -crossness%1:12:00:: 07552729 1 0 -crossopterygian%1:05:00:: 02515214 1 0 -crossopterygii%1:05:00:: 02514988 1 0 -crossover%1:06:00:: 03137228 4 0 -crossover%1:10:00:: 07032753 3 0 -crossover%1:18:00:: 09980805 2 0 -crossover%1:22:00:: 13454130 1 0 -crossover_voter%1:18:00:: 09980805 1 0 -crosspatch%1:18:00:: 10148305 1 0 -crosspiece%1:06:00:: 03137579 2 0 -crosspiece%1:06:01:: 04475496 1 0 -crossroad%1:06:00:: 03581125 1 1 -crossroads%1:09:00:: 05764613 3 1 -crossroads%1:14:00:: 08226978 1 4 -crossroads%1:26:00:: 14033185 2 1 -crossruff%2:33:00:: 01078573 1 0 -crosstalk%1:11:00:: 07431247 1 0 -crosstie%1:06:00:: 04433585 1 0 -crosstown%4:02:00:: 00293824 1 0 -crosstown%5:00:00:crossed:01 00652893 1 0 -crosswalk%1:06:00:: 03137228 1 0 -crossway%1:06:00:: 03581125 1 0 -crossways%4:02:00:: 00272844 1 0 -crosswind%1:19:00:: 11442524 1 0 -crosswise%3:00:00:: 01445705 1 0 -crosswise%4:02:00:: 00272844 2 0 -crosswise%4:02:01:: 00293077 1 0 -crosswise%5:00:00:horizontal:00 01232917 2 0 -crossword%1:10:00:: 06785654 1 0 -crossword_puzzle%1:10:00:: 06785654 1 0 -crotal%1:20:00:: 12991837 1 0 -crotalaria%1:20:00:: 12519563 1 0 -crotalaria_sagitallis%1:20:00:: 12519824 1 0 -crotalaria_spectabilis%1:20:00:: 12520015 1 0 -crotalidae%1:05:00:: 01753721 1 0 -crotalus%1:05:00:: 01755274 1 0 -crotalus_adamanteus%1:05:00:: 01755581 1 0 -crotalus_atrox%1:05:00:: 01756508 1 0 -crotalus_cerastes%1:05:00:: 01756291 1 0 -crotalus_horridus_atricaudatus%1:05:00:: 01755952 1 0 -crotalus_horridus_horridus%1:05:00:: 01755740 1 0 -crotalus_lepidus%1:05:00:: 01756733 1 0 -crotalus_mitchellii%1:05:00:: 01757343 1 0 -crotalus_scutulatus%1:05:00:: 01757115 1 0 -crotalus_tigris%1:05:00:: 01756916 1 0 -crotalus_viridis%1:05:00:: 01756089 1 0 -crotaphion%1:08:00:: 05232221 1 0 -crotaphytus%1:05:00:: 01679494 1 0 -crotch%1:08:00:: 05597436 2 0 -crotch%1:08:01:: 05514081 3 0 -crotch%1:25:00:: 13914265 1 0 -crotch_hair%1:08:00:: 05263587 1 0 -crotchet%1:06:00:: 03138128 4 0 -crotchet%1:07:00:: 04797824 3 0 -crotchet%1:10:00:: 06871127 2 0 -crotchet%1:25:00:: 13869547 1 0 -crotchetiness%1:07:00:: 04641869 1 0 -crotchety%5:00:00:ill-natured:00 01135673 1 1 -croton%1:20:01:: 12922763 2 0 -croton%1:20:02:: 12923652 1 0 -croton_bug%1:05:00:: 02234848 1 0 -croton_eluteria%1:20:00:: 12923108 1 0 -croton_oil%1:20:00:: 12922933 1 0 -croton_tiglium%1:20:00:: 12922763 1 0 -crotonbug%1:05:00:: 02234848 1 0 -crotophaga%1:05:00:: 01824227 1 0 -crottal%1:20:00:: 12991837 1 0 -crottle%1:20:00:: 12991837 1 0 -crouch%1:04:00:: 00405766 1 2 -crouch%2:35:00:: 01545314 2 7 -crouch%2:38:00:: 02062632 1 9 -croup%1:05:00:: 02463611 2 0 -croup%1:26:00:: 14174011 1 0 -croupe%1:05:00:: 02463611 1 0 -croupier%1:18:00:: 09980985 1 0 -croupier's_rake%1:06:00:: 03138217 1 0 -croupy%3:01:00:: 02705692 1 0 -crouse%1:18:00:: 10916887 1 0 -crouton%1:13:00:: 07682197 1 0 -crow%1:05:00:: 01579028 1 2 -crow%1:10:00:: 07229747 5 0 -crow%1:10:01:: 06909391 6 0 -crow%1:11:00:: 07382286 2 1 -crow%1:17:00:: 09257429 4 0 -crow%1:18:00:: 09654259 3 0 -crow%2:32:00:: 00883635 1 2 -crow%2:32:01:: 00857517 2 2 -crow%2:32:02:: 00857653 3 1 -crow's_feet%1:25:00:: 13906345 1 0 -crow's_foot%1:20:00:: 12199790 2 0 -crow's_foot%1:25:00:: 13906345 1 0 -crow's_nest%1:06:00:: 03139998 1 0 -crow-bait%1:05:00:: 02381119 1 0 -crow-sized%5:00:00:sized:00 02222871 1 0 -crow_blackbird%1:05:00:: 01574390 1 0 -crow_corn%1:20:00:: 12430198 1 0 -crow_garlic%1:20:00:: 12435486 1 0 -crow_pheasant%1:05:00:: 01824749 1 0 -crow_step%1:06:00:: 03105810 1 0 -crowbait%1:05:00:: 02381119 1 1 -crowbar%1:06:00:: 03138344 1 0 -crowberry%1:20:00:: 12751675 1 0 -crowberry_family%1:20:00:: 12751402 1 0 -crowd%1:14:00:: 08182379 1 35 -crowd%1:14:01:: 08273843 2 1 -crowd%2:38:00:: 02027612 3 2 -crowd%2:38:01:: 02028722 1 6 -crowd%2:38:02:: 02054864 4 1 -crowd%2:42:00:: 02649305 2 3 -crowd_control%1:04:00:: 00804180 1 0 -crowd_out%2:38:00:: 02013840 1 0 -crowd_together%2:38:00:: 02027612 1 1 -crowded%3:00:00:: 00559690 1 12 -crowding%1:26:00:: 13933841 1 0 -crowfoot%1:20:00:: 11720353 1 0 -crowfoot_family%1:20:00:: 11719468 1 0 -crowfoot_grass%1:20:00:: 12116734 1 0 -crowing%1:10:00:: 07229747 1 0 -crowing%5:00:00:proud:00 01890752 1 0 -crown%1:06:00:: 03138534 5 1 -crown%1:06:01:: 03138669 4 1 -crown%1:06:02:: 03138856 3 1 -crown%1:06:03:: 03138981 12 0 -crown%1:06:04:: 03139089 11 0 -crown%1:08:00:: 05308141 2 1 -crown%1:08:01:: 05539595 10 0 -crown%1:10:00:: 06705891 9 0 -crown%1:10:01:: 06884097 1 1 -crown%1:15:00:: 08617963 8 0 -crown%1:20:00:: 13128003 7 0 -crown%1:21:00:: 13389864 6 0 -crown%2:30:01:: 00485891 2 2 -crown%2:35:00:: 01338247 4 0 -crown%2:41:00:: 02390949 1 2 -crown%2:42:00:: 02694677 3 0 -crown-beard%1:20:00:: 12030654 1 0 -crown-of-the-field%1:20:00:: 11805544 1 0 -crown_beard%1:20:00:: 12030654 1 0 -crown_colony%1:15:00:: 08500079 1 0 -crown_daisy%1:20:00:: 11950877 1 0 -crown_fire%1:11:00:: 07304353 1 0 -crown_gall%1:26:00:: 14279632 1 7 -crown_glass%1:27:00:: 14880273 2 0 -crown_glass%1:27:02:: 14880557 1 0 -crown_imperial%1:20:00:: 12452836 1 0 -crown_jewel%1:06:00:: 03139341 2 0 -crown_jewel%1:21:00:: 13330425 1 0 -crown_jewels%1:06:00:: 03139464 1 0 -crown_land%1:21:00:: 13252062 1 0 -crown_lens%1:06:00:: 03139640 1 0 -crown_monkey%1:05:00:: 02487675 1 0 -crown_of_thorns%1:06:00:: 03139731 3 0 -crown_of_thorns%1:20:00:: 12921868 2 0 -crown_of_thorns%1:26:00:: 14477667 1 0 -crown_prince%1:18:00:: 09981092 1 0 -crown_princess%1:18:00:: 09981183 2 0 -crown_princess%1:18:01:: 09981278 1 0 -crown_roast%1:13:00:: 07668356 1 0 -crown_saw%1:06:00:: 03139887 1 0 -crown_vetch%1:20:00:: 12519089 1 0 -crown_wart%1:26:00:: 14280011 1 0 -crownbeard%1:20:00:: 12030654 1 0 -crowned%3:00:00:: 00653822 3 0 -crowned%3:00:02:: 00655136 1 1 -crowned%3:00:04:: 01381777 2 0 -crowned_head%1:18:00:: 10628644 1 0 -crowning%5:00:00:top:00 02440292 2 0 -crowning%5:00:00:ultimate:00 01578683 1 1 -crownless%3:00:00:: 00654829 1 0 -crownwork%1:06:00:: 03139089 1 0 -crozier%1:10:00:: 07267309 1 0 -crp%1:27:00:: 14732299 1 0 -crt%1:06:00:: 02985137 1 0 -crt_screen%1:06:00:: 04152593 1 0 -crucial%3:00:00:: 00655779 1 6 -crucial%5:00:00:important:00 01276150 3 0 -crucial%5:00:00:material:02 01487943 2 1 -cruciality%1:26:00:: 14451672 1 0 -crucially%4:02:00:: 00292934 1 0 -crucian_carp%1:05:00:: 01443831 1 0 -cruciate%5:00:00:symmetrical:00 02372434 1 0 -crucible%1:06:00:: 03140126 1 0 -crucible_steel%1:27:00:: 14803283 1 0 -crucifer%1:20:00:: 11868814 1 0 -cruciferae%1:20:00:: 11867525 1 0 -cruciferous%3:01:00:: 02937720 1 0 -cruciferous_plant%1:20:00:: 11868814 1 0 -cruciferous_vegetable%1:13:00:: 07713395 1 0 -crucifix%1:04:00:: 00434844 2 0 -crucifix%1:06:00:: 03140292 1 1 -crucifix_fish%1:05:00:: 02521129 1 0 -crucifixion%1:04:00:: 01165337 1 1 -crucifixion%1:04:01:: 00422551 3 0 -crucifixion%1:11:00:: 07332864 2 0 -cruciform%5:00:00:symmetrical:00 02372434 1 0 -crucify%2:32:03:: 00823827 4 0 -crucify%2:37:00:: 01803003 2 1 -crucify%2:37:03:: 01801847 3 0 -crucify%2:41:00:: 02484049 1 2 -crud%1:26:00:: 14074267 3 0 -crud%1:27:00:: 14856752 2 0 -crud%1:27:01:: 15044232 1 0 -cruddy%5:00:00:dirty:02 00425313 1 0 -crude%1:27:00:: 14980579 1 0 -crude%3:00:02:: 01953467 3 0 -crude%5:00:00:early:02 00818175 4 0 -crude%5:00:00:indecent:00 00683531 2 2 -crude%5:00:00:unanalyzed:00 00417204 6 0 -crude%5:00:00:unconditional:00 00556881 5 0 -crude%5:00:01:unskilled:00 02229584 1 6 -crude_oil%1:27:00:: 14980579 1 0 -crudely%4:02:00:: 00161523 1 1 -crudely%4:02:01:: 00274527 2 0 -crudeness%1:07:00:: 04915121 2 0 -crudeness%1:07:02:: 04817564 3 0 -crudeness%1:26:00:: 14472624 1 0 -crudites%1:13:00:: 07708512 1 0 -crudity%1:07:00:: 04915121 2 1 -crudity%1:26:00:: 14472624 1 1 -cruel%5:00:01:inhumane:00 01263013 1 3 -cruel_and_unusual_punishment%1:04:00:: 01161411 1 0 -cruel_plant%1:20:00:: 13236100 1 0 -cruelly%4:02:00:: 00232425 1 1 -cruelly%4:02:01:: 00232499 2 0 -cruelness%1:07:00:: 04845475 1 0 -cruelty%1:04:00:: 00424599 1 4 -cruelty%1:07:01:: 04845475 3 1 -cruelty%1:12:00:: 07506382 2 1 -cruet%1:06:00:: 03140431 1 0 -cruet-stand%1:06:00:: 03140546 1 0 -cruise%1:04:00:: 00312932 1 0 -cruise%2:38:01:: 01844653 4 0 -cruise%2:38:02:: 01844859 2 2 -cruise%2:38:03:: 01931566 1 3 -cruise%2:39:00:: 02154031 3 0 -cruise_control%1:06:00:: 03140652 1 0 -cruise_liner%1:06:00:: 03141327 1 0 -cruise_missile%1:06:00:: 03140771 1 0 -cruise_ship%1:06:00:: 03141327 1 0 -cruiser%1:06:00:: 03140900 2 0 -cruiser%1:06:01:: 02932891 3 0 -cruiser%1:06:02:: 03141065 1 0 -cruiserweight%1:18:00:: 10261624 1 0 -cruller%1:13:00:: 07639577 1 0 -crumb%1:13:00:: 07622261 3 0 -crumb%1:18:00:: 10539715 2 0 -crumb%1:23:00:: 13760980 1 0 -crumb%2:30:00:: 00180197 3 0 -crumb%2:30:01:: 00338866 2 0 -crumb%2:35:00:: 01265740 1 0 -crumb_cake%1:13:00:: 07630782 1 0 -crumble%2:30:00:: 00397405 2 0 -crumble%2:30:13:: 00208836 3 0 -crumble%2:38:00:: 02041877 1 2 -crumbliness%1:07:00:: 04939742 1 0 -crumbly%5:00:00:breakable:00 00708738 1 0 -crumhorn%1:06:00:: 03628831 1 0 -crummy%5:00:00:inferior:02 02346013 1 2 -crump%2:30:00:: 00307191 3 0 -crump%2:33:00:: 01136393 2 0 -crump%2:39:00:: 02184797 1 0 -crumpet%1:13:00:: 07630909 1 0 -crumple%2:30:10:: 00564857 4 0 -crumple%2:35:00:: 01278817 3 0 -crumple%2:35:01:: 01279186 2 0 -crumple%2:38:00:: 02041877 1 1 -crumpled%5:00:00:damaged:00 00680005 1 1 -crunch%1:04:00:: 00358089 3 0 -crunch%1:11:00:: 07382414 1 1 -crunch%1:26:00:: 13934070 2 0 -crunch%2:30:00:: 00331082 4 0 -crunch%2:32:00:: 01058224 1 1 -crunch%2:34:00:: 01201693 3 0 -crunch%2:35:00:: 01594978 2 0 -crupper%1:06:00:: 03141455 1 1 -crural%3:01:00:: 02705809 1 0 -crus%1:08:00:: 05561390 1 0 -crusade%1:04:00:: 00798245 1 2 -crusade%1:04:01:: 00968715 2 1 -crusade%2:33:00:: 01093944 2 0 -crusade%2:41:10:: 02589576 1 0 -crusader%1:18:00:: 10515194 1 0 -crusader%1:18:01:: 09981365 2 0 -cruse%1:06:00:: 03141612 1 0 -crush%1:04:00:: 00358089 4 0 -crush%1:12:00:: 07544351 3 0 -crush%1:14:00:: 08183398 2 0 -crush%1:27:00:: 14762366 1 1 -crush%2:30:00:: 00339085 4 2 -crush%2:30:08:: 00559390 8 0 -crush%2:33:00:: 01101913 3 3 -crush%2:33:01:: 01103836 7 0 -crush%2:35:00:: 01593937 2 3 -crush%2:35:01:: 01492944 6 0 -crush%2:37:00:: 01800195 5 0 -crush%2:41:00:: 02424652 1 4 -crush_out%2:30:00:: 00478682 1 0 -crushed%5:00:00:humble:00 01893303 2 1 -crushed%5:00:00:rough:00 02240668 1 2 -crushed_leather%1:27:00:: 14762366 1 0 -crushed_rock%1:27:00:: 14698884 1 0 -crusher%1:06:00:: 03141702 1 2 -crushing%1:04:00:: 01079604 1 0 -crushing%5:00:00:destructive:00 00587697 1 4 -crushingly%4:02:00:: 00303534 1 0 -crust%1:07:00:: 04915866 3 0 -crust%1:17:00:: 09260010 1 1 -crust%1:17:01:: 09260218 2 0 -crust%2:30:00:: 00356789 1 0 -crustacea%1:05:00:: 01974399 1 0 -crustacean%1:05:00:: 01974773 1 0 -crustacean%3:01:00:: 02706160 1 0 -crustaceous%3:01:00:: 02706051 2 0 -crustaceous%3:01:01:: 02706160 1 0 -crustal%3:01:00:: 02705928 1 0 -crustal_movement%1:11:00:: 07310338 1 0 -crustal_plate%1:17:00:: 09395457 1 0 -crusted%5:00:00:covered:00 01695749 1 2 -crustlike%5:00:00:covered:00 01695749 1 0 -crustose%3:01:00:: 02706305 1 0 -crustose_thallus%1:20:00:: 11532194 1 0 -crusty%5:00:00:covered:00 01695749 1 0 -crusty%5:00:00:ill-natured:00 01137000 2 0 -crutch%1:04:00:: 00178700 2 1 -crutch%1:06:00:: 03141823 1 2 -crux%1:10:00:: 06606694 2 0 -crux%1:17:00:: 09441352 1 0 -crux_australis%1:17:00:: 09441352 1 0 -crux_of_the_matter%1:10:00:: 06606694 1 1 -cry%1:10:00:: 07120524 1 13 -cry%1:10:02:: 07014752 4 1 -cry%1:10:03:: 07152752 3 1 -cry%1:10:04:: 07121157 2 10 -cry%1:11:00:: 07382572 5 0 -cry%2:29:00:: 00066191 2 12 -cry%2:29:02:: 00066685 7 0 -cry%2:32:01:: 00913065 1 17 -cry%2:32:02:: 00974786 4 2 -cry%2:32:03:: 00985464 6 0 -cry%2:32:07:: 00912048 3 11 -cry%2:34:00:: 01188987 5 0 -cry-baby_tree%1:20:00:: 12528549 1 0 -cry_for%2:42:00:: 02629111 1 0 -cry_out%2:32:00:: 00912048 1 10 -cry_out_for%2:42:00:: 02629111 1 1 -cryaesthesia%1:26:00:: 14533106 1 0 -crybaby%1:18:00:: 10776339 2 0 -crybaby%1:18:01:: 10781817 1 0 -crybaby_tree%1:20:00:: 12528549 1 0 -cryesthesia%1:26:00:: 14533106 1 0 -crying%1:04:00:: 00868196 1 0 -crying%5:00:00:conspicuous:00 00580039 2 0 -crying%5:00:00:imperative:00 00712877 1 0 -cryoanaesthesia%1:26:00:: 14026869 1 0 -cryoanesthesia%1:26:00:: 14026869 1 0 -cryobiology%1:09:00:: 06069996 1 0 -cryocautery%1:04:00:: 00697614 2 0 -cryocautery%1:06:00:: 03141991 1 0 -cryogen%1:27:00:: 14826328 1 0 -cryogenic%3:01:00:: 02706480 1 0 -cryogenics%1:09:00:: 06098687 1 0 -cryogeny%1:09:00:: 06098687 1 0 -cryolite%1:27:00:: 14673150 1 0 -cryometer%1:06:00:: 03142099 1 0 -cryonic%3:01:00:: 02706593 1 0 -cryonics%1:09:00:: 06070179 1 0 -cryopathy%1:26:00:: 14294678 1 0 -cryophobia%1:26:00:: 14383362 1 0 -cryoscope%1:06:00:: 03142205 1 0 -cryostat%1:06:00:: 03142325 1 1 -cryosurgery%1:04:00:: 00668829 1 0 -crypt%1:06:00:: 03142431 1 0 -cryptacanthodes%1:05:00:: 02616251 1 0 -cryptacanthodes_maculatus%1:05:00:: 02616397 1 0 -cryptanalysis%1:09:00:: 06172502 1 0 -cryptanalyst%1:18:00:: 09981540 1 0 -cryptanalytic%3:01:00:: 02706691 1 0 -cryptanalytics%1:09:00:: 06172502 1 0 -cryptic%5:00:00:concise:00 00547930 3 0 -cryptic%5:00:00:esoteric:00 00899738 2 0 -cryptic%5:00:00:inexplicable:00 00939444 1 2 -cryptic_coloration%1:07:00:: 04979307 1 0 -cryptical%5:00:00:esoteric:00 00899738 2 0 -cryptical%5:00:00:inexplicable:00 00939444 1 0 -cryptically%4:02:00:: 00296836 1 0 -cryptobiosis%1:26:00:: 14063475 1 0 -cryptobiotic%3:01:00:: 02707164 1 0 -cryptobranchidae%1:05:00:: 01633047 1 0 -cryptobranchus%1:05:00:: 01633250 1 0 -cryptobranchus_alleganiensis%1:05:00:: 01633406 1 0 -cryptocercidae%1:05:00:: 02235321 1 0 -cryptocercus%1:05:00:: 02235465 1 0 -cryptococcosis%1:26:00:: 14147212 1 0 -cryptocoryne%1:20:00:: 11787190 1 0 -cryptogam%1:20:00:: 11552133 1 0 -cryptogamia%1:20:00:: 11551898 1 0 -cryptogamic%3:01:00:: 02707008 1 0 -cryptogamous%3:01:00:: 02707008 1 0 -cryptogram%1:10:00:: 06355183 1 0 -cryptogramma%1:20:00:: 13210006 1 0 -cryptogramma_acrostichoides%1:20:00:: 13210350 1 0 -cryptogramma_crispa%1:20:00:: 13210597 1 0 -cryptogrammataceae%1:20:00:: 13227009 1 0 -cryptograph%1:06:00:: 03142579 3 0 -cryptograph%1:10:01:: 06355183 2 0 -cryptograph%1:10:02:: 06355307 1 0 -cryptographer%1:18:00:: 09981540 1 0 -cryptographic%3:01:00:: 02706691 1 0 -cryptographical%3:01:00:: 02706691 1 0 -cryptographically%4:02:00:: 00297023 1 0 -cryptography%1:04:00:: 00614489 2 0 -cryptography%1:09:00:: 06172502 1 0 -cryptologic%3:01:00:: 02706691 1 0 -cryptological%3:01:00:: 02706691 1 0 -cryptologist%1:18:00:: 09981540 1 0 -cryptology%1:09:00:: 06172502 1 0 -cryptomeria%1:20:00:: 11636068 1 0 -cryptomeria_japonica%1:20:00:: 11636204 1 0 -cryptomonad%1:05:00:: 01421333 1 0 -cryptophyceae%1:05:00:: 01421164 1 0 -cryptophyta%1:05:00:: 01421012 1 0 -cryptophyte%1:05:00:: 01421333 1 0 -cryptoprocta%1:05:00:: 02136285 1 0 -cryptoprocta_ferox%1:05:00:: 02136452 1 0 -cryptorchidism%1:26:00:: 14092247 1 0 -cryptorchidy%1:26:00:: 14092247 1 0 -cryptorchism%1:26:00:: 14092247 1 0 -cryptotermes%1:05:00:: 02225577 1 0 -cryptotermes_brevis%1:05:00:: 02225798 1 0 -cryptotis%1:05:00:: 01893294 1 0 -cryptotis_parva%1:05:00:: 01893399 1 0 -crystal%1:06:00:: 03142679 6 0 -crystal%1:06:01:: 03142834 5 0 -crystal%1:06:02:: 03142912 2 2 -crystal%1:17:00:: 09260466 3 1 -crystal%1:27:00:: 14883206 1 4 -crystal%1:27:01:: 14879750 4 0 -crystal_ball%1:06:00:: 03143131 1 0 -crystal_clear%5:00:00:clear:00 00429355 2 0 -crystal_clear%5:00:00:clear:02 00431774 1 0 -crystal_counter%1:06:00:: 03143255 1 0 -crystal_detector%1:06:00:: 03143400 1 0 -crystal_gazing%1:09:00:: 05775695 1 0 -crystal_lattice%1:09:00:: 05732086 1 0 -crystal_microphone%1:06:00:: 03143572 1 0 -crystal_oscillator%1:06:00:: 03143754 1 0 -crystal_pickup%1:06:00:: 03143982 1 0 -crystal_rectifier%1:06:00:: 03202760 1 0 -crystal_set%1:06:00:: 03144156 1 0 -crystal_tea%1:20:00:: 12238491 1 0 -crystal_violet%1:27:00:: 14770838 1 0 -crystalise%2:30:00:: 00443670 3 0 -crystalise%2:30:01:: 00445940 2 0 -crystalise%2:30:02:: 00143704 4 0 -crystalise%2:31:00:: 00621058 1 0 -crystalised%5:00:00:crystalline:00 00269063 2 0 -crystalised%5:00:00:preserved:02 01071941 1 0 -crystalize%2:30:00:: 00443670 3 0 -crystalize%2:30:01:: 00445940 2 0 -crystalize%2:30:02:: 00143704 4 0 -crystalize%2:31:00:: 00621058 1 0 -crystalized%5:00:00:preserved:02 01071941 1 0 -crystalline%3:00:00:: 00268869 1 0 -crystalline%5:00:00:clear:02 00431774 3 0 -crystalline%5:00:00:distinct:00 00780575 2 0 -crystalline_lens%1:08:00:: 05320362 1 0 -crystallisation%1:19:00:: 11410298 1 0 -crystallise%2:30:01:: 00445940 2 0 -crystallise%2:30:02:: 00143704 3 0 -crystallise%2:31:00:: 00621058 1 0 -crystallised%3:00:00:: 00656862 1 0 -crystallite%1:17:00:: 09260744 1 1 -crystallization%1:09:00:: 05772044 3 0 -crystallization%1:17:00:: 09260466 2 0 -crystallization%1:19:00:: 11410298 1 0 -crystallize%2:30:00:: 00443670 4 0 -crystallize%2:30:01:: 00445940 3 1 -crystallize%2:30:02:: 00143704 1 2 -crystallize%2:31:00:: 00621058 2 1 -crystallized%3:00:00:: 00656862 1 0 -crystallized%5:00:00:crystalline:00 00269063 2 0 -crystallized_fruit%1:13:00:: 07600506 1 0 -crystallized_ginger%1:13:00:: 07600895 1 0 -crystallizing%1:19:00:: 11410298 1 0 -crystallographer%1:18:00:: 09981740 1 0 -crystallography%1:09:00:: 06098876 1 1 -cs%1:27:00:: 14634232 1 0 -cs_gas%1:27:00:: 14603798 1 0 -cse%1:14:00:: 08342888 1 0 -csis%1:14:00:: 08342419 1 0 -cst%1:28:00:: 15132201 1 0 -ct%1:04:00:: 00901476 2 0 -ct%1:15:00:: 09068444 1 0 -ctc%1:14:00:: 08125420 1 0 -ctene%1:05:00:: 01918585 1 0 -ctenidium%1:05:00:: 01953877 1 0 -ctenizidae%1:05:00:: 01775592 1 0 -ctenocephalides%1:05:00:: 02186834 1 0 -ctenocephalides_canis%1:05:00:: 02187150 1 0 -ctenocephalides_felis%1:05:00:: 02187279 1 0 -ctenocephalus%1:05:00:: 02187022 1 0 -ctenoid%3:01:00:: 02707283 1 0 -ctenophora%1:05:00:: 01918310 1 0 -ctenophore%1:05:00:: 01918744 1 0 -ctenophore_family%1:05:00:: 01918010 1 0 -ctenophore_genus%1:05:00:: 01918152 1 0 -cu%1:27:00:: 14635722 1 0 -cu_ft%1:23:00:: 13601483 1 1 -cu_in%1:23:00:: 13601370 1 0 -cub%1:05:00:: 01322685 3 0 -cub%1:18:00:: 09871229 2 0 -cub%1:18:01:: 09981834 1 0 -cub%2:29:00:: 00058014 1 0 -cub_scout%1:18:00:: 09981939 1 0 -cub_shark%1:05:00:: 01489501 1 0 -cuba%1:15:00:: 08750334 1 17 -cuba%1:15:01:: 08750151 2 0 -cubage_unit%1:23:00:: 13600822 1 0 -cuban%1:18:00:: 09698901 1 0 -cuban%3:01:00:: 02969591 1 7 -cuban_bast%1:20:00:: 12178494 1 0 -cuban_capital%1:15:00:: 08750612 1 0 -cuban_heel%1:06:00:: 03144262 1 0 -cuban_itch%1:26:00:: 14124688 1 0 -cuban_mahogany%1:20:00:: 12699922 1 0 -cuban_monetary_unit%1:23:00:: 13691909 1 0 -cuban_peso%1:23:00:: 13692014 1 0 -cuban_revolution%1:04:00:: 01303934 1 0 -cuban_sandwich%1:13:00:: 07697825 1 0 -cuban_spinach%1:20:00:: 11861853 1 0 -cubature_unit%1:23:00:: 13600822 1 0 -cubby%1:06:00:: 03144365 1 0 -cubbyhole%1:06:00:: 03144486 1 0 -cubbyhole%1:06:01:: 03144365 2 0 -cube%1:06:00:: 03144592 5 0 -cube%1:20:00:: 12544862 4 0 -cube%1:23:00:: 13731241 3 0 -cube%1:25:00:: 13916721 1 2 -cube%1:25:01:: 13914608 2 1 -cube%2:31:00:: 00640262 1 1 -cube%2:35:00:: 01256867 2 0 -cube-shaped%5:00:00:cubic:00 00657804 1 0 -cube_root%1:23:00:: 13731959 1 0 -cubeb%1:06:00:: 03144756 3 0 -cubeb%1:20:00:: 13150178 2 0 -cubeb%1:20:02:: 13150378 1 0 -cubeb_cigarette%1:06:00:: 03144756 1 0 -cubeb_vine%1:20:00:: 13150178 1 0 -cubelike%5:00:00:cubic:00 00657804 1 0 -cubic%3:00:00:: 00657198 1 0 -cubic_centimeter%1:23:00:: 13623636 1 0 -cubic_centimetre%1:23:00:: 13623636 1 0 -cubic_content_unit%1:23:00:: 13600822 1 0 -cubic_decimeter%1:23:00:: 13624190 1 0 -cubic_decimetre%1:23:00:: 13624190 1 0 -cubic_foot%1:23:00:: 13601483 1 1 -cubic_inch%1:23:00:: 13601370 1 0 -cubic_kilometer%1:23:00:: 13625063 1 0 -cubic_kilometre%1:23:00:: 13625063 1 0 -cubic_measure%1:23:00:: 13600822 1 0 -cubic_meter%1:23:00:: 13624873 1 0 -cubic_metre%1:23:00:: 13624873 1 0 -cubic_millimeter%1:23:00:: 13623455 1 0 -cubic_millimetre%1:23:00:: 13623455 1 0 -cubic_yard%1:23:00:: 13618076 1 0 -cubical%5:00:00:cubic:00 00657804 1 0 -cubicity%1:07:00:: 05063729 1 0 -cubicle%1:06:00:: 02873839 3 0 -cubicle%1:06:01:: 02968333 2 0 -cubicle%1:06:02:: 02991555 1 0 -cubiform%5:00:00:cubic:00 00657804 1 0 -cubism%1:14:00:: 08466175 1 5 -cubist%1:18:00:: 09982013 1 0 -cubist%3:01:00:: 03021194 1 5 -cubistic%3:01:00:: 03021194 1 0 -cubit%1:23:00:: 13653349 1 0 -cubital%3:01:00:: 02707429 1 0 -cubital_joint%1:08:00:: 05579944 1 0 -cubital_nerve%1:08:00:: 05568767 1 0 -cubitiere%1:06:00:: 03144873 1 0 -cubitus%1:08:00:: 05579944 1 0 -cubitus%1:08:01:: 05564229 2 0 -cuboid%1:25:00:: 13884930 1 0 -cuboid%5:00:00:cubic:00 00657804 1 0 -cuboid_bone%1:08:00:: 05271685 1 0 -cuboidal%5:00:00:cubic:00 00657804 1 0 -cuboidal_cell%1:08:00:: 05242396 1 0 -cuboidal_epithelial_cell%1:08:00:: 05242396 1 0 -cucking_stool%1:06:00:: 03144982 1 0 -cuckold%1:18:00:: 09982152 1 0 -cuckold%2:41:00:: 02576503 1 0 -cuckoldom%1:26:00:: 13966683 1 0 -cuckoldry%1:04:00:: 00160922 1 0 -cuckoo%1:05:00:: 01823013 2 0 -cuckoo%1:18:00:: 10157744 1 0 -cuckoo%2:32:00:: 00957945 1 0 -cuckoo's_nest%1:06:00:: 02820798 1 0 -cuckoo-bumblebee%1:05:00:: 02209964 1 1 -cuckoo_bread%1:20:00:: 12703190 1 0 -cuckoo_clock%1:06:00:: 03145147 1 0 -cuckoo_flower%1:20:00:: 11811706 2 0 -cuckoo_flower%1:20:01:: 11882074 1 0 -cuckooflower%1:20:00:: 11882074 1 0 -cuckoopint%1:20:00:: 11780148 1 0 -cuculidae%1:05:00:: 01822773 1 0 -cuculiform_bird%1:05:00:: 01822602 1 0 -cuculiformes%1:05:00:: 01822423 1 0 -cuculus%1:05:00:: 01823279 1 0 -cuculus_canorus%1:05:00:: 01823414 1 0 -cucumber%1:13:00:: 07718472 2 0 -cucumber%1:20:00:: 12165384 1 0 -cucumber-shaped%5:00:00:prolate:00 02050368 1 0 -cucumber_tree%1:20:00:: 11710827 1 0 -cucumber_vine%1:20:00:: 12165384 1 0 -cucumis%1:20:00:: 12164215 1 0 -cucumis_melo%1:20:00:: 12164363 1 0 -cucumis_melo_cantalupensis%1:20:00:: 12164656 1 0 -cucumis_melo_inodorus%1:20:00:: 12164881 1 0 -cucumis_melo_reticulatus%1:20:00:: 12165170 1 0 -cucumis_sativus%1:20:00:: 12165384 1 0 -cucurbit%1:20:00:: 12157677 1 0 -cucurbita%1:20:00:: 12158148 1 0 -cucurbita_argyrosperma%1:20:00:: 12162181 1 0 -cucurbita_foetidissima%1:20:00:: 12162425 1 0 -cucurbita_maxima%1:20:01:: 12161056 2 0 -cucurbita_maxima%1:20:02:: 12161744 1 0 -cucurbita_maxima_turbaniformis%1:20:00:: 12161285 1 0 -cucurbita_mixta%1:20:00:: 12162181 1 0 -cucurbita_moschata%1:20:00:: 12161969 1 0 -cucurbita_pepo%1:20:00:: 12158443 1 0 -cucurbita_pepo_melopepo%1:20:00:: 12159055 1 0 -cucurbitaceae%1:20:00:: 12157276 1 0 -cucurbitaceous%3:01:00:: 02707528 1 0 -cud%1:13:00:: 07579399 2 0 -cud%1:13:01:: 07805478 1 1 -cudbear%1:27:00:: 14989430 1 0 -cuddle%1:04:00:: 00417643 1 0 -cuddle%2:35:00:: 01424948 1 2 -cuddle%2:35:01:: 01425511 2 1 -cuddlesome%5:00:00:lovable:00 01460266 1 0 -cuddling%1:04:00:: 00854000 1 0 -cuddly%5:00:00:lovable:00 01460266 1 0 -cuddy%1:06:00:: 03145277 1 0 -cudgel%1:06:00:: 03145384 1 0 -cudgel%2:35:00:: 01424106 1 0 -cudweed%1:20:01:: 11972759 1 0 -cudweed%1:20:02:: 11970101 2 0 -cudweed%1:20:03:: 11930788 3 0 -cue%1:06:00:: 03145522 4 0 -cue%1:09:01:: 05829213 3 0 -cue%1:10:00:: 07011209 1 0 -cue%1:10:01:: 06643763 2 0 -cue%2:32:00:: 00877848 1 0 -cue_ball%1:06:00:: 03145719 1 0 -cue_stick%1:06:00:: 03145522 1 0 -cuff%1:06:00:: 03145843 1 1 -cuff%1:06:01:: 03484576 2 0 -cuff%2:35:00:: 01417162 1 0 -cuff%2:35:01:: 01288201 2 0 -cufflink%1:06:00:: 03146075 1 1 -cuirass%1:06:00:: 03146219 1 0 -cuirassier%1:18:00:: 09982277 1 0 -cuisine%1:13:00:: 07571324 1 0 -cuisse%1:06:00:: 03146342 1 0 -cuke%1:13:00:: 07718472 1 0 -cul%1:06:00:: 03146449 1 0 -cul_de_sac%1:06:00:: 02851540 2 0 -cul_de_sac%1:06:01:: 03146449 1 0 -culbertson%1:18:00:: 10916993 1 0 -culcita%1:20:00:: 13191318 1 0 -culcita_dubia%1:20:00:: 13191620 1 0 -culdoscope%1:06:00:: 03146560 1 0 -culdoscopy%1:04:00:: 00642604 1 0 -culebra%1:15:00:: 08753412 1 0 -culex%1:05:00:: 02201758 1 0 -culex_fatigans%1:05:00:: 02202124 1 0 -culex_pipiens%1:05:00:: 02202006 1 0 -culex_quinquefasciatus%1:05:00:: 02202124 1 0 -culiacan%1:15:00:: 08743125 1 0 -culicidae%1:05:00:: 02199999 1 0 -culinary%3:01:00:: 02707659 1 0 -culinary_art%1:13:00:: 07571324 1 0 -cull%1:09:00:: 05790572 1 0 -cull%2:35:00:: 01382083 2 0 -cull%2:40:00:: 02224781 1 0 -cull_out%2:31:00:: 00677203 1 0 -cullender%1:06:00:: 03066849 1 0 -cullis%1:06:00:: 03146687 1 0 -culm%1:20:00:: 13163471 1 0 -culminate%2:30:00:: 00485609 1 8 -culminate%2:30:02:: 00144040 5 0 -culminate%2:30:03:: 00354030 2 1 -culminate%2:38:00:: 02021773 4 0 -culminate%2:41:00:: 02526934 3 0 -culmination%1:04:00:: 00211110 4 0 -culmination%1:10:00:: 06373747 3 0 -culmination%1:15:00:: 08548239 2 0 -culmination%1:28:00:: 15291199 1 3 -culotte%1:06:00:: 03146777 1 0 -culpability%1:26:00:: 13990960 1 0 -culpable%5:00:00:guilty:00 01321529 1 0 -culpable_negligence%1:04:00:: 00740342 1 0 -culpableness%1:26:00:: 13990960 1 0 -culpably%4:02:00:: 00303647 1 0 -culprit%1:18:00:: 10417168 1 1 -cult%1:09:00:: 05948264 5 0 -cult%1:09:01:: 05751173 2 1 -cult%1:09:02:: 05948537 4 0 -cult%1:14:00:: 08151490 1 3 -cult%1:14:01:: 08151229 3 0 -cult_of_personality%1:09:00:: 05672286 1 1 -cultism%1:04:00:: 01044448 2 0 -cultism%1:04:01:: 01206774 1 0 -cultist%1:18:00:: 09982370 1 2 -cultist%1:18:01:: 09982525 2 0 -cultivable%5:00:00:productive:00 01865807 1 0 -cultivar%1:20:00:: 13084834 1 0 -cultivatable%5:00:00:productive:00 01865807 1 0 -cultivate%2:30:01:: 00302464 4 0 -cultivate%2:36:00:: 01742726 1 3 -cultivate%2:36:01:: 01741446 2 1 -cultivate%2:41:00:: 02388403 3 0 -cultivated%3:00:00:: 01833643 1 0 -cultivated%5:00:00:refined:01 01947741 3 0 -cultivated%5:00:00:tame:01 02388596 2 0 -cultivated_cabbage%1:20:00:: 11875691 1 0 -cultivated_carrot%1:20:00:: 12937388 1 0 -cultivated_celery%1:20:00:: 12933403 1 0 -cultivated_crab_apple%1:20:00:: 12634429 1 0 -cultivated_land%1:17:00:: 09260907 1 0 -cultivated_parsnip%1:20:00:: 12941717 1 0 -cultivated_plant%1:20:00:: 13084993 1 0 -cultivated_rice%1:20:00:: 12126084 1 0 -cultivated_strawberry%1:20:00:: 12630478 1 0 -cultivation%1:04:00:: 00915722 2 1 -cultivation%1:04:01:: 01129363 1 1 -cultivation%1:04:02:: 00916023 5 0 -cultivation%1:22:00:: 13454318 4 0 -cultivation%1:26:00:: 14459824 3 0 -cultivator%1:06:00:: 03146846 2 0 -cultivator%1:18:00:: 09779790 1 0 -cultural%3:01:00:: 02872501 3 3 -cultural%3:01:01:: 02898922 1 9 -cultural%3:01:02:: 02872362 4 0 -cultural%5:00:00:social:00 02248693 2 8 -cultural_anthropologist%1:18:00:: 10618465 1 0 -cultural_anthropology%1:09:00:: 06147522 1 0 -cultural_attache%1:18:00:: 09982760 1 0 -cultural_movement%1:14:00:: 08471799 1 0 -cultural_revolution%1:11:00:: 07424436 1 0 -culturally%4:02:00:: 00135796 1 3 -culturati%1:14:00:: 08387495 1 0 -culture%1:04:00:: 00917759 7 0 -culture%1:04:01:: 00920510 4 1 -culture%1:09:00:: 05751794 2 12 -culture%1:09:01:: 05984936 3 6 -culture%1:09:02:: 06194409 6 0 -culture%1:14:00:: 08287844 1 17 -culture%1:26:00:: 14459824 5 0 -culture%2:30:00:: 00245780 1 0 -culture_medium%1:27:00:: 14899328 1 0 -culture_shock%1:09:00:: 05684249 1 0 -cultured%5:00:00:refined:01 01947741 1 2 -cultus%1:09:00:: 05948264 1 0 -culver's_physic%1:20:00:: 12882321 1 0 -culver's_root%1:20:00:: 12882321 1 0 -culverin%1:06:00:: 03147084 2 0 -culverin%1:06:01:: 03147156 1 0 -culvers_physic%1:20:00:: 12882321 1 0 -culvers_root%1:20:00:: 12882321 1 0 -culvert%1:06:00:: 03147280 1 0 -cum%1:08:00:: 05404336 1 0 -cum_laude%4:02:00:: 00291276 1 0 -cum_laude%5:00:00:worthy:00 02586089 1 0 -cumana%1:15:00:: 09162581 1 0 -cumarone%1:27:00:: 14898101 1 0 -cumber%2:35:00:: 01301051 1 0 -cumberland%1:17:00:: 09261138 2 0 -cumberland%1:18:00:: 10917164 1 0 -cumberland_gap%1:17:00:: 09261407 1 0 -cumberland_mountains%1:17:00:: 09261604 1 0 -cumberland_plateau%1:17:00:: 09261604 1 0 -cumberland_river%1:17:00:: 09261138 1 0 -cumbersome%5:00:00:infelicitous:00 01001180 2 0 -cumbersome%5:00:00:unwieldy:00 02564330 1 2 -cumbersomeness%1:07:00:: 04711665 1 0 -cumbria%1:15:00:: 08881549 2 0 -cumbria%1:15:01:: 08881674 1 0 -cumbrous%5:00:00:unwieldy:00 02564330 1 0 -cumfrey%1:20:00:: 12822769 1 0 -cumin%1:13:00:: 07814634 2 0 -cumin%1:20:00:: 12936826 1 0 -cumin_seed%1:13:00:: 07814634 1 0 -cuminum%1:20:00:: 12936713 1 0 -cuminum_cyminum%1:20:00:: 12936826 1 0 -cummerbund%1:06:00:: 03147397 1 0 -cummings%1:18:00:: 10917377 1 0 -cumquat%1:20:00:: 12713063 1 0 -cumulate%2:30:00:: 00158804 1 0 -cumulation%1:14:00:: 07961480 1 0 -cumulative%5:00:00:additive:00 00048460 1 5 -cumulative_preferred%1:21:00:: 13336204 1 0 -cumulative_preferred_stock%1:21:00:: 13336204 1 0 -cumulative_vote%1:04:00:: 00184135 1 0 -cumulatively%4:02:00:: 00291083 1 0 -cumuliform%5:00:00:round:00 02042183 1 0 -cumulonimbus%1:17:00:: 09261772 1 0 -cumulonimbus_cloud%1:17:00:: 09261772 1 0 -cumulous%5:00:00:concentrated:00 00539207 1 0 -cumulus%1:14:00:: 07961480 2 0 -cumulus%1:17:00:: 09261960 1 1 -cumulus_cloud%1:17:00:: 09261960 1 0 -cunaxa%1:04:00:: 01276875 1 0 -cunctation%1:04:00:: 01067362 1 0 -cunctator%1:18:00:: 10478626 1 0 -cuneal%3:01:00:: 03144955 1 0 -cuneate%5:00:00:simple:01 02167740 1 0 -cuneate_leaf%1:20:00:: 13157858 1 0 -cuneiform%1:10:00:: 06361635 1 0 -cuneiform%3:01:00:: 02707750 2 0 -cuneiform%3:01:01:: 03144955 1 0 -cuneiform_bone%1:08:00:: 05272545 1 0 -cuneus%1:25:00:: 13919547 1 0 -cuniculus%1:05:00:: 02366203 1 0 -cuniculus_paca%1:05:00:: 02366301 1 0 -cunner%1:05:00:: 02610373 1 0 -cunnilinctus%1:04:00:: 00855055 1 0 -cunnilingus%1:04:00:: 00855055 1 0 -cunning%1:07:02:: 04876888 2 0 -cunning%1:09:01:: 05621178 1 0 -cunning%5:00:00:adroit:00 00061885 3 0 -cunning%5:00:00:artful:00 00148078 2 0 -cunning%5:00:00:attractive:01 00167278 1 0 -cunningham%1:18:00:: 10917554 1 0 -cunningly%4:02:00:: 00293926 2 0 -cunningly%4:02:01:: 00297112 1 0 -cunonia_family%1:20:00:: 12787007 1 0 -cunoniaceae%1:20:00:: 12787007 1 0 -cunt%1:08:00:: 05521514 2 0 -cunt%1:18:00:: 09982873 1 0 -cuon%1:05:00:: 02115775 1 0 -cuon_alpinus%1:05:00:: 02115913 1 0 -cup%1:06:00:: 03147509 1 14 -cup%1:06:01:: 03147901 8 0 -cup%1:06:02:: 03148130 7 0 -cup%1:13:00:: 07930864 6 0 -cup%1:20:00:: 12267841 5 0 -cup%1:23:01:: 13766733 2 7 -cup%1:23:02:: 13619168 4 0 -cup%1:25:00:: 13904665 3 2 -cup%2:29:00:: 00087290 3 0 -cup%2:30:00:: 00477828 1 2 -cup%2:30:01:: 00189062 2 0 -cup_and_saucer%1:20:00:: 12037691 1 0 -cup_final%1:11:00:: 07467027 1 0 -cup_fungus%1:20:00:: 13028611 1 0 -cup_hook%1:06:00:: 03148518 1 0 -cup_morel%1:20:00:: 13032618 1 0 -cup_of_tea%1:04:00:: 00432881 1 1 -cup_tie%1:04:00:: 00461294 1 0 -cupbearer%1:18:00:: 09983053 1 0 -cupboard%1:06:00:: 03148324 1 2 -cupboard_love%1:04:00:: 01226837 1 0 -cupcake%1:13:00:: 07631023 1 0 -cupel%1:06:00:: 02868975 1 0 -cupflower%1:20:01:: 12908645 2 0 -cupflower%1:20:02:: 12913791 1 0 -cupful%1:23:00:: 13766733 1 0 -cupid%1:10:00:: 06881224 2 0 -cupid%1:18:00:: 09560061 1 0 -cupid's_bow%1:06:00:: 03148632 2 0 -cupid's_bow%1:25:00:: 13868813 1 0 -cupid's_dart%1:20:00:: 11946918 1 0 -cupid's_disease%1:26:00:: 14133159 1 0 -cupid's_itch%1:26:00:: 14133159 1 0 -cupidity%1:07:00:: 04945758 1 0 -cuplike%5:00:00:concave:00 00536572 1 0 -cupola%1:06:00:: 03148727 2 0 -cupola%1:06:01:: 03148808 1 0 -cuppa%1:13:00:: 07933799 1 0 -cupper%1:13:00:: 07933799 1 0 -cupping%1:04:00:: 00698794 1 0 -cupressaceae%1:20:00:: 11629501 1 0 -cupressus%1:20:00:: 11630351 1 0 -cupressus_abramsiana%1:20:00:: 11631619 1 0 -cupressus_arizonica%1:20:00:: 11631854 1 0 -cupressus_goveniana%1:20:00:: 11631159 1 0 -cupressus_goveniana_abramsiana%1:20:00:: 11631619 1 0 -cupressus_goveniana_pigmaea%1:20:00:: 11631405 1 0 -cupressus_guadalupensis%1:20:00:: 11631985 1 0 -cupressus_lusitanica%1:20:00:: 11632376 1 0 -cupressus_macrocarpa%1:20:00:: 11632167 1 0 -cupressus_pigmaea%1:20:00:: 11631405 1 0 -cupressus_sempervirens%1:20:00:: 11632619 1 0 -cupric%3:01:00:: 02707889 1 0 -cupric_acetate%1:27:00:: 15096524 1 0 -cupric_sulfate%1:27:00:: 14822839 1 0 -cupric_sulphate%1:27:00:: 14822839 1 0 -cuprimine%1:06:00:: 03909835 1 0 -cuprite%1:27:00:: 14673325 1 0 -cupronickel%1:27:00:: 14717925 1 0 -cuprous%3:01:00:: 02707889 1 0 -cupular%5:00:00:concave:00 00536655 1 0 -cupulate%5:00:00:concave:00 00536655 1 0 -cupule%1:05:00:: 02465585 2 0 -cupule%1:20:00:: 12267931 1 0 -cuquenan%1:17:00:: 09262082 1 0 -cuquenan_falls%1:17:00:: 09262082 1 0 -cur%1:05:00:: 02084861 1 1 -cur%1:18:00:: 09983214 2 0 -curability%1:07:00:: 04856721 1 0 -curable%3:00:00:: 00994410 1 0 -curable%5:00:00:tempered:02 01521776 2 0 -curableness%1:07:00:: 04856721 1 0 -curacao%1:13:00:: 07909954 2 0 -curacao%1:15:00:: 08749042 1 0 -curacoa%1:13:00:: 07909954 1 0 -curacy%1:04:00:: 00591446 1 0 -curandera%1:18:00:: 09983314 1 0 -curandero%1:18:00:: 09983444 1 0 -curare%1:27:00:: 15111609 1 0 -curassow%1:05:00:: 01799679 1 0 -curate%1:18:00:: 09983572 1 0 -curate_cycloid%1:25:00:: 13908954 1 0 -curative%1:06:00:: 04074482 1 0 -curative%5:00:00:healthful:00 01165943 1 0 -curator%1:18:00:: 09983889 1 0 -curatorial%3:01:00:: 02990154 1 0 -curatorship%1:04:00:: 00591523 1 0 -curb%1:04:00:: 01146039 4 0 -curb%1:06:00:: 03148920 1 5 -curb%1:06:02:: 03149135 2 0 -curb%1:06:03:: 02701871 3 0 -curb%2:30:00:: 00236592 4 0 -curb%2:30:01:: 00462092 2 2 -curb%2:35:00:: 01300937 3 0 -curb%2:41:00:: 02510337 1 2 -curb_bit%1:06:00:: 03149135 1 0 -curb_market%1:06:00:: 03149261 1 0 -curb_roof%1:06:00:: 03149401 1 0 -curb_service%1:04:00:: 00098822 1 0 -curbing%1:06:00:: 03148920 1 0 -curbside%1:06:00:: 03149531 1 2 -curbstone%1:06:00:: 03149686 1 0 -curculionidae%1:05:00:: 02178244 1 0 -curcuma%1:20:00:: 12356255 1 0 -curcuma_domestica%1:20:00:: 12356395 1 0 -curcuma_longa%1:20:00:: 12356395 1 0 -curd%1:13:00:: 07849912 2 0 -curd%1:13:02:: 07850083 1 0 -curdle%2:30:00:: 00457770 1 0 -curdle%2:30:01:: 00442847 3 0 -curdle%2:30:02:: 00443000 2 0 -curdled%5:00:00:thick:02 02416036 1 0 -curdling%1:22:00:: 13454479 1 0 -cure%1:06:00:: 04074482 1 8 -cure%2:29:00:: 00081725 1 12 -cure%2:30:00:: 00527572 2 1 -cure%2:30:01:: 00527801 4 0 -cure%2:30:02:: 00527935 3 0 -cure-all%1:06:00:: 03880770 1 3 -cured%5:00:00:processed:00 01951943 2 0 -cured%5:00:00:seasoned:00 01495066 3 0 -cured%5:00:00:well:01 02541012 1 0 -cured%5:00:01:preserved:02 01071794 6 0 -cured%5:00:02:preserved:02 01072196 5 0 -cured%5:00:03:preserved:02 01072297 4 0 -curet%1:06:00:: 03149810 1 0 -curettage%1:04:00:: 00669481 1 0 -curette%1:06:00:: 03149810 1 0 -curettement%1:04:00:: 00669481 1 0 -curfew%1:10:00:: 06804606 2 0 -curfew%1:10:01:: 06540527 3 0 -curfew%1:28:00:: 15180209 1 0 -curia%1:14:00:: 08085648 1 0 -curie%1:18:00:: 10917703 3 0 -curie%1:18:01:: 10917999 2 0 -curie%1:23:00:: 13645599 1 0 -curie_point%1:07:00:: 05013461 1 0 -curie_temperature%1:07:00:: 05013461 1 0 -curietherapy%1:04:00:: 00706019 1 0 -curing%1:22:00:: 13491060 1 0 -curio%1:06:00:: 03149951 1 2 -curiosa%1:10:00:: 06411753 1 0 -curiosity%1:06:00:: 03149951 2 0 -curiosity%1:09:00:: 05682570 1 19 -curious%3:00:00:: 00664449 2 13 -curious%5:00:00:interested:00 01342572 3 0 -curious%5:00:00:strange:00 00968010 1 14 -curiously%4:02:00:: 00081881 2 2 -curiously%4:02:01:: 00035491 1 3 -curiousness%1:07:00:: 04799344 2 0 -curiousness%1:09:00:: 05683197 1 0 -curitiba%1:15:00:: 08855505 1 0 -curium%1:27:00:: 14636220 1 0 -curl%1:08:00:: 05257737 3 0 -curl%1:18:00:: 10918119 2 0 -curl%1:25:00:: 13875970 1 0 -curl%2:30:00:: 00362128 1 3 -curl%2:33:00:: 01074074 5 0 -curl%2:35:00:: 01223616 4 1 -curl%2:35:01:: 01523986 3 2 -curl%2:38:00:: 02098458 2 2 -curl_up%2:38:01:: 02098458 1 1 -curled%5:00:00:curly:00 01030289 1 0 -curled_leaf_pondweed%1:20:00:: 12616248 1 0 -curler%1:06:00:: 03150232 1 0 -curlew%1:05:00:: 02033561 1 0 -curlew_sandpiper%1:05:00:: 02029087 1 0 -curlicue%1:10:00:: 06801033 2 0 -curlicue%1:25:00:: 13875970 1 0 -curliness%1:07:00:: 05074374 1 0 -curling%1:04:01:: 00461611 1 0 -curling%5:00:00:curly:00 01030289 1 0 -curling_iron%1:06:00:: 03150511 1 0 -curly%3:00:00:: 01030022 1 2 -curly-coated%5:00:00:hairy:00 00213387 1 0 -curly-coated_retriever%1:05:00:: 02099429 1 0 -curly-grained%5:00:00:uneven:00 00911935 1 0 -curly-haired%5:00:00:hairy:00 00213387 1 0 -curly-heads%1:20:00:: 11730312 1 0 -curly-leafed%5:00:00:leafy:00 01701134 1 0 -curly-leaved%5:00:00:leafy:00 01701134 1 0 -curly_clematis%1:20:00:: 11730015 1 0 -curly_endive%1:13:00:: 07730855 1 0 -curly_grass%1:20:00:: 12955414 1 0 -curly_grass_fern%1:20:00:: 12955414 1 0 -curly_pondweed%1:20:00:: 12616248 1 0 -curlycup_gumweed%1:20:00:: 11973749 1 0 -curmudgeon%1:18:00:: 09984047 1 0 -curmudgeonly%5:00:00:ill-natured:00 01137000 1 0 -currajong%1:20:00:: 12196694 1 0 -currant%1:13:01:: 07744246 1 1 -currant%1:13:02:: 07752966 3 0 -currant%1:20:00:: 12805146 2 0 -currant_bush%1:20:00:: 12805146 1 0 -currawong%1:05:00:: 01583495 1 0 -currency%1:07:01:: 05050379 3 0 -currency%1:07:02:: 04765586 2 1 -currency%1:21:00:: 13385913 1 1 -current%1:11:00:: 07406765 2 6 -current%1:14:00:: 08461595 3 1 -current%1:19:01:: 11443532 1 11 -current%3:00:00:: 00666058 1 17 -current_account%1:21:00:: 13410803 1 0 -current_account%1:21:01:: 13363970 2 0 -current_assets%1:21:00:: 13333047 1 0 -current_electricity%1:19:00:: 11514559 1 0 -current_intelligence%1:04:00:: 00982153 1 0 -current_of_air%1:19:00:: 11525955 1 0 -current_unit%1:23:00:: 13633375 1 0 -currently%4:02:00:: 00048268 1 4 -currentness%1:07:00:: 05050379 1 0 -currer_bell%1:18:00:: 10865700 1 0 -curricular%3:01:00:: 02708020 1 1 -curriculum%1:10:00:: 06676416 1 7 -curriculum_vitae%1:10:00:: 06468403 1 0 -currier%1:18:00:: 09984187 2 0 -currier%1:18:01:: 10918358 1 0 -currish%5:00:00:ignoble:01 01590044 1 0 -currish%5:00:00:ill-natured:00 01137289 2 0 -currishly%4:02:01:: 00303789 1 0 -curry%1:13:00:: 07823951 1 0 -curry%2:29:00:: 00045639 3 0 -curry%2:30:02:: 00516294 2 0 -curry%2:39:00:: 02192225 1 0 -curry_favor%2:32:00:: 00881329 1 0 -curry_favour%2:32:00:: 00881329 1 0 -curry_powder%1:13:00:: 07823814 1 0 -curry_sauce%1:13:00:: 07840395 1 0 -currycomb%1:06:00:: 03150661 1 0 -currycomb%2:35:00:: 01596855 1 0 -curse%1:10:00:: 07125096 1 5 -curse%1:10:01:: 07233634 2 1 -curse%1:10:02:: 07160424 3 1 -curse%1:11:00:: 07420354 5 0 -curse%1:26:01:: 14445226 4 0 -curse%2:32:00:: 00865387 1 17 -curse%2:32:01:: 00865958 3 2 -curse%2:32:02:: 00866314 2 10 -curse%2:32:03:: 01030397 4 0 -curse_word%1:10:00:: 07125096 1 0 -cursed%3:00:00:: 00669478 1 2 -cursed%5:00:00:lost:02 01451225 2 0 -cursed_crowfoot%1:20:00:: 11722621 1 0 -cursed_with%5:00:00:cursed:00 00670418 1 0 -cursedly%4:02:00:: 00297563 1 0 -cursive%1:10:00:: 06350274 1 0 -cursive%5:00:00:written:00 02285035 1 0 -cursive_script%1:10:00:: 06350274 1 0 -cursively%4:02:00:: 00513173 1 0 -cursor%1:06:00:: 03150795 1 0 -cursorial%3:00:00:: 02590519 1 0 -cursorily%4:02:00:: 00290935 1 0 -cursorius%1:05:00:: 02039377 1 0 -cursorius_cursor%1:05:00:: 02039497 1 0 -cursory%5:00:00:careless:00 00312234 1 1 -curst%3:00:00:: 00669478 1 0 -curt%5:00:00:concise:00 00547641 2 0 -curt%5:00:00:discourteous:00 00640660 1 0 -curtail%2:30:00:: 00236592 1 5 -curtail%2:30:01:: 00292877 2 0 -curtailment%1:04:00:: 01147950 2 0 -curtailment%1:04:01:: 00192910 3 0 -curtailment%1:07:00:: 05134122 1 0 -curtain%1:06:00:: 03151077 1 6 -curtain%1:17:00:: 09262233 2 2 -curtain%2:40:00:: 02353537 1 0 -curtain_call%1:10:00:: 07229341 1 2 -curtain_lecture%1:10:00:: 06714184 1 0 -curtain_off%2:38:00:: 02032010 1 0 -curtain_raiser%1:04:00:: 00243577 1 1 -curtain_raiser%1:10:00:: 07019396 2 0 -curtain_raising%1:11:00:: 07329363 1 0 -curtain_ring%1:06:00:: 03151401 1 0 -curtained%3:00:00:: 00671831 1 1 -curtainless%3:00:00:: 00672079 1 0 -curtal%5:00:00:short:01 01436671 1 0 -curtilage%1:06:00:: 04610879 1 0 -curtis%1:18:00:: 10918558 1 0 -curtisia%1:20:00:: 12948849 1 0 -curtiss%1:18:00:: 10918679 1 0 -curtly%4:02:00:: 00297319 1 1 -curtness%1:07:00:: 04915462 1 1 -curtsey%1:10:00:: 07274890 1 0 -curtsey%2:38:00:: 02040549 1 0 -curtsy%1:10:00:: 07274890 1 0 -curtsy%2:32:00:: 00899352 2 0 -curtsy%2:38:00:: 02040549 1 0 -curvaceous%5:00:00:shapely:00 02138989 1 0 -curvaceously%4:02:00:: 00237278 1 1 -curvaceousness%1:07:00:: 04686748 1 0 -curvature%1:07:00:: 05102435 2 0 -curvature%1:07:01:: 05072663 3 0 -curvature%1:26:00:: 14213328 1 0 -curve%1:04:02:: 00107875 3 1 -curve%1:06:00:: 02829696 5 0 -curve%1:07:00:: 05072663 4 0 -curve%1:10:00:: 07000941 2 10 -curve%1:25:00:: 13867641 1 20 -curve%2:30:00:: 00362128 5 0 -curve%2:38:00:: 02033295 1 2 -curve%2:38:01:: 02034986 3 1 -curve%2:38:02:: 02034671 4 0 -curve%2:42:00:: 02738701 2 1 -curve_ball%1:04:00:: 00107875 1 0 -curved%3:00:00:: 02315002 1 5 -curved_shape%1:25:00:: 13867641 1 0 -curvet%1:04:00:: 00288190 1 0 -curvet%2:38:00:: 01966352 1 0 -curvey%5:00:00:curved:00 02316071 1 0 -curvilineal%5:00:00:curved:00 02315648 1 0 -curvilinear%5:00:00:curved:00 02315648 1 0 -curvilinear_correlation%1:09:00:: 06031657 1 0 -curvilinear_regression%1:09:00:: 06029118 1 0 -curving%3:00:00:: 02315002 1 4 -curvy%5:00:00:curved:00 02316071 1 0 -curvy%5:00:00:shapely:00 02138989 2 0 -cusco%1:15:00:: 08979740 1 0 -cuscus%1:05:00:: 01881564 1 0 -cuscuta%1:20:00:: 12825301 1 0 -cuscuta_gronovii%1:20:00:: 12825721 1 0 -cush-cush%1:20:00:: 12089496 1 0 -cushat%1:05:00:: 01813088 1 0 -cushaw%1:13:00:: 07718195 2 0 -cushaw%1:20:00:: 12162181 1 0 -cushing%1:18:00:: 10918834 1 0 -cushing's_disease%1:26:00:: 14117449 1 0 -cushing's_syndrome%1:26:00:: 14117668 1 0 -cushion%1:06:00:: 03151500 3 0 -cushion%1:06:01:: 04198797 1 1 -cushion%1:06:02:: 03151800 2 0 -cushion%2:35:00:: 01576917 1 2 -cushion_calamint%1:20:00:: 12843970 1 0 -cushion_flower%1:20:00:: 12218868 1 0 -cushioned%5:00:00:soft:01 01153703 1 0 -cushioning%1:06:00:: 03873064 1 1 -cushiony%5:00:00:soft:01 01153703 1 0 -cushitic%1:10:00:: 06990836 1 0 -cushy%5:00:00:easy:01 00750054 1 0 -cusk%1:05:01:: 02525382 2 0 -cusk%1:05:02:: 02523427 3 0 -cusk%1:13:00:: 07778810 1 0 -cusk-eel%1:05:00:: 02558860 1 0 -cusp%1:06:00:: 03151916 1 1 -cusp%1:08:00:: 05307521 3 0 -cusp%1:08:01:: 05389625 2 0 -cuspate%5:00:00:angular:00 02048626 1 0 -cuspated%5:00:00:angular:00 02048626 1 0 -cusped%5:00:00:angular:00 02048626 1 0 -cuspid%1:08:00:: 05307091 1 0 -cuspidal%5:00:00:angular:00 02048626 1 0 -cuspidate%5:00:00:angular:00 02048626 1 0 -cuspidated%5:00:00:angular:00 02048626 1 0 -cuspidation%1:06:00:: 03152062 1 0 -cuspidor%1:06:00:: 04281260 1 0 -cuss%1:10:00:: 07125096 3 0 -cuss%1:18:00:: 10419630 1 1 -cuss%1:18:01:: 09908025 2 1 -cuss%2:32:00:: 00865387 1 1 -cussed%5:00:00:unregenerate:00 01957712 1 0 -cussedly%4:02:00:: 00198845 1 0 -cussedness%1:07:00:: 04909270 1 0 -custard%1:13:00:: 07619004 1 0 -custard-apple_family%1:20:00:: 11693566 1 0 -custard-like%3:01:00:: 02708140 1 0 -custard_apple%1:13:00:: 07760859 2 0 -custard_apple%1:20:00:: 11693981 1 0 -custard_apple_tree%1:20:00:: 11693981 1 0 -custard_pie%1:06:00:: 03152144 1 0 -custer%1:18:00:: 10919061 1 0 -custer's_last_stand%1:04:00:: 01284444 1 0 -custodial%5:00:00:protective:00 01888017 1 1 -custodial_account%1:21:00:: 13351860 1 0 -custodian%1:18:00:: 09984298 1 1 -custodianship%1:04:00:: 00591622 1 0 -custody%1:04:01:: 01147347 2 0 -custody%1:04:02:: 00818678 3 0 -custody%1:26:00:: 13999663 1 1 -custody_battle%1:04:00:: 01187085 1 0 -custody_case%1:04:00:: 01184565 1 0 -custom%1:04:00:: 00413239 1 4 -custom%1:04:02:: 01096873 4 0 -custom%1:09:00:: 05667404 2 3 -custom%1:21:00:: 13317002 3 0 -custom%3:00:00:: 00672226 1 0 -custom-built%1:06:00:: 03152483 1 0 -custom-built%5:00:00:custom-made:00 00672513 1 0 -custom-made%1:06:00:: 03152483 1 0 -custom-made%3:00:00:: 00672226 1 0 -custom-make%2:36:00:: 01623489 1 1 -customarily%4:02:00:: 00211061 1 2 -customary%5:00:00:conventional:00 00606079 1 4 -customary%5:00:00:usual:00 00489491 2 4 -customer%1:18:00:: 09984659 1 25 -customer's_broker%1:18:00:: 09761753 1 0 -customer's_man%1:18:00:: 09761753 1 0 -customer_agent%1:18:00:: 09984960 1 0 -customhouse%1:06:00:: 03152303 1 0 -customise%2:30:00:: 00387919 2 0 -customise%2:36:00:: 01623489 1 0 -customize%2:30:00:: 00387919 2 0 -customize%2:36:00:: 01623489 1 0 -customs%1:21:00:: 13317002 1 0 -customs_bureau%1:14:00:: 08142972 1 0 -customs_duty%1:21:00:: 13317002 1 0 -customs_service%1:14:00:: 08142972 1 0 -customs_union%1:14:00:: 08305568 1 0 -customshouse%1:06:00:: 03152303 1 0 -cut%1:04:00:: 00359238 18 0 -cut%1:04:01:: 00386915 17 0 -cut%1:04:02:: 00387657 16 0 -cut%1:04:03:: 01225997 12 0 -cut%1:04:05:: 00352331 19 0 -cut%1:04:06:: 00067254 20 0 -cut%1:04:07:: 00571444 13 0 -cut%1:04:08:: 00565809 14 0 -cut%1:04:09:: 00489475 15 0 -cut%1:06:00:: 03152619 3 1 -cut%1:06:01:: 03152743 11 0 -cut%1:09:00:: 05750948 10 0 -cut%1:10:00:: 06618234 2 1 -cut%1:10:01:: 06428216 9 0 -cut%1:10:02:: 06721461 7 0 -cut%1:10:04:: 06612865 8 0 -cut%1:13:00:: 07653394 6 0 -cut%1:21:00:: 13289159 1 1 -cut%1:26:00:: 14287113 5 0 -cut%1:26:01:: 14429885 4 0 -cut%2:29:00:: 00061219 41 0 -cut%2:29:04:: 00108475 39 0 -cut%2:29:14:: 00096136 40 0 -cut%2:30:00:: 00292507 36 0 -cut%2:30:02:: 00473322 33 0 -cut%2:30:05:: 00226071 38 0 -cut%2:30:06:: 00429060 2 18 -cut%2:30:07:: 00201722 10 1 -cut%2:30:08:: 00243900 37 0 -cut%2:30:12:: 00429968 35 0 -cut%2:30:14:: 00561090 32 0 -cut%2:30:15:: 00447654 34 0 -cut%2:32:00:: 01064799 9 1 -cut%2:32:05:: 01059564 31 0 -cut%2:35:00:: 01552519 1 58 -cut%2:35:05:: 01555437 26 0 -cut%2:35:07:: 01413917 8 1 -cut%2:35:08:: 01510576 27 0 -cut%2:35:10:: 01610834 4 2 -cut%2:35:11:: 01610990 25 0 -cut%2:35:12:: 01611123 24 0 -cut%2:35:13:: 01319738 29 0 -cut%2:35:14:: 01227088 30 0 -cut%2:35:15:: 01320424 28 0 -cut%2:36:00:: 01666717 7 1 -cut%2:36:01:: 01754915 6 1 -cut%2:36:04:: 01756416 20 0 -cut%2:36:05:: 01756563 19 0 -cut%2:36:06:: 01756277 21 0 -cut%2:36:11:: 01754737 22 0 -cut%2:36:15:: 01713491 23 0 -cut%2:38:00:: 01859995 18 0 -cut%2:38:01:: 01860107 17 0 -cut%2:38:08:: 02033295 3 3 -cut%2:38:12:: 01915730 16 0 -cut%2:38:13:: 01915865 15 0 -cut%2:38:15:: 02101649 14 0 -cut%2:39:03:: 02134232 13 0 -cut%2:41:10:: 02588280 12 0 -cut%2:41:13:: 02422283 5 1 -cut%2:42:00:: 02613860 11 0 -cut%3:00:01:: 00661278 1 3 -cut%3:00:02:: 00662958 6 0 -cut%3:00:03:: 00663267 2 1 -cut%3:00:04:: 01566027 5 0 -cut%3:00:05:: 02454750 4 0 -cut%5:00:00:abridged:00 00004615 3 1 -cut%5:00:00:castrated:00 02137070 7 0 -cut%5:00:00:decreased:00 00882742 8 0 -cut%5:00:00:diluted:00 00756327 9 0 -cut-and-dried%5:00:00:ordinary:00 01674134 1 0 -cut-and-dry%5:00:00:ordinary:00 01674134 1 0 -cut-and-thrust%1:04:00:: 01176540 1 0 -cut-in%1:04:00:: 00384329 2 0 -cut-in%1:04:01:: 00384510 1 0 -cut-price%5:00:01:cheap:00 00934554 1 0 -cut-rate%5:00:01:cheap:00 00934554 1 0 -cut-rate_sale%1:04:00:: 01117723 1 0 -cut-up%1:18:00:: 10463714 1 0 -cut_across%2:35:00:: 01601025 3 0 -cut_across%2:38:00:: 01912159 1 4 -cut_across%2:42:00:: 02607658 2 2 -cut_away%2:35:00:: 01553987 2 0 -cut_away%2:38:00:: 01860320 1 1 -cut_back%2:30:00:: 00236592 4 0 -cut_back%2:30:01:: 00429060 2 1 -cut_back%2:35:00:: 01321002 3 0 -cut_back%2:38:00:: 02004701 1 1 -cut_corners%2:36:00:: 01712554 1 1 -cut_down%2:30:00:: 00429060 1 8 -cut_down%2:33:00:: 01104509 4 1 -cut_down%2:35:00:: 01239862 3 1 -cut_down%2:35:01:: 01319562 5 0 -cut_down%2:35:02:: 01258302 6 0 -cut_down%2:35:03:: 01322675 2 1 -cut_glass%1:06:00:: 03153145 1 1 -cut_in%2:30:00:: 00520194 4 0 -cut_in%2:30:01:: 00396234 5 0 -cut_in%2:32:00:: 00780191 3 0 -cut_in%2:38:00:: 02057878 2 0 -cut_in%2:40:00:: 02295447 1 0 -cut_into%2:35:01:: 01309701 1 0 -cut_of_beef%1:13:00:: 07656077 1 0 -cut_of_lamb%1:13:00:: 07667326 1 0 -cut_of_meat%1:13:00:: 07653394 1 0 -cut_of_mutton%1:13:00:: 07667042 1 0 -cut_of_pork%1:13:00:: 07668902 1 0 -cut_of_veal%1:13:00:: 07665595 1 0 -cut_off%2:30:00:: 00292507 2 6 -cut_off%2:32:00:: 00778275 1 8 -cut_off%2:35:00:: 01299268 3 2 -cut_off%2:35:01:: 01254692 6 0 -cut_off%2:35:02:: 01259458 5 0 -cut_off%2:35:03:: 01440646 4 0 -cut_off%5:00:00:cut:01 00662318 1 1 -cut_out%2:30:00:: 00472671 1 2 -cut_out%2:30:01:: 00352310 6 0 -cut_out%2:33:00:: 01104509 5 0 -cut_out%2:35:01:: 01549719 4 0 -cut_out%2:35:02:: 01554799 2 1 -cut_out%2:35:03:: 01440646 3 1 -cut_out%5:00:00:cut:03 00663468 1 0 -cut_price%1:07:00:: 05147237 1 0 -cut_rate%1:07:00:: 05147237 1 0 -cut_short%2:30:00:: 00292877 4 0 -cut_short%2:30:02:: 00362805 1 3 -cut_short%2:30:03:: 00317241 3 0 -cut_short%2:30:04:: 00520602 2 1 -cut_through%2:38:00:: 01912159 1 1 -cut_to%2:38:00:: 01860485 1 0 -cut_to_ribbons%2:33:00:: 01083920 1 1 -cut_up%2:30:00:: 00201618 4 0 -cut_up%2:30:01:: 00483801 3 0 -cut_up%2:30:02:: 00292672 2 1 -cut_up%2:35:00:: 01255967 1 2 -cut_up%5:00:00:cut:01 00661819 1 0 -cutaneal%3:01:00:: 02875707 1 0 -cutaneous%3:01:00:: 02875707 1 0 -cutaneous_anthrax%1:26:00:: 14072625 1 0 -cutaneous_leishmaniasis%1:26:00:: 14181187 1 0 -cutaneous_sensation%1:09:00:: 05723210 1 0 -cutaneous_senses%1:09:00:: 05655119 1 0 -cutaneous_vein%1:08:00:: 05364905 1 0 -cutaway%1:06:00:: 03152830 2 0 -cutaway%1:06:01:: 03152951 1 0 -cutaway_drawing%1:06:00:: 03152951 1 0 -cutaway_model%1:06:00:: 03152951 1 0 -cutback%1:04:00:: 00353782 1 0 -cutch%1:20:00:: 12951331 1 0 -cute%5:00:00:artful:00 00148642 2 1 -cute%5:00:00:attractive:01 00167278 1 1 -cutely%4:02:00:: 00297112 1 0 -cuteness%1:07:00:: 04685649 1 0 -cuterebra%1:05:00:: 02193955 1 0 -cuterebridae%1:05:00:: 02193799 1 0 -cuticle%1:05:00:: 01903756 3 0 -cuticle%1:08:00:: 05240211 2 0 -cuticle%1:08:01:: 05581932 1 0 -cuticula%1:05:00:: 01895630 1 0 -cuticular%3:01:00:: 02876088 1 0 -cutin%1:27:00:: 14673462 1 0 -cutinize%2:30:00:: 00586073 1 0 -cutis%1:08:00:: 05238282 1 0 -cutlas%1:06:00:: 03153246 1 0 -cutlass%1:06:00:: 03153246 1 1 -cutlassfish%1:05:00:: 02622955 1 0 -cutleaved_coneflower%1:20:00:: 12008749 1 0 -cutler%1:18:00:: 09985207 1 0 -cutlery%1:06:00:: 03153375 2 0 -cutlery%1:06:01:: 03154073 1 0 -cutlet%1:13:00:: 07654886 1 0 -cutoff%1:06:00:: 04204953 2 0 -cutoff%1:06:01:: 03153585 3 0 -cutoff%1:23:00:: 13759014 1 0 -cutoff_saw%1:06:00:: 03136504 1 0 -cutout%1:06:00:: 03153681 3 0 -cutout%1:06:01:: 03153821 2 0 -cutout%1:06:02:: 03153948 1 0 -cutpurse%1:18:00:: 10431907 1 0 -cuttable%5:00:00:tender:01 02446846 1 0 -cutter%1:06:00:: 03154073 6 0 -cutter%1:06:01:: 04409128 4 0 -cutter%1:06:02:: 03154316 5 0 -cutter%1:18:00:: 09985279 3 0 -cutter%1:18:01:: 09985470 2 0 -cutter%1:18:02:: 10659294 1 0 -cutthroat%1:18:00:: 09985577 1 0 -cutthroat%5:00:00:merciless:00 01507808 1 0 -cutting%1:04:00:: 00359238 10 0 -cutting%1:04:01:: 00386915 3 1 -cutting%1:04:02:: 00387657 8 0 -cutting%1:04:03:: 00945205 1 2 -cutting%1:04:04:: 00363052 9 0 -cutting%1:04:05:: 00942234 6 0 -cutting%1:04:09:: 00489475 7 0 -cutting%1:10:00:: 06612649 5 0 -cutting%1:17:00:: 09262371 4 0 -cutting%1:20:00:: 13127473 2 1 -cutting%5:00:00:cold:01 01252399 2 0 -cutting%5:00:00:sharp:04 00803432 3 0 -cutting%5:00:00:unkind:00 01374004 1 0 -cutting-edge%5:00:00:fashionable:00 00972642 1 0 -cutting_angle%1:25:00:: 13892765 1 0 -cutting_board%1:06:00:: 03025513 1 0 -cutting_edge%1:06:00:: 03624497 2 0 -cutting_edge%1:09:00:: 06209419 1 1 -cutting_implement%1:06:00:: 03154446 1 0 -cutting_off%1:04:01:: 00359238 2 0 -cutting_off%1:04:02:: 00392709 1 0 -cutting_out%1:04:00:: 00393369 1 0 -cutting_room%1:06:00:: 03154616 1 0 -cutting_tool%1:06:00:: 03154073 1 0 -cuttingly%4:02:00:: 00370154 1 0 -cuttle%1:05:00:: 01972541 1 0 -cuttlefish%1:05:00:: 01972541 1 0 -cutty_stool%1:06:00:: 03154745 1 0 -cutwork%1:06:00:: 03154895 1 0 -cutworm%1:05:00:: 02295390 1 0 -cuvier%1:18:00:: 10919278 1 0 -cuzco%1:15:00:: 08979740 1 0 -cv%1:10:00:: 06468403 1 0 -cv%5:00:00:cardinal:00 02196333 1 0 -cva%1:26:00:: 14082303 1 0 -cwm%1:17:00:: 09245515 1 0 -cwt%1:23:01:: 13721003 2 0 -cwt%1:23:02:: 13721177 1 0 -cx%5:00:00:cardinal:00 02196439 1 0 -cxl%5:00:00:cardinal:00 02197130 1 0 -cxlv%5:00:00:cardinal:00 02197244 1 0 -cxv%5:00:00:cardinal:00 02196543 1 0 -cxx%5:00:00:cardinal:00 02196657 1 0 -cxxv%5:00:00:cardinal:00 02196769 1 0 -cxxx%5:00:00:cardinal:00 02196891 1 0 -cxxxv%5:00:00:cardinal:00 02197007 1 0 -cy_pres%1:09:00:: 05848691 1 0 -cy_pres_doctrine%1:09:00:: 05848691 1 0 -cy_young%1:18:00:: 11403456 1 0 -cyamopsis%1:20:00:: 12520223 1 0 -cyamopsis_psoraloides%1:20:00:: 12520406 1 0 -cyamopsis_tetragonolobus%1:20:00:: 12520406 1 0 -cyamus%1:05:00:: 01993714 1 0 -cyan%1:07:00:: 04968619 1 0 -cyan%5:00:00:chromatic:00 00371163 1 0 -cyanamid%1:27:00:: 14826482 1 0 -cyanamide%1:27:00:: 14826482 1 0 -cyanamide%1:27:01:: 14789220 2 0 -cyanic_acid%1:27:00:: 14826613 1 0 -cyanide%1:27:00:: 14826767 2 0 -cyanide%1:27:01:: 14827346 1 0 -cyanide_group%1:27:00:: 14827191 1 0 -cyanide_poisoning%1:26:00:: 14510648 1 0 -cyanide_process%1:22:00:: 13454789 1 0 -cyanide_radical%1:27:00:: 14827191 1 0 -cyanine_dye%1:27:00:: 14987150 1 0 -cyanite%1:27:00:: 14679584 1 0 -cyano_group%1:27:00:: 14827191 1 0 -cyano_radical%1:27:00:: 14827191 1 0 -cyanobacteria%1:05:00:: 01358572 1 0 -cyanobacterial%3:01:00:: 02833979 1 0 -cyanocitta%1:05:00:: 01580644 1 0 -cyanocitta_cristata%1:05:00:: 01580870 1 0 -cyanocobalamin%1:27:00:: 15091304 1 0 -cyanogen%1:27:00:: 14827017 1 0 -cyanogenetic%5:00:00:toxic:00 02449775 1 0 -cyanogenic%5:00:00:toxic:00 02449775 1 0 -cyanohydrin%1:27:00:: 14827505 1 0 -cyanophyceae%1:05:00:: 01358259 1 0 -cyanophyta%1:05:00:: 01357707 1 0 -cyanophyte%3:01:00:: 02833979 1 0 -cyanosis%1:26:00:: 14303009 1 0 -cyanuramide%1:27:00:: 14949746 1 0 -cyanuric_acid%1:27:00:: 14827680 1 0 -cyathea%1:20:00:: 13187167 1 0 -cyathea_medullaris%1:20:00:: 13187367 1 0 -cyatheaceae%1:20:00:: 13187031 1 0 -cybele%1:18:00:: 09594093 1 0 -cyber-terrorism%1:04:00:: 00763630 1 0 -cyber-terrorist%1:18:00:: 10155222 1 0 -cyberart%1:06:00:: 03155055 1 0 -cybercafe%1:06:00:: 03155178 1 0 -cybercrime%1:04:00:: 00768483 1 0 -cyberculture%1:09:00:: 06194736 1 0 -cybernate%2:36:00:: 01718952 1 0 -cybernation%1:04:00:: 00102779 1 0 -cybernaut%1:18:00:: 09985683 1 0 -cybernetic%3:01:00:: 03057807 1 0 -cybernetics%1:09:00:: 06142598 1 0 -cyberphobia%1:26:00:: 14383444 1 0 -cyberpunk%1:10:00:: 06368814 3 0 -cyberpunk%1:18:00:: 09985809 2 0 -cyberpunk%1:18:01:: 10155222 1 0 -cybersex%1:26:00:: 14037816 1 0 -cyberspace%1:06:00:: 03580615 1 0 -cyberwar%1:04:00:: 00763630 1 0 -cyborg%1:18:00:: 09985978 1 0 -cycad%1:20:00:: 11600372 1 0 -cycad_family%1:20:00:: 11600671 1 0 -cycadaceae%1:20:00:: 11600671 1 0 -cycadales%1:20:00:: 11600139 1 0 -cycadofilicales%1:20:00:: 11604904 1 0 -cycadophyta%1:20:00:: 11599694 1 0 -cycadophytina%1:20:00:: 11599694 1 0 -cycadopsida%1:20:00:: 11599694 1 0 -cycas%1:20:00:: 11600900 1 0 -cycas_circinalis%1:20:00:: 11601333 1 0 -cycas_revoluta%1:20:00:: 11601177 1 0 -cyclades%1:14:00:: 08290928 1 1 -cyclades%1:15:00:: 08783149 2 0 -cycladic_civilisation%1:14:00:: 08290928 1 0 -cycladic_civilization%1:14:00:: 08290928 1 0 -cycladic_culture%1:14:00:: 08290928 1 0 -cyclamen%1:20:00:: 12093329 1 0 -cyclamen_hederifolium%1:20:00:: 12093600 1 0 -cyclamen_neopolitanum%1:20:00:: 12093600 1 0 -cyclamen_purpurascens%1:20:00:: 12093329 1 0 -cycle%1:06:00:: 02834778 6 0 -cycle%1:11:01:: 07341038 5 1 -cycle%1:11:02:: 07342495 3 2 -cycle%1:14:00:: 08377332 2 2 -cycle%1:28:00:: 15287830 1 4 -cycle%1:28:02:: 15279104 4 1 -cycle%2:30:00:: 00343771 5 0 -cycle%2:38:00:: 01936048 3 0 -cycle%2:38:01:: 01935476 4 0 -cycle%2:38:02:: 02051270 2 1 -cycle%2:38:03:: 02052675 1 1 -cycle_of_rebirth%1:11:00:: 07321517 1 0 -cycle_on%2:38:00:: 02051444 1 0 -cycle_per_second%1:28:00:: 15279104 1 0 -cycle_rickshaw%1:06:00:: 03904433 1 0 -cycles/second%1:28:00:: 15279104 1 0 -cyclic%3:00:01:: 00675701 4 0 -cyclic%3:00:02:: 00676555 3 0 -cyclic%3:00:03:: 00677545 2 0 -cyclic%3:01:00:: 02708232 1 0 -cyclic%5:00:00:periodic:00 01967803 5 0 -cyclic_disorder%1:26:00:: 14392862 1 0 -cyclic_neutropenia%1:26:00:: 14196722 1 0 -cyclic_redundancy_check%1:10:00:: 06357632 1 0 -cyclical%3:00:00:: 00675701 1 0 -cyclicity%1:07:00:: 04767805 1 0 -cycling%1:04:00:: 00451370 1 0 -cycliophora%1:05:00:: 02314717 1 0 -cyclist%1:18:00:: 09986189 1 8 -cyclobenzaprine%1:06:00:: 03155334 1 0 -cyclodestructive_surgery%1:04:00:: 00678988 1 0 -cyclohexanol%1:27:00:: 14827763 1 0 -cyclohexanol_phthalate%1:27:00:: 14827871 1 1 -cycloid%1:25:00:: 13908777 1 0 -cycloid%5:00:00:rounded:00 02045620 1 0 -cycloidal%5:00:00:rounded:00 02045620 1 0 -cycloloma%1:20:00:: 11833208 1 0 -cycloloma_atriplicifolium%1:20:00:: 11833373 1 0 -cyclonal%3:01:00:: 03057949 2 0 -cyclonal%3:01:01:: 03058223 1 0 -cyclone%1:19:00:: 11443721 2 0 -cyclone%1:26:00:: 14521302 1 0 -cyclone_cellar%1:06:00:: 04329681 1 0 -cyclonic%3:01:00:: 03057949 2 0 -cyclonic%3:01:01:: 03058223 1 0 -cyclonical%3:01:00:: 03057949 2 0 -cyclonical%3:01:01:: 03058223 1 0 -cyclooxygenase%1:27:00:: 14737847 1 0 -cyclooxygenase-1%1:27:00:: 14738052 1 0 -cyclooxygenase-2%1:27:00:: 14738295 1 0 -cyclopaedia%1:10:00:: 06427387 1 0 -cyclopean%3:01:00:: 03058501 1 0 -cyclopean_masonry%1:06:00:: 03155502 1 0 -cyclopedia%1:10:00:: 06427387 1 0 -cyclopes%1:05:00:: 02460684 1 0 -cyclopes_didactylus%1:05:00:: 02460817 1 0 -cyclophorus%1:20:00:: 13178883 1 0 -cyclophorus_lingua%1:20:00:: 13178284 1 0 -cyclopia%1:26:00:: 14503990 1 0 -cyclopropane%1:06:00:: 03155661 1 0 -cyclops%1:05:00:: 01997119 2 0 -cyclops%1:18:00:: 09490572 1 0 -cyclopteridae%1:05:00:: 02646377 1 0 -cyclopterus%1:05:00:: 02646508 1 0 -cyclopterus_lumpus%1:05:00:: 02646667 1 0 -cyclorama%1:06:00:: 03884072 1 0 -cycloserine%1:06:00:: 03155788 1 0 -cyclosis%1:19:00:: 11443929 1 0 -cyclosorus%1:20:00:: 13228692 1 0 -cyclosporeae%1:05:00:: 01403968 1 0 -cyclostomata%1:05:00:: 01476829 1 0 -cyclostome%1:05:00:: 01477080 1 0 -cyclostyle%1:06:00:: 03155915 1 0 -cyclostyle%2:36:00:: 01748578 1 0 -cyclothymia%1:26:00:: 14392862 1 0 -cyclothymic%3:01:00:: 03058635 1 0 -cyclothymic_disorder%1:26:00:: 14392862 1 0 -cyclotron%1:06:00:: 03156071 1 0 -cycnoches%1:20:00:: 12054902 1 0 -cyder%1:13:00:: 07921455 1 0 -cydippea%1:05:00:: 01919714 1 0 -cydippida%1:05:00:: 01919714 1 0 -cydippidea%1:05:00:: 01919714 1 0 -cydonia%1:20:00:: 12628872 1 0 -cydonia_oblonga%1:20:00:: 12628986 1 0 -cygnet%1:05:00:: 01858906 1 0 -cygnus%1:05:00:: 01858989 2 0 -cygnus%1:17:00:: 09262490 1 0 -cygnus_atratus%1:05:00:: 01860187 1 0 -cygnus_buccinator%1:05:00:: 01860002 1 0 -cygnus_columbianus%1:05:00:: 01859496 1 0 -cygnus_columbianus_bewickii%1:05:00:: 01859852 1 0 -cygnus_columbianus_columbianus%1:05:00:: 01859689 1 0 -cygnus_cygnus%1:05:00:: 01859325 1 0 -cygnus_olor%1:05:00:: 01859190 1 0 -cylinder%1:06:01:: 03156279 4 0 -cylinder%1:06:02:: 03156405 3 0 -cylinder%1:25:00:: 13899804 2 0 -cylinder%1:25:02:: 13865298 1 1 -cylinder_block%1:06:00:: 03288225 1 0 -cylinder_head%1:06:00:: 03156606 1 0 -cylinder_lock%1:06:00:: 03156767 1 0 -cylinder_press%1:06:00:: 03360431 1 0 -cylindric%5:00:00:rounded:00 02045723 1 0 -cylindrical%5:00:00:rounded:00 02045723 1 5 -cylindrical-stemmed%5:00:00:caulescent:00 00321444 1 0 -cylindrical_lining%1:06:00:: 02925107 1 0 -cylindricality%1:07:00:: 05073403 1 0 -cylindricalness%1:07:00:: 05073403 1 0 -cylix%1:06:00:: 03629520 1 0 -cyma%1:06:00:: 03156990 1 0 -cyma_recta%1:06:00:: 03157215 1 0 -cyma_reversa%1:06:00:: 03842585 1 0 -cymatiidae%1:05:00:: 01947613 1 0 -cymatium%1:06:00:: 03156990 1 0 -cymbal%1:06:00:: 03157348 1 0 -cymbalist%1:18:00:: 09986450 1 0 -cymbid%1:20:00:: 12055516 1 0 -cymbidium%1:20:00:: 12055516 1 0 -cyme%1:20:00:: 13132940 1 0 -cymene%1:27:00:: 14827979 1 0 -cymling%1:20:00:: 12160125 1 0 -cymograph%1:06:00:: 03629643 1 0 -cymose%5:00:00:determinate:02 00741240 1 0 -cymric%1:10:00:: 06961557 1 0 -cymru%1:15:00:: 08894456 1 0 -cymry%1:18:00:: 09747329 1 0 -cymule%1:20:00:: 13133140 1 0 -cynancum%1:20:00:: 13236495 1 0 -cynara%1:20:00:: 11959489 1 0 -cynara_cardunculus%1:20:00:: 11959862 1 0 -cynara_scolymus%1:20:00:: 11959632 1 0 -cynewulf%1:18:00:: 10919496 1 0 -cynic%1:18:00:: 09986532 1 1 -cynic%1:18:01:: 09986700 2 0 -cynical%5:00:00:distrustful:00 02463582 1 2 -cynically%4:02:00:: 00290622 1 0 -cynicism%1:12:00:: 07543204 1 0 -cynipid_gall_wasp%1:05:00:: 02216740 1 0 -cynipid_wasp%1:05:00:: 02216740 1 0 -cynipidae%1:05:00:: 02216547 1 0 -cynips%1:05:00:: 02216924 1 0 -cynocephalidae%1:05:00:: 02502212 1 0 -cynocephalus%1:05:00:: 02502357 1 0 -cynocephalus_variegatus%1:05:00:: 02502807 1 0 -cynodon%1:20:00:: 12115563 1 0 -cynodon_dactylon%1:20:00:: 12115748 1 0 -cynodon_plectostachyum%1:20:00:: 12116058 1 0 -cynodont%1:05:00:: 01720767 1 0 -cynodontia%1:05:00:: 01720496 1 0 -cynoglossidae%1:05:00:: 02663352 1 0 -cynoglossum%1:20:00:: 12818742 1 0 -cynoglossum_amabile%1:20:00:: 12818966 1 0 -cynoglossum_officinale%1:20:00:: 12819141 1 0 -cynoglossum_virginaticum%1:20:00:: 12819354 1 0 -cynomys%1:05:00:: 02359204 1 0 -cynomys_gunnisoni%1:05:00:: 02359667 1 0 -cynomys_ludovicianus%1:05:00:: 02359556 1 0 -cynophobia%1:26:00:: 14385082 1 0 -cynopterus%1:05:00:: 02140719 1 0 -cynopterus_sphinx%1:05:00:: 02140858 1 0 -cynoscephalae%1:04:00:: 01277065 2 0 -cynoscephalae%1:15:00:: 08790199 1 0 -cynoscion%1:05:00:: 02599207 1 0 -cynoscion_nebulosus%1:05:00:: 02599557 1 0 -cynoscion_regalis%1:05:00:: 02599347 1 0 -cynosure%1:09:00:: 05812646 2 0 -cynosure%1:10:00:: 06651145 1 0 -cynthia%1:18:00:: 09556697 1 0 -cynthia_moth%1:05:00:: 02303585 1 0 -cynwulf%1:18:00:: 10919496 1 0 -cyon%1:05:00:: 02115775 1 0 -cyperaceae%1:20:00:: 12149751 1 0 -cyperus%1:20:00:: 12150447 1 0 -cyperus_alternifolius%1:20:00:: 12150722 1 0 -cyperus_esculentus%1:20:00:: 12150969 1 0 -cyperus_longus%1:20:00:: 12151170 1 0 -cyperus_papyrus%1:20:00:: 12151365 1 0 -cyperus_rotundus%1:20:00:: 12151615 1 0 -cypher%1:10:00:: 06355307 4 0 -cypher%1:10:01:: 06254239 5 0 -cypher%1:18:00:: 09923418 3 0 -cypher%1:23:00:: 13740168 2 0 -cypher%1:23:01:: 13742358 1 0 -cypher%2:31:00:: 00637259 2 0 -cypher%2:32:00:: 00994076 1 0 -cyphomandra%1:20:00:: 12902887 1 0 -cypraea%1:05:00:: 01953197 1 0 -cypraea_moneta%1:05:00:: 01953594 1 0 -cypraea_tigris%1:05:00:: 01953762 1 0 -cypraeidae%1:05:00:: 01953032 1 0 -cypre%1:20:00:: 12818346 1 0 -cypress%1:20:01:: 11630489 2 0 -cypress%1:20:02:: 11630890 1 0 -cypress_family%1:20:00:: 11629501 1 0 -cypress_pine%1:20:00:: 11633633 1 0 -cypress_sedge%1:20:00:: 12152251 1 0 -cypress_spurge%1:20:00:: 12919646 1 0 -cypress_tree%1:20:00:: 11630489 1 1 -cypress_vine%1:20:00:: 12827270 1 0 -cyprian%1:18:00:: 09699020 2 0 -cyprian%1:18:02:: 10485440 1 0 -cyprian%3:01:00:: 03058754 1 0 -cyprian%5:00:00:unchaste:00 00361720 2 0 -cyprinid%1:05:00:: 01439121 1 0 -cyprinid%3:01:00:: 02846168 1 0 -cyprinid_fish%1:05:00:: 01439121 1 0 -cyprinidae%1:05:00:: 01438720 1 0 -cypriniform_fish%1:05:00:: 01438208 1 0 -cypriniformes%1:05:00:: 01437805 1 0 -cyprinodont%1:05:00:: 01446589 1 0 -cyprinodontidae%1:05:00:: 01446283 1 0 -cyprinoid%3:01:00:: 02846168 1 0 -cyprinus%1:05:00:: 01439657 1 0 -cyprinus_carpio%1:05:00:: 01439808 1 0 -cypriot%1:18:00:: 09699020 1 0 -cypriot%3:01:00:: 03058754 1 0 -cypriot_monetary_unit%1:23:00:: 13693514 1 0 -cypriot_pound%1:23:00:: 13693641 1 0 -cypriote%1:18:00:: 09699020 1 0 -cypriote%3:01:00:: 03058754 1 0 -cypripedia%1:20:00:: 12056099 1 0 -cypripedium%1:20:00:: 12055839 1 0 -cypripedium_acaule%1:20:00:: 12056601 1 0 -cypripedium_album%1:20:00:: 12056758 1 0 -cypripedium_arietinum%1:20:00:: 12056990 1 0 -cypripedium_calceolus%1:20:00:: 12057211 1 0 -cypripedium_calceolus_pubescens%1:20:00:: 12057447 1 0 -cypripedium_californicum%1:20:00:: 12057660 1 0 -cypripedium_fasciculatum%1:20:00:: 12057895 1 0 -cypripedium_montanum%1:20:00:: 12058192 1 0 -cypripedium_parviflorum%1:20:00:: 12057211 1 0 -cypripedium_reginae%1:20:00:: 12056758 1 0 -cyproheptadine%1:06:00:: 03157582 1 0 -cyprus%1:15:00:: 08756884 1 0 -cyprus%1:15:01:: 08756735 2 0 -cyrano_de_bergerac%1:18:00:: 10919598 1 0 -cyril%1:18:00:: 10919886 1 0 -cyril_burt%1:18:00:: 10874921 1 0 -cyril_lodowic_burt%1:18:00:: 10874921 1 0 -cyril_northcote_parkinson%1:18:00:: 11223119 1 0 -cyrilla%1:20:00:: 12750767 1 0 -cyrilla_family%1:20:00:: 12750306 1 0 -cyrilla_racemiflora%1:20:00:: 12750767 1 0 -cyrilliaceae%1:20:00:: 12750306 1 0 -cyrillic%1:10:00:: 06499796 1 0 -cyrillic%3:01:00:: 03059033 1 0 -cyrillic_alphabet%1:10:00:: 06499796 1 0 -cyrtomium%1:20:00:: 13195151 1 0 -cyrtomium_aculeatum%1:20:00:: 13195341 1 0 -cyrus%1:18:00:: 10920051 1 0 -cyrus_hall_mccormick%1:18:00:: 11168645 1 0 -cyrus_ii%1:18:00:: 10920207 1 0 -cyrus_mccormick%1:18:00:: 11168645 1 0 -cyrus_the_elder%1:18:00:: 10920207 1 0 -cyrus_the_great%1:18:00:: 10920207 1 0 -cyrus_the_younger%1:18:00:: 10920051 1 0 -cyst%1:08:00:: 05517578 2 0 -cyst%1:26:00:: 14202996 1 3 -cysteine%1:27:00:: 14604454 1 0 -cystic%3:01:00:: 02709190 2 0 -cystic%3:01:01:: 02709299 1 0 -cystic_artery%1:08:00:: 05344350 1 0 -cystic_breast_disease%1:26:00:: 14198380 1 0 -cystic_fibrosis%1:26:00:: 14155506 1 0 -cystic_fibrosis_transport_regulator%1:08:00:: 05439810 1 0 -cystic_mastitis%1:26:00:: 14198380 1 0 -cystic_vein%1:08:00:: 05365059 1 0 -cystine%1:27:00:: 14604616 1 0 -cystitis%1:26:00:: 14188702 1 0 -cystocele%1:26:00:: 14296966 1 0 -cystoid_macular_edema%1:26:00:: 14254926 1 0 -cystolith%1:17:00:: 09223487 1 0 -cystoparalysis%1:26:00:: 14086036 1 0 -cystophora%1:05:00:: 02080934 1 0 -cystophora_cristata%1:05:00:: 02081060 1 0 -cystoplegia%1:26:00:: 14086036 1 0 -cystopteris%1:20:00:: 13195547 1 0 -cystopteris_bulbifera%1:20:00:: 13196369 1 0 -cystopteris_fragilis%1:20:00:: 13196003 1 0 -cystopteris_montana%1:20:00:: 13196234 1 0 -cytesis_proliferus%1:20:00:: 12514592 1 0 -cytherea%1:18:00:: 09554132 1 0 -cytidine%1:27:00:: 15073147 1 0 -cytisus%1:20:00:: 12520661 1 0 -cytisus_albus%1:20:00:: 12521186 1 0 -cytisus_multiflorus%1:20:00:: 12521186 1 0 -cytisus_ramentaceus%1:20:00:: 12498457 1 0 -cytisus_scoparius%1:20:00:: 12521394 1 0 -cytoarchitectonic%3:01:00:: 02708334 1 0 -cytoarchitectonics%1:07:00:: 04933197 1 0 -cytoarchitectural%3:01:00:: 02708334 1 0 -cytoarchitecture%1:07:00:: 04933197 1 0 -cytochrome%1:27:00:: 15025571 1 0 -cytochrome_c%1:27:00:: 15025815 1 0 -cytogenesis%1:22:00:: 13454950 1 0 -cytogenetic%3:01:00:: 02709441 1 0 -cytogenetical%3:01:00:: 02709441 1 0 -cytogeneticist%1:18:00:: 09986904 1 0 -cytogenetics%1:09:00:: 06070738 1 0 -cytogeny%1:22:00:: 13454950 1 0 -cytokine%1:27:00:: 14828193 1 0 -cytokinesis%1:22:00:: 13504497 1 0 -cytokinetic%3:01:00:: 02709599 1 0 -cytokinin%1:27:00:: 14745477 1 0 -cytol%1:08:00:: 05432948 1 0 -cytologic%3:01:00:: 02709752 1 0 -cytologic_smear%1:08:00:: 05265139 1 0 -cytologic_specimen%1:08:00:: 05267073 1 0 -cytological%3:01:00:: 02709752 1 0 -cytologist%1:18:00:: 09987045 1 0 -cytology%1:09:00:: 06070503 1 0 -cytolysin%1:27:00:: 14828396 1 0 -cytolysis%1:22:00:: 13455086 1 0 -cytolytic%3:01:00:: 02708506 1 0 -cytomegalic%5:00:00:unhealthy:00 01175939 1 0 -cytomegalovirus%1:05:00:: 01339801 1 0 -cytomembrane%1:08:00:: 05312782 1 0 -cytopathogenic%5:00:00:unhealthful:00 01168315 1 0 -cytopenia%1:26:00:: 13973490 1 0 -cytophotometer%1:06:00:: 03157751 1 0 -cytophotometric%3:01:00:: 02708649 1 0 -cytophotometrically%4:02:00:: 00290762 1 0 -cytophotometry%1:04:00:: 01003435 1 0 -cytoplasm%1:08:00:: 05432948 1 4 -cytoplasmatic%3:01:00:: 02708776 1 0 -cytoplasmic%3:01:00:: 02708776 1 0 -cytoplasmically%4:02:00:: 00290852 1 0 -cytoplast%1:08:00:: 05433400 1 0 -cytoplastic%3:01:00:: 02708931 1 0 -cytosine%1:27:00:: 14828511 1 0 -cytoskeleton%1:08:00:: 05433496 1 0 -cytosmear%1:08:00:: 05265139 1 0 -cytosol%1:08:00:: 05433709 1 0 -cytostome%1:05:00:: 01458010 1 0 -cytotoxic%3:01:00:: 02709917 1 0 -cytotoxic_drug%1:06:00:: 03157987 1 0 -cytotoxic_t_cell%1:08:00:: 05452516 1 0 -cytotoxicity%1:23:00:: 13583611 1 0 -cytotoxin%1:27:00:: 15035367 1 0 -czar%1:18:00:: 09987161 2 0 -czar%1:18:01:: 09987239 1 0 -czar_alexander_i%1:18:00:: 10812550 1 0 -czar_alexander_ii%1:18:00:: 10812800 1 0 -czar_alexander_iii%1:18:00:: 10813049 1 0 -czar_nicholas_i%1:18:00:: 11205975 1 0 -czar_peter_i%1:18:00:: 11231433 1 0 -czarina%1:18:00:: 09987573 1 0 -czarist%3:01:00:: 02710043 1 0 -czaristic%3:01:00:: 02710043 1 0 -czaritza%1:18:00:: 09987573 1 0 -czech%1:10:00:: 06944911 3 0 -czech%1:18:00:: 09699200 2 0 -czech%1:18:01:: 09699403 1 0 -czech%3:01:00:: 02961688 1 0 -czech_capital%1:15:00:: 08757926 1 0 -czech_monetary_unit%1:23:00:: 13681142 1 0 -czech_republic%1:15:00:: 08757264 1 0 -czechoslovak%1:18:00:: 09699200 1 0 -czechoslovakia%1:15:00:: 08757569 1 4 -czechoslovakian%1:18:00:: 09699200 1 0 -czechoslovakian%3:01:00:: 02961688 1 0 -czerny%1:18:00:: 10920366 1 0 -czestochowa%1:15:00:: 08983556 1 0 -d%1:10:00:: 06831498 3 0 -d%1:23:00:: 13750712 2 0 -d%1:27:00:: 15092227 1 0 -d%5:00:00:cardinal:00 02198631 1 0 -d'oyly_carte%1:18:00:: 10942473 1 0 -d-day%1:28:00:: 15162523 1 0 -d-layer%1:15:00:: 08582157 1 0 -d._h._lawrence%1:18:00:: 11120146 1 0 -d._w._griffith%1:18:00:: 11016374 1 0 -d.a.%1:10:00:: 06703834 1 0 -d.c.%1:15:00:: 09070487 1 0 -d.o.a.%5:00:00:dead:01 00096913 1 0 -d.p.r.k.%1:15:00:: 08955082 1 0 -d_and_c%1:04:00:: 00670250 1 0 -d_region%1:15:00:: 08582157 1 0 -da%1:18:00:: 10019072 1 0 -da'wah%1:04:00:: 00731136 1 0 -da_gamma%1:18:00:: 10920582 1 0 -da_vinci%1:18:00:: 11128394 1 0 -dab%1:04:00:: 00125436 1 1 -dab%1:23:00:: 13761171 2 0 -dab%2:35:00:: 01233027 2 1 -dab%2:35:01:: 01233194 1 2 -daba%1:10:00:: 06984446 1 0 -dabble%2:38:00:: 01976384 1 1 -dabble%2:38:01:: 01865575 4 0 -dabble%2:41:00:: 02419613 2 0 -dabble%2:41:01:: 02416030 3 0 -dabbled%5:00:00:covered:00 01695891 1 1 -dabbler%1:05:00:: 01847407 2 0 -dabbler%1:18:00:: 09987696 1 0 -dabbling_duck%1:05:00:: 01847407 1 0 -dabchick%1:05:00:: 02050809 1 0 -daboecia%1:20:00:: 12234513 1 0 -daboecia_cantabrica%1:20:00:: 12234669 1 0 -dacca%1:15:00:: 08849226 1 0 -dace%1:05:00:: 01441117 1 0 -dacelo%1:05:00:: 01828267 1 0 -dacelo_gigas%1:05:00:: 01828556 1 0 -dacha%1:06:00:: 03158186 1 0 -dachau%1:06:00:: 03158259 1 0 -dachshund%1:05:00:: 02089232 1 0 -dachsie%1:05:00:: 02089232 1 0 -dacite%1:27:00:: 14726823 1 0 -dacitic%3:01:00:: 03059198 1 0 -dacninae%1:05:00:: 01538775 1 0 -dacoit%1:18:00:: 09987927 1 0 -dacoity%1:04:00:: 00782927 1 0 -dacridium_laxifolius%1:20:00:: 11656771 1 0 -dacron%1:06:00:: 03158414 1 0 -dacrycarpus%1:20:00:: 11653728 1 0 -dacrycarpus_dacrydioides%1:20:00:: 11653904 1 0 -dacrydium%1:20:00:: 11654124 1 0 -dacrydium_bidwilli%1:20:00:: 11655592 1 0 -dacrydium_colensoi%1:20:00:: 11654438 1 0 -dacrydium_cupressinum%1:20:00:: 11654293 1 0 -dacrydium_franklinii%1:20:00:: 11656123 1 0 -dacrymyces%1:20:00:: 13062868 1 0 -dacrymycetaceae%1:20:00:: 13062630 1 0 -dacryocyst%1:08:00:: 05331988 1 0 -dacryocystitis%1:26:00:: 14341769 1 0 -dacryon%1:08:00:: 05232345 1 0 -dactyl%1:08:00:: 05566097 2 0 -dactyl%1:10:00:: 07095148 1 0 -dactylic%3:01:00:: 03059340 1 0 -dactylis%1:20:00:: 12116267 1 0 -dactylis_glomerata%1:20:00:: 12116429 1 0 -dactyloctenium%1:20:00:: 12116583 1 0 -dactyloctenium_aegypticum%1:20:00:: 12116734 1 0 -dactylomegaly%1:26:00:: 14367249 1 0 -dactylopiidae%1:05:00:: 02249995 1 0 -dactylopius%1:05:00:: 02250133 1 0 -dactylopius_coccus%1:05:00:: 02250280 1 0 -dactylopteridae%1:05:00:: 02651846 1 0 -dactylopterus%1:05:00:: 02652005 1 0 -dactylorhiza%1:20:00:: 12058429 1 0 -dactylorhiza_fuchsii%1:20:00:: 12058822 1 0 -dactylorhiza_maculata_fuchsii%1:20:00:: 12058822 1 0 -dactyloscopidae%1:05:00:: 02612046 1 0 -dad%1:18:00:: 09988063 1 3 -dada%1:14:00:: 08466412 2 0 -dada%1:18:00:: 09988063 1 0 -dadaism%1:14:00:: 08466412 1 1 -daddy%1:18:00:: 09988063 1 2 -daddy_longlegs%1:05:01:: 02205219 1 0 -daddy_longlegs%1:05:02:: 01770081 2 0 -dado%1:06:00:: 04544138 1 0 -dado%1:06:01:: 03158542 3 0 -dado%1:06:02:: 03158668 2 0 -dado%2:35:00:: 01457710 2 0 -dado%2:40:00:: 02226559 1 0 -dado_plane%1:06:00:: 03158796 1 0 -dae-han-min-gook%1:15:00:: 08954611 1 0 -daedal%1:18:00:: 09560196 1 0 -daedal%5:00:00:complex:00 02178116 1 0 -daedalus%1:18:00:: 09560196 1 0 -daemon%1:18:00:: 09542339 1 0 -daemon%1:18:01:: 09506216 2 0 -daffo%1:10:00:: 06983114 1 0 -daffodil%1:20:00:: 12421683 1 1 -daffodil_garlic%1:20:00:: 12434483 1 0 -dafla%1:10:00:: 06933824 1 0 -daft%5:00:00:insane:00 02074929 1 0 -daftly%4:02:00:: 00303930 1 0 -daftness%1:26:00:: 14397889 1 0 -dag%1:06:00:: 03591901 2 0 -dag%1:23:00:: 13724350 1 0 -dag_hammarskjold%1:18:00:: 11026372 1 0 -dag_hjalmar_agne_carl_hammarskjold%1:18:00:: 11026372 1 0 -dagame%1:20:00:: 12662074 1 0 -dagan%1:18:00:: 09517209 1 0 -dagda%1:18:00:: 09508666 1 0 -dagestani%1:14:00:: 08483650 1 0 -dagga%1:20:00:: 12850906 1 0 -dagger%1:06:00:: 03158885 1 1 -dagger%1:10:00:: 06828529 2 0 -dagger-like%5:00:00:sharp:00 00801539 1 0 -dagger_fern%1:20:00:: 13199717 1 0 -daggerboard%1:06:00:: 03159176 1 0 -dago%1:18:00:: 09716439 1 0 -dagon%1:18:00:: 09517057 1 0 -daguerre%1:18:00:: 10920832 1 0 -daguerreotype%1:06:00:: 03159331 1 0 -dah%1:10:00:: 06805962 1 0 -dahl%1:13:00:: 07726230 2 0 -dahl%1:20:00:: 12510774 1 0 -dahlia%1:20:00:: 11960245 1 0 -dahlia_pinnata%1:20:00:: 11960245 1 0 -dahna%1:15:00:: 09172111 1 0 -dahomey%1:15:00:: 08759420 1 0 -daikon%1:20:00:: 11895092 1 0 -dail%1:14:00:: 08319539 1 0 -dail_eireann%1:14:00:: 08319539 1 0 -daily%1:10:00:: 06267564 1 0 -daily%4:02:00:: 00081486 1 37 -daily%4:02:01:: 00177818 2 0 -daily%5:00:00:informal:01 01044557 2 0 -daily%5:00:00:periodic:00 01968165 1 0 -daily_dew%1:20:00:: 12782530 1 0 -daily_double%1:04:00:: 00506919 1 0 -daily_round%1:04:00:: 00415098 1 0 -daily_variation%1:11:00:: 07444278 1 1 -daimler%1:18:00:: 10921009 1 0 -daimon%1:18:00:: 09542339 1 0 -daintily%4:02:00:: 00304173 1 1 -daintily%4:02:01:: 00304283 2 0 -daintiness%1:07:00:: 04813066 1 0 -dainty%1:13:00:: 07557165 1 0 -dainty%5:00:00:delicate:00 00706311 2 1 -dainty%5:00:00:fastidious:00 00984333 4 0 -dainty%5:00:00:refined:01 01948092 1 1 -dainty%5:00:00:tasty:00 02396578 3 0 -daiquiri%1:13:00:: 07914413 1 1 -dairen%1:15:00:: 08727003 1 0 -dairy%1:06:00:: 03159535 1 1 -dairy_cattle%1:05:00:: 02406174 1 4 -dairy_cow%1:05:00:: 02406174 1 4 -dairy_farm%1:06:00:: 03159535 1 0 -dairy_farmer%1:18:00:: 09988392 1 0 -dairy_farming%1:04:00:: 00918289 1 0 -dairy_product%1:13:00:: 07843775 1 0 -dairying%1:04:00:: 00918289 1 0 -dairymaid%1:18:00:: 09988216 1 0 -dairyman%1:18:00:: 09988392 1 1 -dairyman%1:18:01:: 09988311 2 0 -dais%1:06:00:: 03159640 1 1 -daishiki%1:06:00:: 03163381 1 0 -daisy%1:20:00:: 11939491 1 1 -daisy-bush%1:20:00:: 11997969 1 0 -daisy-chain%2:35:00:: 01355276 1 0 -daisy-leaved_grape_fern%1:20:00:: 12961242 1 0 -daisy_bush%1:20:00:: 11997969 1 0 -daisy_chain%1:06:00:: 03159828 2 0 -daisy_chain%1:14:00:: 08376823 1 0 -daisy_cutter%1:04:00:: 00131347 2 0 -daisy_cutter%1:06:00:: 03390327 1 0 -daisy_fleabane%1:20:00:: 11966083 1 0 -daisy_print_wheel%1:06:00:: 03160001 1 0 -daisy_wheel%1:06:00:: 03160001 1 0 -daisybush%1:20:00:: 11997969 1 0 -daisyleaf_grape_fern%1:20:00:: 12961242 1 0 -daisylike%3:01:00:: 03059477 1 0 -daisywheel_printer%1:06:00:: 03160186 1 0 -dak%1:20:00:: 12510343 1 0 -dakar%1:15:00:: 08996118 1 0 -dakoit%1:18:00:: 09987927 1 0 -dakoity%1:04:00:: 00782927 1 0 -dakota%1:10:00:: 06909478 3 0 -dakota%1:15:00:: 09053019 2 0 -dakota%1:18:00:: 09654374 1 0 -dal%1:23:00:: 13624509 1 0 -dalai_lama%1:18:00:: 09988493 1 0 -dalasi%1:23:00:: 13668161 1 0 -dalbergia%1:20:00:: 12521847 1 0 -dalbergia_cearensis%1:20:00:: 12523141 1 0 -dalbergia_latifolia%1:20:00:: 12522678 1 0 -dalbergia_nigra%1:20:00:: 12523475 1 0 -dalbergia_retusa%1:20:00:: 12523850 1 0 -dalbergia_sissoo%1:20:00:: 12522894 1 0 -dalbergia_stevensonii%1:20:00:: 12523698 1 0 -dale%1:17:00:: 09262690 1 0 -dale_carnegie%1:18:00:: 10883202 1 0 -dalea%1:20:00:: 12524518 1 0 -dalea_spinosa%1:20:00:: 12524633 1 0 -dalesman%1:18:00:: 09988597 1 0 -daleth%1:10:00:: 06837037 1 0 -dali%1:18:00:: 10921218 1 0 -dalian%1:15:00:: 08727003 1 0 -dall's_sheep%1:05:00:: 02415253 1 0 -dall_sheep%1:05:00:: 02415253 1 0 -dallas%1:15:00:: 09143786 1 19 -dalliance%1:04:00:: 01067819 1 0 -dalliance%1:04:01:: 00512522 2 0 -dallier%1:18:00:: 09988703 1 0 -dallis_grass%1:20:00:: 12128071 1 0 -dallisgrass%1:20:00:: 12128071 1 0 -dally%2:31:01:: 00711932 4 0 -dally%2:32:00:: 01037910 3 0 -dally%2:38:00:: 02011685 2 0 -dally%2:41:00:: 02437465 1 0 -dalmane%1:06:00:: 03371363 1 0 -dalmatia%1:15:00:: 08819223 1 0 -dalmatia_pyrethrum%1:20:00:: 12022382 1 0 -dalmatian%1:05:00:: 02110341 2 0 -dalmatian%1:18:00:: 09988918 1 0 -dalmatian%3:01:00:: 03059551 1 0 -dalmatian_iris%1:20:00:: 12414329 1 0 -dalmatian_laburnum%1:20:00:: 12498457 1 0 -dalmatian_pyrethrum%1:20:00:: 12022382 1 0 -dalo%1:20:00:: 11786539 1 0 -dalton%1:18:00:: 10921324 1 0 -dalton's_law%1:09:00:: 05876469 2 0 -dalton's_law%1:09:01:: 05882226 1 0 -dalton's_law_of_partial_pressures%1:09:00:: 05876469 1 0 -dalton_trumbo%1:18:00:: 11350059 1 0 -daltonism%1:26:00:: 14154168 1 0 -dam%1:05:00:: 01323493 3 0 -dam%1:06:00:: 03160309 1 2 -dam%1:23:00:: 13659419 2 0 -dam%2:35:00:: 01477224 1 1 -dam_up%2:35:00:: 01477224 1 0 -dama%1:05:00:: 02433205 1 0 -dama_dama%1:05:00:: 02433318 1 0 -damage%1:04:00:: 00403092 3 1 -damage%1:04:01:: 00744131 5 0 -damage%1:11:00:: 07420770 1 11 -damage%1:11:01:: 07339653 2 1 -damage%1:21:00:: 13303315 4 0 -damage%2:30:00:: 00258857 1 12 -damage%2:30:01:: 00588084 2 0 -damage_control%1:04:00:: 00804271 1 0 -damaged%3:00:00:: 00679147 1 0 -damaged%5:00:00:disreputable:00 01984252 2 0 -damages%1:21:00:: 13290676 1 0 -damaging%5:00:00:destructive:00 00587890 2 0 -damaging%5:00:00:harmful:00 01161984 1 1 -damaliscus%1:05:00:: 02422249 1 0 -damaliscus_lunatus%1:05:00:: 02422391 1 0 -damar%1:27:00:: 14895807 1 0 -damaraland_mole_rat%1:05:00:: 02370137 1 0 -damascene%1:06:00:: 03160593 2 0 -damascene%1:18:00:: 09733580 1 0 -damascene%2:36:00:: 01682446 1 0 -damascene%3:01:00:: 03059688 1 0 -damascene%5:00:00:fancy:00 01795610 2 0 -damascus%1:15:00:: 09033936 1 1 -damascus_steel%1:27:00:: 14803438 1 0 -damask%1:06:00:: 03160740 2 0 -damask%1:06:01:: 03160894 1 0 -damask%5:00:00:fancy:00 01795799 1 0 -damask_rose%1:20:00:: 12621410 1 0 -damask_steel%1:27:00:: 14803438 1 0 -damask_violet%1:20:00:: 11888800 1 0 -dame%1:18:00:: 09989045 1 1 -dame%1:18:01:: 09989290 2 0 -dame's_violet%1:20:00:: 11888800 1 0 -dame_agatha_mary_clarissa_christie%1:18:00:: 10896987 1 0 -dame_alice_ellen_terry%1:18:00:: 11336544 1 0 -dame_alicia_markova%1:18:00:: 11157140 1 0 -dame_barbara_hepworth%1:18:00:: 11044168 1 0 -dame_daphne_du_maurier%1:18:00:: 10945263 1 0 -dame_edith_louisa_sitwell%1:18:00:: 11304011 1 0 -dame_edith_sitwell%1:18:00:: 11304011 1 0 -dame_ellen_terry%1:18:00:: 11336544 1 0 -dame_jean_iris_murdoch%1:18:00:: 11196764 1 0 -dame_joan_sutherland%1:18:00:: 11325867 1 0 -dame_kiri_janette_te_kanawa%1:18:00:: 11334773 1 0 -dame_kiri_te_kanawa%1:18:00:: 11334773 1 0 -dame_margot_fonteyn%1:18:00:: 10974455 1 0 -dame_muriel_spark%1:18:00:: 11309613 1 0 -dame_myra_hess%1:18:00:: 11048109 1 0 -dame_nellie_melba%1:18:00:: 11172045 1 0 -dame_rebecca_west%1:18:00:: 11382398 1 0 -dame_sybil_thorndike%1:18:00:: 11341267 1 0 -damgalnunna%1:18:00:: 09517342 1 0 -daminozide%1:27:00:: 14708531 1 0 -damkina%1:18:00:: 09517342 1 0 -dammar%1:27:00:: 14895807 1 0 -dammar_pine%1:20:00:: 11647306 1 0 -dammar_resin%1:27:00:: 14895807 1 0 -damn%1:07:00:: 05140793 1 1 -damn%2:32:00:: 00865958 1 7 -damn%4:02:00:: 00025144 1 2 -damn%5:00:00:cursed:00 00670530 1 19 -damn%5:00:02:cursed:00 00669942 2 2 -damnable%5:00:00:cursed:00 00670635 1 0 -damnably%4:02:00:: 00297563 1 0 -damnation%1:10:00:: 07233542 1 2 -damnation%1:26:00:: 14458593 2 0 -damnatory%5:00:00:inculpatory:00 00925177 1 0 -damned%1:14:00:: 07945490 1 2 -damned%4:02:00:: 00297563 1 1 -damned%5:00:00:cursed:00 00669942 1 8 -damned%5:00:00:lost:02 01451225 2 6 -damning%5:00:00:inculpatory:00 00925177 1 0 -damocles%1:18:00:: 10921571 1 0 -damoiselle%1:18:00:: 09989168 1 0 -damon%1:18:00:: 10921879 1 0 -damon_and_pythias%1:18:00:: 09560426 1 0 -damon_runyon%1:18:00:: 11273907 1 0 -damosel%1:18:00:: 09989168 1 0 -damourite%1:27:00:: 14673669 1 0 -damozel%1:18:00:: 09989168 1 0 -damp%1:26:00:: 14535905 1 0 -damp%2:30:00:: 00390215 4 0 -damp%2:30:01:: 00390560 3 0 -damp%2:30:04:: 00573085 2 0 -damp%2:39:00:: 02191311 1 0 -damp%5:00:00:wet:01 02548820 1 6 -damp-proof_course%1:06:00:: 03161228 1 0 -damp_course%1:06:00:: 03161228 1 0 -dampen%2:30:00:: 00390215 7 0 -dampen%2:30:01:: 00217956 2 2 -dampen%2:30:02:: 00390459 6 0 -dampen%2:30:03:: 00390560 5 0 -dampen%2:30:04:: 00391553 4 0 -dampen%2:30:05:: 00390842 1 3 -dampen%2:39:00:: 02191311 3 0 -dampener%1:06:00:: 03161016 1 0 -dampening%1:04:00:: 00278040 1 0 -damper%1:04:00:: 01145905 3 0 -damper%1:06:00:: 03161450 2 0 -damper%1:06:01:: 03161725 1 0 -damper_block%1:06:00:: 03161893 1 0 -damping_off%1:26:00:: 14280151 1 0 -damping_off_fungus%1:20:00:: 12982590 1 0 -dampish%5:00:00:wet:01 02548820 1 0 -damply%4:02:00:: 00297741 1 0 -dampness%1:26:00:: 14535905 1 0 -damsel%1:18:00:: 09989168 1 0 -damselfish%1:05:00:: 02606384 1 0 -damselfly%1:05:00:: 02268853 1 0 -damson%1:13:00:: 07751737 1 0 -damson_plum%1:13:00:: 07751737 3 0 -damson_plum%1:20:00:: 12639910 2 0 -damson_plum%1:20:02:: 12773917 1 0 -damson_plum_tree%1:20:00:: 12639910 1 0 -dana%1:18:00:: 09508809 1 0 -danaea%1:20:00:: 13215799 1 0 -danaid%1:05:00:: 02279637 1 0 -danaid_butterfly%1:05:00:: 02279637 1 0 -danaidae%1:05:00:: 02279442 1 0 -danau%1:17:00:: 09263087 1 0 -danaus%1:05:00:: 02279819 1 0 -danaus_plexippus%1:05:00:: 02279972 1 0 -dance%1:04:00:: 00428270 3 1 -dance%1:10:00:: 07020538 1 15 -dance%1:11:00:: 07448717 4 0 -dance%1:14:00:: 08253141 2 3 -dance%2:36:00:: 01708676 2 14 -dance%2:38:01:: 01894649 1 17 -dance%2:38:02:: 02099075 3 2 -dance_band%1:14:00:: 08249960 1 0 -dance_floor%1:06:00:: 03162080 1 0 -dance_hall%1:06:00:: 02783324 1 0 -dance_lesson%1:04:00:: 00889682 1 0 -dance_master%1:18:00:: 09990777 1 0 -dance_music%1:10:00:: 07054433 2 0 -dance_music%1:10:01:: 07060697 1 0 -dance_of_death%1:04:00:: 00542149 1 0 -dance_orchestra%1:14:00:: 08249960 1 0 -dance_palace%1:06:00:: 02783324 1 0 -dance_school%1:14:00:: 08411483 1 0 -dance_step%1:04:00:: 00533922 1 0 -danceable%5:00:00:rhythmical:00 02019805 1 0 -dancer%1:18:00:: 09989502 1 8 -dancer%1:18:01:: 09990415 2 0 -danceroom_music%1:10:00:: 07060697 1 0 -dancing%1:04:00:: 00428270 1 6 -dancing-master%1:18:00:: 09990777 1 0 -dancing_lady_orchid%1:20:00:: 12074408 1 0 -dancing_partner%1:18:00:: 09990904 1 0 -dancing_school%1:14:00:: 08278822 1 1 -dandelion%1:20:00:: 12024176 1 1 -dandelion_green%1:13:00:: 07733217 2 0 -dandelion_green%1:20:00:: 12024690 1 0 -dander%1:12:00:: 07518000 2 0 -dander%1:17:00:: 09262798 1 0 -dandie_dinmont%1:05:00:: 02096437 1 0 -dandie_dinmont_terrier%1:05:00:: 02096437 1 0 -dandified%5:00:00:elegant:00 00849912 1 0 -dandify%2:29:00:: 00051942 1 0 -dandily%4:02:00:: 00503669 1 1 -dandle%2:35:00:: 01211581 2 0 -dandle%2:38:00:: 01865726 1 0 -dandle_board%1:06:00:: 04167759 1 0 -dandruff%1:17:00:: 09262955 2 0 -dandruff%1:26:00:: 14231207 1 0 -dandy%1:06:00:: 04612373 2 0 -dandy%1:18:00:: 09991026 1 0 -dandy%5:00:00:good:01 01123879 1 0 -dandy_fever%1:26:00:: 14129784 1 0 -dandyish%5:00:00:elegant:00 00849912 1 0 -dandyism%1:07:00:: 04910848 1 0 -dane%1:18:00:: 09699642 1 1 -danewort%1:20:00:: 12679023 1 0 -dangaleat%1:10:00:: 06985573 1 0 -danger%1:04:00:: 00802238 2 8 -danger%1:15:00:: 08644213 4 1 -danger%1:26:00:: 14540765 1 18 -danger%1:26:01:: 14541044 3 6 -danger_line%1:15:00:: 08644327 1 1 -danger_zone%1:15:00:: 08689873 1 0 -dangerous%3:00:00:: 02058794 1 22 -dangerous%5:00:00:critical:03 00651039 2 1 -dangerous_undertaking%1:04:00:: 00796315 1 0 -dangerously%4:02:00:: 00090228 1 2 -dangerousness%1:07:00:: 04856460 1 0 -dangla%1:10:00:: 06985573 1 0 -dangle%2:35:00:: 01482285 2 2 -dangle%2:42:00:: 02717472 1 3 -dangle-berry%1:20:00:: 12236977 1 0 -dangleberry%1:20:00:: 12236977 1 0 -dangling%1:04:00:: 01017701 1 0 -dangling_modifier%1:10:00:: 06323822 1 1 -dangling_participle%1:10:00:: 06324086 1 0 -daniel%1:10:00:: 06438995 3 0 -daniel%1:18:00:: 09991285 2 0 -daniel%1:18:01:: 10922019 1 0 -daniel_bernoulli%1:18:00:: 10848641 1 0 -daniel_boone%1:18:00:: 10857418 1 0 -daniel_chester_french%1:18:00:: 10981750 1 0 -daniel_defoe%1:18:00:: 10927270 1 0 -daniel_garrison_brinton%1:18:00:: 10864428 1 0 -daniel_hudson_burnham%1:18:00:: 10873505 1 0 -daniel_jones%1:18:00:: 11090136 1 0 -daniel_morgan%1:18:00:: 11190592 1 0 -daniel_ortega%1:18:00:: 11217182 1 0 -daniel_ortega_saavedra%1:18:00:: 11217182 1 0 -daniel_patrick_moynihan%1:18:00:: 11194205 1 0 -daniel_rutherford%1:18:00:: 11276549 1 0 -daniel_webster%1:18:00:: 11379217 1 0 -danish%1:10:00:: 06954048 1 2 -danish%1:13:00:: 07693590 2 0 -danish%3:01:00:: 02960338 1 3 -danish_blue%1:13:00:: 07852452 1 0 -danish_capital%1:15:00:: 08761868 1 0 -danish_krone%1:23:00:: 13682740 1 0 -danish_monetary_unit%1:23:00:: 13682631 1 0 -danish_pastry%1:13:00:: 07693590 1 0 -dank%5:00:00:wet:01 02548619 1 1 -dankness%1:26:00:: 14536085 1 0 -danmark%1:15:00:: 08761244 1 0 -dano-norwegian%1:10:00:: 06954461 1 0 -danse_du_ventre%1:04:00:: 00530554 1 0 -danse_macabre%1:04:00:: 00542149 1 0 -danseur%1:18:00:: 09991406 1 0 -danseur_noble%1:18:00:: 09991406 1 0 -danseuse%1:18:00:: 09834592 1 0 -dante%1:18:00:: 10922239 1 1 -dante_alighieri%1:18:00:: 10922239 1 0 -dante_gabriel_rossetti%1:18:00:: 11271563 1 0 -dantean%3:01:00:: 03030364 1 0 -dantesque%3:01:00:: 03030364 1 0 -danton%1:18:00:: 10922501 1 0 -danton_true_young%1:18:00:: 11403456 1 0 -danu%1:18:00:: 09508809 1 0 -danube%1:17:00:: 09263087 1 0 -danube_river%1:17:00:: 09263087 1 0 -danzig%1:15:00:: 08983742 1 0 -daoism%1:09:00:: 05977340 1 0 -daphne%1:18:00:: 09550278 2 0 -daphne%1:20:00:: 12346578 1 0 -daphne_cneorum%1:20:00:: 12346813 1 0 -daphne_du_maurier%1:18:00:: 10945263 1 0 -daphne_family%1:20:00:: 12346179 1 0 -daphne_laureola%1:20:00:: 12346986 1 0 -daphne_mezereum%1:20:00:: 12347158 1 0 -daphnia%1:05:00:: 01994910 1 0 -dapper%5:00:00:fashionable:00 00971933 1 2 -dapperness%1:07:00:: 04814025 1 0 -dapple%1:07:00:: 04682462 1 0 -dapple%2:30:00:: 00510364 1 0 -dapple-gray%1:07:00:: 04962395 1 0 -dapple-grey%1:07:00:: 04962395 1 0 -dappled%5:00:00:patterned:00 01788273 1 1 -dappled-gray%1:07:00:: 04962395 1 0 -dappled-grey%1:07:00:: 04962395 1 0 -dapsang%1:17:00:: 09322701 1 0 -dapsone%1:06:00:: 03162171 1 0 -dar_al-harb%1:15:00:: 09178596 1 0 -dar_al-islam%1:15:00:: 09178481 1 0 -dar_es_salaam%1:15:00:: 09034967 1 0 -daraf%1:23:00:: 13637988 1 0 -dard%1:10:00:: 06972311 1 0 -dardan%1:18:00:: 09750524 1 0 -dardanelles%1:04:00:: 01277288 2 0 -dardanelles%1:15:00:: 09041371 1 0 -dardanelles_campaign%1:04:00:: 01277288 1 0 -dardanian%1:18:00:: 09750524 1 0 -dardanus%1:18:00:: 09494280 1 0 -dardic%1:10:00:: 06972311 1 0 -dardic_language%1:10:00:: 06972311 1 0 -dare%1:10:00:: 07231532 1 0 -dare%2:32:00:: 00868097 3 3 -dare%2:41:00:: 02374924 1 11 -dare%2:41:01:: 02545045 2 10 -daredevil%1:18:00:: 09991530 1 0 -daredevil%5:00:00:bold:00 00250483 1 0 -daredevilry%1:07:00:: 04859323 1 0 -daredeviltry%1:07:00:: 04859323 1 0 -darfur%1:15:00:: 09029884 1 0 -dari%1:10:00:: 06974283 1 0 -dari_persian%1:10:00:: 06974283 1 0 -daricon%1:06:00:: 03869222 1 0 -darier's_disease%1:26:00:: 14228712 1 0 -daring%1:07:00:: 04858785 2 1 -daring%1:10:00:: 07231532 1 1 -daring%5:00:00:adventurous:00 00066146 1 1 -daring%5:00:00:original:00 01686906 2 0 -daringly%4:02:00:: 00304425 2 0 -daringly%4:02:01:: 00304561 1 0 -darius_i%1:18:00:: 10922772 1 0 -darius_iii%1:18:00:: 10922968 1 0 -darius_milhaud%1:18:00:: 11179124 1 0 -darius_the_great%1:18:00:: 10922772 1 0 -darjeeling%1:13:00:: 07934800 1 0 -dark%1:09:00:: 05988498 5 2 -dark%1:15:00:: 08646306 3 4 -dark%1:26:00:: 13983515 1 9 -dark%1:26:01:: 14563564 2 5 -dark%1:28:00:: 15167027 4 3 -dark%3:00:01:: 00273082 1 49 -dark%3:00:02:: 00409440 2 27 -dark%5:00:00:black:02 00242575 10 0 -dark%5:00:00:brunet:00 00245200 3 13 -dark%5:00:00:concealed:00 02088883 5 0 -dark%5:00:00:depressing:00 00364881 9 0 -dark%5:00:00:evil:00 01131935 4 5 -dark%5:00:00:ill-natured:00 01137378 6 0 -dark%5:00:00:inactive:03 00036763 11 0 -dark%5:00:00:incomprehensible:00 00534250 8 0 -dark%5:00:00:unenlightened:00 00884501 7 0 -dark-blue%5:00:00:chromatic:00 00374477 1 2 -dark-brown%5:00:00:chromatic:00 00372111 1 1 -dark-coated%5:00:00:hairy:00 00213516 1 0 -dark-colored%5:00:00:colored:00 00397314 1 0 -dark-coloured%5:00:00:colored:00 00397314 1 0 -dark-eyed_junco%1:05:00:: 01534582 1 0 -dark-field_microscope%1:06:00:: 04506688 1 0 -dark-fruited%5:00:00:fruitful:00 01081263 1 0 -dark-gray%5:00:00:achromatic:00 00390725 1 0 -dark-green%5:00:00:chromatic:00 00375969 1 1 -dark-grey%5:00:00:achromatic:00 00390725 1 0 -dark-haired%5:00:00:brunet:00 00245319 1 1 -dark-haired%5:00:00:hairy:00 00213516 2 0 -dark-skinned%5:00:00:black:02 00242575 1 1 -dark-skinned%5:00:00:brunet:00 00245458 2 0 -dark-spotted%5:00:00:patterned:00 01788369 1 0 -dark_adaptation%1:04:00:: 00193622 1 0 -dark_ages%1:28:00:: 15259284 1 4 -dark_blue%1:07:00:: 04969703 1 1 -dark_bread%1:13:00:: 07682316 1 1 -dark_chocolate%1:13:00:: 07603722 1 0 -dark_comedy%1:10:00:: 07016098 1 0 -dark_field_illumination%1:04:00:: 00645622 1 1 -dark_glasses%1:06:00:: 04356056 1 0 -dark_ground_illumination%1:04:00:: 00645622 1 0 -dark_horse%1:05:00:: 02385580 2 0 -dark_horse%1:18:00:: 09991740 1 0 -dark_lantern%1:06:00:: 03162297 1 0 -dark_matter%1:27:00:: 14582220 1 0 -dark_meat%1:13:01:: 07650637 1 0 -dark_red%1:07:00:: 04963740 1 0 -darken%2:30:00:: 00312380 1 4 -darken%2:30:01:: 00311559 3 0 -darken%2:35:00:: 01537829 2 0 -darkened%5:00:00:dark:01 00274698 2 0 -darkened%5:00:00:old:02 01645152 1 0 -darkening%1:04:00:: 00274437 1 0 -darkening%5:00:00:dark:01 00274833 1 1 -darkey%1:18:00:: 09637684 1 0 -darkie%1:18:00:: 09637684 1 0 -darkish%5:00:00:dark:02 00409668 1 0 -darkling%5:00:01:dark:01 00274971 2 0 -darkling%5:00:02:dark:01 00275106 1 0 -darkling_beetle%1:05:00:: 02181235 1 0 -darkling_groung_beetle%1:05:00:: 02181235 1 0 -darkly%4:02:00:: 00206144 1 1 -darkly%4:02:01:: 00206271 2 0 -darkness%1:07:01:: 04978216 6 0 -darkness%1:07:03:: 04979870 5 0 -darkness%1:09:00:: 05988498 4 1 -darkness%1:15:00:: 08646306 2 6 -darkness%1:26:00:: 13983515 1 20 -darkness%1:26:01:: 14563564 3 2 -darkroom%1:06:00:: 03162460 1 0 -darky%1:18:00:: 09637684 1 0 -darling%1:17:00:: 09263479 2 0 -darling%1:18:00:: 09991867 1 3 -darling%5:00:00:loved:00 01462324 1 1 -darling_pea%1:20:00:: 11751765 1 0 -darling_river%1:17:00:: 09263479 1 0 -darlingtonia%1:20:00:: 12780852 1 0 -darlingtonia_californica%1:20:00:: 12781007 1 0 -darmera%1:20:00:: 12797213 1 0 -darmera_peltata%1:20:00:: 12797368 1 0 -darmstadtium%1:27:00:: 14636392 1 0 -darn%1:06:00:: 03745285 2 0 -darn%1:07:00:: 05140793 1 0 -darn%2:35:00:: 01330676 1 1 -darned%5:00:02:cursed:00 00669942 1 6 -darnel%1:20:00:: 12125183 1 0 -darner%1:18:00:: 09992138 1 0 -darning%1:04:00:: 00267217 1 0 -darning_needle%1:05:00:: 02268443 2 0 -darning_needle%1:06:00:: 03162556 1 0 -darpa%1:14:00:: 08132046 1 0 -darrow%1:18:00:: 10923146 1 0 -darryl_francis_zanuck%1:18:00:: 11404971 1 0 -darryl_zanuck%1:18:00:: 11404971 1 0 -darsana%1:09:00:: 06238036 1 0 -dart%1:04:00:: 00334356 3 0 -dart%1:06:00:: 03162714 2 0 -dart%1:06:01:: 03162818 1 0 -dart%2:38:00:: 02061495 2 1 -dart%2:38:01:: 01899891 1 3 -dart%2:38:02:: 01899708 3 1 -dart_board%1:06:00:: 03162940 1 0 -dart_player%1:18:00:: 09992238 1 0 -dart_thrower%1:06:00:: 04430158 1 0 -dartboard%1:06:00:: 03162940 1 0 -darter%1:05:00:: 01314910 2 0 -darter%1:05:01:: 02054502 1 0 -dartmouth%1:06:00:: 03163081 1 0 -dartmouth_college%1:06:00:: 03163081 1 0 -darts%1:04:00:: 00504209 1 0 -darvon%1:06:00:: 04012852 1 0 -darwin%1:15:00:: 08835058 2 0 -darwin%1:18:00:: 10923313 1 1 -darwin_tulip%1:20:00:: 12454949 1 0 -darwinian%1:18:00:: 09992331 1 0 -darwinian%3:01:00:: 03013550 1 0 -darwinism%1:09:00:: 06110091 1 0 -daryacheh-ye_orumiyeh%1:17:00:: 09333706 1 0 -das%1:05:00:: 02372584 1 0 -das_kapital%1:10:00:: 07282929 1 0 -dash%1:04:01:: 00294452 2 1 -dash%1:04:02:: 00555983 6 0 -dash%1:07:00:: 04812871 1 1 -dash%1:10:00:: 06805962 5 0 -dash%1:10:01:: 06843148 4 0 -dash%1:11:00:: 07469043 3 0 -dash%2:30:00:: 00335923 2 2 -dash%2:30:01:: 00184377 6 0 -dash%2:35:02:: 01507407 3 1 -dash%2:37:00:: 01785748 5 0 -dash%2:38:00:: 02061495 1 7 -dash%2:41:00:: 02558703 4 0 -dash-pot%1:06:00:: 03163488 1 0 -dash_down%2:32:00:: 01020594 1 0 -dash_off%2:32:00:: 01020594 2 0 -dash_off%2:36:00:: 01700655 1 0 -dashboard%1:06:00:: 03163222 2 0 -dashboard%1:06:01:: 04281375 1 0 -dashed%5:00:00:broken:02 00290483 1 0 -dasheen%1:13:00:: 07736813 3 0 -dasheen%1:20:01:: 11786539 2 0 -dasheen%1:20:02:: 11786843 1 0 -dashiell_hammett%1:18:00:: 11026816 1 0 -dashiki%1:06:00:: 03163381 1 0 -dashing%5:00:00:fashionable:00 00971933 2 0 -dashing%5:00:00:spirited:00 02279622 1 1 -dashing_hopes%1:04:00:: 00068755 1 0 -dashingly%4:02:00:: 00304672 1 0 -dasht-e-kavir%1:15:00:: 09169038 1 0 -dasht-e-lut%1:15:00:: 09169188 1 0 -dassie%1:05:00:: 02372584 1 0 -dastard%1:18:00:: 09992429 1 0 -dastard%5:00:00:cowardly:00 00265765 1 0 -dastardliness%1:07:00:: 04861221 1 0 -dastardly%5:00:00:cowardly:00 00265765 1 0 -dasyatidae%1:05:00:: 01497878 1 0 -dasyatis%1:05:00:: 01498268 1 0 -dasyatis_centroura%1:05:00:: 01498406 1 0 -dasymeter%1:06:00:: 03163649 1 0 -dasypodidae%1:05:00:: 02454119 1 0 -dasyprocta%1:05:00:: 02365848 1 0 -dasyprocta_aguti%1:05:00:: 02366002 1 0 -dasyproctidae%1:05:00:: 02365672 1 0 -dasypus%1:05:00:: 02454657 1 0 -dasypus_novemcinctus%1:05:00:: 02454794 1 0 -dasyure%1:05:00:: 01883920 1 0 -dasyurid%1:05:00:: 01883513 1 0 -dasyurid_marsupial%1:05:00:: 01883513 1 0 -dasyuridae%1:05:00:: 01883212 1 0 -dasyurus%1:05:00:: 01883762 1 0 -dasyurus_quoll%1:05:00:: 01884104 1 0 -dasyurus_viverrinus%1:05:00:: 01884203 1 0 -dat%1:06:00:: 03195959 1 0 -data%1:14:00:: 08462320 1 76 -data-based%5:00:00:empirical:00 00859949 1 0 -data-storage_medium%1:10:00:: 06263762 1 0 -data_communication%1:10:00:: 06278830 1 0 -data_conversion%1:09:00:: 05803095 1 0 -data_converter%1:06:00:: 03163798 1 0 -data_encryption%1:04:00:: 00616807 1 0 -data_file%1:10:00:: 06508816 1 0 -data_format%1:10:00:: 06636806 1 0 -data_formatting%1:10:00:: 06636806 1 0 -data_hierarchy%1:14:00:: 08378180 1 0 -data_input_device%1:06:00:: 03163973 1 0 -data_link%1:06:00:: 03674270 1 0 -data_mining%1:22:00:: 13455234 1 0 -data_multiplexer%1:06:00:: 03164192 1 0 -data_point%1:09:00:: 05816622 1 0 -data_processing%1:22:00:: 13455487 1 1 -data_processor%1:06:00:: 03082979 1 0 -data_rate%1:28:00:: 15276959 1 0 -data_structure%1:09:00:: 05728493 1 0 -data_system%1:06:00:: 03164344 1 0 -data_track%1:06:00:: 04464211 1 0 -database%1:10:00:: 06637824 1 0 -database_management%1:04:00:: 01133933 1 0 -database_management_system%1:10:00:: 06588785 1 0 -datable%3:00:00:: 00681409 1 0 -date%1:13:00:: 07765073 8 0 -date%1:14:00:: 08385009 3 3 -date%1:18:00:: 09992538 2 3 -date%1:28:00:: 15159583 1 23 -date%1:28:02:: 15120223 5 1 -date%1:28:03:: 15160579 6 0 -date%1:28:04:: 15179888 4 1 -date%1:28:05:: 15159819 7 0 -date%2:31:00:: 00619183 3 1 -date%2:31:01:: 00734927 5 0 -date%2:31:02:: 00735389 2 1 -date%2:41:00:: 02485844 1 1 -date%2:41:01:: 02486232 4 0 -date-mark%2:31:00:: 00735224 1 0 -date-nut_bread%1:13:00:: 07685118 1 0 -date_back%2:42:00:: 02723951 1 5 -date_bar%1:13:00:: 07638039 1 0 -date_bread%1:13:00:: 07685031 1 0 -date_from%2:42:00:: 02723951 1 3 -date_line%1:15:00:: 08599792 1 0 -date_of_reference%1:28:00:: 15296687 1 0 -date_palm%1:20:00:: 12593994 1 0 -date_plum%1:20:00:: 12771890 1 0 -date_rape%1:04:00:: 00773673 1 0 -date_stamp%2:31:00:: 00735389 1 0 -dateable%3:00:00:: 00681409 1 0 -dated%5:00:00:unfashionable:00 00974404 1 1 -dateless%5:00:00:infinite:00 01007947 1 0 -dateless%5:00:00:unaltered:00 00353431 4 0 -dateless%5:00:01:undatable:00 00681673 3 0 -dateless%5:00:02:undatable:00 00681777 2 0 -dateline%1:10:00:: 06349030 2 0 -dateline%1:15:00:: 08599792 1 0 -dateline%2:31:00:: 00735224 1 0 -datemark%2:31:00:: 00735224 1 0 -dating%1:04:00:: 00992331 1 0 -dative%1:10:00:: 06311723 1 0 -dative_bond%1:19:00:: 11437957 1 0 -dative_case%1:10:00:: 06311723 1 0 -datril%1:06:00:: 02674482 1 0 -datum%1:09:00:: 05816622 1 5 -datura%1:20:00:: 12903250 1 0 -datura_arborea%1:20:00:: 12899537 1 0 -datura_sanguinea%1:20:00:: 12899971 1 0 -datura_stramonium%1:20:00:: 12903503 1 0 -datura_suaveolens%1:20:00:: 12899752 1 0 -daub%1:06:00:: 03164532 3 0 -daub%1:07:00:: 04694441 2 0 -daub%1:27:00:: 14828683 1 0 -daub%2:35:00:: 01233387 3 0 -daub%2:35:01:: 01360899 1 0 -daub%2:35:02:: 01313249 2 0 -daubentonia%1:05:00:: 02497983 1 0 -daubentonia_madagascariensis%1:05:00:: 02498153 1 0 -daubentoniidae%1:05:00:: 02497832 1 0 -dauber%1:18:00:: 09992746 1 0 -daubing%1:04:00:: 00718815 1 0 -daucus%1:20:00:: 12936999 1 0 -daucus_carota%1:20:00:: 12937130 1 0 -daucus_carota_sativa%1:20:00:: 12937388 1 0 -daugavpils%1:15:00:: 09013724 1 0 -daughter%1:18:00:: 09992837 1 23 -daughter-in-law%1:18:00:: 09993040 1 0 -daughter_cell%1:20:00:: 11688552 1 0 -daughterly%5:00:00:filial:00 01722846 1 0 -daumier%1:18:00:: 10923521 1 0 -daunt%2:37:00:: 01785748 1 1 -daunted%5:00:00:discomposed:00 00532147 1 0 -daunting%5:00:00:discouraging:00 00867520 1 0 -dauntingly%4:02:00:: 00297943 1 0 -dauntless%5:00:00:bold:00 00250119 1 1 -dauntlessly%4:02:00:: 00199687 1 0 -dauntlessness%1:07:00:: 04858089 1 0 -dauphin%1:18:00:: 09993122 1 0 -davalia_bullata%1:20:00:: 13188767 1 0 -davalia_bullata_mariesii%1:20:00:: 13188767 1 0 -davallia%1:20:00:: 13188096 1 0 -davallia_canariensis%1:20:00:: 13188462 1 0 -davallia_mariesii%1:20:00:: 13188767 1 0 -davallia_pyxidata%1:20:00:: 13188619 1 0 -davalliaceae%1:20:00:: 13187604 1 0 -davenport%1:06:00:: 03164605 3 0 -davenport%1:06:01:: 03164722 2 0 -davenport%1:15:00:: 09086635 1 0 -david%1:18:00:: 10923700 3 0 -david%1:18:01:: 10924072 2 0 -david%1:18:02:: 10924231 1 0 -david_alfaro_siqueiros%1:18:00:: 11302962 1 0 -david_barnard_steinman%1:18:00:: 11315379 1 0 -david_ben_gurion%1:18:00:: 10844805 1 0 -david_bruce%1:18:00:: 10867708 1 0 -david_bushnell%1:18:00:: 10876160 1 0 -david_crockett%1:18:00:: 10915566 1 0 -david_garrick%1:18:00:: 10991415 1 0 -david_glasgow_farragut%1:18:00:: 10966982 1 0 -david_grun%1:18:00:: 10844805 1 0 -david_hartley%1:18:00:: 11033003 1 0 -david_herbert_lawrence%1:18:00:: 11120146 1 0 -david_hilbert%1:18:00:: 11049835 1 0 -david_hubel%1:18:00:: 11063944 1 0 -david_hume%1:18:00:: 11066425 1 0 -david_john_moore_cornwell%1:18:00:: 11122825 1 0 -david_lewelyn_wark_griffith%1:18:00:: 11016374 1 0 -david_livingstone%1:18:00:: 11135797 1 0 -david_low%1:18:00:: 11142155 1 0 -david_mamet%1:18:00:: 11153094 1 0 -david_o._selznick%1:18:00:: 11292207 1 0 -david_oliver_selznick%1:18:00:: 11292207 1 0 -david_ricardo%1:18:00:: 11259457 1 0 -david_riesman%1:18:00:: 11262340 1 0 -david_riesman_jr.%1:18:00:: 11262340 1 0 -david_rittenhouse%1:18:00:: 11263337 1 0 -david_roland_smith%1:18:00:: 11306175 1 0 -david_sarnoff%1:18:00:: 11281995 1 0 -david_siqueiros%1:18:00:: 11302962 1 0 -david_smith%1:18:00:: 11306175 1 0 -davidson's_penstemon%1:20:00:: 12885956 1 0 -daviesia%1:20:00:: 12524944 1 0 -davis%1:18:00:: 10924347 6 0 -davis%1:18:01:: 10924452 5 0 -davis%1:18:02:: 10924649 4 0 -davis%1:18:03:: 10924828 3 0 -davis%1:18:04:: 10924987 2 0 -davis%1:18:05:: 10925402 1 0 -davis'_birthday%1:28:00:: 15189684 1 0 -davis_cup%1:06:00:: 03164809 1 0 -davit%1:06:00:: 03164929 1 0 -davy%1:18:00:: 10925132 1 0 -davy's_gray%1:27:00:: 14923060 1 1 -davy's_grey%1:27:00:: 14923060 1 0 -davy_crockett%1:18:00:: 10915566 1 0 -davy_jones%1:17:00:: 09376526 1 0 -davy_jones's_locker%1:17:00:: 09376526 1 0 -davy_lamp%1:06:00:: 04126852 1 0 -davys%1:18:00:: 10925402 1 0 -daw%1:05:00:: 01579578 1 0 -dawah%1:04:00:: 00731136 1 0 -dawdle%2:38:00:: 02058590 1 0 -dawdle%2:38:01:: 01997862 3 0 -dawdle%2:38:04:: 02011685 2 0 -dawdler%1:18:00:: 09993252 1 0 -dawdling%1:04:00:: 01067819 1 0 -dawes%1:18:00:: 10925584 1 0 -dawn%1:11:01:: 07326108 2 1 -dawn%1:28:00:: 15168790 1 11 -dawn%1:28:01:: 15267945 3 0 -dawn%2:30:00:: 00528836 3 0 -dawn%2:31:13:: 00591755 1 1 -dawn%2:42:01:: 02609614 2 0 -dawn_horse%1:05:00:: 02375862 1 0 -dawn_redwood%1:20:00:: 11640132 1 0 -dawning%1:28:00:: 15168790 1 1 -dawson%1:15:00:: 08830256 1 0 -dawson's_encephalitis%1:26:00:: 14344189 1 0 -dawson_river_salmon%1:05:00:: 02545153 1 0 -day%1:18:00:: 10925772 10 0 -day%1:26:00:: 14484516 9 0 -day%1:28:00:: 15155220 1 169 -day%1:28:01:: 15157225 3 54 -day%1:28:02:: 15164957 4 38 -day%1:28:03:: 15123115 2 70 -day%1:28:04:: 15136453 5 11 -day%1:28:05:: 15249236 6 7 -day%1:28:06:: 15208333 8 0 -day%1:28:07:: 15208540 7 0 -day-after-day%5:00:00:periodic:00 01968165 1 0 -day-and-night%5:00:00:continuous:01 00595147 1 0 -day-by-day%5:00:00:periodic:00 01968165 1 0 -day-old%5:00:00:stale:00 01069607 1 0 -day-to-day%5:00:00:periodic:00 01968165 1 0 -day_after_day%4:02:00:: 00177926 1 1 -day_bed%1:06:00:: 04344873 1 0 -day_blindness%1:26:00:: 14554345 1 0 -day_boarder%1:18:00:: 09993651 1 0 -day_book%1:10:00:: 06502858 1 0 -day_by_day%4:02:00:: 00177818 1 3 -day_camp%1:06:00:: 03165343 1 1 -day_care%1:04:00:: 01210439 1 0 -day_care_center%1:06:00:: 03165466 1 0 -day_game%1:04:00:: 00456465 1 0 -day_in_and_day_out%4:02:00:: 00157000 1 0 -day_in_day_out%4:02:00:: 00177926 1 0 -day_jessamine%1:20:00:: 12902466 1 0 -day_laborer%1:18:00:: 09994400 1 0 -day_labourer%1:18:00:: 09994400 1 0 -day_lily%1:20:00:: 12456845 2 0 -day_lily%1:20:02:: 12457771 1 0 -day_nursery%1:06:00:: 03165466 1 0 -day_of_atonement%1:28:00:: 15185471 1 0 -day_of_judgement%1:28:00:: 15171307 1 0 -day_of_judgment%1:28:00:: 15171307 1 0 -day_of_reckoning%1:11:00:: 07334206 2 0 -day_of_reckoning%1:28:00:: 15171307 1 0 -day_of_remembrance%1:28:00:: 15249799 1 0 -day_of_rest%1:28:00:: 15137047 1 0 -day_of_the_month%1:28:00:: 15159583 1 0 -day_of_the_week%1:28:00:: 15163005 1 0 -day_off%1:28:00:: 15137556 1 2 -day_return%1:10:00:: 06520092 1 0 -day_school%1:06:00:: 03165616 3 0 -day_school%1:14:00:: 08411585 1 5 -day_school%1:14:01:: 08411849 2 0 -day_shift%1:14:00:: 08218592 2 0 -day_shift%1:28:00:: 15292722 1 0 -day_watch%1:14:00:: 08218592 1 3 -dayan%1:18:00:: 10925939 1 0 -daybed%1:06:00:: 03002711 2 0 -daybed%1:06:01:: 03165096 1 1 -daybook%1:06:00:: 03165211 2 0 -daybook%1:21:00:: 13405166 1 0 -dayboy%1:18:00:: 09993822 1 0 -daybreak%1:28:00:: 15168790 1 1 -daycare%1:04:00:: 01210439 1 0 -daydream%1:09:00:: 05769471 1 0 -daydream%2:36:00:: 01637633 1 1 -daydream%2:41:00:: 02418205 2 0 -daydreamer%1:18:00:: 09993901 1 0 -daydreaming%1:09:00:: 05769471 1 0 -dayflower%1:20:02:: 12606545 1 0 -dayfly%1:05:00:: 02262449 1 0 -daygirl%1:18:00:: 09994319 1 0 -daylight%1:19:00:: 11444038 2 2 -daylight%1:28:00:: 15164957 1 3 -daylight-saving_time%1:28:00:: 15117246 1 0 -daylight-savings_time%1:28:00:: 15117246 1 0 -daylight_saving%1:28:00:: 15117246 1 0 -daylight_savings%1:28:00:: 15117246 1 0 -daylight_vision%1:09:00:: 05657166 1 0 -daylily%1:20:00:: 12456845 1 0 -daylong%4:02:00:: 00304787 1 0 -daylong%5:00:00:long:02 01439072 1 0 -daypro%1:06:00:: 03867515 1 0 -days%1:28:00:: 15141059 1 1 -dayspring%1:28:00:: 15168790 1 0 -daystar%1:17:00:: 09359471 1 0 -daytime%1:28:00:: 15164957 1 1 -dayton%1:15:00:: 09131205 1 0 -dayton_ax%1:06:00:: 03077442 1 0 -dayton_axe%1:06:00:: 03077442 1 0 -daytona_beach%1:15:00:: 09072611 1 0 -daze%1:09:00:: 05684561 2 0 -daze%1:12:00:: 07510625 1 0 -daze%2:39:00:: 02115430 2 0 -daze%2:39:01:: 02162434 1 0 -dazed%5:00:00:confused:00 00436645 1 3 -dazed%5:00:00:lethargic:00 00875962 2 2 -dazedly%4:02:00:: 00298062 1 0 -dazzle%1:07:00:: 04952821 1 0 -dazzle%2:31:00:: 00725046 2 0 -dazzle%2:39:00:: 02162434 1 3 -dazzled%5:00:00:blind:00 02159612 1 0 -dazzled%5:00:00:confused:00 00436920 2 0 -dazzling%5:00:00:bright:00 00280844 2 0 -dazzling%5:00:01:impressive:00 01283787 1 2 -dazzlingly%4:02:00:: 00082039 1 0 -db%1:23:00:: 13713633 2 0 -db%1:27:00:: 14636523 1 0 -dba%1:10:00:: 06334512 1 0 -dbms%1:10:00:: 06588785 1 0 -dc%1:15:00:: 09070487 1 7 -dc%1:19:00:: 11447153 2 1 -dccp%1:14:00:: 08302257 1 0 -dci%1:18:00:: 10015607 1 0 -dd%1:10:00:: 06703114 1 0 -ddc%1:06:00:: 03190763 1 0 -ddi%1:06:00:: 03190897 1 0 -dds%1:10:00:: 06703002 1 0 -ddt%1:27:00:: 14599938 1 0 -de%1:15:00:: 09069862 1 0 -de-access%2:40:00:: 02247749 1 0 -de-aerate%2:40:00:: 02363972 1 0 -de-emphasise%2:30:00:: 00514730 1 0 -de-emphasize%2:30:00:: 00514730 1 0 -de-energise%2:29:00:: 00023244 1 0 -de-energize%2:29:00:: 00023244 1 0 -de-escalate%2:30:00:: 00290740 2 0 -de-escalate%2:30:01:: 00290983 1 0 -de-escalation%1:04:00:: 00355252 1 0 -de-ice%2:30:00:: 00376807 1 0 -de-iodinase%1:27:00:: 14829073 1 1 -de-iodinate%2:30:00:: 00521033 1 2 -de-iodinating%3:00:00:: 01232105 1 2 -de-iodination%1:22:00:: 13460863 1 1 -de-ionate%2:30:00:: 00520760 1 0 -de-nazification%1:22:00:: 13461722 1 0 -de-stalinisation%1:22:00:: 13463656 1 0 -de-stalinization%1:22:00:: 13463656 1 0 -de_bakey%1:18:00:: 10926238 1 0 -de_broglie%1:18:00:: 10865329 1 0 -de_facto%3:00:00:: 00693743 1 0 -de_facto%4:02:00:: 00060197 1 0 -de_facto_segregation%1:14:00:: 08379630 1 0 -de_forest%1:18:00:: 10927424 1 0 -de_gaulle%1:18:00:: 10927824 1 0 -de_jure%3:00:00:: 00693961 1 0 -de_jure%4:02:00:: 00251820 1 0 -de_jure_segregation%1:14:00:: 08379782 1 0 -de_kooning%1:18:00:: 10928299 1 0 -de_l'orme%1:18:00:: 10929437 1 0 -de_la_mare%1:18:00:: 10928645 1 0 -de_luxe%5:00:00:elegant:00 00850053 1 0 -de_mille%1:18:00:: 10929886 1 0 -de_niro%1:18:00:: 10930913 1 0 -de_novo%4:02:00:: 00113009 1 0 -de_quincey%1:18:00:: 10931167 1 0 -de_rigueur%5:00:00:obligatory:00 00848679 1 0 -de_sade%1:18:00:: 11278120 1 0 -de_saussure%1:18:00:: 10931634 1 0 -de_sica%1:18:00:: 10932140 1 0 -de_spinoza%1:18:00:: 11311450 1 0 -de_valera%1:18:00:: 10932244 1 0 -de_vries%1:18:00:: 10932495 1 0 -dea%1:14:00:: 08141374 1 0 -deaccession%2:40:00:: 02243967 1 0 -deacon%1:18:00:: 09994520 2 0 -deacon%1:18:01:: 09994673 1 4 -deaconess%1:18:00:: 09994808 1 0 -deactivate%2:30:00:: 00191517 2 0 -deactivate%2:30:01:: 00191728 1 0 -deactivation%1:04:00:: 00233614 2 0 -deactivation%1:04:01:: 00233795 1 0 -dead%1:14:00:: 07945657 1 9 -dead%1:28:00:: 15123362 2 1 -dead%3:00:01:: 00095280 1 72 -dead%3:00:02:: 00099874 2 4 -dead%4:02:00:: 00008997 2 0 -dead%4:02:01:: 00061528 1 0 -dead%5:00:00:complete:00 00522349 15 0 -dead%5:00:00:extinct:01 00929443 11 0 -dead%5:00:00:extinct:02 00041202 5 1 -dead%5:00:00:inactive:03 00036879 17 0 -dead%5:00:00:inelastic:00 00845737 12 0 -dead%5:00:00:inoperative:00 00833878 13 0 -dead%5:00:00:insensitive:01 02105603 7 0 -dead%5:00:00:insensitive:02 02107386 6 0 -dead%5:00:00:noncurrent:00 00668919 14 0 -dead%5:00:00:precise:00 01838151 4 1 -dead%5:00:00:standing:02 01241248 10 0 -dead%5:00:00:tired:00 02432154 3 2 -dead%5:00:00:uncharged:00 00359260 16 0 -dead%5:00:00:unprofitable:00 01872265 9 0 -dead%5:00:00:unreverberant:00 02011445 8 0 -dead-air_space%1:06:00:: 03165718 1 0 -dead-end%5:00:00:inactive:02 00037985 1 0 -dead-end_street%1:06:00:: 02851540 1 0 -dead-man's-fingers%1:20:00:: 12966945 1 0 -dead-man's_float%1:04:00:: 00443375 1 0 -dead-men's-fingers%1:20:00:: 12966945 1 0 -dead-on%5:00:00:accurate:00 00022437 1 0 -dead_ahead%4:02:00:: 00157114 1 0 -dead_air%1:28:00:: 15271901 1 0 -dead_axle%1:06:00:: 03165823 1 0 -dead_body%1:08:00:: 05217859 1 3 -dead_center%1:07:00:: 05077863 1 0 -dead_centre%1:07:00:: 05077863 1 0 -dead_drop%1:15:00:: 08583994 1 0 -dead_duck%1:26:00:: 14479086 1 0 -dead_end%1:06:00:: 03146449 1 1 -dead_end%1:26:00:: 14015361 2 0 -dead_hand%1:07:00:: 05194435 2 0 -dead_hand%1:21:00:: 13250244 1 0 -dead_hand_of_the_past%1:07:00:: 05194435 1 0 -dead_heat%1:11:00:: 07354009 1 0 -dead_language%1:10:00:: 06283647 1 0 -dead_letter%1:10:00:: 06626743 2 0 -dead_letter%1:26:00:: 14006821 1 1 -dead_load%1:06:00:: 03166360 1 0 -dead_mail%1:10:00:: 06626743 1 0 -dead_march%1:10:00:: 07059028 1 0 -dead_metaphor%1:10:00:: 07107083 1 0 -dead_nettle%1:20:01:: 12849061 2 0 -dead_nettle%1:20:02:: 12868880 1 0 -dead_nettle%1:20:03:: 12395068 4 0 -dead_nettle%1:20:04:: 12847008 3 0 -dead_on_target%5:00:00:accurate:00 00023120 1 0 -dead_person%1:18:00:: 09994943 1 1 -dead_reckoning%1:04:00:: 00817394 2 0 -dead_reckoning%1:09:00:: 05803938 1 0 -dead_ringer%1:18:00:: 10531557 1 0 -dead_room%1:06:00:: 03785499 1 1 -dead_sea%1:17:00:: 09263619 1 0 -dead_sea_scrolls%1:10:00:: 06407915 1 0 -dead_set%5:00:00:resolute:00 01990172 1 0 -dead_soul%1:18:00:: 09994943 1 0 -dead_weight%1:07:00:: 05027446 2 0 -dead_weight%1:09:00:: 05833169 1 0 -deadbeat%1:18:00:: 09999532 1 0 -deadbeat_dad%1:18:00:: 09996149 1 0 -deadbolt%1:06:00:: 02865931 1 0 -deaden%2:30:00:: 00193328 5 0 -deaden%2:30:01:: 00192051 6 0 -deaden%2:30:02:: 00438954 4 0 -deaden%2:30:03:: 00439087 3 0 -deaden%2:30:04:: 00116888 7 0 -deaden%2:30:06:: 00390560 1 1 -deaden%2:35:03:: 01608122 2 0 -deadened%5:00:00:dull:04 00804106 2 1 -deadened%5:00:00:insensitive:01 02105603 1 1 -deadening%1:04:00:: 00272878 1 0 -deadening%5:00:00:uninteresting:00 01345307 1 0 -deadeye%1:06:00:: 03165955 2 0 -deadeye%1:18:00:: 09994878 1 0 -deadhead%1:06:00:: 03166120 2 0 -deadhead%1:18:00:: 09996304 1 1 -deadlight%1:06:00:: 03166213 1 0 -deadline%1:28:00:: 15180082 1 2 -deadliness%1:07:00:: 04791081 1 0 -deadlock%1:26:00:: 14015361 1 2 -deadlocked%5:00:00:obstructed:00 01621424 1 0 -deadly%4:02:00:: 00046639 2 0 -deadly%4:02:02:: 00304898 1 0 -deadly%5:00:00:noxious:00 01611329 5 0 -deadly%5:00:00:toxic:00 02449952 3 0 -deadly%5:00:00:unpardonable:00 01721691 4 0 -deadly%5:00:00:virulent:00 00045888 6 0 -deadly%5:00:01:fatal:00 00993667 1 6 -deadly%5:00:02:fatal:00 00993885 2 1 -deadly_nightshade%1:20:01:: 12894607 2 0 -deadly_nightshade%1:20:02:: 12898342 1 0 -deadly_sin%1:04:00:: 00757730 1 1 -deadness%1:07:00:: 05006519 3 0 -deadness%1:07:01:: 05023404 2 0 -deadness%1:07:02:: 05213201 1 0 -deadpan%4:02:00:: 00157210 1 0 -deadpan%5:00:00:uncommunicative:00 00501313 1 0 -deadwood%1:07:00:: 05120564 2 0 -deadwood%1:20:00:: 13163553 1 0 -deae_cellulose%1:27:00:: 14794304 1 12 -deaerate%2:40:00:: 02363972 1 0 -deaf%1:14:00:: 07945949 1 2 -deaf%2:39:00:: 02189940 1 0 -deaf%3:00:00:: 00681930 1 7 -deaf%5:00:01:heedless:00 01194328 2 0 -deaf-aid%1:06:00:: 03506727 1 0 -deaf-and-dumb%5:00:00:deaf:00 00682168 1 0 -deaf-and-dumb_person%1:18:00:: 10342367 1 0 -deaf-mute%1:18:00:: 10342367 1 0 -deaf-mute%5:00:00:deaf:00 00682168 1 0 -deaf-muteness%1:26:00:: 14551822 1 0 -deaf-mutism%1:26:00:: 14551822 1 0 -deaf_as_a_post%5:00:00:deaf:00 00682521 1 0 -deaf_person%1:18:00:: 09996481 1 0 -deafen%2:30:01:: 00316390 3 0 -deafen%2:39:00:: 02189940 2 0 -deafen%2:39:01:: 02190077 1 0 -deafened%5:00:00:deaf:00 00682329 1 0 -deafening%5:00:00:loud:00 01453467 1 1 -deafness%1:26:00:: 14550987 1 0 -deal%1:04:00:: 01085337 8 0 -deal%1:04:01:: 01084637 9 0 -deal%1:04:02:: 01110274 1 8 -deal%1:10:00:: 06771159 2 2 -deal%1:11:00:: 07293180 7 0 -deal%1:14:00:: 07956887 6 0 -deal%1:23:00:: 13774404 3 1 -deal%1:27:00:: 15102622 4 0 -deal%1:27:01:: 15100257 5 0 -deal%2:31:10:: 00734054 2 15 -deal%2:32:08:: 01033527 1 34 -deal%2:40:00:: 02244956 6 4 -deal%2:40:01:: 02294436 5 5 -deal%2:40:02:: 02246456 9 2 -deal%2:40:06:: 02246686 12 0 -deal%2:40:07:: 02294179 11 0 -deal%2:40:11:: 02245993 13 0 -deal%2:41:00:: 02587532 4 9 -deal%2:41:02:: 02445509 10 0 -deal%2:41:04:: 02377764 8 3 -deal%2:41:09:: 02370987 3 14 -deal%2:41:13:: 02436349 7 3 -deal_out%2:40:00:: 02294436 1 0 -dealer%1:14:00:: 08063446 2 2 -dealer%1:18:00:: 10721470 3 0 -dealer%1:18:01:: 09996636 5 0 -dealer%1:18:02:: 10720453 1 8 -dealer%1:18:03:: 10474446 4 0 -dealership%1:14:00:: 08060193 1 0 -dealfish%1:05:00:: 02546627 1 0 -dealignment%1:22:00:: 13455906 1 0 -dealing%1:04:01:: 01135372 1 1 -dealing%1:04:02:: 01106808 2 0 -dealings%1:04:00:: 01106808 3 0 -dealings%1:04:02:: 00040804 1 1 -dealings%1:24:00:: 13780449 2 0 -dealt_out%5:00:00:distributed:00 00540236 1 0 -deaminate%2:30:00:: 00573247 1 0 -deamination%1:22:00:: 13456071 1 0 -deaminization%1:22:00:: 13456071 1 0 -deaminize%2:30:00:: 00573247 1 0 -dean%1:18:00:: 09996784 1 1 -dean%1:18:01:: 09996920 4 0 -dean%1:18:02:: 10926066 2 0 -dean%1:18:03:: 09997068 3 0 -dean_acheson%1:18:00:: 10807858 1 0 -dean_gooderham_acheson%1:18:00:: 10807858 1 0 -dean_martin%1:18:00:: 11159698 1 0 -dean_swift%1:18:00:: 11326869 1 0 -deanery%1:04:00:: 00591725 2 0 -deanery%1:06:00:: 03166514 1 0 -deanship%1:04:00:: 00591725 1 0 -dear%1:18:00:: 09849598 1 4 -dear%1:18:01:: 10243872 2 0 -dear%4:02:00:: 00077619 2 0 -dear%4:02:01:: 00077747 1 0 -dear%5:00:00:close:02 00452883 2 1 -dear%5:00:00:expensive:00 00933599 4 0 -dear%5:00:00:loved:00 01462324 1 8 -dear%5:00:00:sincere:00 02179968 3 0 -dearest%1:18:00:: 09849598 1 0 -dearie%1:18:00:: 09991867 1 0 -dearly%4:02:00:: 00077619 2 1 -dearly%4:02:01:: 00077747 3 0 -dearly%4:02:02:: 00077912 1 2 -dearly-won%5:00:00:expensive:00 00933941 1 0 -dearness%1:07:00:: 05146272 1 0 -dearth%1:07:00:: 05117140 2 0 -dearth%1:26:00:: 14449865 1 0 -deary%1:18:00:: 09991867 1 0 -death%1:04:00:: 00219575 8 0 -death%1:11:00:: 07355491 1 45 -death%1:18:00:: 09488259 6 3 -death%1:19:00:: 11444117 2 39 -death%1:26:00:: 13962498 3 24 -death%1:26:01:: 14562960 7 1 -death%1:28:00:: 15143477 4 14 -death%1:28:01:: 15143276 5 4 -death's-head_moth%1:05:00:: 02299846 1 0 -death's_head%1:10:00:: 06808271 1 0 -death-roll%1:10:00:: 06495220 1 0 -death_adder%1:05:00:: 01750167 1 0 -death_angel%1:20:00:: 13003254 1 0 -death_bell%1:06:00:: 03166951 1 0 -death_benefit%1:21:00:: 13297254 1 0 -death_camas%1:20:00:: 12466727 1 0 -death_camp%1:06:00:: 03166685 1 0 -death_cap%1:20:00:: 13003254 1 0 -death_chair%1:06:00:: 03271030 1 0 -death_chamber%1:06:00:: 03422288 1 0 -death_cup%1:20:00:: 13003254 1 0 -death_duty%1:21:00:: 13313322 1 0 -death_house%1:06:00:: 03166809 1 0 -death_instinct%1:16:00:: 09180967 1 0 -death_knell%1:06:00:: 03166951 2 0 -death_knell%1:11:00:: 07286999 1 0 -death_mask%1:06:00:: 03167053 1 0 -death_penalty%1:04:00:: 01163779 1 0 -death_rate%1:28:00:: 15277118 1 0 -death_row%1:06:00:: 03166809 1 0 -death_seat%1:06:00:: 03167153 1 0 -death_squad%1:14:00:: 08209187 1 0 -death_tax%1:21:00:: 13313322 1 0 -death_toll%1:07:00:: 05164353 1 0 -death_valley%1:15:00:: 09169303 1 0 -death_warrant%1:10:00:: 06547992 1 0 -death_wish%1:16:00:: 09180967 1 0 -deathbed%1:06:00:: 03166600 2 0 -deathbed%1:28:00:: 15154376 1 2 -deathblow%1:04:00:: 00219463 1 0 -deathless%5:00:00:immortal:00 01558194 1 0 -deathlike%5:00:00:dead:01 00097022 1 2 -deathly%4:02:00:: 00254527 1 0 -deathly%5:00:00:dead:01 00097022 1 1 -deathly%5:00:00:fatal:00 00993667 2 0 -deathrate%1:28:00:: 15277118 1 0 -deathtrap%1:06:00:: 03167337 1 0 -deathwatch%1:05:01:: 02177775 2 0 -deathwatch%1:05:02:: 02261419 1 0 -deathwatch_beetle%1:05:00:: 02177775 1 0 -deb%1:18:00:: 09997834 1 0 -debacle%1:11:00:: 07476623 3 0 -debacle%1:11:02:: 07365432 1 1 -debacle%1:19:00:: 11454953 2 0 -debar%2:32:00:: 00796588 3 0 -debar%2:41:00:: 02453321 2 0 -debar%2:41:05:: 02502037 1 0 -debark%2:38:00:: 01979241 1 0 -debarkation%1:04:00:: 00058002 1 0 -debarment%1:04:00:: 01077881 2 0 -debarment%1:26:00:: 14427991 1 0 -debase%2:30:00:: 00493517 2 0 -debase%2:30:01:: 00487748 3 0 -debase%2:41:00:: 02579447 1 0 -debased%5:00:00:corrupt:00 00621100 3 0 -debased%5:00:00:impure:02 01908539 1 0 -debased%5:00:00:low:02 01212732 2 0 -debasement%1:04:00:: 00271263 2 0 -debasement%1:26:00:: 14487443 1 0 -debaser%1:18:00:: 09997212 1 0 -debasing%5:00:00:dishonorable:00 01228050 1 0 -debatable%5:00:00:contestable:00 00590669 3 0 -debatable%5:00:00:controversial:00 00602117 2 0 -debatable%5:00:00:questionable:00 01916784 1 0 -debate%1:10:00:: 07242104 2 5 -debate%1:10:01:: 07140978 1 17 -debate%2:31:00:: 00714884 1 2 -debate%2:32:00:: 00812580 3 1 -debate%2:32:01:: 00773432 4 1 -debate%2:32:02:: 00813044 2 1 -debater%1:18:00:: 09997404 1 0 -debauch%1:04:00:: 00511212 1 1 -debauch%2:41:00:: 02579447 1 0 -debauched%5:00:00:immoral:00 01549568 1 0 -debauchee%1:18:00:: 10257647 1 0 -debaucher%1:18:00:: 10754281 1 0 -debauchery%1:04:00:: 00511212 1 0 -debenture%1:10:00:: 06526004 2 0 -debenture%1:21:00:: 13339844 1 0 -debenture_bond%1:21:00:: 13339844 1 0 -debile%5:00:00:frail:00 02040233 1 0 -debilitate%2:30:00:: 00389638 1 1 -debilitated%5:00:00:weak:00 02324944 1 0 -debilitating%3:00:00:: 01357966 1 2 -debilitation%1:11:00:: 07331210 1 0 -debilitative%5:00:00:debilitating:00 01358096 1 0 -debility%1:26:00:: 14547643 1 2 -debit%1:21:01:: 13405807 1 0 -debit%2:40:00:: 02265560 1 0 -debit_card%1:21:00:: 13376764 1 0 -debit_entry%1:21:00:: 13405807 1 0 -debit_side%1:21:00:: 13406509 1 0 -debitor%1:18:00:: 09997622 1 0 -debonair%5:00:00:cheerful:00 00364145 2 0 -debonair%5:00:00:refined:01 01948231 1 0 -debonaire%5:00:00:cheerful:00 00364145 2 0 -debonaire%5:00:00:refined:01 01948231 1 0 -debone%2:30:00:: 00197423 1 0 -deboned%5:00:00:boneless:00 00296482 1 0 -debonnaire%5:00:00:refined:01 01948231 1 0 -debouch%2:30:00:: 00530291 2 0 -debouch%2:38:00:: 02083923 1 0 -debridement%1:04:00:: 00669932 1 0 -debrief%2:32:00:: 00831476 1 0 -debriefing%1:10:00:: 07220466 1 0 -debris%1:27:00:: 14857897 1 5 -debris_storm%1:11:00:: 07440411 1 0 -debris_surge%1:11:00:: 07440411 1 0 -debs%1:18:00:: 10926429 1 0 -debt%1:10:00:: 06773347 3 0 -debt%1:21:00:: 13397174 2 3 -debt%1:26:00:: 14490564 1 3 -debt_ceiling%1:21:00:: 13397932 1 0 -debt_instrument%1:21:00:: 13398241 1 0 -debt_limit%1:21:00:: 13397932 1 0 -debtor%1:18:00:: 09997622 1 0 -debug%2:30:00:: 00200242 1 0 -debugger%1:10:00:: 06574334 1 0 -debunk%2:32:00:: 00853195 1 0 -debunking%1:04:00:: 00522338 1 1 -debussy%1:18:00:: 10926597 1 0 -debut%1:04:00:: 00238022 1 5 -debut%1:10:00:: 07217579 2 0 -debut%2:36:00:: 01717628 2 1 -debut%2:36:01:: 01717851 3 0 -debut%2:36:02:: 01718015 1 2 -debutante%1:18:00:: 09997834 1 0 -dec%1:15:00:: 08632894 2 0 -dec%1:28:00:: 15213774 1 9 -dec_24%1:28:00:: 15196444 1 0 -dec_25%1:28:00:: 15196186 1 0 -decade%1:23:00:: 13746512 2 0 -decade%1:28:00:: 15204983 1 25 -decadence%1:26:00:: 14440875 1 0 -decadency%1:26:00:: 14440875 1 0 -decadent%1:18:00:: 09997939 1 0 -decadent%5:00:00:indulgent:00 01297658 1 1 -decadron%1:27:00:: 14753808 1 0 -decaf%1:13:00:: 07919787 1 0 -decaffeinate%2:40:00:: 02364072 1 0 -decaffeinated_coffee%1:13:00:: 07919787 1 0 -decagon%1:25:00:: 13882713 1 0 -decagram%1:23:00:: 13724350 1 0 -decahedron%1:25:00:: 13915690 1 0 -decal%1:06:00:: 03167464 1 0 -decalcification%1:22:00:: 13456252 1 0 -decalcify%2:30:00:: 00499162 2 0 -decalcify%2:30:01:: 00499304 1 0 -decalcomania%1:04:00:: 00935453 2 0 -decalcomania%1:06:00:: 03167464 1 0 -decalescence%1:19:00:: 11444371 1 0 -decalescent%5:00:00:endothermic:00 00872715 1 0 -decaliter%1:23:00:: 13624509 1 0 -decalitre%1:23:00:: 13624509 1 0 -decalogue%1:10:00:: 07169970 1 0 -decameter%1:23:00:: 13659419 1 0 -decametre%1:23:00:: 13659419 1 0 -decamp%2:38:00:: 02010698 3 0 -decamp%2:38:01:: 02073714 2 0 -decamp%2:38:02:: 02076857 1 0 -decampment%1:04:00:: 00055227 2 0 -decampment%1:04:01:: 00055633 1 0 -decanedioic_acid%1:27:00:: 14739861 1 0 -decanoic_acid%1:27:00:: 14791830 1 0 -decant%2:38:00:: 02070296 1 0 -decantation%1:04:00:: 00935608 1 0 -decanter%1:06:00:: 02960903 1 0 -decapitate%2:35:00:: 01571354 1 0 -decapitated%5:00:00:headless:00 01184584 1 0 -decapitation%1:04:00:: 00228181 2 0 -decapitation%1:04:01:: 01165224 1 0 -decapod%1:05:01:: 01976146 1 0 -decapod%1:05:02:: 01971094 2 0 -decapod_crustacean%1:05:00:: 01976146 1 0 -decapoda%1:05:01:: 01975880 1 0 -decapoda%1:05:02:: 01970866 2 0 -decapterus%1:05:00:: 02581289 1 0 -decapterus_macarellus%1:05:00:: 02581482 1 0 -decapterus_punctatus%1:05:00:: 02581642 1 0 -decarbonate%2:40:00:: 02364171 1 0 -decarbonise%2:30:00:: 00530442 1 0 -decarbonize%2:30:00:: 00530442 1 0 -decarboxylase%1:27:00:: 14828815 1 0 -decarboxylate%2:30:00:: 00501718 1 0 -decarboxylate%2:30:01:: 00501534 2 0 -decarboxylation%1:22:00:: 13456367 1 0 -decarburise%2:30:00:: 00530442 1 0 -decarburize%2:30:00:: 00530442 1 0 -decasyllabic%5:00:00:syllabic:00 02289543 1 0 -decasyllable%1:10:00:: 07096569 1 0 -decathlon%1:11:00:: 07457016 1 0 -decatur%1:15:00:: 09054110 3 0 -decatur%1:15:01:: 09083659 2 0 -decatur%1:18:00:: 10926773 1 0 -decay%1:19:00:: 11444643 3 1 -decay%1:22:01:: 13456567 2 2 -decay%1:22:02:: 13456715 1 2 -decay%1:22:03:: 13456899 5 0 -decay%1:26:00:: 14560612 4 0 -decay%2:30:00:: 00208836 2 2 -decay%2:30:01:: 00399074 1 3 -decay%2:30:02:: 00552815 3 0 -decayable%5:00:00:perishable:00 01753785 1 0 -decayed%5:00:00:unsound:01 02275892 1 0 -deccan_hemp%1:20:00:: 12178129 2 0 -deccan_hemp%1:20:02:: 12178358 1 0 -decease%1:11:00:: 07355491 1 0 -decease%2:30:00:: 00358431 1 0 -deceased%1:18:00:: 09994943 1 1 -deceased%5:00:00:dead:01 00095873 1 4 -deceased_person%1:18:00:: 09994943 1 0 -decedent%1:18:00:: 09994943 1 2 -deceit%1:04:00:: 00752431 3 0 -deceit%1:07:00:: 04875352 1 1 -deceit%1:10:00:: 06758225 2 0 -deceitful%5:00:01:dishonest:00 01223271 2 0 -deceitful%5:00:02:dishonest:00 01223941 1 0 -deceitfully%4:02:00:: 00314597 1 0 -deceitfulness%1:07:00:: 04876561 1 0 -deceive%2:32:00:: 00854420 2 2 -deceive%2:41:00:: 02575082 1 5 -deceiver%1:18:00:: 09998101 1 0 -deceivingly%4:02:00:: 00082148 1 0 -decelerate%2:30:00:: 00439958 1 1 -decelerate%2:30:01:: 00438495 2 0 -deceleration%1:04:00:: 00330674 3 0 -deceleration%1:07:00:: 05061345 1 2 -deceleration%1:28:00:: 15276171 2 0 -december%1:28:00:: 15213774 1 14 -december_31%1:28:00:: 15182053 1 1 -december_8%1:28:00:: 15195259 1 0 -decency%1:07:00:: 04900739 1 2 -decency%1:07:01:: 04871259 2 2 -decennary%1:28:00:: 15204983 1 0 -decennium%1:28:00:: 15204983 1 0 -decent%3:00:00:: 00682932 3 0 -decent%4:02:00:: 00196203 1 1 -decent%5:00:00:modest:01 01538311 6 0 -decent%5:00:00:proper:00 01878870 2 1 -decent%5:00:00:respectable:00 01993408 1 3 -decent%5:00:00:sufficient:00 02336109 4 0 -decent%5:00:02:modest:01 01538583 5 0 -decentalisation%1:22:00:: 13457181 1 0 -decently%4:02:00:: 00247194 1 1 -decently%4:02:02:: 00196203 2 0 -decentralisation%1:04:00:: 01238058 1 0 -decentralise%2:30:00:: 00405540 1 0 -decentralised%3:00:00:: 01107973 1 0 -decentralising%3:00:00:: 00335090 1 0 -decentralization%1:04:00:: 01238058 2 0 -decentralization%1:22:00:: 13457181 1 0 -decentralize%2:30:00:: 00405540 1 1 -decentralized%3:00:00:: 01107973 1 0 -decentralizing%3:00:00:: 00335090 1 0 -deception%1:04:00:: 00752431 2 0 -deception%1:04:01:: 00099951 3 0 -deception%1:10:00:: 06758225 1 0 -deceptive%5:00:00:dishonest:00 01224253 2 0 -deceptive%5:00:00:unreal:02 01938975 1 2 -deceptively%4:02:00:: 00082148 1 1 -deceptiveness%1:07:00:: 04874939 1 0 -decerebrate%2:40:00:: 02364266 1 0 -decertify%2:41:00:: 02445100 1 1 -dechlorinate%2:40:00:: 02364393 1 0 -decibel%1:23:00:: 13713633 1 0 -decide%2:31:00:: 00697589 1 123 -decide%2:31:01:: 00698855 2 6 -decide%2:31:02:: 00699485 3 4 -decide%2:31:06:: 00701877 4 0 -decided%5:00:00:definite:00 00701299 1 0 -decidedly%4:02:00:: 00036935 1 3 -deciding%1:09:00:: 05788149 1 0 -deciding%5:00:00:decisive:00 00684782 1 0 -decidua%1:08:00:: 05519707 1 0 -deciduous%3:00:00:: 00914104 1 0 -deciduous%5:00:01:caducous:00 01758790 2 0 -deciduous_holly%1:20:00:: 12758176 1 0 -deciduous_plant%1:20:00:: 13099999 1 0 -deciduous_tooth%1:08:00:: 05306894 1 0 -decigram%1:23:00:: 13723470 1 0 -decile%1:09:00:: 05737982 1 0 -deciliter%1:23:00:: 13624026 1 0 -decilitre%1:23:00:: 13624026 1 0 -decimal%1:23:00:: 13736197 1 0 -decimal%1:23:01:: 13585309 2 0 -decimal%5:00:01:quantitative:00 01915353 1 0 -decimal_digit%1:23:00:: 13741698 1 0 -decimal_fraction%1:23:00:: 13736197 1 0 -decimal_notation%1:10:00:: 06810407 1 0 -decimal_number_system%1:10:00:: 06810790 1 0 -decimal_numeration_system%1:10:00:: 06810790 1 0 -decimal_point%1:10:00:: 06812289 1 0 -decimal_system%1:10:00:: 06810790 1 0 -decimal_system_of_classification%1:09:00:: 05727427 1 0 -decimalisation%1:04:00:: 00194414 1 0 -decimalise%2:30:00:: 00530592 2 0 -decimalise%2:30:01:: 00530829 1 0 -decimalization%1:04:00:: 00194414 1 0 -decimalize%2:30:00:: 00530592 2 0 -decimalize%2:30:01:: 00530829 1 0 -decimate%2:30:00:: 00470701 2 0 -decimate%2:30:01:: 00471058 1 0 -decimation%1:04:00:: 00218427 1 0 -decimeter%1:23:00:: 13658998 1 1 -decimetre%1:23:00:: 13658998 1 0 -decimus_junius_juvenalis%1:18:00:: 11095391 1 0 -decipher%2:31:00:: 00626130 2 0 -decipher%2:32:01:: 00994454 1 0 -decipherable%5:00:00:legible:00 01405047 1 0 -decipherably%4:02:00:: 00362276 1 0 -deciphered%3:00:00:: 01405693 1 0 -decipherer%1:18:00:: 09995253 2 0 -decipherer%1:18:01:: 09995398 1 0 -decipherment%1:04:00:: 00617059 1 0 -decision%1:04:00:: 00162632 1 25 -decision%1:07:00:: 04863969 5 0 -decision%1:09:00:: 05838176 2 10 -decision%1:11:01:: 07293546 4 1 -decision%1:11:02:: 07293678 3 2 -decision_maker%1:18:00:: 09770949 1 0 -decision_making%1:09:00:: 05788149 1 2 -decision_table%1:10:00:: 06581959 1 0 -decisive%3:00:00:: 00684480 1 8 -decisive%3:00:01:: 00685638 3 0 -decisive%5:00:00:crucial:00 00656132 4 0 -decisive%5:00:00:definite:00 00701178 2 1 -decisive_factor%1:09:00:: 05692758 1 0 -decisively%4:02:00:: 00298413 2 0 -decisively%4:02:01:: 00298765 1 2 -decisively%4:02:02:: 00298266 3 0 -decisiveness%1:07:00:: 04863969 1 0 -decisiveness%1:07:01:: 04754440 2 0 -decius%1:18:00:: 10926917 1 0 -deck%1:06:00:: 03167666 1 6 -deck%1:06:01:: 03167978 2 2 -deck%1:06:02:: 03168107 4 0 -deck%1:14:00:: 07956721 3 1 -deck%2:35:00:: 01412346 3 0 -deck%2:36:00:: 01679980 2 0 -deck%2:42:00:: 02748927 1 0 -deck-house%1:06:00:: 03168543 1 0 -deck_chair%1:06:00:: 03168217 1 1 -deck_of_cards%1:14:00:: 07956721 1 1 -deck_out%2:29:00:: 00044149 1 1 -deck_tennis%1:04:00:: 00481938 1 0 -deck_up%2:29:00:: 00044149 1 0 -decker%1:06:00:: 03168364 2 0 -decker%1:18:00:: 10928140 1 0 -deckhand%1:18:00:: 09998788 1 0 -deckle%1:06:00:: 03168663 2 0 -deckle%1:06:01:: 03168774 1 0 -deckle-edged%5:00:00:bordered:00 00258255 1 0 -deckle_edge%1:06:00:: 03168774 1 0 -deckled%5:00:00:bordered:00 00258255 1 0 -declaim%2:32:00:: 01051364 1 2 -declaim%2:32:02:: 00910364 2 0 -declamation%1:10:00:: 07242324 1 1 -declamation%1:10:01:: 07242470 2 0 -declamatory%5:00:00:rhetorical:00 02016881 1 0 -declarable%5:00:00:acknowledged:00 00028181 1 0 -declaration%1:10:00:: 06725877 1 4 -declaration%1:10:01:: 06511874 6 0 -declaration%1:10:02:: 06736217 2 1 -declaration%1:10:03:: 06726158 5 0 -declaration%1:10:04:: 06737394 4 0 -declaration%1:10:06:: 07204110 3 0 -declaration_of_estimated_tax%1:10:00:: 06549115 1 1 -declaration_of_independence%1:10:00:: 06512099 1 5 -declarative%1:24:00:: 13801700 1 0 -declarative%3:00:00:: 00686890 1 1 -declarative%3:01:00:: 03094520 2 0 -declarative_mood%1:24:00:: 13801700 1 0 -declarative_sentence%1:10:00:: 06600903 1 0 -declaratory%3:00:00:: 00686890 1 0 -declaratory_sentence%1:10:00:: 06600903 1 0 -declare%2:32:00:: 01010118 1 33 -declare%2:32:01:: 00820801 3 11 -declare%2:32:03:: 01010852 7 0 -declare%2:32:04:: 00822367 4 9 -declare%2:32:05:: 00965871 2 13 -declare%2:32:06:: 00977689 8 0 -declare%2:40:00:: 02300549 6 0 -declare%2:41:00:: 02444555 5 1 -declare_oneself%2:32:00:: 00879764 1 0 -declared%3:00:00:: 00687356 1 1 -declared%5:00:00:explicit:00 00940870 2 0 -declarer%1:18:00:: 09961012 1 0 -declarer%1:18:01:: 09814660 2 0 -declassification%1:04:00:: 01149115 1 0 -declassified%5:00:00:unclassified:02 00416550 1 0 -declassify%2:41:00:: 02509107 1 0 -declaw%2:30:00:: 00196990 1 0 -declension%1:14:00:: 08006511 4 0 -declension%1:17:00:: 09265620 3 0 -declension%1:22:00:: 13464204 2 0 -declension%1:24:00:: 13804203 1 0 -declination%1:10:00:: 06634239 4 0 -declination%1:15:01:: 08632894 3 0 -declination%1:17:00:: 09265620 2 0 -declination%1:26:00:: 14422488 1 0 -decline%1:17:00:: 09265620 4 0 -decline%1:22:01:: 13456567 3 1 -decline%1:22:02:: 13457378 1 4 -decline%1:26:00:: 14422488 2 2 -decline%2:30:00:: 00431826 4 2 -decline%2:30:01:: 00203866 1 5 -decline%2:32:00:: 00797430 3 4 -decline%2:32:01:: 00982913 7 0 -decline%2:38:00:: 02039876 5 0 -decline%2:38:03:: 01971603 6 0 -decline%2:40:00:: 02237338 2 4 -decline_in_quality%1:22:00:: 13464204 1 0 -declinometer%1:06:00:: 03168933 1 0 -declivitous%5:00:00:descending:00 02485895 1 0 -declivity%1:17:00:: 09265620 1 1 -declomycin%1:06:00:: 03174211 1 0 -declutch%2:30:00:: 00531068 1 0 -deco%1:14:00:: 08465118 1 0 -decoagulant%1:06:00:: 02718259 1 0 -decoct%2:30:00:: 00374893 1 0 -decoct%2:30:01:: 00213712 3 0 -decoct%2:30:02:: 00237259 2 0 -decoction%1:22:00:: 13457665 1 0 -decoction_mashing%1:22:00:: 13457831 1 0 -decoction_process%1:22:00:: 13457831 1 0 -decode%2:32:00:: 00994454 1 0 -decoder%1:06:00:: 03169063 2 0 -decoder%1:18:00:: 09995398 1 0 -decoding%1:04:00:: 00617059 1 0 -decoke%2:30:00:: 00530442 1 0 -decollate%2:35:00:: 01571354 1 0 -decolletage%1:06:00:: 03169176 1 0 -decollete%5:00:00:necked:00 01209210 1 0 -decolonisation%1:04:00:: 01082548 1 0 -decolonise%2:41:00:: 02590667 1 0 -decolonization%1:04:00:: 01082548 1 0 -decolonize%2:41:00:: 02590667 1 0 -decolor%2:30:00:: 00279822 1 0 -decolorise%2:30:00:: 00279822 1 0 -decolorize%2:30:00:: 00279822 1 0 -decolour%2:30:00:: 00279822 1 0 -decolourise%2:30:00:: 00279822 1 0 -decolourize%2:30:00:: 00279822 1 0 -decommission%2:40:00:: 02312742 1 0 -decomposable%5:00:00:complex:00 02176741 1 0 -decompose%2:30:00:: 00209174 1 3 -decompose%2:30:01:: 00209837 3 0 -decompose%2:30:02:: 00399074 2 0 -decomposition%1:09:00:: 06013471 1 8 -decomposition%1:19:00:: 11444643 5 0 -decomposition%1:22:00:: 13458019 4 0 -decomposition%1:22:01:: 13458268 3 0 -decomposition%1:26:00:: 14561327 2 3 -decomposition_reaction%1:22:00:: 13458268 1 0 -decompositional%5:00:00:disintegrative:00 01332285 1 0 -decompound%5:00:00:compound:00 02172488 1 0 -decompound_leaf%1:20:00:: 13157481 1 0 -decompress%2:29:00:: 00026385 3 0 -decompress%2:30:00:: 00403967 2 0 -decompress%2:35:00:: 01389607 1 0 -decompressing%1:04:00:: 00357451 1 0 -decompression%1:04:00:: 00357451 2 0 -decompression%1:04:01:: 00616641 1 0 -decompression_sickness%1:26:00:: 14068344 1 0 -deconcentrate%2:30:00:: 00405540 1 0 -decongestant%1:06:00:: 03169271 1 0 -deconsecrate%2:32:00:: 00867062 1 0 -deconsecrated%5:00:00:desecrated:00 00573926 1 0 -deconstruct%2:32:00:: 00938748 1 0 -deconstruction%1:09:00:: 05970012 1 0 -deconstructionism%1:09:00:: 05970012 1 0 -deconstructionist%3:01:00:: 02909336 1 0 -deconstructivism%1:14:00:: 08275704 1 0 -decontaminate%2:30:00:: 00493052 1 0 -decontamination%1:04:00:: 00394485 1 0 -decontrol%2:41:00:: 02467399 1 0 -decor%1:06:00:: 03579355 1 1 -decorate%2:35:00:: 01466543 4 0 -decorate%2:36:00:: 01675963 1 6 -decorate%2:41:00:: 02547046 3 0 -decorate%2:42:00:: 02748927 2 0 -decorated%3:00:04:: 00056002 1 0 -decoration%1:04:00:: 00262249 3 0 -decoration%1:06:00:: 03169390 1 4 -decoration%1:10:00:: 06706676 2 0 -decoration_day%1:28:00:: 15189452 1 0 -decorative%5:00:00:nonfunctional:00 01091234 1 1 -decoratively%4:02:00:: 00078330 1 0 -decorativeness%1:07:00:: 04700327 1 1 -decorator%1:18:00:: 09998907 2 1 -decorator%1:18:01:: 10210648 1 3 -decorous%3:00:00:: 00688947 1 0 -decorous%5:00:00:proper:00 01878870 2 0 -decorously%4:02:00:: 00304992 1 0 -decorousness%1:07:00:: 04898804 1 0 -decorticate%2:30:01:: 00176874 2 0 -decorticate%2:35:00:: 01263999 1 0 -decortication%1:04:00:: 00670105 1 0 -decorum%1:07:00:: 04898804 1 1 -decoupage%1:04:00:: 00935786 2 0 -decoupage%1:06:00:: 03170292 1 0 -decouple%2:30:00:: 00471423 4 0 -decouple%2:30:01:: 00471576 3 0 -decouple%2:31:00:: 00714273 2 0 -decouple%2:35:00:: 01297813 1 0 -decoy%1:06:00:: 02776205 2 0 -decoy%1:18:00:: 09995573 1 0 -decoy%2:41:00:: 02577755 1 0 -decrease%1:04:00:: 00351638 4 0 -decrease%1:07:00:: 05109808 3 0 -decrease%1:11:00:: 07355887 1 5 -decrease%1:22:00:: 13458571 2 0 -decrease%2:30:00:: 00151689 1 13 -decrease%2:30:01:: 00441445 2 3 -decreased%3:00:00:: 00881735 1 0 -decreasing%3:00:00:: 02536740 1 1 -decreasing%3:00:02:: 02538050 2 0 -decreasing_monotonic%5:00:00:monotonic:00 01547470 1 0 -decree%1:10:00:: 06539770 1 4 -decree%2:31:00:: 00715868 2 0 -decree%2:32:00:: 01027508 1 2 -decree_nisi%1:10:00:: 06540702 1 0 -decreed%5:00:00:settled:02 02129718 1 0 -decrement%1:07:00:: 05109808 1 2 -decrement%1:22:00:: 13458571 2 0 -decrepit%5:00:00:frail:00 02040233 2 0 -decrepit%5:00:00:worn:00 02581530 1 0 -decrepitate%2:30:00:: 00122289 2 0 -decrepitate%2:30:01:: 00122485 1 0 -decrepitation%1:11:00:: 07383092 1 0 -decrepitude%1:26:00:: 14562541 1 0 -decrescendo%1:07:00:: 04991225 1 0 -decrescendo%2:30:00:: 00546873 1 0 -decrescendo%5:00:00:decreasing:02 02538389 1 0 -decriminalisation%1:04:00:: 01126151 1 0 -decriminalise%2:41:00:: 02481436 1 0 -decriminalization%1:04:00:: 01126151 1 0 -decriminalize%2:41:00:: 02481436 1 0 -decry%2:32:00:: 00864159 1 4 -decrypt%2:32:00:: 00994454 1 0 -decryption%1:04:00:: 00617059 1 0 -decubitus%1:07:00:: 05080526 1 0 -decubitus_ulcer%1:26:00:: 14212126 1 0 -decumaria%1:20:00:: 12789767 1 0 -decumaria_barbara%1:20:00:: 12789977 1 0 -decumaria_barbata%1:20:00:: 12789977 1 0 -decumary%1:20:00:: 12789977 1 0 -decumbent%5:00:00:unerect:00 01238201 1 0 -decurved%5:00:00:retrorse:00 00123961 1 0 -decussate%2:38:01:: 01914113 1 0 -decussate%5:00:00:crossed:01 00653044 1 0 -decussation%1:08:00:: 05228496 1 0 -ded%1:10:00:: 06703213 1 0 -dedicate%2:31:00:: 00677966 4 0 -dedicate%2:32:00:: 00887463 1 4 -dedicate%2:32:01:: 00887142 3 0 -dedicate%2:41:00:: 02395996 2 0 -dedicated%3:00:00:: 00519211 1 3 -dedicated%3:00:02:: 00573225 2 0 -dedicated_file_server%1:06:00:: 03170459 1 0 -dedication%1:04:00:: 01206153 5 0 -dedication%1:07:00:: 04877421 1 5 -dedication%1:10:00:: 06406317 4 0 -dedication%1:10:01:: 06684383 3 0 -dedication%1:11:00:: 07452348 2 0 -dedifferentiate%2:30:00:: 00119725 1 0 -dedifferentiated%5:00:00:undifferentiated:00 00744669 1 1 -dedifferentiation%1:22:00:: 13458840 1 0 -deduce%2:31:00:: 00636574 1 7 -deduce%2:32:00:: 00944924 2 2 -deducible%5:00:00:deductive:00 01296718 1 0 -deduct%2:31:00:: 00636574 3 0 -deduct%2:31:01:: 00641252 1 13 -deduct%2:40:00:: 02215001 2 3 -deductible%1:10:00:: 06393424 2 0 -deductible%1:21:00:: 13273550 1 0 -deductible%3:00:00:: 00689673 1 3 -deduction%1:04:00:: 00360757 5 1 -deduction%1:04:02:: 00362103 6 0 -deduction%1:09:00:: 05774129 4 1 -deduction%1:09:01:: 05780885 3 1 -deduction%1:21:00:: 13274597 2 1 -deduction%1:21:01:: 13329047 1 12 -deductive%3:00:00:: 01296474 2 0 -deductive%3:01:00:: 02710294 1 1 -deductive_reasoning%1:09:00:: 05774129 1 0 -deed%1:03:00:: 00030358 2 0 -deed%1:10:00:: 06545137 1 1 -deed_of_conveyance%1:10:00:: 06545137 1 0 -deed_of_trust%1:10:00:: 06546408 1 0 -deed_over%2:40:00:: 02255942 1 0 -deed_poll%1:10:00:: 06545843 1 0 -deedbox%1:06:00:: 04340750 1 0 -deeds%1:04:00:: 00577357 1 0 -deem%2:31:00:: 00693780 1 13 -deems_taylor%1:18:00:: 11333601 1 0 -deep%1:17:00:: 09461315 2 0 -deep%1:17:01:: 09263811 3 0 -deep%1:28:00:: 15267373 1 0 -deep%3:00:01:: 00690058 3 11 -deep%3:00:02:: 00692762 1 16 -deep%4:02:00:: 00305570 1 3 -deep%4:02:01:: 00305821 2 0 -deep%4:02:02:: 00305683 3 0 -deep%5:00:00:artful:00 00149120 15 0 -deep%5:00:00:colorful:00 00403385 7 3 -deep%5:00:00:distant:01 00445937 4 7 -deep%5:00:00:esoteric:00 00899226 14 0 -deep%5:00:00:inexplicable:00 00939444 13 0 -deep%5:00:00:intense:00 01511292 5 6 -deep%5:00:00:large:00 01385046 11 0 -deep%5:00:00:low:01 01206916 12 0 -deep%5:00:00:low:03 01215935 6 5 -deep%5:00:00:profound:00 01873163 2 12 -deep%5:00:00:thick:01 02410983 8 2 -deep%5:00:00:wide:00 02561391 9 0 -deep%5:00:01:intense:00 01513776 10 0 -deep-chested%5:00:00:thick:01 02411116 1 0 -deep-dish_pie%1:13:00:: 07625831 1 0 -deep-dye%2:30:00:: 00283584 1 0 -deep-eyed%5:00:00:thin:03 00989416 1 1 -deep-fat-fry%2:30:00:: 00325777 1 0 -deep-freeze%1:06:00:: 03170635 1 0 -deep-fried%5:00:00:cooked:00 00617422 1 0 -deep-fry%2:30:00:: 00326310 1 0 -deep-laid%5:00:00:planned:00 01797528 1 0 -deep-lobed%5:00:00:multilateral:00 00237881 1 0 -deep-mined%5:00:00:mined:00 01504147 1 0 -deep-pink%5:00:00:chromatic:00 00374556 1 0 -deep-rooted%5:00:00:established:00 01635633 1 0 -deep-sea%5:00:00:marine:00 01380926 1 0 -deep-sea_diver%1:18:00:: 09999036 1 0 -deep-seated%5:00:00:established:00 01635633 1 1 -deep-set%5:00:00:hollow:00 02264521 1 2 -deep-six%2:35:00:: 01509824 2 0 -deep-six%2:40:00:: 02222994 1 0 -deep-water%5:00:00:deep:01 00691022 1 0 -deep-yellow%5:00:00:chromatic:00 00374635 1 0 -deep_brown%1:07:00:: 04972451 1 0 -deep_cervical_vein%1:08:00:: 05363270 1 0 -deep_down%4:02:00:: 00104099 1 0 -deep_fording%1:04:00:: 00297951 1 0 -deep_freeze%1:26:00:: 14011557 1 0 -deep_freeze%2:30:00:: 00375417 1 0 -deep_freezer%1:06:00:: 03170635 1 0 -deep_in_thought%5:00:00:thoughtful:00 02419159 1 1 -deep_kiss%1:04:00:: 00138799 1 0 -deep_middle_cerebral_vein%1:08:00:: 05362745 1 0 -deep_pocket%1:21:00:: 13330591 1 0 -deep_red%1:07:00:: 04963588 1 0 -deep_south%1:15:00:: 09051235 1 2 -deep_space%1:15:00:: 08502051 1 0 -deep_supporting_fire%1:04:00:: 00989122 1 0 -deep_temporal_vein%1:08:00:: 05382316 1 0 -deep_water%1:09:00:: 05687958 1 0 -deepen%2:30:00:: 00226566 2 1 -deepen%2:30:01:: 00227165 1 1 -deepen%2:30:02:: 00551210 4 0 -deepen%2:30:03:: 00570524 3 0 -deepening%1:22:00:: 13458968 1 1 -deepening%5:00:00:intensifying:00 01340691 1 0 -deepfreeze%1:06:00:: 03170635 1 0 -deeply%4:02:00:: 00173353 1 16 -deeply%4:02:03:: 00305570 2 3 -deepness%1:07:00:: 05134880 2 0 -deepness%1:07:01:: 05134547 3 0 -deepness%1:07:02:: 04986414 4 0 -deepness%1:09:00:: 05613962 1 0 -deepwater_pipefish%1:05:00:: 01456454 1 0 -deepwater_squirrelfish%1:05:00:: 01451115 1 0 -deer%1:05:00:: 02430045 1 2 -deer's-ear%1:20:00:: 12292877 1 0 -deer's-ears%1:20:00:: 12292877 1 0 -deer_fern%1:20:00:: 13185269 1 0 -deer_fly_fever%1:26:00:: 14276360 1 0 -deer_grass%1:20:00:: 12350032 1 0 -deer_hunt%1:04:00:: 00453313 1 0 -deer_hunter%1:18:00:: 09995757 1 0 -deer_hunting%1:04:00:: 00453313 1 0 -deer_mouse%1:05:00:: 02337001 1 0 -deer_mushroom%1:20:00:: 13019835 1 0 -deer_tick%1:05:00:: 01777304 1 0 -deer_trail%1:06:00:: 03171002 1 0 -deerberry%1:20:00:: 12249294 1 0 -deere%1:18:00:: 10927104 1 0 -deerhound%1:05:00:: 02092002 1 0 -deerskin%1:27:00:: 14762486 1 0 -deerstalker%1:06:00:: 03170872 1 0 -deerstalking%1:04:00:: 00711727 1 0 -deface%2:35:00:: 01549905 1 0 -defacement%1:04:00:: 00403466 1 0 -defalcate%2:40:00:: 02292535 1 0 -defalcation%1:04:00:: 00776732 2 0 -defalcation%1:21:00:: 13273738 1 0 -defalcator%1:18:00:: 10051337 1 0 -defamation%1:04:01:: 01220336 2 0 -defamation%1:10:00:: 06719579 1 0 -defamatory%5:00:00:harmful:00 01161233 1 0 -defame%2:32:00:: 00846509 1 0 -defamer%1:18:00:: 09999135 1 0 -defang%2:30:00:: 00197091 1 0 -defat%2:40:00:: 02364491 1 0 -default%1:04:00:: 00067397 1 1 -default%1:09:00:: 05791864 4 0 -default%1:21:00:: 13300141 3 0 -default%1:21:02:: 13300411 2 0 -default%2:40:00:: 02253766 1 1 -default_judgement%1:04:00:: 01188537 1 0 -default_judgment%1:04:00:: 01188537 1 0 -default_on%2:40:00:: 02253766 1 0 -default_option%1:09:00:: 05791864 1 0 -defaulter%1:18:00:: 09999443 3 0 -defaulter%1:18:01:: 09999532 2 0 -defaulter%1:18:02:: 09999683 1 0 -defeasible%3:00:00:: 00694086 1 0 -defeat%1:11:00:: 07475364 1 12 -defeat%1:12:00:: 07540866 2 3 -defeat%2:33:00:: 01108148 1 14 -defeat%2:41:00:: 02473688 2 5 -defeated%1:14:00:: 07946135 1 0 -defeated%3:00:00:: 00694608 1 0 -defeated%5:00:00:unsuccessful:00 02333976 2 0 -defeatism%1:12:00:: 07542560 1 0 -defeatist%1:18:00:: 09999795 1 0 -defecate%2:29:00:: 00074038 1 1 -defecation%1:22:00:: 13459088 1 0 -defecation_reflex%1:04:00:: 00811221 1 0 -defecator%1:18:00:: 10000007 1 0 -defect%1:07:00:: 04692157 4 1 -defect%1:07:01:: 05162642 2 2 -defect%1:26:00:: 14464203 3 1 -defect%1:26:01:: 14464005 1 2 -defect%2:41:00:: 02584097 1 0 -defect_of_speech%1:26:00:: 14400677 1 0 -defection%1:04:00:: 00055315 1 1 -defection%1:26:00:: 14413411 2 0 -defective%5:00:00:abnormal:00 01597240 2 1 -defective%5:00:00:imperfect:00 01752953 1 2 -defective%5:00:00:malfunctioning:00 01092572 3 0 -defective_pleading%1:10:00:: 06562615 1 0 -defectively%4:02:00:: 00500104 1 0 -defectiveness%1:26:00:: 14472299 1 0 -defector%1:18:00:: 10006842 1 0 -defeminise%2:29:00:: 00060701 1 0 -defeminize%2:29:00:: 00060701 1 0 -defence%1:04:00:: 00954311 9 0 -defence%1:04:01:: 00823532 11 0 -defence%1:04:02:: 01198750 8 0 -defence%1:04:03:: 00823750 10 0 -defence%1:06:00:: 03171356 7 0 -defence%1:10:00:: 06740644 6 0 -defence%1:10:01:: 07200813 5 0 -defence%1:14:00:: 08064523 3 0 -defence%1:14:01:: 08081403 2 0 -defence%1:14:03:: 08064130 4 0 -defence%1:22:00:: 13459322 1 0 -defence_force%1:14:00:: 08064130 1 0 -defence_mechanism%1:22:00:: 13459322 1 0 -defence_policy%1:09:00:: 05900263 1 0 -defence_program%1:09:00:: 05900263 1 0 -defence_reaction%1:22:00:: 13459322 1 0 -defence_system%1:06:00:: 03171228 1 0 -defenceless%4:02:00:: 00306059 1 0 -defenceless%5:00:00:unarmed:01 00143376 2 0 -defenceless%5:00:00:vulnerable:00 02524032 1 0 -defencelessly%4:02:00:: 00306059 1 0 -defencelessness%1:07:00:: 05043091 1 0 -defend%2:32:00:: 00895304 1 19 -defend%2:32:01:: 01017643 7 0 -defend%2:33:00:: 01127795 2 14 -defend%2:33:02:: 01129876 3 3 -defend%2:33:04:: 01149138 5 1 -defend%2:33:05:: 01091427 4 2 -defend%2:41:00:: 02581675 6 0 -defendable%5:00:00:invulnerable:00 02525876 1 0 -defendant%1:18:00:: 09762101 1 4 -defender%1:18:00:: 09614684 1 3 -defender%1:18:01:: 09615211 2 0 -defender_of_the_faith%1:10:00:: 06340182 1 0 -defending%5:00:00:defensive:00 01630773 1 0 -defending_team%1:14:00:: 08081403 1 0 -defenestrate%2:35:00:: 01508884 1 0 -defenestration%1:04:00:: 00116989 1 0 -defense%1:04:00:: 00954311 1 17 -defense%1:04:01:: 00823532 12 0 -defense%1:04:02:: 01198750 11 0 -defense%1:04:03:: 00823750 2 9 -defense%1:06:00:: 03171356 10 0 -defense%1:10:00:: 06740644 4 2 -defense%1:10:01:: 07200813 8 1 -defense%1:14:00:: 08064523 7 1 -defense%1:14:01:: 08081403 3 2 -defense%1:14:02:: 08131530 6 1 -defense%1:14:03:: 08064130 9 0 -defense%1:22:00:: 13459322 5 1 -defense_advanced_research_projects_agency%1:14:00:: 08132046 1 0 -defense_attorney%1:18:00:: 10000158 1 0 -defense_contractor%1:18:00:: 10000294 1 0 -defense_department%1:14:00:: 08131530 1 0 -defense_force%1:14:00:: 08064130 1 0 -defense_information_systems_agency%1:14:00:: 08396207 1 0 -defense_intelligence_agency%1:14:00:: 08340989 1 0 -defense_laboratory%1:06:00:: 03171094 1 0 -defense_lawyer%1:18:00:: 10000158 1 0 -defense_lawyers%1:14:00:: 08064523 1 0 -defense_logistics_agency%1:14:00:: 08341330 1 0 -defense_mechanism%1:22:00:: 13459322 1 0 -defense_policy%1:09:00:: 05900263 1 1 -defense_program%1:09:00:: 05900263 1 2 -defense_reaction%1:22:00:: 13459322 1 0 -defense_reutilization_and_marketing_service%1:14:00:: 08341551 1 0 -defense_secretary%1:04:00:: 00600655 2 0 -defense_secretary%1:18:00:: 10571202 1 0 -defense_system%1:06:00:: 03171228 1 0 -defense_team%1:14:00:: 08064523 1 0 -defense_technical_information_center%1:14:00:: 08341798 1 0 -defenseless%4:02:00:: 00306059 1 0 -defenseless%5:00:00:unarmed:01 00143376 3 0 -defenseless%5:00:00:unprotected:00 01886783 2 0 -defenseless%5:00:00:vulnerable:00 02524032 1 0 -defenselessly%4:02:00:: 00306059 1 0 -defenselessness%1:07:00:: 05043091 1 0 -defensibility%1:07:00:: 05202954 1 0 -defensible%5:00:00:invulnerable:00 02525876 1 1 -defensive%1:09:00:: 06195249 1 0 -defensive%3:00:00:: 01630117 1 9 -defensive%5:00:00:apologetic:00 01632066 2 1 -defensive_attitude%1:09:00:: 06195249 1 0 -defensive_measure%1:04:00:: 00954311 1 0 -defensive_structure%1:06:00:: 03171356 1 0 -defensively%4:02:00:: 00306268 2 0 -defensively%4:02:01:: 00306520 1 0 -defensiveness%1:07:00:: 04843429 1 0 -defer%2:32:00:: 00878348 2 1 -defer%2:42:00:: 02642814 1 2 -deference%1:04:00:: 01228877 1 1 -deference%1:07:00:: 04641153 3 0 -deference%1:07:01:: 04913839 2 0 -deferent%5:00:00:respectful:00 01994180 1 0 -deferential%5:00:00:respectful:00 01994180 1 0 -deferentially%4:02:00:: 00307906 2 0 -deferentially%4:02:01:: 00308031 1 0 -deferment%1:04:00:: 01066881 1 0 -deferral%1:04:01:: 01066881 2 0 -deferral%1:26:00:: 14013646 1 0 -deferred_payment%1:21:00:: 13374281 1 0 -defervesce%2:30:00:: 00571901 1 0 -defervescence%1:11:00:: 07368482 1 0 -defervescent%3:01:00:: 03059847 1 0 -defiance%1:04:01:: 01170320 3 0 -defiance%1:07:00:: 04907991 1 3 -defiance%1:10:00:: 07231943 2 2 -defiant%3:00:00:: 00695523 1 2 -defiantly%4:02:00:: 00198661 1 0 -defibrillate%2:41:00:: 02553002 1 0 -defibrillation%1:04:00:: 00698959 1 0 -defibrillator%1:06:00:: 03171635 1 0 -defibrinate%2:40:00:: 02364573 1 0 -deficiency%1:07:00:: 05113133 2 2 -deficiency%1:26:00:: 14449405 1 6 -deficiency_disease%1:26:00:: 14198200 1 0 -deficient%3:00:04:: 02336449 2 0 -deficient%5:00:00:inadequate:00 00052012 1 1 -deficient%5:00:00:nonstandard:02 02297409 3 0 -deficit%1:07:00:: 05114371 1 1 -deficit%1:21:00:: 13396276 4 0 -deficit%1:23:00:: 13595550 3 0 -deficit%1:26:00:: 14449960 2 0 -deficit_spending%1:04:00:: 01122754 1 0 -defilade%1:06:00:: 03171910 1 0 -defile%1:17:00:: 09263912 1 0 -defile%2:30:00:: 00492410 3 0 -defile%2:35:00:: 01537409 2 0 -defile%2:35:01:: 01537959 1 0 -defiled%5:00:00:impure:01 01905552 1 0 -defilement%1:26:00:: 14498404 1 0 -defiler%1:18:00:: 10451858 1 0 -definable%5:00:00:determinable:00 00739022 1 1 -define%2:32:00:: 00957378 2 13 -define%2:32:01:: 00947077 5 0 -define%2:42:00:: 02611630 1 20 -define%2:42:01:: 02698319 3 9 -define%2:42:03:: 02736778 4 2 -defined%3:00:00:: 00697188 1 2 -defined%5:00:00:distinct:00 00780712 2 0 -defining%1:22:00:: 13555446 1 1 -definite%3:00:00:: 00700451 1 13 -definite%5:00:00:certain:01 00335768 2 1 -definite_article%1:10:00:: 06324864 1 0 -definite_integral%1:09:00:: 06015863 1 0 -definite_quantity%1:23:00:: 13576101 1 0 -definitely%4:02:00:: 00036935 1 8 -definiteness%1:07:00:: 04754237 1 0 -definition%1:07:00:: 04702957 2 10 -definition%1:10:00:: 06744396 1 11 -definitive%5:00:00:conclusive:00 00550574 3 0 -definitive%5:00:00:explicit:00 00940969 1 2 -definitive%5:00:00:standard:01 02295098 2 0 -definitive_host%1:05:00:: 01385878 1 0 -deflagrate%2:30:00:: 00585148 2 0 -deflagrate%2:43:00:: 02772310 1 0 -deflagration%1:22:00:: 13450417 1 0 -deflate%2:30:00:: 00264705 6 0 -deflate%2:30:10:: 00562303 5 0 -deflate%2:30:11:: 00562720 4 0 -deflate%2:32:00:: 00856234 3 0 -deflate%2:35:00:: 01436721 2 0 -deflate%2:35:01:: 01436865 1 0 -deflated%5:00:00:dejected:00 00703454 1 1 -deflation%1:04:00:: 00361932 3 0 -deflation%1:22:00:: 13459821 2 0 -deflation%1:22:01:: 13499165 1 0 -deflationary%3:00:00:: 02538803 1 0 -deflationary_spiral%1:22:00:: 13499590 1 0 -deflator%1:21:00:: 13257792 1 0 -deflect%2:33:00:: 01147060 5 0 -deflect%2:37:06:: 01791756 4 0 -deflect%2:38:00:: 02033805 3 0 -deflect%2:38:01:: 02034300 2 0 -deflect%2:41:00:: 02453321 1 0 -deflection%1:04:00:: 00350380 5 0 -deflection%1:07:00:: 05011277 4 0 -deflection%1:11:00:: 07410883 2 0 -deflection%1:11:01:: 07310839 3 0 -deflection%1:26:00:: 14504726 1 1 -deflective%5:00:00:crooked:01 02312918 1 0 -deflector%1:06:00:: 03172038 1 0 -deflexion%1:04:00:: 00350380 4 0 -deflexion%1:07:00:: 05011277 3 0 -deflexion%1:11:00:: 07410883 1 0 -deflexion%1:11:01:: 07310839 2 0 -defloration%1:04:00:: 00844994 2 0 -defloration%1:04:01:: 00966718 1 0 -deflower%2:30:00:: 00477941 2 0 -deflower%2:35:00:: 01428381 1 0 -defoe%1:18:00:: 10927270 1 0 -defog%2:30:00:: 00361641 1 0 -defoliant%1:27:00:: 14828927 1 0 -defoliate%2:30:00:: 00195813 1 0 -defoliate%5:00:00:leafless:00 01703710 1 0 -defoliated%5:00:00:leafless:00 01703710 1 0 -defoliation%1:04:00:: 00279674 2 0 -defoliation%1:22:00:: 13460034 1 0 -defoliator%1:05:00:: 02161338 1 0 -deforest%2:30:00:: 00196024 1 0 -deforestation%1:04:00:: 01262441 2 0 -deforestation%1:26:00:: 14519097 1 0 -deform%2:30:00:: 00477665 4 0 -deform%2:30:01:: 00476744 5 0 -deform%2:30:02:: 00140967 6 0 -deform%2:35:00:: 01584875 1 0 -deform%2:35:01:: 01280014 3 0 -deform%2:35:02:: 01350699 2 0 -deformation%1:04:00:: 00404726 3 0 -deformation%1:11:00:: 07433973 1 3 -deformation%1:11:01:: 07358060 2 0 -deformational%3:01:00:: 02954143 1 1 -deformed%5:00:00:unshapely:00 02141298 1 1 -deformity%1:07:00:: 04691178 2 0 -deformity%1:26:00:: 14213512 1 0 -defraud%2:41:00:: 02572119 1 2 -defrauder%1:18:00:: 09955015 1 0 -defray%2:40:00:: 02349945 1 2 -defrayal%1:04:00:: 01120448 1 0 -defrayment%1:04:00:: 01120448 1 0 -defrock%2:41:00:: 02476731 1 0 -defrost%2:30:00:: 00376807 1 1 -defroster%1:06:00:: 03172211 1 0 -deft%5:00:02:adroit:00 00062367 1 0 -deftly%4:02:00:: 00299059 2 0 -deftly%4:02:01:: 00310533 1 0 -deftness%1:09:00:: 05642175 1 0 -defunct%5:00:00:dead:01 00097147 2 0 -defunct%5:00:00:inoperative:00 00834048 1 0 -defunctness%1:26:00:: 13963032 1 0 -defuse%2:33:00:: 01137696 1 0 -defusing%1:04:00:: 00233614 1 0 -defy%2:32:00:: 00868097 3 1 -defy%2:42:00:: 02706816 1 9 -defy%2:42:01:: 02707800 2 2 -degage%5:00:00:relaxed:00 02407855 1 0 -degage%5:00:00:unconcerned:00 00546155 2 0 -degas%1:18:00:: 10927687 1 0 -degas%2:30:00:: 00181180 1 1 -degauss%2:30:00:: 00400101 1 0 -degaussing%1:22:00:: 13460129 1 0 -degeneracy%1:07:01:: 04850996 2 0 -degeneracy%1:26:00:: 14440875 1 0 -degenerate%1:18:00:: 10419047 1 0 -degenerate%2:29:00:: 00092293 1 0 -degenerate%5:00:00:immoral:00 01549568 1 0 -degeneration%1:11:00:: 07426893 3 0 -degeneration%1:22:00:: 13460299 1 1 -degeneration%1:26:00:: 14440875 2 0 -degenerative%5:00:00:chronic:00 00045356 1 0 -degenerative_arthritis%1:26:00:: 14188238 1 0 -degenerative_disorder%1:26:00:: 14058563 1 0 -degenerative_joint_disease%1:26:00:: 14188238 1 0 -deglaze%2:36:00:: 01664704 1 0 -deglutition%1:04:00:: 00839778 1 0 -deglycerolise%2:38:00:: 01987936 1 0 -deglycerolize%2:38:00:: 01987936 1 1 -degradation%1:04:00:: 00271263 1 1 -degradation%1:26:00:: 14440623 2 0 -degrade%2:30:00:: 00207728 3 0 -degrade%2:35:00:: 01307896 1 1 -degrade%2:37:00:: 01800422 2 0 -degraded%5:00:00:immoral:00 01549568 1 0 -degraded%5:00:00:low:02 01212732 2 0 -degrader%1:18:00:: 09997212 1 0 -degrading%5:00:00:dishonorable:00 01228050 2 0 -degrading%5:00:00:noxious:00 01611490 1 0 -degrease%2:40:00:: 02364668 1 0 -degree%1:07:00:: 05093890 1 25 -degree%1:07:01:: 05094565 7 0 -degree%1:09:00:: 05861317 5 6 -degree%1:10:00:: 06697331 3 13 -degree%1:23:00:: 13611207 4 7 -degree%1:23:03:: 13714184 6 1 -degree%1:26:01:: 13939892 2 17 -degree_celsius%1:23:00:: 13714491 1 0 -degree_centigrade%1:23:00:: 13714491 1 0 -degree_day%1:23:00:: 13715001 2 0 -degree_day%1:28:00:: 15158691 1 0 -degree_fahrenheit%1:23:00:: 13714641 1 0 -degree_of_a_polynomial%1:09:00:: 05861579 1 0 -degree_of_a_term%1:09:00:: 05861463 1 0 -degree_of_freedom%1:09:00:: 05858551 1 1 -degree_of_freedom%1:09:01:: 05859477 2 0 -degree_program%1:10:00:: 06677194 1 0 -degressive%5:00:00:descending:00 02486046 1 0 -degressive%5:00:00:progressive:02 01877792 2 0 -degressive_tax%1:21:00:: 13314796 1 0 -degust%2:34:00:: 01195675 1 0 -degustation%1:04:00:: 00841901 1 0 -dehisce%2:30:00:: 00308105 1 0 -dehiscence%1:19:00:: 11444816 1 0 -dehiscent%3:00:00:: 00702773 1 0 -dehong_dai%1:10:00:: 06935111 1 0 -dehorn%2:30:00:: 00197206 2 0 -dehorn%2:30:01:: 00198367 1 0 -dehumanisation%1:04:00:: 00271636 1 0 -dehumanise%2:30:00:: 00479817 2 0 -dehumanise%2:37:00:: 01801297 1 0 -dehumanised%5:00:00:nonhuman:00 01260584 1 0 -dehumanization%1:04:00:: 00271636 1 0 -dehumanize%2:30:00:: 00479817 2 0 -dehumanize%2:37:00:: 01801297 1 0 -dehumanized%5:00:00:nonhuman:00 01260584 1 0 -dehumidify%2:30:00:: 00216057 1 0 -dehydrate%2:30:00:: 00211108 3 0 -dehydrate%2:30:01:: 00211396 2 0 -dehydrate%2:30:02:: 00212790 1 0 -dehydrated%5:00:00:preserved:02 01072382 2 0 -dehydrated%5:00:00:unhealthy:00 01176057 1 0 -dehydrated_food%1:13:00:: 07573453 1 0 -dehydrated_foods%1:13:00:: 07573453 1 0 -dehydration%1:22:00:: 13460568 3 0 -dehydration%1:26:00:: 14536831 1 0 -dehydration%1:26:01:: 14040846 2 0 -dehydrogenate%2:30:00:: 00308399 1 0 -dehydroretinol%1:27:00:: 15090238 1 0 -deice%2:30:00:: 00376807 1 0 -deicer%1:06:00:: 03172211 1 0 -deictic%1:10:00:: 06289693 1 0 -deictic%3:01:00:: 03135403 1 0 -deictic_word%1:10:00:: 06289693 1 0 -deific%5:00:00:immortal:00 01558291 1 0 -deification%1:04:00:: 01029114 3 0 -deification%1:18:00:: 10418577 2 0 -deification%1:26:00:: 14575063 1 0 -deify%2:30:01:: 00545140 2 0 -deify%2:31:00:: 00693401 1 0 -deign%2:41:00:: 02591312 1 1 -deimos%1:17:00:: 09264021 1 0 -deinocheirus%1:05:00:: 01716594 1 0 -deinonychus%1:05:00:: 01718096 1 0 -deionize%2:40:00:: 02364767 1 0 -deipnosophist%1:18:00:: 09995829 1 0 -deism%1:09:00:: 06223922 1 0 -deist%1:18:00:: 10000459 1 0 -deist%3:01:00:: 02931554 1 0 -deistic%3:01:00:: 02931554 1 0 -deity%1:18:00:: 09505418 1 2 -deixis%1:09:00:: 06179985 1 0 -deja_vu%1:09:00:: 05810440 1 7 -deject%2:37:00:: 01814396 1 0 -dejected%3:00:00:: 00703109 1 1 -dejectedly%4:02:00:: 00299161 1 0 -dejectedness%1:12:00:: 07537668 1 0 -dejection%1:26:00:: 14486533 1 2 -dejection%1:27:00:: 14854262 2 0 -dejeuner%1:13:00:: 07575076 1 0 -dekagram%1:23:00:: 13724350 1 0 -dekaliter%1:23:00:: 13624509 1 0 -dekalitre%1:23:00:: 13624509 1 0 -dekameter%1:23:00:: 13659419 1 0 -dekametre%1:23:00:: 13659419 1 0 -dekker%1:18:00:: 10928140 1 0 -dekko%1:04:00:: 00882045 1 0 -del_rio%1:15:00:: 09143973 1 0 -delacroix%1:18:00:: 10928498 1 0 -delairea%1:20:00:: 11960540 1 0 -delairea_odorata%1:20:00:: 11960673 1 0 -delavirdine%1:06:00:: 03172432 1 0 -delaware%1:10:00:: 06909571 5 0 -delaware%1:15:00:: 09069862 4 0 -delaware%1:15:01:: 09070120 3 0 -delaware%1:17:00:: 09264116 1 1 -delaware%1:18:00:: 09654518 2 0 -delaware_bay%1:17:00:: 09264425 1 0 -delaware_memorial_bridge%1:06:00:: 03172602 1 0 -delaware_river%1:17:00:: 09264116 1 1 -delawarean%1:18:00:: 09741999 1 0 -delawarian%1:18:00:: 09741999 1 0 -delay%1:04:00:: 01066163 2 2 -delay%1:28:00:: 15272029 1 2 -delay%2:30:00:: 00459776 1 8 -delay%2:30:01:: 00460900 3 3 -delay%2:30:05:: 00440286 4 0 -delay%2:42:00:: 02641957 2 6 -delay_line%1:06:00:: 03172965 1 0 -delayed%5:00:00:retarded:00 01841295 1 0 -delayed_action%1:06:00:: 03172738 1 0 -delayed_allergy%1:26:00:: 14532659 1 0 -delayer%1:18:00:: 10000616 1 0 -delbruck%1:18:00:: 10928810 1 0 -delectability%1:07:00:: 04995793 1 0 -delectable%5:00:00:desirable:00 00733406 2 0 -delectable%5:00:00:tasty:00 02396720 1 0 -delectation%1:04:00:: 01072072 2 0 -delectation%1:12:00:: 07491038 1 0 -delegacy%1:04:00:: 00165178 3 0 -delegacy%1:14:00:: 08402442 2 0 -delegacy%1:26:00:: 14000403 1 0 -delegate%1:18:00:: 10000787 1 1 -delegate%2:41:00:: 02391803 2 1 -delegate%2:41:01:: 02395395 1 5 -delegating%1:04:00:: 01140839 1 0 -delegation%1:04:00:: 01140839 2 0 -delegation%1:14:00:: 08402442 1 1 -delete%2:30:00:: 00200863 3 0 -delete%2:32:00:: 00999815 2 0 -delete%2:35:00:: 01549187 1 0 -deleterious%5:00:00:harmful:00 01161059 1 0 -deletion%1:04:00:: 00394610 4 0 -deletion%1:10:00:: 06428216 3 0 -deletion%1:11:00:: 07425577 2 0 -deletion%1:22:00:: 13524399 1 0 -delf%1:06:00:: 03173142 1 0 -delft%1:06:00:: 03173270 1 0 -delhi%1:15:00:: 08903220 1 0 -delhi_boil%1:26:00:: 14181187 1 1 -deli%1:06:00:: 03173387 1 0 -deliberate%2:32:00:: 00812580 2 0 -deliberate%2:32:01:: 00813044 1 0 -deliberate%5:00:00:intended:00 01337939 1 2 -deliberate%5:00:00:unhurried:00 01271961 2 2 -deliberate_defence%1:04:00:: 00961328 1 0 -deliberate_defense%1:04:00:: 00961328 1 0 -deliberately%4:02:00:: 00062330 1 12 -deliberately%4:02:01:: 00507323 2 2 -deliberateness%1:07:00:: 04661151 2 0 -deliberateness%1:07:01:: 05061977 1 0 -deliberation%1:07:00:: 04661151 5 0 -deliberation%1:07:01:: 05061977 4 0 -deliberation%1:09:00:: 05796423 3 0 -deliberation%1:09:01:: 05785067 2 1 -deliberation%1:10:00:: 07142365 1 1 -deliberative%5:00:00:thoughtful:00 02420215 1 0 -deliberative_assembly%1:14:00:: 08295894 1 0 -delibes%1:18:00:: 10928978 1 0 -delible%5:00:00:eradicable:00 00897681 1 0 -delicacy%1:07:00:: 04813066 1 2 -delicacy%1:07:01:: 04842029 6 0 -delicacy%1:07:02:: 05041503 5 0 -delicacy%1:07:03:: 05107216 4 0 -delicacy%1:07:04:: 04632866 7 0 -delicacy%1:09:00:: 05751707 3 0 -delicacy%1:13:00:: 07557165 2 1 -delicate%3:00:00:: 00705891 1 6 -delicate%5:00:00:breakable:00 00709215 3 3 -delicate%5:00:00:difficult:00 00746994 6 1 -delicate%5:00:00:refined:01 01948389 5 1 -delicate%5:00:00:sensitive:01 02103982 7 0 -delicate%5:00:00:skilled:00 02227344 2 3 -delicate%5:00:00:tender:02 02448324 4 1 -delicately%4:02:00:: 00102463 1 1 -delicatessen%1:06:00:: 03173387 2 0 -delicatessen%1:13:00:: 07594406 1 0 -delicatessen_food%1:13:00:: 07594406 1 0 -delichon%1:05:00:: 01595841 1 0 -delichon_urbica%1:05:00:: 01595974 1 0 -delicious%1:13:00:: 07740220 1 0 -delicious%5:00:00:pleasing:00 01807964 1 2 -delicious%5:00:00:tasty:00 02396720 2 0 -deliciously%4:02:00:: 00228546 1 1 -deliciously%4:02:01:: 00393688 2 0 -deliciousness%1:07:00:: 04995793 1 0 -delight%1:09:00:: 05829782 2 0 -delight%1:12:00:: 07491038 1 9 -delight%2:34:00:: 01190948 2 3 -delight%2:37:00:: 01815628 1 5 -delight%2:37:02:: 01817314 3 0 -delighted%5:00:00:enchanted:00 00865620 2 0 -delighted%5:00:00:pleased:00 01805730 1 3 -delightedly%4:02:00:: 00299334 1 0 -delightful%5:00:00:pleasing:00 01807964 1 11 -delightfully%4:02:00:: 00299448 1 2 -delilah%1:18:00:: 10929116 1 0 -delilah%1:18:01:: 10055410 2 0 -delimit%2:31:00:: 00730301 3 0 -delimit%2:42:00:: 02611630 1 1 -delimit%2:42:01:: 02693842 2 0 -delimitate%2:31:00:: 00730301 2 0 -delimitate%2:42:00:: 02611630 1 0 -delimitation%1:15:00:: 08512736 1 0 -delimited%5:00:00:finite:00 01006788 1 0 -delineate%2:32:00:: 00989084 5 0 -delineate%2:35:00:: 01582645 4 0 -delineate%2:36:00:: 01689379 3 0 -delineate%2:42:00:: 02611630 2 0 -delineate%2:42:01:: 02736778 1 0 -delineate%3:00:00:: 01714985 1 0 -delineated%3:00:00:: 01714985 1 0 -delineation%1:04:00:: 00900726 3 0 -delineation%1:06:00:: 03173524 2 0 -delineation%1:10:01:: 07201804 1 1 -delineative%5:00:00:representational:00 01979326 1 0 -delinquency%1:04:00:: 00736219 3 0 -delinquency%1:07:00:: 04666083 2 0 -delinquency%1:21:00:: 13300324 1 0 -delinquent%1:18:00:: 10000945 1 0 -delinquent%5:00:00:due:00 00137120 3 0 -delinquent%5:00:00:guilty:00 01322488 1 0 -delinquent%5:00:00:negligent:00 00755220 2 0 -deliquesce%2:30:00:: 00376625 2 0 -deliquesce%2:30:01:: 00553053 1 0 -deliquescent%5:00:00:hydrophilic:00 00492157 1 0 -deliquium%1:11:00:: 07478318 1 0 -delirious%5:00:00:ill:01 02543823 1 0 -delirious%5:00:00:wild:02 02390724 2 0 -deliriously%4:02:00:: 00308200 1 1 -deliriously%4:02:01:: 00308307 2 0 -delirium%1:26:00:: 14387202 2 0 -delirium%1:26:01:: 14391876 1 2 -delirium_tremens%1:26:00:: 14398279 1 0 -delist%2:40:00:: 02364849 1 0 -delius%1:18:00:: 10929316 1 0 -deliver%2:29:01:: 00056930 12 0 -deliver%2:32:00:: 00989602 1 21 -deliver%2:32:01:: 01062253 6 1 -deliver%2:32:02:: 00989869 7 1 -deliver%2:35:00:: 01438304 2 15 -deliver%2:35:06:: 01509079 11 0 -deliver%2:40:01:: 02293321 3 6 -deliver%2:40:02:: 02235229 10 0 -deliver%2:40:07:: 02358327 9 0 -deliver%2:41:00:: 02503365 5 2 -deliver%2:41:01:: 02551144 4 3 -deliver%2:41:03:: 02551602 8 0 -deliver_the_goods%2:41:00:: 02524171 1 0 -deliverable%1:06:00:: 03173736 1 0 -deliverable%3:01:00:: 02710438 1 0 -deliverance%1:04:00:: 00093483 1 1 -deliverer%1:18:00:: 10553805 2 0 -deliverer%1:18:01:: 10001058 4 0 -deliverer%1:18:02:: 10001217 3 0 -deliverer%1:18:03:: 11083656 1 0 -delivery%1:04:00:: 00093483 6 0 -delivery%1:04:01:: 01108753 4 0 -delivery%1:04:02:: 00042541 7 0 -delivery%1:04:03:: 00106272 5 0 -delivery%1:04:04:: 00317207 1 3 -delivery%1:10:00:: 07071483 3 0 -delivery%1:11:00:: 07320622 2 0 -delivery_boy%1:18:00:: 10001217 1 1 -delivery_truck%1:06:00:: 03173929 1 0 -delivery_van%1:06:00:: 03173929 1 0 -deliveryman%1:18:00:: 10001217 1 0 -dell%1:17:00:: 09264599 1 0 -delmonico_steak%1:13:00:: 07660463 1 0 -delocalize%2:40:00:: 02364965 1 0 -delonix%1:20:00:: 12494629 1 0 -delonix_regia%1:20:00:: 12494794 1 0 -delorme%1:18:00:: 10929437 1 0 -delouse%2:30:00:: 00531163 1 0 -delphi%1:15:00:: 08786855 1 0 -delphian%3:01:00:: 03060601 1 0 -delphic%3:01:00:: 03060601 1 0 -delphic%5:00:00:prophetic:00 01882621 2 0 -delphic_oracle%1:06:00:: 04407844 1 0 -delphinapterus%1:05:00:: 02072665 1 0 -delphinapterus_leucas%1:05:00:: 02072798 1 0 -delphinidae%1:05:00:: 02068735 1 0 -delphinium%1:20:00:: 11733054 1 0 -delphinium_ajacis%1:20:00:: 11732567 1 0 -delphinus%1:05:00:: 02069271 2 0 -delphinus%1:17:00:: 09264680 1 0 -delphinus_delphis%1:05:00:: 02069412 1 0 -delta%1:10:00:: 06834458 3 0 -delta%1:17:00:: 09264803 1 1 -delta%1:25:00:: 13880102 2 0 -delta_hepatitis%1:26:00:: 14131247 1 0 -delta_iron%1:27:00:: 14722426 1 0 -delta_ray%1:17:00:: 09265025 1 0 -delta_rhythm%1:19:00:: 11445187 1 0 -delta_wave%1:19:00:: 11445187 1 0 -delta_wing%1:06:00:: 03174079 1 0 -deltasone%1:27:00:: 14753414 1 0 -deltoid%1:08:00:: 05549350 1 3 -deltoid%5:00:00:simple:01 02167894 1 0 -deltoid_eminence%1:08:00:: 05248921 1 0 -deltoid_leaf%1:20:00:: 13157971 1 0 -deltoid_muscle%1:08:00:: 05549350 1 0 -deltoid_tuberosity%1:08:00:: 05248921 1 0 -delude%2:41:00:: 02575082 1 1 -deluge%1:19:00:: 11502102 2 0 -deluge%1:19:01:: 11454591 3 0 -deluge%1:23:00:: 13775706 1 1 -deluge%2:30:00:: 00217700 3 0 -deluge%2:32:00:: 00751131 2 0 -deluge%2:35:00:: 01524523 1 0 -delusion%1:04:00:: 00754767 3 0 -delusion%1:09:00:: 05896733 2 0 -delusion%1:26:00:: 14376855 1 0 -delusional%5:00:00:neurotic:00 01583880 1 0 -delusional_disorder%1:26:00:: 14387349 1 0 -delusions_of_grandeur%1:26:00:: 14377177 1 0 -delusions_of_persecution%1:26:00:: 14377375 1 0 -delusive%5:00:00:unrealistic:00 01942507 1 0 -delusively%4:02:00:: 00308427 1 0 -delusory%5:00:00:unreal:02 01938975 1 0 -deluxe%5:00:00:elegant:00 00850053 2 0 -deluxe%5:00:00:rich:03 02024928 1 0 -delve%2:35:00:: 01309701 1 1 -demagnetisation%1:22:00:: 13460991 1 0 -demagnetise%2:30:00:: 00400101 2 0 -demagnetise%2:32:00:: 00998762 1 0 -demagnetization%1:22:00:: 13460991 1 0 -demagnetize%2:30:00:: 00400101 2 0 -demagnetize%2:32:00:: 00998762 1 0 -demagog%1:18:00:: 10001481 1 0 -demagogic%3:01:00:: 03060782 1 0 -demagogical%3:01:00:: 03060782 1 0 -demagogue%1:18:00:: 10001481 1 1 -demagoguery%1:10:00:: 07187297 1 0 -demagogy%1:10:00:: 07187297 1 0 -demand%1:04:00:: 01061333 4 3 -demand%1:09:00:: 05892651 3 6 -demand%1:10:00:: 07191279 1 22 -demand%1:22:00:: 13461162 2 9 -demand%1:26:00:: 14449126 5 1 -demand%2:32:00:: 00754942 1 47 -demand%2:32:02:: 01017826 3 7 -demand%2:32:05:: 01068985 5 0 -demand%2:32:06:: 01018065 6 0 -demand%2:32:09:: 01069090 4 0 -demand%2:42:00:: 02627934 2 22 -demand-pull_inflation%1:22:00:: 13461390 1 0 -demand_deposit%1:21:00:: 13381303 1 0 -demand_feeding%1:04:00:: 01058181 1 0 -demand_for_explanation%1:10:00:: 07232053 1 0 -demand_for_identification%1:10:00:: 07232189 1 0 -demand_loan%1:21:00:: 13399275 1 0 -demand_note%1:21:00:: 13400580 1 0 -demander%1:18:00:: 10001647 1 1 -demanding%3:00:01:: 00710260 1 4 -demandingly%4:02:00:: 00502447 1 1 -demantoid%1:27:00:: 14829172 1 0 -demarcate%2:31:00:: 00730301 2 0 -demarcate%2:31:01:: 00730499 1 1 -demarcation%1:09:00:: 05748786 2 0 -demarcation%1:15:00:: 08592656 1 2 -demarcation_line%1:15:00:: 08592656 1 0 -demarche%1:04:00:: 00168121 1 0 -demasculinise%2:29:00:: 00060833 1 0 -demasculinize%2:29:00:: 00060833 1 0 -dematerialise%2:30:00:: 00344492 1 0 -dematerialize%2:30:00:: 00344492 1 0 -dematiaceae%1:20:00:: 13080471 1 0 -demavend%1:15:00:: 09174457 1 0 -demean%2:37:00:: 01800422 1 1 -demeaning%5:00:00:undignified:00 00752555 1 0 -demeaningly%4:02:00:: 00211231 1 0 -demeanor%1:07:00:: 04897762 1 3 -demeanour%1:07:00:: 04897762 1 0 -demeclocycline_hydrochloride%1:06:00:: 03174211 1 0 -demented%5:00:00:insane:00 02075321 1 0 -dementedly%4:02:00:: 00080890 1 0 -dementedness%1:26:00:: 14395403 1 0 -dementia%1:26:00:: 14395403 1 0 -dementia_praecox%1:26:00:: 14398523 1 0 -demerara%1:13:00:: 07596566 5 0 -demerara%1:13:01:: 07905296 4 0 -demerara%1:15:00:: 08948958 3 0 -demerara%1:17:00:: 09265134 2 0 -demerara%1:27:00:: 14829470 1 0 -demerara_rum%1:13:00:: 07905296 1 0 -demerara_sugar%1:13:00:: 07596566 1 0 -demerit%1:07:00:: 05139094 2 0 -demerit%1:10:00:: 06794980 1 0 -demerol%1:06:00:: 03747103 1 0 -demesne%1:15:00:: 08556491 2 0 -demesne%1:21:00:: 13246662 1 0 -demeter%1:18:00:: 09558569 1 0 -demetrius%1:18:00:: 10929657 1 0 -demetrius_i%1:18:00:: 10929657 1 0 -demetrius_poliorcetes%1:18:00:: 10929657 1 0 -demi-glaze%1:13:00:: 07837755 1 0 -demiglace%1:13:00:: 07837755 1 0 -demigod%1:18:00:: 09506216 2 0 -demigod%1:18:01:: 10001764 1 0 -demijohn%1:06:00:: 03174450 1 0 -demilitarise%2:33:00:: 01099390 1 0 -demilitarise%2:33:02:: 01087835 2 0 -demilitarize%2:33:00:: 01099390 1 0 -demilitarize%2:33:02:: 01087835 2 0 -demilitarized_zone%1:15:00:: 08689947 1 0 -demille%1:18:00:: 10930099 1 0 -demimondaine%1:18:00:: 10001882 1 0 -demimonde%1:14:00:: 08244895 1 1 -demineralisation%1:22:00:: 13461525 2 0 -demineralisation%1:26:00:: 14210716 1 0 -demineralise%2:30:00:: 00574514 1 0 -demineralization%1:22:00:: 13461525 2 0 -demineralization%1:26:00:: 14210716 1 1 -demineralize%2:30:00:: 00574514 1 0 -demise%1:28:00:: 15143477 1 0 -demise%2:40:00:: 02220914 1 0 -demisemiquaver%1:10:00:: 06871675 1 0 -demist%2:30:00:: 00361641 1 0 -demister%1:06:00:: 03174605 1 0 -demitasse%1:06:00:: 03174731 2 0 -demitasse%1:13:00:: 07919665 1 0 -demiurge%1:18:00:: 09538633 1 0 -demo%1:10:00:: 06879180 1 0 -demo%2:39:00:: 02148788 1 0 -demob%2:33:00:: 01088192 1 0 -demobilisation%1:04:00:: 01158190 1 0 -demobilise%2:33:00:: 01088192 2 0 -demobilise%2:33:03:: 01098206 1 0 -demobilization%1:04:00:: 01158190 1 0 -demobilize%2:33:00:: 01088192 2 0 -demobilize%2:33:03:: 01098206 1 0 -democracy%1:09:00:: 06217103 1 7 -democracy%1:09:01:: 05964445 3 0 -democracy%1:14:00:: 08361329 2 3 -democrat%1:18:00:: 10002031 2 1 -democrat%1:18:01:: 10002151 1 4 -democratic%3:00:00:: 00715140 1 13 -democratic%3:01:00:: 02710530 2 8 -democratic%5:00:00:common:01 00486539 3 0 -democratic-republican_party%1:14:00:: 08259318 1 0 -democratic_and_popular_republic_of_algeria%1:15:00:: 08705397 1 0 -democratic_front_for_the_liberation_of_palestine%1:14:00:: 08019523 1 0 -democratic_party%1:14:00:: 08259156 1 0 -democratic_people's_republic_of_korea%1:15:00:: 08955082 1 0 -democratic_republic_of_sao_tome_and_principe%1:15:00:: 08992648 1 0 -democratic_republic_of_the_congo%1:15:00:: 08734385 1 0 -democratic_socialist_republic_of_sri_lanka%1:15:00:: 08719100 1 0 -democratically%4:02:00:: 00122427 1 0 -democratisation%1:04:00:: 01237294 1 0 -democratise%2:41:00:: 02533907 1 0 -democratise%2:41:01:: 02533748 2 0 -democratization%1:04:00:: 01237294 1 0 -democratize%2:41:00:: 02533907 1 1 -democratize%2:41:01:: 02533748 2 1 -democritus%1:18:00:: 10930296 1 0 -demode%5:00:00:unfashionable:00 00974159 1 0 -demodulate%2:35:00:: 01351601 1 0 -demodulation%1:10:00:: 06282209 1 0 -demodulator%1:06:00:: 03181501 1 0 -demogorgon%1:18:00:: 09487546 1 0 -demographer%1:18:00:: 10002257 1 0 -demographic%1:09:00:: 06022076 1 0 -demographic%3:01:00:: 02906351 1 0 -demographist%1:18:00:: 10002257 1 0 -demography%1:09:00:: 06152125 1 0 -demoiselle%1:05:00:: 02606384 2 0 -demoiselle%1:18:00:: 09989168 1 0 -demolish%2:33:00:: 01083373 3 0 -demolish%2:36:00:: 01656458 1 2 -demolish%2:37:00:: 01800195 2 0 -demolished%5:00:00:destroyed:00 00735608 1 0 -demolishing%1:04:00:: 00218045 1 0 -demolition%1:04:00:: 01249483 2 0 -demolition%1:11:00:: 07334490 1 1 -demon%1:18:00:: 09542339 1 4 -demon%1:18:01:: 10329945 2 0 -demon%1:18:02:: 10002477 3 0 -demon-ridden%5:00:00:passionate:00 01726775 1 1 -demonetisation%1:04:00:: 00155085 1 0 -demonetise%2:30:00:: 00494103 1 0 -demonetization%1:04:00:: 00155085 1 0 -demonetize%2:30:00:: 00494103 1 0 -demoniac%1:18:00:: 10002644 1 0 -demoniac%5:00:00:insane:00 02074673 1 0 -demoniacal%5:00:00:insane:00 02074673 1 0 -demoniacally%4:02:00:: 00106036 1 0 -demonic%5:00:00:evil:00 01132515 1 0 -demonisation%1:10:00:: 06710152 1 0 -demonise%2:30:00:: 00547300 1 0 -demonism%1:09:00:: 05979595 1 0 -demonization%1:10:00:: 06710152 1 0 -demonize%2:30:00:: 00547300 1 0 -demonolatry%1:04:00:: 01046006 1 0 -demonstrability%1:07:00:: 04755466 1 0 -demonstrable%5:00:00:incontestable:00 00591147 1 1 -demonstrable%5:00:00:obvious:00 01619105 2 0 -demonstrably%4:02:00:: 00308559 1 1 -demonstrate%2:31:00:: 00664788 2 22 -demonstrate%2:32:00:: 00820976 3 2 -demonstrate%2:39:01:: 02148788 1 24 -demonstrate%2:41:00:: 02521816 4 1 -demonstrated%5:00:00:incontestable:00 00591298 1 1 -demonstration%1:04:00:: 00521562 1 8 -demonstration%1:04:01:: 01177703 3 3 -demonstration%1:04:02:: 00521970 2 5 -demonstration%1:10:00:: 06879180 5 0 -demonstration%1:10:03:: 06648046 4 2 -demonstrative%1:10:00:: 06325678 1 1 -demonstrative%3:00:00:: 00720296 1 0 -demonstrative%5:00:00:instructive:00 01323962 2 0 -demonstrative_of%5:00:00:supportive:00 02356048 1 0 -demonstrative_pronoun%1:10:00:: 06325678 1 0 -demonstratively%4:02:00:: 00326968 1 0 -demonstrativeness%1:07:00:: 04626879 1 0 -demonstrator%1:18:00:: 10002760 3 0 -demonstrator%1:18:01:: 10002982 2 0 -demonstrator%1:18:02:: 10003120 1 1 -demoralisation%1:04:00:: 00272713 3 0 -demoralisation%1:12:00:: 07537973 2 0 -demoralisation%1:26:00:: 13975988 1 0 -demoralise%2:37:00:: 01814396 2 0 -demoralise%2:41:00:: 02579447 1 0 -demoralised%5:00:00:pessimistic:00 01664880 1 0 -demoralising%5:00:00:discouraging:00 00867615 1 0 -demoralization%1:04:00:: 00272713 1 1 -demoralization%1:12:00:: 07537973 3 0 -demoralization%1:26:00:: 13975988 2 0 -demoralize%2:31:00:: 00622204 3 0 -demoralize%2:37:00:: 01814396 2 0 -demoralize%2:41:00:: 02579447 1 0 -demoralized%5:00:00:pessimistic:00 01664880 1 0 -demoralizing%5:00:00:discouraging:00 00867615 1 0 -demosthenes%1:18:00:: 10930428 1 0 -demosthenic%3:01:00:: 03030515 1 0 -demote%2:41:00:: 02399331 1 1 -demotic%1:10:00:: 06976833 2 0 -demotic%1:10:01:: 06990193 1 0 -demotic%3:01:01:: 02710672 1 0 -demotic%5:00:00:common:01 00486819 2 0 -demotic_script%1:10:00:: 06990193 1 0 -demotion%1:04:00:: 00198793 1 0 -dempsey%1:18:00:: 10930591 1 0 -demulcent%1:06:00:: 03174829 1 0 -demulcent%5:00:00:soft:01 01153844 1 0 -demulen%1:06:00:: 03174991 1 0 -demulsify%2:30:00:: 00501048 2 0 -demulsify%2:30:01:: 00501159 1 0 -demur%1:10:00:: 07209089 1 0 -demur%2:32:00:: 00807941 1 1 -demur%2:32:02:: 01016626 2 0 -demure%5:00:00:modest:01 01538118 1 2 -demurely%4:02:00:: 00299603 1 0 -demureness%1:07:00:: 04900236 1 0 -demureness%1:07:02:: 04788159 2 0 -demurrage%1:04:00:: 01066545 2 0 -demurrage%1:21:00:: 13324427 1 0 -demurral%1:10:00:: 07209089 1 0 -demurrer%1:04:00:: 01198750 3 0 -demurrer%1:10:00:: 07209089 1 0 -demurrer%1:10:01:: 06562802 2 0 -demyelinate%2:36:00:: 01757196 1 0 -demyelination%1:26:00:: 14058770 1 0 -demystify%2:30:00:: 00518852 1 0 -demythologisation%1:10:00:: 06769032 1 0 -demythologise%2:30:00:: 00135578 1 0 -demythologised%5:00:00:rational:00 01925979 1 0 -demythologization%1:10:00:: 06769032 1 6 -demythologize%2:30:00:: 00135578 1 3 -demythologized%5:00:00:rational:00 01925979 1 2 -den%1:06:00:: 03175081 4 0 -den%1:14:00:: 08214966 3 0 -den%1:15:00:: 08591399 1 0 -den%1:15:01:: 08584218 2 0 -den_haag%1:15:00:: 08950407 1 0 -den_mother%1:18:00:: 10003476 2 0 -den_mother%1:18:01:: 10003575 1 0 -denali%1:17:00:: 09349425 1 0 -denali_fault%1:17:00:: 09265274 1 0 -denali_national_park%1:15:00:: 08604283 1 0 -denary%5:00:00:multiple:00 02220207 1 0 -denary%5:00:00:quantitative:00 01915353 2 0 -denationalisation%1:04:00:: 01152033 1 0 -denationalise%2:30:00:: 00411792 1 0 -denationalization%1:04:00:: 01152033 1 0 -denationalize%2:30:00:: 00411792 1 0 -denaturalise%2:30:00:: 00412511 2 0 -denaturalise%2:30:01:: 00412860 1 0 -denaturalize%2:30:00:: 00412511 2 0 -denaturalize%2:30:01:: 00412860 1 0 -denaturant%1:27:00:: 14710024 1 0 -denature%2:30:00:: 00553727 3 0 -denature%2:30:01:: 00553874 2 0 -denature%2:30:02:: 00554110 1 0 -denatured%5:00:00:changed:00 00354692 1 0 -denatured_alcohol%1:27:00:: 14710164 1 0 -denaturised%5:00:00:changed:00 00354692 1 0 -denaturized%5:00:00:changed:00 00354692 1 0 -denazification%1:22:00:: 13461722 1 0 -denazify%2:30:00:: 00501288 1 0 -dendranthema%1:20:00:: 11960943 1 0 -dendranthema_grandifloruom%1:20:00:: 11961100 1 0 -dendraspis%1:05:00:: 01749428 1 0 -dendriform%5:00:00:branchy:00 00613382 1 0 -dendrite%1:08:00:: 05469861 1 0 -dendritic%3:01:00:: 02934066 1 0 -dendroaspis%1:05:00:: 01749428 1 0 -dendroaspis_augusticeps%1:05:00:: 01749742 1 0 -dendrobium%1:20:00:: 12059314 1 0 -dendrocalamus%1:20:00:: 12148610 1 0 -dendrocalamus_giganteus%1:20:00:: 12148757 1 0 -dendrocolaptes%1:05:00:: 01554311 1 0 -dendrocolaptidae%1:05:00:: 01554139 1 0 -dendroctonus%1:05:00:: 02180046 1 0 -dendroctonus_rufipennis%1:05:00:: 02180427 1 0 -dendroica%1:05:00:: 01568493 1 0 -dendroica_auduboni%1:05:00:: 01569262 1 0 -dendroica_coronata%1:05:00:: 01569423 1 0 -dendroica_fusca%1:05:00:: 01569060 1 0 -dendroica_petechia%1:05:00:: 01568892 1 0 -dendroica_striate%1:05:00:: 01569566 1 0 -dendroica_tigrina%1:05:00:: 01568720 1 0 -dendroid%5:00:01:branchy:00 00613382 1 0 -dendroidal%5:00:01:branchy:00 00613382 1 0 -dendrolagus%1:05:00:: 01879379 1 0 -dendromecon%1:20:00:: 11904896 1 0 -deneb%1:17:00:: 09265392 1 0 -denebola%1:17:00:: 09265492 1 0 -deng_xiaoping%1:18:00:: 10930778 1 0 -dengue%1:26:00:: 14129784 1 0 -dengue_fever%1:26:00:: 14129784 1 0 -deniable%3:00:00:: 00721157 1 0 -denial%1:04:00:: 01198750 5 0 -denial%1:04:01:: 00205649 4 1 -denial%1:10:00:: 07204401 1 4 -denial%1:10:01:: 07204240 2 3 -denial%1:22:00:: 13461951 3 1 -denier%1:18:00:: 10003283 3 0 -denier%1:21:00:: 13389359 2 0 -denier%1:23:00:: 13584746 1 0 -denigrate%2:32:00:: 00864475 1 0 -denigrate%2:32:01:: 00846509 2 0 -denigrating%5:00:00:harmful:00 01161233 1 0 -denigration%1:04:00:: 01220152 3 0 -denigration%1:04:01:: 01220336 2 0 -denigration%1:10:00:: 06718434 1 0 -denigrative%5:00:00:harmful:00 01161233 1 0 -denigratory%5:00:00:harmful:00 01161233 1 0 -denim%1:06:00:: 03175189 2 0 -denim%1:06:03:: 03594734 1 0 -denis_diderot%1:18:00:: 10934758 1 0 -denisonia%1:05:00:: 01747466 1 0 -denisonia_superba%1:05:00:: 01747589 1 0 -denitrify%2:30:00:: 00502332 1 0 -denizen%1:05:00:: 01315062 2 0 -denizen%1:18:00:: 09620078 1 0 -denmark%1:15:00:: 08761244 1 4 -denmark_vesey%1:18:00:: 11364570 1 0 -dennis_gabor%1:18:00:: 10986562 1 0 -dennstaedtia%1:20:00:: 13189222 1 0 -dennstaedtia_punctilobula%1:20:00:: 13189428 1 0 -dennstaedtiaceae%1:20:00:: 13188973 1 0 -denominate%2:32:00:: 01030132 1 0 -denomination%1:10:00:: 06338908 3 0 -denomination%1:14:00:: 08146782 1 10 -denomination%1:14:01:: 08006989 2 0 -denominational%3:01:00:: 02710825 1 4 -denominational%3:01:01:: 02710981 2 0 -denominational%5:00:00:sectarian:00 02091851 3 0 -denominationalism%1:09:00:: 06206021 1 0 -denominationalism%1:09:01:: 06198708 2 0 -denominationally%4:02:00:: 00093489 1 1 -denominator%1:23:00:: 13733066 1 0 -denotation%1:09:00:: 05922949 2 0 -denotation%1:10:00:: 07231048 1 0 -denotative%3:00:00:: 00722110 1 0 -denotative%5:00:00:literal:00 01418989 2 0 -denotatum%1:10:00:: 06603816 1 0 -denote%2:32:00:: 00931467 2 7 -denote%2:32:01:: 00932161 1 11 -denote%2:32:02:: 00974367 3 1 -denotive%3:00:00:: 00722110 1 0 -denouement%1:10:00:: 06743867 2 0 -denouement%1:11:00:: 07293080 1 1 -denounce%2:32:00:: 00841580 1 10 -denounce%2:32:01:: 00841986 4 0 -denounce%2:32:02:: 00842429 3 1 -denounce%2:41:00:: 02508245 2 2 -denouncement%1:10:00:: 07232988 1 0 -dense%5:00:00:heavy:01 01185264 3 1 -dense%5:00:00:impenetrable:00 01771839 2 1 -dense%5:00:00:stupid:00 00440579 4 0 -dense%5:00:00:thick:02 02416390 1 4 -dense-leaved_elodea%1:20:00:: 12614763 1 0 -dense_blazing_star%1:20:00:: 11991777 1 0 -densely%4:02:00:: 00299753 2 0 -densely%4:02:01:: 00323315 1 0 -denseness%1:07:00:: 04941453 3 0 -denseness%1:07:01:: 05088804 2 0 -denseness%1:09:01:: 05645854 1 1 -densification%1:11:00:: 07419233 1 0 -densimeter%1:06:00:: 03175301 1 0 -densitometer%1:06:00:: 03175457 1 0 -densitometer%1:06:01:: 03175301 2 0 -densitometry%1:04:00:: 01002008 1 1 -density%1:07:00:: 04941453 1 15 -density%1:07:01:: 05088804 2 2 -dent%1:07:00:: 04693384 3 0 -dent%1:19:00:: 11413661 1 1 -dent%1:25:00:: 13904843 2 0 -dent%2:35:00:: 01279631 1 3 -dent_corn%1:20:00:: 12144987 1 0 -dental%1:10:00:: 07115493 1 0 -dental%3:01:00:: 02711098 1 2 -dental%3:01:01:: 02711194 2 0 -dental_amalgam%1:27:00:: 14716550 1 0 -dental_anatomy%1:09:00:: 06059412 1 0 -dental_appliance%1:06:00:: 03175604 1 0 -dental_assistant%1:18:00:: 10003782 1 0 -dental_care%1:04:00:: 00656292 1 0 -dental_caries%1:22:00:: 13444513 1 0 -dental_consonant%1:10:00:: 07115493 1 0 -dental_floss%1:06:00:: 03175843 1 0 -dental_gold%1:27:00:: 14833618 1 0 -dental_hygienist%1:18:00:: 10003870 1 0 -dental_implant%1:06:00:: 03175983 1 0 -dental_medicine%1:09:00:: 06047430 1 0 -dental_orthopaedics%1:09:00:: 06048552 1 0 -dental_orthopedics%1:09:00:: 06048552 1 0 -dental_plaque%1:08:00:: 05244755 1 0 -dental_plate%1:06:00:: 03176386 1 0 -dental_practice%1:04:00:: 00632017 1 0 -dental_practitioner%1:18:00:: 10004282 1 0 -dental_procedure%1:04:00:: 01024547 1 0 -dental_school%1:14:00:: 08281963 1 0 -dental_surgeon%1:18:00:: 10004171 1 0 -dental_surgery%1:09:00:: 06048052 1 0 -dental_technician%1:18:00:: 10004019 1 0 -dentaria%1:20:00:: 11881563 1 0 -dentaria_bulbifera%1:20:00:: 11882237 1 0 -dentaria_diphylla%1:20:00:: 11882426 1 0 -dentate%5:00:00:rough:02 02246637 1 0 -dentate_leaf%1:20:00:: 13160831 1 0 -dentate_nucleus%1:08:00:: 05485988 1 0 -dented%5:00:00:damaged:00 00680005 1 0 -denticle%1:05:00:: 02156031 1 0 -denticulate%5:00:00:rough:02 02246733 1 0 -denticulate_leaf%1:20:00:: 13160938 1 0 -dentifrice%1:06:00:: 03176084 1 0 -dentin%1:08:00:: 05274446 2 0 -dentin%1:27:00:: 14757382 1 0 -dentine%1:08:00:: 05274446 2 0 -dentine%1:27:00:: 14757382 1 0 -dentist%1:18:00:: 10004282 1 3 -dentist's_drill%1:06:00:: 03176238 1 0 -dentistry%1:09:00:: 06047430 1 0 -dentition%1:08:00:: 05282433 2 0 -dentition%1:22:00:: 13565781 1 0 -denture%1:06:00:: 03176386 1 1 -denturist%1:18:00:: 10004019 1 0 -denudate%2:30:00:: 00194912 1 0 -denudate%5:00:00:bare:00 01698610 1 0 -denudation%1:04:00:: 00394803 1 0 -denude%2:30:00:: 00194912 1 0 -denuded%5:00:00:bare:00 01698610 1 0 -denumerable%5:00:00:calculable:00 00301589 1 0 -denunciation%1:10:00:: 07232988 1 3 -denunciative%5:00:00:inculpatory:00 00924635 1 0 -denunciatory%5:00:00:inculpatory:00 00924635 1 0 -denver%1:15:00:: 09068107 1 8 -deny%2:32:00:: 00816556 1 24 -deny%2:32:01:: 00817003 2 20 -deny%2:32:04:: 00817167 7 0 -deny%2:32:05:: 01068380 6 0 -deny%2:40:00:: 02212825 4 15 -deny%2:40:01:: 02214190 3 16 -deny%2:40:04:: 02213074 5 0 -deodar%1:20:00:: 11623967 1 0 -deodar_cedar%1:20:00:: 11623967 1 0 -deodorant%1:06:00:: 03176594 1 0 -deodorise%2:39:00:: 02126863 1 0 -deodorize%2:39:00:: 02126863 1 0 -deodourant%1:06:00:: 03176594 1 0 -deodourise%2:39:00:: 02126863 1 0 -deontic_logic%1:09:00:: 06166166 1 0 -deossification%1:22:00:: 13462084 1 0 -deoxidise%2:30:00:: 00237877 1 0 -deoxidize%2:30:00:: 00237877 1 0 -deoxyadenosine%1:27:00:: 15073018 1 0 -deoxyadenosine_monophosphate%1:27:00:: 14829565 1 0 -deoxycytidine%1:27:00:: 15073147 1 0 -deoxycytidine_monophosphate%1:27:00:: 14829765 1 0 -deoxyephedrine%1:06:00:: 03754295 1 0 -deoxygenate%2:40:00:: 02365073 1 0 -deoxyguanosine%1:27:00:: 15073285 1 0 -deoxyguanosine_monophosphate%1:27:00:: 14829964 1 0 -deoxyribonucleic_acid%1:27:00:: 14830364 1 0 -deoxyribose%1:27:00:: 14833514 1 0 -deoxythymidine%1:27:00:: 15073424 1 0 -deoxythymidine_monophosphate%1:27:00:: 14830164 1 0 -depardieu%1:18:00:: 10931059 1 0 -deparia%1:20:00:: 13196545 1 0 -deparia_acrostichoides%1:20:00:: 13196738 1 0 -depart%2:38:00:: 02008396 4 1 -depart%2:38:01:: 02014165 3 3 -depart%2:38:02:: 02066304 6 0 -depart%2:38:04:: 01848718 1 11 -depart%2:41:00:: 02383440 5 0 -depart%2:42:00:: 02661252 2 5 -departed%1:18:00:: 09994943 1 0 -departed%5:00:00:dead:01 00095873 2 0 -departed%5:00:00:past:00 01728919 1 0 -departer%1:18:00:: 10004539 1 0 -department%1:09:00:: 05853273 3 0 -department%1:14:00:: 08114861 1 28 -department%1:15:00:: 08548733 2 0 -department_head%1:18:00:: 10004718 1 0 -department_of_agriculture%1:14:00:: 08128964 1 3 -department_of_anthropology%1:14:00:: 08115602 1 0 -department_of_biology%1:14:00:: 08115912 1 0 -department_of_chemistry%1:14:00:: 08116073 1 0 -department_of_commerce%1:14:00:: 08129268 1 2 -department_of_commerce_and_labor%1:14:00:: 08144524 1 0 -department_of_computer_science%1:14:00:: 08116240 1 0 -department_of_corrections%1:14:00:: 08120624 1 0 -department_of_defense%1:14:00:: 08131530 1 6 -department_of_defense_laboratory_system%1:14:00:: 08132323 1 0 -department_of_economics%1:14:00:: 08116398 1 0 -department_of_education%1:14:00:: 08132637 1 0 -department_of_energy%1:14:00:: 08132955 1 0 -department_of_energy_intelligence%1:14:00:: 08133189 1 0 -department_of_english%1:14:00:: 08116565 1 0 -department_of_health_and_human_services%1:14:00:: 08133536 1 0 -department_of_health_education_and_welfare%1:14:00:: 08144720 1 1 -department_of_history%1:14:00:: 08116734 1 0 -department_of_homeland_security%1:14:00:: 08134807 1 0 -department_of_housing_and_urban_development%1:14:00:: 08135062 1 0 -department_of_justice%1:14:00:: 08135342 1 1 -department_of_justice_canada%1:14:00:: 08343324 1 0 -department_of_labor%1:14:00:: 08137495 1 2 -department_of_linguistics%1:14:00:: 08116879 1 0 -department_of_local_government%1:14:00:: 08120384 1 0 -department_of_mathematics%1:14:00:: 08117052 1 0 -department_of_music%1:14:00:: 08117540 1 0 -department_of_philosophy%1:14:00:: 08117225 1 0 -department_of_physics%1:14:00:: 08117379 1 0 -department_of_psychology%1:14:00:: 08117702 1 0 -department_of_sociology%1:14:00:: 08117872 1 0 -department_of_state%1:14:00:: 08137738 1 5 -department_of_the_federal_government%1:14:00:: 08122141 1 0 -department_of_the_interior%1:14:00:: 08139000 1 0 -department_of_the_treasury%1:14:00:: 08139795 1 0 -department_of_transportation%1:14:00:: 08143653 1 0 -department_of_veterans_affairs%1:14:00:: 08144122 1 0 -department_store%1:06:00:: 03176763 1 8 -departmental%3:01:00:: 03059966 1 1 -departmentally%4:02:00:: 00510943 1 0 -departure%1:04:00:: 00042757 1 8 -departure%1:11:00:: 07333649 3 0 -departure%1:11:01:: 07366289 2 2 -departure_gate%1:06:00:: 03176970 1 0 -departure_lounge%1:06:00:: 03177059 1 0 -departure_tax%1:21:00:: 13312434 1 0 -departure_time%1:28:00:: 15181094 1 0 -depend%2:31:00:: 00712708 2 0 -depend%2:42:00:: 02664234 1 10 -depend_on%2:42:00:: 02711987 1 39 -depend_on%2:42:01:: 02663848 3 0 -depend_on%2:42:02:: 02664017 2 0 -depend_upon%2:42:00:: 02711987 1 16 -depend_upon%2:42:02:: 02664017 2 0 -dependability%1:07:00:: 04670022 1 0 -dependable%3:00:00:: 00724081 1 4 -dependable%5:00:00:sound:00 02273643 4 0 -dependable%5:00:00:steady:00 02301969 3 0 -dependable%5:00:00:trustworthy:00 02465519 2 1 -dependableness%1:07:00:: 04670022 1 0 -dependably%4:02:00:: 00223395 1 0 -dependance%1:26:00:: 14001348 2 0 -dependance%1:26:01:: 14062725 1 0 -dependant%1:18:00:: 10004804 1 0 -dependant%5:00:00:addicted:00 00047406 2 0 -dependant%5:00:00:conditional:00 00556174 1 0 -dependant_on%5:00:00:conditional:00 00555859 1 0 -dependant_upon%5:00:00:conditional:00 00555859 1 0 -dependence%1:26:00:: 14001348 1 6 -dependence%1:26:01:: 14062725 2 0 -dependency%1:15:00:: 08499840 3 0 -dependency%1:26:00:: 14001348 1 3 -dependency%1:26:01:: 14062725 2 0 -dependent%1:18:00:: 10004804 1 2 -dependent%3:00:00:: 00725772 1 8 -dependent%3:00:02:: 00730470 3 0 -dependent%5:00:00:addicted:00 00047406 6 0 -dependent%5:00:00:conditional:00 00556174 2 2 -dependent%5:00:00:subordinate:02 02329864 5 0 -dependent%5:00:00:supported:00 02351370 4 0 -dependent_clause%1:10:00:: 06314808 1 0 -dependent_on%5:00:00:conditional:00 00555859 1 3 -dependent_upon%5:00:00:conditional:00 00555859 1 0 -dependent_variable%1:09:00:: 05858699 1 0 -depending_on%5:00:00:conditional:00 00555859 1 8 -depersonalisation%1:04:00:: 00932298 3 0 -depersonalisation%1:26:00:: 14394094 1 0 -depersonalisation%1:26:01:: 14026376 2 0 -depersonalisation_disorder%1:26:00:: 14394094 1 0 -depersonalisation_neurosis%1:26:00:: 14394094 1 0 -depersonalise%2:30:00:: 00388296 1 0 -depersonalization%1:04:00:: 00932298 3 0 -depersonalization%1:26:00:: 14394094 1 0 -depersonalization%1:26:01:: 14026376 2 0 -depersonalization_disorder%1:26:00:: 14394094 1 0 -depersonalization_neurosis%1:26:00:: 14394094 1 0 -depersonalize%2:30:00:: 00388296 1 1 -depict%2:32:01:: 00987071 2 6 -depict%2:36:00:: 01686956 1 6 -depict%2:36:01:: 01688256 3 2 -depicted%5:00:00:delineated:00 01715157 1 0 -depicted_object%1:06:00:: 04347225 1 1 -depicting%1:09:00:: 05766984 1 0 -depiction%1:04:00:: 00900726 4 0 -depiction%1:06:00:: 03173524 3 0 -depiction%1:09:00:: 05766984 2 0 -depiction%1:10:01:: 07201804 1 0 -depictive%5:00:00:representational:00 01979326 1 0 -depigmentation%1:07:00:: 04976687 1 0 -depilate%2:29:00:: 00037514 1 0 -depilation%1:04:00:: 00254597 2 0 -depilation%1:26:00:: 14457218 1 0 -depilator%1:06:00:: 03177165 1 0 -depilatory%1:06:00:: 03177165 2 0 -depilatory%1:27:00:: 14833729 1 0 -depilatory%5:00:00:hairless:00 00211221 1 0 -depilous%5:00:00:hairless:00 00211370 1 0 -deplane%2:38:00:: 02016298 1 0 -depletable%5:00:00:exhaustible:00 00925560 1 0 -deplete%2:34:00:: 01157517 1 0 -depleted%5:00:00:insufficient:00 02336759 1 0 -depletion%1:04:00:: 00356199 1 2 -depletion%1:26:00:: 14017332 2 0 -deplorable%5:00:00:bad:00 01126841 1 2 -deplorable%5:00:00:inferior:02 02347086 2 0 -deplorable%5:00:00:wrong:01 02035765 3 0 -deplorably%4:02:00:: 00093270 1 1 -deplore%2:32:00:: 00826333 1 2 -deplore%2:32:01:: 00911350 2 0 -deploy%2:33:00:: 01149327 1 2 -deploy%2:35:00:: 01379600 2 0 -deployment%1:04:00:: 01143409 1 0 -deplumate%2:35:00:: 01384275 1 0 -deplume%2:35:00:: 01384275 2 0 -deplume%2:40:00:: 02315048 1 0 -depokene%1:06:00:: 04518854 1 0 -depolarisation%1:19:00:: 11492240 1 0 -depolarise%2:30:00:: 00574341 1 0 -depolarization%1:19:00:: 11492240 1 0 -depolarize%2:30:00:: 00574341 1 0 -depone%2:32:00:: 01013040 1 0 -deponent%1:18:00:: 10703905 1 0 -depopulate%2:30:00:: 00531302 1 0 -depopulated%5:00:00:uninhabited:00 01313178 1 0 -depopulation%1:26:00:: 14519208 1 0 -deport%2:41:00:: 02499312 3 0 -deport%2:41:01:: 02503365 2 0 -deport%2:41:02:: 02518161 1 0 -deportation%1:04:00:: 00207761 1 0 -deportation%1:04:01:: 00207306 2 0 -deportee%1:18:00:: 10071139 1 2 -deportment%1:07:00:: 04897762 1 0 -depose%2:32:00:: 01013040 2 0 -depose%2:41:00:: 02405252 1 2 -deposer%1:18:00:: 10703905 1 0 -deposit%1:04:00:: 00372448 9 0 -deposit%1:06:00:: 03177349 8 0 -deposit%1:10:01:: 06685860 7 0 -deposit%1:17:00:: 09428967 2 1 -deposit%1:19:00:: 11445395 1 1 -deposit%1:21:00:: 13349834 5 0 -deposit%1:21:01:: 13381145 4 0 -deposit%1:21:02:: 13349662 6 0 -deposit%1:22:00:: 13462191 3 0 -deposit%2:35:00:: 01528069 1 3 -deposit%2:35:01:: 01575675 3 2 -deposit%2:40:00:: 02310855 2 2 -deposit_account%1:21:00:: 13364368 1 0 -deposit_box%1:06:00:: 04125257 1 0 -depositary%1:06:00:: 03177349 1 0 -deposition%1:04:00:: 00208943 4 0 -deposition%1:04:01:: 00372448 3 0 -deposition%1:10:00:: 07194499 2 0 -deposition%1:22:00:: 13462191 1 0 -depositor%1:18:00:: 10005006 1 1 -depository%1:06:00:: 03177349 1 0 -depository_financial_institution%1:14:00:: 08420278 1 0 -depository_library%1:06:00:: 03660664 1 0 -depot%1:06:00:: 04412901 1 1 -depot%1:06:01:: 04329190 2 0 -depravation%1:07:00:: 04850996 1 0 -deprave%2:41:00:: 02579447 1 1 -depraved%5:00:00:corrupt:00 00621524 1 0 -depravity%1:04:00:: 00746866 2 1 -depravity%1:07:00:: 04850996 1 3 -deprecate%2:32:00:: 00855933 2 0 -deprecate%2:32:01:: 00856429 1 0 -deprecating%5:00:00:uncomplimentary:00 00906655 1 1 -deprecation%1:04:00:: 01220152 2 0 -deprecation%1:10:00:: 07189932 1 0 -deprecative%5:00:00:critical:01 00648238 2 0 -deprecative%5:00:00:uncomplimentary:00 00906655 1 0 -deprecatively%4:02:00:: 00082492 1 0 -deprecatory%5:00:00:uncomplimentary:00 00906655 1 2 -depreciate%2:30:00:: 00315020 3 0 -depreciate%2:30:01:: 00315330 2 0 -depreciate%2:32:00:: 00855933 1 0 -depreciating%5:00:00:decreasing:00 02536911 1 0 -depreciation%1:04:00:: 00364600 1 2 -depreciation%1:10:00:: 06717170 3 0 -depreciation%1:21:00:: 13328357 2 1 -depreciation_allowance%1:21:00:: 13274487 1 0 -depreciation_charge%1:21:00:: 13307514 1 0 -depreciation_rate%1:21:00:: 13326450 1 0 -depreciative%5:00:00:decreasing:00 02536911 1 0 -depreciative%5:00:00:uncomplimentary:00 00906655 2 0 -depreciator%1:18:00:: 10009671 1 0 -depreciatory%5:00:00:decreasing:00 02536911 1 0 -depreciatory%5:00:00:uncomplimentary:00 00906655 2 0 -depredation%1:04:00:: 00967310 1 2 -depredation%1:11:00:: 07334876 2 0 -depress%2:30:00:: 00225438 5 0 -depress%2:35:10:: 01574766 4 0 -depress%2:35:12:: 01574923 3 0 -depress%2:37:00:: 01814396 1 3 -depress%2:38:00:: 01973932 2 1 -depressant%1:06:00:: 04166553 1 0 -depressant%3:00:00:: 02308214 1 0 -depressed%5:00:00:dejected:00 00703615 3 0 -depressed%5:00:00:low:02 01212867 1 1 -depressed%5:00:00:thin:01 02413221 2 0 -depressed_fracture%1:26:00:: 14293093 1 0 -depressing%3:00:00:: 00364479 1 0 -depressingly%4:02:00:: 00082575 1 0 -depression%1:04:01:: 00112674 10 0 -depression%1:12:00:: 07537485 4 1 -depression%1:17:00:: 09366017 3 3 -depression%1:24:00:: 13836715 9 0 -depression%1:25:00:: 13896369 8 0 -depression%1:26:00:: 14404160 1 4 -depression%1:26:01:: 14520829 6 0 -depression%1:26:02:: 14489113 2 3 -depression%1:26:03:: 14389240 7 0 -depression%1:28:00:: 15294211 5 0 -depressive%1:18:00:: 10005163 1 0 -depressive_disorder%1:26:00:: 14389240 1 0 -depressor%1:06:00:: 03177708 3 0 -depressor%1:08:00:: 05552467 1 0 -depressor%1:08:01:: 05476592 2 0 -depressor_muscle%1:08:00:: 05552467 1 0 -depressor_nerve%1:08:00:: 05476592 1 0 -depressurise%2:30:00:: 00403967 1 0 -depressurize%2:30:00:: 00403967 1 0 -deprivation%1:04:00:: 01150200 3 0 -deprivation%1:07:00:: 05162985 2 0 -deprivation%1:26:00:: 14493426 1 0 -deprive%2:30:00:: 00172732 3 0 -deprive%2:40:00:: 02313250 2 3 -deprive%2:40:01:: 02314275 1 3 -deprived%5:00:00:underprivileged:00 01864666 1 0 -depth%1:07:00:: 05134547 1 32 -depth%1:07:01:: 05094725 2 8 -depth%1:07:02:: 05134353 6 0 -depth%1:09:00:: 05613962 5 0 -depth%1:15:00:: 08500213 3 1 -depth%1:26:00:: 14441083 4 0 -depth_bomb%1:06:00:: 03177856 1 0 -depth_charge%1:06:00:: 03177856 1 0 -depth_finder%1:06:00:: 03178000 1 0 -depth_gage%1:06:00:: 03178173 1 0 -depth_gauge%1:06:00:: 03178173 1 0 -depth_psychology%1:04:00:: 00704305 1 0 -deputation%1:04:00:: 01140839 2 0 -deputation%1:14:00:: 08402442 1 0 -depute%2:41:00:: 02395395 1 0 -depute%2:41:01:: 02394445 2 0 -depute%2:41:03:: 02391803 3 0 -deputise%2:41:00:: 02394445 2 0 -deputise%2:41:09:: 02394662 1 0 -deputize%2:41:00:: 02394445 2 0 -deputize%2:41:09:: 02394662 1 0 -deputy%1:18:00:: 10005280 2 1 -deputy%1:18:01:: 10005548 1 9 -deputy%1:18:02:: 10005721 4 0 -deputy%1:18:03:: 10005934 3 0 -deputy_sheriff%1:18:00:: 10005548 1 1 -der_fuhrer%1:18:00:: 11052672 1 0 -deracinate%2:35:00:: 01566916 2 0 -deracinate%2:41:00:: 02538553 1 0 -deracination%1:04:00:: 00115803 2 0 -deracination%1:04:01:: 00315830 1 0 -derail%2:38:00:: 02011865 2 0 -derail%2:38:01:: 02012043 1 0 -derailment%1:11:00:: 07302267 1 0 -derain%1:18:00:: 10931333 1 0 -derange%2:30:00:: 00276601 2 0 -derange%2:37:01:: 01764586 1 0 -deranged%5:00:00:insane:00 02075847 1 2 -derangement%1:04:00:: 00554850 2 0 -derangement%1:26:00:: 14397714 1 0 -derate%2:30:00:: 00531644 1 0 -derby%1:06:00:: 02881757 1 0 -derby_hat%1:06:00:: 02881757 1 0 -derecognise%2:41:00:: 02445100 1 0 -derecognize%2:41:00:: 02445100 1 0 -deregulate%2:41:00:: 02512005 1 0 -deregulating%1:04:00:: 00805337 1 0 -deregulation%1:04:00:: 00805337 1 0 -derelict%1:06:00:: 02666501 2 0 -derelict%1:18:00:: 10006081 1 0 -derelict%5:00:00:damaged:00 00679717 4 0 -derelict%5:00:00:negligent:00 00755220 3 0 -derelict%5:00:00:uninhabited:00 01313004 2 0 -derelict%5:00:00:worn:00 02581530 1 0 -dereliction%1:04:00:: 00738966 2 1 -dereliction%1:07:00:: 04666083 1 1 -derequisition%2:40:00:: 02276202 1 0 -derestrict%2:41:00:: 02510071 1 0 -deride%2:32:00:: 00852922 1 2 -derision%1:04:00:: 01224517 2 0 -derision%1:10:00:: 06715638 1 5 -derisive%5:00:00:disrespectful:00 01995596 1 1 -derisively%4:02:00:: 00301168 1 0 -derisorily%4:02:00:: 00301168 1 0 -derisory%5:00:00:foolish:00 02570643 1 0 -derivable%5:00:00:derived:00 00698506 1 0 -derivation%1:04:00:: 00392335 8 0 -derivation%1:04:01:: 00392468 7 0 -derivation%1:04:02:: 00392582 6 0 -derivation%1:07:00:: 04922787 5 0 -derivation%1:09:00:: 05780718 3 1 -derivation%1:10:01:: 06744154 2 1 -derivation%1:15:00:: 08508105 1 1 -derivation%1:22:00:: 13462387 4 0 -derivational%3:00:00:: 00113245 1 0 -derivational_morphology%1:09:00:: 06178380 1 0 -derivative%1:09:00:: 06014730 1 1 -derivative%1:10:00:: 06290051 4 0 -derivative%1:10:01:: 06480506 3 0 -derivative%1:27:00:: 14833885 2 0 -derivative%5:00:00:derived:00 00698586 1 0 -derivative_instrument%1:10:00:: 06480506 1 0 -derive%2:30:00:: 00251615 4 3 -derive%2:30:01:: 00251791 3 7 -derive%2:31:00:: 00636574 1 25 -derive%2:40:00:: 02292125 2 11 -derive%2:42:00:: 02737187 5 1 -derived%3:00:00:: 00698262 1 1 -derived_function%1:09:00:: 06014730 1 0 -deriving%1:10:00:: 06744154 1 0 -derma%1:08:00:: 05243879 1 0 -dermabrasion%1:04:00:: 00395017 1 0 -dermacentor%1:05:00:: 01778984 1 0 -dermacentor_variabilis%1:05:00:: 01779148 1 0 -dermal%3:01:00:: 02875930 2 0 -dermal%3:01:01:: 02876088 1 0 -dermal%3:01:02:: 02875707 3 0 -dermaptera%1:05:00:: 02272707 1 0 -dermatitis%1:26:00:: 14224757 1 0 -dermatobia%1:05:00:: 02194078 1 0 -dermatobia_hominis%1:05:00:: 02194249 1 0 -dermatoglyphic%1:25:00:: 13906484 1 0 -dermatoglyphics%1:09:00:: 06041955 1 0 -dermatologic%3:01:00:: 02916230 1 0 -dermatological%3:01:00:: 02916230 1 0 -dermatologist%1:18:00:: 10006177 1 0 -dermatology%1:09:00:: 06049500 1 0 -dermatome%1:06:00:: 03178316 1 0 -dermatomycosis%1:26:00:: 14181948 1 0 -dermatomyositis%1:26:00:: 14209348 1 0 -dermatophytosis%1:26:00:: 14181948 1 0 -dermatosclerosis%1:26:00:: 14565196 1 0 -dermatosis%1:26:00:: 14225045 1 0 -dermestidae%1:05:00:: 02170269 1 0 -dermic%3:01:00:: 02875930 1 0 -dermis%1:08:00:: 05243879 1 0 -dermochelyidae%1:05:00:: 01665238 1 0 -dermochelys%1:05:00:: 01665372 1 0 -dermochelys_coriacea%1:05:00:: 01665541 1 0 -dermoid_cyst%1:26:00:: 14201682 1 0 -dermoptera%1:05:00:: 02502085 1 0 -derogate%2:32:00:: 00864475 1 0 -derogation%1:04:00:: 00232147 2 0 -derogation%1:10:00:: 06717170 1 0 -derogative%5:00:00:uncomplimentary:00 00907032 1 0 -derogatory%5:00:00:uncomplimentary:00 00907032 1 0 -derrick%1:06:00:: 03178430 2 0 -derrick%1:06:01:: 03178538 1 1 -derrida%1:18:00:: 10931452 1 0 -derriere%1:08:00:: 05559256 1 0 -derring-do%1:04:00:: 00043116 1 0 -derringer%1:06:00:: 03178674 1 0 -derris%1:20:00:: 12525513 1 0 -derris_elliptica%1:20:00:: 12525753 1 0 -derris_root%1:20:00:: 12525753 1 0 -derv%1:27:00:: 14686020 1 0 -dervish%1:18:00:: 10006337 1 1 -des%1:06:00:: 03193882 2 0 -des%1:27:00:: 14750122 1 1 -des_moines%1:15:00:: 09086995 1 0 -desacralize%2:40:00:: 02221794 1 0 -desalinate%2:30:00:: 00531904 1 0 -desalination%1:22:00:: 13462795 1 0 -desalinisation%1:22:00:: 13462795 1 0 -desalinise%2:30:00:: 00531904 1 0 -desalinization%1:22:00:: 13462795 1 0 -desalinize%2:30:00:: 00531904 1 0 -desalt%2:30:00:: 00531904 1 0 -descale%2:35:00:: 01264148 1 0 -descant%1:10:00:: 07032026 1 0 -descant%2:32:00:: 01050651 2 0 -descant%2:32:01:: 01034647 3 0 -descant%2:36:00:: 01710836 1 0 -descant_on%2:36:00:: 01704129 1 0 -descartes%1:18:00:: 10931854 1 0 -descend%2:30:13:: 00342164 4 0 -descend%2:38:00:: 01970826 1 12 -descend%2:41:00:: 02591312 3 1 -descend%2:42:00:: 02737187 2 3 -descendant%1:18:00:: 10006511 1 1 -descendant%5:00:00:descending:00 02486122 1 0 -descendant%5:00:00:related:01 01972204 2 0 -descendants%1:14:00:: 08369220 1 1 -descendent%1:18:00:: 10006511 1 1 -descendent%5:00:00:descending:00 02486122 1 0 -descendent%5:00:00:related:01 01972204 2 0 -descender%1:10:00:: 06800871 3 0 -descender%1:10:01:: 06830708 2 0 -descender%1:18:00:: 10006748 1 0 -descending%3:00:00:: 02485650 1 1 -descending_aorta%1:08:00:: 05336487 1 0 -descending_colon%1:08:00:: 05537243 1 0 -descending_node%1:15:00:: 08548924 1 0 -descensus%1:26:00:: 14559208 1 0 -descensus_uteri%1:26:00:: 14558801 1 0 -descent%1:04:00:: 00326440 3 1 -descent%1:07:00:: 04923743 2 2 -descent%1:11:00:: 07363346 1 2 -descent%1:14:00:: 08101937 6 0 -descent%1:17:00:: 09265620 5 0 -descent%1:24:00:: 13813042 4 0 -describable%5:00:00:expressible:00 00943599 1 0 -describe%2:31:00:: 00652346 4 1 -describe%2:32:00:: 00987071 1 77 -describe%2:32:01:: 00965035 2 52 -describe%2:35:00:: 01582645 3 1 -described%5:00:00:delineated:00 01715287 1 0 -description%1:09:00:: 05840076 3 0 -description%1:10:00:: 07201365 2 0 -description%1:10:01:: 06724763 1 27 -descriptive%3:00:00:: 00732318 2 0 -descriptive%3:00:02:: 00732682 1 2 -descriptive_adjective%1:10:00:: 06321932 1 0 -descriptive_anthropology%1:09:00:: 06146546 1 0 -descriptive_clause%1:10:00:: 06315454 1 0 -descriptive_geometry%1:09:00:: 06012340 1 0 -descriptive_grammar%1:09:00:: 06175829 1 0 -descriptive_linguistics%1:09:00:: 06181584 1 0 -descriptively%4:02:00:: 00301354 1 0 -descriptivism%1:09:00:: 06249910 2 0 -descriptivism%1:09:01:: 06250061 1 0 -descriptor%1:09:00:: 05823747 2 0 -descriptor%1:10:00:: 06290637 1 0 -descry%2:39:00:: 02154312 1 0 -descurainia%1:20:00:: 11884667 1 0 -descurainia_pinnata%1:20:00:: 11884967 1 0 -desecrate%2:32:00:: 00867062 2 0 -desecrate%2:41:00:: 02568065 1 1 -desecrated%3:00:00:: 00573770 1 0 -desecration%1:04:00:: 00746587 1 1 -desegrated%5:00:00:integrated:00 01326516 1 0 -desegregate%2:41:00:: 02481900 1 0 -desegregation%1:04:00:: 01202415 1 0 -desensitisation%1:22:00:: 13463255 1 0 -desensitisation_procedure%1:04:00:: 00701755 1 0 -desensitisation_technique%1:04:00:: 00701755 1 0 -desensitise%2:30:00:: 00272683 2 0 -desensitise%2:39:00:: 02114924 1 0 -desensitising%3:00:00:: 02108359 1 0 -desensitization%1:22:00:: 13463255 1 0 -desensitization_procedure%1:04:00:: 00701755 1 0 -desensitization_technique%1:04:00:: 00701755 1 0 -desensitize%2:30:00:: 00272683 2 0 -desensitize%2:39:00:: 02114924 1 0 -desensitizing%3:00:00:: 02108359 1 0 -desert%1:15:00:: 08505573 1 4 -desert%2:31:00:: 00614057 1 7 -desert%2:38:02:: 01842367 3 0 -desert%2:41:00:: 02584097 2 2 -desert_boot%1:06:00:: 02925666 1 0 -desert_four_o'clock%1:20:00:: 11840476 1 0 -desert_fox%1:18:00:: 11269515 1 0 -desert_holly%1:20:00:: 11831297 1 0 -desert_iguana%1:05:00:: 01678043 1 0 -desert_lynx%1:05:00:: 02127678 1 0 -desert_mariposa_tulip%1:20:00:: 12447891 1 0 -desert_olive%1:20:00:: 12302692 1 0 -desert_paintbrush%1:20:00:: 12880244 1 0 -desert_pea%1:20:00:: 12516828 1 0 -desert_plant%1:20:00:: 13121104 1 0 -desert_plume%1:20:00:: 11897466 1 0 -desert_rat%1:05:00:: 02350105 1 0 -desert_rheumatism%1:26:00:: 14147014 1 0 -desert_rose%1:20:00:: 11769176 1 0 -desert_sand_verbena%1:20:00:: 11837970 1 0 -desert_selaginella%1:20:00:: 13225244 1 0 -desert_soil%1:27:00:: 14834013 1 0 -desert_sunflower%1:20:00:: 11972291 1 0 -desert_tortoise%1:05:00:: 01671479 1 0 -desert_willow%1:20:00:: 12815198 1 0 -deserted%5:00:00:uninhabited:00 01313004 1 0 -deserter%1:18:00:: 10006842 2 0 -deserter%1:18:01:: 10007109 1 0 -desertic_soil%1:27:00:: 14834013 1 0 -desertification%1:22:00:: 13462989 1 0 -desertion%1:04:00:: 00055315 1 2 -desertion%1:04:01:: 00204439 2 0 -deserts%1:11:00:: 07294423 1 0 -deserve%2:42:00:: 02646378 1 29 -deserved%3:00:00:: 01371137 1 0 -deservedly%4:02:00:: 00301495 1 0 -deserving%5:00:00:worthy:00 02586206 1 2 -deservingness%1:07:00:: 04807050 1 0 -desex%2:29:00:: 00061595 1 0 -desexualise%2:29:00:: 00061595 2 0 -desexualise%2:38:00:: 01953675 1 0 -desexualize%2:29:00:: 00061595 2 0 -desexualize%2:38:00:: 01953675 1 0 -deshabille%1:26:00:: 14457838 1 0 -desiccant%1:27:00:: 14779796 1 0 -desiccate%2:30:00:: 00211108 3 0 -desiccate%2:30:04:: 00212790 1 0 -desiccate%2:30:05:: 00211396 2 0 -desiccate%5:00:00:dull:03 00806991 1 0 -desiccated%5:00:00:dry:01 02552849 1 0 -desiccated%5:00:00:dull:03 00806991 3 0 -desiccated%5:00:00:preserved:02 01072382 2 0 -desiccation%1:22:00:: 13460568 2 0 -desiccation%1:26:00:: 14536831 1 0 -desideratum%1:17:00:: 09265910 1 0 -desiderius_erasmus%1:18:00:: 10959857 1 0 -design%1:04:00:: 00928077 1 13 -design%1:06:00:: 03178782 4 2 -design%1:06:01:: 03179318 6 1 -design%1:09:00:: 05633385 7 0 -design%1:09:01:: 05728678 2 12 -design%1:09:02:: 05902327 3 3 -design%1:09:03:: 05982152 5 1 -design%2:31:00:: 00709625 2 28 -design%2:31:06:: 00698572 7 0 -design%2:36:00:: 01639714 4 8 -design%2:36:01:: 01640550 3 19 -design%2:36:02:: 01638368 1 31 -design%2:36:07:: 01753596 5 0 -design%2:36:09:: 01633825 6 0 -design_criteria%1:09:00:: 05925177 1 0 -designate%2:31:00:: 00709379 5 0 -designate%2:32:00:: 01030132 1 12 -designate%2:32:01:: 00746479 4 0 -designate%2:32:03:: 00923793 3 0 -designate%2:41:00:: 02391803 2 1 -designate%5:00:00:incoming:00 01294756 1 0 -designated_driver%1:18:00:: 10007511 1 0 -designated_hitter%1:18:00:: 10007684 1 0 -designation%1:04:00:: 00163779 2 0 -designation%1:04:01:: 00152018 3 0 -designation%1:10:00:: 06338908 1 2 -designative%5:00:00:denotative:00 00722611 1 0 -designatum%1:10:00:: 06603927 1 0 -designed%3:00:00:: 01339730 1 0 -designedly%4:02:00:: 00062330 1 0 -designer%1:18:00:: 09805475 2 1 -designer%1:18:01:: 09972157 5 0 -designer%1:18:02:: 10210648 1 2 -designer%1:18:03:: 10007809 4 0 -designer%1:18:04:: 10144055 3 0 -designer_drug%1:06:00:: 03179489 1 0 -designing%1:04:00:: 00928077 1 0 -designing%5:00:00:artful:00 00148852 1 0 -desipramine%1:06:00:: 03180153 1 0 -desirability%1:07:00:: 05141840 1 0 -desirability%1:07:01:: 04686935 2 0 -desirable%3:00:00:: 00732960 1 16 -desirable%5:00:00:eligible:00 00852197 2 0 -desirableness%1:07:00:: 05141840 1 0 -desirableness%1:07:01:: 04686935 2 0 -desire%1:07:00:: 04945057 2 9 -desire%1:12:00:: 07484265 1 32 -desire%1:26:00:: 14038993 3 2 -desire%2:37:00:: 01825237 1 25 -desire%2:37:01:: 01826378 3 2 -desire%2:37:02:: 01826723 2 2 -desire_to_know%1:09:00:: 05682798 1 0 -desired%5:00:00:desirable:00 00733297 1 5 -desired%5:00:00:wanted:00 02527220 2 1 -desirous%3:00:00:: 00887719 1 0 -desist%2:34:00:: 01196037 1 0 -desk%1:06:00:: 03179701 1 24 -desk-bound%5:00:00:inactive:01 00033886 1 0 -desk_clerk%1:18:00:: 10007995 1 0 -desk_dictionary%1:10:00:: 06419354 1 0 -desk_officer%1:18:00:: 10008123 1 1 -desk_phone%1:06:00:: 03179910 1 0 -desk_sergeant%1:18:00:: 10008254 1 0 -deskbound%5:00:00:inactive:01 00033886 1 0 -deskman%1:18:00:: 10008254 1 0 -desktop%1:06:00:: 02769075 2 0 -desktop%1:15:00:: 08663703 1 0 -desktop_computer%1:06:00:: 03180011 1 0 -desktop_publishing%1:04:00:: 01102256 1 0 -desmanthus%1:20:00:: 12525975 1 0 -desmanthus_ilinoensis%1:20:00:: 12526178 1 0 -desmid%1:05:00:: 01413457 1 0 -desmidiaceae%1:05:00:: 01413188 1 0 -desmidium%1:05:00:: 01413324 1 0 -desmodium%1:20:00:: 12526380 1 0 -desmodium_gyrans%1:20:00:: 12518013 1 0 -desmodium_motorium%1:20:00:: 12518013 1 0 -desmodium_purpureum%1:20:00:: 12526754 1 0 -desmodium_tortuosum%1:20:00:: 12526754 1 0 -desmodontidae%1:05:00:: 02150306 1 0 -desmodus%1:05:00:: 02150730 1 0 -desmodus_rotundus%1:05:00:: 02150885 1 0 -desmograthus%1:05:00:: 01636675 1 0 -desmond_tutu%1:18:00:: 11354001 1 0 -desolate%2:30:00:: 00531302 2 0 -desolate%2:30:01:: 00388635 3 0 -desolate%2:31:00:: 00614057 1 0 -desolate%5:00:00:inconsolable:00 01232507 2 0 -desolate%5:00:00:inhospitable:00 01242750 1 4 -desolately%4:02:00:: 00308767 1 0 -desolation%1:11:00:: 07335414 4 0 -desolation%1:12:02:: 07534108 3 0 -desolation%1:26:00:: 14562142 1 1 -desolation%1:26:01:: 14525548 2 0 -desorb%2:30:00:: 00570205 1 0 -desorb%2:30:01:: 00570003 2 0 -desorption%1:22:00:: 13463490 1 1 -desoxyribonucleic_acid%1:27:00:: 14830364 1 0 -despair%1:12:00:: 07541923 2 8 -despair%1:26:00:: 14486274 1 12 -despair%2:37:00:: 01810933 1 3 -despairing%5:00:00:hopeless:00 01229826 1 3 -despairingly%4:02:00:: 00301840 1 1 -despatch%1:04:00:: 00061290 4 0 -despatch%1:04:01:: 00222248 3 0 -despatch%1:07:00:: 05059830 2 0 -despatch%1:10:00:: 06682794 1 0 -despatch%2:38:00:: 01955127 1 2 -desperado%1:18:00:: 10008388 1 0 -desperate%1:18:00:: 10008535 1 1 -desperate%5:00:00:brave:00 00263463 4 1 -desperate%5:00:00:critical:03 00651451 6 0 -desperate%5:00:00:hopeless:00 01229826 1 7 -desperate%5:00:00:imperative:00 00713351 5 0 -desperate%5:00:00:resolute:00 01990507 2 3 -desperate%5:00:01:dangerous:00 02059626 3 1 -desperate_criminal%1:18:00:: 10008388 1 0 -desperate_measure%1:04:00:: 00179125 1 0 -desperate_straits%1:26:00:: 14033481 1 0 -desperately%4:02:00:: 00072849 1 9 -desperately%4:02:01:: 00506807 2 3 -desperation%1:07:00:: 04662390 2 0 -desperation%1:26:01:: 14486274 1 4 -despicability%1:07:00:: 04807971 1 0 -despicable%5:00:00:evil:00 01133017 1 0 -despicableness%1:07:00:: 04807971 1 0 -despicably%4:02:00:: 00309249 1 0 -despisal%1:12:00:: 07547674 1 0 -despise%2:37:00:: 01774799 1 8 -despised%5:00:00:unloved:00 01463537 1 1 -despising%1:12:00:: 07547674 1 0 -despite%1:04:00:: 00418787 2 0 -despite%1:12:00:: 07502980 1 0 -despiteful%5:00:00:malicious:00 00225099 1 0 -despitefully%4:02:00:: 00309351 1 0 -despoil%2:35:00:: 01565472 2 0 -despoil%2:40:00:: 02344568 1 1 -despoilation%1:04:00:: 00966869 1 0 -despoiled%5:00:00:destroyed:00 00735709 1 0 -despoiler%1:18:00:: 10443170 1 1 -despoilment%1:04:00:: 00966869 1 0 -despoina%1:18:00:: 09569467 1 0 -despoliation%1:04:00:: 00966869 1 0 -despond%2:37:00:: 01811172 1 0 -despondence%1:12:00:: 07538395 1 0 -despondency%1:12:00:: 07538395 1 1 -despondent%5:00:00:hopeless:00 01230153 1 3 -despondently%4:02:00:: 00301840 1 0 -despot%1:18:00:: 10735298 1 0 -despotic%3:01:00:: 02711292 1 0 -despotic%5:00:00:undemocratic:00 00717684 3 0 -despotic%5:00:02:undemocratic:00 00718137 2 0 -despotical%3:01:00:: 02711292 1 0 -despotism%1:14:00:: 08440630 2 0 -despotism%1:26:00:: 14443912 1 2 -desquamate%2:29:00:: 00009492 1 0 -desquamation%1:19:00:: 11445564 1 0 -dessert%1:13:00:: 07609840 1 2 -dessert_apple%1:13:00:: 07739506 1 0 -dessert_plate%1:06:00:: 03180280 1 0 -dessert_spoon%1:06:00:: 03180384 1 0 -dessert_wine%1:13:00:: 07896287 1 0 -dessertspoon%1:23:00:: 13770416 1 0 -dessertspoonful%1:23:00:: 13770416 1 0 -dessiatine%1:23:00:: 13614467 1 0 -destabilisation%1:04:00:: 01159461 1 0 -destabilise%2:30:00:: 00271711 2 0 -destabilise%2:30:01:: 00272177 1 0 -destabilization%1:04:00:: 01159461 2 0 -destabilization%1:11:00:: 07356489 1 0 -destabilize%2:30:00:: 00271711 2 0 -destabilize%2:30:01:: 00272177 1 0 -destain%2:40:00:: 02365168 1 0 -destalinisation%1:22:00:: 13463656 1 0 -destalinise%2:30:00:: 00569318 1 0 -destalinization%1:22:00:: 13463656 1 0 -destalinize%2:30:00:: 00569318 1 0 -destination%1:09:00:: 05981768 2 1 -destination%1:10:00:: 06787150 3 0 -destination%1:15:00:: 08567877 1 2 -destine%2:31:00:: 00709379 2 2 -destine%2:32:00:: 00746479 1 4 -destined%5:00:00:certain:03 00340626 2 0 -destined%5:00:00:oriented:00 01682822 1 0 -destiny%1:11:00:: 07330007 1 6 -destiny%1:18:00:: 09504915 2 1 -destiny%1:26:00:: 14473222 3 0 -destitute%5:00:00:nonexistent:00 00927978 2 0 -destitute%5:00:00:poor:00 02023430 1 0 -destitution%1:26:01:: 14493613 1 0 -destress%2:30:00:: 00514730 1 0 -destroy%2:33:00:: 01083373 3 2 -destroy%2:35:00:: 01564144 2 28 -destroy%2:35:01:: 01326528 4 0 -destroy%2:36:00:: 01619929 1 42 -destroyable%5:00:00:destructible:00 00738284 1 0 -destroyed%3:00:00:: 00734318 1 1 -destroyed%5:00:00:lost:02 01451402 2 1 -destroyer%1:06:00:: 03180504 1 1 -destroyer%1:18:00:: 10008716 2 0 -destroyer_escort%1:06:00:: 03180732 1 0 -destroying_angel%1:20:01:: 13003254 2 0 -destroying_angel%1:20:02:: 13003712 1 0 -destruct%2:36:00:: 01619929 2 0 -destruct%2:36:01:: 01620688 1 0 -destructibility%1:07:00:: 05043459 1 0 -destructible%3:00:00:: 00737973 1 0 -destruction%1:04:00:: 00217014 1 8 -destruction%1:11:00:: 07334490 2 6 -destruction%1:26:00:: 14562960 3 0 -destruction_fire%1:04:00:: 00990590 1 0 -destructive%3:00:00:: 00586183 1 6 -destructive-metabolic%5:00:00:catabolic:00 00108145 1 0 -destructive_distillation%1:22:00:: 13464031 1 0 -destructive_metabolism%1:22:00:: 13443787 1 0 -destructively%4:02:00:: 00309515 1 0 -destructiveness%1:07:00:: 05165904 1 0 -desuetude%1:26:00:: 14011724 1 0 -desulfurize%2:40:00:: 02365294 1 0 -desulphurize%2:40:00:: 02365294 1 0 -desultory%5:00:00:purposeless:00 01910819 1 1 -desynchronisation%1:24:00:: 13845838 1 0 -desynchronise%2:30:00:: 00394563 1 0 -desynchronization%1:24:00:: 13845838 1 0 -desynchronize%2:30:00:: 00394563 1 0 -desynchronizing%1:24:00:: 13845838 1 1 -desyrel%1:06:00:: 04476633 1 0 -detach%2:35:00:: 01299758 3 0 -detach%2:35:01:: 01298668 1 3 -detach%2:38:00:: 02031622 2 1 -detachable%3:00:00:: 00162083 1 1 -detached%3:00:00:: 00160573 4 0 -detached%5:00:00:separate:00 02110447 2 2 -detached%5:00:00:unconcerned:00 00546155 1 4 -detached%5:00:00:unconnected:00 00568304 3 1 -detached%5:00:00:unfixed:00 01060947 6 0 -detached%5:00:00:unloving:00 01467046 5 0 -detached_house%1:06:00:: 03180865 1 0 -detached_retina%1:26:00:: 14555962 1 0 -detachment%1:04:00:: 00390906 2 1 -detachment%1:11:00:: 07331400 5 0 -detachment%1:12:00:: 07506031 1 1 -detachment%1:14:00:: 08215248 4 0 -detachment%1:26:00:: 14415518 3 0 -detachment_of_the_retina%1:26:00:: 14555962 1 0 -detail%1:09:00:: 05817845 1 26 -detail%1:10:00:: 07137807 3 9 -detail%1:14:00:: 08404549 5 0 -detail%1:14:01:: 08243081 4 2 -detail%1:24:00:: 13809920 2 9 -detail%2:31:00:: 00678105 2 1 -detail%2:32:00:: 00956250 1 1 -detail_file%1:10:00:: 06510271 1 0 -detailed%5:00:00:careful:00 00310433 1 26 -detailing%1:10:00:: 07202812 1 0 -details%1:10:00:: 06635944 1 2 -detain%2:30:00:: 00459776 3 0 -detain%2:30:01:: 00460900 2 0 -detain%2:41:00:: 02495038 1 1 -detainee%1:18:00:: 10009162 1 0 -detainment%1:26:00:: 13999663 1 0 -detect%2:39:00:: 02154508 1 21 -detectable%5:00:00:noticeable:00 01287282 2 1 -detectable%5:00:00:perceptible:00 01746995 1 7 -detected%3:00:00:: 01609201 1 2 -detected%5:00:00:noticed:00 01608127 2 0 -detecting%1:04:00:: 00635205 1 1 -detection%1:04:00:: 00151087 2 2 -detection%1:04:01:: 00635205 4 0 -detection%1:09:00:: 05710687 1 4 -detection%1:10:00:: 06281175 3 0 -detective%1:18:00:: 10009276 1 27 -detective%1:18:01:: 10009484 2 1 -detective_agency%1:14:00:: 08354243 1 0 -detective_novel%1:10:00:: 06368142 1 0 -detective_story%1:10:00:: 06370985 1 2 -detective_work%1:04:00:: 00635205 1 0 -detector%1:06:00:: 03180969 1 4 -detector%1:06:01:: 03181293 3 0 -detector%1:06:02:: 03181501 2 0 -detent%1:06:00:: 03901548 1 0 -detente%1:04:00:: 00355420 1 0 -detention%1:04:00:: 01161635 2 0 -detention%1:26:00:: 13999663 1 0 -detention_basin%1:15:00:: 08519299 1 0 -detention_camp%1:06:00:: 03181667 1 0 -detention_cell%1:06:00:: 02917742 1 0 -detention_centre%1:06:00:: 02917742 1 0 -detention_home%1:06:00:: 03181667 1 0 -detention_house%1:06:00:: 03181667 1 0 -deter%2:32:00:: 00770141 2 0 -deter%2:32:01:: 00908099 1 1 -deterge%2:35:00:: 01393038 1 0 -detergence%1:07:00:: 05149127 1 0 -detergency%1:07:00:: 05149127 1 3 -detergent%1:06:00:: 03181899 2 3 -detergent%1:27:00:: 15097017 1 22 -detergent%5:00:00:purifying:00 02118181 1 0 -detergent_builder%1:27:00:: 15097209 1 1 -deteriorate%2:29:00:: 00092293 2 2 -deteriorate%2:30:00:: 00208497 1 4 -deterioration%1:22:00:: 13464204 2 0 -deterioration%1:26:00:: 14561618 1 1 -determent%1:10:00:: 07254057 1 0 -determinable%3:00:00:: 00738593 1 1 -determinant%1:09:00:: 05692419 1 2 -determinant%1:14:00:: 08269396 3 0 -determinant%1:27:00:: 15037664 2 0 -determinant%5:00:00:decisive:00 00684782 1 0 -determinate%3:00:01:: 00739932 1 1 -determinate%3:00:02:: 00741076 2 0 -determinate%5:00:00:conclusive:00 00550574 3 0 -determinateness%1:07:00:: 04754237 1 0 -determination%1:04:00:: 00151497 1 7 -determination%1:04:01:: 00162632 5 0 -determination%1:07:00:: 04864200 2 3 -determination%1:09:00:: 05838176 3 1 -determination%1:09:01:: 05788552 4 0 -determinative%1:09:00:: 05692419 2 0 -determinative%1:10:00:: 06324475 1 0 -determinative%5:00:00:decisive:00 00684782 1 0 -determine%2:31:00:: 00697589 5 9 -determine%2:31:01:: 00699815 3 18 -determine%2:31:02:: 00701040 2 21 -determine%2:31:03:: 00700708 6 7 -determine%2:32:00:: 00918872 1 107 -determine%2:32:01:: 00920336 8 0 -determine%2:32:03:: 00947077 4 11 -determine%2:32:05:: 00763399 7 1 -determined%3:00:00:: 01610339 2 0 -determined%5:00:00:ambitious:00 00104699 5 0 -determined%5:00:00:resolute:00 01990373 1 10 -determined%5:00:00:settled:02 02129908 4 0 -determined%5:00:00:stubborn:00 02328108 3 0 -determinedly%4:02:00:: 00212208 1 1 -determinedly%4:02:01:: 00262206 2 0 -determiner%1:09:00:: 05692419 3 0 -determiner%1:10:00:: 06324475 2 0 -determiner%1:10:01:: 06649567 1 0 -determining%5:00:00:decisive:00 00684782 1 1 -determining_factor%1:09:00:: 05692419 1 1 -determining_factor%1:10:00:: 06649567 2 0 -determinism%1:09:00:: 05971086 1 0 -determinist%1:18:00:: 10080508 1 0 -deterministic%5:00:00:settled:02 02130137 1 0 -deterrence%1:04:00:: 01076488 3 0 -deterrence%1:10:00:: 07254057 2 0 -deterrence%1:16:00:: 09180118 1 0 -deterrent%1:09:00:: 05689249 1 1 -deterrent%5:00:00:preventive:00 01764543 1 0 -deterrent_example%1:10:00:: 06672752 1 0 -detersive%5:00:00:purifying:00 02118181 1 0 -detest%2:37:00:: 01774136 1 2 -detestable%5:00:00:hateful:00 01460679 2 0 -detestable%5:00:00:offensive:01 01625063 1 0 -detestably%4:02:00:: 00309632 1 0 -detestation%1:12:00:: 07503430 1 0 -detested%5:00:00:unloved:00 01463537 1 0 -dethaw%2:30:00:: 00376106 1 0 -dethrone%2:41:00:: 02391453 1 0 -dethronement%1:04:00:: 00208943 1 0 -detick%2:40:00:: 02365396 1 0 -detonate%2:30:00:: 00306723 1 3 -detonate%2:30:01:: 00306298 2 0 -detonating_device%1:06:00:: 03182232 1 0 -detonating_fuse%1:06:00:: 03182140 1 1 -detonation%1:04:00:: 00377686 2 0 -detonation%1:11:00:: 07308563 1 0 -detonative%5:00:00:explosive:00 00474883 1 0 -detonator%1:06:00:: 03182232 1 0 -detour%1:06:00:: 03182506 1 0 -detour%2:38:00:: 02066203 1 0 -detox%1:06:00:: 03182683 1 0 -detox%2:29:00:: 00079788 1 0 -detoxicate%2:30:00:: 00505349 1 0 -detoxification%1:04:00:: 00699146 2 0 -detoxification%1:04:01:: 00699320 1 0 -detoxify%2:29:00:: 00079788 2 0 -detoxify%2:30:00:: 00505349 1 0 -detract%2:30:04:: 00532115 1 1 -detraction%1:04:00:: 01220754 2 0 -detraction%1:10:00:: 06719203 1 0 -detractive%5:00:00:decreasing:00 02537181 1 0 -detractor%1:18:00:: 10009671 1 1 -detrain%2:38:00:: 02016220 1 0 -detransitivise%2:30:00:: 00420909 1 0 -detransitivize%2:30:00:: 00420909 1 0 -detribalisation%1:04:00:: 00382906 2 0 -detribalisation%1:04:01:: 01152583 1 0 -detribalise%2:30:00:: 00160086 1 0 -detribalization%1:04:00:: 00382906 2 0 -detribalization%1:04:01:: 01152583 1 0 -detribalize%2:30:00:: 00160086 1 1 -detriment%1:11:00:: 07420538 1 0 -detrimental%5:00:00:harmful:00 01161984 1 0 -detrimentally%4:02:00:: 00309875 1 0 -detrition%1:04:00:: 00712031 3 0 -detrition%1:19:00:: 11460063 2 0 -detrition%1:22:00:: 13423615 1 0 -detritus%1:27:01:: 14857897 1 0 -detritus%1:27:02:: 14856134 2 0 -detroit%1:15:00:: 09100394 1 9 -detroit_river%1:17:00:: 09266052 1 0 -detumescence%1:22:00:: 13464440 1 0 -detusk%2:30:00:: 00198213 1 0 -deuce%1:06:00:: 03182795 4 0 -deuce%1:10:00:: 07125786 3 0 -deuce%1:23:00:: 13743269 2 0 -deuce%1:26:00:: 13947272 1 0 -deuce-ace%1:23:00:: 13744044 1 0 -deuced%5:00:00:cursed:00 00669942 1 0 -deucedly%4:02:00:: 00046639 1 0 -deus_ex_machina%1:18:00:: 10009926 1 0 -deuteranopia%1:26:00:: 14154168 1 0 -deuteranopic%5:00:00:blind:00 02159787 1 0 -deuterium%1:27:00:: 14641046 1 0 -deuterium_oxide%1:27:00:: 14727508 1 0 -deuteromycetes%1:20:00:: 12996068 1 0 -deuteromycota%1:20:00:: 12995724 1 0 -deuteromycotina%1:20:00:: 12995724 1 0 -deuteron%1:17:00:: 09266287 1 0 -deuteronomy%1:10:00:: 06433475 1 0 -deutsche_mark%1:23:00:: 13688033 1 0 -deutschland%1:15:00:: 08766988 1 0 -deutschmark%1:23:00:: 13688033 1 0 -deutzia%1:20:00:: 12790430 1 0 -devaluate%2:30:00:: 00315020 2 0 -devaluate%2:30:01:: 00493929 1 0 -devaluation%1:04:00:: 00353992 2 0 -devaluation%1:04:01:: 00805524 1 0 -devalue%2:30:00:: 00493703 2 0 -devalue%2:30:01:: 00315020 3 0 -devalue%2:30:02:: 00493929 1 0 -devalued%5:00:00:low:02 01212732 1 0 -devanagari%1:10:00:: 06352782 1 0 -devanagari_script%1:10:00:: 06352782 1 0 -devastate%2:30:00:: 00388635 1 3 -devastate%2:30:01:: 00260311 2 0 -devastating%5:00:00:destructive:00 00587697 3 0 -devastating%5:00:00:disrespectful:00 01995047 1 1 -devastating%5:00:01:destructive:00 00586617 2 1 -devastation%1:04:00:: 00217014 5 0 -devastation%1:04:01:: 00967157 4 0 -devastation%1:11:00:: 07335414 3 0 -devastation%1:12:00:: 07509827 2 0 -devastation%1:26:00:: 14562142 1 0 -devein%2:40:00:: 02365481 1 0 -develop%2:29:00:: 00094460 4 19 -develop%2:30:00:: 00252019 10 4 -develop%2:30:01:: 00253761 12 3 -develop%2:30:03:: 00339464 20 0 -develop%2:30:04:: 00171852 6 12 -develop%2:30:05:: 00342980 9 4 -develop%2:30:06:: 00545557 3 41 -develop%2:30:09:: 00411020 11 3 -develop%2:30:10:: 00543410 14 1 -develop%2:30:12:: 00234057 21 0 -develop%2:30:13:: 00402130 19 0 -develop%2:31:00:: 00603298 8 5 -develop%2:32:00:: 00925873 7 6 -develop%2:33:02:: 01074509 18 0 -develop%2:33:03:: 01074701 17 0 -develop%2:35:04:: 01469623 16 0 -develop%2:36:00:: 01738597 2 44 -develop%2:36:01:: 01738774 1 44 -develop%2:36:09:: 01627947 13 1 -develop%2:39:00:: 02138766 15 0 -develop%2:42:00:: 02624263 5 15 -developed%3:00:00:: 00741867 1 18 -developed%5:00:00:improved:00 01288895 3 0 -developed%5:00:00:industrial:00 01301840 2 0 -developer%1:06:00:: 03182912 2 0 -developer%1:18:00:: 10010062 1 4 -developing%1:22:00:: 13464557 1 0 -developing%5:00:00:nonindustrial:00 01302544 1 2 -developing_country%1:14:00:: 08167046 1 0 -development%1:04:01:: 00250259 1 52 -development%1:04:02:: 00948206 5 7 -development%1:10:00:: 07068631 9 0 -development%1:11:01:: 07423560 4 9 -development%1:15:00:: 08549070 6 6 -development%1:22:00:: 13464557 8 0 -development%1:22:01:: 13489037 3 11 -development%1:22:02:: 13464820 2 46 -development%1:26:00:: 14422871 7 4 -developmental%3:01:00:: 02945820 1 4 -developmental_age%1:07:00:: 04924878 1 0 -developmental_anatomy%1:09:00:: 06059540 1 0 -developmental_learning%1:09:00:: 05753207 1 0 -developmental_psychology%1:09:00:: 06138941 1 0 -developmentally%4:02:00:: 00302003 1 0 -developmentally_challenged%1:14:00:: 07948971 1 0 -deverbal_noun%1:10:00:: 06320314 1 0 -devi%1:18:00:: 09525279 1 0 -deviance%1:04:00:: 00737399 2 0 -deviance%1:26:00:: 14503665 1 0 -deviant%1:18:00:: 10419047 1 0 -deviant%5:00:00:abnormal:00 01596122 1 1 -deviate%1:18:00:: 10419047 1 0 -deviate%2:38:00:: 02064887 1 2 -deviate%2:38:01:: 02065085 3 0 -deviate%2:42:00:: 02661252 2 1 -deviate%5:00:00:abnormal:00 01596122 1 0 -deviated_nasal_septum%1:26:00:: 14093096 1 0 -deviated_septum%1:26:00:: 14092925 1 0 -deviation%1:04:00:: 00737399 4 0 -deviation%1:04:01:: 00350380 5 0 -deviation%1:07:01:: 04802776 3 0 -deviation%1:09:00:: 06022291 2 1 -deviation%1:11:00:: 07366289 1 2 -deviationism%1:04:00:: 00055932 1 0 -deviationist%1:18:00:: 10010243 1 0 -device%1:04:00:: 00171249 3 2 -device%1:06:00:: 03183080 1 36 -device%1:06:01:: 03185562 5 0 -device%1:06:02:: 03185746 4 0 -device%1:10:00:: 07068844 2 2 -device_characteristic%1:07:00:: 04917870 1 0 -device_driver%1:10:00:: 06574473 1 0 -devices%1:09:00:: 06198876 1 0 -devil%1:10:00:: 07125786 3 3 -devil%1:18:00:: 09542339 2 5 -devil%1:18:01:: 10329945 5 0 -devil%1:18:02:: 09543353 1 12 -devil%1:18:03:: 10169419 4 1 -devil%2:36:00:: 01665507 2 0 -devil%2:37:00:: 01787955 1 0 -devil's_advocate%1:18:00:: 10010400 1 0 -devil's_apples%1:20:00:: 12906498 1 0 -devil's_cigar%1:20:00:: 12984489 1 0 -devil's_claw%1:20:00:: 12875269 1 0 -devil's_darning_needle%1:05:00:: 02268443 2 0 -devil's_darning_needle%1:20:00:: 11731157 1 0 -devil's_fig%1:20:00:: 11902709 1 0 -devil's_flax%1:20:00:: 12884260 1 0 -devil's_food%1:13:00:: 07631109 1 0 -devil's_food_cake%1:13:00:: 07631109 1 0 -devil's_milk%1:20:01:: 12918609 2 0 -devil's_milk%1:20:02:: 12918810 1 0 -devil's_tongue%1:20:00:: 11783162 1 0 -devil's_turnip%1:20:00:: 12163279 1 0 -devil's_urn%1:20:00:: 12984595 1 0 -devil's_walking_stick%1:20:00:: 11797508 1 0 -devil's_weed%1:20:00:: 12723610 1 0 -devil-may-care%5:00:00:irresponsible:00 01998260 1 0 -devil-may-care%5:00:00:unconventional:01 00609341 2 0 -devil-worship%1:04:00:: 01046006 1 0 -devil_dog%1:18:00:: 10294139 1 0 -devil_grass%1:20:00:: 12115748 1 0 -devil_lily%1:20:00:: 12427566 1 0 -devil_nettle%1:20:00:: 12925179 1 0 -devil_ray%1:05:00:: 01500854 1 0 -devil_tree%1:20:00:: 11770256 1 0 -devil_worshiper%1:18:00:: 10010525 1 0 -deviled_egg%1:13:00:: 07842433 1 0 -devilfish%1:05:00:: 01500091 3 0 -devilfish%1:05:01:: 01970164 2 0 -devilfish%1:05:03:: 02066245 1 0 -devilise%2:30:00:: 00547493 1 0 -devilish%4:02:00:: 00302120 1 0 -devilish%5:00:00:evil:00 01133374 1 1 -devilish%5:00:00:playful:00 02122379 2 0 -devilishly%4:02:00:: 00302120 2 0 -devilishly%4:02:02:: 00046639 3 0 -devilishly%4:02:03:: 00308916 1 0 -devilize%2:30:00:: 00547493 1 0 -devilment%1:04:00:: 00736375 1 1 -devilry%1:04:00:: 00745943 1 0 -devilry%1:04:01:: 00736375 2 0 -deviltry%1:04:00:: 00745943 1 0 -deviltry%1:04:01:: 00736375 2 0 -devilwood%1:20:00:: 12309630 1 0 -devious%5:00:00:indirect:00 00763013 3 0 -devious%5:00:00:indirect:02 00768098 1 1 -devious%5:00:00:untrustworthy:00 02466382 2 0 -deviously%4:02:00:: 00310169 1 0 -deviousness%1:07:01:: 04875556 2 0 -deviousness%1:07:02:: 04919712 1 0 -devisal%1:04:00:: 00940709 1 0 -devise%1:21:01:: 13264076 2 0 -devise%1:21:02:: 13416241 1 0 -devise%2:36:00:: 01632411 1 14 -devise%2:36:01:: 01651444 2 1 -devise%2:40:00:: 02229412 3 0 -devisee%1:18:00:: 10010632 1 1 -deviser%1:18:00:: 10438172 1 0 -devising%1:04:00:: 00923995 1 0 -devisor%1:18:00:: 10010767 1 0 -devitalisation%1:04:00:: 00354183 1 0 -devitalise%2:30:00:: 00166952 1 0 -devitalization%1:04:00:: 00354183 1 0 -devitalize%2:30:00:: 00166952 1 0 -devitrify%2:30:00:: 00505717 1 0 -devitrify%2:30:01:: 00505512 2 0 -devoice%2:32:00:: 00950670 1 0 -devoid%5:00:00:nonexistent:00 00927978 1 0 -devoir%1:04:00:: 01229712 1 0 -devolution%1:04:00:: 01141160 2 0 -devolution%1:22:00:: 13460299 1 0 -devolve%2:29:00:: 00092293 3 0 -devolve%2:40:13:: 02229550 2 0 -devolve%2:41:02:: 02392385 1 0 -devolve_on%2:42:00:: 02711987 1 0 -devolvement%1:04:00:: 01141160 1 0 -devon%1:05:00:: 02406859 2 0 -devon%1:15:00:: 08881944 1 0 -devonian%1:28:00:: 15127982 1 0 -devonian_period%1:28:00:: 15127982 1 0 -devonshire%1:15:00:: 08881944 1 0 -devonshire_cream%1:13:00:: 07847453 1 0 -devote%2:31:00:: 00732224 2 5 -devote%2:32:00:: 00887463 1 30 -devote%2:40:00:: 02214717 3 0 -devoted%5:00:00:dedicated:00 00519477 2 0 -devoted%5:00:02:dedicated:00 00519668 1 6 -devotedly%4:02:00:: 00310290 1 0 -devotedness%1:12:00:: 07544491 1 0 -devotee%1:18:00:: 10077593 1 2 -devotion%1:04:00:: 01042764 4 0 -devotion%1:04:01:: 01206553 2 1 -devotion%1:04:02:: 01044448 3 0 -devotion%1:12:00:: 07544491 1 2 -devotional%1:04:00:: 01032810 1 0 -devotional%5:00:00:pious:00 01781781 1 1 -devour%2:34:00:: 01196653 4 0 -devour%2:34:01:: 01197014 3 0 -devour%2:35:00:: 01565360 1 1 -devour%2:37:00:: 01820798 2 0 -devourer%1:18:00:: 10010864 1 0 -devouring%5:00:00:desirous:00 00888477 1 0 -devout%5:00:00:religious:00 01783710 1 1 -devout%5:00:00:sincere:00 02179968 2 0 -devoutly%4:02:00:: 00310393 1 0 -devoutness%1:07:00:: 04826999 1 0 -devries%1:18:00:: 10932495 1 0 -dew%1:27:00:: 14834132 1 2 -dew_point%1:07:00:: 05013642 1 0 -dew_worm%1:05:00:: 01935395 1 0 -dewar%1:06:00:: 03185868 1 1 -dewar%1:18:00:: 10932696 2 0 -dewar_flask%1:06:00:: 03185868 1 0 -dewberry%1:13:00:: 07745197 2 0 -dewberry%1:20:00:: 12654387 1 0 -dewberry_bush%1:20:00:: 12654387 1 0 -dewdrop%1:25:00:: 13901858 1 0 -dewey%1:18:00:: 10932898 3 0 -dewey%1:18:01:: 10933084 2 0 -dewey%1:18:02:: 10933266 1 0 -dewey_decimal_classification%1:09:00:: 05727427 1 0 -dewey_decimal_system%1:09:00:: 05727427 1 0 -deweyan%3:01:00:: 03030635 1 0 -dewitt_clinton%1:18:00:: 10902409 1 0 -dewlap%1:08:00:: 05239680 1 0 -dewy%5:00:00:wet:01 02547862 1 0 -dewy-eyed%5:00:00:naive:00 02272047 1 0 -dexamethasone%1:27:00:: 14753808 1 2 -dexamethasone_intensol%1:27:00:: 14753808 1 0 -dexedrine%1:06:00:: 03186005 1 0 -dexone%1:27:00:: 14753808 1 0 -dexter%5:00:00:dextral:00 00743183 1 0 -dexterity%1:09:00:: 05642815 1 0 -dexterous%5:00:00:adroit:00 00062367 1 1 -dexterously%4:02:00:: 00310533 1 1 -dextral%3:00:00:: 00742879 1 0 -dextral%5:00:00:right-handed:00 02028865 2 0 -dextrality%1:07:00:: 05067514 1 0 -dextrin%1:27:00:: 14834325 1 0 -dextroamphetamine_sulphate%1:06:00:: 03186005 1 0 -dextrocardia%1:26:00:: 14093325 1 0 -dextroglucose%1:27:00:: 14884336 1 0 -dextrorotary%5:00:00:clockwise:00 00441927 1 0 -dextrorotation%1:11:00:: 07441373 1 0 -dextrorotatory%5:00:00:clockwise:00 00441927 1 0 -dextrorsal%5:00:00:dextral:00 00743293 1 0 -dextrorse%5:00:00:dextral:00 00743293 1 0 -dextrose%1:27:00:: 14884336 1 0 -dextrous%5:00:00:adroit:00 00062367 1 2 -dextrously%4:02:00:: 00310533 1 0 -dflp%1:14:00:: 08019523 1 0 -dg%1:23:00:: 13723470 1 0 -dhahran%1:15:00:: 08994540 1 0 -dhak%1:20:00:: 12510343 1 0 -dhaka%1:15:00:: 08849226 1 0 -dhal%1:20:00:: 12510774 1 0 -dharma%1:18:00:: 09525579 1 0 -dhaulagiri%1:17:00:: 09266453 1 0 -dhava%1:20:00:: 12323665 1 0 -dhawa%1:20:00:: 12323665 1 0 -dhegiha%1:10:00:: 06909672 2 0 -dhegiha%1:18:00:: 09654687 1 0 -dhobi_itch%1:26:00:: 14125774 1 0 -dhodhekanisos%1:15:00:: 08783286 1 0 -dhole%1:05:00:: 02115913 1 0 -dhoti%1:06:00:: 03186199 1 0 -dhow%1:06:00:: 03186285 1 0 -dhu'l-hijja%1:28:00:: 15218798 1 0 -dhu'l-hijjah%1:28:00:: 15218798 1 0 -dhu'l-qa'dah%1:28:00:: 15218663 1 0 -dhu_al-hijja%1:28:00:: 15218798 1 0 -dhu_al-hijjah%1:28:00:: 15218798 1 0 -dhu_al-qadah%1:28:00:: 15218663 1 0 -di-iodotyrosine%1:27:00:: 14834906 1 5 -dia%1:14:00:: 08340989 1 0 -diabatic%3:00:00:: 00744017 1 0 -diabeta%1:06:00:: 03441930 1 0 -diabetes%1:26:00:: 14117805 1 1 -diabetes_insipidus%1:26:00:: 14119770 1 0 -diabetes_mellitus%1:26:00:: 14118138 1 0 -diabetic%1:18:00:: 10010977 1 2 -diabetic%3:01:00:: 03060971 1 0 -diabetic%5:00:00:ill:01 02543934 2 0 -diabetic_acidosis%1:26:00:: 14019840 1 0 -diabetic_coma%1:09:00:: 05680423 1 0 -diabetic_diet%1:13:00:: 07562379 1 0 -diabetic_retinopathy%1:26:00:: 14257147 1 0 -diabolatry%1:04:00:: 01046006 1 0 -diabolic%5:00:00:evil:00 01132515 2 0 -diabolic%5:00:02:evil:00 01133374 1 0 -diabolical%5:00:00:evil:00 01132515 2 0 -diabolical%5:00:02:evil:00 01133374 1 0 -diabolically%4:02:00:: 00308916 1 0 -diabolise%2:30:00:: 00547493 1 0 -diabolism%1:09:00:: 05979595 1 0 -diabolist%1:18:00:: 10552486 1 0 -diabolize%2:30:00:: 00547493 1 0 -diacalpa%1:20:00:: 13196942 1 0 -diacetylmorphine%1:06:00:: 03516011 1 0 -diachronic%3:00:00:: 02377418 1 1 -diachronic_linguistics%1:09:00:: 06169050 1 0 -diachrony%1:09:00:: 06169050 1 0 -diacritic%1:10:00:: 06820964 1 0 -diacritic%5:00:00:discriminating:00 00774911 1 0 -diacritical%5:00:00:discriminating:00 00774911 1 0 -diacritical_mark%1:10:00:: 06820964 1 0 -diadem%1:06:00:: 03138669 1 0 -diadophis%1:05:00:: 01728738 1 0 -diadromous%3:00:00:: 00109504 1 0 -diaeresis%1:10:00:: 06823760 1 0 -diaghilev%1:18:00:: 10933449 1 0 -diaglyph%1:06:00:: 03576443 1 0 -diagnosable%5:00:00:identifiable:00 01272836 1 0 -diagnose%2:31:00:: 00645552 1 4 -diagnose%2:31:01:: 00645771 2 1 -diagnosing%1:04:00:: 00152727 1 1 -diagnosis%1:04:00:: 00152727 1 4 -diagnostic%3:01:00:: 02975538 1 1 -diagnostic%5:00:00:characteristic:00 00357254 2 0 -diagnostic_assay%1:09:00:: 05739043 1 0 -diagnostic_procedure%1:04:00:: 00177127 1 0 -diagnostic_program%1:10:00:: 06574680 1 0 -diagnostic_technique%1:04:00:: 00177127 1 0 -diagnostic_test%1:09:00:: 05739043 1 0 -diagnostician%1:18:00:: 10011074 1 1 -diagnostics%1:09:00:: 06053280 1 0 -diagonal%1:10:00:: 06844903 5 0 -diagonal%1:14:00:: 08270417 3 0 -diagonal%1:14:01:: 08268321 4 0 -diagonal%1:25:00:: 13904164 2 0 -diagonal%1:25:01:: 13904325 1 0 -diagonal%5:00:00:inclined:01 01234747 2 0 -diagonal%5:00:02:oblique:00 01719870 1 4 -diagonal_matrix%1:14:00:: 08268962 1 0 -diagonalisation%1:09:00:: 05783357 1 0 -diagonalise%2:30:00:: 00521874 1 0 -diagonalizable%3:01:00:: 02711468 1 14 -diagonalization%1:09:00:: 05783357 1 0 -diagonalize%2:30:00:: 00521874 1 0 -diagonally%4:02:00:: 00310720 1 0 -diagram%1:06:00:: 03186399 1 6 -diagram%2:36:00:: 01693453 1 1 -diagrammatic%5:00:00:delineated:00 01715430 1 0 -diagrammatical%5:00:00:delineated:00 01715430 1 0 -diagrammatically%4:02:00:: 00310847 1 0 -diagramming%1:04:00:: 00900207 1 0 -diakinesis%1:22:00:: 13465264 1 0 -dial%1:06:00:: 03186696 1 1 -dial%1:06:01:: 03186818 4 0 -dial%1:06:02:: 03187037 3 0 -dial%1:06:03:: 03187153 2 0 -dial%2:31:00:: 00676135 2 0 -dial%2:32:00:: 00790308 1 3 -dial_phone%1:06:00:: 03187595 1 0 -dial_telephone%1:06:00:: 03187595 1 0 -dialect%1:10:00:: 07155661 1 6 -dialect_atlas%1:10:00:: 06427240 1 0 -dialect_geography%1:09:00:: 06168703 1 0 -dialectal%3:01:00:: 03004561 1 0 -dialectic%1:09:00:: 06163548 1 4 -dialectic%1:24:00:: 13857804 2 1 -dialectic%3:01:00:: 03023644 1 0 -dialectical%3:01:00:: 03023644 1 0 -dialectical_materialism%1:09:00:: 05993235 1 0 -dialectically%4:02:00:: 00248104 1 1 -dialectician%1:18:00:: 10011360 1 0 -dialectics%1:09:01:: 06163396 1 0 -dialectology%1:09:00:: 06171265 1 0 -dialeurodes%1:05:00:: 02246822 1 0 -dialeurodes_citri%1:05:00:: 02246941 1 0 -dialog%1:10:00:: 07010541 2 0 -dialog%1:10:01:: 07136206 1 0 -dialog%1:10:02:: 06366391 3 0 -dialog_box%1:06:00:: 03187268 1 0 -dialogue%1:10:00:: 07010541 2 2 -dialogue%1:10:01:: 07136206 1 3 -dialogue%1:10:02:: 06366391 3 2 -dialogue%1:10:03:: 07148192 4 0 -dialyse%2:30:00:: 00330426 1 0 -dialysis%1:04:00:: 00649760 1 12 -dialysis_machine%1:06:00:: 03187751 1 0 -dialyze%2:30:00:: 00330426 1 4 -dialyzer%1:06:00:: 03187751 1 0 -diam%1:07:00:: 05101815 1 2 -diamagnet%1:27:00:: 14604763 1 0 -diamagnetic%3:01:00:: 02711599 1 0 -diamagnetism%1:19:00:: 11479816 1 0 -diamante%1:06:00:: 04173698 1 0 -diamante%1:06:01:: 03188290 2 0 -diamantine%3:01:00:: 02711744 1 0 -diameter%1:07:00:: 05101815 1 27 -diameter%1:25:00:: 13871717 2 1 -diametral%3:01:00:: 02711846 1 0 -diametric%3:01:00:: 02711846 1 0 -diametric%5:00:02:different:00 02066312 2 0 -diametrical%3:01:00:: 02711846 1 0 -diametrical%5:00:02:different:00 02066312 2 0 -diametrical_opposition%1:24:00:: 13829243 1 0 -diametrically%4:02:00:: 00311057 1 1 -diamine%1:27:00:: 14604857 1 0 -diamond%1:06:00:: 02799593 5 0 -diamond%1:06:01:: 03187972 4 0 -diamond%1:06:02:: 02780916 6 0 -diamond%1:21:00:: 13371958 1 3 -diamond%1:25:00:: 13882961 3 0 -diamond%1:27:00:: 14834563 2 1 -diamond_dust%1:19:00:: 11509377 1 0 -diamond_jim%1:18:00:: 10861329 1 0 -diamond_jim_brady%1:18:00:: 10861329 1 0 -diamond_jubilee%1:28:00:: 15250468 1 0 -diamond_point%1:06:00:: 03188168 1 1 -diamond_state%1:15:00:: 09069862 1 0 -diamond_wedding%1:28:00:: 15251092 1 0 -diamond_wedding_anniversary%1:28:00:: 15251092 1 0 -diamondback%1:05:00:: 01755581 1 0 -diamondback_rattlesnake%1:05:00:: 01755581 1 0 -diamondback_terrapin%1:05:00:: 01668091 1 0 -diana%1:18:00:: 09557130 2 0 -diana%1:18:01:: 10933658 1 0 -diane_de_poitiers%1:18:00:: 10933929 1 0 -diangus_gratianopolitanus%1:20:00:: 11809271 1 0 -dianoetic%5:00:00:logical:00 01430452 1 0 -dianthus%1:20:00:: 11807849 1 0 -dianthus_barbatus%1:20:00:: 11808299 1 0 -dianthus_caryophyllus%1:20:00:: 11808468 1 0 -dianthus_chinensis%1:20:00:: 11808721 1 0 -dianthus_chinensis_heddewigii%1:20:00:: 11808932 1 0 -dianthus_deltoides%1:20:00:: 11809094 1 0 -dianthus_latifolius%1:20:00:: 11809437 1 0 -dianthus_plumarius%1:20:00:: 11809594 1 0 -dianthus_supurbus%1:20:00:: 11809754 1 0 -diapason%1:06:00:: 03188416 1 0 -diapason_stop%1:06:00:: 03188416 1 0 -diapedesis%1:19:00:: 11446598 1 0 -diapensia%1:20:00:: 12251001 1 0 -diapensia_family%1:20:00:: 12250413 1 0 -diapensiaceae%1:20:00:: 12250413 1 0 -diapensiales%1:20:00:: 12250708 1 0 -diaper%1:06:00:: 03188531 1 1 -diaper%1:06:01:: 03188725 2 0 -diaper_dermatitis%1:26:00:: 14223978 1 0 -diaper_rash%1:26:00:: 14223978 1 0 -diaphanous%5:00:00:thin:01 02413390 1 0 -diapheromera%1:05:00:: 02231803 1 0 -diapheromera_femorata%1:05:00:: 02231803 1 0 -diaphone%1:06:00:: 03188871 1 0 -diaphoresis%1:22:00:: 13535261 1 0 -diaphoretic%1:06:00:: 03188979 1 0 -diaphoretic%3:01:00:: 02712125 1 0 -diaphragm%1:06:00:: 03189083 1 5 -diaphragm%1:06:01:: 03189311 4 0 -diaphragm%1:06:02:: 03189461 3 0 -diaphragm%1:08:00:: 05318606 2 2 -diaphragmatic_hernia%1:26:00:: 14296399 1 0 -diaphragmatic_pleurisy%1:26:00:: 14330340 1 0 -diaphyseal%3:01:00:: 02990660 1 2 -diaphysial%3:01:00:: 02990660 1 0 -diaphysis%1:08:00:: 05592733 1 0 -diapir%1:17:00:: 09266604 1 0 -diapsid%1:05:00:: 01661818 1 0 -diapsid_reptile%1:05:00:: 01661818 1 0 -diapsida%1:05:00:: 01662060 1 0 -diarchy%1:14:00:: 08361612 1 0 -diarist%1:18:00:: 10011486 1 0 -diarrhea%1:26:00:: 14371913 1 9 -diarrheal%5:00:00:unconstipated:00 00638622 1 0 -diarrheic%5:00:00:unconstipated:00 00638622 1 0 -diarrhetic%5:00:00:unconstipated:00 00638622 1 0 -diarrhoea%1:26:00:: 14371913 1 3 -diarrhoeal%5:00:00:unconstipated:00 00638622 1 0 -diarrhoeic%5:00:00:unconstipated:00 00638622 1 0 -diarrhoetic%5:00:00:unconstipated:00 00638622 1 0 -diarthrosis%1:08:00:: 05543177 1 0 -diary%1:06:00:: 03189707 2 0 -diary%1:10:00:: 06402031 1 3 -diary_keeper%1:18:00:: 10011486 1 0 -dias%1:18:00:: 10934154 1 0 -diaspididae%1:05:00:: 02249365 1 0 -diaspora%1:07:00:: 05087894 3 0 -diaspora%1:11:00:: 07331932 2 0 -diaspora%1:14:00:: 08481983 1 0 -diastasis%1:26:00:: 14294354 1 0 -diastema%1:08:00:: 05282652 1 0 -diastole%1:11:00:: 07401236 1 0 -diastolic%3:01:00:: 02712270 1 0 -diastolic_pressure%1:19:00:: 11430659 1 0 -diastrophism%1:22:00:: 13465382 1 0 -diathermy%1:04:00:: 00662017 1 0 -diathermy_machine%1:06:00:: 03189818 1 1 -diathesis%1:26:00:: 14534333 1 0 -diatom%1:05:00:: 01401106 1 1 -diatomaceous_earth%1:27:00:: 14843295 1 0 -diatomic%3:01:00:: 02884949 1 2 -diatomite%1:27:00:: 14843295 1 0 -diatomophyceae%1:05:00:: 01400891 1 0 -diatonic%3:00:00:: 00409889 1 0 -diatonic%5:00:00:tonal:00 02437534 2 0 -diatonic_scale%1:10:00:: 06860323 1 0 -diatribe%1:10:00:: 07233304 1 0 -diaz%1:18:00:: 10934154 1 0 -diazepam%1:06:00:: 03189995 1 0 -diazo%3:01:00:: 02656034 1 0 -diazonium%1:27:00:: 14771831 1 0 -diazotize%2:30:00:: 00585298 1 0 -diazoxide%1:06:00:: 03190303 1 0 -dibasic_acid%1:27:00:: 14611158 1 0 -dibasic_salt%1:27:00:: 14611279 1 0 -dibber%1:06:00:: 03190458 1 0 -dibble%1:06:00:: 03190458 1 0 -dibble%2:35:00:: 01567754 1 0 -dibble%2:35:01:: 01312123 2 0 -dibbuk%1:18:00:: 09543154 1 0 -dibrach%1:10:00:: 07095895 1 0 -dibranch%1:05:00:: 01969429 1 0 -dibranchia%1:05:00:: 01969103 1 0 -dibranchiata%1:05:00:: 01969103 1 0 -dibranchiate%1:05:00:: 01969429 1 0 -dibranchiate_mollusk%1:05:00:: 01969429 1 0 -dibs%1:10:00:: 06730241 1 0 -dibucaine%1:06:00:: 03190655 1 0 -dicamptodon%1:05:00:: 01635027 1 0 -dicamptodon_ensatus%1:05:00:: 01635176 1 0 -dicamptodontid%1:05:00:: 01635027 1 0 -dicamptodontidae%1:05:00:: 01634684 1 0 -dicarboxylic%3:01:00:: 02712403 1 0 -dice%1:06:00:: 03191029 1 9 -dice%2:33:00:: 01138733 2 0 -dice%2:35:00:: 01256867 1 0 -dice_box%1:06:00:: 03191286 1 0 -dice_cup%1:06:00:: 03191286 1 0 -dicentra%1:20:00:: 11910070 1 0 -dicentra_canadensis%1:20:00:: 11910666 1 0 -dicentra_cucullaria%1:20:00:: 11910460 1 0 -dicentra_spectabilis%1:20:00:: 11910271 1 0 -dicer%1:06:00:: 03191451 1 0 -diceros%1:05:00:: 02393024 1 0 -diceros_bicornis%1:05:00:: 02393161 1 0 -diceros_simus%1:05:00:: 02392824 1 0 -dicey%5:00:00:dangerous:00 02059381 1 0 -dichloride%1:27:00:: 15017343 1 0 -dichlorodiphenyltrichloroethane%1:27:00:: 14599938 1 0 -dichloroethyl_sulfide%1:27:00:: 14957270 1 0 -dichloromethane%1:27:00:: 15018013 1 0 -dichondra%1:20:00:: 12826143 1 1 -dichondra_micrantha%1:20:00:: 12826143 1 0 -dichotomisation%1:04:00:: 00389135 1 0 -dichotomise%2:31:00:: 00656107 1 0 -dichotomization%1:04:00:: 00389135 1 0 -dichotomize%2:31:00:: 00656107 1 0 -dichotomous%5:00:00:divided:00 02480861 1 0 -dichotomously%4:02:00:: 00082682 1 0 -dichotomy%1:14:00:: 07939880 1 0 -dichroism%1:19:00:: 11446771 1 0 -dichromacy%1:26:00:: 14153616 1 0 -dichromasy%1:26:00:: 14153616 1 0 -dichromat%1:18:00:: 10011659 1 0 -dichromate%1:27:00:: 15013764 1 0 -dichromatic%3:01:00:: 03040740 1 0 -dichromatic%5:00:00:colored:00 00396115 2 0 -dichromatism%1:26:00:: 14153616 1 0 -dichromatopsia%1:26:00:: 14153616 1 0 -dichromia%1:26:00:: 14153616 1 0 -dichromic_acid%1:27:00:: 15013577 1 0 -dick%1:08:00:: 05526713 2 0 -dick%1:18:00:: 10011785 1 0 -dick_fosbury%1:18:00:: 10975583 1 0 -dick_test%1:09:00:: 05745369 1 0 -dick_turpin%1:18:00:: 11353412 1 0 -dickens%1:10:00:: 07125786 1 2 -dickens%1:18:00:: 10934410 2 0 -dickensian%3:01:00:: 02712499 1 0 -dicker%2:40:00:: 02259829 1 0 -dickey%1:06:00:: 03191561 2 0 -dickey%1:06:01:: 03191776 1 0 -dickey%5:00:00:impaired:00 01274741 1 0 -dickey-bird%1:05:00:: 01503976 1 0 -dickey-seat%1:06:00:: 03191776 1 0 -dickeybird%1:05:00:: 01503976 1 0 -dickhead%1:18:00:: 09815188 1 0 -dickie%1:06:00:: 03191561 2 0 -dickie%1:06:01:: 03191776 1 0 -dickie-seat%1:06:00:: 03191776 1 0 -dickinson%1:18:00:: 10934611 1 0 -dicksonia%1:20:00:: 13190469 1 0 -dicksonia_antarctica%1:20:00:: 13190747 1 0 -dicksoniaceae%1:20:00:: 13190218 1 0 -dicky%1:06:00:: 03191561 2 0 -dicky%1:06:01:: 03191776 1 0 -dicky%5:00:00:impaired:00 01274741 1 0 -dicky-bird%1:05:00:: 01503976 1 0 -dicky-seat%1:06:00:: 03191776 1 0 -dickybird%1:05:00:: 01503976 1 0 -diclinous%3:00:00:: 01542744 1 0 -diclofenac_potassium%1:06:00:: 03191967 1 0 -diclofenac_sodium%1:06:00:: 03192142 1 0 -dicloxacillin%1:06:00:: 03192347 1 0 -dicot%1:20:00:: 11666854 1 0 -dicot_family%1:20:00:: 11562747 1 0 -dicot_genus%1:20:00:: 11567411 1 0 -dicotyledon%1:20:00:: 11666854 1 0 -dicotyledonae%1:20:00:: 11665781 1 0 -dicotyledones%1:20:00:: 11665781 1 0 -dicotyledonous%3:00:00:: 00753786 1 0 -dicoumarol%1:06:00:: 03192653 1 0 -dicranaceae%1:20:00:: 11540439 1 0 -dicranales%1:20:00:: 11540230 1 0 -dicranopteris%1:20:00:: 13170498 1 0 -dicranum%1:20:00:: 11540631 1 0 -dicrostonyx%1:05:00:: 02345471 1 0 -dicrostonyx_hudsonius%1:05:00:: 02345774 1 0 -dictamnus%1:20:00:: 12712488 1 0 -dictamnus_alba%1:20:00:: 12712626 1 0 -dictaphone%1:06:00:: 03192543 1 0 -dictate%1:09:00:: 05871245 2 1 -dictate%1:10:00:: 06663940 1 1 -dictate%2:31:00:: 00626890 2 1 -dictate%2:32:00:: 00747135 1 8 -dictate%2:41:00:: 02587084 3 0 -dictated%5:00:00:settled:02 02129908 1 1 -dictation%1:10:00:: 07160635 2 0 -dictation%1:10:01:: 07168131 1 0 -dictation%1:10:02:: 06387332 3 0 -dictator%1:18:00:: 10011902 2 0 -dictator%1:18:01:: 09824135 3 0 -dictator%1:18:02:: 10012244 1 0 -dictatorial%3:01:00:: 02712678 1 0 -dictatorial%5:00:00:domineering:00 00787357 2 0 -dictatorial%5:00:00:undemocratic:00 00717684 3 0 -dictatorially%4:02:00:: 00311430 1 0 -dictatorship%1:14:00:: 08440630 1 3 -diction%1:10:00:: 07081739 2 0 -diction%1:10:01:: 07132415 1 0 -dictionary%1:10:00:: 06418901 1 52 -dictionary_definition%1:10:00:: 06745015 1 0 -dictionary_entry%1:10:00:: 06300823 1 3 -dictostylium%1:20:00:: 12976554 1 0 -dictum%1:10:00:: 06727616 1 2 -dictum%1:10:02:: 06765887 2 0 -dictyophera%1:20:00:: 13040971 1 0 -dictyoptera%1:05:00:: 02232606 1 0 -dictyopteran%3:01:00:: 03137726 1 0 -dictyopterous_insect%1:05:00:: 02232951 1 0 -dictyosome%1:08:00:: 05434557 1 0 -dicumarol%1:06:00:: 03192653 1 0 -dicynodont%1:05:00:: 01721174 1 0 -dicynodontia%1:05:00:: 01721010 1 0 -didactic%5:00:00:instructive:00 01324131 1 0 -didactical%5:00:00:instructive:00 01324131 1 0 -didactically%4:02:00:: 00311651 1 0 -didacticism%1:10:00:: 06600421 1 0 -didactics%1:04:00:: 00883297 1 0 -didanosine%1:06:00:: 03190897 1 0 -didder%2:29:00:: 00014034 1 0 -diddle%2:35:00:: 01586278 2 0 -diddle%2:41:00:: 02572119 1 0 -diddley%1:23:00:: 13773047 1 0 -diddly%1:23:00:: 13773047 1 0 -diddly-shit%1:23:00:: 13773047 1 0 -diddly-squat%1:23:00:: 13773047 1 0 -diddlyshit%1:23:00:: 13773047 1 0 -diddlysquat%1:23:00:: 13773047 1 0 -didelphidae%1:05:00:: 01874784 1 0 -didelphis%1:05:00:: 01875165 1 0 -didelphis_marsupialis%1:05:00:: 01875313 1 0 -didelphis_virginiana%1:05:00:: 01875313 1 0 -dideoxycytosine%1:06:00:: 03190763 1 0 -dideoxyinosine%1:06:00:: 03190897 1 0 -diderot%1:18:00:: 10934758 1 0 -didion%1:18:00:: 10935025 1 0 -dido%1:18:00:: 09558177 1 0 -didrikson%1:18:00:: 11404666 1 0 -die%1:06:00:: 03191029 1 6 -die%1:06:01:: 03192790 2 1 -die%1:06:02:: 03192907 3 0 -die%2:30:00:: 00358431 1 141 -die%2:30:01:: 00354845 10 0 -die%2:30:02:: 00224295 11 0 -die%2:30:04:: 00434374 4 1 -die%2:30:05:: 00538323 9 0 -die%2:33:00:: 01074914 8 0 -die%2:35:00:: 01555034 7 0 -die%2:37:00:: 01784953 3 1 -die%2:37:01:: 01785242 6 0 -die%2:37:03:: 01829475 5 0 -die%2:39:00:: 02109818 2 1 -die-cast%5:00:00:formed:00 02146645 1 0 -die-hard%5:00:00:inflexible:02 01025212 1 0 -die-sinker%1:18:00:: 10012713 1 0 -die_away%2:30:00:: 00245059 1 2 -die_back%2:30:00:: 00242026 1 0 -die_down%2:30:00:: 00242026 1 0 -die_down%2:30:02:: 00224168 2 0 -die_hard%2:42:00:: 02647497 1 0 -die_off%2:30:00:: 00427683 1 0 -die_out%2:30:00:: 00427683 1 2 -die_out%2:35:00:: 01555034 2 0 -dieback%1:26:00:: 14280298 1 0 -dieffenbachia%1:20:00:: 11787391 1 0 -dieffenbachia_sequine%1:20:00:: 11787625 1 0 -diego_rivera%1:18:00:: 11263687 1 0 -diego_rodriguez_de_silva_y_velazquez%1:18:00:: 11362329 1 0 -diegueno%1:10:00:: 06922681 2 0 -diegueno%1:18:00:: 09654898 1 0 -diehard%1:18:00:: 10721124 1 0 -dielectric%1:27:00:: 14821590 1 0 -dielectric_heating%1:19:00:: 11449784 1 0 -dielectrolysis%1:22:00:: 13472518 1 0 -diemaker%1:18:00:: 10012713 1 0 -dien_bien_phu%1:04:00:: 01277540 1 0 -diencephalon%1:08:00:: 05496990 1 0 -dieresis%1:10:00:: 06823760 1 0 -diervilla%1:20:00:: 12671898 1 0 -diervilla_lonicera%1:20:00:: 12672083 1 0 -diervilla_sessilifolia%1:20:00:: 12672289 1 0 -dies_irae%1:10:00:: 07036546 1 0 -diesel%1:06:00:: 03193107 2 0 -diesel%1:18:00:: 10935128 1 0 -diesel-electric%1:06:00:: 03193260 1 0 -diesel-electric_locomotive%1:06:00:: 03193260 1 0 -diesel-hydraulic%1:06:00:: 03193423 1 0 -diesel-hydraulic_locomotive%1:06:00:: 03193423 1 0 -diesel_engine%1:06:00:: 03193107 1 0 -diesel_fuel%1:27:00:: 14685881 1 0 -diesel_locomotive%1:06:00:: 03193597 1 0 -diesel_motor%1:06:00:: 03193107 1 0 -diesel_oil%1:27:00:: 14685881 1 0 -diesinker%1:18:00:: 10012713 1 0 -diesis%1:10:00:: 06828662 1 0 -diestock%1:06:00:: 03193754 1 0 -diestrous%5:00:00:anestrous:00 02138428 1 0 -diestrual%5:00:00:anestrous:00 02138428 1 0 -diestrum%1:26:00:: 14038743 1 0 -diestrus%1:26:00:: 14038743 1 0 -diet%1:04:00:: 01070187 4 0 -diet%1:13:00:: 07561112 1 8 -diet%1:13:01:: 07560903 3 0 -diet%1:14:00:: 08318777 2 0 -diet%2:34:00:: 01189224 2 0 -diet%2:34:01:: 01190012 1 0 -dietary%1:13:00:: 07561590 1 0 -dietary%3:01:00:: 02846322 1 4 -dietary_supplement%1:13:00:: 07562495 1 0 -dieter%1:18:00:: 10012377 1 0 -dietetic%3:01:00:: 02846322 1 0 -dietetical%3:01:00:: 02846322 1 0 -dietetics%1:09:00:: 06042187 1 0 -diethyl_ether%1:06:00:: 03299929 1 0 -diethylaminoethyl_cellulose%1:27:00:: 14794304 1 2 -diethylbarbituric_acid%1:06:00:: 02791894 1 0 -diethylmalonylurea%1:06:00:: 02791894 1 0 -diethylstilbesterol%1:06:00:: 03193882 1 0 -diethylstilbestrol%1:27:00:: 14750122 1 3 -diethylstilboestrol%1:27:00:: 14750122 1 0 -dietician%1:18:00:: 10012484 1 0 -dieting%1:04:00:: 01070187 1 0 -dietitian%1:18:00:: 10012484 1 0 -dietrich%1:18:00:: 10935304 1 0 -dietrich_bonhoeffer%1:18:00:: 10856215 1 0 -differ%2:32:00:: 00804802 2 1 -differ%2:42:00:: 02666239 1 27 -difference%1:07:00:: 04748836 1 73 -difference%1:10:00:: 07181935 3 2 -difference%1:11:00:: 07366289 2 16 -difference%1:23:00:: 13729236 5 0 -difference%1:24:00:: 13859307 4 1 -difference_limen%1:09:00:: 05712892 1 0 -difference_of_opinion%1:10:00:: 07181935 1 2 -difference_threshold%1:09:00:: 05712892 1 0 -different%3:00:00:: 02064745 1 88 -different%3:00:02:: 01410363 4 1 -different%5:00:00:other:00 02070030 2 41 -different%5:00:00:unusual:00 00490413 3 2 -different%5:00:01:other:00 02070342 5 0 -differentia%1:07:00:: 04749439 1 0 -differentiable%3:01:00:: 02712810 1 3 -differentiable%5:00:00:distinguishable:00 00582636 2 0 -differential%1:06:00:: 03194297 3 0 -differential%1:07:00:: 04749310 2 0 -differential%1:09:00:: 06014730 1 1 -differential%3:01:00:: 02712922 1 1 -differential%3:01:01:: 02909168 2 0 -differential_analyzer%1:06:00:: 03194170 1 0 -differential_blood_count%1:04:00:: 00653171 1 0 -differential_calculus%1:09:00:: 06014435 1 0 -differential_coefficient%1:09:00:: 06014730 1 0 -differential_cost%1:07:00:: 05145708 1 0 -differential_diagnosis%1:04:00:: 00153499 1 0 -differential_equation%1:10:00:: 06670521 1 7 -differential_gear%1:06:00:: 03194297 1 0 -differential_limen%1:09:00:: 05712892 1 0 -differential_psychology%1:09:00:: 06139135 1 0 -differential_threshold%1:09:00:: 05712892 1 0 -differentially%4:02:00:: 00311803 1 0 -differentiate%2:30:00:: 00119074 6 0 -differentiate%2:30:01:: 00119524 4 0 -differentiate%2:30:05:: 00119266 5 0 -differentiate%2:31:00:: 00642803 3 0 -differentiate%2:31:01:: 00650353 1 4 -differentiate%2:31:02:: 00651991 2 1 -differentiated%3:00:00:: 00744277 1 3 -differentiated%5:00:00:specialized:00 02277829 2 0 -differentiation%1:04:01:: 00870640 2 1 -differentiation%1:09:00:: 05748285 1 5 -differentiation%1:22:00:: 13559782 3 0 -differentiator%1:18:00:: 10012815 1 0 -differently%4:02:00:: 00113082 1 8 -difficult%3:00:00:: 00744916 1 63 -difficult%3:00:01:: 01475282 2 0 -difficultness%1:07:00:: 04709253 1 0 -difficulty%1:04:00:: 00623862 1 18 -difficulty%1:07:00:: 04709253 4 6 -difficulty%1:09:02:: 05686955 2 13 -difficulty%1:26:00:: 14408086 3 11 -diffidence%1:12:00:: 07523286 1 0 -diffident%3:00:00:: 00339941 2 0 -diffident%5:00:00:reserved:01 01987856 1 1 -diffidently%4:02:00:: 00309111 1 1 -difflugia%1:05:00:: 01394771 1 0 -diffract%2:38:00:: 02029805 1 0 -diffraction%1:19:00:: 11446934 1 1 -diffraction_grating%1:06:00:: 03194538 1 0 -diffuse%2:32:00:: 00968211 3 1 -diffuse%2:35:00:: 01229071 2 1 -diffuse%2:38:00:: 02060141 1 1 -diffuse%3:00:00:: 01157887 2 0 -diffuse%5:00:00:distributed:00 00540487 1 1 -diffuse%5:00:00:prolix:00 00549133 3 0 -diffuse_nebula%1:17:00:: 09266790 1 0 -diffused%3:00:00:: 01157887 2 0 -diffused%5:00:00:distributed:00 00540632 1 1 -diffusely%4:02:00:: 00190466 1 1 -diffuseness%1:07:00:: 05088645 1 0 -diffuser%1:06:00:: 03194812 2 0 -diffuser%1:06:01:: 03194992 1 0 -diffusing%5:00:00:distributive:00 00468362 1 2 -diffusing_screen%1:06:00:: 03667060 1 0 -diffusion%1:04:00:: 00368592 4 0 -diffusion%1:07:00:: 05088056 3 1 -diffusion%1:11:00:: 07331600 2 1 -diffusion%1:22:00:: 13465530 1 6 -diffusion_pump%1:06:00:: 03087245 1 0 -diffusive%5:00:00:distributive:00 00468362 1 0 -diffusor%1:06:00:: 03194812 2 0 -diffusor%1:06:01:: 03194992 1 0 -diflunisal%1:06:00:: 03195118 1 0 -dig%1:04:01:: 00941974 4 0 -dig%1:04:02:: 00135311 5 0 -dig%1:07:00:: 04693557 3 0 -dig%1:10:00:: 06767922 2 0 -dig%1:15:00:: 08550076 1 0 -dig%2:31:00:: 00588221 8 0 -dig%2:35:00:: 01309701 1 9 -dig%2:35:01:: 01311103 2 5 -dig%2:35:02:: 01310660 6 0 -dig%2:35:03:: 01229976 7 0 -dig%2:38:00:: 01899557 5 0 -dig%2:39:00:: 02143756 4 0 -dig%2:41:00:: 02419773 3 0 -dig_in%2:34:00:: 01173057 2 1 -dig_in%2:35:00:: 01531124 1 2 -dig_into%2:35:00:: 01226875 1 4 -dig_out%2:35:00:: 01311103 3 0 -dig_out%2:35:03:: 01312261 2 0 -dig_out%2:39:00:: 02143756 1 0 -dig_up%2:35:00:: 01313923 1 2 -dig_up%2:39:00:: 02143756 2 0 -digenesis%1:19:00:: 11424589 1 0 -digest%1:10:00:: 06593099 2 0 -digest%1:10:01:: 06593542 1 0 -digest%2:30:00:: 00244625 7 0 -digest%2:30:01:: 00481391 5 0 -digest%2:30:02:: 00481555 4 0 -digest%2:30:04:: 00209420 8 0 -digest%2:30:07:: 00397987 6 0 -digest%2:31:00:: 00590924 2 1 -digest%2:31:03:: 00668099 3 0 -digest%2:34:00:: 01197338 1 1 -digester%1:06:00:: 03195332 1 0 -digestibility%1:07:00:: 04997645 1 0 -digestible%3:00:00:: 01182024 1 1 -digestibleness%1:07:00:: 04997645 1 0 -digestion%1:09:00:: 05753379 3 0 -digestion%1:22:00:: 13465809 2 0 -digestion%1:22:01:: 13465998 1 0 -digestive%1:27:00:: 14834714 1 0 -digestive%3:01:00:: 03060385 1 1 -digestive_fluid%1:08:00:: 05405946 1 0 -digestive_gland%1:08:00:: 05532795 1 0 -digestive_juice%1:08:00:: 05405946 1 0 -digestive_system%1:08:00:: 05329215 1 0 -digestive_tract%1:08:00:: 05532225 1 0 -digestive_tube%1:08:00:: 05532225 1 0 -digger%1:06:00:: 03996416 2 0 -digger%1:18:00:: 10012989 1 0 -digger_wasp%1:05:00:: 02215770 1 0 -digging%1:04:00:: 00941974 1 0 -digging_up%1:04:00:: 00044900 1 0 -diggings%1:06:00:: 03195485 2 0 -diggings%1:06:01:: 03195659 1 0 -dighted%5:00:00:clothed:00 00455717 1 0 -digit%1:08:00:: 05566097 3 0 -digit%1:23:00:: 13741022 1 0 -digit%1:23:01:: 13653461 2 0 -digital%3:00:00:: 00110701 3 0 -digital%3:01:00:: 02713096 2 0 -digital%3:01:01:: 02713232 1 0 -digital-analog_converter%1:06:00:: 03195799 1 0 -digital-to-analog_converter%1:06:00:: 03195799 1 0 -digital_arteries%1:08:00:: 05344514 1 0 -digital_audiotape%1:06:00:: 03195959 1 0 -digital_camera%1:06:00:: 03196062 1 0 -digital_clock%1:06:00:: 03196217 1 0 -digital_communication%1:10:00:: 06278830 1 0 -digital_communications_technology%1:04:00:: 00950526 1 0 -digital_computer%1:06:00:: 03196324 1 0 -digital_display%1:06:00:: 03196598 1 0 -digital_photography%1:22:00:: 13466170 1 0 -digital_plethysmograph%1:06:00:: 03196841 1 0 -digital_scanner%1:06:00:: 04143140 1 0 -digital_subscriber_line%1:06:00:: 03196990 1 0 -digital_vein%1:08:00:: 05365164 1 0 -digital_voltmeter%1:06:00:: 03197201 1 0 -digital_watch%1:06:00:: 03197337 1 0 -digitalin%1:27:00:: 15060131 1 0 -digitalis%1:20:00:: 12882779 2 0 -digitalis%1:27:00:: 15060131 1 0 -digitalis_glycoside%1:27:00:: 15060131 1 1 -digitalis_lutea%1:20:00:: 12883265 1 0 -digitalis_purpurea%1:20:00:: 12882945 1 0 -digitalisation%1:04:00:: 00709843 1 0 -digitalise%2:30:00:: 00563824 1 0 -digitalization%1:04:00:: 00709843 1 1 -digitalize%2:29:00:: 00081509 2 0 -digitalize%2:30:00:: 00563824 1 0 -digitally%4:02:00:: 00123000 2 0 -digitally%4:02:01:: 00123112 1 0 -digitaria%1:20:00:: 12116881 1 0 -digitaria_ischaemum%1:20:00:: 12117235 1 0 -digitaria_sanguinalis%1:20:00:: 12117326 1 0 -digitate%5:00:00:fingered:00 00946281 1 0 -digitately%4:02:00:: 00082765 1 0 -digitigrade%1:05:00:: 02507148 1 0 -digitigrade%3:00:00:: 00751170 1 0 -digitigrade_mammal%1:05:00:: 02507148 1 0 -digitisation%1:09:00:: 05803212 1 0 -digitise%2:30:00:: 00563824 1 0 -digitiser%1:06:00:: 03197446 1 0 -digitization%1:09:00:: 05803212 1 0 -digitize%2:30:00:: 00563824 1 0 -digitizer%1:06:00:: 03197446 1 0 -digitoxin%1:06:00:: 03197666 1 0 -dignified%3:00:00:: 00751525 1 2 -dignified%5:00:00:proud:00 01890988 2 1 -dignify%2:30:01:: 00544790 2 0 -dignify%2:41:00:: 02546876 1 1 -dignifying%5:00:00:noble:01 01588426 1 0 -dignitary%1:18:00:: 10748620 1 1 -dignity%1:07:00:: 04886881 1 14 -dignity%1:07:01:: 04910684 2 4 -dignity%1:26:00:: 14431902 3 0 -digoxin%1:06:00:: 03197804 1 0 -digram%1:10:00:: 06830838 1 0 -digraph%1:10:00:: 06830838 1 0 -digress%2:32:00:: 00780575 1 1 -digress%2:38:00:: 02066304 2 0 -digression%1:04:00:: 00350380 2 0 -digression%1:04:01:: 00310201 3 0 -digression%1:10:00:: 06600684 1 0 -digressive%5:00:00:indirect:02 00768397 2 0 -digressive%5:00:00:irrelevant:00 01976360 1 0 -digs%1:06:00:: 03195485 2 0 -digs%1:06:01:: 03195659 1 0 -dihybrid%1:05:00:: 01327765 1 0 -dihybrid_cross%1:04:00:: 00850873 1 0 -dihydric_alcohol%1:27:00:: 14835980 1 0 -dihydrostreptomycin%1:06:00:: 03198028 1 0 -dihydroxyphenylalanine%1:27:00:: 14604959 1 0 -dijon%1:15:00:: 08935848 1 0 -dik-dik%1:05:00:: 02421792 1 0 -dika%1:20:00:: 12717644 1 0 -dika_bread%1:13:00:: 07773827 1 0 -dika_nut%1:13:00:: 07773700 1 0 -dike%1:06:00:: 03160309 2 0 -dike%1:18:00:: 09883947 1 0 -dike%2:35:00:: 01587818 1 0 -dilantin%1:06:00:: 03203441 1 0 -dilapidate%2:30:00:: 00208836 2 0 -dilapidate%2:36:00:: 01662434 1 0 -dilapidated%5:00:00:damaged:00 00679717 1 2 -dilapidation%1:22:00:: 13466312 2 0 -dilapidation%1:26:00:: 14562541 1 0 -dilatation%1:04:00:: 00365995 2 0 -dilatation%1:26:00:: 14063633 1 0 -dilatation_and_curettage%1:04:00:: 00670250 1 0 -dilate%2:30:01:: 00305537 1 6 -dilate%2:32:10:: 00955601 2 0 -dilater%1:06:00:: 03198223 1 0 -dilation%1:04:00:: 00365995 2 0 -dilation%1:10:00:: 07137950 1 0 -dilation_and_curettage%1:04:00:: 00670250 1 0 -dilator%1:06:00:: 03198223 3 0 -dilator%1:06:01:: 03198383 2 0 -dilator%1:08:00:: 05222467 1 0 -dilatoriness%1:07:00:: 05062370 1 0 -dilatory%5:00:00:slow:01 00981067 1 0 -dilatory_plea%1:10:00:: 06561461 1 0 -dilaudid%1:06:00:: 03553708 1 0 -dildo%1:06:00:: 03198500 1 0 -dilemma%1:09:00:: 05686086 1 8 -dilettante%1:18:00:: 09987696 1 0 -dilettante%5:00:00:superficial:00 01874331 1 0 -dilettanteish%5:00:00:superficial:00 01874331 1 0 -dilettantish%5:00:00:superficial:00 01874331 1 0 -diligence%1:04:00:: 00633329 3 0 -diligence%1:07:00:: 04865114 2 0 -diligence%1:07:01:: 04673006 1 1 -diligent%3:00:00:: 00754107 2 0 -diligent%5:00:00:patient:00 01736122 1 1 -diligently%4:02:00:: 00312027 1 0 -dill%1:13:00:: 07827896 2 0 -dill%1:20:00:: 12931542 1 0 -dill_pickle%1:13:00:: 07825194 1 0 -dill_seed%1:13:00:: 07828041 1 0 -dill_weed%1:13:00:: 07827896 1 0 -dillenia%1:20:00:: 12363301 1 0 -dilleniaceae%1:20:00:: 12362844 1 0 -dilleniid_dicot_family%1:20:00:: 11565385 1 0 -dilleniid_dicot_genus%1:20:00:: 11575425 1 0 -dilleniidae%1:20:00:: 12358485 1 0 -dilly-dallier%1:18:00:: 09988703 1 0 -dilly-dally%2:42:00:: 02642238 1 0 -dillydallier%1:18:00:: 09988703 1 0 -dillydally%2:42:00:: 02642238 1 0 -diltiazem%1:06:00:: 03198637 1 0 -diluent%1:27:00:: 14835333 1 0 -dilutant%1:27:00:: 14835333 1 0 -dilute%2:30:00:: 00226071 1 9 -dilute%2:30:02:: 00487748 2 0 -dilute%3:00:00:: 00756091 1 1 -diluted%3:00:00:: 00756091 1 0 -dilution%1:04:00:: 00362659 2 2 -dilution%1:27:00:: 14835478 1 4 -diluvial%3:01:00:: 02846630 1 0 -diluvian%3:01:00:: 02846630 1 0 -dim%2:30:00:: 00313464 3 0 -dim%2:30:01:: 00313585 2 0 -dim%2:30:03:: 00312278 4 0 -dim%2:30:04:: 00311113 5 0 -dim%2:39:01:: 02162310 1 0 -dim%3:00:02:: 00284575 3 0 -dim%5:00:00:dark:01 00275290 1 4 -dim%5:00:00:hopeless:00 01229561 4 0 -dim%5:00:00:indistinct:00 00782216 2 3 -dim%5:00:00:stupid:00 00440579 5 0 -dim-sighted%5:00:00:blind:00 02159969 1 0 -dim-witted%5:00:00:retarded:00 01841390 1 0 -dim_sum%1:13:00:: 07571547 1 0 -dimaggio%1:18:00:: 10935567 1 0 -dimash%1:15:00:: 09033936 1 0 -dime%1:06:00:: 03198819 2 0 -dime%1:21:00:: 13390040 1 2 -dime_bag%1:06:00:: 03198819 1 0 -dime_novel%1:10:00:: 06368321 1 0 -dimenhydrinate%1:06:00:: 03198951 1 0 -dimension%1:07:00:: 05093581 1 7 -dimension%1:07:01:: 05091194 4 1 -dimension%1:09:00:: 05849040 2 5 -dimension%1:09:01:: 06011446 3 1 -dimension%2:30:00:: 00143065 2 0 -dimension%2:32:00:: 00922142 1 0 -dimensional%3:01:00:: 02985102 1 3 -dimensional%5:00:00:multidimensional:00 00660313 2 3 -dimensionality%1:07:00:: 05062993 1 0 -dimensioning%5:00:00:orienting:00 01684922 1 3 -dimer%1:27:00:: 14835569 1 1 -dimetane%1:06:00:: 02905422 1 0 -dimetapp%1:06:00:: 03199142 1 0 -dimethyl_ketone%1:27:00:: 14600504 1 0 -dimethylglyoxime%1:27:00:: 14835686 1 2 -dimetrodon%1:05:00:: 01722670 1 0 -diminish%2:30:00:: 00151689 1 10 -diminish%2:30:04:: 00441881 2 2 -diminished%3:00:04:: 00554879 2 0 -diminished%5:00:00:impaired:00 01274945 1 3 -diminished%5:00:01:decreased:00 00882580 4 0 -diminished%5:00:02:decreased:00 00882890 3 0 -diminished_arch%1:06:00:: 04226172 1 0 -diminishing%5:00:00:decreasing:00 02537351 1 1 -diminuendo%1:07:00:: 04991225 1 0 -diminuendo%5:00:00:decreasing:02 02538389 1 0 -diminution%1:04:00:: 00351638 3 0 -diminution%1:10:00:: 07030549 2 0 -diminution%1:22:00:: 13457378 1 1 -diminutive%1:10:00:: 06290246 1 0 -diminutive%5:00:00:small:00 01392249 1 2 -diminutiveness%1:07:00:: 05106928 1 0 -dimity%1:06:00:: 03199358 1 0 -dimly%4:02:00:: 00211815 1 10 -dimly%4:02:01:: 00417139 2 0 -dimly%4:02:02:: 00211964 3 0 -dimmed%3:00:00:: 00284575 1 0 -dimmer%1:06:00:: 03199488 1 0 -dimness%1:07:01:: 04955907 2 0 -dimness%1:07:02:: 04704675 3 0 -dimness%1:26:00:: 13985323 1 0 -dimocarpus%1:20:00:: 12743232 1 0 -dimocarpus_longan%1:20:00:: 12743352 1 0 -dimorphic%3:01:00:: 02713368 1 0 -dimorphism%1:19:00:: 11492643 2 0 -dimorphism%1:19:01:: 11493083 1 0 -dimorphotheca%1:20:00:: 11961266 1 0 -dimorphous%3:01:00:: 02713368 1 0 -dimout%1:26:00:: 13984082 1 0 -dimple%1:08:00:: 05599874 3 0 -dimple%1:25:00:: 13896695 2 0 -dimple%1:27:00:: 14835817 1 0 -dimple%2:29:00:: 00028876 2 0 -dimple%2:30:00:: 00509449 1 0 -dimpled_chad%1:27:00:: 14835817 1 0 -dimwit%1:18:00:: 10013114 1 0 -din%1:04:00:: 00553823 2 7 -din%1:11:00:: 07377473 1 9 -din%2:31:00:: 00606850 2 1 -din%2:39:00:: 02187510 1 1 -din_land%1:18:00:: 11115558 1 0 -dinar%1:23:00:: 13668491 9 0 -dinar%1:23:01:: 13668864 8 0 -dinar%1:23:02:: 13669342 7 0 -dinar%1:23:03:: 13669590 6 0 -dinar%1:23:04:: 13669860 5 0 -dinar%1:23:05:: 13670281 4 0 -dinar%1:23:07:: 13670668 3 0 -dinar%1:23:08:: 13671182 2 0 -dinar%1:23:09:: 13696893 1 0 -dindymene%1:18:00:: 09594093 1 0 -dine%2:34:01:: 01167981 1 6 -dine%2:34:02:: 01167780 2 0 -dine_in%2:34:00:: 01167537 1 0 -dine_out%2:34:00:: 01167640 1 0 -diner%1:06:00:: 03200357 2 0 -diner%1:06:01:: 03199647 3 0 -diner%1:18:00:: 10013242 1 0 -dinero%1:21:00:: 13385216 1 0 -dinesen%1:18:00:: 10935745 1 0 -dinette%1:06:00:: 03199775 1 0 -ding%1:07:00:: 04693384 2 0 -ding%1:11:00:: 07383257 1 0 -ding%2:39:00:: 02181174 1 0 -ding-dong%1:11:00:: 07383616 1 0 -dingbat%1:18:00:: 10013399 1 0 -dingdong%2:39:00:: 02181174 1 0 -dingdong%4:02:00:: 00091032 1 0 -dinge%1:26:00:: 14498567 1 0 -dinge%2:30:00:: 00546528 2 0 -dinge%2:30:01:: 00546609 1 0 -dinghy%1:06:00:: 03199901 1 0 -dingily%4:02:00:: 00500226 1 0 -dinginess%1:26:00:: 14498567 1 0 -dingle%1:17:00:: 09264599 1 0 -dingo%1:05:00:: 02115641 1 0 -dingy%5:00:00:depressing:00 00364881 3 0 -dingy%5:00:00:dirty:01 00420650 1 4 -dingy%5:00:00:impure:02 01909077 2 0 -dining%1:04:00:: 00840517 1 0 -dining-hall%1:06:00:: 03200539 1 0 -dining-room%1:06:00:: 03200701 1 0 -dining-room_attendant%1:18:00:: 10013614 1 0 -dining-room_furniture%1:06:00:: 03200906 1 0 -dining-room_table%1:06:00:: 03201035 1 0 -dining_area%1:06:00:: 03200231 1 0 -dining_car%1:06:00:: 03200357 1 0 -dining_companion%1:18:00:: 10687826 1 0 -dining_compartment%1:06:00:: 03200357 1 0 -dining_room%1:06:00:: 03200701 1 6 -dining_table%1:06:00:: 03201208 1 1 -diningroom_set%1:14:00:: 08007777 1 0 -diningroom_suite%1:14:00:: 08007777 1 0 -dink%1:04:00:: 00567280 2 0 -dink%1:14:00:: 07989220 1 0 -dinka%1:10:00:: 06998322 1 0 -dinkey%1:06:00:: 03200152 1 0 -dinky%1:06:00:: 03200152 1 0 -dinky%5:00:00:attractive:01 00167520 2 0 -dinky%5:00:00:small:00 01392896 1 0 -dinner%1:13:00:: 07575726 1 25 -dinner%1:14:00:: 08253815 2 5 -dinner_bell%1:06:00:: 03201529 1 0 -dinner_bucket%1:06:00:: 03201996 1 0 -dinner_dress%1:06:00:: 03201638 1 0 -dinner_gown%1:06:00:: 03201638 1 0 -dinner_jacket%1:06:00:: 03201776 1 0 -dinner_napkin%1:06:00:: 03201895 1 0 -dinner_pail%1:06:00:: 03201996 1 1 -dinner_party%1:14:00:: 08253815 1 1 -dinner_plate%1:06:00:: 03202123 1 0 -dinner_service%1:06:00:: 03202246 1 0 -dinner_set%1:06:00:: 03202246 1 0 -dinner_table%1:06:00:: 03202354 1 0 -dinner_theater%1:06:00:: 03202481 1 0 -dinner_theatre%1:06:00:: 03202481 1 0 -dinnertime%1:28:00:: 15166070 1 2 -dinnerware%1:06:00:: 03202622 1 0 -dino_paul_crocetti%1:18:00:: 11159698 1 0 -dinoceras%1:05:00:: 02372140 1 0 -dinocerata%1:05:00:: 02371471 1 0 -dinocerate%1:05:00:: 02372046 1 0 -dinoflagellata%1:05:00:: 01417041 1 0 -dinoflagellate%1:05:00:: 01417361 1 0 -dinornis%1:05:00:: 01522952 1 0 -dinornis_giganteus%1:05:00:: 01523248 1 0 -dinornithidae%1:05:00:: 01522789 1 0 -dinornithiformes%1:05:00:: 01522594 1 0 -dinosaur%1:05:00:: 01699831 1 0 -dint%1:04:00:: 00173172 1 0 -diocesan%1:18:00:: 10013811 1 0 -diocesan%3:01:00:: 02871449 1 0 -diocese%1:15:00:: 08550966 1 0 -diocletian%1:18:00:: 10935968 1 0 -diode%1:06:00:: 03202760 2 0 -diode%1:06:01:: 03202940 1 0 -diodon%1:05:00:: 02655694 1 0 -diodon_holocanthus%1:05:00:: 02656032 1 0 -diodon_hystrix%1:05:00:: 02655848 1 0 -diodontidae%1:05:00:: 02655355 1 0 -diodora_apertura%1:05:00:: 01949499 1 0 -dioecian%3:00:00:: 01543633 1 0 -dioecious%3:00:00:: 01543633 1 0 -dioestrous%5:00:00:anestrous:00 02138428 1 0 -dioestrual%5:00:00:anestrous:00 02138428 1 0 -diogenes%1:18:00:: 10936279 1 0 -diol%1:27:00:: 14835980 1 0 -diomedea_exulans%1:05:00:: 02058594 1 0 -diomedea_nigripes%1:05:00:: 02058747 1 0 -diomedeidae%1:05:00:: 02058074 1 0 -dionaea%1:20:00:: 12782774 1 0 -dionaea_muscipula%1:20:00:: 12782915 1 0 -dionysia%1:04:00:: 00511676 1 0 -dionysian%3:01:00:: 02713581 1 0 -dionysius%1:18:00:: 10936424 1 0 -dionysius_the_elder%1:18:00:: 10936424 1 0 -dionysus%1:18:00:: 09558898 1 0 -dioon%1:20:00:: 11602873 1 0 -diophantus%1:18:00:: 10936567 1 0 -diopter%1:23:00:: 13584918 1 0 -dioptre%1:23:00:: 13584918 1 0 -dior%1:18:00:: 10936716 1 0 -diorama%1:06:00:: 03884072 1 0 -diorite%1:27:00:: 14932554 1 0 -dioscorea%1:20:00:: 12087807 1 0 -dioscorea_alata%1:20:00:: 12088327 1 0 -dioscorea_batata%1:20:00:: 12088495 1 0 -dioscorea_bulbifera%1:20:00:: 12088768 1 0 -dioscorea_elephantipes%1:20:00:: 12088909 1 0 -dioscorea_paniculata%1:20:00:: 12089320 1 0 -dioscorea_trifida%1:20:00:: 12089496 1 0 -dioscoreaceae%1:20:00:: 12087650 1 0 -diospyros%1:20:00:: 12770277 1 0 -diospyros_ebenum%1:20:00:: 12770529 1 0 -diospyros_kaki%1:20:00:: 12771390 1 0 -diospyros_kurzii%1:20:00:: 12770892 1 0 -diospyros_lotus%1:20:00:: 12771890 1 0 -diospyros_virginiana%1:20:00:: 12771597 1 0 -diovan%1:06:00:: 04519019 1 0 -dioxide%1:27:00:: 14836127 1 0 -dioxin%1:27:00:: 14836308 1 0 -dip%1:04:00:: 00442847 8 0 -dip%1:04:01:: 00435013 9 0 -dip%1:06:00:: 03203089 7 0 -dip%1:07:00:: 05111835 6 0 -dip%1:11:00:: 07364434 5 0 -dip%1:13:00:: 07582609 4 0 -dip%1:18:00:: 10431907 3 0 -dip%1:25:00:: 13892897 2 0 -dip%1:25:01:: 13904506 1 0 -dip%2:30:00:: 00286483 4 1 -dip%2:30:01:: 00432061 3 1 -dip%2:34:00:: 01192312 2 1 -dip%2:35:00:: 01577093 1 2 -dip%2:35:10:: 01577966 13 0 -dip%2:35:11:: 01578124 12 0 -dip%2:35:12:: 01312657 14 0 -dip%2:36:00:: 01660976 11 0 -dip%2:38:00:: 01976220 10 0 -dip%2:38:01:: 02039679 8 0 -dip%2:38:02:: 02038145 9 0 -dip%2:38:03:: 02041109 7 0 -dip%2:39:00:: 02162310 6 0 -dip%2:40:12:: 02311857 5 0 -dip_circle%1:06:00:: 03566555 1 0 -dip_into%2:31:00:: 00625841 1 0 -dip_solder%2:35:00:: 01595491 1 0 -dip_switch%1:06:00:: 03204558 1 0 -diphenhydramine%1:06:00:: 03203225 1 0 -diphenylbutyl_piperidine%1:06:00:: 03203641 1 0 -diphenylhydantoin%1:06:00:: 03203441 1 0 -diphtheria%1:26:00:: 14123510 1 0 -diphthong%1:10:00:: 07112364 1 0 -diphthongise%2:32:00:: 00744237 1 0 -diphthongize%2:32:00:: 00744237 1 0 -diphylla%1:05:00:: 02151108 1 0 -diphylla_ecaudata%1:05:00:: 02151230 1 0 -dipladenia%1:20:00:: 11773138 1 0 -dipladenia_boliviensis%1:20:00:: 11773408 1 0 -diplazium_pycnocarpon%1:20:00:: 13194918 1 0 -diplegia%1:26:00:: 14087208 1 0 -diplococcus%1:05:00:: 01380610 1 0 -diplococcus_pneumoniae%1:05:00:: 01380754 1 0 -diplodocus%1:05:00:: 01710177 1 0 -diploic_vein%1:08:00:: 05365284 1 0 -diploid%1:05:00:: 01320093 1 0 -diploid%3:00:00:: 01147622 1 0 -diploidy%1:26:00:: 14570676 1 0 -diploma%1:10:00:: 06478582 1 0 -diplomacy%1:07:00:: 04842029 2 1 -diplomacy%1:07:01:: 04890865 3 0 -diplomacy%1:10:00:: 07148573 1 1 -diplomat%1:18:00:: 10013927 1 4 -diplomat%1:18:01:: 10014658 2 0 -diplomate%1:18:00:: 10014771 1 0 -diplomatic%3:00:00:: 00758459 2 1 -diplomatic%3:01:00:: 02713715 1 2 -diplomatic_building%1:06:00:: 03203806 1 0 -diplomatic_corps%1:14:00:: 08357647 1 0 -diplomatic_immunity%1:26:00:: 14529212 1 0 -diplomatic_minister%1:18:00:: 10320695 1 0 -diplomatic_mission%1:14:00:: 08402693 1 0 -diplomatic_negotiations%1:10:00:: 07148573 1 0 -diplomatic_pouch%1:06:00:: 03203959 1 0 -diplomatic_service%1:14:00:: 08357647 1 0 -diplomatical%3:00:00:: 00758459 1 0 -diplomatically%4:02:00:: 00203201 1 0 -diplomatist%1:18:00:: 10013927 1 0 -diplopia%1:26:00:: 14153285 1 0 -diplopoda%1:05:00:: 01786402 1 0 -diplopterygium%1:20:00:: 13170661 1 0 -diplopterygium_longissimum%1:20:00:: 13170840 1 0 -diplotaxis%1:20:00:: 11885148 1 0 -diplotaxis_erucoides%1:20:00:: 11885524 1 0 -diplotaxis_muralis%1:20:00:: 11885292 1 0 -diplotaxis_tenuifolia%1:20:00:: 11885292 1 0 -diplotene%1:22:00:: 13466449 1 0 -dipnoi%1:05:00:: 02515914 1 0 -dipodidae%1:05:00:: 02351518 1 0 -dipodomys%1:05:00:: 02349980 1 0 -dipodomys_ordi%1:05:00:: 02350357 1 0 -dipodomys_phillipsii%1:05:00:: 02350105 1 0 -dipogon%1:20:00:: 12526946 1 0 -dipogon_lignosus%1:20:00:: 12527081 1 0 -dipolar%3:01:00:: 02953973 1 0 -dipole%1:06:00:: 03204134 2 0 -dipole%1:17:00:: 09266946 1 6 -dipole_antenna%1:06:00:: 03204134 1 0 -dipole_molecule%1:17:00:: 09267128 1 0 -dipole_moment%1:19:00:: 11483354 1 0 -dipped%5:00:00:unfit:01 01020117 1 0 -dippel's_oil%1:27:00:: 14783251 1 0 -dipper%1:05:01:: 01850192 4 0 -dipper%1:05:02:: 01601694 5 0 -dipper%1:06:00:: 03204306 1 4 -dipper%1:17:01:: 09219858 3 0 -dipper%1:17:02:: 09340452 2 0 -dippers%1:14:00:: 08090547 1 0 -dipsacaceae%1:20:00:: 12682054 1 0 -dipsacus%1:20:00:: 12682264 1 0 -dipsacus_fullonum%1:20:00:: 12682668 1 0 -dipsacus_sativus%1:20:00:: 12682882 1 0 -dipsacus_sylvestris%1:20:00:: 12683096 1 0 -dipsomania%1:16:00:: 09181993 1 0 -dipsomaniac%1:18:00:: 09782167 1 0 -dipsosaurus%1:05:00:: 01677913 1 0 -dipsosaurus_dorsalis%1:05:00:: 01678043 1 0 -dipstick%1:06:00:: 03204436 1 0 -diptera%1:05:00:: 02188065 1 0 -dipteran%1:05:00:: 02188699 1 0 -dipterocarp%1:20:00:: 12377198 1 0 -dipterocarpaceae%1:20:00:: 12376950 1 0 -dipteron%1:05:00:: 02188699 1 0 -dipteronia%1:20:00:: 12756059 1 0 -dipterous%3:01:00:: 02713855 1 0 -dipterous_insect%1:05:00:: 02188699 1 0 -dipteryx%1:20:00:: 11749742 1 0 -dipteryx_odorata%1:20:00:: 11749920 1 0 -diptych%1:06:00:: 03204810 1 0 -dipus%1:05:00:: 02351686 1 0 -dipylon%1:15:00:: 08785958 1 0 -dipylon%3:01:00:: 03017659 1 1 -dipylon_gate%1:15:00:: 08785958 1 0 -dirac%1:18:00:: 10936894 1 0 -dirca%1:20:00:: 12347490 1 0 -dirca_palustris%1:20:00:: 12347639 1 0 -dire%5:00:00:critical:03 00651451 1 0 -dire%5:00:01:alarming:00 00193799 2 0 -dire_straits%1:26:00:: 14033481 1 0 -direct%2:31:00:: 00710005 13 0 -direct%2:31:01:: 00713015 10 1 -direct%2:32:00:: 00749205 1 17 -direct%2:32:01:: 00749376 9 1 -direct%2:32:02:: 00990812 12 0 -direct%2:33:00:: 01151110 7 5 -direct%2:33:01:: 01150559 2 16 -direct%2:36:00:: 01710317 3 13 -direct%2:36:02:: 01732921 8 4 -direct%2:38:00:: 01999798 5 5 -direct%2:38:01:: 01951480 6 5 -direct%2:38:03:: 01931768 11 0 -direct%2:41:00:: 02439501 4 7 -direct%3:00:00:: 00760916 1 23 -direct%3:00:01:: 00763633 7 0 -direct%3:00:02:: 00763901 3 5 -direct%3:00:03:: 00769239 6 0 -direct%3:00:04:: 01416508 4 0 -direct%3:00:05:: 00769926 5 0 -direct%4:02:00:: 00051848 1 0 -direct%5:00:00:absolute:00 00005473 10 0 -direct%5:00:00:exact:00 00914808 9 0 -direct%5:00:00:immediate:00 00770480 2 16 -direct%5:00:00:primary:00 01852666 8 0 -direct-grant_school%1:14:00:: 08278924 1 0 -direct_action%1:04:00:: 01168369 1 0 -direct_antonym%1:10:00:: 06305716 1 0 -direct_contrast%1:24:00:: 13855627 1 1 -direct_correlation%1:09:00:: 06032898 1 0 -direct_current%1:19:00:: 11447153 1 1 -direct_discourse%1:10:00:: 07138736 1 0 -direct_dye%1:27:00:: 14987341 1 0 -direct_electric_current%1:19:00:: 11447153 1 0 -direct_evidence%1:10:00:: 06735077 1 1 -direct_examination%1:10:00:: 07195241 1 0 -direct_fire%1:04:00:: 00990719 1 0 -direct_flight%1:04:00:: 00301598 1 0 -direct_loan%1:21:00:: 13399379 1 2 -direct_mail%1:10:00:: 06266296 1 0 -direct_mailer%1:14:00:: 08062092 1 0 -direct_marketing%1:04:00:: 01112739 1 0 -direct_object%1:10:00:: 06310578 1 0 -direct_primary%1:04:00:: 00182723 1 0 -direct_quotation%1:10:00:: 07138736 1 0 -direct_sum%1:14:00:: 07998904 1 1 -direct_support%1:04:00:: 00972112 1 0 -direct_supporting_fire%1:04:00:: 00989385 1 0 -direct_tax%1:21:00:: 13313464 1 0 -direct_tide%1:11:00:: 07402873 1 0 -direct_transmission%1:17:00:: 09267227 1 0 -direct_trust%1:21:00:: 13362347 1 0 -directed%5:00:00:manageable:00 01475041 2 0 -directed%5:00:00:oriented:00 01683061 1 2 -directed_study%1:04:00:: 00890568 1 0 -directed_verdict%1:04:00:: 01192814 1 0 -directing%5:00:00:leading:00 00199114 1 1 -direction%1:04:00:: 01133281 5 3 -direction%1:04:01:: 00815320 7 1 -direction%1:09:00:: 06197215 3 14 -direction%1:09:01:: 05704694 9 0 -direction%1:10:00:: 06650701 4 5 -direction%1:10:01:: 07169480 8 0 -direction%1:10:02:: 06786629 6 2 -direction%1:15:00:: 08679972 1 35 -direction%1:24:00:: 13827426 2 17 -direction_finder%1:06:00:: 03205304 1 0 -directional%3:01:00:: 02713974 1 1 -directional%3:01:01:: 02714263 2 0 -directional%5:00:00:leading:00 00199114 3 0 -directional_antenna%1:06:00:: 03204955 1 0 -directional_microphone%1:06:00:: 03205143 1 0 -directionality%1:07:00:: 05066626 1 1 -directionality%1:07:01:: 05063853 2 0 -directionless%5:00:00:purposeless:00 01910652 1 0 -directive%1:10:00:: 07170080 1 1 -directive%5:00:00:leading:00 00199114 1 0 -directiveness%1:07:00:: 05066867 1 0 -directivity%1:07:00:: 05066626 1 1 -directivity%1:07:01:: 05066867 2 0 -directly%4:02:00:: 00051848 1 26 -directly%4:02:01:: 00058128 4 5 -directly%4:02:05:: 00504281 2 14 -directly%4:02:07:: 00048739 3 9 -directness%1:07:00:: 04918210 1 0 -directness%1:07:01:: 04871720 2 0 -director%1:18:00:: 10014939 1 18 -director%1:18:01:: 09952539 5 0 -director%1:18:02:: 10015215 3 6 -director%1:18:03:: 10015485 2 6 -director%1:18:04:: 10088200 4 0 -director-stockholder_relation%1:24:00:: 13839287 1 0 -director_of_central_intelligence%1:18:00:: 10015607 1 0 -director_of_research%1:18:00:: 10522956 1 0 -directorate%1:14:00:: 08380768 1 0 -directorate_for_inter-services_intelligence%1:14:00:: 08343534 1 0 -directorship%1:04:00:: 00591858 1 0 -directory%1:10:00:: 06423619 1 1 -directory%1:10:01:: 06490451 2 0 -direful%5:00:01:alarming:00 00193799 1 0 -direfully%4:02:00:: 00312252 1 0 -dirge%1:10:00:: 07050619 1 2 -dirham%1:23:01:: 13669998 6 0 -dirham%1:23:02:: 13670399 5 0 -dirham%1:23:03:: 13670790 4 0 -dirham%1:23:04:: 13671527 3 0 -dirham%1:23:05:: 13671813 2 0 -dirham%1:23:06:: 13698445 1 0 -dirigible%1:06:00:: 02692877 1 0 -dirigible%5:00:00:manageable:00 01475160 1 0 -diriment_impediment%1:09:00:: 05689909 1 0 -dirk%1:06:00:: 03205458 1 0 -dirndl%1:06:00:: 03205574 2 0 -dirndl%1:06:01:: 03205669 1 0 -dirt%1:10:00:: 07223811 4 0 -dirt%1:26:00:: 14498096 2 11 -dirt%1:27:01:: 14844693 1 14 -dirt%1:27:02:: 14854581 3 0 -dirt%5:00:00:unimproved:00 01289480 1 0 -dirt_ball%1:18:00:: 10792028 1 0 -dirt_bike%1:06:00:: 04466871 1 0 -dirt_cheap%5:00:00:cheap:00 00934874 1 0 -dirt_track%1:06:00:: 03205760 1 0 -dirtily%4:02:00:: 00312377 2 0 -dirtily%4:02:01:: 00312520 1 0 -dirtiness%1:07:00:: 04903678 3 0 -dirtiness%1:26:00:: 14497763 1 0 -dirtiness%1:26:01:: 14488004 2 0 -dirty%2:35:00:: 01534147 1 0 -dirty%3:00:01:: 00419289 1 12 -dirty%3:00:02:: 00424370 2 2 -dirty%3:00:03:: 00426608 4 0 -dirty%5:00:00:corrupt:00 00621857 11 0 -dirty%5:00:00:hostile:01 01245778 9 0 -dirty%5:00:00:illegal:00 01403012 8 0 -dirty%5:00:00:illegible:00 01405390 7 0 -dirty%5:00:00:impure:02 01909077 6 0 -dirty%5:00:00:nasty:00 01587474 3 1 -dirty%5:00:00:septic:00 02114296 5 0 -dirty%5:00:00:stormy:00 00305590 12 0 -dirty%5:00:00:unfair:00 00957743 10 0 -dirty-faced%5:00:00:dirty:01 00421383 1 0 -dirty-minded%5:00:00:dirty:02 00425234 1 0 -dirty_bomb%1:06:00:: 03205903 1 0 -dirty_dog%1:18:00:: 10539715 1 0 -dirty_joke%1:10:00:: 06779096 1 0 -dirty_laundry%1:09:00:: 05671842 1 0 -dirty_linen%1:09:00:: 05671842 1 0 -dirty_money%1:21:00:: 13262663 1 0 -dirty_old_man%1:18:00:: 10015792 1 0 -dirty_pool%1:04:00:: 01223766 1 0 -dirty_story%1:10:00:: 06779096 1 0 -dirty_trick%1:04:00:: 00514041 1 0 -dirty_tricks%1:04:00:: 01223877 1 0 -dirty_war%1:04:00:: 00980394 1 0 -dirty_word%1:10:00:: 07124340 1 0 -dirty_word%1:10:01:: 06290401 2 0 -dirtying%1:04:00:: 00276620 1 0 -dis%1:18:00:: 09570522 1 0 -disa%1:14:00:: 08396207 2 0 -disa%1:20:00:: 12059625 1 0 -disability%1:26:00:: 14548343 1 3 -disability_benefit%1:21:00:: 13297740 1 0 -disability_check%1:21:00:: 13383855 1 0 -disability_insurance%1:04:00:: 01088757 1 0 -disability_of_walking%1:26:00:: 14548913 1 0 -disability_payment%1:21:00:: 13383855 1 0 -disable%2:29:00:: 00091968 2 0 -disable%2:30:00:: 00512186 1 1 -disabled%1:14:00:: 07946288 1 2 -disabled%5:00:00:unfit:01 01019283 1 6 -disablement%1:26:00:: 14548343 1 0 -disabling%3:00:00:: 01195341 2 0 -disabling%5:00:00:unhealthful:00 01168166 1 2 -disabuse%2:32:00:: 00991577 1 2 -disabused%5:00:01:disenchanted:00 00866182 1 0 -disaccharidase%1:27:00:: 14836468 1 0 -disaccharide%1:27:00:: 14836642 1 0 -disaccord%2:42:00:: 02718543 1 0 -disadvantage%1:07:00:: 05161614 1 3 -disadvantage%2:41:00:: 02513460 1 0 -disadvantaged%5:00:00:underprivileged:00 01864666 1 0 -disadvantageous%3:00:00:: 00065488 1 0 -disadvantageously%4:02:00:: 00014014 1 0 -disaffect%2:37:00:: 01823528 1 0 -disaffected%5:00:00:discontented:00 00589960 1 0 -disaffection%1:07:00:: 04879498 2 0 -disaffection%1:12:00:: 07502387 1 0 -disaffirmation%1:10:00:: 07204240 1 0 -disafforest%2:30:00:: 00196024 1 0 -disagree%2:32:00:: 00804802 1 10 -disagree%2:42:00:: 02718543 2 0 -disagree_with%2:29:00:: 00071037 1 0 -disagreeable%3:00:00:: 00089355 1 0 -disagreeable%5:00:00:ill-natured:00 01137882 2 0 -disagreeable%5:00:00:uncongenial:00 00561359 3 0 -disagreeable_person%1:18:00:: 09631463 1 0 -disagreeable_woman%1:18:00:: 10739636 1 0 -disagreeableness%1:07:00:: 04643221 2 0 -disagreeableness%1:07:01:: 04779895 1 0 -disagreeably%4:02:00:: 00312603 1 0 -disagreement%1:07:00:: 04749709 2 2 -disagreement%1:10:00:: 07180787 3 0 -disagreement%1:26:00:: 13982357 1 3 -disallow%2:32:00:: 00795863 1 1 -disambiguate%2:32:00:: 00957178 1 0 -disambiguation%1:10:00:: 07171513 1 0 -disambiguator%1:10:00:: 06572204 1 0 -disappear%2:30:00:: 00426958 1 40 -disappear%2:30:02:: 00427397 3 0 -disappear%2:30:10:: 00223928 4 0 -disappear%2:39:00:: 02156546 2 0 -disappearance%1:04:00:: 00053609 1 4 -disappearance%1:04:01:: 00230172 3 1 -disappearance%1:11:00:: 07335716 2 1 -disappearance%1:11:01:: 07336346 4 0 -disappearing%1:04:00:: 00053609 1 0 -disappoint%2:37:00:: 01798936 1 5 -disappointed%5:00:00:unsuccessful:00 02333976 1 4 -disappointedly%4:02:00:: 00312775 1 0 -disappointing%5:00:00:unsatisfactory:00 02082611 1 1 -disappointingly%4:02:00:: 00312925 1 0 -disappointment%1:04:00:: 00068755 2 1 -disappointment%1:12:00:: 07540602 1 7 -disapprobation%1:10:00:: 06709692 1 1 -disapproval%1:04:00:: 00874621 4 0 -disapproval%1:09:00:: 06200741 3 0 -disapproval%1:10:00:: 06709533 2 1 -disapproval%1:12:00:: 07502829 1 6 -disapprove%2:31:00:: 00674340 1 5 -disapprove%2:32:00:: 00807178 2 2 -disapproving%5:00:00:unfavorable:02 00997298 1 0 -disapprovingly%4:02:00:: 00262090 1 0 -disarm%2:33:00:: 01087835 1 2 -disarm%2:33:01:: 01088005 3 0 -disarm%2:37:00:: 01830445 2 0 -disarmament%1:04:00:: 01157557 1 1 -disarmer%1:18:00:: 10390199 1 0 -disarming%1:04:00:: 01157557 1 0 -disarming%5:00:00:unprovocative:00 01897948 1 0 -disarrange%2:30:00:: 00278117 2 0 -disarrange%2:35:00:: 01466733 1 0 -disarranged%3:00:00:: 01681607 1 0 -disarrangement%1:26:00:: 14500341 1 0 -disarray%1:07:00:: 04897604 2 0 -disarray%1:09:00:: 05683582 1 1 -disarray%2:30:00:: 00276373 1 0 -disarrayed%5:00:00:disarranged:00 01681789 1 0 -disarticulate%2:35:00:: 01294632 1 0 -disassemble%2:36:00:: 01657977 1 1 -disassembly%1:04:00:: 00912274 1 1 -disassociate%2:41:00:: 02430580 1 0 -disassociation%1:26:00:: 14416845 2 0 -disassociation%1:26:01:: 14421373 1 0 -disassortative_mating%1:04:00:: 00847932 1 0 -disaster%1:04:00:: 00217499 3 1 -disaster%1:11:00:: 07314838 2 7 -disaster%1:26:00:: 14476290 1 7 -disaster_area%1:15:00:: 08551177 1 0 -disastrous%5:00:00:unfortunate:00 01050088 1 6 -disastrously%4:02:00:: 00313092 1 0 -disavow%2:32:00:: 00820075 1 0 -disavowable%5:00:00:deniable:00 00721287 1 0 -disavowal%1:10:00:: 07205946 1 0 -disband%2:38:00:: 02029944 2 1 -disband%2:38:01:: 02030967 1 1 -disbandment%1:04:00:: 01082720 1 0 -disbar%2:41:00:: 02480588 1 0 -disbarment%1:04:00:: 00206779 1 0 -disbelief%1:09:00:: 05698982 1 3 -disbelief%1:09:01:: 05979909 2 0 -disbelieve%2:31:00:: 00684645 1 1 -disbeliever%1:18:00:: 10015897 1 0 -disbelieving%5:00:00:incredulous:00 00647247 1 0 -disbelievingly%4:02:00:: 00296425 1 0 -disbud%2:30:00:: 00197318 2 0 -disbud%2:35:00:: 01321671 1 0 -disburden%2:35:00:: 01487927 1 0 -disbursal%1:04:00:: 01122149 2 0 -disbursal%1:21:00:: 13275495 1 0 -disburse%2:40:00:: 02301502 1 1 -disbursement%1:04:00:: 01122149 2 0 -disbursement%1:21:00:: 13275495 1 0 -disburser%1:18:00:: 10635275 1 0 -disc%1:06:00:: 03208556 4 0 -disc%1:06:01:: 03924069 1 10 -disc%1:06:03:: 03706653 3 0 -disc%1:25:00:: 13875185 2 1 -disc-jockey%2:32:00:: 01033346 1 0 -disc-shaped%5:00:00:round:00 02042267 1 0 -disc_brake%1:06:00:: 03208938 1 0 -disc_drive%1:06:00:: 03209666 1 0 -disc_harrow%1:06:00:: 03210245 1 0 -disc_jockey%1:18:00:: 10017272 1 0 -disc_pack%1:14:00:: 07956552 1 0 -disc_space%1:15:00:: 08555883 1 0 -discalceate%3:00:00:: 02157041 1 0 -discalced%3:00:00:: 02157041 1 0 -discant%1:10:00:: 07032026 1 0 -discard%1:04:00:: 00091234 3 0 -discard%1:04:01:: 00091503 2 0 -discard%1:17:00:: 09267490 1 0 -discard%2:40:00:: 02222318 1 3 -discarded%5:00:00:unwanted:00 02528206 1 1 -discase%2:29:00:: 00049900 1 0 -disceptation%1:10:00:: 07183151 1 0 -discern%2:39:00:: 02193194 1 7 -discernability%1:07:00:: 04703104 1 0 -discernable%3:00:00:: 00581812 1 1 -discernible%3:00:00:: 00581812 1 3 -discernible%5:00:00:noticeable:00 01287486 3 0 -discernible%5:00:00:perceptible:00 01747195 2 1 -discerning%3:00:00:: 00771373 1 1 -discerning%5:00:00:discriminating:00 00775135 4 0 -discerning%5:00:00:perceptive:00 01745027 3 0 -discerning%5:00:00:tactful:00 02384672 2 0 -discernment%1:07:00:: 04891010 5 0 -discernment%1:09:00:: 05614175 4 0 -discernment%1:09:01:: 05805475 1 0 -discernment%1:09:02:: 05710210 3 0 -discernment%1:09:03:: 05749619 2 0 -discerp%2:35:00:: 01572510 1 0 -discerp%2:35:01:: 01560731 2 0 -discharge%1:04:00:: 00123234 9 0 -discharge%1:04:01:: 00216174 7 0 -discharge%1:04:02:: 00213694 8 0 -discharge%1:04:04:: 01253277 2 3 -discharge%1:11:00:: 07307754 1 13 -discharge%1:11:01:: 07407777 6 0 -discharge%1:19:00:: 11511523 5 1 -discharge%1:22:00:: 13466586 4 1 -discharge%1:27:00:: 14852450 3 1 -discharge%2:29:00:: 00104868 7 1 -discharge%2:30:00:: 00448680 11 0 -discharge%2:32:00:: 00904046 6 1 -discharge%2:33:00:: 01097743 10 0 -discharge%2:33:01:: 01133825 9 0 -discharge%2:33:02:: 01134238 5 1 -discharge%2:35:00:: 01377032 2 3 -discharge%2:35:01:: 01489332 4 1 -discharge%2:35:06:: 01489465 8 0 -discharge%2:41:00:: 02563724 1 3 -discharge%2:41:01:: 02422026 3 1 -discharge_lamp%1:06:00:: 03206023 1 0 -discharge_pipe%1:06:00:: 03206158 1 0 -discharged%5:00:00:unemployed:00 00864884 1 0 -disciform%5:00:00:rounded:00 02045894 1 0 -discina%1:20:00:: 13036804 1 0 -discina_macrospora%1:20:00:: 13036907 1 0 -disciotis_venosa%1:20:00:: 13032618 1 0 -disciple%1:18:00:: 10016103 1 1 -disciples_of_christ%1:14:00:: 08087776 1 0 -discipleship%1:04:00:: 00592001 1 0 -disciplinal%5:00:00:nonindulgent:00 01300661 1 0 -disciplinarian%1:18:00:: 10296444 1 0 -disciplinary%3:01:00:: 03061081 2 0 -disciplinary%3:01:01:: 03061455 1 0 -disciplinary%5:00:00:nonindulgent:00 01300661 3 0 -discipline%1:04:00:: 00893836 4 1 -discipline%1:04:01:: 01161821 5 0 -discipline%1:07:00:: 04881623 3 2 -discipline%1:09:00:: 05996646 1 2 -discipline%1:09:01:: 05662876 2 2 -discipline%2:41:00:: 02553428 2 0 -discipline%2:41:01:: 02553697 1 4 -disciplined%5:00:00:controlled:00 00599111 1 4 -disciplined%5:00:00:trained:00 01911951 2 1 -disclaim%2:32:00:: 00757375 2 0 -disclaim%2:32:01:: 00758197 1 0 -disclaimer%1:10:00:: 07207680 1 0 -disclaimer%1:10:01:: 07205946 2 0 -disclike%5:00:00:round:00 02042267 1 0 -disclose%2:32:00:: 00933821 1 19 -disclose%2:39:00:: 02137710 2 6 -disclosed%5:00:00:unveiled:00 02508514 1 0 -disclosure%1:10:00:: 07213395 1 1 -disco%1:06:00:: 03206282 2 0 -disco%1:10:00:: 07059626 1 0 -disco%2:38:00:: 01897406 1 0 -disco_biscuit%1:06:00:: 02678738 1 0 -disco_music%1:10:00:: 07059626 1 0 -discocephali%1:05:00:: 02574489 1 0 -discoglossidae%1:05:00:: 01647803 1 0 -discography%1:10:00:: 06488224 1 0 -discoid%5:00:00:round:00 02042267 1 0 -discoid_lupus_erythematosus%1:26:00:: 14220735 1 0 -discoidal%5:00:00:round:00 02042267 1 0 -discolor%2:30:00:: 00281101 3 0 -discolor%2:30:01:: 00282933 1 0 -discolor%2:30:02:: 00282076 2 0 -discoloration%1:04:00:: 00274707 2 0 -discoloration%1:07:00:: 04695176 1 0 -discolorise%2:30:00:: 00279822 1 0 -discolorize%2:30:00:: 00279822 1 0 -discolour%2:30:00:: 00281101 1 0 -discolouration%1:04:00:: 00274707 2 0 -discolouration%1:07:00:: 04695176 1 0 -discolourise%2:30:00:: 00279822 1 0 -discombobulate%2:31:00:: 00621734 2 0 -discombobulate%2:37:00:: 01791232 1 0 -discombobulated%5:00:00:discomposed:00 00532288 1 0 -discombobulation%1:12:00:: 07507912 1 0 -discomfit%2:37:00:: 01790020 1 0 -discomfited%1:14:00:: 07946135 1 1 -discomfited%5:00:00:unsuccessful:00 02333976 1 0 -discomfiture%1:12:00:: 07508232 1 0 -discomfort%1:12:00:: 07495973 2 0 -discomfort%1:26:00:: 14446652 1 3 -discommode%2:41:00:: 02507736 1 0 -discompose%2:37:00:: 01790020 1 0 -discomposed%3:00:00:: 00531342 1 0 -discomposure%1:07:00:: 04904664 2 0 -discomposure%1:12:00:: 07508232 1 0 -discomycete%1:20:00:: 13028611 1 0 -discomycetes%1:20:00:: 13028337 1 0 -discomycetous%3:01:00:: 02714433 1 0 -disconcert%2:37:01:: 01790020 2 0 -disconcert%2:37:02:: 01790739 1 0 -disconcerted%5:00:00:discomposed:00 00532288 1 1 -disconcerting%5:00:00:displeasing:00 01809019 1 2 -disconcertingly%4:02:00:: 00313263 1 1 -disconcertion%1:12:00:: 07508232 1 0 -disconcertment%1:12:00:: 07508232 1 0 -disconfirming%3:00:02:: 01820861 1 0 -disconfirming%5:00:00:unsupportive:00 02356712 2 0 -disconnect%1:07:00:: 04753060 1 0 -disconnect%2:35:00:: 01356038 2 1 -disconnect%2:35:03:: 01421417 1 1 -disconnected%3:00:02:: 02293856 1 0 -disconnected%5:00:00:divided:00 02481012 2 0 -disconnected%5:00:00:incoherent:00 00465221 5 0 -disconnected%5:00:00:off:00 01651609 4 0 -disconnected%5:00:00:staccato:00 02294122 3 0 -disconnectedness%1:26:00:: 14417697 1 0 -disconnection%1:04:00:: 00385649 3 0 -disconnection%1:07:00:: 04753060 2 0 -disconnection%1:26:00:: 14417697 1 0 -disconsolate%3:00:04:: 01232298 1 0 -disconsolate%5:00:00:depressing:00 00364881 2 0 -disconsolately%4:02:00:: 00308767 1 0 -disconsolateness%1:12:00:: 07538395 1 0 -discontent%1:12:00:: 07538965 1 2 -discontent%2:37:00:: 01816983 1 0 -discontent%3:00:00:: 00589624 1 0 -discontented%3:00:00:: 00589624 1 1 -discontentedly%4:02:00:: 00313436 1 0 -discontentedness%1:12:00:: 07538965 1 0 -discontentment%1:12:00:: 07538965 1 0 -discontinuance%1:04:00:: 01022483 1 1 -discontinuation%1:04:00:: 01022483 1 0 -discontinue%2:30:00:: 00362348 3 0 -discontinue%2:42:00:: 02680814 1 4 -discontinue%2:42:01:: 02683840 2 2 -discontinued%3:00:00:: 00598203 1 0 -discontinuity%1:26:00:: 14417551 1 4 -discontinuous%3:00:01:: 00596769 2 0 -discontinuous%3:00:02:: 00597599 1 0 -discord%1:04:01:: 01170175 4 0 -discord%1:07:01:: 04984698 3 0 -discord%1:10:00:: 07181546 2 0 -discord%1:26:00:: 13979064 1 0 -discord%2:42:00:: 02718543 1 0 -discordance%1:04:00:: 01170175 2 0 -discordance%1:07:00:: 04984698 1 0 -discordant%3:00:00:: 00553899 1 0 -discordant%5:00:00:inharmonious:00 01164250 2 0 -discordantly%4:02:00:: 00236164 1 0 -discorporate%5:00:00:incorporeal:00 00631040 1 1 -discotheque%1:06:00:: 03206282 1 0 -discount%1:04:00:: 00362103 1 1 -discount%1:21:00:: 13274597 4 0 -discount%1:21:01:: 13319253 2 0 -discount%1:21:02:: 13282275 3 0 -discount%2:32:00:: 00800930 1 3 -discount%2:40:00:: 02319428 2 0 -discount_business%1:04:00:: 01101114 1 1 -discount_chain%1:14:00:: 08061695 1 0 -discount_house%1:06:00:: 03206405 1 0 -discount_rate%1:21:00:: 13319253 2 0 -discount_rate%1:21:01:: 13319512 1 0 -discount_store%1:06:00:: 03206405 1 0 -discountenance%2:31:00:: 00732837 2 0 -discountenance%2:37:00:: 01792413 1 0 -discounter%1:06:00:: 03206405 1 0 -discourage%2:32:01:: 00908099 1 12 -discourage%2:32:02:: 00870577 3 2 -discourage%2:37:00:: 01819147 2 3 -discouraged%5:00:00:irresolute:00 01992418 2 0 -discouraged%5:00:00:pessimistic:00 01664880 1 2 -discouragement%1:04:00:: 01076724 3 0 -discouragement%1:10:00:: 07253637 2 0 -discouragement%1:12:02:: 07542675 1 0 -discouraging%3:00:00:: 00867213 1 1 -discouraging%5:00:00:dissuasive:00 01771381 2 0 -discouragingly%4:02:00:: 00328830 1 0 -discourse%1:10:00:: 07138085 3 0 -discourse%1:10:01:: 06284777 1 2 -discourse%1:10:02:: 07243837 2 0 -discourse%2:32:00:: 00814621 3 0 -discourse%2:32:01:: 00964694 2 0 -discourse%2:32:02:: 01034312 1 0 -discourteous%3:00:00:: 00640283 1 1 -discourteous%5:00:00:impolite:00 00642152 2 0 -discourteously%4:02:00:: 00218681 1 0 -discourtesy%1:04:00:: 01224031 3 0 -discourtesy%1:07:00:: 04914292 2 0 -discourtesy%1:10:00:: 06714976 1 0 -discover%2:31:00:: 00721437 4 16 -discover%2:31:01:: 00598954 2 21 -discover%2:31:03:: 00652346 8 0 -discover%2:32:04:: 00933821 6 4 -discover%2:36:00:: 01637982 3 18 -discover%2:39:00:: 02128066 7 1 -discover%2:39:03:: 02154508 1 21 -discover%2:40:00:: 02286687 5 6 -discoverable%5:00:00:determinable:00 00738829 1 0 -discovered%5:00:00:determined:00 01610484 1 2 -discovered_check%1:04:00:: 00167580 1 0 -discoverer%1:18:00:: 10090498 2 0 -discoverer%1:18:01:: 10214637 1 0 -discovery%1:04:00:: 00043195 1 12 -discovery%1:09:00:: 05808218 3 5 -discovery%1:10:00:: 07214432 2 5 -discovery%1:10:01:: 07214642 4 0 -discovery_day%1:28:00:: 15190895 1 0 -discredit%1:26:00:: 14439745 1 1 -discredit%2:31:00:: 00684645 3 0 -discredit%2:31:01:: 00687738 1 1 -discredit%2:32:00:: 00847478 2 0 -discreditable%5:00:00:disreputable:00 01984097 1 0 -discreditably%4:02:00:: 00313633 1 0 -discredited%5:00:00:ashamed:00 00154163 2 0 -discredited%5:00:00:disreputable:00 01984252 1 0 -discreet%3:00:00:: 00772910 1 0 -discreet%5:00:00:prudent:00 01898490 3 0 -discreet%5:00:00:tactful:00 02384672 2 0 -discreetly%4:02:00:: 00372660 1 1 -discreetness%1:07:00:: 04842029 2 0 -discreetness%1:09:00:: 05615500 1 0 -discrepancy%1:07:00:: 04749709 1 5 -discrepancy%1:11:00:: 07366627 2 3 -discrepant%5:00:00:discordant:00 00554098 3 0 -discrepant%5:00:00:incongruous:00 00562803 2 0 -discrepant%5:00:00:inconsistent:00 00578523 1 0 -discrete%5:00:00:separate:00 02110778 1 3 -discreteness%1:26:00:: 14414503 1 0 -discretion%1:07:01:: 04891010 5 0 -discretion%1:07:02:: 05198756 4 0 -discretion%1:09:00:: 05615500 2 2 -discretion%1:09:01:: 05751707 3 0 -discretion%1:26:00:: 13995824 1 5 -discretional%5:00:00:arbitrary:00 00719819 1 0 -discretionary%5:00:00:arbitrary:00 00719819 1 1 -discretionary%5:00:00:unrestricted:00 02003186 2 0 -discretionary_trust%1:21:00:: 13362540 1 0 -discriminable%5:00:00:distinguishable:00 00582762 1 0 -discriminate%2:31:00:: 00650016 1 2 -discriminate%2:39:00:: 02193765 3 0 -discriminate%2:41:12:: 02512305 2 1 -discriminate%3:00:00:: 00773579 1 0 -discriminating%3:00:00:: 00774323 1 1 -discriminating%5:00:00:perceptive:00 01744515 2 0 -discrimination%1:04:00:: 01153548 1 6 -discrimination%1:09:00:: 05748054 2 5 -discriminative%5:00:00:critical:02 00650135 2 0 -discriminative%5:00:00:discriminating:00 00775301 1 0 -discriminative_stimulus%1:09:00:: 05829213 1 0 -discriminator%1:18:00:: 10012815 1 0 -discriminatory%3:00:04:: 00285148 1 0 -discriminatory%5:00:00:advantageous:00 00065184 4 0 -discriminatory%5:00:00:discriminating:00 00775301 3 0 -discriminatory%5:00:00:unfavorable:02 00997394 2 0 -discursive%5:00:00:indirect:02 00768397 2 0 -discursive%5:00:00:logical:00 01430452 1 0 -discursively%4:02:00:: 00500355 1 0 -discursiveness%1:07:00:: 04919872 1 0 -discus%1:06:00:: 03206602 2 0 -discus%1:11:00:: 07470285 1 0 -discuss%2:32:00:: 00813978 2 30 -discuss%2:32:01:: 01034312 1 54 -discussant%1:18:00:: 09615336 1 0 -discussion%1:10:00:: 07140659 2 25 -discussion%1:10:02:: 07138085 1 27 -discussion_section%1:14:00:: 08239152 1 0 -disdain%1:10:00:: 06719404 2 0 -disdain%1:12:00:: 07502980 1 2 -disdain%2:32:00:: 00796976 2 1 -disdain%2:37:00:: 01774799 1 2 -disdainful%5:00:00:disrespectful:00 01995288 1 1 -disdainful%5:00:00:proud:00 01891109 2 0 -disdainfully%4:02:00:: 00080534 2 0 -disdainfully%4:02:02:: 00282700 1 0 -disdainfulness%1:07:00:: 04888268 1 0 -disease%1:26:00:: 14070360 1 26 -disease_of_the_neuromuscular_junction%1:26:00:: 14071235 1 0 -disease_of_the_skin%1:26:00:: 14219661 1 0 -diseased%5:00:00:unhealthy:00 01176246 1 1 -diseased_person%1:18:00:: 10595647 1 0 -disembark%2:38:00:: 01979241 1 0 -disembarkation%1:04:00:: 00058002 1 0 -disembarkment%1:04:00:: 00058002 1 0 -disembarrass%2:40:00:: 02350175 1 0 -disembarrassment%1:11:00:: 07305760 1 0 -disembodied%5:00:00:incorporeal:00 00631040 1 1 -disembodied_spirit%1:18:00:: 09545324 1 0 -disembody%2:40:00:: 02350767 1 0 -disembowel%2:30:00:: 00197590 1 0 -disembowelment%1:04:00:: 00670703 1 0 -disembroil%2:42:00:: 02678070 1 0 -disenable%2:30:00:: 00512186 1 0 -disenchant%2:37:00:: 01817755 1 0 -disenchanted%3:00:00:: 00866047 1 0 -disenchanting%5:00:00:convincing:00 00615343 1 0 -disenchantment%1:09:00:: 05988097 1 0 -disencumber%2:35:00:: 01585759 1 0 -disenfranchise%2:41:00:: 02476846 1 1 -disenfranchised%3:00:00:: 00876735 1 0 -disenfranchisement%1:04:00:: 01140029 1 2 -disengage%2:30:00:: 00220276 3 0 -disengage%2:35:00:: 01511380 1 1 -disengage%2:35:01:: 01475953 2 0 -disengagement%1:04:00:: 00057306 2 0 -disengagement%1:04:02:: 00390906 1 1 -disentangle%2:29:00:: 00038365 5 0 -disentangle%2:35:00:: 01463520 2 1 -disentangle%2:35:01:: 01523823 4 0 -disentangle%2:35:02:: 01585759 1 1 -disentangle%2:42:00:: 02678070 3 0 -disentangled%5:00:00:untangled:00 00256538 1 0 -disentanglement%1:04:01:: 01244593 1 0 -disentangler%1:18:00:: 10016954 1 0 -disequilibrium%1:26:00:: 13934274 1 0 -disestablish%2:30:00:: 00173007 1 0 -disestablishment%1:04:00:: 01082886 1 0 -disesteem%1:26:00:: 14437845 1 0 -disesteem%2:31:00:: 00694641 1 0 -disfavor%1:09:00:: 06200741 2 0 -disfavor%1:26:00:: 14413644 1 0 -disfavor%2:41:00:: 02513460 1 0 -disfavour%1:09:00:: 06200741 2 0 -disfavour%1:26:00:: 14413644 1 0 -disfavour%2:41:00:: 02513460 1 0 -disfiguration%1:04:00:: 00403466 2 0 -disfiguration%1:07:00:: 04691178 1 0 -disfigure%2:35:00:: 01549905 1 0 -disfigured%5:00:00:ugly:00 00221318 1 1 -disfigurement%1:04:00:: 00403466 2 0 -disfigurement%1:07:00:: 04691178 1 0 -disfluency%1:09:00:: 05643072 1 0 -disforest%2:30:00:: 00196024 1 0 -disforestation%1:04:00:: 01262441 1 0 -disfranchise%2:41:00:: 02476846 1 0 -disfranchised%3:00:00:: 00876735 1 0 -disfranchisement%1:04:00:: 01022824 1 0 -disfunction%1:26:00:: 14557898 1 0 -disgorge%2:29:00:: 00076400 2 0 -disgorge%2:35:00:: 01541579 1 0 -disgorgement%1:04:00:: 00118733 1 0 -disgrace%1:26:00:: 14440137 1 2 -disgrace%2:32:00:: 00847478 3 0 -disgrace%2:37:00:: 01800422 2 0 -disgrace%2:41:00:: 02547225 1 2 -disgraced%5:00:00:ashamed:00 00154163 1 0 -disgraceful%5:00:00:dishonorable:00 01227546 2 0 -disgraceful%5:00:00:immoral:00 01549964 1 0 -disgracefully%4:02:00:: 00313633 1 0 -disgracefulness%1:07:00:: 04808281 1 0 -disgruntle%2:37:00:: 01830600 1 0 -disgruntled%5:00:00:discontented:00 00590163 1 0 -disgruntlement%1:12:00:: 07539259 1 0 -disguise%1:04:00:: 01049266 3 0 -disguise%1:06:00:: 03206718 2 0 -disguise%1:07:00:: 04679074 1 2 -disguise%2:39:00:: 02158587 1 1 -disguised%5:00:00:covert:00 01707230 1 2 -disgust%1:12:00:: 07503260 1 1 -disgust%2:37:00:: 01808374 2 0 -disgust%2:39:00:: 02194913 1 1 -disgusted%5:00:00:displeased:00 01806677 1 2 -disgustedly%4:02:00:: 00313981 1 0 -disgustful%5:00:00:offensive:01 01625893 1 0 -disgusting%5:00:00:offensive:01 01625893 1 1 -disgustingly%4:02:00:: 00314141 1 0 -disgustingness%1:07:00:: 04996571 1 0 -disgustingness%1:07:01:: 04780605 2 0 -dish%1:04:00:: 00432881 6 0 -dish%1:06:00:: 03206908 1 9 -dish%1:06:01:: 03207305 5 0 -dish%1:13:00:: 07557434 2 3 -dish%1:18:00:: 10613996 4 0 -dish%1:23:00:: 13766896 3 0 -dish%2:30:00:: 00263471 2 0 -dish%2:34:00:: 01180351 1 0 -dish-shaped%5:00:00:concave:00 00536792 1 0 -dish_aerial%1:06:00:: 03207305 1 0 -dish_antenna%1:06:00:: 03207305 1 0 -dish_out%2:34:00:: 01180351 2 0 -dish_out%2:40:00:: 02294436 1 0 -dish_rack%1:06:00:: 03207630 1 0 -dish_the_dirt%2:32:00:: 01041954 1 0 -dish_towel%1:06:00:: 03207835 1 0 -dish_up%2:34:00:: 01180351 1 1 -dish_washer%1:06:00:: 03207941 1 0 -dishabille%1:26:00:: 14457838 1 0 -disharmonious%5:00:00:inharmonious:00 01164250 1 0 -disharmonize%2:30:00:: 00567604 1 0 -disharmony%1:07:00:: 04984809 1 0 -dishcloth%1:06:00:: 03207743 1 0 -dishcloth_gourd%1:20:00:: 12166424 1 0 -dishearten%2:37:00:: 01819387 1 2 -disheartened%5:00:00:pessimistic:00 01664880 1 1 -disheartening%5:00:00:discouraging:00 00867615 1 1 -disheartenment%1:10:00:: 07253814 2 0 -disheartenment%1:12:00:: 07542675 1 0 -dished%5:00:00:concave:00 00536792 1 0 -dishevel%2:35:00:: 01474034 1 0 -disheveled%5:00:00:untidy:00 02425220 1 1 -dishevelled%5:00:00:untidy:00 02425220 1 0 -dishful%1:23:00:: 13766896 1 0 -dishonest%3:00:00:: 01222884 1 1 -dishonest%5:00:00:corrupt:00 00621207 2 0 -dishonestly%4:02:00:: 00314597 1 0 -dishonesty%1:04:00:: 00749574 2 0 -dishonesty%1:07:00:: 04874672 1 0 -dishonor%1:07:00:: 04873939 2 0 -dishonor%1:26:00:: 14439447 1 1 -dishonor%2:40:00:: 02237943 3 0 -dishonor%2:41:00:: 02547225 1 2 -dishonor%2:41:02:: 02567519 2 0 -dishonorable%3:00:00:: 01227137 1 0 -dishonorable%3:00:04:: 01222884 2 0 -dishonorable_discharge%1:04:00:: 00234105 1 0 -dishonorableness%1:07:00:: 04873550 1 0 -dishonorably%4:02:00:: 00313633 3 0 -dishonorably%4:02:01:: 00315333 2 0 -dishonorably%4:02:02:: 00491024 1 0 -dishonored%5:00:00:ashamed:00 00154163 1 0 -dishonour%1:07:00:: 04873939 2 0 -dishonour%1:26:00:: 14439447 1 0 -dishonour%2:40:00:: 02237943 3 0 -dishonour%2:41:00:: 02547225 1 1 -dishonour%2:41:02:: 02567519 2 0 -dishonourable%3:00:00:: 01227137 1 0 -dishonourableness%1:07:00:: 04873550 1 0 -dishonourably%4:02:00:: 00313633 1 0 -dishpan%1:06:00:: 03207548 1 0 -dishrag%1:06:00:: 03207743 1 0 -dishtowel%1:06:00:: 03207835 1 0 -dishware%1:06:00:: 03133538 1 0 -dishwasher%1:06:00:: 03207941 1 1 -dishwasher%1:18:00:: 10017190 2 0 -dishwasher_detergent%1:06:00:: 03208062 1 0 -dishwashing%1:04:00:: 00255600 1 0 -dishwashing_detergent%1:06:00:: 03208062 1 0 -dishwashing_liquid%1:06:00:: 03208062 1 0 -dishwashing_machine%1:06:00:: 03207941 1 0 -dishwater%1:27:00:: 14836851 1 1 -dishy%5:00:00:beautiful:00 00218673 1 0 -disillusion%1:09:00:: 05988097 1 0 -disillusion%2:37:00:: 01817755 1 0 -disillusioned%5:00:00:disenchanted:00 00866392 1 0 -disillusioning%5:00:00:convincing:00 00615343 1 1 -disillusionment%1:09:00:: 05988097 1 1 -disincarnate%2:36:00:: 01645290 1 0 -disincentive%1:16:00:: 09180118 1 0 -disinclination%1:07:00:: 04645943 2 0 -disinclination%1:12:00:: 07501922 1 0 -disincline%2:31:00:: 00681125 1 0 -disinclined%3:00:00:: 01293158 1 0 -disinfect%2:29:00:: 00089324 1 0 -disinfectant%1:06:00:: 03208229 1 0 -disinfectant%5:00:00:antiseptic:00 02116054 1 0 -disinfection%1:04:00:: 00709521 1 0 -disinfest%2:40:00:: 02350620 1 0 -disinfestation%1:04:00:: 00251520 1 0 -disinfestation_officer%1:18:00:: 10508008 1 0 -disinflation%1:22:00:: 13466849 1 0 -disinformation%1:10:00:: 06635313 1 0 -disingenuous%3:00:00:: 01310685 1 0 -disingenuously%4:02:00:: 00315595 1 0 -disingenuousness%1:07:00:: 04876374 1 0 -disinherit%2:40:00:: 02316097 1 0 -disinheritance%1:04:00:: 01022992 1 0 -disinherited%5:00:00:unloved:00 01463642 1 0 -disintegrable%5:00:00:soluble:01 02265594 1 0 -disintegrate%2:30:00:: 00397576 1 2 -disintegrate%2:30:01:: 00399074 3 0 -disintegrate%2:30:03:: 00399368 2 0 -disintegration%1:11:01:: 07330828 5 0 -disintegration%1:22:01:: 13467916 3 0 -disintegration%1:22:02:: 13456899 4 0 -disintegration%1:26:00:: 14561327 1 2 -disintegration%1:26:01:: 14561461 2 0 -disintegrative%3:00:00:: 01331878 1 1 -disinter%2:41:00:: 02457058 1 1 -disinterest%1:09:01:: 06205018 1 1 -disinterested%5:00:00:impartial:00 01723543 1 1 -disinterestedly%4:02:00:: 00315780 1 0 -disinterestedness%1:09:00:: 06202907 1 0 -disinterment%1:04:00:: 00044900 1 0 -disinvest%2:30:00:: 00177243 3 0 -disinvest%2:40:00:: 02313906 2 0 -disinvest%2:41:01:: 02385372 1 0 -disinvestment%1:04:00:: 00396509 1 0 -disinvolve%2:42:00:: 02678070 1 0 -disjoin%2:35:00:: 01294182 2 0 -disjoin%2:35:01:: 01294396 1 0 -disjoined%5:00:00:unconnected:00 00568541 1 0 -disjoint%2:35:00:: 01294182 4 0 -disjoint%2:35:01:: 01294396 3 0 -disjoint%2:35:02:: 01294632 2 0 -disjoint%2:41:00:: 02430580 1 0 -disjoint%5:00:00:separate:00 02110993 1 0 -disjointed%5:00:00:divided:00 02481354 2 0 -disjointed%5:00:00:incoherent:00 00465221 1 1 -disjointed%5:00:00:injured:00 01318510 3 0 -disjointedly%4:02:00:: 00315918 1 0 -disjointedness%1:26:00:: 14418290 1 0 -disjunct%3:00:00:: 00565962 1 0 -disjunct%5:00:00:discontinuous:01 00597267 4 0 -disjunct%5:00:00:divided:00 02481457 2 0 -disjunct%5:00:00:separate:00 02111095 3 0 -disjunction%1:04:00:: 00385649 2 0 -disjunction%1:26:00:: 14417697 1 0 -disjunctive%3:00:00:: 00564262 1 0 -disjunctive_conjunction%1:24:00:: 13800115 1 0 -disjuncture%1:26:00:: 14417697 1 0 -disk%1:06:00:: 03208556 2 4 -disk%1:06:02:: 03924069 3 0 -disk%1:06:03:: 03706653 4 0 -disk%1:25:00:: 13875185 1 12 -disk%2:36:00:: 01742415 1 1 -disk-jockey%2:32:00:: 01033346 1 0 -disk-shaped%5:00:00:round:00 02042267 1 0 -disk_access%1:06:00:: 03208815 1 0 -disk_brake%1:06:00:: 03208938 1 0 -disk_cache%1:06:00:: 03209141 1 0 -disk_clutch%1:06:00:: 03209359 1 0 -disk_controller%1:06:00:: 03209477 1 0 -disk_drive%1:06:00:: 03209666 1 0 -disk_error%1:11:00:: 07299965 1 0 -disk_file%1:10:00:: 06510103 1 0 -disk_harrow%1:06:00:: 03210245 1 0 -disk_jockey%1:18:00:: 10017272 1 0 -disk_operating_system%1:10:00:: 06568422 1 0 -disk_overhead%1:15:00:: 08556065 1 0 -disk_pack%1:14:00:: 07956552 1 0 -disk_shape%1:07:00:: 05073559 1 0 -disk_space%1:15:00:: 08555883 1 0 -diskette%1:06:00:: 03209910 1 0 -disklike%5:00:00:round:00 02042267 1 0 -dislikable%5:00:00:disliked:00 01461597 1 0 -dislike%1:09:00:: 06200741 1 4 -dislike%1:12:00:: 07501545 2 2 -dislike%2:37:00:: 01776727 1 13 -disliked%3:00:00:: 01461455 1 0 -dislocate%2:30:00:: 00465762 1 0 -dislocate%2:30:01:: 00414823 2 0 -dislocated%5:00:00:injured:00 01318510 1 0 -dislocation%1:04:00:: 00553362 2 1 -dislocation%1:11:00:: 07367385 1 1 -dislocation%1:26:00:: 14291561 3 0 -dislodge%2:35:00:: 01528522 1 2 -dislodge%2:35:01:: 01527508 3 0 -dislodge%2:38:00:: 01883344 2 0 -dislodgement%1:04:00:: 00395199 1 0 -dislodgment%1:04:00:: 00395199 1 0 -dislogistic%5:00:00:uncomplimentary:00 00907243 1 0 -disloyal%3:00:00:: 00962634 2 0 -disloyal%3:00:06:: 01740630 1 0 -disloyally%4:02:00:: 00316318 1 0 -disloyalty%1:07:00:: 04879340 1 2 -dismal%5:00:00:depressing:00 00364881 1 0 -dismally%4:02:00:: 00316486 2 0 -dismally%4:02:01:: 00316734 1 2 -dismantle%2:30:00:: 00194534 3 0 -dismantle%2:36:00:: 01657977 2 0 -dismantle%2:36:02:: 01661804 1 0 -dismantled%5:00:00:destroyed:00 00735608 1 0 -dismantlement%1:04:00:: 00912274 1 0 -dismantling%1:04:00:: 00912274 1 0 -dismay%1:12:00:: 07519773 2 2 -dismay%1:12:02:: 07542675 1 4 -dismay%2:37:00:: 01782650 2 0 -dismay%2:37:01:: 01814396 1 0 -dismayed%5:00:00:afraid:00 00078576 1 2 -dismaying%5:00:00:alarming:00 00193367 1 1 -dismember%2:35:00:: 01572224 1 1 -dismember%2:35:01:: 01572510 2 0 -dismemberment%1:11:00:: 07433510 1 0 -dismiss%2:30:09:: 00338559 6 0 -dismiss%2:32:00:: 00800930 1 14 -dismiss%2:32:01:: 00900728 5 0 -dismiss%2:32:02:: 00801626 2 4 -dismiss%2:41:00:: 02402825 4 0 -dismiss%2:41:01:: 02465939 3 1 -dismissal%1:04:00:: 00216174 4 0 -dismissal%1:04:01:: 01190172 1 1 -dismissal%1:10:00:: 07213079 2 0 -dismissal%1:10:01:: 06689829 3 0 -dismissed%5:00:00:unemployed:00 00864884 1 0 -dismissible%5:00:00:removable:00 01526769 1 0 -dismission%1:04:00:: 00216174 2 0 -dismission%1:10:00:: 07213079 1 0 -dismissive%5:00:00:rejective:00 00076580 2 0 -dismissive%5:00:00:uninterested:00 01343411 1 0 -dismount%1:04:00:: 01252800 1 0 -dismount%2:38:00:: 01958452 1 6 -disney%1:18:00:: 10937126 1 0 -disneyland%1:15:00:: 09062184 1 0 -disobedience%1:04:00:: 01179707 1 7 -disobedience%1:07:00:: 04909414 2 0 -disobedient%3:00:00:: 01613463 1 2 -disobedient%5:00:00:insubordinate:00 02330762 2 0 -disobediently%4:02:00:: 00317205 1 0 -disobey%2:41:00:: 02543181 1 4 -disoblige%2:32:00:: 00886173 2 0 -disoblige%2:41:00:: 02507736 1 0 -disobliging%5:00:00:unaccommodating:00 00021592 1 0 -disorder%1:26:00:: 13972797 3 0 -disorder%1:26:02:: 14499262 2 0 -disorder%1:26:03:: 14052403 1 5 -disorder%2:30:00:: 00276373 2 0 -disorder%2:37:00:: 01764171 1 0 -disordered%3:00:00:: 01668250 3 0 -disordered%5:00:00:disorganized:00 01669246 1 3 -disordered%5:00:00:incoherent:00 00465221 2 1 -disorderliness%1:07:00:: 04897604 3 0 -disorderliness%1:26:00:: 14499262 1 0 -disorderliness%1:26:02:: 13977184 2 0 -disorderly%3:00:00:: 01666275 1 1 -disorderly%5:00:00:untidy:00 02425529 2 1 -disorderly%5:00:00:wild:02 02390569 3 0 -disorderly_behavior%1:04:00:: 00771713 1 0 -disorderly_conduct%1:04:00:: 00771713 1 0 -disorganisation%1:04:00:: 00552922 2 0 -disorganisation%1:26:00:: 14500341 1 0 -disorganise%2:41:00:: 02436140 1 0 -disorganised%3:00:00:: 01668858 1 0 -disorganization%1:04:00:: 00552922 2 0 -disorganization%1:26:00:: 14500341 1 0 -disorganize%2:41:00:: 02436140 1 0 -disorganized%3:00:00:: 01668858 1 2 -disorganized_schizophrenia%1:26:00:: 14399438 1 0 -disorganized_type_schizophrenia%1:26:00:: 14399438 1 0 -disorient%2:39:00:: 02159741 1 0 -disorientate%2:39:00:: 02159741 1 0 -disorientation%1:09:00:: 05898430 1 0 -disorientation%1:09:01:: 05684003 2 0 -disoriented%5:00:00:unoriented:00 01684133 1 0 -disoriented%5:00:02:unoriented:00 01683908 2 0 -disorienting%3:00:00:: 01685377 1 0 -disown%2:32:00:: 00757544 2 0 -disown%2:40:00:: 02316097 1 1 -disowning%1:10:00:: 07207860 1 0 -disownment%1:10:00:: 07207860 1 0 -disparage%2:32:00:: 00845909 1 0 -disparagement%1:04:00:: 01219893 2 0 -disparagement%1:10:00:: 06717170 1 1 -disparager%1:18:00:: 10009671 1 0 -disparaging%5:00:00:uncomplimentary:00 00907032 1 0 -disparagingly%4:02:00:: 00317562 1 0 -disparate%5:00:00:different:00 02066836 1 2 -disparate%5:00:00:heterogeneous:00 01199476 2 0 -disparateness%1:07:00:: 04750414 1 0 -disparity%1:07:00:: 04752530 1 0 -dispassion%1:07:00:: 04630137 1 0 -dispassionate%5:00:00:impartial:00 01723648 1 1 -dispassionately%4:02:00:: 00317390 1 2 -dispassionateness%1:07:00:: 04630137 1 0 -dispatch%1:04:00:: 00061290 2 1 -dispatch%1:04:01:: 00222248 4 0 -dispatch%1:07:00:: 05059830 3 0 -dispatch%1:10:00:: 06682794 1 3 -dispatch%2:35:00:: 01325128 5 0 -dispatch%2:38:00:: 01955127 1 5 -dispatch%2:41:00:: 02563724 2 1 -dispatch%2:41:01:: 02482425 3 0 -dispatch%2:41:03:: 02369633 4 0 -dispatch_box%1:06:00:: 03210372 1 0 -dispatch_case%1:06:00:: 03210372 1 0 -dispatch_rider%1:18:00:: 10017664 1 0 -dispatcher%1:18:00:: 10649308 1 0 -dispatcher%1:18:01:: 10017422 2 0 -dispel%2:38:00:: 02002720 1 10 -dispel%2:38:01:: 02030424 2 0 -dispensability%1:07:00:: 05172953 1 0 -dispensable%3:00:00:: 00903449 1 0 -dispensableness%1:07:00:: 05172953 1 0 -dispensary%1:06:00:: 03210552 1 1 -dispensation%1:04:00:: 01083504 3 0 -dispensation%1:04:01:: 01142014 1 1 -dispensation%1:21:00:: 13285714 2 0 -dispense%2:29:00:: 00081072 3 0 -dispense%2:40:00:: 02294436 1 3 -dispense%2:41:00:: 02534307 2 0 -dispense_with%2:40:00:: 02303235 3 0 -dispense_with%2:40:01:: 02345647 1 1 -dispense_with%2:41:00:: 02534062 2 0 -dispensed%5:00:00:distributed:00 00540826 1 0 -dispenser%1:06:00:: 03210683 1 1 -dispenser%1:18:00:: 10017794 2 0 -dispersal%1:04:00:: 00368592 1 1 -disperse%2:30:00:: 00330565 3 1 -disperse%2:32:00:: 00968211 6 0 -disperse%2:35:00:: 01376245 1 2 -disperse%2:35:05:: 01616608 5 0 -disperse%2:38:00:: 02028994 4 0 -disperse%2:38:01:: 02030424 2 1 -dispersed%5:00:00:distributed:00 00540977 1 3 -dispersed_particles%1:27:00:: 14588646 1 0 -dispersed_phase%1:27:00:: 14588646 1 0 -dispersing_medium%1:27:00:: 14588797 1 0 -dispersing_phase%1:27:00:: 14588797 1 0 -dispersion%1:04:00:: 00368592 3 0 -dispersion%1:07:00:: 05087297 2 0 -dispersion%1:11:00:: 07331759 1 1 -dispersion_medium%1:27:00:: 14588797 1 0 -dispersive%5:00:00:distributive:00 00468362 1 0 -dispirit%2:37:00:: 01814396 1 0 -dispirited%5:00:00:dejected:00 00703615 2 0 -dispirited%5:00:00:spiritless:00 02281938 1 0 -dispiritedly%4:02:00:: 00317766 1 0 -dispiritedness%1:12:00:: 07537668 1 0 -dispiriting%5:00:00:discouraging:00 00867615 1 0 -displace%2:38:00:: 02013571 1 1 -displace%2:38:02:: 01850315 4 0 -displace%2:41:02:: 02406011 2 0 -displace%2:41:04:: 02402825 3 0 -displaced_fracture%1:26:00:: 14293207 1 0 -displaced_person%1:18:00:: 10017890 1 0 -displacement%1:04:00:: 00197610 1 2 -displacement%1:04:01:: 00209446 7 0 -displacement%1:04:02:: 00330984 3 1 -displacement%1:04:03:: 00315830 6 0 -displacement%1:11:00:: 07444668 2 1 -displacement%1:22:00:: 13467009 5 0 -displacement%1:22:01:: 13467224 4 0 -displacement_reaction%1:22:00:: 13467224 1 0 -displacement_unit%1:23:00:: 13600822 1 0 -display%1:04:00:: 00521209 2 3 -display%1:06:00:: 03210940 3 1 -display%1:06:01:: 03211117 6 0 -display%1:10:00:: 06887726 5 0 -display%1:10:01:: 06879521 1 4 -display%1:10:02:: 07213717 4 0 -display%2:39:00:: 02140033 1 35 -display%2:41:00:: 02535227 2 0 -display_adapter%1:06:00:: 03211413 1 0 -display_adaptor%1:06:00:: 03211413 1 0 -display_board%1:06:00:: 03211616 1 0 -display_case%1:06:00:: 02975212 1 0 -display_panel%1:06:00:: 03211616 1 0 -display_window%1:06:00:: 03211789 1 1 -displaying_incompetence%4:02:00:: 00185400 1 0 -displease%2:37:00:: 01817130 1 0 -displeased%3:00:00:: 01805889 1 1 -displeasing%3:00:00:: 01808822 1 0 -displeasingly%4:02:00:: 00318001 1 0 -displeasure%1:12:00:: 07540424 1 3 -displume%2:35:00:: 01384275 2 0 -displume%2:40:00:: 02315048 1 0 -disport%2:38:00:: 01883716 2 0 -disport%2:41:00:: 02492362 1 0 -disposable%1:06:00:: 03212003 1 0 -disposable%3:00:01:: 00776570 2 0 -disposable%3:00:02:: 00777418 1 0 -disposable_income%1:21:00:: 13255562 1 0 -disposal%1:04:00:: 00043609 3 1 -disposal%1:04:02:: 01135952 2 1 -disposal%1:06:00:: 03212114 4 0 -disposal%1:07:00:: 05198622 1 4 -disposal_plant%1:06:00:: 04178668 1 2 -dispose%2:30:00:: 00300761 5 0 -dispose%2:31:00:: 00680841 3 2 -dispose%2:35:00:: 01496497 4 0 -dispose%2:40:00:: 02222318 2 3 -dispose%2:40:11:: 02354922 1 3 -dispose_of%2:41:00:: 02437340 1 2 -disposed%5:00:00:inclined:02 01292411 2 0 -disposed%5:00:00:willing:00 02565425 1 0 -disposition%1:04:00:: 00043609 2 1 -disposition%1:07:00:: 04623612 1 2 -disposition%1:07:02:: 04942869 4 0 -disposition%1:09:01:: 06196584 3 0 -dispossess%2:40:00:: 02314658 1 0 -dispossessed%5:00:00:unfortunate:00 01050603 1 1 -dispossession%1:04:00:: 01194331 1 1 -dispossession%1:09:00:: 05978472 2 0 -dispraise%1:04:00:: 01219893 1 0 -dispread%2:38:00:: 02077430 1 0 -disproof%1:04:00:: 00155298 2 0 -disproof%1:09:00:: 05826469 1 0 -disproportion%1:25:00:: 13898509 1 0 -disproportional%3:00:00:: 00483048 1 0 -disproportionate%3:00:00:: 00483048 1 1 -disproportionate%5:00:00:incommensurate:00 00482059 2 1 -disproportionately%4:02:00:: 00318143 2 0 -disproportionately%4:02:01:: 00318501 1 0 -disprove%2:31:00:: 00667424 1 1 -disprover%1:18:00:: 10510546 1 0 -disputable%5:00:00:contestable:00 00590669 1 1 -disputable%5:00:00:controversial:00 00602117 2 0 -disputant%1:18:00:: 09615465 1 0 -disputation%1:10:00:: 07242104 1 0 -disputation%1:10:01:: 07183151 2 0 -disputatious%5:00:00:argumentative:00 00603804 1 0 -disputatiously%4:02:00:: 00318830 1 0 -disputative%5:00:00:argumentative:00 00603804 1 0 -dispute%1:04:00:: 01170813 2 0 -dispute%1:10:00:: 07181935 1 4 -dispute%2:32:00:: 00869126 1 4 -dispute%2:32:01:: 00775156 2 2 -disputed%5:00:00:controversial:00 00602474 1 0 -disqualification%1:04:00:: 01078086 2 0 -disqualification%1:07:00:: 04722574 1 0 -disqualified%5:00:01:ineligible:00 00853225 1 1 -disqualified%5:00:02:ineligible:00 00853324 2 0 -disqualify%2:30:00:: 00301338 1 1 -disqualify%2:32:00:: 00972608 2 0 -disqualifying%3:00:00:: 01195341 1 0 -disquiet%1:07:00:: 04904851 2 0 -disquiet%1:12:00:: 07524760 1 0 -disquiet%2:37:00:: 01764171 1 0 -disquieted%5:00:00:troubled:00 02457167 1 0 -disquieting%5:00:00:uncomfortable:01 00480753 1 0 -disquietingly%4:02:00:: 00318951 1 0 -disquietude%1:12:00:: 07525057 1 0 -disquisition%1:10:00:: 06410070 1 0 -disraeli%1:18:00:: 10937364 1 0 -disregard%1:04:01:: 00418615 2 1 -disregard%1:09:00:: 05706629 1 1 -disregard%2:31:00:: 00616857 3 0 -disregard%2:32:00:: 00800930 2 2 -disregard%2:32:02:: 01059564 1 3 -disregarded%5:00:00:unnoticed:00 01608465 1 0 -disregarding%4:02:00:: 00118531 1 0 -disregardless%4:02:00:: 00118531 1 1 -disrepair%1:26:00:: 14560538 1 2 -disreputability%1:07:00:: 04874409 1 0 -disreputable%3:00:00:: 01983797 1 0 -disreputable_person%1:18:00:: 10530288 1 0 -disreputableness%1:07:00:: 04874409 1 0 -disreputably%4:02:00:: 00319079 1 0 -disrepute%1:26:00:: 14439745 1 1 -disrespect%1:07:00:: 04915687 3 0 -disrespect%1:09:00:: 06207437 2 0 -disrespect%1:10:00:: 06714976 1 0 -disrespect%2:31:00:: 00694641 2 0 -disrespect%2:41:00:: 02457825 1 0 -disrespectful%3:00:00:: 01994602 1 0 -disrespectful%5:00:00:irreverent:00 02013083 2 0 -disrespectfully%4:02:00:: 00319482 1 0 -disrobe%2:29:01:: 00049900 1 1 -disrupt%2:30:00:: 00520357 3 0 -disrupt%2:30:01:: 00554298 2 2 -disrupt%2:32:00:: 00778275 1 5 -disrupted%5:00:00:discontinuous:01 00597148 1 0 -disrupting_explosive%1:06:00:: 03212247 1 0 -disruption%1:04:00:: 00553173 4 0 -disruption%1:04:02:: 00383952 1 1 -disruption%1:11:00:: 07367385 3 0 -disruption%1:26:00:: 13977366 2 0 -disruptive%5:00:00:unquiet:00 01923720 1 2 -disruptively%4:02:00:: 00082842 1 0 -diss%2:32:00:: 00848420 1 0 -dissatisfaction%1:12:00:: 07539511 1 2 -dissatisfactory%5:00:00:unsatisfactory:00 02082611 1 0 -dissatisfied%5:00:00:discontented:00 00590163 1 2 -dissatisfy%2:37:00:: 01816645 1 0 -dissect%2:31:00:: 00643473 2 0 -dissect%2:35:00:: 01550220 1 1 -dissected%5:00:00:compound:00 02172255 1 0 -dissection%1:04:01:: 00387214 1 2 -dissection%1:04:02:: 00648931 3 0 -dissection%1:09:00:: 05782140 2 1 -dissemble%2:32:00:: 00838043 1 1 -dissemble%2:36:00:: 01721556 3 0 -dissemble%2:39:00:: 02147603 2 0 -dissembler%1:18:00:: 10195593 1 0 -dissembling%1:04:00:: 00752431 2 0 -dissembling%1:10:00:: 06759349 1 0 -disseminate%2:32:00:: 00968211 1 6 -disseminated_lupus_erythematosus%1:26:00:: 14221311 1 0 -disseminated_multiple_sclerosis%1:26:00:: 14094068 1 0 -disseminated_sclerosis%1:26:00:: 14094068 1 0 -dissemination%1:04:00:: 00368592 3 0 -dissemination%1:07:00:: 05088056 2 0 -dissemination%1:10:00:: 06253140 1 1 -disseminative%5:00:00:distributive:00 00468362 1 0 -disseminator%1:18:00:: 10483138 1 0 -dissension%1:10:00:: 07181546 1 1 -dissension%1:26:00:: 13982357 2 0 -dissent%1:04:01:: 01177033 3 0 -dissent%1:10:02:: 07209305 1 1 -dissent%1:10:03:: 07181358 2 1 -dissent%2:32:00:: 00804653 1 1 -dissent%2:32:01:: 00804802 3 0 -dissent%2:41:00:: 02521410 2 0 -dissenter%1:18:00:: 10018021 1 1 -dissentient%5:00:00:negative:01 00075737 2 0 -dissentient%5:00:00:unorthodox:00 01691302 1 0 -dissenting%5:00:00:negative:01 00075737 1 0 -dissenting_opinion%1:10:00:: 06552320 1 0 -dissentious%5:00:00:discordant:00 00554302 1 0 -dissertate%2:32:00:: 00814621 1 0 -dissertation%1:10:00:: 06409085 1 0 -disservice%1:04:00:: 01209791 1 1 -dissever%2:41:00:: 02467662 1 0 -dissidence%1:10:00:: 07181208 1 0 -dissident%1:18:00:: 10018021 1 0 -dissident%5:00:00:negative:01 00075737 2 0 -dissident%5:00:00:unorthodox:00 01691474 1 0 -dissident_irish_republican_army%1:14:00:: 08040762 1 0 -dissilience%1:11:00:: 07434782 1 0 -dissilient%5:00:00:nascent:00 00003700 1 0 -dissimilar%3:00:00:: 02073113 1 1 -dissimilar%3:00:02:: 01410363 3 0 -dissimilar%3:00:04:: 01410905 2 0 -dissimilarity%1:07:00:: 04750164 1 0 -dissimilate%2:30:00:: 00160653 3 0 -dissimilate%2:30:01:: 00160880 2 0 -dissimilate%2:30:02:: 00161012 1 0 -dissimilation%1:22:00:: 13443787 2 0 -dissimilation%1:22:01:: 13467443 1 0 -dissimilitude%1:07:00:: 04750764 1 0 -dissimulate%2:39:00:: 02147824 1 0 -dissimulation%1:04:00:: 00752431 1 0 -dissimulative%5:00:00:insincere:00 02181926 1 0 -dissimulator%1:18:00:: 10195593 1 0 -dissipate%2:34:00:: 01195804 3 1 -dissipate%2:38:00:: 02028994 2 1 -dissipate%2:38:01:: 02030424 1 1 -dissipate%2:42:04:: 02614812 4 0 -dissipated%5:00:00:immoral:00 01549568 1 0 -dissipated%5:00:00:indulgent:00 01297946 2 0 -dissipation%1:04:01:: 00748307 2 0 -dissipation%1:04:02:: 00742645 3 0 -dissipation%1:11:00:: 07332148 1 0 -dissociable%5:00:00:divisible:00 00785002 1 0 -dissociate%2:30:10:: 00209598 3 0 -dissociate%2:31:00:: 00714273 2 0 -dissociate%2:41:00:: 02430580 1 0 -dissociation%1:04:00:: 00384802 1 3 -dissociation%1:22:00:: 13467700 3 0 -dissociation%1:26:00:: 14416845 2 0 -dissociation_constant%1:23:00:: 13589957 1 0 -dissociative%5:00:00:divisible:00 00785298 1 0 -dissociative_disorder%1:26:00:: 14417300 1 0 -dissolubility%1:07:00:: 05010314 1 0 -dissoluble%5:00:00:soluble:01 02265386 1 0 -dissolute%5:00:00:immoral:00 01549568 1 0 -dissolutely%4:02:00:: 00500447 1 0 -dissoluteness%1:07:00:: 04884817 1 0 -dissolution%1:04:00:: 00215314 5 0 -dissolution%1:04:01:: 00216038 4 0 -dissolution%1:04:03:: 00748307 3 0 -dissolution%1:22:00:: 13467916 1 1 -dissolution%1:22:01:: 13468094 2 0 -dissolution_of_marriage%1:04:00:: 01241216 1 0 -dissolvable%5:00:00:soluble:01 02265386 1 0 -dissolve%1:10:00:: 06618035 1 1 -dissolve%2:30:00:: 00446329 8 0 -dissolve%2:30:01:: 00447309 2 3 -dissolve%2:30:02:: 00355803 3 2 -dissolve%2:30:03:: 00447771 1 4 -dissolve%2:30:07:: 00376106 9 0 -dissolve%2:30:08:: 00355955 10 0 -dissolve%2:30:09:: 00338559 11 0 -dissolve%2:30:11:: 00447950 7 0 -dissolve%2:37:00:: 01784592 6 0 -dissolve%2:37:04:: 01784799 5 0 -dissolve%2:38:00:: 02029944 4 1 -dissolved%5:00:00:melted:00 01506258 1 5 -dissolvent%1:27:00:: 15047313 1 0 -dissolver%1:27:00:: 15047313 1 0 -dissolving%1:22:00:: 13468094 1 0 -dissolving_agent%1:27:00:: 15047313 1 1 -dissonance%1:07:00:: 04984514 3 0 -dissonance%1:09:00:: 05720248 2 0 -dissonance%1:26:00:: 13982357 1 0 -dissonant%5:00:00:discordant:00 00554098 3 0 -dissonant%5:00:01:inharmonious:00 01164250 2 0 -dissonant%5:00:02:inharmonious:00 01164561 1 0 -dissonate%2:30:00:: 00567604 2 0 -dissonate%2:39:00:: 02135328 1 0 -dissuade%2:32:00:: 00770141 1 3 -dissuasion%1:10:00:: 07245686 2 0 -dissuasion%1:10:01:: 07253948 1 0 -dissuasive%3:00:00:: 01770903 1 0 -dissyllable%1:10:00:: 06290539 1 0 -dissymmetry%1:07:00:: 05065717 1 0 -distaff%1:06:00:: 03212406 2 0 -distaff%1:26:00:: 14514392 1 0 -distaff%5:00:00:feminine:01 01484451 1 0 -distal%3:00:01:: 00778363 1 9 -distal%3:00:02:: 00778680 2 0 -distal_muscular_dystrophy%1:26:00:: 14161515 1 0 -distally%4:02:00:: 00176253 1 1 -distance%1:07:00:: 05084201 1 54 -distance%1:07:01:: 05129565 3 5 -distance%1:12:00:: 07505871 4 4 -distance%1:15:00:: 08556386 2 18 -distance%1:28:00:: 15172212 5 1 -distance%1:28:01:: 15172423 6 0 -distance%2:38:00:: 02081795 2 0 -distance%2:42:00:: 02683127 1 0 -distance_vision%1:09:00:: 05656418 1 0 -distant%3:00:01:: 00445548 1 33 -distant%3:00:02:: 00450606 2 2 -distant%5:00:00:reserved:01 01987646 3 0 -distant%5:00:01:far:00 00442917 5 0 -distant%5:00:02:far:00 00443075 4 0 -distantly%4:02:00:: 00319635 1 0 -distaste%1:12:00:: 07502669 1 3 -distasteful%5:00:00:offensive:01 01625893 2 0 -distasteful%5:00:00:unpalatable:00 01716971 1 0 -distastefully%4:02:00:: 00314141 2 0 -distastefully%4:02:02:: 00319765 1 1 -distastefulness%1:07:00:: 04780958 2 0 -distastefulness%1:07:01:: 04996571 1 0 -distemper%1:04:00:: 00936901 5 0 -distemper%1:06:00:: 03212535 4 0 -distemper%1:06:01:: 03212698 3 0 -distemper%1:12:00:: 07552087 2 0 -distemper%1:26:00:: 14264042 1 0 -distemper%2:36:00:: 01683422 1 0 -distend%2:30:00:: 00305537 1 0 -distend%2:30:01:: 00256862 3 0 -distend%2:30:03:: 00257087 2 0 -distensible%5:00:00:expansive:00 00946844 1 0 -distension%1:04:00:: 00366317 1 1 -distension%1:26:00:: 14063633 2 0 -distention%1:04:00:: 00366317 2 0 -distention%1:26:00:: 14063633 1 0 -distich%1:23:00:: 13743605 1 0 -distil%2:29:00:: 00068467 4 0 -distil%2:30:01:: 00229026 3 0 -distil%2:30:02:: 00229280 2 0 -distil%2:30:04:: 00364868 1 0 -distill%2:29:00:: 00068467 5 0 -distill%2:30:01:: 00229026 2 3 -distill%2:30:02:: 00229280 3 1 -distill%2:30:03:: 00475183 1 3 -distill%2:30:04:: 00364868 4 0 -distillate%1:27:00:: 14836960 1 0 -distillation%1:22:00:: 13468306 1 3 -distillation%1:27:00:: 14836960 2 0 -distilled_water%1:27:00:: 14837258 1 1 -distiller%1:18:00:: 10018653 1 0 -distillery%1:06:00:: 03212811 1 0 -distillment%1:22:00:: 13468306 1 0 -distinct%3:00:00:: 00779374 2 10 -distinct%5:00:00:clear:00 00429016 5 0 -distinct%5:00:00:definite:00 00701299 4 0 -distinct%5:00:00:different:00 02067063 1 14 -distinct%5:00:00:separate:00 02110778 3 1 -distinction%1:07:00:: 04749572 4 3 -distinction%1:07:01:: 04806655 3 4 -distinction%1:09:00:: 05748285 1 11 -distinction%1:26:00:: 14435445 2 5 -distinctive%5:00:00:characteristic:00 00357556 1 5 -distinctive%5:00:00:identifiable:00 01272718 2 3 -distinctive_feature%1:09:00:: 05852125 1 0 -distinctively%4:02:00:: 00501452 1 2 -distinctiveness%1:07:01:: 04750414 2 0 -distinctiveness%1:07:02:: 04763925 1 0 -distinctly%4:02:00:: 00181901 1 7 -distinctly%4:02:01:: 00307639 2 0 -distinctly%4:02:03:: 00307479 3 0 -distinctness%1:07:00:: 04702688 1 1 -distinctness%1:07:01:: 04742766 3 0 -distinctness%1:26:00:: 14414503 2 0 -distinguish%2:31:00:: 00650353 1 15 -distinguish%2:31:01:: 00652346 5 0 -distinguish%2:31:02:: 00651991 3 3 -distinguish%2:32:00:: 00922438 4 0 -distinguish%2:39:00:: 02193194 2 6 -distinguishable%3:00:00:: 00582314 1 4 -distinguishable%5:00:00:different:00 02067063 2 0 -distinguished%5:00:00:dignified:00 00752110 2 2 -distinguished%5:00:00:important:00 01278080 1 7 -distinguished_conduct_medal%1:10:00:: 06708970 1 0 -distinguished_flying_cross%1:10:00:: 06707846 1 0 -distinguished_service_cross%1:10:00:: 06707555 1 0 -distinguished_service_medal%1:10:00:: 06707382 1 1 -distinguished_service_order%1:10:00:: 06709112 1 0 -distinguishing_characteristic%1:09:00:: 05852125 1 0 -distomatosis%1:26:00:: 14265006 1 0 -distort%2:30:01:: 00476744 5 0 -distort%2:32:00:: 00835903 1 5 -distort%2:32:01:: 00836926 4 0 -distort%2:35:00:: 01350699 3 0 -distort%2:35:01:: 01223182 2 1 -distortable%5:00:00:changeable:00 00345005 1 1 -distorted%5:00:00:disingenuous:00 01311067 2 0 -distorted%5:00:00:unshapely:00 02141298 1 0 -distorted_shape%1:25:00:: 13867276 1 0 -distortion%1:04:00:: 00751529 5 0 -distortion%1:04:01:: 00073713 6 0 -distortion%1:11:00:: 07433973 1 2 -distortion%1:19:00:: 11420139 3 1 -distortion%1:19:01:: 11511765 4 0 -distortion%1:25:00:: 13867276 2 1 -distortionist%1:18:00:: 10018747 1 0 -distract%2:37:00:: 01791756 1 3 -distract%2:37:02:: 01764171 2 0 -distracted%5:00:00:inattentive:00 00165458 1 0 -distractedly%4:02:00:: 00307790 1 1 -distraction%1:04:01:: 00515414 3 0 -distraction%1:04:02:: 00200041 4 0 -distraction%1:09:00:: 05684440 1 2 -distraction%1:09:01:: 05706547 2 0 -distrain%2:40:00:: 02353664 2 0 -distrain%2:40:01:: 02353752 1 0 -distrain%2:40:02:: 02276453 3 0 -distraint%1:04:00:: 00085829 1 0 -distrait%5:00:00:inattentive:00 00165458 1 0 -distraught%5:00:00:agitated:00 00085870 1 1 -distress%1:04:00:: 00085829 4 0 -distress%1:12:02:: 07496463 1 4 -distress%1:26:00:: 14326072 3 0 -distress%1:26:01:: 14476852 2 3 -distress%2:37:00:: 01798100 2 0 -distress%2:41:00:: 02603424 1 0 -distress_call%1:10:00:: 06803636 1 0 -distress_signal%1:10:00:: 06803636 1 0 -distressed%3:00:04:: 00909363 2 0 -distressed%5:00:00:troubled:00 02457558 1 1 -distressed%5:00:01:troubled:00 02457167 4 0 -distressed%5:00:02:troubled:00 02458497 3 0 -distressful%5:00:00:heavy:02 01189386 1 0 -distressfully%4:02:00:: 00319931 1 0 -distressfulness%1:07:00:: 05037197 1 0 -distressing%5:00:00:bad:00 01126841 2 0 -distressing%5:00:00:heavy:02 01189386 1 3 -distressingly%4:02:00:: 00114609 1 0 -distressingness%1:07:00:: 04720024 1 0 -distributary%1:17:00:: 09267602 1 0 -distribute%2:32:00:: 00968211 6 1 -distribute%2:35:00:: 01504130 10 0 -distribute%2:35:01:: 01378556 2 5 -distribute%2:38:00:: 02043190 5 1 -distribute%2:40:00:: 02294436 1 10 -distribute%2:40:01:: 02201644 4 3 -distribute%2:41:00:: 02479990 3 4 -distribute%2:42:00:: 02754598 9 0 -distribute%2:42:01:: 02754696 8 0 -distribute%2:42:02:: 02754855 7 0 -distributed%3:00:00:: 00539793 1 0 -distributed_data_processing%1:22:00:: 13468542 1 0 -distributed_fire%1:04:00:: 00990843 1 0 -distributer%1:06:00:: 03213014 2 0 -distributer%1:18:00:: 10018861 1 0 -distribution%1:04:00:: 01083077 3 7 -distribution%1:04:01:: 01112885 4 4 -distribution%1:07:00:: 05087297 2 13 -distribution%1:09:00:: 05729036 1 23 -distribution_agreement%1:10:00:: 06527447 1 0 -distribution_channel%1:04:00:: 01113595 1 0 -distribution_cost%1:21:00:: 13302293 1 3 -distribution_free_statistic%1:09:00:: 06022727 1 0 -distribution_law%1:09:00:: 05876912 1 0 -distribution_list%1:10:00:: 06490627 1 0 -distributional%3:01:00:: 02714578 1 0 -distributive%3:00:00:: 00467913 1 1 -distributive_shock%1:26:00:: 14067786 1 0 -distributively%4:02:00:: 00320074 2 0 -distributively%4:02:01:: 00320237 1 0 -distributor%1:06:00:: 03213014 4 0 -distributor%1:14:00:: 08061905 3 0 -distributor%1:18:00:: 10018861 1 6 -distributor%1:18:01:: 09784707 2 0 -distributor_cam%1:06:00:: 03213361 1 0 -distributor_cap%1:06:00:: 03213538 1 0 -distributor_housing%1:06:00:: 03213715 1 0 -distributor_point%1:06:00:: 03213826 1 0 -district%1:15:00:: 08552138 1 38 -district%2:41:00:: 02512150 1 0 -district_attorney%1:18:00:: 10019072 1 2 -district_line%1:15:00:: 08515817 1 0 -district_manager%1:18:00:: 10019187 1 3 -district_of_columbia%1:15:00:: 09070487 1 12 -distrust%1:07:00:: 04895773 2 0 -distrust%1:09:00:: 05698791 1 1 -distrust%2:31:00:: 00687926 1 3 -distrustful%3:00:00:: 02463154 1 0 -distrustfully%4:02:00:: 00320408 1 0 -distrustfulness%1:07:00:: 04895773 1 0 -disturb%2:30:00:: 00520019 4 2 -disturb%2:30:04:: 00259755 5 1 -disturb%2:35:00:: 01207527 3 2 -disturb%2:35:01:: 01419473 2 4 -disturb%2:37:00:: 01770501 1 8 -disturbance%1:04:00:: 00333829 5 1 -disturbance%1:04:01:: 01176335 4 1 -disturbance%1:11:00:: 07428450 1 4 -disturbance%1:11:01:: 07430211 7 0 -disturbance%1:26:00:: 13977366 3 1 -disturbance%1:26:01:: 14083790 6 0 -disturbance%1:26:02:: 14403282 2 2 -disturbance_of_the_peace%1:04:00:: 00771713 1 0 -disturbed%5:00:00:disarranged:00 01681882 1 2 -disturbed%5:00:00:insane:00 02075321 4 0 -disturbed%5:00:00:neurotic:00 01584017 3 1 -disturbed%5:00:00:troubled:00 02457167 2 1 -disturber%1:18:00:: 10018373 1 0 -disturbing%5:00:00:heavy:02 01189386 1 5 -disturbingly%4:02:00:: 00320777 1 1 -disulfiram%1:06:00:: 03214051 1 0 -disunify%2:30:00:: 00368662 1 0 -disunion%1:04:00:: 00385501 1 0 -disunite%2:35:00:: 01556921 2 0 -disunite%2:41:00:: 02430580 1 0 -disunited%5:00:00:divided:00 02481012 1 0 -disunity%1:26:00:: 13982588 1 0 -disuse%1:26:00:: 14423428 1 0 -disused%5:00:00:noncurrent:00 00669021 1 0 -disyllabic%5:00:00:syllabic:00 02288904 1 0 -disyllable%1:10:00:: 06290539 1 0 -dit%1:10:00:: 06805826 1 0 -dita%1:20:00:: 11770256 1 0 -dita_bark%1:20:00:: 11770256 1 0 -ditch%1:06:00:: 03214253 1 2 -ditch%1:17:02:: 09267758 2 0 -ditch%2:35:00:: 01562891 5 0 -ditch%2:35:01:: 01311896 6 0 -ditch%2:38:00:: 01980920 4 0 -ditch%2:40:00:: 02228268 1 0 -ditch%2:40:01:: 02227362 2 0 -ditch%2:40:03:: 02224945 3 0 -ditch_digger%1:18:00:: 10019308 1 0 -ditch_fern%1:20:00:: 12953484 1 0 -ditch_reed%1:20:00:: 12130937 1 0 -ditch_spade%1:06:00:: 03214450 1 0 -ditchmoss%1:20:00:: 12614317 1 0 -dither%1:26:00:: 14403772 1 0 -dither%2:37:00:: 01819911 2 0 -dither%2:37:01:: 01820189 1 0 -dithered_color%1:07:00:: 04978561 1 0 -dithered_colour%1:07:00:: 04978561 1 0 -dithering%1:22:00:: 13468786 1 0 -dithyramb%1:10:00:: 06379094 2 0 -dithyramb%1:10:01:: 07239428 1 0 -dithyrambic%3:01:00:: 02714708 1 0 -dittany%1:20:00:: 12712626 1 0 -dittany_of_crete%1:20:00:: 12853706 1 0 -ditto%1:10:00:: 06821279 1 0 -ditto%2:32:00:: 00959027 1 0 -ditto_mark%1:10:00:: 06821279 1 0 -ditty%1:10:00:: 07050503 1 1 -ditty_bag%1:06:00:: 03214582 1 0 -diuresis%1:26:00:: 14303249 1 0 -diuretic%1:06:00:: 03214670 1 0 -diuretic_drug%1:06:00:: 03214670 1 0 -diuril%1:06:00:: 03022788 1 0 -diurnal%3:00:00:: 00678666 1 0 -diurnal%5:00:00:periodic:00 01968033 2 0 -diurnal_parallax%1:19:00:: 11528939 1 0 -diurnal_variation%1:11:00:: 07444392 1 3 -diva%1:18:00:: 10471732 1 0 -divagate%2:32:00:: 00780575 1 0 -divagation%1:04:00:: 00350380 2 0 -divagation%1:10:00:: 06600684 1 0 -divalent%3:01:00:: 03049071 1 0 -divan%1:06:00:: 03214966 1 5 -divan%1:06:01:: 03215076 4 0 -divan%1:10:00:: 06592576 3 0 -divan%1:14:00:: 08311848 2 0 -divan_bed%1:06:00:: 03165096 1 0 -divaricate%2:35:00:: 01580142 2 0 -divaricate%2:42:00:: 02710137 1 0 -divarication%1:04:00:: 00388959 1 0 -dive%1:04:00:: 00326677 3 0 -dive%1:04:01:: 00442981 2 1 -dive%1:06:01:: 03530803 1 4 -dive%2:38:00:: 01967373 1 4 -dive%2:38:01:: 01962671 3 0 -dive%2:38:02:: 01962865 2 1 -dive-bomb%2:33:00:: 01132667 1 0 -dive-bombing%1:04:00:: 00979180 1 0 -dive_bomber%1:06:00:: 03215191 1 0 -dive_brake%1:06:00:: 02685855 1 0 -diver%1:05:00:: 02049088 3 0 -diver%1:18:00:: 10019406 2 0 -diver%1:18:01:: 10019552 1 0 -diverge%2:38:00:: 02032415 1 1 -diverge%2:42:00:: 02709906 3 0 -diverge%2:42:01:: 02661252 4 0 -diverge%2:42:02:: 02732603 2 0 -divergence%1:04:00:: 01004072 1 1 -divergence%1:07:01:: 04749709 4 0 -divergence%1:09:00:: 05863302 3 0 -divergence%1:11:00:: 07366289 2 0 -divergency%1:04:00:: 01004072 2 0 -divergency%1:09:00:: 05863302 1 0 -divergent%3:00:00:: 00612652 2 0 -divergent%5:00:00:different:00 02066662 1 2 -divergent_strabismus%1:26:00:: 14557573 1 0 -divergent_thinker%1:18:00:: 10019733 1 0 -divergent_thinking%1:09:00:: 05797177 1 0 -diverging%3:00:00:: 00612652 1 0 -diverging_lens%1:06:00:: 03215337 1 0 -divers%5:00:00:different:00 02067719 1 0 -diverse%5:00:00:different:00 02067491 2 1 -diverse%5:00:02:different:00 02067719 1 4 -diversely%4:02:00:: 00052231 1 0 -diverseness%1:07:00:: 04751305 1 0 -diversification%1:04:00:: 00195569 1 1 -diversification%1:26:00:: 14575180 2 0 -diversified%3:00:00:: 00783129 1 3 -diversify%2:30:00:: 00436404 3 0 -diversify%2:30:02:: 00437125 1 0 -diversify%2:30:03:: 00436668 2 0 -diversion%1:04:00:: 00426928 1 2 -diversion%1:04:01:: 00350380 2 2 -diversion%1:04:02:: 00975270 3 1 -diversionary%5:00:00:indirect:00 00763272 1 0 -diversionary_attack%1:04:00:: 00975270 1 1 -diversionary_landing%1:04:00:: 00972521 1 0 -diversionist%1:18:00:: 10544748 1 0 -diversity%1:07:01:: 04735711 2 0 -diversity%1:07:02:: 04751305 1 2 -divert%2:38:00:: 02064887 1 2 -divert%2:38:01:: 01952363 2 2 -divert%2:40:00:: 02312014 4 0 -divert%2:41:00:: 02492362 3 1 -diverted%5:00:00:pleased:00 01805355 1 0 -diverticulitis%1:26:00:: 14341923 1 0 -diverticulosis%1:26:00:: 14032480 1 0 -diverticulum%1:26:00:: 14295829 1 0 -divertimento%1:10:00:: 07042586 1 1 -diverting%5:00:00:interesting:00 01344485 1 0 -divertingly%4:02:00:: 00094177 1 0 -divest%2:30:13:: 00177243 4 0 -divest%2:40:00:: 02313906 3 0 -divest%2:40:01:: 02314275 1 1 -divest%2:41:00:: 02385372 2 0 -divestiture%1:04:00:: 01115017 2 0 -divestiture%1:10:00:: 06540863 1 4 -divi-divi%1:20:01:: 12488709 2 0 -divi-divi%1:20:02:: 12488914 1 0 -dividable%5:00:00:divisible:00 00785406 1 0 -divide%1:15:00:: 08679369 2 0 -divide%1:26:00:: 13982692 1 0 -divide%2:31:00:: 00642098 2 11 -divide%2:35:00:: 01557774 4 2 -divide%2:35:01:: 01556921 6 1 -divide%2:38:00:: 02031158 5 1 -divide%2:41:00:: 02467662 1 20 -divide%2:42:00:: 02621853 3 4 -divided%3:00:00:: 02478749 1 2 -divided%5:00:00:distributed:00 00541189 3 0 -divided%5:00:00:multilane:00 02221550 2 0 -divided_highway%1:06:00:: 03215508 1 0 -divided_up%5:00:00:distributed:00 00541189 1 0 -dividend%1:21:00:: 13408023 1 5 -dividend%1:21:01:: 13273836 3 0 -dividend%1:23:00:: 13732953 2 0 -dividend_warrant%1:21:00:: 13380667 1 0 -divider%1:06:00:: 03894379 3 0 -divider%1:06:01:: 03215749 4 0 -divider%1:18:00:: 10019888 2 0 -divider%1:18:01:: 10637635 1 0 -dividing_line%1:09:00:: 05748786 1 0 -divina_commedia%1:10:00:: 06380256 1 0 -divination%1:09:00:: 05776212 3 0 -divination%1:10:00:: 06750154 2 0 -divination%1:10:01:: 06783155 1 0 -divinatory%5:00:00:prophetic:00 01882754 1 0 -divinatory%5:00:00:theoretical:00 00861216 2 0 -divine%1:18:00:: 09928136 2 0 -divine%1:18:01:: 09536363 1 1 -divine%2:35:00:: 01314948 2 0 -divine%2:39:00:: 02107588 1 0 -divine%5:00:00:glorious:00 01121507 6 0 -divine%5:00:00:heavenly:00 01179547 1 4 -divine%5:00:00:sacred:00 02055460 4 0 -divine%5:00:00:superhuman:00 01261127 5 0 -divine%5:00:02:heavenly:00 01179767 3 1 -divine%5:00:03:heavenly:00 01180363 2 1 -divine_comedy%1:10:00:: 06380256 1 0 -divine_guidance%1:09:00:: 05686690 1 0 -divine_law%1:09:00:: 05871140 1 1 -divine_messenger%1:18:00:: 09540329 1 0 -divine_office%1:04:00:: 01033714 1 0 -divine_revelation%1:10:00:: 07213232 1 0 -divine_right%1:09:00:: 05960121 1 0 -divine_right_of_kings%1:09:00:: 05960121 1 0 -divine_service%1:04:00:: 01032040 1 0 -divine_unity%1:14:00:: 08014860 1 0 -divinely%4:02:00:: 00190075 1 2 -diviner%1:18:00:: 10020031 1 0 -diving%1:04:00:: 00442981 2 0 -diving%1:11:00:: 07466415 1 1 -diving_bell%1:06:00:: 03215930 1 0 -diving_board%1:06:00:: 03216080 1 1 -diving_dress%1:06:00:: 03216402 1 0 -diving_duck%1:05:00:: 01847253 1 0 -diving_event%1:11:00:: 07466415 1 0 -diving_petrel%1:05:00:: 02061853 1 0 -diving_suit%1:06:00:: 03216402 1 0 -divining_rod%1:06:00:: 03216199 1 0 -divinity%1:07:00:: 04854976 2 1 -divinity%1:09:00:: 06182144 4 0 -divinity%1:13:00:: 07605693 3 0 -divinity%1:18:00:: 09505418 1 4 -divinity_fudge%1:13:00:: 07605693 1 0 -divinyl_ether%1:06:00:: 03299929 1 0 -divisibility%1:07:00:: 04705013 1 0 -divisible%3:00:00:: 00784533 1 0 -division%1:04:00:: 00385791 3 4 -division%1:04:01:: 00870912 11 0 -division%1:04:02:: 00397953 12 0 -division%1:09:00:: 05867413 2 6 -division%1:10:00:: 07181842 5 1 -division%1:14:00:: 08213205 1 10 -division%1:14:01:: 08219226 10 0 -division%1:14:02:: 08219330 9 0 -division%1:14:03:: 08220714 4 3 -division%1:14:04:: 08220891 8 0 -division%1:14:05:: 08221348 7 0 -division%1:14:06:: 08239808 6 0 -division_anthophyta%1:20:00:: 11664929 1 0 -division_archaebacteria%1:05:00:: 01347431 1 0 -division_bryophyta%1:20:00:: 11536778 1 0 -division_chlorophyta%1:05:00:: 01407065 1 0 -division_chrysophyta%1:05:00:: 01399772 1 0 -division_cyanophyta%1:05:00:: 01357707 1 0 -division_cynodontia%1:05:00:: 01720496 1 0 -division_dicynodontia%1:05:00:: 01721010 1 0 -division_eubacteria%1:05:00:: 01354869 1 0 -division_euglenophyta%1:05:00:: 01406092 1 0 -division_eumycota%1:20:00:: 12994979 1 0 -division_gymnomycota%1:20:00:: 12975207 1 0 -division_gymnospermophyta%1:20:00:: 11595312 1 0 -division_heterokontophyta%1:05:00:: 01399529 1 0 -division_lichenes%1:20:00:: 12986447 1 0 -division_magnoliophyta%1:20:00:: 11664929 1 0 -division_myxomycota%1:20:00:: 12975207 1 0 -division_phaeophyta%1:05:00:: 01402381 1 0 -division_protista%1:05:00:: 01387208 1 0 -division_pteridophyta%1:20:00:: 11544769 1 0 -division_rhodophyta%1:05:00:: 01413551 1 0 -division_schizophyta%1:05:00:: 01357967 1 0 -division_spermatophyta%1:20:00:: 11551211 1 0 -division_tracheophyta%1:20:00:: 11534434 1 0 -divisional%3:01:00:: 03061626 1 0 -divisional%5:00:00:disjunctive:00 00565115 2 0 -divisional%5:00:00:fractional:00 00517010 3 0 -divisive%5:00:00:discordant:00 00554302 1 4 -divisor%1:23:00:: 13733167 2 0 -divisor%1:23:01:: 13733402 1 0 -divorce%1:04:00:: 01201271 1 8 -divorce%2:41:00:: 02490634 2 2 -divorce%2:41:01:: 02430580 1 4 -divorce_court%1:14:00:: 08331960 1 0 -divorce_lawyer%1:18:00:: 10020670 1 0 -divorced%5:00:00:unmarried:00 01482551 1 1 -divorced_man%1:18:00:: 10144338 1 0 -divorcee%1:18:00:: 10020366 1 0 -divorcement%1:04:00:: 01201271 1 0 -divot%1:17:00:: 09267854 2 0 -divot%1:17:01:: 09268007 1 0 -divulge%2:32:00:: 00933821 1 1 -divulgement%1:10:00:: 07214267 1 0 -divulgence%1:10:00:: 07214267 1 0 -divvy%1:21:00:: 13408641 1 0 -divvy_up%2:40:00:: 02294179 1 0 -diwan%1:06:01:: 03215076 3 0 -diwan%1:10:00:: 06592576 2 0 -diwan%1:14:00:: 08311848 1 0 -dix%1:18:00:: 10937611 1 0 -dixie%1:06:00:: 03216562 2 0 -dixie%1:15:00:: 09050244 1 0 -dixie_cup%1:06:00:: 03216710 1 0 -dixiecrats%1:14:00:: 08263870 1 0 -dixieland%1:15:00:: 09050244 1 0 -dizen%2:29:00:: 00045240 1 0 -dizygotic%3:01:00:: 02933807 1 0 -dizygotic_twin%1:18:00:: 10109197 1 0 -dizygous%3:01:00:: 02933807 1 0 -dizzily%4:02:00:: 00082923 1 1 -dizziness%1:26:00:: 14372513 1 0 -dizzy%2:30:00:: 00532328 1 0 -dizzy%5:00:00:frivolous:00 02120828 2 1 -dizzy%5:00:00:ill:01 02544048 1 1 -dizzy_gillespie%1:18:00:: 11000012 1 0 -dj%1:18:00:: 10017272 1 0 -dj%2:32:00:: 01033346 1 0 -djakarta%1:15:00:: 08909719 1 0 -djanet%1:15:00:: 08707035 1 0 -djibouti%1:15:00:: 08762495 2 0 -djibouti%1:15:01:: 08762823 1 0 -djibouti_franc%1:23:00:: 13677692 1 0 -djiboutian%1:18:00:: 09700125 1 0 -djiboutian%3:01:00:: 03061762 1 0 -djinn%1:18:00:: 09544433 1 0 -djinni%1:18:00:: 09544433 1 0 -djinny%1:18:00:: 09544433 1 0 -dkg%1:23:00:: 13724350 1 0 -dkl%1:23:00:: 13624509 1 0 -dkm%1:23:00:: 13659419 1 0 -dl%1:23:00:: 13624026 1 0 -dle%1:26:00:: 14220735 1 0 -dm%1:23:00:: 13658998 2 0 -dm%1:26:00:: 14118138 1 0 -dmd%1:10:00:: 06702888 1 0 -dmitri_dmitrievich_shostakovich%1:18:00:: 11299030 1 0 -dmitri_ivanovich_mendeleev%1:18:00:: 11173475 1 0 -dmitri_ivanovich_mendeleyev%1:18:00:: 11173475 1 0 -dmitri_mendeleev%1:18:00:: 11173475 1 0 -dmitri_mendeleyev%1:18:00:: 11173475 1 0 -dmitri_shostakovich%1:18:00:: 11299030 1 0 -dmus%1:10:00:: 06703420 1 0 -dmz%1:15:00:: 08689947 1 0 -dna%1:27:00:: 14830364 1 0 -dna_chip%1:06:00:: 03433247 1 0 -dna_fingerprint%1:10:00:: 06643883 1 0 -dna_polymerase%1:27:00:: 14984584 1 0 -dneprodzerzhinsk%1:15:00:: 09016539 1 0 -dnieper%1:17:00:: 09268236 1 0 -dnieper_river%1:17:00:: 09268236 1 0 -dnipropetrovsk%1:15:00:: 09016698 1 0 -do%1:10:00:: 06868309 2 0 -do%1:10:01:: 06703733 3 0 -do%1:11:00:: 07448038 1 0 -do%2:29:04:: 00038849 12 2 -do%2:29:09:: 00010435 9 3 -do%2:36:00:: 01619014 8 9 -do%2:36:01:: 01712704 2 173 -do%2:36:02:: 01645601 5 35 -do%2:38:00:: 01841772 13 1 -do%2:41:01:: 02560585 1 526 -do%2:41:02:: 02568672 6 20 -do%2:41:03:: 02523221 11 2 -do%2:41:04:: 02561995 3 134 -do%2:42:00:: 02617567 4 58 -do%2:42:01:: 02669789 7 11 -do%2:42:02:: 02709107 10 2 -do-gooder%1:18:00:: 10191613 1 0 -do-it-yourself%5:00:00:homemade:00 00674476 1 2 -do-nothing%1:18:00:: 10197967 1 0 -do-nothing%5:00:00:irresponsible:00 01998535 1 0 -do-or-die%5:00:00:resolute:00 01990507 1 0 -do-si-do%1:04:00:: 00540701 1 0 -do_a_job_on%2:35:00:: 01564836 1 0 -do_away_with%2:30:00:: 00471711 1 1 -do_by%2:41:00:: 02514187 1 1 -do_drugs%2:34:00:: 01200440 1 0 -do_good%2:40:00:: 02290956 1 5 -do_in%2:35:00:: 01327301 1 1 -do_it%2:35:00:: 01426397 1 0 -do_justice%2:31:00:: 00592544 2 0 -do_justice%2:39:00:: 02138453 1 1 -do_one's_best%2:41:00:: 02563120 1 3 -do_the_dishes%2:35:00:: 01533166 1 0 -do_the_honors%2:41:00:: 02592543 1 0 -do_up%2:29:00:: 00043078 2 0 -do_up%2:35:00:: 01283611 1 0 -do_well%2:42:00:: 02723564 1 6 -do_well_by%2:41:00:: 02516107 1 0 -do_work%2:41:00:: 02410855 1 1 -doable%5:00:00:possible:00 01821690 1 0 -dobbin%1:05:00:: 02387254 1 0 -doberman%1:05:00:: 02107142 1 0 -doberman_pinscher%1:05:00:: 02107142 1 0 -dobra%1:23:00:: 13675591 1 0 -dobrich%1:15:00:: 08714624 1 0 -dobson%1:05:01:: 02266050 2 0 -dobson%1:05:02:: 02266269 1 0 -dobson_fly%1:05:00:: 02266050 1 0 -dobsonfly%1:05:00:: 02266050 1 0 -doc%1:14:00:: 08129268 2 0 -doc%1:18:00:: 10020890 1 0 -docent%1:18:00:: 10020807 1 0 -docetism%1:09:00:: 06222731 1 0 -docile%3:00:00:: 02328659 1 3 -docile%5:00:00:tame:01 02388773 3 0 -docile%5:00:00:tractable:00 02451634 2 0 -docility%1:07:00:: 04905697 1 0 -dock%1:05:00:: 02158972 6 0 -dock%1:05:01:: 02158066 7 0 -dock%1:06:00:: 03216828 5 0 -dock%1:06:01:: 03933529 3 0 -dock%1:06:02:: 03217191 1 2 -dock%1:06:03:: 03217333 4 0 -dock%1:20:00:: 12603959 2 0 -dock%2:35:00:: 01305731 5 0 -dock%2:35:01:: 01556178 4 0 -dock%2:38:00:: 02085742 1 2 -dock%2:40:00:: 02215266 3 0 -dock%2:40:01:: 02313690 2 0 -dock-walloper%1:18:00:: 10655169 1 0 -dock_worker%1:18:00:: 10655169 1 0 -dockage%1:04:00:: 00052146 3 0 -dockage%1:06:00:: 03216828 2 0 -dockage%1:21:00:: 13321230 1 0 -docker%1:18:00:: 10655169 1 0 -docket%1:09:00:: 05910940 2 0 -docket%1:10:00:: 06485593 1 0 -docket%2:32:00:: 01008546 2 0 -docket%2:32:01:: 01008719 1 1 -dockhand%1:18:00:: 10655169 1 0 -docking%1:04:00:: 00052146 1 0 -docking_facility%1:06:00:: 03216828 1 0 -docking_fee%1:21:00:: 13321230 1 0 -dockside%1:15:00:: 08649984 1 0 -dockworker%1:18:00:: 10655169 1 0 -dockyard%1:15:00:: 08640392 1 0 -docosahexaenoic_acid%1:27:00:: 14837900 1 0 -doctor%1:04:00:: 00432356 3 1 -doctor%1:18:00:: 10020890 1 73 -doctor%1:18:01:: 10021892 4 0 -doctor%1:18:02:: 10022111 2 1 -doctor%2:29:00:: 00080304 2 1 -doctor%2:30:00:: 00488430 1 1 -doctor%2:30:01:: 00260648 3 0 -doctor's_bill%1:10:00:: 06517547 1 0 -doctor's_degree%1:10:00:: 06702458 1 0 -doctor-fish%1:05:00:: 02621577 1 0 -doctor-patient_relation%1:24:00:: 13837840 1 0 -doctor_of_arts%1:10:00:: 06705306 1 0 -doctor_of_arts%1:10:01:: 06703834 2 0 -doctor_of_dental_medicine%1:10:00:: 06702888 1 0 -doctor_of_dental_surgery%1:10:00:: 06703002 1 0 -doctor_of_divinity%1:10:00:: 06703114 1 0 -doctor_of_education%1:10:00:: 06703213 1 1 -doctor_of_fine_arts%1:10:00:: 06705398 1 0 -doctor_of_humane_letters%1:10:00:: 06705495 1 0 -doctor_of_humanities%1:10:00:: 06705595 1 0 -doctor_of_laws%1:10:00:: 06705698 1 0 -doctor_of_medicine%1:10:00:: 06703321 1 0 -doctor_of_music%1:10:00:: 06703420 1 0 -doctor_of_musical_arts%1:10:00:: 06703522 1 0 -doctor_of_optometry%1:10:00:: 06703632 1 0 -doctor_of_osteopathy%1:10:00:: 06703733 1 0 -doctor_of_philosophy%1:10:00:: 06703953 1 1 -doctor_of_public_health%1:10:00:: 06704366 1 0 -doctor_of_sacred_theology%1:10:00:: 06704582 1 0 -doctor_of_science%1:10:00:: 06705787 1 0 -doctor_of_the_church%1:18:00:: 10022111 1 0 -doctor_of_theology%1:10:00:: 06704482 1 0 -doctor_up%2:30:00:: 00488430 1 0 -doctoral%3:01:00:: 02893338 1 0 -doctorate%1:10:00:: 06702458 1 1 -doctorfish%1:05:00:: 02621577 1 0 -doctorial%3:01:00:: 02893338 1 0 -doctorow%1:18:00:: 10937882 1 0 -doctorspeak%1:10:00:: 07069002 1 0 -doctrinaire%1:18:00:: 10023656 1 0 -doctrinaire%5:00:00:instructive:00 01324271 1 2 -doctrinal%3:01:00:: 03006225 1 1 -doctrinally%4:02:00:: 00320934 1 1 -doctrine%1:09:00:: 05943300 1 20 -doctrine_of_analogy%1:09:00:: 05942579 1 0 -docudrama%1:10:00:: 06616806 1 0 -document%1:06:00:: 03217458 2 1 -document%1:10:00:: 06470073 1 3 -document%1:10:01:: 06510977 4 0 -document%1:21:00:: 13403331 3 0 -document%2:31:00:: 00666510 2 1 -document%2:32:00:: 01002297 1 3 -documental%3:01:00:: 02896789 1 0 -documentary%1:10:00:: 06616806 1 5 -documentary%3:01:00:: 02896789 1 0 -documentary%5:00:00:real:00 01934026 2 0 -documentary_film%1:10:00:: 06616806 1 0 -documentation%1:04:00:: 00154433 3 0 -documentation%1:10:00:: 06650431 1 0 -documentation%1:10:01:: 06588326 2 0 -documented%3:00:00:: 00786291 1 0 -documented%5:00:00:genuine:00 01115920 2 0 -dod%1:14:00:: 08131530 1 0 -dodder%1:20:00:: 12825497 1 0 -dodder%2:38:00:: 01918803 1 0 -dodderer%1:18:00:: 10022645 1 0 -doddering%5:00:00:old:02 01645296 1 0 -doddery%5:00:00:old:02 01645296 1 0 -doddle%1:04:00:: 00575657 1 0 -dodecagon%1:25:00:: 13882883 1 0 -dodecahedron%1:25:00:: 13915784 1 0 -dodecanese%1:15:00:: 08783286 1 0 -dodecanoic_acid%1:27:00:: 14930476 1 0 -dodge%1:04:00:: 00059895 2 1 -dodge%1:09:00:: 05905802 1 1 -dodge%1:10:00:: 06756680 3 0 -dodge%2:32:00:: 00809654 3 1 -dodge%2:38:00:: 02096494 1 6 -dodge%2:38:01:: 02096670 2 1 -dodge_city%1:15:00:: 09087996 1 0 -dodgem%1:06:00:: 02918964 1 0 -dodger%1:13:00:: 07688757 2 0 -dodger%1:18:00:: 10022759 1 0 -dodging%1:04:00:: 00740712 1 1 -dodging%1:04:01:: 00203753 3 0 -dodging%1:10:00:: 06756680 2 0 -dodgson%1:18:00:: 10884061 1 0 -dodgy%5:00:00:artful:00 00148078 2 0 -dodgy%5:00:00:dangerous:00 02059381 1 0 -dodo%1:05:00:: 01811243 2 0 -dodo%1:18:00:: 10022908 1 0 -dodoma%1:15:00:: 09035153 1 0 -dodonaea%1:20:00:: 12741079 1 0 -doe%1:05:00:: 01888411 2 0 -doe%1:14:00:: 08132955 1 0 -doei%1:14:00:: 08133189 1 0 -doer%1:18:00:: 09767197 1 0 -doeskin%1:06:00:: 03217653 2 0 -doeskin%1:27:00:: 14762572 1 0 -doff%2:35:00:: 01590658 1 0 -dog%1:05:00:: 02084071 1 42 -dog%1:06:00:: 03901548 6 0 -dog%1:06:01:: 02710044 7 0 -dog%1:13:01:: 07676602 5 0 -dog%1:18:00:: 10023039 3 0 -dog%1:18:01:: 10114209 2 0 -dog%1:18:02:: 09886220 4 0 -dog%2:38:00:: 02001858 1 2 -dog's-tooth_check%1:06:00:: 03543945 1 0 -dog's-tooth_violet%1:20:00:: 12450344 1 0 -dog's_breakfast%1:26:00:: 14409718 1 0 -dog's_dinner%1:26:00:: 14409718 1 0 -dog's_mercury%1:20:00:: 12924284 1 0 -dog-day_cicada%1:05:00:: 02257003 1 0 -dog-ear%1:10:00:: 06795168 1 0 -dog-eared%5:00:00:worn:00 02581829 1 0 -dog-iron%1:06:00:: 02710044 1 0 -dog-sized%5:00:00:sized:00 02222965 1 0 -dog-tired%5:00:00:tired:00 02433451 1 0 -dog_bent%1:20:00:: 12107002 1 0 -dog_biscuit%1:13:00:: 07635746 1 0 -dog_bite%1:26:00:: 14287567 1 0 -dog_breeding%1:04:00:: 00915574 1 0 -dog_catcher%1:18:00:: 10023129 1 0 -dog_collar%1:06:00:: 03217814 1 0 -dog_collar%1:06:01:: 03041964 2 0 -dog_collar%1:06:02:: 03024882 3 0 -dog_days%1:28:00:: 15237567 1 0 -dog_do%1:17:00:: 09268480 1 0 -dog_fennel%1:20:01:: 11923174 2 0 -dog_fennel%1:20:02:: 11968519 1 0 -dog_flea%1:05:00:: 02187150 1 0 -dog_food%1:13:00:: 07805966 1 0 -dog_grass%1:20:01:: 12105578 1 0 -dog_hobble%1:20:00:: 12239880 1 0 -dog_hook%1:06:00:: 03903133 1 0 -dog_house%1:06:00:: 03610524 1 0 -dog_in_the_manger%1:18:00:: 10023506 1 0 -dog_laurel%1:20:00:: 12239880 1 0 -dog_mercury%1:20:00:: 12924284 1 0 -dog_paddle%1:04:00:: 00570572 1 0 -dog_pound%1:06:00:: 03993703 1 0 -dog_racing%1:11:00:: 07459868 1 0 -dog_rose%1:20:00:: 12621110 1 0 -dog_shit%1:17:00:: 09268480 1 0 -dog_show%1:04:00:: 00519492 1 0 -dog_sled%1:06:00:: 03218198 1 0 -dog_sleigh%1:06:00:: 03218198 1 0 -dog_star%1:17:00:: 09435965 1 0 -dog_stinkhorn%1:20:00:: 13041312 1 0 -dog_tag%1:10:01:: 07272694 2 0 -dog_tag%1:10:02:: 07272807 1 0 -dog_turd%1:17:00:: 09268480 1 0 -dog_violet%1:20:00:: 12388858 1 0 -dog_wrench%1:06:00:: 03218446 1 0 -dogbane%1:20:00:: 11767354 1 0 -dogbane_family%1:20:00:: 11766609 1 0 -dogcart%1:06:00:: 03217739 1 0 -doge%1:18:00:: 10023264 1 0 -dogfight%1:04:00:: 00971802 4 0 -dogfight%1:04:01:: 00974224 3 0 -dogfight%1:04:02:: 01172441 2 0 -dogfight%1:11:00:: 07458212 1 0 -dogfight%2:33:00:: 01092826 2 0 -dogfight%2:36:00:: 01648373 1 0 -dogfighter%1:18:00:: 10023381 1 0 -dogfish%1:05:00:: 01491874 2 0 -dogfish%1:05:01:: 02639087 1 0 -dogged%5:00:00:stubborn:00 02327569 1 2 -doggedly%4:02:00:: 00235701 1 4 -doggedness%1:07:00:: 04864515 1 0 -doggerel%1:10:00:: 06379253 1 1 -doggerel_verse%1:10:00:: 06379253 1 0 -doggie%1:05:00:: 02084732 1 0 -doggie_bag%1:06:00:: 03217889 1 0 -dogging%5:00:00:continuous:01 00596043 1 1 -doggo%4:02:00:: 00252249 1 0 -doggy%1:05:00:: 02084732 1 0 -doggy_bag%1:06:00:: 03217889 1 0 -doggy_do%1:17:00:: 09268480 1 0 -doghouse%1:06:00:: 03610524 1 1 -doghouse%1:09:00:: 06200929 2 0 -dogie%1:05:00:: 02403920 1 0 -dogleg%1:06:00:: 03218100 2 0 -dogleg%1:25:00:: 13892142 1 0 -doglike%5:00:00:loyal:00 00961908 1 1 -dogma%1:09:00:: 05960464 2 0 -dogma%1:10:00:: 06790042 1 3 -dogmatic%3:01:00:: 03006389 3 0 -dogmatic%3:01:01:: 03061982 2 0 -dogmatic%5:00:00:narrow-minded:00 00288070 1 1 -dogmatical%5:00:00:narrow-minded:00 00288070 1 0 -dogmatically%4:02:00:: 00321015 1 2 -dogmatise%2:32:00:: 00980908 1 0 -dogmatise%2:32:01:: 00963283 2 0 -dogmatism%1:09:00:: 06206210 1 0 -dogmatist%1:18:00:: 10023656 1 0 -dogmatize%2:32:00:: 00980908 1 0 -dogmatize%2:32:01:: 00963283 2 0 -dogs-tooth_check%1:06:00:: 03543945 1 0 -dogsbody%1:18:00:: 10023885 1 0 -dogshit%1:10:00:: 06611376 1 0 -dogsled%1:06:00:: 03218198 1 0 -dogsled%2:38:00:: 01939406 1 0 -dogstooth_check%1:06:00:: 03543945 1 0 -dogtooth%1:06:00:: 03218334 3 0 -dogtooth%1:08:00:: 05307091 2 0 -dogtooth%1:20:00:: 12450344 1 0 -dogtooth_violet%1:20:00:: 12450344 1 0 -dogtrot%1:04:00:: 00294366 1 0 -dogwatch%1:28:00:: 15292617 1 0 -dogwood%1:20:00:: 12946849 1 1 -dogwood%1:20:02:: 12947171 2 0 -dogwood_family%1:20:00:: 12946088 1 0 -dogwood_tree%1:20:00:: 12946849 1 0 -dogy%1:05:00:: 02403920 1 0 -doh%1:10:00:: 06868309 1 0 -doha%1:15:00:: 08987262 1 0 -doi%1:14:00:: 08139000 1 0 -doily%1:06:00:: 03219010 1 0 -doing_business_as%1:10:00:: 06334512 1 0 -doings%1:04:00:: 01220984 1 0 -doj%1:14:00:: 08135342 1 0 -dojc%1:14:00:: 08343324 1 0 -dol%1:14:00:: 08137495 2 0 -dol%1:23:00:: 13710986 1 0 -dolabrate%5:00:00:simple:01 02168014 1 0 -dolabriform%5:00:00:simple:01 02168014 1 0 -dolby%1:18:00:: 10938019 1 0 -dolce%4:02:00:: 00513248 1 0 -dolce_far_niente%1:04:00:: 01065607 1 0 -doldrums%1:19:00:: 11447691 2 0 -doldrums%1:26:02:: 14012667 1 0 -dole%1:04:00:: 01088304 2 0 -dole%1:21:00:: 13285855 1 0 -dole_out%2:40:00:: 02294436 1 1 -doled_out%5:00:00:distributed:00 00540236 1 1 -doleful%5:00:00:sad:00 01362387 1 2 -dolefully%4:02:00:: 00321165 1 0 -dolefulness%1:12:00:: 07532832 1 0 -dolichocephalic%1:18:00:: 10024025 1 0 -dolichocephalic%3:00:00:: 00262529 1 0 -dolichocephalism%1:07:00:: 05212493 1 0 -dolichocephaly%1:07:00:: 05212493 1 0 -dolichocranial%3:00:00:: 00262529 1 0 -dolichocranic%3:00:00:: 00262529 1 0 -dolichonyx%1:05:00:: 01573775 1 0 -dolichonyx_oryzivorus%1:05:00:: 01573898 1 0 -dolichos%1:20:00:: 12527391 1 0 -dolichos_biflorus%1:20:00:: 12547872 1 0 -dolichos_lablab%1:20:00:: 12537569 1 0 -dolichos_lignosus%1:20:00:: 12527081 1 0 -dolichotis%1:05:00:: 02364989 1 0 -dolichotis_patagonum%1:05:00:: 02365108 1 0 -doliolidae%1:05:00:: 01469886 1 0 -doliolum%1:05:00:: 01470145 1 0 -doll%1:06:00:: 03219135 1 1 -doll%1:18:00:: 09989045 2 0 -doll's_eyes%1:20:00:: 11724363 1 0 -doll's_house%1:06:00:: 03219362 2 0 -doll's_house%1:06:01:: 03219483 1 0 -doll_up%2:29:00:: 00043078 1 0 -dollar%1:10:00:: 06821581 4 0 -dollar%1:21:00:: 13395897 2 11 -dollar%1:21:01:: 13391967 3 0 -dollar%1:23:00:: 13661273 1 23 -dollar_bill%1:21:00:: 13395897 1 1 -dollar_diplomacy%1:10:00:: 07148828 1 0 -dollar_mark%1:10:00:: 06821422 2 0 -dollar_mark%1:10:01:: 06821581 1 0 -dollar_sign%1:10:00:: 06821422 2 0 -dollar_sign%1:10:01:: 06821581 1 1 -dollar_volume%1:07:00:: 05112308 1 2 -dollarfish%1:05:01:: 02633422 1 0 -dollarfish%1:05:02:: 02578233 2 0 -dolled_up%5:00:00:clothed:00 00455824 1 0 -dollhouse%1:06:00:: 03219362 2 0 -dollhouse%1:06:01:: 03219483 1 0 -dollop%1:23:00:: 13772020 1 0 -dolly%1:06:00:: 03219135 3 0 -dolly%1:06:01:: 03219612 2 0 -dolly%1:06:02:: 03219732 1 0 -dolman%1:06:00:: 03219859 2 0 -dolman%1:06:01:: 03219966 1 0 -dolman_jacket%1:06:00:: 03219966 1 0 -dolman_sleeve%1:06:00:: 03220095 1 0 -dolmas%1:13:00:: 07866409 1 0 -dolmen%1:06:00:: 03220237 1 0 -dolobid%1:06:00:: 03195118 1 0 -dolomite%1:27:00:: 14838055 1 0 -dolomite%1:27:01:: 14673747 2 0 -dolomite_alps%1:17:00:: 09268592 1 0 -dolomitic%3:01:00:: 03062151 1 0 -dolophine_hydrochloride%1:06:00:: 03754014 1 0 -dolor%1:12:00:: 07535532 1 0 -dolorous%5:00:00:sorrowful:00 01365239 1 0 -dolour%1:12:00:: 07535532 1 0 -dolourous%5:00:00:sorrowful:00 01365239 1 0 -dolphin%1:05:00:: 02068974 2 0 -dolphin%1:05:01:: 02581957 1 0 -dolphin_kick%1:04:00:: 00574790 1 0 -dolphin_oil%1:27:00:: 14996709 1 0 -dolphin_striker%1:06:00:: 03220401 1 0 -dolphinfish%1:05:00:: 02581957 2 0 -dolphinfish%1:13:00:: 07778938 1 0 -dolt%1:18:01:: 10667187 1 0 -doltish%5:00:00:stupid:00 00440489 1 0 -doltishly%4:02:00:: 00175344 1 0 -dom_pedro%1:13:00:: 07912093 1 0 -domain%1:09:00:: 05999266 5 0 -domain%1:14:00:: 07965937 4 0 -domain%1:14:01:: 08000118 3 0 -domain%1:15:00:: 08556491 2 2 -domain%1:26:00:: 14514039 1 4 -domain_name%1:10:00:: 06845303 1 0 -domain_of_a_function%1:14:00:: 08000118 1 0 -domatium%1:20:00:: 11533999 1 0 -dombeya%1:20:00:: 12197901 1 0 -dome%1:06:00:: 03220513 4 0 -dome%1:06:01:: 03220692 3 0 -dome%1:08:00:: 05539454 2 0 -dome%1:25:00:: 13872072 1 0 -dome-shaped%5:00:00:rounded:00 02046115 1 0 -domed%5:00:00:rounded:00 02046017 1 0 -domed_stadium%1:06:00:: 03220692 1 0 -domenikos_theotocopoulos%1:18:00:: 10956377 1 0 -domesday_book%1:10:00:: 06503386 1 0 -domestic%1:18:00:: 10024119 1 0 -domestic%3:00:00:: 01038102 1 19 -domestic%3:00:01:: 01038808 3 3 -domestic%3:01:00:: 02919594 2 8 -domestic%5:00:00:native:01 01036754 5 0 -domestic%5:00:00:tame:01 02388921 4 0 -domestic_animal%1:05:00:: 01317541 1 1 -domestic_ass%1:05:00:: 02389559 1 0 -domestic_carp%1:05:00:: 01439808 1 0 -domestic_cat%1:05:00:: 02121808 1 0 -domestic_dog%1:05:00:: 02084071 1 0 -domestic_flight%1:04:00:: 00301728 1 0 -domestic_fowl%1:05:00:: 01789740 1 0 -domestic_goat%1:05:00:: 02417070 1 0 -domestic_help%1:18:00:: 10024119 1 0 -domestic_llama%1:05:00:: 02437971 1 0 -domestic_partner%1:18:00:: 10024362 1 0 -domestic_pigeon%1:05:00:: 01814370 1 0 -domestic_prelate%1:18:00:: 10024621 1 0 -domestic_relations_court%1:14:00:: 08332090 1 0 -domestic_science%1:09:00:: 06149344 1 0 -domestic_sheep%1:05:00:: 02413131 1 0 -domestic_silkworm_moth%1:05:00:: 02300554 1 0 -domestic_terrorism%1:04:00:: 00763787 1 0 -domestic_violence%1:04:00:: 00965718 1 0 -domestically%4:02:00:: 00321366 2 0 -domestically%4:02:01:: 00321524 1 0 -domesticate%2:30:00:: 00302130 2 0 -domesticate%2:30:01:: 00302464 1 0 -domesticate%2:30:02:: 00301856 3 0 -domesticated%5:00:00:domestic:01 01039203 2 0 -domesticated%5:00:00:tame:01 02388921 1 0 -domesticated_animal%1:05:00:: 01317541 1 0 -domesticated_silkworm_moth%1:05:00:: 02300554 1 0 -domestication%1:04:00:: 00194257 3 0 -domestication%1:07:00:: 04905842 2 0 -domestication%1:22:00:: 13468954 1 0 -domesticise%2:30:00:: 00302130 1 0 -domesticity%1:04:00:: 00409075 2 0 -domesticity%1:07:00:: 05209113 1 0 -domesticize%2:30:00:: 00302130 1 0 -domicile%1:06:00:: 03259505 2 0 -domicile%1:15:00:: 08559155 1 0 -domicile%2:42:00:: 02650552 1 0 -domiciliary%3:01:00:: 03062280 1 0 -domiciliate%2:41:00:: 02459173 2 0 -domiciliate%2:42:00:: 02650552 1 0 -domiciliation%1:06:00:: 03195485 1 0 -dominance%1:07:00:: 05196582 4 0 -dominance%1:07:02:: 04998417 1 4 -dominance%1:19:00:: 11413800 3 0 -dominance%1:26:00:: 14441825 2 3 -dominant%1:08:00:: 05438130 2 0 -dominant%1:10:00:: 06858266 1 0 -dominant%3:00:01:: 00791227 1 51 -dominant%3:00:02:: 00793793 2 0 -dominant%5:00:00:frequent:00 01066787 3 0 -dominant_allele%1:08:00:: 05438130 1 0 -dominant_gene%1:08:00:: 05437600 1 0 -dominate%2:41:00:: 02539334 3 6 -dominate%2:42:00:: 02644234 1 9 -dominate%2:42:01:: 02646931 2 6 -dominate%2:42:02:: 02696129 5 0 -dominate%2:42:03:: 02744280 4 0 -dominated%5:00:00:controlled:00 00599186 1 2 -dominated%5:00:00:submissive:00 00789988 2 0 -dominating%5:00:00:dominant:01 00791631 1 1 -dominating%5:00:00:domineering:00 00787595 3 0 -dominating%5:00:00:high:01 01205232 2 0 -domination%1:04:00:: 01128390 1 6 -domination%1:26:00:: 14442530 2 1 -dominatrix%1:18:00:: 10024784 1 0 -domine%1:18:00:: 10025060 1 0 -dominee%1:18:00:: 10025060 1 0 -domineer%2:37:00:: 01781757 1 1 -domineering%3:00:00:: 00787136 1 1 -domineeringly%4:02:00:: 00321707 1 0 -domineeringness%1:07:00:: 04888788 1 0 -domingo%1:18:00:: 10938199 1 0 -domingo_de_guzman%1:18:00:: 10938363 1 0 -dominic%1:18:00:: 10938363 1 0 -dominica%1:15:00:: 08763193 1 0 -dominica%1:15:01:: 08763010 2 0 -dominical%3:01:00:: 02846927 2 0 -dominical%3:01:01:: 02847025 1 0 -dominican%1:18:00:: 10778345 1 0 -dominican%1:18:01:: 10024937 2 0 -dominican%3:01:00:: 03062466 2 0 -dominican%3:01:01:: 03062595 1 0 -dominican_dollar%1:23:00:: 13673080 1 0 -dominican_mahogany%1:20:00:: 12699922 1 0 -dominican_monetary_unit%1:23:00:: 13692151 1 0 -dominican_order%1:14:00:: 08149160 1 0 -dominican_peso%1:23:00:: 13692278 1 0 -dominican_republic%1:15:00:: 08752021 1 1 -dominick%1:05:00:: 01793565 1 0 -dominicus%1:28:00:: 15163797 1 0 -dominie%1:18:00:: 10025060 1 0 -dominion%1:14:00:: 08167249 3 0 -dominion%1:15:00:: 08552138 2 0 -dominion%1:26:00:: 14442933 1 4 -dominion_day%1:28:00:: 15200314 1 0 -dominique%1:05:00:: 01793565 1 0 -domino%1:06:00:: 03220802 4 0 -domino%1:06:01:: 03221059 3 0 -domino%1:06:02:: 03221205 2 0 -domino%1:18:00:: 10938640 1 0 -domino_effect%1:19:00:: 11414041 1 0 -domino_theory%1:09:00:: 06217464 1 0 -dominoes%1:04:00:: 00499477 1 0 -dominos%1:04:00:: 00499477 1 0 -dominus%1:18:00:: 10025060 1 0 -domitian%1:18:00:: 10938821 1 0 -domoic_acid%1:27:00:: 14591901 1 0 -don%1:10:00:: 06340395 6 0 -don%1:17:00:: 09268778 5 0 -don%1:18:00:: 09508975 4 0 -don%1:18:01:: 10025195 1 1 -don%1:18:02:: 10464542 2 0 -don%1:18:03:: 10025295 3 0 -don%2:29:00:: 00050652 1 4 -don't-know%1:18:00:: 10026367 1 0 -don_budge%1:18:00:: 10870440 1 0 -don_juan%1:18:00:: 10939475 1 0 -don_juan%1:18:01:: 10025487 2 0 -don_luchino_visconti_conte_di_modrone%1:18:00:: 11367581 1 0 -don_marquis%1:18:00:: 11158364 1 0 -don_quixote%1:18:00:: 10026261 2 0 -don_quixote%1:18:01:: 09598370 1 3 -don_river%1:17:00:: 09268778 1 0 -dona%1:10:00:: 06340563 1 0 -donald_arthur_glaser%1:18:00:: 11001848 1 0 -donald_barthelme%1:18:00:: 10836413 1 0 -donald_duck%1:05:00:: 02452225 1 0 -donald_glaser%1:18:00:: 11001848 1 0 -donald_robert_perry_marquis%1:18:00:: 11158364 1 0 -donar%1:18:00:: 09585650 1 0 -donate%2:40:00:: 02263027 1 7 -donatello%1:18:00:: 10939040 1 0 -donation%1:04:00:: 01089778 2 1 -donation%1:21:00:: 13270038 1 2 -donatism%1:09:00:: 06228086 1 0 -donatist%1:18:00:: 10025391 1 0 -donatist%3:01:00:: 02847126 1 0 -donato_bramante%1:18:00:: 10862507 1 0 -donato_d'agnolo_bramante%1:18:00:: 10862507 1 0 -donato_di_betto_bardi%1:18:00:: 10939040 1 0 -donatus%1:18:00:: 10939187 1 0 -donbas%1:15:00:: 09016232 1 0 -donbass%1:15:00:: 09016232 1 0 -done%5:00:00:cooked:00 00617344 2 0 -done%5:00:00:finished:01 01003536 1 7 -done_for%5:00:00:destroyed:00 00735882 1 1 -done_for%5:00:00:unsuccessful:00 02334321 2 0 -done_with%5:00:00:finished:01 01003822 1 1 -donee%1:18:00:: 09850121 1 0 -donets_basin%1:15:00:: 09016232 1 0 -donetsk%1:15:00:: 09016099 1 0 -donetske%1:15:00:: 09016099 1 0 -dong%1:23:00:: 13674890 1 0 -dong%2:39:00:: 02181174 1 0 -dongle%1:06:00:: 03221351 1 0 -donizetti%1:18:00:: 10939360 1 0 -donjon%1:06:00:: 03610098 1 0 -donkey%1:05:00:: 02389559 2 0 -donkey%1:10:00:: 06881360 1 0 -donkey_boiler%1:06:00:: 02762725 1 0 -donkey_cart%1:06:00:: 03981924 1 0 -donkey_engine%1:06:00:: 02762909 2 0 -donkey_engine%1:06:01:: 04373428 1 0 -donkey_jacket%1:06:00:: 03221540 1 0 -donkey_pump%1:06:00:: 02763083 1 0 -donkeywork%1:04:00:: 00621476 1 0 -donkin%1:18:00:: 10939630 1 0 -donna%1:18:00:: 10025635 1 0 -donne%1:18:00:: 10939856 1 0 -donnean%3:01:00:: 03030753 1 0 -donner_pass%1:17:00:: 09268927 1 0 -donnian%3:01:00:: 03030753 1 0 -donnish%5:00:00:scholarly:00 02083908 1 0 -donor%1:18:00:: 10025730 1 7 -donor%1:18:01:: 10026058 2 0 -donor_card%1:10:00:: 06477645 1 0 -donut%1:13:00:: 07639069 1 0 -doo-wop%1:10:00:: 07061677 1 0 -doob%1:20:00:: 12115748 1 0 -doodad%1:06:00:: 03218545 1 0 -doodia%1:20:00:: 13185658 1 0 -doodia%1:20:01:: 13185436 2 0 -doodle%1:06:00:: 04155310 1 0 -doodle%2:36:00:: 01693324 1 0 -doodlebug%1:05:00:: 02264232 3 0 -doodlebug%1:06:00:: 02929923 2 0 -doodlebug%1:06:01:: 03221643 1 0 -doodly-squat%1:23:00:: 13773047 1 0 -doofus%1:18:00:: 10013114 1 0 -doohickey%1:06:00:: 03218545 1 0 -doojigger%1:06:00:: 03218545 1 0 -doolittle%1:18:00:: 10940053 1 0 -doom%1:11:00:: 07334206 1 3 -doom%2:32:00:: 00906735 2 0 -doom%2:32:01:: 00746479 1 9 -doom%2:32:04:: 00890855 3 0 -doomed%1:14:00:: 07946694 1 1 -doomed%5:00:00:certain:03 00340827 4 0 -doomed%5:00:00:dead:01 00097305 1 2 -doomed%5:00:00:lost:02 01451225 2 0 -doomed%5:00:00:unfortunate:00 01051410 3 0 -doomsday%1:11:00:: 07334206 2 0 -doomsday%1:28:00:: 15171307 1 0 -doomsday_book%1:10:00:: 06503386 1 0 -door%1:06:00:: 03221720 1 98 -door%1:06:01:: 03224032 2 36 -door%1:06:03:: 03222176 5 0 -door%1:06:04:: 03222318 4 0 -door%1:07:00:: 05180881 3 5 -door-to-door%5:00:00:comprehensive:00 00527551 2 0 -door-to-door%5:00:00:direct:00 00761260 1 0 -door_guard%1:18:00:: 10026553 1 0 -door_latch%1:06:00:: 03645011 1 0 -door_prize%1:21:00:: 13268484 1 0 -doorbell%1:06:00:: 03222516 1 1 -doorcase%1:06:00:: 03222722 1 0 -doorframe%1:06:00:: 03222722 1 0 -doorhandle%1:06:00:: 03222959 1 1 -doorjamb%1:06:00:: 03222857 1 0 -doorkeeper%1:18:00:: 10026553 3 0 -doorkeeper%1:18:01:: 10742111 1 0 -doorkeeper%1:18:02:: 10026763 2 0 -doorknob%1:06:00:: 03222959 1 1 -doorknocker%1:06:00:: 03626760 1 0 -doorlock%1:06:00:: 03223162 1 0 -doorman%1:18:00:: 10026553 1 3 -doormat%1:06:00:: 03223299 2 0 -doormat%1:18:00:: 10771636 1 0 -doornail%1:06:00:: 03223441 1 0 -doorplate%1:06:00:: 03223553 1 0 -doorpost%1:06:00:: 03222857 1 0 -doorsill%1:06:00:: 03223686 1 0 -doorstep%1:06:00:: 03223686 1 0 -doorstop%1:06:00:: 03223923 1 0 -doorstopper%1:06:00:: 03223923 1 0 -doorway%1:06:00:: 03224032 1 11 -dooryard%1:06:00:: 03224387 1 2 -dopa%1:27:00:: 14604959 1 0 -dopamine%1:27:00:: 14838217 1 0 -dopastat%1:27:00:: 14838217 1 0 -dope%1:06:00:: 03990834 1 1 -dope%1:10:00:: 06636113 4 0 -dope%1:13:00:: 07927931 3 0 -dope%1:18:00:: 10039391 2 0 -dope%2:29:00:: 00085046 3 0 -dope%2:30:00:: 00557022 2 0 -dope%2:34:00:: 01200806 1 0 -dope_off%2:29:00:: 00017282 1 0 -dope_sheet%1:10:00:: 06596025 1 0 -dope_up%2:29:00:: 00085046 1 0 -doped%5:00:00:intoxicated:00 00798879 2 0 -doped%5:00:00:treated:00 01954418 1 1 -dopey%5:00:01:stupid:00 00439905 1 0 -doppelganger%1:18:00:: 09487692 1 0 -doppelzentner%1:23:00:: 13725271 1 0 -doppler%1:18:00:: 10940315 1 0 -doppler_effect%1:19:00:: 11513179 1 1 -doppler_radar%1:06:00:: 03224490 1 0 -doppler_shift%1:19:00:: 11513179 1 0 -dopy%5:00:01:stupid:00 00439905 1 0 -dorado%1:17:00:: 09269174 1 0 -dorbeetle%1:05:00:: 02172761 1 0 -dorian%1:14:00:: 08160808 2 0 -dorian%1:18:00:: 09710886 1 0 -dorian%3:01:00:: 02847207 1 0 -dorian_order%1:07:00:: 04698998 1 0 -doric%1:10:00:: 06978068 1 0 -doric%3:01:00:: 02847370 1 0 -doric_dialect%1:10:00:: 06978068 1 0 -doric_order%1:07:00:: 04698998 1 0 -doriden%1:06:00:: 03441778 1 0 -doris%1:15:00:: 08783444 2 0 -doris%1:18:00:: 09559071 1 0 -doris_lessing%1:18:00:: 11129478 1 0 -doris_may_lessing%1:18:00:: 11129478 1 0 -dork%1:18:00:: 10221040 1 0 -dorking%1:05:00:: 01790171 1 0 -dorm%1:06:00:: 03224893 1 0 -dorm_room%1:06:00:: 03225108 1 0 -dormancy%1:04:00:: 01064863 2 0 -dormancy%1:26:00:: 14011811 1 0 -dormant%3:00:00:: 00040685 2 0 -dormant%5:00:00:asleep:00 00188155 1 2 -dormant%5:00:00:inactive:01 00034032 4 0 -dormant%5:00:00:unerect:00 01238914 3 0 -dormant_account%1:21:00:: 13364602 1 0 -dormer%1:06:00:: 03224603 1 0 -dormer_window%1:06:00:: 03224603 2 0 -dormer_window%1:06:01:: 03224753 1 0 -dormie%5:00:00:up:00 02490949 1 0 -dormition%1:28:00:: 15194194 1 0 -dormitory%1:06:00:: 03224893 1 2 -dormitory%1:06:01:: 03225108 2 0 -dormitory_room%1:06:00:: 03225108 1 0 -dormouse%1:05:00:: 02352591 1 0 -dormy%5:00:00:up:00 02490949 1 0 -doronicum%1:20:00:: 11961686 1 0 -doroteo_arango%1:18:00:: 11366405 1 0 -dorothea_dix%1:18:00:: 10937611 1 0 -dorothea_lange%1:18:00:: 11116466 1 0 -dorothea_lynde_dix%1:18:00:: 10937611 1 0 -dorotheanthus%1:20:00:: 11819751 1 0 -dorotheanthus_bellidiformis%1:20:00:: 11819912 1 0 -dorothy_dix%1:18:00:: 11000469 1 0 -dorothy_hodgkin%1:18:00:: 11053817 1 0 -dorothy_l._sayers%1:18:00:: 11283682 1 0 -dorothy_leigh_sayers%1:18:00:: 11283682 1 0 -dorothy_mary_crowfoot_hodgkin%1:18:00:: 11053817 1 0 -dorothy_parker%1:18:00:: 11222759 1 0 -dorothy_rothschild_parker%1:18:00:: 11222759 1 0 -dorothy_sayers%1:18:00:: 11283682 1 0 -dorsal%3:00:00:: 00132127 1 0 -dorsal%3:00:04:: 00002312 2 0 -dorsal_fin%1:05:00:: 02466400 1 0 -dorsal_horn%1:08:00:: 05365633 1 0 -dorsal_root%1:08:00:: 05365633 1 0 -dorsal_scapular_vein%1:08:00:: 05365420 1 0 -dorsal_vertebra%1:08:00:: 05589132 1 0 -dorsally%4:02:00:: 00083080 1 0 -dorsiflexion%1:04:00:: 00405892 1 0 -dorsoventral%5:00:00:ventral:00 00132754 1 0 -dorsoventrally%4:02:00:: 00083168 1 0 -dorsum%1:08:00:: 05557500 2 0 -dorsum%1:08:01:: 05558717 1 0 -dortmund%1:15:00:: 08770718 1 0 -dory%1:05:00:: 01452798 3 0 -dory%1:05:01:: 02557749 2 0 -dory%1:06:00:: 03199901 1 0 -dorylinae%1:05:00:: 02220393 1 0 -doryopteris%1:20:00:: 13210827 1 0 -doryopteris_pedata%1:20:00:: 13211020 1 0 -dos%1:10:00:: 06568422 2 0 -dos%1:14:00:: 08137738 1 0 -dos_passos%1:18:00:: 10940474 1 0 -dosage%1:06:00:: 03225238 2 0 -dosage%1:23:00:: 13772106 1 6 -dose%1:06:00:: 03225238 1 4 -dose%1:06:01:: 02675657 4 0 -dose%1:23:00:: 13772106 2 2 -dose%1:26:00:: 14133159 3 0 -dose%2:29:00:: 00084738 2 0 -dose%2:30:00:: 00516584 1 1 -dose_rate%1:28:00:: 15277358 1 0 -dosed%5:00:00:treated:02 01955670 1 1 -dosemeter%1:06:00:: 03225458 1 0 -dosimeter%1:06:00:: 03225458 1 0 -dosimetry%1:04:00:: 01002165 1 0 -doss%2:29:00:: 00017674 1 0 -doss_down%2:29:00:: 00017674 1 0 -dossal%1:06:00:: 03225616 1 0 -dossel%1:06:00:: 03225616 1 0 -dosser%1:18:00:: 10026976 1 0 -dosshouse%1:06:00:: 03367321 1 0 -dossier%1:10:00:: 06503551 1 0 -dostoevski%1:18:00:: 10940669 1 0 -dostoevskian%3:01:00:: 03030919 1 0 -dostoevsky%1:18:00:: 10940669 1 0 -dostoyevskian%3:01:00:: 03030919 1 0 -dostoyevsky%1:18:00:: 10940669 1 0 -dot%1:06:00:: 02675657 4 0 -dot%1:10:00:: 06805826 3 0 -dot%1:14:00:: 08143653 2 0 -dot%1:25:00:: 13911872 1 13 -dot%2:30:00:: 00507913 4 0 -dot%2:32:00:: 00998294 3 0 -dot%2:35:00:: 01376245 2 0 -dot%2:42:00:: 02689882 1 3 -dot-com%1:14:00:: 08002384 1 0 -dot-com%3:01:00:: 02847473 1 0 -dot_com%1:14:00:: 08002384 1 0 -dot_com_company%1:14:00:: 08002384 1 0 -dot_matrix%1:14:00:: 08267956 1 0 -dot_matrix_printer%1:06:00:: 03225777 1 0 -dot_printer%1:06:00:: 03225777 1 0 -dot_product%1:09:00:: 05864884 1 0 -dotage%1:28:00:: 15154190 1 0 -dotard%1:18:00:: 10027105 1 0 -dote%2:37:02:: 01777459 2 0 -dote%2:42:00:: 02697610 1 0 -doting%5:00:00:loving:00 01464433 1 0 -dotrel%1:05:00:: 02024185 1 0 -dotted%5:00:00:broken:02 00290483 2 1 -dotted%5:00:00:patterned:00 01788445 1 2 -dotted_gayfeather%1:20:00:: 11991549 1 0 -dotted_line%1:10:00:: 06800344 1 0 -dotterel%1:05:00:: 02024185 1 0 -dottily%4:02:00:: 00303930 1 0 -dottle%1:27:00:: 14838539 1 0 -dotty%5:00:00:enthusiastic:00 00886448 2 0 -dotty%5:00:00:insane:00 02074929 1 0 -douala%1:15:00:: 08717629 1 0 -douay-rheims_bible%1:10:00:: 06448868 1 0 -douay-rheims_version%1:10:00:: 06448868 1 0 -douay_bible%1:10:00:: 06448868 1 0 -douay_version%1:10:00:: 06448868 1 0 -double%1:04:00:: 00132756 1 12 -double%1:04:01:: 00803394 5 0 -double%1:09:00:: 05860200 4 0 -double%1:18:00:: 10027246 3 0 -double%1:18:01:: 10666846 2 0 -double%2:30:00:: 00246217 1 12 -double%2:35:00:: 01409523 2 2 -double%2:35:01:: 01525505 4 1 -double%2:36:00:: 01734502 6 0 -double%2:38:00:: 02063309 3 1 -double%2:40:03:: 02300425 5 0 -double%3:00:00:: 01546826 5 0 -double%3:00:04:: 02220308 4 0 -double%4:02:00:: 00083393 3 0 -double%4:02:01:: 00321824 2 0 -double%4:02:02:: 00321906 1 0 -double%5:00:00:equivocal:00 00896026 7 0 -double%5:00:00:large:00 01385149 6 0 -double%5:00:01:multiple:00 02217241 3 4 -double%5:00:02:multiple:00 02217452 2 5 -double%5:00:03:multiple:00 02217799 1 5 -double-barreled%3:00:00:: 00794277 1 0 -double-barreled%5:00:00:ambiguous:00 00102578 2 0 -double-barrelled%3:00:00:: 00794277 1 0 -double-barrelled%5:00:00:ambiguous:00 00102578 2 0 -double-bass%5:00:00:low:03 01216145 1 0 -double-bedded%5:00:00:bedded:00 00207706 1 0 -double-bitted_ax%1:06:00:: 03226090 1 0 -double-bitted_axe%1:06:00:: 03226090 1 0 -double-blind_experiment%1:04:00:: 00178177 1 0 -double-blind_procedure%1:04:00:: 00178177 1 0 -double-blind_study%1:04:00:: 00178177 1 0 -double-bogey%1:23:00:: 13595699 1 0 -double-breasted%3:00:00:: 00794426 1 1 -double-breasted_jacket%1:06:00:: 03226375 1 0 -double-breasted_suit%1:06:00:: 03226538 1 0 -double-check%2:31:00:: 00663549 1 0 -double-chinned%5:00:00:fat:01 00987349 1 0 -double-crosser%1:18:00:: 10027590 1 1 -double-crossing%1:04:00:: 00749991 1 1 -double-date%2:41:00:: 02486060 1 0 -double-dealer%1:18:00:: 10027590 1 0 -double-dealing%1:04:00:: 00753240 1 0 -double-dealing%5:00:00:dishonest:00 01223271 1 0 -double-decker%1:06:00:: 02924116 1 0 -double-dyed%5:00:00:unmitigated:00 01520091 1 0 -double-edged%5:00:00:ambiguous:00 00102786 1 0 -double-entry_bookkeeping%1:04:00:: 00619578 1 0 -double-faced%5:00:00:dishonest:00 01223271 2 0 -double-faced%5:00:00:reversible:02 01759876 1 0 -double-geared%5:00:00:geared:00 01100595 1 0 -double-geared%5:00:02:geared:00 01100394 2 0 -double-glaze%2:40:00:: 02335527 1 1 -double-humped%3:01:00:: 02819475 1 0 -double-hung_window%1:06:00:: 03227184 1 0 -double-jointed%5:00:00:flexible:01 01022657 1 0 -double-magnum%1:06:00:: 03595409 1 0 -double-park%2:38:00:: 01934976 1 0 -double-prop%1:06:00:: 03227505 1 0 -double-propeller_plane%1:06:00:: 03227505 1 0 -double-quick%5:00:00:fast:01 00977606 1 0 -double-reed_instrument%1:06:00:: 03228016 1 0 -double-space%2:32:00:: 01005548 1 0 -double-spaced%5:00:00:spaced:00 01655972 1 0 -double-spacing%1:10:00:: 06402770 1 0 -double-team%2:33:00:: 01148460 1 0 -double-tongued%5:00:00:dishonest:00 01223271 1 0 -double-u%1:10:00:: 06833544 1 0 -double_agent%1:18:01:: 10027476 1 0 -double_back%2:38:00:: 02004528 1 0 -double_bar%1:10:00:: 06864900 1 0 -double_bass%1:06:00:: 02803934 1 3 -double_bassoon%1:06:00:: 03096439 1 0 -double_bed%1:06:00:: 03225988 1 0 -double_bind%1:09:00:: 05686272 1 0 -double_birdie%2:35:00:: 01598637 1 0 -double_blind%1:04:00:: 00793844 1 0 -double_bogey%2:35:00:: 01598785 1 1 -double_boiler%1:06:00:: 03226254 1 0 -double_bond%1:19:00:: 11437823 1 0 -double_check%1:09:00:: 05738894 1 0 -double_chin%1:08:00:: 05599769 1 0 -double_clinch%1:06:00:: 03226660 1 0 -double_cream%1:13:00:: 07851443 1 0 -double_creme%1:13:00:: 07847585 1 0 -double_crochet%1:06:00:: 03226743 1 0 -double_crochet%2:36:00:: 01673137 1 0 -double_cross%1:04:00:: 00749991 1 0 -double_cross%2:41:00:: 02537812 1 1 -double_dagger%1:10:00:: 06828662 1 0 -double_damages%1:21:00:: 13292104 1 0 -double_date%1:14:00:: 08385602 1 0 -double_decomposition%1:22:00:: 13469066 1 0 -double_decomposition_reaction%1:22:00:: 13469066 1 0 -double_digit%1:23:00:: 13746419 1 0 -double_dipper%1:18:00:: 10027798 1 0 -double_dipping%1:21:00:: 13255713 1 0 -double_door%1:06:00:: 03226880 1 0 -double_dribble%1:04:00:: 00478855 1 0 -double_dutch%1:04:00:: 00485815 2 0 -double_dutch%1:10:00:: 06610436 1 0 -double_dye%2:30:00:: 00288314 1 0 -double_eagle%1:21:00:: 13392357 2 0 -double_eagle%1:23:00:: 13596106 1 0 -double_entendre%1:10:00:: 06605780 1 2 -double_entry%1:04:00:: 00619578 1 0 -double_fault%1:04:00:: 00071546 1 0 -double_feature%1:04:00:: 00460951 1 0 -double_first%1:10:00:: 06700325 1 0 -double_flat%1:10:00:: 06867057 1 0 -double_glazing%1:06:00:: 03227010 1 0 -double_gloucester%1:13:00:: 07853345 1 0 -double_gold%1:20:00:: 12009047 1 0 -double_helix%1:25:00:: 13876753 1 0 -double_indemnity%1:10:00:: 06393620 1 0 -double_jeopardy%1:04:00:: 01198068 1 0 -double_knit%1:06:00:: 03227317 1 0 -double_leg_circle%1:04:00:: 00435182 1 0 -double_negative%1:10:00:: 07205308 2 0 -double_negative%1:10:01:: 07205439 1 0 -double_obelisk%1:10:00:: 06828662 1 0 -double_over%2:38:00:: 02063309 1 1 -double_play%1:04:00:: 00564373 1 1 -double_pneumonia%1:26:00:: 14148411 1 0 -double_quick%4:02:00:: 00321993 1 0 -double_quotes%1:10:00:: 06844509 1 0 -double_reed%1:06:00:: 03227856 2 0 -double_reed%1:06:01:: 03228016 1 0 -double_refraction%1:19:00:: 11503482 1 0 -double_replacement_reaction%1:22:00:: 13469317 1 0 -double_reverse%1:04:00:: 00560141 1 0 -double_rhyme%1:10:00:: 07097707 1 0 -double_salt%1:27:00:: 15011987 1 0 -double_saucepan%1:06:00:: 03226254 1 0 -double_sharp%1:10:00:: 06866757 1 0 -double_standard%1:10:00:: 06669513 1 1 -double_standard_of_sexual_behavior%1:10:00:: 06669673 1 0 -double_star%1:17:00:: 09221070 1 0 -double_stitch%1:06:00:: 03226743 1 0 -double_stitch%2:36:00:: 01673137 1 0 -double_stopping%1:04:00:: 00102039 1 0 -double_take%1:04:00:: 00863417 1 0 -double_talk%1:10:00:: 06610897 1 0 -double_time%1:21:00:: 13279913 2 0 -double_time%1:28:00:: 15283327 1 0 -double_time%4:02:00:: 00321993 1 0 -double_tongue%2:36:00:: 01734131 1 0 -double_up%2:33:00:: 01139623 3 0 -double_up%2:38:00:: 02063309 1 1 -double_up%2:40:00:: 02295717 2 0 -double_vision%1:26:00:: 14153285 1 0 -doubled%5:00:02:multiple:00 02217241 1 0 -doubleheader%1:04:00:: 00460951 1 1 -doubler%1:06:00:: 03227721 1 0 -doubles%1:04:00:: 00483508 2 0 -doubles%1:04:01:: 00483605 1 0 -doublespeak%1:10:00:: 06761482 1 0 -doublet%1:06:00:: 03228254 1 0 -doublethink%1:09:00:: 05726237 1 0 -doubleton%1:23:00:: 13743869 1 0 -doubletree%1:06:00:: 03228365 1 0 -doubling%1:04:01:: 00803394 2 0 -doubling%1:22:00:: 13469526 1 0 -doubloon%1:21:00:: 13392896 1 0 -doubly%4:02:00:: 00083393 1 1 -doubly%4:02:01:: 00083947 2 0 -doubly_transitive_verb%1:10:00:: 06331477 1 0 -doubly_transitive_verb_form%1:10:00:: 06331477 1 0 -doubt%1:07:00:: 04757522 2 4 -doubt%1:09:00:: 05698247 1 26 -doubt%2:31:00:: 00687295 1 16 -doubt%2:31:01:: 00687523 2 1 -doubter%1:18:00:: 10604634 1 0 -doubter%1:18:01:: 09779124 2 0 -doubtful%5:00:00:questionable:00 01916979 1 10 -doubtful%5:00:00:uncertain:02 00338013 2 2 -doubtful%5:00:00:unsettled:02 02130672 3 0 -doubtfully%4:02:00:: 00322112 1 0 -doubtfulness%1:07:00:: 04757522 2 0 -doubtfulness%1:09:00:: 05698247 1 0 -doubting%5:00:00:distrustful:00 02463847 1 0 -doubting_thomas%1:18:00:: 11338796 1 0 -doubting_thomas%1:18:01:: 10027953 2 0 -doubtless%4:02:00:: 00079107 1 8 -doubtlessly%4:02:00:: 00079107 1 0 -douche%1:04:00:: 00695717 2 0 -douche%1:06:00:: 03228533 1 0 -douche%2:29:00:: 00038199 1 0 -douche_bag%1:06:00:: 03228533 1 0 -dough%1:13:00:: 07860988 1 3 -dough%1:21:00:: 13385216 2 1 -doughboy%1:13:00:: 07638898 2 0 -doughboy%1:18:00:: 10205138 1 0 -doughnut%1:13:00:: 07639069 2 0 -doughnut%1:25:00:: 13875392 1 0 -doughnut-shaped%5:00:00:rounded:00 02044860 1 0 -doughy%5:00:00:heavy:01 01185417 1 0 -douglas%1:18:00:: 10941206 1 0 -douglas_elton_fairbanks%1:18:00:: 10965361 1 0 -douglas_fairbanks%1:18:00:: 10965361 1 0 -douglas_fairbanks_jr.%1:18:00:: 10965550 1 0 -douglas_fir%1:20:00:: 11628456 2 0 -douglas_fir%1:20:02:: 11628678 1 0 -douglas_hemlock%1:20:00:: 11628793 1 0 -douglas_macarthur%1:18:00:: 11146670 1 0 -douglas_moore%1:18:00:: 11190024 1 0 -douglas_pine%1:20:00:: 11628793 1 0 -douglas_spruce%1:20:00:: 11628793 1 0 -douglas_squirrel%1:05:00:: 02357585 1 0 -douglass%1:18:00:: 10941515 1 0 -doula%1:18:00:: 10241024 1 0 -dour%5:00:00:ill-natured:00 01137378 3 0 -dour%5:00:00:stubborn:00 02327569 1 0 -dour%5:00:01:unpleasant:00 01802932 2 0 -doura%1:20:00:: 12137791 1 0 -dourah%1:20:00:: 12137791 1 0 -dourly%4:02:00:: 00242321 1 1 -douroucouli%1:05:00:: 02492356 1 0 -douse%2:30:00:: 00216216 7 0 -douse%2:30:01:: 00421306 6 0 -douse%2:30:02:: 00436093 5 0 -douse%2:35:00:: 01577093 4 0 -douse%2:38:00:: 01976220 3 0 -douse%2:42:09:: 02649220 2 0 -douse%2:43:00:: 02760495 1 0 -dousing%1:04:00:: 00277569 1 0 -dove%1:05:00:: 01812337 1 2 -dove%1:10:00:: 06881494 5 0 -dove%1:13:00:: 07646403 4 0 -dove%1:17:00:: 09250551 3 0 -dove%1:18:00:: 10028123 2 0 -dove's_foot_geranium%1:20:00:: 12687044 1 0 -dovecote%1:06:00:: 03228692 1 0 -dovekie%1:05:00:: 02046171 1 0 -dover%1:15:00:: 09070233 1 0 -dover's_powder%1:06:00:: 03228796 1 0 -dovetail%1:06:00:: 03228967 1 0 -dovetail%2:42:00:: 02660290 1 1 -dovetail_joint%1:06:00:: 03228967 1 0 -dovetail_plane%1:06:00:: 03229115 1 0 -dovish%5:00:00:peaceful:00 01741953 1 0 -dovishness%1:09:00:: 06221485 1 0 -dovyalis%1:20:00:: 12378546 1 0 -dovyalis_caffra%1:20:00:: 12378753 1 0 -dovyalis_hebecarpa%1:20:00:: 12378963 1 0 -dow-jones_industrial_average%1:10:00:: 06640533 1 0 -dow_jones%1:10:00:: 06640533 1 0 -dowager%1:18:00:: 10028289 1 0 -dowager's_hump%1:26:00:: 14505469 1 0 -dowdily%4:02:00:: 00322255 1 0 -dowdiness%1:07:00:: 04816528 1 0 -dowding%1:18:00:: 10941714 1 0 -dowdy%1:13:00:: 07623363 2 0 -dowdy%1:18:00:: 10941714 1 0 -dowdy%5:00:00:styleless:00 00976339 1 0 -dowdy%5:00:00:unfashionable:00 00974519 2 0 -dowel%1:06:00:: 03229244 1 0 -dowel_pin%1:06:00:: 03229244 1 0 -doweling%1:04:00:: 00148762 1 1 -dower%1:21:00:: 13264203 2 0 -dower%1:21:01:: 13265425 1 0 -dower%2:40:00:: 02201268 1 0 -dowered%5:00:00:endowed:00 00671357 1 0 -dowerless%5:00:00:unendowed:00 00671593 1 0 -dowery%1:21:00:: 13265425 1 0 -dowitcher%1:05:00:: 02033041 1 0 -dowland%1:18:00:: 10941992 1 0 -down%1:04:00:: 00458286 2 1 -down%1:05:00:: 01896561 1 1 -down%1:08:00:: 05255692 5 0 -down%1:17:00:: 09269341 4 0 -down%1:18:00:: 10942144 3 0 -down%2:30:00:: 00474017 6 0 -down%2:33:00:: 01103336 3 1 -down%2:34:00:: 01202374 1 3 -down%2:34:01:: 01197014 2 1 -down%2:35:00:: 01239862 5 0 -down%2:38:00:: 01981279 4 0 -down%3:00:00:: 02491961 1 9 -down%4:02:00:: 00095320 1 98 -down%4:02:02:: 00095612 2 22 -down%4:02:03:: 00095841 3 2 -down%4:02:04:: 00095946 6 0 -down%4:02:05:: 00096089 5 0 -down%4:02:06:: 00096232 4 0 -down%5:00:00:dejected:00 00703615 9 0 -down%5:00:00:descending:00 02486248 2 2 -down%5:00:00:falling:00 02487414 3 1 -down%5:00:00:inoperative:00 00833737 8 0 -down%5:00:00:low:02 01212867 6 0 -down%5:00:00:lowered:00 01208492 7 0 -down%5:00:00:out:02 02061678 4 1 -down%5:00:00:perfect:00 01750617 5 1 -down's_syndrome%1:26:00:: 14159623 1 0 -down-and-out%1:18:00:: 10028402 1 0 -down-and-out%5:00:00:unsuccessful:00 02334436 1 0 -down-bow%1:04:00:: 00547960 1 0 -down-to-earth%5:00:00:realistic:00 01940472 1 0 -down_easter%1:18:00:: 09743487 1 0 -down_feather%1:05:00:: 01896561 1 0 -down_in_the_mouth%5:00:00:dejected:00 00703615 1 0 -down_pat%5:00:00:perfect:00 01750617 1 0 -down_payment%1:21:00:: 13349834 1 0 -down_quark%1:17:00:: 09269573 1 0 -down_syndrome%1:26:00:: 14159623 1 0 -down_the_stairs%4:02:00:: 00094396 1 4 -down_town%1:15:00:: 08543496 1 0 -downbeat%1:10:00:: 07086972 1 0 -downbound%5:00:00:down:00 02492565 1 0 -downcast%1:06:00:: 03229420 1 0 -downcast%5:00:00:dejected:00 00703615 2 0 -downcast%5:00:00:down:00 02492719 1 1 -downdraft%1:19:00:: 11522730 1 0 -downer%1:06:00:: 04166553 1 0 -downfall%1:11:00:: 07427728 3 0 -downfall%1:11:01:: 07318133 1 2 -downfall%1:19:00:: 11494638 2 0 -downfield%4:02:00:: 00097358 1 0 -downfield%5:00:00:down:00 02492812 1 0 -downgrade%1:07:00:: 05069085 1 0 -downgrade%2:31:00:: 00660730 1 4 -downhearted%5:00:00:dejected:00 00703615 1 0 -downheartedness%1:12:00:: 07537668 1 0 -downhill%1:11:00:: 07463872 2 0 -downhill%1:17:00:: 09269472 1 0 -downhill%4:02:00:: 00322423 2 0 -downhill%4:02:01:: 00322533 1 0 -downhill%5:00:00:descending:00 02485895 1 1 -downiness%1:07:00:: 04938838 1 0 -downing%1:18:00:: 10942279 1 0 -downing_street%1:14:00:: 08052330 2 0 -downing_street%1:15:00:: 08875972 1 0 -downlike%5:00:00:soft:01 01154030 1 0 -download%2:40:00:: 02233704 1 0 -downmarket%3:00:00:: 02488445 1 0 -downplay%2:30:00:: 00513492 2 0 -downplay%2:32:00:: 00841125 1 0 -downpour%1:19:00:: 11502102 1 2 -downright%4:02:00:: 00097522 1 3 -downright%5:00:00:complete:00 00520892 2 0 -downright%5:00:00:honest:00 01222722 1 0 -downrightness%1:07:00:: 04918498 1 0 -downriver%4:02:00:: 00097231 1 0 -downscale%5:00:00:downmarket:00 02488553 1 0 -downshift%1:04:00:: 00169047 2 0 -downshift%1:04:01:: 00169147 1 0 -downside%1:09:00:: 05852819 1 0 -downsize%2:30:00:: 00586682 3 0 -downsize%2:30:01:: 00586816 2 0 -downsize%2:41:00:: 02403773 1 0 -downsizing%1:04:00:: 00192910 1 0 -downslope%1:17:00:: 09265620 1 0 -downspin%1:04:00:: 00266560 1 0 -downstage%1:06:00:: 03229526 1 0 -downstage%3:00:00:: 02493867 1 0 -downstage%4:02:00:: 00264179 1 0 -downstair%3:00:00:: 02494092 1 0 -downstairs%3:00:00:: 02494092 1 0 -downstairs%4:02:00:: 00094396 1 6 -downstream%3:00:00:: 02494499 1 0 -downstream%4:02:00:: 00097231 1 1 -downstroke%1:10:00:: 06799485 1 0 -downswing%1:04:00:: 00571956 1 0 -downswing%1:04:01:: 00266401 2 0 -downtick%1:04:00:: 01110811 1 0 -downtime%1:28:00:: 15117621 1 0 -downtown%1:15:00:: 08539072 1 11 -downtown%3:00:00:: 02494716 1 13 -downtown%4:02:00:: 00187852 1 0 -downtrodden%5:00:00:unfortunate:00 01051718 1 0 -downturn%1:04:00:: 00266401 1 0 -downward%4:02:00:: 00095320 1 2 -downward%5:00:00:descending:00 02486248 1 3 -downward%5:00:00:down:00 02492981 2 1 -downward-arching%5:00:00:descending:00 02486425 1 0 -downward-sloping%5:00:00:descending:00 02485895 1 0 -downwardly%4:02:00:: 00095320 1 0 -downwards%4:02:00:: 00095320 1 0 -downwind%4:02:00:: 00094765 1 2 -downwind%4:02:01:: 00095063 2 0 -downwind%5:00:00:leeward:00 01400237 1 0 -downy%5:00:00:hairy:00 00213610 2 0 -downy%5:00:00:soft:01 01154030 1 0 -downy_ash%1:20:00:: 12305475 1 0 -downy_birch%1:20:00:: 12282737 1 0 -downy_brome%1:20:00:: 12111399 1 0 -downy_bromegrass%1:20:00:: 12111399 1 0 -downy_cheat%1:20:00:: 12111399 1 0 -downy_chess%1:20:00:: 12111399 1 0 -downy_ground_cherry%1:20:00:: 12910676 1 0 -downy_haw%1:20:00:: 12628356 1 0 -downy_manzanita%1:20:00:: 12232503 1 0 -downy_mildew%1:20:00:: 12980840 1 0 -downy_poplar%1:20:00:: 12733428 1 0 -downy_wood_mint%1:20:00:: 12842642 1 0 -downy_woodpecker%1:05:00:: 01839330 1 0 -downy_yellow_violet%1:20:00:: 12389727 1 0 -dowry%1:21:00:: 13265425 1 2 -dowse%1:09:00:: 05776679 1 0 -dowse%2:30:00:: 00216216 4 0 -dowse%2:30:01:: 00421306 3 0 -dowse%2:35:00:: 01315140 2 0 -dowse%2:42:09:: 02649220 1 0 -dowser%1:06:00:: 03216199 2 0 -dowser%1:18:00:: 10770891 1 0 -dowsing%1:09:00:: 05776679 1 0 -dowsing_rod%1:06:00:: 03216199 1 0 -doxastic_logic%1:09:00:: 06166394 1 0 -doxazosin%1:06:00:: 03229656 1 0 -doxepin%1:06:00:: 03229905 1 0 -doxepin_hydrochloride%1:06:00:: 03229905 1 0 -doxology%1:10:00:: 07036203 1 0 -doxorubicin%1:06:00:: 03230149 1 0 -doxy%1:18:00:: 09952393 1 0 -doxycycline%1:06:00:: 03230247 1 0 -doyen%1:18:01:: 09997068 1 0 -doyenne%1:18:00:: 10028541 1 0 -doyley%1:06:00:: 03219010 1 0 -doyly%1:06:00:: 03219010 1 0 -doze%1:04:00:: 00858849 1 0 -doze%2:29:00:: 00015303 1 4 -doze_off%2:29:00:: 00017282 1 0 -dozen%1:23:00:: 13746785 1 15 -dozen%5:00:00:cardinal:00 02187465 1 3 -dozens%1:23:00:: 13777509 1 3 -dozer%1:06:00:: 02916179 1 0 -dozy%5:00:00:asleep:00 00188436 1 0 -dp%1:18:00:: 10017890 1 0 -dph%1:10:00:: 06704366 1 0 -dphil%1:10:00:: 06704295 1 0 -dprk%1:15:00:: 08955082 1 0 -dpt_vaccine%1:06:00:: 03230446 1 0 -dr.%1:18:00:: 10020890 2 0 -dr.%1:18:01:: 10021892 1 0 -dr._j%1:18:00:: 10960772 1 0 -dr._johnson%1:18:00:: 11088622 1 0 -dr._seuss%1:18:00:: 10993636 1 0 -drab%1:07:00:: 04974463 1 0 -drab%5:00:00:chromatic:00 00378687 3 0 -drab%5:00:00:colorless:02 00405179 2 1 -drab%5:00:00:depressing:00 00364881 4 0 -drab%5:00:00:dull:03 00807399 1 2 -draba%1:20:00:: 11885856 1 0 -draba_verna%1:20:00:: 11886157 1 0 -drably%4:02:00:: 00322666 1 0 -drabness%1:07:00:: 04816528 1 0 -dracaena%1:20:00:: 12479537 1 0 -dracaena_draco%1:20:00:: 12479689 1 0 -dracaenaceae%1:20:00:: 12479066 1 0 -dracenaceae%1:20:00:: 12479066 1 0 -drachm%1:23:00:: 13722340 1 0 -drachm%1:23:01:: 13618629 3 0 -drachm%1:23:02:: 13621190 2 0 -drachma%1:23:00:: 13675218 2 0 -drachma%1:23:02:: 13722340 1 0 -draco%1:05:00:: 01688428 3 0 -draco%1:17:00:: 09269717 2 0 -draco%1:18:00:: 10942675 1 0 -dracocephalum%1:20:00:: 12846143 1 0 -dracocephalum_parviflorum%1:20:00:: 12846335 1 0 -draconian%3:01:00:: 03031102 1 0 -dracontium%1:20:00:: 11788039 1 0 -dracula%1:18:00:: 09592272 2 0 -dracula%1:20:00:: 12059851 1 0 -dracunculiasis%1:26:00:: 14176051 1 0 -dracunculidae%1:05:00:: 01933686 1 0 -dracunculus%1:05:00:: 01933834 2 0 -dracunculus%1:20:00:: 11788223 1 0 -dracunculus_medinensis%1:05:00:: 01933988 1 0 -dracunculus_vulgaris%1:20:00:: 11788382 1 0 -draft%1:04:00:: 00115667 11 0 -draft%1:04:02:: 00840189 10 0 -draft%1:04:03:: 01157850 9 0 -draft%1:06:00:: 03230670 8 0 -draft%1:06:01:: 03230785 3 1 -draft%1:06:02:: 03230914 7 0 -draft%1:07:00:: 05135155 6 0 -draft%1:10:00:: 06390962 5 0 -draft%1:13:00:: 07883980 4 0 -draft%1:19:00:: 11522448 2 1 -draft%1:21:00:: 13377268 1 1 -draft%2:33:00:: 01097500 2 2 -draft%2:36:00:: 01701634 1 4 -draft%2:36:05:: 01683582 3 0 -draft_animal%1:05:00:: 01317294 1 0 -draft_beer%1:13:00:: 07887099 1 0 -draft_board%1:14:00:: 08383067 1 0 -draft_copy%1:10:00:: 06390962 1 0 -draft_dodger%1:18:00:: 10028638 1 0 -draft_evader%1:18:00:: 10028638 1 0 -draft_horse%1:05:00:: 02386496 1 0 -draftee%1:18:00:: 10028765 1 0 -drafter%1:18:00:: 10028977 1 0 -drafting%1:04:00:: 00935940 3 0 -drafting%1:04:01:: 00930736 1 1 -drafting%1:04:02:: 00608037 2 1 -drafting_board%1:06:00:: 03231024 1 1 -drafting_instrument%1:06:00:: 03231160 1 0 -drafting_table%1:06:00:: 03231368 1 0 -draftsman%1:18:00:: 10029269 1 0 -draftsman%1:18:01:: 10029068 2 0 -draftsmanship%1:04:00:: 00935940 1 0 -draftsperson%1:18:00:: 10029269 1 0 -drafty%5:00:00:leaky:00 01397674 1 1 -drag%1:04:00:: 00114871 6 0 -drag%1:04:02:: 00837675 5 0 -drag%1:06:00:: 03231476 4 0 -drag%1:07:00:: 05206445 3 0 -drag%1:09:00:: 05690091 2 0 -drag%1:19:00:: 11504898 1 1 -drag%2:30:03:: 00341757 11 0 -drag%2:32:00:: 00783689 10 0 -drag%2:34:00:: 01199009 6 1 -drag%2:35:00:: 01453433 1 16 -drag%2:35:01:: 01454810 2 13 -drag%2:35:02:: 01244692 9 0 -drag%2:38:00:: 02058756 5 1 -drag%2:38:02:: 01917845 8 0 -drag%2:38:06:: 02099544 4 1 -drag%2:38:10:: 02101789 7 0 -drag%2:42:00:: 02677797 3 1 -drag_a_bunt%2:35:00:: 01408297 1 1 -drag_coefficient%1:23:00:: 13586831 1 0 -drag_down%2:35:00:: 01597096 1 0 -drag_in%2:42:00:: 02677797 1 0 -drag_on%2:30:00:: 00341757 2 0 -drag_on%2:42:00:: 02705428 1 0 -drag_one's_feet%2:42:00:: 02642238 1 2 -drag_one's_heels%2:42:00:: 02642238 1 0 -drag_out%2:30:00:: 00341757 2 0 -drag_out%2:42:00:: 02705428 1 1 -drag_through_the_mud%2:32:00:: 00848169 1 1 -drag_up%2:32:00:: 01025785 1 0 -dragee%1:06:00:: 03231723 3 0 -dragee%1:13:01:: 07605198 2 0 -dragee%1:13:02:: 07605282 1 0 -dragger%1:06:00:: 04476116 2 0 -dragger%1:18:00:: 10492202 1 0 -dragging%5:00:00:effortful:00 00837084 1 1 -draggingly%4:02:00:: 00513319 1 0 -draggle%2:30:00:: 00216692 1 0 -draggled%5:00:00:dirty:01 00420287 1 0 -dragnet%1:06:00:: 04475749 2 0 -dragnet%1:14:00:: 08433861 1 0 -dragoman%1:18:00:: 10029429 1 0 -dragon%1:05:02:: 01688589 4 0 -dragon%1:17:00:: 09269717 3 0 -dragon%1:18:01:: 10029729 2 0 -dragon%1:18:02:: 09494388 1 6 -dragon's_blood%1:27:00:: 14838677 1 0 -dragon's_eye%1:13:00:: 07766409 1 0 -dragon's_head%1:20:00:: 12846335 1 0 -dragon's_mouth%1:20:00:: 12046028 1 0 -dragon_arum%1:20:00:: 11788382 1 0 -dragon_lizard%1:05:00:: 01695060 1 0 -dragon_tree%1:20:00:: 12479689 1 0 -dragonet%1:05:00:: 02618827 1 0 -dragonfly%1:05:00:: 02268443 1 0 -dragonhead%1:20:00:: 12846335 1 0 -dragoon%1:18:00:: 10029831 1 0 -dragoon%2:41:00:: 02506181 1 0 -dragoon%2:41:01:: 02424533 2 0 -dragunov%1:06:00:: 03231819 1 0 -drain%1:04:00:: 00396029 1 1 -drain%1:04:01:: 01062255 4 0 -drain%1:06:00:: 03231912 3 0 -drain%1:06:01:: 03232158 2 0 -drain%2:30:01:: 00451648 3 1 -drain%2:30:04:: 00389638 4 0 -drain%2:34:00:: 01158022 2 1 -drain%2:38:00:: 02071457 1 2 -drain_basket%1:06:00:: 03232543 1 0 -drain_the_cup%2:34:00:: 01175937 1 0 -drainage%1:04:00:: 00396029 1 3 -drainage_area%1:15:00:: 08518940 1 0 -drainage_basin%1:15:01:: 08518940 1 0 -drainage_ditch%1:06:00:: 03232309 1 2 -drainage_system%1:06:00:: 03232417 1 0 -drainboard%1:06:00:: 03232676 1 0 -drained%3:00:00:: 01088478 1 0 -drained%5:00:00:tired:00 02434115 2 0 -drained%5:00:00:uncharged:00 00359260 3 0 -draining%5:00:00:debilitating:00 01358231 1 0 -draining_board%1:06:00:: 03232676 1 0 -drainpipe%1:06:00:: 03231912 1 0 -drainplug%1:06:00:: 03232815 1 0 -drake%1:05:00:: 01847000 2 0 -drake%1:18:00:: 10942866 1 0 -dram%1:23:00:: 13699442 3 0 -dram%1:23:01:: 13719808 2 0 -dram%1:23:02:: 13722340 1 0 -drama%1:07:00:: 04626705 4 1 -drama%1:10:00:: 06376154 3 2 -drama%1:10:01:: 07007945 1 12 -drama%1:11:00:: 07290278 2 7 -drama_critic%1:18:00:: 10030147 1 0 -dramamine%1:06:00:: 03198951 1 0 -dramatic%3:00:00:: 00794825 1 13 -dramatic%3:00:02:: 01469161 4 0 -dramatic%3:01:00:: 02714800 3 0 -dramatic%5:00:00:impressive:00 01284212 2 5 -dramatic_art%1:10:00:: 07006119 1 0 -dramatic_composition%1:10:00:: 07007684 1 0 -dramatic_event%1:11:00:: 07290278 1 0 -dramatic_irony%1:10:00:: 07102593 1 0 -dramatic_performance%1:04:00:: 00099267 1 0 -dramatic_play%1:10:00:: 07007945 1 0 -dramatic_production%1:04:00:: 00099267 1 0 -dramatic_work%1:10:00:: 07007684 1 0 -dramatically%4:02:00:: 00138945 2 2 -dramatically%4:02:01:: 00188353 3 1 -dramatically%4:02:02:: 00246802 1 4 -dramatics%1:04:00:: 00886456 1 1 -dramatics%1:10:00:: 07006119 2 0 -dramatis_personae%1:14:00:: 08237863 1 0 -dramatisation%1:04:00:: 00899292 2 0 -dramatisation%1:04:01:: 00930868 1 0 -dramatise%2:32:00:: 00956405 3 0 -dramatise%2:32:01:: 00988287 2 0 -dramatise%2:36:00:: 01701311 1 0 -dramatist%1:18:00:: 10030277 1 2 -dramatization%1:04:00:: 00899292 2 0 -dramatization%1:04:01:: 00930868 1 0 -dramatize%2:32:00:: 00956405 3 1 -dramatize%2:32:01:: 00988287 2 1 -dramatize%2:36:00:: 01701311 1 1 -dramaturgic%3:01:00:: 03005423 1 0 -dramaturgical%3:01:00:: 03005423 1 0 -dramaturgy%1:10:00:: 07006119 1 0 -drambuie%1:13:00:: 07909593 1 0 -drape%1:06:00:: 03151077 1 1 -drape%1:06:01:: 03232923 3 0 -drape%1:07:00:: 04930139 2 0 -drape%2:35:00:: 01542525 1 3 -drape%2:35:01:: 01543000 2 1 -drape%2:35:02:: 01617034 3 0 -drape%2:35:10:: 01612487 4 0 -draped%5:00:00:covered:00 01695505 1 3 -draped%5:00:00:curtained:00 00671976 2 0 -draper%1:18:00:: 10032190 1 1 -drapery%1:06:00:: 03151077 1 4 -drapery%1:06:01:: 03233123 2 0 -drastic%5:00:00:forceful:00 00841934 1 1 -drastically%4:02:02:: 00056652 1 3 -draught%1:04:00:: 00115667 6 0 -draught%1:04:01:: 00840189 2 1 -draught%1:06:00:: 03230670 5 0 -draught%1:07:00:: 05135155 4 0 -draught%1:13:00:: 07883980 1 2 -draught%1:19:00:: 11522448 3 0 -draught%2:36:00:: 01683582 1 0 -draught_beer%1:13:00:: 07887099 1 0 -draught_horse%1:05:00:: 02386496 1 0 -draughts%1:04:00:: 00502952 1 0 -draughtsman%1:18:00:: 10029269 1 0 -draughty%5:00:00:leaky:00 01397674 1 1 -dravidian%1:10:00:: 06979014 2 0 -dravidian%1:18:00:: 09673916 1 0 -dravidian_language%1:10:00:: 06979014 1 0 -dravidic%1:10:00:: 06979014 1 0 -draw%1:04:00:: 00115036 9 0 -draw%1:04:01:: 00497536 8 0 -draw%1:04:02:: 00559329 7 0 -draw%1:04:03:: 00572285 6 0 -draw%1:06:00:: 03233246 5 0 -draw%1:06:01:: 03233423 4 0 -draw%1:11:00:: 07353716 3 0 -draw%1:17:00:: 09269882 1 5 -draw%1:18:00:: 10032676 2 0 -draw%2:29:00:: 00097029 36 0 -draw%2:30:00:: 00476965 31 0 -draw%2:30:04:: 00143338 35 0 -draw%2:30:05:: 00197590 34 0 -draw%2:30:08:: 00430808 32 0 -draw%2:30:14:: 00556593 16 2 -draw%2:30:15:: 00327982 33 0 -draw%2:31:00:: 00730758 4 10 -draw%2:31:13:: 00675901 9 6 -draw%2:32:00:: 00987071 8 6 -draw%2:33:00:: 01115190 30 0 -draw%2:33:01:: 01078050 14 3 -draw%2:34:01:: 01199009 11 5 -draw%2:35:01:: 01582645 3 10 -draw%2:35:02:: 01243148 20 1 -draw%2:35:03:: 01448100 1 13 -draw%2:35:04:: 01539063 25 0 -draw%2:35:06:: 01505254 26 0 -draw%2:35:09:: 01243298 28 0 -draw%2:35:13:: 01212230 29 0 -draw%2:35:14:: 01359432 27 0 -draw%2:36:00:: 01690294 6 7 -draw%2:36:01:: 01643297 15 2 -draw%2:36:02:: 01643464 19 1 -draw%2:36:07:: 01690816 18 1 -draw%2:37:01:: 01760300 10 5 -draw%2:38:00:: 01854132 7 6 -draw%2:38:01:: 01995211 5 9 -draw%2:38:02:: 02088107 12 4 -draw%2:38:07:: 02097800 17 1 -draw%2:38:11:: 02103162 24 0 -draw%2:40:00:: 02293148 2 10 -draw%2:40:01:: 02311387 13 3 -draw%2:41:13:: 02483564 23 0 -draw%2:42:00:: 02742107 21 0 -draw%2:42:02:: 02628832 22 0 -draw_a_bead_on%2:31:00:: 00705517 2 0 -draw_a_bead_on%2:33:00:: 01151627 1 0 -draw_a_blank%2:31:00:: 00609100 1 0 -draw_a_line%2:30:00:: 00234536 1 0 -draw_and_quarter%2:41:00:: 02483564 1 0 -draw_away%2:35:01:: 01592774 2 0 -draw_away%2:38:00:: 01999688 1 0 -draw_back%2:35:04:: 01609773 2 0 -draw_back%2:38:00:: 01994442 1 8 -draw_close%2:35:00:: 01424948 1 1 -draw_close%2:35:02:: 01609953 3 0 -draw_close%2:38:00:: 02053941 2 0 -draw_in%2:35:00:: 01505254 2 1 -draw_in%2:35:01:: 01282142 6 0 -draw_in%2:35:03:: 01506583 1 1 -draw_in%2:38:00:: 02015384 5 0 -draw_in%2:38:01:: 02054703 4 0 -draw_in%2:38:03:: 02098458 3 0 -draw_near%2:38:00:: 02053941 1 3 -draw_off%2:35:00:: 01592774 1 1 -draw_off%2:40:04:: 02311387 2 0 -draw_out%2:30:00:: 00317888 2 1 -draw_out%2:32:00:: 00744776 1 1 -draw_out%2:35:00:: 01540693 5 0 -draw_out%2:35:05:: 01351170 6 0 -draw_out%2:36:00:: 01630532 4 0 -draw_out%2:37:00:: 01818538 3 0 -draw_play%1:04:00:: 00559329 1 0 -draw_poker%1:04:00:: 00497536 1 0 -draw_rein%2:41:00:: 02442737 1 1 -draw_the_line%2:30:00:: 00234536 1 1 -draw_together%2:35:00:: 01607072 1 2 -draw_up%2:31:00:: 00706804 4 1 -draw_up%2:38:00:: 01863158 5 0 -draw_up%2:38:01:: 01863410 3 1 -draw_up%2:38:02:: 01982686 2 2 -draw_up%2:41:00:: 02448734 1 2 -drawback%1:07:00:: 05164521 1 0 -drawbar%1:06:00:: 03233624 1 0 -drawbridge%1:06:00:: 03233744 1 0 -drawee%1:18:00:: 10032342 1 0 -drawer%1:06:00:: 03233905 1 5 -drawer%1:18:00:: 10029068 3 0 -drawer%1:18:01:: 10032524 2 0 -drawers%1:06:01:: 02854739 2 0 -drawers%1:06:02:: 03234164 1 0 -drawing%1:04:01:: 00935940 3 2 -drawing%1:04:02:: 00392093 5 0 -drawing%1:04:03:: 00508091 4 0 -drawing%1:04:04:: 00115667 6 0 -drawing%1:06:00:: 03234306 2 5 -drawing%1:10:00:: 07003119 1 7 -drawing-room_car%1:06:00:: 03891664 1 0 -drawing_board%1:06:00:: 03231024 1 1 -drawing_card%1:06:00:: 03234795 2 0 -drawing_card%1:18:00:: 10032676 1 0 -drawing_chalk%1:06:00:: 03234952 1 0 -drawing_ink%1:27:00:: 14917080 1 0 -drawing_lots%1:04:00:: 00180054 1 0 -drawing_off%1:04:00:: 00392093 1 0 -drawing_paper%1:27:00:: 14838821 1 1 -drawing_pin%1:06:00:: 04431745 1 0 -drawing_power%1:07:00:: 04689330 1 1 -drawing_room%1:06:00:: 03235042 1 3 -drawing_room%1:06:01:: 03235180 2 0 -drawing_string%1:06:00:: 03235560 1 0 -drawing_table%1:06:00:: 03231368 1 0 -drawknife%1:06:00:: 03235327 1 0 -drawl%1:10:00:: 07131741 1 1 -drawl%2:32:00:: 00980176 1 1 -drawler%1:18:00:: 10032884 1 0 -drawn%5:00:00:closed:01 01653992 2 1 -drawn%5:00:00:tired:00 02433000 1 2 -drawn-out%5:00:00:long:02 01439155 1 0 -drawn-out%5:00:00:slow:01 00981195 2 0 -drawn_butter%1:13:00:: 07848771 1 0 -drawnwork%1:06:00:: 03235433 1 0 -drawshave%1:06:00:: 03235327 1 0 -drawstring%1:06:00:: 03235560 1 0 -drawstring_bag%1:06:00:: 03235796 1 0 -dray%1:06:00:: 03235979 1 0 -dray_horse%1:05:00:: 02386496 1 0 -drayhorse%1:05:00:: 02386853 1 0 -dread%1:12:00:: 07521674 1 1 -dread%2:37:00:: 01780202 1 4 -dread%5:00:00:alarming:00 00193799 1 0 -dreaded%5:00:00:alarming:00 00193799 1 0 -dreadful%5:00:00:alarming:00 00193799 1 6 -dreadful%5:00:00:bad:00 01126291 2 1 -dreadful%5:00:00:unpleasant:00 01803247 3 0 -dreadfully%4:02:00:: 00056340 1 1 -dreadfully%4:02:01:: 00316486 2 0 -dreadfulness%1:07:00:: 04782116 1 0 -dreadlock%1:08:00:: 05258743 1 0 -dreadnaught%1:06:00:: 03236093 1 0 -dreadnought%1:06:00:: 03236093 1 0 -dream%1:09:01:: 05768553 1 31 -dream%1:09:02:: 05768806 2 7 -dream%1:09:03:: 05632732 4 2 -dream%1:09:04:: 05700925 5 1 -dream%1:12:00:: 07484547 3 4 -dream%1:26:00:: 14459715 6 0 -dream%2:36:00:: 01637633 1 15 -dream%2:39:00:: 02118242 2 11 -dream_up%2:36:00:: 01634142 1 3 -dreamed%5:00:00:unreal:00 01935139 1 1 -dreamer%1:18:00:: 10062996 3 0 -dreamer%1:18:01:: 10196965 2 0 -dreamer%1:18:02:: 10032987 1 1 -dreamfully%4:02:00:: 00322757 1 1 -dreamily%4:02:00:: 00322757 1 0 -dreaminess%1:12:00:: 07516222 1 0 -dreaming%1:09:00:: 05768553 2 0 -dreaming%1:09:02:: 05768806 1 0 -dreamland%1:09:00:: 05631304 1 0 -dreamless%5:00:00:untroubled:00 02459862 1 0 -dreamlike%5:00:00:unreal:02 01939226 1 1 -dreamworld%1:09:00:: 05631304 1 0 -dreamy%5:00:00:inattentive:00 00165585 1 2 -dreamy%5:00:00:lethargic:00 00876204 2 0 -drear%5:00:00:depressing:00 00364881 1 0 -drearily%4:02:00:: 00316734 1 2 -dreariness%1:07:00:: 05206006 1 0 -dreary%5:00:00:depressing:00 00364881 2 0 -dreary%5:00:00:dull:03 00807399 1 1 -dreck%1:06:00:: 04145735 1 0 -dred_scott%1:18:00:: 11288930 1 0 -dredge%1:06:00:: 03236217 1 0 -dredge%2:35:00:: 01244516 3 0 -dredge%2:35:01:: 01244692 2 0 -dredge%2:35:03:: 01261773 1 0 -dredge_up%2:32:00:: 01025785 1 0 -dredger%1:06:00:: 03236423 1 0 -dredging_bucket%1:06:00:: 03236580 1 0 -dreg%1:23:00:: 13772971 1 0 -dregs%1:17:00:: 09269972 1 4 -dreiser%1:18:00:: 10943115 1 0 -dreissena%1:05:00:: 01965404 1 0 -dreissena_polymorpha%1:05:00:: 01965529 1 0 -drench%2:30:00:: 00216216 4 0 -drench%2:30:01:: 00498163 3 0 -drench%2:34:00:: 01169589 2 0 -drench%2:43:00:: 02771564 1 0 -drenched%5:00:00:covered:00 01696165 1 1 -drenched_in%5:00:00:covered:00 01696165 1 0 -drenching%1:04:00:: 00277811 1 0 -drepanididae%1:05:00:: 01544544 1 0 -drepanis%1:05:00:: 01544877 1 0 -drepanocytic_anaemia%1:26:00:: 14168792 1 0 -drepanocytic_anemia%1:26:00:: 14168792 1 0 -dresden%1:15:00:: 08770932 1 0 -dress%1:06:00:: 03236735 1 15 -dress%1:06:01:: 02756098 2 4 -dress%1:06:02:: 02728440 3 0 -dress%2:29:00:: 00046534 1 15 -dress%2:29:01:: 00047945 2 8 -dress%2:29:02:: 00082714 14 0 -dress%2:29:04:: 00038849 16 0 -dress%2:29:05:: 00043683 5 2 -dress%2:29:06:: 00045639 15 0 -dress%2:29:07:: 00044797 4 2 -dress%2:30:00:: 00542809 6 1 -dress%2:30:08:: 00511636 13 0 -dress%2:35:00:: 01364184 10 0 -dress%2:35:02:: 01266269 3 2 -dress%2:35:03:: 01321002 11 0 -dress%2:35:04:: 01466543 9 0 -dress%2:35:12:: 01262813 12 0 -dress%2:36:00:: 01679433 8 0 -dress%2:38:07:: 02036650 7 0 -dress%5:00:01:formal:01 01042921 2 0 -dress%5:00:02:formal:01 01043226 1 0 -dress_blues%1:06:00:: 03237212 1 0 -dress_circle%1:06:00:: 03033019 1 0 -dress_code%1:10:00:: 06668611 1 0 -dress_down%2:29:00:: 00045346 2 0 -dress_down%2:32:00:: 00824767 1 0 -dress_hanger%1:06:00:: 03057920 1 0 -dress_hat%1:06:00:: 03237416 1 0 -dress_out%2:30:00:: 00542809 1 0 -dress_rack%1:06:00:: 03238762 1 0 -dress_rehearsal%1:04:00:: 00897365 1 0 -dress_ship%2:36:00:: 01679339 1 0 -dress_shirt%1:06:00:: 03238879 1 0 -dress_shop%1:06:00:: 02879309 1 2 -dress_suit%1:06:00:: 03239054 1 0 -dress_uniform%1:06:00:: 03239259 1 0 -dress_up%2:29:00:: 00044149 1 5 -dress_up%2:29:04:: 00051761 4 0 -dress_up%2:29:06:: 00044797 5 0 -dress_up%2:30:00:: 00293528 2 1 -dress_up%2:36:00:: 01670315 3 0 -dress_whites%1:06:00:: 03237212 1 0 -dressage%1:04:00:: 00288000 1 0 -dressed%5:00:00:clothed:00 00454440 1 9 -dressed%5:00:00:finished:02 01005306 3 0 -dressed%5:00:00:treated:02 01955796 2 0 -dressed%5:00:02:clothed:00 00455824 4 0 -dressed-up%5:00:00:clothed:00 00455824 1 0 -dressed_ore%1:27:00:: 14837506 1 0 -dressed_to_kill%5:00:00:clothed:00 00455824 1 0 -dressed_to_the_nines%5:00:00:clothed:00 00455824 1 0 -dresser%1:06:00:: 03015254 1 1 -dresser%1:06:01:: 03237340 5 0 -dresser%1:06:02:: 03238586 4 0 -dresser%1:18:00:: 10033082 3 0 -dresser%1:18:01:: 10033225 2 0 -dressing%1:04:00:: 00828237 6 0 -dressing%1:04:01:: 00696882 7 0 -dressing%1:04:02:: 00828862 5 0 -dressing%1:06:00:: 03237639 4 0 -dressing%1:11:00:: 07434473 3 0 -dressing%1:13:01:: 07832902 1 0 -dressing%1:13:02:: 07678729 2 0 -dressing_case%1:06:00:: 03237839 1 0 -dressing_down%1:10:00:: 06713187 1 0 -dressing_gown%1:06:00:: 03237992 1 3 -dressing_room%1:06:00:: 03238131 1 7 -dressing_sack%1:06:00:: 03238286 1 0 -dressing_sacque%1:06:00:: 03238286 1 0 -dressing_station%1:06:00:: 03238407 1 0 -dressing_table%1:06:00:: 03238586 1 0 -dressmaker%1:18:00:: 10033412 1 0 -dressmaker's_model%1:18:00:: 10033572 1 0 -dressmaking%1:04:00:: 00608162 1 0 -dressy%5:00:00:fancy:00 01795353 1 2 -drew%1:18:00:: 10943256 1 0 -drey%1:17:00:: 09270160 1 0 -dreyfus%1:18:00:: 10943405 1 0 -drib%1:23:00:: 13771404 1 0 -dribble%1:04:00:: 00478647 3 0 -dribble%1:08:00:: 05416678 2 0 -dribble%1:11:00:: 07432559 1 0 -dribble%2:29:00:: 00102974 4 0 -dribble%2:35:00:: 01408760 3 0 -dribble%2:35:10:: 01611516 2 0 -dribble%2:38:00:: 02070874 1 2 -dribbler%1:18:00:: 10033663 2 0 -dribbler%1:18:01:: 10033888 1 0 -dribbling%1:04:00:: 00478647 1 0 -driblet%1:23:00:: 13771404 1 0 -dried%5:00:00:dry:01 02553017 1 3 -dried%5:00:00:preserved:02 01072382 2 1 -dried-out%5:00:00:dry:01 02552849 1 1 -dried-up%5:00:01:dry:01 02553137 2 0 -dried-up%5:00:02:dry:01 02553234 1 0 -dried_apricot%1:13:00:: 07752514 1 0 -dried_fruit%1:13:00:: 07752377 1 0 -dried_milk%1:13:00:: 07846143 1 0 -drier%1:06:00:: 03251766 2 0 -drier%1:27:00:: 14779796 1 0 -drift%1:06:00:: 03239399 7 0 -drift%1:09:00:: 05922651 6 0 -drift%1:09:02:: 06197664 5 0 -drift%1:17:00:: 09270233 4 0 -drift%1:19:00:: 11447851 1 3 -drift%1:22:01:: 13469674 2 1 -drift%1:22:02:: 13469893 3 0 -drift%2:30:00:: 00571390 10 0 -drift%2:30:10:: 00572502 9 0 -drift%2:35:03:: 01576779 8 0 -drift%2:38:01:: 01881180 3 3 -drift%2:38:02:: 01902783 1 6 -drift%2:38:04:: 01925694 2 3 -drift%2:38:05:: 01903218 6 0 -drift%2:38:06:: 01874875 7 0 -drift%2:42:00:: 02617338 5 0 -drift%2:42:03:: 02662821 4 0 -drift_apart%2:37:00:: 01824050 1 0 -drift_away%2:37:03:: 01824050 1 0 -drift_ice%1:17:00:: 09270414 1 0 -drift_net%1:06:00:: 03239607 1 0 -drift_off%2:29:00:: 00017282 1 0 -driftage%1:11:00:: 07366799 1 0 -drifter%1:18:00:: 10744544 1 0 -driftfish%1:05:01:: 02634285 2 0 -driftfish%1:05:02:: 02634545 1 0 -drifting%1:04:00:: 00297404 1 0 -drifting%5:00:00:unsettled:01 02127159 1 0 -driftwood%1:27:00:: 14837678 1 0 -drill%1:04:00:: 00894552 3 0 -drill%1:04:01:: 00894359 4 0 -drill%1:05:00:: 02487079 2 0 -drill%1:06:00:: 03239726 1 0 -drill%2:31:00:: 00606093 3 1 -drill%2:31:01:: 00606335 4 0 -drill%2:31:03:: 00603981 2 5 -drill%2:31:04:: 00604094 5 0 -drill%2:35:00:: 01443021 1 21 -drill-like%5:00:00:sharp:00 00801616 1 0 -drill_bit%1:06:00:: 03240327 1 0 -drill_hole%1:06:00:: 02875233 1 0 -drill_in%2:31:00:: 00606471 1 0 -drill_instructor%1:18:00:: 10034020 1 0 -drill_master%1:18:00:: 10034020 1 0 -drill_press%1:06:00:: 03240892 1 0 -drill_rig%1:06:00:: 03241093 1 0 -drill_rod%1:27:00:: 14837786 1 0 -drill_site%1:06:00:: 03241236 1 0 -drill_steel%1:27:00:: 14837786 1 0 -drilled%5:00:00:trained:00 01912145 1 1 -drilling%1:04:00:: 00923130 2 0 -drilling%1:04:01:: 00942799 1 0 -drilling_bit%1:06:00:: 03240327 1 0 -drilling_fluid%1:27:00:: 14838951 1 0 -drilling_mud%1:27:00:: 14838951 1 0 -drilling_pipe%1:06:00:: 03240482 1 0 -drilling_platform%1:06:00:: 03240683 1 0 -drilling_rig%1:06:00:: 03241093 1 0 -drily%4:02:00:: 00231457 1 0 -drimys%1:20:00:: 11739809 1 0 -drimys_winteri%1:20:00:: 11739978 1 0 -drink%1:04:00:: 00748515 2 4 -drink%1:04:01:: 00839778 5 0 -drink%1:13:00:: 07881800 3 3 -drink%1:13:04:: 07885223 1 20 -drink%1:17:00:: 09270508 4 0 -drink%2:31:00:: 00737005 4 1 -drink%2:34:00:: 01170052 1 30 -drink%2:34:01:: 01171183 2 10 -drink%2:34:02:: 01172275 5 0 -drink%2:34:12:: 01175467 3 1 -drink_down%2:34:00:: 01202374 1 0 -drink_in%2:31:00:: 00737005 1 0 -drink_up%2:34:00:: 01175937 1 1 -drinkable%1:13:00:: 07881800 1 0 -drinkable%3:00:00:: 00797113 1 0 -drinker%1:18:00:: 10034201 2 0 -drinker%1:18:01:: 10034614 1 1 -drinking%1:04:00:: 00843128 1 10 -drinking%1:04:01:: 00748515 2 6 -drinking_age%1:28:00:: 15152531 1 0 -drinking_bout%1:04:00:: 00748834 1 0 -drinking_chocolate%1:13:00:: 07922764 1 0 -drinking_fountain%1:06:00:: 03241335 1 0 -drinking_glass%1:06:00:: 03438257 1 0 -drinking_song%1:10:00:: 07050827 1 0 -drinking_straw%1:06:00:: 04334232 1 0 -drinking_vessel%1:06:00:: 03241496 1 0 -drinking_water%1:13:00:: 07936263 1 1 -drip%1:06:00:: 03241660 3 0 -drip%1:11:00:: 07432559 1 0 -drip%1:11:01:: 07383323 2 0 -drip%2:35:10:: 01611516 2 0 -drip%2:38:00:: 02071142 1 11 -drip-dry%2:30:00:: 00219316 1 0 -drip-dry%5:00:00:unironed:00 01360085 2 0 -drip-dry%5:00:00:washable:00 02534042 1 0 -drip_coffee%1:13:00:: 07919894 1 0 -drip_culture%1:04:00:: 00919201 1 0 -drip_feed%1:04:00:: 00695160 1 0 -drip_loop%1:06:00:: 03241903 1 0 -drip_mat%1:06:00:: 03242120 1 0 -drip_mold%1:06:00:: 03241660 1 0 -drip_mould%1:06:00:: 03241660 1 0 -drip_pan%1:06:00:: 03242264 2 0 -drip_pan%1:06:01:: 03242390 1 0 -drip_pot%1:06:00:: 03242506 1 0 -dripless%5:00:00:tight:02 01398648 1 0 -drippage%1:11:00:: 07407459 1 0 -drippily%4:02:00:: 00396200 1 0 -drippiness%1:07:00:: 05010506 1 0 -drippiness%1:07:01:: 04627506 2 0 -dripping%1:11:00:: 07407459 1 0 -dripping%1:11:01:: 07383323 2 0 -dripping%4:02:00:: 00461405 1 0 -dripping_pan%1:06:00:: 03242390 1 0 -drippings%1:13:00:: 07673249 1 0 -drippy%5:00:00:emotional:00 00854413 3 0 -drippy%5:00:00:leaky:00 01397786 2 0 -drippy%5:00:00:wet:01 02549234 1 0 -dripstone%1:06:00:: 03242595 2 0 -dripstone%1:27:00:: 14936630 1 0 -drive%1:04:00:: 00307631 8 1 -drive%1:04:02:: 00798245 3 4 -drive%1:04:03:: 00572489 6 1 -drive%1:04:04:: 00103834 1 6 -drive%1:04:05:: 00567044 12 0 -drive%1:04:06:: 00317594 7 1 -drive%1:06:00:: 03242713 11 0 -drive%1:06:01:: 03244388 4 3 -drive%1:06:02:: 03242995 2 5 -drive%1:06:03:: 03243218 10 0 -drive%1:07:00:: 04835724 5 1 -drive%1:26:00:: 14035298 9 0 -drive%2:32:00:: 01026975 11 1 -drive%2:33:00:: 01142490 22 0 -drive%2:33:01:: 01142636 21 0 -drive%2:34:07:: 01181741 20 0 -drive%2:35:00:: 01516534 4 13 -drive%2:35:01:: 01509584 9 2 -drive%2:35:02:: 01407722 18 0 -drive%2:35:03:: 01407904 17 0 -drive%2:35:06:: 01310964 19 0 -drive%2:35:07:: 01512259 8 2 -drive%2:35:11:: 01506157 6 5 -drive%2:36:00:: 01646300 7 4 -drive%2:38:00:: 01930117 2 24 -drive%2:38:01:: 01930874 1 56 -drive%2:38:02:: 02056971 3 13 -drive%2:38:09:: 02057656 14 0 -drive%2:38:10:: 01939553 15 0 -drive%2:38:11:: 01930482 16 0 -drive%2:41:00:: 02406916 10 1 -drive%2:41:02:: 02505358 5 6 -drive%2:41:13:: 02408281 13 0 -drive%2:42:00:: 02742232 12 0 -drive-by_killing%1:04:00:: 00219738 1 0 -drive-by_shooting%1:04:00:: 00225361 1 0 -drive-in%1:06:00:: 03243501 1 0 -drive_around%2:38:00:: 02058049 1 1 -drive_around%2:41:00:: 02419266 2 0 -drive_away%2:38:00:: 02002720 1 1 -drive_back%2:33:00:: 01131197 1 0 -drive_home%2:32:00:: 01014362 2 0 -drive_home%2:40:00:: 02358327 1 0 -drive_in%2:33:00:: 01113620 1 4 -drive_in%2:35:00:: 01352996 3 0 -drive_in%2:38:00:: 01980300 2 1 -drive_line%1:06:00:: 03243625 1 0 -drive_line_system%1:06:00:: 03243625 1 0 -drive_off%2:38:06:: 02002720 1 2 -drive_out%2:30:03:: 00576228 3 0 -drive_out%2:38:00:: 02056466 2 0 -drive_out%2:38:01:: 02002720 1 1 -drive_up%2:38:00:: 01850135 1 1 -drivel%1:08:00:: 05416678 2 0 -drivel%1:10:00:: 06612266 1 0 -drivel%2:29:00:: 00102974 1 0 -driveller%1:18:00:: 10034785 1 0 -driveller%1:18:01:: 10033663 2 0 -driven%5:00:00:ambitious:00 00104699 3 0 -driven%5:00:00:involuntary:01 02521758 1 2 -driven%5:00:00:motivated:00 01558749 2 0 -driven_well%1:06:00:: 03243903 1 0 -driver%1:06:00:: 03244047 5 0 -driver%1:10:00:: 06574473 4 0 -driver%1:18:00:: 10034906 1 17 -driver%1:18:01:: 10035314 3 0 -driver%1:18:02:: 10035430 2 0 -driver's_licence%1:10:00:: 06550206 1 0 -driver's_license%1:10:00:: 06550206 1 0 -driver_ant%1:05:00:: 02220518 1 0 -driveshaft%1:06:00:: 03244231 1 0 -driveway%1:06:00:: 03244388 1 5 -driving%1:04:00:: 00298497 2 0 -driving%1:04:03:: 00572489 1 0 -driving%5:00:00:dynamic:00 00808940 1 2 -driving%5:00:00:energetic:00 00874634 2 0 -driving_axle%1:06:00:: 03678879 1 0 -driving_belt%1:06:00:: 03244660 1 0 -driving_force%1:04:00:: 00103834 1 1 -driving_iron%1:06:00:: 03244775 1 0 -driving_licence%1:10:00:: 06550206 1 0 -driving_license%1:10:00:: 06550206 1 0 -driving_range%1:06:00:: 03447224 1 0 -driving_school%1:14:00:: 08279184 1 0 -driving_wheel%1:06:00:: 03244919 1 0 -drixoral%1:06:00:: 03245075 1 0 -drizzle%1:19:00:: 11502322 1 5 -drizzle%2:35:00:: 01376082 2 0 -drizzle%2:43:00:: 02757475 1 0 -drizzling%5:00:00:descending:00 02486504 1 2 -drizzly%5:00:00:wet:01 02549234 1 0 -drms%1:14:00:: 08341551 1 0 -drogheda%1:04:00:: 01277755 1 0 -drogue%1:06:00:: 03245271 4 0 -drogue%1:06:01:: 04158457 3 0 -drogue%1:10:02:: 07257582 2 0 -drogue%1:10:03:: 07262354 1 0 -drogue_chute%1:06:00:: 03245271 1 0 -drogue_parachute%1:06:00:: 03245271 2 0 -drogue_parachute%1:06:01:: 03245421 1 0 -droll%5:00:00:humorous:00 01265938 1 0 -drollery%1:04:00:: 00515069 2 0 -drollery%1:10:00:: 06781383 1 0 -dromaeosaur%1:05:00:: 01717860 1 0 -dromaeosauridae%1:05:00:: 01717666 1 0 -dromaius%1:05:00:: 01519719 1 0 -dromaius_novaehollandiae%1:05:00:: 01519873 1 0 -drome%1:06:00:: 02692232 1 0 -dromedary%1:05:00:: 02437312 1 0 -dronabinol%1:06:00:: 03245553 1 0 -drone%1:05:00:: 02207179 1 2 -drone%1:06:00:: 03245724 5 0 -drone%1:06:01:: 03245889 4 0 -drone%1:10:00:: 07084560 2 1 -drone%1:18:00:: 09993252 3 0 -drone%2:32:00:: 00944788 2 0 -drone%2:39:00:: 02188442 1 0 -drone_on%2:32:00:: 00944788 1 0 -drone_pipe%1:06:00:: 03245724 1 0 -droning%1:10:00:: 07084560 1 0 -drool%1:08:00:: 05416678 2 0 -drool%1:10:00:: 06611147 1 0 -drool%2:29:00:: 00102974 2 0 -drool%2:37:00:: 01827425 1 0 -drool_over%2:37:00:: 01827745 1 0 -drooler%1:18:00:: 10033663 1 0 -droop%1:25:00:: 13905572 1 0 -droop%2:30:00:: 00469637 3 0 -droop%2:38:00:: 01985524 1 1 -droop%2:42:00:: 02717701 2 0 -drooping%5:00:00:lax:01 02403944 2 0 -drooping%5:00:00:tired:00 02433365 1 0 -drooping%5:00:00:unerect:00 01238486 3 0 -drooping_brome%1:20:00:: 12111399 1 0 -drooping_juniper%1:20:00:: 11638698 1 0 -droopingly%4:02:00:: 00322939 1 0 -droopy%5:00:00:lax:01 02403944 1 0 -drop%1:04:00:: 00327366 9 0 -drop%1:06:00:: 03246052 8 0 -drop%1:06:01:: 03246454 7 0 -drop%1:07:00:: 05111835 3 1 -drop%1:11:00:: 07362386 6 0 -drop%1:15:00:: 08583793 5 0 -drop%1:17:00:: 09246464 4 0 -drop%1:23:00:: 13771404 2 9 -drop%1:25:00:: 13901585 1 9 -drop%2:29:00:: 00057764 23 0 -drop%2:29:01:: 00092293 22 0 -drop%2:30:00:: 00432683 3 12 -drop%2:30:01:: 00363110 7 5 -drop%2:30:02:: 00548616 20 0 -drop%2:30:05:: 00393534 12 1 -drop%2:30:09:: 00148341 21 0 -drop%2:31:00:: 00614999 19 0 -drop%2:31:06:: 00615615 18 0 -drop%2:32:00:: 00941446 6 6 -drop%2:33:00:: 01100008 10 2 -drop%2:34:00:: 01200661 17 0 -drop%2:35:00:: 01489465 8 3 -drop%2:35:01:: 01513430 16 0 -drop%2:35:03:: 01258302 9 2 -drop%2:35:12:: 01611516 15 0 -drop%2:38:00:: 01976841 2 21 -drop%2:38:01:: 01977701 1 36 -drop%2:38:05:: 01985923 4 7 -drop%2:40:00:: 02267060 11 1 -drop%2:41:00:: 02465939 14 0 -drop%2:41:01:: 02403920 5 6 -drop%2:42:04:: 02717472 13 0 -drop-dead%4:02:00:: 00046449 1 0 -drop-down_menu%1:10:00:: 06493579 1 0 -drop-kick%2:35:00:: 01370843 2 0 -drop-kick%2:35:02:: 01372026 1 0 -drop-leaf%1:06:00:: 03246788 1 0 -drop-leaf_table%1:06:00:: 03246933 1 0 -drop-off%1:11:00:: 07355887 3 0 -drop-off%1:17:00:: 09246464 2 0 -drop-off%1:22:00:: 13556509 1 0 -drop-off_charge%1:21:00:: 13321338 1 0 -drop-seed%1:20:00:: 12140358 1 0 -drop_a_line%2:32:00:: 01007027 1 0 -drop_anchor%2:35:00:: 01304716 1 0 -drop_arch%1:06:00:: 03246197 1 0 -drop_away%2:30:00:: 00204391 1 0 -drop_back%2:38:00:: 01833508 1 1 -drop_back%2:38:03:: 02058756 2 0 -drop_behind%2:38:00:: 02058756 1 1 -drop_biscuit%1:13:00:: 07694268 1 0 -drop_by%2:41:00:: 02488641 1 1 -drop_by_the_wayside%2:33:00:: 01083044 1 0 -drop_cloth%1:06:00:: 03246454 1 0 -drop_cloth%1:06:01:: 03246312 2 0 -drop_curtain%1:06:00:: 03246454 1 0 -drop_dead%2:30:00:: 00358431 1 2 -drop_down%2:38:00:: 01985923 1 0 -drop_earring%1:06:00:: 03909020 1 0 -drop_forge%1:06:00:: 03246653 1 0 -drop_hammer%1:06:00:: 03246653 1 0 -drop_in%2:41:00:: 02488641 1 1 -drop_keel%1:06:00:: 02994012 1 0 -drop_like_flies%2:29:00:: 00030853 1 0 -drop_line%1:10:00:: 06345566 1 0 -drop_off%2:29:00:: 00017282 2 1 -drop_off%2:30:00:: 00204391 5 0 -drop_off%2:30:01:: 00152887 1 1 -drop_off%2:33:00:: 01113806 4 0 -drop_off%2:35:00:: 01489465 3 0 -drop_one's_serve%2:33:00:: 01156706 1 0 -drop_open%2:38:00:: 01982253 1 0 -drop_out%2:33:00:: 01083044 1 2 -drop_out%2:41:00:: 02382938 3 0 -drop_out%2:41:01:: 02383174 2 0 -drop_press%1:06:00:: 03246653 1 0 -drop_scone%1:13:00:: 07691091 1 0 -drop_shot%1:04:00:: 00567280 1 0 -drop_the_ball%2:41:00:: 02566227 1 0 -drop_zone%1:15:00:: 08690194 1 0 -dropforge%2:36:00:: 01675667 1 0 -dropkick%1:04:00:: 00137877 1 0 -dropkick%2:35:00:: 01372026 1 0 -dropkick%2:35:02:: 01370843 2 0 -dropkicker%1:18:00:: 10035655 1 0 -droplet%1:23:00:: 13771828 1 3 -dropline%1:10:00:: 06345566 1 0 -dropout%1:18:00:: 09995925 1 1 -dropout%1:18:01:: 09996039 2 0 -dropped_egg%1:13:00:: 07842202 1 0 -dropper%1:06:00:: 03247083 1 0 -dropping%5:00:00:descending:00 02486628 1 0 -dropping_zone%1:15:00:: 08690194 1 0 -droppings%1:27:00:: 14854847 1 1 -dropseed%1:20:00:: 12140358 1 0 -dropsical%5:00:00:unhealthy:00 01176544 1 0 -dropsy%1:26:00:: 14316714 1 0 -drosera%1:20:00:: 12782338 1 0 -droseraceae%1:20:00:: 12782108 1 0 -droshky%1:06:00:: 03247351 1 0 -drosky%1:06:00:: 03247351 1 0 -drosophila%1:05:00:: 02197689 1 0 -drosophila_melanogaster%1:05:00:: 02197689 1 0 -drosophilidae%1:05:00:: 02197413 1 0 -drosophyllum%1:20:00:: 12783601 1 0 -drosophyllum_lusitanicum%1:20:00:: 12783730 1 0 -dross%1:27:00:: 15042856 2 0 -dross%1:27:01:: 14583670 1 1 -drought%1:26:00:: 14537054 1 5 -drought%1:28:00:: 15244505 2 1 -drouth%1:26:00:: 14537054 2 0 -drouth%1:28:00:: 15244505 1 0 -drove%1:06:00:: 03247495 3 0 -drove%1:14:00:: 08184335 1 0 -drove%1:14:01:: 08184217 2 0 -drove_chisel%1:06:00:: 03247495 1 0 -drover%1:18:00:: 10171567 1 1 -drown%2:30:00:: 00360501 3 2 -drown%2:30:01:: 00479060 4 1 -drown%2:30:02:: 00472532 2 2 -drown%2:35:00:: 01339294 1 3 -drown%2:42:00:: 02755911 5 0 -drown_out%2:39:00:: 02172534 1 3 -drowse%1:04:00:: 00858849 1 0 -drowse%2:29:00:: 00016380 2 0 -drowse%2:29:01:: 00015303 1 1 -drowse_off%2:29:00:: 00017282 1 0 -drowsily%4:02:00:: 00323049 1 1 -drowsiness%1:26:00:: 14030435 1 1 -drowsing%5:00:00:asleep:00 00188436 1 0 -drowsy%5:00:00:asleep:00 00188436 1 1 -drowsy%5:00:00:inattentive:00 00165766 2 0 -drub%2:35:00:: 01412912 1 0 -drubbing%1:04:00:: 01160729 2 0 -drubbing%1:11:00:: 07476623 1 0 -drudge%1:18:00:: 10035809 2 0 -drudge%1:18:01:: 10154601 1 0 -drudge%2:41:00:: 02419773 1 0 -drudgery%1:04:00:: 00621476 1 0 -drudging%5:00:00:busy:00 00293376 1 0 -drug%1:06:00:: 03247620 1 30 -drug%2:29:00:: 00084738 1 1 -drug%2:34:00:: 01200440 2 0 -drug-addicted%5:00:00:addicted:00 00047406 1 0 -drug-free%5:00:00:sober:01 00799800 1 0 -drug_abuse%1:04:00:: 00947923 1 0 -drug_addict%1:18:00:: 10035952 1 0 -drug_addiction%1:26:00:: 14064408 1 0 -drug_baron%1:18:00:: 10036135 1 0 -drug_bust%1:04:00:: 00086547 1 0 -drug_cartel%1:14:00:: 08236963 1 0 -drug_cocktail%1:06:00:: 03248560 1 0 -drug_company%1:14:00:: 08002578 1 0 -drug_dealer%1:18:00:: 10495555 1 0 -drug_enforcement_administration%1:14:00:: 08141374 1 0 -drug_enforcement_agency%1:14:00:: 08141374 1 0 -drug_lord%1:18:00:: 10036135 1 0 -drug_of_abuse%1:06:00:: 03248958 1 0 -drug_peddler%1:18:00:: 10495555 1 0 -drug_traffic%1:04:00:: 01114055 1 0 -drug_trafficker%1:18:00:: 10495555 1 0 -drug_trafficking%1:04:00:: 01114055 1 0 -drug_user%1:18:00:: 10036266 1 0 -drug_war%1:04:00:: 01236491 1 0 -drug_withdrawal%1:04:00:: 00228911 1 0 -drugged%5:00:00:intoxicated:00 00798879 1 3 -drugget%1:06:00:: 03248835 1 0 -drugging%1:04:00:: 00695300 1 1 -druggist%1:18:00:: 10421470 1 0 -drugless%5:00:00:healthful:00 01166314 1 1 -drugs_bust%1:04:00:: 00086547 1 0 -drugstore%1:06:00:: 03249342 1 6 -druid%1:18:00:: 10036444 1 0 -druidism%1:09:00:: 06224831 1 0 -drum%1:05:00:: 02594552 6 0 -drum%1:06:00:: 03249569 1 5 -drum%1:06:01:: 03249956 4 0 -drum%1:06:02:: 02890351 5 0 -drum%1:11:00:: 07383475 2 1 -drum%1:25:00:: 13901211 3 0 -drum%2:31:00:: 00605783 3 0 -drum%2:36:00:: 01732532 2 1 -drum%2:39:00:: 02174830 1 1 -drum-like%5:00:00:formed:00 02146760 1 0 -drum-shaped%5:00:00:formed:00 02146760 1 0 -drum_brake%1:06:00:: 03250089 1 0 -drum_major%1:18:00:: 10036574 1 1 -drum_majorette%1:18:00:: 10036692 2 0 -drum_majorette%1:18:01:: 10036802 1 0 -drum_out%2:41:00:: 02401809 1 1 -drum_printer%1:06:00:: 03250405 1 0 -drum_roll%1:11:00:: 07388816 1 0 -drum_sander%1:06:00:: 03250588 1 0 -drum_up%2:35:00:: 01385643 1 0 -drumbeat%1:04:00:: 01214408 3 0 -drumbeat%1:10:00:: 06805128 2 0 -drumbeat%1:11:00:: 07392373 1 0 -drumbeater%1:18:00:: 10402086 1 0 -drumfire%1:04:00:: 00994623 1 0 -drumfish%1:05:00:: 02594552 1 0 -drumhead%1:06:00:: 03250279 1 1 -drumhead%5:00:00:unofficial:00 01633880 1 0 -drumhead_court-martial%1:14:00:: 08331357 1 0 -drumlin%1:17:00:: 09270657 1 1 -drummer%1:18:00:: 10036929 1 1 -drumming%1:04:00:: 00545194 1 0 -drumstick%1:06:00:: 03250847 2 0 -drumstick%1:13:00:: 07647870 1 0 -drumstick_tree%1:20:00:: 12492106 1 0 -drunk%1:18:00:: 10037385 1 4 -drunk%1:18:01:: 10037080 2 0 -drunk%3:00:00:: 00797299 1 9 -drunk%5:00:00:excited:00 00920260 2 2 -drunk-and-disorderly%1:18:00:: 10037194 1 1 -drunkard%1:18:00:: 10037385 1 2 -drunken%5:00:02:intoxicated:00 00798491 1 4 -drunken_reveler%1:18:00:: 10526300 1 0 -drunken_reveller%1:18:00:: 10526300 1 0 -drunken_revelry%1:04:00:: 00511212 1 0 -drunkenly%4:02:00:: 00199220 1 4 -drunkenness%1:04:00:: 00748515 3 0 -drunkenness%1:26:00:: 14018567 1 1 -drunkenness%1:26:02:: 14064644 2 0 -drupaceous%3:01:00:: 02714948 1 0 -drupe%1:20:00:: 13138308 1 0 -drupelet%1:20:00:: 13138658 1 0 -druse%1:18:00:: 10037588 1 0 -drusen%1:26:00:: 14255064 1 0 -druthers%1:09:00:: 05791452 1 0 -druze%1:18:00:: 10037588 1 0 -dry%1:18:00:: 10037922 1 0 -dry%2:30:00:: 00219403 2 11 -dry%2:30:01:: 00218475 1 12 -dry%3:00:01:: 02551380 1 18 -dry%3:00:02:: 02554546 5 0 -dry%3:00:03:: 02367785 6 0 -dry%3:00:04:: 02554940 4 0 -dry%3:00:05:: 02555267 3 0 -dry%3:00:06:: 01178669 7 0 -dry%5:00:00:alcoholic:00 01158837 14 0 -dry%5:00:00:humorous:00 01266092 2 1 -dry%5:00:00:sober:01 00799953 16 0 -dry%5:00:00:solid:01 02260730 10 0 -dry%5:00:00:tearless:00 02474076 8 0 -dry%5:00:00:unemotional:00 00857387 15 0 -dry%5:00:00:unproductive:00 01867052 11 0 -dry%5:00:00:unstimulating:00 02307729 9 0 -dry%5:00:01:plain:01 01792973 13 0 -dry%5:00:02:plain:01 01793106 12 0 -dry-bulb_thermometer%1:06:00:: 03251100 1 0 -dry-cleaned%5:00:00:clean:01 00418110 1 0 -dry-dock%2:35:00:: 01305939 1 0 -dry-eyed%3:00:00:: 02473977 1 1 -dry-gulching%1:04:00:: 01247306 1 0 -dry-nurse%2:34:00:: 01186844 1 0 -dry-rot%2:30:00:: 00211001 1 0 -dry-shod%5:00:00:dry:01 02553560 1 0 -dry-stone_wall%1:06:00:: 03252637 1 0 -dry-wall%2:36:00:: 01655221 1 0 -dry-wood_termite%1:05:00:: 02223520 1 0 -dry_battery%1:06:00:: 03250952 1 0 -dry_cell%1:06:00:: 03251280 1 0 -dry_cereal%1:13:00:: 07704755 1 0 -dry_clean%2:35:00:: 01535117 1 0 -dry_cleaner%1:18:00:: 09927305 1 0 -dry_cleaners%1:06:00:: 03039827 1 0 -dry_cleaning%1:04:00:: 00252169 1 0 -dry_dock%1:06:00:: 03251533 1 0 -dry_fly%1:06:00:: 03251932 1 0 -dry_gangrene%1:26:00:: 14313661 1 0 -dry_ice%1:27:00:: 15047167 1 0 -dry_kiln%1:06:00:: 03252231 1 0 -dry_land%1:17:00:: 09334396 1 0 -dry_masonry%1:06:00:: 03252324 1 0 -dry_measure%1:23:00:: 13615036 1 0 -dry_milk%1:13:00:: 07846143 1 0 -dry_mop%1:06:00:: 03258905 1 0 -dry_mouth%1:26:00:: 14538329 1 0 -dry_mustard%1:06:00:: 03994417 1 0 -dry_nurse%1:18:00:: 10038119 1 0 -dry_out%2:30:00:: 00219403 1 2 -dry_out%2:30:05:: 00218475 3 0 -dry_out%2:43:01:: 02771756 2 0 -dry_pint%1:23:00:: 13620404 1 0 -dry_plate%1:22:00:: 13470015 1 0 -dry_plate_process%1:22:00:: 13470015 1 0 -dry_point%1:06:00:: 03252422 2 0 -dry_point%1:06:01:: 03252542 1 0 -dry_quart%1:23:00:: 13620549 1 0 -dry_rot%1:20:00:: 13081999 2 0 -dry_rot%1:26:00:: 14280504 1 0 -dry_run%1:04:00:: 00897026 1 0 -dry_season%1:28:00:: 15239174 1 0 -dry_socket%1:26:00:: 14257993 1 0 -dry_unit%1:23:00:: 13615036 1 0 -dry_up%2:30:00:: 00211108 1 2 -dry_up%2:30:03:: 00242205 2 0 -dry_vermouth%1:13:00:: 07899434 1 0 -dry_wall%1:06:00:: 03252637 2 0 -dry_wall%1:06:01:: 04547991 1 0 -dry_walling%1:04:00:: 00912165 1 0 -dry_wash%1:17:00:: 09474895 1 0 -dryad%1:18:00:: 09551040 1 0 -dryadella%1:20:00:: 12060118 1 0 -dryas%1:20:00:: 12629187 1 0 -dryas_octopetala%1:20:00:: 12629305 1 0 -dryden%1:18:00:: 10943659 1 0 -drydock%1:06:00:: 03251533 1 0 -drydock%2:35:00:: 01305939 1 0 -dryer%1:06:00:: 03251766 1 0 -drygoods%1:06:00:: 03252064 1 3 -drying_agent%1:27:00:: 14779796 1 1 -drying_oil%1:27:00:: 14755641 1 0 -drying_up%1:22:00:: 13460568 1 0 -dryland_berry%1:20:00:: 12248941 1 0 -dryland_blueberry%1:20:00:: 12248941 1 0 -dryly%4:02:00:: 00231457 1 1 -drymarchon%1:05:00:: 01741116 1 0 -drymarchon_corais%1:05:00:: 01741232 1 0 -drymarchon_corais_couperi%1:05:00:: 01741442 1 0 -drymoglossum%1:20:00:: 13175324 1 0 -drynaria%1:20:00:: 13175484 1 0 -drynaria_rigidula%1:20:00:: 13175682 1 0 -dryness%1:07:00:: 04630137 3 0 -dryness%1:07:02:: 04883804 2 0 -dryness%1:26:00:: 14536438 1 1 -dryopithecine%1:05:00:: 02478077 1 0 -dryopithecus%1:05:00:: 02477890 1 0 -dryopithecus_rudapithecus_hungaricus%1:05:00:: 02478239 1 0 -dryopteridaceae%1:20:00:: 13192025 1 0 -dryopteris%1:20:00:: 13192898 1 0 -dryopteris_dilatata%1:20:00:: 13193143 1 0 -dryopteris_filix-mas%1:20:00:: 13193856 1 0 -dryopteris_fragrans%1:20:00:: 13193269 1 0 -dryopteris_goldiana%1:20:00:: 13193466 1 0 -dryopteris_hexagonoptera%1:20:00:: 13230843 1 0 -dryopteris_marginalis%1:20:00:: 13194036 1 0 -dryopteris_noveboracensis%1:20:00:: 13229951 1 0 -dryopteris_oreades%1:20:00:: 13194212 1 0 -dryopteris_oreopteris%1:20:00:: 13229543 1 0 -dryopteris_phegopteris%1:20:00:: 13231078 1 0 -dryopteris_thelypteris%1:20:00:: 13227778 1 0 -dryopteris_thelypteris_pubescens%1:20:00:: 13228017 1 0 -drypis%1:20:00:: 11810030 1 0 -drywall%1:06:00:: 04547991 1 0 -ds%1:10:00:: 06705787 3 0 -ds%1:14:00:: 08138259 2 0 -ds%1:27:00:: 14636392 1 0 -dscdna%1:27:00:: 14817346 1 0 -dsl%1:06:00:: 03196990 1 0 -dtic%1:14:00:: 08341798 1 0 -dts%1:26:00:: 14398279 1 0 -du_barry%1:18:00:: 10943811 1 0 -du_bois%1:18:00:: 10944013 1 0 -du_maurier%1:18:00:: 10945048 2 0 -du_maurier%1:18:01:: 10945263 1 0 -duad%1:23:00:: 13743605 1 0 -dual%5:00:00:multiple:00 02217452 1 3 -dual%5:00:00:plural:00 02183135 3 0 -dual%5:00:02:multiple:00 02217799 2 0 -dual-lane%5:00:00:multilane:00 02221550 1 0 -dual_carriageway%1:06:00:: 03215508 1 0 -dual_inline_package_switch%1:06:00:: 03204558 1 0 -dual_scan_display%1:06:00:: 03252787 1 0 -dualism%1:09:00:: 05960698 1 0 -dualist%1:18:00:: 10038226 1 0 -dualistic%3:01:00:: 02947252 1 0 -duality%1:07:00:: 04920568 2 0 -duality%1:07:01:: 04736337 3 0 -duality%1:14:00:: 07939880 1 0 -dub%1:09:00:: 05720521 1 0 -dub%2:32:00:: 01028640 1 2 -dub%2:32:01:: 00960562 2 1 -dub%2:41:00:: 02399185 3 0 -dubai%1:15:00:: 09044714 1 0 -dubbin%1:27:00:: 14839206 1 0 -dubbing%1:06:00:: 03252959 1 0 -dubiety%1:09:00:: 05698247 1 0 -dubious%5:00:00:questionable:00 01916979 2 1 -dubious%5:00:00:uncertain:02 00338013 1 2 -dubious%5:00:00:unconvinced:00 00338669 3 0 -dubiously%4:02:00:: 00322112 2 0 -dubiously%4:02:01:: 00437796 1 0 -dubiousness%1:07:00:: 04757522 2 0 -dubiousness%1:09:00:: 05698247 1 0 -dubitable%5:00:00:questionable:00 01916979 1 0 -dublin%1:15:00:: 08889191 1 1 -dubliner%1:18:00:: 09715427 1 0 -dubnium%1:27:00:: 14636523 1 0 -dubois_heyward%1:18:00:: 11049001 1 0 -dubonnet%1:13:00:: 07896422 1 0 -dubrovnik%1:15:00:: 08818835 1 0 -dubuque%1:15:00:: 09087126 1 0 -dubya%1:18:00:: 10875910 1 0 -dubyuh%1:18:00:: 10875910 1 0 -duc_d'elchingen%1:18:00:: 11205647 1 0 -duc_de_richelieu%1:18:00:: 11261483 1 0 -duc_de_sully%1:18:00:: 11325146 1 0 -ducal%3:01:00:: 03062754 1 0 -ducat%1:21:00:: 13389475 1 0 -duce%1:18:00:: 10038320 1 0 -duchamp%1:18:00:: 10944238 1 0 -duchenne's_muscular_dystrophy%1:26:00:: 14161795 1 0 -duchess%1:18:00:: 10038409 1 0 -duchess_of_ferrara%1:18:00:: 10858018 1 0 -duchess_of_windsor%1:18:00:: 11301809 1 0 -duchesse_de_valentinois%1:18:00:: 10933929 1 0 -duchy%1:15:00:: 08557131 1 0 -duck%1:05:00:: 01846331 1 4 -duck%1:06:00:: 03253071 4 0 -duck%1:13:00:: 07646578 3 0 -duck%1:23:00:: 13595844 2 0 -duck%2:32:00:: 00809654 4 0 -duck%2:38:00:: 01865203 1 10 -duck%2:38:01:: 01967792 2 3 -duck%2:38:02:: 01976220 3 0 -duck's_egg%1:23:00:: 13595844 1 0 -duck-billed%5:00:00:beaked:00 00206900 1 0 -duck-billed_dinosaur%1:05:00:: 01705934 1 0 -duck-billed_platypus%1:05:00:: 01873310 1 0 -duck_down%1:05:00:: 01896735 1 0 -duck_hunter%1:18:00:: 10038547 1 0 -duck_hunting%1:04:00:: 00453396 1 0 -duck_pate%1:13:00:: 07858114 1 0 -duck_sauce%1:13:00:: 07824268 1 0 -duck_shot%1:06:00:: 02843777 1 0 -duck_soup%1:04:00:: 00575365 1 0 -duckbill%1:05:01:: 01873310 2 0 -duckbill%1:05:02:: 02639605 1 0 -duckbill%5:00:00:beaked:00 00206900 1 0 -duckbilled_platypus%1:05:00:: 01873310 1 0 -duckboard%1:06:00:: 03253187 1 0 -ducking%1:04:00:: 00277569 2 0 -ducking%1:04:01:: 00453396 1 1 -ducking_stool%1:06:00:: 03144982 1 0 -duckling%1:05:00:: 01847170 2 0 -duckling%1:13:00:: 07646718 1 0 -duckpin%1:06:00:: 03253279 1 0 -duckpins%1:04:00:: 00462557 1 0 -ducks_and_drakes%1:04:00:: 00459845 1 0 -duckweed%1:20:00:: 11794519 1 0 -duckweed_family%1:20:00:: 11794267 1 0 -ducky%1:18:00:: 09991867 1 0 -duct%1:06:00:: 03253398 3 0 -duct%1:08:00:: 05250659 1 2 -duct%1:20:00:: 13091057 2 0 -duct_gland%1:08:00:: 05328867 1 0 -duct_tape%1:06:00:: 03253516 1 0 -ductile%5:00:00:formed:00 02144436 2 0 -ductile%5:00:00:tractable:00 02451551 1 0 -ductileness%1:07:00:: 05022173 1 0 -ductility%1:07:00:: 05022173 1 0 -ductless%3:01:00:: 03062899 1 0 -ductless_gland%1:08:00:: 05329735 1 0 -ductule%1:08:00:: 05251537 1 0 -ductulus%1:08:00:: 05251537 1 0 -ductus_arteriosus%1:08:00:: 05418177 1 0 -ductus_deferens%1:08:00:: 05526175 1 0 -dud%1:11:00:: 07365193 3 0 -dud%1:11:01:: 07421749 2 0 -dud%1:18:00:: 10097477 1 0 -dud%5:00:00:unloaded:00 01425154 1 0 -dude%1:18:00:: 09991026 2 0 -dude%1:18:01:: 10083358 1 0 -dude_ranch%1:15:00:: 08560295 1 0 -dudeen%1:06:00:: 03253714 1 0 -dudgeon%1:12:00:: 07516756 1 0 -dudley_moore%1:18:00:: 11189829 1 0 -dudley_stuart_john_moore%1:18:00:: 11189829 1 0 -duds%1:06:00:: 04446162 1 0 -due%1:07:00:: 05176082 1 4 -due%1:21:00:: 13396861 2 0 -due%3:00:00:: 00136354 1 6 -due%3:00:02:: 00137725 3 0 -due%4:02:00:: 00052152 1 0 -due%5:00:00:attributable:00 00171872 4 0 -due%5:00:00:expected:00 00929916 2 1 -due_care%1:04:00:: 01131794 1 0 -due_date%1:28:00:: 15153225 1 7 -due_east%1:24:00:: 13832355 1 0 -due_north%1:24:00:: 13831176 1 0 -due_process%1:04:00:: 01181475 1 5 -due_process_of_law%1:04:00:: 01181475 1 1 -due_south%1:24:00:: 13833375 1 0 -due_west%1:24:00:: 13834399 1 0 -duel%1:04:00:: 01172784 1 1 -duel%1:04:01:: 00789237 2 1 -duel%2:33:00:: 01121948 1 0 -dueler%1:18:00:: 10038929 1 0 -duelist%1:18:00:: 10038929 1 1 -dueller%1:18:00:: 10038929 1 0 -duellist%1:18:00:: 10038929 1 0 -duenna%1:18:00:: 10039164 1 0 -duet%1:04:01:: 00529224 5 0 -duet%1:10:00:: 07041451 4 0 -duet%1:14:00:: 07985628 3 0 -duet%1:14:01:: 08247021 2 0 -duet%1:23:00:: 13743605 1 0 -duette%1:10:00:: 07041451 2 0 -duette%1:14:00:: 08247021 1 0 -duff%1:13:00:: 07618119 1 0 -duffel%1:06:00:: 03253796 2 0 -duffel%1:06:01:: 03253886 1 0 -duffel_bag%1:06:00:: 03253886 1 3 -duffel_coat%1:06:00:: 03254046 1 0 -duffer%1:18:00:: 10039271 1 3 -duffle%1:06:00:: 03253796 2 0 -duffle%1:06:01:: 03253886 1 0 -duffle_bag%1:06:00:: 03253886 1 0 -duffle_coat%1:06:00:: 03254046 1 0 -dufy%1:18:00:: 10944468 1 0 -dug%1:05:00:: 02370265 1 0 -dugald_stewart%1:18:00:: 11318039 1 0 -dugong%1:05:00:: 02074367 1 0 -dugong_dugon%1:05:00:: 02074367 1 0 -dugongidae%1:05:00:: 02074004 1 0 -dugout%1:06:00:: 02920503 3 0 -dugout%1:06:01:: 03254189 1 7 -dugout%1:06:02:: 03254374 2 0 -dugout_canoe%1:06:00:: 03254374 1 0 -dukas%1:18:00:: 10944593 1 0 -duke%1:18:00:: 10038620 1 1 -duke%1:18:01:: 10038778 2 0 -duke_ellington%1:18:00:: 10958010 1 0 -duke_of_argyll's_tea_tree%1:20:00:: 12905135 1 0 -duke_of_cumberland%1:18:00:: 10917164 1 0 -duke_of_edinburgh%1:18:00:: 11232475 1 0 -duke_of_lancaster%1:18:00:: 11087091 1 0 -duke_of_marlborough%1:18:00:: 10897594 1 0 -duke_of_wellington%1:18:00:: 11380923 1 0 -duke_of_windsor%1:18:00:: 10951697 1 0 -duke_university%1:06:00:: 03254505 1 0 -duke_wayne%1:18:00:: 11377712 1 0 -dukedom%1:15:00:: 08557131 2 0 -dukedom%1:26:00:: 14432744 1 0 -dulcet%5:00:00:melodious:00 01501821 2 0 -dulcet%5:00:00:pleasant:00 01800873 1 0 -dulciana%1:06:00:: 03254625 1 0 -dulcify%2:39:00:: 02195470 1 0 -dulcimer%1:06:00:: 03254737 2 0 -dulcimer%1:06:01:: 03254862 1 0 -dulcinea%1:18:00:: 10243384 1 0 -dulcorate%2:39:00:: 02195470 1 0 -dull%2:30:00:: 00391971 2 1 -dull%2:30:01:: 00391672 7 0 -dull%2:30:02:: 00538199 6 0 -dull%2:35:01:: 01246321 1 1 -dull%2:35:02:: 01246444 5 0 -dull%2:39:00:: 02191311 3 0 -dull%2:39:01:: 02115273 4 0 -dull%3:00:01:: 00800248 9 0 -dull%3:00:02:: 00283703 2 5 -dull%3:00:03:: 00806512 1 5 -dull%3:00:04:: 00803971 6 1 -dull%5:00:00:cloudy:00 00462249 12 0 -dull%5:00:00:inactive:03 00036998 8 1 -dull%5:00:00:insensitive:02 02107634 10 0 -dull%5:00:00:soft:04 01454985 3 2 -dull%5:00:00:stupid:00 00440579 7 1 -dull%5:00:00:unreverberant:00 02011622 11 0 -dull%5:00:00:unsaturated:03 00393992 5 2 -dull%5:00:01:uninteresting:00 01345307 4 2 -dull-purple%5:00:00:chromatic:00 00374735 1 0 -dull-white%5:00:00:achromatic:00 00389150 1 0 -dullard%1:18:00:: 09867437 2 0 -dullard%1:18:02:: 10667187 1 1 -dulled%5:00:00:colorless:02 00405406 3 0 -dulled%5:00:00:dull:01 00800597 2 0 -dulled%5:00:00:uninterested:00 01343679 1 4 -dulles%1:18:00:: 10944686 1 0 -dullness%1:07:00:: 04844891 4 0 -dullness%1:07:01:: 04705671 5 0 -dullness%1:07:02:: 05205739 2 0 -dullness%1:07:03:: 04955633 3 0 -dullness%1:09:03:: 05646039 1 0 -dully%4:02:00:: 00236294 1 2 -dully%4:02:02:: 00236393 2 1 -dulse%1:05:00:: 01415139 1 0 -duluth%1:15:00:: 09102517 1 0 -duly%4:02:00:: 00064691 1 8 -duma%1:14:00:: 08320052 1 0 -dumas%1:18:00:: 10944902 1 0 -dumb%5:00:00:stupid:00 00440579 1 9 -dumb%5:00:01:inarticulate:00 00151855 4 0 -dumb%5:00:02:inarticulate:00 00152629 2 0 -dumb%5:00:03:inarticulate:00 00152004 3 0 -dumb_bomb%1:06:00:: 03255167 1 0 -dumb_cane%1:20:00:: 11787625 1 0 -dumb_show%1:04:00:: 00550016 1 0 -dumbass%1:18:00:: 10039663 1 0 -dumbbell%1:06:00:: 03255030 1 4 -dumbbell%1:18:00:: 10039391 2 0 -dumbfound%2:31:00:: 00622384 1 0 -dumbfounded%5:00:00:surprised:00 02358277 1 0 -dumbfounding%5:00:00:incredible:00 00645856 1 0 -dumbly%4:02:00:: 00323193 2 0 -dumbly%4:02:01:: 00323315 1 0 -dumbness%1:09:00:: 05645854 1 0 -dumbstricken%5:00:00:surprised:00 02358277 1 0 -dumbstruck%5:00:00:surprised:00 02358277 1 0 -dumbwaiter%1:06:00:: 03255322 1 0 -dumdum%1:06:00:: 03255488 1 0 -dumdum_bullet%1:06:00:: 03255488 1 0 -dumdum_fever%1:26:00:: 14181049 1 0 -dumetella%1:05:00:: 01587406 1 0 -dumetella_carolinensis%1:05:00:: 01587526 1 0 -dumfounded%5:00:00:surprised:00 02358277 1 1 -dumfounding%5:00:00:incredible:00 00645856 1 0 -dummy%1:06:00:: 03255648 3 0 -dummy%1:06:01:: 02848921 4 0 -dummy%1:18:00:: 10039391 2 0 -dummy%1:18:01:: 10039569 1 0 -dummy%2:36:00:: 01623656 1 0 -dummy%5:00:00:artificial:00 01572831 1 0 -dummy_up%2:32:00:: 01041061 2 0 -dummy_up%2:36:00:: 01623656 1 0 -dummy_whist%1:04:00:: 00496437 1 0 -dump%1:06:00:: 03255790 4 0 -dump%1:10:00:: 06390227 3 0 -dump%1:15:00:: 08560027 2 0 -dump%1:22:00:: 13555775 1 0 -dump%2:35:00:: 01412346 6 0 -dump%2:38:00:: 01977545 4 0 -dump%2:38:01:: 01977080 5 0 -dump%2:40:00:: 02225204 1 12 -dump%2:40:01:: 02350878 3 0 -dump%2:40:02:: 02224945 2 1 -dump_routine%1:10:00:: 06583518 1 0 -dump_truck%1:06:00:: 03256166 1 1 -dumpcart%1:06:00:: 03255899 1 0 -dumper%1:06:00:: 03256166 1 0 -dumpiness%1:07:00:: 04998816 1 0 -dumping%1:04:00:: 01115589 1 0 -dumpling%1:13:01:: 07702193 1 0 -dumpling%1:13:02:: 07611148 2 0 -dumplings%1:13:00:: 07702193 1 0 -dumps%1:26:00:: 14405061 1 0 -dumpsite%1:15:00:: 08560027 1 0 -dumpster%1:06:00:: 03256032 1 0 -dumpy%3:01:00:: 02715047 1 0 -dumpy%5:00:00:fat:01 00987510 3 0 -dumpy%5:00:00:short:03 02386962 2 0 -dumpy_level%1:06:00:: 03256472 1 0 -dumuzi%1:18:00:: 09517492 1 0 -dun%1:05:00:: 02381261 1 1 -dun%1:07:00:: 04973110 2 0 -dun%2:30:00:: 00312165 4 0 -dun%2:30:01:: 00528115 3 0 -dun%2:32:00:: 00845144 2 0 -dun%2:37:00:: 01803003 1 0 -dun%5:00:00:chromatic:00 00374818 1 1 -dun-colored%5:00:00:colored:00 00397441 1 0 -dun-coloured%5:00:00:colored:00 00397441 1 0 -duncan%1:18:00:: 10945415 1 0 -duncan_grant%1:18:00:: 11011559 1 0 -duncan_james_corrow_grant%1:18:00:: 11011559 1 0 -dunce%1:18:00:: 10039663 1 0 -dunce's_cap%1:06:00:: 03256631 1 0 -dunce_cap%1:06:00:: 03256631 1 0 -duncical%5:00:00:stupid:00 00440292 1 0 -duncish%5:00:00:stupid:00 00440292 1 0 -dundathu_pine%1:20:00:: 11648039 1 0 -dunderhead%1:18:00:: 10039663 1 0 -dune%1:17:00:: 09270735 1 1 -dune_buggy%1:06:00:: 03256788 1 0 -dune_cycling%1:04:00:: 00451768 1 0 -dung%1:27:00:: 14854847 1 2 -dung%2:29:00:: 00074453 2 0 -dung%2:30:00:: 00502623 1 0 -dung_beetle%1:05:00:: 02172182 1 0 -dungaree%1:06:00:: 03175189 1 0 -dungeness_crab%1:05:00:: 01978287 2 0 -dungeness_crab%1:13:00:: 07788609 1 0 -dungeon%1:06:00:: 03610098 1 3 -dungeon%1:06:01:: 03256928 2 0 -dunghill%1:14:00:: 07962295 2 0 -dunghill%1:26:00:: 14495980 1 0 -dunk%1:04:00:: 00110554 1 0 -dunk%2:34:00:: 01192312 3 0 -dunk%2:35:00:: 01577093 1 1 -dunk%2:35:01:: 01597662 2 0 -dunk_shot%1:04:00:: 00110554 1 0 -dunkard%1:18:00:: 09677830 1 0 -dunker%1:18:00:: 09677830 3 0 -dunker%1:18:01:: 10039946 2 0 -dunker%1:18:02:: 10040049 1 0 -dunkerque%1:04:00:: 01277938 2 0 -dunkerque%1:15:00:: 08935978 1 0 -dunkers%1:14:00:: 08090547 1 0 -dunkirk%1:04:00:: 01277938 3 0 -dunkirk%1:15:00:: 08935978 2 0 -dunkirk%1:26:00:: 14032868 1 0 -dunlin%1:05:00:: 02027492 1 0 -dunnock%1:05:00:: 01527347 1 0 -duns_scotus%1:18:00:: 10945546 1 0 -duo%1:10:00:: 07041451 4 0 -duo%1:14:00:: 07985628 3 0 -duo%1:14:01:: 08247021 2 0 -duo%1:23:00:: 13743605 1 0 -duodecimal%1:23:00:: 13738459 1 0 -duodecimal%5:00:00:quantitative:00 01915482 1 0 -duodecimal_digit%1:23:00:: 13741797 1 0 -duodecimal_notation%1:10:00:: 06810997 1 0 -duodecimal_number_system%1:10:00:: 06811109 1 0 -duodecimal_system%1:10:00:: 06811109 1 0 -duodenal%3:01:00:: 02908647 1 0 -duodenal_smear%1:08:00:: 05266096 1 0 -duodenal_ulcer%1:26:00:: 14212579 1 0 -duodenum%1:08:00:: 05534955 1 0 -duologue%1:10:00:: 07010692 2 0 -duologue%1:10:01:: 07136206 1 0 -duomo%1:06:00:: 02984203 1 0 -dupe%1:18:00:: 10752480 1 0 -dupe%2:32:00:: 00854904 1 1 -dupery%1:04:00:: 00753685 1 0 -duple%5:00:00:multiple:00 02217452 1 0 -duple_time%1:28:00:: 15264168 1 0 -duplex%1:06:01:: 03257065 2 0 -duplex%1:06:02:: 03257210 1 0 -duplex%2:30:00:: 00586157 1 0 -duplex%5:00:00:bidirectional:00 00233756 2 0 -duplex%5:00:00:multiple:00 02218179 1 0 -duplex_apartment%1:06:00:: 03257065 1 0 -duplex_house%1:06:00:: 03257210 1 0 -duplicability%1:07:00:: 04806169 1 0 -duplicable%5:00:00:reproducible:00 01868185 1 1 -duplicatable%5:00:00:reproducible:00 01868185 1 0 -duplicate%1:06:00:: 03257343 2 0 -duplicate%1:06:01:: 03307981 1 0 -duplicate%2:30:00:: 00246217 4 0 -duplicate%2:36:00:: 01734502 1 3 -duplicate%2:36:01:: 01735308 3 0 -duplicate%2:42:00:: 02659358 2 0 -duplicate%5:00:00:matched:00 01486854 2 0 -duplicate%5:00:00:same:00 02063903 1 0 -duplication%1:04:00:: 01019703 2 1 -duplication%1:06:00:: 03257343 1 1 -duplicator%1:06:00:: 03257586 1 0 -duplicidentata%1:05:00:: 02322992 1 0 -duplicitous%5:00:00:dishonest:00 01223271 1 0 -duplicity%1:04:00:: 00753240 2 0 -duplicity%1:10:00:: 06760969 1 0 -dura%1:08:00:: 05482529 1 0 -dura_mater%1:08:00:: 05482529 1 0 -durability%1:07:00:: 05053688 1 1 -durable%5:00:00:imperishable:00 01754049 3 0 -durable%5:00:00:long:02 01439496 1 1 -durable%5:00:00:serviceable:00 02124096 2 0 -durable_goods%1:06:00:: 03257877 1 0 -durable_press%1:06:00:: 03917814 1 0 -durables%1:06:00:: 03257877 1 0 -durabolin%1:27:00:: 14748335 1 0 -dural%3:01:00:: 02715142 1 0 -duralumin%1:27:00:: 14839322 1 0 -duramen%1:20:00:: 13097752 1 0 -durance%1:26:00:: 14000105 1 0 -durango%1:15:00:: 08743229 1 0 -durant%1:18:00:: 10945699 1 0 -durante%1:18:00:: 10945825 1 0 -duration%1:07:00:: 05051249 3 1 -duration%1:28:00:: 15133488 2 1 -duration%1:28:02:: 15133621 1 5 -durative%1:24:00:: 13805179 1 0 -durative_aspect%1:24:00:: 13805179 1 0 -durazzo%1:15:00:: 08705251 1 0 -durban%1:15:00:: 09001007 1 0 -durbar%1:06:00:: 03258049 1 0 -durer%1:18:00:: 10945977 1 0 -duress%1:07:00:: 05195548 1 0 -durga%1:18:00:: 09525746 1 0 -durham%1:05:00:: 02407071 2 0 -durham%1:15:00:: 09128536 1 0 -durian%1:13:00:: 07762913 2 0 -durian%1:20:00:: 12190869 1 0 -durian_tree%1:20:00:: 12190869 1 0 -durio%1:20:00:: 12190712 1 0 -durio_zibethinus%1:20:00:: 12190869 1 0 -durion%1:20:00:: 12190869 1 0 -durkheim%1:18:00:: 10946134 1 0 -durmast%1:20:00:: 12276477 1 0 -durra%1:20:00:: 12137791 1 0 -durrell%1:18:00:: 10946286 1 0 -durres%1:15:00:: 08705251 1 0 -durum%1:20:00:: 12142450 1 0 -durum_wheat%1:20:00:: 12142450 1 0 -dusanbe%1:15:00:: 09021313 1 0 -duse%1:18:00:: 10946481 1 0 -dushanbe%1:15:00:: 09021313 1 0 -dusicyon%1:05:00:: 02116079 1 0 -dusicyon_cancrivorus%1:05:00:: 02116185 1 0 -dusk%1:28:00:: 15169421 1 5 -dusk%2:30:00:: 00312575 1 0 -duskiness%1:07:00:: 04978216 2 0 -duskiness%1:26:00:: 13985323 1 0 -dusky%5:00:00:brunet:00 00245458 2 1 -dusky%5:00:00:dark:01 00275486 1 1 -dusky-colored%5:00:00:colored:00 00397314 1 0 -dusky-coloured%5:00:00:colored:00 00397314 1 0 -dusky-footed_wood_rat%1:05:00:: 02339282 1 0 -dusky-footed_woodrat%1:05:00:: 02340186 1 0 -dusky_salamander%1:05:00:: 01636829 1 0 -dusky_shark%1:05:00:: 01490360 1 0 -dusseldorf%1:15:00:: 08772667 1 0 -dust%1:27:00:: 14839846 1 38 -dust%1:27:01:: 14857897 2 15 -dust%1:27:02:: 14840092 3 0 -dust%2:35:00:: 01244351 1 3 -dust%2:35:01:: 01376245 4 0 -dust%2:35:02:: 01252216 2 1 -dust%2:35:03:: 01612660 3 0 -dust-covered%5:00:00:covered:00 01696346 1 0 -dust_bag%1:06:00:: 03258192 1 0 -dust_bowl%1:15:00:: 08578174 1 0 -dust_cloud%1:19:00:: 11441980 1 2 -dust_coat%1:06:00:: 03258730 1 0 -dust_contamination%1:04:00:: 00277267 2 0 -dust_contamination%1:26:00:: 14487902 1 0 -dust_cover%1:06:00:: 03258456 3 0 -dust_cover%1:06:01:: 03258577 2 0 -dust_cover%1:10:00:: 07248320 1 0 -dust_devil%1:19:00:: 11448013 1 0 -dust_jacket%1:10:00:: 07248320 1 0 -dust_mop%1:06:00:: 03258905 1 0 -dust_sheet%1:06:00:: 03258577 1 0 -dust_storm%1:19:00:: 11448153 1 0 -dust_wrapper%1:10:00:: 07248320 1 0 -dustbin%1:06:00:: 02747177 1 1 -dustcart%1:06:00:: 03417042 1 0 -dustcloth%1:06:00:: 03258330 1 0 -duster%1:04:00:: 00108081 4 0 -duster%1:06:00:: 03258730 2 0 -duster%1:06:01:: 03258330 3 0 -duster%1:19:00:: 11448153 1 0 -dustin_hoffman%1:18:00:: 11054442 1 0 -dustiness%1:26:00:: 14498733 1 0 -dusting_powder%1:06:00:: 04447276 1 0 -dustlike%5:00:00:fine:00 02233072 1 0 -dustman%1:18:00:: 10120330 1 0 -dustmop%1:06:00:: 03258905 1 0 -dustpan%1:06:00:: 03259009 2 0 -dustpan%1:23:00:: 13767042 1 0 -dustpanful%1:23:00:: 13767042 1 1 -dustrag%1:06:00:: 03258330 1 0 -dustup%1:10:00:: 07184149 1 0 -dusty%5:00:00:covered:00 01696346 1 0 -dusty%5:00:00:unoriginal:00 01689580 2 0 -dusty_miller%1:20:01:: 11931312 4 0 -dusty_miller%1:20:02:: 12023407 1 0 -dusty_miller%1:20:03:: 12011620 2 0 -dusty_miller%1:20:04:: 11947629 3 0 -dusty_miller%1:20:05:: 11812094 5 0 -dutch%1:10:00:: 06952572 2 0 -dutch%1:18:00:: 09699763 1 0 -dutch%3:01:00:: 02960686 1 5 -dutch-elm_beetle%1:05:00:: 02179891 1 0 -dutch-processed_cocoa%1:13:00:: 07604043 1 0 -dutch_auction%1:04:00:: 01115734 1 0 -dutch_capital%1:15:00:: 08949737 1 0 -dutch_case-knife_bean%1:20:00:: 12557681 1 0 -dutch_clover%1:20:00:: 11753700 1 0 -dutch_courage%1:07:00:: 04858222 1 0 -dutch_door%1:06:00:: 03259118 1 0 -dutch_east_indies%1:15:00:: 08907606 1 0 -dutch_elm%1:20:00:: 12407222 1 0 -dutch_elm_disease%1:26:00:: 14282698 1 0 -dutch_elm_fungus%1:20:00:: 12964920 1 0 -dutch_florin%1:23:00:: 13679855 1 0 -dutch_guiana%1:15:00:: 09030752 1 0 -dutch_hoe%1:06:00:: 04156591 1 0 -dutch_iris%1:20:01:: 12413301 2 0 -dutch_iris%1:20:02:: 12414818 1 0 -dutch_leonard%1:18:00:: 11128236 1 0 -dutch_monetary_unit%1:23:00:: 13679739 1 0 -dutch_oven%1:06:00:: 03259280 1 1 -dutch_oven%1:06:01:: 03259401 2 0 -dutch_people%1:18:00:: 09699763 1 0 -dutch_treat%1:04:00:: 00841527 1 0 -dutch_uncle%1:18:00:: 10040240 1 0 -dutchman%1:18:00:: 09713108 1 0 -dutchman's-pipe%1:20:00:: 11801665 1 0 -dutchman's_breeches%1:20:00:: 11910460 1 0 -duteous%5:00:00:obedient:00 01613047 1 0 -dutiable%5:00:00:taxable:00 02400628 1 0 -dutiful%5:00:00:obedient:00 01613047 1 0 -dutifully%4:02:00:: 00323519 1 0 -dutifulness%1:07:00:: 04827392 1 0 -duty%1:04:00:: 01129920 1 13 -duty%1:04:02:: 00719494 2 12 -duty%1:21:00:: 13315999 3 2 -duty-bound%5:00:00:obligated:00 01616891 1 0 -duty-free%5:00:00:nontaxable:00 02401196 1 0 -duty_assignment%1:04:00:: 00730247 1 0 -duty_period%1:28:00:: 15291801 1 0 -duty_tour%1:28:00:: 15293590 1 0 -duvalier%1:18:00:: 10946624 2 0 -duvalier%1:18:01:: 10946750 1 0 -duvet%1:06:00:: 03266749 1 0 -dvd%1:06:00:: 04533946 1 0 -dvorak%1:18:00:: 10946961 1 0 -dwarf%1:03:00:: 00005930 3 0 -dwarf%1:18:00:: 10040344 1 1 -dwarf%1:18:01:: 09541125 2 0 -dwarf%2:41:00:: 02452614 2 0 -dwarf%2:42:00:: 02696306 1 3 -dwarf-white_trillium%1:20:00:: 12468719 1 0 -dwarf_astilbe%1:20:00:: 12795352 1 0 -dwarf_banana%1:20:00:: 12352639 1 0 -dwarf_bilberry%1:20:00:: 12247407 1 0 -dwarf_blueberry%1:20:00:: 12247407 1 0 -dwarf_buckeye%1:20:00:: 12769065 1 0 -dwarf_buffalo%1:05:00:: 02409038 1 0 -dwarf_cape_gooseberry%1:20:00:: 12911264 1 0 -dwarf_chestnut%1:20:00:: 12263738 1 0 -dwarf_chinkapin_oak%1:20:00:: 12277334 1 0 -dwarf_chinquapin_oak%1:20:00:: 12277334 1 0 -dwarf_cornel%1:20:00:: 12948251 1 0 -dwarf_daisy%1:20:00:: 11924014 1 0 -dwarf_dandelion%1:20:00:: 11985903 1 0 -dwarf_elder%1:20:01:: 12679023 1 0 -dwarf_elder%1:20:02:: 11798270 2 0 -dwarf_elm%1:20:00:: 12408077 1 0 -dwarf_flowering_almond%1:20:00:: 12646197 1 0 -dwarf_golden_chinkapin%1:20:00:: 12265083 1 0 -dwarf_gray_willow%1:20:00:: 12730544 1 0 -dwarf_grey_willow%1:20:00:: 12730544 1 0 -dwarf_hulsea%1:20:00:: 11983606 1 0 -dwarf_iris%1:20:01:: 12414932 1 0 -dwarf_iris%1:20:02:: 12413165 2 0 -dwarf_juniper%1:20:01:: 11637991 2 0 -dwarf_juniper%1:20:02:: 11638378 1 0 -dwarf_lycopod%1:20:00:: 13225075 1 0 -dwarf_maple%1:20:00:: 12754174 1 0 -dwarf_mountain_pine%1:20:00:: 11612349 1 0 -dwarf_mulberry%1:20:00:: 12657294 1 0 -dwarf_nipplewort%1:20:00:: 11927740 1 0 -dwarf_oak%1:20:00:: 12277334 1 0 -dwarf_phlox%1:20:00:: 12811027 1 0 -dwarf_pipefish%1:05:00:: 01456137 1 0 -dwarf_pocket_rat%1:05:00:: 02350670 1 0 -dwarf_russian_almond%1:20:00:: 12650229 1 0 -dwarf_sperm_whale%1:05:00:: 02067768 1 0 -dwarf_spurge%1:20:00:: 12921315 1 0 -dwarf_sumac%1:20:00:: 12763762 1 0 -dwarf_tulip%1:20:00:: 12454436 1 0 -dwarf_willow%1:20:00:: 12728656 1 0 -dwarfish%5:00:00:small:00 01393024 1 0 -dwarfishness%1:07:00:: 05107668 1 0 -dwarfism%1:26:00:: 14506403 1 0 -dweeb%1:18:00:: 10684630 1 0 -dwell%2:31:00:: 00704249 1 4 -dwell%2:32:00:: 00959367 5 0 -dwell%2:42:00:: 02649830 3 3 -dwell%2:42:01:: 02653381 2 3 -dwell%2:42:03:: 02755773 4 0 -dwell_on%2:42:00:: 02640226 1 1 -dweller%1:18:00:: 09620078 1 3 -dwelling%1:06:00:: 03259505 1 11 -dwelling_house%1:06:00:: 03259505 1 1 -dwight_d._eisenhower%1:18:00:: 10954966 1 0 -dwight_david_eisenhower%1:18:00:: 10954966 1 0 -dwight_davis%1:18:00:: 10924452 1 0 -dwight_eisenhower%1:18:00:: 10954966 1 0 -dwight_filley_davis%1:18:00:: 10924452 1 0 -dwight_lyman_moody%1:18:00:: 11188742 1 0 -dwindle%2:30:00:: 00267681 1 9 -dwindle_away%2:30:00:: 00267681 1 0 -dwindle_down%2:30:00:: 00267681 1 0 -dwindling%1:11:00:: 07422800 1 0 -dwindling%5:00:00:decreasing:00 02537513 1 2 -dwindling_away%1:11:00:: 07422800 1 1 -dy%1:27:00:: 14636647 1 0 -dyad%1:23:00:: 13743605 1 0 -dyadic%3:01:00:: 02854257 1 0 -dyadic_operation%1:22:00:: 13470392 1 0 -dyarchy%1:14:00:: 08361612 1 0 -dyaus%1:18:00:: 09525874 1 0 -dyaus-pitar%1:18:00:: 09525874 1 0 -dybbuk%1:18:00:: 09543154 1 0 -dye%1:27:00:: 14985383 1 0 -dye%2:30:00:: 00283090 1 1 -dye-works%1:06:00:: 03260206 1 0 -dyed%5:00:00:artificial:00 01572171 1 0 -dyeing%1:04:00:: 00275424 1 1 -dyer%1:18:00:: 10040515 1 0 -dyer's-broom%1:20:00:: 12530818 1 0 -dyer's_greenweed%1:20:00:: 12530818 1 0 -dyer's_mignonette%1:20:00:: 12385830 1 0 -dyer's_rocket%1:20:00:: 12385830 1 0 -dyer's_weed%1:20:00:: 12017511 1 0 -dyer's_woad%1:20:00:: 11890150 1 0 -dyer's_woodruff%1:20:00:: 12661661 1 0 -dyers'_chamomile%1:20:00:: 11923397 1 0 -dyestuff%1:27:00:: 14985383 1 0 -dyeweed%1:20:00:: 12530818 1 0 -dyewood%1:27:00:: 15100023 1 0 -dying%1:28:00:: 15143477 1 1 -dying%3:00:00:: 00003939 1 2 -dying%5:00:00:eager:00 00811248 2 0 -dyirbal%1:10:00:: 06940502 1 0 -dyke%1:06:00:: 03160309 2 0 -dyke%1:18:00:: 09883947 1 0 -dyke%2:35:00:: 01587818 1 0 -dylan%1:18:00:: 10947108 1 0 -dylan%1:18:01:: 09509119 2 0 -dylan_marlais_thomas%1:18:00:: 11339041 1 0 -dylan_thomas%1:18:00:: 11339041 1 0 -dynamic%1:16:00:: 09179962 1 0 -dynamic%3:00:00:: 00808191 1 3 -dynamic%3:00:04:: 00041618 3 0 -dynamic%3:01:02:: 02979878 2 0 -dynamic_balance%1:26:00:: 14002915 1 0 -dynamic_electricity%1:19:00:: 11514559 1 0 -dynamic_headroom%1:04:00:: 01020628 1 0 -dynamic_viscosity%1:23:00:: 13589140 1 0 -dynamical%3:00:00:: 00808191 1 0 -dynamical_system%1:09:00:: 06246361 1 0 -dynamically%4:02:00:: 00323666 1 0 -dynamics%1:09:00:: 06113597 1 1 -dynamise%2:30:00:: 00551718 2 0 -dynamise%2:30:01:: 00551840 1 0 -dynamism%1:07:00:: 04635482 3 0 -dynamism%1:07:01:: 05030806 2 0 -dynamism%1:09:00:: 05960925 1 0 -dynamite%1:06:00:: 03260293 1 1 -dynamite%2:30:00:: 00307419 1 1 -dynamiter%1:18:00:: 10040789 1 0 -dynamitist%1:18:00:: 10040789 1 0 -dynamize%2:30:00:: 00551718 2 0 -dynamize%2:30:01:: 00551840 1 0 -dynamo%1:06:00:: 03260504 1 0 -dynamometer%1:06:00:: 03260733 1 0 -dynapen%1:06:00:: 03192347 1 0 -dynast%1:18:00:: 10541983 1 0 -dynastic%3:01:00:: 02715244 1 0 -dynasty%1:14:00:: 07971582 1 1 -dyne%1:23:00:: 13647498 1 0 -dysaphia%1:26:00:: 14058934 1 0 -dysarthria%1:26:00:: 14402015 1 0 -dyscalculia%1:26:00:: 14099439 1 0 -dyschezia%1:26:00:: 14371449 1 0 -dyscrasia%1:26:00:: 14053717 1 0 -dysdercus%1:05:00:: 02245239 1 0 -dysentery%1:26:00:: 14129999 1 1 -dysfunction%1:26:00:: 14557898 1 0 -dysfunctional%5:00:00:impaired:00 01275057 1 0 -dysfunctional%5:00:00:maladaptive:00 00046792 2 0 -dysgenesis%1:26:00:: 14045954 1 0 -dysgenic%3:01:00:: 02715365 1 0 -dysgenics%1:09:00:: 06042690 1 0 -dysgraphia%1:26:00:: 14099552 1 0 -dyskinesia%1:26:00:: 14092577 1 0 -dyslectic%1:18:00:: 10040617 1 0 -dyslectic%5:00:00:impaired:00 01275195 1 0 -dyslexia%1:26:00:: 14099643 1 0 -dyslexic%3:01:00:: 03040408 1 0 -dyslexic%5:00:00:impaired:00 01275195 2 0 -dyslogia%1:26:00:: 14402184 1 0 -dyslogistic%5:00:00:uncomplimentary:00 00907243 1 0 -dysmenorrhea%1:26:00:: 14326190 1 0 -dysomia%1:26:00:: 14552355 1 0 -dysosmia%1:26:00:: 14059021 1 0 -dysostosis_multiplex%1:26:00:: 14157163 1 0 -dyspepsia%1:26:00:: 14336317 1 0 -dyspeptic%1:18:00:: 10040698 1 0 -dyspeptic%5:00:00:ill-natured:00 01135269 2 0 -dyspeptic%5:00:00:ill:01 02544427 1 0 -dysphagia%1:26:00:: 14059143 1 0 -dysphasia%1:26:00:: 14099785 1 0 -dysphemism%1:10:00:: 06605396 1 0 -dysphemistic%3:00:00:: 00908672 1 0 -dysphonia%1:26:00:: 14402377 1 0 -dysphoria%1:12:00:: 07539367 1 0 -dysphoric%3:00:00:: 00909363 1 0 -dysplasia%1:26:00:: 14365950 1 0 -dysplastic%3:01:00:: 02715567 1 0 -dyspnea%1:26:00:: 14369744 1 0 -dyspneal%3:00:00:: 00267871 1 0 -dyspneic%3:00:00:: 00267871 1 0 -dyspnoea%1:26:00:: 14369744 1 0 -dyspnoeal%3:00:00:: 00267871 1 0 -dyspnoeic%3:00:00:: 00267871 1 0 -dysprosium%1:27:00:: 14636647 1 0 -dyssynergia%1:26:00:: 14091254 1 0 -dysthymia%1:26:00:: 14389909 1 0 -dysthymic_depression%1:26:00:: 14389909 1 0 -dystopia%1:10:00:: 06367702 2 0 -dystopia%1:26:00:: 13932213 1 0 -dystopian%3:00:00:: 02498507 2 0 -dystopian%3:01:00:: 03020075 1 0 -dystrophy%1:26:00:: 14059336 2 0 -dystrophy%1:26:01:: 14160365 1 0 -dysuria%1:26:00:: 14059252 1 0 -dytiscidae%1:05:00:: 02177068 1 0 -dyushambe%1:15:00:: 09021313 1 0 -dziggetai%1:05:00:: 02390938 1 0 -e%1:10:00:: 06831605 5 0 -e%1:23:00:: 13754165 4 0 -e%1:24:00:: 13832355 3 0 -e%1:27:00:: 14636822 2 0 -e%1:27:01:: 15092409 1 0 -e'en%4:02:00:: 00018265 1 0 -e'er%4:02:00:: 00019339 1 0 -e-bomb%1:06:00:: 03761333 1 0 -e-commerce%1:04:00:: 01092974 1 0 -e-mail%1:10:00:: 06279326 1 0 -e-mail%2:32:00:: 01032451 1 0 -e-mycin%1:06:00:: 03295357 1 0 -e._a._von_willebrand%1:18:00:: 11388321 1 0 -e._b._white%1:18:00:: 11383767 1 0 -e._coli%1:05:00:: 01368338 1 0 -e._e._cummings%1:18:00:: 10917377 1 0 -e._g._marshall%1:18:00:: 11159214 1 0 -e._h._harriman%1:18:00:: 11029888 1 0 -e._h._weber%1:18:00:: 11378254 1 0 -e._l._doctorow%1:18:00:: 10937882 1 0 -e._o._lawrence%1:18:00:: 11120368 1 0 -e._o._wilson%1:18:00:: 11391379 1 0 -e._t._a._hoffmann%1:18:00:: 11054670 1 0 -e._t._s._walton%1:18:00:: 11372896 1 0 -e._w._morley%1:18:00:: 11191251 1 0 -e.g.%4:02:00:: 00159040 1 7 -e.s.p.%1:10:00:: 07256695 1 0 -e_layer%1:15:00:: 08582613 1 0 -e_region%1:15:00:: 08582613 1 0 -ea%1:18:00:: 09517628 1 0 -each%4:02:00:: 00239908 1 7 -each%5:00:00:all:00 02269635 1 64 -each_week%4:02:00:: 00081591 1 4 -each_year%4:02:00:: 00081737 1 3 -each_year%4:02:01:: 00250570 2 0 -eacles%1:05:00:: 02302124 1 0 -eacles_imperialis%1:05:00:: 02302244 1 0 -eadweard_muybridge%1:18:00:: 11198608 1 0 -eadwig%1:18:00:: 10953035 1 0 -eager%1:11:00:: 07403920 1 0 -eager%3:00:00:: 00810916 1 20 -eager_beaver%1:18:00:: 10040945 1 0 -eagerly%4:02:00:: 00200777 1 6 -eagerness%1:07:00:: 04644719 2 0 -eagerness%1:12:00:: 07555184 1 5 -eagle%1:05:00:: 01613294 1 1 -eagle%1:10:00:: 06881563 4 0 -eagle%1:21:00:: 13392472 3 0 -eagle%1:23:00:: 13595968 2 0 -eagle%2:33:00:: 01113134 2 0 -eagle%2:35:00:: 01598637 1 0 -eagle-eyed%5:00:00:farsighted:00 02157594 1 1 -eagle_ray%1:05:00:: 01498989 1 0 -eagle_scout%1:18:00:: 10041093 1 0 -eaglet%1:05:00:: 01613807 1 0 -eagre%1:11:00:: 07403920 1 0 -eames%1:18:00:: 10947259 1 0 -eames_chair%1:06:00:: 03260849 1 0 -eamon_de_valera%1:18:00:: 10932244 1 0 -ear%1:08:00:: 05320899 1 36 -ear%1:08:01:: 05323889 3 6 -ear%1:09:00:: 05657999 2 7 -ear%1:09:01:: 05703205 4 1 -ear%1:20:00:: 13133613 5 0 -ear-like%5:00:00:rounded:00 02045144 1 0 -ear-nose-and-throat_doctor%1:18:00:: 10059323 1 0 -ear-shaped%5:00:00:rounded:00 02045144 1 0 -ear-shell%1:05:00:: 01942869 1 0 -ear_canal%1:08:00:: 05248667 1 0 -ear_doctor%1:18:00:: 10041195 1 0 -ear_fungus%1:20:00:: 13062421 1 0 -ear_hole%1:06:00:: 03261157 1 0 -ear_lobe%1:08:00:: 05323588 1 0 -ear_specialist%1:18:00:: 10041195 1 0 -ear_trumpet%1:06:00:: 03506560 1 0 -earache%1:26:00:: 14327435 1 0 -eardrop%1:06:00:: 03909020 1 0 -eardrum%1:08:00:: 05318831 1 0 -eared%3:00:00:: 00812170 2 0 -eared%5:00:00:worn:00 02581829 1 1 -eared_grebe%1:05:00:: 02050586 1 0 -eared_seal%1:05:00:: 02076779 1 0 -earflap%1:06:00:: 03261019 1 0 -earful%1:10:00:: 06713187 2 0 -earful%1:10:01:: 07223094 1 0 -earhart%1:18:00:: 10947403 1 0 -earl%1:18:00:: 10041373 1 1 -earl_marshal%1:18:00:: 10041539 1 0 -earl_of_leicester%1:18:00:: 11187754 1 0 -earl_of_warwick%1:18:00:: 11375087 1 0 -earl_russell%1:18:00:: 11274812 1 0 -earl_warren%1:18:00:: 11374789 1 0 -earlap%1:06:00:: 03261019 1 0 -earldom%1:15:00:: 08557271 2 0 -earldom%1:26:00:: 14432875 1 0 -earleaved_umbrella_tree%1:20:00:: 11710658 1 0 -earless%3:00:00:: 00812860 1 0 -earless_lizard%1:05:00:: 01679307 1 0 -earless_seal%1:05:00:: 02079389 1 0 -earlier%4:02:00:: 00060939 1 18 -earlier%4:02:02:: 00259096 2 7 -earlier%4:02:04:: 00167286 3 1 -earlier%5:00:00:early:00 00814611 1 0 -earliest%4:02:00:: 00034641 1 1 -earliest%5:00:00:early:00 00814611 1 2 -earliness%1:07:00:: 05046659 1 0 -earlobe%1:08:00:: 05323588 1 0 -early%3:00:00:: 00812952 1 79 -early%3:00:01:: 00819852 5 2 -early%3:00:02:: 00817424 2 22 -early%4:02:00:: 00100082 2 6 -early%4:02:01:: 00100681 1 19 -early%4:02:02:: 00100592 3 1 -early%5:00:00:past:00 01729384 3 10 -early%5:00:00:young:00 01648617 4 6 -early%5:00:01:future:00 01732958 6 0 -early-blooming%5:00:00:vernal:00 01254607 1 0 -early-flowering%5:00:00:vernal:00 01254607 1 0 -early-morning_hour%1:28:00:: 15169136 1 0 -early_bird%1:18:00:: 10041684 2 0 -early_bird%1:18:01:: 10041787 1 0 -early_childhood%1:28:00:: 15145586 1 1 -early_coral_root%1:20:00:: 12054195 1 0 -early_days%1:28:00:: 15266034 1 2 -early_morel%1:20:00:: 13033134 1 0 -early_on%4:02:00:: 00100681 1 0 -early_purple_orchid%1:20:00:: 12043673 1 0 -early_spider_orchid%1:20:00:: 12075299 1 0 -early_wake-robin%1:20:00:: 12468719 1 0 -early_warning_radar%1:06:00:: 03261263 1 0 -early_warning_system%1:06:00:: 03261395 1 0 -early_winter_cress%1:20:00:: 11873845 1 0 -earlyish%5:00:00:early:00 00814902 1 0 -earmark%1:07:00:: 04732543 2 0 -earmark%1:10:00:: 06795438 1 0 -earmark%2:31:00:: 00724150 1 0 -earmuff%1:06:00:: 03261603 1 0 -earn%2:40:01:: 02289295 1 19 -earn%2:40:03:: 02290196 2 15 -earned%3:00:00:: 00821367 1 2 -earned_run%1:04:00:: 00189896 1 1 -earned_run_average%1:10:00:: 07261300 1 0 -earner%1:18:00:: 10041887 1 0 -earnest%1:21:00:: 13350182 1 1 -earnest%5:00:00:purposeful:00 01910114 3 0 -earnest%5:00:00:serious:00 02118840 1 2 -earnest%5:00:00:sincere:00 02179968 2 0 -earnest_money%1:21:00:: 13350322 1 0 -earnestly%4:02:02:: 00165018 1 2 -earnestness%1:07:00:: 04646548 2 0 -earnestness%1:12:00:: 07512315 1 1 -earning_per_share%1:21:00:: 13259481 1 0 -earnings%1:21:00:: 13279262 2 2 -earnings%1:21:01:: 13258362 1 4 -earnings_before_interest_taxes_depreciation_and_amortization%1:21:00:: 13255994 1 0 -earnings_report%1:21:00:: 13355301 1 0 -earphone%1:06:00:: 03261776 1 1 -earpiece%1:06:00:: 03261776 1 0 -earplug%1:06:00:: 03262072 2 0 -earplug%1:06:01:: 03262248 1 0 -earreach%1:15:00:: 08560785 1 0 -earring%1:06:00:: 03262349 1 0 -earshot%1:15:00:: 08560785 1 0 -earsplitting%5:00:00:loud:00 01453467 1 1 -earth%1:06:00:: 03462747 7 0 -earth%1:09:00:: 05670972 6 0 -earth%1:15:00:: 08562067 4 3 -earth%1:17:00:: 09270894 1 51 -earth%1:17:01:: 09334396 3 20 -earth%1:27:00:: 14842992 2 20 -earth%1:27:01:: 14844414 5 0 -earth%2:35:00:: 01292727 2 0 -earth%2:39:00:: 02146990 1 0 -earth's_crust%1:17:00:: 09260010 1 0 -earth's_surface%1:17:00:: 09451517 1 1 -earth-ball%1:20:01:: 12985420 1 0 -earth-closet%1:06:00:: 03860404 1 0 -earth-god%1:18:00:: 09535708 1 0 -earth-goddess%1:18:00:: 09535809 1 0 -earth-nut_pea%1:20:00:: 12542240 1 0 -earth-received_time%1:28:00:: 15130612 1 0 -earth-tongue%1:20:00:: 13226871 1 0 -earth_almond%1:20:00:: 12150969 1 0 -earth_color%1:27:00:: 14673978 1 0 -earth_god%1:18:00:: 09535708 1 0 -earth_goddess%1:18:00:: 09535809 1 0 -earth_mother%1:18:00:: 09535940 1 0 -earth_science%1:09:00:: 06115476 1 0 -earth_tremor%1:11:00:: 07429484 1 0 -earth_up%2:35:00:: 01477888 1 0 -earth_wax%1:27:00:: 14665102 1 0 -earthball%1:20:00:: 12969131 1 0 -earthborn%5:00:00:earthly:00 01181116 3 0 -earthborn%5:00:00:human:00 01259280 2 0 -earthborn%5:00:00:mortal:00 01557790 1 0 -earthbound%5:00:00:earthly:00 01181251 1 1 -earthbound%5:00:00:uninteresting:00 01346343 2 0 -earthen%3:01:00:: 02905050 1 0 -earthenware%1:06:00:: 03262519 1 0 -earthenware_jar%1:06:00:: 03133415 1 0 -earthing%1:04:00:: 00148836 1 0 -earthlike%5:00:00:chromatic:00 00374944 1 1 -earthlike%5:00:00:earthly:00 01181329 2 0 -earthling%1:18:00:: 10699262 1 0 -earthly%3:00:00:: 01180695 1 0 -earthly_concern%1:09:00:: 05670972 1 0 -earthman%1:18:00:: 10699262 1 2 -earthnut%1:13:01:: 07736971 4 0 -earthnut%1:13:02:: 07737745 3 0 -earthnut%1:20:01:: 12936155 2 0 -earthnut%1:20:02:: 12985420 1 0 -earthnut_pea%1:20:00:: 12542240 1 0 -earthquake%1:11:00:: 07428954 1 17 -earthquake%1:26:00:: 13977870 2 0 -earthshaking%5:00:00:loud:00 01453625 1 1 -earthshaking%5:00:00:significant:00 02162458 2 0 -earthstar%1:20:00:: 13044778 1 0 -earthtongue%1:20:00:: 13226871 1 0 -earthwork%1:06:00:: 03262717 1 0 -earthworm%1:05:00:: 01935395 1 0 -earthy%3:01:00:: 02905151 4 0 -earthy%5:00:00:indecent:00 00683531 1 2 -earthy%5:00:00:natural:01 01570286 2 1 -earthy%5:00:00:realistic:00 01940472 5 0 -earthy%5:00:00:uninhibited:00 01317362 3 1 -earwax%1:27:00:: 15095103 1 0 -earwig%1:05:00:: 02272871 1 0 -eas%1:10:00:: 07224923 1 0 -ease%1:04:00:: 01064148 5 0 -ease%1:07:00:: 04708113 1 1 -ease%1:07:01:: 04786994 4 0 -ease%1:26:01:: 14491889 2 0 -ease%1:26:02:: 14445749 3 0 -ease%2:29:00:: 00082308 2 4 -ease%2:30:00:: 00518395 3 3 -ease%2:37:00:: 01815185 4 1 -ease%2:38:00:: 01834213 1 4 -ease_off%2:30:00:: 00156485 1 0 -ease_off%2:30:02:: 00156276 2 0 -ease_up%2:30:00:: 00156485 2 1 -ease_up%2:30:02:: 00156276 3 0 -ease_up%2:38:00:: 01848465 1 1 -eased%5:00:00:mitigated:00 01519465 1 0 -easel%1:06:00:: 03262809 1 4 -easement%1:04:00:: 00354884 2 0 -easement%1:07:00:: 05179180 1 0 -easily%4:02:01:: 00147876 1 31 -easily%4:02:05:: 00012531 3 0 -easily%4:02:06:: 00054435 2 3 -easiness%1:04:00:: 01224346 3 0 -easiness%1:07:00:: 04708113 2 0 -easiness%1:12:00:: 07515974 1 0 -easing%1:04:00:: 00354884 2 0 -easing%1:11:00:: 07357101 1 0 -east%1:15:00:: 08562620 2 4 -east%1:15:01:: 08563180 3 2 -east%1:15:02:: 08561351 5 0 -east%1:24:00:: 13832355 1 6 -east%1:24:02:: 13835664 4 0 -east%3:00:00:: 00823350 1 7 -east%4:02:00:: 00323786 1 1 -east-central%5:00:00:eastern:02 00827192 1 0 -east-sider%1:18:00:: 10042186 1 0 -east-west_direction%1:15:00:: 08681422 1 0 -east_africa%1:15:00:: 08699426 1 0 -east_african%3:01:00:: 02941957 1 0 -east_african_cedar%1:20:00:: 11637659 1 0 -east_anglia%1:15:00:: 08884673 1 0 -east_by_north%1:24:00:: 13832236 1 0 -east_by_south%1:24:00:: 13832480 1 0 -east_chadic%1:10:00:: 06985892 1 0 -east_china_sea%1:17:00:: 09271291 1 0 -east_coast%1:15:00:: 09048127 1 0 -east_german%1:18:00:: 09748101 1 1 -east_german%3:01:00:: 02957699 1 1 -east_germanic%1:10:00:: 06955560 1 0 -east_germanic_language%1:10:00:: 06955560 1 0 -east_germany%1:15:00:: 08768647 1 0 -east_india%1:15:00:: 08841956 1 0 -east_india_company%1:14:00:: 08002717 1 0 -east_india_kino%1:20:00:: 12566112 1 0 -east_india_rosewood%1:20:00:: 12522678 1 0 -east_indian%1:18:00:: 09700253 1 0 -east_indian%3:01:00:: 02942077 1 0 -east_indian_fig_tree%1:20:00:: 12402348 1 0 -east_indian_rosebay%1:20:00:: 11776511 1 0 -east_indian_rosewood%1:20:00:: 12522678 1 0 -east_indies%1:15:00:: 08841956 1 0 -east_malaysia%1:15:00:: 08964099 1 0 -east_midland%1:10:00:: 06948943 1 0 -east_northeast%1:24:00:: 13832118 1 0 -east_pakistan%1:15:00:: 08848731 1 0 -east_pakistani%3:01:00:: 03046349 1 0 -east_river%1:15:00:: 09123387 1 0 -east_saint_louis%1:15:00:: 09083795 1 0 -east_sea%1:17:00:: 09428036 1 0 -east_side%1:15:00:: 08650073 1 2 -east_southeast%1:24:00:: 13832599 1 0 -east_sussex%1:15:00:: 08883309 1 0 -east_timor%1:15:00:: 08776435 1 0 -east_tocharian%1:10:00:: 06968909 1 0 -east_turkestan_islamic_movement%1:14:00:: 08019913 1 0 -east_turkistan_islamic_movement%1:14:00:: 08019913 1 0 -east_wind%1:19:00:: 11448343 1 0 -eastbound%5:00:00:east:00 00823556 1 0 -easter%1:19:00:: 11448343 2 0 -easter%1:28:00:: 15188154 1 3 -easter_bunny%1:05:00:: 02451818 1 0 -easter_cactus%1:20:00:: 11848009 1 0 -easter_card%1:10:00:: 06627722 1 1 -easter_daisy%1:20:00:: 12026476 1 0 -easter_day%1:28:00:: 15188359 1 0 -easter_egg%1:13:00:: 07841800 2 0 -easter_egg%1:13:01:: 07841907 1 0 -easter_lily%1:20:00:: 12427757 1 0 -easter_lily_vine%1:20:00:: 11771147 1 0 -easter_sunday%1:28:00:: 15188359 1 0 -easterly%1:19:00:: 11448343 1 0 -easterly%4:02:02:: 00324235 1 0 -easterly%5:00:01:east:00 00823665 2 0 -easterly%5:00:02:east:00 00823832 1 0 -eastern%3:00:01:: 00825604 4 0 -eastern%3:00:02:: 00826959 2 1 -eastern%5:00:00:east:00 00823971 1 8 -eastern%5:00:01:east:00 00823665 5 0 -eastern%5:00:02:east:00 00823832 3 1 -eastern_catholicism%1:09:00:: 06228346 1 0 -eastern_chimpanzee%1:05:00:: 02482286 1 0 -eastern_chinquapin%1:20:00:: 12263738 1 0 -eastern_chipmunk%1:05:00:: 02359915 1 0 -eastern_church%1:14:00:: 08086219 2 0 -eastern_church%1:14:02:: 08086356 1 0 -eastern_coral_snake%1:05:00:: 01745902 1 0 -eastern_cottontail%1:05:00:: 02325722 1 0 -eastern_cottonwood%1:20:00:: 12732966 1 0 -eastern_cricket_frog%1:05:00:: 01651778 1 0 -eastern_dasyure%1:05:00:: 01884104 1 0 -eastern_desert%1:15:00:: 09168020 1 0 -eastern_fence_lizard%1:05:00:: 01680813 1 0 -eastern_flowering_dogwood%1:20:00:: 12947313 1 0 -eastern_fox_squirrel%1:05:00:: 02356798 1 0 -eastern_gray_squirrel%1:05:00:: 02356381 1 0 -eastern_grey_squirrel%1:05:00:: 02356381 1 0 -eastern_ground_snake%1:05:00:: 01736796 1 0 -eastern_hemisphere%1:15:00:: 08562243 1 0 -eastern_hemlock%1:20:00:: 11627512 1 0 -eastern_highlands%1:17:00:: 09292545 1 0 -eastern_hop_hornbeam%1:20:00:: 12288005 1 0 -eastern_indigo_snake%1:05:00:: 01741442 1 0 -eastern_kingbird%1:05:00:: 01548865 1 0 -eastern_lowland_gorilla%1:05:00:: 02481235 1 0 -eastern_malayo-polynesian%1:10:00:: 06937985 1 0 -eastern_meadowlark%1:05:00:: 01573240 1 0 -eastern_narrow-mouthed_toad%1:05:00:: 01653223 1 0 -eastern_orthodox%1:14:00:: 08086356 1 0 -eastern_orthodox%3:01:00:: 02953598 1 0 -eastern_orthodox_church%1:14:00:: 08086356 1 0 -eastern_pasque_flower%1:20:00:: 11737752 1 0 -eastern_pipistrel%1:05:00:: 02148088 1 0 -eastern_poison_oak%1:20:00:: 12767423 1 0 -eastern_red-backed_salamander%1:05:00:: 01636352 1 0 -eastern_red_cedar%1:20:00:: 11637247 1 0 -eastern_roman_empire%1:15:00:: 08800676 1 0 -eastern_samoa%1:15:00:: 08991878 1 0 -eastern_silvery_aster%1:20:00:: 11936113 1 0 -eastern_sioux%1:18:00:: 09667572 1 0 -eastern_spruce%1:20:00:: 11626826 1 0 -eastern_standard_time%1:28:00:: 15131994 1 0 -eastern_time%1:28:00:: 15131994 1 0 -eastern_turki%1:10:00:: 06928047 1 0 -eastern_united_states%1:15:00:: 08563180 1 0 -eastern_white_pine%1:20:00:: 11613219 1 0 -eastern_woodrat%1:05:00:: 02340358 1 0 -easterner%1:18:00:: 10042074 1 0 -easternmost%5:00:00:east:00 00824094 1 0 -eastertide%1:28:00:: 15191587 1 0 -eastman%1:18:00:: 10947628 1 0 -eastmost%5:00:00:east:00 00824094 1 0 -eastside%5:00:00:east:00 00824183 1 0 -eastward%1:24:00:: 13832355 1 0 -eastward%4:02:00:: 00324135 1 1 -eastward%5:00:00:east:00 00823556 1 1 -eastwards%4:02:00:: 00324135 1 0 -easy%3:00:01:: 00749230 1 62 -easy%3:00:02:: 00822115 3 1 -easy%4:02:00:: 00148139 3 0 -easy%4:02:01:: 00147876 1 5 -easy%4:02:02:: 00161630 2 0 -easy%5:00:00:abundant:00 00015097 12 0 -easy%5:00:00:available:00 00184075 11 0 -easy%5:00:00:comfortable:00 00477553 9 0 -easy%5:00:00:gradual:02 01144571 8 0 -easy%5:00:00:impressionable:00 02364721 6 0 -easy%5:00:00:light:08 01192035 5 1 -easy%5:00:00:pleasing:00 01808139 4 1 -easy%5:00:00:rich:00 02022556 7 0 -easy%5:00:00:unchaste:00 00361837 10 0 -easy%5:00:00:unhurried:00 01272176 2 4 -easy_chair%1:06:00:: 03262932 1 2 -easy_going%1:04:00:: 00282953 1 0 -easy_lay%1:06:00:: 04253751 1 0 -easy_mark%1:18:00:: 10604089 1 0 -easy_money%1:21:00:: 13255883 1 2 -easy_money%1:21:01:: 13256303 2 0 -easy_street%1:21:00:: 13344386 1 0 -easygoing%5:00:00:easy:01 00750054 2 0 -easygoing%5:00:00:undemanding:01 00712004 3 0 -easygoing%5:00:00:unhurried:00 01272176 1 0 -easygoingness%1:07:00:: 04640722 1 0 -eat%2:30:00:: 00274283 6 0 -eat%2:34:00:: 01168468 1 61 -eat%2:34:01:: 01166351 2 13 -eat%2:34:02:: 01179865 3 4 -eat%2:34:13:: 01157517 5 0 -eat%2:37:00:: 01766273 4 0 -eat_at%2:30:00:: 00275253 1 0 -eat_away%2:30:00:: 00274724 1 0 -eat_away%2:30:01:: 00274633 2 0 -eat_in%2:34:00:: 01167537 1 0 -eat_into%2:37:00:: 01773825 1 0 -eat_on%2:37:00:: 01766273 1 1 -eat_out%2:34:00:: 01167640 1 0 -eat_up%2:34:00:: 01196802 1 2 -eat_up%2:34:03:: 01157517 2 1 -eat_up%2:35:00:: 01582409 3 0 -eatable%1:13:00:: 07556637 1 0 -eatable%3:00:00:: 00828779 1 1 -eatage%1:13:00:: 07801091 1 0 -eater%1:13:00:: 07708260 2 0 -eater%1:18:00:: 10042300 1 0 -eatery%1:06:00:: 04081281 1 0 -eating%1:04:00:: 00838367 1 3 -eating_apple%1:13:00:: 07739506 1 0 -eating_away%1:22:00:: 13475538 1 0 -eating_disorder%1:26:00:: 14055623 1 0 -eating_house%1:06:00:: 04081281 1 0 -eating_place%1:06:00:: 04081281 1 0 -eating_utensil%1:06:00:: 03153375 1 0 -eaton-lambert_syndrome%1:26:00:: 14079156 1 0 -eats%1:13:00:: 07565161 1 0 -eau_claire%1:15:00:: 09157657 1 0 -eau_de_cologne%1:06:00:: 03071021 1 0 -eau_de_cologne_mint%1:20:00:: 12855710 1 0 -eau_de_javelle%1:27:00:: 14921974 1 0 -eau_de_toilette%1:06:00:: 04448070 1 0 -eau_de_vie%1:13:00:: 07902443 1 0 -eaves%1:06:00:: 03263076 1 0 -eavesdrop%2:39:00:: 02189714 1 0 -eavesdropper%1:18:00:: 10042690 1 0 -eb%1:23:00:: 13630864 3 0 -eb%1:23:01:: 13631037 2 0 -eb%1:23:02:: 13631194 1 0 -ebb%1:11:00:: 07402147 2 0 -ebb%1:22:01:: 13470491 1 0 -ebb%2:30:01:: 00570907 3 0 -ebb%2:33:00:: 01127638 2 0 -ebb%2:38:00:: 01903935 1 1 -ebb_away%2:38:00:: 01903935 1 0 -ebb_down%2:38:00:: 01903935 1 0 -ebb_off%2:38:00:: 01903935 1 0 -ebb_out%2:38:00:: 01903935 1 0 -ebbing%1:22:00:: 13470491 1 1 -ebbtide%1:11:00:: 07402393 1 0 -ebenaceae%1:20:00:: 12770068 1 0 -ebenales%1:20:00:: 12769815 1 0 -ebionite%1:18:00:: 10349836 1 0 -ebionite%3:01:00:: 02716412 1 0 -ebit%1:23:00:: 13631194 1 0 -ebitda%1:21:00:: 13255994 1 0 -eblis%1:18:00:: 09544876 1 0 -ebn%1:24:00:: 13832236 1 0 -ebola%1:26:00:: 14135623 1 0 -ebola_fever%1:26:00:: 14135623 1 0 -ebola_hemorrhagic_fever%1:26:00:: 14135623 1 0 -ebola_virus%1:05:00:: 01332009 1 0 -ebon%5:00:00:achromatic:00 00389231 1 0 -ebonics%1:10:00:: 06947658 1 0 -ebonise%2:30:00:: 00286333 1 0 -ebonite%1:27:00:: 15007534 1 0 -ebonize%2:30:00:: 00286333 1 0 -ebony%1:07:00:: 04960582 1 1 -ebony%1:20:00:: 12770529 3 0 -ebony%1:20:02:: 12770736 2 0 -ebony%5:00:00:achromatic:00 00389231 1 0 -ebony_family%1:20:00:: 12770068 1 0 -ebony_spleenwort%1:20:00:: 13181244 1 0 -ebony_tree%1:20:00:: 12770529 1 0 -ebracteate%3:01:00:: 02716516 1 0 -ebro%1:17:00:: 09271415 1 0 -ebro_river%1:17:00:: 09271415 1 0 -ebs%1:24:00:: 13832480 1 0 -ebullience%1:07:00:: 04634540 1 0 -ebullient%5:00:00:spirited:00 02279723 1 1 -ebulliently%4:02:00:: 00324589 1 0 -ebullition%1:10:00:: 07014320 1 0 -eburnation%1:22:00:: 13470687 1 0 -eburophyton%1:20:00:: 12060380 1 0 -eburophyton_austinae%1:20:00:: 12060546 1 0 -ebv%1:05:00:: 01339623 1 0 -ec%1:14:00:: 08173515 1 0 -ecarte%1:04:00:: 00492195 1 0 -ecballium%1:20:00:: 12165608 1 0 -ecballium_elaterium%1:20:00:: 12165758 1 0 -ecc%1:10:00:: 06357424 1 0 -ecce_homo%1:06:00:: 03263206 1 0 -eccentric%1:18:00:: 10042845 1 3 -eccentric%1:18:01:: 09909060 2 0 -eccentric%3:00:00:: 00543200 2 1 -eccentric%5:00:00:unconventional:01 00608791 1 4 -eccentric_person%1:18:00:: 10042845 1 0 -eccentrically%4:02:00:: 00513396 2 0 -eccentrically%4:02:01:: 00513500 1 0 -eccentricity%1:07:00:: 04798881 1 2 -eccentricity%1:07:01:: 05073888 3 0 -eccentricity%1:25:00:: 13877129 2 0 -ecchymosis%1:22:00:: 13470868 2 0 -ecchymosis%1:26:00:: 14289079 1 0 -eccles%1:18:00:: 10947922 1 0 -eccles_cake%1:13:00:: 07631212 1 0 -ecclesiastes%1:10:00:: 06437531 1 0 -ecclesiastic%1:18:00:: 09928136 1 0 -ecclesiastic%3:01:00:: 02899486 1 0 -ecclesiastical%3:01:00:: 02899486 1 3 -ecclesiastical_attire%1:06:00:: 03263338 1 0 -ecclesiastical_benefice%1:21:00:: 13248087 1 0 -ecclesiastical_calendar%1:28:00:: 15181718 1 0 -ecclesiastical_law%1:14:00:: 08453299 1 0 -ecclesiastical_mode%1:10:00:: 06860481 1 0 -ecclesiastical_province%1:26:00:: 14515816 1 0 -ecclesiastical_robe%1:06:00:: 03263338 1 0 -ecclesiastically%4:02:00:: 00324841 1 0 -ecclesiasticism%1:04:00:: 01213234 1 1 -ecclesiasticism%1:09:00:: 05948716 2 0 -ecclesiasticus%1:10:00:: 06460295 1 0 -ecclesiology%1:09:00:: 06183004 1 0 -eccm%1:04:00:: 00995356 1 0 -eccrine%3:00:00:: 00098736 1 0 -eccrine_gland%1:08:00:: 05331035 1 0 -eccyesis%1:26:00:: 14047740 1 0 -ecdemic%3:00:00:: 01427602 1 0 -ecdysiast%1:18:00:: 10664340 1 0 -ecdysis%1:22:00:: 13516842 1 0 -ecesis%1:22:00:: 13476267 1 0 -ecf%1:08:00:: 05398023 1 0 -ecg%1:10:00:: 07004057 1 0 -echelon%1:06:00:: 03263474 2 0 -echelon%1:14:00:: 08272352 1 0 -echeneididae%1:05:00:: 02574651 1 0 -echeneis%1:05:00:: 02575168 1 0 -echeneis_naucrates%1:05:00:: 02575325 1 0 -echidna%1:05:01:: 01872401 2 0 -echidna%1:05:02:: 01872772 1 0 -echidnophaga%1:05:00:: 02187759 1 0 -echidnophaga_gallinacea%1:05:00:: 02187900 1 0 -echinacea%1:20:00:: 11962108 1 0 -echinocactus%1:20:00:: 11845557 1 0 -echinocactus_grusonii%1:20:00:: 11845913 1 0 -echinocereus%1:20:00:: 11846087 1 0 -echinochloa%1:20:00:: 12117507 1 0 -echinochloa_crusgalli%1:20:00:: 12117695 1 0 -echinochloa_frumentacea%1:20:00:: 12117912 1 0 -echinococcosis%1:26:00:: 14453414 1 0 -echinococcus%1:05:00:: 01927928 1 0 -echinoderm%1:05:00:: 02316707 1 0 -echinoderm_family%1:05:00:: 02316038 1 0 -echinoderm_genus%1:05:00:: 02316180 1 0 -echinodermata%1:05:00:: 02316392 1 0 -echinoidea%1:05:00:: 02318915 1 0 -echinops%1:20:00:: 11962500 1 0 -echinus%1:06:00:: 03263640 1 0 -echinus_esculentus%1:05:00:: 02319308 1 0 -echium%1:20:00:: 12819560 1 0 -echium_vulgare%1:20:00:: 12819728 1 0 -echo%1:04:00:: 01021119 6 0 -echo%1:07:00:: 05010801 1 5 -echo%1:07:01:: 05011162 4 0 -echo%1:07:02:: 04746607 5 0 -echo%1:10:00:: 07200290 3 0 -echo%1:18:00:: 09549047 2 0 -echo%2:32:00:: 00957679 1 5 -echo%2:39:00:: 02183787 2 2 -echo%2:42:00:: 02675458 3 0 -echo_chamber%1:06:00:: 03264021 1 0 -echo_sounder%1:06:00:: 04259771 1 0 -echo_sounding%1:04:00:: 00155797 1 0 -echocardiogram%1:10:00:: 07003935 1 0 -echocardiograph%1:06:00:: 03263758 1 0 -echocardiography%1:04:00:: 00832306 1 0 -echoencephalogram%1:10:00:: 07003807 1 0 -echoencephalograph%1:06:00:: 03263888 1 0 -echoencephalography%1:04:00:: 00832471 1 0 -echogram%1:06:00:: 04260364 1 0 -echography%1:04:00:: 00901789 1 0 -echoic%3:00:00:: 01217579 1 0 -echoic%5:00:00:reflected:00 02008820 2 0 -echoing%5:00:00:reverberant:00 02009993 1 0 -echolalia%1:04:00:: 01018951 2 0 -echolalia%1:10:00:: 07200421 1 0 -echoless%5:00:00:nonreflective:00 02008508 1 0 -echolike%5:00:00:reflected:00 02008820 1 0 -echolocation%1:04:00:: 00155797 1 0 -echovirus%1:05:00:: 01338333 1 0 -echt%3:00:00:: 01115349 1 0 -eck%1:18:00:: 10948117 1 0 -eckhart%1:18:00:: 10948312 1 0 -eclair%1:13:00:: 07628691 1 0 -eclampsia%1:26:00:: 14191284 1 0 -eclat%1:07:01:: 04814872 3 0 -eclat%1:07:02:: 04815002 2 0 -eclat%1:10:00:: 06691684 1 0 -eclectic%1:18:00:: 10043024 1 0 -eclectic%5:00:00:discriminating:00 00775486 1 2 -eclectic_method%1:09:00:: 05788713 1 0 -eclecticism%1:09:00:: 05788713 1 0 -eclecticist%1:18:00:: 10043024 1 0 -eclipse%1:11:00:: 07368646 1 2 -eclipse%2:39:00:: 02158340 2 1 -eclipse%2:42:00:: 02744280 1 1 -eclipsis%1:22:00:: 13473716 1 0 -ecliptic%1:15:00:: 08565214 1 3 -eclogue%1:10:00:: 06379439 1 0 -ecm%1:04:00:: 00995134 1 0 -eco-warfare%1:04:00:: 00764031 1 0 -ecobabble%1:10:00:: 07069074 1 0 -ecologic%3:01:00:: 02906478 2 0 -ecologic%3:01:01:: 02906778 1 0 -ecological%3:01:00:: 02906478 2 0 -ecological%3:01:01:: 02906778 1 0 -ecological_niche%1:26:00:: 13924336 1 0 -ecological_succession%1:22:00:: 13562862 1 0 -ecological_terrorism%1:04:00:: 00764031 1 0 -ecological_warfare%1:04:00:: 00764031 1 0 -ecologically%4:02:00:: 00324976 1 0 -ecologist%1:18:00:: 10043163 1 0 -ecology%1:09:00:: 06070929 2 0 -ecology%1:26:00:: 14513062 1 0 -econometric%3:01:00:: 02919733 1 0 -econometrician%1:18:00:: 10043491 1 0 -econometrics%1:09:00:: 06150449 1 0 -econometrist%1:18:00:: 10043491 1 0 -economic%3:01:00:: 02716605 2 5 -economic%3:01:01:: 02716739 1 65 -economic%5:00:00:efficient:00 00840212 3 1 -economic%5:00:00:profitable:00 01871565 5 0 -economic%5:00:00:worldly:00 02577454 4 0 -economic_aid%1:21:00:: 13265904 1 0 -economic_and_social_council%1:14:00:: 08296720 1 0 -economic_and_social_council_commission%1:14:00:: 08296911 1 0 -economic_commission_for_africa%1:14:00:: 08297863 1 0 -economic_commission_for_asia_and_the_far_east%1:14:00:: 08298074 1 0 -economic_commission_for_europe%1:14:00:: 08298319 1 0 -economic_commission_for_latin_america%1:14:00:: 08298521 1 0 -economic_condition%1:26:00:: 14488594 1 0 -economic_consumption%1:22:00:: 13451804 1 0 -economic_crisis%1:26:00:: 14489113 1 0 -economic_expert%1:18:00:: 10043643 1 0 -economic_geography%1:09:00:: 06122976 1 0 -economic_geology%1:09:00:: 06121854 1 0 -economic_growth%1:22:00:: 13471052 1 0 -economic_libertarian%1:18:00:: 10043331 1 0 -economic_mobilisation%1:04:00:: 01230566 1 0 -economic_mobilization%1:04:00:: 01230566 1 0 -economic_policy%1:10:00:: 06656741 1 1 -economic_process%1:22:00:: 13471206 1 0 -economic_rent%1:21:00:: 13296270 1 0 -economic_science%1:09:00:: 06149484 1 0 -economic_strangulation%1:04:00:: 01162062 1 1 -economic_system%1:14:00:: 08366753 1 1 -economic_theory%1:09:00:: 05994935 1 0 -economic_value%1:21:00:: 13413493 1 1 -economical%3:01:00:: 02716739 2 2 -economical%5:00:00:efficient:00 00840212 1 6 -economical%5:00:00:thrifty:00 02421364 3 1 -economically%4:02:00:: 00123229 1 3 -economically%4:02:01:: 00123365 3 0 -economically%4:02:02:: 00123500 2 0 -economics%1:09:00:: 06149484 1 3 -economics_department%1:14:00:: 08116398 1 0 -economics_profession%1:14:00:: 08113322 1 0 -economise%2:40:00:: 02269143 2 0 -economise%2:40:02:: 02357228 1 0 -economiser%1:18:00:: 10044470 1 0 -economist%1:18:00:: 10043643 1 4 -economize%2:40:00:: 02269143 1 4 -economize%2:40:02:: 02357228 2 0 -economizer%1:18:00:: 10044470 1 0 -economy%1:04:00:: 00192613 4 1 -economy%1:07:00:: 04893787 3 1 -economy%1:09:01:: 05644727 2 1 -economy%1:14:00:: 08366753 1 20 -economy_class%1:06:00:: 02932693 1 0 -economy_of_scale%1:04:00:: 00193099 1 0 -ecosoc%1:14:00:: 08296720 1 0 -ecosoc_commission%1:14:00:: 08296911 1 0 -ecosystem%1:14:00:: 08368757 1 0 -ecoterrorism%1:04:00:: 00764031 1 0 -ecotourism%1:04:00:: 00298351 1 0 -ecphonesis%1:10:00:: 07102802 1 0 -ecrevisse%1:05:00:: 01985493 2 0 -ecrevisse%1:13:00:: 07788885 1 0 -ecru%1:07:00:: 04973291 1 0 -ecstasy%1:06:00:: 02678738 3 0 -ecstasy%1:26:00:: 13986372 1 4 -ecstasy%1:26:02:: 13988101 2 3 -ecstatic%5:00:00:joyous:00 01367008 1 2 -ecstatic_state%1:09:00:: 05681855 1 0 -ecstatically%4:02:00:: 00325139 1 0 -ect%1:04:00:: 00706605 1 0 -ectasia%1:26:00:: 14064044 1 0 -ectasis%1:26:00:: 14064044 1 0 -ectoblast%1:05:00:: 01463739 1 0 -ectoderm%1:05:00:: 01463739 1 0 -ectodermal%3:01:00:: 02876360 1 0 -ectodermic%3:01:00:: 02876360 1 0 -ectomorph%1:18:00:: 10044682 1 0 -ectomorphic%3:00:00:: 00827923 1 0 -ectomorphy%1:07:00:: 04999111 1 0 -ectoparasite%1:05:00:: 01385330 1 0 -ectopia%1:07:00:: 05081660 1 0 -ectopic%3:01:00:: 02717149 1 0 -ectopic_gestation%1:26:00:: 14047740 1 0 -ectopic_pregnancy%1:26:00:: 14047740 1 0 -ectopistes%1:05:00:: 01815135 1 0 -ectopistes_migratorius%1:05:00:: 01815270 1 0 -ectoplasm%1:08:00:: 05433856 2 0 -ectoplasm%1:27:00:: 15109931 1 0 -ectoproct%1:05:00:: 02314158 1 0 -ectoprocta%1:05:00:: 02314001 1 0 -ectotherm%1:05:00:: 01315581 1 0 -ectothermic%5:00:00:cold-blooded:00 02533075 1 0 -ectozoan%1:05:00:: 01385330 1 0 -ectozoan%3:01:00:: 03064239 1 0 -ectozoon%1:05:00:: 01385330 1 0 -ectrodactyly%1:26:00:: 14093464 1 0 -ecuador%1:15:00:: 08776687 1 0 -ecuadoran%1:18:00:: 09700371 1 0 -ecuadoran_monetary_unit%1:23:00:: 13707473 1 0 -ecuadorian%1:18:00:: 09700371 1 0 -ecuadorian%3:01:00:: 02966324 1 0 -ecumenic%5:00:00:nonsectarian:00 02092460 1 0 -ecumenical%5:00:00:comprehensive:00 00527188 2 0 -ecumenical%5:00:00:nonsectarian:00 02092460 1 0 -ecumenical_council%1:14:00:: 08312988 1 0 -ecumenical_movement%1:14:00:: 08474875 1 0 -ecumenicalism%1:10:00:: 06790235 1 0 -ecumenicism%1:10:00:: 06790235 1 0 -ecumenism%1:10:00:: 06790235 2 0 -ecumenism%1:14:00:: 08471949 1 0 -eczema%1:26:00:: 14226056 1 0 -eczema_herpeticum%1:26:00:: 14225463 1 0 -eczema_hypertrophicum%1:26:00:: 14225877 1 0 -eczema_marginatum%1:26:00:: 14126519 1 0 -eczema_vaccinatum%1:26:00:: 14225632 1 0 -ed%1:26:00:: 14045141 1 0 -ed_sullivan%1:18:00:: 11324619 1 0 -edacious%5:00:00:gluttonous:00 00010726 1 0 -edacity%1:07:00:: 04886402 2 0 -edacity%1:26:00:: 14040071 1 0 -edam%1:13:00:: 07853445 1 0 -edaphosauridae%1:05:00:: 01722085 1 0 -edaphosaurus%1:05:00:: 01722389 1 0 -edd%1:10:00:: 06703213 1 0 -edda%1:10:00:: 06953471 2 0 -edda%1:13:00:: 07736813 1 0 -eddie_rickenbacker%1:18:00:: 11261804 1 0 -eddington%1:18:00:: 10948478 1 0 -eddo%1:20:00:: 11786843 1 0 -eddy%1:11:00:: 07432973 2 0 -eddy%1:18:00:: 10948656 1 0 -eddy%2:38:00:: 02047650 1 1 -eddy_merckx%1:18:00:: 11175605 1 0 -edecrin%1:06:00:: 03299648 1 0 -edelweiss%1:20:00:: 11989393 1 0 -edema%1:26:00:: 14316714 1 2 -edematous%5:00:00:unhealthy:00 01176544 1 1 -eden%1:09:00:: 05628658 2 0 -eden%1:15:00:: 08565506 1 0 -edental%5:00:00:toothless:00 02439740 1 0 -edentata%1:05:00:: 02453373 1 0 -edentate%1:05:00:: 02453611 1 0 -edentate%5:00:00:toothless:00 02439740 1 0 -edentulate%5:00:00:toothless:00 02439740 1 0 -edentulous%5:00:00:toothless:00 02439875 1 1 -ederle%1:18:00:: 10948798 1 0 -edgar%1:18:00:: 10948993 1 0 -edgar_albert_guest%1:18:00:: 11018683 1 0 -edgar_allan_poe%1:18:00:: 11240480 1 0 -edgar_degas%1:18:00:: 10927687 1 0 -edgar_douglas_adrian%1:18:00:: 10808886 1 0 -edgar_guest%1:18:00:: 11018683 1 0 -edgar_lee_masters%1:18:00:: 11164058 1 0 -edgar_rice_burroughs%1:18:00:: 10874393 1 0 -edgar_varese%1:18:00:: 11360534 1 0 -edgar_wallace%1:18:00:: 11371622 1 0 -edgard_lawrence_doctorow%1:18:00:: 10937882 1 0 -edge%1:06:00:: 03264136 3 5 -edge%1:06:01:: 03264542 6 1 -edge%1:07:00:: 05158857 5 2 -edge%1:07:01:: 05171978 4 2 -edge%1:15:00:: 08565701 1 28 -edge%1:25:00:: 13903079 2 5 -edge%2:35:00:: 01466978 3 0 -edge%2:35:01:: 01246843 4 0 -edge%2:38:00:: 02072501 1 3 -edge%2:40:00:: 02361600 2 0 -edge_in%2:38:00:: 02017937 1 0 -edge_tool%1:06:00:: 03265032 1 0 -edge_up%2:38:00:: 02017937 1 1 -edged%5:00:00:bordered:00 00258411 1 5 -edged%5:00:00:sharp:00 00801691 3 0 -edged%5:00:00:unkind:00 01374004 2 0 -edgeless%5:00:00:dull:01 00800678 1 0 -edger%1:06:00:: 03264906 2 0 -edger%1:18:00:: 10044763 1 0 -edgeways%4:02:00:: 00325343 2 0 -edgeways%4:02:01:: 00325493 1 0 -edgewise%4:02:00:: 00325343 1 1 -edgewise%4:02:01:: 00325493 2 0 -edgeworth-kuiper_belt%1:17:00:: 09327538 1 0 -edginess%1:12:00:: 07525057 1 0 -edging%1:06:00:: 03265479 1 0 -edgy%5:00:00:tense:03 02406370 1 2 -edibility%1:07:00:: 04997472 1 0 -edible%1:13:00:: 07556637 1 0 -edible%3:00:00:: 00828779 1 0 -edible-pod_pea%1:20:00:: 12560775 1 0 -edible-podded_pea%1:20:00:: 12560775 1 0 -edible_asparagus%1:20:00:: 12441183 1 0 -edible_banana%1:20:00:: 12353203 1 0 -edible_bean%1:13:00:: 07724943 1 0 -edible_cockle%1:05:00:: 01960177 1 0 -edible_corn%1:13:00:: 07731952 1 0 -edible_fat%1:13:00:: 07672135 1 0 -edible_fruit%1:13:00:: 07705931 1 0 -edible_mussel%1:05:00:: 01964271 1 0 -edible_nut%1:13:00:: 07737081 1 0 -edible_sea_urchin%1:05:00:: 02319308 1 0 -edible_seed%1:13:00:: 07770571 1 0 -edible_snail%1:05:00:: 01944812 1 0 -edibleness%1:07:00:: 04997472 1 0 -edict%1:10:00:: 06539770 2 0 -edict%1:10:01:: 06726671 1 0 -edification%1:09:00:: 05987835 1 0 -edifice%1:06:00:: 02913152 1 2 -edified%5:00:00:enlightened:00 00884157 1 0 -edify%2:32:00:: 00991385 1 1 -edifying%3:00:00:: 01325451 1 1 -edinburgh%1:15:00:: 08892596 1 0 -edirne%1:15:00:: 08916111 1 0 -edison%1:18:00:: 10949192 1 0 -edit%2:30:00:: 00200397 1 1 -edit%2:30:01:: 00201722 3 0 -edit%2:30:02:: 00200863 4 0 -edit%2:32:00:: 00968038 2 0 -edit_out%2:30:00:: 00201722 1 2 -edited%5:00:00:altered:00 00352877 1 0 -edith_cavell%1:18:00:: 10888151 1 0 -edith_giovanna_gassion%1:18:00:: 11234152 1 0 -edith_louisa_cavell%1:18:00:: 10888151 1 0 -edith_newbold_jones_wharton%1:18:00:: 11382795 1 0 -edith_piaf%1:18:00:: 11234152 1 0 -edith_wharton%1:18:00:: 11382795 1 0 -editing%1:10:00:: 06427831 1 0 -edition%1:09:00:: 05840650 4 0 -edition%1:10:00:: 06597204 3 0 -edition%1:10:02:: 06590446 1 3 -edition%1:14:00:: 07959393 2 2 -editor%1:10:00:: 06574841 2 0 -editor%1:18:00:: 10044879 1 17 -editor_in_chief%1:18:00:: 10044879 1 0 -editor_program%1:10:00:: 06574841 1 0 -editorial%1:10:00:: 06268567 1 4 -editorial%3:01:00:: 02717258 1 1 -editorial%3:01:01:: 02717402 2 0 -editorial_department%1:14:00:: 08118414 1 0 -editorialise%2:32:00:: 01027924 1 0 -editorialist%1:18:00:: 09939154 1 0 -editorialize%2:32:00:: 01027924 1 0 -editorially%4:02:00:: 00226891 1 1 -editorship%1:04:00:: 00592102 1 0 -edmond_de_goncourt%1:18:00:: 11006431 1 0 -edmond_halley%1:18:00:: 11025326 1 0 -edmond_hoyle%1:18:00:: 11063182 1 0 -edmond_louis_antoine_huot_de_goncourt%1:18:00:: 11006431 1 0 -edmond_malone%1:18:00:: 11152122 1 0 -edmond_rostand%1:18:00:: 11271859 1 0 -edmonton%1:15:00:: 08822742 1 0 -edmontonia%1:05:00:: 01702479 1 0 -edmontosaurus%1:05:00:: 01707000 1 0 -edmund_burke%1:18:00:: 10873059 1 0 -edmund_cartwright%1:18:00:: 10885352 1 0 -edmund_charles_edouard_genet%1:18:00:: 10994097 1 0 -edmund_halley%1:18:00:: 11025326 1 0 -edmund_hillary%1:18:00:: 11050183 1 0 -edmund_husserl%1:18:00:: 11068630 1 0 -edmund_i%1:18:00:: 10949424 1 0 -edmund_ii%1:18:00:: 10949586 1 0 -edmund_ironside%1:18:00:: 10949586 1 0 -edmund_john_millington_synge%1:18:00:: 11327744 1 0 -edmund_kean%1:18:00:: 11098223 1 0 -edmund_malone%1:18:00:: 11152122 1 0 -edmund_spenser%1:18:00:: 11310833 1 0 -edmund_wilson%1:18:00:: 11391123 1 0 -edna_ferber%1:18:00:: 10968504 1 0 -edna_millay%1:18:00:: 11179797 1 0 -edna_o'brien%1:18:00:: 11211322 1 0 -edna_saint_vincent_millay%1:18:00:: 11179797 1 0 -edo%1:15:00:: 08923348 2 0 -edo%1:18:00:: 09737981 1 0 -edouard_lemaitre%1:18:00:: 11125646 1 0 -edouard_manet%1:18:00:: 11153887 1 0 -edouard_vuillard%1:18:00:: 11369551 1 0 -edp%1:22:00:: 13472341 1 0 -edronax%1:06:00:: 04060316 1 0 -eds%1:06:00:: 03305300 1 0 -edsel_bryant_ford%1:18:00:: 10975101 1 0 -edta%1:27:00:: 14851668 1 0 -eduard_buchner%1:18:00:: 10870072 1 0 -educate%2:31:00:: 00603298 2 3 -educate%2:41:00:: 02387486 1 7 -educate%2:41:01:: 02388403 3 1 -educated%3:00:00:: 00829745 1 5 -educated%5:00:00:informed:00 01307375 2 0 -educatee%1:18:00:: 10665698 1 0 -education%1:04:00:: 00883297 1 34 -education%1:04:01:: 00611433 4 5 -education%1:07:01:: 04921900 5 3 -education%1:09:00:: 05984287 2 10 -education%1:09:01:: 05753564 3 6 -education%1:14:00:: 08132637 6 0 -education_department%1:14:00:: 08132637 1 0 -education_secretary%1:04:00:: 00600871 2 0 -education_secretary%1:18:00:: 10571435 1 0 -educational%3:01:00:: 02946221 1 6 -educational%5:00:00:instructive:00 01324565 2 4 -educational_activity%1:04:00:: 00883297 1 1 -educational_institution%1:14:00:: 08276342 1 2 -educational_program%1:09:00:: 05900430 1 0 -educationalist%1:18:00:: 10045454 1 0 -educationally%4:02:00:: 00325603 1 0 -educationist%1:18:00:: 10045454 1 0 -educative%5:00:00:instructive:00 01324424 1 0 -educator%1:18:00:: 10045713 1 9 -educe%2:30:00:: 00251615 2 0 -educe%2:36:00:: 01630532 1 0 -edulcorate%2:39:00:: 02195470 1 0 -edutainment%1:04:00:: 00515578 1 0 -edvard_grieg%1:18:00:: 11016199 1 0 -edvard_hagerup_grieg%1:18:00:: 11016199 1 0 -edvard_munch%1:18:00:: 11196208 1 0 -edward%1:18:01:: 10949782 10 0 -edward%1:18:02:: 10949952 9 0 -edward%1:18:03:: 10950092 8 0 -edward%1:18:04:: 10950219 7 0 -edward%1:18:05:: 10950448 6 0 -edward%1:18:06:: 10950786 5 0 -edward%1:18:07:: 10951017 4 0 -edward%1:18:08:: 10951278 3 0 -edward%1:18:09:: 10951459 2 0 -edward%1:18:10:: 10951697 1 0 -edward_albee%1:18:00:: 10811228 1 0 -edward_antony_richard_louis%1:18:00:: 10949952 1 0 -edward_appleton%1:18:00:: 10820613 1 0 -edward_benjamin_britten%1:18:00:: 10864635 1 0 -edward_bouverie_pusey%1:18:00:: 11248997 1 0 -edward_calvin_kendall%1:18:00:: 11100462 1 0 -edward_d._white%1:18:00:: 11384291 1 0 -edward_douglas_white_jr.%1:18:00:: 11384291 1 0 -edward_durell_stone%1:18:00:: 11319134 1 0 -edward_estlin_cummings%1:18:00:: 10917377 1 0 -edward_everett_hale%1:18:00:: 11023327 1 0 -edward_fitzgerald%1:18:00:: 10972298 1 0 -edward_franklin_albeen%1:18:00:: 10811228 1 0 -edward_g._robinson%1:18:00:: 11265416 1 0 -edward_george_earle_bulwer-lytton%1:18:00:: 11146494 1 0 -edward_gibbon%1:18:00:: 10997742 1 0 -edward_goldenberg_robinson%1:18:00:: 11265416 1 0 -edward_henry_harriman%1:18:00:: 11029888 1 0 -edward_i%1:18:00:: 10950092 1 0 -edward_ii%1:18:00:: 10950219 1 0 -edward_iii%1:18:00:: 10950448 1 0 -edward_iv%1:18:00:: 10950786 1 0 -edward_james_hughes%1:18:00:: 11065229 1 0 -edward_james_muggeridge%1:18:00:: 11198608 1 0 -edward_jean_steichen%1:18:00:: 11314514 1 0 -edward_jenner%1:18:00:: 11082135 1 0 -edward_kendall%1:18:00:: 11100462 1 0 -edward_kennedy_ellington%1:18:00:: 10958010 1 0 -edward_lawrie_tatum%1:18:00:: 11332892 1 0 -edward_lear%1:18:00:: 11122439 1 0 -edward_lee_thorndike%1:18:00:: 11341137 1 0 -edward_macdowell%1:18:00:: 11147185 1 0 -edward_morley%1:18:00:: 11191251 1 0 -edward_osborne_wilson%1:18:00:: 11391379 1 0 -edward_pusey%1:18:00:: 11248997 1 0 -edward_r._murrow%1:18:00:: 11197743 1 0 -edward_roscoe_murrow%1:18:00:: 11197743 1 0 -edward_sapir%1:18:00:: 11281174 1 0 -edward_teach%1:18:00:: 11334003 1 0 -edward_teller%1:18:00:: 11335041 1 0 -edward_thatch%1:18:00:: 11334003 1 0 -edward_the_confessor%1:18:00:: 10952143 1 0 -edward_the_elder%1:18:00:: 10952421 1 0 -edward_the_martyr%1:18:00:: 10952629 1 0 -edward_v%1:18:00:: 10951017 1 0 -edward_vernon_rickenbacker%1:18:00:: 11261804 1 0 -edward_vi%1:18:00:: 10951278 1 0 -edward_vii%1:18:00:: 10951459 1 0 -edward_viii%1:18:00:: 10951697 1 0 -edward_vincent_sullivan%1:18:00:: 11324619 1 0 -edward_weston%1:18:00:: 11382688 1 0 -edward_white%1:18:00:: 11384291 1 0 -edward_williams_morley%1:18:00:: 11191251 1 0 -edward_winslow%1:18:00:: 11392913 1 0 -edward_wyllis_scripps%1:18:00:: 11290272 1 0 -edward_young%1:18:00:: 11403600 1 0 -edwardian%1:18:00:: 10046387 1 0 -edwardian%3:01:00:: 03062990 1 0 -edwards%1:18:00:: 10951948 1 0 -edwin%1:18:00:: 10952919 1 0 -edwin_arlington_robinson%1:18:00:: 11265591 1 0 -edwin_dubois_hayward%1:18:00:: 11049001 1 0 -edwin_herbert_land%1:18:00:: 11115558 1 0 -edwin_hubble%1:18:00:: 11063687 1 0 -edwin_powell_hubble%1:18:00:: 11063687 1 0 -edwy%1:18:00:: 10953035 1 0 -ee%1:09:00:: 06128024 1 0 -eec%1:14:00:: 08173515 1 0 -eeg%1:10:00:: 07004241 1 3 -eel%1:05:00:: 02526121 2 0 -eel%1:13:00:: 07783967 1 0 -eel-shaped%5:00:00:formed:00 02146864 1 0 -eelam%1:15:00:: 08719892 1 0 -eelblenny%1:05:00:: 02616128 1 0 -eelgrass%1:20:01:: 12618727 1 0 -eelgrass%1:20:02:: 12615232 2 0 -eelgrass_family%1:20:00:: 12618336 1 0 -eellike%5:00:00:curved:00 02315808 1 0 -eelpout%1:05:01:: 02617207 1 0 -eelpout%1:05:02:: 02523427 2 0 -eelworm%1:05:00:: 01931714 1 0 -eerie%5:00:00:strange:00 00968522 2 0 -eerie%5:00:00:supernatural:00 01575299 1 0 -eerily%4:02:00:: 00325802 1 0 -eeriness%1:07:00:: 04798020 1 0 -eero_saarinen%1:18:00:: 11276971 1 0 -eery%5:00:00:strange:00 00968522 1 0 -eff%2:35:00:: 01426397 1 0 -efface%2:30:00:: 00311338 1 2 -efface%2:35:00:: 01548718 3 0 -efface%2:37:00:: 01800789 2 0 -effaceable%5:00:00:eradicable:00 00897759 1 0 -effacement%1:04:00:: 00054328 2 0 -effacement%1:22:00:: 13471517 1 0 -effect%1:07:00:: 04675314 2 11 -effect%1:07:01:: 04809642 5 1 -effect%1:09:00:: 05917477 3 9 -effect%1:10:00:: 06604066 4 2 -effect%1:19:00:: 11410625 1 101 -effect%1:26:00:: 14311348 6 0 -effect%2:36:00:: 01642924 1 17 -effect%2:41:15:: 02560767 2 3 -effected%5:00:00:settled:02 02129535 1 0 -effecter%1:18:00:: 10046527 1 0 -effective%3:00:00:: 00834198 1 29 -effective%5:00:00:actual:00 00044132 5 1 -effective%5:00:00:competent:00 00510644 2 14 -effective%5:00:00:efficacious:00 00839225 3 8 -effective%5:00:00:operational:00 01660712 6 0 -effective%5:00:00:operative:00 00832784 4 4 -effectively%4:02:00:: 00060032 2 1 -effectively%4:02:01:: 00326324 1 12 -effectiveness%1:07:00:: 05199286 1 11 -effectiveness%1:07:01:: 05034225 2 3 -effectivity%1:07:00:: 05199286 1 0 -effector%1:08:00:: 05298421 3 0 -effector%1:08:01:: 05465228 2 0 -effector%1:18:00:: 10046527 1 0 -effects%1:21:00:: 13246079 1 0 -effectual%3:00:02:: 00834198 1 0 -effectual%5:00:01:valid:00 02499148 2 0 -effectuality%1:07:00:: 05199286 1 0 -effectually%4:02:00:: 00325912 1 1 -effectualness%1:07:00:: 05199286 1 0 -effectuate%2:36:00:: 01642924 1 2 -effectuation%1:04:00:: 00044150 1 0 -effeminacy%1:07:00:: 04668139 1 0 -effeminate%5:00:00:unmanly:00 01476325 1 0 -effeminateness%1:07:00:: 04668139 1 0 -effeminise%2:30:00:: 00566322 1 0 -effeminize%2:30:00:: 00566322 1 0 -effendi%1:18:00:: 09735790 1 0 -efferent%1:08:00:: 05474738 1 0 -efferent%3:00:00:: 00333987 1 0 -efferent_fiber%1:08:00:: 05474976 1 0 -efferent_nerve%1:08:00:: 05474738 1 0 -efferent_neuron%1:08:00:: 05466696 1 0 -effervesce%2:30:00:: 00519363 1 0 -effervescence%1:07:00:: 04733347 2 0 -effervescence%1:22:00:: 13471681 1 0 -effervescent%3:00:00:: 02276088 2 0 -effervescent%3:00:04:: 02277279 1 0 -effervescent%5:00:00:lively:00 00805810 3 0 -effervescing%5:00:00:effervescent:00 02276305 1 0 -effete%5:00:00:indulgent:00 01297658 1 0 -efficacious%3:00:00:: 00838856 1 1 -efficacious%3:00:02:: 00834198 2 0 -efficaciously%4:02:00:: 00326324 1 0 -efficaciousness%1:07:00:: 05199869 1 0 -efficacy%1:07:00:: 05199869 1 6 -efficiency%1:09:00:: 05644527 2 9 -efficiency%1:24:00:: 13820993 1 12 -efficiency_apartment%1:06:00:: 03265754 1 0 -efficiency_engineer%1:18:00:: 10046717 1 2 -efficiency_expert%1:18:00:: 10046717 1 0 -efficient%3:00:00:: 00839619 1 7 -efficient%5:00:00:competent:00 00510644 2 3 -efficiently%4:02:00:: 00235843 1 2 -effigy%1:06:00:: 03265874 1 0 -effleurage%1:04:00:: 00659667 1 0 -effloresce%2:30:00:: 00294522 1 1 -effloresce%2:30:01:: 00443670 2 0 -effloresce%2:30:02:: 00255272 3 0 -efflorescence%1:19:00:: 11410527 4 0 -efflorescence%1:22:00:: 13439570 3 0 -efflorescence%1:26:00:: 14321953 2 0 -efflorescence%1:28:00:: 15295045 1 0 -efflorescent%5:00:00:mature:01 01488856 1 0 -effluence%1:22:00:: 13529295 1 0 -effluent%1:27:00:: 14857021 1 19 -effluent%5:00:00:outgoing:00 01295837 1 0 -effluvium%1:27:00:: 14853530 1 0 -efflux%1:22:00:: 13529295 1 0 -effort%1:04:00:: 00786195 1 84 -effort%1:04:01:: 00621627 2 12 -effort%1:04:02:: 00036762 3 2 -effort%1:04:03:: 00798245 4 0 -effortful%3:00:00:: 00836277 1 0 -effortfulness%1:07:00:: 04709585 1 0 -effortless%3:00:00:: 00838296 1 1 -effortless%5:00:00:easy:01 00749749 2 0 -effortlessly%4:02:00:: 00196999 1 1 -effortlessness%1:07:00:: 04708543 1 0 -effrontery%1:07:00:: 04838727 1 0 -effulgence%1:07:00:: 04953954 1 0 -effulgent%5:00:00:bright:00 00280463 1 0 -effuse%2:30:00:: 00291286 3 0 -effuse%2:30:01:: 00546080 2 0 -effuse%2:38:00:: 02069788 1 0 -effusion%1:04:00:: 00329943 2 0 -effusion%1:10:00:: 07014320 1 0 -effusive%5:00:00:demonstrative:00 00720524 2 0 -effusive%5:00:00:lively:00 00806064 1 0 -effusively%4:02:00:: 00326852 1 0 -effusiveness%1:07:00:: 04651009 1 0 -efrem_zimbalist%1:18:00:: 11407048 1 0 -eft%1:05:00:: 01631663 1 0 -egadi_islands%1:15:00:: 08784905 1 0 -egalitarian%1:18:00:: 10046870 1 0 -egalitarian%5:00:00:democratic:00 00715677 1 0 -egalitarianism%1:09:00:: 05967588 1 2 -egalite%1:26:00:: 13947010 1 0 -egality%1:26:00:: 13947010 1 0 -egbert%1:18:00:: 10953188 1 0 -egeria%1:20:00:: 12614962 1 0 -egeria_densa%1:20:00:: 12614763 1 0 -egest%2:29:00:: 00072989 1 0 -egg%1:05:00:: 01460457 1 19 -egg%1:08:00:: 05524615 3 0 -egg%1:13:00:: 07840804 2 1 -egg%2:35:00:: 01261491 2 0 -egg%2:35:01:: 01508268 1 0 -egg-and-anchor%1:06:00:: 03266195 1 0 -egg-and-dart%1:06:00:: 03266195 1 0 -egg-and-tongue%1:06:00:: 03266195 1 0 -egg-filled%5:00:00:full:00 01084575 1 0 -egg-laying_mammal%1:05:00:: 01871875 1 0 -egg-producing%5:00:00:female:00 01478353 1 0 -egg-shaped%5:00:00:rounded:00 02046199 1 0 -egg_cell%1:08:00:: 05457973 1 0 -egg_cream%1:13:00:: 07928264 1 0 -egg_cup%1:06:00:: 03266498 1 0 -egg_en_cocotte%1:13:00:: 07842605 1 0 -egg_foo_yong%1:13:00:: 07866571 1 0 -egg_fu_yung%1:13:00:: 07866571 1 0 -egg_laying%1:22:00:: 13506477 1 1 -egg_noodle%1:13:00:: 07699815 1 0 -egg_on%2:35:00:: 01230710 1 1 -egg_roll%1:13:00:: 07866723 1 0 -egg_timer%1:06:00:: 03266620 1 0 -egg_white%1:13:00:: 07841037 1 0 -egg_yolk%1:13:00:: 07841345 1 0 -eggar%1:05:00:: 02306825 1 0 -eggbeater%1:06:00:: 03266371 2 0 -eggbeater%1:06:01:: 03512147 1 0 -eggcup%1:06:00:: 03266498 1 0 -eggdrop_soup%1:13:00:: 07587331 1 0 -egger%1:05:00:: 02306825 1 0 -eggfruit%1:13:00:: 07755262 1 0 -egghead%1:18:00:: 10047030 1 1 -eggnog%1:13:00:: 07932039 1 0 -eggplant%1:13:00:: 07713074 1 1 -eggplant%1:20:00:: 12896000 2 0 -eggplant_bush%1:20:00:: 12896000 1 0 -eggs%1:13:00:: 07840804 1 6 -eggs_benedict%1:13:00:: 07866868 1 0 -eggshake%1:13:00:: 07923495 1 0 -eggshell%1:17:00:: 09432430 1 0 -eggwhisk%1:06:00:: 03266371 1 0 -egis%1:06:00:: 02895154 1 0 -eglantine%1:20:00:: 12621619 1 0 -eglevsky%1:18:00:: 10953344 1 0 -ego%1:09:00:: 05613170 3 0 -ego%1:09:01:: 05675601 2 1 -ego%1:12:01:: 07508806 1 6 -ego_ideal%1:09:00:: 05925862 1 0 -ego_trip%1:04:00:: 00373862 1 0 -egocentric%1:18:00:: 10047199 1 0 -egocentric%3:00:00:: 00101800 1 0 -egocentrism%1:07:00:: 04835028 1 0 -egoism%1:07:00:: 04835028 2 0 -egoism%1:09:00:: 05953263 1 0 -egoist%1:18:00:: 10047199 2 0 -egoist%1:18:01:: 10047459 1 0 -egoistic%3:00:00:: 00101800 1 0 -egoistical%3:00:00:: 00101800 1 0 -egomania%1:16:00:: 09182142 1 0 -egomaniac%1:18:00:: 10047371 1 0 -egotism%1:07:00:: 04887497 1 2 -egotism%1:12:00:: 07508806 2 0 -egotist%1:18:00:: 10047459 1 3 -egotistic%5:00:00:proud:00 01891773 2 0 -egotistic%5:00:00:selfish:00 02098694 1 0 -egotistical%5:00:00:proud:00 01891773 2 0 -egotistical%5:00:00:selfish:00 02098694 1 0 -egotistically%4:02:00:: 00327089 1 0 -egotrip%2:41:00:: 02372161 1 0 -egregious%5:00:00:conspicuous:00 00580039 1 0 -egress%1:04:01:: 00044455 3 0 -egress%1:11:00:: 07322138 1 0 -egress%1:11:01:: 07319909 2 0 -egress%2:30:00:: 00528990 1 0 -egression%1:04:00:: 00044455 1 0 -egret%1:05:00:: 02008796 1 0 -egretta%1:05:00:: 02009015 1 0 -egretta_albus%1:05:00:: 02009912 1 0 -egretta_caerulea%1:05:00:: 02009229 1 0 -egretta_garzetta%1:05:00:: 02009508 1 0 -egretta_thula%1:05:00:: 02009380 1 0 -egtk%1:14:00:: 08046032 1 0 -egypt%1:15:00:: 08897065 1 2 -egypt%1:15:01:: 08896831 2 0 -egyptian%1:10:00:: 06990000 2 0 -egyptian%1:18:00:: 09700492 1 0 -egyptian%3:01:00:: 02971469 1 0 -egyptian_bean%1:20:00:: 12537569 1 0 -egyptian_capital%1:15:00:: 08898633 1 0 -egyptian_cat%1:05:00:: 02124075 1 0 -egyptian_cobra%1:05:00:: 01748389 1 0 -egyptian_corn%1:20:00:: 12137791 1 0 -egyptian_cotton%1:20:00:: 12177249 1 0 -egyptian_deity%1:18:00:: 09510904 1 0 -egyptian_empire%1:15:00:: 08896831 1 0 -egyptian_grass%1:20:00:: 12116734 1 0 -egyptian_henbane%1:20:00:: 12904562 1 0 -egyptian_islamic_jihad%1:14:00:: 08012765 1 0 -egyptian_lupine%1:20:00:: 12546420 1 0 -egyptian_monetary_unit%1:23:00:: 13693908 1 0 -egyptian_onion%1:20:00:: 12433540 1 0 -egyptian_paper_reed%1:20:00:: 12151365 1 0 -egyptian_paper_rush%1:20:00:: 12151365 1 0 -egyptian_pea%1:20:00:: 12515711 1 0 -egyptian_pound%1:23:00:: 13694017 1 0 -egyptian_vulture%1:05:00:: 01617766 1 0 -egyptian_water_lily%1:20:00:: 11715810 1 0 -egyptologist%1:18:00:: 10047822 1 0 -egyptology%1:09:00:: 06144855 1 0 -ehadhamen%1:15:00:: 09038079 1 0 -ehf%1:07:00:: 05058025 1 0 -ehrenberg%1:18:00:: 10953473 1 0 -ehrlich%1:18:00:: 10953605 1 0 -eib%1:23:00:: 13630864 1 0 -eibit%1:23:00:: 13631355 1 0 -eichhornia%1:20:00:: 12610186 1 0 -eichhornia_crassipes%1:20:00:: 12610328 1 0 -eichhornia_spesiosa%1:20:00:: 12610328 1 0 -eichmann%1:18:00:: 10953797 1 0 -eicosapentaenoic_acid%1:27:00:: 14847654 1 0 -eider%1:05:00:: 01853195 1 0 -eider_duck%1:05:00:: 01853195 1 0 -eiderdown%1:05:00:: 01896844 2 0 -eiderdown%1:06:00:: 03266749 1 0 -eidetic%5:00:00:representational:00 01979501 1 0 -eidos%1:07:00:: 04723436 1 0 -eiffel%1:18:00:: 10954039 1 0 -eiffel_tower%1:06:00:: 03266906 1 0 -eigen%1:18:00:: 10954180 1 0 -eigenvalue%1:09:00:: 05856589 1 0 -eigenvalue_of_a_matrix%1:09:00:: 05856589 1 0 -eigenvalue_of_a_square_matrix%1:09:00:: 05856589 1 0 -eight%1:06:00:: 03267340 3 0 -eight%1:14:00:: 08275497 2 0 -eight%1:23:00:: 13745086 1 0 -eight%5:00:00:cardinal:00 02187073 1 37 -eight-day%5:00:00:long:02 01439706 1 0 -eight-fold%5:00:00:multiple:00 02219988 1 0 -eight-membered%5:00:00:membered:00 01503504 1 0 -eight-sided%5:00:00:multilateral:00 00238712 1 0 -eight-spot%1:06:00:: 03267340 1 0 -eight_ball%1:06:00:: 03267113 1 0 -eighteen%1:23:00:: 13747865 1 0 -eighteen%5:00:00:cardinal:00 02188108 1 8 -eighteenth%1:24:00:: 13848684 1 0 -eighteenth%5:00:00:ordinal:00 02204363 1 7 -eighteenth_amendment%1:10:00:: 06728998 1 0 -eighter%1:23:00:: 13745086 1 0 -eighter_from_decatur%1:23:00:: 13745086 1 0 -eightfold%5:00:00:multiple:00 02219988 1 0 -eighth%1:23:00:: 13738140 2 0 -eighth%1:24:00:: 13847616 1 0 -eighth%5:00:00:ordinal:00 02203123 1 12 -eighth_cranial_nerve%1:08:00:: 05479503 1 0 -eighth_note%1:10:00:: 06871384 1 0 -eighties%1:28:00:: 15150870 3 0 -eighties%1:28:01:: 15150993 2 0 -eighties%1:28:02:: 15151084 1 0 -eightieth%1:24:00:: 13849512 1 0 -eightieth%5:00:00:ordinal:00 02208971 1 0 -eightpence%1:21:00:: 13391610 1 0 -eightpenny%5:00:00:sized:00 02223066 1 0 -eightpenny_nail%1:06:00:: 03267256 1 0 -eightsome%1:04:00:: 00540396 2 0 -eightsome%1:14:00:: 07987903 1 0 -eightvo%1:07:00:: 05096408 1 0 -eighty%1:23:00:: 13750164 1 0 -eighty%5:00:00:cardinal:00 02194151 1 6 -eighty-eight%5:00:00:cardinal:00 02194946 1 0 -eighty-fifth%5:00:00:ordinal:00 02209080 1 0 -eighty-five%5:00:00:cardinal:00 02194649 1 0 -eighty-four%5:00:00:cardinal:00 02194550 1 0 -eighty-nine%5:00:00:cardinal:00 02195049 1 0 -eighty-one%5:00:00:cardinal:00 02194255 1 0 -eighty-seven%5:00:00:cardinal:00 02194844 1 0 -eighty-six%5:00:00:cardinal:00 02194747 1 0 -eighty-three%5:00:00:cardinal:00 02194448 1 0 -eighty-two%5:00:00:cardinal:00 02194351 1 0 -eijkman%1:18:00:: 10954328 1 0 -eileen_farrell%1:18:00:: 10967152 1 0 -eimeria%1:05:00:: 01423302 1 0 -eimeriidae%1:05:00:: 01423001 1 0 -eindhoven%1:15:00:: 08950649 1 0 -einstein%1:18:00:: 10954498 1 0 -einstein%1:18:01:: 10126926 2 0 -einstein's_general_theory_of_relativity%1:09:00:: 06106820 1 0 -einstein's_special_theory_of_relativity%1:09:00:: 06107083 1 0 -einstein's_theory_of_relativity%1:09:00:: 06106502 1 0 -einsteinian%3:01:00:: 03031247 1 0 -einsteinium%1:27:00:: 14636822 1 0 -einthoven%1:18:00:: 10954819 1 0 -eira%1:05:00:: 02451292 1 0 -eira_barbara%1:05:00:: 02451415 1 0 -eire%1:15:00:: 08888676 1 0 -eisegesis%1:10:00:: 07171785 1 0 -eisenhower%1:18:00:: 10954966 1 0 -eisenstaedt%1:18:00:: 10955282 1 0 -eisenstein%1:18:00:: 10955483 1 0 -eisteddfod%1:04:00:: 00517231 1 0 -eitchen_midden%1:15:00:: 08560560 1 0 -either%4:02:00:: 00024893 1 10 -ejaculate%1:08:00:: 05404336 1 0 -ejaculate%2:29:00:: 00055010 2 0 -ejaculate%2:32:00:: 00981944 1 4 -ejaculation%1:10:00:: 07125958 1 1 -ejaculation%1:22:00:: 13471815 2 0 -ejaculator%1:18:00:: 10048001 2 0 -ejaculator%1:18:01:: 10048117 1 0 -ejaculatory_duct%1:08:00:: 05527389 1 0 -eject%2:29:00:: 00104868 2 1 -eject%2:35:00:: 01375637 4 0 -eject%2:35:01:: 01468576 1 2 -eject%2:38:00:: 02076999 3 0 -ejection%1:04:00:: 00206927 2 0 -ejection%1:04:01:: 00116687 1 2 -ejection_seat%1:06:00:: 03267468 1 0 -ejector%1:06:00:: 02972533 2 0 -ejector%1:18:00:: 10386071 1 0 -ejector_seat%1:06:00:: 03267468 1 0 -ekbom_syndrome%1:26:00:: 14309394 1 0 -eke_out%2:40:00:: 02239846 4 0 -eke_out%2:40:01:: 02239997 3 0 -eke_out%2:40:02:: 02342580 1 2 -eke_out%2:42:00:: 02616236 2 0 -ekg%1:10:00:: 07004057 1 0 -ekman%1:18:00:: 10955748 1 0 -el%1:06:00:: 03280813 2 0 -el%1:24:00:: 13836550 1 0 -el-aksur%1:15:00:: 08899577 1 0 -el_aaium%1:15:00:: 08969948 1 0 -el_alamein%1:04:00:: 01278232 2 0 -el_alamein%1:15:00:: 08898941 1 0 -el_beda%1:15:00:: 08987262 1 0 -el_caudillo%1:18:00:: 10978842 1 0 -el_cid%1:18:00:: 09598491 1 0 -el_dorado%1:09:00:: 05627514 1 0 -el_giza%1:15:00:: 08899149 1 0 -el_greco%1:18:00:: 10956377 1 0 -el_iskandriyah%1:15:00:: 08898187 1 0 -el_libertador%1:17:00:: 09272773 2 0 -el_libertador%1:18:00:: 10855604 1 0 -el_misti%1:15:00:: 09174566 1 0 -el_muerto%1:17:00:: 09272927 1 0 -el_nino%1:18:00:: 11084110 2 0 -el_nino%1:19:00:: 11488601 1 0 -el_nino_southern_oscillation%1:19:00:: 11488828 1 0 -el_paso%1:15:00:: 09144117 1 0 -el_qahira%1:15:00:: 08898633 1 0 -el_salvador%1:15:00:: 08738272 1 0 -el_salvadoran_colon%1:23:00:: 13667643 1 0 -el_salvadoran_monetary_unit%1:23:00:: 13667523 1 0 -ela%1:14:00:: 08043169 1 0 -elaborate%2:30:00:: 00400883 3 0 -elaborate%2:30:01:: 00251463 4 0 -elaborate%2:32:00:: 00955601 1 7 -elaborate%2:36:00:: 01625343 2 0 -elaborate%5:00:00:careful:00 00310433 2 4 -elaborate%5:00:00:fancy:00 01795933 1 9 -elaborated%5:00:00:careful:00 00310433 1 0 -elaborately%4:02:00:: 00084840 1 1 -elaborateness%1:07:00:: 04766852 1 0 -elaborateness%1:07:01:: 04698112 2 0 -elaboration%1:04:00:: 00250710 5 0 -elaboration%1:04:01:: 00371487 1 2 -elaboration%1:07:00:: 04766852 4 0 -elaboration%1:10:00:: 07172756 3 0 -elaboration%1:11:00:: 07357679 2 0 -elaeagnaceae%1:20:00:: 12325497 1 0 -elaeagnus%1:20:00:: 12325667 1 0 -elaeagnus_augustifolia%1:20:00:: 12326369 1 0 -elaeagnus_commutata%1:20:00:: 12326178 1 0 -elaeagnus_latifolia%1:20:00:: 12326033 1 0 -elaeis%1:20:00:: 12590117 1 0 -elaeis_guineensis%1:20:00:: 12590499 1 0 -elaeis_oleifera%1:20:00:: 12590600 1 0 -elaeocarpaceae%1:20:00:: 12192373 1 0 -elaeocarpus%1:20:00:: 12192722 1 0 -elaeocarpus_family%1:20:00:: 12192373 1 0 -elaeocarpus_grandis%1:20:00:: 12192877 1 0 -elaeostearic_acid%1:27:00:: 14847810 1 0 -elagatis%1:05:00:: 02577291 1 0 -elagatis_bipinnulata%1:05:00:: 02577403 1 0 -elaidic_acid%1:27:00:: 14840342 1 0 -elam%1:15:00:: 08913242 1 0 -elamite%1:10:00:: 06968454 2 0 -elamite%1:18:00:: 09640715 1 0 -elamitic%1:10:00:: 06968454 1 0 -elan%1:07:00:: 04633570 3 0 -elan%1:07:01:: 04812871 2 0 -elan%1:12:00:: 07555402 1 0 -elan_vital%1:19:00:: 11523839 1 0 -eland%1:05:00:: 02426813 1 0 -elanoides%1:05:00:: 01608934 1 0 -elanoides_forficatus%1:05:00:: 01609062 1 0 -elanus%1:05:00:: 01609236 1 0 -elanus_leucurus%1:05:00:: 01609391 1 0 -elaphe%1:05:00:: 01732445 1 0 -elaphe_guttata%1:05:00:: 01732614 1 0 -elaphe_obsoleta%1:05:00:: 01732789 1 0 -elaphure%1:05:00:: 02435517 1 0 -elaphurus%1:05:00:: 02435386 1 0 -elaphurus_davidianus%1:05:00:: 02435517 1 0 -elapid%1:05:00:: 01745125 1 0 -elapid_snake%1:05:00:: 01745125 1 0 -elapidae%1:05:00:: 01744657 1 0 -elapse%2:38:00:: 02072849 1 5 -elapsed%3:44:00:: 03148724 1 1 -elapsed_time%1:28:00:: 15131123 1 0 -elasmobranch%1:05:00:: 01482071 1 0 -elasmobranchii%1:05:00:: 01481599 1 0 -elastance%1:19:00:: 11433698 1 0 -elastance_unit%1:23:00:: 13633596 1 0 -elastase%1:27:00:: 14849540 1 0 -elastic%1:06:00:: 03267696 2 0 -elastic%1:06:01:: 04116098 1 0 -elastic%3:00:00:: 00843146 1 5 -elastic%5:00:00:adaptable:00 01028163 2 1 -elastic_band%1:06:00:: 04116098 1 0 -elastic_bandage%1:06:00:: 03267821 1 0 -elastic_device%1:06:00:: 03267972 1 0 -elastic_energy%1:19:00:: 11448835 1 0 -elastic_modulus%1:23:00:: 13587963 1 0 -elastic_potential_energy%1:19:00:: 11448835 1 0 -elastic_tissue%1:08:00:: 05287368 1 0 -elasticised%5:00:00:elastic:00 00844112 1 0 -elasticity%1:07:00:: 05020358 1 3 -elasticity_of_shear%1:07:00:: 05021740 1 0 -elasticized%5:00:00:elastic:00 00844112 1 0 -elastin%1:08:00:: 05287731 1 0 -elastomer%1:27:00:: 14840583 1 0 -elastoplast%1:06:00:: 03268142 1 0 -elastosis%1:26:00:: 14035502 1 0 -elate%2:37:00:: 01811736 1 1 -elated%3:00:00:: 00704609 1 0 -elated%5:00:00:joyous:00 01367211 2 0 -elater%1:05:00:: 02176261 1 0 -elaterid%1:05:00:: 02176261 1 0 -elaterid_beetle%1:05:00:: 02176261 1 0 -elateridae%1:05:00:: 02176073 1 0 -elating%5:00:00:exciting:00 00921538 1 0 -elation%1:12:00:: 07527656 2 1 -elation%1:26:00:: 14405225 1 1 -elavil%1:06:00:: 02702575 1 0 -elbe%1:17:00:: 09271558 1 0 -elbe_river%1:17:00:: 09271558 1 0 -elbow%1:05:01:: 02468368 5 0 -elbow%1:06:00:: 03268311 4 0 -elbow%1:06:01:: 03268470 2 1 -elbow%1:06:02:: 03268553 3 0 -elbow%1:08:00:: 05579944 1 9 -elbow%2:35:00:: 01239494 2 0 -elbow%2:38:00:: 01873942 1 1 -elbow_bone%1:08:00:: 05593476 1 0 -elbow_grease%1:04:00:: 00621627 1 0 -elbow_joint%1:08:00:: 05579944 1 0 -elbow_pad%1:06:00:: 03268645 1 0 -elbow_room%1:23:00:: 13777764 1 0 -elbowing%1:04:00:: 00114298 1 0 -eld%1:28:00:: 15153787 1 0 -eld%1:28:01:: 15145171 2 0 -elder%1:18:00:: 10048218 1 3 -elder%1:18:01:: 10048367 3 0 -elder%1:20:00:: 12678224 2 0 -elder%5:00:00:senior:00 02100031 1 2 -elder_hand%1:18:00:: 10048729 1 0 -elder_statesman%1:18:00:: 10048485 2 0 -elder_statesman%1:18:01:: 10048612 1 0 -elderberry%1:13:00:: 07765208 2 0 -elderberry%1:20:00:: 12679201 1 0 -elderberry_bush%1:20:00:: 12678224 1 0 -elderly%1:14:00:: 07943870 1 0 -elderly%5:00:00:old:02 01644225 1 6 -eldership%1:04:00:: 00592199 1 0 -eldest%1:18:00:: 10092643 1 0 -eldest%5:00:00:first:00 01012100 1 2 -eldest_hand%1:18:00:: 10048729 1 0 -eldorado%1:09:00:: 05627514 1 0 -eldritch%5:00:00:supernatural:00 01575424 1 0 -eleanor_gwyn%1:18:00:: 11020888 1 0 -eleanor_gwynn%1:18:00:: 11020888 1 0 -eleanor_gwynne%1:18:00:: 11020888 1 0 -eleanor_of_aquitaine%1:18:00:: 10955920 1 0 -eleanor_roosevelt%1:18:00:: 11270380 1 0 -elecampane%1:20:00:: 11984659 1 0 -elect%1:14:00:: 08386853 1 0 -elect%2:31:00:: 00676864 2 3 -elect%2:41:00:: 02400760 1 21 -elect%5:00:00:incoming:00 01294857 2 0 -elect%5:00:00:selected:00 02123579 1 0 -elected%3:00:02:: 00846052 1 3 -elected_official%1:18:00:: 10048836 1 0 -election%1:04:00:: 00180962 2 1 -election%1:04:01:: 00181781 1 67 -election%1:09:00:: 05966798 4 0 -election%1:26:00:: 13926329 3 0 -election_commission%1:14:00:: 08325124 1 0 -election_day%1:28:00:: 15172881 1 1 -election_district%1:15:00:: 08538730 1 0 -election_fraud%1:04:00:: 00777679 1 0 -electioneer%2:41:00:: 02414473 1 0 -electioneering%1:04:00:: 00799537 2 0 -electioneering%1:10:00:: 07245885 1 0 -elective%1:04:00:: 00890808 1 0 -elective%3:00:00:: 00846052 1 0 -elective%5:00:00:optional:00 00847577 2 0 -elective_course%1:04:00:: 00890808 1 0 -elector%1:18:00:: 10760340 1 1 -elector%1:18:01:: 10473273 2 0 -electoral%3:01:00:: 02717538 1 11 -electoral%5:00:00:elective:00 00846219 2 0 -electoral_college%1:14:00:: 08238313 1 0 -electoral_system%1:09:00:: 05904135 1 0 -electorate%1:14:00:: 08161068 1 0 -electra%1:18:00:: 09596884 1 0 -electra_complex%1:12:00:: 07483005 1 0 -electric%1:06:00:: 03268790 1 0 -electric%3:01:00:: 02826877 1 16 -electric%5:00:00:exciting:00 00921631 3 0 -electric%5:00:00:tense:03 02406640 2 0 -electric-arc_furnace%1:06:00:: 04305016 1 0 -electric-discharge_lamp%1:06:00:: 03271376 1 0 -electric-light_bulb%1:06:00:: 03665924 1 0 -electric_arc%1:19:00:: 11511523 1 0 -electric_automobile%1:06:00:: 03268790 1 0 -electric_battery%1:06:00:: 02810471 1 0 -electric_bell%1:06:00:: 03270695 1 0 -electric_bill%1:10:00:: 06517345 1 0 -electric_blanket%1:06:00:: 03270854 1 0 -electric_burn%1:26:00:: 14289829 1 0 -electric_car%1:06:00:: 03268790 1 0 -electric_catfish%1:05:00:: 02518622 1 0 -electric_cell%1:06:00:: 02991048 1 0 -electric_chair%1:06:00:: 03271030 1 1 -electric_charge%1:19:00:: 11435028 1 0 -electric_circuit%1:06:00:: 03033362 1 1 -electric_clock%1:06:00:: 03271260 1 0 -electric_company%1:14:00:: 08186393 1 0 -electric_cord%1:06:00:: 03106898 1 0 -electric_current%1:19:00:: 11443532 1 4 -electric_dipole%1:17:00:: 09271774 1 0 -electric_dipole_moment%1:19:00:: 11483472 1 0 -electric_discharge%1:19:00:: 11511523 1 1 -electric_doublet%1:17:00:: 09271774 1 0 -electric_drill%1:06:00:: 03240140 1 0 -electric_eel%1:05:00:: 01444339 1 0 -electric_eye%1:06:00:: 03924978 1 0 -electric_fan%1:06:00:: 03271574 1 0 -electric_field%1:19:00:: 11449658 1 0 -electric_fire%1:06:00:: 03272239 1 0 -electric_frying_pan%1:06:00:: 03271765 1 0 -electric_furnace%1:06:00:: 03271865 1 0 -electric_glow%1:19:00:: 11440802 1 0 -electric_guitar%1:06:00:: 03272010 1 0 -electric_hammer%1:06:00:: 03272125 1 0 -electric_healing%1:04:00:: 00662681 1 0 -electric_heater%1:06:00:: 03272239 1 1 -electric_lamp%1:06:00:: 03272383 1 0 -electric_light%1:06:00:: 03665924 1 2 -electric_locomotive%1:06:00:: 03272562 1 0 -electric_main%1:06:00:: 03272696 1 0 -electric_meter%1:06:00:: 03272810 1 0 -electric_mixer%1:06:00:: 03272940 1 0 -electric_motor%1:06:00:: 03273061 1 0 -electric_organ%1:06:00:: 03273551 1 0 -electric_outlet%1:06:00:: 04548771 1 1 -electric_pig%1:06:00:: 03212114 1 0 -electric_potential%1:19:00:: 11493827 1 0 -electric_power%1:19:00:: 11449419 1 1 -electric_range%1:06:00:: 03273740 1 0 -electric_ray%1:05:00:: 01496331 1 0 -electric_razor%1:06:00:: 04185804 1 2 -electric_receptacle%1:06:00:: 04548771 1 0 -electric_refrigerator%1:06:00:: 03273913 1 1 -electric_resistance%1:19:00:: 11503968 1 0 -electric_sander%1:06:00:: 03250588 1 0 -electric_shaver%1:06:00:: 04185804 1 0 -electric_shock%1:04:00:: 00839292 3 0 -electric_shock%1:04:01:: 01163586 1 1 -electric_shock%1:26:00:: 14291823 2 0 -electric_socket%1:06:00:: 03274137 1 0 -electric_storm%1:19:00:: 11519253 1 0 -electric_switch%1:06:00:: 04372370 1 0 -electric_thermometer%1:06:00:: 04421083 1 0 -electric_toothbrush%1:06:00:: 03274265 1 2 -electric_typewriter%1:06:00:: 03274435 1 0 -electrical%3:01:00:: 02826701 1 16 -electrical%3:01:01:: 02826877 2 0 -electrical_cable%1:06:00:: 03268918 1 0 -electrical_capacity%1:19:00:: 11433546 1 0 -electrical_circuit%1:06:00:: 03033362 1 0 -electrical_condenser%1:06:00:: 02955247 1 0 -electrical_conduction%1:19:00:: 11512650 1 0 -electrical_contact%1:06:00:: 03269073 1 0 -electrical_converter%1:06:00:: 03269203 1 0 -electrical_device%1:06:00:: 03269401 1 0 -electrical_discharge%1:11:00:: 07307895 1 0 -electrical_distributor%1:06:00:: 03213014 1 0 -electrical_disturbance%1:19:00:: 11514288 1 0 -electrical_elastance%1:19:00:: 11433698 1 0 -electrical_energy%1:19:00:: 11450566 1 0 -electrical_engineer%1:18:00:: 10049017 1 1 -electrical_engineering%1:09:00:: 06128024 1 0 -electrical_fuse%1:06:00:: 03407369 1 0 -electrical_healing%1:04:00:: 00662681 1 0 -electrical_line_of_force%1:19:00:: 11457283 1 0 -electrical_outlet%1:06:00:: 04548771 1 0 -electrical_phenomenon%1:19:00:: 11449002 1 0 -electrical_plant%1:06:00:: 03270579 1 0 -electrical_power%1:19:00:: 11449419 1 0 -electrical_relay%1:06:00:: 04072960 1 0 -electrical_resistance%1:19:00:: 11503968 1 0 -electrical_shock%1:04:00:: 00839292 1 1 -electrical_shunt%1:06:00:: 04211001 1 0 -electrical_skin_response%1:04:00:: 00860011 1 0 -electrical_storm%1:19:00:: 11519253 1 0 -electrical_switch%1:06:00:: 04372370 1 0 -electrical_system%1:06:00:: 03270165 2 0 -electrical_system%1:06:01:: 03270579 1 0 -electrical_work%1:04:00:: 00608265 1 1 -electrically%4:02:00:: 00128989 1 1 -electrician%1:18:00:: 10049363 1 0 -electricity%1:12:00:: 07514600 3 1 -electricity%1:19:00:: 11449907 1 8 -electricity%1:19:01:: 11450566 2 5 -electrification%1:04:00:: 01047191 1 0 -electrification%1:04:01:: 00952615 2 0 -electrify%2:30:00:: 00505802 3 0 -electrify%2:30:01:: 00506040 2 0 -electrify%2:37:00:: 01830798 1 0 -electrifying%5:00:00:exciting:00 00921866 1 1 -electro-acoustic_transducer%1:06:00:: 03274561 1 0 -electrocardiogram%1:10:00:: 07004057 1 0 -electrocardiograph%1:06:00:: 02963503 1 2 -electrocardiographic%3:01:00:: 02717678 1 0 -electrocardiography%1:04:00:: 00832092 1 0 -electrocautery%1:04:00:: 00697734 1 0 -electrochemical%3:01:00:: 02717784 1 0 -electrochemical_series%1:14:00:: 08377454 1 0 -electrochemistry%1:09:00:: 06089857 1 0 -electroconvulsive_therapy%1:04:00:: 00706605 1 0 -electrocute%2:41:00:: 02484957 2 0 -electrocute%2:41:01:: 02485135 1 0 -electrocution%1:04:00:: 00228078 2 0 -electrocution%1:04:01:: 01165112 1 0 -electrocutioner%1:18:00:: 10049522 1 0 -electrode%1:06:00:: 03274796 1 3 -electrodeposition%1:22:00:: 13471958 1 0 -electrodermal_response%1:04:00:: 00860011 1 0 -electrodynamometer%1:06:00:: 03275125 1 0 -electroencephalogram%1:10:00:: 07004241 1 0 -electroencephalograph%1:06:00:: 03275311 1 0 -electroencephalographic%3:01:00:: 02717896 1 0 -electrograph%1:06:00:: 03275451 2 0 -electrograph%1:06:01:: 03275566 1 0 -electrologist%1:18:00:: 10049648 1 0 -electrolysis%1:04:00:: 00255065 2 0 -electrolysis%1:22:00:: 13472125 1 1 -electrolyte%1:27:00:: 14847929 1 0 -electrolyte_acid%1:27:00:: 14773865 1 0 -electrolyte_balance%1:26:00:: 14017665 1 0 -electrolytic%1:06:00:: 03275681 1 0 -electrolytic%3:01:00:: 02718008 2 0 -electrolytic%3:01:01:: 02718131 1 0 -electrolytic_capacitor%1:06:00:: 03275681 1 0 -electrolytic_cell%1:06:00:: 03275864 1 0 -electrolytic_condenser%1:06:00:: 03275681 1 0 -electromagnet%1:06:00:: 03276179 1 1 -electromagnetic%3:01:00:: 02926320 1 1 -electromagnetic_delay_line%1:06:00:: 03276431 1 0 -electromagnetic_interaction%1:19:00:: 11516439 1 0 -electromagnetic_intrusion%1:04:00:: 00995855 1 0 -electromagnetic_radiation%1:19:00:: 11450869 1 0 -electromagnetic_spectrum%1:19:00:: 11451442 1 0 -electromagnetic_unit%1:23:00:: 13602526 1 0 -electromagnetic_wave%1:19:00:: 11450869 1 0 -electromagnetics%1:09:00:: 06099107 1 0 -electromagnetism%1:09:00:: 06099107 2 0 -electromagnetism%1:19:00:: 11479368 1 0 -electromechanical%3:01:00:: 02718256 1 0 -electromechanical_device%1:06:00:: 03276574 1 0 -electrometer%1:06:00:: 03276696 1 0 -electromotive%3:01:00:: 02718393 1 0 -electromotive_drug_administration%1:04:00:: 00663878 1 0 -electromotive_force%1:19:00:: 11523538 1 0 -electromotive_force_series%1:14:00:: 08377454 1 0 -electromotive_series%1:14:00:: 08377454 1 0 -electromyogram%1:10:00:: 07004422 1 0 -electromyograph%1:06:00:: 03276839 1 0 -electromyography%1:04:00:: 01006054 1 1 -electron%1:17:00:: 09271904 1 12 -electron_accelerator%1:06:00:: 03277004 1 0 -electron_beam%1:19:00:: 11428379 1 0 -electron_gun%1:06:00:: 03277149 1 0 -electron_lens%1:06:00:: 03656957 1 0 -electron_microscope%1:06:00:: 03279508 1 0 -electron_microscopic%3:01:00:: 02918724 1 2 -electron_microscopy%1:04:00:: 00641109 1 0 -electron_multiplier%1:06:00:: 03279804 1 0 -electron_optics%1:09:00:: 06115004 1 0 -electron_orbit%1:15:00:: 08612340 1 0 -electron_paramagnetic_resonance%1:04:00:: 00641222 1 0 -electron_radiation%1:19:00:: 11428699 1 0 -electron_shell%1:14:00:: 07959659 1 0 -electron_spin_resonance%1:04:00:: 00641222 1 0 -electron_tube%1:06:00:: 04494204 1 0 -electron_volt%1:23:00:: 13725902 1 0 -electronegative%5:00:00:charged:00 00358534 1 0 -electronegativity%1:07:00:: 04944513 1 0 -electroneutral%5:00:00:uncharged:00 00359160 1 0 -electronic%3:01:00:: 02718497 1 4 -electronic%3:01:01:: 02718719 2 0 -electronic_balance%1:06:00:: 03277459 1 0 -electronic_bulletin_board%1:06:00:: 02916684 1 0 -electronic_communication%1:10:00:: 06278662 1 0 -electronic_computer%1:06:00:: 03082979 1 0 -electronic_converter%1:06:00:: 03277602 1 0 -electronic_counter-countermeasures%1:04:00:: 00995356 1 0 -electronic_countermeasures%1:04:00:: 00995134 1 0 -electronic_data_processing%1:22:00:: 13472341 1 0 -electronic_database%1:10:00:: 06588511 1 0 -electronic_deception%1:04:00:: 01251270 1 0 -electronic_device%1:06:00:: 03277771 1 2 -electronic_dictionary%1:10:00:: 06639023 1 0 -electronic_equipment%1:06:00:: 03278248 1 1 -electronic_fetal_monitor%1:06:00:: 03278914 1 0 -electronic_foetal_monitor%1:06:00:: 03278914 1 0 -electronic_image%1:06:00:: 02845425 1 0 -electronic_imitative_deception%1:04:00:: 01251923 1 0 -electronic_information_service%1:10:00:: 06588511 1 0 -electronic_instrument%1:06:00:: 03279153 1 0 -electronic_jamming%1:04:00:: 01253379 1 0 -electronic_mail%1:10:00:: 06279326 1 0 -electronic_manipulative_deception%1:04:00:: 01251489 1 0 -electronic_messaging%1:10:00:: 06280477 1 0 -electronic_musical_instrument%1:06:00:: 03279153 1 0 -electronic_network%1:06:00:: 03820728 1 0 -electronic_organ%1:06:00:: 03273551 1 0 -electronic_reconnaissance%1:04:00:: 00986080 1 0 -electronic_scanner%1:06:00:: 04142731 1 0 -electronic_signal%1:10:00:: 07263220 1 0 -electronic_simulative_deception%1:04:00:: 01251724 1 0 -electronic_stylus%1:06:00:: 03668279 1 0 -electronic_surveillance%1:04:00:: 00654765 1 0 -electronic_text%1:10:00:: 06391171 1 0 -electronic_transistor%1:06:00:: 04471632 1 0 -electronic_voltmeter%1:06:00:: 03279364 1 0 -electronic_warfare%1:04:00:: 00954751 1 0 -electronic_warfare-support_measures%1:04:00:: 00995588 1 0 -electronically%4:02:00:: 00123582 1 0 -electronics%1:09:00:: 06099269 1 10 -electronics_company%1:14:00:: 08003035 1 0 -electronics_industry%1:14:00:: 08067801 1 0 -electronics_intelligence%1:04:00:: 00983102 1 0 -electrophoresis%1:22:00:: 13472518 1 1 -electrophoretic%3:01:00:: 02718845 1 0 -electrophoridae%1:05:00:: 01443998 1 0 -electrophorus%1:05:00:: 01444164 2 0 -electrophorus%1:06:00:: 03279918 1 1 -electrophorus_electric%1:05:00:: 01444339 1 0 -electroplate%1:06:00:: 03280064 1 0 -electroplate%2:35:00:: 01395782 1 0 -electroplater%1:18:00:: 10049788 1 0 -electropositive%5:00:00:charged:00 00358678 1 0 -electroretinogram%1:10:00:: 07004564 1 0 -electroscope%1:06:00:: 03280216 1 0 -electroshock%1:04:00:: 00706605 1 2 -electroshock_therapy%1:04:00:: 00706605 1 1 -electrosleep%1:09:00:: 05680684 1 0 -electrostatic%3:01:00:: 02719009 1 2 -electrostatic_bond%1:19:00:: 11437344 1 0 -electrostatic_charge%1:19:00:: 11435358 1 0 -electrostatic_field%1:19:00:: 11435541 1 0 -electrostatic_generator%1:06:00:: 03280394 1 0 -electrostatic_machine%1:06:00:: 03280394 1 0 -electrostatic_precipitation%1:22:00:: 13472862 1 0 -electrostatic_precipitator%1:06:00:: 03998673 1 0 -electrostatic_printer%1:06:00:: 03280644 1 0 -electrostatic_unit%1:23:00:: 13635698 1 0 -electrostatically%4:02:00:: 00141262 1 0 -electrostatics%1:09:00:: 06100101 1 0 -electrosurgery%1:04:00:: 00670897 1 0 -electrotherapist%1:18:00:: 10049896 1 1 -electrotherapy%1:04:00:: 00662681 1 0 -electrovalent_bond%1:19:00:: 11437344 1 0 -electrum%1:27:00:: 14718017 1 0 -eleemosynary%5:00:00:charitable:00 00359645 1 0 -elegance%1:07:00:: 04812268 1 3 -elegance%1:07:01:: 04812636 2 0 -elegant%3:00:00:: 00849357 1 2 -elegant%5:00:00:graceful:00 01139613 3 0 -elegant%5:00:00:gracious:00 01142069 2 0 -elegant_brodiaea%1:20:00:: 12445628 1 0 -elegant_cat's_ears%1:20:00:: 12447581 1 0 -elegant_habenaria%1:20:00:: 12066451 1 0 -elegantly%4:02:00:: 00327601 1 0 -elegantly%4:02:01:: 00327408 2 0 -elegiac%3:01:00:: 02719244 1 0 -elegiac%5:00:00:sorrowful:00 01365407 2 0 -elegiac_stanza%1:10:00:: 06384593 1 0 -elegise%2:36:00:: 01703326 1 0 -elegist%1:18:00:: 10050043 1 0 -elegize%2:36:00:: 01703326 1 0 -elegy%1:10:00:: 06379568 1 0 -element%1:06:00:: 03081021 2 10 -element%1:09:00:: 05868954 1 34 -element%1:15:00:: 08568579 4 1 -element%1:25:00:: 13877408 7 0 -element%1:26:00:: 13934465 6 0 -element%1:27:00:: 14622893 3 3 -element%1:27:01:: 14840755 5 0 -element_104%1:27:00:: 14653416 1 0 -element_105%1:27:00:: 14636523 1 0 -element_106%1:27:00:: 14654058 1 0 -element_107%1:27:00:: 14631757 1 0 -element_108%1:27:00:: 14639795 1 0 -element_109%1:27:00:: 14644963 1 0 -element_110%1:27:00:: 14636392 1 0 -element_111%1:27:00:: 14652824 1 0 -element_112%1:27:00:: 14659794 1 0 -element_113%1:27:00:: 14660314 1 0 -element_114%1:27:00:: 14660183 1 0 -element_115%1:27:00:: 14660052 1 0 -element_116%1:27:00:: 14659922 1 0 -element_of_a_cone%1:25:00:: 13877547 1 0 -element_of_a_cylinder%1:25:00:: 13877667 1 0 -elemental%3:01:00:: 02719395 1 1 -elemental%3:01:02:: 02719503 2 0 -elemental%5:00:00:basic:00 01856238 3 0 -elementarily%4:02:00:: 00326770 1 0 -elementary%3:01:00:: 02719685 2 0 -elementary%5:00:00:basic:00 01856238 3 0 -elementary%5:00:00:easy:01 00750296 1 2 -elementary_education%1:04:00:: 00885858 1 0 -elementary_geometry%1:09:00:: 06005518 1 0 -elementary_particle%1:17:00:: 09272085 1 0 -elementary_school%1:14:00:: 08412749 1 1 -elements%1:19:00:: 11525303 1 0 -elemi%1:20:00:: 12691028 1 0 -eleocharis%1:20:00:: 12153393 1 0 -eleocharis_acicularis%1:20:00:: 12153914 1 0 -eleocharis_dulcis%1:20:00:: 12153741 1 0 -eleocharis_palustris%1:20:00:: 12154114 1 0 -eleonora_duse%1:18:00:: 10946481 1 0 -eleostearic_acid%1:27:00:: 14847810 1 0 -eleotridae%1:05:00:: 02619738 1 0 -elephant%1:05:00:: 02503517 1 3 -elephant%1:10:00:: 06881662 2 0 -elephant's-foot%1:20:01:: 11962994 2 0 -elephant's-foot%1:20:02:: 12088909 1 0 -elephant's_ear%1:20:01:: 11782036 1 0 -elephant's_ear%1:20:02:: 11761202 2 0 -elephant-tusk%1:20:00:: 12875269 1 0 -elephant_bird%1:05:00:: 01522450 1 0 -elephant_ear%1:20:00:: 11782036 1 0 -elephant_seal%1:05:00:: 02080415 1 0 -elephant_tree%1:20:00:: 12691428 1 0 -elephant_yam%1:20:00:: 11782878 1 0 -elephantiasis%1:26:00:: 14367341 1 0 -elephantiasis_neuromatosa%1:26:00:: 14367556 1 0 -elephantiasis_scroti%1:26:00:: 14367649 1 0 -elephantidae%1:05:00:: 02503313 1 0 -elephantine%5:00:00:large:00 01385773 1 0 -elephantopus%1:20:00:: 11962853 1 0 -elephas%1:05:00:: 02503868 1 0 -elephas_maximus%1:05:00:: 02504013 1 0 -elettaria%1:20:00:: 12358173 1 0 -elettaria_cardamomum%1:20:00:: 12358293 1 0 -eleusine%1:20:00:: 12118223 1 0 -eleusine_coracana%1:20:00:: 12118661 1 0 -eleusine_indica%1:20:00:: 12118414 1 0 -eleuthera_bark%1:20:00:: 12923257 1 0 -eleutherodactylus%1:05:00:: 01643092 1 0 -elevate%2:30:00:: 00544549 3 2 -elevate%2:38:00:: 01974062 2 2 -elevate%2:41:00:: 02397637 1 3 -elevated%1:06:00:: 03280813 1 0 -elevated%5:00:00:increased:00 00881432 3 0 -elevated%5:00:00:noble:01 01588619 2 0 -elevated%5:00:00:raised:00 01208044 1 1 -elevated_railroad%1:06:00:: 03280813 1 0 -elevated_railway%1:06:00:: 03280813 1 0 -elevation%1:04:01:: 00373544 8 0 -elevation%1:06:00:: 03281052 7 0 -elevation%1:07:00:: 05131283 5 0 -elevation%1:07:01:: 05086903 6 0 -elevation%1:11:00:: 07370671 1 2 -elevation%1:17:00:: 09366317 4 0 -elevation%1:24:00:: 13836550 3 1 -elevation%1:26:00:: 13940456 2 1 -elevator%1:06:00:: 03281145 1 5 -elevator%1:06:01:: 03281524 2 0 -elevator_boy%1:18:00:: 10050261 1 0 -elevator_car%1:06:00:: 02960352 1 0 -elevator_girl%1:18:00:: 10050163 1 0 -elevator_man%1:18:00:: 10050261 1 0 -elevator_operator%1:18:00:: 10050432 1 0 -elevator_shaft%1:06:00:: 03281673 1 0 -eleven%1:14:00:: 08080025 2 0 -eleven%1:23:00:: 13746672 1 0 -eleven%5:00:00:cardinal:00 02187379 1 12 -eleven-plus%1:04:00:: 00637145 1 0 -eleven-sided%5:00:00:multilateral:00 00238934 1 0 -eleventh%1:24:00:: 13847954 1 0 -eleventh%5:00:00:ordinal:00 02203500 1 2 -eleventh_cranial_nerve%1:08:00:: 05480401 1 0 -eleventh_hour%1:28:00:: 15244942 1 0 -elf%1:07:00:: 05057163 2 0 -elf%1:18:00:: 09540739 1 0 -elf_cup%1:20:00:: 13030337 1 0 -elfin%3:01:00:: 02719872 3 0 -elfin%5:00:00:playful:00 02122543 4 0 -elfin%5:00:00:small:00 01393141 2 1 -elfin%5:00:00:supernatural:00 01575810 1 1 -elfish%5:00:00:playful:00 02122543 1 0 -elflike%5:00:00:small:00 01393141 1 0 -elgar%1:18:00:: 10956134 1 0 -elgin_marbles%1:14:00:: 07958820 1 0 -eli_whitney%1:18:00:: 11385126 1 0 -elia%1:18:00:: 11115029 1 0 -elia_kazan%1:18:00:: 11098039 1 0 -elia_kazanjoglous%1:18:00:: 11098039 1 0 -elias_canetti%1:18:00:: 10881269 1 0 -elias_howe%1:18:00:: 11062424 1 0 -elicit%2:31:00:: 00728826 3 0 -elicit%2:36:00:: 01630532 2 2 -elicit%2:37:00:: 01759326 1 6 -elicitation%1:09:00:: 05827253 1 0 -elicited%5:00:00:induced:00 02283356 1 0 -elide%2:31:00:: 00615421 1 0 -elie_metchnikoff%1:18:00:: 11177151 1 0 -elie_metchnikov%1:18:00:: 11177151 1 0 -elie_wiesel%1:18:00:: 11385748 1 0 -eliel_saarinen%1:18:00:: 11277096 1 0 -eliezer_wiesel%1:18:00:: 11385748 1 0 -eligibility%1:07:00:: 04717552 1 0 -eligible%3:00:00:: 00851744 1 5 -elihu_thomson%1:18:00:: 11340642 1 0 -elihu_yale%1:18:00:: 11401617 1 0 -elijah%1:18:00:: 10956612 1 0 -elijah_muhammad%1:18:00:: 11194749 1 0 -eliminate%2:29:00:: 00072989 5 1 -eliminate%2:30:00:: 00470701 3 2 -eliminate%2:30:01:: 00471711 1 40 -eliminate%2:30:06:: 00575561 7 0 -eliminate%2:31:00:: 00685419 4 1 -eliminate%2:33:00:: 01102839 6 0 -eliminate%2:42:01:: 02629256 2 13 -elimination%1:04:01:: 00223720 5 0 -elimination%1:04:02:: 00395333 1 3 -elimination%1:04:03:: 00395503 4 0 -elimination%1:09:00:: 05782245 3 0 -elimination%1:22:00:: 13473097 2 0 -elimination_reaction%1:22:00:: 13473392 1 0 -elimination_tournament%1:11:00:: 07464969 1 0 -eliminator%1:17:00:: 09272468 1 0 -elinor_morton_hoyt_wylie%1:18:00:: 11400594 1 0 -elint%1:04:00:: 00983102 1 0 -elinvar%1:27:00:: 14810854 1 0 -eliomys%1:05:00:: 02353297 1 0 -eliot%1:18:00:: 10956883 2 0 -eliot%1:18:01:: 10957072 1 0 -elisa%1:04:00:: 00791875 1 0 -elisabeth_vigee-lebrun%1:18:00:: 11366232 1 0 -elisabethville%1:15:00:: 08735345 1 0 -elisha_graves_otis%1:18:00:: 11218290 1 0 -elision%1:09:00:: 05707269 2 0 -elision%1:22:00:: 13473536 1 0 -elite%1:14:00:: 08386555 1 6 -elite%5:00:00:selected:00 02123579 1 0 -elite_group%1:14:00:: 08386555 1 0 -elitism%1:09:00:: 06217657 1 0 -elitist%1:18:00:: 10050558 1 0 -elixir%1:13:00:: 07883384 3 0 -elixir%1:27:00:: 14841056 1 0 -elixir%1:27:01:: 14582870 2 0 -elixir_of_life%1:13:00:: 07883510 1 0 -elixophyllin%1:06:00:: 04419315 1 0 -elizabeth%1:18:01:: 10957330 2 0 -elizabeth%1:18:02:: 10957748 1 0 -elizabeth_barrett_browning%1:18:00:: 10866883 1 0 -elizabeth_cady_stanton%1:18:00:: 11313507 1 0 -elizabeth_cleghorn_stevenson_gaskell%1:18:00:: 10991740 1 0 -elizabeth_cochrane_seaman%1:18:00:: 11290653 1 0 -elizabeth_gaskell%1:18:00:: 10991740 1 0 -elizabeth_haldane%1:18:00:: 11022669 1 0 -elizabeth_i%1:18:00:: 10957330 1 0 -elizabeth_ii%1:18:00:: 10957748 1 0 -elizabeth_merriwether_gilmer%1:18:00:: 11000469 1 0 -elizabeth_palmer_peabody%1:18:00:: 11227618 1 0 -elizabeth_peabody%1:18:00:: 11227618 1 0 -elizabeth_river%1:17:00:: 09272595 1 0 -elizabeth_sanderson_haldane%1:18:00:: 11022669 1 0 -elizabeth_seaman%1:18:00:: 11290653 1 0 -elizabeth_seton%1:18:00:: 11293972 1 0 -elizabeth_taylor%1:18:00:: 11333390 1 0 -elizabethan%1:18:00:: 10050712 1 1 -elizabethan%3:01:00:: 03031400 1 0 -elizabethan_age%1:28:00:: 15122648 1 0 -elizabethan_sonnet%1:10:00:: 06383107 1 0 -elk%1:05:00:: 02432983 1 0 -elk%1:05:01:: 02431122 3 0 -elk%1:05:02:: 02431785 2 0 -elk-wood%1:20:00:: 11710393 1 0 -elk_nut%1:20:00:: 12737251 1 0 -elkhorn_fern%1:20:00:: 13177884 1 0 -elkhound%1:05:00:: 02091467 1 0 -elkwood%1:20:00:: 11710393 1 0 -ell%1:06:00:: 03281821 1 1 -ella_fitzgerald%1:18:00:: 10971981 1 0 -ellas%1:15:00:: 08780881 1 0 -ellen_price_wood%1:18:00:: 11395609 1 0 -elli%1:18:00:: 09579848 1 0 -ellice_islands%1:15:00:: 08840200 1 0 -ellington%1:18:00:: 10958010 1 0 -elliott's_goldenrod%1:20:00:: 12018100 1 0 -ellipse%1:25:00:: 13878306 1 0 -ellipsis%1:22:00:: 13473716 1 0 -ellipsoid%1:25:00:: 13897198 1 5 -ellipsoid%5:00:00:rounded:00 02046446 1 0 -ellipsoid_of_revolution%1:25:00:: 13898645 1 0 -ellipsoidal%5:00:00:rounded:00 02046446 1 0 -elliptic%5:00:00:concise:00 00548029 3 0 -elliptic%5:00:00:rounded:00 02046199 2 0 -elliptic%5:00:00:simple:01 02168132 1 0 -elliptic_geometry%1:09:00:: 06007381 1 0 -elliptic_leaf%1:20:00:: 13158071 1 0 -elliptical%5:00:00:concise:00 00548029 2 0 -elliptical%5:00:00:rounded:00 02046199 1 0 -ellipticity%1:07:00:: 05070622 1 0 -ellis_island%1:15:00:: 09120353 1 0 -ellison%1:18:00:: 10958182 1 0 -ellsworth%1:18:00:: 10958381 1 0 -ellul%1:28:00:: 15216760 1 0 -elm%1:20:00:: 12405714 1 1 -elm%1:20:02:: 12406155 2 0 -elm_family%1:20:00:: 12404943 1 0 -elm_tree%1:20:00:: 12405714 1 0 -elmer_ambrose_sperry%1:18:00:: 11311011 1 0 -elmer_leopold_rice%1:18:00:: 11259635 1 0 -elmer_reizenstein%1:18:00:: 11259635 1 0 -elmer_rice%1:18:00:: 11259635 1 0 -elmont%1:15:00:: 09124252 1 0 -elmore_john_leonard%1:18:00:: 11128236 1 0 -elmore_leonard%1:18:00:: 11128236 1 0 -elmwood%1:20:00:: 12406155 1 0 -eln%1:14:00:: 08035233 2 0 -eln%1:14:01:: 08035601 1 0 -elocute%2:32:00:: 00769180 1 0 -elocution%1:10:00:: 07083246 1 0 -elocutionary%3:01:00:: 03063176 1 0 -elocutionary%5:00:00:affected:01 00073935 2 0 -elocutionist%1:18:00:: 10050880 1 0 -elodea%1:20:00:: 12614317 1 0 -elodea_canadensis%1:20:00:: 12614625 1 0 -elodea_densa%1:20:00:: 12614763 1 0 -elongate%2:30:00:: 00318816 1 1 -elongate%5:00:00:long:01 01434007 2 0 -elongate%5:00:00:simple:01 02168699 1 0 -elongate_leaf%1:20:00:: 13158512 1 0 -elongated%5:00:00:long:01 01434007 2 1 -elongated%5:00:02:long:01 01434218 1 1 -elongation%1:04:00:: 00406007 3 0 -elongation%1:06:00:: 03281935 2 0 -elongation%1:07:00:: 05133839 1 0 -elope%2:38:00:: 02074186 1 0 -elopement%1:04:00:: 00058608 1 0 -elopidae%1:05:00:: 02541431 1 0 -elops%1:05:00:: 02541875 1 0 -elops_saurus%1:05:00:: 02542017 1 0 -eloquence%1:10:00:: 07069210 1 0 -eloquent%5:00:00:articulate:00 00150505 1 4 -eloquently%4:02:00:: 00327848 1 0 -eloquently%4:02:01:: 00268312 2 0 -elsa_schiaparelli%1:18:00:: 11284024 1 0 -elsass%1:15:00:: 08940209 1 0 -elsewhere%4:02:00:: 00085002 1 14 -elsholtzia%1:20:00:: 12846690 1 0 -elspar%1:06:00:: 02747915 1 0 -eluate%1:27:00:: 14848149 1 2 -elucidate%2:31:00:: 00621058 2 0 -elucidate%2:32:00:: 00939857 1 1 -elucidation%1:10:00:: 07171206 2 0 -elucidation%1:10:01:: 07232655 1 0 -elucidative%5:00:00:instructive:00 01323815 1 0 -elude%2:32:00:: 00809654 3 0 -elude%2:38:00:: 02074377 1 2 -elude%2:42:00:: 02723232 2 1 -eluding%1:04:00:: 00059376 1 0 -elul%1:28:00:: 15216760 1 0 -elusion%1:04:00:: 00059376 1 0 -elusive%5:00:00:artful:00 00149262 2 1 -elusive%5:00:00:difficult:00 00746451 4 0 -elusive%5:00:00:impalpable:00 01717901 3 0 -elusive%5:00:00:unidentifiable:00 01273316 1 1 -elusiveness%1:07:00:: 04824118 1 0 -elute%2:35:00:: 01270463 1 1 -elution%1:22:00:: 13473836 1 4 -elver%1:05:00:: 02526425 2 0 -elver%1:13:00:: 07784274 1 0 -elves%1:19:00:: 11474774 1 0 -elvis%1:06:00:: 02675657 1 0 -elvis_aron_presley%1:18:00:: 11246040 1 0 -elvis_presley%1:18:00:: 11246040 1 0 -elvish%5:00:00:playful:00 02122543 1 0 -elwyn_brooks_white%1:18:00:: 11383767 1 0 -ely_culbertson%1:18:00:: 10916993 1 0 -elymus%1:20:00:: 12118912 1 0 -elymus_arenarius%1:20:00:: 12119539 1 0 -elymus_canadensis%1:20:00:: 12119717 1 0 -elymus_caput-medusae%1:20:00:: 12119822 1 0 -elymus_condensatus%1:20:00:: 12119390 1 0 -elymus_hispidus%1:20:00:: 12106134 1 0 -elymus_trachycaulos%1:20:00:: 12106323 1 0 -elysian%3:01:00:: 02871347 1 0 -elysian%5:00:00:glorious:00 01121507 2 0 -elysian_fields%1:09:00:: 05628403 1 0 -elysium%1:09:00:: 05628403 2 0 -elysium%1:09:01:: 05628565 1 0 -elytron%1:05:00:: 02152559 1 0 -em%1:23:01:: 13712689 1 0 -em%1:23:02:: 13712428 2 0 -em_quad%1:23:00:: 13712689 1 0 -emaciate%2:30:00:: 00389238 2 0 -emaciate%2:30:01:: 00389406 1 0 -emaciated%5:00:00:thin:03 00988988 1 2 -emaciation%1:07:00:: 05001867 1 0 -email%1:10:00:: 06279326 1 0 -email%2:32:00:: 01032451 1 0 -emanate%2:29:00:: 00004605 2 0 -emanate%2:30:00:: 00546192 1 1 -emanation%1:04:00:: 01253060 2 1 -emanation%1:11:00:: 07327288 3 0 -emanation%1:27:00:: 15109745 1 1 -emancipate%2:41:00:: 02496498 2 1 -emancipate%2:41:01:: 02497400 1 1 -emancipated%5:00:00:free:00 01063102 1 1 -emancipation%1:04:00:: 01247413 1 0 -emancipationist%1:18:00:: 09756637 1 0 -emancipative%5:00:00:unrestrictive:00 02005364 1 0 -emancipator%1:18:00:: 10051026 1 0 -emanuel_svedberg%1:18:00:: 11326591 1 0 -emanuel_swedenborg%1:18:00:: 11326591 1 0 -emarginate%5:00:00:rough:02 02246826 1 0 -emarginate_leaf%1:20:00:: 13161056 1 0 -emasculate%2:29:00:: 00060833 2 0 -emasculate%2:30:00:: 00541953 1 1 -emasculate%5:00:00:unmanly:00 01476325 1 0 -emasculated%5:00:00:castrated:00 02137070 1 0 -emasculation%1:04:00:: 00692349 2 0 -emasculation%1:07:00:: 04668713 1 0 -embalm%2:40:00:: 02226981 1 0 -embalmer%1:18:00:: 10051215 1 0 -embalmment%1:04:00:: 00820406 1 0 -embank%2:42:00:: 02711375 1 0 -embankment%1:06:00:: 03282060 1 5 -embargo%1:10:00:: 06660520 1 1 -embargo%2:41:00:: 02452758 2 0 -embargo%2:41:01:: 02493876 1 0 -embark%2:30:10:: 00348252 2 1 -embark%2:38:00:: 01979462 1 1 -embark%2:41:00:: 02373336 3 0 -embark_on%2:36:00:: 01650610 1 3 -embarkation%1:04:00:: 00058337 1 0 -embarkment%1:04:00:: 00058337 1 0 -embarrass%2:37:00:: 01792097 1 1 -embarrass%2:41:00:: 02557199 2 0 -embarrassed%5:00:00:ashamed:00 00154270 2 0 -embarrassed%5:00:00:discomposed:00 00531628 1 1 -embarrassing%5:00:00:difficult:00 00746047 1 3 -embarrassing%5:00:00:unpleasant:00 01803335 2 2 -embarrassingly%4:02:00:: 00328235 1 0 -embarrassment%1:07:00:: 05120116 4 0 -embarrassment%1:11:00:: 07305551 3 1 -embarrassment%1:12:00:: 07507098 1 3 -embarrassment%1:26:00:: 13986189 2 1 -embassador%1:18:00:: 09787534 1 0 -embassy%1:06:00:: 03282295 1 1 -embassy%1:14:00:: 08402828 2 0 -embattle%2:36:00:: 01758180 2 0 -embattle%2:40:00:: 02366745 1 0 -embattled%5:00:00:fancy:00 01796109 2 0 -embattled%5:00:00:prepared:00 01843906 1 0 -embayment%1:17:00:: 09215664 1 0 -embed%2:33:00:: 01089423 2 0 -embed%2:35:00:: 01528821 1 2 -embedded%5:00:00:integrated:02 01328419 2 0 -embedded%5:00:01:enclosed:00 01657967 1 1 -embellish%2:30:00:: 00293141 4 0 -embellish%2:32:00:: 00956405 1 1 -embellish%2:36:00:: 01675963 3 0 -embellish%2:42:00:: 02748927 2 0 -embellishment%1:04:00:: 00262743 3 0 -embellishment%1:06:00:: 03282401 2 0 -embellishment%1:10:00:: 07172979 1 0 -ember%1:17:00:: 09273130 1 0 -ember_day%1:28:00:: 15195834 1 0 -emberiza%1:05:00:: 01537710 1 0 -emberiza_aureola%1:05:00:: 01538362 1 0 -emberiza_citrinella%1:05:00:: 01538200 1 0 -emberiza_hortulana%1:05:00:: 01537895 1 0 -emberiza_schoeniclus%1:05:00:: 01538059 1 0 -emberizidae%1:05:00:: 01536916 1 0 -embezzle%2:40:00:: 02292535 1 2 -embezzled%5:00:00:illegal:00 01403151 1 0 -embezzlement%1:04:00:: 00776732 1 0 -embezzler%1:18:00:: 10051337 1 0 -embiodea%1:05:00:: 02183353 1 0 -embioptera%1:05:00:: 02183353 1 0 -embiotocidae%1:05:00:: 02570648 1 0 -embitter%2:37:00:: 01773535 1 1 -embitterment%1:26:00:: 13988871 1 0 -emblazon%2:36:00:: 01684180 2 0 -emblazon%2:36:01:: 01696648 1 0 -emblem%1:06:00:: 03282591 1 3 -emblem%1:10:00:: 06880664 2 2 -emblematic%5:00:00:representative:00 01982186 1 3 -emblematic%5:00:00:typical:00 02469119 2 0 -emblematical%5:00:00:representative:00 01982186 1 0 -embodied%5:00:00:corporeal:00 00630466 1 0 -embodiment%1:04:00:: 00933000 3 0 -embodiment%1:09:01:: 05941210 2 0 -embodiment%1:18:00:: 10418302 1 1 -embody%2:42:00:: 02697725 2 3 -embody%2:42:01:: 02698443 1 3 -embody%2:42:02:: 02740352 3 1 -embolden%2:37:00:: 01817938 1 1 -emboldened%5:00:00:bold:00 00250659 1 1 -embolectomy%1:04:00:: 00673234 1 0 -embolic%3:01:00:: 02992453 1 0 -embolism%1:26:00:: 14101083 2 0 -embolism%1:28:00:: 15172664 1 0 -embolus%1:26:00:: 14373407 1 0 -embonpoint%1:07:00:: 05000913 1 0 -embonpoint%5:00:00:fat:01 00986766 1 0 -emboss%2:35:00:: 01531265 1 1 -embossed%5:00:01:adorned:00 00057149 1 0 -embossment%1:06:00:: 04073669 2 0 -embossment%1:10:00:: 06855432 1 0 -embothrium%1:20:00:: 12216382 1 0 -embothrium_coccineum%1:20:00:: 12216628 1 0 -embouchure%1:06:00:: 03794798 1 0 -embower%2:35:00:: 01390210 1 0 -embrace%1:04:00:: 00417397 1 2 -embrace%1:04:01:: 00180770 3 0 -embrace%1:26:00:: 14427408 2 1 -embrace%2:31:00:: 00601822 3 1 -embrace%2:35:00:: 01424456 2 3 -embrace%2:42:00:: 02629793 1 5 -embracement%1:04:00:: 00417397 1 0 -embracing%1:04:00:: 00417397 1 1 -embrangle%2:30:00:: 00402831 1 0 -embrasure%1:06:00:: 03984908 1 0 -embrittle%2:30:00:: 00505620 1 0 -embrocate%2:29:00:: 00085626 1 0 -embrocation%1:06:00:: 03673594 1 0 -embroider%2:32:00:: 00956405 2 0 -embroider%2:36:00:: 01667607 1 2 -embroiderer%1:18:00:: 10051552 1 0 -embroideress%1:18:00:: 10051683 1 0 -embroidery%1:06:00:: 03282933 2 0 -embroidery%1:10:00:: 07172979 1 0 -embroidery_frame%1:06:00:: 04387261 1 0 -embroidery_hoop%1:06:00:: 04387261 1 0 -embroidery_needle%1:06:00:: 03162556 1 0 -embroidery_stitch%1:06:00:: 04180314 1 0 -embroil%2:42:00:: 02677797 1 1 -embroiled%5:00:00:involved:00 01516014 1 0 -embroilment%1:26:00:: 13936153 1 0 -embrown%2:30:00:: 00285705 2 0 -embrown%2:30:01:: 00311980 1 0 -embryo%1:05:00:: 01458842 2 0 -embryo%1:20:00:: 11686503 1 0 -embryologic%5:00:00:immature:01 01490257 1 0 -embryologist%1:18:00:: 10051761 1 0 -embryology%1:09:00:: 06071426 1 0 -embryoma_of_the_kidney%1:26:00:: 14246097 1 0 -embryonal%5:00:00:immature:01 01490257 1 0 -embryonal_carcinoma%1:26:00:: 14247360 1 0 -embryonal_carcinosarcoma%1:26:00:: 14236595 1 0 -embryonal_rhabdomyosarcoma%1:26:00:: 14245594 1 0 -embryonal_rhabdosarcoma%1:26:00:: 14245594 1 0 -embryonic%5:00:00:early:02 00818581 2 0 -embryonic%5:00:00:immature:01 01490257 1 0 -embryonic_cell%1:08:00:: 05447757 1 0 -embryonic_membrane%1:08:00:: 05310596 1 0 -embryonic_stem-cell_research%1:04:00:: 00639398 1 0 -embryonic_tissue%1:05:00:: 01463419 1 0 -embryotic%5:00:00:early:02 00818581 1 0 -emcee%1:18:00:: 10299250 1 0 -emcee%2:41:00:: 02592397 1 0 -emda%1:04:00:: 00663878 1 0 -emeer%1:18:00:: 10052497 1 0 -emend%2:30:00:: 00207911 1 0 -emendation%1:04:00:: 01250208 1 0 -emended%5:00:00:altered:00 00352877 1 0 -emerald%1:07:00:: 04968056 3 0 -emerald%1:21:00:: 13372665 2 0 -emerald%1:27:00:: 14849655 1 0 -emerald_creeper%1:20:00:: 12571781 1 0 -emerald_isle%1:15:00:: 08859173 1 0 -emerald_shiner%1:05:00:: 01441742 1 0 -emerge%2:30:00:: 00423971 1 36 -emerge%2:30:01:: 00426581 3 5 -emerge%2:30:02:: 00528990 2 9 -emerge%2:38:00:: 01990694 4 3 -emerge%2:42:00:: 02625016 5 0 -emergence%1:04:00:: 00044455 4 0 -emergence%1:04:01:: 00050693 3 0 -emergence%1:11:00:: 07319909 2 1 -emergence%1:11:01:: 07324673 1 1 -emergency%1:06:00:: 03483637 3 0 -emergency%1:11:00:: 07417405 1 10 -emergency%1:26:00:: 14032599 2 1 -emergency_alert_system%1:10:00:: 07224923 1 0 -emergency_brake%1:06:00:: 03483637 1 0 -emergency_exit%1:06:00:: 03345658 1 0 -emergency_landing%1:04:01:: 00052791 1 0 -emergency_medicine%1:09:00:: 06049673 1 0 -emergency_procedure%1:04:00:: 00177783 1 0 -emergency_room%1:06:00:: 03283221 1 0 -emergent%5:00:00:nascent:00 00003553 2 0 -emergent%5:00:00:sudden:00 01143855 1 0 -emergent_evolution%1:22:00:: 13474130 1 0 -emerging%5:00:00:future:00 01733082 1 0 -emerging%5:00:00:nascent:00 00003553 2 0 -emeritus%1:18:00:: 10051861 1 0 -emeritus%5:00:00:old:02 01645490 1 1 -emersion%1:04:01:: 00050693 2 0 -emersion%1:11:00:: 07322138 1 0 -emerson%1:18:00:: 10958552 1 0 -emery%1:27:00:: 14674143 1 0 -emery_cloth%1:27:00:: 14849789 1 0 -emery_paper%1:27:00:: 14849880 1 0 -emery_rock%1:27:00:: 14850051 1 0 -emery_stone%1:27:00:: 14850051 1 0 -emery_wheel%1:06:00:: 03460147 1 0 -emeside%1:06:00:: 03300578 1 0 -emesis%1:04:00:: 00118733 1 0 -emesis_basin%1:06:00:: 03283413 1 0 -emetic%1:06:00:: 03283519 1 0 -emetrol%1:06:00:: 03283717 1 0 -emf%1:19:00:: 11523538 1 0 -emg%1:10:00:: 07004422 1 0 -emigrant%1:18:00:: 10051975 1 0 -emigrate%2:30:00:: 00416135 1 2 -emigration%1:04:00:: 00056087 1 1 -emigre%1:18:00:: 10051975 1 0 -emigree%1:18:00:: 10051975 1 0 -emil_hermann_fischer%1:18:00:: 10971697 1 0 -emil_klaus_julius_fuchs%1:18:00:: 10984589 1 0 -emile%1:18:00:: 10052128 1 0 -emile_coue%1:18:00:: 10912626 1 0 -emile_durkheim%1:18:00:: 10946134 1 0 -emile_gaboriau%1:18:00:: 10986710 1 0 -emile_herzog%1:18:00:: 11165712 1 0 -emile_zola%1:18:00:: 11407591 1 0 -emilia%1:20:00:: 11963158 1 0 -emilia-romagna%1:15:00:: 08806311 1 0 -emilia_coccinea%1:20:00:: 11963305 1 0 -emilia_flammea%1:20:00:: 11963305 1 0 -emilia_javanica%1:20:00:: 11963305 1 0 -emilia_sagitta%1:20:00:: 11963572 1 0 -emiliano_zapata%1:18:00:: 11405176 1 0 -emilie_charlotte_le_breton%1:18:00:: 11117108 1 0 -emily_bronte%1:18:00:: 10865700 1 0 -emily_dickinson%1:18:00:: 10934611 1 0 -emily_jane_bronte%1:18:00:: 10865700 1 0 -emily_post%1:18:00:: 11243720 1 0 -emily_price_post%1:18:00:: 11243720 1 0 -eminence%1:08:00:: 05542686 2 0 -eminence%1:26:00:: 14435445 1 1 -eminence_grise%1:18:00:: 10052244 1 0 -eminent%5:00:00:high:01 01205473 2 0 -eminent%5:00:00:superior:01 02339120 1 0 -eminent_domain%1:07:00:: 05187187 1 1 -eminently%4:02:00:: 00328378 1 1 -emir%1:18:00:: 10052497 1 0 -emirate%1:04:00:: 00592292 2 0 -emirate%1:15:00:: 08557396 1 0 -emissary%1:18:00:: 10052694 1 0 -emissary_vein%1:08:00:: 05365838 1 0 -emission%1:04:00:: 01253060 1 6 -emission%1:11:00:: 07433868 5 0 -emission%1:22:00:: 13474290 3 0 -emission%1:22:01:: 13466586 4 0 -emission%1:27:00:: 14852450 2 0 -emission_spectrum%1:19:00:: 11451944 1 1 -emit%2:29:00:: 00105333 1 2 -emit%2:32:00:: 00983824 3 0 -emit%2:43:00:: 02767308 2 1 -emitter%1:06:00:: 03283827 1 0 -emma_goldman%1:18:00:: 11004861 1 0 -emma_hart_willard%1:18:00:: 11387973 1 0 -emmanthe%1:20:00:: 12835196 1 0 -emmanthe_penduliflora%1:20:00:: 12835331 1 0 -emmenagogue%1:27:00:: 14852646 1 0 -emmental%1:13:00:: 07854982 1 0 -emmentaler%1:13:00:: 07854982 1 0 -emmenthal%1:13:00:: 07854982 1 0 -emmenthaler%1:13:00:: 07854982 1 0 -emmer%1:20:00:: 12143215 1 0 -emmet%1:05:00:: 02219486 1 0 -emmetropia%1:26:00:: 14096957 1 0 -emmetropic%3:00:00:: 00105566 1 0 -emmett_kelly%1:18:00:: 11100139 1 0 -emmy%1:10:00:: 07268603 1 0 -emmy_noether%1:18:00:: 11208917 1 0 -emollient%1:06:00:: 03128519 1 0 -emollient%5:00:00:soft:01 01153844 1 0 -emolument%1:21:00:: 13290285 1 0 -emote%2:37:00:: 01772806 1 0 -emoticon%1:10:00:: 06279939 1 0 -emotion%1:12:00:: 07480068 1 50 -emotional%3:00:00:: 00853776 2 7 -emotional%3:00:02:: 01927279 1 19 -emotional%3:01:00:: 02983577 3 2 -emotional%5:00:00:agitated:00 00085630 4 0 -emotional_arousal%1:26:00:: 14036203 1 1 -emotional_disorder%1:26:00:: 14388910 1 0 -emotional_disturbance%1:26:00:: 14388910 1 2 -emotional_person%1:18:00:: 10052843 1 0 -emotional_state%1:26:00:: 13985818 1 5 -emotionalism%1:07:00:: 04626280 1 2 -emotionality%1:07:00:: 04626280 1 1 -emotionally%4:02:00:: 00185567 2 2 -emotionally%4:02:01:: 00185670 1 2 -emotionless%5:00:00:cold:02 01257990 1 0 -emotionlessness%1:07:00:: 04629194 2 0 -emotionlessness%1:12:00:: 07483782 1 0 -emotive%5:00:00:emotional:00 00854255 1 0 -empale%2:35:00:: 01444326 1 0 -empanel%2:31:00:: 00625963 2 0 -empanel%2:41:00:: 02472703 1 0 -empathetic%5:00:00:sympathetic:00 02375639 1 0 -empathetically%4:02:00:: 00192153 1 0 -empathic%5:00:00:sympathetic:00 02375639 1 0 -empathise%2:31:00:: 00594058 1 0 -empathize%2:31:00:: 00594058 1 0 -empathy%1:12:00:: 07554856 1 0 -empedocles%1:18:00:: 10958703 1 0 -empennage%1:06:00:: 04384016 1 0 -emperor%1:05:01:: 02278839 4 0 -emperor%1:05:02:: 02301935 3 0 -emperor%1:13:00:: 07760070 2 0 -emperor%1:18:00:: 10053004 1 0 -emperor_butterfly%1:05:00:: 02278839 1 0 -emperor_francis_ii%1:18:00:: 10977542 1 0 -emperor_moth%1:05:00:: 02301935 1 0 -emperor_napoleon_iii%1:18:00:: 11200492 1 0 -emperor_of_rome%1:18:00:: 10537240 1 0 -emperor_penguin%1:05:00:: 02056728 1 0 -empetraceae%1:20:00:: 12751402 1 0 -empetrum%1:20:00:: 12751554 1 0 -emphasis%1:07:00:: 05037394 2 7 -emphasis%1:10:00:: 07085375 4 0 -emphasis%1:10:01:: 07102945 3 1 -emphasis%1:26:00:: 14434866 1 18 -emphasise%2:32:00:: 01013367 2 0 -emphasise%2:32:03:: 01014609 1 0 -emphasised%5:00:00:stressed:00 02319765 1 0 -emphasize%2:32:00:: 01013367 1 26 -emphasize%2:32:03:: 01014609 2 1 -emphasized%5:00:00:stressed:00 02319765 1 0 -emphasizing%1:04:00:: 01264243 1 0 -emphatic%5:00:00:assertive:00 00156575 3 0 -emphatic%5:00:00:forceful:00 00842041 2 0 -emphatic%5:00:00:stressed:00 02319765 1 1 -emphatically%4:02:00:: 00036935 1 1 -emphysema%1:26:00:: 14147380 1 3 -emphysematous%3:01:00:: 03009131 1 1 -emphysematous_gangrene%1:26:00:: 14313943 1 0 -emphysematous_phlegmon%1:26:00:: 14313943 1 0 -empire%1:13:00:: 07740597 5 0 -empire%1:14:00:: 08405723 3 0 -empire%1:14:01:: 08052413 2 1 -empire%1:14:02:: 08058937 4 0 -empire%1:15:00:: 08557482 1 3 -empire_day%1:28:00:: 15200164 1 0 -empire_state%1:15:00:: 09117351 1 0 -empire_state_building%1:06:00:: 03283973 1 0 -empire_state_of_the_south%1:15:00:: 09075842 1 0 -empiric%3:00:00:: 00858917 2 0 -empiric%3:01:00:: 03063305 1 0 -empirical%3:00:00:: 00858917 1 4 -empirical%3:01:00:: 03063305 2 0 -empirical_formula%1:10:00:: 06817459 1 0 -empirical_research%1:09:00:: 05798315 1 0 -empirically%4:02:00:: 00084038 1 4 -empiricism%1:04:00:: 00635699 2 0 -empiricism%1:04:01:: 00633108 3 0 -empiricism%1:09:00:: 05970311 1 1 -empiricist%1:18:00:: 10053591 1 0 -empiricist_philosophy%1:09:00:: 05970311 1 0 -empirin%1:06:00:: 02748618 1 0 -emplace%2:35:00:: 01496630 2 0 -emplace%2:35:01:: 01496843 1 0 -emplacement%1:04:00:: 01051331 2 0 -emplacement%1:06:00:: 03284120 1 0 -emplane%2:38:00:: 02018265 1 0 -employ%1:26:00:: 13968092 1 1 -employ%2:34:00:: 01158872 1 42 -employ%2:41:00:: 02409412 2 14 -employable%1:18:00:: 10053708 1 0 -employable%3:00:00:: 00865201 1 0 -employed%3:00:00:: 00863946 1 1 -employed%5:00:00:exploited:00 00942806 2 0 -employee%1:18:00:: 10053808 1 57 -employee-owned_business%1:04:00:: 01098541 1 0 -employee-owned_enterprise%1:04:00:: 01098541 1 0 -employee_ownership%1:21:00:: 13243991 1 0 -employee_savings_plan%1:09:00:: 05912399 1 0 -employee_stock_ownership_plan%1:09:00:: 05912969 1 0 -employee_turnover%1:24:00:: 13826221 1 0 -employer%1:18:00:: 10054657 1 14 -employment%1:04:00:: 00584367 2 9 -employment%1:04:01:: 00947128 4 1 -employment%1:04:02:: 01217859 3 6 -employment%1:26:00:: 13968092 1 9 -employment_agency%1:14:00:: 08354352 1 0 -employment_agent%1:18:00:: 10054875 1 0 -employment_agreement%1:10:00:: 06527320 1 0 -employment_contract%1:10:00:: 06527320 1 0 -employment_interview%1:10:00:: 07196405 1 0 -employment_office%1:14:00:: 08354352 1 0 -emporium%1:06:00:: 03176763 1 0 -empower%2:41:00:: 02473981 1 1 -empower%2:41:01:: 02474239 2 0 -empowered%5:00:00:authorized:00 00179315 1 0 -empowerment%1:04:00:: 01138670 1 0 -empress%1:18:00:: 10053439 1 0 -emptiness%1:07:00:: 05141040 4 0 -emptiness%1:25:00:: 13910116 3 0 -emptiness%1:26:00:: 14455206 1 1 -emptiness%1:26:01:: 14039974 2 0 -emptor%1:18:00:: 09885145 1 0 -empty%1:06:00:: 03284308 1 0 -empty%2:29:00:: 00073343 5 0 -empty%2:30:00:: 00448680 2 3 -empty%2:30:01:: 00449692 1 4 -empty%2:35:00:: 01488313 4 1 -empty%2:38:00:: 02076676 3 2 -empty%3:00:00:: 01086545 1 30 -empty%5:00:00:drained:00 01088749 4 0 -empty%5:00:00:hungry:00 01269319 3 0 -empty%5:00:00:meaningless:00 01498084 2 6 -empty-bellied%5:00:00:hungry:00 01269319 1 0 -empty-handed%5:00:00:empty:00 01087300 2 0 -empty-handed%5:00:00:unsuccessful:00 02334561 1 0 -empty-headed%5:00:00:frivolous:00 02120828 1 0 -empty_nester%1:18:00:: 10054975 1 0 -empty_talk%1:10:00:: 06609503 1 0 -empty_tomb%1:06:00:: 02993194 1 0 -empty_words%1:10:00:: 06609503 1 0 -emptying%1:04:00:: 00395797 1 0 -empurple%2:30:00:: 00285088 1 0 -empurpled%5:00:00:rhetorical:00 02017372 1 0 -empyema%1:26:00:: 14172873 1 0 -empyreal%3:01:00:: 02720042 1 0 -empyreal%5:00:00:glorious:00 01121757 2 0 -empyrean%1:15:00:: 08521267 1 0 -empyrean%3:01:00:: 02720042 1 0 -empyrean%5:00:00:glorious:00 01121757 2 0 -emu%1:05:00:: 01519873 2 0 -emu%1:23:00:: 13602526 1 0 -emu_novaehollandiae%1:05:00:: 01519873 1 0 -emulate%2:33:00:: 01122405 3 0 -emulate%2:42:00:: 02675701 1 2 -emulate%2:42:01:: 02675270 2 0 -emulation%1:04:00:: 01021270 3 0 -emulation%1:09:00:: 05665984 2 0 -emulation%1:12:00:: 07484929 1 0 -emulator%1:18:00:: 09964411 1 0 -emulous%3:01:00:: 02720203 1 0 -emulous%5:00:00:competitive:00 00512941 2 0 -emulously%4:02:00:: 00328539 1 0 -emulsifier%1:27:00:: 14674408 1 0 -emulsify%2:30:00:: 00500638 2 0 -emulsify%2:30:01:: 00500834 1 0 -emulsion%1:06:00:: 03284482 2 0 -emulsion%1:27:00:: 14674584 1 0 -emydidae%1:05:00:: 01667570 1 0 -en%1:23:00:: 13712592 1 0 -en-lil%1:18:00:: 09518020 1 0 -en_bloc%4:02:00:: 00157304 1 0 -en_clair%4:02:00:: 00252348 1 0 -en_deshabille%5:00:00:unclothed:00 00459210 1 0 -en_famille%4:02:00:: 00252405 1 0 -en_garde%5:00:00:defensive:00 01630939 1 0 -en_masse%4:02:00:: 00157304 1 0 -en_passant%1:04:00:: 00166865 1 0 -en_passant%4:02:00:: 00166375 1 0 -en_route%4:02:00:: 00171322 1 0 -enable%2:30:00:: 00512877 1 44 -enabling%3:00:00:: 01194806 1 1 -enabling_act%1:10:00:: 06565201 1 1 -enabling_clause%1:10:00:: 06565201 1 0 -enabling_legislation%1:10:00:: 06535476 1 1 -enact%2:36:00:: 01722447 2 4 -enact%2:41:00:: 02427916 1 13 -enactment%1:04:00:: 00548802 3 0 -enactment%1:04:01:: 01126856 1 2 -enactment%1:10:00:: 06532095 2 0 -enalapril%1:06:00:: 03285106 1 0 -enallage%1:10:00:: 07103106 1 0 -enamel%1:06:00:: 03284743 4 0 -enamel%1:06:01:: 03284886 3 0 -enamel%1:08:00:: 05308655 1 1 -enamel%1:27:00:: 15110454 2 0 -enamel%2:36:00:: 01681723 1 1 -enamelware%1:06:00:: 03284981 1 0 -enamine%1:27:00:: 14883661 1 0 -enamor%2:37:00:: 01806505 1 0 -enamored%5:00:00:loving:00 01465668 1 0 -enamoredness%1:12:00:: 07544213 1 0 -enamour%2:37:00:: 01806505 1 0 -enanthem%1:26:00:: 14321653 1 0 -enanthema%1:26:00:: 14321653 1 0 -enantiomer%1:27:00:: 14883766 1 0 -enantiomorph%1:27:00:: 14883766 1 0 -enantiomorphism%1:24:00:: 13829408 1 0 -enarthrodial_joint%1:08:00:: 05595531 1 0 -enarthrosis%1:08:00:: 05595531 1 0 -enate%1:18:00:: 10236521 1 0 -enate%5:00:00:related:01 01972349 1 0 -enatic%5:00:00:related:01 01972349 1 0 -enation%1:20:00:: 13088096 2 0 -enation%1:24:00:: 13814755 1 0 -enbrel%1:06:00:: 03299006 1 0 -encainide%1:06:00:: 03285348 1 0 -encamp%2:42:00:: 02653996 1 2 -encampment%1:04:00:: 01055165 3 0 -encampment%1:06:00:: 02944826 2 0 -encampment%1:15:00:: 08518171 1 1 -encapsulate%2:30:00:: 00244416 2 0 -encapsulate%2:35:00:: 01587984 1 0 -encapsulation%1:22:00:: 13474495 2 0 -encapsulation%1:26:00:: 13998395 1 0 -encase%2:35:00:: 01486312 1 1 -encased%5:00:00:sheathed:00 02155054 1 0 -encasement%1:04:00:: 00322488 1 0 -encaustic%1:06:00:: 03285578 1 0 -enceinte%5:00:00:pregnant:00 00173391 1 0 -encelia%1:20:00:: 11963755 1 0 -encelia_farinosa%1:20:00:: 11963932 1 0 -enceliopsis%1:20:00:: 11964269 1 0 -enceliopsis_nudicaulis%1:20:00:: 11964446 1 0 -encephalartos%1:20:00:: 11603246 1 0 -encephalartos_caffer%1:20:00:: 11603462 1 0 -encephalitis%1:26:00:: 14342132 1 0 -encephalitis_lethargica%1:26:00:: 14343735 1 0 -encephalocele%1:26:00:: 14466846 1 0 -encephalogram%1:06:00:: 03285730 2 0 -encephalogram%1:10:00:: 07004241 1 0 -encephalography%1:04:00:: 00906290 1 0 -encephalomeningitis%1:26:00:: 14343411 1 0 -encephalomyelitis%1:26:00:: 14342533 1 0 -encephalon%1:08:00:: 05481095 1 0 -encephalopathy%1:26:00:: 14085708 1 0 -enchain%2:35:00:: 01288461 1 0 -enchained%5:00:00:bound:01 00253196 1 1 -enchant%2:32:01:: 00776988 3 0 -enchant%2:37:00:: 01817314 1 2 -enchant%2:37:01:: 01806505 2 0 -enchanted%3:00:00:: 00865471 1 1 -enchanter%1:18:00:: 10055085 1 0 -enchanter's_nightshade%1:20:00:: 12341542 1 0 -enchanting%5:00:00:attractive:01 00166753 1 0 -enchantingly%4:02:00:: 00278834 1 0 -enchantment%1:09:00:: 05979454 3 0 -enchantment%1:12:00:: 07497976 1 1 -enchantment%1:26:00:: 14407536 2 0 -enchantress%1:18:00:: 10055297 2 0 -enchantress%1:18:01:: 10055410 1 0 -enchilada%1:13:00:: 07867021 1 0 -enchiridion%1:10:00:: 06421301 1 0 -enchondroma%1:26:00:: 14238041 1 0 -encipher%2:32:00:: 00994076 1 1 -encircle%2:35:00:: 01302854 2 0 -encircle%2:35:12:: 01522716 1 0 -encircled%5:00:02:enclosed:00 01658666 1 0 -encirclement%1:04:00:: 00954086 1 0 -encircling%5:00:00:peripheral:00 00332091 1 0 -enclave%1:15:00:: 08553132 1 1 -enclose%2:30:00:: 00187526 4 0 -enclose%2:35:00:: 01587062 3 1 -enclose%2:35:01:: 01580467 1 3 -enclose%2:42:00:: 02711114 2 2 -enclosed%3:00:00:: 01656628 1 0 -enclosed_space%1:25:00:: 13911517 1 0 -enclosing%1:04:00:: 00321956 1 0 -enclosure%1:04:00:: 00321956 2 1 -enclosure%1:06:00:: 03285912 1 2 -enclosure%1:10:00:: 06473381 4 0 -enclosure%1:17:00:: 09273291 3 0 -enclothe%2:29:00:: 00047945 1 0 -encode%2:32:00:: 00993892 1 0 -encoding%1:04:00:: 00615887 1 0 -encolure%1:05:00:: 01899894 1 0 -encomiastic%5:00:00:complimentary:00 00906099 1 0 -encomium%1:10:00:: 06694149 1 0 -encompass%2:42:00:: 02629793 1 4 -encompassing%5:00:00:close:01 00449332 2 0 -encompassing%5:00:00:comprehensive:00 00526062 1 0 -encompassment%1:26:00:: 14427537 1 0 -encopresis%1:26:00:: 14387477 1 0 -encore%1:04:00:: 00099439 1 0 -encore%2:32:00:: 00754313 1 0 -encounter%1:04:00:: 00959376 1 7 -encounter%1:04:01:: 00147187 3 3 -encounter%1:10:00:: 07181043 4 0 -encounter%1:11:00:: 07414922 2 4 -encounter%2:33:00:: 01079480 5 1 -encounter%2:38:00:: 02023107 1 17 -encounter%2:40:00:: 02248465 2 8 -encounter%2:42:00:: 02730326 3 4 -encounter%2:42:02:: 02739480 4 1 -encounter_group%1:14:00:: 08309611 1 0 -encourage%2:32:00:: 00771341 3 1 -encourage%2:37:00:: 01818235 2 12 -encourage%2:41:00:: 02554922 1 53 -encouraged%5:00:00:pleased:00 01805489 1 0 -encouragement%1:04:00:: 01211019 2 2 -encouragement%1:10:01:: 06691442 1 3 -encouragement%1:12:00:: 07541449 3 0 -encouraging%3:00:00:: 00866471 1 0 -encouraging%5:00:00:supportive:00 02356244 2 0 -encouragingly%4:02:00:: 00328679 1 1 -encrimson%2:30:00:: 00535061 1 0 -encroach%2:38:00:: 01993352 1 1 -encroach%2:41:10:: 02569790 2 0 -encroach_upon%2:38:00:: 02019716 1 1 -encroacher%1:18:00:: 10214062 1 0 -encroaching%5:00:00:intrusive:01 01352320 1 0 -encroachment%1:04:00:: 00733483 2 0 -encroachment%1:04:02:: 00157957 3 0 -encroachment%1:11:00:: 07429976 1 3 -encrust%2:30:00:: 00255079 3 0 -encrust%2:35:00:: 01261628 1 1 -encrust%2:35:01:: 01517355 2 0 -encrustation%1:06:00:: 03566860 3 0 -encrustation%1:17:00:: 09260218 2 0 -encrustation%1:22:00:: 13497650 1 0 -encrusted%5:00:00:covered:00 01695749 1 0 -encrypt%2:32:00:: 00994076 1 0 -encryption%1:04:00:: 00615887 1 0 -enculturation%1:04:00:: 01128984 1 0 -encumber%2:35:00:: 01301051 1 0 -encumbered%3:00:00:: 00867916 1 0 -encumbrance%1:06:00:: 03520811 3 0 -encumbrance%1:09:00:: 05832745 1 1 -encumbrance%1:21:00:: 13403025 2 0 -encyclia%1:20:00:: 12060816 1 0 -encyclia_citrina%1:20:00:: 12061104 1 0 -encyclia_tampensis%1:20:00:: 12061380 1 0 -encyclia_venosa%1:20:00:: 12061614 1 0 -encyclical%1:10:00:: 06625062 1 0 -encyclical%5:00:00:distributed:00 00541349 1 0 -encyclical_letter%1:10:00:: 06625062 1 0 -encyclopaedia%1:10:00:: 06427387 1 0 -encyclopaedic%5:00:00:comprehensive:00 00527744 1 0 -encyclopaedism%1:09:00:: 05985999 1 0 -encyclopaedist%1:18:00:: 10055566 1 0 -encyclopedia%1:10:00:: 06427387 1 1 -encyclopedic%5:00:00:comprehensive:00 00527744 1 0 -encyclopedism%1:09:00:: 05985999 1 0 -encyclopedist%1:18:00:: 10055566 1 0 -encysted%3:01:00:: 02876514 1 0 -end%1:04:00:: 00787727 11 1 -end%1:04:02:: 00728065 14 0 -end%1:06:02:: 03286383 13 0 -end%1:09:00:: 05868477 5 13 -end%1:09:02:: 05980875 4 22 -end%1:10:00:: 06398401 12 0 -end%1:11:00:: 07291794 3 23 -end%1:15:00:: 08566028 1 35 -end%1:15:01:: 08565894 9 2 -end%1:15:02:: 08566707 7 5 -end%1:15:03:: 08566884 10 1 -end%1:18:00:: 10056398 8 3 -end%1:26:00:: 14562960 6 6 -end%1:28:00:: 15266911 2 31 -end%2:30:01:: 00352826 2 29 -end%2:36:13:: 01620854 4 0 -end%2:42:00:: 02609764 1 53 -end%2:42:01:: 02735418 3 10 -end-all%1:09:00:: 05981648 1 0 -end-plate%1:08:00:: 05466393 1 0 -end-rhymed%5:00:00:rhymed:00 01966212 1 0 -end-stopped%3:00:00:: 00873387 1 0 -end-to-end%4:02:00:: 00103087 1 0 -end-to-end%5:00:00:lengthwise:00 01445184 1 0 -end_game%1:11:00:: 07292118 2 0 -end_game%1:11:01:: 07292273 1 0 -end_man%1:18:00:: 10056611 2 0 -end_man%1:18:01:: 10056719 1 0 -end_matter%1:10:00:: 06390805 1 0 -end_of_the_world%1:11:00:: 07334206 2 0 -end_of_the_world%1:28:00:: 15171307 1 0 -end_on%4:02:00:: 00328992 1 0 -end_organ%1:08:00:: 05465392 1 0 -end_point%1:15:00:: 08566554 1 2 -end_point%1:26:00:: 13941337 2 0 -end_product%1:06:00:: 03287178 1 0 -end_run%1:04:00:: 00559555 1 0 -end_up%2:30:01:: 00352558 1 3 -end_user%1:18:00:: 10057491 1 0 -endaemonism%1:09:00:: 06160418 1 0 -endameba%1:05:00:: 01392275 1 0 -endamoeba%1:05:00:: 01392122 1 0 -endamoeba_histolytica%1:05:00:: 01392692 1 0 -endamoebidae%1:05:00:: 01391933 1 0 -endanger%2:32:00:: 01036319 2 2 -endanger%2:42:00:: 02697120 1 3 -endangered%5:00:00:vulnerable:00 02524192 1 0 -endangered_species%1:14:00:: 08110866 1 0 -endangerment%1:26:00:: 14541852 1 0 -endarterectomy%1:04:00:: 00673347 1 0 -endarteritis%1:26:00:: 14342638 1 0 -endear%2:37:00:: 01807170 1 3 -endearing%5:00:00:lovable:00 01459755 1 1 -endearingly%4:02:00:: 00265298 1 0 -endearment%1:04:00:: 01227805 1 0 -endeavor%1:04:00:: 00786195 2 3 -endeavor%1:04:01:: 00796886 1 5 -endeavor%2:41:00:: 02531199 1 4 -endeavour%1:04:00:: 00786195 2 0 -endeavour%1:04:01:: 00796886 1 0 -endeavour%2:41:00:: 02531199 1 0 -endecott%1:18:00:: 10958885 1 0 -ended%5:00:00:finished:01 01003277 1 0 -endemic%1:20:00:: 11530715 2 0 -endemic%1:26:00:: 14074394 1 0 -endemic%3:00:00:: 01427757 1 0 -endemic%3:00:02:: 01106815 2 0 -endemic%5:00:00:native:01 01036383 3 0 -endemic_disease%1:26:00:: 14074394 1 0 -endemic_typhus%1:26:00:: 14141238 1 0 -endemical%3:00:00:: 01427757 1 0 -endemism%1:07:00:: 04800152 1 0 -enderby_land%1:15:00:: 08567072 1 0 -endergonic%3:00:00:: 00292024 1 0 -endermatic%3:01:00:: 02876601 1 0 -endermic%3:01:00:: 02876601 1 0 -endgame%1:11:00:: 07292118 2 0 -endgame%1:11:01:: 07292273 1 0 -endicott%1:18:00:: 10958885 1 0 -ending%1:04:00:: 00209943 2 1 -ending%1:10:00:: 06308765 1 3 -ending%1:10:01:: 06398401 5 0 -ending%1:11:00:: 07291312 4 0 -ending%1:28:00:: 15266911 3 0 -endive%1:13:00:: 07731587 2 0 -endive%1:20:00:: 11953339 1 0 -endless%5:00:00:continuous:01 00596211 4 0 -endless%5:00:00:infinite:00 01007947 3 0 -endless%5:00:00:long:02 01439784 1 6 -endless%5:00:02:infinite:00 01008174 2 3 -endlessly%4:02:00:: 00224941 1 2 -endlessly%4:02:01:: 00282858 2 1 -endlessly%4:02:02:: 00283235 4 0 -endlessly%4:02:04:: 00380325 3 0 -endlessness%1:07:00:: 05052387 1 0 -endoblast%1:05:00:: 01464573 1 0 -endocarditis%1:26:00:: 14339094 1 0 -endocardium%1:08:00:: 05428331 1 0 -endocarp%1:20:00:: 11684739 1 0 -endocentric%3:00:00:: 00870614 1 0 -endocervicitis%1:26:00:: 14344881 1 0 -endocranium%1:08:00:: 05319028 1 0 -endocrinal%3:01:00:: 02915055 1 0 -endocrine%1:08:00:: 05407119 1 0 -endocrine%1:08:01:: 05329735 2 0 -endocrine%3:01:00:: 02915055 1 0 -endocrine_gland%1:08:00:: 05329735 1 0 -endocrine_system%1:08:00:: 05329533 1 0 -endocrinologist%1:18:00:: 10056914 1 0 -endocrinology%1:09:00:: 06049850 1 0 -endoderm%1:05:00:: 01464573 1 0 -endodontia%1:09:00:: 06048184 1 0 -endodontic%3:01:00:: 02915507 1 0 -endodontics%1:09:00:: 06048184 1 0 -endodontist%1:18:00:: 10057114 1 0 -endoergic%3:00:00:: 00872195 1 0 -endoergic_reaction%1:22:00:: 13474615 1 0 -endogamic%3:00:01:: 00871051 2 0 -endogamic%3:00:02:: 00871816 1 0 -endogamous%3:00:01:: 00871051 2 0 -endogamous%3:00:02:: 00871816 1 0 -endogamy%1:26:00:: 13965049 1 0 -endogen%1:20:00:: 11668117 1 0 -endogenetic%5:00:00:integrative:00 01331675 1 0 -endogenic%3:00:00:: 00873113 1 0 -endogenic%5:00:00:integrative:00 01331675 2 0 -endogenous%3:00:00:: 00873113 2 0 -endogenous%3:01:00:: 02876745 1 0 -endogenous_depression%1:26:00:: 14390109 1 0 -endogenously%4:02:00:: 00513593 1 0 -endogeny%1:19:00:: 11418011 1 0 -endolymph%1:08:00:: 05322103 1 0 -endometrial%3:01:00:: 03063492 1 0 -endometrial_cancer%1:26:00:: 14247458 1 0 -endometrial_carcinoma%1:26:00:: 14247458 1 0 -endometriosis%1:26:00:: 14204763 1 0 -endometritis%1:26:00:: 14349892 1 0 -endometrium%1:08:00:: 05519820 1 0 -endomorph%1:18:00:: 10055730 1 0 -endomorphic%3:00:00:: 00828175 1 0 -endomorphy%1:07:00:: 04999214 1 0 -endomycetales%1:20:00:: 13024967 1 0 -endoneurium%1:08:00:: 05287607 1 0 -endonuclease%1:27:00:: 14605415 1 0 -endoparasite%1:05:00:: 01385017 1 0 -endoparasitic%3:01:00:: 02915666 1 0 -endoplasm%1:08:00:: 05433953 1 0 -endoprocta%1:05:00:: 02314321 1 0 -endorphin%1:27:00:: 14809057 1 0 -endorse%2:32:00:: 00997794 4 0 -endorse%2:41:00:: 02453889 1 7 -endorse%2:41:01:: 02447793 3 1 -endorse%2:41:02:: 02556817 2 1 -endorsement%1:04:00:: 01215168 5 0 -endorsement%1:10:00:: 06687358 3 0 -endorsement%1:10:01:: 07248060 1 0 -endorsement%1:10:02:: 07180372 2 0 -endorsement%1:10:04:: 06405198 4 0 -endorsement_in_blank%1:10:00:: 06405423 1 0 -endorser%1:18:00:: 10670668 1 0 -endorser%1:18:01:: 10057271 2 0 -endoscope%1:06:00:: 03286572 1 0 -endoscopic%3:01:00:: 03063601 1 0 -endoscopy%1:04:00:: 00642045 1 0 -endoskeleton%1:08:00:: 05586446 1 0 -endosperm%1:20:00:: 11682512 1 0 -endospore%1:20:00:: 11548594 1 0 -endospore-forming_bacteria%1:05:00:: 01370816 1 0 -endosteum%1:08:00:: 05319144 1 0 -endothelial%3:01:00:: 03018375 1 1 -endothelial_myeloma%1:26:00:: 14240587 1 0 -endothelium%1:08:00:: 05240522 1 0 -endothermal%3:00:00:: 00872510 1 0 -endothermic%3:00:00:: 00872510 1 0 -endothermic_reaction%1:22:00:: 13474734 1 2 -endotoxin%1:27:00:: 15035505 1 0 -endotracheal_tube%1:06:00:: 03286878 1 0 -endovenous%3:01:00:: 02890703 1 0 -endow%2:40:00:: 02201268 2 1 -endow%2:41:00:: 02474239 1 3 -endowed%3:00:00:: 00671091 1 1 -endowment%1:04:00:: 01086744 3 0 -endowment%1:09:00:: 05624042 1 1 -endowment%1:21:00:: 13271320 2 0 -endowment_fund%1:21:00:: 13271320 1 0 -endowment_insurance%1:21:00:: 13347489 1 0 -endozoan%1:05:00:: 01385017 1 0 -endozoan%3:01:00:: 03064076 1 0 -endozoic%3:00:00:: 00889490 1 0 -endplate%1:08:00:: 05466393 1 0 -endpoint%1:15:00:: 08566554 1 1 -endue%2:41:00:: 02474239 1 0 -endurable%5:00:00:tolerable:00 02435206 1 0 -endurance%1:07:00:: 05032565 1 4 -endurance%1:26:00:: 13962166 2 0 -endurance_contest%1:04:00:: 00797361 1 0 -endurance_riding%1:04:00:: 00299933 1 0 -endure%2:31:00:: 00668099 1 6 -endure%2:39:00:: 02109190 4 2 -endure%2:42:00:: 02618149 3 4 -endure%2:42:01:: 02705132 5 0 -endure%2:42:04:: 02707251 2 4 -endure%2:42:06:: 02704928 6 0 -endure%2:42:08:: 02647497 7 0 -enduring%5:00:00:patient:00 01736384 2 0 -enduring%5:00:00:permanent:00 01754873 1 6 -enduringly%4:02:00:: 00250363 1 1 -enduringness%1:07:00:: 05053688 1 0 -endways%4:02:00:: 00328992 3 0 -endways%4:02:01:: 00329114 2 0 -endways%4:02:02:: 00329230 1 0 -endwise%4:02:00:: 00328992 3 0 -endwise%4:02:01:: 00329114 2 0 -endwise%4:02:02:: 00329230 1 0 -ene%1:24:00:: 13832118 1 0 -enea_silvio_piccolomini%1:18:00:: 11236852 1 0 -enema%1:04:00:: 00695944 1 0 -enemy%1:14:00:: 08190482 1 66 -enemy%1:14:01:: 07946851 3 5 -enemy%1:18:00:: 10055847 2 11 -enemy%1:18:01:: 10098710 4 1 -energetic%3:00:00:: 00873603 1 4 -energetic%5:00:00:enterprising:00 00885099 2 1 -energetically%4:02:01:: 00090651 1 2 -energid%1:08:00:: 05431585 1 0 -energise%2:29:00:: 00022686 2 0 -energise%2:30:00:: 00559102 1 0 -energiser%1:06:00:: 03287351 2 0 -energiser%1:18:00:: 10056103 1 0 -energising%5:00:00:dynamic:00 00809164 1 0 -energize%2:29:00:: 00022686 1 1 -energize%2:30:00:: 00559102 2 0 -energizer%1:06:00:: 03287351 2 0 -energizer%1:18:00:: 10056103 1 0 -energizing%1:04:00:: 01046984 1 0 -energizing%5:00:00:dynamic:00 00809164 1 0 -energy%1:07:00:: 05035961 2 8 -energy%1:07:01:: 04633197 4 2 -energy%1:07:02:: 04836683 3 6 -energy%1:14:00:: 08132955 7 0 -energy%1:19:00:: 11452218 1 31 -energy%1:19:01:: 11452079 6 0 -energy%1:26:00:: 14050143 5 0 -energy-absorbing%3:00:00:: 00872195 1 0 -energy-releasing%3:00:00:: 00872347 1 0 -energy-releasing%5:00:00:catabolic:00 00108145 2 0 -energy-storing%5:00:00:anabolic:00 00107868 1 0 -energy_department%1:14:00:: 08132955 1 0 -energy_level%1:19:00:: 11452750 1 0 -energy_of_activation%1:19:00:: 11421822 1 0 -energy_secretary%1:04:00:: 00601088 2 0 -energy_secretary%1:18:00:: 10571670 1 0 -energy_state%1:19:00:: 11452750 1 0 -energy_unit%1:23:00:: 13609507 1 0 -enervate%2:30:00:: 00389856 1 1 -enervate%2:37:00:: 01783881 2 0 -enervated%5:00:00:weak:00 02324944 1 0 -enervating%5:00:00:debilitating:00 01358096 1 1 -enervation%1:04:00:: 00673494 3 0 -enervation%1:07:00:: 05041871 1 1 -enervation%1:11:00:: 07331210 2 0 -enesco%1:18:00:: 10959074 1 0 -enets%1:10:00:: 06959932 1 0 -enfant_terrible%1:18:00:: 10057595 1 1 -enfeeble%2:30:00:: 00389638 1 0 -enfeeblement%1:11:00:: 07331210 1 0 -enfeebling%5:00:00:debilitating:00 01358096 1 0 -enfeoff%2:40:00:: 02363371 1 0 -enfeoffment%1:10:00:: 06545960 1 0 -enfilade%1:04:00:: 00124008 1 0 -enfilade%2:42:00:: 02688657 1 0 -enfilade_fire%1:04:00:: 00124008 1 0 -enflurane%1:06:00:: 03287459 1 0 -enfold%2:35:00:: 01580467 1 0 -enfolding%1:04:00:: 00406365 1 0 -enforce%2:41:00:: 02560164 1 17 -enforce%2:41:01:: 02560424 2 7 -enforceable%3:00:00:: 00557221 1 1 -enforced%3:00:00:: 00557478 1 1 -enforcement%1:04:00:: 01127019 1 3 -enforcer%1:18:00:: 10161867 1 0 -enfranchise%2:41:00:: 02477011 2 0 -enfranchise%2:41:01:: 02477135 1 0 -enfranchised%3:00:00:: 00876609 1 0 -enfranchisement%1:04:00:: 01139830 3 0 -enfranchisement%1:07:00:: 05187446 2 0 -enfranchisement%1:26:00:: 13992387 1 0 -engage%2:30:00:: 00220115 6 1 -engage%2:31:00:: 00600370 2 9 -engage%2:32:00:: 00886602 5 1 -engage%2:35:00:: 01510827 10 0 -engage%2:40:00:: 02208537 9 0 -engage%2:40:01:: 02240151 8 0 -engage%2:41:00:: 02401399 4 1 -engage%2:41:01:: 02409412 3 2 -engage%2:41:06:: 02375131 1 31 -engage%2:41:12:: 02376089 7 0 -engaged%5:00:00:connected:00 00567287 7 0 -engaged%5:00:00:employed:00 00864203 6 0 -engaged%5:00:00:geared:00 01100817 5 0 -engaged%5:00:00:involved:00 01516207 2 1 -engaged%5:00:00:occupied:00 01623360 4 0 -engaged%5:00:00:reserved:02 01988468 3 0 -engaged%5:00:02:busy:00 00293611 1 7 -engagement%1:04:00:: 01239064 7 0 -engagement%1:04:01:: 00953559 1 6 -engagement%1:04:02:: 01217859 4 1 -engagement%1:04:05:: 00270919 5 1 -engagement%1:10:00:: 07228211 3 2 -engagement%1:11:00:: 07338114 6 0 -engagement%1:14:00:: 08385009 2 2 -engagement_ring%1:06:00:: 03287627 1 0 -engaging%5:00:00:attractive:01 00167671 1 0 -engagingly%4:02:00:: 00236840 1 1 -engelbert_humperdinck%1:18:00:: 11066621 1 0 -engelmann's_spruce%1:20:00:: 11625391 1 0 -engelmann_spruce%1:20:00:: 11625391 1 0 -engelmannia%1:20:00:: 11964848 1 0 -engels%1:18:00:: 10959223 1 0 -engender%2:29:00:: 00054628 2 0 -engender%2:36:00:: 01649024 1 6 -engild%2:36:00:: 01683101 1 0 -engine%1:06:00:: 03287733 1 9 -engine%1:06:01:: 03684823 3 1 -engine%1:06:02:: 03288003 4 0 -engine%1:19:00:: 11417561 2 2 -engine_block%1:06:00:: 03288225 1 0 -engine_cooling_system%1:06:00:: 03103128 1 0 -engine_driver%1:18:00:: 10057714 1 0 -engine_failure%1:11:00:: 07421669 1 0 -engine_room%1:06:00:: 03288500 1 0 -engineer%1:18:00:: 09615807 1 13 -engineer%1:18:01:: 10057714 2 0 -engineer%2:31:00:: 00710005 2 0 -engineer%2:31:01:: 00711550 1 0 -engineer's_chain%1:23:00:: 13653261 1 0 -engineering%1:04:01:: 00949619 1 6 -engineering%1:06:00:: 03288500 3 0 -engineering%1:09:00:: 06125041 2 2 -engineering_school%1:14:00:: 08285407 1 0 -engineering_science%1:09:00:: 06125041 1 0 -enginery%1:06:00:: 03288643 1 0 -england%1:15:00:: 08871007 1 39 -english%1:09:00:: 06155432 3 3 -english%1:10:00:: 06947032 1 18 -english%1:11:00:: 07442569 4 0 -english%1:18:00:: 09732668 2 3 -english%3:01:00:: 03003344 1 33 -english%3:01:01:: 03003616 2 0 -english-gothic%1:09:00:: 05843236 1 0 -english-gothic_architecture%1:09:00:: 05843236 1 0 -english-speaking%5:00:00:communicative:00 00496845 1 0 -english-weed%1:20:00:: 12703383 1 0 -english_bean%1:20:00:: 12576029 1 0 -english_breakfast_tea%1:13:00:: 07934678 1 0 -english_bulldog%1:05:00:: 02108672 1 0 -english_cavalry_saddle%1:06:00:: 03288886 1 0 -english_channel%1:17:00:: 09273447 1 0 -english_civil_war%1:04:00:: 01304121 1 0 -english_cocker_spaniel%1:05:00:: 02102318 1 0 -english_daisy%1:20:00:: 11939699 1 0 -english_department%1:14:00:: 08116565 1 0 -english_elm%1:20:00:: 12407890 1 0 -english_foxhound%1:05:00:: 02089973 1 0 -english_hawthorn%1:20:01:: 12627750 2 0 -english_hawthorn%1:20:02:: 12628060 1 0 -english_hippocrates%1:18:00:: 11327273 1 0 -english_horn%1:06:00:: 03288742 1 0 -english_iris%1:20:00:: 12415401 1 0 -english_ivy%1:20:00:: 11798978 1 0 -english_lady_crab%1:05:00:: 01979269 1 0 -english_language%1:10:00:: 06947032 1 2 -english_lavender%1:20:00:: 12849952 1 0 -english_muffin%1:13:00:: 07682477 1 1 -english_oak%1:20:00:: 12277578 1 0 -english_people%1:18:00:: 09732668 1 1 -english_person%1:18:00:: 09701148 1 0 -english_plantain%1:20:00:: 12599185 1 0 -english_primrose%1:20:00:: 12091213 1 0 -english_professor%1:18:00:: 10057918 1 2 -english_revolution%1:04:00:: 01304356 1 0 -english_runner_bean%1:13:00:: 07728391 1 0 -english_ryegrass%1:20:00:: 12124818 1 0 -english_saddle%1:06:00:: 03288886 1 0 -english_setter%1:05:00:: 02100735 1 0 -english_sole%1:05:00:: 02664642 2 0 -english_sole%1:13:00:: 07791535 1 0 -english_sonnet%1:10:00:: 06383107 1 0 -english_sparrow%1:05:00:: 01539925 1 0 -english_springer%1:05:00:: 02102040 1 0 -english_springer_spaniel%1:05:00:: 02102040 1 0 -english_system%1:23:00:: 13577731 1 0 -english_teacher%1:18:00:: 10057918 1 0 -english_toy_spaniel%1:05:00:: 02086478 1 0 -english_violet%1:20:00:: 12389317 1 0 -english_walnut%1:13:00:: 07771539 2 0 -english_walnut%1:20:00:: 12319414 1 0 -english_walnut_tree%1:20:00:: 12319414 1 0 -english_yew%1:20:00:: 11661909 1 0 -englishman%1:18:00:: 09701603 1 5 -englishwoman%1:18:00:: 09701833 1 0 -englut%2:34:00:: 01193099 1 0 -engorge%2:34:00:: 01193099 1 0 -engorged%5:00:00:full:00 01084486 1 0 -engorgement%1:04:00:: 00840630 2 0 -engorgement%1:26:00:: 14321135 1 0 -engraft%2:35:00:: 01528821 2 0 -engraft%2:35:01:: 01530678 1 0 -engram%1:09:00:: 05935381 1 0 -engraulidae%1:05:00:: 02533708 1 0 -engraulis%1:05:00:: 02534036 1 0 -engraulis_encrasicholus%1:05:00:: 02534165 1 0 -engrave%2:35:00:: 01321895 1 1 -engrave%2:35:01:: 01322223 4 0 -engrave%2:36:00:: 01749790 3 0 -engrave%2:37:00:: 01768630 2 0 -engraved%5:00:00:carved:00 00317310 1 1 -engraver%1:18:00:: 10058027 2 0 -engraver%1:18:01:: 10058155 1 1 -engraving%1:04:00:: 00938791 3 0 -engraving%1:06:00:: 03289025 2 0 -engraving%1:06:01:: 03289268 1 0 -engross%2:31:00:: 00600370 2 0 -engross%2:31:02:: 00601043 1 1 -engrossed%5:00:00:attentive:00 00163948 1 4 -engrossed%5:00:00:written:00 02285147 2 1 -engrossing%5:00:00:interesting:00 01344171 1 2 -engrossment%1:07:00:: 04865722 3 0 -engrossment%1:09:00:: 05700087 2 0 -engrossment%1:09:01:: 05704266 1 0 -engulf%2:31:00:: 00601043 1 3 -engulf%2:35:00:: 01581217 2 2 -enhance%2:30:00:: 00229605 1 5 -enhance%2:30:01:: 00230033 2 4 -enhanced%5:00:00:increased:00 00880765 1 0 -enhancement%1:04:00:: 00265992 1 0 -enhancer%1:09:00:: 05853924 1 0 -enhancive%5:00:00:aesthetic:00 00070111 2 0 -enhancive%5:00:00:intensifying:00 01340522 1 0 -enhydra%1:05:00:: 02445276 1 0 -enhydra_lutris%1:05:00:: 02445394 1 0 -enid%1:15:00:: 09132163 1 0 -enigma%1:09:00:: 05685538 1 1 -enigma%1:10:00:: 06785223 2 0 -enigma_canon%1:10:00:: 07043026 1 0 -enigmatic%5:00:00:ambiguous:00 00102930 2 0 -enigmatic%5:00:00:incomprehensible:00 00534524 1 2 -enigmatic_canon%1:10:00:: 07043026 1 0 -enigmatical%5:00:00:incomprehensible:00 00534524 1 0 -enigmatical_canon%1:10:00:: 07043026 1 0 -enigmatically%4:02:00:: 00296836 1 0 -eniwetok%1:04:00:: 01278509 2 0 -eniwetok%1:15:00:: 08839475 1 0 -enjambement%1:10:00:: 07085210 1 0 -enjambment%1:10:00:: 07085210 1 0 -enjoin%2:32:00:: 00746718 2 1 -enjoin%2:32:01:: 00796839 1 2 -enjoining%1:10:00:: 06542830 1 0 -enjoinment%1:10:00:: 06542830 1 0 -enjoy%2:34:00:: 01190948 5 6 -enjoy%2:34:01:: 01192510 2 15 -enjoy%2:37:00:: 01820302 1 52 -enjoy%2:37:01:: 01828736 3 10 -enjoy%2:39:00:: 02110793 4 9 -enjoyable%5:00:00:pleasant:00 01801029 1 1 -enjoyableness%1:07:00:: 04779336 1 0 -enjoyably%4:02:00:: 00219110 1 0 -enjoyer%1:18:00:: 10058411 1 0 -enjoyment%1:04:00:: 01072072 2 2 -enjoyment%1:07:00:: 05190106 3 1 -enjoyment%1:12:00:: 07491708 1 6 -enkaid%1:06:00:: 03285348 1 0 -enkephalin%1:27:00:: 14809373 1 0 -enki%1:18:00:: 09517890 1 0 -enkidu%1:18:00:: 09522735 1 0 -enkindle%2:37:00:: 01759326 2 0 -enkindle%2:43:00:: 02761372 1 0 -enkindled%5:00:00:lighted:00 00475625 1 0 -enl%1:26:00:: 14227015 1 0 -enlace%2:35:00:: 01517662 1 0 -enlarge%2:30:00:: 00157844 3 2 -enlarge%2:30:01:: 00240293 2 2 -enlarge%2:30:03:: 00154778 1 7 -enlarge%2:32:04:: 00955601 4 1 -enlarged%3:00:04:: 00555117 1 0 -enlarged%5:00:00:large:00 01383935 2 0 -enlarged%5:00:00:unhealthy:00 01176695 3 0 -enlarged%5:00:02:increased:00 00881177 4 0 -enlarged_heart%1:26:00:: 14334631 1 0 -enlargement%1:04:00:: 00365709 1 2 -enlargement%1:06:00:: 03289462 4 0 -enlargement%1:10:00:: 07172756 3 0 -enlargement%1:26:00:: 14315071 2 0 -enlarger%1:06:00:: 03289660 1 0 -enlighten%2:31:00:: 00621058 3 0 -enlighten%2:32:00:: 00991385 1 0 -enlighten%2:32:01:: 00926932 2 0 -enlightened%1:14:00:: 07948518 1 0 -enlightened%3:00:00:: 00884007 1 2 -enlightened%5:00:00:informed:00 01307375 2 0 -enlightening%3:00:00:: 01325777 1 0 -enlightening%3:00:04:: 01325451 2 0 -enlightenment%1:09:00:: 05986395 1 1 -enlightenment%1:14:00:: 08472590 3 0 -enlightenment%1:26:00:: 13988224 2 0 -enlil%1:18:00:: 09518020 1 0 -enlist%2:33:00:: 01097192 1 7 -enlist%2:33:01:: 01097500 3 1 -enlist%2:40:00:: 02240151 2 6 -enlisted_man%1:18:00:: 10058585 1 1 -enlisted_officer%1:18:00:: 10360747 1 0 -enlisted_person%1:18:00:: 10058777 1 0 -enlisted_woman%1:18:00:: 10058962 1 0 -enlistee%1:18:00:: 10512201 1 0 -enlisting%1:04:00:: 01263711 1 0 -enlistment%1:04:00:: 01206986 2 0 -enlistment%1:28:00:: 15293590 1 0 -enliven%2:30:00:: 00192836 2 1 -enliven%2:37:00:: 01812720 1 1 -enlivened%3:00:00:: 00119875 1 0 -enlivened%5:00:00:animated:00 00118844 2 0 -enlivener%1:17:00:: 09402704 1 0 -enlivening%5:00:00:invigorating:00 01356932 1 0 -enmesh%2:35:00:: 01463340 1 2 -enmeshed%5:00:00:tangled:00 00255453 1 0 -enmity%1:12:00:: 07547805 2 0 -enmity%1:26:00:: 13980288 1 0 -ennead%1:23:00:: 13745270 1 0 -ennoble%2:41:00:: 02398463 2 0 -ennoble%2:41:01:: 02546876 1 0 -ennoblement%1:04:00:: 00065098 2 0 -ennoblement%1:26:00:: 14433505 1 0 -ennobling%5:00:00:inspiring:00 01323207 2 0 -ennobling%5:00:00:noble:01 01588426 1 0 -ennui%1:12:00:: 07539790 1 0 -enol%1:27:00:: 14605590 1 0 -enolic%3:01:00:: 02915271 1 0 -enologist%1:18:00:: 09616573 1 0 -enology%1:09:00:: 05636171 1 0 -enophile%1:18:00:: 10059067 1 0 -enormity%1:04:00:: 00746033 4 0 -enormity%1:07:00:: 04853124 3 0 -enormity%1:07:01:: 04903247 1 1 -enormity%1:07:02:: 05105009 2 0 -enormous%5:00:00:large:00 01385255 1 17 -enormously%4:02:00:: 00196540 1 3 -enormousness%1:07:00:: 05104548 1 0 -enosis%1:14:00:: 08304744 1 0 -enough%1:23:00:: 13580415 1 14 -enough%4:02:00:: 00145713 1 101 -enough%5:00:00:sufficient:00 02336109 1 50 -enounce%2:32:00:: 00978549 1 0 -enovid%1:06:00:: 03289819 1 0 -enplane%2:38:00:: 02018265 1 0 -enquire%2:31:02:: 00729378 3 0 -enquire%2:32:00:: 00784342 1 1 -enquire%2:32:02:: 00785962 2 0 -enquirer%1:18:00:: 10207831 1 0 -enquiringly%4:02:00:: 00376428 1 0 -enquiry%1:04:00:: 00636728 3 0 -enquiry%1:09:00:: 05797597 2 0 -enquiry%1:10:00:: 07193596 1 0 -enrage%2:37:00:: 01795888 1 1 -enraged%5:00:00:angry:00 00114454 1 3 -enragement%1:12:00:: 07517417 1 0 -enrapture%2:37:00:: 01817314 1 0 -enraptured%5:00:00:joyous:00 01367008 1 0 -enrich%2:30:00:: 00171586 1 7 -enrich%2:40:00:: 02318648 2 0 -enrichment%1:04:00:: 00264366 1 1 -enrichment%1:21:00:: 13271498 2 0 -enrico_caruso%1:18:00:: 10885487 1 0 -enrico_fermi%1:18:00:: 10969986 1 0 -enrobe%2:29:00:: 00045064 2 0 -enrobe%2:35:00:: 01335202 1 0 -enrol%2:41:00:: 02471327 1 3 -enroll%2:41:00:: 02471327 1 6 -enrollee%1:18:00:: 10059162 1 1 -enrollment%1:04:00:: 00050037 1 1 -enrollment%1:14:00:: 08479986 2 0 -enrolment%1:04:00:: 00050037 1 0 -ensconce%2:35:00:: 01493619 1 1 -ensemble%1:06:00:: 03289985 5 0 -ensemble%1:14:01:: 08189089 3 0 -ensemble%1:14:02:: 08188235 1 5 -ensemble%1:14:03:: 07955280 4 0 -ensemble%1:14:04:: 08238048 2 0 -ensete%1:20:00:: 12353604 1 0 -ensete_ventricosum%1:20:00:: 12353754 1 0 -enshrine%2:35:00:: 01482958 1 1 -enshrine%2:37:00:: 01776383 2 0 -enshroud%2:35:00:: 01582200 1 0 -ensiform%5:00:00:simple:01 02168248 1 0 -ensiform_leaf%1:20:00:: 13158167 1 0 -ensign%1:06:01:: 03290096 3 0 -ensign%1:10:01:: 06882009 2 0 -ensign%1:18:00:: 09616722 1 0 -ensilage%1:13:00:: 07801342 1 0 -ensile%2:40:00:: 02283197 1 0 -ensis%1:05:00:: 01958914 1 0 -ensky%2:32:00:: 00861200 1 0 -enslave%2:41:00:: 02496696 1 0 -enslavement%1:04:00:: 00089234 2 0 -enslavement%1:26:00:: 13997050 1 0 -ensnare%2:35:00:: 01480770 2 0 -ensnare%2:41:00:: 02578008 1 0 -ensnarl%2:35:00:: 01463340 1 0 -ensorcelled%5:00:00:enchanted:00 00865765 1 0 -ensuant%5:00:00:subsequent:00 00122844 1 0 -ensue%2:42:00:: 02634265 1 7 -ensuing%5:00:00:succeeding:00 00127661 1 3 -ensure%2:31:00:: 00662589 2 2 -ensure%2:32:00:: 00890590 1 6 -ent_man%1:18:00:: 10059323 1 0 -entablature%1:06:00:: 03290195 1 0 -entail%1:04:00:: 00049909 2 0 -entail%1:21:00:: 13288942 1 0 -entail%2:40:00:: 02363234 3 0 -entail%2:42:00:: 02634808 2 3 -entail%2:42:01:: 02635189 1 7 -entailment%1:09:00:: 05780885 1 0 -entandrophragma%1:20:00:: 12697883 1 0 -entandrophragma_cylindricum%1:20:00:: 12698027 1 0 -entangle%2:35:00:: 01462928 2 0 -entangle%2:42:00:: 02678287 1 0 -entangled%5:00:00:involved:00 01516014 1 1 -entangled%5:00:00:unfree:00 01065321 3 0 -entangled%5:00:01:tangled:00 00255582 2 1 -entanglement%1:06:00:: 04568557 1 2 -entasis%1:25:00:: 13864542 1 0 -entebbe%1:15:00:: 09043556 1 0 -entelea%1:20:00:: 12204405 1 0 -entelechy%1:26:00:: 13955152 1 0 -entellus%1:05:00:: 02488415 1 0 -entente%1:10:00:: 06772461 2 0 -entente%1:14:00:: 08171992 1 0 -entente_cordiale%1:10:00:: 06772461 2 0 -entente_cordiale%1:14:00:: 08171992 1 0 -enter%2:30:10:: 00348252 9 0 -enter%2:32:04:: 01000214 5 7 -enter%2:33:00:: 01082606 2 24 -enter%2:35:03:: 01421622 8 0 -enter%2:36:00:: 01720660 6 2 -enter%2:38:00:: 02016523 1 85 -enter%2:41:00:: 02381397 7 0 -enter%2:41:06:: 02471327 3 17 -enter%2:42:00:: 02722207 4 8 -enter_upon%2:40:00:: 02212646 1 0 -enteral%3:01:00:: 03063721 1 0 -enteral%3:01:01:: 02935530 2 0 -enteric%3:01:00:: 03063721 1 0 -enteric%3:01:01:: 02935530 2 0 -enteric-coated_aspirin%1:06:00:: 03290489 1 0 -enteric_bacteria%1:05:00:: 01367772 1 0 -enteric_fever%1:26:00:: 14144416 1 0 -enterics%1:05:00:: 01367772 1 0 -entering%1:04:00:: 00049003 2 0 -entering%1:11:00:: 07370125 1 0 -enteritis%1:26:00:: 14344997 1 0 -enterobacteria%1:05:00:: 01367772 1 0 -enterobacteriaceae%1:05:00:: 01367430 1 0 -enterobiasis%1:26:00:: 14176372 1 0 -enterobius%1:05:00:: 01931398 1 0 -enterobius_vermicularis%1:05:00:: 01931520 1 0 -enteroceptor%1:08:00:: 05299687 1 0 -enterokinase%1:27:00:: 14850190 1 0 -enterolith%1:17:00:: 09273681 1 0 -enterolithiasis%1:26:00:: 14115351 1 0 -enterolobium%1:20:00:: 11761007 1 0 -enterolobium_cyclocarpa%1:20:00:: 11761202 1 0 -enteron%1:08:00:: 05532641 1 0 -enteropathy%1:26:00:: 14074606 1 0 -enteroptosis%1:26:00:: 14093591 1 0 -enterostenosis%1:26:00:: 14106727 1 0 -enterostomy%1:04:00:: 00671022 1 0 -enterotomy%1:04:00:: 00671022 1 0 -enterotoxemia%1:26:00:: 14264517 1 1 -enterotoxin%1:27:00:: 15035697 1 0 -enterovirus%1:05:00:: 01337915 1 0 -enterprise%1:04:00:: 00796886 1 8 -enterprise%1:07:00:: 04836074 3 0 -enterprise%1:14:00:: 08056231 2 5 -enterprise_zone%1:15:00:: 08690665 1 0 -enterpriser%1:18:00:: 10060352 1 0 -enterprising%3:00:00:: 00884778 1 3 -enterprisingly%4:02:00:: 00329336 1 0 -enterprisingness%1:07:00:: 04836074 1 0 -entertain%2:31:00:: 00711715 2 1 -entertain%2:37:00:: 01773130 3 0 -entertain%2:41:00:: 02492198 1 24 -entertained%5:00:00:pleased:00 01805355 1 0 -entertainer%1:18:00:: 09616922 1 1 -entertaining%5:00:00:interesting:00 01344344 1 0 -entertainingly%4:02:00:: 00329478 1 0 -entertainment%1:04:00:: 00429048 1 6 -entertainment_center%1:06:00:: 03290653 1 0 -entertainment_deduction%1:21:00:: 13311217 1 0 -entertainment_industry%1:14:00:: 08067951 1 0 -enthalpy%1:07:00:: 05012272 1 2 -enthral%2:37:00:: 01817314 1 0 -enthrall%2:37:00:: 01817314 1 1 -enthralled%5:00:00:enchanted:00 00865620 1 0 -enthralling%5:00:00:attractive:01 00166753 1 0 -enthrallingly%4:02:00:: 00278834 1 0 -enthrallment%1:12:00:: 07497976 1 0 -enthrone%2:41:00:: 02391193 2 0 -enthrone%2:41:01:: 02386388 1 1 -enthronement%1:11:00:: 07453638 1 0 -enthronisation%1:11:00:: 07453638 1 0 -enthronization%1:11:00:: 07453638 1 0 -enthuse%2:32:00:: 00916679 2 0 -enthuse%2:37:00:: 01830192 1 0 -enthusiasm%1:07:00:: 04634540 2 5 -enthusiasm%1:09:00:: 05670343 3 3 -enthusiasm%1:12:00:: 07555014 1 5 -enthusiast%1:18:00:: 10059582 1 1 -enthusiast%1:18:01:: 10078131 2 0 -enthusiastic%3:00:00:: 00885695 1 9 -enthusiastically%4:02:00:: 00188779 1 2 -enthusiastically%4:02:01:: 00456484 2 0 -entice%2:32:00:: 00782527 1 1 -enticement%1:04:00:: 00159620 3 0 -enticement%1:07:00:: 04689660 2 0 -enticement%1:09:00:: 05694791 1 0 -enticing%5:00:00:seductive:00 02097480 1 0 -entire%1:05:00:: 02377181 1 0 -entire%5:00:00:smooth:02 02244890 3 1 -entire%5:00:00:uncastrated:00 02137394 4 0 -entire%5:00:01:whole:00 00515380 1 42 -entire%5:00:02:whole:00 00515870 2 5 -entire_leaf%1:20:00:: 13160485 1 0 -entirely%4:02:00:: 00008007 1 43 -entirely%4:02:02:: 00008600 2 2 -entireness%1:26:00:: 14461231 1 0 -entirety%1:26:00:: 14461231 1 2 -entitle%2:32:00:: 01029500 2 6 -entitle%2:41:00:: 02447370 1 17 -entitle%2:41:01:: 02398463 3 0 -entitled%5:00:00:eligible:00 00852425 1 11 -entitlement%1:07:00:: 05181754 1 0 -entity%1:03:00:: 00001740 1 11 -entlebucher%1:05:00:: 02108000 1 0 -entoblast%1:05:00:: 01464573 1 0 -entoderm%1:05:00:: 01464573 1 0 -entoloma%1:20:00:: 13012030 1 0 -entoloma_aprile%1:20:00:: 13012469 1 0 -entoloma_lividum%1:20:00:: 13012253 1 0 -entoloma_sinuatum%1:20:00:: 13012253 1 0 -entolomataceae%1:20:00:: 13011856 1 0 -entomb%2:41:00:: 02456493 1 1 -entombment%1:11:00:: 07451687 1 0 -entomion%1:08:00:: 05232503 1 0 -entomologic%3:01:00:: 03063868 1 0 -entomological%3:01:00:: 03063868 1 0 -entomologist%1:18:00:: 10059904 1 0 -entomology%1:09:00:: 06072275 1 0 -entomophilous%3:00:00:: 00196799 1 0 -entomophobia%1:26:00:: 14385160 1 0 -entomophthora%1:20:00:: 12974662 1 0 -entomophthoraceae%1:20:00:: 12974457 1 0 -entomophthorales%1:20:00:: 12974286 1 0 -entomostraca%1:05:00:: 01993949 1 0 -entoparasite%1:05:00:: 01385017 1 0 -entopic_pregnancy%1:26:00:: 14048015 1 0 -entoproct%1:05:00:: 02314492 1 0 -entoprocta%1:05:00:: 02314321 1 0 -entourage%1:14:00:: 08429167 1 0 -entozoan%1:05:00:: 01385017 1 0 -entozoan%3:00:00:: 00889490 2 0 -entozoan%3:01:00:: 03064076 1 0 -entozoic%3:00:00:: 00889490 1 0 -entozoon%1:05:00:: 01385017 1 0 -entr'acte%1:04:00:: 00520880 2 0 -entr'acte%1:28:00:: 15272791 1 0 -entrails%1:08:00:: 05298988 1 0 -entrain%2:38:00:: 01979624 1 0 -entrance%1:04:00:: 00049003 3 3 -entrance%1:06:00:: 03290771 1 10 -entrance%1:11:00:: 07370125 2 5 -entrance%2:29:00:: 00020926 2 0 -entrance%2:37:00:: 01806505 1 0 -entrance_exam%1:10:00:: 07198119 1 0 -entrance_examination%1:10:00:: 07198119 1 0 -entrance_fee%1:21:00:: 13321495 1 0 -entrance_hall%1:06:00:: 02715513 1 1 -entrance_money%1:21:00:: 13321495 1 0 -entranced%5:00:00:enchanted:00 00865620 1 0 -entrancement%1:12:00:: 07491286 1 0 -entranceway%1:06:00:: 03290771 1 1 -entrancing%5:00:00:attractive:01 00166753 1 0 -entrant%1:06:00:: 03291243 1 1 -entrant%1:18:00:: 10060075 4 0 -entrant%1:18:01:: 10355449 2 0 -entrant%1:18:02:: 10060175 3 0 -entrap%2:35:00:: 01480770 2 0 -entrap%2:41:00:: 02578008 1 0 -entrapment%1:04:00:: 01199035 1 0 -entreat%2:32:00:: 00759657 1 0 -entreatingly%4:02:00:: 00278633 1 0 -entreaty%1:10:00:: 07186828 1 0 -entrecote%1:13:00:: 07656866 1 0 -entree%1:04:00:: 00049789 4 0 -entree%1:06:00:: 03290771 3 0 -entree%1:07:00:: 05176188 2 0 -entree%1:13:00:: 07579575 1 0 -entremets%1:13:00:: 07580053 1 0 -entrench%2:35:00:: 01531025 1 1 -entrench%2:35:01:: 01531124 3 0 -entrench%2:41:00:: 02569790 2 0 -entrenched%5:00:00:established:00 01635962 2 0 -entrenched%5:00:00:invulnerable:00 02526061 1 0 -entrenching_tool%1:06:00:: 03291413 1 0 -entrenchment%1:06:01:: 03291551 1 0 -entrepot%1:06:01:: 04329190 2 0 -entrepot%1:15:00:: 08637771 1 0 -entrepreneur%1:18:00:: 10060352 1 6 -entrepreneurial%3:01:00:: 03064382 1 0 -entrepreneurial%5:00:00:enterprising:00 00885288 2 0 -entresol%1:06:00:: 03758089 1 0 -entric%1:05:00:: 01367772 1 0 -entropy%1:07:00:: 05012585 2 0 -entropy%1:07:01:: 05091527 1 0 -entrust%2:40:00:: 02349212 1 3 -entrust%2:40:01:: 02356230 2 0 -entry%1:04:00:: 00049003 6 0 -entry%1:04:01:: 00238022 2 5 -entry%1:06:00:: 03290771 5 1 -entry%1:10:00:: 07167578 4 1 -entry%1:10:01:: 06503724 1 10 -entry%1:21:00:: 13405296 3 2 -entry_word%1:10:00:: 06300632 1 0 -entryway%1:06:00:: 03290771 1 0 -entsi%1:10:00:: 06959932 1 0 -entsy%1:10:00:: 06959932 1 0 -entwine%2:35:00:: 01517662 2 0 -entwine%2:36:00:: 01672014 1 0 -enucleate%2:30:00:: 00176459 2 0 -enucleate%2:30:01:: 00176756 1 0 -enucleation%1:04:00:: 00671190 1 0 -enuki%1:18:00:: 09515712 1 0 -enumerable%5:00:00:calculable:00 00301589 1 0 -enumerate%2:32:00:: 00946105 1 1 -enumerate%2:32:01:: 00948071 2 0 -enumeration%1:04:00:: 00634586 2 0 -enumeration%1:10:00:: 06490887 1 0 -enumerator%1:18:00:: 09904057 1 0 -enunciate%2:32:00:: 00978369 2 1 -enunciate%2:32:01:: 00978549 1 1 -enunciation%1:10:00:: 07132415 1 0 -enured%5:00:00:tough:02 02447779 1 0 -enuresis%1:22:00:: 13474858 1 0 -envelop%2:35:00:: 01580467 1 3 -envelope%1:06:00:: 03291741 2 2 -envelope%1:06:01:: 03291819 1 9 -envelope%1:06:02:: 03291963 6 0 -envelope%1:07:00:: 05204473 5 0 -envelope%1:17:00:: 09273776 4 0 -envelope%1:25:00:: 13869788 3 0 -enveloping%5:00:00:close:01 00449525 1 1 -envelopment%1:04:00:: 00321956 1 0 -envenom%2:30:00:: 00532429 2 0 -envenom%2:37:00:: 01773535 1 0 -enviable%5:00:00:desirable:00 00733541 1 0 -enviably%4:02:00:: 00003925 1 1 -envious%5:00:00:desirous:00 00888765 1 1 -enviously%4:02:00:: 00303177 1 0 -enviousness%1:12:00:: 07549716 1 0 -environ%2:35:00:: 01467370 1 0 -environment%1:15:00:: 08567235 2 1 -environment%1:26:00:: 13934596 1 21 -environmental%3:01:00:: 02943151 2 0 -environmental%3:01:01:: 02943303 1 1 -environmental_condition%1:26:00:: 14516501 1 0 -environmental_protection_agency%1:14:00:: 08122960 1 0 -environmental_science%1:09:00:: 06070929 1 0 -environmentalism%1:04:00:: 00276189 2 0 -environmentalism%1:09:00:: 05970564 1 0 -environmentalist%1:18:00:: 10060621 1 0 -environmentally%4:02:00:: 00329635 1 0 -environs%1:15:00:: 08567235 1 1 -environs%1:15:01:: 08539457 2 0 -envisage%2:36:00:: 01636397 1 2 -envision%2:36:00:: 01635432 1 4 -envision%2:36:01:: 01636221 2 3 -envisioned%5:00:00:unreal:00 01935301 1 0 -envisioning%1:09:00:: 05768415 1 0 -envoi%1:10:00:: 06384371 1 0 -envoy%1:10:00:: 06384371 3 0 -envoy%1:18:00:: 10061043 1 0 -envoy%1:18:01:: 10052694 2 0 -envoy_extraordinary%1:18:00:: 10061043 1 0 -envy%1:04:00:: 00758335 2 0 -envy%1:12:00:: 07549716 1 2 -envy%2:37:00:: 01827064 2 0 -envy%2:37:01:: 01827619 1 9 -enwrap%2:35:00:: 01580467 1 0 -enwrapped%5:00:00:attentive:00 00163948 1 0 -enzootic%5:00:00:endemic:00 01428122 1 0 -enzymatic%3:01:00:: 03005039 1 1 -enzyme%1:27:00:: 14732946 1 7 -enzyme-linked-immunosorbent_serologic_assay%1:04:00:: 00791875 1 0 -enzymologist%1:18:00:: 10061195 1 0 -enzymology%1:09:00:: 06080192 1 0 -eocene%1:28:00:: 15125845 1 0 -eocene_epoch%1:28:00:: 15125845 1 0 -eohippus%1:05:00:: 02375862 1 0 -eolian%1:18:00:: 09710753 1 0 -eolic%1:10:00:: 06977800 1 0 -eolith%1:06:00:: 03292085 1 0 -eolithic%1:28:00:: 15232236 1 0 -eolithic%3:01:00:: 03089804 1 0 -eolithic_age%1:28:00:: 15232236 1 0 -eolotropic%5:00:00:anisotropic:00 01361264 1 0 -eon%1:18:00:: 09536584 3 0 -eon%1:28:00:: 15243590 2 0 -eon%1:28:01:: 15243730 1 0 -eonian%3:01:00:: 02720312 1 0 -eonian%5:00:00:permanent:00 01755024 2 0 -eoraptor%1:05:00:: 01715134 1 0 -eos%1:18:00:: 09571390 1 0 -eosin%1:27:00:: 14987484 1 0 -eosinopenia%1:26:00:: 14191646 1 0 -eosinophil%1:08:00:: 05453943 1 0 -eosinophile%1:08:00:: 05453943 1 0 -eosinophilia%1:26:00:: 14534076 1 0 -eosinophilic%3:01:00:: 03010071 1 1 -epa%1:14:00:: 08122960 1 0 -epacridaceae%1:20:00:: 12252620 1 0 -epacris%1:20:00:: 12253229 1 0 -epacris_family%1:20:00:: 12252620 1 0 -epacris_impressa%1:20:00:: 12253487 1 0 -epacris_obtusifolia%1:20:00:: 12253664 1 0 -epacris_purpurascens%1:20:00:: 12253835 1 0 -epanalepsis%1:10:00:: 07099752 1 0 -epanaphora%1:10:00:: 07100678 1 0 -epanodos%1:10:00:: 07099844 2 0 -epanodos%1:10:01:: 07099965 1 0 -epanorthosis%1:10:00:: 07103258 1 0 -eparch%1:18:00:: 10061323 2 0 -eparch%1:18:01:: 10061431 1 0 -eparchial%3:01:00:: 02871575 1 0 -eparchy%1:15:00:: 08551296 2 0 -eparchy%1:15:01:: 08654260 1 0 -epaulet%1:06:00:: 03292210 1 1 -epaulette%1:06:00:: 03292210 1 0 -epauliere%1:06:00:: 03292362 1 0 -epee%1:06:00:: 03292475 1 0 -ependyma%1:08:00:: 05319279 1 0 -epenthesis%1:10:00:: 07117788 1 0 -epenthetic%3:01:00:: 02720484 1 0 -epergne%1:06:00:: 03292603 1 0 -epha%1:23:00:: 13616787 1 0 -ephah%1:23:00:: 13616787 1 0 -ephedra%1:20:00:: 11598686 1 0 -ephedra_sinica%1:20:00:: 11598886 1 0 -ephedraceae%1:20:00:: 11597924 1 0 -ephedrine%1:27:00:: 14713487 1 0 -ephemera%1:28:00:: 15247410 1 0 -ephemeral%1:05:00:: 02161078 1 0 -ephemeral%5:00:00:impermanent:00 01756292 1 1 -ephemerality%1:07:00:: 05055689 1 0 -ephemeralness%1:07:00:: 05055689 1 0 -ephemerid%1:05:00:: 02262178 1 0 -ephemerida%1:05:00:: 02261883 1 0 -ephemeridae%1:05:00:: 02262324 1 0 -ephemeris%1:10:00:: 06426865 1 0 -ephemeris_time%1:28:00:: 15156746 1 0 -ephemeron%1:05:00:: 02161078 1 0 -ephemeroptera%1:05:00:: 02261883 1 0 -ephemeropteran%1:05:00:: 02262178 1 0 -ephesian%1:18:00:: 10061554 1 0 -ephesian%3:01:00:: 02715677 1 0 -ephesians%1:10:00:: 06444148 1 0 -ephestia%1:05:00:: 02290153 1 0 -ephestia_elutella%1:05:00:: 02290340 1 0 -ephesus%1:14:00:: 08313983 2 0 -ephesus%1:15:00:: 08788326 1 0 -ephippidae%1:05:00:: 02604657 1 0 -ephippiorhynchus%1:05:00:: 02003994 1 0 -ephippiorhynchus_senegalensis%1:05:00:: 02004131 1 0 -epi%1:10:00:: 06475307 1 0 -epic%1:10:00:: 06379721 1 3 -epic%3:01:00:: 03015589 2 1 -epic%5:00:00:large:00 01386010 1 2 -epic_poem%1:10:00:: 06379721 1 1 -epic_poetry%1:10:00:: 07093158 1 0 -epical%3:01:00:: 03015589 1 0 -epicalyx%1:20:00:: 11692108 1 0 -epicanthic_fold%1:08:00:: 05314255 1 0 -epicanthus%1:08:00:: 05314255 1 0 -epicardia%1:08:00:: 05534174 1 0 -epicardium%1:08:00:: 05428645 1 0 -epicarp%1:20:00:: 11684499 1 0 -epicarpal%3:01:00:: 02932231 1 0 -epicene%1:18:00:: 10172080 1 0 -epicene%5:00:00:androgynous:00 01478907 1 0 -epicene%5:00:00:unmanly:00 01476325 2 0 -epicene_person%1:18:00:: 10172080 1 0 -epicenter%1:15:00:: 08578032 1 3 -epicentre%1:15:00:: 08578032 1 0 -epicondyle%1:08:00:: 05472681 1 0 -epicondylitis%1:26:00:: 14345304 1 0 -epicranium%1:08:00:: 05539834 1 0 -epictetus%1:18:00:: 10959374 1 0 -epicure%1:18:00:: 10061656 1 1 -epicurean%1:18:00:: 10061656 1 0 -epicurean%3:01:00:: 03001153 1 0 -epicurean%5:00:00:indulgent:00 01298239 3 0 -epicurean%5:00:02:indulgent:00 01298884 2 0 -epicureanism%1:09:00:: 05961141 1 0 -epicurism%1:07:00:: 05212168 1 0 -epicurus%1:18:00:: 10959479 1 0 -epicycle%1:25:00:: 13909296 1 0 -epicyclic%3:01:00:: 02940115 1 0 -epicyclic_gear%1:06:00:: 03956331 1 0 -epicyclic_gear_train%1:06:00:: 03292736 1 0 -epicyclic_train%1:06:00:: 03292736 1 0 -epicyclical%3:01:00:: 02940115 1 0 -epicycloid%1:25:00:: 13909488 1 0 -epideictic%5:00:00:demonstrative:00 00720777 1 0 -epideictic_oratory%1:10:00:: 07242657 1 0 -epideictical%5:00:00:demonstrative:00 00720777 1 0 -epidemic%1:11:00:: 07435533 1 5 -epidemic%3:00:00:: 01426375 1 5 -epidemic_cholera%1:26:00:: 14129579 1 0 -epidemic_disease%1:26:00:: 14130166 1 0 -epidemic_encephalitis%1:26:00:: 14343735 1 0 -epidemic_hysertia%1:26:00:: 14392143 1 0 -epidemic_meningitis%1:26:00:: 14138364 1 0 -epidemic_myalgia%1:26:00:: 14330340 1 0 -epidemic_parotitis%1:26:00:: 14138178 1 0 -epidemic_pleurodynia%1:26:00:: 14330340 1 0 -epidemic_roseola%1:26:00:: 14123259 1 0 -epidemiologic%3:01:00:: 02976681 1 0 -epidemiological%3:01:00:: 02976681 1 0 -epidemiologist%1:18:00:: 10061882 1 0 -epidemiology%1:09:00:: 06050024 1 0 -epidendron%1:20:00:: 12062105 1 0 -epidendrum%1:20:00:: 12061849 1 0 -epidendrum_tampense%1:20:00:: 12061380 1 0 -epidendrum_venosum%1:20:00:: 12061614 1 0 -epidermal%3:01:00:: 02876088 1 0 -epidermal_cell%1:08:00:: 05241218 1 0 -epidermic%3:01:00:: 02876088 1 0 -epidermis%1:08:00:: 05240211 1 1 -epidiascope%1:06:00:: 03292960 1 0 -epididymis%1:08:00:: 05525628 1 0 -epididymitis%1:26:00:: 14345455 1 0 -epidural%1:26:00:: 14028652 1 0 -epidural%3:01:00:: 02720601 1 0 -epidural_anaesthesia%1:26:00:: 14028652 1 0 -epidural_anesthesia%1:26:00:: 14028652 1 0 -epidural_injection%1:04:00:: 00322778 1 0 -epigaea%1:20:00:: 12234913 1 0 -epigaea_repens%1:20:00:: 12235051 1 0 -epigastric%3:01:00:: 02720715 2 0 -epigastric%3:01:01:: 02720818 1 0 -epigastric_artery%1:08:00:: 05344697 1 0 -epigastric_fossa%1:08:00:: 05508943 1 0 -epigastric_vein%1:08:00:: 05366043 1 0 -epigastrium%1:08:00:: 05396071 1 0 -epigenesis%1:22:00:: 13475072 1 0 -epiglottis%1:08:00:: 05301752 1 0 -epiglottitis%1:26:00:: 14345552 1 0 -epigon%1:18:00:: 10062042 1 0 -epigone%1:18:00:: 10062042 1 0 -epigram%1:10:00:: 07153727 1 1 -epigrammatic%5:00:00:concise:00 00546951 1 0 -epigraph%1:10:00:: 06406547 2 0 -epigraph%1:10:01:: 06613340 1 0 -epigraphy%1:09:00:: 06146053 1 0 -epikeratophakia%1:04:00:: 00681869 1 0 -epilachna%1:05:00:: 02166024 1 0 -epilachna_varivestis%1:05:00:: 02166229 1 0 -epilate%2:29:00:: 00037514 1 0 -epilating_wax%1:06:00:: 03293095 1 0 -epilation%1:04:00:: 00254597 2 0 -epilation%1:22:00:: 13475205 1 0 -epilator%1:06:00:: 03177165 1 0 -epilepsia_major%1:26:00:: 14083368 2 0 -epilepsia_major%1:26:01:: 14087513 1 0 -epilepsia_minor%1:26:00:: 14083559 2 0 -epilepsia_minor%1:26:01:: 14088127 1 0 -epilepsy%1:26:00:: 14086143 1 0 -epileptic%1:18:00:: 10062176 1 0 -epileptic%3:01:00:: 02945660 1 1 -epileptic_seizure%1:26:00:: 14083200 1 0 -epilithic%3:01:00:: 02720965 1 0 -epilobium%1:20:00:: 12342043 1 0 -epilobium_angustifolium%1:20:00:: 12342498 1 0 -epilobium_canum_canum%1:20:00:: 12342852 1 0 -epilobium_hirsutum%1:20:00:: 12343092 1 0 -epilog%1:10:00:: 06398760 2 0 -epilog%1:10:01:: 06398963 1 0 -epilogue%1:10:00:: 06398760 2 0 -epilogue%1:10:01:: 06398963 1 0 -epimedium%1:20:00:: 11698895 1 0 -epimedium_grandiflorum%1:20:00:: 11699071 1 0 -epimetheus%1:18:00:: 09575701 1 0 -epimorphic%5:00:00:metamorphic:00 01529897 1 0 -epinephelus%1:05:00:: 02569151 1 0 -epinephelus_adscensionis%1:05:00:: 02569631 1 0 -epinephelus_fulvus%1:05:00:: 02569334 1 0 -epinephrin%1:08:00:: 05408388 1 0 -epinephrine%1:08:00:: 05408388 1 0 -epipactis%1:20:00:: 12062227 1 0 -epipactis_gigantea%1:20:00:: 12062781 1 0 -epipactis_helleborine%1:20:00:: 12062626 1 0 -epipaleolithic%1:28:00:: 15233239 1 0 -epiphany%1:11:00:: 07323605 1 2 -epiphany%1:28:00:: 15194506 2 0 -epiphany_of_our_lord%1:28:00:: 15194506 1 0 -epiphenomenon%1:19:00:: 11453735 1 0 -epiphora%1:10:00:: 07100113 1 0 -epiphyllum%1:20:00:: 11846765 1 0 -epiphyseal%3:01:00:: 02990501 1 2 -epiphysial%3:01:00:: 02990501 1 0 -epiphysis%1:08:00:: 05592504 1 5 -epiphysis%1:08:01:: 05485098 2 0 -epiphysis_cerebri%1:08:00:: 05485098 1 0 -epiphyte%1:20:00:: 13122985 1 0 -epiphytic%3:01:00:: 03022349 1 0 -epiphytic_plant%1:20:00:: 13122985 1 0 -epiphytotic%5:00:00:epidemic:00 01426749 1 0 -epiplexis%1:10:00:: 07103402 1 0 -epipremnum%1:20:00:: 11788536 1 0 -epipremnum_aureum%1:20:00:: 11788727 1 0 -epirus%1:15:00:: 08787466 1 0 -episcia%1:20:00:: 12831932 1 0 -episcia_dianthiflora%1:20:00:: 12831141 1 0 -episcleral_veins%1:08:00:: 05366640 1 0 -episcleritis%1:26:00:: 14345719 1 0 -episcopacy%1:14:00:: 07946969 1 0 -episcopal%3:01:00:: 02721057 2 0 -episcopal%3:01:01:: 02954981 1 0 -episcopal_church%1:14:01:: 08088792 1 0 -episcopal_church%1:14:02:: 08088472 2 0 -episcopal_church_of_scotland%1:14:00:: 08088792 1 0 -episcopalian%1:18:00:: 10062275 1 0 -episcopalian%3:01:00:: 02954981 1 0 -episcopalianism%1:09:00:: 06188603 1 0 -episcopate%1:04:00:: 00589494 4 0 -episcopate%1:14:00:: 07946969 3 0 -episcopate%1:15:00:: 08550966 2 0 -episcopate%1:28:00:: 15291714 1 0 -episiotomy%1:04:00:: 00680914 1 0 -episode%1:06:00:: 04173172 4 0 -episode%1:10:00:: 06621771 3 0 -episode%1:10:01:: 06396330 2 3 -episode%1:11:00:: 07289956 1 4 -episodic%5:00:00:divided:00 02481608 1 0 -episodic%5:00:00:impermanent:00 01756758 3 0 -episodic%5:00:00:unpredictable:00 01842468 2 0 -episodic_memory%1:09:00:: 05761044 1 0 -episodically%4:02:00:: 00141405 1 0 -episome%1:27:00:: 14817419 1 0 -epispadias%1:26:00:: 14153468 1 0 -episperm%1:20:00:: 11682349 1 0 -epistasis%1:22:00:: 13495507 1 0 -epistaxis%1:26:00:: 14370992 1 0 -episteme%1:09:00:: 05612358 1 0 -epistemic%3:01:00:: 02850132 1 0 -epistemic_logic%1:09:00:: 06166274 1 0 -epistemological%3:01:00:: 02850132 1 0 -epistemologist%1:18:00:: 10062385 1 0 -epistemology%1:09:00:: 06166748 1 1 -epistle%1:10:00:: 06442616 2 0 -epistle%1:10:01:: 06626183 1 0 -epistle_of_james%1:10:00:: 06446711 1 0 -epistle_of_jeremiah%1:10:00:: 06459450 1 0 -epistle_of_jude%1:10:00:: 06447763 1 0 -epistle_of_paul_the_apostle_to_philemon%1:10:00:: 06446217 1 0 -epistle_of_paul_the_apostle_to_the_colossians%1:10:00:: 06444711 1 0 -epistle_of_paul_the_apostle_to_the_ephesians%1:10:00:: 06444148 1 0 -epistle_of_paul_the_apostle_to_the_galatians%1:10:00:: 06443922 1 0 -epistle_of_paul_the_apostle_to_the_philippians%1:10:00:: 06444458 1 0 -epistle_of_paul_the_apostle_to_the_romans%1:10:00:: 06443163 1 0 -epistle_of_paul_the_apostle_to_titus%1:10:00:: 06445989 1 0 -epistle_to_philemon%1:10:00:: 06446217 1 0 -epistle_to_the_colossians%1:10:00:: 06444711 1 0 -epistle_to_the_ephesians%1:10:00:: 06444148 1 0 -epistle_to_the_galatians%1:10:00:: 06443922 1 0 -epistle_to_the_hebrews%1:10:00:: 06446476 1 0 -epistle_to_the_philippians%1:10:00:: 06444458 1 0 -epistle_to_the_romans%1:10:00:: 06443163 1 0 -epistle_to_titus%1:10:00:: 06445989 1 0 -epistolary%5:00:00:informal:02 01046553 1 0 -epistolatory%5:00:00:informal:02 01046553 1 1 -epistrophe%1:10:00:: 07100113 1 0 -epitaph%1:10:00:: 06406625 1 1 -epitaph%1:10:01:: 06406757 2 0 -epitaxy%1:22:00:: 13475320 1 0 -epithalamium%1:10:00:: 06383819 1 0 -epithelial%3:01:00:: 02932334 1 0 -epithelial_cell%1:08:00:: 05241827 1 0 -epithelial_duct%1:08:00:: 05250659 1 0 -epithelial_tissue%1:08:00:: 05239808 1 0 -epitheliod%3:01:00:: 02932462 1 0 -epithelioma%1:26:00:: 14252464 1 0 -epithelium%1:08:00:: 05239808 1 0 -epithet%1:10:00:: 07202311 2 0 -epithet%1:10:01:: 06720964 1 3 -epitome%1:09:00:: 05937524 1 1 -epitome%1:10:00:: 06468818 2 0 -epitomise%2:42:00:: 02699141 1 0 -epitomize%2:42:00:: 02699141 1 5 -epitope%1:27:00:: 15037664 1 0 -epitrochoidal_engine%1:06:00:: 04549721 1 0 -epizoan%1:05:00:: 01385330 1 0 -epizoan%3:01:00:: 03064239 1 0 -epizoic%3:00:00:: 00889672 1 0 -epizoon%1:05:00:: 01385330 1 0 -epizootic%5:00:00:epidemic:00 01427010 1 0 -epoch%1:28:00:: 15248564 1 5 -epoch%1:28:01:: 15248269 3 0 -epoch%1:28:02:: 15296687 2 0 -epoch-making%5:00:00:significant:00 02162179 1 0 -epochal%5:00:00:significant:00 02162179 1 0 -epona%1:18:00:: 09509232 1 0 -eponym%1:10:00:: 06334778 2 0 -eponym%1:10:01:: 06334985 1 0 -eponymic%3:01:00:: 03036595 1 0 -eponymous%3:01:00:: 03036595 1 0 -eponymy%1:22:00:: 13462680 1 0 -epos%1:10:00:: 06379721 2 0 -epos%1:10:01:: 06383523 1 0 -epoxy%1:27:00:: 14902733 1 1 -epoxy%2:35:00:: 01332483 1 0 -epoxy_glue%1:27:00:: 14902733 1 0 -epoxy_resin%1:27:00:: 14902733 1 0 -eprom%1:06:00:: 03294604 1 0 -epsilon%1:10:00:: 06834565 1 0 -epsilon_aurigae%1:17:00:: 09273928 1 0 -epsilon_toxin%1:27:00:: 14714353 1 0 -epsom_salts%1:06:00:: 03293321 2 0 -epsom_salts%1:27:00:: 14945725 1 0 -epstein%1:18:00:: 10959664 1 0 -epstein-barr_virus%1:05:00:: 01339623 1 0 -eptatretus%1:05:00:: 01479213 1 0 -eptesicus%1:05:00:: 02147034 1 0 -eptesicus_fuscus%1:05:00:: 02147173 1 0 -eptesicus_serotinus%1:05:00:: 02147328 1 0 -eq%1:07:00:: 05026508 1 0 -equable%5:00:00:good-natured:00 01134486 2 0 -equable%5:00:00:temperate:01 02402943 1 0 -equably%4:02:00:: 00329768 1 0 -equador_laurel%1:20:00:: 12818346 1 0 -equal%1:18:00:: 09626238 1 1 -equal%2:30:00:: 00417001 3 0 -equal%2:42:00:: 02664769 1 13 -equal%2:42:01:: 02672187 2 1 -equal%3:00:00:: 00889831 1 31 -equal%3:00:03:: 00051045 2 0 -equal-area_map_projection%1:06:00:: 03293471 1 0 -equal-area_projection%1:06:00:: 03293471 1 0 -equal_opportunity%1:07:00:: 05186998 1 0 -equal_protection_of_the_laws%1:07:00:: 05186090 1 0 -equal_sign%1:10:00:: 06811867 1 0 -equal_temperament%1:04:00:: 01000610 1 0 -equal_to%5:00:00:adequate:00 00051373 1 1 -equalisation%1:04:00:: 00044673 1 0 -equalise%2:30:00:: 00417001 2 0 -equalise%2:33:00:: 01115411 1 0 -equaliser%1:06:00:: 03118539 2 0 -equaliser%1:06:01:: 03293741 1 0 -equalitarian%1:18:00:: 10046870 1 0 -equalitarianism%1:09:00:: 05967588 1 0 -equality%1:07:00:: 04747899 1 2 -equality%1:26:00:: 13946760 2 1 -equality_before_the_law%1:07:00:: 05182452 1 0 -equality_state%1:15:00:: 09159003 1 0 -equalization%1:04:00:: 00044673 1 0 -equalize%2:30:00:: 00417001 2 0 -equalize%2:33:00:: 01115411 1 0 -equalizer%1:04:00:: 00483098 3 0 -equalizer%1:06:00:: 03118539 2 0 -equalizer%1:06:01:: 03293741 1 0 -equalizing_dividend%1:21:00:: 13408473 1 0 -equally%4:02:01:: 00022131 1 14 -equally%4:02:02:: 00332069 2 2 -equanil%1:06:00:: 03747746 1 0 -equanimity%1:07:00:: 04903813 1 1 -equanimous%5:00:00:composed:00 00530354 1 0 -equatability%1:07:00:: 04748187 1 0 -equate%2:30:00:: 00417001 3 0 -equate%2:31:00:: 00653620 1 8 -equate%2:42:00:: 02633534 2 1 -equating%1:04:00:: 00185307 1 0 -equation%1:04:00:: 00185307 3 0 -equation%1:10:00:: 06669864 1 8 -equation%1:26:00:: 13946760 2 0 -equator%1:15:00:: 08568719 1 1 -equator%1:25:00:: 13874073 2 0 -equatorial%1:06:00:: 03293863 1 0 -equatorial%3:00:00:: 02443623 3 0 -equatorial%3:01:00:: 02929637 2 0 -equatorial%3:01:02:: 02929769 1 0 -equatorial_current%1:19:00:: 11489070 1 0 -equatorial_guinea%1:15:00:: 08763500 1 0 -equerry%1:18:00:: 10062594 1 0 -equerry%1:18:01:: 10062492 2 0 -equestrian%1:18:00:: 10185793 1 0 -equestrian%3:01:00:: 02721220 2 0 -equestrian%3:01:01:: 02721342 1 0 -equestrian_sport%1:04:00:: 00450700 1 0 -equetus%1:05:00:: 02594807 1 0 -equetus_lanceolatus%1:05:00:: 02595056 1 0 -equetus_pulcher%1:05:00:: 02594942 1 0 -equiangular%5:00:00:angular:00 02048794 1 0 -equiangular_triangle%1:25:00:: 13879947 1 0 -equid%1:05:00:: 02374149 1 0 -equidae%1:05:00:: 02373601 1 0 -equidistant%5:00:00:equal:00 00890985 1 0 -equidistribution%1:09:00:: 05729362 1 0 -equilateral%1:25:00:: 13862552 1 0 -equilateral%5:00:00:equal:00 00891081 1 0 -equilateral_triangle%1:25:00:: 13879947 1 0 -equilibrate%2:30:00:: 00136800 1 2 -equilibrate%2:42:00:: 02673134 2 0 -equilibration%1:04:00:: 01265632 1 0 -equilibrise%2:42:00:: 02673134 1 0 -equilibrium%1:09:00:: 05659365 4 0 -equilibrium%1:22:00:: 13446197 2 2 -equilibrium%1:25:00:: 13897996 3 0 -equilibrium%1:26:00:: 13934900 1 4 -equilibrium_constant%1:23:00:: 13589681 1 0 -equilibrium_law%1:09:00:: 05877412 1 0 -equilibrize%2:42:00:: 02673134 1 0 -equine%1:05:00:: 02374149 1 0 -equine%3:01:00:: 02721547 1 0 -equine%3:01:01:: 02721439 2 0 -equine_distemper%1:26:00:: 14264352 1 0 -equine_encephalitis%1:26:00:: 14342882 1 0 -equine_encephalomyelitis%1:26:00:: 14342882 1 0 -equinoctial%1:15:00:: 08520190 1 0 -equinoctial%3:01:00:: 02721618 2 0 -equinoctial%3:01:01:: 02721762 1 0 -equinoctial_circle%1:15:00:: 08520190 1 0 -equinoctial_line%1:15:00:: 08520190 1 0 -equinoctial_point%1:15:00:: 08520728 1 0 -equinoctial_storm%1:19:00:: 11501864 1 0 -equinoctial_year%1:28:00:: 15202806 1 0 -equinox%1:15:00:: 08520728 2 0 -equinox%1:28:00:: 15223343 1 0 -equip%2:30:00:: 00513177 2 1 -equip%2:40:00:: 02339413 1 11 -equipage%1:06:00:: 02968473 2 0 -equipage%1:06:01:: 03730153 1 0 -equipment%1:06:00:: 03294048 1 48 -equipment_casualty%1:11:00:: 07339653 1 0 -equipment_failure%1:11:00:: 07421316 1 0 -equipoise%1:25:00:: 13897996 1 0 -equipoised%5:00:00:ambidextrous:00 02029954 1 0 -equipotent%5:00:00:potent:00 01824563 1 1 -equipped%3:00:00:: 01094049 1 1 -equipped%3:00:02:: 01096990 2 0 -equipped%5:00:00:armed:01 00142622 4 0 -equipped%5:00:00:prepared:00 01844002 3 0 -equipping%1:04:00:: 01156899 1 1 -equiprobable%5:00:00:probable:00 01413501 1 0 -equipt%3:00:00:: 01094049 1 0 -equisetaceae%1:20:00:: 13219067 1 0 -equisetales%1:20:00:: 13218900 1 0 -equisetatae%1:20:00:: 13218722 1 0 -equisetum%1:20:00:: 13219258 1 0 -equisetum_arvense%1:20:00:: 13219833 1 0 -equisetum_fluviatile%1:20:00:: 13219976 1 0 -equisetum_hyemale%1:20:00:: 13220122 1 0 -equisetum_hyemale_robustum%1:20:00:: 13220122 1 0 -equisetum_palustre%1:20:00:: 13220355 1 0 -equisetum_robustum%1:20:00:: 13220122 1 0 -equisetum_sylvaticum%1:20:00:: 13220525 1 0 -equisetum_variegatum%1:20:00:: 13220663 1 0 -equitable%3:00:00:: 00958151 1 4 -equitably%4:02:00:: 00329878 1 0 -equitation%1:04:00:: 00450335 1 0 -equity%1:07:00:: 04839154 3 0 -equity%1:21:00:: 13333420 2 0 -equity%1:21:01:: 13333696 1 1 -equity_credit_line%1:21:00:: 13374979 1 0 -equivalence%1:07:01:: 04746842 3 0 -equivalence%1:07:02:: 04748273 2 0 -equivalence%1:26:00:: 13946760 1 1 -equivalent%1:07:00:: 05026508 2 0 -equivalent%1:09:00:: 05695554 1 17 -equivalent%5:00:00:equal:00 00890351 1 0 -equivalent-binary-digit_factor%1:23:00:: 13734349 1 0 -equivalent_weight%1:07:00:: 05026508 1 0 -equivalent_word%1:10:00:: 06303682 1 0 -equivocal%3:00:00:: 00895442 1 1 -equivocal%5:00:00:inconclusive:00 00551120 3 0 -equivocal%5:00:00:questionable:00 01917370 2 0 -equivocally%4:02:00:: 00220323 1 0 -equivocalness%1:07:00:: 04825114 1 0 -equivocate%2:32:00:: 00835506 1 0 -equivocation%1:04:00:: 00751779 3 0 -equivocation%1:07:00:: 04825383 2 0 -equivocation%1:10:00:: 06761099 1 0 -equivocator%1:18:00:: 10168012 1 0 -equus%1:05:00:: 02373843 1 0 -equus_asinus%1:05:01:: 02389559 2 0 -equus_asinus%1:05:02:: 02390640 1 0 -equus_burchelli%1:05:00:: 02391234 1 0 -equus_caballus%1:05:00:: 02374451 1 0 -equus_caballus_gomelini%1:05:00:: 02381609 1 0 -equus_caballus_przevalskii%1:05:00:: 02381831 1 0 -equus_caballus_przewalskii%1:05:00:: 02381831 1 0 -equus_grevyi%1:05:00:: 02391508 1 0 -equus_hemionus%1:05:00:: 02390834 1 0 -equus_hemionus_hemionus%1:05:00:: 02390938 1 0 -equus_kiang%1:05:00:: 02390738 1 0 -equus_quagga%1:05:00:: 02391617 1 0 -equus_zebra_zebra%1:05:00:: 02391373 1 0 -er%1:06:00:: 03283221 2 0 -er%1:27:00:: 14636988 1 0 -era%1:10:00:: 07261300 3 0 -era%1:28:00:: 15248564 1 14 -era%1:28:01:: 15248020 2 0 -eradicable%3:00:00:: 00897517 1 0 -eradicate%2:30:00:: 00470701 1 2 -eradicate%2:36:00:: 01662118 2 0 -eradication%1:11:00:: 07331013 1 0 -eradicator%1:18:00:: 10074339 1 0 -eragrostic_abyssinica%1:20:00:: 12120347 1 0 -eragrostis%1:20:00:: 12119947 1 0 -eragrostis_curvula%1:20:00:: 12120578 1 0 -eragrostis_tef%1:20:00:: 12120347 1 0 -eranthis%1:20:00:: 11733424 1 0 -eranthis_hyemalis%1:20:00:: 11733548 1 0 -erasable%5:00:00:eradicable:00 00897759 1 0 -erasable_programmable_read-only_memory%1:06:00:: 03294604 1 0 -erase%2:30:00:: 00479391 1 5 -erase%2:32:00:: 00999815 3 0 -erase%2:35:00:: 01548718 2 0 -eraser%1:06:00:: 03294833 1 0 -erasmian%3:01:00:: 03031615 1 0 -erasmus%1:18:00:: 10959857 1 0 -erastianism%1:09:00:: 06188721 1 0 -erasure%1:04:00:: 00397760 3 0 -erasure%1:10:00:: 06428646 1 0 -erasure%1:10:01:: 06389230 2 0 -erato%1:18:00:: 09566544 1 0 -eratosthenes%1:18:00:: 10960230 1 0 -erb's_palsy%1:26:00:: 14090842 1 0 -erb-duchenne_paralysis%1:26:00:: 14090842 1 0 -erbium%1:27:00:: 14636988 1 0 -ercilla%1:20:00:: 11856271 1 0 -erebus%1:18:00:: 09559573 1 0 -erechtites_hieracifolia%1:20:00:: 11965218 1 0 -erect%2:36:00:: 01661243 1 17 -erect%2:38:00:: 01982866 2 0 -erect%3:00:00:: 01235859 1 10 -erect%5:00:00:hard:01 01151592 2 0 -erect_bugle%1:20:00:: 12841193 1 0 -erectile%5:00:00:erect:00 01236443 1 0 -erectile%5:00:00:expansive:00 00947012 2 0 -erectile_dysfunction%1:26:00:: 14045141 1 0 -erectile_organ%1:08:00:: 05523269 1 0 -erectile_tissue%1:08:00:: 05288912 1 0 -erecting%1:04:00:: 00911752 1 0 -erecting_prism%1:06:00:: 03295012 1 0 -erection%1:04:00:: 00911752 3 0 -erection%1:06:00:: 03295140 2 0 -erection%1:26:00:: 14038185 1 0 -erectly%4:02:00:: 00330203 1 0 -erectness%1:07:01:: 05083054 1 0 -erectness%1:07:02:: 05079638 2 0 -eremite%1:18:00:: 10518945 1 0 -eremitic%3:01:00:: 02686950 1 0 -eremitic%5:00:00:unworldly:00 02578546 2 0 -eremitical%3:01:00:: 02686950 1 0 -eremitical%5:00:00:unworldly:00 02578546 2 0 -eremitism%1:07:00:: 04882438 1 0 -eresh-kigal%1:18:00:: 09518145 1 0 -ereshkigal%1:18:00:: 09518145 1 0 -ereshkigel%1:18:00:: 09518145 1 0 -erethism%1:26:00:: 14093723 1 0 -erethizon%1:05:00:: 02348036 1 0 -erethizon_dorsatum%1:05:00:: 02348173 1 0 -erethizontidae%1:05:00:: 02347865 1 0 -eretmochelys%1:05:00:: 01664862 1 0 -eretmochelys_imbricata%1:05:00:: 01664990 1 0 -erewhon%1:10:00:: 07283065 1 0 -erg%1:23:00:: 13725726 1 0 -ergo%4:02:00:: 00043347 1 0 -ergocalciferol%1:27:00:: 15092227 1 0 -ergodic%5:00:00:random:00 01924585 1 0 -ergodicity%1:07:00:: 04771535 1 0 -ergometer%1:06:00:: 03260733 1 0 -ergonomic%3:01:00:: 02721877 1 0 -ergonomics%1:09:00:: 06126523 1 0 -ergonovine%1:27:00:: 14713748 1 0 -ergosterol%1:27:00:: 15059404 1 0 -ergot%1:20:00:: 12965626 2 0 -ergot%1:26:00:: 14282796 1 0 -ergotamine%1:27:00:: 14714028 1 0 -ergotic%3:01:00:: 02721979 1 0 -ergotism%1:26:00:: 14510955 1 0 -ergotrate_maleate%1:27:00:: 14713748 1 0 -ergotropic%3:01:00:: 02722083 1 1 -ergotropism%1:04:00:: 00861894 1 0 -ergun_he%1:17:00:: 09205890 1 0 -erianthus%1:20:00:: 12120812 1 0 -erianthus_ravennae%1:20:00:: 12121187 1 0 -eric_arthur_blair%1:18:00:: 11217479 1 0 -eric_blair%1:18:00:: 11217479 1 0 -erica%1:20:00:: 12227420 1 0 -erica_arborea%1:20:00:: 12227658 1 0 -erica_carnea%1:20:00:: 12228229 1 0 -erica_cinerea%1:20:00:: 12228387 1 0 -erica_jong%1:18:00:: 11091084 1 0 -erica_lusitanica%1:20:00:: 12228886 1 0 -erica_perspicua%1:20:00:: 12229111 1 0 -erica_tetralix%1:20:00:: 12228546 1 0 -erica_vagans%1:20:00:: 12228689 1 0 -ericaceae%1:20:00:: 12226322 1 0 -ericales%1:20:00:: 12226009 1 0 -erich_mendelsohn%1:18:00:: 11173778 1 0 -erich_von_stroheim%1:18:00:: 11322627 1 0 -eridanus%1:17:00:: 09274032 1 0 -erie%1:15:00:: 09135447 3 0 -erie%1:17:00:: 09331066 2 0 -erie%1:18:00:: 09655018 1 0 -erie_canal%1:15:00:: 09118817 1 0 -erigeron%1:20:00:: 11965378 1 0 -erigeron_acer%1:20:00:: 11965962 1 0 -erigeron_annuus%1:20:00:: 11966083 1 0 -erigeron_aurantiacus%1:20:00:: 11966215 1 0 -erigeron_canadensis%1:20:00:: 11956348 1 0 -erigeron_divergens%1:20:00:: 11966385 1 0 -erigeron_glaucous%1:20:00:: 11966617 1 0 -erigeron_philadelphicus%1:20:00:: 11966896 1 0 -erigeron_pulchellus%1:20:00:: 11967142 1 0 -erigeron_speciosus%1:20:00:: 11967315 1 0 -erignathus%1:05:00:: 02080586 1 0 -erignathus_barbatus%1:05:00:: 02080713 1 0 -erigonum_fasciculatum%1:20:00:: 12602612 1 0 -erik_adolf_von_willebrand%1:18:00:: 11388321 1 0 -erik_alfred_leslie_satie%1:18:00:: 11282434 1 0 -erik_axel_karlfeldt%1:18:00:: 11096645 1 0 -erik_satie%1:18:00:: 11282434 1 0 -erik_von_willebrand%1:18:00:: 11388321 1 0 -erik_weisz%1:18:00:: 11061317 1 0 -erin%1:15:00:: 08860001 1 0 -erinaceidae%1:05:00:: 01893535 1 0 -erinaceus%1:05:00:: 01893666 1 0 -erinaceus_europaeus%1:05:00:: 01893825 1 0 -erinaceus_europeaeus%1:05:00:: 01893825 1 0 -eringo%1:20:00:: 12938081 1 0 -erinyes%1:18:00:: 09506337 1 0 -eriobotrya%1:20:00:: 12629523 1 0 -eriobotrya_japonica%1:20:00:: 12629666 1 0 -eriocaulaceae%1:20:00:: 12608941 1 0 -eriocaulon%1:20:00:: 12609128 1 0 -eriocaulon_aquaticum%1:20:00:: 12609379 1 0 -eriodictyon%1:20:00:: 12835578 1 0 -eriodictyon_californicum%1:20:00:: 12835766 1 0 -eriogonum%1:20:00:: 12602262 1 0 -eriogonum_allenii%1:20:00:: 12602434 1 0 -eriophorum%1:20:00:: 12152406 1 0 -eriophorum_angustifolium%1:20:00:: 12152722 1 0 -eriophyllum%1:20:00:: 11967572 1 0 -eriophyllum_lanatum%1:20:00:: 11967878 1 0 -eriophyllum_wallacei%1:20:00:: 11924014 1 0 -eriosoma%1:05:00:: 02253592 1 0 -eriosoma_lanigerum%1:05:00:: 02253913 1 0 -eris%1:18:00:: 09555391 1 0 -eristic%1:09:00:: 05635321 2 0 -eristic%1:18:00:: 09615465 1 0 -eristic%5:00:00:argumentative:00 00604221 1 0 -eristical%5:00:00:argumentative:00 00604221 1 0 -erithacus%1:05:00:: 01562116 1 0 -erithacus_rubecola%1:05:00:: 01562265 1 0 -erithacus_svecicus%1:05:00:: 01562451 1 0 -eritrea%1:15:00:: 08777544 1 0 -eritrean%1:18:00:: 09705784 1 0 -eritrean%3:01:00:: 03064520 1 0 -erivan%1:15:00:: 09018030 1 0 -erlang%1:23:00:: 13714082 1 0 -erle_stanley_gardner%1:18:00:: 10990371 1 0 -erlenmeyer%1:18:00:: 10960439 1 0 -erlenmeyer_flask%1:06:00:: 03295246 1 1 -ermine%1:05:00:: 02442172 2 0 -ermine%1:27:00:: 14764820 1 0 -ern%1:05:00:: 01615458 1 0 -erne%1:05:00:: 01615458 1 0 -ernest_bevin%1:18:00:: 10850964 1 0 -ernest_bloch%1:18:00:: 10853413 1 0 -ernest_hemingway%1:18:00:: 11039860 1 0 -ernest_orlando_lawrence%1:18:00:: 11120368 1 0 -ernest_rutherford%1:18:00:: 11276285 1 0 -ernest_solvay%1:18:00:: 11307937 1 0 -ernest_thomas_sinton_walton%1:18:00:: 11372896 1 0 -ernest_walton%1:18:00:: 11372896 1 0 -ernestine_schumann-heink%1:18:00:: 11287437 1 0 -ernesto_guevara%1:18:00:: 11018153 1 0 -ernst%1:18:00:: 10960561 1 0 -ernst_boris_chain%1:18:00:: 10891029 1 0 -ernst_cassirer%1:18:00:: 10886558 1 0 -ernst_heinrich_haeckel%1:18:00:: 11021667 1 0 -ernst_heinrich_weber%1:18:00:: 11378254 1 0 -ernst_lubitsch%1:18:00:: 11143331 1 0 -ernst_ludwig_kirchner%1:18:00:: 11106170 1 0 -ernst_mach%1:18:00:: 11147533 1 0 -ernst_theodor_amadeus_hoffmann%1:18:00:: 11054670 1 0 -ernst_theodor_wilhelm_hoffmann%1:18:00:: 11054670 1 0 -ernst_werner_von_siemens%1:18:00:: 11299770 1 0 -erode%2:30:00:: 00274724 2 1 -erode%2:30:01:: 00275253 1 1 -eroded%5:00:00:worn:00 02582064 1 1 -eroding%1:22:00:: 13475538 1 0 -erodium%1:20:00:: 12688526 1 0 -erodium_cicutarium%1:20:00:: 12688903 1 0 -erodium_moschatum%1:20:00:: 12689305 1 0 -erodium_texanum%1:20:00:: 12689491 1 0 -erogenous%5:00:00:sensitive:01 02104190 1 0 -erogenous_zone%1:08:00:: 05224966 1 0 -erolia%1:05:00:: 02027209 1 0 -erolia_alpina%1:05:00:: 02027492 1 0 -erolia_minutilla%1:05:00:: 02027357 1 0 -eros%1:12:00:: 07487955 2 0 -eros%1:18:00:: 09559896 1 0 -erose%5:00:00:rough:02 02246903 1 0 -erose_leaf%1:20:00:: 13161151 1 0 -erosion%1:22:00:: 13475538 1 1 -erosion%1:22:01:: 13453428 4 0 -erosion%1:22:02:: 13475944 3 0 -erosion%1:26:00:: 14518924 2 0 -erosive%5:00:01:destructive:00 00587376 2 0 -erosive%5:00:02:destructive:00 00588062 1 0 -erotic%1:18:00:: 10062716 1 0 -erotic%5:00:00:sexy:00 02132080 1 3 -erotic_love%1:12:00:: 07488340 1 0 -erotica%1:04:00:: 00747215 1 0 -erotically%4:02:00:: 00513675 1 0 -eroticism%1:12:00:: 07489059 2 0 -eroticism%1:26:00:: 14037925 1 0 -eroticize%2:30:00:: 00586241 1 0 -erotism%1:12:00:: 07489059 2 0 -erotism%1:26:00:: 14037925 1 0 -err%2:31:00:: 00617748 1 3 -err%2:38:00:: 01925694 2 1 -errancy%1:07:00:: 04805472 2 0 -errancy%1:07:01:: 04805813 1 0 -errand%1:04:00:: 00731947 1 5 -errand_boy%1:18:00:: 10311375 1 0 -errant%5:00:00:fallible:00 00964303 1 0 -errant%5:00:00:uncontrolled:00 00600395 2 0 -erratic%5:00:00:changeable:00 00345189 1 1 -erratic%5:00:00:unreliable:00 00725227 3 0 -erratic%5:00:00:unsettled:01 02127509 2 0 -erratically%4:02:00:: 00107722 1 1 -erratum%1:10:00:: 06769670 1 0 -errhine%5:00:00:causative:00 00323796 1 0 -erring%5:00:00:fallible:00 00964470 1 0 -erroneous%5:00:00:incorrect:00 00632949 1 1 -erroneous_belief%1:09:00:: 05895465 1 0 -erroneously%4:02:00:: 00195542 1 0 -erroneousness%1:07:00:: 04802629 1 0 -error%1:04:02:: 00070965 1 15 -error%1:04:03:: 00072068 4 3 -error%1:07:00:: 04802629 2 6 -error%1:07:01:: 04853765 5 2 -error%1:09:00:: 05895465 3 4 -error%1:10:00:: 06769392 7 0 -error%1:11:00:: 07299569 6 0 -error-prone%5:00:00:fallible:00 00964470 1 0 -error_correction_code%1:10:00:: 06357424 1 0 -errorless%5:00:00:perfect:00 01750746 1 0 -ersatz%1:09:00:: 05696701 1 0 -ersatz%5:00:00:artificial:00 01572974 1 1 -erse%1:10:00:: 06960566 1 0 -erskine_caldwell%1:18:00:: 10879364 1 0 -erskine_preston_caldwell%1:18:00:: 10879364 1 0 -erst%4:02:00:: 00118965 1 0 -erstwhile%4:02:00:: 00118965 1 0 -erstwhile%5:00:00:past:00 01729566 1 0 -ert%1:28:00:: 15130612 1 0 -eruca%1:20:00:: 11886380 1 0 -eruca_sativa%1:20:00:: 11886537 1 0 -eruca_vesicaria_sativa%1:20:00:: 11886537 1 0 -eruct%2:29:00:: 00003431 2 0 -eruct%2:29:04:: 00077071 1 0 -eructation%1:04:00:: 00117578 2 0 -eructation%1:26:00:: 14008567 1 0 -erudite%5:00:00:scholarly:00 02084358 1 3 -eruditely%4:02:00:: 00330337 1 0 -eruditeness%1:09:00:: 05985999 1 0 -erudition%1:09:00:: 05985999 1 0 -erupt%2:30:00:: 00307568 5 1 -erupt%2:30:01:: 00345508 1 6 -erupt%2:30:02:: 00307785 2 2 -erupt%2:30:03:: 00309074 8 0 -erupt%2:30:04:: 00548266 4 1 -erupt%2:30:06:: 00422899 7 0 -erupt%2:37:00:: 01785395 6 0 -erupt%2:43:00:: 02760622 3 1 -eruption%1:11:00:: 07436475 1 1 -eruption%1:11:01:: 07376257 5 0 -eruption%1:11:02:: 07320176 6 0 -eruption%1:11:03:: 07435273 4 0 -eruption%1:26:01:: 14008567 3 0 -eruption%1:26:02:: 14321469 2 0 -eruptive%3:00:00:: 01354925 2 0 -eruptive%3:01:00:: 02722187 1 0 -eruptive%5:00:00:active:04 00040534 3 0 -erving%1:18:00:: 10960772 1 0 -erwin_panofsky%1:18:00:: 11221956 1 0 -erwin_rommel%1:18:00:: 11269515 1 0 -erwin_schrodinger%1:18:00:: 11286476 1 0 -erwinia%1:05:00:: 01370698 1 0 -eryngium%1:20:00:: 12937822 1 0 -eryngium_aquaticum%1:20:00:: 12938445 1 0 -eryngium_maritimum%1:20:00:: 12938193 1 0 -eryngium_yuccifolium%1:20:00:: 12938667 1 0 -eryngo%1:20:00:: 12938081 1 0 -erysimum%1:20:00:: 11886788 1 0 -erysimum_allionii%1:20:00:: 11887476 1 0 -erysimum_arkansanum%1:20:00:: 11887750 1 0 -erysimum_asperum%1:20:00:: 11887750 1 0 -erysimum_cheiranthoides%1:20:00:: 11888061 1 0 -erysimum_cheiri%1:20:00:: 11883328 1 0 -erysipelas%1:26:00:: 14232299 1 0 -erysiphaceae%1:20:00:: 12963307 1 0 -erysiphales%1:20:00:: 12963140 1 0 -erysiphe%1:20:00:: 12963494 1 0 -erythema%1:26:00:: 14226303 1 0 -erythema_multiforme%1:26:00:: 14226567 1 0 -erythema_nodosum%1:26:00:: 14226709 1 0 -erythema_nodosum_leprosum%1:26:00:: 14227015 1 0 -erythema_solare%1:26:00:: 14290365 1 0 -erythematous%3:01:00:: 02722304 1 0 -erythrina%1:20:00:: 12527738 1 0 -erythrina_caffra%1:20:00:: 12528109 1 0 -erythrina_corallodendrum%1:20:00:: 12528382 1 0 -erythrina_crista-galli%1:20:00:: 12528549 1 0 -erythrina_indica%1:20:00:: 12528974 1 0 -erythrina_lysistemon%1:20:00:: 12528768 1 0 -erythrina_variegata%1:20:00:: 12528974 1 0 -erythrina_vespertilio%1:20:00:: 12529220 1 0 -erythrite%1:27:00:: 14674776 1 0 -erythroblast%1:08:00:: 05448257 1 0 -erythroblastosis%1:26:00:: 14191756 1 0 -erythroblastosis_fetalis%1:26:00:: 14164548 1 0 -erythrocebus%1:05:00:: 02486138 1 0 -erythrocebus_patas%1:05:00:: 02486261 1 0 -erythrocin%1:06:00:: 03295357 1 0 -erythrocyte%1:08:00:: 05454070 1 0 -erythrocyte_sedimentation_rate%1:28:00:: 15277462 1 0 -erythrocytolysin%1:27:00:: 14906261 1 0 -erythroderma%1:26:00:: 14227218 1 0 -erythroid%3:01:00:: 02722421 1 1 -erythrolysin%1:27:00:: 14906261 1 0 -erythromycin%1:06:00:: 03295357 1 0 -erythronium%1:20:00:: 12450099 1 0 -erythronium_albidum%1:20:00:: 12450607 1 0 -erythronium_americanum%1:20:00:: 12450840 1 0 -erythronium_californicum%1:20:00:: 12451240 1 0 -erythronium_dens-canis%1:20:00:: 12451070 1 0 -erythronium_grandiflorum%1:20:00:: 12451399 1 0 -erythronium_montanum%1:20:00:: 12451566 1 0 -erythropoiesis%1:22:00:: 13476111 1 0 -erythropoietic%3:01:00:: 02722501 1 0 -erythropoietin%1:27:00:: 14850334 1 0 -erythroxylaceae%1:20:00:: 12689641 1 0 -erythroxylon%1:20:00:: 12689808 1 0 -erythroxylon_coca%1:20:00:: 12690046 1 0 -erythroxylon_truxiuense%1:20:00:: 12690240 1 0 -erythroxylum%1:20:00:: 12689808 1 0 -es%1:27:00:: 14636822 1 0 -esaki%1:18:00:: 10960922 1 0 -esau%1:18:00:: 10961087 1 0 -escadrille%1:14:00:: 08219923 2 0 -escadrille%1:14:02:: 08220367 1 0 -escalade%1:04:00:: 00325631 1 0 -escalade%2:38:00:: 01922576 1 0 -escalader%1:18:00:: 10062785 1 0 -escalate%2:30:00:: 00290302 1 0 -escalation%1:04:00:: 00366846 1 6 -escalator%1:06:00:: 03295773 2 0 -escalator%1:10:00:: 06393800 1 0 -escalator_clause%1:10:00:: 06393800 1 0 -escallop%1:05:00:: 01965889 3 0 -escallop%1:13:00:: 07797641 1 0 -escallop%1:13:02:: 07654886 2 0 -escallop%2:36:00:: 01664847 1 0 -escalope_de_veau_orloff%1:13:00:: 07655067 1 0 -escapade%1:04:00:: 00429322 2 0 -escapade%1:04:01:: 00796315 1 1 -escape%1:04:00:: 00058743 1 6 -escape%1:04:01:: 00740712 3 1 -escape%1:04:02:: 00429440 2 2 -escape%1:04:03:: 00204199 4 1 -escape%1:04:04:: 00173283 5 1 -escape%1:06:00:: 04127633 8 0 -escape%1:11:00:: 07436661 7 0 -escape%1:20:00:: 11553419 6 0 -escape%2:30:04:: 00530017 7 0 -escape%2:32:00:: 00810557 2 8 -escape%2:32:04:: 00810729 3 7 -escape%2:38:00:: 02074677 1 22 -escape%2:38:02:: 02075049 6 0 -escape%2:41:00:: 02599004 5 0 -escape%2:42:00:: 02723232 4 2 -escape_cock%1:06:00:: 04127633 1 0 -escape_expert%1:18:00:: 10063177 1 0 -escape_from%2:38:00:: 02073545 1 6 -escape_hatch%1:06:00:: 03295928 1 0 -escape_mechanism%1:04:00:: 00741158 1 0 -escape_valve%1:06:00:: 04127633 1 0 -escape_velocity%1:28:00:: 15283554 1 0 -escape_wheel%1:06:00:: 03296217 1 0 -escaped%5:00:00:free:00 01062114 1 1 -escapee%1:18:00:: 10062905 1 0 -escapement%1:06:00:: 03296081 1 0 -escapism%1:04:00:: 00429440 1 0 -escapist%1:18:00:: 10062996 1 0 -escapologist%1:18:00:: 10063177 1 0 -escapology%1:09:00:: 06248214 1 0 -escargot%1:13:00:: 07782475 1 0 -escarole%1:13:00:: 07731587 1 0 -escarp%1:06:00:: 03296328 1 0 -escarpment%1:06:00:: 03296328 2 0 -escarpment%1:17:00:: 09274152 1 0 -eschalot%1:20:00:: 12433178 1 0 -eschar%1:08:00:: 05264417 1 0 -eschatological%3:01:00:: 02722630 1 0 -eschatologically%4:02:00:: 00085116 1 0 -eschatologist%1:18:00:: 10063340 1 0 -eschatology%1:09:00:: 06183162 1 0 -eschaton%1:28:00:: 15171307 1 0 -escheat%1:21:00:: 13341593 1 2 -escheat%1:21:01:: 13256599 2 0 -escherichia%1:05:00:: 01368216 1 0 -escherichia_coli%1:05:00:: 01368338 1 0 -eschew%2:32:00:: 00812149 1 2 -eschrichtiidae%1:05:00:: 02065932 1 0 -eschrichtius%1:05:00:: 02066086 1 0 -eschrichtius_gibbosus%1:05:00:: 02066245 1 0 -eschrichtius_robustus%1:05:00:: 02066245 1 0 -eschscholtzia%1:20:00:: 11905236 1 0 -eschscholtzia_californica%1:20:00:: 11905392 1 0 -escolar%1:05:00:: 02622547 1 0 -escort%1:04:00:: 00827782 2 1 -escort%1:18:00:: 09992538 4 0 -escort%1:18:01:: 09863031 1 2 -escort%1:18:02:: 10063461 3 0 -escort%2:38:00:: 02025829 1 7 -escort%2:38:01:: 02026086 2 0 -escritoire%1:06:00:: 04164868 1 2 -escrow%1:21:00:: 13414554 1 0 -escrow_funds%1:21:00:: 13414770 1 0 -escudo%1:23:01:: 13675824 2 0 -escudo%1:23:02:: 13676108 1 0 -escutcheon%1:06:00:: 03296478 3 0 -escutcheon%1:06:01:: 03296597 2 0 -escutcheon%1:06:02:: 03342262 1 0 -ese%1:24:00:: 13832599 1 0 -esfahan%1:15:00:: 08912012 1 0 -esidrix%1:06:00:: 03552169 1 0 -eskalith%1:27:00:: 14941884 1 0 -esker%1:17:00:: 09274305 1 0 -eskimo%1:10:00:: 06918215 2 0 -eskimo%1:18:00:: 10063635 1 0 -eskimo-aleut%1:10:00:: 06918042 1 0 -eskimo-aleut_language%1:10:00:: 06918042 1 0 -eskimo_curlew%1:05:00:: 02033882 1 0 -eskimo_dog%1:05:00:: 02109961 1 0 -esm%1:04:00:: 00995588 1 0 -esme_stuart_lennox_robinson%1:18:00:: 11266117 1 0 -esmolol%1:06:00:: 03296759 1 0 -esocidae%1:05:00:: 02560823 1 0 -esop%1:09:00:: 05912969 1 0 -esophageal%3:01:00:: 02722801 1 0 -esophageal_reflux%1:26:00:: 14335485 1 0 -esophageal_smear%1:08:00:: 05265736 1 0 -esophageal_veins%1:08:00:: 05366812 1 0 -esophagitis%1:26:00:: 14345815 1 0 -esophagogastric_junction%1:08:00:: 05571341 1 0 -esophagoscope%1:06:00:: 03296963 1 0 -esophagus%1:08:00:: 05533948 1 0 -esoteric%3:00:00:: 00898963 1 1 -esoterica%1:10:00:: 06673671 1 0 -esotropia%1:26:00:: 14506233 1 0 -esox%1:05:00:: 02560964 1 0 -esox_americanus%1:05:00:: 02561937 1 0 -esox_lucius%1:05:00:: 02561381 1 0 -esox_masquinongy%1:05:00:: 02561514 1 0 -esox_niger%1:05:00:: 02561803 1 0 -esp%1:10:00:: 07256695 1 0 -espadrille%1:06:00:: 03297103 1 0 -espagnole%1:13:00:: 07836269 1 0 -espalier%1:06:00:: 03297226 1 0 -espana%1:15:00:: 09023321 1 0 -esparcet%1:20:00:: 12552309 1 0 -especial%5:00:00:uncommon:00 00488187 1 0 -especially%4:02:00:: 00084223 1 66 -especially%4:02:01:: 00502710 2 0 -esperantido%1:10:00:: 06895684 1 0 -esperanto%1:10:00:: 06895791 1 0 -espial%1:04:00:: 00151087 1 0 -espionage%1:04:00:: 00654563 1 1 -espionage_agent%1:18:00:: 10063919 1 1 -espionage_network%1:14:00:: 08434622 1 0 -esplanade%1:06:00:: 03297354 1 0 -espoo%1:15:00:: 08780282 1 0 -espousal%1:04:00:: 00180413 3 0 -espousal%1:04:01:: 01037469 1 0 -espousal%1:04:02:: 01036778 2 0 -espouse%2:31:00:: 00601822 3 0 -espouse%2:40:00:: 02346895 1 3 -espouse%2:41:00:: 02488834 2 0 -espresso%1:13:00:: 07920052 1 0 -espresso_maker%1:06:00:: 03297495 1 0 -espresso_shop%1:06:00:: 03297644 1 0 -esprit%1:07:00:: 04633716 1 0 -esprit_de_corps%1:07:00:: 04625129 1 3 -esprit_de_l'escalier%1:10:00:: 06776877 1 0 -espy%2:39:00:: 02154312 1 0 -esq%1:18:00:: 10064046 1 0 -esquimau%1:10:00:: 06918215 2 0 -esquimau%1:18:00:: 10063635 1 0 -esquire%1:18:00:: 10064229 1 0 -esquire%1:18:01:: 10064046 2 0 -esr%1:04:00:: 00641222 2 0 -esr%1:28:00:: 15277462 1 0 -essay%1:04:00:: 00787218 2 2 -essay%1:10:00:: 06409562 1 13 -essay%2:41:00:: 02530167 1 1 -essay%2:41:01:: 02531625 2 0 -essayer%1:18:00:: 10728998 1 0 -essayist%1:18:00:: 10064405 1 0 -esselen%1:10:00:: 06921092 2 0 -esselen%1:18:00:: 09655213 1 0 -essen%1:15:00:: 08772794 1 0 -essence%1:06:00:: 03916031 4 0 -essence%1:09:00:: 05921123 1 2 -essence%1:10:00:: 06604066 3 0 -essence%1:27:00:: 15110096 2 0 -essene%1:18:00:: 09655354 1 0 -essene%3:01:00:: 02722901 1 0 -essential%1:17:00:: 09367203 1 1 -essential%3:00:00:: 00900616 2 15 -essential%3:00:04:: 00055539 5 0 -essential%3:01:00:: 02722988 4 0 -essential%5:00:00:important:00 01276150 3 8 -essential%5:00:00:necessary:00 01580306 1 17 -essential_amino_acid%1:27:00:: 14605787 1 0 -essential_condition%1:09:00:: 05893261 1 0 -essential_hypertension%1:26:00:: 14104645 1 0 -essential_oil%1:27:00:: 14892655 1 0 -essential_thrombocytopenia%1:26:00:: 14197780 1 0 -essential_tremor%1:26:00:: 14005302 1 0 -essentiality%1:07:00:: 05171045 1 0 -essentially%4:02:01:: 00003483 1 28 -essentialness%1:07:00:: 05171045 1 0 -essex%1:15:00:: 08882061 1 0 -essonite%1:27:00:: 14903466 1 0 -est%1:28:00:: 15131994 1 0 -establish%2:31:00:: 00664788 3 23 -establish%2:31:02:: 00665476 4 15 -establish%2:31:03:: 00636888 8 1 -establish%2:35:00:: 01570108 6 2 -establish%2:36:00:: 01647229 2 28 -establish%2:36:01:: 01647672 5 6 -establish%2:36:10:: 01655505 7 1 -establish%2:41:00:: 02427103 1 50 -established%3:00:00:: 01635146 1 7 -established%5:00:00:foreign:01 01035422 5 0 -established%5:00:00:orthodox:00 01690606 3 1 -established%5:00:00:proved:00 01893939 4 0 -established%5:00:00:settled:02 02129535 2 1 -established_church%1:14:00:: 08100778 1 0 -establishment%1:04:00:: 00237078 1 10 -establishment%1:06:00:: 03297735 4 3 -establishment%1:09:00:: 05826291 7 0 -establishment%1:14:00:: 08053576 2 4 -establishment%1:14:01:: 08075847 5 1 -establishment%1:14:02:: 08164585 3 3 -establishment%1:22:00:: 13476267 6 0 -establishmentarianism%1:09:00:: 05961278 1 0 -establishmentism%1:09:00:: 05961278 1 0 -estaminet%1:06:00:: 03298089 1 0 -estate%1:14:00:: 08167365 3 0 -estate%1:21:01:: 13246662 2 2 -estate%1:21:02:: 13250930 1 9 -estate_agent%1:18:00:: 10509810 1 0 -estate_car%1:06:00:: 02814533 1 0 -estate_for_life%1:21:00:: 13251715 1 0 -estate_of_the_realm%1:14:00:: 08167365 1 0 -estate_tax%1:21:00:: 13313322 1 0 -estates_general%1:14:00:: 08164464 1 0 -estazolam%1:06:00:: 03298211 1 0 -esteem%1:09:00:: 06206800 3 0 -esteem%1:12:00:: 07500741 2 0 -esteem%1:26:00:: 14437552 1 2 -esteem%2:31:00:: 00689950 2 0 -esteem%2:31:01:: 00694068 1 1 -esteemed%5:00:00:reputable:00 01982957 1 0 -ester%1:27:00:: 14850483 1 1 -esterify%2:30:00:: 00506225 1 0 -esther%1:10:00:: 06436717 2 0 -esther%1:18:00:: 10961372 1 0 -esther_hobart_mcquigg_slack_morris%1:18:00:: 11192195 1 0 -esther_morris%1:18:00:: 11192195 1 0 -esthesia%1:09:00:: 05678148 1 0 -esthesis%1:09:00:: 05712076 1 0 -esthete%1:18:00:: 10064537 1 0 -esthetic%1:09:00:: 05968971 1 1 -esthetic%3:00:00:: 00069531 1 2 -esthetic%3:01:00:: 02991287 2 0 -esthetic%5:00:00:tasteful:02 02393086 3 0 -esthetical%3:00:00:: 00069531 1 0 -esthetically%4:02:00:: 00261231 1 0 -esthetician%1:18:00:: 10064669 2 0 -esthetician%1:18:01:: 10064831 1 0 -esthetics%1:09:00:: 06161223 1 0 -esthonia%1:15:00:: 09012297 1 0 -esthonian%1:10:00:: 06957896 1 0 -estimable%3:00:00:: 00904163 1 0 -estimable%5:00:00:calculable:00 00301432 3 0 -estimable%5:00:00:reputable:00 01983162 2 0 -estimate%1:04:01:: 00875246 2 5 -estimate%1:09:00:: 05803379 1 13 -estimate%1:09:01:: 06207029 5 0 -estimate%1:10:00:: 06528783 3 3 -estimate%1:10:01:: 06783598 4 2 -estimate%2:31:00:: 00672433 1 34 -estimate%2:31:01:: 00712135 2 9 -estimated_tax%1:21:00:: 13310539 1 0 -estimated_tax_return%1:10:00:: 06549115 1 0 -estimation%1:04:01:: 00875246 4 0 -estimation%1:09:00:: 05803379 3 0 -estimation%1:09:01:: 06207029 2 0 -estimation%1:10:00:: 06528783 1 0 -estimator%1:18:00:: 09887034 1 0 -estival%5:00:00:summery:00 01255022 1 0 -estivate%2:29:00:: 00016183 1 0 -estivation%1:14:00:: 07947069 2 0 -estivation%1:26:00:: 14014162 1 0 -estonia%1:15:00:: 09012297 1 0 -estonian%1:10:00:: 06957896 1 0 -estonian%3:01:00:: 02723158 1 0 -estonian_monetary_unit%1:23:00:: 13700233 1 0 -estoppel%1:10:00:: 06653911 1 0 -estradiol%1:27:00:: 14750316 1 0 -estradiol_patch%1:06:00:: 03298352 1 0 -estragon%1:13:00:: 07821610 2 0 -estragon%1:20:00:: 11930203 1 0 -estrange%2:37:00:: 01823528 2 0 -estrange%2:41:00:: 02597246 1 0 -estranged%5:00:00:unloved:00 01463326 1 1 -estrangement%1:12:00:: 07502387 2 0 -estrangement%1:26:00:: 14415773 1 1 -estranging%5:00:00:disorienting:00 01685906 1 1 -estraterrestrial_body%1:17:00:: 09277686 1 0 -estrilda%1:05:00:: 01543817 1 0 -estriol%1:27:00:: 14750622 1 0 -estrogen%1:27:00:: 14749794 1 0 -estrogen_antagonist%1:06:00:: 03298565 1 0 -estrogenic%3:01:00:: 02723312 1 0 -estrone%1:27:00:: 14750782 1 0 -estronol%1:27:00:: 14750782 1 0 -estrous%3:00:00:: 02137806 1 0 -estrus%1:26:00:: 14038264 1 0 -estuarial%3:01:00:: 02723420 1 0 -estuarine%3:01:00:: 02723420 1 0 -estuary%1:17:00:: 09274500 1 1 -esurience%1:07:00:: 04886402 2 0 -esurience%1:26:00:: 14040071 1 0 -esurient%5:00:00:desirous:00 00888477 2 0 -esurient%5:00:00:gluttonous:00 00010726 3 0 -esurient%5:00:00:hungry:00 01269506 1 0 -et_al%4:02:00:: 00191178 1 0 -et_al%4:02:01:: 00191058 2 0 -et_al.%4:02:00:: 00191178 1 6 -et_al.%4:02:01:: 00191058 2 0 -et_alia%4:02:00:: 00191178 1 0 -et_aliae%4:02:00:: 00191178 1 0 -et_alibi%4:02:00:: 00191058 1 0 -et_alii%4:02:00:: 00191178 1 0 -eta%1:10:00:: 06834780 2 0 -eta%1:14:00:: 08018189 1 0 -etagere%1:06:00:: 03298716 1 0 -etamin%1:06:00:: 03298858 1 0 -etamine%1:06:00:: 03298858 1 0 -etanercept%1:06:00:: 03299006 1 0 -etc.%4:02:00:: 00103664 1 6 -etcetera%1:06:00:: 03299261 1 8 -etcetera%4:02:00:: 00103664 1 3 -etch%2:30:03:: 00448110 5 0 -etch%2:35:03:: 01322223 4 0 -etch%2:36:00:: 01750421 1 1 -etch%2:36:02:: 01749790 3 0 -etch%2:39:00:: 02199119 2 0 -etched%5:00:00:carved:00 00317310 1 0 -etcher%1:18:00:: 10064977 1 0 -etching%1:04:00:: 00938791 3 0 -etching%1:06:00:: 03299406 2 0 -etching%1:06:01:: 03299519 1 0 -etd%1:06:00:: 03305953 1 0 -eternal%5:00:00:long:02 01439784 2 1 -eternal%5:00:00:permanent:00 01755024 1 9 -eternal_city%1:15:00:: 08806897 1 0 -eternal_damnation%1:26:00:: 14458593 1 0 -eternal_life%1:26:00:: 13957390 1 0 -eternal_rest%1:26:00:: 13962765 1 0 -eternal_sleep%1:26:00:: 13962765 1 0 -eternalise%2:30:00:: 00553208 1 0 -eternalize%2:30:00:: 00553208 1 0 -eternally%4:02:00:: 00087542 1 1 -eternise%2:30:00:: 00553208 1 0 -eternity%1:26:00:: 13956905 2 2 -eternity%1:28:00:: 15243976 1 3 -eternity%1:28:01:: 15273406 3 1 -eternize%2:30:00:: 00553208 2 0 -eternize%2:42:00:: 02648406 1 0 -etf%1:21:00:: 13359032 1 0 -ethacrynic_acid%1:06:00:: 03299648 1 0 -ethan_allen%1:18:00:: 10814776 1 0 -ethanal%1:27:00:: 14711008 1 0 -ethanal_trimer%1:27:00:: 14689325 1 0 -ethanamide%1:27:00:: 14711197 1 0 -ethane%1:27:00:: 14850826 1 0 -ethanedioic_acid%1:27:00:: 14971022 1 0 -ethanediol%1:27:00:: 14851850 1 0 -ethanoate%1:27:00:: 14599806 1 0 -ethanoic_acid%1:27:00:: 14599168 1 0 -ethanol%1:27:00:: 14709265 1 1 -ethanoyl_chloride%1:27:00:: 14808911 1 0 -ethanoyl_group%1:27:00:: 14594456 1 0 -ethanoyl_radical%1:27:00:: 14594456 1 0 -ethchlorvynol%1:06:00:: 03299788 1 0 -ethel_barrymore%1:18:00:: 10835866 1 0 -ethel_merman%1:18:00:: 11176527 1 0 -ethel_waters%1:18:00:: 11376069 1 0 -ethelbert%1:18:00:: 10961650 1 0 -ethelred%1:18:01:: 10961816 2 0 -ethelred%1:18:02:: 10962041 1 0 -ethelred_i%1:18:00:: 10961816 1 0 -ethelred_ii%1:18:00:: 10962041 1 0 -ethelred_the_unready%1:18:00:: 10962041 1 0 -ethene%1:27:00:: 14851157 1 0 -ether%1:06:00:: 03299929 4 0 -ether%1:10:00:: 06254915 3 0 -ether%1:27:00:: 14709102 2 0 -ether%1:27:01:: 14847103 1 0 -ethereal%3:01:00:: 02871060 2 0 -ethereal%5:00:00:delicate:00 00706455 4 0 -ethereal%5:00:00:heavenly:00 01179345 3 0 -ethereal%5:00:00:insubstantial:00 00626136 1 2 -etherealize%2:30:00:: 00547706 1 0 -etherialise%2:30:00:: 00547706 1 0 -etherify%2:30:00:: 00506377 1 0 -etherise%2:29:00:: 00021554 1 0 -etherize%2:29:00:: 00021554 1 0 -ethernet%1:06:00:: 03300216 1 0 -ethernet_cable%1:06:00:: 03300443 1 0 -ethic%1:09:00:: 05956019 1 2 -ethic%1:10:00:: 06663617 2 0 -ethical%3:00:00:: 00905386 2 2 -ethical%3:01:00:: 02723563 1 3 -ethical%5:00:00:right:01 02035086 3 1 -ethical_code%1:10:00:: 06663617 1 0 -ethical_drug%1:06:00:: 03999280 1 0 -ethical_motive%1:16:00:: 09183693 1 1 -ethically%4:02:00:: 00330505 1 0 -ethician%1:18:00:: 10065066 1 0 -ethicism%1:09:00:: 05961429 1 0 -ethicist%1:18:00:: 10065066 1 0 -ethics%1:09:00:: 06159473 2 0 -ethics%1:16:00:: 09183693 1 1 -ethics_committee%1:14:00:: 08326850 1 0 -ethics_panel%1:14:00:: 08326850 1 0 -ethiopia%1:15:00:: 08778061 1 0 -ethiopian%1:18:00:: 09705124 1 1 -ethiopian%3:01:00:: 03064693 1 0 -ethiopian_banana%1:20:00:: 12353754 1 0 -ethiopian_language%1:10:00:: 06987812 1 0 -ethiopian_monetary_unit%1:23:00:: 13664283 1 0 -ethmoid%1:08:00:: 05274590 1 0 -ethmoid_bone%1:08:00:: 05274590 1 0 -ethmoid_sinus%1:08:00:: 05253165 1 0 -ethmoidal_artery%1:08:00:: 05344848 1 0 -ethmoidal_sinus%1:08:00:: 05253165 1 0 -ethmoidal_vein%1:08:00:: 05367003 1 0 -ethnarch%1:18:00:: 10065261 1 0 -ethnic%1:18:00:: 10065547 1 0 -ethnic%5:00:00:irreligious:00 01784401 2 0 -ethnic%5:00:00:social:00 02248693 1 3 -ethnic_cleansing%1:04:00:: 01265734 1 0 -ethnic_group%1:14:00:: 07967382 1 0 -ethnic_joke%1:10:00:: 06779210 1 0 -ethnic_minority%1:14:00:: 07967736 1 0 -ethnic_music%1:10:00:: 07060167 1 0 -ethnic_slur%1:10:00:: 06718862 1 0 -ethnical%5:00:00:social:00 02248693 1 0 -ethnically%4:02:00:: 00123695 1 0 -ethnicity%1:07:00:: 04799133 1 0 -ethnocentric%3:01:00:: 03135290 1 0 -ethnocentrism%1:09:00:: 06201667 1 0 -ethnographer%1:18:00:: 10065643 1 0 -ethnographic%3:01:00:: 03064883 1 0 -ethnographical%3:01:00:: 03064883 1 0 -ethnography%1:09:00:: 06146546 1 0 -ethnologic%3:01:00:: 03065047 1 0 -ethnological%3:01:00:: 03065047 1 0 -ethnologist%1:18:00:: 10065758 1 0 -ethnology%1:09:00:: 06146880 1 0 -ethnos%1:14:00:: 07967382 1 0 -ethocaine%1:06:00:: 04006727 1 0 -ethologist%1:18:00:: 10065911 1 0 -ethology%1:09:00:: 06072619 1 0 -ethos%1:07:00:: 04723286 1 2 -ethosuximide%1:06:00:: 03300578 1 0 -ethoxyethane%1:06:00:: 03299929 1 0 -ethrane%1:06:00:: 03287459 1 0 -ethril%1:06:00:: 03295357 1 0 -ethyl%1:27:00:: 14710325 1 0 -ethyl_acetate%1:27:00:: 14850948 1 3 -ethyl_alcohol%1:13:00:: 07902121 2 0 -ethyl_alcohol%1:27:00:: 14709265 1 0 -ethyl_aminobenzoate%1:06:00:: 02830721 1 0 -ethyl_chloride%1:06:00:: 03300786 1 0 -ethyl_ether%1:06:00:: 03299929 1 0 -ethyl_group%1:27:00:: 14710325 1 0 -ethyl_radical%1:27:00:: 14710325 1 0 -ethylene%1:27:00:: 14851157 1 0 -ethylene_glycol%1:27:00:: 14851850 1 0 -ethylene_tetrachloride%1:06:00:: 04416338 1 0 -ethylenediaminetetraacetic_acid%1:27:00:: 14851668 1 0 -ethyne%1:27:00:: 14600742 1 0 -etienne-louis_arthur_fallot%1:18:00:: 10966145 1 0 -etiolate%2:29:00:: 00103741 3 0 -etiolate%2:30:00:: 00134136 2 0 -etiolate%2:30:01:: 00225690 1 0 -etiolate%5:00:00:colorless:02 00405554 1 0 -etiolated%5:00:00:colorless:02 00405554 1 0 -etiolation%1:04:00:: 00274206 3 0 -etiolation%1:04:01:: 00362862 2 0 -etiolation%1:07:00:: 04700496 1 0 -etiologic%3:01:00:: 02940953 2 0 -etiologic%3:01:01:: 02941235 1 0 -etiological%3:01:00:: 02940953 2 0 -etiological%3:01:01:: 02941235 1 0 -etiologist%1:18:00:: 10066059 1 0 -etiology%1:09:00:: 06161048 2 0 -etiology%1:11:00:: 07327608 1 0 -etiquette%1:10:00:: 06664845 1 1 -etna%1:06:00:: 02921029 2 0 -etna%1:15:00:: 09174718 1 0 -etodolac%1:06:00:: 03300907 1 0 -eton_collar%1:06:00:: 03301066 1 0 -eton_college%1:14:00:: 08410891 1 0 -eton_jacket%1:06:00:: 03301175 1 0 -etonian%1:18:00:: 10066206 1 0 -etropus%1:05:00:: 02661765 1 0 -etropus_rimosus%1:05:00:: 02661892 1 0 -etruria%1:15:00:: 08813807 1 0 -etruscan%1:18:00:: 09716643 1 0 -etude%1:10:00:: 07043518 1 0 -etui%1:06:00:: 03301291 1 0 -etymological%3:01:00:: 03022003 1 1 -etymological_dictionary%1:10:00:: 06419503 1 0 -etymologise%2:31:00:: 00634286 2 0 -etymologise%2:32:00:: 01070455 1 0 -etymologist%1:18:00:: 10066314 1 0 -etymologize%2:31:00:: 00634286 2 0 -etymologize%2:32:00:: 01070455 1 0 -etymologizing%1:10:00:: 06744154 1 0 -etymology%1:09:00:: 06168855 2 0 -etymology%1:10:00:: 06514621 1 0 -etymon%1:10:00:: 06300445 1 0 -eu%1:14:00:: 08173515 2 0 -eu%1:27:00:: 14637176 1 0 -euarctos%1:05:00:: 02132974 1 0 -euarctos_americanus%1:05:00:: 02133161 1 0 -euascomycetes%1:20:00:: 13024348 1 0 -eubacteria%1:05:00:: 01355326 1 0 -eubacteriales%1:05:00:: 01356086 1 0 -eubacterium%1:05:00:: 01355326 1 0 -eubryales%1:20:00:: 11540747 1 0 -eubstance%1:07:00:: 04934546 1 0 -eucalypt%1:20:00:: 12334891 1 0 -eucalypt_grandis%1:20:00:: 12337800 1 0 -eucalypt_gunnii%1:20:00:: 12337922 1 0 -eucalypt_ovata%1:20:00:: 12338034 1 0 -eucalypt_tereticornis%1:20:00:: 12338655 1 0 -eucalyptus%1:20:00:: 12334891 2 0 -eucalyptus%1:20:02:: 12335351 1 0 -eucalyptus_amygdalina%1:20:00:: 12336092 1 0 -eucalyptus_calophylla%1:20:00:: 12336224 1 0 -eucalyptus_camaldulensis%1:20:00:: 12336333 1 0 -eucalyptus_camphora%1:20:00:: 12336586 1 0 -eucalyptus_citriodora%1:20:00:: 12338258 1 0 -eucalyptus_coriacea%1:20:00:: 12336727 1 0 -eucalyptus_delegatensis%1:20:00:: 12336973 1 0 -eucalyptus_dumosa%1:20:00:: 12337131 1 0 -eucalyptus_fraxinoides%1:20:00:: 12337391 1 0 -eucalyptus_globulus%1:20:00:: 12337617 1 0 -eucalyptus_gum%1:20:00:: 12339090 1 0 -eucalyptus_kino%1:20:00:: 12339090 1 0 -eucalyptus_maculata%1:20:00:: 12338146 1 0 -eucalyptus_maculata_citriodora%1:20:00:: 12338258 1 0 -eucalyptus_oil%1:27:00:: 14893537 1 0 -eucalyptus_pauciflora%1:20:00:: 12336727 1 0 -eucalyptus_regnans%1:20:00:: 12338796 1 0 -eucalyptus_rostrata%1:20:00:: 12336333 1 0 -eucalyptus_tree%1:20:00:: 12334891 1 0 -eucalyptus_viminalis%1:20:00:: 12338979 1 0 -eucalyptusd_eugenioides%1:20:00:: 12337246 1 0 -eucalytus_stellulata%1:20:00:: 12338454 1 0 -eucarya%1:20:00:: 12736455 1 0 -eucarya_acuminata%1:20:00:: 12736603 1 0 -eucaryote%1:05:00:: 01415626 1 0 -eucaryotic%3:01:00:: 02859974 1 0 -eucharist%1:04:00:: 01035853 1 0 -eucharistic%3:01:00:: 02715802 1 0 -eucharistic_liturgy%1:04:00:: 01035853 1 0 -euchre%1:04:00:: 00492309 1 0 -eucinostomus%1:05:00:: 02637337 1 0 -eucinostomus_gula%1:05:00:: 02637475 1 0 -euclid%1:18:00:: 10962302 1 0 -euclid's_axiom%1:09:00:: 06005692 1 0 -euclid's_fifth_axiom%1:09:00:: 06006458 1 0 -euclid's_first_axiom%1:09:00:: 06005999 1 0 -euclid's_fourth_axiom%1:09:00:: 06006364 1 0 -euclid's_postulate%1:09:00:: 06005692 1 0 -euclid's_second_axiom%1:09:00:: 06006117 1 0 -euclid's_third_axiom%1:09:00:: 06006243 1 0 -euclidean%3:01:00:: 03065227 1 0 -euclidean_axiom%1:09:00:: 06005692 1 0 -euclidean_geometry%1:09:00:: 06005518 1 0 -euclidean_space%1:14:00:: 08004953 1 0 -euclidian%3:01:00:: 03065227 1 0 -eudaemon%1:18:00:: 09542697 1 0 -eudaemonia%1:26:00:: 14447525 1 0 -eudaemonic%3:01:00:: 02859817 1 0 -eudaimonia%1:26:00:: 14447525 1 0 -eudemon%1:18:00:: 09542697 1 0 -eudemonic%3:01:00:: 02859817 1 0 -eudemonism%1:09:00:: 06160418 1 0 -euderma%1:05:00:: 02148377 1 0 -euderma_maculata%1:05:00:: 02148512 1 0 -eudiometer%1:06:00:: 03301389 1 0 -eudora_welty%1:18:00:: 11381457 1 0 -eudromias_morinellus%1:05:00:: 02024185 1 0 -eudyptes%1:05:00:: 02057208 1 0 -eugene%1:15:00:: 09133500 2 0 -eugene%1:18:00:: 10962423 1 0 -eugene_curran_kelly%1:18:00:: 11099729 1 0 -eugene_delacroix%1:18:00:: 10928498 1 0 -eugene_gladstone_o'neill%1:18:00:: 11215070 1 0 -eugene_ionesco%1:18:00:: 11072887 1 0 -eugene_luther_vidal%1:18:00:: 11366109 1 0 -eugene_o'neill%1:18:00:: 11215070 1 0 -eugene_ormandy%1:18:00:: 11216797 1 0 -eugene_paul_wigner%1:18:00:: 11386138 1 0 -eugene_sue%1:18:00:: 11323580 1 0 -eugene_v._debs%1:18:00:: 10926429 1 0 -eugene_victor_debs%1:18:00:: 10926429 1 0 -eugene_wigner%1:18:00:: 11386138 1 0 -eugenia%1:20:00:: 12331415 1 0 -eugenia_aromaticum%1:20:00:: 12339526 1 0 -eugenia_caryophyllatum%1:20:00:: 12339526 1 0 -eugenia_corynantha%1:20:00:: 12331655 1 0 -eugenia_dicrana%1:20:00:: 12331788 1 0 -eugenia_jambos%1:20:00:: 12332218 1 0 -eugenia_uniflora%1:20:00:: 12332030 1 0 -eugenic%3:01:00:: 02715949 1 1 -eugenics%1:09:00:: 06042486 1 0 -eugenio_pacelli%1:18:00:: 11238511 1 0 -euglena%1:05:00:: 01406736 1 0 -euglenaceae%1:05:00:: 01406426 1 0 -euglenid%1:05:00:: 01406904 1 0 -euglenoid%1:05:00:: 01406904 1 0 -euglenophyceae%1:05:00:: 01406262 1 0 -euglenophyta%1:05:00:: 01406092 1 0 -euglenophyte%1:05:00:: 01406904 1 0 -eukaryote%1:05:00:: 01415626 1 0 -eukaryotic%3:01:00:: 02859974 1 0 -euler%1:18:00:: 10962611 1 0 -eulogise%2:32:00:: 00880780 1 0 -eulogist%1:18:00:: 09617161 1 0 -eulogistic%5:00:00:complimentary:00 00906099 1 0 -eulogium%1:10:00:: 06694359 1 0 -eulogize%2:32:00:: 00880780 1 2 -eulogy%1:10:00:: 06694359 1 0 -eulogy%1:10:01:: 06694149 2 0 -eumeces%1:05:00:: 01684435 1 0 -eumeces_callicephalus%1:05:00:: 01684741 1 0 -eumeces_skiltonianus%1:05:00:: 01684578 1 0 -eumenes%1:05:00:: 02214203 1 0 -eumenides%1:18:00:: 09506337 1 0 -eumetopias%1:05:00:: 02078882 1 0 -eumetopias_jubatus%1:05:00:: 02079005 1 0 -eumops%1:05:00:: 02150016 1 0 -eumycetes%1:20:00:: 12995435 1 0 -eumycota%1:20:00:: 12994979 1 0 -eunectes%1:05:00:: 01742967 1 0 -eunectes_murinus%1:05:00:: 01743086 1 0 -eunuch%1:18:00:: 10066452 1 0 -eunuchoidism%1:26:00:: 14075660 1 0 -euonymous_alatus%1:20:00:: 12749456 1 0 -euonymus%1:20:00:: 12748815 1 0 -euonymus_americanus%1:20:00:: 12749852 1 0 -euonymus_atropurpureus%1:20:00:: 12749679 1 0 -euonymus_europaeus%1:20:00:: 12749289 1 0 -euonymus_fortunei_radicans%1:20:00:: 12750076 1 0 -euonymus_radicans_vegetus%1:20:00:: 12750076 1 0 -euopean_hoopoe%1:05:00:: 01830042 1 0 -eupatorium%1:20:00:: 11968104 1 0 -eupatorium_aya-pana%1:20:00:: 11937692 1 0 -eupatorium_cannabinum%1:20:00:: 11968335 1 0 -eupatorium_capillifolium%1:20:00:: 11968519 1 0 -eupatorium_coelestinum%1:20:00:: 11955896 1 0 -eupatorium_maculatum%1:20:00:: 11968704 1 0 -eupatorium_perfoliatum%1:20:00:: 11968931 1 0 -eupatorium_purpureum%1:20:00:: 11969166 1 0 -eupatorium_rugosum%1:20:00:: 11917835 1 0 -euphagus%1:05:00:: 01574671 1 0 -euphagus_carilonus%1:05:00:: 01574801 1 0 -euphausia_pacifica%1:05:00:: 01988869 1 0 -euphausiacea%1:05:00:: 01988481 1 0 -euphemise%2:32:00:: 00933107 1 0 -euphemism%1:10:00:: 06605046 1 0 -euphemistic%3:00:00:: 00908483 1 0 -euphemistically%4:02:00:: 00330833 1 0 -euphemize%2:32:00:: 00933107 1 0 -euphonic%3:01:00:: 02951702 1 0 -euphonical%3:01:00:: 02951702 1 0 -euphonious%3:00:00:: 00300738 1 0 -euphonious%5:00:00:soft:04 01455221 2 0 -euphonium%1:06:00:: 03301568 1 0 -euphonous%3:00:00:: 00300738 1 0 -euphony%1:09:00:: 05718556 1 0 -euphorbia%1:20:00:: 12917338 1 0 -euphorbia_amygdaloides%1:20:00:: 12920955 1 0 -euphorbia_antisyphilitica%1:20:00:: 12921126 1 0 -euphorbia_caput-medusae%1:20:00:: 12918991 1 0 -euphorbia_corollata%1:20:00:: 12919195 1 0 -euphorbia_cyathophora%1:20:00:: 12920719 1 0 -euphorbia_cyparissias%1:20:00:: 12919646 1 0 -euphorbia_dentata%1:20:00:: 12922119 1 0 -euphorbia_esula%1:20:00:: 12919847 1 0 -euphorbia_exigua%1:20:00:: 12921315 1 0 -euphorbia_fulgens%1:20:00:: 12921499 1 0 -euphorbia_helioscopia%1:20:00:: 12918609 1 0 -euphorbia_heterophylla%1:20:00:: 12920521 1 0 -euphorbia_hirsuta%1:20:00:: 12920043 1 0 -euphorbia_ingens%1:20:00:: 12921660 1 0 -euphorbia_lathyris%1:20:00:: 12918404 1 0 -euphorbia_litchi%1:20:00:: 12743352 1 0 -euphorbia_marginata%1:20:00:: 12919403 1 0 -euphorbia_medusae%1:20:00:: 12918991 1 0 -euphorbia_milii%1:20:00:: 12921868 1 0 -euphorbia_peplus%1:20:00:: 12918810 1 0 -euphorbia_pulcherrima%1:20:00:: 12920204 1 0 -euphorbiaceae%1:20:00:: 12916935 1 0 -euphorbium%1:27:00:: 14852312 1 0 -euphoria%1:12:00:: 07529096 1 1 -euphoriant%1:06:00:: 03301696 1 0 -euphoriant%5:00:00:euphoric:00 00909118 1 0 -euphoric%3:00:00:: 00908929 1 1 -euphory%1:12:00:: 07529096 1 0 -euphractus%1:05:00:: 02455584 1 0 -euphractus_sexcinctus%1:05:00:: 02455720 1 0 -euphrates%1:17:00:: 09274739 1 0 -euphrates_river%1:17:00:: 09274739 1 0 -euphrosyne%1:18:00:: 09495732 1 0 -euphuism%1:10:00:: 06366879 2 0 -euphuism%1:10:01:: 07069517 1 0 -euplectella%1:05:00:: 01907902 1 0 -eupnea%1:04:00:: 00833491 1 0 -eupneic%3:00:00:: 00267452 1 0 -eupnoea%1:04:00:: 00833491 1 0 -eupnoeic%3:00:00:: 00267452 1 0 -euproctis%1:05:00:: 02286271 1 0 -euproctis_chrysorrhoea%1:05:00:: 02286654 1 0 -euproctis_phaeorrhoea%1:05:00:: 02286425 1 0 -eurafrican%1:18:00:: 09686262 1 0 -eurafrican%3:01:00:: 03023995 1 0 -eurasia%1:17:00:: 09275016 1 0 -eurasian%1:18:00:: 09686401 1 0 -eurasian%3:01:00:: 03024132 1 1 -eurasian_badger%1:05:00:: 02448060 1 0 -eurasian_green_toad%1:05:00:: 01646902 1 0 -eurasian_hamster%1:05:00:: 02343058 1 0 -eurasian_kingfisher%1:05:00:: 01827793 1 0 -eurasian_otter%1:05:00:: 02445171 1 0 -eurasian_woodcock%1:05:00:: 02031298 1 0 -eurasiatic%3:01:00:: 03024132 1 0 -eureka%1:15:00:: 09063125 2 0 -eureka%1:27:00:: 14820747 1 0 -eurhythmics%1:04:00:: 00429713 1 0 -eurhythmy%1:04:00:: 00429713 1 0 -euripides%1:18:00:: 10962712 1 0 -euro%1:23:00:: 13661820 1 0 -eurobabble%1:10:00:: 07069632 1 0 -eurocentric%3:01:00:: 02716101 1 0 -eurocentrism%1:09:00:: 06201778 1 0 -eurocurrency%1:21:00:: 13386136 1 0 -eurodollar%1:23:00:: 13674479 1 0 -euronithopod%1:05:00:: 01705247 1 0 -euronithopoda%1:05:00:: 01705247 1 0 -europa%1:17:00:: 09275335 1 0 -europan%1:10:00:: 06895940 1 0 -europe%1:14:00:: 08173515 2 0 -europe%1:14:01:: 08172695 3 0 -europe%1:17:00:: 09275473 1 28 -european%1:18:00:: 09686536 1 2 -european%3:01:00:: 02968325 1 14 -european_ash%1:20:00:: 12304703 1 0 -european_barberry%1:20:00:: 11698042 1 0 -european_bean%1:20:00:: 12576029 1 0 -european_beech%1:20:00:: 12261359 1 0 -european_beggar-ticks%1:20:00:: 11940750 1 0 -european_bird_cherry%1:20:00:: 12647560 1 0 -european_bittern%1:05:00:: 02011943 1 0 -european_black_alder%1:20:00:: 12284821 1 0 -european_black_currant%1:20:00:: 12805561 1 0 -european_black_grouse%1:05:00:: 01795735 1 0 -european_blackbird%1:05:00:: 01558594 1 0 -european_blueberry%1:13:00:: 07743224 1 0 -european_bog_asphodel%1:20:00:: 12463975 1 0 -european_box%1:20:00:: 12746253 1 0 -european_bream%1:05:00:: 01440467 1 0 -european_brooklime%1:20:00:: 12891093 1 0 -european_brown_bat%1:05:00:: 02147328 1 0 -european_catfish%1:05:00:: 02518324 1 0 -european_central_bank%1:14:00:: 08350244 1 0 -european_chestnut%1:20:00:: 12263204 1 0 -european_community%1:14:00:: 08173515 1 0 -european_corn_borer_moth%1:05:00:: 02289610 1 0 -european_country%1:15:00:: 08696931 1 1 -european_cranberry%1:20:00:: 12246037 1 0 -european_cranberry_bush%1:20:00:: 12680864 1 0 -european_cranberrybush%1:20:00:: 12680864 1 0 -european_creeper%1:05:00:: 01589893 1 0 -european_cuckoo%1:05:00:: 01823414 1 0 -european_curlew%1:05:00:: 02033779 1 0 -european_dewberry%1:20:00:: 12655726 1 0 -european_dogtooth%1:20:00:: 12451070 1 0 -european_dune_grass%1:20:00:: 12119539 1 0 -european_economic_community%1:14:00:: 08173515 1 0 -european_elder%1:20:00:: 12679201 1 0 -european_elk%1:05:00:: 02432983 1 0 -european_elm%1:20:00:: 12407890 1 0 -european_field_elm%1:20:00:: 12406715 1 0 -european_fire_salamander%1:05:00:: 01629819 1 0 -european_flatfish%1:05:00:: 02658811 1 0 -european_fly_honeysuckle%1:20:00:: 12677120 1 0 -european_gallinule%1:05:00:: 02017213 1 0 -european_goatsucker%1:05:00:: 01835769 1 0 -european_hackberry%1:20:00:: 12409470 1 0 -european_hare%1:05:00:: 02326862 1 0 -european_honeysuckle%1:20:00:: 12677120 1 0 -european_hop%1:20:00:: 12398174 1 0 -european_hornbeam%1:20:00:: 12286988 1 0 -european_house_cricket%1:05:00:: 02230023 1 0 -european_ladies'_tresses%1:20:00:: 12084555 1 0 -european_larch%1:20:00:: 11619845 1 0 -european_law_enforcement_organisation%1:14:00:: 08210042 1 0 -european_lemming%1:05:00:: 02344918 1 0 -european_lobster%1:05:00:: 01983674 2 0 -european_lobster%1:13:00:: 07793133 1 0 -european_magpie%1:05:00:: 01582398 1 0 -european_mountain_ash%1:20:00:: 12658308 1 0 -european_nation%1:15:00:: 08696931 1 2 -european_nightjar%1:05:00:: 01835769 1 0 -european_nut_pine%1:20:00:: 11611758 1 0 -european_nuthatch%1:05:00:: 01591005 1 0 -european_olive_tree%1:20:00:: 12301180 1 0 -european_parsley_fern%1:20:00:: 13210597 1 0 -european_pasqueflower%1:20:00:: 11738203 1 0 -european_perch%1:05:00:: 02557318 1 0 -european_plan%1:21:00:: 13416106 1 0 -european_quaking_aspen%1:20:00:: 12733870 1 0 -european_rabbit%1:05:00:: 02324850 1 0 -european_raspberry%1:20:00:: 12656369 1 0 -european_recovery_program%1:21:00:: 13266690 1 0 -european_red_elder%1:20:00:: 12679593 1 0 -european_roller%1:05:00:: 01826680 1 0 -european_russia%1:15:00:: 09007471 1 0 -european_sandpiper%1:05:00:: 02026948 1 0 -european_sanicle%1:20:00:: 12944095 1 0 -european_sea_bream%1:05:00:: 02591613 1 0 -european_sea_eagle%1:05:00:: 01615458 1 0 -european_shrike%1:05:00:: 01599159 1 0 -european_silver_fir%1:20:00:: 11621547 1 0 -european_smelt%1:05:00:: 02540983 2 0 -european_smelt%1:13:00:: 07798872 1 0 -european_sole%1:05:00:: 02664285 1 0 -european_spider_crab%1:05:00:: 01982068 1 0 -european_swift%1:05:00:: 01832493 1 0 -european_toad%1:05:00:: 01646555 1 0 -european_tortoise%1:05:00:: 01670535 1 0 -european_turkey_oak%1:20:00:: 12270741 1 0 -european_union%1:14:00:: 08173515 1 0 -european_water_ouzel%1:05:00:: 01602080 1 0 -european_water_shrew%1:05:00:: 01893021 1 0 -european_white_birch%1:20:00:: 12282527 1 0 -european_white_lily%1:20:00:: 11715678 1 0 -european_wildcat%1:05:00:: 02125081 1 0 -european_wolf_spider%1:05:00:: 01775370 1 0 -european_wood_mouse%1:05:00:: 02333190 1 0 -european_woolly_thistle%1:20:00:: 11954642 1 0 -europeanisation%1:22:00:: 13476440 1 0 -europeanise%2:30:00:: 00410055 1 0 -europeanise%2:30:01:: 00409869 2 0 -europeanization%1:22:00:: 13476440 1 0 -europeanize%2:30:00:: 00410055 2 0 -europeanize%2:30:01:: 00409869 1 1 -europium%1:27:00:: 14637176 1 0 -europocentric%3:01:00:: 02716101 1 0 -europol%1:14:00:: 08210042 1 0 -eurotiales%1:20:00:: 13026763 1 0 -eurotium%1:20:00:: 13027049 1 0 -euryale%1:05:00:: 02318437 2 0 -euryale%1:18:00:: 09498186 1 0 -euryalida%1:05:00:: 02317983 1 0 -eurydice%1:18:00:: 09571581 1 0 -eurylaimi%1:05:00:: 01546223 1 0 -eurylaimidae%1:05:00:: 01546348 1 0 -eurypterid%1:05:00:: 01788579 1 0 -eurypterida%1:05:00:: 01788420 1 0 -eurythmics%1:04:00:: 00429713 1 0 -eurythmy%1:04:00:: 00429713 1 0 -eusebius%1:18:00:: 10962837 1 0 -eusebius_hieronymus%1:18:00:: 11083064 1 0 -eusebius_of_caesarea%1:18:00:: 10962837 1 0 -eusebius_sophronius_hieronymus%1:18:00:: 11083064 1 0 -euskadi_ta_askatasuna%1:14:00:: 08018189 1 0 -eusporangiate%3:00:00:: 01409379 1 0 -eusporangium%1:20:00:: 13092987 1 0 -eustachian_tube%1:08:00:: 05325153 1 0 -eustachio%1:18:00:: 10963050 1 0 -eustoma%1:20:00:: 12291763 1 0 -eustoma_grandiflorum%1:20:00:: 12291959 1 0 -eutamias%1:05:00:: 02360135 1 0 -eutamius_asiaticus%1:05:00:: 02360480 1 0 -eutamius_sibiricus%1:05:00:: 02360480 1 0 -eutectic%1:27:00:: 14589114 1 1 -eutectoid_steel%1:27:00:: 14852747 1 0 -euterpe%1:18:00:: 09566667 2 0 -euterpe%1:20:00:: 12590842 1 0 -euterpe_oleracea%1:20:00:: 12591017 1 0 -euthanasia%1:04:00:: 00219856 1 0 -euthenics%1:09:00:: 06042905 1 0 -eutheria%1:05:00:: 01886220 1 0 -eutherian%1:05:00:: 01886756 1 0 -eutherian%3:01:00:: 03018964 1 0 -eutherian_mammal%1:05:00:: 01886756 1 0 -euthynnus%1:05:00:: 02628467 1 0 -euthynnus_pelamis%1:05:00:: 02628600 1 0 -eutrophic%3:01:00:: 02716247 1 0 -eutrophication%1:22:00:: 13476590 1 0 -euxine_sea%1:17:00:: 09223325 1 0 -ev%1:23:00:: 13725902 1 0 -eva_braun%1:18:00:: 10863440 1 0 -eva_le_gallienne%1:18:00:: 11124831 1 0 -evacuant%5:00:00:laxative:00 00638067 1 0 -evacuate%2:29:00:: 00073343 5 0 -evacuate%2:30:00:: 00449295 2 1 -evacuate%2:30:01:: 00449567 4 0 -evacuate%2:38:00:: 02014024 3 0 -evacuate%2:38:01:: 01856450 1 1 -evacuation%1:04:00:: 00395797 1 2 -evacuation%1:04:01:: 00054821 2 1 -evacuation%1:22:00:: 13473097 3 0 -evacuee%1:18:00:: 10066624 1 0 -evade%2:32:00:: 00809654 1 3 -evade%2:32:03:: 00811039 4 0 -evade%2:38:00:: 02074377 2 1 -evade%2:41:00:: 02369811 3 0 -evaluate%2:31:00:: 00681429 1 18 -evaluate%2:31:01:: 00670261 2 0 -evaluation%1:04:00:: 00874806 1 8 -evaluation%1:09:00:: 05736149 2 3 -evaluative%5:00:00:critical:02 00649892 1 1 -evaluator%1:18:00:: 10066732 1 0 -evanesce%2:30:00:: 00421691 1 0 -evanescence%1:11:00:: 07335917 1 0 -evanescent%5:00:00:impermanent:00 01756940 1 0 -evangel%1:10:00:: 06455138 1 0 -evangelical%3:01:00:: 02922814 2 0 -evangelical%3:01:01:: 02923005 1 2 -evangelical%5:00:00:enthusiastic:00 00886681 3 0 -evangelical_and_reformed_church%1:14:00:: 08091290 1 0 -evangelical_united_brethren_church%1:14:00:: 08092855 1 0 -evangelicalism%1:09:00:: 06231030 1 0 -evangelise%2:30:00:: 00386390 2 0 -evangelise%2:32:00:: 00828227 1 0 -evangelism%1:10:00:: 07244613 1 0 -evangelist%1:18:00:: 10067011 1 1 -evangelist%1:18:01:: 10067305 2 0 -evangelista_torricelli%1:18:00:: 11346110 1 0 -evangelistic%3:01:00:: 02923281 1 0 -evangelistic%5:00:00:enthusiastic:00 00886681 2 0 -evangelize%2:30:00:: 00386390 2 0 -evangelize%2:32:00:: 00828227 1 0 -evans%1:18:00:: 10963254 2 0 -evans%1:18:01:: 10963467 1 0 -evansville%1:15:00:: 09085209 1 0 -evaporable%5:00:00:volatile:00 02519813 1 0 -evaporate%2:30:00:: 00366858 1 2 -evaporate%2:30:01:: 00575720 3 0 -evaporate%2:30:02:: 00575970 2 0 -evaporate%2:30:03:: 00223928 4 0 -evaporated%5:00:00:gaseous:00 02263150 1 0 -evaporated_milk%1:13:00:: 07846359 1 0 -evaporation%1:22:00:: 13572436 1 2 -evaporation%1:22:01:: 13460568 2 0 -evaporative%3:01:00:: 02924428 1 0 -evaporative_cooler%1:06:00:: 03301833 1 1 -evaporite%1:27:00:: 15009192 1 0 -evaporometer%1:06:00:: 02752917 1 0 -evariste_galois%1:18:00:: 10988261 1 0 -evasion%1:04:00:: 00059127 4 0 -evasion%1:04:01:: 00740712 3 0 -evasion%1:04:02:: 01120855 2 0 -evasion%1:10:00:: 06761099 1 0 -evasive%5:00:00:equivocal:00 00896182 1 2 -evasive%5:00:00:protective:00 01888284 2 0 -evasive_action%1:04:00:: 00059552 1 0 -evasive_answer%1:10:00:: 06560758 1 0 -evasively%4:02:00:: 00330989 1 0 -evasiveness%1:07:00:: 04825383 1 0 -eve%1:18:00:: 09586743 1 7 -eve%1:28:00:: 15166462 4 0 -eve%1:28:01:: 15156424 2 2 -eve%1:28:02:: 15167778 3 0 -evelyn_arthur_saint_john_waugh%1:18:00:: 11377168 1 0 -evelyn_waugh%1:18:00:: 11377168 1 0 -even%1:28:00:: 15166462 1 0 -even%2:30:00:: 00416880 2 0 -even%2:30:01:: 00416705 3 0 -even%2:35:00:: 01307142 1 0 -even%3:00:01:: 00909545 3 2 -even%3:00:02:: 00913387 1 4 -even%4:02:00:: 00017445 1 394 -even%4:02:01:: 00017639 3 6 -even%4:02:03:: 00018043 2 13 -even%4:02:04:: 00018189 4 0 -even%5:00:00:steady:00 02302187 5 0 -even%5:00:00:symmetrical:00 02372520 4 0 -even%5:00:01:equal:00 00891170 2 3 -even%5:00:02:equal:00 00892243 6 0 -even-pinnate%5:00:00:compound:00 02172617 1 0 -even-pinnate_leaf%1:20:00:: 13160116 1 0 -even-tempered%5:00:00:good-natured:00 01134486 1 0 -even-textured%5:00:00:smooth:00 02237420 1 0 -even-toed%3:01:00:: 02643673 1 0 -even-toed_ungulate%1:05:00:: 02394477 1 0 -even_a_little%4:02:00:: 00150558 1 0 -even_as%4:02:01:: 00017881 1 1 -even_chance%1:19:00:: 11519799 1 0 -even_off%2:42:00:: 02672540 1 0 -even_out%2:30:00:: 00416705 4 0 -even_out%2:30:01:: 00416880 3 0 -even_out%2:35:00:: 01307142 2 0 -even_out%2:42:00:: 02672540 1 0 -even_so%4:02:00:: 00027384 1 4 -even_spacing%1:07:00:: 04769988 1 0 -even_up%2:38:00:: 01987648 2 0 -even_up%2:42:00:: 02672540 1 0 -evenfall%1:28:00:: 15169421 1 0 -evenhanded%5:00:00:equitable:00 00958615 1 0 -evenhandedly%4:02:00:: 00106759 1 0 -evening%1:28:00:: 15166462 1 38 -evening%1:28:01:: 15268094 2 0 -evening%1:28:02:: 15167906 3 0 -evening-primrose_family%1:20:00:: 12341126 1 0 -evening-snow%1:20:00:: 12811713 1 0 -evening_bag%1:06:00:: 03301940 1 0 -evening_clothes%1:06:00:: 03384891 1 0 -evening_dress%1:06:00:: 03384891 1 0 -evening_gown%1:06:00:: 03201638 1 0 -evening_grosbeak%1:05:00:: 01540566 1 0 -evening_lychnis%1:20:00:: 11816336 1 0 -evening_prayer%1:10:00:: 06456759 1 0 -evening_primrose%1:20:00:: 12344283 1 0 -evening_shift%1:14:00:: 08218713 2 0 -evening_shift%1:28:00:: 15292829 1 0 -evening_shirt%1:06:00:: 03238879 1 0 -evening_star%1:17:00:: 09276872 1 0 -evening_trumpet_flower%1:20:00:: 12485981 1 0 -eveningwear%1:06:00:: 03384891 1 0 -evenk%1:18:00:: 09737453 1 0 -evenki%1:10:00:: 06928610 2 0 -evenki%1:18:00:: 09644008 1 0 -evenly%4:02:00:: 00331194 2 0 -evenly%4:02:01:: 00332069 1 0 -evenness%1:07:00:: 04769456 2 0 -evenness%1:07:02:: 04748498 3 0 -evenness%1:24:00:: 13790492 1 0 -evensong%1:10:00:: 06456759 2 0 -evensong%1:28:00:: 15230180 1 1 -event%1:03:00:: 00029378 1 62 -event%1:19:00:: 11453860 3 0 -event%1:19:01:: 11410625 4 0 -event%1:26:00:: 13943400 2 6 -event_planner%1:18:00:: 10067600 1 0 -eventful%3:00:00:: 00804220 1 0 -eventful%5:00:00:important:00 01277753 2 0 -eventide%1:28:00:: 15166462 1 0 -eventration%1:26:00:: 14296142 1 0 -eventual%5:00:00:ultimate:00 01578856 1 3 -eventuality%1:11:00:: 07290761 1 0 -eventually%4:02:00:: 00048138 1 14 -eventuate%2:42:00:: 02611002 1 1 -ever%4:02:00:: 00019339 2 15 -ever%4:02:04:: 00146387 1 107 -ever%4:02:05:: 00212604 3 7 -ever-changing%5:00:00:dynamic:00 00808822 1 2 -ever-present%5:00:00:present:02 01847022 1 2 -ever_so%4:02:00:: 00212604 1 0 -everest%1:17:00:: 09277010 1 0 -everglade_state%1:15:00:: 09071690 1 0 -everglades%1:17:00:: 09277279 1 0 -everglades_national_park%1:15:00:: 08604487 1 0 -evergreen%1:20:00:: 13099833 1 0 -evergreen%3:00:00:: 00913551 1 0 -evergreen_beech%1:20:00:: 12266217 1 0 -evergreen_bittersweet%1:20:00:: 12750076 1 0 -evergreen_blueberry%1:20:00:: 12247963 1 0 -evergreen_cherry%1:20:00:: 12646397 1 0 -evergreen_grass%1:20:00:: 12108871 1 0 -evergreen_huckleberry%1:20:00:: 12248141 1 0 -evergreen_magnolia%1:20:00:: 11710136 1 0 -evergreen_millet%1:20:00:: 12138905 1 0 -evergreen_oak%1:20:00:: 12272432 1 0 -evergreen_plant%1:20:00:: 13099833 1 0 -evergreen_state%1:15:00:: 09152944 1 0 -evergreen_thorn%1:20:00:: 12628579 1 0 -evergreen_winterberry%1:20:00:: 12757458 1 0 -evergreen_wood_fern%1:20:01:: 13194036 2 0 -evergreen_wood_fern%1:20:02:: 13199717 1 0 -everlasting%1:20:00:: 11915899 1 0 -everlasting%5:00:00:permanent:00 01755024 1 1 -everlasting%5:00:00:unmitigated:00 01520091 2 0 -everlasting_flower%1:20:00:: 11915899 1 0 -everlasting_pea%1:20:00:: 12539832 1 0 -everlastingly%4:02:00:: 00087542 1 2 -everlastingness%1:07:00:: 05054426 1 0 -evermore%4:02:00:: 00087542 2 0 -evermore%4:02:01:: 00332596 1 0 -evernia%1:20:00:: 12990092 1 0 -evers%1:18:00:: 10963642 1 0 -eversion%1:04:00:: 00335653 2 0 -eversion%1:07:00:: 05080616 1 0 -evert%1:18:00:: 10963815 1 0 -evert%2:38:00:: 02089632 1 0 -everting%1:04:00:: 00335653 1 0 -every%5:00:00:all:00 02269794 1 57 -every%5:00:02:all:00 02270186 2 11 -every_bit%4:02:00:: 00022131 1 1 -every_inch%4:02:00:: 00157528 1 0 -every_last%5:00:00:all:00 02270057 1 1 -every_night%4:02:00:: 00410210 1 3 -every_now_and_then%4:02:00:: 00157412 1 0 -every_quarter%4:02:00:: 00436848 1 0 -every_so_often%4:02:00:: 00157412 1 1 -every_week%4:02:00:: 00081591 1 1 -every_which_way%4:02:00:: 00163590 2 0 -every_which_way%4:02:01:: 00070765 1 1 -every_year%4:02:00:: 00081737 1 1 -everyday%5:00:00:familiar:02 00970947 3 0 -everyday%5:00:00:informal:01 01044557 2 0 -everyday%5:00:00:ordinary:00 01674242 1 7 -everydayness%1:07:00:: 04795545 1 0 -everyman%1:18:00:: 10067793 1 0 -everyplace%4:02:00:: 00025728 1 0 -everywhere%4:02:00:: 00025728 1 19 -evict%2:35:00:: 01468058 2 0 -evict%2:35:01:: 01468327 1 0 -eviction%1:04:00:: 01194331 2 0 -eviction%1:04:01:: 01194904 1 0 -evidence%1:09:00:: 05823932 1 54 -evidence%1:10:00:: 06733939 3 7 -evidence%1:10:01:: 06643408 2 23 -evidence%2:32:00:: 00820976 1 10 -evidence%2:32:01:: 01015244 2 3 -evidence%2:32:02:: 00954422 3 1 -evidenced%5:00:00:proved:00 01894077 1 0 -evident%5:00:00:noticeable:00 01287486 2 1 -evident%5:00:00:obvious:00 01618376 1 24 -evidential%5:00:00:significant:00 02162733 1 1 -evidentiary%3:01:00:: 02723723 1 0 -evidentiary%5:00:00:significant:00 02162733 2 0 -evidently%4:02:00:: 00039318 1 15 -evil%1:04:00:: 00745637 1 6 -evil%1:07:00:: 04852088 3 3 -evil%1:07:02:: 05144663 2 4 -evil%3:00:00:: 01131043 1 9 -evil%5:00:00:maleficent:00 00224515 3 0 -evil%5:00:00:wicked:00 02514099 2 1 -evil-looking%5:00:00:ugly:00 00221469 1 0 -evil-minded%5:00:00:evil:00 01133784 1 0 -evil_eye%1:04:00:: 00879156 1 0 -evil_spirit%1:18:00:: 09541919 1 0 -evildoer%1:18:00:: 10601078 1 1 -evildoing%1:04:00:: 00745005 1 0 -evilly%4:02:00:: 00144586 1 0 -evilness%1:07:00:: 04852088 1 0 -evince%2:32:00:: 00943837 1 0 -eviscerate%2:30:00:: 00197590 3 0 -eviscerate%2:30:02:: 00450168 2 0 -eviscerate%2:30:03:: 00167191 4 0 -eviscerate%2:35:01:: 01255057 1 0 -eviscerate%5:00:00:injured:00 01318659 1 0 -evisceration%1:04:00:: 00673578 1 0 -evisceration%1:04:01:: 00670703 2 0 -evisceration%1:04:02:: 00354342 3 0 -evitable%3:00:00:: 00343700 1 0 -evocation%1:09:00:: 05769833 1 1 -evocation%1:09:01:: 05827253 3 0 -evocation%1:09:02:: 05978623 2 0 -evocative%5:00:00:mindful:00 01977669 1 0 -evoke%2:32:01:: 00930368 5 0 -evoke%2:36:00:: 01646866 2 3 -evoke%2:36:01:: 01630532 3 0 -evoke%2:36:02:: 01629958 4 0 -evoke%2:37:00:: 01759326 1 10 -evoked%5:00:00:induced:00 02283356 1 0 -evoked_potential%1:19:00:: 11494076 1 0 -evolution%1:22:00:: 13477023 2 0 -evolution%1:22:01:: 13464820 1 5 -evolutionarily%4:02:00:: 00331291 1 0 -evolutionary%3:01:00:: 03000725 1 1 -evolutionary_trend%1:09:00:: 06197958 1 0 -evolutionism%1:09:00:: 06109227 1 0 -evolutionist%1:18:00:: 10067867 1 0 -evolve%2:30:00:: 00251064 2 3 -evolve%2:30:03:: 00545557 3 1 -evolve%2:36:00:: 01738597 1 3 -ew%1:04:00:: 00954751 1 0 -ewe%1:05:00:: 02411999 3 0 -ewe%1:10:00:: 06997587 2 0 -ewe%1:18:00:: 09705287 1 0 -ewenki%1:10:00:: 06928610 2 0 -ewenki%1:18:00:: 09644008 1 0 -ewer%1:06:00:: 03950228 1 0 -ewing's_sarcoma%1:26:00:: 14240587 1 0 -ewing's_tumor%1:26:00:: 14240587 1 0 -ewing's_tumour%1:26:00:: 14240587 1 0 -ex%1:10:00:: 06833663 3 0 -ex%1:18:00:: 10020533 2 0 -ex%1:18:01:: 10194231 1 0 -ex%5:00:00:unfashionable:00 00974159 1 0 -ex-boyfriend%1:18:00:: 09871580 1 0 -ex-directory%5:00:00:unlisted:00 01418486 1 0 -ex-gambler%1:18:00:: 09617435 1 1 -ex-husband%1:18:00:: 10194231 1 1 -ex-mayor%1:18:00:: 09617508 1 1 -ex-president%1:18:00:: 09618880 1 0 -ex-serviceman%1:18:00:: 10749353 1 0 -ex-spouse%1:18:00:: 10074249 1 0 -ex-wife%1:18:00:: 10020533 1 0 -ex_cathedra%4:02:00:: 00084612 1 0 -ex_gratia%5:00:00:optional:00 00847715 1 0 -ex_libris%1:10:00:: 07272416 1 0 -ex_officio%4:02:00:: 00252499 1 0 -ex_officio%5:00:00:official:00 01632988 1 0 -ex_post_facto%5:00:00:retrospective:00 01884744 1 0 -ex_tempore%4:02:00:: 00259467 1 0 -ex_vivo%3:00:00:: 01359277 1 0 -ex_vivo%4:02:00:: 00513929 1 0 -exabit%1:23:00:: 13631194 1 0 -exabyte%1:23:00:: 13630864 2 0 -exabyte%1:23:01:: 13631037 1 0 -exacerbate%2:30:00:: 00208210 1 2 -exacerbate%2:37:00:: 01820901 2 0 -exacerbating%5:00:00:intensifying:00 01340422 1 0 -exacerbation%1:04:00:: 01222157 2 0 -exacerbation%1:04:01:: 00374835 1 3 -exact%2:32:00:: 01017826 1 1 -exact%2:32:01:: 00756076 2 0 -exact%3:00:00:: 00914421 1 8 -exact%5:00:00:correct:00 00631798 2 7 -exacta%1:04:00:: 00507025 1 0 -exacting%3:00:00:: 00985608 1 0 -exacting%5:00:01:demanding:01 00710585 3 0 -exacting%5:00:02:demanding:01 00711308 2 0 -exaction%1:04:00:: 01061526 1 0 -exactitude%1:07:00:: 04803430 1 0 -exactly%4:02:01:: 00158309 1 37 -exactly%4:02:02:: 00368287 3 0 -exactly%4:02:04:: 00368663 2 2 -exactness%1:07:00:: 04803430 1 0 -exacum%1:20:00:: 12292285 1 0 -exacum_affine%1:20:00:: 12292463 1 0 -exaeretodon%1:05:00:: 01720867 1 0 -exaggerate%2:32:00:: 00839834 1 14 -exaggerate%2:41:00:: 02568999 2 2 -exaggerated%5:00:00:immoderate:00 01533806 1 2 -exaggerated%5:00:02:increased:00 00881177 2 0 -exaggeratedly%4:02:00:: 00189514 1 0 -exaggeration%1:04:00:: 00367552 2 1 -exaggeration%1:10:00:: 06758835 3 0 -exaggeration%1:10:01:: 07106502 1 1 -exalt%2:30:00:: 00544936 4 0 -exalt%2:32:00:: 00860620 1 2 -exalt%2:37:00:: 01812720 3 0 -exalt%2:37:01:: 01812324 2 1 -exaltation%1:04:01:: 01029114 4 0 -exaltation%1:14:00:: 07991994 3 0 -exaltation%1:15:00:: 08685019 2 0 -exaltation%1:26:00:: 13986372 1 0 -exalted%5:00:00:noble:01 01588619 1 2 -exalting%5:00:00:inspiring:00 01323207 1 0 -exam%1:10:00:: 07197021 1 0 -exam_paper%1:10:00:: 07199328 1 0 -examen%1:09:00:: 05787005 1 0 -examen%1:09:02:: 05734288 2 0 -examination%1:04:00:: 00635850 1 15 -examination%1:04:02:: 00636461 5 0 -examination%1:09:03:: 05787005 4 0 -examination%1:10:00:: 07197021 2 1 -examination%1:10:01:: 07193958 3 1 -examination_paper%1:10:00:: 07199328 1 0 -examine%2:31:00:: 00644583 1 17 -examine%2:32:00:: 00786816 4 2 -examine%2:32:01:: 00788564 3 7 -examine%2:39:00:: 02131279 2 11 -examine%2:41:00:: 02531625 5 1 -examinee%1:18:00:: 10703692 1 0 -examiner%1:18:00:: 10067968 2 0 -examiner%1:18:01:: 10068234 1 0 -example%1:04:00:: 00729919 6 0 -example%1:09:00:: 05820620 1 45 -example%1:09:01:: 05925366 3 5 -example%1:09:02:: 05937112 2 13 -example%1:10:00:: 06672752 4 2 -example%1:11:00:: 07308889 5 0 -exanimate%5:00:00:dead:01 00097768 1 0 -exanthem%1:26:00:: 14321814 1 0 -exanthema%1:26:00:: 14321814 1 0 -exanthema_subitum%1:26:00:: 14123759 1 0 -exarch%1:18:00:: 10068425 3 0 -exarch%1:18:01:: 10068537 2 0 -exarch%1:18:02:: 10068682 1 0 -exarchate%1:15:00:: 08551296 1 0 -exasperate%2:30:00:: 00208210 3 0 -exasperate%2:37:00:: 01820901 1 1 -exasperate%2:37:01:: 01786906 2 0 -exasperated%5:00:00:displeased:00 01806483 1 2 -exasperating%5:00:00:displeasing:00 01809245 1 1 -exasperating%5:00:00:intensifying:00 01340422 2 0 -exasperatingly%4:02:00:: 00085253 1 0 -exasperation%1:04:00:: 00425451 2 0 -exasperation%1:12:00:: 07518878 1 6 -exaugural%3:00:00:: 01290947 1 0 -exbibit%1:23:00:: 13631355 1 0 -exbibyte%1:23:00:: 13630864 1 0 -excalibur%1:06:00:: 03302030 1 0 -excavate%2:35:00:: 01313923 2 0 -excavate%2:35:01:: 01310660 4 0 -excavate%2:35:02:: 01311378 3 0 -excavate%2:39:00:: 02143539 1 0 -excavation%1:04:00:: 00922327 4 0 -excavation%1:04:01:: 00941974 1 2 -excavation%1:06:00:: 03302121 3 0 -excavation%1:15:00:: 08550076 2 0 -excavator%1:06:00:: 03996416 2 0 -excavator%1:18:00:: 09617292 1 0 -exceed%2:33:00:: 01105639 3 4 -exceed%2:42:00:: 02669081 2 8 -exceed%2:42:01:: 02669477 1 21 -exceedance%1:07:00:: 05092635 1 0 -exceeding%5:00:00:extraordinary:00 01676026 1 0 -exceedingly%4:02:00:: 00046299 1 2 -excel%2:42:00:: 02673965 1 2 -excel_at%2:42:00:: 02674447 1 0 -excellence%1:07:00:: 04728786 1 2 -excellence%1:09:00:: 05851744 2 0 -excellency%1:09:00:: 05851744 2 0 -excellency%1:18:00:: 10068928 1 0 -excellent%5:00:00:superior:02 02343110 1 17 -excellently%4:02:00:: 00182316 1 1 -excelsior%1:27:00:: 14976634 1 1 -except%2:31:00:: 00615774 2 1 -except%2:32:00:: 00807941 1 1 -exception%1:09:00:: 05707269 1 18 -exception%1:09:01:: 05821246 2 8 -exception%1:10:00:: 07209533 3 0 -exceptionable%5:00:00:unacceptable:00 00018850 1 0 -exceptional%5:00:00:abnormal:03 01598859 3 0 -exceptional%5:00:00:extraordinary:00 01676026 1 3 -exceptional%5:00:00:uncommon:00 00488187 2 2 -exceptionally%4:02:00:: 00178793 1 2 -excerpt%1:10:00:: 06400510 1 0 -excerpt%2:31:00:: 00677021 1 0 -excerption%1:10:00:: 06400510 1 0 -excess%1:04:00:: 01073655 4 0 -excess%1:07:00:: 05118437 2 2 -excess%1:07:02:: 05119714 1 4 -excess%1:26:00:: 14452294 3 0 -excess%5:00:00:unnecessary:00 01581305 1 4 -excessive%5:00:00:immoderate:00 01533974 1 7 -excessive%5:00:00:unrestrained:00 02000968 2 0 -excessively%4:02:00:: 00047392 1 0 -excessiveness%1:07:00:: 05118437 1 0 -exchange%1:04:00:: 01093085 8 0 -exchange%1:04:01:: 00196485 9 0 -exchange%1:04:02:: 01166258 3 3 -exchange%1:04:03:: 01109467 4 3 -exchange%1:04:04:: 00167063 11 0 -exchange%1:04:05:: 00167278 10 0 -exchange%1:04:06:: 01166517 7 0 -exchange%1:06:00:: 03302487 6 0 -exchange%1:06:01:: 02994858 5 1 -exchange%1:10:00:: 07134706 2 3 -exchange%1:19:00:: 11409538 1 14 -exchange%2:30:00:: 00161225 2 2 -exchange%2:30:01:: 00140751 3 1 -exchange%2:30:02:: 00161987 6 0 -exchange%2:40:00:: 02257370 1 10 -exchange%2:40:02:: 02257767 5 0 -exchange%2:41:00:: 02393489 4 0 -exchange_premium%1:21:00:: 13324297 1 0 -exchange_rate%1:21:00:: 13326620 1 0 -exchange_traded_fund%1:21:00:: 13359032 1 0 -exchange_transfusion%1:04:00:: 00323766 1 0 -exchangeability%1:07:00:: 04735929 1 0 -exchangeable%3:00:00:: 00917613 1 0 -exchangeable%3:00:04:: 00916706 2 0 -exchangeable%5:00:00:replaceable:00 01978532 3 0 -exchanged%5:00:00:changed:00 00354833 1 0 -exchanger%1:18:00:: 10069120 1 0 -exchequer%1:21:00:: 13356985 1 0 -excise%1:21:00:: 13316332 1 0 -excise%2:30:02:: 00472871 3 0 -excise%2:35:00:: 01549420 1 1 -excise%2:40:00:: 02307882 2 0 -excise_tax%1:21:00:: 13316332 1 1 -exciseman%1:18:00:: 10693052 1 0 -excision%1:04:00:: 00393369 2 0 -excision%1:04:01:: 00115803 4 0 -excision%1:04:02:: 00208277 3 0 -excision%1:10:00:: 06428216 1 0 -excitability%1:07:00:: 04628850 2 0 -excitability%1:09:00:: 05653710 1 4 -excitable%3:00:00:: 00918779 1 0 -excitable%5:00:00:sensitive:01 02104277 2 0 -excitable_area%1:08:00:: 05489640 1 0 -excitableness%1:07:00:: 04628850 1 0 -excitant%1:06:00:: 04320126 1 0 -excitant%5:00:00:stimulative:00 02309971 1 0 -excitation%1:04:00:: 01260867 3 0 -excitation%1:26:00:: 14036356 2 0 -excitation%1:26:01:: 14037011 1 0 -excitative%5:00:00:stimulative:00 02309971 1 0 -excitatory%5:00:00:stimulative:00 02309971 1 4 -excite%2:30:00:: 00503164 2 4 -excite%2:30:01:: 00558963 8 0 -excite%2:30:02:: 00559102 7 0 -excite%2:37:00:: 01761706 6 0 -excite%2:37:01:: 01762283 5 0 -excite%2:37:02:: 01772960 1 8 -excite%2:37:03:: 01762528 4 0 -excite%2:39:00:: 02116118 3 0 -excited%3:00:00:: 00919542 2 3 -excited%5:00:00:agitated:00 00085630 1 4 -excited%5:00:00:reactive:00 01928926 4 0 -excited%5:00:00:wild:02 02390724 3 2 -excitedly%4:02:00:: 00153977 1 8 -excitement%1:04:00:: 01260867 3 4 -excitement%1:04:02:: 00554300 4 2 -excitement%1:12:00:: 07528212 1 9 -excitement%1:26:01:: 14037011 2 5 -exciting%3:00:00:: 00921014 1 12 -exciting%5:00:00:stimulating:00 02306763 2 3 -excitingly%4:02:00:: 00332714 1 0 -exclaim%2:32:00:: 00912048 1 8 -exclaim%2:32:01:: 00977336 2 5 -exclaiming%1:10:00:: 07125523 1 1 -exclamation%1:10:00:: 07125523 1 7 -exclamation%1:10:01:: 07102802 3 0 -exclamation%1:10:02:: 07209868 2 0 -exclamation_mark%1:10:00:: 06843017 1 0 -exclamation_point%1:10:00:: 06843017 1 0 -exclamatory%5:00:00:forceful:00 00842041 1 0 -exclude%2:31:01:: 00615774 1 15 -exclude%2:32:01:: 00796588 4 2 -exclude%2:35:00:: 01468576 5 0 -exclude%2:41:00:: 02449340 2 7 -exclude%2:42:00:: 02633714 3 3 -exclusion%1:04:01:: 00206927 4 0 -exclusion%1:09:00:: 05707269 3 0 -exclusion%1:26:00:: 13935227 1 1 -exclusion%1:26:01:: 14413993 2 0 -exclusion_principle%1:09:00:: 05886939 1 0 -exclusionary_rule%1:10:00:: 06654074 1 0 -exclusive%1:10:00:: 06683183 1 0 -exclusive%3:00:00:: 01862386 2 0 -exclusive%5:00:00:concentrated:00 00539389 3 0 -exclusive%5:00:00:unshared:00 02152985 1 6 -exclusive_right%1:07:00:: 05178715 1 0 -exclusively%4:02:00:: 00008600 1 7 -exclusiveness%1:07:00:: 04889337 1 2 -excogitate%2:31:00:: 00630380 2 0 -excogitate%2:36:00:: 01632411 1 0 -excogitation%1:09:00:: 05792842 1 0 -excogitation%1:09:01:: 05633385 2 0 -excogitative%5:00:00:thoughtful:00 02420390 1 0 -excogitator%1:18:00:: 10068804 1 0 -excommunicate%2:32:00:: 01030397 1 2 -excommunicate%2:41:00:: 02402112 2 0 -excommunication%1:04:00:: 00208277 2 0 -excommunication%1:26:00:: 14413993 1 0 -excoriate%2:32:00:: 00864159 1 1 -excoriate%2:35:00:: 01253808 2 0 -excoriation%1:10:00:: 07233214 2 0 -excoriation%1:26:00:: 14286549 1 0 -excrement%1:27:00:: 14853947 1 0 -excrescence%1:08:00:: 05603650 2 0 -excrescence%1:25:00:: 13894434 1 0 -excrescent%3:01:00:: 02723904 1 0 -excreta%1:27:00:: 14853947 1 0 -excrete%2:29:00:: 00072989 1 0 -excreting%1:22:00:: 13473097 1 0 -excretion%1:22:00:: 13473097 1 1 -excretion%1:27:00:: 14853947 2 0 -excretory%3:01:00:: 02724050 1 0 -excretory_organ%1:08:00:: 05333259 1 0 -excretory_product%1:27:00:: 14853947 1 0 -excruciate%2:29:00:: 00071178 2 0 -excruciate%2:37:00:: 01802689 1 0 -excruciating%5:00:00:painful:00 01711724 1 1 -excruciatingly%4:02:00:: 00261389 1 0 -excruciation%1:04:00:: 00422551 2 0 -excruciation%1:26:00:: 14324274 1 0 -exculpate%2:32:00:: 00904046 1 0 -exculpated%5:00:00:innocent:00 01320184 1 0 -exculpation%1:04:00:: 01227691 2 0 -exculpation%1:10:00:: 06741305 1 0 -exculpatory%3:00:00:: 00923321 1 0 -excursion%1:04:00:: 00311809 1 1 -excursion%1:04:01:: 00310201 2 0 -excursion_rate%1:21:00:: 13326772 1 0 -excursionist%1:18:00:: 10596689 1 0 -excursive%5:00:00:indirect:02 00768397 1 0 -excursus%1:10:00:: 06600684 1 1 -excusable%3:00:00:: 01722039 1 0 -excusable%5:00:00:pardonable:00 01721197 2 0 -excusably%4:02:00:: 00333096 1 0 -excusatory%3:00:00:: 01631830 1 0 -excuse%1:09:00:: 05821102 3 0 -excuse%1:10:00:: 06741305 1 10 -excuse%1:10:01:: 06626446 2 0 -excuse%2:32:00:: 00905852 1 2 -excuse%2:32:01:: 00894738 4 1 -excuse%2:32:02:: 00893167 6 0 -excuse%2:32:03:: 00893435 3 2 -excuse%2:32:04:: 00893878 2 2 -excuse%2:32:05:: 00894221 5 0 -excused%5:00:00:exempt:00 02365776 1 0 -excuser%1:18:00:: 10399299 1 0 -exec%1:14:00:: 08128837 1 0 -execrable%5:00:00:cursed:00 00670635 3 0 -execrable%5:00:00:hateful:00 01460679 2 0 -execrable%5:00:00:inferior:02 02347086 1 0 -execrate%2:32:00:: 00864910 2 0 -execrate%2:37:00:: 01774426 1 0 -execration%1:09:00:: 05811884 3 0 -execration%1:10:00:: 07233634 2 0 -execration%1:12:00:: 07503430 1 0 -executability%1:07:00:: 05203207 1 0 -executable%5:00:00:possible:00 01822563 1 0 -executant%1:18:00:: 10069296 1 0 -execute%2:32:00:: 00997659 7 0 -execute%2:36:00:: 01640855 3 1 -execute%2:36:01:: 01712704 6 0 -execute%2:41:00:: 02483267 1 2 -execute%2:41:01:: 02484208 2 1 -execute%2:41:03:: 02563860 4 0 -execute%2:41:04:: 02563327 5 0 -executed%5:00:00:dead:01 00097452 1 0 -executing%1:04:00:: 01163779 1 0 -execution%1:04:00:: 01163779 1 4 -execution%1:04:01:: 00220522 7 0 -execution%1:04:02:: 00097504 2 2 -execution%1:04:03:: 01127379 6 0 -execution%1:10:00:: 06553846 5 0 -execution%1:10:01:: 06554078 4 0 -execution%1:22:00:: 13477462 3 0 -execution_of_instrument%1:10:00:: 06554078 1 0 -execution_sale%1:10:00:: 06528557 1 0 -execution_speed%1:07:00:: 05061619 1 0 -executioner%1:18:00:: 10069427 1 2 -executive%1:14:01:: 08165455 2 1 -executive%1:18:00:: 10069645 1 3 -executive%1:18:01:: 09770472 3 0 -executive%3:01:00:: 03017922 1 2 -executive_agency%1:14:00:: 08123696 1 0 -executive_branch%1:14:00:: 08356074 1 1 -executive_clemency%1:26:00:: 13945495 1 0 -executive_council%1:14:00:: 08311409 1 0 -executive_department%1:14:00:: 08123167 1 0 -executive_director%1:18:00:: 10069645 1 0 -executive_office_of_the_president%1:14:00:: 08356074 1 0 -executive_officer%1:18:00:: 10069869 1 0 -executive_program%1:10:00:: 06580351 1 0 -executive_routine%1:10:00:: 06584376 1 0 -executive_secretary%1:18:00:: 10069981 1 1 -executive_session%1:10:00:: 07147116 1 0 -executive_vice_president%1:18:00:: 10070108 1 0 -executor%1:18:00:: 10070219 1 2 -executor-heir_relation%1:24:00:: 13839468 1 0 -executrix%1:18:00:: 10070377 1 0 -exegesis%1:10:00:: 07171940 1 0 -exegete%1:18:00:: 10070449 1 0 -exegetic%3:01:00:: 02724166 1 0 -exegetical%3:01:00:: 02724166 1 0 -exemplar%1:09:00:: 05925366 1 1 -exemplary%5:00:00:dissuasive:00 01771124 3 0 -exemplary%5:00:00:typical:00 02469119 2 0 -exemplary%5:00:00:worthy:00 02586446 1 0 -exemplary_damages%1:21:00:: 13291831 1 0 -exemplification%1:09:00:: 05765901 2 0 -exemplification%1:10:00:: 06880533 1 0 -exemplify%2:32:00:: 01021128 2 2 -exemplify%2:42:00:: 02723733 1 2 -exemplifying%5:00:00:informative:00 01305123 1 0 -exempt%2:32:00:: 00893878 2 0 -exempt%2:41:00:: 02564146 1 1 -exempt%3:00:00:: 02365397 1 2 -exempt%3:00:02:: 02400929 2 0 -exemption%1:04:00:: 00213903 3 0 -exemption%1:21:00:: 13310985 2 0 -exemption%1:26:00:: 14528873 1 4 -exenterate%2:30:00:: 00176618 1 0 -exenteration%1:04:00:: 00673710 1 0 -exercise%1:04:00:: 00624738 1 26 -exercise%1:04:01:: 00729919 4 2 -exercise%1:04:02:: 00894552 3 2 -exercise%1:04:03:: 00947128 2 3 -exercise%1:11:01:: 07454452 5 0 -exercise%2:29:00:: 00099721 4 3 -exercise%2:29:01:: 00100551 3 3 -exercise%2:31:00:: 00606093 5 0 -exercise%2:34:00:: 01166093 1 14 -exercise%2:41:00:: 02568672 2 11 -exercise_bike%1:06:00:: 03302671 1 0 -exercise_device%1:06:00:: 03302790 1 0 -exercise_set%1:04:00:: 00625699 1 0 -exerciser%1:06:00:: 03472232 1 0 -exercising%1:04:00:: 00624738 1 1 -exercising_weight%1:06:00:: 04571292 1 0 -exercycle%1:06:00:: 03302671 1 0 -exergonic%3:00:00:: 00291848 1 0 -exert%2:34:00:: 01166093 1 12 -exert%2:40:00:: 02204564 2 7 -exert%2:41:00:: 02371811 3 1 -exertion%1:04:00:: 00621627 1 6 -exfiltration_operation%1:04:00:: 00983811 1 0 -exfoliate%2:30:00:: 00232101 5 0 -exfoliate%2:35:00:: 01513838 2 0 -exfoliate%2:35:01:: 01263336 3 0 -exfoliate%2:35:02:: 01580250 1 0 -exfoliate%2:35:03:: 01260159 4 0 -exfoliation%1:17:00:: 09425607 2 0 -exfoliation%1:19:00:: 11445753 1 0 -exhalation%1:04:00:: 00835267 2 0 -exhalation%1:27:00:: 14842091 1 0 -exhale%2:29:00:: 00004227 1 2 -exhale%2:29:01:: 00004605 2 0 -exhaust%1:06:00:: 03302938 2 0 -exhaust%1:27:00:: 14837364 1 0 -exhaust%2:29:00:: 00075421 1 4 -exhaust%2:29:02:: 00104868 5 0 -exhaust%2:30:00:: 00450997 4 0 -exhaust%2:34:00:: 01157517 2 3 -exhaust%2:40:00:: 02280869 3 1 -exhaust_fan%1:06:00:: 03303217 1 0 -exhaust_fumes%1:27:00:: 14837364 1 0 -exhaust_hood%1:06:00:: 03531546 1 0 -exhaust_manifold%1:06:00:: 03303333 1 0 -exhaust_pipe%1:06:00:: 03303510 1 0 -exhaust_system%1:06:00:: 03302938 1 0 -exhaust_valve%1:06:00:: 03303669 1 0 -exhausted%3:00:00:: 00926141 2 0 -exhausted%5:00:00:drained:00 01088881 3 0 -exhausted%5:00:00:tired:00 02433451 1 6 -exhaustible%3:00:00:: 00925460 1 0 -exhaustible%5:00:00:finite:00 01006967 2 0 -exhausting%5:00:00:debilitating:00 01358231 1 1 -exhausting%5:00:00:effortful:00 00837249 2 0 -exhaustion%1:04:00:: 00356621 3 0 -exhaustion%1:11:00:: 07331210 2 0 -exhaustion%1:26:00:: 14017206 1 2 -exhaustive%5:00:00:complete:00 00522463 1 1 -exhaustively%4:02:00:: 00057257 1 1 -exhibit%1:04:00:: 00521209 2 0 -exhibit%1:10:00:: 06734322 1 1 -exhibit%2:38:00:: 01924712 4 0 -exhibit%2:39:00:: 02148788 3 4 -exhibit%2:39:01:: 02140033 2 11 -exhibit%2:42:00:: 02631856 1 13 -exhibition%1:04:00:: 00522145 1 8 -exhibition%1:14:00:: 08407619 2 4 -exhibition_area%1:06:00:: 03303831 1 0 -exhibition_game%1:04:00:: 00456899 1 1 -exhibition_hall%1:06:00:: 03303831 1 0 -exhibition_season%1:28:00:: 15240733 1 0 -exhibitioner%1:18:00:: 10070563 1 0 -exhibitionism%1:04:00:: 00737894 2 0 -exhibitionism%1:10:01:: 06889701 1 0 -exhibitionist%1:18:00:: 10070711 2 0 -exhibitionist%1:18:01:: 10070942 1 0 -exhibitionistic%5:00:00:unconcealed:00 02090823 1 0 -exhibitor%1:18:00:: 10070563 1 0 -exhilarate%2:37:00:: 01812324 1 0 -exhilarated%5:00:00:elated:00 00705336 1 0 -exhilarating%5:00:00:exciting:00 00921538 2 0 -exhilarating%5:00:00:invigorating:00 01357342 1 1 -exhilaration%1:12:00:: 07528212 1 0 -exhort%2:32:00:: 00765649 2 0 -exhort%2:32:01:: 00858781 1 0 -exhortation%1:10:00:: 07246036 2 0 -exhortation%1:10:01:: 07139700 1 2 -exhortative%5:00:00:encouraging:00 00866735 1 0 -exhortatory%5:00:00:encouraging:00 00866735 1 0 -exhumation%1:04:00:: 00044900 1 1 -exhume%2:41:00:: 02457058 1 0 -exigency%1:11:00:: 07417405 2 0 -exigency%1:26:00:: 14033054 1 1 -exigent%5:00:00:demanding:01 00710585 2 0 -exigent%5:00:00:imperative:00 00712877 1 0 -exiguity%1:07:00:: 05113462 1 0 -exiguous%5:00:00:meager:00 00107017 1 0 -exile%1:04:00:: 00207761 3 0 -exile%1:18:00:: 10071139 2 0 -exile%1:18:01:: 10071332 1 0 -exile%2:41:00:: 02499312 1 1 -exilic%3:01:00:: 02724308 1 0 -exist%2:42:00:: 02603699 1 100 -exist%2:42:01:: 02616713 2 5 -existence%1:17:00:: 09466280 2 1 -existence%1:26:00:: 13954253 1 51 -existent%3:00:00:: 00927017 1 1 -existent%3:00:02:: 01932973 2 0 -existent%3:00:04:: 00043765 3 0 -existential%3:01:00:: 02724483 3 0 -existential%3:01:01:: 02724630 2 0 -existential%5:00:00:empirical:00 00859632 1 2 -existential_operator%1:10:00:: 06302755 1 0 -existential_philosopher%1:18:00:: 10071557 1 0 -existential_philosophy%1:09:00:: 05970755 1 0 -existential_quantifier%1:10:00:: 06302755 1 0 -existentialism%1:09:00:: 05970755 1 0 -existentialist%1:18:00:: 10071557 1 1 -existentialist%3:01:00:: 02724759 1 0 -existentialist_philosopher%1:18:00:: 10071557 1 0 -existentialist_philosophy%1:09:00:: 05970755 1 0 -existing%3:00:00:: 00927017 2 3 -existing%5:00:00:present:01 01731786 1 19 -existing%5:00:00:present:02 01847101 3 2 -exit%1:04:00:: 00058519 3 0 -exit%1:06:00:: 03303965 1 1 -exit%1:11:00:: 07333649 2 0 -exit%2:30:00:: 00358431 3 0 -exit%2:33:00:: 01078689 2 0 -exit%2:38:00:: 02015598 1 0 -exit_poll%1:09:00:: 05801286 1 0 -exmoor%1:05:01:: 02413824 1 0 -exmoor%1:05:02:: 02382850 2 0 -exobiology%1:09:00:: 06071722 1 0 -exocarp%1:20:00:: 11684499 1 0 -exocentric%3:00:00:: 00870827 1 0 -exocet%1:06:00:: 03304197 1 0 -exocoetidae%1:05:00:: 02550296 1 0 -exocrine%1:08:00:: 05328867 1 0 -exocrine%3:01:00:: 02915381 1 0 -exocrine_gland%1:08:00:: 05328867 1 0 -exocycloida%1:05:00:: 02319423 1 0 -exode%1:10:00:: 07018211 1 0 -exoderm%1:05:00:: 01463739 1 0 -exodontia%1:09:00:: 06048373 1 0 -exodontic%3:01:00:: 02916403 1 0 -exodontics%1:09:00:: 06048373 1 0 -exodontist%1:18:00:: 10071912 1 0 -exodus%1:04:00:: 00060414 1 1 -exodus%1:10:00:: 06432715 2 0 -exoergic%3:00:00:: 00872347 1 0 -exoergic_reaction%1:22:00:: 13477691 1 0 -exogamic%3:00:01:: 00871255 2 0 -exogamic%3:00:02:: 00872010 1 0 -exogamous%3:00:01:: 00871255 2 0 -exogamous%3:00:02:: 00872010 1 0 -exogamy%1:26:00:: 13965274 1 0 -exogen%1:20:00:: 11666854 1 0 -exogenic%3:00:00:: 00873251 1 0 -exogenous%3:00:00:: 00873251 1 0 -exogenous_depression%1:26:00:: 14390249 1 0 -exogenous_obesity%1:07:00:: 05000717 1 0 -exomphalos%1:26:00:: 14296254 1 0 -exon%1:27:00:: 14830992 1 0 -exonerate%2:32:00:: 00904046 1 1 -exonerated%5:00:00:innocent:00 01320184 1 0 -exoneration%1:04:00:: 01241331 2 0 -exoneration%1:26:00:: 14575399 1 0 -exonerative%5:00:00:exculpatory:00 00923495 1 0 -exonuclease%1:27:00:: 14606137 1 0 -exophthalmic_goiter%1:26:00:: 14121058 1 0 -exophthalmos%1:26:00:: 14313017 1 0 -exopterygota%1:05:00:: 02232408 1 0 -exorbitance%1:07:00:: 05119096 1 0 -exorbitant%5:00:00:immoderate:00 01534282 1 0 -exorbitantly%4:02:00:: 00333613 1 0 -exorcise%2:35:00:: 01527877 1 1 -exorciser%1:18:00:: 10072054 1 0 -exorcism%1:09:00:: 05978472 1 0 -exorcist%1:18:00:: 10072054 2 0 -exorcist%1:18:01:: 10072187 1 0 -exorcize%2:35:00:: 01527877 1 0 -exordium%1:10:00:: 06397171 1 0 -exoskeleton%1:08:00:: 05586759 1 0 -exosphere%1:17:00:: 09277432 1 0 -exostosis%1:26:00:: 14234317 1 0 -exoteric%3:00:00:: 00900478 1 0 -exotherm%1:27:00:: 14883954 1 0 -exothermal%3:00:00:: 00872906 1 0 -exothermic%3:00:00:: 00872906 1 0 -exothermic_reaction%1:22:00:: 13477812 1 0 -exotic%5:00:00:foreign:01 01035007 1 2 -exotic%5:00:00:strange:00 00968730 2 0 -exotic_belly_dancer%1:18:00:: 09849462 1 0 -exotic_dancer%1:18:03:: 09849462 2 0 -exotic_dancer%1:18:04:: 10664340 1 1 -exoticism%1:07:00:: 04799612 1 0 -exoticness%1:07:00:: 04799612 1 0 -exotism%1:07:00:: 04799612 1 0 -exotoxin%1:27:00:: 15035832 1 0 -exotropia%1:26:00:: 14557573 1 0 -expand%2:30:01:: 00310386 4 4 -expand%2:30:02:: 00264386 5 3 -expand%2:30:07:: 00257269 2 6 -expand%2:30:09:: 00540946 7 0 -expand%2:30:12:: 00541163 3 4 -expand%2:32:10:: 00955601 6 0 -expand%2:38:00:: 02077148 1 7 -expandable%5:00:00:elastic:00 00844263 2 0 -expandable%5:00:00:expansive:00 00947264 1 0 -expanded%3:00:01:: 00554780 1 3 -expandible%5:00:00:elastic:00 00844263 2 0 -expandible%5:00:00:expansive:00 00947264 1 0 -expanding_upon%1:04:00:: 00371314 1 0 -expanse%1:07:00:: 05128519 2 1 -expanse%1:07:01:: 05127959 1 2 -expanse%1:17:00:: 09277538 3 0 -expansible%5:00:00:elastic:00 00844263 2 0 -expansible%5:00:00:expansive:00 00947264 1 0 -expansile%5:00:00:elastic:00 00844263 1 0 -expansion%1:04:00:: 00365709 1 10 -expansion%1:04:01:: 00371314 4 0 -expansion%1:10:00:: 07172756 3 0 -expansion%1:24:00:: 13784366 2 0 -expansion_bit%1:06:00:: 03304323 1 0 -expansion_bolt%1:06:00:: 03304465 1 0 -expansion_slot%1:06:00:: 04243727 1 0 -expansionism%1:09:00:: 05961608 1 0 -expansionist%3:01:00:: 02940292 1 0 -expansive%3:00:00:: 00946499 1 0 -expansive%5:00:00:communicative:00 00496938 4 0 -expansive%5:00:00:euphoric:00 00909220 3 0 -expansive%5:00:00:impressive:00 01284544 2 0 -expansive_bit%1:06:00:: 03304323 1 0 -expansively%4:02:00:: 00324589 2 0 -expansively%4:02:01:: 00504718 1 1 -expansiveness%1:07:01:: 04651009 2 1 -expansiveness%1:07:02:: 04729710 1 1 -expansivity%1:07:01:: 04651009 3 0 -expansivity%1:07:02:: 04729710 2 0 -expansivity%1:23:00:: 13588625 1 0 -expat%1:18:00:: 10071332 1 0 -expatiate%2:32:00:: 00955601 1 0 -expatiation%1:10:00:: 07139151 1 0 -expatriate%1:18:00:: 10071332 1 0 -expatriate%2:30:01:: 00416399 2 0 -expatriate%2:41:00:: 02499312 1 0 -expatriation%1:04:00:: 00207761 1 0 -expatriation%1:04:01:: 00056087 2 0 -expect%2:29:00:: 00059019 6 0 -expect%2:29:02:: 00059376 5 0 -expect%2:31:00:: 00719734 1 204 -expect%2:31:01:: 00720063 3 12 -expect%2:31:05:: 00592702 4 0 -expect%2:32:00:: 00755745 2 30 -expectable%5:00:00:expected:00 00930022 1 1 -expectancy%1:09:00:: 05951323 2 1 -expectancy%1:12:00:: 07511080 1 1 -expectant%5:00:00:hopeful:00 01228797 1 3 -expectant%5:00:00:pregnant:00 00173391 2 0 -expectantly%4:02:00:: 00246077 1 3 -expectation%1:09:00:: 05944958 1 5 -expectation%1:09:01:: 06024230 4 0 -expectation%1:12:00:: 07510923 3 0 -expectation%1:26:00:: 14486122 2 4 -expected%3:00:00:: 00929567 1 6 -expected_value%1:09:00:: 06024230 1 0 -expectedness%1:07:00:: 04795252 2 0 -expectedness%1:26:00:: 14501375 1 0 -expectorant%1:06:00:: 03304605 1 0 -expectorate%2:29:00:: 00006238 2 0 -expectorate%2:30:03:: 00576228 1 0 -expectoration%1:04:00:: 00118552 2 0 -expectoration%1:22:00:: 13477934 1 0 -expectorator%1:06:00:: 03304605 2 0 -expectorator%1:18:00:: 10636874 1 0 -expedience%1:07:00:: 05158431 1 0 -expedience%1:07:01:: 04835488 2 0 -expediency%1:07:00:: 05158431 1 0 -expedient%1:04:00:: 00177448 1 0 -expedient%3:00:00:: 00931555 1 1 -expedient%5:00:00:politic:00 01813733 2 0 -expediently%4:02:00:: 00333808 1 0 -expedite%2:41:00:: 02548893 1 2 -expedite%2:41:01:: 02438730 2 0 -expedition%1:04:00:: 00309647 3 3 -expedition%1:04:01:: 00968479 1 4 -expedition%1:04:02:: 00311809 4 1 -expedition%1:07:00:: 05059830 5 0 -expedition%1:14:00:: 08409130 2 3 -expeditionary%5:00:00:military:01 01517317 1 0 -expeditious%5:00:00:efficient:00 00840510 1 0 -expeditiously%4:02:00:: 00235843 1 0 -expeditiousness%1:07:00:: 05059830 1 0 -expel%2:29:00:: 00104868 4 0 -expel%2:33:00:: 01108951 3 0 -expel%2:41:00:: 02501738 1 3 -expel%2:41:01:: 02401809 2 0 -expelling%1:22:00:: 13466586 1 0 -expend%2:34:00:: 01158572 1 7 -expend%2:40:00:: 02267060 2 2 -expendable%3:00:00:: 00932695 1 1 -expendable%5:00:00:disposable:02 00777891 2 0 -expender%1:18:00:: 10635275 1 0 -expending%1:04:00:: 01122601 1 0 -expenditure%1:04:00:: 01122601 2 3 -expenditure%1:04:01:: 00356367 3 0 -expenditure%1:21:00:: 13275288 1 20 -expense%1:11:00:: 07420671 2 4 -expense%1:21:00:: 13275495 1 25 -expense%1:21:01:: 13277886 3 1 -expense%2:30:00:: 00315956 1 0 -expense_account%1:21:00:: 13411943 1 1 -expense_record%1:21:00:: 13404156 1 0 -expensive%3:00:00:: 00933154 1 13 -expensively%4:02:00:: 00334040 1 0 -expensiveness%1:07:00:: 05145891 1 0 -experience%1:09:00:: 05984584 2 48 -experience%1:09:01:: 05758059 1 52 -experience%1:11:00:: 07285403 3 28 -experience%2:30:00:: 00121046 5 0 -experience%2:31:00:: 00596644 2 10 -experience%2:37:00:: 01771535 4 5 -experience%2:39:00:: 02108026 3 8 -experience%2:39:01:: 02110220 1 18 -experienced%3:00:00:: 00935500 1 10 -experient%3:00:00:: 00935500 1 0 -experiential%3:01:00:: 02989601 1 3 -experiential%5:00:00:empirical:00 00859632 2 1 -experiment%1:04:00:: 00639556 1 59 -experiment%1:04:01:: 00785959 3 7 -experiment%1:09:00:: 05798043 2 12 -experiment%2:41:01:: 02532595 1 17 -experiment%2:41:02:: 02532886 2 0 -experimental%3:01:00:: 02940392 1 14 -experimental%5:00:01:empirical:00 00859949 2 3 -experimental%5:00:02:empirical:00 00860127 3 2 -experimental_condition%1:09:00:: 05798863 1 0 -experimental_extinction%1:09:00:: 05758692 1 0 -experimental_method%1:09:00:: 05660801 1 0 -experimental_procedure%1:04:00:: 00178024 1 0 -experimental_psychology%1:09:00:: 06139285 1 0 -experimental_variable%1:09:00:: 05858093 1 0 -experimentalism%1:09:00:: 06208409 2 0 -experimentalism%1:09:01:: 05961745 1 1 -experimentally%4:02:00:: 00085339 1 5 -experimentation%1:04:00:: 00639556 2 3 -experimentation%1:09:00:: 05798043 1 4 -experimenter%1:18:00:: 09617577 1 3 -experimenter%1:18:01:: 09617696 2 0 -experimenter_bias%1:09:00:: 06203222 1 0 -expert%1:18:00:: 09617867 1 20 -expert%5:00:00:skilled:00 02226162 1 2 -expert%5:00:05:skilled:00 02227946 2 0 -expert_witness%1:18:00:: 10072346 1 0 -expertise%1:09:00:: 05640729 1 2 -expertly%4:02:00:: 00214289 1 0 -expertness%1:09:00:: 05640729 1 0 -expiable%5:00:00:pardonable:00 01721319 1 0 -expiate%2:41:00:: 02520509 1 1 -expiation%1:04:00:: 00095121 2 0 -expiation%1:21:00:: 13292787 1 0 -expiative%3:01:00:: 02940509 1 0 -expiatory%3:01:00:: 02940509 1 0 -expiration%1:04:00:: 00835267 3 0 -expiration%1:11:00:: 07333649 2 0 -expiration%1:28:00:: 15268682 1 2 -expiratory%3:01:00:: 03110610 1 0 -expire%2:29:00:: 00004227 3 0 -expire%2:30:00:: 00358431 2 2 -expire%2:42:00:: 02684784 1 3 -expired%3:00:00:: 00937985 1 0 -expiry%1:11:00:: 07355491 2 0 -expiry%1:28:00:: 15268682 1 0 -explain%2:32:00:: 00939277 1 109 -explain%2:32:01:: 01065456 2 9 -explain%2:32:02:: 00893435 3 7 -explainable%5:00:00:explicable:00 00938979 1 0 -explanandum%1:10:00:: 06738823 1 0 -explanans%1:10:00:: 06739013 1 0 -explanation%1:09:00:: 05793000 2 8 -explanation%1:10:00:: 06738281 1 28 -explanation%1:10:01:: 07232421 3 0 -explanatory%5:00:00:instructive:00 01324683 1 1 -expletive%1:10:01:: 07125096 1 1 -expletive%1:10:02:: 07126228 2 0 -explicable%3:00:00:: 00938801 1 0 -explicandum%1:10:00:: 06738823 1 0 -explicate%2:32:00:: 00939277 1 0 -explicate%2:32:01:: 00925873 2 0 -explication%1:10:00:: 06743362 2 0 -explication%1:10:01:: 07232811 1 0 -explication_de_texte%1:10:00:: 06374834 1 0 -explicit%3:00:00:: 00940437 1 7 -explicit%5:00:00:literal:00 01418989 2 0 -explicit_definition%1:10:00:: 06745156 1 0 -explicitly%4:02:00:: 00367418 1 1 -explicitness%1:07:00:: 04822032 1 0 -explode%2:30:00:: 00306017 2 5 -explode%2:30:01:: 00306723 1 14 -explode%2:30:02:: 00157623 10 0 -explode%2:30:03:: 00306539 4 3 -explode%2:30:04:: 00306298 9 0 -explode%2:31:00:: 00719062 3 4 -explode%2:31:01:: 00665335 8 0 -explode%2:32:00:: 00862467 7 0 -explode%2:32:02:: 01055661 6 0 -explode%2:35:00:: 01565795 5 0 -explode_a_bombshell%2:31:00:: 00725563 1 0 -exploded%5:00:00:unconnected:00 00568658 1 0 -exploding_cucumber%1:20:00:: 12165758 1 0 -exploit%1:04:00:: 00036762 1 2 -exploit%2:34:00:: 01162754 1 8 -exploit%2:34:01:: 01164273 2 3 -exploit%2:41:00:: 02409148 3 0 -exploitation%1:04:00:: 00948206 1 2 -exploitation%1:04:01:: 00418903 2 2 -exploitative%5:00:00:consumptive:00 01867768 1 0 -exploitatory%5:00:00:consumptive:00 01867768 1 0 -exploited%3:00:00:: 00942693 1 0 -exploited%5:00:02:misused:00 02495687 2 0 -exploiter%1:18:00:: 10072546 1 0 -exploitive%5:00:00:consumptive:00 01867768 1 0 -exploration%1:04:00:: 00945777 2 4 -exploration%1:04:02:: 00310063 1 5 -exploration%1:09:00:: 05785311 3 2 -explorative%3:00:00:: 00877345 1 0 -exploratory%3:00:00:: 00877345 1 1 -exploratory_survey%1:04:00:: 00985106 1 0 -explore%2:31:00:: 00648224 1 14 -explore%2:31:01:: 00649481 2 4 -explore%2:31:02:: 00646271 3 2 -explore%2:31:03:: 00645939 4 0 -explorer%1:10:00:: 06571538 2 0 -explorer%1:18:00:: 10072708 1 3 -explorer's_gentian%1:20:00:: 12294542 1 0 -explosion%1:04:00:: 00377364 2 2 -explosion%1:04:01:: 00572706 7 0 -explosion%1:10:00:: 07116443 5 0 -explosion%1:10:01:: 07014854 6 0 -explosion%1:11:00:: 07308563 1 6 -explosion%1:11:01:: 07414068 3 0 -explosion%1:11:02:: 07383696 4 0 -explosive%1:06:00:: 03304730 1 0 -explosive%3:00:00:: 00474620 1 3 -explosive%5:00:00:sudden:00 01144009 3 0 -explosive%5:00:00:unstable:00 02292573 2 3 -explosive_charge%1:06:00:: 03008275 1 0 -explosive_compound%1:06:00:: 03305135 1 0 -explosive_detection_system%1:06:00:: 03305300 1 0 -explosive_device%1:06:00:: 03305522 1 0 -explosive_mixture%1:06:00:: 03305844 1 0 -explosive_trace_detection%1:06:00:: 03305953 1 0 -explosive_unit%1:23:00:: 13602922 1 0 -explosively%4:02:00:: 00334396 1 1 -explosively%4:02:01:: 00334516 2 0 -expo%1:14:00:: 08407619 1 0 -exponent%1:10:00:: 06812417 3 0 -exponent%1:18:00:: 09774783 1 0 -exponent%1:18:01:: 09618760 2 0 -exponential%1:24:00:: 13789462 1 0 -exponential%3:01:00:: 02965274 1 0 -exponential_curve%1:24:00:: 13789751 1 0 -exponential_decay%1:22:00:: 13478055 1 0 -exponential_equation%1:24:00:: 13789627 1 0 -exponential_expression%1:24:00:: 13789849 1 0 -exponential_function%1:24:00:: 13789462 1 1 -exponential_return%1:22:00:: 13478055 1 0 -exponential_series%1:24:00:: 13790004 1 0 -exponentially%4:02:00:: 00334668 1 0 -exponentiation%1:04:00:: 00872411 1 0 -export%1:06:00:: 03306207 1 1 -export%2:35:04:: 01379097 3 0 -export%2:40:00:: 02346409 1 4 -export%2:40:01:: 02232877 2 0 -export_credit%1:21:00:: 13379106 1 0 -export_duty%1:21:00:: 13317941 1 0 -exportable%3:00:00:: 00876989 1 0 -exportation%1:04:00:: 01111952 2 0 -exportation%1:06:00:: 03306207 1 0 -exporter%1:18:00:: 10073634 1 1 -exporting%1:04:00:: 01111952 1 0 -expose%1:10:00:: 07215568 1 0 -expose%2:31:03:: 00614444 9 0 -expose%2:32:00:: 00853195 8 0 -expose%2:32:01:: 00933821 2 7 -expose%2:32:02:: 01036319 6 1 -expose%2:35:00:: 01339505 4 3 -expose%2:39:00:: 02140033 3 4 -expose%2:39:01:: 02113430 7 0 -expose%2:39:02:: 02112029 1 14 -expose%2:39:03:: 02137710 5 2 -exposed%5:00:00:unclothed:00 00459330 2 1 -exposed%5:00:00:unprotected:00 01886620 1 5 -exposit%2:32:00:: 01001294 1 0 -exposit%2:32:01:: 00955601 2 0 -exposition%1:10:00:: 06742426 1 2 -exposition%1:10:01:: 06742173 3 0 -exposition%1:10:02:: 06741993 4 0 -exposition%1:14:00:: 08407619 2 0 -expositive%5:00:00:instructive:00 01324870 1 0 -expositor%1:18:00:: 10073762 1 0 -expository%5:00:00:instructive:00 01324870 1 1 -expostulate%2:32:00:: 00773285 1 0 -expostulation%1:10:00:: 07246742 1 0 -expostulation%1:10:01:: 07126116 2 0 -exposure%1:04:01:: 00204659 10 0 -exposure%1:04:02:: 00907340 8 0 -exposure%1:04:05:: 00522537 9 0 -exposure%1:04:06:: 00157463 2 3 -exposure%1:06:00:: 03925226 7 0 -exposure%1:07:00:: 05043973 1 6 -exposure%1:09:00:: 05934123 4 2 -exposure%1:10:00:: 07215377 3 2 -exposure%1:23:00:: 13640206 6 0 -exposure%1:26:01:: 14543931 5 0 -exposure_meter%1:06:00:: 03667664 1 0 -exposure_therapy%1:04:00:: 00702202 1 0 -expound%2:32:00:: 00955601 1 3 -expound%2:32:01:: 01001294 2 0 -expounder%1:18:00:: 10073762 1 0 -expounding%1:10:00:: 06742426 1 0 -express%1:04:00:: 01106460 3 0 -express%1:06:00:: 03306385 2 0 -express%1:10:00:: 06265475 1 0 -express%2:32:00:: 00940384 2 32 -express%2:32:01:: 00943837 1 59 -express%2:32:02:: 01061017 3 17 -express%2:32:03:: 01061481 4 2 -express%2:32:09:: 01031756 7 0 -express%2:35:11:: 01351754 6 0 -express%2:39:09:: 02144460 5 0 -express%4:02:00:: 00334790 1 1 -express%5:00:00:explicit:00 00941148 1 1 -express%5:00:00:fast:01 00977699 2 0 -express-mail%2:32:00:: 01033030 1 0 -express_emotion%2:37:00:: 01802494 1 1 -express_feelings%2:37:00:: 01802494 1 0 -express_joy%2:29:00:: 00031820 1 0 -express_luxury_liner%1:06:00:: 03698604 1 0 -express_mail%1:10:00:: 06265475 1 0 -express_mirth%2:29:00:: 00031820 1 0 -express_trust%1:21:00:: 13362347 1 0 -expressage%1:04:00:: 01106460 1 0 -expressed%3:00:00:: 00940437 2 1 -expressed%5:00:00:spoken:00 02284023 1 4 -expressed_almond_oil%1:20:00:: 12645754 1 0 -expressible%3:00:00:: 00943363 1 1 -expression%1:04:00:: 00358528 9 0 -expression%1:07:00:: 04679738 1 23 -expression%1:10:00:: 07151380 4 5 -expression%1:10:01:: 07069948 5 4 -expression%1:10:02:: 06880249 2 18 -expression%1:10:03:: 06731802 6 4 -expression%1:10:04:: 07139873 3 15 -expression%1:10:05:: 06313651 8 0 -expression%1:22:00:: 13478205 7 0 -expressionism%1:14:00:: 08467258 1 0 -expressionist%1:18:00:: 10073851 1 0 -expressionist%3:01:00:: 02835145 1 0 -expressionistic%3:01:00:: 02835145 1 1 -expressionless%5:00:00:uncommunicative:00 00501313 1 2 -expressive%5:00:00:communicative:00 00497148 1 3 -expressive_aphasia%1:26:00:: 14098458 1 0 -expressive_style%1:10:00:: 07066659 1 0 -expressively%4:02:00:: 00334870 1 1 -expressiveness%1:07:00:: 04819694 1 2 -expressly%4:02:00:: 00085512 1 1 -expressway%1:06:00:: 03306610 1 0 -expropriate%2:35:00:: 01472642 1 0 -expropriation%1:04:00:: 00086140 1 0 -expulsion%1:04:00:: 00116687 3 0 -expulsion%1:04:01:: 00206927 1 1 -expulsion%1:04:02:: 00358702 2 0 -expunction%1:04:00:: 00397760 1 0 -expunge%2:35:00:: 01549420 1 1 -expunging%1:04:00:: 00397760 1 0 -expurgate%2:30:00:: 00201034 1 0 -expurgated%5:00:00:censored:00 00319090 1 0 -expurgation%1:04:00:: 00397010 1 1 -expurgator%1:18:00:: 10073992 1 0 -exquisite%5:00:00:beautiful:00 00218837 4 0 -exquisite%5:00:00:delicate:00 00706311 3 0 -exquisite%5:00:00:elegant:00 00850552 2 0 -exquisite%5:00:00:intense:00 01511387 1 3 -exquisitely%4:02:00:: 00102463 1 0 -exquisiteness%1:07:00:: 04684654 1 0 -exsanguine%5:00:00:dead:01 00096239 1 0 -exsanguinous%5:00:00:dead:01 00096239 1 0 -exsert%2:29:00:: 00027705 1 0 -exsiccate%2:30:00:: 00211108 1 0 -extant%3:00:00:: 00928525 1 1 -extemporaneous%5:00:00:unprepared:00 01845451 1 0 -extemporaneously%4:02:00:: 00335182 1 0 -extemporarily%4:02:00:: 00335182 1 0 -extemporary%5:00:00:unprepared:00 01845451 1 0 -extempore%4:02:00:: 00335182 1 0 -extempore%5:00:00:unprepared:00 01845451 1 0 -extemporisation%1:04:00:: 00099588 1 0 -extemporise%2:36:00:: 01728840 1 0 -extemporization%1:04:00:: 00099588 1 0 -extemporize%2:36:00:: 01728840 2 0 -extemporize%2:41:00:: 02587895 1 0 -extend%2:29:00:: 00027268 8 2 -extend%2:29:01:: 00027705 5 5 -extend%2:30:01:: 00540235 1 20 -extend%2:30:02:: 00317888 10 1 -extend%2:30:06:: 00235110 16 0 -extend%2:30:09:: 00540946 9 1 -extend%2:30:12:: 00154141 17 0 -extend%2:30:15:: 00318326 15 0 -extend%2:34:00:: 01165579 14 0 -extend%2:35:10:: 01368863 13 0 -extend%2:38:10:: 02054989 11 0 -extend%2:38:14:: 01960296 12 0 -extend%2:40:04:: 02297742 7 3 -extend%2:40:05:: 02297948 4 6 -extend%2:42:01:: 02687916 3 11 -extend%2:42:02:: 02690093 6 4 -extend%2:42:03:: 02685951 2 16 -extend_oneself%2:33:00:: 01146290 1 0 -extend_to%2:42:00:: 02685665 1 4 -extendable%5:00:00:long:01 01434530 1 0 -extended%3:00:00:: 01431638 2 1 -extended%5:00:00:figurative:00 01419638 4 0 -extended%5:00:00:large:00 01386234 5 0 -extended%5:00:00:long:01 01434218 3 0 -extended%5:00:00:long:02 01439155 1 4 -extended_care_facility%1:14:00:: 08054226 1 0 -extended_family%1:14:00:: 07973653 1 0 -extended_order%1:14:00:: 08427282 1 0 -extended_time_scale%1:28:00:: 15135057 1 0 -extendible%5:00:00:long:01 01434530 1 0 -extensible%3:00:00:: 00944449 1 0 -extensile%3:00:00:: 00944449 1 0 -extension%1:04:00:: 00886039 4 1 -extension%1:04:01:: 00369532 5 1 -extension%1:04:02:: 00367768 2 10 -extension%1:06:00:: 02713594 12 0 -extension%1:06:01:: 03281935 11 0 -extension%1:06:02:: 03306869 10 0 -extension%1:07:00:: 05133535 9 0 -extension%1:07:01:: 05214599 8 0 -extension%1:09:00:: 05922949 7 0 -extension%1:10:00:: 06335162 6 0 -extension%1:10:01:: 06253518 3 2 -extension%1:28:00:: 15272382 1 13 -extension_agent%1:18:00:: 09971385 1 0 -extension_cord%1:06:00:: 03307037 1 0 -extension_course%1:04:00:: 00890941 1 0 -extension_ladder%1:06:00:: 03307156 1 0 -extension_phone%1:06:00:: 03306869 1 0 -extension_service%1:04:00:: 00886039 1 0 -extensional%5:00:00:denotative:00 00722707 1 0 -extensive%3:00:00:: 01514598 3 0 -extensive%5:00:00:comprehensive:00 00526062 2 3 -extensive%5:00:00:large:00 01386234 1 13 -extensively%4:02:00:: 00036609 1 3 -extensiveness%1:07:00:: 05106317 1 0 -extensor%1:08:00:: 05294606 1 0 -extensor_muscle%1:08:00:: 05294606 1 0 -extent%1:07:00:: 05123416 2 15 -extent%1:26:00:: 13941125 1 23 -extenuate%2:32:00:: 00906037 1 2 -extenuating%5:00:00:exculpatory:00 00923671 1 0 -extenuation%1:04:00:: 00354583 2 0 -extenuation%1:10:00:: 06741728 1 0 -exterior%1:15:00:: 08613472 2 1 -exterior%1:15:01:: 08613593 1 1 -exterior%3:00:00:: 00952395 1 2 -exterior_angle%1:25:00:: 13890535 1 0 -exterior_door%1:06:00:: 03307274 1 0 -exteriorisation%1:04:00:: 00932624 1 0 -exteriorise%2:30:00:: 00532607 1 0 -exteriorization%1:04:00:: 00932624 1 0 -exteriorize%2:30:00:: 00532607 2 0 -exteriorize%2:38:00:: 02084104 1 0 -exterminable%5:00:00:eradicable:00 00898013 1 0 -exterminate%2:35:01:: 01327582 1 3 -exterminate%2:36:00:: 01662118 2 0 -exterminated%5:00:00:destroyed:00 00734798 1 0 -extermination%1:04:00:: 01245061 2 0 -extermination%1:11:00:: 07332691 1 0 -exterminator%1:18:00:: 10074339 1 0 -extern%1:18:00:: 10074578 1 1 -external%1:09:00:: 05852007 1 0 -external%3:00:00:: 00948103 1 9 -external%5:00:00:extrinsic:00 01350225 2 2 -external%5:00:00:foreign:02 01037885 3 2 -external%5:00:00:outward:00 00951003 4 0 -external-combustion_engine%1:06:00:: 03307573 1 0 -external_angle%1:25:00:: 13890535 1 0 -external_auditory_canal%1:08:00:: 05248667 1 0 -external_body_part%1:08:00:: 05225090 1 0 -external_carotid%1:08:00:: 05339751 1 0 -external_carotid_artery%1:08:00:: 05339751 1 0 -external_drive%1:06:00:: 03307792 1 0 -external_ear%1:08:00:: 05323723 1 0 -external_gill%1:05:00:: 02510978 1 0 -external_iliac_artery%1:08:00:: 05347465 1 0 -external_iliac_vein%1:08:00:: 05369757 1 0 -external_jugular_vein%1:08:00:: 05371301 1 0 -external_maxillary_artery%1:08:00:: 05345038 1 0 -external_nasal_vein%1:08:00:: 05367165 1 0 -external_oblique_muscle%1:08:00:: 05557839 1 0 -external_organ%1:08:00:: 05298572 1 0 -external_orifice%1:08:00:: 05512670 1 0 -external_respiration%1:04:00:: 00831191 1 0 -external_storage%1:06:00:: 02763306 1 0 -externalisation%1:04:00:: 00932624 2 0 -externalisation%1:09:00:: 05735680 1 0 -externalise%2:30:00:: 00532607 2 0 -externalise%2:31:00:: 00729642 1 0 -externality%1:07:00:: 05078623 1 0 -externalization%1:04:00:: 00932624 2 0 -externalization%1:09:00:: 05735680 1 0 -externalize%2:30:00:: 00532607 2 0 -externalize%2:31:00:: 00729642 1 0 -externally%4:02:00:: 00230331 2 0 -externally%4:02:01:: 00249300 1 0 -exteroception%1:09:00:: 05653848 1 0 -exteroceptive%3:01:00:: 02868051 1 0 -exteroceptor%1:08:00:: 05299814 1 0 -exterritorial%3:00:00:: 02409293 1 0 -extinct%3:00:01:: 00929164 1 0 -extinct%3:00:02:: 00041051 2 0 -extinct%5:00:00:dead:02 00100213 3 0 -extinction%1:04:01:: 00229934 6 0 -extinction%1:09:00:: 05758692 5 0 -extinction%1:11:00:: 07332691 4 0 -extinction%1:22:00:: 13478342 3 0 -extinction%1:26:01:: 13963032 2 0 -extinction%1:26:02:: 14012173 1 0 -extinction_angle%1:25:00:: 13891735 1 0 -extinguish%2:30:00:: 00478217 1 1 -extinguish%2:30:01:: 00470701 5 0 -extinguish%2:30:03:: 00471711 4 0 -extinguish%2:30:05:: 00478682 3 0 -extinguish%2:43:00:: 02761897 2 0 -extinguishable%3:00:00:: 00947789 1 0 -extinguished%5:00:00:destroyed:00 00736020 1 1 -extinguisher%1:06:00:: 03345837 1 0 -extinguishing%1:04:00:: 00229934 1 0 -extirpable%5:00:00:eradicable:00 00898013 1 0 -extirpate%2:30:00:: 00176327 3 0 -extirpate%2:35:00:: 01566916 2 0 -extirpate%2:36:00:: 01662118 1 2 -extirpation%1:04:00:: 00393369 1 0 -extirpation%1:04:01:: 00115803 2 0 -extol%2:32:00:: 00860620 1 0 -extoller%1:18:00:: 10248711 1 0 -extolment%1:10:00:: 06693198 1 0 -extort%2:36:00:: 01630751 3 0 -extort%2:40:00:: 02241107 2 0 -extort%2:40:01:: 02241621 1 0 -extortion%1:04:00:: 00784388 3 0 -extortion%1:04:01:: 01061726 2 0 -extortion%1:21:00:: 13307901 1 0 -extortionate%5:00:00:immoderate:00 01534282 1 0 -extortionately%4:02:00:: 00333613 1 0 -extortioner%1:18:00:: 09858299 1 0 -extortionist%1:18:00:: 09858299 1 0 -extra%1:06:00:: 03307981 3 0 -extra%1:10:00:: 06597349 2 0 -extra%1:18:00:: 10676569 1 0 -extra%4:02:01:: 00084759 1 0 -extra%5:00:00:additive:00 00048858 3 0 -extra%5:00:00:unnecessary:00 01581305 1 4 -extra%5:00:00:unscheduled:00 02367319 2 0 -extra_dividend%1:21:00:: 13408361 1 0 -extra_innings%1:28:00:: 15234212 1 0 -extra_large%1:07:00:: 05096095 1 0 -extra_point%1:04:00:: 00189257 1 0 -extra_time%1:28:00:: 15233989 1 0 -extracapsular_surgery%1:04:00:: 00678752 1 0 -extracellular%3:01:00:: 02685539 1 0 -extracellular_fluid%1:08:00:: 05398023 1 0 -extract%1:10:00:: 06400510 2 0 -extract%1:27:00:: 14848785 1 3 -extract%2:30:00:: 00229280 4 1 -extract%2:31:00:: 00677021 7 0 -extract%2:31:02:: 00638723 8 0 -extract%2:35:04:: 01351170 1 8 -extract%2:35:05:: 01351754 6 0 -extract%2:35:07:: 01459392 5 0 -extract%2:36:00:: 01630532 3 1 -extract%2:40:00:: 02239098 2 1 -extractable%5:00:00:removable:00 01526905 1 0 -extractible%5:00:00:removable:00 01526905 1 0 -extraction%1:04:00:: 00392950 3 0 -extraction%1:07:00:: 04923743 2 0 -extraction%1:22:00:: 13478525 1 0 -extractor%1:06:00:: 03308152 1 0 -extractor%1:06:01:: 02995998 2 0 -extractor%1:06:02:: 02972714 3 0 -extracurricular%5:00:00:illicit:00 01550779 3 0 -extracurricular%5:00:00:outside:00 01693311 2 0 -extracurricular%5:00:02:outside:00 01693425 1 0 -extracurricular_activity%1:04:00:: 00886272 1 0 -extradite%2:41:00:: 02503365 1 0 -extradition%1:04:00:: 00213482 1 0 -extrados%1:25:00:: 13869045 1 0 -extradural%3:01:00:: 02720601 1 0 -extragalactic%3:01:00:: 02849257 1 0 -extragalactic_nebula%1:14:00:: 08271042 1 0 -extrajudicial%5:00:00:illegal:00 01403316 1 0 -extralegal%5:00:00:illegal:00 01403469 1 1 -extralinguistic%3:01:00:: 02879535 1 0 -extramarital%5:00:00:illicit:00 01550779 1 1 -extramarital_sex%1:04:00:: 00848282 1 0 -extramural%3:00:00:: 01347138 1 0 -extraneous%5:00:00:adulterating:00 02117464 3 0 -extraneous%5:00:00:irrelevant:00 01976532 1 1 -extraneous%5:00:01:extrinsic:00 01350225 4 0 -extraneous%5:00:02:extrinsic:00 01350494 2 1 -extraneousness%1:24:00:: 13796585 1 1 -extraordinaire%5:00:00:extraordinary:00 01676350 1 0 -extraordinarily%4:02:00:: 00046863 1 1 -extraordinariness%1:07:00:: 04796490 1 0 -extraordinary%3:00:00:: 01675190 1 12 -extraordinary%5:00:00:immoderate:00 01534648 2 2 -extraordinary%5:00:00:unusual:00 00490650 3 1 -extrapolate%2:31:00:: 00642644 2 1 -extrapolate%2:31:01:: 00593669 3 1 -extrapolate%2:32:00:: 01022420 1 1 -extrapolation%1:09:00:: 05802547 1 3 -extrapolation%1:09:01:: 05781145 2 0 -extrasensory%3:00:00:: 02108827 1 0 -extrasensory_perception%1:10:00:: 07256695 1 0 -extrasystole%1:11:00:: 07401604 1 0 -extrasystolic%3:01:00:: 03122108 1 0 -extraterrestrial%1:18:00:: 09484465 1 0 -extraterrestrial%3:01:00:: 02780355 1 2 -extraterrestrial_being%1:18:00:: 09484465 1 0 -extraterrestrial_object%1:17:00:: 09277686 1 0 -extraterritorial%3:00:00:: 02409293 1 0 -extrauterine_gestation%1:26:00:: 14047740 1 0 -extrauterine_pregnancy%1:26:00:: 14047740 1 0 -extravagance%1:04:00:: 00743641 3 0 -extravagance%1:07:00:: 04894807 2 0 -extravagance%1:07:01:: 05118862 1 0 -extravagancy%1:07:00:: 05118862 1 0 -extravagant%5:00:00:unrestrained:00 02000968 1 3 -extravagant%5:00:00:wasteful:00 02422242 2 1 -extravagantly%4:02:00:: 00335345 2 0 -extravagantly%4:02:01:: 00187617 3 0 -extravagantly%4:02:02:: 00214554 1 1 -extravaganza%1:04:00:: 00515684 1 1 -extravasate%2:29:00:: 00068858 3 0 -extravasate%2:30:00:: 00307568 2 0 -extravasate%2:35:00:: 01375909 1 0 -extravasation%1:22:00:: 13478813 3 0 -extravasation%1:26:00:: 14008567 2 0 -extravasation%1:27:00:: 14858794 1 0 -extraversion%1:07:00:: 04621738 1 0 -extraversive%3:00:00:: 01351391 1 0 -extravert%1:18:00:: 10074841 1 0 -extravert%5:00:00:extroversive:00 01351637 1 0 -extraverted%5:00:00:extroversive:00 01351637 1 0 -extravertive%5:00:00:extroversive:00 01351637 1 0 -extreme%1:07:00:: 05098099 1 6 -extreme%1:15:00:: 08569165 2 3 -extreme%5:00:00:distant:01 00446107 4 1 -extreme%5:00:00:immoderate:00 01534858 2 5 -extreme%5:00:00:intense:00 01511520 1 15 -extreme%5:00:01:immoderate:00 01535082 3 2 -extreme_point%1:15:00:: 08569165 1 0 -extreme_right-winger%1:18:00:: 10508475 1 0 -extreme_unction%1:04:00:: 01039637 1 0 -extremely%4:02:00:: 00046299 2 6 -extremely%4:02:02:: 00089408 1 11 -extremely_high_frequency%1:07:00:: 05058025 1 0 -extremely_low_frequency%1:07:00:: 05057163 1 0 -extremeness%1:07:00:: 05098225 1 0 -extremism%1:09:00:: 06217806 1 0 -extremist%1:18:00:: 10074735 1 0 -extremist%5:00:00:immoderate:00 01535270 1 0 -extremity%1:08:00:: 05559908 1 1 -extremity%1:08:01:: 05566919 5 0 -extremity%1:15:00:: 08568978 4 0 -extremity%1:26:00:: 13942405 3 0 -extremity%1:26:02:: 14476521 2 0 -extremum%1:15:00:: 08569165 1 1 -extremum%1:23:00:: 13653902 2 0 -extricable%3:00:00:: 00945123 1 0 -extricate%2:35:00:: 01585759 1 2 -extrication%1:04:00:: 01244593 1 0 -extrinsic%3:00:00:: 01349041 1 0 -extrinsic_fraud%1:04:00:: 00778017 1 0 -extropic%3:01:00:: 02724960 1 0 -extropy%1:10:00:: 06749267 1 0 -extrospective%3:00:00:: 01350876 1 0 -extroversion%1:07:00:: 04621738 1 0 -extroversive%3:00:00:: 01351391 1 0 -extrovert%1:18:00:: 10074841 1 0 -extrovert%5:00:00:extroversive:00 01351637 1 0 -extroverted%3:00:04:: 01350876 1 0 -extroverted%5:00:00:extroversive:00 01351637 3 0 -extroverted%5:00:00:sociable:00 02258249 2 0 -extrovertish%5:00:00:extroversive:00 01351837 1 0 -extrovertive%5:00:00:extroversive:00 01351637 1 0 -extrude%2:36:00:: 01675780 1 1 -extrusion%1:04:00:: 00358702 2 0 -extrusion%1:25:00:: 13894434 1 0 -extrusive%3:00:00:: 01355556 1 0 -exuberance%1:07:00:: 04634540 2 0 -exuberance%1:12:00:: 07555647 1 0 -exuberant%5:00:00:abundant:00 00015247 3 0 -exuberant%5:00:00:spirited:00 02279723 1 4 -exuberant%5:00:00:unrestrained:00 02000968 2 0 -exuberantly%4:02:00:: 00335544 1 0 -exuberantly%4:02:01:: 00324589 2 0 -exuberate%2:32:00:: 00857923 1 0 -exudate%1:27:00:: 14852913 1 0 -exudate%2:29:00:: 00067999 1 0 -exudation%1:11:00:: 07432337 2 0 -exudation%1:27:00:: 14852913 1 0 -exude%2:29:00:: 00067999 1 1 -exude%2:32:00:: 00944415 2 0 -exult%2:32:00:: 00857923 2 0 -exult%2:37:00:: 01813668 1 0 -exultant%5:00:00:elated:00 00704898 1 3 -exultantly%4:02:00:: 00227423 1 1 -exultation%1:10:00:: 07129422 2 0 -exultation%1:12:00:: 07527817 1 2 -exulting%5:00:00:elated:00 00704898 1 0 -exultingly%4:02:00:: 00227423 1 0 -exurbia%1:15:00:: 08554762 1 0 -exuviae%1:08:00:: 05240076 1 0 -exuvial%3:01:00:: 02941513 1 0 -exuviate%2:29:00:: 00009147 1 0 -eyas%1:05:00:: 01606097 1 0 -eyck%1:18:00:: 10964052 1 0 -eye%1:06:00:: 03308297 5 0 -eye%1:08:00:: 05311054 1 263 -eye%1:09:00:: 05614476 2 8 -eye%1:09:01:: 05703307 3 6 -eye%1:15:00:: 08523483 4 0 -eye%2:39:00:: 02167052 1 11 -eye-beaming%1:04:00:: 00877786 1 1 -eye-catcher%1:09:00:: 05812813 1 0 -eye-catching%5:00:00:conspicuous:00 00579498 1 0 -eye-deceiving%5:00:00:unreal:00 01935581 1 1 -eye-drop%1:04:00:: 00656643 2 0 -eye-drop%1:23:00:: 13771929 1 0 -eye-lotion%1:06:00:: 03309214 1 0 -eye-popping%5:00:00:impressive:00 01283787 1 0 -eye_bank%1:21:00:: 13368675 1 0 -eye_blink%1:04:00:: 00117959 1 0 -eye_candy%1:09:00:: 05932709 1 0 -eye_chart%1:10:00:: 07002022 1 0 -eye_clinic%1:14:00:: 08054613 1 0 -eye_condition%1:26:00:: 14555414 1 0 -eye_contact%1:04:00:: 00039740 2 0 -eye_contact%1:10:00:: 06879766 1 0 -eye_cup%1:06:00:: 03308614 1 0 -eye_dialect%1:10:00:: 07156091 1 0 -eye_disease%1:26:00:: 14252864 1 0 -eye_doctor%1:18:00:: 10379073 1 0 -eye_dropper%1:06:00:: 03247083 1 0 -eye_infection%1:26:00:: 14185219 1 0 -eye_mask%1:06:00:: 03221059 1 0 -eye_movement%1:04:00:: 00337486 1 0 -eye_muscle%1:08:00:: 05316175 1 0 -eye_of_ra%1:18:00:: 09513430 1 0 -eye_opener%1:11:00:: 07298624 2 0 -eye_opener%1:13:00:: 07912499 1 0 -eye_operation%1:04:00:: 00673863 1 0 -eye_rhyme%1:10:00:: 07098093 1 0 -eye_socket%1:08:00:: 05285275 1 1 -eye_surgery%1:04:00:: 00673863 1 0 -eye_tooth%1:08:00:: 05307091 1 0 -eyeball%1:08:00:: 05316025 1 1 -eyeball%2:39:00:: 02167052 1 0 -eyebath%1:06:00:: 03308614 1 0 -eyebrow%1:08:00:: 05313535 1 3 -eyebrow_pencil%1:06:00:: 03308481 1 0 -eyecup%1:05:00:: 02155678 2 0 -eyecup%1:06:00:: 03308614 1 0 -eyed%3:00:00:: 00953332 1 2 -eyedness%1:07:00:: 05067807 1 0 -eyedrop%1:04:00:: 00656643 2 0 -eyedrop%1:23:00:: 13771929 1 0 -eyeful%1:04:00:: 00881914 2 0 -eyeful%1:18:00:: 10075063 1 0 -eyeglass%1:06:00:: 03783430 1 0 -eyeglass_wearer%1:18:00:: 10075185 1 0 -eyeglasses%1:06:00:: 04272054 1 0 -eyehole%1:06:00:: 03308853 2 0 -eyehole%1:06:01:: 03905208 1 0 -eyeish%1:18:00:: 09655466 1 0 -eyelash%1:08:00:: 05314919 1 0 -eyeless%3:00:00:: 00954965 1 0 -eyeless%5:00:00:blind:00 02160135 2 0 -eyelessness%1:26:00:: 14557206 1 0 -eyelet%1:06:00:: 03308853 1 0 -eyelet%1:06:01:: 03132438 2 0 -eyelid%1:08:00:: 05313822 1 3 -eyelike%5:00:00:eyed:00 00953886 1 1 -eyeliner%1:06:00:: 03309110 1 0 -eyepatch%1:06:00:: 03309356 1 0 -eyepiece%1:06:00:: 03309465 1 1 -eyes%1:09:00:: 05949603 1 4 -eyes-only%5:00:00:classified:02 00415543 1 0 -eyeshade%1:06:00:: 02838728 1 0 -eyeshadow%1:06:00:: 03309687 1 1 -eyeshot%1:15:00:: 08560952 1 0 -eyesight%1:09:00:: 05656537 1 2 -eyesore%1:07:00:: 04693717 1 0 -eyespot%1:07:00:: 04681621 1 0 -eyestrain%1:26:00:: 14016863 1 1 -eyetooth%1:08:00:: 05307091 1 0 -eyewash%1:06:00:: 03309214 1 0 -eyewitness%1:18:00:: 10075299 1 0 -eyewitness%2:39:00:: 02128514 1 0 -eyra%1:05:00:: 02125689 1 0 -eyre%1:17:00:: 09277913 1 0 -eyre_peninsula%1:17:00:: 09278162 1 0 -eyrie%1:15:00:: 08492354 2 0 -eyrie%1:17:00:: 09189157 1 0 -eyrir%1:23:00:: 13682116 1 0 -eyry%1:15:00:: 08492354 2 0 -eyry%1:17:00:: 09189157 1 0 -eysenck%1:18:00:: 10964261 1 0 -eysenck_personality_inventory%1:10:00:: 06475307 1 0 -ezechiel%1:10:00:: 06438748 2 0 -ezechiel%1:18:00:: 10964520 1 0 -ezed%1:10:00:: 06833890 1 0 -ezekias%1:18:00:: 11049128 1 0 -ezekiel%1:10:00:: 06438748 2 0 -ezekiel%1:18:00:: 10964520 1 0 -ezo%1:15:00:: 08920722 1 0 -ezo-yama-hagi%1:20:00:: 12543186 1 0 -ezra%1:10:00:: 06436183 2 0 -ezra%1:18:00:: 10964660 1 0 -ezra_cornell%1:18:00:: 10911288 1 0 -ezra_loomis_pound%1:18:00:: 11244550 1 0 -ezra_pound%1:18:00:: 11244550 1 0 -f%1:10:00:: 06831712 4 0 -f%1:23:00:: 13636286 3 0 -f%1:23:02:: 13714641 1 8 -f%1:27:00:: 14637507 2 0 -f._d._roosevelt%1:18:00:: 11270023 1 0 -f._g._banting%1:18:00:: 10833805 1 0 -f._scott_fitzgerald%1:18:00:: 10972094 1 0 -f.i.s.c.%1:14:00:: 08332485 1 0 -f_clef%1:10:00:: 06862954 1 0 -f_layer%1:15:00:: 08582337 1 0 -f_number%1:24:00:: 13821408 1 0 -f_region%1:15:00:: 08582337 1 0 -fa%1:10:00:: 06868709 1 0 -fa_la%1:10:00:: 06608617 1 0 -faa%1:14:00:: 08143926 1 0 -fab%5:00:00:pleasing:00 01808227 1 0 -fabaceae%1:20:00:: 11746776 1 0 -faberge%1:18:00:: 10964829 1 0 -fabian%1:18:00:: 10075416 1 0 -fabian%3:01:00:: 03065414 1 0 -fabian%5:00:00:cautious:00 00325840 2 0 -fabian_society%1:14:00:: 08243851 1 0 -fabiana%1:20:00:: 12903794 1 0 -fabiana_imbricata%1:20:00:: 12903964 1 0 -fabianism%1:09:00:: 06220819 1 0 -fable%1:10:00:: 06372095 2 0 -fable%1:10:01:: 06371413 3 0 -fable%1:10:02:: 06757891 1 0 -fabled%5:00:00:unreal:00 01935744 1 2 -fabric%1:06:00:: 03309808 1 11 -fabric%1:07:00:: 04933363 2 1 -fabricate%2:36:00:: 01634424 2 0 -fabricate%2:36:01:: 01653442 1 0 -fabricated%5:00:00:unreal:00 01935935 1 0 -fabrication%1:04:00:: 00924825 3 0 -fabrication%1:04:01:: 00912001 4 0 -fabrication%1:04:02:: 00931040 2 0 -fabrication%1:04:03:: 00751944 5 0 -fabrication%1:10:00:: 06757891 1 0 -fabricator%1:18:00:: 10660333 1 0 -fabulist%1:18:00:: 10075529 1 0 -fabulous%5:00:00:incredible:00 00645982 3 0 -fabulous%5:00:00:pleasing:00 01808227 1 1 -fabulous%5:00:00:unreal:00 01936184 2 0 -fabulously%4:02:00:: 00032180 1 0 -facade%1:06:00:: 03313333 1 3 -facade%1:10:00:: 06758698 2 0 -face%1:06:00:: 03313456 13 0 -face%1:06:01:: 03313602 8 1 -face%1:06:02:: 03313873 4 4 -face%1:07:00:: 04679419 3 22 -face%1:07:01:: 05168795 11 0 -face%1:07:02:: 04838210 12 0 -face%1:07:03:: 04679738 2 23 -face%1:08:00:: 05600637 1 193 -face%1:08:01:: 05601198 7 1 -face%1:10:00:: 06825399 10 0 -face%1:10:01:: 06877578 9 0 -face%1:15:00:: 08510666 6 1 -face%1:18:00:: 09618957 5 2 -face%2:32:00:: 00812298 1 56 -face%2:32:03:: 01066433 6 3 -face%2:33:00:: 01078783 2 33 -face%2:35:00:: 01271936 8 0 -face%2:35:01:: 01271189 9 0 -face%2:38:00:: 01908365 5 4 -face%2:39:04:: 02137907 7 0 -face%2:42:00:: 02693319 3 14 -face%2:42:02:: 02693691 4 4 -face-amount_certificate_company%1:14:00:: 08072104 1 0 -face-harden%2:30:00:: 00255654 1 0 -face-lift%2:29:00:: 00061933 1 0 -face-off%1:04:00:: 00239024 2 0 -face-off%1:10:00:: 07181043 1 0 -face-saving%5:00:00:helpful:00 01196367 1 1 -face-to-face%4:02:02:: 00044754 1 2 -face-to-face%4:02:05:: 00044861 2 0 -face-to-face%5:00:00:personal:00 01767975 1 0 -face_angle%1:25:00:: 13916495 1 0 -face_card%1:06:00:: 03314028 1 0 -face_cloth%1:06:00:: 04554523 1 0 -face_cream%1:06:00:: 03067339 1 0 -face_fungus%1:08:00:: 05261566 1 0 -face_guard%1:06:00:: 03314227 1 0 -face_lift%1:04:00:: 00674158 1 0 -face_lift%1:04:01:: 00265472 2 0 -face_lifting%1:04:00:: 00674158 2 0 -face_lifting%1:04:01:: 00265472 1 1 -face_mask%1:06:00:: 03314378 1 0 -face_off%2:33:00:: 01084048 1 0 -face_pack%1:06:00:: 03870980 1 0 -face_powder%1:06:00:: 03314780 1 1 -face_recognition%1:09:00:: 05711206 2 0 -face_recognition%1:10:00:: 06644105 1 0 -face_saver%1:04:00:: 01263582 1 0 -face_saving%1:04:00:: 01263582 1 1 -face_soap%1:06:00:: 04447965 1 0 -face_the_music%2:40:00:: 02302081 1 0 -face_time%1:28:00:: 15118724 1 0 -face_to_face%4:02:00:: 00044394 1 1 -face_towel%1:06:00:: 03490006 1 0 -face_up%2:32:03:: 00812298 1 3 -face_value%1:07:00:: 04678804 2 0 -face_value%1:21:00:: 13335635 1 0 -face_veil%1:06:00:: 03314884 1 0 -faced%3:00:00:: 00234872 1 2 -faceless%3:00:00:: 00236483 1 0 -facelift%1:04:00:: 00674158 1 0 -facelift%1:04:01:: 00265472 2 0 -faceplate%1:06:00:: 03314608 1 0 -facer%1:09:00:: 05688486 1 0 -facet%1:09:00:: 05850624 1 3 -facet%1:25:00:: 13913164 2 0 -facet_plane%1:25:00:: 13861580 1 4 -faceted%3:00:00:: 02591506 1 0 -facetious%5:00:00:humorous:00 01264913 1 1 -facetiously%4:02:00:: 00085667 1 1 -facetiousness%1:07:00:: 04649560 1 0 -facia%1:08:00:: 05582513 1 0 -facial%1:04:00:: 00665781 2 0 -facial%1:08:00:: 05479314 1 0 -facial%3:01:00:: 02877704 1 0 -facial%3:01:01:: 02725058 2 0 -facial_artery%1:08:00:: 05345038 1 0 -facial_expression%1:07:00:: 04679738 2 0 -facial_expression%1:10:00:: 06877078 1 0 -facial_gesture%1:10:00:: 06877078 1 0 -facial_hair%1:08:00:: 05261404 1 0 -facial_index%1:24:00:: 13821272 1 0 -facial_muscle%1:08:00:: 05602132 1 0 -facial_nerve%1:08:00:: 05479314 1 0 -facial_profiling%1:10:00:: 06886273 1 0 -facial_recognition%1:10:00:: 06644105 1 0 -facial_tissue%1:27:00:: 14864259 1 0 -facial_vein%1:08:00:: 05367341 1 0 -facially%4:02:00:: 00136188 1 0 -facile%5:00:00:articulate:00 00150505 3 0 -facile%5:00:00:effortless:00 00838533 2 0 -facile%5:00:00:superficial:00 01874561 1 0 -facilitate%2:30:00:: 00518395 1 5 -facilitate%2:36:03:: 01757338 3 0 -facilitate%2:42:00:: 02735897 2 0 -facilitation%1:04:00:: 01208291 3 0 -facilitation%1:19:00:: 11454042 2 0 -facilitation%1:26:00:: 14575531 1 0 -facilitative%5:00:00:helpful:00 01196484 1 0 -facilitator%1:18:00:: 10075693 1 0 -facilitatory%5:00:00:helpful:00 01196648 1 1 -facility%1:04:00:: 00578549 5 0 -facility%1:04:01:: 00585406 4 0 -facility%1:06:00:: 03315023 1 35 -facility%1:07:00:: 04708796 3 0 -facility%1:09:00:: 05642175 2 0 -facing%1:04:01:: 00827379 4 0 -facing%1:06:00:: 03315644 3 0 -facing%1:06:01:: 03315805 1 2 -facing%1:06:02:: 03315990 2 0 -facing_pages%1:10:00:: 06258031 1 0 -facsimile%1:06:00:: 03316105 2 0 -facsimile%1:06:01:: 03316274 1 1 -facsimile%2:32:00:: 01007676 1 0 -facsimile_machine%1:06:00:: 03316105 1 0 -fact%1:09:01:: 05817396 1 85 -fact%1:09:02:: 05889896 4 3 -fact%1:10:01:: 06636259 2 34 -fact%1:26:01:: 13955874 3 11 -fact-finding%5:00:00:inquiring:00 00879030 1 0 -fact_mood%1:24:00:: 13801700 1 0 -faction%1:14:00:: 08251877 2 0 -faction%1:14:01:: 08241798 1 2 -factious%5:00:00:discordant:00 00554302 1 0 -factitious%5:00:00:artificial:00 01573101 1 0 -factoid%1:10:00:: 06484887 2 0 -factoid%1:10:01:: 06485001 1 0 -factor%1:08:00:: 05436752 7 0 -factor%1:09:00:: 05868954 2 8 -factor%1:09:01:: 05858317 6 0 -factor%1:11:00:: 07327805 1 31 -factor%1:18:00:: 09777012 4 1 -factor%1:23:00:: 13733402 3 4 -factor%1:23:01:: 13593219 5 0 -factor%2:31:00:: 00640385 1 2 -factor%2:31:01:: 00640650 3 0 -factor%2:40:00:: 02324901 2 0 -factor_analyse%2:31:00:: 00736429 1 0 -factor_analysis%1:09:00:: 06030196 1 0 -factor_analytic%3:01:00:: 02725181 1 0 -factor_analytical%3:01:00:: 02725181 1 0 -factor_analyze%2:31:00:: 00736429 1 0 -factor_i%1:27:00:: 15023156 1 0 -factor_ii%1:27:00:: 15070897 1 0 -factor_iii%1:27:00:: 15071035 1 0 -factor_in%2:31:00:: 00640385 2 0 -factor_in%2:31:01:: 00640650 1 0 -factor_iv%1:27:00:: 15071229 1 0 -factor_ix%1:27:00:: 15071960 1 0 -factor_of_proportionality%1:23:00:: 13593634 1 0 -factor_of_safety%1:24:00:: 13825490 1 0 -factor_out%2:31:00:: 00640385 2 0 -factor_out%2:31:01:: 00640650 1 0 -factor_v%1:27:00:: 15071366 1 0 -factor_vii%1:27:00:: 15071503 1 0 -factor_viii%1:27:00:: 15071684 1 0 -factor_x%1:27:00:: 15072099 1 0 -factor_xi%1:27:00:: 15072331 1 0 -factor_xii%1:27:00:: 15072491 1 0 -factor_xiii%1:27:00:: 15072657 1 0 -factorial%1:09:00:: 05859811 1 0 -factorial%3:01:00:: 02725350 1 0 -factoring%1:09:00:: 05783041 1 0 -factorisation%1:09:00:: 05783041 1 0 -factorise%2:31:00:: 00733250 1 0 -factorization%1:09:00:: 05783041 1 0 -factorize%2:31:00:: 00733250 1 0 -factory%1:06:00:: 03316406 1 18 -factory-made%3:00:00:: 00675064 1 0 -factory_farm%1:04:00:: 01104406 1 0 -factory_price%1:21:00:: 13304819 1 0 -factory_ship%1:06:00:: 03316873 1 0 -factory_whistle%1:06:00:: 03316988 1 0 -factory_worker%1:18:00:: 10318293 1 4 -factotum%1:18:00:: 10075802 1 0 -facts_of_life%1:04:00:: 00849523 1 0 -factual%3:01:00:: 02899112 2 0 -factual%5:00:00:real:00 01933731 1 1 -factuality%1:07:01:: 04759428 1 0 -factually%4:02:00:: 00148627 1 0 -factualness%1:07:00:: 04759428 1 0 -facula%1:19:00:: 11511176 2 0 -facula%1:19:01:: 11511327 1 0 -facultative%3:00:00:: 01617859 2 0 -facultative%3:01:00:: 02725452 1 0 -facultative%5:00:00:enabling:00 01194974 3 0 -facultative%5:00:00:optional:00 00847861 4 0 -faculty%1:09:00:: 05650329 1 4 -faculty%1:14:00:: 08287586 2 3 -faculty_member%1:18:00:: 09759069 1 0 -fad%1:09:00:: 05751173 1 0 -fad_diet%1:13:00:: 07562881 1 0 -faddily%4:02:00:: 00335706 1 0 -faddish%5:00:00:fashionable:00 00972236 1 0 -faddishly%4:02:00:: 00335706 1 0 -faddist%1:18:00:: 10075899 1 0 -faddy%5:00:00:fashionable:00 00972236 1 0 -fade%1:04:00:: 00230172 2 0 -fade%1:04:01:: 00572043 1 0 -fade%2:29:00:: 00093593 4 0 -fade%2:30:00:: 00421691 3 4 -fade%2:30:01:: 00421917 2 4 -fade%2:30:02:: 00224651 1 6 -fade_away%2:30:00:: 00447771 1 0 -fade_out%2:30:00:: 00447771 1 1 -faded%5:00:00:colorless:02 00404961 1 7 -faded%5:00:00:decreased:00 00882166 2 3 -fadeout%1:11:00:: 07336214 1 1 -fadeout%1:11:01:: 07431369 2 0 -fading%1:11:00:: 07427534 1 0 -fading_away%1:11:00:: 07423248 1 0 -fado%1:10:00:: 07051441 1 0 -fae%1:06:00:: 03400389 1 0 -faecal%3:01:00:: 03065685 1 0 -faecal_matter%1:27:00:: 14854262 1 0 -faecal_occult_test%1:09:00:: 05741340 1 0 -faecalith%1:17:00:: 09256360 1 0 -faeces%1:27:00:: 14854262 1 0 -faerie%1:09:00:: 05627682 2 0 -faerie%1:18:00:: 09540430 1 0 -faeroe_islands%1:15:00:: 08952628 2 0 -faeroe_islands%1:15:01:: 08952856 1 0 -faeroes%1:15:00:: 08952628 2 0 -faeroes%1:15:01:: 08952856 1 0 -faeroese%1:10:00:: 06955087 1 0 -faery%1:09:00:: 05627682 2 0 -faery%1:18:00:: 09540430 1 0 -fafnir%1:18:00:: 09494609 1 0 -fag%1:06:00:: 03030663 2 0 -fag%1:18:00:: 10076033 1 0 -fag%2:29:00:: 00075021 3 0 -fag%2:41:00:: 02419773 2 0 -fag%2:41:01:: 02592776 1 0 -fag_end%1:06:00:: 03317136 2 0 -fag_end%1:28:00:: 15268367 1 0 -fag_out%2:29:00:: 00075021 1 0 -fagaceae%1:20:00:: 12260208 1 0 -fagales%1:20:00:: 12260021 1 0 -fagged%5:00:00:tired:00 02433451 1 0 -faggot%1:06:00:: 03317233 2 0 -faggot%1:18:00:: 10076033 1 0 -faggot%2:35:00:: 01287242 3 0 -faggot%2:35:01:: 01287388 2 0 -faggot%2:36:00:: 01667816 1 0 -faggot_stitch%1:06:00:: 03317510 1 0 -faggot_up%2:35:00:: 01287242 1 0 -faggoting%1:06:00:: 03317340 1 0 -fagin%1:18:00:: 09598598 1 0 -fagopyrum%1:20:00:: 12601335 1 0 -fagopyrum_esculentum%1:20:00:: 12601494 1 0 -fagot%1:06:00:: 03317233 2 0 -fagot%1:18:00:: 10076033 1 0 -fagot%2:35:00:: 01287242 3 0 -fagot%2:35:01:: 01287388 2 0 -fagot%2:36:00:: 01667816 1 0 -fagot_stitch%1:06:00:: 03317510 1 0 -fagoting%1:06:00:: 03317340 1 0 -fagus%1:20:00:: 12260593 1 0 -fagus_americana%1:20:00:: 12261808 1 0 -fagus_grandifolia%1:20:00:: 12261808 1 0 -fagus_pendula%1:20:00:: 12262018 1 0 -fagus_purpurea%1:20:00:: 12261571 1 0 -fagus_sylvatica%1:20:00:: 12261359 1 0 -fagus_sylvatica_atropunicea%1:20:00:: 12261571 1 0 -fagus_sylvatica_pendula%1:20:00:: 12262018 1 0 -fagus_sylvatica_purpurea%1:20:00:: 12261571 1 0 -fahd%1:18:00:: 10965019 1 0 -fahd_ibn_abdel_aziz_al-saud%1:18:00:: 10965019 1 0 -fahrenheit%1:18:00:: 10965151 1 0 -fahrenheit%3:01:00:: 02725548 1 0 -fahrenheit_scale%1:24:00:: 13852820 1 0 -fahrenheit_thermometer%1:06:00:: 03317673 1 0 -faience%1:06:00:: 03317788 1 0 -fail%2:30:00:: 00434374 4 3 -fail%2:30:04:: 00172909 11 0 -fail%2:30:07:: 00560247 10 0 -fail%2:37:00:: 01799235 3 5 -fail%2:40:00:: 02318403 9 0 -fail%2:41:00:: 02528380 2 33 -fail%2:41:01:: 02523521 7 0 -fail%2:41:02:: 02529284 1 66 -fail%2:41:07:: 02523784 6 0 -fail%2:41:08:: 02599528 5 1 -fail%2:41:12:: 02522319 8 0 -fail-safe%1:06:00:: 03317990 1 0 -fail-safe%5:00:00:safe:01 02058148 2 0 -fail-safe%5:00:00:secure:02 02094514 1 0 -failing%1:04:00:: 00066901 2 0 -failing%1:26:00:: 14462946 1 0 -failing%5:00:00:unsatisfactory:00 02082812 1 0 -faille%1:06:00:: 03317889 1 0 -failure%1:04:00:: 00066636 1 18 -failure%1:04:01:: 00066397 5 1 -failure%1:11:00:: 07317764 2 10 -failure%1:18:00:: 10273064 4 3 -failure%1:26:00:: 14477877 3 3 -failure%1:26:01:: 14059663 7 0 -failure%1:26:02:: 14478433 6 0 -fain%4:02:00:: 00348110 1 0 -fain%5:00:00:willing:00 02565425 1 0 -faineance%1:07:00:: 04637290 1 0 -faineant%5:00:00:idle:00 00294579 1 0 -faint%1:11:00:: 07478318 1 0 -faint%2:29:00:: 00023646 1 1 -faint%5:00:00:cowardly:00 00265989 6 0 -faint%5:00:00:ill:01 02544525 4 1 -faint%5:00:00:indistinct:00 00782216 2 5 -faint%5:00:00:perceptible:00 01747364 1 5 -faint%5:00:00:weak:00 02325097 3 4 -faint%5:00:02:indistinct:00 00782568 5 0 -faint-hearted%5:00:00:cowardly:00 00265989 1 0 -fainthearted%5:00:00:cowardly:00 00265989 1 0 -faintheartedness%1:07:00:: 04860369 1 0 -faintly%4:02:00:: 00070366 1 3 -faintness%1:07:00:: 04704675 5 0 -faintness%1:07:01:: 04991137 3 0 -faintness%1:07:02:: 05041165 2 0 -faintness%1:07:03:: 04860369 4 0 -faintness%1:12:00:: 07480666 1 0 -fair%1:04:00:: 01118182 4 0 -fair%1:04:01:: 00519333 1 1 -fair%1:14:00:: 08408267 3 0 -fair%1:14:01:: 08408557 2 0 -fair%2:35:00:: 01294778 1 1 -fair%3:00:01:: 00955626 4 0 -fair%3:00:03:: 00956131 1 10 -fair%4:02:00:: 00106759 2 0 -fair%4:02:01:: 00285092 1 0 -fair%5:00:00:beautiful:00 00218440 3 1 -fair%5:00:00:blond:00 00244054 10 0 -fair%5:00:00:clear:03 00461091 9 0 -fair%5:00:00:equitable:00 00958475 8 0 -fair%5:00:00:feminine:01 01484342 6 0 -fair%5:00:00:legible:00 01404898 7 0 -fair%5:00:00:moderate:00 01532261 2 2 -fair%5:00:00:ordinary:00 01673061 5 0 -fair-and-square%5:00:00:fair:03 00957099 1 0 -fair-haired%5:00:00:loved:00 01462461 1 0 -fair-maids-of-france%1:20:00:: 12793494 1 0 -fair-minded%5:00:00:fair:03 00956976 1 0 -fair-mindedness%1:09:00:: 06203030 1 0 -fair-trade_act%1:10:00:: 06564640 1 0 -fair-trade_agreement%1:10:00:: 06525132 1 0 -fair_ball%1:04:00:: 00127866 1 0 -fair_catch%1:04:00:: 00139544 1 0 -fair_chance%1:07:00:: 05092969 1 0 -fair_copy%1:10:00:: 06390423 1 0 -fair_deal%1:11:00:: 07293391 1 0 -fair_game%1:18:00:: 10470460 1 0 -fair_hearing%1:04:00:: 01200502 1 0 -fair_sex%1:14:00:: 08477634 1 0 -fair_to_middling%5:00:00:satisfactory:00 02080937 1 0 -fair_trade%1:04:00:: 01092315 2 0 -fair_trade%1:04:01:: 01092403 1 0 -fair_use%1:07:00:: 05214211 1 0 -fair_weather%1:19:00:: 11456462 1 0 -fairbanks%1:18:00:: 10965361 2 0 -fairbanks%1:18:01:: 10965550 1 0 -fairground%1:15:00:: 08614632 1 0 -fairish%5:00:00:blond:00 00244054 2 0 -fairish%5:00:00:moderate:00 01532261 1 0 -fairlead%1:06:00:: 03318136 1 0 -fairly%4:02:00:: 00106759 2 3 -fairly%4:02:02:: 00035718 1 20 -fairly%4:02:03:: 00285092 3 0 -fairness%1:07:00:: 04839154 1 1 -fairness%1:07:01:: 04977247 3 0 -fairness%1:07:02:: 04685396 4 0 -fairness%1:09:00:: 06203030 2 0 -fairness_commission%1:14:00:: 08325237 1 0 -fairway%1:15:00:: 08569319 1 2 -fairway%1:15:01:: 08614900 3 0 -fairway%1:15:02:: 08617751 2 0 -fairway_crested_wheat_grass%1:20:00:: 12105353 1 0 -fairy%1:18:00:: 09540430 1 1 -fairy%1:18:01:: 10076033 2 0 -fairy-ring_mushroom%1:20:00:: 13006894 1 0 -fairy-slipper%1:20:00:: 12049562 1 0 -fairy_armadillo%1:05:00:: 02456275 1 0 -fairy_bell%1:20:00:: 12882945 1 0 -fairy_bluebird%1:05:00:: 01594004 1 0 -fairy_circle%1:20:00:: 13007034 1 0 -fairy_cup%1:20:01:: 12800832 2 0 -fairy_cup%1:20:02:: 13030852 1 0 -fairy_godmother%1:18:00:: 09540939 2 0 -fairy_godmother%1:18:01:: 10076224 1 0 -fairy_lantern%1:20:00:: 12446519 1 0 -fairy_light%1:06:00:: 03318294 1 0 -fairy_ring%1:20:00:: 13007034 1 0 -fairy_shrimp%1:05:00:: 01995514 1 0 -fairy_story%1:10:00:: 07222581 1 0 -fairy_story%1:10:01:: 06757289 2 0 -fairy_swallow%1:05:00:: 01814620 1 0 -fairy_tale%1:10:00:: 07222581 1 0 -fairy_tale%1:10:01:: 06757289 2 0 -fairyland%1:09:00:: 05633044 1 1 -fairyland%1:09:01:: 05627682 2 0 -fairytale%1:10:00:: 07222581 1 3 -fairytale%1:10:01:: 06757289 2 0 -faisal%1:18:00:: 10965700 1 0 -faisal_ibn_abdel_aziz_al-saud%1:18:00:: 10965700 1 0 -faisalabad%1:15:00:: 08976799 1 0 -fait_accompli%1:04:00:: 00047941 1 0 -faith%1:04:00:: 01207187 4 1 -faith%1:09:00:: 05946687 1 18 -faith%1:09:01:: 05943066 2 9 -faith%1:14:00:: 08081668 3 6 -faith_cure%1:04:00:: 00699736 1 0 -faith_healing%1:04:00:: 00699736 1 0 -faithful%1:14:00:: 07991364 2 0 -faithful%1:14:01:: 08223475 1 1 -faithful%3:00:00:: 00958880 1 5 -faithful%3:00:01:: 00960629 3 0 -faithful%5:00:00:accurate:00 00022219 2 1 -faithfully%4:02:00:: 00223395 1 2 -faithfulness%1:07:00:: 04876985 1 0 -faithless%5:00:00:disloyal:00 00962939 1 0 -faithlessly%4:02:00:: 00335809 1 0 -faithlessness%1:07:00:: 04879092 1 0 -fake%1:04:00:: 00172217 3 0 -fake%1:06:00:: 03318438 1 1 -fake%1:18:00:: 10201535 2 0 -fake%2:32:00:: 00839526 3 0 -fake%2:36:00:: 01654271 1 1 -fake%2:41:00:: 02576921 2 0 -fake%5:00:00:artificial:00 01573238 2 0 -fake%5:00:00:counterfeit:00 01117477 1 7 -fake_book%1:06:00:: 03318707 1 0 -fakeer%1:18:00:: 10076307 1 0 -faker%1:18:00:: 10201535 1 1 -fakery%1:04:00:: 00752298 1 0 -fakir%1:18:00:: 10076307 1 0 -fal_la%1:10:00:: 06608617 1 0 -falafel%1:13:00:: 07867164 1 0 -falanga%1:04:00:: 00422114 1 0 -falange%1:14:00:: 08366664 1 0 -falangist%1:18:00:: 10076483 1 0 -falcate%5:00:00:curved:00 02315914 1 0 -falcatifolium%1:20:00:: 11654667 1 0 -falcatifolium_falciforme%1:20:00:: 11654984 1 0 -falcatifolium_taxoides%1:20:00:: 11655152 1 0 -falchion%1:06:00:: 03318865 1 0 -falciform%5:00:00:curved:00 02315914 1 0 -falciform_ligament%1:08:00:: 05295593 1 0 -falco%1:05:00:: 01611252 1 0 -falco_columbarius%1:05:00:: 01612275 1 0 -falco_peregrinus%1:05:00:: 01611472 1 0 -falco_rusticolus%1:05:00:: 01611800 1 0 -falco_sparverius%1:05:00:: 01612122 1 0 -falco_subbuteo%1:05:00:: 01612476 1 0 -falco_tinnunculus%1:05:00:: 01611969 1 0 -falcon%1:05:00:: 01610955 1 2 -falcon%2:33:00:: 01145766 1 0 -falcon-gentil%1:05:00:: 01611674 1 0 -falcon-gentle%1:05:00:: 01611674 1 0 -falconer%1:18:00:: 10076604 1 0 -falconidae%1:05:00:: 01610758 1 0 -falconiformes%1:05:00:: 01604625 1 0 -falconine%3:01:00:: 02992601 1 0 -falconry%1:09:00:: 05635448 1 0 -falderol%1:06:00:: 03376438 1 0 -falkland_islands%1:15:00:: 08718391 1 0 -falkner%1:18:00:: 10967633 1 0 -fall%1:04:01:: 00076884 2 4 -fall%1:04:02:: 00067707 8 1 -fall%1:04:03:: 00756919 5 2 -fall%1:07:00:: 05111835 12 0 -fall%1:11:00:: 07362386 11 0 -fall%1:11:01:: 07427728 6 1 -fall%1:11:02:: 07471371 10 0 -fall%1:11:03:: 07478531 3 3 -fall%1:11:04:: 07370270 7 1 -fall%1:17:00:: 09265620 4 2 -fall%1:28:00:: 15236859 1 14 -fall%1:28:01:: 15169421 9 0 -fall%2:30:00:: 00342443 10 3 -fall%2:30:06:: 00151689 11 3 -fall%2:30:08:: 00147815 3 16 -fall%2:30:09:: 00360678 29 0 -fall%2:30:10:: 00530177 28 0 -fall%2:30:11:: 00561375 26 0 -fall%2:30:12:: 00346839 30 0 -fall%2:30:13:: 00342164 32 0 -fall%2:30:14:: 00561266 27 0 -fall%2:30:15:: 00342314 31 0 -fall%2:35:00:: 01542668 25 0 -fall%2:38:00:: 01970826 2 21 -fall%2:38:01:: 02099413 15 1 -fall%2:38:03:: 01972298 1 43 -fall%2:38:11:: 02037839 22 0 -fall%2:38:14:: 01984119 24 0 -fall%2:38:15:: 01984317 23 0 -fall%2:40:03:: 02358655 14 2 -fall%2:40:05:: 02304507 9 3 -fall%2:40:08:: 02229828 20 0 -fall%2:40:09:: 02230056 19 0 -fall%2:40:12:: 02358922 18 0 -fall%2:40:13:: 02229550 21 0 -fall%2:41:00:: 02385153 13 2 -fall%2:41:01:: 02565911 12 2 -fall%2:41:02:: 02528985 6 4 -fall%2:41:15:: 02566092 17 0 -fall%2:42:00:: 02620213 7 3 -fall%2:42:02:: 02661015 16 0 -fall%2:42:03:: 02729963 4 6 -fall%2:42:04:: 02611976 8 3 -fall%2:43:00:: 02756821 5 4 -fall-blooming%5:00:00:autumnal:00 01255530 1 0 -fall-blooming_hydrangea%1:20:00:: 12789054 1 0 -fall-board%1:06:00:: 03318983 1 0 -fall-flowering%5:00:00:autumnal:00 01255530 1 0 -fall_all_over%2:41:00:: 02514881 1 0 -fall_apart%2:30:03:: 00334186 4 0 -fall_apart%2:30:04:: 00397405 3 0 -fall_apart%2:35:00:: 01369346 2 0 -fall_apart%2:37:00:: 01829126 1 0 -fall_armyworm%1:05:00:: 02298218 1 0 -fall_asleep%2:29:00:: 00017282 1 8 -fall_away%2:30:00:: 00204391 1 2 -fall_away%2:30:01:: 00148472 2 2 -fall_back%2:29:00:: 00093327 6 0 -fall_back%2:33:00:: 01113806 4 1 -fall_back%2:38:00:: 01997862 2 2 -fall_back%2:38:01:: 02039315 1 2 -fall_back%2:38:03:: 01904120 3 2 -fall_back%2:41:00:: 02590072 5 0 -fall_behind%2:33:00:: 01113806 1 2 -fall_behind%2:38:00:: 01997862 2 0 -fall_by_the_wayside%2:33:00:: 01083044 1 0 -fall_cankerworm%1:05:02:: 02288122 1 0 -fall_dandelion%1:20:00:: 11989087 1 0 -fall_down%2:38:15:: 01984317 1 0 -fall_equinox%1:28:00:: 15223750 1 0 -fall_flat%2:41:00:: 02530003 1 0 -fall_for%2:37:00:: 01775914 1 1 -fall_for%2:41:00:: 02537642 2 0 -fall_from_grace%2:41:00:: 02517443 1 0 -fall_guy%1:18:00:: 09921409 1 0 -fall_in%2:38:00:: 01989053 1 3 -fall_in%2:41:00:: 02434976 3 0 -fall_in%2:41:02:: 02434859 2 1 -fall_in_line%2:31:12:: 00733804 1 0 -fall_in_love%2:30:00:: 00148597 1 7 -fall_into%2:42:00:: 02705680 1 14 -fall_into_place%2:31:00:: 00591755 1 0 -fall_of_man%1:11:00:: 07418146 1 0 -fall_off%2:30:00:: 00432839 2 0 -fall_off%2:30:01:: 00148472 3 0 -fall_off%2:35:00:: 01300040 1 1 -fall_open%2:38:00:: 01982253 1 1 -fall_out%2:30:00:: 00339934 5 0 -fall_out%2:32:00:: 00775692 1 1 -fall_out%2:38:00:: 02097925 3 0 -fall_out%2:38:02:: 02008674 4 0 -fall_out%2:42:02:: 02720149 2 0 -fall_over%2:29:00:: 00031277 1 1 -fall_over_backwards%2:29:00:: 00011361 1 0 -fall_short%2:37:12:: 01799484 1 1 -fall_short_of%2:42:00:: 02671761 1 3 -fall_through%2:41:00:: 02530003 1 0 -fall_under%2:42:00:: 02705680 1 0 -fall_upon%2:40:13:: 02286687 1 0 -fall_webworm%1:05:00:: 02308735 1 0 -falla%1:18:00:: 10965836 1 0 -fallacious%5:00:00:dishonest:00 01223941 2 0 -fallacious%5:00:00:incorrect:00 00633084 3 0 -fallacious%5:00:00:invalid:00 02500179 1 0 -fallaciousness%1:07:00:: 04810727 1 0 -fallacy%1:09:00:: 05893916 1 0 -fallal%1:06:00:: 02787435 1 0 -fallback%1:04:00:: 00057306 1 0 -fallboard%1:06:00:: 03318983 1 0 -fallen%5:00:00:dead:01 00097577 4 0 -fallen%5:00:00:destroyed:00 00736196 2 0 -fallen%5:00:00:down:00 02493137 1 1 -fallen%5:00:00:unchaste:00 00362173 3 0 -fallen_arch%1:08:00:: 05577060 1 0 -faller%1:18:00:: 10076778 2 0 -faller%1:18:01:: 10276045 1 0 -fallibility%1:07:00:: 04806512 1 0 -fallible%3:00:00:: 00964090 1 0 -fallible%5:00:00:human:00 01259391 2 0 -falling%3:00:00:: 02487244 2 0 -falling%5:00:00:decreasing:00 02537636 1 1 -falling%5:00:00:descending:00 02486628 3 0 -falling_off%1:22:00:: 13556509 1 1 -falling_out%1:11:00:: 07313814 1 0 -falloff%1:22:00:: 13556509 1 2 -fallopian_tube%1:08:00:: 05518870 1 0 -fallopio%1:18:00:: 10965966 1 0 -fallopius%1:18:00:: 10965966 1 0 -fallot%1:18:00:: 10966145 1 0 -fallot's_syndrome%1:26:00:: 14469766 1 0 -fallot's_tetralogy%1:26:00:: 14469766 1 0 -fallout%1:19:00:: 11417387 2 0 -fallout%1:27:00:: 14858950 1 10 -fallout_shelter%1:06:00:: 03319167 1 2 -fallow%1:17:00:: 09278295 1 0 -fallow%5:00:00:unexploited:00 00943092 2 0 -fallow%5:00:00:unplowed:00 01833401 1 1 -fallow_deer%1:05:00:: 02433318 1 0 -falls%1:17:00:: 09475292 2 0 -falls%1:20:00:: 12415765 1 0 -false%3:00:00:: 02461723 1 9 -false%4:02:00:: 00335809 1 0 -false%5:00:00:artificial:00 01573238 6 0 -false%5:00:00:counterfeit:00 01116857 9 0 -false%5:00:00:dishonest:00 01224650 7 0 -false%5:00:00:inconstant:00 00584403 10 0 -false%5:00:00:incorrect:00 00633235 2 1 -false%5:00:00:inharmonious:00 01164420 8 0 -false%5:00:00:insincere:00 02182088 4 0 -false%5:00:00:invalid:00 02500379 3 0 -false%5:00:00:unrealistic:00 01942507 5 0 -false_alarm%1:10:00:: 07225333 1 0 -false_alumroot%1:20:00:: 12803226 1 0 -false_asphodel%1:20:00:: 12462032 1 0 -false_azalea%1:20:00:: 12241880 1 0 -false_baby's_breath%1:20:00:: 12666369 1 0 -false_beachdrops%1:20:00:: 12259316 1 0 -false_belief%1:09:00:: 05893916 1 0 -false_bittersweet%1:20:00:: 12748248 1 0 -false_bottom%1:06:00:: 03319296 1 0 -false_bracken%1:20:00:: 13191620 1 0 -false_buckthorn%1:20:00:: 12773142 1 0 -false_bugbane%1:20:00:: 11738997 1 0 -false_calyx%1:20:00:: 11692108 1 0 -false_chamomile%1:20:00:: 11941478 1 0 -false_deathcap%1:20:00:: 13002925 1 0 -false_dogwood%1:20:00:: 12741792 1 0 -false_dragon_head%1:20:00:: 12862116 1 0 -false_dragonhead%1:20:00:: 12862116 1 0 -false_face%1:06:00:: 03319457 1 0 -false_flax%1:20:00:: 11880610 1 0 -false_foxglove%1:20:01:: 12878784 2 0 -false_foxglove%1:20:02:: 12879068 1 0 -false_fruit%1:20:00:: 13138842 1 0 -false_garlic%1:20:00:: 12435486 1 0 -false_gavial%1:05:00:: 01697978 1 0 -false_glottis%1:08:00:: 05610365 1 0 -false_goatsbeard%1:20:00:: 12795209 1 0 -false_gromwell%1:20:00:: 12822466 1 0 -false_hair%1:06:00:: 03476083 1 0 -false_heather%1:20:00:: 12376553 1 0 -false_hellebore%1:20:00:: 12464476 1 0 -false_imprisonment%1:04:00:: 01147222 1 0 -false_indigo%1:20:01:: 12504570 3 0 -false_indigo%1:20:02:: 12504783 2 0 -false_indigo%1:20:03:: 12509476 1 0 -false_labor%1:04:00:: 00370688 1 0 -false_lily_of_the_valley%1:20:01:: 12473608 2 0 -false_lily_of_the_valley%1:20:02:: 12473840 1 0 -false_lupine%1:20:00:: 12573474 1 0 -false_mallow%1:20:01:: 12183816 2 0 -false_mallow%1:20:02:: 12187663 1 0 -false_mildew%1:20:00:: 12980840 1 0 -false_mistletoe%1:20:00:: 12739801 1 0 -false_miterwort%1:20:01:: 12803958 1 0 -false_miterwort%1:20:02:: 12803754 2 0 -false_mitrewort%1:20:01:: 12803958 1 0 -false_mitrewort%1:20:02:: 12803754 2 0 -false_morel%1:20:00:: 13035241 1 0 -false_name%1:10:00:: 06338158 1 0 -false_nettle%1:20:00:: 12393086 1 0 -false_oat%1:20:00:: 12108871 1 0 -false_pimpernel%1:20:00:: 12092930 1 0 -false_pregnancy%1:26:00:: 14046038 1 0 -false_pretence%1:04:00:: 00772026 1 0 -false_pretense%1:04:00:: 00772026 1 0 -false_ragweed%1:20:00:: 11985321 1 0 -false_return%1:10:00:: 06549318 1 0 -false_rue%1:20:00:: 11735977 1 0 -false_rue_anemone%1:20:00:: 11735977 1 0 -false_saber-toothed_tiger%1:05:00:: 02131211 1 0 -false_saffron%1:20:00:: 11946051 1 0 -false_sago%1:20:00:: 11601333 1 0 -false_sarsaparilla%1:20:00:: 11797722 1 0 -false_scorpion%1:05:00:: 01770795 1 0 -false_smut%1:26:00:: 14284309 1 0 -false_tamarisk%1:20:00:: 12386945 1 0 -false_teeth%1:06:00:: 03319576 1 0 -false_topaz%1:27:00:: 15076523 1 0 -false_truffle%1:20:01:: 12969131 2 0 -false_truffle%1:20:02:: 12971400 1 0 -false_vampire%1:05:00:: 02144593 1 0 -false_vampire_bat%1:05:00:: 02144593 1 0 -false_verdict%1:04:00:: 01193044 1 0 -false_vocal_cord%1:08:00:: 05530657 1 0 -false_vocal_fold%1:08:00:: 05530657 1 0 -false_wintergreen%1:20:00:: 12256325 1 0 -false_witness%1:18:00:: 10416909 1 0 -falsehood%1:04:00:: 00750890 2 0 -falsehood%1:10:00:: 06756407 1 0 -falsely%4:02:00:: 00336065 2 0 -falsely%4:02:01:: 00336293 1 0 -falseness%1:07:00:: 04867871 3 0 -falseness%1:07:01:: 04879092 2 0 -falseness%1:26:00:: 13960464 1 0 -falsetto%1:07:00:: 05127357 1 0 -falsetto%5:00:00:high:03 01214115 1 0 -falsie%1:06:00:: 03319653 1 0 -falsifiable%5:00:00:empirical:00 00859453 1 0 -falsification%1:04:00:: 00750890 3 0 -falsification%1:04:01:: 00155298 4 0 -falsification%1:04:02:: 00751145 2 0 -falsification%1:09:00:: 05826469 1 0 -falsifier%1:18:00:: 10076957 1 0 -falsify%2:30:00:: 00202236 4 0 -falsify%2:30:03:: 00201407 5 0 -falsify%2:31:00:: 00667942 3 0 -falsify%2:32:00:: 00835903 1 3 -falsify%2:41:00:: 02576921 2 0 -falsifying%1:04:00:: 00155298 1 0 -falsity%1:10:00:: 06756407 2 1 -falsity%1:26:00:: 13960464 1 1 -falstaff%1:18:00:: 09598750 1 0 -falstaffian%3:01:00:: 03027692 1 0 -falter%1:04:00:: 01063350 1 0 -falter%2:32:00:: 00981544 4 1 -falter%2:38:00:: 01901133 3 1 -falter%2:38:01:: 01901289 2 2 -falter%2:42:00:: 02740204 1 3 -faltering%1:04:00:: 01063350 1 1 -faltering%5:00:00:unsteady:00 02304035 1 1 -falteringly%4:02:00:: 00174232 1 0 -falun_gong%1:14:00:: 08472120 1 0 -fame%1:26:01:: 14437386 1 7 -fame%1:26:02:: 14438898 2 0 -famed%5:00:00:known:00 01375831 1 3 -familial%3:01:00:: 02940759 1 0 -familial%5:00:00:inheritable:00 01314537 2 0 -familial_hypercholesterolemia%1:26:00:: 14466974 1 0 -familiar%1:18:00:: 09545171 3 0 -familiar%1:18:01:: 10077106 1 0 -familiar%1:18:02:: 09945905 2 0 -familiar%3:00:00:: 00965606 1 23 -familiar%3:00:02:: 00970249 2 1 -familiar%5:00:00:close:02 00453053 4 0 -familiar%5:00:00:informed:00 01307067 3 1 -familiar_spirit%1:18:00:: 09545171 1 0 -familiarisation%1:09:00:: 05758382 1 0 -familiarise%2:32:00:: 00874175 1 0 -familiarised%5:00:00:oriented:00 01682677 1 0 -familiarising%5:00:00:orienting:00 01685131 1 0 -familiarity%1:04:00:: 00737070 5 0 -familiarity%1:07:01:: 04796291 2 1 -familiarity%1:07:02:: 04655442 3 1 -familiarity%1:07:03:: 04912240 4 0 -familiarity%1:09:00:: 05817145 1 2 -familiarization%1:09:00:: 05758382 1 0 -familiarize%2:32:00:: 00874175 1 0 -familiarized%5:00:00:oriented:00 01682677 1 0 -familiarizing%5:00:00:orienting:00 01685131 1 0 -familiarly%4:02:00:: 00336567 1 1 -family%1:14:00:: 07970406 2 52 -family%1:14:01:: 07970721 4 5 -family%1:14:02:: 08078020 1 66 -family%1:14:03:: 08107499 6 2 -family%1:14:04:: 07997703 3 8 -family%1:14:05:: 08227916 8 0 -family%1:14:06:: 08246302 7 0 -family%1:18:00:: 10236304 5 2 -family_acanthaceae%1:20:00:: 12811856 1 0 -family_acanthisittidae%1:05:00:: 01588172 1 0 -family_acanthuridae%1:05:00:: 02621107 1 0 -family_acaridae%1:05:00:: 01780026 1 0 -family_accipitridae%1:05:00:: 01605119 1 0 -family_aceraceae%1:20:00:: 12751823 1 0 -family_acipenseridae%1:05:00:: 02640093 1 0 -family_acrididae%1:05:00:: 02226598 1 0 -family_actinidiaceae%1:20:00:: 12370842 1 0 -family_actinomycetaceae%1:05:00:: 01375460 1 0 -family_adelgidae%1:05:00:: 02254370 1 0 -family_adiantaceae%1:20:00:: 13179216 1 0 -family_aegypiidae%1:05:00:: 01616551 1 0 -family_aepyornidae%1:05:00:: 01522147 1 0 -family_agamidae%1:05:00:: 01687441 1 0 -family_agaricaceae%1:20:00:: 13000372 1 0 -family_agavaceae%1:20:00:: 12476036 1 0 -family_agonidae%1:05:00:: 02647503 1 0 -family_ailuropodidae%1:05:00:: 02510065 1 0 -family_aizoaceae%1:20:00:: 11818945 1 0 -family_akeridae%1:05:00:: 01951721 1 0 -family_alaudidae%1:05:00:: 01527480 1 0 -family_albuginaceae%1:20:00:: 12981595 1 0 -family_albulidae%1:05:00:: 02542162 1 0 -family_alcedinidae%1:05:00:: 01826998 1 0 -family_alcidae%1:05:00:: 02045024 1 0 -family_aleyrodidae%1:05:00:: 02246284 1 0 -family_alismataceae%1:20:00:: 12611815 1 0 -family_alliaceae%1:20:00:: 12430878 1 0 -family_alligatoridae%1:05:00:: 01698144 1 0 -family_allioniaceae%1:20:00:: 11835806 1 0 -family_aloeaceae%1:20:00:: 12436260 1 0 -family_alopiidae%1:05:00:: 01485673 1 0 -family_alstroemeriaceae%1:20:00:: 12438046 1 0 -family_amaranthaceae%1:20:00:: 11822557 1 0 -family_amaryllidaceae%1:20:00:: 12418680 1 0 -family_ambrosiaceae%1:20:00:: 11919232 1 0 -family_ambystomatidae%1:05:00:: 01631759 1 0 -family_ameiuridae%1:05:00:: 02518813 1 0 -family_amiidae%1:05:00:: 02638835 1 0 -family_ammodytidae%1:05:00:: 02618244 1 0 -family_amphioxidae%1:05:00:: 01467504 1 0 -family_amphisbaenidae%1:05:00:: 01682920 1 0 -family_amphiumidae%1:05:00:: 01638482 1 0 -family_amygdalaceae%1:20:00:: 12644464 1 0 -family_anabantidae%1:05:00:: 02556014 1 0 -family_anacardiaceae%1:20:00:: 12758639 1 0 -family_anarhichadidae%1:05:00:: 02616572 1 0 -family_anatidae%1:05:00:: 01845627 1 0 -family_ancylidae%1:05:00:: 01949684 1 0 -family_ancylostomatidae%1:05:00:: 01932800 1 0 -family_andrenidae%1:05:00:: 02210096 1 0 -family_anguidae%1:05:00:: 01689226 1 0 -family_anguillidae%1:05:00:: 02526486 1 0 -family_anhimidae%1:05:00:: 01860337 1 0 -family_anhingidae%1:05:00:: 02054251 1 0 -family_anniellidae%1:05:00:: 01691085 1 0 -family_annonaceae%1:20:00:: 11693566 1 0 -family_anobiidae%1:05:00:: 02177644 1 0 -family_anomalopidae%1:05:00:: 01451524 1 0 -family_anomiidae%1:05:00:: 01962223 1 0 -family_antedonidae%1:05:00:: 02320621 1 0 -family_antennariidae%1:05:00:: 02548990 1 0 -family_anthocerotaceae%1:20:00:: 11538582 1 0 -family_antilocapridae%1:05:00:: 02429123 1 0 -family_aphididae%1:05:00:: 02252429 1 0 -family_aphyllanthaceae%1:20:00:: 12440128 1 0 -family_apiaceae%1:20:00:: 12930044 1 0 -family_apidae%1:05:00:: 02207942 1 0 -family_aplodontiidae%1:05:00:: 02363681 1 0 -family_aplysiidae%1:05:00:: 01950952 1 0 -family_apocynaceae%1:20:00:: 11766609 1 0 -family_apodidae%1:05:00:: 01831930 1 0 -family_apogonidae%1:05:00:: 02571983 1 0 -family_apterygidae%1:05:00:: 01520284 1 0 -family_aquifoliaceae%1:20:00:: 12756286 1 0 -family_araceae%1:20:00:: 11778534 1 0 -family_araliaceae%1:20:00:: 11796744 1 0 -family_araucariaceae%1:20:00:: 11645271 1 0 -family_arcellidae%1:05:00:: 01394193 1 0 -family_arcidae%1:05:00:: 01963017 1 0 -family_arctiidae%1:05:00:: 02305245 1 0 -family_ardeidae%1:05:00:: 02007721 1 0 -family_arecaceae%1:20:00:: 12581381 1 0 -family_argasidae%1:05:00:: 01779340 1 0 -family_argentinidae%1:05:00:: 02542598 1 0 -family_argiopidae%1:05:00:: 01772782 1 0 -family_argonautidae%1:05:00:: 01970342 1 0 -family_ariidae%1:05:00:: 02520669 1 0 -family_aristolochiaceae%1:20:00:: 11801038 1 0 -family_armadillidiidae%1:05:00:: 01991233 1 0 -family_artamidae%1:05:00:: 01596761 1 0 -family_ascaphidae%1:05:00:: 01644542 1 0 -family_ascaridae%1:05:00:: 01930485 1 0 -family_asclepiadaceae%1:20:00:: 13233012 1 0 -family_asilidae%1:05:00:: 02195996 1 0 -family_asparagaceae%1:20:00:: 12440623 1 0 -family_aspergillaceae%1:20:00:: 13027190 1 0 -family_asphodelaceae%1:20:00:: 12441770 1 0 -family_aspleniaceae%1:20:00:: 13179972 1 0 -family_astacidae%1:05:00:: 01984958 1 0 -family_asteraceae%1:20:00:: 11911591 1 0 -family_atherinidae%1:05:00:: 02602215 1 0 -family_athiorhodaceae%1:05:00:: 01361840 1 0 -family_athyriaceae%1:20:00:: 13192025 1 0 -family_atrichornithidae%1:05:00:: 01545752 1 0 -family_atropidae%1:05:00:: 02261184 1 0 -family_aulostomidae%1:05:00:: 01457576 1 0 -family_auriculariaceae%1:20:00:: 13062112 1 0 -family_avicenniaceae%1:20:00:: 12915400 1 0 -family_azollaceae%1:20:00:: 12959226 1 0 -family_babesiidae%1:05:00:: 01425336 1 0 -family_bacillaceae%1:05:00:: 01356459 1 0 -family_bacteroidaceae%1:05:00:: 01364587 1 0 -family_balaenicipitidae%1:05:00:: 02005102 1 0 -family_balaenidae%1:05:00:: 02063516 1 0 -family_balaenopteridae%1:05:00:: 02064154 1 0 -family_balanidae%1:05:00:: 01998467 1 0 -family_balistidae%1:05:00:: 02652979 1 0 -family_balsaminaceae%1:20:00:: 12683950 1 0 -family_bangiaceae%1:05:00:: 01415256 1 0 -family_bathyergidae%1:05:00:: 02369012 1 0 -family_batidaceae%1:20:00:: 11827169 1 0 -family_batrachoididae%1:05:00:: 02548522 1 0 -family_begoniaceae%1:20:00:: 12359734 1 0 -family_belemnitidae%1:05:00:: 01973566 1 0 -family_belonidae%1:05:00:: 02549796 1 0 -family_belostomatidae%1:05:00:: 02242004 1 0 -family_bennettitaceae%1:20:00:: 11604393 1 0 -family_berberidaceae%1:20:00:: 11697158 1 0 -family_betulaceae%1:20:00:: 12280487 1 0 -family_bible%1:10:00:: 06448283 1 0 -family_bignoniaceae%1:20:00:: 12813393 1 0 -family_bittacidae%1:05:00:: 02162831 1 0 -family_blastodiaceae%1:20:00:: 12978654 1 0 -family_blattidae%1:05:00:: 02233577 1 0 -family_blechnaceae%1:20:00:: 13184492 1 0 -family_blenniidae%1:05:00:: 02612982 1 0 -family_boidae%1:05:00:: 01741744 1 0 -family_boletaceae%1:20:00:: 13054211 1 0 -family_bombacaceae%1:20:00:: 12188985 1 0 -family_bombycidae%1:05:00:: 02300018 1 0 -family_bombycillidae%1:05:00:: 01603316 1 0 -family_bombyliidae%1:05:00:: 02195693 1 0 -family_boraginaceae%1:20:00:: 12815925 1 0 -family_bothidae%1:05:00:: 02660769 1 0 -family_bovidae%1:05:00:: 02400139 1 0 -family_bradypodidae%1:05:00:: 02456776 1 0 -family_bramidae%1:05:00:: 02582437 1 0 -family_branchiobdellidae%1:05:00:: 01935743 1 0 -family_branchiostegidae%1:05:00:: 02582919 1 0 -family_branchiostomidae%1:05:00:: 01467504 1 0 -family_brassicaceae%1:20:00:: 11867525 1 0 -family_brevicipitidae%1:05:00:: 01652583 1 0 -family_bromeliaceae%1:20:00:: 12606907 1 0 -family_brotulidae%1:05:00:: 02558980 1 0 -family_bruchidae%1:05:00:: 02181863 1 0 -family_bryaceae%1:20:00:: 11540970 1 0 -family_buccinidae%1:05:00:: 01947275 1 0 -family_bucconidae%1:05:00:: 01842380 1 0 -family_bucerotidae%1:05:00:: 01829143 1 0 -family_bufonidae%1:05:00:: 01645634 1 0 -family_burhinidae%1:05:00:: 02039942 1 0 -family_burmanniaceae%1:20:00:: 12087207 1 0 -family_burseraceae%1:20:00:: 12690388 1 0 -family_business%1:14:00:: 08383909 1 3 -family_buxaceae%1:20:00:: 12745788 1 0 -family_cactaceae%1:20:00:: 11841529 1 0 -family_caeciliadae%1:05:00:: 01655116 1 0 -family_caeciliidae%1:05:00:: 01655116 1 0 -family_caenolestidae%1:05:00:: 01875717 1 0 -family_caesalpiniaceae%1:20:00:: 12487394 1 0 -family_callionymidae%1:05:00:: 02618697 1 0 -family_calliphoridae%1:05:00:: 02191449 1 0 -family_callithricidae%1:05:00:: 02490030 1 0 -family_callitrichaceae%1:20:00:: 12693590 1 0 -family_calostomataceae%1:20:00:: 13041725 1 0 -family_calycanthaceae%1:20:00:: 11700401 1 0 -family_camelidae%1:05:00:: 02436813 1 0 -family_campanulaceae%1:20:00:: 12036533 1 0 -family_cancridae%1:05:00:: 01977684 1 0 -family_canellaceae%1:20:00:: 12371911 1 0 -family_canidae%1:05:00:: 02083038 1 0 -family_cannabidaceae%1:20:00:: 12396255 1 0 -family_cannaceae%1:20:00:: 12350433 1 0 -family_capitonidae%1:05:00:: 01842111 1 0 -family_capparidaceae%1:20:00:: 11864602 1 0 -family_caprifoliaceae%1:20:00:: 12671157 1 0 -family_caprimulgidae%1:05:00:: 01835087 1 0 -family_caproidae%1:05:00:: 01453188 1 0 -family_capromyidae%1:05:00:: 02366702 1 0 -family_capsidae%1:05:00:: 02237239 1 0 -family_carabidae%1:05:00:: 02166986 1 0 -family_carangidae%1:05:00:: 02575766 1 0 -family_carapidae%1:05:00:: 02559232 1 0 -family_carcharhinidae%1:05:00:: 01488539 1 0 -family_carchariidae%1:05:00:: 01487077 1 0 -family_cardiidae%1:05:00:: 01959668 1 0 -family_cariamidae%1:05:00:: 02013889 1 0 -family_caricaceae%1:20:00:: 12372708 1 0 -family_carpinaceae%1:20:00:: 12286372 1 0 -family_caryocaraceae%1:20:00:: 12373361 1 0 -family_caryophyllaceae%1:20:00:: 11804604 1 0 -family_castoridae%1:05:00:: 02362721 1 0 -family_casuaridae%1:05:00:: 01519228 1 0 -family_casuarinaceae%1:20:00:: 12224522 1 0 -family_cathartidae%1:05:00:: 01618671 1 0 -family_catostomidae%1:05:00:: 01444520 1 0 -family_caviidae%1:05:00:: 02364221 1 0 -family_cebidae%1:05:00:: 02491590 1 0 -family_cecidomyidae%1:05:00:: 02189214 1 0 -family_cecropiaceae%1:20:00:: 12404314 1 0 -family_celastraceae%1:20:00:: 12747563 1 0 -family_centrarchidae%1:05:00:: 02562085 1 0 -family_centriscidae%1:05:00:: 01457276 1 0 -family_centropomidae%1:05:00:: 02559606 1 0 -family_cephalobidae%1:05:00:: 01931845 1 0 -family_cephalotaceae%1:20:00:: 12784543 1 0 -family_cephalotaxaceae%1:20:00:: 11648428 1 0 -family_cerambycidae%1:05:00:: 02168542 1 0 -family_ceratodontidae%1:05:00:: 02516427 1 0 -family_ceratophyllaceae%1:20:00:: 11701903 1 0 -family_ceratopogonidae%1:05:00:: 02202509 1 0 -family_ceratopsidae%1:05:00:: 01703866 1 0 -family_ceratostomataceae%1:20:00:: 12964572 1 0 -family_cercidiphyllaceae%1:20:00:: 11702428 1 0 -family_cercopidae%1:05:00:: 02257536 1 0 -family_cercopithecidae%1:05:00:: 02483915 1 0 -family_certhiidae%1:05:00:: 01589125 1 0 -family_cervidae%1:05:00:: 02429695 1 0 -family_cestidae%1:05:00:: 01920735 1 0 -family_cetorhinidae%1:05:00:: 01485306 1 0 -family_chaetodontidae%1:05:00:: 02605139 1 0 -family_chalcidae%1:05:00:: 02217334 1 0 -family_chalcididae%1:05:00:: 02217334 1 0 -family_chamaeleonidae%1:05:00:: 01693472 1 0 -family_chamaeleontidae%1:05:00:: 01693472 1 0 -family_characeae%1:05:00:: 01412479 1 0 -family_characidae%1:05:00:: 02583211 1 0 -family_characinidae%1:05:00:: 02583457 1 0 -family_charadriidae%1:05:00:: 02023133 1 0 -family_chelonidae%1:05:00:: 01663169 1 0 -family_cheloniidae%1:05:00:: 01663169 1 0 -family_chelydridae%1:05:00:: 01665761 1 0 -family_chenopodiaceae%1:20:00:: 11827775 1 0 -family_chermidae%1:05:00:: 02256010 1 0 -family_chimaeridae%1:05:00:: 01481063 1 0 -family_chinchillidae%1:05:00:: 02367131 1 0 -family_chironomidae%1:05:00:: 02203008 1 0 -family_chlamydiaceae%1:05:00:: 01372372 1 0 -family_chlamydomonadaceae%1:05:00:: 01409477 1 0 -family_chloranthaceae%1:20:00:: 13151265 1 0 -family_chlorophthalmidae%1:05:00:: 02543737 1 0 -family_chrysochloridae%1:05:00:: 01890274 1 0 -family_chrysomelidae%1:05:00:: 02169345 1 0 -family_chrysopidae%1:05:00:: 02264734 1 0 -family_chytridiaceae%1:20:00:: 12978232 1 0 -family_cicadellidae%1:05:00:: 02258780 1 0 -family_cicadidae%1:05:00:: 02256365 1 0 -family_cichlidae%1:05:00:: 02585732 1 0 -family_cicindelidae%1:05:00:: 02164973 1 0 -family_ciconiidae%1:05:00:: 02001821 1 0 -family_cimicidae%1:05:00:: 02240223 1 0 -family_cinclidae%1:05:00:: 01601550 1 0 -family_circle%1:06:00:: 04164199 1 0 -family_cistaceae%1:20:00:: 12374002 1 0 -family_cladoniaceae%1:20:00:: 12990800 1 0 -family_clathraceae%1:20:00:: 13042514 1 0 -family_clavariaceae%1:20:00:: 12985629 1 0 -family_cleridae%1:05:00:: 02170848 1 0 -family_clethraceae%1:20:00:: 12249821 1 0 -family_clinidae%1:05:00:: 02613960 1 0 -family_clupeidae%1:05:00:: 02529515 1 0 -family_clusiaceae%1:20:00:: 12363988 1 0 -family_cobitidae%1:05:00:: 01438461 1 0 -family_coccidae%1:05:00:: 02248744 1 0 -family_coccinellidae%1:05:00:: 02165247 1 0 -family_coerebidae%1:05:00:: 01538775 1 0 -family_colchicaceae%1:20:00:: 12455101 1 0 -family_colubridae%1:05:00:: 01726960 1 0 -family_columbidae%1:05:00:: 01811682 1 0 -family_comatulidae%1:05:00:: 02320769 1 0 -family_combretaceae%1:20:00:: 12323411 1 0 -family_commelinaceae%1:20:00:: 12605965 1 0 -family_compositae%1:20:00:: 11911591 1 0 -family_congridae%1:05:00:: 02527498 1 0 -family_connaraceae%1:20:00:: 11746224 1 0 -family_convallariaceae%1:20:00:: 12471150 1 0 -family_convolvulaceae%1:20:00:: 12823164 1 0 -family_coprinaceae%1:20:00:: 13005835 1 0 -family_coraciidae%1:05:00:: 01826223 1 0 -family_cordaitaceae%1:20:00:: 11606661 1 0 -family_cordylidae%1:05:00:: 01684941 1 0 -family_coregonidae%1:05:00:: 02538730 1 0 -family_coreidae%1:05:00:: 02239347 1 0 -family_corixidae%1:05:00:: 02242942 1 0 -family_cornaceae%1:20:00:: 12946088 1 0 -family_cortinariaceae%1:20:00:: 13074084 1 0 -family_corvidae%1:05:00:: 01578341 1 0 -family_corydalidae%1:05:00:: 02265717 1 0 -family_corylaceae%1:20:00:: 12288422 1 0 -family_corynebacteriaceae%1:05:00:: 01366015 1 0 -family_coryphaenidae%1:05:00:: 02581803 1 0 -family_cotingidae%1:05:00:: 01550429 1 0 -family_cottidae%1:05:00:: 02644967 1 0 -family_court%1:14:00:: 08332090 1 0 -family_cracidae%1:05:00:: 01799086 1 0 -family_cracticidae%1:05:00:: 01582625 1 0 -family_crangonidae%1:05:00:: 01986538 1 0 -family_crassulaceae%1:20:00:: 12785110 1 0 -family_cricetidae%1:05:00:: 02335349 1 0 -family_crocodylidae%1:05:00:: 01696849 1 0 -family_crotalidae%1:05:00:: 01753721 1 0 -family_cruciferae%1:20:00:: 11867525 1 0 -family_cryptobranchidae%1:05:00:: 01633047 1 0 -family_cryptocercidae%1:05:00:: 02235321 1 0 -family_cryptogrammataceae%1:20:00:: 13227009 1 0 -family_ctenizidae%1:05:00:: 01775592 1 0 -family_cuculidae%1:05:00:: 01822773 1 0 -family_cucurbitaceae%1:20:00:: 12157276 1 0 -family_culicidae%1:05:00:: 02199999 1 0 -family_cunoniaceae%1:20:00:: 12787007 1 0 -family_cupressaceae%1:20:00:: 11629501 1 0 -family_curculionidae%1:05:00:: 02178244 1 0 -family_cuterebridae%1:05:00:: 02193799 1 0 -family_cyatheaceae%1:20:00:: 13187031 1 0 -family_cycadaceae%1:20:00:: 11600671 1 0 -family_cyclopteridae%1:05:00:: 02646377 1 0 -family_cymatiidae%1:05:00:: 01947613 1 0 -family_cynipidae%1:05:00:: 02216547 1 0 -family_cynocephalidae%1:05:00:: 02502212 1 0 -family_cynoglossidae%1:05:00:: 02663352 1 0 -family_cyperaceae%1:20:00:: 12149751 1 0 -family_cypraeidae%1:05:00:: 01953032 1 0 -family_cyprinidae%1:05:00:: 01438720 1 0 -family_cyprinodontidae%1:05:00:: 01446283 1 0 -family_cyrilliaceae%1:20:00:: 12750306 1 0 -family_dacninae%1:05:00:: 01538775 1 0 -family_dacrymycetaceae%1:20:00:: 13062630 1 0 -family_dactylopiidae%1:05:00:: 02249995 1 0 -family_dactylopteridae%1:05:00:: 02651846 1 0 -family_dactyloscopidae%1:05:00:: 02612046 1 0 -family_danaidae%1:05:00:: 02279442 1 0 -family_dasyatidae%1:05:00:: 01497878 1 0 -family_dasypodidae%1:05:00:: 02454119 1 0 -family_dasyproctidae%1:05:00:: 02365672 1 0 -family_dasyuridae%1:05:00:: 01883212 1 0 -family_dasyurinae%1:05:00:: 01883212 1 0 -family_daubentoniidae%1:05:00:: 02497832 1 0 -family_davalliaceae%1:20:00:: 13187604 1 0 -family_delphinidae%1:05:00:: 02068735 1 0 -family_dematiaceae%1:20:00:: 13080471 1 0 -family_dendrocolaptidae%1:05:00:: 01554139 1 0 -family_dennstaedtiaceae%1:20:00:: 13188973 1 0 -family_dermestidae%1:05:00:: 02170269 1 0 -family_dermochelyidae%1:05:00:: 01665238 1 0 -family_desmidiaceae%1:05:00:: 01413188 1 0 -family_desmodontidae%1:05:00:: 02150306 1 0 -family_diapensiaceae%1:20:00:: 12250413 1 0 -family_diaspididae%1:05:00:: 02249365 1 0 -family_dicamptodontidae%1:05:00:: 01634684 1 0 -family_dicksoniaceae%1:20:00:: 13190218 1 0 -family_dicranaceae%1:20:00:: 11540439 1 0 -family_didelphidae%1:05:00:: 01874784 1 0 -family_dilleniaceae%1:20:00:: 12362844 1 0 -family_dinornithidae%1:05:00:: 01522789 1 0 -family_diodontidae%1:05:00:: 02655355 1 0 -family_diomedeidae%1:05:00:: 02058074 1 0 -family_dioscoreaceae%1:20:00:: 12087650 1 0 -family_dipodidae%1:05:00:: 02351518 1 0 -family_dipsacaceae%1:20:00:: 12682054 1 0 -family_dipterocarpaceae%1:20:00:: 12376950 1 0 -family_discoglossidae%1:05:00:: 01647803 1 0 -family_doctor%1:18:00:: 10077278 1 0 -family_doliolidae%1:05:00:: 01469886 1 0 -family_dracunculidae%1:05:00:: 01933686 1 0 -family_drepanididae%1:05:00:: 01544544 1 0 -family_dromaeosauridae%1:05:00:: 01717666 1 0 -family_droseraceae%1:20:00:: 12782108 1 0 -family_drosophilidae%1:05:00:: 02197413 1 0 -family_dryopteridaceae%1:20:00:: 13192025 1 0 -family_dugongidae%1:05:00:: 02074004 1 0 -family_dytiscidae%1:05:00:: 02177068 1 0 -family_ebenaceae%1:20:00:: 12770068 1 0 -family_echeneidae%1:05:00:: 02574651 1 0 -family_echeneididae%1:05:00:: 02574651 1 0 -family_edaphosauridae%1:05:00:: 01722085 1 0 -family_eimeriidae%1:05:00:: 01423001 1 0 -family_elaeagnaceae%1:20:00:: 12325497 1 0 -family_elaeocarpaceae%1:20:00:: 12192373 1 0 -family_elapidae%1:05:00:: 01744657 1 0 -family_elateridae%1:05:00:: 02176073 1 0 -family_electrophoridae%1:05:00:: 01443998 1 0 -family_eleotridae%1:05:00:: 02619738 1 0 -family_elephantidae%1:05:00:: 02503313 1 0 -family_elopidae%1:05:00:: 02541431 1 0 -family_embiotocidae%1:05:00:: 02570648 1 0 -family_empetraceae%1:20:00:: 12751402 1 0 -family_emydidae%1:05:00:: 01667570 1 0 -family_endamoebidae%1:05:00:: 01391933 1 0 -family_engraulidae%1:05:00:: 02533708 1 0 -family_enterobacteriaceae%1:05:00:: 01367430 1 0 -family_entolomataceae%1:20:00:: 13011856 1 0 -family_entomophthoraceae%1:20:00:: 12974457 1 0 -family_epacridaceae%1:20:00:: 12252620 1 0 -family_ephedraceae%1:20:00:: 11597924 1 0 -family_ephemeridae%1:05:00:: 02262324 1 0 -family_ephippidae%1:05:00:: 02604657 1 0 -family_equidae%1:05:00:: 02373601 1 0 -family_equisetaceae%1:20:00:: 13219067 1 0 -family_erethizontidae%1:05:00:: 02347865 1 0 -family_ericaceae%1:20:00:: 12226322 1 0 -family_erinaceidae%1:05:00:: 01893535 1 0 -family_eriocaulaceae%1:20:00:: 12608941 1 0 -family_erysiphaceae%1:20:00:: 12963307 1 0 -family_erythroxylaceae%1:20:00:: 12689641 1 0 -family_eschrichtiidae%1:05:00:: 02065932 1 0 -family_esocidae%1:05:00:: 02560823 1 0 -family_euglenaceae%1:05:00:: 01406426 1 0 -family_euphorbiaceae%1:20:00:: 12916935 1 0 -family_eurylaimidae%1:05:00:: 01546348 1 0 -family_exocoetidae%1:05:00:: 02550296 1 0 -family_fabaceae%1:20:00:: 11746776 1 0 -family_fagaceae%1:20:00:: 12260208 1 0 -family_falconidae%1:05:00:: 01610758 1 0 -family_fasciolidae%1:05:00:: 01926090 1 0 -family_felidae%1:05:00:: 02120692 1 0 -family_filariidae%1:05:00:: 01933342 1 0 -family_fissurellidae%1:05:00:: 01949195 1 0 -family_fistulariidae%1:05:00:: 01454260 1 0 -family_fistulinaceae%1:20:00:: 13053187 1 0 -family_flacourtiaceae%1:20:00:: 12377809 1 0 -family_forficulidae%1:05:00:: 02273120 1 0 -family_formicariidae%1:05:00:: 01552956 1 0 -family_formicidae%1:05:00:: 02219234 1 0 -family_fouquieriaceae%1:20:00:: 12381321 1 0 -family_fregatidae%1:05:00:: 02052511 1 0 -family_fringillidae%1:05:00:: 01529036 1 0 -family_fucaceae%1:05:00:: 01404129 1 0 -family_fulgoridae%1:05:00:: 02259844 1 0 -family_fumariaceae%1:20:00:: 11909048 1 0 -family_funkaceae%1:20:00:: 12457250 1 0 -family_furnariidae%1:05:00:: 01552523 1 0 -family_gadidae%1:05:00:: 02521916 1 0 -family_galbulidae%1:05:00:: 01842942 1 0 -family_gasterophilidae%1:05:00:: 02193357 1 0 -family_gasterosteidae%1:05:00:: 01454702 1 0 -family_gavialidae%1:05:00:: 01699415 1 0 -family_gavidae%1:05:00:: 02048832 1 0 -family_geastraceae%1:20:00:: 13044541 1 0 -family_gekkonidae%1:05:00:: 01674850 1 0 -family_gelechiidae%1:05:00:: 02293135 1 0 -family_gempylidae%1:05:00:: 02621721 1 0 -family_gentianaceae%1:20:00:: 12290116 1 0 -family_geoglossaceae%1:20:00:: 13226526 1 0 -family_geometridae%1:05:00:: 02286815 1 0 -family_geomyidae%1:05:00:: 02353529 1 0 -family_geophilidae%1:05:00:: 01786048 1 0 -family_geraniaceae%1:20:00:: 12685214 1 0 -family_gerreidae%1:05:00:: 02636666 1 0 -family_gerridae%1:05:01:: 02243351 2 0 -family_gerridae%1:05:02:: 02636666 1 0 -family_gerrididae%1:05:00:: 02243351 1 0 -family_gesneriaceae%1:20:00:: 12829099 1 0 -family_gigartinaceae%1:05:00:: 01414359 1 0 -family_ginkgoaceae%1:20:00:: 11664090 1 0 -family_giraffidae%1:05:00:: 02438774 1 0 -family_glareolidae%1:05:00:: 02038617 1 0 -family_gleicheniaceae%1:20:00:: 13170060 1 0 -family_gliridae%1:05:00:: 02352390 1 0 -family_globigerinidae%1:05:00:: 01393237 1 0 -family_glossinidae%1:05:00:: 02190963 1 0 -family_gnetaceae%1:20:00:: 11597126 1 0 -family_gobiesocidae%1:05:00:: 02635310 1 0 -family_gobiidae%1:05:00:: 02619029 1 0 -family_gomphotheriidae%1:05:00:: 02506466 1 0 -family_gonorhynchidae%1:05:00:: 02528949 1 0 -family_goodeniaceae%1:20:00:: 12167749 1 0 -family_gracilariidae%1:05:00:: 02292850 1 0 -family_graminaceae%1:20:00:: 12100538 1 0 -family_gramineae%1:20:00:: 12100538 1 0 -family_grossulariaceae%1:20:00:: 12804621 1 0 -family_gruidae%1:05:00:: 02012715 1 0 -family_gryllidae%1:05:00:: 02229385 1 0 -family_guttiferae%1:20:00:: 12363988 1 0 -family_gyrinidae%1:05:00:: 02177376 1 0 -family_hadrosauridae%1:05:00:: 01705717 1 0 -family_haematopodidae%1:05:00:: 02036864 1 0 -family_haemodoraceae%1:20:00:: 12311894 1 0 -family_haemoproteidae%1:05:00:: 01424607 1 0 -family_haemulidae%1:05:00:: 02588108 1 0 -family_halictidae%1:05:00:: 02210728 1 0 -family_haliotidae%1:05:00:: 01942601 1 0 -family_haloragaceae%1:20:00:: 12326604 1 0 -family_haloragidaceae%1:20:00:: 12326604 1 0 -family_hamamelidaceae%1:20:00:: 12314315 1 0 -family_helicidae%1:05:00:: 01944217 1 0 -family_helodermatidae%1:05:00:: 01691782 1 0 -family_helotiaceae%1:20:00:: 12967504 1 0 -family_helvellaceae%1:20:00:: 13034953 1 0 -family_hemerobiidae%1:05:00:: 02265177 1 0 -family_hemerocallidaceae%1:20:00:: 12456278 1 0 -family_hemiprocnidae%1:05:00:: 01833283 1 0 -family_hemiramphidae%1:05:00:: 02550915 1 0 -family_heteromyidae%1:05:00:: 02348405 1 0 -family_hexagrammidae%1:05:00:: 02648456 1 0 -family_hexanchidae%1:05:00:: 01482754 1 0 -family_hippoboscidae%1:05:00:: 02198332 1 0 -family_hippocastanaceae%1:20:00:: 12767951 1 0 -family_hippopotamidae%1:05:00:: 02398252 1 0 -family_hipposideridae%1:05:00:: 02143594 1 0 -family_hirudinidae%1:05:00:: 01938155 1 0 -family_hirundinidae%1:05:00:: 01594157 1 0 -family_history%1:10:00:: 06515054 1 0 -family_holocentridae%1:05:00:: 01450281 1 0 -family_holothuridae%1:05:00:: 02321759 1 0 -family_homaridae%1:05:00:: 01982895 1 0 -family_hominidae%1:05:00:: 02471467 1 0 -family_hostaceae%1:20:00:: 12457250 1 0 -family_hyacinthaceae%1:20:00:: 12458002 1 0 -family_hyaenidae%1:05:00:: 02116959 1 0 -family_hydnaceae%1:20:00:: 12986084 1 0 -family_hydnoraceae%1:20:00:: 11803277 1 0 -family_hydrangeaceae%1:20:00:: 12787565 1 0 -family_hydrobatidae%1:05:00:: 02060719 1 0 -family_hydrocharidaceae%1:20:00:: 12612913 1 0 -family_hydrocharitaceae%1:20:00:: 12612913 1 0 -family_hydrochoeridae%1:05:00:: 02365244 1 0 -family_hydrophidae%1:05:00:: 01751621 1 0 -family_hydrophyllaceae%1:20:00:: 12834408 1 0 -family_hygrophoraceae%1:20:00:: 13070003 1 0 -family_hylidae%1:05:00:: 01649948 1 0 -family_hylobatidae%1:05:00:: 02482820 1 0 -family_hymenophyllaceae%1:20:00:: 12951465 1 0 -family_hypericaceae%1:20:00:: 12367122 1 0 -family_hyperodontidae%1:05:00:: 02067941 1 0 -family_hypocreaceae%1:20:00:: 12965209 1 0 -family_hypodermatidae%1:05:00:: 02194414 1 0 -family_hypoxidaceae%1:20:00:: 12422751 1 0 -family_hystricidae%1:05:00:: 02346823 1 0 -family_ibidiidae%1:05:00:: 02005598 1 0 -family_ichneumonidae%1:05:00:: 02218235 1 0 -family_ichthyosauridae%1:05:00:: 01724470 1 0 -family_icteridae%1:05:00:: 01571578 1 0 -family_iguania%1:05:00:: 01676313 1 0 -family_iguanidae%1:05:00:: 01676313 1 0 -family_iguanodontidae%1:05:00:: 01707433 1 0 -family_indicatoridae%1:05:00:: 01842655 1 0 -family_indriidae%1:05:00:: 02499990 1 0 -family_ipidae%1:05:00:: 02179429 1 0 -family_irenidae%1:05:00:: 01593705 1 0 -family_iridaceae%1:20:00:: 12411084 1 0 -family_isoetaceae%1:20:00:: 13225955 1 0 -family_istiophoridae%1:05:00:: 02630052 1 0 -family_isuridae%1:05:00:: 01483370 1 0 -family_ixodidae%1:05:00:: 01776546 1 0 -family_jassidae%1:05:00:: 02258910 1 0 -family_jewels%1:08:00:: 05514905 1 0 -family_juglandaceae%1:20:00:: 12317919 1 0 -family_juncaceae%1:20:00:: 11743109 1 0 -family_juncaginaceae%1:20:00:: 12617140 1 0 -family_jungermanniaceae%1:20:00:: 11543264 1 0 -family_kalotermitidae%1:05:00:: 02225231 1 0 -family_kasuwonidae%1:05:00:: 02629048 1 0 -family_kinosternidae%1:05:00:: 01666802 1 0 -family_kyphosidae%1:05:00:: 02604014 1 0 -family_labiatae%1:20:00:: 12838027 1 0 -family_labridae%1:05:00:: 02607630 1 0 -family_lacertidae%1:05:00:: 01692713 1 0 -family_lactobacillaceae%1:05:00:: 01379636 1 0 -family_lactobacteriaceae%1:05:00:: 01379636 1 0 -family_lamiaceae%1:20:00:: 12838027 1 0 -family_laminariaceae%1:05:00:: 01403052 1 0 -family_lamnidae%1:05:00:: 01483188 1 0 -family_lampridae%1:05:00:: 02545569 1 0 -family_lampyridae%1:05:00:: 02168121 1 0 -family_laniidae%1:05:00:: 01598432 1 0 -family_lanthanotidae%1:05:00:: 01691384 1 0 -family_lardizabalaceae%1:20:00:: 11702999 1 0 -family_laricariidae%1:05:00:: 02520391 1 0 -family_laridae%1:05:00:: 02040872 1 0 -family_lasiocampidae%1:05:00:: 02306159 1 0 -family_latimeridae%1:05:00:: 02515410 1 0 -family_lauraceae%1:20:00:: 11703386 1 0 -family_lecanoraceae%1:20:00:: 12987834 1 0 -family_lecythidaceae%1:20:00:: 12327209 1 0 -family_leguminosae%1:20:00:: 11746776 1 0 -family_leiopelmatidae%1:05:00:: 01645093 1 0 -family_leitneriaceae%1:20:00:: 11742531 1 0 -family_lemnaceae%1:20:00:: 11794267 1 0 -family_lemuridae%1:05:00:: 02497408 1 0 -family_lennoaceae%1:20:00:: 12255452 1 0 -family_lentibulariaceae%1:20:00:: 12871992 1 0 -family_lepadidae%1:05:00:: 01998920 1 0 -family_lepidobotryaceae%1:20:00:: 12701178 1 0 -family_lepidodendraceae%1:20:00:: 13222035 1 0 -family_lepiotaceae%1:20:00:: 13012613 1 0 -family_lepismatidae%1:05:00:: 02270326 1 0 -family_lepisosteidae%1:05:00:: 02641063 1 0 -family_leporidae%1:05:00:: 02323715 1 0 -family_leptodactylidae%1:05:00:: 01642671 1 0 -family_leptotyphlopidae%1:05:00:: 01740393 1 0 -family_liliaceae%1:20:00:: 12423565 1 0 -family_limacidae%1:05:00:: 01945443 1 0 -family_limulidae%1:05:00:: 01787546 1 0 -family_linaceae%1:20:00:: 12486254 1 0 -family_line%1:14:00:: 07970721 1 0 -family_liopelmidae%1:05:00:: 01645093 1 0 -family_liparidae%1:05:00:: 02646985 1 0 -family_liparididae%1:05:00:: 02646985 1 0 -family_lithodidae%1:05:00:: 01980993 1 0 -family_littorinidae%1:05:00:: 01948154 1 0 -family_loasaceae%1:20:00:: 12034828 1 0 -family_lobeliaceae%1:20:00:: 12168126 1 0 -family_lobotidae%1:05:00:: 02635911 1 0 -family_locustidae%1:05:00:: 02226598 1 0 -family_loganiaceae%1:20:00:: 12485122 1 0 -family_lomariopsidaceae%1:20:00:: 13202749 1 0 -family_lophiidae%1:05:00:: 02547947 1 0 -family_lophosoriaceae%1:20:00:: 13203251 1 0 -family_loranthaceae%1:20:00:: 12737383 1 0 -family_lorisidae%1:05:00:: 02498355 1 0 -family_loxomataceae%1:20:00:: 13203551 1 0 -family_lucanidae%1:05:00:: 02175791 1 0 -family_lutjanidae%1:05:00:: 02586382 1 0 -family_luvaridae%1:05:00:: 02632239 1 0 -family_lycaenidae%1:05:00:: 02281552 1 0 -family_lycoperdaceae%1:20:00:: 13043516 1 0 -family_lycopodiaceae%1:20:00:: 13222477 1 0 -family_lycosidae%1:05:00:: 01774918 1 0 -family_lygaeidae%1:05:00:: 02238743 1 0 -family_lymantriidae%1:05:00:: 02285359 1 0 -family_lythraceae%1:20:00:: 12328026 1 0 -family_machilidae%1:05:00:: 02271087 1 0 -family_macropodidae%1:05:00:: 01876843 1 0 -family_macrorhamphosidae%1:05:00:: 01456939 1 0 -family_macrouridae%1:05:00:: 02525543 1 0 -family_macruridae%1:05:00:: 02525543 1 0 -family_magnoliaceae%1:20:00:: 11708181 1 0 -family_majidae%1:05:00:: 01981543 1 0 -family_malacanthidae%1:05:00:: 02572904 1 0 -family_malpighiaceae%1:20:00:: 12694048 1 0 -family_malvaceae%1:20:00:: 12169776 1 0 -family_mammutidae%1:05:00:: 02505646 1 0 -family_man%1:18:00:: 10077394 1 0 -family_manidae%1:05:00:: 02461556 1 0 -family_manteidae%1:05:00:: 02235761 1 0 -family_mantidae%1:05:00:: 02235761 1 0 -family_mantispidae%1:05:00:: 02267356 1 0 -family_marantaceae%1:20:00:: 12351287 1 0 -family_marattiaceae%1:20:00:: 13214813 1 0 -family_marchantiaceae%1:20:00:: 11543602 1 0 -family_marsileaceae%1:20:00:: 12957298 1 0 -family_martyniaceae%1:20:00:: 12873646 1 0 -family_mastodontidae%1:05:00:: 02505646 1 0 -family_mastotermitidae%1:05:00:: 02224323 1 0 -family_mayacaceae%1:20:00:: 12608447 1 0 -family_medicine%1:04:00:: 00632342 1 0 -family_megachilidae%1:05:00:: 02211099 1 0 -family_megadermatidae%1:05:00:: 02144442 1 0 -family_megalonychidae%1:05:00:: 02457586 1 0 -family_megalosauridae%1:05:00:: 01715249 1 0 -family_megapodiidae%1:05:00:: 01800759 1 0 -family_megatheriidae%1:05:00:: 02458356 1 0 -family_melampsoraceae%1:20:00:: 13063784 1 0 -family_melanthiaceae%1:20:00:: 12463322 1 0 -family_melastomaceae%1:20:00:: 12348774 1 0 -family_melastomataceae%1:20:00:: 12348774 1 0 -family_meleagrididae%1:05:00:: 01793818 1 0 -family_meliaceae%1:20:00:: 12694707 1 0 -family_meliphagidae%1:05:00:: 01526635 1 0 -family_meloidae%1:05:00:: 02178886 1 0 -family_membracidae%1:05:00:: 02259565 1 0 -family_menispermaceae%1:20:00:: 11712827 1 0 -family_menuridae%1:05:00:: 01545303 1 0 -family_menyanthaceae%1:20:00:: 12484413 1 0 -family_meropidae%1:05:00:: 01828714 1 0 -family_micrococcaceae%1:05:00:: 01378800 1 0 -family_microdesmidae%1:05:00:: 02620826 1 0 -family_microhylidae%1:05:00:: 01652583 1 0 -family_mimidae%1:05:00:: 01586541 1 0 -family_mimosaceae%1:20:00:: 11753936 1 0 -family_miridae%1:05:00:: 02237239 1 0 -family_mniaceae%1:20:00:: 11541322 1 0 -family_mobulidae%1:05:00:: 01499898 1 0 -family_molidae%1:05:00:: 02656426 1 0 -family_molossidae%1:05:00:: 02149136 1 0 -family_momotidae%1:05:00:: 01830623 1 0 -family_moniliaceae%1:20:00:: 13078133 1 0 -family_monocanthidae%1:05:00:: 02653655 1 0 -family_monodontidae%1:05:00:: 02072209 1 0 -family_monotropaceae%1:20:00:: 12258380 1 0 -family_moraceae%1:20:00:: 12398682 1 0 -family_morchellaceae%1:20:00:: 13031690 1 0 -family_motacillidae%1:05:00:: 01528087 1 0 -family_mucoraceae%1:20:00:: 12972966 1 0 -family_mugilidae%1:05:00:: 02601200 1 0 -family_mullidae%1:05:00:: 02599784 1 0 -family_muraenidae%1:05:00:: 02527145 1 0 -family_muridae%1:05:00:: 02331479 1 0 -family_musaceae%1:20:00:: 12351975 1 0 -family_muscicapidae%1:05:00:: 01555586 1 0 -family_muscidae%1:05:00:: 02190015 1 0 -family_musophagidae%1:05:00:: 01825009 1 0 -family_mustelidae%1:05:00:: 02440705 1 0 -family_mutillidae%1:05:00:: 02214660 1 0 -family_myacidae%1:05:00:: 01957075 1 0 -family_mycetophylidae%1:05:00:: 02203457 1 0 -family_mycobacteriaceae%1:05:00:: 01376801 1 0 -family_mycoplasmataceae%1:05:00:: 01373440 1 0 -family_myctophidae%1:05:00:: 02543093 1 0 -family_myliobatidae%1:05:00:: 01498822 1 0 -family_mylodontidae%1:05:00:: 02459001 1 0 -family_myricaceae%1:20:00:: 11740824 1 0 -family_myristicaceae%1:20:00:: 11713960 1 0 -family_myrmecophagidae%1:05:00:: 02459808 1 0 -family_myrmeleontidae%1:05:00:: 02263717 1 0 -family_myrsinaceae%1:20:00:: 12096798 1 0 -family_myrtaceae%1:20:00:: 12329899 1 0 -family_mysidae%1:05:00:: 01989097 1 0 -family_mytilidae%1:05:00:: 01963730 1 0 -family_myxinidae%1:05:00:: 01478300 1 0 -family_myxobacteriaceae%1:05:00:: 01378137 1 0 -family_myxophyceae%1:05:00:: 01358904 1 0 -family_naiadaceae%1:20:00:: 12611243 1 0 -family_najadaceae%1:20:00:: 12611243 1 0 -family_name%1:10:00:: 06336904 1 0 -family_naticidae%1:05:00:: 01947874 1 0 -family_nautilidae%1:05:00:: 01968591 1 0 -family_nepenthaceae%1:20:00:: 12781659 1 0 -family_nephropsidae%1:05:00:: 01983958 1 0 -family_nepidae%1:05:00:: 02242293 1 0 -family_neritidae%1:05:00:: 01946118 1 0 -family_nidulariaceae%1:20:00:: 13046512 1 0 -family_nitrobacteriaceae%1:05:00:: 01361973 1 0 -family_noctuidae%1:05:00:: 02294761 1 0 -family_nostocaceae%1:05:00:: 01359070 1 0 -family_notonectidae%1:05:00:: 02240706 1 0 -family_notoryctidae%1:05:00:: 01885724 1 0 -family_nummulitidae%1:05:00:: 01393604 1 0 -family_nyctaginaceae%1:20:00:: 11835806 1 0 -family_nymphaeaceae%1:20:00:: 11714618 1 0 -family_nymphalidae%1:05:00:: 02274516 1 0 -family_nyssaceae%1:20:00:: 12339972 1 0 -family_ochnaceae%1:20:00:: 12382484 1 0 -family_ochotonidae%1:05:00:: 02328270 1 0 -family_octopodidae%1:05:00:: 01969893 1 0 -family_odobenidae%1:05:00:: 02081282 1 0 -family_odontaspididae%1:05:00:: 01487077 1 0 -family_oedogoniaceae%1:05:00:: 01411727 1 0 -family_oestridae%1:05:00:: 02194414 1 0 -family_ogcocephalidae%1:05:00:: 02547562 1 0 -family_oleaceae%1:20:00:: 12299988 1 0 -family_oleandraceae%1:20:00:: 13203842 1 0 -family_onagraceae%1:20:00:: 12341126 1 0 -family_oniscidae%1:05:00:: 01991676 1 0 -family_ophidiidae%1:05:00:: 02558724 1 0 -family_ophiodontidae%1:05:00:: 02552737 1 0 -family_ophioglossaceae%1:20:00:: 12959967 1 0 -family_opisthocomidae%1:05:00:: 01809446 1 0 -family_opisthognathidae%1:05:00:: 02611425 1 0 -family_orchestiidae%1:05:00:: 01992935 1 0 -family_orchidaceae%1:20:00:: 12039743 1 0 -family_orectolobidae%1:05:00:: 01486241 1 0 -family_oriolidae%1:05:00:: 01575577 1 0 -family_ornithorhynchidae%1:05:00:: 01873007 1 0 -family_orobanchaceae%1:20:00:: 12874231 1 0 -family_orycteropodidae%1:05:00:: 02082498 1 0 -family_oscillatoriaceae%1:05:00:: 01359488 1 0 -family_osmeridae%1:05:00:: 02540255 1 0 -family_osmundaceae%1:20:00:: 12952852 1 0 -family_osteoglossidae%1:05:00:: 02544754 1 0 -family_ostraciidae%1:05:00:: 02654256 1 0 -family_ostraciontidae%1:05:00:: 02654256 1 0 -family_ostreidae%1:05:00:: 01960301 1 0 -family_otariidae%1:05:00:: 02076535 1 0 -family_otididae%1:05:00:: 02018638 1 0 -family_oxalidaceae%1:20:00:: 12702443 1 0 -family_oxyuridae%1:05:00:: 01931277 1 0 -family_paeoniaceae%1:20:00:: 11718911 1 0 -family_paguridae%1:05:00:: 01985947 1 0 -family_palaemonidae%1:05:00:: 01987228 1 0 -family_palinuridae%1:05:00:: 01984416 1 0 -family_palmaceae%1:20:00:: 12581381 1 0 -family_palmae%1:20:00:: 12581381 1 0 -family_pandanaceae%1:20:00:: 12154426 1 0 -family_pandionidae%1:05:00:: 01615825 1 0 -family_panorpidae%1:05:00:: 02162404 1 0 -family_papaveraceae%1:20:00:: 11900058 1 0 -family_papilionacea%1:20:00:: 12501537 1 0 -family_paradisaeidae%1:05:00:: 01570969 1 0 -family_paridae%1:05:00:: 01591490 1 0 -family_parkeriaceae%1:20:00:: 13171447 1 0 -family_parmeliaceae%1:20:00:: 12991488 1 0 -family_parulidae%1:05:00:: 01566888 1 0 -family_passeridae%1:05:00:: 01539377 1 0 -family_passifloraceae%1:20:00:: 12383073 1 0 -family_patellidae%1:05:00:: 01948788 1 0 -family_pectinidae%1:05:00:: 01965747 1 0 -family_pedaliaceae%1:20:00:: 12874429 1 0 -family_pediculidae%1:05:00:: 02184114 1 0 -family_pelecanidae%1:05:00:: 02051701 1 0 -family_pelecanoididae%1:05:00:: 02061716 1 0 -family_pelobatidae%1:05:00:: 01648818 1 0 -family_pempheridae%1:05:00:: 02603737 1 0 -family_peneidae%1:05:00:: 01987938 1 0 -family_pennatulidae%1:05:00:: 01915414 1 0 -family_peramelidae%1:05:00:: 01876180 1 0 -family_percidae%1:05:00:: 02556623 1 0 -family_percophidae%1:05:00:: 02620033 1 0 -family_peridiniidae%1:05:00:: 01417807 1 0 -family_peripatidae%1:05:00:: 02000036 1 0 -family_peripatopsidae%1:05:00:: 02000618 1 0 -family_peronosporaceae%1:20:00:: 12980478 1 0 -family_pertusariaceae%1:20:00:: 12989142 1 0 -family_petromyzontidae%1:05:00:: 01477373 1 0 -family_pezizaceae%1:20:00:: 13030157 1 0 -family_phaethontidae%1:05:00:: 02054834 1 0 -family_phalacrocoracidae%1:05:00:: 02053720 1 0 -family_phalangeridae%1:05:00:: 01880937 1 0 -family_phalangiidae%1:05:00:: 01769789 1 0 -family_phalaropidae%1:05:00:: 02037278 1 0 -family_phallaceae%1:20:00:: 13039870 1 0 -family_phasianidae%1:05:00:: 01802309 1 0 -family_phasmatidae%1:05:00:: 02231307 1 0 -family_phasmidae%1:05:00:: 02231307 1 0 -family_phillidae%1:05:00:: 02231930 1 0 -family_phocidae%1:05:00:: 02079170 1 0 -family_phoenicopteridae%1:05:00:: 02007422 1 0 -family_phoeniculidae%1:05:00:: 01830183 1 0 -family_pholadidae%1:05:00:: 01967677 1 0 -family_pholidae%1:05:00:: 02614788 1 0 -family_pholididae%1:05:00:: 02614788 1 0 -family_phthiriidae%1:05:00:: 02184881 1 0 -family_phyllidae%1:05:00:: 02231930 1 0 -family_phyllocladaceae%1:20:00:: 11649597 1 0 -family_phyllostomatidae%1:05:00:: 02142064 1 0 -family_phyllostomidae%1:05:00:: 02142064 1 0 -family_phylloxeridae%1:05:00:: 02255567 1 0 -family_physeteridae%1:05:00:: 02066950 1 0 -family_physidae%1:05:00:: 01952429 1 0 -family_phytolaccaceae%1:20:00:: 11854760 1 0 -family_picidae%1:05:00:: 01838326 1 0 -family_pieridae%1:05:00:: 02280223 1 0 -family_pinaceae%1:20:00:: 11607739 1 0 -family_pinnotheridae%1:05:00:: 01980328 1 0 -family_piperaceae%1:20:00:: 13148791 1 0 -family_pipidae%1:05:00:: 01653610 1 0 -family_pipridae%1:05:00:: 01551430 1 0 -family_pittidae%1:05:00:: 01554708 1 0 -family_planning%1:04:00:: 00851994 1 6 -family_plantaginaceae%1:20:00:: 12598409 1 0 -family_plasmodiidae%1:05:00:: 01424165 1 0 -family_plasmodiophoraceae%1:20:00:: 12983217 1 0 -family_plataleidae%1:05:00:: 02006510 1 0 -family_platanaceae%1:20:00:: 12806270 1 0 -family_platanistidae%1:05:00:: 02071905 1 0 -family_platycephalidae%1:05:00:: 02649400 1 0 -family_plethodontidae%1:05:00:: 01635659 1 0 -family_pleurobrachiidae%1:05:00:: 01920178 1 0 -family_pleuronectidae%1:05:00:: 02657805 1 0 -family_ploceidae%1:05:00:: 01542567 1 0 -family_plumbaginaceae%1:20:00:: 12097927 1 0 -family_pluteaceae%1:20:00:: 13019017 1 0 -family_poaceae%1:20:00:: 12100538 1 0 -family_podargidae%1:05:00:: 01836809 1 0 -family_podicipedidae%1:05:00:: 02049672 1 0 -family_podocarpaceae%1:20:00:: 11651259 1 0 -family_poeciliidae%1:05:00:: 01448767 1 0 -family_polemoniaceae%1:20:00:: 12808933 1 0 -family_polyangiaceae%1:05:00:: 01378137 1 0 -family_polygalaceae%1:20:00:: 12704636 1 0 -family_polygonaceae%1:20:00:: 12600574 1 0 -family_polynemidae%1:05:00:: 02610834 1 0 -family_polyodontidae%1:05:00:: 02639312 1 0 -family_polypedatidae%1:05:00:: 01644104 1 0 -family_polypodiaceae%1:20:00:: 13172107 1 0 -family_polyporaceae%1:20:00:: 13049561 1 0 -family_pomacentridae%1:05:00:: 02606194 1 0 -family_pomatomidae%1:05:00:: 02573406 1 0 -family_pongidae%1:05:00:: 02479896 1 0 -family_pontederiaceae%1:20:00:: 12609638 1 0 -family_porcellionidae%1:05:00:: 01991982 1 0 -family_portulacaceae%1:20:00:: 11856981 1 0 -family_portunidae%1:05:00:: 01978744 1 0 -family_potamogalidae%1:05:00:: 01894670 1 0 -family_potamogetonaceae%1:20:00:: 12615427 1 0 -family_practice%1:04:00:: 00632342 1 0 -family_priacanthidae%1:05:00:: 02571300 1 0 -family_primulaceae%1:20:00:: 12090318 1 0 -family_pristidae%1:05:00:: 01496944 1 0 -family_procaviidae%1:05:00:: 02372397 1 0 -family_procellariidae%1:05:00:: 02058933 1 0 -family_procyonidae%1:05:00:: 02507337 1 0 -family_proteaceae%1:20:00:: 12213635 1 0 -family_proteidae%1:05:00:: 01633949 1 0 -family_prunellidae%1:05:00:: 01526925 1 0 -family_pseudococcidae%1:05:00:: 02250464 1 0 -family_pseudomonodaceae%1:05:00:: 01360712 1 0 -family_psilophytaceae%1:20:00:: 13217624 1 0 -family_psilotaceae%1:20:00:: 13216475 1 0 -family_psittacidae%1:05:00:: 01817424 1 0 -family_psocidae%1:05:00:: 02260623 1 0 -family_psophiidae%1:05:00:: 02020777 1 0 -family_psychodidae%1:05:00:: 02203739 1 0 -family_psyllidae%1:05:00:: 02256010 1 0 -family_pteridaceae%1:20:00:: 13205482 1 0 -family_pteriidae%1:05:00:: 01961736 1 0 -family_pteroclididae%1:05:00:: 01815431 1 0 -family_pterodactylidae%1:05:00:: 01723259 1 0 -family_ptilonorhynchidae%1:05:00:: 01600480 1 0 -family_pucciniaceae%1:20:00:: 13064678 1 0 -family_pulicidae%1:05:00:: 02186399 1 0 -family_punicaceae%1:20:00:: 12344996 1 0 -family_pygopodidae%1:05:00:: 01675964 1 0 -family_pyralidae%1:05:00:: 02288473 1 0 -family_pyralididae%1:05:00:: 02288473 1 0 -family_pyrolaceae%1:20:00:: 12255659 1 0 -family_pyrrhocoridae%1:05:00:: 02244963 1 0 -family_pythiaceae%1:20:00:: 12982103 1 0 -family_pythonidae%1:05:00:: 01743449 1 0 -family_rachycentridae%1:05:00:: 02573918 1 0 -family_rafflesiaceae%1:20:00:: 11803118 1 0 -family_rajidae%1:05:00:: 01500995 1 0 -family_rallidae%1:05:00:: 02014646 1 0 -family_ramphastidae%1:05:00:: 01843238 1 0 -family_ranidae%1:05:00:: 01640383 1 0 -family_ranunculaceae%1:20:00:: 11719468 1 0 -family_rapateaceae%1:20:00:: 12608778 1 0 -family_raphidae%1:05:00:: 01810946 1 0 -family_raphidiidae%1:05:00:: 02267019 1 0 -family_recurvirostridae%1:05:00:: 02036399 1 0 -family_reduviidae%1:05:00:: 02244007 1 0 -family_regalecidae%1:05:00:: 02546744 1 0 -family_relationship%1:24:00:: 13812607 1 0 -family_resedaceae%1:20:00:: 12385046 1 0 -family_rhamnaceae%1:20:00:: 13140699 1 0 -family_rheidae%1:05:00:: 01521014 1 0 -family_rhincodontidae%1:05:00:: 01487743 1 0 -family_rhinobatidae%1:05:00:: 01497579 1 0 -family_rhinocerotidae%1:05:00:: 02391782 1 0 -family_rhinolophidae%1:05:00:: 02143293 1 0 -family_rhinotermitidae%1:05:00:: 02224141 1 0 -family_rhiptoglossa%1:05:00:: 01693472 1 0 -family_rhizobiaceae%1:05:00:: 01354149 1 0 -family_rhizophoraceae%1:20:00:: 12345495 1 0 -family_rhizopogonaceae%1:20:00:: 12971157 1 0 -family_rhodymeniaceae%1:05:00:: 01414841 1 0 -family_rhyniaceae%1:20:00:: 13218114 1 0 -family_rickettsiaceae%1:05:00:: 01371092 1 0 -family_roccellaceae%1:20:00:: 12988703 1 0 -family_room%1:06:00:: 03319745 1 0 -family_roridulaceae%1:20:00:: 12783996 1 0 -family_rosaceae%1:20:00:: 12619306 1 0 -family_rubiaceae%1:20:00:: 12660009 1 0 -family_ruscaceae%1:20:00:: 12464903 1 0 -family_russulaceae%1:20:00:: 13010064 1 0 -family_rutaceae%1:20:00:: 12706644 1 0 -family_rynchopidae%1:05:00:: 02043497 1 0 -family_saccharomycetaceae%1:20:00:: 13025197 1 0 -family_sagittariidae%1:05:00:: 01618220 1 0 -family_salamandridae%1:05:00:: 01628885 1 0 -family_salicaceae%1:20:00:: 12723985 1 0 -family_salmonidae%1:05:00:: 02534352 1 0 -family_salpidae%1:05:00:: 01469425 1 0 -family_salvadoraceae%1:20:00:: 12299165 1 0 -family_salviniaceae%1:20:00:: 12958772 1 0 -family_santalaceae%1:20:00:: 12734722 1 0 -family_sapindaceae%1:20:00:: 12740514 1 0 -family_sapotaceae%1:20:00:: 12772081 1 0 -family_sarcoptidae%1:05:00:: 01781274 1 0 -family_sarcoscyphaceae%1:20:00:: 13034277 1 0 -family_sarraceniaceae%1:20:00:: 12779233 1 0 -family_saturniidae%1:05:00:: 02301072 1 0 -family_satyridae%1:05:00:: 02277556 1 0 -family_saururaceae%1:20:00:: 13151568 1 0 -family_saxifragaceae%1:20:00:: 12792041 1 0 -family_scarabaeidae%1:05:00:: 02171633 1 0 -family_scaridae%1:05:00:: 02610541 1 0 -family_scheuchzeriaceae%1:20:00:: 12617140 1 0 -family_schistosomatidae%1:05:00:: 01926840 1 0 -family_schizaeaceae%1:20:00:: 12954978 1 0 -family_schizophyceae%1:05:00:: 01358904 1 0 -family_schizosaccharomycetaceae%1:20:00:: 13026146 1 0 -family_sciadopityaceae%1:20:00:: 11659909 1 0 -family_sciaenidae%1:05:00:: 02593863 1 0 -family_sciaridae%1:05:00:: 02204460 1 0 -family_scincidae%1:05:00:: 01683724 1 0 -family_sciuridae%1:05:00:: 02355711 1 0 -family_sclerodermataceae%1:20:00:: 12968658 1 0 -family_sclerotiniaceae%1:20:00:: 12967776 1 0 -family_scolopacidae%1:05:00:: 02025530 1 0 -family_scolytidae%1:05:00:: 02179429 1 0 -family_scomberesocidae%1:05:00:: 02551316 1 0 -family_scombresocidae%1:05:00:: 02551316 1 0 -family_scombridae%1:05:00:: 02623868 1 0 -family_scorpaenidae%1:05:00:: 02642430 1 0 -family_scrophulariaceae%1:20:00:: 12876032 1 0 -family_scutigeridae%1:05:00:: 01785392 1 0 -family_scyliorhinidae%1:05:00:: 01488234 1 0 -family_secotiaceae%1:20:00:: 13047385 1 0 -family_selaginellaceae%1:20:00:: 13224256 1 0 -family_sepiidae%1:05:00:: 01972283 1 0 -family_septobasidiaceae%1:20:00:: 13069348 1 0 -family_serranidae%1:05:00:: 02565728 1 0 -family_sialidae%1:05:00:: 02266580 1 0 -family_sillaginidae%1:05:00:: 02637637 1 0 -family_siluridae%1:05:00:: 02517768 1 0 -family_simaroubaceae%1:20:00:: 12715569 1 0 -family_simuliidae%1:05:00:: 02205383 1 0 -family_sirenidae%1:05:00:: 01638952 1 0 -family_sisyridae%1:05:00:: 02267644 1 0 -family_sittidae%1:05:00:: 01590443 1 0 -family_solanaceae%1:20:00:: 12892226 1 0 -family_soleidae%1:05:00:: 02663657 1 0 -family_solenidae%1:05:00:: 01958790 1 0 -family_soricidae%1:05:00:: 01891438 1 0 -family_spalacidae%1:05:00:: 02368563 1 0 -family_sparganiaceae%1:20:00:: 12156308 1 0 -family_sparidae%1:05:00:: 02590237 1 0 -family_sphaeriaceae%1:20:00:: 12964130 1 0 -family_sphaerobolaceae%1:20:00:: 13047011 1 0 -family_sphaerocarpaceae%1:20:00:: 11544314 1 0 -family_sphecidae%1:05:00:: 02215334 1 0 -family_spheniscidae%1:05:00:: 02055431 1 0 -family_sphingidae%1:05:00:: 02298379 1 0 -family_sphyraenidae%1:05:00:: 02602970 1 0 -family_sphyrnidae%1:05:00:: 01494188 1 0 -family_spirillaceae%1:05:00:: 01363423 1 0 -family_spirochaetaceae%1:05:00:: 01381604 1 0 -family_spirulidae%1:05:00:: 01972733 1 0 -family_squalidae%1:05:00:: 01493366 1 0 -family_squatinidae%1:05:00:: 01495192 1 0 -family_squillidae%1:05:00:: 01990186 1 0 -family_staphylaceae%1:20:00:: 12769430 1 0 -family_staphylinidae%1:05:00:: 02180742 1 0 -family_steatornithidae%1:05:00:: 01837230 1 0 -family_stenopelmatidae%1:05:00:: 02228874 1 0 -family_stercorariidae%1:05:00:: 02043999 1 0 -family_sterculiaceae%1:20:00:: 12194776 1 0 -family_stichaeidae%1:05:00:: 02615494 1 0 -family_stizidae%1:05:00:: 02215941 1 0 -family_strelitziaceae%1:20:00:: 12354068 1 0 -family_streptomycetaceae%1:05:00:: 01375913 1 0 -family_strigidae%1:05:00:: 01621714 1 0 -family_stromateidae%1:05:00:: 02632694 1 0 -family_strombidae%1:05:00:: 01943213 1 0 -family_strophariaceae%1:20:00:: 13010219 1 0 -family_struthionidae%1:05:00:: 01518564 1 0 -family_sturnidae%1:05:00:: 01576506 1 0 -family_styracaceae%1:20:00:: 12776946 1 0 -family_suidae%1:05:00:: 02394822 1 0 -family_sulidae%1:05:00:: 02052936 1 0 -family_sylviidae%1:05:00:: 01562584 1 0 -family_symplocaceae%1:20:00:: 12776212 1 0 -family_synchytriaceae%1:20:00:: 12978969 1 0 -family_syngnathidae%1:05:00:: 01455592 1 0 -family_synodontidae%1:05:00:: 02543412 1 0 -family_tabanidae%1:05:00:: 02195403 1 0 -family_taccaceae%1:20:00:: 12475450 1 0 -family_tachinidae%1:05:00:: 02192673 1 0 -family_tachyglossidae%1:05:00:: 01872094 1 0 -family_taeniidae%1:05:00:: 01927665 1 0 -family_talpidae%1:05:00:: 01889328 1 0 -family_tamaricaceae%1:20:00:: 12386039 1 0 -family_tapiridae%1:05:00:: 02393300 1 0 -family_tarsiidae%1:05:00:: 02501275 1 0 -family_taxaceae%1:20:00:: 11660979 1 0 -family_tayassuidae%1:05:00:: 02397251 1 0 -family_tecophilaeacea%1:20:00:: 12465107 1 0 -family_teiidae%1:05:00:: 01685277 1 0 -family_tenebrionidae%1:05:00:: 02181013 1 0 -family_tenrecidae%1:05:00:: 01894040 1 0 -family_tenthredinidae%1:05:00:: 02218563 1 0 -family_terebellidae%1:05:00:: 01937015 1 0 -family_teredinidae%1:05:00:: 01966797 1 0 -family_termitidae%1:05:00:: 02223009 1 0 -family_testudinidae%1:05:00:: 01669883 1 0 -family_tethyidae%1:05:00:: 01950952 1 0 -family_tetragoniaceae%1:20:00:: 11818945 1 0 -family_tetranychidae%1:05:00:: 01782050 1 0 -family_tetraodontidae%1:05:00:: 02654890 1 0 -family_tetraonidae%1:05:00:: 01794813 1 0 -family_tettigoniidae%1:05:00:: 02227773 1 0 -family_theaceae%1:20:00:: 12929061 1 0 -family_thelephoraceae%1:20:00:: 13015040 1 0 -family_thelypteridaceae%1:20:00:: 13227235 1 0 -family_theophrastaceae%1:20:00:: 12099556 1 0 -family_theraphosidae%1:05:00:: 01774595 1 0 -family_therapy%1:04:00:: 00703926 1 0 -family_theridiidae%1:05:00:: 01773930 1 0 -family_thiobacteriaceae%1:05:00:: 01362769 1 0 -family_thraupidae%1:05:00:: 01597194 1 0 -family_threskiornithidae%1:05:00:: 02005598 1 0 -family_thripidae%1:05:00:: 02271740 1 0 -family_thymelaeaceae%1:20:00:: 12346179 1 0 -family_tiliaceae%1:20:00:: 12202352 1 0 -family_tilletiaceae%1:20:00:: 13067845 1 0 -family_timaliidae%1:05:00:: 01566386 1 0 -family_tinamidae%1:05:00:: 01810132 1 0 -family_tineidae%1:05:00:: 02291391 1 0 -family_tingidae%1:05:00:: 02238474 1 0 -family_tipulidae%1:05:00:: 02205095 1 0 -family_titanosauridae%1:05:00:: 01710348 1 0 -family_todidae%1:05:00:: 01831078 1 0 -family_torpedinidae%1:05:00:: 01496199 1 0 -family_tortricidae%1:05:00:: 02283728 1 0 -family_toxotidae%1:05:00:: 02620318 1 0 -family_trachipteridae%1:05:00:: 02546177 1 0 -family_tragulidae%1:05:00:: 02435689 1 0 -family_trapaceae%1:20:00:: 12347892 1 0 -family_tree%1:14:00:: 08102402 1 0 -family_tremellaceae%1:20:00:: 13060689 1 0 -family_trephritidae%1:05:00:: 02196542 1 0 -family_treponemataceae%1:05:00:: 01382273 1 0 -family_triakidae%1:05:00:: 01491991 1 0 -family_tribonemaceae%1:05:00:: 01401517 1 0 -family_trichechidae%1:05:00:: 02073532 1 0 -family_trichiuridae%1:05:00:: 02622823 1 0 -family_trichodontidae%1:05:00:: 02558350 1 0 -family_tricholomataceae%1:20:00:: 13016457 1 0 -family_tridacnidae%1:05:00:: 01959187 1 0 -family_triglidae%1:05:00:: 02649689 1 0 -family_trilliaceae%1:20:00:: 12467811 1 0 -family_trionychidae%1:05:00:: 01671874 1 0 -family_triopidae%1:05:00:: 01995975 1 0 -family_trochilidae%1:05:00:: 01833619 1 0 -family_troglodytidae%1:05:00:: 01584004 1 0 -family_trogonidae%1:05:00:: 01843932 1 0 -family_trombiculidae%1:05:00:: 01780551 1 0 -family_trombidiidae%1:05:00:: 01780302 1 0 -family_tropaeolaceae%1:20:00:: 12719277 1 0 -family_trypetidae%1:05:00:: 02196542 1 0 -family_tuberaceae%1:20:00:: 12985010 1 0 -family_tuberculariaceae%1:20:00:: 13081369 1 0 -family_tulostomaceae%1:20:00:: 12970379 1 0 -family_tulostomataceae%1:20:00:: 12970379 1 0 -family_tupaiidae%1:05:00:: 02494866 1 0 -family_turdidae%1:05:00:: 01556671 1 0 -family_turnicidae%1:05:00:: 02019566 1 0 -family_tylenchidae%1:05:00:: 01932358 1 0 -family_typhaceae%1:20:00:: 12155259 1 0 -family_typhlopidae%1:05:00:: 01740283 1 0 -family_tytonidae%1:05:00:: 01625275 1 0 -family_uintatheriidae%1:05:00:: 02371647 1 0 -family_ulmaceae%1:20:00:: 12404943 1 0 -family_ulvaceae%1:05:00:: 01408383 1 0 -family_umbelliferae%1:20:00:: 12930044 1 0 -family_unionidae%1:05:00:: 01964636 1 0 -family_unit%1:14:00:: 07970406 1 0 -family_upupidae%1:05:00:: 01829602 1 0 -family_uranoscopidae%1:05:00:: 02611767 1 0 -family_ursidae%1:05:00:: 02131418 1 0 -family_urticaceae%1:20:00:: 12391745 1 0 -family_usneaceae%1:20:00:: 12989462 1 0 -family_ustilaginaceae%1:20:00:: 13066631 1 0 -family_valerianaceae%1:20:00:: 12949722 1 0 -family_varanidae%1:05:00:: 01694430 1 0 -family_veneridae%1:05:00:: 01957591 1 0 -family_verbenaceae%1:20:00:: 12914433 1 0 -family_vespertilionidae%1:05:00:: 02145084 1 0 -family_vespidae%1:05:00:: 02212323 1 0 -family_violaceae%1:20:00:: 12387201 1 0 -family_viperidae%1:05:00:: 01751979 1 0 -family_vireonidae%1:05:00:: 01602353 1 0 -family_viscaceae%1:20:00:: 12738859 1 0 -family_vitaceae%1:20:00:: 13144303 1 0 -family_vittariaceae%1:20:00:: 13179410 1 0 -family_viverridae%1:05:00:: 02134589 1 0 -family_viverrinae%1:05:00:: 02134589 1 0 -family_volvariaceae%1:20:00:: 13018579 1 0 -family_volvocaceae%1:05:00:: 01409065 1 0 -family_vombatidae%1:05:00:: 01882948 1 0 -family_welwitschiaceae%1:20:00:: 11598991 1 0 -family_winteraceae%1:20:00:: 11739530 1 0 -family_xanthorrhoeaceae%1:20:00:: 12465796 1 0 -family_xantusiidae%1:05:00:: 01683428 1 0 -family_xenicidae%1:05:00:: 01588172 1 0 -family_xenopodidae%1:05:00:: 01654245 1 0 -family_xenosauridae%1:05:00:: 01690703 1 0 -family_xiphiidae%1:05:00:: 02629435 1 0 -family_xylariaceae%1:20:00:: 12966386 1 0 -family_xyridaceae%1:20:00:: 12605315 1 0 -family_zamiaceae%1:20:00:: 11601487 1 0 -family_zannichelliaceae%1:20:00:: 12617739 1 0 -family_zapodidae%1:05:00:: 02350845 1 0 -family_zeidae%1:05:00:: 01452633 1 0 -family_zingiberaceae%1:20:00:: 12355320 1 0 -family_ziphiidae%1:05:00:: 02067941 1 0 -family_zoarcidae%1:05:00:: 02617029 1 0 -family_zosteraceae%1:20:00:: 12618336 1 0 -family_zygnemataceae%1:05:00:: 01410109 1 0 -family_zygophyllaceae%1:20:00:: 12720532 1 0 -famine%1:11:00:: 07315790 2 0 -famine%1:26:00:: 14449865 1 0 -famish%2:34:00:: 01188144 1 0 -famish%2:34:02:: 01187537 3 0 -famish%2:34:03:: 01187740 2 0 -famished%5:00:00:hungry:00 01269506 1 0 -famishment%1:26:00:: 14040310 1 0 -famotidine%1:06:00:: 03319858 1 0 -famous%5:00:00:known:00 01375831 1 21 -famous_person%1:18:00:: 09903153 1 0 -famously%4:02:00:: 00336789 1 0 -famously%4:02:01:: 00182316 2 0 -famulus%1:18:00:: 10077504 1 0 -fan%1:06:00:: 03320046 1 4 -fan%1:18:00:: 10077593 3 3 -fan%1:18:01:: 10639925 2 3 -fan%2:30:00:: 00227805 2 2 -fan%2:35:00:: 01460937 4 0 -fan%2:35:01:: 01409763 1 3 -fan%2:38:00:: 01885580 3 1 -fan-jet%1:06:00:: 03321103 2 0 -fan-jet%1:06:01:: 03321419 1 0 -fan-leafed%5:00:00:leafy:00 01701227 1 0 -fan-leaved%5:00:00:leafy:00 01701227 1 0 -fan-shaped%5:00:00:formed:00 02146949 1 0 -fan_belt%1:06:00:: 03320262 1 0 -fan_blade%1:06:00:: 03320421 1 0 -fan_dance%1:04:00:: 00531355 1 0 -fan_fern%1:20:00:: 13171210 1 0 -fan_letter%1:10:00:: 06625217 1 0 -fan_mail%1:14:00:: 08463345 1 0 -fan_out%2:38:00:: 02060141 1 4 -fan_palm%1:20:00:: 12583126 1 0 -fan_tan%1:04:00:: 00507887 1 0 -fan_tracery%1:06:00:: 03321843 1 0 -fan_vaulting%1:06:00:: 03321954 1 0 -fanaloka%1:05:00:: 02136794 1 0 -fanatic%1:18:00:: 10077879 1 1 -fanatic%5:00:00:passionate:00 01726859 1 0 -fanatical%5:00:00:passionate:00 01726859 1 0 -fanatically%4:02:00:: 00336925 1 0 -fanaticism%1:09:00:: 06206334 1 2 -fanatism%1:09:00:: 06206334 1 0 -fancied%5:00:00:unreal:00 01935935 1 0 -fancier%1:18:00:: 10078131 1 0 -fanciful%5:00:00:creative:00 00643598 1 1 -fanciful%5:00:00:fancy:00 01796304 3 0 -fanciful%5:00:00:unreal:00 01936528 2 0 -fancifully%4:02:00:: 00337068 1 0 -fancify%2:30:00:: 00293141 1 0 -fanconi's_anaemia%1:26:00:: 14164866 1 0 -fanconi's_anemia%1:26:00:: 14164866 1 0 -fancy%1:09:01:: 05632272 2 1 -fancy%1:09:02:: 05896059 1 1 -fancy%1:12:00:: 07497797 3 0 -fancy%2:36:00:: 01635432 1 3 -fancy%2:37:00:: 01776468 2 1 -fancy%3:00:00:: 01794340 1 3 -fancy-dress_ball%1:11:00:: 07449157 1 0 -fancy-free%5:00:00:uncommitted:00 00518848 1 1 -fancy_dress%1:06:00:: 03320519 1 0 -fancy_goods%1:06:00:: 03320735 1 0 -fancy_man%1:18:00:: 10433737 1 0 -fancy_man%1:18:01:: 10078333 2 0 -fancy_up%2:29:00:: 00044149 1 0 -fancy_woman%1:18:00:: 10323752 2 0 -fancy_woman%1:18:01:: 10485440 1 0 -fancywork%1:06:00:: 03282933 1 0 -fandango%1:04:00:: 00532739 1 0 -fandom%1:14:00:: 08223581 1 0 -fanfare%1:10:00:: 06889330 1 1 -fanfare%1:10:01:: 06856884 2 0 -fang%1:05:00:: 01465472 4 0 -fang%1:05:01:: 01465593 3 0 -fang%1:05:02:: 01785234 2 0 -fang%1:10:00:: 06992929 1 0 -fang-like%5:00:00:sharp:00 00801874 1 0 -fanged%3:01:00:: 02725764 1 0 -fanion%1:06:00:: 03320845 1 0 -fanjet%1:06:00:: 03321103 2 0 -fanjet%1:06:01:: 03321419 1 0 -fanjet_engine%1:06:00:: 03321103 1 0 -fanlight%1:06:00:: 03320959 3 0 -fanlight%1:06:01:: 04473108 1 0 -fanlight%1:06:02:: 04232800 2 0 -fanlike%5:00:00:wide:00 02561490 1 0 -fanned%5:00:00:distributed:00 00541460 1 0 -fannie_farmer%1:18:00:: 10966496 1 0 -fannie_mae%1:14:00:: 08384738 1 0 -fannie_merritt_farmer%1:18:00:: 10966496 1 0 -fanny%1:08:00:: 05559256 1 0 -fanny%1:08:01:: 05514410 2 0 -fanny_adams%1:13:00:: 07573241 2 0 -fanny_adams%1:23:00:: 13740765 1 0 -fanny_pack%1:06:00:: 03321563 1 0 -fanny_wright%1:18:00:: 11398344 1 0 -fantabulous%5:00:00:superior:02 02343110 1 0 -fantail%1:06:00:: 03321672 1 0 -fantan%1:04:00:: 00507887 1 0 -fantan%1:04:01:: 00492497 2 0 -fantasia%1:10:00:: 07044543 1 1 -fantasise%2:36:00:: 01637368 1 0 -fantasise%2:36:01:: 01636859 2 0 -fantasist%1:18:00:: 10078415 1 1 -fantasize%2:36:00:: 01637368 1 0 -fantasize%2:36:01:: 01636859 2 0 -fantasm%1:09:00:: 05897553 2 0 -fantasm%1:18:00:: 09547111 1 0 -fantast%1:18:00:: 10078529 1 0 -fantastic%5:00:00:extraordinary:00 01676517 2 3 -fantastic%5:00:00:fancy:00 01796452 5 0 -fantastic%5:00:00:strange:00 00967646 1 4 -fantastic%5:00:00:unreal:00 01936778 4 1 -fantastic%5:00:00:unrealistic:00 01942732 3 2 -fantastical%5:00:00:strange:00 00967646 2 0 -fantastical%5:00:00:unreal:00 01936778 1 0 -fantastically%4:02:00:: 00032180 1 0 -fantasy%1:09:00:: 05632446 1 3 -fantasy%1:09:01:: 05896059 3 1 -fantasy%1:10:00:: 06368425 2 1 -fantasy%2:36:00:: 01637368 1 0 -fantasy_life%1:09:00:: 05632927 1 1 -fantasy_world%1:09:00:: 05633044 1 0 -fantods%1:26:00:: 14059825 1 1 -fanweed%1:20:00:: 11898775 1 0 -fanwort%1:20:00:: 11718296 1 0 -fao%1:14:00:: 08300190 1 0 -faq%1:10:00:: 06491026 1 0 -faqir%1:18:00:: 10076307 1 0 -faquir%1:18:00:: 10076307 1 0 -far%1:14:00:: 08016900 1 0 -far%3:00:00:: 00442361 1 20 -far%4:02:00:: 00101051 2 39 -far%4:02:01:: 00101201 4 3 -far%4:02:02:: 00101323 1 61 -far%4:02:04:: 00101490 3 22 -far%4:02:05:: 00101655 5 0 -far%5:00:00:immoderate:00 01535481 4 0 -far%5:00:00:long:01 01434717 2 5 -far%5:00:00:right:00 02032386 3 1 -far-famed%5:00:00:known:00 01375831 1 1 -far-flung%5:00:00:distant:01 00446236 2 0 -far-flung%5:00:00:distributed:00 00541614 1 0 -far-off%5:00:01:far:00 00443274 1 2 -far-out%5:00:00:unconventional:01 00609564 1 0 -far-right%5:00:00:right:03 02030562 1 0 -far_and_away%4:02:00:: 00047056 1 0 -far_and_near%4:02:00:: 00102029 1 0 -far_and_wide%4:02:00:: 00102029 1 0 -far_cry%1:07:00:: 05085436 1 0 -far_cry%1:07:01:: 04752734 2 0 -far_east%1:15:00:: 08562757 1 2 -far_left%5:00:00:left:02 02031165 1 0 -farad%1:23:00:: 13636286 1 0 -faraday%1:18:00:: 10966318 1 0 -farandole%1:04:00:: 00532896 1 0 -faraway%5:00:00:distant:02 00450915 2 0 -faraway%5:00:00:far:00 00443274 1 5 -farawayness%1:07:00:: 05085165 1 0 -farc%1:14:00:: 08042183 1 0 -farce%1:10:00:: 07016250 1 2 -farce%1:13:00:: 07679140 2 0 -farce%2:30:00:: 00320681 1 0 -farce_comedy%1:10:00:: 07016250 1 0 -farcical%5:00:00:humorous:00 01266397 1 0 -farcically%4:02:00:: 00337206 1 0 -fardel%1:09:00:: 05833252 1 0 -fare%1:09:00:: 05911124 1 2 -fare%1:13:00:: 07560652 4 0 -fare%1:18:00:: 10078643 3 0 -fare%1:21:00:: 13308147 2 0 -fare%2:34:00:: 01172969 2 0 -fare%2:42:00:: 02617567 1 1 -fare-stage%1:04:00:: 00307314 1 0 -fare-thee-well%1:26:00:: 14460257 1 0 -fare_increase%1:07:00:: 05109986 1 0 -farewell%1:04:00:: 00053097 2 0 -farewell%1:10:00:: 06629392 1 4 -farfalle%1:13:00:: 07699430 1 0 -farfetched%5:00:00:unlikely:00 01412721 1 0 -fargo%1:15:00:: 09129926 1 0 -farina%1:13:00:: 07568241 1 0 -farinaceous%5:00:00:coarse:00 02231502 2 0 -farinaceous%5:00:00:starchy:00 02299189 1 0 -farkleberry%1:20:00:: 12246773 1 0 -farley_maidenhair%1:20:00:: 13207923 1 0 -farley_maidenhair_fern%1:20:00:: 13207923 1 0 -farm%1:06:00:: 03322099 1 49 -farm%2:36:00:: 01739814 3 0 -farm%2:40:00:: 02218443 2 0 -farm%2:41:00:: 02420232 1 4 -farm-place%1:06:00:: 03323096 1 0 -farm_animal%1:05:00:: 01887474 1 0 -farm_bill%1:10:00:: 06537701 1 0 -farm_boy%1:18:00:: 10078719 1 0 -farm_building%1:06:00:: 03322570 1 1 -farm_cheese%1:13:00:: 07851767 1 0 -farm_club%1:14:00:: 08079151 1 1 -farm_credit_system%1:14:00:: 08421975 1 0 -farm_girl%1:18:00:: 10079310 1 0 -farm_horse%1:05:00:: 02387254 1 0 -farm_machine%1:06:00:: 03322940 1 0 -farm_out%2:40:00:: 02209499 2 1 -farm_out%2:41:00:: 02461063 1 1 -farm_team%1:14:00:: 08079151 1 0 -farm_worker%1:18:00:: 10079399 1 0 -farmer%1:18:00:: 10078806 1 29 -farmer%1:18:01:: 10966665 2 0 -farmer%1:18:02:: 10966496 3 0 -farmer's_calendar%1:10:00:: 06426655 1 0 -farmer's_cheese%1:13:00:: 07851767 1 0 -farmer's_lung%1:26:00:: 14259865 1 0 -farmer's_market%1:06:00:: 03322704 1 0 -farmer-labor_party%1:14:00:: 08259611 1 0 -farmerette%1:18:00:: 10079210 1 0 -farmhand%1:18:00:: 10079399 1 0 -farmhouse%1:06:00:: 03322836 1 3 -farming%1:04:00:: 00916464 1 12 -farming%1:04:01:: 00453731 2 0 -farming%5:00:00:rural:00 02050841 1 0 -farming_area%1:15:00:: 08569482 1 0 -farmington%1:15:00:: 09115646 1 0 -farmington%1:15:01:: 09069072 2 0 -farmland%1:15:00:: 08569482 1 1 -farmland%1:17:00:: 09260907 2 0 -farmplace%1:06:00:: 03323096 1 0 -farmstead%1:06:00:: 03323096 2 0 -farmstead%1:21:00:: 13249599 1 0 -farmyard%1:06:00:: 03323211 1 0 -farness%1:07:00:: 05085165 1 0 -faro%1:04:00:: 00492724 1 0 -faroe_islands%1:15:00:: 08952628 2 0 -faroe_islands%1:15:01:: 08952856 1 0 -faroes%1:15:00:: 08952628 2 0 -faroes%1:15:01:: 08952856 1 0 -faroese%1:10:00:: 06955087 1 0 -farouk_i%1:18:00:: 10966842 1 0 -farrago%1:14:00:: 08399977 1 0 -farragut%1:18:00:: 10966982 1 0 -farrell%1:18:00:: 10967152 2 0 -farrell%1:18:01:: 10967311 1 0 -farrier%1:18:00:: 10079677 1 0 -farrow%1:22:00:: 13479034 1 0 -farrow%2:29:00:: 00058645 1 0 -farrowing%1:22:00:: 13479034 1 0 -farseeing%5:00:00:farsighted:00 02157594 1 0 -farseeing%5:00:00:provident:00 01895296 2 0 -farsi%1:10:00:: 06974127 2 0 -farsi%1:18:00:: 10079769 1 0 -farsighted%3:00:00:: 02157399 1 0 -farsighted%5:00:00:provident:00 01895296 2 0 -farsightedness%1:09:00:: 05805277 3 0 -farsightedness%1:26:00:: 14554011 2 0 -farsightedness%1:26:01:: 14555214 1 0 -fart%1:04:00:: 00839597 1 0 -fart%2:29:00:: 00101629 1 0 -farther%4:02:00:: 00029639 2 2 -farther%4:02:02:: 00029985 1 3 -farther%5:00:01:far:00 00443490 1 2 -farther%5:00:02:far:00 00443988 2 1 -farthermost%5:00:00:far:00 00443618 1 0 -farthest%4:02:00:: 00030654 1 1 -farthest%4:02:01:: 00030914 2 0 -farthest%5:00:00:far:00 00443618 1 0 -farthing%1:21:00:: 13392786 1 0 -farthingale%1:06:00:: 03323319 1 0 -farting%1:04:00:: 00839597 1 0 -fartlek%1:04:00:: 00893649 1 0 -faruk_i%1:18:00:: 10966842 1 0 -fas%1:26:00:: 14305458 1 0 -fasces%1:10:00:: 06881798 1 0 -fascia%1:06:00:: 03163222 2 0 -fascia%1:08:00:: 05582513 1 0 -fascicle%1:08:00:: 05475681 2 0 -fascicle%1:10:00:: 06391902 1 0 -fasciculation%1:26:00:: 14363367 1 1 -fascicule%1:10:00:: 06391902 1 0 -fasciculus%1:08:00:: 05475681 1 0 -fascinate%2:37:00:: 01821132 2 3 -fascinate%2:37:01:: 01806505 3 0 -fascinate%2:42:00:: 02678839 1 3 -fascinated%5:00:02:enchanted:00 00865848 1 1 -fascinating%5:00:00:attractive:01 00166753 2 0 -fascinating%5:00:00:interesting:00 01344171 1 7 -fascinatingly%4:02:00:: 00237152 1 1 -fascination%1:07:00:: 04689450 3 0 -fascination%1:12:00:: 07497976 2 0 -fascination%1:26:00:: 14407899 1 2 -fasciola%1:05:00:: 01926247 1 0 -fasciola_hepatica%1:05:00:: 01926379 1 0 -fascioliasis%1:26:00:: 14175727 1 0 -fasciolidae%1:05:00:: 01926090 1 0 -fasciolopsiasis%1:26:00:: 14175903 1 0 -fasciolopsis%1:05:00:: 01926549 1 0 -fasciolopsis_buski%1:05:00:: 01926689 1 0 -fasciolosis%1:26:00:: 14175727 1 0 -fascism%1:09:00:: 06217944 1 2 -fascist%1:18:00:: 10079893 1 0 -fascist%3:01:00:: 02920769 1 1 -fascista%1:18:00:: 10080117 1 0 -fascistic%3:01:00:: 02920769 1 0 -fashion%1:04:00:: 00415226 2 6 -fashion%1:06:00:: 03323593 4 0 -fashion%1:07:00:: 04928903 1 17 -fashion%1:09:00:: 05750657 3 2 -fashion%2:36:00:: 01658188 1 8 -fashion_arbiter%1:18:00:: 10728233 1 0 -fashion_business%1:14:00:: 08066317 1 0 -fashion_consultant%1:18:00:: 10080206 1 0 -fashion_designer%1:18:00:: 09972157 1 0 -fashion_industry%1:14:00:: 08066317 1 0 -fashion_model%1:18:00:: 10291240 1 0 -fashion_plate%1:06:00:: 03323485 2 0 -fashion_plate%1:18:00:: 09991026 1 0 -fashionable%3:00:00:: 00971075 1 3 -fashionable%3:00:02:: 00975171 2 0 -fashionable%5:00:00:popular:00 01816305 3 0 -fashionably%4:02:00:: 00337313 1 0 -fashioned%5:00:00:designed:00 01340016 1 0 -fashioning%1:04:00:: 00923995 1 0 -fashionmonger%1:18:00:: 10080206 1 0 -fast%1:04:00:: 01069980 1 1 -fast%2:34:00:: 01189427 2 0 -fast%2:34:01:: 01189604 1 0 -fast%3:00:01:: 00976508 1 18 -fast%3:00:02:: 00981818 3 0 -fast%3:00:03:: 00983573 2 0 -fast%4:02:01:: 00086000 1 16 -fast%4:02:02:: 00086404 2 1 -fast%5:00:00:causative:00 00323873 10 0 -fast%5:00:00:faithful:00 00959244 9 0 -fast%5:00:00:fixed:00 01059711 8 0 -fast%5:00:00:hurried:00 01270486 7 0 -fast%5:00:00:immoral:00 01549568 6 0 -fast%5:00:00:impervious:00 01774091 5 0 -fast%5:00:00:smooth:00 02237502 4 0 -fast-breaking%5:00:00:fast:01 00977839 1 0 -fast-flying%5:00:00:moving:02 01562992 1 1 -fast-footed%5:00:00:footed:00 01031602 1 0 -fast-growing%5:00:00:invasive:00 01356143 1 1 -fast-paced%5:00:00:fast:01 00978059 1 0 -fast_asleep%5:00:00:asleep:00 00188738 1 0 -fast_break%1:04:00:: 00294577 1 0 -fast_buck%1:21:00:: 13260510 1 0 -fast_day%1:28:00:: 15161165 1 0 -fast_dye%2:30:00:: 00288192 1 0 -fast_food%1:13:00:: 07560193 1 0 -fast_lane%1:06:00:: 03324502 2 0 -fast_lane%1:07:00:: 04930850 1 0 -fast_of_ab%1:28:00:: 15197658 1 0 -fast_of_av%1:28:00:: 15197658 1 0 -fast_of_esther%1:28:00:: 15198401 1 0 -fast_of_gedaliah%1:28:00:: 15197954 1 0 -fast_of_tammuz%1:28:00:: 15198872 1 0 -fast_of_tevet%1:28:00:: 15198136 1 0 -fast_of_the_firstborn%1:28:00:: 15198662 1 0 -fast_one%1:04:00:: 00171618 1 0 -fast_reactor%1:06:00:: 03324629 1 0 -fast_time_scale%1:28:00:: 15135258 1 0 -fast_track%1:04:00:: 00173487 1 0 -fastball%1:04:00:: 00108181 1 2 -fasten%2:30:00:: 00420132 4 0 -fasten%2:35:00:: 01343892 2 4 -fasten%2:35:01:: 01340439 1 13 -fasten%2:35:03:: 01290133 3 2 -fasten_on%2:31:00:: 00602112 1 0 -fastened%3:00:00:: 02095936 1 1 -fastened%3:00:02:: 00296625 2 0 -fastened%3:00:03:: 00254746 3 0 -fastener%1:06:00:: 03323703 2 0 -fastener%1:18:00:: 10080337 1 0 -fastening%1:04:00:: 00147595 2 0 -fastening%1:06:00:: 03323703 1 0 -faster%4:02:01:: 00086528 1 3 -fastest%4:02:00:: 00086685 1 0 -fastidious%3:00:00:: 00983862 1 2 -fastidious%3:00:02:: 00985608 2 0 -fastidiously%4:02:00:: 00337681 2 0 -fastidiously%4:02:01:: 00416553 1 0 -fastidiousness%1:07:00:: 04896317 1 0 -fastigiate%5:00:00:erect:00 01236565 1 0 -fasting%1:04:00:: 01069980 1 0 -fastnacht%1:13:00:: 07639475 1 0 -fastness%1:06:00:: 04340935 3 0 -fastness%1:07:00:: 05058140 1 0 -fastness%1:07:01:: 04777098 2 0 -fat%1:07:00:: 04999401 3 0 -fat%1:08:00:: 05268965 2 1 -fat%1:27:00:: 14864360 1 2 -fat%2:34:00:: 01194938 1 0 -fat%3:00:01:: 00986027 1 22 -fat%3:00:02:: 00991838 3 0 -fat%5:00:00:fruitful:00 01081340 5 0 -fat%5:00:00:profitable:00 01871349 4 0 -fat%5:00:00:thick:01 02411224 2 2 -fat-free%3:00:00:: 00992955 1 0 -fat-soluble%5:00:00:soluble:01 02265496 1 0 -fat-soluble_vitamin%1:27:00:: 15089472 1 0 -fat_cat%1:18:00:: 10080784 1 0 -fat_cell%1:08:00:: 05456622 1 0 -fat_chance%1:07:00:: 05093080 1 0 -fat_embolism%1:26:00:: 14101568 1 0 -fat_farm%1:06:00:: 03324814 1 0 -fat_hen%1:20:00:: 11828973 1 0 -fat_metabolism%1:22:00:: 13479169 1 0 -fat_person%1:18:00:: 10082146 1 0 -fat_tuesday%1:04:00:: 00520059 1 0 -fata_morgana%1:19:00:: 11456615 1 0 -fatah%1:14:00:: 08011523 1 0 -fatah-rc%1:14:00:: 08020242 1 0 -fatah_revolutionary_council%1:14:00:: 08020242 1 0 -fatah_tanzim%1:14:00:: 08020785 1 0 -fatal%3:00:00:: 00993529 1 6 -fatal%5:00:00:decisive:00 00685113 2 4 -fatal%5:00:00:inevitable:00 00343226 4 0 -fatal%5:00:00:unfortunate:00 01050088 3 0 -fatal_accident%1:11:00:: 07361717 1 0 -fatalism%1:09:00:: 05971394 2 0 -fatalism%1:09:01:: 06194030 1 0 -fatalist%1:18:00:: 10080508 1 0 -fatalist%3:01:00:: 03065516 1 0 -fatalistic%3:01:00:: 03065516 1 0 -fatality%1:07:00:: 04791321 2 0 -fatality%1:11:00:: 07332956 1 0 -fatality_rate%1:28:00:: 15277118 1 0 -fatally%4:02:00:: 00506577 1 1 -fatback%1:13:00:: 07671269 1 0 -fate%1:11:00:: 07330007 1 9 -fate%1:18:00:: 09504915 2 4 -fate%1:26:00:: 14473222 3 2 -fate%2:32:00:: 00746479 1 0 -fated%5:00:00:certain:03 00340827 1 0 -fateful%5:00:00:decisive:00 00685113 1 2 -fateful%5:00:00:inevitable:00 00343226 4 0 -fateful%5:00:00:prophetic:00 01883106 2 0 -fateful%5:00:00:unfortunate:00 01050088 3 0 -fatefully%4:02:00:: 00338151 1 0 -fathead%1:18:00:: 10157744 1 0 -fatheaded%5:00:00:stupid:00 00440292 1 0 -father%1:18:00:: 10080869 1 72 -father%1:18:01:: 10081204 3 2 -father%1:18:02:: 09536973 6 1 -father%1:18:03:: 10102800 2 2 -father%1:18:04:: 09921792 4 2 -father%1:18:05:: 10081456 5 1 -father%1:18:06:: 10107303 7 0 -father%1:18:07:: 10025295 8 0 -father%2:29:00:: 00054628 1 2 -father's_day%1:28:00:: 15189982 1 0 -father-figure%1:18:01:: 10081842 1 0 -father-god%1:18:00:: 09536973 1 1 -father-in-law%1:18:00:: 10082043 1 0 -father_brown%1:18:00:: 09598888 1 0 -father_christmas%1:18:00:: 10550673 1 0 -father_figure%1:18:00:: 10081670 1 0 -father_of_radio%1:18:00:: 10927424 1 0 -father_of_the_church%1:18:00:: 09921792 1 0 -father_of_the_submarine%1:18:00:: 10876160 1 0 -father_surrogate%1:18:00:: 10081670 1 0 -fatherhood%1:04:00:: 00592367 4 0 -fatherhood%1:04:01:: 00592446 3 0 -fatherhood%1:18:00:: 09536973 2 0 -fatherhood%1:24:00:: 13813898 1 0 -fatherland%1:15:00:: 08510169 1 0 -fatherless%5:00:00:illegitimate:00 01408135 2 0 -fatherless%5:00:00:unparented:00 01734267 1 0 -fatherlike%5:00:00:paternal:00 01734607 1 0 -fatherliness%1:07:00:: 04873305 1 0 -fatherly%5:00:00:paternal:00 01734607 1 0 -fathom%1:23:01:: 13660178 1 0 -fathom%1:23:02:: 13617308 2 0 -fathom%2:30:00:: 00491689 2 0 -fathom%2:31:00:: 00728954 1 4 -fathomable%3:00:00:: 00994744 1 0 -fathomable%5:00:00:comprehensible:00 00533738 2 0 -fathometer%1:06:00:: 04260192 1 0 -fatigability%1:07:00:: 05042012 1 0 -fatigue%1:04:00:: 00730708 4 0 -fatigue%1:12:00:: 07540081 3 0 -fatigue%1:26:00:: 14016361 1 4 -fatigue%1:26:02:: 14463676 2 0 -fatigue%2:29:00:: 00075021 2 0 -fatigue%2:29:01:: 00076114 1 0 -fatigue_crack%1:17:00:: 09278432 1 0 -fatigue_duty%1:04:00:: 00730708 1 0 -fatigue_fracture%1:26:00:: 14293352 1 0 -fatigue_party%1:14:00:: 08265252 1 0 -fatigued%5:00:00:tired:00 02433451 1 2 -fatigues%1:06:00:: 03324928 1 0 -fatiha%1:10:00:: 06462002 1 0 -fatihah%1:10:00:: 06462002 1 0 -fatima%1:18:00:: 10967447 1 0 -fatimah%1:18:00:: 10967447 1 0 -fatism%1:04:00:: 01154661 1 0 -fatless%3:00:00:: 00992955 1 0 -fatness%1:07:00:: 04999401 1 0 -fats_domino%1:18:00:: 10938640 1 0 -fats_waller%1:18:00:: 11372242 1 0 -fatso%1:18:00:: 10082146 1 0 -fatten%2:34:00:: 01194938 1 1 -fatten_out%2:34:00:: 01194938 1 0 -fatten_up%2:34:00:: 01194938 1 0 -fattened%5:00:00:finished:02 01005410 1 0 -fattening%5:00:00:finished:02 01005506 1 1 -fattiness%1:07:00:: 04999741 1 0 -fattish%5:00:00:fat:01 00987703 1 0 -fattism%1:04:00:: 01154661 1 0 -fatty%1:18:00:: 10082146 1 0 -fatty%3:00:00:: 00991838 1 1 -fatty_acid%1:27:00:: 14740227 1 2 -fatty_liver%1:26:00:: 14116672 1 0 -fatty_oil%1:27:00:: 14967478 1 0 -fatty_tissue%1:08:00:: 05268965 1 0 -fatuity%1:07:00:: 04891683 1 0 -fatuous%5:00:00:foolish:00 02571277 1 0 -fatuously%4:02:00:: 00201893 1 0 -fatuousness%1:07:00:: 04891683 1 0 -fatwa%1:04:00:: 01191610 1 0 -fatwah%1:10:00:: 06765656 1 0 -faubourg%1:15:00:: 08555102 1 0 -faucal%3:01:00:: 02992796 1 0 -fauces%1:08:00:: 05547904 1 0 -faucet%1:06:01:: 03325088 1 1 -faucial_tonsil%1:08:00:: 05309050 1 0 -fauld%1:06:00:: 03325288 1 0 -faulkner%1:18:00:: 10967633 1 0 -fault%1:04:00:: 00070965 1 8 -fault%1:04:01:: 00568813 7 0 -fault%1:07:00:: 05139094 3 1 -fault%1:07:01:: 04669692 6 0 -fault%1:11:00:: 07422244 5 0 -fault%1:17:00:: 09278537 4 0 -fault%1:26:00:: 14464203 2 4 -fault%2:32:00:: 00842538 1 1 -fault_line%1:15:00:: 08569591 1 0 -faultfinder%1:18:00:: 09986532 1 0 -faultfinding%1:10:00:: 06711030 1 0 -faultfinding%5:00:00:critical:01 00647867 2 0 -faultfinding%5:00:00:judgmental:00 00649228 1 0 -faultily%4:02:00:: 00338292 1 0 -faultiness%1:26:00:: 14472299 1 0 -faulting%1:17:00:: 09278537 1 0 -faultless%5:00:00:perfect:00 01750847 1 0 -faultlessly%4:02:00:: 00338421 1 0 -faultlessness%1:07:00:: 04899573 1 0 -faulty%5:00:00:imperfect:00 01752953 1 0 -faulty%5:00:00:inaccurate:00 00023854 2 0 -faun%1:18:00:: 09538757 1 0 -fauna%1:03:00:: 00015388 2 0 -fauna%1:14:00:: 07993279 1 0 -fauntleroy%1:18:00:: 10082299 1 0 -faunus%1:18:00:: 09568488 1 0 -faust%1:18:00:: 09599023 1 0 -faustian%3:01:00:: 03134282 1 0 -fausto_paolo_sozzini%1:18:00:: 11307262 1 0 -faustus%1:18:00:: 09599023 1 0 -faustus_socinus%1:18:00:: 11307262 1 0 -fauteuil%1:06:00:: 03325403 1 1 -fauve%1:18:00:: 10082423 1 0 -fauvism%1:14:00:: 08467871 1 0 -fauvist%1:18:00:: 10082423 1 0 -faux%5:00:00:artificial:00 01573238 1 0 -faux_pas%1:04:00:: 00076196 1 0 -fava_bean%1:13:00:: 07729384 2 0 -fava_bean%1:20:00:: 12576323 1 0 -faveolate%5:00:00:cellular:00 00327690 1 0 -favism%1:26:00:: 14165081 1 0 -favor%1:04:00:: 01226941 1 12 -favor%1:06:00:: 03894762 5 0 -favor%1:07:00:: 05156319 2 5 -favor%1:09:00:: 06200617 3 1 -favor%1:12:00:: 07500414 4 0 -favor%2:31:00:: 00692143 2 7 -favor%2:41:00:: 02400037 1 17 -favor%2:41:01:: 02464725 3 1 -favor%2:41:03:: 02453692 4 1 -favorable%3:00:01:: 00995119 2 1 -favorable%3:00:02:: 00995775 1 4 -favorable%5:00:00:amicable:00 01246801 4 0 -favorable%5:00:00:convenient:00 00604978 5 0 -favorable%5:00:00:propitious:00 00177547 3 1 -favorable_position%1:07:00:: 05158619 1 1 -favorable_reception%1:26:00:: 14412374 1 0 -favorableness%1:07:00:: 05160796 1 0 -favorably%4:02:00:: 00230444 1 3 -favored%5:00:00:loved:00 01462882 1 2 -favorite%1:09:00:: 05790758 1 5 -favorite%1:18:00:: 09991867 2 1 -favorite%1:18:01:: 10113753 3 0 -favorite%5:00:00:loved:00 01462882 2 1 -favorite%5:00:00:popular:00 01816376 1 1 -favorite_son%1:18:00:: 10082562 1 0 -favoritism%1:04:00:: 01153548 2 0 -favoritism%1:09:00:: 06199446 1 0 -favour%1:04:00:: 01226941 5 0 -favour%1:06:00:: 03894762 4 0 -favour%1:07:00:: 05156319 3 0 -favour%1:09:00:: 06200617 2 0 -favour%1:12:00:: 07500414 1 0 -favour%2:31:00:: 00692143 4 0 -favour%2:41:00:: 02400037 3 0 -favour%2:41:01:: 02464725 1 0 -favour%2:41:03:: 02453692 2 0 -favourable%3:00:01:: 00995119 2 0 -favourable%3:00:02:: 00995775 1 0 -favourable%5:00:00:convenient:00 00604978 3 0 -favourable%5:00:00:propitious:00 00177547 4 0 -favourable_position%1:07:00:: 05158619 1 0 -favourable_reception%1:26:00:: 14412374 1 0 -favourableness%1:07:00:: 05160796 1 0 -favourably%4:02:00:: 00230444 1 0 -favourite%1:09:00:: 05790758 3 0 -favourite%1:18:00:: 09991867 2 0 -favourite%1:18:01:: 10113753 1 0 -favourite%5:00:00:loved:00 01462882 2 0 -favourite%5:00:00:popular:00 01816376 1 0 -favouritism%1:04:00:: 01153548 2 0 -favouritism%1:09:00:: 06199446 1 0 -favus%1:26:00:: 14182103 1 0 -fawkes%1:18:00:: 10967872 1 0 -fawn%1:05:00:: 02430830 2 0 -fawn%1:07:00:: 04973110 1 1 -fawn%2:29:00:: 00058794 3 0 -fawn%2:32:00:: 00880978 2 0 -fawn%2:38:00:: 02063771 1 0 -fawn-colored%5:00:00:colored:00 00397532 1 0 -fawn-coloured%5:00:00:colored:00 00397532 1 0 -fawn_lily%1:20:00:: 12451240 1 0 -fawner%1:18:00:: 09800631 1 0 -fawning%5:00:00:insincere:00 02181231 1 0 -fawning%5:00:00:servile:00 00790394 2 0 -fax%1:06:00:: 03316105 1 0 -fax%2:32:00:: 01007676 1 0 -fay%1:18:00:: 09540430 1 0 -fayetteville%1:15:00:: 09059741 3 0 -fayetteville%1:15:01:: 09156095 1 0 -fayetteville%1:15:02:: 09128691 2 0 -faze%2:37:00:: 01783881 1 1 -fazed%5:00:00:discomposed:00 00532147 1 0 -fbi%1:14:00:: 08136260 1 0 -fbi_agent%1:18:00:: 10133850 1 0 -fcc%1:14:00:: 08134415 1 0 -fcs%1:14:00:: 08421975 1 0 -fda%1:14:00:: 08124256 1 0 -fdic%1:14:00:: 08384342 1 0 -fdr%1:18:00:: 11270023 1 0 -fe%1:27:00:: 14642417 1 0 -feabane_mullet%1:20:00:: 12005656 1 0 -fealty%1:07:00:: 04877938 1 0 -fear%1:12:00:: 07519253 1 73 -fear%1:12:01:: 07524529 2 7 -fear%1:12:02:: 07521039 3 0 -fear%2:37:00:: 01780202 2 20 -fear%2:37:01:: 01778568 5 0 -fear%2:37:02:: 01780568 3 1 -fear%2:37:03:: 01780729 1 23 -fear%2:37:13:: 01780434 4 0 -fearful%3:00:04:: 00264776 3 0 -fearful%5:00:00:afraid:00 00079485 1 2 -fearful%5:00:00:alarming:00 00193799 2 1 -fearful%5:00:00:bad:00 01127147 4 0 -fearful%5:00:00:timid:00 00252498 5 0 -fearfully%4:02:00:: 00199565 1 3 -fearfully%4:02:01:: 00505744 2 1 -fearfulness%1:07:00:: 04860586 2 0 -fearfulness%1:12:00:: 07519253 1 0 -fearless%3:00:00:: 00081671 1 1 -fearless%5:00:00:bold:00 00250119 2 0 -fearlessly%4:02:00:: 00199687 1 0 -fearlessness%1:07:00:: 04858455 2 0 -fearlessness%1:12:00:: 07526182 1 0 -fearsome%5:00:00:alarming:00 00193799 1 0 -fearsomely%4:02:00:: 00338559 1 0 -feasibility%1:07:00:: 05152364 1 3 -feasible%5:00:00:possible:00 01822563 1 4 -feasibleness%1:07:00:: 05152364 1 0 -feasibly%4:02:00:: 00428572 1 0 -feast%1:11:00:: 07290144 2 1 -feast%1:11:01:: 07449862 4 0 -feast%1:13:00:: 07578093 3 0 -feast%1:14:00:: 08253640 1 1 -feast%2:34:00:: 01185981 1 1 -feast%2:34:01:: 01186208 2 0 -feast%2:34:02:: 01182152 3 0 -feast_day%1:28:00:: 15161631 1 0 -feast_of_booths%1:28:00:: 15161872 1 0 -feast_of_dedication%1:28:00:: 15199033 1 0 -feast_of_dormition%1:28:00:: 15194194 1 0 -feast_of_lights%1:28:00:: 15199033 1 0 -feast_of_sacrifice%1:28:00:: 15219022 1 0 -feast_of_tabernacles%1:28:00:: 15161872 1 0 -feast_of_the_circumcision%1:28:00:: 15193271 1 0 -feast_of_the_dedication%1:28:00:: 15199033 1 0 -feast_of_the_unleavened_bread%1:28:00:: 15195928 1 0 -feast_of_weeks%1:28:00:: 15197042 1 0 -feast_one's_eyes%2:37:00:: 01820648 1 0 -feasting%1:04:00:: 00840751 1 0 -feat%1:04:00:: 00036762 1 6 -feather%1:04:00:: 00342565 2 0 -feather%1:05:00:: 01896031 1 6 -feather%2:29:00:: 00094312 5 0 -feather%2:33:00:: 01124828 4 0 -feather%2:33:02:: 01124964 3 0 -feather%2:35:00:: 01272798 2 0 -feather%2:35:01:: 01272915 1 1 -feather-foil%1:20:00:: 12094244 1 0 -feather_ball%1:20:00:: 11849983 1 0 -feather_bed%1:06:00:: 03325481 1 0 -feather_boa%1:06:00:: 03325584 1 0 -feather_geranium%1:20:00:: 11829205 1 0 -feather_one's_nest%2:40:00:: 02318843 1 0 -feather_palm%1:20:00:: 12582846 1 0 -feather_reed_grass%1:20:00:: 12113195 1 0 -feather_star%1:05:00:: 02321170 1 0 -featherbed%1:06:00:: 03325481 1 0 -featherbed%2:32:00:: 00751775 2 0 -featherbed%2:41:00:: 02570267 1 0 -featherbedding%1:04:00:: 00411553 1 0 -featherbrained%5:00:00:frivolous:00 02120828 1 0 -feathered%3:00:00:: 00997604 2 0 -feathered%5:00:00:adorned:00 00058554 1 1 -featheredge%1:06:00:: 03325691 1 0 -featheredged%5:00:00:bordered:00 00258255 1 0 -featherfoil%1:20:00:: 12094244 1 0 -featheriness%1:07:00:: 04938838 1 0 -feathering%1:04:00:: 00342565 1 0 -featherless%3:00:00:: 00999330 1 0 -featherlike%5:00:00:feathered:00 00998207 1 0 -feathertop%1:20:01:: 12129349 1 0 -feathertop%1:20:02:: 12113195 2 0 -feathertop_grass%1:20:00:: 12129349 1 0 -featherweight%1:18:00:: 10082687 3 0 -featherweight%1:18:01:: 10082805 2 0 -featherweight%1:18:02:: 10082886 1 0 -feathery%5:00:00:adorned:00 00058554 3 0 -feathery%5:00:01:feathered:00 00998040 2 0 -feathery%5:00:02:feathered:00 00998207 1 0 -feature%1:06:00:: 03325769 6 0 -feature%1:08:00:: 05601758 2 18 -feature%1:09:00:: 05849789 1 42 -feature%1:09:01:: 05850212 5 0 -feature%1:10:00:: 06615026 3 2 -feature%1:10:01:: 06268784 4 0 -feature%2:42:00:: 02630189 1 16 -feature%2:42:01:: 02631659 2 3 -feature_article%1:10:00:: 06268784 1 0 -feature_film%1:10:00:: 06615026 1 0 -feature_of_speech%1:09:00:: 05850212 1 0 -featured%5:00:00:conspicuous:00 00580346 1 2 -featured%5:00:00:faced:00 00235429 2 1 -featureless%5:00:00:plain:01 01793254 1 1 -feb%1:28:00:: 15210486 1 5 -feb_2%1:28:00:: 15186681 1 0 -febricity%1:26:00:: 14365356 1 0 -febrifuge%1:06:00:: 02723595 1 0 -febrile%3:01:00:: 02726715 1 0 -febrility%1:26:00:: 14365356 1 0 -february%1:28:00:: 15210486 1 16 -february_12%1:28:00:: 15187077 1 0 -february_14%1:28:00:: 15187250 1 0 -february_2%1:28:00:: 15186871 1 0 -february_22%1:28:00:: 15187451 1 0 -february_29%1:28:00:: 15159426 1 0 -february_daphne%1:20:00:: 12347158 1 0 -february_revolution%1:04:00:: 01307754 1 0 -fecal%3:01:00:: 03065685 1 0 -fecal_impaction%1:26:00:: 14371620 1 0 -fecal_matter%1:27:00:: 14854262 1 0 -fecal_occult_test%1:09:00:: 05741340 1 0 -fecalith%1:17:00:: 09256360 1 0 -feces%1:27:00:: 14854262 1 0 -fechner%1:18:00:: 10968058 1 0 -fechner's_law%1:09:00:: 05877718 1 0 -feckless%5:00:00:incompetent:00 00511526 2 0 -feckless%5:00:00:irresponsible:00 01998730 1 0 -fecklessly%4:02:00:: 00228253 1 0 -fecklessly%4:02:01:: 00163881 2 0 -fecklessness%1:07:00:: 05139942 1 0 -fecula%1:27:00:: 14855428 1 0 -feculence%1:26:00:: 14488118 1 0 -feculent%5:00:00:dirty:01 00421513 1 0 -fecund%5:00:00:fertile:00 01002055 1 1 -fecund%5:00:00:productive:00 01865967 2 0 -fecundate%2:29:00:: 00052548 2 0 -fecundate%2:30:00:: 00504270 1 0 -fecundation%1:11:00:: 07436986 1 0 -fecundation%1:11:01:: 07434473 2 0 -fecundity%1:07:00:: 05147381 3 0 -fecundity%1:09:00:: 05625066 1 1 -fecundity%1:26:00:: 14051494 2 0 -fed%1:14:00:: 08350470 2 0 -fed%1:18:00:: 10373525 1 0 -fed_up%5:00:00:displeased:00 01806677 1 0 -fedayeen%1:14:00:: 08207540 1 0 -fedayeen_saddam%1:14:00:: 08207672 1 0 -fedelline%1:13:00:: 07700439 1 0 -federal%1:18:00:: 10373525 2 0 -federal%1:18:01:: 10373639 1 0 -federal%3:00:00:: 01107206 4 0 -federal%3:01:02:: 02725829 2 5 -federal%5:00:00:national:01 01106129 1 39 -federal%5:00:00:northern:02 01606214 3 4 -federal_agency%1:14:00:: 08337324 1 0 -federal_agent%1:18:00:: 10373801 1 0 -federal_aviation_agency%1:14:00:: 08143926 1 0 -federal_bureau_of_investigation%1:14:00:: 08136260 1 0 -federal_bureau_of_prisons%1:14:00:: 08141664 1 0 -federal_communications_commission%1:14:00:: 08134415 1 0 -federal_court%1:14:00:: 08332330 1 1 -federal_deficit%1:21:00:: 13396603 1 0 -federal_democratic_republic_of_ethiopia%1:15:00:: 08778061 1 0 -federal_department%1:14:00:: 08122141 1 1 -federal_deposit_insurance_corporation%1:14:00:: 08384342 1 0 -federal_district%1:15:00:: 08553280 1 0 -federal_emergency_management_agency%1:14:00:: 08123970 1 0 -federal_government%1:14:00:: 08052549 1 11 -federal_home_loan_bank_system%1:14:00:: 08423490 1 0 -federal_home_loan_mortgage_corporation%1:14:00:: 08384539 1 0 -federal_housing_administration%1:14:00:: 08423634 1 1 -federal_islamic_republic_of_the_comoros%1:15:00:: 08733897 1 0 -federal_job_safety_law%1:10:00:: 06535652 1 0 -federal_judiciary%1:14:00:: 08141951 1 0 -federal_law_enforcement_training_center%1:14:00:: 08137028 1 0 -federal_national_mortgage_association%1:14:00:: 08384738 1 0 -federal_office%1:14:00:: 08122141 1 0 -federal_official%1:18:00:: 10373525 1 0 -federal_party%1:14:00:: 08259753 1 0 -federal_protective_service%1:14:00:: 08351777 1 0 -federal_republic_of_germany%1:15:00:: 08766988 2 0 -federal_republic_of_germany%1:15:01:: 08768881 1 0 -federal_republic_of_nigeria%1:15:00:: 08973776 1 0 -federal_republic_of_yugoslavia%1:15:00:: 08816236 1 0 -federal_reserve%1:14:00:: 08350470 1 0 -federal_reserve_bank%1:14:00:: 08350919 1 0 -federal_reserve_board%1:14:00:: 08323980 1 0 -federal_reserve_note%1:21:00:: 13393762 1 0 -federal_reserve_system%1:14:00:: 08350470 1 0 -federal_savings_bank%1:14:00:: 08424662 1 0 -federal_security_bureau%1:14:00:: 08485598 1 0 -federal_security_service%1:14:00:: 08485598 1 0 -federal_soldier%1:18:00:: 10373639 1 1 -federal_tax_lien%1:21:00:: 13401412 1 0 -federal_trade_commission%1:14:00:: 08351107 1 0 -federalisation%1:04:00:: 00804379 2 0 -federalisation%1:26:00:: 14418970 1 0 -federalise%2:30:00:: 00369194 3 0 -federalise%2:30:01:: 00504464 1 0 -federalise%2:30:02:: 00369442 2 0 -federalism%1:09:00:: 06218162 1 0 -federalist%1:18:00:: 10082997 2 0 -federalist%1:18:01:: 10083097 1 0 -federalist_party%1:14:00:: 08259753 1 0 -federalization%1:04:00:: 00804379 2 0 -federalization%1:26:00:: 14418970 1 0 -federalize%2:30:00:: 00369194 1 1 -federalize%2:30:01:: 00504464 2 0 -federalize%2:30:02:: 00369442 3 0 -federally%4:02:00:: 00123819 1 0 -federate%2:30:00:: 00369194 2 0 -federate%2:30:01:: 00369442 1 0 -federate%5:00:00:united:00 02477457 1 0 -federated%5:00:00:united:00 02477457 1 0 -federated_states_of_micronesia%1:15:00:: 08837048 1 0 -federation%1:04:00:: 01153305 3 0 -federation%1:14:00:: 08303275 2 0 -federation%1:14:01:: 08303504 1 0 -federation_of_saint_kitts_and_nevis%1:15:00:: 08987423 1 0 -federation_of_tribes%1:14:00:: 08168531 1 0 -federative_republic_of_brazil%1:15:00:: 08853741 1 0 -federico_fellini%1:18:00:: 10968401 1 0 -federita%1:20:00:: 12137954 1 0 -fedora%1:06:00:: 03325941 1 1 -fee%1:21:00:: 13320168 1 11 -fee%1:21:01:: 13288529 2 0 -fee%2:40:01:: 02202133 1 0 -fee-tail%2:40:00:: 02363234 1 0 -fee_simple%1:21:00:: 13288661 1 0 -fee_splitting%1:04:00:: 01121245 1 0 -fee_tail%1:21:00:: 13288798 1 0 -feeble%5:00:00:frail:00 02040233 3 0 -feeble%5:00:00:powerless:00 01827766 4 0 -feeble%5:00:00:weak:00 02325097 2 0 -feeble%5:00:02:weak:00 02325304 1 4 -feebleminded%5:00:00:retarded:00 01840673 1 0 -feeblemindedness%1:09:00:: 05646723 1 0 -feebleness%1:07:00:: 05040939 2 0 -feebleness%1:26:00:: 14547643 1 1 -feebly%4:02:00:: 00338704 2 0 -feebly%4:02:01:: 00338837 1 0 -feed%1:13:00:: 07800091 1 32 -feed%2:30:00:: 00502757 11 0 -feed%2:30:01:: 00189511 4 4 -feed%2:34:00:: 01179865 6 3 -feed%2:34:01:: 01178565 2 15 -feed%2:34:02:: 01180206 7 1 -feed%2:34:03:: 01181166 3 5 -feed%2:34:04:: 01182021 1 47 -feed%2:34:05:: 01182152 10 0 -feed%2:34:09:: 01203715 9 0 -feed%2:38:04:: 02066939 8 0 -feed%2:41:00:: 02555787 5 3 -feed_back%2:32:00:: 00876200 2 0 -feed_back%2:40:00:: 02310157 1 1 -feed_bunk%1:06:00:: 02920164 1 2 -feed_grain%1:13:00:: 07801007 1 0 -feed_in%2:30:00:: 00189511 1 0 -feed_on%2:34:00:: 01203234 1 2 -feed_upon%2:34:00:: 01203234 1 1 -feedback%1:10:00:: 06746471 2 1 -feedback%1:22:00:: 13479380 1 1 -feedback_circuit%1:06:00:: 03326073 1 0 -feedback_loop%1:06:00:: 03326073 1 0 -feedbag%1:06:00:: 03831203 1 0 -feeder%1:05:00:: 01317813 1 1 -feeder%1:05:01:: 01317916 6 0 -feeder%1:06:00:: 04169707 4 0 -feeder%1:06:01:: 02843553 5 0 -feeder%1:17:00:: 09278997 3 0 -feeder%1:18:00:: 10042300 2 0 -feeder_line%1:06:00:: 03326239 1 0 -feeding%1:04:00:: 00838367 1 9 -feeding%1:04:01:: 01057759 2 6 -feeding_bottle%1:06:00:: 02877266 1 0 -feeding_chair%1:06:00:: 03518445 1 0 -feedlot%1:06:00:: 03326371 1 5 -feedstock%1:27:00:: 14596839 1 0 -feel%1:04:00:: 00854538 4 0 -feel%1:07:00:: 04946553 3 1 -feel%1:09:00:: 05677340 1 5 -feel%1:26:00:: 14526182 2 1 -feel%2:29:00:: 00105958 4 39 -feel%2:31:00:: 00715239 2 150 -feel%2:31:01:: 00690305 5 37 -feel%2:35:00:: 01209678 9 4 -feel%2:35:01:: 01210352 10 3 -feel%2:35:11:: 01210152 13 0 -feel%2:37:00:: 01771535 1 181 -feel%2:39:00:: 02106006 3 66 -feel%2:39:01:: 02110552 6 34 -feel%2:39:09:: 02134350 12 0 -feel%2:39:10:: 02127613 8 5 -feel%2:40:00:: 02286027 11 1 -feel%2:42:00:: 02730471 7 14 -feel_for%2:37:00:: 01821996 1 1 -feel_like%2:37:00:: 01826184 1 12 -feel_like_a_million%2:29:00:: 00106217 1 0 -feel_like_a_million_dollars%2:29:00:: 00106217 1 0 -feel_out%2:32:00:: 00809071 1 0 -feeler%1:05:01:: 02584915 1 1 -feeler%1:05:02:: 02585285 4 0 -feeler%1:07:00:: 04843270 3 0 -feeler%1:10:00:: 07164349 2 0 -feeling%1:03:00:: 00026192 1 49 -feeling%1:09:00:: 05707718 6 0 -feeling%1:09:01:: 05721500 4 8 -feeling%1:09:02:: 05722427 5 1 -feeling%1:09:03:: 05916739 2 28 -feeling%1:26:00:: 14526182 3 16 -feeling_of_movement%1:09:00:: 05722208 1 0 -feelingly%4:02:00:: 00339029 1 0 -feelings%1:12:00:: 07513035 1 6 -feetfirst%4:02:00:: 00245305 1 0 -fehling's_solution%1:27:00:: 14848245 1 0 -feifer%1:18:00:: 10968257 1 0 -feign%2:32:00:: 00838043 1 1 -feign%2:36:00:: 01721754 2 0 -feigned%5:00:00:insincere:00 02182217 1 0 -feigning%1:04:00:: 00754956 2 0 -feigning%1:10:00:: 06759349 1 0 -feijoa%1:13:00:: 07763107 2 0 -feijoa%1:20:00:: 12332555 1 0 -feijoa_bush%1:20:00:: 12332555 1 0 -feint%1:04:00:: 00172073 1 0 -feint%2:36:00:: 01722299 1 1 -feist%1:05:00:: 02085019 1 0 -feisty%5:00:00:sensitive:02 02106509 2 0 -feisty%5:00:00:spirited:00 02279900 1 0 -felafel%1:13:00:: 07867164 1 0 -feldene%1:06:00:: 03948041 1 0 -feldspar%1:27:00:: 14864961 1 0 -felicia%1:20:00:: 11969410 1 0 -felicia_amelloides%1:20:00:: 11969607 1 0 -felicia_bergeriana%1:20:00:: 11969806 1 0 -felicitate%2:32:00:: 00881998 1 1 -felicitation%1:10:00:: 06633896 2 0 -felicitation%1:10:01:: 07140348 1 0 -felicitous%3:00:00:: 00999817 1 0 -felicitous%5:00:00:fortunate:00 01048406 2 0 -felicitously%4:02:00:: 00339318 1 0 -felicitousness%1:07:00:: 04716210 1 0 -felicity%1:07:00:: 04716210 1 1 -felicity%1:26:00:: 13987423 2 0 -felid%1:05:00:: 02120997 1 0 -felidae%1:05:00:: 02120692 1 0 -feline%1:05:00:: 02120997 1 0 -feline%3:01:00:: 02881888 1 2 -felis%1:05:00:: 02121234 1 0 -felis_bengalensis%1:05:00:: 02126317 1 0 -felis_catus%1:05:00:: 02121808 1 0 -felis_chaus%1:05:00:: 02126028 1 0 -felis_concolor%1:05:00:: 02125311 1 0 -felis_domesticus%1:05:00:: 02121808 1 0 -felis_manul%1:05:00:: 02126787 1 0 -felis_ocreata%1:05:00:: 02125872 1 0 -felis_onca%1:05:00:: 02128925 1 0 -felis_pardalis%1:05:00:: 02125494 1 0 -felis_serval%1:05:00:: 02126139 1 0 -felis_silvestris%1:05:00:: 02125081 1 0 -felis_tigrina%1:05:00:: 02126465 1 0 -felis_wiedi%1:05:00:: 02126640 1 0 -felis_yagouaroundi%1:05:00:: 02125689 1 0 -felix_klein%1:18:00:: 11107308 1 0 -felix_mendelssohn%1:18:00:: 11173917 1 0 -feliz_lusitania%1:15:00:: 08854855 1 0 -fell%1:04:00:: 00222376 3 0 -fell%1:06:00:: 03326475 2 0 -fell%1:27:00:: 14759275 1 0 -fell%2:35:00:: 01258302 1 4 -fell%2:35:02:: 01331237 3 0 -fell%2:38:09:: 02073065 2 0 -fell%5:00:00:inhumane:00 01263013 1 0 -fella%1:18:00:: 09908025 1 3 -fellah%1:18:00:: 10083264 1 0 -fellata%1:18:00:: 09705471 1 0 -fellate%2:39:00:: 02117170 1 0 -fellatio%1:04:00:: 00855169 1 0 -fellation%1:04:00:: 00855169 1 0 -felled_seam%1:06:00:: 03326475 1 0 -feller%1:18:00:: 09908025 2 0 -feller%1:18:01:: 10276045 1 0 -fellini%1:18:00:: 10968401 1 0 -felloe%1:06:00:: 03326660 1 0 -fellow%1:18:00:: 09908025 1 48 -fellow%1:18:01:: 09871364 7 0 -fellow%1:18:02:: 09945905 2 20 -fellow%1:18:03:: 09935990 3 18 -fellow%1:18:04:: 10083358 6 0 -fellow%1:18:05:: 10083526 5 0 -fellow%1:23:00:: 13743100 4 0 -fellow_feeling%1:12:00:: 07553301 1 1 -fellow_member%1:18:00:: 10307234 1 0 -fellow_traveler%1:18:00:: 09946278 2 0 -fellow_traveler%1:18:01:: 10083677 1 0 -fellow_traveller%1:18:00:: 09946278 2 0 -fellow_traveller%1:18:01:: 10083677 1 0 -fellow_worker%1:18:00:: 09936215 1 1 -fellowship%1:14:00:: 08227916 1 7 -fellowship%1:21:00:: 13266348 3 0 -fellowship%1:26:00:: 13929588 2 1 -felly%1:06:00:: 03326660 1 0 -felo-de-se%1:04:00:: 00223268 2 0 -felo-de-se%1:18:00:: 10673669 1 0 -felon%1:18:00:: 09977660 1 1 -felon%1:26:00:: 14176570 2 0 -felonious%5:00:00:illegal:00 01402763 1 0 -felony%1:04:00:: 00768701 1 0 -felspar%1:27:00:: 14864961 1 0 -felt%1:06:00:: 03326795 1 0 -felt%2:30:00:: 00565592 3 0 -felt%2:35:00:: 01316955 2 0 -felt%2:35:01:: 01463212 1 0 -felt-tip_pen%1:06:00:: 03326948 1 0 -felt-tipped_pen%1:06:00:: 03326948 1 0 -felt_fern%1:20:00:: 13178284 1 0 -felt_fungus%1:20:00:: 13069773 1 0 -felt_hat%1:06:00:: 03325941 1 0 -felt_tip%1:06:00:: 03326948 1 0 -felt_up%2:30:00:: 00565592 1 0 -felted%5:00:00:unwoven:00 02580126 1 0 -felucca%1:06:00:: 03327133 1 0 -felwort%1:20:00:: 12296045 1 0 -fema%1:14:00:: 08123970 1 0 -female%1:05:00:: 01320872 1 18 -female%1:18:00:: 09619168 2 4 -female%3:00:00:: 01477806 1 11 -female%5:00:01:female:00 01478182 3 0 -female%5:00:02:feminine:01 01484451 2 3 -female_aristocrat%1:18:00:: 10083823 1 0 -female_body%1:08:00:: 05219923 1 0 -female_bonding%1:24:00:: 13782208 1 0 -female_chest%1:08:00:: 05551494 1 0 -female_child%1:18:00:: 10084295 1 0 -female_circumcision%1:04:00:: 00669155 1 0 -female_genital_organ%1:08:00:: 05514410 1 0 -female_genitalia%1:08:00:: 05514410 1 0 -female_genitals%1:08:00:: 05514410 1 0 -female_horse%1:05:00:: 02377480 1 0 -female_internal_reproductive_organ%1:08:00:: 05514717 1 0 -female_mammal%1:05:00:: 01862399 1 0 -female_monarch%1:18:00:: 10499355 1 0 -female_offspring%1:18:00:: 10084043 1 0 -female_parent%1:18:00:: 10332385 1 0 -female_person%1:18:00:: 09619168 1 0 -female_reproductive_system%1:08:00:: 05513529 1 0 -female_sibling%1:18:00:: 10084181 1 0 -femaleness%1:07:00:: 05008943 1 0 -feminine%1:10:00:: 06328996 1 0 -feminine%3:00:01:: 01484083 1 4 -feminine%3:00:02:: 01486197 2 1 -feminine%3:00:04:: 01484987 3 0 -feminine%5:00:00:unstressed:00 02320289 4 0 -feminineness%1:07:00:: 05008943 1 0 -femininity%1:07:00:: 04667406 1 1 -feminisation%1:22:00:: 13479605 1 0 -feminise%2:30:00:: 00566322 2 0 -feminise%2:30:01:: 00567099 1 0 -feminism%1:04:00:: 00800421 2 0 -feminism%1:09:00:: 05967773 1 0 -feminist%1:18:00:: 10084635 1 0 -feminist%3:01:00:: 02839357 1 0 -feminist_movement%1:04:00:: 00800421 1 0 -feminization%1:22:00:: 13479605 1 0 -feminize%2:30:00:: 00566322 2 0 -feminize%2:30:01:: 00567099 1 0 -femme_fatale%1:18:00:: 10055410 1 0 -femoral%3:01:00:: 02726017 1 0 -femoral_artery%1:08:00:: 05345247 1 0 -femoral_biceps%1:08:00:: 05579053 1 0 -femoral_nerve%1:08:00:: 05568104 1 0 -femoral_pulse%1:28:00:: 15280964 1 0 -femoral_vein%1:08:00:: 05367508 1 0 -femoris%1:08:00:: 05573895 1 0 -femtochemistry%1:09:00:: 06090064 1 0 -femtometer%1:23:00:: 13657691 1 0 -femtometre%1:23:00:: 13657691 1 0 -femtosecond%1:28:00:: 15235687 1 0 -femtovolt%1:23:00:: 13643109 1 0 -femur%1:08:00:: 05573895 1 0 -fen%1:17:00:: 09347779 2 0 -fen%1:23:00:: 13710219 1 0 -fen_orchid%1:20:00:: 12070712 1 0 -fen_orchis%1:20:00:: 12070712 1 0 -fence%1:06:00:: 03327234 1 32 -fence%1:18:00:: 10085101 2 0 -fence%2:32:00:: 00773432 5 0 -fence%2:33:00:: 01130607 4 0 -fence%2:33:01:: 01146918 3 0 -fence%2:35:00:: 01588134 1 1 -fence%2:40:00:: 02210754 2 0 -fence-sitter%1:18:00:: 10085344 1 0 -fence_in%2:33:00:: 01130607 2 0 -fence_in%2:35:00:: 01588134 1 0 -fence_line%1:15:00:: 08514865 1 3 -fence_lizard%1:05:00:: 01680478 1 0 -fence_mending%1:10:00:: 06660009 1 0 -fence_rail%1:06:00:: 04282872 1 2 -fencelike%5:00:00:enclosed:00 01658195 1 0 -fencer%1:18:00:: 10085217 1 0 -fencer's_mask%1:06:00:: 03327553 1 0 -fencesitter%1:18:00:: 10337488 1 0 -fencing%1:04:00:: 01171644 3 0 -fencing%1:06:00:: 03327234 1 2 -fencing%1:27:00:: 14859100 2 0 -fencing_mask%1:06:00:: 03327553 1 0 -fencing_material%1:27:00:: 14859100 1 0 -fencing_stick%1:06:00:: 04223170 1 0 -fencing_sword%1:06:00:: 03327691 1 0 -fend%2:33:00:: 01115916 2 0 -fend%2:41:00:: 02588122 1 0 -fend_for%2:32:00:: 00895304 1 0 -fend_off%2:41:00:: 02453321 1 0 -fender%1:06:00:: 02911158 4 0 -fender%1:06:01:: 03327841 1 1 -fender%1:06:02:: 03328076 3 0 -fender%1:06:03:: 03328201 2 0 -fender-bender%1:11:00:: 07311540 1 0 -fenestella%1:06:00:: 03697665 1 0 -fenestra%1:08:00:: 05325378 1 0 -fenestra_cochleae%1:08:00:: 05325786 1 0 -fenestra_of_the_cochlea%1:08:00:: 05325786 1 0 -fenestra_of_the_vestibule%1:08:00:: 05325606 1 0 -fenestra_ovalis%1:08:00:: 05325606 1 0 -fenestra_rotunda%1:08:00:: 05325786 1 0 -fenestra_vestibuli%1:08:00:: 05325606 1 0 -fenestral%3:01:00:: 02726151 2 0 -fenestral%3:01:01:: 02726232 1 0 -fenestration%1:04:00:: 00674562 2 0 -fenestration%1:07:00:: 05076709 1 0 -feng_shui%1:09:00:: 05915811 1 0 -fengtien%1:15:00:: 08728462 1 0 -fenland%1:17:00:: 09347779 1 0 -fennel%1:13:00:: 07814790 4 0 -fennel%1:13:01:: 07817758 3 0 -fennel%1:13:02:: 07817871 2 0 -fennel%1:20:00:: 12939104 1 0 -fennel_flower%1:20:00:: 11737009 1 0 -fennel_seed%1:13:00:: 07818029 1 0 -fennic%1:10:00:: 06956544 1 0 -fenoprofen%1:06:00:: 03328392 1 0 -fenoprofen_calcium%1:06:00:: 03328392 1 0 -fenrir%1:18:00:: 09584405 1 0 -fentanyl%1:06:00:: 03328650 1 0 -fenugreek%1:13:00:: 07818133 2 0 -fenugreek%1:20:00:: 12574470 1 0 -fenugreek_seed%1:13:00:: 07818133 1 0 -fenusa%1:05:00:: 02218912 1 0 -fenusa_pusilla%1:05:00:: 02219015 1 0 -feodor_dostoevski%1:18:00:: 10940669 1 0 -feodor_dostoevsky%1:18:00:: 10940669 1 0 -feodor_dostoyevsky%1:18:00:: 10940669 1 0 -feodor_mikhailovich_dostoevski%1:18:00:: 10940669 1 0 -feodor_mikhailovich_dostoevsky%1:18:00:: 10940669 1 0 -feodor_mikhailovich_dostoyevsky%1:18:00:: 10940669 1 0 -feoff%1:21:00:: 13249927 1 0 -feosol%1:06:00:: 03329058 1 0 -fer-de-lance%1:05:00:: 01758141 1 0 -feral%5:00:00:wild:01 02389520 1 0 -feral_man%1:18:00:: 10781684 1 0 -ferber%1:18:00:: 10968504 1 0 -ferdinand%1:18:00:: 10969305 1 0 -ferdinand_and_isabella%1:14:00:: 08485160 1 0 -ferdinand_de_lesseps%1:18:00:: 11129286 1 0 -ferdinand_de_saussure%1:18:00:: 10931634 1 0 -ferdinand_i%1:18:00:: 10968640 2 0 -ferdinand_i%1:18:01:: 10968835 1 0 -ferdinand_ii%1:18:00:: 10968956 1 0 -ferdinand_iii%1:18:00:: 10969118 1 0 -ferdinand_joseph_la_menthe_morton%1:18:00:: 11193058 1 0 -ferdinand_julius_cohn%1:18:00:: 10904639 1 0 -ferdinand_magellan%1:18:00:: 11149016 1 0 -ferdinand_of_aragon%1:18:00:: 10969305 1 0 -ferdinand_the_catholic%1:18:00:: 10969305 1 0 -ferdinand_the_great%1:18:00:: 10968640 1 0 -ferdinand_v%1:18:00:: 10969305 1 0 -ferdinand_victor_eugene_delacroix%1:18:00:: 10928498 1 0 -fere_phenomenon%1:04:00:: 00860011 1 0 -ferenc_molnar%1:18:00:: 11184825 1 0 -fergon%1:06:00:: 03329180 1 0 -fergusonite%1:27:00:: 14675012 1 0 -feria%1:04:00:: 00517564 2 0 -feria%1:28:00:: 15163408 1 0 -ferial%3:01:00:: 02992691 1 0 -ferine%5:00:00:wild:01 02389520 1 0 -fermat%1:18:00:: 10969799 1 0 -fermata%1:07:00:: 05052243 2 0 -fermata%1:10:00:: 06867510 1 0 -ferment%1:22:00:: 13575433 3 0 -ferment%1:26:00:: 13979503 1 1 -ferment%1:27:00:: 14738752 2 0 -ferment%2:30:00:: 00458471 4 0 -ferment%2:30:01:: 00458754 3 0 -ferment%2:37:00:: 01761533 2 0 -ferment%2:37:01:: 01763303 1 0 -fermentable%3:01:00:: 02726345 1 0 -fermentation%1:22:00:: 13575433 2 1 -fermentation%1:26:00:: 13979503 1 1 -fermentation_alcohol%1:27:00:: 14709265 1 0 -fermenting%1:22:00:: 13575433 1 0 -fermentologist%1:18:00:: 09616573 1 0 -fermi%1:18:00:: 10969986 2 0 -fermi%1:23:00:: 13657691 1 0 -fermi-dirac_statistics%1:09:00:: 05877991 1 0 -fermion%1:17:00:: 09279161 1 0 -fermium%1:27:00:: 14637339 1 0 -fern%1:20:00:: 11545714 1 0 -fern_ally%1:20:00:: 11547562 1 0 -fern_family%1:20:00:: 13166338 1 0 -fern_genus%1:20:00:: 13167078 1 0 -fern_palm%1:20:00:: 11601333 1 0 -fern_rhapis%1:20:00:: 12596148 1 0 -fern_seed%1:20:00:: 11550022 1 0 -fernand_leger%1:18:00:: 11124961 1 0 -fernao_magalhaes%1:18:00:: 11149016 1 0 -ferned%3:00:00:: 00209079 1 0 -fernless%3:00:00:: 00209550 1 0 -fernlike%5:00:00:ferned:00 00209390 1 0 -ferny%3:00:01:: 00209079 1 0 -ferny%5:00:02:ferned:00 00209390 2 0 -ferocactus%1:20:00:: 11846970 1 0 -ferocious%5:00:00:violent:00 02511528 1 1 -ferociously%4:02:00:: 00245402 1 1 -ferociousness%1:07:00:: 04830689 1 0 -ferocity%1:07:00:: 05037813 1 1 -ferrara%1:15:00:: 08805386 1 0 -ferret%1:05:01:: 02443346 2 0 -ferret%1:05:02:: 02443484 1 0 -ferret%2:31:00:: 00722065 3 0 -ferret%2:33:00:: 01144550 2 0 -ferret%2:38:00:: 02003910 1 0 -ferret-sized%5:00:00:sized:00 02223165 1 0 -ferret_badger%1:05:00:: 02448633 1 0 -ferret_out%2:31:00:: 00722065 1 1 -ferric%3:01:00:: 02726429 1 0 -ferric_oxide%1:27:00:: 14865800 1 0 -ferricyanic_acid%1:27:00:: 14865934 1 0 -ferricyanide%1:27:00:: 14866043 1 0 -ferrimagnetism%1:19:00:: 11480091 1 0 -ferris_wheel%1:06:00:: 03329302 1 0 -ferrite%1:27:00:: 14859201 1 0 -ferritin%1:27:00:: 14866166 1 0 -ferrocerium%1:27:00:: 14866369 1 0 -ferroconcrete%1:27:00:: 14804797 1 0 -ferrocyanic_acid%1:27:00:: 14866490 1 0 -ferrocyanide%1:27:00:: 14866605 1 0 -ferromagnetic%3:01:00:: 03003223 1 2 -ferromagnetism%1:19:00:: 11480284 1 0 -ferrous%3:01:00:: 02726429 1 0 -ferrule%1:06:00:: 03329536 1 0 -ferry%1:04:00:: 01106587 2 0 -ferry%1:06:00:: 03329663 1 0 -ferry%2:38:00:: 01949218 3 0 -ferry%2:38:01:: 01949435 2 0 -ferry%2:38:02:: 01949674 1 1 -ferryboat%1:06:00:: 03329663 1 0 -ferrying%1:04:00:: 01106587 1 0 -ferryman%1:18:00:: 10085449 1 0 -fertile%3:00:00:: 01001689 1 1 -fertile%5:00:01:fruitful:00 01081340 4 0 -fertile%5:00:02:fruitful:00 01082115 3 0 -fertile%5:00:02:productive:00 01865967 2 1 -fertile_crescent%1:15:00:: 08792083 1 0 -fertile_period%1:28:00:: 15288489 1 0 -fertile_phase%1:28:00:: 15288489 1 0 -fertilisation%1:11:00:: 07436986 1 0 -fertilisation%1:11:01:: 07434473 2 0 -fertilise%2:29:00:: 00052548 3 0 -fertilise%2:30:00:: 00502757 2 0 -fertilise%2:30:01:: 00504270 1 0 -fertiliser%1:27:00:: 14859344 1 0 -fertility%1:07:00:: 05147586 3 0 -fertility%1:26:00:: 14051494 2 0 -fertility%1:28:00:: 15276427 1 0 -fertility_drug%1:06:00:: 03329880 1 0 -fertility_rate%1:28:00:: 15276427 1 0 -fertilizable%5:00:00:fertile:00 01002170 1 0 -fertilization%1:11:00:: 07436986 1 0 -fertilization%1:11:01:: 07434473 2 0 -fertilization_age%1:07:00:: 04925064 1 0 -fertilization_membrane%1:08:00:: 05319419 1 0 -fertilize%2:29:00:: 00052548 3 0 -fertilize%2:30:00:: 00502757 1 1 -fertilize%2:30:01:: 00504270 2 0 -fertilized_egg%1:05:00:: 01458842 1 0 -fertilized_ovum%1:08:00:: 05431926 1 0 -fertilizer%1:27:00:: 14859344 1 1 -ferule%1:06:00:: 03330002 1 0 -fervency%1:12:00:: 07481375 1 0 -fervent%5:00:00:hot:01 01248713 2 0 -fervent%5:00:00:passionate:00 01726235 1 3 -fervently%4:02:00:: 00339599 1 1 -fervid%5:00:00:hot:01 01248713 2 0 -fervid%5:00:00:passionate:00 01726235 1 0 -fervidly%4:02:00:: 00339599 1 0 -fervidness%1:12:00:: 07481375 1 0 -fervor%1:12:00:: 07481375 1 1 -fervor%1:26:00:: 14037011 2 0 -fervour%1:12:00:: 07481375 2 0 -fervour%1:26:00:: 14037011 1 0 -fes%1:15:00:: 08970064 1 0 -fescue%1:20:00:: 12121610 1 0 -fescue_grass%1:20:00:: 12121610 1 0 -fess%1:06:00:: 03330120 1 0 -fess_up%2:32:00:: 00817909 1 0 -fesse%1:06:00:: 03330120 1 0 -festal%5:00:00:joyous:00 01367431 1 0 -fester%1:26:00:: 14184254 1 0 -fester%2:29:00:: 00096766 1 0 -festering%1:08:00:: 05417472 2 0 -festering%1:22:00:: 13479889 1 0 -festinate%2:30:00:: 00459498 1 0 -festination%1:26:00:: 14313154 1 0 -festival%1:04:00:: 00517728 2 0 -festival%1:28:00:: 15162388 1 2 -festival_of_lights%1:28:00:: 15199033 1 0 -festive%5:00:00:joyous:00 01367431 1 2 -festivity%1:04:00:: 00428000 1 3 -festoon%1:06:00:: 03330274 3 0 -festoon%1:06:01:: 03330441 2 0 -festoon%1:06:02:: 03330665 1 0 -festoon%2:36:00:: 01680267 1 0 -festoonery%1:06:00:: 03330274 1 0 -festschrift%1:10:00:: 06406865 1 0 -festuca%1:20:00:: 12121405 1 0 -festuca_elatior%1:20:00:: 12121610 1 0 -festuca_ovina%1:20:00:: 12121835 1 0 -fet%1:06:00:: 03332784 1 0 -fetal%3:01:00:: 02892819 1 0 -fetal_age%1:07:00:: 04925064 1 0 -fetal_alcohol_syndrome%1:26:00:: 14305458 1 0 -fetal_circulation%1:08:00:: 05511975 1 0 -fetal_distress%1:26:00:: 14093874 1 0 -fetal_membrane%1:08:00:: 05310790 1 0 -fetal_monitor%1:06:00:: 03278914 1 0 -fetal_movement%1:04:00:: 00334174 1 0 -fetch%1:04:00:: 00039916 1 0 -fetch%2:35:00:: 01433294 1 3 -fetch%2:35:03:: 01433674 3 0 -fetch%2:40:00:: 02247390 2 0 -fetch_up%2:30:00:: 00352558 1 0 -fetching%5:00:00:attractive:01 00167829 1 1 -fete%1:04:00:: 00517728 2 0 -fete%1:11:00:: 07449862 1 0 -fete%2:41:00:: 02490877 1 3 -fete_champetre%1:14:00:: 08255508 1 0 -fete_day%1:28:00:: 15161631 1 0 -feterita%1:20:00:: 12137954 1 0 -fetich%1:04:00:: 01207342 2 0 -fetich%1:06:00:: 03603958 1 0 -fetichism%1:04:00:: 00738058 2 0 -fetichism%1:09:00:: 05945227 1 0 -feticide%1:04:00:: 00231315 1 0 -fetid%5:00:00:malodorous:00 01053634 1 1 -fetid_bugbane%1:20:00:: 11729142 1 0 -fetid_horehound%1:20:00:: 12841872 1 0 -fetidness%1:07:00:: 04980656 1 0 -fetish%1:04:00:: 01207342 3 0 -fetish%1:06:00:: 03603958 2 0 -fetish%1:12:00:: 07489294 1 0 -fetishism%1:04:00:: 00738058 2 0 -fetishism%1:09:00:: 05945227 1 0 -fetishist%1:18:00:: 10085548 1 0 -fetishize%2:30:00:: 00320911 1 0 -fetlock%1:05:00:: 02462349 2 0 -fetlock%1:05:01:: 02462464 1 0 -fetlock_joint%1:05:00:: 02462464 1 0 -fetology%1:09:00:: 06053854 1 0 -fetometry%1:04:00:: 01002284 1 0 -fetoprotein%1:27:00:: 15033662 1 0 -fetor%1:09:00:: 05714894 1 0 -fetoscope%1:06:00:: 03330792 1 0 -fetoscopy%1:04:00:: 00944456 1 0 -fetter%1:06:00:: 03330947 1 0 -fetter%2:35:00:: 01288052 1 0 -fetter_bone%1:05:00:: 02462066 1 0 -fetter_bush%1:20:00:: 12241426 1 0 -fetterbush%1:20:01:: 12241426 2 0 -fetterbush%1:20:02:: 12243693 1 0 -fettered%5:00:00:bound:01 00253361 1 0 -fettle%1:26:00:: 14546596 1 0 -fettle%2:40:00:: 02365586 1 0 -fettuccine%1:13:00:: 07700638 1 0 -fettuccine_alfredo%1:13:00:: 07700766 1 0 -fettuccini%1:13:00:: 07700638 1 0 -fetus%1:05:00:: 01459791 1 0 -feud%1:04:00:: 01236173 1 0 -feud%2:33:00:: 01123261 1 0 -feudal%3:01:00:: 02726546 1 1 -feudal_lord%1:18:00:: 10085736 1 0 -feudal_lordship%1:04:00:: 00603866 1 0 -feudal_system%1:14:00:: 07972425 1 0 -feudalism%1:14:00:: 07972425 1 0 -feudalistic%3:01:00:: 02726546 1 0 -feudalize%2:30:00:: 00321020 1 0 -feudally%4:02:00:: 00141587 1 0 -feudatory%1:18:00:: 10746581 1 0 -feudatory%3:01:00:: 03065804 1 0 -feudatory%5:00:00:subordinate:02 02329606 2 0 -fever%1:12:00:: 07511380 2 4 -fever%1:26:00:: 14365356 1 4 -fever_blister%1:26:00:: 14132375 1 0 -fever_pitch%1:26:00:: 14036892 1 0 -fever_tree%1:20:01:: 13111340 1 0 -fever_tree%1:20:02:: 12669362 2 0 -fever_tree%1:20:03:: 12337617 3 0 -fever_tree%1:20:04:: 11758483 4 0 -fevered%5:00:00:excited:00 00920167 1 0 -feverfew%1:20:00:: 12023108 1 0 -feverish%3:01:00:: 02726715 2 0 -feverish%5:00:00:agitated:00 00086210 1 4 -feverish%5:00:00:ill:01 02544892 3 0 -feverishly%4:02:00:: 00141485 1 3 -feverishness%1:26:00:: 14365356 1 0 -feverous%5:00:00:ill:01 02544892 1 0 -feverroot%1:20:00:: 12679876 1 0 -few%1:14:00:: 08388074 1 0 -few%3:00:00:: 01552885 1 80 -few-flowered_leek%1:20:00:: 12434634 1 0 -fewer%3:00:00:: 01556616 1 11 -fewest%3:00:00:: 01557386 1 0 -fewness%1:07:00:: 05123098 1 0 -fey%5:00:00:insane:00 02075938 1 0 -fey%5:00:00:supernatural:00 01575810 2 0 -feynman%1:18:00:: 10970279 1 0 -fez%1:06:00:: 03331077 2 0 -fez%1:15:00:: 08970064 1 0 -fha%1:14:00:: 08423634 1 0 -fhlmc%1:14:00:: 08384539 1 0 -fiance%1:18:00:: 10085869 1 0 -fiancee%1:18:00:: 10085970 1 0 -fiasco%1:11:02:: 07365432 1 0 -fiat%1:10:00:: 06539770 1 3 -fiat_money%1:21:00:: 13393599 1 0 -fib%1:10:00:: 06757057 1 0 -fib%2:32:00:: 00835294 1 0 -fibber%1:18:00:: 10660333 1 0 -fibbing%1:04:00:: 00752144 1 0 -fiber%1:06:01:: 03331244 5 0 -fiber%1:07:00:: 04620216 4 0 -fiber%1:08:00:: 05229622 3 0 -fiber%1:13:00:: 07568818 2 0 -fiber%1:27:00:: 14866889 1 14 -fiber-optic%3:01:00:: 02727009 1 0 -fiber-optic_transmission_system%1:06:00:: 03331820 1 0 -fiber_bundle%1:08:00:: 05475681 1 0 -fiber_optic_cable%1:06:00:: 03331599 1 0 -fiber_optics%1:10:00:: 06280816 1 0 -fiberboard%1:06:00:: 03331390 1 0 -fiberglass%1:27:00:: 14866769 1 1 -fiberoptic%3:01:00:: 02727009 1 0 -fiberoptics%1:10:00:: 06280816 1 0 -fiberscope%1:06:00:: 03332005 1 0 -fibonacci_number%1:23:00:: 13593908 1 0 -fibonacci_sequence%1:14:00:: 08373818 1 0 -fibre%1:06:01:: 03331244 4 0 -fibre%1:07:00:: 04620216 3 0 -fibre%1:08:00:: 05229622 2 0 -fibre%1:27:00:: 14866889 1 0 -fibre-optic%3:01:00:: 02727009 1 0 -fibre-optic_transmission_system%1:06:00:: 03331820 1 0 -fibre_bundle%1:08:00:: 05475681 1 0 -fibre_optic_cable%1:06:00:: 03331599 1 0 -fibre_optics%1:10:00:: 06280816 1 0 -fibreboard%1:06:00:: 03331390 1 0 -fibreglass%1:27:00:: 14866769 1 0 -fibreoptic%3:01:00:: 02727009 1 0 -fibreoptics%1:10:00:: 06280816 1 0 -fibril%1:27:00:: 14867858 1 0 -fibrillate%2:29:00:: 00009884 1 0 -fibrillation%1:04:01:: 00389043 2 0 -fibrillation%1:26:00:: 14362179 1 0 -fibrillose%3:01:00:: 02727263 1 0 -fibrin%1:27:00:: 14733941 1 2 -fibrinase%1:27:00:: 15072657 1 0 -fibrinogen%1:27:00:: 15023156 1 0 -fibrinolysin%1:27:00:: 14983774 1 0 -fibrinolysis%1:22:00:: 13480176 1 0 -fibrinopeptide%1:27:00:: 14742737 1 0 -fibrinous%3:01:00:: 02727369 1 0 -fibroadenoma%1:26:00:: 14238211 1 0 -fibroblast%1:08:00:: 05448400 1 0 -fibrocalcific%3:01:00:: 03009792 1 1 -fibrocartilage%1:08:00:: 05288593 1 0 -fibrocartilaginous%3:01:00:: 02727482 1 0 -fibrocystic_breast_disease%1:26:00:: 14198380 1 0 -fibrocystic_disease_of_the_breast%1:26:00:: 14198380 1 0 -fibrocystic_disease_of_the_pancreas%1:26:00:: 14155506 1 0 -fibroid%1:26:00:: 14238393 1 0 -fibroid_tumor%1:26:00:: 14238393 1 0 -fibroma%1:26:00:: 14238528 1 0 -fibromyositis%1:26:00:: 14346080 1 0 -fibrosis%1:26:00:: 14207809 1 6 -fibrositis%1:26:00:: 14345958 1 0 -fibrosity%1:07:00:: 05022359 1 0 -fibrous%5:00:01:tough:01 02446239 2 0 -fibrous%5:00:02:tough:01 02446380 1 0 -fibrous-rooted_begonia%1:20:00:: 12360534 1 0 -fibrous_astrocyte%1:08:00:: 05467922 1 0 -fibrous_dysplasia_of_bone%1:26:00:: 14366225 1 0 -fibrous_joint%1:08:00:: 05542893 1 0 -fibrous_tissue%1:08:00:: 05294995 1 3 -fibrousness%1:07:00:: 05022359 1 0 -fibrovascular_bundle%1:20:00:: 13097949 1 0 -fibula%1:08:00:: 05594201 1 0 -fibular_vein%1:08:00:: 05376844 1 0 -fica%1:21:00:: 13310727 1 0 -fice%1:05:00:: 02085019 1 0 -fichu%1:06:00:: 03332173 1 0 -fickle%5:00:00:changeable:00 00345189 2 0 -fickle%5:00:00:inconstant:00 00584626 1 0 -fickleness%1:07:00:: 04879092 1 0 -fictile%3:01:00:: 02727579 1 0 -fictile%5:00:00:elastic:00 00844461 3 0 -fictile%5:00:00:susceptible:00 02362030 2 0 -fiction%1:10:00:: 06367107 1 14 -fiction%1:10:01:: 06757891 2 0 -fictional%3:01:00:: 02727706 1 7 -fictional%5:00:00:unreal:00 01935935 2 3 -fictional_animal%1:05:00:: 02451575 1 0 -fictional_character%1:18:00:: 09587565 1 0 -fictionalisation%1:04:00:: 00931040 2 0 -fictionalisation%1:10:00:: 06367373 1 0 -fictionalise%2:30:00:: 00116619 2 0 -fictionalise%2:36:00:: 01635176 1 0 -fictionalization%1:04:00:: 00931040 2 0 -fictionalization%1:10:00:: 06367373 1 0 -fictionalize%2:30:00:: 00116619 2 0 -fictionalize%2:36:00:: 01635176 1 0 -fictitious%5:00:00:counterfeit:00 01116857 2 0 -fictitious%5:00:00:unreal:00 01935935 1 0 -fictitious_character%1:18:00:: 09587565 1 0 -fictitious_name%1:10:00:: 06334512 1 0 -fictitious_place%1:09:00:: 05625879 1 0 -fictitiously%4:02:00:: 00102258 2 0 -fictitiously%4:02:01:: 00102367 1 0 -fictive%5:00:00:counterfeit:00 01116857 1 1 -fictive%5:00:00:creative:00 00643760 2 0 -ficus%1:20:00:: 12401122 1 0 -ficus_aurea%1:20:00:: 12402051 1 0 -ficus_bengalensis%1:20:00:: 12402348 1 0 -ficus_carica%1:20:00:: 12401684 1 0 -ficus_carica_sylvestris%1:20:00:: 12401893 1 0 -ficus_deltoidea%1:20:00:: 12403075 1 0 -ficus_diversifolia%1:20:00:: 12403075 1 0 -ficus_elastica%1:20:00:: 12402840 1 0 -ficus_religiosa%1:20:00:: 12402596 1 0 -ficus_rubiginosa%1:20:00:: 12403276 1 0 -ficus_sycomorus%1:20:00:: 12403513 1 0 -fiddle%1:06:00:: 04536866 1 1 -fiddle%2:30:00:: 00261314 7 0 -fiddle%2:35:00:: 01586278 5 0 -fiddle%2:35:03:: 01586018 6 0 -fiddle%2:36:00:: 01733667 3 0 -fiddle%2:36:02:: 01724891 4 0 -fiddle%2:40:00:: 02292989 2 0 -fiddle%2:41:00:: 02463704 1 0 -fiddle-faddle%1:10:00:: 06608143 1 0 -fiddle-shaped%5:00:00:simple:01 02170052 1 0 -fiddle_with%2:35:00:: 01224211 1 0 -fiddlehead%1:20:01:: 12953919 2 0 -fiddlehead%1:20:02:: 13198054 1 0 -fiddlehead_fern%1:20:00:: 12953919 1 0 -fiddleneck%1:20:00:: 12837466 1 0 -fiddler%1:18:00:: 10754578 1 0 -fiddler%1:18:01:: 10712229 3 0 -fiddler%1:18:02:: 10734235 2 0 -fiddler_crab%1:05:00:: 01980166 1 0 -fiddlestick%1:06:00:: 03332271 1 0 -fiddling%5:00:00:unimportant:00 01280908 1 0 -fidel_castro%1:18:00:: 10886929 1 0 -fidel_castro_ruz%1:18:00:: 10886929 1 0 -fidelity%1:07:00:: 04876985 2 0 -fidelity%1:07:02:: 04804306 1 1 -fidget%1:12:00:: 07513795 1 0 -fidget%2:38:00:: 02058448 1 2 -fidgetiness%1:12:00:: 07513795 1 0 -fidgety%5:00:00:tense:03 02406166 1 0 -fiducial%3:01:00:: 02848388 1 0 -fiducial%3:01:01:: 02848227 2 0 -fiducial%5:00:00:trustworthy:00 02465909 3 0 -fiduciary%1:18:00:: 10086074 1 0 -fiduciary%3:01:00:: 02848388 1 0 -fiduciary_duty%1:04:00:: 01131656 1 0 -fiduciary_relation%1:24:00:: 13838386 1 0 -fiedler%1:18:00:: 10970488 1 0 -fief%1:21:00:: 13249927 1 0 -fiefdom%1:14:00:: 08048625 2 0 -fiefdom%1:15:00:: 08557754 1 0 -field%1:04:00:: 01097119 6 9 -field%1:06:00:: 02687992 17 0 -field%1:09:00:: 05996646 4 18 -field%1:09:01:: 05932891 16 0 -field%1:14:00:: 08005260 10 7 -field%1:14:01:: 07999584 12 1 -field%1:14:02:: 07999471 13 1 -field%1:14:03:: 08005580 15 0 -field%1:15:00:: 08569998 1 49 -field%1:15:01:: 08569777 3 20 -field%1:15:02:: 08570758 8 8 -field%1:15:03:: 08551628 11 4 -field%1:15:04:: 08506641 2 22 -field%1:15:05:: 08659446 14 0 -field%1:17:00:: 09393605 9 7 -field%1:19:00:: 11456760 5 14 -field%1:26:00:: 14514039 7 8 -field%2:31:00:: 00675592 4 0 -field%2:32:00:: 00815539 3 0 -field%2:33:00:: 01081852 2 1 -field%2:33:01:: 01082290 1 1 -field-crop%3:01:00:: 02728002 1 0 -field-effect_transistor%1:06:00:: 03332784 1 0 -field-emission_microscope%1:06:00:: 03332989 1 0 -field-grade_officer%1:18:00:: 10087080 1 0 -field-pea_plant%1:20:00:: 12561309 1 0 -field-sequential_color_television%1:06:00:: 03334017 1 0 -field-sequential_color_television_system%1:06:00:: 03334017 1 0 -field-sequential_color_tv%1:06:00:: 03334017 1 0 -field-sequential_color_tv_system%1:06:00:: 03334017 1 0 -field-test%2:41:00:: 02532261 1 1 -field_artillery%1:06:00:: 03332393 1 0 -field_balm%1:20:01:: 12843557 2 0 -field_balm%1:20:02:: 12847374 1 0 -field_bean%1:20:00:: 12576029 1 0 -field_bindweed%1:20:00:: 12824053 1 0 -field_brome%1:20:00:: 12111627 1 0 -field_capacity%1:23:00:: 13616926 1 0 -field_chamomile%1:20:00:: 11923637 1 0 -field_chickweed%1:20:00:: 11807367 1 0 -field_coil%1:06:00:: 03332591 1 0 -field_corn%1:20:00:: 12144399 1 0 -field_cricket%1:05:00:: 02230187 1 0 -field_crop%1:20:00:: 13086556 1 0 -field_day%1:28:00:: 15173259 2 0 -field_day%1:28:01:: 15138691 4 0 -field_day%1:28:02:: 15173353 1 0 -field_day%1:28:03:: 15138809 3 0 -field_emission%1:22:00:: 13480394 1 0 -field_event%1:11:00:: 07466557 1 0 -field_game%1:04:00:: 00467719 1 0 -field_garlic%1:20:01:: 12435486 1 0 -field_general%1:04:00:: 00726567 2 0 -field_general%1:18:00:: 10498816 1 1 -field_glass%1:06:00:: 03333129 1 0 -field_glasses%1:06:00:: 02841315 1 1 -field_goal%1:04:00:: 00188934 1 2 -field_goal%1:04:01:: 00190431 2 0 -field_guide%1:10:00:: 06422912 1 0 -field_gun%1:06:00:: 03332393 1 0 -field_hand%1:18:00:: 10079399 1 0 -field_hockey%1:04:00:: 00467995 1 0 -field_hockey_ball%1:06:00:: 03333252 1 0 -field_horsetail%1:20:00:: 13219833 1 0 -field_hospital%1:06:00:: 03333349 1 0 -field_house%1:06:00:: 03333480 2 0 -field_house%1:06:01:: 03333610 1 0 -field_hut%1:06:00:: 03550153 1 0 -field_intensity%1:07:00:: 05100269 1 0 -field_judge%1:18:00:: 10086744 1 0 -field_lens%1:06:00:: 03333711 1 0 -field_line%1:19:00:: 11457057 1 0 -field_lupine%1:20:00:: 12546420 1 0 -field_magnet%1:06:00:: 03333851 1 0 -field_maple%1:20:00:: 12754648 1 0 -field_marigold%1:20:00:: 11950686 1 0 -field_marshal%1:18:00:: 10086821 1 0 -field_mint%1:20:00:: 12855365 1 0 -field_mouse%1:05:01:: 02339376 1 0 -field_mouse%1:05:02:: 02332755 2 0 -field_mouse-ear%1:20:00:: 11807367 1 0 -field_mushroom%1:20:00:: 13001529 1 0 -field_mustard%1:20:00:: 11896722 1 0 -field_of_battle%1:15:00:: 08506641 1 3 -field_of_fire%1:15:00:: 08570242 1 0 -field_of_force%1:19:00:: 11456760 1 0 -field_of_honor%1:15:00:: 08646486 1 0 -field_of_honor%1:15:01:: 08506641 2 0 -field_of_operation%1:04:00:: 01097119 1 1 -field_of_operations%1:15:00:: 08551628 1 0 -field_of_regard%1:09:00:: 05933638 1 0 -field_of_study%1:09:00:: 05996646 1 0 -field_of_view%1:09:00:: 05932891 1 0 -field_of_vision%1:09:00:: 05933638 1 0 -field_officer%1:18:00:: 10087080 1 0 -field_pansy%1:20:00:: 12388143 1 0 -field_pea%1:13:00:: 07726386 3 0 -field_pea%1:20:00:: 12561309 2 0 -field_pea%1:20:02:: 12561594 1 0 -field_pennycress%1:20:00:: 11898775 1 0 -field_poppy%1:20:00:: 11902200 1 0 -field_press_censorship%1:04:00:: 00821752 1 0 -field_pussytoes%1:20:00:: 11922755 1 0 -field_ration%1:13:00:: 07565945 1 0 -field_sandbur%1:20:00:: 12113790 1 0 -field_scabious%1:20:00:: 12683791 1 0 -field_soybean%1:13:00:: 07729926 1 0 -field_spaniel%1:05:00:: 02101670 1 0 -field_sparrow%1:05:00:: 01536186 1 0 -field_speedwell%1:20:00:: 12890490 1 0 -field_sport%1:04:00:: 00433661 1 1 -field_strength%1:07:00:: 05100269 1 0 -field_strength_unit%1:23:00:: 13633704 1 0 -field_tent%1:06:00:: 03334291 1 0 -field_test%1:09:00:: 05799581 1 0 -field_theory%1:09:00:: 05994484 1 0 -field_thistle%1:20:00:: 11954345 1 0 -field_trial%1:04:00:: 00794870 3 0 -field_trial%1:09:00:: 05799581 1 2 -field_trial%1:11:00:: 07467704 2 0 -field_trip%1:04:00:: 00312403 1 0 -field_winding%1:06:00:: 03332591 1 0 -field_work%1:04:00:: 00639833 1 0 -field_wormwood%1:20:00:: 11930038 1 0 -fielder%1:18:00:: 10086568 1 1 -fielder%1:18:01:: 10086383 2 0 -fielder's_choice%1:04:00:: 00130673 1 0 -fieldfare%1:05:00:: 01558307 1 0 -fieldhand%1:18:00:: 10079399 1 1 -fielding%1:04:00:: 00126721 1 1 -fielding%1:18:00:: 10970603 2 0 -fielding_average%1:24:00:: 13818354 1 1 -fieldmouse%1:05:00:: 02332755 1 0 -fields%1:18:00:: 10970718 1 0 -fieldsman%1:18:00:: 10086383 1 0 -fieldstone%1:27:00:: 14868116 1 1 -fieldwork%1:06:00:: 03334382 1 0 -fieldworker%1:18:00:: 10091256 1 0 -fiend%1:18:00:: 10329945 1 3 -fiend%1:18:01:: 10077879 3 0 -fiend%1:18:02:: 09542339 2 1 -fiendish%5:00:00:evil:00 01132515 1 1 -fiendishly%4:02:00:: 00308916 1 0 -fierce%5:00:00:intense:00 01511854 2 5 -fierce%5:00:00:merciless:00 01507808 3 1 -fierce%5:00:00:stormy:00 00304949 4 0 -fierce%5:00:00:violent:00 02511528 1 8 -fiercely%4:02:00:: 00245402 1 3 -fiercely%4:02:01:: 00245588 2 0 -fierceness%1:07:00:: 05037813 1 1 -fieri_facias%1:10:00:: 06555191 1 0 -fierily%4:02:00:: 00339599 1 0 -fieriness%1:07:00:: 05016553 1 0 -fieriness%1:07:01:: 04628336 2 0 -fiery%5:00:00:hot:01 01248958 2 2 -fiery%5:00:00:hot:02 01256735 3 0 -fiery%5:00:00:passionate:00 01726235 1 2 -fiesta%1:11:00:: 07449862 1 0 -fiesta_flower%1:20:00:: 12837803 1 0 -fife%1:06:00:: 03334492 1 0 -fife_rail%1:06:00:: 03334667 1 0 -fifo%1:04:00:: 00620084 1 0 -fifteen%1:23:00:: 13747469 1 1 -fifteen%5:00:00:cardinal:00 02187793 1 17 -fifteenth%1:24:00:: 13848349 1 0 -fifteenth%5:00:00:ordinal:00 02203976 1 6 -fifth%1:10:00:: 06859800 4 0 -fifth%1:23:00:: 13737830 3 0 -fifth%1:23:01:: 13619475 1 1 -fifth%1:24:00:: 13847240 2 0 -fifth%5:00:00:ordinal:00 02202712 1 13 -fifth_amendment%1:10:00:: 06728331 1 0 -fifth_avenue%1:15:00:: 09120939 1 0 -fifth_column%1:14:00:: 08359753 1 0 -fifth_columnist%1:18:00:: 10087255 1 0 -fifth_cranial_nerve%1:08:00:: 05478896 1 0 -fifth_crusade%1:04:00:: 00969858 1 0 -fifth_lateran_council%1:14:00:: 08317340 1 0 -fifth_part%1:23:00:: 13737830 1 0 -fifth_wheel%1:06:00:: 03334775 3 0 -fifth_wheel%1:06:01:: 03334912 2 0 -fifth_wheel%1:07:00:: 05120564 1 0 -fifthly%4:02:00:: 00339866 1 0 -fifties%1:28:00:: 15149642 2 0 -fifties%1:28:01:: 15149763 1 2 -fiftieth%1:24:00:: 13849180 1 0 -fiftieth%5:00:00:ordinal:00 02208145 1 1 -fifty%1:21:00:: 13395187 2 0 -fifty%1:23:00:: 13749644 1 1 -fifty%5:00:00:cardinal:00 02191232 1 24 -fifty-cent_piece%1:21:00:: 13390405 1 1 -fifty-eight%5:00:00:cardinal:00 02191992 1 0 -fifty-fifth%5:00:00:ordinal:00 02208270 1 0 -fifty-fifty%5:00:00:equal:00 00891170 1 1 -fifty-five%5:00:00:cardinal:00 02191710 1 0 -fifty-four%5:00:00:cardinal:00 02191616 1 0 -fifty-nine%5:00:00:cardinal:00 02192090 1 0 -fifty-one%5:00:00:cardinal:00 02191336 1 0 -fifty-seven%5:00:00:cardinal:00 02191895 1 0 -fifty-six%5:00:00:cardinal:00 02191803 1 0 -fifty-three%5:00:00:cardinal:00 02191519 1 0 -fifty-two%5:00:00:cardinal:00 02191427 1 0 -fifty_dollar_bill%1:21:00:: 13395187 1 0 -fifty_percent%1:23:00:: 13736997 1 0 -fig%1:10:00:: 06999647 1 45 -fig%1:13:00:: 07753113 4 0 -fig%1:14:00:: 08032594 3 0 -fig%1:20:00:: 12401684 2 0 -fig-bird%1:05:00:: 01576358 1 0 -fig-shaped%5:00:00:formed:00 02147033 1 0 -fig_leaf%1:06:00:: 03335461 2 0 -fig_leaf%1:20:00:: 13156006 1 0 -fig_marigold%1:20:00:: 11820965 1 0 -fig_moth%1:05:00:: 02290664 1 0 -fig_out%2:29:00:: 00044149 1 0 -fig_tree%1:20:00:: 12401335 1 1 -fig_up%2:29:00:: 00044149 1 0 -fig_wax%1:27:00:: 14889973 1 0 -figeater%1:05:00:: 02173113 1 0 -fight%1:04:01:: 00953559 1 21 -fight%1:04:02:: 01170962 2 18 -fight%1:04:03:: 00446493 5 0 -fight%1:07:00:: 04837425 3 2 -fight%1:10:00:: 07184391 4 0 -fight%2:33:00:: 01090335 1 112 -fight%2:33:01:: 01091427 2 34 -fight%2:41:00:: 02407338 3 8 -fight%2:41:10:: 02589576 4 5 -fight_back%2:33:00:: 01091427 2 0 -fight_back%2:33:01:: 01092284 1 2 -fight_down%2:33:00:: 01091427 1 1 -fight_off%2:33:00:: 01131197 1 0 -fighter%1:06:00:: 03335030 2 3 -fighter%1:18:00:: 09939313 1 6 -fighter%1:18:02:: 09906538 3 1 -fighter_aircraft%1:06:00:: 03335030 1 0 -fighter_pilot%1:18:00:: 10087434 1 0 -fighting%1:04:00:: 01170962 1 25 -fighting%5:00:00:operational:00 01660444 1 5 -fighting_chair%1:06:00:: 03335333 1 0 -fighting_cock%1:05:00:: 01514752 1 0 -fighting_french%1:14:00:: 08114581 1 0 -fighting_joe_hooker%1:18:00:: 11058436 1 0 -figment%1:09:00:: 05913160 1 0 -figural%5:00:00:representational:00 01979604 1 0 -figural_blindness%1:26:00:: 14557315 1 1 -figuration%1:04:00:: 00263272 2 0 -figuration%1:04:01:: 00899927 1 0 -figurative%3:00:00:: 01419149 1 3 -figurative%5:00:00:representational:00 01979604 2 0 -figuratively%4:02:00:: 00340006 1 1 -figure%1:04:00:: 00556992 13 0 -figure%1:06:00:: 03335600 4 14 -figure%1:06:01:: 03178782 12 0 -figure%1:07:00:: 04675646 8 8 -figure%1:07:01:: 05121418 9 1 -figure%1:08:00:: 05217168 2 48 -figure%1:09:00:: 05930386 11 0 -figure%1:10:00:: 06999647 1 65 -figure%1:10:01:: 07105475 10 0 -figure%1:18:00:: 10344443 5 13 -figure%1:21:00:: 13331634 7 8 -figure%1:23:00:: 13741022 3 18 -figure%1:25:00:: 13862780 6 8 -figure%2:31:00:: 00637259 4 2 -figure%2:31:01:: 00712135 1 20 -figure%2:31:02:: 00590241 5 1 -figure%2:36:00:: 01635432 3 3 -figure%2:42:00:: 02722207 2 8 -figure_eight%1:04:00:: 00557184 2 0 -figure_eight%1:06:00:: 03335846 1 0 -figure_loom%1:06:00:: 03336168 1 0 -figure_of_eight%1:06:00:: 03335846 1 0 -figure_of_merit%1:24:00:: 13821118 1 0 -figure_of_speech%1:10:00:: 07105475 1 1 -figure_out%2:31:00:: 00634906 1 6 -figure_skate%1:06:00:: 03336282 1 0 -figure_skate%2:38:00:: 01937394 1 0 -figure_skating%1:04:00:: 00448748 1 0 -figured%5:00:00:patterned:00 01788564 1 0 -figured-fabric_loom%1:06:00:: 03336168 1 0 -figured_bass%1:10:00:: 07032556 1 1 -figurehead%1:06:00:: 03336070 2 0 -figurehead%1:18:00:: 10113583 1 0 -figurer%1:18:00:: 09887034 1 0 -figurine%1:06:00:: 03336459 1 1 -figuring%1:09:00:: 05802185 1 1 -figwort%1:20:00:: 12876899 1 0 -figwort_family%1:20:00:: 12876032 1 0 -fiji%1:15:00:: 08779149 1 0 -fiji_dollar%1:23:00:: 13673178 1 0 -fiji_islands%1:15:00:: 08778597 1 0 -fijian%1:10:00:: 06938623 2 0 -fijian%1:18:00:: 09705909 1 0 -fijian%3:01:00:: 03065969 1 0 -fijis%1:15:00:: 08778597 1 0 -filaggrin%1:27:00:: 14734164 1 0 -filago%1:20:00:: 11970101 1 0 -filago_germanica%1:20:00:: 11970298 1 0 -filagree%1:06:00:: 03337822 1 0 -filament%1:06:01:: 03336575 4 0 -filament%1:08:00:: 05229468 3 0 -filament%1:20:00:: 11678123 2 0 -filament%1:27:00:: 14867858 1 0 -filamentlike%5:00:00:thin:01 02413851 1 0 -filamentous%5:00:00:thin:01 02413851 1 0 -filar%3:01:00:: 02728113 1 0 -filaree%1:20:00:: 12688903 1 0 -filaria%1:05:00:: 01933478 2 0 -filaria%1:20:00:: 12688903 1 0 -filarial%3:01:00:: 02728532 1 0 -filariasis%1:26:00:: 14368032 1 0 -filariid%3:01:00:: 02728683 1 0 -filariidae%1:05:00:: 01933342 1 0 -filature%1:06:00:: 03336742 1 0 -filbert%1:13:00:: 07772788 2 0 -filbert%1:20:00:: 12289433 1 0 -filch%2:40:00:: 02276866 1 0 -file%1:06:00:: 03336839 4 1 -file%1:06:01:: 03337140 3 1 -file%1:10:00:: 06508816 1 17 -file%1:14:00:: 08428756 2 1 -file%2:32:00:: 01001643 5 1 -file%2:32:01:: 00869931 4 2 -file%2:32:02:: 01001857 1 50 -file%2:35:00:: 01387022 2 10 -file%2:38:00:: 01920048 3 3 -file-like%5:00:00:sharp:00 00801947 1 0 -file_allocation_table%1:14:00:: 08267197 1 0 -file_away%2:32:00:: 01001643 1 1 -file_away%2:35:00:: 01384638 2 0 -file_cabinet%1:06:00:: 03337140 1 1 -file_clerk%1:18:00:: 10087574 1 0 -file_folder%1:06:00:: 03337383 1 0 -file_in%2:38:00:: 01920220 1 0 -file_name%1:10:00:: 06335532 1 0 -file_name_extension%1:10:00:: 06335162 1 0 -file_out%2:38:00:: 01920594 1 3 -file_server%1:06:00:: 03337494 1 0 -file_system%1:09:00:: 05732614 1 0 -file_transfer_protocol%1:10:00:: 06665370 1 0 -filefish%1:05:00:: 02653786 1 0 -filename%1:10:00:: 06335532 1 0 -filename_extension%1:10:00:: 06335162 1 0 -filer%1:18:00:: 10087736 1 0 -filer%1:18:01:: 10087574 2 0 -filet%1:06:00:: 03337727 3 0 -filet%1:13:01:: 07660065 1 0 -filet%1:13:02:: 07655337 2 0 -filet%2:35:00:: 01249294 2 0 -filet%2:36:00:: 01678957 1 0 -filet_de_boeuf_en_croute%1:13:00:: 07862611 1 0 -filet_mignon%1:13:00:: 07660686 1 0 -filial%3:00:00:: 01722699 2 0 -filial%3:01:00:: 02884275 1 0 -filial_duty%1:04:00:: 01131224 1 0 -filial_love%1:12:00:: 07544039 1 0 -filiate%2:31:00:: 00700162 1 0 -filiation%1:07:00:: 04922787 2 0 -filiation%1:24:00:: 13813042 1 0 -filibuster%1:04:00:: 01068012 2 0 -filibuster%1:18:00:: 10087868 1 0 -filibuster%2:41:00:: 02466496 1 0 -filibusterer%1:18:00:: 10087868 1 0 -filicales%1:20:00:: 13169674 1 0 -filicide%1:04:00:: 00222155 2 0 -filicide%1:18:00:: 10088101 1 0 -filicinae%1:20:00:: 13169219 1 0 -filicopsida%1:20:00:: 13169219 1 0 -filiform%5:00:00:thin:01 02413851 1 0 -filigree%1:06:00:: 03337822 1 0 -filigree%2:36:00:: 01757871 1 0 -filing%1:04:00:: 00811491 4 0 -filing%1:04:01:: 00925489 3 0 -filing%1:10:00:: 07167954 1 3 -filing%1:17:00:: 09279345 2 0 -filing_cabinet%1:06:00:: 03337140 1 0 -filing_clerk%1:18:00:: 10087574 1 0 -filing_system%1:09:00:: 05732614 1 0 -filipino%1:10:00:: 06939756 2 0 -filipino%1:18:00:: 09727440 1 1 -filipino%3:01:00:: 03066180 1 0 -filippino_lippi%1:18:00:: 11134339 1 0 -filippo_brunelleschi%1:18:00:: 10868562 1 0 -fill%1:23:00:: 13580723 1 4 -fill%1:27:00:: 14868243 2 0 -fill%2:30:00:: 00451838 2 12 -fill%2:30:01:: 00452512 1 61 -fill%2:30:02:: 00261533 9 1 -fill%2:34:00:: 01193721 8 1 -fill%2:34:01:: 01203893 7 1 -fill%2:34:02:: 01183573 5 5 -fill%2:41:00:: 02394183 4 5 -fill%2:41:01:: 02394081 6 1 -fill%2:42:00:: 02649042 3 8 -fill-in%1:18:00:: 10648237 1 2 -fill_again%2:30:00:: 00453803 1 0 -fill_in%2:32:00:: 00833392 1 4 -fill_in%2:32:02:: 01020731 4 0 -fill_in%2:36:00:: 01695567 2 1 -fill_in%2:40:00:: 02258617 3 0 -fill_out%2:29:00:: 00046382 6 0 -fill_out%2:30:00:: 00172381 2 1 -fill_out%2:32:00:: 01020731 1 5 -fill_out%2:34:00:: 01194938 5 0 -fill_out%2:35:00:: 01526956 4 0 -fill_out%2:40:00:: 02342580 3 0 -fill_the_bill%2:42:00:: 02668170 1 0 -fill_up%2:30:00:: 00452512 1 2 -fill_up%2:30:01:: 00451838 2 1 -fill_up%2:34:00:: 01203893 4 0 -fill_up%2:35:03:: 01423285 3 0 -fillagree%1:06:00:: 03337822 1 0 -fille%1:18:00:: 10129825 1 0 -fille_de_chambre%1:18:00:: 09906293 1 6 -filled%3:44:00:: 03149732 2 0 -filled%5:00:00:occupied:00 01623744 3 0 -filled%5:00:01:full:00 01084644 1 26 -filler%1:06:00:: 03338009 5 0 -filler%1:06:01:: 03714721 4 0 -filler%1:10:00:: 06676254 3 0 -filler%1:23:00:: 13676650 2 0 -filler%1:27:00:: 14706026 1 0 -fillet%1:06:00:: 04383696 4 0 -fillet%1:06:01:: 03338143 5 0 -fillet%1:08:00:: 05475562 3 0 -fillet%1:13:01:: 07660065 1 0 -fillet%1:13:02:: 07655337 2 0 -fillet%2:35:00:: 01249294 2 0 -fillet%2:36:00:: 01678957 1 0 -fillet_of_sole%1:13:00:: 07791274 1 0 -filling%1:04:00:: 00402535 6 0 -filling%1:06:00:: 04598965 4 0 -filling%1:06:01:: 03338287 5 0 -filling%1:13:00:: 07883031 3 0 -filling%1:22:00:: 13480541 2 2 -filling%1:27:00:: 14868243 1 4 -filling_station%1:06:00:: 03425092 1 2 -fillip%1:09:00:: 05829656 1 1 -fillmore%1:18:00:: 10970864 1 0 -filly%1:05:00:: 02376679 1 1 -film%1:06:00:: 03338648 4 5 -film%1:06:01:: 03338821 3 5 -film%1:06:02:: 03339296 5 0 -film%1:10:00:: 06262567 2 16 -film%1:10:01:: 06613686 1 38 -film%2:32:00:: 01002740 1 2 -film%2:36:00:: 01711965 2 0 -film-make%2:36:00:: 01712204 1 0 -film_advance%1:06:00:: 03339529 1 0 -film_clip%1:10:00:: 06621323 1 1 -film_company%1:14:00:: 08003173 1 0 -film_director%1:18:00:: 10088200 1 0 -film_editing%1:04:00:: 00945205 1 0 -film_fern%1:20:00:: 12951835 1 0 -film_festival%1:04:00:: 00517418 1 0 -film_industry%1:14:00:: 08068151 1 0 -film_maker%1:18:00:: 10088390 1 1 -film_making%1:04:00:: 00924714 1 0 -film_noir%1:10:00:: 06617165 1 0 -film_over%2:39:00:: 02158034 1 0 -film_producer%1:18:00:: 10088390 1 0 -film_projector%1:06:00:: 03795976 1 0 -film_star%1:18:00:: 10089484 1 0 -film_writer%1:18:00:: 10564400 1 0 -filmable%5:00:00:adaptable:00 01028467 1 0 -filmdom%1:14:00:: 08068457 1 0 -filmed%5:00:00:recorded:00 01423344 1 2 -filming%1:04:00:: 00907919 1 1 -filmmaker%1:18:00:: 10088390 1 0 -filmy%5:00:00:thin:01 02413390 1 0 -filmy_fern%1:20:00:: 12951835 2 0 -filmy_fern%1:20:02:: 12952165 1 0 -filoviridae%1:05:00:: 01331659 1 0 -filovirus%1:05:00:: 01331867 1 0 -fils%1:23:00:: 13669006 2 0 -fils%1:23:01:: 13697621 1 0 -filter%1:06:00:: 03339643 1 4 -filter%1:06:01:: 03340009 2 1 -filter%2:35:00:: 01458664 1 10 -filter%2:35:01:: 01457954 2 3 -filter%2:38:00:: 02070874 3 0 -filter-tipped%5:00:00:tipped:00 02431024 1 0 -filter-tipped_cigarette%1:06:00:: 03340463 1 0 -filter_bed%1:06:00:: 03340183 1 0 -filter_out%2:35:00:: 01458664 1 0 -filter_paper%1:27:00:: 14868464 1 1 -filter_tip%1:06:00:: 03340306 1 0 -filth%1:10:00:: 07124340 4 0 -filth%1:26:00:: 14495761 3 0 -filth%1:26:01:: 14498096 2 0 -filth%1:27:00:: 14856752 1 0 -filthily%4:02:00:: 00312377 1 0 -filthiness%1:07:00:: 04852962 2 0 -filthiness%1:26:00:: 14495761 1 0 -filthy%5:00:00:dirty:01 00421590 1 2 -filthy%5:00:00:dirty:02 00425313 3 0 -filthy%5:00:00:nasty:00 01587474 2 0 -filthy_lucre%1:21:00:: 13260645 1 0 -filtrate%1:27:00:: 14868564 1 0 -filtrate%2:35:00:: 01458664 1 0 -filtration%1:04:00:: 00191980 2 0 -filtration%1:22:00:: 13480667 1 0 -filtration_surgery%1:04:00:: 00679379 1 0 -filum%1:08:00:: 05229468 1 0 -fimbria%1:08:00:: 05472959 1 0 -fimbriate%5:00:00:rough:02 02247074 1 0 -fin%1:05:00:: 02466132 6 0 -fin%1:06:00:: 03340581 5 0 -fin%1:06:01:: 03692676 3 0 -fin%1:06:02:: 03364156 4 0 -fin%1:06:03:: 04384406 2 0 -fin%1:23:00:: 13744521 1 0 -fin%2:38:00:: 01961510 3 0 -fin%2:38:01:: 01961691 2 0 -fin%2:40:00:: 02225911 1 0 -fin_de_siecle%5:00:00:finished:01 01004051 1 0 -fin_keel%1:06:00:: 03343047 1 0 -fin_whale%1:05:00:: 02065026 1 0 -finable%5:00:00:guilty:00 01322621 1 0 -finagle%2:41:00:: 02527431 1 0 -finagler%1:18:00:: 10089615 1 0 -final%1:10:00:: 07198276 2 0 -final%1:11:00:: 07466832 1 0 -final%5:00:00:closing:00 01010271 1 31 -final%5:00:00:ultimate:00 01579128 2 22 -final%5:00:00:unalterable:00 00349894 3 3 -final_cause%1:09:00:: 05983217 1 0 -final_cut%1:10:00:: 06615216 1 0 -final_decision%1:04:00:: 01189001 1 0 -final_exam%1:10:00:: 07198276 1 0 -final_examination%1:10:00:: 07198276 1 0 -final_injunction%1:10:00:: 06543389 1 0 -final_judgment%1:04:00:: 01189001 1 0 -final_payment%1:21:00:: 13299357 1 0 -final_period%1:28:00:: 15257692 1 1 -final_result%1:11:00:: 07292694 1 0 -final_solution%1:04:00:: 01245471 1 0 -final_stage%1:11:00:: 07291794 1 0 -finale%1:04:00:: 00210797 3 0 -finale%1:10:00:: 07039478 1 2 -finale%1:28:00:: 15267536 2 0 -finalisation%1:04:00:: 00211462 1 0 -finalise%2:30:00:: 00481941 1 0 -finalist%1:18:00:: 10089779 1 0 -finality%1:07:00:: 04754440 1 0 -finalization%1:04:00:: 00211462 1 0 -finalize%2:30:00:: 00481941 1 0 -finally%4:02:00:: 00047903 2 20 -finally%4:02:02:: 00048138 1 44 -finally%4:02:03:: 00065822 3 19 -finance%1:04:00:: 01098698 1 4 -finance%1:04:01:: 01134037 3 0 -finance%1:09:00:: 06150633 2 0 -finance%2:40:00:: 02217266 1 23 -finance%2:40:01:: 02217864 2 0 -finance_committee%1:14:00:: 08326976 1 0 -finance_company%1:14:00:: 08420839 1 0 -finance_minister%1:18:00:: 10089892 1 0 -finances%1:21:00:: 13356112 1 0 -financial%3:01:00:: 02847894 1 22 -financial_aid%1:21:00:: 13265904 1 0 -financial_analyst%1:18:00:: 09790865 1 0 -financial_audit%1:04:00:: 00578405 1 0 -financial_backing%1:21:00:: 13365698 1 0 -financial_center%1:15:00:: 08543081 1 0 -financial_condition%1:26:00:: 14488317 1 0 -financial_crimes_enforcement_network%1:14:00:: 08137251 1 0 -financial_forecast%1:10:00:: 06750514 1 0 -financial_gain%1:21:00:: 13254985 1 0 -financial_institution%1:14:00:: 08054721 1 0 -financial_loss%1:21:00:: 13327896 1 0 -financial_management_service%1:14:00:: 08140506 1 0 -financial_obligation%1:26:00:: 14490319 1 0 -financial_officer%1:18:00:: 10727256 1 0 -financial_organisation%1:14:00:: 08054721 1 0 -financial_organization%1:14:00:: 08054721 1 0 -financial_statement%1:10:00:: 06516595 1 0 -financial_support%1:21:00:: 13365698 1 0 -financial_year%1:28:00:: 15203120 1 0 -financially%4:02:00:: 00207127 1 5 -financier%1:18:00:: 10090020 1 0 -financier%2:41:00:: 02416955 1 0 -financing%1:04:00:: 01099109 1 5 -finback%1:05:00:: 02065026 1 0 -finback_whale%1:05:00:: 02065026 1 0 -fincen%1:14:00:: 08137251 1 0 -finch%1:05:00:: 01529672 1 0 -find%1:04:00:: 00043195 2 0 -find%1:09:00:: 05808218 1 0 -find%2:30:00:: 00522751 12 13 -find%2:30:13:: 00250691 16 0 -find%2:31:09:: 00721437 9 29 -find%2:31:10:: 00715239 5 57 -find%2:32:00:: 00918872 4 57 -find%2:32:01:: 00971999 11 16 -find%2:36:00:: 01637982 8 34 -find%2:38:10:: 02021653 15 0 -find%2:39:01:: 02128873 6 45 -find%2:39:02:: 02154508 2 141 -find%2:39:05:: 02197781 13 11 -find%2:40:00:: 02285629 3 86 -find%2:40:01:: 02213336 7 41 -find%2:40:02:: 02248465 1 159 -find%2:40:03:: 02212275 10 16 -find%2:40:15:: 02247977 14 0 -find_fault%2:32:10:: 00842772 1 0 -find_oneself%2:30:00:: 00250691 1 1 -find_out%2:31:00:: 00598954 2 17 -find_out%2:31:01:: 00731574 4 0 -find_out%2:32:00:: 00918872 1 33 -find_out%2:32:01:: 00920336 3 1 -finder%1:06:00:: 03340723 3 0 -finder%1:18:00:: 10090498 2 0 -finder%1:18:01:: 10090745 1 0 -finder's_fee%1:21:00:: 13321722 1 0 -finding%1:04:00:: 00151497 1 16 -finding%1:04:01:: 01191975 2 3 -finding%1:17:00:: 09279458 3 1 -finding_of_fact%1:04:00:: 01192150 1 0 -finding_of_law%1:04:00:: 01192463 1 0 -findings%1:14:00:: 07955961 1 0 -fine%1:21:00:: 13301328 1 0 -fine%2:41:00:: 02498716 1 0 -fine%3:00:00:: 02232251 5 1 -fine%4:02:00:: 00053004 1 3 -fine%4:02:02:: 00102463 2 1 -fine%5:00:00:elegant:00 00850183 4 2 -fine%5:00:00:precise:00 01838253 2 4 -fine%5:00:00:pure:02 01906817 6 0 -fine%5:00:00:satisfactory:00 02081114 1 4 -fine%5:00:00:thin:01 02414031 3 2 -fine-grained%5:00:01:fine:00 02232869 2 0 -fine-grained%5:00:02:fine:00 02233390 1 1 -fine-leafed%5:00:00:leafy:00 01701321 1 0 -fine-leaved%5:00:00:leafy:00 01701321 1 0 -fine-leaved_heath%1:20:00:: 12228387 1 0 -fine-looking%5:00:00:beautiful:00 00218950 1 1 -fine-textured%5:00:00:smooth:00 02237644 1 0 -fine-tooth%5:00:00:toothed:00 02438831 1 0 -fine-tooth_comb%1:04:00:: 00143057 2 0 -fine-tooth_comb%1:06:00:: 03341035 1 0 -fine-toothed%5:00:00:toothed:00 02438831 1 0 -fine-toothed_comb%1:04:00:: 00143057 2 0 -fine-toothed_comb%1:06:00:: 03341035 1 0 -fine-tune%2:30:00:: 00302763 2 0 -fine-tune%2:30:01:: 00474017 1 0 -fine-tune%2:30:02:: 00295697 3 0 -fine_art%1:06:00:: 02743547 1 0 -fine_arts%1:09:00:: 06156968 1 2 -fine_print%1:10:00:: 06678506 2 0 -fine_print%1:10:01:: 06761994 1 0 -fine_spray%1:19:00:: 11457496 1 0 -fine_structure%1:19:00:: 11457586 1 0 -fineable%5:00:00:guilty:00 01322621 1 0 -finedraw%2:35:00:: 01331147 1 0 -finely%4:02:00:: 00102463 3 0 -finely%4:02:01:: 00102637 2 2 -finely%4:02:02:: 00190837 1 2 -fineness%1:07:00:: 04813066 4 0 -fineness%1:07:01:: 05136978 2 0 -fineness%1:07:02:: 04948069 3 0 -fineness%1:07:03:: 04728604 1 1 -finer%5:00:00:better:00 00230940 1 0 -finery%1:06:00:: 03340923 1 0 -fines_herbes%1:13:00:: 07812046 1 0 -finespun%5:00:00:precise:00 01838379 2 0 -finespun%5:00:00:refined:01 01948389 1 0 -finesse%1:07:00:: 04842029 1 0 -fingal's_cave%1:17:00:: 09279727 1 0 -finger%1:06:00:: 03341153 3 0 -finger%1:08:00:: 05566504 1 53 -finger%1:23:01:: 13653461 2 0 -finger%2:32:00:: 00924431 4 0 -finger%2:35:00:: 01209953 1 1 -finger%2:35:01:: 01314573 3 0 -finger%2:35:05:: 01209678 2 1 -finger's_breadth%1:23:00:: 13653461 1 0 -finger-flower%1:20:00:: 12882945 1 0 -finger-paint%2:36:00:: 01681048 1 0 -finger-painting%1:04:00:: 00718066 2 0 -finger-painting%1:06:00:: 03342127 1 0 -finger-pointing%1:10:00:: 07237234 1 0 -finger-roll%1:04:00:: 00110834 1 0 -finger-root%1:20:00:: 12882945 1 0 -finger-spell%2:32:00:: 00741702 1 0 -finger_alphabet%1:10:00:: 06500765 1 0 -finger_bowl%1:06:00:: 03341606 1 0 -finger_cymbals%1:06:00:: 02869249 1 0 -finger_food%1:13:00:: 07560331 1 0 -finger_grass%1:20:01:: 12114397 2 0 -finger_grass%1:20:02:: 12117017 1 0 -finger_hole%1:06:00:: 03341707 2 0 -finger_hole%1:06:01:: 03341850 1 0 -finger_lakes%1:15:00:: 08567600 1 0 -finger_millet%1:20:00:: 12118661 1 0 -finger_paint%1:06:00:: 03342015 1 0 -finger_plate%1:06:00:: 03342262 1 0 -finger_scan%1:10:00:: 06644658 1 0 -finger_scanning%1:10:00:: 06644658 1 0 -finger_spelling%1:10:00:: 06875883 1 0 -finger_wave%1:08:00:: 05259426 1 0 -fingerboard%1:06:00:: 03341297 3 0 -fingerboard%1:06:01:: 03928814 2 0 -fingerboard%1:10:00:: 06794537 1 0 -fingerbreadth%1:23:00:: 13653461 1 0 -fingered%3:00:00:: 00946050 1 1 -fingerflower%1:20:00:: 12882945 1 0 -fingering%1:04:00:: 00140900 2 0 -fingering%1:04:02:: 01053207 1 1 -fingerless%3:00:00:: 00946409 1 0 -fingerlike%5:00:00:fingered:00 00946281 1 0 -fingerling%1:05:00:: 02512752 1 0 -fingermark%1:07:00:: 04694980 1 0 -fingernail%1:08:00:: 05584265 1 1 -fingerpaint%1:06:00:: 03342015 1 0 -fingerpointing%1:10:00:: 07237234 1 0 -fingerpost%1:10:00:: 06794537 1 0 -fingerprint%1:07:00:: 04694980 3 0 -fingerprint%1:10:00:: 06886488 2 0 -fingerprint%1:10:01:: 06644393 1 5 -fingerprint%2:36:00:: 01748748 1 0 -fingerprint_expert%1:18:00:: 10090864 1 1 -fingerprint_man%1:18:00:: 10090864 1 1 -fingerprint_specialist%1:18:00:: 10090864 1 1 -fingerprinting%1:04:00:: 00152338 1 1 -fingerroot%1:20:00:: 12882945 1 0 -fingerspell%2:32:00:: 00741702 1 0 -fingerspelling%1:10:00:: 06875883 1 0 -fingerstall%1:06:00:: 03342432 1 0 -fingertip%1:08:00:: 05567117 1 2 -finial%1:06:00:: 03342529 1 0 -finical%5:00:00:fastidious:00 00984624 1 0 -finicky%5:00:00:fastidious:00 00984624 1 1 -finis%1:04:00:: 00210797 2 0 -finis%1:28:00:: 15267536 1 0 -finish%1:04:00:: 00210518 9 0 -finish%1:07:00:: 04700642 1 3 -finish%1:09:00:: 05717747 8 0 -finish%1:11:00:: 07353376 5 0 -finish%1:11:01:: 07333162 6 0 -finish%1:11:02:: 07291312 7 0 -finish%1:15:00:: 08567877 4 0 -finish%1:26:00:: 14459824 3 0 -finish%1:28:00:: 15267536 2 0 -finish%2:30:01:: 00352558 2 12 -finish%2:30:02:: 00484166 1 44 -finish%2:30:03:: 00351963 6 0 -finish%2:34:00:: 01196802 5 2 -finish%2:35:00:: 01265989 4 3 -finish%2:42:00:: 02609764 3 8 -finish_coat%1:06:00:: 03342657 2 0 -finish_coat%1:06:01:: 03342863 1 0 -finish_line%1:15:00:: 08571459 1 0 -finish_off%2:30:00:: 00484892 1 0 -finish_out%2:30:00:: 00485274 1 0 -finish_up%2:30:00:: 00484892 1 1 -finish_up%2:30:02:: 00352558 2 1 -finished%3:00:01:: 01003050 2 2 -finished%3:00:02:: 01005063 1 5 -finished%5:00:00:destroyed:00 00736299 5 0 -finished%5:00:00:painted:00 01713550 4 0 -finished%5:00:00:polished:00 01812630 3 0 -finisher%1:05:00:: 02385002 6 0 -finisher%1:06:00:: 03342961 5 0 -finisher%1:18:00:: 09619452 4 0 -finisher%1:18:01:: 09619605 3 0 -finisher%1:18:02:: 09930257 1 0 -finisher%1:18:03:: 09619734 2 0 -finishing%1:04:00:: 00210518 2 0 -finishing%1:07:00:: 04700642 1 1 -finishing_coat%1:06:00:: 03342657 2 0 -finishing_coat%1:06:01:: 03342863 1 0 -finishing_line%1:15:00:: 08571459 1 0 -finishing_school%1:14:00:: 08282109 1 0 -finishing_touch%1:09:00:: 05642678 1 0 -finite%3:00:00:: 01006566 1 11 -finite%3:00:02:: 01008439 2 0 -finitely%4:02:00:: 00225119 1 0 -finiteness%1:07:00:: 05209659 1 0 -finitude%1:07:00:: 05209659 1 0 -fink%1:18:00:: 10091012 1 0 -fink%2:32:00:: 00819508 2 0 -fink%2:41:00:: 02412939 1 0 -finland%1:15:00:: 08779504 1 0 -finn%1:18:00:: 09706029 1 1 -finnan%1:13:00:: 07789745 1 0 -finnan_haddie%1:13:00:: 07789745 1 0 -finnan_haddock%1:13:00:: 07789745 1 0 -finnbogadottir%1:18:00:: 10971080 1 0 -finnic%1:10:00:: 06956544 1 0 -finnish%1:10:00:: 06958255 1 0 -finnish%3:01:00:: 02959553 1 0 -finnish_capital%1:15:00:: 08780018 1 0 -finnish_mark%1:23:00:: 13688447 1 0 -finnish_monetary_unit%1:23:00:: 13688319 1 0 -finno-ugrian%1:10:00:: 06956287 1 0 -finno-ugric%1:10:00:: 06956287 1 0 -finno-ugric-speaking%5:00:00:communicative:00 00497330 1 0 -finocchio%1:13:00:: 07817871 1 0 -fiord%1:17:00:: 09281104 1 0 -fipple%1:06:00:: 03343234 1 0 -fipple_flute%1:06:00:: 03343354 1 0 -fipple_pipe%1:06:00:: 03343354 1 0 -fir%1:20:00:: 11620673 2 0 -fir%1:20:02:: 11620912 1 0 -fir_clubmoss%1:20:00:: 13223090 1 0 -fir_cone%1:20:00:: 11683105 1 0 -fir_tree%1:20:00:: 11620673 1 0 -fire%1:04:00:: 00986938 2 18 -fire%1:06:00:: 03343560 4 4 -fire%1:10:00:: 06711159 9 0 -fire%1:11:00:: 07302836 1 43 -fire%1:11:01:: 07420435 8 0 -fire%1:12:00:: 07481375 6 3 -fire%1:22:00:: 13480848 3 7 -fire%1:27:00:: 14686186 7 0 -fire%1:27:01:: 14842847 5 3 -fire%2:30:00:: 00320536 3 10 -fire%2:30:01:: 00378664 8 1 -fire%2:33:00:: 01133825 2 16 -fire%2:33:01:: 01135783 1 30 -fire%2:33:02:: 01134238 5 5 -fire%2:37:00:: 01759326 7 1 -fire%2:38:02:: 02002410 6 1 -fire%2:40:00:: 02356420 9 0 -fire%2:41:00:: 02402825 4 7 -fire-bellied_toad%1:05:00:: 01648620 1 0 -fire-bush%1:20:01:: 11831874 2 0 -fire-bush%1:20:02:: 12914193 1 0 -fire-eater%1:18:00:: 10091450 3 0 -fire-eater%1:18:01:: 10091564 2 0 -fire-eater%1:18:02:: 10091651 1 0 -fire-on-the-mountain%1:20:00:: 12920719 1 0 -fire-raising%1:04:00:: 00378296 1 0 -fire-resistant%5:00:00:noncombustible:00 00474311 1 0 -fire-resisting%5:00:00:noncombustible:00 00474311 1 0 -fire-resistive%5:00:00:noncombustible:00 00474311 1 0 -fire-retardant%5:00:00:noncombustible:00 00474311 1 0 -fire-swallower%1:18:00:: 10091450 1 0 -fire-wheel%1:20:00:: 11970846 1 0 -fire-worship%1:04:00:: 01046167 1 0 -fire_alarm%1:06:00:: 03343737 2 0 -fire_alarm%1:10:00:: 07265276 1 0 -fire_and_brimstone%1:26:00:: 14458763 1 1 -fire_ant%1:05:00:: 02221083 1 0 -fire_beetle%1:05:00:: 02176747 1 0 -fire_bell%1:06:00:: 03344305 1 0 -fire_blight%1:26:00:: 14217002 1 0 -fire_brigade%1:14:00:: 08121394 1 0 -fire_brigade%1:14:01:: 08121301 2 0 -fire_bush%1:20:01:: 11831874 2 0 -fire_bush%1:20:02:: 12914193 1 0 -fire_chief%1:18:00:: 10091349 1 0 -fire_code%1:10:00:: 06668813 1 0 -fire_company%1:14:00:: 08121394 1 1 -fire_control%1:04:00:: 00123652 1 0 -fire_control_radar%1:06:00:: 03344784 1 0 -fire_control_system%1:06:00:: 03344935 1 0 -fire_department%1:14:00:: 08121117 1 0 -fire_door%1:06:00:: 03345362 1 0 -fire_drill%1:04:00:: 00894979 1 0 -fire_engine%1:06:00:: 03345487 1 0 -fire_escape%1:06:00:: 03345658 1 0 -fire_extinguisher%1:06:00:: 03345837 1 0 -fire_fighter%1:18:00:: 10091651 1 0 -fire_hook%1:06:00:: 03975926 1 0 -fire_hose%1:06:00:: 03346004 1 0 -fire_hydrant%1:06:00:: 03346898 1 0 -fire_insurance%1:21:00:: 13346337 1 0 -fire_iron%1:06:00:: 03346135 1 0 -fire_marshal%1:18:00:: 10091349 1 0 -fire_marshall%1:18:00:: 10091861 1 0 -fire_opal%1:27:00:: 14868916 1 0 -fire_pink%1:20:00:: 11816649 1 0 -fire_pit%1:17:00:: 09280113 1 0 -fire_salamander%1:05:00:: 01629962 1 0 -fire_sale%1:04:00:: 01119012 2 0 -fire_sale%1:04:01:: 01119116 1 0 -fire_screen%1:06:00:: 03347037 1 0 -fire_ship%1:06:00:: 03347191 1 0 -fire_station%1:06:00:: 03347338 1 0 -fire_thorn%1:20:00:: 12651229 1 0 -fire_tongs%1:06:00:: 03347472 1 0 -fire_tower%1:06:00:: 03347617 1 0 -fire_tree%1:20:00:: 12738599 1 0 -fire_trench%1:06:00:: 03347855 1 0 -fire_truck%1:06:00:: 03345487 1 0 -fire_up%2:34:00:: 01199881 2 0 -fire_up%2:37:00:: 01761120 1 0 -fire_walker%1:18:00:: 10091997 1 0 -fire_walking%1:11:00:: 07454632 1 0 -fire_warden%1:18:00:: 10092098 1 0 -fire_watcher%1:18:00:: 10092299 1 0 -fire_watching%1:04:00:: 00817507 1 0 -fire_wheel%1:20:00:: 11970846 1 0 -firearm%1:06:00:: 03343853 1 6 -fireball%1:17:02:: 09279870 4 0 -fireball%1:17:03:: 09279986 3 0 -fireball%1:18:00:: 10462429 2 0 -fireball%1:19:00:: 11484260 1 0 -firebase%1:06:00:: 03344205 1 0 -firebird%1:05:01:: 01572489 2 0 -firebird%1:05:02:: 01597737 1 0 -firebird%1:05:03:: 01550172 3 0 -fireboat%1:06:00:: 03344393 1 0 -firebomb%1:06:00:: 03565991 1 0 -firebomb%2:33:00:: 01133667 1 0 -firebox%1:06:00:: 03344509 1 0 -firebrand%1:18:00:: 10209246 2 0 -firebrand%1:27:00:: 15101157 1 0 -firebrat%1:05:00:: 02270945 1 0 -firebreak%1:15:00:: 08571642 1 0 -firebrick%1:06:00:: 03344642 1 0 -firebug%1:05:00:: 02245111 2 0 -firebug%1:18:00:: 09810707 1 0 -fireclay%1:27:00:: 14813843 1 0 -firecracker%1:06:00:: 03345115 1 3 -fired%5:00:00:unemployed:00 00864884 1 0 -firedamp%1:27:00:: 14726998 1 0 -firedog%1:06:00:: 02710044 1 0 -firedrake%1:18:00:: 09494388 1 0 -firefighter%1:18:00:: 10091651 1 0 -firefly%1:05:01:: 02168245 2 0 -firefly%1:05:02:: 02176747 1 0 -fireguard%1:06:00:: 03347037 2 0 -fireguard%1:15:00:: 08571642 1 0 -firehouse%1:06:00:: 03347338 1 0 -firelight%1:19:00:: 11457841 1 2 -firelighter%1:27:00:: 14868771 1 0 -firelock%1:06:00:: 03363749 1 0 -fireman%1:04:00:: 00432587 1 1 -fireman%1:18:00:: 10091651 4 0 -fireman%1:18:01:: 10659042 2 0 -fireman%1:18:02:: 10518194 3 0 -fireman's_ax%1:06:00:: 03346289 1 0 -fireman's_axe%1:06:00:: 03346289 1 0 -fireman's_carry%1:04:00:: 00319608 1 0 -firenze%1:15:00:: 08812166 1 0 -fireplace%1:06:01:: 03346455 1 5 -fireplug%1:06:00:: 03346898 1 0 -firepower%1:07:00:: 05204004 1 1 -fireproof%2:30:00:: 00166748 1 0 -fireproof%5:00:00:noncombustible:00 00474227 1 0 -fireroom%1:06:00:: 04325409 1 0 -fireside%1:06:00:: 03507241 2 0 -fireside%1:15:00:: 08581699 1 1 -firestone%1:17:00:: 09280236 2 0 -firestone%1:27:01:: 14870821 1 0 -firestorm%1:10:00:: 07182614 2 0 -firestorm%1:19:00:: 11457944 1 0 -firethorn%1:20:00:: 12651229 1 0 -firetrap%1:06:00:: 03347731 1 0 -firewall%1:04:00:: 00104088 1 1 -firewall%1:06:00:: 03347980 3 0 -firewall%1:06:01:: 03348142 2 0 -firewater%1:13:00:: 07907037 1 0 -fireweed%1:20:01:: 12342498 1 0 -fireweed%1:20:02:: 11965218 2 0 -firewheel_tree%1:20:00:: 12222900 1 0 -firewood%1:27:00:: 15100644 1 1 -firework%1:06:00:: 03348454 1 2 -firing%1:04:00:: 00378479 3 0 -firing%1:04:01:: 00216174 4 0 -firing%1:04:02:: 00123234 2 6 -firing%1:04:03:: 00986938 1 8 -firing_chamber%1:06:00:: 03348868 1 0 -firing_line%1:14:00:: 08415983 2 0 -firing_line%1:15:00:: 08571799 1 0 -firing_mechanism%1:06:00:: 03469493 1 0 -firing_off%1:04:00:: 00123234 1 0 -firing_party%1:14:00:: 08424769 1 0 -firing_pin%1:06:00:: 03349020 1 0 -firing_range%1:06:00:: 03349150 1 1 -firing_squad%1:14:00:: 08424769 1 0 -firkin%1:06:00:: 03349296 2 0 -firkin%1:23:00:: 13622769 1 0 -firm%1:14:00:: 08059870 1 26 -firm%2:30:00:: 00420549 1 0 -firm%2:30:01:: 00420434 2 0 -firm%4:02:00:: 00050817 1 1 -firm%5:00:00:faithful:00 00959244 10 0 -firm%5:00:00:fixed:00 01059711 9 0 -firm%5:00:00:forceful:00 00842199 3 6 -firm%5:00:00:hard:01 01151740 2 6 -firm%5:00:00:healthy:00 01171076 8 1 -firm%5:00:00:resolute:00 01990653 1 12 -firm%5:00:00:secure:02 02094388 7 2 -firm%5:00:00:settled:02 02130272 4 4 -firm%5:00:00:steady:00 02302366 5 2 -firm%5:00:02:stable:00 02291336 6 2 -firm_omelet%1:13:00:: 07842972 1 0 -firm_up%2:32:00:: 01021871 1 0 -firmament%1:15:00:: 08521267 1 0 -firmamental%3:01:00:: 02871229 1 0 -firmer_chisel%1:06:00:: 03349367 1 0 -firmiana%1:20:00:: 12198140 1 0 -firmiana_simplex%1:20:00:: 12198286 1 0 -firmly%4:02:01:: 00091964 3 2 -firmly%4:02:02:: 00050817 1 11 -firmly%4:02:03:: 00224700 2 5 -firmness%1:07:00:: 04777852 4 0 -firmness%1:07:01:: 04861486 2 1 -firmness%1:07:02:: 04938110 3 0 -firmness%1:07:03:: 05031849 1 1 -firmness_of_purpose%1:07:00:: 04861486 1 0 -firmware%1:10:00:: 06357814 1 0 -first%1:04:00:: 00723547 4 1 -first%1:06:00:: 03350011 6 0 -first%1:10:00:: 06700169 5 0 -first%1:23:00:: 13597444 2 5 -first%1:24:00:: 13846199 1 9 -first%1:28:00:: 15265518 3 1 -first%3:00:00:: 01010862 1 232 -first%3:00:03:: 01016215 6 0 -first%4:02:00:: 00102736 1 58 -first%4:02:01:: 00254614 4 4 -first%4:02:02:: 00103554 2 40 -first%4:02:03:: 00506928 3 9 -first%5:00:00:best:00 00228294 5 3 -first%5:00:00:ordinal:00 02202047 2 61 -first%5:00:01:opening:00 01009206 4 4 -first%5:00:02:opening:00 01009343 3 4 -first-aid_kit%1:06:00:: 03349469 1 0 -first-aid_station%1:06:00:: 03349599 1 0 -first-class%5:00:01:superior:02 02343110 1 1 -first-class_honours_degree%1:10:00:: 06700169 1 0 -first-class_mail%1:10:00:: 06265272 1 0 -first-come-first-serve%5:00:00:unreserved:02 01988829 1 0 -first-degree_burn%1:26:00:: 14291173 1 0 -first-nighter%1:18:00:: 10093264 1 1 -first-order_correlation%1:09:00:: 06032066 1 0 -first-place_finish%1:11:00:: 07354911 1 0 -first-rate%4:02:00:: 00340523 1 0 -first-rate%5:00:00:superior:02 02341864 1 1 -first-rater%1:18:00:: 10093396 1 0 -first-string%5:00:00:primary:00 01852924 2 0 -first-string%5:00:00:regular:00 01959711 1 0 -first-year%5:00:00:first:00 01012247 1 0 -first_aid%1:04:00:: 00656524 1 1 -first_amendment%1:10:00:: 06728034 1 0 -first_and_last%4:02:00:: 00158190 1 0 -first_appearance%1:04:00:: 00238022 1 0 -first_balcony%1:06:00:: 03758220 1 0 -first_baron_beveridge%1:18:00:: 10850667 1 0 -first_baron_kelvin%1:18:00:: 11100260 1 0 -first_baron_lytton%1:18:00:: 11146494 1 0 -first_baron_macaulay%1:18:00:: 11146914 1 0 -first_baron_marks_of_broughton%1:18:00:: 11157422 1 0 -first_baron_passfield%1:18:00:: 11377851 1 0 -first_baron_rutherford%1:18:00:: 11276285 1 0 -first_baron_rutherford_of_nelson%1:18:00:: 11276285 1 0 -first_baron_tennyson%1:18:00:: 11335330 1 0 -first_base%1:04:00:: 00243662 3 0 -first_base%1:04:01:: 00723547 2 0 -first_base%1:06:00:: 03349771 1 0 -first_baseman%1:18:00:: 10092488 1 1 -first_battle_of_ypres%1:04:00:: 01300508 1 0 -first_blush%1:09:00:: 05917675 1 0 -first_cause%1:18:00:: 09504603 1 0 -first_class%1:06:00:: 03349892 3 0 -first_class%1:07:00:: 04730191 1 1 -first_class%1:10:00:: 06265272 2 0 -first_class%4:02:00:: 00340273 1 0 -first_council_of_constantinople%1:14:00:: 08313790 1 0 -first_council_of_lyons%1:14:00:: 08316346 1 0 -first_council_of_nicaea%1:14:00:: 08313592 1 0 -first_cousin%1:18:00:: 09972010 1 0 -first_cranial_nerve%1:08:00:: 05477946 1 0 -first_crusade%1:04:00:: 00969087 1 0 -first_degree%1:09:00:: 05861716 1 0 -first_derivative%1:09:00:: 06014730 1 0 -first_duke_of_marlborough%1:18:00:: 10897594 1 0 -first_duke_of_wellington%1:18:00:: 11380923 1 0 -first_earl_kitchener_of_khartoum%1:18:00:: 11106479 1 0 -first_earl_of_beaconsfield%1:18:00:: 10937364 1 0 -first_earl_of_chatham%1:18:00:: 11236317 1 0 -first_earl_of_orford%1:18:00:: 11372372 1 0 -first_earl_wavell%1:18:00:: 11377315 1 0 -first_epistle_of_john%1:10:00:: 06447221 1 0 -first_epistle_of_paul_the_apostle_to_the_corinthians%1:10:00:: 06443398 1 0 -first_epistle_of_paul_the_apostle_to_the_thessalonians%1:10:00:: 06444959 1 0 -first_epistle_of_paul_the_apostle_to_timothy%1:10:00:: 06445473 1 0 -first_epistle_of_peter%1:10:00:: 06446860 1 0 -first_epistle_to_the_corinthians%1:10:00:: 06443398 1 0 -first_epistle_to_the_thessalonians%1:10:00:: 06444959 1 0 -first_epistle_to_timothy%1:10:00:: 06445473 1 0 -first_estate%1:14:00:: 08167779 1 0 -first_floor%1:06:00:: 03463381 1 0 -first_gear%1:06:00:: 03350011 1 0 -first_half%1:28:00:: 15258091 1 2 -first_harmonic%1:09:00:: 05719958 1 0 -first_in_first_out%1:04:00:: 00620084 1 0 -first_lady%1:18:00:: 10092794 2 0 -first_lady%1:18:01:: 10092880 1 0 -first_language%1:10:00:: 06904748 1 0 -first_lateran_council%1:14:00:: 08315442 1 0 -first_law_of_motion%1:09:00:: 05885822 1 0 -first_law_of_thermodynamics%1:09:00:: 06104578 1 0 -first_lieutenant%1:18:00:: 10092978 1 0 -first_light%1:28:00:: 15168790 1 0 -first_lord_of_the_treasury%1:18:00:: 10727458 1 0 -first_marquess_cornwallis%1:18:00:: 10911687 1 0 -first_mate%1:18:00:: 10300041 1 0 -first_moment%1:09:00:: 06024230 1 1 -first_mortgage%1:21:00:: 13352464 1 0 -first_name%1:10:00:: 06337307 1 1 -first_of_all%4:02:00:: 00102736 1 5 -first_of_may%1:28:00:: 15189033 1 0 -first_of_october_antifascist_resistance_group%1:14:00:: 08021129 1 0 -first_off%4:02:00:: 00102736 1 1 -first_offender%1:18:00:: 10093167 1 0 -first_period%1:28:00:: 15257416 1 0 -first_person%1:10:00:: 06327718 1 0 -first_principle%1:09:00:: 05872742 1 0 -first_quarter%1:28:00:: 15207302 1 0 -first_reading%1:10:00:: 07163272 1 0 -first_rudiment%1:09:00:: 05872742 1 0 -first_sacker%1:18:00:: 10092488 1 0 -first_sergeant%1:18:00:: 10093475 1 0 -first_state%1:15:00:: 09069862 1 0 -first_step%1:04:00:: 00239230 1 8 -first_stomach%1:05:00:: 02399424 1 0 -first_strike%1:04:00:: 00977551 1 0 -first_team%1:14:00:: 08080652 1 0 -first_trimester%1:28:00:: 15226972 1 0 -first_vatican_council%1:14:00:: 08318032 1 0 -first_viscount_haldane_of_cloan%1:18:00:: 11022465 1 0 -first_viscount_nuffield%1:18:00:: 11210383 1 0 -first_visual_area%1:08:00:: 05494617 1 0 -first_water%1:07:00:: 04730285 1 0 -first_world_war%1:04:00:: 01311520 1 0 -firstborn%1:18:00:: 10092643 1 0 -firstborn%5:00:00:first:00 01012100 1 0 -firsthand%4:02:00:: 00340403 1 0 -firsthand%5:00:00:primary:00 01852812 1 2 -firstly%4:02:00:: 00102736 1 0 -firth%1:17:00:: 09280380 2 0 -firth%1:18:00:: 10971264 1 0 -firth_of_clyde%1:17:00:: 09280573 1 0 -firth_of_forth%1:17:00:: 09280731 1 0 -fisa%1:10:00:: 06565397 1 0 -fisc%1:21:00:: 13358360 1 0 -fiscal%3:01:00:: 02847894 1 3 -fiscal_policy%1:10:00:: 06656961 1 1 -fiscal_year%1:28:00:: 15203120 1 17 -fiscally%4:02:00:: 00131429 1 0 -fischer%1:18:00:: 10971528 3 0 -fischer%1:18:01:: 10971697 2 0 -fischer%1:18:02:: 10971852 1 0 -fischer's_slime_mushroom%1:20:00:: 13004065 1 0 -fish%1:05:00:: 02512053 1 12 -fish%1:13:00:: 07775375 2 3 -fish%1:15:00:: 08688076 4 0 -fish%1:18:00:: 09753792 3 1 -fish%2:33:00:: 01140794 2 1 -fish%2:35:00:: 01319346 1 2 -fish-fly%1:05:00:: 02266421 1 0 -fish-liver_oil%1:27:00:: 14869035 1 0 -fish-worship%1:04:00:: 01046571 1 0 -fish_and_chips%1:13:00:: 07867324 1 0 -fish_ball%1:13:00:: 07868955 1 0 -fish_ball%1:13:02:: 07641928 2 0 -fish_bowl%1:06:00:: 03350204 2 0 -fish_bowl%1:26:00:: 13935400 1 0 -fish_cake%1:13:00:: 07641928 1 0 -fish_chowder%1:13:00:: 07588111 1 0 -fish_doctor%1:05:00:: 02617819 1 0 -fish_duck%1:05:00:: 01854415 1 0 -fish_eagle%1:05:00:: 01616086 1 0 -fish_family%1:05:00:: 01429349 1 0 -fish_farm%1:06:00:: 03351036 1 0 -fish_filet%1:13:00:: 07655337 1 0 -fish_fillet%1:13:00:: 07655337 1 0 -fish_finger%1:13:00:: 07642361 1 0 -fish_fly%1:05:00:: 02266421 1 0 -fish_fry%1:13:00:: 07577144 1 0 -fish_fuddle%1:20:00:: 12559518 1 0 -fish_genus%1:05:00:: 01432517 1 0 -fish_geranium%1:20:00:: 12687698 1 0 -fish_glue%1:27:00:: 14703566 1 0 -fish_hawk%1:05:00:: 01616086 1 3 -fish_house_punch%1:13:00:: 07931733 1 0 -fish_joint%1:06:00:: 03352232 1 0 -fish_knife%1:06:00:: 03352366 1 0 -fish_ladder%1:06:00:: 03352484 1 0 -fish_loaf%1:13:00:: 07875693 1 0 -fish_louse%1:05:00:: 01997605 1 0 -fish_lure%1:06:00:: 03350602 1 0 -fish_meal%1:27:00:: 14867545 1 0 -fish_mousse%1:13:00:: 07617447 1 0 -fish_oil%1:27:00:: 14869035 1 0 -fish_scale%1:05:00:: 01903110 1 0 -fish_slice%1:06:00:: 03352961 1 0 -fish_species%1:14:00:: 08111027 1 0 -fish_steak%1:13:00:: 07658058 1 0 -fish_stew%1:13:00:: 07591473 1 0 -fish_stick%1:13:00:: 07642361 1 0 -fish_tank%1:06:00:: 02732072 1 0 -fishbone%1:05:00:: 02467491 1 0 -fishbowl%1:06:00:: 03350204 2 0 -fishbowl%1:26:00:: 13935400 1 0 -fisher%1:05:00:: 02450829 2 0 -fisher%1:18:00:: 10093658 1 1 -fisher_cat%1:05:00:: 02450829 1 0 -fisherman%1:18:00:: 10093658 1 6 -fisherman's_bend%1:06:00:: 03350352 1 0 -fisherman's_knot%1:06:00:: 03350456 1 0 -fisherman's_lure%1:06:00:: 03350602 1 0 -fishery%1:06:00:: 03350880 1 0 -fisheye%3:01:00:: 02728812 1 0 -fisheye_lens%1:06:00:: 04583212 1 0 -fishgig%1:06:00:: 04271148 1 0 -fishhook%1:06:00:: 03351151 1 0 -fishily%4:02:00:: 00437246 1 0 -fishing%1:04:00:: 00453935 1 5 -fishing%1:04:01:: 00454121 2 0 -fishing_boat%1:06:00:: 03351262 1 3 -fishing_eagle%1:05:00:: 01615703 1 0 -fishing_expedition%1:09:00:: 05800838 1 0 -fishing_gear%1:06:00:: 03351434 1 0 -fishing_licence%1:10:00:: 06550381 1 0 -fishing_license%1:10:00:: 06550381 1 0 -fishing_line%1:06:00:: 03351768 1 0 -fishing_net%1:06:00:: 03352628 1 1 -fishing_permit%1:10:00:: 06550381 1 0 -fishing_pole%1:06:00:: 03351979 1 0 -fishing_rig%1:06:00:: 03351434 1 0 -fishing_rod%1:06:00:: 03351979 1 1 -fishing_season%1:28:00:: 15240888 1 0 -fishing_smack%1:06:00:: 03351262 1 0 -fishing_tackle%1:06:00:: 03351434 1 1 -fishing_vessel%1:06:00:: 03351262 1 0 -fishing_worm%1:05:00:: 01935395 1 0 -fishmonger%1:18:00:: 10093818 1 1 -fishnet%1:06:00:: 03352628 1 0 -fishpaste%1:13:00:: 07856992 1 0 -fishplate%1:06:00:: 03352853 1 0 -fishpole_bamboo%1:20:00:: 12149144 1 0 -fishpond%1:17:00:: 09280913 1 0 -fishtail%2:30:00:: 00439199 1 0 -fishtail_bit%1:06:00:: 03353147 1 0 -fishtail_palm%1:20:00:: 12586989 1 0 -fishwife%1:18:00:: 10093818 1 1 -fishworm%1:05:00:: 01935395 1 0 -fishy%3:01:00:: 02728929 1 0 -fishy%5:00:00:questionable:00 01917594 2 0 -fissile%3:00:00:: 01016644 2 0 -fissile%3:00:02:: 01016874 1 0 -fission%1:22:00:: 13481224 2 0 -fission%1:22:01:: 13481408 1 0 -fission_bomb%1:06:00:: 02753044 1 0 -fissionable%3:00:00:: 01016874 1 0 -fissiparity%1:07:00:: 04705196 2 0 -fissiparity%1:22:00:: 13481580 1 0 -fissiparous%5:00:00:asexual:00 02136423 1 0 -fissiparous%5:00:00:independent:00 00728619 2 0 -fissiped%1:05:00:: 02082190 1 0 -fissiped_mammal%1:05:00:: 02082190 1 0 -fissipedia%1:05:00:: 02082056 1 0 -fissure%1:08:00:: 05223370 3 0 -fissure%1:17:00:: 09258715 2 0 -fissure%1:25:00:: 13907272 1 0 -fissure%2:30:00:: 00336922 1 0 -fissure_of_rolando%1:08:00:: 05223823 1 0 -fissure_of_sylvius%1:08:00:: 05224080 1 0 -fissurella%1:05:00:: 01949330 1 0 -fissurella_apertura%1:05:00:: 01949499 1 0 -fissurellidae%1:05:00:: 01949195 1 0 -fist%1:08:00:: 05565064 1 20 -fistfight%1:04:00:: 01173826 1 1 -fistfight%2:33:00:: 01082153 1 1 -fistful%1:23:00:: 13767350 1 0 -fisticuffs%1:04:00:: 00445802 2 0 -fisticuffs%1:04:01:: 01173826 1 0 -fistmele%1:23:00:: 13653615 1 0 -fistula%1:08:00:: 05548032 2 0 -fistula%1:26:00:: 14263440 1 0 -fistular%5:00:00:hollow:00 02264657 1 0 -fistularia%1:05:00:: 01454393 1 0 -fistulariidae%1:05:00:: 01454260 1 0 -fistulate%5:00:00:hollow:00 02264657 1 0 -fistulina%1:20:00:: 13053450 1 0 -fistulina_hepatica%1:20:00:: 13053608 1 0 -fistulinaceae%1:20:00:: 13053187 1 0 -fistulous%3:01:00:: 02729065 1 0 -fistulous%5:00:00:hollow:00 02264657 2 0 -fistulous_withers%1:26:00:: 14263440 1 0 -fit%1:04:00:: 00555325 4 0 -fit%1:07:00:: 04930307 3 2 -fit%1:26:00:: 14082788 2 2 -fit%1:26:01:: 14406303 1 3 -fit%2:30:00:: 00456740 9 0 -fit%2:30:01:: 00300537 4 7 -fit%2:30:02:: 00300113 5 5 -fit%2:40:00:: 02339413 8 1 -fit%2:42:01:: 02667900 3 9 -fit%2:42:02:: 02659763 2 11 -fit%2:42:03:: 02735753 7 1 -fit%2:42:04:: 02657219 6 4 -fit%2:42:05:: 02702830 1 14 -fit%3:00:01:: 01017161 3 3 -fit%3:00:02:: 01020393 1 4 -fit%5:00:00:ready:00 01931203 2 4 -fit_in%2:42:00:: 02700104 1 2 -fit_out%2:29:00:: 00047945 2 0 -fit_out%2:40:00:: 02339413 1 1 -fit_the_bill%2:42:00:: 02668170 1 0 -fitch%1:05:00:: 02443114 1 0 -fitful%5:00:00:broken:02 00290593 2 0 -fitful%5:00:00:sporadic:00 00593664 1 0 -fitfully%4:02:00:: 00340621 1 0 -fitfulness%1:07:00:: 04770535 1 0 -fitly%4:02:00:: 00139508 1 0 -fitment%1:06:00:: 03353281 1 0 -fitness%1:07:00:: 04716864 1 3 -fitness%1:07:01:: 05153795 4 0 -fitness%1:26:00:: 14546432 2 1 -fitness%1:26:02:: 14547036 3 0 -fits_and_starts%1:04:00:: 00555525 1 0 -fitted%3:44:00:: 03149960 1 0 -fitted_out%5:00:00:furnished:00 01097484 2 0 -fitted_out%5:00:00:prepared:00 01844002 1 0 -fitted_sheet%1:06:00:: 03353467 1 0 -fitter%1:18:00:: 10093908 1 0 -fitter%5:00:00:better:02 00231963 1 0 -fitting%1:04:00:: 00795008 4 0 -fitting%1:06:00:: 03353616 2 0 -fitting%1:06:01:: 02730568 3 0 -fitting%1:11:00:: 07369604 1 0 -fitting%5:00:00:just:00 01370141 2 2 -fitting%5:00:00:proper:00 01879667 1 5 -fittingly%4:02:00:: 00139508 1 0 -fittingness%1:07:00:: 04716864 1 0 -fitzgerald%1:18:00:: 10971981 3 0 -fitzgerald%1:18:01:: 10972094 2 0 -fitzgerald%1:18:02:: 10972298 1 0 -five%1:06:00:: 03353783 3 0 -five%1:14:00:: 08079852 2 0 -five%1:23:00:: 13744521 1 4 -five%5:00:00:cardinal:00 02186750 1 103 -five-finger%1:20:00:: 12636885 1 0 -five-fingered_maidenhair_fern%1:20:00:: 13207335 1 0 -five-flowered_gentian%1:20:00:: 12295796 1 0 -five-fold%5:00:00:multiple:00 02219660 1 0 -five-hitter%1:04:00:: 00475661 1 0 -five-hundredth%5:00:00:ordinal:00 02212352 1 0 -five-lobed%5:00:00:multilateral:00 00239594 1 0 -five-membered%5:00:00:membered:00 01503052 1 0 -five-needled%5:00:00:simple:01 02169267 1 0 -five-petaled%5:00:00:petalous:00 01775874 1 0 -five-petalled%5:00:00:petalous:00 01775874 1 0 -five-point_bishop's_cap%1:20:00:: 12801072 1 0 -five-pointed%5:00:00:pointed:00 01810536 1 0 -five-sided%5:00:00:multilateral:00 00238490 1 0 -five-spot%1:06:00:: 03353783 3 0 -five-spot%1:20:00:: 12836508 2 0 -five-spot%1:21:00:: 13395515 1 0 -five-star_admiral%1:18:00:: 10096016 1 0 -five-year-old%5:00:00:young:00 01647906 1 0 -five_dollar_bill%1:21:00:: 13395515 1 0 -five_hundred%1:04:00:: 00492309 2 0 -five_hundred%1:23:00:: 13750712 1 0 -five_hundred%5:00:00:cardinal:00 02198631 1 5 -five_iron%1:06:00:: 03724538 1 0 -five_nations%1:14:00:: 08305277 1 0 -five_spice_powder%1:13:00:: 07813833 1 0 -fivefold%5:00:00:multiple:00 02219660 1 0 -fivepence%1:21:00:: 13391373 1 0 -fiver%1:21:00:: 13395515 1 0 -fives%1:04:00:: 00479734 1 0 -fivesome%1:14:00:: 07987580 2 0 -fivesome%1:23:00:: 13744521 1 0 -fix%1:04:00:: 00266806 3 0 -fix%1:04:01:: 00214148 4 0 -fix%1:04:02:: 00155487 5 0 -fix%1:04:03:: 00323262 2 0 -fix%1:26:00:: 14409489 1 2 -fix%2:29:00:: 00061595 9 1 -fix%2:30:00:: 00486998 8 1 -fix%2:30:01:: 00260648 1 9 -fix%2:30:02:: 00407458 7 2 -fix%2:30:03:: 00406243 12 0 -fix%2:32:03:: 00947077 3 6 -fix%2:33:00:: 01153947 5 3 -fix%2:35:00:: 01340439 2 7 -fix%2:35:01:: 01575675 11 0 -fix%2:36:00:: 01664172 4 5 -fix%2:36:01:: 01647543 6 2 -fix%2:41:04:: 02603299 10 0 -fix-it_shop%1:06:00:: 04075916 1 0 -fix_up%2:32:00:: 01021629 2 2 -fix_up%2:34:00:: 01203369 1 5 -fixate%2:30:00:: 00486703 4 0 -fixate%2:30:01:: 00486998 3 0 -fixate%2:39:00:: 02170861 2 0 -fixate%2:41:00:: 02538365 1 0 -fixation%1:04:00:: 00276342 4 0 -fixation%1:04:01:: 01260182 3 0 -fixation%1:09:00:: 05700401 2 0 -fixation%1:26:00:: 14503354 1 0 -fixative%1:06:00:: 03353951 2 0 -fixative%1:27:00:: 14869177 1 0 -fixed%3:00:00:: 01059400 3 2 -fixed%5:00:00:determinate:01 00740217 1 12 -fixed%5:00:00:nonmoving:00 01564603 2 6 -fixed%5:00:00:unchangeable:00 00347707 4 2 -fixed-combination_drug%1:06:00:: 03354082 1 0 -fixed-cycle_operation%1:22:00:: 13481727 1 0 -fixed-point_notation%1:10:00:: 06813506 1 0 -fixed-point_number%1:23:00:: 13598128 1 0 -fixed-point_part%1:10:00:: 06813115 1 0 -fixed-point_representation_system%1:10:00:: 06813506 1 0 -fixed-width_font%1:10:00:: 06825996 1 0 -fixed_charge%1:21:00:: 13318147 1 0 -fixed_cost%1:21:00:: 13318147 1 0 -fixed_costs%1:21:00:: 13318147 1 0 -fixed_disk%1:06:00:: 03492542 1 0 -fixed_intonation%1:04:00:: 01255125 1 0 -fixed_investment_trust%1:21:00:: 13362734 1 0 -fixed_oil%1:27:00:: 14967478 1 0 -fixed_phagocyte%1:08:00:: 05451099 1 0 -fixed_star%1:17:00:: 09280995 1 0 -fixed_storage%1:06:00:: 04058239 1 0 -fixedly%4:02:00:: 00340715 1 0 -fixedness%1:07:00:: 04777098 2 0 -fixedness%1:07:02:: 04740655 3 0 -fixedness%1:26:00:: 14006490 1 0 -fixer%1:06:00:: 03754014 4 0 -fixer%1:18:00:: 10094046 1 1 -fixer%1:18:01:: 10308732 3 0 -fixer%1:27:00:: 14869327 2 0 -fixer-upper%1:06:00:: 03354207 1 0 -fixing%1:04:00:: 00266806 1 1 -fixing%1:04:01:: 00692506 3 0 -fixing%1:04:02:: 00276342 4 0 -fixing%1:06:00:: 03323703 2 0 -fixing_agent%1:27:00:: 14869327 1 0 -fixings%1:06:00:: 03354350 2 0 -fixings%1:13:00:: 07809096 1 0 -fixity%1:07:00:: 04777098 1 0 -fixity%1:07:01:: 04741807 2 0 -fixture%1:04:00:: 00266806 4 0 -fixture%1:06:00:: 03354613 1 1 -fixture%1:07:00:: 04777098 3 0 -fixture%1:18:00:: 10517405 2 0 -fizgig%1:06:00:: 03354816 2 0 -fizgig%1:06:01:: 04271148 1 0 -fizz%1:13:00:: 07919310 1 0 -fizz%2:30:00:: 00519363 1 0 -fizzing%5:00:00:effervescent:00 02276752 1 0 -fizzle%1:11:00:: 07365024 2 0 -fizzle%1:11:01:: 07384898 1 0 -fizzle%2:42:00:: 02683671 1 1 -fizzle_out%2:42:00:: 02683671 1 0 -fizzy%5:00:00:effervescent:00 02276752 1 0 -fjord%1:17:00:: 09281104 1 0 -fl%1:15:00:: 09071690 1 0 -flab%1:08:00:: 05269401 1 0 -flabbergast%2:31:00:: 00726153 1 0 -flabbergasted%5:00:00:surprised:00 02358277 1 0 -flabbily%4:02:00:: 00340813 1 0 -flabbiness%1:07:01:: 04939046 1 0 -flabby%5:00:00:unfit:01 01019713 1 0 -flaccid%5:00:00:soft:01 01154229 1 0 -flaccid%5:00:00:unfit:01 01019713 2 0 -flaccid_bladder%1:26:00:: 14401240 1 0 -flaccid_paralysis%1:26:00:: 14095273 1 0 -flaccidity%1:07:00:: 04939046 1 0 -flack%1:06:00:: 02715712 3 0 -flack%1:10:00:: 06711159 2 0 -flack%1:18:00:: 10094782 1 0 -flack_catcher%1:18:00:: 10094782 1 0 -flacourtia%1:20:00:: 12378080 1 0 -flacourtia_family%1:20:00:: 12377809 1 0 -flacourtia_indica%1:20:00:: 12378249 1 0 -flacourtiaceae%1:20:00:: 12377809 1 0 -flag%1:05:00:: 02158846 7 0 -flag%1:06:00:: 03354903 1 31 -flag%1:06:01:: 03355339 6 0 -flag%1:06:02:: 03940894 5 0 -flag%1:10:00:: 06875094 4 0 -flag%1:10:01:: 06493158 2 3 -flag%1:20:00:: 12411922 3 1 -flag%2:30:00:: 00511040 2 1 -flag%2:30:01:: 00156485 5 0 -flag%2:32:00:: 01040550 1 1 -flag%2:36:00:: 01670172 4 0 -flag%2:38:01:: 01985524 3 0 -flag-waver%1:18:00:: 09911849 1 1 -flag-waving%5:00:00:patriotic:00 01740358 1 0 -flag_captain%1:18:00:: 10094236 1 0 -flag_day%1:28:00:: 15189838 1 0 -flag_down%2:38:00:: 01860620 1 0 -flag_of_truce%1:06:00:: 04580126 1 1 -flag_officer%1:18:00:: 10094584 1 0 -flag_rank%1:26:00:: 14431637 1 0 -flag_smut%1:26:00:: 14284193 1 0 -flag_smut_fungus%1:20:00:: 13068917 1 0 -flag_stop%1:06:00:: 04579795 1 0 -flag_waving%1:10:00:: 07187486 1 0 -flagellant%1:18:00:: 10094320 2 0 -flagellant%1:18:01:: 10094444 1 0 -flagellata%1:05:00:: 01416354 1 0 -flagellate%1:05:00:: 01416585 1 0 -flagellate%2:35:00:: 01398443 1 0 -flagellate%3:01:00:: 03015113 1 0 -flagellate_protozoan%1:05:00:: 01416585 1 0 -flagellated%3:01:00:: 03015113 1 0 -flagellated_cell%1:05:00:: 01907149 1 0 -flagellated_protozoan%1:05:00:: 01416585 1 1 -flagellation%1:04:00:: 01163047 2 0 -flagellation%1:04:01:: 01163316 1 0 -flagellum%1:05:00:: 01458302 2 0 -flagellum%1:06:00:: 04149968 1 0 -flageolet%1:06:00:: 03355468 2 0 -flageolet%1:13:00:: 07727741 1 0 -flagfish%1:05:00:: 01447946 1 0 -flagging%1:06:00:: 03355641 2 0 -flagging%1:14:00:: 07956112 1 0 -flagging%5:00:00:tired:00 02433365 1 0 -flagitious%5:00:00:evil:00 01131454 2 0 -flagitious%5:00:00:wicked:00 02514380 1 0 -flagon%1:06:00:: 03355768 1 0 -flagpole%1:06:00:: 03355925 2 0 -flagpole%1:06:01:: 04053767 1 0 -flagrant%5:00:00:conspicuous:00 00580039 1 0 -flagrantly%4:02:00:: 00340933 1 0 -flagroot%1:20:00:: 11780930 1 0 -flagship%1:06:00:: 03356038 2 0 -flagship%1:06:01:: 03356158 1 0 -flagstaff%1:06:00:: 03355925 2 0 -flagstaff%1:15:00:: 09057930 1 0 -flagstone%1:06:00:: 03355339 1 0 -flagyl%1:06:00:: 03757428 1 0 -flail%1:06:00:: 03356279 1 1 -flail%2:35:00:: 01416193 1 1 -flail%2:38:02:: 02093920 2 0 -flair%1:07:00:: 04812871 2 1 -flair%1:09:00:: 05624461 1 2 -flair%1:25:00:: 13862644 3 0 -flak%1:06:00:: 02715712 3 0 -flak%1:10:00:: 06711159 2 0 -flak%1:18:00:: 10094782 1 0 -flak_catcher%1:18:00:: 10094782 1 0 -flake%1:17:00:: 09222051 3 0 -flake%1:18:00:: 10042845 2 0 -flake%1:19:00:: 11509066 1 0 -flake%2:35:00:: 01259951 3 0 -flake%2:35:01:: 01336440 2 0 -flake%2:35:02:: 01585276 1 1 -flake_off%2:35:00:: 01259951 1 0 -flake_out%2:29:00:: 00017282 1 0 -flakey%3:01:00:: 02729182 1 0 -flakey%5:00:00:tender:01 02447104 2 0 -flakey%5:00:00:unconventional:01 00608791 3 0 -flakiness%1:07:00:: 04939872 2 0 -flakiness%1:26:00:: 14397889 1 0 -flaky%3:01:00:: 02729182 1 0 -flaky%5:00:00:tender:01 02447104 2 0 -flaky%5:00:00:unconventional:01 00608791 3 0 -flambe%2:36:00:: 01664981 1 0 -flambeau%1:06:00:: 03356446 1 0 -flamboyance%1:07:00:: 04699936 1 0 -flamboyant%1:20:00:: 12494794 1 0 -flamboyant%5:00:00:fancy:00 01794771 2 0 -flamboyant%5:00:00:ostentatious:00 01848701 1 0 -flamboyant_tree%1:20:00:: 12490054 1 0 -flamboyantly%4:02:00:: 00341051 1 1 -flame%1:22:00:: 13480848 1 15 -flame%2:32:00:: 00824593 3 0 -flame%2:43:00:: 02759443 2 0 -flame%2:43:01:: 02762981 1 0 -flame-colored%5:00:00:colored:00 00397633 1 0 -flame-coloured%5:00:00:colored:00 00397633 1 0 -flame-flower%1:20:01:: 11862835 2 0 -flame-flower%1:20:02:: 12437513 1 0 -flame-orange%5:00:00:chromatic:00 00381861 1 0 -flame-out%1:11:00:: 07422629 1 0 -flame-out%1:11:01:: 07318299 2 0 -flame-retardant%5:00:00:noncombustible:00 00474440 1 0 -flame_bush%1:20:00:: 12572188 1 0 -flame_cell%1:05:00:: 01458509 1 0 -flame_durrajong%1:20:00:: 12196336 1 0 -flame_fish%1:05:00:: 02572484 1 0 -flame_flower%1:20:01:: 11862835 2 0 -flame_flower%1:20:02:: 12437513 1 0 -flame_nettle%1:20:00:: 12844939 1 0 -flame_pea%1:20:00:: 12515393 1 0 -flame_stitch%1:06:00:: 02792822 1 0 -flame_tokay%1:13:00:: 07760673 1 0 -flame_tree%1:20:01:: 12196336 4 0 -flame_tree%1:20:02:: 12196527 3 0 -flame_tree%1:20:03:: 12738599 1 0 -flame_tree%1:20:04:: 12494794 2 0 -flame_tree%1:20:05:: 11757851 5 0 -flame_up%2:43:00:: 02762806 1 2 -flamefish%1:05:00:: 02572484 1 0 -flameflower%1:20:01:: 11862835 2 0 -flameflower%1:20:02:: 12437513 1 0 -flamen%1:18:00:: 10094954 1 0 -flamenco%1:04:00:: 00533036 2 0 -flamenco%1:10:00:: 07055401 1 0 -flameproof%5:00:00:noncombustible:00 00474440 1 0 -flamethrower%1:06:00:: 03356559 1 0 -flaming%1:22:00:: 13480848 1 0 -flaming%5:00:00:hot:02 01256735 2 0 -flaming%5:00:00:unmitigated:00 01520655 1 0 -flaming_poppy%1:20:00:: 11908549 1 0 -flamingo%1:05:00:: 02007558 1 0 -flamingo_flower%1:20:00:: 11784126 1 0 -flamingo_plant%1:20:00:: 11784126 1 0 -flaminian_way%1:06:00:: 03356670 1 0 -flaminius%1:18:00:: 10972495 1 0 -flammability%1:07:00:: 04712568 1 0 -flammable%5:00:00:combustible:00 00473658 1 0 -flammulina%1:20:00:: 13022078 1 0 -flammulina_velutipes%1:20:00:: 13022210 1 0 -flan%1:13:00:: 07611267 1 0 -flanders%1:15:00:: 08849549 1 0 -flanders_poppy%1:20:00:: 11902200 1 0 -flange%1:06:00:: 03356858 1 0 -flank%1:05:00:: 02464223 4 0 -flank%1:13:00:: 07657757 3 0 -flank%1:14:00:: 08482113 1 3 -flank%1:25:00:: 13897377 2 0 -flank%2:42:00:: 02694106 1 5 -flank_steak%1:13:00:: 07658461 1 0 -flanker%1:18:00:: 10095061 2 0 -flanker%1:18:01:: 10095265 1 0 -flanker_back%1:18:00:: 10095265 1 0 -flannel%1:06:00:: 03356982 1 2 -flannel%1:06:01:: 04554523 2 0 -flannel%1:06:03:: 03357081 3 0 -flannel-cake%1:13:00:: 07640203 1 0 -flannel_bush%1:20:00:: 12198793 1 0 -flannel_cake%1:13:00:: 07640203 1 0 -flannel_leaf%1:20:00:: 12888906 1 0 -flannel_mullein%1:20:00:: 12889713 1 0 -flannelbush%1:20:00:: 12198793 1 0 -flannelette%1:06:00:: 03357267 1 0 -flannery_o'connor%1:18:00:: 11211987 1 0 -flap%1:06:00:: 03357376 1 3 -flap%1:06:01:: 03357716 5 0 -flap%1:08:00:: 05389762 4 0 -flap%1:11:01:: 07439284 3 0 -flap%1:26:00:: 14403772 2 0 -flap%2:32:00:: 01055558 6 0 -flap%2:37:00:: 01819911 5 0 -flap%2:38:00:: 01880888 2 2 -flap%2:38:01:: 01901783 1 4 -flap%2:38:02:: 02093390 4 0 -flap%2:38:03:: 02093610 3 1 -flap_down%2:35:00:: 01242689 1 0 -flapcake%1:13:00:: 07640203 1 0 -flapjack%1:13:00:: 07640203 1 0 -flapper%1:18:00:: 10095420 1 1 -flapping%1:11:00:: 07439284 1 0 -flaps%1:06:00:: 03357716 1 0 -flare%1:04:00:: 00150097 11 0 -flare%1:04:01:: 00561376 10 0 -flare%1:06:00:: 03357893 9 0 -flare%1:10:00:: 06874930 3 1 -flare%1:10:01:: 07014997 8 0 -flare%1:19:00:: 11510223 6 0 -flare%1:19:01:: 11454310 7 0 -flare%1:22:00:: 13481883 2 1 -flare%1:25:00:: 13862644 1 1 -flare%1:26:00:: 14227357 4 0 -flare%1:26:01:: 14081789 5 0 -flare%2:30:00:: 00304252 2 1 -flare%2:30:01:: 00307785 4 0 -flare%2:43:00:: 02762806 1 1 -flare%2:43:01:: 02762981 3 0 -flare-up%1:11:01:: 07434942 1 0 -flare_out%2:30:00:: 00304252 1 0 -flare_pass%1:04:00:: 00561376 1 0 -flare_path%1:06:00:: 03358046 1 0 -flare_star%1:17:00:: 09281252 1 0 -flare_up%2:30:00:: 00307785 2 1 -flare_up%2:43:00:: 02764245 1 1 -flaring%5:00:00:moving:02 01563147 1 0 -flash%1:06:00:: 03358172 10 0 -flash%1:06:01:: 03358380 9 0 -flash%1:07:00:: 04953186 2 6 -flash%1:09:00:: 05808442 4 1 -flash%1:10:00:: 06682494 8 0 -flash%1:10:01:: 06874930 7 0 -flash%1:10:02:: 06889330 6 0 -flash%1:11:00:: 07412092 1 7 -flash%1:11:01:: 07287088 3 1 -flash%1:28:00:: 15247110 5 0 -flash%2:30:03:: 00424691 2 6 -flash%2:30:04:: 00424869 8 0 -flash%2:32:00:: 00929509 4 3 -flash%2:35:00:: 01335461 7 0 -flash%2:38:00:: 02061495 5 2 -flash%2:39:00:: 02159890 1 9 -flash%2:39:01:: 02141973 3 3 -flash%2:39:02:: 02138611 6 1 -flash%5:00:00:tasteless:02 02393791 1 0 -flash-forward%1:10:00:: 06401787 1 0 -flash-freeze%2:30:00:: 00375690 1 0 -flash-frozen%5:00:00:preserved:02 01072586 1 0 -flash_back%2:38:00:: 02004701 1 0 -flash_bulb%1:06:00:: 03358172 1 0 -flash_butt_welding%1:04:00:: 00150379 1 0 -flash_camera%1:06:00:: 03358726 1 0 -flash_card%1:10:00:: 06793959 1 0 -flash_flood%1:19:00:: 11455092 1 1 -flash_in_the_pan%1:18:00:: 10095550 1 0 -flash_lamp%1:06:00:: 03358172 1 0 -flash_memory%1:06:00:: 03359436 1 0 -flash_point%1:07:00:: 05013809 2 0 -flash_point%1:26:00:: 14033802 1 0 -flash_welding%1:04:00:: 00150379 1 0 -flashback%1:10:00:: 06401526 1 1 -flashback%1:11:00:: 07343713 2 0 -flashboard%1:06:00:: 03358593 1 0 -flashboarding%1:06:00:: 03358593 1 0 -flashbulb%1:06:00:: 03358172 1 0 -flashcard%1:10:00:: 06793959 1 0 -flasher%1:06:00:: 03358841 2 0 -flasher%1:06:01:: 02852173 3 0 -flasher%1:18:00:: 10070942 1 0 -flashflood%1:19:00:: 11455092 1 0 -flashgun%1:06:00:: 03358172 1 0 -flashily%4:02:00:: 00341051 2 0 -flashily%4:02:01:: 00400722 1 0 -flashiness%1:07:00:: 04818700 1 0 -flashing%1:06:00:: 03359008 2 0 -flashing%1:11:00:: 07287088 1 1 -flashlight%1:06:00:: 03359137 1 3 -flashlight_battery%1:06:00:: 03359285 1 1 -flashlight_fish%1:05:01:: 01451863 2 0 -flashlight_fish%1:05:02:: 01452345 1 0 -flashover%1:19:00:: 11454470 1 0 -flashpoint%1:07:00:: 05013809 2 0 -flashpoint%1:26:00:: 14033802 1 0 -flashy%5:00:00:colorful:03 00407420 2 1 -flashy%5:00:00:tasteless:02 02393791 1 1 -flask%1:06:00:: 03359566 1 4 -flask%1:23:00:: 13767146 2 0 -flaskful%1:23:00:: 13767146 1 0 -flat%1:06:00:: 02726305 7 0 -flat%1:06:01:: 03359755 6 0 -flat%1:06:02:: 03359950 5 0 -flat%1:06:03:: 03360731 4 0 -flat%1:06:04:: 03360038 2 1 -flat%1:10:00:: 06866919 3 0 -flat%1:17:00:: 09281411 1 2 -flat%3:00:00:: 01578152 6 0 -flat%3:00:03:: 01021794 5 1 -flat%4:02:00:: 00058128 2 0 -flat%4:02:05:: 00341227 1 0 -flat%5:00:00:dull:02 00283972 14 0 -flat%5:00:00:even:01 00910101 1 11 -flat%5:00:00:horizontal:00 01233020 12 0 -flat%5:00:00:inactive:02 00038119 15 0 -flat%5:00:00:multidimensional:00 00660551 13 0 -flat%5:00:00:noneffervescent:00 02277078 10 0 -flat%5:00:00:planar:00 00659259 2 5 -flat%5:00:00:tasteless:01 02399595 8 0 -flat%5:00:00:thin:01 02413037 7 0 -flat%5:00:00:unerect:00 01239040 4 2 -flat%5:00:00:unmodulated:00 01541828 11 0 -flat%5:00:00:unqualified:02 01913931 3 2 -flat%5:00:00:unstimulating:00 02307563 9 0 -flat-bellied%3:00:00:: 00222873 1 0 -flat-bottom%5:00:00:bottomed:00 02442765 1 0 -flat-bottomed%5:00:00:bottomed:00 02442765 1 4 -flat-coated_retriever%1:05:00:: 02099267 1 0 -flat-footed%5:00:00:footed:00 01031405 1 1 -flat-footed%5:00:00:splayfooted:00 01032845 3 0 -flat-footed%5:00:00:unready:00 01932481 2 0 -flat-footed%5:00:01:direct:02 00765289 4 0 -flat-growing%5:00:00:low:01 01207007 1 0 -flat-hat%2:38:00:: 01955703 1 0 -flat-leaf_parsley%1:20:00:: 12942572 1 0 -flat-top%5:00:00:topped:00 02441786 1 0 -flat-topped%5:00:00:topped:00 02441786 1 0 -flat-topped_white_aster%1:20:00:: 11936199 1 0 -flat_arch%1:06:00:: 03360133 1 0 -flat_bench%1:06:00:: 03360622 1 1 -flat_bone%1:13:00:: 07659308 1 0 -flat_cap%1:06:00:: 03049924 1 0 -flat_coat%1:06:00:: 03360845 1 0 -flat_file%1:06:00:: 03361109 1 0 -flat_knot%1:06:00:: 04067353 1 0 -flat_out%4:02:00:: 00279523 1 0 -flat_out%4:02:01:: 00086255 2 0 -flat_panel_display%1:06:00:: 03361380 1 0 -flat_pea%1:20:01:: 12541805 2 0 -flat_pea%1:20:02:: 12561897 1 0 -flat_solid%1:06:00:: 04188643 1 0 -flat_tip_screwdriver%1:06:00:: 03361683 1 0 -flat_tire%1:06:00:: 03359950 1 0 -flat_wash%1:06:00:: 03362119 1 0 -flatbed%1:06:00:: 03360300 2 0 -flatbed%1:06:01:: 03360731 1 0 -flatbed_press%1:06:00:: 03360431 1 0 -flatboat%1:06:00:: 02792552 1 0 -flatbottom%5:00:00:even:01 00910404 1 0 -flatbottomed%5:00:00:even:01 00910404 1 0 -flatbread%1:13:00:: 07682624 1 0 -flatbrod%1:13:00:: 07683265 1 0 -flatcar%1:06:00:: 03360731 1 0 -flatfish%1:05:00:: 02657368 2 0 -flatfish%1:13:00:: 07790400 1 0 -flatfoot%1:08:00:: 05576421 2 0 -flatfoot%1:18:00:: 10095664 1 0 -flathead%1:05:02:: 02649546 1 0 -flathead%1:05:03:: 02620167 2 0 -flathead_catfish%1:05:00:: 02520147 1 0 -flatiron%1:06:00:: 03361194 1 0 -flatlet%1:06:00:: 03361297 1 0 -flatly%4:02:00:: 00087188 1 4 -flatmate%1:18:00:: 10095769 1 0 -flatness%1:07:00:: 05063349 1 9 -flatness%1:07:01:: 04635953 5 0 -flatness%1:07:02:: 04956110 4 0 -flatness%1:09:00:: 05717953 3 0 -flatness%1:10:00:: 07069747 2 0 -flats%1:06:00:: 03361550 1 1 -flatten%2:30:00:: 00463469 2 1 -flatten%2:30:01:: 00463778 1 6 -flatten%2:30:03:: 00393534 3 0 -flatten_out%2:30:00:: 00463469 1 0 -flattened%5:00:00:planar:00 00659530 1 1 -flatter%2:32:00:: 00880227 1 7 -flatterer%1:18:00:: 10095869 1 0 -flattering%3:00:00:: 00907661 1 0 -flattery%1:10:00:: 06695579 1 2 -flattop%1:06:00:: 02687172 2 0 -flattop%1:08:00:: 05260821 1 0 -flatulence%1:10:00:: 07090573 2 0 -flatulence%1:26:00:: 14035695 1 0 -flatulency%1:26:00:: 14035695 1 0 -flatulent%5:00:00:indigestible:00 01182974 1 0 -flatulent%5:00:00:unhealthy:00 01175741 2 0 -flatus%1:04:00:: 00839597 1 2 -flatus-relieving%5:00:00:healthful:00 01165665 1 0 -flatware%1:06:00:: 03361837 2 0 -flatware%1:06:01:: 03361945 1 0 -flatwork%1:06:00:: 03362119 1 0 -flatworm%1:05:00:: 01924916 1 0 -flaubert%1:18:00:: 10972697 1 0 -flaunt%1:10:00:: 06890846 1 0 -flaunt%2:39:00:: 02141973 1 3 -flaunty%5:00:00:ostentatious:00 01848611 1 0 -flautist%1:18:00:: 10098245 1 2 -flavian_dynasty%1:14:00:: 08154548 1 0 -flavin%1:27:00:: 14870924 1 0 -flavius_claudius_julianus%1:18:00:: 11094312 1 0 -flavius_josephus%1:18:00:: 11092292 1 0 -flavius_theodosius%1:18:00:: 11338172 1 0 -flavius_valerius_constantinus%1:18:00:: 10907962 1 0 -flaviviridae%1:05:00:: 01332653 1 0 -flavivirus%1:05:00:: 01332795 1 0 -flavone%1:27:00:: 14869513 1 0 -flavonoid%1:27:00:: 14869658 1 0 -flavor%1:09:00:: 05715864 2 3 -flavor%1:09:01:: 05844282 3 0 -flavor%1:26:00:: 14526182 1 3 -flavor%2:39:00:: 02191766 1 0 -flavorer%1:13:00:: 07809368 1 0 -flavorful%5:00:00:tasty:00 02396911 1 0 -flavoring%1:13:00:: 07809368 1 0 -flavorless%5:00:00:tasteless:01 02399595 1 0 -flavorlessness%1:07:00:: 04997032 1 0 -flavorous%5:00:00:tasty:00 02396911 1 0 -flavorsome%5:00:00:tasty:00 02396911 1 0 -flavorsomeness%1:07:00:: 04995940 1 0 -flavour%1:09:00:: 05715864 3 0 -flavour%1:09:01:: 05844282 2 0 -flavour%1:26:00:: 14526182 1 0 -flavour%2:39:00:: 02191766 1 0 -flavourer%1:13:00:: 07809368 1 0 -flavourful%5:00:00:tasty:00 02396911 1 0 -flavouring%1:13:00:: 07809368 1 0 -flavourless%5:00:00:tasteless:01 02399595 1 0 -flavourlessness%1:07:00:: 04997032 1 0 -flavourous%5:00:00:tasty:00 02396911 1 0 -flavoursome%5:00:00:tasty:00 02396911 1 0 -flavoursomeness%1:07:00:: 04995940 1 0 -flaw%1:26:00:: 14464203 1 2 -flaw%1:26:01:: 14463826 2 0 -flaw%1:26:02:: 14463170 3 0 -flaw%2:30:00:: 00263044 1 0 -flawed%5:00:00:imperfect:00 01752553 1 0 -flawless%5:00:00:perfect:00 01751080 1 2 -flawlessly%4:02:00:: 00230996 1 0 -flawlessness%1:26:00:: 14459422 1 0 -flax%1:20:00:: 12486574 2 0 -flax%1:27:00:: 14869829 1 0 -flax_family%1:20:00:: 12486254 1 0 -flax_rust%1:20:00:: 13064111 1 0 -flax_rust_fungus%1:20:00:: 13064111 1 0 -flaxedil%1:27:00:: 14859622 1 0 -flaxen%5:00:00:blond:00 00244199 1 0 -flaxseed%1:27:00:: 15086247 1 0 -flaxseed_oil%1:27:00:: 15086352 1 0 -flay%2:35:00:: 01274657 1 0 -flea%1:05:00:: 02186153 1 1 -flea-bitten%5:00:00:worn:00 02581530 1 0 -flea_beetle%1:05:00:: 02169705 1 0 -flea_bite%1:07:00:: 04711919 2 0 -flea_bite%1:26:00:: 14287823 1 0 -flea_market%1:15:00:: 08571898 1 1 -fleabag%1:06:00:: 03362223 1 0 -fleabane%1:20:01:: 12005656 1 0 -fleabane%1:20:02:: 11965627 2 0 -fleabane%1:20:03:: 11956348 3 0 -fleapit%1:06:00:: 03362293 1 0 -fleawort%1:20:00:: 12599874 1 0 -flecainide%1:06:00:: 03362393 1 0 -fleck%1:07:00:: 04682462 2 0 -fleck%1:17:00:: 09222051 1 1 -fleck%2:35:00:: 01531998 1 0 -flecked%5:00:00:patterned:00 01788445 1 1 -flection%1:11:00:: 07366971 2 0 -flection%1:26:00:: 14035909 1 0 -fledge%2:29:00:: 00094312 3 0 -fledge%2:36:00:: 01669792 2 0 -fledge%2:41:00:: 02540151 1 0 -fledged%3:00:00:: 01095914 1 0 -fledged%5:00:00:feathered:00 00998381 2 0 -fledgeless%5:00:00:unfeathered:00 00999671 1 0 -fledgeling%1:05:00:: 01504179 2 0 -fledgeling%1:18:00:: 10355449 1 0 -fledgeling%5:00:00:fledged:00 01096123 1 0 -fledgling%1:05:00:: 01504179 2 0 -fledgling%1:18:00:: 10355449 1 1 -fledgling%5:00:00:fledged:00 01096123 1 1 -fledgling%5:00:00:inexperienced:00 00936998 2 1 -flee%2:38:00:: 02075462 1 37 -fleece%1:05:00:: 01899593 4 0 -fleece%1:06:00:: 03362639 3 0 -fleece%1:27:00:: 15104752 1 0 -fleece%1:27:01:: 14763508 2 0 -fleece%2:35:00:: 01560369 2 0 -fleece%2:40:00:: 02319050 1 0 -fleeceable%5:00:00:naive:00 02272485 1 0 -fleecy%5:00:00:soft:01 01153141 1 0 -fleer%1:10:00:: 06716117 2 0 -fleer%1:18:00:: 10115082 1 0 -fleer%2:29:00:: 00029518 1 0 -fleet%1:14:00:: 08292756 4 0 -fleet%1:14:01:: 08293336 3 0 -fleet%1:14:02:: 08293490 2 0 -fleet%1:14:03:: 08293831 1 1 -fleet%2:30:00:: 00421691 2 0 -fleet%2:38:01:: 01899891 1 0 -fleet%5:00:00:fast:01 00978199 1 2 -fleet_admiral%1:18:00:: 10096016 1 0 -fleet_ballistic_missile_submarine%1:06:00:: 03362771 1 0 -fleet_street%1:10:00:: 06266633 2 0 -fleet_street%1:15:00:: 08572020 1 0 -fleeting%5:00:00:short:02 01443097 1 1 -fleetingness%1:07:00:: 05055689 1 0 -fleetly%4:02:00:: 00053274 1 0 -fleetness%1:07:00:: 05059017 1 0 -fleming%1:18:00:: 09706132 3 0 -fleming%1:18:01:: 10972825 2 0 -fleming%1:18:02:: 10972985 1 0 -flemish%1:10:00:: 06952705 2 0 -flemish%1:14:00:: 08483788 1 0 -flemish%3:01:00:: 03066448 1 0 -flemish-speaking%5:00:00:communicative:00 00497442 1 0 -flemish_dialect%1:10:00:: 06952705 1 0 -flense%2:40:00:: 02365824 1 0 -flesh%1:08:01:: 05217168 2 8 -flesh%1:08:02:: 05268112 1 12 -flesh%1:20:00:: 13096035 3 0 -flesh%2:40:00:: 02365692 1 0 -flesh-colored%5:00:00:colored:00 00397757 1 0 -flesh-coloured%5:00:00:colored:00 00397757 1 0 -flesh-eating%5:00:00:carnivorous:00 00313701 1 0 -flesh_fly%1:05:00:: 02192513 1 0 -flesh_out%2:29:00:: 00046382 3 0 -flesh_out%2:32:00:: 00955601 2 0 -flesh_out%2:34:00:: 01194938 1 0 -flesh_wound%1:11:00:: 07340592 1 0 -fleshed_out%5:00:00:complete:00 00522680 1 0 -fleshiness%1:07:00:: 05000342 1 0 -fleshly%5:00:00:physical:00 01778572 1 0 -fleshy%3:01:00:: 02729339 2 0 -fleshy%5:00:00:fat:01 00987769 1 1 -fletc%1:14:00:: 08137028 1 0 -fletcher%1:18:00:: 10973164 1 0 -fleur-de-lis%1:06:00:: 03362890 2 0 -fleur-de-lis%1:20:00:: 12411922 1 0 -fleur-de-lys%1:06:00:: 03362890 1 0 -flex%1:04:00:: 00405628 1 0 -flex%2:35:02:: 01280014 5 0 -flex%2:35:03:: 01280488 4 0 -flex%2:38:00:: 02035919 3 0 -flex%2:38:01:: 02036977 1 1 -flex%2:39:00:: 02142280 2 0 -flexeril%1:06:00:: 03155334 1 0 -flexibility%1:07:01:: 04659287 2 2 -flexibility%1:07:02:: 05022457 1 7 -flexibility%1:07:03:: 04905188 3 0 -flexible%3:00:01:: 01022064 2 2 -flexible%3:00:02:: 01024073 1 2 -flexible%3:00:04:: 01026262 5 0 -flexible%5:00:00:adaptable:00 01028163 3 1 -flexible%5:00:00:elastic:00 00844719 4 1 -flexible_joint%1:06:00:: 03521076 1 0 -flexible_sigmoidoscope%1:06:00:: 04217387 1 0 -flexible_sigmoidoscopy%1:04:00:: 00643208 1 0 -flexibleness%1:07:00:: 05022457 1 0 -flexibleness%1:07:01:: 04659287 2 0 -flexibly%4:02:00:: 00341305 1 0 -flexile%3:00:00:: 01022064 1 0 -flexion%1:04:00:: 00405360 3 0 -flexion%1:11:00:: 07366971 2 0 -flexion%1:26:00:: 14035909 1 0 -flexor%1:08:00:: 05296503 1 0 -flexor_muscle%1:08:00:: 05296503 1 0 -flexuous%5:00:00:curved:00 02316253 1 0 -flexure%1:04:00:: 00405360 3 0 -flexure%1:25:00:: 13907415 2 0 -flexure%1:26:00:: 14035909 1 0 -flibbertigibbet%1:18:00:: 10096126 1 0 -flick%1:10:00:: 06613686 3 0 -flick%1:10:01:: 06799688 2 0 -flick%1:11:00:: 07338358 1 2 -flick%2:30:00:: 00190586 9 0 -flick%2:35:01:: 01242071 8 0 -flick%2:35:02:: 01242208 7 0 -flick%2:35:03:: 01591158 4 1 -flick%2:35:04:: 01591357 6 0 -flick%2:38:00:: 01893465 3 1 -flick%2:39:00:: 02160177 1 1 -flick%2:39:10:: 02153023 2 1 -flick%2:43:00:: 02763609 5 0 -flick-knife%1:06:00:: 04373089 1 0 -flick_knife%1:06:00:: 04373089 1 0 -flicker%1:04:00:: 00348571 3 0 -flicker%1:05:00:: 01839598 2 0 -flicker%1:11:00:: 07412310 1 0 -flicker%2:38:00:: 01878719 1 3 -flicker%2:39:00:: 02160177 3 0 -flicker%2:43:00:: 02763609 2 0 -flickering%5:00:00:unsteady:00 02304119 1 0 -flickertail%1:05:00:: 02358712 1 0 -flier%1:10:00:: 07250339 3 0 -flier%1:18:00:: 10096217 1 0 -flier%1:18:01:: 09826204 2 0 -flies%1:15:00:: 08572162 1 0 -flight%1:04:00:: 00302394 2 6 -flight%1:04:01:: 00058743 4 5 -flight%1:04:02:: 00301192 9 0 -flight%1:06:00:: 03363059 3 5 -flight%1:09:00:: 05625210 6 1 -flight%1:14:00:: 08220440 5 3 -flight%1:14:01:: 08220534 1 6 -flight%1:14:02:: 08220620 8 0 -flight%1:19:00:: 11481334 7 0 -flight%2:36:00:: 01669792 3 0 -flight%2:38:00:: 01940868 2 0 -flight%2:41:00:: 02484771 1 0 -flight_attendant%1:18:00:: 10655594 1 0 -flight_control%1:04:00:: 00804535 1 0 -flight_deck%1:06:00:: 03363216 1 0 -flight_engineer%1:18:00:: 10096375 1 0 -flight_feather%1:05:00:: 02468864 1 0 -flight_indicator%1:06:00:: 02745611 1 0 -flight_line%1:15:00:: 08594543 1 0 -flight_maneuver%1:04:00:: 00170844 1 0 -flight_of_stairs%1:06:00:: 03363059 1 1 -flight_of_steps%1:06:00:: 03363059 1 0 -flight_path%1:15:00:: 08492546 2 0 -flight_path%1:15:01:: 08493705 1 0 -flight_simulator%1:06:00:: 03363363 1 0 -flight_strip%1:06:00:: 02693070 1 0 -flight_surgeon%1:18:00:: 10096508 1 0 -flighted%5:00:00:feathered:00 00998479 1 0 -flightiness%1:07:00:: 04671841 1 0 -flightless%5:00:00:wingless:00 02568480 1 0 -flightless_bird%1:05:01:: 01517565 1 0 -flighty%5:00:00:excitable:00 00919155 2 0 -flighty%5:00:00:frivolous:00 02121123 1 0 -flim-flam%2:41:00:: 02575723 1 0 -flimflam%1:04:00:: 00779248 1 0 -flimsily%4:02:00:: 00341602 1 0 -flimsiness%1:07:00:: 05041320 1 0 -flimsy%1:27:00:: 14969254 1 0 -flimsy%3:00:02:: 00615457 2 0 -flimsy%5:00:01:weak:00 02325484 1 2 -flimsy%5:00:03:insignificant:00 02164913 3 0 -flinch%1:04:00:: 00865471 1 0 -flinch%2:38:00:: 02061069 1 3 -flinders%1:14:00:: 07956250 2 0 -flinders%1:18:00:: 10973339 1 0 -flindersia%1:20:00:: 12698283 1 0 -flindersia_australis%1:20:00:: 12698598 1 0 -flindersia_schottiana%1:20:00:: 12698774 1 0 -flindosa%1:20:00:: 12698598 1 0 -flindosy%1:20:00:: 12698598 1 0 -fling%1:04:00:: 00510475 2 0 -fling%1:04:01:: 00787061 1 0 -fling%1:04:02:: 00105164 3 0 -fling%2:35:00:: 01512465 1 13 -fling%2:38:00:: 02094428 2 1 -fling%2:40:01:: 02269003 3 0 -fling%2:40:02:: 02222318 4 0 -fling_off%2:36:00:: 01700655 1 0 -flint%1:15:00:: 09100690 3 0 -flint%1:17:00:: 09281545 2 0 -flint%1:27:00:: 14871078 1 1 -flint%5:00:00:hardhearted:00 01158180 1 0 -flint_corn%1:20:00:: 12145148 1 0 -flint_glass%1:27:00:: 14880425 1 0 -flint_maize%1:20:00:: 12145148 1 0 -flint_river%1:17:00:: 09281545 1 0 -flinthead%1:05:00:: 02004855 1 0 -flintlock%1:06:00:: 03363549 2 0 -flintlock%1:06:01:: 03363749 1 0 -flintstone%1:27:00:: 14871268 1 0 -flinty%3:01:00:: 02729457 1 0 -flinty%5:00:00:hardhearted:00 01158180 2 0 -flip%1:04:00:: 00105820 6 0 -flip%1:04:01:: 01246086 4 0 -flip%1:04:02:: 00443803 5 0 -flip%1:04:03:: 00439484 1 1 -flip%1:04:04:: 01246206 3 0 -flip%1:13:00:: 07914887 2 0 -flip%2:30:00:: 00121678 11 0 -flip%2:30:13:: 00584810 10 0 -flip%2:31:00:: 00717921 9 0 -flip%2:35:00:: 01512625 6 0 -flip%2:35:01:: 01510173 2 1 -flip%2:35:03:: 01222958 8 0 -flip%2:35:05:: 01241614 7 0 -flip%2:38:00:: 01893079 1 3 -flip%2:38:01:: 01893465 5 0 -flip%2:38:02:: 01893601 4 0 -flip%2:39:10:: 02153023 3 0 -flip%5:00:00:disrespectful:00 01996051 1 0 -flip-flap%4:02:00:: 00341724 1 0 -flip-flop%1:04:00:: 00439749 4 0 -flip-flop%1:06:00:: 03363887 3 0 -flip-flop%1:06:01:: 03364008 2 0 -flip-flop%1:09:00:: 05789808 1 0 -flip-flop%2:30:00:: 00121678 1 0 -flip_chart%1:10:00:: 07002146 1 0 -flip_one's_lid%2:37:00:: 01795428 1 0 -flip_one's_wig%2:37:00:: 01795428 1 0 -flip_out%2:30:00:: 00584810 2 0 -flip_out%2:31:00:: 00717921 1 0 -flip_over%2:35:00:: 01222958 1 0 -flip_side%1:24:00:: 13855828 1 0 -flippancy%1:07:00:: 04648866 1 0 -flippant%5:00:00:frivolous:00 02121290 1 0 -flippantly%4:02:00:: 00341835 1 0 -flipper%1:05:00:: 02465084 2 0 -flipper%1:06:00:: 03364156 1 0 -flipper-like%5:00:00:limbed:00 01414566 1 0 -flirt%1:04:00:: 00512522 2 0 -flirt%1:18:00:: 09965134 1 0 -flirt%2:32:00:: 01037910 1 1 -flirt%2:41:00:: 02437465 2 0 -flirt_with%2:31:00:: 00711715 1 1 -flirtation%1:04:00:: 00512522 1 0 -flirtatious%5:00:00:sexy:00 02131958 1 0 -flirtatiously%4:02:00:: 00303034 1 0 -flirting%1:04:00:: 00512522 1 0 -flit%1:04:00:: 00334356 1 0 -flit%1:04:01:: 00168911 2 0 -flit%2:38:00:: 01899891 1 1 -flitch%1:13:01:: 07669211 2 0 -flitch%1:13:02:: 07791937 1 0 -flitter%2:38:00:: 01878719 1 0 -flittering_scotoma%1:26:00:: 14556879 1 0 -flnc%1:14:00:: 08036005 1 0 -flo_ziegfeld%1:18:00:: 11406700 1 0 -float%1:05:00:: 02467581 7 0 -float%1:06:00:: 03364340 6 0 -float%1:06:01:: 03364599 5 0 -float%1:06:02:: 03364775 4 0 -float%1:13:00:: 07923034 3 0 -float%1:21:00:: 13336368 2 0 -float%1:28:00:: 15294085 1 0 -float%2:30:03:: 00566181 9 0 -float%2:31:00:: 00696042 8 0 -float%2:35:00:: 01361998 7 0 -float%2:35:04:: 01514887 6 0 -float%2:38:00:: 01902783 1 14 -float%2:38:01:: 01904293 2 4 -float%2:38:02:: 01874568 3 3 -float%2:38:04:: 01838651 5 0 -float%2:41:03:: 02532079 4 0 -floatation%1:04:01:: 01100147 2 0 -floatation%1:19:00:: 11527967 1 0 -floater%1:10:00:: 06526124 8 0 -floater%1:17:00:: 09281777 7 0 -floater%1:18:00:: 10096620 6 0 -floater%1:18:01:: 10744544 3 0 -floater%1:18:02:: 10096725 5 0 -floater%1:18:03:: 10096855 4 0 -floater%1:21:00:: 13415381 2 0 -floater%1:26:00:: 14365119 1 0 -floating%1:04:00:: 00443231 1 0 -floating%5:00:00:afloat:00 00077196 1 2 -floating%5:00:00:mobile:00 01523136 3 0 -floating%5:00:00:uncommitted:00 00518981 5 0 -floating%5:00:00:unfixed:00 01061100 4 0 -floating%5:00:00:unsettled:01 02127159 2 0 -floating-moss%1:20:00:: 12959074 1 0 -floating-point_notation%1:10:00:: 06813700 1 0 -floating-point_number%1:23:00:: 13598013 1 0 -floating-point_operation%1:22:00:: 13481994 1 0 -floating-point_representation_system%1:10:00:: 06813700 1 0 -floating_bridge%1:06:00:: 03981760 1 0 -floating_dock%1:06:00:: 03364937 1 0 -floating_dry_dock%1:06:00:: 03364937 1 0 -floating_fern%1:20:00:: 12959538 3 0 -floating_fern%1:20:01:: 13171797 2 0 -floating_fern%1:20:02:: 13171975 1 0 -floating_mine%1:06:00:: 03365078 1 0 -floating_policy%1:10:00:: 06526124 1 0 -floating_voter%1:18:00:: 10683927 1 0 -floatplane%1:06:00:: 03365231 1 0 -floaty%5:00:00:light:01 01187072 1 0 -floc%1:27:00:: 14585960 1 3 -floccose%5:00:00:hairy:00 00213814 1 0 -floccose_chanterelle%1:20:00:: 13004640 1 0 -flocculate%2:42:00:: 02625916 1 1 -flocculate%2:42:01:: 02626095 2 0 -flocculation%1:22:00:: 13482187 1 1 -floccule%1:27:00:: 14585960 1 0 -flocculent%5:00:00:soft:01 01154351 1 0 -flock%1:14:00:: 07990956 2 2 -flock%1:14:01:: 07991169 5 0 -flock%1:14:02:: 07991272 1 2 -flock%1:14:03:: 08274565 4 1 -flock%1:23:00:: 13774404 3 1 -flock%2:38:00:: 02025009 2 0 -flock%2:38:01:: 02025353 1 2 -flodden%1:04:00:: 01278692 2 0 -flodden%1:15:00:: 08884513 1 0 -floe%1:17:00:: 09309168 1 0 -flog%2:35:00:: 01411085 1 1 -flog%2:35:01:: 01412204 2 0 -flogger%1:18:00:: 10096964 1 0 -flogging%1:04:00:: 01163047 1 0 -flood%1:04:00:: 01257542 5 1 -flood%1:04:01:: 00329819 4 2 -flood%1:06:00:: 03365374 3 2 -flood%1:11:00:: 07403030 6 0 -flood%1:19:00:: 11454591 1 5 -flood%1:23:00:: 13775706 2 2 -flood%2:30:00:: 00217152 2 3 -flood%2:30:01:: 00452220 4 0 -flood%2:35:00:: 01524523 1 6 -flood%2:40:00:: 02356704 3 0 -flood_control%1:04:00:: 00804708 1 0 -flood_in%2:38:00:: 02007680 1 0 -flood_lamp%1:06:00:: 03365374 1 0 -flood_out%2:32:00:: 00751131 1 0 -flood_plain%1:17:00:: 09281914 1 0 -flood_tide%1:11:00:: 07403030 2 0 -flood_tide%1:11:01:: 07417043 1 0 -flooded%5:00:01:full:00 01083754 1 1 -flooded_gum%1:20:00:: 12335483 1 0 -floodgate%1:06:00:: 04244615 2 0 -floodgate%1:09:00:: 06247867 1 0 -floodhead%1:19:00:: 11455236 1 1 -flooding%1:04:00:: 00702418 1 0 -floodlight%1:06:00:: 03365374 1 0 -floodlight%2:30:00:: 00292247 1 0 -floodlighted%5:00:00:light:06 00271288 1 0 -floodlit%5:00:00:light:06 00271288 1 0 -floodplain%1:17:00:: 09281914 1 0 -floor%1:06:00:: 03365592 1 38 -floor%1:06:01:: 03365991 2 16 -floor%1:06:02:: 03366301 10 0 -floor%1:06:03:: 03366464 9 0 -floor%1:07:00:: 05176341 8 0 -floor%1:10:00:: 06658118 3 3 -floor%1:14:00:: 07976596 7 0 -floor%1:17:00:: 09282084 5 1 -floor%1:17:01:: 09282208 4 2 -floor%1:17:02:: 09282363 6 0 -floor%2:35:00:: 01412346 2 0 -floor%2:37:00:: 01809064 1 0 -floor_board%1:06:00:: 03366630 1 1 -floor_cover%1:06:00:: 03366823 1 0 -floor_covering%1:06:00:: 03366823 1 1 -floor_joist%1:06:00:: 03366974 1 0 -floor_lamp%1:06:00:: 03367059 1 0 -floor_leader%1:18:00:: 10097154 1 0 -floor_plan%1:06:00:: 03367147 1 1 -floor_show%1:04:00:: 00520672 1 0 -floor_wax%1:27:00:: 14871464 1 0 -floorboard%1:06:00:: 03366630 1 1 -floorboard%1:06:01:: 03366721 2 0 -floored%3:00:00:: 01210300 1 0 -flooring%1:06:00:: 03365592 1 1 -flooring%1:27:00:: 14871370 2 0 -floorshow%1:04:00:: 00520672 1 0 -floorwalker%1:18:00:: 10097262 1 0 -floozie%1:18:00:: 10663315 1 0 -floozy%1:18:00:: 10663315 1 0 -flop%1:04:00:: 00327510 4 0 -flop%1:11:00:: 07365024 3 0 -flop%1:18:00:: 10097477 2 0 -flop%1:22:00:: 13481994 1 0 -flop%2:38:00:: 01972753 2 2 -flop%2:38:01:: 01972849 1 4 -flop%2:41:00:: 02530003 3 0 -flop%4:02:00:: 00342024 1 0 -flop%4:02:01:: 00058033 2 0 -flophouse%1:06:00:: 03367321 1 0 -floppy%1:06:00:: 03209910 1 0 -floppy%5:00:00:lax:01 02404306 1 0 -floppy_disk%1:06:00:: 03209910 1 0 -flora%1:03:00:: 00017222 2 0 -flora%1:14:00:: 08436759 1 0 -floral%3:01:00:: 02847619 3 0 -floral%3:01:01:: 02847786 2 0 -floral%5:00:00:patterned:00 01788705 1 1 -floral_arrangement%1:06:00:: 03368141 1 0 -floral_cup%1:20:00:: 11690254 1 0 -floral_envelope%1:20:00:: 11692265 1 0 -floral_leaf%1:20:00:: 11690893 1 0 -floreal%1:28:00:: 15177091 1 0 -florence%1:15:00:: 08812166 1 1 -florence%1:15:01:: 09138676 2 0 -florence_fennel%1:13:00:: 07817871 2 0 -florence_fennel%1:20:00:: 12939479 1 0 -florence_nightingale%1:18:00:: 11207410 1 0 -florentine%1:18:00:: 10097590 1 0 -florentine%3:01:00:: 02904916 1 1 -florentine_iris%1:20:00:: 12413419 1 0 -florenz_ziegfeld%1:18:00:: 11406700 1 0 -florescence%1:22:00:: 13439570 1 0 -florest's_cineraria%1:20:00:: 12001924 1 0 -floret%1:20:00:: 11669786 1 0 -florey%1:18:00:: 10973497 1 0 -floricultural%3:01:00:: 02729544 1 0 -floriculture%1:04:00:: 00921399 1 0 -florid%5:00:00:fancy:00 01794771 1 1 -florid%5:00:00:healthy:00 01172139 2 0 -florida%1:15:00:: 09071690 1 4 -florida_arrowroot%1:20:00:: 11602091 1 0 -florida_bean%1:20:00:: 12550408 1 0 -florida_gallinule%1:05:00:: 02016659 1 0 -florida_key%1:17:00:: 09325395 1 0 -florida_pompano%1:05:00:: 02579762 1 0 -florida_selaginella%1:20:00:: 13225617 1 0 -florida_smoothhound%1:05:00:: 01492860 1 0 -florida_strangler_fig%1:20:00:: 12402051 1 0 -florida_strap_fern%1:20:00:: 13174823 1 0 -florida_water_rat%1:05:00:: 02338449 1 0 -florida_yew%1:20:00:: 11662585 1 0 -floridian%1:18:00:: 09742101 1 1 -floridity%1:07:00:: 04699936 1 0 -floridly%4:02:00:: 00500556 1 0 -floridness%1:07:00:: 04699936 1 0 -florilegium%1:10:00:: 06592699 1 0 -florin%1:23:01:: 13679855 2 0 -florin%1:23:02:: 13680146 1 0 -florio%1:18:00:: 10973722 1 0 -florist%1:06:00:: 03367410 2 1 -florist%1:18:00:: 10097705 1 1 -florist's_chrysanthemum%1:20:00:: 11961100 1 0 -florist's_gloxinia%1:20:00:: 12833526 1 0 -florist's_willow%1:20:00:: 12727518 1 0 -florist_shop%1:06:00:: 03367410 1 0 -florists'_chrysanthemum%1:20:00:: 11961100 1 0 -flory%1:18:00:: 10973873 1 0 -floss%1:06:00:: 03367545 1 0 -floss%1:06:01:: 03175843 2 0 -floss%2:29:00:: 00041866 1 0 -flossy%5:00:00:soft:01 01154030 1 0 -flotation%1:04:01:: 01100147 2 0 -flotation%1:19:00:: 11527967 1 0 -flotation_device%1:06:00:: 03663531 1 0 -flotilla%1:06:00:: 03367663 2 0 -flotilla%1:06:01:: 03367740 1 0 -flotsam%1:06:00:: 03367875 1 0 -flounce%1:04:00:: 00289267 2 0 -flounce%1:06:00:: 03397532 1 0 -flounce%2:38:00:: 01924405 1 1 -flounder%1:05:00:: 02657694 2 0 -flounder%1:13:00:: 07790601 1 0 -flounder%2:38:00:: 01925170 1 5 -flounder%2:41:00:: 02407632 2 3 -flour%1:13:00:: 07569106 1 3 -flour%2:30:00:: 00381496 2 0 -flour%2:35:00:: 01261950 1 0 -flour_beetle%1:05:00:: 02181724 1 0 -flour_bin%1:06:00:: 03367969 1 0 -flour_corn%1:20:00:: 12145325 1 0 -flour_mill%1:06:00:: 03368048 1 0 -flour_weevil%1:05:00:: 02181724 1 0 -flourish%1:10:00:: 06890254 4 0 -flourish%1:10:01:: 06890373 3 0 -flourish%1:10:02:: 06890470 1 1 -flourish%1:10:03:: 06856884 5 0 -flourish%1:10:04:: 06890577 2 0 -flourish%2:30:01:: 00310386 1 11 -flourish%2:35:00:: 01446901 3 0 -flourish%2:40:00:: 02342800 2 1 -flourishing%5:00:00:successful:00 02331857 1 0 -floury%5:00:00:fine:00 02233154 1 0 -flout%2:32:00:: 00850192 2 0 -flout%2:32:01:: 00801782 1 2 -flouter%1:18:00:: 10561320 1 0 -flow%1:04:00:: 00329227 3 5 -flow%1:11:00:: 07405893 1 18 -flow%1:14:00:: 08461595 6 1 -flow%1:22:00:: 13482330 4 3 -flow%1:22:01:: 13513747 7 0 -flow%1:26:00:: 14005892 5 1 -flow%1:28:00:: 15277730 2 7 -flow%2:29:00:: 00062203 7 0 -flow%2:30:00:: 00217427 6 0 -flow%2:35:04:: 01542668 5 0 -flow%2:38:00:: 02066939 2 10 -flow%2:38:01:: 02066510 1 13 -flow%2:38:02:: 02067689 3 1 -flow%2:42:00:: 02743727 4 0 -flow_away%2:30:00:: 00449011 1 0 -flow_chart%1:10:00:: 06582085 1 0 -flow_diagram%1:10:00:: 06582085 1 0 -flow_from%2:42:00:: 02634567 1 1 -flow_of_air%1:11:00:: 07406601 1 0 -flow_off%2:30:00:: 00449011 1 0 -flow_out%2:30:00:: 00546080 1 1 -flow_rate%1:28:00:: 15277730 1 6 -flow_sheet%1:10:00:: 06582085 1 0 -flowage%1:04:00:: 01257542 3 0 -flowage%1:17:00:: 09282534 2 0 -flowage%1:22:00:: 13482580 1 0 -flowchart%1:10:00:: 06582085 1 0 -flower%1:20:00:: 11669921 1 31 -flower%1:20:02:: 11669335 2 8 -flower%1:28:00:: 15295045 3 0 -flower%2:30:00:: 00294245 1 1 -flower-cup_fern%1:20:00:: 13202355 1 0 -flower-of-an-hour%1:20:00:: 12180456 1 0 -flower_arrangement%1:06:00:: 03368141 1 0 -flower_bed%1:06:00:: 03368352 1 0 -flower_bud%1:20:00:: 13165409 1 0 -flower_chain%1:06:00:: 03368508 1 0 -flower_child%1:18:00:: 10176475 1 0 -flower_cluster%1:20:00:: 13132338 1 0 -flower_garden%1:06:00:: 03368637 1 3 -flower_gardening%1:04:00:: 00921399 1 0 -flower_girl%1:18:00:: 10097842 2 0 -flower_girl%1:18:01:: 10097995 1 0 -flower_head%1:20:00:: 11674105 1 0 -flower_people%1:14:00:: 08289841 1 0 -flower_petal%1:20:00:: 11690455 1 0 -flower_power%1:09:00:: 05752296 1 0 -flower_stalk%1:20:00:: 13130726 1 0 -flower_store%1:06:00:: 03367410 1 0 -flowerbed%1:06:00:: 03368352 1 1 -flowered%5:00:00:patterned:00 01788705 1 0 -floweret%1:20:00:: 11669786 1 0 -flowering%1:22:00:: 13439570 1 2 -flowering%1:22:01:: 13571217 2 1 -flowering%3:00:00:: 02597850 1 0 -flowering_almond%1:20:01:: 12646740 2 0 -flowering_almond%1:20:02:: 12650379 1 0 -flowering_ash%1:20:01:: 12305293 1 0 -flowering_ash%1:20:02:: 12304420 3 0 -flowering_ash%1:20:03:: 12304572 2 0 -flowering_cherry%1:20:00:: 12649065 1 0 -flowering_crab%1:20:01:: 12635532 2 0 -flowering_crab%1:20:02:: 12635955 1 0 -flowering_fern%1:20:00:: 12953206 2 0 -flowering_fern%1:20:02:: 12961879 1 0 -flowering_glume%1:20:00:: 13155451 1 0 -flowering_hazel%1:20:00:: 12315598 1 0 -flowering_maple%1:20:00:: 12172906 1 0 -flowering_onion%1:20:00:: 12434483 1 0 -flowering_plant%1:20:00:: 11665372 1 0 -flowering_quince%1:20:00:: 12624381 1 0 -flowering_raspberry%1:20:00:: 12657509 1 0 -flowering_shrub%1:20:00:: 13120003 1 0 -flowering_spurge%1:20:00:: 12919195 1 0 -flowering_stone%1:20:00:: 11820463 1 0 -flowering_tobacco%1:20:00:: 12907671 1 0 -flowering_tree%1:20:00:: 13109733 1 0 -flowering_wintergreen%1:20:00:: 12705698 1 0 -flowerless%3:00:00:: 02597951 1 0 -flowerpot%1:06:00:: 03991062 1 0 -flowers-of-an-hour%1:20:00:: 12180456 1 0 -flowers_of_zinc%1:27:00:: 15108087 1 0 -flowery%3:01:00:: 02729665 1 0 -flowery%5:00:00:rhetorical:00 02017141 2 0 -flowing%1:11:00:: 07405893 1 1 -flowing%5:00:00:smooth:00 02238128 1 0 -floxuridine%1:06:00:: 03368750 1 0 -floyd_bennett%1:18:00:: 10845248 1 0 -flu%1:26:00:: 14122497 1 2 -flub%1:04:00:: 00074790 1 0 -flub%2:41:00:: 02527651 1 1 -fluctuate%2:30:00:: 00270699 3 0 -fluctuate%2:38:00:: 01876907 2 0 -fluctuate%2:38:03:: 01877204 1 0 -fluctuating%5:00:00:unsteady:00 02304208 1 0 -fluctuation%1:07:00:: 04770911 3 0 -fluctuation%1:11:00:: 07337390 2 0 -fluctuation%1:11:01:: 07346057 1 0 -flue%1:06:00:: 03368878 3 0 -flue%1:06:01:: 03369011 2 0 -flue%1:06:02:: 03369640 1 0 -flue_pipe%1:06:00:: 03369011 1 0 -flue_stop%1:06:00:: 03369178 1 0 -fluegelhorn%1:06:00:: 03369276 1 0 -fluency%1:07:01:: 04651195 3 0 -fluency%1:09:02:: 05642947 2 0 -fluency%1:10:00:: 07069210 1 0 -fluent%5:00:00:articulate:00 00150505 2 0 -fluent%5:00:01:graceful:00 01139832 1 0 -fluent_aphasia%1:26:00:: 14099172 1 0 -fluently%4:02:00:: 00342110 1 0 -fluff%1:04:00:: 00076072 3 0 -fluff%1:06:00:: 02774502 2 0 -fluff%1:27:00:: 14757754 1 1 -fluff%2:29:00:: 00040188 3 0 -fluff%2:35:00:: 01391806 2 0 -fluff%2:41:00:: 02527651 1 0 -fluff_up%2:35:00:: 01391946 1 0 -fluffiness%1:07:00:: 04938838 1 0 -fluffy%5:00:00:soft:01 01154030 1 1 -fluffy_omelet%1:13:00:: 07843220 1 0 -flugelhorn%1:06:00:: 03369276 1 0 -fluid%1:27:00:: 14939445 2 1 -fluid%1:27:02:: 14939900 1 25 -fluid%5:00:00:changeable:00 00345494 1 1 -fluid%5:00:00:disposable:02 00778017 4 0 -fluid%5:00:00:graceful:00 01139832 3 0 -fluid%5:00:00:liquid:00 02261746 2 0 -fluid%5:00:02:changeable:00 00345694 5 0 -fluid_drachm%1:23:01:: 13618629 2 0 -fluid_drachm%1:23:02:: 13621190 1 0 -fluid_dram%1:23:01:: 13618629 2 0 -fluid_dram%1:23:02:: 13621190 1 0 -fluid_drive%1:06:00:: 03369407 1 0 -fluid_flywheel%1:06:00:: 03369512 1 0 -fluid_mechanics%1:09:00:: 06113009 1 0 -fluid_ounce%1:23:01:: 13618849 2 0 -fluid_ounce%1:23:02:: 13621418 1 0 -fluidity%1:07:00:: 04937043 1 0 -fluidity%1:07:01:: 04734272 2 0 -fluidness%1:07:00:: 04937043 1 0 -fluidness%1:07:01:: 04734272 2 0 -fluidounce%1:23:01:: 13618849 2 0 -fluidounce%1:23:02:: 13621418 1 0 -fluidram%1:23:01:: 13618629 2 0 -fluidram%1:23:02:: 13621190 1 0 -fluke%1:05:00:: 01925695 5 0 -fluke%1:05:01:: 02158619 4 0 -fluke%1:06:00:: 03369640 3 0 -fluke%1:06:01:: 03369767 2 0 -fluke%1:19:00:: 11463746 1 0 -flukey%5:00:00:uncertain:03 00341655 1 0 -fluky%5:00:00:uncertain:03 00341655 1 0 -flume%1:06:00:: 03369866 2 0 -flume%1:17:00:: 09295946 1 0 -flummery%1:10:00:: 06609403 2 0 -flummery%1:13:00:: 07617344 1 0 -flummox%2:31:00:: 00622384 1 0 -flump%2:35:00:: 01500572 2 0 -flump%2:38:00:: 01978340 1 0 -flump_down%2:38:00:: 01978340 1 0 -flunitrazepan%1:06:00:: 03370020 1 0 -flunk%1:04:00:: 00066901 1 0 -flunk%2:41:00:: 02523521 1 0 -flunkey%1:18:00:: 10098092 2 0 -flunkey%1:18:01:: 10242573 1 0 -flunky%1:18:00:: 10098092 2 0 -flunky%1:18:01:: 10242573 1 0 -fluor%1:27:00:: 14675356 1 0 -fluorapatite%1:27:00:: 14675216 1 0 -fluoresce%2:39:00:: 02161160 1 1 -fluorescein%1:27:00:: 14987695 1 2 -fluorescein_isocyanate%1:27:00:: 14988150 1 0 -fluorescein_isothiocyanate%1:27:00:: 14988150 1 0 -fluoresceine%1:27:00:: 14987695 1 0 -fluorescence%1:19:00:: 11458102 1 11 -fluorescence_microscopy%1:04:00:: 00645843 1 0 -fluorescent%1:06:00:: 03370260 1 0 -fluorescent%5:00:00:colorful:00 00403505 2 0 -fluorescent%5:00:00:light:06 00271419 1 1 -fluorescent_dye%1:27:00:: 14987695 1 0 -fluorescent_fixture%1:06:00:: 03370260 1 0 -fluorescent_lamp%1:06:00:: 03370387 1 0 -fluoridate%2:30:00:: 00186161 1 0 -fluoridation%1:04:00:: 00365012 1 0 -fluoride%1:27:00:: 14871601 1 2 -fluoridisation%1:04:00:: 00365012 1 0 -fluoridise%2:30:00:: 00186161 1 0 -fluoridization%1:04:00:: 00365012 1 0 -fluoridize%2:30:00:: 00186161 1 0 -fluorine%1:27:00:: 14637507 1 1 -fluorite%1:27:00:: 14675356 1 0 -fluoroboric_acid%1:27:00:: 14871791 1 0 -fluoroboride%1:27:00:: 14871883 1 1 -fluorocarbon%1:27:00:: 14871968 1 0 -fluorocarbon_plastic%1:27:00:: 14872226 1 0 -fluorochrome%1:27:00:: 14988337 1 0 -fluoroform%1:27:00:: 14620654 1 0 -fluoroscope%1:06:00:: 03370646 1 0 -fluoroscopy%1:04:00:: 00903201 1 0 -fluorosis%1:26:00:: 14068528 1 0 -fluorouracil%1:06:00:: 03370821 1 0 -fluorspar%1:27:00:: 14675356 1 0 -fluosilicate%1:27:00:: 14872325 1 0 -fluosilicic_acid%1:27:00:: 14872408 1 0 -fluoxetine%1:06:00:: 03370927 1 0 -fluoxetine_hydrocholoride%1:06:00:: 03370927 1 0 -fluphenazine%1:06:00:: 03371258 1 0 -flurazepam%1:06:00:: 03371363 1 0 -flurazepam_hydrochloride%1:06:00:: 03371363 1 0 -flurbiprofen%1:06:00:: 03371532 1 0 -flurry%1:04:00:: 00555138 1 4 -flurry%1:19:00:: 11508578 2 1 -flurry%2:37:00:: 01790739 2 0 -flurry%2:38:00:: 02084252 1 2 -flush%1:04:00:: 00118268 7 0 -flush%1:11:00:: 07439570 6 0 -flush%1:12:00:: 07528470 5 0 -flush%1:14:00:: 07958196 4 0 -flush%1:26:00:: 14050871 2 1 -flush%1:26:01:: 14336169 3 0 -flush%1:28:00:: 15295045 1 1 -flush%2:29:00:: 00103317 1 3 -flush%2:30:00:: 00455212 2 2 -flush%2:30:01:: 00455529 5 0 -flush%2:30:02:: 00455368 6 0 -flush%2:30:03:: 00454868 7 0 -flush%2:35:03:: 01307142 4 0 -flush%2:39:00:: 02199435 3 0 -flush%4:02:00:: 00087367 1 2 -flush%4:02:01:: 00087449 2 0 -flush%5:00:00:even:01 00910542 1 1 -flush%5:00:00:rich:00 02022167 2 0 -flush-seamed%5:00:00:carvel-built:00 00316733 1 0 -flush_down%2:30:00:: 00455079 1 0 -flush_it%2:41:00:: 02523521 1 0 -flush_toilet%1:06:00:: 03371875 1 0 -flushed%5:00:00:colored:00 00395626 2 2 -flushed%5:00:00:healthy:00 01170823 1 2 -flushless_toilet%1:06:00:: 03371728 1 0 -fluster%1:07:00:: 04904996 1 0 -fluster%2:37:00:: 01790383 2 0 -fluster%2:37:01:: 01791973 1 1 -flustered%5:00:00:discomposed:00 00532560 1 0 -flute%1:06:00:: 03372029 1 1 -flute%1:06:02:: 03372355 3 0 -flute%1:06:03:: 03372549 2 0 -flute%2:35:00:: 01457376 1 0 -flute_glass%1:06:00:: 03372549 1 0 -flute_player%1:18:00:: 10098245 1 0 -fluting%1:06:00:: 03372355 1 0 -flutist%1:18:00:: 10098245 1 0 -flutter%1:04:00:: 00348571 1 1 -flutter%1:11:01:: 07439284 4 0 -flutter%1:26:00:: 14111355 2 0 -flutter%1:26:01:: 13977366 3 0 -flutter%2:29:00:: 00008195 5 0 -flutter%2:38:00:: 01879928 4 0 -flutter%2:38:01:: 01878719 2 1 -flutter%2:38:02:: 01899891 1 1 -flutter%2:38:03:: 01900255 3 0 -flutter_kick%1:04:00:: 00574430 1 0 -fluttering%1:11:00:: 07439284 1 0 -fluvastatin%1:06:00:: 03372656 1 0 -fluvial%3:01:00:: 02729812 1 0 -flux%1:04:00:: 00195938 8 0 -flux%1:07:00:: 05089199 7 0 -flux%1:11:00:: 07407970 2 5 -flux%1:19:00:: 11477384 6 0 -flux%1:26:00:: 14044592 4 0 -flux%1:26:01:: 14033917 5 0 -flux%1:27:00:: 14860102 3 0 -flux%1:28:00:: 15278132 1 18 -flux%2:30:00:: 00394813 3 0 -flux%2:30:01:: 00443984 2 0 -flux%2:38:00:: 02066510 1 0 -flux_applicator%1:06:00:: 03372822 1 0 -flux_density%1:07:00:: 05089199 1 0 -flux_density_unit%1:23:00:: 13633851 1 0 -flux_unit%1:23:00:: 13634033 1 0 -fluxing_lime%1:27:00:: 14789885 1 0 -fluxion%1:11:00:: 07407970 1 0 -fluxmeter%1:06:00:: 03372933 1 0 -fly%1:04:00:: 00128638 4 1 -fly%1:05:00:: 02190166 1 6 -fly%1:06:00:: 03373060 3 1 -fly%1:06:01:: 04412097 2 1 -fly%1:06:02:: 03373237 5 0 -fly%2:30:00:: 00153061 14 0 -fly%2:30:01:: 00545292 7 2 -fly%2:35:00:: 01451842 4 3 -fly%2:35:01:: 01402765 13 0 -fly%2:38:00:: 01940403 1 33 -fly%2:38:01:: 01941093 3 5 -fly%2:38:02:: 01842068 2 9 -fly%2:38:03:: 02075462 11 0 -fly%2:38:04:: 01847845 12 0 -fly%2:38:05:: 01840238 9 1 -fly%2:38:06:: 02073065 8 1 -fly%2:38:07:: 01848058 5 2 -fly%2:38:08:: 01839404 6 2 -fly%2:39:00:: 02140965 10 0 -fly%5:00:00:alert:00 00092136 1 0 -fly-by%1:04:00:: 00303297 1 0 -fly-by-night%1:18:00:: 10098388 1 0 -fly-by-night%5:00:00:impermanent:00 01757082 2 0 -fly-by-night%5:00:00:untrustworthy:00 02466566 1 0 -fly-fish%2:33:00:: 01141504 1 0 -fly-fishing%1:04:00:: 00454395 1 0 -fly_agaric%1:20:00:: 13003061 1 0 -fly_ash%1:27:00:: 14769331 1 0 -fly_ball%1:04:00:: 00128638 1 0 -fly_blind%2:38:00:: 01941704 1 0 -fly_bridge%1:06:00:: 03373752 1 0 -fly_by%2:38:00:: 02052358 1 2 -fly_by%2:38:01:: 02053829 2 0 -fly_casting%1:04:00:: 00454983 1 0 -fly_contact%2:38:00:: 01941838 1 0 -fly_floor%1:06:00:: 03373415 1 0 -fly_front%1:06:00:: 03373060 1 0 -fly_gallery%1:06:00:: 03373415 1 0 -fly_high%2:37:00:: 01829625 1 1 -fly_high%2:40:00:: 02342800 2 0 -fly_honeysuckle%1:20:00:: 12674685 1 0 -fly_in_the_face_of%2:42:00:: 02668798 1 0 -fly_in_the_ointment%1:07:00:: 04712001 1 1 -fly_in_the_teeth_of%2:42:00:: 02668798 1 0 -fly_off_the_handle%2:37:00:: 01795428 1 0 -fly_on%2:38:00:: 01941006 1 2 -fly_open%2:35:00:: 01347172 1 1 -fly_orchid%1:20:01:: 12075010 2 0 -fly_orchid%1:20:02:: 12085664 1 0 -fly_poison%1:20:00:: 12439154 1 0 -fly_rod%1:06:00:: 03374372 1 0 -fly_sheet%1:06:00:: 04412097 1 0 -fly_tent%1:06:00:: 03374473 1 0 -fly_the_coop%2:38:00:: 02075049 1 0 -flyaway%5:00:00:frivolous:00 02121123 1 0 -flyaway%5:00:00:loose:01 01447178 2 0 -flyblown%5:00:00:blemished:00 00246623 3 0 -flyblown%5:00:00:dirty:01 00421875 2 0 -flyblown%5:00:00:stale:00 01069823 1 0 -flybridge%1:06:00:: 03373752 1 0 -flycatcher%1:05:01:: 01555809 1 0 -flycatcher%1:05:02:: 01547832 2 0 -flycatching_warbler%1:05:00:: 01568132 1 0 -flyer%1:10:00:: 07250339 1 1 -flyer%1:18:00:: 10096217 2 0 -flyer%1:18:01:: 09826204 3 0 -flyfish%2:33:00:: 01141504 1 0 -flying%1:04:00:: 00302394 1 0 -flying%5:00:00:hurried:00 01270486 2 0 -flying%5:00:00:moving:02 01562992 1 1 -flying_bird%1:05:00:: 01517966 1 0 -flying_boat%1:06:00:: 03373611 1 0 -flying_bomb%1:06:00:: 02929923 1 0 -flying_bridge%1:06:00:: 03373752 1 0 -flying_buttress%1:06:00:: 03373943 1 0 -flying_carpet%1:06:00:: 03374102 1 0 -flying_cat%1:05:01:: 02362569 2 0 -flying_cat%1:05:02:: 02502514 1 0 -flying_colors%1:04:00:: 00065418 1 0 -flying_colours%1:04:00:: 00065418 1 0 -flying_dragon%1:05:00:: 01688589 1 0 -flying_drainpipe%1:06:00:: 04051269 1 0 -flying_dutchman%1:09:00:: 05898035 2 0 -flying_dutchman%1:18:00:: 09547353 1 0 -flying_field%1:06:00:: 02687992 1 0 -flying_fish%1:05:00:: 02550460 1 0 -flying_fox%1:05:00:: 02140049 1 0 -flying_gecko%1:05:00:: 01675352 1 0 -flying_gurnard%1:05:00:: 02652132 1 0 -flying_jib%1:06:00:: 03374282 1 0 -flying_lemur%1:05:00:: 02502514 1 0 -flying_lizard%1:05:00:: 01688589 1 0 -flying_mare%1:04:00:: 00447879 1 0 -flying_marmot%1:05:00:: 02362569 1 0 -flying_mouse%1:05:00:: 01882508 1 0 -flying_opossum%1:05:00:: 01882125 1 0 -flying_phalanger%1:05:00:: 01882125 1 0 -flying_reptile%1:05:00:: 01722998 1 0 -flying_robin%1:05:00:: 02652132 1 0 -flying_saucer%1:09:00:: 05897825 1 0 -flying_school%1:14:00:: 08282257 1 0 -flying_squad%1:14:00:: 08078644 1 0 -flying_squirrel%1:05:02:: 01882125 1 0 -flying_start%1:11:00:: 07326262 2 0 -flying_start%1:11:01:: 07329833 1 0 -flying_visit%1:04:00:: 01232978 1 0 -flyleaf%1:10:00:: 06256494 1 0 -flyover%1:04:00:: 00303297 2 0 -flyover%1:06:00:: 03865557 1 0 -flypaper%1:27:00:: 14872572 1 0 -flypast%1:04:00:: 00303297 1 0 -flyspeck%1:27:00:: 14869975 1 0 -flyspeck%5:00:00:small:00 01392249 1 0 -flyswat%1:06:00:: 04369282 1 0 -flyswatter%1:06:00:: 04369282 1 0 -flytrap%1:06:00:: 03374570 1 0 -flyway%1:15:00:: 08617622 1 1 -flyweight%1:18:00:: 10098517 2 0 -flyweight%1:18:01:: 10098624 1 0 -flywheel%1:06:00:: 03374649 1 0 -fm%1:10:00:: 06281721 1 1 -fm%1:27:00:: 14637339 2 0 -fmri%1:04:00:: 00902757 1 0 -fnma%1:14:00:: 08384738 1 0 -fo%1:18:00:: 10087080 1 0 -fo'c'sle%1:06:00:: 03382104 1 0 -foal%1:05:00:: 02376542 1 0 -foal%2:29:00:: 00057895 1 0 -foam%1:17:00:: 09282724 1 4 -foam%1:27:00:: 14872697 2 1 -foam%2:30:05:: 00519363 1 1 -foam_at_the_mouth%2:37:00:: 01796215 1 0 -foam_rubber%1:27:00:: 14872875 1 0 -foamflower%1:20:00:: 12803754 1 0 -foaminess%1:07:00:: 04733539 1 0 -foaming%5:00:00:effervescent:00 02276305 1 0 -foaming%5:00:00:unhealthy:00 01176787 2 0 -foamy%5:00:00:effervescent:00 02276305 2 0 -foamy%5:00:00:unhealthy:00 01176787 1 1 -fob%1:06:00:: 03374838 3 0 -fob%1:06:01:: 03374978 2 0 -fob%1:06:02:: 03375070 1 0 -fob%2:41:00:: 02575723 1 0 -fob_off%2:40:00:: 02244426 1 0 -focal%3:01:00:: 02881438 2 0 -focal%5:00:00:central:01 00330904 1 3 -focal_distance%1:07:00:: 05086450 1 0 -focal_epilepsy%1:26:00:: 14086626 1 0 -focal_infection%1:26:00:: 14176715 1 0 -focal_length%1:07:00:: 05086450 1 0 -focal_point%1:09:00:: 05704694 3 0 -focal_point%1:19:00:: 11455695 1 2 -focal_point%1:26:00:: 14182697 2 0 -focal_ratio%1:24:00:: 13821408 1 0 -focal_seizure%1:26:00:: 14086924 1 0 -focalisation%1:04:01:: 00375625 2 0 -focalisation%1:22:00:: 13482781 1 0 -focalise%2:30:00:: 00314782 3 0 -focalise%2:30:01:: 00314272 4 0 -focalise%2:31:00:: 00731789 2 0 -focalise%2:42:00:: 02692335 1 0 -focalization%1:04:01:: 00375625 2 0 -focalization%1:22:00:: 13482781 1 0 -focalize%2:30:00:: 00314782 3 0 -focalize%2:30:01:: 00314272 4 0 -focalize%2:31:00:: 00731789 2 0 -focalize%2:42:00:: 02692335 1 0 -focally%4:02:00:: 00093731 1 1 -focus%1:07:01:: 04703235 2 3 -focus%1:07:03:: 04821084 3 2 -focus%1:09:00:: 05704694 1 6 -focus%1:15:00:: 08572335 7 0 -focus%1:19:00:: 11455695 6 0 -focus%1:26:00:: 14182697 4 1 -focus%1:26:01:: 14435187 5 0 -focus%2:30:00:: 00314782 4 0 -focus%2:30:01:: 00314272 5 0 -focus%2:31:00:: 00722232 1 6 -focus%2:31:01:: 00731789 3 1 -focus%2:39:00:: 02161922 2 4 -focus_on%2:42:00:: 02676496 1 6 -focused%3:00:00:: 00782856 1 0 -focused%5:00:00:adjusted:00 00350876 3 0 -focused%5:00:00:convergent:00 00612504 2 0 -focusing%1:04:00:: 00375625 2 0 -focusing%1:09:00:: 05704694 1 1 -focussed%3:00:04:: 00782856 1 0 -focussed%5:00:00:convergent:00 00612504 2 0 -focussing%1:09:00:: 05704694 1 0 -fodder%1:13:00:: 07800740 2 0 -fodder%1:18:00:: 09891300 1 0 -fodder%2:34:00:: 01178101 1 0 -foe%1:18:00:: 10098710 2 2 -foe%1:18:01:: 10055847 1 12 -foehn%1:19:00:: 11442630 1 0 -foeman%1:18:00:: 10055847 1 0 -foeniculum%1:20:00:: 12938897 1 0 -foeniculum_dulce%1:20:00:: 12939479 1 0 -foeniculum_vulgare%1:20:00:: 12939282 1 0 -foeniculum_vulgare_dulce%1:20:00:: 12939479 1 0 -foetal%3:01:00:: 02892819 1 0 -foetal_circulation%1:08:00:: 05511975 1 0 -foetal_distress%1:26:00:: 14093874 1 0 -foetal_monitor%1:06:00:: 03278914 1 0 -foetal_movement%1:04:00:: 00334174 1 0 -foetid%5:00:00:malodorous:00 01053634 1 0 -foetid_bugbane%1:20:00:: 11729142 1 0 -foetid_pothos%1:20:00:: 11792742 1 0 -foetology%1:09:00:: 06053854 1 0 -foetometry%1:04:00:: 01002284 1 0 -foetoprotein%1:27:00:: 15033662 1 0 -foetor%1:09:00:: 05714894 1 0 -foetoscope%1:06:00:: 03330792 1 0 -foetoscopy%1:04:00:: 00944456 1 0 -foetus%1:05:00:: 01459791 1 0 -fog%1:09:00:: 05684561 3 2 -fog%1:19:00:: 11458314 1 15 -fog%1:26:01:: 14521648 2 3 -fog%2:39:00:: 02157731 1 0 -fog_up%2:43:00:: 02771888 1 0 -fogbank%1:19:00:: 11458514 1 0 -fogbound%5:00:00:cloudy:00 00461859 1 0 -fogey%1:18:00:: 10022908 1 0 -fogged%5:00:00:opaque:00 00433811 1 0 -fogginess%1:07:00:: 04704346 2 0 -fogginess%1:26:00:: 14521648 1 0 -foggy%5:00:00:cloudy:00 00461609 3 0 -foggy%5:00:00:indistinct:00 00781644 2 0 -foggy%5:00:00:lethargic:00 00875962 1 0 -foggy%5:00:00:opaque:00 00433811 4 0 -foggy_bottom%1:14:00:: 08138079 1 0 -foghorn%1:06:00:: 03375171 2 0 -foghorn%1:10:00:: 07265381 1 0 -foglamp%1:06:00:: 03375329 1 0 -fogsignal%1:10:00:: 07265381 1 0 -fogy%1:18:00:: 10022908 1 0 -fogyish%5:00:00:unfashionable:00 00974697 1 0 -fohn%1:19:00:: 11442630 1 0 -foible%1:06:00:: 03375443 2 0 -foible%1:07:00:: 04764242 1 1 -foie_gras%1:13:00:: 07858197 1 0 -foil%1:06:00:: 03375575 5 0 -foil%1:06:01:: 03375694 1 5 -foil%1:06:02:: 03375956 4 0 -foil%1:06:03:: 03553019 3 0 -foil%1:09:00:: 05853924 2 0 -foil%2:35:00:: 01335075 3 0 -foil%2:41:00:: 02558172 2 1 -foil%2:42:00:: 02739688 1 1 -foiled%5:00:00:unsuccessful:00 02333976 1 0 -foiling%1:04:00:: 00067990 1 0 -foist%2:30:01:: 00189823 2 0 -foist%2:32:00:: 00749092 1 0 -foist_off%2:40:00:: 02244426 1 0 -folacin%1:27:00:: 15091846 1 0 -folate%1:27:00:: 15091846 1 0 -fold%1:04:00:: 00406612 7 0 -fold%1:06:01:: 03376159 6 0 -fold%1:08:00:: 05492259 5 0 -fold%1:14:00:: 07991364 2 1 -fold%1:14:01:: 07991169 4 0 -fold%1:22:00:: 13482940 3 0 -fold%1:25:00:: 13907415 1 3 -fold%2:30:00:: 00398138 2 1 -fold%2:30:10:: 00564695 5 0 -fold%2:35:00:: 01277974 1 5 -fold%2:35:04:: 01345877 4 0 -fold%2:41:00:: 02426395 3 0 -fold_up%2:30:10:: 00564695 2 0 -fold_up%2:35:00:: 01277974 1 1 -foldable%5:00:00:collapsible:00 00465943 1 0 -foldaway%5:00:00:collapsible:00 00465943 1 0 -folder%1:06:00:: 03376279 2 0 -folder%1:10:00:: 06413889 1 0 -folderal%1:06:00:: 03376438 1 0 -folderol%1:10:00:: 06611998 1 0 -folding%1:04:00:: 00406612 3 0 -folding%1:22:00:: 13569226 1 0 -folding%1:22:01:: 13482940 2 0 -folding%5:00:00:collapsible:00 00465943 1 0 -folding_chair%1:06:00:: 03376595 1 1 -folding_door%1:06:00:: 03376771 1 0 -folding_money%1:21:00:: 13387209 1 0 -folding_saw%1:06:00:: 03376938 1 0 -foldout%1:10:00:: 06258541 1 0 -foliaceous%3:01:00:: 02730102 1 0 -foliaceous%5:00:00:leafy:00 01701411 2 0 -foliaceous%5:00:00:stratified:00 00208447 3 0 -foliage%1:06:00:: 03377077 2 1 -foliage%1:20:00:: 13152742 1 6 -foliaged%5:00:00:leafy:00 01701411 1 0 -foliate%2:30:00:: 00282790 5 0 -foliate%2:32:00:: 00949093 4 0 -foliate%2:35:00:: 01266749 3 0 -foliate%2:36:00:: 01675522 1 0 -foliate%2:36:01:: 01670051 2 0 -foliate%3:01:02:: 02729927 1 0 -foliate%5:00:00:leafy:00 01701512 2 0 -foliate%5:00:00:stratified:00 00208447 3 0 -foliated%3:01:00:: 02729927 1 0 -foliated%5:00:00:stratified:00 00208447 2 0 -foliation%1:04:00:: 00924438 4 0 -foliation%1:04:01:: 00713135 5 0 -foliation%1:06:00:: 03377077 3 0 -foliation%1:22:00:: 13483061 2 0 -foliation%1:22:01:: 13483190 1 0 -folic_acid%1:27:00:: 15091846 1 0 -folie%1:26:00:: 14083790 1 0 -folie_a_deux%1:26:00:: 14387604 1 0 -folio%1:06:00:: 03377245 3 0 -folio%1:10:00:: 06256229 2 0 -folio%1:10:01:: 06258680 1 0 -foliolate%5:00:00:leafy:00 01701769 1 0 -foliose%5:00:00:leafy:00 01701411 1 0 -folium%1:17:00:: 09283066 1 0 -folk%1:10:00:: 07060167 4 0 -folk%1:14:00:: 07947255 1 14 -folk%1:14:01:: 08372411 2 1 -folk%1:14:02:: 07970721 3 1 -folk_art%1:06:00:: 03377451 1 0 -folk_ballad%1:10:00:: 07050952 1 0 -folk_dance%1:04:00:: 00537682 1 1 -folk_dance%2:38:00:: 01898769 1 0 -folk_dancer%1:18:00:: 10098862 1 0 -folk_dancing%1:04:00:: 00537682 1 0 -folk_etymology%1:10:00:: 06514786 1 0 -folk_music%1:10:00:: 07060167 1 1 -folk_poet%1:18:00:: 10099002 1 1 -folk_singer%1:18:00:: 10099093 1 0 -folk_song%1:10:00:: 07050952 1 0 -folk_tale%1:10:00:: 07222050 1 0 -folk_writer%1:18:00:: 10099278 1 1 -folklore%1:09:00:: 05985602 1 27 -folks%1:14:00:: 07971023 1 1 -folks%1:14:01:: 07947255 2 0 -folksong%1:10:00:: 07050952 1 0 -folksy%5:00:00:informal:01 01044922 2 0 -folksy%5:00:00:rural:00 02052005 1 2 -folktale%1:10:00:: 07222050 1 0 -follicle%1:08:00:: 05518094 1 0 -follicle-stimulating_hormone%1:27:00:: 14748765 1 0 -follicular%3:01:00:: 03019836 1 1 -folliculitis%1:26:00:: 14346190 1 0 -follies%1:10:00:: 07020017 1 0 -follow%2:30:00:: 00150776 7 13 -follow%2:30:01:: 00118764 16 1 -follow%2:30:12:: 00351406 24 0 -follow%2:31:00:: 00729109 12 4 -follow%2:31:14:: 00589738 23 0 -follow%2:36:00:: 01744450 11 8 -follow%2:36:01:: 01728355 15 1 -follow%2:38:00:: 01998432 1 74 -follow%2:38:01:: 01991931 4 20 -follow%2:38:13:: 02000868 22 0 -follow%2:39:13:: 02198602 21 0 -follow%2:40:00:: 02346895 9 9 -follow%2:41:00:: 02542280 5 18 -follow%2:41:01:: 02406585 14 2 -follow%2:41:02:: 02455407 13 3 -follow%2:41:09:: 02445925 20 0 -follow%2:41:10:: 02600255 18 0 -follow%2:41:11:: 02561697 19 0 -follow%2:42:00:: 02712772 2 50 -follow%2:42:01:: 02720354 6 17 -follow%2:42:02:: 02720544 8 12 -follow%2:42:03:: 02720697 10 8 -follow%2:42:04:: 02625339 17 0 -follow%2:42:05:: 02720149 3 26 -follow-on%1:04:00:: 00457038 1 0 -follow-through%1:04:00:: 00211593 1 1 -follow-through%1:04:01:: 00211776 2 0 -follow-up%1:04:00:: 00143251 3 0 -follow-up%1:04:01:: 00455348 2 0 -follow-up%1:06:00:: 03377582 1 0 -follow_out%2:30:00:: 00486018 1 0 -follow_suit%2:42:00:: 02675603 1 1 -follow_through%2:30:00:: 00486018 2 0 -follow_through%2:35:00:: 01406016 1 0 -follow_up%2:30:00:: 00486018 1 0 -follow_up%2:30:01:: 00230276 2 0 -follow_up_on%2:41:00:: 02376429 1 0 -follower%1:18:00:: 10099375 1 7 -follower%1:18:01:: 10100124 2 0 -followers%1:14:00:: 08223263 1 0 -followers_of_the_phrophet%1:14:00:: 08014615 1 0 -following%1:04:01:: 00319939 2 0 -following%1:14:00:: 08223263 1 1 -following%3:00:00:: 00199569 3 3 -following%5:00:00:favorable:01 00995365 4 0 -following%5:00:01:succeeding:00 00127815 1 30 -following%5:00:02:succeeding:00 00127948 2 20 -followup%1:04:00:: 00143251 3 0 -followup%1:04:01:: 00455348 2 0 -followup%1:06:00:: 03377582 1 0 -folly%1:04:00:: 00512843 4 0 -folly%1:04:01:: 01248075 2 1 -folly%1:07:00:: 04891333 1 2 -folly%1:09:00:: 05647156 3 0 -folsom_culture%1:14:00:: 08291813 1 0 -foment%2:29:00:: 00035448 2 0 -foment%2:41:00:: 02585050 1 0 -fomentation%1:04:00:: 00156625 3 0 -fomentation%1:04:01:: 00708168 2 0 -fomentation%1:27:00:: 14873056 1 0 -fomenter%1:18:00:: 09778783 1 0 -fomes%1:20:00:: 13053816 1 0 -fomes_igniarius%1:20:00:: 13054073 1 0 -fomite%1:17:00:: 09283193 1 0 -fomor%1:18:00:: 09509375 1 0 -fomorian%1:18:00:: 09509375 1 0 -fond%5:00:00:foolish:00 02571903 4 0 -fond%5:00:00:inclined:02 01292683 3 1 -fond%5:00:01:loving:00 01464433 2 1 -fond%5:00:02:loving:00 01464700 1 3 -fond_regard%1:12:00:: 07545161 1 0 -fonda%1:18:00:: 10974033 2 0 -fonda%1:18:01:: 10974136 1 0 -fondant%1:13:00:: 07605380 1 0 -fondle%2:35:00:: 01226215 1 0 -fondler%1:18:00:: 10420649 1 0 -fondler%1:18:01:: 10100314 2 0 -fondling%1:04:00:: 00854000 1 0 -fondly%4:02:00:: 00229074 1 3 -fondness%1:07:00:: 04627000 3 0 -fondness%1:12:00:: 07544647 2 0 -fondness%1:12:01:: 07497797 1 3 -fondu%1:13:00:: 07867421 2 0 -fondu%1:13:02:: 07867883 1 0 -fondue%1:13:00:: 07867421 2 0 -fondue%1:13:02:: 07867883 1 0 -font%1:06:00:: 02788572 2 0 -font%1:10:00:: 06825399 1 0 -font_cartridge%1:10:00:: 06826407 1 0 -fontanel%1:08:00:: 05545212 1 0 -fontanelle%1:08:00:: 05545212 1 0 -fontanne%1:18:00:: 10974271 1 0 -fontenoy%1:04:00:: 01278873 1 0 -fonteyn%1:18:00:: 10974455 1 0 -food%1:03:00:: 00021265 1 29 -food%1:09:00:: 05811214 3 0 -food%1:13:00:: 07555863 2 0 -food_additive%1:06:00:: 03377845 1 0 -food_allergy%1:26:00:: 14532142 1 0 -food_and_agriculture_organization%1:14:00:: 08300190 1 0 -food_and_agriculture_organization_of_the_united_nations%1:14:00:: 08300190 1 0 -food_and_drug_administration%1:14:00:: 08124256 1 0 -food_bank%1:21:00:: 13368900 1 0 -food_cache%1:13:00:: 07572519 1 0 -food_chain%1:19:00:: 11455901 1 0 -food_color%1:13:00:: 07567139 1 0 -food_coloring%1:13:00:: 07567139 1 0 -food_colour%1:13:00:: 07567139 1 0 -food_colouring%1:13:00:: 07567139 1 0 -food_company%1:14:00:: 08003427 1 0 -food_court%1:06:00:: 03378005 1 0 -food_cycle%1:19:00:: 11456273 1 0 -food_elevator%1:06:00:: 03255322 1 0 -food_faddist%1:18:00:: 10100514 1 0 -food_fish%1:05:00:: 02512938 1 0 -food_for_thought%1:09:00:: 05811214 1 2 -food_grain%1:13:00:: 07802417 1 0 -food_hamper%1:06:00:: 03378342 1 0 -food_manufacturer%1:18:00:: 10100620 1 0 -food_market%1:06:00:: 03461385 1 0 -food_poisoning%1:26:00:: 14068685 1 0 -food_processor%1:06:00:: 03378174 1 0 -food_product%1:13:00:: 07566340 1 0 -food_pyramid%1:19:00:: 11456083 1 0 -food_shop%1:06:00:: 03173387 1 0 -food_stamp%1:21:00:: 13374161 1 0 -food_turner%1:06:00:: 04500060 1 0 -food_waste%1:27:00:: 14857151 1 0 -food_web%1:19:00:: 11456273 1 0 -foodie%1:18:00:: 10061656 1 0 -foodless%5:00:00:malnourished:00 02301107 1 0 -foodstuff%1:06:00:: 03461119 1 1 -foodstuff%1:13:00:: 07566340 2 0 -fool%1:18:00:: 10100761 1 25 -fool%1:18:01:: 09921409 2 10 -fool%1:18:02:: 10221312 3 1 -fool%2:32:00:: 00854150 4 0 -fool%2:32:01:: 00854904 3 0 -fool%2:34:00:: 01195804 2 0 -fool%2:41:00:: 02576349 1 6 -fool's_cap%1:06:00:: 03256631 1 0 -fool's_errand%1:04:00:: 00731569 1 0 -fool's_gold%1:27:00:: 14692682 1 0 -fool's_huckleberry%1:20:00:: 12241880 1 0 -fool's_paradise%1:26:00:: 14447816 1 0 -fool's_parsley%1:20:00:: 12931231 1 0 -fool_around%2:32:00:: 00854150 1 2 -fool_around%2:41:00:: 02598642 2 0 -fool_away%2:34:00:: 01195804 1 0 -foolery%1:04:00:: 00512843 1 0 -foolhardiness%1:07:00:: 04661926 1 0 -foolhardy%5:00:00:bold:00 00250739 1 1 -fooling%5:00:00:light:02 01190484 1 1 -foolish%3:00:00:: 02570282 1 6 -foolish%5:00:00:stupid:00 00439905 2 0 -foolish_woman%1:18:00:: 10096126 1 0 -foolishly%4:02:00:: 00201733 1 0 -foolishness%1:04:01:: 01248075 3 0 -foolishness%1:07:00:: 04891333 1 2 -foolishness%1:09:00:: 05647156 2 0 -foolproof%2:30:00:: 00166593 1 0 -foolproof%5:00:00:infallible:00 00965176 1 1 -foolscap%1:10:00:: 06259487 1 0 -foot%1:04:00:: 00284665 7 1 -foot%1:05:00:: 02322213 6 2 -foot%1:05:01:: 02153445 4 4 -foot%1:06:00:: 03387016 5 2 -foot%1:06:01:: 03378442 11 0 -foot%1:08:01:: 05563266 1 89 -foot%1:10:00:: 07094843 10 0 -foot%1:14:00:: 08390157 9 0 -foot%1:15:00:: 08511570 3 8 -foot%1:18:00:: 10101078 8 0 -foot%1:23:00:: 13650045 2 81 -foot%2:31:00:: 00641138 3 0 -foot%2:38:00:: 01906322 2 0 -foot%2:40:00:: 02287209 1 1 -foot-and-mouth_disease%1:26:00:: 14264664 1 0 -foot-lambert%1:23:00:: 13641175 1 0 -foot-pound%1:23:00:: 13727683 1 0 -foot-poundal%1:23:00:: 13727931 1 0 -foot-shaped%5:00:00:formed:00 02147117 1 0 -foot-ton%1:23:00:: 13727841 1 0 -foot_brake%1:06:00:: 03379719 1 0 -foot_doctor%1:18:00:: 09919297 1 0 -foot_lever%1:06:00:: 03903424 1 0 -foot_pedal%1:06:00:: 03903424 1 0 -foot_race%1:11:00:: 07460104 1 0 -foot_rot%1:26:00:: 14264858 1 3 -foot_rot%1:26:01:: 14282890 2 0 -foot_rule%1:06:00:: 03380647 1 0 -foot_soldier%1:18:00:: 10204921 1 1 -foot_soldier%1:18:01:: 10669991 2 0 -foot_traffic%1:14:00:: 08425777 1 0 -foot_up%2:31:00:: 00641138 1 0 -footage%1:06:00:: 03378593 1 1 -footage%1:21:00:: 13326871 2 0 -football%1:04:00:: 00468480 1 9 -football%1:06:00:: 03378765 2 2 -football-shaped%5:00:00:formed:00 02147203 1 0 -football_coach%1:18:00:: 10101202 1 0 -football_field%1:06:00:: 03378915 1 0 -football_game%1:04:00:: 00468480 1 0 -football_helmet%1:06:00:: 03379051 1 0 -football_hero%1:18:00:: 10101308 1 0 -football_league%1:14:00:: 08232496 1 0 -football_official%1:18:00:: 10101427 1 0 -football_play%1:04:00:: 00558630 1 0 -football_player%1:18:00:: 10101634 1 2 -football_score%1:04:00:: 00188341 1 0 -football_season%1:28:00:: 15240998 1 0 -football_stadium%1:06:00:: 03379204 1 0 -football_team%1:14:00:: 08080025 1 3 -football_tee%1:06:00:: 04399700 1 0 -footballer%1:18:00:: 10101634 1 0 -footbath%1:06:00:: 03379343 1 0 -footboard%1:06:00:: 03379461 2 0 -footboard%1:06:01:: 03379592 1 0 -footbridge%1:06:00:: 03379828 1 1 -footcandle%1:23:00:: 13640371 1 0 -footed%3:00:00:: 01031232 1 0 -footedness%1:07:00:: 05067679 1 0 -footer%1:10:00:: 06764244 3 0 -footer%1:18:00:: 10412055 2 0 -footer%1:23:00:: 13650225 1 0 -footfall%1:11:00:: 07383823 1 0 -footfault%1:04:00:: 00071700 1 0 -footgear%1:06:00:: 03380867 1 0 -foothill%1:17:00:: 09283405 1 0 -foothold%1:04:00:: 00036299 3 0 -foothold%1:06:00:: 03379989 2 0 -foothold%1:15:00:: 08689028 1 0 -footing%1:06:00:: 03379989 3 0 -footing%1:24:00:: 13790912 2 0 -footing%1:26:00:: 13953936 1 1 -footle%2:41:00:: 02519890 2 0 -footle%2:42:00:: 02639075 1 0 -footless%3:00:00:: 01031797 1 0 -footlights%1:06:00:: 03380134 1 0 -footling%5:00:00:unimportant:00 01280908 1 0 -footlocker%1:06:00:: 03380301 1 0 -footloose%5:00:00:free:00 01063286 1 1 -footman%1:18:00:: 10101981 1 0 -footmark%1:10:00:: 06645039 1 0 -footnote%1:10:00:: 06764244 1 1 -footnote%2:36:00:: 01704953 1 0 -footpad%1:18:00:: 10102130 1 0 -footpath%1:06:00:: 03899533 1 1 -footplate%1:06:00:: 03380461 1 0 -footprint%1:07:00:: 05129054 3 0 -footprint%1:10:00:: 06645039 1 1 -footprint%1:10:01:: 06646854 2 0 -footprint_evidence%1:10:00:: 06645266 1 0 -footrace%1:11:00:: 07460104 1 0 -footrest%1:06:00:: 03380724 1 0 -footslog%2:38:00:: 01921204 1 0 -footslogger%1:18:00:: 10204921 1 0 -footsore%5:00:00:tired:00 02433895 1 0 -footstall%1:06:00:: 03903868 1 0 -footstep%1:04:00:: 00288880 2 4 -footstep%1:11:00:: 07383823 1 4 -footstep%1:23:00:: 13757249 3 3 -footsteps-of-spring%1:20:00:: 12943743 1 0 -footstool%1:06:00:: 03380724 1 0 -footsure%5:00:00:steady:00 02302941 1 0 -footwall%1:17:00:: 09283514 1 0 -footwear%1:06:00:: 03380867 2 0 -footwear%1:06:01:: 03381126 1 0 -footwork%1:04:00:: 00565219 1 0 -footwork%1:04:01:: 00172347 2 0 -fop%1:18:00:: 09991026 1 0 -foppish%5:00:00:elegant:00 00849912 1 1 -foppishness%1:07:00:: 04910848 1 0 -for_24_hours%4:02:00:: 00152559 1 0 -for_a_bargain_price%4:02:00:: 00158575 1 0 -for_a_song%4:02:00:: 00158575 1 0 -for_a_while%4:02:01:: 00144405 1 12 -for_all_intents_and_purposes%4:02:00:: 00060300 1 0 -for_all_practical_purposes%4:02:00:: 00060300 1 1 -for_all_the_world%4:02:00:: 00159373 1 1 -for_any_price%4:02:00:: 00159373 1 0 -for_anything%4:02:00:: 00159373 1 0 -for_certain%4:02:00:: 00144722 1 0 -for_dear_life%4:02:00:: 00158725 1 0 -for_each_one%4:02:00:: 00239908 1 0 -for_each_person%4:02:00:: 00501291 1 0 -for_example%4:02:00:: 00159040 1 63 -for_free%4:02:00:: 00258175 1 0 -for_good%4:02:00:: 00087916 1 1 -for_good_measure%4:02:00:: 00159150 1 1 -for_instance%4:02:00:: 00159040 1 21 -for_keeps%4:02:00:: 00159284 1 1 -for_love_or_money%4:02:00:: 00159373 1 0 -for_one%4:02:00:: 00159544 1 1 -for_sale%5:00:00:available:00 00185607 1 2 -for_short%4:02:00:: 00159690 1 0 -for_sure%4:02:00:: 00144722 1 2 -for_sure%5:00:00:unquestionable:00 01918660 1 1 -for_that_matter%4:02:00:: 00100773 1 5 -for_the_asking%4:02:00:: 00159771 1 0 -for_the_first_time%4:02:00:: 00103554 1 10 -for_the_moment%4:02:00:: 00054327 1 6 -for_the_most_part%4:02:00:: 00006105 1 15 -for_the_time_being%4:02:02:: 00054327 1 2 -forage%1:04:00:: 00945916 2 0 -forage%1:13:00:: 07801091 1 0 -forage%2:34:00:: 01177699 2 0 -forage%2:40:00:: 02269894 1 0 -forager%1:18:00:: 10102222 1 0 -foraging%1:04:00:: 00945916 1 1 -foram%1:05:00:: 01393030 1 0 -foramen%1:08:00:: 05545439 1 0 -foramen_magnum%1:08:00:: 05545879 1 0 -foramen_of_monro%1:08:00:: 05545611 1 0 -foraminifer%1:05:00:: 01393030 1 0 -foraminifera%1:05:00:: 01392843 1 0 -foray%1:04:00:: 00976953 1 0 -foray%1:04:01:: 00787307 2 0 -foray%2:35:00:: 01228635 2 0 -foray%2:40:00:: 02344568 1 0 -foray_into%2:38:00:: 02020027 1 0 -forbear%1:18:00:: 10102369 1 0 -forbear%2:42:00:: 02725714 2 0 -forbear%2:42:01:: 02726044 1 0 -forbearance%1:04:00:: 01066689 2 0 -forbearance%1:07:00:: 04640538 1 0 -forbearing%5:00:00:patient:00 01736571 1 0 -forbid%2:32:00:: 00795863 1 15 -forbid%2:41:03:: 02452885 2 1 -forbiddance%1:04:00:: 00201923 2 0 -forbiddance%1:10:00:: 07255401 1 0 -forbidden%5:00:00:impermissible:00 01761375 1 4 -forbidden_city%1:15:00:: 08724972 2 0 -forbidden_city%1:15:01:: 08907377 1 0 -forbidden_fruit%1:09:00:: 05695002 1 0 -forbidding%1:10:00:: 07255401 1 0 -forbidding%5:00:00:alarming:00 00194357 2 0 -forbidding%5:00:00:unpleasant:00 01802932 1 0 -forbiddingly%4:02:00:: 00342213 1 0 -force%1:04:00:: 00129743 10 0 -force%1:04:01:: 00965404 6 5 -force%1:07:00:: 05035353 3 19 -force%1:07:01:: 05194578 1 29 -force%1:07:02:: 04809642 9 0 -force%1:14:00:: 08208016 4 15 -force%1:14:01:: 08198398 5 10 -force%1:14:02:: 08207863 8 0 -force%1:18:00:: 10461424 7 1 -force%1:19:00:: 11458624 2 20 -force%2:32:00:: 00747418 4 8 -force%2:35:00:: 01527271 5 3 -force%2:35:01:: 01448100 7 1 -force%2:35:02:: 01516534 6 2 -force%2:35:03:: 01586600 9 0 -force%2:35:05:: 01350449 8 1 -force%2:36:00:: 01650425 2 17 -force%2:38:00:: 01871979 3 13 -force%2:41:00:: 02504562 1 48 -force-feed%2:34:00:: 01179740 1 0 -force-feed_lubricating_system%1:06:00:: 03695122 1 0 -force-land%2:38:00:: 01978850 1 0 -force-out%1:04:00:: 00129743 1 0 -force_17%1:14:00:: 08021464 1 0 -force_back%2:35:00:: 01506157 1 0 -force_feed%1:06:00:: 03695122 1 0 -force_field%1:19:00:: 11456760 1 0 -force_majeure%1:11:00:: 07315350 1 0 -force_out%1:04:00:: 00129743 1 0 -force_out%2:29:00:: 00003662 8 0 -force_out%2:35:00:: 01281611 7 0 -force_out%2:35:01:: 01375637 6 0 -force_out%2:35:02:: 01468058 5 0 -force_out%2:38:00:: 02013840 4 0 -force_out%2:38:01:: 02056466 3 0 -force_out%2:41:00:: 02402825 2 0 -force_out%2:41:01:: 02405252 1 0 -force_per_unit_area%1:19:00:: 11495041 1 0 -force_play%1:04:00:: 00129743 1 0 -force_pump%1:06:00:: 03381450 1 0 -force_unit%1:23:00:: 13603065 1 0 -forced%3:44:00:: 03148831 1 1 -forced%5:00:00:affected:01 00073761 4 0 -forced%5:00:00:involuntary:01 02521890 2 1 -forced%5:00:00:unscheduled:00 02367477 3 0 -forced_feeding%1:04:00:: 01058291 1 0 -forced_landing%1:04:00:: 00052791 1 0 -forced_sale%1:10:00:: 06528557 1 1 -forceful%3:00:00:: 00841403 1 2 -forceful%5:00:00:assertive:00 00156575 2 0 -forcefully%4:02:00:: 00342351 1 0 -forcefulness%1:07:00:: 05035353 1 0 -forceless%3:00:00:: 00842914 1 1 -forcemeat%1:13:00:: 07679140 1 0 -forceps%1:06:00:: 03381231 1 0 -forceps_delivery%1:04:00:: 00186251 1 0 -forces_of_umar_al-mukhtar%1:14:00:: 08021785 1 0 -forcible%5:00:00:forceful:00 00842324 1 0 -forcibly%4:02:00:: 00342624 1 0 -forcing_out%1:04:00:: 00116687 1 0 -forcipate%3:01:00:: 02730212 1 0 -ford%1:04:00:: 00297657 8 0 -ford%1:17:00:: 09283623 7 0 -ford%1:18:00:: 10974592 6 0 -ford%1:18:01:: 10974740 5 0 -ford%1:18:02:: 10974971 4 0 -ford%1:18:03:: 10975101 3 0 -ford%1:18:04:: 10975202 2 0 -ford%1:18:05:: 10975304 1 0 -ford%2:38:00:: 01913849 1 0 -ford_hermann_hueffer%1:18:00:: 10974971 1 0 -ford_madox_ford%1:18:00:: 10974971 1 0 -fordable%5:00:00:shallow:01 00692255 1 0 -fordhooks%1:13:00:: 07729142 1 0 -fording%1:04:00:: 00297657 1 0 -fore%1:06:00:: 02880008 1 0 -fore%3:00:00:: 01033081 1 0 -fore%4:02:00:: 00275694 1 0 -fore-and-aft%5:00:00:lengthwise:00 01445320 1 0 -fore-and-aft_rig%1:06:00:: 03381664 1 0 -fore-and-aft_sail%1:06:00:: 03381776 1 0 -fore-and-aft_topsail%1:06:00:: 03410571 1 0 -fore-and-after%1:06:00:: 03381565 1 0 -fore-topmast%1:06:00:: 03383468 1 0 -fore-topsail%1:06:00:: 03383562 1 0 -fore-wing%1:05:00:: 02152064 1 0 -fore_edge%1:06:00:: 03382533 1 0 -fore_plane%1:06:00:: 03382969 1 0 -fore_wing%1:05:00:: 02152064 1 0 -forearm%1:08:00:: 05564323 1 1 -forearm%2:33:00:: 01087729 1 0 -forebear%1:18:00:: 10102369 1 0 -forebode%2:32:00:: 00917772 1 0 -foreboding%1:11:00:: 07286905 2 0 -foreboding%1:12:00:: 07522128 1 1 -foreboding%5:00:00:prophetic:00 01883106 1 0 -forebrain%1:08:00:: 05495981 1 0 -forecast%1:10:00:: 06749881 1 1 -forecast%2:31:00:: 00712135 2 2 -forecast%2:32:00:: 00926472 1 5 -forecast%2:32:01:: 00871942 3 1 -forecaster%1:18:00:: 10102506 1 0 -forecasting%1:10:00:: 06748969 1 1 -forecastle%1:06:00:: 03382104 1 0 -foreclose%2:40:00:: 02276568 2 1 -foreclose%2:41:00:: 02452885 1 1 -foreclosure%1:04:00:: 00090076 1 0 -forecourt%1:06:00:: 03382292 1 0 -foredate%2:30:00:: 00277086 1 0 -foredeck%1:06:00:: 03382413 1 0 -foredge%1:06:00:: 03382533 1 0 -foredoom%2:32:00:: 00907066 1 0 -forefather%1:18:00:: 10102800 1 1 -forefather%1:18:01:: 10102969 2 0 -forefend%2:41:00:: 02453321 1 0 -forefinger%1:08:00:: 05567381 1 3 -forefoot%1:05:00:: 02439728 1 0 -forefront%1:09:00:: 06209419 2 0 -forefront%1:15:00:: 08572467 1 0 -foregather%2:41:00:: 02428924 1 0 -forego%2:40:00:: 02303331 3 0 -forego%2:41:00:: 02534062 2 0 -forego%2:42:00:: 02712443 1 3 -foregoing%5:00:00:preceding:00 00126235 1 4 -foregone%5:00:00:past:00 01728919 1 0 -foregone_conclusion%1:07:00:: 04753455 2 0 -foregone_conclusion%1:11:00:: 07295850 1 0 -foreground%1:06:00:: 03382708 2 0 -foreground%1:09:00:: 05934278 1 2 -foreground%2:30:00:: 00514069 1 0 -foreground_processing%1:22:00:: 13483331 1 0 -foregrounding%1:22:00:: 13483331 1 0 -forehand%1:04:00:: 00567418 1 0 -forehand%3:00:00:: 01033708 1 0 -forehand_drive%1:04:00:: 00567685 1 0 -forehand_shot%1:04:00:: 00567418 1 0 -forehand_stroke%1:04:00:: 00567418 1 0 -forehanded%3:00:00:: 01033708 1 0 -forehanded%5:00:00:provident:00 01895630 2 0 -forehead%1:08:00:: 05602548 1 8 -forehead%1:08:01:: 05541231 2 0 -foreign%3:00:01:: 01034457 2 10 -foreign%3:00:02:: 01037540 1 20 -foreign%5:00:00:adulterating:00 02117464 4 1 -foreign%5:00:00:extrinsic:00 01349927 3 4 -foreign-born%5:00:00:foreign:01 01035559 1 0 -foreign_agent%1:18:00:: 10103228 1 0 -foreign_aid%1:21:00:: 13266515 1 0 -foreign_bill%1:21:00:: 13377749 1 0 -foreign_correspondent%1:18:00:: 10103315 1 0 -foreign_country%1:14:00:: 08168367 1 0 -foreign_direct_investment%1:04:00:: 01099768 1 0 -foreign_direct_investment%1:04:01:: 00785818 2 0 -foreign_draft%1:21:00:: 13377749 1 0 -foreign_exchange%1:21:00:: 13378348 1 1 -foreign_intelligence_service%1:14:00:: 08343905 1 0 -foreign_intelligence_surveillance_act%1:10:00:: 06565397 1 0 -foreign_intelligence_surveillance_court%1:14:00:: 08332485 1 0 -foreign_legion%1:14:00:: 08271941 1 0 -foreign_minister%1:18:00:: 10103794 1 0 -foreign_mission%1:14:00:: 08403225 1 0 -foreign_mission%1:14:01:: 08403082 2 0 -foreign_office%1:14:00:: 08114152 1 1 -foreign_policy%1:10:00:: 06660942 1 14 -foreign_service%1:14:00:: 08138466 1 0 -foreign_terrorist_organization%1:14:00:: 08392137 1 0 -foreigner%1:18:00:: 10103485 1 7 -foreigner%1:18:01:: 10103921 2 0 -foreignness%1:07:00:: 04799344 1 0 -foreknow%2:31:00:: 00720808 1 1 -foreknowledge%1:10:00:: 07256932 1 1 -forelady%1:18:00:: 10104983 1 0 -foreland%1:17:00:: 09399592 1 0 -foreland%1:17:01:: 09283767 2 0 -foreleg%1:05:00:: 02464965 1 0 -forelimb%1:05:00:: 02464785 1 0 -forelock%1:05:00:: 01900006 2 0 -forelock%1:08:00:: 05258051 1 0 -foreman%1:18:00:: 10104209 1 2 -foreman%1:18:01:: 10104487 2 0 -foremanship%1:04:00:: 00592535 1 0 -foremast%1:06:00:: 03382856 1 0 -foremilk%1:08:00:: 05399356 1 0 -foremost%4:02:00:: 00254614 1 0 -foremost%4:02:01:: 00102736 2 0 -foremost%5:00:00:best:00 00228294 1 2 -foremost%5:00:00:fore:00 01033249 3 0 -foremost%5:00:00:front:00 00198610 2 1 -foremother%1:18:00:: 10103155 1 0 -forename%1:10:00:: 06337307 1 0 -forenoon%1:28:00:: 15165289 1 0 -forensic%5:00:00:applied:00 00863361 2 0 -forensic%5:00:00:rhetorical:00 02017613 1 1 -forensic_medicine%1:09:00:: 06050257 1 0 -forensic_pathology%1:09:00:: 06050257 1 0 -forensics%1:04:00:: 00635422 1 0 -foreordain%2:31:00:: 00702969 2 0 -foreordain%2:31:01:: 00703310 1 0 -foreordained%5:00:00:certain:03 00341017 1 0 -foreordination%1:09:00:: 05966129 1 0 -forepart%1:15:00:: 08573472 1 0 -forepaw%1:05:00:: 02440121 1 0 -foreperson%1:18:00:: 10104592 1 0 -foreplay%1:04:00:: 00853835 1 0 -forequarter%1:13:00:: 07655898 1 0 -forerunner%1:10:00:: 06802571 2 1 -forerunner%1:18:00:: 09627117 1 1 -forerunner%1:24:00:: 13844923 3 0 -foresail%1:06:00:: 03383099 1 0 -foresee%2:31:00:: 00720808 1 5 -foresee%2:36:00:: 01636221 2 3 -foresee%2:41:00:: 02565491 3 2 -foreseeable%5:00:00:predictable:00 01841699 1 1 -foreshadow%2:32:00:: 00871942 1 0 -foreshadowing%1:09:00:: 05776015 1 0 -foreshadowing%5:00:00:prophetic:00 01882162 1 0 -foreshank%1:13:00:: 07657233 1 0 -foreshock%1:11:00:: 07429782 1 0 -foreshore%1:17:00:: 09283866 1 0 -foreshorten%2:30:00:: 00243900 1 1 -foreshorten%2:30:01:: 00244284 2 0 -foreshow%2:32:00:: 00924777 1 0 -foresight%1:07:00:: 04893172 1 1 -foresight%1:09:00:: 05805277 2 0 -foresighted%5:00:00:provident:00 01895296 1 0 -foresightedness%1:07:00:: 04893172 1 0 -foresightful%5:00:00:provident:00 01895296 1 0 -foresightfulness%1:07:00:: 04893172 1 0 -foreskin%1:08:00:: 05526957 2 0 -foreskin%1:08:01:: 05527085 1 0 -forest%1:14:00:: 08438533 1 36 -forest%1:17:00:: 09284015 2 2 -forest%2:35:00:: 01567888 1 0 -forest_fire%1:11:00:: 07303839 1 0 -forest_fire_fighter%1:18:00:: 10092098 1 0 -forest_goat%1:05:00:: 02428842 1 0 -forest_god%1:18:00:: 09548111 1 0 -forest_red_gum%1:20:00:: 12338655 1 0 -forest_tent_caterpillar%1:05:00:: 02307681 1 0 -forestage%1:06:00:: 04013362 1 0 -forestall%2:41:00:: 02565491 2 0 -forestall%2:41:01:: 02452885 1 4 -forestalling%1:04:00:: 01079042 1 0 -forestay%1:06:00:: 03383211 1 0 -forested%5:00:00:wooded:00 02573859 1 0 -forester%1:18:00:: 10104756 2 0 -forester%1:18:01:: 10975404 1 0 -forestiera%1:20:00:: 12302565 1 0 -forestiera_neomexicana%1:20:00:: 12302692 1 0 -forestry%1:09:00:: 06071934 1 0 -foreswear%2:40:00:: 02227487 2 0 -foreswear%2:41:00:: 02534062 1 0 -foretaste%1:09:00:: 05951072 1 0 -foretell%2:32:00:: 00917772 2 0 -foretell%2:32:01:: 00871942 3 0 -foretell%2:32:02:: 00974173 1 0 -foretelling%1:09:00:: 05776212 2 0 -foretelling%1:10:00:: 06748969 1 0 -forethought%1:09:00:: 05615869 2 0 -forethought%1:09:01:: 05796617 1 0 -forethoughtful%5:00:00:provident:00 01895717 1 0 -foretoken%1:11:00:: 07286014 1 0 -foretop%1:05:00:: 01900006 2 0 -foretop%1:06:00:: 03383378 1 0 -forever%4:02:00:: 00087542 1 14 -forever%4:02:02:: 00089076 2 2 -forever%4:02:03:: 00020280 3 2 -forever_and_a_day%4:02:00:: 00089076 1 0 -forevermore%4:02:00:: 00332596 1 0 -forewarn%2:32:00:: 00870942 1 0 -forewarning%1:10:00:: 07225450 1 0 -forewing%1:05:00:: 02152064 1 0 -forewoman%1:18:00:: 10104888 2 0 -forewoman%1:18:01:: 10104983 1 0 -foreword%1:10:00:: 06397903 1 0 -forfeit%1:04:00:: 00205891 3 0 -forfeit%1:21:00:: 13300922 2 0 -forfeit%1:21:01:: 13301174 1 0 -forfeit%2:40:00:: 02303331 1 2 -forfeit%5:00:00:lost:03 01452385 1 1 -forfeited%5:00:00:lost:03 01452385 1 0 -forfeiture%1:04:00:: 00205891 3 0 -forfeiture%1:21:00:: 13300922 2 0 -forfeiture%1:21:01:: 13301174 1 0 -forfend%2:41:00:: 02453321 1 0 -forficate%5:00:00:divided:00 02479602 1 0 -forficula%1:05:00:: 02273254 1 0 -forficula_auricularia%1:05:00:: 02273392 1 0 -forficulidae%1:05:00:: 02273120 1 0 -forgather%2:41:00:: 02428924 1 0 -forge%1:06:00:: 03383646 2 0 -forge%1:06:01:: 03383821 1 0 -forge%2:36:00:: 01675245 1 1 -forge%2:36:01:: 01654271 2 1 -forge%2:36:02:: 01658188 7 0 -forge%2:36:03:: 01659248 6 0 -forge%2:36:08:: 01632411 3 1 -forge%2:38:00:: 01884126 5 0 -forge%2:38:01:: 01884266 4 0 -forged%5:00:00:counterfeit:00 01117226 1 0 -forger%1:18:00:: 10105260 1 0 -forger%1:18:01:: 10105085 2 0 -forgery%1:04:01:: 00768921 2 0 -forgery%1:06:00:: 03562262 1 0 -forget%2:31:00:: 00609100 2 21 -forget%2:31:01:: 00610167 1 61 -forget%2:31:02:: 00613018 4 0 -forget%2:31:03:: 00614829 3 9 -forget-me-not%1:20:00:: 12822115 1 0 -forget_me_drug%1:06:00:: 04036494 1 0 -forgetful%3:00:01:: 02006031 1 1 -forgetful%3:00:02:: 01978003 2 0 -forgetful%5:00:00:inattentive:00 00165943 3 0 -forgetful_person%1:18:00:: 10555825 1 0 -forgetfully%4:02:00:: 00342782 1 0 -forgetfulness%1:09:00:: 05673209 1 3 -forgetfulness%1:09:01:: 05673908 2 0 -forgettable%3:00:00:: 01040239 1 0 -forging%1:04:00:: 00925622 1 0 -forgivable%5:00:00:pardonable:00 01721197 1 0 -forgivably%4:02:00:: 00333096 1 0 -forgive%2:32:00:: 00903385 1 24 -forgive%2:41:00:: 02564426 2 1 -forgiveness%1:04:00:: 01227190 2 0 -forgiveness%1:12:00:: 07554640 1 0 -forgiver%1:18:00:: 10399299 1 0 -forgiving%3:00:00:: 01040984 1 0 -forgiving%5:00:00:exculpatory:00 00923495 2 0 -forgivingly%4:02:00:: 00342904 1 0 -forgivingness%1:07:00:: 04829764 1 0 -forgo%2:40:00:: 02303331 3 0 -forgo%2:41:00:: 02534062 1 1 -forgo%2:42:00:: 02712443 2 0 -forgoing%1:04:00:: 00205079 1 0 -forgotten%5:00:00:unnoticed:00 01608465 1 5 -forint%1:23:00:: 13676544 1 0 -fork%1:04:00:: 00388392 2 2 -fork%1:06:00:: 03383948 1 4 -fork%1:06:02:: 03384167 4 1 -fork%1:08:00:: 05597436 5 0 -fork%1:25:00:: 13914265 3 1 -fork%2:30:00:: 00328802 3 0 -fork%2:30:01:: 00141914 4 0 -fork%2:33:00:: 01118888 2 0 -fork%2:35:00:: 01579340 1 0 -fork-like%5:00:00:divided:00 02479602 1 0 -fork_out%2:40:00:: 02293321 1 0 -fork_over%2:40:00:: 02293321 1 0 -fork_up%2:40:00:: 02293321 1 0 -forked%5:00:00:divided:00 02479602 1 1 -forked%5:00:00:equivocal:00 00896026 2 0 -forked_lightning%1:19:00:: 11459200 1 0 -forking%1:04:00:: 00388392 2 0 -forking%1:25:00:: 13886724 1 0 -forklift%1:06:00:: 03384352 1 0 -forlorn%5:00:00:hopeless:00 01230387 1 0 -forlorn_hope%1:04:00:: 00786102 1 0 -forlornly%4:02:00:: 00343250 1 0 -forlornness%1:12:00:: 07534108 1 0 -form%1:03:00:: 00027807 6 8 -form%1:06:00:: 03717921 15 0 -form%1:06:01:: 03384535 16 0 -form%1:07:00:: 04677514 7 3 -form%1:07:01:: 05064037 4 23 -form%1:07:02:: 05200670 14 0 -form%1:07:03:: 04930478 11 1 -form%1:08:00:: 05217168 5 19 -form%1:09:00:: 05930736 3 40 -form%1:09:01:: 05839024 2 62 -form%1:10:00:: 06290637 1 96 -form%1:10:01:: 06473563 8 2 -form%1:10:02:: 07092356 10 1 -form%1:14:00:: 08238463 13 0 -form%1:14:02:: 08111157 9 1 -form%1:26:00:: 14480065 12 0 -form%2:30:01:: 00142191 4 12 -form%2:30:05:: 00144850 7 0 -form%2:36:00:: 01659248 5 11 -form%2:41:00:: 02448185 1 28 -form%2:41:02:: 02430922 6 3 -form%2:42:00:: 02621395 2 26 -form%2:42:02:: 02623906 3 18 -form-only%5:00:00:formal:01 01043070 1 0 -form_bubbles%2:30:00:: 00519363 1 0 -form_class%1:10:00:: 06317464 1 0 -form_division%1:14:00:: 08221747 1 0 -form_family%1:14:00:: 08108450 1 0 -form_genus%1:05:00:: 01325206 2 0 -form_genus%1:14:00:: 08110197 1 0 -form_genus_rhizoctinia%1:20:00:: 13082293 1 0 -form_letter%1:10:00:: 06625465 1 0 -form_of_address%1:10:00:: 06339416 1 0 -form_of_government%1:14:00:: 08367880 1 1 -formal%1:06:00:: 03201638 2 0 -formal%1:11:00:: 07448885 1 0 -formal%3:00:01:: 01041916 1 13 -formal%3:00:02:: 01045216 3 2 -formal%5:00:00:dignified:00 00751838 6 0 -formal%5:00:00:logical:00 01430628 5 0 -formal%5:00:00:nonrepresentational:00 01980796 4 0 -formal%5:00:00:official:00 01633153 2 3 -formal_garden%1:06:00:: 03384706 1 0 -formal_logic%1:09:00:: 06164665 1 1 -formal_semantics%1:09:00:: 06180282 1 0 -formaldehyde%1:27:00:: 14873196 1 0 -formalin%1:27:00:: 14848479 1 0 -formalisation%1:04:00:: 01009637 1 0 -formalise%2:41:00:: 02478936 1 0 -formalise%2:41:01:: 02478701 2 0 -formalised%3:01:00:: 02730304 1 0 -formalised%5:00:00:official:00 01633316 2 0 -formalism%1:04:00:: 00411717 3 0 -formalism%1:09:00:: 05971621 2 0 -formalism%1:09:01:: 05961867 1 2 -formalistic%3:01:00:: 02730304 1 0 -formalities%1:11:00:: 07455007 1 0 -formality%1:04:00:: 01204055 3 0 -formality%1:07:00:: 04911420 2 0 -formality%1:11:00:: 07455007 1 0 -formalization%1:04:00:: 01009637 1 0 -formalize%2:41:00:: 02478936 1 0 -formalize%2:41:01:: 02478701 2 0 -formalized%3:01:00:: 02730304 1 1 -formalized%5:00:00:official:00 01633316 2 0 -formally%4:02:00:: 00186366 2 1 -formally%4:02:01:: 00186491 1 5 -formalness%1:07:00:: 04911420 1 0 -formalwear%1:06:00:: 03384891 1 0 -format%1:07:00:: 04677385 2 0 -format%1:10:00:: 06636806 1 0 -format%2:30:09:: 00563552 3 0 -format%2:31:10:: 00700336 2 0 -format%2:36:00:: 01745141 1 0 -formation%1:04:00:: 00925207 2 4 -formation%1:04:01:: 00237078 3 4 -formation%1:04:02:: 00927516 7 0 -formation%1:06:00:: 03385117 5 3 -formation%1:14:00:: 08426461 1 7 -formation%1:17:00:: 09287968 4 3 -formation%1:22:00:: 13483488 6 0 -formative%1:10:00:: 06306480 1 1 -formative%5:00:01:constructive:00 00585398 2 0 -formative%5:00:02:constructive:00 00585597 1 0 -formative_cell%1:08:00:: 05447757 1 0 -formatted_capacity%1:23:00:: 13755342 1 0 -formatting%1:10:00:: 06636806 1 0 -formed%3:00:00:: 02143056 1 0 -former%1:24:00:: 13846356 1 0 -former%3:00:00:: 01047301 1 21 -former%5:00:00:past:00 01729384 4 0 -former%5:00:01:past:00 01729566 2 20 -former%5:00:02:past:00 01729819 3 4 -former_armed_forces%1:14:00:: 08016900 1 0 -formerly%4:02:00:: 00118965 1 7 -formic%3:01:00:: 02730673 2 0 -formic%3:01:01:: 02730770 1 0 -formic_acid%1:27:00:: 14873344 1 0 -formica%1:05:00:: 02221240 2 0 -formica%1:06:00:: 03385295 1 0 -formica_fusca%1:05:00:: 02221715 1 0 -formica_rufa%1:05:00:: 02221414 1 0 -formica_sanguinea%1:05:00:: 02222035 1 0 -formicariidae%1:05:00:: 01552956 1 0 -formicarius%1:05:00:: 01553380 1 0 -formicary%1:17:00:: 09199101 1 0 -formicate%2:38:00:: 01886228 1 0 -formication%1:26:00:: 14325006 1 0 -formicidae%1:05:00:: 02219234 1 0 -formidability%1:07:00:: 04710866 1 0 -formidable%5:00:00:alarming:00 00195383 2 4 -formidable%5:00:01:impressive:00 01284836 1 4 -formidably%4:02:00:: 00343382 1 0 -formless%5:00:00:unbodied:00 00629382 2 0 -formless%5:00:00:unformed:00 02151837 1 0 -formlessly%4:02:00:: 00343542 1 0 -formol%1:27:00:: 14848479 1 0 -formosa%1:15:00:: 08730354 1 0 -formosan%1:10:00:: 06940701 1 0 -formosan%3:01:00:: 03122400 1 0 -formula%1:09:00:: 05667613 5 1 -formula%1:09:01:: 05846932 7 0 -formula%1:10:00:: 06731802 1 8 -formula%1:10:01:: 06732013 3 3 -formula%1:10:02:: 06788785 2 6 -formula%1:10:03:: 06816935 4 1 -formula%1:13:00:: 07845087 6 0 -formulaic%5:00:00:conventional:00 00606240 1 0 -formularise%2:32:00:: 00981083 1 0 -formularize%2:32:00:: 00981083 1 0 -formulary%1:10:00:: 06411883 1 0 -formulary%3:01:00:: 02730861 1 0 -formulate%2:32:00:: 00980453 3 4 -formulate%2:32:03:: 00925873 1 8 -formulate%2:36:00:: 01632411 2 4 -formulate%2:36:01:: 01633173 4 1 -formulated%5:00:00:developed:00 00742164 1 0 -formulation%1:04:00:: 00940842 2 2 -formulation%1:10:00:: 07069948 3 1 -formulation%1:27:00:: 14873641 1 11 -fornax%1:17:00:: 09284308 1 0 -fornicate%2:35:00:: 01427278 1 0 -fornication%1:04:00:: 00848745 1 0 -fornication%1:04:01:: 00848466 2 0 -fornicator%1:18:00:: 09772746 1 0 -fornicatress%1:18:00:: 09772930 1 0 -fornix%1:08:00:: 05227572 2 0 -fornix%1:08:01:: 05227868 1 0 -forrad%4:02:00:: 00074641 1 0 -forrader%4:02:00:: 00067265 1 0 -forrard%4:02:00:: 00074641 1 0 -forsake%2:31:00:: 00614057 1 4 -forsaking%1:04:00:: 00204439 2 0 -forsaking%1:04:01:: 00205543 1 0 -forseti%1:18:00:: 09579994 1 0 -forsooth%4:02:00:: 00038264 1 0 -forssman_antibody%1:27:00:: 15029292 1 0 -forswear%2:32:00:: 00798717 1 1 -forswearing%1:04:00:: 00205079 1 0 -forsythia%1:20:00:: 12303083 1 0 -fort%1:06:00:: 03386011 2 1 -fort%1:06:01:: 03420559 1 2 -fort%2:33:00:: 01155421 3 0 -fort%2:35:00:: 01606205 2 0 -fort%2:38:00:: 02023992 1 0 -fort-lamy%1:15:00:: 08720280 1 0 -fort_george_g._meade%1:15:00:: 09094581 1 0 -fort_george_gordon_meade%1:15:00:: 09094581 1 0 -fort_lauderdale%1:15:00:: 09072810 1 0 -fort_meade%1:15:00:: 09094581 1 0 -fort_myers%1:15:00:: 09073034 1 0 -fort_smith%1:15:00:: 09059876 1 0 -fort_ticonderoga%1:04:00:: 01279120 1 0 -fort_up%2:38:00:: 02023992 1 4 -fort_wayne%1:15:00:: 09085334 1 0 -fort_worth%1:15:00:: 09144323 1 2 -fortaz%1:06:00:: 02989685 1 0 -forte%1:06:00:: 03385420 3 0 -forte%1:07:00:: 04990781 2 0 -forte%1:07:01:: 05159225 1 1 -forte%3:00:00:: 01458736 1 0 -forte%4:02:00:: 00343799 1 0 -forte-piano%1:06:00:: 03928116 1 1 -fortemente%5:00:00:forte:00 01458941 1 0 -forth%1:17:00:: 09284433 1 0 -forth%4:02:00:: 00232936 1 3 -forth%4:02:01:: 00103859 2 1 -forth%4:02:02:: 00103761 3 1 -forth_river%1:17:00:: 09284433 1 0 -forthcoming%5:00:00:available:00 00184229 3 0 -forthcoming%5:00:00:future:00 01732601 2 0 -forthcoming%5:00:00:sociable:00 02258249 1 0 -forthcomingness%1:26:00:: 14030820 1 0 -forthright%4:02:00:: 00051590 1 0 -forthright%5:00:01:direct:02 00764484 1 2 -forthrightly%4:02:00:: 00051590 1 0 -forthrightness%1:07:00:: 04871720 1 0 -forthwith%4:02:00:: 00048739 1 1 -forties%1:28:00:: 15149351 1 1 -forties%1:28:01:: 15149472 2 0 -fortieth%1:24:00:: 13849082 1 0 -fortieth%5:00:00:ordinal:00 02206998 1 0 -fortification%1:04:00:: 00264529 3 0 -fortification%1:06:00:: 03385557 1 1 -fortification%1:09:00:: 05635624 2 0 -fortified%5:00:00:protected:00 01885275 1 1 -fortified%5:00:00:strong:00 02322391 2 0 -fortified_wine%1:13:00:: 07900406 1 0 -fortify%2:30:00:: 00222135 5 0 -fortify%2:30:01:: 00220869 1 4 -fortify%2:30:02:: 00222328 4 0 -fortify%2:33:00:: 01087197 3 0 -fortify%2:35:00:: 01606205 2 0 -fortissimo%1:07:00:: 04990781 1 0 -fortissimo%4:02:00:: 00344073 1 0 -fortissimo%5:00:00:forte:00 01459058 1 0 -fortitude%1:07:00:: 05032193 1 3 -fortnight%1:28:00:: 15170331 1 0 -fortnightly%4:02:00:: 00254711 1 0 -fortnightly%5:00:00:periodic:00 01969038 1 0 -fortran%1:10:00:: 06902362 1 0 -fortran_compiler%1:10:00:: 06574027 1 0 -fortran_program%1:10:00:: 06902521 1 0 -fortress%1:06:00:: 03386011 1 3 -fortuitous%5:00:00:fortunate:00 01048587 2 0 -fortuitous%5:00:00:unintended:00 01339203 1 0 -fortuitously%4:02:00:: 00042254 1 0 -fortuitousness%1:07:00:: 04758980 1 0 -fortuity%1:11:00:: 07300960 1 0 -fortuna%1:18:00:: 09573405 1 0 -fortunate%3:00:00:: 01047874 1 7 -fortunate%5:00:00:auspicious:00 00176676 3 0 -fortunate%5:00:00:blessed:00 00670938 2 1 -fortunately%4:02:00:: 00042254 1 4 -fortune%1:19:00:: 11418138 1 4 -fortune%1:19:01:: 11418460 3 2 -fortune%1:21:00:: 13370938 2 3 -fortune%1:26:00:: 14473222 4 1 -fortune_cookie%1:13:00:: 07638439 1 0 -fortune_hunter%1:18:00:: 10105359 1 0 -fortune_teller%1:18:00:: 10105462 1 0 -fortune_telling%1:09:00:: 05776212 1 0 -fortunella%1:20:00:: 12712820 1 0 -fortunella_japonica%1:20:00:: 12713358 1 0 -fortunella_margarita%1:20:00:: 12713521 1 0 -fortuneteller%1:18:00:: 10105462 1 0 -fortunetelling%1:10:00:: 06749468 1 0 -forty%1:23:00:: 13749527 1 0 -forty%5:00:00:cardinal:00 02190278 1 14 -forty-eight%5:00:00:cardinal:00 02191040 1 0 -forty-eighth%5:00:00:ordinal:00 02207913 1 0 -forty-fifth%5:00:00:ordinal:00 02207566 1 0 -forty-first%5:00:00:ordinal:00 02207105 1 0 -forty-five%1:06:00:: 03386343 1 0 -forty-five%5:00:00:cardinal:00 02190755 1 0 -forty-four%5:00:00:cardinal:00 02190660 1 0 -forty-fourth%5:00:00:ordinal:00 02207450 1 0 -forty-nine%5:00:00:cardinal:00 02191139 1 0 -forty-niner%1:18:00:: 10105618 1 0 -forty-ninth%5:00:00:ordinal:00 02208030 1 0 -forty-one%5:00:00:cardinal:00 02190377 1 0 -forty-second%5:00:00:ordinal:00 02207219 1 0 -forty-seven%5:00:00:cardinal:00 02190942 1 0 -forty-seventh%5:00:00:ordinal:00 02207795 1 0 -forty-six%5:00:00:cardinal:00 02190849 1 0 -forty-sixth%5:00:00:ordinal:00 02207681 1 0 -forty-third%5:00:00:ordinal:00 02207334 1 0 -forty-three%5:00:00:cardinal:00 02190562 1 0 -forty-two%5:00:00:cardinal:00 02190469 1 0 -forty_winks%1:04:00:: 00858377 1 0 -forum%1:06:00:: 03386420 2 0 -forum%1:14:00:: 08309754 1 0 -forward%1:04:00:: 00725383 2 0 -forward%1:18:00:: 10105733 1 0 -forward%2:38:00:: 01955508 1 3 -forward%3:00:01:: 00203237 1 8 -forward%3:00:02:: 00204491 2 0 -forward%3:00:03:: 00203774 3 0 -forward%4:02:00:: 00074641 1 53 -forward%4:02:01:: 00067265 4 3 -forward%4:02:02:: 00075442 3 3 -forward%4:02:03:: 00103859 2 5 -forward%4:02:04:: 00275694 5 0 -forward%5:00:00:progressive:01 01876555 4 0 -forward-looking%5:00:00:progressive:01 01876261 1 0 -forward-moving%5:00:00:progressive:01 01876555 1 1 -forward_market%1:06:00:: 03408918 1 0 -forward_motion%1:04:00:: 00282050 1 0 -forward_pass%1:04:00:: 00561226 1 0 -forward_passer%1:18:00:: 10404242 1 0 -forwarding%1:04:01:: 00121645 1 1 -forwarding%1:04:02:: 00249780 2 0 -forwardness%1:07:00:: 04644719 3 0 -forwardness%1:07:01:: 05046865 2 0 -forwardness%1:07:02:: 05167412 1 0 -forwards%4:02:00:: 00067265 2 0 -forwards%4:02:01:: 00074641 1 0 -foryml%1:27:00:: 14860455 1 0 -fosamax%1:06:00:: 02696384 1 0 -fosbury%1:18:00:: 10975583 1 0 -fosbury_flop%1:04:00:: 00440643 1 0 -fossa%1:05:00:: 02136623 2 0 -fossa%1:05:01:: 02136452 3 0 -fossa%1:25:00:: 13872211 1 0 -fossa_cat%1:05:00:: 02136452 1 0 -fossa_fossa%1:05:00:: 02136794 1 0 -fosse%1:06:00:: 03776050 1 0 -fossil%1:17:00:: 09284589 2 0 -fossil%1:18:00:: 10022908 1 0 -fossil%3:01:00:: 02730982 1 0 -fossil_copal%1:27:00:: 14895373 1 0 -fossil_fuel%1:27:00:: 14686352 1 0 -fossil_oil%1:27:00:: 14980579 1 0 -fossiliferous%3:01:00:: 02731061 1 0 -fossilisation%1:04:00:: 00201269 2 0 -fossilisation%1:22:00:: 13483726 1 0 -fossilise%2:30:00:: 00507664 1 0 -fossilise%2:30:02:: 00249556 2 0 -fossilised%5:00:00:inflexible:02 01025397 1 0 -fossilist%1:18:00:: 10394786 1 0 -fossilization%1:04:00:: 00201269 2 0 -fossilization%1:22:00:: 13483726 1 0 -fossilize%2:30:00:: 00507664 1 0 -fossilize%2:30:02:: 00249556 2 0 -fossilized%5:00:00:inflexible:02 01025397 1 0 -fossilology%1:09:00:: 06073888 1 0 -fossorial%3:00:00:: 02590614 1 0 -fossorial_foot%1:05:00:: 02153712 1 0 -fossorial_mammal%1:05:00:: 02153809 1 0 -foster%1:18:00:: 10975796 1 0 -foster%2:32:00:: 00908351 3 0 -foster%2:41:00:: 02554422 1 13 -foster%2:41:01:: 02540569 2 0 -foster%5:00:00:adoptive:00 01406418 1 0 -foster-brother%1:18:00:: 10105906 1 0 -foster-child%1:18:00:: 10106080 1 0 -foster-daughter%1:18:00:: 10106242 1 0 -foster-father%1:18:00:: 10106387 1 0 -foster-mother%1:18:00:: 10106509 1 0 -foster-nurse%1:18:00:: 10106642 1 0 -foster-parent%1:18:00:: 10106752 1 0 -foster-sister%1:18:00:: 10106995 1 0 -foster-son%1:18:00:: 10107173 1 0 -foster_brother%1:18:00:: 10105906 1 0 -foster_care%1:04:00:: 01131993 1 0 -foster_child%1:18:00:: 10106080 1 0 -foster_daughter%1:18:00:: 10106242 1 0 -foster_family%1:14:00:: 07973782 1 0 -foster_father%1:18:00:: 10106387 1 0 -foster_home%1:14:00:: 07973868 1 1 -foster_mother%1:18:00:: 10106509 1 0 -foster_parent%1:18:00:: 10106752 1 1 -foster_sister%1:18:00:: 10106995 1 0 -foster_son%1:18:00:: 10107173 1 0 -fosterage%1:04:00:: 01129532 2 0 -fosterage%1:10:00:: 07252206 1 0 -fostering%1:04:00:: 01129532 2 0 -fostering%1:10:00:: 07252206 1 1 -fosterling%1:18:00:: 10106080 1 0 -fothergilla%1:20:00:: 12315999 1 0 -fothergilla%1:20:01:: 12315818 2 0 -fots%1:06:00:: 03331820 1 0 -foucault%1:18:00:: 10976004 1 0 -foucault_pendulum%1:06:00:: 03386544 1 0 -foul%1:04:01:: 00770997 1 0 -foul%2:30:00:: 00492225 7 0 -foul%2:30:01:: 00492310 6 0 -foul%2:30:02:: 00492410 5 0 -foul%2:30:03:: 00492706 2 1 -foul%2:33:00:: 01147709 4 0 -foul%2:33:01:: 01147855 1 1 -foul%2:35:00:: 01478603 3 0 -foul%3:00:00:: 00955915 4 0 -foul%5:00:00:dirty:01 00421590 7 0 -foul%5:00:00:dirty:02 00425313 6 0 -foul%5:00:00:illegible:00 01405390 5 0 -foul%5:00:00:malodorous:00 01053634 2 1 -foul%5:00:00:offensive:01 01625893 1 1 -foul%5:00:00:tangled:00 00255308 8 0 -foul%5:00:00:unfair:00 00957743 3 1 -foul-mouthed%5:00:00:dirty:02 00425588 1 0 -foul-smelling%5:00:00:malodorous:00 01053634 1 2 -foul-spoken%5:00:00:dirty:02 00425588 1 0 -foul-up%1:04:00:: 00074790 1 0 -foul-weather_gear%1:06:00:: 03386870 1 0 -foul_ball%1:04:00:: 00128091 1 0 -foul_line%1:15:00:: 08572726 3 0 -foul_line%1:15:01:: 08572877 2 0 -foul_line%1:15:02:: 08573010 1 0 -foul_out%2:35:00:: 01404774 1 1 -foul_play%1:04:00:: 00746116 1 0 -foul_shot%1:04:00:: 00110964 1 0 -foul_up%2:41:00:: 02527651 1 1 -foulard%1:06:00:: 03386726 1 0 -fouled%5:00:00:dirty:01 00420480 1 1 -fouled%5:00:00:tangled:00 00255308 2 0 -foully%4:02:00:: 00344208 2 0 -foully%4:02:01:: 00344312 1 0 -foulmart%1:05:00:: 02443114 1 0 -foulness%1:07:00:: 04980656 4 0 -foulness%1:07:01:: 05037037 3 0 -foulness%1:26:00:: 14495761 2 0 -foulness%1:26:01:: 14563222 1 0 -foumart%1:05:00:: 02443114 1 0 -found%1:21:00:: 13280008 1 1 -found%2:31:00:: 00636888 3 0 -found%2:36:00:: 01647229 2 4 -found%2:41:00:: 02427103 1 9 -found%3:00:00:: 01450713 1 1 -foundation%1:04:00:: 00240184 7 0 -foundation%1:06:00:: 03387016 3 1 -foundation%1:06:01:: 03387323 6 0 -foundation%1:09:00:: 05793554 5 0 -foundation%1:09:01:: 05986594 4 0 -foundation%1:14:00:: 08406486 2 3 -foundation%1:24:00:: 13790712 1 6 -foundation_garment%1:06:00:: 03387323 1 0 -foundation_stone%1:06:00:: 03387506 1 0 -founder%1:18:00:: 10107303 2 1 -founder%1:18:01:: 10107778 3 0 -founder%1:26:00:: 14348895 1 1 -founder%2:38:00:: 01989053 3 0 -founder%2:38:01:: 01990168 2 0 -founder%2:38:02:: 01900648 4 0 -founder%2:41:00:: 02530003 1 0 -foundering%1:11:00:: 07364573 1 0 -founding%1:04:00:: 00240184 1 2 -founding_father%1:18:00:: 10107303 2 0 -founding_father%1:18:01:: 10107604 1 0 -foundling%1:18:00:: 10107883 1 0 -foundling_hospital%1:06:00:: 03129471 1 0 -foundress%1:18:00:: 10108018 1 0 -foundry%1:06:00:: 03387653 1 1 -foundry_proof%1:10:00:: 06591224 1 0 -fount%1:06:00:: 03387815 2 0 -fount%1:10:00:: 06825399 1 0 -fountain%1:06:00:: 03387815 4 0 -fountain%1:06:01:: 03387926 3 0 -fountain%1:06:02:: 03388043 1 2 -fountain%1:17:00:: 09443453 2 0 -fountain_grass%1:20:00:: 12129134 1 0 -fountain_of_youth%1:17:00:: 09284917 1 0 -fountain_pen%1:06:00:: 03388183 1 0 -fountainhead%1:10:00:: 06675979 1 1 -fountainhead%1:15:00:: 08508449 2 0 -fouquieria%1:20:00:: 12381666 1 0 -fouquieria_columnaris%1:20:00:: 12382233 1 0 -fouquieria_splendens%1:20:00:: 12381931 1 0 -fouquieriaceae%1:20:00:: 12381321 1 0 -four%1:06:00:: 03388826 2 0 -four%1:23:00:: 13744304 1 15 -four%5:00:00:cardinal:00 02186665 1 130 -four-card_monte%1:04:00:: 00493031 1 0 -four-centered_arch%1:06:00:: 04495555 1 0 -four-dimensional%5:00:00:multidimensional:00 00661146 1 0 -four-flusher%1:18:00:: 09861718 1 0 -four-fold%5:00:00:multiple:00 02219287 1 0 -four-fold%5:00:01:multiple:00 02219144 2 0 -four-footed%3:00:00:: 00241816 1 0 -four-footed_butterfly%1:05:00:: 02274822 1 0 -four-four_time%1:28:00:: 15264010 1 0 -four-hitter%1:04:00:: 00475535 1 0 -four-hundredth%5:00:00:ordinal:00 02212231 1 0 -four-in-hand%1:06:00:: 03055670 2 0 -four-in-hand%1:06:01:: 03388323 1 0 -four-lane%5:00:00:multilane:00 02221951 1 0 -four-letter_anglo-saxon_word%1:10:00:: 06291122 1 0 -four-letter_word%1:10:00:: 06291122 1 0 -four-lined_leaf_bug%1:05:00:: 02237868 1 0 -four-lined_plant_bug%1:05:00:: 02237868 1 0 -four-lobed%5:00:00:multilateral:00 00239520 1 0 -four-membered%5:00:00:membered:00 01502925 1 0 -four-minute_man%1:18:00:: 10108089 1 0 -four-needled%5:00:00:simple:01 02169175 1 0 -four-o'clock_family%1:20:00:: 11835806 1 0 -four-part_harmony%1:10:00:: 07027805 1 0 -four-party%5:00:00:multilateral:00 00239090 1 0 -four-petaled%5:00:00:petalous:00 01775768 1 0 -four-petalled%5:00:00:petalous:00 01775768 1 0 -four-ply%5:00:00:thick:01 02411322 1 0 -four-poster%1:06:00:: 03388549 1 0 -four-pounder%1:06:00:: 03388711 1 0 -four-pronged%5:00:00:divided:00 02481793 1 0 -four-sided%5:00:00:multilateral:00 00238400 1 1 -four-spot%1:06:00:: 03388826 1 0 -four-stroke_engine%1:06:00:: 03388990 1 0 -four-stroke_internal-combustion_engine%1:06:00:: 03388990 1 0 -four-tailed_bandage%1:06:00:: 03389353 1 0 -four-wheel%3:01:00:: 02731461 1 0 -four-wheel_drive%1:06:00:: 03389611 2 0 -four-wheel_drive%1:06:01:: 03389761 1 0 -four-wheeled%3:01:00:: 02731461 1 0 -four-wheeler%1:06:00:: 03389889 1 0 -four-wing_flying_fish%1:05:00:: 02550780 1 0 -four-year-old%5:00:00:young:00 01647829 1 0 -four_flush%1:04:00:: 00756598 1 0 -four_horsemen%1:07:00:: 05144880 1 0 -four_hundred%1:14:00:: 08251493 1 1 -four_hundred%5:00:00:cardinal:00 02198520 1 0 -four_o'clock%1:20:00:: 11839568 1 0 -four_times%4:02:00:: 00344500 1 2 -fourfold%4:02:00:: 00344500 1 0 -fourfold%5:00:00:multiple:00 02219287 2 0 -fourfold%5:00:01:multiple:00 02219144 1 1 -fourfold_point_correlation%1:09:00:: 06035413 1 0 -fourhanded%3:01:00:: 02731334 1 0 -fourier%1:18:00:: 10976256 2 0 -fourier%1:18:01:: 10976468 1 0 -fourier_analysis%1:09:00:: 06014278 1 0 -fourier_series%1:09:00:: 05863583 1 0 -fourpence%1:21:00:: 13391262 1 0 -fourpenny%5:00:00:sized:00 02223263 1 0 -fourpenny_nail%1:06:00:: 03388466 1 0 -fourscore%1:23:00:: 13750164 1 0 -fourscore%5:00:00:cardinal:00 02194151 1 0 -foursome%1:14:00:: 07987380 1 1 -foursome%1:23:00:: 13744304 2 0 -foursquare%1:25:00:: 13878634 1 0 -foursquare%4:02:00:: 00051017 2 0 -foursquare%4:02:01:: 00231244 1 0 -foursquare%5:00:00:resolute:00 01991029 1 0 -fourteen%1:23:00:: 13747348 1 1 -fourteen%5:00:00:cardinal:00 02187699 1 8 -fourteenth%1:24:00:: 13848249 1 0 -fourteenth%5:00:00:ordinal:00 02203868 1 1 -fourteenth_amendment%1:10:00:: 06728726 1 0 -fourth%1:10:00:: 06859674 3 0 -fourth%1:23:00:: 13737480 2 0 -fourth%1:24:00:: 13847124 1 1 -fourth%4:02:00:: 00344771 1 2 -fourth%5:00:00:ordinal:00 02202443 1 33 -fourth-year%5:00:00:last:00 01013681 1 0 -fourth_council_of_constantinople%1:14:00:: 08314901 1 0 -fourth_cranial_nerve%1:08:00:: 05478684 1 0 -fourth_crusade%1:04:00:: 00969684 1 0 -fourth_deck%1:06:00:: 03855908 1 0 -fourth_dimension%1:28:00:: 15135822 1 2 -fourth_earl_of_chesterfield%1:18:00:: 10895073 1 0 -fourth_earl_of_orford%1:18:00:: 11372599 1 0 -fourth_estate%1:14:00:: 08168241 1 0 -fourth_lateran_council%1:14:00:: 08316019 1 0 -fourth_of_july%1:28:00:: 15190084 1 1 -fourth_part%1:23:00:: 13737480 1 0 -fourth_power%1:23:00:: 13731356 1 0 -fourth_stomach%1:05:00:: 02399942 1 0 -fourth_ventricle%1:08:00:: 05502855 1 0 -fourthly%4:02:00:: 00344771 1 0 -fovea%1:08:00:: 05455375 1 0 -fovea_centralis%1:08:00:: 05455375 1 0 -foveal_vision%1:09:00:: 05656722 1 0 -fowl%1:05:00:: 01789740 1 1 -fowl%1:13:00:: 07644382 2 0 -fowl%2:33:00:: 01142899 2 0 -fowl%2:33:01:: 01145944 1 0 -fowl_cholera%1:26:00:: 14263562 1 0 -fowl_pest%1:26:00:: 14263753 1 0 -fowl_run%1:06:00:: 03016737 1 0 -fowler%1:18:00:: 10108240 2 0 -fowler%1:18:01:: 10976708 1 0 -fowling_piece%1:06:00:: 03389983 1 0 -fox%1:05:00:: 02118333 1 3 -fox%1:10:00:: 06909848 7 0 -fox%1:18:00:: 10022759 2 1 -fox%1:18:01:: 09655569 6 0 -fox%1:18:02:: 10976862 5 0 -fox%1:18:03:: 10976997 4 0 -fox%1:27:00:: 14764910 3 0 -fox%2:30:00:: 00510234 3 0 -fox%2:31:00:: 00621734 2 0 -fox%2:41:00:: 02575723 1 0 -fox-trot%1:04:00:: 00535956 1 0 -fox_grape%1:13:00:: 07758950 2 0 -fox_grape%1:20:00:: 13145040 1 0 -fox_hole%1:06:00:: 03390075 1 0 -fox_hunter%1:18:00:: 10108348 1 0 -fox_hunting%1:04:00:: 00453478 1 0 -fox_river%1:17:00:: 09285128 1 0 -fox_shark%1:05:00:: 01486010 1 0 -fox_squirrel%1:05:00:: 02356798 1 0 -fox_talbot%1:18:00:: 11329281 1 0 -fox_terrier%1:05:00:: 02095050 1 2 -foxberry%1:20:00:: 12249542 1 0 -foxglove%1:20:00:: 12882779 1 0 -foxglove_family%1:20:00:: 12876032 1 0 -foxhole%1:06:00:: 03390075 1 0 -foxhound%1:05:00:: 02089555 1 0 -foxhunt%1:04:00:: 00453478 1 0 -foxhunt%2:33:00:: 01145024 1 0 -foxily%4:02:00:: 00293926 1 0 -foxiness%1:09:00:: 05621178 1 0 -foxtail%1:20:00:: 12107970 1 0 -foxtail_barley%1:20:00:: 12123932 1 0 -foxtail_grass%1:20:00:: 12107970 2 0 -foxtail_grass%1:20:02:: 13223843 1 0 -foxtail_millet%1:20:00:: 12135270 1 0 -foxtail_orchid%1:20:00:: 12081649 1 0 -foxtrot%1:04:00:: 00535956 1 0 -foxtrot%2:38:00:: 01896213 1 0 -foxy%5:00:00:artful:00 00148078 1 0 -foyer%1:06:00:: 02715513 1 3 -fpd%1:06:00:: 03361380 1 0 -fps%1:14:00:: 08351777 1 0 -fr%1:27:00:: 14637864 1 0 -fra_filippo_lippi%1:18:00:: 11134196 1 0 -fracas%1:10:00:: 07184545 1 2 -fractal%1:09:00:: 05931152 1 0 -fractal_geometry%1:09:00:: 06006609 1 0 -fraction%1:06:00:: 03390207 2 5 -fraction%1:23:00:: 13732078 3 2 -fraction%1:27:00:: 14922107 1 22 -fraction%2:31:00:: 00642098 1 0 -fractional%3:00:00:: 00516539 1 1 -fractional_currency%1:21:00:: 13386334 1 0 -fractional_distillation%1:22:00:: 13483971 1 0 -fractional_monetary_unit%1:23:00:: 13662703 1 0 -fractional_process%1:22:00:: 13484082 1 0 -fractionate%2:35:00:: 01459542 2 0 -fractionate%2:35:01:: 01459696 1 3 -fractionation%1:04:00:: 00389508 2 2 -fractionation%1:22:00:: 13484082 1 2 -fractious%5:00:00:difficult:00 00747226 3 0 -fractious%5:00:00:disobedient:00 01614127 1 0 -fractious%5:00:00:ill-natured:00 01136541 2 0 -fractiously%4:02:00:: 00344933 2 0 -fractiously%4:02:01:: 00419144 1 0 -fractiousness%1:07:00:: 04908396 1 0 -fracture%1:04:00:: 00376994 3 0 -fracture%1:17:00:: 09278537 2 0 -fracture%1:26:00:: 14292090 1 0 -fracture%2:29:00:: 00107739 6 0 -fracture%2:29:01:: 00107943 5 0 -fracture%2:29:02:: 00108303 4 0 -fracture%2:30:01:: 00203739 1 1 -fracture%2:30:10:: 00335366 3 0 -fracture%2:36:00:: 01621084 2 0 -fradicin%1:06:00:: 03818090 1 0 -fragaria%1:20:00:: 12629946 1 0 -fragaria_ananassa%1:20:00:: 12630478 1 0 -fragaria_chiloensis%1:20:00:: 12630763 1 0 -fragaria_vesca%1:20:00:: 12630641 1 0 -fragaria_virginiana%1:20:00:: 12630999 1 0 -fragile%5:00:00:breakable:00 00709215 1 3 -fragile%5:00:00:delicate:00 00706688 2 2 -fragile%5:00:00:insignificant:00 02164913 3 0 -fragile_fern%1:20:00:: 13196003 1 0 -fragility%1:07:01:: 05043755 1 0 -fragility%1:07:02:: 05041503 2 0 -fragment%1:06:00:: 04184701 2 1 -fragment%1:10:00:: 07008680 3 0 -fragment%1:17:01:: 09285254 1 7 -fragment%2:30:00:: 00338071 1 0 -fragmental%5:00:00:fractional:00 00517314 1 0 -fragmentary%5:00:00:fractional:00 00517314 1 5 -fragmentation%1:04:00:: 00388210 1 1 -fragmentation%1:11:00:: 07409121 4 0 -fragmentation%1:22:00:: 13484303 3 0 -fragmentation%1:26:00:: 13993517 2 0 -fragmentation_bomb%1:06:00:: 03390327 1 0 -fragmented%5:00:00:divided:00 02481012 1 0 -fragmentise%2:30:00:: 00338071 1 0 -fragmentize%2:30:00:: 00338071 1 0 -fragonard%1:18:00:: 10977159 1 0 -fragrance%1:07:00:: 04980463 2 0 -fragrance%1:09:00:: 05714466 1 1 -fragrancy%1:07:00:: 04980463 1 0 -fragrant%3:00:00:: 01052248 1 2 -fragrant_agrimony%1:20:00:: 12623211 1 0 -fragrant_bedstraw%1:20:00:: 12665271 1 0 -fragrant_cliff_fern%1:20:00:: 13193269 1 0 -fragrant_orchid%1:20:00:: 12064389 1 0 -fragrant_shield_fern%1:20:00:: 13193269 1 0 -fragrant_sumac%1:20:00:: 12763291 1 0 -fragrant_water_lily%1:20:00:: 11715430 1 0 -fragrant_wood_fern%1:20:00:: 13193269 1 0 -fragrant_woodsia%1:20:00:: 13202125 1 0 -frail%1:06:00:: 03390673 2 0 -frail%1:23:00:: 13718046 1 0 -frail%3:00:00:: 02040049 1 4 -frail%5:00:00:breakable:00 00709215 3 0 -frail%5:00:00:human:00 01259391 2 0 -frailness%1:26:00:: 14547643 1 0 -frailty%1:07:00:: 04853873 2 0 -frailty%1:26:00:: 14547643 1 0 -fraise%1:06:00:: 03390786 2 0 -fraise%1:06:01:: 03390886 1 0 -frambesia%1:26:00:: 14144761 1 1 -framboesia%1:26:00:: 14144761 1 0 -framboise%1:20:00:: 12656369 1 0 -frame%1:04:01:: 00462116 11 0 -frame%1:06:00:: 03390983 10 0 -frame%1:06:01:: 04226537 9 0 -frame%1:06:02:: 03391301 1 7 -frame%1:06:03:: 03391464 2 5 -frame%1:08:00:: 05585383 8 0 -frame%1:08:01:: 05217168 3 3 -frame%1:09:00:: 05663104 7 0 -frame%1:10:00:: 07003568 5 0 -frame%1:10:01:: 06570805 6 0 -frame%1:28:00:: 15255804 4 2 -frame%2:31:00:: 00706804 5 1 -frame%2:32:00:: 00981276 4 1 -frame%2:35:00:: 01586850 1 4 -frame%2:36:00:: 01655763 6 0 -frame%2:41:00:: 02578008 3 1 -frame%2:42:00:: 02711835 2 3 -frame-up%1:04:00:: 00751398 1 0 -frame_buffer%1:06:00:: 03391613 1 0 -frame_in%2:35:00:: 01586850 1 2 -frame_of_mind%1:26:00:: 14016114 1 0 -frame_of_reference%1:09:00:: 05728024 1 0 -frame_of_reference%1:09:01:: 05663104 2 0 -frame_up%2:36:00:: 01655763 1 1 -framed%3:00:00:: 01096750 1 1 -framer%1:18:00:: 10108464 2 0 -framer%1:18:01:: 10108606 1 0 -framework%1:06:00:: 03391770 3 0 -framework%1:07:00:: 04933363 2 1 -framework%1:09:00:: 05890249 1 3 -framing%1:04:00:: 00941451 1 1 -framing%1:06:00:: 03390983 2 0 -franc%1:23:00:: 13662190 1 1 -franc-tireur%1:18:00:: 10108937 1 0 -france%1:15:00:: 08929922 1 10 -france%1:18:00:: 10977368 2 0 -frances_eliza_hodgson_burnett%1:18:00:: 10873303 1 0 -frances_elizabeth_caroline_willard%1:18:00:: 11388141 1 0 -frances_hodgson_burnett%1:18:00:: 10873303 1 0 -frances_wright%1:18:00:: 11398344 1 0 -francesco_della_rovere%1:18:00:: 11304139 1 0 -francesco_petrarca%1:18:00:: 11231683 1 0 -franche-comte%1:15:00:: 08942277 1 0 -franchise%1:07:00:: 05187446 3 0 -franchise%1:10:00:: 06526811 1 2 -franchise%1:14:00:: 08060193 2 0 -franchise%2:41:00:: 02447542 1 0 -franchise_tax%1:21:00:: 13312962 1 0 -francis_albert_sinatra%1:18:00:: 11302062 1 0 -francis_bacon%1:18:00:: 10830456 1 0 -francis_beaumont%1:18:00:: 10839329 1 0 -francis_crick%1:18:00:: 10915173 1 0 -francis_drake%1:18:00:: 10942866 1 0 -francis_edgar_stanley%1:18:00:: 11313357 1 0 -francis_everett_townsend%1:18:00:: 11347080 1 0 -francis_ferdinand%1:18:00:: 10977660 1 0 -francis_ford_coppola%1:18:00:: 10910305 1 0 -francis_galton%1:18:00:: 10988570 1 0 -francis_henry_compton_crick%1:18:00:: 10915173 1 0 -francis_hopkinson%1:18:00:: 11060241 1 0 -francis_ii%1:18:00:: 10977542 1 0 -francis_joseph%1:18:00:: 10977881 1 0 -francis_joseph_i%1:18:00:: 10977881 1 0 -francis_of_assisi%1:18:00:: 10978098 1 0 -francis_peyton_rous%1:18:00:: 11272523 1 0 -francis_poulenc%1:18:00:: 11244419 1 0 -francis_richard_stockton%1:18:00:: 11318692 1 0 -francis_scott_key%1:18:00:: 11103104 1 0 -francis_scott_key_fitzgerald%1:18:00:: 10972094 1 0 -francis_turbine%1:06:00:: 03392648 1 0 -francis_turner_palgrave%1:18:00:: 11221389 1 0 -franciscan%1:18:00:: 10778553 1 0 -franciscan%3:01:00:: 03066658 1 0 -franciscan_order%1:14:00:: 08149314 1 0 -francisco_de_goya%1:18:00:: 11009773 1 0 -francisco_fernandez_cordoba%1:18:00:: 10910769 1 0 -francisco_fernandez_de_cordova%1:18:00:: 10910769 1 0 -francisco_franco%1:18:00:: 10978842 1 0 -francisco_goya%1:18:00:: 11009773 1 0 -francisco_jimenez_de_cisneros%1:18:00:: 11084895 1 0 -francisco_jose_de_goya%1:18:00:: 11009773 1 0 -francisco_jose_de_goya_y_lucientes%1:18:00:: 11009773 1 0 -francisco_pizarro%1:18:00:: 11238726 1 0 -francisco_villa%1:18:00:: 11366405 1 0 -francisella%1:05:00:: 01365474 1 0 -francisella_tularensis%1:05:00:: 01365684 1 0 -francium%1:27:00:: 14637864 1 0 -franck%1:18:00:: 10978422 2 0 -franck%1:18:01:: 10978693 1 0 -franco%1:18:00:: 10978842 1 0 -franco-american%1:18:00:: 09742188 1 0 -franco-prussian_war%1:04:00:: 01304629 1 0 -francoa%1:20:00:: 12797693 1 0 -francoa_ramosa%1:20:00:: 12797860 1 0 -francois-marie_arouet%1:18:00:: 11368638 1 0 -francois_auguste_rene_rodin%1:18:00:: 11267949 1 0 -francois_charles_mauriac%1:18:00:: 11165519 1 0 -francois_couperin%1:18:00:: 10913010 1 0 -francois_de_la_rochefoucauld%1:18:00:: 11117931 1 0 -francois_duvalier%1:18:00:: 10946624 1 0 -francois_jacob%1:18:00:: 11077484 1 0 -francois_mansart%1:18:00:: 11154355 1 0 -francois_marie_charles_fourier%1:18:00:: 10976256 1 0 -francois_mauriac%1:18:00:: 11165519 1 0 -francois_maurice_marie_mitterrand%1:18:00:: 11183605 1 0 -francois_mitterrand%1:18:00:: 11183605 1 0 -francois_rabelais%1:18:00:: 11251225 1 0 -francois_rene_chateaubriand%1:18:00:: 10893830 1 0 -francois_truffaut%1:18:00:: 11349635 1 0 -francois_villon%1:18:00:: 11366787 1 0 -francoise-athenais_de_rochechouart%1:18:00:: 11186685 1 0 -francoise_d'aubigne%1:18:00:: 11150224 1 0 -francophil%1:18:00:: 10108719 1 0 -francophile%1:18:00:: 10108719 1 0 -francophobe%1:18:00:: 10108832 1 0 -frangibility%1:07:00:: 05043755 1 0 -frangible%5:00:00:breakable:00 00709446 1 0 -frangibleness%1:07:00:: 05043755 1 0 -frangipane%1:13:00:: 07623475 1 0 -frangipani%1:20:00:: 11774513 1 1 -frangipanni%1:20:00:: 11774513 1 0 -frank%1:13:00:: 07676602 2 0 -frank%1:18:00:: 09688804 1 0 -frank%2:32:00:: 00894080 2 0 -frank%2:35:00:: 01274104 1 0 -frank%5:00:00:direct:02 00764484 1 3 -frank%5:00:00:obvious:00 01619379 2 0 -frank_baum%1:18:00:: 10838665 1 0 -frank_breech%1:04:00:: 00185612 1 0 -frank_breech_delivery%1:04:00:: 00185612 1 0 -frank_capra%1:18:00:: 10881986 1 0 -frank_cooper%1:18:00:: 10909303 1 0 -frank_harris%1:18:00:: 11030679 1 0 -frank_lloyd_wright%1:18:00:: 11398489 1 0 -frank_morrison_spillane%1:18:00:: 11311287 1 0 -frank_norris%1:18:00:: 11209543 1 0 -frank_philip_stella%1:18:00:: 11316003 1 0 -frank_sinatra%1:18:00:: 11302062 1 0 -frank_stella%1:18:00:: 11316003 1 0 -frank_stockton%1:18:00:: 11318692 1 0 -frank_whittle%1:18:00:: 11385442 1 0 -frank_winfield_woolworth%1:18:00:: 11397271 1 0 -frankenstein%1:18:00:: 09599195 3 0 -frankenstein%1:18:01:: 09599401 2 0 -frankenstein%1:26:00:: 14007750 1 0 -frankenstein's_monster%1:18:00:: 09599401 1 0 -frankfort%1:15:00:: 08772922 2 0 -frankfort%1:15:01:: 09089631 1 0 -frankfurt%1:15:00:: 08772922 1 0 -frankfurt_on_the_main%1:15:00:: 08772922 1 0 -frankfurter%1:13:00:: 07676602 1 0 -frankfurter_bun%1:13:00:: 07690019 1 0 -frankincense%1:27:00:: 14873951 1 0 -frankincense_pine%1:20:00:: 11615387 1 0 -franking_machine%1:06:00:: 03392741 1 0 -frankish%3:01:00:: 02731616 1 0 -franklin%1:18:00:: 10109050 3 0 -franklin%1:18:01:: 10979079 2 0 -franklin%1:18:02:: 10979535 1 0 -franklin_delano_roosevelt%1:18:00:: 11270023 1 0 -franklin_pierce%1:18:00:: 11234813 1 0 -franklin_roosevelt%1:18:00:: 11270023 1 0 -frankliniella%1:05:00:: 02272152 1 0 -frankliniella_fusca%1:05:00:: 02272286 1 0 -frankly%4:02:00:: 00314835 1 5 -frankness%1:07:00:: 04871720 1 0 -frankness%1:07:01:: 04650731 2 0 -frans_hals%1:18:00:: 11025508 1 0 -frantic%5:00:00:agitated:00 00086341 1 10 -frantic%5:00:00:wild:02 02390724 2 1 -frantically%4:02:00:: 00503370 1 5 -franz_anton_mesmer%1:18:00:: 11176932 1 0 -franz_ferdinand%1:18:00:: 10977660 1 0 -franz_josef_i%1:18:00:: 10977881 1 0 -franz_joseph%1:18:00:: 10977881 1 0 -franz_joseph_haydn%1:18:00:: 11035780 1 0 -franz_joseph_kline%1:18:00:: 11107757 1 0 -franz_kafka%1:18:00:: 11095731 1 0 -franz_kline%1:18:00:: 11107757 1 0 -franz_lehar%1:18:00:: 11125080 1 0 -franz_liszt%1:18:00:: 11135236 1 0 -franz_peter_schubert%1:18:00:: 11286618 1 0 -franz_schubert%1:18:00:: 11286618 1 0 -franz_seraph_peter_schubert%1:18:00:: 11286618 1 0 -franz_werfel%1:18:00:: 11381583 1 0 -frap%2:30:00:: 00420337 2 0 -frap%2:35:00:: 01303855 1 0 -frappe%1:13:01:: 07614198 3 0 -frappe%1:13:02:: 07923576 2 0 -frappe%1:13:03:: 07923665 1 0 -fraser_fir%1:20:00:: 11622184 1 0 -frasera%1:20:00:: 12292655 1 0 -frasera_speciosa%1:20:00:: 12293180 1 0 -frat%1:14:00:: 08229467 1 0 -frat_house%1:06:00:: 03007297 1 0 -fratercula%1:05:00:: 02047835 1 0 -fratercula_arctica%1:05:00:: 02047975 1 0 -fratercula_corniculata%1:05:00:: 02048115 1 0 -fraternal%3:00:00:: 00292298 2 0 -fraternal%3:00:02:: 00291471 3 0 -fraternal%3:01:01:: 02731699 1 0 -fraternal_twin%1:18:00:: 10109197 1 0 -fraternally%4:02:00:: 00345070 1 0 -fraternisation%1:04:00:: 01081867 1 1 -fraternise%2:41:00:: 02389927 1 0 -fraternity%1:14:00:: 08075388 2 1 -fraternity%1:14:01:: 08229467 1 1 -fraternity_house%1:06:00:: 03007297 1 0 -fraternization%1:04:00:: 01081867 1 0 -fraternize%2:41:00:: 02389927 1 2 -fratricide%1:04:00:: 00221981 3 0 -fratricide%1:04:01:: 00990963 2 0 -fratricide%1:18:00:: 10109342 1 0 -frau%1:10:00:: 06340707 1 0 -fraud%1:04:00:: 00769092 1 5 -fraud%1:04:01:: 00753685 3 2 -fraud%1:18:00:: 10201535 2 2 -fraud_in_fact%1:04:00:: 00778213 1 0 -fraud_in_law%1:04:00:: 00778405 1 0 -fraud_in_the_factum%1:04:00:: 00778575 1 0 -fraud_in_the_inducement%1:04:00:: 00778809 1 0 -fraudulence%1:04:00:: 00753685 3 0 -fraudulence%1:07:00:: 04875352 2 0 -fraudulence%1:10:00:: 06760969 1 0 -fraudulent%5:00:00:dishonest:00 01223941 1 0 -fraudulent_scheme%1:04:00:: 00775943 1 0 -fraudulently%4:02:00:: 00345149 1 0 -fraught%5:00:00:full:00 01084900 2 0 -fraught%5:00:00:troubled:00 02457932 1 0 -fraulein%1:10:00:: 06340838 1 0 -fraxinella%1:20:00:: 12712626 1 0 -fraxinus%1:20:00:: 12303349 1 0 -fraxinus_americana%1:20:00:: 12304115 1 0 -fraxinus_caroliniana%1:20:00:: 12304286 1 0 -fraxinus_cuspidata%1:20:00:: 12304420 1 0 -fraxinus_dipetala%1:20:00:: 12304572 1 0 -fraxinus_excelsior%1:20:00:: 12304703 1 0 -fraxinus_latifolia%1:20:00:: 12304899 1 0 -fraxinus_nigra%1:20:00:: 12305089 1 0 -fraxinus_oregona%1:20:00:: 12304899 1 0 -fraxinus_ornus%1:20:00:: 12305293 1 0 -fraxinus_pennsylvanica%1:20:00:: 12305475 1 0 -fraxinus_pennsylvanica_subintegerrima%1:20:00:: 12305654 1 0 -fraxinus_quadrangulata%1:20:00:: 12305819 1 0 -fraxinus_texensis%1:20:00:: 12305986 1 0 -fraxinus_tomentosa%1:20:00:: 12306089 1 0 -fraxinus_velutina%1:20:00:: 12306270 1 0 -fray%1:04:00:: 01176335 1 0 -fray%2:35:00:: 01369204 1 0 -fray%2:35:01:: 01250908 2 0 -frayed%5:00:01:worn:00 02582163 1 1 -frazer%1:18:00:: 10979694 1 0 -frazzle%1:26:00:: 14018055 1 0 -frazzle%2:29:00:: 00075708 2 0 -frazzle%2:35:00:: 01369204 1 0 -freak%1:18:00:: 10109443 1 4 -freak%1:18:01:: 09769076 2 0 -freak%2:37:00:: 01784148 1 0 -freak_out%1:09:00:: 05898430 1 0 -freak_out%2:37:00:: 01784148 1 0 -freakish%5:00:00:abnormal:00 01597387 2 0 -freakish%5:00:00:unconventional:01 00608791 3 0 -freakish%5:00:00:unpredictable:00 01842304 1 0 -freakishly%4:02:00:: 00281687 1 0 -freakishness%1:07:00:: 04798185 1 0 -freaky%5:00:00:strange:00 00968957 1 0 -freaky%5:00:00:unconventional:01 00608791 2 0 -freckle%1:08:00:: 05245192 1 1 -freckle%2:30:00:: 00509857 2 0 -freckle%2:30:01:: 00510116 1 0 -freckled%5:00:00:patterned:00 01788843 1 0 -fred_astaire%1:18:00:: 10826352 1 0 -fred_hoyle%1:18:00:: 11063309 1 0 -fred_sanger%1:18:00:: 11280653 1 0 -fred_skinner%1:18:00:: 11304461 1 0 -fred_zinnemann%1:18:00:: 11407175 1 0 -freddie_mac%1:14:00:: 08384539 1 0 -frederic_auguste_bartholdi%1:18:00:: 10836555 1 0 -frederic_francois_chopin%1:18:00:: 10896644 1 0 -frederic_goudy%1:18:00:: 11009115 1 0 -frederic_william_goudy%1:18:00:: 11009115 1 0 -frederic_william_maitland%1:18:00:: 11150471 1 0 -frederick%1:15:00:: 09094791 1 0 -frederick_barbarossa%1:18:00:: 10979887 1 0 -frederick_carleton_lewis%1:18:00:: 11131135 1 0 -frederick_childe_hassam%1:18:00:: 11033992 1 0 -frederick_delius%1:18:00:: 10929316 1 0 -frederick_douglass%1:18:00:: 10941515 1 0 -frederick_i%1:18:00:: 10979887 2 0 -frederick_i%1:18:01:: 10980097 1 0 -frederick_ii%1:18:00:: 10980256 2 0 -frederick_ii%1:18:01:: 10980448 1 0 -frederick_jackson_turner%1:18:00:: 11352701 1 0 -frederick_james_furnivall%1:18:00:: 10986272 1 0 -frederick_law_olmsted%1:18:00:: 11214513 1 0 -frederick_loewe%1:18:00:: 11137334 1 0 -frederick_moore_vinson%1:18:00:: 11367035 1 0 -frederick_north%1:18:00:: 11209790 1 0 -frederick_sanger%1:18:00:: 11280653 1 0 -frederick_soddy%1:18:00:: 11307587 1 0 -frederick_the_great%1:18:00:: 10980448 1 0 -frederick_william%1:18:00:: 10980681 1 0 -frederick_william_i%1:18:00:: 10980893 1 0 -frederick_william_ii%1:18:00:: 10981089 1 0 -frederick_william_iii%1:18:00:: 10981251 1 0 -frederick_william_iv%1:18:00:: 10981409 1 0 -fredericksburg%1:04:00:: 01279342 2 0 -fredericksburg%1:15:00:: 09152080 1 0 -frederico_garcia_lorca%1:18:00:: 10989977 1 0 -fredericton%1:15:00:: 08824654 1 0 -free%1:14:00:: 07947958 1 0 -free%2:30:01:: 00269682 11 0 -free%2:32:00:: 00902424 8 1 -free%2:35:01:: 01475953 7 1 -free%2:35:02:: 01528522 3 3 -free%2:36:03:: 01757994 10 0 -free%2:40:01:: 02316304 9 0 -free%2:40:02:: 02350175 2 3 -free%2:41:00:: 02421374 1 6 -free%2:41:01:: 02494047 5 1 -free%2:41:02:: 02422026 6 1 -free%2:41:07:: 02564146 4 1 -free%3:00:00:: 01061489 1 38 -free%3:00:01:: 01065694 6 0 -free%3:00:02:: 01058363 2 4 -free%4:02:00:: 00358021 1 0 -free%5:00:00:inexact:00 00916199 9 0 -free%5:00:00:nonexistent:00 00927978 8 0 -free%5:00:00:unfixed:00 01060947 5 1 -free%5:00:00:unpaid:00 01710260 3 3 -free%5:00:01:unoccupied:00 01624115 7 0 -free%5:00:02:unoccupied:00 01624010 4 3 -free-and-easy%5:00:00:informal:01 01044730 1 0 -free-associate%2:31:00:: 00714718 1 0 -free-base%2:34:00:: 01200068 1 0 -free-enterprise%5:00:00:capitalistic:00 00297755 1 0 -free-flying%5:00:00:aerial:00 01380571 1 0 -free-for-all%1:04:00:: 01176431 1 0 -free-lance%1:18:00:: 10110421 1 0 -free-lance%3:00:00:: 00863823 1 0 -free-lance%5:00:00:paid:00 01709081 2 0 -free-liver%1:18:00:: 10110731 1 0 -free-living%5:00:00:independent:00 00728993 1 0 -free-range%5:00:00:unconfined:00 00559530 1 0 -free-reed%1:06:00:: 03393199 1 0 -free-reed_instrument%1:06:00:: 03393324 1 0 -free-soil%5:00:00:free:01 01065941 1 0 -free-spoken%5:00:00:direct:02 00764484 1 0 -free-swimming%5:00:00:vagile:00 00160288 1 3 -free-tailed_bat%1:05:00:: 02149420 1 0 -free-thinking%5:00:00:broad-minded:00 00287275 1 0 -free_agency%1:26:00:: 14000642 1 0 -free_agent%1:18:00:: 10109662 2 0 -free_agent%1:18:01:: 10109826 1 0 -free_association%1:09:00:: 05771532 1 0 -free_burning%5:00:00:continuous:01 00596358 1 7 -free_central_placentation%1:20:00:: 11681692 1 0 -free_electron%1:17:00:: 09285648 1 0 -free_energy%1:19:00:: 11452218 1 0 -free_enterprise%1:14:00:: 08364959 1 0 -free_fall%1:07:00:: 05111835 2 0 -free_fall%1:11:00:: 07362699 1 0 -free_form%1:10:00:: 06306842 1 0 -free_french%1:14:00:: 08114581 1 0 -free_grace%1:07:00:: 04840715 1 0 -free_hand%1:26:00:: 13993685 1 0 -free_house%1:06:00:: 03393017 1 0 -free_kick%1:04:00:: 00137534 1 0 -free_lance%1:18:00:: 10110421 1 0 -free_list%1:10:00:: 06491168 1 0 -free_living%1:07:00:: 04931041 1 0 -free_love%1:04:00:: 00848282 1 0 -free_lunch%1:21:00:: 13264522 1 0 -free_morpheme%1:10:00:: 06306842 1 0 -free_nerve_ending%1:08:00:: 05469240 1 0 -free_of_charge%4:02:00:: 00258175 1 0 -free_pardon%1:04:00:: 01249315 1 0 -free_people%1:14:00:: 07947958 1 0 -free_phagocyte%1:08:00:: 05451265 1 0 -free_port%1:15:00:: 08639586 1 0 -free_port%1:15:01:: 08638033 2 0 -free_press%1:10:00:: 06263202 1 0 -free_radical%1:27:00:: 14874196 1 2 -free_rein%1:26:00:: 13993842 1 1 -free_soil_party%1:14:00:: 08260002 1 0 -free_spirit%1:18:00:: 10109662 1 0 -free_state%1:15:00:: 09050089 2 0 -free_state%1:15:01:: 09093608 1 0 -free_state%1:15:02:: 09001184 3 0 -free_thought%1:09:00:: 06223922 1 0 -free_throw%1:04:00:: 00110964 1 0 -free_throw_lane%1:06:00:: 03393534 1 0 -free_time%1:04:00:: 01065687 2 0 -free_time%1:28:00:: 15137425 1 0 -free_trade%1:04:00:: 01092643 1 0 -free_trader%1:18:00:: 10111358 1 1 -free_verse%1:10:00:: 06380373 1 0 -free_weight%1:06:00:: 04571292 1 0 -free_will%1:07:00:: 05198756 1 1 -free_world%1:14:00:: 08168737 1 2 -free_zone%1:15:00:: 08639586 1 0 -freebee%1:21:00:: 13272545 1 0 -freebie%1:21:00:: 13272545 1 0 -freeboard_deck%1:06:00:: 03392908 1 0 -freebooter%1:18:00:: 10443170 1 0 -freeborn%5:00:00:free:01 01065861 1 0 -freedman%1:18:00:: 10109985 1 0 -freedom%1:26:00:: 13991823 1 26 -freedom%1:26:01:: 14528873 2 1 -freedom_fighter%1:18:00:: 10210137 1 0 -freedom_from_cruel_and_unusual_punishment%1:07:00:: 05185752 1 0 -freedom_from_discrimination%1:07:00:: 05186766 1 0 -freedom_from_double_jeopardy%1:07:00:: 05185106 1 0 -freedom_from_involuntary_servitude%1:07:00:: 05185921 1 0 -freedom_from_search_and_seizure%1:07:00:: 05184461 1 0 -freedom_from_self-incrimination%1:07:00:: 05184810 1 0 -freedom_of_assembly%1:07:00:: 05184082 1 0 -freedom_of_religion%1:07:00:: 05183624 1 0 -freedom_of_speech%1:07:00:: 05183779 1 0 -freedom_of_the_press%1:07:00:: 05183932 1 0 -freedom_of_the_seas%1:26:00:: 13994014 1 0 -freedom_of_thought%1:07:00:: 05182354 1 1 -freedom_party%1:14:00:: 08023843 1 0 -freedom_rider%1:18:00:: 10110093 1 0 -freedom_to_bear_arms%1:07:00:: 05184313 1 0 -freedwoman%1:18:00:: 10109985 1 0 -freehand%5:00:00:original:00 01687030 1 3 -freehanded%5:00:00:generous:01 01111418 2 0 -freehanded%5:00:00:original:00 01687030 1 0 -freehearted%5:00:00:generous:01 01111312 1 0 -freehold%1:21:00:: 13243134 2 0 -freehold%1:21:01:: 13243261 1 0 -freeholder%1:18:00:: 10110287 1 0 -freeing%1:04:00:: 00095502 1 0 -freelance%1:18:00:: 10110421 1 0 -freelance%2:41:00:: 02576110 1 0 -freelance%3:00:00:: 00863823 1 0 -freelance%5:00:00:paid:00 01709081 2 0 -freelancer%1:18:00:: 10110421 1 0 -freeload%2:40:00:: 02270648 1 0 -freeloader%1:18:00:: 10110893 1 0 -freely%4:02:00:: 00210651 1 8 -freemail%1:10:00:: 06279805 1 0 -freeman%1:18:00:: 10111023 1 2 -freemason%1:18:00:: 10111144 1 0 -freemasonry%1:14:00:: 08235513 2 0 -freemasonry%1:26:00:: 13930073 1 0 -freesia%1:20:00:: 12417062 1 0 -freestanding%5:00:00:detached:00 00160768 1 0 -freestone%1:13:00:: 07738105 1 0 -freestyle%1:11:00:: 07460651 1 0 -freetail%1:05:00:: 02149420 1 0 -freetailed_bat%1:05:00:: 02149420 1 0 -freethinker%1:18:00:: 10000459 1 0 -freethinking%1:09:00:: 05966958 1 0 -freetown%1:15:00:: 08997132 1 0 -freeware%1:10:00:: 06567865 1 0 -freeway%1:06:00:: 03306610 1 7 -freewheel%1:06:00:: 03393761 1 0 -freewheel%2:38:00:: 01886907 2 0 -freewheel%2:42:00:: 02617338 1 0 -freewheeler%1:18:00:: 10109662 1 1 -freewheeling%5:00:00:irresponsible:00 01998260 2 0 -freewheeling%5:00:00:unrestrained:00 02001240 1 1 -freewill%5:00:00:voluntary:01 02520824 1 0 -freewoman%1:18:00:: 10111023 1 0 -freeze%1:04:01:: 01063697 3 0 -freeze%1:04:02:: 00808767 4 0 -freeze%1:19:00:: 11440521 2 0 -freeze%1:22:01:: 13484644 1 0 -freeze%2:29:00:: 00078138 3 3 -freeze%2:29:01:: 00021997 9 0 -freeze%2:29:02:: 00012613 10 0 -freeze%2:30:00:: 00374135 2 5 -freeze%2:30:01:: 00363493 5 1 -freeze%2:30:02:: 00375865 4 1 -freeze%2:30:03:: 00269423 8 0 -freeze%2:30:04:: 00445711 7 0 -freeze%2:38:00:: 01834730 1 5 -freeze%2:43:10:: 02758826 6 0 -freeze-dried%5:00:01:preserved:02 01072782 2 0 -freeze-dried%5:00:02:preserved:02 01072908 1 0 -freeze-dry%2:30:00:: 00211852 1 0 -freeze-drying%1:22:00:: 13484937 1 0 -freeze_down%2:30:00:: 00445711 1 2 -freeze_off%2:32:00:: 00796976 1 0 -freeze_out%2:30:00:: 00445711 1 2 -freezer%1:06:00:: 03170635 1 0 -freezing%1:22:00:: 13484644 1 1 -freezing_mixture%1:27:00:: 14874564 1 0 -freezing_point%1:07:00:: 05013967 1 0 -fregata%1:05:00:: 02052639 1 0 -fregatidae%1:05:00:: 02052511 1 0 -freight%1:04:00:: 01106272 2 1 -freight%1:06:00:: 02964389 1 4 -freight%1:21:00:: 13326198 3 0 -freight%2:35:00:: 01489161 2 0 -freight%2:38:00:: 01951276 1 0 -freight_agent%1:18:00:: 10111463 1 0 -freight_car%1:06:00:: 03393912 1 2 -freight_elevator%1:06:00:: 03394149 1 0 -freight_liner%1:06:00:: 03394272 1 0 -freight_rate%1:21:00:: 13326198 1 0 -freight_train%1:06:00:: 03394480 1 0 -freightage%1:04:00:: 01106272 2 0 -freightage%1:21:00:: 13326198 1 0 -freighter%1:06:00:: 02878222 1 1 -fremont%1:18:00:: 10981569 1 0 -fremontia%1:20:00:: 12198628 1 0 -fremontodendron%1:20:00:: 12198628 1 0 -french%1:10:00:: 06964901 1 6 -french%1:18:00:: 09732903 2 3 -french%1:18:01:: 10981750 3 0 -french%2:35:00:: 01299127 1 0 -french%3:01:00:: 02958392 1 9 -french-fried_potatoes%1:13:00:: 07711080 1 0 -french-fry%2:30:00:: 00326310 1 0 -french-speaking%5:00:00:communicative:00 00497535 1 0 -french_academy%1:14:00:: 08280813 1 0 -french_and_indian_war%1:04:00:: 01304820 1 0 -french_bean%1:13:00:: 07728585 1 0 -french_blue%1:27:00:: 15083283 1 0 -french_bracken%1:20:00:: 12953484 1 0 -french_bread%1:13:00:: 07687469 1 0 -french_bulldog%1:05:00:: 02108915 1 0 -french_canadian%1:18:00:: 09696763 1 1 -french_capital%1:15:00:: 08932568 1 0 -french_chalk%1:27:00:: 15066666 1 0 -french_congo%1:15:00:: 08734044 1 0 -french_door%1:06:00:: 03394649 1 0 -french_dressing%1:13:00:: 07833816 1 0 -french_endive%1:13:00:: 07731767 1 0 -french_foreign_legion%1:14:00:: 08272086 1 0 -french_foreign_office%1:14:00:: 08114400 1 0 -french_franc%1:23:00:: 13677788 1 0 -french_fries%1:13:00:: 07711080 1 0 -french_fritter%1:13:00:: 07639716 1 0 -french_guinea%1:15:00:: 08947319 1 0 -french_heel%1:06:00:: 03394816 1 0 -french_honeysuckle%1:20:01:: 12534862 2 0 -french_honeysuckle%1:20:02:: 12951146 1 0 -french_horn%1:06:00:: 03394916 1 1 -french_indochina%1:15:00:: 08731953 1 0 -french_kiss%1:04:00:: 00138799 1 0 -french_knot%1:06:00:: 03395095 1 0 -french_lavender%1:20:01:: 12850168 2 0 -french_lavender%1:20:02:: 12850336 1 0 -french_leave%1:04:00:: 00053405 1 0 -french_lesson%1:04:00:: 00729637 1 0 -french_loaf%1:13:00:: 07684084 1 0 -french_marigold%1:20:00:: 12020941 1 0 -french_oceania%1:15:00:: 08989697 1 0 -french_omelet%1:13:00:: 07843117 1 0 -french_pancake%1:13:00:: 07641138 1 0 -french_pastry%1:13:00:: 07626959 1 0 -french_people%1:18:00:: 09732903 1 0 -french_person%1:18:00:: 09708405 1 0 -french_polish%1:06:00:: 03395256 2 0 -french_polish%1:07:00:: 04955426 1 0 -french_polish_shellac%1:06:00:: 03395256 1 0 -french_polynesia%1:15:00:: 08989697 1 0 -french_region%1:15:00:: 08939562 1 0 -french_republic%1:15:00:: 08929922 1 0 -french_revolution%1:04:00:: 01305007 1 4 -french_riviera%1:15:00:: 08939437 1 0 -french_roof%1:06:00:: 03395401 1 0 -french_rye%1:20:00:: 12108871 1 0 -french_sorrel%1:13:00:: 07736527 2 0 -french_sorrel%1:20:00:: 12604845 1 0 -french_spinach%1:20:00:: 11830252 1 0 -french_sudan%1:15:00:: 08965598 1 0 -french_teacher%1:18:00:: 10111601 1 1 -french_telephone%1:06:00:: 03488438 1 0 -french_toast%1:13:00:: 07868200 1 0 -french_ultramarine%1:27:00:: 15083283 1 0 -french_ultramarine_blue%1:27:00:: 15083283 1 1 -french_vermouth%1:13:00:: 07899434 1 0 -french_weed%1:20:00:: 11898775 1 0 -french_west_indies%1:15:00:: 08747887 1 0 -french_window%1:06:00:: 03395514 1 1 -frenchify%2:30:00:: 00410649 2 0 -frenchify%2:30:01:: 00410817 1 0 -frenchman%1:18:00:: 09708405 1 5 -frenchwoman%1:18:00:: 09708405 1 0 -frenetic%5:00:00:agitated:00 00086341 1 0 -frenetically%4:02:00:: 00106036 1 0 -frenzied%5:00:00:agitated:00 00086341 2 0 -frenzied%5:00:00:wild:02 02391003 1 1 -frenziedly%4:02:01:: 00345284 1 2 -frenzy%1:26:00:: 14391876 1 6 -freon%1:27:00:: 14874731 1 0 -frequence%1:28:00:: 15278281 1 0 -frequency%1:23:00:: 13598237 3 2 -frequency%1:24:00:: 13821570 2 11 -frequency%1:28:00:: 15278281 1 12 -frequency-response_characteristic%1:10:00:: 07000716 1 0 -frequency-response_curve%1:10:00:: 07000716 1 0 -frequency_band%1:10:00:: 06260628 1 0 -frequency_distribution%1:09:00:: 06025521 1 0 -frequency_modulation%1:10:00:: 06281721 1 0 -frequency_response%1:07:00:: 05020019 1 0 -frequent%2:38:00:: 01844431 2 1 -frequent%2:41:00:: 02466134 1 1 -frequent%3:00:00:: 01066542 1 9 -frequent%5:00:00:common:01 00486990 2 3 -frequentative%1:10:00:: 06473041 1 0 -frequenter%1:18:00:: 10407726 1 0 -frequently%4:02:00:: 00035058 1 39 -fresco%1:04:00:: 00937105 2 0 -fresco%1:06:00:: 03395630 1 0 -fresco%2:36:00:: 01683271 1 0 -fresh%3:00:01:: 01067694 1 16 -fresh%3:00:02:: 01071198 5 2 -fresh%3:00:03:: 01073707 6 0 -fresh%4:02:00:: 00112601 1 1 -fresh%5:00:00:clean:01 00418198 11 0 -fresh%5:00:00:forward:02 00205295 12 0 -fresh%5:00:00:invigorating:00 01357027 3 4 -fresh%5:00:00:new:00 01641648 2 5 -fresh%5:00:00:original:00 01687167 4 3 -fresh%5:00:00:pure:02 01906320 10 0 -fresh%5:00:00:rested:00 02434797 8 0 -fresh%5:00:00:unsoured:00 02370083 9 0 -fresh%5:00:00:wet:02 02554420 7 0 -fresh-cut%5:00:00:fresh:01 01068217 1 0 -fresh_bean%1:13:00:: 07727578 1 0 -fresh_breeze%1:19:00:: 11432887 1 0 -fresh_fish%1:18:00:: 09891300 1 2 -fresh_food%1:13:00:: 07572712 1 0 -fresh_foods%1:13:00:: 07572712 1 0 -fresh_gale%1:19:00:: 11462152 1 0 -fresh_start%1:26:00:: 14484646 1 0 -fresh_water%1:27:00:: 15009326 1 0 -freshen%2:29:00:: 00024649 3 0 -freshen%2:29:02:: 00024814 2 0 -freshen%2:30:00:: 00164444 1 0 -freshen_up%2:29:02:: 00024814 2 0 -freshen_up%2:30:00:: 00163441 1 0 -freshener%1:06:00:: 03395745 1 0 -fresher%1:18:00:: 10111688 1 0 -freshet%1:11:00:: 07407137 1 0 -freshly%4:02:00:: 00112601 1 1 -freshly%4:02:03:: 00366490 2 0 -freshman%1:18:00:: 10111688 1 2 -freshman%1:18:01:: 10355449 2 1 -freshman%5:00:00:first:00 01012247 1 0 -freshman_class%1:14:00:: 08239706 1 0 -freshness%1:07:00:: 04800596 2 1 -freshness%1:07:01:: 04926728 1 1 -freshness%1:07:02:: 04915866 5 0 -freshness%1:09:00:: 05635055 4 0 -freshness%1:26:00:: 14051056 3 0 -freshwater%1:27:00:: 15009326 1 0 -freshwater_bass%1:05:00:: 02564270 2 0 -freshwater_bass%1:13:00:: 07777512 1 0 -freshwater_bream%1:05:00:: 02563182 2 0 -freshwater_bream%1:13:00:: 07777358 1 0 -freshwater_clam%1:05:00:: 01964441 1 0 -freshwater_cordgrass%1:20:00:: 12139921 1 0 -freshwater_eel%1:05:00:: 02526818 1 0 -freshwater_fish%1:13:00:: 07776545 1 0 -freshwater_limpet%1:05:00:: 01949973 1 0 -freshwater_mussel%1:05:00:: 01964441 1 0 -fresnel%1:18:00:: 10981961 1 0 -fresnel_lens%1:06:00:: 03395859 1 0 -fresno%1:15:00:: 09063259 1 0 -fress%2:34:00:: 01169067 1 0 -fret%1:06:00:: 03396074 4 0 -fret%1:06:01:: 03396311 3 0 -fret%1:07:00:: 04683002 2 0 -fret%1:26:00:: 14403560 1 0 -fret%2:30:00:: 00274633 12 0 -fret%2:30:01:: 00274724 11 0 -fret%2:35:00:: 01250908 10 0 -fret%2:35:03:: 01570562 9 0 -fret%2:36:00:: 01751722 8 0 -fret%2:36:01:: 01752025 7 0 -fret%2:37:00:: 01767461 2 2 -fret%2:37:01:: 01789164 5 0 -fret%2:37:02:: 01773825 6 0 -fret%2:37:03:: 01793933 1 3 -fret%2:39:00:: 02119659 4 0 -fret%2:40:00:: 02330109 3 0 -fretful%5:00:00:complaining:00 00513981 2 0 -fretful%5:00:00:tense:03 02406166 1 0 -fretfully%4:02:00:: 00346185 1 0 -fretfulness%1:12:00:: 07552729 1 0 -fretsaw%1:06:00:: 03598783 1 0 -fretted%3:01:00:: 02731850 1 0 -fretted%5:00:00:reticulate:00 02006798 2 0 -fretwork%1:06:00:: 03646916 1 0 -freud%1:18:00:: 10982127 1 1 -freudian%1:18:00:: 10111779 1 0 -freudian%3:01:00:: 03031733 1 1 -freudian_psychology%1:09:00:: 06057326 1 0 -freudian_slip%1:04:00:: 00074092 1 0 -frey%1:18:00:: 09580125 1 0 -freya%1:18:00:: 09580354 1 0 -freyja%1:18:00:: 09580354 1 0 -freyr%1:18:00:: 09580125 1 0 -frg%1:15:00:: 08766988 1 0 -fri%1:28:00:: 15164463 1 0 -friability%1:07:00:: 04939742 1 0 -friable%5:00:00:breakable:00 00708738 1 2 -friar%1:18:00:: 10111903 1 0 -friar's-cowl%1:20:00:: 11785276 1 0 -friar's_lantern%1:19:00:: 11459369 1 0 -friar_preacher%1:18:00:: 10778345 1 0 -friary%1:06:00:: 03396580 1 0 -fricandeau%1:13:00:: 07666071 1 0 -fricassee%1:13:00:: 07592094 1 0 -fricassee%2:30:00:: 00323703 1 0 -fricative%1:10:00:: 07118554 1 0 -fricative%5:00:00:soft:03 01157179 1 0 -fricative_consonant%1:10:00:: 07118554 1 0 -frick%1:18:00:: 10982295 1 0 -friction%1:04:00:: 00712031 3 0 -friction%1:19:00:: 11459538 2 0 -friction%1:26:00:: 13981137 1 2 -friction_clutch%1:06:00:: 03396654 1 0 -friction_match%1:06:00:: 03728437 1 0 -friction_tape%1:06:00:: 03396841 1 0 -frictional%3:01:00:: 02732059 1 0 -frictionless%3:01:00:: 02732266 1 0 -friday%1:28:00:: 15164463 1 18 -fridge%1:06:00:: 03273913 1 0 -fridtjof_nansen%1:18:00:: 11199727 1 0 -fried%5:00:00:cooked:00 00617422 1 2 -fried_egg%1:13:00:: 07843636 1 1 -fried_rice%1:13:00:: 07868340 1 0 -friedan%1:18:00:: 10982450 1 0 -friedcake%1:13:00:: 07638676 1 0 -friedman%1:18:00:: 10982658 1 0 -friedman_test%1:09:00:: 05744010 1 0 -friedreich's_ataxia%1:26:00:: 14091525 1 0 -friedrich_anton_mesmer%1:18:00:: 11176932 1 0 -friedrich_august_kekule%1:18:00:: 11098876 1 0 -friedrich_august_kekule_von_stradonitz%1:18:00:: 11098876 1 0 -friedrich_august_von_hayek%1:18:00:: 11035957 1 0 -friedrich_august_wolf%1:18:00:: 11394214 1 0 -friedrich_engels%1:18:00:: 10959223 1 0 -friedrich_froebel%1:18:00:: 10983758 1 0 -friedrich_gottlieb_klopstock%1:18:00:: 11108084 1 0 -friedrich_hebbel%1:18:00:: 11037836 1 0 -friedrich_krupp%1:18:00:: 11111710 1 0 -friedrich_max_muller%1:18:00:: 11195452 1 0 -friedrich_wilhelm_august_froebel%1:18:00:: 10983758 1 0 -friedrich_wilhelm_bessel%1:18:00:: 10849625 1 0 -friedrich_wilhelm_nietzsche%1:18:00:: 11207125 1 0 -friend%1:18:00:: 10112591 1 169 -friend%1:18:01:: 09679708 5 0 -friend%1:18:02:: 09763784 3 1 -friend%1:18:03:: 09785042 2 1 -friend%1:18:04:: 10677713 4 0 -friend_of_the_court%1:18:00:: 09788237 1 0 -friendless%5:00:00:unwanted:00 02528440 1 0 -friendlessness%1:07:00:: 04622672 1 0 -friendliness%1:07:00:: 04654337 2 0 -friendliness%1:12:00:: 07499615 1 1 -friendly%1:14:00:: 08397489 1 0 -friendly%3:00:01:: 01074650 1 25 -friendly%3:00:02:: 01077638 4 0 -friendly%3:00:03:: 01077995 3 0 -friendly%5:00:00:amicable:00 01246801 2 4 -friendly_fire%1:04:00:: 00990963 1 0 -friendly_islands%1:15:00:: 09037133 1 0 -friendly_relationship%1:26:00:: 13931145 1 0 -friendly_takeover%1:04:00:: 00790947 1 0 -friendship%1:26:00:: 13931145 1 3 -friendship_plant%1:20:00:: 12395463 1 0 -frier%1:13:00:: 07645469 1 0 -fries%1:13:00:: 07711080 1 0 -friesian%1:05:00:: 02407390 1 0 -friesland%1:15:00:: 08951385 2 0 -friesland%1:15:01:: 08951513 1 0 -frieze%1:06:00:: 03396997 2 0 -frieze%1:06:01:: 03397087 1 2 -frig_around%2:42:00:: 02639606 1 0 -frigate%1:06:00:: 03397266 2 0 -frigate%1:06:01:: 03397412 1 0 -frigate_bird%1:05:00:: 02052775 1 0 -frigg%1:18:00:: 09580521 1 0 -frigga%1:18:00:: 09580521 1 0 -fright%1:12:00:: 07519253 1 2 -fright%2:37:00:: 01779165 1 0 -frighten%2:37:00:: 01779165 1 10 -frighten%2:37:01:: 01780104 2 1 -frighten_away%2:37:00:: 01785748 1 1 -frighten_off%2:37:00:: 01785748 1 0 -frightened%5:00:00:afraid:00 00079629 1 7 -frightened%5:00:02:afraid:00 00080357 2 3 -frightening%1:04:00:: 01222666 1 0 -frightening%5:00:00:alarming:00 00193799 1 6 -frighteningly%4:02:00:: 00345791 1 0 -frightful%5:00:00:alarming:00 00193480 1 4 -frightful%5:00:00:bad:00 01127147 3 0 -frightful%5:00:00:extraordinary:00 01677200 2 1 -frightfully%4:02:00:: 00054950 1 0 -frightfulness%1:07:00:: 04782466 1 0 -frigid%5:00:00:cold:01 01252151 2 1 -frigid%5:00:00:cold:02 01258264 3 0 -frigid%5:00:00:unloving:00 01466775 1 2 -frigid_zone%1:15:00:: 08573258 1 0 -frigidity%1:07:00:: 04629604 3 0 -frigidity%1:07:01:: 05213693 1 0 -frigidity%1:07:02:: 05015117 2 0 -frigidly%4:02:00:: 00346027 1 0 -frigidness%1:07:00:: 04629604 3 0 -frigidness%1:07:01:: 05213693 1 0 -frigidness%1:07:02:: 05015117 2 0 -frigorific%5:00:00:cold:01 01253022 1 0 -frijol%1:20:00:: 12557064 1 0 -frijole%1:13:00:: 07727377 2 0 -frijole%1:20:00:: 12557064 1 0 -frijoles_refritos%1:13:00:: 07881625 1 0 -frijolillo%1:20:00:: 12570703 1 0 -frijolito%1:20:00:: 12570703 1 0 -frill%1:06:00:: 03397532 3 0 -frill%1:06:01:: 03376438 4 0 -frill%1:08:00:: 05546997 2 0 -frill%1:08:01:: 05547149 1 0 -frilled%5:00:00:adorned:00 00058696 1 0 -frilled_lizard%1:05:00:: 01688243 1 0 -frilly%5:00:00:adorned:00 00058696 1 0 -frimaire%1:28:00:: 15176319 1 0 -fringe%1:06:00:: 03397762 6 0 -fringe%1:08:00:: 05258985 5 0 -fringe%1:14:00:: 07974850 4 0 -fringe%1:15:00:: 08690792 2 1 -fringe%1:19:00:: 11459748 3 0 -fringe%1:25:00:: 13903576 1 8 -fringe%2:35:00:: 01467751 2 0 -fringe%2:36:00:: 01751021 1 0 -fringe-toed_lizard%1:05:00:: 01679005 1 0 -fringe_benefit%1:21:00:: 13298011 1 2 -fringe_bush%1:20:00:: 12302248 1 0 -fringe_cups%1:20:00:: 12803226 1 0 -fringe_tree%1:20:00:: 12302071 1 0 -fringed%5:00:00:adorned:00 00058822 2 1 -fringed%5:00:00:bordered:00 00258587 1 3 -fringed%5:00:00:rough:02 02247166 3 0 -fringed_gecko%1:05:00:: 01675352 1 0 -fringed_gentian%1:20:00:: 12296432 1 0 -fringed_grass_of_parnassus%1:20:00:: 12801966 1 0 -fringed_loosestrife%1:20:00:: 12095543 1 0 -fringed_orchid%1:20:00:: 12065316 1 0 -fringed_orchis%1:20:00:: 12065316 1 0 -fringed_pink%1:20:01:: 11809754 2 0 -fringed_pink%1:20:02:: 12811501 1 0 -fringed_polygala%1:20:00:: 12705698 1 0 -fringed_poppy_mallow%1:20:00:: 12175181 1 0 -fringepod%1:20:00:: 11899223 1 0 -fringilla%1:05:00:: 01530256 1 0 -fringilla_coelebs%1:05:00:: 01530439 1 0 -fringilla_montifringilla%1:05:00:: 01530575 1 0 -fringillidae%1:05:00:: 01529036 1 0 -fringy%5:00:00:peripheral:00 00331889 1 0 -frippery%1:06:00:: 02774502 1 0 -frisbee%1:06:00:: 03397947 1 0 -frisch%1:18:00:: 10982870 3 0 -frisch%1:18:01:: 10983007 2 0 -frisch%1:18:02:: 10983172 1 0 -frisia%1:15:00:: 08951777 1 0 -frisian%1:10:00:: 06955242 2 0 -frisian%1:18:00:: 09699918 1 0 -frisian%3:01:00:: 02732405 1 0 -frisian_islands%1:15:00:: 08951957 1 0 -frisk%1:04:00:: 00946060 1 0 -frisk%2:35:00:: 01318223 2 0 -frisk%2:38:00:: 01883716 1 0 -friskily%4:02:00:: 00346302 1 0 -friskiness%1:07:00:: 04649835 1 0 -frisking%1:04:00:: 00946060 1 0 -frisky%5:00:00:playful:00 02123007 1 0 -frisson%1:12:00:: 07520112 1 0 -fritillaria%1:20:00:: 12451789 1 0 -fritillaria_affinis%1:20:00:: 12452256 1 0 -fritillaria_agrestis%1:20:00:: 12452673 1 0 -fritillaria_biflora%1:20:00:: 12452480 1 0 -fritillaria_imperialis%1:20:00:: 12452836 1 0 -fritillaria_lanceolata%1:20:00:: 12452256 1 0 -fritillaria_liliaceae%1:20:00:: 12453018 1 0 -fritillaria_meleagris%1:20:00:: 12453186 1 0 -fritillaria_micrantha%1:20:00:: 12453539 1 0 -fritillaria_mutica%1:20:00:: 12452256 1 0 -fritillaria_parviflora%1:20:00:: 12453539 1 0 -fritillaria_pluriflora%1:20:00:: 12453714 1 0 -fritillaria_recurva%1:20:00:: 12453857 1 0 -fritillary%1:05:00:: 02278210 2 0 -fritillary%1:20:00:: 12451915 1 0 -frittata%1:13:00:: 07868508 1 0 -fritter%1:13:00:: 07639855 1 0 -fritter%2:34:00:: 01195804 1 0 -fritter_away%2:34:00:: 01195804 1 0 -fritter_batter%1:13:00:: 07861334 1 0 -fritz_albert_lipmann%1:18:00:: 11133938 1 0 -fritz_haber%1:18:00:: 11021178 1 0 -fritz_kreisler%1:18:00:: 11110791 1 0 -fritz_w._meissner%1:18:00:: 11171409 1 0 -friuli%1:10:00:: 06967935 1 0 -friuli-venezia_giulia%1:15:00:: 08806617 1 0 -friulian%1:10:00:: 06967935 1 0 -frivol%2:41:00:: 02592895 1 0 -frivol_away%2:34:00:: 01195804 1 0 -frivolity%1:04:00:: 00513401 3 0 -frivolity%1:06:00:: 02774502 2 0 -frivolity%1:07:00:: 04648207 1 0 -frivolous%3:00:00:: 02120458 1 3 -frivolously%4:02:00:: 00346428 1 0 -frivolousness%1:07:00:: 04648207 1 0 -frizz%1:26:00:: 14575700 1 0 -frizz%2:35:00:: 01223833 1 0 -frizzle%2:30:00:: 00325647 1 1 -frizzle%2:35:00:: 01223833 2 0 -frizzly%5:00:00:curly:00 01030372 1 0 -frizzy%5:00:00:curly:00 01030372 1 0 -frobisher%1:18:00:: 10983503 1 0 -frock%1:06:00:: 03236735 2 0 -frock%1:06:01:: 03398153 1 0 -frock%2:29:00:: 00048912 1 0 -frock_coat%1:06:00:: 03398228 1 0 -froebel%1:18:00:: 10983758 1 0 -froelichia%1:20:00:: 11825535 1 0 -frog%1:05:00:: 01639765 1 2 -frog%1:06:00:: 03398382 3 0 -frog%1:18:00:: 09708648 2 0 -frog%2:35:00:: 01382818 1 0 -frog's-bit%1:20:00:: 12613408 1 0 -frog's-bit_family%1:20:00:: 12612913 1 0 -frog's_lettuce%1:20:00:: 12616996 1 0 -frog_kick%1:04:00:: 00574608 1 0 -frog_legs%1:13:00:: 07868684 1 0 -frog_orchid%1:20:01:: 12052447 2 0 -frog_orchid%1:20:02:: 12065649 1 0 -frogbit%1:20:00:: 12613408 1 0 -frogbit_family%1:20:00:: 12612913 1 0 -frogfish%1:05:00:: 02549248 1 0 -froghopper%1:05:00:: 02257985 1 0 -frogman%1:18:00:: 10019552 1 0 -frogmarch%2:35:00:: 01451351 2 0 -frogmarch%2:38:00:: 02084767 1 1 -frogmouth%1:05:00:: 01837072 1 0 -frolic%1:04:00:: 00511817 1 1 -frolic%2:38:00:: 01883716 1 1 -frolicky%5:00:00:playful:00 02122132 1 0 -frolicsome%5:00:00:playful:00 02122132 1 0 -frolicsomeness%1:07:00:: 04649835 1 0 -from_each_one%4:02:00:: 00239908 1 0 -from_head_to_toe%4:02:00:: 00251706 1 0 -from_nowhere%4:02:00:: 00171543 1 1 -from_pillar_to_post%4:02:00:: 00509287 1 1 -from_scratch%4:02:00:: 00159889 1 1 -from_start_to_finish%4:02:00:: 00152286 1 1 -from_the_heart%4:02:00:: 00378804 1 1 -from_time_to_time%4:02:00:: 00021212 1 8 -from_way_back%4:02:00:: 00160177 1 0 -fromental_halevy%1:18:00:: 11023883 1 0 -frond%1:20:00:: 13154494 1 0 -front%1:06:00:: 03398467 4 2 -front%1:09:00:: 05940302 3 2 -front%1:14:00:: 08464601 10 0 -front%1:15:00:: 08573472 1 20 -front%1:15:01:: 08573674 2 15 -front%1:15:02:: 08626080 9 0 -front%1:15:03:: 08642632 8 0 -front%1:18:00:: 10113583 5 1 -front%1:19:00:: 11460488 7 0 -front%1:26:00:: 14514491 6 0 -front%2:33:00:: 01079172 2 2 -front%2:42:00:: 02693319 1 2 -front%3:00:00:: 00198147 1 17 -front-porch_campaign%1:04:00:: 00799809 1 0 -front-porch_campaigning%1:04:00:: 00799809 1 0 -front-runner%1:18:00:: 10113753 1 0 -front-stall%1:06:00:: 03005619 1 0 -front_bench%1:06:00:: 03399047 1 0 -front_burner%1:26:00:: 13950282 1 0 -front_crawl%1:04:00:: 00570366 1 0 -front_door%1:06:00:: 03399240 1 10 -front_end%1:15:00:: 08573472 1 0 -front_entrance%1:06:00:: 03399240 1 0 -front_line%1:15:00:: 08573674 1 1 -front_man%1:18:00:: 10113583 1 0 -front_matter%1:10:00:: 06390688 1 0 -front_porch%1:06:00:: 03399677 1 2 -front_projector%1:06:00:: 03399761 1 0 -front_room%1:06:00:: 03679712 1 4 -front_tooth%1:08:00:: 05306190 1 0 -front_yard%1:06:00:: 03399852 1 1 -frontage%1:06:00:: 03313333 3 0 -frontage%1:07:00:: 05123935 1 7 -frontage%1:24:00:: 13827943 2 0 -frontage_road%1:06:00:: 03398775 1 0 -frontal%1:06:00:: 03399579 1 0 -frontal%1:06:01:: 03398950 2 0 -frontal%1:06:02:: 03313333 3 0 -frontal%3:01:02:: 02894878 2 0 -frontal%5:00:00:front:00 00198757 3 0 -frontal%5:00:01:anterior:00 00131018 1 1 -frontal%5:00:02:anterior:00 00131176 4 0 -frontal_bone%1:08:00:: 05541231 1 0 -frontal_cortex%1:08:00:: 05493758 1 0 -frontal_eminence%1:08:00:: 05541509 1 0 -frontal_gyrus%1:08:00:: 05488750 1 0 -frontal_lobe%1:08:00:: 05493758 1 0 -frontal_lobotomy%1:04:00:: 00684128 1 0 -frontal_sinus%1:08:00:: 05253338 1 0 -frontal_suture%1:08:00:: 05544078 1 0 -frontally%4:02:00:: 00141692 1 0 -frontbencher%1:18:00:: 10113362 1 0 -frontier%1:09:00:: 05998052 3 0 -frontier%1:15:00:: 08505402 1 1 -frontier%1:15:01:: 08501114 2 0 -frontier_settlement%1:14:00:: 08374653 1 1 -frontiersman%1:18:00:: 10113072 1 0 -frontierswoman%1:18:00:: 10113249 1 0 -frontispiece%1:06:00:: 03399391 2 0 -frontispiece%1:06:01:: 03399500 1 0 -frontlet%1:06:00:: 03399579 1 0 -frontmost%5:00:00:front:00 00198610 1 0 -frontstall%1:06:00:: 03005619 1 0 -frontward%4:02:00:: 00074641 1 0 -frontwards%4:02:00:: 00074641 1 0 -frore%5:00:00:cold:01 01253112 1 0 -frost%1:18:00:: 10983931 4 0 -frost%1:19:00:: 11440521 2 1 -frost%1:22:01:: 13485270 3 0 -frost%1:27:00:: 14915622 1 1 -frost%2:30:00:: 00196595 4 0 -frost%2:35:00:: 01517175 1 1 -frost%2:35:02:: 01208549 2 0 -frost%2:35:04:: 01208400 3 0 -frost's_bolete%1:20:00:: 13055792 1 0 -frost-bound%5:00:00:frozen:00 01078840 1 0 -frost-weed%1:20:00:: 12375769 1 0 -frost-weed%1:20:01:: 12031547 2 0 -frost_fish%1:05:00:: 02622955 1 0 -frost_heave%1:19:00:: 11461684 1 0 -frost_heaving%1:19:00:: 11461684 1 0 -frost_mist%1:19:00:: 11509377 1 0 -frost_over%2:43:00:: 02758581 1 0 -frost_snow%1:19:00:: 11509377 1 0 -frostbite%1:26:00:: 14294678 1 1 -frostbitten%5:00:00:frozen:00 01078673 1 2 -frosted%5:00:00:opaque:00 00433972 1 0 -frosted_bat%1:05:00:: 02145910 1 0 -frostian%3:01:00:: 03031886 1 0 -frostily%4:02:00:: 00346027 1 0 -frostiness%1:07:01:: 05015878 1 0 -frostiness%1:07:02:: 04961583 2 0 -frosting%1:13:00:: 07620822 1 0 -frostweed%1:20:00:: 12375769 1 0 -frostweed%1:20:01:: 12031547 2 0 -frostwort%1:20:02:: 12375769 1 0 -frosty%5:00:00:cold:02 01258264 1 0 -frosty%5:00:01:cold:01 01252714 3 0 -frosty%5:00:02:cold:01 01253254 2 0 -froth%1:17:00:: 09282724 1 1 -froth%2:29:00:: 00109389 3 0 -froth%2:30:00:: 00519363 1 0 -froth%2:30:01:: 00511855 2 0 -froth_at_the_mouth%2:37:00:: 01796215 1 0 -frothily%4:02:00:: 00346592 1 0 -frothiness%1:07:00:: 04733347 1 0 -frothing%5:00:00:unhealthy:00 01176787 1 0 -frothy%5:00:00:effervescent:00 02276305 1 0 -frothy%5:00:00:lively:00 00805810 2 0 -frottage%1:04:00:: 00856076 1 0 -frotteur%1:18:00:: 10113869 1 0 -froward%5:00:00:disobedient:00 01614372 1 0 -frown%1:10:00:: 06877849 1 0 -frown%2:29:00:: 00032981 1 12 -frown_line%1:25:00:: 13906669 1 0 -frown_on%2:31:00:: 00674237 1 0 -frown_upon%2:31:00:: 00674237 1 1 -frowning%5:00:00:displeased:00 01806992 1 0 -frowningly%4:02:00:: 00239572 1 1 -frowsty%5:00:00:malodorous:00 01053915 1 0 -frowsy%5:00:00:untidy:00 02425749 1 0 -frowzled%5:00:00:untidy:00 02425220 1 1 -frowzy%5:00:00:untidy:00 02425749 1 0 -frozen%3:00:00:: 01078302 1 2 -frozen%5:00:00:cold:02 01258264 3 1 -frozen%5:00:00:nondisposable:02 00778270 6 0 -frozen%5:00:00:nonmoving:00 01564881 2 2 -frozen%5:00:00:preserved:02 01072586 5 0 -frozen%5:00:00:unchangeable:00 00347707 7 0 -frozen%5:00:00:unmelted:00 01506945 4 0 -frozen_custard%1:13:00:: 07617051 1 0 -frozen_dessert%1:13:00:: 07611358 1 0 -frozen_food%1:13:00:: 07572858 1 0 -frozen_foods%1:13:00:: 07572858 1 0 -frozen_metaphor%1:10:00:: 07107083 1 0 -frozen_orange_juice%1:13:00:: 07924955 1 0 -frozen_pudding%1:13:00:: 07616906 1 0 -frozen_yogurt%1:13:00:: 07616046 1 0 -frs%1:14:00:: 08350470 1 0 -fructidor%1:28:00:: 15177705 1 0 -fructification%1:20:00:: 11550205 2 0 -fructification%1:22:00:: 13485408 1 0 -fructify%2:29:00:: 00056188 3 0 -fructify%2:30:00:: 00506672 1 0 -fructify%2:30:01:: 00506539 2 0 -fructose%1:27:00:: 14874932 1 0 -fructosuria%1:26:00:: 14267588 1 0 -frugal%5:00:00:thrifty:00 02421364 1 0 -frugality%1:07:00:: 04893358 1 0 -frugally%4:02:00:: 00345457 1 0 -frugalness%1:07:00:: 04893358 1 0 -fruit%1:06:00:: 04612722 2 3 -fruit%1:11:00:: 07294550 3 1 -fruit%1:20:00:: 13134947 1 10 -fruit%2:36:00:: 01652731 2 0 -fruit%2:36:01:: 01652895 1 0 -fruit-eating%5:00:00:herbivorous:00 00314466 1 0 -fruit_bar%1:13:00:: 07637737 1 0 -fruit_bat%1:05:00:: 02139671 1 0 -fruit_cocktail%1:13:00:: 07581931 1 0 -fruit_compote%1:13:00:: 07611046 1 0 -fruit_crush%1:13:00:: 07924033 1 0 -fruit_custard%1:13:00:: 07619508 1 0 -fruit_drink%1:13:00:: 07925966 1 0 -fruit_fly%1:05:00:: 02196344 1 0 -fruit_grower%1:18:00:: 10114114 1 0 -fruit_juice%1:13:00:: 07924033 1 0 -fruit_machine%1:06:00:: 03399971 1 0 -fruit_of_the_poisonous_tree%1:10:00:: 06654275 1 0 -fruit_punch%1:13:00:: 07930062 1 0 -fruit_salad%1:13:00:: 07807922 1 0 -fruit_sugar%1:27:00:: 14874932 1 0 -fruit_tree%1:20:00:: 12651821 1 1 -fruitage%1:20:00:: 13086753 1 0 -fruitcake%1:13:00:: 07631350 2 0 -fruitcake%1:18:00:: 09974496 1 0 -fruiterer%1:18:00:: 10113997 1 0 -fruitful%3:00:00:: 01080297 1 1 -fruitfully%4:02:00:: 00213875 1 0 -fruitfulness%1:07:00:: 05147381 1 1 -fruitfulness%1:09:00:: 05625066 2 0 -fruiting%5:00:00:mature:01 01489006 1 0 -fruiting_body%1:20:00:: 13089246 1 0 -fruition%1:04:00:: 00061917 3 0 -fruition%1:07:00:: 05214374 2 0 -fruition%1:26:00:: 14575849 1 0 -fruitless%5:00:00:unproductive:00 01866812 1 2 -fruitlessly%4:02:00:: 00214084 1 0 -fruitlessness%1:07:00:: 05148186 2 0 -fruitlessness%1:09:00:: 05649538 1 0 -fruitlet%1:20:00:: 13135692 1 0 -fruitwood%1:20:00:: 12652876 1 0 -fruity%5:00:00:insane:00 02074929 2 0 -fruity%5:00:00:tasty:00 02397119 1 0 -frumenty%1:13:00:: 07704656 1 0 -frump%1:18:00:: 10114209 1 0 -frumpily%4:02:00:: 00322255 1 0 -frumpish%5:00:00:unfashionable:00 00974519 1 0 -frumpishly%4:02:00:: 00322255 1 0 -frumpy%5:00:00:unfashionable:00 00974519 1 0 -frunze%1:15:00:: 09020792 1 0 -frustrate%2:37:00:: 01803003 2 0 -frustrate%2:41:00:: 02558172 1 5 -frustrated%5:00:00:unsuccessful:00 02333976 1 2 -frustrating%5:00:00:discouraging:00 00867758 1 2 -frustrating%5:00:00:preventive:00 01764745 2 0 -frustration%1:04:02:: 00067990 2 1 -frustration%1:12:00:: 07540866 1 4 -frustration%1:12:01:: 07518663 3 0 -frustrative%5:00:00:preventive:00 01764745 1 0 -frustum%1:25:00:: 13917457 1 0 -fruticose%3:01:00:: 03021866 1 0 -fruticulose%3:01:00:: 03021866 1 0 -fry%1:18:00:: 09917593 3 0 -fry%1:18:01:: 10984126 2 0 -fry%1:18:02:: 10984257 1 0 -fry%2:30:00:: 00325328 2 1 -fry%2:41:00:: 02484957 3 0 -fry%2:42:00:: 02738241 1 1 -fry_bread%1:13:00:: 07685546 1 0 -fry_cook%1:18:00:: 10114384 1 0 -frye%1:18:00:: 10984418 1 0 -fryer%1:13:00:: 07645469 1 0 -frying%1:04:00:: 00246940 1 0 -frying_pan%1:06:00:: 03400231 1 0 -frypan%1:06:00:: 03400231 1 0 -fsb%1:14:00:: 08424662 2 0 -fsb%1:14:01:: 08485598 1 0 -fsh%1:27:00:: 14748765 1 0 -ft%1:23:00:: 13650045 1 0 -ft-l%1:23:00:: 13641175 1 0 -ftc%1:14:00:: 08351107 1 0 -fthm%1:23:01:: 13660178 1 0 -fthm%1:23:02:: 13617308 2 0 -fto%1:14:00:: 08392137 1 0 -ftp%1:10:00:: 06665370 1 0 -ftp%2:40:00:: 02233352 1 0 -fucaceae%1:05:00:: 01404129 1 0 -fucales%1:05:00:: 01403805 1 0 -fuchs%1:18:00:: 10984589 1 0 -fuchsia%1:20:00:: 12343480 1 0 -fuchsia_coccinea%1:20:00:: 12343753 1 0 -fuchsia_excorticata%1:20:00:: 12343951 1 0 -fuck%1:04:00:: 00846021 1 0 -fuck%2:35:00:: 01426397 1 0 -fuck_all%1:23:00:: 13740765 1 0 -fuck_off%2:35:00:: 01430633 3 0 -fuck_off%2:38:00:: 02010864 2 0 -fuck_off%2:42:00:: 02639606 1 0 -fuck_up%2:41:00:: 02527651 1 2 -fucked-up%5:00:00:disorganized:00 01669617 1 0 -fucker%1:18:00:: 10114476 2 0 -fucker%1:18:01:: 10114550 1 0 -fuckhead%1:18:00:: 10039663 1 0 -fucking%1:04:00:: 00846021 1 0 -fucking%4:02:00:: 00032705 1 0 -fucking%5:00:00:unmitigated:00 01520655 1 0 -fuckup%1:04:00:: 00074790 2 0 -fuckup%1:18:00:: 09879744 1 0 -fucoid%1:05:01:: 01404365 2 0 -fucoid%1:05:02:: 01404495 1 0 -fucoid_algae%1:05:00:: 01404365 1 0 -fucus%1:05:00:: 01405007 1 0 -fucus_serratus%1:05:00:: 01405107 1 0 -fucus_vesiculosus%1:05:00:: 01405250 1 0 -fuddle%1:26:00:: 14500567 1 0 -fuddle%2:31:00:: 00621734 3 0 -fuddle%2:34:00:: 01171183 2 0 -fuddle%2:34:01:: 01190741 1 0 -fuddled%5:00:00:intoxicated:00 00798103 1 0 -fuddy-duddy%1:18:00:: 10114662 1 0 -fudge%1:13:00:: 07605474 1 0 -fudge%2:32:00:: 00809654 2 0 -fudge%2:41:00:: 02576921 1 0 -fudge_factor%1:23:00:: 13755957 1 0 -fudge_sauce%1:13:00:: 07837002 1 0 -fudge_together%2:36:00:: 01739675 1 0 -fuego%1:15:00:: 09174908 1 0 -fuel%1:27:00:: 14875077 1 5 -fuel%2:37:00:: 01762178 4 0 -fuel%2:40:00:: 02338386 1 2 -fuel%2:40:01:: 02356420 2 0 -fuel%2:40:03:: 02237024 3 0 -fuel-air_bomb%1:06:00:: 04420461 1 0 -fuel-air_explosive%1:06:00:: 03400389 1 0 -fuel_cell%1:06:00:: 03400798 1 0 -fuel_consumption_rate%1:24:00:: 13823287 1 0 -fuel_filter%1:06:00:: 03400972 1 0 -fuel_gauge%1:06:00:: 03401129 1 0 -fuel_indicator%1:06:00:: 03401129 1 0 -fuel_injection%1:06:00:: 03401279 1 0 -fuel_injection_system%1:06:00:: 03401279 1 0 -fuel_level%1:21:00:: 13369074 1 0 -fuel_line%1:06:00:: 03401500 1 0 -fuel_oil%1:27:00:: 14686585 1 0 -fuel_pod%1:06:00:: 03973945 1 0 -fuel_system%1:06:00:: 03401721 1 0 -fueled%3:00:00:: 01098492 1 1 -fueling%1:04:00:: 01059719 1 0 -fuentes%1:18:00:: 10984876 1 0 -fuerzas_armadas_revolucionarios_de_colombia%1:14:00:: 08042183 1 0 -fug%1:26:00:: 14521954 1 0 -fugacious%5:00:00:impermanent:00 01756292 1 0 -fugaciousness%1:07:00:: 05055503 1 0 -fugacity%1:07:00:: 05055503 2 0 -fugacity%1:07:01:: 05055878 1 0 -fugal%3:01:00:: 03011126 1 1 -fugally%4:02:00:: 00029278 1 0 -fugard%1:18:00:: 10984979 1 0 -fuggy%5:00:00:unventilated:00 02509710 1 0 -fugitive%1:18:00:: 10114897 2 0 -fugitive%1:18:01:: 10115082 1 1 -fugitive%5:00:00:short:02 01443097 1 0 -fugitive_from_justice%1:18:00:: 10114897 1 0 -fugleman%1:18:00:: 10115271 1 0 -fugly%5:00:00:ugly:00 00221553 1 0 -fugo%1:06:00:: 02782432 1 0 -fugu%1:13:00:: 07782204 1 0 -fugue%1:10:00:: 07043675 3 0 -fugue%1:26:00:: 14030291 2 0 -fugue%1:26:01:: 14394479 1 0 -fuji%1:15:00:: 09175016 2 0 -fuji%1:20:00:: 12646605 1 0 -fuji-san%1:15:00:: 09175016 1 0 -fuji_cherry%1:20:00:: 12646605 1 0 -fujinoyama%1:15:00:: 09175016 1 0 -fujiyama%1:15:00:: 09175016 1 0 -fukien%1:10:00:: 06930633 1 0 -fukkianese%1:10:00:: 06930633 1 0 -fukuoka%1:15:00:: 08925830 1 0 -ful%1:10:00:: 06996510 1 0 -fula%1:10:00:: 06996510 2 0 -fula%1:18:00:: 09705471 1 0 -fulah%1:18:00:: 09705471 1 0 -fulani%1:10:00:: 06996510 2 0 -fulani%1:18:00:: 09705471 1 0 -fulbe%1:18:00:: 09705471 1 0 -fulbright%1:18:00:: 10985160 1 0 -fulcrum%1:06:00:: 03402080 1 0 -fulfil%2:34:00:: 01183573 2 1 -fulfil%2:36:00:: 01640855 1 3 -fulfil%2:42:00:: 02671880 3 0 -fulfill%2:34:00:: 01183573 3 3 -fulfill%2:36:00:: 01640855 1 10 -fulfill%2:42:00:: 02671880 2 3 -fulfilled%5:00:00:consummated:00 00552089 1 0 -fulfillment%1:04:00:: 00062451 2 2 -fulfillment%1:12:00:: 07532112 1 3 -fulfilment%1:04:00:: 00062451 2 0 -fulfilment%1:12:00:: 07532112 1 0 -fulgent%5:00:00:bright:00 00280844 1 0 -fulgid%5:00:00:bright:00 00279618 1 0 -fulgoridae%1:05:00:: 02259844 1 0 -fulgurant%5:00:00:impressive:00 01283787 1 0 -fulgurating%5:00:00:sharp:04 00803751 1 0 -fulgurous%5:00:00:impressive:00 01283787 1 0 -fulica%1:05:00:: 02017878 1 0 -fulica_americana%1:05:00:: 02018207 1 0 -fulica_atra%1:05:00:: 02018368 1 0 -full%1:28:00:: 15207556 1 0 -full%2:30:00:: 00433525 3 0 -full%2:30:01:: 00433668 2 0 -full%2:35:02:: 01399305 1 0 -full%3:00:00:: 01083157 1 41 -full%3:00:01:: 01456710 5 1 -full%4:02:01:: 00010466 1 3 -full%5:00:00:ample:00 00106020 6 1 -full%5:00:00:complete:00 00522885 3 7 -full%5:00:00:high:02 01211531 7 0 -full%5:00:00:nourished:00 02300501 4 2 -full%5:00:01:whole:00 00515380 2 32 -full%5:00:02:ample:00 00106277 8 0 -full-blood%5:00:00:purebred:00 01903813 1 0 -full-blooded%5:00:00:healthy:00 01171746 2 0 -full-blooded%5:00:00:purebred:00 01903813 1 0 -full-blown%5:00:00:complete:00 00523068 2 0 -full-blown%5:00:00:mature:01 01489085 1 0 -full-bodied%5:00:00:tasty:00 02397234 1 0 -full-bosomed%5:00:00:shapely:00 02138989 1 0 -full-clad%5:00:00:complete:00 00522680 1 1 -full-dress%5:00:00:complete:00 00523229 3 0 -full-dress%5:00:01:formal:01 01042921 2 0 -full-dress%5:00:02:formal:01 01043226 1 0 -full-dress_uniform%1:06:00:: 03402188 1 0 -full-face%5:00:00:forward:01 00203495 1 0 -full-fashioned%5:00:00:shapely:00 02139652 1 0 -full-fledged%5:00:00:experienced:00 00935792 2 0 -full-fledged%5:00:00:fledged:00 01096308 1 0 -full-grown%5:00:00:mature:01 01488616 1 2 -full-length%5:00:00:unabridged:00 00005107 2 0 -full-length%5:00:00:whole:00 00515622 1 0 -full-of-the-moon%1:28:00:: 15207556 1 1 -full-page%5:00:00:whole:00 00515753 1 0 -full-scale%5:00:00:complete:00 00521811 1 0 -full-size%5:00:00:large:00 01388655 1 0 -full-strength%5:00:00:undiluted:00 00757120 1 0 -full-term%3:00:00:: 01495381 1 0 -full-time%3:00:00:: 01089136 1 11 -full-time%4:02:00:: 00252629 1 2 -full-wave_rectifier%1:06:00:: 03402621 1 0 -full_admiral%1:18:00:: 09771204 1 0 -full_blood%1:07:00:: 04924003 1 0 -full_complement%1:14:00:: 08218212 1 1 -full_cousin%1:18:00:: 09972010 1 0 -full_dress%1:06:00:: 03239054 1 0 -full_employment%1:26:00:: 14489523 1 0 -full_faith_and_credit%1:10:00:: 06686573 1 0 -full_gainer%1:04:00:: 00443917 1 0 -full_general%1:18:00:: 10123844 1 0 -full_house%1:14:00:: 07958099 1 0 -full_metal_jacket%1:06:00:: 03402369 1 0 -full_moon%1:28:00:: 15207556 1 2 -full_moon_maple%1:20:00:: 12755727 1 0 -full_nelson%1:04:00:: 00813571 1 0 -full_of_life%5:00:00:animated:00 00119006 1 1 -full_page%1:10:00:: 06257250 1 0 -full_phase_of_the_moon%1:28:00:: 15207556 1 0 -full_point%1:10:00:: 06843520 1 0 -full_professor%1:18:00:: 10115748 1 0 -full_radiator%1:17:00:: 09222406 1 0 -full_service_bank%1:14:00:: 08418420 1 0 -full_skirt%1:06:00:: 03402511 1 0 -full_stop%1:10:00:: 06843520 1 0 -full_term%1:28:00:: 15226451 1 0 -full_treatment%1:26:00:: 14461679 1 0 -fullback%1:04:00:: 00726867 2 0 -fullback%1:18:00:: 10115430 1 2 -fullback%2:33:00:: 01076250 1 1 -fuller%1:18:00:: 10115603 3 0 -fuller%1:18:01:: 10985440 2 0 -fuller%1:18:02:: 10985653 1 0 -fuller's_earth%1:27:00:: 14875707 1 0 -fuller's_teasel%1:20:00:: 12682882 1 0 -fullerene%1:27:00:: 14622141 1 0 -fullness%1:07:01:: 05106024 4 0 -fullness%1:07:02:: 04989015 2 1 -fullness%1:26:00:: 14451911 3 0 -fullness%1:26:01:: 14461519 1 1 -fully%4:02:02:: 00010466 1 29 -fully%4:02:03:: 00504620 3 1 -fully%4:02:04:: 00178909 2 2 -fully_fashioned%5:00:00:shapely:00 02139652 1 0 -fully_fledged%5:00:00:experienced:00 00935792 2 0 -fully_fledged%5:00:00:fledged:00 01096308 1 0 -fully_grown%5:00:00:mature:01 01488616 1 0 -fulmar%1:05:00:: 02060133 1 0 -fulmar_petrel%1:05:00:: 02060133 1 0 -fulmarus%1:05:00:: 02060016 1 0 -fulmarus_glacialis%1:05:00:: 02060133 1 0 -fulminant%5:00:00:sudden:00 01144102 1 0 -fulminate%1:27:00:: 14798709 1 0 -fulminate%2:30:00:: 00307060 3 0 -fulminate%2:30:01:: 00425381 2 0 -fulminate%2:32:00:: 00841767 1 1 -fulminate_of_mercury%1:27:00:: 14798815 1 0 -fulminating_mercury%1:27:00:: 14798815 1 0 -fulmination%1:04:01:: 00377907 2 0 -fulmination%1:10:00:: 07233304 1 0 -fulminic_acid%1:27:00:: 14611804 1 0 -fulsome%5:00:00:insincere:00 02181432 1 0 -fulsomely%4:02:00:: 00485765 1 0 -fulsomeness%1:07:00:: 04868505 2 0 -fulsomeness%1:10:00:: 06696308 1 0 -fulton%1:18:00:: 10985838 1 0 -fulvic_acid%1:27:00:: 14875878 1 0 -fulvicin%1:06:00:: 03460674 1 0 -fumaria%1:20:00:: 11909353 1 0 -fumaria_claviculata%1:20:00:: 11904274 1 0 -fumaria_fungosa%1:20:00:: 11909864 1 0 -fumaria_officinalis%1:20:00:: 11909527 1 0 -fumaria_sempervirens%1:20:00:: 11904477 1 0 -fumariaceae%1:20:00:: 11909048 1 0 -fumaric_acid%1:27:00:: 14876066 1 0 -fumble%1:04:00:: 00075912 1 1 -fumble%2:33:00:: 01075327 5 0 -fumble%2:35:00:: 01314738 1 4 -fumble%2:35:01:: 01211019 3 1 -fumble%2:38:00:: 02051547 2 1 -fumble%2:41:00:: 02527651 4 0 -fumbler%1:18:00:: 09879744 1 0 -fumbling%5:00:00:unskilled:00 02229324 1 1 -fume%1:19:00:: 11508092 1 0 -fume%2:29:00:: 00068627 4 0 -fume%2:37:00:: 01795333 1 2 -fume%2:39:00:: 02127100 3 0 -fume%2:43:00:: 02767922 2 0 -fumed%5:00:00:treated:00 01954517 1 0 -fumed_oak%1:20:00:: 12269099 1 2 -fumeroot%1:20:01:: 11909527 1 0 -fumeroot%1:20:02:: 11904743 2 0 -fumes%1:27:00:: 14837364 1 2 -fumewort%1:20:01:: 11909527 1 0 -fumewort%1:20:02:: 11904743 2 0 -fumigant%1:27:00:: 14876206 1 0 -fumigate%2:39:00:: 02127100 1 0 -fumigation%1:04:00:: 00712979 1 0 -fumigator%1:06:00:: 03402785 2 0 -fumigator%1:18:00:: 10115840 1 0 -fumimaro_konoe%1:18:00:: 11108767 1 0 -fumimaro_konoye%1:18:00:: 11108767 1 0 -fumitory%1:20:00:: 11909527 1 0 -fumitory_family%1:20:00:: 11909048 1 0 -fun%1:04:00:: 00429949 1 9 -fun%1:04:01:: 01260556 3 1 -fun%1:07:00:: 04649261 4 0 -fun%1:10:00:: 06780882 2 3 -fun_run%1:11:00:: 07460403 1 0 -funafuti%1:15:00:: 08840657 1 0 -funambulism%1:04:00:: 00324978 1 0 -funambulist%1:18:00:: 10115946 1 0 -function%1:04:00:: 00720565 3 7 -function%1:07:00:: 05149325 2 24 -function%1:10:00:: 06582403 7 0 -function%1:11:00:: 07447261 6 0 -function%1:14:00:: 08252467 5 0 -function%1:24:00:: 13783816 1 43 -function%1:24:01:: 13781164 4 0 -function%2:33:00:: 01096497 3 1 -function%2:35:00:: 01525666 1 9 -function%2:42:12:: 02670890 2 3 -function_call%1:10:00:: 06582986 1 0 -function_word%1:10:00:: 06291318 1 0 -functional%3:00:00:: 01090308 1 3 -functional%3:00:02:: 01092989 2 1 -functional%3:01:01:: 02976260 3 0 -functional%5:00:00:functioning:00 01091728 6 0 -functional%5:00:00:practical:00 01835023 5 0 -functional%5:00:00:serviceable:00 02124253 4 0 -functional_anatomy%1:09:00:: 06059709 1 0 -functional_calculus%1:09:00:: 06165364 1 0 -functional_disorder%1:26:00:: 14053384 1 0 -functional_genomics%1:09:00:: 06075218 1 0 -functional_illiterate%1:18:00:: 10116093 1 0 -functional_magnetic_resonance_imaging%1:04:00:: 00902757 1 0 -functionalism%1:09:00:: 06140054 1 0 -functionalism%1:09:01:: 05962043 2 0 -functionalist%1:18:00:: 10116246 1 0 -functionality%1:07:00:: 05151372 1 0 -functionally%4:02:00:: 00345659 1 0 -functionally_illiterate%5:00:00:illiterate:00 01422098 1 0 -functionary%1:18:00:: 10372373 1 0 -functioning%1:22:00:: 13525549 1 0 -functioning%3:00:00:: 01091556 1 1 -fund%1:14:00:: 08070850 3 0 -fund%1:21:00:: 13358549 1 29 -fund%1:21:01:: 13367070 2 3 -fund%2:40:00:: 02215506 6 0 -fund%2:40:01:: 02218635 2 0 -fund%2:40:02:: 02218924 1 0 -fund%2:40:03:: 02215790 5 0 -fund%2:40:04:: 02215966 4 0 -fund%2:40:05:: 02216083 3 0 -fund-raise%2:40:00:: 02217990 1 0 -fund-raising_campaign%1:04:00:: 00800270 1 0 -fund-raising_drive%1:04:00:: 00800270 1 1 -fund-raising_effort%1:04:00:: 00800270 1 0 -fund_raise%2:40:00:: 02217990 1 0 -fundament%1:06:00:: 03387016 3 0 -fundament%1:08:00:: 05559256 2 0 -fundament%1:09:00:: 05793554 1 0 -fundamental%1:09:00:: 05719958 2 0 -fundamental%1:11:00:: 07328058 1 0 -fundamental%5:00:00:basic:00 01856419 2 7 -fundamental%5:00:00:important:00 01277097 1 10 -fundamental%5:00:00:significant:00 02162934 3 1 -fundamental_analysis%1:04:00:: 00649090 1 0 -fundamental_frequency%1:09:00:: 05719958 1 0 -fundamental_interaction%1:19:00:: 11516113 1 0 -fundamental_law%1:10:00:: 06533648 1 3 -fundamental_measure%1:23:00:: 13575869 1 0 -fundamental_particle%1:17:00:: 09272085 1 0 -fundamental_principle%1:09:00:: 05871362 1 0 -fundamental_quantity%1:23:00:: 13575869 1 0 -fundamentalism%1:09:00:: 06231328 1 0 -fundamentalist%1:18:00:: 10116370 1 0 -fundamentalist%3:01:00:: 02953235 1 1 -fundamentalistic%3:01:00:: 02953235 1 0 -fundamentally%4:02:00:: 00003483 1 5 -fundamentals%1:09:00:: 05871362 1 2 -fundamentals_analysis%1:04:00:: 00649090 1 0 -funded%3:00:00:: 01098293 1 0 -funding%1:04:00:: 01099109 2 0 -funding%1:21:00:: 13365698 1 0 -fundraise%2:40:00:: 02217990 1 0 -fundraiser%1:11:00:: 07455640 2 0 -fundraiser%1:18:00:: 10116478 1 0 -funds%1:21:00:: 13356112 1 19 -fundulus%1:05:00:: 01447001 1 0 -fundulus_heteroclitus%1:05:00:: 01447139 1 0 -fundulus_majalis%1:05:00:: 01447331 1 0 -fundus%1:08:00:: 05264545 1 0 -funeral%1:11:00:: 07451463 1 8 -funeral-residence%1:06:00:: 03402941 1 0 -funeral_chapel%1:06:00:: 03402941 1 0 -funeral_church%1:06:00:: 03402941 1 0 -funeral_director%1:18:00:: 10331841 1 0 -funeral_home%1:06:00:: 03402941 1 0 -funeral_march%1:10:00:: 07059028 1 0 -funeral_parlor%1:06:00:: 03402941 1 2 -funeral_parlour%1:06:00:: 03402941 1 0 -funeral_pyre%1:14:00:: 07963494 1 0 -funeral_undertaker%1:18:00:: 10331841 1 0 -funerary%3:01:00:: 02950588 1 0 -funereal%5:00:00:joyless:00 01368464 1 0 -funfair%1:04:00:: 00519333 2 0 -funfair%1:15:00:: 08494231 1 0 -fungal%3:01:00:: 02832678 1 1 -fungal_infection%1:26:00:: 14176895 1 0 -fungi%1:20:00:: 12992464 1 0 -fungi_imperfecti%1:20:00:: 12995724 1 0 -fungia%1:05:00:: 01917751 1 0 -fungibility%1:07:00:: 04735929 1 0 -fungible%1:06:00:: 03403169 1 0 -fungible%5:00:00:exchangeable:00 00917956 1 0 -fungicidal%3:01:00:: 02832818 1 0 -fungicide%1:06:00:: 02720201 1 0 -fungoid%3:01:00:: 02832969 1 0 -fungous%3:01:00:: 02832678 1 0 -fungus%1:20:00:: 12992868 1 0 -fungus_family%1:20:00:: 11590783 1 0 -fungus_genus%1:20:00:: 11592146 1 0 -fungus_gnat%1:05:01:: 02203592 2 0 -fungus_gnat%1:05:02:: 02204722 1 0 -fungus_kingdom%1:20:00:: 12992464 1 0 -fungus_order%1:20:00:: 11594676 1 0 -funguslike%3:01:00:: 02832969 1 0 -funicle%1:20:00:: 11678199 1 0 -funicular%1:06:00:: 02934641 1 0 -funicular%3:01:00:: 02848658 1 0 -funicular_railway%1:06:00:: 02934641 1 0 -funiculitis%1:26:00:: 14346280 1 0 -funiculus%1:08:00:: 05264756 2 0 -funiculus%1:20:00:: 11678199 1 0 -funk%1:10:00:: 07063585 3 0 -funk%1:18:00:: 10986022 2 0 -funk%1:26:00:: 14404610 1 0 -funk%2:38:00:: 02061069 1 0 -funk_hole%1:06:00:: 03403325 1 0 -funka%1:20:00:: 12457519 1 0 -funkaceae%1:20:00:: 12457250 1 0 -funky%5:00:00:cowardly:00 00266228 4 0 -funky%5:00:00:emotional:00 00855158 2 0 -funky%5:00:00:malodorous:00 01053634 1 0 -funky%5:00:00:unconventional:01 00609750 3 0 -funnel%1:06:00:: 03403431 3 0 -funnel%1:06:01:: 03403643 2 0 -funnel%1:25:00:: 13872822 1 1 -funnel%2:35:00:: 01444146 1 1 -funnel-crest_rosebud_orchid%1:20:00:: 12051514 1 0 -funnel-shaped%5:00:00:formed:00 02147297 1 0 -funnel_shape%1:25:00:: 13872822 1 0 -funnel_web%1:06:00:: 03403873 1 0 -funnies%1:10:00:: 07003352 1 0 -funnily%4:02:01:: 00437381 1 0 -funniness%1:10:00:: 06781383 1 0 -funny%1:10:00:: 06779310 1 0 -funny%5:00:00:humorous:00 01265308 1 14 -funny%5:00:00:ill:01 02545023 4 0 -funny%5:00:00:questionable:00 01917594 3 4 -funny%5:00:00:strange:00 00968010 2 9 -funny_bone%1:08:00:: 05580662 1 0 -funny_farm%1:06:00:: 02820798 1 0 -funny_house%1:06:00:: 02820798 1 1 -funny_remark%1:10:00:: 06779310 1 0 -funny_story%1:10:00:: 06779310 1 0 -funny_wagon%1:06:00:: 03404012 1 1 -funrun%1:11:00:: 07460403 1 0 -fuqra%1:14:00:: 08026539 1 0 -fur%1:05:00:: 01899062 2 1 -fur%1:06:00:: 03404149 3 0 -fur%1:27:00:: 14764061 1 8 -fur-bearing%5:00:00:productive:00 01866129 1 0 -fur-piece%1:06:00:: 03406759 1 1 -fur_coat%1:06:00:: 03404251 1 0 -fur_hat%1:06:00:: 03404360 1 0 -fur_seal%1:05:01:: 02077152 2 0 -fur_seal%1:05:02:: 02077658 1 0 -furan%1:27:00:: 14876318 1 0 -furane%1:27:00:: 14876318 1 0 -furbelow%1:06:00:: 03397532 1 0 -furbish%2:35:00:: 01246095 1 0 -furbish_up%2:30:00:: 00260648 1 0 -furcate%2:30:00:: 00328802 1 0 -furcation%1:25:00:: 13886724 1 0 -furcula%1:05:00:: 01895355 1 0 -furfural%1:27:00:: 14876473 1 0 -furfuraldehyde%1:27:00:: 14876473 1 0 -furfuran%1:27:00:: 14876318 1 0 -furious%5:00:00:angry:00 00114454 2 4 -furious%5:00:00:stormy:00 00304144 3 2 -furious%5:00:00:violent:00 02511528 1 7 -furiously%4:02:00:: 00224147 1 7 -furiously%4:02:01:: 00224280 3 0 -furiously%4:02:02:: 00224418 2 2 -furiousness%1:07:00:: 05037813 1 0 -furl%2:30:00:: 00435853 1 1 -furled%5:00:00:bound:01 00253469 1 0 -furlike%5:00:00:hairy:00 00213933 1 0 -furlong%1:23:00:: 13651072 1 1 -furlough%1:28:00:: 15139432 1 1 -furlough%2:32:00:: 00748803 2 0 -furlough%2:41:00:: 02403537 1 1 -furnace%1:06:00:: 03404449 1 1 -furnace_lining%1:06:00:: 03404900 1 0 -furnace_room%1:06:00:: 03405111 1 0 -furnariidae%1:05:00:: 01552523 1 0 -furnarius%1:05:00:: 01552654 1 0 -furnish%2:40:00:: 02327200 1 28 -furnish%2:40:01:: 02336483 2 3 -furnished%3:00:00:: 01096990 1 1 -furnishing%1:04:00:: 00608551 3 0 -furnishing%1:06:00:: 03405265 2 0 -furnishing%1:06:01:: 03405595 1 0 -furniture%1:06:00:: 03405725 1 11 -furniture_company%1:14:00:: 08003525 1 0 -furniture_maker%1:18:00:: 09885866 1 0 -furnivall%1:18:00:: 10986272 1 0 -furor%1:04:00:: 00553995 2 0 -furor%1:09:00:: 05751173 1 2 -furore%1:04:00:: 00553995 2 0 -furore%1:09:00:: 05751173 1 0 -furosemide%1:06:00:: 03406597 1 0 -furred%5:00:00:hairy:00 00214001 1 0 -furrier%1:18:00:: 09929861 1 0 -furring%1:06:00:: 03406838 2 0 -furring%1:26:00:: 14313342 1 0 -furring_strip%1:06:00:: 03406838 1 0 -furrow%1:06:00:: 03406966 1 1 -furrow%1:25:00:: 13905792 2 0 -furrow%2:35:00:: 01277431 1 1 -furrow%2:35:01:: 01277784 2 0 -furrow%2:35:02:: 01277649 3 0 -furrowed%3:00:00:: 02243806 1 0 -furry%5:00:00:hairy:00 00214001 1 1 -furry_tongue%1:26:00:: 14311801 1 0 -further%2:41:00:: 02554922 2 2 -further%2:41:01:: 02554422 1 7 -further%4:02:00:: 00029639 3 1 -further%4:02:02:: 00029985 1 33 -further%4:02:03:: 00030443 2 10 -further%5:00:00:far:00 00443988 1 2 -furtherance%1:04:00:: 00249780 2 0 -furtherance%1:10:00:: 07251984 1 0 -furthermore%4:02:00:: 00029367 1 19 -furthermost%5:00:00:far:00 00443618 1 0 -furthest%4:02:00:: 00030654 2 0 -furthest%4:02:01:: 00030914 1 0 -furthest%5:00:00:far:00 00443618 1 0 -furtive%5:00:00:concealed:00 02088974 1 1 -furtive%5:00:00:covert:00 01706111 2 0 -furtively%4:02:00:: 00106170 1 1 -furtiveness%1:07:00:: 04657631 1 0 -furuncle%1:26:00:: 14183210 1 0 -furunculosis%1:26:00:: 14227488 1 0 -fury%1:07:00:: 05037813 3 3 -fury%1:12:00:: 07516997 1 4 -fury%1:18:00:: 09506337 4 0 -fury%1:26:00:: 14391876 2 3 -furze%1:20:00:: 12574866 1 0 -fusain%1:06:00:: 03007824 1 0 -fusanus%1:20:00:: 12736455 1 0 -fusanus_acuminatus%1:20:00:: 12736603 1 0 -fusarium_wilt%1:26:00:: 14283423 1 0 -fuschia%1:07:00:: 04964799 1 0 -fuscoboletinus%1:20:00:: 13057845 1 0 -fuscoboletinus_paluster%1:20:00:: 13058037 1 0 -fuscoboletinus_serotinus%1:20:00:: 13058272 1 0 -fuscous%5:00:00:chromatic:00 00375090 1 0 -fuse%1:06:00:: 03407122 2 0 -fuse%1:06:01:: 03407369 1 1 -fuse%2:30:00:: 00394813 1 3 -fuse%2:30:02:: 00396997 4 0 -fuse%2:30:03:: 00397192 2 1 -fuse%2:33:00:: 01137829 3 0 -fused%5:00:00:united:00 02476637 1 0 -fusee%1:06:00:: 03407122 4 0 -fusee%1:06:01:: 03407616 3 0 -fusee%1:06:02:: 03407744 2 0 -fusee%1:06:03:: 03407865 1 0 -fusee_drive%1:06:00:: 03407865 1 0 -fusel_oil%1:27:00:: 14967577 1 0 -fuselage%1:06:00:: 03408054 1 0 -fusible%5:00:00:melted:00 01506385 1 0 -fusible_metal%1:27:00:: 14716845 1 0 -fusiform%5:00:00:pointed:00 01810613 1 1 -fusil%1:06:00:: 03408264 1 0 -fusilier%1:18:00:: 10116579 1 0 -fusillade%1:04:00:: 00988320 1 0 -fusillade%2:33:00:: 01137582 1 0 -fusion%1:04:00:: 00380568 7 0 -fusion%1:04:01:: 00699517 6 0 -fusion%1:09:00:: 05936561 5 0 -fusion%1:11:00:: 07373602 1 4 -fusion%1:22:00:: 13485525 4 0 -fusion%1:22:01:: 13485767 3 0 -fusion%1:26:00:: 14418662 2 0 -fusion_bomb%1:06:00:: 03553248 1 0 -fusion_cooking%1:04:00:: 00247081 1 0 -fusion_reactor%1:06:00:: 04422409 1 0 -fuss%1:04:00:: 00555138 4 0 -fuss%1:10:00:: 07184735 3 0 -fuss%1:11:00:: 07372565 2 0 -fuss%1:26:00:: 14403772 1 1 -fuss%2:37:00:: 01793933 1 4 -fuss%2:41:00:: 02550516 2 1 -fuss-budget%1:18:00:: 10792178 1 0 -fussily%4:02:00:: 00179579 1 1 -fussiness%1:07:00:: 04700199 2 0 -fussiness%1:12:00:: 07552729 1 0 -fusspot%1:18:00:: 10792178 1 0 -fussy%5:00:00:fancy:00 01795203 2 0 -fussy%5:00:00:ill-natured:00 01136248 1 1 -fussy%5:00:01:fastidious:00 00984624 3 0 -fustian%1:06:00:: 03408340 2 0 -fustian%1:10:00:: 07087777 1 0 -fustigate%2:35:00:: 01424106 1 0 -fusty%5:00:00:conservative:00 00574884 2 0 -fusty%5:00:00:malodorous:00 01053915 1 0 -futile%5:00:00:unproductive:00 01866812 2 2 -futile%5:00:00:useless:00 02497471 1 2 -futilely%4:02:00:: 00031214 1 0 -futility%1:07:00:: 05150855 1 5 -futon%1:06:00:: 03408444 1 0 -futtock_shroud%1:06:00:: 03408621 1 0 -future%1:06:00:: 03408721 3 0 -future%1:10:00:: 06330401 2 2 -future%1:28:00:: 15121625 1 46 -future%3:00:00:: 01732270 1 12 -future%3:01:00:: 02992914 4 0 -future%5:00:00:incoming:00 01294975 3 3 -future%5:00:00:prospective:00 01884353 2 4 -future_date%1:28:00:: 15160076 1 0 -future_day%5:00:00:future:00 01732855 1 1 -future_perfect%1:24:00:: 13807178 1 0 -future_perfect_tense%1:24:00:: 13807178 1 0 -future_progressive%1:24:00:: 13807403 1 0 -future_progressive_tense%1:24:00:: 13807403 1 0 -future_tense%1:10:00:: 06330401 1 0 -futureless%5:00:00:hopeless:00 01230521 1 0 -futures_contract%1:10:00:: 06480723 1 0 -futures_exchange%1:06:00:: 03408918 1 0 -futures_market%1:06:00:: 03408918 1 0 -futurism%1:09:00:: 06209242 2 0 -futurism%1:14:00:: 08468084 1 0 -futurist%1:18:00:: 10078529 2 0 -futurist%1:18:01:: 10116702 1 0 -futurist%3:01:00:: 02993094 1 0 -futuristic%3:01:00:: 02993094 1 0 -futuristics%1:09:00:: 06136105 1 0 -futurity%1:07:00:: 05049930 2 0 -futurity%1:28:00:: 15121625 1 0 -futurology%1:09:00:: 06136105 1 0 -fuze%1:06:00:: 03407122 1 0 -fuzee%1:06:00:: 03407122 3 0 -fuzee%1:06:01:: 03407616 2 0 -fuzee%1:06:02:: 03407744 1 0 -fuzz%1:08:00:: 05261894 4 0 -fuzz%1:09:00:: 05940414 3 0 -fuzz%1:18:00:: 09879144 2 0 -fuzz%1:20:00:: 13090091 1 1 -fuzzed%5:00:00:hairy:00 00214165 1 1 -fuzziness%1:07:00:: 04704346 1 0 -fuzzy%5:00:00:hairy:00 00214165 1 2 -fuzzy%5:00:00:incoherent:00 00465585 3 0 -fuzzy%5:00:00:indistinct:00 00781644 2 1 -fuzzy_logic%1:09:00:: 06166494 1 0 -fws%1:14:00:: 08139270 1 0 -fyodor_dostoevski%1:18:00:: 10940669 1 0 -fyodor_dostoevsky%1:18:00:: 10940669 1 0 -fyodor_dostoyevsky%1:18:00:: 10940669 1 0 -fyodor_mikhailovich_dostoevski%1:18:00:: 10940669 1 0 -fyodor_mikhailovich_dostoevsky%1:18:00:: 10940669 1 0 -fyodor_mikhailovich_dostoyevsky%1:18:00:: 10940669 1 0 -g%1:10:00:: 06831819 9 0 -g%1:23:00:: 13723712 1 5 -g%1:23:01:: 13750844 4 0 -g%1:23:02:: 13628761 7 0 -g%1:23:03:: 13628955 6 0 -g%1:23:07:: 13648596 5 0 -g%1:23:08:: 13590327 8 0 -g%1:27:00:: 14829964 3 0 -g%1:27:01:: 14892138 2 0 -g-force%1:23:00:: 13648596 1 0 -g-jo%1:04:00:: 00710338 1 0 -g-man%1:18:00:: 10133850 1 0 -g-string%1:06:01:: 03464053 1 0 -g._b._shaw%1:18:00:: 11295936 1 0 -g._e._moore%1:18:00:: 11189709 1 0 -g._k._chesterton%1:18:00:: 10895274 1 0 -g._l._von_blucher%1:18:00:: 10853932 1 0 -g._r._kirchhoff%1:18:00:: 11105945 1 0 -g._stanley_hall%1:18:00:: 11024908 1 0 -g.i.%2:35:00:: 01533715 1 0 -g_clef%1:10:00:: 06862805 1 0 -g_suit%1:06:00:: 02720576 1 0 -ga%1:15:00:: 09075842 3 0 -ga%1:27:00:: 14638256 2 0 -ga%1:27:01:: 15066125 1 0 -gaap%1:14:00:: 08145871 1 0 -gab%1:10:00:: 07135080 1 0 -gab%2:32:00:: 00741573 1 0 -gaba%1:27:00:: 14606290 1 0 -gabapentin%1:06:00:: 03409070 1 0 -gabardine%1:06:00:: 03409297 1 1 -gabardine%1:06:01:: 03258730 3 0 -gabardine%1:06:03:: 03357081 2 0 -gabble%1:10:00:: 06610992 1 0 -gabble%2:32:00:: 01036804 1 1 -gabbro%1:27:00:: 14932645 1 0 -gabby%5:00:00:voluble:00 02384077 1 0 -gaberdine%1:06:00:: 03258730 1 0 -gabfest%1:10:00:: 07135080 1 0 -gable%1:06:00:: 03409393 1 1 -gable%1:18:00:: 10986437 2 0 -gable_end%1:06:00:: 03409393 1 0 -gable_roof%1:06:00:: 03409591 1 0 -gable_wall%1:06:00:: 03409393 1 0 -gabled%3:00:00:: 01221502 1 0 -gabon%1:15:00:: 08945529 1 0 -gabon_franc%1:23:00:: 13677889 1 0 -gabonese%1:18:00:: 09710041 1 0 -gabonese%3:01:00:: 03066825 1 0 -gabonese_republic%1:15:00:: 08945529 1 0 -gaboon_viper%1:05:00:: 01753180 1 0 -gabor%1:18:00:: 10986562 1 0 -gaboriau%1:18:00:: 10986710 1 0 -gaborone%1:15:00:: 08852685 1 0 -gabriel%1:18:00:: 09539394 1 0 -gabriel_daniel_fahrenheit%1:18:00:: 10965151 1 0 -gabriel_lippmann%1:18:00:: 11134466 1 0 -gabriel_tellez%1:18:00:: 11343333 1 0 -gabriele_fallopius%1:18:00:: 10965966 1 0 -gabriello_fallopio%1:18:00:: 10965966 1 0 -gabun%1:15:00:: 08945529 1 0 -gad%1:06:00:: 04290259 2 0 -gad%1:26:00:: 14380717 1 0 -gad%2:38:00:: 01882689 1 0 -gadaba%1:10:00:: 06982125 2 0 -gadaba%1:18:00:: 09674412 1 0 -gadabout%1:18:00:: 10116905 1 0 -gaddafi%1:18:00:: 11250287 1 0 -gaddi%1:06:00:: 03409806 1 0 -gadfly%1:05:00:: 02193009 2 0 -gadfly%1:18:00:: 10419630 1 2 -gadget%1:06:00:: 02729965 1 9 -gadgeteer%1:18:00:: 10117017 1 0 -gadgetry%1:06:00:: 03409920 1 1 -gadidae%1:05:00:: 02521916 1 0 -gadiformes%1:05:00:: 02521241 1 0 -gadoid%1:05:00:: 02521646 1 0 -gadoid_fish%1:05:00:: 02521646 1 0 -gadolinite%1:27:00:: 14675569 1 0 -gadolinium%1:27:00:: 14638041 1 0 -gadsden%1:15:00:: 09054233 1 0 -gadus%1:05:00:: 02522247 1 0 -gadus_macrocephalus%1:05:00:: 02522866 1 0 -gadus_merlangus%1:05:00:: 02523110 1 0 -gadus_morhua%1:05:00:: 02522722 1 0 -gaea%1:18:00:: 09560762 1 0 -gael%1:18:00:: 09688233 1 0 -gaelic%1:10:00:: 06960566 1 0 -gaelic%3:01:00:: 02957823 1 1 -gaelic-speaking%5:00:00:communicative:00 00497626 1 0 -gaetan_vestris%1:18:00:: 11365300 1 0 -gaetano_donizetti%1:18:00:: 10939360 1 0 -gaff%1:06:00:: 03410022 3 0 -gaff%1:06:01:: 03410147 2 0 -gaff%1:06:02:: 03410303 1 0 -gaff-headed_sail%1:06:00:: 03410423 1 0 -gaff_topsail%1:06:00:: 03410571 1 0 -gaffe%1:04:00:: 00076196 1 0 -gaffer%1:18:00:: 10104209 3 0 -gaffer%1:18:01:: 10376890 1 0 -gaffer%1:18:02:: 10117154 2 0 -gaffsail%1:06:00:: 03410423 1 0 -gafsa%1:15:00:: 09038170 1 0 -gag%1:06:00:: 03410740 2 0 -gag%1:10:00:: 06778102 1 6 -gag%2:29:00:: 00077698 5 0 -gag%2:29:01:: 00077458 7 0 -gag%2:29:02:: 00077606 6 0 -gag%2:32:00:: 00853958 4 0 -gag%2:35:00:: 01570562 2 0 -gag%2:35:07:: 01284683 3 0 -gag%2:39:00:: 02190943 1 1 -gag_law%1:10:00:: 06538412 2 0 -gag_law%1:10:01:: 06666829 1 0 -gag_line%1:10:00:: 06778777 1 1 -gag_order%1:10:00:: 06557585 1 0 -gag_reflex%1:04:00:: 00866423 1 0 -gag_rule%1:10:00:: 06666829 1 0 -gaga%5:00:00:enthusiastic:00 00886448 2 0 -gaga%5:00:00:old:02 01645296 1 0 -gagarin%1:18:00:: 10986866 1 0 -gage%1:06:00:: 03429288 2 1 -gage%1:06:01:: 03990834 1 1 -gage%2:33:00:: 01139104 1 0 -gaggle%1:14:00:: 07992116 1 0 -gaggle%2:32:00:: 01056780 1 0 -gagman%1:18:00:: 10117267 2 0 -gagman%1:18:01:: 10117415 1 0 -gagster%1:18:00:: 10117267 1 0 -gagwriter%1:18:00:: 10117267 1 1 -gai_choi%1:20:00:: 11878633 1 0 -gaia%1:18:00:: 09560762 1 0 -gaiety%1:12:00:: 07529245 1 4 -gaiety%1:12:01:: 07512039 2 0 -gaillardia%1:20:00:: 11970586 1 0 -gaillardia_pulchella%1:20:00:: 11970846 1 0 -gaily%4:02:00:: 00163236 1 2 -gain%1:07:01:: 05109324 3 2 -gain%1:07:02:: 05157574 2 2 -gain%1:21:00:: 13254805 4 1 -gain%1:23:00:: 13754293 1 6 -gain%2:29:00:: 00046151 9 0 -gain%2:30:00:: 00158222 6 2 -gain%2:30:01:: 00157462 7 2 -gain%2:33:00:: 01111028 5 2 -gain%2:38:00:: 02020590 4 5 -gain%2:40:00:: 02289295 8 1 -gain%2:40:01:: 02288295 2 13 -gain%2:40:02:: 02290461 3 7 -gain%2:40:03:: 02292125 1 27 -gain_ground%2:33:00:: 01111028 1 0 -gain_vigor%2:29:00:: 00023473 1 0 -gainer%1:04:00:: 00443917 3 0 -gainer%1:18:00:: 10117511 2 0 -gainer%1:18:01:: 10117739 1 0 -gainesville%1:15:00:: 09073138 1 0 -gainful%5:00:00:profitable:00 01871473 1 1 -gainfully%4:02:00:: 00346715 1 0 -gainfulness%1:07:00:: 05157866 1 0 -gaining_control%1:04:00:: 00088481 1 0 -gainlessly%4:02:00:: 00433120 1 0 -gainly%5:00:00:graceful:00 01140054 1 0 -gainsay%2:32:00:: 00869126 1 0 -gainsborough%1:18:00:: 10987044 1 0 -gaiseric%1:18:00:: 10994500 1 0 -gait%1:04:01:: 00286497 3 0 -gait%1:04:02:: 00286957 2 0 -gait%1:28:00:: 15280497 1 1 -gaiter%1:06:01:: 03410938 3 0 -gaiter%1:06:02:: 04269822 1 0 -gaiter%1:06:03:: 03411079 2 0 -gaius%1:18:00:: 10879551 1 0 -gaius_aurelius_valerius_diocletian%1:18:00:: 10935968 1 0 -gaius_caesar%1:18:00:: 10879551 1 0 -gaius_cassius_longinus%1:18:00:: 10886763 1 0 -gaius_cornelius_tacitus%1:18:00:: 11328524 1 0 -gaius_flaminius%1:18:00:: 10972495 1 0 -gaius_julius_caesar%1:18:00:: 10878161 1 0 -gaius_julius_caesar_octavianus%1:18:00:: 10828990 1 0 -gaius_octavianus%1:18:00:: 10828990 1 0 -gaius_petronius%1:18:00:: 11231821 1 0 -gaius_plinius_caecilius_secundus%1:18:00:: 11239765 1 0 -gaius_plinius_secundus%1:18:00:: 11239567 1 0 -gaius_valerius_catullus%1:18:00:: 10887981 1 0 -gal%1:18:00:: 10117851 3 0 -gal%1:23:00:: 13619764 1 1 -gal%1:23:01:: 13648793 2 0 -gala%1:04:00:: 00518669 1 0 -gala_affair%1:04:00:: 00518669 1 0 -galactagogue%1:27:00:: 14876679 1 0 -galactic%3:01:00:: 02849098 1 0 -galactic%5:00:00:large:00 01383582 2 0 -galactocele%1:26:00:: 14201845 1 0 -galactose%1:27:00:: 14876771 1 0 -galactosemia%1:26:00:: 14156134 1 0 -galactosis%1:22:00:: 13485890 1 0 -galago%1:05:00:: 02499808 1 0 -galahad%1:18:00:: 10987176 1 0 -galan%1:17:00:: 09285828 1 0 -galangal%1:20:01:: 12356960 1 0 -galangal%1:20:03:: 12151170 2 0 -galantine%1:13:00:: 07868830 1 0 -galanty_show%1:10:00:: 07019500 1 0 -galapagos%1:15:00:: 08777348 1 0 -galapagos_islands%1:15:00:: 08777348 1 0 -galatea%1:18:00:: 09554910 1 0 -galatia%1:15:00:: 08701296 1 0 -galatian%1:18:00:: 09688596 1 0 -galatians%1:10:00:: 06443922 1 0 -galax%1:20:00:: 12251278 1 0 -galax_urceolata%1:20:00:: 12251278 1 0 -galaxy%1:14:00:: 08271042 3 0 -galaxy%1:14:01:: 08270938 1 2 -galaxy%1:20:00:: 12251278 2 0 -galbanum%1:27:00:: 14876872 1 0 -galbraith%1:18:00:: 10987358 1 0 -galbulidae%1:05:00:: 01842942 1 0 -galbulus%1:20:00:: 11683216 1 0 -gale%1:19:00:: 11461825 1 0 -galea%1:20:00:: 13011461 1 0 -galega%1:20:00:: 12529353 1 0 -galega_officinalis%1:20:00:: 12529500 1 0 -galen%1:18:00:: 10987565 1 0 -galena%1:27:00:: 14675910 1 0 -galeocerdo%1:05:00:: 01491235 1 0 -galeocerdo_cuvieri%1:05:00:: 01491361 1 0 -galeopsis%1:20:00:: 12846869 1 0 -galeopsis_tetrahit%1:20:00:: 12847008 1 0 -galeorhinus%1:05:00:: 01491520 1 0 -galeorhinus_zyopterus%1:05:00:: 01491661 1 0 -galeras%1:15:00:: 09175322 1 0 -galere%1:14:00:: 08406259 1 0 -galicia%1:15:00:: 09028204 1 0 -galician%1:10:00:: 06966454 1 0 -galictis_vittatus%1:05:00:: 02449699 1 0 -galiella_rufa%1:20:00:: 13031323 1 0 -galilaean%1:18:00:: 10117957 1 0 -galilaean%3:01:00:: 02732569 1 0 -galilean%1:17:00:: 09285979 2 0 -galilean%1:18:00:: 10117957 1 0 -galilean%3:01:00:: 02732569 2 0 -galilean%3:01:01:: 02732806 1 0 -galilean_satellite%1:17:00:: 09285979 1 0 -galilean_telescope%1:06:00:: 03411208 1 0 -galilee%1:15:00:: 08793914 1 0 -galileo%1:18:00:: 10987724 1 0 -galileo_galilei%1:18:00:: 10987724 1 0 -galina_sergeevna_ulanova%1:18:00:: 11355537 1 0 -galina_ulanova%1:18:00:: 11355537 1 0 -galingale%1:20:00:: 12151170 1 0 -galium%1:20:00:: 12664897 1 0 -galium_aparine%1:20:00:: 12666159 1 0 -galium_boreale%1:20:00:: 12665659 1 0 -galium_lanceolatum%1:20:00:: 12666050 1 0 -galium_mollugo%1:20:00:: 12666369 1 0 -galium_odoratum%1:20:00:: 12665271 1 0 -galium_verum%1:20:00:: 12665857 1 0 -gall%1:07:00:: 04915866 6 0 -gall%1:08:00:: 05406570 5 0 -gall%1:12:00:: 07548978 4 0 -gall%1:20:00:: 13099586 3 0 -gall%1:26:00:: 14184390 2 0 -gall%1:26:01:: 14275240 1 0 -gall%2:37:00:: 01786760 2 0 -gall%2:39:00:: 02119659 1 0 -gall-berry%1:20:00:: 12757458 1 0 -gall_bladder%1:08:00:: 05385161 1 0 -gall_gnat%1:05:00:: 02189363 1 0 -gall_midge%1:05:00:: 02189363 1 0 -gall_of_the_earth%1:20:00:: 11997409 1 0 -gall_wasp%1:05:00:: 02216740 1 0 -gallamine%1:27:00:: 14859622 1 0 -gallant%1:18:00:: 10644062 2 0 -gallant%1:18:01:: 09991026 1 1 -gallant%5:00:00:brave:00 00263840 1 1 -gallant%5:00:00:courteous:00 00640106 4 0 -gallant%5:00:00:impressive:00 01285136 3 0 -gallant%5:00:00:spirited:00 02279622 2 0 -gallant_fox%1:05:00:: 02383708 1 0 -gallantly%4:02:00:: 00284489 1 0 -gallantry%1:04:00:: 01228792 3 0 -gallantry%1:07:00:: 04857738 1 1 -gallantry%1:07:01:: 04913738 2 0 -gallaudet%1:18:00:: 10988059 1 0 -gallberry%1:20:00:: 12757458 1 0 -gallbladder%1:08:00:: 05385161 1 1 -galled%5:00:00:painful:00 01712076 1 0 -galleon%1:06:00:: 03411339 1 0 -galleria%1:05:00:: 02289177 1 0 -galleria_mellonella%1:05:00:: 02289307 1 0 -gallery%1:06:01:: 03411544 6 0 -gallery%1:06:02:: 03411762 5 0 -gallery%1:06:03:: 03411927 4 0 -gallery%1:06:04:: 03412058 3 0 -gallery%1:06:05:: 04527648 2 0 -gallery%1:06:06:: 03239399 7 0 -gallery%1:14:00:: 08222203 1 0 -galley%1:06:00:: 03412220 4 0 -galley%1:06:01:: 03412387 3 0 -galley%1:06:02:: 03412511 2 0 -galley%1:06:03:: 03412674 1 0 -galley_proof%1:10:00:: 06591108 1 0 -galley_slave%1:18:00:: 10118113 1 0 -galley_slave%1:18:01:: 10035809 2 0 -gallfly%1:05:00:: 02161588 3 0 -gallfly%1:05:02:: 02216740 1 0 -gallfly%1:05:03:: 02189363 2 0 -gallia%1:15:00:: 08929722 1 0 -galliano%1:13:00:: 07909714 1 0 -gallic%3:01:00:: 03066978 1 0 -gallic%3:01:01:: 02958392 2 0 -gallic_acid%1:27:00:: 14876993 1 0 -gallican%3:01:00:: 02732935 1 0 -gallicanism%1:14:00:: 08475070 1 0 -gallicism%1:10:00:: 07081646 1 0 -galliformes%1:05:00:: 01789064 1 0 -gallimaufry%1:14:00:: 08399977 1 0 -gallina%1:05:00:: 01791107 1 0 -gallinacean%1:05:00:: 01789386 1 0 -gallinaceous%3:01:00:: 02993258 1 0 -gallinaceous_bird%1:05:00:: 01789386 1 0 -gallinago%1:05:00:: 02031752 1 0 -gallinago_gallinago%1:05:00:: 02032222 1 0 -gallinago_gallinago_delicata%1:05:00:: 02032355 1 0 -gallinago_media%1:05:00:: 02032480 1 0 -galling%5:00:00:disagreeable:00 00089550 1 1 -gallinula%1:05:00:: 02016198 1 0 -gallinula_chloropus%1:05:00:: 02016816 1 0 -gallinula_chloropus_cachinnans%1:05:00:: 02016659 1 0 -gallinule%1:05:00:: 02016358 1 0 -gallirallus%1:05:00:: 02015221 1 0 -gallium%1:27:00:: 14638256 1 0 -gallivant%2:38:00:: 01882689 1 0 -gallon%1:23:01:: 13619764 1 2 -gallon%1:23:02:: 13622209 2 0 -gallop%1:04:00:: 00288671 1 2 -gallop%2:38:00:: 01959927 1 8 -gallop%2:38:01:: 01960643 2 3 -gallop%2:38:03:: 01960296 3 0 -gallop_rhythm%1:26:00:: 14111540 1 0 -gallous%1:06:00:: 03413124 1 0 -galloway%1:05:00:: 02407276 2 0 -galloway%1:15:00:: 08892058 1 0 -gallows%1:06:00:: 03412906 1 1 -gallows-tree%1:06:00:: 03413124 1 0 -gallows_bird%1:18:00:: 10118208 1 0 -gallows_tree%1:06:00:: 03413124 1 0 -gallstone%1:17:00:: 09286200 1 0 -gallup%1:15:00:: 09115756 1 0 -gallus%1:05:00:: 01790943 2 0 -gallus%1:06:00:: 02887489 1 1 -gallus_gallus%1:05:00:: 01791463 2 0 -gallus_gallus%1:05:02:: 01791625 1 0 -galois%1:18:00:: 10988261 1 0 -galois_theory%1:09:00:: 06017334 1 0 -galoot%1:18:00:: 10118301 1 0 -galore%5:00:00:abundant:00 00014358 2 0 -galore%5:00:00:many:00 01552162 1 0 -galosh%1:06:00:: 02735538 1 0 -galsworthy%1:18:00:: 10988466 1 0 -galton%1:18:00:: 10988570 1 0 -galtonia_candicans%1:20:00:: 12458874 1 0 -galumph%2:38:00:: 01964998 1 0 -galvani%1:18:00:: 10988887 1 0 -galvanic%3:01:00:: 02827160 1 1 -galvanic%5:00:00:exciting:00 00921631 2 0 -galvanic_battery%1:06:00:: 04540547 1 0 -galvanic_cell%1:06:00:: 04540761 1 0 -galvanic_pile%1:06:00:: 04541136 1 0 -galvanic_skin_response%1:04:00:: 00860011 1 0 -galvanisation%1:04:00:: 00713250 3 0 -galvanisation%1:04:01:: 01262109 2 0 -galvanisation%1:22:00:: 13485968 1 0 -galvanise%2:29:02:: 00090513 3 0 -galvanise%2:35:00:: 01266895 2 0 -galvanise%2:37:00:: 01821634 1 0 -galvaniser%1:18:00:: 10118382 2 0 -galvaniser%1:18:01:: 10118587 1 0 -galvanising%5:00:00:exciting:00 00921631 1 0 -galvanism%1:04:00:: 00662681 2 0 -galvanism%1:19:00:: 11450453 1 1 -galvanization%1:04:00:: 00713250 3 0 -galvanization%1:04:01:: 01262109 2 0 -galvanization%1:22:00:: 13485968 1 0 -galvanize%2:29:02:: 00090513 3 0 -galvanize%2:35:00:: 01266895 2 0 -galvanize%2:37:00:: 01821634 1 0 -galvanized_iron%1:27:00:: 14877100 1 0 -galvanizer%1:18:00:: 10118382 2 0 -galvanizer%1:18:01:: 10118587 1 0 -galvanizing%5:00:00:exciting:00 00921631 1 0 -galvanometer%1:06:00:: 03413264 1 0 -galveston%1:15:00:: 09144484 1 0 -galveston_bay%1:17:00:: 09286318 1 0 -galveston_island%1:15:00:: 09144605 1 0 -galway%1:15:00:: 08889521 1 0 -galway_bay%1:17:00:: 09286478 1 0 -galwegian%3:01:00:: 02978335 1 0 -gam%1:14:00:: 07994752 1 0 -gamal_abdel_nasser%1:18:00:: 11200812 1 0 -gamba%1:06:00:: 04536595 1 0 -gambelia%1:05:00:: 01679837 1 0 -gambia%1:15:00:: 08945821 1 0 -gambian%1:18:00:: 09747495 1 0 -gambian%3:01:00:: 03067153 1 0 -gambian_monetary_unit%1:23:00:: 13668034 1 0 -gambier_islands%1:15:00:: 08990844 1 0 -gambist%1:18:00:: 10118743 1 0 -gambit%1:04:00:: 00167950 3 0 -gambit%1:04:01:: 00172490 2 0 -gambit%1:10:00:: 06765531 1 0 -gamble%1:04:00:: 00802962 2 0 -gamble%1:21:00:: 13342987 1 0 -gamble%2:33:00:: 01138523 2 0 -gamble%2:41:00:: 02544348 1 2 -gambler%1:18:00:: 10118844 1 1 -gambler%1:18:01:: 10119200 2 0 -gambling%1:04:00:: 00430140 1 4 -gambling_casino%1:06:00:: 02977936 1 0 -gambling_contract%1:10:00:: 06522941 1 0 -gambling_den%1:06:00:: 03413428 1 0 -gambling_game%1:04:00:: 00507673 1 0 -gambling_hell%1:06:00:: 03413428 1 0 -gambling_house%1:06:00:: 03413428 1 2 -gambling_system%1:09:00:: 05663491 1 0 -gamboge%1:07:00:: 04966543 2 0 -gamboge%1:27:00:: 14898364 1 0 -gamboge_tree%1:20:00:: 12366870 1 0 -gambol%1:04:00:: 00511817 1 0 -gambol%2:38:00:: 01883716 1 0 -gambrel%1:06:00:: 03413684 1 0 -gambrel_roof%1:06:00:: 03413684 1 0 -gambusia%1:05:00:: 01449252 1 0 -gambusia_affinis%1:05:00:: 01449374 1 0 -game%1:04:00:: 00455599 1 38 -game%1:04:01:: 00430606 3 14 -game%1:04:02:: 00583089 10 0 -game%1:04:03:: 00456199 2 26 -game%1:04:04:: 00513089 11 0 -game%1:05:00:: 02152991 4 7 -game%1:06:00:: 03413828 9 0 -game%1:09:00:: 05907682 8 0 -game%1:13:00:: 07650449 7 0 -game%1:23:00:: 13596235 6 0 -game%1:28:00:: 15256567 5 0 -game%2:33:00:: 01139104 1 0 -game%5:00:00:brave:00 00263994 2 0 -game%5:00:00:unfit:01 01018788 1 0 -game_bird%1:05:00:: 02153203 1 1 -game_equipment%1:06:00:: 03414162 1 0 -game_fish%1:05:00:: 02512830 1 0 -game_fowl%1:05:00:: 01790711 1 0 -game_law%1:10:00:: 06538525 1 0 -game_license%1:10:00:: 06550552 1 0 -game_misconduct%1:07:00:: 05163582 1 0 -game_of_chance%1:04:00:: 00507673 1 0 -game_plan%1:09:00:: 05906867 2 0 -game_plan%1:09:01:: 05906998 1 0 -game_room%1:06:00:: 04119478 1 0 -game_show%1:10:00:: 06621061 1 0 -game_theory%1:09:00:: 06150222 1 0 -game_warden%1:18:00:: 10119351 1 0 -gamebag%1:06:00:: 03414029 1 0 -gameboard%1:06:00:: 02857023 1 0 -gamecock%1:05:00:: 01514752 1 1 -gamecock%1:18:00:: 10169678 2 0 -gamekeeper%1:18:00:: 10119351 1 0 -gamelan%1:14:00:: 08248521 1 0 -gamely%4:02:00:: 00346822 1 0 -gameness%1:26:00:: 14549937 1 0 -games-master%1:18:00:: 10119491 1 0 -games-mistress%1:18:00:: 10119491 1 0 -gamesmanship%1:07:00:: 04839877 1 0 -gametangium%1:20:00:: 13093629 1 0 -gamete%1:08:00:: 05456945 1 0 -gametocyte%1:08:00:: 05458412 1 0 -gametoecium%1:20:00:: 13093725 1 0 -gametogenesis%1:22:00:: 13486115 1 0 -gametophore%1:20:00:: 13094003 1 0 -gametophyte%1:20:00:: 11687071 1 0 -gamey%5:00:00:brave:00 00263994 3 0 -gamey%5:00:00:malodorous:00 01054047 2 0 -gamey%5:00:00:sexy:00 02132224 1 0 -gamin%1:18:00:: 10663137 1 1 -gamine%1:18:00:: 10119609 2 0 -gamine%1:18:01:: 10119685 1 0 -gaminess%1:07:00:: 04902283 1 0 -gaming%1:04:00:: 00430140 1 0 -gaming_card%1:06:00:: 03414574 1 2 -gaming_house%1:06:00:: 03413428 1 0 -gaming_table%1:06:00:: 03414676 1 0 -gamma%1:10:00:: 06834351 1 1 -gamma%1:18:00:: 10920582 3 0 -gamma%1:23:00:: 13638094 2 0 -gamma-interferon%1:06:00:: 03415083 1 0 -gamma_acid%1:27:00:: 14611980 1 0 -gamma_aminobutyric_acid%1:27:00:: 14606290 1 0 -gamma_globulin%1:27:00:: 15022389 1 1 -gamma_hydroxybutyrate%1:06:00:: 03414814 1 0 -gamma_iron%1:27:00:: 14722240 1 0 -gamma_radiation%1:19:00:: 11463073 1 0 -gamma_ray%1:19:00:: 11463073 1 0 -gammon%1:13:00:: 07669891 1 0 -gammon%1:13:01:: 07669367 2 0 -gammopathy%1:26:00:: 14069212 1 0 -gammy%5:00:00:unfit:01 01019450 1 0 -gamopetalous%5:00:00:petalous:00 01775980 1 0 -gamow%1:18:00:: 10989099 1 0 -gamp%1:06:00:: 03415252 1 0 -gamut%1:07:00:: 05128096 1 2 -gamut%1:10:00:: 06857487 2 0 -gamy%5:00:00:brave:00 00263994 3 0 -gamy%5:00:00:malodorous:00 01054047 2 0 -gamy%5:00:00:sexy:00 02132224 1 0 -gan_jiang%1:17:00:: 09286843 1 0 -ganapati%1:18:00:: 09525961 1 0 -gand%1:15:00:: 08851500 1 0 -gand_flower%1:20:00:: 12706410 1 0 -gander%1:05:00:: 01856155 1 0 -gandhi%1:18:00:: 10989339 2 0 -gandhi%1:18:01:: 10989610 1 0 -gandhian%3:01:00:: 03032009 1 0 -gandy_dancer%1:18:00:: 10119775 1 0 -ganef%1:18:00:: 10133458 1 0 -ganesa%1:18:00:: 09525961 1 0 -ganesh%1:18:00:: 09525961 1 0 -ganesha%1:18:00:: 09525961 1 0 -gang%1:06:00:: 03415363 4 0 -gang%1:14:00:: 08242799 3 1 -gang%1:14:01:: 08244062 1 7 -gang%1:14:02:: 08273843 2 2 -gang%2:33:00:: 01089737 1 0 -gang-rape%2:41:00:: 02567917 1 0 -gang_fight%1:04:00:: 01176649 1 0 -gang_up%2:33:00:: 01089737 1 2 -gangboard%1:06:00:: 03415486 1 0 -gangdom%1:14:00:: 08245172 1 0 -ganger%1:18:00:: 10119874 1 0 -ganges%1:17:00:: 09286630 1 0 -ganges_river%1:17:00:: 09286630 1 0 -gangland%1:14:00:: 08245172 1 0 -gangling%5:00:00:tall:00 02385492 1 0 -gangling%5:00:00:thin:03 00989544 2 0 -gangliocyte%1:08:00:: 05427346 1 0 -ganglion%1:08:00:: 05296968 1 0 -ganglion_cell%1:08:00:: 05427346 1 0 -gangly%5:00:00:tall:00 02385492 1 0 -gangly%5:00:00:thin:03 00989544 2 0 -gangplank%1:06:00:: 03415486 1 0 -gangrene%1:19:00:: 11486708 2 0 -gangrene%1:26:00:: 14313440 1 0 -gangrene%2:29:00:: 00097394 1 0 -gangrenous%5:00:00:unhealthy:00 01176973 1 0 -gangrenous_emphysema%1:26:00:: 14313943 1 0 -gangsaw%1:06:00:: 03415626 1 0 -gangsta%1:18:00:: 10119953 1 0 -gangster%1:18:00:: 10120085 1 3 -gangster's_moll%1:18:00:: 10327475 1 0 -gangway%1:06:00:: 03415749 1 0 -gangway%1:06:01:: 03415486 2 0 -gangway%1:06:02:: 02693860 3 0 -ganja%1:06:00:: 02949691 2 0 -ganja%1:20:00:: 12397210 1 0 -gannet%1:05:00:: 02053083 1 0 -ganof%1:18:00:: 10133458 1 0 -ganoid%1:05:00:: 02638596 1 0 -ganoid_fish%1:05:00:: 02638596 1 0 -ganoidei%1:05:00:: 02638323 1 0 -ganoin%1:05:00:: 02638104 1 0 -ganoine%1:05:00:: 02638104 1 0 -gansu%1:15:00:: 08725692 1 0 -gansu_province%1:15:00:: 08725692 1 0 -gantanol%1:06:00:: 04352580 1 0 -gantlet%1:04:00:: 01164063 5 0 -gantlet%1:06:00:: 03415868 4 0 -gantlet%1:06:01:: 03429771 2 0 -gantlet%1:06:02:: 03429682 3 0 -gantlet%1:10:00:: 07232275 1 0 -gantrisin%1:06:00:: 04353016 1 0 -gantry%1:06:00:: 03416094 1 0 -ganymede%1:17:00:: 09287033 2 0 -ganymede%1:18:00:: 09494764 1 0 -gao%1:14:00:: 08162245 1 0 -gaol%1:06:00:: 03592245 1 0 -gaol%2:41:00:: 02494356 1 0 -gaolbird%1:18:00:: 10219121 1 0 -gaolbreak%1:04:00:: 00059989 1 0 -gaoler%1:18:00:: 10149867 1 0 -gap%1:04:00:: 00383952 6 0 -gap%1:06:00:: 03416329 3 2 -gap%1:07:00:: 04752859 1 3 -gap%1:10:00:: 07183853 5 0 -gap%1:17:00:: 09379111 2 2 -gap%1:17:01:: 09249034 4 0 -gap%2:35:00:: 01593614 1 0 -gap-toothed%5:00:00:toothed:00 02438968 1 0 -gape%1:04:01:: 00879037 2 0 -gape%1:10:00:: 06877381 1 0 -gape%2:39:00:: 02164531 1 1 -gape%2:42:00:: 02718750 2 0 -gaping%5:00:00:open:08 01654582 1 3 -gapped_scale%1:10:00:: 06861315 1 0 -gar%1:05:01:: 02641379 1 0 -gar%1:05:02:: 02549989 2 0 -garage%1:06:00:: 03416489 1 12 -garage%1:06:01:: 03416640 2 0 -garage%2:40:00:: 02282946 1 2 -garage_sale%1:04:00:: 01119250 1 0 -garageman's_lien%1:21:00:: 13402389 1 0 -garambulla%1:13:00:: 07769005 2 0 -garambulla%1:20:00:: 11850521 1 0 -garambulla_cactus%1:20:00:: 11850521 1 0 -garamycin%1:06:00:: 03435382 1 0 -garand%1:06:00:: 03416775 1 0 -garand_rifle%1:06:00:: 03416775 1 0 -garb%1:06:00:: 02756098 1 1 -garb%2:29:00:: 00047945 1 0 -garbage%1:06:00:: 03416900 3 0 -garbage%1:10:00:: 06612266 2 0 -garbage%1:27:00:: 14857151 1 2 -garbage_can%1:06:00:: 02747177 1 1 -garbage_carter%1:18:00:: 10120330 1 0 -garbage_collection%1:04:00:: 01015843 1 0 -garbage_collector%1:18:00:: 10120330 1 1 -garbage_disposal%1:06:00:: 03212114 1 0 -garbage_down%2:34:00:: 01174099 1 0 -garbage_dump%1:15:00:: 08560027 1 0 -garbage_hauler%1:18:00:: 10120330 1 0 -garbage_heap%1:15:00:: 08573842 1 0 -garbage_man%1:18:00:: 10120330 1 0 -garbage_pickup%1:04:00:: 01015843 1 0 -garbage_truck%1:06:00:: 03417042 1 0 -garbageman%1:18:00:: 10120330 1 0 -garbanzo%1:13:00:: 07726095 2 0 -garbanzo%1:20:00:: 12515925 1 0 -garbed%5:00:00:clothed:00 00454440 1 1 -garble%2:32:00:: 00835903 1 0 -garbled%5:00:00:incoherent:00 00465221 1 1 -garbo%1:18:00:: 10989801 1 0 -garboard%1:06:00:: 03417202 1 0 -garboard_plank%1:06:00:: 03417202 1 0 -garboard_strake%1:06:00:: 03417202 1 0 -garboil%1:26:00:: 13978709 1 0 -garbology%1:09:00:: 06147770 1 0 -garcia_lorca%1:18:00:: 10989977 1 0 -garcinia%1:20:00:: 12366507 1 0 -garcinia_cambogia%1:20:00:: 12366870 1 0 -garcinia_gummi-gutta%1:20:00:: 12366870 1 0 -garcinia_hanburyi%1:20:00:: 12366870 1 0 -garcinia_mangostana%1:20:00:: 12366675 1 0 -gardant%5:00:00:forward:01 00203495 1 0 -garden%1:06:00:: 03417345 1 7 -garden%1:06:01:: 03417749 3 6 -garden%1:14:00:: 08439808 2 6 -garden%2:36:00:: 01740969 1 3 -garden_angelica%1:20:00:: 12932173 1 0 -garden_balm%1:20:00:: 12854600 1 0 -garden_cart%1:06:00:: 02797295 1 0 -garden_centipede%1:05:00:: 01783706 1 0 -garden_chair%1:06:00:: 03649674 1 0 -garden_cress%1:13:00:: 07733005 1 0 -garden_current%1:20:00:: 12805373 1 0 -garden_egg%1:20:00:: 12896000 1 0 -garden_forget-me-not%1:20:00:: 12821895 1 0 -garden_heliotrope%1:20:00:: 12950314 1 1 -garden_hose%1:06:00:: 03417871 1 0 -garden_huckleberry%1:20:00:: 12896615 1 0 -garden_lettuce%1:20:00:: 11986511 1 0 -garden_loosestrife%1:20:00:: 12095781 1 0 -garden_nasturtium%1:20:00:: 12719944 1 0 -garden_of_eden%1:09:00:: 05628658 1 0 -garden_orache%1:20:00:: 11831100 1 0 -garden_party%1:14:00:: 08255508 1 0 -garden_pea%1:13:00:: 07725531 3 0 -garden_pea%1:20:00:: 12560420 2 0 -garden_pea%1:20:02:: 12560621 1 0 -garden_pea_plant%1:20:00:: 12560420 1 0 -garden_pepper_cress%1:20:00:: 11890507 1 0 -garden_pink%1:20:00:: 11807979 1 0 -garden_plant%1:20:00:: 13083306 1 0 -garden_rake%1:06:00:: 03417970 1 0 -garden_rhubarb%1:20:00:: 12603449 1 0 -garden_rocket%1:20:00:: 11886537 1 0 -garden_roller%1:06:00:: 03418052 1 0 -garden_snail%1:05:00:: 01944955 1 0 -garden_sorrel%1:20:01:: 12604228 2 0 -garden_sorrel%1:20:02:: 12604845 1 0 -garden_spade%1:06:00:: 03418158 1 0 -garden_spider%1:05:00:: 01773797 1 0 -garden_state%1:15:00:: 09112282 1 0 -garden_stater%1:18:00:: 09744462 1 0 -garden_strawberry%1:20:00:: 12630478 1 0 -garden_symphilid%1:05:00:: 01783706 1 0 -garden_tool%1:06:00:: 03418242 1 0 -garden_trowel%1:06:00:: 03418402 1 0 -garden_truck%1:13:00:: 07705711 1 0 -garden_violet%1:20:00:: 12389317 1 0 -garden_webworm%1:05:00:: 02309120 1 0 -gardener%1:18:00:: 10120533 1 3 -gardener%1:18:01:: 10120671 2 0 -gardener's_delight%1:20:00:: 11812094 1 0 -gardener's_garters%1:20:00:: 12129738 1 0 -gardenia%1:20:00:: 12666768 1 0 -gardenia_augusta%1:20:00:: 12666965 1 0 -gardenia_jasminoides%1:20:00:: 12666965 1 0 -gardening%1:04:00:: 00918383 1 1 -gardiner%1:18:00:: 10990212 1 0 -gardner%1:18:00:: 10990371 2 0 -gardner%1:18:01:: 10990509 1 0 -garfield%1:18:00:: 10990733 1 0 -garfish%1:05:00:: 02641379 1 0 -garganey%1:05:00:: 01848555 1 0 -gargantua%1:18:00:: 09488448 1 0 -gargantuan%5:00:00:large:00 01385773 1 0 -garget%1:20:00:: 11855553 1 0 -gargle%1:11:00:: 07384023 2 0 -gargle%1:27:00:: 14848642 1 0 -gargle%2:29:00:: 00037138 2 0 -gargle%2:32:00:: 01059945 1 0 -gargoyle%1:06:00:: 03418488 2 0 -gargoyle%1:06:01:: 03418618 1 0 -gargoylism%1:26:00:: 14157163 1 0 -gari%1:20:00:: 12926689 1 0 -garibaldi%1:06:00:: 03418749 2 0 -garibaldi%1:18:00:: 10990963 1 0 -garish%5:00:00:tasteless:02 02393791 1 0 -garishly%4:02:00:: 00347009 1 0 -garishness%1:07:01:: 04818700 1 0 -garishness%1:07:02:: 04690769 2 0 -garland%1:06:00:: 04606014 4 0 -garland%1:10:00:: 06592699 3 0 -garland%1:15:00:: 09144730 2 0 -garland%1:18:00:: 10991165 1 0 -garland%2:36:00:: 01669643 1 1 -garland_crab%1:20:00:: 12635151 1 0 -garland_flower%1:20:00:: 12346813 1 0 -garlic%1:13:00:: 07818277 2 0 -garlic%1:20:00:: 12434775 1 0 -garlic_bread%1:13:00:: 07682808 1 0 -garlic_butter%1:13:00:: 07857076 1 0 -garlic_chive%1:13:00:: 07818572 2 0 -garlic_chive%1:20:00:: 12435777 1 0 -garlic_clove%1:13:00:: 07818422 1 0 -garlic_mustard%1:20:00:: 11870418 1 0 -garlic_press%1:06:00:: 03418915 1 0 -garlic_salt%1:13:00:: 07813409 1 0 -garlic_sauce%1:13:00:: 07834774 1 0 -garlicky%3:01:00:: 02733034 1 0 -garment%1:06:00:: 03419014 1 4 -garment%2:29:00:: 00047945 1 0 -garment-worker%1:18:00:: 10120816 1 0 -garment_bag%1:06:00:: 03420345 1 0 -garment_cutter%1:18:00:: 10121026 1 0 -garment_industry%1:14:00:: 08066317 1 0 -garment_worker%1:18:00:: 10120816 1 0 -garmented%5:00:00:clothed:00 00454440 1 0 -garmentless%5:00:00:unclothed:00 00459102 1 0 -garmentmaker%1:18:00:: 10120816 1 0 -garner%1:06:00:: 03452449 1 0 -garner%2:35:00:: 01380638 3 0 -garner%2:35:01:: 01493041 2 0 -garner%2:40:01:: 02290196 1 1 -garnet%1:27:00:: 14676042 1 0 -garnet-colored%5:00:00:colored:00 00397870 1 0 -garnet-coloured%5:00:00:colored:00 00397870 1 0 -garnet_lac%1:27:00:: 14701412 1 0 -garnier%1:18:00:: 10991303 1 0 -garnierite%1:27:00:: 14676326 1 0 -garnish%1:06:00:: 03420440 2 0 -garnish%1:13:00:: 07621618 1 0 -garnish%2:36:00:: 01679433 2 0 -garnish%2:40:00:: 02274079 1 0 -garnishee%1:18:00:: 10121144 1 0 -garnishee%2:40:00:: 02274079 1 0 -garnishment%1:10:00:: 06557827 1 0 -garonne%1:17:00:: 09287124 1 0 -garonne_river%1:17:00:: 09287124 1 0 -garotte%1:06:00:: 03420935 1 0 -garotte%2:35:00:: 01571744 1 0 -garpike%1:05:00:: 02641379 1 0 -garret%1:06:00:: 03686130 1 0 -garrick%1:18:00:: 10991415 1 0 -garrison%1:06:00:: 03420559 1 2 -garrison%1:14:00:: 08398036 3 0 -garrison%1:18:00:: 10991583 2 0 -garrison%2:33:00:: 01089137 1 1 -garrison_cap%1:06:00:: 03420801 1 0 -garrote%1:06:00:: 03420935 1 0 -garrote%2:35:00:: 01571744 1 0 -garroter%1:18:00:: 10121246 1 0 -garrotte%1:06:00:: 03420935 1 0 -garrotte%2:35:00:: 01571744 1 0 -garrotter%1:18:00:: 10121246 1 0 -garrulinae%1:05:00:: 01579868 1 0 -garrulity%1:07:00:: 04651382 1 0 -garrulous%5:00:00:voluble:00 02384077 1 0 -garrulously%4:02:00:: 00392875 1 0 -garrulousness%1:07:00:: 04651382 1 0 -garrulus%1:05:00:: 01580225 1 0 -garry_oak%1:20:00:: 12272239 1 0 -garter%1:06:00:: 03421117 1 0 -garter%2:35:00:: 01287681 1 0 -garter_belt%1:06:00:: 03421324 1 0 -garter_snake%1:05:00:: 01735189 1 2 -garter_stitch%1:06:00:: 03421485 1 0 -gartner's_bacillus%1:05:00:: 01369210 1 0 -garuda%1:18:00:: 09526107 1 0 -garullus_garullus%1:05:00:: 01580490 1 0 -gary%1:15:00:: 09085441 1 0 -gary_cooper%1:18:00:: 10909303 1 0 -gary_kasparov%1:18:00:: 11097335 1 0 -gary_weinstein%1:18:00:: 11097335 1 0 -gas%1:06:00:: 02670683 5 1 -gas%1:26:00:: 14481080 1 15 -gas%1:26:01:: 14035695 4 1 -gas%1:27:00:: 14877585 2 13 -gas%1:27:02:: 14686913 3 7 -gas%1:27:03:: 14960090 6 0 -gas%2:32:00:: 00883226 2 0 -gas%2:33:00:: 01125373 1 1 -gas-cooled_reactor%1:06:00:: 03422484 1 0 -gas-discharge_lamp%1:06:00:: 03271376 1 0 -gas-discharge_tube%1:06:00:: 03422589 1 0 -gas-filled%5:00:00:full:00 01085097 1 0 -gas-tight%5:00:00:tight:02 01398528 1 0 -gas-turbine_ship%1:06:00:: 03426871 1 0 -gas_bomb%1:06:00:: 03012734 1 0 -gas_bracket%1:06:00:: 03421960 1 0 -gas_burner%1:06:00:: 03422072 1 0 -gas_chamber%1:06:00:: 03422288 1 2 -gas_company%1:14:00:: 08186655 1 0 -gas_constant%1:23:00:: 13590079 1 0 -gas_cooker%1:06:00:: 03425595 1 0 -gas_embolism%1:26:00:: 14101317 1 0 -gas_embolism%1:26:01:: 14068344 2 0 -gas_engine%1:06:00:: 03422771 1 0 -gas_fitter%1:18:00:: 10121595 1 0 -gas_fitting%1:06:00:: 03422934 1 0 -gas_fixture%1:06:00:: 03423099 1 0 -gas_furnace%1:06:00:: 03423224 1 0 -gas_gage%1:06:00:: 03424862 1 0 -gas_gangrene%1:26:00:: 14313943 1 0 -gas_gauge%1:06:00:: 03424862 1 0 -gas_giant%1:17:00:: 09322087 1 0 -gas_gun%1:06:00:: 03423306 1 1 -gas_guzzler%1:06:00:: 03421669 1 0 -gas_heat%1:06:00:: 03423387 1 0 -gas_heater%1:06:00:: 03423479 1 0 -gas_helmet%1:06:00:: 03424325 1 0 -gas_holder%1:06:00:: 03423568 1 0 -gas_jet%1:06:00:: 03422072 1 3 -gas_lamp%1:06:00:: 03423877 1 1 -gas_line%1:06:00:: 03423966 2 0 -gas_line%1:06:01:: 03401500 3 0 -gas_line%1:14:00:: 08432974 1 0 -gas_main%1:06:00:: 03424103 1 0 -gas_maser%1:06:00:: 03424204 1 0 -gas_meter%1:06:00:: 03424489 1 0 -gas_mileage%1:24:00:: 13823287 1 0 -gas_oil%1:27:00:: 14967730 1 0 -gas_oven%1:06:00:: 03425241 2 0 -gas_oven%1:06:01:: 03425325 1 0 -gas_pedal%1:06:00:: 02670683 1 0 -gas_phlegmon%1:26:00:: 14313943 1 0 -gas_plant%1:20:00:: 12712626 1 0 -gas_pressure%1:19:00:: 11494935 1 0 -gas_pump%1:06:00:: 03425413 1 0 -gas_range%1:06:00:: 03425595 1 0 -gas_ring%1:06:00:: 03425769 1 0 -gas_service%1:14:00:: 08186655 1 0 -gas_shell%1:06:00:: 03421768 1 0 -gas_station%1:06:00:: 03425092 1 0 -gas_stove%1:06:00:: 03425595 1 1 -gas_system%1:06:00:: 03425956 1 0 -gas_tank%1:06:00:: 03426134 1 0 -gas_thermometer%1:06:00:: 03426285 1 1 -gas_turbine%1:06:00:: 03426574 1 0 -gas_up%2:40:00:: 02338629 1 1 -gas_well%1:06:00:: 03426984 1 0 -gasbag%1:06:00:: 03291963 2 0 -gasbag%1:18:00:: 10121467 1 0 -gascogne%1:15:00:: 08942392 1 0 -gasconade%1:10:00:: 07229747 1 0 -gasconade%2:32:00:: 00883226 1 0 -gascony%1:15:00:: 08942392 1 0 -gaseous%3:00:00:: 02262542 1 1 -gaseous_nebula%1:17:00:: 09266790 1 0 -gaseous_state%1:26:00:: 14481080 1 0 -gaseousness%1:07:00:: 04733204 1 0 -gasfield%1:15:00:: 08659759 1 0 -gash%1:04:02:: 00388065 3 0 -gash%1:06:00:: 03152619 2 0 -gash%1:26:00:: 14287113 1 0 -gash%2:35:00:: 01322509 1 1 -gasherbrum%1:17:00:: 09287289 1 0 -gasification%1:22:00:: 13486270 1 0 -gasified%5:00:00:gaseous:00 02263270 1 0 -gasify%2:30:00:: 00442267 1 0 -gaskell%1:18:00:: 10991740 1 0 -gasket%1:06:00:: 03423719 1 0 -gaskin%1:05:00:: 02463913 1 0 -gaslight%1:19:00:: 11463265 1 0 -gasman%1:18:00:: 10121714 1 0 -gasmask%1:06:00:: 03424325 1 0 -gasohol%1:27:00:: 14686723 1 0 -gasolene%1:27:00:: 14686913 1 0 -gasoline%1:27:00:: 14686913 1 1 -gasoline_bomb%1:06:00:: 03781055 1 0 -gasoline_engine%1:06:00:: 03424630 1 0 -gasoline_gage%1:06:00:: 03424862 1 0 -gasoline_gauge%1:06:00:: 03424862 1 0 -gasoline_mileage%1:24:00:: 13823287 1 0 -gasoline_pump%1:06:00:: 03425413 1 0 -gasoline_station%1:06:00:: 03425092 1 0 -gasoline_tank%1:06:00:: 03426134 1 0 -gasoline_tax%1:21:00:: 13316905 1 0 -gasometer%1:06:00:: 03423568 2 0 -gasometer%1:06:01:: 03424489 1 0 -gasp%1:04:00:: 00837098 1 4 -gasp%2:29:00:: 00005526 1 9 -gaspar%1:18:00:: 10886361 1 0 -gassing%1:04:00:: 00224936 2 1 -gassing%1:22:00:: 13486431 1 1 -gassy%5:00:00:gaseous:00 02263407 1 0 -gassy%5:00:00:unhealthy:00 01175741 2 0 -gasteromycete%1:20:00:: 13039349 1 0 -gasteromycetes%1:20:00:: 13038944 1 0 -gasterophilidae%1:05:00:: 02193357 1 0 -gasterophilus%1:05:00:: 02193496 1 0 -gasterophilus_intestinalis%1:05:00:: 02193665 1 0 -gasteropoda%1:05:00:: 01941670 1 0 -gasterosteidae%1:05:00:: 01454702 1 0 -gasterosteus%1:05:00:: 01455141 1 0 -gasterosteus_aculeatus%1:05:00:: 01455317 1 0 -gasterosteus_pungitius%1:05:00:: 01455461 1 0 -gaston_lachaise%1:18:00:: 11113898 1 0 -gastralgia%1:26:00:: 14327266 1 0 -gastrectomy%1:04:00:: 00674760 1 0 -gastric%3:01:00:: 02733187 1 0 -gastric_acid%1:08:00:: 05406128 1 0 -gastric_antacid%1:27:00:: 14778019 1 0 -gastric_artery%1:08:00:: 05345581 1 0 -gastric_digestion%1:22:00:: 13486520 1 0 -gastric_juice%1:08:00:: 05406128 1 0 -gastric_lavage%1:04:00:: 00696650 1 0 -gastric_mill%1:05:00:: 01974229 1 0 -gastric_smear%1:08:00:: 05265861 1 0 -gastric_ulcer%1:26:00:: 14212670 1 0 -gastric_vein%1:08:00:: 05367735 1 0 -gastrin%1:08:00:: 05408908 1 0 -gastritis%1:26:00:: 14346416 1 0 -gastroboletus%1:20:00:: 13048666 1 0 -gastroboletus_scabrosus%1:20:00:: 13048932 1 0 -gastroboletus_turbinatus%1:20:00:: 13049105 1 0 -gastrocnemius%1:08:00:: 05574633 1 4 -gastrocnemius_muscle%1:08:00:: 05574633 1 0 -gastrocolic_omentum%1:08:00:: 05429658 1 0 -gastrocybe%1:20:00:: 13047706 1 0 -gastrocybe_lateritia%1:20:00:: 13047862 1 0 -gastroduodenal%3:01:00:: 02733390 1 0 -gastroenteritis%1:26:00:: 14172005 1 0 -gastroenterologist%1:18:00:: 10121800 1 0 -gastroenterology%1:09:00:: 06050490 1 0 -gastroenterostomy%1:04:00:: 00674864 1 0 -gastroepiploic_vein%1:08:00:: 05367912 1 0 -gastroesophageal%3:01:00:: 02733515 1 0 -gastroesophageal_reflux%1:26:00:: 14335485 1 0 -gastrogavage%1:04:00:: 01058715 1 0 -gastrointestinal%3:01:00:: 02975697 1 2 -gastrointestinal_disorder%1:26:00:: 14068685 1 0 -gastrointestinal_hormone%1:08:00:: 05408684 1 0 -gastrointestinal_system%1:08:00:: 05329215 1 0 -gastrointestinal_tract%1:08:00:: 05532225 1 0 -gastrolobium%1:20:00:: 12529905 1 0 -gastromy%1:04:00:: 00677719 1 0 -gastromycete%1:20:00:: 13039349 1 0 -gastromycetes%1:20:00:: 13038944 1 0 -gastronome%1:18:00:: 10061656 1 0 -gastronomic%3:01:00:: 02975840 1 0 -gastronomical%3:01:00:: 02975840 1 0 -gastronomy%1:04:00:: 00936296 2 0 -gastronomy%1:13:02:: 07572206 1 0 -gastroomental_vein%1:08:00:: 05367912 1 0 -gastrophryne%1:05:00:: 01652850 1 0 -gastrophryne_carolinensis%1:05:00:: 01653223 1 0 -gastrophryne_olivacea%1:05:00:: 01653026 1 0 -gastropod%1:05:00:: 01942177 1 0 -gastropoda%1:05:00:: 01941670 1 0 -gastroscope%1:06:00:: 03426462 1 0 -gastroscopy%1:04:00:: 00642762 1 0 -gastrostomy%1:04:00:: 00675064 1 0 -gastrula%1:05:00:: 01462544 1 0 -gastrulation%1:22:00:: 13486671 1 0 -gasworks%1:06:00:: 03427084 1 0 -gat%1:06:00:: 03427202 1 0 -gate%1:06:00:: 03427296 1 18 -gate%1:06:01:: 03427656 2 1 -gate%1:06:02:: 03427909 4 0 -gate%1:21:00:: 13258269 3 0 -gate%2:30:00:: 00234390 3 0 -gate%2:35:00:: 01602907 2 0 -gate%2:40:00:: 02353844 1 0 -gate-crash%2:38:00:: 02019011 1 0 -gateau%1:13:00:: 07631834 1 0 -gatecrasher%1:18:00:: 10121952 1 0 -gatefold%1:10:00:: 06258541 1 0 -gatehouse%1:06:00:: 03428090 1 0 -gatekeeper%1:18:00:: 10026553 2 0 -gatekeeper%1:18:01:: 10122128 1 0 -gateleg_table%1:06:00:: 03428226 1 0 -gatepost%1:06:00:: 03428349 1 2 -gates%1:18:00:: 10991936 1 0 -gates_of_the_arctic_national_park%1:15:00:: 08604721 1 0 -gateway%1:06:00:: 03428477 1 1 -gateway_drug%1:06:00:: 03428571 1 0 -gateway_to_the_west%1:15:00:: 09107626 1 0 -gather%1:04:00:: 01014990 2 0 -gather%1:06:00:: 03428805 1 0 -gather%2:30:00:: 00158804 3 3 -gather%2:30:01:: 00157462 9 0 -gather%2:32:00:: 00945125 4 2 -gather%2:35:00:: 01380638 1 23 -gather%2:35:03:: 01330822 5 1 -gather%2:35:04:: 01316619 8 0 -gather%2:35:05:: 01349893 7 0 -gather%2:41:00:: 02428924 2 7 -gather%2:41:02:: 02598143 6 0 -gather_in%2:35:00:: 01214786 1 0 -gather_up%2:38:00:: 01976089 1 2 -gather_up%2:40:00:: 02305586 2 1 -gathered%3:44:00:: 03147919 1 0 -gathered_skirt%1:06:00:: 03429003 1 0 -gatherer%1:18:00:: 09936362 2 0 -gatherer%1:18:01:: 10122300 1 0 -gathering%1:04:00:: 01229938 2 3 -gathering%1:04:01:: 01014990 3 1 -gathering%1:06:00:: 03428805 4 0 -gathering%1:14:00:: 07975026 1 3 -gathering_place%1:15:00:: 08574216 1 0 -gathic%1:10:00:: 06974047 1 0 -gatling%1:18:00:: 10992192 1 0 -gatling_gun%1:06:00:: 03429137 1 0 -gator%1:05:00:: 01698434 1 0 -gatt%1:14:00:: 08300429 1 0 -gauche%5:00:00:inelegant:00 00851329 1 1 -gaucheness%1:07:00:: 04915121 1 0 -gaucher's_disease%1:26:00:: 14156345 1 0 -gaucherie%1:04:00:: 00076196 2 0 -gaucherie%1:07:00:: 04816125 1 0 -gaucho%1:18:00:: 10122441 1 0 -gaud%1:06:00:: 02787435 1 0 -gaudery%1:10:00:: 06880134 1 0 -gaudi%1:18:00:: 10992336 1 0 -gaudi_i_cornet%1:18:00:: 10992336 1 0 -gaudily%4:02:00:: 00347009 1 0 -gaudiness%1:07:00:: 04690769 2 0 -gaudiness%1:07:01:: 04818700 1 0 -gaudy%1:14:00:: 08254055 1 0 -gaudy%5:00:00:colorful:03 00407420 2 1 -gaudy%5:00:00:tasteless:02 02393791 1 1 -gauffer%1:06:00:: 03443669 2 0 -gauffer%1:06:01:: 03443775 1 0 -gauffer%2:29:00:: 00039680 1 0 -gauffering_iron%1:06:00:: 03443775 1 0 -gauge%1:06:00:: 03429288 1 1 -gauge%1:07:00:: 05130028 3 0 -gauge%1:07:01:: 05103430 4 0 -gauge%1:07:02:: 05103283 5 0 -gauge%1:24:00:: 13854101 2 0 -gauge%2:30:00:: 00490285 4 0 -gauge%2:30:02:: 00468116 5 0 -gauge%2:30:03:: 00395583 6 0 -gauge%2:31:00:: 00672433 1 2 -gauge%2:32:00:: 00919424 3 0 -gauge%2:35:00:: 01250374 2 0 -gauge_boson%1:17:00:: 09287415 1 0 -gauguin%1:18:00:: 10992528 1 0 -gauguinesque%3:01:00:: 03032131 1 0 -gaul%1:15:00:: 08929722 3 0 -gaul%1:18:00:: 09688487 2 0 -gaul%1:18:01:: 09708648 1 0 -gaultheria%1:20:00:: 12235263 1 0 -gaultheria_hispidula%1:20:00:: 12235479 1 0 -gaultheria_procumbens%1:20:00:: 12235765 1 0 -gaultheria_shallon%1:20:00:: 12236160 1 0 -gaumless%5:00:00:stupid:00 00441154 1 0 -gaunt%5:00:00:thin:03 00988988 1 9 -gauntlet%1:04:00:: 01164063 4 0 -gauntlet%1:06:01:: 03429771 2 0 -gauntlet%1:06:02:: 03429682 3 0 -gauntlet%1:10:00:: 07232275 1 0 -gauntleted%5:00:00:gloved:00 01428389 1 1 -gauntness%1:07:00:: 05001867 1 0 -gauntry%1:06:00:: 03416094 1 0 -gaur%1:05:00:: 02410011 1 0 -gauri%1:18:00:: 09526221 1 0 -gauss%1:18:00:: 10992675 2 0 -gauss%1:23:00:: 13638847 1 2 -gaussian%3:01:00:: 03028005 1 0 -gaussian_curve%1:09:00:: 06026088 1 0 -gaussian_distribution%1:09:00:: 06025689 1 0 -gaussian_shape%1:09:00:: 06026088 1 1 -gaussmeter%1:06:00:: 03708843 1 0 -gautama%1:18:00:: 09532214 1 0 -gautama_buddha%1:18:00:: 09532214 1 0 -gautama_siddhartha%1:18:00:: 09532214 1 0 -gauze%1:06:00:: 03429914 2 0 -gauze%1:06:01:: 03430091 1 0 -gauze-like%5:00:00:thin:01 02413390 1 0 -gauze_bandage%1:06:00:: 03430091 1 0 -gauzy%5:00:00:thin:01 02413390 1 0 -gavage%1:04:00:: 01058291 1 0 -gavel%1:06:00:: 03430313 1 0 -gavia%1:05:00:: 02048952 1 0 -gavial%1:05:00:: 01699675 1 0 -gavialidae%1:05:00:: 01699415 1 0 -gavialis%1:05:00:: 01699537 1 0 -gavialis_gangeticus%1:05:00:: 01699675 1 0 -gavidae%1:05:00:: 02048832 1 0 -gaviiform_seabird%1:05:00:: 02048698 1 0 -gaviiformes%1:05:00:: 02048514 1 0 -gavotte%1:04:00:: 00533224 1 1 -gavotte%1:10:00:: 07055502 2 0 -gawain%1:18:00:: 10992933 1 0 -gawk%1:18:00:: 10274639 1 0 -gawk%2:39:00:: 02164531 1 1 -gawker%1:18:00:: 10122531 1 0 -gawkiness%1:07:00:: 05004700 1 0 -gawky%5:00:00:awkward:00 01140896 1 0 -gawp%2:39:00:: 02164531 1 0 -gay%1:18:00:: 10182913 1 0 -gay%5:00:00:cheerful:00 00363938 1 9 -gay%5:00:00:colorful:03 00407151 4 3 -gay%5:00:00:homosexual:00 01201937 6 1 -gay%5:00:00:indulgent:00 01298708 3 3 -gay%5:00:00:joyous:00 01367431 5 1 -gay%5:00:02:joyous:00 01367651 2 3 -gay-feather%1:20:00:: 11991263 1 0 -gay-lussac%1:18:00:: 10993098 1 0 -gay-lussac's_law%1:09:00:: 05878229 1 0 -gay_lib%1:04:00:: 00800657 1 0 -gay_liberation_movement%1:04:00:: 00800657 1 0 -gay_man%1:18:00:: 10122645 1 0 -gay_woman%1:18:00:: 10254965 1 0 -gayal%1:05:00:: 02410141 1 0 -gayfeather%1:20:00:: 11991263 1 0 -gaylussacia%1:20:00:: 12236363 1 0 -gaylussacia_baccata%1:20:00:: 12236768 1 0 -gaylussacia_brachycera%1:20:00:: 12237152 1 0 -gaylussacia_frondosa%1:20:00:: 12236977 1 0 -gayly%4:02:00:: 00050297 1 1 -gayness%1:04:00:: 00856847 1 0 -gaywings%1:20:00:: 12705698 1 0 -gaza%1:15:00:: 08794366 1 0 -gaza_strip%1:15:00:: 08794366 1 0 -gazania%1:20:00:: 11971248 1 0 -gazania_rigens%1:20:00:: 11971406 1 0 -gaze%1:04:00:: 00878648 1 8 -gaze%2:39:00:: 02132745 1 25 -gazebo%1:06:00:: 03430418 1 0 -gazella%1:05:00:: 02422860 1 0 -gazella_subgutturosa%1:05:00:: 02423362 1 0 -gazella_thomsoni%1:05:00:: 02423218 1 0 -gazelle%1:05:00:: 02423022 1 0 -gazelle_hound%1:05:00:: 02091831 1 0 -gazette%1:10:00:: 06267655 1 0 -gazette%2:36:00:: 01746604 1 0 -gazetteer%1:10:00:: 06419628 2 0 -gazetteer%1:18:00:: 10122765 1 0 -gazillion%1:23:00:: 13776432 1 0 -gazpacho%1:13:00:: 07585758 1 0 -gazump%2:40:00:: 02319050 1 0 -gazump%2:40:01:: 02241497 2 0 -gb%1:15:00:: 08858942 6 0 -gb%1:23:01:: 13642000 2 0 -gb%1:23:02:: 13628761 5 0 -gb%1:23:03:: 13628955 4 0 -gb%1:23:04:: 13629132 3 0 -gb%1:27:00:: 14961375 1 0 -gbit%1:23:00:: 13629132 1 0 -gbu-28%1:06:00:: 02920785 1 0 -gc%1:28:00:: 15278691 1 0 -gca%1:04:00:: 00305326 1 0 -gcse%1:26:00:: 14431169 1 0 -gd%1:27:00:: 14638041 2 0 -gd%1:27:01:: 15056372 1 0 -gdansk%1:15:00:: 08983742 1 0 -gdp%1:21:00:: 13257511 1 0 -ge%1:18:00:: 09560762 2 0 -ge%1:27:00:: 14638517 1 0 -gean%1:20:00:: 12642600 1 0 -gear%1:06:00:: 03430551 1 1 -gear%1:06:01:: 03430959 4 0 -gear%1:06:02:: 03431745 2 0 -gear%1:06:04:: 03431243 3 0 -gear%2:30:00:: 00298244 1 3 -gear_box%1:06:00:: 03431570 1 0 -gear_case%1:06:00:: 03431570 1 0 -gear_lever%1:06:00:: 03432129 1 0 -gear_mechanism%1:06:00:: 03431243 1 0 -gear_up%2:30:00:: 00406243 1 0 -gear_wheel%1:06:00:: 03430551 1 0 -gearbox%1:06:00:: 03431570 1 0 -geared%3:00:00:: 01100210 1 0 -geared_wheel%1:06:00:: 03430551 1 0 -gearing%1:06:00:: 03431745 1 0 -gearset%1:06:00:: 03432061 1 1 -gearshift%1:06:00:: 03432129 1 0 -gearstick%1:06:00:: 03432129 1 0 -geartrain%1:06:00:: 03431745 1 0 -geastraceae%1:20:00:: 13044541 1 0 -geastrum%1:20:00:: 13045027 1 0 -geastrum_coronatum%1:20:00:: 13045210 1 0 -geb%1:18:00:: 09512157 1 0 -gebang_palm%1:20:00:: 12589458 1 0 -gebhard_leberecht_von_blucher%1:18:00:: 10853932 1 0 -gecko%1:05:00:: 01674990 1 0 -gee%1:23:00:: 13648596 1 2 -gee%2:32:00:: 00865664 2 0 -gee%2:38:00:: 01908941 1 0 -gee-gee%1:05:00:: 02375757 1 0 -geebung%1:20:00:: 12222493 1 0 -geek%1:18:00:: 10042845 2 0 -geek%1:18:01:: 10123615 1 0 -geert_geerts%1:18:00:: 10959857 1 0 -geezer%1:18:00:: 10123711 1 0 -geezerhood%1:28:00:: 15153787 1 0 -gefilte_fish%1:13:00:: 07868955 1 0 -gegenschein%1:19:00:: 11442298 1 1 -geglossaceae%1:20:00:: 12983873 1 0 -gehenna%1:09:00:: 05630277 1 0 -gehrig%1:18:00:: 10993350 1 0 -geiger%1:18:00:: 10993507 1 0 -geiger-muller_counter%1:06:00:: 03432360 1 0 -geiger-muller_tube%1:06:00:: 03432509 1 0 -geiger_counter%1:06:00:: 03432360 1 0 -geiger_tube%1:06:00:: 03432509 1 1 -geisel%1:18:00:: 10993636 1 0 -geisha%1:18:00:: 10122858 1 0 -geisha_girl%1:18:00:: 10122858 1 0 -gekkonidae%1:05:00:: 01674850 1 0 -gel%1:06:00:: 03432668 2 0 -gel%1:27:00:: 14590542 1 0 -gel%2:29:00:: 00039950 2 0 -gel%2:30:00:: 00113728 1 0 -gelatin%1:06:00:: 03432668 3 0 -gelatin%1:13:02:: 07643981 2 0 -gelatin%1:27:00:: 14730553 1 0 -gelatin_dessert%1:13:00:: 07644244 1 0 -gelatine%1:27:00:: 14730553 1 0 -gelatinise%2:30:00:: 00565279 1 0 -gelatinise%2:30:01:: 00565081 2 0 -gelatinize%2:30:00:: 00565279 2 0 -gelatinize%2:30:01:: 00565081 3 0 -gelatinize%2:30:02:: 00565481 1 0 -gelatinlike%5:00:00:thick:02 02416610 1 0 -gelatinous%5:00:00:thick:02 02416610 1 0 -gelatinousness%1:07:00:: 04936213 1 0 -geld%2:29:00:: 00061219 1 0 -gelded%5:00:00:castrated:00 02137070 1 0 -gelding%1:05:00:: 02377388 1 2 -gelechia%1:05:00:: 02293560 1 0 -gelechia_gossypiella%1:05:01:: 02293715 2 0 -gelechia_gossypiella%1:05:02:: 02310149 1 0 -gelechiid%1:05:00:: 02293352 1 0 -gelechiid_moth%1:05:00:: 02293352 1 0 -gelechiidae%1:05:00:: 02293135 1 0 -gelid%5:00:00:cold:01 01252151 1 0 -gelidity%1:07:00:: 05015463 1 0 -gelignite%1:06:00:: 03432796 1 0 -gell-mann%1:18:00:: 10993777 1 0 -gelly%1:06:00:: 03432796 1 0 -gelsemium%1:20:00:: 12485811 1 0 -gelsemium_sempervirens%1:20:00:: 12485981 1 0 -gelt%1:21:00:: 13385216 1 0 -gem%1:06:00:: 03596787 5 0 -gem%1:06:01:: 03432972 1 1 -gem%1:13:00:: 07690273 4 0 -gem%1:18:00:: 10221656 3 0 -gem%1:27:00:: 14699752 2 0 -gem_clip%1:06:00:: 03886762 1 0 -gem_cutter%1:18:00:: 10123026 1 0 -gem_state%1:15:00:: 09081213 1 0 -gemara%1:10:00:: 06462656 1 0 -gemfibrozil%1:06:00:: 03433079 1 0 -geminate%1:10:00:: 07119776 1 0 -geminate%2:30:00:: 00246588 4 0 -geminate%2:35:00:: 01465218 3 0 -geminate%2:35:01:: 01465365 2 0 -geminate%2:36:00:: 01735556 1 0 -gemination%1:04:00:: 01019703 2 0 -gemination%1:10:00:: 07100253 1 0 -gemini%1:15:00:: 08686495 3 0 -gemini%1:17:00:: 09287613 2 0 -gemini%1:18:00:: 09752519 1 0 -gemini_program%1:09:00:: 05899831 1 0 -gemini_the_twins%1:15:00:: 08686495 1 0 -gemma%1:20:00:: 11682659 1 0 -gemmation%1:22:00:: 13544073 1 0 -gemmed%5:00:00:adorned:00 00056660 1 0 -gemmiferous%3:01:00:: 02733782 1 0 -gemmule%1:09:00:: 05889762 1 0 -gemonil%1:06:00:: 03754979 1 0 -gempylid%1:05:00:: 02621908 1 0 -gempylidae%1:05:00:: 02621721 1 0 -gempylus%1:05:00:: 02622130 1 0 -gempylus_serpens%1:05:00:: 02622249 1 0 -gemsbok%1:05:00:: 02428508 1 0 -gemsbuck%1:05:00:: 02428508 1 0 -gemstone%1:27:00:: 14699752 1 0 -gen%1:10:00:: 06637677 1 0 -gen_x%1:14:00:: 08372020 1 0 -gendarme%1:18:00:: 10123122 1 0 -gendarmerie%1:14:00:: 08210254 1 0 -gendarmery%1:14:00:: 08210254 1 0 -gender%1:07:00:: 05006898 2 0 -gender%1:10:00:: 06328643 1 3 -gender_agreement%1:24:00:: 13797985 1 0 -gender_identity%1:07:00:: 04618359 1 0 -gender_role%1:04:00:: 00722253 1 0 -gene%1:08:00:: 05436752 1 0 -gene-splicing%1:09:00:: 06127209 1 0 -gene_chip%1:06:00:: 03433247 1 0 -gene_delivery_vector%1:17:00:: 09460516 1 0 -gene_expression%1:19:00:: 11459907 1 0 -gene_kelly%1:18:00:: 11099729 1 0 -gene_linkage%1:07:00:: 04923024 1 0 -gene_mutation%1:11:00:: 07426406 1 0 -gene_sarazen%1:18:00:: 11281682 1 0 -gene_tunney%1:18:00:: 11351832 1 0 -genealogic%3:01:00:: 03067329 1 0 -genealogical%3:01:00:: 03067329 1 0 -genealogically%4:02:00:: 00347216 1 0 -genealogist%1:18:00:: 10123214 1 0 -genealogy%1:09:00:: 05998225 2 0 -genealogy%1:14:00:: 08102402 1 0 -general%1:09:00:: 05818388 3 0 -general%1:18:00:: 10123844 1 40 -general%1:18:01:: 10125561 2 0 -general%2:32:00:: 00752193 1 1 -general%3:00:00:: 01101391 1 87 -general%3:00:02:: 01426077 4 0 -general%5:00:00:common:01 00487198 3 1 -general%5:00:00:comprehensive:00 00527188 6 0 -general%5:00:00:imprecise:00 01839663 5 0 -general%5:00:00:undiversified:00 00783840 2 3 -general-purpose%5:00:00:general:00 01102058 1 1 -general-purpose_bomb%1:06:00:: 03433637 1 0 -general_agent%1:18:00:: 10738968 1 0 -general_agent%1:18:01:: 10209731 2 0 -general_agreement_on_tariffs_and_trade%1:14:00:: 08300429 1 0 -general_anaesthesia%1:26:00:: 14026981 1 0 -general_anaesthetic%1:06:00:: 03433434 1 0 -general_anatomy%1:09:00:: 06057539 1 0 -general_anesthesia%1:26:00:: 14026981 1 0 -general_anesthetic%1:06:00:: 03433434 1 0 -general_assembly%1:14:00:: 08163273 2 0 -general_assembly%1:14:01:: 08296059 1 0 -general_baptist%1:14:00:: 08090083 1 0 -general_certificate_of_secondary_education%1:26:00:: 14431169 1 0 -general_charles_de_gaulle%1:18:00:: 10927824 1 0 -general_custer%1:18:00:: 10919061 1 0 -general_damages%1:21:00:: 13291356 1 0 -general_de_gaulle%1:18:00:: 10927824 1 0 -general_delivery%1:14:00:: 08145701 1 0 -general_election%1:04:00:: 00182435 1 1 -general_franco%1:18:00:: 10978842 1 0 -general_headquarters%1:06:00:: 03076104 1 0 -general_knowledge%1:09:00:: 05612067 1 0 -general_ledger%1:21:00:: 13404655 1 0 -general_lien%1:21:00:: 13401610 1 0 -general_manager%1:18:00:: 10125697 1 3 -general_medicine%1:09:00:: 06052300 1 0 -general_officer%1:18:00:: 10125786 1 0 -general_practitioner%1:18:00:: 10126009 1 0 -general_relativity%1:09:00:: 06106820 1 0 -general_relativity_theory%1:09:00:: 06106820 1 0 -general_security_services%1:14:00:: 08347457 1 0 -general_services_administration%1:14:00:: 08351532 1 0 -general_staff%1:14:00:: 08404735 1 0 -general_store%1:06:00:: 03119203 1 0 -general_theory_of_relativity%1:09:00:: 06106820 1 0 -general_verdict%1:04:00:: 01193176 1 0 -generalcy%1:04:00:: 00592652 1 0 -generalisation%1:09:00:: 05913275 1 0 -generalisation%1:09:01:: 05774415 3 0 -generalisation%1:09:02:: 05756414 4 0 -generalisation%1:09:03:: 05780104 2 0 -generalise%2:29:00:: 00104465 4 0 -generalise%2:32:00:: 01022906 1 0 -generalise%2:32:01:: 01022420 2 0 -generalise%2:32:04:: 00970215 3 0 -generalised%5:00:00:unspecialized:00 02278513 1 0 -generalissimo%1:18:00:: 09941787 1 0 -generalist%1:18:00:: 10520286 1 3 -generality%1:07:00:: 04764412 2 0 -generality%1:09:00:: 05913275 1 0 -generalization%1:09:00:: 05913275 2 1 -generalization%1:09:01:: 05774415 1 2 -generalization%1:09:02:: 05756414 4 0 -generalization%1:09:03:: 05780104 3 1 -generalize%2:29:00:: 00104465 4 0 -generalize%2:32:00:: 01022906 2 0 -generalize%2:32:01:: 01022420 1 6 -generalize%2:32:04:: 00970215 3 0 -generalized%5:00:00:unspecialized:00 02278513 1 4 -generalized_anxiety_disorder%1:26:00:: 14380717 1 0 -generalized_epilepsy%1:26:00:: 14087513 1 0 -generalized_seizure%1:26:00:: 14083368 1 0 -generally%4:02:00:: 00221583 3 2 -generally%4:02:01:: 00041954 2 11 -generally%4:02:02:: 00155621 1 37 -generally_accepted_accounting_principles%1:14:00:: 08145871 1 0 -generalship%1:04:00:: 00592652 2 0 -generalship%1:09:00:: 05617467 1 0 -generate%2:29:00:: 00054628 4 1 -generate%2:36:00:: 01627355 1 14 -generate%2:36:01:: 01628197 3 1 -generate%2:36:02:: 01629000 2 3 -generation%1:04:00:: 00849982 7 0 -generation%1:04:01:: 00922144 6 0 -generation%1:11:00:: 07324380 5 0 -generation%1:14:00:: 08368907 2 7 -generation%1:14:01:: 08369406 1 8 -generation%1:28:00:: 15249636 3 6 -generation%1:28:01:: 15290930 4 0 -generation_gap%1:10:00:: 07184024 1 0 -generation_x%1:14:00:: 08372020 1 0 -generational%3:01:00:: 02733873 1 0 -generative%3:00:00:: 01867295 1 0 -generative%5:00:00:fruitful:00 01081592 2 0 -generative_grammar%1:09:00:: 06176519 1 0 -generator%1:06:00:: 03433877 2 1 -generator%1:06:01:: 03434188 1 4 -generator%1:06:02:: 03434285 4 0 -generator%1:18:00:: 10126177 3 0 -generic%1:06:00:: 03434428 2 0 -generic%1:13:00:: 07899976 1 0 -generic%3:01:00:: 02734016 1 0 -generic%5:00:00:general:00 01102164 3 0 -generic%5:00:00:nonproprietary:00 01109599 2 0 -generic_drug%1:06:00:: 03434549 1 0 -generic_noun%1:10:00:: 06319881 1 0 -generic_wine%1:13:00:: 07899976 1 0 -generically%4:02:00:: 00347346 2 0 -generically%4:02:01:: 00347474 1 0 -generosity%1:04:00:: 01085937 2 0 -generosity%1:07:00:: 04831727 1 1 -generous%3:00:01:: 01111016 1 2 -generous%3:00:02:: 01114434 2 1 -generous%5:00:00:ample:00 00106182 3 1 -generously%4:02:00:: 00196692 1 1 -generousness%1:07:00:: 04831727 1 0 -genesis%1:10:00:: 06432376 2 0 -genesis%1:11:00:: 07324380 1 3 -genet%1:05:00:: 02137015 3 0 -genet%1:18:00:: 10993936 2 0 -genet%1:18:01:: 10994097 1 0 -genetic%3:01:00:: 02734192 4 0 -genetic%3:01:01:: 02734391 3 0 -genetic%3:01:02:: 02734544 2 0 -genetic%5:00:00:inheritable:00 01314537 1 2 -genetic_abnormality%1:26:00:: 14151139 1 0 -genetic_code%1:14:00:: 08457369 1 0 -genetic_constitution%1:07:00:: 04934043 1 0 -genetic_counseling%1:10:00:: 06651302 1 0 -genetic_defect%1:26:00:: 14151139 1 0 -genetic_disease%1:26:00:: 14151139 1 0 -genetic_disorder%1:26:00:: 14151139 1 0 -genetic_endowment%1:07:00:: 04920867 1 0 -genetic_engineering%1:09:00:: 06127209 1 0 -genetic_fingerprint%1:10:00:: 06643883 1 0 -genetic_fingerprinting%1:04:00:: 00152519 1 0 -genetic_map%1:09:00:: 05729483 1 0 -genetic_marker%1:08:00:: 05438483 1 0 -genetic_mutation%1:11:00:: 07425011 1 0 -genetic_profiling%1:04:00:: 00152519 1 0 -genetic_psychology%1:09:00:: 06138941 1 0 -genetic_science%1:09:00:: 06075527 1 0 -genetic_screening%1:04:00:: 00645162 1 0 -genetical%3:01:00:: 02734192 2 0 -genetical%3:01:02:: 02734544 1 0 -genetically%4:02:00:: 00123924 1 0 -geneticism%1:09:00:: 05945383 1 0 -geneticist%1:18:00:: 10126424 1 1 -genetics%1:09:00:: 06075527 1 0 -genetta%1:05:00:: 02136901 1 0 -genetta_genetta%1:05:00:: 02137015 1 0 -geneva%1:13:00:: 07904760 2 0 -geneva%1:15:00:: 09032604 1 0 -geneva_convention%1:10:00:: 06774650 1 0 -geneva_gown%1:06:00:: 03434830 1 0 -genevan%1:18:00:: 10123312 1 0 -genevan%1:18:01:: 09889346 2 0 -geneve%1:15:00:: 09032604 1 0 -genf%1:15:00:: 09032604 1 0 -genghis_khan%1:18:00:: 10994308 1 0 -genial%3:01:00:: 02734776 2 0 -genial%5:00:00:friendly:01 01075178 1 3 -genial%5:00:00:hospitable:00 01242282 3 0 -geniality%1:07:00:: 04654652 1 0 -genially%4:02:00:: 00220052 1 0 -genic%3:01:00:: 02734544 1 0 -genicular_vein%1:08:00:: 05368100 1 0 -geniculate%5:00:00:crooked:01 02313138 1 0 -geniculate_body%1:08:00:: 05487423 1 0 -genie%1:18:00:: 09544433 1 1 -genip%1:13:00:: 07763290 2 0 -genip%1:20:00:: 12744850 1 0 -genipa%1:20:00:: 12667406 1 0 -genipa_americana%1:20:00:: 12667582 1 0 -genipap%1:13:00:: 07763483 1 0 -genipap_fruit%1:13:00:: 07763483 2 0 -genipap_fruit%1:20:00:: 12667582 1 0 -genista%1:20:00:: 12530208 1 0 -genista_anglica%1:20:00:: 12530439 1 0 -genista_hispanica%1:20:00:: 12530629 1 0 -genista_raetam%1:20:00:: 12567490 1 0 -genista_tinctoria%1:20:00:: 12530818 1 0 -genital%3:01:00:: 02881567 1 0 -genital_herpes%1:26:00:: 14132524 1 0 -genital_organ%1:08:00:: 05514081 1 0 -genital_personality%1:07:00:: 04619420 1 0 -genital_phase%1:28:00:: 15146004 1 0 -genital_stage%1:28:00:: 15146004 1 0 -genital_system%1:08:00:: 05509146 1 0 -genital_torture%1:04:00:: 00422719 1 0 -genital_wart%1:07:00:: 04696797 1 0 -genitalia%1:08:00:: 05514081 1 0 -genitals%1:08:00:: 05514081 1 0 -genitive%1:10:00:: 06311852 1 0 -genitive%3:01:00:: 02862251 1 0 -genitive_case%1:10:00:: 06311852 1 0 -genitor%1:18:00:: 10126708 1 0 -genitourinary%3:01:00:: 02881711 1 0 -genitourinary_apparatus%1:08:00:: 05509452 1 0 -genitourinary_system%1:08:00:: 05509452 1 0 -genius%1:09:00:: 05625373 4 0 -genius%1:09:01:: 05624461 5 0 -genius%1:09:02:: 05619743 2 2 -genius%1:18:00:: 10126926 1 2 -genius%1:18:01:: 09762509 3 1 -genius_loci%1:18:00:: 09540241 2 0 -genius_loci%1:26:00:: 14525274 1 0 -genlisea%1:20:00:: 12873341 1 0 -genoa%1:15:00:: 08808452 1 0 -genocide%1:04:00:: 01245159 1 0 -genoese%1:18:00:: 10123415 1 0 -genoese%3:01:00:: 02973056 1 0 -genoise%1:13:00:: 07634514 1 0 -genome%1:14:00:: 08457543 1 0 -genomics%1:09:00:: 06077087 1 0 -genotype%1:07:00:: 04934043 2 0 -genotype%1:14:00:: 07941405 1 0 -genotypic%3:01:00:: 02942542 1 0 -genotypical%3:01:00:: 02942542 1 0 -genova%1:15:00:: 08808452 1 0 -genovese%3:01:00:: 02973056 1 0 -genre%1:06:00:: 03434943 4 0 -genre%1:09:00:: 05845332 1 1 -genre%1:10:01:: 07071942 3 0 -genre%1:10:02:: 07092158 2 0 -genre_painter%1:18:00:: 10123517 1 0 -genre_painting%1:06:00:: 03435290 1 0 -gens%1:14:00:: 07972279 1 0 -genseric%1:18:00:: 10994500 1 0 -gent%1:15:00:: 08851500 3 0 -gent%1:18:00:: 10127186 1 0 -gent%1:18:01:: 09908025 2 0 -gentamicin%1:06:00:: 03435382 1 0 -genteel%5:00:00:refined:01 01947741 1 0 -genteelly%4:02:00:: 00347602 1 0 -genteelness%1:07:00:: 04813540 1 0 -gentian%1:20:00:: 12293723 1 1 -gentian_family%1:20:00:: 12290116 1 0 -gentian_violet%1:27:00:: 14770838 1 0 -gentiana%1:20:00:: 12293419 1 0 -gentiana_acaulis%1:20:00:: 12294124 1 0 -gentiana_andrewsii%1:20:00:: 12294331 1 0 -gentiana_calycosa%1:20:00:: 12294542 1 0 -gentiana_clausa%1:20:00:: 12294723 1 0 -gentiana_crinita%1:20:00:: 12296735 1 0 -gentiana_detonsa%1:20:00:: 12296929 1 0 -gentiana_holopetala%1:20:00:: 12297507 1 0 -gentiana_lutea%1:20:00:: 12294871 1 0 -gentiana_pneumonanthe%1:20:00:: 12295033 1 0 -gentiana_procera%1:20:00:: 12297110 1 0 -gentiana_quinquefolia%1:20:00:: 12295796 1 0 -gentiana_saponaria%1:20:00:: 12295237 1 0 -gentiana_thermalis%1:20:00:: 12297280 1 0 -gentiana_villosa%1:20:00:: 12295429 1 0 -gentianaceae%1:20:00:: 12290116 1 0 -gentianales%1:20:00:: 12289744 1 0 -gentianella%1:20:00:: 12295560 1 0 -gentianella%1:20:02:: 12294124 2 0 -gentianella_amarella%1:20:00:: 12296045 1 0 -gentianella_quinquefolia%1:20:00:: 12295796 1 0 -gentianopsid_procera%1:20:00:: 12297110 1 0 -gentianopsis%1:20:00:: 12296218 1 0 -gentianopsis_crinita%1:20:00:: 12296735 1 0 -gentianopsis_detonsa%1:20:00:: 12296929 1 0 -gentianopsis_holopetala%1:20:00:: 12297507 1 0 -gentianopsis_thermalis%1:20:00:: 12297280 1 0 -gentile%1:18:00:: 09679028 3 0 -gentile%1:18:01:: 10166394 1 0 -gentile%1:18:02:: 09679170 2 0 -gentile%1:18:03:: 09678917 4 0 -gentile%3:01:00:: 02735066 1 3 -gentility%1:07:01:: 04813540 1 0 -gentle%2:35:00:: 01426072 3 0 -gentle%2:37:00:: 01765392 1 1 -gentle%2:41:00:: 02398463 2 0 -gentle%5:00:00:gradual:02 01144571 7 0 -gentle%5:00:00:light:08 01192035 6 0 -gentle%5:00:00:mild:00 01509066 1 6 -gentle%5:00:00:noble:02 01590484 4 1 -gentle%5:00:00:soft:04 01455412 3 2 -gentle%5:00:00:tame:01 02388773 5 0 -gentle%5:00:01:kind:00 01373314 2 4 -gentle_breeze%1:19:00:: 11432632 1 0 -gentle_wind%1:19:00:: 11431754 1 0 -gentlefolk%1:14:00:: 07947675 1 0 -gentleman%1:18:00:: 10127273 1 9 -gentleman%1:18:01:: 10745332 2 0 -gentleman's-cane%1:20:00:: 11823756 1 0 -gentleman's_gentleman%1:18:00:: 10745332 1 0 -gentleman-at-arms%1:18:00:: 10127420 1 0 -gentleman_jim%1:18:00:: 10910421 1 0 -gentleman_johnny%1:18:00:: 10872624 1 0 -gentlemanlike%5:00:00:refined:01 01948573 1 0 -gentlemanly%5:00:00:refined:01 01948573 1 1 -gentlemen's_agreement%1:10:00:: 06771526 1 0 -gentleness%1:07:00:: 04910973 2 0 -gentleness%1:07:01:: 05069853 1 0 -gentlewoman%1:18:00:: 09989290 1 0 -gently%4:02:00:: 00181576 1 7 -gently%4:02:01:: 00502847 2 3 -gently%4:02:03:: 00180279 3 3 -gentrification%1:04:00:: 00268824 1 0 -gentrify%2:30:00:: 00163703 1 0 -gentry%1:14:00:: 08387213 1 1 -genu%1:08:00:: 05573602 1 0 -genu_valgum%1:26:00:: 14559983 1 0 -genu_varum%1:08:00:: 05561834 1 0 -genuflect%2:38:00:: 02040934 1 0 -genuflect%2:38:01:: 02040709 2 0 -genuflection%1:10:00:: 07275078 1 0 -genuflexion%1:10:00:: 07275078 1 0 -genuine%3:00:00:: 01115349 1 6 -genuine%5:00:00:sincere:00 02180277 2 4 -genuine%5:00:00:true:00 02460964 3 2 -genuinely%4:02:00:: 00037226 1 1 -genuinely%4:02:01:: 00269153 2 0 -genuineness%1:07:01:: 04783247 2 0 -genuineness%1:26:00:: 13955341 1 0 -genus%1:09:00:: 05845013 1 2 -genus%1:14:00:: 08108972 2 1 -genus-fenusa%1:05:00:: 02218912 1 0 -genus-megapodius%1:05:00:: 01800963 1 0 -genus-milvus%1:05:00:: 01608685 1 0 -genus_abelia%1:20:00:: 12671529 1 0 -genus_abelmoschus%1:20:00:: 12171750 1 0 -genus_abies%1:20:00:: 11620560 1 0 -genus_abramis%1:05:00:: 01440344 1 0 -genus_abrocoma%1:05:00:: 02368280 1 0 -genus_abronia%1:20:00:: 11836556 1 0 -genus_abudefduf%1:05:00:: 02607345 1 0 -genus_abutilon%1:20:00:: 12172715 1 0 -genus_acacia%1:20:00:: 11755694 1 0 -genus_acalypha%1:20:00:: 12922283 1 0 -genus_acanthisitta%1:05:00:: 01588858 1 0 -genus_acanthocereus%1:20:00:: 11842861 1 0 -genus_acanthocybium%1:05:00:: 02625132 1 0 -genus_acanthophis%1:05:00:: 01750027 1 0 -genus_acanthoscelides%1:05:00:: 02182498 1 0 -genus_acanthurus%1:05:00:: 02621419 1 0 -genus_acanthus%1:20:00:: 12812121 1 0 -genus_acarus%1:05:00:: 01781570 1 0 -genus_accipiter%1:05:00:: 01606335 1 0 -genus_acer%1:20:00:: 12752039 1 0 -genus_acherontia%1:05:00:: 02299715 1 0 -genus_acheta%1:05:00:: 02229867 1 0 -genus_achillea%1:20:00:: 11916268 1 0 -genus_achimenes%1:20:00:: 12830080 1 0 -genus_achoerodus%1:05:00:: 02608151 1 0 -genus_achras%1:20:00:: 12772419 1 0 -genus_acinonyx%1:05:00:: 02130190 1 0 -genus_acinos%1:20:00:: 12839409 1 0 -genus_acipenser%1:05:00:: 02640453 1 0 -genus_acocanthera%1:20:00:: 11768242 1 0 -genus_acokanthera%1:20:00:: 11768242 1 0 -genus_aconitum%1:20:00:: 11722769 1 0 -genus_acorus%1:20:00:: 11780589 1 0 -genus_acridotheres%1:05:00:: 01577818 1 0 -genus_acris%1:05:00:: 01651370 1 0 -genus_acrobates%1:05:00:: 01882372 1 0 -genus_acrocarpus%1:20:00:: 12490330 1 0 -genus_acrocephalus%1:05:00:: 01565480 1 0 -genus_acroclinium%1:20:00:: 11917186 1 0 -genus_acrocomia%1:20:00:: 12583529 1 0 -genus_acropora%1:05:00:: 01917434 1 0 -genus_acrostichum%1:20:00:: 13206001 1 0 -genus_actaea%1:20:00:: 11723655 1 0 -genus_actias%1:05:00:: 02302853 1 0 -genus_actinia%1:05:00:: 01914961 1 0 -genus_actinidia%1:20:00:: 12371002 1 0 -genus_actiniopteris%1:20:00:: 13206438 1 0 -genus_actinomeris%1:20:00:: 12030479 1 0 -genus_actinomyces%1:05:00:: 01375617 1 0 -genus_actitis%1:05:00:: 02026798 1 0 -genus_adalia%1:05:00:: 02165754 1 0 -genus_adansonia%1:20:00:: 12189620 1 0 -genus_addax%1:05:00:: 02420994 1 0 -genus_adelges%1:05:00:: 02254531 1 0 -genus_adenanthera%1:20:00:: 11758628 1 0 -genus_adenium%1:20:00:: 11769002 1 0 -genus_adenota%1:05:00:: 02427958 1 0 -genus_adiantum%1:20:00:: 13206584 1 0 -genus_adlumia%1:20:00:: 11909745 1 0 -genus_adonis%1:20:00:: 11724529 1 0 -genus_aedes%1:05:00:: 02200705 1 0 -genus_aegiceras%1:20:00:: 12916025 1 0 -genus_aegilops%1:20:00:: 12104614 1 0 -genus_aegypius%1:05:00:: 01617949 1 0 -genus_aegyptopithecus%1:05:00:: 02479205 1 0 -genus_aeonium%1:20:00:: 12786684 1 0 -genus_aepyceros%1:05:00:: 02422561 1 0 -genus_aepyornis%1:05:00:: 01522305 1 0 -genus_aerides%1:20:00:: 12044269 1 0 -genus_aerobacter%1:05:00:: 01353773 1 0 -genus_aeschynanthus%1:20:00:: 12830404 1 0 -genus_aesculus%1:20:00:: 12768177 1 0 -genus_aethionema%1:20:00:: 11869890 1 0 -genus_aethusa%1:20:00:: 12931109 1 0 -genus_aetobatus%1:05:00:: 01499261 1 0 -genus_aframomum%1:20:00:: 12357802 1 0 -genus_afrocarpus%1:20:00:: 11653323 1 0 -genus_afropavo%1:05:00:: 01803548 1 0 -genus_agalinis%1:20:00:: 12883733 1 0 -genus_agama%1:05:00:: 01687856 1 0 -genus_agapanthus%1:20:00:: 12428915 1 0 -genus_agapornis%1:05:00:: 01819918 1 0 -genus_agaricus%1:20:00:: 13000668 1 0 -genus_agastache%1:20:00:: 12839839 1 0 -genus_agathis%1:20:00:: 11647131 1 0 -genus_agave%1:20:00:: 12476902 1 0 -genus_agdestis%1:20:00:: 11856055 1 0 -genus_agelaius%1:05:00:: 01575270 1 0 -genus_ageratina%1:20:00:: 11917633 1 0 -genus_ageratum%1:20:00:: 11918131 1 0 -genus_agkistrodon%1:05:00:: 01754190 1 0 -genus_aglaomorpha%1:20:00:: 13174206 1 0 -genus_aglaonema%1:20:00:: 11781430 1 0 -genus_agonus%1:05:00:: 02647903 1 0 -genus_agrimonia%1:20:00:: 12622653 1 0 -genus_agriocharis%1:05:00:: 01794460 1 0 -genus_agrobacterium%1:05:00:: 01354521 1 0 -genus_agropyron%1:20:00:: 12104943 1 0 -genus_agrostemma%1:20:00:: 11805380 1 0 -genus_agrostis%1:20:00:: 12106540 1 0 -genus_ailanthus%1:20:00:: 12716861 1 0 -genus_ailuropoda%1:05:00:: 02510240 1 0 -genus_ailurus%1:05:00:: 02509694 1 0 -genus_aix%1:05:00:: 01851996 1 0 -genus_ajaia%1:05:00:: 02007161 1 0 -genus_ajuga%1:20:00:: 12840640 1 0 -genus_alauda%1:05:00:: 01527774 1 0 -genus_albatrellus%1:20:00:: 13050555 1 0 -genus_albizia%1:20:00:: 11759049 1 0 -genus_albizzia%1:20:00:: 11759049 1 0 -genus_albuca%1:20:00:: 12429589 1 0 -genus_albugo%1:20:00:: 12981791 1 0 -genus_albula%1:05:00:: 02542283 1 0 -genus_alca%1:05:00:: 02045705 1 0 -genus_alcea%1:20:00:: 12173407 1 0 -genus_alcedo%1:05:00:: 01827658 1 0 -genus_alcelaphus%1:05:00:: 02421962 1 0 -genus_alces%1:05:00:: 02432867 1 0 -genus_aldrovanda%1:20:00:: 12783173 1 0 -genus_alectis%1:05:00:: 02577823 1 0 -genus_alectoria%1:20:00:: 12990407 1 0 -genus_alectoris%1:05:00:: 01807988 1 0 -genus_alectura%1:05:00:: 01801753 1 0 -genus_alepisaurus%1:05:00:: 02544086 1 0 -genus_aletris%1:20:00:: 12429942 1 0 -genus_aleurites%1:20:00:: 12927354 1 0 -genus_aleyrodes%1:05:00:: 02246487 1 0 -genus_algeripithecus%1:05:00:: 02479482 1 0 -genus_alisma%1:20:00:: 12612020 1 0 -genus_allamanda%1:20:00:: 11769483 1 0 -genus_alliaria%1:20:00:: 11870212 1 0 -genus_alligator%1:05:00:: 01698303 1 0 -genus_allionia%1:20:00:: 11838266 1 0 -genus_allium%1:20:00:: 12431128 1 0 -genus_allosaurus%1:05:00:: 01714059 1 0 -genus_alnus%1:20:00:: 12283981 1 0 -genus_alocasia%1:20:00:: 11781850 1 0 -genus_aloe%1:20:00:: 12436490 1 0 -genus_alopecurus%1:20:00:: 12107489 1 0 -genus_alopex%1:05:00:: 02119961 1 0 -genus_alopius%1:05:00:: 01485801 1 0 -genus_alosa%1:05:00:: 02530294 1 0 -genus_alouatta%1:05:00:: 02492536 1 0 -genus_alpinia%1:20:00:: 12356668 1 0 -genus_alsobia%1:20:00:: 12830974 1 0 -genus_alsophila%1:05:00:: 02287476 1 0 -genus_alstonia%1:20:00:: 11770013 1 0 -genus_alstroemeria%1:20:00:: 12438324 1 0 -genus_alternanthera%1:20:00:: 11824548 1 0 -genus_althaea%1:20:00:: 12174124 1 0 -genus_alyssum%1:20:00:: 11870607 1 0 -genus_alytes%1:05:00:: 01648001 1 0 -genus_amanita%1:20:00:: 13002433 1 0 -genus_amaranthus%1:20:00:: 11822849 1 0 -genus_amaryllis%1:20:00:: 12419217 1 0 -genus_amauropelta%1:20:00:: 13228194 1 0 -genus_amazona%1:05:00:: 01818169 1 0 -genus_amberboa%1:20:00:: 11918631 1 0 -genus_ambloplites%1:05:00:: 02564130 1 0 -genus_amblyrhynchus%1:05:00:: 01677613 1 0 -genus_ambrosia%1:20:00:: 11919026 1 0 -genus_ambystoma%1:05:00:: 01631903 1 0 -genus_ameiurus%1:05:00:: 02518990 1 0 -genus_amelanchier%1:20:00:: 12623368 1 0 -genus_amia%1:05:00:: 02638960 1 0 -genus_amianthum%1:20:00:: 12438977 1 0 -genus_ammobium%1:20:00:: 11920344 1 0 -genus_ammodytes%1:05:00:: 02618372 1 0 -genus_ammotragus%1:05:00:: 02415971 1 0 -genus_amoeba%1:05:00:: 01391779 1 0 -genus_amorpha%1:20:00:: 12503908 1 0 -genus_amorphophallus%1:20:00:: 11782522 1 0 -genus_amphibolips%1:05:00:: 02217050 1 0 -genus_amphicarpa%1:20:00:: 12505032 1 0 -genus_amphicarpaea%1:20:00:: 12505032 1 0 -genus_amphioxus%1:05:00:: 01467675 1 0 -genus_amphiprion%1:05:00:: 02606926 1 0 -genus_amphisbaena%1:05:00:: 01683036 1 0 -genus_amphisbaenia%1:05:00:: 01683036 1 0 -genus_amphiuma%1:05:00:: 01638611 1 0 -genus_amsinckia%1:20:00:: 12816753 1 0 -genus_amsonia%1:20:00:: 11770526 1 0 -genus_amygdalus%1:20:00:: 12644713 1 0 -genus_anabas%1:05:00:: 02556195 1 0 -genus_anabrus%1:05:00:: 02228565 1 0 -genus_anacardium%1:20:00:: 12759120 1 0 -genus_anacyclus%1:20:00:: 11920867 1 0 -genus_anadenanthera%1:20:00:: 11760128 1 0 -genus_anagallis%1:20:00:: 12092127 1 0 -genus_anagasta%1:05:00:: 02289845 1 0 -genus_anagyris%1:20:00:: 12505563 1 0 -genus_ananas%1:20:00:: 12607198 1 0 -genus_anaphalis%1:20:00:: 11921200 1 0 -genus_anarhichas%1:05:00:: 02616705 1 0 -genus_anas%1:05:00:: 01847565 1 0 -genus_anasa%1:05:00:: 02239659 1 0 -genus_anastatica%1:20:00:: 11870916 1 0 -genus_anastomus%1:05:00:: 02003456 1 0 -genus_anatotitan%1:05:00:: 01706247 1 0 -genus_anchusa%1:20:00:: 12817335 1 0 -genus_ancistrodon%1:05:00:: 01754190 1 0 -genus_ancylus%1:05:00:: 01949817 1 0 -genus_andira%1:20:00:: 12505987 1 0 -genus_andreaea%1:20:00:: 11539825 1 0 -genus_andrena%1:05:00:: 02210291 1 0 -genus_andricus%1:05:00:: 02217201 1 0 -genus_andromeda%1:20:00:: 12229282 1 0 -genus_andropogon%1:20:00:: 12108249 1 0 -genus_andryala%1:20:00:: 11921622 1 0 -genus_aneides%1:05:00:: 01636984 1 0 -genus_anemia%1:20:00:: 12955639 1 0 -genus_anemone%1:20:00:: 11724822 1 0 -genus_anemonella%1:20:00:: 11726569 1 0 -genus_anemopsis%1:20:00:: 13152203 1 0 -genus_anethum%1:20:00:: 12931449 1 0 -genus_angelica%1:20:00:: 12931738 1 0 -genus_angiopteris%1:20:00:: 13215462 1 0 -genus_angraecum%1:20:00:: 12044571 1 0 -genus_angrecum%1:20:00:: 12044571 1 0 -genus_anguilla%1:05:00:: 02526673 1 0 -genus_anguillula%1:05:00:: 01931984 1 0 -genus_anguis%1:05:00:: 01690005 1 0 -genus_anhima%1:05:00:: 01860713 1 0 -genus_anhinga%1:05:00:: 02054376 1 0 -genus_anigozanthus%1:20:00:: 12312405 1 0 -genus_anisotremus%1:05:00:: 02589486 1 0 -genus_ankylosaurus%1:05:00:: 01702087 1 0 -genus_annona%1:20:00:: 11693812 1 0 -genus_anoa%1:05:00:: 02408903 1 0 -genus_anodonta%1:05:00:: 01965111 1 0 -genus_anoectochilus%1:20:00:: 12045004 1 0 -genus_anogramma%1:20:00:: 13208138 1 0 -genus_anolis%1:05:00:: 01682588 1 0 -genus_anomala%1:05:00:: 02173571 1 0 -genus_anomalops%1:05:00:: 01451726 1 0 -genus_anomalopteryx%1:05:00:: 01523379 1 0 -genus_anomia%1:05:00:: 01962350 1 0 -genus_anopheles%1:05:00:: 02201252 1 0 -genus_anser%1:05:00:: 01856225 1 0 -genus_antedon%1:05:00:: 02320888 1 0 -genus_antennaria%1:20:00:: 11921949 1 0 -genus_anthemis%1:20:00:: 11923016 1 0 -genus_antheraea%1:05:00:: 02304229 1 0 -genus_anthericum%1:20:00:: 12439400 1 0 -genus_antheropeas%1:20:00:: 11923827 1 0 -genus_anthidium%1:05:00:: 02211773 1 0 -genus_anthoceros%1:20:00:: 11538716 1 0 -genus_anthonomus%1:05:00:: 02178563 1 0 -genus_anthriscus%1:20:00:: 12932532 1 0 -genus_anthurium%1:20:00:: 11783723 1 0 -genus_anthus%1:05:00:: 01528542 1 0 -genus_anthyllis%1:20:00:: 12506614 1 0 -genus_antidorcas%1:05:00:: 02423465 1 0 -genus_antigonia%1:05:00:: 01453591 1 0 -genus_antilocapra%1:05:00:: 02429276 1 0 -genus_antilope%1:05:00:: 02420389 1 0 -genus_antirrhinum%1:20:00:: 12877041 1 0 -genus_antrodemus%1:05:00:: 01714059 1 0 -genus_antrozous%1:05:00:: 02147452 1 0 -genus_aotus%1:05:00:: 02492240 1 0 -genus_apatosaurus%1:05:00:: 01709278 1 0 -genus_apatura%1:05:00:: 02278704 1 0 -genus_aphis%1:05:00:: 02252608 1 0 -genus_aphriza%1:05:00:: 02026498 1 0 -genus_aphrophora%1:05:00:: 02258354 1 0 -genus_aphyllanthes%1:20:00:: 12440385 1 0 -genus_apios%1:20:00:: 12507236 1 0 -genus_apis%1:05:00:: 02208143 1 0 -genus_apium%1:20:00:: 12933164 1 0 -genus_aplectrum%1:20:00:: 12045352 1 0 -genus_aplodontia%1:05:00:: 02363818 1 0 -genus_aplysia%1:05:00:: 01951107 1 0 -genus_apocynum%1:20:00:: 11767196 1 0 -genus_apodemus%1:05:00:: 02332606 1 0 -genus_apogon%1:05:00:: 02572369 1 0 -genus_aporocactus%1:20:00:: 11843285 1 0 -genus_appendicularia%1:05:00:: 01470586 1 0 -genus_aptenodytes%1:05:00:: 02056421 1 0 -genus_apteryx%1:05:00:: 01520442 1 0 -genus_apus%1:05:00:: 01832381 1 0 -genus_aquila%1:05:00:: 01614195 1 0 -genus_aquilegia%1:20:00:: 11726925 1 0 -genus_ara%1:05:00:: 01818409 1 0 -genus_arabidopsis%1:20:00:: 11871294 1 0 -genus_arabis%1:20:00:: 11871916 1 0 -genus_arachis%1:20:00:: 11748330 1 0 -genus_aralia%1:20:00:: 11797016 1 0 -genus_aramus%1:05:00:: 02013362 1 0 -genus_aranea%1:05:00:: 01773319 1 0 -genus_araneus%1:05:00:: 01773319 1 0 -genus_araucaria%1:20:00:: 11645783 1 0 -genus_araujia%1:20:00:: 13235947 1 0 -genus_arbutus%1:20:00:: 12230146 1 0 -genus_arca%1:05:00:: 01963136 1 0 -genus_arcella%1:05:00:: 01394366 1 0 -genus_arceuthobium%1:20:00:: 12738087 1 0 -genus_archaeopteryx%1:05:00:: 01516064 1 0 -genus_archaeornis%1:05:00:: 01517265 1 0 -genus_archeopteryx%1:05:00:: 01516064 1 0 -genus_archidiskidon%1:05:00:: 02505342 1 0 -genus_archilochus%1:05:00:: 01834039 1 0 -genus_architeuthis%1:05:00:: 01972017 1 0 -genus_archosargus%1:05:00:: 02591757 1 0 -genus_arctictis%1:05:00:: 02135981 1 0 -genus_arctium%1:20:00:: 11924330 1 0 -genus_arctocebus%1:05:00:: 02499434 1 0 -genus_arctocephalus%1:05:00:: 02077023 1 0 -genus_arctonyx%1:05:00:: 02448754 1 0 -genus_arctostaphylos%1:20:00:: 12231031 1 0 -genus_arctotis%1:20:00:: 11925140 1 0 -genus_ardea%1:05:00:: 02008316 1 0 -genus_ardisia%1:20:00:: 12097180 1 0 -genus_areca%1:20:00:: 12584057 1 0 -genus_arenaria%1:05:00:: 02024923 2 0 -genus_arenaria%1:20:00:: 11805837 1 0 -genus_arenga%1:20:00:: 12584559 1 0 -genus_arethusa%1:20:00:: 12045695 1 0 -genus_argemone%1:20:00:: 11902595 1 0 -genus_argentina%1:05:00:: 02542804 1 0 -genus_argentinosaurus%1:05:00:: 01710993 1 0 -genus_argiope%1:05:00:: 01772985 1 0 -genus_argonauta%1:05:00:: 01970502 1 0 -genus_argusianus%1:05:00:: 01803764 1 0 -genus_argynnis%1:05:00:: 02278601 1 0 -genus_argyranthemum%1:20:00:: 11925720 1 0 -genus_argyreia%1:20:00:: 12824581 1 0 -genus_argyrotaenia%1:05:00:: 02284771 1 0 -genus_argyroxiphium%1:20:00:: 11926185 1 0 -genus_arilus%1:05:00:: 02244670 1 0 -genus_ariocarpus%1:20:00:: 11843709 1 0 -genus_ariomma%1:05:00:: 02634414 1 0 -genus_arisaema%1:20:00:: 11784323 1 0 -genus_arisarum%1:20:00:: 11785100 1 0 -genus_aristolochia%1:20:00:: 11801247 1 0 -genus_aristotelia%1:20:00:: 12193458 1 0 -genus_arius%1:05:00:: 02520985 1 0 -genus_arizona%1:05:00:: 01733346 1 0 -genus_armadillidium%1:05:00:: 01991367 1 0 -genus_armeria%1:20:00:: 12098665 1 0 -genus_armillaria%1:20:00:: 13231436 1 0 -genus_armillariella%1:20:00:: 13232515 1 0 -genus_armoracia%1:20:00:: 11872850 1 0 -genus_arnica%1:20:00:: 11926640 1 0 -genus_arnoseris%1:20:00:: 11927616 1 0 -genus_arrhenatherum%1:20:00:: 12108742 1 0 -genus_artamus%1:05:00:: 01596887 1 0 -genus_artemia%1:05:00:: 01995323 1 0 -genus_artemisia%1:20:00:: 11927901 1 0 -genus_arthropteris%1:20:00:: 13204482 1 0 -genus_artocarpus%1:20:00:: 12400261 1 0 -genus_arum%1:20:00:: 11779801 1 0 -genus_arundinaria%1:20:00:: 12148079 1 0 -genus_arundo%1:20:00:: 12109189 1 0 -genus_arvicola%1:05:00:: 02341805 1 0 -genus_asarum%1:20:00:: 11802076 1 0 -genus_ascaphus%1:05:00:: 01644699 1 0 -genus_ascaridia%1:05:00:: 01930995 1 0 -genus_ascaris%1:05:00:: 01930672 1 0 -genus_asclepias%1:20:00:: 13233548 1 0 -genus_ascophyllum%1:05:00:: 01405442 1 0 -genus_asimina%1:20:00:: 11695485 1 0 -genus_asio%1:05:00:: 01624707 1 0 -genus_aspalathus%1:20:00:: 12507670 1 0 -genus_asparagus%1:20:00:: 12440869 1 0 -genus_aspergillus%1:20:00:: 13027375 1 0 -genus_asperula%1:20:00:: 12661420 1 0 -genus_asphodeline%1:20:00:: 12442220 1 0 -genus_asphodelus%1:20:00:: 12442865 1 0 -genus_aspidelaps%1:05:00:: 01746818 1 0 -genus_aspidiotus%1:05:00:: 02249673 1 0 -genus_aspidistra%1:20:00:: 12443144 1 0 -genus_aspidophoroides%1:05:00:: 02648174 1 0 -genus_aspis%1:05:00:: 01753354 1 0 -genus_asplenium%1:20:00:: 13180304 1 0 -genus_astacus%1:05:00:: 01985331 1 0 -genus_aster%1:20:00:: 11931756 1 0 -genus_astilbe%1:20:00:: 12794853 1 0 -genus_astragalus%1:20:00:: 12508077 1 0 -genus_astrantia%1:20:00:: 12933827 1 0 -genus_astreus%1:20:00:: 13045834 1 0 -genus_astroloma%1:20:00:: 12254014 1 0 -genus_astronium%1:20:00:: 12759496 1 0 -genus_astrophyton%1:05:00:: 02318538 1 0 -genus_astropogon%1:05:00:: 02572628 1 0 -genus_ateles%1:05:00:: 02493673 1 0 -genus_athene%1:05:00:: 01621994 1 0 -genus_atherinopsis%1:05:00:: 02602620 1 0 -genus_atherurus%1:05:00:: 02347140 1 0 -genus_athrotaxis%1:20:00:: 11632794 1 0 -genus_athyrium%1:20:00:: 13194328 1 0 -genus_atrichornis%1:05:00:: 01545889 1 0 -genus_atriplex%1:20:00:: 11830570 1 0 -genus_atropa%1:20:00:: 12898226 1 0 -genus_attalea%1:20:00:: 12584970 1 0 -genus_atticus%1:05:00:: 02304967 1 0 -genus_aucuba%1:20:00:: 12946432 1 0 -genus_aulacorhyncus%1:05:00:: 01843576 1 0 -genus_aulostomus%1:05:00:: 01457708 1 0 -genus_aureolaria%1:20:00:: 12878525 1 0 -genus_auricularia%1:20:00:: 13062272 1 0 -genus_auriparus%1:05:00:: 01593423 1 0 -genus_australopithecus%1:05:00:: 02475821 1 0 -genus_austrocedrus%1:20:00:: 11633116 1 0 -genus_austrotaxus%1:20:00:: 11662764 1 0 -genus_automeris%1:05:00:: 02303917 1 0 -genus_avahi%1:05:00:: 02500472 1 0 -genus_avena%1:20:00:: 12109719 1 0 -genus_averrhoa%1:20:00:: 12704191 1 0 -genus_avicennia%1:20:00:: 12915230 1 0 -genus_ayapana%1:20:00:: 11937523 1 0 -genus_aythya%1:05:00:: 01850676 1 0 -genus_azadirachta%1:20:00:: 12696322 1 0 -genus_azolla%1:20:00:: 12959371 1 0 -genus_babesia%1:05:00:: 01425501 1 0 -genus_babyrousa%1:05:00:: 02396667 1 0 -genus_baccharis%1:20:00:: 11937965 1 0 -genus_bacillus%1:05:00:: 01356670 1 0 -genus_bacteroides%1:05:00:: 01364866 1 0 -genus_baiomys%1:05:00:: 02337480 1 0 -genus_bairdiella%1:05:00:: 02595217 1 0 -genus_balaena%1:05:00:: 02063846 1 0 -genus_balaeniceps%1:05:00:: 02005238 1 0 -genus_balaenoptera%1:05:00:: 02064608 1 0 -genus_balanus%1:05:00:: 01998599 1 0 -genus_balistes%1:05:00:: 02653359 1 0 -genus_ballota%1:20:00:: 12841686 1 0 -genus_balsamorhiza%1:20:00:: 11938977 1 0 -genus_bambusa%1:20:00:: 12147699 1 0 -genus_bankia%1:05:00:: 01967396 1 0 -genus_banksia%1:20:00:: 12215373 1 0 -genus_baphia%1:20:00:: 12508936 1 0 -genus_baptisia%1:20:00:: 12509297 1 0 -genus_barbarea%1:20:00:: 11873396 1 0 -genus_barosaurus%1:05:00:: 01709723 1 0 -genus_bartle-frere%1:20:00:: 12214245 1 0 -genus_bartramia%1:05:00:: 02029571 1 0 -genus_basiliscus%1:05:00:: 01682293 1 0 -genus_bassariscus%1:05:00:: 02508615 1 0 -genus_bassia%1:20:00:: 11831730 1 0 -genus_bathyergus%1:05:00:: 02369170 1 0 -genus_batis%1:20:00:: 11827348 1 0 -genus_batrachoseps%1:05:00:: 01637478 1 0 -genus_bauhinia%1:20:00:: 12490671 1 0 -genus_beaumontia%1:20:00:: 11770969 1 0 -genus_begonia%1:20:00:: 12359952 1 0 -genus_belamcanda%1:20:00:: 12415911 1 0 -genus_bellis%1:20:00:: 11939380 1 0 -genus_bemisia%1:05:00:: 02247363 1 0 -genus_bennettitis%1:20:00:: 11604576 1 0 -genus_benzoin%1:20:00:: 11706120 1 0 -genus_berberis%1:20:00:: 11697388 1 0 -genus_bergenia%1:20:00:: 12795829 1 0 -genus_beroe%1:05:00:: 01919258 1 0 -genus_berteroa%1:20:00:: 11874300 1 0 -genus_bertholletia%1:20:00:: 12327718 1 0 -genus_bessera%1:20:00:: 12443547 1 0 -genus_besseya%1:20:00:: 12878019 1 0 -genus_beta%1:20:00:: 11832108 1 0 -genus_bettongia%1:05:00:: 01880570 1 0 -genus_betula%1:20:00:: 12280886 1 0 -genus_bibos%1:05:00:: 02409702 1 0 -genus_bidens%1:20:00:: 11939887 1 0 -genus_bignonia%1:20:00:: 12813870 1 0 -genus_biscutella%1:20:00:: 11874707 1 0 -genus_bison%1:05:00:: 02410313 1 0 -genus_bitis%1:05:00:: 01752889 1 0 -genus_blaberus%1:05:00:: 02235078 1 0 -genus_blandfordia%1:20:00:: 12443929 1 0 -genus_blarina%1:05:00:: 01892271 1 0 -genus_blastocladia%1:20:00:: 12978826 1 0 -genus_blastomyces%1:20:00:: 13080174 1 0 -genus_blatta%1:05:00:: 02233767 1 0 -genus_blattella%1:05:00:: 02234719 1 0 -genus_blechnum%1:20:00:: 13184873 1 0 -genus_blennius%1:05:00:: 02613434 1 0 -genus_blephilia%1:20:00:: 12842105 1 0 -genus_bletia%1:20:00:: 12046251 1 0 -genus_bletilla%1:20:00:: 12046620 1 0 -genus_blighia%1:20:00:: 12742041 1 0 -genus_blissus%1:05:00:: 02239073 1 0 -genus_bloomeria%1:20:00:: 12444261 1 0 -genus_bocconia%1:20:00:: 11903167 1 0 -genus_boehmeria%1:20:00:: 12392943 1 0 -genus_bolbitis%1:20:00:: 13202933 1 0 -genus_boletellus%1:20:00:: 13059852 1 0 -genus_boletus%1:20:00:: 13055009 1 0 -genus_boltonia%1:20:00:: 11941261 1 0 -genus_bomarea%1:20:00:: 12419592 1 0 -genus_bombax%1:20:00:: 12189293 1 0 -genus_bombina%1:05:00:: 01648494 1 0 -genus_bombus%1:05:00:: 02209508 1 0 -genus_bombycilla%1:05:00:: 01603478 1 0 -genus_bombyx%1:05:00:: 02300378 1 0 -genus_bonasa%1:05:00:: 01797767 1 0 -genus_borago%1:20:00:: 12816359 1 0 -genus_borassus%1:20:00:: 12585512 1 0 -genus_borrelia%1:05:00:: 01382839 1 0 -genus_bos%1:05:00:: 02401661 1 0 -genus_boselaphus%1:05:00:: 02425393 1 0 -genus_boswellia%1:20:00:: 12691834 1 0 -genus_botaurus%1:05:00:: 02011668 1 0 -genus_bothrops%1:05:00:: 01758019 1 0 -genus_botrychium%1:20:00:: 12960729 1 0 -genus_bougainvillaea%1:20:00:: 11838741 1 0 -genus_bougainvillea%1:20:00:: 11838741 1 0 -genus_bouteloua%1:20:00:: 12111882 1 0 -genus_bowiea%1:20:00:: 12444666 1 0 -genus_boykinia%1:20:00:: 12796192 1 0 -genus_brachinus%1:05:00:: 02167375 1 0 -genus_brachychiton%1:20:00:: 12195965 1 0 -genus_brachycome%1:20:00:: 11941719 1 0 -genus_brachystegia%1:20:00:: 12491200 1 0 -genus_bradypus%1:05:00:: 02457249 1 0 -genus_brama%1:05:00:: 02582591 1 0 -genus_branchiobdella%1:05:00:: 01935997 1 0 -genus_branta%1:05:00:: 01857171 1 0 -genus_brasenia%1:20:00:: 11718521 1 0 -genus_brassavola%1:20:00:: 12047173 1 0 -genus_brassia%1:20:00:: 12047586 1 0 -genus_brassica%1:20:00:: 11875100 1 0 -genus_brevoortia%1:05:00:: 02531503 1 0 -genus_brickelia%1:20:00:: 11942144 1 0 -genus_brodiaea%1:20:00:: 12445138 1 0 -genus_bromus%1:20:00:: 12110630 1 0 -genus_brontosaurus%1:05:00:: 01709278 1 0 -genus_broussonetia%1:20:00:: 12403862 1 0 -genus_browallia%1:20:00:: 12898628 1 0 -genus_browmius%1:05:00:: 02525287 1 0 -genus_bruchus%1:05:00:: 02182220 1 0 -genus_bruckenthalia%1:20:00:: 12232683 1 0 -genus_brugmansia%1:20:00:: 12899333 1 0 -genus_brunfelsia%1:20:00:: 12898959 1 0 -genus_brya%1:20:00:: 11748936 1 0 -genus_bryanthus%1:20:00:: 12233094 1 0 -genus_bryonia%1:20:00:: 12162905 1 0 -genus_bryum%1:20:00:: 11541111 1 0 -genus_bubalus%1:05:00:: 02408217 1 0 -genus_bubo%1:05:00:: 01622230 1 0 -genus_bubulcus%1:05:00:: 02010144 1 0 -genus_bucephala%1:05:00:: 01850035 1 0 -genus_buceros%1:05:00:: 01829288 1 0 -genus_buchloe%1:20:00:: 12112488 1 0 -genus_buckleya%1:20:00:: 12735666 1 0 -genus_buddleia%1:20:00:: 12485523 1 0 -genus_budorcas%1:05:00:: 02419515 1 0 -genus_bufo%1:05:00:: 01646134 1 0 -genus_bulnesia%1:20:00:: 12721357 1 0 -genus_bumelia%1:20:00:: 12772557 1 0 -genus_bungarus%1:05:00:: 01750920 1 0 -genus_buphthalmum%1:20:00:: 11942366 1 0 -genus_burhinus%1:05:00:: 02040113 1 0 -genus_burmannia%1:20:00:: 12087408 1 0 -genus_burmeisteria%1:05:00:: 02456505 1 0 -genus_bursera%1:20:00:: 12691189 1 0 -genus_butea%1:20:00:: 12510197 1 0 -genus_buteo%1:05:00:: 01607103 1 0 -genus_buxus%1:20:00:: 12745976 1 0 -genus_cabassous%1:05:00:: 02455310 1 0 -genus_cabomba%1:20:00:: 11718096 1 0 -genus_cacajao%1:05:00:: 02493109 1 0 -genus_cacalia%1:20:00:: 11942875 1 0 -genus_cacatua%1:05:00:: 01818959 1 0 -genus_cacicus%1:05:00:: 01573483 1 0 -genus_cadra%1:05:00:: 02290521 1 0 -genus_caenolestes%1:05:00:: 01875880 1 0 -genus_caesalpinia%1:20:00:: 12488121 1 0 -genus_caiman%1:05:00:: 01698936 1 0 -genus_cairina%1:05:00:: 01852544 1 0 -genus_cajanus%1:20:00:: 12510569 1 0 -genus_cakile%1:20:00:: 11880218 1 0 -genus_caladenia%1:20:00:: 12048231 1 0 -genus_caladium%1:20:00:: 11785475 1 0 -genus_calamagrostis%1:20:00:: 12112789 1 0 -genus_calamintha%1:20:00:: 12842765 1 0 -genus_calamus%1:05:00:: 02592607 2 0 -genus_calamus%1:20:00:: 12586110 1 0 -genus_calandrinia%1:20:00:: 11858406 1 0 -genus_calanthe%1:20:00:: 12048772 1 0 -genus_calceolaria%1:20:00:: 12879350 1 0 -genus_calendula%1:20:00:: 11943299 1 0 -genus_calidris%1:05:00:: 02028556 1 0 -genus_calla%1:20:00:: 11786017 1 0 -genus_calliandra%1:20:00:: 11760560 1 0 -genus_callicebus%1:05:00:: 02493390 1 0 -genus_callimorpha%1:05:00:: 02305799 1 0 -genus_callinectes%1:05:00:: 01979738 1 0 -genus_calliophis%1:05:00:: 01746565 1 0 -genus_calliphora%1:05:00:: 02191617 1 0 -genus_callirhoe%1:20:00:: 12174742 1 0 -genus_callisaurus%1:05:00:: 01678522 1 0 -genus_callistephus%1:20:00:: 11943824 1 0 -genus_callithrix%1:05:00:: 02490435 1 0 -genus_callitriche%1:20:00:: 12693734 1 0 -genus_callitris%1:20:00:: 11633459 1 0 -genus_callophis%1:05:00:: 01746565 1 0 -genus_callorhinus%1:05:00:: 02077533 1 0 -genus_calluna%1:20:00:: 12233410 1 0 -genus_calocarpum%1:20:00:: 12773334 1 0 -genus_calocedrus%1:20:00:: 11634526 1 0 -genus_calochortus%1:20:00:: 12445848 1 0 -genus_calophyllum%1:20:00:: 12364379 1 0 -genus_calopogon%1:20:00:: 12049134 1 0 -genus_calosoma%1:05:00:: 02167645 1 0 -genus_caltha%1:20:00:: 11727976 1 0 -genus_calvatia%1:20:00:: 13044149 1 0 -genus_calycanthus%1:20:00:: 11700676 1 0 -genus_calycophyllum%1:20:00:: 12661873 1 0 -genus_calymmatobacterium%1:05:00:: 01365122 1 0 -genus_calypso%1:20:00:: 12049412 1 0 -genus_calystegia%1:20:00:: 12824909 1 0 -genus_camassia%1:20:00:: 12449024 1 0 -genus_cambarus%1:05:00:: 01985667 1 0 -genus_camelina%1:20:00:: 11880610 1 0 -genus_camellia%1:20:00:: 12929237 1 0 -genus_camelus%1:05:00:: 02436993 1 0 -genus_campanula%1:20:00:: 12036781 1 0 -genus_campephilus%1:05:00:: 01840278 1 0 -genus_camponotus%1:05:00:: 02220676 1 0 -genus_camptosorus%1:20:00:: 13181616 1 0 -genus_campyloneurum%1:20:00:: 13174515 1 0 -genus_campylorhynchus%1:05:00:: 01586170 1 0 -genus_canachites%1:05:00:: 01797180 1 0 -genus_cananga%1:20:00:: 11695813 1 0 -genus_canangium%1:20:00:: 11695813 1 0 -genus_canavalia%1:20:00:: 12511046 1 0 -genus_cancer%1:05:00:: 01977832 1 0 -genus_candida%1:20:00:: 13079203 1 0 -genus_canella%1:20:00:: 12372124 1 0 -genus_canis%1:05:00:: 02083863 1 0 -genus_canna%1:20:00:: 12350578 1 0 -genus_cannabis%1:20:00:: 12396666 1 0 -genus_cantharellus%1:20:00:: 13004160 1 0 -genus_capella%1:05:00:: 02031752 1 0 -genus_capparis%1:20:00:: 11864906 1 0 -genus_capra%1:05:00:: 02416410 1 0 -genus_caprella%1:05:00:: 01993400 1 0 -genus_capreolus%1:05:00:: 02433426 1 0 -genus_capricornis%1:05:00:: 02418934 1 0 -genus_caprimulgus%1:05:00:: 01835584 1 0 -genus_capros%1:05:00:: 01453330 1 0 -genus_capsella%1:20:00:: 11881063 1 0 -genus_capsicum%1:20:00:: 12900148 1 0 -genus_caragana%1:20:00:: 12511703 1 0 -genus_caranx%1:05:00:: 02576460 1 0 -genus_carassius%1:05:00:: 01443398 1 0 -genus_carcharhinus%1:05:00:: 01489275 1 0 -genus_carcharias%1:05:00:: 01487312 1 0 -genus_carcharodon%1:05:00:: 01484717 1 0 -genus_cardamine%1:20:00:: 11881426 1 0 -genus_cardiospermum%1:20:00:: 12742546 1 0 -genus_cardium%1:05:00:: 01959834 1 0 -genus_carduelis%1:05:00:: 01530846 1 0 -genus_carduus%1:20:00:: 11944569 1 0 -genus_caretta%1:05:00:: 01663939 1 0 -genus_carex%1:20:00:: 12151814 1 0 -genus_cariama%1:05:00:: 02014061 1 0 -genus_carica%1:20:00:: 12372932 1 0 -genus_carissa%1:20:00:: 11771383 1 0 -genus_carlina%1:20:00:: 11945228 1 0 -genus_carnegiea%1:20:00:: 11844203 1 0 -genus_carpenteria%1:20:00:: 12789399 1 0 -genus_carphophis%1:05:00:: 01728445 1 0 -genus_carpinus%1:20:00:: 12286581 1 0 -genus_carpobrotus%1:20:00:: 11819354 1 0 -genus_carpocapsa%1:05:00:: 02285052 1 0 -genus_carpodacus%1:05:00:: 01532664 1 0 -genus_carthamus%1:20:00:: 11945930 1 0 -genus_carum%1:20:00:: 12934368 1 0 -genus_carya%1:20:00:: 12319687 1 0 -genus_caryocar%1:20:00:: 12373526 1 0 -genus_caryota%1:20:00:: 12586867 1 0 -genus_casmerodius%1:05:00:: 02009620 1 0 -genus_cassia%1:20:00:: 12491626 1 0 -genus_cassiope%1:20:00:: 12233759 1 0 -genus_castanea%1:20:00:: 12262327 1 0 -genus_castanopsis%1:20:00:: 12264254 1 0 -genus_castanospermum%1:20:00:: 12512460 1 0 -genus_castilleia%1:20:00:: 12879719 1 0 -genus_castilleja%1:20:00:: 12879719 1 0 -genus_castor%1:05:00:: 02362862 1 0 -genus_castoroides%1:05:00:: 02363511 1 0 -genus_casuarina%1:20:00:: 12224669 1 0 -genus_casuarius%1:05:00:: 01519401 1 0 -genus_catacala%1:05:00:: 02295717 1 0 -genus_catalpa%1:20:00:: 12814417 1 0 -genus_catananche%1:20:00:: 11946584 1 0 -genus_catasetum%1:20:00:: 12049796 1 0 -genus_catha%1:20:00:: 11598100 1 0 -genus_catharacta%1:05:00:: 02044659 1 0 -genus_catharanthus%1:20:00:: 11772154 1 0 -genus_cathartes%1:05:00:: 01619152 1 0 -genus_cathaya%1:20:00:: 11629211 1 0 -genus_catoptrophorus%1:05:00:: 02030709 1 0 -genus_catostomus%1:05:00:: 01445173 1 0 -genus_cattleya%1:20:00:: 12050295 1 0 -genus_caulophyllum%1:20:00:: 11698433 1 0 -genus_cavia%1:05:00:: 02364377 1 0 -genus_cebuella%1:05:00:: 02490686 1 0 -genus_cebus%1:05:00:: 02491906 1 0 -genus_cecropia%1:20:00:: 12404484 1 0 -genus_cedrela%1:20:00:: 12697021 1 0 -genus_cedrus%1:20:00:: 11622988 1 0 -genus_ceiba%1:20:00:: 12190241 1 0 -genus_celastrus%1:20:00:: 12747961 1 0 -genus_celosia%1:20:00:: 11825013 1 0 -genus_celtis%1:20:00:: 12409016 1 0 -genus_cenchrus%1:20:00:: 12113471 1 0 -genus_centaurea%1:20:00:: 11947079 1 0 -genus_centaurium%1:20:00:: 12290522 1 0 -genus_centranthus%1:20:00:: 12950984 1 0 -genus_centrocercus%1:05:00:: 01797472 1 0 -genus_centrolobium%1:20:00:: 11749462 1 0 -genus_centropomus%1:05:00:: 02559974 1 0 -genus_centropristis%1:05:00:: 02567484 1 0 -genus_centropus%1:05:00:: 01824443 1 0 -genus_centrosema%1:20:00:: 12512947 1 0 -genus_centunculus%1:20:00:: 12092766 1 0 -genus_cephalanthera%1:20:00:: 12050766 1 0 -genus_cephalopterus%1:05:00:: 01552192 1 0 -genus_cephalotaxus%1:20:00:: 11648617 1 0 -genus_cephalotus%1:20:00:: 12784738 1 0 -genus_cepphus%1:05:00:: 02046613 1 0 -genus_cerapteryx%1:05:00:: 02296150 1 0 -genus_cerastes%1:05:00:: 01753354 1 0 -genus_cerastium%1:20:00:: 11806975 1 0 -genus_ceratitis%1:05:00:: 02197048 1 0 -genus_ceratodus%1:05:00:: 02516615 1 0 -genus_ceratonia%1:20:00:: 12493090 1 0 -genus_ceratopetalum%1:20:00:: 12787196 1 0 -genus_ceratophyllum%1:20:00:: 11702081 1 0 -genus_ceratopogon%1:05:00:: 02202878 1 0 -genus_ceratopteris%1:20:00:: 13171649 1 0 -genus_ceratosaurus%1:05:00:: 01712606 1 0 -genus_ceratostomella%1:20:00:: 12964750 1 0 -genus_ceratotherium%1:05:00:: 02392710 1 0 -genus_ceratozamia%1:20:00:: 11602304 1 0 -genus_cercidiphyllum%1:20:00:: 11702566 1 0 -genus_cercidium%1:20:00:: 12493699 1 0 -genus_cercis%1:20:00:: 12513426 1 0 -genus_cercocebus%1:05:00:: 02485865 1 0 -genus_cercopithecus%1:05:00:: 02484813 1 0 -genus_cercospora%1:20:00:: 13080674 1 0 -genus_cercosporella%1:20:00:: 13079775 1 0 -genus_cereus%1:20:00:: 11844651 1 0 -genus_ceroxylon%1:20:00:: 12587366 1 0 -genus_certhia%1:05:00:: 01589582 1 0 -genus_cervus%1:05:00:: 02430929 1 0 -genus_ceryle%1:05:00:: 01827948 1 0 -genus_cestrum%1:20:00:: 12902297 1 0 -genus_cestum%1:05:00:: 01920939 1 0 -genus_ceterach%1:20:00:: 13183251 1 0 -genus_cetonia%1:05:00:: 02175440 1 0 -genus_cetorhinus%1:05:00:: 01485073 1 0 -genus_cetraria%1:20:00:: 12992022 1 0 -genus_chaenactis%1:20:00:: 11949707 1 0 -genus_chaenomeles%1:20:00:: 12624249 1 0 -genus_chaenopsis%1:05:00:: 02614288 1 0 -genus_chaetodipterus%1:05:00:: 02604811 1 0 -genus_chaetodon%1:05:00:: 02605571 1 0 -genus_chalcis%1:05:00:: 02217997 1 0 -genus_chalcostigma%1:05:00:: 01834284 1 0 -genus_chamaea%1:05:00:: 01593156 1 0 -genus_chamaecrista%1:20:00:: 12494115 1 0 -genus_chamaecyparis%1:20:00:: 11634970 1 0 -genus_chamaecytisus%1:20:00:: 12514324 1 0 -genus_chamaedaphne%1:20:00:: 12234176 1 0 -genus_chamaeleo%1:05:00:: 01693995 1 0 -genus_chamaeleon%1:05:00:: 01693995 1 0 -genus_chamaemelum%1:20:00:: 11949217 1 0 -genus_chara%1:05:00:: 01412925 1 0 -genus_charadrius%1:05:00:: 02023664 1 0 -genus_charina%1:05:00:: 01742310 1 0 -genus_charronia%1:05:00:: 02450992 1 0 -genus_chateura%1:05:00:: 01832684 1 0 -genus_chauna%1:05:00:: 01861025 1 0 -genus_cheilanthes%1:20:00:: 13208468 1 0 -genus_cheiranthus%1:20:00:: 11883137 1 0 -genus_chelidonium%1:20:00:: 11903525 1 0 -genus_chelifer%1:05:00:: 01770967 1 0 -genus_chelone%1:20:00:: 12880963 1 0 -genus_chelonia%1:05:00:: 01663659 1 0 -genus_chelydra%1:05:00:: 01666102 1 0 -genus_chenopodium%1:20:00:: 11828113 1 0 -genus_chilomastix%1:05:00:: 01420000 1 0 -genus_chilomeniscus%1:05:00:: 01738470 1 0 -genus_chilomycterus%1:05:00:: 02656171 1 0 -genus_chilopsis%1:20:00:: 12815060 1 0 -genus_chimaera%1:05:00:: 01481203 1 0 -genus_chimaphila%1:20:00:: 12257343 1 0 -genus_chimonanthus%1:20:00:: 11701492 1 0 -genus_chinchilla%1:05:00:: 02367360 1 0 -genus_chinchona%1:20:00:: 12663554 1 0 -genus_chiococca%1:20:00:: 12662223 1 0 -genus_chionanthus%1:20:00:: 12301917 1 0 -genus_chirocephalus%1:05:00:: 01995323 1 0 -genus_chironomus%1:05:00:: 02203332 1 0 -genus_chiton%1:05:00:: 01954962 1 0 -genus_chlamydera%1:05:00:: 01601268 1 0 -genus_chlamydia%1:05:00:: 01372544 1 0 -genus_chlamydomonas%1:05:00:: 01409665 1 0 -genus_chlamydosaurus%1:05:00:: 01688106 1 0 -genus_chlamyphorus%1:05:00:: 02456147 1 0 -genus_chloranthus%1:20:00:: 13151439 1 0 -genus_chlorella%1:05:00:: 01411240 1 0 -genus_chloris%1:20:00:: 12114226 1 0 -genus_chlorococcum%1:05:00:: 01411036 1 0 -genus_chlorophis%1:05:00:: 01730429 1 0 -genus_chlorophoneus%1:05:00:: 01600197 1 0 -genus_chlorophyllum%1:20:00:: 13012835 1 0 -genus_chloroxylon%1:20:00:: 12697360 1 0 -genus_chlorura%1:05:00:: 01542316 1 0 -genus_choeronycteris%1:05:00:: 02142993 1 0 -genus_choloepus%1:05:00:: 02457756 1 0 -genus_chondrus%1:05:00:: 01414502 1 0 -genus_chordeiles%1:05:00:: 01836246 1 0 -genus_chordospartium%1:20:00:: 12514802 1 0 -genus_choriotis%1:05:00:: 02019308 1 0 -genus_chorizagrotis%1:05:00:: 02296756 1 0 -genus_chorizema%1:20:00:: 12515219 1 0 -genus_christella%1:20:00:: 13228357 1 0 -genus_chronoperates%1:05:00:: 01720117 1 0 -genus_chrysanthemum%1:20:00:: 11950028 1 0 -genus_chrysaora%1:05:00:: 01911271 1 0 -genus_chrysemys%1:05:00:: 01669527 1 0 -genus_chrysobalanus%1:20:00:: 12624873 1 0 -genus_chrysochloris%1:05:00:: 01890411 1 0 -genus_chrysolepis%1:20:00:: 12264621 1 0 -genus_chrysolophus%1:05:00:: 01804029 1 0 -genus_chrysophrys%1:05:00:: 02592866 1 0 -genus_chrysophyllum%1:20:00:: 12773488 1 0 -genus_chrysopsis%1:20:00:: 11951385 1 0 -genus_chrysosplenium%1:20:00:: 12796617 1 0 -genus_chrysothamnus%1:20:00:: 11952153 1 0 -genus_chunga%1:05:00:: 02014406 1 0 -genus_cibotium%1:20:00:: 13190917 1 0 -genus_cicada%1:05:00:: 02256542 1 0 -genus_cicer%1:20:00:: 12515597 1 0 -genus_cichorium%1:20:00:: 11952900 1 0 -genus_ciconia%1:05:00:: 02002384 1 0 -genus_cicuta%1:20:00:: 12934776 1 0 -genus_cimex%1:05:00:: 02240377 1 0 -genus_cimicifuga%1:20:00:: 11728350 1 0 -genus_cinchona%1:20:00:: 12663554 1 0 -genus_cinclus%1:05:00:: 01601919 1 0 -genus_cinnamomum%1:20:00:: 11704401 1 0 -genus_circaea%1:20:00:: 12341412 1 0 -genus_circaetus%1:05:00:: 01610426 1 0 -genus_circus%1:05:00:: 01609549 1 0 -genus_cirsium%1:20:00:: 11953762 1 0 -genus_cistothorus%1:05:00:: 01584994 1 0 -genus_cistus%1:20:00:: 12374238 1 0 -genus_citellus%1:05:00:: 02357741 1 0 -genus_citharichthys%1:05:00:: 02662081 1 0 -genus_citroncirus%1:20:00:: 12712149 1 0 -genus_citrullus%1:20:00:: 12163649 1 0 -genus_citrus%1:20:00:: 12707432 1 0 -genus_cladonia%1:20:00:: 12990938 1 0 -genus_cladorhyncus%1:05:00:: 02035845 1 0 -genus_cladrastis%1:20:00:: 12516040 1 0 -genus_clangula%1:05:00:: 01853763 1 0 -genus_clathrus%1:20:00:: 13042694 1 0 -genus_claviceps%1:20:00:: 12965463 1 0 -genus_claytonia%1:20:00:: 11859024 1 0 -genus_cleistes%1:20:00:: 12051285 1 0 -genus_clematis%1:20:00:: 11729315 1 0 -genus_cleome%1:20:00:: 11866078 1 0 -genus_clethra%1:20:00:: 12249993 1 0 -genus_clethrionomys%1:05:00:: 02342109 1 0 -genus_clianthus%1:20:00:: 12516432 1 0 -genus_cliftonia%1:20:00:: 12751043 1 0 -genus_clinopodium%1:20:00:: 12843844 1 0 -genus_clintonia%1:20:00:: 12471825 1 0 -genus_clitocybe%1:20:00:: 13020623 1 0 -genus_clitoria%1:20:00:: 12517253 1 0 -genus_clostridium%1:05:00:: 01356888 1 0 -genus_clupea%1:05:00:: 02531820 1 0 -genus_clusia%1:20:00:: 12365670 1 0 -genus_cnemidophorus%1:05:00:: 01685679 1 0 -genus_cnicus%1:20:00:: 11955398 1 0 -genus_cnidoscolus%1:20:00:: 12924984 1 0 -genus_coccothraustes%1:05:00:: 01540697 1 0 -genus_cocculus%1:20:00:: 11713628 1 0 -genus_coccus%1:05:00:: 02249011 1 0 -genus_coccyzus%1:05:00:: 01823610 1 0 -genus_cochlearia%1:20:00:: 11883799 1 0 -genus_cochlearius%1:05:00:: 02011156 1 0 -genus_cocos%1:20:00:: 12587686 1 0 -genus_codariocalyx%1:20:00:: 12517820 1 0 -genus_codiaeum%1:20:00:: 12923439 1 0 -genus_coeloglossum%1:20:00:: 12052053 1 0 -genus_coelogyne%1:20:00:: 12052630 1 0 -genus_coelophysis%1:05:00:: 01713040 1 0 -genus_coereba%1:05:00:: 01539136 1 0 -genus_coffea%1:20:00:: 12662654 1 0 -genus_cola%1:20:00:: 12197211 1 0 -genus_colaptes%1:05:00:: 01839470 1 0 -genus_colchicum%1:20:00:: 12455342 1 0 -genus_coleonyx%1:05:00:: 01675599 1 0 -genus_coleus%1:20:00:: 12844697 1 0 -genus_colinus%1:05:00:: 01804340 1 0 -genus_collinsia%1:20:00:: 12881429 1 0 -genus_collinsonia%1:20:00:: 12844220 1 0 -genus_collocalia%1:05:00:: 01832979 1 0 -genus_colobus%1:05:00:: 02488578 1 0 -genus_colocasia%1:20:00:: 11786365 1 0 -genus_coluber%1:05:00:: 01730679 1 0 -genus_colubrina%1:20:00:: 13142695 1 0 -genus_columba%1:05:00:: 01812471 1 0 -genus_columnea%1:20:00:: 12831389 1 0 -genus_colutea%1:20:00:: 12518305 1 0 -genus_comandra%1:20:00:: 12736064 1 0 -genus_comatula%1:05:00:: 02321062 1 0 -genus_combretum%1:20:00:: 12323820 1 0 -genus_commelina%1:20:00:: 12606227 1 0 -genus_commiphora%1:20:00:: 12692323 1 0 -genus_compsognathus%1:05:00:: 01714404 1 0 -genus_comptonia%1:20:00:: 11742175 1 0 -genus_condylura%1:05:00:: 01889740 1 0 -genus_conepatus%1:05:00:: 02446512 1 0 -genus_conferva%1:05:00:: 01401686 1 0 -genus_conilurus%1:05:00:: 02334337 1 0 -genus_coniogramme%1:20:00:: 13209647 1 0 -genus_conium%1:20:00:: 12935457 1 0 -genus_connarus%1:20:00:: 11746419 1 0 -genus_connochaetes%1:05:00:: 02421308 1 0 -genus_conocarpus%1:20:00:: 12324756 1 0 -genus_conoclinium%1:20:00:: 11955770 1 0 -genus_conopodium%1:20:00:: 12935982 1 0 -genus_conospermum%1:20:00:: 12216028 1 0 -genus_conradina%1:20:00:: 12845732 1 0 -genus_consolida%1:20:00:: 11732309 1 0 -genus_contopus%1:05:00:: 01549314 1 0 -genus_conuropsis%1:05:00:: 01821418 1 0 -genus_convallaria%1:20:00:: 12471366 1 0 -genus_convolvulus%1:20:00:: 12823531 1 0 -genus_conyza%1:20:00:: 11956208 1 0 -genus_copernicia%1:20:00:: 12588156 1 0 -genus_coprinus%1:20:00:: 13005568 1 0 -genus_coptis%1:20:00:: 11731861 1 0 -genus_coracias%1:05:00:: 01826542 1 0 -genus_coragyps%1:05:00:: 01620282 1 0 -genus_corallorhiza%1:20:00:: 12053138 1 0 -genus_corchorus%1:20:00:: 12204546 1 0 -genus_cordaites%1:20:00:: 11606846 1 0 -genus_cordia%1:20:00:: 12818147 1 0 -genus_cordyline%1:20:00:: 12478283 1 0 -genus_cordylus%1:05:00:: 01685107 1 0 -genus_coregonus%1:05:00:: 02539251 1 0 -genus_coreopsis%1:20:00:: 11956671 1 0 -genus_coriandrum%1:20:00:: 12936333 1 0 -genus_corixa%1:05:00:: 02243065 1 0 -genus_cornus%1:20:00:: 12946578 1 0 -genus_corokia%1:20:00:: 12948633 1 0 -genus_coronilla%1:20:00:: 12518725 1 0 -genus_corozo%1:20:00:: 12588989 1 0 -genus_cortaderia%1:20:00:: 12114981 1 0 -genus_corticium%1:20:00:: 13015229 1 0 -genus_cortinarius%1:20:00:: 13074277 1 0 -genus_corvus%1:05:00:: 01578821 1 0 -genus_coryanthes%1:20:00:: 12054499 1 0 -genus_corydalis%1:05:00:: 02265860 2 0 -genus_corydalis%1:20:00:: 11903881 1 0 -genus_corydalus%1:05:00:: 02265860 1 0 -genus_corylopsis%1:20:00:: 12315424 1 0 -genus_corylus%1:20:00:: 12288598 1 0 -genus_corynebacterium%1:05:00:: 01366415 1 0 -genus_corypha%1:20:00:: 12589286 1 0 -genus_coryphantha%1:20:00:: 11845019 1 0 -genus_corythosaurus%1:05:00:: 01706533 1 0 -genus_coscoroba%1:05:00:: 01858162 1 0 -genus_cosmocampus%1:05:00:: 01456296 1 0 -genus_cosmos%1:20:00:: 11957912 1 0 -genus_costia%1:05:00:: 01419444 1 0 -genus_cotinga%1:05:00:: 01550625 1 0 -genus_cotinus%1:20:00:: 12760013 1 0 -genus_cotoneaster%1:20:00:: 12625215 1 0 -genus_cottus%1:05:00:: 02645143 1 0 -genus_cotula%1:20:00:: 11958316 1 0 -genus_coturnix%1:05:00:: 01804796 1 0 -genus_coumarouna%1:20:00:: 11749742 1 0 -genus_cracticus%1:05:00:: 01583043 1 0 -genus_crambe%1:20:00:: 11884198 1 0 -genus_crangon%1:05:00:: 01986681 1 0 -genus_craspedia%1:20:00:: 11958742 1 0 -genus_crassostrea%1:05:00:: 01961468 1 0 -genus_crassula%1:20:00:: 12785312 1 0 -genus_crataegus%1:20:00:: 12626030 1 0 -genus_crateva%1:20:00:: 11866942 1 0 -genus_crax%1:05:00:: 01799540 1 0 -genus_crepis%1:20:00:: 11959104 1 0 -genus_crescentia%1:20:00:: 12815434 1 0 -genus_crex%1:05:00:: 02015685 1 0 -genus_cricetus%1:05:00:: 02342727 1 0 -genus_crocethia%1:05:00:: 02029243 1 0 -genus_crocodilus%1:05:00:: 01697002 1 0 -genus_crocodylus%1:05:00:: 01697002 1 0 -genus_crocus%1:20:00:: 12416278 1 0 -genus_crocuta%1:05:00:: 02117772 1 0 -genus_cronartium%1:20:00:: 13064247 1 0 -genus_crotalaria%1:20:00:: 12519328 1 0 -genus_crotalus%1:05:00:: 01755274 1 0 -genus_crotaphytus%1:05:00:: 01679494 1 0 -genus_croton%1:20:00:: 12922600 1 0 -genus_crotophaga%1:05:00:: 01824227 1 0 -genus_cryptacanthodes%1:05:00:: 02616251 1 0 -genus_cryptobranchus%1:05:00:: 01633250 1 0 -genus_cryptocercus%1:05:00:: 02235465 1 0 -genus_cryptocoryne%1:20:00:: 11786983 1 0 -genus_cryptogramma%1:20:00:: 13210006 1 0 -genus_cryptomeria%1:20:00:: 11636068 1 0 -genus_cryptoprocta%1:05:00:: 02136285 1 0 -genus_cryptotermes%1:05:00:: 02225577 1 0 -genus_cryptotis%1:05:00:: 01893294 1 0 -genus_ctenocephalides%1:05:00:: 02186834 1 0 -genus_ctenocephalus%1:05:00:: 02187022 1 0 -genus_cuculus%1:05:00:: 01823279 1 0 -genus_cucumis%1:20:00:: 12164215 1 0 -genus_cucurbita%1:20:00:: 12158148 1 0 -genus_culcita%1:20:00:: 13191318 1 0 -genus_culex%1:05:00:: 02201758 1 0 -genus_cuminum%1:20:00:: 12936713 1 0 -genus_cuniculus%1:05:00:: 02366203 1 0 -genus_cuon%1:05:00:: 02115775 1 0 -genus_cupressus%1:20:00:: 11630351 1 0 -genus_curcuma%1:20:00:: 12356255 1 0 -genus_cursorius%1:05:00:: 02039377 1 0 -genus_curtisia%1:20:00:: 12948849 1 0 -genus_cuscuta%1:20:00:: 12825301 1 0 -genus_cuterebra%1:05:00:: 02193955 1 0 -genus_cyamopsis%1:20:00:: 12520223 1 0 -genus_cyamus%1:05:00:: 01993714 1 0 -genus_cyanocitta%1:05:00:: 01580644 1 0 -genus_cyathea%1:20:00:: 13187167 1 0 -genus_cycas%1:20:00:: 11600900 1 0 -genus_cyclamen%1:20:00:: 12093088 1 0 -genus_cycloloma%1:20:00:: 11833208 1 0 -genus_cyclopes%1:05:00:: 02460684 1 0 -genus_cyclophorus%1:20:00:: 13178883 1 0 -genus_cyclops%1:05:00:: 01997002 1 0 -genus_cyclopterus%1:05:00:: 02646508 1 0 -genus_cyclosorus%1:20:00:: 13228692 1 0 -genus_cycnoches%1:20:00:: 12054902 1 0 -genus_cydonia%1:20:00:: 12628872 1 0 -genus_cygnus%1:05:00:: 01858989 1 0 -genus_cymbidium%1:20:00:: 12055317 1 0 -genus_cynancum%1:20:00:: 13236354 1 0 -genus_cynara%1:20:00:: 11959489 1 0 -genus_cynips%1:05:00:: 02216924 1 0 -genus_cynocephalus%1:05:00:: 02502357 1 0 -genus_cynodon%1:20:00:: 12115563 1 0 -genus_cynoglossum%1:20:00:: 12818742 1 0 -genus_cynomys%1:05:00:: 02359204 1 0 -genus_cynopterus%1:05:00:: 02140719 1 0 -genus_cynoscion%1:05:00:: 02599207 1 0 -genus_cyon%1:05:00:: 02115775 1 0 -genus_cyperus%1:20:00:: 12150447 1 0 -genus_cyphomandra%1:20:00:: 12902887 1 0 -genus_cypraea%1:05:00:: 01953197 1 0 -genus_cyprinus%1:05:00:: 01439657 1 0 -genus_cypripedium%1:20:00:: 12055839 1 0 -genus_cyrilla%1:20:00:: 12750577 1 0 -genus_cyrtomium%1:20:00:: 13195151 1 0 -genus_cystophora%1:05:00:: 02080934 1 0 -genus_cystopteris%1:20:00:: 13195547 1 0 -genus_cytisus%1:20:00:: 12520661 1 0 -genus_daboecia%1:20:00:: 12234513 1 0 -genus_dacelo%1:05:00:: 01828267 1 0 -genus_dacrycarpus%1:20:00:: 11653728 1 0 -genus_dacrydium%1:20:00:: 11654124 1 0 -genus_dacrymyces%1:20:00:: 13062868 1 0 -genus_dactylis%1:20:00:: 12116267 1 0 -genus_dactyloctenium%1:20:00:: 12116583 1 0 -genus_dactylopius%1:05:00:: 02250133 1 0 -genus_dactylopterus%1:05:00:: 02652005 1 0 -genus_dactylorhiza%1:20:00:: 12058429 1 0 -genus_dahlia%1:20:00:: 11960084 1 0 -genus_dalbergia%1:20:00:: 12521847 1 0 -genus_dalea%1:20:00:: 12524518 1 0 -genus_dama%1:05:00:: 02433205 1 0 -genus_damaliscus%1:05:00:: 02422249 1 0 -genus_danaea%1:20:00:: 13215799 1 0 -genus_danaus%1:05:00:: 02279819 1 0 -genus_daphne%1:20:00:: 12346448 1 0 -genus_daphnia%1:05:00:: 01994801 1 0 -genus_darlingtonia%1:20:00:: 12780852 1 0 -genus_darmera%1:20:00:: 12797213 1 0 -genus_dasyatis%1:05:00:: 01498268 1 0 -genus_dasyprocta%1:05:00:: 02365848 1 0 -genus_dasypus%1:05:00:: 02454657 1 0 -genus_dasyurus%1:05:00:: 01883762 1 0 -genus_datura%1:20:00:: 12903250 1 0 -genus_daubentonia%1:05:00:: 02497983 1 0 -genus_daucus%1:20:00:: 12936999 1 0 -genus_davallia%1:20:00:: 13187826 1 0 -genus_daviesia%1:20:00:: 12524944 1 0 -genus_decapterus%1:05:00:: 02581289 1 0 -genus_decumaria%1:20:00:: 12789767 1 0 -genus_deinocheirus%1:05:00:: 01716459 1 0 -genus_deinonychus%1:05:00:: 01717957 1 0 -genus_delairea%1:20:00:: 11960540 1 0 -genus_delichon%1:05:00:: 01595841 1 0 -genus_delonix%1:20:00:: 12494629 1 0 -genus_delphinapterus%1:05:00:: 02072665 1 0 -genus_delphinium%1:20:00:: 11732857 1 0 -genus_delphinus%1:05:00:: 02069271 1 0 -genus_dendranthema%1:20:00:: 11960943 1 0 -genus_dendraspis%1:05:00:: 01749428 1 0 -genus_dendroaspis%1:05:00:: 01749428 1 0 -genus_dendrobium%1:20:00:: 12059090 1 0 -genus_dendrocalamus%1:20:00:: 12148610 1 0 -genus_dendrocolaptes%1:05:00:: 01554311 1 0 -genus_dendroctonus%1:05:00:: 02180046 1 0 -genus_dendroica%1:05:00:: 01568493 1 0 -genus_dendrolagus%1:05:00:: 01879379 1 0 -genus_dendromecon%1:20:00:: 11904896 1 0 -genus_denisonia%1:05:00:: 01747466 1 0 -genus_dennstaedtia%1:20:00:: 13189222 1 0 -genus_dentaria%1:20:00:: 11881563 1 0 -genus_deparia%1:20:00:: 13196545 1 0 -genus_dermacentor%1:05:00:: 01778984 1 0 -genus_dermatobia%1:05:00:: 02194078 1 0 -genus_dermochelys%1:05:00:: 01665372 1 0 -genus_derris%1:20:00:: 12525347 1 0 -genus_descurainia%1:20:00:: 11884667 1 0 -genus_desmanthus%1:20:00:: 12525975 1 0 -genus_desmidium%1:05:00:: 01413324 1 0 -genus_desmodium%1:20:00:: 12526380 1 0 -genus_desmodus%1:05:00:: 02150730 1 0 -genus_desmograthus%1:05:00:: 01636675 1 0 -genus_deutzia%1:20:00:: 12790185 1 0 -genus_diacalpa%1:20:00:: 13196942 1 0 -genus_diadophis%1:05:00:: 01728738 1 0 -genus_dialeurodes%1:05:00:: 02246822 1 0 -genus_dianthus%1:20:00:: 11807849 1 0 -genus_diapensia%1:20:00:: 12250874 1 0 -genus_diapheromera%1:05:00:: 02231680 1 0 -genus_dicamptodon%1:05:00:: 01634891 1 0 -genus_dicentra%1:20:00:: 11910070 1 0 -genus_diceros%1:05:00:: 02393024 1 0 -genus_dichondra%1:20:00:: 12825949 1 0 -genus_dicksonia%1:20:00:: 13190469 1 0 -genus_dicranopteris%1:20:00:: 13170498 1 0 -genus_dicranum%1:20:00:: 11540631 1 0 -genus_dicrostonyx%1:05:00:: 02345471 1 0 -genus_dictamnus%1:20:00:: 12712488 1 0 -genus_dictostylium%1:20:00:: 12976389 1 0 -genus_dictyophera%1:20:00:: 13040971 1 0 -genus_didelphis%1:05:00:: 01875165 1 0 -genus_dieffenbachia%1:20:00:: 11787391 1 0 -genus_diervilla%1:20:00:: 12671898 1 0 -genus_difflugia%1:05:00:: 01394635 1 0 -genus_digitalis%1:20:00:: 12882591 1 0 -genus_digitaria%1:20:00:: 12116881 1 0 -genus_dillenia%1:20:00:: 12363110 1 0 -genus_dimetrodon%1:05:00:: 01722538 1 0 -genus_dimocarpus%1:20:00:: 12743232 1 0 -genus_dimorphotheca%1:20:00:: 11961266 1 0 -genus_dinornis%1:05:00:: 01522952 1 0 -genus_diodon%1:05:00:: 02655694 1 0 -genus_diomedea%1:05:00:: 02058453 1 0 -genus_dionaea%1:20:00:: 12782774 1 0 -genus_dioon%1:20:00:: 11602671 1 0 -genus_dioscorea%1:20:00:: 12087807 1 0 -genus_diospyros%1:20:00:: 12770277 1 0 -genus_diphylla%1:05:00:: 02151108 1 0 -genus_dipladenia%1:20:00:: 11773138 1 0 -genus_diplococcus%1:05:00:: 01380489 1 0 -genus_diplodocus%1:05:00:: 01710035 1 0 -genus_diplopterygium%1:20:00:: 13170661 1 0 -genus_diplotaxis%1:20:00:: 11885148 1 0 -genus_dipodomys%1:05:00:: 02349980 1 0 -genus_dipogon%1:20:00:: 12526946 1 0 -genus_dipsacus%1:20:00:: 12682264 1 0 -genus_dipsosaurus%1:05:00:: 01677913 1 0 -genus_dipteronia%1:20:00:: 12756059 1 0 -genus_dipteryx%1:20:00:: 11749742 1 0 -genus_dipus%1:05:00:: 02351686 1 0 -genus_dirca%1:20:00:: 12347490 1 0 -genus_disa%1:20:00:: 12059479 1 0 -genus_discina%1:20:00:: 13036592 1 0 -genus_dodonaea%1:20:00:: 12741079 1 0 -genus_dolichonyx%1:05:00:: 01573775 1 0 -genus_dolichos%1:20:00:: 12527391 1 0 -genus_dolichotis%1:05:00:: 02364989 1 0 -genus_doliolum%1:05:00:: 01470018 1 0 -genus_dombeya%1:20:00:: 12197765 1 0 -genus_doodia%1:20:00:: 13185436 1 0 -genus_doronicum%1:20:00:: 11961686 1 0 -genus_dorotheanthus%1:20:00:: 11819751 1 0 -genus_doryopteris%1:20:00:: 13210827 1 0 -genus_dovyalis%1:20:00:: 12378546 1 0 -genus_draba%1:20:00:: 11885697 1 0 -genus_dracaena%1:20:00:: 12479303 1 0 -genus_draco%1:05:00:: 01688428 1 0 -genus_dracocephalum%1:20:00:: 12846143 1 0 -genus_dracontium%1:20:00:: 11787892 1 0 -genus_dracula%1:20:00:: 12059851 1 0 -genus_dracunculus%1:05:00:: 01933834 2 0 -genus_dracunculus%1:20:00:: 11788223 1 0 -genus_dreissena%1:05:00:: 01965404 1 0 -genus_drepanis%1:05:00:: 01544877 1 0 -genus_drimys%1:20:00:: 11739809 1 0 -genus_dromaius%1:05:00:: 01519719 1 0 -genus_drosera%1:20:00:: 12782338 1 0 -genus_drosophila%1:05:00:: 02197545 1 0 -genus_drosophyllum%1:20:00:: 12783601 1 0 -genus_dryadella%1:20:00:: 12060118 1 0 -genus_dryas%1:20:00:: 12629187 1 0 -genus_drymarchon%1:05:00:: 01741116 1 0 -genus_drymoglossum%1:20:00:: 13175324 1 0 -genus_drynaria%1:20:00:: 13175484 1 0 -genus_dryopithecus%1:05:00:: 02477890 1 0 -genus_dryopteris%1:20:00:: 13192898 1 0 -genus_drypis%1:20:00:: 11809922 1 0 -genus_dugong%1:05:00:: 02074214 1 0 -genus_dumetella%1:05:00:: 01587406 1 0 -genus_durio%1:20:00:: 12190712 1 0 -genus_dusicyon%1:05:00:: 02116079 1 0 -genus_dysdercus%1:05:00:: 02245239 1 0 -genus_eacles%1:05:00:: 02302124 1 0 -genus_eburophyton%1:20:00:: 12060380 1 0 -genus_ecballium%1:20:00:: 12165608 1 0 -genus_echeneis%1:05:00:: 02575168 1 0 -genus_echidnophaga%1:05:00:: 02187759 1 0 -genus_echinacea%1:20:00:: 11962108 1 0 -genus_echinocactus%1:20:00:: 11845387 1 0 -genus_echinocereus%1:20:00:: 11846087 1 0 -genus_echinochloa%1:20:00:: 12117507 1 0 -genus_echinococcus%1:05:00:: 01927816 1 0 -genus_echinops%1:20:00:: 11962500 1 0 -genus_echium%1:20:00:: 12819560 1 0 -genus_ectopistes%1:05:00:: 01815135 1 0 -genus_edaphosaurus%1:05:00:: 01722254 1 0 -genus_edmontosaurus%1:05:00:: 01706865 1 0 -genus_egeria%1:20:00:: 12614962 1 0 -genus_egretta%1:05:00:: 02009015 1 0 -genus_eichhornia%1:20:00:: 12610186 1 0 -genus_eimeria%1:05:00:: 01423160 1 0 -genus_eira%1:05:00:: 02451292 1 0 -genus_elaeagnus%1:20:00:: 12325667 1 0 -genus_elaeis%1:20:00:: 12590117 1 0 -genus_elaeocarpus%1:20:00:: 12192722 1 0 -genus_elagatis%1:05:00:: 02577291 1 0 -genus_elanoides%1:05:00:: 01608934 1 0 -genus_elanus%1:05:00:: 01609236 1 0 -genus_elaphe%1:05:00:: 01732445 1 0 -genus_elaphurus%1:05:00:: 02435386 1 0 -genus_electrophorus%1:05:00:: 01444164 1 0 -genus_eleocharis%1:20:00:: 12153393 1 0 -genus_elephantopus%1:20:00:: 11962853 1 0 -genus_elephas%1:05:00:: 02503868 1 0 -genus_elettaria%1:20:00:: 12358173 1 0 -genus_eleusine%1:20:00:: 12118223 1 0 -genus_eleutherodactylus%1:05:00:: 01643092 1 0 -genus_eliomys%1:05:00:: 02353297 1 0 -genus_elodea%1:20:00:: 12614317 1 0 -genus_elops%1:05:00:: 02541875 1 0 -genus_elsholtzia%1:20:00:: 12846546 1 0 -genus_elymus%1:20:00:: 12118912 1 0 -genus_emberiza%1:05:00:: 01537710 1 0 -genus_embothrium%1:20:00:: 12216382 1 0 -genus_emilia%1:20:00:: 11963158 1 0 -genus_emmanthe%1:20:00:: 12835196 1 0 -genus_empetrum%1:20:00:: 12751554 1 0 -genus_encelia%1:20:00:: 11963755 1 0 -genus_enceliopsis%1:20:00:: 11964269 1 0 -genus_encephalartos%1:20:00:: 11603045 1 0 -genus_encyclia%1:20:00:: 12060816 1 0 -genus_endamoeba%1:05:00:: 01392122 1 0 -genus_engelmannia%1:20:00:: 11964688 1 0 -genus_engraulis%1:05:00:: 02534036 1 0 -genus_enhydra%1:05:00:: 02445276 1 0 -genus_ensete%1:20:00:: 12353604 1 0 -genus_ensis%1:05:00:: 01958914 1 0 -genus_entandrophragma%1:20:00:: 12697883 1 0 -genus_entelea%1:20:00:: 12204405 1 0 -genus_enterobius%1:05:00:: 01931398 1 0 -genus_enterolobium%1:20:00:: 11761007 1 0 -genus_entoloma%1:20:00:: 13012030 1 0 -genus_entomophthora%1:20:00:: 12974662 1 0 -genus_eoraptor%1:05:00:: 01714982 1 0 -genus_epacris%1:20:00:: 12253083 1 0 -genus_ephedra%1:20:00:: 11598452 1 0 -genus_ephestia%1:05:00:: 02290153 1 0 -genus_ephippiorhynchus%1:05:00:: 02003994 1 0 -genus_epidendrum%1:20:00:: 12061849 1 0 -genus_epigaea%1:20:00:: 12234913 1 0 -genus_epilachna%1:05:00:: 02166024 1 0 -genus_epilobium%1:20:00:: 12342043 1 0 -genus_epimedium%1:20:00:: 11698895 1 0 -genus_epinephelus%1:05:00:: 02569151 1 0 -genus_epipactis%1:20:00:: 12062227 1 0 -genus_epiphyllum%1:20:00:: 11846582 1 0 -genus_epipremnum%1:20:00:: 11788536 1 0 -genus_episcia%1:20:00:: 12831776 1 0 -genus_eptatretus%1:05:00:: 01479066 1 0 -genus_eptesicus%1:05:00:: 02147034 1 0 -genus_equetus%1:05:00:: 02594807 1 0 -genus_equisetum%1:20:00:: 13219258 1 0 -genus_equus%1:05:00:: 02373843 1 0 -genus_eragrostis%1:20:00:: 12119947 1 0 -genus_eranthis%1:20:00:: 11733424 1 0 -genus_ercilla%1:20:00:: 11856271 1 0 -genus_erechtites%1:20:00:: 11965054 1 0 -genus_erethizon%1:05:00:: 02348036 1 0 -genus_eretmochelys%1:05:00:: 01664862 1 0 -genus_erianthus%1:20:00:: 12120812 1 0 -genus_erica%1:20:00:: 12227220 1 0 -genus_erigeron%1:20:00:: 11965378 1 0 -genus_erignathus%1:05:00:: 02080586 1 0 -genus_erinaceus%1:05:00:: 01893666 1 0 -genus_eriobotrya%1:20:00:: 12629523 1 0 -genus_eriocaulon%1:20:00:: 12609128 1 0 -genus_eriodictyon%1:20:00:: 12835578 1 0 -genus_eriogonum%1:20:00:: 12602118 1 0 -genus_eriophorum%1:20:00:: 12152406 1 0 -genus_eriophyllum%1:20:00:: 11967572 1 0 -genus_eriosoma%1:05:00:: 02253592 1 0 -genus_erithacus%1:05:00:: 01562116 1 0 -genus_erodium%1:20:00:: 12688526 1 0 -genus_erolia%1:05:00:: 02027209 1 0 -genus_eruca%1:20:00:: 11886380 1 0 -genus_erwinia%1:05:00:: 01370581 1 0 -genus_eryngium%1:20:00:: 12937822 1 0 -genus_erysimum%1:20:00:: 11886788 1 0 -genus_erysiphe%1:20:00:: 12963494 1 0 -genus_erythrina%1:20:00:: 12527569 1 0 -genus_erythrocebus%1:05:00:: 02486138 1 0 -genus_erythronium%1:20:00:: 12450099 1 0 -genus_erythroxylon%1:20:00:: 12689808 1 0 -genus_erythroxylum%1:20:00:: 12689808 1 0 -genus_escherichia%1:05:00:: 01368095 1 0 -genus_eschrichtius%1:05:00:: 02066086 1 0 -genus_eschscholtzia%1:20:00:: 11905236 1 0 -genus_esox%1:05:00:: 02560964 1 0 -genus_estrilda%1:05:00:: 01543817 1 0 -genus_etropus%1:05:00:: 02661765 1 0 -genus_euarctos%1:05:00:: 02132974 1 0 -genus_eucalyptus%1:20:00:: 12334686 1 0 -genus_eucarya%1:20:00:: 12736455 1 0 -genus_eucinostomus%1:05:00:: 02637337 1 0 -genus_euderma%1:05:00:: 02148377 1 0 -genus_eudyptes%1:05:00:: 02057208 1 0 -genus_eugenia%1:20:00:: 12331415 1 0 -genus_euglena%1:05:00:: 01406565 1 0 -genus_eumeces%1:05:00:: 01684435 1 0 -genus_eumenes%1:05:00:: 02214203 1 0 -genus_eumetopias%1:05:00:: 02078882 1 0 -genus_eumops%1:05:00:: 02150016 1 0 -genus_eunectes%1:05:00:: 01742967 1 0 -genus_euonymus%1:20:00:: 12748815 1 0 -genus_eupatorium%1:20:00:: 11968104 1 0 -genus_euphagus%1:05:00:: 01574671 1 0 -genus_euphorbia%1:20:00:: 12917338 1 0 -genus_euphractus%1:05:00:: 02455584 1 0 -genus_euplectella%1:05:00:: 01907902 1 0 -genus_euproctis%1:05:00:: 02286271 1 0 -genus_eurotium%1:20:00:: 13027049 1 0 -genus_euryale%1:05:00:: 02318437 1 0 -genus_eustoma%1:20:00:: 12291763 1 0 -genus_eutamias%1:05:00:: 02360135 1 0 -genus_euterpe%1:20:00:: 12590842 1 0 -genus_euthynnus%1:05:00:: 02628467 1 0 -genus_evernia%1:20:00:: 12990092 1 0 -genus_exacum%1:20:00:: 12292285 1 0 -genus_exaeretodon%1:05:00:: 01720867 1 0 -genus_fabiana%1:20:00:: 12903794 1 0 -genus_fagopyrum%1:20:00:: 12601335 1 0 -genus_fagus%1:20:00:: 12260593 1 0 -genus_falcatifolium%1:20:00:: 11654667 1 0 -genus_falco%1:05:00:: 01611252 1 0 -genus_fasciola%1:05:00:: 01926247 1 0 -genus_fasciolopsis%1:05:00:: 01926549 1 0 -genus_feijoa%1:20:00:: 12332422 1 0 -genus_felicia%1:20:00:: 11969410 1 0 -genus_felis%1:05:00:: 02121234 1 0 -genus_ferocactus%1:20:00:: 11846970 1 0 -genus_festuca%1:20:00:: 12121405 1 0 -genus_ficus%1:20:00:: 12401122 1 0 -genus_filago%1:20:00:: 11969977 1 0 -genus_firmiana%1:20:00:: 12198140 1 0 -genus_fissurella%1:05:00:: 01949330 1 0 -genus_fistularia%1:05:00:: 01454393 1 0 -genus_fistulina%1:20:00:: 13053450 1 0 -genus_flacourtia%1:20:00:: 12378080 1 0 -genus_flammulina%1:20:00:: 13022078 1 0 -genus_flindersia%1:20:00:: 12698283 1 0 -genus_foeniculum%1:20:00:: 12938897 1 0 -genus_fomes%1:20:00:: 13053816 1 0 -genus_forestiera%1:20:00:: 12302418 1 0 -genus_forficula%1:05:00:: 02273254 1 0 -genus_formica%1:05:00:: 02221240 1 0 -genus_formicarius%1:05:00:: 01553380 1 0 -genus_forsythia%1:20:00:: 12302974 1 0 -genus_fortunella%1:20:00:: 12712820 1 0 -genus_fossa%1:05:00:: 02136623 1 0 -genus_fothergilla%1:20:00:: 12315818 1 0 -genus_fouquieria%1:20:00:: 12381666 1 0 -genus_fragaria%1:20:00:: 12629946 1 0 -genus_francisella%1:05:00:: 01365474 1 0 -genus_francoa%1:20:00:: 12797693 1 0 -genus_frankliniella%1:05:00:: 02272152 1 0 -genus_frasera%1:20:00:: 12292655 1 0 -genus_fratercula%1:05:00:: 02047835 1 0 -genus_fraxinus%1:20:00:: 12303349 1 0 -genus_freesia%1:20:00:: 12416917 1 0 -genus_fregata%1:05:00:: 02052639 1 0 -genus_fremontia%1:20:00:: 12198628 1 0 -genus_fremontodendron%1:20:00:: 12198628 1 0 -genus_fringilla%1:05:00:: 01530256 1 0 -genus_fritillaria%1:20:00:: 12451789 1 0 -genus_froelichia%1:20:00:: 11825535 1 0 -genus_fuchsia%1:20:00:: 12343306 1 0 -genus_fucus%1:05:00:: 01404813 1 0 -genus_fulica%1:05:00:: 02017878 1 0 -genus_fulmarus%1:05:00:: 02060016 1 0 -genus_fumaria%1:20:00:: 11909353 1 0 -genus_fundulus%1:05:00:: 01447001 1 0 -genus_fungia%1:05:00:: 01917751 1 0 -genus_funka%1:20:00:: 12457519 1 0 -genus_furnarius%1:05:00:: 01552654 1 0 -genus_fusanus%1:20:00:: 12736455 1 0 -genus_fusarium%1:20:00:: 13081778 1 0 -genus_fuscoboletinus%1:20:00:: 13057845 1 0 -genus_gadus%1:05:00:: 02522247 1 0 -genus_gaillardia%1:20:00:: 11970429 1 0 -genus_galago%1:05:00:: 02499700 1 0 -genus_galax%1:20:00:: 12251137 1 0 -genus_galega%1:20:00:: 12529353 1 0 -genus_galeocerdo%1:05:00:: 01491235 1 0 -genus_galeopsis%1:20:00:: 12846869 1 0 -genus_galeorhinus%1:05:00:: 01491520 1 0 -genus_galictis%1:05:00:: 02449582 1 0 -genus_galium%1:20:00:: 12664897 1 0 -genus_galleria%1:05:00:: 02289177 1 0 -genus_gallinago%1:05:00:: 02031752 1 0 -genus_gallinula%1:05:00:: 02016198 1 0 -genus_gallirallus%1:05:00:: 02015221 1 0 -genus_gallus%1:05:00:: 01790943 1 0 -genus_gambelia%1:05:00:: 01679837 1 0 -genus_gambusia%1:05:00:: 01449252 1 0 -genus_garcinia%1:20:00:: 12366507 1 0 -genus_gardenia%1:20:00:: 12666602 1 0 -genus_garrulus%1:05:00:: 01580225 1 0 -genus_gasterophilus%1:05:00:: 02193496 1 0 -genus_gasterosteus%1:05:00:: 01455141 1 0 -genus_gastroboletus%1:20:00:: 13048666 1 0 -genus_gastrocybe%1:20:00:: 13047706 1 0 -genus_gastrolobium%1:20:00:: 12529730 1 0 -genus_gastrophryne%1:05:00:: 01652850 1 0 -genus_gaultheria%1:20:00:: 12235263 1 0 -genus_gavia%1:05:00:: 02048952 1 0 -genus_gavialis%1:05:00:: 01699537 1 0 -genus_gaylussacia%1:20:00:: 12236363 1 0 -genus_gazania%1:20:00:: 11971094 1 0 -genus_gazella%1:05:00:: 02422860 1 0 -genus_geastrum%1:20:00:: 13045027 1 0 -genus_gelechia%1:05:00:: 02293560 1 0 -genus_gelsemium%1:20:00:: 12485811 1 0 -genus_gempylus%1:05:00:: 02622130 1 0 -genus_genetta%1:05:00:: 02136901 1 0 -genus_genipa%1:20:00:: 12667179 1 0 -genus_genista%1:20:00:: 12530208 1 0 -genus_genlisea%1:20:00:: 12873182 1 0 -genus_gentiana%1:20:00:: 12293419 1 0 -genus_gentianella%1:20:00:: 12295560 1 0 -genus_gentianopsis%1:20:00:: 12296218 1 0 -genus_genyonemus%1:05:00:: 02598438 1 0 -genus_geochelone%1:05:00:: 01670673 1 0 -genus_geococcyx%1:05:00:: 01823912 1 0 -genus_geoffroea%1:20:00:: 12531144 1 0 -genus_geoglossum%1:20:00:: 13226698 1 0 -genus_geomys%1:05:00:: 02353709 1 0 -genus_geophilus%1:05:00:: 01786219 1 0 -genus_geothlypis%1:05:00:: 01570549 1 0 -genus_geranium%1:20:00:: 12685679 1 0 -genus_gerardia%1:20:00:: 12883395 1 0 -genus_gerbera%1:20:00:: 11971600 1 0 -genus_gerbillus%1:05:00:: 02343633 1 0 -genus_gerea%1:20:00:: 11972141 1 0 -genus_gerres%1:05:00:: 02637046 1 0 -genus_gerrhonotus%1:05:00:: 01689678 1 0 -genus_gerris%1:05:00:: 02243744 1 0 -genus_gesneria%1:20:00:: 12829809 1 0 -genus_geum%1:20:00:: 12631224 1 0 -genus_giardia%1:05:00:: 01419740 1 0 -genus_ginglymostoma%1:05:00:: 01486706 1 0 -genus_ginkgo%1:20:00:: 11664301 1 0 -genus_giraffa%1:05:00:: 02438897 1 0 -genus_gladiolus%1:20:00:: 12417273 1 0 -genus_glareola%1:05:00:: 02038837 1 0 -genus_glaucium%1:20:00:: 11905584 1 0 -genus_glaucomys%1:05:00:: 02360643 1 0 -genus_glaux%1:20:00:: 12093769 1 0 -genus_glechoma%1:20:00:: 12847254 1 0 -genus_gleditsia%1:20:00:: 12495509 1 0 -genus_gleichenia%1:20:00:: 13170286 1 0 -genus_gliricidia%1:20:00:: 12531552 1 0 -genus_glis%1:05:00:: 02352804 1 0 -genus_globicephala%1:05:00:: 02071506 1 0 -genus_globigerina%1:05:00:: 01393364 1 0 -genus_gloriosa%1:20:00:: 12455787 1 0 -genus_glossina%1:05:00:: 02191131 1 0 -genus_glossodia%1:20:00:: 12063066 1 0 -genus_glossopsitta%1:05:00:: 01820664 1 0 -genus_gloxinia%1:20:00:: 12832140 1 0 -genus_glyceria%1:20:00:: 12122124 1 0 -genus_glycine%1:20:00:: 12532008 1 0 -genus_glycyrrhiza%1:20:00:: 12532720 1 0 -genus_gnaphalium%1:20:00:: 11972569 1 0 -genus_gnetum%1:20:00:: 11597396 1 0 -genus_gobiesox%1:05:00:: 02635459 1 0 -genus_gobio%1:05:00:: 01443126 1 0 -genus_gomphotherium%1:05:00:: 02506630 1 0 -genus_gomphrena%1:20:00:: 11825988 1 0 -genus_goniopteris%1:20:00:: 13228867 1 0 -genus_gonorhynchus%1:05:00:: 02529111 1 0 -genus_goodyera%1:20:00:: 12063414 1 0 -genus_gopherus%1:05:00:: 01670961 1 0 -genus_gorgonocephalus%1:05:00:: 02318798 1 0 -genus_gorilla%1:05:00:: 02480673 1 0 -genus_gossypium%1:20:00:: 12175797 1 0 -genus_gracula%1:05:00:: 01578086 1 0 -genus_grammatophyllum%1:20:00:: 12063887 1 0 -genus_grampus%1:05:00:: 02070923 1 0 -genus_graptophyllum%1:20:00:: 12812665 1 0 -genus_grevillea%1:20:00:: 12217211 1 0 -genus_grewia%1:20:00:: 12204925 1 0 -genus_grias%1:20:00:: 12327407 1 0 -genus_grindelia%1:20:00:: 11973159 1 0 -genus_griselinia%1:20:00:: 12948978 1 0 -genus_grison%1:05:00:: 02449464 1 0 -genus_groenlandia%1:20:00:: 12616825 1 0 -genus_grus%1:05:00:: 02013034 1 0 -genus_guaiacum%1:20:00:: 12721864 1 0 -genus_guevina%1:20:00:: 12216836 1 0 -genus_gulo%1:05:00:: 02449060 1 0 -genus_gutierrezia%1:20:00:: 11973888 1 0 -genus_gymnadenia%1:20:00:: 12064183 1 0 -genus_gymnadeniopsis%1:20:00:: 12064814 1 0 -genus_gymnelis%1:05:00:: 02617689 1 0 -genus_gymnocalycium%1:20:00:: 11847414 1 0 -genus_gymnocarpium%1:20:00:: 13197085 1 0 -genus_gymnocladus%1:20:00:: 12496207 1 0 -genus_gymnogyps%1:05:00:: 01620003 1 0 -genus_gymnopilus%1:20:00:: 13076181 1 0 -genus_gymnorhina%1:05:00:: 01583636 1 0 -genus_gymnosporangium%1:20:00:: 13065215 1 0 -genus_gymnura%1:05:00:: 01498577 1 0 -genus_gynura%1:20:00:: 11975100 1 0 -genus_gypaetus%1:05:00:: 01617289 1 0 -genus_gyps%1:05:00:: 01616970 1 0 -genus_gypsophila%1:20:00:: 11810190 1 0 -genus_gyromitra%1:20:00:: 13037124 1 0 -genus_haastia%1:20:00:: 11975482 1 0 -genus_habenaria%1:20:00:: 12064996 1 0 -genus_hackelia%1:20:00:: 12819953 1 0 -genus_haemanthus%1:20:00:: 12420335 1 0 -genus_haematobia%1:05:00:: 02199352 1 0 -genus_haematopus%1:05:00:: 02036982 1 0 -genus_haematoxylon%1:20:00:: 12496735 1 0 -genus_haematoxylum%1:20:00:: 12496735 1 0 -genus_haemodorum%1:20:00:: 12312276 1 0 -genus_haemopis%1:05:00:: 01938618 1 0 -genus_haemoproteus%1:05:00:: 01424938 1 0 -genus_haemulon%1:05:00:: 02588580 1 0 -genus_hakea%1:20:00:: 12218621 1 0 -genus_halcyon%1:05:00:: 01828397 1 0 -genus_haldea%1:05:00:: 01736696 1 0 -genus_halenia%1:20:00:: 12297678 1 0 -genus_halesia%1:20:00:: 12778045 1 0 -genus_haliaeetus%1:05:00:: 01614769 1 0 -genus_halicoeres%1:05:00:: 02608708 1 0 -genus_halimodendron%1:20:00:: 12533588 1 0 -genus_haliotis%1:05:00:: 01942724 1 0 -genus_halocarpus%1:20:00:: 11655407 1 0 -genus_halogeton%1:20:00:: 11833577 1 0 -genus_hamamelidanthum%1:20:00:: 12313735 1 0 -genus_hamamelidoxylon%1:20:00:: 12313954 1 0 -genus_hamamelis%1:20:00:: 12314652 1 0 -genus_hamamelites%1:20:00:: 12314146 1 0 -genus_hamelia%1:20:00:: 12667817 1 0 -genus_haminoea%1:05:00:: 01951845 1 0 -genus_haplopappus%1:20:00:: 11975853 1 0 -genus_hardenbergia%1:20:00:: 12533992 1 0 -genus_harpia%1:05:00:: 01613909 1 0 -genus_harpullia%1:20:00:: 12743680 1 0 -genus_harrisia%1:20:00:: 11847615 1 0 -genus_hatiora%1:20:00:: 11847841 1 0 -genus_hazardia%1:20:00:: 11976715 1 0 -genus_hedeoma%1:20:00:: 12847749 1 0 -genus_hedera%1:20:00:: 11798851 1 0 -genus_hedysarum%1:20:00:: 12534453 1 0 -genus_helenium%1:20:00:: 11977125 1 0 -genus_heleodytes%1:05:00:: 01586170 1 0 -genus_heliamphora%1:20:00:: 12781241 1 0 -genus_helianthemum%1:20:00:: 12375294 1 0 -genus_helianthus%1:20:00:: 11978035 1 0 -genus_helichrysum%1:20:00:: 11980088 1 0 -genus_helicteres%1:20:00:: 12199030 1 0 -genus_heliobacter%1:05:00:: 01351453 1 0 -genus_heliophila%1:20:00:: 11888271 1 0 -genus_heliopsis%1:20:00:: 11980577 1 0 -genus_heliothis%1:05:00:: 02296480 1 0 -genus_helipterum%1:20:00:: 11980867 1 0 -genus_helix%1:05:00:: 01944617 1 0 -genus_helleborus%1:20:00:: 11733769 1 0 -genus_helminthostachys%1:20:00:: 12961689 1 0 -genus_heloderma%1:05:00:: 01692143 1 0 -genus_helotium%1:20:00:: 12967656 1 0 -genus_helvella%1:20:00:: 13035521 1 0 -genus_helwingia%1:20:00:: 12949549 1 0 -genus_helxine%1:20:00:: 12393527 1 0 -genus_hemachatus%1:05:00:: 01749141 1 0 -genus_hemerocallis%1:20:00:: 12456527 1 0 -genus_hemigalus%1:05:00:: 02137172 1 0 -genus_hemigrammus%1:05:00:: 02583768 1 0 -genus_hemipteronatus%1:05:00:: 02609466 1 0 -genus_hemitripterus%1:05:00:: 02645823 1 0 -genus_hepatica%1:20:00:: 11734872 1 0 -genus_heracleum%1:20:00:: 12939664 1 0 -genus_heritiera%1:20:00:: 12199564 1 0 -genus_hermannia%1:20:00:: 12200315 1 0 -genus_hermissenda%1:05:00:: 01951472 1 0 -genus_hernaria%1:20:00:: 11810559 1 0 -genus_herpestes%1:05:00:: 02137428 1 0 -genus_herrerasaurus%1:05:00:: 01714686 1 0 -genus_hesperiphona%1:05:00:: 01540432 1 0 -genus_hesperis%1:20:00:: 11888621 1 0 -genus_heteranthera%1:20:00:: 12610609 1 0 -genus_heterocephalus%1:05:00:: 02369424 1 0 -genus_heterodon%1:05:00:: 01729133 1 0 -genus_heteromeles%1:20:00:: 12632875 1 0 -genus_heteroscelus%1:05:00:: 02030442 1 0 -genus_heterotheca%1:20:00:: 11981314 1 0 -genus_heuchera%1:20:00:: 12798041 1 0 -genus_hevea%1:20:00:: 12925836 1 0 -genus_hexagrammos%1:05:00:: 02648769 1 0 -genus_hexalectris%1:20:00:: 12068824 1 0 -genus_hexamita%1:05:00:: 01420164 1 0 -genus_hexanchus%1:05:00:: 01482887 1 0 -genus_hibbertia%1:20:00:: 12363580 1 0 -genus_hibiscus%1:20:00:: 12177592 1 0 -genus_hieracium%1:20:00:: 11981817 1 0 -genus_himantoglossum%1:20:00:: 12069488 1 0 -genus_himantopus%1:05:00:: 02034394 1 0 -genus_hippeastrum%1:20:00:: 12420991 1 0 -genus_hippobosca%1:05:00:: 02198714 1 0 -genus_hippocampus%1:05:00:: 01456631 1 0 -genus_hippocrepis%1:20:00:: 12535101 1 0 -genus_hippodamia%1:05:00:: 02166436 1 0 -genus_hippoglossoides%1:05:00:: 02659961 1 0 -genus_hippoglossus%1:05:00:: 02660412 1 0 -genus_hippopotamus%1:05:00:: 02398386 1 0 -genus_hipposideros%1:05:00:: 02143759 1 0 -genus_hippotragus%1:05:00:: 02425756 1 0 -genus_hipsurus%1:05:00:: 02571034 1 0 -genus_hirudo%1:05:00:: 01938312 1 0 -genus_hirundo%1:05:00:: 01594611 1 0 -genus_hoheria%1:20:00:: 12180714 1 0 -genus_holarrhena%1:20:00:: 11772702 1 0 -genus_holbrookia%1:05:00:: 01679178 1 0 -genus_holcus%1:20:00:: 12122581 1 0 -genus_holocentrus%1:05:00:: 01450453 1 0 -genus_holothuria%1:05:00:: 02321903 1 0 -genus_homarus%1:05:00:: 01983277 1 0 -genus_homo%1:05:00:: 02472012 1 0 -genus_homogyne%1:20:00:: 11982724 1 0 -genus_homona%1:05:00:: 02284513 1 0 -genus_hordeum%1:20:00:: 12123050 1 0 -genus_horneophyton%1:20:00:: 13218504 1 0 -genus_hosta%1:20:00:: 12457519 1 0 -genus_hottonia%1:20:00:: 12094121 1 0 -genus_houttuynia%1:20:00:: 13152592 1 0 -genus_hovea%1:20:00:: 12535461 1 0 -genus_hoya%1:20:00:: 13236726 1 0 -genus_hudsonia%1:20:00:: 12376382 1 0 -genus_hugueninia%1:20:00:: 11889078 1 0 -genus_hulsea%1:20:00:: 11983160 1 0 -genus_humulus%1:20:00:: 12397594 1 0 -genus_hunnemania%1:20:00:: 11905989 1 0 -genus_hyacinthoides%1:20:00:: 12459048 1 0 -genus_hyacinthus%1:20:00:: 12458224 1 0 -genus_hyaena%1:05:00:: 02117369 1 0 -genus_hyalophora%1:05:00:: 02303167 1 0 -genus_hyalosperma%1:20:00:: 11983739 1 0 -genus_hybanthus%1:20:00:: 12390914 1 0 -genus_hydnocarpus%1:20:00:: 12379278 1 0 -genus_hydnum%1:20:00:: 12986337 1 0 -genus_hydra%1:05:00:: 01912050 1 0 -genus_hydrangea%1:20:00:: 12787846 1 0 -genus_hydrastis%1:20:00:: 11735325 1 0 -genus_hydrilla%1:20:00:: 12613596 1 0 -genus_hydrobates%1:05:00:: 02061073 1 0 -genus_hydrocharis%1:20:00:: 12613285 1 0 -genus_hydrochoerus%1:05:00:: 02365356 1 0 -genus_hydrodamalis%1:05:00:: 02074542 1 0 -genus_hydromantes%1:05:00:: 01637796 1 0 -genus_hydromys%1:05:00:: 02335007 1 0 -genus_hydrophyllum%1:20:00:: 12834671 1 0 -genus_hyemoschus%1:05:00:: 02436514 1 0 -genus_hygrocybe%1:20:00:: 13070708 1 0 -genus_hygrophorus%1:20:00:: 13071029 1 0 -genus_hygrotrama%1:20:00:: 13073211 1 0 -genus_hyla%1:05:00:: 01650509 1 0 -genus_hylactophryne%1:05:00:: 01643374 1 0 -genus_hylobates%1:05:00:: 02483224 1 0 -genus_hylocereus%1:20:00:: 11848253 1 0 -genus_hylocichla%1:05:00:: 01559294 1 0 -genus_hylophylax%1:05:00:: 01553879 1 0 -genus_hymenaea%1:20:00:: 11750359 1 0 -genus_hymenanthera%1:20:00:: 12391111 1 0 -genus_hymenophyllum%1:20:00:: 12951668 1 0 -genus_hynerpeton%1:05:00:: 01627786 1 0 -genus_hyoscyamus%1:20:00:: 12904148 1 0 -genus_hypentelium%1:05:00:: 01445718 1 0 -genus_hypericum%1:20:00:: 12367306 1 0 -genus_hyperoglyphe%1:05:00:: 02635013 1 0 -genus_hyperoodon%1:05:00:: 02068408 1 0 -genus_hyphantria%1:05:00:: 02308325 1 0 -genus_hypochaeris%1:20:00:: 11983910 1 0 -genus_hypochoeris%1:20:00:: 11983910 1 0 -genus_hypoderma%1:05:00:: 02194887 1 0 -genus_hypopachus%1:05:00:: 01653384 1 0 -genus_hypopitys%1:20:00:: 12259122 1 0 -genus_hypoxis%1:20:00:: 12422931 1 0 -genus_hypsiglena%1:05:00:: 01740005 1 0 -genus_hypsiprymnodon%1:05:00:: 01879701 1 0 -genus_hyracotherium%1:05:00:: 02375592 1 0 -genus_hyssopus%1:20:00:: 12848343 1 0 -genus_iberis%1:20:00:: 11889473 1 0 -genus_ibero-mesornis%1:05:00:: 01516878 1 0 -genus_ibis%1:05:00:: 02005962 1 0 -genus_ichthyosaurus%1:05:00:: 01724703 1 0 -genus_ichthyostega%1:05:00:: 01628148 1 0 -genus_ictalurus%1:05:00:: 02519576 1 0 -genus_icteria%1:05:00:: 01569713 1 0 -genus_icterus%1:05:00:: 01572174 1 0 -genus_ictiobus%1:05:00:: 01445305 1 0 -genus_ictonyx%1:05:00:: 02444103 1 0 -genus_idesia%1:20:00:: 12380197 1 0 -genus_iguana%1:05:00:: 01677242 1 0 -genus_iguanodon%1:05:00:: 01707566 1 0 -genus_ilex%1:20:00:: 12756862 1 0 -genus_iliamna%1:20:00:: 12181147 1 0 -genus_illecebrum%1:20:00:: 11810918 1 0 -genus_illicium%1:20:00:: 11708442 1 0 -genus_impatiens%1:20:00:: 12684153 1 0 -genus_inachis%1:05:00:: 02279127 1 0 -genus_indigofera%1:20:00:: 12535820 1 0 -genus_indri%1:05:00:: 02500144 1 0 -genus_inga%1:20:00:: 11761484 1 0 -genus_inula%1:20:00:: 11984397 1 0 -genus_ipomoea%1:20:00:: 12826395 1 0 -genus_irena%1:05:00:: 01593857 1 0 -genus_iresine%1:20:00:: 11826416 1 0 -genus_iridoprocne%1:05:00:: 01595330 1 0 -genus_iris%1:20:00:: 12411710 1 0 -genus_irvingia%1:20:00:: 12717524 1 0 -genus_isatis%1:20:00:: 11889847 1 0 -genus_ischigualastia%1:05:00:: 01721269 1 0 -genus_isoetes%1:20:00:: 13226135 1 0 -genus_isopyrum%1:20:00:: 11735822 1 0 -genus_istiophorus%1:05:00:: 02630468 1 0 -genus_isurus%1:05:00:: 01483980 1 0 -genus_iva%1:20:00:: 11984854 1 0 -genus_ixia%1:20:00:: 12417686 1 0 -genus_ixobrychus%1:05:00:: 02012063 1 0 -genus_ixodes%1:05:00:: 01777032 1 0 -genus_jabiru%1:05:00:: 02003735 1 0 -genus_jacksonia%1:20:00:: 12536455 1 0 -genus_jacquinia%1:20:00:: 12099803 1 0 -genus_jaculus%1:05:00:: 02352175 1 0 -genus_jambos%1:20:00:: 12332718 1 0 -genus_jamesonia%1:20:00:: 13211179 1 0 -genus_jasminum%1:20:00:: 12306519 1 0 -genus_jatropha%1:20:00:: 12925394 1 0 -genus_javanthropus%1:05:00:: 02474282 1 0 -genus_jordanella%1:05:00:: 01447822 1 0 -genus_juglans%1:20:00:: 12318164 1 0 -genus_junco%1:05:00:: 01534321 1 0 -genus_juncus%1:20:00:: 11743570 1 0 -genus_juniperus%1:20:00:: 11636389 1 0 -genus_jynx%1:05:00:: 01841569 1 0 -genus_kakatoe%1:05:00:: 01818959 1 0 -genus_kalmia%1:20:00:: 12237350 1 0 -genus_kalotermes%1:05:00:: 02225407 1 0 -genus_katsuwonus%1:05:00:: 02628856 1 0 -genus_kennedia%1:20:00:: 12536665 1 0 -genus_kennedya%1:20:00:: 12536665 1 0 -genus_kenyapithecus%1:05:00:: 02478990 1 0 -genus_keteleeria%1:20:00:: 11645041 1 0 -genus_khaya%1:20:00:: 12698905 1 0 -genus_kiggelaria%1:20:00:: 12380597 1 0 -genus_kinosternon%1:05:00:: 01666967 1 0 -genus_kirkia%1:20:00:: 12717914 1 0 -genus_klebsiella%1:05:00:: 01368552 1 0 -genus_knightia%1:20:00:: 12219495 1 0 -genus_kniphofia%1:20:00:: 12437311 1 0 -genus_kobus%1:05:00:: 02427337 1 0 -genus_kochia%1:20:00:: 11831730 1 0 -genus_koellia%1:20:00:: 12863458 1 0 -genus_kogia%1:05:00:: 02067462 1 0 -genus_kohleria%1:20:00:: 12832690 1 0 -genus_kolkwitzia%1:20:00:: 12672497 1 0 -genus_kosteletzya%1:20:00:: 12181851 1 0 -genus_krigia%1:20:00:: 11985586 1 0 -genus_krypterophaneron%1:05:00:: 01452051 1 0 -genus_kyphosus%1:05:00:: 02604342 1 0 -genus_lablab%1:20:00:: 12537437 1 0 -genus_laburnum%1:20:00:: 12537988 1 0 -genus_laccopetalum%1:20:00:: 11736216 1 0 -genus_lacerta%1:05:00:: 01693020 1 0 -genus_lachnolaimus%1:05:00:: 02608429 1 0 -genus_lactarius%1:20:00:: 13006377 1 0 -genus_lactobacillus%1:05:00:: 01379954 1 0 -genus_lactophrys%1:05:00:: 02654609 1 0 -genus_lactuca%1:20:00:: 11986091 1 0 -genus_laelia%1:20:00:: 12069821 1 0 -genus_lagarostrobus%1:20:00:: 11655764 1 0 -genus_lagenaria%1:20:00:: 12166003 1 0 -genus_lagenophera%1:20:00:: 11987722 1 0 -genus_lagerstroemia%1:20:00:: 12329020 1 0 -genus_lagidium%1:05:00:: 02367678 1 0 -genus_lagodon%1:05:00:: 02592244 1 0 -genus_lagopus%1:05:00:: 01796222 1 0 -genus_lagorchestes%1:05:00:: 01878203 1 0 -genus_lagostomus%1:05:00:: 02367993 1 0 -genus_lagothrix%1:05:00:: 02494257 1 0 -genus_laguncularia%1:20:00:: 12325093 1 0 -genus_lama%1:05:00:: 02437825 1 0 -genus_lambertia%1:20:00:: 12219875 1 0 -genus_lambis%1:05:00:: 01943367 1 0 -genus_laminaria%1:05:00:: 01403284 1 0 -genus_lamium%1:20:00:: 12848870 1 0 -genus_lamna%1:05:00:: 01483707 1 0 -genus_lampris%1:05:00:: 02545687 1 0 -genus_lampropeltis%1:05:00:: 01734273 1 0 -genus_languas%1:20:00:: 12356668 1 0 -genus_lanius%1:05:00:: 01598820 1 0 -genus_lansium%1:20:00:: 12699157 1 0 -genus_lanthanotus%1:05:00:: 01691525 1 0 -genus_laportea%1:20:00:: 12393942 1 0 -genus_lappula%1:20:00:: 12819953 1 0 -genus_lardizabala%1:20:00:: 11703205 1 0 -genus_larix%1:20:00:: 11618750 1 0 -genus_larrea%1:20:00:: 12722884 1 0 -genus_larus%1:05:00:: 02041492 1 0 -genus_lasiocampa%1:05:00:: 02306672 1 0 -genus_lasiurus%1:05:00:: 02146064 1 0 -genus_lasthenia%1:20:00:: 11987956 1 0 -genus_lastreopsis%1:20:00:: 13197670 1 0 -genus_lates%1:05:00:: 02560383 1 0 -genus_lathyrus%1:20:00:: 12538603 1 0 -genus_latimeria%1:05:00:: 02515560 1 0 -genus_latrodectus%1:05:00:: 01774252 1 0 -genus_laurus%1:20:00:: 11703935 1 0 -genus_lavandula%1:20:00:: 12849597 1 0 -genus_lavatera%1:20:00:: 12182414 1 0 -genus_layia%1:20:00:: 11988419 1 0 -genus_lebistes%1:05:00:: 01448496 1 0 -genus_lecanopteris%1:20:00:: 13175847 1 0 -genus_lecanora%1:20:00:: 12987993 1 0 -genus_leccinum%1:20:00:: 13058447 1 0 -genus_ledum%1:20:00:: 12238306 1 0 -genus_leiopelma%1:05:00:: 01645278 1 0 -genus_leiophyllum%1:20:00:: 12239100 1 0 -genus_leipoa%1:05:00:: 01801371 1 0 -genus_leishmania%1:05:00:: 01418498 1 0 -genus_leitneria%1:20:00:: 11742745 1 0 -genus_lemaireocereus%1:20:00:: 11848610 1 0 -genus_lemmus%1:05:00:: 02344785 1 0 -genus_lemna%1:20:00:: 11794791 1 0 -genus_lemur%1:05:00:: 02497550 1 0 -genus_lens%1:20:00:: 12544027 1 0 -genus_lentinus%1:20:00:: 13001743 1 0 -genus_leonotis%1:20:00:: 12850718 1 0 -genus_leontideus%1:05:00:: 02490964 1 0 -genus_leontocebus%1:05:00:: 02490964 1 0 -genus_leontodon%1:20:00:: 11988774 1 0 -genus_leontopodium%1:20:00:: 11989266 1 0 -genus_leonurus%1:20:00:: 12851304 1 0 -genus_lepas%1:05:00:: 01999048 1 0 -genus_lepechinia%1:20:00:: 12851673 1 0 -genus_lepidium%1:20:00:: 11890329 1 0 -genus_lepidobotrys%1:20:00:: 12701491 1 0 -genus_lepidochelys%1:05:00:: 01664244 1 0 -genus_lepidocybium%1:05:00:: 02622408 1 0 -genus_lepidothamnus%1:20:00:: 11656380 1 0 -genus_lepiota%1:20:00:: 13013187 1 0 -genus_lepisma%1:05:00:: 02270473 1 0 -genus_lepisosteus%1:05:00:: 02641215 1 0 -genus_lepomis%1:05:00:: 02563497 1 0 -genus_leptarrhena%1:20:00:: 12799119 1 0 -genus_leptinotarsa%1:05:00:: 02169833 1 0 -genus_leptodactylus%1:05:00:: 01643687 1 0 -genus_leptoglossus%1:05:00:: 02239934 1 0 -genus_leptopteris%1:20:00:: 12954185 1 0 -genus_leptoptilus%1:05:00:: 02002875 1 0 -genus_leptospira%1:05:00:: 01383332 1 0 -genus_leptotyphlops%1:05:00:: 01740721 1 0 -genus_lepus%1:05:00:: 02326237 1 0 -genus_lespedeza%1:20:00:: 12542649 1 0 -genus_lesquerella%1:20:00:: 11890723 1 0 -genus_leucadendron%1:20:00:: 12220247 1 0 -genus_leucaena%1:20:00:: 11762237 1 0 -genus_leucanthemum%1:20:00:: 11989636 1 0 -genus_leuciscus%1:05:00:: 01440949 1 0 -genus_leucocytozoan%1:05:00:: 01425076 1 0 -genus_leucocytozoon%1:05:00:: 01425076 1 0 -genus_leucogenes%1:20:00:: 11990804 1 0 -genus_leucothoe%1:20:00:: 12239458 1 0 -genus_levisticum%1:20:00:: 12940060 1 0 -genus_lewisia%1:20:00:: 11859981 1 0 -genus_leycesteria%1:20:00:: 12672843 1 0 -genus_leymus%1:20:00:: 12124358 1 0 -genus_liatris%1:20:00:: 11991080 1 0 -genus_libocedrus%1:20:00:: 11638902 1 0 -genus_lichanura%1:05:00:: 01742680 1 0 -genus_ligularia%1:20:00:: 11991993 1 0 -genus_ligustrum%1:20:00:: 12307611 1 0 -genus_lilium%1:20:00:: 12426100 1 0 -genus_limanda%1:05:00:: 02658944 1 0 -genus_limax%1:05:00:: 01945580 1 0 -genus_limenitis%1:05:00:: 02276527 1 0 -genus_limnobium%1:20:00:: 12613968 1 0 -genus_limnocryptes%1:05:00:: 02032646 1 0 -genus_limnodromus%1:05:00:: 02032915 1 0 -genus_limonium%1:20:00:: 12099220 1 0 -genus_limosa%1:05:00:: 02034016 1 0 -genus_limulus%1:05:00:: 01787693 1 0 -genus_linanthus%1:20:00:: 12811294 1 0 -genus_linaria%1:20:00:: 12883923 1 0 -genus_lindera%1:20:00:: 11705921 1 0 -genus_lindheimera%1:20:00:: 11992340 1 0 -genus_linnaea%1:20:00:: 12673178 1 0 -genus_linum%1:20:00:: 12486397 1 0 -genus_liomys%1:05:00:: 02349730 1 0 -genus_liopelma%1:05:00:: 01645278 1 0 -genus_liparis%1:05:00:: 02647144 2 0 -genus_liparis%1:20:00:: 12070177 1 0 -genus_liposcelis%1:05:00:: 02261286 1 0 -genus_liquidambar%1:20:00:: 12316300 1 0 -genus_liriodendron%1:20:00:: 11712153 1 0 -genus_liriope%1:20:00:: 12473011 1 0 -genus_listera%1:20:00:: 12070950 1 0 -genus_listeria%1:05:00:: 01366881 1 0 -genus_litchi%1:20:00:: 12744277 1 0 -genus_lithocarpus%1:20:00:: 12265266 1 0 -genus_lithophragma%1:20:00:: 12799580 1 0 -genus_lithops%1:20:00:: 11820323 1 0 -genus_lithospermum%1:20:00:: 12820434 1 0 -genus_litocranius%1:05:00:: 02420675 1 0 -genus_littorina%1:05:00:: 01948284 1 0 -genus_livistona%1:20:00:: 12591195 1 0 -genus_loasa%1:20:00:: 12035064 1 0 -genus_lobelia%1:20:00:: 12168385 1 0 -genus_lobipes%1:05:00:: 02038010 1 0 -genus_lobotes%1:05:00:: 02636035 1 0 -genus_lobularia%1:20:00:: 11891050 1 0 -genus_locusta%1:05:00:: 02227119 1 0 -genus_lofortyx%1:05:00:: 01806740 1 0 -genus_logania%1:20:00:: 12485331 1 0 -genus_loiseleuria%1:20:00:: 12240335 1 0 -genus_loligo%1:05:00:: 01971517 1 0 -genus_lolium%1:20:00:: 12124505 1 0 -genus_lomatia%1:20:00:: 12220654 1 0 -genus_lomogramma%1:20:00:: 13203115 1 0 -genus_lonas%1:20:00:: 11992674 1 0 -genus_lonchocarpus%1:20:00:: 12544646 1 0 -genus_lonicera%1:20:00:: 12673755 1 0 -genus_lophius%1:05:00:: 02548128 1 0 -genus_lophodytes%1:05:00:: 01855343 1 0 -genus_lopholatilus%1:05:00:: 02573075 1 0 -genus_lophophora%1:20:00:: 11849017 1 0 -genus_lophophorus%1:05:00:: 01805199 1 0 -genus_lophosoria%1:20:00:: 13203405 1 0 -genus_loranthus%1:20:00:: 12737745 1 0 -genus_loris%1:05:00:: 02498620 1 0 -genus_lota%1:05:00:: 02523338 1 0 -genus_lotus%1:20:00:: 12545090 1 0 -genus_lovoa%1:20:00:: 12699485 1 0 -genus_loxia%1:05:00:: 01533780 1 0 -genus_loxodonta%1:05:00:: 02504323 1 0 -genus_loxoma%1:20:00:: 13203708 1 0 -genus_loxostege%1:05:00:: 02308852 1 0 -genus_lucilia%1:05:00:: 02192127 1 0 -genus_lufengpithecus%1:05:00:: 02478539 1 0 -genus_luffa%1:20:00:: 12166312 1 0 -genus_lumpenus%1:05:00:: 02615829 1 0 -genus_lunaria%1:20:00:: 11891395 1 0 -genus_lunda%1:05:00:: 02048242 1 0 -genus_lupinus%1:20:00:: 12546015 1 0 -genus_luscinia%1:05:00:: 01559964 1 0 -genus_lutjanus%1:05:00:: 02586865 1 0 -genus_lutra%1:05:00:: 02444647 1 0 -genus_luvarus%1:05:00:: 02632359 1 0 -genus_lycaena%1:05:00:: 02281987 1 0 -genus_lycaeon%1:05:00:: 02116630 1 0 -genus_lychnis%1:20:00:: 11811308 1 0 -genus_lycium%1:20:00:: 12904720 1 0 -genus_lycoperdon%1:20:00:: 13043746 1 0 -genus_lycopersicon%1:20:00:: 12905655 1 0 -genus_lycopersicum%1:20:00:: 12905655 1 0 -genus_lycopodium%1:20:00:: 13222669 1 0 -genus_lycopus%1:20:00:: 12852049 1 0 -genus_lycosa%1:05:00:: 01775230 1 0 -genus_lyginopteris%1:20:00:: 11605396 1 0 -genus_lygodium%1:20:00:: 12956029 1 0 -genus_lygus%1:05:00:: 02238113 1 0 -genus_lymantria%1:05:00:: 02285909 1 0 -genus_lynx%1:05:00:: 02126951 1 0 -genus_lyonia%1:20:00:: 12240715 1 0 -genus_lyrurus%1:05:00:: 01795425 1 0 -genus_lysichiton%1:20:00:: 11788926 1 0 -genus_lysichitum%1:20:00:: 11788926 1 0 -genus_lysiloma%1:20:00:: 11762706 1 0 -genus_lysimachia%1:20:00:: 12094786 1 0 -genus_lythrum%1:20:00:: 12328241 1 0 -genus_macaca%1:05:00:: 02487217 1 0 -genus_macadamia%1:20:00:: 12220994 1 0 -genus_machaeranthera%1:20:00:: 11993007 1 0 -genus_macleaya%1:20:00:: 11906359 1 0 -genus_maclura%1:20:00:: 12399784 1 0 -genus_macowanites%1:20:00:: 13048212 1 0 -genus_macrocephalon%1:05:00:: 01802033 1 0 -genus_macrocheira%1:05:00:: 01982211 1 0 -genus_macroclemys%1:05:00:: 01666431 1 0 -genus_macrodactylus%1:05:00:: 02174870 1 0 -genus_macronectes%1:05:00:: 02059723 1 0 -genus_macropus%1:05:00:: 01877407 1 0 -genus_macrothelypteris%1:20:00:: 13229018 1 0 -genus_macrotis%1:05:00:: 01876535 1 0 -genus_macrotus%1:05:00:: 02142295 1 0 -genus_macrotyloma%1:20:00:: 12547658 1 0 -genus_macrozamia%1:20:00:: 11603630 1 0 -genus_macrozoarces%1:05:00:: 02617956 1 0 -genus_madia%1:20:00:: 11993932 1 0 -genus_madoqua%1:05:00:: 02421612 1 0 -genus_maeandra%1:05:00:: 01917167 1 0 -genus_magicicada%1:05:00:: 02257149 1 0 -genus_magnolia%1:20:00:: 11709450 1 0 -genus_mahonia%1:20:00:: 11699283 1 0 -genus_maia%1:05:00:: 01981884 1 0 -genus_maianthemum%1:20:00:: 12473405 1 0 -genus_maja%1:05:00:: 01981884 1 0 -genus_majorana%1:20:00:: 12852930 1 0 -genus_makaira%1:05:00:: 02630926 1 0 -genus_malaclemys%1:05:00:: 01667959 1 0 -genus_malacosoma%1:05:00:: 02307007 1 0 -genus_malacothamnus%1:20:00:: 12182858 1 0 -genus_malaxis%1:20:00:: 12071965 1 0 -genus_malcolmia%1:20:00:: 11891838 1 0 -genus_mallotus%1:05:00:: 02541139 1 0 -genus_malope%1:20:00:: 12183318 1 0 -genus_malopterurus%1:05:00:: 02518488 1 0 -genus_malosma%1:20:00:: 12760722 1 0 -genus_malpighia%1:20:00:: 12694193 1 0 -genus_malus%1:20:00:: 12633386 1 0 -genus_malva%1:20:00:: 12170415 1 0 -genus_malvastrum%1:20:00:: 12183636 1 0 -genus_malvaviscus%1:20:00:: 12183916 1 0 -genus_mammea%1:20:00:: 12370011 1 0 -genus_mammillaria%1:20:00:: 11849666 1 0 -genus_mammut%1:05:00:: 02505809 1 0 -genus_mammuthus%1:05:00:: 02504635 1 0 -genus_mandevilla%1:20:00:: 11773138 1 0 -genus_mandragora%1:20:00:: 12906334 1 0 -genus_mandrillus%1:05:00:: 02486787 1 0 -genus_manduca%1:05:00:: 02298833 1 0 -genus_mangifera%1:20:00:: 12761123 1 0 -genus_manglietia%1:20:00:: 11711971 1 0 -genus_manihot%1:20:00:: 12926316 1 0 -genus_manilkara%1:20:00:: 12774127 1 0 -genus_manis%1:05:00:: 02461701 1 0 -genus_manta%1:05:00:: 01500360 1 0 -genus_mantis%1:05:00:: 02235911 1 0 -genus_maranta%1:20:00:: 12351477 1 0 -genus_marasmius%1:20:00:: 13006741 1 0 -genus_marattia%1:20:00:: 13215063 1 0 -genus_marchantia%1:20:00:: 11543792 1 0 -genus_marmota%1:05:00:: 02361222 1 0 -genus_marrubium%1:20:00:: 12853901 1 0 -genus_marsilea%1:20:00:: 12957467 1 0 -genus_martes%1:05:00:: 02449921 1 0 -genus_martynia%1:20:00:: 12873834 1 0 -genus_masdevallia%1:20:00:: 12072419 1 0 -genus_masticophis%1:05:00:: 01731418 1 0 -genus_mastigoproctus%1:05:00:: 01771624 1 0 -genus_mastodon%1:05:00:: 02505809 1 0 -genus_mastotermes%1:05:00:: 02224466 1 0 -genus_matricaria%1:20:00:: 11994827 1 0 -genus_matteuccia%1:20:00:: 13197800 1 0 -genus_matthiola%1:20:00:: 11892460 1 0 -genus_maxillaria%1:20:00:: 12073007 1 0 -genus_maxostoma%1:05:00:: 01445998 1 0 -genus_mayaca%1:20:00:: 12608620 1 0 -genus_mayetiola%1:05:00:: 02189535 1 0 -genus_mazama%1:05:00:: 02434598 1 0 -genus_meconopsis%1:20:00:: 11906713 1 0 -genus_medicago%1:20:00:: 12548134 1 0 -genus_medinilla%1:20:00:: 12349491 1 0 -genus_megachile%1:05:00:: 02211283 1 0 -genus_megaderma%1:05:00:: 02144792 1 0 -genus_megalobatrachus%1:05:00:: 01633578 1 0 -genus_megalosaurus%1:05:00:: 01715383 1 0 -genus_megaptera%1:05:00:: 02065599 1 0 -genus_megatherium%1:05:00:: 02458675 1 0 -genus_melampodium%1:20:00:: 11995683 1 0 -genus_melampsora%1:20:00:: 13063936 1 0 -genus_melanerpes%1:05:00:: 01840643 1 0 -genus_melanitta%1:05:00:: 01853379 1 0 -genus_melanogrammus%1:05:00:: 02523750 1 0 -genus_melanoplus%1:05:00:: 02227430 1 0 -genus_melanotis%1:05:00:: 01587148 1 0 -genus_melastoma%1:20:00:: 12349091 1 0 -genus_meleagris%1:05:00:: 01793988 1 0 -genus_meles%1:05:00:: 02447896 1 0 -genus_melia%1:20:00:: 12695760 1 0 -genus_melicocca%1:20:00:: 12744656 1 0 -genus_melicoccus%1:20:00:: 12744656 1 0 -genus_melicytus%1:20:00:: 12391280 1 0 -genus_melilotus%1:20:00:: 11750855 1 0 -genus_melissa%1:20:00:: 12854443 1 0 -genus_mellivora%1:05:00:: 02448200 1 0 -genus_melocactus%1:20:00:: 11850136 1 0 -genus_melogale%1:05:00:: 02448502 1 0 -genus_melolontha%1:05:00:: 02174521 1 0 -genus_melophagus%1:05:00:: 02198996 1 0 -genus_melopsittacus%1:05:00:: 01821727 1 0 -genus_melospiza%1:05:00:: 01536474 1 0 -genus_melursus%1:05:00:: 02134240 1 0 -genus_menippe%1:05:00:: 01977366 1 0 -genus_meniscium%1:20:00:: 13229227 1 0 -genus_menispermum%1:20:00:: 11713034 1 0 -genus_menopon%1:05:00:: 02185694 1 0 -genus_mentha%1:20:00:: 12854925 1 0 -genus_menticirrhus%1:05:00:: 02597173 1 0 -genus_mentzelia%1:20:00:: 12035423 1 0 -genus_menura%1:05:00:: 01545425 1 0 -genus_menyanthes%1:20:00:: 12484612 1 0 -genus_menziesia%1:20:00:: 12241699 1 0 -genus_mephitis%1:05:00:: 02446014 1 0 -genus_mercenaria%1:05:00:: 01957923 1 0 -genus_mercurialis%1:20:00:: 12923839 1 0 -genus_mergus%1:05:00:: 01854223 1 0 -genus_meriones%1:05:00:: 02344006 1 0 -genus_merlangus%1:05:00:: 02522990 1 0 -genus_merluccius%1:05:00:: 02524424 1 0 -genus_merops%1:05:00:: 01828856 1 0 -genus_mertensia%1:20:00:: 12821257 1 0 -genus_meryta%1:20:00:: 11799158 1 0 -genus_mesembryanthemum%1:20:00:: 11820751 1 0 -genus_mesocricetus%1:05:00:: 02343187 1 0 -genus_mesohippus%1:05:00:: 02376016 1 0 -genus_mespilus%1:20:00:: 12636107 1 0 -genus_mesua%1:20:00:: 12370384 1 0 -genus_metasequoia%1:20:00:: 11639863 1 0 -genus_metroxylon%1:20:00:: 12591523 1 0 -genus_microcentrum%1:05:00:: 02228215 1 0 -genus_micrococcus%1:05:00:: 01379116 1 0 -genus_microdipodops%1:05:00:: 02350537 1 0 -genus_microgramma%1:20:00:: 13176201 1 0 -genus_micromeria%1:20:00:: 12857024 1 0 -genus_micromyx%1:05:00:: 02332315 1 0 -genus_micropogonias%1:05:00:: 02596592 1 0 -genus_micropterus%1:05:00:: 02564572 1 0 -genus_microsorium%1:20:00:: 13176523 1 0 -genus_microsporum%1:20:00:: 13078652 1 0 -genus_microstomus%1:05:00:: 02659667 1 0 -genus_microstrobos%1:20:00:: 11656974 1 0 -genus_microtus%1:05:00:: 02341108 1 0 -genus_micruroides%1:05:00:: 01746063 1 0 -genus_micrurus%1:05:00:: 01745780 1 0 -genus_mikania%1:20:00:: 11996092 1 0 -genus_millettia%1:20:00:: 12549649 1 0 -genus_miltonia%1:20:00:: 12073410 1 0 -genus_mimosa%1:20:00:: 11754633 1 0 -genus_mimus%1:05:00:: 01586791 1 0 -genus_minuartia%1:20:00:: 11812358 1 0 -genus_mirabilis%1:20:00:: 11839297 1 0 -genus_mirounga%1:05:00:: 02080291 1 0 -genus_mitchella%1:20:00:: 12668364 1 0 -genus_mitella%1:20:00:: 12800327 1 0 -genus_mnium%1:20:00:: 11541579 1 0 -genus_mobula%1:05:00:: 01500721 1 0 -genus_moehringia%1:20:00:: 11812573 1 0 -genus_mohria%1:20:00:: 12956791 1 0 -genus_mola%1:05:00:: 02656550 1 0 -genus_mollienesia%1:05:00:: 01449857 1 0 -genus_molluga%1:20:00:: 11821415 1 0 -genus_moloch%1:05:00:: 01688812 1 0 -genus_molothrus%1:05:00:: 01574997 1 0 -genus_molucella%1:20:00:: 12857594 1 0 -genus_molva%1:05:00:: 02525012 1 0 -genus_momordica%1:20:00:: 12167282 1 0 -genus_momotus%1:05:00:: 01830799 1 0 -genus_monarda%1:20:00:: 12858019 1 0 -genus_monardella%1:20:00:: 12859488 1 0 -genus_moneses%1:20:00:: 12257920 1 0 -genus_monilia%1:20:00:: 13078809 1 0 -genus_monocanthus%1:05:00:: 02653965 1 0 -genus_monochamus%1:05:00:: 02168876 1 0 -genus_monodon%1:05:00:: 02072355 1 0 -genus_monomorium%1:05:00:: 02219901 1 0 -genus_mononychus%1:05:00:: 01718632 1 0 -genus_monotropa%1:20:00:: 12258663 1 0 -genus_monstera%1:20:00:: 11789280 1 0 -genus_montezuma%1:20:00:: 12191075 1 0 -genus_montia%1:20:00:: 11860801 1 0 -genus_morchella%1:20:00:: 13031956 1 0 -genus_morone%1:05:00:: 02566325 1 0 -genus_morus%1:20:00:: 12398990 1 0 -genus_moschus%1:05:00:: 02435099 1 0 -genus_motacilla%1:05:00:: 01528244 1 0 -genus_mucor%1:20:00:: 12973202 1 0 -genus_mucuna%1:20:00:: 12549976 1 0 -genus_mugil%1:05:00:: 02601589 1 0 -genus_muhlenbergia%1:20:00:: 12125398 1 0 -genus_mulloidichthys%1:05:00:: 02600657 1 0 -genus_mullus%1:05:00:: 02600135 1 0 -genus_muntiacus%1:05:00:: 02434834 1 0 -genus_muntingia%1:20:00:: 12193964 1 0 -genus_mus%1:05:00:: 02331960 1 0 -genus_musa%1:20:00:: 12352150 1 0 -genus_musca%1:05:00:: 02190648 1 0 -genus_muscardinus%1:05:00:: 02353037 1 0 -genus_muscari%1:20:00:: 12460549 1 0 -genus_muscicapa%1:05:00:: 01556040 1 0 -genus_muscivora%1:05:00:: 01555172 1 0 -genus_musophaga%1:05:00:: 01825155 1 0 -genus_mustela%1:05:00:: 02441723 1 0 -genus_mustelus%1:05:00:: 01492212 1 0 -genus_mutinus%1:20:00:: 13041172 1 0 -genus_mutisia%1:20:00:: 11996490 1 0 -genus_mya%1:05:00:: 01957202 1 0 -genus_myadestes%1:05:00:: 01561059 1 0 -genus_mycobacterium%1:05:00:: 01376948 1 0 -genus_mycoplasma%1:05:00:: 01373675 1 0 -genus_mycteria%1:05:00:: 02004661 1 0 -genus_mycteroperca%1:05:00:: 02570038 1 0 -genus_mylodon%1:05:00:: 02459313 1 0 -genus_myocastor%1:05:00:: 02366825 1 0 -genus_myopus%1:05:00:: 02345213 1 0 -genus_myosotis%1:20:00:: 12821736 1 0 -genus_myotis%1:05:00:: 02146526 1 0 -genus_myrciaria%1:20:00:: 12332866 1 0 -genus_myrica%1:20:00:: 11741010 1 0 -genus_myricaria%1:20:00:: 12386724 1 0 -genus_myriophyllum%1:20:00:: 12326842 1 0 -genus_myristica%1:20:00:: 11714150 1 0 -genus_myrmecia%1:05:00:: 02222199 1 0 -genus_myrmecobius%1:05:00:: 01885367 1 0 -genus_myrmecophaga%1:05:00:: 02460275 1 0 -genus_myrmeleon%1:05:00:: 02263848 1 0 -genus_myroxylon%1:20:00:: 12550968 1 0 -genus_myrrhis%1:20:00:: 12940427 1 0 -genus_myrsine%1:20:00:: 12097013 1 0 -genus_myrtillocactus%1:20:00:: 11850337 1 0 -genus_myrtus%1:20:00:: 12330336 1 0 -genus_mysis%1:05:00:: 01989254 1 0 -genus_mytilus%1:05:00:: 01963876 1 0 -genus_myxine%1:05:00:: 01478816 1 0 -genus_myxinikela%1:05:00:: 01479329 1 0 -genus_myxocephalus%1:05:00:: 02646117 1 0 -genus_nabalus%1:20:00:: 11996792 1 0 -genus_naemorhedus%1:05:00:: 02418648 1 0 -genus_nageia%1:20:00:: 11657314 1 0 -genus_naias%1:20:00:: 12611479 1 0 -genus_naja%1:05:00:: 01747739 1 0 -genus_najas%1:20:00:: 12611479 1 0 -genus_nanomia%1:05:00:: 01912688 1 0 -genus_napaea%1:20:00:: 12184337 1 0 -genus_narcissus%1:20:00:: 12421334 1 0 -genus_narthecium%1:20:00:: 12463574 1 0 -genus_nasalis%1:05:00:: 02489060 1 0 -genus_nasturtium%1:20:00:: 11893004 1 0 -genus_nasua%1:05:00:: 02509405 1 0 -genus_natrix%1:05:00:: 01737197 1 0 -genus_nauclea%1:20:00:: 12668732 1 0 -genus_naucrates%1:05:00:: 02580055 1 0 -genus_nautilus%1:05:00:: 01968732 1 0 -genus_necturus%1:05:00:: 01634392 1 0 -genus_negaprion%1:05:00:: 01490546 1 0 -genus_nelumbo%1:20:00:: 11717239 1 0 -genus_nemophila%1:20:00:: 12836033 1 0 -genus_neoceratodus%1:05:00:: 02516867 1 0 -genus_neofiber%1:05:00:: 02338319 1 0 -genus_neohygrophorus%1:20:00:: 13073526 1 0 -genus_neolentinus%1:20:00:: 13051196 1 0 -genus_neomys%1:05:00:: 01892876 1 0 -genus_neophron%1:05:00:: 01617633 1 0 -genus_neotoma%1:05:00:: 02339768 1 0 -genus_nepa%1:05:00:: 02242669 1 0 -genus_nepenthes%1:20:00:: 12781814 1 0 -genus_nepeta%1:20:00:: 12859873 1 0 -genus_nephelium%1:20:00:: 12745160 1 0 -genus_nephrolepis%1:20:00:: 13204646 1 0 -genus_nephrops%1:05:00:: 01984131 1 0 -genus_nephthytis%1:20:00:: 11789796 1 0 -genus_nerita%1:05:00:: 01946487 1 0 -genus_neritina%1:05:00:: 01947020 1 0 -genus_nerium%1:20:00:: 11773860 1 0 -genus_nerodia%1:05:00:: 01737356 1 0 -genus_nesokia%1:05:00:: 02334079 1 0 -genus_nestor%1:05:00:: 01818704 1 0 -genus_neurospora%1:20:00:: 12964321 1 0 -genus_neurotrichus%1:05:00:: 01891145 1 0 -genus_nicandra%1:20:00:: 12906926 1 0 -genus_nicotiana%1:20:00:: 12907287 1 0 -genus_nidularia%1:20:00:: 13046887 1 0 -genus_nierembergia%1:20:00:: 12908432 1 0 -genus_nigella%1:20:00:: 11736569 1 0 -genus_nigroporus%1:20:00:: 13051546 1 0 -genus_nimravus%1:05:00:: 02131076 1 0 -genus_nipa%1:20:00:: 12591897 1 0 -genus_nitella%1:05:00:: 01413071 1 0 -genus_nitrobacter%1:05:00:: 01362196 1 0 -genus_nitrosomonas%1:05:00:: 01362480 1 0 -genus_noctiluca%1:05:00:: 01417553 1 0 -genus_noctua%1:05:00:: 02295570 1 0 -genus_nolina%1:20:00:: 12479821 1 0 -genus_nomia%1:05:00:: 02210567 1 0 -genus_nopalea%1:20:00:: 11851101 1 0 -genus_nostoc%1:05:00:: 01359203 1 0 -genus_notechis%1:05:00:: 01750315 1 0 -genus_notemigonus%1:05:00:: 01442055 1 0 -genus_nothofagus%1:20:00:: 12265900 1 0 -genus_nothosaurus%1:05:00:: 01726079 1 0 -genus_notomys%1:05:00:: 02334609 1 0 -genus_notonecta%1:05:00:: 02240852 1 0 -genus_notophthalmus%1:05:00:: 01630795 1 0 -genus_notornis%1:05:00:: 02017607 1 0 -genus_notoryctus%1:05:00:: 01885856 1 0 -genus_notropis%1:05:00:: 01441625 1 0 -genus_nucifraga%1:05:00:: 01581607 1 0 -genus_numenius%1:05:00:: 02033444 1 0 -genus_numida%1:05:00:: 01808989 1 0 -genus_nuphar%1:20:00:: 11716285 1 0 -genus_nuytsia%1:20:00:: 12738480 1 0 -genus_nyctaginia%1:20:00:: 11836137 1 0 -genus_nyctanassa%1:05:00:: 02010881 1 0 -genus_nyctereutes%1:05:00:: 02116322 1 0 -genus_nycticebus%1:05:00:: 02498888 1 0 -genus_nycticorax%1:05:00:: 02010592 1 0 -genus_nyctimene%1:05:00:: 02140357 1 0 -genus_nymphaea%1:20:00:: 11715207 1 0 -genus_nymphalis%1:05:00:: 02275372 1 0 -genus_nymphicus%1:05:00:: 01819600 1 0 -genus_nypa%1:20:00:: 12591897 1 0 -genus_nyssa%1:20:00:: 12340202 1 0 -genus_oceanites%1:05:00:: 02061425 1 0 -genus_ochna%1:20:00:: 12382699 1 0 -genus_ochotona%1:05:00:: 02328662 1 0 -genus_ochroma%1:20:00:: 12191461 1 0 -genus_ocimum%1:20:00:: 12860254 1 0 -genus_octopus%1:05:00:: 01970030 1 0 -genus_ocyurus%1:05:00:: 02587761 1 0 -genus_odobenus%1:05:00:: 02081423 1 0 -genus_odocoileus%1:05:00:: 02432139 1 0 -genus_odontaspis%1:05:00:: 01487312 1 0 -genus_odontoglossum%1:20:00:: 12073744 1 0 -genus_odontophorus%1:05:00:: 01805446 1 0 -genus_oecanthus%1:05:00:: 02230355 1 0 -genus_oedogonium%1:05:00:: 01411871 1 0 -genus_oenanthe%1:05:00:: 01561613 2 0 -genus_oenanthe%1:20:00:: 12940778 1 0 -genus_oenothera%1:20:00:: 12344131 1 0 -genus_oestrus%1:05:00:: 02194599 1 0 -genus_okapia%1:05:00:: 02439286 1 0 -genus_olea%1:20:00:: 12300625 1 0 -genus_oleandra%1:20:00:: 13204102 1 0 -genus_olearia%1:20:00:: 11997775 1 0 -genus_olfersia%1:20:00:: 13198354 1 0 -genus_oligoplites%1:05:00:: 02577532 1 0 -genus_oligoporus%1:20:00:: 13051866 1 0 -genus_ommastrephes%1:05:00:: 01971728 1 0 -genus_omphalotus%1:20:00:: 13005166 1 0 -genus_oncidium%1:20:00:: 12074205 1 0 -genus_oncorhynchus%1:05:00:: 02535909 1 0 -genus_ondatra%1:05:00:: 02338029 1 0 -genus_oniscus%1:05:00:: 01991808 1 0 -genus_onobrychis%1:20:00:: 12552081 1 0 -genus_onoclea%1:20:00:: 13198728 1 0 -genus_ononis%1:20:00:: 12552658 1 0 -genus_onopordon%1:20:00:: 11998648 1 0 -genus_onopordum%1:20:00:: 11998648 1 0 -genus_onosmodium%1:20:00:: 12822284 1 0 -genus_onychium%1:20:00:: 13211305 1 0 -genus_onychogalea%1:05:00:: 01878500 1 0 -genus_onychomys%1:05:00:: 02337774 1 0 -genus_opheodrys%1:05:00:: 01729838 1 0 -genus_ophiodon%1:05:00:: 02552894 1 0 -genus_ophioglossum%1:20:00:: 12960211 1 0 -genus_ophiophagus%1:05:00:: 01748560 1 0 -genus_ophisaurus%1:05:00:: 01690339 1 0 -genus_ophrys%1:20:00:: 12074678 1 0 -genus_opisthocomus%1:05:00:: 01809592 1 0 -genus_opuntia%1:20:00:: 11851395 1 0 -genus_orbignya%1:20:00:: 12592351 1 0 -genus_orchestia%1:05:00:: 01993065 1 0 -genus_orchis%1:20:00:: 12043248 1 0 -genus_orcinus%1:05:00:: 02071173 1 0 -genus_oreamnos%1:05:00:: 02418341 1 0 -genus_orectolobus%1:05:00:: 01486411 1 0 -genus_oreopteris%1:20:00:: 13229358 1 0 -genus_oreortyx%1:05:00:: 01808447 1 0 -genus_origanum%1:20:00:: 12852726 1 0 -genus_oriolus%1:05:00:: 01575941 1 0 -genus_orites%1:20:00:: 12221943 1 0 -genus_ormosia%1:20:00:: 12553314 1 0 -genus_ornithogalum%1:20:00:: 12459471 1 0 -genus_ornithorhynchus%1:05:00:: 01873144 1 0 -genus_orontium%1:20:00:: 11790239 1 0 -genus_ortalis%1:05:00:: 01800286 1 0 -genus_orthilia%1:20:00:: 12257140 1 0 -genus_orthopristis%1:05:00:: 02589955 1 0 -genus_orthotomus%1:05:00:: 01566082 1 0 -genus_orycteropus%1:05:00:: 02082632 1 0 -genus_oryctolagus%1:05:00:: 02324717 1 0 -genus_oryx%1:05:00:: 02428229 1 0 -genus_oryza%1:20:00:: 12125782 1 0 -genus_oryzomys%1:05:00:: 02340521 1 0 -genus_oryzopsis%1:20:00:: 12126238 1 0 -genus_osmanthus%1:20:00:: 12309403 1 0 -genus_osmerus%1:05:00:: 02540637 1 0 -genus_osmunda%1:20:00:: 12953079 1 0 -genus_ostrea%1:05:00:: 01960900 1 0 -genus_ostrya%1:20:00:: 12287388 1 0 -genus_ostryopsis%1:20:00:: 12288188 1 0 -genus_otaria%1:05:00:: 02078159 1 0 -genus_othonna%1:20:00:: 11999140 1 0 -genus_otis%1:05:00:: 02019044 1 0 -genus_otus%1:05:00:: 01623284 1 0 -genus_ouranopithecus%1:05:00:: 02478416 1 0 -genus_ovalipes%1:05:00:: 01979395 1 0 -genus_ovibos%1:05:00:: 02411075 1 0 -genus_ovis%1:05:00:: 02411427 1 0 -genus_oxalis%1:20:00:: 12702706 1 0 -genus_oxandra%1:20:00:: 11696338 1 0 -genus_oxybelis%1:05:00:: 01739260 1 0 -genus_oxydendrum%1:20:00:: 12242287 1 0 -genus_oxylebius%1:05:00:: 02649082 1 0 -genus_oxytropis%1:20:00:: 12554242 1 0 -genus_oxyura%1:05:00:: 01849747 1 0 -genus_oxyuranus%1:05:00:: 01751353 1 0 -genus_ozonium%1:20:00:: 13082711 1 0 -genus_ozothamnus%1:20:00:: 11999455 1 0 -genus_pachycephala%1:05:00:: 01556368 1 0 -genus_pachyrhizus%1:20:00:: 12555069 1 0 -genus_pachysandra%1:20:00:: 12746733 1 0 -genus_packera%1:20:00:: 11999958 1 0 -genus_padda%1:05:00:: 01543508 1 0 -genus_paeonia%1:20:00:: 11719120 1 0 -genus_pagellus%1:05:00:: 02591493 1 0 -genus_pagophila%1:05:00:: 02042342 1 0 -genus_pagophilus%1:05:00:: 02080022 1 0 -genus_pagrus%1:05:00:: 02591205 1 0 -genus_pagurus%1:05:00:: 01986072 1 0 -genus_palaemon%1:05:00:: 01987353 1 0 -genus_palaquium%1:20:00:: 12774891 1 0 -genus_paleacrita%1:05:00:: 02287204 1 0 -genus_palinurus%1:05:00:: 01984547 1 0 -genus_paliurus%1:20:00:: 13143626 1 0 -genus_palometa%1:05:00:: 02633555 1 0 -genus_pan%1:05:00:: 02481629 1 0 -genus_panax%1:20:00:: 11799520 1 0 -genus_pandanus%1:20:00:: 12154628 1 0 -genus_pandion%1:05:00:: 01615949 1 0 -genus_panicum%1:20:00:: 12126911 1 0 -genus_panonychus%1:05:00:: 01782378 1 0 -genus_panthera%1:05:00:: 02128120 1 0 -genus_papaver%1:20:00:: 11900986 1 0 -genus_paphiopedilum%1:20:00:: 12075495 1 0 -genus_papio%1:05:00:: 02486565 1 0 -genus_paprilus%1:05:00:: 02633844 1 0 -genus_paracheirodon%1:05:00:: 02584004 1 0 -genus_paradoxurus%1:05:00:: 02138042 1 0 -genus_paralichthys%1:05:00:: 02661317 1 0 -genus_paralithodes%1:05:00:: 01981137 1 0 -genus_paramecium%1:05:00:: 01395885 1 0 -genus_paranthias%1:05:00:: 02569770 1 0 -genus_paranthropus%1:05:00:: 02477516 1 0 -genus_parascalops%1:05:00:: 01890033 1 0 -genus_parasitaxus%1:20:00:: 11657763 1 0 -genus_parathelypteris%1:20:00:: 13229747 1 0 -genus_parietaria%1:20:00:: 12394494 1 0 -genus_paris%1:20:00:: 12469372 1 0 -genus_parkia%1:20:00:: 11763473 1 0 -genus_parkinsonia%1:20:00:: 12497492 1 0 -genus_parmelia%1:20:00:: 12991645 1 0 -genus_parnassia%1:20:00:: 12801323 1 0 -genus_parochetus%1:20:00:: 12555720 1 0 -genus_paronychia%1:20:00:: 11813309 1 0 -genus_parophrys%1:05:00:: 02664511 1 0 -genus_parrotia%1:20:00:: 12317164 1 0 -genus_parrotiopsis%1:20:00:: 12317611 1 0 -genus_parthenium%1:20:00:: 12000609 1 0 -genus_parthenocissus%1:20:00:: 13148019 1 0 -genus_parula%1:05:00:: 01567530 1 0 -genus_parus%1:05:00:: 01591910 1 0 -genus_paspalum%1:20:00:: 12127890 1 0 -genus_passer%1:05:00:: 01539772 1 0 -genus_passerina%1:05:00:: 01537360 1 0 -genus_passiflora%1:20:00:: 12383256 1 0 -genus_pastinaca%1:20:00:: 12941360 1 0 -genus_patella%1:05:00:: 01948917 1 0 -genus_pavo%1:05:00:: 01805692 1 0 -genus_pavonia%1:20:00:: 12184724 1 0 -genus_payena%1:20:00:: 12775225 1 0 -genus_pecari%1:05:00:: 02397377 1 0 -genus_pecopteris%1:20:00:: 11545214 1 0 -genus_pecten%1:05:00:: 01966204 1 0 -genus_pediculus%1:05:00:: 02184270 1 0 -genus_pedilanthus%1:20:00:: 12927921 1 0 -genus_pediocactus%1:20:00:: 11850748 1 0 -genus_pedioecetes%1:05:00:: 01798052 1 0 -genus_pedionomus%1:05:00:: 02020450 1 0 -genus_peireskia%1:20:00:: 11852255 1 0 -genus_pelargonium%1:20:00:: 12687211 1 0 -genus_pelecanus%1:05:00:: 02052044 1 0 -genus_pellaea%1:20:00:: 13211516 1 0 -genus_pellicularia%1:20:00:: 13015826 1 0 -genus_peltandra%1:20:00:: 11790624 1 0 -genus_peltiphyllum%1:20:00:: 12797213 1 0 -genus_penelope%1:05:00:: 01799876 1 0 -genus_peneus%1:05:00:: 01988064 1 0 -genus_penicillium%1:20:00:: 13079953 1 0 -genus_pennatula%1:05:00:: 01915541 1 0 -genus_pennisetum%1:20:00:: 12128645 1 0 -genus_penstemon%1:20:00:: 12884523 1 0 -genus_peperomia%1:20:00:: 13150741 1 0 -genus_perca%1:05:00:: 02557033 1 0 -genus_percina%1:05:00:: 02558079 1 0 -genus_perdix%1:05:00:: 01807701 1 0 -genus_pereskia%1:20:00:: 11852255 1 0 -genus_pericallis%1:20:00:: 12001565 1 0 -genus_peridinium%1:05:00:: 01417982 1 0 -genus_perilla%1:20:00:: 12860842 1 0 -genus_periophthalmus%1:05:00:: 02619409 1 0 -genus_peripatopsis%1:05:00:: 02000764 1 0 -genus_peripatus%1:05:00:: 02000195 1 0 -genus_periplaneta%1:05:00:: 02234181 1 0 -genus_periploca%1:20:00:: 13237343 1 0 -genus_perisoreus%1:05:00:: 01581041 1 0 -genus_peristedion%1:05:00:: 02651412 1 0 -genus_pernis%1:05:00:: 01608086 1 0 -genus_perodicticus%1:05:00:: 02499178 1 0 -genus_perognathus%1:05:00:: 02349040 1 0 -genus_peromyscus%1:05:00:: 02336451 1 0 -genus_peronospora%1:20:00:: 12980652 1 0 -genus_persea%1:20:00:: 11706629 1 0 -genus_persoonia%1:20:00:: 12222334 1 0 -genus_pertusaria%1:20:00:: 12989301 1 0 -genus_petasites%1:20:00:: 12002197 1 0 -genus_petaurista%1:05:00:: 02362420 1 0 -genus_petaurus%1:05:00:: 01881991 1 0 -genus_petrocoptis%1:20:00:: 11813830 1 0 -genus_petrogale%1:05:00:: 01878803 1 0 -genus_petromyzon%1:05:00:: 01477745 1 0 -genus_petroselinum%1:20:00:: 12942270 1 0 -genus_petteria%1:20:00:: 12498316 1 0 -genus_petunia%1:20:00:: 12909252 1 0 -genus_peziza%1:20:00:: 13030438 1 0 -genus_pezophaps%1:05:00:: 01811394 1 0 -genus_phacelia%1:20:00:: 12836663 1 0 -genus_phacochoerus%1:05:00:: 02396970 1 0 -genus_phaethon%1:05:00:: 02054966 1 0 -genus_phaius%1:20:00:: 12076075 1 0 -genus_phalacrocorax%1:05:00:: 02053859 1 0 -genus_phalaenopsis%1:20:00:: 12076381 1 0 -genus_phalaenoptilus%1:05:00:: 01836527 1 0 -genus_phalanger%1:05:00:: 01881416 1 0 -genus_phalangium%1:05:00:: 01769930 1 0 -genus_phalaris%1:20:00:: 12129525 1 0 -genus_phalaropus%1:05:00:: 02037713 1 0 -genus_phallus%1:20:00:: 13040108 1 0 -genus_pharomacrus%1:05:00:: 01844414 1 0 -genus_phascogale%1:05:00:: 01885032 1 0 -genus_phascolarctos%1:05:00:: 01882607 1 0 -genus_phaseolus%1:20:00:: 12556030 1 0 -genus_phasianus%1:05:00:: 01802895 1 0 -genus_phegopteris%1:20:00:: 13230421 1 0 -genus_phellodendron%1:20:00:: 12713664 1 0 -genus_phenacomys%1:05:00:: 02342413 1 0 -genus_philadelphus%1:20:00:: 12790835 1 0 -genus_philaenus%1:05:00:: 02258065 1 0 -genus_phillyrea%1:20:00:: 12309850 1 0 -genus_philodendron%1:20:00:: 11791155 1 0 -genus_philohela%1:05:00:: 02031455 1 0 -genus_philomachus%1:05:00:: 02029914 1 0 -genus_philophylla%1:05:00:: 02198021 1 0 -genus_phlebodium%1:20:00:: 13176873 1 0 -genus_phlebotomus%1:05:00:: 02204084 1 0 -genus_phleum%1:20:00:: 12130408 1 0 -genus_phlomis%1:20:00:: 12861139 1 0 -genus_phlox%1:20:00:: 12810318 1 0 -genus_phoca%1:05:00:: 02079706 1 0 -genus_phocoena%1:05:00:: 02070311 1 0 -genus_phoenicophorium%1:20:00:: 12593689 1 0 -genus_phoeniculus%1:05:00:: 01830316 1 0 -genus_phoenicurus%1:05:00:: 01561318 1 0 -genus_phoenix%1:20:00:: 12593826 1 0 -genus_pholas%1:05:00:: 01967812 1 0 -genus_pholidota%1:20:00:: 12077062 1 0 -genus_pholiota%1:20:00:: 13007770 1 0 -genus_pholis%1:05:00:: 02615157 1 0 -genus_pholistoma%1:20:00:: 12837643 1 0 -genus_phoradendron%1:20:00:: 12739595 1 0 -genus_photinia%1:20:00:: 12636430 1 0 -genus_photoblepharon%1:05:00:: 01452200 1 0 -genus_phoxinus%1:05:00:: 01442855 1 0 -genus_phragmipedium%1:20:00:: 12077505 1 0 -genus_phragmites%1:20:00:: 12130759 1 0 -genus_phrynosoma%1:05:00:: 01681812 1 0 -genus_phthirius%1:05:00:: 02185007 1 0 -genus_phthirus%1:05:00:: 02185007 1 0 -genus_phthorimaea%1:05:00:: 02294279 1 0 -genus_phyllitis%1:20:00:: 13184164 1 0 -genus_phyllium%1:05:00:: 02232086 1 0 -genus_phyllocladus%1:20:00:: 11649749 1 0 -genus_phyllodoce%1:20:00:: 12242668 1 0 -genus_phylloporus%1:20:00:: 13058796 1 0 -genus_phyllorhynchus%1:05:00:: 01729533 1 0 -genus_phylloscopus%1:05:00:: 01565238 1 0 -genus_phyllostachys%1:20:00:: 12148962 1 0 -genus_phyllostomus%1:05:00:: 02142575 1 0 -genus_phylloxera%1:05:00:: 02255698 1 0 -genus_physa%1:05:00:: 01952557 1 0 -genus_physalia%1:05:00:: 01913035 1 0 -genus_physalis%1:20:00:: 12910141 1 0 -genus_physaria%1:20:00:: 11893451 1 0 -genus_physeter%1:05:00:: 02067100 1 0 -genus_physostegia%1:20:00:: 12861751 1 0 -genus_physostigma%1:20:00:: 12486732 1 0 -genus_phytelephas%1:20:00:: 12594165 1 0 -genus_phytolacca%1:20:00:: 11855122 1 0 -genus_phytophthora%1:20:00:: 12982723 1 0 -genus_pica%1:05:00:: 01582111 1 0 -genus_picea%1:20:00:: 11624367 1 0 -genus_pickeringia%1:20:00:: 12558902 1 0 -genus_picoides%1:05:00:: 01839221 1 0 -genus_picrasma%1:20:00:: 12718314 1 0 -genus_picris%1:20:00:: 12002957 1 0 -genus_picumnus%1:05:00:: 01841815 1 0 -genus_picus%1:05:00:: 01838961 1 0 -genus_pieris%1:05:00:: 02280845 2 0 -genus_pieris%1:20:00:: 12243292 1 0 -genus_pilea%1:20:00:: 12394861 1 0 -genus_pilosella%1:20:00:: 12003407 1 0 -genus_pilularia%1:20:00:: 12958140 1 0 -genus_pimenta%1:20:00:: 12330751 1 0 -genus_pimpinella%1:20:00:: 12942930 1 0 -genus_pinckneya%1:20:00:: 12669157 1 0 -genus_pinctada%1:05:00:: 01961862 1 0 -genus_pineus%1:05:00:: 02255144 1 0 -genus_pinguicula%1:20:00:: 12872698 1 0 -genus_pinguinus%1:05:00:: 02046321 1 0 -genus_pinicola%1:05:00:: 01540969 1 0 -genus_pinnotheres%1:05:00:: 01980471 1 0 -genus_pinus%1:20:00:: 11608055 1 0 -genus_pipa%1:05:00:: 01653975 1 0 -genus_piper%1:20:00:: 13149039 1 0 -genus_pipile%1:05:00:: 01800042 1 0 -genus_pipilo%1:05:00:: 01542055 1 0 -genus_pipistrellus%1:05:00:: 02147747 1 0 -genus_pipra%1:05:00:: 01551549 1 0 -genus_piptadenia%1:20:00:: 11764072 1 0 -genus_pipturus%1:20:00:: 12395717 1 0 -genus_piqueria%1:20:00:: 12004310 1 0 -genus_piranga%1:05:00:: 01597551 1 0 -genus_piroplasma%1:05:00:: 01425501 1 0 -genus_pisanosaurus%1:05:00:: 01700754 1 0 -genus_piscidia%1:20:00:: 12559302 1 0 -genus_pisonia%1:20:00:: 11841061 1 0 -genus_pistacia%1:20:00:: 12761471 1 0 -genus_pistia%1:20:00:: 11791446 1 0 -genus_pisum%1:20:00:: 12559842 1 0 -genus_pithecanthropus%1:05:00:: 02473554 1 0 -genus_pithecellobium%1:20:00:: 11764231 1 0 -genus_pithecia%1:05:00:: 02492833 1 0 -genus_pithecolobium%1:20:00:: 11764231 1 0 -genus_pitta%1:05:00:: 01554825 1 0 -genus_pituophis%1:05:00:: 01733634 1 0 -genus_pitymys%1:05:00:: 02340813 1 0 -genus_pityrogramma%1:20:00:: 13212751 1 0 -genus_placuna%1:05:00:: 01962662 1 0 -genus_plagianthus%1:20:00:: 12185078 1 0 -genus_planera%1:20:00:: 12410032 1 0 -genus_planococcus%1:05:00:: 02251452 1 0 -genus_plantago%1:20:00:: 12598629 1 0 -genus_plasmodiophora%1:20:00:: 12983404 1 0 -genus_plasmodium%1:05:00:: 01424282 1 0 -genus_platalea%1:05:00:: 02006827 1 0 -genus_platanthera%1:20:00:: 12077732 1 0 -genus_platanus%1:20:00:: 12806455 1 0 -genus_platichthys%1:05:00:: 02658670 1 0 -genus_platycerium%1:20:00:: 13177354 1 0 -genus_platylobium%1:20:00:: 12561696 1 0 -genus_platymiscium%1:20:00:: 12562420 1 0 -genus_platypoecilus%1:05:00:: 01449586 1 0 -genus_platystemon%1:20:00:: 11907267 1 0 -genus_plautus%1:05:00:: 02046045 1 0 -genus_plecotus%1:05:00:: 02148698 1 0 -genus_plectania%1:20:00:: 13031007 1 0 -genus_plectorrhiza%1:20:00:: 12078596 1 0 -genus_plectranthus%1:20:00:: 12862312 1 0 -genus_plectrophenax%1:05:00:: 01538498 1 0 -genus_pleione%1:20:00:: 12078954 1 0 -genus_pleiospilos%1:20:00:: 11821777 1 0 -genus_plesianthropus%1:05:00:: 02476074 1 0 -genus_plesiosaurus%1:05:00:: 01725570 1 0 -genus_plethodon%1:05:00:: 01635964 1 0 -genus_pleurobrachia%1:05:00:: 01920302 1 0 -genus_pleuronectes%1:05:00:: 02658381 1 0 -genus_pleurosorus%1:20:00:: 13183669 1 0 -genus_pleurothallis%1:20:00:: 12079352 1 0 -genus_pleurotus%1:20:00:: 13007195 1 0 -genus_plicatoperipatus%1:05:00:: 02000354 1 0 -genus_ploceus%1:05:00:: 01543059 1 0 -genus_plumbago%1:20:00:: 12098227 1 0 -genus_plumeria%1:20:00:: 11774279 1 0 -genus_pluteus%1:20:00:: 13019202 1 0 -genus_pluvialis%1:05:00:: 02024353 1 0 -genus_pluvianus%1:05:00:: 02039660 1 0 -genus_poa%1:20:00:: 12131216 1 0 -genus_podalyria%1:20:00:: 12563404 1 0 -genus_podargus%1:05:00:: 01836953 1 0 -genus_podiceps%1:05:00:: 02049855 1 0 -genus_podilymbus%1:05:00:: 02050921 1 0 -genus_podocarpus%1:20:00:: 11651731 1 0 -genus_podophyllum%1:20:00:: 11699915 1 0 -genus_poecilocapsus%1:05:00:: 02237730 1 0 -genus_poecilogale%1:05:00:: 02443683 1 0 -genus_poephila%1:05:00:: 01544067 1 0 -genus_pogonia%1:20:00:: 12079737 1 0 -genus_pogostemon%1:20:00:: 12862648 1 0 -genus_polanisia%1:20:00:: 11867070 1 0 -genus_polemonium%1:20:00:: 12809233 1 0 -genus_polianthes%1:20:00:: 12480233 1 0 -genus_polioptila%1:05:00:: 01563313 1 0 -genus_polistes%1:05:00:: 02213967 1 0 -genus_pollachius%1:05:00:: 02524081 1 0 -genus_polyangium%1:05:00:: 01378346 1 0 -genus_polyborus%1:05:00:: 01612803 1 0 -genus_polybotria%1:20:00:: 13199244 1 0 -genus_polybotrya%1:20:00:: 13199244 1 0 -genus_polycirrus%1:05:00:: 01937422 1 0 -genus_polydactylus%1:05:00:: 02611154 1 0 -genus_polyergus%1:05:00:: 02222459 1 0 -genus_polygala%1:20:00:: 12704844 1 0 -genus_polygonatum%1:20:00:: 12474006 1 0 -genus_polygonia%1:05:00:: 02277895 1 0 -genus_polygonum%1:20:00:: 12600888 1 0 -genus_polyodon%1:05:00:: 02639464 1 0 -genus_polypedates%1:05:00:: 01644245 1 0 -genus_polypodium%1:20:00:: 13172725 1 0 -genus_polyporus%1:20:00:: 13052431 1 0 -genus_polyprion%1:05:00:: 02568326 1 0 -genus_polystichum%1:20:00:: 13199445 1 0 -genus_pomacanthus%1:05:00:: 02605809 1 0 -genus_pomacentrus%1:05:00:: 02606590 1 0 -genus_pomaderris%1:20:00:: 13143930 1 0 -genus_pomatomus%1:05:00:: 02573563 1 0 -genus_pomolobus%1:05:00:: 02531362 1 0 -genus_pomoxis%1:05:00:: 02562680 1 0 -genus_poncirus%1:20:00:: 12714114 1 0 -genus_pongamia%1:20:00:: 12563567 1 0 -genus_pongo%1:05:00:: 02480346 1 0 -genus_pontederia%1:20:00:: 12609842 1 0 -genus_pooecetes%1:05:00:: 01535005 1 0 -genus_popillia%1:05:00:: 02173240 1 0 -genus_populus%1:20:00:: 12731202 1 0 -genus_porcellio%1:05:00:: 01992113 1 0 -genus_poronotus%1:05:00:: 02633287 1 0 -genus_porphyra%1:05:00:: 01415393 1 0 -genus_porphyrio%1:05:00:: 02017093 1 0 -genus_porphyrula%1:05:00:: 02017335 1 0 -genus_portulaca%1:20:00:: 11857528 1 0 -genus_portunus%1:05:00:: 01979124 1 0 -genus_porzana%1:05:00:: 02015944 1 0 -genus_potamogale%1:05:00:: 01894803 1 0 -genus_potamogeton%1:20:00:: 12615986 1 0 -genus_potamophis%1:05:00:: 01736569 1 0 -genus_potentilla%1:20:00:: 12636705 1 0 -genus_poterium%1:20:00:: 12637319 1 0 -genus_pothos%1:20:00:: 11791819 1 0 -genus_potorous%1:05:00:: 01880355 1 0 -genus_potos%1:05:00:: 02509071 1 0 -genus_pouteria%1:20:00:: 12775530 1 0 -genus_praunus%1:05:00:: 01989390 1 0 -genus_prenanthes%1:20:00:: 12004686 1 0 -genus_presbytes%1:05:00:: 02488149 1 0 -genus_priacanthus%1:05:00:: 02571486 1 0 -genus_primula%1:20:00:: 12090702 1 0 -genus_prinia%1:05:00:: 01565804 1 0 -genus_priodontes%1:05:00:: 02455887 1 0 -genus_prionace%1:05:00:: 01490885 1 0 -genus_prionotus%1:05:00:: 02650928 1 0 -genus_pristis%1:05:00:: 01497278 1 0 -genus_pritzelago%1:20:00:: 11893808 1 0 -genus_proboscidea%1:20:00:: 12874996 1 0 -genus_procavia%1:05:00:: 02372813 1 0 -genus_procellaria%1:05:00:: 02059393 1 0 -genus_prociphilus%1:05:00:: 02254110 1 0 -genus_procnias%1:05:00:: 01551915 1 0 -genus_proconsul%1:05:00:: 02478662 1 0 -genus_procyon%1:05:00:: 02507863 1 0 -genus_progne%1:05:00:: 01596479 1 0 -genus_prosopis%1:20:00:: 11765099 1 0 -genus_prosopium%1:05:00:: 02539752 1 0 -genus_protea%1:20:00:: 12214605 1 0 -genus_proteles%1:05:00:: 02118058 1 0 -genus_proterochampsa%1:05:00:: 01696151 1 0 -genus_proteus%1:05:00:: 01634092 1 0 -genus_protium%1:20:00:: 12693033 1 0 -genus_protoavis%1:05:00:: 01515398 1 0 -genus_protoceratops%1:05:00:: 01703996 1 0 -genus_protohippus%1:05:00:: 02376303 1 0 -genus_prumnopitys%1:20:00:: 11658104 1 0 -genus_prunella%1:05:00:: 01527055 2 0 -genus_prunella%1:20:00:: 12863026 1 0 -genus_prunus%1:20:00:: 12637729 1 0 -genus_psaltriparus%1:05:00:: 01592892 1 0 -genus_psenes%1:05:00:: 02634156 1 0 -genus_psephurus%1:05:00:: 02639786 1 0 -genus_psetta%1:05:00:: 02663086 1 0 -genus_psettichthys%1:05:00:: 02664823 1 0 -genus_pseudacris%1:05:00:: 01651900 1 0 -genus_pseudaletia%1:05:00:: 02297127 1 0 -genus_pseudechis%1:05:00:: 01750598 1 0 -genus_pseudemys%1:05:00:: 01668257 1 0 -genus_pseudobombax%1:20:00:: 12191965 1 0 -genus_pseudococcus%1:05:00:: 02250653 1 0 -genus_pseudocolus%1:20:00:: 13042814 1 0 -genus_pseudolarix%1:20:00:: 11620248 1 0 -genus_pseudomonas%1:05:00:: 01360937 1 0 -genus_pseudopleuronectes%1:05:00:: 02659342 1 0 -genus_pseudoryx%1:05:00:: 02428653 1 0 -genus_pseudotaxus%1:20:00:: 11663136 1 0 -genus_pseudotsuga%1:20:00:: 11628284 1 0 -genus_pseudowintera%1:20:00:: 11740208 1 0 -genus_psidium%1:20:00:: 12333397 1 0 -genus_psilophyton%1:20:00:: 13217763 1 0 -genus_psilotum%1:20:00:: 13216673 1 0 -genus_psithyrus%1:05:00:: 02209755 1 0 -genus_psittacosaurus%1:05:00:: 01704847 1 0 -genus_psittacula%1:05:00:: 01822164 1 0 -genus_psittacus%1:05:00:: 01817772 1 0 -genus_psophia%1:05:00:: 02020902 1 0 -genus_psophocarpus%1:20:00:: 12563913 1 0 -genus_psoralea%1:20:00:: 12564381 1 0 -genus_psychopsis%1:20:00:: 12080199 1 0 -genus_psychotria%1:20:00:: 12669641 1 0 -genus_pteretis%1:20:00:: 13197800 1 0 -genus_pteridium%1:20:00:: 13189656 1 0 -genus_pteris%1:20:00:: 13213768 1 0 -genus_pternohyla%1:05:00:: 01652163 1 0 -genus_pterocarpus%1:20:00:: 12564840 1 0 -genus_pterocarya%1:20:00:: 12322359 1 0 -genus_pterocles%1:05:00:: 01815855 1 0 -genus_pterocnemia%1:05:00:: 01521602 1 0 -genus_pterodactylus%1:05:00:: 01723425 1 0 -genus_pterois%1:05:00:: 02643448 1 0 -genus_pteropogon%1:20:00:: 12005148 1 0 -genus_pteropus%1:05:00:: 02139914 1 0 -genus_pterospermum%1:20:00:: 12200747 1 0 -genus_pterostylis%1:20:00:: 12081022 1 0 -genus_ptilocercus%1:05:00:: 02495446 1 0 -genus_ptilocrinus%1:05:00:: 02320339 1 0 -genus_ptilonorhynchus%1:05:00:: 01600909 1 0 -genus_ptloris%1:05:00:: 01571297 1 0 -genus_ptyas%1:05:00:: 01733094 1 0 -genus_ptychozoon%1:05:00:: 01675225 1 0 -genus_puccinia%1:20:00:: 13064852 1 0 -genus_pueraria%1:20:00:: 12566809 1 0 -genus_puffinus%1:05:00:: 02060290 1 0 -genus_pulex%1:05:00:: 02186586 1 0 -genus_pulicaria%1:20:00:: 12005500 1 0 -genus_pulsatilla%1:20:00:: 11737316 1 0 -genus_punica%1:20:00:: 12345136 1 0 -genus_pycnanthemum%1:20:00:: 12863458 1 0 -genus_pygopus%1:05:00:: 01676113 1 0 -genus_pygoscelis%1:05:00:: 02056091 1 0 -genus_pylodictus%1:05:00:: 02520015 1 0 -genus_pyracantha%1:20:00:: 12651062 1 0 -genus_pyralis%1:05:00:: 02289061 1 0 -genus_pyrausta%1:05:00:: 02289466 1 0 -genus_pyrethrum%1:20:00:: 12005869 1 0 -genus_pyrocephalus%1:05:00:: 01550033 1 0 -genus_pyrola%1:20:00:: 12255934 1 0 -genus_pyrophorus%1:05:00:: 02176611 1 0 -genus_pyrrhula%1:05:00:: 01534034 1 0 -genus_pyrrhuloxia%1:05:00:: 01541618 1 0 -genus_pyrrosia%1:20:00:: 13178107 1 0 -genus_pyrularia%1:20:00:: 12736840 1 0 -genus_pyrus%1:20:00:: 12651465 1 0 -genus_pythium%1:20:00:: 12982338 1 0 -genus_python%1:05:00:: 01743787 1 0 -genus_pyxidanthera%1:20:00:: 12251577 1 0 -genus_quamassia%1:20:00:: 12449024 1 0 -genus_quassia%1:20:00:: 12718807 1 0 -genus_quercus%1:20:00:: 12268096 1 0 -genus_quiscalus%1:05:00:: 01574270 1 0 -genus_rachycentron%1:05:00:: 02574093 1 0 -genus_radiigera%1:20:00:: 13045429 1 0 -genus_radyera%1:20:00:: 12185687 1 0 -genus_raffia%1:20:00:: 12594746 1 0 -genus_raja%1:05:00:: 01501450 1 0 -genus_ramalina%1:20:00:: 12990250 1 0 -genus_ramphomicron%1:05:00:: 01834412 1 0 -genus_rana%1:05:00:: 01640567 1 0 -genus_ranatra%1:05:00:: 02242816 1 0 -genus_rangifer%1:05:00:: 02433796 1 0 -genus_ranunculus%1:20:00:: 11720088 1 0 -genus_raoulia%1:20:00:: 12006081 1 0 -genus_raphanus%1:20:00:: 11894173 1 0 -genus_raphia%1:20:00:: 12594746 1 0 -genus_raphicerus%1:05:00:: 02426339 1 0 -genus_raphus%1:05:00:: 01811104 1 0 -genus_ratibida%1:20:00:: 12006503 1 0 -genus_rattus%1:05:00:: 02333368 1 0 -genus_rauvolfia%1:20:00:: 11775160 1 0 -genus_rauwolfia%1:20:00:: 11775160 1 0 -genus_ravenala%1:20:00:: 12354849 1 0 -genus_recurvirostra%1:05:00:: 02036548 1 0 -genus_regalecus%1:05:00:: 02546873 1 0 -genus_regnellidium%1:20:00:: 12958470 1 0 -genus_regulus%1:05:00:: 01563579 1 0 -genus_reithrodontomys%1:05:00:: 02336129 1 0 -genus_remilegia%1:05:00:: 02575455 1 0 -genus_reseda%1:20:00:: 12385219 1 0 -genus_retama%1:20:00:: 12567316 1 0 -genus_reticulitermes%1:05:00:: 02223694 1 0 -genus_retrophyllum%1:20:00:: 11658872 1 0 -genus_rhagoletis%1:05:00:: 02196761 1 0 -genus_rhamnus%1:20:00:: 13140993 1 0 -genus_rhapis%1:20:00:: 12595801 1 0 -genus_rhea%1:05:00:: 01521197 1 0 -genus_rheum%1:20:00:: 12602850 1 0 -genus_rhexia%1:20:00:: 12349916 1 0 -genus_rhincodon%1:05:00:: 01487914 1 0 -genus_rhinoceros%1:05:00:: 02392282 1 0 -genus_rhinonicteris%1:05:00:: 02144110 1 0 -genus_rhinoptera%1:05:00:: 01499595 1 0 -genus_rhipsalis%1:20:00:: 11852814 1 0 -genus_rhizobium%1:05:00:: 01354324 1 0 -genus_rhizoctinia%1:20:00:: 13082293 1 0 -genus_rhizophora%1:20:00:: 12345709 1 0 -genus_rhizopogon%1:20:00:: 12971624 1 0 -genus_rhizopus%1:20:00:: 12973541 1 0 -genus_rhodanthe%1:20:00:: 12007560 1 0 -genus_rhododendron%1:20:00:: 12243927 1 0 -genus_rhodosphaera%1:20:00:: 12762245 1 0 -genus_rhodymenia%1:05:00:: 01414986 1 0 -genus_rhus%1:20:00:: 12762583 1 0 -genus_rhyacotriton%1:05:00:: 01635343 1 0 -genus_rhynchoelaps%1:05:00:: 01747144 1 0 -genus_rhyncostylis%1:20:00:: 12081488 1 0 -genus_rhynia%1:20:00:: 13218281 1 0 -genus_ribes%1:20:00:: 12804866 1 0 -genus_richea%1:20:00:: 12254478 1 0 -genus_richmondena%1:05:00:: 01541261 1 0 -genus_ricinus%1:20:00:: 12924452 1 0 -genus_rickettsia%1:05:00:: 01371342 1 0 -genus_riparia%1:05:00:: 01596142 1 0 -genus_rissa%1:05:00:: 02042637 1 0 -genus_rivina%1:20:00:: 11856389 1 0 -genus_rivulus%1:05:00:: 01447551 1 0 -genus_robinia%1:20:00:: 12567768 1 0 -genus_roccella%1:20:00:: 12988858 1 0 -genus_roccus%1:05:00:: 02567960 1 0 -genus_rodolia%1:05:00:: 02166674 1 0 -genus_romneya%1:20:00:: 11907554 1 0 -genus_roridula%1:20:00:: 12784173 1 0 -genus_rorippa%1:20:00:: 11895270 1 0 -genus_rosa%1:20:00:: 12620031 1 0 -genus_rosellinia%1:20:00:: 12967124 1 0 -genus_rosmarinus%1:20:00:: 12864038 1 0 -genus_roystonea%1:20:00:: 12596525 1 0 -genus_rubia%1:20:00:: 12660796 1 0 -genus_rubus%1:20:00:: 12653056 1 0 -genus_rudbeckia%1:20:00:: 12008017 1 0 -genus_rumex%1:20:00:: 12603784 1 0 -genus_rumohra%1:20:00:: 13200806 1 0 -genus_rupicapra%1:05:00:: 02419217 1 0 -genus_rupicola%1:05:00:: 01550953 1 0 -genus_ruptiliocarpon%1:20:00:: 12701901 1 0 -genus_ruscus%1:20:00:: 12462951 1 0 -genus_russula%1:20:00:: 13009780 1 0 -genus_ruta%1:20:00:: 12707040 1 0 -genus_rutilus%1:05:00:: 01442335 1 0 -genus_rynchops%1:05:00:: 02043659 1 0 -genus_rypticus%1:05:00:: 02570312 1 0 -genus_sabal%1:20:00:: 12597006 1 0 -genus_sabbatia%1:20:00:: 12298003 1 0 -genus_sabinea%1:20:00:: 12568865 1 0 -genus_saccharomyces%1:20:00:: 13025421 1 0 -genus_saccharum%1:20:00:: 12132299 1 0 -genus_sadleria%1:20:00:: 13185820 1 0 -genus_sagina%1:20:00:: 11814059 1 0 -genus_sagitta%1:05:00:: 01924151 1 0 -genus_sagittaria%1:20:00:: 12612410 1 0 -genus_sagittarius%1:05:00:: 01618356 1 0 -genus_saiga%1:05:00:: 02426054 1 0 -genus_saimiri%1:05:00:: 02493974 1 0 -genus_saintpaulia%1:20:00:: 12832976 1 0 -genus_salamandra%1:05:00:: 01629093 1 0 -genus_salicornia%1:20:00:: 11834148 1 0 -genus_salix%1:20:00:: 12724201 1 0 -genus_salmo%1:05:00:: 02535349 1 0 -genus_salmonella%1:05:00:: 01368853 1 0 -genus_salpa%1:05:00:: 01469586 1 0 -genus_salpichroa%1:20:00:: 12912105 1 0 -genus_salpiglossis%1:20:00:: 12912498 1 0 -genus_salpinctes%1:05:00:: 01585577 1 0 -genus_salsola%1:20:00:: 11834521 1 0 -genus_salvadora%1:20:00:: 12299425 1 0 -genus_salvelinus%1:05:00:: 02537847 1 0 -genus_salvia%1:20:00:: 12864363 1 0 -genus_salvinia%1:20:00:: 12958921 1 0 -genus_sambucus%1:20:00:: 12678059 1 0 -genus_samia%1:05:00:: 02303448 1 0 -genus_samolus%1:20:00:: 12096223 1 0 -genus_sanguinaria%1:20:00:: 11907939 1 0 -genus_sanicula%1:20:00:: 12943302 1 0 -genus_sansevieria%1:20:00:: 12480677 1 0 -genus_santalum%1:20:00:: 12735009 1 0 -genus_santolina%1:20:00:: 12009250 1 0 -genus_sanvitalia%1:20:00:: 12009616 1 0 -genus_sapindus%1:20:00:: 12741409 1 0 -genus_saponaria%1:20:00:: 11814440 1 0 -genus_saprolegnia%1:20:00:: 12979630 1 0 -genus_sarcobatus%1:20:00:: 11835114 1 0 -genus_sarcocephalus%1:20:00:: 12670172 1 0 -genus_sarcochilus%1:20:00:: 12081851 1 0 -genus_sarcocystis%1:05:00:: 01426160 1 0 -genus_sarcodes%1:20:00:: 12259615 1 0 -genus_sarcophaga%1:05:00:: 02192388 1 0 -genus_sarcophilus%1:05:00:: 01884703 1 0 -genus_sarcoptes%1:05:00:: 01781410 1 0 -genus_sarcorhamphus%1:05:00:: 01620575 1 0 -genus_sarcostemma%1:20:00:: 13237788 1 0 -genus_sarda%1:05:00:: 02627686 1 0 -genus_sardina%1:05:00:: 02533075 1 0 -genus_sardinia%1:05:00:: 02533075 1 0 -genus_sardinops%1:05:00:: 02533424 1 0 -genus_sargassum%1:05:00:: 01405737 1 0 -genus_sarracenia%1:20:00:: 12779437 1 0 -genus_sassafras%1:20:00:: 11707109 1 0 -genus_satureia%1:20:00:: 12866824 1 0 -genus_satureja%1:20:00:: 12866824 1 0 -genus_saturnia%1:05:00:: 02301782 1 0 -genus_sauromalus%1:05:00:: 01678237 1 0 -genus_saurosuchus%1:05:00:: 01696026 1 0 -genus_saururus%1:20:00:: 13151820 1 0 -genus_saussurea%1:20:00:: 12010021 1 0 -genus_saxe-gothea%1:20:00:: 11659068 1 0 -genus_saxegothea%1:20:00:: 11659068 1 0 -genus_saxicola%1:05:00:: 01560511 1 0 -genus_saxifraga%1:20:00:: 12792638 1 0 -genus_sayornis%1:05:00:: 01549769 1 0 -genus_scabiosa%1:20:00:: 12683248 1 0 -genus_scaphiopus%1:05:00:: 01648993 1 0 -genus_scaphosepalum%1:20:00:: 12082357 1 0 -genus_scarabaeus%1:05:00:: 02172387 1 0 -genus_scardinius%1:05:00:: 01442591 1 0 -genus_scartella%1:05:00:: 02613687 1 0 -genus_sceliphron%1:05:00:: 02215496 1 0 -genus_sceloglaux%1:05:00:: 01624987 1 0 -genus_sceloporus%1:05:00:: 01680137 1 0 -genus_schaffneria%1:20:00:: 13183874 1 0 -genus_schefflera%1:20:00:: 11800359 1 0 -genus_schinus%1:20:00:: 12764703 1 0 -genus_schistosoma%1:05:00:: 01926988 1 0 -genus_schizachyrium%1:20:00:: 12133332 1 0 -genus_schizaea%1:20:00:: 12955191 1 0 -genus_schizanthus%1:20:00:: 12913004 1 0 -genus_schizopetalon%1:20:00:: 11895980 1 0 -genus_schizophragma%1:20:00:: 12791539 1 0 -genus_schizosaccharomyces%1:20:00:: 13026339 1 0 -genus_schlumbergera%1:20:00:: 11853191 1 0 -genus_schomburgkia%1:20:00:: 12082593 1 0 -genus_sciadopitys%1:20:00:: 11660121 1 0 -genus_sciaena%1:05:00:: 02595902 1 0 -genus_sciaenops%1:05:00:: 02595569 1 0 -genus_sciara%1:05:00:: 02204585 1 0 -genus_scilla%1:20:00:: 12461326 1 0 -genus_scincella%1:05:00:: 01684012 1 0 -genus_scincus%1:05:00:: 01683900 1 0 -genus_scindapsus%1:20:00:: 11791819 1 0 -genus_scirpus%1:20:00:: 12152869 1 0 -genus_sciurus%1:05:00:: 02356108 1 0 -genus_scleranthus%1:20:00:: 11814824 1 0 -genus_scleroderma%1:20:00:: 12968882 1 0 -genus_scleropages%1:05:00:: 02544960 1 0 -genus_sclerotinia%1:20:00:: 12967955 1 0 -genus_sclerotium%1:20:00:: 13082829 1 0 -genus_scolopax%1:05:00:: 02031143 1 0 -genus_scolopendrium%1:20:00:: 13184164 1 0 -genus_scolymus%1:20:00:: 12010458 1 0 -genus_scolytus%1:05:00:: 02179714 1 0 -genus_scomber%1:05:00:: 02624377 1 0 -genus_scomberesox%1:05:00:: 02551494 1 0 -genus_scomberomorus%1:05:00:: 02625418 1 0 -genus_scombresox%1:05:00:: 02551494 1 0 -genus_scophthalmus%1:05:00:: 02662688 1 0 -genus_scopolia%1:20:00:: 12913352 1 0 -genus_scorpaena%1:05:00:: 02642935 1 0 -genus_scorzonera%1:20:00:: 12012897 1 0 -genus_scrophularia%1:20:00:: 12876684 1 0 -genus_scutellaria%1:20:00:: 12867679 1 0 -genus_scutigera%1:05:00:: 01785532 1 0 -genus_scutigerella%1:05:00:: 01783571 1 0 -genus_sebastiana%1:20:00:: 12928690 1 0 -genus_sebastodes%1:05:00:: 02643989 1 0 -genus_secale%1:20:00:: 12133870 1 0 -genus_sedum%1:20:00:: 12785499 1 0 -genus_seismosaurus%1:05:00:: 01711297 1 0 -genus_seiurus%1:05:00:: 01570112 1 0 -genus_selaginella%1:20:00:: 13224454 1 0 -genus_selar%1:05:00:: 02580991 1 0 -genus_selenarctos%1:05:00:: 02133512 1 0 -genus_selene%1:05:00:: 02578125 1 0 -genus_selenicereus%1:20:00:: 11853644 1 0 -genus_selenipedium%1:20:00:: 12082764 1 0 -genus_senecio%1:20:00:: 12011067 1 0 -genus_senna%1:20:00:: 12498928 1 0 -genus_sepia%1:05:00:: 01972411 1 0 -genus_septobasidium%1:20:00:: 13069535 1 0 -genus_sequoia%1:20:00:: 11640471 1 0 -genus_sequoiadendron%1:20:00:: 11641275 1 0 -genus_serenoa%1:20:00:: 12597333 1 0 -genus_sericocarpus%1:20:00:: 12013323 1 0 -genus_serinus%1:05:00:: 01533169 1 0 -genus_seriola%1:05:00:: 02578604 1 0 -genus_seriphidium%1:20:00:: 12013811 1 0 -genus_seriphus%1:05:00:: 02598747 1 0 -genus_serranus%1:05:00:: 02568636 1 0 -genus_serrasalmus%1:05:00:: 02584325 1 0 -genus_serratia%1:05:00:: 01369633 1 0 -genus_serratula%1:20:00:: 12014739 1 0 -genus_sertularia%1:05:00:: 01913533 1 0 -genus_sesamum%1:20:00:: 12874642 1 0 -genus_sesbania%1:20:00:: 12569233 1 0 -genus_seseli%1:20:00:: 12944238 1 0 -genus_setaria%1:20:00:: 12134300 1 0 -genus_setophaga%1:05:00:: 01568019 1 0 -genus_shigella%1:05:00:: 01370142 1 0 -genus_shorea%1:20:00:: 12377328 1 0 -genus_shortia%1:20:00:: 12251997 1 0 -genus_sialia%1:05:00:: 01561884 1 0 -genus_sialis%1:05:00:: 02266732 1 0 -genus_sida%1:20:00:: 12186116 1 0 -genus_sidalcea%1:20:00:: 12187030 1 0 -genus_sideritis%1:20:00:: 12868248 1 0 -genus_sigmodon%1:05:00:: 02338592 1 0 -genus_silene%1:20:00:: 11815194 1 0 -genus_sillago%1:05:00:: 02637839 1 0 -genus_silphium%1:20:00:: 12015076 1 0 -genus_silurus%1:05:00:: 02518178 1 0 -genus_silvia%1:05:00:: 01564630 1 0 -genus_silybum%1:20:00:: 12015384 1 0 -genus_simarouba%1:20:00:: 12716166 1 0 -genus_simulium%1:05:00:: 02205523 1 0 -genus_sinanthropus%1:05:00:: 02473983 1 0 -genus_sinapis%1:20:00:: 11896365 1 0 -genus_sinningia%1:20:00:: 12833341 1 0 -genus_sinornis%1:05:00:: 01516487 1 0 -genus_siren%1:05:00:: 01639071 1 0 -genus_sison%1:20:00:: 12944590 1 0 -genus_sistrurus%1:05:00:: 01757547 1 0 -genus_sisymbrium%1:20:00:: 11896904 1 0 -genus_sisyrinchium%1:20:00:: 12418065 1 0 -genus_sitophylus%1:05:00:: 02182796 1 0 -genus_sitotroga%1:05:00:: 02293974 1 0 -genus_sitta%1:05:00:: 01590837 1 0 -genus_sium%1:20:00:: 12944960 1 0 -genus_sivapithecus%1:05:00:: 02477647 1 0 -genus_sloanea%1:20:00:: 12194466 1 0 -genus_smilax%1:20:00:: 12469936 1 0 -genus_smiledon%1:05:00:: 02130795 1 0 -genus_smyrnium%1:20:00:: 12945708 1 0 -genus_sobralia%1:20:00:: 12082980 1 0 -genus_solandra%1:20:00:: 12913645 1 0 -genus_solanopteris%1:20:00:: 13178500 1 0 -genus_solanum%1:20:00:: 12893094 1 0 -genus_solea%1:05:00:: 02664136 1 0 -genus_soleirolia%1:20:00:: 12393527 1 0 -genus_solenopsis%1:05:00:: 02220960 1 0 -genus_solenostemon%1:20:00:: 12868418 1 0 -genus_solidago%1:20:00:: 12015840 1 0 -genus_somateria%1:05:00:: 01853072 1 0 -genus_sonchus%1:20:00:: 12018640 1 0 -genus_sonora%1:05:00:: 01736256 1 0 -genus_sophora%1:20:00:: 12570126 1 0 -genus_sorbus%1:20:00:: 12657940 1 0 -genus_sorex%1:05:00:: 01891865 1 0 -genus_sorghum%1:20:00:: 12136944 1 0 -genus_spadella%1:05:00:: 01924416 1 0 -genus_spalax%1:05:00:: 02368687 1 0 -genus_sparaxis%1:20:00:: 12418356 1 0 -genus_sparganium%1:20:00:: 12156484 1 0 -genus_sparmannia%1:20:00:: 12205308 1 0 -genus_spartina%1:20:00:: 12139367 1 0 -genus_spartium%1:20:00:: 12571194 1 0 -genus_spathiphyllum%1:20:00:: 11792155 1 0 -genus_spergula%1:20:00:: 11817000 1 0 -genus_spergularia%1:20:00:: 11817329 1 0 -genus_spermophilus%1:05:00:: 02357741 1 0 -genus_sphacele%1:20:00:: 12851673 1 0 -genus_sphacelotheca%1:20:00:: 13067532 1 0 -genus_sphaeralcea%1:20:00:: 12187450 1 0 -genus_sphaerocarpos%1:20:00:: 11544540 1 0 -genus_sphaerocarpus%1:20:00:: 11544540 1 0 -genus_sphagnum%1:20:00:: 11541919 1 0 -genus_sphecius%1:05:00:: 02216066 1 0 -genus_sphecotheres%1:05:00:: 01576212 1 0 -genus_spheniscus%1:05:00:: 02056873 1 0 -genus_sphenodon%1:05:00:: 01673118 1 0 -genus_sphyraena%1:05:00:: 02603174 1 0 -genus_sphyrapicus%1:05:00:: 01840968 1 0 -genus_sphyrna%1:05:00:: 01494339 1 0 -genus_spilogale%1:05:00:: 02446888 1 0 -genus_spinacia%1:20:00:: 11835451 1 0 -genus_spinus%1:05:00:: 01532107 1 0 -genus_spiraea%1:20:00:: 12659203 1 0 -genus_spiranthes%1:20:00:: 12083339 1 0 -genus_spirillum%1:05:00:: 01363600 1 0 -genus_spirochaeta%1:05:00:: 01381829 1 0 -genus_spirodela%1:20:00:: 11795366 1 0 -genus_spirogyra%1:05:00:: 01410568 1 0 -genus_spirula%1:05:00:: 01972947 1 0 -genus_spizella%1:05:00:: 01535842 1 0 -genus_spodoptera%1:05:00:: 02297635 1 0 -genus_spondias%1:20:00:: 12765679 1 0 -genus_sporobolus%1:20:00:: 12140137 1 0 -genus_spraguea%1:20:00:: 11862089 1 0 -genus_spyeria%1:05:00:: 02278343 1 0 -genus_squalus%1:05:00:: 01493687 1 0 -genus_squatina%1:05:00:: 01495340 1 0 -genus_squilla%1:05:00:: 01990383 1 0 -genus_stachys%1:20:00:: 12868634 1 0 -genus_stanhopea%1:20:00:: 12084746 1 0 -genus_stanleya%1:20:00:: 11897342 1 0 -genus_stapelia%1:20:00:: 13238178 1 0 -genus_staphylea%1:20:00:: 12769663 1 0 -genus_staphylococcus%1:05:00:: 01379252 1 0 -genus_staurikosaurus%1:05:00:: 01701052 1 0 -genus_steatornis%1:05:00:: 01837363 1 0 -genus_steganopus%1:05:00:: 02038329 1 0 -genus_stegosaurus%1:05:00:: 01701697 1 0 -genus_stelis%1:20:00:: 12085117 1 0 -genus_stellaria%1:20:00:: 11817774 1 0 -genus_stenocarpus%1:20:00:: 12222715 1 0 -genus_stenochlaena%1:20:00:: 13185998 1 0 -genus_stenopelmatus%1:05:00:: 02229023 1 0 -genus_stenopterygius%1:05:00:: 01724947 1 0 -genus_stenotaphrum%1:20:00:: 12141037 1 0 -genus_stenotomus%1:05:00:: 02593353 1 0 -genus_stenotus%1:20:00:: 12019190 1 0 -genus_stentor%1:05:00:: 01396458 1 0 -genus_stephanomeria%1:20:00:: 11897760 1 0 -genus_stephanotis%1:20:00:: 13238828 1 0 -genus_stercorarius%1:05:00:: 02044358 1 0 -genus_sterculia%1:20:00:: 12195186 1 0 -genus_sterna%1:05:00:: 02043207 1 0 -genus_sternotherus%1:05:00:: 01667302 1 0 -genus_stevia%1:20:00:: 12019675 1 0 -genus_sticherus%1:20:00:: 13171041 1 0 -genus_stictomys%1:05:00:: 02366453 1 0 -genus_stictopelia%1:05:00:: 01813811 1 0 -genus_stizolobium%1:20:00:: 12549976 1 0 -genus_stizostedion%1:05:00:: 02557461 1 0 -genus_stokesia%1:20:00:: 12020048 1 0 -genus_storeria%1:05:00:: 01738175 1 0 -genus_strekelia%1:20:00:: 12422399 1 0 -genus_strelitzia%1:20:00:: 12354374 1 0 -genus_strepera%1:05:00:: 01583373 1 0 -genus_strepsiceros%1:05:00:: 02423787 1 0 -genus_streptocarpus%1:20:00:: 12833793 1 0 -genus_streptococcus%1:05:00:: 01380902 1 0 -genus_streptomyces%1:05:00:: 01376092 1 0 -genus_streptopelia%1:05:00:: 01813256 1 0 -genus_streptosolen%1:20:00:: 12914048 1 0 -genus_strix%1:05:00:: 01622596 1 0 -genus_strobilomyces%1:20:00:: 13059485 1 0 -genus_strombus%1:05:00:: 01943754 1 0 -genus_strongylodon%1:20:00:: 12571606 1 0 -genus_strophanthus%1:20:00:: 11775780 1 0 -genus_stropharia%1:20:00:: 13010401 1 0 -genus_struthio%1:05:00:: 01518718 1 0 -genus_struthiomimus%1:05:00:: 01716122 1 0 -genus_strymon%1:05:00:: 02282716 1 0 -genus_sturnella%1:05:00:: 01572910 1 0 -genus_sturnus%1:05:00:: 01576863 1 0 -genus_stylomecon%1:20:00:: 11908431 1 0 -genus_stylophorum%1:20:00:: 11908718 1 0 -genus_styphelia%1:20:00:: 12255086 1 0 -genus_styracosaurus%1:05:00:: 01704497 1 0 -genus_styrax%1:20:00:: 12777294 1 0 -genus_subularia%1:20:00:: 11898079 1 0 -genus_suillus%1:20:00:: 13059139 1 0 -genus_suksdorfia%1:20:00:: 12802248 1 0 -genus_sula%1:05:00:: 02053279 1 0 -genus_sundacarpus%1:20:00:: 11659500 1 0 -genus_suricata%1:05:00:: 02138323 1 0 -genus_surnia%1:05:00:: 01624406 1 0 -genus_sus%1:05:00:: 02395244 1 0 -genus_swainsona%1:20:00:: 11751598 1 0 -genus_swertia%1:20:00:: 12298783 1 0 -genus_swietinia%1:20:00:: 12699778 1 0 -genus_sylvilagus%1:05:00:: 02325211 1 0 -genus_symphalangus%1:05:00:: 02483564 1 0 -genus_symphoricarpos%1:20:00:: 12677427 1 0 -genus_symphytum%1:20:00:: 12822650 1 0 -genus_symplocarpus%1:20:00:: 11792598 1 0 -genus_symplocus%1:20:00:: 12776391 1 0 -genus_synagrops%1:05:00:: 02567201 1 0 -genus_synanceja%1:05:00:: 02643713 1 0 -genus_synaptomys%1:05:00:: 02345890 1 0 -genus_synchytrium%1:20:00:: 12979129 1 0 -genus_synercus%1:05:00:: 02409369 1 0 -genus_syngnathus%1:05:00:: 01455986 1 0 -genus_syngonium%1:20:00:: 11793032 1 0 -genus_syringa%1:20:00:: 12310153 1 0 -genus_syrrhaptes%1:05:00:: 01816336 1 0 -genus_syzygium%1:20:00:: 12339319 1 0 -genus_tabernaemontana%1:20:00:: 11776337 1 0 -genus_tacca%1:20:00:: 12475593 1 0 -genus_tachyglossus%1:05:00:: 01872244 1 0 -genus_tachypleus%1:05:00:: 01788157 1 0 -genus_tadarida%1:05:00:: 02149297 1 0 -genus_tadorna%1:05:00:: 01849348 1 0 -genus_taenia%1:05:00:: 01928073 1 0 -genus_tagetes%1:20:00:: 12020388 1 0 -genus_talinum%1:20:00:: 11862598 1 0 -genus_tamandua%1:05:00:: 02461014 1 0 -genus_tamarindus%1:20:00:: 12501035 1 0 -genus_tamarix%1:20:00:: 12386263 1 0 -genus_tamias%1:05:00:: 02359775 1 0 -genus_tamiasciurus%1:05:00:: 02357280 1 0 -genus_tamus%1:20:00:: 12089625 1 0 -genus_tanacetum%1:20:00:: 12021120 1 0 -genus_tantilla%1:05:00:: 01738965 1 0 -genus_tapirus%1:05:00:: 02393445 1 0 -genus_taraktagenos%1:20:00:: 12379278 1 0 -genus_taraktogenos%1:20:00:: 12379278 1 0 -genus_taraxacum%1:20:00:: 12023996 1 0 -genus_taricha%1:05:00:: 01631035 1 0 -genus_tarpon%1:05:00:: 02541583 1 0 -genus_tarrietia%1:20:00:: 12201166 1 0 -genus_tarsius%1:05:00:: 02501432 1 0 -genus_taurotragus%1:05:00:: 02426634 1 0 -genus_tautoga%1:05:00:: 02609951 1 0 -genus_tautogolabrus%1:05:00:: 02610234 1 0 -genus_taxidea%1:05:00:: 02447591 1 0 -genus_taxodium%1:20:00:: 11641788 1 0 -genus_taxus%1:20:00:: 11661207 1 0 -genus_tayassu%1:05:00:: 02397377 1 0 -genus_tectaria%1:20:00:: 13201239 1 0 -genus_tectona%1:20:00:: 12916356 1 0 -genus_telanthera%1:20:00:: 11826999 1 0 -genus_tellima%1:20:00:: 12802987 1 0 -genus_telopea%1:20:00:: 12223405 1 0 -genus_templetonia%1:20:00:: 12572021 1 0 -genus_tenrec%1:05:00:: 01894381 1 0 -genus_tephrosia%1:20:00:: 12572373 1 0 -genus_terebella%1:05:00:: 01937234 1 0 -genus_teredo%1:05:00:: 01966961 1 0 -genus_termes%1:05:00:: 02223151 1 0 -genus_terrapene%1:05:00:: 01669068 1 0 -genus_terrietia%1:20:00:: 12199564 1 0 -genus_testudo%1:05:00:: 01670378 1 0 -genus_tethus%1:05:00:: 01951107 1 0 -genus_tetraclinis%1:20:00:: 11642912 1 0 -genus_tetragonia%1:20:00:: 11822167 1 0 -genus_tetragonurus%1:05:00:: 02634717 1 0 -genus_tetrahymena%1:05:00:: 01396170 1 0 -genus_tetraneuris%1:20:00:: 12025019 1 0 -genus_tetrao%1:05:00:: 01796870 1 0 -genus_tetrapturus%1:05:00:: 02631899 1 0 -genus_teucrium%1:20:00:: 12869248 1 0 -genus_thalarctos%1:05:00:: 02133902 1 0 -genus_thalassoma%1:05:00:: 02609169 1 0 -genus_thalictrum%1:20:00:: 11738378 1 0 -genus_thamnophilus%1:05:00:: 01553620 1 0 -genus_thamnophis%1:05:00:: 01735062 1 0 -genus_thelypteris%1:20:00:: 13227557 1 0 -genus_theobroma%1:20:00:: 12201456 1 0 -genus_thermobia%1:05:00:: 02270810 1 0 -genus_thermopsis%1:20:00:: 12573078 1 0 -genus_thespesia%1:20:00:: 12188120 1 0 -genus_thevetia%1:20:00:: 11776861 1 0 -genus_thielavia%1:20:00:: 13027670 1 0 -genus_thiobacillus%1:05:00:: 01362999 1 0 -genus_thlaspi%1:20:00:: 11898474 1 0 -genus_thomomys%1:05:00:: 02354470 1 0 -genus_threskiornis%1:05:00:: 02006211 1 0 -genus_thrinax%1:20:00:: 12597640 1 0 -genus_thrips%1:05:00:: 02272428 1 0 -genus_thryothorus%1:05:00:: 01585890 1 0 -genus_thuja%1:20:00:: 11643684 1 0 -genus_thujopsis%1:20:00:: 11644712 1 0 -genus_thunbergia%1:20:00:: 12813024 1 0 -genus_thunnus%1:05:00:: 02626590 1 0 -genus_thylacinus%1:05:00:: 01884348 1 0 -genus_thylogale%1:05:00:: 01879095 1 0 -genus_thymus%1:20:00:: 12870392 1 0 -genus_thyrsopteris%1:20:00:: 13191770 1 0 -genus_thysanocarpus%1:20:00:: 11899027 1 0 -genus_tiarella%1:20:00:: 12803517 1 0 -genus_tibicen%1:05:00:: 02256882 1 0 -genus_tichodroma%1:05:00:: 01590042 1 0 -genus_tilapia%1:05:00:: 02586129 1 0 -genus_tilia%1:20:00:: 12202712 1 0 -genus_tillandsia%1:20:00:: 12607896 1 0 -genus_tilletia%1:20:00:: 13068073 1 0 -genus_timalia%1:05:00:: 01566509 1 0 -genus_tinca%1:05:00:: 01440655 1 0 -genus_tinea%1:05:00:: 02291940 1 0 -genus_tineola%1:05:00:: 02292272 1 0 -genus_tipuana%1:20:00:: 12573760 1 0 -genus_titanosaurus%1:05:00:: 01710529 1 0 -genus_tithonia%1:20:00:: 12025849 1 0 -genus_todea%1:20:00:: 12954634 1 0 -genus_todus%1:05:00:: 01831231 1 0 -genus_tofieldia%1:20:00:: 12461809 1 0 -genus_tolmiea%1:20:00:: 12804216 1 0 -genus_tolypeutes%1:05:00:: 02454999 1 0 -genus_tomistoma%1:05:00:: 01697837 1 0 -genus_toona%1:20:00:: 12700219 1 0 -genus_torreya%1:20:00:: 11649012 1 0 -genus_tortrix%1:05:00:: 02284367 1 0 -genus_townsendia%1:20:00:: 12026306 1 0 -genus_toxicodendron%1:20:00:: 12766241 1 0 -genus_toxostoma%1:05:00:: 01587713 1 0 -genus_toxotes%1:05:00:: 02620443 1 0 -genus_trachelospermum%1:20:00:: 11777365 1 0 -genus_trachinotus%1:05:00:: 02579420 1 0 -genus_trachipterus%1:05:00:: 02546477 1 0 -genus_trachodon%1:05:00:: 01707149 1 0 -genus_trachurus%1:05:00:: 02580546 1 0 -genus_tradescantia%1:20:00:: 12606797 1 0 -genus_tragelaphus%1:05:00:: 02423787 1 0 -genus_tragopan%1:05:00:: 01806984 1 0 -genus_tragopogon%1:20:00:: 12026764 1 0 -genus_tragulus%1:05:00:: 02436067 1 0 -genus_trapa%1:20:00:: 12348127 1 0 -genus_trautvetteria%1:20:00:: 11738832 1 0 -genus_trema%1:20:00:: 12410205 1 0 -genus_tremella%1:20:00:: 13060912 1 0 -genus_treponema%1:05:00:: 01382482 1 0 -genus_triaenodon%1:05:00:: 01493012 1 0 -genus_trialeurodes%1:05:00:: 02247076 1 0 -genus_triatoma%1:05:00:: 02244396 1 0 -genus_tribolium%1:05:00:: 02181599 1 0 -genus_tribonema%1:05:00:: 01401686 1 0 -genus_tribulus%1:20:00:: 12723446 1 0 -genus_triceratops%1:05:00:: 01704184 1 0 -genus_trichecus%1:05:00:: 02073679 1 0 -genus_trichoceros%1:20:00:: 12085469 1 0 -genus_trichodesmium%1:05:00:: 01359631 1 0 -genus_trichoglossus%1:05:00:: 01820937 1 0 -genus_tricholoma%1:20:00:: 13016749 1 0 -genus_trichomanes%1:20:00:: 12952022 1 0 -genus_trichomonas%1:05:00:: 01420314 1 0 -genus_trichophaga%1:05:00:: 02292564 1 0 -genus_trichophyton%1:20:00:: 13078483 1 0 -genus_trichostema%1:20:00:: 12871074 1 0 -genus_trichostigma%1:20:00:: 11856815 1 0 -genus_trichosurus%1:05:00:: 01881717 1 0 -genus_trichys%1:05:00:: 02347443 1 0 -genus_tridacna%1:05:00:: 01959333 1 0 -genus_trifolium%1:20:00:: 11752404 1 0 -genus_triga%1:05:00:: 02650282 1 0 -genus_triglochin%1:20:00:: 12617384 1 0 -genus_trigonella%1:20:00:: 12574143 1 0 -genus_trilisa%1:20:00:: 12027864 1 0 -genus_trillium%1:20:00:: 12468081 1 0 -genus_trimorphodon%1:05:00:: 01739518 1 0 -genus_trinectes%1:05:00:: 02665119 1 0 -genus_tringa%1:05:00:: 02027730 1 0 -genus_trionyx%1:05:00:: 01672275 1 0 -genus_triops%1:05:00:: 01996091 1 0 -genus_triostium%1:20:00:: 12679712 1 0 -genus_tripleurospermum%1:20:00:: 12028196 1 0 -genus_triplochiton%1:20:00:: 12201761 1 0 -genus_triticum%1:20:00:: 12141890 1 0 -genus_triturus%1:05:00:: 01630533 1 0 -genus_trogium%1:05:00:: 02261630 1 0 -genus_troglodytes%1:05:00:: 01584529 1 0 -genus_trogon%1:05:00:: 01844125 1 0 -genus_trollius%1:20:00:: 11739199 1 0 -genus_trombicula%1:05:00:: 01780919 1 0 -genus_tropaeolum%1:20:00:: 12719455 1 0 -genus_tropidoclonion%1:05:00:: 01735898 1 0 -genus_truncocolumella%1:20:00:: 12971956 1 0 -genus_tsuga%1:20:00:: 11627028 1 0 -genus_tuber%1:20:00:: 12985236 1 0 -genus_tubercularia%1:20:00:: 13081565 1 0 -genus_tulestoma%1:20:00:: 12970560 1 0 -genus_tulipa%1:20:00:: 12454021 1 0 -genus_tulostoma%1:20:00:: 12970560 1 0 -genus_tunga%1:05:00:: 02187427 1 0 -genus_tupaia%1:05:00:: 02495099 1 0 -genus_tupinambis%1:05:00:: 01687009 1 0 -genus_turbatrix%1:05:00:: 01931984 1 0 -genus_turdus%1:05:00:: 01557697 1 0 -genus_turnix%1:05:00:: 02019762 1 0 -genus_turreae%1:20:00:: 12700831 1 0 -genus_turritis%1:20:00:: 11899432 1 0 -genus_tursiops%1:05:00:: 02069569 1 0 -genus_tussilago%1:20:00:: 12029326 1 0 -genus_tylenchus%1:05:00:: 01932495 1 0 -genus_tympanuchus%1:05:00:: 01798352 1 0 -genus_typha%1:20:00:: 12155459 1 0 -genus_tyrannosaurus%1:05:00:: 01713635 1 0 -genus_tyrannus%1:05:00:: 01548143 1 0 -genus_tyto%1:05:00:: 01625417 1 0 -genus_uca%1:05:00:: 01980053 1 0 -genus_uintatherium%1:05:00:: 02371801 1 0 -genus_ulex%1:20:00:: 12574727 1 0 -genus_ulmus%1:20:00:: 12405209 1 0 -genus_ulva%1:05:00:: 01408547 1 0 -genus_uma%1:05:00:: 01678887 1 0 -genus_umbellularia%1:20:00:: 11707668 1 0 -genus_umbrina%1:05:00:: 02596888 1 0 -genus_unio%1:05:00:: 01964821 1 0 -genus_upupa%1:05:00:: 01829739 1 0 -genus_urginea%1:20:00:: 12462401 1 0 -genus_uria%1:05:00:: 02047152 1 0 -genus_urocyon%1:05:00:: 02120387 1 0 -genus_urocystis%1:20:00:: 13068565 1 0 -genus_urophycis%1:05:00:: 02524811 1 0 -genus_uropsilus%1:05:00:: 01890718 1 0 -genus_urosaurus%1:05:00:: 01681513 1 0 -genus_ursinia%1:20:00:: 12029929 1 0 -genus_ursus%1:05:00:: 02131942 1 0 -genus_urtica%1:20:00:: 12392385 1 0 -genus_usnea%1:20:00:: 12989739 1 0 -genus_ustilaginoidea%1:20:00:: 13081050 1 0 -genus_ustilago%1:20:00:: 13066803 1 0 -genus_uta%1:05:00:: 01681200 1 0 -genus_utahraptor%1:05:00:: 01718276 1 0 -genus_utricularia%1:20:00:: 12872257 1 0 -genus_uvularia%1:20:00:: 12474828 1 0 -genus_vaccaria%1:20:00:: 11818515 1 0 -genus_vaccinium%1:20:00:: 12245472 1 0 -genus_valeriana%1:20:00:: 12949955 1 0 -genus_valerianella%1:20:00:: 12950501 1 0 -genus_vallisneria%1:20:00:: 12615097 1 0 -genus_vanda%1:20:00:: 12085840 1 0 -genus_vanellus%1:05:00:: 02024636 1 0 -genus_vanessa%1:05:00:: 02275921 1 0 -genus_vangueria%1:20:00:: 12670558 1 0 -genus_vanilla%1:20:00:: 12086362 1 0 -genus_varanus%1:05:00:: 01694558 1 0 -genus_vedalia%1:05:00:: 02166674 1 0 -genus_velociraptor%1:05:00:: 01717335 1 0 -genus_venus%1:05:00:: 01957739 1 0 -genus_veratrum%1:20:00:: 12464278 1 0 -genus_verbascum%1:20:00:: 12888733 1 0 -genus_verbena%1:20:00:: 12914731 1 0 -genus_verbesina%1:20:00:: 12030265 1 0 -genus_vernonia%1:20:00:: 12031739 1 0 -genus_veronica%1:20:00:: 12890009 1 0 -genus_verticillium%1:20:00:: 13077811 1 0 -genus_vesicaria%1:20:00:: 11899595 1 0 -genus_vespa%1:05:00:: 02212811 1 0 -genus_vespertilio%1:05:00:: 02145767 1 0 -genus_vespula%1:05:00:: 02213362 1 0 -genus_vibrio%1:05:00:: 01364008 1 0 -genus_viburnum%1:20:00:: 12680125 1 0 -genus_vicia%1:20:00:: 12575089 1 0 -genus_vicugna%1:05:00:: 02438452 1 0 -genus_vidua%1:05:00:: 01543272 1 0 -genus_vigna%1:20:00:: 12577000 1 0 -genus_viminaria%1:20:00:: 12579242 1 0 -genus_vinca%1:20:00:: 11777779 1 0 -genus_vincetoxicum%1:20:00:: 13239471 1 0 -genus_viola%1:20:00:: 12387478 1 0 -genus_vipera%1:05:00:: 01752433 1 0 -genus_vireo%1:05:00:: 01602506 1 0 -genus_virgilia%1:20:00:: 12579593 1 0 -genus_viscum%1:20:00:: 12739072 1 0 -genus_vitis%1:20:00:: 13144511 1 0 -genus_vittaria%1:20:00:: 13179648 1 0 -genus_viverra%1:05:00:: 02135486 1 0 -genus_viverricula%1:05:00:: 02135726 1 0 -genus_volvaria%1:20:00:: 13018749 1 0 -genus_volvariella%1:20:00:: 13020011 1 0 -genus_volvox%1:05:00:: 01409244 1 0 -genus_vorticella%1:05:00:: 01396776 1 0 -genus_vulpes%1:05:00:: 02118854 1 0 -genus_vultur%1:05:00:: 01619675 1 0 -genus_weigela%1:20:00:: 12681768 1 0 -genus_welwitchia%1:20:00:: 11599165 1 0 -genus_welwitschia%1:20:00:: 11599165 1 0 -genus_wintera%1:20:00:: 11740208 1 0 -genus_wisteria%1:20:00:: 12580204 1 0 -genus_wolffia%1:20:00:: 11795774 1 0 -genus_wolffiella%1:20:00:: 11796318 1 0 -genus_woodsia%1:20:00:: 13201725 1 0 -genus_woodwardia%1:20:00:: 13186200 1 0 -genus_wyethia%1:20:00:: 12032215 1 0 -genus_wynnea%1:20:00:: 13034431 1 0 -genus_xanthium%1:20:00:: 12032939 1 0 -genus_xanthomonas%1:05:00:: 01361465 1 0 -genus_xanthorroea%1:20:00:: 12466034 1 0 -genus_xanthosoma%1:20:00:: 11793252 1 0 -genus_xenicus%1:05:00:: 01588589 1 0 -genus_xenopus%1:05:00:: 01654429 1 0 -genus_xenorhyncus%1:05:00:: 02004343 1 0 -genus_xenosaurus%1:05:00:: 01690857 1 0 -genus_xeranthemum%1:20:00:: 12033310 1 0 -genus_xerobates%1:05:00:: 01671312 1 0 -genus_xerophyllum%1:20:00:: 12465321 1 0 -genus_xiphias%1:05:00:: 02629581 1 0 -genus_xylaria%1:20:00:: 12966581 1 0 -genus_xylocopa%1:05:00:: 02209230 1 0 -genus_xylomelum%1:20:00:: 12223950 1 0 -genus_xylopia%1:20:00:: 11696776 1 0 -genus_xylosma%1:20:00:: 12380926 1 0 -genus_xyphophorus%1:05:00:: 01448165 1 0 -genus_xyris%1:20:00:: 12605519 1 0 -genus_yucca%1:20:00:: 12481806 1 0 -genus_zaglossus%1:05:00:: 01872635 1 0 -genus_zalophus%1:05:00:: 02078436 1 0 -genus_zamia%1:20:00:: 11601757 1 0 -genus_zannichellia%1:20:00:: 12617950 1 0 -genus_zantedeschia%1:20:00:: 11793651 1 0 -genus_zanthoxylum%1:20:00:: 12714550 1 0 -genus_zapus%1:05:00:: 02351212 1 0 -genus_zea%1:20:00:: 12143572 1 0 -genus_zenaidura%1:05:00:: 01814091 1 0 -genus_zerumbet%1:20:00:: 12356668 1 0 -genus_zeus%1:05:00:: 01452954 1 0 -genus_zigadenus%1:20:00:: 12466450 1 0 -genus_zingiber%1:20:00:: 12355594 1 0 -genus_zinjanthropus%1:05:00:: 02477187 1 0 -genus_zinnia%1:20:00:: 12033939 1 0 -genus_zizania%1:20:00:: 12145802 1 0 -genus_ziziphus%1:20:00:: 13143097 1 0 -genus_zoarces%1:05:00:: 02617402 1 0 -genus_zoisia%1:20:00:: 12146100 1 0 -genus_zonotrichia%1:05:00:: 01535310 1 0 -genus_zostera%1:20:00:: 12618524 1 0 -genus_zoysia%1:20:00:: 12146100 1 0 -genus_zygnema%1:05:00:: 01410330 1 0 -genus_zygocactus%1:20:00:: 11854232 1 0 -genus_zygophyllum%1:20:00:: 12720893 1 0 -genyonemus%1:05:00:: 02598438 1 0 -genyonemus_lineatus%1:05:00:: 02598573 1 0 -geocentric%3:00:00:: 01118568 1 0 -geocentric_parallax%1:19:00:: 11528939 1 0 -geochelone%1:05:00:: 01670673 1 0 -geochemistry%1:09:00:: 06090304 1 1 -geococcyx%1:05:00:: 01823912 1 0 -geococcyx_californianus%1:05:00:: 01824035 1 0 -geode%1:17:00:: 09287817 1 0 -geodesic%1:25:00:: 13870414 1 0 -geodesic%3:01:00:: 02993362 1 0 -geodesic_dome%1:06:00:: 03435593 1 0 -geodesic_line%1:25:00:: 13870414 1 0 -geodesical%3:01:00:: 02993362 1 0 -geodesy%1:09:00:: 06120881 1 0 -geodetic%3:01:00:: 02993362 1 0 -geoduck%1:05:00:: 01958531 1 0 -geoffrey_chaucer%1:18:00:: 10894065 1 0 -geoffrey_of_monmouth%1:18:00:: 10994660 1 0 -geoffroea%1:20:00:: 12531144 1 0 -geoffroea_decorticans%1:20:00:: 12531328 1 0 -geogia_holly%1:20:00:: 12758399 1 0 -geoglossaceae%1:20:00:: 13226526 1 0 -geoglossum%1:20:00:: 13226698 1 0 -geographer%1:18:00:: 10127555 1 1 -geographic%3:00:00:: 01470496 2 0 -geographic%3:01:00:: 03021543 1 1 -geographic_area%1:15:00:: 08574314 1 0 -geographic_expedition%1:04:00:: 00310063 1 0 -geographic_point%1:15:00:: 08578706 1 0 -geographic_region%1:15:00:: 08574314 1 0 -geographical%3:00:00:: 01470496 2 0 -geographical%3:01:00:: 03021543 1 2 -geographical_area%1:15:00:: 08574314 1 1 -geographical_mile%1:23:00:: 13660619 1 0 -geographical_point%1:15:00:: 08578706 1 0 -geographical_region%1:15:00:: 08574314 1 0 -geographical_zone%1:15:00:: 08541841 1 0 -geographically%4:02:00:: 00232172 1 2 -geographics%1:09:00:: 06122178 1 0 -geography%1:09:00:: 06122178 1 0 -geologic%3:01:00:: 02905591 1 0 -geologic_process%1:22:00:: 13486838 1 0 -geologic_time%1:28:00:: 15116283 1 0 -geological%3:01:00:: 02905591 1 2 -geological_dating%1:04:00:: 00992331 1 0 -geological_era%1:28:00:: 15248020 1 0 -geological_fault%1:17:00:: 09278537 1 0 -geological_formation%1:17:00:: 09287968 1 0 -geological_horizon%1:15:00:: 08658918 1 0 -geological_period%1:28:00:: 15247518 1 0 -geological_phenomenon%1:19:00:: 11417672 1 0 -geological_process%1:22:00:: 13486838 1 0 -geological_time%1:28:00:: 15116283 1 0 -geologically%4:02:00:: 00347717 1 0 -geologist%1:18:00:: 10127689 1 2 -geology%1:09:00:: 06115701 1 1 -geomancer%1:18:00:: 10127916 1 0 -geomancy%1:09:00:: 05776875 1 0 -geometer%1:18:00:: 10128016 1 0 -geometric%3:01:00:: 02735208 2 2 -geometric%5:00:00:nonrepresentational:00 01981009 1 9 -geometric_mean%1:09:00:: 06024431 1 0 -geometric_pace%1:23:00:: 13655790 1 0 -geometric_progression%1:14:00:: 08461172 1 0 -geometric_series%1:09:00:: 05863480 1 0 -geometrical%3:01:00:: 02735208 1 1 -geometrical%5:00:00:nonrepresentational:00 01981009 2 0 -geometrical_irregularity%1:07:00:: 05066012 1 0 -geometrical_regularity%1:07:00:: 05065211 1 0 -geometrically%4:02:00:: 00090103 2 0 -geometrically%4:02:03:: 00141775 1 0 -geometrician%1:18:00:: 10128016 1 0 -geometrid%1:05:00:: 02287004 1 0 -geometrid_moth%1:05:00:: 02287004 1 0 -geometridae%1:05:00:: 02286815 1 0 -geometry%1:09:00:: 06004685 1 3 -geometry_teacher%1:18:00:: 10128163 1 0 -geomorphologic%3:01:00:: 02949511 1 0 -geomorphological%3:01:00:: 02949511 1 0 -geomorphology%1:09:00:: 06117855 1 0 -geomyidae%1:05:00:: 02353529 1 0 -geomys%1:05:00:: 02353709 1 0 -geomys_bursarius%1:05:00:: 02354162 1 0 -geomys_pinetis%1:05:00:: 02354320 1 0 -geophagia%1:04:00:: 00840898 1 0 -geophagy%1:04:00:: 00840898 1 0 -geophilidae%1:05:00:: 01786048 1 0 -geophilomorpha%1:05:00:: 01785831 1 0 -geophilus%1:05:00:: 01786219 1 0 -geophysical%3:01:00:: 02908235 1 0 -geophysical_science%1:09:00:: 06117562 1 0 -geophysicist%1:18:00:: 10128519 1 0 -geophysics%1:09:00:: 06117562 1 0 -geophyte%1:20:00:: 13120958 1 0 -geophytic%3:01:00:: 02735375 1 0 -geopolitical%3:01:00:: 02907935 1 0 -geopolitics%1:09:00:: 06148748 1 0 -geordie%1:10:00:: 06948149 2 0 -geordie%1:18:00:: 09704283 1 0 -georg_friedrich_bernhard_riemann%1:18:00:: 11262168 1 0 -georg_friedrich_handel%1:18:00:: 11027631 1 0 -georg_meissner%1:18:00:: 11171513 1 0 -georg_philipp_telemann%1:18:00:: 11334925 1 0 -georg_simon_ohm%1:18:00:: 11213094 1 0 -georg_wilhelm_friedrich_hegel%1:18:00:: 11038084 1 0 -georg_wilhelm_steller%1:18:00:: 11316141 1 0 -george%1:18:00:: 10996285 1 0 -george%1:18:01:: 10994906 7 0 -george%1:18:02:: 10995115 6 0 -george%1:18:03:: 10995292 5 0 -george%1:18:04:: 10995592 4 0 -george%1:18:05:: 10995850 3 0 -george%1:18:06:: 10996090 2 0 -george_armstrong_custer%1:18:00:: 10919061 1 0 -george_balanchine%1:18:00:: 10831656 1 0 -george_beadle%1:18:00:: 10839131 1 0 -george_berkeley%1:18:00:: 10847125 1 0 -george_bernard_shaw%1:18:00:: 11295936 1 0 -george_boole%1:18:00:: 10857271 1 0 -george_bryan_brummell%1:18:00:: 10868397 1 0 -george_burns%1:18:00:: 10873783 1 0 -george_bush%1:18:00:: 10875468 2 0 -george_bush%1:18:01:: 10875910 1 0 -george_c._scott%1:18:00:: 11289709 1 0 -george_catlett_marshall%1:18:00:: 11158982 1 0 -george_charles_hevesy_de_hevesy%1:18:00:: 11048389 1 0 -george_dewey%1:18:00:: 10933084 1 0 -george_dibdin-pitt%1:18:00:: 11236663 1 0 -george_dibdin_pitt%1:18:00:: 11236663 1 0 -george_du_maurier%1:18:00:: 10945048 1 0 -george_eastman%1:18:00:: 10947628 1 0 -george_edward_moore%1:18:00:: 11189709 1 0 -george_edward_pickett%1:18:00:: 11234472 1 0 -george_eliot%1:18:00:: 10956883 1 0 -george_ellery_hale%1:18:00:: 11023442 1 0 -george_enescu%1:18:00:: 10959074 1 0 -george_f._kennan%1:18:00:: 11100798 1 0 -george_fox%1:18:00:: 10976862 1 0 -george_frederick_handel%1:18:00:: 11027631 1 0 -george_frideric_handel%1:18:00:: 11027631 1 0 -george_frost_kennan%1:18:00:: 11100798 1 0 -george_gamow%1:18:00:: 10989099 1 0 -george_gershwin%1:18:00:: 10996876 1 0 -george_gilbert_aime_murphy%1:18:00:: 11197417 1 0 -george_gordon_meade%1:18:00:: 11170438 1 0 -george_guess%1:18:00:: 11293157 1 0 -george_h.w._bush%1:18:00:: 10875468 1 0 -george_harrison%1:18:00:: 11031842 1 0 -george_herbert_hitchings%1:18:00:: 11052498 1 0 -george_herbert_mead%1:18:00:: 11170123 1 0 -george_herbert_walker_bush%1:18:00:: 10875468 1 0 -george_herman_ruth%1:18:00:: 11276100 1 0 -george_hubert_wilkins%1:18:00:: 11387539 1 0 -george_huntington%1:18:00:: 11067604 1 0 -george_i%1:18:00:: 10994906 1 0 -george_ii%1:18:00:: 10995115 1 0 -george_iii%1:18:00:: 10995292 1 0 -george_iv%1:18:00:: 10995592 1 0 -george_louis_palmella_busson_du_maurier%1:18:00:: 10945048 1 0 -george_lucas%1:18:00:: 11143458 1 0 -george_m._cohan%1:18:00:: 10904463 1 0 -george_macaulay_trevelyan%1:18:00:: 11348584 1 0 -george_marshall%1:18:00:: 11158982 1 0 -george_mason%1:18:00:: 11163160 1 0 -george_meany%1:18:00:: 11170764 1 0 -george_meredith%1:18:00:: 11175875 1 0 -george_michael_cohan%1:18:00:: 10904463 1 0 -george_orson_welles%1:18:00:: 11380768 1 0 -george_orwell%1:18:00:: 11217479 1 0 -george_otto_trevelyan%1:18:00:: 11348356 1 0 -george_paget_thomson%1:18:00:: 11340411 1 0 -george_percy_aldridge_grainger%1:18:00:: 11010697 1 0 -george_pitt%1:18:00:: 11236663 1 0 -george_s._kaufman%1:18:00:: 11097625 1 0 -george_sand%1:18:00:: 11280013 1 0 -george_segal%1:18:00:: 11291179 1 0 -george_simon_kaufman%1:18:00:: 11097625 1 0 -george_stephenson%1:18:00:: 11316669 1 0 -george_stevens%1:18:00:: 11317309 1 0 -george_szell%1:18:00:: 11327964 1 0 -george_town%1:15:00:: 08709593 1 0 -george_v%1:18:00:: 10995850 1 0 -george_vancouver%1:18:00:: 11358863 1 0 -george_vi%1:18:00:: 10996090 1 0 -george_w._bush%1:18:00:: 10875910 1 0 -george_walker_bush%1:18:00:: 10875910 1 0 -george_washington%1:18:00:: 11375418 1 1 -george_washington_bridge%1:06:00:: 03435825 1 0 -george_washington_carver%1:18:00:: 10885603 1 0 -george_washington_goethals%1:18:00:: 11003918 1 0 -george_wells_beadle%1:18:00:: 10839131 1 0 -george_westinghouse%1:18:00:: 11382555 1 0 -george_william_russell%1:18:00:: 11275035 1 0 -georges_bizet%1:18:00:: 10851865 1 0 -georges_braque%1:18:00:: 10862999 1 0 -georges_clemenceau%1:18:00:: 10900524 1 0 -georges_cuvier%1:18:00:: 10919278 1 0 -georges_de_la_tour%1:18:00:: 11118481 1 0 -georges_enesco%1:18:00:: 10959074 1 0 -georges_eugene_benjamin_clemenceau%1:18:00:: 10900524 1 0 -georges_gilles_de_la_tourette%1:18:00:: 11346568 1 0 -georges_henri_lemaitre%1:18:00:: 11125646 1 0 -georges_jacques_danton%1:18:00:: 10922501 1 0 -georges_joseph_christian_simenon%1:18:00:: 11300678 1 0 -georges_leopold_chretien_frederic_dagobert_cuvier%1:18:00:: 10919278 1 0 -georges_pierre_seurat%1:18:00:: 11294202 1 0 -georges_seurat%1:18:00:: 11294202 1 0 -georges_simenon%1:18:00:: 11300678 1 0 -georgetown%1:15:00:: 08948704 2 0 -georgetown%1:15:01:: 09071571 1 0 -georgette%1:06:00:: 03435743 1 0 -georgi_konstantinovich_zhukov%1:18:00:: 11406460 1 0 -georgi_zhukov%1:18:00:: 11406460 1 0 -georgia%1:15:00:: 09075842 1 17 -georgia%1:15:01:: 09018848 3 0 -georgia%1:15:02:: 09076421 2 1 -georgia_bark%1:20:00:: 12669362 1 0 -georgia_home_boy%1:06:00:: 04253751 1 0 -georgia_okeeffe%1:18:00:: 11213216 1 0 -georgia_pine%1:20:00:: 11615967 1 0 -georgian%1:10:00:: 06978766 3 0 -georgian%1:18:00:: 09742443 1 1 -georgian%1:18:01:: 09729156 2 0 -georgian%3:01:00:: 03067506 4 0 -georgian%3:01:04:: 03067712 3 0 -georgian%3:01:05:: 03067957 2 0 -georgian%3:01:06:: 03068198 1 0 -georgian_monetary_unit%1:23:00:: 13700533 1 0 -georgiana_barrymore%1:18:00:: 10835450 1 0 -georgiana_emma_barrymore%1:18:00:: 10835450 1 0 -geosphere%1:17:00:: 09339810 1 0 -geostationary%5:00:00:fixed:00 01059911 1 0 -geostationary_orbit%1:15:00:: 08612644 1 0 -geostrategic%3:01:00:: 02735476 1 0 -geostrategy%1:09:00:: 06148915 1 0 -geosynchronous%5:00:00:fixed:00 01060110 1 0 -geosynchronous_orbit%1:15:00:: 08612498 1 0 -geothermal%3:01:00:: 02735669 1 0 -geothermal_energy%1:19:00:: 11466337 1 0 -geothermally%4:02:00:: 00127952 1 0 -geothermic%3:01:00:: 02735669 1 0 -geothlypis%1:05:00:: 01570549 1 0 -geothlypis_trichas%1:05:00:: 01570839 1 0 -geotropism%1:04:00:: 00861990 1 0 -geraint%1:18:00:: 10996533 1 0 -gerald_ford%1:18:00:: 10974740 1 0 -gerald_r._ford%1:18:00:: 10974740 1 0 -gerald_rudolph_ford%1:18:00:: 10974740 1 0 -geraniaceae%1:20:00:: 12685214 1 0 -geraniales%1:20:00:: 12684640 1 0 -geranium%1:20:00:: 12685431 1 0 -geranium_family%1:20:00:: 12685214 1 0 -geranium_maculatum%1:20:00:: 12686077 1 0 -geranium_molle%1:20:00:: 12687044 1 0 -geranium_pratense%1:20:00:: 12686274 1 0 -geranium_richardsonii%1:20:00:: 12686496 1 0 -geranium_robertianum%1:20:00:: 12686676 1 0 -geranium_viscosissimum%1:20:00:: 12686877 1 0 -gerard_depardieu%1:18:00:: 10931059 1 0 -gerard_kuiper%1:18:00:: 11112628 1 0 -gerard_manley_hopkins%1:18:00:: 11059772 1 0 -gerard_peter_kuiper%1:18:00:: 11112628 1 0 -gerardia%1:20:00:: 12883628 1 0 -gerardia_pedicularia%1:20:00:: 12878784 1 0 -gerardia_virginica%1:20:00:: 12879068 1 0 -gerardus_mercator%1:18:00:: 11175243 1 0 -gerbera%1:20:00:: 11971600 1 0 -gerbera_jamesonii%1:20:00:: 11971927 1 0 -gerbert%1:18:00:: 11327398 1 0 -gerbil%1:05:00:: 02343772 1 0 -gerbille%1:05:00:: 02343772 1 0 -gerbillinae%1:05:00:: 02343487 1 0 -gerbillus%1:05:00:: 02343633 1 0 -gerea%1:20:00:: 11972141 1 0 -gerea_canescens%1:20:00:: 11972291 1 0 -gerenuk%1:05:00:: 02420828 1 0 -gerfalcon%1:05:00:: 01611800 1 0 -gerhard_gerhards%1:18:00:: 10959857 1 0 -gerhard_herzberg%1:18:00:: 11047139 1 0 -gerhard_kremer%1:18:00:: 11175243 1 0 -geriatric%3:01:00:: 02916539 2 0 -geriatric%3:01:01:: 02916730 1 0 -geriatrician%1:18:00:: 10128381 1 0 -geriatrics%1:09:00:: 06050650 1 0 -germ%1:05:00:: 01384491 3 0 -germ%1:08:00:: 05229805 2 0 -germ%1:09:00:: 05834758 1 1 -germ_cell%1:08:00:: 05456732 1 0 -germ_layer%1:05:00:: 01463519 1 0 -germ_plasm%1:08:00:: 05435722 1 0 -germ_pore%1:20:00:: 11680277 1 0 -germ_theory%1:09:00:: 06108487 1 0 -germ_tube%1:20:00:: 11680457 1 0 -germ_warfare%1:04:00:: 00996056 1 0 -german%1:10:00:: 06950528 2 6 -german%1:18:00:: 09747722 1 7 -german%3:01:00:: 02957469 1 11 -german-american%3:01:00:: 02916852 1 0 -german-speaking%5:00:00:communicative:00 00497717 1 0 -german_american%1:18:00:: 09742315 1 0 -german_bee%1:05:00:: 02208848 1 0 -german_capital%1:15:00:: 08769645 1 0 -german_chamomile%1:20:00:: 11995092 1 0 -german_cockroach%1:05:00:: 02234848 1 0 -german_democratic_republic%1:15:00:: 08768647 1 0 -german_iris%1:20:01:: 12413880 2 0 -german_iris%1:20:02:: 12414159 1 0 -german_ivy%1:20:00:: 11960673 1 0 -german_language%1:10:00:: 06950528 1 0 -german_lesson%1:04:00:: 00729731 1 0 -german_luftwaffe%1:14:00:: 08195229 1 0 -german_mark%1:23:00:: 13688033 1 0 -german_measles%1:26:00:: 14123259 1 0 -german_millet%1:20:00:: 12135729 1 0 -german_monetary_unit%1:23:00:: 13687906 1 0 -german_nazi%1:18:00:: 10350220 1 0 -german_pancake%1:13:00:: 07641380 1 0 -german_police_dog%1:05:00:: 02106662 1 0 -german_rampion%1:20:00:: 12344483 1 0 -german_shepherd%1:05:00:: 02106662 1 0 -german_shepherd_dog%1:05:00:: 02106662 1 0 -german_short-haired_pointer%1:05:00:: 02100236 1 0 -german_silver%1:27:00:: 14962387 1 0 -german_tamarisk%1:20:00:: 12386945 1 0 -germander%1:20:00:: 12869478 1 0 -germander_speedwell%1:20:00:: 12891305 1 0 -germane%5:00:00:relevant:00 01975671 1 0 -germaneness%1:24:00:: 13795042 1 0 -germanic%1:10:00:: 06946497 1 0 -germanic%3:01:00:: 03068330 1 0 -germanic%3:01:02:: 02958126 2 0 -germanic_language%1:10:00:: 06946497 1 0 -germanism%1:04:00:: 00414071 1 0 -germanist%1:18:00:: 10128254 1 0 -germanite%1:27:00:: 14676608 1 0 -germanium%1:27:00:: 14638517 1 3 -germany%1:15:00:: 08766988 1 11 -germfree%3:00:00:: 02116618 1 0 -germicidal%5:00:00:antiseptic:00 02116054 1 0 -germicide%1:06:00:: 03208229 1 0 -germinal%1:28:00:: 15176937 1 0 -germinal%5:00:00:original:00 01687363 1 1 -germinal_area%1:05:00:: 01459480 1 0 -germinal_disc%1:05:00:: 01459480 1 0 -germinate%2:30:00:: 00357332 1 2 -germinate%2:30:01:: 00357667 3 0 -germinate%2:36:00:: 01738597 2 0 -germination%1:11:00:: 07324235 2 0 -germination%1:22:00:: 13487207 1 0 -germy%3:00:00:: 02116934 1 0 -geronimo%1:18:00:: 10996677 1 0 -gerontocracy%1:14:00:: 08361720 1 0 -gerontological%3:01:00:: 02916539 1 0 -gerontologist%1:18:00:: 10128381 1 0 -gerontology%1:09:00:: 06050650 1 0 -gerreidae%1:05:00:: 02636666 1 0 -gerres%1:05:00:: 02637046 1 0 -gerres_cinereus%1:05:00:: 02637179 1 0 -gerrhonotus%1:05:00:: 01689678 1 0 -gerridae%1:05:01:: 02243351 2 0 -gerridae%1:05:02:: 02636666 1 0 -gerrididae%1:05:00:: 02243351 1 0 -gerris%1:05:00:: 02243744 1 0 -gerris_lacustris%1:05:00:: 02243878 1 0 -gerrymander%1:04:00:: 00754593 1 0 -gerrymander%2:41:00:: 02467516 1 0 -gershwin%1:18:00:: 10996876 2 0 -gershwin%1:18:01:: 10997068 1 0 -gertrude_caroline_ederle%1:18:00:: 10948798 1 0 -gertrude_ederle%1:18:00:: 10948798 1 0 -gertrude_lawrence%1:18:00:: 11120530 1 0 -gertrude_stein%1:18:00:: 11314666 1 0 -gerund%1:10:00:: 06318352 1 0 -gerundial%3:01:00:: 03121060 1 2 -geryon%1:18:00:: 09494951 1 0 -gesell%1:18:00:: 10997234 1 0 -gesner%1:18:00:: 10997405 1 0 -gesneria%1:20:00:: 12829975 1 0 -gesneria_family%1:20:00:: 12829099 1 0 -gesneriaceae%1:20:00:: 12829099 1 0 -gesneriad%1:20:00:: 12829582 1 0 -gesso%1:27:00:: 14676756 1 0 -gestalt%1:09:00:: 05931341 1 0 -gestalt_law_of_organization%1:09:00:: 05878440 1 0 -gestalt_principle_of_organization%1:09:00:: 05878440 1 0 -gestalt_psychology%1:09:00:: 06141324 1 0 -gestapo%1:14:00:: 08211760 1 0 -gestate%2:29:00:: 00059019 2 0 -gestate%2:36:03:: 01633343 1 0 -gestation%1:09:00:: 05772215 3 0 -gestation%1:26:00:: 14046202 2 0 -gestation%1:28:00:: 15226214 1 0 -gestation_period%1:28:00:: 15226214 1 0 -gestational%3:01:00:: 02983097 1 0 -gestational_age%1:07:00:: 04925064 1 0 -gesticulate%2:32:00:: 00992041 1 4 -gesticulating%5:00:00:communicative:00 00497808 1 1 -gesticulation%1:10:00:: 06876771 1 0 -gestural%5:00:01:communicative:00 00497964 2 0 -gestural%5:00:02:communicative:00 00498161 1 0 -gesture%1:04:00:: 00334509 1 20 -gesture%1:04:02:: 01228380 3 3 -gesture%1:10:00:: 06876309 2 4 -gesture%2:32:00:: 00992041 1 3 -get%1:04:00:: 00567896 1 0 -get%2:29:00:: 00087736 13 4 -get%2:29:01:: 00094460 12 4 -get%2:29:08:: 00054628 36 0 -get%2:29:11:: 00065639 35 0 -get%2:30:00:: 00149583 2 157 -get%2:30:01:: 00120316 15 3 -get%2:30:02:: 00120796 3 82 -get%2:30:03:: 00522751 4 64 -get%2:30:12:: 00345761 34 0 -get%2:31:03:: 00639849 20 1 -get%2:31:09:: 00589904 17 2 -get%2:31:10:: 00622384 33 0 -get%2:32:00:: 00770437 10 7 -get%2:32:03:: 01066036 14 3 -get%2:32:08:: 01026975 16 2 -get%2:33:00:: 01153947 8 14 -get%2:35:00:: 01505958 18 1 -get%2:35:03:: 01433294 6 45 -get%2:35:09:: 01215421 11 4 -get%2:35:10:: 01401115 19 1 -get%2:35:12:: 01565211 32 0 -get%2:36:00:: 01643297 31 0 -get%2:36:14:: 01738107 30 0 -get%2:37:11:: 01771039 29 0 -get%2:37:12:: 01771194 28 0 -get%2:38:00:: 02005948 5 58 -get%2:38:12:: 02006573 27 0 -get%2:38:15:: 02010864 26 0 -get%2:39:00:: 02108026 7 36 -get%2:39:09:: 02109645 24 0 -get%2:39:13:: 02189398 23 0 -get%2:39:14:: 02108654 25 0 -get%2:40:00:: 02210855 1 235 -get%2:40:01:: 02355596 9 9 -get%2:40:13:: 02208265 22 0 -get%2:40:14:: 02359340 21 0 -get-at-able%5:00:00:accessible:00 00019505 1 0 -get-go%1:28:00:: 15265518 1 0 -get-up-and-go%1:07:00:: 04836683 1 0 -get-well_card%1:10:00:: 06627357 1 0 -get_a_line%2:31:00:: 00598954 1 0 -get_a_load%2:39:00:: 02131777 1 0 -get_a_look%2:39:00:: 02129879 1 3 -get_a_noseful%2:39:00:: 02126269 1 0 -get_a_whiff%2:39:00:: 02126269 1 0 -get_about%2:38:00:: 01842888 1 1 -get_across%2:31:00:: 00591755 2 1 -get_across%2:32:00:: 00744904 1 1 -get_across%2:38:00:: 01912159 3 0 -get_ahead%2:33:00:: 01111028 1 4 -get_along%2:30:00:: 00248659 3 0 -get_along%2:41:00:: 02458566 2 4 -get_along%2:42:00:: 02617567 1 4 -get_along_with%2:41:00:: 02458566 1 1 -get_around%2:32:00:: 00935987 1 4 -get_around%2:32:01:: 00811171 2 2 -get_around%2:38:00:: 01842888 4 0 -get_around%2:41:00:: 02389815 3 0 -get_around_to%2:41:00:: 02428316 1 4 -get_at%2:37:00:: 01787955 3 0 -get_at%2:38:00:: 02007417 1 1 -get_at%2:41:00:: 02586371 2 0 -get_away%2:32:00:: 00810729 2 4 -get_away%2:38:00:: 02074677 1 8 -get_away%2:41:00:: 02599004 3 1 -get_back%2:33:00:: 01153762 2 1 -get_back%2:33:01:: 01111570 1 4 -get_back%2:33:13:: 01092128 3 0 -get_behind%2:38:00:: 02058756 1 1 -get_by%2:32:00:: 00810729 3 1 -get_by%2:38:00:: 02049963 2 1 -get_by%2:41:00:: 02587532 1 3 -get_cracking%2:30:00:: 00348541 1 0 -get_down%2:30:00:: 00345761 7 0 -get_down%2:32:00:: 01020356 6 0 -get_down%2:34:00:: 01201856 4 1 -get_down%2:37:00:: 01814396 5 0 -get_down%2:38:00:: 01973125 2 1 -get_down%2:38:01:: 01958452 3 1 -get_down%2:38:02:: 01973486 1 3 -get_dressed%2:29:00:: 00046534 1 0 -get_even%2:33:00:: 01115411 1 1 -get_even%2:33:01:: 01153762 2 0 -get_going%2:30:00:: 00348541 2 0 -get_going%2:38:00:: 01864230 1 2 -get_hitched_with%2:41:00:: 02488834 1 0 -get_hold%2:40:00:: 02213336 1 0 -get_hold_of%2:31:00:: 00737656 3 0 -get_hold_of%2:32:00:: 00743344 2 0 -get_hold_of%2:35:00:: 01214265 1 1 -get_in%2:38:00:: 02015384 4 1 -get_in%2:38:01:: 02016523 1 13 -get_in%2:40:01:: 02239405 3 1 -get_in%2:41:00:: 02585860 2 2 -get_in_touch%2:41:00:: 02389346 1 5 -get_into%2:29:00:: 00050652 5 1 -get_into%2:32:00:: 00875000 4 1 -get_into%2:38:00:: 02016523 2 7 -get_into%2:40:00:: 02239405 3 4 -get_into%2:42:00:: 02636810 1 11 -get_it%2:31:00:: 00590366 1 4 -get_it%2:41:00:: 02500397 2 1 -get_it_on%2:35:00:: 01426397 1 0 -get_laid%2:35:00:: 01426397 1 0 -get_married%2:41:00:: 02488834 1 5 -get_moving%2:30:00:: 00348541 1 0 -get_off%2:32:00:: 00810729 5 1 -get_off%2:32:01:: 00905059 4 1 -get_off%2:32:04:: 00941855 11 0 -get_off%2:32:05:: 01062555 3 1 -get_off%2:34:00:: 01200934 10 0 -get_off%2:35:00:: 01437888 9 0 -get_off%2:38:00:: 01958452 7 0 -get_off%2:38:01:: 01923732 8 0 -get_off%2:38:02:: 02016062 1 3 -get_off%2:39:00:: 02197250 6 0 -get_off%2:41:00:: 02412089 2 1 -get_off_the_ground%2:38:00:: 01864438 1 2 -get_on%2:30:00:: 00248659 6 1 -get_on%2:30:01:: 00424337 5 1 -get_on%2:30:03:: 00248026 7 0 -get_on%2:38:00:: 01923414 3 1 -get_on%2:38:02:: 01849983 4 1 -get_on%2:38:03:: 02018049 2 1 -get_on%2:41:00:: 02458566 1 2 -get_on_with%2:41:00:: 02458566 1 0 -get_one's_lumps%2:31:00:: 00738159 1 0 -get_onto%2:31:00:: 00590366 1 1 -get_out%2:32:00:: 00935987 6 0 -get_out%2:32:01:: 01009986 4 2 -get_out%2:32:03:: 00810729 7 0 -get_out%2:35:00:: 01214597 2 9 -get_out%2:38:00:: 02015168 3 3 -get_out%2:38:01:: 02015598 1 31 -get_out%2:38:02:: 01995211 5 0 -get_over%2:30:00:: 00268011 3 1 -get_over%2:33:00:: 01108627 4 0 -get_over%2:36:00:: 01641341 2 1 -get_over%2:38:00:: 01912159 1 4 -get_rid_of%2:30:00:: 00471711 2 3 -get_rid_of%2:40:01:: 02224055 1 7 -get_rid_of%2:41:00:: 02427334 3 0 -get_rolling%2:30:00:: 00348541 1 0 -get_started%2:30:00:: 00348541 1 5 -get_stuck%2:38:00:: 01834896 1 0 -get_the_best%2:33:02:: 01104018 1 1 -get_the_better_of%2:33:00:: 01108148 1 0 -get_the_goods%2:31:00:: 00599434 1 0 -get_the_hang%2:31:00:: 00597634 1 0 -get_the_jump%2:33:00:: 01104376 1 0 -get_the_picture%2:31:00:: 00588221 1 1 -get_through%2:30:00:: 00484892 1 4 -get_through%2:31:00:: 00591755 5 0 -get_through%2:32:00:: 00743344 4 0 -get_through%2:38:00:: 02021921 3 1 -get_through%2:42:00:: 02709277 2 1 -get_to%2:30:00:: 00347276 2 3 -get_to%2:37:00:: 01787955 3 0 -get_to%2:38:02:: 02022162 1 4 -get_to_grips%2:41:00:: 02437157 1 0 -get_together%1:14:00:: 08310389 1 0 -get_together%2:41:00:: 02416278 3 1 -get_together%2:41:01:: 02486932 2 1 -get_together%2:41:02:: 02434976 4 0 -get_together%2:41:03:: 02598143 1 1 -get_under_one's_skin%2:37:00:: 01771194 1 0 -get_up%2:29:00:: 00018158 2 6 -get_up%2:29:01:: 00018405 4 3 -get_up%2:29:02:: 00044149 6 1 -get_up%2:29:03:: 00096648 5 1 -get_up%2:31:00:: 00605783 8 0 -get_up%2:36:00:: 01651444 7 0 -get_up%2:38:00:: 01974062 3 5 -get_up%2:38:01:: 01983264 1 15 -get_weaving%2:30:00:: 00348541 1 0 -get_well%2:30:00:: 00268011 1 0 -get_wind%2:31:01:: 00598954 1 0 -get_wise%2:31:00:: 00590366 1 0 -get_word%2:31:00:: 00598954 1 1 -get_worse%2:30:00:: 00268165 1 1 -geta%1:06:00:: 03047690 1 0 -getable%5:00:00:available:00 00184363 1 0 -getatable%5:00:00:accessible:00 00019505 1 0 -getaway%1:04:00:: 00060201 2 0 -getaway%1:07:00:: 05061003 1 0 -gettable%5:00:00:available:00 00184363 1 0 -getting%1:04:00:: 00041899 1 0 -getting_even%1:04:00:: 01234729 1 0 -gettysburg%1:04:00:: 01279615 2 0 -gettysburg%1:15:00:: 09135590 1 0 -gettysburg_address%1:10:00:: 07239550 1 0 -getulio_dornelles_vargas%1:18:00:: 11360744 1 0 -getup%1:06:00:: 03859958 1 0 -geum%1:20:00:: 12631224 1 0 -geum_alleppicum_strictum%1:20:00:: 12631637 1 0 -geum_canadense%1:20:00:: 12631813 1 0 -geum_macrophyllum%1:20:00:: 12631932 1 0 -geum_rivale%1:20:00:: 12632072 1 0 -geum_strictum%1:20:00:: 12631637 1 0 -geum_triflorum%1:20:00:: 12632335 1 0 -geum_urbanum%1:20:00:: 12632526 1 0 -geum_virginianum%1:20:00:: 12632733 1 0 -gewgaw%1:06:00:: 02787435 1 0 -geyser%1:17:00:: 09288635 1 0 -geyser%2:38:00:: 02072394 1 1 -ghana%1:15:00:: 08946187 1 1 -ghanaian%3:01:00:: 03068473 1 0 -ghanese%3:01:00:: 03068473 1 0 -ghanian%1:18:00:: 09748889 1 0 -ghanian%3:01:00:: 03068473 1 0 -ghanian_monetary_unit%1:23:00:: 13666922 1 0 -gharry%1:06:00:: 03435991 1 0 -ghastliness%1:07:00:: 04782610 1 0 -ghastly%5:00:00:alarming:00 00195684 1 2 -ghastly%5:00:00:offensive:01 01625492 2 0 -ghat%1:06:00:: 03436075 1 0 -ghatti%1:27:00:: 14878844 1 0 -ghatti_gum%1:27:00:: 14878844 1 0 -ghb%1:06:00:: 03414814 1 0 -ghedda_wax%1:27:00:: 15095014 1 0 -ghee%1:13:00:: 07848936 1 0 -gheg%1:10:00:: 06942419 1 0 -gheg_dialect%1:10:00:: 06942419 1 0 -ghent%1:15:00:: 08851500 1 0 -gherkin%1:13:01:: 07718671 2 0 -gherkin%1:13:02:: 07758582 1 0 -ghetto%1:15:00:: 08578951 1 5 -ghetto%1:15:01:: 08549292 3 0 -ghetto%1:26:00:: 13963342 2 0 -ghetto_blaster%1:06:00:: 03436182 1 0 -ghettoise%2:30:00:: 00494880 1 0 -ghettoize%2:30:00:: 00494880 1 0 -ghillie%1:06:00:: 03436290 1 0 -ghost%1:09:00:: 05898171 1 4 -ghost%1:10:00:: 07164163 4 0 -ghost%1:18:00:: 09545976 3 0 -ghost%1:18:01:: 10128748 2 0 -ghost%2:36:00:: 01704752 3 0 -ghost%2:37:00:: 01783214 2 0 -ghost%2:38:00:: 01839807 1 1 -ghost_dance%1:04:00:: 00542323 1 0 -ghost_gum%1:20:00:: 12336727 1 0 -ghost_town%1:15:00:: 08671509 1 0 -ghost_weed%1:20:00:: 12919403 1 0 -ghost_word%1:10:00:: 06300058 1 0 -ghostfish%1:05:00:: 02616397 1 0 -ghostlike%5:00:00:supernatural:00 01574925 1 1 -ghostliness%1:07:00:: 04798020 1 0 -ghostly%5:00:00:supernatural:00 01574925 1 1 -ghostwrite%2:36:00:: 01704752 1 0 -ghostwriter%1:18:00:: 10128748 1 0 -ghoul%1:18:00:: 09543673 2 1 -ghoul%1:18:01:: 10144571 1 3 -ghoulish%5:00:00:offensive:01 01626440 1 0 -ghq%1:06:00:: 03076104 1 0 -ghrelin%1:08:00:: 05409663 1 0 -ghrf%1:27:00:: 15023537 1 0 -ghz%1:28:00:: 15278691 1 0 -gi%1:23:00:: 13642000 1 0 -gi%2:35:00:: 01533715 1 0 -gi%3:01:00:: 02975697 1 0 -gi_hormones%1:08:00:: 05408684 1 0 -gi_series%1:09:00:: 05741578 1 0 -gi_tract%1:08:00:: 05532225 1 0 -gia%1:14:00:: 08016035 1 0 -giacometti%1:18:00:: 10997553 1 0 -giacomo_della_chiesa%1:18:00:: 10844231 1 0 -giacomo_meyerbeer%1:18:00:: 11177695 1 0 -giacomo_puccini%1:18:00:: 11248077 1 0 -giambattista_lulli%1:18:00:: 11144860 1 0 -giambattista_marini%1:18:00:: 11156812 1 0 -giambattista_marino%1:18:00:: 11156812 1 0 -gian_carlo_menotti%1:18:00:: 11174901 1 0 -gianbattista_bodoni%1:18:00:: 10854265 1 0 -giannangelo_braschi%1:18:00:: 11237275 1 0 -gianni_versace%1:18:00:: 11364135 1 0 -giant%1:05:00:: 01323781 1 6 -giant%1:14:00:: 08056471 3 2 -giant%1:17:00:: 09288769 7 0 -giant%1:18:00:: 10128909 5 0 -giant%1:18:01:: 09938991 2 2 -giant%1:18:02:: 09488711 6 0 -giant%1:18:03:: 10129133 4 0 -giant%5:00:00:large:00 01385773 1 9 -giant_anteater%1:05:00:: 02460451 1 0 -giant_armadillo%1:05:00:: 02456008 1 0 -giant_bamboo%1:20:00:: 12148757 1 0 -giant_buttercup%1:20:00:: 11736362 1 0 -giant_cane%1:20:00:: 12148253 1 0 -giant_chinkapin%1:20:00:: 12264786 1 0 -giant_clam%1:05:00:: 01959492 1 0 -giant_cockroach%1:05:00:: 02235205 1 0 -giant_conch%1:05:00:: 01944118 1 0 -giant_coreopsis%1:20:00:: 11957317 1 0 -giant_crab%1:05:00:: 01982347 1 0 -giant_eland%1:05:00:: 02427183 1 0 -giant_fern%1:20:00:: 13215586 1 0 -giant_fir%1:20:00:: 11622368 1 0 -giant_foxtail%1:20:00:: 12134695 1 0 -giant_fulmar%1:05:00:: 02059852 1 0 -giant_garlic%1:20:00:: 12434985 1 0 -giant_granadilla%1:20:00:: 12384037 1 0 -giant_helleborine%1:20:00:: 12062781 1 0 -giant_hives%1:26:00:: 14120310 1 0 -giant_hornet%1:05:00:: 02213239 1 0 -giant_hyssop%1:20:00:: 12839979 1 0 -giant_kangaroo%1:05:00:: 01877606 1 0 -giant_lizard%1:05:00:: 01695060 1 0 -giant_moa%1:05:00:: 01523248 1 0 -giant_northwest_shipworm%1:05:00:: 01967517 1 0 -giant_panda%1:05:00:: 02510455 1 0 -giant_perch%1:05:00:: 02560546 1 0 -giant_petrel%1:05:00:: 02059852 1 0 -giant_pigfish%1:05:00:: 02608284 1 0 -giant_potato_creeper%1:20:00:: 12897788 1 0 -giant_puffball%1:20:00:: 13044375 1 0 -giant_red_paintbrush%1:20:00:: 12880462 1 0 -giant_reed%1:20:00:: 12109498 1 0 -giant_ryegrass%1:20:00:: 12119390 1 0 -giant_salamander%1:05:00:: 01633781 1 0 -giant_scallop%1:05:00:: 01966586 1 0 -giant_schnauzer%1:05:00:: 02097130 1 0 -giant_scrambling_fern%1:20:00:: 13170840 1 0 -giant_seaperch%1:05:00:: 02560546 1 0 -giant_sequoia%1:20:00:: 11641494 1 0 -giant_silkworm%1:05:00:: 02302620 1 0 -giant_silkworm_moth%1:05:00:: 02302459 1 0 -giant_squid%1:05:00:: 01972131 1 0 -giant_star%1:17:00:: 09288769 1 0 -giant_star_grass%1:20:00:: 12116058 1 0 -giant_stock_bean%1:20:00:: 12511239 1 0 -giant_sunflower%1:20:00:: 11978961 1 0 -giant_taro%1:20:00:: 11782266 1 0 -giant_timber_bamboo%1:20:00:: 12149521 1 0 -giant_tortoise%1:05:00:: 01670802 1 0 -giant_water_bug%1:05:00:: 02242137 1 0 -giant_willowherb%1:20:00:: 12342498 1 0 -giantess%1:18:00:: 09490756 1 0 -giantism%1:07:00:: 05106220 2 0 -giantism%1:26:00:: 14368288 1 0 -giardia%1:05:00:: 01419888 1 0 -giardiasis%1:26:00:: 14177210 1 0 -gib%1:05:00:: 02122810 2 0 -gib%1:23:00:: 13628761 1 0 -gibber%1:10:00:: 06608728 1 0 -gibber%2:32:00:: 01036804 1 0 -gibber%2:32:01:: 00776846 2 0 -gibberellic_acid%1:27:00:: 14745368 1 0 -gibberellin%1:27:00:: 14745222 1 0 -gibberish%1:10:00:: 06608728 1 0 -gibbet%1:06:00:: 03413124 1 1 -gibbet%2:41:00:: 02485731 1 0 -gibbet%2:41:01:: 02483941 2 0 -gibbon%1:05:00:: 02483362 2 0 -gibbon%1:18:00:: 10997742 1 0 -gibbose%5:00:00:convex:00 00538174 1 0 -gibbosity%1:25:00:: 13894434 1 0 -gibbous%5:00:00:convex:00 00538174 2 0 -gibbous%5:00:00:unfit:01 01019000 1 0 -gibbousness%1:25:00:: 13894434 1 0 -gibbs%1:18:00:: 10997888 1 0 -gibbsite%1:27:00:: 14676943 1 0 -gibe%1:10:00:: 06767922 1 0 -gibe%2:32:00:: 00850192 2 0 -gibe%2:42:00:: 02657219 1 0 -gibelike%5:00:00:disrespectful:00 01995596 1 1 -gibibit%1:23:00:: 13629309 1 0 -gibibyte%1:23:00:: 13628761 1 0 -gibingly%4:02:00:: 00347860 1 0 -gibit%1:23:00:: 13629309 1 0 -giblet%1:13:00:: 07649096 1 0 -giblets%1:13:00:: 07649096 1 0 -gibraltar%1:15:00:: 09028841 1 0 -gibraltar_fever%1:26:00:: 14128029 1 0 -gibraltarian%1:18:00:: 09749011 1 0 -gibraltarian%3:01:00:: 03068737 1 0 -gibran%1:18:00:: 10997997 1 0 -gibson%1:18:00:: 10998117 3 0 -gibson%1:18:01:: 10998305 2 0 -gibson%1:18:02:: 10998474 1 0 -gibson_desert%1:15:00:: 09169557 1 0 -gibson_girl%1:18:00:: 10129338 1 2 -gidar%1:10:00:: 06984858 1 0 -giddily%4:02:00:: 00082923 1 0 -giddiness%1:07:00:: 04648440 1 1 -giddiness%1:26:00:: 14372513 2 0 -giddy%5:00:00:frivolous:00 02120828 2 0 -giddy%5:00:00:ill:01 02544048 1 0 -gide%1:18:00:: 10998651 1 0 -gideon_algernon_mantell%1:18:00:: 11155013 1 0 -gidgee%1:20:00:: 11757017 1 0 -gielgud%1:18:00:: 10998860 1 0 -gift%1:04:00:: 01086081 3 2 -gift%1:09:00:: 05624042 2 4 -gift%1:21:00:: 13265011 1 8 -gift%2:40:00:: 02200686 2 0 -gift%2:41:00:: 02474239 1 1 -gift-wrap%2:35:00:: 01284160 1 0 -gift_horse%1:21:00:: 13272860 1 1 -gift_shop%1:06:00:: 03436417 1 0 -gift_tax%1:21:00:: 13313188 1 0 -gift_wrap%1:27:00:: 14879247 1 0 -gift_wrapping%1:06:00:: 03436549 1 0 -gifted%3:00:00:: 01119192 1 0 -gig%1:04:00:: 00271155 6 0 -gig%1:06:00:: 03436656 5 0 -gig%1:06:01:: 03436772 4 0 -gig%1:06:02:: 03436891 1 1 -gig%1:06:03:: 04271148 2 0 -gig%1:06:04:: 03436990 3 0 -gigabit%1:23:00:: 13629132 1 0 -gigabyte%1:23:00:: 13628761 2 0 -gigabyte%1:23:01:: 13628955 1 0 -gigacycle%1:28:00:: 15278691 1 0 -gigacycle_per_second%1:28:00:: 15278691 1 0 -gigahertz%1:28:00:: 15278691 1 0 -gigantic%5:00:01:large:00 01386538 1 9 -gigantism%1:07:00:: 05106220 2 0 -gigantism%1:26:00:: 14368288 1 0 -gigartinaceae%1:05:00:: 01414359 1 0 -giggle%1:10:00:: 07127693 1 1 -giggle%2:29:00:: 00030142 1 4 -giggler%1:18:00:: 10713124 1 0 -gigo%1:10:00:: 06655927 1 0 -gigolo%1:18:00:: 10129464 1 0 -gigot%1:13:00:: 07668588 1 0 -gigue%1:10:00:: 07055805 1 0 -gikuyu%1:10:00:: 06993015 1 0 -gila%1:17:00:: 09288946 1 0 -gila_desert%1:15:00:: 09169690 1 0 -gila_monster%1:05:00:: 01692333 1 0 -gila_river%1:17:00:: 09288946 1 0 -gilbert%1:18:00:: 10999048 5 0 -gilbert%1:18:01:: 10999202 4 0 -gilbert%1:18:02:: 10999410 3 0 -gilbert%1:18:03:: 10999584 2 0 -gilbert%1:23:00:: 13642000 1 0 -gilbert_and_ellice_islands%1:15:00:: 08841075 1 0 -gilbert_and_sullivan%1:10:00:: 07278365 1 0 -gilbert_charles_stuart%1:18:00:: 11322758 1 0 -gilbert_islands%1:15:00:: 08839916 1 0 -gilbert_keith_chesterton%1:18:00:: 10895274 1 0 -gilbert_murray%1:18:00:: 11197417 1 0 -gilbert_stuart%1:18:00:: 11322758 1 0 -gilbertian%3:01:00:: 03068909 1 0 -gilbertian%5:00:00:humorous:00 01266649 2 0 -gild%1:14:00:: 08227214 1 0 -gild%2:36:00:: 01683101 1 1 -gild_the_lily%2:30:00:: 00183241 2 0 -gild_the_lily%2:36:00:: 01677242 1 0 -gilded%5:00:00:chromatic:00 00369941 1 2 -gilded%5:00:00:insincere:00 02182302 2 0 -gilded%5:00:00:metallic:00 01528730 4 0 -gilded%5:00:00:rich:03 02024928 3 0 -gilded_flicker%1:05:00:: 01839949 1 0 -gilder%1:18:00:: 10129585 1 0 -gildhall%1:06:00:: 03437184 1 0 -gilding%1:06:00:: 03437430 1 0 -gilding_metal%1:27:00:: 14879356 1 0 -giles_lytton_strachey%1:18:00:: 11320631 1 0 -gilgai_soil%1:27:00:: 14879492 1 0 -gilgamesh%1:18:00:: 10999873 1 0 -gilgamish%1:18:00:: 09522837 1 0 -gill%1:05:00:: 02510769 4 0 -gill%1:20:00:: 13011679 3 0 -gill%1:23:01:: 13619028 2 0 -gill%1:23:02:: 13621660 1 0 -gill-less%3:00:00:: 01107094 1 0 -gill-over-the-ground%1:20:00:: 12847374 1 0 -gill_arch%1:05:00:: 02511303 1 0 -gill_bar%1:05:00:: 02511303 1 0 -gill_cleft%1:05:00:: 02511107 1 0 -gill_fungus%1:20:00:: 13011595 1 0 -gill_net%1:06:00:: 03437295 1 0 -gill_slit%1:05:00:: 02511107 1 0 -gilled%3:00:00:: 01106989 1 0 -gilles_de_la_tourette%1:18:00:: 11346568 1 0 -gilles_de_la_tourette_syndrome%1:26:00:: 14311117 1 0 -gillespie%1:18:00:: 11000012 1 0 -gillette%1:18:00:: 11000172 1 0 -gillie%1:06:00:: 03436290 2 0 -gillie%1:18:00:: 10129719 1 0 -gillyflower%1:20:01:: 11808468 2 0 -gillyflower%1:20:02:: 11892637 1 0 -gilman%1:18:00:: 11000349 1 0 -gilmer%1:18:00:: 11000469 1 0 -giloacchino_antonio_rossini%1:18:00:: 11271720 1 0 -gilt%1:06:00:: 03437430 1 0 -gilt%5:00:00:chromatic:00 00369941 1 2 -gilt-edged%5:00:00:adorned:00 00058929 2 0 -gilt-edged%5:00:00:superior:02 02343378 1 0 -gimbal%1:06:00:: 03437581 1 0 -gimbaled%5:00:00:supported:00 02351246 1 0 -gimcrack%1:06:00:: 03376438 1 0 -gimcrack%5:00:00:tasteless:02 02393791 1 0 -gimcrackery%1:06:00:: 03376438 1 0 -gimel%1:10:00:: 06836929 1 0 -gimlet%1:06:00:: 02758490 2 0 -gimlet%1:13:00:: 07914995 1 0 -gimmick%1:04:00:: 00171249 3 0 -gimmick%1:06:00:: 03218545 2 0 -gimmick%1:07:00:: 05164673 1 0 -gimmickry%1:14:00:: 07959863 1 0 -gimp%1:26:00:: 14549937 1 0 -gimp%2:38:00:: 01917244 1 0 -gimpiness%1:26:00:: 14549937 1 0 -gimpy%5:00:00:unfit:01 01018788 1 0 -gin%1:04:00:: 00496877 4 0 -gin%1:06:00:: 03115525 3 0 -gin%1:06:01:: 04248851 2 0 -gin%1:13:00:: 07904395 1 0 -gin%2:35:00:: 01481027 2 0 -gin%2:35:03:: 01557517 1 0 -gin_and_it%1:13:00:: 07916183 1 0 -gin_and_tonic%1:13:00:: 07915094 1 0 -gin_mill%1:06:00:: 04018399 1 0 -gin_rickey%1:13:00:: 07932762 1 0 -gin_rummy%1:04:00:: 00496877 1 0 -gin_sling%1:13:00:: 07917874 1 0 -ginep%1:20:00:: 12744850 1 0 -ginger%1:07:00:: 04634833 4 0 -ginger%1:13:00:: 07815163 2 0 -ginger%1:13:02:: 07814925 3 0 -ginger%1:20:00:: 12355760 1 0 -ginger%2:39:00:: 02192818 1 0 -ginger%5:00:00:colored:00 00397975 1 0 -ginger-scented%5:00:00:odorous:00 01056402 1 0 -ginger_ale%1:13:00:: 07928367 1 0 -ginger_beer%1:13:00:: 07891309 1 0 -ginger_family%1:20:00:: 12355320 1 0 -ginger_nut%1:13:00:: 07636384 1 0 -ginger_pop%1:13:00:: 07928367 1 0 -ginger_rogers%1:18:00:: 11268667 1 0 -ginger_snap%1:13:00:: 07636384 1 0 -ginger_up%2:30:00:: 00192659 1 0 -gingerbread%1:13:00:: 07633146 1 0 -gingerbread_man%1:13:00:: 07638574 1 0 -gingerly%4:02:00:: 00347990 1 1 -gingerly%5:00:00:cautious:00 00325995 1 1 -gingerol%1:27:00:: 15033063 1 0 -gingerroot%1:13:00:: 07814925 1 0 -gingersnap%1:13:00:: 07636384 1 0 -gingery%5:00:00:colored:00 00397975 2 0 -gingery%5:00:00:tasty:00 02397644 1 0 -gingham%1:06:00:: 03437741 1 2 -gingiva%1:08:00:: 05304932 1 0 -gingival%3:01:00:: 02735812 1 0 -gingivitis%1:26:00:: 14081216 1 0 -gingko%1:20:00:: 11664418 1 0 -ginglymoid_joint%1:08:00:: 05580416 1 0 -ginglymostoma%1:05:00:: 01486706 1 0 -ginglymostoma_cirratum%1:05:00:: 01486838 1 0 -ginglymus%1:08:00:: 05580416 1 0 -ginkgo%1:20:00:: 11664418 1 1 -ginkgo_biloba%1:20:00:: 11664418 1 0 -ginkgo_family%1:20:00:: 11664090 1 0 -ginkgoaceae%1:20:00:: 11664090 1 0 -ginkgoales%1:20:00:: 11663813 1 0 -ginkgophytina%1:20:00:: 11663449 1 0 -ginkgopsida%1:20:00:: 11663449 1 0 -ginmill%1:06:00:: 02796995 1 2 -ginsberg%1:18:00:: 11000660 1 0 -ginseng%1:20:01:: 11799732 2 0 -ginseng%1:20:02:: 11800236 1 0 -ginzo%1:18:00:: 09716439 1 0 -gioacchino_pecci%1:18:00:: 11127996 1 0 -giordano_bruno%1:18:00:: 10868738 1 0 -giorgio_de_chirico%1:18:00:: 10896255 1 0 -giorgio_vasari%1:18:00:: 11361288 1 0 -giosue_carducci%1:18:00:: 10882293 1 0 -giotto%1:18:00:: 11000786 1 0 -giotto_di_bondone%1:18:00:: 11000786 1 0 -giovanni_angelo_braschi%1:18:00:: 11237275 1 0 -giovanni_battista_cibo%1:18:00:: 11072189 1 0 -giovanni_battista_montini%1:18:00:: 11226427 1 0 -giovanni_battista_tiepolo%1:18:00:: 11342191 1 0 -giovanni_boccaccio%1:18:00:: 10854146 1 0 -giovanni_cabato%1:18:00:: 10877584 1 0 -giovanni_cimabue%1:18:00:: 10898133 1 0 -giovanni_da_verrazano%1:18:00:: 11363930 1 0 -giovanni_da_verrazzano%1:18:00:: 11363930 1 0 -giovanni_de'medici%1:18:00:: 11127752 1 0 -giovanni_di_bernardone%1:18:00:: 10978098 1 0 -giovanni_francesco_albani%1:18:00:: 10901420 1 0 -giovanni_jacopo_casanova%1:18:00:: 10885994 1 0 -giovanni_jacopo_casanova_de_seingalt%1:18:00:: 10885994 1 0 -giovanni_lorenzo_bernini%1:18:00:: 10848122 1 0 -giovanni_maria_mastai-ferretti%1:18:00:: 11237868 1 0 -giovanni_mastai-ferretti%1:18:00:: 11237868 1 0 -giovanni_pierluigi_da_palestrina%1:18:00:: 11221268 1 0 -giovanni_vincenzo_pecci%1:18:00:: 11127996 1 0 -giovanni_virginio_schiaparelli%1:18:00:: 11284216 1 0 -gip%2:41:00:: 02572119 1 0 -gipsy%1:18:00:: 10154186 2 0 -gipsy%1:18:01:: 10217831 1 0 -gipsy_moth%1:05:00:: 02286089 1 0 -gipsywort%1:20:00:: 12852570 1 0 -giraffa%1:05:00:: 02438897 1 0 -giraffa_camelopardalis%1:05:00:: 02439033 1 0 -giraffe%1:05:00:: 02439033 1 0 -giraffidae%1:05:00:: 02438774 1 0 -girandola%1:06:00:: 03437829 1 0 -girandole%1:06:00:: 03437829 1 0 -girard%1:18:00:: 11001053 1 0 -girasol%1:20:00:: 11979715 2 0 -girasol%1:27:00:: 14868916 1 0 -giraudoux%1:18:00:: 11001211 1 0 -gird%2:33:00:: 01087197 1 1 -gird%2:35:00:: 01302854 3 0 -gird%2:35:01:: 01467917 2 0 -girder%1:06:00:: 03437941 1 0 -girdle%1:06:00:: 03112869 3 0 -girdle%1:06:01:: 03438071 2 0 -girdle%1:08:00:: 05578911 1 0 -girdle%2:35:00:: 01467917 2 0 -girdle%2:35:01:: 01608122 1 0 -giriama%1:10:00:: 06993108 1 0 -girl%1:18:00:: 10129825 1 80 -girl%1:18:01:: 10130686 4 6 -girl%1:18:02:: 10084295 2 57 -girl%1:18:03:: 10130447 5 5 -girl%1:18:04:: 09992837 3 8 -girl_friday%1:18:00:: 10130584 1 0 -girl_scout%1:18:00:: 10131016 1 0 -girl_scouts%1:14:00:: 08471185 1 0 -girl_wonder%1:18:00:: 10131151 1 0 -girlfriend%1:18:00:: 10130686 2 1 -girlfriend%1:18:01:: 10130877 1 1 -girlhood%1:28:00:: 15147330 1 0 -girlish%5:00:00:young:00 01648698 1 5 -girlishly%4:02:00:: 00107895 1 2 -girlishness%1:07:00:: 04668033 1 0 -giro%1:14:00:: 08055321 2 0 -giro%1:21:00:: 13382766 1 0 -giro_account%1:21:00:: 13359941 1 0 -giro_cheque%1:21:00:: 13382766 1 0 -girolamo_savonarola%1:18:00:: 11282802 1 0 -gironde%1:14:00:: 08260220 1 0 -girondin%1:18:00:: 10131268 1 0 -girondism%1:09:00:: 05962166 1 0 -girondist%1:18:00:: 10131268 1 0 -girru%1:18:00:: 09518306 1 0 -girth%1:06:00:: 03031756 2 0 -girth%1:07:00:: 05101407 1 0 -girth%2:35:00:: 01302982 1 0 -gish%1:18:00:: 11001422 1 0 -gismo%1:06:00:: 02729965 2 0 -gismo%1:06:01:: 03218545 1 0 -gist%1:09:00:: 05921123 2 0 -gist%1:10:00:: 06604066 1 0 -git%1:18:00:: 10539715 1 0 -gita%1:10:00:: 06431156 1 0 -gitana%1:18:00:: 10131515 1 0 -gitano%1:18:00:: 10131590 1 0 -gittern%1:06:00:: 03035832 1 0 -giulio_de'_medici%1:18:00:: 10901192 1 0 -giulio_natta%1:18:00:: 11201264 1 0 -giuseppe_balsamo%1:18:00:: 10878672 1 0 -giuseppe_garibaldi%1:18:00:: 10990963 1 0 -giuseppe_mazzini%1:18:00:: 11167418 1 0 -giuseppe_melchiorre_sarto%1:18:00:: 11238092 1 0 -giuseppe_sarto%1:18:00:: 11238092 1 0 -giuseppe_verdi%1:18:00:: 11363020 1 0 -give%1:07:00:: 05021151 1 1 -give%2:29:10:: 00108604 44 0 -give%2:29:11:: 00108747 43 0 -give%2:30:13:: 00341184 42 0 -give%2:31:00:: 00673571 27 1 -give%2:31:02:: 00732224 10 18 -give%2:32:00:: 01060317 7 24 -give%2:32:01:: 01060494 5 32 -give%2:32:02:: 01060746 21 5 -give%2:32:03:: 00887463 18 8 -give%2:32:07:: 00748972 40 0 -give%2:32:08:: 00944247 36 0 -give%2:32:09:: 00771806 39 0 -give%2:32:10:: 00748616 41 0 -give%2:32:11:: 01069638 35 0 -give%2:32:14:: 00878876 38 0 -give%2:32:15:: 00888009 37 0 -give%2:34:00:: 01178565 24 4 -give%2:34:10:: 01175810 34 0 -give%2:35:00:: 01449796 33 0 -give%2:36:00:: 01629000 11 16 -give%2:36:01:: 01647672 13 14 -give%2:36:02:: 01733477 6 29 -give%2:36:03:: 01629403 9 18 -give%2:36:12:: 01716112 32 0 -give%2:36:13:: 01716283 31 0 -give%2:38:00:: 01848465 23 4 -give%2:38:13:: 01989053 26 1 -give%2:40:00:: 02199590 3 96 -give%2:40:01:: 02200686 8 20 -give%2:40:02:: 02200498 14 12 -give%2:40:03:: 02316868 1 179 -give%2:40:05:: 02339171 2 160 -give%2:40:06:: 02230772 17 10 -give%2:40:07:: 02235842 4 78 -give%2:40:08:: 02308741 25 3 -give%2:40:09:: 02296153 12 14 -give%2:40:10:: 02343595 16 10 -give%2:40:11:: 02317094 22 4 -give%2:40:12:: 02359553 29 0 -give%2:40:13:: 02309374 19 5 -give%2:40:14:: 02309165 20 5 -give%2:40:15:: 02358034 30 0 -give%2:41:00:: 02562901 15 10 -give%2:41:10:: 02564052 28 0 -give-and-go%1:04:00:: 00563998 1 0 -give-and-take%1:04:00:: 00040152 3 0 -give-and-take%1:10:00:: 07140659 1 0 -give-and-take%1:10:01:: 06777794 2 0 -give-up_the_ghost%2:30:00:: 00358431 1 0 -give_a_damn%2:37:00:: 01823149 1 0 -give_a_hang%2:37:00:: 01823149 1 0 -give_a_hoot%2:37:00:: 01823149 1 0 -give_and_take%2:32:00:: 01036188 1 1 -give_away%2:32:00:: 00933821 2 3 -give_away%2:32:01:: 00841986 4 0 -give_away%2:40:00:: 02201855 1 3 -give_away%2:40:01:: 02293915 3 0 -give_back%2:40:00:: 02284951 1 0 -give_birth%2:29:00:: 00056930 1 2 -give_birth%2:36:00:: 01631959 2 1 -give_care%2:41:00:: 02550296 1 0 -give_chase%2:38:00:: 02001858 1 0 -give_ear%2:39:00:: 02170427 1 1 -give_forth%2:29:00:: 00004605 1 1 -give_full_measure%2:41:00:: 02563120 1 0 -give_in%2:32:01:: 00804476 2 1 -give_in%2:32:02:: 00878348 1 5 -give_it_a_try%2:41:00:: 02532458 1 0 -give_it_a_try%2:41:01:: 02530770 2 0 -give_it_a_whirl%2:41:00:: 02532458 1 1 -give_it_the_deep_six%2:40:00:: 02222994 1 0 -give_notice%2:32:00:: 00873682 2 0 -give_notice%2:41:00:: 02402825 1 0 -give_off%2:42:00:: 02631005 1 2 -give_off%2:43:00:: 02767308 2 0 -give_one's_best%2:41:00:: 02563120 1 0 -give_or_take%4:02:00:: 00256693 1 1 -give_out%2:30:00:: 00434374 4 0 -give_out%2:30:03:: 00560247 3 0 -give_out%2:40:00:: 02201644 2 1 -give_out%2:43:00:: 02767308 1 1 -give_rise%2:36:01:: 01752884 1 9 -give_suck%2:34:00:: 01186428 1 0 -give_thanks%2:32:04:: 00892315 1 1 -give_the_axe%2:30:00:: 00353639 2 0 -give_the_axe%2:41:00:: 02402825 1 0 -give_the_bounce%2:30:00:: 00353639 1 0 -give_the_eye%2:39:00:: 02167875 1 0 -give_the_gate%2:30:00:: 00353639 1 0 -give_the_glad_eye%2:39:00:: 02164186 1 0 -give_the_once_over%2:39:00:: 02167875 1 0 -give_the_sack%2:41:00:: 02402825 1 0 -give_tongue_to%2:32:00:: 00940384 1 0 -give_up%2:31:00:: 00613393 10 2 -give_up%2:33:00:: 01083044 3 5 -give_up%2:33:01:: 01115585 9 2 -give_up%2:34:00:: 01196524 12 1 -give_up%2:40:00:: 02227741 2 5 -give_up%2:40:01:: 02235229 8 2 -give_up%2:40:02:: 02303331 1 9 -give_up%2:40:03:: 02316304 6 3 -give_up%2:40:05:: 02345647 5 3 -give_up%2:41:00:: 02423650 11 1 -give_up%2:41:05:: 02367032 7 2 -give_up%2:42:00:: 02680814 4 3 -give_vent%2:32:00:: 00944548 1 6 -give_voice%2:32:00:: 00980453 1 0 -give_way%2:30:00:: 00434374 4 0 -give_way%2:30:01:: 00435103 3 1 -give_way%2:38:00:: 01848465 1 7 -give_way%2:38:01:: 01989053 2 1 -giveaway%1:10:00:: 07214894 2 0 -giveaway%1:10:01:: 06621061 3 0 -giveaway%1:21:00:: 13272712 1 1 -given%1:09:00:: 05893356 1 1 -given%5:00:00:acknowledged:00 00028280 1 5 -given%5:00:00:inclined:02 01292411 2 2 -given_name%1:10:00:: 06337307 1 0 -givenness%1:07:00:: 04755630 1 1 -giver%1:18:00:: 10025730 2 0 -giver%1:18:01:: 10131663 1 1 -giving%1:04:00:: 01086081 1 1 -giving%1:04:01:: 00090779 3 0 -giving%1:10:00:: 06685198 2 0 -giving%5:00:00:generous:01 01111418 1 0 -giving_birth%1:22:00:: 13532886 1 0 -giving_medication%1:04:00:: 00694990 1 0 -giving_up%1:04:00:: 00205543 2 0 -giving_up%1:10:00:: 07255027 1 1 -giza%1:15:00:: 08899149 1 0 -gizeh%1:15:00:: 08899149 1 0 -gizmo%1:06:00:: 02729965 2 0 -gizmo%1:06:01:: 03218545 1 0 -gizzard%1:05:00:: 01974229 1 0 -gjellerup%1:18:00:: 11001567 1 0 -glabella%1:08:00:: 05232691 1 0 -glabellar%3:01:00:: 02735911 1 0 -glabrescent%5:00:00:hairless:00 00211444 1 0 -glabrous%5:00:00:hairless:00 00211564 1 0 -glace%5:00:00:preserved:02 01071941 1 0 -glacial%3:01:00:: 02736015 1 0 -glacial%5:00:00:cold:01 01252151 3 0 -glacial%5:00:00:cold:02 01258264 2 0 -glacial_boulder%1:17:00:: 09289177 1 0 -glacial_epoch%1:28:00:: 15124864 2 0 -glacial_epoch%1:28:01:: 15255195 1 0 -glacial_period%1:28:00:: 15255195 1 0 -glacially%4:02:00:: 00141902 1 0 -glaciate%2:30:00:: 00374375 2 0 -glaciate%2:35:00:: 01208708 1 0 -glaciated%5:00:00:frozen:00 01078932 1 0 -glaciation%1:22:00:: 13487409 2 0 -glaciation%1:26:00:: 14519673 1 0 -glacier%1:17:00:: 09289331 1 1 -glacier_lily%1:20:00:: 12451399 1 0 -glad%1:20:00:: 12417382 1 0 -glad%3:00:00:: 01361414 1 11 -glad%5:00:00:cheerful:00 00362892 4 0 -glad%5:00:00:grateful:00 01146920 3 1 -glad%5:00:00:willing:00 02565583 2 1 -glad_hand%1:10:00:: 06631833 1 0 -gladden%2:37:00:: 01812950 2 0 -gladden%2:37:01:: 01813499 1 0 -gladdened%5:00:00:elated:00 00705336 1 0 -gladdon%1:20:00:: 12413642 1 0 -gladdon_iris%1:20:00:: 12413642 1 0 -glade%1:15:00:: 08541288 1 0 -glade_fern%1:20:00:: 13194918 1 0 -glade_mallow%1:20:00:: 12184468 1 0 -gladfulness%1:12:00:: 07527167 1 0 -gladiator%1:18:00:: 10131815 1 1 -gladiator%1:18:01:: 10477077 2 0 -gladiatorial%3:01:00:: 03069079 1 0 -gladiola%1:20:00:: 12417382 1 0 -gladiolus%1:08:00:: 05281452 2 0 -gladiolus%1:20:00:: 12417382 1 0 -gladly%4:02:00:: 00348110 1 0 -gladness%1:12:00:: 07527167 1 0 -gladsome%5:00:00:glad:00 01361705 1 0 -gladsomeness%1:12:00:: 07527167 1 0 -gladstone%1:06:00:: 03986949 2 0 -gladstone%1:18:00:: 11001668 1 0 -gladstone_bag%1:06:00:: 03986949 1 0 -gladys_smith%1:18:00:: 11234643 1 0 -glam_up%2:29:00:: 00043078 1 0 -glamor%1:07:00:: 04685195 1 1 -glamorisation%1:04:00:: 00261972 1 0 -glamorise%2:30:00:: 00532886 1 0 -glamorization%1:04:00:: 00261972 1 0 -glamorize%2:30:00:: 00532886 2 0 -glamorize%2:31:01:: 00693172 1 0 -glamorous%5:00:00:exciting:00 00922051 1 1 -glamour%1:07:00:: 04685195 1 0 -glamour%2:32:00:: 00776988 1 0 -glamourisation%1:04:00:: 00261972 1 0 -glamourise%2:30:00:: 00532886 2 0 -glamourise%2:31:01:: 00693172 1 0 -glamourization%1:04:00:: 00261972 1 0 -glamourize%2:30:00:: 00532886 1 0 -glamourous%5:00:00:exciting:00 00922051 1 0 -glance%1:04:00:: 00877625 1 31 -glance%2:38:00:: 01893000 2 1 -glance%2:39:00:: 02165304 1 34 -glance_over%2:39:00:: 02152278 1 0 -gland%1:08:00:: 05327767 1 6 -gland_disease%1:26:00:: 14059928 1 0 -glanders%1:26:00:: 14265205 1 1 -glandulae_cervicales_uteri%1:08:00:: 05524062 1 0 -glandulae_sebaceae%1:08:00:: 05328232 1 0 -glandular%3:01:00:: 03069238 1 0 -glandular_cancer%1:26:00:: 14246710 1 0 -glandular_carcinoma%1:26:00:: 14246710 1 0 -glandular_disease%1:26:00:: 14059928 1 0 -glandular_disorder%1:26:00:: 14059928 1 0 -glandular_fever%1:26:00:: 14135277 1 0 -glandular_labrador_tea%1:20:00:: 12238756 1 0 -glandular_plague%1:26:00:: 14139015 1 0 -glans%1:08:00:: 05368278 1 0 -glans_clitoridis%1:08:00:: 05368444 1 0 -glans_penis%1:08:00:: 05368594 1 0 -glare%1:04:00:: 00878797 2 1 -glare%1:07:00:: 04952570 1 5 -glare%1:26:00:: 14433769 3 0 -glare%2:29:00:: 00033203 1 9 -glare%2:39:01:: 02162672 3 0 -glare%2:43:01:: 02765090 2 0 -glareola%1:05:00:: 02038837 1 0 -glareole%1:05:00:: 02038993 1 0 -glareolidae%1:05:00:: 02038617 1 0 -glaring%5:00:00:bright:00 00280844 1 3 -glaring%5:00:00:conspicuous:00 00580039 2 1 -glaringly%4:02:00:: 00142002 1 0 -glary%5:00:00:bright:00 00280844 1 0 -glaser%1:18:00:: 11001848 1 0 -glasgow%1:15:00:: 08892971 1 0 -glasnost%1:10:00:: 06659397 1 0 -glass%1:06:00:: 03438257 2 12 -glass%1:06:01:: 03754295 5 0 -glass%1:06:02:: 03688832 6 0 -glass%1:06:03:: 03333129 4 1 -glass%1:06:04:: 03438661 7 0 -glass%1:23:00:: 13767239 3 4 -glass%1:27:00:: 14881303 1 22 -glass%2:30:00:: 00125447 5 0 -glass%2:30:01:: 00188580 4 0 -glass%2:35:00:: 01587575 3 0 -glass%2:39:00:: 02152690 2 0 -glass%2:40:00:: 02335363 1 0 -glass-cutter%1:18:00:: 10132145 2 0 -glass-cutter%1:18:02:: 10132305 1 0 -glass-like%5:00:00:glazed:00 01119937 1 0 -glass_ceiling%1:10:00:: 06657913 1 0 -glass_cutter%1:06:00:: 03438780 3 0 -glass_cutter%1:18:00:: 10132145 2 0 -glass_cutter%1:18:02:: 10132305 1 0 -glass_eye%1:06:00:: 03438952 1 0 -glass_fiber%1:06:00:: 03852031 1 0 -glass_fibre%1:06:00:: 03852031 1 0 -glass_in%2:35:00:: 01587575 1 0 -glass_lizard%1:05:00:: 01690466 1 0 -glass_over%2:30:00:: 00125447 1 0 -glass_snake%1:05:00:: 01690466 1 0 -glass_sponge%1:05:00:: 01907738 1 0 -glass_wool%1:27:00:: 14821852 1 0 -glassblower%1:18:00:: 10132035 1 0 -glassed%3:00:00:: 01120654 1 0 -glasses%1:06:00:: 04272054 1 4 -glasses_case%1:06:00:: 03438863 1 0 -glassful%1:23:00:: 13767239 1 0 -glasshouse%1:06:00:: 03457902 1 0 -glassless%3:00:00:: 01120766 1 1 -glassmaker%1:18:00:: 10132422 1 0 -glassware%1:06:00:: 03439064 1 0 -glasswork%1:06:00:: 03439064 1 0 -glassworker%1:18:00:: 10132145 1 0 -glassworks%1:06:00:: 03439260 1 0 -glasswort%1:20:00:: 11834272 2 0 -glasswort%1:20:02:: 11834654 1 0 -glassy%5:00:00:empty:00 01087388 2 1 -glassy%5:00:00:glazed:00 01119661 3 0 -glassy%5:00:00:smooth:00 02237761 1 1 -glaswegian%1:18:00:: 09749142 1 0 -glaswegian%3:01:00:: 02971311 1 0 -glauber's_salt%1:27:00:: 15013139 1 0 -glauber's_salts%1:27:00:: 15013139 1 0 -glaucium%1:20:00:: 11905584 1 0 -glaucium_flavum%1:20:00:: 11905749 1 0 -glaucoma%1:26:00:: 14255234 1 1 -glaucomys%1:05:00:: 02360643 1 0 -glaucomys_sabrinus%1:05:00:: 02361090 1 0 -glaucomys_volans%1:05:00:: 02360933 1 0 -glauconite%1:27:00:: 14677144 1 0 -glaucous%5:00:00:opaque:00 00434097 1 0 -glaucous_bristlegrass%1:20:00:: 12134836 1 0 -glaux%1:20:00:: 12093769 1 0 -glaux_maritima%1:20:00:: 12093885 1 0 -glaze%1:07:00:: 04701039 3 0 -glaze%1:07:01:: 04955554 2 0 -glaze%1:13:00:: 07621001 1 0 -glaze%2:30:00:: 00125447 2 1 -glaze%2:35:00:: 01269521 1 6 -glaze%2:39:00:: 02196378 4 0 -glaze%2:40:00:: 02335363 3 0 -glaze_over%2:30:00:: 00125447 2 0 -glaze_over%2:39:00:: 02158034 1 0 -glazed%3:00:00:: 01119421 3 0 -glazed%3:00:01:: 01120654 2 0 -glazed%5:00:00:coated:00 01699652 4 0 -glazed%5:00:00:empty:00 01087388 1 1 -glazer%1:18:00:: 10132145 1 0 -glazier%1:18:00:: 10132145 1 0 -gleam%1:07:00:: 04954534 1 3 -gleam%1:11:00:: 07412478 2 2 -gleam%2:30:00:: 00423575 3 1 -gleam%2:39:00:: 02160779 2 3 -gleam%2:39:01:: 02162947 1 3 -gleaming%1:07:00:: 04954534 2 1 -gleaming%1:11:00:: 07412478 1 1 -gleaming%5:00:00:bright:00 00279092 1 3 -glean%2:35:00:: 01320009 1 2 -gleaner%1:18:00:: 10132641 1 0 -gleaner%1:18:01:: 10132502 2 0 -gleba%1:20:00:: 11550340 1 0 -glebe%1:21:00:: 13247228 1 0 -glebe_house%1:06:00:: 03439348 1 0 -glechoma%1:20:00:: 12847254 1 0 -glechoma_hederaceae%1:20:00:: 12847374 1 0 -gleditsia%1:20:00:: 12495509 1 0 -gleditsia_aquatica%1:20:00:: 12495670 1 0 -gleditsia_triacanthos%1:20:00:: 12495895 1 0 -glee%1:12:00:: 07529377 1 3 -glee%1:12:02:: 07532276 2 0 -glee_club%1:14:00:: 08229605 1 0 -gleeful%5:00:00:joyous:00 01367211 1 3 -gleefully%4:02:00:: 00348247 1 0 -gleefulness%1:12:00:: 07529377 1 0 -gleet%1:08:00:: 05417698 1 0 -gleichenia%1:20:00:: 13170286 1 0 -gleichenia_flabellata%1:20:00:: 13171210 1 0 -gleicheniaceae%1:20:00:: 13170060 1 0 -glen%1:17:00:: 09289596 1 0 -glen_canyon_dam%1:06:00:: 03439491 1 0 -glen_gebhard%1:18:00:: 11201386 1 0 -glenda_jackson%1:18:00:: 11077195 1 0 -glendower%1:18:00:: 11002040 1 0 -glengarry%1:06:00:: 03439631 1 0 -glenn%1:18:00:: 11002191 1 0 -glenn_curtiss%1:18:00:: 10918679 1 0 -glenn_hammond_curtiss%1:18:00:: 10918679 1 0 -glenn_miller%1:18:00:: 11180209 1 0 -glenn_t._seaborg%1:18:00:: 11290477 1 0 -glenn_theodore_seaborg%1:18:00:: 11290477 1 0 -glenoid_cavity%1:08:00:: 05279953 1 0 -glenoid_fossa%1:08:00:: 05279953 2 0 -glenoid_fossa%1:08:01:: 05280154 1 0 -glia%1:08:00:: 05467054 1 0 -glial%3:01:00:: 02736179 1 0 -glial_cell%1:08:00:: 05467432 1 0 -glib%5:00:00:persuasive:00 01770726 3 0 -glib%5:00:00:plausible:00 01799781 2 0 -glib%5:00:00:superficial:00 01874716 1 0 -glib-tongued%5:00:00:persuasive:00 01770726 1 0 -glibly%4:02:00:: 00238417 1 2 -glibness%1:07:00:: 05095324 1 1 -glide%1:04:00:: 00328502 2 0 -glide%1:04:01:: 00303495 3 0 -glide%1:10:00:: 07114409 1 0 -glide%2:38:00:: 01887576 1 3 -glide%2:38:01:: 01942347 2 0 -glide%2:38:02:: 01887901 3 0 -glide-bomb%2:33:00:: 01132797 1 1 -glide_by%2:38:00:: 02072849 1 0 -glide_path%1:15:00:: 08493961 1 0 -glide_slope%1:15:00:: 08493961 1 0 -glider%1:06:00:: 03439814 1 0 -gliding%1:04:00:: 00303495 1 0 -gliding_bacteria%1:05:00:: 01378545 1 0 -gliding_joint%1:08:00:: 05578251 1 0 -glimmer%1:09:00:: 05916306 2 0 -glimmer%1:11:00:: 07412478 1 1 -glimmer%2:39:00:: 02160779 1 0 -glimmering%1:09:00:: 05916306 1 0 -glimmery%5:00:00:bright:00 00281527 1 0 -glimpse%1:04:00:: 00877625 1 6 -glimpse%1:09:00:: 05934396 2 1 -glimpse%1:10:00:: 06802444 3 0 -glimpse%2:39:00:: 02119470 1 5 -glinka%1:18:00:: 11002422 1 0 -glint%1:07:00:: 04953296 2 0 -glint%1:11:00:: 07412310 1 1 -glint%2:39:00:: 02162947 1 4 -glint%2:39:02:: 02165304 2 1 -glinting%5:00:00:bright:00 00279618 1 4 -glioblastoma%1:26:00:: 14236872 1 0 -glioma%1:26:00:: 14237032 1 0 -glipizide%1:06:00:: 03440024 1 0 -gliricidia%1:20:00:: 12531727 1 0 -gliridae%1:05:00:: 02352390 1 0 -glis%1:05:00:: 02352804 1 0 -glis_glis%1:05:00:: 02352932 1 0 -glissade%1:04:00:: 00534344 1 0 -glissade%2:38:00:: 01894914 1 0 -glissando%1:10:00:: 06857122 1 0 -glissando%4:02:00:: 00348592 1 0 -glisten%1:07:00:: 04952944 1 0 -glisten%2:39:00:: 02162947 1 3 -glistening%5:00:00:bright:00 00281657 1 2 -glister%1:07:00:: 04952944 1 0 -glistering%5:00:00:bright:00 00279618 1 0 -glitch%1:26:00:: 14464675 1 0 -glitter%1:07:00:: 04952944 1 2 -glitter%1:11:00:: 07412668 2 0 -glitter%2:39:00:: 02162947 1 4 -glittering%5:00:00:bright:00 00279618 1 6 -glittery%5:00:00:bright:00 00279618 1 0 -glitz%1:07:00:: 04818700 1 0 -gloam%1:28:00:: 15169421 1 0 -gloaming%1:28:00:: 15169421 1 0 -gloat%1:12:00:: 07532276 1 0 -gloat%2:32:00:: 00883635 1 1 -gloat%2:39:00:: 02166861 2 0 -gloating%1:12:00:: 07532276 1 0 -gloatingly%4:02:00:: 00348782 1 0 -glob%1:14:00:: 07961016 1 0 -global%5:00:00:international:00 01568684 1 1 -global%5:00:00:round:00 02041229 2 0 -global_aphasia%1:26:00:: 14098347 1 0 -global_climate_change%1:22:00:: 13449450 1 0 -global_organization%1:14:00:: 08294696 1 0 -global_positioning_system%1:06:00:: 03440216 1 0 -global_warming%1:22:00:: 13488310 1 0 -globalisation%1:22:00:: 13488110 1 0 -globalise%2:30:00:: 00540739 1 0 -globalization%1:22:00:: 13488110 1 0 -globalize%2:30:00:: 00540739 1 0 -globally%4:02:00:: 00128882 1 0 -globe%1:06:00:: 03440512 3 0 -globe%1:17:00:: 09270894 1 5 -globe%1:25:00:: 13899404 2 0 -globe-trot%2:38:00:: 01845457 1 0 -globe_amaranth%1:20:00:: 11826198 1 0 -globe_artichoke%1:13:00:: 07718747 2 0 -globe_artichoke%1:20:00:: 11959632 1 0 -globe_flower%1:20:00:: 11739365 1 0 -globe_lily%1:20:00:: 12446519 1 0 -globe_mallow%1:20:00:: 12187663 1 0 -globe_pepper%1:13:00:: 07721118 1 0 -globe_thistle%1:20:00:: 11962667 1 0 -globefish%1:05:00:: 02655020 1 0 -globeflower%1:20:00:: 11739365 1 0 -globetrotter%1:18:00:: 10132775 1 0 -globicephala%1:05:00:: 02071506 1 0 -globicephala_melaena%1:05:00:: 02071636 1 0 -globigerina%1:05:00:: 01393486 1 0 -globigerinidae%1:05:00:: 01393237 1 0 -globin%1:27:00:: 15025942 1 0 -globose%5:00:00:round:00 02041229 1 0 -globosity%1:07:00:: 05073131 1 0 -globular%5:00:00:round:00 02041229 1 0 -globular_pearlite%1:27:00:: 14890485 1 0 -globularness%1:07:00:: 05073131 1 0 -globule%1:17:00:: 09289709 1 0 -globulin%1:27:00:: 15022171 1 3 -globus_pallidus%1:08:00:: 05498300 1 0 -glochid%1:20:00:: 13089902 1 0 -glochidium%1:20:00:: 13089902 1 0 -glockenspiel%1:06:00:: 03440682 1 0 -glogg%1:13:00:: 07932176 1 0 -glom%2:40:00:: 02322230 1 1 -glom%2:40:13:: 02212507 2 0 -glomerular%3:01:00:: 03009594 1 2 -glomerular_capsule%1:08:00:: 05247621 1 0 -glomerule%1:20:00:: 13133233 1 0 -glomerulonephritis%1:26:00:: 14116078 1 0 -glomerulus%1:08:00:: 05247804 1 0 -gloom%1:12:00:: 07533257 2 1 -gloom%1:26:01:: 13985462 1 10 -gloom%1:26:02:: 14525365 3 0 -gloomful%5:00:00:dark:01 00275764 1 0 -gloomily%4:02:00:: 00232314 1 2 -gloominess%1:07:00:: 04631470 3 0 -gloominess%1:12:00:: 07533257 2 0 -gloominess%1:26:02:: 14525365 1 0 -glooming%5:00:00:dark:01 00275764 1 0 -gloomy%5:00:00:dark:01 00275764 1 1 -gloomy%5:00:00:dejected:00 00703615 2 0 -gloomy%5:00:00:depressing:00 00364881 3 0 -gloomy_dean%1:18:00:: 11071677 1 0 -gloomy_gus%1:18:00:: 10627899 1 0 -glop%1:10:00:: 06775969 2 0 -glop%1:27:00:: 14583573 1 0 -gloria_may_josephine_svensson%1:18:00:: 11326433 1 0 -gloria_steinem%1:18:00:: 11315140 1 0 -gloria_swanson%1:18:00:: 11326433 1 0 -glorification%1:04:00:: 01218932 3 0 -glorification%1:04:01:: 01219075 2 0 -glorification%1:26:00:: 14437134 1 0 -glorified%5:00:00:authorized:00 00179190 1 1 -glorify%2:30:00:: 00489299 2 1 -glorify%2:30:01:: 00489496 4 0 -glorify%2:30:03:: 00580512 3 0 -glorify%2:32:00:: 00860620 1 4 -gloriole%1:07:00:: 04951716 1 0 -gloriosa%1:20:00:: 12455950 1 0 -gloriosa_superba%1:20:00:: 12455950 1 0 -glorious%3:00:00:: 01120925 1 5 -glorious%5:00:00:beautiful:00 00219389 3 0 -glorious%5:00:00:impressive:00 01285376 2 0 -glorious_revolution%1:04:00:: 01304356 1 0 -gloriously%4:02:00:: 00348911 2 0 -gloriously%4:02:01:: 00349053 1 1 -glory%1:07:00:: 04684358 2 6 -glory%1:07:01:: 04951716 3 0 -glory%1:26:00:: 14437134 1 9 -glory%2:32:00:: 00858341 1 1 -glory_fern%1:20:00:: 13207923 1 0 -glory_hole%1:06:00:: 03440876 1 0 -glory_lily%1:20:00:: 12455950 1 0 -glory_pea%1:20:00:: 12516584 1 0 -gloss%1:07:00:: 04955160 3 0 -gloss%1:07:01:: 04677952 4 0 -gloss%1:10:00:: 06744000 1 0 -gloss%1:10:01:: 06420781 2 0 -gloss%2:32:00:: 00960961 3 0 -gloss%2:32:01:: 00961329 2 0 -gloss%2:32:02:: 00837133 4 0 -gloss%2:36:00:: 01682582 1 0 -gloss_over%2:39:00:: 02148109 2 0 -gloss_over%2:41:00:: 02516255 1 1 -glossa%1:08:00:: 05301072 1 0 -glossalgia%1:26:00:: 14326880 1 0 -glossarist%1:18:00:: 10132887 1 0 -glossary%1:10:00:: 06420781 1 3 -glossily%4:02:00:: 00349199 1 0 -glossina%1:05:00:: 02191273 1 0 -glossiness%1:07:00:: 04955160 1 0 -glossinidae%1:05:00:: 02190963 1 0 -glossitis%1:26:00:: 14346909 1 0 -glossodia%1:20:00:: 12063066 1 0 -glossodynia%1:26:00:: 14326880 1 0 -glossodynia_exfoliativa%1:26:00:: 14347334 1 0 -glossolalia%1:26:00:: 14069383 1 0 -glossopharyngeal%3:01:00:: 02880808 1 0 -glossopharyngeal_nerve%1:08:00:: 05479786 1 0 -glossopsitta%1:05:00:: 01820664 1 0 -glossopsitta_versicolor%1:05:00:: 01820801 1 0 -glossoptosis%1:26:00:: 14174208 1 0 -glossy%1:06:00:: 03441009 2 0 -glossy%1:10:00:: 06596727 1 0 -glossy%5:00:00:attractive:01 00168039 3 0 -glossy%5:00:00:bright:00 00281657 2 0 -glossy%5:00:00:glazed:00 01120010 1 0 -glossy-coated%5:00:00:hairy:00 00214323 1 0 -glossy-furred%5:00:00:hairy:00 00214323 1 0 -glossy-haired%5:00:00:hairy:00 00214323 1 0 -glossy_snake%1:05:00:: 01733466 1 0 -glottal%3:01:00:: 02880924 1 0 -glottal_catch%1:10:00:: 07117595 1 1 -glottal_plosive%1:10:00:: 07117595 1 0 -glottal_stop%1:10:00:: 07117595 1 0 -glottis%1:08:00:: 05301526 1 0 -glottis_spuria%1:08:00:: 05610365 1 0 -glottis_vera%1:08:00:: 05610198 1 0 -glottochronological%3:01:00:: 02881057 1 3 -glottochronology%1:09:00:: 06156521 1 1 -gloucester%1:15:00:: 08880083 2 0 -gloucester%1:15:01:: 09097079 1 0 -gloucestershire%1:15:00:: 08882224 1 0 -glove%1:06:00:: 03441112 2 0 -glove%1:06:01:: 02800213 1 6 -glove%1:06:02:: 02885462 3 0 -glove_anesthesia%1:26:00:: 14386968 1 0 -glove_compartment%1:06:00:: 03441345 1 0 -glove_doll%1:06:00:: 03487963 1 0 -glove_leather%1:27:00:: 14762664 1 0 -glove_puppet%1:06:00:: 03487963 1 0 -gloved%3:00:00:: 01428282 1 1 -gloveless%3:00:00:: 01428509 1 0 -glow%1:07:00:: 05018785 2 3 -glow%1:07:01:: 04954534 7 0 -glow%1:12:00:: 07480521 4 1 -glow%1:19:00:: 11467786 3 1 -glow%1:19:01:: 11463371 6 0 -glow%1:19:02:: 11463544 5 0 -glow%1:26:00:: 14051056 1 3 -glow%2:37:00:: 01829747 5 0 -glow%2:37:01:: 01830042 4 1 -glow%2:39:00:: 02160944 1 5 -glow%2:39:01:: 02161530 2 4 -glow%2:43:00:: 02768874 3 2 -glow_lamp%1:06:00:: 03441465 1 0 -glow_tube%1:06:00:: 03441582 1 0 -glower%1:04:00:: 00878797 1 0 -glower%2:29:00:: 00032981 2 0 -glower%2:29:01:: 00033203 1 4 -glowering%5:00:00:ill-natured:00 01137378 1 1 -gloweringly%4:02:00:: 00349587 1 0 -glowing%1:19:00:: 11463371 1 0 -glowing%5:00:00:enthusiastic:00 00886804 1 1 -glowingly%4:02:00:: 00349719 1 0 -glowworm%1:05:00:: 02168427 1 0 -gloxinia%1:20:00:: 12832315 1 0 -gloxinia_perennis%1:20:00:: 12832538 1 0 -gloxinia_spesiosa%1:20:00:: 12833526 1 0 -glucagon%1:08:00:: 05410131 1 0 -glucinium%1:27:00:: 14631295 1 0 -gluck%1:18:00:: 11002548 1 0 -glucocorticoid%1:27:00:: 14752057 1 0 -glucophage%1:06:00:: 03753657 1 0 -glucosamine%1:27:00:: 14752323 1 0 -glucose%1:27:00:: 14884120 1 0 -glucose_tolerance_test%1:09:00:: 05741765 1 0 -glucoside%1:27:00:: 14887801 1 0 -glucosuria%1:26:00:: 14267722 1 0 -glucotrol%1:06:00:: 03440024 1 0 -glue%1:27:00:: 14702875 1 1 -glue%2:30:00:: 00486850 2 2 -glue%2:35:00:: 01332205 1 15 -glued%5:00:00:affixed:00 00159106 1 2 -gluey%5:00:00:adhesive:00 00053691 1 0 -glueyness%1:07:00:: 04935904 1 0 -glug%2:39:00:: 02178186 1 0 -gluiness%1:07:00:: 04935904 1 0 -glum%5:00:00:dejected:00 00704270 1 1 -glum%5:00:00:ill-natured:00 01137378 2 0 -glume%1:20:00:: 13155611 1 0 -glumly%4:02:00:: 00242321 1 0 -glumness%1:12:00:: 07552367 2 0 -glumness%1:26:00:: 14525365 1 0 -gluon%1:17:00:: 09289802 1 0 -glut%1:07:00:: 05119837 1 0 -glut%2:34:00:: 01193099 1 1 -glut%2:40:00:: 02356704 2 0 -glutamate%1:27:00:: 14884581 1 0 -glutamic_acid%1:27:00:: 14606482 1 0 -glutamic_oxalacetic_transaminase%1:27:00:: 14884669 1 0 -glutamic_oxaloacetic_transaminase%1:27:00:: 14884669 1 1 -glutamine%1:27:00:: 14606704 1 0 -glutaminic_acid%1:27:00:: 14606482 1 0 -glutathione_peroxidase%1:27:00:: 14606839 1 0 -glute%1:08:00:: 05570129 1 0 -gluteal%3:01:00:: 02736276 1 0 -gluteal_artery%1:08:00:: 05346406 1 0 -gluteal_muscle%1:08:00:: 05570129 1 0 -gluteal_vein%1:08:00:: 05368739 1 0 -glutelin%1:27:00:: 15026155 1 0 -gluten%1:13:00:: 07570237 1 0 -gluten-free_diet%1:13:00:: 07562984 1 0 -gluten_bread%1:13:00:: 07682952 1 0 -glutethimide%1:06:00:: 03441778 1 0 -gluteus%1:08:00:: 05570129 1 0 -gluteus_maximus%1:08:00:: 05570396 1 0 -gluteus_medius%1:08:00:: 05570500 1 0 -gluteus_minimus%1:08:00:: 05570600 1 0 -gluteus_muscle%1:08:00:: 05570129 1 0 -glutinosity%1:07:00:: 04936213 1 0 -glutinous%5:00:00:adhesive:00 00053691 1 0 -glutinousness%1:07:00:: 04936213 1 0 -glutted%5:00:00:full:00 01085167 1 0 -glutton%1:05:00:: 02449350 2 0 -glutton%1:18:00:: 10132988 1 1 -gluttonise%2:34:00:: 01169067 1 0 -gluttonize%2:34:00:: 01169067 1 0 -gluttonous%3:00:00:: 00009978 1 0 -gluttonously%4:02:00:: 00349855 1 0 -gluttony%1:04:00:: 00759186 2 0 -gluttony%1:07:00:: 04886101 1 0 -glyburide%1:06:00:: 03441930 1 0 -glyceraldehyde%1:27:00:: 14884820 1 0 -glyceria%1:20:00:: 12122124 1 0 -glyceria_grandis%1:20:00:: 12122442 1 0 -glyceric_acid%1:27:00:: 14884963 1 0 -glyceric_aldehyde%1:27:00:: 14884820 1 0 -glyceride%1:27:00:: 14885088 1 0 -glycerin%1:27:00:: 14885684 1 0 -glycerin_jelly%1:27:00:: 14886037 1 0 -glycerinated_gelatin%1:27:00:: 14885857 1 0 -glycerine%1:27:00:: 14885684 1 4 -glycerite%1:27:00:: 14886180 1 0 -glycerogel%1:27:00:: 14886297 1 0 -glycerogelatin%1:27:00:: 14886297 1 0 -glycerol%1:27:00:: 14885684 1 2 -glycerol_trimargarate%1:27:00:: 15079445 1 0 -glycerol_tripalmitate%1:27:00:: 15080055 1 0 -glycerol_tristearate%1:27:00:: 15080942 1 0 -glycerole%1:27:00:: 14886180 1 0 -glycerolise%2:38:00:: 01987781 1 0 -glycerolize%2:38:00:: 01987781 1 1 -glyceryl%1:27:00:: 14886443 1 0 -glyceryl_ester%1:27:00:: 14887026 1 0 -glyceryl_trinitrate%1:27:00:: 14886579 1 0 -glycine%1:20:00:: 12532008 2 0 -glycine%1:27:00:: 14606993 1 0 -glycine_max%1:20:00:: 12532168 1 0 -glycogen%1:27:00:: 14795749 1 0 -glycogenesis%1:11:00:: 07415962 2 0 -glycogenesis%1:22:00:: 13488498 1 0 -glycogenic%3:01:00:: 02736393 1 0 -glycol%1:27:01:: 14835980 2 0 -glycol%1:27:02:: 14851850 1 0 -glycolic_acid%1:27:00:: 14888124 1 0 -glycollic_acid%1:27:00:: 14888124 1 0 -glycolysis%1:22:00:: 13488606 1 0 -glycoprotein%1:27:00:: 14888310 1 0 -glycoside%1:27:00:: 14887305 1 0 -glycosuria%1:26:00:: 14267841 1 0 -glycyrrhiza%1:20:00:: 12532720 1 0 -glycyrrhiza_glabra%1:20:00:: 12532886 1 0 -glycyrrhiza_lepidota%1:20:00:: 12533190 1 0 -glyoxaline%1:27:00:: 14916670 1 0 -glyph%1:06:00:: 03442164 1 0 -glyptic_art%1:06:00:: 03442288 1 0 -glyptics%1:06:00:: 03442487 1 0 -glyptography%1:04:00:: 00936194 2 0 -glyptography%1:06:00:: 03442288 1 0 -gm%1:23:00:: 13723712 1 10 -gmt%1:28:00:: 15130205 1 0 -gnaeus_julius_agricola%1:18:00:: 10809675 1 0 -gnaeus_pompeius_magnus%1:18:00:: 11241854 1 0 -gnaphalium%1:20:00:: 11972569 1 0 -gnaphalium_sylvaticum%1:20:00:: 11972959 1 0 -gnarl%1:25:00:: 13885836 1 0 -gnarl%2:32:00:: 00909219 2 0 -gnarl%2:35:00:: 01280808 1 0 -gnarled%5:00:00:crooked:01 02313235 1 0 -gnarly%5:00:00:crooked:01 02313235 1 0 -gnash%2:29:00:: 00078578 1 2 -gnat%1:05:00:: 02202287 1 0 -gnat%1:05:02:: 02200630 2 0 -gnatcatcher%1:05:00:: 01563449 1 0 -gnathion%1:08:00:: 05232972 1 0 -gnathostomata%1:05:00:: 01479643 1 0 -gnathostome%1:05:00:: 01479820 1 0 -gnaw%2:30:00:: 00275253 2 1 -gnaw%2:35:00:: 01445597 1 2 -gnaw_at%2:30:00:: 00275253 1 1 -gnawer%1:05:00:: 02329401 1 0 -gnawing_mammal%1:05:02:: 02323449 1 0 -gneiss%1:27:00:: 14889271 1 0 -gnetaceae%1:20:00:: 11597126 1 0 -gnetales%1:20:00:: 11596845 1 0 -gnetophyta%1:20:00:: 11596486 1 0 -gnetophytina%1:20:00:: 11596486 1 0 -gnetopsida%1:20:00:: 11596486 1 0 -gnetum%1:20:00:: 11597657 1 0 -gnetum_gnemon%1:20:00:: 11597657 1 0 -gnocchi%1:13:00:: 07701715 1 0 -gnome%1:10:00:: 07153385 2 0 -gnome%1:18:00:: 09541125 1 1 -gnomic%3:01:00:: 02849475 1 0 -gnomish%5:00:00:small:00 01393311 1 0 -gnomon%1:06:00:: 03442597 1 0 -gnosis%1:09:00:: 05708030 1 0 -gnostic%1:18:00:: 10133210 1 0 -gnostic%3:00:00:: 01305792 2 0 -gnostic%3:01:00:: 02849594 1 0 -gnosticism%1:09:00:: 06222959 1 0 -gnp%1:21:00:: 13257098 1 8 -gnu%1:05:00:: 02421449 1 0 -gnu_goat%1:05:00:: 02419634 1 0 -go%1:04:00:: 00504325 4 0 -go%1:04:01:: 00787061 3 0 -go%1:06:00:: 02678738 2 0 -go%1:28:00:: 15292069 1 0 -go%2:30:00:: 00358431 17 2 -go%2:30:01:: 00341560 8 10 -go%2:30:02:: 00539110 14 3 -go%2:30:03:: 00434374 30 0 -go%2:30:04:: 00149583 4 29 -go%2:30:08:: 00359916 9 9 -go%2:31:12:: 00676267 29 0 -go%2:33:00:: 01076615 21 1 -go%2:34:00:: 01192773 13 3 -go%2:34:09:: 01192992 28 0 -go%2:35:00:: 01525666 12 3 -go%2:35:13:: 01318849 27 0 -go%2:38:00:: 01835496 1 343 -go%2:38:01:: 01848718 3 49 -go%2:38:09:: 01864230 20 1 -go%2:39:00:: 02176268 11 3 -go%2:41:00:: 02372605 2 95 -go%2:42:00:: 02685951 7 10 -go%2:42:02:: 02721284 6 10 -go%2:42:03:: 02617798 16 2 -go%2:42:04:: 02737876 18 1 -go%2:42:05:: 02659763 26 0 -go%2:42:06:: 02653862 5 14 -go%2:42:07:: 02618001 10 7 -go%2:42:08:: 02686471 25 0 -go%2:42:10:: 02729819 19 1 -go%2:42:11:: 02700455 24 0 -go%2:42:12:: 02700666 23 0 -go%2:42:13:: 02700772 22 0 -go%2:42:14:: 02618149 15 2 -go%3:00:00:: 01122776 1 0 -go-ahead%1:07:00:: 04836074 2 0 -go-ahead%1:10:00:: 06874391 1 0 -go-around%1:04:00:: 00281898 1 0 -go-as-you-please%5:00:00:unconventional:00 00607009 1 0 -go-between%1:18:00:: 09624559 1 0 -go-cart%1:06:00:: 02766534 3 0 -go-cart%1:06:01:: 04545305 1 0 -go-cart%1:06:02:: 03484083 2 0 -go-getter%1:18:00:: 10135709 1 0 -go-kart%1:06:00:: 03444034 1 0 -go-slow%1:04:00:: 01242354 1 0 -go-to-meeting%5:00:00:best:00 00228485 1 0 -go_a_long_way%2:42:00:: 02670270 1 1 -go_about%2:41:00:: 02439281 1 5 -go_across%2:38:00:: 02050132 1 0 -go_after%2:35:00:: 01317533 2 1 -go_after%2:38:01:: 02001858 1 7 -go_against%2:41:00:: 02566528 2 0 -go_against%2:41:01:: 02378851 3 0 -go_against%2:42:00:: 02668523 1 2 -go_ahead%2:32:00:: 00781303 1 6 -go_all_out%2:41:00:: 02563120 1 1 -go_along%2:38:02:: 02072849 3 1 -go_along%2:41:00:: 02417208 1 4 -go_along%2:42:00:: 02684924 2 3 -go_around%2:32:00:: 00969873 2 1 -go_around%2:32:01:: 00811171 5 0 -go_around%2:38:00:: 02085446 3 0 -go_around%2:38:01:: 02045043 4 0 -go_around%2:42:00:: 02738126 1 1 -go_away%2:30:00:: 00426958 4 0 -go_away%2:38:00:: 02009433 2 3 -go_away%2:38:05:: 01848718 1 4 -go_away%2:39:00:: 02156546 3 0 -go_back%2:30:00:: 00528339 3 0 -go_back%2:32:00:: 00959714 2 4 -go_back%2:42:00:: 02723951 1 4 -go_back_on%2:32:00:: 00800242 1 0 -go_bad%2:30:00:: 00210259 2 0 -go_bad%2:30:01:: 00434374 1 0 -go_ballistic%2:37:00:: 01795428 1 0 -go_board%1:06:00:: 03443461 1 0 -go_by%2:30:00:: 00150977 4 0 -go_by%2:32:00:: 01029368 3 1 -go_by%2:38:00:: 02072849 1 6 -go_by%2:38:01:: 02051694 2 6 -go_deep%2:42:00:: 02733673 1 1 -go_down%2:30:00:: 00431826 3 3 -go_down%2:30:14:: 00434919 8 0 -go_down%2:33:00:: 01099866 6 1 -go_down%2:34:00:: 01205331 5 1 -go_down%2:38:00:: 01989873 2 5 -go_down%2:38:01:: 01970646 7 0 -go_down%2:38:02:: 01970826 1 11 -go_down%2:42:00:: 02733806 4 2 -go_down_on%2:39:00:: 02117170 1 0 -go_dutch%2:40:00:: 02250467 1 0 -go_far%2:41:00:: 02585860 1 2 -go_far%2:42:00:: 02733673 2 1 -go_fish%1:04:00:: 00492871 1 0 -go_for%2:31:00:: 00706047 3 1 -go_for%2:32:00:: 00797697 2 1 -go_for%2:33:00:: 01072807 5 0 -go_for%2:37:00:: 01776468 4 0 -go_for%2:42:00:: 02676789 1 1 -go_for_broke%2:41:00:: 02544781 1 0 -go_forth%2:30:00:: 00528990 2 0 -go_forth%2:38:00:: 02009433 1 0 -go_forward%2:38:00:: 01995549 1 6 -go_game%1:04:00:: 00504325 1 0 -go_home%2:38:00:: 02005496 1 21 -go_in%2:38:00:: 02016523 1 10 -go_into%2:38:00:: 02016523 1 39 -go_into%2:42:00:: 02736259 2 3 -go_off%2:30:00:: 00307295 2 3 -go_off%2:30:01:: 00343898 5 0 -go_off%2:30:02:: 00305846 6 0 -go_off%2:33:00:: 01134238 3 1 -go_off%2:35:00:: 01526792 4 0 -go_off%2:38:00:: 02073714 1 4 -go_off_at_half-cock%2:41:00:: 02602458 1 0 -go_off_half-cocked%2:41:00:: 02602458 1 0 -go_on%2:30:00:: 00339934 2 24 -go_on%2:32:00:: 00781000 4 17 -go_on%2:35:00:: 01526605 5 3 -go_on%2:38:00:: 01992503 3 23 -go_on%2:42:00:: 02684924 1 44 -go_out%2:30:00:: 00352419 4 2 -go_out%2:38:00:: 02015598 1 21 -go_out%2:38:01:: 02011437 3 3 -go_out%2:38:02:: 01842204 2 10 -go_out%2:41:00:: 02486232 6 1 -go_out%2:42:00:: 02667558 5 1 -go_over%2:29:00:: 00031277 4 1 -go_over%2:30:00:: 00343898 2 2 -go_over%2:31:00:: 00696700 1 5 -go_over%2:31:01:: 00661824 3 1 -go_past%2:38:00:: 02051694 1 2 -go_past%2:42:00:: 02669081 2 0 -go_steady%2:41:00:: 02486232 1 1 -go_through%2:30:00:: 00486018 5 0 -go_through%2:34:00:: 01197014 4 0 -go_through%2:34:01:: 01161947 2 2 -go_through%2:38:00:: 02050132 3 0 -go_through%2:39:00:: 02110220 1 8 -go_through_the_motions%2:32:00:: 00838786 1 0 -go_to%2:42:00:: 02612762 1 31 -go_to_bed%2:29:00:: 00017865 1 4 -go_to_pieces%2:37:00:: 01829126 1 1 -go_to_pot%2:30:00:: 00208691 1 0 -go_to_sleep%2:29:01:: 00017865 1 3 -go_to_the_dogs%2:30:00:: 00208691 1 0 -go_to_war%2:33:00:: 01093465 1 1 -go_under%2:32:00:: 01029368 3 0 -go_under%2:38:00:: 01989873 1 1 -go_under%2:38:08:: 01970646 2 0 -go_up%2:30:00:: 00155143 2 7 -go_up%2:30:04:: 00377351 6 1 -go_up%2:38:00:: 01968569 1 19 -go_up%2:38:01:: 01921964 5 2 -go_up%2:38:02:: 01943949 4 2 -go_up%2:38:03:: 02053941 3 4 -go_up%2:38:10:: 01969216 7 0 -go_with%2:42:00:: 02660819 2 1 -go_with%2:42:01:: 02716165 1 10 -go_wrong%2:41:00:: 02528380 1 12 -goa%1:15:00:: 08905186 1 0 -goa_bean%1:13:00:: 07725158 2 0 -goa_bean%1:20:01:: 12564083 1 0 -goa_bean_vine%1:20:00:: 12564083 1 0 -goa_powder%1:06:00:: 02732696 1 0 -goad%1:06:00:: 04007664 1 1 -goad%1:10:00:: 07252378 2 0 -goad%2:32:01:: 00851733 4 0 -goad%2:35:00:: 01241073 2 1 -goad%2:35:01:: 01240935 3 0 -goad%2:37:00:: 01818835 1 1 -goaded%5:00:00:involuntary:01 02521758 1 0 -goading%1:10:00:: 07252378 1 0 -goal%1:04:00:: 00187337 4 0 -goal%1:06:00:: 03442756 3 0 -goal%1:09:00:: 05980875 1 34 -goal%1:15:00:: 08567877 2 1 -goal-directed%5:00:00:purposeful:00 01910249 1 0 -goal-kick%1:04:00:: 00136691 2 0 -goal-kick%1:04:01:: 00136876 1 0 -goal_line%1:15:00:: 08579134 1 0 -goalie%1:04:00:: 00464037 2 0 -goalie%1:18:00:: 10134001 1 0 -goalkeeper%1:04:00:: 00464037 2 0 -goalkeeper%1:18:00:: 10134001 1 0 -goalless%5:00:00:unsuccessful:00 02335119 1 0 -goalmouth%1:06:00:: 03443005 1 0 -goalpost%1:06:00:: 03443149 1 0 -goaltender%1:04:00:: 00464037 2 0 -goaltender%1:18:00:: 10134001 1 0 -goat%1:05:00:: 02416519 1 6 -goat%1:15:00:: 08687709 4 0 -goat%1:18:00:: 09884666 2 0 -goat%1:18:01:: 09753498 3 0 -goat's_foot%1:20:00:: 12703716 1 0 -goat's_rue%1:20:01:: 12529500 2 0 -goat's_rue%1:20:02:: 12572858 1 0 -goat_antelope%1:05:00:: 02418064 1 0 -goat_cheese%1:13:00:: 07853560 1 0 -goat_god%1:18:00:: 09568241 1 0 -goat_grass%1:20:00:: 12104734 1 0 -goat_herder%1:18:00:: 10134178 1 0 -goat_rue%1:20:00:: 12529500 1 0 -goat_willow%1:20:00:: 12727518 1 0 -goatee%1:08:00:: 05263029 1 0 -goateed%5:00:00:unshaven:00 02154247 1 0 -goatfish%1:05:00:: 02600298 1 0 -goatherd%1:18:00:: 10134178 1 0 -goats'_milk%1:13:00:: 07845495 1 0 -goatsbeard%1:20:00:: 12027658 1 0 -goatsfoot%1:20:00:: 12703716 1 0 -goatskin%1:27:00:: 14759515 1 0 -goatsucker%1:05:00:: 01835276 1 0 -gob%1:08:00:: 05302307 3 0 -gob%1:14:00:: 07961270 2 0 -gob%1:18:00:: 10294602 1 0 -gobbet%1:13:00:: 07651245 1 0 -gobble%1:11:00:: 07384127 1 0 -gobble%2:32:00:: 01058426 2 1 -gobble%2:34:00:: 01173933 1 2 -gobble_up%2:34:00:: 01174099 1 0 -gobbledygook%1:10:00:: 07070321 1 0 -gobbler%1:05:00:: 01794344 2 0 -gobbler%1:18:00:: 10134282 1 0 -gobi%1:15:00:: 09169801 1 0 -gobi_desert%1:15:00:: 09169801 1 0 -gobiesocidae%1:05:00:: 02635310 1 0 -gobiesox%1:05:00:: 02635459 1 0 -gobiesox_strumosus%1:05:00:: 02635781 1 0 -gobiidae%1:05:00:: 02619029 1 0 -gobio%1:05:00:: 01443126 1 0 -gobio_gobio%1:05:00:: 01443243 1 0 -goblet%1:06:00:: 03443371 1 0 -goblet%1:06:01:: 03002948 2 0 -goblet-shaped%5:00:00:round:00 02042411 1 0 -goblet_cell%1:08:00:: 05242525 1 0 -goblin%1:18:00:: 09543748 1 0 -gobs%1:23:00:: 13777509 1 0 -gobsmacked%5:00:00:surprised:00 02358650 1 0 -goby%1:05:00:: 02619165 1 0 -god%1:06:00:: 03560161 4 0 -god%1:18:00:: 09536058 1 90 -god%1:18:01:: 09505418 2 26 -god%1:18:02:: 10133307 3 0 -god's_acre%1:15:00:: 08647354 1 0 -god's_will%1:26:00:: 14459332 1 0 -god's_wisdom%1:26:00:: 14459093 1 0 -god-awful%5:00:00:unpleasant:00 01802774 1 0 -god-fearing%5:00:00:religious:00 01783710 1 0 -god_almighty%1:18:00:: 09536363 1 0 -god_knows_how%4:02:00:: 00190211 1 1 -god_of_war%1:18:00:: 10767654 1 0 -god_tree%1:20:00:: 12190410 1 0 -godard%1:18:00:: 11002684 1 0 -godchild%1:18:00:: 10134396 1 0 -goddam%4:02:00:: 00349967 1 0 -goddam%5:00:00:cursed:00 00669942 1 3 -goddamn%4:02:00:: 00349967 1 0 -goddamn%5:00:00:cursed:00 00670530 1 4 -goddamn%5:00:02:cursed:00 00669942 2 0 -goddamned%4:02:00:: 00349967 1 0 -goddamned%5:00:02:cursed:00 00669942 1 3 -goddard%1:18:00:: 11002895 1 0 -goddaughter%1:18:00:: 10134552 1 0 -goddess%1:18:00:: 09535622 1 2 -godel%1:18:00:: 11003068 1 0 -godfather%1:18:00:: 10134760 1 0 -godfather%1:18:01:: 10134627 2 0 -godforsaken%5:00:00:inhospitable:00 01243102 1 1 -godhead%1:18:00:: 09536363 1 0 -godiva%1:18:00:: 11003276 1 0 -godless%5:00:00:impious:00 01782717 1 1 -godlessness%1:07:00:: 04828754 2 0 -godlessness%1:09:00:: 06223468 1 0 -godlike%5:00:00:heavenly:00 01179767 2 0 -godlike%5:00:00:superhuman:00 01261127 1 1 -godliness%1:07:00:: 04827503 1 0 -godly%5:00:00:heavenly:00 01179547 2 0 -godly%5:00:00:pious:00 01781882 1 0 -godmother%1:18:00:: 10134870 1 0 -godown%1:06:00:: 03443543 1 0 -godparent%1:18:00:: 10134982 1 0 -godsend%1:11:00:: 07477587 1 0 -godson%1:18:00:: 10135129 1 0 -godspeed%1:11:00:: 07319549 1 0 -godunov%1:18:00:: 11003599 1 0 -godwin_austen%1:17:00:: 09322701 1 0 -godwit%1:05:00:: 02034129 1 0 -goebbels%1:18:00:: 11003724 1 0 -goer%1:18:00:: 10004539 1 0 -goering%1:18:00:: 11008647 1 0 -goeteborg%1:15:00:: 08766667 1 0 -goethals%1:18:00:: 11003918 1 0 -goethe%1:18:00:: 11004106 1 0 -goethean%3:01:00:: 03032219 1 0 -goethian%3:01:00:: 03032219 1 0 -goethite%1:27:00:: 14677314 1 0 -gofer%1:18:00:: 10135197 1 0 -goffer%1:06:00:: 03443669 3 0 -goffer%1:06:01:: 03443775 2 0 -goffer%1:18:00:: 10135297 1 0 -goffer%2:29:00:: 00039680 1 0 -goffering_iron%1:06:00:: 03443775 1 0 -gog_and_magog%1:18:00:: 10135411 1 0 -goggle%2:39:00:: 02164531 1 0 -goggle-eye%1:05:00:: 02581108 1 0 -goggle-eyed%5:00:00:surprised:00 02358762 1 0 -goggle_box%1:06:00:: 04405907 1 0 -goggles%1:06:00:: 03443912 1 0 -gogh%1:18:00:: 11360022 1 0 -gogol%1:18:00:: 11004333 1 0 -goidelic%1:10:00:: 06960566 1 0 -going%1:04:00:: 00048051 3 0 -going%1:04:01:: 00042757 1 1 -going%1:11:00:: 07333649 2 0 -going%5:00:00:active:06 00036163 1 1 -going-out-of-business_sale%1:04:00:: 01119401 1 0 -going-over%1:04:00:: 00143536 1 1 -going-over%1:10:00:: 06713187 2 0 -going_ashore%1:04:00:: 00058247 1 0 -going_away%1:04:00:: 00042757 1 1 -going_to_jerusalem%1:04:00:: 00486670 1 0 -going_under%1:11:00:: 07364573 1 0 -goiter%1:26:00:: 14199477 1 0 -goitre%1:26:00:: 14199477 1 3 -goitrogen%1:27:00:: 14889728 1 4 -golan%1:15:00:: 08794574 1 0 -golan_heights%1:15:00:: 08794574 1 0 -golconda%1:06:00:: 03444169 1 0 -gold%1:07:00:: 04966240 2 8 -gold%1:07:01:: 05141492 5 0 -gold%1:21:00:: 13371760 1 8 -gold%1:21:01:: 13353446 4 0 -gold%1:27:00:: 14638799 3 2 -gold%5:00:00:chromatic:00 00369941 2 2 -gold%5:00:00:metallic:00 01528730 1 2 -gold-bearing%5:00:00:metallic:00 01528349 1 0 -gold-beater%1:18:00:: 10135842 1 0 -gold-colored%5:00:00:colored:00 00398172 1 0 -gold-coloured%5:00:00:colored:00 00398172 1 0 -gold-crowned_kinglet%1:05:00:: 01564101 1 0 -gold-plate%2:35:00:: 01396091 1 0 -gold-tail_moth%1:05:00:: 02286654 1 0 -gold-worker%1:18:00:: 10136615 1 0 -gold_braid%1:06:00:: 02889035 1 0 -gold_coast%1:15:00:: 08946187 1 0 -gold_coast%1:15:01:: 08641744 2 0 -gold_digger%1:18:00:: 10136463 1 0 -gold_digger%1:18:01:: 10136283 2 0 -gold_dust%1:27:00:: 14719025 1 0 -gold_fern%1:20:00:: 13213577 1 0 -gold_fever%1:12:00:: 07511626 1 0 -gold_foil%1:06:00:: 03444728 1 0 -gold_leaf%1:06:00:: 03444838 1 1 -gold_medal%1:06:00:: 03444942 1 0 -gold_mine%1:06:00:: 03445120 2 0 -gold_mine%1:06:01:: 03445217 1 0 -gold_miner%1:18:00:: 10136463 1 0 -gold_of_pleasure%1:20:00:: 11880791 1 0 -gold_panner%1:18:00:: 10136463 1 0 -gold_plate%1:06:00:: 03445326 2 0 -gold_plate%1:06:01:: 03445472 1 0 -gold_plate%2:35:00:: 01396091 1 0 -gold_rush%1:04:00:: 01123304 2 0 -gold_rush%1:11:00:: 07477587 1 0 -gold_standard%1:09:00:: 05924730 2 0 -gold_standard%1:21:00:: 13373426 1 0 -golda_meir%1:18:00:: 11171298 1 0 -goldbeater%1:18:00:: 10135842 1 0 -goldberg%1:18:00:: 11004485 1 0 -goldbrick%1:04:00:: 00753973 4 0 -goldbrick%1:06:00:: 03444268 3 0 -goldbrick%1:18:00:: 10135953 2 0 -goldbrick%1:18:01:: 10136146 1 0 -goldbrick%2:41:00:: 02463704 2 0 -goldbrick%2:41:01:: 02572119 1 0 -goldbricking%1:04:00:: 00741478 1 0 -goldcrest%1:05:00:: 01563945 1 0 -goldcup%1:20:00:: 11720353 1 0 -golden%5:00:00:blessed:00 00670938 4 0 -golden%5:00:00:chromatic:00 00369941 1 6 -golden%5:00:00:happy:00 01149195 2 2 -golden%5:00:00:metallic:00 01528730 3 1 -golden%5:00:01:euphonious:00 00300943 5 0 -golden%5:00:02:propitious:00 00177547 6 0 -golden-beard_penstemon%1:20:00:: 12885045 1 0 -golden-brown%5:00:00:chromatic:00 00375303 1 0 -golden-crested_kinglet%1:05:00:: 01563945 1 0 -golden-eyed_fly%1:05:00:: 02265076 1 0 -golden-green%5:00:00:chromatic:00 00375387 1 0 -golden-yellow%5:00:00:chromatic:00 00375217 1 0 -golden_age%1:28:00:: 15230790 3 0 -golden_age%1:28:01:: 15253895 2 0 -golden_age%1:28:02:: 15295267 1 0 -golden_ager%1:18:00:: 10376523 1 0 -golden_algae%1:05:00:: 01400247 1 0 -golden_aster%1:20:00:: 11951511 1 0 -golden_barrel_cactus%1:20:00:: 11845913 1 0 -golden_boy%1:18:00:: 10789415 1 0 -golden_buttons%1:20:00:: 12023726 1 0 -golden_calf%1:06:00:: 03444376 1 0 -golden_calla%1:20:00:: 11794139 1 0 -golden_chain%1:20:00:: 12538380 1 0 -golden_chinkapin%1:20:00:: 12264786 1 0 -golden_clematis%1:20:00:: 11730458 1 0 -golden_club%1:20:00:: 11790390 1 0 -golden_crown_beard%1:20:00:: 12031139 1 0 -golden_crownbeard%1:20:00:: 12031139 1 0 -golden_cup%1:20:00:: 11906127 1 0 -golden_delicious%1:13:00:: 07740342 1 0 -golden_eagle%1:05:00:: 01614343 1 0 -golden_everlasting%1:20:00:: 11980318 1 0 -golden_fairy_lantern%1:20:00:: 12447121 1 0 -golden_fern%1:20:01:: 13206178 2 0 -golden_fern%1:20:02:: 13213397 1 0 -golden_fig%1:20:00:: 12402051 1 0 -golden_fleece%1:27:00:: 14763674 1 0 -golden_gate%1:17:00:: 09289913 1 0 -golden_gate_bridge%1:06:00:: 03444601 1 0 -golden_glow%1:20:00:: 12009047 1 1 -golden_gram%1:20:00:: 12578255 1 0 -golden_groundsel%1:20:00:: 12000356 1 0 -golden_hamster%1:05:00:: 02343320 1 0 -golden_handshake%1:10:00:: 07178839 1 0 -golden_heather%1:20:00:: 12376553 1 0 -golden_honey_plant%1:20:00:: 12030908 1 0 -golden_horde%1:14:00:: 08250978 1 0 -golden_ironweed%1:20:00:: 12030908 1 0 -golden_larch%1:20:00:: 11620389 1 0 -golden_maidenhair%1:20:00:: 13173882 1 0 -golden_marguerite%1:20:00:: 11923397 1 0 -golden_mean%1:07:00:: 05117977 2 0 -golden_mean%1:24:00:: 13817066 1 0 -golden_mole%1:05:00:: 01890564 1 0 -golden_oak_mushroom%1:20:00:: 13001930 1 0 -golden_oldie%1:10:00:: 07052700 1 0 -golden_oriole%1:05:00:: 01576076 1 0 -golden_parachute%1:04:00:: 00175875 1 0 -golden_pea%1:20:00:: 12573474 1 0 -golden_pheasant%1:05:00:: 01804163 1 0 -golden_pholiota%1:20:00:: 13008315 1 0 -golden_plover%1:05:00:: 02024479 1 0 -golden_polypody%1:20:00:: 13177048 1 0 -golden_polypody%1:20:02:: 13173882 2 0 -golden_pothos%1:20:00:: 11788727 1 0 -golden_potto%1:05:00:: 02499568 1 0 -golden_ragwort%1:20:00:: 12000356 1 0 -golden_rain%1:20:00:: 12538380 1 0 -golden_retriever%1:05:00:: 02099601 1 0 -golden_rule%1:09:00:: 05957913 2 0 -golden_rule%1:10:01:: 06655805 1 0 -golden_saxifrage%1:20:00:: 12796849 1 0 -golden_seal%1:20:00:: 11735570 1 0 -golden_section%1:24:00:: 13817066 1 0 -golden_shiner%1:05:00:: 01442166 1 0 -golden_shower_tree%1:20:00:: 12492106 1 0 -golden_spleen%1:20:00:: 12796849 1 0 -golden_star%1:20:00:: 12444490 1 0 -golden_stars%1:20:00:: 12444490 1 0 -golden_state%1:15:00:: 09060768 1 0 -golden_syrup%1:13:00:: 07860208 1 0 -golden_thistle%1:20:00:: 12010628 1 0 -golden_thread%1:20:00:: 11732052 1 0 -golden_trumpet%1:20:00:: 11769803 1 0 -golden_warbler%1:05:00:: 01568892 1 0 -golden_wattle%1:20:00:: 11758276 1 0 -golden_wedding_anniversary%1:28:00:: 15250991 1 0 -golden_willow%1:20:00:: 12726159 1 0 -golden_wonder_millet%1:20:00:: 12135729 1 0 -golden_yarrow%1:20:00:: 11967878 1 0 -golden_years%1:28:00:: 15150384 1 0 -goldenbush%1:20:01:: 11976170 1 0 -goldenbush%1:20:04:: 11952346 2 0 -goldeneye%1:05:01:: 01850373 2 0 -goldeneye%1:05:02:: 02265076 1 0 -goldenrod%1:20:00:: 12015959 1 0 -goldenseal%1:20:00:: 11735570 1 0 -goldfield%1:15:00:: 08579266 1 0 -goldfields%1:20:00:: 11988132 1 0 -goldfinch%1:05:01:: 01531178 2 0 -goldfinch%1:05:02:: 01532325 1 0 -goldfish%1:05:00:: 01443537 1 0 -goldfish_bowl%1:06:00:: 03350204 2 0 -goldfish_bowl%1:26:00:: 13935400 1 0 -goldie's_fern%1:20:00:: 13193466 1 0 -goldie's_shield_fern%1:20:00:: 13193466 1 0 -goldie's_wood_fern%1:20:00:: 13193466 1 0 -goldilocks%1:20:00:: 11934239 1 0 -goldilocks_aster%1:20:00:: 11934239 1 0 -golding%1:18:00:: 11004731 1 0 -goldman%1:18:00:: 11004861 1 0 -goldmark%1:18:00:: 11005050 1 0 -goldmine%1:06:00:: 03445120 2 0 -goldmine%1:06:01:: 03445217 1 0 -goldoni%1:18:00:: 11005320 1 0 -goldplate%2:35:00:: 01396091 1 0 -goldsboro%1:15:00:: 09128808 1 0 -goldsmith%1:18:00:: 10136615 1 1 -goldsmith%1:18:01:: 11005429 2 0 -goldstone%1:27:00:: 14889857 1 0 -goldthread%1:20:00:: 11732052 1 0 -goldworker%1:18:00:: 10136615 1 0 -goldwyn%1:18:00:: 11005571 1 0 -golem%1:06:00:: 02761392 2 0 -golem%1:18:00:: 10136775 1 0 -golf%1:04:00:: 00464894 1 9 -golf%2:33:00:: 01146793 1 0 -golf-club%1:06:00:: 03446070 1 0 -golf-club_head%1:06:00:: 03446268 1 0 -golf_bag%1:06:00:: 03445617 1 0 -golf_ball%1:06:00:: 03445777 1 0 -golf_caddie%1:18:00:: 09886403 1 0 -golf_cap%1:06:00:: 02799323 1 0 -golf_cart%1:06:00:: 03445924 1 0 -golf_club%1:06:00:: 03446070 2 0 -golf_club%1:14:00:: 08229694 1 0 -golf_course%1:06:00:: 03446528 1 0 -golf_equipment%1:06:00:: 03446832 1 0 -golf_game%1:04:00:: 00464894 1 0 -golf_glove%1:06:00:: 03447075 1 0 -golf_hole%1:06:00:: 03526805 1 0 -golf_lesson%1:04:00:: 00890145 1 0 -golf_links%1:06:00:: 03674591 1 0 -golf_player%1:18:00:: 10136959 1 0 -golf_pro%1:18:00:: 10137367 1 0 -golf_range%1:06:00:: 03447224 1 0 -golf_shot%1:04:00:: 00571609 1 0 -golf_stroke%1:04:00:: 00571609 1 0 -golf_tee%1:06:00:: 04399537 1 0 -golf_widow%1:18:00:: 10137498 1 1 -golfcart%1:06:00:: 03445924 1 0 -golfer%1:18:00:: 10136959 1 2 -golfing%1:04:00:: 00127021 1 1 -golfo_de_campeche%1:17:00:: 09297729 1 0 -golfo_de_mexico%1:17:00:: 09298698 1 0 -golgi%1:18:00:: 11005780 1 0 -golgi's_cell%1:08:00:: 05466005 1 0 -golgi_apparatus%1:08:00:: 05434557 1 0 -golgi_body%1:08:00:: 05434557 1 0 -golgi_cell%1:08:00:: 05466005 1 0 -golgi_complex%1:08:00:: 05434557 1 0 -golgotha%1:15:00:: 08796219 1 0 -goliard%1:18:00:: 10137632 1 0 -goliath%1:18:00:: 11005972 1 0 -goliath%1:18:01:: 10128909 2 0 -goliath_frog%1:05:00:: 01642097 1 0 -golliwog%1:06:00:: 03447358 1 0 -golliwogg%1:06:00:: 03447358 1 0 -golosh%1:06:00:: 02735538 1 0 -goma%1:15:00:: 08734853 1 0 -gombrowicz%1:18:00:: 11006128 1 0 -gomel%1:15:00:: 09011679 1 0 -gomorrah%1:15:00:: 08795974 1 0 -gomorrha%1:15:00:: 08795974 1 0 -gompers%1:18:00:: 11006231 1 0 -gomphothere%1:05:00:: 02506783 1 0 -gomphotheriidae%1:05:00:: 02506466 1 0 -gomphotherium%1:05:00:: 02506630 1 0 -gomphrena%1:20:00:: 11825988 1 0 -gomphrena_globosa%1:20:00:: 11826198 1 0 -gomuti%1:20:00:: 12584715 1 0 -gomuti_palm%1:20:00:: 12584715 1 0 -gonad%1:08:00:: 05524430 1 0 -gonadal%3:01:00:: 02975349 1 0 -gonadotrophic%3:01:00:: 03069388 1 0 -gonadotrophic_hormone%1:08:00:: 05410315 1 0 -gonadotrophin%1:08:00:: 05410315 1 0 -gonadotropic%3:01:00:: 03069388 1 0 -gonadotropic_hormone%1:08:00:: 05410315 1 0 -gonadotropin%1:08:00:: 05410315 1 0 -goncalo_alves%1:20:00:: 12759668 1 0 -goncourt%1:18:00:: 11006431 2 0 -goncourt%1:18:01:: 11006689 1 0 -gond%1:18:00:: 09674521 1 0 -gondang_wax%1:27:00:: 14889973 1 0 -gondi%1:10:00:: 06980971 1 0 -gondola%1:06:01:: 03447447 2 0 -gondola%1:06:02:: 03447593 1 0 -gondola%1:06:03:: 02960501 3 0 -gondola_car%1:06:00:: 03447593 1 0 -gondolier%1:18:00:: 10137825 1 0 -gondoliere%1:18:00:: 10137825 1 0 -gondwanaland%1:17:00:: 09290121 1 0 -gone%5:00:00:dead:01 00095873 2 3 -gone%5:00:00:destroyed:00 00735882 1 5 -gone%5:00:00:lost:01 01450084 4 1 -gone%5:00:00:past:00 01728919 3 1 -goner%1:18:00:: 10137936 1 2 -gong%1:06:00:: 03447721 1 0 -gong%1:06:01:: 03017168 2 0 -gong%2:39:00:: 02180152 1 0 -gong_buoy%1:10:00:: 07266573 1 0 -gongora%1:18:00:: 11006889 1 0 -gongorism%1:10:00:: 07068324 1 0 -gongorist%1:18:00:: 10138114 1 0 -gonif%1:18:00:: 10133458 1 0 -goniff%1:18:00:: 10133458 1 0 -goniometer%1:06:00:: 03447894 1 0 -gonion%1:08:00:: 05233100 1 0 -goniopteris%1:20:00:: 13228867 1 0 -gonioscopy%1:04:00:: 00643389 1 0 -gonne%1:18:00:: 11007059 1 0 -gonococcus%1:05:00:: 01365885 1 0 -gonorhynchidae%1:05:00:: 02528949 1 0 -gonorhynchus%1:05:00:: 02529111 1 0 -gonorhynchus_gonorhynchus%1:05:00:: 02529293 1 0 -gonorrhea%1:26:00:: 14133543 1 0 -gonorrhoea%1:26:00:: 14133543 1 0 -gonzo%5:00:00:unconventional:01 00608791 1 0 -goo%1:27:00:: 14956661 1 0 -goober%1:13:00:: 07737745 1 0 -goober_pea%1:13:00:: 07737745 1 0 -good%1:06:00:: 03076708 4 0 -good%1:07:00:: 05159725 1 11 -good%1:07:01:: 04849241 2 9 -good%1:07:02:: 05142180 3 6 -good%3:00:01:: 01123148 1 190 -good%3:00:02:: 01129977 3 12 -good%4:02:00:: 00011093 1 9 -good%4:02:01:: 00057388 2 4 -good%5:00:00:advantageous:00 00064787 5 5 -good%5:00:00:ample:00 00106020 2 22 -good%5:00:00:close:02 00452883 10 2 -good%5:00:00:complete:00 00523364 9 2 -good%5:00:00:discriminating:00 00775611 21 0 -good%5:00:00:fortunate:00 01048762 13 1 -good%5:00:00:fresh:01 01068306 20 0 -good%5:00:00:genuine:00 01116026 19 0 -good%5:00:00:healthful:00 01166413 18 0 -good%5:00:00:healthy:00 01171213 17 0 -good%5:00:00:intellectual:00 01333477 16 0 -good%5:00:00:nice:00 01586752 6 4 -good%5:00:00:operative:00 00832784 14 1 -good%5:00:00:opportune:00 01661289 12 1 -good%5:00:00:pleasing:00 01808329 15 0 -good%5:00:00:reputable:00 01983162 4 10 -good%5:00:00:righteous:00 02036934 7 3 -good%5:00:00:skilled:00 02226162 8 2 -good%5:00:01:sound:00 02273643 11 1 -good-by%1:10:00:: 06629610 1 0 -good-bye%1:10:00:: 06629610 1 4 -good-for-naught%1:18:00:: 10135953 1 0 -good-for-naught%5:00:00:worthless:00 02502578 1 0 -good-for-nothing%1:18:00:: 10135953 1 0 -good-for-nothing%5:00:00:worthless:00 02502578 1 0 -good-hearted%5:00:00:kind:00 01372948 1 0 -good-humored%5:00:00:good-natured:00 01134232 1 0 -good-humoredness%1:07:00:: 04631067 1 0 -good-humoured%5:00:00:good-natured:00 01134232 1 0 -good-humouredness%1:07:00:: 04631067 1 0 -good-king-henry%1:20:00:: 11828973 1 0 -good-looking%5:00:00:beautiful:00 00218950 1 1 -good-natured%3:00:00:: 01133876 1 1 -good-naturedly%4:02:00:: 00350078 1 0 -good-naturedness%1:07:00:: 04631067 1 0 -good-neighborliness%1:07:00:: 04656051 1 0 -good-neighbourliness%1:07:00:: 04656051 1 0 -good-tempered%5:00:00:good-natured:00 01134486 1 0 -good-temperedness%1:07:00:: 04631067 1 0 -good-time%5:00:00:sociable:00 02258002 1 0 -good_afternoon%1:10:00:: 06632807 1 0 -good_and%4:02:00:: 00032598 1 0 -good_authority%1:10:00:: 06648462 1 0 -good_book%1:10:00:: 06431740 1 0 -good_continuation%1:09:00:: 06250208 1 0 -good_day%1:10:00:: 06629610 1 0 -good_deal%1:23:00:: 13774404 1 13 -good_egg%1:18:00:: 10138242 1 0 -good_enough%5:00:00:good:01 01124192 1 2 -good_example%1:09:00:: 05925366 1 1 -good_faith%1:07:00:: 04872016 1 1 -good_for_you%5:00:00:wholesome:00 02558184 1 1 -good_form%1:07:00:: 04899416 1 0 -good_fortune%1:19:00:: 11463746 2 0 -good_fortune%1:26:00:: 14473655 1 3 -good_friday%1:28:00:: 15191827 1 2 -good_guy%1:18:00:: 10138369 1 1 -good_health%1:26:00:: 14049711 1 2 -good_humor%1:12:00:: 07551691 1 3 -good_humour%1:12:00:: 07551691 1 0 -good_looks%1:07:00:: 04685840 1 2 -good_luck%1:11:00:: 07316856 3 0 -good_luck%1:19:00:: 11463746 2 0 -good_luck%1:26:00:: 14473655 1 3 -good_luck_charm%1:06:00:: 03009633 1 0 -good_manners%1:07:00:: 04912732 1 0 -good_morning%1:10:00:: 06632671 1 0 -good_nature%1:07:00:: 04640176 1 1 -good_night%1:10:00:: 06632947 1 3 -good_ol'_boy%1:18:00:: 10138472 1 0 -good_old_boy%1:18:00:: 10138472 1 0 -good_old_days%1:28:00:: 15252635 1 0 -good_ole_boy%1:18:00:: 10138472 1 0 -good_part%1:07:00:: 05030149 1 1 -good_person%1:18:00:: 10138767 1 1 -good_samaritan%1:18:00:: 10139077 1 0 -good_sense%1:09:00:: 05614657 1 0 -good_shepherd%1:18:00:: 11083656 1 0 -good_speller%1:18:00:: 10635149 1 0 -good_spirit%1:18:00:: 09542697 1 0 -good_story%1:10:00:: 06779310 1 0 -good_temper%1:12:00:: 07551691 1 0 -good_time%1:11:00:: 07287288 1 0 -good_turn%1:04:00:: 01227083 1 0 -good_weather%1:26:00:: 14522113 1 0 -good_will%1:07:00:: 04640356 1 5 -good_will%1:12:00:: 07499930 3 0 -good_will%1:21:00:: 13332820 2 1 -good_word%1:10:00:: 06643120 2 0 -good_word%1:10:01:: 06694540 1 0 -goodall%1:18:00:: 11007181 1 0 -goodby%1:10:00:: 06629610 1 0 -goodbye%1:10:00:: 06629610 1 0 -goodenia%1:20:00:: 12167955 1 0 -goodenia_family%1:20:00:: 12167749 1 0 -goodeniaceae%1:20:00:: 12167749 1 0 -goodish%5:00:00:considerable:00 00624576 2 0 -goodish%5:00:00:good:01 01124342 1 0 -goodly%5:00:00:considerable:00 00624576 1 0 -goodman%1:18:00:: 11007332 1 0 -goodness%1:07:01:: 04849241 2 0 -goodness%1:07:02:: 05142180 1 7 -goodwill%1:07:00:: 04640356 3 0 -goodwill%1:12:00:: 07499930 2 0 -goodwill%1:21:00:: 13332820 1 0 -goody%1:13:00:: 07557165 1 0 -goody-goody%1:18:00:: 10139206 1 0 -goody-goody%5:00:00:good:02 01130614 1 0 -goodyear%1:18:00:: 11007620 1 0 -goodyera%1:20:00:: 12063414 1 0 -gooey%5:00:00:adhesive:00 00054109 1 0 -goof%1:18:00:: 10157744 1 0 -goof%1:18:01:: 09930876 2 0 -goof%2:41:00:: 02566227 1 1 -goof-off%1:18:00:: 10135953 1 0 -goof-proof%2:30:00:: 00166593 1 0 -goofball%1:18:00:: 10157744 1 0 -goofball%1:18:01:: 09930876 2 0 -goofing_off%1:04:00:: 00741478 1 0 -goofproof%2:30:00:: 00166593 1 0 -goofy%1:18:00:: 09599633 1 0 -goofy%5:00:00:foolish:00 02571536 1 0 -google%1:10:00:: 06578905 1 0 -google%2:31:00:: 00648764 1 0 -googly%1:04:00:: 00477097 1 0 -googol%1:23:00:: 13598408 1 0 -googolplex%1:23:00:: 13598556 1 0 -gook%1:18:00:: 09643799 2 0 -gook%1:27:00:: 14956661 1 0 -goon%1:18:01:: 10274639 1 0 -goon%1:18:02:: 10184081 2 0 -gooney%1:05:00:: 02058747 1 0 -gooney_bird%1:05:00:: 02058747 1 0 -goonie%1:05:00:: 02058747 1 0 -goony%1:05:00:: 02058747 1 0 -goop%1:06:00:: 04253751 2 0 -goop%1:27:00:: 14956661 1 0 -goora_nut%1:20:00:: 12197359 1 0 -goosander%1:05:00:: 01854700 1 0 -goose%1:05:00:: 01855672 1 3 -goose%1:13:00:: 07646821 3 0 -goose%1:18:00:: 10157744 2 0 -goose%2:35:00:: 01457079 1 0 -goose%2:35:01:: 01225867 3 0 -goose%2:35:02:: 01231061 2 0 -goose-tansy%1:20:00:: 12637123 1 0 -goose_barnacle%1:05:00:: 01999186 1 0 -goose_bump%1:04:00:: 00866606 1 0 -goose_down%1:05:00:: 01896960 1 0 -goose_egg%1:23:00:: 13740168 1 0 -goose_grass%1:20:00:: 12637123 2 0 -goose_grass%1:20:01:: 12127768 3 0 -goose_grass%1:20:02:: 12118414 4 0 -goose_grass%1:20:03:: 12666159 1 0 -goose_grease%1:27:00:: 14890099 1 0 -goose_liver%1:13:00:: 07652401 1 0 -goose_pimple%1:04:00:: 00866606 1 0 -goose_plum%1:20:00:: 12638964 1 0 -goose_skin%1:04:00:: 00866606 1 0 -goose_step%1:04:00:: 00291154 1 0 -goose_step%2:38:00:: 01929133 1 0 -gooseberry%1:13:00:: 07744430 2 0 -gooseberry%1:20:00:: 12806015 1 0 -gooseberry_bush%1:20:00:: 12806015 1 0 -gooseberry_family%1:20:00:: 12804621 1 0 -goosebump%1:04:00:: 00866606 1 0 -goosefish%1:05:00:: 02548247 1 0 -gooseflesh%1:04:00:: 00866606 1 0 -goosefoot%1:20:00:: 11828247 1 0 -goosefoot_family%1:20:00:: 11827775 1 0 -goosefoot_maple%1:20:00:: 12753762 1 0 -gooselike%5:00:00:stupid:00 00439905 1 0 -gooseneck%1:25:00:: 13869129 1 0 -gooseneck_barnacle%1:05:00:: 01999186 1 0 -gooseneck_loosestrife%1:20:00:: 12095281 1 0 -goosey%5:00:00:stupid:00 00439905 1 0 -goosy%5:00:00:stupid:00 00439905 1 0 -gop%1:14:00:: 08263113 1 1 -gopher%1:05:01:: 02353861 4 0 -gopher%1:05:02:: 01671125 5 0 -gopher%1:05:03:: 02358091 3 0 -gopher%1:18:00:: 10135297 1 0 -gopher%1:18:01:: 09743792 2 0 -gopher_hole%1:17:00:: 09290350 1 0 -gopher_snake%1:05:01:: 01741232 1 0 -gopher_snake%1:05:02:: 01733957 2 0 -gopher_state%1:15:00:: 09102016 1 0 -gopher_tortoise%1:05:00:: 01671125 1 0 -gopher_turtle%1:05:00:: 01671125 1 0 -gopherus%1:05:00:: 01670961 1 0 -gopherus_agassizii%1:05:00:: 01671479 1 0 -gopherus_polypemus%1:05:00:: 01671125 1 0 -gopherwood%1:20:00:: 12516165 1 0 -goral%1:05:00:: 02418770 1 0 -gorbachev%1:18:00:: 11007750 1 0 -gordian%5:00:00:complex:00 02178241 1 0 -gordian_knot%1:06:00:: 03448031 2 0 -gordian_knot%1:10:00:: 06785541 1 0 -gordie_howe%1:18:00:: 11062801 1 0 -gordimer%1:18:00:: 11007993 1 0 -gordius%1:18:00:: 11008173 1 0 -gordon_howe%1:18:00:: 11062801 1 0 -gordon_setter%1:05:00:: 02101006 1 0 -gore%1:04:00:: 00221178 4 0 -gore%1:06:00:: 03448253 3 0 -gore%1:08:00:: 05401753 2 0 -gore%1:18:00:: 11008313 1 0 -gore%2:35:01:: 01559230 2 0 -gore%2:35:02:: 01445235 1 1 -gore_vidal%1:18:00:: 11366109 1 0 -gorgas%1:18:00:: 11008462 1 0 -gorge%1:08:00:: 05533948 3 0 -gorge%1:17:00:: 09290444 1 0 -gorge%1:17:01:: 09263912 2 0 -gorge%2:34:00:: 01193099 1 1 -gorgeous%5:00:00:beautiful:00 00219705 1 1 -gorgeously%4:02:00:: 00350163 1 0 -gorger%1:18:00:: 10561613 1 0 -gorgerin%1:06:00:: 03448491 1 0 -gorget%1:06:00:: 03448590 1 0 -gorgon%1:18:00:: 09495103 1 0 -gorgonacea%1:05:00:: 01916010 1 0 -gorgoniacea%1:05:00:: 01916010 1 0 -gorgonian%1:05:00:: 01916187 1 0 -gorgonian_coral%1:05:00:: 01916187 1 0 -gorgonocephalus%1:05:00:: 02318798 1 0 -gorgonzola%1:13:00:: 07852376 1 0 -gorilla%1:05:00:: 02480855 1 0 -gorilla_gorilla%1:05:00:: 02480855 1 0 -gorilla_gorilla_beringei%1:05:00:: 02481366 1 0 -gorilla_gorilla_gorilla%1:05:00:: 02481103 1 0 -gorilla_gorilla_grauri%1:05:00:: 02481235 1 0 -goring%1:18:00:: 11008647 1 0 -gorki%1:15:00:: 09008130 2 0 -gorki%1:18:00:: 11008870 1 0 -gorkiy%1:15:00:: 09008130 1 0 -gorky%1:15:00:: 09008130 2 0 -gorky%1:18:00:: 11008870 1 0 -gormandise%2:34:00:: 01193099 1 0 -gormandize%2:34:00:: 01193099 1 0 -gormless%5:00:00:stupid:00 00441154 1 0 -gorse%1:20:00:: 12574866 1 0 -gory%5:00:01:bloody:00 00247993 1 1 -gory%5:00:02:bloody:00 00249104 2 0 -gosainthan%1:17:00:: 09290626 1 0 -gosan-chiku%1:20:00:: 12149144 1 0 -goshawk%1:05:00:: 01606522 1 0 -gosling%1:05:00:: 01856072 1 0 -gosmore%1:20:00:: 11984144 1 0 -gospel%1:09:00:: 05962252 5 0 -gospel%1:10:00:: 06455138 1 7 -gospel%1:10:01:: 06789411 4 0 -gospel%1:10:02:: 06724323 2 1 -gospel%1:10:03:: 07061334 3 0 -gospel_according_to_john%1:10:00:: 06442239 1 0 -gospel_according_to_luke%1:10:00:: 06441973 1 0 -gospel_according_to_mark%1:10:00:: 06441803 1 0 -gospel_according_to_matthew%1:10:00:: 06441607 1 0 -gospel_of_luke%1:10:00:: 06441973 1 0 -gospel_singing%1:10:00:: 07061334 1 0 -gospel_truth%1:10:00:: 06724323 1 0 -gospeler%1:18:00:: 10067011 1 1 -gospeller%1:18:00:: 10067011 1 0 -gospels%1:10:00:: 06455138 1 2 -gossamer%1:06:00:: 03448696 1 0 -gossamer%1:06:01:: 03059806 2 0 -gossamer%5:00:00:delicate:00 00706455 1 1 -gossamer%5:00:00:thin:01 02413390 2 0 -gossip%1:10:00:: 07135080 1 3 -gossip%1:10:01:: 07223170 2 2 -gossip%1:18:00:: 10139347 3 0 -gossip%2:32:00:: 01041954 1 0 -gossip%2:32:01:: 01038666 2 0 -gossip_columnist%1:18:00:: 10139651 1 0 -gossiper%1:18:00:: 10139347 1 0 -gossiping%1:10:00:: 07135450 1 0 -gossipmonger%1:18:00:: 10139347 1 0 -gossipmongering%1:10:00:: 07135450 1 0 -gossipy%5:00:00:communicative:00 00496422 1 0 -gossypium%1:20:00:: 12175797 1 0 -gossypium_arboreum%1:20:00:: 12176278 1 0 -gossypium_barbadense%1:20:00:: 12176453 1 0 -gossypium_herbaceum%1:20:00:: 12176709 1 0 -gossypium_hirsutum%1:20:00:: 12176953 1 0 -gossypium_peruvianum%1:20:00:: 12177129 1 0 -gossypium_thurberi%1:20:00:: 12177455 1 0 -gota_canal%1:06:00:: 03448814 1 0 -goteborg%1:15:00:: 08766667 1 0 -goth%1:18:01:: 10410815 1 0 -goth%1:18:02:: 10139774 2 0 -gothenburg%1:15:00:: 08766667 1 0 -gothic%1:09:00:: 05842387 3 0 -gothic%1:10:00:: 06955706 1 0 -gothic%1:10:01:: 06826589 2 0 -gothic%3:01:00:: 03069542 3 0 -gothic%3:01:01:: 03069643 2 0 -gothic%3:01:02:: 03069797 1 0 -gothic%5:00:00:nonmodern:00 01537448 4 0 -gothic%5:00:00:strange:00 00969103 5 0 -gothic_arch%1:06:00:: 03448956 1 0 -gothic_architecture%1:09:00:: 05842387 1 0 -gothic_romance%1:10:00:: 06369405 1 0 -gothic_romancer%1:18:00:: 10139944 1 1 -gothite%1:27:00:: 14677314 1 0 -gotterdammerung%1:10:00:: 06372925 1 0 -gottfried_wilhelm_leibnitz%1:18:00:: 11125193 1 0 -gottfried_wilhelm_leibniz%1:18:00:: 11125193 1 0 -gotthold_ephraim_lessing%1:18:00:: 11129665 1 0 -gottlieb_daimler%1:18:00:: 10921009 1 0 -gouache%1:06:00:: 03449103 2 0 -gouache%1:06:01:: 03449217 1 0 -gouda%1:13:00:: 07853648 1 0 -gouda_cheese%1:13:00:: 07853648 1 0 -goudy%1:18:00:: 11009115 1 0 -gouge%1:04:00:: 00942900 3 0 -gouge%1:06:00:: 03449309 2 0 -gouge%1:07:00:: 04693384 1 0 -gouge%2:35:00:: 01281611 1 3 -gouge%2:35:01:: 01281782 3 2 -gouge%2:40:00:: 02241107 2 2 -gouge_out%2:35:00:: 01281343 1 0 -gouger%1:18:00:: 09955015 2 0 -gouger%1:18:01:: 10140051 1 0 -goujon%1:05:00:: 02520147 1 0 -goulash%1:13:00:: 07590320 1 0 -gould%1:18:00:: 11009273 2 0 -gould%1:18:01:: 11009495 1 0 -gounod%1:18:00:: 11009635 1 0 -gourd%1:06:00:: 03449451 1 1 -gourd%1:20:01:: 12157769 3 0 -gourd%1:20:02:: 12158031 2 0 -gourd_family%1:20:00:: 12157276 1 0 -gourd_vine%1:20:00:: 12157769 1 0 -gourde%1:23:00:: 13679273 1 0 -gourmand%1:18:00:: 10132988 1 0 -gourmandism%1:07:00:: 05212264 1 0 -gourmandize%2:34:00:: 01193099 1 0 -gourmandizer%1:18:00:: 10132988 1 0 -gourmet%1:18:00:: 10061656 1 2 -gout%1:26:00:: 14188804 1 1 -gouty%5:00:00:ill:01 02545168 1 0 -gouty_arthritis%1:26:00:: 14188804 1 0 -gouverneur_morris%1:18:00:: 11191653 1 0 -govern%2:41:00:: 02586619 3 3 -govern%2:41:01:: 02442205 2 8 -govern%2:41:02:: 02511551 1 11 -govern%2:42:00:: 02628647 4 0 -governable%5:00:00:manageable:00 01474942 1 0 -governador_valadares%1:15:00:: 08855763 1 0 -governance%1:04:00:: 01124794 2 0 -governance%1:14:00:: 08164585 1 0 -governed%1:14:00:: 08161258 1 4 -governess%1:18:00:: 10140169 1 1 -governing%1:04:00:: 01124794 1 0 -governing%5:00:00:dominant:01 00792075 1 2 -governing_board%1:14:00:: 08324107 1 0 -governing_body%1:14:00:: 08164585 1 0 -government%1:04:00:: 01124794 2 7 -government%1:09:00:: 05663671 3 1 -government%1:09:01:: 06148148 4 0 -government%1:14:00:: 08050678 1 100 -government-in-exile%1:14:00:: 08052690 1 0 -government_accounting_office%1:14:00:: 08162245 1 0 -government_activity%1:04:00:: 01124794 1 0 -government_agency%1:14:00:: 08337324 1 0 -government_agent%1:18:00:: 10133644 1 0 -government_bond%1:21:00:: 13338234 1 0 -government_building%1:06:00:: 03449564 1 0 -government_department%1:14:00:: 08119821 1 0 -government_income%1:21:00:: 13261779 1 0 -government_issue%1:21:00:: 13367593 1 0 -government_man%1:18:00:: 10133850 1 0 -government_minister%1:18:00:: 10320863 1 0 -government_note%1:21:00:: 13393762 1 0 -government_office%1:06:00:: 03449858 1 3 -government_officials%1:14:00:: 08357784 1 0 -government_printing_office%1:14:00:: 08356573 1 0 -government_revenue%1:21:00:: 13261779 1 0 -government_security%1:21:00:: 13340080 1 0 -governmental%5:00:00:political:00 01814711 1 0 -governmentally%4:02:00:: 00130322 1 0 -governor%1:06:00:: 03450018 2 0 -governor%1:18:00:: 10140314 1 9 -governor's_plum%1:20:00:: 12378249 1 0 -governor's_race%1:11:00:: 07473207 1 1 -governor_general%1:18:00:: 10140597 1 0 -governor_plum%1:20:00:: 12378249 1 0 -governorship%1:04:00:: 00592795 1 0 -gowen_cypress%1:20:00:: 11631159 1 0 -gown%1:06:00:: 03450230 1 5 -gown%1:06:01:: 03450516 5 0 -gown%1:06:02:: 03450734 4 0 -gown%1:06:03:: 03824381 3 0 -gown%1:14:00:: 08286342 2 0 -gown%2:29:00:: 00106592 1 0 -gowned%5:00:00:clothed:00 00456026 1 1 -goy%1:18:00:: 09679028 1 0 -goya%1:18:00:: 11009773 1 0 -goya_y_lucientes%1:18:00:: 11009773 1 0 -gp%1:18:00:: 10126009 1 0 -gp_bomb%1:06:00:: 03433637 1 0 -gpa%1:10:00:: 07261542 1 0 -gpo%1:14:00:: 08356573 1 0 -gps%1:06:00:: 03440216 1 0 -graafian_follicle%1:08:00:: 05518449 1 0 -grab%1:04:00:: 00138956 2 0 -grab%1:06:00:: 03450881 1 0 -grab%2:31:00:: 00737476 6 0 -grab%2:35:00:: 01439190 1 27 -grab%2:35:05:: 01350283 5 0 -grab%2:38:02:: 02099239 3 1 -grab%2:40:00:: 02304648 2 4 -grab%2:40:03:: 02358217 4 0 -grab_bag%1:06:00:: 03450974 2 0 -grab_bag%1:14:00:: 08399287 1 0 -grab_bar%1:06:00:: 03451120 1 0 -grab_sample%1:09:00:: 05822337 1 2 -grabber%1:18:00:: 10140683 1 0 -grabby%5:00:00:acquisitive:00 00029933 1 0 -grace%1:07:00:: 04900357 3 2 -grace%1:07:01:: 05003590 2 4 -grace%1:07:02:: 04840715 7 0 -grace%1:07:03:: 04640356 4 1 -grace%1:10:00:: 07190039 6 0 -grace%1:18:00:: 09495382 5 0 -grace%1:26:00:: 14458181 1 4 -grace%2:36:00:: 01675963 1 1 -grace%2:42:00:: 02748927 2 0 -grace_cup%1:06:00:: 03451253 1 0 -grace_ethel_cecile_rosalie_allen%1:18:00:: 10815113 1 0 -grace_kelly%1:18:00:: 11099923 1 0 -grace_note%1:10:00:: 06871983 1 0 -grace_of_god%1:07:00:: 04840715 1 0 -grace_patricia_kelly%1:18:00:: 11099923 1 0 -graceful%3:00:00:: 01139352 1 2 -graceful%5:00:00:gracious:00 01142069 2 0 -gracefully%4:02:00:: 00179807 1 3 -gracefully%4:02:01:: 00194156 2 0 -gracefulness%1:07:00:: 05003423 1 0 -graceless%5:00:00:awkward:00 01141242 2 0 -graceless%5:00:00:inelegant:00 00851329 3 0 -graceless%5:00:00:ungracious:00 01142666 1 0 -gracelessly%4:02:00:: 00179928 2 0 -gracelessly%4:02:01:: 00194362 1 0 -gracelessness%1:07:00:: 05004532 1 0 -gracelessness%1:07:01:: 04815624 2 0 -gracie%1:18:00:: 10815113 1 0 -gracie_allen%1:18:00:: 10815113 1 0 -gracilariid%1:05:00:: 02292980 1 0 -gracilariid_moth%1:05:00:: 02292980 1 0 -gracilariidae%1:05:00:: 02292850 1 0 -gracile%5:00:00:graceful:00 01140188 1 0 -gracility%1:07:00:: 05003590 1 0 -gracillariidae%1:05:00:: 02292850 1 0 -gracious%3:00:00:: 01141743 1 1 -gracious%5:00:00:kind:00 01372568 2 0 -gracious%5:00:00:polite:00 00641460 3 0 -gracious%5:00:00:propitious:00 00177834 4 0 -graciously%4:02:00:: 00194156 1 1 -graciousness%1:07:00:: 04913568 1 0 -graciousness%1:07:01:: 04840981 2 0 -grackle%1:05:01:: 01574390 2 0 -grackle%1:05:02:: 01578180 1 0 -gracula%1:05:00:: 01578086 1 0 -gracula_religiosa%1:05:00:: 01578180 1 0 -grad%1:18:00:: 09786338 2 0 -grad%1:23:00:: 13612319 1 0 -grad_school%1:14:00:: 08282696 1 0 -grad_student%1:18:00:: 10141109 1 0 -gradable%5:00:00:hierarchical:00 01203873 1 0 -gradable_opposition%1:24:00:: 13856320 1 0 -gradate%2:30:00:: 00576498 2 0 -gradate%2:35:00:: 01614079 1 0 -gradation%1:04:00:: 01003729 3 0 -gradation%1:10:00:: 07112282 2 0 -gradation%1:26:00:: 14429608 1 0 -gradational%5:00:00:gradual:01 01143138 1 0 -gradatory%5:00:00:gradual:01 01143138 1 0 -grade%1:05:00:: 02406952 9 0 -grade%1:07:00:: 05093890 8 0 -grade%1:07:01:: 05068716 3 1 -grade%1:07:02:: 05132045 7 0 -grade%1:09:00:: 05737153 6 0 -grade%1:10:00:: 07112282 5 0 -grade%1:14:00:: 08238463 1 17 -grade%1:23:00:: 13612319 4 0 -grade%1:26:00:: 14428160 2 5 -grade%2:31:00:: 00657550 4 0 -grade%2:31:03:: 00658052 1 1 -grade%2:31:05:: 00657728 3 0 -grade%2:35:00:: 01307609 2 0 -grade-appropriate%5:00:00:appropriate:00 00135193 1 0 -grade-constructed%5:00:00:surface:00 02471466 1 1 -grade_crossing%1:06:00:: 03659122 1 0 -grade_insignia%1:10:00:: 07269552 1 0 -grade_point%1:09:00:: 05737532 1 0 -grade_point_average%1:10:00:: 07261542 1 0 -grade_school%1:14:00:: 08412749 1 1 -grade_separation%1:06:00:: 03451365 1 0 -graded%5:00:00:hierarchical:00 01203986 1 1 -grader%1:18:00:: 10140783 1 0 -gradient%1:07:01:: 05068461 2 0 -gradient%1:24:00:: 13859512 1 15 -grading%1:04:00:: 01010334 1 1 -grading%1:04:01:: 00874977 3 0 -grading%1:04:02:: 00912576 2 0 -gradual%1:10:00:: 07033433 1 0 -gradual%3:00:01:: 01142804 1 7 -gradual%3:00:02:: 01144359 2 0 -graduality%1:07:00:: 05061805 1 0 -gradually%4:02:00:: 00107987 1 23 -gradualness%1:07:00:: 05061805 2 0 -gradualness%1:07:01:: 05069853 1 0 -graduate%1:06:00:: 03451473 2 0 -graduate%1:18:00:: 09786338 1 6 -graduate%2:30:00:: 00295697 3 0 -graduate%2:40:00:: 02264397 1 7 -graduate%2:40:01:: 02264179 2 3 -graduate%5:00:00:high:02 01211665 1 3 -graduate_nurse%1:18:00:: 10140929 1 0 -graduate_school%1:14:00:: 08282696 1 1 -graduate_student%1:18:00:: 10141109 1 1 -graduated%3:44:00:: 03147643 1 0 -graduated%5:00:00:gradual:01 01143138 2 0 -graduated_cylinder%1:06:00:: 03451711 1 0 -graduated_table%1:24:00:: 13850304 1 0 -graduated_tax%1:21:00:: 13314495 1 0 -graduating_class%1:14:00:: 08238909 1 2 -graduation%1:04:00:: 01003729 4 0 -graduation%1:04:01:: 00212065 1 6 -graduation%1:10:00:: 06801965 3 0 -graduation%1:11:01:: 07454758 2 0 -graduation_exercise%1:11:00:: 07454758 1 0 -graeco-roman%5:00:00:classical:00 00413861 1 0 -graeco-roman_deity%1:18:00:: 09547903 1 0 -graecophile%1:18:00:: 10422540 1 0 -graecophile%3:01:00:: 03133141 1 0 -graecophilic%3:01:00:: 03133141 1 0 -graf%1:18:00:: 11010019 1 0 -graf_zeppelin%1:06:00:: 04614372 1 0 -graffiti%1:06:00:: 03451798 1 0 -graffito%1:06:00:: 03451798 1 0 -graft%1:04:00:: 00379588 3 0 -graft%1:04:01:: 00776262 2 0 -graft%1:08:00:: 05582859 1 0 -graft%2:35:00:: 01530678 1 0 -graft%2:35:01:: 01530431 2 0 -grafting%1:04:00:: 00379588 1 0 -graham%1:13:00:: 07569644 3 0 -graham%1:18:00:: 11010187 2 0 -graham%1:18:01:: 11010385 1 0 -graham_bread%1:13:00:: 07683039 1 0 -graham_cracker%1:13:00:: 07695652 1 0 -graham_flour%1:13:00:: 07569644 1 0 -graham_greene%1:18:00:: 11013743 1 0 -grahame%1:18:00:: 11010557 1 0 -grail%1:06:00:: 03451909 2 0 -grail%1:09:00:: 05981936 1 0 -grain%1:07:00:: 04950713 10 0 -grain%1:07:01:: 04934220 11 0 -grain%1:07:02:: 05107322 9 0 -grain%1:13:00:: 07802417 2 1 -grain%1:17:00:: 09290777 1 2 -grain%1:20:00:: 12156819 7 0 -grain%1:20:01:: 12141385 8 0 -grain%1:23:01:: 13719683 6 0 -grain%1:23:02:: 13721893 5 0 -grain%1:23:03:: 13723304 4 0 -grain%1:27:00:: 14760339 3 0 -grain%2:30:00:: 00144169 3 0 -grain%2:30:01:: 00141524 4 0 -grain%2:35:00:: 01530898 1 0 -grain%2:35:01:: 01363005 2 0 -grain_alcohol%1:27:00:: 14709265 1 0 -grain_field%1:15:00:: 08579352 1 0 -grain_merchant%1:18:00:: 10141268 1 0 -grain_moth%1:05:00:: 02293868 1 0 -grain_sorghum%1:20:00:: 12137569 1 0 -grainfield%1:15:00:: 08579352 1 0 -grainger%1:18:00:: 11010697 1 0 -graininess%1:07:00:: 04949256 1 0 -graining%1:07:00:: 04951071 1 1 -grains_of_paradise%1:20:00:: 12357968 1 0 -grainy%5:00:00:coarse:00 02231502 1 0 -grainy_club%1:20:00:: 13024653 1 0 -grainy_club_mushrooms%1:20:00:: 13024500 1 0 -gram%1:18:00:: 11010936 2 0 -gram%1:23:00:: 13723712 1 27 -gram's_method%1:04:00:: 00275751 1 0 -gram's_procedure%1:04:00:: 00275751 1 0 -gram's_solution%1:27:00:: 15053373 1 0 -gram's_stain%1:04:00:: 00275751 1 0 -gram-atomic_weight%1:23:00:: 13723899 1 0 -gram-negative%5:00:00:negative:04 01821078 1 0 -gram-positive%5:00:00:positive:04 01820684 1 0 -gram_atom%1:23:00:: 13723899 1 0 -gram_calorie%1:23:00:: 13726296 1 0 -gram_method%1:04:00:: 00275751 1 0 -gram_molecule%1:23:00:: 13724081 1 0 -gram_stain%1:04:00:: 00275751 1 0 -grama%1:20:00:: 12112008 1 0 -grama_grass%1:20:00:: 12112008 1 0 -gramicidin%1:06:00:: 03452055 1 0 -graminaceae%1:20:00:: 12100538 1 0 -graminaceous_plant%1:20:00:: 12101870 1 0 -graminales%1:20:00:: 12100382 1 0 -gramineae%1:20:00:: 12100538 1 0 -gramineous_plant%1:20:00:: 12101870 1 0 -gramma%1:20:00:: 12112008 1 0 -gramma_grass%1:20:00:: 12112008 1 0 -grammar%1:09:00:: 06174404 1 0 -grammar_school%1:14:00:: 08412749 2 0 -grammar_school%1:14:01:: 08412958 1 0 -grammarian%1:18:00:: 10141364 1 1 -grammatic%3:01:00:: 02880322 1 5 -grammatical%3:00:00:: 01146012 2 0 -grammatical%3:01:00:: 02880322 1 4 -grammatical_case%1:10:00:: 06310945 1 0 -grammatical_category%1:10:00:: 06309383 1 0 -grammatical_constituent%1:10:00:: 06312966 1 0 -grammatical_construction%1:10:00:: 06313651 1 0 -grammatical_gender%1:10:00:: 06328643 1 0 -grammatical_meaning%1:10:00:: 06602148 1 0 -grammatical_relation%1:24:00:: 13796779 1 0 -grammatical_rule%1:10:00:: 07260175 1 0 -grammatically%4:02:00:: 00488143 1 1 -grammatolatry%1:04:00:: 01044983 1 0 -grammatophyllum%1:20:00:: 12063887 1 0 -gramme%1:23:00:: 13723712 1 0 -gramophone%1:06:00:: 03452267 1 0 -gramps%1:18:00:: 10142391 1 0 -grampus%1:05:01:: 02071028 2 0 -grampus%1:05:02:: 02071294 1 0 -grampus_griseus%1:05:00:: 02071028 1 0 -gran%1:18:00:: 10142747 1 0 -gran_casa%1:06:00:: 02803666 1 0 -gran_santiago%1:15:00:: 08721559 1 0 -granada%1:15:00:: 09025863 1 0 -granadilla%1:13:00:: 07753980 4 0 -granadilla%1:20:00:: 12384037 1 0 -granadilla%1:20:01:: 12383737 3 0 -granadilla%1:20:02:: 12383894 2 0 -granadilla_tree%1:20:00:: 11749112 1 0 -granadilla_wood%1:20:01:: 11749273 2 0 -granadilla_wood%1:20:02:: 12524010 1 0 -granadillo%1:20:01:: 11749112 1 0 -granary%1:06:00:: 03452449 1 1 -grand%1:06:00:: 03452741 2 0 -grand%1:23:00:: 13750844 1 0 -grand%5:00:00:dignified:00 00752110 8 0 -grand%5:00:00:extraordinary:00 01676517 4 0 -grand%5:00:00:important:00 01278251 7 0 -grand%5:00:00:impressive:00 01284544 1 6 -grand%5:00:00:large:00 01387149 6 0 -grand%5:00:00:noble:01 01588619 5 0 -grand%5:00:00:noble:02 01591050 2 1 -grand%5:00:00:rich:03 02024928 3 0 -grand_canal%1:15:00:: 08729094 2 0 -grand_canal%1:15:01:: 08813586 1 0 -grand_canyon%1:17:00:: 09291027 1 0 -grand_canyon_national_park%1:15:00:: 08604891 1 0 -grand_canyon_state%1:15:00:: 09057311 1 0 -grand_circle%1:04:00:: 00435401 1 0 -grand_dragon%1:18:00:: 10141811 1 0 -grand_duchess%1:18:00:: 10141930 1 0 -grand_duchy%1:15:00:: 08557864 1 0 -grand_duchy_of_luxembourg%1:15:00:: 08960987 1 0 -grand_duke%1:18:00:: 10142060 1 0 -grand_fir%1:20:00:: 11622368 1 0 -grand_guignol%1:10:00:: 07008849 1 0 -grand_inquisitor%1:18:00:: 10142537 1 0 -grand_island%1:15:00:: 09109771 1 0 -grand_jury%1:14:00:: 08414964 1 4 -grand_lama%1:18:00:: 09988493 1 0 -grand_larceny%1:04:00:: 00783902 1 0 -grand_mal%1:26:00:: 14083368 2 0 -grand_mal%1:26:01:: 14087513 1 0 -grand_mal_epilepsy%1:26:00:: 14087513 1 0 -grand_marnier%1:13:00:: 07910152 1 0 -grand_mufti%1:18:00:: 10143085 1 0 -grand_national%1:11:00:: 07462808 1 0 -grand_opera%1:10:00:: 07026827 1 0 -grand_piano%1:06:00:: 03452741 1 0 -grand_prix%1:11:00:: 07459066 1 0 -grand_rapids%1:15:00:: 09100837 1 0 -grand_river%1:17:00:: 09291185 1 0 -grand_slam%1:11:00:: 07474809 1 0 -grand_teton%1:17:00:: 09291340 1 0 -grand_teton_national_park%1:15:00:: 08605123 1 0 -grand_theft%1:04:00:: 00783902 1 0 -grand_total%1:09:00:: 05860869 1 0 -grand_tour%1:04:00:: 00311091 2 0 -grand_tour%1:04:01:: 00311195 1 0 -grand_turk%1:18:00:: 10674315 1 0 -grandad%1:18:00:: 10142391 1 0 -grandaunt%1:18:00:: 10145239 1 0 -grandchild%1:18:00:: 10141590 1 1 -granddad%1:18:00:: 10142391 1 0 -granddaddy%1:18:00:: 10142391 1 0 -granddaughter%1:18:00:: 10141732 1 0 -grande_dame%1:18:00:: 10142166 1 0 -grandee%1:18:00:: 10142290 1 0 -grandeur%1:07:01:: 04814238 1 3 -grandeur%1:07:02:: 04870340 2 1 -grandfather%1:18:00:: 10142391 1 4 -grandfather_clause%1:26:00:: 14529612 1 2 -grandfather_clock%1:06:00:: 03452594 1 0 -grandiloquence%1:10:00:: 07070429 1 0 -grandiloquent%5:00:00:pretentious:00 01849960 2 0 -grandiloquent%5:00:00:rhetorical:00 02017721 1 0 -grandiloquently%4:02:00:: 00394292 1 0 -grandiose%5:00:00:impressive:00 01285713 1 1 -grandiose%5:00:00:pretentious:00 01850288 2 0 -grandiosely%4:02:00:: 00269588 1 0 -grandiosity%1:10:00:: 07070429 1 0 -grandly%4:02:00:: 00350393 1 1 -grandma%1:18:00:: 10142747 1 2 -grandma_moses%1:18:00:: 11193645 1 0 -grandmaster%1:18:00:: 10142946 1 0 -grandmother%1:18:00:: 10142747 1 8 -grandnephew%1:18:00:: 10146002 1 0 -grandness%1:07:00:: 04814238 3 0 -grandness%1:07:01:: 05104548 2 0 -grandness%1:07:02:: 04729328 4 0 -grandness%1:26:00:: 14434681 1 0 -grandniece%1:18:00:: 10146104 1 0 -grandpa%1:18:00:: 10142391 1 0 -grandparent%1:18:00:: 10143172 1 1 -grandson%1:18:00:: 10143299 1 0 -grandstand%1:06:00:: 03452953 2 0 -grandstand%1:14:00:: 08222871 1 0 -grandstand%2:36:00:: 01714805 1 0 -grandstander%1:18:00:: 10143371 1 0 -granduncle%1:18:00:: 10146209 1 0 -grange%1:06:00:: 03453162 1 0 -granger%1:18:00:: 10078806 1 0 -granicus%1:04:00:: 01279866 1 0 -granite%1:07:00:: 04778114 2 1 -granite%1:27:00:: 14890286 1 1 -granite_state%1:15:00:: 09111366 1 0 -granite_stater%1:18:00:: 09744346 1 0 -granitelike%5:00:00:hard:01 01151951 1 0 -graniteware%1:06:00:: 03453231 1 0 -granitic%5:00:00:hard:01 01151951 2 0 -granitic%5:00:00:hardhearted:00 01158180 1 0 -grannie%1:18:00:: 10142747 1 0 -granny%1:06:00:: 03453320 3 0 -granny%1:18:00:: 10142747 1 3 -granny%1:18:01:: 10143530 2 0 -granny's_bonnets%1:20:00:: 11727738 1 0 -granny_knot%1:06:00:: 03453320 1 0 -granny_smith%1:13:00:: 07742313 1 0 -granola%1:13:00:: 07704994 1 0 -granola_bar%1:13:00:: 07705137 1 0 -grant%1:04:00:: 00087423 2 5 -grant%1:07:00:: 05176477 8 0 -grant%1:10:00:: 06526619 7 0 -grant%1:18:00:: 11011123 6 0 -grant%1:18:01:: 11011398 5 0 -grant%1:18:02:: 11011559 4 0 -grant%1:21:00:: 13266892 1 5 -grant%1:21:02:: 13254237 3 3 -grant%2:32:00:: 00806049 3 5 -grant%2:40:00:: 02255268 4 3 -grant%2:40:01:: 02255462 1 14 -grant%2:40:02:: 02255942 7 0 -grant%2:40:03:: 02262278 2 9 -grant%2:40:04:: 02316649 6 0 -grant%2:40:05:: 02317094 5 2 -grant-in-aid%1:04:00:: 00088367 1 1 -grant-in-aid%1:21:00:: 13267534 2 0 -grant_wood%1:18:00:: 11395466 1 0 -granted%5:00:00:acknowledged:00 00028280 1 4 -grantee%1:18:00:: 10143595 1 0 -grantee%1:18:01:: 09783537 2 0 -granter%1:18:00:: 10143725 1 0 -granth%1:10:00:: 06430784 1 0 -granth_sahib%1:10:00:: 06430784 1 0 -granting_immunity%1:04:00:: 00213903 1 0 -grantor%1:18:00:: 10143889 1 0 -grantor_trust%1:21:00:: 13361624 1 0 -granular%3:00:04:: 00365799 2 0 -granular%5:00:00:coarse:00 02231502 1 3 -granular_pearlite%1:27:00:: 14890485 1 0 -granularity%1:07:00:: 04949256 1 0 -granulate%2:29:00:: 00099374 3 0 -granulate%2:30:00:: 00144169 1 0 -granulate%2:30:01:: 00141524 2 0 -granulated%5:00:00:coarse:00 02231886 1 0 -granulated_sugar%1:13:00:: 07596046 1 0 -granulation%1:04:00:: 00925866 2 0 -granulation%1:26:00:: 14237818 1 0 -granulation_tissue%1:26:00:: 14237818 1 0 -granule%1:17:00:: 09291513 1 1 -granuliferous%3:01:00:: 02736507 1 0 -granulocyte%1:08:00:: 05453145 1 0 -granulocytic%3:01:00:: 03009253 1 1 -granulocytic_leukemia%1:26:00:: 14245163 1 0 -granulocytopenia%1:26:00:: 14071896 1 0 -granuloma%1:26:00:: 14238639 1 0 -granuloma_inguinale%1:26:00:: 14133750 1 0 -granuloma_venereum%1:26:00:: 14133750 1 0 -granulomatous%3:01:00:: 02736596 1 0 -granulose%5:00:00:coarse:00 02231502 1 0 -granville-barker%1:18:00:: 11011764 1 0 -granville_stanley_hall%1:18:00:: 11024908 1 0 -granville_wilt%1:26:00:: 14283002 1 1 -grape%1:06:00:: 03453547 3 0 -grape%1:13:00:: 07758680 1 2 -grape%1:20:00:: 13144794 2 0 -grape-leaf_begonia%1:20:00:: 12361350 1 0 -grape-sized%5:00:00:sized:00 02223361 1 0 -grape_arbor%1:06:00:: 03453443 1 3 -grape_arbour%1:06:00:: 03453443 1 0 -grape_fern%1:20:00:: 12960863 1 0 -grape_hyacinth%1:20:00:: 12460697 1 0 -grape_jelly%1:13:00:: 07643679 1 0 -grape_juice%1:13:00:: 07924560 1 0 -grape_louse%1:05:00:: 02255855 1 0 -grape_phylloxera%1:05:00:: 02255855 1 0 -grape_sugar%1:27:00:: 14884336 1 0 -grape_vine%1:20:00:: 13144794 1 0 -grapefruit%1:13:00:: 07749969 2 0 -grapefruit%1:20:00:: 12709688 1 0 -grapefruit_juice%1:13:00:: 07924747 1 0 -grapefruit_peel%1:13:00:: 07601025 1 0 -grapelike%3:01:00:: 02736716 1 0 -grapeshot%1:06:00:: 03453547 1 0 -grapevine%1:10:00:: 07223635 1 3 -grapevine%1:20:00:: 13144794 2 0 -grapevine_family%1:20:00:: 13144303 1 0 -grapey%5:00:00:tasty:00 02397903 1 0 -graph%1:10:00:: 07000195 1 15 -graph%2:36:00:: 01755137 1 1 -graph%2:36:01:: 01755291 2 0 -graph_paper%1:27:00:: 14890183 1 0 -grapheme%1:10:00:: 06818970 1 0 -graphic%1:06:00:: 03453696 1 0 -graphic%3:01:00:: 02736808 4 0 -graphic%3:01:01:: 02736983 3 0 -graphic%5:00:00:explicit:00 00941242 2 1 -graphic%5:00:00:realistic:00 01941026 5 0 -graphic%5:00:00:written:00 02285278 1 2 -graphic_art%1:06:00:: 03453809 1 0 -graphic_artist%1:18:00:: 10475687 1 0 -graphic_design%1:10:00:: 06999045 1 0 -graphic_designer%1:18:00:: 10144055 1 0 -graphic_symbol%1:10:00:: 06818970 1 0 -graphic_tellurium%1:27:00:: 15065713 1 0 -graphical%3:01:00:: 02736808 1 1 -graphical%5:00:00:written:00 02285278 2 0 -graphical_record%1:10:00:: 07000195 1 0 -graphical_user_interface%1:10:00:: 06575681 1 0 -graphically%4:02:00:: 00124038 3 0 -graphically%4:02:02:: 00132797 2 0 -graphically%4:02:03:: 00310847 1 1 -graphics%1:06:00:: 03453985 2 0 -graphics%1:10:01:: 06998748 1 0 -graphite%1:27:00:: 14796575 1 5 -graphologist%1:18:00:: 10144188 1 0 -graphology%1:09:00:: 06248361 1 0 -graphospasm%1:26:00:: 14360915 1 0 -grapnel%1:06:00:: 03454110 2 0 -grapnel%1:06:01:: 03454211 1 0 -grapnel_anchor%1:06:00:: 03454110 1 0 -grapo%1:14:00:: 08021129 1 0 -grappa%1:13:00:: 07903962 1 0 -grappelli%1:18:00:: 11012042 1 0 -grapple%1:04:00:: 00622266 3 0 -grapple%1:06:00:: 03454211 1 0 -grapple%1:06:01:: 03037108 2 0 -grapple%2:35:01:: 01574292 2 2 -grapple%2:41:00:: 02587532 1 3 -grappler%1:06:00:: 03454211 2 0 -grappler%1:18:00:: 10793168 1 0 -grappling%1:04:00:: 00622266 1 2 -grappling%1:04:01:: 00447540 2 0 -grappling_hook%1:06:00:: 03454211 1 0 -grappling_iron%1:06:00:: 03454211 1 0 -graptophyllum%1:20:00:: 12812665 1 0 -graptophyllum_pictum%1:20:00:: 12812801 1 0 -grapy%5:00:00:tasty:00 02397903 1 0 -grasp%1:04:00:: 00812526 4 0 -grasp%1:07:00:: 05194874 3 0 -grasp%1:09:00:: 05806623 1 0 -grasp%1:09:01:: 05623628 2 0 -grasp%2:31:00:: 00588221 2 8 -grasp%2:35:00:: 01216004 1 15 -graspable%5:00:00:comprehensible:00 00533452 1 0 -grasping%1:04:00:: 00812274 2 0 -grasping%1:09:00:: 05806855 1 1 -grasping%5:00:00:acquisitive:00 00029933 1 0 -grass%1:06:00:: 03990834 5 0 -grass%1:13:00:: 07801091 4 0 -grass%1:18:00:: 11012153 2 0 -grass%1:18:01:: 10675481 3 0 -grass%1:20:00:: 12102133 1 41 -grass%2:32:09:: 00841986 6 0 -grass%2:33:00:: 01137055 1 1 -grass%2:34:00:: 01204581 5 0 -grass%2:35:00:: 01603032 2 0 -grass%2:35:01:: 01580348 3 0 -grass%2:35:02:: 01209025 4 0 -grass-covered%5:00:00:grassy:00 00209781 1 0 -grass-eating%5:00:00:herbivorous:00 00314559 1 0 -grass-leaved_golden_aster%1:20:00:: 11951961 1 0 -grass-of-parnassus%1:20:00:: 12801520 1 0 -grass_bacillus%1:05:00:: 01350485 1 0 -grass_family%1:20:00:: 12100538 1 0 -grass_fern%1:20:00:: 13179804 1 0 -grass_finch%1:05:01:: 01544208 1 0 -grass_finch%1:05:02:: 01535140 2 0 -grass_frog%1:05:00:: 01642539 1 0 -grass_over%2:35:00:: 01209025 1 0 -grass_parakeet%1:05:00:: 01821869 1 0 -grass_pea%1:20:00:: 12541403 1 0 -grass_pink%1:20:01:: 12049282 1 0 -grass_pink%1:20:02:: 11809594 2 0 -grass_poly%1:20:00:: 12328801 1 0 -grass_roots%1:14:00:: 07947789 2 0 -grass_roots%1:24:00:: 13791250 1 0 -grass_skirt%1:06:00:: 03454442 1 0 -grass_snake%1:05:00:: 01737875 1 0 -grass_snake%1:05:02:: 01735189 2 0 -grass_snake%1:05:03:: 01729977 3 0 -grass_tree%1:20:01:: 12466206 2 0 -grass_tree%1:20:02:: 12254891 3 0 -grass_tree%1:20:03:: 12478768 1 0 -grass_tree_family%1:20:00:: 12465796 1 0 -grass_vetch%1:20:00:: 12540647 1 0 -grass_vetchling%1:20:00:: 12540647 1 0 -grass_widow%1:18:00:: 10020366 1 0 -grass_widower%1:18:00:: 10144338 1 0 -grass_wrack%1:20:00:: 12618727 1 0 -grassfinch%1:05:01:: 01544208 1 0 -grassfire%1:11:00:: 07303988 1 1 -grasshopper%1:05:00:: 02226429 1 4 -grasshopper%1:13:00:: 07915213 2 0 -grasshopper_mouse%1:05:00:: 02337902 1 0 -grassland%1:15:00:: 08598301 1 0 -grassless%3:00:00:: 00210212 1 0 -grasslike%5:00:00:grassy:00 00209916 1 0 -grassroots%5:00:00:basic:00 01856686 1 1 -grassroots%5:00:00:common:01 00487327 2 0 -grassy%3:00:00:: 00209620 1 0 -grassy-leafed%5:00:00:leafy:00 01702031 1 0 -grassy-leaved%5:00:00:leafy:00 01702031 1 0 -grassy_death_camas%1:20:00:: 12467592 1 0 -grate%1:06:00:: 03454536 1 1 -grate%1:06:01:: 03454707 3 0 -grate%1:11:00:: 07384244 2 0 -grate%2:35:00:: 01394464 4 0 -grate%2:35:01:: 01308160 5 0 -grate%2:35:02:: 01574077 3 0 -grate%2:37:00:: 01773825 2 0 -grate%2:40:00:: 02330583 1 0 -grated_cheese%1:13:00:: 07853762 1 0 -grateful%3:00:00:: 01146493 1 10 -grateful%5:00:00:pleasant:00 01801327 2 0 -gratefully%4:02:00:: 00199986 2 0 -gratefully%4:02:01:: 00271264 1 0 -gratefulness%1:12:00:: 07504529 1 0 -grater%1:06:00:: 03454885 1 0 -graticule%1:06:00:: 04082886 1 0 -gratification%1:04:00:: 01072780 2 1 -gratification%1:26:00:: 13986679 1 3 -gratified%5:00:00:pleased:00 01805801 1 1 -gratify%2:34:00:: 01182293 2 0 -gratify%2:37:00:: 01816431 1 2 -gratifying%5:00:00:pleasant:00 01801029 2 0 -gratifying%5:00:00:pleasing:00 01808413 1 0 -gratifyingly%4:02:00:: 00183464 1 1 -grating%1:06:00:: 03454707 1 2 -grating%1:06:01:: 03454536 2 0 -grating%1:06:02:: 03194538 3 0 -grating%5:00:00:cacophonous:00 00299476 1 0 -gratingly%4:02:00:: 00350521 1 0 -gratis%4:02:00:: 00258175 1 0 -gratis%5:00:00:unpaid:00 01710260 1 0 -gratitude%1:12:00:: 07504343 1 2 -gratuitous%5:00:00:unmerited:00 01371553 1 1 -gratuitous%5:00:00:unnecessary:00 01582049 3 0 -gratuitous%5:00:00:unpaid:00 01710260 2 0 -gratuitously%4:02:00:: 00350704 1 1 -gratuity%1:21:00:: 13298701 1 0 -gratuity%1:21:01:: 13268020 2 0 -gratulatory%5:00:00:felicitous:00 01000093 1 0 -grave%1:06:00:: 03455033 2 5 -grave%1:10:00:: 06822707 3 0 -grave%1:28:00:: 15143726 1 5 -grave%2:35:00:: 01321895 2 0 -grave%2:35:01:: 01551871 1 0 -grave%5:00:00:critical:03 00651039 2 3 -grave%5:00:00:important:00 01278423 3 0 -grave%5:00:00:serious:00 02119213 1 4 -grave_accent%1:10:00:: 06822707 1 0 -grave_mound%1:06:00:: 02922292 1 0 -gravedigger%1:18:00:: 10144468 1 0 -gravel%1:27:00:: 14698884 1 3 -gravel%2:31:00:: 00622384 3 0 -gravel%2:35:00:: 01603175 2 0 -gravel%2:37:00:: 01787955 1 0 -gravel_pit%1:06:00:: 03455279 1 0 -gravelly%5:00:00:cacophonous:00 00299476 2 0 -gravelly%5:00:00:rough:00 02242223 1 0 -gravelweed%1:20:00:: 12031388 1 0 -gravely%4:02:00:: 00183823 1 4 -gravely%4:02:01:: 00015953 2 0 -graven%5:00:01:carved:00 00317310 2 0 -graven%5:00:02:carved:00 00317481 1 0 -graven_image%1:06:00:: 03560161 1 1 -graveness%1:07:00:: 04647478 1 0 -graver%1:06:00:: 03455355 1 0 -graverobber%1:18:00:: 10144571 2 0 -graverobber%1:18:01:: 10144730 1 0 -graves%1:18:00:: 11012300 1 0 -graves'_disease%1:26:00:: 14121058 1 0 -gravestone%1:06:00:: 03455488 1 1 -graveyard%1:15:00:: 08521623 1 3 -graveyard_shift%1:14:00:: 08218832 2 0 -graveyard_shift%1:28:00:: 15292960 1 0 -graveyard_watch%1:28:00:: 15293435 1 0 -gravid%5:00:00:pregnant:00 00173391 1 2 -gravida%1:18:00:: 10144838 2 0 -gravida%1:26:00:: 14047009 1 0 -gravida_i%1:18:00:: 10472129 1 0 -gravida_ii%1:18:00:: 10574723 1 0 -gravida_iii%1:18:00:: 10703221 1 0 -gravidation%1:26:00:: 14046861 1 0 -gravidity%1:26:00:: 14046861 1 0 -gravidness%1:26:00:: 14046861 1 0 -gravimeter%1:06:00:: 03553486 1 0 -gravimeter%1:06:01:: 03455642 2 0 -gravimetric%3:01:00:: 03002841 1 0 -gravimetric_analysis%1:04:00:: 00648692 1 0 -gravimetry%1:04:00:: 01002413 1 0 -graving_dock%1:06:00:: 03251533 1 0 -graving_tool%1:06:00:: 03455355 1 0 -gravitas%1:07:00:: 04910684 1 0 -gravitate%2:38:00:: 01835280 3 0 -gravitate%2:42:00:: 02731996 2 0 -gravitate%2:42:01:: 02732148 1 0 -gravitation%1:09:00:: 06198313 3 0 -gravitation%1:11:00:: 07362830 2 0 -gravitation%1:19:00:: 11464143 1 0 -gravitation_wave%1:11:00:: 07344875 1 0 -gravitational%3:01:00:: 02737183 1 1 -gravitational_attraction%1:19:00:: 11464143 1 1 -gravitational_collapse%1:11:00:: 07365673 1 0 -gravitational_constant%1:23:00:: 13590327 1 0 -gravitational_field%1:19:00:: 11464027 1 1 -gravitational_force%1:19:00:: 11464143 1 1 -gravitational_interaction%1:19:00:: 11516659 1 0 -gravitational_mass%1:07:00:: 05025520 1 0 -gravitational_theory%1:09:00:: 05990089 1 0 -gravitationally%4:02:00:: 00142105 1 0 -gravitative%3:01:00:: 02737183 1 0 -graviton%1:17:00:: 09291633 1 0 -gravity%1:07:00:: 04647478 2 1 -gravity%1:12:00:: 07512147 3 0 -gravity%1:19:00:: 11464143 1 2 -gravity-assist%1:19:00:: 11481627 1 0 -gravity_bomb%1:06:00:: 03255167 1 0 -gravity_fault%1:17:00:: 09372313 1 0 -gravity_gradient%1:24:00:: 13859925 1 0 -gravity_meter%1:06:00:: 03455642 1 0 -gravity_wave%1:11:00:: 07344875 1 0 -gravure%1:04:00:: 01103374 4 0 -gravure%1:06:00:: 03455802 3 0 -gravure%1:06:01:: 03455923 2 0 -gravure%1:10:00:: 06678784 1 0 -gravy%1:11:00:: 07477587 3 0 -gravy%1:13:00:: 07837912 2 0 -gravy%1:13:01:: 07838073 1 0 -gravy_boat%1:06:00:: 03456024 1 0 -gravy_holder%1:06:00:: 03456024 1 0 -gravy_train%1:21:00:: 13255883 1 0 -gray%1:05:00:: 02381364 4 1 -gray%1:06:00:: 03456186 2 3 -gray%1:07:00:: 04961691 1 6 -gray%1:14:00:: 08481009 3 1 -gray%1:18:00:: 11012474 9 0 -gray%1:18:01:: 11012676 8 0 -gray%1:18:02:: 11012846 7 0 -gray%1:18:03:: 11012993 6 0 -gray%1:23:00:: 13645812 5 0 -gray%2:30:00:: 00289392 2 0 -gray%2:30:01:: 00289679 1 0 -gray%5:00:00:achromatic:00 00389310 1 38 -gray%5:00:00:intermediate:00 01014685 4 0 -gray%5:00:00:old:02 01645678 2 6 -gray%5:00:00:southern:02 01607120 3 3 -gray-black%5:00:00:achromatic:00 00389607 1 0 -gray-blue%5:00:00:chromatic:00 00375471 1 0 -gray-brown%5:00:00:chromatic:00 00375593 1 0 -gray-green%5:00:00:chromatic:00 00375720 1 0 -gray-haired%5:00:00:old:02 01645678 1 2 -gray-headed%5:00:00:old:02 01645678 1 0 -gray-pink%5:00:00:chromatic:00 00375847 1 0 -gray-white%5:00:00:achromatic:00 00389734 1 0 -gray_alder%1:20:00:: 12285049 1 0 -gray_area%1:09:00:: 05998994 1 0 -gray_birch%1:20:00:: 12282235 1 0 -gray_catbird%1:05:00:: 01587526 1 0 -gray_flounder%1:05:00:: 02661892 1 0 -gray_fox%1:05:00:: 02120505 1 0 -gray_goldenrod%1:20:00:: 12017127 1 0 -gray_hen%1:05:00:: 01796105 1 0 -gray_jay%1:05:00:: 01581166 1 0 -gray_kingbird%1:05:00:: 01549053 1 0 -gray_lemming%1:05:00:: 02345340 1 0 -gray_market%1:04:00:: 01098071 1 0 -gray_matter%1:08:00:: 05483388 1 0 -gray_mullet%1:05:00:: 02601344 2 0 -gray_mullet%1:13:00:: 07784367 1 0 -gray_partridge%1:05:00:: 01807828 1 0 -gray_polypody%1:20:00:: 13173259 1 0 -gray_poplar%1:20:00:: 12732252 1 0 -gray_sage%1:20:00:: 12014085 1 0 -gray_sea_eagle%1:05:00:: 01615458 1 0 -gray_skate%1:05:00:: 01501641 1 0 -gray_snapper%1:05:00:: 02587300 1 0 -gray_sole%1:13:00:: 07791434 1 0 -gray_substance%1:08:00:: 05483388 1 0 -gray_whale%1:05:00:: 02066245 1 0 -gray_willow%1:20:00:: 12728864 1 0 -gray_wolf%1:05:00:: 02114367 1 0 -grayback%1:05:01:: 02033208 1 0 -grayback%1:05:02:: 02028900 2 0 -graybeard%1:18:00:: 10375506 1 1 -grayhen%1:05:00:: 01796105 1 0 -grayish%5:00:00:achromatic:00 00389310 1 0 -grayish-black%5:00:00:achromatic:00 00389607 1 0 -grayish-blue%5:00:00:chromatic:00 00375471 1 0 -grayish-brown%5:00:00:chromatic:00 00375593 1 0 -grayish-green%5:00:00:chromatic:00 00375720 1 0 -grayish-pink%5:00:00:chromatic:00 00375847 1 0 -grayish-white%5:00:00:achromatic:00 00389734 1 0 -grayish_brown%1:07:00:: 04973110 1 0 -graylag%1:05:00:: 01856553 1 0 -graylag_goose%1:05:00:: 01856553 1 0 -grayly%4:02:00:: 00351040 1 0 -grayness%1:07:00:: 04961691 1 0 -graz%1:15:00:: 08846626 1 0 -graze%1:04:00:: 00841091 2 0 -graze%1:26:00:: 14286885 1 0 -graze%2:34:02:: 01174742 5 0 -graze%2:35:00:: 01240514 4 0 -graze%2:35:01:: 01576165 1 3 -graze%2:35:02:: 01608508 2 2 -graze%2:35:10:: 01576478 3 0 -grazed%5:00:00:touched:00 02445394 1 0 -grazier%1:18:00:: 10144962 1 0 -grazing%1:04:00:: 00150762 2 0 -grazing%1:04:01:: 00841091 1 0 -grazing_fire%1:04:00:: 00991164 1 0 -grazing_land%1:15:00:: 08616050 1 0 -grease%1:26:00:: 14498096 2 0 -grease%1:27:00:: 14890945 1 4 -grease%2:35:00:: 01269379 1 1 -grease-gun%1:06:00:: 03456299 1 0 -grease_monkey%1:18:00:: 09825750 1 0 -grease_one's_palms%2:40:00:: 02284096 1 0 -greaseball%1:18:00:: 09716439 1 0 -greased%3:00:00:: 02236645 1 0 -greasepaint%1:06:00:: 03456447 1 0 -greaseproof%5:00:00:impervious:00 01774483 1 0 -greaseproof_paper%1:27:00:: 14891132 1 0 -greaser%1:18:00:: 09722898 1 0 -greasewood%1:20:01:: 11835251 1 0 -greasily%4:02:00:: 00350819 1 0 -greasiness%1:07:00:: 05000116 1 0 -greasy%5:00:00:dirty:01 00422168 2 0 -greasy%5:00:00:fatty:00 00992432 1 7 -greasy_spoon%1:06:00:: 03456548 1 0 -great%1:18:00:: 10145081 1 0 -great%5:00:00:good:01 01123879 4 7 -great%5:00:00:pregnant:00 00173391 6 0 -great%5:00:00:uppercase:00 01467919 5 0 -great%5:00:01:extraordinary:00 01677433 3 18 -great%5:00:01:important:00 01278818 2 38 -great%5:00:01:large:00 01386883 1 114 -great-aunt%1:18:00:: 10145239 1 0 -great-leaved_macrophylla%1:20:00:: 11710987 1 0 -great-nephew%1:18:00:: 10146002 1 0 -great-niece%1:18:00:: 10146104 1 1 -great-uncle%1:18:00:: 10146209 1 0 -great_adductor_muscle%1:08:00:: 05292200 1 0 -great_anteater%1:05:00:: 02460451 1 0 -great_ape%1:05:00:: 02480153 1 0 -great_arabian_desert%1:15:00:: 09167767 1 0 -great_attractor%1:17:00:: 09291781 1 0 -great_auk%1:05:00:: 02046442 1 0 -great_australian_bight%1:17:00:: 09292007 1 0 -great_australian_desert%1:15:00:: 09168336 1 0 -great_barracuda%1:05:00:: 02603540 1 0 -great_barrier_reef%1:17:00:: 09292348 1 0 -great_bear%1:17:00:: 09292189 1 0 -great_bellied%5:00:00:bellied:00 00222775 1 0 -great_black-backed_gull%1:05:00:: 02041875 1 0 -great_blue_heron%1:05:00:: 02008497 1 0 -great_blue_shark%1:05:00:: 01491006 1 0 -great_bowerbird%1:05:00:: 01601410 1 0 -great_britain%1:15:00:: 08858942 2 1 -great_britain%1:15:01:: 08860123 1 1 -great_burdock%1:20:00:: 11924849 1 0 -great_bustard%1:05:00:: 02019190 1 0 -great_care%1:04:00:: 01132148 1 0 -great_cerebral_vein%1:08:00:: 05362016 1 0 -great_circle%1:15:00:: 08579487 1 0 -great_commoner%1:18:00:: 10869385 1 0 -great_crested_grebe%1:05:00:: 02050313 1 0 -great_dane%1:05:00:: 02109047 1 0 -great_deal%1:23:00:: 13774404 1 10 -great_depression%1:26:00:: 14489361 1 1 -great_depression%1:28:00:: 15294211 2 0 -great_divide%1:15:00:: 08679807 1 0 -great_dividing_range%1:17:00:: 09292545 1 0 -great_dog%1:17:00:: 09232841 1 0 -great_duckweed%1:20:00:: 11795580 1 0 -great_elector%1:18:00:: 10980681 1 0 -great_falls%1:15:00:: 09109012 1 0 -great_grandchild%1:18:00:: 10145340 1 0 -great_granddaughter%1:18:00:: 10145480 1 0 -great_grandfather%1:18:00:: 10145682 1 0 -great_grandmother%1:18:00:: 10145590 1 1 -great_grandparent%1:18:00:: 10145774 1 0 -great_grandson%1:18:00:: 10145902 1 0 -great_gray_owl%1:05:00:: 01622779 1 0 -great_grey_kangaroo%1:05:00:: 01877606 1 0 -great_grey_owl%1:05:00:: 01622779 1 0 -great_gross%1:23:00:: 13751158 1 0 -great_hall%1:06:00:: 03457008 1 0 -great_horned_owl%1:05:00:: 01622483 1 0 -great_hundred%1:23:00:: 13750574 1 0 -great_indian_desert%1:15:00:: 09173417 1 0 -great_knapweed%1:20:00:: 11948864 1 0 -great_lakes%1:17:00:: 09292751 1 0 -great_lakes_state%1:15:00:: 09099526 1 0 -great_lobelia%1:20:00:: 12169320 1 0 -great_maple%1:20:00:: 12754981 1 0 -great_mendenhall_glacier%1:17:00:: 09350922 1 0 -great_millet%1:20:00:: 12137337 1 0 -great_mother%1:18:00:: 09594093 1 0 -great_mullein%1:20:00:: 12889713 1 0 -great_plains%1:17:00:: 09293011 1 0 -great_plains_of_north_america%1:17:00:: 09293011 1 0 -great_plains_paintbrush%1:20:00:: 12880638 1 0 -great_power%1:14:00:: 08177592 1 2 -great_proletarian_cultural_revolution%1:11:00:: 07424436 1 0 -great_pyramid%1:06:00:: 04029125 1 0 -great_pyrenees%1:05:00:: 02111500 1 0 -great_ragweed%1:20:00:: 11919975 1 0 -great_revolt%1:04:00:: 00964105 1 0 -great_rift_valley%1:17:00:: 09293340 1 0 -great_russian%1:18:00:: 09728850 1 0 -great_salt_desert%1:15:00:: 09169038 1 0 -great_salt_lake%1:17:00:: 09293613 1 0 -great_sandy_desert%1:15:00:: 09169930 2 0 -great_sandy_desert%1:15:01:: 09172111 1 0 -great_saphenous_vein%1:08:00:: 05379944 1 0 -great_schism%1:28:00:: 15298283 1 0 -great_seal%1:06:00:: 03457184 1 0 -great_seal_of_the_united_states%1:06:00:: 03457332 1 0 -great_skua%1:05:00:: 02044908 1 0 -great_slave_lake%1:17:00:: 09293744 1 0 -great_smoky_mountains%1:17:00:: 09293917 1 0 -great_smoky_mountains_national_park%1:15:00:: 08605261 1 0 -great_snipe%1:05:00:: 02032480 1 0 -great_solomon's-seal%1:20:00:: 12474418 1 0 -great_st_john's_wort%1:20:00:: 12368257 1 0 -great_toe%1:08:00:: 05577741 1 0 -great_victoria_desert%1:15:00:: 09170109 1 0 -great_wall%1:06:00:: 03018971 1 0 -great_wall_of_china%1:06:00:: 03018971 1 0 -great_war%1:04:00:: 01311520 1 0 -great_white_heron%1:05:01:: 02008643 3 0 -great_white_heron%1:05:02:: 02009750 2 0 -great_white_heron%1:05:03:: 02009912 1 0 -great_white_hope%1:18:00:: 10778999 1 0 -great_white_shark%1:05:00:: 01484850 1 0 -great_white_way%1:15:00:: 09122086 1 0 -great_year%1:28:00:: 15233614 1 0 -great_yellow_gentian%1:20:00:: 12294871 1 0 -great_yellowcress%1:20:00:: 11895714 1 0 -greatcoat%1:06:00:: 03456665 1 5 -greater%3:00:00:: 01395330 1 46 -greater_antilles%1:15:00:: 08748076 1 0 -greater_burdock%1:20:00:: 11924849 1 0 -greater_butterfly_orchid%1:20:00:: 12078172 1 0 -greater_celandine%1:20:00:: 11903671 1 0 -greater_knapweed%1:20:00:: 11948864 1 0 -greater_kudu%1:05:00:: 02424486 1 0 -greater_london%1:15:00:: 08873622 1 0 -greater_masterwort%1:20:00:: 12934174 1 0 -greater_new_orleans_bridge%1:06:00:: 03456854 1 0 -greater_new_york%1:15:00:: 09119277 1 0 -greater_omentum%1:08:00:: 05429658 1 0 -greater_pectoral_muscle%1:08:00:: 05551939 1 0 -greater_peritoneal_sac%1:08:00:: 05427946 1 0 -greater_pichiciego%1:05:00:: 02456645 1 0 -greater_prairie_chicken%1:05:00:: 01798706 1 0 -greater_rhomboid_muscle%1:08:00:: 05575185 1 0 -greater_scaup%1:05:00:: 01851573 1 0 -greater_spearwort%1:20:00:: 11722036 1 0 -greater_stitchwort%1:20:00:: 11818271 1 0 -greater_sunda_islands%1:15:00:: 08842427 1 0 -greater_swiss_mountain_dog%1:05:00:: 02107574 1 0 -greater_water_parsnip%1:20:00:: 12945366 1 0 -greater_whitethroat%1:05:00:: 01564914 1 0 -greater_yellowlegs%1:05:00:: 02028342 1 0 -greatest%5:00:00:superior:02 02343517 1 1 -greatest_common_divisor%1:23:00:: 13735163 1 0 -greatest_common_factor%1:23:00:: 13735163 1 0 -greathearted%5:00:00:noble:01 01589045 1 0 -greatly%4:02:00:: 00056539 1 23 -greatness%1:07:00:: 05169601 1 4 -greatness%1:07:01:: 05104548 2 0 -greave%1:06:00:: 03457451 1 0 -greaves%1:27:00:: 14677485 1 0 -grebe%1:05:00:: 02050004 1 0 -grecian%1:18:00:: 10146313 1 0 -grecian%3:01:00:: 03016202 1 1 -greco%1:18:00:: 10956377 1 0 -greco-roman%5:00:00:classical:00 00413861 1 0 -greco-roman_architecture%1:09:00:: 05841985 1 0 -greco-roman_deity%1:18:00:: 09547903 1 0 -greco-roman_wrestling%1:04:00:: 00447957 1 0 -greece%1:15:00:: 08780881 1 5 -greece%1:15:01:: 08782319 2 0 -greed%1:04:00:: 00758525 2 0 -greed%1:07:00:: 04945530 1 1 -greedily%4:02:00:: 00276391 1 2 -greediness%1:07:00:: 04834817 2 0 -greediness%1:07:02:: 04886235 1 0 -greedy%5:00:00:acquisitive:00 00029933 1 1 -greedy%5:00:00:desirous:00 00888477 2 0 -greedy%5:00:00:gluttonous:00 00011160 3 0 -greegree%1:06:00:: 03459498 1 0 -greek%1:10:00:: 06976392 1 6 -greek%1:18:00:: 09710164 2 4 -greek%3:01:01:: 03016202 1 18 -greek_alphabet%1:10:00:: 06499244 1 0 -greek_architecture%1:09:00:: 05842191 1 0 -greek_capital%1:15:00:: 08785343 1 0 -greek_catholic%1:18:00:: 09680387 1 0 -greek_chorus%1:14:00:: 08187988 1 1 -greek_church%1:14:00:: 08086646 1 0 -greek_clover%1:20:00:: 12574470 1 0 -greek_cross%1:06:00:: 03457578 1 0 -greek_deity%1:18:00:: 09551356 1 0 -greek_drachma%1:23:00:: 13675218 1 0 -greek_fire%1:27:00:: 14891255 1 0 -greek_fret%1:06:00:: 03396311 1 0 -greek_key%1:06:00:: 03396311 1 0 -greek_mode%1:10:00:: 06860699 1 0 -greek_monetary_unit%1:23:00:: 13675093 1 0 -greek_mythology%1:14:00:: 07979425 1 0 -greek_orthodox%3:01:00:: 02953598 1 0 -greek_orthodox_church%1:14:00:: 08086646 1 0 -greek_partridge%1:05:00:: 01808291 1 0 -greek_valerian%1:20:01:: 12809626 2 0 -greek_valerian%1:20:02:: 12809868 1 0 -greeley%1:18:00:: 11013191 1 0 -green%1:06:00:: 03606572 8 0 -green%1:07:00:: 04967191 1 6 -green%1:13:00:: 07709333 7 0 -green%1:15:00:: 08579780 6 0 -green%1:15:01:: 08615374 2 1 -green%1:17:00:: 09294066 5 0 -green%1:18:00:: 10060904 4 0 -green%1:18:01:: 11013324 3 0 -green%2:30:00:: 00521478 1 0 -green%3:00:00:: 01493897 3 0 -green%3:01:00:: 03069937 2 0 -green%5:00:00:chromatic:00 00375969 1 26 -green%5:00:00:ill:01 02545257 4 0 -green%5:00:00:naive:00 02272485 5 0 -green-blind%5:00:00:blind:00 02159787 1 0 -green-blindness%1:26:00:: 14154168 1 0 -green-eyed%5:00:00:distrustful:00 02464105 1 0 -green-eyed_monster%1:12:00:: 07550079 1 0 -green-tailed_towhee%1:05:00:: 01542433 1 0 -green-white%5:00:00:achromatic:00 00389962 1 0 -green-winged_teal%1:05:00:: 01848323 1 0 -green_adder's_mouth%1:20:00:: 12072210 1 0 -green_alder%1:20:01:: 12286068 2 0 -green_alder%1:20:02:: 12286197 1 0 -green_algae%1:05:00:: 01407798 1 1 -green_apple_aphid%1:05:00:: 02252799 1 0 -green_arrow_arum%1:20:00:: 11790936 1 0 -green_ash%1:20:00:: 12305654 1 0 -green_bay%1:15:00:: 09157766 1 0 -green_bean%1:13:00:: 07727868 1 1 -green_bean%1:20:00:: 12557280 2 0 -green_beret%1:18:00:: 10146416 1 0 -green_bristlegrass%1:20:00:: 12135049 1 0 -green_broom%1:20:00:: 12521394 1 0 -green_card%1:10:00:: 06887055 1 0 -green_corn%1:13:00:: 07732168 2 0 -green_corn%1:20:00:: 12144742 1 0 -green_dinosaur%1:20:00:: 12214245 1 0 -green_douglas_fir%1:20:00:: 11628793 1 0 -green_dragon%1:20:01:: 11784825 2 0 -green_dragon%1:20:02:: 11788382 1 0 -green_fingers%1:07:00:: 05159495 1 0 -green_foxtail%1:20:00:: 12135049 1 0 -green_fringed_orchis%1:20:00:: 12067193 1 0 -green_frog%1:05:00:: 01641739 1 0 -green_gentian%1:20:00:: 12293180 1 0 -green_gland%1:05:00:: 01975117 1 0 -green_goddess%1:06:00:: 03990834 1 0 -green_gold%1:27:00:: 14891425 1 0 -green_goods%1:13:00:: 07705711 1 0 -green_gram%1:20:00:: 12578255 1 0 -green_groceries%1:13:00:: 07705711 1 0 -green_hellebore%1:20:00:: 11734698 1 0 -green_june_beetle%1:05:00:: 02173113 1 0 -green_lacewing%1:05:00:: 02264885 1 0 -green_lead_ore%1:27:00:: 14693124 1 0 -green_light%1:10:00:: 06874391 1 0 -green_light%1:10:01:: 06689948 2 0 -green_line%1:15:00:: 08514975 1 0 -green_lizard%1:05:00:: 01693334 1 0 -green_mamba%1:05:00:: 01749939 1 0 -green_manure%1:27:00:: 14863970 1 0 -green_market%1:06:00:: 03322704 1 0 -green_mayonnaise%1:13:00:: 07834618 1 0 -green_monkey%1:05:00:: 02485688 1 0 -green_monkey_disease%1:26:00:: 14265722 1 0 -green_mountain_state%1:15:00:: 09147964 1 0 -green_mountains%1:17:00:: 09294413 1 0 -green_mushroom_pimple%1:20:00:: 12966290 1 0 -green_olive%1:13:00:: 07767709 1 0 -green_onion%1:13:00:: 07722485 1 0 -green_paper%1:10:00:: 07219751 1 0 -green_party%1:14:00:: 08260386 1 0 -green_pea%1:13:00:: 07725531 1 0 -green_pea_soup%1:13:00:: 07588419 1 0 -green_peach_aphid%1:05:00:: 02253264 1 0 -green_peafowl%1:05:00:: 01806467 1 0 -green_pepper%1:13:00:: 07721018 1 0 -green_plover%1:05:00:: 02024763 1 0 -green_revolution%1:11:00:: 07424797 1 0 -green_river%1:17:00:: 09294066 1 0 -green_salad%1:13:00:: 07806774 1 0 -green_smut%1:26:00:: 14284309 1 0 -green_smut_fungus%1:20:00:: 13081229 1 0 -green_snake%1:05:01:: 01729977 2 0 -green_snake%1:05:02:: 01730563 1 0 -green_soap%1:06:00:: 04257385 1 0 -green_soybean%1:13:00:: 07729828 1 0 -green_spleenwort%1:20:00:: 13182164 1 0 -green_tea%1:13:00:: 07935152 1 0 -green_thumb%1:07:00:: 05159495 1 0 -green_turtle%1:05:00:: 01663782 1 0 -green_turtle_soup%1:13:00:: 07587206 1 0 -green_woodpecker%1:05:00:: 01839086 1 0 -greenback%1:21:01:: 13393762 1 0 -greenback_party%1:14:00:: 08260498 1 0 -greenbelt%1:15:00:: 08580011 1 0 -greenberg%1:18:00:: 11013574 1 0 -greenbottle%1:05:00:: 02192252 1 0 -greenbottle_fly%1:05:00:: 02192252 1 0 -greenbrier%1:20:00:: 12470512 1 0 -greene%1:18:00:: 11013743 1 0 -greenery%1:20:00:: 13153633 1 0 -greeneye%1:05:00:: 02543952 1 0 -greenfly%1:05:00:: 02253127 1 0 -greengage%1:13:00:: 07751858 1 0 -greengage_plum%1:13:00:: 07751858 1 0 -greengrocer%1:18:00:: 10146559 1 0 -greengrocery%1:06:00:: 03457686 2 0 -greengrocery%1:06:01:: 03457793 1 0 -greenhood%1:20:00:: 12081215 1 0 -greenhorn%1:18:00:: 09981834 1 0 -greenhouse%1:06:00:: 03457902 1 1 -greenhouse%3:01:00:: 03070101 1 0 -greenhouse_effect%1:19:00:: 11461268 1 0 -greenhouse_emission%1:27:00:: 14877234 1 0 -greenhouse_gas%1:27:00:: 14877234 1 0 -greenhouse_warming%1:19:00:: 11461268 1 0 -greenhouse_whitefly%1:05:00:: 02247216 1 0 -greening%1:19:00:: 11505546 1 0 -greenish%5:00:00:chromatic:00 00375969 1 0 -greenish-brown%5:00:00:chromatic:00 00376255 1 0 -greenish-gray%5:00:00:achromatic:00 00389861 1 0 -greenish-grey%5:00:00:achromatic:00 00389861 1 0 -greenish-white%5:00:00:achromatic:00 00389962 1 0 -greenish_blue%1:07:00:: 04969798 1 0 -greenish_yellow%1:07:00:: 04967094 1 0 -greenishness%1:07:00:: 04967561 1 0 -greenland%1:15:00:: 08819397 1 2 -greenland_caribou%1:05:00:: 02433925 1 0 -greenland_sea%1:17:00:: 09294285 1 0 -greenland_spar%1:27:00:: 14673150 1 0 -greenland_whale%1:05:00:: 02064000 1 0 -greenling%1:05:01:: 02648625 1 0 -greenly%4:02:00:: 00242961 1 1 -greenmail%1:04:00:: 00176052 1 0 -greenmarket%1:06:00:: 03322704 1 0 -greenness%1:07:00:: 04967191 3 0 -greenness%1:07:02:: 05116590 1 1 -greenness%1:26:00:: 14426449 2 0 -greenockite%1:27:00:: 14677610 1 0 -greenpeace%1:14:00:: 08022087 1 0 -greenroom%1:06:00:: 03458128 1 1 -greens%1:13:00:: 07709333 1 1 -greensand%1:27:00:: 14995918 1 0 -greensboro%1:15:00:: 09128947 1 0 -greenshank%1:05:00:: 02027897 1 0 -greensick%3:01:00:: 02695389 1 0 -greensickness%1:26:00:: 14166775 1 0 -greenside%3:01:00:: 03070230 1 0 -greenskeeper%1:18:00:: 10146682 1 0 -greenstick_fracture%1:26:00:: 14293678 1 0 -greensward%1:17:00:: 09463919 1 0 -greenville%1:15:00:: 09138808 1 0 -greenville%1:15:01:: 09104737 3 0 -greenville%1:15:02:: 09129062 2 0 -greenway%1:15:00:: 08580011 1 0 -greenweed%1:20:00:: 12530818 1 0 -greenwich%1:15:00:: 08874703 1 0 -greenwich_mean_time%1:28:00:: 15130205 1 0 -greenwich_meridian%1:15:00:: 08599488 1 0 -greenwich_time%1:28:00:: 15130205 1 2 -greenwich_village%1:15:00:: 09122968 1 1 -greenwing%1:05:00:: 01848323 1 0 -greenwood%1:17:00:: 09294599 1 0 -greet%2:31:00:: 00718907 3 3 -greet%2:32:00:: 00897241 1 12 -greet%2:32:01:: 00897125 2 4 -greet%2:39:00:: 02197505 4 1 -greeter%1:18:00:: 10146927 1 0 -greeting%1:10:00:: 06630017 1 5 -greeting_card%1:10:00:: 06627450 1 0 -greg_norman%1:18:00:: 11209306 1 0 -gregarine%1:05:00:: 01423617 1 0 -gregarinida%1:05:00:: 01423464 1 0 -gregarious%3:00:00:: 02252634 1 1 -gregarious%3:00:01:: 02253389 3 0 -gregarious%5:00:00:social:00 02248984 2 1 -gregariously%4:02:00:: 00350930 1 0 -gregariousness%1:07:00:: 04653869 1 0 -gregor_mendel%1:18:00:: 11173199 1 0 -gregorian%3:01:01:: 03070517 1 0 -gregorian%3:01:02:: 03070352 2 0 -gregorian_calendar%1:28:00:: 15174218 1 0 -gregorian_calendar_month%1:28:00:: 15209706 1 0 -gregorian_chant%1:10:00:: 07035153 1 0 -gregorian_mode%1:10:00:: 06860481 1 0 -gregorian_telescope%1:06:00:: 02978478 1 0 -gregory%1:18:00:: 11013876 6 0 -gregory%1:18:01:: 11014212 5 0 -gregory%1:18:02:: 11014450 4 0 -gregory%1:18:03:: 11014652 3 0 -gregory%1:18:04:: 11014833 2 0 -gregory%1:18:05:: 11015080 1 0 -gregory_goodwin_pincus%1:18:00:: 11235263 1 0 -gregory_i%1:18:00:: 11013876 1 0 -gregory_john_norman%1:18:00:: 11209306 1 0 -gregory_nazianzen%1:18:00:: 11015080 1 0 -gregory_of_nazianzen%1:18:00:: 11015080 1 0 -gregory_pincus%1:18:00:: 11235263 1 0 -gregory_the_great%1:18:00:: 11013876 1 0 -gregory_vii%1:18:00:: 11014212 1 0 -gregory_xii%1:18:00:: 11014450 1 0 -gregory_xiii%1:18:00:: 11014652 1 0 -gregory_xvi%1:18:00:: 11014833 1 0 -greisen%1:27:00:: 14891581 1 0 -gremlin%1:18:00:: 09540739 1 0 -grenada%1:15:00:: 08946909 1 0 -grenada_dollar%1:23:00:: 13673267 1 0 -grenade%1:06:00:: 03458271 1 5 -grenade_thrower%1:18:00:: 10146816 1 0 -grenadian%1:18:00:: 09749260 1 0 -grenadian%3:01:00:: 03070697 1 0 -grenadier%1:05:00:: 02525703 2 0 -grenadier%1:18:00:: 10146816 1 0 -grenadine%1:13:00:: 07860331 1 0 -grenoble%1:15:00:: 08936180 1 0 -gres-gris%1:06:00:: 03459498 1 0 -gresham%1:18:00:: 11015420 1 0 -gresham's_law%1:09:00:: 05883992 1 0 -greta_garbo%1:18:00:: 10989801 1 0 -greta_louisa_gustafsson%1:18:00:: 10989801 1 0 -gretzky%1:18:00:: 11015525 1 0 -grevillea%1:20:00:: 12217453 1 0 -grevillea_banksii%1:20:00:: 12217851 1 0 -grevillea_robusta%1:20:00:: 12218274 1 0 -grevillea_striata%1:20:00:: 12218490 1 0 -grevillela_parallela%1:20:00:: 12218054 1 0 -grevy's_zebra%1:05:00:: 02391508 1 0 -grewia%1:20:00:: 12204925 1 0 -grewia_asiatica%1:20:00:: 12205104 1 0 -grey%1:05:00:: 02381364 7 0 -grey%1:06:00:: 03456186 6 0 -grey%1:07:00:: 04961691 5 0 -grey%1:14:00:: 08481009 4 0 -grey%1:18:00:: 11015650 3 0 -grey%1:18:01:: 11015872 2 0 -grey%1:18:02:: 11016075 1 0 -grey%2:30:00:: 00289392 2 0 -grey%2:30:01:: 00289679 1 0 -grey%5:00:00:achromatic:00 00389310 1 1 -grey%5:00:00:intermediate:00 01014685 4 0 -grey%5:00:00:old:02 01645678 2 0 -grey%5:00:00:southern:02 01607120 3 0 -grey-black%5:00:00:achromatic:00 00389607 1 0 -grey-blue%5:00:00:chromatic:00 00375471 1 0 -grey-brown%5:00:00:chromatic:00 00375593 1 0 -grey-green%5:00:00:chromatic:00 00375720 1 0 -grey-haired%5:00:00:old:02 01645678 1 0 -grey-headed%5:00:00:old:02 01645678 1 0 -grey-leaf_pine%1:20:00:: 11618525 1 0 -grey-pink%5:00:00:chromatic:00 00375847 1 0 -grey-white%5:00:00:achromatic:00 00389734 1 0 -grey_alder%1:20:00:: 12285049 1 0 -grey_area%1:09:00:: 05998994 1 0 -grey_birch%1:20:00:: 12282235 1 0 -grey_catbird%1:05:00:: 01587526 1 0 -grey_flounder%1:05:00:: 02661892 1 0 -grey_fox%1:05:00:: 02120505 1 0 -grey_friar%1:18:00:: 10778553 1 0 -grey_goldenrod%1:20:00:: 12017127 1 0 -grey_hen%1:05:00:: 01796105 1 0 -grey_jay%1:05:00:: 01581166 1 0 -grey_kingbird%1:05:00:: 01549053 1 0 -grey_lemming%1:05:00:: 02345340 1 0 -grey_market%1:04:00:: 01098071 1 0 -grey_matter%1:08:00:: 05483388 1 0 -grey_mullet%1:05:00:: 02601344 2 0 -grey_mullet%1:13:00:: 07784367 1 0 -grey_partridge%1:05:00:: 01807828 1 0 -grey_polypody%1:20:00:: 13173259 1 0 -grey_poplar%1:20:00:: 12732252 1 0 -grey_sage%1:20:00:: 12014085 1 0 -grey_sea_eagle%1:05:00:: 01615458 1 0 -grey_skate%1:05:00:: 01501641 1 0 -grey_snapper%1:05:00:: 02587300 1 0 -grey_sole%1:13:00:: 07791434 1 0 -grey_substance%1:08:00:: 05483388 1 0 -grey_whale%1:05:00:: 02066245 1 0 -grey_willow%1:20:00:: 12728864 1 0 -grey_wolf%1:05:00:: 02114367 1 0 -greyback%1:05:01:: 02033208 2 0 -greyback%1:05:02:: 02028900 3 0 -greyback%1:18:00:: 10628368 1 0 -greybeard%1:06:00:: 02825240 2 0 -greybeard%1:18:00:: 10375506 1 0 -greyed%5:00:00:colorless:02 00405406 1 0 -greyhen%1:05:00:: 01796105 1 0 -greyhound%1:05:00:: 02090827 1 0 -greyhound_racing%1:04:00:: 00449977 1 0 -greyish%5:00:00:achromatic:00 00389310 1 0 -greyish-black%5:00:00:achromatic:00 00389607 1 0 -greyish-blue%5:00:00:chromatic:00 00375471 1 0 -greyish-brown%5:00:00:chromatic:00 00375593 1 0 -greyish-green%5:00:00:chromatic:00 00375720 1 0 -greyish-pink%5:00:00:chromatic:00 00375847 1 0 -greyish-white%5:00:00:achromatic:00 00389734 1 0 -greyish_brown%1:07:00:: 04973110 1 0 -greylag%1:05:00:: 01856553 1 0 -greylag_goose%1:05:00:: 01856553 1 0 -greyly%4:02:00:: 00351040 1 0 -greyness%1:07:00:: 04961691 1 0 -gri-gri%1:20:00:: 12583855 1 0 -grias%1:20:00:: 12327407 1 0 -grias_cauliflora%1:20:00:: 12327528 1 0 -grid%1:06:00:: 03458422 5 0 -grid%1:06:01:: 03458552 4 0 -grid%1:06:02:: 03997027 2 0 -grid%1:06:03:: 03458753 3 0 -grid%1:09:00:: 05931512 1 0 -grid_metal%1:27:00:: 14891868 1 0 -griddle%1:06:00:: 03459328 1 0 -griddle%2:30:00:: 00325910 1 0 -griddlecake%1:13:01:: 07640203 2 0 -griddlecake%1:13:02:: 07691091 1 0 -gridiron%1:06:00:: 03458422 1 0 -gridiron%1:06:01:: 03378915 2 0 -gridiron-tailed_lizard%1:05:00:: 01678657 1 0 -gridlock%1:14:00:: 08183698 1 0 -grief%1:09:00:: 05833683 2 0 -grief%1:12:00:: 07535010 1 5 -grief-stricken%5:00:00:sorrowful:00 01364817 1 1 -grieg%1:18:00:: 11016199 1 0 -grievance%1:10:00:: 07210801 3 1 -grievance%1:10:01:: 07236466 2 1 -grievance%1:12:00:: 07549536 1 1 -grieve%2:37:00:: 01797347 1 1 -grieve%2:37:01:: 01797582 2 0 -griever%1:18:00:: 10335246 1 0 -grieving%5:00:00:sorrowful:00 01364817 1 0 -grievous%5:00:00:critical:03 00651039 1 1 -grievous%5:00:00:evil:00 01131454 4 0 -grievous%5:00:00:important:00 01278423 3 0 -grievous%5:00:00:sorrowful:00 01365544 2 0 -grievous_bodily_harm%1:06:00:: 04253751 1 0 -grievously%4:02:00:: 00351238 1 0 -griffin%1:18:00:: 09495962 1 0 -griffith%1:18:00:: 11016374 1 0 -griffon%1:05:01:: 02112497 2 0 -griffon%1:05:02:: 02103181 3 0 -griffon%1:05:03:: 01617095 4 0 -griffon%1:18:00:: 09495962 1 0 -griffon_vulture%1:05:00:: 01617095 1 0 -grifola_frondosa%1:20:00:: 13052670 1 0 -grifter%1:18:00:: 09955015 1 0 -grigori_aleksandrovich_potemkin%1:18:00:: 11244061 1 0 -grigori_efimovich_rasputin%1:18:00:: 11254683 1 0 -grigori_potemkin%1:18:00:: 11244061 1 0 -grigori_potyokin%1:18:00:: 11244061 1 0 -grigri%1:06:00:: 03459498 1 0 -grill%1:06:00:: 03459591 2 0 -grill%1:06:01:: 03459914 1 2 -grill%2:30:00:: 00326773 1 1 -grill%2:32:00:: 00788821 2 0 -grille%1:06:00:: 03459591 3 0 -grille%1:06:01:: 03459775 2 0 -grille%1:06:02:: 04582454 1 1 -grilled%5:00:01:cooked:00 00616654 2 0 -grilled%5:00:02:cooked:00 00617033 1 0 -grilling%1:04:00:: 00246754 1 0 -grillroom%1:06:00:: 03459914 1 0 -grillwork%1:06:00:: 04595762 1 0 -grillwork%1:06:01:: 03459591 2 0 -grim%5:00:00:alarming:00 00195684 2 7 -grim%5:00:00:dejected:00 00703615 5 0 -grim%5:00:00:depressing:00 00364881 6 0 -grim%5:00:00:implacable:00 01785341 1 8 -grim%5:00:00:sarcastic:00 02079507 3 3 -grim%5:00:01:unpleasant:00 01802932 4 1 -grim_reaper%1:18:00:: 09488584 1 0 -grimace%1:10:00:: 06877578 1 0 -grimace%2:29:00:: 00034288 1 2 -grime%1:26:00:: 14498096 1 0 -grime%2:35:00:: 01534147 1 0 -grimes'_golden%1:13:00:: 07740744 1 0 -griminess%1:26:00:: 14498843 1 0 -grimly%4:02:00:: 00108137 1 5 -grimm%1:18:00:: 11016563 2 0 -grimm%1:18:01:: 11016841 1 0 -grimm's_law%1:09:00:: 06180890 1 0 -grimness%1:07:01:: 04710127 2 0 -grimness%1:07:02:: 04782610 1 0 -grimoire%1:10:00:: 06422032 1 0 -grimy%5:00:00:dirty:01 00420650 1 4 -grin%1:10:00:: 06878071 1 6 -grin%2:29:00:: 00029025 1 18 -grind%1:04:00:: 00358290 4 0 -grind%1:04:01:: 00621476 3 0 -grind%1:07:00:: 05094424 2 0 -grind%1:18:00:: 10684630 1 0 -grind%2:30:00:: 00331082 5 1 -grind%2:35:00:: 01394464 2 3 -grind%2:35:02:: 01594978 1 4 -grind%2:36:04:: 01624321 7 0 -grind%2:36:05:: 01624449 6 0 -grind%2:38:00:: 02048682 4 1 -grind%2:41:00:: 02419773 3 1 -grind_away%2:31:00:: 00605783 1 0 -grind_down%2:41:00:: 02587239 1 0 -grind_organ%1:06:00:: 02795978 1 0 -grind_out%2:36:00:: 01753272 1 1 -grind_to_a_halt%2:38:00:: 01834896 1 0 -grindelia%1:20:00:: 11973159 1 0 -grindelia_robusta%1:20:00:: 11973634 1 0 -grindelia_squarrosa%1:20:00:: 11973749 1 0 -grinder%1:06:00:: 03460040 4 0 -grinder%1:06:01:: 03765561 3 0 -grinder%1:08:00:: 05307773 2 0 -grinder%1:13:00:: 07697825 1 0 -grinding%1:11:00:: 07384344 2 1 -grinding%1:17:00:: 09294716 1 1 -grinding%1:19:00:: 11460063 3 0 -grinding_wheel%1:06:00:: 03460147 1 0 -grindle%1:05:00:: 02639087 1 0 -grindstone%1:06:00:: 03460297 1 0 -gringo%1:18:00:: 10147121 1 0 -grinner%1:18:00:: 10147262 1 0 -grinning%1:10:00:: 06878071 1 2 -griot%1:18:00:: 10147352 1 0 -grip%1:04:00:: 00812526 1 7 -grip%1:06:00:: 02773838 3 1 -grip%1:06:01:: 03485997 2 1 -grip%1:06:02:: 02860640 7 0 -grip%1:07:00:: 05194874 6 0 -grip%1:18:00:: 10147488 5 0 -grip%1:19:00:: 11460281 4 0 -grip%2:35:00:: 01224001 1 10 -grip%2:35:03:: 01574292 2 3 -grip%2:37:00:: 01821132 3 2 -gripe%1:10:00:: 07209965 1 1 -gripe%2:32:00:: 00910973 1 0 -gripes%1:26:00:: 14325732 1 0 -griping%1:26:00:: 14325732 1 0 -grippe%1:26:00:: 14122497 1 0 -gripping%5:00:00:interesting:00 01344171 1 0 -gripsack%1:06:00:: 03460455 1 0 -gris%1:18:00:: 11017020 1 0 -grisaille%1:06:00:: 03460526 1 0 -griselinia%1:20:00:: 12948978 1 0 -griselinia_littoralis%1:20:00:: 12949361 1 0 -griselinia_lucida%1:20:00:: 12949160 1 0 -griseofulvin%1:06:00:: 03460674 1 0 -grisly%5:00:00:alarming:00 00195684 1 0 -grison%1:05:00:: 02449699 1 0 -grison_vittatus%1:05:00:: 02449699 1 0 -grissino%1:13:00:: 07680655 1 0 -grist%1:13:00:: 07802767 1 0 -gristle%1:08:00:: 05288091 1 0 -gristly%5:00:00:tough:01 02445863 1 0 -gristmill%1:06:00:: 03460899 1 1 -grit%1:07:00:: 05032351 2 0 -grit%1:27:00:: 14700594 1 0 -grit%2:35:00:: 01394715 2 0 -grit%2:35:01:: 01394938 1 0 -gritrock%1:27:00:: 14700594 1 0 -grits%1:13:00:: 07704428 1 0 -gritstone%1:27:00:: 14700594 1 0 -gritty%5:00:00:brave:00 00263994 2 0 -gritty%5:00:00:coarse:00 02231502 1 1 -grivet%1:05:00:: 02485371 1 0 -grizzle%1:06:00:: 03461037 1 0 -grizzle%2:32:00:: 00907930 2 0 -grizzle%2:37:00:: 01805384 1 0 -grizzled%5:00:00:brunet:00 00245763 1 1 -grizzly%1:05:00:: 02132580 1 0 -grizzly%5:00:00:old:02 01645678 1 0 -grizzly_bear%1:05:00:: 02132580 1 0 -groak%2:39:00:: 02165002 1 0 -groan%1:10:00:: 07126383 1 2 -groan%2:32:00:: 01045419 1 7 -groaner%1:18:00:: 10147619 1 0 -groat%1:21:00:: 13391262 1 0 -groats%1:13:00:: 07802863 1 0 -grocer%1:18:00:: 10147710 1 5 -grocery%1:06:00:: 03461385 1 1 -grocery%1:06:01:: 03461119 2 0 -grocery_bag%1:06:00:: 03461288 1 0 -grocery_boy%1:18:00:: 10147849 1 0 -grocery_list%1:10:00:: 06491277 2 0 -grocery_list%1:10:01:: 06491371 1 0 -grocery_store%1:06:00:: 03461385 1 2 -groenendael%1:05:00:: 02105056 1 0 -groenlandia%1:20:00:: 12616825 1 0 -grog%1:13:00:: 07904865 1 0 -grogginess%1:09:00:: 05679906 3 0 -grogginess%1:26:00:: 14018318 2 0 -grogginess%1:26:01:: 14018918 1 0 -groggy%5:00:00:lethargic:00 00875962 1 1 -grogram%1:06:00:: 03461651 1 0 -groin%1:06:00:: 02894605 3 0 -groin%1:06:01:: 03461783 2 0 -groin%1:08:00:: 05597734 1 1 -groin%2:36:00:: 01656107 1 0 -groined_vault%1:06:00:: 03461882 1 0 -grok%2:31:00:: 00588221 1 0 -grommet%1:06:00:: 03132438 1 0 -gromwell%1:20:00:: 12820669 1 0 -gromyko%1:18:00:: 11017118 1 0 -gronland%1:15:00:: 08819397 1 0 -groom%1:18:00:: 10147935 3 0 -groom%1:18:01:: 10644301 2 0 -groom%1:18:02:: 10148035 1 1 -groom%2:29:00:: 00040353 3 0 -groom%2:29:03:: 00045639 2 1 -groom%2:41:00:: 02387034 1 1 -groom-to-be%1:18:00:: 10085869 1 0 -groomed%3:00:00:: 02427087 1 1 -grooming%1:04:00:: 00828237 2 0 -grooming%1:04:01:: 00893955 1 0 -groomsman%1:18:00:: 10148165 1 0 -groove%1:04:00:: 01026744 2 1 -groove%1:08:00:: 05222591 3 0 -groove%1:25:00:: 13893786 1 1 -groove%2:35:00:: 01277431 2 0 -groove%2:35:02:: 01457489 1 0 -grooved%5:00:00:established:00 01636090 1 1 -groover%1:06:00:: 03461988 1 0 -grooving%1:04:00:: 00926026 1 0 -groovy%5:00:00:fashionable:00 00972354 2 0 -groovy%5:00:00:good:01 01123879 1 0 -grope%1:04:00:: 00141027 1 0 -grope%2:35:01:: 01314738 1 6 -grope%2:35:02:: 01211263 3 0 -grope%2:41:00:: 02530936 2 1 -grope_for%2:35:00:: 01314440 1 1 -groping%5:00:00:uncertain:02 00338275 1 0 -gropingly%4:02:00:: 00351456 1 0 -gropius%1:18:00:: 11017295 1 0 -gros_point%1:06:00:: 03462211 2 0 -gros_point%1:06:01:: 03462315 1 0 -gros_ventre%1:10:00:: 06909932 2 0 -gros_ventre%1:18:00:: 09656205 1 0 -grosbeak%1:05:00:: 01540233 1 0 -groschen%1:23:00:: 13706068 1 0 -grosgrain%1:06:00:: 03462110 1 0 -gross%1:21:00:: 13256691 2 0 -gross%1:23:00:: 13750504 1 0 -gross%2:40:00:: 02291434 1 0 -gross%3:00:00:: 01582821 1 8 -gross%5:00:00:conspicuous:00 00580039 7 0 -gross%5:00:00:fat:01 00987974 3 1 -gross%5:00:00:general:00 01102308 2 1 -gross%5:00:00:indecent:00 00683531 6 0 -gross%5:00:00:unmitigated:00 01520091 5 0 -gross%5:00:00:visible:00 02516435 4 0 -gross_anatomy%1:09:00:: 06059865 1 0 -gross_domestic_product%1:21:00:: 13257511 1 0 -gross_estate%1:21:00:: 13251289 1 0 -gross_margin%1:21:00:: 13261242 1 0 -gross_national_product%1:21:00:: 13257098 1 1 -gross_out%2:37:00:: 01784148 2 0 -gross_out%2:39:00:: 02194913 1 0 -gross_profit%1:21:00:: 13260762 1 0 -gross_profit_margin%1:21:00:: 13260762 1 0 -gross_revenue%1:21:00:: 13260936 1 0 -gross_sales%1:21:00:: 13260936 1 0 -gross_ton%1:23:00:: 13721387 1 0 -grossbeak%1:05:00:: 01540233 1 0 -grossly%4:02:00:: 00006034 1 1 -grossness%1:07:00:: 04817280 1 0 -grossulariaceae%1:20:00:: 12804621 1 0 -grosz%1:23:00:: 13710881 1 0 -grot%1:17:00:: 09294877 1 0 -grotesque%1:06:00:: 03462441 1 1 -grotesque%5:00:00:strange:00 00967646 2 3 -grotesque%5:00:00:ugly:00 00221627 1 4 -grotesquely%4:02:00:: 00351542 1 1 -grotesqueness%1:07:00:: 04690592 1 0 -grotesquerie%1:07:00:: 04690592 1 0 -grotesquery%1:07:00:: 04690592 1 0 -grotius%1:18:00:: 11017454 1 0 -grotto%1:17:00:: 09294877 1 0 -grotty%5:00:00:nasty:00 01587643 1 0 -grouch%1:18:00:: 10148305 1 0 -grouch%2:32:00:: 00909573 1 0 -grouchily%4:02:00:: 00293650 1 0 -groucho%1:18:00:: 11160676 1 0 -grouchy%5:00:00:ill-natured:00 01136248 1 0 -ground%1:06:00:: 03360845 11 0 -ground%1:06:01:: 03462594 10 0 -ground%1:06:02:: 03462747 9 0 -ground%1:09:00:: 05933834 6 1 -ground%1:09:01:: 05930574 8 0 -ground%1:15:00:: 08580134 5 1 -ground%1:16:00:: 09178999 2 11 -ground%1:17:00:: 09334396 1 86 -ground%1:17:01:: 09335240 7 0 -ground%1:24:00:: 13790912 4 1 -ground%1:27:00:: 14842992 3 7 -ground%2:31:00:: 00636888 12 0 -ground%2:32:00:: 00830648 4 1 -ground%2:35:00:: 01502654 3 1 -ground%2:35:01:: 01502762 2 1 -ground%2:35:02:: 01292534 11 0 -ground%2:35:03:: 01365355 10 0 -ground%2:35:08:: 01304944 1 2 -ground%2:35:10:: 01406356 9 0 -ground%2:35:11:: 01406512 8 0 -ground%2:35:12:: 01406684 7 0 -ground%2:38:00:: 02022359 6 0 -ground%2:38:01:: 02022486 5 0 -ground-berry%1:20:01:: 12235765 2 0 -ground-berry%1:20:02:: 12254168 1 0 -ground-controlled_approach%1:04:00:: 00305326 1 0 -ground-effect_machine%1:06:00:: 03547229 1 0 -ground-emplaced_mine%1:06:00:: 03639675 1 0 -ground-floor%5:00:00:downstairs:00 02494253 1 0 -ground-hugging%5:00:00:low:01 01207007 1 0 -ground-service_crew%1:14:00:: 08243340 1 0 -ground-shaker%1:05:00:: 01711496 1 0 -ground_almond%1:20:00:: 12150969 1 0 -ground_attack%1:04:00:: 00974358 1 0 -ground_bait%1:06:00:: 03462972 1 0 -ground_ball%1:04:00:: 00129089 1 0 -ground_bass%1:10:00:: 07032426 1 0 -ground_beef%1:13:00:: 07664007 1 0 -ground_beetle%1:05:00:: 02167151 1 0 -ground_cable%1:06:00:: 03463073 1 0 -ground_cedar%1:20:01:: 11638378 2 0 -ground_cedar%1:20:02:: 13223588 1 0 -ground_cherry%1:20:00:: 12910285 1 0 -ground_cloth%1:06:00:: 03463666 1 0 -ground_control%1:06:00:: 03463185 1 0 -ground_cover%1:20:01:: 13112296 2 0 -ground_cover%1:20:02:: 13112427 1 0 -ground_crew%1:14:00:: 08243340 1 0 -ground_effect%1:19:00:: 11422446 1 0 -ground_fir%1:20:00:: 13223710 1 0 -ground_fire%1:11:00:: 07304507 1 0 -ground_floor%1:06:00:: 03463381 1 4 -ground_floor%1:11:00:: 07324502 2 0 -ground_forces%1:14:00:: 08191230 1 0 -ground_glass%1:27:00:: 14881861 1 1 -ground_glass%1:27:01:: 14882000 2 0 -ground_ivy%1:20:00:: 12847374 1 0 -ground_level%1:06:00:: 03463381 2 0 -ground_level%1:07:00:: 05132045 1 2 -ground_loop%1:11:00:: 07302407 1 0 -ground_noise%1:11:00:: 07430770 1 0 -ground_out%2:35:00:: 01402173 1 1 -ground_pine%1:20:01:: 13223265 1 0 -ground_pine%1:20:02:: 12841472 2 0 -ground_pink%1:20:00:: 12811501 1 0 -ground_plan%1:06:00:: 03463561 1 0 -ground_rattler%1:05:00:: 01757901 1 0 -ground_rent%1:21:00:: 13295972 1 0 -ground_roller%1:05:00:: 01826844 1 0 -ground_rose%1:20:00:: 12620779 1 0 -ground_rule%1:10:00:: 07275823 1 0 -ground_sloth%1:05:00:: 02458822 1 0 -ground_snake%1:05:00:: 01736375 1 0 -ground_squirrel%1:05:00:: 02358091 2 0 -ground_squirrel%1:05:02:: 02359915 1 0 -ground_state%1:26:00:: 13924196 1 0 -ground_stroke%1:04:00:: 00568286 1 0 -ground_substance%1:08:00:: 05582305 1 0 -ground_substance%1:08:01:: 05434053 2 0 -ground_swell%1:11:00:: 07344120 2 0 -ground_swell%1:11:01:: 07358768 1 0 -ground_tackle%1:06:00:: 02709367 1 0 -ground_water%1:27:00:: 14847503 1 1 -ground_wave%1:19:00:: 11500458 1 0 -ground_zero%1:15:00:: 08661063 1 0 -ground_zero%1:15:01:: 08580326 3 0 -ground_zero%1:15:02:: 08580447 2 0 -groundball%1:04:00:: 00129089 1 0 -groundberry%1:20:01:: 12235765 2 0 -groundberry%1:20:02:: 12254168 1 0 -groundbreaker%1:18:00:: 10434725 1 0 -groundbreaking%1:04:00:: 00239483 1 0 -groundbreaking%5:00:00:original:00 01687586 1 0 -groundbreaking_ceremony%1:04:00:: 00239483 1 0 -groundcover%1:20:01:: 13112296 2 0 -groundcover%1:20:02:: 13112427 1 0 -grounder%1:04:00:: 00129089 1 1 -groundfish%1:05:00:: 02513355 1 0 -groundhog%1:05:00:: 02361587 1 0 -groundhog_day%1:28:00:: 15186871 1 0 -grounding%1:04:00:: 00148836 2 0 -grounding%1:09:00:: 05986594 1 0 -groundkeeper%1:18:00:: 10148663 1 0 -groundless%5:00:00:unsupported:02 02353211 1 1 -groundlessness%1:07:00:: 05140086 1 0 -groundling%1:18:00:: 10148542 1 0 -groundmass%1:27:00:: 14891678 1 0 -groundnut%1:13:00:: 07774032 2 0 -groundnut%1:13:01:: 07737745 3 0 -groundnut%1:20:00:: 12507379 1 0 -groundnut_oil%1:13:00:: 07674749 1 0 -groundnut_vine%1:20:00:: 12507379 1 0 -grounds%1:06:00:: 04610879 2 5 -grounds%1:09:00:: 05823932 1 6 -grounds%1:10:00:: 06740402 4 1 -grounds%1:15:00:: 08570402 3 2 -grounds%1:17:00:: 09294984 5 0 -groundsel%1:20:00:: 12012755 1 0 -groundsel_bush%1:20:00:: 11938261 1 0 -groundsel_tree%1:20:00:: 11938261 1 0 -groundsheet%1:06:00:: 03463666 1 0 -groundskeeper%1:18:00:: 10148663 1 0 -groundsman%1:18:00:: 10148663 1 0 -groundspeed%1:28:00:: 15283675 1 0 -groundwater_level%1:17:00:: 09476123 1 0 -groundwork%1:04:00:: 01143580 3 0 -groundwork%1:06:00:: 03387016 2 0 -groundwork%1:09:00:: 05793554 1 1 -group%1:03:00:: 00031264 1 1345 -group%1:09:00:: 06016853 3 0 -group%1:27:00:: 14621446 2 1 -group%2:31:00:: 00656576 1 4 -group%2:33:00:: 01089878 2 1 -group_a%1:08:00:: 05400860 1 0 -group_ab%1:08:00:: 05401096 1 0 -group_action%1:04:00:: 01080366 1 1 -group_amentiferae%1:20:00:: 12313574 1 0 -group_b%1:08:00:: 05400978 1 0 -group_captain%1:18:00:: 10148825 1 0 -group_centrospermae%1:20:00:: 11804433 1 0 -group_discussion%1:10:00:: 07142566 1 0 -group_dynamics%1:09:00:: 06141962 1 0 -group_insurance%1:21:00:: 13346432 1 0 -group_meeting%1:14:00:: 08307589 1 0 -group_o%1:08:00:: 05401229 1 0 -group_participation%1:04:00:: 01240745 1 1 -group_practice%1:04:00:: 00632531 1 0 -group_psychotherapy%1:04:00:: 00703688 1 0 -group_pteridospermae%1:20:00:: 11605147 1 0 -group_pteridospermaphyta%1:20:00:: 11605147 1 0 -group_theory%1:09:00:: 06017193 1 0 -group_therapy%1:04:00:: 00703688 1 0 -grouped%5:00:00:classified:01 00414919 1 0 -grouper%1:05:00:: 02568959 2 0 -grouper%1:13:00:: 07778224 1 0 -groupie%1:18:00:: 10148991 1 0 -grouping%1:03:00:: 00031264 1 5 -grouping%1:04:00:: 01012360 2 1 -grouping%1:09:00:: 05733090 3 0 -groupthink%1:09:00:: 05788924 1 0 -groupware%1:10:00:: 06567960 1 0 -grouse%1:05:00:: 01795088 2 0 -grouse%1:13:00:: 07647115 1 0 -grouse%2:32:00:: 00910973 2 0 -grouse%2:33:00:: 01143028 1 0 -grouse-berry%1:20:00:: 12249122 1 0 -grouse_whortleberry%1:20:00:: 12249122 1 0 -grouseberry%1:20:00:: 12249122 1 0 -grout%1:27:00:: 14891988 1 0 -grout%2:35:00:: 01366809 1 0 -grove%1:06:00:: 03463832 2 2 -grove%1:14:00:: 08438928 1 6 -grovel%2:38:00:: 02063771 1 2 -groveler%1:18:00:: 09800631 1 0 -groveling%5:00:00:submissive:00 00789871 1 0 -groveller%1:18:00:: 09800631 1 0 -grovelling%5:00:00:submissive:00 00789871 1 0 -grover_cleveland%1:18:00:: 10902051 1 0 -groves%1:18:00:: 11017661 1 0 -grow%2:29:00:: 00094460 8 3 -grow%2:30:00:: 00230746 2 62 -grow%2:30:01:: 00245457 4 12 -grow%2:30:02:: 00231557 3 32 -grow%2:30:03:: 00125841 1 70 -grow%2:30:04:: 00250181 5 8 -grow%2:30:10:: 00543410 9 2 -grow%2:30:14:: 00250539 10 0 -grow%2:36:00:: 01739814 7 3 -grow%2:42:00:: 02624263 6 7 -grow_over%2:30:00:: 00232714 1 0 -grow_up%2:41:00:: 02540347 1 17 -grower%1:18:00:: 09779790 1 1 -growing%1:22:00:: 13489037 1 3 -growing%1:22:01:: 13488844 2 0 -growing%3:01:00:: 03070879 1 0 -growing_pains%1:09:00:: 05688030 3 0 -growing_pains%1:12:00:: 07494682 2 0 -growing_pains%1:26:00:: 14326969 1 0 -growing_season%1:28:00:: 15238169 1 1 -growl%1:11:00:: 07384473 1 1 -growl%2:32:00:: 01045719 1 4 -growler%1:17:00:: 09295210 2 0 -growler%1:18:00:: 10149128 1 0 -growling%1:10:00:: 07210951 1 1 -growling%1:11:00:: 07384473 2 0 -grown%5:00:00:mature:01 01488616 1 2 -grownup%1:18:01:: 09605289 1 4 -grownup%5:00:00:mature:01 01488616 1 0 -growth%1:11:01:: 07324673 5 1 -growth%1:14:00:: 08438067 4 3 -growth%1:17:00:: 09295338 7 0 -growth%1:22:00:: 13489037 1 37 -growth%1:22:01:: 13490343 2 20 -growth%1:22:02:: 13497135 3 3 -growth%1:26:00:: 14234074 6 0 -growth-onset_diabetes%1:26:00:: 14118423 1 0 -growth_factor%1:27:00:: 14734348 1 0 -growth_hormone%1:08:00:: 05412649 1 0 -growth_hormone-releasing_factor%1:27:00:: 15023537 1 0 -growth_industry%1:14:00:: 08068691 1 0 -growth_rate%1:28:00:: 15278825 1 1 -growth_regulator%1:27:00:: 14744841 1 0 -growth_ring%1:19:00:: 11424816 1 0 -growth_stock%1:21:00:: 13336770 1 0 -groyne%1:06:00:: 02894605 1 0 -grozny%1:15:00:: 09004992 1 0 -groznyy%1:15:00:: 09004992 1 0 -grub%1:05:00:: 02312006 2 1 -grub%1:13:00:: 07565161 1 1 -grub%2:35:03:: 01319473 2 0 -grub%2:40:00:: 02270404 1 0 -grub_out%2:35:00:: 01314208 1 0 -grub_street%1:14:00:: 08275081 1 0 -grub_up%2:35:00:: 01314208 1 0 -grubbily%4:02:00:: 00500226 1 0 -grubbiness%1:26:00:: 14498843 1 0 -grubby%1:05:00:: 02646241 1 0 -grubby%3:01:00:: 02737371 1 0 -grubby%5:00:00:dirty:01 00420650 2 0 -grubstake%1:21:00:: 13287239 1 0 -grubstake%2:40:00:: 02216232 1 0 -grudge%1:12:00:: 07549536 1 3 -grudge%2:37:00:: 01773734 2 0 -grudge%2:37:01:: 01774005 1 0 -grudging%5:00:00:stingy:00 01113636 2 0 -grudging%5:00:00:unwilling:00 02566299 1 0 -grudgingly%4:02:00:: 00351763 1 1 -gruel%1:13:00:: 07704054 1 0 -grueling%5:00:00:effortful:00 00836544 1 0 -gruelling%5:00:00:effortful:00 00836544 1 0 -gruesome%5:00:00:alarming:00 00195684 1 2 -gruesomely%4:02:00:: 00352132 1 0 -gruesomeness%1:07:00:: 04782610 1 0 -gruff%5:00:00:cacophonous:00 00299690 2 1 -gruff%5:00:00:ill-natured:00 01137000 1 1 -gruffly%4:02:00:: 00352238 1 0 -gruffness%1:07:01:: 04988861 1 0 -gruffness%1:07:02:: 04915462 2 0 -grugru%1:20:00:: 12583855 1 0 -grugru_nut%1:13:00:: 07774182 1 0 -grugru_palm%1:20:00:: 12583855 1 0 -gruidae%1:05:00:: 02012715 1 0 -gruiformes%1:05:00:: 02012306 1 0 -grumble%1:10:00:: 07211092 2 0 -grumble%1:11:00:: 07392483 1 1 -grumble%2:32:00:: 00909219 2 3 -grumble%2:32:01:: 00909573 1 5 -grumble%2:32:02:: 01045719 3 1 -grumble%2:39:00:: 02187320 4 0 -grumbler%1:18:00:: 10776339 1 0 -grumbling%1:10:00:: 07211092 2 1 -grumbling%1:11:00:: 07392483 1 1 -grumbling%5:00:00:full:01 01457079 1 0 -grume%1:08:00:: 05402333 2 0 -grume%1:27:00:: 14939663 1 0 -grummet%1:06:00:: 03132438 1 0 -grumose%5:00:00:thick:02 02416036 1 0 -grumous%5:00:00:thick:02 02416036 1 0 -grump%1:18:00:: 10148305 1 0 -grumpily%4:02:00:: 00293650 1 0 -grumpiness%1:07:00:: 04641869 1 0 -grumpy%5:00:00:ill-natured:00 01136248 1 0 -grundyism%1:07:00:: 04901152 1 0 -grunge%1:26:00:: 14498096 1 0 -grungily%4:02:00:: 00500226 1 0 -grungy%5:00:00:dirty:01 00420650 1 0 -grunt%1:05:00:: 02588286 3 0 -grunt%1:11:00:: 07384614 1 2 -grunt%1:18:00:: 10149241 2 0 -grunt%2:32:00:: 01043231 1 11 -grunt-hoot%2:32:00:: 01043112 1 0 -grunter%1:05:00:: 02395406 2 0 -grunter%1:18:00:: 10149436 1 0 -gruntle%2:37:00:: 01765392 1 0 -grus%1:05:00:: 02013034 2 0 -grus%1:17:00:: 09295455 1 0 -grus_americana%1:05:00:: 02013177 1 0 -gruyere%1:13:00:: 07855105 1 0 -gryllidae%1:05:00:: 02229385 1 0 -gryphon%1:18:00:: 09495962 1 0 -gsa%1:14:00:: 08351532 1 0 -gspc%1:14:00:: 08044265 1 0 -gsr%1:04:00:: 00860011 1 0 -gu%1:15:00:: 08838319 1 0 -gu%3:01:00:: 02881711 1 0 -guacamole%1:13:00:: 07583066 1 0 -guacharo%1:05:00:: 01837526 1 0 -guadalajara%1:15:00:: 08743370 1 0 -guadalcanal%1:04:00:: 01280055 2 0 -guadalcanal%1:15:00:: 08843735 1 0 -guadalupe_cypress%1:20:00:: 11631985 1 0 -guadalupe_fur_seal%1:05:00:: 02077384 1 0 -guadalupe_island%1:15:00:: 08746797 1 0 -guadalupe_mountains%1:17:00:: 09295576 1 0 -guadalupe_mountains_national_park%1:15:00:: 08605493 1 0 -guadeloupe%1:15:00:: 08751126 1 0 -guaiac%1:20:00:: 12722382 1 0 -guaiac_wood%1:20:00:: 12721705 1 0 -guaiacum%1:20:00:: 12721864 3 0 -guaiacum%1:20:02:: 12722382 2 0 -guaiacum%1:20:03:: 12722768 1 0 -guaiacum_officinale%1:20:00:: 12722071 1 0 -guaiacum_sanctum%1:20:00:: 12722567 1 0 -guaiacum_wood%1:20:00:: 12721705 1 0 -guaira%1:17:00:: 09430416 1 0 -guaira_falls%1:17:00:: 09430416 1 0 -guallatiri%1:15:00:: 09175459 1 0 -guam%1:15:00:: 08838319 1 10 -guama%1:20:00:: 11762018 1 0 -guan%1:05:00:: 01799302 1 0 -guanabana%1:13:00:: 07761309 1 0 -guanabenz%1:06:00:: 03464266 1 0 -guanaco%1:05:00:: 02438173 1 0 -guangdong%1:15:00:: 08725336 1 0 -guangdong_province%1:15:00:: 08725336 1 0 -guangzhou%1:15:00:: 08725454 1 0 -guanine%1:27:00:: 14892138 1 0 -guano%1:27:00:: 14892289 1 0 -guano_bat%1:05:00:: 02149653 1 0 -guanosine%1:27:00:: 15073285 1 0 -guantanamo%1:15:00:: 08750986 1 0 -guantanamo_bay%1:17:00:: 09295790 1 0 -guar%1:20:00:: 12520406 1 0 -guar_gum%1:27:00:: 14900817 1 0 -guarani%1:10:00:: 06917280 3 0 -guarani%1:18:00:: 09695257 2 0 -guarani%1:23:00:: 13679608 1 0 -guarantee%1:10:00:: 06685456 1 2 -guarantee%1:10:01:: 06686174 2 1 -guarantee%1:21:03:: 13353004 3 0 -guarantee%2:32:00:: 00890100 1 8 -guarantee%2:32:01:: 00889555 3 2 -guarantee%2:32:02:: 00891936 4 1 -guarantee%2:32:03:: 00890590 2 2 -guarantor%1:18:00:: 10149527 1 0 -guaranty%1:21:00:: 13353004 1 0 -guard%1:04:00:: 00725673 10 0 -guard%1:04:01:: 00730538 8 0 -guard%1:04:02:: 00727743 9 0 -guard%1:04:03:: 00822970 7 0 -guard%1:06:00:: 03464467 3 2 -guard%1:07:00:: 05082222 4 1 -guard%1:14:00:: 08215603 6 0 -guard%1:18:01:: 10149720 2 2 -guard%1:18:03:: 10150071 1 15 -guard%1:18:04:: 10150281 5 0 -guard%2:33:00:: 01129337 2 6 -guard%2:33:03:: 01129876 3 2 -guard%2:41:00:: 02456031 1 6 -guard%2:41:01:: 02599878 4 0 -guard's_van%1:06:00:: 03465320 1 0 -guard_boat%1:06:00:: 03464628 1 0 -guard_dog%1:05:00:: 02103841 1 0 -guard_duty%1:04:00:: 00730538 1 1 -guard_hair%1:05:00:: 01898906 1 0 -guard_of_honor%1:18:00:: 10183931 1 0 -guard_ship%1:06:00:: 03465151 1 0 -guardant%5:00:00:forward:01 00203495 1 0 -guarded%5:00:00:cautious:00 00326202 1 0 -guardedly%4:02:00:: 00292503 1 0 -guardhouse%1:06:00:: 03464757 1 0 -guardian%1:18:00:: 09614684 1 4 -guardian_angel%1:18:00:: 09540055 1 0 -guardian_spirit%1:18:00:: 09540055 1 0 -guardianship%1:04:00:: 00818466 2 0 -guardianship%1:04:01:: 00829378 1 0 -guardrail%1:06:00:: 04127395 1 0 -guardroom%1:06:00:: 03464952 2 0 -guardroom%1:06:01:: 03465040 1 0 -guardsman%1:18:00:: 10150415 1 0 -guarneri%1:18:00:: 11017831 2 0 -guarneri%1:18:01:: 11017987 1 0 -guarnerius%1:06:00:: 03465500 3 0 -guarnerius%1:18:00:: 11017831 2 0 -guarnerius%1:18:01:: 11017987 1 0 -guarnieri%1:18:00:: 11017831 2 0 -guarnieri%1:18:01:: 11017987 1 0 -guatemala%1:15:00:: 08737041 1 1 -guatemala_city%1:15:00:: 08737376 1 0 -guatemalan%1:18:00:: 09712195 1 0 -guatemalan%3:01:00:: 03071022 1 1 -guatemalan_monetary_unit%1:23:00:: 13696155 1 0 -guava%1:13:00:: 07765361 3 0 -guava%1:20:01:: 12333530 2 0 -guava%1:20:02:: 12333771 1 0 -guava_bush%1:20:00:: 12333530 1 0 -guayaquil%1:15:00:: 08777130 1 0 -guayule%1:20:00:: 12000851 1 0 -gubbins%1:06:00:: 03218545 1 0 -gubernatorial%3:01:00:: 02983978 1 1 -guck%1:27:00:: 14956661 1 0 -gudgeon%1:05:01:: 01443243 2 0 -gudgeon%1:05:02:: 02619165 1 0 -gudgeon_pin%1:06:00:: 04607759 1 0 -guelder_rose%1:20:00:: 12680864 1 0 -guenevere%1:18:00:: 11018439 1 0 -guenon%1:05:00:: 02484975 1 0 -guenon_monkey%1:05:00:: 02484975 1 0 -guerdon%1:21:00:: 13284283 1 0 -guereza%1:05:00:: 02488894 1 0 -gueridon%1:06:00:: 03465426 1 0 -guerilla%1:18:00:: 10150556 1 0 -guerilla_force%1:14:00:: 08197895 1 0 -guernsey%1:05:00:: 02407521 2 0 -guernsey%1:15:00:: 08887344 1 0 -guernsey_elm%1:20:00:: 12408466 1 0 -guerrilla%1:18:00:: 10150556 1 3 -guerrilla_force%1:14:00:: 08197895 1 0 -guerrilla_theater%1:04:00:: 00899501 1 0 -guess%1:09:00:: 05803938 2 1 -guess%1:10:00:: 06782680 1 2 -guess%2:31:00:: 00631737 1 42 -guess%2:31:01:: 00672433 3 6 -guess%2:31:02:: 00636061 4 6 -guess%2:32:00:: 00916909 2 10 -guesser%1:18:00:: 10150794 1 0 -guessing%1:09:00:: 05803938 1 1 -guessing_game%1:04:00:: 00459570 1 0 -guesstimate%1:09:00:: 05804136 1 0 -guesstimate%2:32:00:: 00918746 1 0 -guesswork%1:09:00:: 05803938 1 0 -guest%1:06:00:: 03827107 4 0 -guest%1:18:00:: 10150940 1 26 -guest%1:18:01:: 10151133 3 0 -guest%1:18:02:: 11018683 2 0 -guest_night%1:28:00:: 15166742 1 0 -guest_of_honor%1:18:00:: 10151261 1 0 -guest_worker%1:18:00:: 10151367 1 0 -guesthouse%1:06:00:: 03465605 1 0 -guestimate%1:09:00:: 05804136 1 0 -guestroom%1:06:00:: 03465718 1 0 -guestworker%1:18:00:: 10151367 1 0 -guevara%1:18:00:: 11018153 1 0 -guevina%1:20:00:: 12216836 1 0 -guevina_avellana%1:20:00:: 12216968 1 0 -guevina_heterophylla%1:20:00:: 12216968 1 0 -guff%1:10:00:: 06611681 1 0 -guffaw%1:10:00:: 07127790 1 0 -guffaw%2:29:00:: 00031540 1 0 -guggenheim%1:18:00:: 11018862 2 0 -guggenheim%1:18:01:: 11019073 1 0 -guggle%2:34:00:: 01170566 3 0 -guggle%2:39:00:: 02187922 1 0 -guggle%2:39:01:: 02178576 2 0 -guglielmo_marconi%1:18:00:: 11156122 1 0 -gui%1:10:00:: 06575681 1 0 -guiana%1:15:00:: 08948155 1 0 -guiana_highlands%1:15:00:: 09161615 1 0 -guib%1:05:00:: 02425228 1 0 -guibert_of_ravenna%1:18:00:: 10900953 1 0 -guidance%1:04:00:: 00815320 3 1 -guidance%1:04:01:: 01144876 2 4 -guidance%1:10:00:: 06650701 1 8 -guidance_device%1:06:00:: 03465818 1 0 -guidance_system%1:06:00:: 03465818 1 0 -guide%1:06:00:: 03466027 6 0 -guide%1:09:00:: 05938976 4 1 -guide%1:10:00:: 06422740 3 1 -guide%1:18:00:: 10741821 1 1 -guide%1:18:01:: 10562749 5 0 -guide%1:18:02:: 10151570 2 1 -guide%2:35:00:: 01212230 5 0 -guide%2:38:00:: 01999798 2 11 -guide%2:38:01:: 01931768 1 12 -guide%2:39:00:: 02159427 4 0 -guide%2:41:00:: 02439732 3 8 -guide_dog%1:05:00:: 02109150 1 0 -guide_fossil%1:17:00:: 09311067 1 0 -guide_on%2:39:00:: 02159427 1 2 -guide_rope%1:06:00:: 03466726 1 0 -guide_word%1:10:00:: 06291603 1 0 -guidebook%1:10:00:: 06422740 1 0 -guided%3:00:00:: 01428972 1 0 -guided_bomb_unit-28%1:06:00:: 02920785 1 0 -guided_missile%1:06:00:: 03466162 1 1 -guided_missile_cruiser%1:06:00:: 03466493 1 0 -guided_missile_destroyer%1:06:00:: 03180504 1 0 -guided_missile_frigate%1:06:00:: 03466600 1 0 -guideline%1:09:00:: 05848541 3 0 -guideline%1:09:01:: 05912552 2 0 -guideline%1:10:01:: 06802138 1 0 -guidepost%1:09:00:: 05848541 1 1 -guidepost%1:10:00:: 06794374 2 0 -guideword%1:10:00:: 06291603 1 0 -guiding%5:00:00:leading:00 00199463 1 0 -guiding%5:00:02:leading:00 00199114 2 0 -guiding_light%1:18:00:: 10276238 1 1 -guild%1:14:00:: 08227214 1 0 -guild_socialism%1:09:00:: 06220955 1 0 -guilder%1:23:01:: 13679855 2 0 -guilder%1:23:02:: 13680146 1 0 -guildhall%1:06:00:: 03466839 1 0 -guile%1:04:00:: 00752954 3 0 -guile%1:07:00:: 04876561 2 0 -guile%1:09:01:: 05621178 1 0 -guileful%5:00:00:artful:00 00148078 1 0 -guileless%5:00:00:straight:04 02318950 1 0 -guillain-barre_syndrome%1:26:00:: 14353622 1 0 -guillaume_apollinaire%1:18:00:: 10820444 1 0 -guillaume_de_grimoard%1:18:00:: 11356822 1 0 -guillemot%1:05:00:: 02046759 1 0 -guilloche%1:06:00:: 03466947 1 0 -guillotine%1:06:00:: 03467068 2 0 -guillotine%1:10:00:: 06667027 1 0 -guillotine%2:35:00:: 01571538 1 0 -guilt%1:12:00:: 07536245 2 2 -guilt%1:26:00:: 13990675 1 8 -guilt-ridden%5:00:00:guilty:00 01322702 1 0 -guilt_by_association%1:26:00:: 13991516 1 0 -guilt_feelings%1:12:00:: 07536245 1 0 -guilt_pang%1:12:00:: 07495156 1 1 -guilt_trip%1:12:00:: 07536245 1 0 -guiltily%4:02:00:: 00352337 1 1 -guiltiness%1:26:00:: 13990675 1 0 -guiltless%3:00:00:: 01319874 1 0 -guiltlessness%1:26:00:: 13989863 1 0 -guilty%3:00:00:: 01320988 1 10 -guilty%5:00:00:ashamed:00 00154583 2 2 -guilty_conscience%1:12:00:: 07536245 1 0 -guimpe%1:06:00:: 03467254 2 0 -guimpe%1:06:01:: 03467380 1 0 -guine-bissau%1:15:00:: 08947772 1 0 -guinea%1:05:00:: 01809106 4 0 -guinea%1:15:00:: 08947319 3 0 -guinea%1:18:00:: 09716439 2 0 -guinea%1:21:00:: 13392688 1 0 -guinea-bissau%1:15:00:: 08947772 1 0 -guinea-bissau_monetary_unit%1:23:00:: 13692437 1 0 -guinea-bissau_peso%1:23:00:: 13692559 1 0 -guinea-hen_flower%1:20:00:: 12453186 1 0 -guinea_corn%1:20:00:: 12137791 1 0 -guinea_flower%1:20:00:: 12363768 1 0 -guinea_fowl%1:05:00:: 01809106 1 0 -guinea_gold%1:27:00:: 15003139 1 0 -guinea_gold%1:27:01:: 14892405 2 0 -guinea_gold_vine%1:20:00:: 12363768 1 0 -guinea_grains%1:20:00:: 12357968 1 0 -guinea_hen%1:05:00:: 01809371 2 0 -guinea_hen%1:13:00:: 07646284 1 0 -guinea_pepper%1:20:01:: 11696935 2 0 -guinea_pepper%1:20:02:: 12357968 1 0 -guinea_pig%1:05:00:: 02364673 2 0 -guinea_pig%1:18:00:: 10668666 1 0 -guinea_worm%1:05:00:: 01933988 2 0 -guinea_worm%1:26:00:: 14176051 1 0 -guinea_worm_disease%1:26:00:: 14176051 1 0 -guinean%1:18:00:: 09749386 1 0 -guinean%3:01:00:: 03071201 1 0 -guinean_franc%1:23:00:: 13707804 1 0 -guinean_monetary_unit%1:23:00:: 13707713 1 0 -guinevere%1:18:00:: 11018439 1 0 -guinness%1:13:00:: 07890540 2 0 -guinness%1:18:00:: 11019269 1 0 -guise%1:07:00:: 04678908 1 0 -guiseppe_fortunino_francesco_verdi%1:18:00:: 11363020 1 0 -guiseppe_guarneri%1:18:00:: 11017987 1 0 -guitar%1:06:00:: 03467517 1 3 -guitar-shaped%5:00:00:formed:00 02147387 1 0 -guitar_pick%1:06:00:: 03467796 1 0 -guitar_player%1:18:00:: 10151760 1 0 -guitarfish%1:05:00:: 01497738 1 0 -guitarist%1:18:00:: 10151760 1 0 -gujarat%1:15:00:: 08905313 2 0 -gujarat%1:15:01:: 08905751 1 0 -gujarati%1:10:00:: 06971454 2 0 -gujarati%1:18:00:: 09675922 1 0 -gujerat%1:15:00:: 08905313 2 0 -gujerat%1:15:01:: 08905751 1 0 -gujerati%1:10:00:: 06971454 2 0 -gujerati%1:18:00:: 09675922 1 0 -gula%1:04:00:: 00759186 2 0 -gula%1:18:00:: 09518451 1 0 -gulag%1:06:00:: 03467887 1 0 -gulch%1:17:00:: 09295946 1 0 -gulden%1:23:01:: 13679855 2 0 -gulden%1:23:02:: 13680146 1 0 -gulf%1:07:00:: 04753060 2 1 -gulf%1:17:00:: 09296053 3 0 -gulf%1:17:01:: 09296121 1 1 -gulf_coast%1:17:00:: 09296695 1 0 -gulf_of_aden%1:17:00:: 09296804 1 0 -gulf_of_aegina%1:17:00:: 09424118 1 0 -gulf_of_akaba%1:17:00:: 09297240 1 0 -gulf_of_alaska%1:17:00:: 09296937 1 0 -gulf_of_antalya%1:17:00:: 09297104 1 0 -gulf_of_aqaba%1:17:00:: 09297240 1 0 -gulf_of_bothnia%1:17:00:: 09297423 1 0 -gulf_of_california%1:17:00:: 09297584 1 0 -gulf_of_campeche%1:17:00:: 09297729 1 0 -gulf_of_carpentaria%1:17:00:: 09297920 1 0 -gulf_of_corinth%1:17:00:: 09298100 1 0 -gulf_of_finland%1:17:00:: 09298267 1 0 -gulf_of_guinea%1:17:00:: 09298410 1 0 -gulf_of_lepanto%1:17:00:: 09298100 1 0 -gulf_of_martaban%1:17:00:: 09298569 1 0 -gulf_of_mexico%1:17:00:: 09298698 1 0 -gulf_of_ob%1:17:00:: 09298974 1 0 -gulf_of_oman%1:17:00:: 09299125 1 0 -gulf_of_riga%1:17:00:: 09299265 1 0 -gulf_of_saint_lawrence%1:17:00:: 09299397 1 0 -gulf_of_siam%1:17:00:: 09300030 1 0 -gulf_of_sidra%1:17:00:: 09299584 1 0 -gulf_of_st._lawrence%1:17:00:: 09299397 1 0 -gulf_of_suez%1:17:00:: 09299727 1 0 -gulf_of_tehuantepec%1:17:00:: 09299885 1 0 -gulf_of_thailand%1:17:00:: 09300030 1 0 -gulf_of_venice%1:17:00:: 09300199 1 0 -gulf_states%1:15:00:: 09049599 1 0 -gulf_states%1:15:01:: 08910394 2 0 -gulf_stream%1:19:00:: 11489536 1 0 -gulf_war%1:04:00:: 01307090 1 0 -gulf_war%1:04:01:: 01305310 2 0 -gulf_war_syndrome%1:26:00:: 14305699 1 0 -gulfweed%1:05:00:: 01405858 1 0 -gull%1:05:00:: 02041246 2 0 -gull%1:18:00:: 09921409 1 0 -gull%2:32:00:: 00854904 2 1 -gull%2:41:00:: 02576349 1 1 -gullet%1:08:00:: 05533948 1 0 -gullibility%1:07:00:: 04881156 1 0 -gullible%5:00:00:naive:00 02272485 1 1 -gullible%5:00:00:unwary:00 00163315 2 0 -gulliver%1:18:00:: 09599728 1 0 -gully%1:17:00:: 09300306 1 1 -gulo%1:05:00:: 02449060 1 0 -gulo_gulo%1:05:00:: 02449350 1 0 -gulo_luscus%1:05:00:: 02449183 1 0 -gulp%1:04:00:: 00840189 1 2 -gulp%1:04:01:: 00840363 2 0 -gulp%2:32:00:: 01067002 2 1 -gulp%2:34:01:: 01202068 1 5 -gulper%1:18:00:: 10151957 1 0 -gulping%1:04:00:: 00843325 2 0 -gulping%1:04:01:: 00840363 1 2 -gulu%1:15:00:: 09044094 1 0 -gulyas%1:13:00:: 07590320 1 0 -gum%1:08:00:: 05304932 2 1 -gum%1:13:00:: 07599998 1 1 -gum%1:20:01:: 12334293 6 0 -gum%1:20:02:: 12334520 5 0 -gum%1:27:00:: 14898470 3 0 -gum%1:27:01:: 14702875 4 0 -gum%2:29:00:: 00069166 4 0 -gum%2:30:00:: 00586387 3 0 -gum%2:34:00:: 01175224 2 0 -gum%2:35:00:: 01364019 1 0 -gum-lac%1:27:00:: 14701521 1 0 -gum-like%5:00:00:adhesive:00 00054201 1 0 -gum_acacia%1:27:00:: 14900963 1 0 -gum_accroides%1:27:00:: 14598937 1 0 -gum_albanum%1:27:00:: 14876872 1 0 -gum_ammoniac%1:27:00:: 14743976 1 0 -gum_anime%1:27:00:: 14766265 1 0 -gum_arabic%1:27:00:: 14900963 1 0 -gum_ball%1:13:00:: 07600177 1 0 -gum_benjamin%1:27:00:: 14897941 1 0 -gum_benzoin%1:27:00:: 14897941 1 0 -gum_boot%1:06:00:: 04116294 1 0 -gum_butea%1:27:00:: 14901265 1 0 -gum_dammar%1:27:00:: 14895807 1 0 -gum_elastic%1:27:00:: 15006258 1 0 -gum_elemi%1:20:00:: 12691028 1 0 -gum_eurphorbium%1:27:00:: 14852312 1 0 -gum_kino%1:27:00:: 14901411 1 0 -gum_labdanum%1:27:00:: 14928518 1 0 -gum_myrrh%1:20:00:: 12692875 1 0 -gum_olibanum%1:27:00:: 14873951 1 0 -gum_plant%1:20:00:: 11973341 1 0 -gum_resin%1:27:00:: 14897751 1 0 -gum_ridge%1:08:00:: 05310351 1 0 -gum_sangapenum%1:27:00:: 15019267 1 0 -gum_terpentine%1:27:00:: 14897369 1 0 -gum_tree%1:20:00:: 12334293 1 0 -gum_up%2:35:00:: 01357288 1 0 -gumbo%1:13:00:: 07585906 4 0 -gumbo%1:13:01:: 07733394 3 0 -gumbo%1:20:00:: 12171966 2 0 -gumbo%1:27:00:: 14903596 1 0 -gumbo-limbo%1:20:00:: 12691661 1 0 -gumbo_soil%1:27:00:: 14903596 1 0 -gumboil%1:26:00:: 14183337 1 0 -gumdrop%1:13:00:: 07605944 1 0 -gumma%1:26:00:: 14238820 1 0 -gummed%5:00:00:adhesive:00 00054278 1 0 -gummed_label%1:10:00:: 07272545 1 0 -gumminess%1:07:00:: 04935904 1 0 -gumming%1:04:00:: 00279235 1 0 -gummite%1:27:00:: 14904052 1 0 -gummosis%1:26:01:: 14279099 1 0 -gummosis%1:26:02:: 14278953 2 0 -gummy%5:00:00:adhesive:00 00053691 1 1 -gummy%5:00:01:adhesive:00 00054278 2 0 -gumption%1:07:00:: 05032351 2 0 -gumption%1:09:00:: 05614657 1 0 -gumptious%5:00:00:enterprising:00 00885099 1 0 -gumshield%1:06:00:: 03795269 1 0 -gumshoe%1:06:00:: 02735538 2 0 -gumshoe%1:18:00:: 10011785 1 0 -gumweed%1:20:00:: 11973341 1 0 -gumwood%1:20:00:: 12334520 1 0 -gun%1:04:00:: 00123430 7 0 -gun%1:06:00:: 03467984 1 72 -gun%1:06:01:: 02746365 2 25 -gun%1:06:03:: 03456299 5 0 -gun%1:06:04:: 02670683 6 0 -gun%1:18:00:: 10152083 4 0 -gun%1:18:01:: 10593392 3 0 -gun%2:33:00:: 01136614 1 0 -gun-sight%1:06:00:: 03470387 1 0 -gun_barrel%1:06:00:: 02795528 1 1 -gun_carriage%1:06:00:: 03468696 1 0 -gun_case%1:06:00:: 03468821 1 0 -gun_chamber%1:06:00:: 03348868 1 0 -gun_control%1:04:00:: 00805766 1 0 -gun_deck%1:06:00:: 03468900 1 0 -gun_dog%1:05:00:: 02098550 1 0 -gun_down%2:33:00:: 01136964 1 1 -gun_emplacement%1:06:00:: 03469031 1 0 -gun_enclosure%1:06:00:: 03469175 1 0 -gun_for_hire%1:18:00:: 10152083 1 0 -gun_moll%1:18:00:: 10327475 1 0 -gun_muzzle%1:06:00:: 03469687 1 0 -gun_pendulum%1:06:00:: 03470005 1 0 -gun_rest%1:06:00:: 03470802 1 0 -gun_room%1:06:00:: 03470222 1 0 -gun_smoke%1:19:00:: 11464926 1 1 -gun_trigger%1:06:00:: 03470629 1 0 -gun_turret%1:06:00:: 03469175 1 0 -gunboat%1:06:00:: 03468570 1 0 -gunboat_diplomacy%1:10:00:: 07148938 1 0 -guncotton%1:27:00:: 14794993 1 0 -gunfight%1:04:00:: 00124617 1 0 -gunfire%1:04:00:: 00123783 1 5 -gunflint%1:06:00:: 03469346 1 0 -gung_ho%5:00:00:enthusiastic:00 00886895 1 0 -gunite%1:27:00:: 14892510 1 0 -gunk%1:27:00:: 14956661 1 0 -gunlock%1:06:00:: 03469493 1 0 -gunman%1:18:00:: 10152083 1 3 -gunman%1:18:01:: 10593392 2 0 -gunmetal%1:27:00:: 14717634 1 0 -gunnar_myrdal%1:18:00:: 11198861 1 0 -gunnel%1:05:00:: 02614978 2 0 -gunnel%1:06:00:: 03470802 1 0 -gunner%1:18:00:: 09811852 1 4 -gunnery%1:06:00:: 03469832 1 0 -gunnery_sergeant%1:18:00:: 10152306 1 0 -gunny%1:06:00:: 02922798 1 0 -gunny_sack%1:06:00:: 03469903 1 0 -gunnysack%1:06:00:: 03469903 1 0 -gunplay%1:04:00:: 00124617 1 1 -gunpoint%1:06:01:: 03974769 1 0 -gunpowder%1:27:00:: 15016314 1 2 -gunpowder_plot%1:09:00:: 05909097 1 0 -gunrunner%1:18:00:: 10152440 1 0 -gunrunning%1:04:00:: 01112289 1 0 -gunshot%1:04:00:: 00123783 1 1 -gunsight%1:06:00:: 03470387 1 0 -gunslinger%1:18:00:: 10152083 1 1 -gunsmith%1:18:00:: 10152528 1 0 -gunstock%1:06:00:: 04322026 1 0 -gunter's_chain%1:23:00:: 13653154 1 0 -gunter_grass%1:18:00:: 11012153 1 0 -gunter_wilhelm_grass%1:18:00:: 11012153 1 0 -gunwale%1:06:00:: 03470802 1 0 -guomindang%1:14:00:: 08260691 1 0 -guppy%1:05:00:: 01448594 1 0 -gur%1:10:00:: 06996160 1 0 -gurgle%1:11:00:: 07384741 1 0 -gurgle%2:32:00:: 00985334 4 0 -gurgle%2:34:00:: 01170566 3 0 -gurgle%2:39:00:: 02187922 1 0 -gurgle%2:39:02:: 02177976 2 0 -gurkha%1:18:00:: 09724234 2 0 -gurkha%1:18:01:: 09724365 1 0 -gurnard%1:05:00:: 02650050 1 0 -gurney%1:06:00:: 03470948 1 0 -guru%1:18:00:: 10152616 1 1 -guru%1:18:01:: 10152763 3 0 -guru%1:18:02:: 10152889 2 0 -guru_nanak%1:18:00:: 11199394 1 0 -gush%1:10:00:: 07014320 2 0 -gush%1:11:00:: 07439570 1 0 -gush%2:32:00:: 00882220 2 2 -gush%2:35:00:: 01516290 3 0 -gush%2:38:00:: 02068413 1 3 -gusher%1:06:00:: 03471030 1 0 -gushing%5:00:00:demonstrative:00 00720524 3 0 -gushing%5:00:00:lively:00 00806064 2 0 -gushing%5:00:00:running:02 01240805 1 0 -gushingly%4:02:00:: 00352482 1 0 -gushy%5:00:00:demonstrative:00 00720524 1 0 -gusset%1:06:00:: 03471190 3 0 -gusset%1:06:01:: 03471347 2 0 -gusset%1:06:02:: 04539648 1 0 -gusset_plate%1:06:00:: 03471347 1 0 -gusseted%3:00:00:: 00210281 1 0 -gussy_up%2:29:00:: 00044149 1 0 -gust%1:19:00:: 11465017 1 3 -gustation%1:09:00:: 05658226 1 0 -gustative%3:01:00:: 02868916 1 0 -gustatorial%3:01:00:: 02868916 1 0 -gustatory%3:01:00:: 02868916 1 0 -gustatory_cell%1:08:00:: 05305389 1 0 -gustatory_modality%1:09:00:: 05658226 1 0 -gustatory_organ%1:08:00:: 05305136 1 0 -gustatory_perception%1:09:00:: 05715283 1 0 -gustatory_sensation%1:09:00:: 05715283 1 0 -gustav_hertz%1:18:00:: 11046722 1 0 -gustav_klimt%1:18:00:: 11107635 1 0 -gustav_ludwig_hertz%1:18:00:: 11046722 1 0 -gustav_mahler%1:18:00:: 11149630 1 0 -gustav_robert_kirchhoff%1:18:00:: 11105945 1 0 -gustav_theodor_fechner%1:18:00:: 10968058 1 0 -gustave_courbet%1:18:00:: 10913203 1 0 -gustave_flaubert%1:18:00:: 10972697 1 0 -gustavus%1:18:00:: 11019425 6 0 -gustavus%1:18:01:: 11019570 5 0 -gustavus%1:18:02:: 11019900 4 0 -gustavus%1:18:03:: 11020069 3 0 -gustavus%1:18:04:: 11020225 2 0 -gustavus%1:18:05:: 11020375 1 0 -gustavus_adolphus%1:18:00:: 11019570 1 0 -gustavus_franklin_swift%1:18:00:: 11326999 1 0 -gustavus_i%1:18:00:: 11019425 1 0 -gustavus_ii%1:18:00:: 11019570 1 0 -gustavus_iii%1:18:00:: 11019900 1 0 -gustavus_iv%1:18:00:: 11020069 1 0 -gustavus_v%1:18:00:: 11020225 1 0 -gustavus_vi%1:18:00:: 11020375 1 0 -gusto%1:12:00:: 07491981 1 1 -gusty%5:00:00:stormy:00 00305700 1 0 -gut%1:06:00:: 02983741 3 0 -gut%1:08:00:: 05534333 1 2 -gut%1:17:00:: 09300483 2 0 -gut%2:35:00:: 01590747 2 0 -gut%2:35:01:: 01591012 1 0 -gut_issue%1:09:00:: 05814952 1 0 -gutenberg%1:18:00:: 11020513 1 0 -guthrie%1:18:00:: 11020721 1 0 -gutierrezia%1:20:00:: 11973888 1 0 -gutierrezia_microcephala%1:20:00:: 11974373 1 0 -gutierrezia_sarothrae%1:20:00:: 11974557 1 0 -gutierrezia_texana%1:20:00:: 11974888 1 0 -gutless%3:00:00:: 00266985 1 0 -gutless%5:00:00:weak:00 02325816 2 0 -gutlessness%1:07:00:: 04861319 1 0 -guts%1:07:00:: 05032351 1 2 -gutsiness%1:07:00:: 04859816 1 0 -gutsy%3:00:00:: 00266634 1 0 -gutta-percha%1:27:00:: 14903763 1 0 -gutta-percha_tree%1:20:01:: 12775070 2 0 -gutta-percha_tree%1:20:02:: 12775393 1 0 -gutta_balata%1:20:00:: 12774496 1 0 -gutter%1:06:00:: 03471473 1 2 -gutter%1:06:01:: 03471685 4 0 -gutter%1:18:00:: 10153009 3 0 -gutter%1:26:00:: 14475992 2 0 -gutter%2:34:00:: 01204677 4 0 -gutter%2:35:00:: 01310125 3 0 -gutter%2:38:00:: 02084879 2 0 -gutter%2:43:00:: 02769077 1 0 -gutter_press%1:10:00:: 06263020 1 0 -guttersnipe%1:18:00:: 10662952 1 0 -guttiferae%1:20:00:: 12363988 1 0 -guttiferales%1:20:00:: 12359578 1 0 -guttle%2:34:00:: 01196653 1 0 -guttural%1:10:00:: 07120176 1 0 -guttural%3:01:00:: 02737461 2 0 -guttural%5:00:00:cacophonous:00 00299313 1 1 -guttural_consonant%1:10:00:: 07120176 1 0 -gutturally%4:02:00:: 00142227 1 0 -guvnor%1:18:00:: 10153155 1 0 -guy%1:06:00:: 03471779 3 0 -guy%1:06:01:: 03471974 2 1 -guy%1:18:00:: 10153414 1 33 -guy%2:30:00:: 00271520 2 0 -guy%2:32:00:: 00851933 1 0 -guy_cable%1:06:00:: 03471779 1 0 -guy_de_maupassant%1:18:00:: 11165339 1 0 -guy_fawkes%1:18:00:: 10967872 1 0 -guy_fawkes_day%1:28:00:: 15158997 1 1 -guy_fawkes_night%1:28:00:: 15159139 1 0 -guy_of_burgundy%1:18:00:: 10879789 1 0 -guy_rope%1:06:00:: 03471779 1 0 -guy_wire%1:06:00:: 03471779 1 0 -guyana%1:15:00:: 08948346 1 0 -guyana_dollar%1:23:00:: 13673362 1 0 -guyanese%1:18:00:: 09712324 1 0 -guyanese%3:01:00:: 03071374 1 0 -guyot%1:17:00:: 09300559 1 0 -guzzle%2:34:00:: 01170824 1 1 -guzzler%1:18:00:: 10153266 1 0 -guzzler%1:18:01:: 10151957 2 0 -guzzling%1:04:00:: 00843325 1 0 -gwydion%1:18:00:: 09509546 1 0 -gwyn%1:18:00:: 09509678 1 0 -gwynn%1:18:00:: 11020888 1 0 -gy%1:23:00:: 13645812 1 0 -gybe%2:38:00:: 01946817 1 0 -gym%1:06:00:: 03472112 1 4 -gym_mat%1:06:00:: 03727946 1 0 -gym_rat%1:18:00:: 10153865 1 0 -gym_shoe%1:06:00:: 03472535 1 0 -gym_suit%1:06:00:: 03472672 1 0 -gymkhana%1:11:00:: 07468116 1 0 -gymnadenia%1:20:00:: 12064183 1 0 -gymnadenia_conopsea%1:20:00:: 12064389 1 0 -gymnadenia_odoratissima%1:20:00:: 12064591 1 0 -gymnadeniopsis%1:20:00:: 12064814 1 0 -gymnasium%1:06:00:: 03472112 2 0 -gymnasium%1:14:00:: 08284481 1 0 -gymnast%1:18:00:: 10153594 1 5 -gymnastic%3:01:00:: 02849732 2 0 -gymnastic%5:00:00:active:01 00032497 1 4 -gymnastic_apparatus%1:06:00:: 03472232 1 0 -gymnastic_exercise%1:04:00:: 00435778 1 0 -gymnastic_exercise%1:04:01:: 00433802 2 0 -gymnastic_horse%1:06:00:: 03538037 1 0 -gymnastics%1:04:00:: 00433802 1 11 -gymnelis%1:05:00:: 02617689 1 0 -gymnelis_viridis%1:05:00:: 02617819 1 0 -gymnocalycium%1:20:00:: 11847414 1 0 -gymnocarpium%1:20:00:: 13197085 1 0 -gymnocarpium_dryopteris%1:20:00:: 13197274 1 0 -gymnocarpium_robertianum%1:20:00:: 13197507 1 0 -gymnocladus%1:20:00:: 12496207 1 0 -gymnocladus_dioica%1:20:00:: 12496427 1 0 -gymnogyps%1:05:00:: 01620003 1 0 -gymnogyps_californianus%1:05:00:: 01620135 1 0 -gymnomycota%1:20:00:: 12975207 1 0 -gymnophiona%1:05:00:: 01654957 1 0 -gymnopilus%1:20:00:: 13076181 1 0 -gymnopilus_spectabilis%1:20:00:: 13076405 1 0 -gymnopilus_validipes%1:20:00:: 13076643 1 0 -gymnopilus_ventricosus%1:20:00:: 13076831 1 0 -gymnorhina%1:05:00:: 01583636 1 0 -gymnorhina_tibicen%1:05:00:: 01583828 1 0 -gymnosophical%3:01:00:: 02917221 1 0 -gymnosophist%1:18:00:: 10153724 1 0 -gymnosophy%1:09:00:: 05962414 1 0 -gymnosperm%1:20:00:: 11596108 1 0 -gymnosperm_family%1:20:00:: 11553763 1 0 -gymnosperm_genus%1:20:00:: 11554175 1 0 -gymnospermae%1:20:00:: 11595312 1 0 -gymnospermophyta%1:20:00:: 11595312 1 0 -gymnospermous%3:01:00:: 02917327 1 0 -gymnospermous_tree%1:20:00:: 13108662 1 0 -gymnospermous_yellowwood%1:20:00:: 11650759 1 0 -gymnosporangium%1:20:00:: 13065215 1 0 -gymnosporangium_juniperi-virginianae%1:20:00:: 13065514 1 0 -gymnura%1:05:00:: 01498577 1 0 -gymslip%1:06:00:: 03472796 1 0 -gynaecological%3:01:00:: 02916969 1 0 -gynaecologist%1:18:00:: 10154013 1 0 -gynaecology%1:09:00:: 06050901 1 0 -gynaeolatry%1:04:00:: 01045306 1 0 -gynandromorph%1:18:00:: 10172080 1 0 -gynandromorphic%5:00:00:androgynous:00 01479025 1 0 -gynandromorphous%5:00:00:androgynous:00 01479025 1 0 -gynarchy%1:14:00:: 08361817 1 0 -gynecocracy%1:14:00:: 08361817 1 0 -gynecologic%3:01:00:: 02916969 1 0 -gynecological%3:01:00:: 02916969 1 0 -gynecologist%1:18:00:: 10154013 1 1 -gynecology%1:09:00:: 06050901 1 0 -gynecomastia%1:26:00:: 14506020 1 0 -gyneolatry%1:04:00:: 01045306 1 0 -gynne%1:18:00:: 11020888 1 0 -gynobase%1:20:00:: 11676743 1 0 -gynoecium%1:20:00:: 13093852 1 0 -gynogenesis%1:22:00:: 13490487 1 0 -gynophobia%1:26:00:: 14382159 1 0 -gynophore%1:20:00:: 11676850 1 0 -gynostegium%1:20:00:: 11675404 1 0 -gynura%1:20:00:: 11975100 1 0 -gynura_aurantiaca%1:20:00:: 11975254 1 0 -gyp%1:04:00:: 00779248 1 0 -gyp%2:41:00:: 02572119 1 0 -gypaetus%1:05:00:: 01617289 1 0 -gypaetus_barbatus%1:05:00:: 01617443 1 0 -gyps%1:05:00:: 01616970 1 0 -gyps_fulvus%1:05:00:: 01617095 1 0 -gypsophila%1:20:00:: 11810190 1 0 -gypsophila_paniculata%1:20:00:: 11810358 1 0 -gypsum%1:27:00:: 14677778 1 0 -gypsum_board%1:06:00:: 03957762 1 0 -gypsy%1:10:00:: 06969822 3 0 -gypsy%1:18:00:: 10154186 2 0 -gypsy%1:18:01:: 10217831 1 0 -gypsy_cab%1:06:00:: 03472937 1 0 -gypsy_dancing%1:04:00:: 00533036 1 0 -gypsy_moth%1:05:00:: 02286089 1 0 -gypsy_rose_lee%1:18:00:: 11124472 1 0 -gypsyweed%1:20:00:: 12891643 1 0 -gypsywort%1:20:00:: 12852570 1 0 -gyral%3:01:00:: 02849904 1 0 -gyrate%2:38:00:: 02049190 1 1 -gyrate%2:38:01:: 02046755 2 0 -gyration%1:04:00:: 00342755 2 0 -gyration%1:11:00:: 07440979 1 1 -gyre%1:25:00:: 13875970 1 0 -gyrfalcon%1:05:00:: 01611800 1 0 -gyrinidae%1:05:00:: 02177376 1 0 -gyro%1:06:00:: 03473227 2 0 -gyro%1:13:00:: 07698250 1 0 -gyro_horizon%1:06:00:: 02745611 1 0 -gyrocompass%1:06:00:: 03473078 1 0 -gyromitra%1:20:00:: 13037406 1 0 -gyromitra_brunnea%1:20:00:: 13038577 1 0 -gyromitra_californica%1:20:00:: 13037585 1 0 -gyromitra_esculenta%1:20:00:: 13038068 1 0 -gyromitra_fastigiata%1:20:00:: 13038577 1 0 -gyromitra_gigas%1:20:00:: 13038744 1 0 -gyromitra_infula%1:20:00:: 13038376 1 0 -gyromitra_sphaerospora%1:20:00:: 13037805 1 0 -gyroplane%1:06:00:: 02759387 1 0 -gyroscope%1:06:00:: 03473227 1 0 -gyroscopic%3:01:00:: 03071535 1 0 -gyrostabiliser%1:06:00:: 03473465 1 0 -gyrostabilizer%1:06:00:: 03473465 1 0 -gyrus%1:08:00:: 05492426 1 0 -gyrus_cinguli%1:08:00:: 05496592 1 0 -gywn%1:18:00:: 11020888 1 0 -h%1:07:00:: 05012272 5 0 -h%1:10:00:: 06831926 4 0 -h%1:23:00:: 13639405 2 0 -h%1:23:01:: 13591123 3 0 -h%1:27:00:: 14640434 1 0 -h-bomb%1:06:00:: 03553248 1 0 -h-shaped%5:00:00:formed:00 02147922 1 0 -h._g._wells%1:18:00:: 11381193 1 0 -h._h._munro%1:18:00:: 11196627 1 0 -h._j._eysenck%1:18:00:: 10964261 1 0 -h._l._mencken%1:18:00:: 11173031 1 0 -h._pylori%1:05:00:: 01351688 1 0 -h.m.s._bounty%1:06:00:: 02878883 1 0 -h.p.%1:23:00:: 13645010 1 0 -h2o%1:27:00:: 14845743 1 0 -ha%1:25:00:: 13888783 1 0 -ha'p'orth%1:23:00:: 13661045 1 0 -ha'penny%1:21:00:: 13390525 1 0 -ha-ha%1:06:00:: 04356423 2 0 -ha-ha%1:10:00:: 07127911 1 0 -haart%1:06:00:: 03248560 1 0 -haastia%1:20:00:: 11975482 1 0 -haastia_pulvinaris%1:20:00:: 11975658 1 0 -habacuc%1:10:00:: 06440489 1 0 -habakkuk%1:10:00:: 06440489 2 0 -habakkuk%1:18:00:: 11021100 1 0 -habanera%1:04:00:: 00533322 2 0 -habanera%1:10:00:: 07055612 1 0 -habeas_corpus%1:07:00:: 05183453 2 0 -habeas_corpus%1:10:00:: 06554373 1 0 -habenaria%1:20:00:: 12064996 1 0 -habenaria_albiflora%1:20:00:: 12066261 1 0 -habenaria_bifolia%1:20:00:: 12077944 1 0 -habenaria_chlorantha%1:20:00:: 12078172 1 0 -habenaria_dilatata%1:20:00:: 12066018 1 0 -habenaria_elegans%1:20:00:: 12066451 1 0 -habenaria_fimbriata%1:20:00:: 12066630 1 0 -habenaria_greenei%1:20:00:: 12066821 1 0 -habenaria_hookeri%1:20:00:: 12067029 1 0 -habenaria_lacera%1:20:00:: 12067193 1 0 -habenaria_leucophaea%1:20:00:: 12067433 1 0 -habenaria_nivea%1:20:00:: 12067672 1 0 -habenaria_orbiculata%1:20:00:: 12067817 1 0 -habenaria_peramoena%1:20:00:: 12068138 1 0 -habenaria_psycodes%1:20:00:: 12068432 1 0 -habenaria_unalascensis%1:20:00:: 12068615 1 0 -haber%1:18:00:: 11021178 1 0 -haber-bosch_process%1:22:00:: 13490683 1 0 -haber_process%1:22:00:: 13490683 1 0 -haberdasher%1:18:00:: 09930772 1 0 -haberdashery%1:06:00:: 03473704 2 0 -haberdashery%1:06:01:: 03052464 1 1 -haberdashery_store%1:06:00:: 03052464 1 1 -habergeon%1:06:00:: 03473817 1 0 -habiliment%1:06:00:: 03051540 1 0 -habilimented%5:00:00:clothed:00 00454440 1 0 -habilitate%2:29:00:: 00047945 2 0 -habilitate%2:30:00:: 00300989 1 0 -habit%1:04:01:: 00947923 6 0 -habit%1:04:02:: 00414179 2 6 -habit%1:06:00:: 03473966 3 1 -habit%1:06:01:: 03474167 5 0 -habit%1:09:00:: 05669034 1 7 -habit%1:22:00:: 13490909 4 0 -habit%2:29:00:: 00049102 1 0 -habit-forming%3:00:00:: 00047786 1 0 -habitability%1:07:00:: 04722231 1 0 -habitable%5:00:00:livable:00 01423851 1 1 -habitableness%1:07:00:: 04722231 1 0 -habitant%1:18:00:: 09620078 1 0 -habitat%1:15:00:: 08580583 1 2 -habitation%1:04:00:: 01054545 3 0 -habitation%1:06:00:: 03259505 2 0 -habitation%1:15:00:: 08580803 1 0 -habited%5:00:00:clothed:00 00456121 1 0 -habitual%5:00:00:usual:00 00489491 1 1 -habitual_abortion%1:04:00:: 00230703 1 0 -habitual_criminal%1:18:00:: 10511425 1 0 -habitually%4:02:00:: 00210768 1 2 -habituate%2:30:00:: 00273445 2 0 -habituate%2:34:00:: 01165043 1 0 -habituation%1:04:00:: 00194831 2 0 -habituation%1:26:00:: 14062725 1 0 -habitude%1:04:00:: 00415000 1 0 -habitue%1:18:00:: 10517405 1 0 -habitus%1:07:00:: 04998530 2 0 -habitus%1:26:00:: 14531056 1 0 -hablot_knight_browne%1:18:00:: 10866738 1 0 -habsburg%1:14:00:: 08155302 1 0 -hacek%1:10:00:: 06823259 1 0 -hachiman%1:18:00:: 09534843 1 0 -hachure%1:07:00:: 04681797 1 0 -hacienda%1:06:00:: 03474352 2 0 -hacienda%1:21:00:: 13252395 1 0 -hack%1:05:01:: 02382132 7 0 -hack%1:05:02:: 02382204 6 0 -hack%1:05:03:: 02378969 8 0 -hack%1:06:00:: 02930766 5 0 -hack%1:06:01:: 03474467 4 0 -hack%1:18:00:: 10154601 1 1 -hack%1:18:01:: 10154740 3 0 -hack%1:18:02:: 10278805 2 0 -hack%2:29:00:: 00006100 8 0 -hack%2:30:00:: 00201618 7 0 -hack%2:30:01:: 00526441 6 0 -hack%2:33:00:: 01148101 5 0 -hack%2:33:01:: 01148199 4 0 -hack%2:35:01:: 01257817 3 0 -hack%2:35:02:: 01257173 1 1 -hack%2:41:00:: 02588280 2 0 -hack-driver%1:18:00:: 10693646 1 0 -hack_driver%1:18:00:: 10693646 1 0 -hack_on%2:30:00:: 00526441 1 0 -hack_saw%1:06:00:: 03474779 1 0 -hack_writer%1:18:00:: 10154740 1 0 -hackamore%1:06:00:: 03480719 1 0 -hackberry%1:13:00:: 07746038 2 0 -hackberry%1:20:00:: 12409231 1 0 -hackbut%1:06:00:: 02742070 1 0 -hackee%1:05:00:: 02359915 1 0 -hackelia%1:20:00:: 12819953 1 0 -hacker%1:18:00:: 10154601 4 0 -hacker%1:18:01:: 10154871 3 0 -hacker%1:18:02:: 10155140 1 1 -hacker%1:18:03:: 10155222 2 0 -hackle%1:05:00:: 01898459 1 0 -hackle%2:35:00:: 01596972 1 0 -hackles%1:12:00:: 07518000 1 0 -hackmatack%1:20:00:: 12731835 1 0 -hackney%1:05:00:: 02386224 2 0 -hackney%1:06:00:: 03474635 1 0 -hackney_carriage%1:06:00:: 03474635 1 0 -hackney_coach%1:06:00:: 03474635 1 0 -hackneyed%5:00:00:unoriginal:00 01688757 1 1 -hacksaw%1:06:00:: 03474779 1 0 -hackwork%1:04:00:: 00622859 1 1 -had_best%2:42:00:: 02723564 1 0 -had_crime%1:04:00:: 00769695 1 0 -hadal%3:01:00:: 02974393 1 0 -haddock%1:05:00:: 02523877 2 0 -haddock%1:13:00:: 07789541 1 0 -hadean%1:28:00:: 15129572 1 0 -hadean%5:00:00:infernal:00 01304081 1 0 -hadean_aeon%1:28:00:: 15129572 1 0 -hadean_eon%1:28:00:: 15129572 1 0 -hadean_time%1:28:00:: 15129572 1 0 -hades%1:09:00:: 05629381 2 0 -hades%1:18:00:: 09570298 1 0 -hadith%1:04:00:: 00416409 2 0 -hadith%1:09:00:: 05669181 1 0 -hadj%1:09:00:: 05915034 1 0 -hadji%1:18:00:: 10156284 1 0 -hadrian%1:18:00:: 11021342 1 0 -hadrian's_wall%1:15:00:: 08886814 1 0 -hadron%1:17:00:: 09300674 1 0 -hadrosaur%1:05:00:: 01705934 1 0 -hadrosauridae%1:05:00:: 01705717 1 0 -hadrosaurus%1:05:00:: 01705934 1 0 -haecceity%1:09:00:: 05922014 1 0 -haeckel%1:18:00:: 11021667 1 0 -haem%1:27:00:: 15024997 1 0 -haemagglutinate%2:35:00:: 01221842 1 0 -haemagglutination%1:22:00:: 13492136 1 0 -haemal%3:01:00:: 02850309 1 0 -haemal_arch%1:08:00:: 05587814 1 0 -haemangioma%1:26:00:: 14247575 1 0 -haemanthus%1:20:00:: 12420335 1 0 -haemanthus_coccineus%1:20:00:: 12420722 1 0 -haematal%3:01:00:: 02850309 1 0 -haematemesis%1:04:00:: 00119210 1 0 -haematic%3:01:00:: 02850483 1 0 -haematinic%1:06:00:: 03513961 1 0 -haematite%1:27:00:: 14905720 1 0 -haematobia%1:05:00:: 02199352 1 0 -haematobia_irritans%1:05:00:: 02199502 1 0 -haematocele%1:26:00:: 14317221 1 0 -haematochezia%1:22:00:: 13492287 1 0 -haematocoele%1:26:00:: 14317221 1 0 -haematocolpometra%1:26:00:: 14317433 1 0 -haematocolpos%1:26:00:: 14317562 1 0 -haematocrit%1:06:00:: 03514129 2 0 -haematocrit%1:24:00:: 13821766 1 0 -haematocytopenia%1:26:00:: 13973632 1 0 -haematocyturia%1:26:00:: 14266400 1 0 -haematogenesis%1:22:00:: 13492453 1 0 -haematogenic%3:01:00:: 02739578 1 0 -haematohiston%1:27:00:: 15025942 1 0 -haematoidin%1:27:00:: 14756369 1 0 -haematological%3:01:00:: 02917470 1 0 -haematologist%1:18:00:: 10170681 1 0 -haematology%1:09:00:: 06051134 1 0 -haematolysis%1:22:00:: 13493213 1 0 -haematoma%1:26:00:: 14318714 1 0 -haematopodidae%1:05:00:: 02036864 1 0 -haematopoiesis%1:22:00:: 13492453 1 0 -haematopoietic%3:01:00:: 02739578 1 0 -haematopus%1:05:00:: 02036982 1 0 -haematoxylon%1:20:00:: 12496735 1 0 -haematoxylum%1:20:00:: 12496735 1 0 -haematoxylum_campechianum%1:20:00:: 12496949 1 0 -haematuria%1:26:00:: 14314320 1 0 -haemic%3:01:00:: 02850483 1 0 -haemitin%1:27:00:: 15024997 1 0 -haemodialysis%1:04:00:: 00650543 1 0 -haemodoraceae%1:20:00:: 12311894 1 0 -haemodorum%1:20:00:: 12312276 1 0 -haemogenesis%1:22:00:: 13492453 1 0 -haemoglobin%1:27:00:: 15024240 1 0 -haemoglobinemia%1:26:00:: 14191903 1 0 -haemoglobinopathy%1:26:00:: 14192034 1 0 -haemoglobinuria%1:26:00:: 14314483 1 0 -haemolysin%1:27:00:: 14906261 1 0 -haemolysis%1:22:00:: 13493213 1 0 -haemolytic%3:01:00:: 03007530 1 0 -haemolytic_anaemia%1:26:00:: 14165240 1 0 -haemophile%1:18:00:: 10170989 1 0 -haemophilia%1:26:00:: 14170337 1 0 -haemophilia_a%1:26:00:: 14170772 1 0 -haemophilia_b%1:26:00:: 14170987 1 0 -haemophiliac%1:18:00:: 10170989 1 0 -haemophilic%3:01:00:: 02850826 1 0 -haemopis%1:05:00:: 01938618 1 0 -haemopoiesis%1:22:00:: 13492453 1 0 -haemopoietic%3:01:00:: 02739578 1 0 -haemoproteid%1:05:00:: 01424782 1 0 -haemoproteidae%1:05:00:: 01424607 1 0 -haemoprotein%1:27:00:: 14888884 1 0 -haemoproteus%1:05:00:: 01424938 1 0 -haemoptysis%1:26:00:: 14192199 1 0 -haemorrhage%1:26:00:: 14288235 1 0 -haemorrhagic%3:01:00:: 02740223 1 0 -haemorrhagic_fever%1:26:00:: 14177423 1 0 -haemorrhagic_stroke%1:26:00:: 14288561 1 0 -haemorrhoid%1:26:00:: 14327125 1 0 -haemorrhoidectomy%1:04:00:: 00676693 1 0 -haemosiderin%1:27:00:: 15026963 1 0 -haemosiderosis%1:26:00:: 14314597 1 0 -haemosporidia%1:05:00:: 01423757 1 0 -haemosporidian%1:05:00:: 01423971 1 0 -haemostasia%1:04:00:: 00676834 1 0 -haemostasis%1:04:00:: 00676834 1 0 -haemostat%1:06:00:: 03514451 1 0 -haemothorax%1:26:00:: 14320813 1 0 -haemulidae%1:05:00:: 02588108 1 0 -haemulon%1:05:00:: 02588580 1 0 -haemulon_album%1:05:00:: 02588794 1 0 -haemulon_aurolineatum%1:05:00:: 02589062 1 0 -haemulon_macrostomum%1:05:00:: 02588945 1 0 -haemulon_malanurum%1:05:00:: 02589196 1 0 -haemulon_parra%1:05:00:: 02589316 1 0 -hafnium%1:27:00:: 14639556 1 0 -haft%1:06:00:: 03474896 1 0 -haftarah%1:10:00:: 06453119 1 0 -haftorah%1:10:00:: 06453119 1 0 -hag%1:05:00:: 01478511 2 0 -hag%1:18:00:: 10155485 1 0 -hag-ridden%5:00:00:troubled:00 02458046 1 0 -hagada%1:10:00:: 06463011 1 0 -haganah%1:14:00:: 08345366 1 0 -hagberry%1:20:00:: 12647787 1 0 -hagberry_tree%1:20:00:: 12647560 1 0 -hagbut%1:06:00:: 02742070 1 0 -hageman_factor%1:27:00:: 15072491 1 0 -hagerstown%1:15:00:: 09094919 1 0 -hagfish%1:05:00:: 01478511 1 0 -haggada%1:10:00:: 06463011 1 0 -haggadah%1:10:00:: 06463011 1 0 -haggai%1:10:00:: 06440937 2 0 -haggai%1:18:00:: 11021916 1 0 -haggard%1:18:00:: 11022001 1 0 -haggard%5:00:00:thin:03 00988988 2 1 -haggard%5:00:00:tired:00 02433000 1 2 -haggardly%4:02:00:: 00502987 1 1 -haggis%1:13:00:: 07869111 1 0 -haggle%1:10:00:: 07150138 1 0 -haggle%2:40:00:: 02259547 1 2 -haggler%1:18:00:: 10155600 1 0 -haggling%1:10:00:: 07150138 1 0 -hagia_sofia%1:06:00:: 03475118 1 0 -hagia_sophia%1:06:00:: 03475118 1 0 -hagiographa%1:10:00:: 06453324 1 0 -hagiographer%1:18:00:: 10155692 1 0 -hagiographist%1:18:00:: 10155692 1 0 -hagiography%1:10:00:: 06516242 1 0 -hagiolatry%1:04:00:: 01046257 1 0 -hagiologist%1:18:00:: 10155692 1 0 -hagiology%1:10:00:: 06377000 1 0 -hagridden%5:00:00:troubled:00 02458046 1 0 -hahn%1:18:00:: 11022160 1 0 -hahnium%1:27:00:: 14636523 1 0 -haick%1:06:00:: 03475421 1 0 -haida%1:10:00:: 06910238 2 0 -haida%1:18:00:: 09655709 1 0 -haifa%1:15:00:: 08798062 1 0 -haik%1:06:00:: 03475421 1 0 -haiku%1:10:00:: 06380495 1 1 -hail%1:10:00:: 06631050 3 0 -hail%1:17:00:: 09300905 2 0 -hail%1:19:00:: 11465530 1 3 -hail%2:32:00:: 00900376 4 1 -hail%2:32:01:: 00900499 3 1 -hail%2:32:02:: 00861725 1 4 -hail%2:42:00:: 02743214 2 1 -hail%2:43:00:: 02759115 5 0 -hail-fellow%5:00:00:friendly:01 01075864 1 0 -hail-fellow-well-met%5:00:00:friendly:01 01075864 1 0 -hail_mary%1:10:00:: 06456515 1 0 -haile_selassie%1:18:00:: 11022309 1 0 -hailstone%1:27:00:: 14915804 1 0 -hailstorm%1:19:00:: 11465688 1 0 -haiphong%1:15:00:: 09164417 1 0 -hair%1:05:02:: 01900150 6 0 -hair%1:06:00:: 03475674 5 0 -hair%1:08:00:: 05254795 1 59 -hair%1:08:01:: 05254393 4 0 -hair%1:20:00:: 13090091 3 0 -hair%1:23:00:: 13761603 2 0 -hair's-breadth%1:23:00:: 13761603 1 0 -hair-raiser%1:04:00:: 01261113 1 0 -hair-raising%5:00:00:alarming:00 00194817 1 0 -hair-shirt%3:01:00:: 02737655 1 0 -hair-shirted%3:01:00:: 02737655 1 0 -hair-tailed_mole%1:05:00:: 01890144 1 0 -hair_ball%1:17:00:: 09301044 1 0 -hair_care%1:04:00:: 00257228 1 0 -hair_cell%1:08:00:: 05242622 1 0 -hair_coloring%1:04:00:: 00275307 3 0 -hair_coloring%1:07:00:: 04976188 2 0 -hair_coloring%1:27:00:: 14988502 1 0 -hair_curler%1:06:00:: 03150232 1 0 -hair_drier%1:06:00:: 03483316 1 0 -hair_dryer%1:06:00:: 03483316 1 0 -hair_dye%1:27:00:: 14988502 1 0 -hair_follicle%1:08:00:: 05518257 1 0 -hair_gel%1:06:00:: 03794136 1 0 -hair_grass%1:20:00:: 12153914 1 0 -hair_grease%1:06:00:: 03475823 1 0 -hair_mousse%1:06:00:: 03794136 1 0 -hair_of_the_dog%1:13:00:: 07912726 1 0 -hair_oil%1:06:00:: 03475823 1 0 -hair_seal%1:05:00:: 02079389 1 0 -hair_shirt%1:06:00:: 03476542 1 0 -hair_slide%1:06:00:: 03476684 1 0 -hair_space%1:06:00:: 03476843 1 0 -hair_spray%1:06:00:: 03476991 1 0 -hair_stroke%1:10:00:: 06802347 1 0 -hair_style%1:08:00:: 05256862 1 0 -hair_tonic%1:06:00:: 03475823 1 0 -hair_trigger%1:06:00:: 03477303 1 0 -hairball%1:17:00:: 09301044 1 0 -hairbrush%1:06:00:: 03475581 1 0 -haircare%1:04:00:: 00257228 1 0 -haircloth%1:06:00:: 03475674 1 0 -haircut%1:04:00:: 00359822 2 0 -haircut%1:08:00:: 05257593 1 2 -hairdo%1:08:00:: 05256862 1 1 -hairdresser%1:18:00:: 10155849 1 0 -hairdressing%1:04:00:: 00257228 2 0 -hairdressing%1:06:00:: 03475823 1 0 -haired%3:00:00:: 00212173 1 0 -hairgrip%1:06:00:: 02860640 1 0 -hairiness%1:07:00:: 04683453 1 0 -hairless%3:00:00:: 00210446 1 1 -hairlessness%1:07:00:: 04683707 2 0 -hairlessness%1:26:00:: 14457218 1 0 -hairlike%5:00:00:thin:01 02412880 1 0 -hairline%1:08:00:: 05256220 2 0 -hairline%1:10:00:: 06802258 1 0 -hairline_fracture%1:26:00:: 14293505 1 0 -hairnet%1:06:00:: 03475961 1 0 -hairpiece%1:06:00:: 03476083 1 0 -hairpin%1:06:00:: 03476313 1 0 -hairpin_bend%1:06:00:: 03476458 1 0 -hairsbreadth%1:23:00:: 13761603 1 0 -hairsplitter%1:18:00:: 10156173 1 0 -hairsplitting%1:09:00:: 05749210 1 0 -hairsplitting%5:00:00:precise:00 01838379 1 0 -hairspring%1:06:00:: 03477143 1 0 -hairstreak%1:05:00:: 02282903 1 0 -hairstreak_butterfly%1:05:00:: 02282903 1 0 -hairstyle%1:08:00:: 05256862 1 0 -hairstylist%1:18:00:: 10155849 1 0 -hairtail%1:05:00:: 02622955 1 0 -hairweaving%1:04:00:: 00257468 1 0 -hairy%3:00:00:: 00212173 1 2 -hairy%5:00:00:alarming:00 00196122 2 0 -hairy-legged_vampire_bat%1:05:00:: 02151230 1 0 -hairy_darling_pea%1:20:00:: 11752168 1 0 -hairy_finger_grass%1:20:00:: 12117326 1 0 -hairy_golden_aster%1:20:00:: 11981475 1 0 -hairy_honeysuckle%1:20:00:: 12675515 1 0 -hairy_lip_fern%1:20:00:: 13209270 1 0 -hairy_root%1:26:00:: 14279845 1 0 -hairy_spurge%1:20:00:: 12920043 1 0 -hairy_tare%1:20:00:: 12576838 1 0 -hairy_tongue%1:26:00:: 14311801 1 0 -hairy_vetch%1:20:00:: 12576838 1 0 -hairy_willowherb%1:20:00:: 12343092 1 0 -hairy_wood_mint%1:20:00:: 12842519 1 0 -haiti%1:15:00:: 08751494 1 0 -haiti%1:15:01:: 08751317 2 0 -haitian%1:18:00:: 09712448 1 0 -haitian%3:01:00:: 03071651 1 0 -haitian_capital%1:15:00:: 08751885 1 0 -haitian_centime%1:23:00:: 13679377 1 0 -haitian_creole%1:10:00:: 06905513 1 0 -haitian_monetary_unit%1:23:00:: 13679161 1 0 -haj%1:09:00:: 05915034 1 0 -haji%1:18:00:: 10156284 1 0 -hajj%1:09:00:: 05915034 1 0 -hajji%1:18:00:: 10156284 2 0 -hajji%1:18:01:: 10156425 1 0 -hake%1:05:00:: 02524524 2 0 -hake%1:13:00:: 07792027 1 0 -hakea%1:20:00:: 12218621 1 0 -hakea_laurina%1:20:00:: 12218868 1 0 -hakea_leucoptera%1:20:00:: 12219065 1 0 -hakea_lissosperma%1:20:00:: 12219289 1 0 -hakeem%1:18:00:: 10156629 1 0 -hakenkreuz%1:10:00:: 06883725 1 0 -hakham%1:10:00:: 06340977 1 0 -hakim%1:18:00:: 10156629 2 0 -hakim%1:18:01:: 10156726 1 0 -hakka%1:10:00:: 06930804 2 0 -hakka%1:18:00:: 10156831 1 0 -hakka_dialect%1:10:00:: 06930804 1 0 -halab%1:15:00:: 09034286 1 0 -halacha%1:10:00:: 06463170 1 0 -halaka%1:10:00:: 06463170 1 0 -halakah%1:10:00:: 06463170 1 0 -halal%1:13:00:: 07664582 1 0 -halal%5:00:00:clean:04 00427496 2 0 -halal%5:00:00:proper:00 01879912 1 0 -halberd%1:06:00:: 03477410 1 0 -halberdier%1:18:00:: 10157016 1 0 -halchidhoma%1:18:00:: 09655891 1 0 -halcion%1:06:00:: 04480625 1 0 -halcyon%1:05:00:: 01828397 2 0 -halcyon%1:05:01:: 01827202 3 0 -halcyon%1:18:00:: 09486639 1 0 -halcyon%5:00:00:happy:00 01149195 2 0 -halcyon%5:00:00:peaceful:00 01741270 1 0 -haldane%1:18:00:: 11022465 4 0 -haldane%1:18:01:: 11022669 3 0 -haldane%1:18:02:: 11022848 2 0 -haldane%1:18:03:: 11023070 1 0 -haldea%1:05:00:: 01736696 1 0 -haldea_striatula%1:05:00:: 01736796 1 0 -haldol%1:06:00:: 03480186 1 0 -hale%1:18:00:: 11023327 3 0 -hale%1:18:01:: 11023442 2 0 -hale%1:18:02:: 11023623 1 0 -hale%2:35:00:: 01454810 2 0 -hale%2:41:00:: 02504562 1 0 -hale%5:00:00:healthy:00 01171396 1 0 -haleakala_national_park%1:15:00:: 08605720 1 0 -haleness%1:26:00:: 14050011 1 0 -halenia%1:20:00:: 12297678 1 0 -haler%1:23:00:: 13681407 2 0 -haler%1:23:01:: 13681749 1 0 -halesia%1:20:00:: 12778045 1 0 -halesia_carolina%1:20:00:: 12778398 1 0 -halesia_tetraptera%1:20:00:: 12778398 1 0 -halevy%1:18:00:: 11023883 1 0 -haley%1:18:00:: 11024033 2 0 -haley%1:18:01:: 11024226 1 0 -half%1:23:00:: 13736799 1 42 -half%1:28:00:: 15257829 2 0 -half%3:00:02:: 00518035 3 0 -half%4:02:00:: 00007884 1 18 -half%5:00:00:fractional:00 00517554 1 22 -half%5:00:00:incomplete:00 00524496 2 11 -half-and-half%1:13:00:: 07847706 1 0 -half-and-half%4:02:00:: 00213195 1 0 -half-and-half%5:00:00:equal:00 00891468 1 0 -half-and-half_dressing%1:13:00:: 07834286 1 0 -half-baked%5:00:00:impractical:00 01836766 1 0 -half-baked%5:00:00:raw:00 00619601 2 0 -half-blooded%5:00:00:crossbred:00 01904698 1 0 -half-bound%5:00:00:bound:02 00257102 1 0 -half-bred%5:00:00:crossbred:00 01904698 1 0 -half-breed%1:18:00:: 10157549 1 4 -half-breed%5:00:00:crossbred:00 01904698 1 0 -half-brother%1:18:00:: 10654321 1 1 -half-caste%1:18:00:: 10157378 1 0 -half-century%1:28:00:: 15206097 1 0 -half-clothed%5:00:00:unclothed:00 00459443 1 0 -half-cock%1:09:00:: 05684739 1 0 -half-crazed%5:00:00:insane:00 02075847 1 0 -half-dozen%5:00:00:cardinal:00 02186833 1 0 -half-evergreen%5:00:00:evergreen:00 00913889 1 0 -half-free_morel%1:20:00:: 13034062 1 0 -half-hardy%5:00:00:robust:00 02039491 1 0 -half-hearted%5:00:00:unenthusiastic:00 00887472 1 0 -half-heartedly%4:02:00:: 00352588 1 1 -half-holiday%1:28:00:: 15138496 1 0 -half-hour%1:28:00:: 15228162 1 6 -half-hourly%4:02:00:: 00352721 1 0 -half-hourly%5:00:00:periodic:00 01968956 1 0 -half-intensity%1:07:00:: 05101174 1 2 -half-length%1:06:00:: 03478033 1 0 -half-length%5:00:00:abridged:00 00004723 2 0 -half-length%5:00:00:short:03 02387662 1 0 -half-life%1:28:00:: 15275094 1 0 -half-light%1:19:00:: 11465775 1 0 -half-mast%1:15:00:: 08580944 1 0 -half-moon%1:08:00:: 05582038 1 1 -half-moon%1:28:00:: 15207103 2 0 -half-pay%1:21:00:: 13280139 1 0 -half-pint%1:18:00:: 10543544 1 0 -half-price%4:02:00:: 00500658 1 0 -half-relief%1:06:00:: 03758334 1 0 -half-seas-over%5:00:00:intoxicated:00 00799129 1 0 -half-sister%1:18:00:: 10603242 1 0 -half-size%5:00:00:small:00 01393397 1 0 -half-slip%1:06:00:: 03920737 1 0 -half-staff%1:15:00:: 08580944 1 0 -half-term%1:28:00:: 15138241 1 0 -half-timber%5:00:00:timbered:00 02429721 1 0 -half-timbered%5:00:00:timbered:00 02429721 1 0 -half-time%4:02:00:: 00252740 1 1 -half-time%5:00:00:part-time:00 01089616 1 1 -half-track%5:00:00:tracked:00 02453921 1 0 -half-tracked%5:00:00:tracked:00 02453921 1 0 -half-truth%1:10:00:: 06758584 1 0 -half-wit%1:18:00:: 10013114 2 0 -half-wit%1:18:01:: 10197525 1 0 -half-witted%5:00:00:retarded:00 01840673 1 0 -half-yearly%4:02:00:: 00352816 1 0 -half-yearly%5:00:00:periodic:00 01969348 1 0 -half_a_dozen%1:23:00:: 13744722 1 1 -half_binding%1:06:00:: 03477512 1 0 -half_blood%1:18:00:: 10157271 1 0 -half_boot%1:06:00:: 02925666 1 0 -half_brother%1:18:00:: 10654321 1 0 -half_cross_stitch%1:06:00:: 03477674 1 0 -half_crown%1:21:00:: 13389949 1 0 -half_dollar%1:21:00:: 13390405 1 0 -half_door%1:06:00:: 03259118 1 0 -half_dozen%5:00:00:cardinal:00 02186833 1 2 -half_eagle%1:21:00:: 13392580 1 0 -half_gainer%1:04:00:: 00444142 1 1 -half_hatchet%1:06:00:: 03477773 1 0 -half_hitch%1:06:00:: 03477902 1 0 -half_life%1:28:00:: 15275094 1 1 -half_mask%1:06:00:: 03221059 1 0 -half_mile%1:23:00:: 13651804 1 3 -half_nelson%1:04:00:: 00813800 1 0 -half_note%1:10:00:: 06870844 1 0 -half_page%1:10:00:: 06257372 1 0 -half_pound%1:23:00:: 13720405 1 0 -half_rest%1:10:00:: 06870965 1 0 -half_sister%1:18:00:: 10603242 1 1 -half_snipe%1:05:00:: 02032769 1 0 -half_sole%1:06:00:: 03478141 1 0 -half_step%1:10:00:: 06859175 1 0 -half_title%1:10:00:: 06257772 1 0 -half_track%1:06:00:: 03478491 2 0 -half_track%1:06:01:: 03478589 1 0 -half_volley%1:04:00:: 00569234 1 0 -halfback%1:04:00:: 00727002 2 0 -halfback%1:18:00:: 10157128 1 9 -halfbeak%1:05:00:: 02551134 1 0 -halfhearted%5:00:00:unenthusiastic:00 00887472 1 0 -halfpenny%1:21:00:: 13390525 1 0 -halfpennyworth%1:23:00:: 13661045 1 0 -halftime%1:28:00:: 15272571 1 1 -halftone%1:06:00:: 03478261 2 0 -halftone%1:06:01:: 03478400 1 0 -halftone_engraving%1:06:00:: 03478261 1 0 -halfway%4:02:00:: 00255415 1 5 -halfway%5:00:00:central:01 00330506 1 4 -halfway%5:00:00:fractional:00 00517710 3 0 -halfway%5:00:00:intermediate:00 01014838 2 1 -haliaeetus%1:05:00:: 01614769 1 0 -haliaeetus_leucocephalus%1:05:00:: 01614925 1 0 -haliaeetus_leucorhyphus%1:05:00:: 01615703 1 0 -haliaeetus_pelagicus%1:05:00:: 01615303 1 0 -haliatus_albicilla%1:05:00:: 01615458 1 0 -halibut%1:05:00:: 02660208 2 0 -halibut%1:13:00:: 07791808 1 0 -halibut-liver_oil%1:27:00:: 14904226 1 0 -halicarnassus%1:15:00:: 09041582 1 0 -halicoeres%1:05:00:: 02608708 1 0 -halicoeres_bivittatus%1:05:00:: 02608860 1 0 -halicoeres_radiatus%1:05:00:: 02608996 1 0 -halictidae%1:05:00:: 02210728 1 0 -halide%1:27:00:: 14904359 1 0 -halifax%1:15:00:: 08827002 1 0 -halimodendron%1:20:00:: 12533588 1 0 -halimodendron_argenteum%1:20:00:: 12533730 1 0 -halimodendron_halodendron%1:20:00:: 12533730 1 0 -haliotidae%1:05:00:: 01942601 1 0 -haliotis%1:05:00:: 01942724 1 0 -haliotis_tuberculata%1:05:00:: 01943087 1 0 -halite%1:27:00:: 14672224 1 0 -halitosis%1:27:00:: 14842019 1 0 -halitus%1:27:00:: 14842091 1 0 -hall%1:06:01:: 03478756 13 0 -hall%1:06:02:: 03478907 3 6 -hall%1:06:03:: 03479952 1 25 -hall%1:06:04:: 03224893 4 3 -hall%1:06:05:: 02715513 2 10 -hall%1:06:06:: 03718581 5 2 -hall%1:06:07:: 03719053 11 0 -hall%1:06:08:: 03479121 12 0 -hall%1:18:00:: 11024419 10 0 -hall%1:18:01:: 11024582 9 0 -hall%1:18:02:: 11024731 8 0 -hall%1:18:03:: 11024908 7 0 -hall%1:18:04:: 11025125 6 0 -hall's_honeysuckle%1:20:00:: 12676134 1 0 -hall_of_fame%1:06:00:: 03479266 1 1 -hall_of_residence%1:06:00:: 03479397 1 0 -hall_pass%1:10:00:: 06690770 1 0 -hall_porter%1:18:00:: 10026553 1 0 -hallah%1:13:00:: 07681450 1 0 -halle%1:15:00:: 08773098 1 0 -halle-an-der-saale%1:15:00:: 08773098 1 0 -hallel%1:10:00:: 07034865 1 0 -hallelujah%1:10:00:: 06693655 1 1 -halley%1:18:00:: 11025326 1 0 -halliard%1:06:00:: 03480863 1 0 -hallmark%1:07:00:: 04732543 1 2 -hallmark%1:10:00:: 06855035 2 0 -halloo%1:10:00:: 07122409 1 0 -halloo%2:32:00:: 00914061 2 0 -halloo%2:35:00:: 01231140 1 0 -hallow%2:32:00:: 00866702 1 0 -hallowe'en%1:28:00:: 15191233 1 0 -hallowed%5:00:00:holy:00 02054610 1 1 -halloween%1:28:00:: 15191233 1 1 -hallowmas%1:28:00:: 15195059 1 0 -hallowmass%1:28:00:: 15195059 1 0 -hallstand%1:06:00:: 03479502 1 0 -hallucinate%2:39:00:: 02117649 1 0 -hallucinating%5:00:00:ill:01 02543823 1 0 -hallucination%1:09:00:: 05896733 2 0 -hallucination%1:09:01:: 05812921 3 0 -hallucination%1:26:00:: 14377617 1 1 -hallucinatory%5:00:00:unreal:00 01936997 1 0 -hallucinogen%1:06:00:: 03479647 1 0 -hallucinogenic%5:00:00:psychoactive:00 01777212 1 0 -hallucinogenic_drug%1:06:00:: 03479647 1 0 -hallucinosis%1:26:00:: 14375241 1 0 -hallux%1:08:00:: 05577741 1 0 -hallway%1:06:00:: 03479952 1 5 -halm%1:20:00:: 13163649 1 0 -halma%1:04:00:: 00504526 1 0 -halo%1:07:00:: 04951716 1 4 -halo%1:19:00:: 11487424 3 0 -halo%1:25:00:: 13875392 2 0 -halo_blight%1:26:00:: 14217253 2 0 -halo_blight%1:26:01:: 14217360 1 0 -halo_spot%1:26:00:: 14217253 1 0 -haloalkane%1:27:00:: 14601646 1 0 -halobacter%1:05:00:: 01348232 1 0 -halobacteria%1:05:00:: 01348232 1 0 -halobacterium%1:05:00:: 01348232 1 0 -halocarbon%1:27:00:: 14904528 1 0 -halocarpus%1:20:00:: 11655407 1 0 -halocarpus_bidwilli%1:20:00:: 11655592 1 0 -haloform%1:27:00:: 14620895 1 0 -halogen%1:27:00:: 14904661 1 2 -halogeton%1:20:00:: 11833749 1 0 -halogeton_glomeratus%1:20:00:: 11833749 1 0 -halogeton_souda%1:20:00:: 11833999 1 0 -halon%1:27:00:: 14620257 1 0 -haloperidol%1:06:00:: 03480186 1 0 -halophil%1:05:00:: 01348075 1 0 -halophile%1:05:00:: 01348075 1 0 -halophyte%1:20:00:: 12387103 1 0 -haloragaceae%1:20:00:: 12326604 1 0 -haloragidaceae%1:20:00:: 12326604 1 0 -halothane%1:06:00:: 03480367 1 0 -hals%1:18:00:: 11025508 1 0 -halt%1:04:00:: 01063697 3 1 -halt%1:11:00:: 07365849 2 1 -halt%1:26:00:: 14010927 1 1 -halt%2:30:02:: 00354452 4 0 -halt%2:38:01:: 01860795 2 7 -halt%2:38:05:: 01859586 1 8 -halt%2:41:00:: 02559752 3 4 -halt%5:00:00:unfit:01 01018788 1 0 -halter%1:05:00:: 02152212 4 0 -halter%1:06:00:: 03480579 3 0 -halter%1:06:01:: 03480719 1 1 -halter%1:06:02:: 03491724 2 0 -halter%2:30:00:: 00236289 2 0 -halter%2:41:00:: 02485631 1 0 -haltere%1:05:00:: 02152212 1 0 -halting%5:00:00:broken:02 00290784 2 0 -halting%5:00:00:unfit:01 01018788 1 0 -haltingly%4:02:00:: 00213116 1 1 -halve%2:31:00:: 00642357 1 0 -halyard%1:06:00:: 03480863 1 0 -ham%1:13:00:: 07669891 1 1 -ham%1:18:00:: 10158010 4 0 -ham%1:18:01:: 10158139 3 0 -ham%1:18:02:: 10158222 2 0 -ham%2:36:00:: 01751173 1 0 -ham-fisted%5:00:00:maladroit:00 00063563 1 0 -ham-handed%5:00:00:maladroit:00 00063563 1 0 -ham_actor%1:18:00:: 10158010 1 0 -ham_and_eggs%1:13:00:: 07869291 1 1 -ham_hock%1:13:00:: 07668481 1 0 -ham_it_up%2:36:00:: 01751173 1 0 -ham_sandwich%1:13:00:: 07696625 1 0 -hamadryad%1:05:00:: 01748906 2 0 -hamadryad%1:18:00:: 09551260 1 0 -hamamelid_dicot_family%1:20:00:: 11564734 1 0 -hamamelid_dicot_genus%1:20:00:: 11573173 1 0 -hamamelidaceae%1:20:00:: 12314315 1 0 -hamamelidae%1:20:00:: 12313005 1 0 -hamamelidanthum%1:20:00:: 12313735 1 0 -hamamelidoxylon%1:20:00:: 12313954 1 0 -hamamelis%1:20:00:: 12314652 1 0 -hamamelis_vernalis%1:20:00:: 12315245 1 0 -hamamelis_virginiana%1:20:00:: 12315060 1 0 -hamamelites%1:20:00:: 12314146 1 0 -haman%1:18:00:: 10158319 1 0 -hamartia%1:26:00:: 14463331 1 0 -hamartoma%1:26:00:: 14238953 1 0 -hamas%1:14:00:: 08022259 1 0 -hamate%1:08:00:: 05273408 1 0 -hamate_bone%1:08:00:: 05273408 1 0 -hamburg%1:15:00:: 08773336 1 0 -hamburg_parsley%1:20:00:: 12942729 1 0 -hamburger%1:13:00:: 07664007 2 0 -hamburger%1:13:01:: 07697100 1 0 -hamburger_bun%1:13:00:: 07690152 1 0 -hamburger_roll%1:13:00:: 07690152 1 0 -hamburger_steak%1:13:00:: 07664121 1 0 -hame%1:06:00:: 03480973 1 0 -hamelia%1:20:00:: 12667964 1 0 -hamelia_erecta%1:20:00:: 12668131 1 0 -hamelia_patens%1:20:00:: 12668131 1 0 -hamelin%1:15:00:: 08771841 1 0 -hameln%1:15:00:: 08771841 1 0 -hamilton%1:15:00:: 08827689 5 0 -hamilton%1:15:01:: 08710873 6 0 -hamilton%1:18:00:: 11025668 4 0 -hamilton%1:18:01:: 11025926 3 0 -hamilton%1:18:02:: 11026078 2 0 -hamilton%1:18:03:: 11026231 1 0 -haminoea%1:05:00:: 01951845 1 0 -hamitic%1:10:00:: 06989869 1 0 -hamitic_language%1:10:00:: 06989869 1 0 -hamito-semitic%1:10:00:: 06986558 1 0 -hamlet%1:14:00:: 08226978 1 1 -hamlet%1:15:00:: 08672738 3 0 -hamlet%1:18:00:: 09599891 2 0 -hammarskjold%1:18:00:: 11026372 1 0 -hammer%1:04:00:: 01175316 8 0 -hammer%1:06:00:: 03481172 2 2 -hammer%1:06:01:: 03481521 7 0 -hammer%1:06:02:: 03481674 6 0 -hammer%1:06:03:: 03715669 4 0 -hammer%1:06:04:: 03481824 1 2 -hammer%1:06:05:: 03482001 5 0 -hammer%1:08:00:: 05325943 3 0 -hammer%2:35:00:: 01416539 1 4 -hammer%2:36:00:: 01675245 2 0 -hammer-shaped%5:00:00:formed:00 02147477 1 0 -hammer_and_sickle%1:10:00:: 06882138 1 0 -hammer_in%2:31:00:: 00606471 1 0 -hammer_nose%1:26:00:: 14397040 1 0 -hammer_out%2:32:00:: 01064151 1 0 -hammer_throw%1:11:00:: 07470110 1 0 -hammered%3:44:00:: 03149025 1 0 -hammerhead%1:05:00:: 01494475 3 0 -hammerhead%1:06:00:: 03482128 2 0 -hammerhead%1:18:00:: 10039663 1 0 -hammerhead_shark%1:05:00:: 01494475 1 0 -hammering%1:04:00:: 01175316 1 0 -hammerlock%1:04:00:: 00813975 1 0 -hammerstein%1:18:00:: 11026597 1 0 -hammertoe%1:08:00:: 05577866 1 0 -hammett%1:18:00:: 11026816 1 0 -hamming%1:04:00:: 00551585 1 1 -hammock%1:06:00:: 03482252 2 0 -hammock%1:17:00:: 09326662 1 0 -hammond_organ%1:06:00:: 03273551 1 0 -hammurabi%1:18:00:: 11026981 1 0 -hammurapi%1:18:00:: 11026981 1 0 -hammy%5:00:00:dramatic:00 00795395 1 0 -hamper%1:06:00:: 03482405 2 0 -hamper%1:06:01:: 04181228 1 2 -hamper%2:30:00:: 00236289 1 4 -hamper%2:33:00:: 01085474 2 1 -hampshire%1:05:00:: 02413593 2 0 -hampshire%1:15:00:: 08882365 1 0 -hampshire_down%1:05:00:: 02413593 1 0 -hampton%1:18:00:: 11027127 1 0 -hampton_roads%1:04:00:: 01280308 2 0 -hampton_roads%1:17:00:: 09301249 1 0 -hamster%1:05:00:: 02342885 1 0 -hamstring%1:08:00:: 05570704 1 0 -hamstring%2:29:00:: 00091851 2 0 -hamstring%2:37:00:: 01799629 1 0 -hamstring_tendon%1:08:00:: 05570704 1 0 -hamsun%1:18:00:: 11027294 1 0 -han%1:14:00:: 08154703 1 0 -han-gook%1:15:00:: 08954611 1 0 -han_dynasty%1:14:00:: 08154703 1 0 -hancock%1:18:00:: 11027416 1 0 -hand%1:04:00:: 01208460 14 0 -hand%1:05:01:: 02440250 13 0 -hand%1:06:00:: 03482523 8 1 -hand%1:08:00:: 05564590 1 215 -hand%1:09:00:: 05637965 4 3 -hand%1:09:01:: 05852973 7 1 -hand%1:10:00:: 06403393 3 4 -hand%1:10:01:: 06692238 12 0 -hand%1:14:00:: 07956887 6 1 -hand%1:15:00:: 08650157 5 2 -hand%1:18:00:: 10176679 2 5 -hand%1:18:01:: 09875353 11 0 -hand%1:18:02:: 10158506 10 0 -hand%1:23:00:: 13654093 9 0 -hand%2:38:00:: 02000133 2 0 -hand%2:40:00:: 02230772 1 25 -hand-build%2:36:00:: 01663580 1 0 -hand-crafted%3:00:00:: 00673456 1 0 -hand-down%5:00:01:old:01 01639720 1 0 -hand-dye%2:30:00:: 00288673 1 0 -hand-held%3:44:00:: 03149169 1 0 -hand-held_computer%1:06:00:: 03485407 1 0 -hand-held_microcomputer%1:06:00:: 03485407 1 0 -hand-hewn%5:00:00:cut:03 00663576 1 0 -hand-loomed%5:00:00:handmade:00 00673807 1 0 -hand-me-down%1:06:00:: 03487642 1 0 -hand-me-down%5:00:01:old:01 01639720 1 0 -hand-operated%5:00:00:manual:00 00182961 1 0 -hand-pick%2:31:00:: 00676714 1 0 -hand-schuller-christian_disease%1:26:00:: 14192376 1 0 -hand-to-hand%5:00:00:close:01 00449662 1 2 -hand-to-hand_struggle%1:04:00:: 00622266 1 0 -hand-to-mouth%5:00:00:meager:00 00107128 1 0 -hand-wash%2:35:00:: 01536925 1 0 -hand_and_foot%4:02:00:: 00147502 1 0 -hand_and_glove%4:02:00:: 00163340 1 0 -hand_ax%1:06:00:: 03482727 1 0 -hand_axe%1:06:00:: 03482727 1 0 -hand_blower%1:06:00:: 03483316 1 1 -hand_brake%1:06:00:: 03483637 1 1 -hand_calculator%1:06:00:: 03483823 1 0 -hand_cheese%1:13:00:: 07853852 1 0 -hand_clapping%1:10:00:: 06691989 1 0 -hand_cream%1:06:00:: 03484487 1 0 -hand_down%2:40:00:: 02230615 1 1 -hand_drill%1:06:00:: 03484809 1 0 -hand_fern%1:20:00:: 13211020 1 0 -hand_glass%1:06:00:: 03484931 2 0 -hand_glass%1:06:01:: 03485198 1 0 -hand_grenade%1:06:00:: 03485309 1 2 -hand_in_glove%4:02:00:: 00163340 1 0 -hand_in_hand%4:02:01:: 00147597 2 1 -hand_in_hand%4:02:03:: 00245166 1 1 -hand_job%1:04:00:: 00856193 1 0 -hand_line%1:06:00:: 03487222 1 0 -hand_lotion%1:06:00:: 03487444 1 0 -hand_luggage%1:06:00:: 03487533 1 0 -hand_mirror%1:06:00:: 03485198 1 0 -hand_mower%1:06:00:: 03487774 1 0 -hand_organ%1:06:00:: 02795978 1 0 -hand_out%2:40:00:: 02201644 1 5 -hand_over%2:40:00:: 02293321 1 5 -hand_over_fist%4:02:00:: 00147693 1 0 -hand_pump%1:06:00:: 03487886 1 0 -hand_puppet%1:06:00:: 03487963 1 0 -hand_saw%1:06:00:: 03488188 1 0 -hand_shovel%1:06:00:: 03488603 1 0 -hand_throttle%1:06:00:: 03489048 1 0 -hand_to_hand%4:02:00:: 00054750 1 0 -hand_to_mouth%4:02:00:: 00054831 1 0 -hand_tool%1:06:00:: 03489162 1 2 -hand_towel%1:06:00:: 03490006 1 0 -hand_truck%1:06:00:: 03490119 1 0 -hand_wear%1:06:00:: 03490324 1 0 -handbag%1:06:00:: 02774152 1 3 -handball%1:04:00:: 00479440 2 0 -handball%1:06:00:: 03482877 1 0 -handball_court%1:06:00:: 03482988 1 0 -handbarrow%1:06:00:: 03483086 1 0 -handbasin%1:06:00:: 04553703 1 0 -handbasket%1:06:00:: 02801938 1 0 -handbell%1:06:00:: 03483230 1 0 -handbill%1:10:00:: 07250339 1 0 -handbook%1:10:00:: 06421301 1 0 -handbow%1:06:00:: 03483531 1 0 -handbreadth%1:23:00:: 13654232 1 0 -handbuild%2:36:00:: 01663580 1 0 -handcar%1:06:00:: 03483971 1 0 -handcart%1:06:00:: 03484083 1 0 -handclap%1:10:00:: 06692369 1 0 -handclasp%1:10:00:: 06632097 1 1 -handcolor%2:30:00:: 00285856 1 0 -handcolour%2:30:00:: 00285856 1 0 -handcraft%1:06:00:: 03485655 1 0 -handcraft%2:36:00:: 01659007 1 0 -handcuff%1:06:00:: 03484576 1 0 -handcuff%2:35:00:: 01288201 1 0 -handed%3:00:00:: 02027704 1 0 -handed-down%5:00:00:traditional:00 00611527 1 0 -handedness%1:07:00:: 05067007 1 0 -handel%1:10:00:: 07278510 2 0 -handel%1:18:00:: 11027631 1 0 -handelian%3:01:00:: 03032383 1 0 -handful%1:23:00:: 13767350 2 4 -handful%1:23:01:: 13771154 1 4 -handgrip%1:06:00:: 03485997 1 0 -handgun%1:06:00:: 03948459 1 0 -handheld%3:44:00:: 03149169 1 0 -handheld_drill%1:06:00:: 03484809 1 0 -handhold%1:06:00:: 03485575 1 0 -handicap%1:07:02:: 05156822 2 1 -handicap%1:09:00:: 05689249 3 0 -handicap%1:26:00:: 14548343 1 1 -handicap%2:29:00:: 00091968 1 1 -handicap%2:33:00:: 01085474 3 0 -handicap%2:33:01:: 01085874 2 0 -handicapped%1:14:00:: 07946288 1 0 -handicapped%5:00:00:unfit:01 01019283 1 2 -handicapped_person%1:18:00:: 10158756 1 0 -handicapper%1:18:00:: 10370683 1 0 -handicraft%1:04:00:: 00714944 2 0 -handicraft%1:06:00:: 03485655 1 0 -handies_peak%1:17:00:: 09301461 1 0 -handily%4:02:00:: 00147785 2 0 -handily%4:02:01:: 00197395 1 0 -handiness%1:07:00:: 04718999 2 0 -handiness%1:09:00:: 05640924 1 0 -handing_over%1:04:00:: 00318035 1 0 -handiwork%1:06:00:: 03485655 1 1 -handkerchief%1:06:00:: 03485794 1 6 -handle%1:06:00:: 03485997 1 4 -handle%2:32:00:: 01033527 3 4 -handle%2:35:00:: 01210737 4 3 -handle%2:35:01:: 01224415 5 1 -handle%2:37:05:: 01804414 6 0 -handle%2:41:00:: 02436349 1 41 -handle%2:41:03:: 02514187 2 15 -handle-bars%1:08:00:: 05262534 1 0 -handle_with_kid_gloves%2:41:00:: 02514704 1 0 -handlebar%1:06:00:: 03487090 1 1 -handled%3:00:00:: 02028367 1 1 -handleless%3:00:00:: 02028488 1 0 -handler%1:18:00:: 09931640 3 0 -handler%1:18:01:: 10159045 1 0 -handler%1:18:02:: 10158608 2 0 -handless%3:00:00:: 02028263 1 1 -handless%5:00:00:maladroit:00 00063563 2 0 -handline%1:06:00:: 03487222 1 0 -handling%1:04:00:: 00713594 1 2 -handling%1:04:01:: 00140652 2 2 -handling%1:04:02:: 01134861 3 1 -handling_charge%1:21:00:: 13302467 1 0 -handling_cost%1:21:00:: 13302467 1 0 -handlock%1:06:00:: 03484576 1 0 -handloom%1:06:00:: 03487331 1 0 -handmade%3:00:00:: 00673456 1 2 -handmaid%1:18:00:: 10159186 2 0 -handmaid%1:26:00:: 13952171 1 0 -handmaiden%1:18:00:: 10159186 2 0 -handmaiden%1:26:00:: 13952171 1 0 -handoff%1:04:00:: 00561078 1 0 -handout%1:04:00:: 01090342 2 0 -handout%1:10:00:: 06747484 1 0 -handover%1:04:00:: 00213186 1 0 -handrail%1:06:00:: 02788148 1 0 -handrest%1:06:00:: 03488111 1 0 -hands%1:04:00:: 00818678 1 10 -hands%1:14:00:: 08212347 2 1 -hands-down%5:00:00:easy:01 00750602 1 0 -hands-off%5:00:00:passive:01 00039929 1 0 -hands-on%5:00:00:active:03 00039259 1 0 -hands_down%4:02:00:: 00147785 1 0 -handsaw%1:06:00:: 03488188 1 0 -handsaw_fish%1:05:00:: 02544475 1 0 -handsbreadth%1:23:00:: 13654232 1 0 -handset%1:06:00:: 03488438 1 0 -handsewn%5:00:00:handmade:00 00673919 1 0 -handshake%1:10:00:: 06632097 1 0 -handshaking%1:10:00:: 06632097 1 1 -handsome%5:00:00:beautiful:00 00218950 1 7 -handsome%5:00:00:generous:01 01111418 2 3 -handsomely%4:02:00:: 00352907 2 0 -handsomely%4:02:01:: 00353052 1 0 -handsomeness%1:07:00:: 04685840 1 0 -handspike%1:06:00:: 03488784 1 3 -handspring%1:04:00:: 00437487 1 0 -handstamp%1:06:00:: 03488887 1 0 -handstamp%2:35:00:: 01273632 1 0 -handstand%1:04:00:: 00436187 1 3 -handstitched%5:00:00:handmade:00 00673919 1 0 -handwash%2:35:00:: 01536925 1 0 -handwear%1:06:00:: 03490324 1 0 -handwheel%1:06:00:: 03490449 2 0 -handwheel%1:06:01:: 03490649 1 0 -handwork%1:06:00:: 03485655 1 0 -handwoven%5:00:00:handmade:00 00673807 1 1 -handwrite%2:32:00:: 01005209 1 0 -handwriting%1:04:00:: 00614730 2 0 -handwriting%1:10:00:: 06403393 1 2 -handwriting_expert%1:18:00:: 10144188 1 0 -handwritten%5:00:00:written:00 02285407 1 1 -handy%1:18:00:: 11027885 1 0 -handy%5:00:00:accessible:00 00019731 1 2 -handy%5:00:00:adroit:00 00062626 3 0 -handy%5:00:00:convenient:00 00604897 2 1 -handyman%1:18:00:: 10159289 1 1 -hang%1:04:00:: 00436339 3 0 -hang%1:07:00:: 04931837 2 0 -hang%1:09:00:: 05624254 1 0 -hang%2:30:00:: 00210110 15 0 -hang%2:35:00:: 01481360 2 12 -hang%2:35:02:: 01542668 5 5 -hang%2:35:03:: 01482075 1 35 -hang%2:35:04:: 01481647 14 0 -hang%2:35:05:: 01481819 13 0 -hang%2:35:06:: 01481957 8 1 -hang%2:35:07:: 01216331 9 1 -hang%2:36:00:: 01677716 12 0 -hang%2:38:03:: 01977962 4 6 -hang%2:39:00:: 02170427 7 1 -hang%2:41:00:: 02485451 3 11 -hang%2:41:03:: 02557790 11 0 -hang%2:42:00:: 02734952 6 2 -hang%2:42:01:: 02741003 10 0 -hang-up%1:09:01:: 05691144 2 0 -hang-up%1:09:02:: 05705484 1 0 -hang_around%2:42:00:: 02639075 1 7 -hang_back%2:38:00:: 02058756 1 1 -hang_by_a_hair%2:42:00:: 02664413 1 0 -hang_by_a_thread%2:42:00:: 02664413 1 0 -hang_glide%2:38:00:: 01955808 1 0 -hang_glider%1:06:00:: 03491032 2 0 -hang_glider%1:18:00:: 10159533 1 0 -hang_gliding%1:04:00:: 00303748 1 0 -hang_in%2:30:00:: 00350461 1 1 -hang_on%2:30:00:: 00350461 2 3 -hang_on%2:32:00:: 00790509 3 0 -hang_on%2:35:00:: 01328513 1 4 -hang_out%2:41:00:: 02390287 1 0 -hang_together%2:42:00:: 02622033 1 1 -hang_up%2:30:00:: 00363003 3 1 -hang_up%2:35:00:: 01309027 1 8 -hang_up%2:35:01:: 01481360 2 3 -hangar%1:06:00:: 02687821 1 0 -hangar_queen%1:06:00:: 03490784 1 0 -hangbird%1:05:00:: 01572489 1 0 -hangchow%1:15:00:: 08727606 1 0 -hangdog%5:00:00:afraid:00 00079262 2 0 -hangdog%5:00:00:ashamed:00 00154583 1 0 -hanger%1:06:00:: 03490884 2 0 -hanger%1:18:00:: 10159434 1 0 -hanger-on%1:18:00:: 10688671 1 0 -hanging%1:04:01:: 01017701 3 0 -hanging%1:04:02:: 01164874 2 0 -hanging%1:06:00:: 03491178 1 0 -hanging_chad%1:27:00:: 14904956 1 0 -hanging_fly%1:05:00:: 02163008 1 0 -hanging_gardens_of_babylon%1:06:00:: 03491491 1 0 -hanging_geranium%1:20:00:: 12687957 1 0 -hanging_wall%1:17:00:: 09301625 1 0 -hangman%1:18:00:: 10159615 1 0 -hangman's_halter%1:06:00:: 03491724 1 0 -hangman's_rope%1:06:00:: 03491724 1 0 -hangnail%1:08:00:: 05584746 1 0 -hangout%1:15:00:: 08581503 1 1 -hangover%1:04:00:: 01022292 3 0 -hangover%1:18:00:: 10180791 2 0 -hangover%1:26:00:: 14447165 1 1 -hangzhou%1:15:00:: 08727606 1 0 -hangzhou_bay%1:17:00:: 09301738 1 0 -hani%1:10:00:: 06932803 1 0 -hank%1:06:00:: 03491988 1 0 -hank_aaron%1:18:00:: 10807016 1 0 -hank_panky%1:04:00:: 00846432 1 0 -hank_williams%1:18:00:: 11390364 1 0 -hanker%2:37:00:: 01828405 1 2 -hankering%1:12:00:: 07486922 1 0 -hankey%1:06:00:: 03485794 1 0 -hankie%1:06:00:: 03485794 1 0 -hanks%1:18:00:: 11028074 1 0 -hanky%1:06:00:: 03485794 1 0 -hanky_panky%1:10:00:: 06760722 1 0 -hannah_arendt%1:18:00:: 10821699 1 0 -hannibal%1:15:00:: 09106614 2 0 -hannibal%1:18:00:: 11028196 1 0 -hannover%1:15:00:: 08773679 1 0 -hannukah%1:28:00:: 15199033 1 0 -hanoi%1:15:00:: 09164095 1 0 -hanover%1:14:00:: 08154960 2 0 -hanover%1:15:00:: 08773679 1 0 -hanoverian%1:18:00:: 10159852 1 0 -hanoverian%1:18:01:: 09704368 2 0 -hanoverian%3:01:00:: 03071838 1 0 -hanoverian_line%1:14:00:: 08154960 1 0 -hans_adolf_krebs%1:18:00:: 11110617 1 0 -hans_albrecht_bethe%1:18:00:: 10850273 1 0 -hans_arp%1:18:00:: 10824146 1 0 -hans_bethe%1:18:00:: 10850273 1 0 -hans_c._j._gram%1:18:00:: 11010936 1 0 -hans_christian_andersen%1:18:00:: 10817102 1 0 -hans_christian_oersted%1:18:00:: 11212426 1 0 -hans_conrad_julius_reiter%1:18:00:: 11257697 1 0 -hans_eysenck%1:18:00:: 10964261 1 0 -hans_fischer%1:18:00:: 10971852 1 0 -hans_geiger%1:18:00:: 10993507 1 0 -hans_holbein%1:18:00:: 11056060 2 0 -hans_holbein%1:18:01:: 11056195 1 0 -hans_jurgen_eysenck%1:18:00:: 10964261 1 0 -hans_zinsser%1:18:00:: 11407302 1 0 -hansard%1:10:00:: 06508579 1 0 -hanseatic_league%1:14:00:: 08304135 1 0 -hansen's_disease%1:26:00:: 14136187 1 0 -hansom%1:06:00:: 03492087 1 0 -hansom_cab%1:06:00:: 03492087 1 0 -hanukah%1:28:00:: 15199033 1 0 -hanukkah%1:28:00:: 15199033 1 1 -hanuman%1:05:00:: 02488415 2 0 -hanuman%1:18:00:: 09526367 1 0 -hao%1:23:00:: 13674994 1 0 -haoma%1:20:00:: 13237988 1 0 -hap%1:11:00:: 07314277 1 0 -hap%2:30:00:: 00339934 1 0 -hapax_legomenon%1:10:00:: 06294584 1 0 -haphazard%4:02:00:: 00353178 1 0 -haphazard%5:00:00:careless:00 00312519 2 0 -haphazard%5:00:00:random:00 01924803 1 0 -haphazardly%4:02:00:: 00070765 1 1 -haphazardly%4:02:01:: 00353178 2 0 -haphazardness%1:07:00:: 04771332 1 0 -haphtarah%1:10:00:: 06453119 1 0 -haphtorah%1:10:00:: 06453119 1 0 -hapless%5:00:00:unfortunate:00 01050890 1 1 -haploid%1:05:00:: 01320314 1 0 -haploid%3:00:00:: 01147433 1 0 -haploidic%3:00:00:: 01147433 1 0 -haploidy%1:26:00:: 14570761 1 0 -haplopappus%1:20:00:: 11975853 1 0 -haplopappus_acaulis%1:20:00:: 12019375 1 0 -haplopappus_phyllocephalus%1:20:00:: 11976314 1 0 -haplopappus_spinulosus%1:20:00:: 11976511 1 0 -haplosporidia%1:05:00:: 01426466 1 0 -haplosporidian%1:05:00:: 01426625 1 0 -haplotype%1:08:00:: 05439582 1 0 -haply%4:02:00:: 00353485 1 0 -happen%2:30:00:: 00339934 1 149 -happen%2:30:01:: 00344174 4 9 -happen%2:30:02:: 00344643 2 20 -happen%2:40:12:: 02248465 5 0 -happen%2:41:00:: 02593912 3 17 -happen_upon%2:40:00:: 02286687 1 1 -happening%1:11:00:: 07283608 1 2 -happenstance%1:11:00:: 07316999 1 0 -happily%4:02:00:: 00042484 2 0 -happily%4:02:01:: 00050297 1 5 -happiness%1:12:00:: 07526757 2 2 -happiness%1:26:00:: 13987423 1 4 -happy%3:00:00:: 01148283 1 37 -happy%5:00:00:felicitous:00 01000442 4 0 -happy%5:00:00:fortunate:00 01048406 2 2 -happy%5:00:00:willing:00 02565583 3 0 -happy-go-lucky%5:00:00:irresponsible:00 01998260 1 0 -happy_chance%1:11:00:: 07316856 1 0 -happy_event%1:11:00:: 07320894 1 0 -happy_hour%1:28:00:: 15229019 1 0 -hapsburg%1:14:00:: 08155302 1 0 -haptic%3:01:00:: 02869097 1 0 -haptic_sensation%1:09:00:: 05723210 1 0 -haptically%4:02:00:: 00198403 1 0 -haptoglobin%1:27:00:: 14734625 1 0 -hara-kiri%1:04:00:: 00223362 1 0 -harakat_al-jihad_al-islami_al-filastini%1:14:00:: 08037118 1 0 -harakat_ul-jihad-i-islami%1:14:00:: 08022666 1 0 -harakiri%1:04:00:: 00223362 1 0 -harangue%1:10:00:: 07242912 1 1 -harangue%2:32:00:: 00990249 1 4 -haranguer%1:18:00:: 10159714 1 0 -harare%1:15:00:: 09167505 1 0 -harass%2:33:00:: 01120759 2 0 -harass%2:37:00:: 01789514 1 0 -harassed%5:00:00:troubled:00 02455845 1 2 -harasser%1:18:00:: 10160012 2 0 -harasser%1:18:01:: 10161178 1 0 -harassing_fire%1:04:00:: 00991336 1 0 -harassment%1:04:00:: 00419644 2 0 -harassment%1:12:00:: 07519040 1 0 -harbinger%1:10:00:: 06802571 1 0 -harbinger%2:32:00:: 00974173 1 0 -harbor%1:06:00:: 03492250 2 0 -harbor%1:15:00:: 08639058 1 8 -harbor%2:37:00:: 01773130 1 4 -harbor%2:39:00:: 02148604 4 1 -harbor%2:40:00:: 02350065 3 1 -harbor%2:42:00:: 02656189 2 1 -harbor_patrol%1:14:00:: 08329010 1 0 -harbor_porpoise%1:05:00:: 02070624 1 0 -harbor_seal%1:05:00:: 02079851 1 0 -harborage%1:15:00:: 08644045 1 0 -harbour%1:06:00:: 03492250 2 0 -harbour%1:15:00:: 08639058 1 0 -harbour%2:37:00:: 01773130 4 0 -harbour%2:39:00:: 02148604 3 0 -harbour%2:40:00:: 02350065 2 0 -harbour%2:42:00:: 02656189 1 0 -harbourage%1:15:00:: 08644045 1 0 -hard%3:00:00:: 02286294 6 0 -hard%3:00:01:: 01150915 3 15 -hard%3:00:02:: 01155354 2 20 -hard%3:00:03:: 01156505 8 0 -hard%3:00:05:: 01157762 7 0 -hard%3:00:06:: 00744916 1 37 -hard%4:02:00:: 00091332 1 12 -hard%4:02:01:: 00091534 10 0 -hard%4:02:03:: 00091678 5 1 -hard%4:02:04:: 00091778 4 1 -hard%4:02:05:: 00091964 2 3 -hard%4:02:06:: 00176518 6 0 -hard%4:02:07:: 00092047 3 1 -hard%4:02:08:: 00092156 9 0 -hard%4:02:09:: 00092259 8 0 -hard%4:02:10:: 00092450 7 0 -hard%5:00:00:alcoholic:00 01158974 10 0 -hard%5:00:00:bad:00 01127302 11 0 -hard%5:00:00:indulgent:00 01299173 9 0 -hard%5:00:00:stale:00 01069715 12 0 -hard%5:00:00:strong:00 02322512 4 5 -hard%5:00:01:effortful:00 00836544 5 3 -hard-and-fast%5:00:00:invariable:00 02506267 1 0 -hard-baked%5:00:00:cooked:00 00617510 1 0 -hard-bitten%5:00:00:tough:03 02448623 1 0 -hard-boiled%5:00:00:cooked:00 00617583 3 0 -hard-boiled%5:00:00:hard:02 01155815 2 0 -hard-boiled%5:00:00:tough:03 02448623 1 2 -hard-boiled_egg%1:13:00:: 07841639 1 0 -hard-cooked_egg%1:13:00:: 07841639 1 0 -hard-core%5:00:00:explicit:00 00941375 3 0 -hard-core%5:00:00:inflexible:02 01025610 1 0 -hard-core%5:00:00:loyal:00 00962025 2 0 -hard-fought%5:00:00:difficult:00 00747471 1 1 -hard-hitting%5:00:00:aggressive:00 00083296 2 0 -hard-hitting%5:00:00:effective:00 00834959 1 0 -hard-line%5:00:00:uncompromising:00 01026150 1 0 -hard-nosed%5:00:00:realistic:00 01940651 1 0 -hard-of-hearing%5:00:00:deaf:00 00682419 1 0 -hard-on%1:26:00:: 14038185 1 0 -hard-pressed%5:00:00:troubled:00 02457558 1 1 -hard-shell_clam%1:05:00:: 01958038 2 0 -hard-shell_clam%1:13:00:: 07786856 1 0 -hard-shell_crab%1:05:00:: 01978010 1 0 -hard-shelled%5:00:00:shelled:00 02596626 1 0 -hard-skinned_puffball%1:20:00:: 12969131 1 0 -hard-to-please%5:00:00:demanding:01 00710741 1 0 -hard_beech%1:20:00:: 12267534 1 0 -hard_candy%1:13:00:: 07598734 1 0 -hard_cash%1:21:00:: 13386614 1 0 -hard_cheese%1:26:00:: 14476205 1 0 -hard_cider%1:13:00:: 07921615 1 0 -hard_clam%1:05:00:: 01958038 1 0 -hard_coal%1:27:00:: 14814921 1 0 -hard_copy%1:10:00:: 06391566 1 0 -hard_core%1:14:00:: 08406361 1 0 -hard_currency%1:21:00:: 13386614 2 0 -hard_currency%1:21:01:: 13386882 1 0 -hard_disc%1:06:00:: 03492542 1 0 -hard_disk%1:06:00:: 03492542 1 0 -hard_drink%1:13:00:: 07901587 1 0 -hard_drive%1:06:00:: 03209666 1 0 -hard_drug%1:06:00:: 03492717 1 0 -hard_fern%1:20:00:: 13185134 1 0 -hard_hat%1:06:00:: 03492922 2 0 -hard_hat%1:18:00:: 09959527 1 0 -hard_knocks%1:26:00:: 14475661 1 0 -hard_lead%1:27:00:: 14905197 1 0 -hard_lead%1:27:01:: 14905076 2 0 -hard_line%1:09:00:: 06196442 1 0 -hard_liquor%1:13:00:: 07901587 1 0 -hard_news%1:10:00:: 06684052 1 0 -hard_palate%1:08:00:: 05309591 1 0 -hard_put%5:00:00:troubled:00 02457558 1 1 -hard_right%1:14:00:: 08417099 1 0 -hard_roe%1:13:00:: 07799278 1 0 -hard_roll%1:13:00:: 07691758 1 0 -hard_rubber%1:27:00:: 15007534 1 0 -hard_rush%1:20:00:: 11744251 1 0 -hard_sauce%1:13:00:: 07830690 1 0 -hard_sell%1:04:00:: 01101571 1 0 -hard_shoulder%1:06:00:: 03493079 1 0 -hard_solder%1:27:00:: 14718483 1 0 -hard_steel%1:27:00:: 14905333 1 0 -hard_surface%2:35:00:: 01267611 1 0 -hard_tick%1:05:00:: 01776705 1 0 -hard_time%1:26:00:: 14409880 1 1 -hard_time%1:28:00:: 15224978 2 0 -hard_times%1:28:00:: 15123512 1 1 -hard_to_please%5:00:00:demanding:01 00710741 1 0 -hard_up%5:00:00:poor:00 02023661 1 0 -hard_water%1:27:00:: 14905422 1 0 -hard_wheat%1:20:00:: 12142450 1 0 -hard_worker%1:18:00:: 10609556 1 1 -hardback%1:06:00:: 03492391 1 0 -hardback%5:00:00:backed:00 00200258 1 0 -hardbacked%5:00:00:backed:00 00200258 1 0 -hardbake%1:13:00:: 07598622 1 1 -hardball%1:04:00:: 00474769 2 0 -hardball%1:09:00:: 06195418 1 0 -hardboard%1:27:00:: 15102455 1 0 -hardbound%5:00:00:backed:00 00200258 1 0 -hardcore%5:00:00:explicit:00 00941375 2 0 -hardcore%5:00:00:loyal:00 00962025 1 0 -hardcover%1:06:00:: 03492391 1 0 -hardcover%5:00:00:backed:00 00200258 1 0 -harden%2:30:00:: 00443116 1 4 -harden%2:30:01:: 00443384 2 0 -harden%2:30:02:: 00295120 4 0 -harden%2:30:03:: 00272910 5 0 -harden%2:30:04:: 00302875 3 0 -hardenbergia%1:20:00:: 12533992 1 0 -hardenbergia_comnptoniana%1:20:00:: 12534208 1 0 -hardened%3:00:04:: 01521542 2 0 -hardened%3:00:06:: 01459158 3 0 -hardened%5:00:00:tough:02 02447779 4 0 -hardened%5:00:02:hard:01 01152091 5 0 -hardened%5:00:05:hard:02 01155815 1 1 -hardening%1:04:00:: 00402789 3 0 -hardening%1:22:00:: 13491060 2 0 -hardening%1:26:00:: 14364432 1 0 -hardening_of_the_arteries%1:26:00:: 14108324 1 0 -hardfisted%5:00:00:stingy:00 01113505 1 0 -hardheaded%5:00:00:realistic:00 01940651 2 0 -hardheaded%5:00:00:stubborn:00 02328297 1 0 -hardheads%1:20:00:: 11948656 1 0 -hardhearted%3:00:00:: 01158020 1 0 -hardhearted%5:00:00:uncompassionate:00 00507292 2 0 -hardheartedness%1:12:00:: 07506149 1 0 -hardihood%1:07:00:: 04858785 1 0 -hardiness%1:07:00:: 05031012 1 0 -hardiness%1:07:01:: 04858785 2 0 -harding%1:18:00:: 11028446 1 0 -harding_grass%1:20:00:: 12130160 1 0 -hardinggrass%1:20:00:: 12130160 1 0 -hardline%5:00:00:uncompromising:00 01026150 1 0 -hardliner%1:18:00:: 10160188 1 0 -hardly%4:02:00:: 00002621 1 37 -hardly%4:02:02:: 00003093 2 2 -hardly_a%5:00:00:few:00 01553494 1 3 -hardness%1:07:00:: 04937587 2 0 -hardness%1:07:01:: 04937848 1 0 -hardness%1:07:02:: 04710588 4 0 -hardness%1:07:03:: 04844625 3 0 -hardness%1:07:04:: 04639732 5 0 -hardpan%1:27:00:: 14845578 1 0 -hardscrabble%5:00:00:meager:00 00107250 1 0 -hardship%1:07:00:: 04710127 2 1 -hardship%1:11:00:: 07336763 3 0 -hardship%1:26:01:: 14475661 1 1 -hardstem_bulrush%1:20:00:: 12153033 1 0 -hardstemmed_bulrush%1:20:00:: 12153033 1 0 -hardtack%1:13:00:: 07694839 1 3 -hardtack%1:27:00:: 15100570 2 1 -hardtop%1:06:00:: 03493219 1 0 -hardware%1:06:01:: 03493333 3 0 -hardware%1:06:02:: 03493664 1 3 -hardware%1:06:03:: 03493792 2 0 -hardware_error%1:11:00:: 07299790 1 0 -hardware_store%1:06:00:: 03493911 1 2 -hardwareman%1:18:00:: 10216690 1 0 -hardwood%1:27:00:: 15100112 1 0 -hardworking%5:00:00:diligent:00 00754682 1 1 -hardy%1:18:00:: 11028675 2 0 -hardy%1:18:01:: 11028780 1 0 -hardy%5:00:00:bold:00 00250119 3 0 -hardy%5:00:00:robust:00 02038994 1 1 -hardy%5:00:01:robust:00 02039304 2 0 -hare%1:05:00:: 02326432 1 1 -hare%1:13:00:: 07666521 2 0 -hare%2:38:00:: 02085004 1 0 -hare's-foot_bristle_fern%1:20:00:: 12952469 1 0 -hare's-foot_fern%1:20:00:: 13188268 1 0 -hare_and_hounds%1:04:00:: 00460078 1 0 -hare_krishna%1:10:00:: 07035061 3 0 -hare_krishna%1:14:00:: 08097766 2 0 -hare_krishna%1:18:00:: 09685233 1 0 -hare_wallaby%1:05:00:: 01878335 1 0 -harebell%1:20:01:: 12037328 2 0 -harebell%1:20:02:: 12459275 1 0 -harebrained%5:00:00:foolish:00 02572038 1 0 -haredi%1:14:00:: 08097531 1 0 -hareem%1:06:00:: 03494105 1 0 -harefoot%1:18:00:: 11029454 1 0 -harelip%1:26:00:: 14214355 1 0 -harem%1:06:00:: 03494105 1 1 -hargeisa%1:15:00:: 08999049 1 0 -hargreaves%1:18:00:: 11029005 1 0 -haricot%1:13:02:: 07727741 2 0 -haricot%1:20:00:: 12557438 1 0 -haricot_vert%1:13:00:: 07728585 1 0 -haricots_verts%1:13:00:: 07728585 1 0 -harijan%1:18:00:: 10739881 1 0 -harikari%1:04:00:: 00223362 1 0 -hark%2:39:00:: 02189588 1 0 -hark_back%2:32:00:: 00959524 1 0 -harkat-ul-jihad-e-islami%1:14:00:: 08022666 1 0 -harkat-ul-mujahidin%1:14:00:: 08022972 1 0 -harkat_ul-ansar%1:14:00:: 08022972 1 0 -harkat_ul-mujahedeen%1:14:00:: 08022972 1 0 -harken%2:39:00:: 02189588 1 0 -harlan_f._stone%1:18:00:: 11319810 1 0 -harlan_fisk_stone%1:18:00:: 11319810 1 0 -harlan_fiske_stone%1:18:00:: 11319244 1 0 -harlan_stone%1:18:00:: 11319810 1 0 -harlean_carpenter%1:18:00:: 11029132 1 0 -harlem%1:15:00:: 09121334 1 2 -harlem_renaissance%1:28:00:: 15261306 1 0 -harlem_river%1:15:00:: 09123538 1 0 -harlequin%1:18:00:: 10160280 1 0 -harlequin%2:30:00:: 00510576 1 0 -harlequin-snake%1:05:00:: 01745484 1 0 -harlequin_opal%1:27:00:: 14905607 1 0 -harlequinade%1:04:00:: 00513401 1 0 -harley_granville-barker%1:18:00:: 11011764 1 0 -harley_street%1:15:00:: 08581122 1 0 -harlot%1:18:00:: 10485440 1 0 -harlotry%1:04:00:: 00748155 1 0 -harlow%1:18:00:: 11029132 1 0 -harlow_shapley%1:18:00:: 11295828 1 0 -harm%1:04:00:: 00403092 3 1 -harm%1:11:01:: 07420770 2 2 -harm%1:26:00:: 14285662 1 5 -harm%2:29:00:: 00102586 1 3 -harmattan%1:19:00:: 11438756 1 0 -harmful%3:00:00:: 01160031 1 0 -harmfully%4:02:00:: 00309875 1 0 -harmfulness%1:07:00:: 05166072 1 0 -harmfulness%1:07:01:: 04790774 2 0 -harmless%3:00:00:: 01159655 1 1 -harmlessly%4:02:00:: 00310036 1 1 -harmonic%1:07:00:: 04988078 2 0 -harmonic%1:09:00:: 05719804 1 0 -harmonic%3:01:00:: 02737772 1 1 -harmonic%3:01:01:: 02738091 3 0 -harmonic%3:01:02:: 02738346 2 0 -harmonic%5:00:01:harmonious:00 01163320 5 0 -harmonic%5:00:02:harmonious:00 01163589 4 0 -harmonic_analysis%1:09:00:: 06014278 1 0 -harmonic_law%1:09:00:: 05880187 1 0 -harmonic_mean%1:09:00:: 06024576 1 0 -harmonic_motion%1:11:00:: 07349880 1 0 -harmonic_progression%1:14:00:: 08461424 1 0 -harmonica%1:06:00:: 03494278 1 0 -harmonical%5:00:00:harmonious:00 01163320 1 0 -harmonically%4:02:00:: 00134727 1 0 -harmonics%1:09:00:: 06111253 1 0 -harmonious%3:00:00:: 01163083 1 1 -harmonious%5:00:00:balanced:00 00894029 2 1 -harmonious%5:00:00:compatible:01 00508036 4 0 -harmonious%5:00:00:congruous:00 00562308 3 0 -harmoniously%4:02:00:: 00353590 1 0 -harmoniousness%1:07:00:: 04713118 2 0 -harmoniousness%1:07:01:: 04984351 1 0 -harmonisation%1:04:00:: 01253778 2 0 -harmonisation%1:10:00:: 07027458 1 0 -harmonise%2:30:01:: 00482180 6 0 -harmonise%2:30:02:: 00482473 5 0 -harmonise%2:30:03:: 00483181 4 0 -harmonise%2:36:00:: 01706889 3 0 -harmonise%2:36:01:: 01707306 2 0 -harmonise%2:42:00:: 02700104 1 0 -harmonised%5:00:00:harmonious:00 01163320 1 0 -harmoniser%1:18:00:: 10160412 2 0 -harmoniser%1:18:01:: 10160624 1 0 -harmonium%1:06:00:: 03494537 1 0 -harmonizable%5:00:00:reconcilable:00 01986654 1 0 -harmonization%1:04:00:: 01253778 2 0 -harmonization%1:10:00:: 07027458 1 0 -harmonize%2:30:01:: 00482180 6 0 -harmonize%2:30:02:: 00482473 5 0 -harmonize%2:30:03:: 00483181 4 0 -harmonize%2:36:00:: 01706889 3 0 -harmonize%2:36:01:: 01707306 2 0 -harmonize%2:42:00:: 02700104 1 0 -harmonized%5:00:00:harmonious:00 01163320 1 0 -harmonizer%1:18:00:: 10160412 2 0 -harmonizer%1:18:01:: 10160624 1 0 -harmony%1:07:00:: 04984180 5 0 -harmony%1:07:01:: 04713118 1 6 -harmony%1:10:00:: 07180183 4 0 -harmony%1:10:01:: 07027180 2 3 -harmony%1:26:00:: 13969243 3 1 -harmsworth%1:18:00:: 11029298 1 0 -harness%1:06:00:: 03494706 2 1 -harness%1:06:01:: 03495039 1 2 -harness%2:30:00:: 00234857 4 0 -harness%2:34:00:: 01163495 2 1 -harness%2:35:00:: 01491697 1 2 -harness%2:41:00:: 02442737 3 0 -harness_horse%1:05:00:: 02386014 1 0 -harness_race%1:11:00:: 07461956 1 0 -harness_racing%1:11:00:: 07461956 1 0 -harnessed%5:00:00:controlled:00 00599292 1 0 -harnessed_antelope%1:05:00:: 02424695 1 0 -harold_clayton_lloyd%1:18:00:: 11136214 1 0 -harold_clayton_urey%1:18:00:: 11357514 1 0 -harold_harefoot%1:18:00:: 11029454 1 0 -harold_hart_crane%1:18:00:: 10914331 1 0 -harold_hirschsprung%1:18:00:: 11052186 1 0 -harold_i%1:18:00:: 11029454 1 0 -harold_ii%1:18:00:: 11029637 1 0 -harold_kroto%1:18:00:: 11111335 1 0 -harold_lloyd%1:18:00:: 11136214 1 0 -harold_nicolson%1:18:00:: 11206544 1 0 -harold_pinter%1:18:00:: 11235619 1 0 -harold_urey%1:18:00:: 11357514 1 0 -harold_w._kroto%1:18:00:: 11111335 1 0 -harp%1:06:00:: 03495258 1 1 -harp%1:06:01:: 03495570 2 0 -harp%1:06:02:: 03494278 3 0 -harp%2:32:00:: 00959367 1 1 -harp%2:36:00:: 01732713 2 0 -harp-shaped%5:00:00:formed:00 02147567 1 0 -harp_seal%1:05:00:: 02080146 1 0 -harper%1:18:00:: 10160770 1 0 -harper's_ferry%1:15:00:: 09156395 1 0 -harpers_ferry%1:15:00:: 09156395 1 0 -harpia%1:05:00:: 01613909 1 0 -harpia_harpyja%1:05:00:: 01614038 1 0 -harpist%1:18:00:: 10160770 1 0 -harpo%1:18:00:: 11161045 1 0 -harpoon%1:06:00:: 03495671 1 0 -harpoon%2:33:00:: 01140515 1 0 -harpoon_gun%1:06:00:: 03495941 1 0 -harpoon_line%1:06:00:: 03496042 1 0 -harpoon_log%1:06:00:: 03496183 1 0 -harpooneer%1:18:00:: 10160913 1 0 -harpooner%1:18:00:: 10160913 1 0 -harpsichord%1:06:00:: 03496296 1 0 -harpsichordist%1:18:00:: 10161047 1 0 -harpulla%1:20:00:: 12743976 1 0 -harpullia%1:20:00:: 12743823 1 0 -harpullia_cupanioides%1:20:00:: 12743976 1 0 -harpullia_pendula%1:20:00:: 12744142 1 0 -harpy%1:05:01:: 01614038 4 0 -harpy%1:05:02:: 02140491 3 0 -harpy%1:18:00:: 10758337 1 0 -harpy%1:18:01:: 09496099 2 0 -harpy_bat%1:05:00:: 02140491 1 0 -harpy_eagle%1:05:00:: 01614038 1 1 -harquebus%1:06:00:: 02742070 1 0 -harridan%1:18:00:: 10161273 1 0 -harried%5:00:00:troubled:00 02455845 1 0 -harrier%1:05:00:: 01609751 3 0 -harrier%1:05:01:: 02090129 2 0 -harrier%1:18:00:: 10160012 1 0 -harrier_eagle%1:05:00:: 01610552 1 0 -harriet_beecher_stowe%1:18:00:: 11320405 1 0 -harriet_elizabeth_beecher_stowe%1:18:00:: 11320405 1 0 -harriet_tubman%1:18:00:: 11350959 1 0 -harriet_wilson%1:18:00:: 11392368 1 0 -harriman%1:18:00:: 11029888 2 0 -harriman%1:18:01:: 11030025 1 0 -harris%1:18:00:: 11030260 6 0 -harris%1:18:01:: 11030395 5 0 -harris%1:18:02:: 11030679 4 0 -harris%1:18:03:: 11030855 3 0 -harris%1:18:04:: 11031016 2 0 -harris%1:18:05:: 11031257 1 0 -harris_tweed%1:06:00:: 03496486 1 0 -harrisburg%1:15:00:: 09135733 1 0 -harrisia%1:20:00:: 11847615 1 0 -harrison%1:18:01:: 11031420 4 0 -harrison%1:18:02:: 11031668 3 0 -harrison%1:18:03:: 11031842 2 0 -harrison%1:18:04:: 11031995 1 0 -harrod%1:18:00:: 11032158 2 0 -harrod%1:18:01:: 11032359 1 0 -harrow%1:06:00:: 03496612 1 0 -harrow%2:36:00:: 01742415 1 2 -harrowing%5:00:00:painful:00 01711724 1 0 -harry%2:30:00:: 00389083 2 0 -harry%2:37:00:: 01789514 1 1 -harry_bridges%1:18:00:: 10864064 1 0 -harry_f._klinefelter%1:18:00:: 11107901 1 0 -harry_fitch_kleinfelter%1:18:00:: 11107901 1 0 -harry_hotspur%1:18:00:: 11229499 1 0 -harry_houdini%1:18:00:: 11061317 1 0 -harry_lauder%1:18:00:: 11118886 1 0 -harry_lillis_crosby%1:18:00:: 10916731 1 0 -harry_s_truman%1:18:00:: 11349739 1 0 -harry_sinclair_lewis%1:18:00:: 11130474 1 0 -harry_stack_sullivan%1:18:00:: 11324785 1 0 -harry_truman%1:18:00:: 11349739 1 0 -harsh%3:00:00:: 02230990 3 0 -harsh%5:00:00:disagreeable:00 00090219 6 0 -harsh%5:00:00:heavy:03 01190916 5 0 -harsh%5:00:00:unkind:00 01374183 4 0 -harsh%5:00:01:unpleasant:00 01803583 1 3 -harsh%5:00:03:unpleasant:00 01803792 2 2 -harsh-voiced%5:00:00:loud:00 01453719 1 0 -harsh_on%2:32:00:: 01072133 1 0 -harshen%2:30:00:: 00545422 1 1 -harshly%4:02:00:: 00350521 2 2 -harshly%4:02:02:: 00353796 1 3 -harshness%1:07:01:: 04988666 2 0 -harshness%1:07:02:: 04639732 4 0 -harshness%1:07:03:: 04949066 1 1 -harshness%1:07:04:: 04845475 3 0 -hart%1:05:00:: 02431337 3 0 -hart%1:18:00:: 11032541 2 0 -hart%1:18:01:: 11032700 1 0 -hart's-tongue%1:20:00:: 13183056 2 0 -hart's-tongue%1:20:02:: 13198482 1 0 -hart's-tongue_fern%1:20:01:: 13183056 2 0 -hart's-tongue_fern%1:20:02:: 13198482 1 0 -hart's-tongue_fern%1:20:03:: 13174823 3 0 -hart_crane%1:18:00:: 10914331 1 0 -harte%1:18:00:: 11032840 1 0 -hartebeest%1:05:00:: 02422106 1 0 -hartford%1:15:00:: 09069190 1 0 -hartford_fern%1:20:00:: 12956367 1 0 -hartley%1:18:00:: 11033003 1 0 -harum-scarum%1:18:00:: 09991530 1 0 -harum-scarum%4:02:00:: 00163991 1 0 -harum-scarum%5:00:00:irresponsible:00 01998260 1 0 -harvard%1:06:00:: 03496749 1 2 -harvard%1:18:00:: 11033159 2 0 -harvard_university%1:06:00:: 03496749 1 1 -harvery_williams_cushing%1:18:00:: 10918834 1 0 -harvest%1:04:00:: 00921790 4 0 -harvest%1:04:01:: 01015310 3 0 -harvest%1:19:00:: 11414257 2 0 -harvest%1:20:00:: 13085864 1 2 -harvest%2:30:00:: 00175804 2 0 -harvest%2:35:00:: 01320009 1 3 -harvest-lice%1:20:00:: 12623077 1 0 -harvest_fly%1:05:00:: 02257003 1 0 -harvest_home%1:04:00:: 01015310 1 0 -harvest_mite%1:05:00:: 01781071 1 0 -harvest_moon%1:28:00:: 15207770 1 0 -harvest_mouse%1:05:01:: 02332447 2 0 -harvest_mouse%1:05:02:: 02336275 1 0 -harvest_time%1:04:00:: 00921790 1 0 -harvester%1:06:00:: 03496892 2 0 -harvester%1:18:00:: 10161363 1 0 -harvestfish%1:05:00:: 02633977 1 0 -harvesting%1:04:00:: 01015310 1 0 -harvestman%1:05:00:: 01770081 1 0 -harvey%1:18:00:: 11033358 1 0 -harvey_cushing%1:18:00:: 10918834 1 0 -harvey_wallbanger%1:13:00:: 07915366 1 0 -has-been%1:18:00:: 10161521 1 0 -haschisch%1:06:00:: 03497182 1 0 -hasdrubal%1:18:00:: 11033631 1 0 -hasek%1:18:00:: 11033870 1 0 -hash%1:06:00:: 03497182 2 0 -hash%1:13:00:: 07869391 1 0 -hash%2:35:00:: 01257399 1 0 -hash_head%1:18:00:: 10161622 1 0 -hash_house%1:06:00:: 03497100 1 0 -hash_mark%1:10:00:: 06884954 1 1 -hash_out%2:32:00:: 00813978 1 0 -hash_over%2:32:00:: 01009097 1 0 -hasheesh%1:06:00:: 03497182 1 0 -hashemite_kingdom_of_jordan%1:15:00:: 08927186 1 0 -hashimoto's_disease%1:26:00:: 14220998 1 0 -hashish%1:06:00:: 03497182 1 0 -hashmark%1:10:00:: 06884954 1 0 -hasid%1:18:00:: 10161695 1 0 -hasidic%3:01:00:: 02738464 1 0 -hasidim%1:14:00:: 08094866 1 0 -hasidism%1:09:00:: 06234257 2 0 -hasidism%1:14:00:: 08094866 1 0 -haslet%1:13:00:: 07671953 1 0 -hasp%1:06:00:: 03497352 1 1 -hasp%2:35:00:: 01348599 1 0 -hassam%1:18:00:: 11033992 1 0 -hassel%1:18:00:: 11034167 1 0 -hassid%1:18:00:: 10161695 1 0 -hassidic%3:01:00:: 02738464 1 0 -hassidim%1:14:00:: 08094866 1 0 -hassidism%1:09:00:: 06234257 1 0 -hassium%1:27:00:: 14639795 1 0 -hassle%1:04:00:: 01172441 2 0 -hassle%1:11:00:: 07372565 1 0 -hassle%2:37:00:: 01789514 1 0 -hassock%1:06:00:: 03497531 2 0 -hassock%1:06:01:: 03858418 1 0 -hastate%5:00:00:simple:01 02168400 1 0 -hastate_leaf%1:20:00:: 13158258 1 0 -haste%1:04:00:: 00555648 2 2 -haste%1:07:00:: 05060189 1 12 -haste%1:26:00:: 14451189 3 1 -hasten%2:30:00:: 00459498 1 7 -hasten%2:36:00:: 01644522 4 1 -hasten%2:38:00:: 02058994 2 6 -hasten%2:41:00:: 02548893 3 2 -hastily%4:02:00:: 00206479 1 8 -hastinapura%1:10:00:: 06463559 1 0 -hastiness%1:07:00:: 04662858 2 0 -hastiness%1:07:01:: 05060189 1 0 -hastings%1:04:00:: 01280514 3 0 -hastings%1:15:00:: 08883476 2 0 -hastings%1:18:00:: 11034307 1 0 -hasty%5:00:00:hurried:00 01270704 1 1 -hasty%5:00:02:hurried:00 01270868 2 0 -hasty_defence%1:04:00:: 00961177 1 0 -hasty_defense%1:04:00:: 00961177 1 0 -hasty_pudding%1:13:01:: 07703599 2 0 -hasty_pudding%1:13:02:: 07703889 1 0 -hat%1:04:00:: 00721141 2 0 -hat%1:06:00:: 03497657 1 30 -hat%2:29:00:: 00047172 1 1 -hat%2:40:00:: 02363128 2 0 -hat_shop%1:06:00:: 03766508 1 0 -hat_trick%1:04:00:: 00190579 1 0 -hatband%1:06:00:: 03498316 1 0 -hatbox%1:06:00:: 03498441 1 0 -hatch%1:06:00:: 03498536 3 0 -hatch%1:07:00:: 04681797 2 0 -hatch%1:22:00:: 13491464 1 0 -hatch%2:29:00:: 00060185 5 0 -hatch%2:29:01:: 00063095 1 2 -hatch%2:35:04:: 01276593 4 0 -hatch%2:36:00:: 01634142 2 1 -hatch%2:36:03:: 01682234 3 0 -hatchback%1:06:00:: 03498662 2 0 -hatchback%1:06:01:: 03498781 1 0 -hatchback_door%1:06:00:: 03498662 1 0 -hatcheck_girl%1:18:00:: 09913240 1 0 -hatched%5:00:00:born:00 01733588 1 0 -hatched%5:00:00:shaded:02 00277749 2 0 -hatchel%1:06:00:: 03498866 1 0 -hatchel%2:35:00:: 01596972 1 0 -hatchery%1:15:00:: 08581299 1 0 -hatchet%1:06:00:: 03498962 2 0 -hatchet%1:06:01:: 04449966 1 0 -hatchet_job%1:10:00:: 06719579 1 0 -hatchet_man%1:18:00:: 10161867 2 0 -hatchet_man%1:18:02:: 10162016 1 0 -hatching%1:07:00:: 04681797 2 0 -hatching%1:22:00:: 13491464 1 3 -hatchling%1:05:00:: 01318279 1 0 -hatchway%1:06:00:: 03499142 1 2 -hate%1:12:00:: 07546465 1 9 -hate%2:37:00:: 01774136 1 50 -hate_mail%1:14:00:: 08463509 1 0 -hated%5:00:00:unloved:00 01463537 1 1 -hateful%3:00:00:: 01460421 1 2 -hateful%5:00:00:nasty:00 01587787 2 2 -hatefully%4:02:00:: 00354244 1 1 -hatefulness%1:07:00:: 04781755 1 0 -hatemonger%1:18:00:: 10162104 1 0 -hater%1:18:00:: 10162194 1 1 -hatful%1:23:00:: 13767455 2 0 -hatful%1:23:02:: 13774404 1 0 -hatha_yoga%1:04:00:: 00631168 1 0 -hathaway%1:18:00:: 11034485 1 0 -hatiora%1:20:00:: 11847841 1 0 -hatiora_gaertneri%1:20:00:: 11848009 1 0 -hatless%3:00:00:: 01428838 1 2 -hatmaker%1:18:00:: 10162354 1 0 -hatpin%1:06:00:: 03499354 1 0 -hatrack%1:06:00:: 03059103 1 0 -hatred%1:12:00:: 07546465 1 18 -hatted%3:00:00:: 01428581 1 0 -hatter%1:18:00:: 10162354 1 0 -hatteras_island%1:15:00:: 09127701 1 0 -hattiesburg%1:15:00:: 09104894 1 0 -hauberk%1:06:00:: 03499468 1 0 -haughtily%4:02:00:: 00174623 1 1 -haughtiness%1:07:00:: 04887912 1 0 -haughty%5:00:00:proud:00 01891109 1 1 -haul%1:04:00:: 00115036 1 1 -haul%1:23:00:: 13755822 2 0 -haul%2:35:00:: 01452255 2 5 -haul%2:35:01:: 01454810 1 7 -haul_away%2:35:00:: 01451665 1 0 -haul_off%2:35:00:: 01451665 1 0 -haul_up%2:38:00:: 01863158 1 1 -haulage%1:04:00:: 00115036 1 0 -hauler%1:18:00:: 10162507 1 0 -haulier%1:18:00:: 10162507 1 0 -hauling%1:04:00:: 01105909 1 0 -haulm%1:20:00:: 13163649 1 0 -haunch%1:05:00:: 02463810 2 2 -haunch%1:08:01:: 05556472 1 2 -haunt%1:15:00:: 08581503 1 2 -haunt%2:37:00:: 01783214 2 3 -haunt%2:38:00:: 02004009 1 3 -haunt%2:38:02:: 01844431 3 0 -haunted%5:00:00:concerned:00 00544478 1 1 -haunted%5:00:00:inhabited:00 01311705 3 0 -haunted%5:00:00:troubled:00 02458262 2 0 -haunting%5:00:00:moving:01 01561079 2 0 -haunting%5:00:00:unforgettable:00 01040544 1 2 -hausa%1:10:00:: 06982697 2 0 -hausa%1:18:00:: 09725000 1 0 -hausen%1:05:00:: 02640857 1 0 -hausmannite%1:27:00:: 14678068 1 0 -haussa%1:10:00:: 06982697 2 0 -haussa%1:18:00:: 09725000 1 0 -haustorium%1:20:00:: 11686049 1 0 -hautbois%1:06:00:: 03838899 1 0 -hautboy%1:06:00:: 03838899 1 0 -haute-normandie%1:15:00:: 08942508 1 0 -haute_couture%1:09:00:: 05751063 1 0 -haute_cuisine%1:13:00:: 07571765 1 0 -hauteur%1:07:00:: 04887912 1 0 -havana%1:15:00:: 08750612 1 0 -havasupai%1:10:00:: 06922777 2 0 -havasupai%1:18:00:: 09656077 1 0 -have%1:18:00:: 10529231 1 0 -have%2:29:00:: 00056930 18 3 -have%2:29:02:: 00065370 12 11 -have%2:29:05:: 00065639 16 5 -have%2:30:00:: 00120796 5 64 -have%2:30:01:: 00121046 11 25 -have%2:32:00:: 00770437 13 8 -have%2:34:00:: 01156834 6 42 -have%2:35:00:: 01427127 19 2 -have%2:36:00:: 01733477 8 30 -have%2:39:06:: 02108026 3 220 -have%2:40:00:: 02203362 1 1202 -have%2:40:01:: 02205098 9 28 -have%2:40:02:: 02355596 17 3 -have%2:40:03:: 02210119 15 7 -have%2:40:04:: 02204692 4 143 -have%2:40:05:: 02236124 14 7 -have%2:41:00:: 02378453 7 31 -have%2:42:00:: 02630189 2 377 -have%2:42:12:: 02740745 10 25 -have-not%1:18:00:: 10453357 1 0 -have-to_doe_with%2:42:00:: 02676054 1 0 -have_a_ball%2:34:00:: 01191232 1 0 -have_a_bun_in_the_oven%2:29:00:: 00059019 1 0 -have_a_fit%2:37:00:: 01795428 1 0 -have_a_go%2:41:00:: 02530770 1 0 -have_a_go_at_it%2:35:00:: 01426397 1 0 -have_a_good_time%2:34:00:: 01191232 1 0 -have_a_look%2:39:00:: 02131777 1 6 -have_down%2:31:00:: 00596342 1 0 -have_got%2:40:00:: 02203362 1 16 -have_in_mind%2:31:01:: 00730052 1 8 -have_intercourse%2:35:00:: 01426397 1 0 -have_it_away%2:35:00:: 01426397 1 0 -have_it_coming%2:42:00:: 02646601 1 0 -have_it_off%2:35:00:: 01426397 1 0 -have_kittens%2:37:00:: 01795428 1 0 -have_on%2:29:00:: 00052374 1 8 -have_sex%2:35:00:: 01426397 1 0 -have_the_best%2:33:02:: 01104018 1 0 -have_words%2:32:00:: 00824767 1 0 -have_young%2:29:00:: 00058897 1 0 -havel%1:18:00:: 11034596 1 0 -havelock%1:06:00:: 03499611 1 0 -haven%1:06:00:: 03499796 1 1 -haven%1:15:00:: 08639058 2 0 -haverhill_fever%1:26:00:: 14192672 1 0 -haversack%1:06:00:: 02769748 1 4 -haversian_canal%1:08:00:: 05386139 1 0 -havoc%1:04:00:: 00554107 1 3 -haw%1:08:00:: 05314834 2 0 -haw%1:20:00:: 12626353 1 0 -haw%2:32:00:: 01061704 1 0 -haw-haw%1:06:00:: 04356423 2 0 -haw-haw%1:10:00:: 07127911 1 0 -hawai'i%1:15:00:: 09078231 1 0 -hawaii%1:15:00:: 09078231 1 9 -hawaii%1:15:01:: 09079505 2 3 -hawaii_island%1:15:00:: 09079505 1 0 -hawaii_standard_time%1:28:00:: 15133069 1 0 -hawaii_time%1:28:00:: 15133069 1 0 -hawaii_volcanoes_national_park%1:15:00:: 08605863 1 0 -hawaiian%1:10:00:: 06938493 1 2 -hawaiian%1:18:00:: 09742569 2 0 -hawaiian%3:01:00:: 02738760 1 0 -hawaiian_capital%1:15:00:: 09078784 1 0 -hawaiian_dancing%1:04:00:: 00542458 1 0 -hawaiian_guitar%1:06:00:: 03499907 1 0 -hawaiian_honeycreeper%1:05:00:: 01544704 1 0 -hawaiian_islands%1:15:00:: 09079153 1 3 -hawala%1:14:00:: 08422247 1 0 -hawfinch%1:05:00:: 01540832 1 0 -hawk%1:05:00:: 01605630 1 2 -hawk%1:06:00:: 03787164 3 0 -hawk%1:18:00:: 10162644 2 0 -hawk%2:29:01:: 00035089 3 0 -hawk%2:33:00:: 01145612 2 0 -hawk%2:40:00:: 02302817 1 2 -hawk's-beard%1:20:00:: 11959259 1 0 -hawk's-beards%1:20:00:: 11959259 1 0 -hawk-eyed%5:00:00:sighted:00 02158438 1 0 -hawk_moth%1:05:00:: 02298541 1 0 -hawk_nose%1:08:00:: 05598982 1 1 -hawk_owl%1:05:00:: 01624537 1 0 -hawkbill%1:05:00:: 01664990 1 0 -hawkbit%1:20:00:: 11988893 1 0 -hawker%1:18:00:: 10411551 1 1 -hawker%1:18:01:: 10076604 2 0 -hawkeye_state%1:15:00:: 09086173 1 0 -hawking%1:04:00:: 01116968 2 0 -hawking%1:18:00:: 11034874 1 0 -hawkins%1:18:00:: 11035017 2 0 -hawkins%1:18:01:: 11035132 1 0 -hawkish%5:00:00:unpeaceful:00 01742715 1 0 -hawkishness%1:09:00:: 06221790 1 0 -hawkmoth%1:05:00:: 02298541 1 0 -hawksbill%1:05:00:: 01664990 1 0 -hawksbill_turtle%1:05:00:: 01664990 1 0 -hawkshaw%1:18:00:: 10011785 1 0 -hawkweed%1:20:00:: 11982115 2 0 -hawkweed%1:20:02:: 12003696 1 0 -hawkyns%1:18:00:: 11035132 1 0 -haworth%1:18:00:: 11035363 1 0 -hawse%1:06:00:: 03500090 1 0 -hawsehole%1:06:00:: 03500090 1 0 -hawsepipe%1:06:00:: 03500090 1 0 -hawser%1:06:00:: 03500209 1 0 -hawser_bend%1:06:00:: 03500295 1 0 -hawthorn%1:20:00:: 12626353 1 0 -hawthorne%1:18:00:: 11035618 1 0 -hay%1:13:00:: 07802026 1 11 -hay%2:30:00:: 00585405 1 0 -hay-scented%1:20:00:: 13189428 1 0 -hay-scented_fern%1:20:00:: 13189428 1 0 -hay_bacillus%1:05:00:: 01350485 1 0 -hay_bale%1:06:00:: 03500389 1 0 -hay_conditioner%1:06:00:: 03500699 1 0 -hay_fever%1:26:00:: 14534199 1 1 -hayastan%1:15:00:: 09017526 1 0 -haycock%1:14:00:: 07963330 1 0 -haydn%1:10:00:: 07278582 2 0 -haydn%1:18:00:: 11035780 1 0 -hayek%1:18:00:: 11035957 1 0 -hayes%1:18:00:: 11036140 2 0 -hayes%1:18:01:: 11036405 1 0 -hayfield%1:15:00:: 08570634 1 1 -hayfork%1:06:00:: 03500457 1 0 -haying%1:04:00:: 00921926 2 0 -haying%1:04:01:: 01015477 1 0 -haying_time%1:04:00:: 00921926 1 1 -hayloft%1:06:00:: 03500557 1 0 -haym_salomon%1:18:00:: 11279433 1 0 -haymaker%1:04:00:: 00135637 2 0 -haymaker%1:06:00:: 03500699 1 0 -haymaking%1:04:00:: 00622957 2 0 -haymaking%1:04:01:: 00623052 1 0 -haymow%1:06:00:: 03500557 2 0 -haymow%1:23:00:: 13775939 1 0 -hayrack%1:06:00:: 03500838 2 0 -hayrack%1:06:01:: 03500971 1 0 -hayrick%1:14:00:: 07963208 1 0 -hayrig%1:06:00:: 03500838 1 0 -hays%1:15:00:: 09088301 3 0 -hays%1:18:00:: 11036521 2 0 -hays%1:18:01:: 11036668 1 0 -hayseed%1:18:00:: 10804102 1 0 -haystack%1:14:00:: 07963208 1 1 -hayti%1:15:00:: 08751317 1 0 -haywire%1:06:00:: 03501068 1 0 -haywire%5:00:00:insane:00 02074929 1 0 -haywire%5:00:00:malfunctioning:00 01092371 2 0 -haywood%1:18:00:: 11036911 1 0 -hazan%1:18:00:: 09891864 1 0 -hazard%1:06:00:: 03501152 3 0 -hazard%1:19:00:: 11418138 2 1 -hazard%1:26:00:: 14541852 1 3 -hazard%2:32:00:: 00916909 1 1 -hazard%2:41:00:: 02544348 3 0 -hazard%2:41:01:: 02545272 2 0 -hazard_insurance%1:21:00:: 13346630 1 0 -hazardia%1:20:00:: 11976715 1 0 -hazardia_cana%1:20:00:: 11976933 1 0 -hazardous%5:00:00:dangerous:00 02059811 1 0 -hazardously%4:02:00:: 00090228 1 0 -hazardousness%1:26:00:: 14541538 1 0 -haze%1:09:00:: 05684561 2 1 -haze%1:19:00:: 11465888 1 8 -haze%2:41:00:: 02585722 2 0 -haze%2:43:00:: 02772202 1 0 -haze_over%2:39:00:: 02157731 1 0 -hazel%1:07:00:: 04972603 4 0 -hazel%1:20:01:: 12288823 3 0 -hazel%1:20:02:: 13144084 1 0 -hazel%1:20:03:: 12289115 2 0 -hazel%5:00:00:chromatic:00 00376342 1 1 -hazel-brown%5:00:00:chromatic:00 00376453 1 0 -hazel_alder%1:20:00:: 12285900 1 0 -hazel_mouse%1:05:00:: 02353172 1 0 -hazel_tree%1:20:00:: 13144084 1 0 -hazelnut%1:13:00:: 07772788 2 0 -hazelnut%1:20:00:: 12288823 1 0 -hazelnut_tree%1:20:00:: 12288823 1 0 -hazelwood%1:20:02:: 12316982 1 0 -hazily%4:02:00:: 00354319 2 0 -hazily%4:02:01:: 00354425 1 0 -haziness%1:07:01:: 04704116 2 0 -haziness%1:07:02:: 04824695 1 0 -hazlitt%1:18:00:: 11037157 1 0 -hazmat%1:27:00:: 14586119 1 0 -hazy%5:00:00:cloudy:00 00461609 1 1 -hazy%5:00:00:indistinct:00 00781644 2 0 -hb%1:27:00:: 15024240 1 0 -hcfc%1:27:00:: 14613130 1 0 -hcg%1:27:00:: 14749030 1 0 -hdl%1:27:00:: 14907349 1 0 -hdl_cholesterol%1:27:00:: 15058755 1 0 -hdtv%1:10:00:: 06278475 1 0 -he%1:10:00:: 06837146 2 0 -he%1:27:00:: 14639921 1 0 -he-goat%1:05:00:: 02416880 1 0 -he-huckleberry%1:20:00:: 12241192 1 0 -he-man%1:18:00:: 10665587 1 0 -head%1:04:00:: 00854876 33 0 -head%1:05:00:: 01318381 2 21 -head%1:06:00:: 03501288 31 0 -head%1:06:01:: 03250279 32 0 -head%1:06:02:: 03501520 30 0 -head%1:06:03:: 03501614 29 0 -head%1:06:04:: 03501811 28 0 -head%1:06:05:: 04058721 27 0 -head%1:08:00:: 05538625 1 208 -head%1:08:01:: 05595837 25 0 -head%1:08:02:: 05290756 26 0 -head%1:09:00:: 05611302 3 7 -head%1:10:00:: 06343971 24 0 -head%1:10:01:: 06822034 22 0 -head%1:10:02:: 06783768 23 0 -head%1:10:03:: 06291809 9 1 -head%1:11:00:: 07372779 21 0 -head%1:11:01:: 07418822 20 0 -head%1:14:00:: 08482271 5 6 -head%1:15:00:: 08664184 7 1 -head%1:15:01:: 08508449 8 1 -head%1:15:02:: 08572467 19 0 -head%1:17:00:: 09301844 18 0 -head%1:17:01:: 09302031 17 0 -head%1:17:02:: 09399592 16 0 -head%1:18:00:: 10162991 4 6 -head%1:18:01:: 10474645 13 0 -head%1:18:02:: 10162780 15 0 -head%1:18:03:: 10163354 14 0 -head%1:19:00:: 11495607 6 3 -head%1:20:00:: 13133786 12 0 -head%1:23:00:: 13654380 11 0 -head%1:26:00:: 14312481 10 0 -head%2:35:00:: 01590915 9 0 -head%2:38:00:: 01935233 1 29 -head%2:38:01:: 01931768 5 2 -head%2:38:02:: 01999423 3 3 -head%2:41:00:: 02440244 2 19 -head%2:42:00:: 02694287 7 0 -head%2:42:01:: 02729023 4 2 -head%2:42:04:: 02624128 8 0 -head%2:42:05:: 02754463 6 0 -head-in-the-clouds%5:00:00:frivolous:00 02121123 1 0 -head-on%4:02:00:: 00218179 2 0 -head-on%4:02:01:: 00218267 1 1 -head-on%5:00:00:front:00 00198757 2 0 -head-on%5:00:00:hostile:01 01245889 1 0 -head-shrinker%1:18:00:: 10163452 2 0 -head-shrinker%1:18:01:: 10488016 1 0 -head-to-head%4:02:00:: 00408632 1 0 -head-to-head%5:00:00:inconclusive:00 00551416 2 0 -head-to-head%5:00:00:private:00 01860890 1 0 -head_ache%1:26:00:: 14326607 1 0 -head_and_shoulders_above%4:02:00:: 00047239 1 0 -head_blight%1:26:00:: 14217473 1 0 -head_cabbage%1:13:00:: 07714571 2 0 -head_cabbage%1:20:00:: 11875938 1 0 -head_cabbage_plant%1:20:00:: 11875938 1 0 -head_cold%1:26:00:: 14145759 1 0 -head_count%1:23:00:: 13592764 1 0 -head_covering%1:06:00:: 03502331 1 1 -head_crash%1:11:00:: 07479144 1 0 -head_for_the_hills%2:38:00:: 02075049 1 0 -head_game%1:04:00:: 00754767 1 0 -head_gasket%1:06:00:: 03503477 1 0 -head_gate%1:06:00:: 03503567 2 0 -head_gate%1:06:01:: 04244615 1 0 -head_home%2:38:00:: 02005496 1 1 -head_honcho%1:18:00:: 09853881 1 0 -head_lettuce%1:20:00:: 11986900 1 0 -head_lice%1:26:00:: 14454661 1 0 -head_linesman%1:18:00:: 10163900 1 0 -head_louse%1:05:00:: 02184589 1 0 -head_nurse%1:18:00:: 10164492 1 0 -head_of_hair%1:08:00:: 05256085 1 1 -head_of_household%1:18:00:: 10164605 1 0 -head_of_state%1:18:00:: 10164747 1 0 -head_off%2:41:00:: 02453321 1 3 -head_over_heels%4:02:00:: 00163704 1 0 -head_register%1:07:00:: 05127150 1 0 -head_restraint%1:06:00:: 03505207 1 0 -head_rhyme%1:10:00:: 07097094 1 0 -head_sea%1:19:00:: 11521534 1 0 -head_shop%1:06:00:: 03505764 1 0 -head_smut%1:20:00:: 13067672 1 0 -head_start%1:07:00:: 05157406 1 1 -head_teacher%1:18:00:: 10474645 1 0 -head_tone%1:07:00:: 05127150 1 0 -head_trip%1:04:00:: 01073097 2 0 -head_trip%1:11:00:: 07288385 1 0 -head_up%2:42:00:: 02729023 1 2 -head_voice%1:07:00:: 05127150 1 0 -head_word%1:10:01:: 06291809 2 0 -head_word%1:10:02:: 06292154 1 0 -headache%1:09:00:: 05832264 1 5 -headache%1:26:00:: 14326607 2 3 -headache_powder%1:06:00:: 02749169 1 0 -headband%1:06:00:: 03502042 1 0 -headboard%1:06:00:: 03502200 1 0 -headbutt%2:35:00:: 01236009 1 0 -headcheese%1:13:00:: 07677071 1 0 -headcount%1:23:00:: 13592764 1 0 -headcounter%1:18:00:: 10451590 1 0 -headdress%1:06:00:: 03502509 1 0 -headed%3:00:01:: 01183601 3 1 -headed%3:00:02:: 01184706 2 1 -headed%5:00:00:mature:01 01489207 4 0 -headed%5:00:00:oriented:00 01683221 1 5 -header%1:04:00:: 00131485 6 0 -header%1:04:01:: 00119893 7 0 -header%1:06:00:: 03502777 5 0 -header%1:06:01:: 03502897 4 0 -header%1:06:02:: 03503097 3 0 -header%1:06:03:: 03503233 2 0 -header%1:10:00:: 06343971 1 0 -headfast%1:06:00:: 03503358 1 0 -headfirst%4:02:00:: 00354527 1 0 -headfirst%5:00:00:forward:01 00203614 1 0 -headfish%1:05:00:: 02656670 1 0 -headful%1:08:00:: 05255435 2 0 -headful%1:23:00:: 13767545 1 0 -headgear%1:06:00:: 03502509 1 1 -headgear%1:06:01:: 03503718 3 0 -headgear%1:06:02:: 03503908 2 0 -headhunter%1:18:00:: 10163452 2 0 -headhunter%1:18:01:: 10163593 1 0 -heading%1:06:00:: 03239399 3 0 -heading%1:10:00:: 06343971 1 1 -heading%1:15:00:: 08680888 2 0 -headlamp%1:06:00:: 03503997 1 0 -headland%1:17:00:: 09399592 1 2 -headless%3:00:00:: 01184261 1 2 -headless%5:00:00:unintelligent:00 01336837 2 0 -headlight%1:06:00:: 03503997 1 5 -headlike%5:00:00:headed:01 01184085 1 0 -headline%1:10:00:: 06344461 1 3 -headline%2:32:00:: 00976224 1 1 -headline%2:40:00:: 02332445 2 0 -headliner%1:18:00:: 10163723 1 0 -headlinese%1:10:00:: 07070779 1 1 -headlock%1:04:00:: 00814106 1 0 -headlong%4:02:00:: 00354527 1 4 -headlong%4:02:01:: 00354642 3 0 -headlong%4:02:02:: 00354938 2 0 -headlong%5:00:00:forward:01 00203614 2 0 -headlong%5:00:01:hurried:00 01270704 1 0 -headman%1:18:00:: 10164025 2 0 -headman%1:18:01:: 10164997 1 0 -headmaster%1:18:00:: 10164233 1 2 -headmastership%1:04:00:: 00592894 1 0 -headmistress%1:18:00:: 10164397 1 0 -headmistressship%1:04:00:: 00592999 1 0 -headphone%1:06:00:: 03261776 1 0 -headpiece%1:06:00:: 03504205 2 0 -headpiece%1:06:01:: 03506028 1 0 -headpin%1:06:00:: 03504293 1 0 -headquarter%2:40:00:: 02366884 1 0 -headquarters%1:06:00:: 03504420 2 2 -headquarters%1:06:01:: 03504723 1 7 -headquarters%1:14:00:: 08404895 3 1 -headquarters_staff%1:14:00:: 08405124 1 0 -headrace%1:06:00:: 03505015 1 0 -headrest%1:06:00:: 03505133 2 0 -headrest%1:06:01:: 03505207 1 0 -headroom%1:04:00:: 01020628 2 0 -headroom%1:23:00:: 13778261 1 0 -heads-up%1:10:00:: 07225577 1 0 -heads-up%5:00:00:alert:00 00092275 1 0 -headsail%1:06:00:: 03505383 1 0 -headscarf%1:06:00:: 03505504 1 0 -headset%1:06:00:: 03505667 1 0 -headshake%1:04:00:: 00334711 1 0 -headshaking%1:04:00:: 00334711 1 0 -headship%1:04:00:: 00593108 2 0 -headship%1:04:01:: 00593219 1 0 -headshot%1:04:00:: 00124256 3 0 -headshot%1:04:01:: 01264933 2 0 -headshot%1:06:00:: 03505942 1 0 -headsman%1:18:00:: 10164997 1 1 -headspace%1:23:00:: 13757582 1 0 -headspring%1:15:00:: 08508449 1 0 -headstall%1:06:00:: 03506028 1 0 -headstand%1:04:00:: 00437639 1 2 -headstock%1:06:00:: 03506184 1 0 -headstone%1:06:00:: 03615133 1 0 -headstone%1:06:01:: 03455488 2 0 -headstream%1:17:00:: 09302127 1 0 -headstrong%5:00:00:disobedient:00 01614372 1 1 -headwaiter%1:18:00:: 09892513 1 0 -headwater%1:15:00:: 08508629 1 0 -headway%1:11:00:: 07372779 2 0 -headway%1:23:00:: 13778261 1 0 -headwind%1:19:00:: 11443173 1 0 -headword%1:10:00:: 06292000 2 0 -headword%1:10:02:: 06292154 1 0 -heady%5:00:00:bold:00 00250739 3 0 -heady%5:00:00:exciting:00 00922228 2 0 -heady%5:00:00:prudent:00 01898722 1 0 -heal%2:29:00:: 00099184 2 1 -heal%2:29:01:: 00081725 3 0 -heal%2:30:00:: 00270561 1 2 -heal_all%1:20:01:: 12472559 2 0 -heal_all%1:20:02:: 12863234 1 0 -healed%5:00:00:well:01 02541012 1 0 -healer%1:18:00:: 10707233 1 1 -healing%1:22:00:: 13491616 1 1 -healing%5:00:00:healthful:00 01165943 1 1 -healing_herb%1:13:00:: 07817160 1 0 -health%1:26:00:: 14447908 1 21 -health%1:26:01:: 13923779 2 0 -health_and_human_services%1:14:00:: 08133536 1 0 -health_care%1:04:00:: 01088857 1 0 -health_care%1:04:01:: 01059900 2 0 -health_care_delivery%1:04:00:: 01060101 1 0 -health_care_provider%1:18:00:: 10165109 1 0 -health_check%1:04:00:: 00142361 1 0 -health_club%1:06:00:: 03506370 1 0 -health_code%1:10:00:: 06669193 1 0 -health_facility%1:06:00:: 03739518 1 0 -health_food%1:13:00:: 07702362 1 0 -health_hazard%1:26:00:: 14542320 1 0 -health_insurance%1:21:00:: 13346773 1 0 -health_maintenance_organization%1:21:00:: 13349208 1 0 -health_problem%1:26:00:: 14052046 1 1 -health_profession%1:14:00:: 08112630 1 0 -health_professional%1:18:00:: 10165109 1 0 -health_spa%1:06:00:: 03506370 1 0 -healthcare%1:04:01:: 01059900 1 0 -healthcare_delivery%1:04:00:: 01060101 1 0 -healthcare_facility%1:06:00:: 03739518 1 0 -healthful%3:00:00:: 01164763 1 2 -healthful%3:00:02:: 02112976 2 0 -healthfulness%1:07:00:: 04790070 1 0 -healthier%5:00:00:better:02 00231963 1 0 -healthily%4:02:00:: 00182522 1 1 -healthiness%1:26:00:: 14049711 1 0 -healthy%3:00:00:: 01170243 1 15 -healthy%5:00:00:considerable:00 00624576 5 0 -healthy%5:00:00:reasonable:00 01944088 4 0 -healthy%5:00:00:sound:00 02273838 2 3 -healthy%5:00:00:wholesome:00 02558184 3 1 -heap%1:06:01:: 02924554 3 0 -heap%1:14:00:: 07961480 1 6 -heap%1:23:00:: 13774404 2 2 -heap%2:30:00:: 00453424 3 0 -heap%2:35:00:: 01503404 2 1 -heap%2:40:00:: 02263788 1 1 -heap_up%2:35:00:: 01504298 1 0 -heaps%1:23:00:: 13777509 1 0 -heaps%4:02:00:: 00355080 1 0 -hear%2:31:00:: 00598954 2 60 -hear%2:39:00:: 02169702 1 275 -hear%2:39:01:: 02107442 4 8 -hear%2:39:05:: 02171039 5 0 -hear%2:41:00:: 02500902 3 12 -hear_out%2:39:00:: 02170181 1 0 -hearable%3:00:00:: 00173764 1 0 -heard%5:00:00:detected:00 01609762 1 1 -hearer%1:18:00:: 10165448 1 1 -hearing%1:04:00:: 00882159 4 2 -hearing%1:04:01:: 01199697 1 10 -hearing%1:09:00:: 05657718 6 0 -hearing%1:10:00:: 07147267 5 0 -hearing%1:15:00:: 08560785 3 3 -hearing%1:26:00:: 14484778 2 4 -hearing%3:00:00:: 00682744 1 0 -hearing-impaired%5:00:00:deaf:00 00682419 1 0 -hearing_aid%1:06:00:: 03506560 2 0 -hearing_aid%1:06:01:: 03506727 1 0 -hearing_disorder%1:26:00:: 14550797 1 0 -hearing_dog%1:05:00:: 02109391 1 0 -hearing_examiner%1:18:00:: 10165957 1 0 -hearing_impairment%1:26:00:: 14550797 1 0 -hearing_loss%1:26:00:: 14550987 1 0 -hearing_officer%1:18:00:: 10165957 1 19 -hearken%2:39:00:: 02189588 1 0 -hearsay%1:10:00:: 07223450 1 0 -hearsay%5:00:00:indirect:02 00768808 1 0 -hearsay_evidence%1:10:00:: 06735922 1 0 -hearsay_rule%1:10:00:: 06654490 1 0 -hearse%1:06:00:: 03506880 1 0 -hearst%1:18:00:: 11037278 1 0 -heart%1:06:00:: 03507048 10 0 -heart%1:07:01:: 04857490 3 9 -heart%1:07:04:: 04624826 6 1 -heart%1:08:00:: 05388805 2 25 -heart%1:09:00:: 05919263 1 42 -heart%1:09:01:: 05921123 5 2 -heart%1:12:04:: 07544647 9 0 -heart%1:13:00:: 07651905 8 0 -heart%1:15:00:: 08523483 4 5 -heart%1:25:00:: 13865904 7 0 -heart-healthy%5:00:00:wholesome:00 02558032 1 0 -heart-leaf%1:20:01:: 11802586 2 0 -heart-leaf%1:20:02:: 11802800 1 0 -heart-leaved_aster%1:20:00:: 11933257 1 0 -heart-lung_machine%1:06:00:: 03507658 1 0 -heart-shaped%5:00:00:simple:01 02167628 1 0 -heart-to-heart%1:10:00:: 07136315 1 0 -heart-to-heart%5:00:00:ingenuous:00 01310273 1 0 -heart-whole%5:00:00:sincere:00 02180486 1 0 -heart_and_soul%1:09:00:: 05921123 1 0 -heart_and_soul%4:02:00:: 00164353 1 0 -heart_attack%1:26:00:: 14112855 1 0 -heart_block%1:26:00:: 14362593 1 0 -heart_cherry%1:13:00:: 07757602 2 0 -heart_cherry%1:20:00:: 12642435 1 0 -heart_disease%1:26:00:: 14103288 1 1 -heart_failure%1:26:00:: 14112255 1 0 -heart_line%1:25:00:: 13906936 1 0 -heart_massage%1:04:00:: 00659349 1 0 -heart_monitor%1:06:00:: 02962938 1 0 -heart_murmur%1:26:00:: 14334814 1 0 -heart_muscle%1:08:00:: 05389939 1 0 -heart_of_dixie%1:15:00:: 09053185 1 0 -heart_pea%1:20:00:: 12743009 1 0 -heart_rate%1:28:00:: 15280695 1 1 -heart_rhythm%1:07:00:: 04768186 1 0 -heart_specialist%1:18:00:: 09894445 1 0 -heart_surgeon%1:18:00:: 09894445 1 0 -heart_surgery%1:04:00:: 00675219 1 0 -heart_urchin%1:05:00:: 02319829 1 0 -heart_valve%1:06:00:: 03507857 2 0 -heart_valve%1:08:00:: 05395098 1 0 -heart_ventricle%1:08:00:: 05391763 1 0 -heartache%1:12:00:: 07535010 1 0 -heartbeat%1:07:00:: 05195653 3 0 -heartbeat%1:11:00:: 07400906 1 2 -heartbeat%1:28:00:: 15247110 2 0 -heartbreak%1:12:00:: 07535010 1 0 -heartbreaker%1:11:00:: 07476177 2 0 -heartbreaker%1:18:00:: 10166189 1 0 -heartbreaking%5:00:00:sorrowful:00 01365544 1 0 -heartbroken%5:00:00:sorrowful:00 01365103 1 0 -heartburn%1:26:00:: 14335223 1 0 -heartburning%1:12:00:: 07549265 1 0 -hearten%2:37:00:: 01817938 1 0 -heartening%5:00:00:encouraging:00 00866894 1 2 -heartfelt%5:00:00:sincere:00 02179968 1 0 -hearth%1:06:00:: 03507241 2 1 -hearth%1:06:01:: 03346455 1 2 -hearth%1:15:00:: 08581699 3 0 -hearth_money%1:21:00:: 13270760 1 0 -hearthrug%1:06:00:: 03507458 1 0 -hearthstone%1:06:00:: 03507554 1 0 -heartily%4:02:01:: 00219855 2 1 -heartily%4:02:03:: 00209381 1 4 -heartiness%1:07:00:: 04867539 2 0 -heartiness%1:07:01:: 05030806 1 0 -heartland%1:15:00:: 08581897 1 0 -heartleaf%1:20:01:: 11802586 2 0 -heartleaf%1:20:02:: 11802800 1 0 -heartleaf_arnica%1:20:00:: 11926976 1 0 -heartleaf_manzanita%1:20:00:: 12232114 1 0 -heartless%3:00:02:: 01158020 1 0 -heartless%5:00:00:spiritless:00 02282171 2 0 -heartlessly%4:02:00:: 00355158 1 0 -heartlessness%1:12:00:: 07506149 1 0 -heartrending%5:00:00:sorrowful:00 01365544 1 0 -heartrot%1:26:00:: 14280639 1 0 -hearts%1:04:00:: 00496599 1 0 -heartsease%1:12:00:: 07515790 4 0 -heartsease%1:20:01:: 12388143 3 0 -heartsease%1:20:02:: 12389130 2 0 -heartsease%1:20:03:: 12390681 1 0 -heartseed%1:20:00:: 12742878 1 0 -heartsick%5:00:00:hopeless:00 01230153 2 0 -heartsick%5:00:00:sorrowful:00 01365103 1 0 -heartsickness%1:12:00:: 07538395 1 0 -heartstrings%1:12:00:: 07545957 1 0 -heartthrob%1:18:00:: 10166313 1 0 -heartwarming%5:00:00:moving:01 01561280 1 0 -heartwood%1:20:00:: 13097752 1 0 -hearty%5:00:00:complete:00 00523479 5 0 -hearty%5:00:00:warm:02 02531243 1 1 -hearty%5:00:00:wholesome:00 02558528 2 0 -hearty%5:00:01:healthy:00 01171606 4 0 -hearty%5:00:02:healthy:00 01171746 3 0 -heat%1:06:00:: 03509025 7 0 -heat%1:07:01:: 05016171 2 6 -heat%1:07:02:: 04628192 4 2 -heat%1:09:00:: 05725527 3 5 -heat%1:11:00:: 07461288 6 0 -heat%1:19:00:: 11466043 1 19 -heat%1:26:00:: 14038264 5 1 -heat%2:30:00:: 00372665 4 0 -heat%2:30:01:: 00371264 1 11 -heat%2:37:00:: 01761120 3 0 -heat%2:40:00:: 02333358 2 0 -heat-absorbing%3:00:00:: 00872510 1 0 -heat-releasing%3:00:00:: 00872906 1 0 -heat-seeking_missile%1:06:00:: 03509843 1 0 -heat_barrier%1:07:00:: 05124792 1 0 -heat_content%1:07:00:: 05012272 1 0 -heat_dissipation%1:22:00:: 13491794 1 0 -heat_energy%1:19:00:: 11466043 1 2 -heat_engine%1:06:00:: 03507963 1 0 -heat_exchanger%1:06:00:: 03508485 1 0 -heat_exhaustion%1:26:00:: 14204253 1 0 -heat_flash%1:11:00:: 07412876 1 0 -heat_hyperpyrexia%1:26:00:: 14204095 1 0 -heat_lamp%1:06:00:: 03509394 1 0 -heat_lightning%1:11:00:: 07413237 1 0 -heat_of_condensation%1:19:00:: 11471359 1 1 -heat_of_dissociation%1:19:00:: 11470621 1 1 -heat_of_formation%1:19:00:: 11470765 1 2 -heat_of_fusion%1:19:00:: 11471578 1 0 -heat_of_solidification%1:19:00:: 11471828 1 0 -heat_of_solution%1:19:00:: 11470933 1 0 -heat_of_sublimation%1:19:00:: 11471977 1 0 -heat_of_transformation%1:19:00:: 11471097 1 0 -heat_of_vaporisation%1:19:00:: 11472131 1 0 -heat_of_vaporization%1:19:00:: 11472131 1 0 -heat_prostration%1:26:00:: 14204253 1 0 -heat_pump%1:06:00:: 03509608 1 0 -heat_rash%1:26:00:: 14322106 1 0 -heat_ray%1:19:00:: 11472503 1 0 -heat_shield%1:06:00:: 03510072 1 0 -heat_sink%1:06:00:: 03510244 1 1 -heat_unit%1:23:00:: 13609507 1 0 -heat_up%2:30:00:: 00371264 2 0 -heat_up%2:30:01:: 00372665 1 1 -heat_up%2:30:04:: 00227667 3 0 -heat_wave%1:19:00:: 11472612 1 0 -heatable%5:00:00:hot:01 01249137 1 0 -heated%5:00:00:hot:01 01249309 1 3 -heated%5:00:00:hot:02 01256865 2 2 -heated_up%5:00:00:hot:01 01249309 1 0 -heatedly%4:02:00:: 00355291 1 0 -heater%1:04:00:: 00108181 2 0 -heater%1:06:00:: 03508101 1 1 -heath%1:15:00:: 08504851 2 0 -heath%1:20:00:: 12226932 1 0 -heath_aster%1:20:01:: 11933728 1 0 -heath_aster%1:20:02:: 11933099 2 0 -heath_family%1:20:00:: 12226322 1 0 -heath_hen%1:05:01:: 01798979 1 0 -heath_hen%1:05:02:: 01796105 2 0 -heath_pea%1:20:00:: 12542240 1 0 -heath_violet%1:20:00:: 12388858 1 0 -heathen%1:18:00:: 10166394 1 0 -heathen%5:00:00:irreligious:00 01784401 1 0 -heathenish%5:00:00:irreligious:00 01784401 1 0 -heathenism%1:09:00:: 06224657 1 0 -heather%1:07:00:: 04958146 2 0 -heather%1:20:00:: 12233529 1 0 -heather_bell%1:20:00:: 12228387 1 0 -heather_mixture%1:07:00:: 04958146 1 0 -heathfowl%1:05:00:: 01795735 1 0 -heathland%1:15:00:: 08504851 1 0 -heathlike%3:01:00:: 02739013 1 0 -heating%1:06:00:: 03509025 2 0 -heating%1:22:00:: 13491876 1 4 -heating_element%1:06:00:: 03508628 1 0 -heating_oil%1:27:00:: 14686585 1 0 -heating_pad%1:06:00:: 03508881 1 0 -heating_plant%1:06:00:: 03509025 1 0 -heating_system%1:06:00:: 03509025 1 0 -heatless%5:00:00:cold:01 01253469 1 0 -heatstroke%1:26:00:: 14204095 1 0 -heaume%1:06:00:: 03510384 1 0 -heave%1:04:00:: 00105271 6 0 -heave%1:04:01:: 00324834 3 0 -heave%1:04:02:: 00116376 5 0 -heave%1:04:03:: 00226951 4 0 -heave%1:11:00:: 07350069 2 0 -heave%1:11:01:: 07370968 1 0 -heave%2:29:00:: 00077458 8 0 -heave%2:29:01:: 00005526 6 1 -heave%2:30:00:: 00356954 7 0 -heave%2:32:00:: 00986586 1 5 -heave%2:35:00:: 01455866 4 2 -heave%2:35:01:: 01507792 2 3 -heave%2:38:00:: 02041206 3 2 -heave%2:38:01:: 02088470 5 1 -heave_up%2:35:00:: 01455866 1 0 -heaven%1:09:00:: 05627785 2 0 -heaven%1:15:01:: 08565506 1 1 -heaven-sent%5:00:00:fortunate:00 01048976 1 0 -heavenly%3:00:00:: 01178974 3 0 -heavenly%3:01:00:: 02684971 1 1 -heavenly%3:01:01:: 02685153 2 0 -heavenly_body%1:17:00:: 09239740 1 1 -heavenly_city%1:09:00:: 05628193 1 0 -heavenly_jewel%1:18:00:: 09533668 1 0 -heavens%1:15:00:: 08521267 1 2 -heavenward%4:02:00:: 00355509 1 0 -heavenward%5:00:00:up:00 02491171 1 0 -heavenwardly%4:02:00:: 00355509 1 0 -heavenwards%4:02:00:: 00355509 1 0 -heaver%1:06:00:: 03510487 1 2 -heaver%1:18:00:: 10166762 2 0 -heaves%1:26:00:: 14265350 1 0 -heavier-than-air%5:00:00:heavy:01 01185636 1 0 -heavier-than-air_craft%1:06:00:: 03510583 1 0 -heavily%4:02:00:: 00176383 1 23 -heavily%4:02:01:: 00176518 7 0 -heavily%4:02:02:: 00355615 5 1 -heavily%4:02:03:: 00502575 4 1 -heavily%4:02:04:: 00507477 2 7 -heavily%4:02:05:: 00508657 3 2 -heavily%4:02:06:: 00176654 6 0 -heavily_traveled%5:00:00:traveled:00 02454339 1 0 -heaviness%1:07:00:: 05027529 1 2 -heaviness%1:07:01:: 05136662 4 0 -heaviness%1:07:02:: 04711031 5 0 -heaviness%1:07:03:: 05206829 3 0 -heaviness%1:12:00:: 07532945 2 0 -heaving%1:04:00:: 00105271 4 0 -heaving%1:04:02:: 00834135 2 0 -heaving%1:04:03:: 00324834 3 0 -heaving%1:11:01:: 07370968 1 1 -heaviside%1:18:00:: 11037495 1 0 -heaviside_layer%1:15:00:: 08582613 1 0 -heavy%1:09:00:: 05929582 2 0 -heavy%1:18:00:: 10167361 1 0 -heavy%3:00:01:: 01184932 1 32 -heavy%3:00:02:: 01188762 4 2 -heavy%3:00:03:: 01190683 2 10 -heavy%3:00:04:: 01193373 3 5 -heavy%3:00:07:: 01191227 9 0 -heavy%3:00:08:: 01191618 8 0 -heavy%4:02:00:: 00355615 1 0 -heavy%5:00:00:cloudy:00 00462409 7 1 -heavy%5:00:00:compact:00 00502487 6 1 -heavy%5:00:00:deep:02 00693020 26 0 -heavy%5:00:00:dull:03 00807667 25 0 -heavy%5:00:00:effortful:00 00836544 24 0 -heavy%5:00:00:fat:01 00987769 5 1 -heavy%5:00:00:full:00 01085268 22 0 -heavy%5:00:00:full:01 01457692 15 0 -heavy%5:00:00:heavy-duty:00 01188491 19 0 -heavy%5:00:00:heavy-footed:00 01192786 18 0 -heavy%5:00:00:important:00 01278423 17 0 -heavy%5:00:00:indigestible:00 01183114 20 0 -heavy%5:00:00:indulgent:00 01299173 16 0 -heavy%5:00:00:pregnant:00 00173391 27 0 -heavy%5:00:00:steep:00 01145639 21 0 -heavy%5:00:00:thick:01 02411447 13 0 -heavy%5:00:00:wicked:00 02514239 10 0 -heavy%5:00:01:effortful:00 00837415 23 0 -heavy%5:00:01:thick:02 02416390 11 0 -heavy%5:00:02:intemperate:00 02402439 14 0 -heavy%5:00:04:thick:01 02411559 12 0 -heavy-armed%5:00:00:robust:00 02039632 1 1 -heavy-coated%5:00:00:clothed:00 00456229 1 1 -heavy-duty%3:00:00:: 01188328 1 1 -heavy-footed%3:00:00:: 01192639 1 0 -heavy-handed%5:00:00:domineering:00 00788268 2 0 -heavy-handed%5:00:00:maladroit:00 00063563 1 1 -heavy-laden%5:00:00:encumbered:00 00868241 2 0 -heavy-laden%5:00:00:troubled:00 02456875 1 0 -heavy-limbed%5:00:00:limbed:00 01414663 1 0 -heavy_cream%1:13:00:: 07847827 1 0 -heavy_hitter%1:18:00:: 10166902 1 0 -heavy_hydrogen%1:27:00:: 14641046 1 0 -heavy_lifting%1:04:00:: 00580190 1 0 -heavy_metal%1:10:00:: 07065149 2 0 -heavy_metal%1:27:00:: 14612077 1 0 -heavy_metal_music%1:10:00:: 07065149 1 0 -heavy_particle%1:17:00:: 09215023 1 0 -heavy_spar%1:27:00:: 14678230 1 0 -heavy_swell%1:11:00:: 07344120 1 0 -heavy_water%1:27:00:: 14727508 1 0 -heavy_weapon%1:06:00:: 02746365 1 0 -heavy_whipping_cream%1:13:00:: 07847585 1 0 -heavyhearted%5:00:00:sad:00 01362598 1 0 -heavyheartedness%1:12:00:: 07533492 1 0 -heavyset%5:00:01:short:03 02387413 1 0 -heavyweight%1:18:00:: 09938991 5 0 -heavyweight%1:18:01:: 10167042 3 0 -heavyweight%1:18:02:: 10167152 2 0 -heavyweight%1:18:03:: 10129133 4 0 -heavyweight%1:18:04:: 10167252 1 0 -hebbel%1:18:00:: 11037836 1 0 -hebdomad%1:28:00:: 15169873 1 0 -hebdomadal%5:00:00:periodic:00 01968503 1 0 -hebdomadally%4:02:00:: 00081591 1 0 -hebdomadary%5:00:00:periodic:00 01968503 1 0 -hebe%1:18:00:: 09560940 1 0 -hebei%1:15:00:: 08725926 1 0 -hebei_province%1:15:00:: 08725926 1 0 -hebephrenia%1:26:00:: 14399438 1 0 -hebephrenic%5:00:00:insane:00 02076016 1 7 -hebephrenic_schizophrenia%1:26:00:: 14399438 1 0 -hebetude%1:09:00:: 05681252 1 0 -hebraic%3:01:00:: 03039087 1 1 -hebraic%3:01:01:: 03039314 2 0 -hebraic_alphabet%1:10:00:: 06498569 1 0 -hebraical%3:01:00:: 03039087 2 0 -hebraical%3:01:01:: 03039314 1 0 -hebraism%1:14:00:: 08094013 1 0 -hebraist%1:18:00:: 10167448 1 0 -hebrew%1:10:00:: 06987124 1 1 -hebrew%1:18:00:: 09681351 2 0 -hebrew%3:01:00:: 03039087 2 0 -hebrew%3:01:01:: 03039314 1 1 -hebrew_alphabet%1:10:00:: 06498569 1 0 -hebrew_calendar%1:28:00:: 15177866 1 0 -hebrew_lesson%1:04:00:: 00729825 1 0 -hebrew_script%1:10:00:: 06498569 1 0 -hebrew_scripture%1:10:00:: 06452363 1 0 -hebrews%1:10:00:: 06446476 2 0 -hebrews%1:14:00:: 08483935 1 0 -hebridean%3:01:00:: 02739085 1 0 -hebridean_islands%1:15:00:: 08893223 1 0 -hebridean_isles%1:15:00:: 08893223 1 0 -hebrides%1:15:00:: 08893223 1 0 -hecate%1:18:00:: 09561755 1 0 -hecatomb%1:04:00:: 00227848 1 0 -hecht%1:18:00:: 11037966 1 0 -heckelphone%1:06:00:: 03510866 1 0 -heckle%1:06:00:: 03498866 1 0 -heckle%2:32:00:: 00907800 2 0 -heckle%2:35:00:: 01596972 1 0 -heckler%1:18:00:: 10167565 1 0 -heckling%1:04:00:: 01068633 1 0 -hectare%1:23:00:: 13613985 1 0 -hectic%5:00:00:agitated:00 00086210 1 1 -hectically%4:02:00:: 00345284 1 0 -hectogram%1:23:00:: 13724474 1 0 -hectograph%1:06:00:: 03510987 1 0 -hectograph%2:36:00:: 01694850 1 0 -hectoliter%1:23:00:: 13624705 1 0 -hectolitre%1:23:00:: 13624705 1 0 -hectometer%1:23:00:: 13659604 1 0 -hectometre%1:23:00:: 13659604 1 0 -hector%1:18:00:: 09600031 1 0 -hector%2:37:00:: 01781520 1 0 -hector_berlioz%1:18:00:: 10847653 1 0 -hector_hevodidbon%1:18:00:: 11201386 1 0 -hector_hugh_munro%1:18:00:: 11196627 1 0 -hedeoma%1:20:00:: 12847749 1 0 -hedeoma_oil%1:20:00:: 12848212 1 0 -hedeoma_pulegioides%1:20:00:: 12847927 1 0 -hedera%1:20:00:: 11798851 1 0 -hedera_helix%1:20:00:: 11798978 1 0 -hedge%1:06:00:: 03511175 1 2 -hedge%1:10:00:: 06761603 3 0 -hedge%1:21:00:: 13344462 2 0 -hedge%2:30:00:: 00428067 4 0 -hedge%2:32:00:: 00809654 1 1 -hedge%2:35:00:: 01615020 3 0 -hedge%2:35:01:: 01615190 2 0 -hedge_bindweed%1:20:00:: 12825061 1 0 -hedge_fund%1:14:00:: 08071229 1 0 -hedge_garlic%1:20:00:: 11870418 1 0 -hedge_in%2:35:01:: 01615020 1 0 -hedge_maple%1:20:00:: 12754648 1 0 -hedge_mustard%1:20:00:: 11897116 1 0 -hedge_nettle%1:20:01:: 12868880 2 0 -hedge_nettle%1:20:02:: 12869061 1 0 -hedge_pink%1:20:00:: 11814584 1 0 -hedge_sparrow%1:05:00:: 01527347 1 0 -hedge_thorn%1:20:00:: 11771746 1 0 -hedge_trimmer%1:06:00:: 03511333 1 0 -hedge_violet%1:20:00:: 12390314 1 0 -hedged%5:00:00:qualified:02 01913514 1 0 -hedgefund%1:14:00:: 08071229 1 0 -hedgehog%1:05:00:: 01893825 2 0 -hedgehog%1:05:02:: 02346627 1 0 -hedgehog_cactus%1:20:00:: 11845793 1 0 -hedgehog_cereus%1:20:00:: 11846312 1 0 -hedgehop%2:38:00:: 01955703 1 0 -hedger%1:18:00:: 10167740 3 0 -hedger%1:18:01:: 10167838 2 0 -hedger%1:18:02:: 10168012 1 0 -hedgerow%1:06:00:: 03511175 1 0 -hedging%1:10:00:: 06761603 2 0 -hedging%1:21:00:: 13344462 1 0 -hediondilla%1:20:00:: 12723062 1 0 -hedjaz%1:15:00:: 08995515 1 0 -hedonic%5:00:00:indulgent:00 01298884 1 0 -hedonism%1:09:00:: 06160596 2 0 -hedonism%1:16:00:: 09183971 1 1 -hedonist%1:18:00:: 10168183 1 0 -hedonistic%5:00:00:indulgent:00 01298884 1 0 -hedysarum%1:20:00:: 12534453 1 0 -hedysarum_boreale%1:20:00:: 12534625 1 0 -hedysarum_coronarium%1:20:00:: 12534862 1 0 -hee-haw%1:10:00:: 07127911 1 0 -hee-haw%2:32:00:: 01054553 1 0 -heebie-jeebies%1:26:00:: 14375761 1 0 -heed%1:09:00:: 05702726 1 1 -heed%2:41:00:: 02571901 1 7 -heedful%3:00:00:: 01194483 1 0 -heedful%5:00:00:attentive:00 00164308 3 0 -heedful%5:00:00:mindful:00 01977488 2 0 -heedfully%4:02:00:: 00153681 1 0 -heedfulness%1:07:00:: 04663763 1 0 -heedless%3:00:00:: 01193714 1 4 -heedless%5:00:00:careless:00 00312757 2 0 -heedlessly%4:02:00:: 00164150 1 0 -heedlessness%1:07:01:: 04665543 3 0 -heedlessness%1:07:02:: 04894204 2 0 -heedlessness%1:09:00:: 05706375 1 0 -heel%1:06:00:: 03511426 1 6 -heel%1:06:02:: 03511786 6 0 -heel%1:06:03:: 03511949 5 0 -heel%1:08:00:: 05578095 2 4 -heel%1:13:00:: 07683973 4 0 -heel%1:18:00:: 09886220 3 0 -heel%2:30:00:: 00533671 5 0 -heel%2:35:00:: 01403987 4 0 -heel%2:36:00:: 01751545 3 0 -heel%2:38:00:: 01992114 2 0 -heel%2:38:01:: 02038791 1 0 -heel_counter%1:06:00:: 03116942 1 0 -heelbone%1:08:00:: 05274808 1 0 -heels_over_head%4:02:00:: 00163704 1 0 -hefa%1:15:00:: 08798062 1 0 -heft%1:07:00:: 05027837 1 0 -heft%2:35:00:: 01455866 1 1 -heft%2:35:01:: 01456341 2 0 -heft_up%2:35:00:: 01455866 1 0 -heftiness%1:07:00:: 05030418 1 0 -heftiness%1:07:01:: 05027837 2 0 -hefty%5:00:00:considerable:00 00624576 3 0 -hefty%5:00:00:heavy:01 01185775 2 0 -hefty%5:00:00:strong:00 02321809 1 1 -hegari%1:20:00:: 12138110 1 0 -hegel%1:18:00:: 11038084 1 2 -hegelian%1:18:00:: 10168368 1 0 -hegelian%3:01:00:: 03032518 1 3 -hegemon%1:14:00:: 08177781 1 0 -hegemony%1:14:00:: 08361924 1 0 -hegira%1:04:00:: 00060414 2 0 -hegira%1:04:01:: 00060548 1 0 -heidegger%1:18:00:: 11038293 1 0 -heidelberg_man%1:18:00:: 10168457 1 0 -heifer%1:05:00:: 02403740 1 0 -height%1:07:00:: 05137165 1 11 -height%1:07:01:: 05002352 3 3 -height%1:07:02:: 05131647 4 1 -height%1:26:00:: 13940456 2 4 -heighten%2:30:00:: 00229605 3 1 -heighten%2:30:01:: 00432436 1 1 -heighten%2:30:02:: 00432281 2 1 -heighten%2:30:04:: 00227165 6 0 -heighten%2:30:05:: 00392588 5 0 -heighten%2:38:00:: 01975753 4 0 -heightening%5:00:00:intensifying:00 01340875 1 0 -heights%1:15:00:: 08584618 1 2 -heilong%1:17:00:: 09196103 1 0 -heilong_jiang%1:17:00:: 09196103 1 0 -heimdal%1:18:00:: 09580673 1 0 -heimdall%1:18:00:: 09580673 1 0 -heimdallr%1:18:00:: 09580673 1 0 -heimlich_maneuver%1:04:00:: 00833119 1 0 -heimlich_manoeuvere%1:04:00:: 00833119 1 0 -heinlein%1:18:00:: 11038505 1 0 -heinous%5:00:00:wicked:00 02514380 1 0 -heinously%4:02:00:: 00355747 1 0 -heinousness%1:07:00:: 04830343 1 0 -heinrich_boell%1:18:00:: 10854627 1 0 -heinrich_engelhard_steinway%1:18:00:: 11315760 1 0 -heinrich_hertz%1:18:00:: 11046934 1 0 -heinrich_himmler%1:18:00:: 11050537 1 0 -heinrich_rudolph_hertz%1:18:00:: 11046934 1 0 -heinrich_schliemann%1:18:00:: 11285091 1 0 -heinrich_theodor_boell%1:18:00:: 10854627 1 0 -heinrich_von_kleist%1:18:00:: 11107436 1 0 -heinz%1:18:00:: 11038657 1 0 -heir%1:18:00:: 10168584 1 3 -heir%1:18:01:: 10671613 2 0 -heir-at-law%1:18:00:: 10169008 1 0 -heir_apparent%1:18:00:: 10168837 1 0 -heir_presumptive%1:18:00:: 10169241 1 0 -heiress%1:18:00:: 10169147 1 0 -heirloom%1:21:00:: 13264688 2 0 -heirloom%1:21:01:: 13264794 1 0 -heisenberg%1:18:00:: 11038810 1 0 -heist%1:04:00:: 00783063 1 0 -heist%1:04:01:: 00781912 2 0 -heist%2:41:00:: 02571511 1 1 -heitor_villa-lobos%1:18:00:: 11366548 1 0 -hejaz%1:15:00:: 08995515 1 0 -hejira%1:04:00:: 00060414 2 0 -hejira%1:04:01:: 00060548 1 0 -hel%1:18:00:: 09580829 1 0 -hela%1:18:00:: 09580829 1 0 -held%3:44:00:: 03149347 1 1 -helen%1:18:00:: 09600188 1 0 -helen_adams_keller%1:18:00:: 11099085 1 0 -helen_hayes%1:18:00:: 11036405 1 0 -helen_hunt_jackson%1:18:00:: 11076359 1 0 -helen_keller%1:18:00:: 11099085 1 0 -helen_laura_sumner_woodbury%1:18:00:: 11396000 1 0 -helen_maria_fiske_hunt_jackson%1:18:00:: 11076359 1 0 -helen_newington_wills%1:18:00:: 11188852 1 0 -helen_of_troy%1:18:00:: 09600188 1 0 -helen_porter_mitchell%1:18:00:: 11172045 1 0 -helen_traubel%1:18:00:: 11348047 1 0 -helen_wills%1:18:00:: 11188852 1 0 -helen_wills_moody%1:18:00:: 11188852 1 0 -helena%1:15:00:: 09109180 1 0 -helenium%1:20:00:: 11977125 1 0 -helenium_autumnale%1:20:00:: 11977512 1 0 -helenium_hoopesii%1:20:00:: 11977660 1 0 -helenium_puberulum%1:20:00:: 11977887 1 0 -heleodytes%1:05:00:: 01586170 1 0 -heliac%3:01:00:: 02739189 1 0 -heliacal%3:01:00:: 02739189 1 0 -heliamphora%1:20:00:: 12781241 1 0 -helianthemum%1:20:00:: 12375518 1 0 -helianthemum_canadense%1:20:00:: 12375769 1 0 -helianthemum_scoparium%1:20:00:: 12376240 1 0 -helianthus%1:20:00:: 11978233 1 0 -helianthus_angustifolius%1:20:00:: 11978551 1 0 -helianthus_annuus%1:20:00:: 11978713 1 0 -helianthus_giganteus%1:20:00:: 11978961 1 0 -helianthus_laetiflorus%1:20:00:: 11979187 1 0 -helianthus_maximilianii%1:20:00:: 11979354 1 0 -helianthus_petiolaris%1:20:00:: 11979527 1 0 -helianthus_tuberosus%1:20:00:: 11979715 1 0 -helical%5:00:00:coiled:00 02317598 1 0 -helichrysum%1:20:00:: 11980088 1 0 -helichrysum_bracteatum%1:20:00:: 11980318 1 0 -helichrysum_secundiflorum%1:20:00:: 11999656 1 0 -helicidae%1:05:00:: 01944217 1 0 -helicon%1:06:00:: 03512030 1 0 -helicopter%1:06:00:: 03512147 1 0 -helicteres%1:20:00:: 12199030 1 0 -helicteres_isora%1:20:00:: 12199399 1 0 -heliobacter%1:05:00:: 01351453 1 0 -heliobacter_pylori%1:05:00:: 01351688 1 0 -heliocentric%3:00:00:: 01118928 1 0 -heliocentric_parallax%1:19:00:: 11528636 1 0 -heliogram%1:10:00:: 06254371 1 0 -heliograph%1:06:00:: 03512452 1 0 -heliograph%2:32:00:: 01040400 1 0 -heliogravure%1:06:00:: 03455802 1 0 -heliolatry%1:04:00:: 01046348 1 0 -heliometer%1:06:00:: 03512624 1 0 -heliopause%1:15:00:: 08501275 1 0 -heliophila%1:20:00:: 11888424 1 0 -heliopsis%1:20:00:: 11980682 1 0 -helios%1:18:00:: 09561137 1 0 -heliosphere%1:15:00:: 08501565 1 0 -heliotherapy%1:04:00:: 00662972 1 0 -heliothis%1:05:00:: 02296480 1 0 -heliothis_moth%1:05:00:: 02296612 1 0 -heliothis_zia%1:05:01:: 02296612 2 0 -heliothis_zia%1:05:02:: 02310334 1 0 -heliotrope%1:27:00:: 14781631 1 0 -heliotropism%1:04:00:: 00862079 1 0 -heliotype%1:06:00:: 03510987 1 0 -heliozoa%1:05:00:: 01390627 1 0 -heliozoan%1:05:00:: 01390763 1 0 -heliport%1:06:00:: 03512830 1 0 -helipterum%1:20:00:: 11980867 1 0 -helipterum_manglesii%1:20:00:: 12007766 1 0 -helium%1:27:00:: 14639921 1 15 -helium_group%1:27:00:: 14624659 1 0 -helix%1:05:00:: 01944617 3 0 -helix%1:06:00:: 03065424 2 0 -helix%1:25:00:: 13876561 1 0 -helix_angle%1:25:00:: 13877785 1 0 -helix_aspersa%1:05:00:: 01945143 1 0 -helix_hortensis%1:05:00:: 01945340 1 0 -helix_pomatia%1:05:00:: 01944812 1 0 -hell%1:04:00:: 00736786 6 0 -hell%1:04:01:: 01260731 5 0 -hell%1:09:00:: 05629682 3 0 -hell%1:09:02:: 05629381 4 0 -hell%1:11:00:: 07305907 2 0 -hell%1:15:01:: 08582837 1 6 -hell's_half_acre%1:15:00:: 09121458 1 0 -hell's_kitchen%1:15:00:: 09121458 1 0 -hell-bent%5:00:00:resolute:00 01991166 1 0 -hell-for-leather%4:02:00:: 00108244 1 0 -hell-kite%1:18:00:: 10169678 1 0 -hell-rooster%1:18:00:: 10169678 1 1 -hell_dust%1:06:00:: 02837416 1 0 -hell_on_earth%1:15:00:: 08582837 1 0 -hell_raising%1:04:00:: 01223032 1 1 -hell_to_pay%1:07:00:: 05170923 1 2 -helladic_civilisation%1:14:00:: 08290435 1 0 -helladic_civilization%1:14:00:: 08290435 1 0 -helladic_culture%1:14:00:: 08290435 1 0 -hellbender%1:05:00:: 01633406 1 0 -hellcat%1:18:00:: 10758337 1 0 -hellebore%1:20:01:: 11733904 2 0 -hellebore%1:20:02:: 12464476 1 0 -helleborine%1:20:01:: 12050959 3 0 -helleborine%1:20:02:: 12062468 2 0 -helleborine%1:20:03:: 12063639 1 0 -helleborus%1:20:00:: 11733769 1 0 -helleborus_foetidus%1:20:00:: 11734093 1 0 -helleborus_niger%1:20:00:: 11734300 1 0 -helleborus_orientalis%1:20:00:: 11734493 1 0 -helleborus_viridis%1:20:00:: 11734698 1 0 -hellene%1:18:00:: 09710164 1 0 -hellenic%1:10:00:: 06976392 1 1 -hellenic%3:01:00:: 03015805 2 1 -hellenic%3:01:01:: 03016202 3 0 -hellenic%5:00:00:classical:00 00413861 1 2 -hellenic_language%1:10:00:: 06976392 1 0 -hellenic_republic%1:15:00:: 08780881 1 0 -hellenism%1:09:00:: 05956489 1 0 -hellenistic%3:01:00:: 03015805 1 0 -hellenistical%3:01:00:: 03015805 1 0 -heller%1:18:00:: 10169419 4 0 -heller%1:18:01:: 11038978 3 0 -heller%1:23:00:: 13681407 2 0 -heller%1:23:01:: 13681749 1 0 -helleri%1:05:00:: 01448291 1 0 -hellespont%1:15:00:: 09041371 1 0 -hellfire%1:09:00:: 05630409 1 0 -hellgrammiate%1:05:00:: 02266269 1 0 -hellhole%1:15:00:: 08582837 1 0 -hellhound%1:18:00:: 10169607 1 0 -hellhound%1:18:01:: 09493204 2 0 -hellion%1:18:00:: 10169419 1 1 -hellish%5:00:00:evil:00 01132515 2 0 -hellish%5:00:00:unpleasant:00 01802774 1 0 -hellishly%4:02:00:: 00132532 1 0 -hellman%1:18:00:: 11039188 1 0 -hello%1:10:00:: 06632511 1 1 -helm%1:04:00:: 01256615 2 1 -helm%1:06:00:: 03512911 1 1 -helm%2:38:00:: 01932482 1 0 -helmet%1:06:00:: 03513137 2 0 -helmet%1:06:01:: 03513376 1 0 -helmet-shaped%5:00:00:convex:00 00538276 1 0 -helmet_flower%1:20:01:: 11723227 1 0 -helmet_orchid%1:20:01:: 12054678 2 0 -helmet_orchid%1:20:02:: 12081215 1 0 -helmeted%5:00:00:equipped:00 01094767 1 0 -helmetflower%1:20:00:: 12867826 1 0 -helmetflower%1:20:01:: 11723227 3 0 -helmetflower%1:20:02:: 12054678 2 0 -helmholtz%1:18:00:: 11039344 1 0 -helminth%1:05:00:: 01922717 1 0 -helminthiasis%1:26:00:: 14453554 1 0 -helminthic%1:06:00:: 04528630 1 0 -helminthic%5:00:00:healthful:00 01165266 1 0 -helminthostachys%1:20:00:: 12961689 1 0 -helminthostachys_zeylanica%1:20:00:: 12961879 1 0 -helmsman%1:18:00:: 10169796 1 0 -helmut_heinrich_waldemar_schmidt%1:18:00:: 11285282 1 0 -helmut_schmidt%1:18:00:: 11285282 1 0 -heloderma%1:05:00:: 01692143 1 0 -heloderma_horridum%1:05:00:: 01692523 1 0 -heloderma_suspectum%1:05:00:: 01692333 1 0 -helodermatidae%1:05:00:: 01691782 1 0 -heloise%1:18:00:: 11039577 1 0 -helot%1:18:00:: 10580535 1 0 -helotiaceae%1:20:00:: 12967504 1 0 -helotiales%1:20:00:: 12967281 1 0 -helotium%1:20:00:: 12967656 1 0 -help%1:04:00:: 01207609 1 20 -help%1:07:00:: 05154908 3 1 -help%1:07:01:: 05149832 4 1 -help%1:18:00:: 09815790 2 3 -help%2:29:00:: 00082081 2 23 -help%2:30:13:: 00206998 8 0 -help%2:34:00:: 01181295 5 2 -help%2:34:04:: 01193569 7 0 -help%2:41:00:: 02547586 1 183 -help%2:41:12:: 02555434 6 0 -help%2:42:00:: 02735897 3 19 -help%2:42:08:: 02726164 4 5 -help_desk%1:04:00:: 01210547 1 0 -help_oneself%2:42:00:: 02726164 1 0 -help_out%2:41:02:: 02548422 1 1 -helpdesk%1:04:00:: 01210547 1 0 -helper%1:18:00:: 09608709 2 1 -helper%1:18:01:: 09815790 1 1 -helper_cell%1:08:00:: 05452204 1 0 -helper_t_cell%1:08:00:: 05452204 1 0 -helpful%3:00:00:: 01195536 1 9 -helpfully%4:02:00:: 00183998 1 4 -helpfulness%1:07:00:: 05149695 1 0 -helpfulness%1:07:01:: 04841664 2 0 -helping%1:13:00:: 07578363 1 0 -helping_hand%1:04:00:: 01208460 1 1 -helpless%5:00:00:dependent:00 00726317 3 1 -helpless%5:00:00:hopeless:00 01230616 2 3 -helpless%5:00:01:powerless:00 01827946 1 4 -helplessly%4:02:00:: 00208773 1 2 -helplessness%1:07:00:: 05204982 1 1 -helplessness%1:12:00:: 07538142 3 0 -helplessness%1:26:00:: 14001629 2 0 -helpmate%1:18:00:: 10170598 1 0 -helpmeet%1:18:00:: 10170598 1 0 -helsingfors%1:15:00:: 08780018 1 0 -helsinki%1:15:00:: 08780018 1 0 -helter-skelter%4:02:00:: 00163590 1 0 -helter-skelter%5:00:00:disorganized:00 01669507 1 0 -helter-skelter%5:00:00:hurried:00 01271410 2 0 -helve%1:06:00:: 03474896 1 0 -helvella%1:20:00:: 13035707 1 0 -helvella_acetabulum%1:20:00:: 13036116 1 0 -helvella_crispa%1:20:00:: 13035925 1 0 -helvella_sulcata%1:20:00:: 13036312 1 0 -helvellaceae%1:20:00:: 13034953 1 0 -helvetica%1:10:00:: 06827947 1 0 -helwingia%1:20:00:: 12949549 1 0 -helxine%1:20:00:: 12393527 1 0 -helxine_soleirolia%1:20:00:: 12393723 1 0 -hem%1:06:00:: 03513627 1 3 -hem%1:10:00:: 07126521 2 0 -hem%2:32:00:: 01061799 2 0 -hem%2:35:00:: 01329732 1 0 -hem_and_haw%2:32:00:: 01061881 1 0 -hem_in%2:33:00:: 01127411 2 1 -hem_in%2:35:00:: 01607716 1 1 -hemachatus%1:05:00:: 01749141 1 0 -hemachatus_haemachatus%1:05:00:: 01749244 1 0 -hemagglutinate%2:35:00:: 01221842 1 0 -hemagglutination%1:22:00:: 13492136 1 0 -hemal%3:01:00:: 02850309 1 0 -hemal_arch%1:08:00:: 05587814 1 0 -hemangioma%1:26:00:: 14247575 1 0 -hemangioma_simplex%1:07:00:: 04696316 1 0 -hematal%3:01:00:: 02850309 1 0 -hematemesis%1:04:00:: 00119210 1 0 -hematic%3:01:00:: 02850483 1 0 -hematin%1:27:00:: 15024997 1 0 -hematinic%1:06:00:: 03513961 1 0 -hematite%1:27:00:: 14905720 1 0 -hematocele%1:26:00:: 14317221 1 0 -hematochezia%1:22:00:: 13492287 1 0 -hematochrome%1:27:00:: 14988635 1 0 -hematocoele%1:26:00:: 14317221 1 0 -hematocolpometra%1:26:00:: 14317433 1 0 -hematocolpos%1:26:00:: 14317562 1 0 -hematocrit%1:06:00:: 03514129 2 0 -hematocrit%1:24:00:: 13821766 1 0 -hematocyst%1:26:00:: 14201989 1 0 -hematocytopenia%1:26:00:: 13973632 1 0 -hematocyturia%1:26:00:: 14266400 1 0 -hematogenesis%1:22:00:: 13492453 1 0 -hematogenic%3:01:00:: 02739578 1 0 -hematohiston%1:27:00:: 15025942 1 0 -hematoidin%1:27:00:: 14756369 1 0 -hematologic%3:01:00:: 02917470 1 0 -hematological%3:01:00:: 02917470 1 0 -hematologist%1:18:00:: 10170681 1 0 -hematology%1:09:00:: 06051134 1 0 -hematolysis%1:22:00:: 13493213 1 0 -hematoma%1:26:00:: 14318714 1 0 -hematopoeitic_stem_cell%1:08:00:: 05608044 1 0 -hematopoiesis%1:22:00:: 13492453 1 0 -hematopoietic%3:01:00:: 02739578 1 0 -hematuria%1:26:00:: 14314320 1 0 -heme%1:27:00:: 15024997 1 0 -hemeralopia%1:26:00:: 14554345 1 0 -hemerobiid%1:05:00:: 02265330 1 0 -hemerobiid_fly%1:05:00:: 02265330 1 0 -hemerobiidae%1:05:00:: 02265177 1 0 -hemerocallidaceae%1:20:00:: 12456278 1 0 -hemerocallis%1:20:00:: 12456527 1 0 -hemerocallis_flava%1:20:00:: 12457091 1 0 -hemerocallis_lilio-asphodelus%1:20:00:: 12457091 1 0 -hemiacetal%1:27:00:: 14905911 1 0 -hemianopia%1:26:00:: 14554459 1 0 -hemianopic_scotoma%1:26:00:: 14556656 1 0 -hemianopsia%1:26:00:: 14554459 1 0 -hemiascomycetes%1:20:00:: 13024763 1 0 -hemic%3:01:00:: 02850483 1 0 -hemicrania%1:26:00:: 14327707 1 0 -hemicycle%1:25:00:: 13874251 1 0 -hemidemisemiquaver%1:10:00:: 06871828 1 0 -hemiepiphyte%1:20:00:: 13123309 1 0 -hemigalus%1:05:00:: 02137172 1 0 -hemigalus_hardwickii%1:05:00:: 02137302 1 0 -hemigrammus%1:05:00:: 02583768 1 0 -hemimetabola%1:05:00:: 02232408 1 0 -hemimetabolic%5:00:00:metamorphic:00 01530076 1 0 -hemimetabolism%1:22:00:: 13492789 1 0 -hemimetabolous%5:00:00:metamorphic:00 01530076 1 0 -hemimetaboly%1:22:00:: 13492789 1 0 -hemimetamorphic%5:00:00:metamorphic:00 01530076 1 0 -hemimetamorphosis%1:22:00:: 13492789 1 0 -hemimetamorphous%5:00:00:metamorphic:00 01530076 1 0 -hemimorphite%1:27:00:: 14678406 1 0 -hemin%1:27:00:: 15025228 1 0 -heming%1:18:00:: 11039690 1 0 -hemingway%1:18:00:: 11039860 1 0 -hemingwayesque%3:01:00:: 03032642 1 0 -hemiparasite%1:20:00:: 13120775 1 0 -hemiparasitic%3:01:00:: 02850701 1 0 -hemiplegia%1:26:00:: 14559644 1 0 -hemiplegic%1:18:00:: 10170866 1 0 -hemipode%1:05:00:: 02019929 1 0 -hemiprocnidae%1:05:00:: 01833283 1 0 -hemiptera%1:05:00:: 02236495 1 0 -hemipteran%1:05:00:: 02236896 1 0 -hemipteron%1:05:00:: 02236896 1 0 -hemipteronatus%1:05:00:: 02609466 1 0 -hemipteronatus_novacula%1:05:00:: 02609823 1 0 -hemipterous_insect%1:05:00:: 02236896 1 0 -hemiramphidae%1:05:00:: 02550915 1 0 -hemisphere%1:08:00:: 05476915 3 0 -hemisphere%1:15:00:: 08583095 1 5 -hemisphere%1:25:00:: 13899109 2 0 -hemispheric%3:01:00:: 02934876 1 0 -hemispherical%3:01:00:: 02740070 1 0 -hemitripterus%1:05:00:: 02645823 1 0 -hemitripterus_americanus%1:05:00:: 02645953 1 0 -hemizygos_vein%1:08:00:: 05368874 1 0 -hemizygous_vein%1:08:00:: 05368874 1 0 -hemline%1:15:00:: 08583292 1 0 -hemlock%1:20:01:: 11627168 4 0 -hemlock%1:20:02:: 11627364 3 0 -hemlock%1:20:03:: 12935609 2 0 -hemlock%1:27:00:: 14906085 1 0 -hemlock_tree%1:20:00:: 11627168 1 0 -hemlock_water_dropwort%1:20:00:: 12940939 1 0 -hemming-stitch%1:06:00:: 03514340 1 0 -hemminge%1:18:00:: 11039690 1 0 -hemochromatosis%1:26:00:: 14206929 1 0 -hemodialysis%1:04:00:: 00650543 1 0 -hemodialyzer%1:06:00:: 02746008 1 0 -hemodynamic%3:01:00:: 02739967 1 0 -hemodynamics%1:09:00:: 06082310 1 0 -hemofil%1:27:00:: 15071684 1 0 -hemogenesis%1:22:00:: 13492453 1 0 -hemoglobin%1:27:00:: 15024240 1 4 -hemoglobinemia%1:26:00:: 14191903 1 0 -hemoglobinopathy%1:26:00:: 14192034 1 0 -hemoglobinuria%1:26:00:: 14314483 1 0 -hemolysin%1:27:00:: 14906261 1 0 -hemolysis%1:22:00:: 13493213 1 0 -hemolytic%3:01:00:: 03007530 1 1 -hemolytic_anemia%1:26:00:: 14165240 1 0 -hemophile%1:18:00:: 10170989 1 0 -hemophilia%1:26:00:: 14170337 1 0 -hemophilia_a%1:26:00:: 14170772 1 0 -hemophilia_b%1:26:00:: 14170987 1 0 -hemophiliac%1:18:00:: 10170989 1 0 -hemophilic%3:01:00:: 02850826 1 0 -hemopoiesis%1:22:00:: 13492453 1 0 -hemopoietic%3:01:00:: 02739578 1 0 -hemoprotein%1:27:00:: 14888884 1 0 -hemoptysis%1:26:00:: 14192199 1 0 -hemorrhage%1:26:00:: 14288235 1 4 -hemorrhage%2:29:00:: 00074834 1 0 -hemorrhagic%3:01:00:: 02740223 1 0 -hemorrhagic_cyst%1:26:00:: 14201989 1 0 -hemorrhagic_fever%1:26:00:: 14177423 1 0 -hemorrhagic_septicemia%1:26:00:: 14263280 1 0 -hemorrhagic_stroke%1:26:00:: 14288561 1 0 -hemorrhoid%1:26:00:: 14327125 1 1 -hemorrhoidal_vein%1:08:00:: 05369092 1 0 -hemorrhoidectomy%1:04:00:: 00676693 1 0 -hemosiderin%1:27:00:: 15026963 1 2 -hemosiderosis%1:26:00:: 14314597 1 0 -hemostasia%1:04:00:: 00676834 1 0 -hemostasis%1:04:00:: 00676834 1 0 -hemostat%1:06:00:: 03514451 1 0 -hemostatic%5:00:00:astringent:00 00189833 1 0 -hemothorax%1:26:00:: 14320813 1 0 -hemp%1:06:00:: 03491724 3 0 -hemp%1:20:00:: 12396924 2 0 -hemp%1:27:00:: 14906500 1 0 -hemp_agrimony%1:20:00:: 11968335 1 0 -hemp_family%1:20:00:: 12396255 1 0 -hemp_nettle%1:20:00:: 12847008 1 0 -hemp_willow%1:20:00:: 12731029 1 0 -hempen%5:00:00:tough:01 02446380 1 0 -hempen_necktie%1:06:00:: 03491724 1 0 -hemstitch%1:06:00:: 03514588 2 0 -hemstitch%1:06:01:: 03514693 1 0 -hemstitch%2:35:00:: 01331518 1 0 -hemstitching%1:06:00:: 03514693 1 0 -hen%1:05:01:: 01792640 1 22 -hen%1:05:02:: 01514859 2 1 -hen%1:05:03:: 01321123 4 0 -hen%1:13:00:: 07646067 3 0 -hen-of-the-woods%1:20:00:: 13052670 1 0 -hen-peck%2:32:00:: 00844941 1 0 -hen_harrier%1:05:00:: 01610226 1 0 -hen_hawk%1:05:00:: 01606978 1 0 -hen_of_the_woods%1:20:00:: 13052670 1 0 -hen_party%1:14:00:: 08256151 1 0 -hen_yard%1:06:00:: 03016737 1 0 -henbane%1:20:00:: 12904314 1 0 -henbit%1:20:00:: 12849416 1 0 -hence%4:02:00:: 00043003 1 25 -hence%4:02:01:: 00043436 3 0 -hence%4:02:02:: 00043521 2 0 -henceforth%4:02:00:: 00032863 1 2 -henceforward%4:02:00:: 00032863 1 0 -henchman%1:18:00:: 09953483 1 0 -hencoop%1:06:00:: 03016389 1 0 -hendiadys%1:10:00:: 07103558 1 0 -hendrik_antoon_lorentz%1:18:00:: 11138301 1 0 -hendrik_frensch_verwoerd%1:18:00:: 11364243 1 0 -hendrik_petrus_berlage%1:18:00:: 10847330 1 0 -hendrik_verwoerd%1:18:00:: 11364243 1 0 -hendrix%1:18:00:: 11040024 1 0 -henhouse%1:06:00:: 03016389 1 0 -henna%1:27:00:: 14988741 1 0 -henna%2:30:00:: 00283664 1 0 -henpecked%5:00:00:submissive:00 00789988 1 1 -henri_becquerel%1:18:00:: 10840563 1 0 -henri_bergson%1:18:00:: 10846504 1 0 -henri_clemens_van_de_velde%1:18:00:: 11359558 1 0 -henri_emile_benoit_matisse%1:18:00:: 11164505 1 0 -henri_labrouste%1:18:00:: 11113732 1 0 -henri_louis_bergson%1:18:00:: 10846504 1 0 -henri_matisse%1:18:00:: 11164505 1 0 -henri_pitot%1:18:00:: 11236188 1 0 -henri_rene_albert_guy_de_maupassant%1:18:00:: 11165339 1 0 -henri_rousseau%1:18:00:: 11272972 1 0 -henri_toulouse-lautrec%1:18:00:: 11346391 1 0 -henri_van_de_velde%1:18:00:: 11359558 1 0 -henriette_rosine_bernard%1:18:00:: 10847994 1 0 -henrik_ibsen%1:18:00:: 11070644 1 0 -henrik_johan_ibsen%1:18:00:: 11070644 1 0 -henroost%1:06:00:: 03514894 1 0 -henry%1:18:00:: 11040240 4 0 -henry%1:18:01:: 11040381 3 0 -henry%1:18:02:: 11040596 2 0 -henry%1:23:00:: 13639405 1 0 -henry's_law%1:09:00:: 05878771 1 0 -henry_alfred_kissinger%1:18:00:: 11106290 1 0 -henry_beauclerc%1:18:00:: 11040800 1 0 -henry_bolingbroke%1:18:00:: 11041814 1 0 -henry_cavendish%1:18:00:: 10888401 1 0 -henry_clay%1:18:00:: 10899951 1 0 -henry_clay_frick%1:18:00:: 10982295 1 0 -henry_david_thoreau%1:18:00:: 11340992 1 0 -henry_engelhard_steinway%1:18:00:: 11315760 1 0 -henry_fielding%1:18:00:: 10970603 1 0 -henry_fonda%1:18:00:: 10974033 1 0 -henry_ford%1:18:00:: 10974592 1 1 -henry_ford_ii%1:18:00:: 10975202 1 0 -henry_graham_greene%1:18:00:: 11013743 1 0 -henry_hobson_richardson%1:18:00:: 11261364 1 0 -henry_hubert_turner%1:18:00:: 11353078 1 0 -henry_hudson%1:18:00:: 11064106 1 0 -henry_i%1:18:00:: 11040800 1 0 -henry_ii%1:18:00:: 11040985 2 0 -henry_ii%1:18:02:: 11041236 1 0 -henry_iii%1:18:00:: 11041447 2 0 -henry_iii%1:18:02:: 11041660 1 0 -henry_iv%1:18:00:: 11041814 3 0 -henry_iv%1:18:01:: 11042036 2 0 -henry_iv%1:18:02:: 11042165 1 0 -henry_james%1:18:00:: 11079252 1 1 -henry_john_heinz%1:18:00:: 11038657 1 0 -henry_kenneth_alfred_russell%1:18:00:: 11275636 1 0 -henry_kissinger%1:18:00:: 11106290 1 0 -henry_laurens%1:18:00:: 11119476 1 0 -henry_le_chatelier%1:18:00:: 11122977 1 0 -henry_lee%1:18:00:: 11123762 1 0 -henry_louis_aaron%1:18:00:: 10807016 1 0 -henry_louis_gehrig%1:18:00:: 10993350 1 0 -henry_louis_mencken%1:18:00:: 11173031 1 0 -henry_luce%1:18:00:: 11143933 1 0 -henry_m._robert%1:18:00:: 11264002 1 0 -henry_m._stanley%1:18:00:: 11313011 1 0 -henry_martyn_robert%1:18:00:: 11264002 1 0 -henry_miller%1:18:00:: 11180029 1 0 -henry_moore%1:18:00:: 11189274 1 0 -henry_morgan%1:18:00:: 11190774 1 0 -henry_norris_russell%1:18:00:: 11275170 1 0 -henry_of_navarre%1:18:00:: 11042165 1 0 -henry_oscar_houghton%1:18:00:: 11061552 1 0 -henry_purcell%1:18:00:: 11248599 1 0 -henry_robinson_luce%1:18:00:: 11143933 1 0 -henry_rowe_schoolcraft%1:18:00:: 11286117 1 0 -henry_russell%1:18:00:: 11275170 1 0 -henry_spencer_moore%1:18:00:: 11189274 1 0 -henry_steinway%1:18:00:: 11315760 1 0 -henry_sweet%1:18:00:: 11326730 1 0 -henry_the_great%1:18:00:: 11042165 1 0 -henry_tudor%1:18:00:: 11043040 1 0 -henry_v%1:18:00:: 11042482 1 0 -henry_valentine_miller%1:18:00:: 11180029 1 0 -henry_vi%1:18:00:: 11042691 1 0 -henry_vii%1:18:00:: 11043040 2 0 -henry_vii%1:18:01:: 11043389 1 0 -henry_viii%1:18:00:: 11043519 1 0 -henry_villard%1:18:00:: 11366658 1 0 -henry_wadsworth_longfellow%1:18:00:: 11137928 1 0 -henry_ward_beecher%1:18:00:: 10841065 1 0 -henry_watson_fowler%1:18:00:: 10976708 1 0 -henry_wheeler_shaw%1:18:00:: 11296279 1 0 -henson%1:18:00:: 11043836 1 0 -hep%5:00:00:informed:00 01307571 1 0 -hepadnavirus%1:05:00:: 01336076 1 0 -heparin%1:06:00:: 03514974 1 0 -hepatic%1:20:00:: 11542640 1 0 -hepatic%3:01:00:: 02740380 1 0 -hepatic_artery%1:08:00:: 05346585 1 0 -hepatic_coma%1:09:00:: 05680573 1 0 -hepatic_duct%1:08:00:: 05386426 1 0 -hepatic_lobe%1:08:00:: 05386309 1 0 -hepatic_portal_vein%1:08:00:: 05377665 1 0 -hepatic_tanager%1:05:00:: 01598271 1 0 -hepatic_vein%1:08:00:: 05369254 1 0 -hepatica%1:20:00:: 11735053 1 0 -hepatica%1:20:02:: 11544015 2 0 -hepaticae%1:20:00:: 11542341 1 0 -hepaticopsida%1:20:00:: 11542341 1 0 -hepatitis%1:26:00:: 14130354 1 1 -hepatitis_a%1:26:00:: 14130661 1 0 -hepatitis_a_virus%1:05:00:: 01337822 1 0 -hepatitis_b%1:26:00:: 14130942 1 0 -hepatitis_c%1:26:00:: 14131353 1 0 -hepatitis_delta%1:26:00:: 14131247 1 0 -hepatocarcinoma%1:26:00:: 14251174 1 0 -hepatocellular_carcinoma%1:26:00:: 14251174 1 0 -hepatoflavin%1:27:00:: 15091473 1 0 -hepatojugular_reflux%1:26:00:: 14335641 1 0 -hepatolenticular_degeneration%1:26:00:: 14569121 1 0 -hepatoma%1:26:00:: 14251174 1 0 -hepatomegaly%1:26:00:: 14103180 1 0 -hepatotoxic%5:00:00:toxic:00 02450175 1 0 -hepatotoxin%1:27:00:: 15036103 1 0 -hepburn%1:18:00:: 11043980 1 0 -hephaestus%1:18:00:: 09561970 1 0 -hephaistos%1:18:00:: 09561970 1 0 -heptad%1:23:00:: 13744916 1 0 -heptadecanoic_acid%1:27:00:: 14742476 1 0 -heptagon%1:25:00:: 13882487 1 0 -heptane%1:27:00:: 14906656 1 0 -hepworth%1:18:00:: 11044168 1 0 -hera%1:18:00:: 09563183 1 0 -heracles%1:18:00:: 09578005 1 0 -heracleum%1:20:00:: 12939664 1 0 -heracleum_sphondylium%1:20:00:: 12939874 1 0 -heraclitus%1:18:00:: 11044295 1 0 -herakles%1:18:00:: 09578005 1 0 -herald%1:10:00:: 06802571 2 0 -herald%1:18:00:: 10171219 1 1 -herald%2:32:00:: 00974173 1 1 -herald%2:32:01:: 00861725 2 1 -herald%2:32:02:: 00900376 3 0 -heralded%5:00:00:publicized:00 00469879 1 0 -heraldic%3:01:00:: 02993591 2 0 -heraldic%5:00:00:communicative:00 00498286 1 1 -heraldic_bearing%1:06:00:: 03008565 1 0 -heraldist%3:01:00:: 02993591 1 0 -heraldry%1:06:00:: 03515338 2 0 -heraldry%1:09:00:: 05801594 1 0 -herat%1:15:00:: 08703972 1 0 -herb%1:13:00:: 07811416 2 1 -herb%1:20:00:: 12205694 1 1 -herb_bennet%1:20:00:: 12632526 1 0 -herb_christopher%1:20:00:: 11723770 1 0 -herb_doctor%1:18:00:: 10171456 1 0 -herb_garden%1:06:00:: 03515644 1 0 -herb_mercury%1:20:00:: 12924036 1 0 -herb_of_grace%1:20:00:: 12707199 1 0 -herb_paris%1:20:00:: 12469517 1 0 -herb_robert%1:20:00:: 12686676 1 0 -herb_roberts%1:20:00:: 12686676 1 0 -herb_simon%1:18:00:: 11300893 1 0 -herb_tea%1:13:00:: 07933891 1 0 -herba_impia%1:20:00:: 11970298 1 0 -herbaceous%5:00:00:nonwoody:00 02576795 1 0 -herbaceous_plant%1:20:00:: 12205694 1 0 -herbage%1:20:00:: 12104501 1 0 -herbal%1:13:00:: 07933891 1 0 -herbal%3:01:00:: 02893195 1 0 -herbal_medicine%1:04:00:: 00613685 2 0 -herbal_medicine%1:06:00:: 03515500 1 0 -herbal_tea%1:13:00:: 07933891 1 0 -herbal_therapy%1:04:00:: 00700421 1 0 -herbalist%1:18:00:: 10171456 1 0 -herbarium%1:14:00:: 07958501 1 0 -herbart%1:18:00:: 11044517 1 0 -herbert%1:18:00:: 11044629 1 0 -herbert_a._simon%1:18:00:: 11300893 1 0 -herbert_alexander_simon%1:18:00:: 11300893 1 0 -herbert_blythe%1:18:00:: 10835218 1 0 -herbert_clark_hoover%1:18:00:: 11058633 1 0 -herbert_george_wells%1:18:00:: 11381193 1 0 -herbert_hoover%1:18:00:: 11058633 1 0 -herbert_kitchener%1:18:00:: 11106479 1 0 -herbert_marcuse%1:18:00:: 11156333 1 0 -herbert_marshall_mcluhan%1:18:00:: 11169595 1 0 -herbert_marx%1:18:00:: 11161228 1 0 -herbert_mclean_evans%1:18:00:: 10963467 1 0 -herbert_spencer%1:18:00:: 11310321 1 0 -herbicide%1:27:00:: 14906850 1 0 -herbivore%1:05:00:: 01324610 1 0 -herbivorous%3:00:00:: 00314023 1 0 -herbs_mercury%1:20:00:: 12924036 1 0 -herbs_robert%1:20:00:: 12686676 1 0 -herculaneum%1:15:00:: 08804049 1 0 -herculean%5:00:00:difficult:00 00747576 2 1 -herculean%5:00:00:superhuman:00 01261363 1 1 -hercules%1:17:00:: 09302263 2 0 -hercules%1:18:00:: 09578005 1 0 -hercules'-club%1:20:01:: 12715195 1 0 -hercules'-club%1:20:02:: 11797508 2 0 -hercules'-clubs%1:20:01:: 12715195 1 0 -hercules-club%1:20:01:: 12715195 1 0 -herculius%1:18:00:: 11166251 1 0 -herd%1:14:00:: 07994331 1 5 -herd%1:14:01:: 07994555 2 2 -herd%1:14:02:: 08183046 3 0 -herd%2:38:00:: 02028616 2 1 -herd%2:38:01:: 02028722 1 1 -herd%2:42:00:: 02652158 3 0 -herd's_grass%1:20:00:: 12130549 1 0 -herder%1:18:00:: 10171567 2 0 -herder%1:18:01:: 11044789 1 0 -herdsman%1:18:00:: 10171567 1 0 -here%1:15:00:: 08489497 1 1 -here%1:18:00:: 09563183 2 0 -here%4:02:00:: 00108479 1 187 -here%4:02:01:: 00108647 3 17 -here%4:02:02:: 00108773 2 91 -here%4:02:04:: 00109021 4 1 -here%5:00:00:present:02 01847242 1 2 -here_and_now%1:28:00:: 15120050 1 3 -here_and_there%4:02:00:: 00072649 1 8 -hereabout%4:02:00:: 00108366 1 0 -hereabouts%4:02:00:: 00108366 1 1 -hereafter%1:28:00:: 15121625 2 0 -hereafter%1:28:01:: 15143864 1 0 -hereafter%4:02:00:: 00355896 1 3 -hereafter%4:02:01:: 00032996 3 0 -hereafter%4:02:03:: 00033139 2 0 -hereby%4:02:00:: 00255614 1 7 -herediatry_spinal_ataxia%1:26:00:: 14091525 1 0 -hereditament%1:21:00:: 13245217 1 0 -hereditarianism%1:09:00:: 05971913 1 0 -hereditary%5:00:01:inheritable:00 01314537 1 0 -hereditary%5:00:02:inheritable:00 01314197 2 0 -hereditary_cerebellar_ataxia%1:26:00:: 14091757 1 0 -hereditary_condition%1:26:00:: 14151139 1 0 -hereditary_disease%1:26:00:: 14151139 1 0 -hereditary_motor_and_sensory_neuropathy%1:26:00:: 14208587 1 0 -hereditary_pattern%1:07:00:: 04922338 1 0 -heredity%1:07:00:: 04920867 2 0 -heredity%1:22:00:: 13493399 1 1 -hereford%1:05:00:: 02407625 1 0 -herein%4:02:00:: 00108913 1 1 -hereinafter%4:02:00:: 00355896 1 3 -hereinbefore%4:02:00:: 00356151 1 0 -hereness%1:26:00:: 13958672 1 0 -hereof%4:02:00:: 00356233 1 0 -herero%1:10:00:: 06993225 2 0 -herero%1:18:00:: 09692915 1 0 -heresy%1:09:00:: 05980412 2 0 -heresy%1:09:01:: 06212422 1 0 -heretic%1:18:00:: 10171755 1 1 -heretic%1:18:01:: 10171953 2 0 -heretical%5:00:00:unorthodox:00 01691474 1 0 -hereto%4:02:00:: 00356320 1 0 -heretofore%4:02:00:: 00027918 1 4 -hereunder%4:02:00:: 00355896 1 0 -hereunder%4:02:01:: 00033237 2 0 -hereupon%4:02:00:: 00356412 1 0 -herewith%4:02:00:: 00255614 1 0 -heritable%3:00:00:: 01313929 1 0 -heritage%1:04:00:: 00083585 4 0 -heritage%1:07:00:: 04921011 2 2 -heritage%1:09:00:: 05669797 1 6 -heritage%1:21:02:: 13262913 3 0 -heritiera%1:20:00:: 12199564 1 0 -heritiera_littoralis%1:20:00:: 12200143 1 0 -heritiera_macrophylla%1:20:00:: 12199982 1 0 -heritiera_trifoliolata%1:20:00:: 12199790 1 0 -heritor%1:18:00:: 10168584 1 0 -herm%1:06:00:: 03515728 1 0 -herman%1:18:00:: 11044939 1 0 -herman_hollerith%1:18:00:: 11056466 1 0 -herman_melville%1:18:00:: 11172795 1 1 -herman_northrop_frye%1:18:00:: 10984418 1 0 -herman_wouk%1:18:00:: 11398094 1 0 -hermann%1:18:00:: 10822786 1 0 -hermann_goering%1:18:00:: 11008647 1 0 -hermann_goring%1:18:00:: 11008647 1 0 -hermann_hesse%1:18:00:: 11048205 1 0 -hermann_joseph_muller%1:18:00:: 11195295 1 0 -hermann_ludwig_ferdinand_von_helmholtz%1:18:00:: 11039344 1 0 -hermann_maurice_saxe%1:18:00:: 11283300 1 0 -hermann_minkowski%1:18:00:: 11181255 1 0 -hermann_snellen%1:18:00:: 11306920 1 0 -hermann_von_helmholtz%1:18:00:: 11039344 1 0 -hermann_wilhelm_goring%1:18:00:: 11008647 1 0 -hermannia%1:20:00:: 12200315 1 0 -hermannia_verticillata%1:20:00:: 12200504 1 0 -hermaphrodism%1:26:00:: 14467975 1 0 -hermaphrodite%1:18:00:: 10172080 1 0 -hermaphrodite%5:00:00:androgynous:00 01479181 1 0 -hermaphrodite_brig%1:06:00:: 02901620 1 0 -hermaphroditic%5:00:00:androgynous:00 01479181 2 0 -hermaphroditic%5:00:00:monoclinous:00 01542629 1 0 -hermaphroditism%1:07:00:: 05008746 2 0 -hermaphroditism%1:26:00:: 14467975 1 0 -hermaphroditus%1:18:00:: 09562526 1 0 -hermeneutic%3:01:00:: 02626294 1 0 -hermeneutics%1:09:00:: 06183398 1 1 -hermes%1:18:00:: 09562319 1 0 -hermetic%5:00:00:tight:02 01398772 1 1 -hermetically%4:02:00:: 00356515 1 0 -hermissenda%1:05:00:: 01951472 1 0 -hermissenda_crassicornis%1:05:00:: 01951613 1 0 -hermit%1:18:00:: 10172448 2 0 -hermit%1:18:01:: 10519126 1 0 -hermit_crab%1:05:00:: 01986214 1 0 -hermit_thrush%1:05:00:: 01559477 1 0 -hermitage%1:06:00:: 03515934 1 0 -hermitic%5:00:00:unworldly:00 02578546 1 0 -hermitical%5:00:00:unworldly:00 02578546 1 0 -hermosillo%1:15:00:: 08743557 1 0 -hernan_cortes%1:18:00:: 10912243 1 0 -hernan_cortez%1:18:00:: 10912243 1 0 -hernando_cortes%1:18:00:: 10912243 1 0 -hernando_cortez%1:18:00:: 10912243 1 0 -hernaria%1:20:00:: 11810559 1 0 -hernaria_glabra%1:20:00:: 11810728 1 0 -hernia%1:26:00:: 14295389 1 0 -herniated_disc%1:26:00:: 14296579 1 0 -herniation%1:26:00:: 14295389 1 0 -hero%1:09:00:: 05929670 2 10 -hero%1:13:00:: 07697825 7 0 -hero%1:18:00:: 10325013 1 19 -hero%1:18:01:: 09906538 3 1 -hero%1:18:02:: 09554297 6 0 -hero%1:18:03:: 11045106 4 0 -hero%1:18:04:: 10173086 5 0 -hero-worship%2:37:00:: 01778017 1 0 -hero_of_alexandria%1:18:00:: 11045106 1 0 -hero_sandwich%1:13:00:: 07697825 1 0 -hero_worship%1:12:00:: 07501093 1 0 -hero_worshiper%1:18:00:: 10173665 1 0 -hero_worshipper%1:18:00:: 10173665 1 1 -herod%1:18:00:: 11045353 1 0 -herod_the_great%1:18:00:: 11045353 1 0 -herodotus%1:18:00:: 11045569 1 0 -heroic%1:10:00:: 06386156 1 0 -heroic%3:01:00:: 02740508 2 2 -heroic%5:00:00:bold:00 00251134 3 2 -heroic%5:00:00:brave:00 00263463 5 0 -heroic%5:00:00:impressive:00 01284544 4 1 -heroic%5:00:00:large:00 01386010 1 5 -heroic_couplet%1:10:00:: 06385842 1 0 -heroic_meter%1:10:00:: 06386156 1 0 -heroic_poem%1:10:00:: 06379721 1 0 -heroic_poetry%1:10:00:: 07093158 1 0 -heroic_stanza%1:10:00:: 06385997 1 0 -heroic_tale%1:10:00:: 06370268 1 0 -heroic_verse%1:10:00:: 06386156 1 0 -heroica_puebla_de_zaragoza%1:15:00:: 08745011 1 0 -heroical%5:00:00:bold:00 00251134 1 0 -heroically%4:02:00:: 00356630 1 0 -heroics%1:04:00:: 00551714 1 1 -heroin%1:06:00:: 03516011 1 0 -heroin_addict%1:18:00:: 10173579 1 0 -heroin_addiction%1:26:00:: 14065071 1 0 -heroine%1:18:00:: 10173410 2 0 -heroine%1:18:01:: 10173305 1 2 -heroism%1:07:00:: 04857738 1 2 -heron%1:05:00:: 02008041 2 0 -heron%1:18:00:: 11045106 1 0 -heron's_bill%1:20:00:: 12688716 1 0 -heronry%1:15:00:: 08583455 1 0 -herpangia%1:26:00:: 14177848 1 0 -herpes%1:05:00:: 01338685 2 0 -herpes%1:26:00:: 14131950 1 0 -herpes_encephalitis%1:26:00:: 14343062 1 0 -herpes_genitalis%1:26:00:: 14132524 1 0 -herpes_labialis%1:26:00:: 14132375 1 0 -herpes_simplex%1:05:00:: 01338908 2 0 -herpes_simplex%1:26:00:: 14132102 1 0 -herpes_simplex_1%1:05:00:: 01339083 1 0 -herpes_simplex_2%1:05:00:: 01339206 1 0 -herpes_simplex_encephalitis%1:26:00:: 14343062 1 0 -herpes_simplex_virus%1:05:00:: 01338908 1 0 -herpes_varicella_zoster%1:05:00:: 01339471 1 0 -herpes_varicella_zoster_virus%1:05:00:: 01339471 1 0 -herpes_virus%1:05:00:: 01338685 1 0 -herpes_zoster%1:05:00:: 01339336 2 0 -herpes_zoster%1:26:00:: 14132829 1 0 -herpes_zoster_virus%1:05:00:: 01339336 1 0 -herpestes%1:05:00:: 02137428 1 0 -herpestes_ichneumon%1:05:00:: 02137888 1 0 -herpestes_nyula%1:05:00:: 02137722 1 0 -herpetologist%1:18:00:: 10172668 1 3 -herpetology%1:09:00:: 06072776 1 0 -herr%1:10:00:: 06341127 2 0 -herr%1:18:00:: 10173771 1 0 -herrenvolk%1:14:00:: 07968550 1 0 -herrerasaur%1:05:00:: 01714843 1 0 -herrerasaurus%1:05:00:: 01714843 1 0 -herrick%1:18:00:: 11045796 1 0 -herring%1:05:00:: 02532028 2 0 -herring%1:13:00:: 07784522 1 0 -herring_gull%1:05:00:: 02042046 1 0 -herring_hog%1:05:00:: 02070624 1 0 -herring_salad%1:13:00:: 07808268 1 0 -herringbone%1:06:00:: 03516266 1 1 -herringbone%1:06:01:: 03516367 2 0 -herringbone_pattern%1:06:00:: 03516367 1 0 -herschel%1:18:00:: 11045898 2 0 -herschel%1:18:01:: 11046169 1 0 -herschelian_telescope%1:06:00:: 03516647 1 0 -hershey%1:15:00:: 09135894 2 0 -hershey%1:18:00:: 11046457 1 0 -hershey_bar%1:13:00:: 07603613 1 0 -hertfordshire%1:15:00:: 08882807 1 0 -hertha%1:18:00:: 09585757 1 0 -hertz%1:18:00:: 11046722 3 0 -hertz%1:18:01:: 11046934 2 0 -hertz%1:28:00:: 15279104 1 0 -hertzian%3:01:00:: 03072518 1 0 -hertzian_wave%1:19:00:: 11451310 1 0 -herzberg%1:18:00:: 11047139 1 0 -heshvan%1:28:00:: 15214639 1 0 -hesiod%1:18:00:: 11047333 1 0 -hesitance%1:12:00:: 07523485 1 0 -hesitancy%1:07:00:: 04645943 2 0 -hesitancy%1:12:00:: 07523485 1 1 -hesitant%5:00:00:indecisive:01 00686573 1 0 -hesitantly%4:02:00:: 00146120 1 2 -hesitate%2:42:00:: 02640440 1 16 -hesitate%2:42:01:: 02641035 2 9 -hesitater%1:18:00:: 10603528 1 0 -hesitating%5:00:00:indecisive:01 00686573 1 1 -hesitatingly%4:02:00:: 00146120 1 0 -hesitation%1:04:00:: 01063350 3 1 -hesitation%1:07:01:: 04645943 2 2 -hesitation%1:09:00:: 05699434 1 4 -hesitator%1:18:00:: 10603528 1 0 -hesperian%5:00:00:western:01 00825375 1 0 -hesperides%1:18:00:: 09549216 1 0 -hesperiphona%1:05:00:: 01540432 1 0 -hesperiphona_vespertina%1:05:00:: 01540566 1 0 -hesperis%1:20:00:: 11888621 1 0 -hesperis_matronalis%1:20:00:: 11888800 1 0 -hesperus%1:17:00:: 09276872 1 0 -hess%1:18:00:: 11047521 4 0 -hess%1:18:01:: 11047701 3 0 -hess%1:18:02:: 11047961 2 0 -hess%1:18:03:: 11048109 1 0 -hesse%1:18:00:: 11048205 1 0 -hessian%1:06:00:: 03516844 1 0 -hessian_boot%1:06:00:: 03516844 1 0 -hessian_fly%1:05:00:: 02189670 1 0 -hessonite%1:27:00:: 14903466 1 0 -hestia%1:18:00:: 09563998 1 0 -het%5:00:00:hot:01 01249309 1 0 -het_up%5:00:00:emotional:00 00855309 2 0 -het_up%5:00:00:hot:01 01249309 1 1 -heteranthera%1:20:00:: 12610609 1 0 -heteranthera_dubia%1:20:00:: 12610740 1 0 -heterobasidiomycetes%1:20:00:: 12997432 1 0 -heterocephalus%1:05:00:: 02369424 1 0 -heterocercal%3:00:00:: 02590891 1 0 -heterocercal_fin%1:05:00:: 02467133 1 0 -heterocycle%1:17:00:: 09302400 2 0 -heterocycle%1:27:00:: 15025397 1 0 -heterocyclic%1:27:00:: 15025397 1 0 -heterocyclic%5:00:00:cyclic:02 00676999 1 0 -heterocyclic_compound%1:27:00:: 15025397 1 0 -heterocyclic_ring%1:17:00:: 09302400 1 0 -heterodactyl%3:00:00:: 01198433 1 0 -heterodactyl_foot%1:05:00:: 02155014 1 0 -heterodon%1:05:00:: 01729133 1 0 -heterodox%5:00:00:unorthodox:00 01691474 1 0 -heterodoxy%1:07:00:: 04800729 2 0 -heterodoxy%1:09:00:: 06212422 1 0 -heterodyne%2:35:00:: 01461646 1 0 -heterodyne%3:01:00:: 02740649 1 0 -heterodyne_oscillator%1:06:00:: 03681813 1 0 -heterodyne_receiver%1:06:00:: 03516996 1 0 -heteroecious%3:00:00:: 00180835 1 0 -heterogeneity%1:07:00:: 04751098 1 0 -heterogeneous%3:00:00:: 01198737 1 4 -heterogeneous%3:00:02:: 00181373 2 0 -heterogeneousness%1:07:00:: 04751098 1 0 -heterogenesis%1:19:00:: 11424194 1 0 -heterogenous%3:00:00:: 00181373 2 0 -heterogenous%3:00:01:: 01198737 1 0 -heterograft%1:08:00:: 05583624 1 0 -heteroicous%5:00:00:monoecious:00 01543225 1 0 -heterokontae%1:05:00:: 01400575 1 0 -heterokontophyta%1:05:00:: 01399529 1 0 -heterologic%3:00:00:: 01221057 1 0 -heterological%3:00:00:: 01221057 1 0 -heterologous%3:00:01:: 01220311 2 0 -heterologous%3:00:02:: 01221057 1 0 -heterology%1:07:00:: 04750547 1 0 -heteromeles%1:20:00:: 12632875 1 0 -heteromeles_arbutifolia%1:20:00:: 12633061 1 0 -heterometabolic%5:00:00:metamorphic:00 01530378 1 0 -heterometabolism%1:22:00:: 13493003 1 0 -heterometabolous%5:00:00:metamorphic:00 01530378 1 0 -heterometaboly%1:22:00:: 13493003 1 0 -heteromyidae%1:05:00:: 02348405 1 0 -heteronym%1:10:00:: 06292290 1 0 -heterophil_antibody%1:27:00:: 15029292 1 0 -heterophil_test%1:09:00:: 05739965 1 0 -heterophile_antibody%1:27:00:: 15029292 1 0 -heteroploid%1:05:00:: 01320479 1 0 -heteroploidy%1:26:00:: 14570846 1 0 -heteroptera%1:05:00:: 02241184 1 0 -heteropterous_insect%1:05:00:: 02241569 1 0 -heteroscelus%1:05:00:: 02030442 1 0 -heteroscelus_incanus%1:05:00:: 02030568 1 0 -heterosexism%1:04:00:: 01154772 1 0 -heterosexual%1:18:00:: 10173895 1 0 -heterosexual%3:00:00:: 01201100 1 0 -heterosexual_person%1:18:00:: 10173895 1 0 -heterosexualism%1:04:00:: 00857664 1 0 -heterosexuality%1:04:00:: 00857664 1 0 -heterosis%1:07:00:: 04922597 1 0 -heterosomata%1:05:00:: 02657083 1 0 -heterosporous%3:01:00:: 02740793 1 0 -heterospory%1:22:00:: 13493566 1 0 -heterostracan%1:05:00:: 01475232 1 0 -heterostraci%1:05:00:: 01475025 1 0 -heterotaxy%1:26:00:: 14103998 1 0 -heterotheca%1:20:00:: 11981314 1 0 -heterotheca_villosa%1:20:00:: 11981475 1 0 -heterothermic%5:00:00:cold-blooded:00 02533075 1 0 -heterotrichales%1:05:00:: 01401296 1 0 -heterotroph%1:03:00:: 00006024 1 0 -heterotrophic%3:01:00:: 02652877 1 0 -heterozygosity%1:26:00:: 14569508 1 0 -heterozygote%1:08:00:: 05432230 1 0 -heterozygous%3:00:00:: 01200915 1 2 -heth%1:10:00:: 06837465 1 0 -heuchera%1:20:00:: 12798041 1 0 -heuchera_americana%1:20:00:: 12798466 1 0 -heuchera_cylindrica%1:20:00:: 12798632 1 0 -heuchera_sanguinea%1:20:00:: 12798910 1 0 -heulandite%1:27:00:: 15107362 1 0 -heuristic%1:09:00:: 05847956 1 0 -heuristic%3:00:00:: 00092933 1 0 -heuristic_program%1:09:00:: 05847956 1 0 -heuristic_rule%1:09:00:: 05847956 1 0 -hevea%1:20:00:: 12925836 1 0 -hevea_brasiliensis%1:20:00:: 12926039 1 0 -hevesy%1:18:00:: 11048389 1 0 -hew%2:35:00:: 01260428 2 0 -hew%2:35:02:: 01260685 1 0 -hew_out%2:35:00:: 01260685 1 0 -hewer%1:18:00:: 10174148 1 0 -hewn%5:00:00:cut:03 00663576 1 0 -hex%1:10:00:: 07160424 1 1 -hex%2:32:00:: 00776988 1 0 -hex%3:01:00:: 02741658 1 0 -hex_nut%1:06:00:: 03517427 1 0 -hexachlorophene%1:06:00:: 03517271 1 0 -hexacosanoic_acid%1:27:00:: 14610548 1 0 -hexad%1:23:00:: 13744722 1 0 -hexadecanoic_acid%1:27:00:: 14973303 1 0 -hexadecimal%3:01:00:: 02741658 1 0 -hexadecimal_digit%1:23:00:: 13741903 1 0 -hexadecimal_notation%1:10:00:: 06811283 1 0 -hexadecimal_number_system%1:10:00:: 06811419 1 0 -hexadecimal_system%1:10:00:: 06811419 1 0 -hexadrol%1:27:00:: 14753808 1 0 -hexagon%1:25:00:: 13882276 1 0 -hexagonal%3:01:00:: 02741797 1 0 -hexagram%1:25:00:: 13880811 1 0 -hexagrammidae%1:05:00:: 02648456 1 0 -hexagrammos%1:05:00:: 02648769 1 0 -hexagrammos_decagrammus%1:05:00:: 02648916 1 0 -hexahedron%1:25:00:: 13915305 1 0 -hexalectris%1:20:00:: 12068824 1 0 -hexalectris_spicata%1:20:00:: 12069009 1 0 -hexalectris_warnockii%1:20:00:: 12069217 1 0 -hexameter%1:10:00:: 07096237 1 1 -hexamita%1:05:00:: 01420164 1 0 -hexanchidae%1:05:00:: 01482754 1 0 -hexanchus%1:05:00:: 01482887 1 0 -hexanchus_griseus%1:05:00:: 01483021 1 0 -hexane%1:27:00:: 14907122 1 0 -hexanedioic_acid%1:27:00:: 14612317 1 0 -hexangular%3:01:00:: 02741797 1 0 -hexanoic_acid%1:27:00:: 14791988 1 0 -hexapod%1:05:00:: 02157206 1 0 -hexapoda%1:05:00:: 02159271 1 0 -hexed%5:00:00:unlucky:00 01468850 1 0 -hexenbesen%1:20:00:: 12521624 1 0 -hexestrol%1:27:00:: 14751055 1 0 -hexose%1:27:00:: 14690186 1 0 -heyday%1:28:00:: 15295045 1 2 -heyerdahl%1:18:00:: 11048586 1 0 -heyrovsky%1:18:00:: 11048739 1 0 -heyse%1:18:00:: 11048879 1 0 -heyward%1:18:00:: 11049001 1 0 -hezbollah%1:14:00:: 08023374 1 0 -hezekiah%1:18:00:: 11049128 1 0 -hf%1:07:00:: 05057593 2 0 -hf%1:27:00:: 14639556 1 0 -hfc%1:27:00:: 14912556 1 0 -hg%1:23:00:: 13724474 2 0 -hg%1:27:00:: 14645346 1 0 -hhs%1:14:00:: 08133536 1 0 -hi%1:10:00:: 06632511 1 1 -hi%1:15:00:: 09078231 2 0 -hi-fi%1:04:00:: 01020488 2 0 -hi-fi%1:06:00:: 03517760 1 0 -hi-fi%5:00:00:accurate:00 00022680 1 0 -hi-tech%3:00:00:: 01208571 1 0 -hiatal_hernia%1:26:00:: 14296399 1 0 -hiatus%1:08:00:: 05545439 3 0 -hiatus%1:10:00:: 07008947 2 0 -hiatus%1:11:00:: 07368256 1 0 -hiatus_hernia%1:26:00:: 14296399 1 0 -hiawatha%1:18:00:: 11049278 1 0 -hiba_arborvitae%1:20:00:: 11644872 1 0 -hibachi%1:06:00:: 03517509 1 0 -hibachi%2:30:00:: 00327010 1 1 -hibbertia%1:20:00:: 12363580 1 0 -hibbing%1:15:00:: 09102655 1 0 -hibernal%5:00:00:wintry:00 01256076 1 0 -hibernate%2:29:00:: 00015946 1 2 -hibernate%2:41:00:: 02596004 2 0 -hibernating%5:00:00:asleep:00 00188155 1 0 -hibernation%1:04:00:: 00212377 3 0 -hibernation%1:26:00:: 14014849 1 0 -hibernation%1:26:01:: 14013981 2 0 -hibernia%1:15:00:: 08859173 1 0 -hibiscus%1:20:00:: 12177844 1 0 -hibiscus_cannabinus%1:20:00:: 12178129 1 0 -hibiscus_elatus%1:20:00:: 12178494 1 0 -hibiscus_esculentus%1:20:00:: 12171966 1 0 -hibiscus_farragei%1:20:00:: 12185859 1 0 -hibiscus_heterophyllus%1:20:00:: 12178780 1 0 -hibiscus_moschatus%1:20:00:: 12172481 1 0 -hibiscus_moscheutos%1:20:00:: 12178896 1 0 -hibiscus_mutabilis%1:20:00:: 12179122 1 0 -hibiscus_rosa-sinensis%1:20:00:: 12179391 1 0 -hibiscus_sabdariffa%1:20:00:: 12179632 1 0 -hibiscus_syriacus%1:20:00:: 12179907 1 0 -hibiscus_tiliaceus%1:20:00:: 12180168 1 0 -hibiscus_trionum%1:20:00:: 12180456 1 0 -hiccough%1:26:00:: 14359459 1 0 -hiccough%2:29:00:: 00003826 1 0 -hiccough_nut%1:20:00:: 12324222 1 0 -hiccup%1:26:00:: 14359459 1 0 -hiccup%2:29:00:: 00003826 1 0 -hiccup_nut%1:20:00:: 12324222 1 0 -hick%1:18:00:: 10804102 1 0 -hick%5:00:00:provincial:00 00636891 1 0 -hickey%1:26:00:: 14226862 2 0 -hickey%1:26:01:: 14334306 1 0 -hickock%1:18:00:: 11049443 1 0 -hickory%1:20:00:: 12320010 2 0 -hickory%1:20:02:: 12320285 1 0 -hickory_nut%1:13:00:: 07774295 1 0 -hickory_pine%1:20:00:: 11617631 1 0 -hickory_tree%1:20:00:: 12320010 1 0 -hidatsa%1:10:00:: 06909932 2 0 -hidatsa%1:18:00:: 09656205 1 0 -hidden%5:00:00:concealed:00 02089377 3 0 -hidden%5:00:00:invisible:00 02517817 1 7 -hidden%5:00:02:concealed:00 02089514 2 0 -hidden_reserve%1:21:00:: 13369567 1 0 -hidden_tax%1:21:00:: 13314085 1 0 -hiddenite%1:27:00:: 15052413 1 0 -hiddenness%1:26:00:: 14416349 1 0 -hide%1:05:00:: 01895735 2 2 -hide%1:27:00:: 14759275 1 2 -hide%2:30:00:: 00313987 4 0 -hide%2:35:00:: 01582200 3 0 -hide%2:39:00:: 02144835 1 28 -hide%2:39:01:: 02145814 2 6 -hide-and-seek%1:04:00:: 00484910 1 0 -hide_and_go_seek%1:04:00:: 00484910 1 0 -hide_out%2:39:00:: 02145814 1 1 -hideaway%1:06:00:: 03517647 2 0 -hideaway%1:15:00:: 08584218 1 1 -hidebound%5:00:00:conservative:00 00575012 1 0 -hideki_yukawa%1:18:00:: 11404402 1 0 -hideous%5:00:00:offensive:01 01626562 1 3 -hideous%5:00:00:ugly:00 00221934 2 2 -hideously%4:02:00:: 00356765 1 1 -hideousness%1:07:00:: 04691061 1 0 -hideout%1:15:00:: 08584218 1 3 -hideyo_noguchi%1:18:00:: 11209019 1 0 -hiding%1:04:00:: 01048912 1 2 -hiding%1:26:00:: 14575952 2 0 -hiding_place%1:15:00:: 08584449 1 5 -hidrosis%1:22:00:: 13535261 1 0 -hidrotic%3:01:00:: 02741943 1 0 -hie%2:38:00:: 02058994 1 0 -hiemal%5:00:00:wintry:00 01256076 1 0 -hieracium%1:20:00:: 11981817 1 0 -hieracium_aurantiacum%1:20:00:: 12003814 1 0 -hieracium_pilocella%1:20:00:: 12004120 1 0 -hieracium_praealtum%1:20:00:: 11982342 1 0 -hieracium_venosum%1:20:00:: 11982545 1 0 -hierarch%1:18:00:: 09807075 2 0 -hierarch%1:18:01:: 10169937 1 0 -hierarchal%3:00:00:: 01203288 1 0 -hierarchic%3:00:00:: 01203288 1 0 -hierarchical%3:00:00:: 01203288 1 0 -hierarchical_classification_system%1:09:00:: 05732446 1 0 -hierarchical_data_structure%1:09:00:: 05732273 1 0 -hierarchical_menu%1:10:00:: 06493721 1 0 -hierarchical_structure%1:09:00:: 05732273 1 0 -hierarchically%4:02:00:: 00255741 1 0 -hierarchy%1:14:00:: 08377806 1 2 -hierarchy%1:14:01:: 08376051 2 2 -hieratic%1:10:00:: 06362260 1 0 -hieratic%3:01:00:: 02742039 2 0 -hieratic%3:01:01:: 02899666 1 0 -hieratic%5:00:00:nonrepresentational:00 01981243 3 0 -hieratic_script%1:10:00:: 06362260 1 0 -hieratical%3:01:01:: 02899666 1 0 -hierocracy%1:14:00:: 08363622 1 0 -hieroglyph%1:10:00:: 06362441 2 0 -hieroglyph%1:10:01:: 06403679 1 0 -hieroglyphic%1:10:00:: 06362441 2 0 -hieroglyphic%1:10:01:: 06403679 1 0 -hieroglyphic%3:01:00:: 02742206 2 0 -hieroglyphic%3:01:01:: 02742403 1 0 -hieroglyphical%3:01:00:: 02742206 2 0 -hieroglyphical%3:01:01:: 02742403 1 0 -hieroglyphically%4:02:00:: 00142330 1 0 -hierolatry%1:04:00:: 01046257 1 0 -hieronymus%1:18:00:: 11083064 1 0 -hieronymus_bosch%1:18:00:: 10858468 1 0 -hifalutin%5:00:00:pretentious:00 01850288 1 0 -higginson%1:18:00:: 11049608 1 0 -higgle%2:40:00:: 02259547 1 0 -higgledy-piggledy%4:02:00:: 00255854 1 0 -higgledy-piggledy%5:00:00:untidy:00 02425529 1 0 -high%1:06:00:: 03518631 7 0 -high%1:07:00:: 05097536 1 5 -high%1:14:00:: 08409617 6 0 -high%1:15:00:: 08584618 5 0 -high%1:26:00:: 14520670 2 0 -high%1:26:01:: 14405452 4 0 -high%1:26:02:: 14405621 3 0 -high%3:00:01:: 01204557 2 51 -high%3:00:02:: 01210854 1 134 -high%3:00:03:: 01213197 4 7 -high%4:02:00:: 00356957 1 9 -high%4:02:01:: 00357052 4 0 -high%4:02:02:: 00357139 2 2 -high%4:02:03:: 00357251 3 0 -high%5:00:00:elated:00 00705498 5 2 -high%5:00:00:intoxicated:00 00799224 7 0 -high%5:00:00:malodorous:00 01054047 6 0 -high%5:00:00:superior:01 02339120 3 10 -high-altitude%5:00:00:high:01 01205746 1 0 -high-and-mighty%5:00:00:domineering:00 00787595 1 0 -high-angle_fire%1:04:00:: 00994745 1 0 -high-angle_gun%1:06:00:: 03517982 1 0 -high-backed%5:00:00:backed:00 00200431 1 1 -high-bush_blueberry%1:20:00:: 12247664 1 0 -high-ceilinged%5:00:00:ceilinged:00 01209984 1 1 -high-class%5:00:00:elegant:00 00850434 1 0 -high-crowned%5:00:00:crowned:00 00654596 1 0 -high-definition_television%1:10:00:: 06278475 1 0 -high-density_lipoprotein%1:27:00:: 14907349 1 0 -high-energy%3:01:00:: 02742564 1 0 -high-energy%5:00:00:dynamic:00 00809343 3 0 -high-energy%5:00:00:energetic:00 00874781 2 0 -high-energy_physics%1:09:00:: 06101551 1 0 -high-fidelity%5:00:00:accurate:00 00022680 1 0 -high-five%1:10:00:: 07015242 1 0 -high-flown%5:00:00:noble:01 01588619 2 0 -high-flown%5:00:00:pretentious:00 01850446 1 0 -high-grade%5:00:00:best:00 00228173 1 0 -high-handed%5:00:00:domineering:00 00788145 1 0 -high-handedly%4:02:00:: 00357376 1 0 -high-handedness%1:07:00:: 04887912 1 0 -high-hat_cymbal%1:06:00:: 03518829 1 0 -high-interest%3:00:00:: 01210717 1 0 -high-keyed%5:00:00:excitable:00 00918939 1 0 -high-level%5:00:00:high:01 01205746 2 0 -high-level%5:00:00:superior:01 02339577 1 0 -high-level_formatting%1:10:00:: 06637149 1 0 -high-level_language%1:10:00:: 06899845 1 0 -high-level_radioactive_waste%1:27:00:: 14907703 1 0 -high-low%1:04:00:: 00497713 1 0 -high-low-jack%1:04:00:: 00489730 1 0 -high-minded%5:00:00:noble:01 01588619 1 0 -high-mindedly%4:02:00:: 00357520 1 0 -high-mindedness%1:07:00:: 04870643 1 0 -high-muck-a-muck%1:18:00:: 10174971 1 0 -high-necked%5:00:00:necked:00 01209351 1 0 -high-octane%5:00:00:dynamic:00 00809343 2 0 -high-octane%5:00:00:efficient:00 00840634 1 0 -high-pass_filter%1:06:00:: 03519226 1 0 -high-performance%5:00:00:superior:02 02343636 1 0 -high-pitched%3:00:00:: 01213197 1 4 -high-pitched%5:00:00:inclined:01 01234952 2 1 -high-potential%5:00:00:high-tension:00 01829835 1 0 -high-power%5:00:00:dynamic:00 00809343 1 0 -high-powered%5:00:00:dynamic:00 00809343 1 1 -high-powered%5:00:00:powered:00 01828836 2 0 -high-pressure%5:00:00:aggressive:00 00083296 1 0 -high-priced%5:00:00:expensive:00 00933599 1 2 -high-principled%5:00:00:principled:00 01551377 1 0 -high-protein_diet%1:13:00:: 07563207 1 0 -high-ranking%5:00:00:superior:01 02339577 1 0 -high-resolution%3:00:00:: 01218007 1 1 -high-rise%1:06:00:: 03519387 1 0 -high-rise%3:00:00:: 01218341 1 0 -high-risk%5:00:00:unsound:00 02274537 1 0 -high-sounding%5:00:00:pretentious:00 01850446 1 0 -high-speed%5:00:01:fast:01 00978429 1 2 -high-speed_steel%1:27:00:: 14907867 1 0 -high-spirited%5:00:00:spirited:00 02279723 1 2 -high-spiritedness%1:07:00:: 04634161 1 0 -high-stepped%5:00:00:high:01 01205886 1 1 -high-stepping%5:00:00:high:01 01205886 1 0 -high-strength_brass%1:27:00:: 14947125 1 0 -high-strung%5:00:00:tense:03 02406370 1 0 -high-sudsing%3:00:00:: 01210477 1 1 -high-tail%2:38:00:: 02092907 1 1 -high-tech%3:00:00:: 01208571 1 0 -high-tension%3:00:00:: 01829652 1 0 -high-ticket%5:00:00:expensive:00 00933415 1 0 -high-toned%5:00:00:elegant:00 00850434 1 0 -high-top%5:00:00:high:01 01206046 1 0 -high-topped%5:00:00:high:01 01206046 1 1 -high-up%1:18:00:: 10748620 1 0 -high-velocity%5:00:00:fast:01 00978429 1 0 -high-vitamin_diet%1:13:00:: 07563366 1 0 -high-voltage%5:00:00:dynamic:00 00809343 2 0 -high-voltage%5:00:00:high-tension:00 01829835 1 0 -high-warp_loom%1:06:00:: 03519848 1 0 -high-water_mark%1:15:00:: 08679167 1 0 -high-yield%5:00:00:fruitful:00 01081917 1 0 -high-yield_bond%1:21:00:: 13338439 1 0 -high_altar%1:06:00:: 03517899 1 0 -high_and_low%4:02:00:: 00026061 1 1 -high_anglican_church%1:14:00:: 08088963 1 0 -high_anglicanism%1:09:00:: 06229240 1 1 -high_bar%1:06:00:: 03535780 1 0 -high_beam%1:19:00:: 11472699 1 0 -high_blood_pressure%1:26:00:: 14103510 1 0 -high_brass%1:27:00:: 14907273 1 0 -high_church%1:14:00:: 08088963 1 0 -high_colonic%1:04:00:: 00253773 1 0 -high_comedy%1:10:00:: 07016428 1 0 -high_command%1:14:00:: 08405267 1 0 -high_commission%1:14:00:: 08402944 1 0 -high_commissioner%1:18:00:: 10174445 1 0 -high_country%1:15:00:: 08498163 1 0 -high_court%1:14:00:: 08336188 1 0 -high_dam%1:06:00:: 02751623 1 0 -high_dudgeon%1:12:00:: 07516756 1 0 -high_energy_physics%1:09:00:: 06101551 1 0 -high_explosive%1:27:00:: 14853210 1 2 -high_fashion%1:09:00:: 05751063 1 0 -high_fidelity%1:04:00:: 01020488 1 4 -high_fidelity_sound_system%1:06:00:: 03517760 1 0 -high_finance%1:04:00:: 01099231 1 1 -high_frequency%1:07:00:: 04985790 2 1 -high_frequency%1:07:01:: 05057593 1 1 -high_gear%1:06:00:: 03518631 1 0 -high_german%1:10:00:: 06950528 1 0 -high_ground%1:26:00:: 13949463 1 0 -high_hat%1:06:01:: 03518829 1 0 -high_hat%1:06:02:: 03237416 2 0 -high_holiday%1:28:00:: 15184008 1 0 -high_holy_day%1:28:00:: 15184008 1 0 -high_horse%1:09:00:: 06195555 1 0 -high_jinks%1:04:00:: 00510050 1 0 -high_jinx%1:04:00:: 00510050 1 0 -high_jump%1:04:00:: 00440509 2 0 -high_jump%1:11:00:: 07469476 1 0 -high_life%1:04:00:: 00743641 1 0 -high_mallow%1:20:00:: 12171503 1 0 -high_mass%1:04:00:: 01042465 1 0 -high_muckamuck%1:18:00:: 10748620 1 0 -high_noon%1:28:00:: 15165490 1 0 -high_pitch%1:07:00:: 04985790 1 0 -high_point%1:09:00:: 05868779 1 0 -high_priest%1:18:00:: 09807075 2 0 -high_priest%1:18:01:: 10175248 1 0 -high_profile%1:26:00:: 13950703 1 0 -high_quality%1:07:00:: 04728376 1 1 -high_relief%1:06:00:: 02700422 1 0 -high_renaissance%1:07:00:: 04929742 1 0 -high_roller%1:18:00:: 10175418 2 0 -high_roller%1:18:01:: 10635625 1 0 -high_school%1:14:00:: 08409617 1 37 -high_sea%1:17:00:: 09302804 1 1 -high_season%1:28:00:: 15238570 1 0 -high_sierra%1:17:00:: 09434845 1 0 -high_sign%1:10:00:: 06806318 1 0 -high_society%1:14:00:: 08387930 1 2 -high_spirits%1:12:00:: 07527656 1 1 -high_spot%1:24:00:: 13810141 1 0 -high_status%1:26:00:: 13948441 1 0 -high_stepper%1:05:00:: 02388588 1 0 -high_street%1:06:00:: 03712729 1 0 -high_style%1:09:00:: 05751063 1 0 -high_table%1:06:00:: 03519674 1 0 -high_tea%1:13:00:: 07575392 1 0 -high_tech%1:04:00:: 00950858 1 0 -high_technology%1:04:00:: 00950858 1 0 -high_temperature%1:07:00:: 05016171 1 2 -high_tide%1:11:00:: 07401960 1 0 -high_time%1:28:00:: 15245711 1 1 -high_treason%1:04:00:: 00782072 1 0 -high_up%4:02:00:: 00356957 1 1 -high_water%1:11:00:: 07401960 1 0 -high_wind%1:19:00:: 11443057 1 0 -high_wire%1:06:00:: 03520399 1 0 -highball%1:13:00:: 07912211 1 0 -highball_glass%1:06:00:: 03518135 1 0 -highbinder%1:18:00:: 10174253 1 0 -highboard%1:06:00:: 03518230 1 0 -highborn%5:00:00:noble:02 01591227 1 0 -highboy%1:06:00:: 03518305 1 0 -highbrow%1:18:00:: 10174330 1 0 -highbrow%5:00:00:intellectual:00 01332907 1 0 -highbrowed%5:00:00:intellectual:00 01332907 1 0 -highbush_cranberry%1:20:00:: 12680402 1 0 -highchair%1:06:00:: 03518445 1 0 -higher%5:00:01:high:02 01211828 2 1 -higher%5:00:02:high:02 01211962 1 10 -higher-ranking%5:00:00:senior:00 02100566 1 0 -higher-up%1:18:00:: 10676018 1 0 -higher_cognitive_process%1:09:00:: 05770664 1 0 -higher_criticism%1:10:00:: 06375329 1 0 -higher_education%1:04:00:: 00886699 1 1 -higher_law%1:10:00:: 06655569 1 0 -higher_national_diploma%1:10:00:: 06478734 1 0 -higher_rank%1:26:00:: 13949576 1 0 -higher_status%1:26:00:: 13949576 1 0 -higher_up%4:02:00:: 00080169 1 0 -highest_common_factor%1:23:00:: 13735163 1 0 -highfalutin%5:00:00:pretentious:00 01850288 1 0 -highfaluting%5:00:00:pretentious:00 01850288 1 0 -highflier%1:18:00:: 10174589 1 0 -highflyer%1:18:00:: 10174589 1 0 -highflying%5:00:00:ascending:00 02485319 1 0 -highflying%5:00:00:unrestrained:00 02001406 2 0 -highjack%1:04:00:: 00769944 1 0 -highjack%2:35:00:: 01471825 1 0 -highjacker%1:18:00:: 10175507 2 0 -highjacker%1:18:01:: 10175725 1 0 -highjacking%1:04:00:: 00783199 1 0 -highland%1:17:00:: 09302616 1 0 -highland%3:00:04:: 01219111 1 0 -highland_fling%1:04:00:: 00538791 1 0 -highland_scot%1:18:00:: 10174695 1 0 -highlander%1:18:00:: 10174695 2 0 -highlander%1:18:01:: 10174845 1 0 -highlands%1:15:00:: 08891595 1 0 -highlands_of_scotland%1:15:00:: 08891595 1 0 -highlife%1:04:00:: 00743641 1 0 -highlight%1:07:00:: 04952120 2 0 -highlight%1:24:00:: 13810141 1 0 -highlight%2:29:00:: 00041206 2 0 -highlight%2:30:00:: 00514069 1 2 -highlighter%1:06:00:: 03518943 2 0 -highlighter%1:06:01:: 03519081 1 0 -highlighting%1:07:00:: 04952120 1 0 -highly%4:02:00:: 00089267 3 0 -highly%4:02:01:: 00089408 1 1 -highly%4:02:05:: 00089643 2 0 -highly-developed%5:00:00:industrial:00 01301840 1 0 -highly-sexed%5:00:00:sexy:00 02134286 1 0 -highly_active_antiretroviral_therapy%1:06:00:: 03248560 1 0 -highly_infective%5:00:00:virulent:00 00045735 1 0 -highly_sensitive%5:00:00:sensitive:01 02104396 1 0 -highly_strung%5:00:00:tense:03 02406370 1 0 -highness%1:07:00:: 05137402 2 0 -highness%1:07:01:: 05097361 3 0 -highness%1:18:00:: 10175090 1 1 -highroad%1:06:00:: 03519578 1 6 -highschool%1:14:00:: 08409617 1 1 -hightail%2:38:00:: 02010255 1 0 -hightail_it%2:38:00:: 02075049 1 0 -highwater%1:11:00:: 07401960 1 0 -highway%1:06:00:: 03519981 1 12 -highway_code%1:10:00:: 06669384 1 0 -highway_engineer%1:18:00:: 10175963 1 0 -highway_robbery%1:04:00:: 00783419 2 0 -highway_robbery%1:21:00:: 13304927 1 0 -highway_system%1:06:00:: 03520275 1 0 -highwayman%1:18:00:: 10175507 1 2 -higi%1:10:00:: 06983997 1 0 -hijab%1:04:00:: 00414599 2 0 -hijab%1:06:00:: 03520493 1 0 -hijack%1:04:00:: 00769944 1 0 -hijack%2:35:00:: 01471825 1 2 -hijack%2:40:00:: 02275034 2 0 -hijacker%1:18:00:: 10175507 1 1 -hijacker%1:18:01:: 10175725 2 0 -hijacking%1:04:00:: 00783199 1 0 -hijaz%1:15:00:: 08995515 1 0 -hijinks%1:04:00:: 00510050 1 0 -hike%1:04:00:: 00288970 1 2 -hike%1:07:00:: 05110185 3 0 -hike%1:07:01:: 05110408 2 0 -hike%2:38:00:: 01920932 2 0 -hike%2:38:01:: 01975912 1 1 -hike_up%2:35:00:: 01593134 1 1 -hike_up%2:38:00:: 01975912 2 0 -hiker%1:18:00:: 10176111 1 0 -hiking%1:04:00:: 00288970 1 0 -hilaire_belloc%1:18:00:: 10843035 1 0 -hilaire_germain_edgar_degas%1:18:00:: 10927687 1 0 -hilar%3:01:00:: 02947799 1 4 -hilarious%5:00:00:humorous:00 01266841 1 1 -hilariously%4:02:00:: 00182642 1 1 -hilarity%1:12:00:: 07529377 1 1 -hilary_clinton%1:18:00:: 10902752 1 0 -hilary_rodham_clinton%1:18:00:: 10902752 1 0 -hilbert%1:18:00:: 11049835 1 0 -hilbert_space%1:14:00:: 08005123 1 0 -hildebrand%1:18:00:: 11014212 1 0 -hill%1:06:00:: 03792334 5 0 -hill%1:06:01:: 03792048 2 1 -hill%1:17:00:: 09303008 1 33 -hill%1:18:00:: 11049938 4 0 -hill%1:18:01:: 11050057 3 0 -hill%2:36:00:: 01660640 1 0 -hill_myna%1:05:00:: 01578180 1 0 -hillary%1:18:00:: 11050183 1 0 -hillbilly%1:18:00:: 10176357 1 1 -hillbilly_music%1:10:00:: 07062315 1 1 -hillel%1:18:00:: 11050436 1 0 -hilliness%1:07:00:: 04772557 1 0 -hillock%1:17:00:: 09326662 1 2 -hillside%1:17:00:: 09303528 1 3 -hilltop%1:15:00:: 08584787 1 0 -hilly%5:00:00:rough:00 02240490 1 0 -hilo%1:15:00:: 09078654 1 0 -hilt%1:06:00:: 03520654 1 1 -hilum%1:08:00:: 05224755 1 5 -hilum%1:20:00:: 11678493 2 0 -hilus%1:08:00:: 05224755 1 0 -himalaya%1:17:00:: 09303647 1 0 -himalaya_honeysuckle%1:20:00:: 12673012 1 0 -himalaya_mountains%1:17:00:: 09303647 1 0 -himalayan%3:01:00:: 02965861 1 0 -himalayan_cedar%1:20:00:: 11623967 1 0 -himalayan_lilac%1:20:00:: 12310638 1 0 -himalayan_rhubarb%1:20:00:: 12603273 1 0 -himalayas%1:17:00:: 09303647 1 0 -himalayish%1:10:00:: 06931724 1 0 -himantoglossum%1:20:00:: 12069488 1 0 -himantoglossum_hircinum%1:20:00:: 12069679 1 0 -himantopus%1:05:00:: 02034394 1 0 -himantopus_himantopus%1:05:00:: 02035210 1 0 -himantopus_himantopus_leucocephalus%1:05:00:: 02035402 1 0 -himantopus_mexicanus%1:05:00:: 02034971 1 0 -himantopus_novae-zelandiae%1:05:00:: 02035656 1 0 -himantopus_stilt%1:05:00:: 02034661 1 0 -himmler%1:18:00:: 11050537 1 0 -hin%1:23:00:: 13617207 1 0 -hinault%1:18:00:: 11050723 1 0 -hinayana%1:09:00:: 06241576 2 0 -hinayana%1:14:00:: 08099475 1 0 -hinayana_buddhism%1:09:00:: 06241576 1 0 -hinayanism%1:09:00:: 06188889 1 0 -hinayanist%1:18:00:: 09684226 1 0 -hind%1:05:00:: 02431441 2 0 -hind%1:05:01:: 02569484 1 0 -hind%5:00:00:posterior:00 00131692 1 0 -hind_end%1:08:00:: 05559256 1 0 -hind_leg%1:05:00:: 02464626 1 2 -hind_limb%1:05:00:: 02464461 1 0 -hindbrain%1:08:00:: 05500594 1 0 -hindemith%1:18:00:: 11050870 1 0 -hindenburg%1:18:00:: 11051070 1 0 -hinder%2:33:00:: 01085474 3 1 -hinder%2:41:00:: 02557199 2 1 -hinder%2:41:01:: 02451370 1 3 -hinder%5:00:00:posterior:00 00131692 1 0 -hinderance%1:04:00:: 01073995 3 0 -hinderance%1:06:00:: 03520811 2 0 -hinderance%1:09:00:: 05689249 1 0 -hindering%5:00:00:preventive:00 01764351 1 0 -hinderingly%4:02:00:: 00413387 1 0 -hindermost%5:00:00:back:00 00197773 1 0 -hindfoot%1:05:00:: 02439829 1 0 -hindgut%1:08:00:: 05534578 1 0 -hindi%1:10:00:: 06970103 1 0 -hindi%3:01:00:: 02923745 1 0 -hindlimb%1:05:00:: 02464461 1 0 -hindmost%5:00:00:back:00 00197773 1 0 -hindoo%1:18:00:: 09713501 1 0 -hindoo%1:18:01:: 09684609 2 0 -hindoo%3:01:00:: 02923745 1 0 -hindooism%1:09:00:: 06236802 2 0 -hindooism%1:14:00:: 08096624 1 0 -hindoostani%1:10:00:: 06970373 1 0 -hindostani%1:10:00:: 06970373 1 0 -hindquarter%1:13:00:: 07655988 1 0 -hindquarters%1:05:00:: 02463611 2 0 -hindquarters%1:08:00:: 05559256 1 0 -hindrance%1:04:00:: 01073995 3 0 -hindrance%1:06:00:: 03520811 2 0 -hindrance%1:09:00:: 05689249 1 0 -hindshank%1:13:00:: 07657337 1 0 -hindsight%1:09:00:: 05807147 1 0 -hindu%1:18:00:: 09713501 1 0 -hindu%1:18:01:: 09684609 2 0 -hindu%3:01:00:: 02923745 1 0 -hindu-arabic_numeral%1:10:00:: 06807501 1 0 -hindu_calendar%1:28:00:: 15179415 1 0 -hindu_calendar_month%1:28:00:: 15219351 1 0 -hindu_deity%1:18:00:: 09522978 1 0 -hindu_kush%1:17:00:: 09304164 1 0 -hindu_kush_mountains%1:17:00:: 09304164 1 0 -hindu_numeral%1:10:00:: 06807501 1 0 -hinduism%1:09:00:: 06236802 2 0 -hinduism%1:14:00:: 08096624 1 0 -hindustan%1:15:00:: 08902422 1 0 -hindustani%1:10:00:: 06970373 2 0 -hindustani%1:18:00:: 09713501 1 0 -hindustani%3:01:00:: 02971672 1 0 -hinge%1:06:00:: 03521076 1 3 -hinge%1:26:00:: 13943598 2 0 -hinge%2:35:00:: 01297174 1 0 -hinge_joint%1:06:00:: 03627954 2 0 -hinge_joint%1:08:00:: 05580416 1 0 -hinge_on%2:42:00:: 02711987 1 1 -hinge_upon%2:42:00:: 02711987 1 0 -hinging_post%1:06:00:: 03521431 1 0 -hinny%1:05:00:: 02390258 1 0 -hint%1:10:00:: 07163988 1 1 -hint%1:10:01:: 06802785 2 1 -hint%1:10:02:: 06651577 5 0 -hint%1:23:00:: 13774115 3 0 -hint%1:23:01:: 13773361 4 0 -hint%2:32:00:: 00927430 1 7 -hinterland%1:15:00:: 08502672 1 0 -hip%1:08:00:: 05556325 1 5 -hip%1:08:01:: 05596651 2 1 -hip%1:08:02:: 05596004 3 1 -hip%1:20:00:: 12620546 5 0 -hip%1:25:00:: 13890679 4 0 -hip%5:00:00:informed:00 01307571 1 0 -hip-hop%1:10:00:: 07064055 2 0 -hip-hop%1:14:00:: 08289282 1 0 -hip-length%3:01:00:: 03072673 1 0 -hip_bath%1:06:00:: 04225031 1 0 -hip_boot%1:06:00:: 03521544 1 0 -hip_joint%1:08:00:: 05596004 1 0 -hip_pad%1:06:00:: 03521771 1 1 -hip_pocket%1:06:00:: 03521899 1 0 -hip_roof%1:06:00:: 03522100 1 0 -hip_socket%1:08:00:: 05285101 1 0 -hip_tile%1:27:00:: 14908027 1 0 -hip_to%5:00:00:informed:00 01307571 1 0 -hipbone%1:08:00:: 05274959 1 0 -hipflask%1:06:00:: 03521675 1 0 -hiplength%3:01:00:: 03072673 1 0 -hipless%3:00:00:: 01222253 1 0 -hipline%1:15:00:: 08583554 2 0 -hipline%1:15:01:: 08583682 1 1 -hipparchus%1:18:00:: 11051376 1 0 -hippeastrum%1:20:00:: 12421137 1 0 -hippeastrum_puniceum%1:20:00:: 12421137 1 0 -hipped%3:00:00:: 01222100 1 0 -hipped%3:00:02:: 01221719 2 0 -hipped_roof%1:06:00:: 03522100 1 0 -hipped_tile%1:27:00:: 14908027 1 0 -hippie%1:18:00:: 10176475 1 0 -hippies%1:14:00:: 08289841 1 0 -hippo%1:05:00:: 02398521 2 0 -hippo%1:15:00:: 08707145 1 0 -hippo_regius%1:15:00:: 08707145 1 0 -hippobosca%1:05:00:: 02198714 1 0 -hippobosca_equina%1:05:00:: 02198859 1 0 -hippoboscid%1:05:00:: 02198532 1 0 -hippoboscidae%1:05:00:: 02198332 1 0 -hippocampus%1:05:00:: 01456631 2 0 -hippocampus%1:08:00:: 05496261 1 0 -hippocastanaceae%1:20:00:: 12767951 1 0 -hippocrates%1:18:00:: 11051632 1 0 -hippocratic%3:01:00:: 03072816 1 0 -hippocratic_oath%1:10:00:: 07227158 1 0 -hippocrepis%1:20:00:: 12535101 1 0 -hippocrepis_comosa%1:20:00:: 12535254 1 0 -hippodamia%1:05:00:: 02166436 1 0 -hippodamia_convergens%1:05:00:: 02166567 1 0 -hippodrome%1:06:00:: 03522003 1 0 -hippoglossoides%1:05:00:: 02659961 1 0 -hippoglossoides_platessoides%1:05:00:: 02660091 1 0 -hippoglossus%1:05:00:: 02660412 1 0 -hippoglossus_hippoglossus%1:05:00:: 02660519 1 0 -hippoglossus_stenolepsis%1:05:00:: 02660640 1 0 -hippolyte_jean_giraudoux%1:18:00:: 11001211 1 0 -hippopotamidae%1:05:00:: 02398252 1 0 -hippopotamus%1:05:00:: 02398521 1 0 -hippopotamus_amphibius%1:05:00:: 02398521 1 0 -hipposideridae%1:05:00:: 02143594 1 0 -hipposideros%1:05:00:: 02143759 1 0 -hippotragus%1:05:00:: 02425756 1 0 -hippotragus_niger%1:05:00:: 02425887 1 0 -hippy%1:18:00:: 10176475 1 0 -hipster%1:18:00:: 10176475 1 0 -hipsters%1:14:00:: 08289841 1 0 -hipsurus%1:05:00:: 02571034 1 0 -hipsurus_caryi%1:05:00:: 02571167 1 0 -hiram_king_williams%1:18:00:: 11390364 1 0 -hiram_ulysses_grant%1:18:00:: 11011123 1 0 -hiram_williams%1:18:00:: 11390364 1 0 -hircine%3:01:00:: 02742719 1 0 -hire%1:04:00:: 00809074 2 0 -hire%1:18:00:: 10170060 1 0 -hire%2:40:00:: 02208537 3 0 -hire%2:41:00:: 02409412 1 33 -hire%2:41:01:: 02460619 2 1 -hire-purchase%1:21:00:: 13296752 1 0 -hire_car%1:21:00:: 13248598 1 0 -hire_out%2:40:00:: 02209499 1 0 -hired%3:00:02:: 00360041 2 0 -hired%5:00:00:employed:00 00864346 1 2 -hired_gun%1:18:00:: 10152083 1 0 -hired_hand%1:18:00:: 10176679 1 0 -hired_help%1:18:00:: 10170172 1 0 -hired_man%1:18:00:: 10176679 1 2 -hireling%1:18:00:: 10176913 1 0 -hirer%1:18:00:: 09867956 1 0 -hiring_freeze%1:04:00:: 00809201 1 0 -hiring_hall%1:14:00:: 08354678 1 0 -hirohito%1:18:00:: 11051822 1 0 -hiroshima%1:15:00:: 08925287 1 0 -hirschfeld%1:18:00:: 11052043 1 0 -hirschsprung%1:18:00:: 11052186 1 0 -hirschsprung's_disease%1:26:00:: 14156488 1 0 -hirsute%3:00:00:: 00212173 1 0 -hirsuteness%1:07:00:: 04683600 1 0 -hirsutism%1:07:00:: 04683600 1 0 -hirudinea%1:05:00:: 01937719 1 0 -hirudinean%1:05:00:: 01937909 1 0 -hirudinidae%1:05:00:: 01938155 1 0 -hirudo%1:05:00:: 01938312 1 0 -hirudo_medicinalis%1:05:00:: 01938454 1 0 -hirundinidae%1:05:00:: 01594157 1 0 -hirundo%1:05:00:: 01594611 1 0 -hirundo_nigricans%1:05:00:: 01595168 1 0 -hirundo_pyrrhonota%1:05:00:: 01594968 1 0 -hirundo_rustica%1:05:00:: 01594787 1 0 -hispanic%1:18:00:: 10629647 1 0 -hispanic%3:01:00:: 03072158 1 0 -hispanic_american%1:18:00:: 10629647 1 0 -hispaniola%1:15:00:: 08751317 1 0 -hispaniolan%3:01:00:: 03072028 1 0 -hispid%5:00:00:hairy:00 00214461 1 0 -hispid_pocket_mouse%1:05:00:: 02349557 1 0 -hiss%1:10:00:: 07123870 2 0 -hiss%1:11:00:: 07384898 1 0 -hiss%2:32:00:: 01053771 1 1 -hiss%2:32:01:: 01054186 3 0 -hiss%2:32:02:: 00862225 4 0 -hiss%2:38:00:: 02069014 2 0 -hisser%1:18:00:: 10177014 1 0 -hissing%1:11:00:: 07384898 1 2 -histaminase%1:27:00:: 14908297 1 0 -histamine%1:08:00:: 05414724 1 0 -histamine_blocker%1:06:00:: 03522239 1 0 -histamine_headache%1:26:00:: 14327543 1 0 -histidine%1:27:00:: 14908146 1 0 -histiocyte%1:08:00:: 05450617 1 0 -histiocytic_leukaemia%1:26:00:: 14244726 1 0 -histiocytic_leukemia%1:26:00:: 14244726 1 0 -histiocytosis%1:26:00:: 14192790 1 0 -histocompatibility%1:19:00:: 11466458 1 0 -histocompatibility_complex%1:14:00:: 08007204 1 0 -histogram%1:10:00:: 07001865 1 0 -histoincompatibility%1:26:00:: 13975292 1 0 -histologic%3:01:00:: 03072365 1 0 -histological%3:01:00:: 03072365 1 0 -histologically%4:02:00:: 00089723 1 0 -histologist%1:18:00:: 10170359 1 0 -histology%1:09:00:: 06077413 1 1 -histone%1:27:00:: 15026256 1 0 -historian%1:18:00:: 10177150 1 20 -historic%5:00:00:important:00 01279028 2 0 -historic%5:00:00:past:00 01730060 1 0 -historic_period%1:28:00:: 15254028 1 0 -historical%3:00:04:: 02377418 4 0 -historical%3:01:00:: 02920121 1 11 -historical%5:00:00:past:00 01730060 3 5 -historical%5:00:00:real:00 01934284 2 5 -historical_document%1:10:00:: 06515489 1 0 -historical_linguistics%1:09:00:: 06169050 1 0 -historical_paper%1:10:00:: 06515489 1 0 -historical_present%1:10:00:: 06329909 1 0 -historical_record%1:10:00:: 06515489 1 0 -historical_school%1:14:00:: 08275843 1 0 -historically%4:02:00:: 00109569 2 0 -historically%4:02:01:: 00109687 1 6 -historicalness%1:07:00:: 05170088 2 0 -historicalness%1:26:00:: 13956362 1 0 -historicism%1:09:00:: 06155891 1 0 -historied%5:00:00:glorious:00 01121402 1 0 -historiographer%1:18:00:: 10177150 1 0 -historiography%1:04:00:: 00931217 2 0 -historiography%1:10:00:: 06365357 1 0 -history%1:09:00:: 06155567 3 16 -history%1:09:01:: 06156752 5 5 -history%1:10:00:: 06514093 2 23 -history%1:28:00:: 15121406 1 49 -history%1:28:02:: 15123996 4 14 -history_department%1:14:00:: 08116734 1 0 -history_lesson%1:04:00:: 00890227 1 0 -histrion%1:18:00:: 09765278 1 0 -histrionic%5:00:00:theatrical:00 00796337 1 0 -histrionics%1:10:00:: 06893885 1 1 -histrionics%1:10:01:: 07213889 2 0 -hit%1:04:00:: 00125629 2 2 -hit%1:04:02:: 00064504 3 1 -hit%1:04:03:: 00043902 1 15 -hit%1:04:04:: 01250335 6 0 -hit%1:04:05:: 00145779 7 0 -hit%1:06:00:: 03522559 5 0 -hit%1:11:01:: 07302542 4 0 -hit%2:32:12:: 00781903 17 0 -hit%2:33:00:: 01123887 10 2 -hit%2:33:01:: 01137138 6 8 -hit%2:33:02:: 01111816 8 3 -hit%2:33:03:: 01152396 16 0 -hit%2:34:00:: 01157421 15 0 -hit%2:35:00:: 01400044 3 18 -hit%2:35:01:: 01236164 2 21 -hit%2:35:02:: 01209426 14 0 -hit%2:35:03:: 01405044 1 25 -hit%2:35:05:: 01209135 5 8 -hit%2:38:00:: 02020590 4 9 -hit%2:38:02:: 02104161 12 0 -hit%2:38:07:: 02006834 13 0 -hit%2:39:00:: 02108791 9 2 -hit%2:40:05:: 02206462 7 3 -hit%2:41:00:: 02482425 11 0 -hit-and-run%5:00:00:negligent:00 00755742 2 0 -hit-and-run%5:00:00:offensive:03 01629493 1 1 -hit-or-miss%5:00:00:random:00 01924803 1 0 -hit_home%2:37:00:: 01769220 1 0 -hit_it_up%2:34:00:: 01190277 1 1 -hit_list%1:10:00:: 06491561 1 0 -hit_man%1:18:00:: 10152083 1 0 -hit_parade%1:10:00:: 06491665 2 0 -hit_parade%1:14:00:: 07977108 1 0 -hit_squad%1:14:00:: 08209076 1 0 -hit_the_books%2:31:00:: 00607114 1 0 -hit_the_ceiling%2:37:00:: 01795428 1 0 -hit_the_deck%2:38:00:: 01833717 1 1 -hit_the_dirt%2:38:00:: 01833717 1 1 -hit_the_hay%2:29:00:: 00017865 1 0 -hit_the_jackpot%2:41:00:: 02524739 1 0 -hit_the_roof%2:37:00:: 01795428 1 0 -hit_the_sack%2:29:00:: 00017865 1 0 -hitch%1:04:00:: 00286756 7 0 -hitch%1:06:00:: 03522634 5 0 -hitch%1:06:01:: 03522863 4 0 -hitch%1:06:02:: 03520811 6 0 -hitch%1:09:00:: 05691144 3 0 -hitch%1:26:00:: 14010927 2 0 -hitch%1:28:00:: 15293590 1 1 -hitch%2:35:00:: 01327816 1 2 -hitch%2:35:13:: 01614774 5 0 -hitch%2:38:00:: 01956955 4 0 -hitch%2:38:01:: 01917244 2 1 -hitch%2:38:02:: 01884383 3 1 -hitch_up%2:35:00:: 01593134 1 1 -hitchcock%1:18:00:: 11052299 1 0 -hitchhike%2:38:00:: 01956955 1 0 -hitchhiker%1:18:00:: 10178077 1 0 -hitching_bar%1:06:00:: 03523134 1 0 -hitching_post%1:06:00:: 03522990 1 1 -hitchings%1:18:00:: 11052498 1 0 -hitchiti%1:10:00:: 06912537 2 0 -hitchiti%1:18:00:: 09656378 1 0 -hitchrack%1:06:00:: 03523134 1 0 -hither%4:02:00:: 00108647 1 6 -hither_and_thither%4:02:00:: 00509287 1 0 -hitherto%4:02:00:: 00027918 1 2 -hitler%1:18:00:: 11052672 1 3 -hitlerian%3:01:00:: 03032736 1 0 -hitless%5:00:00:unsuccessful:00 02334717 1 1 -hitless%5:00:02:unsuccessful:00 02335119 2 0 -hitman%1:18:00:: 10152083 1 0 -hitter%1:18:00:: 09843956 1 2 -hitter%1:18:01:: 10178216 2 0 -hitting%1:04:00:: 00125629 1 0 -hitting_average%1:24:00:: 13817872 1 0 -hittite%1:10:00:: 06975902 2 0 -hittite%1:18:00:: 10178464 1 0 -hittite%3:01:00:: 03032887 1 0 -hiv%1:05:00:: 01336718 2 0 -hiv%1:26:00:: 14179744 1 0 -hive%1:06:00:: 02822865 2 1 -hive%1:14:00:: 08182892 1 1 -hive%1:17:00:: 09218159 3 0 -hive%2:35:00:: 01381244 3 0 -hive%2:38:00:: 02023851 2 0 -hive%2:40:03:: 02306087 1 0 -hive_away%2:40:00:: 02281093 1 0 -hive_off%2:40:00:: 02312014 2 0 -hive_off%2:41:00:: 02468465 1 0 -hive_up%2:40:00:: 02305856 1 0 -hives%1:26:00:: 14322248 1 0 -hizb_ut-tahrir%1:14:00:: 08023843 1 0 -hizballah%1:14:00:: 08023374 1 0 -hizbollah%1:14:00:: 08023374 1 0 -hizbullah%1:14:00:: 08023374 1 0 -hl%1:23:00:: 13624705 1 0 -hm%1:23:00:: 13659604 1 0 -hmg-coa_reductase%1:27:00:: 14612444 1 0 -hmo%1:21:00:: 13349208 1 0 -hmong%1:10:00:: 06937098 2 0 -hmong%1:18:00:: 09713764 1 0 -hmong%3:01:00:: 02923981 1 0 -hmong_language%1:10:00:: 06937098 1 0 -hn%1:27:03:: 14612764 1 0 -hnd%1:10:00:: 06478734 1 0 -ho%1:27:00:: 14640222 1 0 -ho-hum%5:00:00:uninteresting:00 01345307 1 0 -ho_chi_minh%1:18:00:: 11053344 1 0 -ho_chi_minh_city%1:15:00:: 09164241 1 0 -hoactzin%1:05:00:: 01809752 1 0 -hoagie%1:13:00:: 07697825 1 0 -hoagland%1:18:00:: 11052843 1 0 -hoagland_howard_carmichael%1:18:00:: 10882846 1 0 -hoagy%1:13:00:: 07697825 1 0 -hoagy_carmichael%1:18:00:: 10882846 1 0 -hoar%1:27:00:: 14915622 1 0 -hoar%5:00:00:old:02 01645678 1 0 -hoard%1:21:00:: 13366912 1 0 -hoard%2:40:00:: 02304982 2 0 -hoard%2:40:01:: 02305856 1 0 -hoarded_wealth%1:21:00:: 13370669 1 0 -hoarder%1:18:00:: 10178611 1 0 -hoarding%1:06:00:: 02839110 1 0 -hoarfrost%1:27:00:: 14915622 1 0 -hoariness%1:07:01:: 04926308 2 0 -hoariness%1:07:02:: 04961583 1 0 -hoarse%5:00:00:cacophonous:00 00299690 1 7 -hoarsely%4:02:00:: 00358200 1 2 -hoarseness%1:07:00:: 04988861 1 0 -hoary%5:00:00:hairy:00 00212949 3 0 -hoary%5:00:00:old:01 01639891 2 0 -hoary%5:00:00:old:02 01645678 1 0 -hoary_alison%1:20:00:: 11874423 1 0 -hoary_alyssum%1:20:00:: 11874423 1 0 -hoary_golden_bush%1:20:00:: 11976933 1 0 -hoary_marmot%1:05:00:: 02361706 1 0 -hoary_pea%1:20:00:: 12572546 1 0 -hoary_plantain%1:20:01:: 12599661 2 0 -hoary_plantain%1:20:02:: 12600267 1 0 -hoary_puccoon%1:20:00:: 12821048 1 0 -hoary_willow%1:20:00:: 12728164 1 0 -hoatzin%1:05:00:: 01809752 1 0 -hoax%1:04:00:: 00753685 1 0 -hoax%2:41:00:: 02577586 1 0 -hoaxer%1:18:00:: 10463714 1 0 -hob%1:06:00:: 03523288 4 0 -hob%1:06:01:: 03523398 3 0 -hob%1:18:00:: 09543748 1 0 -hob%1:18:01:: 09540739 2 0 -hob%2:35:00:: 01403447 1 0 -hobart%1:15:00:: 08834280 1 0 -hobbes%1:18:00:: 11052955 1 0 -hobbit%1:18:00:: 09488995 1 0 -hobble%1:04:00:: 00286756 2 0 -hobble%1:06:00:: 03330947 1 0 -hobble%2:35:00:: 01289633 3 0 -hobble%2:38:00:: 01917244 1 2 -hobble%2:41:00:: 02452240 2 1 -hobble_skirt%1:06:00:: 03523506 1 0 -hobbledehoy%1:18:00:: 10178821 1 0 -hobbler%1:18:00:: 10178917 1 0 -hobbs%1:18:00:: 11053218 1 0 -hobby%1:04:00:: 00432689 1 2 -hobby%1:05:00:: 01612476 3 0 -hobby%1:06:00:: 03523633 2 0 -hobbyhorse%1:06:00:: 03523633 2 0 -hobbyhorse%1:09:00:: 05705583 1 0 -hobbyism%1:04:00:: 01206910 1 0 -hobbyist%1:18:00:: 10179069 1 0 -hobgoblin%1:09:00:: 05811662 2 0 -hobgoblin%1:18:00:: 09543748 1 0 -hobnail%1:06:00:: 03523849 1 0 -hobnail%2:40:00:: 02332788 1 0 -hobnailed%5:00:00:rural:00 02052197 1 0 -hobnob%2:41:00:: 02390169 1 0 -hobo%1:18:00:: 10723300 1 0 -hobo_camp%1:14:00:: 08478171 1 0 -hobson's_choice%1:09:00:: 05792575 1 0 -hock%1:05:00:: 02463205 2 0 -hock%1:13:00:: 07897200 1 0 -hock%2:29:00:: 00092204 2 0 -hock%2:40:00:: 02347220 1 1 -hock-joint%1:05:00:: 02463205 1 0 -hockey%1:04:00:: 00467995 1 0 -hockey%1:04:01:: 00463543 2 0 -hockey_clinic%1:10:00:: 07146980 1 0 -hockey_coach%1:18:00:: 10179207 1 0 -hockey_game%1:04:00:: 00463543 1 0 -hockey_league%1:14:00:: 08232603 1 0 -hockey_player%1:18:00:: 10179291 1 0 -hockey_puck%1:06:00:: 04019541 1 0 -hockey_season%1:28:00:: 15241094 1 0 -hockey_skate%1:06:00:: 03523987 1 0 -hockey_stick%1:06:00:: 03524150 1 0 -hockey_team%1:14:00:: 08080386 1 0 -hocus-pocus%1:10:00:: 06760722 1 0 -hod%1:06:00:: 03524287 1 0 -hod_carrier%1:18:00:: 10179527 1 0 -hodeida%1:15:00:: 09165146 1 0 -hoder%1:18:00:: 09581129 1 0 -hodgepodge%1:09:00:: 05953416 2 0 -hodgepodge%1:14:00:: 08399977 1 1 -hodgkin%1:18:00:: 11053559 3 0 -hodgkin%1:18:01:: 11053817 2 0 -hodgkin%1:18:02:: 11054034 1 0 -hodgkin's_disease%1:26:00:: 14242132 1 0 -hodman%1:18:00:: 10179527 1 0 -hodometer%1:06:00:: 03841143 1 0 -hodoscope%1:06:00:: 03524425 1 0 -hodr%1:18:00:: 09581129 1 0 -hodur%1:18:00:: 09581129 1 0 -hoe%1:06:00:: 03524574 1 1 -hoe%2:36:00:: 01742556 1 0 -hoe_handle%1:06:00:: 03524745 1 0 -hoecake%1:13:00:: 07688412 1 0 -hoek_van_holland%1:17:00:: 09305479 1 0 -hoenir%1:18:00:: 09580971 1 0 -hoffa%1:18:00:: 11054173 1 0 -hoffman%1:18:00:: 11054442 2 0 -hoffman%1:18:01:: 11054563 1 0 -hoffmann%1:18:00:: 11054670 4 0 -hoffmann%1:18:01:: 11054856 3 0 -hoffmann%1:18:02:: 11055042 2 0 -hoffmann%1:18:03:: 11055154 1 0 -hoffmannsthal%1:18:00:: 11055296 1 0 -hog%1:05:00:: 02395406 3 0 -hog%1:05:02:: 02412787 2 0 -hog%1:18:00:: 10179649 1 0 -hog%2:40:00:: 02304862 1 1 -hog-nosed_badger%1:05:00:: 02448885 1 0 -hog-nosed_skunk%1:05:00:: 02446645 1 0 -hog-tie%2:35:00:: 01287929 1 0 -hog_badger%1:05:00:: 02448885 1 0 -hog_cholera%1:26:00:: 14263944 1 0 -hog_cranberry%1:20:00:: 12231358 1 0 -hog_millet%1:20:00:: 12127575 1 0 -hog_molly%1:05:00:: 01445857 1 0 -hog_peanut%1:20:00:: 12505253 1 0 -hog_plum%1:13:01:: 07765728 3 0 -hog_plum%1:13:02:: 07765612 4 0 -hog_plum%1:20:01:: 12639168 2 0 -hog_plum%1:20:02:: 12765846 1 0 -hog_plum_bush%1:20:00:: 12639168 1 0 -hog_snapper%1:05:00:: 02608547 1 0 -hog_sucker%1:05:00:: 01445857 1 0 -hogan%1:06:00:: 03524840 2 0 -hogan%1:18:00:: 11055454 1 0 -hogarth%1:18:00:: 11055612 1 0 -hogback%1:17:00:: 09304376 1 0 -hogchoker%1:05:00:: 02665250 1 0 -hogfish%1:05:00:: 02590094 2 0 -hogfish%1:05:01:: 02608547 1 0 -hogg%1:05:00:: 02412787 2 0 -hogg%1:18:00:: 11055807 1 0 -hogged%5:00:00:convex:00 00537884 1 0 -hogget%1:05:00:: 02412787 1 0 -hoggish%5:00:00:gluttonous:00 00011327 1 0 -hoggishness%1:07:00:: 04886235 1 0 -hogmanay%1:28:00:: 15182724 1 0 -hognose_bat%1:05:00:: 02143142 1 0 -hognose_snake%1:05:00:: 01729322 1 0 -hognosed_skunk%1:05:00:: 02446645 1 0 -hogshead%1:06:00:: 03524976 2 0 -hogshead%1:23:01:: 13623205 1 0 -hogwash%1:10:00:: 06611681 1 0 -hogweed%1:20:00:: 12939874 1 0 -hohenlinden%1:04:00:: 01280792 2 0 -hohenlinden%1:15:00:: 08772028 1 0 -hohenzollern%1:14:00:: 08155518 1 0 -hohenzollern_empire%1:14:00:: 08169919 1 0 -hoheria%1:20:00:: 12180714 1 0 -hoheria_populnea%1:20:00:: 12180885 1 0 -hohhot%1:15:00:: 08730218 1 0 -hoi_polloi%1:14:00:: 08180190 1 0 -hoisin_sauce%1:13:00:: 07824268 1 0 -hoist%1:06:00:: 03525074 1 0 -hoist%2:35:00:: 01455184 1 1 -hoist%2:35:01:: 01455754 3 0 -hoist%2:35:10:: 01611359 2 0 -hoister%1:18:00:: 10179817 1 0 -hoity-toity%5:00:00:pretentious:00 01850288 1 0 -hoka%1:10:00:: 06920756 2 0 -hoka%1:18:00:: 09656673 1 0 -hokan%1:10:00:: 06920756 1 1 -hokan%1:18:00:: 09656673 2 0 -hokey%5:00:00:affected:01 00073465 2 0 -hokey%5:00:00:emotional:00 00854413 1 0 -hokkaido%1:15:00:: 08920722 1 0 -hokkianese%1:10:00:: 06930633 1 0 -hokum%1:10:00:: 06607339 1 0 -hokusai%1:18:00:: 11055915 1 0 -holandric_gene%1:08:00:: 05442022 1 0 -holarrhena%1:20:00:: 11772702 1 0 -holarrhena_antidysenterica%1:20:00:: 11772879 1 0 -holarrhena_pubescens%1:20:00:: 11772879 1 0 -holbein%1:18:00:: 11056060 2 0 -holbein%1:18:01:: 11056195 1 0 -holbein_the_elder%1:18:00:: 11056060 1 0 -holbein_the_younger%1:18:00:: 11056195 1 0 -holbrookia%1:05:00:: 01679178 1 0 -holcus%1:20:00:: 12122581 1 0 -holcus_lanatus%1:20:00:: 12122725 1 0 -holcus_mollis%1:20:00:: 12122918 1 0 -hold%1:04:00:: 00812526 1 5 -hold%1:06:00:: 03485997 8 0 -hold%1:06:01:: 03525252 7 0 -hold%1:06:02:: 02964634 9 0 -hold%1:06:03:: 03525372 6 0 -hold%1:07:00:: 05197232 3 2 -hold%1:09:00:: 05806623 2 2 -hold%1:26:00:: 13999663 5 0 -hold%1:28:00:: 15272029 4 0 -hold%2:29:04:: 00004492 36 0 -hold%2:31:01:: 00693780 5 20 -hold%2:31:04:: 00736586 22 1 -hold%2:31:08:: 00683771 16 2 -hold%2:31:10:: 00607000 23 1 -hold%2:32:11:: 00822367 34 0 -hold%2:32:13:: 00885217 21 1 -hold%2:32:15:: 00805376 35 0 -hold%2:33:00:: 01151753 33 0 -hold%2:33:05:: 01129876 20 1 -hold%2:34:00:: 01205153 32 0 -hold%2:35:00:: 01216670 2 65 -hold%2:35:01:: 01217043 10 9 -hold%2:35:02:: 01601234 14 3 -hold%2:35:03:: 01301410 7 17 -hold%2:35:09:: 01334744 31 0 -hold%2:36:00:: 01733477 3 62 -hold%2:37:00:: 01773130 6 17 -hold%2:38:05:: 01859586 30 0 -hold%2:40:00:: 02203362 4 26 -hold%2:40:02:: 02283324 8 14 -hold%2:40:04:: 02302220 9 9 -hold%2:41:00:: 02498320 19 1 -hold%2:41:13:: 02450989 28 0 -hold%2:41:14:: 02441897 29 0 -hold%2:41:15:: 02510337 27 0 -hold%2:42:00:: 02681795 1 79 -hold%2:42:01:: 02683489 13 3 -hold%2:42:02:: 02648502 15 2 -hold%2:42:04:: 02676789 25 0 -hold%2:42:05:: 02732798 12 3 -hold%2:42:07:: 02746275 17 1 -hold%2:42:08:: 02706816 24 0 -hold%2:42:12:: 02643574 26 0 -hold%2:42:13:: 02700867 11 7 -hold%2:42:14:: 02701210 18 1 -hold-down%1:04:00:: 00808614 1 0 -hold_back%2:33:00:: 01131473 1 4 -hold_back%2:39:00:: 02146790 6 0 -hold_back%2:40:00:: 02283324 5 0 -hold_back%2:41:00:: 02422663 2 1 -hold_back%2:42:00:: 02641463 4 0 -hold_back%2:42:01:: 02726044 3 0 -hold_close%2:35:00:: 01220303 1 0 -hold_dear%2:37:00:: 01776214 1 0 -hold_down%2:30:00:: 00235763 2 0 -hold_down%2:40:00:: 02283608 1 1 -hold_fast%2:35:00:: 01356750 1 0 -hold_firm%2:32:00:: 00819163 1 0 -hold_forth%2:32:00:: 00814621 1 0 -hold_in%2:39:00:: 02146790 3 0 -hold_in%2:41:00:: 02510337 2 1 -hold_in%2:42:00:: 02711114 1 1 -hold_off%2:33:00:: 01117325 1 3 -hold_off%2:42:00:: 02641463 2 0 -hold_on%2:30:00:: 00350461 3 2 -hold_on%2:30:05:: 00362610 2 4 -hold_on%2:32:00:: 00790509 4 1 -hold_on%2:35:00:: 01216004 1 5 -hold_on%2:40:00:: 02202384 5 0 -hold_one's_own%2:41:00:: 02433991 2 0 -hold_one's_own%2:42:00:: 02740859 1 0 -hold_open%2:40:00:: 02283716 1 0 -hold_out%2:29:00:: 00027705 1 5 -hold_out%2:33:00:: 01116585 2 3 -hold_out%2:42:00:: 02618149 5 0 -hold_out%2:42:01:: 02705132 3 2 -hold_out%2:42:02:: 02641741 4 1 -hold_over%2:37:00:: 01781387 1 2 -hold_over%2:40:00:: 02202802 2 1 -hold_over%2:42:00:: 02682424 3 0 -hold_over%2:42:01:: 02643280 4 0 -hold_over%2:42:02:: 02642814 5 0 -hold_still_for%2:31:00:: 00669099 1 1 -hold_sway%2:41:00:: 02442106 1 1 -hold_the_line%2:32:00:: 00790509 2 0 -hold_the_line%2:40:00:: 02319946 1 0 -hold_tight%2:35:00:: 01220303 1 0 -hold_up%2:30:00:: 00459776 3 3 -hold_up%2:35:00:: 01217043 1 4 -hold_up%2:39:00:: 02141559 2 3 -hold_up%2:40:00:: 02277448 4 2 -hold_up%2:42:00:: 02618149 5 1 -hold_up%2:42:01:: 02618688 7 0 -hold_up%2:42:02:: 02706816 6 0 -hold_water%2:42:00:: 02618688 1 0 -holdall%1:06:00:: 02970408 1 0 -holder%1:06:00:: 03525454 1 23 -holder%1:18:00:: 10179911 3 0 -holder%1:18:01:: 10180178 2 0 -holdfast%1:06:00:: 03323703 1 0 -holding%1:04:00:: 00810598 1 1 -holding%1:21:00:: 13244109 2 0 -holding_cell%1:06:00:: 03525693 1 0 -holding_company%1:14:00:: 08185369 1 0 -holding_device%1:06:00:: 03525827 1 0 -holding_paddock%1:06:00:: 03526062 1 0 -holding_pattern%1:15:00:: 08501729 2 0 -holding_pattern%1:26:00:: 14012311 1 0 -holding_pen%1:06:00:: 03526062 1 0 -holding_yard%1:06:00:: 03526062 1 0 -holdout%1:04:00:: 00780466 3 0 -holdout%1:10:00:: 07150328 2 0 -holdout%1:18:00:: 10180580 1 0 -holdover%1:04:00:: 01022292 2 0 -holdover%1:18:00:: 10180791 1 0 -holdup%1:04:00:: 00781912 1 1 -holdup%1:04:01:: 01066163 2 0 -holdup_man%1:18:00:: 10180923 1 0 -hole%1:06:00:: 03526198 2 9 -hole%1:06:01:: 03526805 3 5 -hole%1:08:00:: 05302307 8 0 -hole%1:17:01:: 09304465 1 12 -hole%1:17:02:: 09304750 5 2 -hole%1:25:00:: 13911429 4 2 -hole%1:26:00:: 14409489 7 0 -hole%1:26:01:: 14464793 6 0 -hole%2:35:00:: 01282023 2 0 -hole%2:35:01:: 01408153 1 0 -hole-and-corner%5:00:00:covert:00 01706465 2 0 -hole-and-corner%5:00:00:insignificant:00 02164713 1 0 -hole-in-corner%5:00:00:insignificant:00 02164713 1 0 -hole-in-the-wall%1:15:00:: 08584914 1 0 -hole_card%1:06:00:: 03527000 2 0 -hole_card%1:21:00:: 13369159 1 0 -hole_out%2:35:00:: 01408153 1 1 -hole_up%2:29:00:: 00015946 3 0 -hole_up%2:33:00:: 01113264 2 0 -hole_up%2:39:00:: 02146525 1 0 -holey%5:00:00:leaky:00 01397998 1 0 -holibut%1:05:00:: 02660208 1 0 -holiday%1:28:00:: 15137890 1 9 -holiday%1:28:01:: 15183428 2 4 -holiday%2:42:00:: 02708707 1 0 -holiday_resort%1:15:00:: 08640531 1 0 -holiday_season%1:28:00:: 15238472 1 0 -holidaymaker%1:18:00:: 10718131 1 0 -holier-than-thou%5:00:00:pious:00 01782100 1 0 -holiness%1:07:00:: 04855138 1 0 -holism%1:09:00:: 06102865 1 0 -holistic%3:00:00:: 01680689 1 0 -holistic_medicine%1:04:00:: 00697024 1 0 -holistic_theory%1:09:00:: 06102865 1 0 -holla%1:10:00:: 07121361 1 0 -holland%1:15:00:: 08949093 1 1 -holland_gin%1:13:00:: 07904760 1 0 -hollandaise%1:13:00:: 07835457 1 0 -hollander%1:18:00:: 09713108 1 0 -hollands%1:13:00:: 07904760 1 0 -holler%1:10:00:: 07121361 1 1 -holler%1:17:00:: 09305031 2 0 -holler%2:32:00:: 00910973 3 1 -holler%2:32:05:: 00913065 2 2 -holler%2:32:06:: 00915423 1 3 -holler_out%2:32:00:: 00915423 1 1 -hollering%1:10:00:: 07121361 1 3 -hollerith%1:18:00:: 11056466 1 0 -hollerith_card%1:06:00:: 04023808 1 0 -hollo%1:10:00:: 07121361 1 0 -hollo%2:32:00:: 00913065 3 0 -hollo%2:32:01:: 00913795 2 0 -hollo%2:32:02:: 00913885 1 0 -holloa%1:10:00:: 07121361 1 0 -hollow%1:17:00:: 09304750 3 1 -hollow%1:17:01:: 09305031 2 1 -hollow%1:25:02:: 13910895 1 2 -hollow%2:35:00:: 01282545 2 0 -hollow%2:35:05:: 01310660 1 0 -hollow%3:00:00:: 02263982 1 1 -hollow%5:00:00:meaningless:00 01498084 3 1 -hollow%5:00:00:reverberant:00 02010127 2 1 -hollow-back%1:26:00:: 14505215 1 0 -hollow-eyed%5:00:00:thin:03 00989416 1 0 -hollow-horned%5:00:00:horned:00 02034504 1 0 -hollow_out%2:35:00:: 01282545 1 0 -holloware%1:06:00:: 03527149 1 0 -hollowness%1:07:00:: 05070197 2 0 -hollowness%1:07:01:: 04867871 3 0 -hollowness%1:26:00:: 14455552 1 1 -hollowware%1:06:00:: 03527149 1 0 -holly%1:18:00:: 11056654 2 0 -holly%1:20:00:: 12756457 1 0 -holly-leaf_cherry%1:20:00:: 12646397 1 0 -holly-leaved_cherry%1:20:00:: 12646397 1 0 -holly-leaved_oak%1:20:00:: 12272432 1 0 -holly-leaves_barberry%1:20:00:: 11699442 1 0 -holly_family%1:20:00:: 12756286 1 0 -holly_fern%1:20:00:: 13199970 1 0 -holly_fern%1:20:02:: 13195341 2 0 -hollygrape%1:20:00:: 11699442 1 0 -hollyhock%1:20:01:: 12173664 2 1 -hollyhock%1:20:02:: 12174311 1 1 -hollywood%1:14:00:: 08068597 1 6 -hollywood%1:15:00:: 09063950 3 0 -hollywood%1:26:00:: 14525777 2 0 -hollywood%3:01:00:: 02740899 1 0 -hollywood%5:00:00:indecent:00 00683910 2 0 -holm_oak%1:20:00:: 12272432 2 0 -holm_oak%1:20:01:: 12272650 1 0 -holm_tree%1:20:00:: 12272432 1 0 -holman_hunt%1:18:00:: 11067047 1 0 -holmes%1:18:00:: 09604451 1 19 -holmes%1:18:01:: 11056799 4 0 -holmes%1:18:02:: 11056947 3 0 -holmes%1:18:03:: 11057076 2 0 -holmium%1:27:00:: 14640222 1 0 -holocanthus_tricolor%1:05:00:: 02606052 1 0 -holocaust%1:04:00:: 01245318 1 2 -holocaust%1:04:01:: 01245471 2 0 -holocene%1:28:00:: 15124713 1 0 -holocene_epoch%1:28:00:: 15124713 1 0 -holocentridae%1:05:00:: 01450281 1 0 -holocentrus%1:05:00:: 01450453 1 0 -holocentrus_ascensionis%1:05:00:: 01451295 1 0 -holocentrus_bullisi%1:05:00:: 01451115 1 0 -holocentrus_coruscus%1:05:00:: 01450950 1 0 -holocephalan%1:05:00:: 01480880 1 0 -holocephali%1:05:00:: 01480715 1 0 -holocephalian%1:05:00:: 01480880 1 0 -holofernes%1:18:00:: 11057221 1 0 -hologram%1:06:00:: 03527243 1 0 -holograph%1:06:00:: 03527243 2 0 -holograph%1:10:00:: 06407221 1 0 -holographic%3:01:00:: 03001278 2 0 -holographic%3:01:02:: 03001428 1 0 -holographic%5:00:00:written:00 02285480 3 0 -holographical%3:01:00:: 03001278 1 0 -holography%1:09:00:: 06101333 1 0 -holometabola%1:05:00:: 02161225 1 0 -holometabolic%5:00:00:metamorphic:00 01530622 1 0 -holometabolism%1:22:00:: 13493692 1 0 -holometabolous%5:00:00:metamorphic:00 01530622 1 0 -holometaboly%1:22:00:: 13493692 1 0 -holonym%1:10:00:: 06292478 1 0 -holonymy%1:24:00:: 13808566 1 0 -holophyte%1:20:00:: 11530860 1 0 -holophytic%3:00:00:: 00315931 1 0 -holothuria%1:05:00:: 02321903 1 0 -holothuria_edulis%1:05:00:: 02322047 1 0 -holothurian%1:05:00:: 02321529 1 0 -holothuridae%1:05:00:: 02321759 1 0 -holothuroidea%1:05:00:: 02321342 1 0 -holotype%1:09:00:: 05938170 1 0 -holozoic%3:00:00:: 00315805 1 0 -holstein%1:05:00:: 02407390 1 0 -holstein-friesian%1:05:00:: 02407390 1 0 -holster%1:06:00:: 03527444 1 5 -holster%1:06:01:: 03527565 2 0 -holy%1:15:00:: 08585056 1 0 -holy%3:00:00:: 02053818 1 0 -holy_city%1:09:00:: 05628193 1 0 -holy_clover%1:20:00:: 12552309 1 0 -holy_communion%1:04:00:: 01036333 1 0 -holy_day%1:28:01:: 15183802 1 0 -holy_day_of_obligation%1:28:00:: 15185007 1 0 -holy_eucharist%1:04:00:: 01035853 1 0 -holy_father%1:18:00:: 10453533 1 1 -holy_ghost%1:18:00:: 09537781 1 0 -holy_grail%1:06:00:: 03451909 1 0 -holy_innocents'_day%1:28:00:: 15192116 1 0 -holy_joe%1:18:00:: 10316527 1 0 -holy_land%1:15:00:: 08798382 1 0 -holy_man%1:18:00:: 10546850 1 0 -holy_of_holies%1:06:00:: 03527675 2 0 -holy_of_holies%1:07:00:: 04855641 1 0 -holy_oil%1:06:00:: 03026350 1 0 -holy_order%1:04:00:: 01039822 2 0 -holy_order%1:26:00:: 13950812 1 0 -holy_person%1:18:00:: 10546850 1 0 -holy_place%1:15:00:: 08585056 1 0 -holy_roller%1:18:00:: 10181026 1 0 -holy_roman_emperor%1:18:00:: 10181137 1 0 -holy_roman_emperor_frederick_ii%1:18:00:: 10980256 1 0 -holy_roman_empire%1:14:00:: 08169677 1 0 -holy_sacrament%1:04:00:: 01035853 1 1 -holy_saturday%1:28:00:: 15192008 1 0 -holy_scripture%1:10:00:: 06431740 1 1 -holy_see%1:15:00:: 09161090 1 0 -holy_sepulcher%1:06:00:: 03527930 1 0 -holy_sepulchre%1:06:00:: 03527930 1 0 -holy_spirit%1:18:00:: 09537781 1 2 -holy_terror%1:18:00:: 10702483 1 0 -holy_thistle%1:20:00:: 12015525 1 0 -holy_thursday%1:28:00:: 15193526 1 0 -holy_trinity%1:18:00:: 09536789 1 0 -holy_war_warriors%1:14:00:: 08031386 1 0 -holy_water%1:27:00:: 14846517 1 0 -holy_week%1:28:00:: 15181444 1 0 -holy_writ%1:10:00:: 06431740 1 0 -holy_year%1:28:00:: 15181556 1 0 -holystone%1:17:00:: 09305229 1 1 -holystone%2:35:00:: 01251515 1 0 -homage%1:04:00:: 01229223 1 0 -homaridae%1:05:00:: 01982895 1 0 -homarus%1:05:00:: 01983277 1 0 -homarus_americanus%1:05:00:: 01983481 1 0 -homarus_capensis%1:05:00:: 01983829 1 0 -homarus_vulgaris%1:05:00:: 01983674 1 0 -hombre%1:18:00:: 10153414 1 0 -homburg%1:06:00:: 03325941 1 0 -home%1:06:00:: 03259505 2 48 -home%1:06:01:: 03528100 9 0 -home%1:06:02:: 03528901 4 3 -home%1:14:00:: 08078020 8 0 -home%1:15:02:: 08490199 3 10 -home%1:15:03:: 08585158 6 1 -home%1:15:04:: 08559508 1 55 -home%1:15:05:: 08490402 5 2 -home%1:26:00:: 14513694 7 0 -home%2:38:00:: 02005347 2 0 -home%2:41:00:: 02459633 1 0 -home%3:00:00:: 01219827 1 7 -home%3:01:00:: 02742844 2 3 -home%4:02:01:: 00097840 1 59 -home%4:02:03:: 00098380 3 0 -home%4:02:04:: 00098520 2 2 -home%5:00:00:domestic:00 01038332 3 0 -home-baked%5:00:00:homemade:00 00674633 1 0 -home-brewed%5:00:00:homemade:00 00674732 1 0 -home-builder%1:18:00:: 10181656 1 0 -home-cured%5:00:00:homemade:00 00674824 1 0 -home-farm%1:06:00:: 03528761 1 0 -home-fried_potatoes%1:13:00:: 07711232 1 0 -home-loving%5:00:00:domestic:01 01039366 1 0 -home-school%2:41:00:: 02388215 1 0 -home-style%5:00:00:domestic:01 01039460 1 0 -home_appliance%1:06:00:: 03528263 1 0 -home_away_from_home%1:15:00:: 08559766 1 0 -home_banking%1:04:00:: 01100491 1 0 -home_base%1:06:00:: 03504723 2 0 -home_base%1:06:01:: 03528901 1 0 -home_brew%1:13:00:: 07886057 1 0 -home_buyer%1:18:00:: 10181799 1 0 -home_computer%1:06:00:: 03528523 1 0 -home_counties%1:15:00:: 08874469 1 0 -home_court%1:06:00:: 03528622 1 0 -home_ec%1:09:00:: 06149344 1 0 -home_economics%1:09:00:: 06149344 1 2 -home_equity_credit%1:21:00:: 13374979 1 0 -home_equity_loan%1:21:00:: 13374979 1 0 -home_folk%1:14:00:: 07948098 1 0 -home_fries%1:13:00:: 07711232 1 0 -home_from_home%1:15:00:: 08559766 1 0 -home_front%1:14:00:: 08180067 1 0 -home_game%1:04:00:: 00456804 1 0 -home_ground%1:15:00:: 08580583 1 0 -home_guard%1:14:00:: 08391021 1 0 -home_help%1:18:00:: 10181990 1 0 -home_in%2:33:12:: 01153007 1 0 -home_invasion%1:04:00:: 00785482 1 0 -home_key%1:10:00:: 06864407 1 0 -home_loan%1:21:00:: 13374979 1 0 -home_loan_bank%1:14:00:: 08423298 1 0 -home_movie%1:10:00:: 06615458 1 1 -home_office%1:06:00:: 03504723 2 0 -home_office%1:14:00:: 08114287 1 0 -home_page%1:10:00:: 06359096 1 0 -home_plate%1:06:00:: 03528901 1 2 -home_port%1:15:00:: 08638141 1 0 -home_range%1:15:00:: 08585540 1 0 -home_reserve%1:14:00:: 08391387 1 0 -home_room%1:06:00:: 03529175 1 0 -home_rule%1:26:00:: 13993210 1 0 -home_run%1:04:00:: 00132355 1 13 -home_run%1:04:01:: 00064789 2 0 -home_secretary%1:18:00:: 10182628 1 0 -home_stand%1:11:00:: 07465657 1 0 -home_study%1:04:00:: 00891224 1 0 -home_territory%1:15:00:: 08585540 1 0 -home_theater%1:06:00:: 03529860 1 0 -home_theatre%1:06:00:: 03529860 1 0 -home_truth%1:09:00:: 05819644 1 0 -homebody%1:18:00:: 10653388 1 0 -homebound%1:14:00:: 07948183 1 1 -homebound%5:00:00:confined:00 00558827 1 0 -homeboy%1:18:00:: 10181445 2 0 -homeboy%1:18:01:: 10181547 1 0 -homebrew%1:13:00:: 07886057 1 0 -homebuilder%1:18:00:: 10181656 1 0 -homecoming%1:04:00:: 00051192 2 0 -homecoming%1:04:02:: 00383281 1 0 -homecourt_advantage%1:07:00:: 05156993 1 0 -homefolk%1:14:00:: 07971298 1 1 -homegirl%1:18:00:: 10181878 1 0 -homegrown%5:00:00:native:01 01036874 1 1 -homel%1:15:00:: 09011679 1 0 -homeland%1:15:00:: 08510169 1 2 -homeland_security%1:14:00:: 08134807 1 0 -homeless%1:14:00:: 07948314 2 0 -homeless%1:18:00:: 10182190 1 0 -homeless%5:00:00:unfortunate:00 01050603 2 0 -homeless%5:00:00:unsettled:01 02127693 1 0 -homeless_person%1:18:00:: 10182190 1 0 -homelessness%1:26:00:: 13943053 1 0 -homelike%5:00:00:comfortable:00 00477661 1 0 -homeliness%1:07:00:: 04691651 2 0 -homeliness%1:07:01:: 04816528 1 0 -homely%5:00:00:comfortable:00 00477661 2 3 -homely%5:00:00:inelegant:00 00851588 4 0 -homely%5:00:00:plain:01 01793405 3 1 -homely%5:00:00:unattractive:00 00169432 1 5 -homemade%3:00:00:: 00674270 1 1 -homemaker%1:18:00:: 10189776 1 0 -homemaking%1:04:00:: 01134244 1 0 -homeobox%1:08:00:: 05438778 1 0 -homeobox_gene%1:08:00:: 05438778 1 0 -homeopath%1:18:00:: 10182402 1 0 -homeopathic%3:01:00:: 03072966 1 0 -homeopathy%1:04:00:: 00710889 1 0 -homeostasis%1:26:00:: 14003167 1 0 -homeostatic%3:01:00:: 02741032 1 0 -homeostatically%4:02:00:: 00142444 1 0 -homeotherm%1:05:00:: 01315330 1 0 -homeothermic%5:00:00:warm-blooded:00 02532681 1 0 -homeotic_gene%1:08:00:: 05438642 1 0 -homeowner%1:18:00:: 10182499 1 0 -homepage%1:10:00:: 06359096 1 0 -homer%1:04:00:: 00132355 1 12 -homer%1:05:00:: 01814921 5 0 -homer%1:18:00:: 11057381 2 1 -homer%1:18:01:: 11057548 4 0 -homer%1:23:00:: 13617046 3 0 -homer%2:33:00:: 01101218 1 0 -homer_a._thompson%1:18:00:: 11339905 1 0 -homer_armstrong_thompson%1:18:00:: 11339905 1 0 -homer_thompson%1:18:00:: 11339905 1 0 -homeric%3:01:00:: 03073251 1 2 -homeroom%1:06:00:: 03529175 1 0 -homesick%5:00:00:desirous:00 00889239 1 0 -homesickness%1:12:00:: 07487594 1 0 -homespun%1:06:00:: 03529444 1 0 -homespun%5:00:00:homemade:00 00674913 3 0 -homespun%5:00:00:rough:00 02240795 1 0 -homespun%5:00:00:rural:00 02052005 2 0 -homestead%1:06:00:: 03529629 3 0 -homestead%1:21:00:: 13249699 1 0 -homestead%1:21:01:: 13249400 2 0 -homestead%2:30:00:: 00415231 1 0 -homestead_law%1:10:00:: 06538655 1 0 -homesteader%1:18:00:: 10643218 1 3 -homestretch%1:06:00:: 03529740 2 0 -homestretch%1:11:00:: 07292418 1 0 -hometown%1:15:00:: 08671644 1 1 -homeward%4:02:00:: 00098605 1 1 -homeward%5:00:00:oriented:00 01683349 1 0 -homeward-bound%5:00:00:oriented:00 01683349 1 0 -homewards%4:02:00:: 00098605 1 0 -homework%1:04:00:: 00729108 1 0 -homework_problem%1:10:00:: 06785101 1 0 -homey%5:00:00:comfortable:00 00477661 1 0 -homicidal%5:00:00:bloody:00 00248837 1 1 -homicide%1:04:00:: 00220023 1 1 -homiletic%3:01:00:: 03073420 2 0 -homiletic%3:01:01:: 03073574 1 0 -homiletical%3:01:00:: 03073420 2 0 -homiletical%3:01:01:: 03073574 1 0 -homiletics%1:09:00:: 06183518 1 0 -homiletics%1:09:01:: 05635764 2 0 -homily%1:10:00:: 07244949 1 0 -hominal%5:00:00:human:00 01259644 1 0 -homing%5:00:00:orienting:00 01685231 1 0 -homing_device%1:06:00:: 03530041 1 0 -homing_pigeon%1:05:00:: 01814921 1 0 -homing_torpedo%1:06:00:: 03530189 1 0 -hominian%5:00:00:human:00 01259746 1 0 -hominid%1:05:00:: 02471762 1 0 -hominid%5:00:00:human:00 01259746 1 0 -hominidae%1:05:00:: 02471467 1 0 -hominine%5:00:00:human:00 01259941 1 0 -hominoid%1:05:00:: 02471300 1 0 -hominoidea%1:05:00:: 02471072 1 0 -hominy%1:13:00:: 07732302 1 0 -hominy_grits%1:13:00:: 07704428 1 0 -hommos%1:13:00:: 07857731 1 0 -homo%1:05:00:: 02472293 2 0 -homo%1:18:00:: 10182913 1 0 -homo_erectus%1:05:00:: 02473307 1 0 -homo_habilis%1:05:00:: 02474605 1 0 -homo_heidelbergensis%1:18:00:: 10168457 1 0 -homo_rhodesiensis%1:18:00:: 10528148 1 0 -homo_sapiens%1:05:00:: 02474777 1 0 -homo_sapiens_neanderthalensis%1:05:00:: 02475078 1 0 -homo_sapiens_sapiens%1:05:00:: 02475669 1 0 -homo_soloensis%1:05:00:: 02474110 1 0 -homobasidiomycetes%1:20:00:: 12997128 1 0 -homocentric%3:00:00:: 00542953 1 0 -homocercal%3:00:00:: 02590709 1 0 -homocercal_fin%1:05:00:: 02467320 1 0 -homochromatic%3:00:00:: 00366355 1 0 -homocyclic%5:00:00:cyclic:02 00677170 1 0 -homoecious%3:00:00:: 00180655 1 0 -homoeopath%1:18:00:: 10182402 1 0 -homoeopathy%1:04:00:: 00710889 1 0 -homoerotic%5:00:00:homosexual:00 01202105 1 0 -homoeroticism%1:04:00:: 00856847 1 0 -homogenate%1:27:00:: 14908422 1 2 -homogeneity%1:07:00:: 04745679 1 4 -homogeneity%1:07:01:: 04769234 2 0 -homogeneous%3:00:00:: 01199751 1 7 -homogeneous_polynomial%1:09:00:: 05862268 1 0 -homogeneously%4:02:00:: 00504874 1 1 -homogeneousness%1:07:00:: 04745679 1 0 -homogenisation%1:04:00:: 00380994 1 0 -homogenise%2:30:00:: 00457327 2 0 -homogenise%2:30:01:: 00457100 3 0 -homogenise%2:30:02:: 00457569 1 0 -homogenised%5:00:00:blended:00 01329413 1 0 -homogenised%5:00:00:homogeneous:00 01200617 2 0 -homogenization%1:04:00:: 00380994 1 0 -homogenize%2:30:00:: 00457327 3 0 -homogenize%2:30:01:: 00457100 1 1 -homogenize%2:30:02:: 00457569 2 0 -homogenized%5:00:00:blended:00 01329413 1 0 -homogenized%5:00:00:homogeneous:00 01200617 2 0 -homogenized_milk%1:13:00:: 07845863 1 0 -homogenous%3:00:00:: 01199751 1 0 -homogentisic_acid%1:27:00:: 14585048 1 0 -homogeny%1:07:00:: 04744161 1 0 -homograft%1:08:00:: 05583386 1 0 -homograph%1:10:00:: 07131022 1 0 -homogyne%1:20:00:: 11982724 1 0 -homogyne_alpina%1:20:00:: 11982939 1 0 -homoiotherm%1:05:00:: 01315330 1 0 -homoiothermic%5:00:00:warm-blooded:00 02532681 1 0 -homologic%5:00:00:homologous:02 01220882 1 0 -homological%5:00:00:homologous:02 01220882 1 0 -homologise%2:30:00:: 00417482 1 0 -homologize%2:30:00:: 00417482 2 0 -homologize%2:42:00:: 02699783 1 0 -homologous%3:00:01:: 01220052 2 0 -homologous%3:00:02:: 01220640 1 0 -homology%1:07:00:: 04744319 1 0 -homolosine_projection%1:06:00:: 03530326 1 0 -homomorphism%1:07:00:: 04744555 1 0 -homomorphy%1:07:00:: 04744555 1 0 -homona%1:05:00:: 02284513 1 0 -homona_coffearia%1:05:00:: 02284611 1 0 -homonym%1:10:00:: 06292649 1 0 -homonymic%3:01:00:: 02741150 1 0 -homonymous%3:01:00:: 02741150 1 0 -homonymy%1:24:00:: 13808981 1 0 -homophile%1:18:00:: 10182913 1 0 -homophile%5:00:00:homosexual:00 01201937 1 0 -homophobe%1:18:00:: 10182812 1 0 -homophobia%1:09:00:: 06203472 1 0 -homophobic%5:00:00:prejudiced:00 00285413 1 0 -homophone%1:10:00:: 07131169 1 0 -homophonic%5:00:00:monophonic:00 01543937 2 0 -homophonic%5:00:00:same:00 02064013 1 0 -homophonous%3:01:00:: 02993853 1 0 -homophony%1:10:00:: 07031144 2 0 -homophony%1:10:01:: 07131366 1 0 -homoptera%1:05:00:: 02245592 1 0 -homopteran%1:05:00:: 02246011 1 0 -homopterous_insect%1:05:00:: 02246011 1 0 -homosexual%1:18:00:: 10182913 1 1 -homosexual%3:00:00:: 01201422 1 1 -homosexualism%1:04:00:: 00856847 1 0 -homosexuality%1:04:00:: 00856847 1 0 -homosporous%3:01:00:: 02741271 1 0 -homospory%1:22:00:: 13493874 1 0 -homostyled%3:01:00:: 02741373 1 0 -homostylic%3:01:00:: 02741373 1 0 -homostylous%3:01:00:: 02741373 1 0 -homotherm%1:05:00:: 01315330 1 0 -homothermic%5:00:00:warm-blooded:00 02532681 1 0 -homozygosity%1:26:00:: 14569337 1 0 -homozygote%1:08:00:: 05432420 1 0 -homozygous%3:00:00:: 01200705 1 5 -homunculus%1:18:00:: 10291580 1 0 -homunculus%1:18:01:: 10183157 2 0 -homy%5:00:00:comfortable:00 00477661 1 0 -homyel%1:15:00:: 09011679 1 0 -honcho%1:18:00:: 10104209 1 0 -hondo%1:15:00:: 08920924 1 0 -honduran%1:18:00:: 09712570 1 0 -honduran%3:01:00:: 02969241 1 0 -honduran_capital%1:15:00:: 08738014 1 0 -honduran_monetary_unit%1:23:00:: 13684853 1 0 -honduras%1:15:00:: 08737716 1 0 -honduras_mahogany%1:20:00:: 12700088 1 0 -honduras_rosewood%1:20:00:: 12523698 1 0 -hone%1:06:00:: 03530511 1 0 -hone%2:30:00:: 00473572 2 0 -hone%2:35:00:: 01247181 1 0 -honegger%1:18:00:: 11057679 1 0 -honest%3:00:00:: 01222360 1 10 -honest%5:00:00:equitable:00 00958475 7 0 -honest%5:00:00:genuine:00 01116026 6 0 -honest%5:00:00:sincere:00 02180157 2 5 -honest%5:00:00:trustworthy:00 02465519 3 2 -honest%5:00:00:truthful:00 01225643 5 0 -honest%5:00:00:unpretentious:00 01851795 4 0 -honest-to-god%5:00:00:genuine:00 01116118 1 0 -honest-to-goodness%5:00:00:genuine:00 01116118 1 0 -honest_woman%1:18:00:: 10183347 1 0 -honestly%4:02:00:: 00314835 1 6 -honestly%4:02:01:: 00314384 2 1 -honestness%1:07:00:: 04871374 1 0 -honesty%1:07:00:: 04871374 1 2 -honesty%1:20:00:: 11891541 2 0 -honey%1:13:00:: 07858978 1 9 -honey%1:18:00:: 09849598 2 4 -honey%2:39:00:: 02195852 1 0 -honey%5:00:00:chromatic:00 00376537 1 2 -honey-colored%5:00:00:colored:00 00398271 1 0 -honey-coloured%5:00:00:colored:00 00398271 1 0 -honey-flower%1:20:01:: 12215210 2 0 -honey-flower%1:20:02:: 12220019 1 0 -honey-scented%5:00:00:odorous:00 01056481 1 0 -honey_badger%1:05:00:: 02448318 1 0 -honey_bear%1:05:00:: 02509197 1 0 -honey_bell%1:20:00:: 12200504 1 0 -honey_berry%1:20:00:: 12744850 1 0 -honey_bun%1:13:00:: 07693223 1 0 -honey_buzzard%1:05:00:: 01608265 1 0 -honey_cake%1:13:00:: 07634306 1 0 -honey_crisp%1:13:00:: 07606191 1 0 -honey_eater%1:05:00:: 01526766 1 0 -honey_fungus%1:20:00:: 13232779 1 0 -honey_gland%1:20:00:: 11683838 1 0 -honey_guide%1:05:00:: 01842788 1 0 -honey_locust%1:20:00:: 12495895 1 0 -honey_mesquite%1:20:00:: 11765568 1 0 -honey_mushroom%1:20:00:: 13232779 1 0 -honey_oil%1:06:00:: 03606572 1 0 -honey_plant%1:20:00:: 13237075 1 0 -honeybee%1:05:00:: 02208280 1 6 -honeybells%1:20:00:: 12200504 1 0 -honeycomb%1:06:00:: 03530642 2 0 -honeycomb%1:17:00:: 09218315 1 0 -honeycomb%2:30:00:: 00533773 3 0 -honeycomb%2:35:00:: 01229809 2 0 -honeycomb%2:36:00:: 01752162 1 0 -honeycomb_tripe%1:13:00:: 07663360 1 0 -honeycombed%5:00:00:cellular:00 00327690 1 0 -honeycreeper%1:05:01:: 01538955 2 0 -honeycreeper%1:05:02:: 01544704 1 0 -honeydew%1:13:00:: 07756325 1 0 -honeydew_melon%1:13:00:: 07756325 2 0 -honeydew_melon%1:20:00:: 12164881 1 0 -honeyed%5:00:00:melodious:00 01501821 2 0 -honeyed%5:00:00:sugary:00 02338037 1 0 -honeyed_words%1:10:00:: 07137461 1 0 -honeyflower%1:20:01:: 12215210 2 0 -honeyflower%1:20:02:: 12220019 1 0 -honeylike%5:00:00:sugary:00 02338125 1 0 -honeymoon%1:28:00:: 15138903 1 2 -honeymoon%1:28:01:: 15293788 2 0 -honeymoon%2:42:00:: 02708923 1 3 -honeymoon_resort%1:15:00:: 08560415 1 0 -honeymooner%1:18:00:: 10356066 1 0 -honeypot%1:20:00:: 12215022 1 0 -honeysucker%1:05:00:: 01526766 1 0 -honeysuckle%1:20:01:: 12674120 1 1 -honeysuckle%1:20:02:: 11727358 3 0 -honeysuckle%1:20:04:: 12215824 2 0 -honeysuckle_family%1:20:00:: 12671157 1 0 -hong_kong%1:15:00:: 08731148 1 0 -hong_kong_dollar%1:23:00:: 13673455 1 0 -honiara%1:15:00:: 08998451 1 0 -honied%5:00:00:sugary:00 02338037 1 0 -honk%1:11:00:: 07385249 1 0 -honk%2:29:00:: 00076400 4 0 -honk%2:32:00:: 01053339 3 0 -honk%2:32:01:: 01053495 2 0 -honk%2:39:00:: 02183175 1 0 -honker%1:05:00:: 01857632 3 0 -honker%1:08:00:: 05598707 2 0 -honker%1:18:00:: 10183556 1 0 -honkey%1:18:00:: 09641422 1 0 -honkie%1:18:00:: 09641422 1 0 -honky%1:18:00:: 09641422 1 0 -honky-tonk%1:06:00:: 02795670 1 1 -honkytonk%1:06:00:: 03530803 1 1 -honolulu%1:15:00:: 09078784 1 3 -honor%1:07:00:: 04869106 3 3 -honor%1:07:01:: 04849972 4 0 -honor%1:10:00:: 06696483 1 11 -honor%1:26:00:: 14436875 2 3 -honor%2:40:00:: 02237631 3 0 -honor%2:41:00:: 02546075 1 28 -honor%2:41:01:: 02457233 2 3 -honor_guard%1:18:00:: 10183931 1 0 -honor_killing%1:04:00:: 00220219 1 0 -honor_system%1:09:00:: 05663878 1 0 -honorable%3:00:00:: 01226240 2 0 -honorable%3:00:04:: 01222360 1 1 -honorable%5:00:00:reputable:00 01983162 4 0 -honorable%5:00:00:right:01 02035086 3 0 -honorable_discharge%1:04:00:: 00233980 1 0 -honorable_mention%1:10:00:: 06706317 1 0 -honorableness%1:07:00:: 04868748 1 0 -honorably%4:02:00:: 00315457 2 0 -honorably%4:02:02:: 00490876 1 2 -honorarium%1:21:00:: 13283952 1 0 -honorary%5:00:00:unearned:00 00821959 1 0 -honorary_degree%1:10:00:: 06705079 1 0 -honorary_society%1:14:00:: 08280124 1 0 -honore-gabriel_victor_riqueti%1:18:00:: 11181634 1 0 -honore_balzac%1:18:00:: 10833111 1 0 -honore_daumier%1:18:00:: 10923521 1 0 -honore_de_balzac%1:18:00:: 10833111 1 0 -honored%5:00:00:reputable:00 01982957 1 4 -honoree%1:18:00:: 10183757 1 0 -honorific%1:10:00:: 07070883 1 0 -honorific%5:00:00:respectful:00 01994404 1 0 -honoring%1:04:00:: 01204419 1 0 -honoris_causa%1:10:00:: 06705079 1 0 -honour%1:07:00:: 04869106 3 0 -honour%1:07:01:: 04849972 4 0 -honour%1:10:00:: 06696483 2 1 -honour%1:26:00:: 14436875 1 1 -honour%2:40:00:: 02237631 3 0 -honour%2:41:00:: 02546075 1 1 -honour%2:41:01:: 02457233 2 0 -honourable%3:00:00:: 01226240 1 0 -honourable%5:00:00:right:01 02035086 2 0 -honourableness%1:07:00:: 04868748 1 0 -honourably%4:02:00:: 00315457 1 0 -honours%1:10:00:: 06700030 1 0 -honours_degree%1:10:00:: 06700030 1 0 -honours_list%1:10:00:: 06489190 1 0 -honshu%1:15:00:: 08920924 1 0 -hoo-ha%1:26:00:: 13977366 1 0 -hoo-hah%1:26:00:: 13977366 1 0 -hooch%1:13:00:: 07886176 1 0 -hood%1:05:00:: 01748100 10 0 -hood%1:06:00:: 03530910 9 0 -hood%1:06:02:: 03531281 8 0 -hood%1:06:03:: 03531447 7 0 -hood%1:06:04:: 03531546 6 0 -hood%1:06:05:: 03531691 5 0 -hood%1:06:06:: 03531808 4 0 -hood%1:14:00:: 08225334 3 0 -hood%1:17:00:: 09305358 2 0 -hood%1:18:00:: 10184081 1 1 -hood%2:35:00:: 01337092 1 0 -hood_latch%1:06:00:: 03531982 1 0 -hood_ornament%1:06:00:: 03532187 1 0 -hooded_cloak%1:06:00:: 02956883 1 0 -hooded_coat%1:06:00:: 02957008 1 0 -hooded_ladies'_tresses%1:20:00:: 12084158 1 0 -hooded_merganser%1:05:00:: 01855476 1 0 -hooded_pitcher_plant%1:20:00:: 12780325 1 0 -hooded_seal%1:05:00:: 02081060 1 0 -hooded_sheldrake%1:05:00:: 01855476 1 0 -hooded_skunk%1:05:00:: 02446352 1 0 -hoodlum%1:18:00:: 10184081 1 0 -hoodmold%1:06:00:: 03242595 1 0 -hoodmould%1:06:00:: 03242595 1 0 -hoodoo%1:06:00:: 03603958 3 0 -hoodoo%1:06:02:: 03532080 4 0 -hoodoo%1:18:00:: 10184290 2 0 -hoodoo%1:25:00:: 13901055 1 0 -hoodoo%2:42:00:: 02726717 1 0 -hoodooism%1:09:00:: 06245816 1 0 -hoodwink%2:32:00:: 00839194 2 0 -hoodwink%2:41:00:: 02578235 1 0 -hooey%1:10:00:: 06609909 1 0 -hoof%1:05:00:: 02153959 1 7 -hoof%1:05:01:: 02154133 2 0 -hoof%2:36:03:: 01709781 2 0 -hoof%2:38:00:: 01906322 1 0 -hoof-and-mouth_disease%1:26:00:: 14264664 1 0 -hoof-mark%1:10:00:: 06799754 1 0 -hoof_it%2:38:00:: 01906322 1 0 -hoof_mark%1:10:00:: 06799754 1 0 -hoofed%3:00:00:: 02489485 1 0 -hoofed_mammal%1:05:00:: 02370806 1 0 -hoofer%1:18:00:: 10184403 1 0 -hoofing%1:04:00:: 00527695 1 0 -hooflike%3:01:00:: 02742972 1 0 -hoofprint%1:10:00:: 06799754 1 0 -hook%1:04:00:: 00135799 7 0 -hook%1:04:02:: 00572285 6 0 -hook%1:04:03:: 00111358 8 0 -hook%1:06:00:: 03532342 5 0 -hook%1:06:01:: 03532672 4 0 -hook%1:06:03:: 03532919 1 1 -hook%1:09:00:: 05695232 3 0 -hook%1:25:00:: 13869547 2 0 -hook%2:32:00:: 00781652 12 0 -hook%2:32:09:: 00783042 11 0 -hook%2:33:00:: 01080883 10 0 -hook%2:34:00:: 01165290 9 0 -hook%2:35:00:: 01365549 1 2 -hook%2:35:01:: 01365709 8 0 -hook%2:35:02:: 01396790 7 0 -hook%2:35:03:: 01409177 4 1 -hook%2:36:00:: 01672490 3 1 -hook%2:40:00:: 02276866 6 0 -hook%2:40:01:: 02322230 5 0 -hook%2:40:02:: 02319050 2 1 -hook-nosed%5:00:00:nosed:00 01607492 1 0 -hook-shaped%5:00:00:formed:00 02147653 1 0 -hook_and_eye%1:06:00:: 03533392 1 0 -hook_line_and_sinker%4:02:00:: 00164466 1 0 -hook_of_holland%1:17:00:: 09305479 1 0 -hook_on%2:31:00:: 00602112 1 0 -hook_shot%1:04:00:: 00111358 1 0 -hook_spanner%1:06:00:: 03533845 1 0 -hook_up%2:35:00:: 01366426 1 1 -hook_up_with%2:41:00:: 02488834 1 0 -hook_wrench%1:06:00:: 03533845 1 0 -hookah%1:06:00:: 03533014 1 0 -hooke%1:18:00:: 11057925 1 0 -hooke's_law%1:09:00:: 05879003 1 0 -hooked%5:00:00:addicted:00 00047406 2 1 -hooked%5:00:00:crooked:01 02312354 1 1 -hooked%5:00:00:curved:00 02316366 3 0 -hooker%1:18:00:: 10663315 3 0 -hooker%1:18:01:: 10184505 5 0 -hooker%1:18:02:: 10184683 4 0 -hooker%1:18:03:: 11058335 2 0 -hooker%1:18:04:: 11058436 1 0 -hooker's_green%1:27:00:: 14811435 1 1 -hooker's_onion%1:20:00:: 12432069 1 0 -hooker's_orchid%1:20:00:: 12067029 1 0 -hooking%1:04:00:: 00572285 1 0 -hooklike%5:00:00:curved:00 02316366 1 0 -hooknose%1:08:00:: 05599501 1 0 -hooks%1:08:00:: 05565192 1 0 -hookup%1:06:00:: 03533486 2 0 -hookup%1:06:01:: 03533654 1 1 -hookworm%1:05:00:: 01933151 1 1 -hookworm%1:26:00:: 14453676 2 0 -hookworm_disease%1:26:00:: 14453676 1 0 -hooky%1:04:00:: 01234612 1 0 -hooky_player%1:18:00:: 10731732 1 0 -hooligan%1:18:00:: 09879297 1 0 -hooliganism%1:04:00:: 01249816 1 0 -hoop%1:06:00:: 03533972 2 1 -hoop%1:06:01:: 03534429 1 1 -hoop%1:06:02:: 04582771 3 0 -hoop%1:06:03:: 02802215 4 0 -hoop%2:35:00:: 01303123 1 0 -hoop_ash%1:20:00:: 12305089 1 0 -hoop_pine%1:20:00:: 11646955 1 0 -hoop_snake%1:05:00:: 01728266 1 2 -hoopla%1:10:00:: 07248507 1 0 -hoopoe%1:05:00:: 01829869 1 0 -hoopoo%1:05:00:: 01829869 1 0 -hoops%1:04:00:: 00480993 1 0 -hoopskirt%1:06:00:: 03534580 1 0 -hooray%1:10:00:: 06692973 1 0 -hooray_henry%1:18:00:: 10184822 1 0 -hoosegow%1:06:00:: 03534695 1 0 -hoosgow%1:06:00:: 03534695 1 0 -hoosier%1:18:00:: 09743016 1 0 -hoosier_state%1:15:00:: 09084750 1 0 -hoot%1:07:00:: 05140793 3 0 -hoot%1:10:01:: 07122555 1 1 -hoot%1:10:02:: 07123870 2 0 -hoot%2:32:00:: 01042725 1 3 -hoot%2:32:01:: 01053221 2 0 -hoot_owl%1:05:00:: 01624305 1 0 -hootch%1:13:00:: 07886176 1 0 -hooter%1:05:00:: 01621127 3 0 -hooter%1:06:00:: 02761834 2 0 -hooter%1:08:00:: 05598707 1 0 -hooved%3:00:00:: 02489485 1 0 -hoover%1:06:00:: 03534776 4 0 -hoover%1:18:00:: 11058633 3 0 -hoover%1:18:01:: 11058914 2 0 -hoover%1:18:02:: 11059079 1 0 -hoover%2:35:00:: 01244853 1 0 -hoover_dam%1:06:00:: 03534890 1 0 -hop%1:04:00:: 00120010 1 1 -hop%1:11:00:: 07449548 3 0 -hop%1:20:00:: 12397864 2 0 -hop%2:38:00:: 01966861 1 7 -hop%2:38:01:: 02094788 6 0 -hop%2:38:02:: 02094922 5 0 -hop%2:38:03:: 02095060 4 0 -hop%2:38:04:: 02095211 2 1 -hop%2:38:05:: 01840736 3 1 -hop-picker%1:06:00:: 03535429 1 0 -hop-skip%2:38:00:: 01966861 1 1 -hop-step-and-jump%1:11:00:: 07471972 1 0 -hop_clover%1:20:01:: 11752937 2 0 -hop_clover%1:20:02:: 12549192 1 0 -hop_field%1:06:00:: 03535186 1 0 -hop_garden%1:06:00:: 03535186 1 0 -hop_hornbeam%1:20:00:: 12287642 1 0 -hop_marjoram%1:20:00:: 12853706 1 0 -hop_on%2:38:00:: 01923414 1 0 -hop_out%2:38:00:: 01923732 1 0 -hop_pole%1:06:00:: 03535526 1 0 -hop_up%2:30:00:: 00170997 1 0 -hope%1:07:00:: 04848262 6 0 -hope%1:09:00:: 05950733 3 14 -hope%1:12:00:: 07541053 2 17 -hope%1:12:01:: 07511733 1 18 -hope%1:18:00:: 10184946 4 2 -hope%1:18:01:: 11059263 5 0 -hope%2:31:00:: 00706047 3 23 -hope%2:37:00:: 01811441 2 37 -hope%2:37:01:: 01826723 1 60 -hope_chest%1:06:00:: 03535024 1 0 -hoped-for%5:00:00:expected:00 00929815 1 0 -hopeful%1:18:00:: 09801533 1 0 -hopeful%3:00:00:: 01228530 1 2 -hopeful%5:00:00:auspicious:00 00176387 2 1 -hopefully%4:02:00:: 00200243 1 3 -hopefully%4:02:01:: 00200146 2 0 -hopefulness%1:12:00:: 07541316 2 0 -hopefulness%1:26:00:: 14483620 1 0 -hopeh%1:15:00:: 08725926 1 0 -hopei%1:15:00:: 08725926 1 0 -hopeless%3:00:00:: 01229020 1 3 -hopeless%5:00:01:bad:00 01127440 4 0 -hopeless%5:00:02:impossible:00 01823475 3 0 -hopeless%5:00:03:unskilled:00 02229812 2 0 -hopelessly%4:02:00:: 00200392 3 0 -hopelessly%4:02:01:: 00200614 1 3 -hopelessly%4:02:03:: 00317766 2 0 -hopelessness%1:12:00:: 07542249 1 0 -hoper%1:18:00:: 10185148 1 0 -hopi%1:10:00:: 06915031 2 0 -hopi%1:18:00:: 09656547 1 0 -hopkins%1:18:00:: 11059438 5 0 -hopkins%1:18:01:: 11059593 4 0 -hopkins%1:18:02:: 11059772 3 0 -hopkins%1:18:03:: 11059875 2 0 -hopkins%1:18:04:: 11060103 1 0 -hopkinson%1:18:00:: 11060241 1 0 -hopped-up%5:00:00:intoxicated:00 00799401 2 0 -hopped-up%5:00:00:powered:00 01828987 1 0 -hopper%1:04:00:: 00129089 5 0 -hopper%1:05:00:: 02226429 4 0 -hopper%1:06:00:: 03535284 1 1 -hopper%1:06:02:: 03535429 3 0 -hopper%1:18:00:: 10185327 2 0 -hopple%2:35:00:: 01289633 1 0 -hops%1:20:00:: 12397864 1 0 -hopsack%1:06:00:: 03535647 1 0 -hopsacking%1:06:00:: 03535647 1 0 -hopscotch%1:04:00:: 00485081 1 1 -horace%1:18:00:: 11060416 1 0 -horace_greeley%1:18:00:: 11013191 1 0 -horace_mann%1:18:00:: 11154174 1 0 -horace_walpole%1:18:00:: 11372599 1 0 -horary%3:01:00:: 02743112 1 0 -horatian_ode%1:10:00:: 06383934 1 0 -horatio_alger%1:18:00:: 10813527 1 0 -horatio_herbert_kitchener%1:18:00:: 11106479 1 0 -horatio_hornblower%1:18:00:: 09600439 1 0 -horatio_nelson%1:18:00:: 11203059 1 0 -horatio_walpole%1:18:00:: 11372599 1 0 -horde%1:14:00:: 08182962 1 3 -horde%1:14:01:: 08184217 3 0 -horde%1:14:02:: 08250889 2 0 -hordeolum%1:26:00:: 14185219 1 0 -hordeum%1:20:00:: 12123050 1 0 -hordeum_jubatum%1:20:00:: 12123932 1 0 -hordeum_murinum%1:20:00:: 12123741 1 0 -hordeum_pusillum%1:20:00:: 12124172 1 0 -hordeum_vulgare%1:20:00:: 12123450 1 0 -horehound%1:13:00:: 07606419 2 0 -horehound%1:20:00:: 12854048 1 0 -horizon%1:07:00:: 05127782 2 7 -horizon%1:15:00:: 08585657 1 9 -horizon%1:15:01:: 08658118 3 0 -horizon%1:15:02:: 08585846 4 0 -horizontal%1:24:00:: 13828681 1 0 -horizontal%3:00:00:: 01232635 1 4 -horizontal_bar%1:06:00:: 03535780 1 1 -horizontal_combination%1:04:00:: 01238847 1 0 -horizontal_integration%1:04:00:: 01238847 1 0 -horizontal_parallax%1:19:00:: 11529158 1 0 -horizontal_section%1:06:00:: 03535970 1 0 -horizontal_stabiliser%1:06:00:: 03536122 1 0 -horizontal_stabilizer%1:06:00:: 03536122 1 0 -horizontal_surface%1:06:00:: 03536348 1 0 -horizontal_tail%1:06:00:: 03536568 1 0 -horizontality%1:07:00:: 05079474 1 0 -horizontally%4:02:00:: 00358342 1 0 -hormonal%3:01:00:: 02934744 1 0 -hormone%1:08:00:: 05407119 1 6 -hormone-replacement_therapy%1:04:00:: 00663094 1 0 -hormone_replacement_therapy%1:04:00:: 00663094 1 0 -horn%1:05:01:: 01325417 2 3 -horn%1:05:02:: 01325853 6 1 -horn%1:06:00:: 03394916 10 0 -horn%1:06:01:: 03110669 5 1 -horn%1:06:03:: 03536761 9 0 -horn%1:06:04:: 03536931 4 1 -horn%1:06:05:: 02761834 11 0 -horn%1:06:06:: 03537085 1 7 -horn%1:06:07:: 03537241 8 0 -horn%1:10:02:: 07265508 3 1 -horn%1:27:00:: 14758027 7 0 -horn%2:35:00:: 01445027 1 0 -horn-rimmed%5:00:00:rimmed:00 02027319 1 0 -horn-shaped%5:00:00:formed:00 02147739 1 0 -horn_button%1:06:00:: 03537412 1 0 -horn_fly%1:05:00:: 02199502 1 1 -horn_in%2:39:00:: 02169119 1 0 -horn_of_africa%1:15:00:: 08999154 1 0 -horn_of_plenty%1:10:00:: 06808121 1 0 -horn_poppy%1:20:00:: 11905749 1 0 -hornbeam%1:20:00:: 12286826 1 0 -hornbill%1:05:00:: 01829413 1 0 -hornblende%1:27:00:: 14726124 1 0 -hornbook%1:10:00:: 06421538 1 0 -horne%1:18:00:: 11060535 2 0 -horne%1:18:01:: 11060688 1 0 -horned%3:00:00:: 02033868 1 0 -horned_asp%1:05:00:: 01753488 1 0 -horned_chameleon%1:05:00:: 01694311 1 0 -horned_dinosaur%1:05:00:: 01703569 1 0 -horned_lizard%1:05:00:: 01681940 1 0 -horned_owl%1:05:00:: 01622352 1 0 -horned_pondweed%1:20:00:: 12618146 1 0 -horned_poppy%1:20:00:: 11905749 1 0 -horned_pout%1:05:00:: 02519340 1 0 -horned_puffin%1:05:00:: 02048115 1 0 -horned_rattlesnake%1:05:00:: 01756291 1 0 -horned_screamer%1:05:00:: 01860864 1 0 -horned_toad%1:05:02:: 01681940 1 0 -horned_violet%1:20:00:: 12388989 1 0 -horned_viper%1:05:00:: 01753488 1 0 -horned_whiff%1:05:00:: 02662397 1 0 -horneophyton%1:20:00:: 13218504 1 0 -horner's_syndrome%1:26:00:: 14156740 1 0 -hornet%1:05:00:: 02213107 1 0 -hornet's_nest%1:17:00:: 09475044 2 0 -hornet's_nest%1:26:00:: 13935572 1 0 -hornets'_nest%1:17:00:: 09475044 2 0 -hornets'_nest%1:26:00:: 13935572 1 0 -horney%1:18:00:: 11060805 1 0 -hornfels%1:27:00:: 14699068 1 0 -horniness%1:26:00:: 14038027 1 0 -hornist%1:18:00:: 10185483 1 0 -hornless%3:00:00:: 02034739 1 0 -hornlike%5:00:00:hard:01 01151452 1 0 -hornpipe%1:04:00:: 00538876 1 1 -hornpipe%1:06:00:: 03537550 3 0 -hornpipe%1:10:00:: 07055720 2 0 -hornpout%1:05:00:: 02519340 1 0 -hornstone%1:27:00:: 14699068 1 0 -hornswoggle%2:41:00:: 02572119 1 0 -hornwort%1:20:01:: 11538820 2 0 -hornwort%1:20:02:: 11702252 1 0 -horny%5:00:00:hard:01 01151452 3 0 -horny%5:00:00:horned:00 02034592 2 0 -horny%5:00:00:sexy:00 02131668 1 0 -horny_frog%1:05:00:: 01681940 1 0 -horny_layer%1:08:00:: 05243077 1 0 -horny_structure%1:08:00:: 05581514 1 0 -horologe%1:06:00:: 04437953 1 0 -horologer%1:18:00:: 10769905 1 0 -horologist%1:18:00:: 10769905 1 0 -horology%1:09:00:: 05635841 1 0 -horoscope%1:06:00:: 03537714 2 0 -horoscope%1:10:00:: 06749594 1 1 -horoscopy%1:09:00:: 05778646 1 0 -horowitz%1:18:00:: 11060937 1 0 -horrendous%5:00:00:alarming:00 00193799 1 0 -horrible%5:00:00:alarming:00 00193480 1 4 -horribly%4:02:00:: 00056340 1 3 -horrid%5:00:00:bad:00 01127661 1 1 -horrid%5:00:00:offensive:01 01626562 2 0 -horridly%4:02:00:: 00356765 1 0 -horridness%1:07:00:: 04782116 1 0 -horrific%5:00:00:alarming:00 00193799 2 0 -horrific%5:00:00:offensive:01 01626562 1 0 -horrified%5:00:00:afraid:00 00079786 1 2 -horrify%2:37:01:: 01782650 1 0 -horrifying%5:00:00:alarming:00 00193480 1 1 -horrifyingly%4:02:00:: 00247459 1 1 -horripilate%2:39:00:: 02116568 2 0 -horripilate%2:39:01:: 02116777 1 0 -horripilation%1:04:00:: 00866606 1 0 -horror%1:06:00:: 03537866 2 6 -horror%1:12:00:: 07503987 3 3 -horror%1:12:01:: 07520411 1 10 -horror-stricken%5:00:00:afraid:00 00079786 1 2 -horror-struck%5:00:00:afraid:00 00079786 1 0 -hors_d'oeuvre%1:13:00:: 07582277 1 0 -horse%1:05:00:: 02374451 1 103 -horse%1:06:00:: 03624767 5 0 -horse%1:06:01:: 04140631 4 0 -horse%1:06:03:: 03538037 2 1 -horse%1:14:00:: 08397856 3 0 -horse%2:34:00:: 01184058 1 0 -horse's_foot%1:05:00:: 02159117 1 0 -horse-and-buggy%5:00:00:nonmodern:00 01537269 1 0 -horse-brier%1:20:00:: 12470512 1 0 -horse-cart%1:06:00:: 03538406 1 0 -horse-chestnut_family%1:20:00:: 12767951 1 0 -horse-drawn%3:01:00:: 02741557 1 0 -horse-drawn_vehicle%1:06:00:: 03538634 1 0 -horse-head%1:05:00:: 02578233 1 0 -horse-pistol%1:06:00:: 03539293 1 0 -horse-race%2:33:00:: 01086965 1 0 -horse-trade%2:32:00:: 00762889 1 0 -horse-trail%1:06:00:: 03539678 1 1 -horse_around%2:32:00:: 00854150 1 0 -horse_balm%1:20:00:: 12844409 1 0 -horse_barn%1:06:00:: 04294879 1 0 -horse_bean%1:13:00:: 07801892 1 0 -horse_blanket%1:06:00:: 04124202 1 0 -horse_botfly%1:05:00:: 02193665 1 0 -horse_breeding%1:04:00:: 00915646 1 0 -horse_brier%1:20:00:: 12470512 1 0 -horse_cart%1:06:00:: 03538406 1 0 -horse_cassia%1:20:01:: 12492460 2 0 -horse_cassia%1:20:02:: 12492900 1 0 -horse_cavalry%1:14:00:: 08389900 2 0 -horse_cavalry%1:14:01:: 08397856 1 0 -horse_chestnut%1:20:00:: 12768369 1 1 -horse_chestnut%1:20:02:: 12768682 2 0 -horse_doctor%1:18:00:: 10185591 1 0 -horse_fancier%1:18:00:: 10185682 1 0 -horse_fly%1:05:00:: 02195526 1 0 -horse_gentian%1:20:00:: 12679876 1 0 -horse_grain%1:20:00:: 12547872 1 0 -horse_gram%1:20:00:: 12547872 1 0 -horse_latitude%1:15:00:: 08586036 1 0 -horse_mackerel%1:05:01:: 02580679 3 0 -horse_mackerel%1:05:02:: 02580830 2 0 -horse_mackerel%1:05:03:: 02627292 1 0 -horse_manure%1:27:00:: 14864079 1 0 -horse_mushroom%1:20:00:: 13001366 1 0 -horse_nettle%1:20:00:: 12893993 1 0 -horse_of_the_wood%1:05:00:: 01797020 1 0 -horse_opera%1:10:00:: 06616035 1 0 -horse_parsley%1:20:00:: 12945828 1 0 -horse_pistol%1:06:00:: 03539293 1 0 -horse_race%1:11:00:: 07461411 1 2 -horse_racing%1:04:00:: 00450070 1 0 -horse_radish%1:20:00:: 11872973 1 0 -horse_sense%1:09:00:: 05614657 1 0 -horse_thistle%1:20:00:: 11987511 1 0 -horse_tick%1:05:00:: 02198859 1 0 -horse_trade%1:04:00:: 01109934 1 0 -horse_trader%1:18:00:: 10186068 1 0 -horse_trading%1:04:00:: 01109934 1 1 -horse_trading%1:10:00:: 07150499 2 0 -horse_wrangler%1:18:00:: 10186216 1 0 -horseback%1:05:00:: 01902274 1 2 -horseback%1:17:00:: 09304376 2 0 -horseback%4:02:00:: 00002436 1 0 -horseback_rider%1:18:00:: 10185793 1 0 -horseback_riding%1:04:00:: 00299217 2 0 -horseback_riding%1:04:01:: 00450335 1 0 -horsebean%1:20:00:: 12497669 2 0 -horsebean%1:20:02:: 12576323 1 0 -horsebox%1:06:00:: 03538179 1 0 -horsecar%1:06:00:: 03538300 1 0 -horsecloth%1:06:00:: 03538542 1 0 -horsefish%1:05:00:: 02578233 1 0 -horseflesh%1:13:00:: 07666406 1 0 -horsefly%1:05:00:: 02195526 2 0 -horsefly%1:05:02:: 02198859 1 0 -horsefly_weed%1:20:00:: 12509993 1 0 -horsehair%1:06:00:: 03538817 2 0 -horsehair%1:27:01:: 14908584 1 0 -horsehair_lichen%1:20:00:: 12990597 1 0 -horsehair_wig%1:06:00:: 03538957 1 0 -horsehead%1:05:00:: 02578233 1 0 -horsehide%1:27:00:: 14762758 1 0 -horselaugh%1:10:00:: 07127911 1 1 -horseleech%1:05:00:: 01938735 1 0 -horseless_carriage%1:06:00:: 03539103 1 0 -horseman%1:18:00:: 10185793 1 6 -horseman%1:18:01:: 10185682 2 0 -horsemanship%1:09:00:: 05638374 1 1 -horsemeat%1:13:00:: 07666406 1 0 -horsemint%1:20:01:: 12855886 3 0 -horsemint%1:20:02:: 12858618 2 0 -horsemint%1:20:03:: 12858987 1 0 -horseplay%1:04:00:: 00513761 1 0 -horsepond%1:17:00:: 09305646 1 0 -horsepower%1:23:00:: 13645010 1 0 -horsepower-hour%1:23:00:: 13728074 1 0 -horseradish%1:13:00:: 07824383 3 0 -horseradish%1:20:00:: 11872973 2 0 -horseradish%1:20:01:: 11873182 1 0 -horseradish_peroxidase%1:27:00:: 14612618 1 0 -horseradish_root%1:20:00:: 11873182 1 0 -horseradish_sauce%1:13:00:: 07830841 1 0 -horseshit%1:10:00:: 06611376 1 0 -horseshoe%1:06:00:: 03539433 2 0 -horseshoe%1:06:01:: 03539546 1 0 -horseshoe%2:40:00:: 02340247 1 0 -horseshoe_arch%1:06:00:: 03784896 1 0 -horseshoe_bat%1:05:01:: 02143439 2 0 -horseshoe_bat%1:05:02:: 02143891 1 0 -horseshoe_crab%1:05:00:: 01787835 1 0 -horseshoe_falls%1:17:00:: 09232165 1 0 -horseshoe_vetch%1:20:00:: 12535254 1 0 -horseshoe_whipsnake%1:05:00:: 01731277 1 0 -horseshoer%1:18:00:: 10079677 1 0 -horseshoes%1:04:00:: 00467320 1 0 -horseshow%1:04:00:: 00519579 1 0 -horsetail%1:20:00:: 13219422 1 0 -horsetail_family%1:20:00:: 13219067 1 0 -horsetail_lichen%1:20:00:: 12990597 1 0 -horsetail_milkweed%1:20:00:: 13235319 1 0 -horseweed%1:20:01:: 11956348 2 0 -horseweed%1:20:02:: 12844409 1 0 -horsewhip%1:06:00:: 03539754 1 0 -horsewhip%2:35:00:: 01398772 1 0 -horsewhipping%1:04:00:: 01163429 1 0 -horsewoman%1:18:00:: 10186143 1 0 -horsey_set%1:14:00:: 08251605 1 0 -horst%1:17:00:: 09305728 1 0 -horsy_set%1:14:00:: 08251605 1 0 -horta%1:18:00:: 11061089 1 0 -hortative%5:00:00:encouraging:00 00866735 1 0 -hortatory%5:00:00:encouraging:00 00866735 1 0 -hortensia%1:20:00:: 12788854 1 0 -hortensia%1:20:02:: 12009047 2 0 -horticultural%3:01:00:: 02927048 1 0 -horticulturally%4:02:00:: 00142576 1 0 -horticulture%1:04:00:: 00918383 1 0 -horticulturist%1:18:00:: 10186350 1 0 -horus%1:18:00:: 09512266 1 0 -hosanna%1:10:00:: 07122639 1 0 -hose%1:06:00:: 03540267 1 0 -hose%1:06:01:: 03539875 3 0 -hose%1:06:02:: 03540090 2 0 -hose%2:30:00:: 00228521 1 0 -hose_down%2:30:00:: 00228521 1 0 -hosea%1:10:00:: 06439253 2 0 -hosea%1:18:00:: 11061225 1 0 -hosepipe%1:06:00:: 03539875 1 0 -hosier%1:18:00:: 10186578 1 0 -hosiery%1:06:00:: 03540267 1 0 -hosni_mubarak%1:18:00:: 11194587 1 0 -hospice%1:04:00:: 00697249 2 0 -hospice%1:06:00:: 03540476 1 0 -hospitable%3:00:00:: 01242101 1 1 -hospitable%3:00:02:: 01243825 2 0 -hospitable%5:00:00:receptive:00 01986134 3 0 -hospitableness%1:07:00:: 04656282 1 0 -hospitably%4:02:00:: 00358686 1 0 -hospital%1:06:00:: 03540595 1 25 -hospital%1:14:00:: 08054417 2 0 -hospital_attendant%1:18:00:: 10381804 1 0 -hospital_bed%1:06:00:: 03540914 1 0 -hospital_care%1:04:00:: 00658627 1 0 -hospital_chaplain%1:18:00:: 10186686 1 0 -hospital_occupancy%1:24:00:: 13818736 1 0 -hospital_room%1:06:00:: 03541091 1 0 -hospital_ship%1:06:00:: 03541269 1 0 -hospital_train%1:06:00:: 03541393 1 0 -hospital_ward%1:06:00:: 04549919 1 0 -hospitalisation%1:04:00:: 00658627 1 0 -hospitalise%2:40:00:: 02348927 1 0 -hospitality%1:10:00:: 06631506 1 1 -hospitalization%1:04:00:: 00658627 4 0 -hospitalization%1:21:00:: 13346912 3 0 -hospitalization%1:26:00:: 14576053 2 0 -hospitalization%1:28:00:: 15119185 1 0 -hospitalization_insurance%1:21:00:: 13346912 1 0 -hospitalize%2:40:00:: 02348927 1 0 -host%1:05:00:: 01385527 3 4 -host%1:06:00:: 04175147 10 0 -host%1:13:00:: 07683138 9 0 -host%1:14:00:: 08182962 2 6 -host%1:14:01:: 08481184 6 1 -host%1:14:02:: 08183802 5 2 -host%1:18:00:: 10186774 8 0 -host%1:18:01:: 10299250 4 3 -host%1:18:02:: 10187130 1 8 -host%1:18:03:: 10187356 7 0 -host%2:34:00:: 01194418 1 0 -hosta%1:20:00:: 12457519 1 0 -hostaceae%1:20:00:: 12457250 1 0 -hostage%1:18:00:: 10187557 1 0 -hostel%1:06:00:: 03541537 2 0 -hostel%1:06:01:: 03541696 1 0 -hosteller%1:18:01:: 10186950 2 0 -hosteller%1:18:02:: 10187990 1 0 -hostelry%1:06:00:: 03541696 1 1 -hostess%1:18:00:: 10187059 2 2 -hostess%1:18:01:: 10655875 3 1 -hostess%1:18:02:: 10187491 1 2 -hostile%1:14:00:: 08397675 1 0 -hostile%3:00:01:: 01244410 1 5 -hostile%3:00:02:: 01077829 2 3 -hostile%5:00:00:aggressive:00 00083478 5 0 -hostile%5:00:00:inhospitable:00 01243373 4 0 -hostile%5:00:00:irreconcilable:00 01987093 3 0 -hostile_expedition%1:04:00:: 00968479 1 0 -hostile_fire%1:04:00:: 00991070 1 0 -hostile_takeover%1:04:00:: 00790817 1 0 -hostile_witness%1:18:00:: 09773682 1 0 -hostilely%4:02:00:: 00242478 1 0 -hostilities%1:04:01:: 00964781 1 0 -hostility%1:04:00:: 00964569 4 0 -hostility%1:07:00:: 04658106 1 3 -hostility%1:12:00:: 07547805 3 0 -hostility%1:26:00:: 13980288 2 0 -hostler%1:18:00:: 10644301 1 0 -hot%3:00:01:: 01247240 1 50 -hot%3:00:02:: 01256332 3 3 -hot%5:00:00:active:01 00033077 21 0 -hot%5:00:00:charged:00 00358392 20 0 -hot%5:00:00:eager:00 00811421 17 0 -hot%5:00:00:fast:01 00977372 7 1 -hot%5:00:00:fresh:01 01068438 16 0 -hot%5:00:00:good:01 01124441 15 0 -hot%5:00:00:illegal:00 01403632 6 1 -hot%5:00:00:lucky:00 01468420 14 0 -hot%5:00:00:near:00 00445440 18 0 -hot%5:00:00:new:00 01641791 13 0 -hot%5:00:00:popular:00 01816525 11 0 -hot%5:00:00:radioactive:00 00427105 19 0 -hot%5:00:00:sexy:00 02132607 5 1 -hot%5:00:00:skilled:00 02227485 10 0 -hot%5:00:00:tasty:00 02397732 9 0 -hot%5:00:00:unpleasant:00 01804034 12 0 -hot%5:00:00:violent:00 02511800 2 4 -hot%5:00:00:wanted:00 02527402 8 0 -hot%5:00:00:warm:03 02532114 4 1 -hot-air_balloon%1:06:00:: 03541923 1 0 -hot-blooded%5:00:00:emotional:00 00855565 1 0 -hot-button_issue%1:09:00:: 05814952 1 0 -hot-dog%2:38:00:: 01938837 1 0 -hot-fudge_sauce%1:13:00:: 07837002 1 0 -hot-rock_penstemon%1:20:00:: 12886185 1 0 -hot-rod%1:06:00:: 03543394 1 0 -hot-tempered%5:00:00:ill-natured:00 01135914 1 0 -hot-water_bag%1:06:00:: 03543735 1 0 -hot-water_bottle%1:06:00:: 03543735 1 0 -hot-water_heater%1:06:00:: 04560113 1 1 -hot-water_tank%1:06:00:: 04560113 1 0 -hot-wire%2:38:01:: 01858167 1 0 -hot-work%2:36:00:: 01668958 1 0 -hot-work_steel%1:27:00:: 14907867 1 0 -hot_air%1:10:00:: 06609503 2 0 -hot_air%1:27:00:: 14841923 1 0 -hot_and_bothered%5:00:00:discomposed:00 00532560 1 0 -hot_cake%1:13:00:: 07640203 1 0 -hot_cereal%1:13:00:: 07703177 1 0 -hot_chocolate%1:13:00:: 07922764 1 0 -hot_cross_bun%1:13:00:: 07691237 1 0 -hot_dog%1:13:01:: 07676602 3 0 -hot_dog%1:13:02:: 07697537 2 0 -hot_dog%1:18:00:: 10187710 1 0 -hot_flash%1:26:00:: 14336169 1 0 -hot_issue%1:21:00:: 13336933 1 0 -hot_jazz%1:10:00:: 07063775 1 0 -hot_line%1:06:00:: 03543012 1 0 -hot_pad%1:06:01:: 03508881 2 0 -hot_pad%1:06:02:: 04380801 1 0 -hot_pants%1:06:00:: 03543112 2 0 -hot_pants%1:26:00:: 14038027 1 0 -hot_pepper%1:13:00:: 07721325 2 0 -hot_pepper%1:20:00:: 12902021 1 0 -hot_plate%1:06:00:: 03543254 1 0 -hot_pot%1:13:00:: 07590611 1 0 -hot_potato%1:26:00:: 13935910 1 1 -hot_rod%1:06:00:: 03543394 1 1 -hot_sauce%1:13:00:: 07830593 1 0 -hot_seat%1:04:00:: 00593389 2 0 -hot_seat%1:06:00:: 03271030 1 0 -hot_spell%1:28:00:: 15246775 1 0 -hot_spot%1:06:00:: 03543511 3 0 -hot_spot%1:15:00:: 08586218 2 0 -hot_spot%1:15:01:: 08586330 1 0 -hot_spring%1:17:00:: 09305898 1 0 -hot_springs%1:15:00:: 09060024 1 0 -hot_springs_national_park%1:15:00:: 08606012 1 0 -hot_stock%1:21:00:: 13336933 1 0 -hot_stuff%1:07:00:: 05210820 1 0 -hot_stuff%1:07:01:: 04808965 2 0 -hot_stuffed_tomato%1:13:00:: 07878785 1 0 -hot_toddy%1:13:00:: 07918879 1 0 -hot_tub%1:06:00:: 03543603 1 0 -hot_under_the_collar%5:00:00:angry:00 00115094 1 0 -hot_up%2:30:00:: 00170997 3 0 -hot_up%2:30:01:: 00227667 2 0 -hot_up%2:30:02:: 00372665 1 0 -hot_war%1:26:00:: 13981885 1 1 -hot_water%1:26:00:: 14409137 1 0 -hot_water_plant%1:20:00:: 12830222 1 0 -hot_weather%1:19:00:: 11466701 1 0 -hotbed%1:06:00:: 03542073 2 0 -hotbed%1:26:00:: 13935753 1 0 -hotbox%1:06:00:: 03542220 1 0 -hotcake%1:13:00:: 07640203 1 0 -hotchpotch%1:13:00:: 07590502 2 0 -hotchpotch%1:14:00:: 08399977 1 0 -hotdog%1:13:01:: 07676602 3 0 -hotdog%1:13:02:: 07697537 2 0 -hotdog%1:18:00:: 10187710 1 0 -hotdog_bun%1:13:00:: 07690019 1 0 -hotei%1:18:00:: 09534918 1 0 -hotei-chiku%1:20:00:: 12149144 1 0 -hotel%1:06:00:: 03542333 1 39 -hotel-casino%1:06:00:: 03542605 2 0 -hotel-casino%1:06:02:: 03542727 1 0 -hotel_bill%1:10:00:: 06517447 1 0 -hotel_clerk%1:18:00:: 10007995 1 0 -hotel_desk_clerk%1:18:00:: 10007995 1 0 -hotel_detective%1:18:00:: 10187842 1 0 -hotel_manager%1:18:00:: 10187990 1 0 -hotel_occupancy%1:24:00:: 13818829 1 0 -hotel_plan%1:21:00:: 13415547 1 0 -hotel_room%1:06:00:: 03542860 1 0 -hotelier%1:18:00:: 10187990 1 0 -hotelkeeper%1:18:00:: 10187990 1 0 -hotelman%1:18:00:: 10187990 1 1 -hotfoot%1:04:00:: 00514471 1 0 -hotfoot%2:38:00:: 02058994 1 0 -hotfoot%4:02:00:: 00206867 1 0 -hoth%1:18:00:: 09581129 1 0 -hothead%1:18:00:: 09991530 2 0 -hothead%1:18:01:: 10091564 1 0 -hotheaded%5:00:00:ill-natured:00 01135914 1 0 -hotheaded%5:00:00:incautious:00 00326608 2 0 -hothouse%1:06:00:: 03092166 1 0 -hothr%1:18:00:: 09581129 1 0 -hotly%4:02:00:: 00355291 1 0 -hotness%1:07:00:: 05016171 1 1 -hotness%1:07:01:: 04993312 3 0 -hotness%1:26:00:: 14038027 2 0 -hotplate%1:06:00:: 03543254 1 0 -hotpot%1:13:00:: 07590611 1 0 -hotshot%1:18:00:: 09762509 1 1 -hotspot%1:06:00:: 03543511 3 0 -hotspot%1:15:00:: 08586218 2 0 -hotspot%1:15:01:: 08586330 1 0 -hotspur%1:18:00:: 10188146 2 0 -hotspur%1:18:01:: 11229499 1 0 -hottentot%1:10:00:: 06941479 1 0 -hottentot's_bread%1:20:00:: 12089178 1 0 -hottentot's_bread_vine%1:20:00:: 12088909 1 0 -hottentot's_fig%1:20:00:: 11819509 1 0 -hottentot_bread%1:20:00:: 12089178 1 0 -hottentot_bread_vine%1:20:00:: 12088909 1 0 -hottentot_fig%1:20:00:: 11819509 1 0 -hottish%5:00:00:hot:01 01249555 1 0 -hottonia%1:20:00:: 12094121 1 0 -hottonia_inflata%1:20:00:: 12094401 1 0 -hottonia_palustris%1:20:00:: 12094612 1 0 -houdah%1:06:00:: 03547397 1 0 -houdini%1:18:00:: 11061317 1 0 -houghton%1:15:00:: 09100982 2 0 -houghton%1:18:00:: 11061552 1 0 -houhere%1:20:00:: 12180885 1 0 -hoummos%1:13:00:: 07857731 1 0 -hound%1:05:00:: 02087551 1 2 -hound%1:18:00:: 09886220 2 1 -hound%2:38:00:: 02003601 1 0 -hound's-tongue%1:20:01:: 12819141 2 0 -hound's-tongue%1:20:02:: 12819354 1 0 -hound's-tooth_check%1:06:00:: 03543945 1 0 -hound_dog%1:05:00:: 02087551 1 1 -houndstooth_check%1:06:00:: 03543945 1 0 -hour%1:07:00:: 05131023 4 0 -hour%1:28:00:: 15227846 1 92 -hour%1:28:01:: 15228378 2 22 -hour%1:28:02:: 15228910 3 1 -hour_angle%1:15:00:: 08586509 1 1 -hour_angle%1:25:00:: 13888783 2 0 -hour_circle%1:15:00:: 08586688 1 0 -hour_hand%1:06:00:: 03544238 1 0 -hourglass%1:06:00:: 03544143 1 0 -hourglass-shaped%5:00:00:formed:00 02147825 1 0 -houri%1:18:00:: 10368528 1 0 -houri%1:18:02:: 09545000 2 0 -hourlong%5:00:00:long:02 01440058 1 0 -hourly%4:02:00:: 00358985 1 0 -hourly%5:00:00:periodic:00 01968811 1 0 -hours%1:28:00:: 15118100 1 9 -hours%1:28:01:: 15117516 2 3 -housatonic%1:17:00:: 09306031 1 0 -housatonic_river%1:17:00:: 09306031 1 0 -house%1:04:00:: 00432164 7 1 -house%1:06:00:: 03544360 1 157 -house%1:06:01:: 03545150 12 0 -house%1:06:02:: 04417809 11 0 -house%1:14:00:: 07971449 6 1 -house%1:14:01:: 08059870 2 2 -house%1:14:02:: 08163025 5 1 -house%1:14:03:: 08222966 4 1 -house%1:14:04:: 08224580 3 1 -house%1:14:05:: 08078020 10 0 -house%1:14:06:: 08381296 9 0 -house%1:15:00:: 08685677 8 0 -house%2:41:00:: 02459173 2 4 -house%2:42:02:: 02701828 1 13 -house-builder%1:18:00:: 10181656 1 0 -house-proud%5:00:00:proud:00 01892327 1 0 -house-raising%1:04:00:: 00911905 1 0 -house-to-house%5:00:00:comprehensive:00 00527551 1 0 -house-train%2:31:00:: 00604225 1 0 -house-trained%5:00:00:trained:00 01912280 1 0 -house_agent%1:18:00:: 10509810 1 0 -house_arrest%1:04:00:: 01147135 1 0 -house_cat%1:05:00:: 02121808 1 0 -house_centipede%1:05:00:: 01785667 1 0 -house_decorator%1:18:00:: 10210648 1 0 -house_detective%1:18:00:: 10187842 1 0 -house_dick%1:18:00:: 10187842 1 0 -house_finch%1:05:00:: 01532829 1 0 -house_fly%1:05:00:: 02190790 1 0 -house_guest%1:18:00:: 10188472 1 0 -house_husband%1:18:00:: 10188576 1 0 -house_martin%1:05:00:: 01595974 1 0 -house_mouse%1:05:00:: 02332156 1 0 -house_of_burgesses%1:14:00:: 08162575 1 0 -house_of_cards%1:06:00:: 03545756 2 0 -house_of_cards%1:09:00:: 05907251 1 0 -house_of_commons%1:14:00:: 08162691 1 0 -house_of_correction%1:06:00:: 03545961 1 0 -house_of_detention%1:06:00:: 03181667 1 0 -house_of_god%1:06:00:: 03953416 1 0 -house_of_hanover%1:14:00:: 08154960 1 0 -house_of_ill_repute%1:06:00:: 04581595 1 0 -house_of_islam%1:15:00:: 09178481 1 0 -house_of_lancaster%1:14:00:: 08155765 1 0 -house_of_lords%1:14:00:: 08162860 1 0 -house_of_prayer%1:06:00:: 03953416 1 0 -house_of_prostitution%1:06:00:: 04581595 1 2 -house_of_representatives%1:14:00:: 08161971 1 5 -house_of_tudor%1:14:00:: 08159031 1 0 -house_of_war%1:15:00:: 09178596 1 0 -house_of_windsor%1:14:00:: 08159740 1 0 -house_of_worship%1:06:00:: 03953416 1 0 -house_of_york%1:14:00:: 08159924 1 0 -house_organ%1:10:00:: 06595220 1 1 -house_paint%1:06:00:: 03546112 1 0 -house_painter%1:18:00:: 10189179 1 0 -house_painting%1:04:00:: 00609236 1 0 -house_party%1:11:00:: 07450229 1 0 -house_physician%1:18:00:: 10189278 1 0 -house_servant%1:18:00:: 10024119 1 0 -house_sitter%1:18:00:: 10189597 1 0 -house_snake%1:05:00:: 01734808 1 0 -house_sparrow%1:05:00:: 01539925 1 0 -house_trailer%1:06:00:: 04467099 1 0 -house_wren%1:05:00:: 01584853 1 0 -houseboat%1:06:00:: 03545470 1 0 -housebound%5:00:00:confined:00 00558827 1 0 -housebreak%2:31:00:: 00604225 1 0 -housebreaker%1:18:00:: 10188226 1 1 -housebreaker%1:18:02:: 10189975 2 0 -housebreaking%1:04:00:: 00785263 1 1 -housebroken%5:00:00:trained:00 01912280 1 0 -housebuilder%1:18:00:: 10181656 1 0 -houseclean%2:35:00:: 01533442 1 0 -housecleaning%1:04:00:: 00580370 2 0 -housecleaning%1:04:01:: 00580565 1 0 -housecoat%1:06:00:: 03817647 1 0 -housecraft%1:09:00:: 05643722 1 0 -housedog%1:05:00:: 02104280 1 0 -housefather%1:18:00:: 10188369 1 0 -housefly%1:05:00:: 02190790 1 0 -houseful%1:23:00:: 13767691 1 0 -houseguest%1:18:00:: 10188472 1 0 -household%1:14:00:: 08078020 1 8 -household_appliance%1:06:00:: 03528263 1 0 -household_arts%1:09:00:: 06149344 1 0 -household_linen%1:06:00:: 04580298 1 0 -householder%1:18:00:: 10182499 1 2 -househusband%1:18:00:: 10188576 1 0 -housekeep%2:42:00:: 02683316 1 0 -housekeeper%1:18:00:: 10188715 1 0 -housekeeping%1:04:00:: 00580961 1 2 -houselights%1:06:00:: 03545585 1 0 -housemaid%1:18:00:: 10282672 1 0 -housemaid's_knee%1:26:00:: 14188568 1 0 -houseman%1:18:00:: 10211203 1 0 -housemaster%1:18:00:: 10188856 1 0 -housemate%1:18:00:: 10188957 1 0 -housemother%1:18:00:: 10189059 1 0 -housepaint%1:06:00:: 03546112 1 0 -houseplant%1:20:00:: 13083023 1 0 -houseroom%1:23:00:: 13778400 1 0 -houses_of_parliament%1:15:00:: 08876278 1 0 -housetop%1:06:00:: 03546235 1 0 -housewarming%1:14:00:: 08255109 1 0 -housewife%1:18:00:: 10189776 1 5 -housewifely%5:00:00:domestic:01 01039556 1 0 -housewifery%1:04:00:: 00580880 1 0 -housework%1:04:00:: 00580961 1 1 -housewrecker%1:18:00:: 10189975 1 0 -housing%1:06:00:: 03546340 1 4 -housing%1:06:01:: 03546766 2 0 -housing%1:06:02:: 02955540 3 0 -housing_and_urban_development%1:14:00:: 08135062 1 0 -housing_commissioner%1:18:00:: 10190122 1 0 -housing_development%1:15:00:: 08549480 1 0 -housing_estate%1:15:00:: 08549733 1 0 -housing_industry%1:14:00:: 08067683 1 0 -housing_project%1:15:00:: 08549911 1 0 -housing_start%1:04:00:: 00239666 1 0 -housman%1:18:00:: 11061734 1 0 -houston%1:15:00:: 09144851 1 5 -houston%1:18:00:: 11061853 2 0 -houttuynia%1:20:00:: 13152592 1 0 -houyhnhnm%1:18:00:: 10190231 1 0 -houyhnhnms%1:09:00:: 05630145 1 0 -hovea%1:20:00:: 12535593 1 0 -hovel%1:06:00:: 03547054 1 0 -hover%2:38:00:: 01943448 3 2 -hover%2:38:01:: 01944252 4 1 -hover%2:42:00:: 02706046 1 2 -hover%2:42:01:: 02640906 2 2 -hover%2:42:05:: 02744061 5 0 -hovercraft%1:06:00:: 03547229 1 0 -how-d'ye-do%1:26:00:: 13936030 1 0 -how-do-you-do%1:10:00:: 06632511 2 0 -how-do-you-do%1:26:00:: 13936030 1 0 -howard%1:18:00:: 11062111 2 0 -howard%1:18:01:: 11062285 1 0 -howard_carter%1:18:00:: 10885006 1 0 -howard_florey%1:18:00:: 10973497 1 0 -howard_hughes%1:18:00:: 11064834 1 0 -howard_lindsay%1:18:00:: 11133387 1 0 -howard_pyle%1:18:00:: 11249559 1 0 -howard_robard_hughes%1:18:00:: 11064834 1 0 -howdah%1:06:00:: 03547397 1 0 -howdy%1:10:00:: 06632511 1 0 -howe%1:18:00:: 11062424 4 0 -howe%1:18:01:: 11062649 3 0 -howe%1:18:02:: 11062801 2 0 -howe%1:18:03:: 11062963 1 0 -howells%1:18:00:: 11063061 1 0 -however%4:02:00:: 00027384 1 180 -however%4:02:01:: 00028424 4 2 -however%4:02:02:: 00028578 3 11 -however%4:02:04:: 00028797 2 20 -howitzer%1:06:00:: 03786715 1 0 -howl%1:10:00:: 07126734 1 10 -howl%1:11:00:: 07385367 3 0 -howl%1:11:02:: 07385548 2 0 -howl%2:29:00:: 00029836 4 0 -howl%2:32:01:: 01046059 3 0 -howl%2:32:02:: 01046932 1 3 -howl%2:32:03:: 01047381 2 0 -howler%1:04:00:: 00076323 3 0 -howler%1:05:00:: 02492660 2 0 -howler%1:10:00:: 06778925 1 0 -howler_monkey%1:05:00:: 02492660 1 0 -howling%1:10:00:: 07126734 1 1 -howling%5:00:00:extraordinary:00 01676517 1 0 -hoy%1:06:00:: 02792552 1 0 -hoya%1:20:00:: 13236887 1 0 -hoya_carnosa%1:20:00:: 13237188 1 0 -hoyden%1:18:00:: 10715030 1 0 -hoydenish%5:00:00:unwomanly:00 01485708 1 0 -hoydenism%1:07:00:: 04667258 1 0 -hoyle%1:18:00:: 11063182 2 0 -hoyle%1:18:01:: 11063309 1 0 -hp%1:23:00:: 13645010 1 3 -hq%1:06:00:: 03504420 1 0 -hr%1:28:00:: 15227846 1 26 -hrolf%1:18:00:: 11269236 1 0 -hrt%1:04:00:: 00663094 1 0 -hrvatska%1:15:00:: 08815858 1 0 -hryvnia%1:23:00:: 13703151 1 0 -hs%1:27:00:: 14639795 1 0 -hs1%1:05:00:: 01339083 1 0 -hs2%1:05:00:: 01339206 1 0 -hsian%1:15:00:: 08729452 1 0 -hsuan_chiao%1:09:00:: 06243096 1 0 -hsv-1%1:05:00:: 01339083 1 0 -hsv-2%1:05:00:: 01339206 1 0 -hsv-i%1:05:00:: 01339083 1 0 -hsv-ii%1:05:00:: 01339206 1 0 -htlv-1%1:05:00:: 01336599 1 0 -html%1:10:00:: 06788262 1 0 -http%1:10:00:: 06665847 1 0 -hua%1:14:00:: 08022972 1 0 -huainaputina%1:15:00:: 09175617 1 0 -hualapai%1:10:00:: 06923283 2 0 -hualapai%1:18:00:: 09671808 1 0 -hualpai%1:10:00:: 06923283 2 0 -hualpai%1:18:00:: 09671808 1 0 -huamachil%1:20:00:: 11764478 1 0 -huambo%1:15:00:: 08708481 1 0 -huang_hai%1:17:00:: 09481958 1 0 -huang_he%1:17:00:: 09306257 1 0 -huarache%1:06:00:: 03547530 1 0 -huaraches%1:06:00:: 03547530 1 0 -huascaran%1:17:00:: 09306497 1 0 -huayna_capac%1:18:00:: 10190373 1 0 -hub%1:06:00:: 03547658 1 2 -hub%1:15:00:: 08543223 2 0 -hub-and-spoke%1:06:00:: 03547861 1 0 -hub-and-spoke_system%1:06:00:: 03547861 1 0 -hub_of_the_universe%1:15:00:: 09095751 1 0 -hubbard%1:17:00:: 09306642 2 0 -hubbard%1:18:00:: 11063535 1 0 -hubbard_squash%1:13:00:: 07717714 2 0 -hubbard_squash%1:20:00:: 12161056 1 0 -hubble%1:18:00:: 11063687 1 0 -hubble's_constant%1:23:00:: 13590598 1 0 -hubble's_law%1:09:00:: 05879204 1 0 -hubble's_parameter%1:23:00:: 13590598 1 0 -hubble-bubble%1:06:00:: 03533014 1 0 -hubble_constant%1:23:00:: 13590598 1 0 -hubble_law%1:09:00:: 05879204 1 0 -hubble_parameter%1:23:00:: 13590598 1 0 -hubbly-bubbly%1:06:00:: 03533014 1 0 -hubbub%1:11:00:: 07385660 1 1 -hubby%1:18:00:: 10193967 1 0 -hubcap%1:06:00:: 03548086 1 0 -hubel%1:18:00:: 11063944 1 0 -hubris%1:07:00:: 04888703 1 1 -huck%1:06:00:: 03548195 1 0 -huck_finn%1:18:00:: 09603353 1 0 -huckaback%1:06:00:: 03548195 1 0 -huckleberry%1:13:00:: 07743384 3 0 -huckleberry%1:20:01:: 12236546 2 0 -huckleberry%1:20:02:: 12246641 1 0 -huckleberry_finn%1:18:00:: 09603353 1 0 -huckleberry_oak%1:20:00:: 12279060 1 0 -huckster%1:18:00:: 10190516 1 2 -huckster%1:18:01:: 10190644 2 0 -huckster%2:40:00:: 02302817 1 1 -huckster%2:40:01:: 02259547 2 0 -hud%1:14:00:: 08135062 1 0 -huddie_leadbetter%1:18:00:: 11123262 1 0 -huddle%1:10:00:: 07144416 1 2 -huddle%1:14:00:: 08184439 2 0 -huddle%2:38:00:: 02063988 2 3 -huddle%2:38:01:: 02027226 1 6 -huddle_together%2:38:00:: 02027226 1 3 -huddled%5:00:00:crowded:00 00559930 1 1 -huddler%1:18:00:: 10190871 1 0 -huddler%1:18:01:: 10190745 2 0 -hudood%1:14:00:: 08456178 1 0 -hudson%1:17:00:: 09306840 1 5 -hudson%1:18:00:: 11064106 3 0 -hudson%1:18:01:: 11064330 2 0 -hudson_bay%1:17:00:: 09307031 1 2 -hudson_bay_collared_lemming%1:05:00:: 02345774 1 0 -hudson_hoagland%1:18:00:: 11052843 1 0 -hudson_river%1:17:00:: 09306840 1 2 -hudson_river_school%1:14:00:: 08468261 1 0 -hudson_seal%1:27:00:: 14765687 1 0 -hudsonia%1:20:00:: 12376382 1 0 -hudsonia_ericoides%1:20:00:: 12376553 1 0 -hudsonia_tomentosa%1:20:00:: 12376740 1 0 -hudsonian_godwit%1:05:00:: 02034295 1 0 -hudud%1:14:00:: 08456178 1 0 -hue%1:07:00:: 04975122 1 6 -hue%2:30:00:: 00287735 2 0 -hue%2:30:01:: 00288017 1 0 -hue_and_cry%1:10:00:: 07122118 1 1 -hueless%5:00:00:achromatic:00 00390071 1 0 -huff%1:26:00:: 14407070 1 0 -huff%2:29:00:: 00006802 2 0 -huff%2:34:00:: 01200245 1 0 -huffily%4:02:00:: 00359095 1 0 -huffiness%1:12:00:: 07517869 1 0 -huffing%1:04:00:: 00834460 1 0 -huffish%5:00:00:ill-natured:00 01137994 1 0 -huffishness%1:12:00:: 07549401 1 0 -huffy%5:00:00:angry:00 00115193 2 0 -huffy%5:00:00:sensitive:02 02106509 1 0 -hug%1:04:00:: 00417859 1 0 -hug%2:35:00:: 01396524 2 2 -hug%2:35:01:: 01424456 1 6 -hug-me-tight%1:06:00:: 03548320 1 0 -hug_drug%1:06:00:: 02678738 1 0 -huge%5:00:01:large:00 01387319 1 23 -hugely%4:02:00:: 00196540 1 0 -hugger%1:18:00:: 10191001 1 0 -hugger-mugger%1:26:00:: 13976731 1 0 -hugger-mugger%4:02:00:: 00359217 1 0 -hugger-mugger%5:00:00:covert:00 01706465 2 0 -hugger-mugger%5:00:00:untidy:00 02425529 1 0 -hugger_mugger%2:41:00:: 02518043 1 0 -hugging%1:04:00:: 00854000 1 1 -huggins%1:18:00:: 11064472 1 0 -hugh_capet%1:18:00:: 10891271 1 0 -hugh_dowding%1:18:00:: 10941714 1 0 -hughes%1:18:00:: 11064662 4 0 -hughes%1:18:01:: 11064834 3 0 -hughes%1:18:02:: 11065101 2 0 -hughes%1:18:03:: 11065229 1 0 -hugo%1:18:00:: 11065345 1 0 -hugo_alvar_henrik_aalto%1:18:00:: 10806693 1 0 -hugo_de_vries%1:18:00:: 10932495 1 0 -hugo_devries%1:18:00:: 10932495 1 0 -hugo_grotius%1:18:00:: 11017454 1 0 -hugo_junkers%1:18:00:: 11094780 1 0 -hugo_von_hoffmannsthal%1:18:00:: 11055296 1 0 -hugo_wolf%1:18:00:: 11394398 1 0 -hugoesque%3:01:00:: 03033024 1 0 -hugueninia%1:20:00:: 11889078 1 0 -hugueninia_tanacetifolia%1:20:00:: 11889205 1 0 -huguenot%1:18:00:: 10191089 1 0 -huig_de_groot%1:18:00:: 11017454 1 0 -huisache%1:20:00:: 11757851 1 0 -huitre%1:13:00:: 07786164 1 0 -huji%1:14:00:: 08022666 1 0 -hula%1:04:00:: 00542458 1 0 -hula-hoop%1:06:00:: 03548402 1 0 -hula-hula%1:04:00:: 00542458 1 0 -huldreich_zwingli%1:18:00:: 11408243 1 0 -hulk%1:06:00:: 03548533 2 1 -hulk%1:18:00:: 10129133 1 1 -hulk%2:42:00:: 02696503 1 1 -hulking%5:00:00:large:00 01387902 1 0 -hulky%5:00:00:large:00 01387902 1 0 -hull%1:06:00:: 03548626 6 0 -hull%1:15:00:: 08877208 5 0 -hull%1:18:00:: 11065562 4 0 -hull%1:18:01:: 11065718 3 0 -hull%1:20:01:: 13139918 1 0 -hull%1:20:02:: 11691990 2 0 -hull%2:30:00:: 00180076 1 0 -hullabaloo%1:04:00:: 00554300 1 0 -hullo%1:10:00:: 06632511 1 0 -hulsea%1:20:00:: 11983160 1 0 -hulsea_algida%1:20:00:: 11983375 1 0 -hulsea_nana%1:20:00:: 11983606 1 0 -hum%1:11:00:: 07385803 3 0 -hum%1:14:00:: 08022972 2 0 -hum%1:26:00:: 14008050 1 0 -hum%2:32:00:: 01055829 1 4 -hum%2:32:01:: 01056214 4 0 -hum%2:39:00:: 02187041 3 0 -hum%2:42:00:: 02706605 2 0 -hum-vee%1:06:00:: 03549199 1 0 -human%1:05:00:: 02472293 1 5 -human%3:00:00:: 01258617 3 15 -human%3:01:00:: 02743261 1 46 -human%3:01:01:: 02743391 2 19 -human-centered%5:00:00:humane:00 01262284 1 0 -human-centred%5:00:00:humane:00 01262284 1 0 -human-sized%5:00:00:sized:00 02223457 1 0 -human_action%1:03:00:: 00030358 1 1 -human_activity%1:03:00:: 00030358 1 0 -human_being%1:05:00:: 02472293 1 21 -human_beings%1:05:00:: 02472987 1 0 -human_body%1:08:00:: 05217168 1 2 -human_botfly%1:05:00:: 02194249 1 0 -human_chorionic_gonadotrophin%1:27:00:: 14749030 1 0 -human_chorionic_gonadotropin%1:27:00:: 14749030 1 0 -human_death%1:11:00:: 07332956 1 1 -human_dynamo%1:18:00:: 10462429 1 0 -human_ecology%1:09:00:: 06152125 1 0 -human_elbow%1:08:00:: 05579944 1 0 -human_face%1:08:01:: 05600637 1 0 -human_foot%1:08:00:: 05563266 1 0 -human_gamma_globulin%1:27:00:: 15022389 1 0 -human_genome_project%1:04:00:: 00641693 1 0 -human_growth_hormone%1:08:00:: 05412649 1 0 -human_head%1:08:00:: 05539138 1 0 -human_immunodeficiency_virus%1:05:00:: 01336718 1 0 -human_knee%1:08:00:: 05573602 1 0 -human_language_technology%1:09:00:: 06142412 1 0 -human_nature%1:07:00:: 04615866 1 0 -human_palaeontology%1:09:00:: 06074189 1 0 -human_paleontology%1:09:00:: 06074189 1 0 -human_papilloma_virus%1:05:00:: 01340331 1 0 -human_process%1:22:00:: 13493998 1 0 -human_race%1:05:00:: 02472987 1 0 -human_relationship%1:24:00:: 13780719 1 0 -human_remains_pouch%1:06:00:: 02862770 1 0 -human_reproductive_cloning%1:04:00:: 00638602 1 0 -human_right%1:07:00:: 05176846 1 0 -human_t-cell_leukemia_virus-1%1:05:00:: 01336599 1 0 -human_waste%1:27:00:: 14855635 1 1 -humane%3:00:00:: 01261867 2 0 -humane%3:01:01:: 02743547 1 1 -humane%5:00:00:civilized:00 00412460 3 0 -humanely%4:02:00:: 00359302 1 1 -humaneness%1:07:00:: 04828925 1 0 -humanisation%1:04:00:: 00264775 1 0 -humanise%2:37:00:: 01801498 1 0 -humanism%1:09:00:: 05967191 2 1 -humanism%1:09:01:: 05967402 1 1 -humanism%1:14:00:: 08476829 3 0 -humanist%1:18:00:: 10191192 1 1 -humanist%1:18:01:: 10191388 2 0 -humanist%3:01:00:: 02743547 3 0 -humanist%3:01:02:: 02743932 2 0 -humanist%3:01:03:: 02743750 1 1 -humanist%5:00:00:humane:00 01262284 4 0 -humanistic%3:01:00:: 02743547 3 0 -humanistic%3:01:02:: 02743932 1 1 -humanistic%3:01:03:: 02743750 2 0 -humanistic%5:00:00:humane:00 01262284 4 0 -humanistic_discipline%1:09:00:: 06153846 1 0 -humanitarian%1:18:00:: 10191613 1 0 -humanitarian%1:18:01:: 10191388 2 0 -humanitarian%3:01:00:: 02993702 2 0 -humanitarian%5:00:00:humane:00 01262284 1 1 -humanitarianism%1:09:00:: 05967402 1 0 -humanities%1:09:00:: 06153846 1 0 -humanity%1:05:00:: 02472987 3 0 -humanity%1:07:00:: 04829182 1 1 -humanity%1:07:02:: 04726938 2 1 -humanization%1:04:00:: 00264775 1 0 -humanize%2:37:00:: 01801498 1 1 -humankind%1:05:00:: 02472987 1 0 -humanlike%5:00:00:human:00 01259123 1 0 -humanly%4:02:00:: 00142662 1 0 -humanness%1:07:00:: 04726938 1 0 -humanoid%1:06:00:: 02710201 1 0 -humans%1:05:00:: 02472987 1 0 -humate%1:27:00:: 14908977 1 0 -humber%1:17:00:: 09307140 1 0 -humber_bridge%1:06:00:: 03548797 1 0 -humble%2:37:00:: 01799794 2 1 -humble%2:37:01:: 01801697 1 1 -humble%3:00:00:: 01892953 2 1 -humble%5:00:00:inferior:01 02340458 1 3 -humble%5:00:00:lowborn:00 01592857 4 0 -humble%5:00:00:unskilled:00 02229961 3 0 -humble_plant%1:20:00:: 11755319 1 0 -humblebee%1:05:00:: 02209624 1 0 -humbled%5:00:00:humble:00 01893303 1 0 -humbleness%1:07:00:: 04889527 3 0 -humbleness%1:12:00:: 07509131 2 0 -humbleness%1:26:00:: 14436438 1 0 -humbling%5:00:00:undignified:00 00752555 1 0 -humbly%4:02:00:: 00110286 1 3 -humbly%4:02:01:: 00397466 2 0 -humboldt%1:18:00:: 11065938 2 0 -humboldt%1:18:01:: 11066209 1 0 -humboldt_current%1:19:00:: 11489878 1 0 -humbug%1:04:00:: 00753685 3 0 -humbug%1:10:00:: 06611147 1 0 -humbug%1:10:01:: 06610779 2 0 -humbug%2:41:00:: 02593001 1 0 -humdinger%1:18:00:: 10325656 1 0 -humdrum%1:07:00:: 04740326 1 0 -humdrum%5:00:00:dull:03 00807817 2 0 -humdrum%5:00:00:unexciting:00 00922840 1 0 -hume%1:18:00:: 11066425 1 0 -hume_blake_cronyn%1:18:00:: 10916325 1 0 -hume_cronyn%1:18:00:: 10916325 1 0 -humectant%1:27:00:: 14908683 1 0 -humeral_veil%1:06:00:: 03548930 1 0 -humerus%1:08:00:: 05593181 1 0 -humic%3:01:00:: 02744247 1 0 -humic_acid%1:27:00:: 14909120 1 0 -humic_shale%1:27:00:: 15038680 1 0 -humic_substance%1:27:00:: 14909319 1 0 -humid%5:00:00:wet:01 02549393 1 0 -humidify%2:30:00:: 00215800 1 0 -humidity%1:26:00:: 14535643 1 1 -humidness%1:26:00:: 14535643 1 0 -humification%1:22:00:: 13494192 1 0 -humified%3:01:00:: 02744370 1 0 -humify%2:30:00:: 00116079 1 0 -humiliate%2:37:00:: 01799794 1 2 -humiliated%5:00:00:ashamed:00 00154270 2 0 -humiliated%5:00:00:humble:00 01893303 1 0 -humiliating%5:00:00:undignified:00 00752555 1 2 -humiliatingly%4:02:00:: 00211231 1 0 -humiliation%1:04:00:: 00273449 4 0 -humiliation%1:11:00:: 07309223 3 0 -humiliation%1:12:00:: 07507742 2 2 -humiliation%1:26:00:: 14440488 1 2 -humility%1:07:00:: 04889527 1 2 -humility%1:12:00:: 07509131 2 1 -humin%1:27:00:: 14909480 1 0 -hummer%1:04:00:: 00108181 2 0 -hummer%1:18:00:: 10191802 1 0 -humming%1:04:00:: 01253944 2 1 -humming%1:11:00:: 07385803 1 1 -humming_bird's_trumpet%1:20:00:: 12342852 1 0 -humming_top%1:06:00:: 03549097 1 0 -hummingbird%1:05:00:: 01833805 1 0 -hummingbird_moth%1:05:00:: 02298541 1 0 -hummock%1:17:00:: 09326662 1 0 -hummus%1:13:00:: 07857731 1 0 -humongous%5:00:00:large:00 01388062 1 0 -humor%1:07:00:: 05211044 4 1 -humor%1:07:01:: 04650201 2 8 -humor%1:08:00:: 05397468 6 0 -humor%1:08:01:: 05604535 5 0 -humor%1:10:00:: 06776138 1 8 -humor%1:12:00:: 07551052 3 7 -humor%2:32:00:: 00859604 1 2 -humoral%3:01:00:: 02851001 1 0 -humoral_immune_response%1:04:00:: 00861046 1 0 -humoring%1:04:00:: 01073241 1 0 -humorist%1:18:00:: 10191943 1 2 -humorless%3:00:00:: 01268426 1 0 -humorlessly%4:02:00:: 00359771 1 0 -humorous%3:00:00:: 01264336 1 9 -humorously%4:02:00:: 00359582 1 0 -humorousness%1:07:00:: 04649051 1 0 -humour%1:07:00:: 05211044 5 0 -humour%1:07:01:: 04650201 6 0 -humour%1:08:00:: 05397468 4 0 -humour%1:08:01:: 05604535 3 0 -humour%1:10:00:: 06776138 2 0 -humour%1:12:00:: 07551052 1 0 -humour%2:32:00:: 00859604 1 0 -humourist%1:18:00:: 10191943 1 0 -humourless%3:00:00:: 01268426 1 0 -humourlessly%4:02:00:: 00359771 1 0 -humourous%3:00:00:: 01264336 1 0 -humous%1:13:00:: 07857731 1 0 -hump%1:25:00:: 13894434 1 0 -hump%2:35:00:: 01426397 2 0 -hump%2:38:00:: 02035559 1 0 -humpback%1:05:00:: 02065726 3 0 -humpback%1:18:00:: 10192412 2 0 -humpback%1:26:00:: 14505069 1 0 -humpback_whale%1:05:00:: 02065726 1 0 -humpbacked%5:00:00:unfit:01 01019000 1 0 -humped%5:00:00:unfit:01 01019000 1 0 -humperdinck%1:18:00:: 11066621 1 0 -humphrey_bogart%1:18:00:: 10855047 1 0 -humphrey_davy%1:18:00:: 10925132 1 0 -humphrey_deforest_bogart%1:18:00:: 10855047 1 0 -humphrey_gilbert%1:18:00:: 10999202 1 0 -humpty_dumpty%1:18:00:: 09491038 1 0 -humulin%1:08:00:: 05411049 1 0 -humulus%1:20:00:: 12397594 1 0 -humulus_americanus%1:20:00:: 12398384 1 0 -humulus_japonicus%1:20:00:: 12398526 1 0 -humulus_lupulus%1:20:00:: 12398174 1 0 -humus%1:13:00:: 07857731 2 0 -humus%1:27:00:: 14908822 1 0 -humvee%1:06:00:: 03549199 1 0 -hun%1:18:01:: 09748239 2 0 -hun%1:18:02:: 10192588 1 1 -hunan%1:15:00:: 08726072 1 0 -hunan_province%1:15:00:: 08726072 1 0 -hunch%1:04:00:: 00406114 2 0 -hunch%1:09:00:: 05919034 1 6 -hunch%2:38:00:: 02035559 1 2 -hunch_forward%2:38:00:: 02035559 1 0 -hunch_over%2:38:00:: 02035559 1 1 -hunchback%1:18:00:: 10192412 2 0 -hunchback%1:26:00:: 14505069 1 0 -hunchbacked%5:00:00:unfit:01 01019000 1 0 -hunched%5:00:00:unerect:00 01239199 1 0 -hundred%1:23:00:: 13750415 1 22 -hundred%5:00:00:cardinal:00 02196107 1 26 -hundred-and-eightieth%5:00:00:ordinal:00 02211716 1 0 -hundred-and-fifteenth%5:00:00:ordinal:00 02209933 1 0 -hundred-and-fifth%5:00:00:ordinal:00 02209678 1 0 -hundred-and-fiftieth%5:00:00:ordinal:00 02210892 1 0 -hundred-and-fifty-fifth%5:00:00:ordinal:00 02211024 1 0 -hundred-and-first%5:00:00:ordinal:00 02209551 1 0 -hundred-and-fortieth%5:00:00:ordinal:00 02210620 1 0 -hundred-and-forty-fifth%5:00:00:ordinal:00 02210752 1 0 -hundred-and-ninetieth%5:00:00:ordinal:00 02211850 1 0 -hundred-and-seventieth%5:00:00:ordinal:00 02211436 1 0 -hundred-and-seventy-fifth%5:00:00:ordinal:00 02211572 1 0 -hundred-and-sixtieth%5:00:00:ordinal:00 02211164 1 0 -hundred-and-sixty-fifth%5:00:00:ordinal:00 02211296 1 0 -hundred-and-tenth%5:00:00:ordinal:00 02209806 1 0 -hundred-and-thirtieth%5:00:00:ordinal:00 02210344 1 0 -hundred-and-thirty-fifth%5:00:00:ordinal:00 02210478 1 0 -hundred-and-twentieth%5:00:00:ordinal:00 02210068 1 0 -hundred-and-twenty-fifth%5:00:00:ordinal:00 02210202 1 0 -hundred-percenter%1:18:00:: 09911849 1 0 -hundred_and_one%5:00:00:cardinal:00 02196211 1 0 -hundred_dollar_bill%1:21:00:: 13395074 1 2 -hundred_thousand%1:23:00:: 13751404 1 0 -hundred_thousand%5:00:00:cardinal:00 02199005 1 0 -hundred_years'_war%1:04:00:: 01305147 1 0 -hundredfold%4:02:00:: 00359932 1 0 -hundredth%1:23:00:: 13739051 2 0 -hundredth%1:24:00:: 13849710 1 0 -hundredth%5:00:00:ordinal:00 02209423 1 0 -hundredweight%1:23:01:: 13721003 3 0 -hundredweight%1:23:02:: 13721177 2 0 -hundredweight%1:23:03:: 13725271 1 0 -hung_jury%1:14:00:: 08415127 1 0 -hungarian%1:10:00:: 06958836 2 0 -hungarian%1:18:00:: 09713985 1 0 -hungarian%3:01:00:: 02961505 1 1 -hungarian_capital%1:15:00:: 08952423 1 0 -hungarian_goulash%1:13:00:: 07590320 1 0 -hungarian_grass%1:20:00:: 12135270 1 0 -hungarian_lilac%1:20:00:: 12310840 1 0 -hungarian_monetary_unit%1:23:00:: 13676396 1 0 -hungarian_partridge%1:05:00:: 01807828 1 0 -hungarian_pointer%1:05:00:: 02100583 1 0 -hungarian_sauce%1:13:00:: 07839172 1 0 -hungary%1:15:00:: 08952190 1 2 -hunger%1:07:00:: 04945254 2 1 -hunger%1:26:00:: 14039534 1 9 -hunger%2:34:00:: 01188144 3 0 -hunger%2:34:01:: 01188485 2 0 -hunger%2:39:00:: 02121958 1 0 -hunger_march%1:14:00:: 08428252 1 0 -hunger_marcher%1:18:00:: 10192704 1 0 -hunger_strike%1:04:00:: 01242962 1 0 -hungrily%4:02:00:: 00360054 1 0 -hungriness%1:07:00:: 04945254 3 0 -hungriness%1:12:00:: 07486628 2 0 -hungriness%1:26:00:: 14039534 1 0 -hungry%3:00:00:: 01269073 1 7 -hungry%5:00:00:desirous:00 00888200 2 1 -hunk%1:17:00:: 09307300 2 0 -hunk%1:18:00:: 10192839 1 0 -hunker%2:35:00:: 01545314 1 0 -hunker_down%2:32:00:: 00819335 3 0 -hunker_down%2:35:00:: 01545314 1 1 -hunker_down%2:39:00:: 02146377 2 0 -hunkpapa%1:10:00:: 06910039 2 0 -hunkpapa%1:18:00:: 09657206 1 0 -hunky-dory%5:00:00:satisfactory:00 02081114 1 0 -hunnemania_fumariifolia%1:20:00:: 11906127 1 0 -hunnemannia%1:20:00:: 11905989 1 0 -hunt%1:04:00:: 00622584 7 0 -hunt%1:04:01:: 00452293 8 0 -hunt%1:04:02:: 00945401 6 0 -hunt%1:09:00:: 05770257 5 0 -hunt%1:14:00:: 08229779 4 0 -hunt%1:18:00:: 11066772 3 0 -hunt%1:18:01:: 11066938 2 0 -hunt%1:18:02:: 11067047 1 0 -hunt%2:33:00:: 01143838 1 4 -hunt%2:33:02:: 01144657 7 0 -hunt%2:35:03:: 01316401 6 0 -hunt%2:38:00:: 02003601 2 2 -hunt%2:38:03:: 02056691 3 0 -hunt%2:38:04:: 02034147 4 0 -hunt%2:38:05:: 01878376 5 0 -hunt_club%1:14:00:: 08229779 1 0 -hunt_down%2:33:00:: 01143838 1 2 -hunted%5:00:00:afraid:00 00079896 1 1 -hunted_person%1:18:00:: 10192926 1 0 -hunter%1:06:00:: 03549350 4 0 -hunter%1:17:00:: 09380117 3 0 -hunter%1:18:00:: 10193026 1 7 -hunter%1:18:01:: 10193719 2 0 -hunter's_chicken%1:13:00:: 07580592 1 0 -hunter's_sauce%1:13:00:: 07838659 1 0 -hunter-gatherer%1:18:00:: 10193419 1 0 -hunting%1:04:00:: 00622584 3 1 -hunting%1:04:01:: 00452293 1 14 -hunting%1:04:02:: 00945401 2 1 -hunting_and_gathering_society%1:14:00:: 08288518 1 0 -hunting_and_gathering_tribe%1:14:00:: 08288518 1 0 -hunting_crop%1:06:00:: 04089836 1 0 -hunting_dog%1:05:00:: 02087122 1 0 -hunting_expedition%1:04:00:: 00309906 1 2 -hunting_ground%1:15:00:: 08582065 2 0 -hunting_ground%1:26:00:: 14484969 1 1 -hunting_guide%1:18:00:: 10193543 1 0 -hunting_knife%1:06:00:: 03549473 1 0 -hunting_licence%1:10:00:: 06550552 1 0 -hunting_license%1:10:00:: 06550552 1 0 -hunting_lodge%1:06:00:: 03685486 1 0 -hunting_permit%1:10:00:: 06550552 1 0 -hunting_season%1:28:00:: 15241186 1 0 -hunting_spider%1:05:00:: 01775062 1 0 -hunting_watch%1:06:00:: 03549350 1 0 -huntingdon_elm%1:20:00:: 12407396 1 0 -huntingdon_willow%1:20:00:: 12725738 1 0 -huntington%1:15:00:: 09156241 4 0 -huntington%1:18:00:: 11067184 3 0 -huntington%1:18:01:: 11067396 2 0 -huntington%1:18:02:: 11067604 1 0 -huntington's_chorea%1:26:00:: 14156976 1 0 -huntington's_disease%1:26:00:: 14156976 1 0 -huntress%1:18:00:: 10193650 1 0 -huntsman%1:18:00:: 10193026 1 0 -huntsman's_cup%1:20:00:: 12779851 1 0 -huntsman's_cups%1:20:00:: 12779851 1 0 -huntsman's_horn%1:20:00:: 12780563 1 0 -huntsman's_horns%1:20:00:: 12780563 1 0 -huntsville%1:15:00:: 09054350 1 0 -huon_pine%1:20:00:: 11656123 1 0 -hupa%1:10:00:: 06919818 2 0 -hupa%1:18:00:: 09657489 1 0 -hurdle%1:04:00:: 00120515 3 0 -hurdle%1:06:00:: 03549589 1 1 -hurdle%1:09:00:: 05691241 2 0 -hurdle%2:38:00:: 01967205 1 2 -hurdle_race%1:11:00:: 07469162 1 0 -hurdler%1:18:00:: 10193864 1 0 -hurdles%1:11:00:: 07469162 1 0 -hurdling%1:11:00:: 07469162 1 0 -hurdy-gurdy%1:06:00:: 02795978 1 0 -hurdy_gurdy%1:06:00:: 02795978 1 0 -hurl%1:04:00:: 00105479 1 0 -hurl%2:32:00:: 01067664 3 0 -hurl%2:35:00:: 01507143 1 9 -hurl%2:38:00:: 02062212 2 3 -hurler%1:18:00:: 10435988 1 2 -hurler's_disease%1:26:00:: 14157163 1 0 -hurler's_syndrome%1:26:00:: 14157163 1 0 -hurling%1:04:00:: 00470830 1 0 -hurly_burly%1:26:00:: 13977366 1 0 -hurok%1:18:00:: 11067745 1 0 -huron%1:17:00:: 09331535 1 0 -hurrah%1:10:00:: 06692973 1 0 -hurrah%2:32:00:: 00913982 1 0 -hurricane%1:19:00:: 11467018 1 2 -hurricane_deck%1:06:00:: 03549732 1 2 -hurricane_lamp%1:06:00:: 03549897 1 0 -hurricane_lantern%1:06:00:: 03549897 1 0 -hurricane_roof%1:06:00:: 03549732 1 0 -hurried%3:00:00:: 01270175 1 3 -hurriedly%4:02:00:: 00206479 1 1 -hurriedness%1:07:00:: 05060189 1 0 -hurry%1:04:00:: 00555648 3 1 -hurry%1:07:00:: 05060189 2 2 -hurry%1:26:00:: 14451189 1 6 -hurry%2:30:00:: 00459498 2 8 -hurry%2:30:01:: 00459296 3 1 -hurry%2:38:00:: 02055649 1 30 -hurrying%1:04:00:: 00330160 1 0 -hurrying%5:00:00:fast:01 00978581 1 3 -hurt%1:04:00:: 00403092 5 0 -hurt%1:11:01:: 07420538 4 0 -hurt%1:12:01:: 07495327 3 0 -hurt%1:12:02:: 07496463 2 1 -hurt%1:26:00:: 14285662 1 6 -hurt%2:29:01:: 00064643 2 8 -hurt%2:29:02:: 00065070 7 0 -hurt%2:30:04:: 00260470 4 4 -hurt%2:37:00:: 01793177 5 3 -hurt%2:37:01:: 01792567 3 4 -hurt%2:39:00:: 02122164 1 8 -hurt%2:39:01:: 02121511 6 0 -hurt%5:00:00:damaged:00 00680532 2 0 -hurt%5:00:01:injured:00 01318741 1 3 -hurtful%5:00:00:harmful:00 01161059 2 0 -hurtful%5:00:00:unkind:00 01374361 1 0 -hurting%1:26:00:: 14322699 1 0 -hurtle%2:35:00:: 01507143 3 0 -hurtle%2:38:00:: 02062212 2 2 -hurtle%2:38:01:: 02092183 1 3 -hus%1:18:00:: 11067885 1 0 -husain%1:18:00:: 11068196 2 0 -husain%1:18:01:: 11068401 1 0 -husayn%1:18:00:: 11068196 2 0 -husayn%1:18:01:: 11068401 1 0 -husband%1:18:00:: 10193967 1 68 -husband%2:40:00:: 02269143 1 0 -husband-wife_privilege%1:07:00:: 05180286 1 0 -husbandly%3:00:00:: 01735622 1 0 -husbandly%5:00:00:domestic:01 01039687 2 0 -husbandman%1:18:00:: 10078806 1 0 -husbandry%1:04:00:: 00916464 1 1 -hush%1:07:00:: 04982478 1 1 -hush%2:30:00:: 00461354 1 2 -hush%2:30:01:: 00461493 2 1 -hush%2:30:02:: 00461057 5 0 -hush%2:30:03:: 00461234 4 0 -hush%2:39:00:: 02190188 3 0 -hush-hush%5:00:00:covert:00 01706465 1 0 -hush_money%1:21:00:: 13284442 1 0 -hush_puppy%1:13:00:: 07688898 1 0 -hush_up%2:30:00:: 00461493 2 0 -hush_up%2:39:00:: 02148109 1 0 -hushed%5:00:00:soft:04 01455540 1 0 -hushed-up%5:00:00:suppressed:00 00470372 1 0 -hushing%1:11:00:: 07384898 1 0 -hushpuppy%1:13:00:: 07688898 1 0 -husk%1:20:00:: 13139647 2 0 -husk%1:27:00:: 14805899 1 0 -husk%2:30:00:: 00181258 1 0 -husk_tomato%1:13:00:: 07734555 2 0 -husk_tomato%1:20:00:: 12910285 1 0 -huskily%4:02:00:: 00358200 1 0 -huskiness%1:07:01:: 05031214 1 0 -huskiness%1:07:02:: 04988861 2 0 -husking%1:04:00:: 00394803 1 0 -husking_bee%1:14:00:: 08188967 1 0 -husky%1:05:00:: 02109961 1 0 -husky%5:00:00:cacophonous:00 00299690 2 1 -husky%5:00:00:robust:00 02038126 1 3 -huss%1:18:00:: 11067885 1 0 -hussar%1:18:00:: 10194341 1 0 -hussar_monkey%1:05:00:: 02486261 1 0 -hussein%1:18:00:: 11068196 2 0 -hussein%1:18:01:: 11068401 1 0 -husserl%1:18:00:: 11068630 1 0 -hussite%1:18:00:: 10194463 1 0 -hussy%1:18:00:: 09772930 1 0 -hustings%1:04:00:: 00800121 1 0 -hustle%1:04:00:: 00555138 2 0 -hustle%1:04:01:: 00779248 1 0 -hustle%2:32:00:: 00767019 5 0 -hustle%2:38:00:: 02058191 2 1 -hustle%2:38:01:: 02096312 1 2 -hustle%2:40:00:: 02322596 3 0 -hustle%2:40:01:: 02210496 4 0 -hustler%1:18:00:: 10194566 2 0 -hustler%1:18:01:: 10663315 1 0 -huston%1:18:00:: 11068760 1 0 -hut%1:06:00:: 03547054 2 4 -hut%1:06:01:: 03550153 1 14 -hutch%1:06:00:: 03550289 1 0 -hutch%1:06:01:: 03547054 2 0 -hutchins%1:18:00:: 11068922 1 0 -hutchinson%1:18:00:: 11069085 1 0 -hutment%1:06:00:: 03550420 1 2 -hutton%1:18:00:: 11069261 2 0 -hutton%1:18:01:: 11069430 1 0 -hutu%1:18:00:: 09693100 1 0 -hutzpah%1:07:00:: 04916200 1 0 -huxleian%3:01:00:: 03033108 1 0 -huxley%1:18:00:: 11069534 3 0 -huxley%1:18:01:: 11069746 2 0 -huxley%1:18:02:: 11069974 1 0 -huxleyan%3:01:00:: 03033108 1 0 -huygens%1:18:00:: 11070218 1 0 -huygens'_principle_of_superposition%1:09:00:: 05991441 1 0 -hwang_ho%1:17:00:: 09306257 1 0 -hyacinth%1:20:00:: 12458383 2 0 -hyacinth%1:27:00:: 14909584 1 1 -hyacinth_bean%1:20:00:: 12537569 1 0 -hyacinthaceae%1:20:00:: 12458002 1 0 -hyacinthoides%1:20:00:: 12459048 1 0 -hyacinthoides_nonscripta%1:20:00:: 12459275 1 0 -hyacinthus_candicans%1:20:00:: 12458874 1 0 -hyacinthus_orientalis%1:20:00:: 12458550 1 0 -hyacinthus_orientalis_albulus%1:20:00:: 12458713 1 0 -hyades%1:18:00:: 09549416 1 0 -hyaena%1:05:00:: 02117135 1 0 -hyaena_brunnea%1:05:00:: 02117646 1 0 -hyaena_hyaena%1:05:00:: 02117512 1 0 -hyaenidae%1:05:00:: 02116959 1 0 -hyalin%1:27:00:: 14909703 1 0 -hyaline%1:27:00:: 14909703 1 0 -hyaline%5:00:00:clear:02 00432251 1 1 -hyaline_cartilage%1:08:00:: 05288739 1 0 -hyaline_membrane_disease%1:26:00:: 14150740 1 0 -hyalinisation%1:26:00:: 14076809 1 0 -hyalinization%1:26:00:: 14076809 1 1 -hyaloid%1:08:00:: 05319588 1 0 -hyaloid%5:00:00:clear:02 00432251 1 0 -hyaloid_membrane%1:08:00:: 05319588 1 0 -hyalophora%1:05:00:: 02303167 1 0 -hyalophora_cecropia%1:05:00:: 02303284 1 0 -hyaloplasm%1:08:00:: 05434053 1 0 -hyaloplasmic%3:01:00:: 02744460 1 0 -hyalosperma%1:20:00:: 11983739 1 0 -hyalospongiae%1:05:00:: 01907495 1 0 -hyaluronic_acid%1:27:00:: 14909895 1 0 -hyaluronidase%1:27:00:: 14910165 1 0 -hyazyme%1:27:00:: 14910165 1 0 -hybanthus%1:20:00:: 12390914 1 0 -hybrid%1:05:00:: 01327322 3 0 -hybrid%1:09:00:: 05870615 2 0 -hybrid%1:10:00:: 06293229 1 0 -hybrid%5:00:00:crossbred:00 01904485 1 0 -hybrid_petunia%1:20:00:: 12909917 1 0 -hybrid_tuberous_begonia%1:20:00:: 12362668 1 0 -hybrid_vigor%1:07:00:: 04922597 1 0 -hybridisation%1:04:00:: 00850425 1 0 -hybridise%2:35:00:: 01429953 1 0 -hybridization%1:04:00:: 00850425 1 0 -hybridize%2:35:00:: 01429953 1 0 -hybridizing%1:04:00:: 00850425 1 0 -hybridoma%1:08:00:: 05470013 1 0 -hydantoin%1:06:00:: 03550533 1 0 -hydathode%1:20:00:: 13153729 1 0 -hydatid%1:26:00:: 14202119 1 0 -hydatid_disease%1:26:00:: 14453414 1 0 -hydatid_mole%1:26:00:: 14192942 1 0 -hydatidiform_mole%1:26:00:: 14192942 1 0 -hydatidosis%1:26:00:: 14453414 1 0 -hyderabad%1:15:00:: 08904269 2 0 -hyderabad%1:15:01:: 08976913 1 0 -hydnaceae%1:20:00:: 12986084 1 0 -hydnocarpus%1:20:00:: 12379278 1 0 -hydnocarpus_kurzii%1:20:00:: 12379531 1 0 -hydnocarpus_laurifolia%1:20:00:: 12379781 1 0 -hydnocarpus_oil%1:20:00:: 12380029 1 0 -hydnocarpus_wightiana%1:20:00:: 12379781 1 0 -hydnoraceae%1:20:00:: 11803277 1 0 -hydnum%1:20:00:: 12986337 1 0 -hydra%1:05:00:: 01912152 4 0 -hydra%1:09:00:: 05688169 3 0 -hydra%1:17:00:: 09307552 2 0 -hydra%1:18:00:: 09496261 1 0 -hydralazine%1:06:00:: 03550671 1 0 -hydramnios%1:26:00:: 14193202 1 0 -hydrangea%1:20:00:: 12788201 1 0 -hydrangea_anomala%1:20:00:: 12788487 1 0 -hydrangea_arborescens%1:20:00:: 12788678 1 0 -hydrangea_family%1:20:00:: 12787565 1 0 -hydrangea_macrophylla_hortensis%1:20:00:: 12788854 1 0 -hydrangea_paniculata%1:20:00:: 12789054 1 0 -hydrangea_petiolaris%1:20:00:: 12789226 1 0 -hydrangeaceae%1:20:00:: 12787565 1 0 -hydrant%1:06:00:: 03550916 2 0 -hydrant%1:06:01:: 04559451 1 0 -hydrargyrum%1:27:00:: 14645346 1 0 -hydrarthrosis%1:26:00:: 14347540 1 0 -hydrastis%1:20:00:: 11735325 1 0 -hydrastis_canadensis%1:20:00:: 11735570 1 0 -hydrate%1:27:00:: 14910440 1 0 -hydrate%2:30:00:: 00214020 3 0 -hydrate%2:30:02:: 00214268 2 0 -hydrate%2:30:03:: 00214407 1 0 -hydrated%3:00:00:: 02555387 1 0 -hydrated_aluminium_oxide%1:27:00:: 14824238 1 0 -hydrated_aluminum_oxide%1:27:00:: 14824238 1 0 -hydrated_lime%1:27:00:: 14936010 1 0 -hydrated_oxide%1:27:00:: 14935555 1 0 -hydration%1:22:00:: 13494325 1 0 -hydraulic%3:01:00:: 03073751 2 0 -hydraulic%3:01:01:: 03073888 1 0 -hydraulic_brake%1:06:00:: 03551084 1 0 -hydraulic_brake_cylinder%1:06:00:: 02889996 1 0 -hydraulic_brakes%1:06:00:: 03551084 1 0 -hydraulic_cement%1:27:00:: 14804958 1 0 -hydraulic_engineering%1:09:00:: 06127873 1 0 -hydraulic_press%1:06:00:: 03551395 1 0 -hydraulic_pump%1:06:00:: 03551582 1 0 -hydraulic_ram%1:06:00:: 03551582 1 0 -hydraulic_system%1:06:00:: 03551790 1 0 -hydraulic_transmission%1:06:00:: 03552001 1 0 -hydraulic_transmission_system%1:06:00:: 03552001 1 0 -hydraulically%4:02:00:: 00360218 1 0 -hydraulicly%4:02:00:: 00360218 1 0 -hydraulics%1:09:00:: 06113009 1 0 -hydrazine%1:27:00:: 14910581 1 0 -hydrazo_group%1:27:00:: 14914544 1 0 -hydrazo_radical%1:27:00:: 14914544 1 0 -hydrazoic_acid%1:27:00:: 14612764 1 0 -hydrazoite%1:27:00:: 14770400 1 0 -hydremia%1:26:00:: 14193421 1 0 -hydric%3:00:00:: 02589086 1 0 -hydride%1:27:00:: 14910748 1 4 -hydrilla%1:20:00:: 12613706 1 0 -hydrilla_verticillata%1:20:00:: 12613706 1 0 -hydriodic_acid%1:27:00:: 14612972 1 0 -hydrobates%1:05:00:: 02061073 1 0 -hydrobates_pelagicus%1:05:00:: 02061217 1 0 -hydrobatidae%1:05:00:: 02060719 1 0 -hydrobromic_acid%1:27:00:: 14910926 1 0 -hydrocarbon%1:27:00:: 14911057 1 3 -hydrocele%1:26:00:: 14193571 1 0 -hydrocephalic%3:01:00:: 02744565 1 0 -hydrocephalus%1:26:00:: 14465768 1 0 -hydrocephaly%1:26:00:: 14465768 1 0 -hydrocharidaceae%1:20:00:: 12612913 1 0 -hydrocharis%1:20:00:: 12613285 1 0 -hydrocharis_morsus-ranae%1:20:00:: 12613408 1 0 -hydrocharitaceae%1:20:00:: 12612913 1 0 -hydrochloric_acid%1:27:00:: 14912387 1 0 -hydrochloride%1:27:00:: 14817964 1 1 -hydrochlorofluorocarbon%1:27:00:: 14613130 1 0 -hydrochlorothiazide%1:06:00:: 03552169 1 0 -hydrochoeridae%1:05:00:: 02365244 1 0 -hydrochoerus%1:05:00:: 02365356 1 0 -hydrochoerus_hydrochaeris%1:05:00:: 02365480 1 0 -hydrocolloid%1:27:00:: 14590975 1 0 -hydrocortisone%1:27:00:: 14752702 1 0 -hydrocortone%1:27:00:: 14752702 1 0 -hydrocracking%1:22:00:: 13494472 1 0 -hydrocyanic_acid%1:27:00:: 14613643 1 0 -hydrodamalis%1:05:00:: 02074542 1 0 -hydrodamalis_gigas%1:05:00:: 02074726 1 0 -hydrodiuril%1:06:00:: 03552169 1 0 -hydrodynamic%3:01:00:: 02979995 1 0 -hydrodynamics%1:09:00:: 06113914 1 0 -hydroelectric%3:01:00:: 02827950 1 0 -hydroelectric_turbine%1:06:00:: 03552449 1 0 -hydroelectricity%1:19:00:: 11467202 1 0 -hydroflumethiazide%1:06:00:: 03552639 1 0 -hydrofluoric_acid%1:27:00:: 14913136 1 0 -hydrofluorocarbon%1:27:00:: 14912556 1 0 -hydrofluosilicic_acid%1:27:00:: 14872408 1 0 -hydrofoil%1:06:00:: 03552749 2 0 -hydrofoil%1:06:01:: 03553019 1 0 -hydrogel%1:27:00:: 14590685 1 0 -hydrogen%1:27:00:: 14640434 1 6 -hydrogen-bomb%2:33:00:: 01133096 1 0 -hydrogen_atom%1:27:00:: 14640756 1 10 -hydrogen_azide%1:27:00:: 14612764 1 0 -hydrogen_bomb%1:06:00:: 03553248 1 0 -hydrogen_bond%1:19:00:: 11437111 1 4 -hydrogen_bromide%1:27:00:: 14912710 1 0 -hydrogen_carbonate%1:27:00:: 14775729 1 0 -hydrogen_chloride%1:27:00:: 14912840 1 0 -hydrogen_cyanide%1:27:00:: 14613368 1 0 -hydrogen_fluoride%1:27:00:: 14912935 1 0 -hydrogen_iodide%1:27:00:: 14913278 1 0 -hydrogen_ion%1:17:00:: 09307719 1 0 -hydrogen_ion_concentration%1:07:00:: 05038959 1 0 -hydrogen_peroxide%1:27:00:: 14781225 1 1 -hydrogen_sulfide%1:27:00:: 14913518 1 0 -hydrogenate%2:30:00:: 00308534 1 0 -hydrogenation%1:22:00:: 13494707 1 0 -hydrographic%3:01:00:: 02744720 1 0 -hydrographical%3:01:00:: 02744720 1 0 -hydrography%1:09:00:: 06120111 1 0 -hydroid%1:05:00:: 01911839 1 0 -hydroiodic_acid%1:27:00:: 14913403 1 0 -hydrokinetic%3:01:00:: 02828310 1 0 -hydrokinetics%1:09:00:: 06113914 1 0 -hydrolise%2:30:01:: 00564300 1 0 -hydrolith%1:27:00:: 14937366 1 0 -hydrolize%2:30:01:: 00564300 1 0 -hydrologist%1:18:00:: 10194775 1 0 -hydrology%1:09:00:: 06119729 1 0 -hydrolysate%1:27:00:: 14613841 1 0 -hydrolyse%2:30:00:: 00564151 1 0 -hydrolysis%1:22:00:: 13494919 1 0 -hydrolyzable%3:01:00:: 02744876 1 0 -hydrolyze%2:30:00:: 00564151 1 0 -hydromancer%1:18:00:: 10194865 1 0 -hydromancy%1:09:00:: 05777149 1 0 -hydromantes%1:05:00:: 01637796 1 0 -hydromantes_brunus%1:05:00:: 01638329 1 0 -hydromantes_shastae%1:05:00:: 01638194 1 0 -hydromel%1:13:00:: 07890970 1 0 -hydrometer%1:06:00:: 03553486 1 0 -hydrometric%3:01:00:: 03002841 1 0 -hydrometry%1:04:00:: 01002413 1 0 -hydromorphone%1:06:00:: 03553708 1 0 -hydromorphone_hydrochloride%1:06:00:: 03553708 1 0 -hydromyinae%1:05:00:: 02334849 1 0 -hydromys%1:05:00:: 02335007 1 0 -hydronephrosis%1:26:00:: 14466122 1 0 -hydropathic%3:01:00:: 03074039 1 0 -hydropathy%1:04:00:: 00711127 1 0 -hydrophidae%1:05:00:: 01751621 1 0 -hydrophilic%3:00:00:: 00491971 1 2 -hydrophobia%1:26:00:: 14271667 3 0 -hydrophobia%1:26:01:: 14383544 2 0 -hydrophobia%1:26:02:: 14383624 1 0 -hydrophobic%3:00:00:: 00491749 1 2 -hydrophobic%5:00:00:afraid:00 00080098 2 0 -hydrophobicity%1:07:00:: 05196220 1 0 -hydrophyllaceae%1:20:00:: 12834408 1 0 -hydrophyllum%1:20:00:: 12834671 1 0 -hydrophyllum_virginianum%1:20:00:: 12834938 1 0 -hydrophyte%1:20:00:: 13121544 1 0 -hydrophytic%5:00:00:hydric:00 02589258 1 0 -hydrophytic_plant%1:20:00:: 13121544 1 0 -hydroplane%1:06:00:: 04160586 1 0 -hydroplane%1:06:01:: 03552749 2 0 -hydroplane%2:38:00:: 01943153 1 0 -hydroplane_racing%1:04:00:: 00449796 1 0 -hydroponic%3:01:00:: 02790474 1 0 -hydroponics%1:04:00:: 00918976 1 0 -hydrops%1:26:00:: 14316714 1 0 -hydrosphere%1:17:00:: 09307902 1 0 -hydrostatic%3:01:00:: 02828123 1 0 -hydrostatic_head%1:19:00:: 11496296 1 1 -hydrostatics%1:09:00:: 06113415 1 0 -hydrotherapy%1:04:00:: 00711127 1 0 -hydrothorax%1:26:00:: 14320602 1 0 -hydrous%3:00:00:: 02555387 1 1 -hydroxide%1:27:00:: 14935555 1 1 -hydroxide%1:27:01:: 14914670 2 0 -hydroxide_ion%1:27:00:: 14914945 1 0 -hydroxy%3:01:00:: 02744985 1 0 -hydroxy_acid%1:27:00:: 14613922 1 0 -hydroxyacetic_acid%1:27:00:: 14888124 1 0 -hydroxybenzene%1:27:00:: 14796073 1 0 -hydroxybenzoic_acid%1:27:00:: 14614139 1 0 -hydroxybutyric_acid%1:27:00:: 14927451 1 0 -hydroxychloroquine%1:06:00:: 03553908 1 0 -hydroxyl%1:27:00:: 14914775 1 0 -hydroxyl_group%1:27:00:: 14914775 1 0 -hydroxyl_ion%1:27:00:: 14914945 1 0 -hydroxyl_radical%1:27:00:: 14914775 1 0 -hydroxymethyl%1:27:00:: 14915072 1 1 -hydroxyproline%1:27:00:: 14607131 1 0 -hydroxytetracycline%1:06:00:: 03869389 1 0 -hydroxyzine%1:06:00:: 03554131 1 0 -hydroxyzine_hydrochloride%1:06:00:: 03554131 1 0 -hydrozoa%1:05:00:: 01911511 1 0 -hydrozoan%1:05:00:: 01911839 1 0 -hydrus%1:17:00:: 09308116 1 0 -hyemoschus%1:05:00:: 02436514 1 0 -hyemoschus_aquaticus%1:05:00:: 02436645 1 0 -hyena%1:05:00:: 02117135 1 0 -hyena_dog%1:05:00:: 02116738 1 0 -hygeia%1:18:00:: 09562883 1 0 -hygiene%1:09:00:: 06051380 2 0 -hygiene%1:26:00:: 14495080 1 0 -hygienic%5:00:00:sanitary:00 02113191 1 0 -hygienical%5:00:00:sanitary:00 02113191 1 0 -hygienically%4:02:00:: 00360414 1 0 -hygienics%1:09:00:: 06051380 1 0 -hygienise%2:35:00:: 01245052 1 0 -hygienist%1:18:00:: 10194969 1 0 -hygienize%2:35:00:: 01245052 1 0 -hygrocybe%1:20:00:: 13070708 1 0 -hygrocybe_acutoconica%1:20:00:: 13070875 1 0 -hygrodeik%1:06:00:: 03554375 1 0 -hygrometer%1:06:00:: 03554460 1 0 -hygrophoraceae%1:20:00:: 13070003 1 0 -hygrophorus%1:20:00:: 13071029 1 0 -hygrophorus_borealis%1:20:00:: 13071371 1 0 -hygrophorus_caeruleus%1:20:00:: 13071553 1 0 -hygrophorus_inocybiformis%1:20:00:: 13071815 1 0 -hygrophorus_kauffmanii%1:20:00:: 13072031 1 0 -hygrophorus_marzuolus%1:20:00:: 13072209 1 0 -hygrophorus_purpurascens%1:20:00:: 13072350 1 0 -hygrophorus_russula%1:20:00:: 13072528 1 0 -hygrophorus_sordidus%1:20:00:: 13072706 1 0 -hygrophorus_tennesseensis%1:20:00:: 13072863 1 0 -hygrophorus_turundus%1:20:00:: 13073055 1 0 -hygrophyte%1:20:00:: 11553522 1 0 -hygrophytic%5:00:00:hydric:00 02589402 1 0 -hygroscope%1:06:00:: 03554645 1 0 -hygroscopic%5:00:00:absorbent:00 00007096 1 0 -hygroton%1:06:00:: 03023623 1 0 -hygrotrama%1:20:00:: 13073211 1 0 -hygrotrama_foetens%1:20:00:: 13073380 1 0 -hyla%1:05:00:: 01650509 1 0 -hyla_arenicolor%1:05:00:: 01651059 1 0 -hyla_crucifer%1:05:00:: 01650690 1 0 -hyla_regilla%1:05:00:: 01650901 1 0 -hylactophryne%1:05:00:: 01643374 1 0 -hylactophryne_augusti%1:05:00:: 01643507 1 0 -hylidae%1:05:00:: 01649948 1 0 -hylobates%1:05:00:: 02483224 1 0 -hylobates_lar%1:05:00:: 02483362 1 0 -hylobates_syndactylus%1:05:00:: 02483708 1 0 -hylobatidae%1:05:00:: 02482820 1 0 -hylocereus%1:20:00:: 11848253 1 0 -hylocichla%1:05:00:: 01559294 1 0 -hylocichla_fuscescens%1:05:00:: 01559639 1 0 -hylocichla_guttata%1:05:00:: 01559477 1 0 -hylocichla_mustelina%1:05:00:: 01559804 1 0 -hylophylax%1:05:00:: 01553879 1 0 -hylophylax_naevioides%1:05:00:: 01554017 1 0 -hyman_george_rickover%1:18:00:: 11261986 1 0 -hyman_rickover%1:18:00:: 11261986 1 0 -hymen%1:08:00:: 05521934 2 0 -hymen%1:18:00:: 09564371 1 0 -hymenaea%1:20:00:: 11750359 1 0 -hymenaea_courbaril%1:20:00:: 11750508 1 0 -hymenal%3:01:00:: 03137031 1 0 -hymenanthera%1:20:00:: 12391111 1 0 -hymeneal%1:10:00:: 07036699 1 0 -hymeneal%3:01:00:: 03137130 1 0 -hymeneals%1:11:00:: 07452074 1 0 -hymenium%1:20:00:: 11550474 1 0 -hymenogastrales%1:20:00:: 12970872 1 0 -hymenomycetes%1:20:00:: 12998130 1 0 -hymenophyllaceae%1:20:00:: 12951465 1 0 -hymenophyllum%1:20:00:: 12951668 1 0 -hymenopter%1:05:00:: 02206270 1 0 -hymenoptera%1:05:00:: 02205896 1 0 -hymenopteran%1:05:00:: 02206270 1 0 -hymenopteron%1:05:00:: 02206270 1 0 -hymenopterous%3:01:00:: 02745075 1 0 -hymenopterous_insect%1:05:00:: 02206270 1 0 -hymenoxys_acaulis%1:20:00:: 12025220 1 0 -hymenoxys_grandiflora%1:20:00:: 12025507 1 0 -hymie%1:18:00:: 09682122 1 0 -hymn%1:10:00:: 07035870 1 7 -hymn%2:32:00:: 00861423 2 0 -hymn%2:36:00:: 01731718 1 0 -hymnal%1:10:00:: 06418258 1 0 -hymnary%1:10:00:: 06418258 1 0 -hymnbook%1:10:00:: 06418258 1 0 -hymnody%1:04:00:: 01255549 1 0 -hynerpeton%1:05:00:: 01627786 1 0 -hynerpeton_bassetti%1:05:00:: 01627976 1 0 -hyoid%1:08:00:: 05275162 1 0 -hyoid%3:01:00:: 03021459 1 0 -hyoid_bone%1:08:00:: 05275162 1 0 -hyoscine%1:06:00:: 04149490 1 0 -hyoscyamine%1:06:00:: 03554795 1 0 -hyoscyamus%1:20:00:: 12904148 1 0 -hyoscyamus_muticus%1:20:00:: 12904562 1 0 -hyoscyamus_niger%1:20:00:: 12904314 1 0 -hypaethral%5:00:00:unenclosed:00 01659014 1 0 -hypallage%1:10:00:: 07103671 1 0 -hypanthium%1:20:00:: 11690254 1 0 -hypatia%1:18:00:: 11070387 1 0 -hype%1:10:00:: 07248507 1 0 -hype%2:32:00:: 00954908 1 0 -hype_up%2:37:00:: 01763482 1 0 -hypentelium%1:05:00:: 01445718 1 0 -hypentelium_nigricans%1:05:00:: 01445857 1 0 -hyper-eutectoid_steel%1:27:00:: 14913633 1 0 -hyperacidity%1:07:00:: 05039633 1 0 -hyperactive%5:00:00:active:01 00033206 1 0 -hyperactivity%1:26:00:: 14060256 1 0 -hyperacusia%1:26:00:: 14551321 1 0 -hyperacusis%1:26:00:: 14551321 1 0 -hyperadrenalism%1:26:00:: 14117449 1 0 -hyperadrenocorticism%1:26:00:: 14117668 1 0 -hyperaemia%1:26:00:: 14320984 1 0 -hyperaldosteronism%1:26:00:: 14117317 1 0 -hyperalimentation%1:04:00:: 01059445 1 0 -hyperbaric_chamber%1:06:00:: 03555006 1 0 -hyperbaton%1:10:00:: 07103802 1 0 -hyperbetalipoproteinemia%1:26:00:: 14158594 1 0 -hyperbilirubinemia%1:26:00:: 14318927 1 0 -hyperbilirubinemia_of_the_newborn%1:26:00:: 14319093 1 0 -hyperbola%1:25:00:: 13886575 1 0 -hyperbole%1:10:00:: 07106502 1 0 -hyperbolic%3:01:00:: 02994089 2 0 -hyperbolic%5:00:00:increased:00 00881030 1 2 -hyperbolic_geometry%1:09:00:: 06007046 1 0 -hyperbolically%4:02:00:: 00189514 1 1 -hyperbolise%2:32:00:: 00839834 1 0 -hyperbolize%2:32:00:: 00839834 1 0 -hyperboloid%1:25:00:: 13896854 1 0 -hyperboloidal%5:00:00:rounded:00 02046625 1 0 -hyperborean%1:18:00:: 09496460 1 0 -hypercalcaemia%1:26:00:: 14268623 1 0 -hypercalcemia%1:26:00:: 14268623 1 0 -hypercalcinuria%1:26:00:: 14269090 1 0 -hypercalciuria%1:26:00:: 14269090 1 0 -hypercapnia%1:26:00:: 14041940 1 0 -hypercarbia%1:26:00:: 14041940 1 0 -hypercatalectic%1:10:00:: 06348685 1 0 -hypercatalectic%3:00:00:: 00318291 1 0 -hypercellularity%1:26:00:: 14061599 1 1 -hypercholesteremia%1:26:00:: 14269319 1 0 -hypercholesterolemia%1:26:00:: 14269319 1 0 -hyperchromic_anaemia%1:26:00:: 14165373 1 0 -hyperchromic_anemia%1:26:00:: 14165373 1 0 -hypercoaster%1:06:00:: 03555217 1 0 -hypercritical%5:00:00:critical:01 00648345 1 0 -hyperdactyly%1:26:00:: 14471724 1 0 -hyperemesis%1:04:00:: 00119297 1 0 -hyperemesis_gravidarum%1:04:00:: 00119402 1 0 -hyperemia%1:26:00:: 14320984 1 2 -hyperemic%3:01:00:: 03011750 1 2 -hyperextend%2:29:00:: 00028010 1 0 -hyperextension%1:04:00:: 00369694 1 0 -hyperfine%5:00:00:thin:01 02414323 1 1 -hyperfocal_distance%1:07:00:: 05086563 1 0 -hyperglycaemia%1:26:00:: 14319299 1 0 -hyperglycemia%1:26:00:: 14319299 1 0 -hyperglyphe_perciformis%1:05:00:: 02635154 1 0 -hyperhidrosis%1:22:00:: 13495209 1 0 -hypericaceae%1:20:00:: 12367122 1 0 -hypericales%1:20:00:: 12359026 1 0 -hypericism%1:26:00:: 14224170 1 0 -hypericum%1:20:00:: 12367306 1 0 -hypericum_androsaemum%1:20:00:: 12368028 1 0 -hypericum_ascyron%1:20:00:: 12368257 1 0 -hypericum_calycinum%1:20:00:: 12368451 1 0 -hypericum_crux_andrae%1:20:00:: 12368847 1 0 -hypericum_gentianoides%1:20:00:: 12368637 1 0 -hypericum_hypericoides%1:20:00:: 12369066 1 0 -hypericum_maculatum%1:20:00:: 12369665 1 0 -hypericum_perforatum%1:20:00:: 12369309 1 0 -hypericum_prolificum%1:20:00:: 12369476 1 0 -hypericum_pyramidatum%1:20:00:: 12368257 1 0 -hypericum_spathulatum%1:20:00:: 12369476 1 0 -hypericum_tetrapterum%1:20:00:: 12369665 1 0 -hypericum_virginianum%1:20:00:: 12369845 1 0 -hyperidrosis%1:22:00:: 13495209 1 0 -hyperion%1:18:00:: 09564480 1 0 -hyperkalemia%1:26:00:: 14269556 1 0 -hyperkinetic_syndrome%1:26:00:: 14056280 1 0 -hyperlink%1:10:00:: 06586672 1 0 -hyperlipaemia%1:26:00:: 14193925 1 0 -hyperlipemia%1:26:00:: 14193925 1 0 -hyperlipidaemia%1:26:00:: 14193925 1 0 -hyperlipidemia%1:26:00:: 14193925 1 0 -hyperlipoidaemia%1:26:00:: 14193925 1 0 -hyperlipoidemia%1:26:00:: 14193925 1 0 -hyperlipoproteinemia%1:26:00:: 14270380 1 0 -hypermarket%1:06:00:: 03555426 1 0 -hypermastigina%1:05:00:: 01418794 1 0 -hypermastigote%1:05:00:: 01418947 1 0 -hypermedia%1:10:00:: 06261922 1 0 -hypermedia_system%1:10:00:: 06261922 1 0 -hypermenorrhea%1:22:00:: 13513540 1 0 -hypermetropia%1:26:00:: 14554011 1 0 -hypermetropic%5:00:00:farsighted:00 02157747 1 0 -hypermetropy%1:26:00:: 14554011 1 0 -hypermotility%1:26:00:: 14174316 1 0 -hypernatremia%1:26:00:: 14271015 1 0 -hypernym%1:10:00:: 06292836 1 0 -hypernymy%1:24:00:: 13808004 1 0 -hyperoartia%1:05:00:: 01477184 1 0 -hyperodontidae%1:05:00:: 02067941 1 0 -hyperoglyphe%1:05:00:: 02635013 1 0 -hyperon%1:17:00:: 09308242 1 0 -hyperoodon%1:05:00:: 02068408 1 0 -hyperoodon_ampullatus%1:05:00:: 02068541 1 0 -hyperope%1:18:00:: 10195056 1 0 -hyperopia%1:26:00:: 14554011 1 0 -hyperopic%5:00:00:farsighted:00 02157747 1 0 -hyperotreta%1:05:00:: 01478073 1 0 -hyperparathyroidism%1:26:00:: 14076992 1 0 -hyperpiesia%1:26:00:: 14104645 1 0 -hyperpiesis%1:26:00:: 14104645 1 0 -hyperpigmentation%1:26:00:: 14290881 1 0 -hyperpituitarism%1:26:00:: 14077454 1 0 -hyperplasia%1:26:00:: 14368805 1 1 -hyperpnea%1:04:00:: 00833578 1 0 -hyperpyrexia%1:26:00:: 14365619 1 0 -hypersecretion%1:22:00:: 13495333 1 0 -hypersensitised%5:00:00:susceptible:00 02360944 1 0 -hypersensitive%5:00:00:susceptible:00 02360944 1 0 -hypersensitivity%1:09:00:: 05653475 2 0 -hypersensitivity%1:26:00:: 14533796 1 0 -hypersensitivity_reaction%1:26:00:: 14533203 1 0 -hypersensitized%5:00:00:susceptible:00 02360944 1 0 -hypersomnia%1:26:00:: 14023236 1 0 -hypersplenism%1:26:00:: 14271322 1 0 -hyperstat%1:06:00:: 03190303 1 0 -hypertensin%1:06:00:: 02711890 1 0 -hypertension%1:26:00:: 14103510 1 0 -hypertensive%1:18:00:: 10195155 1 0 -hypertensive%3:00:00:: 01599114 1 0 -hypertext%1:10:00:: 06262176 1 0 -hypertext_mark-up_language%1:10:00:: 06788262 1 0 -hypertext_markup_language%1:10:00:: 06788262 1 0 -hypertext_system%1:10:00:: 06589352 1 0 -hypertext_transfer_protocol%1:10:00:: 06665847 1 0 -hyperthermal%3:01:00:: 02985782 1 0 -hyperthermia%1:26:00:: 14044174 1 0 -hyperthermy%1:26:00:: 14044174 1 0 -hyperthyroidism%1:26:00:: 14120767 1 0 -hypertonia%1:26:00:: 14576242 1 0 -hypertonic%3:00:00:: 00895126 2 0 -hypertonic%3:00:01:: 02408293 1 0 -hypertonicity%1:26:00:: 14576242 2 0 -hypertonicity%1:26:01:: 14576690 1 0 -hypertonus%1:26:00:: 14576242 1 0 -hypertrophic_cardiomyopathy%1:26:00:: 14111133 1 0 -hypertrophic_rosacea%1:26:00:: 14397040 1 0 -hypertrophied%3:00:00:: 00555117 1 1 -hypertrophy%1:26:00:: 14366759 1 2 -hypertrophy%2:29:00:: 00094153 1 0 -hypervelocity%1:28:00:: 15283780 1 1 -hyperventilate%2:29:00:: 00002942 2 0 -hyperventilate%2:29:01:: 00003133 1 0 -hyperventilation%1:04:00:: 00833870 1 0 -hypervitaminosis%1:26:00:: 14198829 1 0 -hypervolaemia%1:26:00:: 14194942 1 0 -hypervolemia%1:26:00:: 14194942 1 0 -hypesthesia%1:26:00:: 14559852 1 0 -hypethral%5:00:00:unenclosed:00 01659014 1 0 -hypha%1:20:00:: 13022538 1 0 -hyphantria%1:05:00:: 02308325 1 0 -hyphantria_cunea%1:05:01:: 02308618 2 0 -hyphantria_cunea%1:05:02:: 02308735 1 0 -hyphema%1:26:00:: 14370726 1 0 -hyphen%1:10:00:: 06843148 1 0 -hyphen%2:36:00:: 01700326 1 0 -hyphenate%2:36:00:: 01700326 1 0 -hyphenation%1:04:00:: 00390445 2 0 -hyphenation%1:04:02:: 00390735 1 0 -hypnagogic%5:00:00:depressant:00 02309187 1 0 -hypnagogue%1:27:00:: 14913744 1 0 -hypnoanalysis%1:04:00:: 00705319 1 0 -hypnogenesis%1:04:00:: 00238778 1 0 -hypnogogic%5:00:00:depressant:00 02309187 1 0 -hypnoid%5:00:00:asleep:00 00188917 1 0 -hypnopedia%1:04:00:: 00892538 1 0 -hypnophobia%1:26:00:: 14383759 1 0 -hypnos%1:18:00:: 09496673 1 0 -hypnosis%1:26:00:: 14026592 1 0 -hypnotherapy%1:04:00:: 00704064 1 0 -hypnotic%1:06:00:: 04260934 1 0 -hypnotic%3:01:00:: 02745203 1 0 -hypnotic%5:00:00:attractive:01 00168188 2 0 -hypnotic_trance%1:09:00:: 05681701 1 0 -hypnotically%4:02:00:: 00513751 1 0 -hypnotise%2:29:00:: 00020671 1 0 -hypnotised%5:00:00:enchanted:00 00865848 1 0 -hypnotiser%1:18:00:: 10195261 1 0 -hypnotism%1:04:00:: 00158996 1 0 -hypnotist%1:18:00:: 10195261 1 0 -hypnotize%2:29:00:: 00020671 1 1 -hypnotized%5:00:00:enchanted:00 00865848 1 0 -hypnotizer%1:18:00:: 10195261 1 0 -hypo%1:06:00:: 03555662 2 0 -hypo%1:27:00:: 14913860 1 0 -hypo-eutectoid_steel%1:27:00:: 14914191 1 0 -hypoactive%5:00:00:inactive:01 00034232 1 1 -hypoadrenalism%1:26:00:: 14116908 1 0 -hypoadrenocorticism%1:26:00:: 14116908 1 1 -hypobasidium%1:20:00:: 12994711 1 0 -hypobetalipoproteinemia%1:26:00:: 14158812 1 0 -hypoblast%1:05:00:: 01464573 1 0 -hypocalcaemia%1:26:00:: 14268871 1 0 -hypocalcemia%1:26:00:: 14268871 1 0 -hypocapnia%1:26:00:: 14042165 1 0 -hypocellularity%1:26:00:: 14061703 1 1 -hypochaeris%1:20:00:: 11983910 1 0 -hypochaeris_radicata%1:20:00:: 11984144 1 0 -hypochlorite%1:27:00:: 14614245 1 0 -hypochlorous_acid%1:27:00:: 14914014 1 0 -hypochoeris%1:20:00:: 11983910 1 0 -hypochondria%1:26:00:: 14375005 1 0 -hypochondriac%1:18:00:: 10195487 1 0 -hypochondriac%5:00:00:neurotic:00 01584164 1 0 -hypochondriacal%5:00:00:neurotic:00 01584164 1 0 -hypochondriasis%1:26:00:: 14375005 1 0 -hypochondrium%1:08:00:: 05385363 1 0 -hypochromic_anaemia%1:26:00:: 14165544 1 0 -hypochromic_anemia%1:26:00:: 14165544 1 0 -hypocorism%1:10:00:: 06339244 1 0 -hypocreaceae%1:20:00:: 12965209 1 0 -hypocreales%1:20:00:: 12965056 1 0 -hypocrisy%1:07:00:: 04868148 2 1 -hypocrisy%1:10:00:: 06760076 1 1 -hypocrite%1:18:00:: 10195593 1 3 -hypocritical%5:00:00:insincere:00 02182562 1 0 -hypocritically%4:02:00:: 00315174 1 0 -hypocycloid%1:25:00:: 13909752 1 0 -hypoderma%1:05:00:: 02194887 1 0 -hypodermal%3:01:00:: 02876829 1 0 -hypodermatidae%1:05:00:: 02194414 1 0 -hypodermic%1:06:00:: 03555662 1 0 -hypodermic%3:01:00:: 02876936 1 0 -hypodermic_needle%1:06:00:: 03555564 1 0 -hypodermic_syringe%1:06:00:: 03555662 1 1 -hypodermis%1:05:00:: 01895850 1 0 -hypoesthesia%1:26:00:: 14559852 1 0 -hypogammaglobulinemia%1:26:00:: 14128650 1 0 -hypogastric_artery%1:08:00:: 05347631 1 0 -hypogastric_plexus%1:08:00:: 05506976 1 0 -hypogastric_vein%1:08:00:: 05369404 1 0 -hypoglossal%1:08:00:: 05480607 1 0 -hypoglossal_nerve%1:08:00:: 05480607 1 0 -hypoglycaemia%1:26:00:: 14319454 1 0 -hypoglycaemic%3:01:00:: 02877131 1 0 -hypoglycaemic_agent%1:27:00:: 14914301 1 0 -hypoglycemia%1:26:00:: 14319454 1 0 -hypoglycemic%3:01:00:: 02877131 1 0 -hypoglycemic_agent%1:27:00:: 14914301 1 0 -hypognathous%3:00:00:: 01875560 1 0 -hypogonadism%1:26:00:: 14075358 1 0 -hypokalemia%1:26:00:: 14269772 1 0 -hypolipoproteinemia%1:26:00:: 14270614 1 0 -hyponatremia%1:26:00:: 14271173 1 0 -hyponitrous_acid%1:27:00:: 14614378 1 0 -hyponym%1:10:00:: 06292973 1 0 -hyponymy%1:24:00:: 13807853 1 0 -hypopachus%1:05:00:: 01653384 1 0 -hypoparathyroidism%1:26:00:: 14077269 1 0 -hypophosphoric_acid%1:27:00:: 14614490 1 0 -hypophosphorous_acid%1:27:00:: 14614594 1 0 -hypophyseal%3:01:00:: 03011592 1 1 -hypophyseal_stalk%1:08:00:: 05484198 1 0 -hypophysectomise%2:30:00:: 00181005 1 0 -hypophysectomised%3:44:00:: 03150124 1 1 -hypophysectomize%2:30:00:: 00181005 1 0 -hypophysectomized%3:44:00:: 03150124 1 0 -hypophysectomy%1:04:00:: 00677038 1 0 -hypophysial%3:01:00:: 03011592 1 0 -hypophysial_dwarf%1:18:00:: 10436458 1 0 -hypophysis%1:08:00:: 05483890 1 0 -hypopigmentation%1:26:00:: 14291010 1 0 -hypopitys%1:20:00:: 12259122 1 0 -hypoplasia%1:26:00:: 14369064 1 0 -hypoplastic_anaemia%1:26:00:: 14165730 1 0 -hypoplastic_anemia%1:26:00:: 14165730 1 0 -hypoplastic_dwarf%1:18:00:: 10472447 1 0 -hypopnea%1:04:00:: 00833772 1 0 -hypoproteinemia%1:26:00:: 14270846 1 0 -hyposmia%1:26:00:: 14552718 1 0 -hypospadias%1:26:00:: 14198997 1 0 -hypostasis%1:09:00:: 05921868 4 0 -hypostasis%1:18:00:: 09538021 3 0 -hypostasis%1:22:00:: 13495413 2 0 -hypostasis%1:22:01:: 13495507 1 0 -hypostasis_of_christ%1:18:00:: 09538021 1 0 -hypostatisation%1:04:00:: 00932804 1 0 -hypostatise%2:31:00:: 00692718 1 0 -hypostatization%1:04:00:: 00932804 1 0 -hypostatize%2:31:00:: 00692718 1 0 -hypotension%1:26:00:: 14104522 1 0 -hypotensive%1:18:00:: 10195942 1 0 -hypotensive%3:00:00:: 01599228 1 0 -hypotenuse%1:25:00:: 13897528 1 0 -hypothalamic%3:01:00:: 02982729 1 27 -hypothalamic_releasing_factor%1:08:00:: 05412242 1 0 -hypothalamic_releasing_hormone%1:08:00:: 05412242 1 0 -hypothalamically%4:02:00:: 00093843 1 1 -hypothalamus%1:08:00:: 05499379 1 18 -hypothecate%2:31:00:: 00633443 2 0 -hypothecate%2:32:00:: 01062050 1 0 -hypothermia%1:26:00:: 14044454 1 0 -hypothermic%3:01:00:: 02985662 1 0 -hypothesis%1:09:00:: 05888929 2 2 -hypothesis%1:10:00:: 07162545 1 4 -hypothesis%1:10:01:: 06782680 3 0 -hypothesise%2:31:00:: 00633443 1 0 -hypothesize%2:31:00:: 00633443 1 3 -hypothetic%5:00:00:theoretical:00 00861216 1 0 -hypothetical%1:09:00:: 05889575 1 0 -hypothetical%5:00:00:theoretical:00 00861216 1 3 -hypothetical_creature%1:18:00:: 09484313 1 0 -hypothetical_imperative%1:10:00:: 06656274 1 0 -hypothetically%4:02:00:: 00169971 1 0 -hypothrombinemia%1:26:00:: 14194690 1 0 -hypothyroidism%1:26:00:: 14121276 1 1 -hypotonia%1:26:00:: 14576468 1 0 -hypotonic%3:00:00:: 00895276 2 0 -hypotonic%3:00:01:: 02408470 1 0 -hypotonicity%1:26:00:: 14576468 2 0 -hypotonicity%1:26:01:: 14576860 1 0 -hypotonus%1:26:00:: 14576468 1 0 -hypovitaminosis%1:26:00:: 14198576 1 0 -hypovolaemia%1:26:00:: 14195112 1 0 -hypovolaemic%3:01:00:: 02877313 1 0 -hypovolemia%1:26:00:: 14195112 1 0 -hypovolemic%3:01:00:: 02877313 1 0 -hypovolemic_shock%1:26:00:: 14067575 1 0 -hypoxia%1:26:00:: 14041256 1 0 -hypoxic_hypoxia%1:26:00:: 14041631 1 0 -hypoxidaceae%1:20:00:: 12422751 1 0 -hypoxis%1:20:00:: 12422931 1 0 -hypoxis_hirsuta%1:20:00:: 12423444 1 0 -hypozeugma%1:10:00:: 07103912 1 0 -hypozeuxis%1:10:00:: 07104020 1 0 -hypsiglena%1:05:00:: 01740005 1 0 -hypsiglena_torquata%1:05:00:: 01740131 1 0 -hypsiprymnodon%1:05:00:: 01879701 1 0 -hypsiprymnodon_moschatus%1:05:00:: 01879837 1 0 -hypsography%1:04:00:: 01002554 2 0 -hypsography%1:09:00:: 06117202 1 0 -hypsometer%1:06:00:: 03555862 1 0 -hypsometry%1:04:00:: 01002554 1 0 -hyracoidea%1:05:00:: 02372251 1 0 -hyracotherium%1:05:00:: 02375592 1 0 -hyrax%1:05:00:: 02372584 1 0 -hyson%1:13:00:: 07935288 1 0 -hyssop%1:13:00:: 07816575 2 0 -hyssop%1:20:00:: 12848499 1 0 -hyssop_loosestrife%1:20:00:: 12328801 1 0 -hyssop_oil%1:20:00:: 12848770 1 0 -hyssopus%1:20:00:: 12848343 1 0 -hyssopus_officinalis%1:20:00:: 12848499 1 0 -hysterectomy%1:04:00:: 00677174 1 0 -hysteresis%1:19:00:: 11467318 1 0 -hysteria%1:12:01:: 07520507 2 1 -hysteria%1:26:00:: 14393438 3 0 -hysteria%1:26:01:: 14391876 1 1 -hysteric%1:18:00:: 10196046 1 0 -hysteric%5:00:00:neurotic:00 01584287 1 0 -hysterical%5:00:00:agitated:00 00086606 2 1 -hysterical%5:00:00:neurotic:00 01584287 1 3 -hysterical_neurosis%1:26:00:: 14393438 1 0 -hysterically%4:02:00:: 00360710 1 2 -hysterics%1:26:00:: 14082984 1 0 -hysterocatalepsy%1:26:00:: 14393862 1 0 -hysteron_proteron%1:09:00:: 05894311 2 0 -hysteron_proteron%1:10:00:: 07104149 1 0 -hysterosalpingogram%1:06:00:: 03555996 1 0 -hysteroscopy%1:04:00:: 00642910 1 0 -hysterotomy%1:04:00:: 00677299 1 0 -hystricidae%1:05:00:: 02346823 1 0 -hystricomorpha%1:05:00:: 02346315 1 0 -hytrin%1:06:00:: 04412550 1 0 -hz%1:28:00:: 15279104 1 0 -i%1:10:00:: 06832033 3 0 -i%1:23:00:: 13742573 2 0 -i%1:27:00:: 14641397 1 0 -i%5:00:00:cardinal:00 02186338 1 0 -i-beam%1:06:00:: 03556173 1 0 -i._a._richards%1:18:00:: 11260945 1 0 -i._f._stone%1:18:00:: 11319413 1 0 -i._m._pei%1:18:00:: 11228153 1 0 -i.d.%1:10:00:: 06887278 1 0 -i.e.%4:02:00:: 00191579 1 19 -i.e.d.%1:06:00:: 03565565 1 0 -i.q.%1:24:00:: 13821977 1 4 -i.w.w.%1:14:00:: 08473173 1 0 -i_chronicles%1:10:00:: 06435651 1 0 -i_corinthians%1:10:00:: 06443398 1 0 -i_esdra%1:10:00:: 06459978 1 0 -i_john%1:10:00:: 06447221 1 0 -i_kings%1:10:00:: 06435004 1 0 -i_maccabees%1:10:00:: 06460776 1 0 -i_peter%1:10:00:: 06446860 1 0 -i_samuel%1:10:00:: 06434650 1 0 -i_thessalonians%1:10:00:: 06444959 1 0 -i_timothy%1:10:00:: 06445473 1 0 -ia%1:15:00:: 09086173 1 0 -iaa%1:14:00:: 08025112 2 0 -iaa%1:27:00:: 14918529 1 0 -iaea%1:14:00:: 08300641 1 0 -iago%1:18:00:: 09600624 1 0 -iamb%1:10:00:: 07095280 1 0 -iambic%1:10:00:: 06384995 1 0 -iambic%3:01:00:: 02897040 1 0 -iambus%1:10:00:: 07095280 1 0 -ian_douglas_smith%1:18:00:: 11306297 1 0 -ian_fleming%1:18:00:: 10972985 1 0 -ian_lancaster_fleming%1:18:00:: 10972985 1 0 -ian_smith%1:18:00:: 11306297 1 0 -ian_wilmut%1:18:00:: 11390692 1 0 -ianfu%1:18:00:: 09941172 1 0 -iapetus%1:18:00:: 09575140 1 0 -iatrogenic%5:00:00:induced:00 02283525 1 0 -ib.%4:02:00:: 00255976 1 0 -ibadan%1:15:00:: 08974330 1 0 -ibda-c%1:14:00:: 08025497 1 0 -iberia%1:15:00:: 08984567 2 0 -iberia%1:15:01:: 09018647 1 0 -iberian%1:18:00:: 10196133 2 0 -iberian%1:18:01:: 10196283 1 0 -iberian%3:01:00:: 02958714 1 0 -iberian_peninsula%1:15:00:: 08984567 1 0 -iberis%1:20:00:: 11889473 1 0 -ibero-mesornis%1:05:00:: 01517036 1 0 -ibert%1:18:00:: 11070531 1 0 -ibex%1:05:00:: 02417914 1 0 -ibid.%4:02:00:: 00255976 1 0 -ibidem%4:02:00:: 00255976 1 0 -ibis%1:05:00:: 02005790 1 0 -ibis_ibis%1:05:00:: 02006063 1 0 -ibizan_hound%1:05:00:: 02091244 1 0 -ibizan_podenco%1:05:00:: 02091244 1 0 -ibn-roshd%1:18:00:: 10829450 1 0 -ibn-sina%1:18:00:: 10829733 1 0 -ibn_al-haytham%1:18:00:: 10813986 1 0 -ibn_talal_hussein%1:18:00:: 11068196 1 0 -ibolium_privet%1:20:00:: 12308259 1 0 -ibota_privet%1:20:00:: 12308259 1 0 -ibrahim%1:18:00:: 10807487 1 0 -ibrd%1:14:00:: 08300783 1 0 -ibsen%1:18:00:: 11070644 1 0 -ibsenian%3:01:00:: 03033259 1 0 -ibuprofen%1:06:00:: 03556281 1 0 -ic%1:14:00:: 08340153 1 0 -ic%5:00:00:cardinal:00 02196012 1 0 -icaco%1:13:00:: 07758407 2 0 -icaco%1:20:00:: 12625003 1 0 -icao%1:14:00:: 08301005 1 0 -icarus%1:18:00:: 09561320 1 0 -icbm%1:06:00:: 03578251 1 3 -icc%1:14:00:: 08125993 1 0 -ice%1:06:00:: 03558176 8 0 -ice%1:06:01:: 03579982 7 0 -ice%1:06:02:: 03754295 6 0 -ice%1:13:00:: 07614198 5 0 -ice%1:13:01:: 07620822 4 0 -ice%1:17:00:: 09308398 2 1 -ice%1:21:00:: 13372123 3 0 -ice%1:27:00:: 14915184 1 22 -ice%2:30:00:: 00370921 3 0 -ice%2:30:03:: 00375579 2 0 -ice%2:35:00:: 01517175 1 0 -ice-clogged%5:00:00:frozen:00 01079143 1 0 -ice-cold%5:00:00:cold:01 01253592 1 0 -ice-cream_bean%1:20:00:: 11761836 1 0 -ice-cream_cake%1:13:00:: 07631926 1 0 -ice-cream_cone%1:13:00:: 07614730 1 0 -ice-cream_float%1:13:00:: 07923034 1 0 -ice-cream_soda%1:13:00:: 07923034 1 0 -ice-cream_sundae%1:13:00:: 07616487 1 0 -ice-free%5:00:00:unfrozen:00 01079857 1 0 -ice-hockey_player%1:18:00:: 10179291 1 0 -ice-hockey_rink%1:06:00:: 03557360 1 0 -ice-skater%1:18:00:: 10196490 1 0 -ice-skating_rink%1:06:00:: 03558176 1 0 -ice-wagon%1:06:00:: 03558841 1 0 -ice_age%1:28:00:: 15255195 1 0 -ice_ax%1:06:00:: 03556679 1 0 -ice_axe%1:06:00:: 03556679 1 0 -ice_bag%1:06:00:: 03557840 1 0 -ice_bear%1:05:00:: 02134084 1 0 -ice_cap%1:17:00:: 09308743 1 0 -ice_chest%1:06:00:: 03102654 1 1 -ice_coffee%1:13:00:: 07920540 1 0 -ice_cream%1:13:00:: 07614500 1 1 -ice_crystal%1:19:00:: 11509377 1 0 -ice_cube%1:06:00:: 03557141 1 0 -ice_field%1:17:00:: 09309046 1 0 -ice_floe%1:17:00:: 09309168 1 1 -ice_fog%1:19:00:: 11467543 1 0 -ice_hockey%1:04:00:: 00463543 1 0 -ice_hockey_rink%1:06:00:: 03557360 1 0 -ice_lolly%1:13:00:: 07615774 1 0 -ice_machine%1:06:00:: 03557590 1 0 -ice_maker%1:06:00:: 03557692 1 0 -ice_mass%1:17:00:: 09309292 1 0 -ice_milk%1:13:00:: 07615954 1 0 -ice_needle%1:19:00:: 11509377 1 0 -ice_over%2:43:00:: 02758581 1 0 -ice_pack%1:06:00:: 03557840 1 1 -ice_pack%1:17:00:: 09383901 2 0 -ice_pick%1:06:00:: 03558007 1 0 -ice_plant%1:20:00:: 11821184 1 0 -ice_rink%1:06:00:: 03558176 1 0 -ice_shelf%1:17:00:: 09432163 1 0 -ice_show%1:04:00:: 00520783 1 0 -ice_skate%1:06:00:: 03558404 1 0 -ice_skate%2:38:00:: 01937222 1 0 -ice_skating%1:04:00:: 00448640 1 0 -ice_storm%1:19:00:: 11467650 1 0 -ice_tea%1:13:00:: 07934282 1 0 -ice_tongs%1:06:00:: 03558633 1 0 -ice_up%2:43:00:: 02758581 1 0 -ice_wagon%1:06:00:: 03558841 1 0 -ice_water%1:13:00:: 07936459 1 3 -ice_yacht%1:06:00:: 03556811 1 0 -iceberg%1:13:00:: 07724269 2 0 -iceberg%1:17:00:: 09308572 1 0 -iceberg_lettuce%1:13:00:: 07724269 1 0 -iceboat%1:06:00:: 03556992 1 0 -iceboat%1:06:01:: 03556811 2 0 -icebound%5:00:00:frozen:00 01079052 1 0 -icebox%1:06:00:: 04070727 1 3 -icebox_cake%1:13:00:: 07631926 1 0 -icebreaker%1:04:00:: 00239766 2 0 -icebreaker%1:06:00:: 03556992 1 0 -icecap%1:17:00:: 09308743 1 0 -icecream%1:13:00:: 07614500 1 0 -iced-tea_spoon%1:06:00:: 03557270 1 0 -iced_coffee%1:13:00:: 07920540 1 0 -iced_tea%1:13:00:: 07934282 1 0 -icefall%1:17:00:: 09308918 1 0 -icehouse%1:06:00:: 03557512 1 0 -iceland%1:15:00:: 08953324 1 2 -iceland%1:15:01:: 08953151 2 2 -iceland_lichen%1:20:00:: 12992177 1 0 -iceland_moss%1:20:00:: 12992177 1 0 -iceland_poppy%1:20:01:: 11901294 2 0 -iceland_poppy%1:20:02:: 11901759 1 0 -iceland_spar%1:27:00:: 14916053 1 0 -icelander%1:18:00:: 09714120 1 0 -icelandic%1:10:00:: 06954183 1 1 -icelandic%3:01:00:: 03074173 1 0 -icelandic-speaking%5:00:00:communicative:00 00498439 1 1 -icelandic_krona%1:23:00:: 13681993 1 0 -icelandic_monetary_unit%1:23:00:: 13681863 1 0 -iceman%1:18:00:: 10196404 1 0 -iceman%1:18:02:: 10162016 2 0 -icepick%1:06:00:: 03558007 1 0 -icetray%1:06:00:: 03558739 1 0 -ichneumon%1:05:00:: 02137888 1 0 -ichneumon_fly%1:05:00:: 02218371 1 0 -ichneumonidae%1:05:00:: 02218235 1 0 -ichor%1:08:00:: 05417472 2 0 -ichor%1:27:00:: 14939755 1 0 -ichorous%3:01:00:: 02851709 1 0 -ichthyolatry%1:04:00:: 01046571 1 0 -ichthyologist%1:18:00:: 10196617 1 0 -ichthyology%1:09:00:: 06072912 1 0 -ichthyosaur%1:05:00:: 01724231 1 0 -ichthyosauria%1:05:00:: 01724055 1 0 -ichthyosauridae%1:05:00:: 01724470 1 0 -ichthyosaurus%1:05:00:: 01724840 1 0 -ichthyosis%1:26:00:: 14158997 1 0 -ichyostega%1:05:00:: 01628331 1 0 -icicle%1:27:00:: 14915928 1 1 -icicle_plant%1:20:00:: 11821184 1 0 -icily%4:02:00:: 00360844 1 0 -iciness%1:07:00:: 05015463 1 0 -iciness%1:07:01:: 04629604 2 0 -icing%1:04:00:: 00558181 3 0 -icing%1:13:00:: 07620822 2 0 -icing%1:22:00:: 13485270 1 0 -icing_sugar%1:13:00:: 07596160 1 0 -icing_the_puck%1:04:00:: 00558181 1 0 -icky%5:00:00:adhesive:00 00054109 2 0 -icky%5:00:00:bad:00 01127782 1 0 -icon%1:06:00:: 03931044 2 0 -icon%1:06:02:: 03558971 3 0 -icon%1:10:00:: 07269916 1 0 -iconic%3:01:00:: 02851550 1 0 -iconoclasm%1:09:00:: 05980750 1 0 -iconoclast%1:18:00:: 10196725 2 0 -iconoclast%1:18:01:: 10196845 1 0 -iconoclastic%5:00:00:destructive:00 00588207 2 0 -iconoclastic%5:00:00:unorthodox:00 01691687 1 0 -iconography%1:06:00:: 03559144 1 0 -iconolatry%1:04:00:: 01044363 1 0 -iconology%1:09:00:: 06156169 1 0 -iconoscope%1:06:00:: 03559373 1 0 -icosahedral%3:01:00:: 02851944 1 0 -icosahedron%1:25:00:: 13915883 1 0 -icsh%1:27:00:: 14749272 1 0 -ictal%3:01:00:: 02852128 1 0 -ictalurus%1:05:00:: 02519576 1 0 -ictalurus_punctatus%1:05:00:: 02519686 1 0 -icteria%1:05:00:: 01569713 1 0 -icteria_virens%1:05:00:: 01569971 1 0 -icteric%5:00:00:unhealthy:00 01177556 1 0 -icteridae%1:05:00:: 01571578 1 0 -icterogenic%3:01:00:: 02852052 1 0 -icterus%1:05:00:: 01572174 2 0 -icterus%1:26:00:: 14319684 1 0 -icterus_galbula%1:05:00:: 01572328 1 0 -icterus_galbula_bullockii%1:05:00:: 01572654 1 0 -icterus_galbula_galbula%1:05:00:: 01572489 1 0 -icterus_neonatorum%1:26:00:: 14320016 1 0 -icterus_spurius%1:05:00:: 01572782 1 0 -ictic%3:01:00:: 02852128 1 0 -ictiobus%1:05:00:: 01445305 1 0 -ictiobus_niger%1:05:00:: 01445593 1 0 -ictodosaur%1:05:00:: 01721567 1 0 -ictodosauria%1:05:00:: 01721404 1 0 -ictonyx%1:05:00:: 02444103 1 0 -ictonyx_frenata%1:05:00:: 02444384 1 0 -ictonyx_striata%1:05:00:: 02444251 1 0 -ictus%1:26:00:: 14081941 1 0 -icu%1:14:00:: 08146593 1 0 -icy%5:00:00:cold:01 01252151 2 1 -icy%5:00:00:cold:02 01258264 1 2 -icy%5:00:00:frozen:00 01079240 3 1 -icy%5:00:00:glazed:00 01120242 4 0 -id%1:09:00:: 05613794 3 0 -id%1:10:00:: 06887278 2 0 -id%1:15:00:: 09081213 1 0 -id_al-adha%1:28:00:: 15219022 1 0 -id_al-fitr%1:28:00:: 15218448 1 0 -id_est%4:02:00:: 00191579 1 0 -ida%1:14:00:: 08301155 1 0 -ida_m._tarbell%1:18:00:: 11331442 1 0 -ida_minerva_tarbell%1:18:00:: 11331442 1 0 -ida_tarbell%1:18:00:: 11331442 1 0 -idaho%1:15:00:: 09081213 1 0 -idaho_falls%1:15:00:: 09081830 1 0 -idahoan%1:18:00:: 09742844 1 0 -iddm%1:26:00:: 14118423 1 0 -idea%1:09:00:: 05833840 1 151 -idea%1:09:01:: 05982915 2 4 -idea%1:09:02:: 05803379 4 1 -idea%1:09:03:: 05837850 3 1 -idea%1:10:00:: 07029247 5 0 -ideal%1:09:00:: 05923696 1 7 -ideal%1:18:00:: 10325243 2 2 -ideal%3:01:00:: 02745284 3 0 -ideal%5:00:00:abstract:00 00012689 2 2 -ideal%5:00:00:perfect:00 01751201 1 8 -ideal_gas%1:27:00:: 14916512 1 5 -ideal_solid%1:25:00:: 13915999 1 0 -idealisation%1:04:00:: 01219075 3 0 -idealisation%1:09:00:: 05924408 2 0 -idealisation%1:22:00:: 13495636 1 0 -idealise%2:31:00:: 00692907 1 0 -idealise%2:31:01:: 00624967 2 0 -idealised%5:00:00:perfect:00 01751353 1 0 -idealism%1:07:01:: 05152696 2 0 -idealism%1:07:02:: 04870643 3 0 -idealism%1:09:00:: 05972103 1 0 -idealist%1:18:00:: 10196965 1 2 -idealistic%3:01:00:: 02745284 1 0 -idealistic%5:00:00:noble:01 01588619 2 0 -ideality%1:07:00:: 04855524 1 0 -idealization%1:04:00:: 01219075 1 1 -idealization%1:09:00:: 05924408 3 0 -idealization%1:22:00:: 13495636 2 0 -idealize%2:31:00:: 00692907 1 0 -idealize%2:31:01:: 00624967 2 0 -idealized%5:00:00:perfect:00 01751353 1 4 -ideally%4:02:00:: 00195428 1 4 -idealogue%1:18:00:: 10706812 1 0 -ideate%2:36:01:: 01636397 1 0 -ideation%1:09:00:: 05784699 1 0 -ideational%5:00:00:abstract:00 00012071 1 0 -idempotent%5:00:00:unchanged:00 00355453 1 0 -identical%3:00:00:: 00292448 3 0 -identical%5:00:00:congruent:00 00561896 5 0 -identical%5:00:00:isotropic:00 01360962 4 0 -identical%5:00:00:same:00 02064127 1 12 -identical%5:00:00:same:02 02068946 2 9 -identical_twin%1:18:00:: 10197182 1 0 -identically%4:02:00:: 00361065 1 0 -identicalness%1:07:00:: 04743024 1 0 -identifiable%3:00:00:: 01272397 1 1 -identifiably%4:02:00:: 00361217 1 0 -identification%1:04:00:: 00152018 1 10 -identification%1:07:00:: 04618581 5 0 -identification%1:09:00:: 05762998 4 0 -identification%1:10:01:: 06885083 2 3 -identification%1:26:00:: 14577046 3 0 -identification_number%1:10:00:: 06425065 1 0 -identification_particle%1:27:00:: 14916185 1 0 -identified%5:00:00:known:00 01376208 1 1 -identifier%1:10:00:: 07270601 1 0 -identify%2:31:00:: 00618878 1 32 -identify%2:31:01:: 00652346 5 2 -identify%2:31:02:: 00618451 6 2 -identify%2:31:03:: 00714531 4 4 -identify%2:31:04:: 00691944 3 6 -identify%2:32:00:: 01026095 2 7 -identikit%1:06:00:: 03559531 1 0 -identikit_picture%1:06:00:: 03559531 1 0 -identity%1:07:00:: 04618070 1 12 -identity%1:07:02:: 04743024 4 2 -identity%1:09:00:: 05763412 2 6 -identity%1:24:01:: 13786748 3 2 -identity_card%1:10:00:: 06477371 1 0 -identity_crisis%1:26:00:: 14375363 1 0 -identity_element%1:24:00:: 13786748 1 0 -identity_matrix%1:14:00:: 08269257 1 0 -identity_operator%1:24:00:: 13786748 1 0 -identity_theft%1:04:00:: 00777069 1 0 -identity_verification%1:10:00:: 06424275 1 0 -ideogram%1:10:00:: 06840648 1 0 -ideograph%1:10:00:: 06840648 1 0 -ideographic%3:01:00:: 02745453 1 0 -ideographically%4:02:00:: 00124150 1 0 -ideography%1:10:00:: 06362172 1 0 -ideologic%5:00:00:abstract:00 00012932 1 0 -ideological%3:01:00:: 02745555 1 0 -ideological%5:00:00:abstract:00 00012932 2 0 -ideological_barrier%1:09:00:: 05691492 1 0 -ideologically%4:02:00:: 00361337 1 0 -ideologist%1:18:00:: 10197392 1 1 -ideologue%1:18:00:: 10197392 1 0 -ideology%1:09:01:: 06212839 1 4 -ideology%1:09:03:: 05779568 2 1 -ides%1:28:00:: 15173974 1 0 -idesia%1:20:00:: 12380305 1 0 -idesia_polycarpa%1:20:00:: 12380305 1 0 -idf%1:14:00:: 08345613 1 0 -idiocy%1:09:00:: 05646926 1 0 -idiographic%3:00:00:: 02593735 1 0 -idiolatry%1:04:00:: 01044761 1 0 -idiolect%1:10:00:: 07156693 1 0 -idiom%1:07:00:: 04929422 3 1 -idiom%1:10:00:: 07155661 2 1 -idiom%1:10:01:: 07154330 4 0 -idiom%1:10:02:: 07081177 1 2 -idiom_neutral%1:10:00:: 06896059 1 0 -idiomatic%3:01:00:: 03004358 1 1 -idiomatic_expression%1:10:00:: 07154330 1 0 -idiomatical%3:01:00:: 03004358 1 0 -idiomatically%4:02:00:: 00361446 1 0 -idiopathic%3:01:00:: 02745739 1 0 -idiopathic_disease%1:26:00:: 14074715 1 0 -idiopathic_disorder%1:26:00:: 14074715 1 0 -idiopathic_hemochromatosis%1:26:00:: 14207256 1 0 -idiopathic_thrombocytopenic_purpura%1:26:00:: 14565417 1 0 -idiopathy%1:26:00:: 14074715 1 0 -idiosyncrasy%1:07:00:: 04764242 1 2 -idiosyncratic%5:00:00:individual:00 00493820 1 1 -idiot%1:18:00:: 10197525 1 4 -idiot_box%1:06:00:: 04405907 1 0 -idiot_light%1:10:00:: 06874688 1 0 -idiot_savant%1:18:00:: 10197780 1 0 -idiotic%5:00:00:foolish:00 02570643 2 0 -idiotic%5:00:00:insane:00 02075737 1 3 -idiotic%5:00:00:retarded:00 01840880 3 0 -idiotically%4:02:00:: 00361566 1 2 -iditarod%1:11:00:: 07460904 1 0 -iditarod_trail%1:06:00:: 03559841 1 0 -iditarod_trail_dog_sled_race%1:11:00:: 07460904 1 0 -idle%1:26:00:: 14009618 1 0 -idle%2:35:00:: 01526483 1 2 -idle%2:41:00:: 02417504 2 1 -idle%3:00:00:: 00294175 1 4 -idle%5:00:00:frivolous:00 02121424 4 0 -idle%5:00:00:inactive:03 00037188 3 1 -idle%5:00:00:irresponsible:00 01998835 5 0 -idle%5:00:00:unemployed:00 00865007 7 0 -idle%5:00:00:unprofitable:00 01872265 6 0 -idle%5:00:00:unsupported:02 02353211 2 1 -idle_pulley%1:06:00:: 03559999 1 0 -idle_talk%1:10:00:: 07137129 1 1 -idle_wheel%1:06:00:: 03559999 1 0 -idle_words%1:10:00:: 07136711 1 0 -idleness%1:04:00:: 01065441 1 2 -idleness%1:07:00:: 04637290 3 0 -idleness%1:07:01:: 05140086 2 0 -idler%1:18:00:: 10197967 1 2 -idler_pulley%1:06:00:: 03559999 1 0 -idling%1:04:00:: 01065441 1 0 -idly%4:02:00:: 00361781 1 3 -ido%1:10:00:: 06896500 1 0 -idocrase%1:27:00:: 15087904 1 0 -idol%1:06:00:: 03560161 1 2 -idol%1:09:00:: 05924519 3 0 -idol%1:18:00:: 10198437 2 1 -idol_worship%1:04:00:: 01044084 1 0 -idol_worshiper%1:18:00:: 10198602 1 0 -idolater%1:18:00:: 10198602 1 0 -idolatress%1:18:00:: 10198759 1 0 -idolatrous%3:01:00:: 02931096 1 0 -idolatrous%5:00:00:loving:00 01465922 2 0 -idolatrously%4:02:00:: 00361998 1 0 -idolatry%1:04:00:: 01044084 2 0 -idolatry%1:04:01:: 01044448 1 0 -idolisation%1:04:00:: 01043820 2 0 -idolisation%1:04:01:: 01218766 1 0 -idolise%2:37:00:: 01778017 1 0 -idolised%5:00:00:loved:00 01462124 1 0 -idoliser%1:18:00:: 10198602 2 0 -idoliser%1:18:01:: 10198832 1 0 -idolization%1:04:00:: 01043820 2 0 -idolization%1:04:01:: 01218766 1 0 -idolize%2:37:00:: 01778017 1 1 -idolized%5:00:00:loved:00 01462124 1 1 -idolizer%1:18:00:: 10198602 2 0 -idolizer%1:18:01:: 10198832 1 0 -idp%1:22:00:: 13500860 1 0 -idria_columnaris%1:20:00:: 12382233 1 0 -idun%1:18:00:: 09581338 1 0 -idyl%1:10:00:: 06379439 2 0 -idyl%1:10:02:: 07043824 1 0 -idyll%1:10:00:: 06379439 3 0 -idyll%1:10:02:: 07043824 2 0 -idyll%1:11:00:: 07307297 1 0 -idyllic%5:00:00:perfect:00 01751465 1 2 -idyllic%5:00:00:pleasant:00 01801446 2 0 -idyllically%4:02:00:: 00124268 1 0 -ie%1:10:00:: 06571538 1 0 -ie%4:02:00:: 00191579 1 0 -ied%1:06:00:: 03565565 1 0 -ieoh_ming_pei%1:18:00:: 11228153 1 0 -if_not%4:02:00:: 00045379 1 4 -ifc%1:14:00:: 08301307 1 0 -iffy%5:00:00:uncertain:03 00341655 1 0 -ig%1:27:00:: 15030481 1 0 -iga%1:27:00:: 15030853 1 0 -igbo%1:18:00:: 09738121 1 0 -igd%1:27:00:: 15031073 1 0 -ige%1:27:00:: 15031231 1 0 -igg%1:27:00:: 15031705 1 0 -igigi%1:18:00:: 09518578 1 0 -iglesias%1:18:00:: 11070855 1 0 -igloo%1:06:00:: 03560430 1 0 -iglu%1:06:00:: 03560430 1 0 -igm%1:27:00:: 15031866 1 0 -ignace_jan_paderewski%1:18:00:: 11219635 1 0 -ignace_paderewski%1:18:00:: 11219635 1 0 -ignatius%1:18:00:: 11070994 1 0 -ignatius_of_loyola%1:18:00:: 11071177 1 0 -igneous%3:00:00:: 01354925 2 0 -igneous%3:01:01:: 02852265 1 0 -igneous%5:00:00:hot:01 01248958 3 0 -igneous_rock%1:27:00:: 14931879 1 0 -ignescent%5:00:00:combustible:00 00473778 1 0 -ignis_fatuus%1:09:00:: 05896515 2 0 -ignis_fatuus%1:19:00:: 11459369 1 0 -ignitable%5:00:00:combustible:00 00473243 1 0 -ignite%2:37:00:: 01761120 3 1 -ignite%2:43:00:: 02759614 1 2 -ignite%2:43:01:: 02760622 2 1 -ignited%5:00:00:lighted:00 00475625 1 0 -igniter%1:06:00:: 03666591 2 0 -igniter%1:27:00:: 15101361 1 0 -ignitible%5:00:00:combustible:00 00473243 1 0 -ignition%1:04:00:: 00378479 3 0 -ignition%1:06:00:: 03560567 2 0 -ignition%1:22:00:: 13495873 1 0 -ignition_coil%1:06:00:: 03560860 1 0 -ignition_interlock%1:06:00:: 03579791 1 0 -ignition_key%1:06:00:: 03561047 1 1 -ignition_lock%1:06:00:: 03682877 1 0 -ignition_switch%1:06:00:: 03561169 1 0 -ignition_system%1:06:00:: 03560567 1 0 -ignitor%1:06:00:: 03666591 2 0 -ignitor%1:27:00:: 15101361 1 0 -ignobility%1:07:00:: 04873804 1 0 -ignoble%3:00:01:: 01589217 1 0 -ignoble%5:00:00:lowborn:00 01593480 2 0 -ignobleness%1:07:00:: 04873804 1 0 -ignobly%4:02:00:: 00303789 1 0 -ignominious%5:00:00:dishonorable:00 01227546 1 0 -ignominiously%4:02:00:: 00313633 1 0 -ignominiousness%1:07:00:: 04808281 1 0 -ignominy%1:26:00:: 14440137 1 0 -ignoramus%1:18:00:: 10198958 1 1 -ignorance%1:09:00:: 05988282 1 5 -ignorant%5:00:00:uninformed:00 01308894 3 0 -ignorant%5:00:01:uneducated:00 00830981 2 2 -ignorant%5:00:02:uneducated:00 00831225 1 3 -ignorantly%4:02:00:: 00362134 1 0 -ignorantness%1:09:00:: 05988743 1 0 -ignoratio_elenchi%1:09:00:: 05894460 1 0 -ignore%2:31:01:: 00595505 5 0 -ignore%2:31:03:: 00616857 4 3 -ignore%2:32:00:: 00800930 2 13 -ignore%2:32:02:: 01059564 1 17 -ignore%2:39:00:: 02119241 3 7 -ignored%5:00:00:unnoticed:00 01608656 1 0 -igor_fyodorovich_stravinsky%1:18:00:: 11321841 1 0 -igor_ivanovich_sikorsky%1:18:00:: 11300089 1 0 -igor_sikorsky%1:18:00:: 11300089 1 0 -igor_stravinsky%1:18:00:: 11321841 1 0 -igor_tamm%1:18:00:: 11330228 1 0 -igor_yevgeneevich_tamm%1:18:00:: 11330228 1 0 -iguana%1:05:00:: 01677366 1 0 -iguana_iguana%1:05:00:: 01677366 1 0 -iguania%1:05:00:: 01676313 1 0 -iguanid%1:05:00:: 01676755 1 0 -iguanid_lizard%1:05:00:: 01676755 1 0 -iguanidae%1:05:00:: 01676313 1 0 -iguanodon%1:05:00:: 01707698 1 0 -iguanodontidae%1:05:00:: 01707433 1 0 -iguassu%1:17:00:: 09309456 1 0 -iguassu_falls%1:17:00:: 09309456 1 0 -iguazu%1:17:00:: 09309456 1 0 -iguazu_falls%1:17:00:: 09309456 1 0 -ii%1:23:00:: 13743269 1 0 -ii%5:00:00:cardinal:00 02186470 1 0 -ii_chronicles%1:10:00:: 06435916 1 0 -ii_corinthians%1:10:00:: 06443658 1 0 -ii_esdras%1:10:00:: 06460167 1 0 -ii_john%1:10:00:: 06447400 1 0 -ii_kings%1:10:00:: 06435198 1 0 -ii_maccabees%1:10:00:: 06460926 1 0 -ii_peter%1:10:00:: 06447039 1 0 -ii_samuel%1:10:00:: 06434826 1 0 -ii_thessalonians%1:10:00:: 06445214 1 0 -ii_timothy%1:10:00:: 06445729 1 0 -iii%1:23:00:: 13744044 1 0 -iii%5:00:00:cardinal:00 02186580 1 0 -iii_john%1:10:00:: 06447582 1 0 -iis%1:14:00:: 08344917 1 0 -ijssel%1:17:00:: 09309666 1 0 -ijssel_river%1:17:00:: 09309666 1 0 -ijsselmeer%1:17:00:: 09309820 1 0 -ijtihad%1:10:00:: 07172117 1 0 -ike%1:18:00:: 10954966 1 0 -ikhanaton%1:18:00:: 10810923 1 0 -ikon%1:06:00:: 03931044 1 0 -ikon%1:06:02:: 03558971 2 0 -il%1:15:00:: 09082540 1 0 -il%5:00:00:cardinal:00 02191139 1 0 -il_duce%1:18:00:: 11198253 1 0 -ilama%1:13:00:: 07761777 2 0 -ilama%1:20:00:: 11694469 1 0 -ilama_tree%1:20:00:: 11694469 1 0 -ilang-ilang%1:20:00:: 11695974 2 0 -ilang-ilang%1:20:01:: 11696211 1 0 -ile-de-france%1:15:00:: 08942629 1 1 -ile-st-louis%1:15:00:: 08934067 1 0 -ileal_artery%1:08:00:: 05346714 1 0 -ileitis%1:26:00:: 14347695 1 0 -ileocecal_valve%1:08:00:: 05536638 1 0 -ileocolic_artery%1:08:00:: 05346892 1 0 -ileocolic_vein%1:08:00:: 05369566 1 0 -ileostomy%1:04:00:: 00681071 1 0 -iles_comores%1:15:00:: 08733690 1 0 -iles_marquises%1:15:00:: 08990999 1 0 -ileum%1:08:00:: 05535367 1 1 -ileus%1:26:00:: 14508149 1 0 -ilex%1:20:00:: 12756862 1 0 -ilex_cornuta%1:20:00:: 12757115 1 0 -ilex_decidua%1:20:00:: 12757303 1 0 -ilex_glabra%1:20:00:: 12757458 1 0 -ilex_paraguariensis%1:20:00:: 12757668 1 0 -iliac%3:01:00:: 02934216 1 0 -iliac_artery%1:08:00:: 05347146 1 0 -iliac_vein%1:08:00:: 05370125 1 0 -iliad%1:10:00:: 06382072 1 5 -iliamna%1:20:00:: 12181147 1 0 -iliamna_acerifolia%1:20:00:: 12181612 1 0 -iliamna_remota%1:20:00:: 12181352 1 0 -iliamna_ruvularis%1:20:00:: 12181612 1 0 -ilich_ramirez_sanchez%1:18:00:: 11201386 1 0 -ilich_sanchez%1:18:00:: 11201386 1 0 -iliolumbar_artery%1:08:00:: 05347871 1 0 -iliolumbar_vein%1:08:00:: 05370293 1 0 -ilion%1:15:00:: 08788887 1 0 -ilium%1:08:00:: 05275315 2 0 -ilium%1:15:00:: 08788887 1 0 -ilk%1:09:00:: 05845419 1 1 -ill%1:26:00:: 14055408 1 0 -ill%3:00:01:: 02541302 1 4 -ill%4:02:00:: 00011516 1 3 -ill%4:02:01:: 00011916 3 0 -ill%4:02:02:: 00013236 2 0 -ill%5:00:00:bad:00 01128010 3 1 -ill%5:00:00:harmful:00 01162267 2 1 -ill%5:00:00:hostile:01 01246004 4 0 -ill%5:00:00:unpropitious:00 00178126 5 0 -ill-advised%3:00:00:: 00068278 1 0 -ill-affected%5:00:00:discontented:00 00589960 1 0 -ill-being%1:26:00:: 14448200 1 0 -ill-bred%5:00:00:unrefined:01 01950857 1 0 -ill-breeding%1:07:00:: 04914881 1 0 -ill-chosen%5:00:00:infelicitous:00 01001180 1 0 -ill-conceived%5:00:00:foolish:00 02572267 1 1 -ill-considered%5:00:00:imprudent:00 01899742 1 0 -ill-defined%3:00:00:: 00698088 1 0 -ill-dressed%5:00:00:ungroomed:00 02428810 1 0 -ill-equipped%5:00:00:unequipped:00 01095785 1 1 -ill-famed%5:00:00:disreputable:00 01984411 1 0 -ill-fated%5:00:00:unfortunate:00 01051410 1 1 -ill-favored%5:00:00:ugly:00 00222147 1 0 -ill-favoured%5:00:00:ugly:00 00222147 1 0 -ill-fed%5:00:00:malnourished:00 02301180 1 0 -ill-fitting%5:00:00:uncomfortable:01 00480880 1 0 -ill-formed%3:00:04:: 01146207 1 0 -ill-gotten%5:00:00:illegal:00 01403012 1 0 -ill-humored%5:00:00:ill-natured:00 01137000 1 0 -ill-humoured%5:00:00:ill-natured:00 01137000 1 0 -ill-judged%5:00:00:imprudent:00 01899742 1 0 -ill-mannered%5:00:00:impolite:00 00641944 1 0 -ill-natured%3:00:00:: 01134769 1 0 -ill-omened%5:00:00:unfortunate:00 01051410 1 0 -ill-proportioned%5:00:00:unshapely:00 02141644 1 0 -ill-scented%5:00:00:malodorous:00 01053634 1 0 -ill-shapen%5:00:00:unshapely:00 02141298 1 0 -ill-smelling%3:00:00:: 01053144 1 0 -ill-sorted%5:00:00:mismatched:00 01487352 1 0 -ill-starred%5:00:00:unfortunate:00 01051410 1 3 -ill-tempered%5:00:00:ill-natured:00 01136248 1 0 -ill-timed%5:00:00:inopportune:00 01662119 1 0 -ill-treat%2:41:00:: 02516594 1 0 -ill-treated%3:00:00:: 00017352 1 0 -ill-treatment%1:04:00:: 00419908 1 0 -ill-usage%1:04:00:: 00419908 1 0 -ill-use%2:41:00:: 02516594 1 0 -ill-used%5:00:00:misused:00 02495687 1 1 -ill_at_ease%5:00:00:uncomfortable:01 00480439 1 0 -ill_fame%1:26:00:: 14439149 1 0 -ill_health%1:26:00:: 14052046 1 1 -ill_humor%1:12:00:: 07552087 1 0 -ill_humour%1:12:00:: 07552087 1 0 -ill_luck%1:26:00:: 14475405 1 0 -ill_nature%1:07:00:: 04641447 1 0 -ill_service%1:04:00:: 01209791 1 0 -ill_temper%1:12:00:: 07518132 1 0 -ill_turn%1:04:00:: 01209791 1 1 -ill_will%1:07:00:: 04658106 2 0 -ill_will%1:12:00:: 07547805 1 2 -illampu%1:17:00:: 09310011 1 0 -illation%1:09:00:: 05774614 1 0 -illative%3:01:00:: 02748952 1 0 -illative%5:00:00:deductive:00 01296816 3 0 -illative%5:00:02:deductive:00 01296961 2 0 -illecebrum%1:20:00:: 11810918 1 0 -illecebrum_verticullatum%1:20:00:: 11811059 1 0 -illegal%3:00:00:: 01401854 1 3 -illegal_possession%1:04:00:: 00810498 1 0 -illegalise%2:41:00:: 02480923 1 0 -illegality%1:07:00:: 04810327 1 0 -illegalize%2:41:00:: 02480923 1 0 -illegally%4:02:00:: 00154536 1 0 -illegibility%1:07:00:: 04822685 1 0 -illegible%3:00:00:: 01405214 1 0 -illegibly%4:02:00:: 00362455 1 0 -illegitimacy%1:07:00:: 04811476 2 0 -illegitimacy%1:26:00:: 13953215 1 1 -illegitimate%1:18:00:: 09842823 1 0 -illegitimate%3:00:00:: 01407465 2 0 -illegitimate%5:00:00:illegal:00 01403760 1 1 -illegitimate_child%1:18:00:: 09842823 1 0 -illegitimate_enterprise%1:04:00:: 00775943 1 0 -illegitimately%4:02:00:: 00362650 2 0 -illegitimately%4:02:01:: 00362998 1 0 -illiberal%5:00:00:narrow-minded:00 00288237 1 0 -illiberality%1:07:00:: 04834457 1 0 -illiberally%4:02:00:: 00380675 1 0 -illicit%3:00:00:: 01550572 1 1 -illicit%5:00:00:illegal:00 01403760 2 0 -illicitly%4:02:00:: 00362998 1 0 -illicitly%4:02:01:: 00154536 2 0 -illicitness%1:07:00:: 04811628 1 0 -illicium%1:20:00:: 11708442 1 0 -illicium_anisatum%1:20:00:: 11709045 1 0 -illicium_floridanum%1:20:00:: 11708857 1 0 -illicium_verum%1:20:00:: 11709205 1 0 -illimani%1:17:00:: 09310162 1 0 -illimitable%5:00:00:immeasurable:00 01499269 1 0 -illinois%1:10:00:: 06910134 3 0 -illinois%1:15:00:: 09082540 1 8 -illinois%1:18:00:: 09657615 2 0 -illinois_river%1:17:00:: 09310314 1 0 -illinoisan%1:18:00:: 09742927 1 0 -illiteracy%1:09:00:: 05649256 2 0 -illiteracy%1:09:01:: 05989386 1 0 -illiterate%1:18:00:: 10199103 1 0 -illiterate%3:00:00:: 01421679 1 2 -illiterate%3:00:01:: 01421491 3 0 -illiterate%5:00:00:uneducated:00 00830981 2 2 -illiterate_person%1:18:00:: 10199103 1 0 -illness%1:26:00:: 14061805 1 6 -illogic%1:07:00:: 04785669 1 0 -illogical%3:00:00:: 01430847 1 0 -illogical%5:00:00:incoherent:00 00465221 2 0 -illogicality%1:07:00:: 04785669 1 0 -illogically%4:02:00:: 00363602 1 0 -illogicalness%1:07:00:: 04785669 1 0 -illume%2:30:00:: 00291873 1 0 -illuminance%1:07:00:: 05018542 1 0 -illuminant%1:27:00:: 14687513 1 0 -illuminate%2:30:03:: 00291873 1 9 -illuminate%2:31:00:: 00621058 2 5 -illuminate%2:36:00:: 01683758 3 0 -illuminated%5:00:00:light:06 00271580 1 0 -illuminating%3:00:00:: 01325777 1 3 -illumination%1:06:00:: 03769397 5 0 -illumination%1:07:00:: 05018542 4 0 -illumination%1:10:00:: 07171206 3 0 -illumination%1:26:00:: 13983147 2 1 -illumination%1:26:01:: 14563784 1 2 -illumination_unit%1:23:00:: 13639647 1 0 -illumine%2:30:00:: 00291873 1 6 -illusion%1:04:00:: 00754767 3 1 -illusion%1:04:02:: 00099951 4 0 -illusion%1:09:00:: 05896059 2 6 -illusion%1:09:01:: 05939636 1 23 -illusional%5:00:00:unreal:00 01937187 1 0 -illusionary%5:00:00:unreal:00 01937187 1 1 -illusionist%1:18:00:: 10756433 1 0 -illusionist%1:18:01:: 10280674 2 0 -illusive%5:00:00:unreal:00 01937390 1 0 -illusory%5:00:00:unreal:00 01937390 1 1 -illustrate%2:32:00:: 01021128 1 33 -illustrate%2:36:00:: 01687401 2 5 -illustrate%2:36:01:: 01668421 3 3 -illustration%1:06:00:: 03561345 4 1 -illustration%1:09:02:: 05820620 3 1 -illustration%1:10:00:: 06999233 1 4 -illustration%1:10:01:: 06880533 2 3 -illustrative%5:00:00:informative:00 01305123 1 2 -illustrative%5:00:00:instructive:00 01323962 2 0 -illustrator%1:18:00:: 09812068 1 2 -illustrious%5:00:00:glorious:00 01121989 2 1 -illustrious%5:00:00:known:00 01375831 1 1 -illustriously%4:02:00:: 00363878 1 0 -illustriousness%1:07:00:: 05169601 1 0 -illyria%1:15:00:: 08704665 1 0 -illyrian%1:10:00:: 06942874 1 0 -ilmen%1:17:00:: 09331654 1 0 -ilmenite%1:27:00:: 14678551 1 0 -ilo%1:14:00:: 08301525 1 0 -ilosone%1:06:00:: 03295357 1 0 -ilx%5:00:00:cardinal:00 02192090 1 0 -ilxx%5:00:00:cardinal:00 02193046 1 0 -ilxxx%5:00:00:cardinal:00 02194051 1 0 -ilya_ehrenberg%1:18:00:: 10953473 1 0 -ilya_grigorievich_ehrenberg%1:18:00:: 10953473 1 0 -ilya_ilich_metchnikov%1:18:00:: 11177151 1 0 -image%1:06:00:: 03931044 3 8 -image%1:06:01:: 03265874 9 0 -image%1:07:00:: 04677716 2 9 -image%1:07:01:: 04675777 8 0 -image%1:09:00:: 05928118 1 31 -image%1:09:02:: 05937524 4 2 -image%1:10:00:: 07105475 5 1 -image%1:14:00:: 08000304 7 0 -image%1:18:00:: 10027246 6 0 -image%2:36:00:: 01635432 2 0 -image%2:39:03:: 02151603 1 0 -image_breaker%1:18:00:: 10196845 1 0 -image_compression%1:04:00:: 00616279 1 0 -image_orthicon%1:06:00:: 03856728 1 1 -image_scanner%1:06:00:: 04143140 1 0 -imagery%1:09:00:: 05767733 1 4 -imaginable%5:00:00:thinkable:00 02418249 1 0 -imaginary%1:23:00:: 13729428 1 0 -imaginary%5:00:00:unreal:00 01936528 1 7 -imaginary_being%1:18:00:: 09483738 1 0 -imaginary_creature%1:18:00:: 09483738 1 0 -imaginary_number%1:23:00:: 13729428 1 0 -imaginary_part%1:23:00:: 13730189 1 0 -imaginary_part_of_a_complex_number%1:23:00:: 13730189 1 0 -imaginary_place%1:09:00:: 05625879 1 0 -imagination%1:09:01:: 05625465 1 16 -imagination%1:09:02:: 05767733 2 9 -imagination%1:09:03:: 05633860 3 4 -imagination_image%1:09:00:: 05928391 1 0 -imaginative%5:00:00:creative:00 00643863 1 3 -imaginative_comparison%1:24:00:: 13853947 1 0 -imaginatively%4:02:00:: 00208934 1 1 -imaginativeness%1:09:00:: 05625465 1 0 -imagine%2:31:01:: 00631737 2 11 -imagine%2:36:00:: 01636397 1 66 -imaging%1:04:00:: 00901083 2 0 -imaging%1:09:00:: 05767733 1 1 -imagism%1:14:00:: 08468499 1 0 -imago%1:05:00:: 02312912 2 0 -imago%1:09:00:: 05938014 1 0 -imam%1:18:00:: 10199251 1 0 -imamu_amiri_baraka%1:18:00:: 10834011 1 0 -imaret%1:06:00:: 03561573 1 0 -imaum%1:18:00:: 10199251 1 0 -imavate%1:06:00:: 03561889 1 0 -imbalance%1:07:00:: 05065717 2 0 -imbalance%1:26:00:: 14004149 1 1 -imbalanced%3:00:00:: 00894757 1 0 -imbauba%1:20:00:: 12404729 1 0 -imbecile%1:18:00:: 10197525 1 2 -imbecile%5:00:00:retarded:00 01840880 1 0 -imbecilic%5:00:00:retarded:00 01840880 1 0 -imbecility%1:04:00:: 01248075 2 0 -imbecility%1:09:00:: 05647015 1 0 -imbed%2:35:00:: 01528821 1 3 -imbibe%2:31:00:: 00602510 4 0 -imbibe%2:34:00:: 01170052 3 0 -imbibe%2:35:00:: 01540042 2 0 -imbibe%2:35:01:: 01539063 1 1 -imbiber%1:18:00:: 10034201 1 0 -imbibing%1:04:00:: 00843128 1 0 -imbibition%1:04:00:: 00843128 2 0 -imbibition%1:22:00:: 13496017 1 0 -imbricate%2:42:00:: 02689008 2 0 -imbricate%2:42:01:: 02689146 1 0 -imbricate%5:00:00:rough:00 02241078 1 0 -imbricated%5:00:00:rough:00 02241078 1 0 -imbrication%1:06:00:: 03561657 1 0 -imbroglio%1:10:00:: 07174785 2 0 -imbroglio%1:26:00:: 13936153 1 0 -imbrue%2:30:00:: 00498163 1 0 -imbue%2:30:00:: 00287735 3 0 -imbue%2:30:01:: 00456151 2 0 -imbue%2:35:00:: 01229071 1 0 -imf%1:14:00:: 08301871 1 0 -imidazole%1:27:00:: 14916670 1 0 -imide%1:27:00:: 15110666 1 0 -iminazole%1:27:00:: 14916670 1 0 -imipramine%1:06:00:: 03561889 1 0 -imitate%2:36:00:: 01742886 1 4 -imitate%2:36:03:: 01694263 3 0 -imitate%2:42:00:: 02674879 2 2 -imitation%1:04:00:: 01020936 3 4 -imitation%1:06:00:: 03562126 2 4 -imitation%1:09:00:: 05962602 1 11 -imitation%1:10:00:: 06780069 4 0 -imitation%5:00:02:artificial:00 01573238 1 2 -imitation_leather%1:06:00:: 03653110 1 0 -imitative%3:00:00:: 01216456 1 2 -imitative%3:00:02:: 01217579 2 0 -imitative%3:00:04:: 01116380 3 0 -imitative_electronic_deception%1:04:00:: 01251923 1 0 -imitator%1:18:00:: 09964411 2 0 -imitator%1:18:01:: 10200365 1 0 -immaculate%5:00:00:clean:01 00418364 1 1 -immaculate%5:00:00:perfect:00 01750847 3 0 -immaculate%5:00:00:pure:01 01905140 2 0 -immaculate_conception%1:10:00:: 06790557 2 0 -immaculate_conception%1:28:00:: 15195259 1 0 -immaculate_conception_of_the_virgin_mary%1:10:00:: 06790557 1 0 -immaculately%4:02:00:: 00364030 1 0 -immaculateness%1:26:00:: 14496563 1 0 -immanence%1:26:00:: 13957974 1 0 -immanency%1:26:00:: 13957974 1 0 -immanent%3:00:00:: 01273910 1 0 -immanent%5:00:00:distributive:00 00468574 2 0 -immanuel_kant%1:18:00:: 11096508 1 0 -immaterial%3:00:01:: 00627410 3 0 -immaterial%3:00:02:: 01488066 1 1 -immaterial%3:00:04:: 00630802 2 0 -immaterial%5:00:00:irrelevant:00 01976532 4 0 -immaterial%5:00:00:unimportant:00 01280576 5 0 -immaterialise%2:30:00:: 00547802 1 0 -immateriality%1:07:00:: 04761517 2 0 -immateriality%1:24:00:: 13796216 1 0 -immaterialize%2:30:00:: 00547802 1 0 -immature%3:00:01:: 01489722 4 0 -immature%3:00:02:: 01492394 1 2 -immature%3:00:03:: 01646941 2 0 -immature%3:00:04:: 01096471 5 0 -immature%3:00:06:: 01493897 3 0 -immaturely%4:02:00:: 00383798 1 0 -immatureness%1:26:00:: 14425974 1 0 -immaturity%1:26:00:: 14425974 1 0 -immeasurable%3:00:00:: 01498957 1 0 -immeasurable%5:00:00:incalculable:00 00302436 2 0 -immeasurably%4:02:00:: 00398015 1 0 -immeasurably%4:02:01:: 00225264 2 0 -immediacy%1:07:01:: 05059525 3 1 -immediacy%1:07:02:: 04918767 1 6 -immediacy%1:09:00:: 05708322 2 1 -immediate%3:00:00:: 00770316 3 3 -immediate%5:00:00:close:01 00449079 2 6 -immediate%5:00:00:fast:01 00978754 5 0 -immediate%5:00:00:present:01 01731882 1 11 -immediate%5:00:00:proximate:00 01579853 4 2 -immediate_allergy%1:26:00:: 14532250 1 0 -immediate_apprehension%1:09:00:: 05708322 1 0 -immediate_constituent%1:10:00:: 06313300 1 0 -immediate_memory%1:09:00:: 05760611 1 0 -immediate_payment%1:21:00:: 13386465 1 0 -immediately%4:02:00:: 00048739 1 46 -immediately%4:02:03:: 00504043 2 5 -immediately%4:02:05:: 00504153 3 0 -immediateness%1:07:01:: 05059525 1 0 -immediateness%1:07:02:: 04918767 2 0 -immemorial%5:00:00:old:01 01639973 1 0 -immense%5:00:01:large:00 01387319 1 5 -immensely%4:02:01:: 00005779 1 3 -immenseness%1:07:00:: 05104548 1 0 -immensity%1:07:00:: 05104548 1 1 -immensurable%3:00:00:: 01498957 1 0 -immerse%2:31:00:: 00601043 2 1 -immerse%2:31:01:: 00601378 4 0 -immerse%2:35:00:: 01577635 1 1 -immerse%2:35:01:: 01582409 3 0 -immersion%1:04:00:: 01038485 4 0 -immersion%1:04:01:: 00277569 5 0 -immersion%1:09:00:: 05704266 3 0 -immersion%1:11:00:: 07364115 1 0 -immersion%1:11:01:: 07322341 2 0 -immersion_foot%1:26:00:: 14299480 1 0 -immersion_heater%1:06:00:: 03562408 1 0 -immigrant%1:18:00:: 10199489 1 5 -immigrant_class%1:14:00:: 08416137 1 1 -immigrate%2:30:00:: 00413432 3 0 -immigrate%2:30:01:: 00415967 1 0 -immigrate%2:30:02:: 00413704 2 0 -immigration%1:04:00:: 00056311 1 1 -immigration%1:14:00:: 08413834 2 0 -immigration_and_naturalization_service%1:14:00:: 08136502 1 0 -imminence%1:26:00:: 14030820 1 1 -imminency%1:26:00:: 14030820 1 0 -imminent%5:00:00:close:01 00448314 1 1 -imminent_abortion%1:04:00:: 00230824 1 0 -imminently%4:02:00:: 00500759 1 0 -imminentness%1:26:00:: 14030820 1 0 -immingle%2:35:00:: 01462468 1 0 -immiscible%3:00:00:: 00509735 1 0 -immix%2:30:00:: 00394813 1 0 -immobile%3:00:00:: 01525116 1 0 -immobile%5:00:00:fixed:00 01059711 2 0 -immobilisation%1:04:00:: 01146288 2 0 -immobilisation%1:04:01:: 01260309 1 0 -immobilise%2:30:00:: 00269140 6 0 -immobilise%2:30:01:: 00269423 5 0 -immobilise%2:30:03:: 00269889 4 0 -immobilise%2:33:00:: 01121508 3 0 -immobilise%2:35:00:: 01207149 2 0 -immobilise%2:40:00:: 02214864 1 0 -immobility%1:07:00:: 04776299 2 0 -immobility%1:26:00:: 14006490 1 1 -immobilization%1:04:00:: 01146288 2 0 -immobilization%1:04:01:: 01260309 1 0 -immobilize%2:30:00:: 00269140 6 0 -immobilize%2:30:01:: 00269423 5 0 -immobilize%2:30:03:: 00269889 4 0 -immobilize%2:33:00:: 01121508 3 0 -immobilize%2:35:00:: 01207149 2 0 -immobilize%2:40:00:: 02214864 1 0 -immobilizing%1:04:00:: 01146288 1 0 -immoderate%3:00:00:: 01533120 1 0 -immoderately%4:02:00:: 00215373 1 0 -immoderately%4:02:02:: 00036068 2 0 -immoderateness%1:07:00:: 05118251 1 0 -immoderation%1:07:00:: 05118251 1 0 -immodest%3:00:01:: 01538858 2 0 -immodest%3:00:02:: 01539642 1 0 -immodestly%4:02:00:: 00239402 1 0 -immodesty%1:04:00:: 00737894 2 0 -immodesty%1:07:00:: 04903136 1 0 -immolate%2:40:00:: 02325736 1 0 -immolation%1:04:00:: 00227969 1 0 -immoral%3:00:00:: 01549291 1 2 -immoral%5:00:00:wrong:01 02036077 2 2 -immorality%1:04:00:: 00745637 2 0 -immorality%1:07:00:: 04850589 1 0 -immorally%4:02:00:: 00364623 1 0 -immortal%1:18:00:: 09505418 2 0 -immortal%1:18:02:: 10199644 1 0 -immortal%3:00:00:: 01557903 1 5 -immortalise%2:30:00:: 00553208 2 0 -immortalise%2:31:00:: 00612042 1 0 -immortality%1:07:00:: 05056102 1 14 -immortality%1:28:01:: 15144094 2 0 -immortalize%2:30:00:: 00553208 2 0 -immortalize%2:31:00:: 00612042 1 0 -immortelle%1:20:00:: 12033709 1 0 -immotile%5:00:00:immobile:00 01525502 1 0 -immotility%1:07:00:: 04776453 1 0 -immovability%1:07:00:: 04776699 1 0 -immovable%1:21:00:: 13246475 1 0 -immovable%5:00:00:immobile:00 01525320 1 0 -immovable_bandage%1:06:00:: 03562565 1 0 -immovableness%1:07:00:: 04776699 1 0 -immovably%4:02:00:: 00364221 1 0 -immoveable%5:00:00:immobile:00 01525320 1 0 -immune%1:18:00:: 10199783 1 0 -immune%3:01:00:: 02745862 1 0 -immune%5:00:00:exempt:00 02365900 2 0 -immune%5:00:00:unaffected:00 00072281 4 0 -immune%5:00:00:unsusceptible:00 02363614 3 0 -immune_carrier%1:18:00:: 09897350 1 0 -immune_gamma_globulin%1:27:00:: 15030481 1 0 -immune_globulin%1:27:00:: 15030481 1 0 -immune_reaction%1:04:00:: 00860434 1 0 -immune_response%1:04:00:: 00860434 1 0 -immune_serum_globulin%1:27:00:: 15030481 1 0 -immune_suppressant_drug%1:06:00:: 03562958 1 0 -immune_system%1:08:00:: 05460870 1 0 -immunisation%1:04:00:: 00828990 1 0 -immunise%2:29:00:: 00086835 2 0 -immunise%2:33:00:: 01128778 1 0 -immunised%5:00:00:unsusceptible:00 02363811 1 0 -immunity%1:04:00:: 00213903 4 0 -immunity%1:07:00:: 05033906 3 0 -immunity%1:26:00:: 14526764 1 5 -immunity%1:26:01:: 14527171 2 0 -immunization%1:04:00:: 00828990 1 0 -immunize%2:29:00:: 00086835 2 0 -immunize%2:33:00:: 01128778 1 0 -immunized%5:00:00:unsusceptible:00 02363811 1 0 -immunizing_agent%1:06:00:: 03562739 1 0 -immunoassay%1:09:00:: 05740560 1 0 -immunochemical%3:01:00:: 02745991 1 0 -immunochemical_assay%1:09:00:: 05740560 1 0 -immunochemistry%1:09:00:: 06051925 1 0 -immunocompetence%1:26:00:: 13974144 1 0 -immunocompetent%3:00:00:: 02595469 1 0 -immunocompromised%3:01:00:: 02746103 1 0 -immunodeficiency%1:26:00:: 13974317 1 0 -immunodeficient%3:00:00:: 02595647 1 0 -immunoelectrophoresis%1:22:00:: 13496167 1 1 -immunofluorescence%1:09:00:: 05666324 1 0 -immunogen%1:06:00:: 03562739 1 0 -immunogenic%5:00:00:unsusceptible:00 02363939 1 0 -immunogenicity%1:26:00:: 14527430 1 0 -immunoglobulin%1:27:00:: 15030481 1 0 -immunoglobulin_a%1:27:00:: 15030853 1 0 -immunoglobulin_d%1:27:00:: 15031073 1 0 -immunoglobulin_e%1:27:00:: 15031231 1 0 -immunoglobulin_g%1:27:00:: 15031705 1 0 -immunoglobulin_m%1:27:00:: 15031866 1 0 -immunohistochemistry%1:04:00:: 00792142 1 0 -immunologic%3:01:00:: 02746290 1 0 -immunologic_response%1:04:00:: 00860434 1 0 -immunological%3:01:00:: 02746290 1 0 -immunological_disorder%1:26:00:: 13973990 1 0 -immunologically%4:02:00:: 00513831 1 0 -immunologist%1:18:00:: 10199902 1 0 -immunology%1:09:00:: 06051542 1 0 -immunopathology%1:09:00:: 06052165 1 0 -immunosuppressant%1:06:00:: 03562958 1 0 -immunosuppressed%3:01:00:: 02746446 1 0 -immunosuppression%1:26:00:: 13974620 1 0 -immunosuppressive%1:06:00:: 03562958 1 0 -immunosuppressive%3:01:00:: 02746555 1 0 -immunosuppressive_drug%1:06:00:: 03562958 1 0 -immunosuppressor%1:06:00:: 03562958 1 0 -immunotherapeutic%3:01:00:: 02746724 1 0 -immunotherapy%1:04:00:: 00663333 1 0 -immure%2:41:00:: 02494356 1 0 -immurement%1:26:00:: 13999206 1 0 -immutability%1:07:00:: 04741807 1 0 -immutable%3:00:00:: 00356648 1 0 -immutableness%1:07:00:: 04741807 1 0 -immutably%4:02:00:: 00482810 1 0 -imo%1:14:00:: 08301709 1 0 -imogene_coca%1:18:00:: 10903413 1 0 -imou_pine%1:20:00:: 11654293 1 0 -imp%1:18:00:: 10200047 2 0 -imp%1:18:01:: 09540739 1 1 -impact%1:04:00:: 00157957 3 1 -impact%1:04:01:: 01172252 4 0 -impact%1:11:00:: 07338552 1 11 -impact%1:19:00:: 11414411 2 6 -impact%2:30:00:: 00137313 2 0 -impact%2:35:01:: 01343482 1 0 -impact_printer%1:06:00:: 03563200 1 0 -impacted%5:00:00:compact:00 00502809 1 1 -impacted_fracture%1:26:00:: 14293985 1 0 -impacted_tooth%1:26:00:: 14060417 1 0 -impaction%1:04:00:: 00126447 4 0 -impaction%1:26:00:: 14060417 3 0 -impaction%1:26:01:: 14060575 2 0 -impaction%1:26:02:: 14577331 1 0 -impair%2:30:00:: 00262881 1 4 -impair%2:30:01:: 00477941 2 3 -impaired%3:00:00:: 01274261 1 1 -impaired%5:00:00:unfit:01 01018264 2 0 -impairer%1:17:00:: 09310460 1 0 -impairment%1:04:00:: 00403334 4 0 -impairment%1:04:01:: 00272878 5 0 -impairment%1:11:00:: 07420770 1 1 -impairment%1:26:00:: 14548343 3 0 -impairment%1:26:01:: 14561618 2 0 -impala%1:05:00:: 02422699 1 0 -impala_lily%1:20:00:: 11769176 1 0 -impale%2:35:00:: 01444326 1 2 -impale%2:35:01:: 01572003 2 0 -impalement%1:04:00:: 00420877 1 0 -impalpability%1:07:00:: 04760296 1 0 -impalpable%3:00:00:: 01717669 2 0 -impalpable%3:00:04:: 02391867 1 0 -impalpable%5:00:00:imperceptible:00 01748716 3 0 -impalpably%4:02:00:: 00379556 1 0 -impanel%2:31:00:: 00625963 2 0 -impanel%2:41:00:: 02472703 1 0 -imparipinnate%5:00:00:compound:00 02172995 1 0 -impart%2:38:00:: 02079933 3 0 -impart%2:40:00:: 02296153 1 7 -impart%2:40:01:: 02324478 2 1 -impartation%1:10:00:: 06252954 1 0 -impartial%3:00:00:: 01723308 1 1 -impartial%3:00:04:: 00286214 2 0 -impartiality%1:09:00:: 06202686 1 0 -impartially%4:02:00:: 00364359 1 0 -imparting%1:10:00:: 06252954 1 0 -impassable%3:00:00:: 01725273 1 1 -impasse%1:06:00:: 02851540 2 0 -impasse%1:26:00:: 14015361 1 2 -impassioned%5:00:00:passionate:00 01726235 1 4 -impassive%5:00:00:uncommunicative:00 00501313 2 0 -impassive%5:00:00:unemotional:00 00857560 1 0 -impassively%4:02:00:: 00364794 1 0 -impassiveness%1:12:00:: 07483782 1 0 -impassivity%1:12:00:: 07483782 1 0 -impasto%1:04:00:: 00937250 1 0 -impatience%1:07:00:: 04642596 3 0 -impatience%1:12:00:: 07514071 2 1 -impatience%1:26:00:: 14407283 1 4 -impatiens_capensis%1:20:00:: 12684379 1 0 -impatient%3:00:00:: 01737241 1 5 -impatient%5:00:00:eager:00 00811536 2 2 -impatiently%4:02:00:: 00173498 1 6 -impeach%2:32:00:: 00842989 3 0 -impeach%2:32:01:: 00844744 2 0 -impeach%2:32:03:: 00867843 1 0 -impeachability%1:26:00:: 13991688 1 0 -impeachment%1:10:00:: 07235790 1 0 -impeccability%1:07:00:: 04826485 2 0 -impeccability%1:07:01:: 04899573 1 0 -impeccable%5:00:00:perfect:00 01750847 1 2 -impeccable%5:00:00:virtuous:00 02513521 2 0 -impeccably%4:02:00:: 00183612 1 2 -impeccant%5:00:00:virtuous:00 02513614 1 0 -impecunious%5:00:00:poor:00 02023661 1 0 -impecuniousness%1:26:00:: 14494186 1 0 -impedance%1:19:00:: 11503968 1 0 -impede%2:35:00:: 01476483 2 1 -impede%2:41:00:: 02451370 1 2 -impeded%5:00:00:obstructed:00 01621680 1 0 -impediment%1:06:00:: 03839993 2 0 -impediment%1:09:00:: 05689249 1 0 -impedimenta%1:06:00:: 03563358 2 0 -impedimenta%1:06:01:: 03839993 1 0 -impeding%5:00:00:preventive:00 01764351 1 0 -impel%2:35:00:: 01511706 2 0 -impel%2:36:00:: 01650425 1 1 -impelled%5:00:00:motivated:00 01558749 1 1 -impellent%5:00:00:forceful:00 00842550 1 0 -impeller%1:06:00:: 03563460 1 0 -impelling%5:00:00:effective:00 00835122 1 0 -impend%2:42:00:: 02726884 1 0 -impendence%1:26:00:: 14030820 1 0 -impendency%1:26:00:: 14030820 1 0 -impendent%5:00:00:close:01 00448314 1 0 -impending%5:00:00:close:01 00448314 1 4 -impenetrability%1:07:00:: 04942516 1 0 -impenetrability%1:07:01:: 04822870 2 0 -impenetrable%3:00:00:: 01771632 1 0 -impenetrable%5:00:00:incomprehensible:00 00534918 3 0 -impenetrable%5:00:00:thick:02 02416390 2 0 -impenetrableness%1:07:00:: 04822870 1 0 -impenitence%1:07:00:: 04863358 1 0 -impenitency%1:07:00:: 04863358 1 0 -impenitent%3:00:00:: 01743909 1 0 -impenitent%5:00:00:unregenerate:00 01957855 2 0 -impenitently%4:02:00:: 00364916 1 0 -imperative%1:04:00:: 01131330 2 0 -imperative%1:24:00:: 13802306 1 0 -imperative%3:00:00:: 00712419 1 2 -imperative%3:01:00:: 03094404 2 0 -imperative_form%1:24:00:: 13802306 1 0 -imperative_mood%1:24:00:: 13802306 1 0 -imperatively%4:02:00:: 00365284 1 0 -imperativeness%1:07:00:: 05172131 2 0 -imperativeness%1:26:00:: 14451349 1 0 -imperceptibility%1:07:00:: 05019339 1 0 -imperceptible%3:00:00:: 01748318 1 0 -imperceptibly%4:02:00:: 00365414 1 1 -imperfect%1:24:00:: 13805734 1 0 -imperfect%3:00:00:: 01752167 1 2 -imperfect%5:00:00:human:00 01259391 2 1 -imperfect_tense%1:24:00:: 13805734 1 0 -imperfectibility%1:09:00:: 05648011 1 0 -imperfectible%5:00:00:imperfect:00 01753140 1 0 -imperfection%1:26:00:: 14462666 1 0 -imperfective%1:24:00:: 13805020 1 0 -imperfective_aspect%1:24:00:: 13805020 1 0 -imperfectly%4:02:00:: 00010047 1 2 -imperfectness%1:26:00:: 14462666 1 0 -imperforate%5:00:00:uncut:01 00662782 1 0 -imperforate_anus%1:08:00:: 05538338 1 0 -imperforate_hymen%1:08:00:: 05522148 1 0 -imperial%1:06:00:: 03563611 2 0 -imperial%1:08:00:: 05261999 1 0 -imperial%3:01:00:: 02746897 3 0 -imperial%3:01:01:: 02747036 1 1 -imperial%3:01:02:: 02747246 2 0 -imperial%5:00:00:noble:02 01591394 4 0 -imperial_beard%1:08:00:: 05261999 1 0 -imperial_capacity_unit%1:23:00:: 13615557 1 0 -imperial_decree%1:10:00:: 06541167 1 0 -imperial_elephant%1:05:00:: 02505485 1 0 -imperial_gallon%1:23:00:: 13622209 1 0 -imperial_japanese_morning_glory%1:20:00:: 12828977 1 0 -imperial_mammoth%1:05:00:: 02505485 1 0 -imperial_moth%1:05:00:: 02302244 1 0 -imperialism%1:04:00:: 00804909 3 0 -imperialism%1:09:00:: 06218308 2 0 -imperialism%1:10:00:: 06661396 1 2 -imperialist%1:18:00:: 10200246 1 0 -imperialist%3:01:00:: 03074368 1 0 -imperialistic%3:01:00:: 03074368 1 0 -imperially%4:02:00:: 00142765 1 0 -imperil%2:42:00:: 02697120 1 1 -imperious%5:00:00:proud:00 01891109 1 0 -imperiously%4:02:00:: 00365868 1 0 -imperiousness%1:07:00:: 04888788 1 0 -imperishability%1:07:00:: 05054537 1 0 -imperishable%3:00:00:: 01753922 1 0 -imperishable%5:00:00:permanent:00 01754873 2 0 -imperishableness%1:07:00:: 05054537 1 0 -imperishingness%1:07:00:: 05054537 1 0 -imperium%1:07:00:: 05197945 2 0 -imperium%1:15:00:: 08557482 1 0 -impermanence%1:07:00:: 05054863 1 0 -impermanency%1:07:00:: 05054863 1 0 -impermanent%3:00:00:: 01755627 1 0 -impermanent%5:00:00:finite:00 01007120 2 0 -impermeability%1:07:00:: 04941942 1 0 -impermeable%3:00:00:: 01772609 1 0 -impermeableness%1:07:00:: 04941942 1 0 -impermissibility%1:07:00:: 04794408 1 0 -impermissible%3:00:00:: 01761186 1 0 -impermissible%5:00:00:inadmissible:00 01762748 2 0 -impermissibly%4:02:00:: 00087037 1 0 -impersonal%3:00:00:: 01769565 1 6 -impersonal%5:00:00:objective:00 01615625 2 1 -impersonally%4:02:00:: 00366135 1 0 -impersonally%4:02:01:: 00365980 2 0 -impersonate%2:32:00:: 00837288 3 0 -impersonate%2:32:01:: 00849788 2 0 -impersonate%2:36:00:: 01723690 1 2 -impersonation%1:04:00:: 00549284 3 0 -impersonation%1:04:01:: 00756331 2 0 -impersonation%1:10:00:: 06780069 1 0 -impersonator%1:18:00:: 10200365 1 0 -impertinence%1:07:00:: 04649651 3 0 -impertinence%1:07:01:: 04915866 2 0 -impertinence%1:10:00:: 06721813 1 0 -impertinent%5:00:00:forward:02 00205295 3 0 -impertinent%5:00:00:irrelevant:00 01976532 2 0 -impertinent%5:00:00:spirited:00 02280090 1 0 -impertinently%4:02:00:: 00366490 1 0 -imperturbability%1:12:00:: 07515328 1 0 -imperturbable%5:00:00:composed:00 00530047 1 0 -imperturbableness%1:12:00:: 07515328 1 0 -imperviable%3:00:00:: 01773665 1 0 -impervious%3:00:00:: 01773665 1 1 -imperviousness%1:07:00:: 04942516 1 0 -impetiginous%3:01:00:: 02747371 1 0 -impetigo%1:26:00:: 14227613 1 0 -impetuosity%1:07:00:: 04662730 1 0 -impetuous%5:00:00:forceful:00 00842704 2 0 -impetuous%5:00:00:incautious:00 00326608 1 2 -impetuously%4:02:00:: 00366778 1 0 -impetuousness%1:07:00:: 04662730 1 0 -impetus%1:04:00:: 00104249 2 0 -impetus%1:19:00:: 11447851 1 3 -impiety%1:07:00:: 04828255 1 0 -impinge%2:38:00:: 01993352 2 0 -impinge%2:41:10:: 02569790 1 1 -impinge_on%2:35:00:: 01236164 1 2 -impingement%1:04:00:: 00157957 1 0 -impingement%1:04:01:: 00126447 2 0 -impinging%1:11:00:: 07339329 1 3 -impious%3:00:00:: 01782519 1 2 -impious%5:00:00:disrespectful:00 01995863 2 0 -impiously%4:02:00:: 00366975 1 0 -impiousness%1:07:00:: 04828255 1 0 -impish%5:00:00:playful:00 02122715 1 0 -impishly%4:02:00:: 00367106 1 0 -impishness%1:07:00:: 04650010 1 0 -implacable%3:00:00:: 01785180 1 2 -implant%1:06:00:: 03563710 1 0 -implant%2:31:00:: 00734790 3 0 -implant%2:35:00:: 01528821 1 1 -implant%2:35:02:: 01290730 2 0 -implantation%1:04:00:: 01052618 2 0 -implantation%1:04:01:: 00677808 3 0 -implantation%1:22:00:: 13496286 1 0 -implanted%5:00:00:established:00 01635633 1 0 -implausibility%1:07:00:: 04784322 1 0 -implausible%3:00:00:: 01799957 1 0 -implausible%5:00:00:unlikely:00 01412721 2 0 -implausibleness%1:07:00:: 04784322 1 0 -implausibly%4:02:00:: 00295825 1 0 -implement%1:06:00:: 03563967 1 2 -implement%2:30:00:: 00486018 3 2 -implement%2:41:00:: 02560164 2 2 -implement%2:41:01:: 02408965 1 3 -implemental%5:00:00:helpful:00 01196775 1 0 -implementation%1:04:00:: 00044150 2 1 -implementation%1:04:01:: 01127379 1 2 -implemented%3:00:02:: 00557478 1 0 -implements_of_war%1:06:00:: 04566257 1 0 -implicate%2:42:00:: 02634808 2 0 -implicate%2:42:01:: 02677332 1 0 -implicated%5:00:00:involved:00 01516346 1 1 -implication%1:09:00:: 05920791 2 6 -implication%1:09:01:: 05780885 1 9 -implication%1:10:00:: 07238102 3 1 -implication%1:24:00:: 13793776 5 0 -implication%1:24:01:: 13860281 4 0 -implicational%3:01:00:: 03094239 1 0 -implicative%5:00:00:connotative:00 00723542 1 0 -implicit%3:00:00:: 00941485 1 3 -implicit%5:00:00:absolute:00 00005599 2 0 -implicit_in%5:00:00:implicit:00 00941940 1 1 -implicitly%4:02:00:: 00367259 2 0 -implicitly%4:02:01:: 00367568 1 0 -implicitness%1:07:00:: 04824977 1 0 -implied_trust%1:21:00:: 13361830 1 0 -implike%5:00:00:playful:00 02122715 1 2 -implode%2:30:00:: 00305846 1 0 -implore%2:32:00:: 00759269 1 4 -imploring%3:00:00:: 00713995 1 0 -imploringly%4:02:00:: 00278633 1 0 -implosion%1:10:00:: 07116304 2 0 -implosion%1:11:00:: 07365524 1 0 -implosion_therapy%1:04:00:: 00702418 1 0 -imply%2:32:00:: 00929839 1 17 -imply%2:32:01:: 00930599 2 14 -imply%2:42:00:: 02635189 3 1 -imply%2:42:01:: 02636132 5 0 -imply%2:42:02:: 02636921 4 0 -impolite%3:00:00:: 00641640 1 0 -impolitely%4:02:00:: 00218681 1 0 -impoliteness%1:07:00:: 04914694 1 0 -impolitic%3:00:00:: 01814085 1 0 -imponderable%1:09:00:: 05693206 1 0 -imponderable%3:00:00:: 01815669 1 0 -import%1:06:00:: 03564667 1 2 -import%1:07:00:: 05170574 5 0 -import%1:09:00:: 05920791 4 1 -import%1:10:00:: 06601327 3 1 -import%1:18:00:: 10200531 2 1 -import%2:32:00:: 00932636 3 0 -import%2:40:00:: 02346136 1 4 -import%2:40:01:: 02232722 2 0 -import_barrier%1:10:00:: 06660224 1 0 -import_credit%1:21:00:: 13379264 1 0 -import_duty%1:21:00:: 13317858 1 0 -importance%1:07:00:: 05168261 1 50 -importance%1:26:00:: 14434681 2 4 -important%3:00:00:: 01275562 1 146 -important%3:00:02:: 00655779 3 2 -important%3:00:04:: 02161432 2 4 -important%5:00:00:immodest:02 01539887 5 0 -important%5:00:00:influential:00 01830403 4 1 -important-looking%5:00:00:impressive:00 01285850 1 1 -important_person%1:18:00:: 10200781 1 0 -importantly%4:02:00:: 00367682 2 0 -importantly%4:02:01:: 00367868 1 1 -importation%1:04:00:: 01111750 1 1 -importation%1:06:00:: 03564667 2 0 -imported%5:00:00:foreign:01 01035725 1 0 -importee%1:18:00:: 10200531 1 0 -importer%1:18:00:: 10201366 1 0 -importing%1:04:00:: 01111750 1 0 -importunate%5:00:00:beseeching:00 00714320 1 0 -importunately%4:02:00:: 00278633 1 0 -importune%2:32:00:: 00777931 1 0 -importunity%1:10:00:: 07188385 1 1 -impose%2:32:00:: 00748282 2 7 -impose%2:40:00:: 02306462 3 4 -impose%2:41:00:: 02560424 1 12 -imposed%5:00:00:obligatory:00 00848838 1 0 -imposing%5:00:00:dignified:00 00752110 2 0 -imposing%5:00:00:impressive:00 01283508 1 1 -imposingly%4:02:00:: 00213524 1 0 -imposition%1:04:02:: 01127623 1 2 -imposition%1:09:00:: 05833371 2 0 -impossibility%1:09:00:: 05792312 2 0 -impossibility%1:26:00:: 14483126 1 0 -impossible%1:09:00:: 05792446 1 1 -impossible%3:00:00:: 01823092 1 34 -impossible%5:00:00:intolerable:00 02436025 3 0 -impossible%5:00:00:unthinkable:00 02418692 2 12 -impossible_action%1:09:00:: 05792312 1 0 -impossibleness%1:26:00:: 14483126 1 0 -impossibly%4:02:01:: 00300682 1 0 -impost%1:06:00:: 04288784 2 0 -impost%1:21:00:: 13317002 1 0 -imposter%1:18:00:: 10201535 1 0 -impostor%1:18:00:: 10201535 1 0 -imposture%1:04:00:: 00756331 1 0 -impotence%1:07:00:: 05204637 1 1 -impotence%1:26:00:: 14044930 2 0 -impotency%1:07:00:: 05204637 1 1 -impotency%1:26:00:: 14044930 2 0 -impotent%3:00:00:: 01824751 1 4 -impotent%3:00:02:: 01825550 2 0 -impotently%4:02:00:: 00208773 1 0 -impound%2:35:00:: 01302183 2 0 -impound%2:40:00:: 02273293 1 0 -impounding%1:04:00:: 00086297 1 0 -impoundment%1:04:00:: 00086297 1 0 -impoverish%2:30:00:: 00172732 2 0 -impoverish%2:40:00:: 02317661 1 0 -impoverished%5:00:00:destroyed:00 00735195 2 0 -impoverished%5:00:00:poor:00 02023430 1 0 -impoverishment%1:04:00:: 01150467 2 0 -impoverishment%1:26:00:: 14493145 1 0 -impracticability%1:07:00:: 05153155 1 0 -impracticable%5:00:00:impossible:00 01823574 1 0 -impracticableness%1:07:00:: 05153155 1 0 -impracticably%4:02:00:: 00368165 1 0 -impractical%3:00:00:: 01836350 1 2 -impractical%5:00:00:utopian:00 02498213 2 0 -impracticality%1:07:00:: 05152518 1 0 -impramine_hydrochloride%1:06:00:: 03561889 1 0 -imprecate%2:32:00:: 00865387 2 0 -imprecate%2:32:01:: 00865958 1 1 -imprecation%1:10:00:: 07233996 1 4 -imprecation%1:10:01:: 07236957 2 0 -imprecise%3:00:00:: 01839417 1 1 -imprecisely%4:02:00:: 00368481 1 0 -impreciseness%1:07:00:: 04804787 1 0 -imprecision%1:07:00:: 04804787 1 0 -impregnability%1:26:00:: 14539029 1 0 -impregnable%5:00:00:fertile:00 01001945 2 0 -impregnable%5:00:00:invulnerable:00 02526124 1 1 -impregnable%5:00:00:unconquerable:00 00569918 3 0 -impregnably%4:02:00:: 00368807 1 0 -impregnate%2:29:00:: 00053159 4 0 -impregnate%2:29:01:: 00053341 3 0 -impregnate%2:30:00:: 00497705 2 0 -impregnate%2:30:01:: 00498299 1 0 -impregnation%1:11:00:: 07436986 3 0 -impregnation%1:22:00:: 13496517 2 0 -impregnation%1:27:00:: 14916796 1 0 -impresario%1:18:00:: 10593745 1 0 -impress%1:04:00:: 00086654 1 0 -impress%2:30:08:: 00283805 7 0 -impress%2:31:00:: 00728393 3 5 -impress%2:35:00:: 01531742 4 1 -impress%2:35:01:: 01471547 6 0 -impress%2:36:00:: 01747945 5 0 -impress%2:37:00:: 01769902 2 8 -impress%2:37:01:: 01767949 1 9 -impressed%5:00:00:affected:00 00071142 1 0 -impressible%3:00:00:: 02364448 1 0 -impression%1:04:00:: 00549106 8 0 -impression%1:04:01:: 00113532 9 0 -impression%1:06:00:: 03564849 7 0 -impression%1:07:00:: 04675314 2 6 -impression%1:09:00:: 05916739 1 14 -impression%1:09:01:: 05936704 3 1 -impression%1:10:00:: 06855207 5 0 -impression%1:10:02:: 06590210 6 0 -impression%1:25:00:: 13896369 4 0 -impressionable%3:00:00:: 02364448 1 0 -impressionism%1:06:00:: 03565051 1 0 -impressionist%1:18:00:: 10201956 1 1 -impressionist%3:01:00:: 02747466 1 1 -impressionistic%3:01:00:: 02747466 2 0 -impressionistic%3:01:01:: 02747667 1 0 -impressive%3:00:00:: 01282014 1 16 -impressive%5:00:00:effective:00 00835292 2 0 -impressive_aphasia%1:26:00:: 14099172 1 0 -impressively%4:02:00:: 00213524 1 0 -impressiveness%1:07:00:: 04729328 1 0 -impressiveness%1:07:01:: 04719502 2 0 -impressment%1:04:00:: 00086654 1 0 -imprimatur%1:10:00:: 06687358 1 1 -imprint%1:06:00:: 03565288 5 0 -imprint%1:09:00:: 05693383 1 1 -imprint%1:10:00:: 06855432 4 0 -imprint%1:10:01:: 06855563 3 0 -imprint%1:25:00:: 13896369 2 0 -imprint%2:35:00:: 01531742 2 0 -imprint%2:41:00:: 02430922 1 2 -imprinting%1:09:00:: 05754730 1 0 -imprison%2:41:00:: 02494356 1 3 -imprison%2:41:01:: 02495817 2 1 -imprisoned%5:00:00:unfree:00 01065126 1 0 -imprisonment%1:04:00:: 01146768 3 0 -imprisonment%1:04:01:: 01162376 1 3 -imprisonment%1:26:00:: 13999206 2 0 -improbability%1:07:00:: 04758452 1 0 -improbable%3:00:00:: 01413871 1 1 -improbable%5:00:00:implausible:00 01800169 2 0 -improbable%5:00:00:incredible:00 00646117 3 0 -improbableness%1:07:00:: 04758452 1 0 -improbably%4:02:00:: 00295825 1 0 -impromptu%1:10:00:: 07239788 1 1 -impromptu%1:10:02:: 07239927 2 0 -impromptu%4:02:00:: 00088655 1 0 -impromptu%5:00:00:unprepared:00 01845451 1 1 -improper%3:00:00:: 01880531 1 0 -improper%5:00:00:inappropriate:00 00136185 3 0 -improper%5:00:00:irregular:00 01961410 2 0 -improper_fraction%1:23:00:: 13735800 1 0 -improperly%4:02:00:: 00196056 1 1 -improperness%1:07:00:: 04901326 1 0 -impropriety%1:04:00:: 00737070 4 0 -impropriety%1:04:01:: 00737536 3 0 -impropriety%1:07:00:: 04901326 1 1 -impropriety%1:26:00:: 14563475 2 0 -improvable%5:00:00:corrigible:00 00635244 1 0 -improve%2:30:00:: 00205046 2 12 -improve%2:30:01:: 00205885 1 66 -improved%3:00:00:: 01288396 1 3 -improved%5:00:00:better:00 00231103 2 2 -improved%5:00:00:cleared:00 01290174 3 0 -improvement%1:04:00:: 00248977 2 7 -improvement%1:11:00:: 07357388 1 7 -improvement%1:26:00:: 14422179 3 4 -improver%1:06:00:: 02679415 2 0 -improver%1:18:00:: 10191613 1 0 -improvidence%1:07:00:: 04894552 1 0 -improvident%3:00:00:: 01895837 1 0 -improvident%5:00:00:imprudent:00 01899742 2 0 -improvidently%4:02:00:: 00368989 1 0 -improving%5:00:00:rising:00 02487108 1 0 -improvisation%1:04:00:: 00178832 2 0 -improvisation%1:04:01:: 00099588 3 0 -improvisation%1:06:00:: 03565402 1 0 -improvise%2:36:00:: 01728840 1 3 -improvise%2:41:00:: 02587895 2 0 -improvised%5:00:00:impermanent:00 01757211 1 1 -improvised_explosive_device%1:06:00:: 03565565 1 0 -improvize%2:36:00:: 01728840 1 0 -imprudence%1:07:00:: 04894037 1 0 -imprudent%3:00:00:: 01899360 1 0 -imprudent%5:00:00:indiscreet:00 00773455 2 0 -imprudently%4:02:00:: 00369552 1 0 -impudence%1:07:00:: 04915866 2 0 -impudence%1:10:00:: 06721813 1 0 -impudent%5:00:00:disrespectful:00 01996051 1 2 -impudent%5:00:00:forward:02 00205295 2 1 -impudently%4:02:00:: 00366490 1 1 -impugn%2:32:00:: 00868009 1 0 -impugnable%5:00:00:questionable:00 01917916 1 0 -impuissance%1:07:00:: 05204982 1 0 -impuissant%5:00:00:impotent:00 01825310 1 0 -impulse%1:04:01:: 00104249 5 1 -impulse%1:07:00:: 05035820 6 0 -impulse%1:11:00:: 07308042 3 2 -impulse%1:11:01:: 07420991 4 1 -impulse%1:12:01:: 07490579 2 3 -impulse%1:16:00:: 09180431 1 10 -impulse-buy%2:40:00:: 02353984 1 0 -impulse_explosive%1:06:00:: 04011609 1 0 -impulse_turbine%1:06:00:: 03565710 1 0 -impulsion%1:04:00:: 00104249 2 0 -impulsion%1:19:00:: 11447851 1 0 -impulsive%5:00:00:arbitrary:00 00719442 4 0 -impulsive%5:00:00:dynamic:00 00808940 3 0 -impulsive%5:00:00:incautious:00 00326608 5 0 -impulsive%5:00:00:spontaneous:00 02282651 1 0 -impulsive%5:00:00:unpremeditated:00 01843205 2 0 -impulsively%4:02:00:: 00366778 1 0 -impulsiveness%1:07:00:: 04662504 1 0 -impunity%1:26:00:: 14529524 1 1 -impure%3:00:01:: 01905377 2 0 -impure%3:00:02:: 01908039 1 0 -impure%3:00:03:: 00427786 3 0 -impureness%1:26:00:: 14487184 1 0 -impurity%1:26:00:: 14487184 2 3 -impurity%1:27:00:: 14583670 1 8 -imputable%5:00:00:attributable:00 00171872 1 0 -imputation%1:09:00:: 05735478 2 0 -imputation%1:10:00:: 07237038 1 0 -impute%2:31:00:: 00726300 1 3 -impute%2:31:01:: 00726784 2 0 -imputrescible%5:00:00:imperishable:00 01754341 1 0 -imu%1:14:00:: 08025835 1 0 -imuran%1:06:00:: 02765247 1 0 -in%1:15:00:: 09084750 3 0 -in%1:23:00:: 13649791 1 3 -in%1:27:00:: 14641223 2 0 -in%4:02:01:: 00501990 1 19 -in%5:00:00:fashionable:00 00972501 3 0 -in%5:00:00:incoming:00 01295143 2 0 -in%5:00:00:successful:00 02332204 1 0 -in-basket%1:06:00:: 03565830 1 0 -in-between%5:00:00:intermediate:00 01014953 1 0 -in-bounds%5:00:00:fair:01 00955802 1 0 -in-chief%5:00:00:important:00 01279183 1 0 -in-fighting%1:04:00:: 00446411 2 0 -in-fighting%1:04:01:: 01172031 1 1 -in-joke%1:10:00:: 06779511 1 0 -in-law%1:18:00:: 10207169 1 0 -in-line_skate%1:06:00:: 04102037 1 0 -in-migration%1:04:00:: 00056311 1 0 -in-person%5:00:00:personal:00 01768466 1 1 -in-situ%5:00:00:unaltered:00 00353604 1 0 -in-tray%1:06:00:: 03565830 1 0 -in-your-face%5:00:00:aggressive:00 00083749 1 0 -in_a_bad_way%5:00:01:troubled:00 02457558 1 0 -in_a_beastly_manner%4:02:00:: 00280427 1 0 -in_a_broad_way%4:02:00:: 00104233 1 0 -in_a_flash%4:02:00:: 00033421 1 0 -in_a_heartfelt_way%4:02:00:: 00077912 1 0 -in_a_higher_place%4:02:00:: 00080169 1 0 -in_a_low_voice%4:02:00:: 00257418 1 0 -in_a_nutshell%4:02:00:: 00290136 1 0 -in_a_pig's_eye%4:02:00:: 00164676 1 0 -in_a_similar_way%4:02:02:: 00165561 1 1 -in_a_way%4:02:00:: 00148540 1 2 -in_absentia%4:02:00:: 00150824 1 1 -in_advance%4:02:00:: 00067045 1 3 -in_advance%5:00:00:front:00 00198383 1 2 -in_agreement%5:00:00:united:00 02476338 1 0 -in_all%4:02:00:: 00063630 1 1 -in_all_likelihood%4:02:00:: 00138611 1 1 -in_all_probability%4:02:00:: 00138611 1 0 -in_an_elaborate_way%4:02:00:: 00084840 1 0 -in_and_of_itself%4:02:00:: 00036762 1 0 -in_any_case%4:02:00:: 00026571 1 8 -in_any_case%4:02:02:: 00029037 2 0 -in_any_event%4:02:00:: 00026571 1 6 -in_apposition%4:02:00:: 00121413 1 0 -in_arrears%4:02:00:: 00222479 1 0 -in_both_ears%4:02:00:: 00207945 1 0 -in_brief%4:02:01:: 00289860 1 1 -in_camera%4:02:00:: 00162137 1 0 -in_case%4:02:00:: 00164751 1 4 -in_chorus%4:02:00:: 00240343 1 1 -in_circles%4:02:00:: 00164578 1 0 -in_cold_blood%4:02:01:: 00164890 1 0 -in_common%4:02:00:: 00503777 1 7 -in_concert%4:02:00:: 00116705 1 2 -in_conclusion%4:02:00:: 00065822 1 1 -in_condition%5:00:00:fit:01 01017600 1 0 -in_darkness%4:02:00:: 00206144 1 0 -in_demand%5:00:00:desirable:00 00733297 1 0 -in_detail%4:02:00:: 00197275 1 11 -in_dishabille%5:00:00:unclothed:00 00459210 1 0 -in_due_course%4:02:00:: 00165269 1 1 -in_due_season%4:02:00:: 00165269 1 0 -in_due_time%4:02:00:: 00165269 1 0 -in_earnest%4:02:00:: 00165018 1 0 -in_effect%4:02:00:: 00060032 1 6 -in_effect%5:00:00:operative:00 00832784 1 4 -in_essence%4:02:01:: 00501140 1 0 -in_everyone's_thoughts%4:02:00:: 00167175 1 0 -in_evidence%5:00:00:conspicuous:00 00580497 1 4 -in_extremis%4:02:00:: 00259242 1 1 -in_fact%4:02:00:: 00148869 1 52 -in_fiscal_matters%4:02:00:: 00131429 1 0 -in_flight%4:02:00:: 00505010 1 0 -in_for%5:00:00:certain:03 00341292 1 6 -in_force%5:00:00:operative:00 00832784 1 0 -in_front%4:02:00:: 00066781 1 30 -in_full%4:02:00:: 00504620 1 3 -in_full_action%4:02:00:: 00165445 1 0 -in_full_swing%4:02:00:: 00165445 1 0 -in_gear%5:00:00:geared:00 01101022 1 0 -in_general%4:02:00:: 00041954 1 20 -in_good_order%4:02:00:: 00196203 1 1 -in_good_spirits%4:02:00:: 00236546 1 0 -in_good_taste%5:00:00:decorous:00 00689215 1 0 -in_good_time%4:02:00:: 00165269 1 0 -in_great_confusion%4:02:00:: 00163704 1 0 -in_hand%4:02:00:: 00148329 1 1 -in_haste%4:02:01:: 00206479 1 1 -in_height%5:00:00:tall:00 02385726 1 1 -in_her_own_right%4:02:00:: 00223138 1 0 -in_her_right_mind%5:00:00:sane:00 02073834 1 0 -in_hiding%4:02:00:: 00252249 1 0 -in_high_spirits%5:00:00:elated:00 00705498 1 0 -in_his_own_right%4:02:00:: 00223138 1 0 -in_his_right_mind%5:00:00:sane:00 02073834 1 1 -in_its_own_right%4:02:00:: 00223138 1 0 -in_kind%4:02:00:: 00165561 1 1 -in_large_quantities%4:02:00:: 00260704 1 0 -in_league%5:00:00:united:00 02477691 1 0 -in_line%4:02:00:: 00165676 1 1 -in_line%5:00:00:eligible:00 00852576 2 0 -in_line%5:00:00:succeeding:00 00128137 1 1 -in_loco_parentis%4:02:00:: 00256073 1 0 -in_love%5:00:00:loving:00 01465668 1 0 -in_low_spirits%4:02:00:: 00299161 1 0 -in_name%4:02:00:: 00165788 1 1 -in_name_only%4:02:00:: 00165788 1 0 -in_no_time%4:02:00:: 00165906 1 0 -in_on%4:02:00:: 00116899 1 0 -in_one's_birthday_suit%5:00:00:unclothed:00 00459553 1 0 -in_one's_own_right%4:02:00:: 00223138 1 0 -in_one_case%4:02:00:: 00118869 1 0 -in_one_ear%4:02:00:: 00208111 1 0 -in_operation%5:00:01:operative:00 00833018 1 2 -in_order%5:00:00:ready:00 01931517 1 1 -in_other_words%4:02:00:: 00179333 1 5 -in_particular%4:02:00:: 00248765 1 9 -in_passing%4:02:00:: 00166375 1 1 -in_perpetuity%4:02:01:: 00088073 2 0 -in_perpetuity%4:02:02:: 00088186 1 0 -in_person%4:02:01:: 00132158 1 2 -in_place%4:02:00:: 00256189 1 6 -in_play%5:00:00:live:01 00099590 1 0 -in_point_of_fact%4:02:00:: 00148869 1 0 -in_practice%4:02:00:: 00166512 1 4 -in_principle%4:02:00:: 00501140 1 2 -in_private%4:02:00:: 00162137 1 1 -in_public%4:02:00:: 00161932 1 2 -in_question%5:00:00:questionable:00 01916979 1 0 -in_reality%4:02:00:: 00149138 1 5 -in_return%4:02:00:: 00405868 1 0 -in_secret%4:02:00:: 00166608 1 2 -in_series%5:00:00:asynchronous:00 02380358 1 0 -in_short%4:02:01:: 00289860 1 8 -in_short_order%4:02:00:: 00166875 1 0 -in_sight%5:00:00:visible:00 02515993 1 4 -in_situ%4:02:00:: 00256189 1 0 -in_small_stages%5:00:00:gradual:01 01143006 1 0 -in_so_far%4:02:00:: 00098959 1 2 -in_some_manner%4:02:00:: 00026137 1 0 -in_some_way%4:02:00:: 00026137 1 5 -in_someone's_way%4:02:00:: 00041570 1 0 -in_spades%4:02:00:: 00036935 1 0 -in_spite_of_appearance%4:02:00:: 00104099 1 0 -in_stages%4:02:00:: 00422281 1 0 -in_stock%5:00:00:available:00 00184543 1 1 -in_store%5:00:00:future:00 01733189 1 1 -in_straitened_circumstances%5:00:00:poor:00 02023661 1 0 -in_stride%4:02:00:: 00236546 1 2 -in_style%5:00:00:fashionable:00 00971506 1 0 -in_tandem%4:02:00:: 00257634 1 0 -in_that%4:02:00:: 00240707 1 4 -in_that_location%4:02:00:: 00109151 1 0 -in_that_respect%4:02:00:: 00109461 1 0 -in_the_adjacent_apartment%4:02:00:: 00240082 1 0 -in_the_adjacent_house%4:02:00:: 00240082 1 0 -in_the_air%4:02:00:: 00167175 1 3 -in_the_altogether%5:00:00:unclothed:00 00458266 1 0 -in_the_bargain%4:02:00:: 00080304 1 1 -in_the_beginning%4:02:00:: 00431941 1 1 -in_the_beginning%4:02:01:: 00167286 2 1 -in_the_buff%5:00:00:unclothed:00 00458266 1 0 -in_the_end%4:02:00:: 00047903 2 5 -in_the_end%4:02:02:: 00167447 1 9 -in_the_first_place%4:02:00:: 00138410 2 5 -in_the_first_place%4:02:01:: 00167286 1 6 -in_the_flesh%5:00:00:personal:00 01768466 1 1 -in_the_lead%4:02:00:: 00067513 1 1 -in_the_lead%5:00:00:up:00 02490631 1 0 -in_the_least%4:02:00:: 00056729 2 0 -in_the_least%4:02:01:: 00150558 1 0 -in_the_long_run%4:02:00:: 00167447 1 2 -in_the_lurch%4:02:00:: 00037876 1 0 -in_the_main%4:02:00:: 00041954 2 0 -in_the_main%4:02:01:: 00073897 1 0 -in_the_meantime%4:02:00:: 00064946 1 4 -in_the_midst%4:02:00:: 00259303 1 10 -in_the_nick_of_time%4:02:00:: 00167575 1 0 -in_the_public_eye%5:00:00:public:00 01861648 1 0 -in_the_raw%5:00:00:unclothed:00 00458266 1 0 -in_the_same_breath%4:02:00:: 00167702 1 0 -in_the_south%4:02:00:: 00243938 1 0 -in_the_way%4:02:00:: 00041570 1 0 -in_their_right_minds%5:00:00:sane:00 02073834 1 0 -in_theory%4:02:01:: 00501140 1 0 -in_this%4:02:00:: 00240707 1 4 -in_time%1:28:00:: 15264607 1 0 -in_time%4:02:00:: 00047641 1 9 -in_time%4:02:01:: 00167816 2 2 -in_toto%4:02:00:: 00150432 1 1 -in_truth%4:02:01:: 00038013 1 7 -in_turn%4:02:00:: 00180420 1 15 -in_two_ways%4:02:00:: 00083947 1 0 -in_unison%4:02:00:: 00240265 2 0 -in_unison%4:02:02:: 00240343 1 3 -in_use%5:00:00:occupied:00 01623360 1 3 -in_use%5:00:00:used:00 02495156 2 2 -in_utero%4:02:00:: 00038388 1 0 -in_vacuo%4:02:00:: 00038489 2 0 -in_vacuo%4:02:01:: 00038537 1 0 -in_vain%4:02:00:: 00167920 1 1 -in_vitro%3:00:00:: 01359277 1 3 -in_vitro%4:02:00:: 00513929 1 0 -in_vivo%3:00:00:: 01359424 1 0 -in_vivo%4:02:00:: 00182094 1 3 -in_vogue%5:00:00:fashionable:00 00971506 1 1 -in_writing%4:02:00:: 00246672 1 1 -in_writing%5:00:00:written:00 02285278 1 0 -in_your_birthday_suit%5:00:00:unclothed:00 00459553 1 0 -inability%1:07:00:: 05207130 2 0 -inability%1:09:00:: 05644922 1 5 -inaccessibility%1:07:00:: 04722910 1 0 -inaccessible%3:00:00:: 00019874 1 0 -inaccessible%5:00:00:unavailable:00 00186193 2 0 -inaccessibly%4:02:00:: 00204390 1 0 -inaccuracy%1:07:02:: 04804451 1 1 -inaccurate%3:00:00:: 00023383 1 2 -inaccurately%4:02:00:: 00204643 1 0 -inachis%1:05:00:: 02279127 1 0 -inachis_io%1:05:00:: 02279257 1 0 -inaction%1:26:00:: 14010148 1 1 -inactivate%2:30:00:: 00191517 2 0 -inactivate%2:33:00:: 01098206 1 0 -inactivation%1:04:00:: 00233795 2 0 -inactivation%1:22:00:: 13496771 1 0 -inactive%3:00:00:: 01660857 3 0 -inactive%3:00:01:: 00033574 9 0 -inactive%3:00:02:: 00037757 2 1 -inactive%3:00:03:: 00036481 7 0 -inactive%3:00:04:: 00039592 6 0 -inactive%3:00:05:: 00040685 5 0 -inactive%3:00:07:: 00043125 4 0 -inactive%3:00:08:: 00035074 8 0 -inactive%5:00:00:nonmoving:00 01564315 10 0 -inactive%5:00:00:unreactive:00 01929802 1 3 -inactiveness%1:07:00:: 04635631 2 0 -inactiveness%1:26:00:: 14010148 1 0 -inactivity%1:04:00:: 01062583 3 0 -inactivity%1:07:00:: 04635631 2 0 -inactivity%1:26:00:: 14010148 1 0 -inadequacy%1:07:00:: 04793555 3 0 -inadequacy%1:07:01:: 05113133 1 1 -inadequacy%1:26:00:: 14463471 2 0 -inadequate%3:00:00:: 00051696 1 14 -inadequate%5:00:00:insufficient:00 02336904 2 0 -inadequately%4:02:00:: 00369869 1 1 -inadequateness%1:07:00:: 04793555 1 0 -inadmissibility%1:07:00:: 04794236 1 0 -inadmissible%3:00:00:: 01762582 1 0 -inadvertence%1:07:00:: 04665543 2 0 -inadvertence%1:09:00:: 05706815 1 1 -inadvertency%1:07:00:: 04665543 1 0 -inadvertent%5:00:00:unintended:00 01338909 1 0 -inadvertently%4:02:00:: 00237833 1 1 -inadvisability%1:07:00:: 05165028 1 0 -inadvisable%3:00:00:: 00067767 1 1 -inadvisable%5:00:00:inexpedient:00 00932565 2 0 -inadvisably%4:02:00:: 00333808 1 0 -inaesthetic%3:00:00:: 00070583 1 0 -inalienable%3:00:00:: 00093810 1 0 -inalienable%5:00:00:indefeasible:00 00694483 2 0 -inalienably%4:02:00:: 00139930 1 0 -inalterable%3:00:00:: 00349523 1 0 -inamorata%1:18:00:: 10202085 1 0 -inamorato%1:18:00:: 10202225 1 0 -inane%5:00:00:foolish:00 02571277 1 1 -inanely%4:02:00:: 00201893 1 0 -inanimate%3:00:01:: 00118238 2 0 -inanimate%3:00:02:: 00120411 1 1 -inanimate%5:00:00:dead:01 00096595 3 0 -inanimateness%1:07:00:: 05006285 1 0 -inanition%1:07:01:: 04635010 2 0 -inanition%1:07:02:: 05042138 1 0 -inanity%1:07:00:: 05174023 1 0 -inanna%1:18:00:: 09518683 1 0 -inapplicability%1:24:00:: 13796053 1 0 -inapplicable%5:00:00:irrelevant:00 01976851 1 0 -inapposite%5:00:00:malapropos:00 00138782 1 0 -inappositeness%1:07:00:: 04721428 1 0 -inappreciable%5:00:00:insignificant:00 02165171 1 0 -inappropriate%3:00:00:: 00135718 1 2 -inappropriate%5:00:00:incongruous:00 00562909 2 0 -inappropriately%4:02:00:: 00139759 1 0 -inappropriateness%1:07:00:: 04721650 2 0 -inappropriateness%1:07:01:: 04901996 1 0 -inapt%5:00:00:infelicitous:00 01001180 1 0 -inaptitude%1:09:00:: 05647643 1 0 -inaptness%1:07:00:: 04721428 1 0 -inarguable%5:00:00:incontestable:00 00591406 1 0 -inarticulate%3:00:00:: 00151105 1 0 -inarticulately%4:02:00:: 00268464 2 0 -inarticulately%4:02:03:: 00328025 1 0 -inartistic%5:00:00:inaesthetic:00 00070839 1 0 -inattention%1:09:00:: 05706228 1 0 -inattentive%3:00:00:: 00164863 1 0 -inattentive%5:00:00:negligent:00 00755876 2 0 -inattentively%4:02:00:: 00066190 1 0 -inattentiveness%1:07:01:: 04663319 2 0 -inattentiveness%1:09:00:: 05706375 1 0 -inaudibility%1:07:00:: 05019163 1 0 -inaudible%3:00:00:: 00174379 1 2 -inaudibleness%1:07:00:: 05019163 1 0 -inaudibly%4:02:00:: 00268909 1 0 -inaugural%1:04:00:: 00243373 2 0 -inaugural%1:10:00:: 07240077 1 1 -inaugural%3:00:00:: 01290766 1 1 -inaugural%5:00:00:opening:00 01009343 2 1 -inaugural_address%1:10:00:: 07240077 1 0 -inaugurally%4:02:00:: 00501856 1 0 -inaugurate%2:30:00:: 00349592 3 0 -inaugurate%2:41:00:: 02395782 1 3 -inaugurate%2:41:01:: 02425337 2 0 -inauguration%1:04:00:: 00243373 2 0 -inauguration%1:04:01:: 00239910 1 1 -inauguration_day%1:28:00:: 15159265 1 0 -inauspicious%3:00:00:: 00176838 1 0 -inauspicious%5:00:00:unfavorable:02 00997036 2 0 -inauspicious%5:00:00:unpropitious:00 00178126 3 0 -inauspiciously%4:02:00:: 00217640 1 0 -inauspiciousness%1:07:00:: 05162217 1 0 -inauthentic%5:00:00:counterfeit:00 01117677 1 0 -inboard%3:00:00:: 01291234 1 1 -inborn%5:00:00:native:03 01034153 2 0 -inborn%5:00:00:noninheritable:00 01315844 1 0 -inborn_error_of_metabolism%1:26:00:: 14155834 1 0 -inborn_reflex%1:04:00:: 00863513 1 0 -inbound%5:00:00:incoming:00 01294583 1 0 -inbred%3:00:00:: 01291757 1 0 -inbred%5:00:00:native:03 01034153 2 0 -inbreeding%1:04:00:: 00851587 1 0 -inbuilt%5:00:00:intrinsic:00 01348528 1 0 -inc%1:14:00:: 08403907 1 0 -inca%1:14:00:: 08488833 3 0 -inca%1:18:00:: 09727191 2 0 -inca%1:18:01:: 09727323 1 0 -incalculable%3:00:00:: 00301777 1 1 -incalescence%1:07:00:: 05016451 1 0 -incan%1:18:00:: 09727191 1 0 -incan%3:01:00:: 02747989 1 0 -incandesce%2:30:00:: 00572021 2 0 -incandesce%2:30:01:: 00572186 1 0 -incandescence%1:07:00:: 05018674 2 0 -incandescence%1:19:00:: 11467786 1 0 -incandescent%5:00:00:glorious:00 01122121 2 0 -incandescent%5:00:00:light:06 00271813 1 1 -incandescent_lamp%1:06:00:: 03665924 1 0 -incantation%1:10:00:: 07160116 1 1 -incapability%1:07:00:: 05207570 2 0 -incapability%1:09:00:: 05647867 1 0 -incapable%3:00:00:: 00307474 1 4 -incapable%3:00:02:: 00308188 3 0 -incapable%5:00:00:inadequate:00 00052246 4 0 -incapable%5:00:00:unsusceptible:00 02364066 2 1 -incapableness%1:07:00:: 05207570 2 0 -incapableness%1:09:00:: 05647867 1 0 -incapacitate%2:29:00:: 00091968 2 0 -incapacitate%2:30:00:: 00512186 1 1 -incapacitated%5:00:00:powerless:00 01827946 1 0 -incapacitating%5:00:00:unhealthful:00 01168166 1 0 -incapacity%1:07:00:: 05207846 2 0 -incapacity%1:09:00:: 05648146 1 0 -incarcerate%2:41:00:: 02494356 1 0 -incarceration%1:26:00:: 13999206 1 0 -incarnadine%2:30:00:: 00285506 1 0 -incarnate%2:36:00:: 01645157 1 1 -incarnate%2:42:00:: 02698443 2 0 -incarnate%5:00:00:bodied:00 00628201 2 0 -incarnate%5:00:00:corporeal:00 00630466 1 1 -incarnation%1:04:00:: 00933259 4 0 -incarnation%1:10:00:: 06790845 2 1 -incarnation%1:18:00:: 10418302 1 1 -incarnation%1:28:00:: 15123589 3 0 -incase%2:35:00:: 01486312 1 0 -incased%5:00:00:sheathed:00 02155054 1 0 -incasement%1:04:00:: 00322488 1 0 -incaution%1:07:00:: 04665210 1 0 -incautious%3:00:00:: 00326436 1 0 -incautious%5:00:00:careless:00 00313041 2 0 -incautiously%4:02:00:: 00282444 1 0 -incautiousness%1:07:00:: 04665210 1 0 -incendiarism%1:04:00:: 00378296 1 0 -incendiary%1:06:00:: 03565991 2 0 -incendiary%1:18:00:: 09810707 1 0 -incendiary%3:01:00:: 02748097 1 0 -incendiary%5:00:00:combustible:00 00473869 3 0 -incendiary%5:00:00:provocative:00 01897378 2 0 -incendiary_bomb%1:06:00:: 03565991 1 0 -incense%1:09:00:: 05714745 2 0 -incense%1:27:00:: 14918994 1 1 -incense%2:37:01:: 01786906 2 0 -incense%2:39:00:: 02126686 1 0 -incense_cedar%1:20:01:: 11639084 1 0 -incense_cedar%1:20:02:: 11634736 2 0 -incense_tree%1:20:00:: 12690653 1 0 -incense_wood%1:20:00:: 12693457 1 0 -incensed%5:00:00:angry:00 00115494 1 1 -incentive%1:16:00:: 09179776 1 5 -incentive%1:21:00:: 13273154 2 1 -incentive_option%1:04:00:: 00081395 1 0 -incentive_program%1:21:00:: 13273381 1 0 -incentive_scheme%1:21:00:: 13273381 1 0 -incentive_stock_option%1:04:00:: 00081395 1 0 -inception%1:11:00:: 07323922 1 2 -incertain%3:00:00:: 00337404 1 1 -incertitude%1:09:00:: 05698247 1 0 -incessancy%1:07:00:: 05052587 1 0 -incessant%5:00:00:continuous:01 00595299 1 0 -incessantly%4:02:00:: 00020280 2 0 -incessantly%4:02:02:: 00282858 1 0 -incessantness%1:07:00:: 05052587 1 0 -incest%1:04:00:: 00848891 1 0 -incestuous%3:01:00:: 02748216 2 0 -incestuous%3:01:01:: 02748322 1 0 -incestuously%4:02:00:: 00142865 1 0 -inch%1:23:00:: 13649791 1 49 -inch%1:23:02:: 13713300 2 6 -inch%2:38:00:: 02072501 1 1 -incheon%1:15:00:: 08956140 1 0 -inchoate%5:00:00:early:02 00818829 1 0 -inchoative%1:24:00:: 13805456 1 0 -inchoative%5:00:00:immature:01 01490505 1 0 -inchoative_aspect%1:24:00:: 13805456 1 0 -inchon%1:04:00:: 01280990 2 0 -inchon%1:15:00:: 08956140 1 0 -inchworm%1:05:00:: 02288268 1 0 -incidence%1:19:00:: 11467996 2 0 -incidence%1:24:00:: 13826959 1 5 -incidence_angle%1:25:00:: 13890869 1 0 -incident%1:11:00:: 07307477 1 22 -incident%1:26:00:: 13978033 2 0 -incident%3:00:00:: 01856929 2 0 -incident%3:01:00:: 02987623 1 8 -incidental%1:10:00:: 06482978 2 0 -incidental%1:21:00:: 13306436 1 0 -incidental%3:00:00:: 01856929 1 1 -incidental%5:00:00:inessential:00 00903264 2 0 -incidental%5:00:00:subsequent:00 00122844 3 0 -incidental_expense%1:21:00:: 13306436 1 0 -incidental_music%1:10:00:: 07281375 1 0 -incidentally%4:02:00:: 00156222 1 2 -incidentally%4:02:01:: 00212411 2 1 -incienso%1:20:00:: 11963932 1 0 -incinerate%2:30:00:: 00378042 2 0 -incinerate%2:30:01:: 00378361 1 0 -incineration%1:04:00:: 00378706 1 0 -incinerator%1:06:00:: 03566193 1 0 -incipience%1:28:00:: 15143012 1 1 -incipiency%1:28:00:: 15143012 1 2 -incipient%5:00:00:early:02 00818829 1 0 -incise%2:35:00:: 01555742 1 1 -incised%5:00:00:carved:00 00317310 3 0 -incised%5:00:00:compound:00 02172770 1 0 -incised%5:00:00:cut:01 00661887 2 0 -incision%1:04:00:: 00678010 2 0 -incision%1:25:00:: 13904843 1 0 -incisive%5:00:00:perceptive:00 01744515 1 2 -incisive%5:00:00:sharp:00 00802020 2 0 -incisively%4:02:00:: 00370046 1 0 -incisively%4:02:01:: 00368287 2 0 -incisiveness%1:07:00:: 05199680 1 0 -incisor%1:08:00:: 05307641 1 0 -incisura%1:25:00:: 13905121 1 0 -incisure%1:25:00:: 13905121 1 0 -incitation%1:04:00:: 01261490 2 0 -incitation%1:16:00:: 09184975 1 0 -incite%2:32:00:: 00851239 2 2 -incite%2:35:00:: 01230710 3 0 -incite%2:36:00:: 01649999 1 2 -incitement%1:04:02:: 01261490 1 3 -incitement%1:10:00:: 07246036 4 0 -incitement%1:10:01:: 07252764 2 1 -incitement%1:16:00:: 09184975 3 0 -inciter%1:18:00:: 10209246 1 0 -incitive%5:00:00:provocative:00 01897378 1 0 -incivility%1:07:00:: 04915365 1 0 -inclemency%1:07:00:: 04639732 2 0 -inclemency%1:26:00:: 14523090 1 0 -inclement%3:00:01:: 00437852 2 0 -inclement%3:00:02:: 00438567 1 0 -inclementness%1:26:00:: 14523090 1 0 -inclination%1:04:00:: 00335384 8 0 -inclination%1:07:00:: 04944048 7 0 -inclination%1:07:02:: 05068080 6 0 -inclination%1:09:00:: 06196584 1 2 -inclination%1:12:00:: 07498854 5 0 -inclination%1:25:00:: 13892897 4 0 -inclination%1:25:01:: 13889602 3 1 -inclination%1:25:02:: 13889843 2 1 -inclination_of_an_orbit%1:25:00:: 13889843 1 0 -incline%1:06:00:: 04051549 2 1 -incline%1:17:00:: 09437454 1 1 -incline%2:31:03:: 00680841 6 0 -incline%2:37:00:: 01772172 5 0 -incline%2:38:00:: 02037090 4 0 -incline%2:38:01:: 02063018 3 0 -incline%2:39:00:: 02171322 2 0 -incline%2:42:01:: 02719399 1 6 -incline_bench_press%1:04:00:: 00626728 1 2 -inclined%3:00:01:: 01234167 2 0 -inclined%3:00:02:: 01292128 1 4 -inclined%5:00:00:willing:00 02565425 3 0 -inclined_fault%1:17:00:: 09310616 1 0 -inclined_plane%1:06:00:: 03566329 1 0 -inclining%1:04:00:: 00335384 1 0 -inclinometer%1:06:00:: 03566555 2 0 -inclinometer%1:06:01:: 03566730 1 0 -inclinometer%1:06:02:: 03043798 3 0 -inclose%2:30:00:: 00187526 2 0 -inclose%2:35:00:: 01587062 1 1 -inclosure%1:04:00:: 00321956 2 0 -inclosure%1:10:00:: 06473381 1 0 -include%2:30:00:: 00183879 3 18 -include%2:31:00:: 00684838 2 32 -include%2:41:03:: 02449847 4 8 -include%2:42:00:: 02632940 1 234 -included%5:00:00:enclosed:00 01658269 1 0 -inclusion%1:04:00:: 00373130 4 0 -inclusion%1:17:00:: 09310806 3 0 -inclusion%1:24:00:: 13794034 2 0 -inclusion%1:26:00:: 13936304 1 0 -inclusion_body%1:17:00:: 09310806 1 1 -inclusion_body_encephalitis%1:26:00:: 14344189 1 0 -inclusion_body_myositis%1:26:00:: 14209836 1 0 -inclusive%3:00:00:: 01863680 1 2 -incognito%4:02:00:: 00370260 1 0 -incognito%5:00:00:concealed:00 02089724 1 0 -incognizable%5:00:00:imperceptible:00 01748824 1 0 -incognizance%1:09:00:: 05676476 1 0 -incognizant%3:00:00:: 00191603 1 0 -incognoscible%5:00:00:imperceptible:00 01748824 1 0 -incoherence%1:10:00:: 06608977 2 0 -incoherence%1:26:00:: 14418103 1 0 -incoherency%1:10:00:: 06608977 2 0 -incoherency%1:26:00:: 14418103 1 0 -incoherent%3:00:00:: 00464962 1 1 -incoherent%3:00:01:: 00328653 2 0 -incoherent%5:00:00:inarticulate:00 00152104 3 0 -incoherently%4:02:00:: 00286518 1 0 -incombustible%3:00:00:: 00474043 1 0 -income%1:21:00:: 13255145 1 45 -income_bracket%1:14:00:: 08006250 1 0 -income_statement%1:21:00:: 13355301 1 0 -income_tax%1:21:00:: 13310230 1 4 -income_tax_bracket%1:14:00:: 08006250 1 0 -income_tax_return%1:10:00:: 06548671 1 4 -incoming%1:04:00:: 00049003 1 0 -incoming%3:00:00:: 01294300 1 1 -incoming%3:00:01:: 01294051 2 0 -incommensurable%5:00:00:incommensurate:00 00482139 2 0 -incommensurable%5:00:00:incomparable:00 00505285 1 0 -incommensurate%3:00:00:: 00481855 1 0 -incommode%2:41:00:: 02507736 1 0 -incommodious%3:00:00:: 00476494 1 0 -incommodiousness%1:26:00:: 14446878 1 0 -incommunicado%5:00:00:uncommunicative:00 00501552 1 0 -incommunicative%3:00:04:: 00500569 1 0 -incommutability%1:07:00:: 04741075 1 0 -incommutable%3:00:00:: 00348808 1 0 -incommutable%5:00:00:unexchangeable:00 00918616 2 0 -incomparable%3:00:00:: 00504592 1 0 -incomparably%4:02:00:: 00370421 1 0 -incompatibility%1:07:00:: 04714440 3 0 -incompatibility%1:24:02:: 13858045 1 1 -incompatibility%1:26:00:: 13975037 2 0 -incompatible%3:00:00:: 00623565 2 0 -incompatible%3:00:01:: 00508192 1 2 -incompatible%3:00:02:: 00509206 4 0 -incompatible%3:00:04:: 00561036 3 0 -incompatible%5:00:00:antonymous:00 02382572 5 0 -incompatible%5:00:00:immiscible:00 00509896 9 0 -incompatible%5:00:00:incongruous:00 00562909 8 0 -incompatible%5:00:00:inconsistent:00 00578523 7 0 -incompatible%5:00:00:mismatched:00 01487352 6 0 -incompatibly%4:02:00:: 00287842 1 0 -incompetence%1:07:00:: 05154241 1 1 -incompetence%1:26:00:: 14076126 2 0 -incompetency%1:07:00:: 05154241 1 0 -incompetent%1:18:00:: 10202363 1 2 -incompetent%3:00:00:: 00511214 2 0 -incompetent%3:00:02:: 00512261 1 0 -incompetent%5:00:00:bad:00 01128103 4 0 -incompetent%5:00:00:inadequate:00 00052246 5 0 -incompetent%5:00:00:unskilled:00 02229324 3 0 -incompetent_cervix%1:08:00:: 05303020 1 0 -incompetent_person%1:18:00:: 10202363 1 0 -incompetently%4:02:00:: 00185400 1 0 -incomplete%3:00:00:: 00523978 1 9 -incomplete%5:00:00:unfinished:01 01004541 2 0 -incomplete_abortion%1:04:00:: 00230997 1 0 -incomplete_fracture%1:26:00:: 14293840 1 0 -incompletely%4:02:00:: 00157811 1 2 -incompleteness%1:26:00:: 14462193 1 0 -incomprehensibility%1:07:00:: 04822223 1 0 -incomprehensible%3:00:00:: 00533851 2 1 -incomprehensible%3:00:04:: 00939105 1 1 -incomprehension%1:09:00:: 05806231 1 0 -incomprehensive%3:00:00:: 00529075 1 0 -incompressibility%1:07:00:: 04938702 1 0 -incompressible%3:00:00:: 00514717 1 0 -incomputable%5:00:00:incalculable:00 00302436 1 0 -inconceivability%1:26:00:: 14483348 1 0 -inconceivable%5:00:00:unthinkable:00 02418692 1 1 -inconceivableness%1:26:00:: 14483348 1 0 -inconceivably%4:02:00:: 00142959 1 0 -inconclusive%3:00:00:: 00550777 1 0 -inconclusively%4:02:00:: 00093139 1 0 -inconclusiveness%1:07:00:: 04758181 1 0 -inconel%1:27:00:: 14916369 1 0 -incongruent%3:00:00:: 00562026 1 0 -incongruity%1:07:00:: 04714847 1 0 -incongruous%3:00:00:: 00562469 1 0 -incongruously%4:02:00:: 00370763 1 0 -incongruousness%1:07:00:: 04714847 1 0 -inconsequence%1:07:00:: 05174517 1 0 -inconsequence%1:07:01:: 04785669 2 0 -inconsequent%5:00:00:unimportant:00 01280349 1 0 -inconsequential%5:00:00:illogical:00 01431369 2 0 -inconsequential%5:00:00:unimportant:00 01280349 1 3 -inconsequentially%4:02:00:: 00294782 1 0 -inconsequently%4:02:00:: 00294782 1 0 -inconsiderable%3:00:00:: 00625170 1 1 -inconsiderate%3:00:00:: 00639356 1 0 -inconsiderate%5:00:00:thoughtless:00 02420757 2 0 -inconsiderately%4:02:00:: 00182907 1 0 -inconsiderateness%1:07:00:: 04845967 1 0 -inconsideration%1:07:00:: 04845967 1 0 -inconsistency%1:07:00:: 04751847 2 0 -inconsistency%1:24:00:: 13858045 1 0 -inconsistent%3:00:00:: 00577920 1 1 -inconsistent%5:00:00:incongruous:00 00562803 3 0 -inconsistent%5:00:00:irreconcilable:00 01987207 2 1 -inconsistently%4:02:00:: 00120841 1 0 -inconsolable%3:00:00:: 01232298 1 0 -inconspicuous%3:00:00:: 00581401 1 0 -inconspicuously%4:02:00:: 00371171 1 0 -inconspicuousness%1:07:00:: 04707636 1 0 -inconstancy%1:07:00:: 04734885 2 0 -inconstancy%1:07:01:: 04879092 1 0 -inconstant%3:00:00:: 00583990 1 0 -incontestable%3:00:00:: 00590923 1 0 -incontestable%5:00:00:undeniable:00 00721636 2 0 -incontestible%3:00:00:: 00590923 1 0 -incontinence%1:07:00:: 04884817 2 0 -incontinence%1:22:00:: 13496972 1 0 -incontinency%1:22:00:: 13496972 1 0 -incontinent%3:00:00:: 00591953 1 0 -incontrovertibility%1:07:00:: 04755218 1 0 -incontrovertible%5:00:00:incontestable:00 00591147 2 0 -incontrovertible%5:00:00:undeniable:00 00721838 1 0 -incontrovertibleness%1:07:00:: 04755218 1 0 -incontrovertibly%4:02:00:: 00308559 1 0 -inconvenience%1:07:00:: 04722715 3 0 -inconvenience%1:07:01:: 04711435 2 1 -inconvenience%1:26:00:: 14446878 1 1 -inconvenience%2:41:01:: 02507736 1 0 -inconvenience_oneself%2:41:00:: 02507464 1 0 -inconvenient%3:00:00:: 00605128 1 1 -inconvenient%5:00:00:inopportune:00 01662384 2 0 -inconveniently%4:02:00:: 00197561 1 1 -inconvertibility%1:07:00:: 04737020 1 0 -inconvertible%3:00:00:: 00917207 1 0 -inconvertible%5:00:00:incommutable:00 00348938 2 0 -incoordination%1:09:00:: 05641720 1 0 -incorporate%2:30:00:: 00466651 1 6 -incorporate%2:35:00:: 01541000 4 0 -incorporate%2:41:00:: 02448079 3 0 -incorporate%2:42:00:: 02629535 2 1 -incorporate%5:00:00:united:00 02477557 1 0 -incorporated%5:00:00:integrated:02 01328604 3 0 -incorporated%5:00:00:organized:02 01670669 2 0 -incorporated%5:00:00:united:00 02477557 1 0 -incorporation%1:04:00:: 00373278 3 0 -incorporation%1:04:01:: 01238267 1 1 -incorporation%1:09:00:: 05753954 2 0 -incorporative%5:00:00:increasing:00 02535831 1 0 -incorporeal%3:00:00:: 00630802 1 0 -incorporeality%1:07:00:: 04761517 1 0 -incorrect%3:00:00:: 00632438 1 1 -incorrect%5:00:00:improper:00 01881478 2 0 -incorrect%5:00:00:inaccurate:00 00023854 4 0 -incorrect%5:00:00:ungrammatical:00 01146371 3 0 -incorrectly%4:02:01:: 00204125 2 0 -incorrectly%4:02:02:: 00336065 1 0 -incorrectness%1:07:01:: 04802403 2 0 -incorrectness%1:07:02:: 04901599 1 0 -incorrigible%3:00:00:: 00635456 1 0 -incorrupt%3:00:00:: 00622581 1 0 -incorrupt%5:00:00:moral:00 01549185 2 0 -incorruptibility%1:07:00:: 04870206 1 1 -incorruptible%5:00:00:incorrupt:00 00622935 1 0 -incorruption%1:07:00:: 04870040 1 0 -incorruptness%1:07:00:: 04870040 1 0 -increase%1:04:00:: 00363260 5 3 -increase%1:07:00:: 05108947 4 3 -increase%1:11:00:: 07356676 2 21 -increase%1:22:00:: 13497135 3 7 -increase%1:23:00:: 13754293 1 49 -increase%2:30:00:: 00156601 1 86 -increase%2:30:02:: 00153263 2 61 -increased%3:00:00:: 00880207 1 30 -increasing%3:00:00:: 02534877 1 14 -increasing%3:00:02:: 02537743 2 0 -increasing_monotonic%5:00:00:monotonic:00 01547595 1 0 -increasingly%4:02:00:: 00059854 1 16 -incredibility%1:07:00:: 04784142 1 0 -incredible%3:00:00:: 00645493 1 10 -incredibleness%1:07:00:: 04784142 1 0 -incredibly%4:02:00:: 00295825 1 5 -incredibly%4:02:02:: 00032180 2 0 -incredulity%1:09:00:: 05698982 1 0 -incredulous%3:00:00:: 00647070 1 0 -incredulously%4:02:00:: 00296425 1 0 -increment%1:07:00:: 05108947 2 0 -increment%1:22:00:: 13497135 1 0 -incremental%5:00:00:additive:00 00049266 1 0 -incremental_cost%1:07:00:: 05145708 1 0 -incriminate%2:32:00:: 00842989 2 0 -incriminate%2:42:00:: 02636921 1 0 -incriminating%5:00:00:inculpatory:00 00924952 1 0 -incriminatingly%4:02:00:: 00371344 1 0 -incrimination%1:10:00:: 07237758 1 0 -incriminatory%5:00:00:inculpatory:00 00924952 1 0 -incrust%2:30:00:: 00255079 3 0 -incrust%2:35:00:: 01261628 2 0 -incrust%2:35:01:: 01517355 1 0 -incrustation%1:06:00:: 03566860 3 0 -incrustation%1:17:00:: 09260218 2 0 -incrustation%1:22:00:: 13497650 1 0 -incubate%2:29:00:: 00060185 2 1 -incubate%2:30:02:: 00254150 1 1 -incubation%1:04:00:: 00658796 1 1 -incubation%1:22:00:: 13441812 3 0 -incubation%1:28:00:: 15287578 2 0 -incubation_period%1:28:00:: 15294607 1 3 -incubator%1:06:00:: 03567066 1 0 -incubus%1:18:00:: 09542868 1 1 -incubus%1:18:01:: 10202531 3 0 -incubus%1:26:00:: 13936676 2 0 -inculcate%2:31:00:: 00606600 1 1 -inculcation%1:04:00:: 00889082 1 1 -inculpability%1:26:00:: 13989863 1 0 -inculpable%5:00:00:innocent:00 01320705 1 0 -inculpableness%1:26:00:: 13989863 1 0 -inculpate%2:42:00:: 02636921 1 0 -inculpation%1:10:00:: 07237758 1 0 -inculpative%3:00:00:: 00923993 1 0 -inculpatory%3:00:00:: 00923993 1 0 -incumbency%1:04:00:: 00593512 3 0 -incumbency%1:04:01:: 01131425 2 0 -incumbency%1:28:00:: 15291498 1 0 -incumbent%1:18:00:: 10202624 1 0 -incumbent%5:00:00:current:00 00667208 3 0 -incumbent%5:00:00:necessary:00 01580601 2 0 -incumbent%5:00:00:superjacent:00 02349003 1 0 -incumbent_on%5:00:00:obligatory:00 00848983 1 0 -incumbrance%1:06:00:: 03520811 3 0 -incumbrance%1:09:00:: 05832745 2 0 -incumbrance%1:21:00:: 13403025 1 0 -incur%2:30:00:: 00522751 2 0 -incur%2:42:00:: 02721031 1 11 -incurability%1:07:01:: 04856899 1 0 -incurability%1:07:02:: 04742251 2 0 -incurable%1:18:00:: 10202763 1 0 -incurable%3:00:00:: 00994567 1 1 -incurable%5:00:00:unalterable:00 00349759 2 0 -incurableness%1:07:00:: 04856899 1 0 -incurably%4:02:00:: 00371432 2 0 -incurably%4:02:01:: 00371541 1 1 -incurious%3:00:00:: 00665587 1 0 -incurrence%1:04:00:: 01240064 1 0 -incurring%1:04:00:: 00078217 1 0 -incursion%1:04:00:: 00975452 2 0 -incursion%1:04:01:: 00049344 1 1 -incursion%1:04:02:: 00072691 3 0 -incursive%5:00:00:offensive:03 01629681 1 0 -incurvate%2:35:00:: 01280645 2 0 -incurvate%2:38:00:: 02036339 1 0 -incurvate%5:00:00:curved:00 02316524 1 0 -incurvation%1:04:00:: 00406234 2 0 -incurvation%1:25:00:: 13864965 1 0 -incurvature%1:25:00:: 13864965 1 0 -incurved%5:00:00:curved:00 02316524 1 0 -incus%1:08:00:: 05326340 1 0 -indaba%1:14:00:: 08321807 1 0 -indapamide%1:06:00:: 03567325 1 0 -indebted%5:00:01:obligated:00 01617004 1 2 -indebted%5:00:02:obligated:00 01617144 2 0 -indebtedness%1:24:00:: 13782033 2 0 -indebtedness%1:26:00:: 14490319 1 0 -indecency%1:04:01:: 00737536 2 0 -indecency%1:07:00:: 04902925 1 0 -indecent%3:00:00:: 00683185 2 1 -indecent%5:00:00:immodest:01 01539022 3 0 -indecent%5:00:00:improper:00 01880918 1 2 -indecent_exposure%1:04:00:: 00772253 1 0 -indecently%4:02:00:: 00247326 1 0 -indecipherable%5:00:00:illegible:00 01405523 1 0 -indecipherable%5:00:00:incomprehensible:00 00535042 2 0 -indecision%1:07:00:: 04866866 2 0 -indecision%1:09:00:: 05699172 1 2 -indecisive%3:00:00:: 00685483 2 0 -indecisive%3:00:01:: 00686081 1 0 -indecisive%5:00:00:indefinite:00 00702118 3 0 -indecisively%4:02:00:: 00298560 2 0 -indecisively%4:02:01:: 00298910 1 0 -indecisiveness%1:07:00:: 04866866 2 0 -indecisiveness%1:09:00:: 05699172 1 0 -indecorous%3:00:00:: 00689471 1 0 -indecorous%5:00:00:improper:00 01880918 2 0 -indecorously%4:02:00:: 00305153 1 0 -indecorousness%1:07:00:: 04902470 1 0 -indecorum%1:04:00:: 00737070 2 0 -indecorum%1:07:00:: 04902470 1 0 -indeed%4:02:02:: 00037470 2 0 -indeed%4:02:03:: 00037641 1 66 -indefatigability%1:07:00:: 04864824 1 0 -indefatigable%5:00:00:energetic:00 00874920 1 1 -indefatigableness%1:07:00:: 04864824 1 0 -indefatigably%4:02:00:: 00052489 1 0 -indefeasible%3:00:00:: 00694284 1 0 -indefensible%5:00:00:inexcusable:00 01722367 3 0 -indefensible%5:00:00:unreasonable:00 01945010 1 1 -indefensible%5:00:00:vulnerable:00 02524345 2 0 -indefinable%5:00:00:inexpressible:00 00944111 2 0 -indefinable%5:00:00:undefined:00 00697691 1 1 -indefinite%3:00:00:: 00701479 1 8 -indefinite%5:00:00:uncertain:01 00336564 2 0 -indefinite_article%1:10:00:: 06325001 1 0 -indefinite_integral%1:09:00:: 06015700 1 0 -indefinite_quantity%1:23:00:: 13576355 1 0 -indefinitely%4:02:00:: 00203783 1 3 -indefiniteness%1:07:00:: 04757864 1 0 -indefinity%1:07:00:: 04757864 1 1 -indehiscent%3:00:00:: 00702962 1 0 -indelible%5:00:00:ineradicable:00 00898488 1 1 -indelible_ink%1:27:00:: 14916962 1 0 -indelibly%4:02:00:: 00371651 1 0 -indelicacy%1:04:00:: 01224828 2 0 -indelicacy%1:07:00:: 04902165 1 0 -indelicate%3:00:02:: 00689471 2 0 -indelicate%5:00:00:indecent:00 00684054 3 0 -indelicate%5:00:00:tasteless:02 02394793 1 1 -indemnification%1:04:00:: 00259894 2 0 -indemnification%1:21:00:: 13290676 1 0 -indemnify%2:40:00:: 02250625 2 0 -indemnify%2:40:01:: 02251247 1 0 -indemnity%1:21:00:: 13290676 3 0 -indemnity%1:26:00:: 14529408 2 0 -indemnity%1:26:01:: 14539826 1 0 -indene%1:27:00:: 14824906 1 0 -indent%1:10:00:: 06529879 1 0 -indent%1:10:01:: 06389753 2 0 -indent%2:32:02:: 00885569 5 0 -indent%2:35:00:: 01279631 3 0 -indent%2:35:01:: 01279833 2 0 -indent%2:35:02:: 01277173 4 0 -indent%2:36:00:: 01745377 1 0 -indentation%1:04:00:: 00406939 4 0 -indentation%1:10:00:: 06389753 3 0 -indentation%1:22:00:: 13537894 2 0 -indentation%1:25:00:: 13908021 1 1 -indention%1:10:00:: 06389753 1 0 -indenture%1:10:01:: 06772837 3 0 -indenture%1:10:02:: 06773006 2 0 -indenture%1:10:03:: 06389753 4 0 -indenture%1:25:00:: 13908021 1 0 -indenture%2:32:00:: 00885569 1 0 -indentured%5:00:00:unfree:00 01064806 1 0 -independence%1:11:00:: 07474006 2 1 -independence%1:15:00:: 09106770 3 0 -independence%1:26:00:: 13994148 1 22 -independence_day%1:28:00:: 15190084 1 0 -independence_hall%1:06:00:: 03567474 1 0 -independency%1:26:00:: 13994148 1 0 -independent%1:18:00:: 10110421 2 0 -independent%1:18:01:: 10337488 1 0 -independent%3:00:00:: 00727564 1 26 -independent%3:00:02:: 00730215 3 0 -independent%5:00:00:free:00 01062393 2 2 -independent%5:00:00:nonpartisan:00 00731606 4 0 -independent_agency%1:14:00:: 08338847 1 0 -independent_clause%1:10:00:: 06314423 1 0 -independent_state_of_papua_new_guinea%1:15:00:: 08844557 1 0 -independent_state_of_samoa%1:15:00:: 08991491 1 0 -independent_variable%1:09:00:: 05858093 1 0 -independently%4:02:00:: 00180611 1 6 -independently%4:02:01:: 00450647 2 0 -inderal%1:06:00:: 04011409 1 0 -indescribable%5:00:00:inexpressible:00 00944111 1 1 -indescribably%4:02:00:: 00371853 1 0 -indestructibility%1:07:00:: 05043621 1 0 -indestructible%3:00:00:: 00738368 1 0 -indestructible%5:00:00:imperishable:00 01754049 2 0 -indeterminable%3:00:00:: 00739273 1 0 -indeterminable%5:00:00:incalculable:00 00302658 2 0 -indeterminably%4:02:00:: 00372174 1 0 -indeterminacy%1:07:00:: 04757864 1 0 -indeterminacy_principle%1:09:00:: 06108079 1 0 -indeterminate%3:00:01:: 00740336 1 1 -indeterminate%3:00:02:: 00741459 2 0 -indeterminate%5:00:00:equivocal:00 00896378 3 0 -indeterminate%5:00:00:inconclusive:00 00551267 5 0 -indeterminate%5:00:00:indeterminable:00 00739495 4 0 -indeterminateness%1:07:00:: 04757864 1 0 -indetermination%1:07:00:: 04757864 1 0 -index%1:08:00:: 05567381 5 0 -index%1:10:00:: 06491786 4 0 -index%1:10:01:: 06639674 2 1 -index%1:10:02:: 06812417 3 0 -index%1:24:00:: 13851067 1 1 -index%2:31:00:: 00702434 3 0 -index%2:40:00:: 02354112 2 0 -index%2:41:00:: 02472817 1 1 -index_case%1:18:00:: 10202854 1 0 -index_finger%1:08:00:: 05567381 1 4 -index_fossil%1:17:00:: 09311067 1 0 -index_fund%1:14:00:: 08071756 2 0 -index_fund%1:21:00:: 13359153 1 0 -index_number%1:10:00:: 06639674 1 0 -index_of_refraction%1:24:00:: 13824929 1 0 -index_register%1:06:00:: 03567635 1 0 -indexation%1:04:00:: 00805868 1 0 -indexer%1:18:00:: 10203016 1 0 -indexical%3:01:00:: 02937534 1 0 -indexing%1:04:00:: 01013156 1 1 -indexless%3:01:00:: 02937648 1 0 -india%1:15:00:: 08900535 1 5 -india-rubber_fig%1:20:00:: 12402840 1 0 -india-rubber_plant%1:20:00:: 12402840 1 0 -india-rubber_tree%1:20:00:: 12402840 1 0 -india_ink%1:27:00:: 14917080 1 0 -india_paper%1:27:00:: 14969421 1 0 -india_rubber%1:27:00:: 15006258 1 0 -indiaman%1:06:00:: 03567788 1 0 -indian%1:10:00:: 06906439 3 0 -indian%1:18:00:: 09645091 1 10 -indian%1:18:01:: 09673495 2 0 -indian%3:01:00:: 02928347 1 3 -indian%3:01:01:: 02928066 2 1 -indian_agent%1:18:00:: 10203135 1 0 -indian_arrowroot%1:20:00:: 12475774 1 0 -indian_banyan%1:20:00:: 12402348 1 0 -indian_bean%1:20:01:: 12537569 2 0 -indian_bean%1:20:02:: 12814643 1 0 -indian_beech%1:20:00:: 12563702 1 0 -indian_beet%1:20:00:: 12546962 1 0 -indian_blackwood%1:20:00:: 12522678 1 0 -indian_blanket%1:20:00:: 11970846 1 0 -indian_breadroot%1:20:00:: 12564613 1 0 -indian_buffalo%1:05:00:: 02408660 1 0 -indian_button_fern%1:20:00:: 13201566 1 0 -indian_capital%1:15:00:: 08903049 1 0 -indian_cherry%1:20:00:: 13141972 1 0 -indian_chickweed%1:20:00:: 11821534 1 0 -indian_chief%1:18:00:: 10203298 1 0 -indian_chieftain%1:18:00:: 10203298 1 0 -indian_chocolate%1:20:00:: 12632072 1 0 -indian_cholera%1:26:00:: 14129579 1 0 -indian_club%1:06:00:: 03567912 1 0 -indian_cobra%1:05:00:: 01748264 1 0 -indian_coral_tree%1:20:00:: 12528974 1 0 -indian_corn%1:20:00:: 12143676 1 0 -indian_cress%1:20:00:: 12719944 1 0 -indian_crocus%1:20:00:: 12079120 1 0 -indian_currant%1:20:00:: 12677841 1 0 -indian_elephant%1:05:00:: 02504013 1 0 -indian_file%1:14:00:: 08428756 1 0 -indian_giver%1:18:00:: 10203682 1 0 -indian_grackle%1:05:00:: 01578180 1 0 -indian_hemp%1:20:01:: 11767877 3 0 -indian_hemp%1:20:02:: 12397431 1 0 -indian_hemp%1:20:03:: 12178129 2 0 -indian_lettuce%1:20:00:: 11861021 1 0 -indian_lodge%1:06:00:: 03685307 1 0 -indian_lotus%1:20:00:: 11717399 1 0 -indian_madder%1:20:00:: 12661045 1 0 -indian_mallow%1:20:01:: 12173069 2 0 -indian_mallow%1:20:02:: 12186839 1 0 -indian_meal%1:13:00:: 07568095 1 0 -indian_millet%1:20:01:: 12137791 1 0 -indian_millet%1:20:02:: 12126516 2 0 -indian_monetary_unit%1:23:00:: 13703679 1 0 -indian_mongoose%1:05:00:: 02137722 1 0 -indian_mustard%1:13:00:: 07713763 2 0 -indian_mustard%1:20:00:: 11878633 1 0 -indian_mutiny%1:04:00:: 01281154 1 0 -indian_ocean%1:17:00:: 09311259 1 0 -indian_paint%1:20:00:: 11829435 2 0 -indian_paint%1:20:01:: 12821048 1 0 -indian_paintbrush%1:20:01:: 12879963 2 0 -indian_paintbrush%1:20:02:: 13235503 1 0 -indian_pea%1:20:00:: 12541403 1 0 -indian_pink%1:20:01:: 12827270 1 0 -indian_pink%1:20:02:: 12168750 2 0 -indian_pipe%1:20:00:: 12258885 1 0 -indian_plantain%1:20:00:: 11943133 1 0 -indian_poke%1:20:01:: 12464649 1 0 -indian_poke%1:20:02:: 11855435 2 0 -indian_pony%1:05:00:: 02382039 1 0 -indian_potato%1:20:01:: 11978961 2 0 -indian_potato%1:20:02:: 12507379 1 0 -indian_python%1:05:00:: 01744270 1 5 -indian_race%1:18:00:: 09648176 2 0 -indian_race%1:18:01:: 09673341 1 0 -indian_rat_snake%1:05:00:: 01733214 1 0 -indian_rattlebox%1:20:00:: 12520015 1 0 -indian_red%1:07:00:: 04973816 3 0 -indian_red%1:27:00:: 14918264 2 0 -indian_red%1:27:01:: 14918380 1 0 -indian_relish%1:13:00:: 07823105 1 0 -indian_reservation%1:15:00:: 08587328 1 0 -indian_rhinoceros%1:05:00:: 02392434 1 0 -indian_rhododendron%1:20:00:: 12349315 1 0 -indian_rhubarb%1:20:00:: 12797368 1 0 -indian_rhubarb%1:20:01:: 12603273 2 0 -indian_rice%1:13:00:: 07804771 1 0 -indian_rosewood%1:20:00:: 12522678 1 0 -indian_rupee%1:23:00:: 13703804 1 0 -indian_salad%1:20:00:: 12834938 1 0 -indian_senna%1:20:00:: 12499979 1 0 -indian_shot%1:20:00:: 12351091 1 0 -indian_summer%1:28:00:: 15185996 1 1 -indian_tapir%1:05:00:: 02393940 1 0 -indian_tick_fever%1:26:00:: 14078120 1 0 -indian_tobacco%1:20:01:: 12908093 1 0 -indian_tobacco%1:20:02:: 12168898 2 0 -indian_trail%1:06:00:: 03568008 1 0 -indian_turnip%1:20:00:: 11784497 1 0 -indiana%1:15:00:: 09084750 1 2 -indiana%1:18:00:: 11071467 2 0 -indianan%1:18:00:: 09743016 1 0 -indianapolis%1:15:00:: 09085593 1 2 -indic%1:10:00:: 06972090 1 0 -indicant%1:10:00:: 06639674 2 0 -indicant%1:10:01:: 06797169 1 0 -indicate%2:32:00:: 00928015 3 37 -indicate%2:32:01:: 00921300 1 68 -indicate%2:32:02:: 00772640 4 14 -indicate%2:32:03:: 00923793 2 65 -indicate%2:32:04:: 00928232 5 4 -indication%1:09:00:: 05816790 5 0 -indication%1:10:00:: 06797169 1 13 -indication%1:10:01:: 07231048 2 0 -indication%1:10:02:: 06797671 3 0 -indication%1:10:03:: 06671818 4 0 -indicative%1:24:00:: 13801700 1 0 -indicative%3:01:00:: 03094520 1 0 -indicative%5:00:00:revealing:00 02091300 2 0 -indicative_mood%1:24:00:: 13801700 1 0 -indicator%1:06:00:: 03568117 3 2 -indicator%1:10:00:: 06639674 1 9 -indicator%1:10:01:: 07262579 2 2 -indicator%1:27:00:: 14917208 4 0 -indicator_lamp%1:06:00:: 03939844 1 0 -indicatoridae%1:05:00:: 01842655 1 0 -indicatory%5:00:00:revealing:00 02091300 1 0 -indict%2:41:00:: 02521284 1 2 -indictability%1:26:00:: 13991688 1 0 -indictable%5:00:00:guilty:00 01322044 1 0 -indiction%1:28:00:: 15293931 1 0 -indictment%1:10:00:: 07235335 1 4 -indictment%1:10:01:: 07237409 2 1 -indie%1:14:00:: 08249854 1 0 -indie%1:14:01:: 08003306 2 0 -indie%5:00:00:independent:00 00729133 1 0 -indifference%1:07:00:: 04636610 3 1 -indifference%1:07:01:: 04673470 4 0 -indifference%1:12:00:: 07505676 1 4 -indifference%1:12:01:: 07483782 2 1 -indifferent%5:00:00:heedless:00 01194328 3 2 -indifferent%5:00:00:impartial:00 01723856 8 0 -indifferent%5:00:00:inferior:01 02340710 5 0 -indifferent%5:00:00:moderate:00 01532454 10 0 -indifferent%5:00:00:ordinary:00 01674604 9 0 -indifferent%5:00:00:unconcerned:00 00546452 2 3 -indifferent%5:00:00:unimportant:00 01280576 4 1 -indifferent%5:00:00:uninterested:00 01342949 1 4 -indifferent%5:00:00:unreactive:00 01930004 6 0 -indifferent%5:00:02:impartial:00 01724072 7 0 -indifferently%4:02:00:: 00372322 1 1 -indigen%1:18:00:: 09620794 1 0 -indigence%1:26:00:: 14493716 1 0 -indigene%1:18:00:: 09620794 1 0 -indigenous%5:00:00:native:01 01036383 1 0 -indigenous_language%1:10:00:: 06903519 1 0 -indigenously%4:02:00:: 00058491 1 0 -indigenousness%1:07:00:: 04800152 1 0 -indigent%5:00:00:poor:00 02023430 1 0 -indigestibility%1:07:00:: 04997812 1 0 -indigestible%3:00:00:: 01182747 1 0 -indigestibleness%1:07:00:: 04997812 1 0 -indigestion%1:26:00:: 14336317 1 1 -indigirka%1:17:00:: 09311710 1 0 -indigirka_river%1:17:00:: 09311710 1 0 -indignant%5:00:00:angry:00 00115494 1 2 -indignantly%4:02:00:: 00372455 1 1 -indignation%1:12:00:: 07517737 1 8 -indignity%1:04:00:: 01225299 1 1 -indigo%1:07:00:: 04970398 3 0 -indigo%1:20:00:: 12536040 2 0 -indigo%1:27:00:: 14754860 1 0 -indigo%5:00:00:colored:00 00398373 1 0 -indigo_bird%1:05:00:: 01537544 1 0 -indigo_broom%1:20:00:: 12509993 1 0 -indigo_bunting%1:05:00:: 01537544 1 0 -indigo_finch%1:05:00:: 01537544 1 0 -indigo_plant%1:20:00:: 12536040 1 0 -indigo_snake%1:05:00:: 01741232 1 0 -indigo_squill%1:20:00:: 12449934 1 0 -indigofera%1:20:00:: 12535820 1 0 -indigofera_anil%1:20:00:: 12536291 1 0 -indigofera_suffruticosa%1:20:00:: 12536291 1 0 -indigofera_tinctoria%1:20:00:: 12536040 1 0 -indigotin%1:27:00:: 14754860 1 0 -indinavir%1:06:00:: 03568430 1 0 -indira_gandhi%1:18:00:: 10989610 1 0 -indira_nehru_gandhi%1:18:00:: 10989610 1 0 -indirect%3:00:00:: 00762355 2 2 -indirect%3:00:02:: 00766457 4 0 -indirect%3:00:04:: 01417228 3 0 -indirect%5:00:00:mediate:00 00770993 1 8 -indirect%5:00:00:secondary:01 01854546 5 0 -indirect_antonym%1:10:00:: 06305838 1 0 -indirect_correlation%1:09:00:: 06033172 1 0 -indirect_discourse%1:10:00:: 07138504 1 0 -indirect_evidence%1:10:00:: 06735533 1 0 -indirect_expression%1:10:00:: 06761342 1 0 -indirect_fire%1:04:00:: 00991496 1 0 -indirect_immunofluorescence%1:04:00:: 00646024 1 0 -indirect_lighting%1:06:00:: 03568561 1 0 -indirect_object%1:10:00:: 06310713 1 0 -indirect_request%1:10:00:: 07185870 1 0 -indirect_tax%1:21:00:: 13313899 1 0 -indirect_transmission%1:17:00:: 09311885 1 0 -indirection%1:04:00:: 01026191 1 1 -indirection%1:04:01:: 00752798 2 0 -indirectly%4:02:00:: 00058359 1 7 -indirectness%1:07:00:: 04919209 1 0 -indiscernible%3:00:00:: 00582164 1 0 -indiscernible%5:00:00:imperceptible:00 01748936 2 0 -indiscipline%1:07:00:: 04884450 1 0 -indiscreet%3:00:00:: 00773109 1 0 -indiscreetly%4:02:00:: 00372914 1 0 -indiscreetness%1:09:00:: 05616092 1 0 -indiscrete%5:00:00:indivisible:00 00785889 1 0 -indiscretion%1:04:00:: 00738785 2 0 -indiscretion%1:07:00:: 04891558 1 0 -indiscriminate%3:00:00:: 00773759 2 0 -indiscriminate%5:00:00:undiscriminating:00 00776090 1 1 -indiscriminately%4:02:00:: 00070765 1 1 -indiscriminately%4:02:01:: 00433363 2 0 -indiscriminating%3:00:00:: 00775900 1 0 -indispensability%1:07:00:: 05171491 1 0 -indispensable%3:00:00:: 00903668 1 2 -indispensable%5:00:00:necessary:00 01580306 2 1 -indispensable%5:00:00:obligatory:00 00849108 3 0 -indispensableness%1:07:00:: 05171491 1 0 -indispose%2:29:00:: 00064889 3 0 -indispose%2:30:00:: 00301338 2 0 -indispose%2:31:00:: 00681125 1 0 -indisposed%5:00:00:disinclined:00 01293542 2 0 -indisposed%5:00:00:ill:01 02542325 1 0 -indisposition%1:07:00:: 04645943 2 0 -indisposition%1:26:00:: 14174455 1 0 -indisputability%1:07:00:: 04754862 1 0 -indisputable%5:00:00:certain:01 00335895 2 0 -indisputable%5:00:00:undeniable:00 00721636 1 0 -indissoluble%3:00:00:: 02265891 1 0 -indissoluble%5:00:00:permanent:00 01755418 2 0 -indistinct%3:00:00:: 00781168 1 1 -indistinctly%4:02:00:: 00211815 1 0 -indistinctness%1:07:00:: 04704346 1 0 -indistinguishability%1:07:00:: 04743024 1 0 -indistinguishable%3:00:00:: 00582876 2 0 -indistinguishable%5:00:00:same:00 02064127 1 1 -indite%2:36:00:: 01698271 1 0 -indium%1:27:00:: 14641223 1 0 -individual%1:03:00:: 00007846 1 51 -individual%1:18:00:: 10203839 2 14 -individual%3:00:00:: 00493460 1 38 -individual%5:00:00:independent:00 00729246 2 8 -individual%5:00:00:personal:00 01768086 4 2 -individual%5:00:00:unshared:00 02153174 3 4 -individual_retirement_account%1:09:00:: 05912012 1 0 -individualisation%1:09:00:: 05749402 1 0 -individualise%2:30:00:: 00388065 2 0 -individualise%2:31:00:: 00651759 1 0 -individualised%5:00:00:personal:00 01768252 1 0 -individualism%1:07:00:: 04763293 1 9 -individualism%1:09:00:: 05962936 3 1 -individualism%1:09:01:: 05963101 2 1 -individualist%1:18:00:: 09619824 1 3 -individualist%5:00:00:individual:00 00494027 1 0 -individualistic%5:00:00:capitalistic:00 00297897 2 1 -individualistic%5:00:00:individual:00 00494027 1 1 -individualistically%4:02:00:: 00058573 1 0 -individuality%1:07:00:: 04763293 1 1 -individuality%1:07:01:: 04618070 2 0 -individualization%1:09:00:: 05749402 1 0 -individualize%2:30:00:: 00388065 2 0 -individualize%2:31:00:: 00651759 1 0 -individualized%5:00:00:personal:00 01768252 1 2 -individually%4:02:00:: 00207668 1 7 -individuate%2:30:00:: 00141362 2 0 -individuate%2:42:00:: 02698178 1 0 -individuation%1:07:00:: 04763293 2 0 -individuation%1:09:00:: 05749402 1 0 -indivisible%3:00:00:: 00785684 1 0 -indivisible_by%5:00:00:indivisible:00 00786031 1 0 -indo-aryan%1:10:00:: 06972090 1 0 -indo-aryan%3:01:00:: 03074565 1 0 -indo-european%1:10:00:: 06941644 2 0 -indo-european%1:18:00:: 09635823 1 0 -indo-european%3:01:00:: 03074565 2 0 -indo-european%3:01:01:: 03074777 1 0 -indo-european_language%1:10:00:: 06941644 1 0 -indo-germanic%3:01:00:: 03074777 1 0 -indo-hittite%1:10:00:: 06941644 1 0 -indo-iranian%1:10:00:: 06971872 1 0 -indo-iranian_language%1:10:00:: 06971872 1 0 -indochina%1:15:00:: 08731606 1 0 -indochinese_peninsula%1:15:00:: 08731606 1 0 -indocile%5:00:00:unmanageable:00 01475526 1 0 -indocin%1:06:00:: 03568653 1 0 -indoctrinate%2:31:00:: 00605086 1 1 -indoctrination%1:04:00:: 00888796 1 0 -indoleacetic_acid%1:27:00:: 14918529 1 0 -indolebutyric_acid%1:27:00:: 14918654 1 0 -indolence%1:07:00:: 04637108 1 1 -indolent%5:00:00:idle:00 00294579 1 4 -indolent%5:00:00:inactive:02 00038260 2 0 -indolently%4:02:00:: 00373096 1 0 -indomethacin%1:06:00:: 03568653 1 0 -indomitability%1:07:00:: 05032028 1 0 -indomitable%5:00:00:unconquerable:00 00570099 1 0 -indonesia%1:15:00:: 08907606 1 1 -indonesian%1:10:00:: 06939198 2 0 -indonesian%1:18:00:: 09714264 1 0 -indonesian%3:01:00:: 02972194 1 0 -indonesian_borneo%1:15:00:: 08909537 1 0 -indonesian_monetary_unit%1:23:00:: 13705559 1 0 -indoor%3:00:00:: 01692786 1 2 -indoor%5:00:00:interior:00 00953127 2 0 -indoor_garden%1:06:00:: 03092166 1 0 -indoors%4:02:00:: 00110533 1 1 -indorse%2:32:00:: 00997794 4 0 -indorse%2:41:00:: 02453889 1 1 -indorse%2:41:01:: 02447793 3 0 -indorse%2:41:02:: 02556817 2 0 -indorsement%1:04:00:: 01215168 5 0 -indorsement%1:10:00:: 06687358 3 0 -indorsement%1:10:01:: 07248060 1 0 -indorsement%1:10:02:: 07180372 2 0 -indorsement%1:10:04:: 06405198 4 0 -indorser%1:18:00:: 10670668 1 0 -indorser%1:18:01:: 10057271 2 0 -indra%1:18:00:: 09526497 1 0 -indrawn%5:00:00:reserved:01 01988024 1 0 -indri%1:05:01:: 02500267 1 0 -indri_brevicaudatus%1:05:00:: 02500267 1 0 -indri_indri%1:05:00:: 02500267 1 0 -indriidae%1:05:00:: 02499990 1 0 -indris%1:05:00:: 02500267 1 0 -indubitability%1:07:00:: 04754862 1 0 -indubitable%5:00:00:unquestionable:00 01918541 1 1 -indubitably%4:02:00:: 00373216 1 0 -induce%2:31:00:: 00636441 4 2 -induce%2:32:00:: 00770437 2 6 -induce%2:36:00:: 01644050 1 11 -induce%2:36:01:: 01644522 3 5 -induce%2:36:03:: 01737417 5 0 -induced%3:00:00:: 02283188 1 1 -induced_abortion%1:04:00:: 00231161 1 0 -inducement%1:04:00:: 00159177 2 0 -inducement%1:16:00:: 09179776 1 1 -inducer%1:18:00:: 10418841 2 0 -inducer%1:27:00:: 14918784 1 0 -inducing%1:04:00:: 00159177 1 0 -inducive%5:00:00:causative:00 00324013 1 0 -induct%2:32:00:: 00829761 5 0 -induct%2:36:00:: 01737417 4 0 -induct%2:41:00:: 02384275 1 3 -induct%2:41:01:: 02390470 2 0 -induct%2:41:03:: 02384554 3 0 -inductance%1:06:00:: 03569014 2 0 -inductance%1:19:00:: 11468172 1 0 -inductance_unit%1:23:00:: 13634205 1 0 -inductee%1:18:00:: 10028765 2 0 -inductee%1:18:01:: 10203949 1 0 -induction%1:04:00:: 00238527 5 0 -induction%1:04:03:: 00156390 6 0 -induction%1:09:00:: 05774415 3 1 -induction%1:09:01:: 05827253 4 0 -induction%1:11:00:: 07453195 1 2 -induction%1:19:00:: 11468172 2 1 -induction_accelerator%1:06:00:: 02832838 1 0 -induction_coil%1:06:00:: 03568818 1 0 -induction_heating%1:22:00:: 13497784 1 0 -induction_of_labor%1:04:00:: 00238326 1 0 -inductive%3:00:00:: 01296270 2 0 -inductive%3:01:00:: 02748421 1 0 -inductive%5:00:00:causative:00 00324013 3 0 -inductive_reasoning%1:09:00:: 05774415 1 0 -inductor%1:06:00:: 03569014 1 0 -indue%2:41:00:: 02474239 1 0 -indulge%2:34:00:: 01182293 2 2 -indulge%2:34:12:: 01191645 3 1 -indulge%2:41:00:: 02570267 4 0 -indulge%2:41:01:: 02511276 1 2 -indulgence%1:04:00:: 01073241 3 0 -indulgence%1:04:01:: 00512843 4 0 -indulgence%1:04:02:: 00094500 5 0 -indulgence%1:07:00:: 04884627 1 0 -indulgence%1:07:02:: 04638585 2 0 -indulgent%3:00:00:: 01297315 1 1 -indulgent%5:00:00:favorable:02 00996343 3 0 -indulgent%5:00:00:permissive:01 01763159 2 1 -indulgently%4:02:00:: 00373531 1 0 -indulging%1:04:00:: 01073241 1 0 -indument%1:17:00:: 09312094 1 0 -indumentum%1:17:00:: 09312094 1 0 -indurate%2:30:00:: 00443116 3 0 -indurate%2:30:01:: 00443384 2 0 -indurate%2:30:02:: 00576384 1 0 -indurate%2:30:04:: 00272910 4 0 -indurate%5:00:00:insensitive:02 02107162 1 0 -indurated_clay%1:27:00:: 14917561 1 0 -induration%1:26:00:: 14110411 1 0 -induration_of_the_arteries%1:26:00:: 14108324 1 0 -indus%1:17:00:: 09312231 2 0 -indus%1:17:01:: 09312516 1 0 -indus_civilization%1:14:00:: 08290616 1 0 -indus_river%1:17:00:: 09312231 1 0 -indusial%3:01:00:: 02748542 1 0 -indusium%1:20:00:: 13094381 1 0 -industrial%3:00:00:: 01301624 2 3 -industrial%3:01:00:: 02748635 1 20 -industrial%5:00:00:blue-collar:00 02556901 3 2 -industrial%5:00:00:heavy-duty:00 01188648 4 0 -industrial-strength%5:00:00:strong:00 02322704 1 0 -industrial_air_pollution%1:26:00:: 14517852 1 0 -industrial_arts%1:04:00:: 00891345 1 0 -industrial_bank%1:14:00:: 08421291 1 0 -industrial_disease%1:26:00:: 14079493 1 0 -industrial_engineering%1:09:00:: 06134271 1 0 -industrial_enterprise%1:04:00:: 00923802 1 0 -industrial_loan_company%1:14:00:: 08421291 1 0 -industrial_management%1:09:00:: 06134271 1 0 -industrial_park%1:15:00:: 08587985 1 1 -industrial_plant%1:06:00:: 03956922 1 0 -industrial_process%1:22:00:: 13497928 1 0 -industrial_psychology%1:09:00:: 06138347 1 0 -industrial_revolution%1:28:00:: 15260277 1 2 -industrial_union%1:14:00:: 08233426 1 0 -industrial_watercourse%1:06:00:: 03569174 1 0 -industrial_workers_of_the_world%1:14:00:: 08473173 1 0 -industrialisation%1:04:00:: 00923802 1 0 -industrialise%2:30:00:: 00500356 2 0 -industrialise%2:30:01:: 00576979 1 0 -industrialised%5:00:00:industrial:00 01301992 1 0 -industrialism%1:14:00:: 08364757 1 1 -industrialist%1:18:00:: 10204177 1 0 -industrialization%1:04:00:: 00923802 1 2 -industrialize%2:30:00:: 00500356 2 0 -industrialize%2:30:01:: 00576979 1 0 -industrialized%5:00:00:industrial:00 01301992 1 0 -industrially%4:02:00:: 00124346 1 0 -industrious%5:00:00:diligent:00 00754682 1 1 -industrious%5:00:00:enterprising:00 00885099 2 0 -industriously%4:02:00:: 00373723 1 1 -industriousness%1:07:00:: 04865114 1 0 -industry%1:04:00:: 00923444 2 15 -industry%1:07:00:: 04865114 3 0 -industry%1:14:00:: 08065234 1 56 -industry_analyst%1:18:00:: 09791014 1 0 -indwell%2:42:00:: 02617196 1 0 -indweller%1:18:00:: 09620078 2 0 -indweller%1:22:00:: 13498213 1 0 -indwelling%5:00:00:inward:00 00951528 1 0 -inebriant%1:13:00:: 07884567 1 0 -inebriate%1:18:00:: 10037385 1 0 -inebriate%2:34:00:: 01190277 3 0 -inebriate%2:34:01:: 01190494 2 0 -inebriate%2:37:00:: 01812324 1 0 -inebriated%3:00:00:: 00797299 1 0 -inebriation%1:26:00:: 14018567 2 0 -inebriation%1:26:01:: 14064644 1 0 -inebriety%1:26:00:: 14018567 1 0 -inedible%3:00:00:: 00829496 1 0 -ineffable%5:00:00:inexpressible:00 00944111 1 1 -ineffable%5:00:00:sacred:00 02055617 2 0 -ineffably%4:02:00:: 00371853 1 0 -ineffective%3:00:00:: 00835609 1 0 -ineffective%5:00:00:impotent:00 01825080 2 0 -ineffective%5:00:00:incompetent:00 00511739 3 0 -ineffectively%4:02:00:: 00326564 1 1 -ineffectiveness%1:07:00:: 05207963 1 0 -ineffectual%3:00:02:: 00835609 1 0 -ineffectual%5:00:00:impotent:00 01825080 3 0 -ineffectual%5:00:00:useless:00 02497471 2 0 -ineffectuality%1:07:00:: 05207963 1 0 -ineffectually%4:02:00:: 00326146 1 0 -ineffectualness%1:07:00:: 05207963 1 0 -inefficacious%3:00:00:: 00839411 1 0 -inefficaciously%4:02:00:: 00326564 1 0 -inefficaciousness%1:07:00:: 05208291 1 0 -inefficacy%1:07:00:: 05208291 1 0 -inefficiency%1:09:00:: 05648953 1 0 -inefficient%3:00:00:: 00840902 1 0 -inefficient%5:00:00:incompetent:00 00511739 2 0 -inefficiently%4:02:00:: 00236020 1 0 -inelaborate%5:00:00:plain:01 01793557 1 0 -inelastic%3:00:00:: 00845528 1 0 -inelasticity%1:07:00:: 05023233 1 0 -inelegance%1:07:00:: 04815321 1 0 -inelegant%3:00:00:: 00851103 1 0 -inelegantly%4:02:00:: 00327756 1 0 -ineligibility%1:07:00:: 04718134 1 0 -ineligible%3:00:00:: 00852988 1 1 -ineligible%5:00:00:illegal:00 01404042 2 0 -ineloquently%4:02:00:: 00328025 1 0 -ineluctability%1:07:00:: 04753929 1 0 -ineluctable%5:00:00:inevitable:00 00343360 1 0 -ineluctably%4:02:00:: 00208557 1 0 -inept%5:00:00:incompetent:00 00511526 2 1 -inept%5:00:00:infelicitous:00 01001180 1 1 -inept%5:00:00:maladroit:00 00063953 3 0 -ineptitude%1:07:00:: 05139561 2 0 -ineptitude%1:09:00:: 05648459 1 0 -ineptly%4:02:00:: 00228253 1 1 -ineptly%4:02:01:: 00228417 2 0 -ineptness%1:07:01:: 04721058 2 0 -ineptness%1:09:00:: 05648459 1 0 -inequality%1:07:00:: 04752221 1 1 -inequitable%3:00:00:: 00958712 1 0 -inequitably%4:02:00:: 00330033 1 0 -inequity%1:07:00:: 04839676 1 0 -ineradicable%3:00:00:: 00898289 1 0 -inerrable%5:00:00:infallible:00 00965359 1 0 -inerrancy%1:07:00:: 04805304 1 0 -inerrant%5:00:00:infallible:00 00965359 1 0 -inert%5:00:00:inactive:01 00034322 3 0 -inert%5:00:00:nonmoving:00 01565038 1 2 -inert%5:00:00:unreactive:00 01930004 2 1 -inert_gas%1:27:00:: 14624369 1 0 -inertia%1:07:01:: 04635631 1 1 -inertia%1:19:00:: 11468763 2 0 -inertial%3:01:00:: 02748757 1 0 -inertial_frame%1:09:00:: 06010583 1 0 -inertial_guidance%1:04:00:: 00816841 1 0 -inertial_guidance_system%1:06:00:: 03569293 1 0 -inertial_mass%1:07:00:: 05025693 1 0 -inertial_navigation%1:04:00:: 00816841 1 0 -inertial_navigation_system%1:06:00:: 03569293 1 0 -inertial_reference_frame%1:09:00:: 06010583 1 0 -inertness%1:07:00:: 04776572 1 0 -inescapable%5:00:00:inevitable:00 00343360 1 4 -inescapably%4:02:00:: 00208557 1 1 -inessential%1:17:00:: 09312645 1 0 -inessential%3:00:00:: 00902652 1 0 -inessential%5:00:00:unnecessary:00 01582224 2 0 -inessentiality%1:07:00:: 05172815 1 0 -inestimable%5:00:00:incalculable:00 00302436 1 0 -inevitability%1:07:00:: 04754056 1 1 -inevitable%1:11:00:: 07330250 1 1 -inevitable%3:00:00:: 00343015 1 5 -inevitable%5:00:00:predictable:00 01841834 2 3 -inevitable_accident%1:11:00:: 07315350 1 0 -inevitableness%1:07:00:: 04754056 1 0 -inevitably%4:02:00:: 00112393 1 6 -inevitably%4:02:02:: 00208557 2 2 -inexact%3:00:00:: 00915787 1 0 -inexactitude%1:07:00:: 04804611 1 0 -inexactly%4:02:00:: 00368481 1 0 -inexactness%1:07:00:: 04804611 1 0 -inexcusable%3:00:00:: 01722260 1 1 -inexcusable%5:00:00:unpardonable:00 01721867 2 0 -inexcusably%4:02:00:: 00333341 1 0 -inexcusably%4:02:01:: 00238794 2 0 -inexhaustible%3:00:00:: 00925642 2 0 -inexhaustible%5:00:00:infinite:00 01008289 1 1 -inexhaustibly%4:02:00:: 00052489 1 0 -inexorability%1:07:00:: 04831437 1 0 -inexorable%5:00:00:implacable:00 01785341 1 1 -inexorable%5:00:00:inflexible:02 01024812 2 1 -inexorableness%1:07:00:: 04831437 1 0 -inexorably%4:02:00:: 00218369 1 1 -inexpedience%1:07:00:: 05165303 1 0 -inexpediency%1:07:00:: 05165303 1 0 -inexpedient%3:00:00:: 00932367 1 0 -inexpedient%5:00:00:impolitic:00 01814252 2 0 -inexpediently%4:02:00:: 00333938 1 0 -inexpensive%3:00:00:: 00934199 1 4 -inexpensively%4:02:00:: 00284183 2 0 -inexpensively%4:02:01:: 00334210 1 0 -inexpensiveness%1:07:00:: 05146739 1 0 -inexperience%1:09:00:: 05988956 1 2 -inexperienced%3:00:00:: 00936740 1 3 -inexperienced_person%1:18:00:: 09621359 1 1 -inexperient%3:00:00:: 00936740 1 0 -inexpert%5:00:00:unprofessional:00 01870636 1 0 -inexpertly%4:02:00:: 00274527 1 0 -inexpiable%5:00:00:unpardonable:00 01721953 1 0 -inexplicable%3:00:00:: 00939105 1 2 -inexplicit%3:00:00:: 00941485 1 0 -inexplicitness%1:07:00:: 04824819 1 0 -inexpressible%3:00:00:: 00943999 1 1 -inexpressive%5:00:00:uncommunicative:00 00501723 1 0 -inexpressively%4:02:00:: 00335040 1 0 -inexpugnable%5:00:00:unconquerable:00 00569918 1 0 -inexpungeable%5:00:00:ineradicable:00 00898628 1 0 -inexpungible%5:00:00:ineradicable:00 00898628 1 0 -inextensible%3:00:00:: 00945019 1 0 -inexterminable%5:00:00:ineradicable:00 00898814 1 0 -inextinguishable%3:00:00:: 00947945 1 0 -inextirpable%5:00:00:ineradicable:00 00898814 1 0 -inextricable%3:00:00:: 00945207 1 1 -inextricably%4:02:00:: 00373855 1 0 -infallibility%1:07:00:: 04805136 1 0 -infallible%3:00:00:: 00964906 1 1 -infamous%5:00:00:disreputable:00 01984411 1 2 -infamy%1:26:01:: 14441230 1 0 -infamy%1:26:02:: 14439012 2 0 -infancy%1:26:00:: 14427239 2 0 -infancy%1:28:00:: 15145586 1 3 -infant%1:18:00:: 09827683 1 3 -infant's-breath%1:20:00:: 12666369 1 0 -infant_death%1:26:00:: 14310292 1 0 -infant_deathrate%1:28:00:: 15285622 1 0 -infant_feeding%1:04:00:: 01058049 1 0 -infant_mortality%1:28:00:: 15285622 1 0 -infant_mortality_rate%1:28:00:: 15285622 1 0 -infant_prodigy%1:18:00:: 09918867 1 0 -infant_school%1:14:00:: 08277709 1 0 -infanticide%1:04:00:: 01250492 2 0 -infanticide%1:18:00:: 10204833 1 0 -infantile%3:01:00:: 02748837 2 0 -infantile%5:00:00:immature:02 01493016 1 2 -infantile%5:00:00:young:00 01648189 3 0 -infantile_amaurotic_idiocy%1:26:00:: 14169364 1 0 -infantile_autism%1:09:00:: 05897255 1 0 -infantile_fixation%1:26:00:: 14503354 1 0 -infantile_paralysis%1:26:00:: 14140176 1 0 -infantilism%1:04:00:: 00738872 2 0 -infantilism%1:26:00:: 14507787 1 0 -infantry%1:14:00:: 08390157 1 13 -infantryman%1:18:00:: 10204921 1 2 -infarct%1:26:00:: 14207561 1 0 -infarction%1:26:00:: 14207561 1 0 -infatuate%2:37:00:: 01760677 1 0 -infatuated%5:00:00:loving:00 01465668 1 0 -infatuation%1:09:00:: 05813109 3 0 -infatuation%1:12:00:: 07481084 1 2 -infatuation%1:12:02:: 07544351 2 0 -infeasibility%1:07:00:: 05153359 1 0 -infeasible%5:00:00:impossible:00 01823574 1 0 -infect%2:29:00:: 00088713 2 1 -infect%2:29:01:: 00089750 1 2 -infect%2:31:01:: 00605498 4 0 -infect%2:41:02:: 02580237 3 0 -infected%3:00:00:: 02113827 1 0 -infection%1:07:00:: 04851421 6 0 -infection%1:07:01:: 04811296 7 0 -infection%1:10:00:: 06282383 5 0 -infection%1:11:00:: 07360647 4 0 -infection%1:22:00:: 13498404 3 0 -infection%1:22:01:: 13498666 2 0 -infection%1:26:00:: 14174549 1 9 -infectious%3:00:00:: 01302811 2 4 -infectious%3:01:00:: 02833070 3 0 -infectious%5:00:00:septic:00 02114746 1 7 -infectious_agent%1:17:00:: 09312843 1 0 -infectious_disease%1:26:00:: 14127211 1 3 -infectious_hepatitis%1:26:00:: 14130661 1 2 -infectious_mononucleosis%1:26:00:: 14135277 1 0 -infectious_polyneuritis%1:26:00:: 14353622 1 0 -infectiously%4:02:00:: 00302477 1 0 -infective%5:00:00:septic:00 02114746 2 0 -infective%5:00:00:unhealthful:00 01168434 1 2 -infective_agent%1:17:00:: 09312843 1 0 -infelicitous%3:00:00:: 01000881 1 0 -infelicitous%5:00:00:unfortunate:00 01051814 2 0 -infelicitously%4:02:00:: 00339451 1 0 -infelicity%1:07:00:: 04722051 1 0 -infer%2:31:00:: 00636574 1 3 -infer%2:31:01:: 00593522 5 0 -infer%2:31:02:: 00636061 4 0 -infer%2:32:00:: 00944924 3 0 -infer%2:32:01:: 01022420 2 1 -inference%1:09:00:: 05774614 1 6 -inferential%3:01:00:: 02748952 1 1 -inferential%5:00:00:connotative:00 00723786 4 0 -inferential%5:00:00:constructive:00 00585751 5 0 -inferential%5:00:01:deductive:00 01297152 2 1 -inferential%5:00:02:deductive:00 01296961 3 0 -inferior%1:10:00:: 06820212 2 0 -inferior%1:18:00:: 10205231 1 0 -inferior%3:00:00:: 02349852 3 0 -inferior%3:00:01:: 02340213 1 2 -inferior%3:00:02:: 02345272 2 1 -inferior%3:00:03:: 02348678 4 0 -inferior%5:00:00:bottom:00 02440996 5 0 -inferior%5:00:00:nonstandard:02 02297409 6 0 -inferior_alveolar_artery%1:08:00:: 05335515 1 0 -inferior_cerebellar_artery%1:08:00:: 05340972 1 0 -inferior_cerebral_vein%1:08:00:: 05362197 1 0 -inferior_colliculus%1:08:00:: 05500465 1 0 -inferior_conjunction%1:11:00:: 07415396 1 0 -inferior_court%1:14:00:: 08332896 1 0 -inferior_epigastric_vein%1:08:00:: 05366206 1 0 -inferior_labial_artery%1:08:00:: 05349101 1 0 -inferior_labial_vein%1:08:00:: 05371829 1 0 -inferior_mesenteric_artery%1:08:00:: 05351968 1 0 -inferior_ophthalmic_vein%1:08:00:: 05375169 1 0 -inferior_planet%1:17:00:: 09312999 1 0 -inferior_pulmonary_vein%1:08:00:: 05378458 1 0 -inferior_rectus%1:08:00:: 05316674 1 0 -inferior_rectus_muscle%1:08:00:: 05316674 1 0 -inferior_thalamostriate_vein%1:08:00:: 05383348 1 0 -inferior_thyroid_vein%1:08:00:: 05383791 1 0 -inferior_vena_cava%1:08:00:: 05422852 1 0 -inferior_vocal_cord%1:08:00:: 05530871 1 0 -inferior_vocal_fold%1:08:00:: 05530871 1 0 -inferiority%1:07:00:: 04730580 2 1 -inferiority%1:07:01:: 05165175 3 0 -inferiority%1:26:00:: 13951444 1 1 -inferiority_complex%1:12:00:: 07483120 1 1 -infernal%1:18:00:: 10205344 1 0 -infernal%3:00:00:: 01303776 5 0 -infernal%3:01:00:: 02859053 1 1 -infernal%3:01:01:: 02974812 4 0 -infernal%5:00:00:cursed:00 00669942 3 1 -infernal%5:00:00:evil:00 01132515 2 1 -infernal_machine%1:06:00:: 04436832 1 0 -infernal_region%1:09:00:: 05629682 1 0 -infernal_region%1:09:01:: 05629381 2 0 -infernally%4:02:00:: 00132532 1 0 -inferno%1:09:01:: 05629682 3 0 -inferno%1:11:00:: 07303697 2 0 -inferno%1:15:00:: 08582837 1 0 -infertile%3:00:00:: 01002377 1 1 -infertility%1:26:00:: 14045507 1 0 -infest%2:38:00:: 02020413 1 2 -infest%2:42:00:: 02654585 3 0 -infest%2:42:02:: 02654686 2 0 -infestation%1:14:00:: 07996412 2 0 -infestation%1:26:00:: 14452616 1 0 -infidel%1:18:00:: 10166394 1 0 -infidelity%1:07:00:: 04878861 1 2 -infield%1:06:00:: 02799593 1 4 -infielder%1:18:00:: 10205457 1 1 -infiltrate%2:38:00:: 01913363 4 0 -infiltrate%2:38:01:: 01913707 1 2 -infiltrate%2:38:03:: 01913532 3 0 -infiltrate%2:41:00:: 02435634 2 1 -infiltration%1:04:00:: 00976698 1 5 -infiltration%1:22:00:: 13534274 2 0 -infiltrator%1:18:00:: 10205714 2 0 -infiltrator%1:18:01:: 10205833 1 0 -infinite%1:03:00:: 00028651 1 0 -infinite%3:00:00:: 01007354 1 8 -infinite%3:00:02:: 01008745 2 0 -infinite%5:00:00:absolute:00 00005718 4 0 -infinite%5:00:00:incalculable:00 00301951 3 0 -infinitely%4:02:00:: 00224941 2 1 -infinitely%4:02:01:: 00225264 1 1 -infiniteness%1:07:00:: 05209324 1 0 -infinitesimal%1:09:00:: 05864047 1 0 -infinitesimal%5:00:00:small:00 01393483 1 0 -infinitesimal_calculus%1:09:00:: 06013741 1 0 -infinitival%3:01:00:: 02937294 1 0 -infinitive%1:10:00:: 06318904 1 1 -infinitude%1:07:00:: 05209324 2 0 -infinitude%1:23:00:: 13776060 1 0 -infinity%1:28:00:: 15243976 1 0 -infirm%5:00:00:frail:00 02040233 1 0 -infirm%5:00:01:irresolute:00 01992555 2 0 -infirmary%1:06:00:: 03540595 1 1 -infirmity%1:26:00:: 14547643 1 1 -infix%1:10:00:: 06309272 1 0 -infix%2:35:00:: 01298545 2 0 -infix%2:35:01:: 01421622 1 0 -infix_notation%1:10:00:: 06814021 1 0 -inflame%2:29:00:: 00063557 5 0 -inflame%2:29:01:: 00063724 1 2 -inflame%2:37:00:: 01761120 4 0 -inflame%2:43:00:: 02761372 3 0 -inflame%2:43:01:: 02761685 2 0 -inflamed%5:00:00:adorned:00 00059028 3 0 -inflamed%5:00:00:light:06 00270496 2 1 -inflamed%5:00:00:unhealthy:00 01177105 1 1 -inflaming%1:04:00:: 01261712 1 0 -inflammability%1:07:00:: 04712568 1 0 -inflammable%5:00:00:combustible:00 00473658 1 0 -inflammation%1:04:00:: 01261712 3 0 -inflammation%1:04:01:: 00378479 4 0 -inflammation%1:26:00:: 14336539 1 0 -inflammation%1:26:01:: 14037011 2 0 -inflammatory%5:00:00:provocative:00 01897378 2 0 -inflammatory%5:00:00:unhealthy:00 01177246 1 1 -inflammatory_bowel_disease%1:26:00:: 14341091 1 0 -inflammatory_disease%1:26:00:: 14171682 1 0 -inflatable%5:00:00:expansive:00 00947520 1 0 -inflatable_cushion%1:06:00:: 02687539 1 0 -inflate%2:30:00:: 00264034 2 1 -inflate%2:30:01:: 00264386 1 1 -inflate%2:30:02:: 00256117 5 0 -inflate%2:30:10:: 00562523 4 0 -inflate%2:30:11:: 00562882 3 0 -inflated%5:00:00:pretentious:00 01850446 2 0 -inflated%5:00:01:increased:00 00881030 1 1 -inflater%1:06:00:: 03569494 1 0 -inflation%1:04:00:: 00367280 4 0 -inflation%1:07:00:: 04817923 3 0 -inflation%1:11:00:: 07409255 2 0 -inflation%1:22:00:: 13498828 1 1 -inflation_rate%1:28:00:: 15279299 1 0 -inflation_therapy%1:04:00:: 00663714 1 0 -inflationary%3:00:00:: 02538626 1 0 -inflationary_spiral%1:22:00:: 13499393 1 0 -inflator%1:06:00:: 03569494 1 0 -inflect%2:32:00:: 00982293 2 0 -inflect%2:32:01:: 00982514 1 1 -inflected%3:00:00:: 00700016 1 0 -inflected%3:00:01:: 00699651 2 0 -inflection%1:10:00:: 07083732 2 1 -inflection%1:10:01:: 07083958 4 0 -inflection%1:11:00:: 07366971 3 0 -inflection%1:24:00:: 13803782 1 1 -inflectional%3:00:00:: 00113015 1 0 -inflectional_ending%1:10:00:: 06309131 1 0 -inflectional_morphology%1:09:00:: 06178238 1 0 -inflectional_suffix%1:10:00:: 06309131 1 0 -inflexibility%1:07:01:: 04660261 2 0 -inflexibility%1:07:02:: 05024093 1 0 -inflexible%3:00:01:: 01023289 3 0 -inflexible%3:00:02:: 01024597 1 1 -inflexible%3:00:04:: 01025913 2 0 -inflexible%5:00:00:unadaptable:00 01029151 4 0 -inflexibleness%1:07:00:: 05024093 1 0 -inflexibly%4:02:00:: 00341444 1 0 -inflexion%1:24:00:: 13803782 1 0 -inflict%2:32:00:: 00748282 1 9 -infliction%1:04:00:: 01127623 1 1 -infliction%1:04:01:: 00744758 2 1 -infliction%1:09:00:: 05830059 3 0 -infliximab%1:06:00:: 03569657 2 0 -infliximab%1:27:00:: 15030022 1 0 -inflorescence%1:20:00:: 11674332 2 0 -inflorescence%1:22:00:: 13439570 1 0 -inflow%1:22:00:: 13499782 1 1 -inflowing%5:00:00:incoming:00 01295255 1 0 -influence%1:04:00:: 00157081 2 10 -influence%1:07:00:: 05194151 1 27 -influence%1:09:00:: 05692910 3 9 -influence%1:18:00:: 10461747 5 0 -influence%1:19:00:: 11414608 4 3 -influence%2:31:00:: 00701040 2 9 -influence%2:32:00:: 00776523 3 0 -influence%2:41:00:: 02536557 1 19 -influence_peddler%1:18:00:: 10094046 1 0 -influent%5:00:00:incoming:00 01295255 1 2 -influential%3:00:00:: 01830134 1 2 -influential_person%1:18:00:: 10200781 1 0 -influentially%4:02:00:: 00374045 1 0 -influenza%1:26:00:: 14122497 1 0 -influx%1:22:00:: 13499782 1 1 -info%1:10:00:: 06634376 1 0 -infolding%1:22:00:: 13501941 1 0 -infomercial%1:10:00:: 07250198 1 0 -inform%2:30:00:: 00522613 2 2 -inform%2:32:00:: 00831651 1 46 -inform%2:32:10:: 00833199 3 1 -informal%3:00:01:: 01044240 1 3 -informal%3:00:02:: 01045711 3 0 -informal%5:00:00:friendly:01 01076145 4 0 -informal%5:00:00:unofficial:00 01634027 2 1 -informality%1:07:00:: 04912052 1 0 -informality%1:07:01:: 04786994 2 0 -informally%4:02:00:: 00186246 1 2 -informally%4:02:02:: 00286667 2 0 -informant%1:18:00:: 10205985 1 1 -informant%1:18:01:: 10786033 2 0 -informatics%1:09:00:: 06142118 1 0 -information%1:07:00:: 05091527 5 0 -information%1:09:00:: 05816287 2 47 -information%1:10:00:: 06634376 1 102 -information%1:10:02:: 07237561 3 1 -information%1:14:00:: 08462320 4 0 -information_age%1:28:00:: 15254933 1 0 -information_bulletin%1:10:00:: 06682683 1 0 -information_gathering%1:04:00:: 00981711 1 0 -information_measure%1:23:00:: 13579287 1 0 -information_processing%1:09:00:: 06142118 1 0 -information_processing_system%1:06:00:: 03082979 1 0 -information_return%1:10:00:: 06549407 1 0 -information_science%1:09:00:: 06142118 1 0 -information_superhighway%1:06:00:: 04358491 1 0 -information_system%1:06:00:: 03164344 1 0 -information_technology%1:09:00:: 06134510 1 0 -information_theory%1:09:00:: 06108643 1 0 -information_warfare%1:04:00:: 00996180 1 0 -informational%3:01:00:: 02749150 1 0 -informational_rna%1:27:00:: 14832770 1 0 -informative%3:00:00:: 01304570 3 0 -informative%3:00:02:: 01325777 1 0 -informative%3:00:04:: 01323449 2 0 -informatively%4:02:00:: 00374123 1 0 -informatory%3:00:00:: 01304570 1 0 -informed%3:00:00:: 01306273 1 2 -informed_consent%1:10:00:: 07175863 1 0 -informer%1:18:00:: 10206173 1 0 -informer's_privilege%1:07:00:: 05179993 1 0 -informercial%1:10:00:: 07250198 1 0 -informing%1:10:00:: 07212190 2 0 -informing%1:10:01:: 07214994 1 0 -infotainment%1:10:00:: 06616806 1 0 -infra%4:02:00:: 00258282 1 0 -infra_dig%5:00:00:undignified:00 00752714 1 0 -infract%2:41:00:: 02566528 1 0 -infraction%1:04:00:: 00770270 1 0 -infrahuman%5:00:00:subhuman:00 01261727 1 0 -inframaxillary%3:01:00:: 02877910 1 0 -infrangible%5:00:00:inalienable:00 00094069 2 0 -infrangible%5:00:00:unbreakable:00 00709959 1 0 -infraorbital_artery%1:08:00:: 05348054 1 0 -infrared%1:07:00:: 05056811 1 1 -infrared%1:19:00:: 11469481 2 0 -infrared%5:00:00:invisible:00 02517999 1 2 -infrared_emission%1:19:00:: 11469481 1 4 -infrared_frequency%1:07:00:: 05056811 1 0 -infrared_lamp%1:06:00:: 03509394 1 0 -infrared_light%1:19:00:: 11469481 1 0 -infrared_radiation%1:19:00:: 11469481 1 1 -infrared_ray%1:19:00:: 11472820 1 0 -infrared_spectrum%1:19:00:: 11469691 1 1 -infrared_therapy%1:04:00:: 00663488 1 0 -infrasonic%5:00:00:inaudible:00 00174879 1 0 -infrastructure%1:06:00:: 03569964 2 0 -infrastructure%1:06:01:: 03570372 1 0 -infrequency%1:07:00:: 05117237 1 0 -infrequent%3:00:00:: 01067193 1 2 -infrequently%4:02:00:: 00374520 1 0 -infrigidation%1:22:00:: 13548531 1 0 -infringe%2:38:00:: 01993352 2 0 -infringe%2:41:00:: 02567147 1 0 -infringement%1:04:00:: 00770270 2 0 -infringement%1:04:01:: 00770543 1 0 -infringement_of_copyright%1:04:00:: 00770834 1 0 -infructescence%1:22:00:: 13499923 1 0 -infundibulum%1:08:00:: 05229990 1 0 -infuriate%2:37:00:: 01786906 1 3 -infuriated%5:00:00:angry:00 00114454 1 0 -infuriating%5:00:00:displeasing:00 01809245 1 2 -infuriation%1:12:00:: 07517417 1 0 -infuscate%2:30:00:: 00311865 1 0 -infuse%2:29:00:: 00086598 5 0 -infuse%2:30:00:: 00327362 4 0 -infuse%2:30:01:: 00498299 2 0 -infuse%2:30:02:: 00327654 3 0 -infuse%2:31:00:: 00606600 1 0 -infusion%1:04:00:: 00323532 3 0 -infusion%1:04:01:: 00248748 4 0 -infusion%1:22:00:: 13500023 2 0 -infusion%1:27:00:: 14848785 1 0 -infusoria%1:05:00:: 01395531 1 0 -infusorian%1:05:00:: 01395773 1 0 -inga%1:20:00:: 11761650 1 0 -inga_edulis%1:20:00:: 11761836 1 0 -inga_laurina%1:20:00:: 11762018 1 0 -ingathering%1:10:00:: 06513764 1 0 -inge%1:18:00:: 11071574 2 0 -inge%1:18:01:: 11071677 1 0 -ingeminate%2:32:00:: 00958334 1 0 -ingenious%5:00:00:adroit:00 00061885 1 0 -ingeniously%4:02:01:: 00374804 1 0 -ingeniousness%1:07:00:: 04730367 2 0 -ingeniousness%1:09:01:: 05633672 1 0 -ingenue%1:09:00:: 05929780 3 0 -ingenue%1:18:00:: 10206506 2 0 -ingenue%1:18:01:: 10206629 1 0 -ingenuity%1:07:00:: 04730367 2 0 -ingenuity%1:09:01:: 05633672 1 0 -ingenuous%3:00:00:: 01309991 1 0 -ingenuous%5:00:00:naive:00 02272670 2 0 -ingenuously%4:02:00:: 00274369 1 0 -ingenuousness%1:07:00:: 04872531 2 0 -ingenuousness%1:07:02:: 04880830 1 0 -inger%1:18:00:: 09706548 1 0 -ingerman%1:18:00:: 09706548 1 0 -ingest%2:31:00:: 00602255 2 1 -ingest%2:34:00:: 01156834 1 2 -ingesta%1:13:00:: 07560422 1 0 -ingestion%1:04:00:: 00838098 1 0 -inglenook%1:06:00:: 03017835 1 0 -inglorious%3:00:00:: 01122411 2 0 -inglorious%5:00:00:dishonorable:00 01227546 1 1 -ingloriously%4:02:00:: 00313633 1 0 -ingmar_bergman%1:18:00:: 10846224 1 0 -ingot%1:06:00:: 03570526 1 0 -ingot_iron%1:27:00:: 14801845 1 0 -ingraft%2:35:01:: 01530678 1 0 -ingrain%2:31:00:: 00728393 2 0 -ingrain%2:35:00:: 01530898 1 0 -ingrained%5:00:00:established:00 01635633 1 0 -ingraining%1:04:00:: 00889082 1 0 -ingrate%1:18:00:: 10206763 1 0 -ingratiate%2:37:00:: 01804595 1 0 -ingratiating%5:00:00:flattering:00 00908143 2 0 -ingratiating%5:00:00:pleasing:00 01808544 1 0 -ingratiatingly%4:02:00:: 00375017 1 0 -ingratiation%1:04:00:: 00160073 1 0 -ingratiatory%5:00:00:flattering:00 00908143 2 0 -ingratiatory%5:00:00:persuasive:00 01770177 1 0 -ingratitude%1:12:00:: 07504711 1 1 -ingredient%1:06:00:: 03570709 1 3 -ingredient%1:09:00:: 05868954 2 1 -ingredient%1:13:00:: 07809096 3 0 -ingres%1:18:00:: 11071838 1 0 -ingress%1:04:00:: 00049003 2 0 -ingress%1:11:00:: 07322341 1 0 -ingrian%1:10:00:: 06958522 2 0 -ingrian%1:18:00:: 09706548 1 0 -ingrid_bergman%1:18:00:: 10846400 1 0 -ingroup%1:14:00:: 08240633 1 1 -ingrowing%5:00:00:unhealthy:00 01177435 1 0 -ingrown%5:00:00:unhealthy:00 01177435 1 0 -ingrown_hair%1:08:00:: 05254627 1 0 -ingrown_toenail%1:08:00:: 05584605 1 0 -ingrowth%1:17:00:: 09313159 1 0 -inguen%1:08:00:: 05597734 1 0 -inguinal%3:01:00:: 02749257 1 0 -inguinal_canal%1:08:00:: 05386544 1 0 -inguinal_hernia%1:26:00:: 14296802 1 0 -ingurgitate%2:34:00:: 01193099 1 0 -inh%1:06:00:: 03587715 1 0 -inhabit%2:42:00:: 02649830 1 3 -inhabit%2:42:02:: 02654416 2 1 -inhabit%2:42:03:: 02755773 3 0 -inhabitable%5:00:00:livable:00 01423851 1 0 -inhabitancy%1:04:00:: 01054545 1 0 -inhabitant%1:18:00:: 09620078 1 4 -inhabitation%1:04:00:: 01054545 1 0 -inhabited%3:00:00:: 01311321 1 1 -inhalant%1:06:00:: 03571155 2 0 -inhalant%1:27:00:: 14919156 1 0 -inhalant%3:01:00:: 02749365 1 0 -inhalation%1:04:00:: 00836788 1 1 -inhalation%1:06:00:: 03571155 2 0 -inhalation_anaesthetic%1:06:00:: 03570838 1 0 -inhalation_anesthesia%1:26:00:: 14029943 1 0 -inhalation_anesthetic%1:06:00:: 03570838 1 0 -inhalation_anthrax%1:26:00:: 14072934 1 0 -inhalation_general_anaesthetic%1:06:00:: 03570838 1 0 -inhalation_general_anesthetic%1:06:00:: 03570838 1 0 -inhalator%1:06:00:: 03571280 2 0 -inhalator%1:06:01:: 04080833 1 0 -inhale%2:29:00:: 00005041 2 0 -inhale%2:34:00:: 01198779 1 0 -inhaler%1:06:00:: 03571280 1 0 -inharmonic%5:00:00:inharmonious:00 01164250 1 0 -inharmonious%3:00:00:: 01164072 1 0 -inharmonious%5:00:00:incongruous:00 00563116 2 0 -inharmoniousness%1:07:00:: 04984809 1 0 -inhere%2:42:00:: 02653564 1 0 -inhere_in%2:42:00:: 02705535 1 0 -inherence%1:26:00:: 13958138 1 0 -inherency%1:26:00:: 13958138 1 0 -inherent%5:00:00:implicit:00 00941940 2 0 -inherent%5:00:00:intrinsic:00 01348528 1 7 -inherent_aptitude%1:09:00:: 05622723 1 0 -inherently%4:02:00:: 00375163 1 0 -inherit%2:40:00:: 02315525 1 14 -inherit%2:40:01:: 02315759 3 0 -inherit%2:40:02:: 02315938 2 0 -inheritable%3:00:00:: 01313929 1 0 -inheritance%1:04:00:: 00083585 1 2 -inheritance%1:07:01:: 04921011 4 0 -inheritance%1:07:02:: 04922338 3 0 -inheritance%1:21:00:: 13262913 2 0 -inheritance_tax%1:21:00:: 13313322 1 0 -inherited%5:00:00:inheritable:00 01314537 1 0 -inherited_disease%1:26:00:: 14151139 1 0 -inherited_disorder%1:26:00:: 14151139 1 0 -inherited_wealth%1:26:00:: 14492249 1 0 -inheriting%5:00:00:inheritable:00 01315249 1 0 -inheritor%1:18:00:: 10168584 1 0 -inheritress%1:18:00:: 10169147 1 0 -inheritrix%1:18:00:: 10169147 1 0 -inhibit%2:30:00:: 00462092 1 6 -inhibit%2:30:01:: 00462689 2 1 -inhibit%2:41:00:: 02423762 4 0 -inhibit%2:41:04:: 02451679 3 0 -inhibited%3:00:00:: 01316222 1 1 -inhibition%1:04:00:: 01070892 1 3 -inhibition%1:04:01:: 00201923 4 0 -inhibition%1:07:00:: 04884072 2 2 -inhibition%1:22:00:: 13500214 3 0 -inhibitor%1:27:00:: 14724436 1 0 -inhibitory%5:00:00:restrictive:00 02004176 1 2 -inhomogeneity%1:07:00:: 04769362 1 0 -inhomogeneous%5:00:00:heterogeneous:00 01199663 1 0 -inhospitable%3:00:00:: 01242489 1 1 -inhospitable%3:00:02:: 01244195 2 0 -inhospitableness%1:07:00:: 04658942 2 0 -inhospitableness%1:26:00:: 14519942 1 0 -inhospitably%4:02:00:: 00358832 1 0 -inhospitality%1:10:00:: 06631661 1 0 -inhuman%5:00:00:inhumane:00 01263971 1 1 -inhuman%5:00:00:nonhuman:00 01260707 2 1 -inhuman_treatment%1:04:00:: 00424599 1 0 -inhumane%3:00:00:: 01262611 1 2 -inhumanely%4:02:00:: 00359438 1 0 -inhumaneness%1:07:00:: 04830102 1 0 -inhumanity%1:04:00:: 00424767 2 0 -inhumanity%1:07:00:: 04830102 1 0 -inhumation%1:11:00:: 07451687 1 0 -inhume%2:41:00:: 02456493 1 0 -inhumed%3:00:00:: 00292611 1 0 -inigo_jones%1:18:00:: 11090235 1 0 -inimical%5:00:00:hostile:01 01246388 1 0 -inimitable%5:00:00:unreproducible:00 01868470 1 0 -inimitably%4:02:00:: 00375356 1 0 -inion%1:08:00:: 05233238 1 0 -iniquitous%5:00:00:wicked:00 02514543 1 0 -iniquitously%4:02:00:: 00375513 1 0 -iniquity%1:04:00:: 00745637 2 0 -iniquity%1:04:01:: 00744616 3 0 -iniquity%1:26:00:: 14563564 1 0 -initial%1:10:00:: 06830997 1 1 -initial%2:32:00:: 00997307 1 0 -initial%5:00:00:first:00 01011973 1 21 -initial_offering%1:04:00:: 01094575 1 0 -initial_public_offering%1:04:00:: 01094575 1 0 -initial_rhyme%1:10:00:: 07097094 1 0 -initialisation%1:10:00:: 06637350 1 0 -initialise%2:30:10:: 00563552 2 0 -initialise%2:31:00:: 00700896 1 0 -initialization%1:10:00:: 06637350 1 0 -initialize%2:30:10:: 00563552 2 0 -initialize%2:31:00:: 00700896 1 0 -initially%4:02:00:: 00103194 1 9 -initiate%1:14:00:: 07948518 3 0 -initiate%1:18:00:: 10206887 2 0 -initiate%1:18:02:: 10363913 1 0 -initiate%2:30:00:: 00539546 5 0 -initiate%2:32:00:: 00964911 4 0 -initiate%2:36:00:: 01641914 2 3 -initiate%2:36:01:: 01628449 1 9 -initiate%2:41:01:: 02390470 3 2 -initiation%1:04:01:: 00240184 2 1 -initiation%1:04:02:: 00156390 4 0 -initiation%1:07:00:: 04890546 3 0 -initiation%1:11:00:: 07453195 1 2 -initiative%1:04:00:: 00239230 2 4 -initiative%1:07:00:: 04836074 1 5 -initiative%5:00:00:opening:00 01009343 1 0 -initiator%1:18:00:: 10209082 1 0 -initiatory%5:00:00:opening:00 01009343 1 0 -inject%2:29:00:: 00086320 1 4 -inject%2:30:00:: 00187268 2 3 -inject%2:32:00:: 00914769 6 0 -inject%2:34:00:: 01195201 5 0 -inject%2:34:01:: 01199213 4 0 -inject%2:35:00:: 01585523 3 0 -injectable%3:00:00:: 01317678 1 0 -injectant%1:27:00:: 14849215 1 0 -injection%1:04:00:: 00322634 1 4 -injection%1:04:01:: 00697365 3 0 -injection%1:27:00:: 14849215 2 0 -injector%1:06:00:: 03571439 1 0 -injudicious%5:00:00:imprudent:00 01899970 1 0 -injudiciously%4:02:00:: 00384912 1 0 -injudiciousness%1:07:00:: 04891558 2 0 -injudiciousness%1:09:00:: 05616092 1 0 -injun%1:18:00:: 09667205 1 0 -injunction%1:10:00:: 07170467 1 0 -injunction%1:10:01:: 06542830 2 0 -injure%2:29:00:: 00069879 1 12 -injure%2:30:04:: 00260470 3 0 -injure%2:37:00:: 01793177 2 0 -injured%3:00:00:: 01317954 1 7 -injured_party%1:18:00:: 09899671 1 0 -injurious%5:00:00:harmful:00 01161059 1 0 -injuriously%4:02:00:: 00124449 1 0 -injuriousness%1:07:00:: 05166072 1 0 -injury%1:04:01:: 00744305 5 0 -injury%1:04:02:: 00744443 4 0 -injury%1:11:00:: 07313636 2 7 -injury%1:11:01:: 07340249 3 0 -injury%1:26:00:: 14285662 1 13 -injustice%1:04:00:: 00744616 1 2 -injustice%1:07:00:: 04854389 2 0 -ink%1:08:00:: 05404598 2 0 -ink%1:27:01:: 14917635 1 2 -ink%2:30:00:: 00453680 3 0 -ink%2:30:03:: 00509100 2 0 -ink%2:32:00:: 00997020 1 0 -ink-black%5:00:00:achromatic:00 00390195 1 0 -ink-jet%3:01:00:: 02749510 1 0 -ink-jet_printer%1:06:00:: 03571942 1 0 -ink_bottle%1:06:00:: 03571625 1 0 -ink_cartridge%1:06:00:: 03571706 1 0 -ink_eraser%1:06:00:: 03571853 1 0 -inka%1:14:00:: 08488833 2 0 -inka%1:18:00:: 09727191 1 0 -inkberry%1:20:00:: 12757458 1 0 -inkblot%1:07:00:: 04695102 1 0 -inkblot_test%1:04:00:: 01007907 1 0 -inkiness%1:07:00:: 04960277 1 0 -inking_pad%1:06:00:: 03872885 1 0 -inkle%1:06:00:: 03572107 1 0 -inkling%1:09:00:: 05916306 1 1 -inkpad%1:06:00:: 03872885 1 0 -inkpot%1:06:00:: 03571625 1 0 -inkstand%1:06:00:: 03572205 2 0 -inkstand%1:06:01:: 03572321 1 0 -inkwell%1:06:00:: 03572321 1 0 -inky%5:00:00:achromatic:00 00390195 1 0 -inky-black%5:00:00:achromatic:00 00390195 1 0 -inky-cap_mushroom%1:20:00:: 13005984 1 0 -inky_cap%1:20:00:: 13005984 1 0 -inla%1:14:00:: 08024408 1 0 -inlaid%5:00:00:adorned:00 00059131 1 0 -inland%3:00:00:: 00463784 1 0 -inland%4:02:00:: 00258360 1 0 -inland_bill%1:21:00:: 13377899 1 0 -inland_passage%1:17:00:: 09313241 1 0 -inland_revenue%1:14:00:: 08143486 1 0 -inland_sea%1:17:00:: 09313454 1 0 -inlay%1:06:00:: 03572449 2 0 -inlay%1:06:01:: 03572631 1 0 -inlay%2:36:00:: 01682039 1 1 -inlet%1:06:00:: 03576617 2 0 -inlet%1:17:00:: 09313716 1 3 -inlet_manifold%1:06:00:: 03572832 1 0 -inmarriage%1:26:00:: 13965049 1 0 -inmarry%2:41:00:: 02489183 1 0 -inmate%1:18:00:: 10207370 1 2 -inmate%1:18:01:: 10207681 2 1 -inmate%1:18:02:: 09962966 3 1 -inmost%5:00:00:inner:00 00950465 2 0 -inmost%5:00:00:inward:00 00951709 1 0 -inn%1:06:00:: 03541696 1 3 -innards%1:08:00:: 05298988 1 0 -innate%3:00:02:: 01637184 1 0 -innate%5:00:00:intelligent:00 01335708 2 0 -innate%5:00:00:noninheritable:00 01315844 3 0 -innate_immunity%1:26:00:: 14528571 1 0 -innate_reflex%1:04:00:: 00863513 1 0 -innately%4:02:00:: 00375673 1 0 -innateness%1:07:00:: 04739630 1 0 -inner%3:00:00:: 00950272 2 5 -inner%5:00:00:exclusive:00 01862891 5 0 -inner%5:00:00:internal:00 00948985 6 0 -inner%5:00:00:intrinsic:00 01348835 3 3 -inner%5:00:00:inward:00 00951831 1 16 -inner%5:00:02:exclusive:00 01863066 4 2 -inner_circle%1:14:00:: 08240633 1 0 -inner_city%1:15:00:: 08543625 1 2 -inner_ear%1:08:00:: 05321307 1 0 -inner_hebrides%1:15:00:: 08893492 1 0 -inner_light%1:16:00:: 09184668 1 0 -inner_mongolia%1:15:00:: 08729971 1 0 -inner_product%1:09:00:: 05864884 1 0 -inner_resource%1:07:00:: 05155650 1 0 -inner_tube%1:06:00:: 03573005 1 0 -innermost%5:00:00:inner:00 00950465 2 0 -innermost%5:00:00:inward:00 00951709 1 0 -innersole%1:06:00:: 03573848 1 0 -innervate%2:30:00:: 00503569 2 0 -innervate%2:40:00:: 02226706 1 0 -innervation%1:07:00:: 05088189 2 0 -innervation%1:26:00:: 14036356 1 0 -inning%1:28:00:: 15255804 1 16 -innings%1:04:00:: 00457228 1 0 -innkeeper%1:18:00:: 10186774 1 0 -innocence%1:07:01:: 04880830 1 5 -innocence%1:26:00:: 13989627 3 0 -innocence%1:26:01:: 13990064 2 0 -innocency%1:07:00:: 04881033 1 0 -innocense%1:20:00:: 12881631 1 0 -innocent%1:18:00:: 09621359 1 0 -innocent%3:00:00:: 01319874 1 11 -innocent%5:00:00:harmless:00 01159907 2 2 -innocent%5:00:00:naive:00 02272670 4 1 -innocent%5:00:00:nonexistent:00 00927978 6 0 -innocent%5:00:00:unconscious:00 00572392 7 0 -innocent%5:00:00:uninformed:00 01309220 5 0 -innocent%5:00:00:virtuous:00 02513614 3 1 -innocent_iii%1:18:00:: 11071960 1 0 -innocent_viii%1:18:00:: 11072189 1 0 -innocent_xi%1:18:00:: 11072396 1 0 -innocent_xii%1:18:00:: 11072673 1 0 -innocently%4:02:00:: 00375810 2 0 -innocently%4:02:01:: 00375927 1 0 -innocents'_day%1:28:00:: 15192116 1 0 -innocuous%3:00:00:: 01611839 1 0 -innocuous%5:00:00:harmless:00 01159907 3 0 -innocuous%5:00:00:inoffensive:01 01627635 2 0 -innominate_artery%1:08:00:: 05348269 1 0 -innominate_bone%1:08:00:: 05274959 1 0 -innominate_vein%1:08:00:: 05359516 1 0 -innovate%2:36:00:: 01642437 1 1 -innovation%1:04:00:: 00240184 3 0 -innovation%1:06:00:: 03582658 1 3 -innovation%1:09:00:: 05633385 2 1 -innovational%5:00:00:original:00 01687586 1 0 -innovative%5:00:00:original:00 01687586 2 0 -innovative%5:00:00:progressive:01 01876261 1 0 -innovativeness%1:09:00:: 05634767 1 0 -innovator%1:18:00:: 10434725 1 0 -innoxious%5:00:00:innocuous:00 01611973 1 0 -innsbruck%1:15:00:: 08847024 1 0 -innuendo%1:10:00:: 07238455 1 0 -innumerable%5:00:00:incalculable:00 00301951 1 1 -innumerableness%1:07:00:: 05122419 1 0 -innumerate%3:00:00:: 00832200 1 0 -innumerous%5:00:00:incalculable:00 00301951 1 0 -inocor%1:06:00:: 02706373 1 0 -inoculant%1:27:00:: 14919272 1 0 -inoculate%2:29:00:: 00086835 3 0 -inoculate%2:29:02:: 00056093 4 0 -inoculate%2:29:04:: 00053517 5 0 -inoculate%2:30:00:: 00188252 2 0 -inoculate%2:32:00:: 00832617 1 0 -inoculating%1:04:00:: 00824054 1 0 -inoculation%1:04:00:: 00823884 1 2 -inoculator%1:18:00:: 10207514 1 0 -inoculum%1:27:00:: 14919272 1 0 -inodorous%3:00:00:: 01057775 1 0 -inoffensive%3:00:01:: 01627459 2 0 -inoffensive%3:00:02:: 01628677 1 0 -inoffensive%3:00:05:: 00908483 3 0 -inoffensively%4:02:00:: 00307134 1 0 -inoperable%3:00:00:: 01169940 2 0 -inoperable%5:00:00:unserviceable:00 02125198 1 1 -inoperative%3:00:00:: 00833575 1 0 -inopportune%3:00:00:: 01661914 1 0 -inopportunely%4:02:00:: 00376066 1 0 -inopportuneness%1:07:00:: 04723107 1 0 -inordinate%5:00:00:immoderate:00 01533974 1 0 -inordinately%4:02:00:: 00046863 1 0 -inordinateness%1:07:00:: 05118437 1 0 -inorganic%3:00:01:: 01679244 1 6 -inorganic%3:00:02:: 01680116 2 0 -inorganic_chemistry%1:09:00:: 06089314 1 0 -inorganic_compound%1:27:00:: 14919511 1 0 -inorganic_phosphate%1:27:00:: 14982265 1 0 -inorganically%4:02:02:: 00113441 1 0 -inosculate%2:35:00:: 01292169 2 0 -inosculate%2:35:01:: 01292366 1 0 -inosculation%1:08:00:: 05249420 1 0 -inosine%1:27:00:: 14919635 1 0 -inositol%1:27:00:: 14919819 1 0 -inpatient%1:18:00:: 10207681 1 0 -inpour%1:22:00:: 13500437 1 0 -inpouring%1:22:00:: 13500437 1 0 -inpouring%5:00:00:incoming:00 01295337 1 0 -input%1:06:00:: 03573154 4 0 -input%1:09:00:: 05827684 3 0 -input%1:10:00:: 07264820 1 3 -input%1:10:01:: 06765044 2 0 -input%2:35:00:: 01422539 1 0 -input_data%1:10:00:: 06510478 1 0 -input_device%1:06:00:: 03163973 1 0 -input_file%1:10:00:: 06510478 1 0 -input_program%1:10:00:: 06575092 1 0 -input_routine%1:10:00:: 06583645 1 0 -input_signal%1:10:00:: 07264820 1 0 -inquest%1:04:00:: 00637810 1 1 -inquietude%1:12:00:: 07525057 1 0 -inquire%2:31:00:: 00729378 2 4 -inquire%2:32:01:: 00784342 1 13 -inquire%2:32:02:: 00785962 3 0 -inquirer%1:18:00:: 10207831 1 0 -inquiring%1:10:00:: 07193184 1 0 -inquiring%3:00:00:: 00878829 1 2 -inquiringly%4:02:00:: 00376428 1 0 -inquiry%1:04:00:: 00636728 3 2 -inquiry%1:09:01:: 05797597 1 4 -inquiry%1:10:01:: 07193596 2 3 -inquiry_agent%1:18:00:: 10208189 1 0 -inquisition%1:10:00:: 07194676 2 0 -inquisition%1:14:00:: 08333030 1 0 -inquisitive%5:00:00:curious:00 00664879 1 1 -inquisitive%5:00:00:inquiring:00 00879259 2 0 -inquisitively%4:02:00:: 00081881 1 0 -inquisitiveness%1:09:00:: 05683197 1 0 -inquisitor%1:18:00:: 10208287 1 1 -inquisitor%1:18:01:: 10208432 2 0 -inquisitorial%3:01:00:: 03042005 1 0 -inquisitorial%5:00:00:inquiring:00 00879468 3 0 -inquisitorial%5:00:02:inquiring:00 00879624 2 0 -inquisitory%5:00:00:inquiring:00 00879918 1 0 -inr%1:14:00:: 08138686 1 0 -inroad%1:04:00:: 00977132 2 0 -inroad%1:04:01:: 00733753 1 1 -inrush%1:22:00:: 13500437 1 0 -ins%1:14:00:: 08136502 1 0 -insalubrious%5:00:00:unwholesome:00 02559534 1 0 -insalubriousness%1:07:00:: 04791928 1 0 -insalubrity%1:07:00:: 04791928 1 0 -insane%3:00:00:: 02074092 1 11 -insane%5:00:00:foolish:00 02572038 2 1 -insane_asylum%1:06:00:: 03746574 1 0 -insanely%4:02:01:: 00080890 1 2 -insanely%4:02:02:: 00046639 2 0 -insaneness%1:26:00:: 14395240 1 0 -insanitary%3:00:00:: 02113449 1 0 -insanity%1:26:00:: 14395018 1 1 -insanity_plea%1:10:00:: 06561744 1 0 -insatiable%3:00:00:: 02078399 1 0 -insatiably%4:02:00:: 00376573 2 0 -insatiably%4:02:01:: 00376761 1 0 -insatiate%3:00:00:: 02078399 1 0 -inscribe%2:32:00:: 00997133 5 0 -inscribe%2:32:02:: 00887325 7 0 -inscribe%2:32:03:: 01001008 4 0 -inscribe%2:32:04:: 00994076 6 0 -inscribe%2:35:00:: 01321895 1 2 -inscribe%2:35:01:: 01583344 3 0 -inscribe%2:41:00:: 02471327 2 0 -inscribed%5:00:00:carved:00 00317310 2 0 -inscribed%5:00:00:written:00 02285607 1 4 -inscription%1:04:00:: 00615011 3 0 -inscription%1:10:00:: 06405699 1 3 -inscription%1:10:01:: 06406317 2 0 -inscriptive%3:01:00:: 02749600 1 0 -inscriptively%4:02:00:: 00061995 1 0 -inscrutability%1:07:00:: 04822524 1 1 -inscrutable%5:00:00:inexplicable:00 00939444 1 1 -inscrutably%4:02:00:: 00062081 1 0 -insect%1:05:00:: 02159955 1 8 -insect%1:18:00:: 10792028 2 0 -insect_bite%1:26:00:: 14297870 1 0 -insect_powder%1:27:00:: 14919948 1 0 -insect_repellant%1:27:00:: 14920252 1 0 -insect_repellent%1:27:00:: 14920252 1 0 -insecta%1:05:00:: 02159271 1 0 -insectan%3:01:00:: 02832164 1 0 -insecticidal%3:01:00:: 02749690 1 0 -insecticidally%4:02:00:: 00062163 1 0 -insecticide%1:27:00:: 14919948 1 0 -insectifuge%1:27:00:: 14920252 1 0 -insectivora%1:05:00:: 01888520 1 0 -insectivore%1:05:00:: 01889074 1 0 -insectivore%1:05:02:: 01324799 2 0 -insectivorous%3:00:00:: 00315383 1 0 -insecure%3:00:01:: 02093493 3 0 -insecure%3:00:02:: 02094755 2 0 -insecure%3:00:03:: 02095786 1 0 -insecure%5:00:00:vulnerable:00 02524443 4 0 -insecurely%4:02:00:: 00377334 2 0 -insecurely%4:02:01:: 00377684 1 0 -insecureness%1:26:00:: 14544159 1 0 -insecurity%1:12:00:: 07524918 2 0 -insecurity%1:26:00:: 14541677 1 0 -inseminate%2:29:00:: 00052548 2 0 -inseminate%2:35:00:: 01501347 1 0 -insemination%1:04:00:: 00845178 2 0 -insemination%1:04:01:: 00919692 1 0 -insensate%3:00:02:: 00117754 1 0 -insensate%5:00:00:inhumane:00 01263971 2 0 -insensately%4:02:00:: 00062250 1 0 -insensibility%1:07:00:: 04844625 2 0 -insensibility%1:09:00:: 05680982 1 0 -insensible%3:00:00:: 02102796 1 0 -insensible%5:00:00:imperceptible:00 01748936 3 0 -insensible%5:00:00:unconscious:00 00572534 4 0 -insensible%5:00:01:insensitive:02 02107827 2 0 -insensibly%4:02:00:: 00411427 1 0 -insensitive%3:00:01:: 02105375 1 1 -insensitive%3:00:02:: 02106761 2 0 -insensitively%4:02:00:: 00378029 1 0 -insensitiveness%1:07:02:: 04844024 1 0 -insensitivity%1:07:02:: 04844024 1 0 -insentience%1:07:00:: 05006749 1 0 -insentient%3:00:00:: 00117754 1 0 -inseparable%5:00:00:indivisible:00 00786173 1 1 -inseparably%4:02:00:: 00450089 1 0 -insert%1:04:00:: 00384329 4 0 -insert%1:04:01:: 00384510 3 0 -insert%1:06:00:: 03573282 2 0 -insert%1:10:00:: 06396812 1 0 -insert%2:30:00:: 00187526 2 4 -insert%2:32:00:: 01025602 4 0 -insert%2:35:00:: 01421622 1 12 -insert%2:35:01:: 01389776 3 3 -insertion%1:04:00:: 00320852 2 0 -insertion%1:10:00:: 06722186 1 0 -insertional_mutagenesis%1:11:00:: 07426241 1 0 -insessores%1:05:00:: 01523656 1 0 -inset%1:06:00:: 03471190 3 0 -inset%1:06:01:: 03573282 2 0 -inset%1:06:02:: 03573464 1 1 -inset%2:30:00:: 00188466 1 0 -inshore%3:00:00:: 00464195 1 0 -inshore%4:02:00:: 00258468 1 0 -inshore%5:00:00:coastal:00 00463308 2 0 -inside%1:15:00:: 08588152 2 4 -inside%1:15:01:: 08588294 1 4 -inside%3:00:00:: 01693799 1 2 -inside%4:02:00:: 00110533 1 19 -inside%4:02:01:: 00110815 2 14 -inside%4:02:02:: 00104099 4 0 -inside%4:02:03:: 00230189 3 0 -inside%5:00:00:exclusive:00 01863066 3 0 -inside%5:00:00:inner:00 00950592 4 0 -inside%5:00:00:interior:00 00953213 2 1 -inside-out%5:00:00:turned:00 02468208 1 0 -inside_caliper%1:06:00:: 03573574 1 0 -inside_clinch%1:06:00:: 03573739 1 0 -inside_information%1:10:00:: 06635944 1 0 -inside_job%1:04:00:: 00767633 1 1 -inside_loop%1:04:00:: 00170005 1 0 -inside_out%4:02:00:: 00166964 1 3 -inside_out%4:02:01:: 00167068 2 0 -inside_passage%1:17:00:: 09313241 1 0 -inside_track%1:07:00:: 05158975 1 1 -inside_track%1:17:00:: 09314013 2 0 -insider%1:18:00:: 10208583 1 0 -insider_information%1:10:00:: 06651854 1 0 -insider_trading%1:04:00:: 00080242 1 0 -insidious%5:00:00:dangerous:00 02060106 2 0 -insidious%5:00:00:harmful:00 01162406 3 0 -insidious%5:00:00:seductive:00 02097884 1 0 -insidiously%4:02:00:: 00378212 1 2 -insidiousness%1:07:01:: 05166260 1 0 -insidiousness%1:07:02:: 04880138 2 0 -insight%1:09:00:: 05708207 4 0 -insight%1:09:01:: 05807306 3 3 -insight%1:09:02:: 05710356 1 9 -insight%1:12:00:: 07513247 2 3 -insightful%5:00:00:perceptive:00 01745296 1 0 -insightfulness%1:09:00:: 05621808 1 0 -insignia%1:10:00:: 06883073 1 0 -insignia_of_rank%1:10:00:: 06884670 1 0 -insignificance%1:07:00:: 05173579 1 1 -insignificant%3:00:00:: 02164402 4 0 -insignificant%5:00:00:meaningless:00 01498298 2 1 -insignificant%5:00:00:minor:06 01473353 3 1 -insignificant%5:00:00:unnoticeable:00 01288298 1 2 -insignificantly%4:02:00:: 00006423 2 0 -insignificantly%4:02:01:: 00506442 1 1 -insincere%3:00:00:: 02180797 1 0 -insincerely%4:02:00:: 00378665 1 0 -insincerity%1:07:00:: 04867871 1 0 -insinuate%2:32:00:: 00927711 2 0 -insinuate%2:38:00:: 02078855 1 0 -insinuating%5:00:00:flattering:00 00908143 1 0 -insinuatingly%4:02:00:: 00378888 1 0 -insinuation%1:04:00:: 00160073 2 0 -insinuation%1:10:00:: 07238455 1 4 -insipid%5:00:00:tasteless:01 02399595 1 0 -insipid%5:00:00:uninteresting:00 01345997 2 0 -insipidity%1:07:00:: 04997282 2 0 -insipidity%1:07:01:: 05206006 1 0 -insipidly%4:02:00:: 00379125 1 0 -insipidness%1:07:00:: 04997282 2 0 -insipidness%1:07:01:: 05206006 1 0 -insist%2:31:00:: 00717045 3 1 -insist%2:32:00:: 00818974 1 59 -insist%2:32:03:: 00777931 2 4 -insistence%1:04:00:: 01214557 3 0 -insistence%1:10:00:: 07191777 1 4 -insistence%1:26:00:: 14451349 2 0 -insistency%1:04:00:: 01214557 2 0 -insistency%1:26:00:: 14451349 1 0 -insistent%5:00:00:continual:00 00592539 1 2 -insistent%5:00:00:imperative:00 00712877 2 1 -insistently%4:02:00:: 00143068 1 0 -insisting%1:10:00:: 07191777 1 0 -insobriety%1:26:00:: 14018567 1 0 -insofar%4:02:00:: 00098959 1 3 -insolate%2:39:00:: 02112546 1 0 -insolation%1:04:00:: 00662972 3 0 -insolation%1:19:00:: 11509968 2 0 -insolation%1:26:00:: 14204586 1 0 -insole%1:06:00:: 03573848 1 0 -insolence%1:04:00:: 01224914 2 0 -insolence%1:07:00:: 04915866 1 3 -insolent%5:00:00:disrespectful:00 01996051 1 3 -insolent%5:00:00:unashamed:00 00155144 2 1 -insolently%4:02:00:: 00357897 1 3 -insolubility%1:07:00:: 05210373 2 0 -insolubility%1:07:01:: 05215699 1 0 -insoluble%3:00:01:: 02265891 1 9 -insoluble%3:00:02:: 02266600 2 0 -insoluble%5:00:00:hopeless:00 01230728 3 0 -insolvable%5:00:00:insoluble:02 02266771 1 0 -insolvency%1:26:00:: 14478291 1 0 -insolvent%1:18:00:: 09838370 1 0 -insolvent%3:00:00:: 02026442 1 0 -insomnia%1:26:00:: 14023374 1 0 -insomniac%1:18:00:: 10208748 1 0 -insomniac%5:00:00:awake:00 00187176 1 0 -insomuch%4:02:00:: 00379233 1 0 -insouciance%1:12:00:: 07530866 1 1 -insouciant%5:00:00:unconcerned:00 00545746 1 0 -inspan%2:35:00:: 01491186 1 0 -inspect%2:31:00:: 00697062 3 0 -inspect%2:38:00:: 01844048 2 1 -inspect%2:39:00:: 02165543 1 13 -inspection%1:04:00:: 00879271 1 1 -inspection_and_repair%1:04:00:: 00268112 1 0 -inspector%1:18:00:: 10067968 2 0 -inspector%1:18:01:: 10208847 1 4 -inspector_general%1:18:00:: 10208950 1 0 -inspector_maigret%1:18:00:: 09600764 1 0 -inspectorate%1:14:00:: 08414040 1 0 -inspectorship%1:04:00:: 00593613 1 0 -inspiration%1:04:00:: 00836788 6 0 -inspiration%1:04:01:: 01261845 5 0 -inspiration%1:06:00:: 03574004 2 1 -inspiration%1:09:00:: 05686690 4 0 -inspiration%1:09:01:: 05797473 3 0 -inspiration%1:09:02:: 05834567 1 1 -inspirational%5:00:00:sacred:00 02055773 1 1 -inspirationally%4:02:00:: 00379301 1 0 -inspiratory%3:01:00:: 03110485 1 0 -inspire%2:29:00:: 00005041 6 0 -inspire%2:31:00:: 00605310 5 0 -inspire%2:32:00:: 00771961 3 5 -inspire%2:32:01:: 00858781 4 1 -inspire%2:36:00:: 01646682 2 5 -inspire%2:37:00:: 01812720 1 9 -inspired%5:00:00:glorious:00 01121507 1 1 -inspirer%1:18:00:: 10118382 1 0 -inspiring%3:00:00:: 01323096 1 1 -inspirit%2:30:00:: 00193130 1 0 -inspiriting%5:00:00:encouraging:00 00866894 1 0 -inspissate%2:30:00:: 00431117 3 0 -inspissate%2:30:01:: 00431327 2 0 -inspissate%2:30:03:: 00431610 1 0 -inspissation%1:04:00:: 00357906 2 0 -inspissation%1:22:00:: 13500557 1 0 -inst%5:00:00:present:01 01732012 1 0 -instability%1:07:00:: 04775747 4 0 -instability%1:07:01:: 04806067 2 1 -instability%1:26:00:: 13975659 1 1 -instability%1:26:01:: 14004149 3 0 -instal%2:35:00:: 01569566 1 6 -instal%2:35:01:: 01570108 3 0 -instal%2:41:00:: 02384041 2 0 -install%2:35:00:: 01569566 1 28 -install%2:35:01:: 01570108 3 0 -install%2:41:00:: 02384041 2 1 -installation%1:04:00:: 00240938 1 4 -installation%1:06:00:: 03315023 2 3 -installation%1:11:00:: 07453195 3 0 -installation_charge%1:21:00:: 13324609 1 0 -installing%1:04:00:: 00240938 1 0 -installment%1:04:00:: 00240938 4 0 -installment%1:10:00:: 06621771 2 0 -installment%1:10:01:: 06391766 3 0 -installment%1:21:00:: 13301715 1 2 -installment_buying%1:21:00:: 13296593 1 0 -installment_credit%1:21:00:: 13375167 1 0 -installment_debt%1:21:00:: 13398859 1 0 -installment_loan%1:21:00:: 13375167 1 0 -installment_plan%1:21:00:: 13296593 1 0 -installment_rate%1:21:00:: 13281770 1 0 -instalment%1:04:00:: 00240938 3 0 -instalment%1:10:00:: 06621771 1 0 -instalment%1:10:01:: 06391766 2 0 -instance%1:09:00:: 05820620 2 4 -instance%1:11:00:: 07308889 1 18 -instance%2:32:00:: 01021128 1 0 -instancy%1:07:00:: 05172131 2 0 -instancy%1:07:01:: 05059525 1 1 -instant%1:28:00:: 15244650 2 9 -instant%1:28:01:: 15247110 1 22 -instant%5:00:00:fast:01 00979031 1 2 -instant%5:00:00:imperative:00 00712877 3 0 -instant%5:00:00:present:01 01732012 2 0 -instant_coffee%1:13:00:: 07920663 1 0 -instant_replay%1:04:00:: 01020117 1 0 -instantaneous%5:00:00:fast:01 00979031 1 1 -instantaneous_sound_pressure%1:19:00:: 11497378 1 0 -instantaneously%4:02:00:: 00033421 1 0 -instantaneousness%1:07:00:: 05059525 1 0 -instantiate%2:39:00:: 02155493 2 0 -instantiate%2:39:01:: 02155799 1 0 -instantiation%1:09:00:: 05927169 1 0 -instantly%4:02:00:: 00048739 1 10 -instantly%4:02:02:: 00033421 2 6 -instar%1:05:00:: 02309242 1 0 -instauration%1:04:00:: 00240184 1 0 -instead%4:02:00:: 00063172 1 36 -instead%4:02:01:: 00098714 2 21 -instep%1:06:00:: 03574243 2 0 -instep%1:08:00:: 05576950 1 0 -instigant%1:18:00:: 10209246 1 0 -instigate%2:32:00:: 00851239 1 2 -instigate%2:32:01:: 00771961 2 0 -instigation%1:04:00:: 00156625 2 0 -instigation%1:10:00:: 07251619 1 0 -instigative%5:00:00:provocative:00 01897378 1 0 -instigator%1:18:00:: 10209082 2 0 -instigator%1:18:01:: 10209246 1 0 -instil%2:35:01:: 01422662 1 0 -instill%2:30:00:: 00498299 5 0 -instill%2:31:00:: 00728393 3 0 -instill%2:31:01:: 00606600 4 0 -instill%2:35:01:: 01422662 2 0 -instill%2:40:00:: 02325042 1 0 -instillation%1:04:00:: 00321731 1 1 -instillation%1:27:00:: 14920728 2 0 -instillator%1:06:00:: 03574416 1 0 -instilling%1:04:00:: 00889082 1 0 -instillment%1:04:00:: 00321731 1 0 -instilment%1:04:00:: 00321731 1 0 -instinct%1:09:00:: 05622723 1 4 -instinct%5:00:00:full:00 01085442 1 0 -instinctive%5:00:00:spontaneous:00 02282985 1 0 -instinctive_reflex%1:04:00:: 00863513 1 0 -instinctively%4:02:00:: 00249043 1 1 -institute%1:14:00:: 08407330 1 1 -institute%2:36:00:: 01618547 2 5 -institute%2:36:01:: 01647229 1 9 -institution%1:04:00:: 00240184 4 1 -institution%1:06:00:: 03574555 2 2 -institution%1:06:01:: 03746574 5 0 -institution%1:09:00:: 05669350 3 1 -institution%1:14:00:: 08053576 1 26 -institutional%3:00:00:: 01231191 2 0 -institutional%3:01:00:: 02749778 1 3 -institutionalise%2:40:00:: 02348568 1 0 -institutionalised%3:00:00:: 01230850 1 0 -institutionalised%5:00:00:institutional:00 01231369 2 0 -institutionalize%2:40:00:: 02348568 1 1 -institutionalized%3:00:00:: 01230850 1 1 -institutionalized%5:00:00:institutional:00 01231369 2 1 -institutionally%4:02:00:: 00143148 1 0 -instroke%1:11:00:: 07351380 1 0 -instruct%2:32:00:: 00829107 1 9 -instruct%2:32:01:: 00749963 2 9 -instruct%2:32:02:: 00831074 3 0 -instruction%1:04:00:: 00887081 3 2 -instruction%1:04:01:: 00883297 2 5 -instruction%1:10:02:: 06584891 4 0 -instruction%1:10:04:: 06786629 1 11 -instruction_book%1:10:00:: 06413130 1 0 -instruction_execution%1:22:00:: 13477462 1 0 -instruction_manual%1:10:00:: 06422144 1 0 -instructional%3:01:00:: 02981759 1 1 -instructions%1:10:00:: 06422144 1 1 -instructive%3:00:00:: 01323449 1 1 -instructively%4:02:00:: 00374123 1 0 -instructor%1:18:00:: 10694258 1 5 -instructorship%1:04:00:: 00593732 1 0 -instructress%1:18:00:: 10209539 1 0 -instrument%1:04:00:: 00173761 2 4 -instrument%1:06:00:: 03574816 1 23 -instrument%1:06:01:: 03800933 6 0 -instrument%1:10:00:: 06479665 4 0 -instrument%1:10:01:: 06332731 5 0 -instrument%1:18:00:: 10209616 3 1 -instrument%2:32:00:: 00991151 3 0 -instrument%2:36:00:: 01707925 2 0 -instrument%2:40:00:: 02340543 1 0 -instrument_flying%1:04:00:: 00816419 1 1 -instrument_landing%1:04:00:: 00305858 1 0 -instrument_of_execution%1:06:00:: 03575691 1 0 -instrument_of_punishment%1:06:00:: 03575958 1 0 -instrument_of_torture%1:06:00:: 03576215 1 0 -instrument_panel%1:06:00:: 03098140 1 1 -instrumental%3:01:00:: 02825770 1 2 -instrumental%5:00:00:helpful:00 01196775 2 0 -instrumental_conditioning%1:09:00:: 05759487 1 0 -instrumental_music%1:04:00:: 00544731 2 0 -instrumental_music%1:10:00:: 07038767 1 0 -instrumental_role%1:10:00:: 06332731 1 0 -instrumentalism%1:09:00:: 05975051 1 0 -instrumentalist%1:18:00:: 10340312 1 1 -instrumentality%1:06:00:: 03575240 3 0 -instrumentality%1:07:00:: 05150458 2 1 -instrumentality%1:14:00:: 08146135 1 1 -instrumentate%2:36:00:: 01707925 1 0 -instrumentation%1:04:00:: 00097348 2 1 -instrumentation%1:04:01:: 00939818 4 0 -instrumentation%1:06:00:: 03575240 1 3 -instrumentation%1:10:00:: 07038910 3 0 -insubordinate%3:00:00:: 02330336 1 0 -insubordinate%5:00:00:defiant:00 00695938 2 0 -insubordination%1:04:00:: 01179393 2 0 -insubordination%1:07:00:: 04908182 1 1 -insubstantial%3:00:00:: 00625774 1 1 -insubstantial%5:00:00:unwholesome:00 02559694 2 0 -insubstantiality%1:07:00:: 04761815 2 0 -insubstantiality%1:07:02:: 05041595 1 0 -insubstantially%4:02:00:: 00379556 1 0 -insufferable%5:00:00:intolerable:00 02436025 1 0 -insufficiency%1:07:00:: 05113133 3 0 -insufficiency%1:26:00:: 14113471 2 0 -insufficiency%1:26:01:: 14463471 1 0 -insufficient%3:00:00:: 02336449 1 3 -insufficiently%4:02:00:: 00145854 1 1 -insufflate%2:29:00:: 00007193 3 0 -insufflate%2:29:01:: 00079629 2 0 -insufflate%2:40:00:: 02309801 1 0 -insufflation%1:04:00:: 00835830 2 0 -insufflation%1:22:00:: 13500674 1 0 -insulant%1:27:00:: 14920844 1 0 -insular%3:01:00:: 02750483 1 0 -insular%5:00:00:private:00 01859970 2 0 -insular%5:00:00:provincial:00 00637267 3 0 -insularism%1:26:00:: 14415518 1 0 -insularity%1:26:00:: 14415518 1 1 -insulate%2:30:00:: 00494269 2 2 -insulate%2:30:01:: 00495038 1 2 -insulating_material%1:27:00:: 14920844 1 0 -insulating_tape%1:06:00:: 03396841 1 0 -insulation%1:04:00:: 00827010 3 0 -insulation%1:26:00:: 14415518 1 1 -insulation%1:27:00:: 14920844 2 0 -insulator%1:27:00:: 14821590 1 0 -insulin%1:08:00:: 05410646 1 3 -insulin-dependent_diabetes_mellitus%1:26:00:: 14118423 1 0 -insulin_reaction%1:26:00:: 14068177 1 0 -insulin_shock%1:04:00:: 00706847 2 0 -insulin_shock%1:26:00:: 14068177 1 0 -insulin_shock_therapy%1:04:00:: 00706847 1 0 -insulin_shock_treatment%1:04:00:: 00706847 1 0 -insult%1:04:00:: 01225027 2 0 -insult%1:10:00:: 06715223 1 2 -insult%2:32:00:: 00848420 1 3 -insulting%5:00:00:disrespectful:00 01995288 1 0 -insultingly%4:02:00:: 00344312 2 0 -insultingly%4:02:01:: 00379674 1 0 -insuperable%5:00:00:insurmountable:00 02357322 2 0 -insuperable%5:00:00:unconquerable:00 00570225 1 1 -insuperably%4:02:00:: 00379816 1 0 -insupportable%5:00:00:inexcusable:00 01722367 1 0 -insurability%1:07:00:: 04717787 1 0 -insurable%5:00:00:insured:00 02096923 1 0 -insurable_interest%1:21:00:: 13287540 1 0 -insurance%1:10:00:: 06523641 2 2 -insurance%1:21:02:: 13344804 1 7 -insurance%1:26:00:: 14539826 3 0 -insurance_agent%1:18:00:: 10209731 1 0 -insurance_broker%1:18:00:: 10209731 1 0 -insurance_claim%1:04:00:: 01062136 1 1 -insurance_company%1:14:00:: 08070465 1 4 -insurance_coverage%1:21:00:: 13344664 1 0 -insurance_firm%1:14:00:: 08070465 1 1 -insurance_policy%1:10:00:: 06523641 1 0 -insurance_premium%1:21:00:: 13301620 1 1 -insurance_underwriter%1:14:00:: 08070465 1 0 -insure%2:31:00:: 00662589 1 12 -insure%2:32:00:: 00891216 3 2 -insure%2:32:04:: 00890590 2 10 -insure%2:40:00:: 02251065 4 1 -insured%1:18:00:: 10209888 1 0 -insured%3:00:00:: 02096759 1 1 -insured_person%1:18:00:: 10209888 1 0 -insurer%1:14:00:: 08070465 1 0 -insurgence%1:04:00:: 00963241 1 0 -insurgency%1:04:00:: 00963241 1 0 -insurgent%1:18:00:: 10210137 1 0 -insurgent%1:18:01:: 10150556 2 0 -insurgent%5:00:00:disloyal:00 00963283 1 0 -insurmountable%3:00:00:: 02357115 1 1 -insurmountable%5:00:02:unconquerable:00 00570225 2 0 -insurrection%1:04:00:: 00962129 1 2 -insurrectional%3:01:00:: 02919100 1 0 -insurrectionary%3:01:00:: 02919100 1 0 -insurrectionism%1:09:00:: 05872362 1 0 -insurrectionist%1:18:00:: 10210137 1 0 -insusceptible%3:00:00:: 02363358 1 0 -intact%5:00:00:uncastrated:00 02137394 3 0 -intact%5:00:00:undamaged:00 00681268 4 0 -intact%5:00:00:uninjured:00 01319434 2 1 -intact%5:00:00:whole:00 00515870 1 5 -intactness%1:26:00:: 14460407 1 0 -intaglio%1:06:00:: 03576443 2 0 -intaglio%1:10:00:: 06678784 1 0 -intaglio_printing%1:10:00:: 06678784 1 0 -intake%1:04:00:: 00838098 1 5 -intake%1:04:01:: 00836788 3 0 -intake%1:06:00:: 03576617 2 0 -intake_manifold%1:06:00:: 03576779 1 0 -intake_valve%1:06:00:: 03576955 1 0 -intangibility%1:07:00:: 04760296 1 0 -intangible%1:21:00:: 13332670 1 1 -intangible%3:00:00:: 02391867 2 0 -intangible%3:00:02:: 02392654 1 0 -intangible%5:00:00:immaterial:01 00627643 4 0 -intangible%5:00:00:unidentifiable:00 01273454 3 0 -intangible_asset%1:21:00:: 13332670 1 0 -intangibleness%1:07:00:: 04760296 1 0 -integer%1:23:00:: 13728499 1 5 -integral%1:09:00:: 06015505 1 1 -integral%3:01:00:: 02685703 3 0 -integral%5:00:00:intrinsic:00 01348528 1 3 -integral%5:00:00:whole:00 00515870 2 1 -integral_calculus%1:09:00:: 06015271 1 0 -integrality%1:26:00:: 14461231 1 0 -integrally%4:02:00:: 00500837 1 0 -integrate%2:30:00:: 00466651 1 6 -integrate%2:30:01:: 00467451 3 1 -integrate%2:31:00:: 00642980 4 0 -integrate%2:41:00:: 02481900 2 2 -integrated%3:00:00:: 01326148 3 0 -integrated%3:00:02:: 01327925 2 0 -integrated%5:00:00:organic:02 01679744 4 0 -integrated%5:00:00:united:00 02477557 1 2 -integrated_circuit%1:06:00:: 03577090 1 0 -integrated_data_processing%1:22:00:: 13500860 1 0 -integrated_logistic_support%1:04:00:: 01216738 1 0 -integrating%1:04:00:: 01202415 1 1 -integration%1:04:00:: 01202415 1 20 -integration%1:04:02:: 01237415 2 2 -integration%1:04:03:: 00871418 3 2 -integrative%3:00:00:: 01330986 1 0 -integrative%5:00:00:centralizing:00 00334940 2 0 -integrator%1:06:00:: 03577312 1 0 -integrity%1:07:00:: 04869569 2 1 -integrity%1:26:00:: 14460565 1 3 -integument%1:08:00:: 05239243 1 0 -integumental%3:01:00:: 02685785 1 0 -integumentary%3:01:00:: 02685785 1 0 -integumentary_system%1:08:00:: 05461179 1 0 -intellect%1:09:01:: 05651680 2 1 -intellect%1:09:02:: 05618849 1 5 -intellect%1:18:00:: 09621545 3 0 -intellection%1:09:00:: 05770926 1 0 -intellectual%1:18:00:: 09621545 1 3 -intellectual%3:00:00:: 01332386 2 1 -intellectual%3:00:05:: 01927455 3 0 -intellectual%5:00:00:mental:00 01780343 1 3 -intellectual_nourishment%1:09:00:: 05811214 1 0 -intellectual_property%1:21:00:: 13245338 1 0 -intellectualisation%1:22:00:: 13501059 1 0 -intellectualization%1:22:00:: 13501059 1 0 -intellectually%4:02:00:: 00189129 1 2 -intelligence%1:04:00:: 00981830 5 0 -intelligence%1:09:00:: 05617606 1 7 -intelligence%1:10:01:: 06642138 4 0 -intelligence%1:10:02:: 06642672 3 0 -intelligence%1:14:00:: 08339454 2 1 -intelligence_activity%1:04:00:: 00981830 1 0 -intelligence_agency%1:14:00:: 08339454 1 0 -intelligence_agent%1:18:00:: 10569411 1 0 -intelligence_analyst%1:18:00:: 10210512 1 0 -intelligence_cell%1:14:00:: 08359432 1 0 -intelligence_community%1:14:00:: 08340153 1 0 -intelligence_information%1:10:00:: 06642672 1 0 -intelligence_officer%1:18:00:: 10569411 1 0 -intelligence_operation%1:04:00:: 00981830 1 0 -intelligence_quotient%1:24:00:: 13821977 1 0 -intelligence_service%1:14:00:: 08339454 1 0 -intelligence_test%1:04:00:: 01007053 1 3 -intelligent%3:00:00:: 01334398 1 4 -intelligent%5:00:00:rational:00 01926089 4 1 -intelligent%5:00:00:reasonable:00 01944088 3 3 -intelligent%5:00:00:sophisticated:00 02271052 2 4 -intelligently%4:02:00:: 00202028 1 0 -intelligentsia%1:14:00:: 08387354 1 0 -intelligibility%1:07:00:: 04819496 1 0 -intelligible%3:00:00:: 01336926 2 0 -intelligible%5:00:00:comprehensible:00 00533452 1 5 -intelligibly%4:02:00:: 00202341 1 0 -intelnet%1:06:00:: 03577474 1 0 -intemperance%1:04:00:: 00747671 3 0 -intemperance%1:04:01:: 00748011 2 0 -intemperance%1:07:00:: 04885271 1 0 -intemperate%3:00:00:: 02402268 2 0 -intemperate%3:00:01:: 02403030 1 0 -intemperate%5:00:00:indulgent:00 01299173 3 0 -intemperately%4:02:00:: 00176518 1 0 -intemperateness%1:04:00:: 00747671 2 0 -intemperateness%1:04:01:: 00748011 1 0 -intend%2:31:00:: 00708538 1 32 -intend%2:31:01:: 00709379 2 6 -intend%2:32:00:: 00955148 3 4 -intend%2:32:02:: 00931852 4 0 -intended%3:00:00:: 01337486 1 3 -intended%5:00:00:attached:01 00158238 2 0 -intense%3:00:00:: 01509527 1 20 -intense%5:00:00:saturated:03 00393683 3 0 -intense%5:00:00:sharp:04 00803275 2 0 -intensely%4:02:00:: 00190959 1 3 -intensification%1:04:00:: 00374224 1 2 -intensification%1:04:01:: 00374677 2 0 -intensified%5:00:00:intense:00 01512142 1 0 -intensifier%1:10:00:: 06321054 1 0 -intensify%2:30:00:: 00226566 3 2 -intensify%2:30:01:: 00227165 2 2 -intensify%2:30:02:: 00290302 1 3 -intensify%2:30:10:: 00574735 4 0 -intensifying%3:00:00:: 01340256 1 1 -intension%1:10:00:: 06602935 1 0 -intensional%5:00:00:connotative:00 00723910 1 0 -intensity%1:07:00:: 05036394 2 12 -intensity%1:07:01:: 04975340 4 0 -intensity%1:07:02:: 04990220 3 0 -intensity%1:07:03:: 05099796 1 29 -intensity_level%1:07:00:: 05099796 1 0 -intensive%1:10:00:: 06321054 1 0 -intensive%3:00:00:: 01514374 3 0 -intensive%3:01:01:: 02858941 2 0 -intensive%5:00:00:intense:00 01512275 1 1 -intensive_care%1:04:00:: 00711265 1 0 -intensive_care_unit%1:14:00:: 08146593 1 0 -intensively%4:02:00:: 00139392 1 1 -intensiveness%1:07:00:: 05036394 1 0 -intent%1:09:00:: 05982152 1 3 -intent%1:10:00:: 06605897 2 2 -intent%5:00:00:attentive:00 00163948 1 4 -intention%1:04:00:: 00163233 3 0 -intention%1:09:00:: 05982152 1 12 -intention%1:09:01:: 05982720 2 1 -intentional%3:00:04:: 01339730 2 0 -intentional%5:00:00:intended:00 01338116 1 2 -intentionality%1:07:00:: 04661389 1 0 -intentionally%4:02:00:: 00062330 1 1 -intently%4:02:00:: 00090897 1 4 -intentness%1:07:00:: 04865722 1 1 -inter%2:41:00:: 02456493 1 1 -inter-group_communication%1:10:00:: 06261260 1 0 -inter-service_support%1:04:00:: 01217306 1 0 -inter-services_intelligence%1:14:00:: 08343534 1 0 -inter_alia%4:02:00:: 00256344 1 1 -inter_vivos_trust%1:21:00:: 13362918 1 0 -interact%2:41:00:: 02376958 1 2 -interaction%1:04:00:: 00039021 1 15 -interaction%1:19:00:: 11516113 2 0 -interactional%5:00:00:reciprocal:00 01946439 1 0 -interactive%3:00:00:: 00623356 1 0 -interactive%5:00:00:reciprocal:00 01946439 2 0 -interactive_multimedia%1:10:00:: 06261922 1 0 -interactive_multimedia_system%1:10:00:: 06261922 1 0 -interagency_support%1:04:00:: 01217052 1 0 -interahamwe%1:14:00:: 08016900 1 0 -interbank_loan%1:21:00:: 13374887 1 0 -interbrain%1:08:00:: 05496990 1 0 -interbred%5:00:01:inbred:00 01291850 1 0 -interbreed%2:35:00:: 01429953 1 0 -interbreeding%1:04:00:: 00850425 1 0 -interbreeding%1:04:01:: 00849768 2 0 -intercalary%5:00:00:additive:00 00049469 1 0 -intercalary_year%1:28:00:: 15202230 1 0 -intercalate%2:30:00:: 00189927 1 0 -intercalation%1:28:00:: 15172664 1 0 -intercapitular_vein%1:08:00:: 05370410 1 0 -intercede%2:32:00:: 00760956 1 1 -intercellular%3:01:00:: 02685946 1 0 -intercellular_substance%1:08:00:: 05582305 1 0 -intercept%1:09:00:: 06011793 1 1 -intercept%2:35:00:: 01440378 1 5 -intercept%2:39:00:: 02188848 2 0 -interception%1:04:00:: 01078279 1 0 -interception%1:04:01:: 00139758 2 0 -interceptor%1:06:00:: 03577672 1 1 -intercession%1:04:00:: 01240210 2 0 -intercession%1:10:01:: 07190188 1 0 -intercessor%1:18:00:: 09624559 1 0 -interchange%1:04:00:: 01166258 3 0 -interchange%1:04:01:: 00040152 2 1 -interchange%1:04:02:: 01093085 4 0 -interchange%1:06:00:: 03577818 1 5 -interchange%2:30:00:: 00121678 4 0 -interchange%2:30:01:: 00121926 3 0 -interchange%2:40:00:: 02257370 2 0 -interchange%2:40:01:: 02257767 1 0 -interchangeability%1:07:00:: 04735929 1 0 -interchangeable%5:00:00:replaceable:00 01978532 2 0 -interchangeable%5:00:00:symmetrical:00 02372697 1 0 -interchangeableness%1:07:00:: 04735929 1 0 -interchangeably%4:02:00:: 00379971 1 0 -interchurch%5:00:00:nonsectarian:00 02092741 1 0 -intercollegiate%5:00:00:extramural:00 01347348 1 0 -intercom%1:06:00:: 03578055 1 0 -intercom_speaker%1:06:00:: 04292572 1 0 -intercommunicate%2:32:00:: 00740577 2 0 -intercommunicate%2:42:00:: 02622812 1 0 -intercommunication%1:10:00:: 06252743 1 0 -intercommunication_system%1:06:00:: 03578055 1 0 -intercommunion%1:04:00:: 01036624 1 0 -interconnect%2:35:01:: 01355646 2 0 -interconnect%2:42:00:: 02622969 1 1 -interconnected%5:00:00:integrated:02 01328229 2 0 -interconnected%5:00:00:reticulate:00 02006933 1 0 -interconnectedness%1:26:00:: 14420240 1 1 -interconnection%1:04:00:: 00145929 2 0 -interconnection%1:26:00:: 14420240 1 0 -intercontinental%3:00:00:: 01567500 1 2 -intercontinental_ballistic_missile%1:06:00:: 03578251 1 1 -intercostal%1:08:00:: 05552287 1 0 -intercostal%3:01:00:: 02704983 1 0 -intercostal_artery%1:08:00:: 05348540 1 0 -intercostal_muscle%1:08:00:: 05552287 1 0 -intercostal_vein%1:08:00:: 05370636 1 0 -intercourse%1:04:02:: 00845523 2 0 -intercourse%1:10:00:: 07134445 1 1 -intercrossed%5:00:00:crossbred:00 01904485 1 0 -interdenominational%5:00:00:nonsectarian:00 02092741 1 0 -interdepartmental%3:01:00:: 03060114 1 1 -interdepartmental%4:02:00:: 00380104 1 0 -interdepartmental_support%1:04:00:: 01217052 1 0 -interdepend%2:42:00:: 02622033 1 0 -interdependence%1:24:00:: 13841863 1 5 -interdependency%1:24:00:: 13841863 1 0 -interdependent%5:00:00:dependent:00 00726445 1 3 -interdict%1:10:00:: 06710330 1 0 -interdict%1:10:01:: 06558088 2 0 -interdict%2:32:00:: 00795863 2 0 -interdict%2:36:00:: 01621418 1 0 -interdiction%1:10:01:: 07255299 1 0 -interdiction%1:10:02:: 06558088 2 0 -interdiction_fire%1:04:00:: 00991642 1 0 -interdisciplinary%3:01:00:: 03061250 1 0 -interest%1:04:01:: 00431552 7 3 -interest%1:07:01:: 05143077 2 32 -interest%1:07:02:: 05192451 3 21 -interest%1:09:00:: 05682950 1 62 -interest%1:14:00:: 07968702 6 5 -interest%1:21:00:: 13318584 4 14 -interest%1:21:03:: 13286801 5 7 -interest%2:37:00:: 01821423 1 5 -interest%2:42:00:: 02678663 3 1 -interest%2:42:01:: 02678438 2 2 -interest-bearing%3:01:00:: 02686046 1 0 -interest_expense%1:21:00:: 13276519 1 0 -interest_group%1:14:00:: 07968702 1 0 -interest_rate%1:21:00:: 13319032 1 1 -interested%3:00:00:: 01342237 1 25 -interested%5:00:00:involved:00 01515692 2 1 -interestedness%1:09:00:: 05671217 1 0 -interesting%3:00:00:: 01343918 1 27 -interestingly%4:02:01:: 00214761 1 1 -interestingness%1:07:00:: 05192451 1 0 -interface%1:06:00:: 03578435 1 3 -interface%1:06:01:: 03578656 4 0 -interface%1:09:00:: 05764779 3 0 -interface%1:10:00:: 06575227 2 0 -interfacial%3:01:00:: 02878680 1 0 -interfacial_surface_tension%1:19:00:: 11518168 1 0 -interfacial_tension%1:19:00:: 11518168 1 3 -interfaith%5:00:00:religious:00 01783863 1 1 -interfere%2:41:00:: 02538765 2 3 -interfere%2:41:01:: 02451912 1 11 -interference%1:04:00:: 01073995 2 3 -interference%1:04:01:: 00562643 4 1 -interference%1:06:00:: 03520811 5 0 -interference%1:10:00:: 06661562 1 3 -interference%1:11:00:: 07430211 3 1 -interference_fringe%1:19:00:: 11459748 1 0 -interfering%5:00:00:intrusive:01 01352561 1 1 -interferometer%1:06:00:: 03578981 1 4 -interferon%1:06:00:: 03579137 1 0 -intergalactic%3:01:00:: 02849367 1 0 -intergalactic_space%1:15:00:: 08501887 1 0 -interim%1:28:00:: 15272887 1 1 -interim%5:00:00:impermanent:00 01757483 1 2 -interim_overhaul%1:04:00:: 00268341 1 0 -interior%1:14:00:: 08139000 3 0 -interior%1:15:00:: 08588152 2 0 -interior%1:15:01:: 08588294 1 16 -interior%3:00:00:: 00952867 1 1 -interior%5:00:00:domestic:00 01038332 2 0 -interior%5:00:00:inland:00 00463917 5 0 -interior%5:00:00:internal:00 00949115 4 0 -interior%5:00:00:inward:00 00951831 3 0 -interior_angle%1:25:00:: 13890391 1 0 -interior_decoration%1:04:00:: 00608354 2 0 -interior_decoration%1:06:00:: 03579355 1 0 -interior_decorator%1:18:00:: 10210648 1 0 -interior_department%1:14:00:: 08139000 1 0 -interior_design%1:04:00:: 00608354 1 14 -interior_design%1:09:00:: 06124864 2 1 -interior_designer%1:18:00:: 10210648 1 10 -interior_door%1:06:00:: 03579538 1 0 -interior_live_oak%1:20:00:: 12280060 1 0 -interior_monologue%1:10:00:: 06374241 1 0 -interior_secretary%1:04:00:: 00602220 2 0 -interior_secretary%1:18:00:: 10572889 1 0 -interiorise%2:31:00:: 00729781 1 0 -interiorize%2:31:00:: 00729781 1 0 -interject%2:32:00:: 00914769 1 2 -interjection%1:04:00:: 01068184 2 0 -interjection%1:10:00:: 07125958 1 0 -interlace%2:35:00:: 01517662 1 3 -interlace%2:35:01:: 01606736 2 0 -interlaced%5:00:00:reticulate:00 02006798 1 0 -interlacing%5:00:00:complex:00 02178348 1 0 -interlaken%1:15:00:: 09032843 1 0 -interlanguage%1:10:00:: 06906116 1 0 -interlard%2:30:00:: 00189189 1 0 -interlayer%1:06:00:: 03579699 1 2 -interleaf%1:10:00:: 06256591 1 0 -interleave%2:30:00:: 00189364 3 0 -interleave%2:35:00:: 01376818 2 0 -interleave%2:40:00:: 02335262 1 0 -interleukin%1:27:00:: 14921090 1 0 -interlineal%3:01:00:: 02749971 1 0 -interlinear%3:01:00:: 02749971 1 0 -interlingua%1:10:00:: 06896304 1 0 -interlingual_rendition%1:10:00:: 06536389 1 0 -interlink%2:35:01:: 01355646 2 0 -interlink%2:42:00:: 02622969 1 0 -interlinking%5:00:00:complex:00 02178348 1 0 -interlobular%3:01:00:: 02948198 1 8 -interlock%1:04:00:: 00140393 2 0 -interlock%1:06:00:: 03579791 1 0 -interlock%2:30:00:: 00405079 1 1 -interlock%2:35:00:: 01606018 3 0 -interlock%2:35:01:: 01606736 2 0 -interlocking%1:04:00:: 00140393 2 0 -interlocking%1:11:00:: 07338114 1 0 -interlocking%5:00:00:complex:00 02178348 1 3 -interlocutor%1:18:00:: 10210911 2 0 -interlocutor%1:18:01:: 10211036 1 0 -interlocutory%3:01:00:: 02828482 1 0 -interlocutory_injunction%1:10:00:: 06543536 1 0 -interlope%2:41:00:: 02591736 1 0 -interloper%1:18:00:: 10213652 1 0 -interlude%1:04:00:: 00520880 2 0 -interlude%1:28:00:: 15272685 1 4 -interlude%2:36:00:: 01713796 1 0 -intermarriage%1:26:01:: 13965049 2 0 -intermarriage%1:26:02:: 13965274 1 1 -intermarry%2:41:00:: 02490090 1 0 -intermaxillary_suture%1:08:00:: 05544264 1 0 -intermediary%1:18:00:: 09624559 1 1 -intermediate%1:27:00:: 14921272 1 2 -intermediate%2:32:00:: 00760956 1 0 -intermediate%3:00:00:: 01014251 1 11 -intermediate%5:00:00:moderate:00 01531957 2 1 -intermediate_host%1:05:00:: 01385749 1 0 -intermediate_temporal_artery%1:08:00:: 05355146 1 0 -intermediate_vector_boson%1:17:00:: 09314128 1 0 -intermediate_wheatgrass%1:20:00:: 12106134 1 0 -intermediately%4:02:00:: 00380235 1 0 -intermediation%1:04:00:: 01240432 1 0 -intermediator%1:18:00:: 09624559 1 0 -interment%1:11:00:: 07451687 1 0 -intermeshed%5:00:00:geared:00 01100817 2 0 -intermeshed%5:00:00:tangled:00 00255453 1 1 -intermezzo%1:04:00:: 00520880 3 0 -intermezzo%1:10:00:: 07039620 2 0 -intermezzo%1:10:02:: 07040292 1 0 -interminable%5:00:00:long:02 01439784 1 4 -interminably%4:02:00:: 00283235 1 0 -intermingle%2:35:00:: 01462468 1 0 -intermission%1:04:00:: 01063578 1 1 -intermission%1:28:00:: 15271008 2 0 -intermit%2:32:00:: 00779061 1 0 -intermittence%1:07:00:: 04770720 1 0 -intermittency%1:07:00:: 04770720 1 0 -intermittent%5:00:00:sporadic:00 00593836 1 2 -intermittent_claudication%1:26:00:: 14550195 1 0 -intermittent_cramp%1:26:00:: 14310504 1 0 -intermittent_tetanus%1:26:00:: 14310504 1 0 -intermittently%4:02:00:: 00380458 1 0 -intermix%2:35:00:: 01462468 1 0 -intermixture%1:04:00:: 00380083 3 0 -intermixture%1:06:00:: 02681084 2 0 -intermixture%1:13:00:: 07882497 1 0 -intermolecular%3:01:00:: 02901178 1 1 -intermural%5:00:00:extramural:00 01347492 1 0 -intern%1:18:00:: 10211203 1 0 -intern%2:41:00:: 02446819 2 0 -intern%2:41:02:: 02495387 1 0 -internal%3:00:00:: 00948670 1 10 -internal%5:00:00:domestic:00 01038332 3 1 -internal%5:00:00:intramural:00 01346978 2 1 -internal%5:00:00:intrinsic:00 01348835 5 0 -internal%5:00:00:inward:00 00951831 4 1 -internal-combustion_engine%1:06:00:: 03579982 1 0 -internal_angle%1:25:00:: 13890391 1 0 -internal_auditor%1:18:00:: 10211463 1 0 -internal_auditory_artery%1:08:00:: 05349445 1 0 -internal_auditory_vein%1:08:00:: 05372290 1 0 -internal_carotid_artery%1:08:00:: 05339946 1 0 -internal_cerebral_vein%1:08:00:: 05362405 1 0 -internal_combustion%1:22:00:: 13501261 1 1 -internal_control%1:04:00:: 00806075 1 0 -internal_drive%1:06:00:: 03580518 1 0 -internal_ear%1:08:00:: 05321307 1 0 -internal_iliac_artery%1:08:00:: 05347631 1 0 -internal_iliac_vein%1:08:00:: 05369404 1 0 -internal_jugular_vein%1:08:00:: 05371482 1 0 -internal_maxillary_artery%1:08:00:: 05350900 1 0 -internal_medicine%1:09:00:: 06052300 1 0 -internal_organ%1:08:00:: 05298729 1 0 -internal_representation%1:09:00:: 05926676 1 0 -internal_respiration%1:04:00:: 00830811 1 0 -internal_revenue%1:21:00:: 13262077 1 2 -internal_revenue_agent%1:18:00:: 10693052 1 0 -internal_revenue_service%1:14:00:: 08143321 1 0 -internal_rhyme%1:10:00:: 07096995 1 0 -internal_secretion%1:08:00:: 05407119 1 0 -internal_spermatic_artery%1:08:00:: 05355527 1 0 -internalisation%1:09:00:: 05753954 1 0 -internalise%2:31:00:: 00729781 1 0 -internality%1:07:00:: 04621010 1 0 -internalization%1:09:00:: 05753954 1 0 -internalize%2:31:00:: 00729781 1 2 -internally%4:02:00:: 00249164 1 2 -internasal_suture%1:08:00:: 05544432 1 0 -international%1:14:00:: 08366071 1 0 -international%3:00:00:: 01568375 1 19 -international%5:00:00:foreign:02 01037885 2 8 -international_affairs%1:04:00:: 01107549 1 0 -international_ampere%1:23:00:: 13637841 1 0 -international_association_of_lions_clubs%1:14:00:: 08236027 1 0 -international_atomic_energy_agency%1:14:00:: 08300641 1 0 -international_bank_for_reconstruction_and_development%1:14:00:: 08300783 1 0 -international_candle%1:23:00:: 13641855 1 0 -international_civil_aviation_organization%1:14:00:: 08301005 1 0 -international_court_of_justice%1:14:00:: 08299307 1 0 -international_date_line%1:15:00:: 08599792 1 0 -international_development_association%1:14:00:: 08301155 1 0 -international_finance_corporation%1:14:00:: 08301307 1 0 -international_flight%1:04:00:: 00301857 1 0 -international_grandmaster%1:18:00:: 10211666 1 0 -international_intelligence_agency%1:14:00:: 08342039 1 0 -international_islamic_front_for_jihad_against_jews_and_crusaders%1:14:00:: 08024096 1 0 -international_jihad%1:04:00:: 00996673 1 0 -international_labor_organization%1:14:00:: 08301525 1 0 -international_labour_organization%1:14:00:: 08301525 1 0 -international_law%1:14:00:: 08454003 1 14 -international_law_enforcement_agency%1:14:00:: 08344551 1 0 -international_logistic_support%1:04:00:: 01216908 1 0 -international_maritime_organization%1:14:00:: 08301709 1 0 -international_mile%1:23:00:: 13651218 1 0 -international_monetary_fund%1:14:00:: 08301871 1 0 -international_morse_code%1:10:00:: 06355459 1 0 -international_nautical_mile%1:23:00:: 13660337 1 0 -international_organisation%1:14:00:: 08294696 1 0 -international_organization%1:14:00:: 08294696 1 0 -international_pitch%1:07:00:: 04985580 1 0 -international_relations_and_security_network%1:14:00:: 08344301 1 0 -international_scale%1:24:00:: 13852600 1 0 -international_society_for_krishna_consciousness%1:14:00:: 08097766 1 0 -international_system%1:23:00:: 13578267 1 0 -international_system_of_units%1:23:00:: 13578267 1 0 -international_terrorism%1:04:00:: 00764258 1 0 -international_wanted_notice%1:10:00:: 07276732 1 0 -international_waters%1:17:00:: 09302804 1 0 -internationale%1:10:00:: 07036768 1 0 -internationalisation%1:04:00:: 01151605 1 0 -internationalise%2:30:00:: 00409119 2 0 -internationalise%2:41:00:: 02441686 1 0 -internationalism%1:07:00:: 05126611 2 0 -internationalism%1:09:00:: 05963494 1 0 -internationalist%1:18:00:: 10211962 1 0 -internationalist%1:18:01:: 10211830 2 0 -internationalist%5:00:00:international:00 01569002 1 0 -internationalistic%5:00:00:international:00 01569002 1 0 -internationality%1:07:00:: 05126611 1 0 -internationalization%1:04:00:: 01151605 1 0 -internationalize%2:30:00:: 00409119 2 0 -internationalize%2:41:00:: 02441686 1 0 -internationally%4:02:00:: 00112279 1 2 -interne%1:18:00:: 10211203 1 1 -internecine%5:00:00:bloody:00 00249303 2 0 -internecine%5:00:00:internal:00 00949229 1 0 -internee%1:18:00:: 10212074 1 0 -internet%1:06:00:: 03580615 1 0 -internet_explorer%1:10:00:: 06571538 1 0 -internet_site%1:10:00:: 06359193 1 0 -internist%1:18:00:: 10212231 1 0 -internment%1:04:00:: 01146768 2 0 -internment%1:04:01:: 00086297 3 0 -internment%1:26:00:: 14000302 1 0 -internment_camp%1:06:00:: 04005912 1 0 -internode%1:20:00:: 13129826 1 0 -internship%1:04:00:: 00593837 1 0 -internuncio%1:18:00:: 10212338 1 0 -interoception%1:09:00:: 05654052 1 0 -interoceptive%3:01:00:: 02868235 1 0 -interoceptor%1:08:00:: 05299687 1 0 -interocular_lens_implant%1:06:00:: 03657239 1 0 -interoperability%1:07:00:: 05200816 1 0 -interoperable%5:00:00:practical:00 01835276 1 0 -interparietal_suture%1:08:00:: 05545047 1 0 -interpellate%2:32:00:: 00785329 1 0 -interpellation%1:04:00:: 01068184 2 0 -interpellation%1:10:00:: 06653160 1 0 -interpenetrate%2:35:00:: 01227235 1 1 -interpenetrate%2:35:03:: 01229071 2 0 -interpenetration%1:04:00:: 00051712 2 0 -interpenetration%1:04:01:: 00975658 1 0 -interpersonal%5:00:00:social:00 02249183 1 1 -interpersonal_chemistry%1:24:00:: 13840958 1 0 -interphalangeal_joint%1:08:00:: 05580286 1 0 -interphone%1:06:00:: 03580845 1 0 -interplanetary%3:01:00:: 02779310 1 0 -interplanetary_dust%1:17:00:: 09314263 1 0 -interplanetary_gas%1:17:00:: 09314398 1 0 -interplanetary_medium%1:17:00:: 09314603 1 0 -interplanetary_space%1:15:00:: 08500819 1 3 -interplay%1:04:00:: 00039211 1 2 -interpol%1:14:00:: 08344756 1 0 -interpolate%2:30:00:: 00201407 2 0 -interpolate%2:31:00:: 00642644 1 0 -interpolation%1:04:00:: 01068184 3 0 -interpolation%1:09:00:: 05802730 2 0 -interpolation%1:10:00:: 06722186 1 0 -interpose%2:32:00:: 00914769 3 1 -interpose%2:38:00:: 02079051 2 1 -interpose%2:38:01:: 02098964 1 2 -interpose%2:41:00:: 02538765 4 0 -interposition%1:04:00:: 01068184 1 1 -interposition%1:04:01:: 01052215 2 0 -interpret%2:31:00:: 00623151 1 17 -interpret%2:31:02:: 00593852 6 1 -interpret%2:32:00:: 00938247 2 10 -interpret%2:32:01:: 00959827 5 1 -interpret%2:36:00:: 01732172 3 2 -interpret%2:36:01:: 01686132 4 2 -interpretable%5:00:00:explicable:00 00938979 1 1 -interpretation%1:04:02:: 00100543 2 3 -interpretation%1:09:00:: 05766247 4 1 -interpretation%1:09:01:: 05928513 1 11 -interpretation%1:10:00:: 07170753 3 1 -interpretative%5:00:00:instructive:00 01325017 1 1 -interpretative_dance%1:04:00:: 00531886 1 0 -interpretative_dancing%1:04:00:: 00531886 1 0 -interpreted%5:00:00:understood:00 01378671 1 0 -interpreter%1:10:00:: 06575932 4 0 -interpreter%1:18:00:: 10638385 3 0 -interpreter%1:18:01:: 10212501 1 4 -interpreter%1:18:02:: 10212780 2 1 -interpreting%1:09:00:: 05766247 1 1 -interpretive%5:00:00:instructive:00 01325017 1 0 -interpretive_dance%1:04:00:: 00531886 1 0 -interpretive_dancing%1:04:00:: 00531886 1 0 -interpretive_program%1:10:00:: 06575932 1 0 -interracial%5:00:00:integrated:00 01326652 2 0 -interracial%5:00:00:racial:00 01928019 1 0 -interracially%4:02:00:: 00135902 1 0 -interred%3:00:00:: 00292611 1 0 -interreflection%1:19:00:: 11469827 1 0 -interregnum%1:28:00:: 15273522 1 0 -interrelate%2:31:00:: 00713818 2 0 -interrelate%2:42:00:: 02724417 1 0 -interrelated%5:00:00:reticulate:00 02006933 1 2 -interrelatedness%1:24:00:: 13844212 1 0 -interrelation%1:24:00:: 13844212 1 5 -interrelationship%1:24:00:: 13844212 1 1 -interrogate%2:32:00:: 00788184 2 0 -interrogate%2:32:09:: 00973530 1 0 -interrogation%1:10:00:: 07193958 3 0 -interrogation%1:10:01:: 07196682 1 1 -interrogation%1:10:02:: 07193596 4 0 -interrogation%1:10:03:: 07280599 2 0 -interrogation_point%1:10:00:: 06844040 1 0 -interrogative%1:10:00:: 07196682 1 1 -interrogative%1:24:00:: 13802485 2 0 -interrogative%3:00:00:: 00687163 2 0 -interrogative%3:01:00:: 03094740 1 0 -interrogative_mood%1:24:00:: 13802485 1 0 -interrogative_sentence%1:10:00:: 07196682 1 0 -interrogatively%4:02:00:: 00081881 2 0 -interrogatively%4:02:01:: 00380590 1 0 -interrogator%1:18:00:: 10208287 1 0 -interrogatory%1:10:00:: 07193958 1 0 -interrogatory%3:00:00:: 00687163 1 0 -interrupt%1:19:00:: 11447532 1 0 -interrupt%2:30:00:: 00364064 4 0 -interrupt%2:30:03:: 00520019 2 5 -interrupt%2:30:04:: 00520357 3 3 -interrupt%2:32:00:: 00778275 1 14 -interrupted%5:00:00:broken:02 00290593 2 0 -interrupted%5:00:00:discontinued:00 00598413 1 0 -interrupted_fern%1:20:00:: 12953712 1 0 -interrupter%1:06:00:: 03580990 1 0 -interruption%1:04:00:: 00383952 1 5 -interruption%1:11:00:: 07367812 2 1 -interruption%1:28:00:: 15271008 3 0 -interscholastic%5:00:00:extramural:00 01347613 1 0 -interschool%5:00:00:extramural:00 01347613 1 0 -intersect%2:38:00:: 02023396 1 7 -intersectant%5:00:00:crossed:01 00653044 1 0 -intersecting%5:00:00:crossed:01 00653044 1 1 -intersection%1:04:00:: 00146111 6 0 -intersection%1:06:00:: 03581125 2 2 -intersection%1:09:00:: 05866653 1 10 -intersection%1:09:01:: 05764365 5 0 -intersection%1:14:00:: 07999068 4 0 -intersection%1:25:00:: 13873213 3 0 -intersection_point%1:09:00:: 05866653 1 0 -intersex%1:18:00:: 10172080 1 0 -intersexual%5:00:00:androgynous:00 01479376 2 0 -intersexual%5:00:00:sexual:00 02135595 1 0 -interspecies%3:00:00:: 01341920 1 2 -interspecific%3:00:00:: 01341920 1 0 -interspersal%1:04:00:: 00381326 1 0 -intersperse%2:30:00:: 00189189 2 0 -intersperse%2:35:02:: 01376620 1 0 -interspersion%1:04:00:: 00381326 1 0 -interstate%1:06:00:: 03581354 1 0 -interstate%3:00:00:: 01569549 1 1 -interstate_commerce_commission%1:14:00:: 08125993 1 0 -interstate_highway%1:06:00:: 03581354 1 0 -interstellar%3:01:00:: 02803150 1 4 -interstellar_medium%1:17:00:: 09314829 1 0 -interstellar_space%1:15:00:: 08500989 1 0 -interstice%1:06:00:: 03581531 2 0 -interstice%1:08:00:: 05230171 1 0 -interstitial%3:01:00:: 02828564 1 2 -interstitial_cell-stimulating_hormone%1:27:00:: 14749272 1 0 -interstitial_fluid%1:08:00:: 05398298 1 0 -interstitial_plasma_cell_pneumonia%1:26:00:: 14149290 1 0 -interstitial_pneumonia%1:26:00:: 14148510 1 0 -interstitial_tissue%1:08:00:: 05268797 1 0 -interstratify%2:30:00:: 00506827 1 0 -intertidal%3:01:00:: 02705138 1 0 -intertribal%3:01:00:: 03075087 1 0 -intertrigo%1:12:00:: 07496291 1 0 -intertwine%2:35:00:: 01517662 1 2 -intertwine%2:36:00:: 01673472 3 0 -intertwine%2:36:01:: 01674544 2 0 -interval%1:07:00:: 05089947 3 1 -interval%1:09:00:: 06016276 2 8 -interval%1:10:00:: 06858779 4 0 -interval%1:28:00:: 15269513 1 10 -intervene%2:30:00:: 00340846 3 0 -intervene%2:41:00:: 02538765 1 4 -intervene%2:42:00:: 02691489 2 0 -intervening%5:00:00:middle:00 00816160 1 0 -intervenor%1:18:00:: 10213034 1 0 -intervention%1:04:00:: 01240210 1 3 -intervention%1:04:01:: 01023242 4 0 -intervention%1:04:02:: 00658082 5 0 -intervention%1:04:03:: 01052215 3 0 -intervention%1:10:00:: 06661562 2 0 -interventricular_foramen%1:08:00:: 05545611 1 0 -intervertebral%3:01:00:: 02750377 1 0 -intervertebral_disc%1:08:00:: 05284617 1 0 -intervertebral_disk%1:08:00:: 05284617 1 0 -intervertebral_vein%1:08:00:: 05370781 1 0 -interview%1:10:00:: 07143624 2 3 -interview%1:10:01:: 07196075 1 7 -interview%2:32:00:: 00808855 1 8 -interview%2:32:01:: 00809248 2 5 -interview%2:32:02:: 00809453 3 1 -interviewee%1:18:00:: 10213180 1 0 -interviewer%1:18:00:: 10213319 1 2 -interweave%2:35:00:: 01518924 1 2 -interwoven%5:00:00:complex:00 02178348 1 2 -intestacy%1:26:00:: 13936441 1 0 -intestate%3:00:00:: 02444894 1 0 -intestinal%3:01:00:: 02935530 1 0 -intestinal_artery%1:08:00:: 05346714 2 0 -intestinal_artery%1:08:01:: 05348698 1 0 -intestinal_bypass%1:04:00:: 00681299 1 0 -intestinal_colic%1:26:00:: 14325732 1 0 -intestinal_flora%1:05:00:: 01328515 1 0 -intestinal_flu%1:26:00:: 14172005 1 0 -intestinal_juice%1:08:00:: 05407772 1 0 -intestinal_obstruction%1:26:00:: 14508149 1 0 -intestine%1:08:00:: 05534333 1 0 -inti%1:23:00:: 13680381 1 0 -intifada%1:04:00:: 00963447 1 0 -intifadah%1:04:00:: 00963447 1 0 -intima%1:08:00:: 05319760 1 2 -intimacy%1:07:02:: 04655442 1 1 -intimacy%1:12:00:: 07530124 3 0 -intimacy%1:26:00:: 13931889 2 0 -intimal%3:01:00:: 03008785 1 1 -intimate%1:18:00:: 09954639 1 0 -intimate%2:32:00:: 00927711 1 4 -intimate%2:32:01:: 00930806 2 2 -intimate%5:00:00:close:02 00453308 1 5 -intimate%5:00:00:experienced:00 00936038 6 0 -intimate%5:00:00:friendly:01 01076145 2 1 -intimate%5:00:00:intrinsic:00 01348835 5 0 -intimate%5:00:00:sexy:00 02132735 4 0 -intimate%5:00:02:close:02 00453053 3 1 -intimate_apparel%1:06:00:: 03673450 1 0 -intimately%4:02:00:: 00160659 1 2 -intimately%4:02:01:: 00015007 2 0 -intimation%1:09:00:: 05916306 2 0 -intimation%1:10:00:: 07163988 1 0 -intimidate%2:37:00:: 01781180 1 2 -intimidate%2:37:01:: 01819554 2 1 -intimidated%5:00:00:timid:00 00252733 1 0 -intimidating%5:00:00:discouraging:00 00867520 1 0 -intimidation%1:04:01:: 01222477 1 2 -intimidation%1:10:00:: 07254057 4 0 -intimidation%1:12:00:: 07523760 3 0 -intimidation%1:12:01:: 07542881 2 0 -into_the_bargain%4:02:00:: 00080304 1 0 -into_the_wind%4:02:00:: 00094893 1 0 -intolerable%3:00:00:: 02435671 1 3 -intolerably%4:02:00:: 00055518 1 0 -intolerance%1:07:02:: 04642746 1 1 -intolerance%1:09:00:: 06205154 2 0 -intolerant%3:00:00:: 02436622 1 0 -intolerant%5:00:00:narrow-minded:00 00288237 2 0 -intolerantly%4:02:00:: 00380675 2 0 -intolerantly%4:02:01:: 00380994 1 0 -intonate%2:32:00:: 01049737 2 0 -intonate%2:32:01:: 01050313 1 0 -intonation%1:04:00:: 01254685 3 0 -intonation%1:04:01:: 01254978 2 0 -intonation%1:04:02:: 00544842 4 0 -intonation%1:10:00:: 07084166 1 9 -intonation_pattern%1:10:00:: 07084428 1 0 -intone%2:32:00:: 01049737 2 1 -intone%2:32:01:: 01050313 3 0 -intone%2:32:04:: 01066775 1 2 -intoned%5:00:00:rhythmical:00 02020609 1 0 -intoxicant%1:06:00:: 03581634 2 0 -intoxicant%1:13:00:: 07884567 1 0 -intoxicant%5:00:00:alcoholic:00 01159119 1 0 -intoxicate%2:29:00:: 00088532 3 0 -intoxicate%2:34:00:: 01190494 2 0 -intoxicate%2:37:00:: 01811736 1 0 -intoxicated%3:00:00:: 00797299 1 0 -intoxicated%5:00:00:excited:00 00920260 2 0 -intoxicating%5:00:00:alcoholic:00 01159119 1 0 -intoxicating%5:00:00:exciting:00 00922228 2 0 -intoxication%1:12:00:: 07528807 3 0 -intoxication%1:26:00:: 14018567 2 0 -intoxication%1:26:01:: 14509712 1 0 -intra_vires%3:00:00:: 01347935 1 0 -intracapsular_surgery%1:04:00:: 00678632 1 0 -intracellular%3:01:00:: 02686159 1 0 -intracellular_fluid%1:08:00:: 05398462 1 0 -intracerebral%3:01:00:: 02750090 1 0 -intracranial%3:01:00:: 02750166 1 0 -intracranial_aneurysm%1:26:00:: 14107750 1 0 -intracranial_cavity%1:08:00:: 05392906 1 0 -intractability%1:07:00:: 04907269 1 0 -intractable%3:00:00:: 02451951 1 2 -intractableness%1:07:00:: 04907269 1 0 -intractably%4:02:00:: 00058667 1 0 -intracutaneous%3:01:00:: 02877503 1 0 -intradepartmental%3:01:00:: 03060257 1 1 -intradermal%3:01:00:: 02877503 1 0 -intradermal_injection%1:04:00:: 00322962 1 0 -intradermal_test%1:09:00:: 05746708 1 0 -intradermally%4:02:00:: 00093980 1 0 -intradermic%3:01:00:: 02877503 1 0 -intrados%1:25:00:: 13869243 1 0 -intragroup%5:00:00:intramural:00 01346978 1 0 -intralinguistic%3:01:00:: 02842862 1 0 -intralobular%3:01:00:: 02948281 1 0 -intramolecular%3:01:00:: 02901028 1 0 -intramural%3:00:00:: 01346755 1 0 -intramuscular%3:01:00:: 02882838 1 0 -intramuscular_injection%1:04:00:: 00323056 1 0 -intramuscularly%4:02:00:: 00094053 1 1 -intranet%1:06:00:: 03581756 1 0 -intransigence%1:07:00:: 04863497 1 1 -intransigency%1:07:00:: 04863497 1 0 -intransigent%5:00:00:inflexible:02 01024812 1 0 -intransitive%1:10:00:: 06331641 1 0 -intransitive%3:00:00:: 02488907 1 0 -intransitive_verb%1:10:00:: 06331641 1 0 -intransitive_verb_form%1:10:00:: 06331641 1 0 -intransitively%4:02:00:: 00381254 1 0 -intransitiveness%1:24:00:: 13798301 1 0 -intransitivise%2:30:00:: 00420909 1 0 -intransitivity%1:24:00:: 13798301 1 0 -intransitivize%2:30:00:: 00420909 1 0 -intraocular_lens%1:06:00:: 03581897 1 0 -intraocular_pressure%1:19:00:: 11496503 1 0 -intrapulmonary%3:01:00:: 02935437 1 1 -intrasentential%3:01:00:: 02991819 1 0 -intraspecies%3:00:00:: 01342058 1 0 -intraspecific%3:00:00:: 01342058 1 0 -intrastate%3:00:00:: 01569807 1 0 -intrauterine%3:01:00:: 02933230 1 0 -intrauterine_device%1:06:00:: 03582096 1 0 -intravasation%1:26:00:: 14294861 1 0 -intravenous%3:01:00:: 02890703 1 0 -intravenous_anesthetic%1:06:00:: 03582305 1 0 -intravenous_drip%1:11:00:: 07432835 1 0 -intravenous_feeding%1:04:00:: 01058983 1 0 -intravenous_injection%1:04:00:: 00323152 1 0 -intravenous_pyelogram%1:06:00:: 03582508 1 0 -intravenous_pyelography%1:04:00:: 00906829 1 0 -intravenously%4:02:00:: 00381430 1 0 -intraventricular%3:01:00:: 02750241 1 0 -intrench%2:35:00:: 01531025 1 0 -intrenchment%1:06:00:: 03291551 1 2 -intrepid%5:00:00:bold:00 00250119 1 0 -intrepidity%1:07:00:: 04858089 1 0 -intrepidly%4:02:00:: 00199687 1 0 -intricacy%1:07:00:: 04766852 1 0 -intricate%5:00:00:complex:00 02178500 1 7 -intricately%4:02:00:: 00084840 1 0 -intrigue%1:09:00:: 05908520 1 1 -intrigue%1:26:00:: 13931356 2 0 -intrigue%2:31:00:: 00707956 2 0 -intrigue%2:42:00:: 02678839 1 1 -intriguer%1:18:00:: 10007809 1 0 -intriguing%5:00:00:interesting:00 01344684 2 0 -intriguing%5:00:00:provocative:00 01897106 1 0 -intrinsic%3:00:00:: 01348258 1 2 -intrinsic%5:00:00:internal:00 00949374 2 0 -intrinsic_factor%1:27:00:: 15023720 1 0 -intrinsic_fraud%1:04:00:: 00779035 1 0 -intrinsical%3:00:00:: 01348258 1 0 -intrinsically%4:02:00:: 00036762 1 3 -intro%1:10:00:: 07217349 1 0 -intro%1:10:01:: 07045245 2 0 -introduce%2:30:00:: 00349592 10 0 -introduce%2:30:03:: 00187526 3 9 -introduce%2:31:00:: 00706693 8 1 -introduce%2:32:00:: 00901103 1 21 -introduce%2:32:01:: 00901799 9 0 -introduce%2:32:02:: 01065115 7 1 -introduce%2:35:00:: 01421622 6 1 -introduce%2:36:00:: 01642437 2 10 -introduce%2:36:01:: 01618693 5 1 -introduce%2:38:00:: 02078591 4 7 -introduction%1:04:00:: 00320852 6 0 -introduction%1:04:01:: 00238022 1 3 -introduction%1:04:02:: 00240184 7 0 -introduction%1:10:00:: 06396930 2 2 -introduction%1:10:01:: 07217349 3 1 -introduction%1:10:02:: 06414849 4 1 -introduction%1:10:03:: 07162975 5 0 -introductory%5:00:00:first:00 01011753 2 0 -introductory%5:00:00:opening:00 01009709 1 3 -introductory%5:00:00:preceding:00 00126339 3 0 -introit%1:10:00:: 07040413 1 0 -introitus%1:08:00:: 05512505 1 0 -introject%1:09:00:: 05924165 1 5 -introject%2:30:00:: 00554894 1 0 -introjected%5:00:00:integrated:02 01328753 1 1 -introjection%1:09:00:: 05754519 1 0 -introjection%1:09:01:: 05754197 2 0 -intromission%1:04:00:: 00320852 1 0 -intromit%2:41:00:: 02502536 1 0 -intron%1:27:00:: 14831178 1 0 -intropin%1:27:00:: 14838217 1 0 -introspect%2:31:00:: 00631591 1 0 -introspection%1:09:00:: 05786655 1 0 -introspective%3:00:00:: 01350674 1 1 -introspectiveness%1:07:00:: 04660981 1 0 -introuvable%5:00:00:absent:00 01848056 1 0 -introversion%1:07:00:: 04621963 3 0 -introversion%1:22:00:: 13501941 2 0 -introversion%1:26:00:: 14062332 1 0 -introversive%3:00:00:: 01351021 1 0 -introvert%1:18:00:: 10213429 1 0 -introvert%2:30:00:: 00533897 2 0 -introvert%2:35:00:: 01506812 1 0 -introverted%3:00:04:: 01350674 1 0 -introvertish%5:00:00:introversive:00 01351302 1 0 -introvertive%3:00:00:: 01351021 1 0 -intrude%2:32:00:: 00747757 4 0 -intrude%2:38:01:: 02018524 1 2 -intrude%2:39:00:: 02169119 3 0 -intrude%2:41:00:: 02571251 2 1 -intrude_on%2:38:00:: 02019716 1 0 -intruder%1:18:00:: 10213652 1 1 -intruding%5:00:00:intrusive:02 01353153 1 0 -intrusion%1:04:01:: 00733483 5 0 -intrusion%1:04:02:: 00049530 2 1 -intrusion%1:11:00:: 07429976 1 2 -intrusion%1:17:00:: 09314964 4 0 -intrusion%1:22:00:: 13501405 3 0 -intrusive%3:00:01:: 01352067 1 1 -intrusive%3:00:02:: 01353014 3 0 -intrusive%3:00:03:: 01355207 2 0 -intrusiveness%1:07:00:: 04837931 1 0 -intrust%2:40:00:: 02349212 1 1 -intubate%2:35:00:: 01422172 1 0 -intubation%1:04:00:: 00321195 1 0 -intuit%2:31:00:: 00590761 1 0 -intuition%1:09:00:: 05707495 1 4 -intuition%1:09:01:: 05919034 2 1 -intuitionism%1:09:00:: 05972264 1 0 -intuitionist%3:01:00:: 02750663 1 0 -intuitive%5:00:00:illogical:00 01431471 2 0 -intuitive%5:00:00:spontaneous:00 02282843 1 0 -intuitive_feeling%1:09:00:: 05707718 1 0 -intuitively%4:02:00:: 00381557 1 0 -intumesce%2:30:00:: 00256507 2 0 -intumesce%2:38:00:: 01990946 1 0 -intumescence%1:22:00:: 13501548 2 0 -intumescence%1:26:00:: 14317720 1 0 -intumescency%1:22:00:: 13501548 2 0 -intumescency%1:26:00:: 14317720 1 0 -intumescent%5:00:00:unhealthy:00 01174565 1 0 -intussuscept%2:35:00:: 01507006 1 0 -intussusception%1:22:00:: 13501738 2 0 -intussusception%1:22:01:: 13501941 1 0 -inuit%1:18:00:: 10063635 1 0 -inula%1:20:00:: 11984542 1 0 -inula_helenium%1:20:00:: 11984659 1 0 -inulin%1:27:00:: 14795959 1 0 -inunct%2:29:00:: 00085626 1 0 -inunction%1:04:00:: 01041674 1 0 -inundate%2:30:00:: 00217700 2 0 -inundate%2:35:00:: 01524523 1 0 -inundated%5:00:00:full:00 01083754 1 0 -inundation%1:19:00:: 11454591 1 1 -inundation%1:23:00:: 13775706 2 0 -inure%2:30:00:: 00272910 1 3 -inured%5:00:00:tough:02 02447779 1 0 -inutile%5:00:00:useless:00 02497743 1 0 -inutility%1:07:00:: 05150588 1 0 -invade%2:33:00:: 01126360 1 7 -invade%2:35:00:: 01227488 4 0 -invade%2:38:00:: 02019716 2 4 -invade%2:42:00:: 02654686 3 0 -invader%1:18:00:: 10214062 1 2 -invading%5:00:00:offensive:03 01629681 1 0 -invaginate%2:35:00:: 01506812 2 0 -invaginate%2:35:02:: 01581789 1 0 -invagination%1:22:00:: 13501941 2 0 -invagination%1:26:00:: 14062332 1 0 -invalid%1:18:00:: 10214230 1 1 -invalid%2:29:00:: 00091968 2 0 -invalid%2:41:00:: 02404784 1 0 -invalid%3:00:00:: 02499750 1 0 -invalid%5:00:00:expired:00 00938210 2 0 -invalidate%2:30:00:: 00448440 4 0 -invalidate%2:31:00:: 00667102 3 0 -invalidate%2:32:00:: 00800460 2 0 -invalidate%2:41:00:: 02478059 1 1 -invalidated%5:00:00:invalid:00 02500497 1 0 -invalidating%5:00:00:unsupportive:00 02356712 1 0 -invalidation%1:04:00:: 01240979 1 0 -invalidator%1:18:00:: 10214390 1 0 -invalidism%1:26:00:: 14062490 1 0 -invalidity%1:07:00:: 04810510 1 0 -invalidness%1:07:00:: 04810510 1 0 -invaluable%5:00:00:valuable:00 02501367 1 1 -invaluableness%1:07:00:: 05141222 1 0 -invar%1:27:00:: 14921414 1 0 -invariability%1:07:00:: 04739932 2 0 -invariability%1:07:01:: 04769456 1 0 -invariable%1:09:00:: 05858936 1 0 -invariable%3:00:00:: 02505716 1 1 -invariableness%1:07:00:: 04739932 1 0 -invariably%4:02:00:: 00020476 1 12 -invariance%1:07:00:: 04739932 1 0 -invariance%1:07:01:: 04738995 2 0 -invariant%1:09:00:: 05850432 1 0 -invariant%5:00:01:invariable:00 02506029 2 0 -invariant%5:00:02:invariable:00 02506408 1 3 -invasion%1:04:00:: 00976531 1 3 -invasion%1:11:00:: 07429976 2 1 -invasion%1:11:01:: 07332313 3 0 -invasion_of_iwo%1:04:00:: 01282022 1 0 -invasion_of_privacy%1:04:00:: 00734303 1 0 -invasive%3:00:00:: 01355966 2 0 -invasive%3:00:01:: 01356365 1 0 -invasive%5:00:00:intrusive:01 01352320 4 0 -invasive%5:00:00:offensive:03 01629681 3 0 -invective%1:10:00:: 06721604 1 0 -inveigh%2:32:00:: 00911261 1 1 -inveigh%2:32:01:: 00910364 2 0 -inveigle%2:32:00:: 00768778 1 0 -invent%2:36:00:: 01632411 1 14 -invent%2:36:01:: 01634424 2 5 -invention%1:04:00:: 00940412 3 3 -invention%1:06:00:: 03582658 2 6 -invention%1:09:00:: 05633385 1 6 -inventive%5:00:00:creative:00 00643863 1 1 -inventively%4:02:00:: 00381776 1 0 -inventiveness%1:09:00:: 05633672 1 0 -inventor%1:18:00:: 10214637 1 1 -inventory%1:04:00:: 01011425 5 0 -inventory%1:06:00:: 04321534 2 2 -inventory%1:09:00:: 05634059 4 1 -inventory%1:10:00:: 06492664 1 5 -inventory%1:21:00:: 13412533 3 1 -inventory%2:41:00:: 02472495 1 0 -inventory-clearance_sale%1:04:00:: 01118776 1 0 -inventory_accounting%1:04:00:: 00619738 1 0 -inventory_control%1:04:00:: 00619889 1 0 -inventory_item%1:10:00:: 06483061 1 0 -inventorying%1:04:00:: 01011425 1 0 -inverse%1:24:02:: 13858833 1 0 -inverse%3:00:00:: 00769489 2 0 -inverse%5:00:00:backward:01 00202095 1 1 -inverse_cosecant%1:24:00:: 13789136 1 0 -inverse_cosine%1:24:00:: 13787853 1 0 -inverse_cotangent%1:24:00:: 13788502 1 0 -inverse_function%1:24:00:: 13784537 1 1 -inverse_secant%1:24:00:: 13788820 1 0 -inverse_sine%1:24:00:: 13787551 1 0 -inverse_tangent%1:24:00:: 13788182 1 0 -inversely%4:02:00:: 00175919 1 4 -inversion%1:04:00:: 00335814 8 0 -inversion%1:04:01:: 00335653 9 0 -inversion%1:04:02:: 00857275 7 0 -inversion%1:10:00:: 07101140 5 0 -inversion%1:10:01:: 07030174 6 0 -inversion%1:11:00:: 07425726 4 0 -inversion%1:19:00:: 11461563 1 1 -inversion%1:22:00:: 13502205 3 0 -inversion%1:26:00:: 14103785 2 0 -invert%2:30:00:: 00386715 3 0 -invert%2:30:01:: 00387153 1 1 -invert%2:30:03:: 00386965 2 0 -invert_soap%1:27:00:: 14803695 1 0 -invert_sugar%1:27:00:: 14921777 1 0 -invertase%1:27:00:: 14921622 1 0 -invertebrate%1:05:00:: 01905661 1 0 -invertebrate%3:00:00:: 02510273 1 0 -invertebrate_foot%1:05:00:: 02322213 1 0 -inverted%3:00:04:: 01029710 2 0 -inverted%5:00:00:turned:00 02467559 1 1 -inverted_comma%1:10:00:: 06844199 1 0 -inverted_hang%1:04:00:: 00436702 1 0 -inverted_pleat%1:06:00:: 03582840 1 0 -inverter%1:06:00:: 03582959 1 0 -invertible%3:00:00:: 02595255 1 0 -invest%2:40:00:: 02271137 1 7 -invest%2:41:00:: 02386388 4 0 -invest%2:41:01:: 02384275 5 0 -invest%2:41:02:: 02386675 3 0 -invest%2:41:03:: 02474239 2 2 -investigate%2:32:00:: 00789138 1 17 -investigate%2:32:01:: 00785962 2 11 -investigating%1:04:00:: 00633864 1 1 -investigation%1:04:00:: 00633864 2 8 -investigation%1:09:00:: 05800611 1 16 -investigative%5:00:00:inquiring:00 00879030 1 1 -investigator%1:18:00:: 10215623 2 1 -investigator%1:18:01:: 10523076 1 8 -investigator%1:18:02:: 10009276 3 1 -investigatory%5:00:00:inquiring:00 00879030 1 0 -investing%1:04:00:: 01099436 1 0 -investiture%1:04:00:: 00198919 2 0 -investiture%1:11:01:: 07453638 1 0 -investment%1:04:00:: 01099436 1 7 -investment%1:04:01:: 00828462 5 0 -investment%1:04:02:: 00198919 6 0 -investment%1:05:00:: 01458616 4 0 -investment%1:07:00:: 04647185 3 0 -investment%1:21:00:: 13333237 2 5 -investment_adviser%1:18:00:: 10215815 1 0 -investment_advisor%1:18:00:: 10215815 1 0 -investment_banker%1:18:00:: 10215953 1 0 -investment_company%1:14:00:: 08070850 1 0 -investment_firm%1:14:00:: 08070850 1 0 -investment_funds%1:21:00:: 13333237 1 0 -investment_letter%1:21:00:: 13419755 1 0 -investment_trust%1:14:00:: 08070850 1 0 -investor%1:18:00:: 10216106 1 3 -investors_club%1:14:00:: 08229887 1 0 -inveterate%4:02:00:: 00141033 1 0 -inveterate%5:00:00:usual:00 00489768 1 0 -invidia%1:04:00:: 00758335 1 0 -invidious%5:00:00:unfavorable:02 00997394 1 0 -invidiously%4:02:00:: 00381942 1 0 -invigilate%2:41:00:: 02593354 1 0 -invigilation%1:04:00:: 01135795 1 0 -invigilator%1:18:00:: 10216403 1 0 -invigorate%2:29:00:: 00028362 4 0 -invigorate%2:30:00:: 00192836 3 0 -invigorate%2:30:01:: 00442063 2 0 -invigorate%2:37:00:: 01812720 1 0 -invigorated%5:00:00:rested:00 02434797 1 0 -invigorating%3:00:00:: 01356683 1 0 -invigoration%1:04:00:: 01048466 2 0 -invigoration%1:07:00:: 04631700 1 0 -invigorator%1:17:00:: 09402704 1 0 -invincibility%1:07:00:: 05032028 1 0 -invincible%5:00:00:unconquerable:00 00570322 1 1 -invincible_armada%1:14:00:: 08293088 1 0 -invincibly%4:02:00:: 00382031 1 0 -inviolable%3:00:00:: 02510604 1 0 -inviolable%5:00:00:inalienable:00 00094069 4 0 -inviolable%5:00:00:invulnerable:00 02526124 2 0 -inviolable%5:00:00:sacred:00 02055900 3 0 -inviolate%5:00:00:sacred:00 02055900 2 0 -inviolate%5:00:00:uninjured:00 01319434 1 1 -invirase%1:06:00:: 04293608 1 0 -invisibility%1:07:00:: 05017909 1 0 -invisible%3:00:00:: 02517265 1 5 -invisible%3:00:04:: 00581401 2 0 -invisible_balance%1:21:00:: 13410269 1 0 -invisibleness%1:07:00:: 05017909 1 0 -invisibly%4:02:00:: 00382151 1 0 -invitation%1:07:00:: 04689048 2 0 -invitation%1:10:00:: 07186148 1 5 -invitational%3:01:00:: 03134550 1 0 -invitatory%5:00:00:inviting:00 01358534 1 0 -invite%1:10:00:: 07186661 1 0 -invite%2:32:00:: 00793580 4 6 -invite%2:32:01:: 01063695 7 2 -invite%2:35:00:: 01469770 6 2 -invite%2:35:12:: 01470225 8 0 -invite%2:37:00:: 01807529 3 6 -invite%2:37:01:: 01760143 1 7 -invite%2:41:00:: 02384686 2 6 -invite%2:41:01:: 02384940 5 3 -invite_out%2:41:00:: 02486693 1 0 -invitee%1:18:00:: 10150940 1 0 -inviting%3:00:00:: 01358363 1 2 -invitingly%4:02:00:: 00195907 1 0 -invocation%1:04:01:: 00097244 4 0 -invocation%1:09:00:: 05978159 3 0 -invocation%1:10:00:: 07190290 1 1 -invocation%1:10:01:: 07160296 2 0 -invoice%1:10:00:: 06516955 1 0 -invoice%2:40:00:: 02320903 1 0 -invoke%2:32:01:: 01024864 2 4 -invoke%2:32:04:: 00755447 3 0 -invoke%2:36:00:: 01629958 1 6 -involucrate%3:01:00:: 03134675 1 0 -involucre%1:20:00:: 13155305 1 0 -involuntarily%4:02:00:: 00231916 1 0 -involuntariness%1:07:00:: 04645599 1 0 -involuntary%3:00:01:: 02521353 1 1 -involuntary%3:00:02:: 02522417 2 0 -involuntary_muscle%1:08:00:: 05460473 1 0 -involuntary_trust%1:21:00:: 13361962 1 0 -involute%5:00:00:coiled:00 02317942 2 0 -involute%5:00:02:coiled:00 02318057 1 0 -involution%1:04:00:: 00406365 6 0 -involution%1:04:01:: 00872411 5 0 -involution%1:04:02:: 01239064 4 0 -involution%1:07:00:: 04766852 3 0 -involution%1:10:00:: 06315755 2 0 -involution%1:22:00:: 13502397 1 0 -involutional_depression%1:26:00:: 14390839 1 0 -involve%2:30:00:: 00401538 7 0 -involve%2:31:00:: 00600724 6 0 -involve%2:42:00:: 02636132 3 17 -involve%2:42:01:: 02677097 1 56 -involve%2:42:02:: 02633218 5 6 -involve%2:42:04:: 02677567 2 23 -involve%2:42:07:: 02627934 4 12 -involved%3:00:00:: 01514827 1 23 -involved%5:00:00:attached:01 00158332 3 1 -involved%5:00:00:complex:00 02176841 4 0 -involved%5:00:00:enclosed:00 01658386 5 0 -involved%5:00:00:encumbered:00 00868603 2 3 -involvement%1:04:00:: 01239064 1 4 -involvement%1:09:00:: 05682950 3 1 -involvement%1:24:00:: 13793504 2 1 -involvement%1:26:00:: 13931889 4 0 -involvement%1:26:01:: 13924659 5 0 -invulnerability%1:07:00:: 05033681 2 0 -invulnerability%1:26:00:: 14539029 1 1 -invulnerable%3:00:00:: 02525206 1 1 -inward%3:00:00:: 00951247 1 5 -inward%4:02:00:: 00258549 1 1 -inward%4:02:01:: 00501990 2 0 -inward%5:00:00:incoming:00 01294583 2 0 -inward-developing%5:00:00:centripetal:00 00333015 1 0 -inward-moving%5:00:00:centripetal:00 00333197 1 0 -inwardly%4:02:00:: 00230189 1 2 -inwardness%1:07:00:: 05078894 3 0 -inwardness%1:07:02:: 04621010 4 0 -inwardness%1:09:00:: 05787175 2 0 -inwardness%1:09:02:: 05921123 1 0 -inwards%4:02:00:: 00258549 2 0 -inwards%4:02:01:: 00501990 1 0 -inweave%2:35:00:: 01518449 1 0 -inwrought%5:00:00:adorned:00 00059201 1 0 -io%1:17:00:: 09315057 2 0 -io%1:18:00:: 09563425 1 0 -io_moth%1:05:00:: 02304036 1 0 -iodic_acid%1:27:00:: 14922252 1 0 -iodide%1:27:00:: 14922371 1 7 -iodin%1:27:00:: 14641397 1 0 -iodinate%2:30:00:: 00520881 1 2 -iodinated%3:01:00:: 03005276 1 5 -iodinated_protein%1:27:00:: 14734761 1 0 -iodinating%3:00:00:: 01231917 1 3 -iodination%1:22:00:: 13502556 1 2 -iodine%1:06:00:: 04439305 2 0 -iodine%1:27:00:: 14641397 1 17 -iodine-125%1:27:00:: 14642005 1 0 -iodine-131%1:27:00:: 14641797 1 0 -iodise%2:29:00:: 00080169 2 0 -iodise%2:30:00:: 00184907 1 0 -iodised%3:01:00:: 03005276 1 0 -iodize%2:29:00:: 00080169 2 0 -iodize%2:30:00:: 00184907 1 0 -iodized%3:01:00:: 03005276 1 0 -iodoamino_acid%1:27:00:: 14607250 1 1 -iodochlorhydroxyquin%1:06:00:: 03583109 1 0 -iodocompound%1:27:00:: 14922529 1 1 -iodoform%1:06:00:: 03583252 2 0 -iodoform%1:27:00:: 14620781 1 0 -iodoprotein%1:27:00:: 14734761 1 1 -iodopsin%1:27:00:: 15088669 1 0 -iodothyronine%1:27:00:: 14835125 1 1 -iodotyrosine%1:27:00:: 14835004 1 1 -iol%1:06:00:: 03657239 1 0 -ion%1:17:00:: 09315159 1 8 -ion_beam%1:19:00:: 11486049 1 0 -ion_engine%1:06:00:: 03583419 1 0 -ion_exchange%1:22:00:: 13502714 1 1 -ion_pump%1:06:00:: 03583809 1 0 -ionate%2:30:00:: 00521185 1 0 -ionesco%1:18:00:: 11072887 1 0 -ionia%1:15:00:: 09042924 1 0 -ionian%1:14:00:: 08160947 2 0 -ionian%1:18:00:: 09711009 1 0 -ionian%3:01:00:: 02751177 1 0 -ionian_order%1:07:00:: 04699157 1 0 -ionian_sea%1:17:00:: 09315455 1 0 -ionic%1:10:00:: 06977610 1 0 -ionic%3:01:00:: 02750752 1 3 -ionic%3:01:01:: 02750948 3 0 -ionic%3:01:02:: 02751058 2 0 -ionic_beam%1:19:00:: 11486049 1 0 -ionic_bond%1:19:00:: 11437344 1 0 -ionic_charge%1:23:00:: 13590974 1 0 -ionic_dialect%1:10:00:: 06977610 1 0 -ionic_medication%1:04:00:: 00663878 1 0 -ionic_order%1:07:00:: 04699157 1 0 -ionisation%1:22:00:: 13502909 2 0 -ionisation%1:26:00:: 14577469 1 0 -ionise%2:30:00:: 00266798 2 0 -ionise%2:30:01:: 00267041 1 0 -ionised%3:00:00:: 00356110 1 0 -ionization%1:22:00:: 13502909 2 0 -ionization%1:26:00:: 14577469 1 0 -ionization_chamber%1:06:00:: 03583621 1 0 -ionization_tube%1:06:00:: 03583621 1 0 -ionize%2:30:00:: 00266798 2 0 -ionize%2:30:01:: 00267041 1 0 -ionized%3:00:00:: 00356110 1 2 -ionizing_radiation%1:19:00:: 11437577 1 0 -ionophoresis%1:22:00:: 13472518 1 0 -ionosphere%1:15:00:: 08588916 1 0 -ionospheric_wave%1:19:00:: 11500349 1 0 -iontophoresis%1:04:00:: 00663878 1 0 -iontotherapy%1:04:00:: 00663878 1 0 -iop%1:19:00:: 11496503 1 0 -iosif_vissarionovich_dzhugashvili%1:18:00:: 11312120 1 0 -iota%1:10:00:: 06834992 2 0 -iota%1:23:00:: 13773725 1 0 -iou%1:21:00:: 13415168 1 0 -iowa%1:10:00:: 06908968 3 0 -iowa%1:15:00:: 09086173 2 0 -iowa%1:18:00:: 09657748 1 0 -iowa_crab%1:20:00:: 12635744 1 0 -iowa_crab_apple%1:20:00:: 12635744 1 0 -iowan%1:18:00:: 09743112 1 0 -ioway%1:10:00:: 06908968 2 0 -ioway%1:18:00:: 09657748 1 0 -ip%1:09:00:: 06142118 1 0 -ipecac%1:06:00:: 03583967 1 0 -iphigenia%1:18:00:: 09595240 1 0 -ipidae%1:05:00:: 02179429 1 0 -ipo%1:04:00:: 01094575 1 0 -ipod%1:06:00:: 03584254 1 0 -ipomoea%1:20:00:: 12826395 1 0 -ipomoea_alba%1:20:00:: 12827537 1 0 -ipomoea_batatas%1:20:00:: 12827684 1 0 -ipomoea_coccinea%1:20:00:: 12828220 1 0 -ipomoea_fastigiata%1:20:00:: 12827907 1 0 -ipomoea_imperialis%1:20:00:: 12828977 1 0 -ipomoea_leptophylla%1:20:00:: 12828379 1 0 -ipomoea_nil%1:20:00:: 12828791 1 0 -ipomoea_orizabensis%1:20:00:: 12828520 1 0 -ipomoea_panurata%1:20:00:: 12827907 1 0 -ipomoea_pes-caprae%1:20:00:: 12828628 1 0 -ipomoea_purpurea%1:20:00:: 12826895 1 0 -ipomoea_quamoclit%1:20:00:: 12827270 1 0 -ipomoea_tricolor%1:20:00:: 12827068 1 0 -ipratropium_bromide%1:06:00:: 03584111 1 0 -iproclozide%1:06:00:: 03584526 1 0 -ipse_dixit%1:10:00:: 06731697 1 0 -ipsedixitism%1:10:00:: 06731697 1 0 -ipsilateral%3:00:00:: 02591684 1 0 -ipso_facto%4:02:00:: 00256463 1 1 -ipsus%1:04:00:: 01281427 1 0 -ipv%1:06:00:: 04130715 1 0 -iq%1:24:00:: 13821977 1 0 -iq_test%1:04:00:: 01007053 1 0 -ir%1:14:00:: 08143486 2 0 -ir%1:27:00:: 14642219 1 0 -ira%1:04:00:: 00758972 3 0 -ira%1:09:00:: 05912012 2 0 -ira%1:14:00:: 08024732 1 0 -ira_gershwin%1:18:00:: 10997068 1 0 -irak%1:15:00:: 08913434 1 0 -iraki%1:18:00:: 09714694 1 0 -iraki%3:01:00:: 03075470 1 0 -iran%1:15:00:: 08910668 1 1 -iran-iraq_war%1:04:00:: 01305310 1 0 -irani%1:18:00:: 09714429 1 0 -iranian%1:10:00:: 06973610 2 0 -iranian%1:18:00:: 09714429 1 0 -iranian%3:01:00:: 03075191 1 0 -iranian_capital%1:15:00:: 08911421 1 0 -iranian_dinar%1:23:00:: 13696893 1 0 -iranian_language%1:10:00:: 06973610 1 0 -iranian_monetary_unit%1:23:00:: 13696652 1 0 -iranian_rial%1:23:00:: 13696777 1 0 -iraq%1:15:00:: 08913434 1 2 -iraqi%1:18:00:: 09714694 1 0 -iraqi%3:01:00:: 03075470 1 0 -iraqi_dinar%1:23:00:: 13669342 1 0 -iraqi_intelligence_service%1:14:00:: 08344917 1 0 -iraqi_kurdistan%1:15:00:: 09039260 1 0 -iraqi_monetary_unit%1:23:00:: 13669237 1 0 -iraqi_mukhabarat%1:14:00:: 08344917 1 0 -iraqi_national_congress%1:14:00:: 08403907 1 0 -irascibility%1:12:00:: 07552549 1 0 -irascible%5:00:00:angry:00 00114921 2 0 -irascible%5:00:00:ill-natured:00 01135914 1 0 -irate%5:00:00:angry:00 00115777 1 0 -irately%4:02:00:: 00382402 1 0 -ire%1:04:00:: 00758972 2 0 -ire%1:12:00:: 07516354 1 0 -ireful%5:00:00:angry:00 00115777 1 0 -ireland%1:15:00:: 08859173 2 1 -ireland%1:15:01:: 08888676 1 2 -irelander%1:18:00:: 09714952 1 0 -irena%1:05:00:: 01593857 1 0 -irenaeus%1:18:00:: 11073061 1 0 -irene_joliot-curie%1:18:00:: 11089318 1 0 -irenic%5:00:00:peaceful:00 01741408 1 0 -irenidae%1:05:00:: 01593705 1 0 -iresine%1:20:00:: 11826416 1 0 -iresine_herbstii%1:20:00:: 11826715 1 0 -iresine_reticulata%1:20:00:: 11826715 1 0 -iridaceae%1:20:00:: 12411084 1 0 -iridaceous%3:01:00:: 02751484 1 0 -iridaceous_plant%1:20:00:: 12411461 1 0 -iridectomy%1:04:00:: 00679566 1 0 -iridesce%2:42:00:: 02733928 1 0 -iridescence%1:07:00:: 04953678 1 0 -iridescent%5:00:00:bright:00 00282020 2 0 -iridescent%5:00:00:colorful:00 00403072 1 0 -iridic%3:01:00:: 02852589 2 0 -iridic%3:01:01:: 02852679 1 0 -iridium%1:27:00:: 14642219 1 0 -iridocyclitis%1:26:00:: 14347774 1 0 -iridokeratitis%1:26:00:: 14347886 1 0 -iridoncus%1:26:00:: 14317943 1 0 -iridoprocne%1:05:00:: 01595330 1 0 -iridoprocne_bicolor%1:05:00:: 01595450 1 0 -iridosmine%1:27:00:: 14688978 1 0 -iridotomy%1:04:00:: 00679724 1 0 -iris%1:06:00:: 03584649 3 0 -iris%1:08:00:: 05319936 2 0 -iris%1:20:00:: 12411922 1 0 -iris_cristata%1:20:00:: 12413165 1 0 -iris_diaphragm%1:06:00:: 03584649 1 0 -iris_family%1:20:00:: 12411084 1 0 -iris_filifolia%1:20:00:: 12413301 1 0 -iris_florentina%1:20:00:: 12413419 1 0 -iris_foetidissima%1:20:00:: 12413642 1 0 -iris_germanica%1:20:00:: 12413880 1 0 -iris_germanica_florentina%1:20:00:: 12413419 1 0 -iris_kaempferi%1:20:00:: 12414035 1 0 -iris_kochii%1:20:00:: 12414159 1 0 -iris_murdoch%1:18:00:: 11196764 1 0 -iris_pallida%1:20:00:: 12414329 1 0 -iris_persica%1:20:00:: 12414449 1 0 -iris_pseudacorus%1:20:00:: 12414602 1 0 -iris_scanning%1:10:00:: 06645458 1 0 -iris_tingitana%1:20:00:: 12414818 1 0 -iris_verna%1:20:00:: 12414932 1 0 -iris_versicolor%1:20:00:: 12415089 1 0 -iris_virginica%1:20:00:: 12415272 1 0 -iris_xiphioides%1:20:00:: 12415401 1 0 -iris_xiphium%1:20:00:: 12415595 1 0 -irish%1:10:00:: 06960778 3 0 -irish%1:13:00:: 07907161 2 0 -irish%1:18:00:: 09732778 1 2 -irish%3:01:00:: 03003744 1 14 -irish_bull%1:10:00:: 06611376 1 0 -irish_burgoo%1:13:00:: 07590068 1 0 -irish_capital%1:15:00:: 08889191 1 0 -irish_coffee%1:13:00:: 07919441 1 0 -irish_gaelic%1:10:00:: 06960778 1 0 -irish_gorse%1:20:00:: 12574866 1 0 -irish_monetary_unit%1:23:00:: 13694552 1 0 -irish_moss%1:05:00:: 01414633 1 0 -irish_national_liberation_army%1:14:00:: 08024408 1 0 -irish_people%1:18:00:: 09732778 1 0 -irish_person%1:18:00:: 09714952 1 0 -irish_potato%1:13:00:: 07710616 1 0 -irish_pound%1:23:00:: 13694657 1 0 -irish_punt%1:23:00:: 13694657 1 0 -irish_republic%1:15:00:: 08888676 1 0 -irish_republican_army%1:14:00:: 08024732 1 0 -irish_sea%1:17:00:: 09315624 1 0 -irish_setter%1:05:00:: 02100877 1 0 -irish_soda_bread%1:13:00:: 07685399 1 0 -irish_stew%1:13:00:: 07591049 1 0 -irish_strawberry%1:20:00:: 12230794 1 0 -irish_terrier%1:05:00:: 02093991 1 0 -irish_water_spaniel%1:05:00:: 02102973 1 0 -irish_whiskey%1:13:00:: 07907161 1 0 -irish_whisky%1:13:00:: 07907161 1 0 -irish_wolfhound%1:05:00:: 02090721 1 0 -irishman%1:18:00:: 09715165 1 2 -irishwoman%1:18:00:: 09715303 1 0 -iritic%3:01:00:: 02751630 1 0 -iritis%1:26:00:: 14347993 1 0 -irk%2:37:00:: 01786760 1 0 -irksome%5:00:00:uninteresting:00 01345307 1 1 -iron%1:06:00:: 03584829 4 0 -iron%1:06:01:: 03585073 2 2 -iron%1:06:02:: 03585337 3 0 -iron%1:27:00:: 14642417 1 15 -iron%2:35:00:: 01390833 1 2 -iron%5:00:00:robust:00 02038891 1 2 -iron-gray%1:07:00:: 04962548 1 0 -iron-gray%5:00:00:achromatic:00 00390332 1 0 -iron-grey%1:07:00:: 04962548 1 0 -iron-grey%5:00:00:achromatic:00 00390332 1 0 -iron-storage_disease%1:26:00:: 14206929 1 0 -iron-tree%1:20:00:: 12317296 1 0 -iron_age%1:28:00:: 15231634 2 0 -iron_age%1:28:01:: 15231765 1 0 -iron_blue%1:27:01:: 14922960 2 0 -iron_blue%1:27:02:: 14923060 1 0 -iron_boot%1:06:00:: 02873363 1 0 -iron_cage%1:26:00:: 13999114 1 2 -iron_carbide%1:27:00:: 14805145 1 0 -iron_chancellor%1:18:00:: 10851599 1 0 -iron_collar%1:06:00:: 03420935 1 0 -iron_curtain%1:09:00:: 05691689 1 1 -iron_deficiency_anaemia%1:26:00:: 14165909 1 0 -iron_deficiency_anemia%1:26:00:: 14165909 1 0 -iron_disulfide%1:27:00:: 14923337 1 0 -iron_duke%1:18:00:: 11380923 1 0 -iron_filing%1:17:00:: 09315762 1 0 -iron_fist%1:07:00:: 05197388 1 0 -iron_foundry%1:06:00:: 03585682 1 0 -iron_heel%1:06:00:: 02873363 1 0 -iron_horse%1:06:00:: 03585778 1 0 -iron_lady%1:18:00:: 11337779 1 0 -iron_lung%1:06:00:: 03586219 1 0 -iron_maiden%1:06:00:: 03586448 1 0 -iron_man%1:18:00:: 10216560 1 0 -iron_manganese_tungsten%1:27:00:: 15103226 1 0 -iron_mold%1:07:00:: 04695693 1 0 -iron_mould%1:07:00:: 04695693 1 0 -iron_oak%1:20:01:: 12278371 1 0 -iron_oak%1:20:02:: 12270946 2 0 -iron_ore%1:27:00:: 14923458 1 0 -iron_out%2:30:00:: 00208055 1 1 -iron_out%2:35:00:: 01390833 2 0 -iron_overload%1:26:00:: 14206929 1 0 -iron_perchloride%1:27:00:: 14923733 1 0 -iron_putty%1:27:00:: 14703999 1 0 -iron_pyrite%1:27:00:: 14692682 1 0 -iron_trap%1:09:00:: 05837651 1 1 -iron_tree%1:20:00:: 12317296 1 0 -ironclad%1:06:00:: 03585551 1 0 -ironclad%5:00:00:inflexible:02 01025732 2 0 -ironclad%5:00:00:sheathed:00 02155361 1 0 -ironed%3:00:00:: 01359543 1 0 -ironic%5:00:00:humorous:00 01266092 1 1 -ironic%5:00:00:incongruous:00 00563288 2 0 -ironical%5:00:00:humorous:00 01266092 2 1 -ironical%5:00:00:incongruous:00 00563288 1 5 -ironically%4:02:00:: 00382507 2 0 -ironically%4:02:01:: 00382620 1 0 -ironing%1:04:00:: 00581090 2 0 -ironing%1:06:00:: 03585875 1 0 -ironing_board%1:06:00:: 03586090 1 0 -ironist%1:18:00:: 10552742 1 0 -ironlike%5:00:00:strong:00 02322885 1 1 -ironman%1:18:00:: 10216560 1 0 -ironmonger%1:06:00:: 03493911 2 0 -ironmonger%1:18:00:: 10216690 1 0 -ironmonger's_shop%1:06:00:: 03493911 1 0 -ironmongery%1:06:00:: 03586631 1 0 -irons%1:06:00:: 03585438 1 3 -ironshod%5:00:00:shod:00 02156177 1 1 -ironside%1:18:00:: 10216839 1 0 -ironsides%1:18:00:: 10916105 1 0 -ironware%1:06:00:: 03493792 1 0 -ironweed%1:20:00:: 12031927 1 0 -ironwood%1:20:01:: 12317296 3 0 -ironwood%1:20:02:: 12288005 4 0 -ironwood%1:20:03:: 12370549 1 0 -ironwood%1:20:04:: 12317487 2 0 -ironwood_tree%1:20:01:: 12317296 2 0 -ironwood_tree%1:20:02:: 12288005 3 0 -ironwood_tree%1:20:03:: 12370549 1 0 -ironwork%1:06:00:: 03586760 1 0 -ironworker%1:18:00:: 10216928 1 1 -ironworks%1:06:00:: 03586911 1 0 -irony%1:07:00:: 04715075 2 3 -irony%1:10:00:: 07106246 3 0 -irony%1:10:01:: 06777164 1 5 -iroquoian%1:10:00:: 06916803 1 0 -iroquoian_language%1:10:00:: 06916803 1 0 -iroquois%1:10:00:: 06916803 2 0 -iroquois%1:18:00:: 09657887 1 0 -iroquois_league%1:14:00:: 08305277 1 0 -irradiate%2:30:00:: 00291444 3 0 -irradiate%2:30:01:: 00291757 2 0 -irradiate%2:32:00:: 00926932 1 0 -irradiation%1:04:00:: 00705580 6 0 -irradiation%1:09:00:: 05939809 4 0 -irradiation%1:09:01:: 05756698 5 0 -irradiation%1:11:00:: 07332550 3 0 -irradiation%1:19:00:: 11428023 2 0 -irradiation%1:26:00:: 14577753 1 0 -irrational%1:23:00:: 13730584 1 0 -irrational%3:00:00:: 01926376 1 2 -irrational%3:01:00:: 02930083 2 0 -irrational_hostility%1:09:00:: 05950475 1 0 -irrational_impulse%1:16:00:: 09181114 1 0 -irrational_motive%1:16:00:: 09180259 1 0 -irrational_number%1:23:00:: 13730584 1 0 -irrationality%1:26:00:: 14397563 1 0 -irrationally%4:02:00:: 00184651 1 1 -irrawaddy%1:17:00:: 09315870 1 0 -irrawaddy_river%1:17:00:: 09315870 1 0 -irreality%1:26:00:: 13960117 1 0 -irreclaimable%5:00:00:wicked:00 02514819 1 0 -irreconcilable%3:00:00:: 01986926 1 1 -irrecoverable%3:00:00:: 01956523 1 0 -irredeemable%5:00:00:inconvertible:00 00917482 2 0 -irredeemable%5:00:00:wicked:00 02514819 1 0 -irredenta%1:15:00:: 08589140 1 0 -irredentism%1:09:00:: 05964098 1 0 -irredentist%1:18:00:: 10217038 1 0 -irreducible%3:00:00:: 00883830 1 1 -irrefutable%5:00:00:undeniable:00 00721838 1 0 -irregardless%4:02:00:: 00118727 1 0 -irregular%1:06:00:: 03587050 2 0 -irregular%1:18:00:: 10150556 1 0 -irregular%3:00:00:: 01960656 1 4 -irregular%3:00:01:: 01962107 4 0 -irregular%3:00:02:: 01971046 3 0 -irregular%5:00:00:abnormal:00 01596809 6 0 -irregular%5:00:00:imperfect:00 01753249 5 0 -irregular%5:00:00:part-time:00 01089775 7 0 -irregular%5:00:00:sporadic:00 00594146 2 1 -irregular%5:00:00:unconventional:00 00607202 9 0 -irregular%5:00:00:uneven:00 00912094 8 0 -irregularity%1:04:00:: 00737188 1 3 -irregularity%1:07:00:: 04770211 2 2 -irregularity%1:07:04:: 05066012 3 1 -irregularity%1:26:00:: 14371161 4 0 -irregularly%4:02:00:: 00195185 3 0 -irregularly%4:02:01:: 00331697 1 2 -irregularly%4:02:02:: 00190581 4 0 -irregularly%4:02:03:: 00331940 2 0 -irrelevance%1:24:00:: 13795834 1 0 -irrelevancy%1:24:00:: 13795834 1 0 -irrelevant%3:00:00:: 01976084 1 6 -irrelevantly%4:02:00:: 00382749 1 0 -irreligion%1:07:00:: 04828612 1 0 -irreligionist%1:18:00:: 10217208 1 0 -irreligious%3:00:00:: 01784017 1 0 -irreligiousness%1:07:00:: 04828612 1 0 -irremediable%3:00:00:: 01962819 1 1 -irremovable%3:00:00:: 01527075 1 0 -irreparable%3:00:00:: 01963792 1 2 -irreparably%4:02:00:: 00514080 1 0 -irreplaceable%3:00:00:: 01978894 1 0 -irreplaceableness%1:07:00:: 04741195 1 0 -irrepressibility%1:07:00:: 04633959 1 0 -irrepressible%5:00:00:uncontrolled:00 00600540 1 0 -irreproachable%5:00:00:innocent:00 01320705 1 0 -irreproachably%4:02:00:: 00498747 1 0 -irreproducibility%1:07:00:: 04806316 1 2 -irreproducible%3:00:00:: 01868302 1 0 -irresistibility%1:07:00:: 05192240 1 0 -irresistible%3:00:00:: 01989175 1 1 -irresistible%5:00:00:attractive:01 00168551 2 0 -irresistible_impulse%1:16:00:: 09181330 1 0 -irresistibleness%1:07:00:: 05192240 1 0 -irresistibly%4:02:00:: 00239688 1 0 -irresolute%3:00:00:: 01992149 1 1 -irresolutely%4:02:00:: 00241757 1 0 -irresoluteness%1:07:00:: 04866465 1 0 -irresolution%1:07:00:: 04866465 2 0 -irresolution%1:09:00:: 05699172 1 1 -irrespective%4:02:00:: 00118531 1 1 -irresponsibility%1:07:00:: 04670746 1 1 -irresponsible%3:00:00:: 01997910 1 2 -irresponsibleness%1:07:00:: 04670746 1 0 -irresponsibly%4:02:00:: 00106629 1 0 -irretrievable%5:00:00:unrecoverable:00 01956675 1 0 -irretrievably%4:02:00:: 00382903 1 0 -irreverence%1:04:00:: 00746232 2 0 -irreverence%1:09:00:: 06207733 1 1 -irreverent%3:00:00:: 02012504 1 0 -irreverent%5:00:00:impious:00 01782717 3 0 -irreverent%5:00:00:spirited:00 02280090 2 0 -irreverently%4:02:00:: 00383271 1 0 -irreverently%4:02:02:: 00383017 2 0 -irreversibility%1:07:00:: 04739768 1 0 -irreversible%3:00:00:: 01759362 1 1 -irreversible_process%1:22:00:: 13503226 1 0 -irreversibly%4:02:00:: 00383428 1 0 -irrevocable%3:00:00:: 01760670 1 1 -irrevocably%4:02:00:: 00124529 1 0 -irrevokable%3:00:00:: 01760670 1 0 -irridenta%1:15:00:: 08589140 1 0 -irridentism%1:09:00:: 05964098 1 0 -irridentist%1:18:00:: 10217038 1 0 -irrigate%2:29:00:: 00079951 2 0 -irrigate%2:30:00:: 00228236 1 2 -irrigation%1:04:00:: 01057631 1 2 -irrigation%1:04:01:: 00695448 2 0 -irrigation_ditch%1:06:00:: 03587205 1 0 -irritability%1:07:00:: 04642258 3 0 -irritability%1:09:00:: 05653710 2 0 -irritability%1:12:00:: 07552729 1 1 -irritable%5:00:00:ill-natured:00 01136541 1 1 -irritable%5:00:01:sensitive:01 02104277 3 0 -irritable%5:00:02:sensitive:01 02104600 2 0 -irritable_bowel_syndrome%1:26:00:: 14306245 1 0 -irritably%4:02:00:: 00186644 2 1 -irritably%4:02:01:: 00216592 1 3 -irritant%1:09:00:: 05831784 1 0 -irritate%2:29:00:: 00063291 2 1 -irritate%2:30:00:: 00503715 3 0 -irritate%2:37:00:: 01787955 1 3 -irritated%5:00:00:displeased:00 01806106 1 0 -irritating%5:00:00:disagreeable:00 00089550 1 1 -irritating%5:00:00:stimulative:00 02310185 2 0 -irritating%5:00:00:uncomfortable:00 00478685 3 0 -irritatingly%4:02:00:: 00514190 1 0 -irritation%1:04:00:: 01221790 6 0 -irritation%1:04:01:: 00418394 7 0 -irritation%1:12:00:: 07495973 5 0 -irritation%1:12:01:: 07518468 2 1 -irritation%1:26:00:: 14406573 1 6 -irritation%1:26:01:: 14036356 4 0 -irritation%1:26:02:: 14531392 3 0 -irritative%5:00:00:stimulative:00 02310185 1 0 -irrupt%2:30:00:: 00157623 3 0 -irrupt%2:30:03:: 00307785 2 0 -irrupt%2:38:01:: 02018524 1 0 -irruption%1:04:00:: 00049636 1 1 -irruption%1:11:00:: 07435273 3 0 -irruption%1:22:00:: 13539143 2 0 -irruptive%5:00:00:intrusive:03 01355378 1 0 -irs%1:14:00:: 08143321 1 0 -irtish%1:17:00:: 09316066 1 0 -irtish_river%1:17:00:: 09316066 1 0 -irtysh%1:17:00:: 09316066 1 0 -irtysh_river%1:17:00:: 09316066 1 0 -irula%1:10:00:: 06979492 1 0 -irving%1:18:00:: 11073324 2 0 -irving%1:18:01:: 11073453 1 0 -irving_berlin%1:18:00:: 10847454 1 0 -irving_howe%1:18:00:: 11062963 1 0 -irving_langmuir%1:18:00:: 11116875 1 0 -irvingia%1:20:00:: 12717524 1 0 -irvingia_gabonensis%1:20:00:: 12717644 1 0 -isaac%1:18:00:: 11073586 1 0 -isaac_asimov%1:18:00:: 10826204 1 0 -isaac_bashevis_singer%1:18:00:: 11302615 1 0 -isaac_hull%1:18:00:: 11065718 1 0 -isaac_m._singer%1:18:00:: 11302772 1 0 -isaac_mayer_wise%1:18:00:: 11393124 1 0 -isaac_merrit_singer%1:18:00:: 11302772 1 0 -isaac_newton%1:18:00:: 11205375 1 0 -isaac_stern%1:18:00:: 11316828 1 0 -isaac_watts%1:18:00:: 11377043 1 0 -isabella%1:18:00:: 11073795 1 0 -isabella_i%1:18:00:: 11073795 1 0 -isabella_stewart_gardner%1:18:00:: 10990509 1 0 -isabella_the_catholic%1:18:00:: 11073795 1 0 -isadora_duncan%1:18:00:: 10945415 1 0 -isaiah%1:10:00:: 06438126 2 0 -isaiah%1:18:00:: 11074140 1 0 -isak_dinesen%1:18:00:: 10935745 1 0 -isamu_noguchi%1:18:00:: 11209201 1 0 -isarithm%1:15:00:: 08589801 1 0 -isatis%1:20:00:: 11889847 1 0 -isatis_tinctoria%1:20:00:: 11890150 1 0 -ischaemia%1:26:00:: 14166118 1 0 -ischaemic%3:01:00:: 02751733 1 0 -ischaemic_stroke%1:26:00:: 14166358 1 0 -ischemia%1:26:00:: 14166118 1 0 -ischemic%3:01:00:: 02751733 1 0 -ischemic_anoxia%1:26:00:: 14043708 1 0 -ischemic_hypoxia%1:26:00:: 14041763 1 0 -ischemic_stroke%1:26:00:: 14166358 1 0 -ischia%1:15:00:: 08806142 1 0 -ischial_bone%1:08:00:: 05275466 1 0 -ischigualastia%1:05:00:: 01721269 1 0 -ischium%1:08:00:: 05275466 1 0 -isentropic%3:01:00:: 02751889 1 0 -isere%1:17:00:: 09316312 1 0 -isere_river%1:17:00:: 09316312 1 0 -iseult%1:18:00:: 10551265 1 0 -isfahan%1:15:00:: 08912012 1 0 -isherwood%1:18:00:: 11074284 1 0 -ishmael%1:18:00:: 11074573 1 0 -ishmael%1:18:01:: 10386312 2 0 -ishtar%1:18:00:: 09516498 1 0 -isi%1:14:00:: 08343534 1 0 -isidor_feinstein_stone%1:18:00:: 11319413 1 0 -isidore_auguste_marie_francois_comte%1:18:00:: 10906234 1 0 -isinglass%1:27:00:: 14681555 1 0 -isis%1:18:00:: 09512391 1 0 -iskcon%1:14:00:: 08097766 1 0 -islam%1:09:00:: 06234825 2 0 -islam%1:14:00:: 08095647 1 0 -islam_nation%1:14:00:: 08224684 1 0 -islamabad%1:15:00:: 08977035 1 0 -islamic%3:01:00:: 02923510 1 0 -islamic_army_of_aden%1:14:00:: 08025112 1 0 -islamic_army_of_aden-abyan%1:14:00:: 08025112 1 0 -islamic_calendar%1:28:00:: 15178841 1 0 -islamic_calendar_month%1:28:00:: 15216966 1 0 -islamic_community%1:14:00:: 08027518 1 0 -islamic_great_eastern_raiders-front%1:14:00:: 08025497 1 0 -islamic_group%1:14:00:: 08012028 2 0 -islamic_group%1:14:01:: 08027518 1 0 -islamic_group_of_uzbekistan%1:14:00:: 08025835 1 0 -islamic_jihad%1:14:00:: 08012765 2 0 -islamic_jihad%1:14:01:: 08023374 1 0 -islamic_jihad_for_the_liberation_of_palestine%1:14:00:: 08023374 1 0 -islamic_law%1:14:00:: 08455829 1 0 -islamic_party_of_turkestan%1:14:00:: 08025835 1 0 -islamic_republic_of_iran%1:15:00:: 08910668 1 0 -islamic_republic_of_mauritania%1:15:00:: 08966820 1 0 -islamic_republic_of_pakistan%1:15:00:: 08975902 1 0 -islamic_resistance_movement%1:14:00:: 08022259 1 0 -islamic_state_of_afghanistan%1:15:00:: 08703454 1 0 -islamic_ummah%1:14:00:: 08224684 1 0 -islamic_unity%1:14:00:: 08012384 1 0 -islamise%2:30:00:: 00385685 2 0 -islamise%2:30:01:: 00386252 1 0 -islamism%1:09:00:: 06234825 2 0 -islamism%1:14:01:: 08096027 1 0 -islamist%1:18:00:: 09682803 2 0 -islamist%1:18:01:: 10217335 1 0 -islamize%2:30:00:: 00385685 2 0 -islamize%2:30:01:: 00386252 1 0 -islamophobia%1:09:00:: 06203603 1 0 -island%1:06:00:: 03587318 2 2 -island%1:17:00:: 09316454 1 13 -island-dweller%1:18:00:: 10217436 1 0 -island_dispenser%1:06:00:: 03425413 1 0 -island_hop%2:38:00:: 02095900 1 0 -island_of_guernsey%1:15:00:: 08887344 1 0 -island_of_jersey%1:15:00:: 08887238 1 0 -islander%1:18:00:: 10217436 1 0 -islands_of_langerhans%1:08:00:: 05485314 1 0 -islay%1:15:00:: 08893868 2 0 -islay%1:20:00:: 12646397 1 0 -isle%1:17:00:: 09319456 1 1 -isle_of_man%1:15:00:: 08887716 1 0 -isle_of_skye%1:15:00:: 08893717 1 0 -isle_of_wight%1:17:00:: 09479238 1 0 -isle_royal_national_park%1:15:00:: 08606206 1 0 -isles_of_langerhans%1:08:00:: 05485314 1 0 -isles_of_scilly%1:15:00:: 08887463 1 0 -islet%1:17:00:: 09319456 1 0 -islets_of_langerhans%1:08:00:: 05485314 1 0 -ism%1:09:00:: 05943300 1 2 -ismaili%1:18:00:: 10217552 1 0 -ismaili%3:01:00:: 02751990 1 0 -ismailian%1:18:00:: 10217552 1 0 -ismailism%1:09:00:: 06236492 1 0 -isn%1:14:00:: 08344301 1 0 -isoagglutination%1:22:00:: 13503345 1 0 -isoagglutinin%1:27:00:: 15028818 1 0 -isoagglutinogen%1:27:00:: 15029147 1 0 -isoantibody%1:27:00:: 15029482 1 0 -isobar%1:15:00:: 08589351 1 0 -isobilateral%5:00:00:symmetrical:00 02372118 1 0 -isobutyl_nitrite%1:06:00:: 02929749 1 0 -isobutylene%1:27:00:: 14787270 1 0 -isobutylphenyl_propionic_acid%1:06:00:: 03556281 1 0 -isocarboxazid%1:06:00:: 03587442 1 0 -isochronal%5:00:00:equal:00 00891569 1 0 -isochrone%1:15:00:: 08589532 1 0 -isochronous%5:00:00:equal:00 00891569 1 0 -isoclinal%1:15:00:: 08589670 1 0 -isoclinal%5:00:00:equal:00 00891705 1 0 -isoclinic%5:00:00:equal:00 00891705 1 0 -isoclinic_line%1:15:00:: 08589670 1 0 -isocrates%1:18:00:: 11074769 1 0 -isocyanate%1:27:00:: 14923872 1 1 -isocyanic_acid%1:27:00:: 14923962 1 0 -isocyclic%5:00:00:cyclic:02 00677170 1 0 -isoetaceae%1:20:00:: 13225955 1 0 -isoetales%1:20:00:: 13225729 1 0 -isoetes%1:20:00:: 13226135 1 0 -isoflurane%1:06:00:: 03587623 1 0 -isogamete%1:08:00:: 05457343 1 0 -isogamy%1:22:00:: 13503513 1 0 -isogon%1:25:00:: 13866515 1 0 -isogonal_line%1:15:00:: 08490840 1 0 -isogone%1:15:00:: 08490840 1 0 -isogonic%5:00:00:angular:00 02048875 1 0 -isogonic_line%1:15:00:: 08490840 1 0 -isogram%1:15:00:: 08589801 1 0 -isohel%1:15:00:: 08590055 1 0 -isolable%5:00:00:separate:00 02111339 1 0 -isolate%2:30:00:: 00494269 1 12 -isolate%2:30:01:: 00496770 2 3 -isolate%2:30:02:: 00495808 3 2 -isolate%2:31:05:: 00655378 4 0 -isolated%5:00:00:segregated:00 01327205 5 0 -isolated%5:00:00:separate:00 02110447 2 5 -isolated%5:00:00:sporadic:00 00594267 1 8 -isolated%5:00:00:unaccompanied:00 02251576 4 0 -isolated%5:00:00:unconnected:00 00567860 6 0 -isolated%5:00:01:separate:00 02111095 3 4 -isolating%5:00:00:analytic:02 00111604 1 0 -isolation%1:04:00:: 01202029 3 1 -isolation%1:04:01:: 01239717 5 0 -isolation%1:12:00:: 07502576 2 1 -isolation%1:22:00:: 13503673 4 0 -isolation%1:26:00:: 14414715 1 3 -isolationism%1:10:00:: 06662193 1 0 -isolationist%1:18:00:: 10217684 1 0 -isolationist%3:01:00:: 03022917 1 1 -isolationistic%3:01:00:: 03022917 1 0 -isolde%1:18:00:: 10551265 1 0 -isole_egadi%1:15:00:: 08784905 1 0 -isoleucine%1:27:00:: 14924067 1 0 -isomer%1:27:00:: 14924188 1 1 -isomerase%1:27:00:: 14924359 1 0 -isomeric%3:01:00:: 02828688 1 0 -isomerisation%1:11:00:: 07416107 1 0 -isomerise%2:30:00:: 00574996 2 0 -isomerise%2:30:01:: 00575169 1 0 -isomerism%1:26:00:: 13939734 1 0 -isomerization%1:11:00:: 07416107 1 0 -isomerize%2:30:00:: 00574996 2 0 -isomerize%2:30:01:: 00575169 1 0 -isometric%1:10:00:: 06801740 1 0 -isometric%3:00:00:: 00355782 2 0 -isometric%3:01:00:: 02828802 1 0 -isometric%5:00:00:cubic:00 00658022 4 0 -isometric%5:00:00:equal:00 00891807 3 0 -isometric_exercise%1:04:00:: 00627849 1 0 -isometric_line%1:10:00:: 06801740 1 0 -isometrical%5:00:00:equal:00 00891807 1 0 -isometrics%1:04:00:: 00627849 1 0 -isometropia%1:26:00:: 14555688 1 0 -isometry%1:07:00:: 04748654 4 0 -isometry%1:07:02:: 05131537 3 0 -isometry%1:24:00:: 13786187 2 0 -isometry%1:28:00:: 15278960 1 0 -isomorphic%3:01:00:: 02828917 1 0 -isomorphism%1:07:00:: 04744645 1 0 -isomorphous%3:01:00:: 02828917 1 0 -isomorphy%1:07:00:: 04744645 1 0 -isoniazid%1:06:00:: 03587715 1 0 -isopleth%1:15:00:: 08589801 1 2 -isopod%1:05:00:: 01990800 1 0 -isopoda%1:05:00:: 01990627 1 0 -isopropanol%1:27:00:: 14709907 1 0 -isopropyl_alcohol%1:27:00:: 14709907 1 0 -isoproterenol%1:06:00:: 03587874 1 0 -isoptera%1:05:00:: 02222718 1 0 -isopteran%3:01:00:: 03137840 1 0 -isoptin%1:06:00:: 04527808 1 0 -isopyrum%1:20:00:: 11735822 1 0 -isopyrum_biternatum%1:20:00:: 11735977 1 0 -isordil%1:06:00:: 03588046 1 0 -isoroku_yamamoto%1:18:00:: 11401797 1 0 -isosceles%5:00:00:symmetrical:00 02372951 1 0 -isosceles_triangle%1:25:00:: 13880199 1 0 -isosmotic%3:00:00:: 00894980 1 0 -isosmotic_solution%1:27:00:: 14849367 1 0 -isosorbide%1:06:00:: 03588046 1 0 -isospondyli%1:05:00:: 02528534 1 0 -isostasy%1:26:00:: 14003432 1 0 -isotherm%1:15:00:: 08590172 1 0 -isothermal%5:00:00:equal:00 00891970 1 1 -isothermic%3:01:00:: 02902658 1 0 -isothiocyanate%1:27:00:: 15033367 1 0 -isotonic%3:00:00:: 00894980 1 3 -isotonic%3:00:01:: 00355950 3 0 -isotonic%3:01:00:: 02829094 2 1 -isotonic%5:00:00:tense:03 02406790 4 0 -isotonic_exercise%1:04:00:: 00628131 1 0 -isotonic_solution%1:27:00:: 14849367 1 0 -isotope%1:27:00:: 14619658 1 0 -isotopic%3:01:00:: 02902531 1 1 -isotropic%3:00:00:: 01360804 1 3 -isotropically%4:02:00:: 00012047 1 0 -isotropous%3:00:00:: 01360804 1 0 -isotropy%1:07:00:: 04917439 1 0 -israel%1:15:00:: 08792548 1 0 -israel%1:15:01:: 08792295 2 0 -israel_baline%1:18:00:: 10847454 1 0 -israel_strassberg%1:18:00:: 11321051 1 0 -israel_zangwill%1:18:00:: 11404871 1 0 -israeli%1:18:00:: 09715833 1 1 -israeli%3:01:00:: 02972925 1 0 -israeli_defense_force%1:14:00:: 08345613 1 0 -israeli_monetary_unit%1:23:00:: 13706183 1 0 -israelite%1:18:00:: 09715685 1 0 -israelite%1:18:01:: 09681351 2 0 -israelites%1:14:00:: 08483935 1 0 -issachar%1:18:00:: 11074870 1 0 -issuance%1:04:00:: 01060234 1 1 -issue%1:04:00:: 01103614 11 0 -issue%1:04:01:: 01060234 4 1 -issue%1:06:00:: 03303965 10 0 -issue%1:09:00:: 05814291 3 2 -issue%1:09:01:: 05814650 1 23 -issue%1:10:00:: 06596978 2 3 -issue%1:11:00:: 07319909 9 0 -issue%1:18:00:: 10373998 8 0 -issue%1:19:00:: 11410625 7 0 -issue%1:21:00:: 13260190 6 0 -issue%1:21:01:: 13367593 5 0 -issue%2:30:00:: 00528990 4 6 -issue%2:32:00:: 00967625 1 21 -issue%2:32:01:: 01063049 3 12 -issue%2:32:02:: 01064799 5 1 -issue%2:41:00:: 02479323 2 12 -issue_forth%2:42:00:: 02743921 1 0 -issuer%1:14:00:: 08055150 1 0 -issuing%1:04:00:: 01060234 1 0 -issus%1:04:00:: 01281638 1 0 -istanbul%1:15:00:: 09041785 1 0 -isthmian%3:01:00:: 02752122 1 0 -isthmian_games%1:04:00:: 00516381 1 0 -isthmus%1:08:00:: 05267211 2 0 -isthmus%1:17:00:: 09319604 1 0 -isthmus_of_corinth%1:17:00:: 09319902 1 0 -isthmus_of_darien%1:17:00:: 09320239 1 0 -isthmus_of_kra%1:17:00:: 09320111 1 0 -isthmus_of_panama%1:17:00:: 09320239 1 0 -isthmus_of_suez%1:17:00:: 09320485 1 0 -isthmus_of_tehuantepec%1:17:00:: 09320611 1 0 -istiophoridae%1:05:00:: 02630052 1 0 -istiophorus%1:05:00:: 02630468 1 0 -istiophorus_albicans%1:05:00:: 02630615 1 0 -isuprel%1:06:00:: 03587874 1 0 -isuridae%1:05:00:: 01483370 1 0 -isurus%1:05:00:: 01483980 1 0 -isurus_glaucus%1:05:00:: 01484562 1 0 -isurus_oxyrhincus%1:05:00:: 01484285 1 0 -isurus_paucus%1:05:00:: 01484447 1 0 -it%1:09:00:: 06134510 1 0 -itaconic_acid%1:27:00:: 14924473 1 0 -italia%1:15:00:: 08801678 1 0 -italian%1:10:00:: 06964247 2 1 -italian%1:18:00:: 09716047 1 1 -italian%3:01:00:: 02957066 1 8 -italian-speaking%5:00:00:communicative:00 00498536 1 0 -italian_bee%1:05:00:: 02209111 1 0 -italian_bread%1:13:00:: 07687626 1 0 -italian_capital%1:15:00:: 08806897 1 0 -italian_clover%1:20:00:: 11753143 1 0 -italian_cypress%1:20:00:: 11632619 1 0 -italian_dressing%1:13:00:: 07834160 1 0 -italian_greyhound%1:05:00:: 02091032 1 0 -italian_honeysuckle%1:20:00:: 12674895 1 0 -italian_lira%1:23:00:: 13686376 1 0 -italian_millet%1:20:00:: 12135270 1 0 -italian_monetary_unit%1:23:00:: 13686268 1 0 -italian_parsley%1:20:00:: 12942572 1 0 -italian_peninsula%1:15:00:: 08801364 1 0 -italian_region%1:15:00:: 08803382 1 0 -italian_renaissance%1:28:00:: 15260130 1 0 -italian_republic%1:15:00:: 08801678 1 0 -italian_rice%1:13:00:: 07875436 1 0 -italian_rye%1:20:00:: 12125001 1 0 -italian_ryegrass%1:20:00:: 12125001 1 0 -italian_sandwich%1:13:00:: 07697825 1 0 -italian_sonnet%1:10:00:: 06382716 1 0 -italian_vegetable_marrow%1:20:00:: 12159942 1 0 -italian_vermouth%1:13:00:: 07899292 1 0 -italian_woodbine%1:20:00:: 12674895 1 0 -italic%1:10:00:: 06961853 2 0 -italic%1:10:01:: 06827344 3 0 -italic%1:10:02:: 06350918 1 1 -italic%3:01:00:: 03075662 2 0 -italic%3:01:01:: 03075798 1 0 -italic_language%1:10:00:: 06961853 1 0 -italicise%2:36:00:: 01749017 1 0 -italicize%2:36:00:: 01749017 1 1 -italo_calvino%1:18:00:: 10880841 1 0 -italy%1:15:00:: 08801678 1 6 -itch%1:09:00:: 05723563 3 0 -itch%1:12:00:: 07490451 2 0 -itch%1:26:00:: 14180327 1 0 -itch%2:37:00:: 01825761 4 0 -itch%2:39:00:: 02121188 2 1 -itch%2:39:01:: 02119874 1 3 -itch%2:39:02:: 02121423 3 0 -itch_mite%1:05:00:: 01781698 1 0 -itchiness%1:09:00:: 05723563 1 0 -itching%1:09:00:: 05723563 1 0 -itchy%5:00:00:painful:00 01712327 2 0 -itchy%5:00:00:tense:03 02406166 1 0 -itchy_feet%1:16:00:: 09183140 1 0 -item%1:06:00:: 03588414 3 16 -item%1:09:00:: 05817845 4 2 -item%1:10:00:: 06482401 1 31 -item%1:10:01:: 06795746 5 0 -item%1:24:00:: 13809920 2 16 -item%4:02:00:: 00256565 1 0 -item-by-item%5:00:00:independent:00 00729246 1 0 -itemisation%1:04:00:: 01011166 1 0 -itemise%2:32:00:: 00946105 2 0 -itemise%2:32:01:: 00946588 1 0 -itemization%1:04:00:: 01011166 1 0 -itemize%2:32:00:: 00946105 1 4 -itemize%2:32:01:: 00946588 2 0 -iterate%2:30:01:: 00343600 2 0 -iterate%2:32:00:: 00958334 1 0 -iteration%1:04:00:: 01019129 3 0 -iteration%1:22:00:: 13503908 2 0 -iteration%1:22:01:: 13504173 1 0 -iterative%1:24:00:: 13805594 1 0 -iterative%5:00:00:repetitive:00 01964632 1 0 -iterative_aspect%1:24:00:: 13805594 1 0 -ithaca%1:15:00:: 08784746 2 0 -ithaca%1:15:01:: 09121814 1 0 -ithaki%1:15:00:: 08784746 1 0 -ithiel_town%1:18:00:: 11346710 1 0 -ithunn%1:18:00:: 09581338 1 0 -itinerant%1:18:00:: 10217831 1 0 -itinerant%5:00:00:unsettled:01 02128566 1 0 -itinerary%1:09:00:: 05905706 3 0 -itinerary%1:10:00:: 06423378 2 0 -itinerary%1:15:00:: 08616311 1 0 -itinerate%2:38:00:: 02102247 1 0 -itineration%1:04:00:: 00311381 1 0 -itraconazole%1:06:00:: 03588668 1 0 -itsy-bitsy%5:00:00:small:00 01392633 1 0 -itty-bitty%5:00:00:small:00 01392633 1 0 -iud%1:06:00:: 03582096 1 0 -iv%1:04:00:: 01058983 2 0 -iv%1:23:00:: 13744304 1 0 -iv%5:00:00:cardinal:00 02186665 1 0 -iva%1:20:00:: 11985053 1 0 -iva_xanthifolia%1:20:00:: 11985321 1 0 -ivan_iii%1:18:00:: 11075021 1 0 -ivan_iii_vasilievich%1:18:00:: 11075021 1 0 -ivan_iv%1:18:00:: 11075219 1 0 -ivan_iv_vasilievich%1:18:00:: 11075219 1 0 -ivan_lendl%1:18:00:: 11126081 1 0 -ivan_pavlov%1:18:00:: 11227206 1 0 -ivan_petrovich_pavlov%1:18:00:: 11227206 1 0 -ivan_sergeevich_turgenev%1:18:00:: 11352035 1 0 -ivan_the_great%1:18:00:: 11075021 1 0 -ivan_the_terrible%1:18:00:: 11075219 1 0 -ivan_turgenev%1:18:00:: 11352035 1 0 -ivanov%1:18:00:: 11075352 1 0 -ives%1:18:00:: 11075452 2 0 -ives%1:18:01:: 11075670 1 0 -ivied%5:00:00:leafy:00 01702140 1 0 -ivor_armstrong_richards%1:18:00:: 11260945 1 0 -ivory%1:07:00:: 04961331 2 2 -ivory%1:27:00:: 14757547 1 6 -ivory-billed_woodpecker%1:05:00:: 01840412 1 0 -ivory-nut_palm%1:20:00:: 12594324 1 0 -ivory_black%1:27:00:: 14918883 1 1 -ivory_coast%1:15:00:: 08736517 1 0 -ivory_coast_franc%1:23:00:: 13677998 1 0 -ivory_gull%1:05:00:: 02042472 1 0 -ivory_nut%1:20:00:: 12594533 1 0 -ivory_palm%1:20:00:: 12594324 1 0 -ivory_plant%1:20:00:: 12594324 1 0 -ivory_tower%1:09:00:: 05674927 1 1 -ivory_tree%1:20:00:: 11772879 1 0 -ivorybill%1:05:00:: 01840412 1 0 -ivp%1:04:00:: 00906829 2 0 -ivp%1:06:00:: 03582508 1 0 -ivry%1:04:00:: 01281813 1 0 -ivry_la_bataille%1:04:00:: 01281813 1 0 -ivy%1:20:00:: 11798978 1 1 -ivy-covered%5:00:00:leafy:00 01702140 1 0 -ivy-leaved_geranium%1:20:00:: 12687957 1 0 -ivy_arum%1:20:00:: 11788727 1 0 -ivy_family%1:20:00:: 11796744 1 0 -ivy_geranium%1:20:00:: 12687957 1 0 -ivy_league%1:14:00:: 08232706 1 0 -ivy_leaguer%1:18:00:: 10218043 1 0 -iw%1:04:00:: 00996180 1 0 -iwo%1:04:00:: 01282022 1 0 -iwo_jima%1:04:00:: 01282022 2 0 -iwo_jima%1:15:00:: 08927068 1 0 -iww%1:14:00:: 08473173 1 0 -ix%1:23:00:: 13745270 1 0 -ix%5:00:00:cardinal:00 02187161 1 0 -ixc%5:00:00:cardinal:00 02195049 1 0 -ixia%1:20:00:: 12417686 1 0 -ixl%5:00:00:cardinal:00 02190182 1 0 -ixobrychus%1:05:00:: 02012063 1 0 -ixobrychus_exilis%1:05:00:: 02012185 1 0 -ixodes%1:05:00:: 01777032 1 0 -ixodes_dammini%1:05:00:: 01777304 1 0 -ixodes_dentatus%1:05:00:: 01778621 1 0 -ixodes_neotomae%1:05:00:: 01777467 1 0 -ixodes_pacificus%1:05:00:: 01777649 1 0 -ixodes_persulcatus%1:05:00:: 01778487 1 0 -ixodes_ricinus%1:05:00:: 01778217 1 0 -ixodes_scapularis%1:05:00:: 01777909 1 0 -ixodes_spinipalpis%1:05:00:: 01778801 1 0 -ixodid%1:05:00:: 01776705 1 0 -ixodidae%1:05:00:: 01776546 1 0 -iyar%1:28:00:: 15215994 1 0 -iyyar%1:28:00:: 15215994 1 0 -iz_al-din_al-qassam_battalions%1:14:00:: 08040257 1 0 -izaak_walton%1:18:00:: 11373099 1 0 -izanagi%1:18:00:: 09535001 1 0 -izanami%1:18:00:: 09535130 1 0 -izar%1:06:00:: 03588216 1 0 -izmir%1:15:00:: 09042322 1 0 -izzard%1:10:00:: 06833890 1 0 -j%1:10:00:: 06832140 2 0 -j%1:23:00:: 13726074 1 0 -j._b._rhine%1:18:00:: 11258924 1 0 -j._b._s._haldane%1:18:00:: 11023070 1 0 -j._c._maxwell%1:18:00:: 11166504 1 0 -j._craig_ventner%1:18:00:: 11362573 1 0 -j._d._salinger%1:18:00:: 11278980 1 0 -j._e._johnston%1:18:00:: 11088771 1 0 -j._edgar_hoover%1:18:00:: 11058914 1 0 -j._j._hill%1:18:00:: 11050057 1 0 -j._m._barrie%1:18:00:: 10835022 1 0 -j._m._synge%1:18:00:: 11327744 1 0 -j._p._morgan%1:18:00:: 11190446 1 0 -j._r._firth%1:18:00:: 10971264 1 0 -j.r.r._tolkien%1:18:00:: 11345181 1 0 -j_particle%1:17:00:: 09322349 1 0 -jab%1:04:00:: 00135952 2 1 -jab%1:04:01:: 00334935 1 1 -jab%1:04:02:: 00135311 3 0 -jab%2:35:00:: 01229976 1 2 -jab%2:35:01:: 01230555 2 1 -jab%2:35:02:: 01230350 3 0 -jabalpur%1:15:00:: 08903487 1 0 -jabat_al-tahrir_al-filistiniyyah%1:14:00:: 08037503 1 0 -jabber%1:10:00:: 06610992 1 0 -jabber%2:32:00:: 01051956 1 2 -jabberer%1:18:00:: 10034785 1 0 -jabbering%1:10:00:: 06610992 1 0 -jabberwocky%1:10:00:: 06609296 1 0 -jabbing%1:04:00:: 00334935 1 1 -jabiru%1:05:01:: 02003839 3 0 -jabiru%1:05:02:: 02004131 2 0 -jabiru%1:05:03:: 02004492 1 0 -jabiru_mycteria%1:05:00:: 02003839 1 0 -jaboncillo%1:20:00:: 12741792 1 0 -jabot%1:06:00:: 03588841 1 0 -jaboticaba%1:13:00:: 07765862 2 0 -jaboticaba%1:20:00:: 12333053 1 0 -jaboticaba_tree%1:20:00:: 12333053 1 0 -jacamar%1:05:00:: 01843065 1 0 -jacaranda%1:20:00:: 12523475 1 0 -jacinth%1:27:00:: 14909584 1 0 -jack%1:05:00:: 02576575 11 0 -jack%1:05:01:: 02389943 12 0 -jack%1:06:00:: 03588951 10 0 -jack%1:06:01:: 03589093 9 0 -jack%1:06:02:: 03589220 8 0 -jack%1:06:03:: 03589313 7 0 -jack%1:06:04:: 03589513 6 0 -jack%1:06:05:: 03589672 5 0 -jack%1:13:00:: 07754684 4 0 -jack%1:18:00:: 10294602 2 0 -jack%1:18:01:: 10241300 3 0 -jack%1:23:00:: 13773047 1 0 -jack%2:33:00:: 01145365 2 0 -jack%2:35:00:: 01219544 1 0 -jack-a-lantern%1:20:00:: 13005329 1 0 -jack-by-the-hedge%1:20:00:: 11870418 1 0 -jack-in-the-box%1:06:00:: 03590588 1 0 -jack-in-the-pulpit%1:20:01:: 11784497 1 0 -jack-in-the-pulpit%1:20:02:: 11780148 2 0 -jack-o'-lantern%1:06:00:: 03590841 2 0 -jack-o'-lantern%1:19:00:: 11459369 1 0 -jack-o-lantern%1:20:00:: 13005329 1 0 -jack-o-lantern_fungus%1:20:00:: 13005329 1 0 -jack-tar%1:18:00:: 10294602 1 0 -jack_bean%1:20:00:: 12511239 1 0 -jack_benny%1:18:00:: 10845424 1 0 -jack_crevalle%1:05:00:: 02576906 1 0 -jack_dempsey%1:18:00:: 10930591 1 0 -jack_frost%1:18:00:: 09491222 1 0 -jack_kennedy%1:18:00:: 11101000 1 0 -jack_kerouac%1:18:00:: 11102493 1 0 -jack_ladder%1:06:00:: 03591116 1 0 -jack_lemmon%1:18:00:: 11125840 1 0 -jack_london%1:18:00:: 11137748 1 0 -jack_mackerel%1:05:00:: 02580679 1 0 -jack_nicklaus%1:18:00:: 11206356 1 0 -jack_oak%1:20:01:: 12271451 2 0 -jack_oak%1:20:02:: 12274863 1 0 -jack_of_all_trades%1:18:00:: 10159289 2 0 -jack_of_all_trades%1:18:01:: 10218164 1 1 -jack_off%2:35:00:: 01430633 1 0 -jack_pine%1:20:00:: 11615607 1 0 -jack_plane%1:06:00:: 03590932 1 0 -jack_roosevelt_robinson%1:18:00:: 11265731 1 0 -jack_salmon%1:05:00:: 02557749 1 0 -jack_the_ripper%1:18:00:: 11077369 1 0 -jack_up%2:35:00:: 01219544 1 0 -jack_william_nicklaus%1:18:00:: 11206356 1 0 -jackal%1:05:00:: 02115096 1 0 -jackanapes%1:18:00:: 10776987 1 0 -jackass%1:05:00:: 02389943 2 0 -jackass%1:18:00:: 10157744 1 3 -jackass_bat%1:05:00:: 02148512 1 0 -jackass_penguin%1:05:00:: 02057035 1 0 -jackboot%1:06:00:: 03516844 1 0 -jackdaw%1:05:00:: 01579578 1 1 -jacket%1:06:00:: 03589791 1 12 -jacket%1:06:01:: 03590306 2 3 -jacket%1:06:02:: 03139089 3 1 -jacket%1:06:03:: 03590475 5 0 -jacket%1:13:00:: 07711471 4 0 -jacket%2:29:00:: 00048790 2 0 -jacket%2:35:00:: 01334931 1 1 -jacket_crown%1:06:00:: 03139089 1 0 -jacket_potato%1:13:00:: 07711371 1 0 -jackfruit%1:13:00:: 07754684 2 0 -jackfruit%1:20:00:: 12400720 1 0 -jackfruit_tree%1:20:00:: 12400720 1 0 -jackhammer%1:06:00:: 02689434 1 0 -jackie_robinson%1:18:00:: 11265731 1 0 -jacking_off%1:04:00:: 00856193 1 0 -jackknife%1:04:00:: 00444340 2 0 -jackknife%1:06:00:: 03038480 1 0 -jackknife%2:38:00:: 01963459 1 0 -jackknife-fish%1:05:00:: 02595056 1 0 -jackknife_clam%1:05:00:: 01959029 1 0 -jacklight%1:06:00:: 03590732 1 0 -jacklight%2:33:00:: 01145365 1 0 -jackpot%1:21:00:: 13343774 1 0 -jackpot%1:21:01:: 13268683 2 0 -jackrabbit%1:05:00:: 02327028 1 0 -jackrabbit%2:38:00:: 02097676 1 0 -jacks%1:04:00:: 00485262 1 0 -jackscrew%1:06:00:: 03591028 1 0 -jacksmelt%1:05:00:: 02602760 1 0 -jacksnipe%1:05:01:: 02028727 2 0 -jacksnipe%1:05:02:: 02032769 1 0 -jackson%1:15:00:: 09105003 10 0 -jackson%1:15:01:: 09140781 9 0 -jackson%1:15:02:: 09101127 11 0 -jackson%1:15:03:: 09159859 8 0 -jackson%1:18:00:: 11075823 7 0 -jackson%1:18:01:: 11076079 6 0 -jackson%1:18:02:: 11076359 5 0 -jackson%1:18:03:: 11076566 4 0 -jackson%1:18:04:: 11076820 3 0 -jackson%1:18:05:: 11076965 2 0 -jackson%1:18:06:: 11077195 1 0 -jackson_pollock%1:18:00:: 11241106 1 0 -jacksonia%1:20:00:: 12536455 1 0 -jacksonian%1:18:00:: 10218292 1 0 -jacksonian%3:01:00:: 03075944 1 1 -jacksonian_epilepsy%1:26:00:: 14087758 1 0 -jacksonville%1:15:00:: 09073258 1 0 -jackstones%1:04:00:: 00485262 2 0 -jackstones%1:06:00:: 03589313 1 0 -jackstraw%1:06:00:: 03591465 1 0 -jackstraws%1:04:00:: 00485450 1 0 -jacob%1:18:00:: 10218390 2 0 -jacob%1:18:01:: 11077484 1 0 -jacob's_ladder%1:06:00:: 03591116 2 0 -jacob's_ladder%1:20:00:: 12809626 1 0 -jacob's_rod%1:20:00:: 12442548 1 0 -jacob's_staff%1:20:00:: 12381931 1 0 -jacob_epstein%1:18:00:: 10959664 1 0 -jacob_harmensen%1:18:00:: 10822962 1 0 -jacobean%1:18:00:: 10218692 1 0 -jacobean%3:01:00:: 03076108 1 0 -jacobean_lily%1:20:00:: 12422559 1 0 -jacobi%1:18:00:: 11077649 1 0 -jacobin%1:18:00:: 10218802 1 0 -jacobinic%3:01:00:: 03076230 1 0 -jacobinical%3:01:00:: 03076230 1 0 -jacobinism%1:09:00:: 06220041 1 0 -jacobite%1:18:00:: 10218989 1 0 -jacobs%1:18:00:: 11077762 3 0 -jacobs%1:18:01:: 11077927 2 0 -jacobs%1:18:02:: 11078059 1 0 -jacobus_arminius%1:18:00:: 10822962 1 0 -jaconet%1:06:00:: 03591313 1 0 -jacopo_robusti%1:18:00:: 11343208 1 0 -jacquard%1:06:00:: 03591592 3 0 -jacquard%1:06:01:: 03591798 2 0 -jacquard%1:18:00:: 11078203 1 0 -jacquard_loom%1:06:00:: 03591592 1 0 -jacqueline_cochran%1:18:00:: 10903722 1 0 -jacquemier's_sign%1:26:00:: 14266521 1 0 -jacques_alexandre_cesar_charles%1:18:00:: 10892218 1 0 -jacques_anatole_francois_thibault%1:18:00:: 10977368 1 0 -jacques_bernoulli%1:18:00:: 10848356 1 0 -jacques_cartier%1:18:00:: 10885176 1 0 -jacques_charles%1:18:00:: 10892218 1 0 -jacques_costeau%1:18:00:: 10913503 1 0 -jacques_derrida%1:18:00:: 10931452 1 0 -jacques_etienne_montgolfier%1:18:00:: 11188123 1 0 -jacques_francois_antoine_ibert%1:18:00:: 11070531 1 0 -jacques_francois_fromental_elie_halevy%1:18:00:: 11023883 1 0 -jacques_germain_soufflot%1:18:00:: 11308877 1 0 -jacques_lipchitz%1:18:00:: 11133778 1 0 -jacques_loeb%1:18:00:: 11137175 1 0 -jacques_louis_david%1:18:00:: 10924072 1 0 -jacques_lucien_monod%1:18:00:: 11185816 1 0 -jacques_marquette%1:18:00:: 11158156 1 0 -jacques_monod%1:18:00:: 11185816 1 0 -jacques_offenbach%1:18:00:: 11212534 1 0 -jacques_tati%1:18:00:: 11332572 1 0 -jacques_tatischeff%1:18:00:: 11332572 1 0 -jacques_yves_costeau%1:18:00:: 10913503 1 0 -jacquinia%1:20:00:: 12099803 1 0 -jacquinia_armillaris%1:20:00:: 12099972 1 0 -jacquinia_keyensis%1:20:00:: 12100187 1 0 -jactation%1:07:00:: 04625515 1 0 -jactitate%2:38:00:: 01890792 1 0 -jactitation%1:07:00:: 04625515 3 0 -jactitation%1:10:00:: 07229530 1 0 -jactitation%1:10:01:: 06757479 2 0 -jaculus%1:05:00:: 02352175 1 0 -jaculus_jaculus%1:05:00:: 02352290 1 0 -jade%1:05:00:: 02382204 4 0 -jade%1:07:00:: 04968749 3 0 -jade%1:18:00:: 09772930 2 0 -jade%1:27:00:: 14924602 1 2 -jade%2:29:00:: 00076114 1 0 -jade%2:29:01:: 00075021 2 0 -jade%5:00:00:chromatic:00 00376645 1 0 -jade-green%5:00:00:chromatic:00 00376645 1 0 -jade_green%1:07:00:: 04968749 1 0 -jade_vine%1:20:00:: 12571781 1 0 -jaded%5:00:00:satiate:00 02078153 2 2 -jaded%5:00:00:tired:00 02433975 1 3 -jadeite%1:27:00:: 14678762 1 0 -jadestone%1:27:00:: 14924602 1 0 -jaeger%1:05:00:: 02044178 1 0 -jafar%1:18:00:: 11078404 1 0 -jafar_umar_thalib%1:18:00:: 11078404 1 0 -jaffa%1:15:00:: 08798195 1 0 -jaffa_orange%1:13:00:: 07749095 1 0 -jaffar%1:18:00:: 11078404 1 0 -jaffar_umar_thalib%1:18:00:: 11078404 1 0 -jafnea_semitosta%1:20:00:: 13031474 1 0 -jag%1:04:00:: 00749491 4 0 -jag%1:06:00:: 03591901 3 0 -jag%1:06:01:: 03592055 2 0 -jag%1:17:00:: 09320826 1 0 -jag%2:35:00:: 01255624 1 0 -jagannath%1:18:00:: 09530515 1 0 -jagannatha%1:18:00:: 09530515 1 0 -jagatai%1:10:00:: 06928047 1 0 -jagganath%1:18:00:: 09530515 1 0 -jaggary%1:27:00:: 15062955 1 0 -jagged%5:00:00:rough:02 02246903 2 0 -jagged%5:00:00:uneven:00 00912288 1 3 -jaggedly%4:02:00:: 00438846 1 0 -jaggedness%1:07:00:: 04772691 1 0 -jagger%1:18:00:: 11078650 1 0 -jaggery%1:27:00:: 15062955 1 0 -jaggery_palm%1:20:00:: 12587132 1 0 -jagghery%1:27:00:: 15062955 1 0 -jaggy%5:00:00:rough:02 02246903 1 0 -jaggy%5:00:00:uneven:00 00912288 2 0 -jaghatai%1:10:00:: 06928047 1 0 -jagua%1:20:00:: 12667582 1 0 -jaguar%1:05:00:: 02128925 1 0 -jaguarondi%1:05:00:: 02125689 1 0 -jaguarundi%1:05:00:: 02125689 1 0 -jaguarundi_cat%1:05:00:: 02125689 1 0 -jahvey%1:18:00:: 09538318 1 0 -jahweh%1:18:00:: 09538318 1 0 -jai_alai%1:04:00:: 00480366 1 0 -jail%1:06:00:: 03592245 1 3 -jail%2:41:00:: 02494356 1 1 -jail_bird%1:18:00:: 10219121 1 0 -jail_cell%1:06:00:: 02991302 1 0 -jail_delivery%1:04:00:: 00095873 1 0 -jailbird%1:18:00:: 10219121 1 0 -jailbreak%1:04:00:: 00059989 1 0 -jailed%5:00:00:unfree:00 01065126 1 0 -jailer%1:18:00:: 10149867 1 0 -jailhouse%1:06:00:: 03592245 1 0 -jailor%1:18:00:: 10149867 1 0 -jain%3:01:00:: 02925342 1 0 -jainism%1:09:00:: 06239655 2 0 -jainism%1:14:00:: 08098192 1 0 -jainist%1:18:00:: 09685085 1 0 -jainist%3:01:00:: 02925342 1 0 -jaish-e-muhammad%1:14:00:: 08026197 1 0 -jaish-i-mohammed%1:14:00:: 08026197 1 0 -jak%1:13:00:: 07754684 1 0 -jakarta%1:15:00:: 08909719 1 0 -jakes%1:06:00:: 03860404 1 0 -jakob-creutzfeldt_disease%1:26:00:: 14100494 1 0 -jakob_behmen%1:18:00:: 10854397 1 0 -jakob_bernoulli%1:18:00:: 10848356 1 0 -jakob_boehm%1:18:00:: 10854397 1 0 -jakob_boehme%1:18:00:: 10854397 1 0 -jakob_bohme%1:18:00:: 10854397 1 0 -jakob_grimm%1:18:00:: 11016563 1 0 -jakob_hermandszoon%1:18:00:: 10822962 1 0 -jakob_liebmann_beer%1:18:00:: 11177695 1 0 -jakob_ludwig_felix_mendelssohn-bartholdy%1:18:00:: 11173917 1 0 -jakob_ludwig_karl_grimm%1:18:00:: 11016563 1 0 -jakobson%1:18:00:: 11078774 1 0 -jalalabad%1:15:00:: 08704116 1 0 -jalapeno%1:13:00:: 07721678 2 0 -jalapeno%1:20:00:: 12900987 1 0 -jalapeno_pepper%1:13:00:: 07721678 1 0 -jalopy%1:06:00:: 02924554 1 0 -jalousie%1:06:00:: 03592669 2 0 -jalousie%1:06:01:: 03692842 1 0 -jam%1:04:00:: 01253379 4 0 -jam%1:13:00:: 07642933 1 3 -jam%1:14:00:: 08183398 3 0 -jam%1:26:00:: 14409489 2 0 -jam%2:32:00:: 01057034 4 1 -jam%2:35:00:: 01524298 6 0 -jam%2:35:01:: 01525177 5 0 -jam%2:35:02:: 01476483 7 0 -jam%2:35:03:: 01492944 3 1 -jam%2:38:00:: 02064131 1 1 -jam%2:38:01:: 01993668 2 1 -jam-packed%5:00:00:crowded:00 00560100 1 0 -jam_session%1:04:00:: 00102374 1 1 -jamaat_ul-fuqra%1:14:00:: 08026539 1 0 -jamaica%1:15:00:: 08753933 1 0 -jamaica%1:15:01:: 08753729 2 0 -jamaica_apple%1:13:00:: 07761461 1 0 -jamaica_bayberry%1:20:00:: 12330891 1 0 -jamaica_caper_tree%1:20:00:: 11865429 1 0 -jamaica_dogwood%1:20:00:: 12559518 1 0 -jamaica_honeysuckle%1:20:00:: 12384375 1 0 -jamaica_quassia%1:20:01:: 12718483 2 0 -jamaica_quassia%1:20:02:: 12718685 1 0 -jamaica_rum%1:13:00:: 07905386 1 0 -jamaica_shorts%1:06:00:: 02831595 1 0 -jamaica_sorrel%1:20:00:: 12179632 1 0 -jamaican%1:18:00:: 09718092 1 1 -jamaican%3:01:00:: 03076432 1 0 -jamaican_capital%1:15:00:: 08754238 1 0 -jamaican_cherry%1:20:00:: 12194147 1 0 -jamaican_dollar%1:23:00:: 13673554 1 0 -jamais_vu%1:09:00:: 05684839 1 0 -jamb%1:06:00:: 03592773 1 0 -jambalaya%1:13:00:: 07869611 1 0 -jambeau%1:06:00:: 03457451 1 0 -jamberry%1:20:01:: 12911440 2 0 -jamberry%1:20:02:: 12911673 1 0 -jambon%1:13:00:: 07669891 1 0 -jamboree%1:04:00:: 00518669 1 0 -jambos%1:20:00:: 12332718 1 0 -jambosa%1:20:00:: 12332218 1 0 -james%1:10:00:: 06446711 10 0 -james%1:17:00:: 09320985 9 0 -james%1:17:01:: 09321180 8 0 -james%1:18:00:: 11078982 7 0 -james%1:18:01:: 11079252 6 0 -james%1:18:02:: 11079392 5 0 -james%1:18:03:: 11079544 4 0 -james%1:18:04:: 11079802 3 0 -james%1:18:05:: 11080174 2 0 -james%1:18:06:: 11080351 1 0 -james_a._garfield%1:18:00:: 10990733 1 0 -james_abbott_mcneill_whistler%1:18:00:: 11383425 1 0 -james_abraham_garfield%1:18:00:: 10990733 1 0 -james_agee%1:18:00:: 10809576 1 0 -james_albert_michener%1:18:00:: 11178631 1 0 -james_alfred_van_allen%1:18:00:: 11358374 1 0 -james_arthur_baldwin%1:18:00:: 10832251 1 0 -james_augustine_aloysius_joyce%1:18:00:: 11093116 1 0 -james_augustus_henry_murray%1:18:00:: 11197099 1 0 -james_augustus_murray%1:18:00:: 11197099 1 0 -james_baldwin%1:18:00:: 10832251 1 0 -james_barrie%1:18:00:: 10835022 1 0 -james_bay%1:17:00:: 09321338 1 0 -james_bernoulli%1:18:00:: 10848356 1 0 -james_bond%1:18:00:: 09590377 1 0 -james_boswell%1:18:00:: 10858872 1 0 -james_bowie%1:18:00:: 10859857 1 0 -james_branch_cabell%1:18:00:: 10877456 1 0 -james_buchanan%1:18:00:: 10869931 1 0 -james_buchanan_brady%1:18:00:: 10861329 1 0 -james_butler_hickock%1:18:00:: 11049443 1 0 -james_byron_dean%1:18:00:: 10926066 1 0 -james_cagney%1:18:00:: 10878844 1 0 -james_clark_ross%1:18:00:: 11271094 1 0 -james_clerk_maxwell%1:18:00:: 11166504 1 0 -james_cleveland_owens%1:18:00:: 11219293 1 0 -james_cook%1:18:00:: 10908313 1 0 -james_crichton%1:18:00:: 10915025 1 0 -james_dean%1:18:00:: 10926066 1 0 -james_dewey_watson%1:18:00:: 11376201 1 0 -james_douglas_morrison%1:18:00:: 11192533 1 0 -james_earl_carter%1:18:00:: 10884831 1 0 -james_earl_carter_jr.%1:18:00:: 10884831 1 0 -james_edmund_scripps%1:18:00:: 11290107 1 0 -james_edward_meade%1:18:00:: 11170604 1 0 -james_fenimore_cooper%1:18:00:: 10909127 1 0 -james_francis_thorpe%1:18:00:: 11341479 1 0 -james_franck%1:18:00:: 10978422 1 0 -james_garfield%1:18:00:: 10990733 1 0 -james_george_frazer%1:18:00:: 10979694 1 0 -james_grover_thurber%1:18:00:: 11341760 1 0 -james_hargreaves%1:18:00:: 11029005 1 0 -james_harold_doolittle%1:18:00:: 10940053 1 0 -james_harvey_robinson%1:18:00:: 11265914 1 0 -james_henry_leigh_hunt%1:18:00:: 11066772 1 0 -james_hogg%1:18:00:: 11055807 1 0 -james_howard_meredith%1:18:00:: 11176005 1 0 -james_hutton%1:18:00:: 11069261 1 0 -james_i%1:18:00:: 11079802 1 0 -james_ii%1:18:00:: 11080174 1 0 -james_iv%1:18:00:: 11080351 1 0 -james_ives%1:18:00:: 11075452 1 0 -james_jerome_hill%1:18:00:: 11050057 1 0 -james_john_corbett%1:18:00:: 10910421 1 0 -james_joseph_tunney%1:18:00:: 11351832 1 0 -james_joyce%1:18:00:: 11093116 1 0 -james_k._polk%1:18:00:: 11240733 1 0 -james_knox_polk%1:18:00:: 11240733 1 0 -james_langston_hughes%1:18:00:: 11065101 1 0 -james_leonard_farmer%1:18:00:: 10966665 1 0 -james_madison%1:18:00:: 11148486 1 0 -james_maitland_stewart%1:18:00:: 11318171 1 0 -james_marshall_hendrix%1:18:00:: 11040024 1 0 -james_mason%1:18:00:: 11163041 1 0 -james_matthew_barrie%1:18:00:: 10835022 1 0 -james_mckeen_cattell%1:18:00:: 10891428 1 0 -james_meredith%1:18:00:: 11176005 1 0 -james_merritt_ives%1:18:00:: 11075452 1 0 -james_michener%1:18:00:: 11178631 1 0 -james_mill%1:18:00:: 11179502 1 0 -james_monroe%1:18:00:: 11186042 1 0 -james_murray%1:18:00:: 11197099 1 0 -james_naismith%1:18:00:: 11199234 1 0 -james_neville_mason%1:18:00:: 11163041 1 0 -james_parkinson%1:18:00:: 11223294 1 0 -james_polk%1:18:00:: 11240733 1 0 -james_prescott_joule%1:18:00:: 11092740 1 0 -james_riddle_hoffa%1:18:00:: 11054173 1 0 -james_river%1:17:00:: 09320985 2 0 -james_river%1:17:01:: 09321180 1 0 -james_scott_connors%1:18:00:: 10907501 1 0 -james_thomas_farrell%1:18:00:: 10967311 1 0 -james_thomas_harris%1:18:00:: 11030679 1 0 -james_thurber%1:18:00:: 11341760 1 0 -james_tobin%1:18:00:: 11344235 1 0 -james_usher%1:18:00:: 11357879 1 0 -james_ussher%1:18:00:: 11357879 1 0 -james_watson%1:18:00:: 11376201 1 0 -james_watt%1:18:00:: 11376742 1 0 -james_whitcomb_riley%1:18:00:: 11262468 1 0 -james_william_fulbright%1:18:00:: 10985160 1 0 -james_wilson%1:18:00:: 11391587 1 0 -james_wyatt%1:18:00:: 11399620 1 0 -jamesian%3:01:00:: 02752234 2 0 -jamesian%3:01:01:: 02752354 1 0 -jamesonia%1:20:00:: 13211179 1 0 -jamestown%1:15:00:: 09150448 1 0 -jamestown_weed%1:20:00:: 12903503 1 0 -jamison%1:18:00:: 11080601 1 0 -jamjar%1:06:00:: 03593122 1 0 -jammed%5:00:00:crowded:00 00560100 1 1 -jammer%1:06:00:: 03592931 1 0 -jammies%1:06:00:: 03877472 1 0 -jamming%1:04:00:: 01253379 1 0 -jammu_and_kashmir%1:15:00:: 08975617 1 0 -jampack%2:35:00:: 01524298 1 0 -jampan%1:06:00:: 03593034 1 0 -jampot%1:06:00:: 03593122 1 0 -jan%1:28:00:: 15210045 1 2 -jan_amos_komensky%1:18:00:: 10905568 1 0 -jan_christian_smuts%1:18:00:: 11306619 1 0 -jan_evangelista_purkinje%1:18:00:: 11248777 1 0 -jan_hendrix_oort%1:18:00:: 11215541 1 0 -jan_hus%1:18:00:: 11067885 1 0 -jan_steen%1:18:00:: 11314219 1 0 -jan_swammerdam%1:18:00:: 11326154 1 0 -jan_tinbergen%1:18:00:: 11342905 1 0 -jan_van_der_meer%1:18:00:: 11363269 1 0 -jan_van_eyck%1:18:00:: 10964052 1 0 -jan_vermeer%1:18:00:: 11363269 1 0 -jane_austen%1:18:00:: 10829293 1 0 -jane_doe%1:18:00:: 10219240 1 0 -jane_fonda%1:18:00:: 10974136 1 0 -jane_goodall%1:18:00:: 11007181 1 0 -jane_jacobs%1:18:00:: 11077927 1 0 -jane_seymour%1:18:00:: 11294680 1 0 -jangle%1:11:00:: 07385998 1 0 -jangle%2:39:00:: 02172683 1 1 -jangling%5:00:00:cacophonous:00 00300007 1 2 -jangly%5:00:00:cacophonous:00 00300007 1 0 -janis_joplin%1:18:00:: 11091545 1 0 -janissary%1:18:00:: 10219380 2 0 -janissary%1:18:01:: 10219453 1 1 -janitor%1:18:00:: 10219577 1 3 -jansen%1:18:00:: 11080745 1 0 -jansenism%1:09:00:: 06188989 1 0 -jansenist%1:18:00:: 10219680 1 1 -january%1:28:00:: 15210045 1 12 -january_1%1:28:00:: 15182189 3 0 -january_1%1:28:01:: 15192890 2 0 -january_1%1:28:02:: 15193271 1 0 -january_19%1:28:00:: 15182569 1 0 -january_20%1:28:00:: 15159265 2 0 -january_20%1:28:01:: 15185721 1 0 -january_6%1:28:00:: 15194506 1 0 -janus%1:18:00:: 09563619 1 0 -janus-faced%5:00:00:bipolar:00 02475692 1 1 -janus-faced%5:00:00:dishonest:00 01223271 2 0 -janus-faced%5:00:00:faced:00 00235571 3 0 -jap%1:18:00:: 09718652 1 5 -jap_clover%1:20:00:: 12543455 1 0 -japan%1:06:00:: 03593222 4 0 -japan%1:06:01:: 03593362 3 0 -japan%1:15:00:: 08921850 2 3 -japan%1:15:01:: 08920381 1 5 -japan%2:36:00:: 01682946 1 0 -japan_allspice%1:20:00:: 11701698 1 0 -japan_bittersweet%1:20:00:: 12748534 1 0 -japan_cedar%1:20:00:: 11636204 1 0 -japan_clover%1:20:00:: 12543455 1 0 -japan_current%1:19:00:: 11489686 1 0 -japan_tallow%1:27:00:: 14924786 1 0 -japan_trench%1:17:00:: 09321527 1 0 -japan_wax%1:27:00:: 14924786 1 0 -japanese%1:10:00:: 06929279 2 1 -japanese%1:18:00:: 09718217 1 1 -japanese%3:01:00:: 02965043 1 10 -japanese-speaking%5:00:00:communicative:00 00498629 1 0 -japanese_allspice%1:20:00:: 11701698 1 0 -japanese_andromeda%1:20:00:: 12243459 1 0 -japanese_angelica_tree%1:20:00:: 11798496 1 0 -japanese_apricot%1:20:00:: 12640839 1 0 -japanese_archipelago%1:15:00:: 08920381 1 0 -japanese_banana%1:20:00:: 12352844 1 0 -japanese_barberry%1:20:00:: 11698245 1 0 -japanese_barnyard_millet%1:20:00:: 12117912 1 0 -japanese_beech%1:20:00:: 12262185 1 0 -japanese_beetle%1:05:00:: 02173373 1 0 -japanese_bittersweet%1:20:00:: 12748534 1 0 -japanese_black_pine%1:20:00:: 11618290 1 0 -japanese_brome%1:20:00:: 12111744 1 0 -japanese_capital%1:15:00:: 08923348 1 0 -japanese_carpet_grass%1:20:00:: 12146488 1 0 -japanese_cedar%1:20:00:: 11636204 1 0 -japanese_cherry%1:20:00:: 12649317 1 1 -japanese_chess%1:20:00:: 12111744 1 0 -japanese_chestnut%1:20:00:: 12263588 1 0 -japanese_clover%1:20:00:: 12543455 1 0 -japanese_crab%1:13:00:: 07788340 1 0 -japanese_deer%1:05:00:: 02431976 1 0 -japanese_deity%1:18:00:: 09534428 1 0 -japanese_flowering_cherry%1:20:01:: 12649317 2 0 -japanese_flowering_cherry%1:20:02:: 12649539 1 0 -japanese_honeysuckle%1:20:00:: 12675876 1 0 -japanese_hop%1:20:00:: 12398526 1 0 -japanese_iris%1:20:00:: 12414035 1 0 -japanese_islands%1:15:00:: 08920381 1 0 -japanese_ivy%1:20:00:: 13148208 1 0 -japanese_lacquer_tree%1:20:00:: 12767648 1 0 -japanese_lawn_grass%1:20:00:: 12146654 1 0 -japanese_leaf%1:20:00:: 11781658 1 0 -japanese_leek%1:20:00:: 12433952 1 0 -japanese_lilac%1:20:00:: 12311413 1 0 -japanese_lime%1:20:00:: 12204032 1 0 -japanese_linden%1:20:00:: 12204032 1 0 -japanese_maple%1:20:01:: 12755727 2 0 -japanese_maple%1:20:02:: 12755876 1 0 -japanese_medlar%1:20:00:: 12629666 1 0 -japanese_millet%1:20:00:: 12117912 1 0 -japanese_monetary_unit%1:23:00:: 13709591 1 0 -japanese_morning_glory%1:20:00:: 12828791 1 0 -japanese_oak%1:20:01:: 12265600 2 0 -japanese_oak%1:20:02:: 12275317 1 0 -japanese_oyster%1:05:00:: 01961234 1 0 -japanese_pagoda_tree%1:20:00:: 12570394 1 0 -japanese_persimmon%1:20:00:: 12771390 1 0 -japanese_pink%1:20:00:: 11808932 1 0 -japanese_plum%1:13:00:: 07763792 3 0 -japanese_plum%1:20:01:: 12648693 1 0 -japanese_plum%1:20:02:: 12629666 2 0 -japanese_poinsettia%1:20:00:: 12920521 1 0 -japanese_privet%1:20:00:: 12308447 1 0 -japanese_quince%1:20:00:: 12624721 1 0 -japanese_radish%1:20:00:: 11895092 1 0 -japanese_red_army%1:14:00:: 08026904 1 0 -japanese_red_pine%1:20:00:: 11618079 1 0 -japanese_rose%1:20:00:: 12622072 1 0 -japanese_snowbell%1:20:00:: 12777778 1 0 -japanese_spaniel%1:05:00:: 02085782 1 0 -japanese_spurge%1:20:00:: 12747371 1 0 -japanese_stranglehold%1:04:00:: 00814274 1 0 -japanese_sumac%1:20:00:: 12767648 1 0 -japanese_table_pine%1:20:00:: 11618079 1 0 -japanese_tree_lilac%1:20:00:: 12311224 1 0 -japanese_umbrella_pine%1:20:00:: 11660300 1 0 -japanese_varnish_tree%1:20:01:: 12198286 2 0 -japanese_varnish_tree%1:20:02:: 12767648 1 0 -japanese_wistaria%1:20:00:: 12580654 1 0 -japanese_yew%1:20:00:: 11662371 1 0 -jape%1:10:00:: 06778102 1 0 -japery%1:04:00:: 00513401 1 0 -japheth%1:18:00:: 10219778 1 0 -japonica%1:20:01:: 12624568 2 0 -japonica%1:20:02:: 12929600 1 0 -jar%1:06:00:: 03593526 1 2 -jar%1:11:00:: 07339098 3 0 -jar%1:23:00:: 13767822 2 0 -jar%2:35:10:: 01497864 5 0 -jar%2:37:00:: 01769090 4 0 -jar%2:38:00:: 01864865 2 1 -jar%2:38:01:: 01865051 3 0 -jar%2:42:00:: 02667698 1 1 -jar_against%2:35:00:: 01240308 1 0 -jarful%1:23:00:: 13767822 1 0 -jargon%1:10:00:: 07157273 1 1 -jargon%1:10:01:: 07071017 3 0 -jargon%1:27:00:: 14924915 2 0 -jargoon%1:27:00:: 14924915 1 0 -jaroslav_hasek%1:18:00:: 11033870 1 0 -jarrell%1:18:00:: 11080884 1 0 -jarring%5:00:00:cacophonous:00 00300196 1 1 -jarringly%4:02:00:: 00383563 1 0 -jarvik_artificial_heart%1:06:00:: 03593862 1 0 -jarvik_heart%1:06:00:: 03593862 1 0 -jasmine%1:20:00:: 12306717 1 0 -jasmine_tobacco%1:20:00:: 12907671 1 0 -jasminum%1:20:00:: 12306519 1 0 -jasminum_mesnyi%1:20:00:: 12306938 1 0 -jasminum_nudiflorum%1:20:00:: 12307076 1 0 -jasminum_officinale%1:20:00:: 12307240 1 0 -jasminum_sambac%1:20:00:: 12307455 1 0 -jason%1:18:00:: 09592384 1 0 -jasper%1:27:00:: 14925033 1 0 -jasper_johns%1:18:00:: 11087931 1 0 -jaspers%1:18:00:: 11080987 1 0 -jassid%1:05:00:: 02259136 1 0 -jassidae%1:05:00:: 02258910 1 0 -jat%1:18:00:: 10219879 1 0 -jati%1:14:00:: 08306371 1 0 -jatropha%1:20:00:: 12925394 1 0 -jatropha_curcus%1:20:00:: 12925583 1 0 -jatropha_stimulosus%1:20:00:: 12925179 1 0 -jatropha_urens%1:20:00:: 12925179 1 0 -jaun_gris%1:18:00:: 11017020 1 0 -jaundice%1:07:00:: 04643397 2 0 -jaundice%1:26:00:: 14319684 1 0 -jaundice%2:29:00:: 00106723 2 0 -jaundice%2:30:00:: 00477107 1 0 -jaundice_of_the_newborn%1:26:00:: 14320016 1 0 -jaundiced%5:00:00:prejudiced:00 00285506 2 0 -jaundiced%5:00:00:unhealthy:00 01177556 1 0 -jaunt%1:04:00:: 00311809 1 0 -jaunt%2:38:00:: 01843055 1 0 -jauntily%4:02:00:: 00407547 1 0 -jauntiness%1:07:01:: 04814025 1 0 -jauntiness%1:07:02:: 04633797 2 0 -jaunting_car%1:06:00:: 03594010 1 0 -jaunty%5:00:00:cheerful:00 00364145 2 1 -jaunty%5:00:00:fashionable:00 00971933 1 1 -jaunty_car%1:06:00:: 03594010 1 0 -java%1:10:00:: 06901053 3 0 -java%1:13:00:: 07929519 2 1 -java%1:15:00:: 08908248 1 2 -java_finch%1:05:00:: 01543632 1 0 -java_man%1:05:00:: 02473720 1 0 -java_olives%1:20:00:: 12195734 1 0 -java_pepper%1:20:00:: 13150178 1 0 -java_sparrow%1:05:00:: 01543632 1 0 -javan%1:18:00:: 10220080 1 0 -javan%3:01:00:: 03076663 1 0 -javanese%1:10:00:: 06939431 2 0 -javanese%1:18:00:: 10220080 1 0 -javanese%3:01:00:: 03076663 1 0 -javanthropus%1:05:00:: 02474282 1 0 -javel_water%1:27:00:: 14921974 1 0 -javelin%1:06:00:: 03594148 2 0 -javelin%1:11:00:: 07470420 1 0 -javelina%1:05:00:: 02397744 1 0 -javelle_water%1:27:00:: 14921974 1 0 -jaw%1:06:00:: 03594277 3 0 -jaw%1:08:00:: 05546040 1 9 -jaw%1:08:01:: 05603160 2 0 -jaw%2:32:00:: 01038666 1 1 -jaw%2:32:01:: 00824767 4 0 -jaw%2:32:02:: 01037498 2 1 -jaw%2:34:00:: 01201089 3 0 -jawaharlal_nehru%1:18:00:: 11202833 1 0 -jawan%1:18:00:: 10220228 1 0 -jawbone%1:08:00:: 05275905 1 0 -jawbone%2:32:00:: 01039162 1 0 -jawbreaker%1:10:00:: 06305385 2 0 -jawbreaker%1:13:00:: 07599161 1 0 -jawed%3:00:00:: 02597115 1 0 -jawfish%1:05:00:: 02611561 1 0 -jawless%3:00:00:: 02597418 1 0 -jawless_fish%1:05:00:: 01474283 1 0 -jawless_vertebrate%1:05:00:: 01474283 1 0 -jaws_of_life%1:06:00:: 03594523 1 0 -jay%1:05:00:: 01580077 2 0 -jay%1:18:00:: 11081111 1 0 -jay_cooke%1:18:00:: 10908534 1 0 -jay_gould%1:18:00:: 11009273 1 0 -jaybird%1:05:00:: 01580870 1 0 -jayshullah%1:14:00:: 08027314 1 0 -jaywalk%2:38:00:: 01915253 1 0 -jaywalker%1:18:00:: 10220360 1 0 -jazz%1:10:00:: 07062697 2 0 -jazz%1:10:01:: 07060976 3 0 -jazz%1:10:02:: 07136711 1 0 -jazz%2:35:00:: 01426397 2 0 -jazz%2:36:00:: 01725734 1 0 -jazz_age%1:28:00:: 15255439 1 0 -jazz_around%2:38:00:: 01882689 1 0 -jazz_band%1:14:00:: 08250302 1 0 -jazz_festival%1:04:00:: 00518039 1 2 -jazz_group%1:14:00:: 08250302 1 1 -jazz_musician%1:18:00:: 10220486 1 2 -jazz_up%2:30:00:: 00192659 1 0 -jazzman%1:18:00:: 10220486 1 0 -jazzy%5:00:00:colorful:03 00407420 2 0 -jazzy%5:00:00:rhythmical:00 02019881 1 1 -jdam%1:06:00:: 03601442 1 0 -je_ne_sais_quoi%1:06:00:: 03595179 1 0 -jealous%5:00:00:desirous:00 00888765 1 3 -jealous%5:00:00:distrustful:00 02464105 2 2 -jealously%4:02:00:: 00383693 1 0 -jealously%4:02:01:: 00303177 2 0 -jealousy%1:09:00:: 05706076 2 0 -jealousy%1:12:00:: 07550079 1 2 -jean%1:06:00:: 03175189 2 0 -jean%1:06:03:: 03594734 1 0 -jean-baptiste_poquelin%1:18:00:: 11184694 1 0 -jean-claude_duvalier%1:18:00:: 10946750 1 0 -jean-frederic_joliot%1:18:00:: 11088969 1 0 -jean-frederic_joliot-curie%1:18:00:: 11088969 1 0 -jean-jacques_rousseau%1:18:00:: 11272689 1 0 -jean-louis_lebris_de_kerouac%1:18:00:: 11102493 1 0 -jean-paul_sartre%1:18:00:: 11282286 1 0 -jean-philippe_rameau%1:18:00:: 11252915 1 0 -jean_anouilh%1:18:00:: 10818715 1 0 -jean_antoine_watteau%1:18:00:: 11376939 1 0 -jean_arp%1:18:00:: 10824146 1 0 -jean_auguste_dominique_ingres%1:18:00:: 11071838 1 0 -jean_baptiste_camille_corot%1:18:00:: 10911948 1 0 -jean_baptiste_de_lamarck%1:18:00:: 11114791 1 0 -jean_baptiste_donatien_de_vimeur%1:18:00:: 11266703 1 0 -jean_baptiste_joseph_fourier%1:18:00:: 10976468 1 0 -jean_baptiste_lully%1:18:00:: 11144860 1 0 -jean_baptiste_racine%1:18:00:: 11251788 1 0 -jean_bernard_leon_foucault%1:18:00:: 10976004 1 0 -jean_bernoulli%1:18:00:: 10848500 1 0 -jean_caulvin%1:18:00:: 10880398 1 0 -jean_cauvin%1:18:00:: 10880398 1 0 -jean_chauvin%1:18:00:: 10880398 1 0 -jean_cocteau%1:18:00:: 10904107 1 0 -jean_de_la_fontaine%1:18:00:: 11114637 1 0 -jean_edouard_vuillard%1:18:00:: 11369551 1 0 -jean_francois_champollion%1:18:00:: 10890211 1 0 -jean_francois_millet%1:18:00:: 11180357 1 0 -jean_genet%1:18:00:: 10993936 1 0 -jean_giraudoux%1:18:00:: 11001211 1 0 -jean_harlow%1:18:00:: 11029132 1 0 -jean_honore_fragonard%1:18:00:: 10977159 1 0 -jean_laffite%1:18:00:: 11114423 1 0 -jean_lafitte%1:18:00:: 11114423 1 0 -jean_louis_charles_garnier%1:18:00:: 10991303 1 0 -jean_louis_rodolphe_agassiz%1:18:00:: 10809317 1 0 -jean_luc_godard%1:18:00:: 11002684 1 0 -jean_martin_charcot%1:18:00:: 10891830 1 0 -jean_monnet%1:18:00:: 11185680 1 0 -jean_nicholas_arthur_rimbaud%1:18:00:: 11262765 1 0 -jean_paul_marat%1:18:00:: 11155577 1 0 -jean_piaget%1:18:00:: 11234292 1 0 -jean_racine%1:18:00:: 11251788 1 0 -jean_sibelius%1:18:00:: 11299367 1 0 -jeanne_antoinette_poisson%1:18:00:: 11241655 1 0 -jeanne_d'arc%1:18:00:: 11081353 1 0 -jeannette_rankin%1:18:00:: 11253802 1 0 -jebel_musa%1:17:00:: 09321694 1 0 -jed'dah%1:15:00:: 08994834 1 0 -jeddah%1:15:00:: 08994834 1 0 -jeep%1:06:00:: 03594945 1 5 -jeer%1:10:00:: 06716234 1 0 -jeer%2:32:00:: 00850192 1 3 -jeerer%1:18:00:: 10561320 1 0 -jeering%1:10:00:: 06716234 1 0 -jeering%5:00:00:disrespectful:00 01995596 1 0 -jeeringly%4:02:00:: 00347860 1 0 -jeffers%1:18:00:: 11081673 1 0 -jefferson%1:18:00:: 11081828 1 0 -jefferson_city%1:15:00:: 09106912 1 0 -jefferson_davis%1:18:00:: 10924649 1 0 -jefferson_davis'_birthday%1:28:00:: 15189684 1 0 -jeffersonian%1:18:00:: 10220807 1 0 -jeffersonian%3:01:00:: 02752496 1 1 -jeffrey's_pine%1:20:00:: 11614713 1 0 -jeffrey_pine%1:20:00:: 11614713 1 0 -jehad%1:04:00:: 00996513 2 0 -jehad%1:04:01:: 00996673 1 0 -jehovah%1:18:01:: 09538318 1 0 -jehovah%1:18:02:: 09536363 2 0 -jehovah's_witness%1:18:00:: 10248377 1 0 -jehovah's_witnesses%1:14:00:: 08091575 1 0 -jejunal_artery%1:08:00:: 05348698 1 0 -jejune%5:00:00:immature:02 01492596 2 0 -jejune%5:00:00:uninteresting:00 01345997 3 0 -jejune%5:00:00:unwholesome:00 02559694 1 0 -jejunely%4:02:00:: 00383798 1 0 -jejuneness%1:07:01:: 05206573 2 0 -jejuneness%1:07:02:: 04791453 3 0 -jejuneness%1:26:00:: 14426568 1 0 -jejunitis%1:26:00:: 14348070 1 0 -jejunity%1:07:01:: 05206573 1 0 -jejunity%1:07:02:: 04791453 2 0 -jejunoileitis%1:26:00:: 14348176 1 0 -jejunostomy%1:04:00:: 00681441 1 0 -jejunum%1:08:00:: 05535247 1 3 -jekyll_and_hyde%1:18:00:: 10220924 1 0 -jell%2:30:00:: 00442669 1 0 -jell-o%1:13:00:: 07613815 1 0 -jellaba%1:06:00:: 03595055 1 0 -jelled%5:00:00:solid:01 02260570 1 0 -jellied%5:00:00:solid:01 02260570 1 0 -jellify%2:30:00:: 00507331 1 0 -jellify%2:30:01:: 00507143 2 0 -jello%1:13:00:: 07613815 1 0 -jelly%1:13:00:: 07643306 2 1 -jelly%1:13:01:: 07643981 1 1 -jelly%1:27:00:: 14925198 3 0 -jelly%2:30:00:: 00507143 1 0 -jelly_bean%1:13:00:: 07606669 1 0 -jelly_doughnut%1:13:00:: 07639344 1 0 -jelly_egg%1:13:00:: 07606669 1 0 -jelly_fungus%1:20:00:: 13060190 1 0 -jelly_roll_morton%1:18:00:: 11193058 1 0 -jellyfish%1:05:00:: 01910747 2 0 -jellyfish%1:05:03:: 01913166 1 0 -jellyleaf%1:20:00:: 12186554 1 0 -jellylike%5:00:00:thick:02 02416610 1 0 -jellyroll%1:13:00:: 07632357 1 0 -jem%1:14:00:: 08026197 1 0 -jemaah_islamiyah%1:14:00:: 08027518 1 0 -jemmy%1:06:00:: 03599351 1 0 -jena%1:04:00:: 01282289 1 0 -jenghiz_khan%1:18:00:: 10994308 1 0 -jenner%1:18:00:: 11082135 1 0 -jennet%1:05:00:: 02390015 1 0 -jenny%1:05:00:: 02390015 2 0 -jenny%1:18:00:: 11082353 1 0 -jenny_ass%1:05:00:: 02390015 1 0 -jenny_lind%1:18:00:: 11132768 1 0 -jenny_wren%1:05:00:: 01584225 1 0 -jens_otto_harry_jespersen%1:18:00:: 11083527 1 0 -jensen%1:18:00:: 11082535 1 0 -jeopardise%2:42:00:: 02697120 1 0 -jeopardize%2:41:00:: 02545272 2 2 -jeopardize%2:42:00:: 02697120 1 2 -jeopardy%1:26:00:: 14541852 1 2 -jerboa%1:05:00:: 02351870 1 0 -jerboa_kangaroo%1:05:00:: 01880813 1 0 -jerboa_rat%1:05:00:: 02334460 1 0 -jeremiad%1:10:00:: 07211374 1 0 -jeremiah%1:10:00:: 06438290 2 0 -jeremiah%1:18:00:: 11082842 1 0 -jeremy_bentham%1:18:00:: 10845603 1 0 -jerevan%1:15:00:: 09018030 1 0 -jerez%1:15:00:: 09026204 1 0 -jerez_de_la_frontera%1:15:00:: 09026204 1 0 -jericho%1:15:00:: 08927836 1 0 -jerk%1:04:00:: 00335988 2 1 -jerk%1:04:01:: 00115500 6 0 -jerk%1:04:02:: 00626423 5 0 -jerk%1:13:00:: 07664770 4 0 -jerk%1:18:00:: 10221040 1 2 -jerk%1:28:00:: 15279480 3 0 -jerk%2:29:00:: 00009631 3 2 -jerk%2:35:00:: 01591158 5 0 -jerk%2:35:01:: 01592072 1 15 -jerk%2:38:00:: 01891817 2 4 -jerk%2:38:01:: 01884383 4 0 -jerk-off%1:18:00:: 10717196 1 0 -jerk_off%2:35:00:: 01430633 1 0 -jerked_meat%1:13:00:: 07664770 1 0 -jerker%1:18:00:: 10802147 1 0 -jerkily%4:02:00:: 00384101 2 0 -jerkily%4:02:01:: 00463471 1 0 -jerkin%1:06:00:: 03595264 1 0 -jerkiness%1:07:00:: 04770535 1 0 -jerking%1:04:00:: 00335988 1 1 -jerking%5:00:00:unsteady:00 02303575 1 0 -jerking_off%1:04:00:: 00856193 1 0 -jerkwater%5:00:00:provincial:00 00637455 1 0 -jerky%1:13:00:: 07664770 1 0 -jerky%5:00:00:stupid:00 00439905 3 0 -jerky%5:00:00:sudden:00 01143750 2 0 -jerky%5:00:00:unsteady:00 02303575 1 0 -jeroboam%1:06:00:: 03595409 2 0 -jeroboam%1:18:00:: 11082652 1 0 -jeroboam_i%1:18:00:: 11082652 1 0 -jerom_bos%1:18:00:: 10858468 1 0 -jerome%1:18:00:: 11083064 1 0 -jerome_david_kern%1:18:00:: 11102353 1 0 -jerome_david_salinger%1:18:00:: 11278980 1 0 -jerome_kern%1:18:00:: 11102353 1 0 -jerome_robbins%1:18:00:: 11263803 1 0 -jerry%1:18:00:: 09748239 1 0 -jerry-builder%1:18:00:: 10221162 1 0 -jerry-building%1:04:00:: 01105038 1 0 -jerry-built%5:00:00:weak:00 02325642 1 0 -jerry_lee_lewis%1:18:00:: 11131358 1 0 -jersey%1:05:00:: 02406749 5 0 -jersey%1:06:00:: 03595523 4 0 -jersey%1:06:01:: 03595614 3 0 -jersey%1:15:00:: 09112282 1 0 -jersey%1:15:01:: 08887238 2 0 -jersey_city%1:15:00:: 09113479 1 0 -jersey_elm%1:20:00:: 12408466 1 0 -jersey_fern%1:20:00:: 13208302 1 0 -jersey_knapweed%1:20:00:: 11941178 1 0 -jersey_lillie%1:18:00:: 11117108 1 0 -jersey_pine%1:20:00:: 11616852 1 0 -jerusalem%1:15:00:: 08794798 1 4 -jerusalem_artichoke%1:13:00:: 07719058 3 0 -jerusalem_artichoke%1:20:00:: 11979715 2 0 -jerusalem_artichoke%1:20:02:: 11979964 1 0 -jerusalem_artichoke_sunflower%1:20:00:: 11979715 1 0 -jerusalem_cherry%1:20:00:: 12896862 1 0 -jerusalem_cricket%1:05:00:: 02229156 1 0 -jerusalem_cross%1:06:00:: 03595737 1 0 -jerusalem_oak%1:20:00:: 11829205 1 0 -jerusalem_sage%1:20:00:: 12861541 1 0 -jerusalem_thorn%1:20:01:: 12497669 3 0 -jerusalem_thorn%1:20:02:: 13143285 2 0 -jerusalem_thorn%1:20:03:: 13143758 1 0 -jerusalem_thorn%1:20:04:: 11757190 4 0 -jerusalem_warriors%1:14:00:: 08027920 1 0 -jespersen%1:18:00:: 11083527 1 0 -jessamine%1:20:00:: 12307240 1 0 -jesse_jackson%1:18:00:: 11076566 1 0 -jesse_james%1:18:00:: 11079544 1 0 -jesse_louis_jackson%1:18:00:: 11076566 1 0 -jesse_owens%1:18:00:: 11219293 1 0 -jessica_lucy_mitford%1:18:00:: 11183211 1 0 -jessica_mitford%1:18:00:: 11183211 1 0 -jessica_tandy%1:18:00:: 11330504 1 0 -jessye_norman%1:18:00:: 11209428 1 0 -jest%1:04:00:: 00431005 2 0 -jest%1:10:00:: 06778102 1 1 -jest%2:29:00:: 00105554 2 0 -jest%2:32:00:: 00853633 1 1 -jest_at%2:32:00:: 00851933 1 0 -jester%1:18:00:: 10221312 1 0 -jesting%5:00:00:humorous:00 01267076 1 0 -jestingly%4:02:00:: 00384207 1 0 -jesuit%1:18:00:: 10221520 1 2 -jesuit%3:01:00:: 03076935 1 0 -jesuit's_bark%1:20:00:: 12664710 1 0 -jesuit_order%1:14:00:: 08149473 1 0 -jesuitic%3:01:00:: 03076935 1 0 -jesuitical%3:01:00:: 03076935 1 0 -jesuitism%1:09:00:: 06185138 1 0 -jesuitry%1:09:00:: 06185138 1 0 -jesuits'_nut%1:20:00:: 12348518 1 0 -jesus%1:18:00:: 11083656 1 7 -jesus_christ%1:18:00:: 11083656 1 6 -jesus_of_nazareth%1:18:00:: 11083656 1 0 -jet%1:06:00:: 03595860 1 2 -jet%1:06:01:: 03387926 6 0 -jet%1:06:02:: 03606572 5 0 -jet%1:11:00:: 07436100 2 1 -jet%1:19:00:: 11475067 4 0 -jet%1:27:00:: 14925378 3 0 -jet%2:35:00:: 01516290 1 1 -jet%2:38:00:: 01942234 2 0 -jet%5:00:00:achromatic:00 00388849 1 0 -jet-black%5:00:00:achromatic:00 00388849 1 0 -jet-propelled%3:01:00:: 02752678 1 0 -jet-propelled_plane%1:06:00:: 03595860 1 0 -jet_black%1:07:00:: 04960582 1 0 -jet_bridge%1:06:00:: 03596099 1 0 -jet_engine%1:06:00:: 03596285 1 0 -jet_lag%1:26:00:: 14017033 1 0 -jet_plane%1:06:00:: 03595860 1 1 -jet_propulsion%1:19:00:: 11470008 1 0 -jet_set%1:14:00:: 08251756 1 0 -jet_stream%1:19:00:: 11470139 1 0 -jeth%1:28:00:: 15220149 1 0 -jetliner%1:06:00:: 03596543 1 0 -jetsam%1:06:00:: 03367875 2 0 -jetsam%1:06:01:: 03596639 1 0 -jetting%5:00:00:running:02 01240931 1 1 -jettison%2:35:00:: 01510082 2 0 -jettison%2:40:00:: 02223136 1 0 -jetty%1:06:00:: 02894605 1 0 -jeu_d'esprit%1:10:00:: 06776679 1 0 -jeune_fille%1:18:00:: 10247358 1 0 -jevons%1:18:00:: 11084200 1 0 -jew%1:18:00:: 09681351 1 55 -jew's-ear%1:20:00:: 13062421 1 0 -jew's-ears%1:20:00:: 13062421 1 0 -jew's_harp%1:06:00:: 03597916 1 0 -jew-baiter%1:18:00:: 09797742 1 2 -jew-bush%1:20:00:: 12928491 1 0 -jew_bush%1:20:00:: 12928491 1 0 -jewbush%1:20:00:: 12928491 1 0 -jewel%1:06:00:: 03596787 1 2 -jewel%1:18:00:: 10221656 2 0 -jewel%2:36:00:: 01678685 1 0 -jewel_casket%1:06:00:: 02978055 1 0 -jewel_orchid%1:20:00:: 12045157 1 0 -jeweled%5:00:00:adorned:00 00056660 1 2 -jeweled_headdress%1:06:00:: 03597317 1 0 -jeweler%1:18:00:: 10221777 2 0 -jeweler%1:18:01:: 10221956 1 2 -jeweler's_glass%1:06:00:: 03597147 1 1 -jeweler's_loupe%1:06:00:: 03692522 1 0 -jewelled%5:00:00:adorned:00 00056660 1 0 -jewelled_headdress%1:06:00:: 03597317 1 0 -jeweller%1:18:00:: 10221777 2 0 -jeweller%1:18:01:: 10221956 1 0 -jewellery%1:06:00:: 03597469 1 0 -jewelry%1:06:00:: 03597469 1 0 -jewelry_dealer%1:14:00:: 08063836 1 0 -jewelry_maker%1:18:00:: 10221956 1 0 -jewelry_store%1:14:00:: 08063836 1 0 -jewels-of-opar%1:20:00:: 11863877 1 0 -jewelweed%1:20:00:: 12684379 1 0 -jewess%1:18:00:: 09681973 1 0 -jewfish%1:05:00:: 02570164 2 0 -jewfish%1:05:02:: 02596067 1 0 -jewish%3:01:01:: 02922263 1 52 -jewish-orthodox%3:01:00:: 02953420 1 0 -jewish_calendar%1:28:00:: 15177866 1 0 -jewish_calendar_month%1:28:00:: 15214068 1 0 -jewish_holy_day%1:28:00:: 15184755 1 0 -jewish_new_year%1:28:00:: 15182805 1 0 -jewish_orthodoxy%1:14:00:: 08094659 1 0 -jewish_religion%1:14:00:: 08094013 1 0 -jewish_rye%1:13:00:: 07686021 1 0 -jewish_rye_bread%1:13:00:: 07686021 1 0 -jewison%1:18:00:: 11084409 1 0 -jewry%1:14:00:: 08479095 1 0 -jews'_harp%1:06:00:: 03597916 1 0 -jezebel%1:18:00:: 10222170 2 0 -jezebel%1:18:01:: 11084514 1 0 -jfk%1:18:00:: 11101000 1 0 -jhvh%1:18:00:: 09538318 1 0 -ji%1:14:00:: 08027518 1 0 -jiao%1:23:00:: 13710101 1 0 -jib%1:06:00:: 03598151 1 0 -jib%2:38:00:: 01946817 2 0 -jib%2:41:00:: 02583545 1 0 -jibboom%1:06:00:: 03598299 1 0 -jibe%1:10:00:: 06767922 1 1 -jibe%2:38:00:: 01946817 2 0 -jibe%2:42:00:: 02657219 1 0 -jidda%1:15:00:: 08994834 1 0 -jiddah%1:15:00:: 08994834 1 0 -jiffy%1:28:00:: 15247110 1 0 -jig%1:04:00:: 00538991 4 0 -jig%1:06:00:: 03598385 3 0 -jig%1:06:01:: 03598515 2 0 -jig%1:10:00:: 07055805 1 0 -jig%2:38:00:: 01898032 1 1 -jigaboo%1:18:00:: 09638009 1 0 -jigger%1:05:00:: 01781071 3 0 -jigger%1:06:00:: 04206225 1 0 -jigger%1:06:01:: 03598646 2 0 -jiggered%5:00:00:surprised:00 02358898 1 0 -jiggermast%1:06:00:: 03598646 1 0 -jiggery-pokery%1:10:00:: 06760722 1 0 -jiggle%1:04:00:: 00347359 1 0 -jiggle%2:38:00:: 01898282 1 0 -jigsaw%1:06:00:: 03598783 2 0 -jigsaw%1:06:01:: 04121728 1 0 -jigsaw_puzzle%1:06:00:: 03598930 1 0 -jihad%1:04:00:: 00996513 2 0 -jihad%1:04:01:: 00996673 1 0 -jihadi%3:01:00:: 02752787 1 0 -jihadist%1:18:00:: 09683180 1 0 -jillion%1:23:00:: 13776432 1 0 -jilt%1:18:00:: 10222259 1 0 -jilt%2:31:00:: 00613248 1 2 -jilted%5:00:00:unloved:00 01463735 1 0 -jim_bowie%1:18:00:: 10859857 1 0 -jim_corbett%1:18:00:: 10910421 1 0 -jim_crow%1:06:00:: 03599111 2 0 -jim_crow%1:09:00:: 05692234 1 0 -jim_henson%1:18:00:: 11043836 1 0 -jim_morrison%1:18:00:: 11192533 1 0 -jim_thorpe%1:18:00:: 11341479 1 0 -jimdandy%1:06:00:: 03599212 2 0 -jimdandy%1:18:00:: 10222353 1 4 -jimenez%1:18:00:: 11084789 1 0 -jimenez_de_cisneros%1:18:00:: 11084895 1 0 -jimhickey%1:06:00:: 03599212 2 0 -jimhickey%1:18:00:: 10222353 1 3 -jimi_hendrix%1:18:00:: 11040024 1 0 -jimmies%1:13:00:: 07604182 1 0 -jimmy%1:06:00:: 03599351 1 0 -jimmy%2:35:00:: 01593254 1 1 -jimmy_cagney%1:18:00:: 10878844 1 0 -jimmy_carter%1:18:00:: 10884831 1 0 -jimmy_conors%1:18:00:: 10907501 1 0 -jimmy_doolittle%1:18:00:: 10940053 1 0 -jimmy_durante%1:18:00:: 10945825 1 0 -jimmy_hoffa%1:18:00:: 11054173 1 0 -jimmy_stewart%1:18:00:: 11318171 1 0 -jimson_weed%1:20:00:: 12903503 1 0 -jimsonweed%1:20:00:: 12903503 1 0 -jinghis_khan%1:18:00:: 10994308 1 0 -jinghpaw%1:10:00:: 06933185 1 0 -jinghpo%1:10:00:: 06933185 1 0 -jingle%1:10:00:: 06379253 2 0 -jingle%1:11:00:: 07385998 1 0 -jingle%2:39:00:: 02172683 1 1 -jingle-jangle%2:39:00:: 02172683 1 0 -jingling%5:00:00:reverberant:00 02010266 1 1 -jingly%5:00:00:reverberant:00 02010266 1 0 -jingo%1:18:00:: 09911849 1 0 -jingoism%1:07:00:: 04878646 2 0 -jingoism%1:10:00:: 07187486 1 0 -jingoist%1:18:00:: 09911849 1 0 -jingoistic%5:00:00:patriotic:00 01740358 1 0 -jinja%1:15:00:: 09043802 1 0 -jinks%1:04:00:: 00510050 1 0 -jinnah%1:18:00:: 11085113 1 0 -jinnee%1:18:00:: 09544433 1 0 -jinni%1:18:00:: 09544433 1 0 -jinrikisha%1:06:00:: 03599486 1 0 -jinx%1:10:00:: 07160424 2 0 -jinx%1:18:00:: 10224446 1 0 -jinx%2:31:00:: 00703184 2 0 -jinx%2:32:02:: 00776988 1 0 -jinxed%5:00:00:unlucky:00 01468850 1 0 -jiqui%1:20:00:: 12694336 1 0 -jird%1:05:00:: 02344175 1 0 -jirga%1:14:00:: 08321956 1 0 -jirrbal%1:10:00:: 06940502 1 0 -jitney%1:06:00:: 02924116 1 0 -jitter%1:11:00:: 07431502 1 0 -jitter%1:11:01:: 07345960 2 0 -jitterbug%1:04:00:: 00532441 1 0 -jitterbug%2:38:00:: 01898181 1 0 -jitteriness%1:12:00:: 07525760 1 0 -jittering%5:00:00:changeable:00 00345860 1 0 -jitters%1:26:00:: 14375761 1 0 -jittery%3:01:00:: 02752865 1 0 -jittery%5:00:00:tense:03 02406370 2 0 -jiujitsu%1:04:00:: 00825951 1 0 -jive%1:10:00:: 07066042 1 0 -jive%2:36:00:: 01708542 1 1 -jnd%1:09:00:: 05713101 1 0 -jnr%1:18:00:: 10227490 1 0 -joachim%1:18:00:: 11085267 1 0 -joan_crawford%1:18:00:: 10914548 1 0 -joan_didion%1:18:00:: 10935025 1 0 -joan_miro%1:18:00:: 11181835 1 0 -joan_of_arc%1:18:00:: 11081353 1 0 -joan_sutherland%1:18:00:: 11325867 1 0 -joao_pessoa%1:15:00:: 08855609 1 0 -job%1:04:00:: 00582388 1 76 -job%1:04:01:: 00719705 2 36 -job%1:04:02:: 00782792 13 0 -job%1:04:03:: 00576717 7 1 -job%1:04:04:: 00584769 5 2 -job%1:04:05:: 00576877 6 2 -job%1:06:00:: 03599628 3 4 -job%1:06:01:: 03599761 4 2 -job%1:10:00:: 06436939 12 0 -job%1:10:01:: 06572482 11 0 -job%1:18:00:: 11085402 9 0 -job%1:18:01:: 10222949 10 0 -job%1:26:00:: 14410605 8 0 -job%2:40:00:: 02272090 4 0 -job%2:41:00:: 02420789 3 0 -job%2:41:02:: 02572913 1 0 -job%2:41:03:: 02461063 2 0 -job's_comforter%1:18:00:: 10223069 1 0 -job's_tears%1:20:00:: 11689367 1 0 -job-control_language%1:10:00:: 06900005 1 0 -job-oriented_terminal%1:06:00:: 03600169 1 0 -job_action%1:04:00:: 01242164 1 0 -job_application%1:10:00:: 06512857 1 0 -job_candidate%1:18:00:: 10222716 1 0 -job_control%1:10:00:: 06576153 1 0 -job_description%1:10:00:: 06724942 1 0 -job_interview%1:10:00:: 07196405 1 0 -job_lot%1:14:00:: 08007430 1 1 -jobber%1:18:00:: 10222497 1 0 -jobbery%1:07:00:: 04875468 1 0 -jobcentre%1:06:00:: 03599964 1 0 -jobholder%1:18:00:: 10222822 1 0 -jobless%5:00:00:unemployed:00 00865007 1 0 -jocasta%1:18:00:: 09596733 1 0 -jock%1:06:00:: 02752615 2 0 -jock%1:18:00:: 09820263 1 0 -jock_itch%1:26:00:: 14126519 1 0 -jockey%1:18:00:: 10223177 1 1 -jockey%1:18:01:: 10223294 2 0 -jockey%2:33:01:: 01104624 1 1 -jockey%2:33:03:: 01087074 3 0 -jockey%2:33:13:: 01110143 2 0 -jockey_cap%1:06:00:: 02799323 1 0 -jockey_club%1:14:00:: 08230009 1 0 -jockey_shorts%1:06:00:: 02901114 1 0 -jockstrap%1:06:00:: 02752615 1 0 -jocose%5:00:00:humorous:00 01267076 1 1 -jocosely%4:02:00:: 00384387 1 0 -jocoseness%1:07:00:: 04649051 1 0 -jocosity%1:07:00:: 04649051 2 0 -jocosity%1:10:00:: 06781151 1 0 -jocote%1:20:00:: 12766043 1 0 -jocular%4:02:00:: 00384387 1 0 -jocular%5:00:00:humorous:00 01267076 1 2 -jocularity%1:04:00:: 00431005 3 0 -jocularity%1:10:00:: 06781151 2 0 -jocularity%1:12:00:: 07529683 1 0 -jocund%5:00:00:joyous:00 01367651 1 0 -jocundity%1:12:00:: 07529683 1 0 -jodhpur%1:06:01:: 03600475 1 0 -jodhpur_boot%1:06:00:: 03600475 1 0 -jodhpur_breeches%1:06:00:: 03600285 1 0 -jodhpur_shoe%1:06:00:: 03600475 1 0 -jodhpurs%1:06:00:: 03600285 1 0 -joe-pye_weed%1:20:01:: 11968704 2 0 -joe-pye_weed%1:20:02:: 11969166 1 0 -joe_bloggs%1:18:00:: 10223744 1 0 -joe_blow%1:18:00:: 10223744 1 0 -joe_clark%1:18:00:: 10898549 1 0 -joe_dimaggio%1:18:00:: 10935567 1 0 -joe_louis%1:18:00:: 11141709 1 0 -joel%1:10:00:: 06439408 2 0 -joel%1:18:00:: 11085559 1 0 -joel_chandler_harris%1:18:00:: 11031257 1 0 -joel_harris%1:18:00:: 11031257 1 0 -joewood%1:20:00:: 12100187 1 0 -joffre%1:18:00:: 11085633 1 0 -joffrey%1:18:00:: 11085813 1 0 -jog%1:04:00:: 00294190 2 0 -jog%1:04:01:: 00112997 3 0 -jog%1:25:00:: 13887211 1 0 -jog%2:32:00:: 00794533 6 0 -jog%2:35:00:: 01231528 5 0 -jog%2:38:00:: 01928390 3 0 -jog%2:38:01:: 01901447 4 0 -jog%2:38:02:: 01987648 2 0 -jog%2:42:00:: 02684453 1 1 -jog_trot%1:04:00:: 00287449 1 0 -jogger%1:18:00:: 10223459 1 0 -jogging%1:04:00:: 00628390 1 0 -joggle%1:04:00:: 00347359 2 0 -joggle%1:06:00:: 03229244 1 0 -joggle%2:35:00:: 01604586 2 0 -joggle%2:38:00:: 01898282 1 1 -johan_august_strindberg%1:18:00:: 11322481 1 0 -johan_julius_christian_sibelius%1:18:00:: 11299367 1 0 -johan_kepler%1:18:00:: 11101986 1 0 -johann_bernoulli%1:18:00:: 10848500 1 0 -johann_christoph_friedrich_von_schiller%1:18:00:: 11284409 1 0 -johann_eck%1:18:00:: 10948117 1 0 -johann_friedrich_herbart%1:18:00:: 11044517 1 0 -johann_gottfried_von_herder%1:18:00:: 11044789 1 0 -johann_gutenberg%1:18:00:: 11020513 1 0 -johann_joachim_winckelmann%1:18:00:: 11392539 1 0 -johann_ludwig_uhland%1:18:00:: 11355428 1 0 -johann_maier%1:18:00:: 10948117 1 0 -johann_maier_eck%1:18:00:: 10948117 1 0 -johann_mendel%1:18:00:: 11173199 1 0 -johann_muller%1:18:00:: 11195619 1 0 -johann_sebastian_bach%1:18:00:: 10830229 1 0 -johann_strauss%1:18:00:: 11321296 2 0 -johann_strauss%1:18:01:: 11321428 1 0 -johann_winckelmann%1:18:00:: 11392539 1 0 -johann_wolfgang_von_goethe%1:18:00:: 11004106 1 0 -johannes_brahms%1:18:00:: 10862113 1 0 -johannes_diderik_van_der_waals%1:18:00:: 11359412 1 0 -johannes_eckhart%1:18:00:: 10948312 1 0 -johannes_evangelista_purkinje%1:18:00:: 11248777 1 0 -johannes_gutenberg%1:18:00:: 11020513 1 0 -johannes_kepler%1:18:00:: 11101986 1 0 -johannes_peter_muller%1:18:00:: 11195771 1 0 -johannes_van_der_waals%1:18:00:: 11359412 1 0 -johannes_vilhelm_jensen%1:18:00:: 11082535 1 0 -johannesburg%1:15:00:: 09000665 1 0 -john%1:06:00:: 04446276 1 2 -john%1:10:00:: 06442239 5 0 -john%1:18:00:: 11085924 3 0 -john%1:18:01:: 10779995 4 0 -john%1:18:02:: 11086279 2 0 -john's_cabbage%1:20:00:: 12834938 1 0 -john_adams%1:18:00:: 10808200 1 0 -john_addington_symonds%1:18:00:: 11327544 1 0 -john_amos_comenius%1:18:00:: 10905568 1 0 -john_anthony_ciardi%1:18:00:: 10897796 1 0 -john_augustus_roebling%1:18:00:: 11268118 1 0 -john_bach_mcmaster%1:18:00:: 11169764 1 0 -john_bardeen%1:18:00:: 10834543 1 0 -john_barleycorn%1:13:00:: 07901587 1 0 -john_barrington_wain%1:18:00:: 11370201 1 0 -john_barrymore%1:18:00:: 10836029 1 0 -john_barth%1:18:00:: 10836184 1 0 -john_bartlett%1:18:00:: 10836862 1 0 -john_bernoulli%1:18:00:: 10848500 1 0 -john_berry_hobbs%1:18:00:: 11053218 1 0 -john_birks_gillespie%1:18:00:: 11000012 1 0 -john_broadus_watson%1:18:00:: 11376400 1 0 -john_brown%1:18:00:: 10866217 1 0 -john_bull%1:18:00:: 09703485 1 0 -john_bunyan%1:18:00:: 10871756 1 0 -john_burdon_sanderson_haldane%1:18:00:: 11023070 1 0 -john_burgoyne%1:18:00:: 10872624 1 0 -john_c._fremont%1:18:00:: 10981569 1 0 -john_cabot%1:18:00:: 10877584 1 0 -john_cage%1:18:00:: 10878530 1 0 -john_calvin%1:18:00:: 10880398 1 0 -john_cash%1:18:00:: 10886222 1 0 -john_chapman%1:18:00:: 10890868 1 0 -john_charles_fremont%1:18:00:: 10981569 1 0 -john_cheever%1:18:00:: 10894522 1 0 -john_chrysostom%1:18:00:: 11086774 1 0 -john_churchill%1:18:00:: 10897594 1 0 -john_ciardi%1:18:00:: 10897796 1 0 -john_constable%1:18:00:: 10907851 1 0 -john_copley%1:18:00:: 10910076 1 0 -john_cowper_powys%1:18:00:: 11245590 1 0 -john_d._rockefeller%1:18:00:: 11267113 1 0 -john_dalton%1:18:00:: 10921324 1 0 -john_davis%1:18:00:: 10925402 1 0 -john_davison_rockefeller%1:18:00:: 11267113 1 0 -john_davys%1:18:00:: 10925402 1 0 -john_deere%1:18:00:: 10927104 1 0 -john_dewey%1:18:00:: 10932898 1 0 -john_doe%1:18:00:: 10223606 2 0 -john_doe%1:18:01:: 10223744 1 0 -john_donald_budge%1:18:00:: 10870440 1 0 -john_donne%1:18:00:: 10939856 1 0 -john_dory%1:05:00:: 01453087 1 0 -john_dos_passos%1:18:00:: 10940474 1 0 -john_dowland%1:18:00:: 10941992 1 0 -john_drew%1:18:00:: 10943256 1 0 -john_dryden%1:18:00:: 10943659 1 0 -john_duns_scotus%1:18:00:: 10945546 1 0 -john_eccles%1:18:00:: 10947922 1 0 -john_edgar_hoover%1:18:00:: 11058914 1 0 -john_edward_masefield%1:18:00:: 11162793 1 0 -john_endecott%1:18:00:: 10958885 1 0 -john_endicott%1:18:00:: 10958885 1 0 -john_ernst_steinbeck%1:18:00:: 11314792 1 0 -john_fitzgerald_kennedy%1:18:00:: 11101000 1 0 -john_fletcher%1:18:00:: 10973164 1 0 -john_florio%1:18:00:: 10973722 1 0 -john_ford%1:18:00:: 10975304 1 0 -john_foster_dulles%1:18:00:: 10944686 1 0 -john_galbraith%1:18:00:: 10987358 1 0 -john_galsworthy%1:18:00:: 10988466 1 0 -john_glenn%1:18:00:: 11002191 1 0 -john_greenleaf_whittier%1:18:00:: 11385277 1 0 -john_griffith_chaney%1:18:00:: 11137748 1 0 -john_haldane%1:18:00:: 11022848 1 0 -john_hancock%1:10:00:: 06404907 2 0 -john_hancock%1:18:00:: 11027416 1 0 -john_hanning_speke%1:18:00:: 11310081 1 0 -john_harvard%1:18:00:: 11033159 1 0 -john_hasbrouck_van_vleck%1:18:00:: 11360175 1 0 -john_heming%1:18:00:: 11039690 1 0 -john_hemminge%1:18:00:: 11039690 1 0 -john_henry%1:18:00:: 09591450 1 0 -john_henry_newman%1:18:00:: 11204962 1 0 -john_henry_o'hara%1:18:00:: 11212988 1 0 -john_herschel%1:18:00:: 11046169 1 0 -john_herschel_glenn_jr.%1:18:00:: 11002191 1 0 -john_hope_franklin%1:18:00:: 10979535 1 0 -john_howard_northrop%1:18:00:: 11209990 1 0 -john_hoyer_updike%1:18:00:: 11356392 1 0 -john_huss%1:18:00:: 11067885 1 0 -john_huston%1:18:00:: 11068760 1 0 -john_irving%1:18:00:: 11073324 1 0 -john_jacob_astor%1:18:00:: 10826557 1 0 -john_james_audubon%1:18:00:: 10828368 1 0 -john_james_osborne%1:18:00:: 11217668 1 0 -john_james_rickard_macleod%1:18:00:: 11148259 1 0 -john_jay%1:18:00:: 11081111 1 0 -john_joseph_mcgraw%1:18:00:: 11168974 1 0 -john_joseph_pershing%1:18:00:: 11230780 1 0 -john_keats%1:18:00:: 11098601 1 0 -john_keble%1:18:00:: 11098707 1 0 -john_kenneth_galbraith%1:18:00:: 10987358 1 0 -john_knox%1:18:00:: 11108195 1 0 -john_l._h._down%1:18:00:: 10942144 1 0 -john_l._lewis%1:18:00:: 11130661 1 0 -john_lackland%1:18:00:: 11086279 1 0 -john_le_carre%1:18:00:: 11122825 1 0 -john_lennon%1:18:00:: 11126783 1 0 -john_llewelly_lewis%1:18:00:: 11130661 1 0 -john_locke%1:18:00:: 11136798 1 1 -john_luther_jones%1:18:00:: 11090631 1 0 -john_lyly%1:18:00:: 11145730 1 0 -john_m._browning%1:18:00:: 10867238 1 0 -john_macleod%1:18:00:: 11148259 1 0 -john_major%1:18:00:: 11150634 1 0 -john_marquand%1:18:00:: 11157954 1 0 -john_marshall%1:18:00:: 11158754 1 0 -john_marstan%1:18:00:: 11159318 1 0 -john_masefield%1:18:00:: 11162793 1 0 -john_maynard_keynes%1:18:00:: 11103397 1 0 -john_mccormick%1:18:00:: 11168513 1 0 -john_mcgraw%1:18:00:: 11168974 1 0 -john_mercer%1:18:00:: 11175445 1 0 -john_merven_carrere%1:18:00:: 10883871 1 0 -john_mill%1:18:00:: 11179287 1 0 -john_millington_synge%1:18:00:: 11327744 1 0 -john_milton%1:18:00:: 11181073 1 0 -john_milton_cage_jr.%1:18:00:: 10878530 1 0 -john_mitchell%1:18:00:: 11182098 1 0 -john_moses_browning%1:18:00:: 10867238 1 0 -john_muir%1:18:00:: 11194910 1 0 -john_napier%1:18:00:: 11200090 1 0 -john_of_gaunt%1:18:00:: 11087091 1 0 -john_orley_allen_tate%1:18:00:: 11332423 1 0 -john_osborne%1:18:00:: 11217668 1 0 -john_paul_i%1:18:00:: 11087612 1 0 -john_paul_ii%1:18:00:: 11087767 1 0 -john_paul_jones%1:18:00:: 11090378 1 0 -john_philip_marquand%1:18:00:: 11157954 1 0 -john_philip_sousa%1:18:00:: 11308988 1 0 -john_pierpont_morgan%1:18:00:: 11190446 1 0 -john_quincy_adams%1:18:00:: 10808353 1 0 -john_r._major%1:18:00:: 11150634 1 0 -john_reed%1:18:00:: 11256494 1 0 -john_robinson_jeffers%1:18:00:: 11081673 1 0 -john_rock%1:18:00:: 11266920 1 0 -john_roderigo_dos_passos%1:18:00:: 10940474 1 0 -john_roebling%1:18:00:: 11268118 1 0 -john_ronald_reuel_tolkien%1:18:00:: 11345181 1 0 -john_ross%1:18:00:: 11271349 1 0 -john_rowlands%1:18:00:: 11313011 1 0 -john_roy_major%1:18:00:: 11150634 1 0 -john_rupert_firth%1:18:00:: 10971264 1 0 -john_ruskin%1:18:00:: 11274714 1 0 -john_rutledge%1:18:00:: 11276676 1 0 -john_scopes%1:18:00:: 11288528 1 0 -john_scott_haldane%1:18:00:: 11022848 1 0 -john_simmons_barth%1:18:00:: 10836184 1 0 -john_singer_sargent%1:18:00:: 11281837 1 0 -john_singleton_copley%1:18:00:: 10910076 1 0 -john_smith%1:18:00:: 11305402 1 0 -john_speke%1:18:00:: 11310081 1 0 -john_steinbeck%1:18:00:: 11314792 1 0 -john_stuart_mill%1:18:00:: 11179287 1 0 -john_the_baptist%1:18:00:: 11087359 1 0 -john_the_divine%1:18:00:: 11085924 1 0 -john_the_evangelist%1:18:00:: 11085924 1 0 -john_thomas_scopes%1:18:00:: 11288528 1 0 -john_tradescant%1:18:00:: 11347674 1 0 -john_trumbull%1:18:00:: 11350286 2 0 -john_trumbull%1:18:01:: 11350393 1 0 -john_tuzo_wilson%1:18:00:: 11391759 1 0 -john_tyler%1:18:00:: 11354145 1 0 -john_tyndall%1:18:00:: 11354743 1 0 -john_uhler%1:18:00:: 11125840 1 0 -john_updike%1:18:00:: 11356392 1 0 -john_van_vleck%1:18:00:: 11360175 1 0 -john_vanbrugh%1:18:00:: 11358598 1 0 -john_venn%1:18:00:: 11362452 1 0 -john_von_neumann%1:18:00:: 11369035 1 0 -john_wain%1:18:00:: 11370201 1 0 -john_walker%1:18:00:: 11371254 1 0 -john_wanamaker%1:18:00:: 11373379 1 0 -john_wayne%1:18:00:: 11377712 1 0 -john_webster%1:18:00:: 11379336 1 0 -john_wesley%1:18:00:: 11381824 1 0 -john_wickliffe%1:18:00:: 11399866 1 0 -john_wiclif%1:18:00:: 11399866 1 0 -john_wilkes%1:18:00:: 11387179 1 0 -john_wilkes_booth%1:18:00:: 10857540 1 0 -john_william_strutt%1:18:00:: 11255211 1 0 -john_witherspoon%1:18:00:: 11393546 1 0 -john_wyclif%1:18:00:: 11399866 1 0 -john_wycliffe%1:18:00:: 11399866 1 0 -john_xxiii%1:18:00:: 11086607 1 0 -johnny%1:18:00:: 10628368 1 2 -johnny-jump-up%1:20:01:: 12389501 2 0 -johnny-jump-up%1:20:02:: 12390681 1 0 -johnny_appleseed%1:18:00:: 10890868 1 0 -johnny_cake%1:13:00:: 07689003 1 0 -johnny_cash%1:18:00:: 10886222 1 0 -johnny_reb%1:18:00:: 10628368 1 1 -johnnycake%1:13:00:: 07689003 1 0 -johns%1:18:00:: 11087931 1 0 -johns_hopkins%1:06:00:: 03600617 2 0 -johns_hopkins%1:18:00:: 11059875 1 0 -johnson%1:18:00:: 11088059 3 0 -johnson%1:18:01:: 11088346 2 0 -johnson%1:18:02:: 11088622 1 0 -johnson_city%1:15:00:: 09140882 1 0 -johnson_grass%1:20:00:: 12138905 1 0 -johnston%1:18:00:: 11088771 1 0 -joie_de_vivre%1:12:00:: 07491895 1 0 -join%1:14:00:: 07998712 2 0 -join%1:25:00:: 13911151 1 0 -join%2:35:00:: 01291069 4 7 -join%2:35:01:: 01295275 2 18 -join%2:41:00:: 02434976 1 75 -join%2:41:01:: 02598765 3 8 -join%2:42:01:: 02622234 5 1 -join_battle%2:33:00:: 01091160 1 0 -join_forces%2:41:00:: 02416278 1 2 -joined%5:00:00:connected:00 00567161 2 0 -joined%5:00:00:married:00 01481812 1 1 -joiner%1:18:00:: 10223869 2 0 -joiner%1:18:01:: 10223994 1 0 -joinery%1:04:00:: 00617601 2 0 -joinery%1:06:00:: 03600722 1 0 -joining%1:04:00:: 00145218 1 0 -joint%1:06:00:: 03600806 6 0 -joint%1:06:01:: 03600977 5 0 -joint%1:06:02:: 03601335 2 1 -joint%1:08:00:: 05595083 1 3 -joint%1:13:00:: 07580782 4 0 -joint%1:25:00:: 13911151 3 0 -joint%2:35:00:: 01604696 3 0 -joint%2:35:01:: 01557426 4 0 -joint%2:40:00:: 02354287 2 0 -joint%2:42:00:: 02660147 1 0 -joint%3:00:00:: 02111684 1 4 -joint%5:00:00:multilateral:00 00238189 3 0 -joint%5:00:00:shared:00 02152716 2 1 -joint-stock_company%1:14:00:: 08383417 1 0 -joint_author%1:18:00:: 09932892 1 0 -joint_chiefs%1:14:00:: 08128159 1 0 -joint_chiefs_of_staff%1:14:00:: 08128159 1 0 -joint_direct_attack_munition%1:06:00:: 03601442 1 0 -joint_fir%1:20:01:: 11598686 1 0 -joint_hinge%1:06:00:: 04333869 1 0 -joint_probability%1:07:00:: 05093181 1 0 -joint_resolution%1:10:00:: 06512324 1 4 -joint_return%1:10:00:: 06549566 1 0 -joint_snake%1:05:00:: 01690466 1 1 -joint_venture%1:04:00:: 00785596 1 0 -jointed%5:00:00:articulated:00 00153545 1 0 -jointed_charlock%1:20:00:: 11894558 1 0 -jointed_rush%1:20:00:: 11744011 1 0 -jointer%1:06:00:: 03601638 1 0 -jointer_plane%1:06:00:: 03601638 1 0 -jointing_plane%1:06:00:: 03601638 1 0 -jointly%4:02:00:: 00117082 2 1 -jointly%4:02:02:: 00197710 1 3 -jointure%1:04:00:: 00381680 2 0 -jointure%1:21:00:: 13264342 1 0 -jointworm%1:05:00:: 02217839 1 0 -joist%1:06:00:: 03601840 1 0 -joke%1:04:00:: 00427580 3 1 -joke%1:04:01:: 00431005 2 1 -joke%1:07:00:: 05173443 4 0 -joke%1:10:00:: 06778102 1 10 -joke%2:29:00:: 00105554 2 1 -joke%2:32:00:: 00853633 1 2 -joker%1:06:00:: 03601964 4 0 -joker%1:10:00:: 06394051 3 0 -joker%1:18:00:: 10224098 1 1 -joker%1:18:01:: 10224295 2 0 -jokester%1:18:00:: 10224098 1 0 -joking%5:00:00:humorous:00 01267076 1 0 -jokingly%4:02:00:: 00384207 1 0 -jokingly%4:02:01:: 00085667 2 0 -joliet%1:18:00:: 11089484 1 0 -joliot%1:18:00:: 11088969 1 0 -joliot-curie%1:18:00:: 11088969 2 0 -joliot-curie%1:18:01:: 11089318 1 0 -jolliet%1:18:00:: 11089484 1 0 -jollification%1:04:00:: 00509846 1 0 -jollify%2:41:00:: 02491383 1 0 -jolliness%1:12:00:: 07551890 1 0 -jollity%1:12:00:: 07551890 1 0 -jolly%1:06:00:: 03602081 2 0 -jolly%1:11:00:: 07450343 1 0 -jolly%2:32:00:: 00855295 1 0 -jolly%4:02:00:: 00035718 1 0 -jolly%5:00:00:joyous:00 01367651 1 2 -jolly_along%2:32:00:: 00859325 1 0 -jolly_boat%1:06:00:: 03602081 1 0 -jolly_roger%1:06:00:: 02847009 1 0 -jolly_up%2:32:00:: 00859325 1 0 -jolson%1:18:00:: 11089669 1 0 -jolt%1:04:00:: 00335988 2 1 -jolt%1:11:00:: 07339098 1 1 -jolt%2:37:00:: 01762963 2 0 -jolt%2:38:00:: 01864865 1 1 -jolted%5:00:00:agitated:00 00086005 2 1 -jolted%5:00:00:agitated:02 00088055 1 1 -jolting%3:00:00:: 02243567 1 0 -jolty%3:00:00:: 02243567 1 0 -jomada_i%1:28:00:: 15217787 1 0 -jomada_ii%1:28:00:: 15217911 1 0 -jomo_kenyata%1:18:00:: 11101700 1 0 -jonah%1:10:00:: 06439924 3 0 -jonah%1:18:00:: 11089868 1 0 -jonah%1:18:01:: 10224446 2 0 -jonah_crab%1:05:00:: 01978587 1 0 -jonas_edward_salk%1:18:00:: 11279109 1 0 -jonas_salk%1:18:00:: 11279109 1 0 -jonathan%1:13:00:: 07740855 1 0 -jonathan_edwards%1:18:00:: 10951948 1 0 -jonathan_swift%1:18:00:: 11326869 1 0 -jonathan_trumbull%1:18:00:: 11350514 1 0 -jones%1:18:00:: 11090136 6 0 -jones%1:18:01:: 11090235 5 0 -jones%1:18:02:: 11090378 4 0 -jones%1:18:03:: 11090512 3 0 -jones%1:18:04:: 11090631 2 0 -jones%1:18:05:: 11090884 1 0 -jones'_penstemon%1:20:00:: 12886402 1 0 -jonesboro%1:15:00:: 09060176 1 0 -jong%1:18:00:: 11091084 1 0 -jongleur%1:18:00:: 10099093 1 0 -jonquil%1:20:00:: 12421917 1 1 -jonquil%1:20:02:: 12422129 2 0 -jons_jakob_berzelius%1:18:00:: 10849435 1 0 -jonson%1:18:00:: 11091184 1 0 -jook%1:06:00:: 03603199 2 0 -jook%1:13:00:: 07704205 1 0 -jook_house%1:06:00:: 03603199 1 0 -jook_joint%1:06:00:: 03603199 1 0 -joplin%1:18:00:: 11091374 2 0 -joplin%1:18:01:: 11091545 1 0 -joppa%1:15:00:: 08798195 1 0 -jordan%1:15:00:: 08927186 2 0 -jordan%1:17:00:: 09321901 1 0 -jordan_almond%1:13:00:: 07750736 2 0 -jordan_almond%1:20:00:: 12646072 1 0 -jordan_curve%1:25:00:: 13868371 1 0 -jordan_river%1:17:00:: 09321901 1 0 -jordanella%1:05:00:: 01447822 1 0 -jordanella_floridae%1:05:00:: 01447946 1 0 -jordanian%1:18:00:: 09718811 1 0 -jordanian%3:01:00:: 03077235 1 0 -jordanian_dinar%1:23:00:: 13669590 1 0 -jordanian_monetary_unit%1:23:00:: 13669479 1 0 -jorge_borges%1:18:00:: 10857697 1 0 -jorge_luis_borges%1:18:00:: 10857697 1 0 -jorge_mario_pedro_vargas_llosa%1:18:00:: 11360895 1 0 -joroslav_heyrovsky%1:18:00:: 11048739 1 0 -jorum%1:06:00:: 03602194 1 0 -jose_clemente_orozco%1:18:00:: 11216922 1 0 -jose_julian_marti%1:18:00:: 11159418 1 0 -jose_orozco%1:18:00:: 11216922 1 0 -jose_ortega_y_gasset%1:18:00:: 11217312 1 0 -josef_albers%1:18:00:: 10811352 1 0 -josef_hoffmann%1:18:00:: 11055154 1 0 -josef_michel_montgolfier%1:18:00:: 11187930 1 0 -josef_von_sternberg%1:18:00:: 11369251 1 0 -joseph%1:18:01:: 11091706 3 0 -joseph%1:18:02:: 11091863 2 0 -joseph%1:18:03:: 11092126 1 0 -joseph's_coat%1:20:01:: 12845413 1 0 -joseph_alois_schumpeter%1:18:00:: 11287570 1 0 -joseph_banks_rhine%1:18:00:: 11258924 1 0 -joseph_ben_matthias%1:18:00:: 11092292 1 0 -joseph_black%1:18:00:: 10852130 1 0 -joseph_campbell%1:18:00:: 10880981 1 0 -joseph_conrad%1:18:00:: 10907647 1 0 -joseph_deems_taylor%1:18:00:: 11333601 1 0 -joseph_eggleston_johnston%1:18:00:: 11088771 1 0 -joseph_emerson_worcester%1:18:00:: 11397488 1 0 -joseph_francis_keaton%1:18:00:: 11098380 1 0 -joseph_goebbels%1:18:00:: 11003724 1 0 -joseph_greenberg%1:18:00:: 11013574 1 0 -joseph_haydn%1:18:00:: 11035780 1 0 -joseph_heller%1:18:00:: 11038978 1 0 -joseph_henry%1:18:00:: 11040240 1 0 -joseph_hilaire_peter_belloc%1:18:00:: 10843035 1 0 -joseph_hooker%1:18:00:: 11058436 1 0 -joseph_jacques_cesaire_joffre%1:18:00:: 11085633 1 0 -joseph_joachim%1:18:00:: 11085267 1 0 -joseph_john_thomson%1:18:00:: 11340146 1 0 -joseph_lincoln_steffens%1:18:00:: 11314315 1 0 -joseph_lister%1:18:00:: 11134895 1 0 -joseph_louis_barrow%1:18:00:: 11141709 1 0 -joseph_louis_gay-lussac%1:18:00:: 10993098 1 0 -joseph_m._jacquard%1:18:00:: 11078203 1 0 -joseph_mallord_william_turner%1:18:00:: 11352883 1 0 -joseph_marie_jacquard%1:18:00:: 11078203 1 0 -joseph_mccarthy%1:18:00:: 11167595 1 0 -joseph_oliver%1:18:00:: 11214153 1 0 -joseph_paul_dimaggio%1:18:00:: 10935567 1 0 -joseph_paxton%1:18:00:: 11227499 1 0 -joseph_priestley%1:18:00:: 11246542 1 0 -joseph_pulitzer%1:18:00:: 11248426 1 0 -joseph_raymond_mccarthy%1:18:00:: 11167595 1 0 -joseph_rudyard_kipling%1:18:00:: 11105778 1 0 -joseph_schumpeter%1:18:00:: 11287570 1 0 -joseph_smith%1:18:00:: 11305611 1 0 -joseph_stalin%1:18:00:: 11312120 1 0 -joseph_warren_stilwell%1:18:00:: 11318462 1 0 -josephus%1:18:00:: 11092292 1 0 -josh%2:32:00:: 00855295 1 0 -josh_billings%1:18:00:: 11296279 1 0 -joshua%1:10:00:: 06433923 2 0 -joshua%1:18:00:: 11092541 1 0 -joshua_tree%1:20:00:: 12482893 1 0 -josiah_quincy%1:18:00:: 11250833 1 0 -josiah_spode%1:18:00:: 11311817 1 0 -josiah_wedgwood%1:18:00:: 11379436 1 0 -josiah_willard_gibbs%1:18:00:: 10997888 1 0 -josip_broz%1:18:00:: 11343625 1 0 -joss%1:06:00:: 03602267 1 1 -joss_house%1:06:00:: 03602365 1 0 -joss_stick%1:27:00:: 14925526 1 0 -jostle%1:04:00:: 00114095 1 0 -jostle%2:38:00:: 01871680 2 0 -jostle%2:38:02:: 01914453 1 1 -jostling%1:04:00:: 00114095 1 0 -josue%1:10:00:: 06433923 1 0 -jot%1:10:00:: 06505799 1 1 -jot%1:23:00:: 13774115 2 0 -jot%2:32:00:: 01006056 1 0 -jot_down%2:32:00:: 01006056 1 1 -jotter%1:10:00:: 06415688 1 0 -jotting%1:10:00:: 06505799 1 0 -jotun%1:18:00:: 09581526 1 0 -jotunn%1:18:00:: 09581526 1 0 -joule%1:18:00:: 11092740 2 0 -joule%1:23:00:: 13726074 1 0 -jounce%1:11:00:: 07339098 1 0 -jounce%2:38:00:: 01892608 1 0 -journal%1:06:00:: 03602465 5 0 -journal%1:06:01:: 03602562 4 0 -journal%1:10:00:: 06597466 2 1 -journal%1:10:01:: 06402031 1 2 -journal%1:21:00:: 13405166 3 0 -journal_bearing%1:06:00:: 03602686 1 0 -journal_box%1:06:00:: 03602790 1 0 -journalese%1:10:00:: 07071250 1 2 -journalism%1:04:00:: 00611674 2 0 -journalism%1:10:00:: 06266417 1 4 -journalist%1:18:00:: 10224578 1 4 -journalist%1:18:01:: 10011486 2 0 -journalist's_privilege%1:07:00:: 05180135 1 0 -journalistic%3:01:00:: 03077419 1 0 -journalistically%4:02:00:: 00384538 1 0 -journey%1:04:00:: 00306426 1 17 -journey%2:38:00:: 01845720 1 1 -journey%2:38:01:: 01846916 2 0 -journey_cake%1:13:00:: 07689003 1 0 -journeyer%1:18:00:: 10771392 1 0 -journeying%1:04:00:: 00306426 1 1 -journeyman%1:18:00:: 09974648 1 0 -joust%1:11:00:: 07472460 1 1 -joust%2:33:00:: 01122736 1 0 -jove%1:18:00:: 09573966 1 0 -jovial%5:00:00:joyous:00 01367651 1 2 -joviality%1:07:00:: 04653357 2 0 -joviality%1:12:00:: 07551890 1 0 -jovially%4:02:00:: 00384676 1 0 -jovian%3:01:01:: 03077599 2 0 -jovian%3:01:02:: 03077765 1 0 -jovian_planet%1:17:00:: 09322087 1 0 -jowett%1:18:00:: 11092938 1 0 -jowl%1:08:00:: 05275905 1 2 -jowl%1:08:01:: 05602982 2 0 -jowly%5:00:00:fat:01 00987349 1 0 -joy%1:09:00:: 05829782 2 5 -joy%1:12:00:: 07527352 1 19 -joy%2:37:00:: 01813884 1 0 -joy%2:37:01:: 01813499 2 0 -joyce%1:18:00:: 11093116 1 0 -joyce_carol_oates%1:18:00:: 11210963 1 0 -joyful%3:00:00:: 01363613 1 0 -joyful%5:00:00:joyous:00 01367211 2 0 -joyfully%4:02:00:: 00348247 1 0 -joyfulness%1:12:00:: 07527352 1 0 -joyless%3:00:00:: 01368192 1 0 -joylessly%4:02:00:: 00348450 1 0 -joylessness%1:12:00:: 07537376 1 0 -joyous%3:00:00:: 01366718 1 4 -joyously%4:02:00:: 00348247 1 0 -joyousness%1:12:00:: 07527352 1 0 -joyride%1:04:00:: 00309368 1 0 -joyride%2:38:00:: 01956708 1 0 -joystick%1:06:00:: 04317976 1 0 -joystick%1:06:01:: 03602883 2 0 -jr%1:18:00:: 10227490 1 0 -jr.%5:00:00:junior:00 02101382 1 0 -jra%1:14:00:: 08026904 1 0 -juan_carlos%1:18:00:: 11093325 1 0 -juan_carlos_victor_maria_de_borbon_y_borbon%1:18:00:: 11093325 1 0 -juan_domingo_peron%1:18:00:: 11230021 1 0 -juan_ponce_de_leon%1:18:00:: 11242077 1 0 -juan_ramon_jimenez%1:18:00:: 11084789 1 0 -juarez%1:15:00:: 08742743 1 0 -jubbulpore%1:15:00:: 08903487 1 0 -jubilance%1:12:00:: 07527817 1 0 -jubilancy%1:12:00:: 07527817 1 0 -jubilant%5:00:00:elated:00 00704898 1 2 -jubilant%5:00:00:joyous:00 01367211 2 0 -jubilantly%4:02:00:: 00050297 1 1 -jubilate%2:32:00:: 00857923 2 0 -jubilate%2:41:00:: 02491262 1 0 -jubilation%1:10:00:: 07129422 3 0 -jubilation%1:11:00:: 07450651 2 0 -jubilation%1:12:00:: 07527817 1 0 -jubilee%1:28:00:: 15250312 1 0 -juda%1:15:00:: 08799123 1 0 -judaea%1:15:00:: 08799271 1 0 -judah%1:15:00:: 08799123 2 0 -judah%1:18:00:: 11093469 1 0 -judaic%3:01:00:: 02922448 1 0 -judaic%3:01:01:: 02922263 2 0 -judaica%1:14:00:: 07977237 1 0 -judaical%3:01:00:: 02922448 1 0 -judaism%1:09:00:: 06232880 2 0 -judaism%1:14:00:: 08094013 1 2 -judas%1:06:00:: 03603119 4 0 -judas%1:18:00:: 11093674 2 0 -judas%1:18:01:: 10225118 3 0 -judas%1:18:02:: 11094055 1 0 -judas_iscariot%1:18:00:: 11093674 1 0 -judas_maccabaeus%1:18:00:: 11093848 1 0 -judas_tree%1:20:00:: 12513613 1 0 -judder%2:38:00:: 01891638 1 0 -jude%1:10:00:: 06447763 2 0 -jude%1:18:00:: 11094055 1 0 -judea%1:15:00:: 08799271 1 0 -judeo-christian%3:01:00:: 02952450 1 0 -judeo-spanish%1:10:00:: 06967282 1 0 -judge%1:18:00:: 10225219 1 6 -judge%1:18:01:: 10066732 2 3 -judge%2:31:00:: 00670261 2 8 -judge%2:31:01:: 00672433 3 6 -judge%2:31:02:: 00672277 1 11 -judge%2:32:00:: 00971650 4 1 -judge%2:41:09:: 02501278 5 0 -judge's_robe%1:06:00:: 02669723 1 0 -judge_advocate%1:18:00:: 10225787 2 0 -judge_advocate%1:18:01:: 10225931 1 0 -judge_advocate_general%1:18:00:: 10226060 1 0 -judgement%1:04:00:: 01187810 6 0 -judgement%1:04:02:: 00874067 7 0 -judgement%1:07:00:: 04892084 5 0 -judgement%1:09:00:: 05789432 3 0 -judgement%1:09:01:: 05614175 4 0 -judgement%1:09:04:: 05837957 2 0 -judgement%1:10:00:: 06551784 1 0 -judgement_by_default%1:04:00:: 01188537 1 0 -judgement_day%1:28:00:: 15171307 1 1 -judgement_in_personam%1:04:00:: 01189650 1 0 -judgement_in_rem%1:04:00:: 01189929 1 0 -judgement_of_dismissal%1:04:00:: 01190172 1 0 -judgement_on_the_merits%1:04:00:: 01190364 1 0 -judgement_on_the_pleadings%1:04:00:: 01190561 1 0 -judges%1:10:00:: 06434165 1 0 -judgeship%1:04:00:: 00593944 1 0 -judging%1:09:00:: 05789432 1 0 -judgment%1:04:00:: 01187810 3 4 -judgment%1:04:02:: 00874067 2 11 -judgment%1:07:00:: 04892084 6 1 -judgment%1:09:00:: 05789432 4 3 -judgment%1:09:01:: 05614175 7 0 -judgment%1:09:04:: 05837957 1 19 -judgment%1:10:00:: 06551784 5 1 -judgment_by_default%1:04:00:: 01188537 1 0 -judgment_day%1:28:00:: 15171307 1 0 -judgment_in_personam%1:04:00:: 01189650 1 0 -judgment_in_rem%1:04:00:: 01189929 1 0 -judgment_lien%1:21:00:: 13401746 1 0 -judgment_of_conviction%1:04:00:: 01189282 1 0 -judgment_of_dismissal%1:04:00:: 01190172 1 0 -judgment_on_the_merits%1:04:00:: 01190364 1 0 -judgment_on_the_pleadings%1:04:00:: 01190561 1 0 -judgmental%3:00:00:: 00648977 1 0 -judicable%5:00:00:determinable:00 00739163 1 0 -judicatory%1:14:00:: 08166318 1 0 -judicature%1:04:00:: 00694866 3 0 -judicature%1:04:01:: 00593944 4 0 -judicature%1:14:00:: 08166318 2 0 -judicature%1:14:01:: 08329453 1 0 -judicial%3:01:00:: 02752987 3 0 -judicial%3:01:02:: 02753205 2 0 -judicial%5:00:00:critical:02 00650135 4 0 -judicial%5:00:00:legal:00 01400961 1 1 -judicial_activism%1:09:00:: 05766698 1 0 -judicial_admission%1:10:00:: 07216761 1 0 -judicial_branch%1:14:00:: 08356903 1 0 -judicial_decision%1:04:00:: 01187810 1 0 -judicial_doctrine%1:09:00:: 05956651 1 0 -judicial_principle%1:09:00:: 05956651 1 0 -judicial_proceeding%1:04:00:: 01186810 1 0 -judicial_review%1:04:00:: 01197658 1 0 -judicial_sale%1:10:00:: 06528557 1 0 -judicial_separation%1:10:00:: 06541381 1 0 -judicial_system%1:14:00:: 08166318 1 0 -judicial_torture%1:04:00:: 00422834 1 0 -judicial_writ%1:10:00:: 06552984 1 0 -judicially%4:02:00:: 00143257 2 0 -judicially%4:02:01:: 00514272 1 0 -judiciary%1:14:00:: 08166187 1 1 -judiciary%1:14:01:: 08166318 2 0 -judicious%5:00:00:prudent:00 01898722 1 0 -judiciously%4:02:00:: 00384783 1 0 -judiciousness%1:07:00:: 04890361 2 0 -judiciousness%1:09:00:: 05615373 1 0 -judith%1:10:00:: 06459834 2 0 -judith%1:18:00:: 10226219 1 0 -judith_jamison%1:18:00:: 11080601 1 0 -judo%1:04:00:: 00825773 1 0 -judy_garland%1:18:00:: 10991165 1 0 -jug%1:06:00:: 03603722 1 1 -jug%1:23:00:: 13767956 2 0 -jug%2:30:00:: 00324071 2 0 -jug%2:41:00:: 02494356 1 0 -jug_band%1:14:00:: 08249608 1 0 -jug_wine%1:13:00:: 07896560 1 0 -jugal_bone%1:08:00:: 05273822 1 0 -jugal_point%1:08:00:: 05233420 1 0 -jugale%1:08:00:: 05233420 1 0 -jugful%1:23:00:: 13767956 1 0 -juggernaut%1:06:00:: 03603878 3 0 -juggernaut%1:18:00:: 09530515 2 0 -juggernaut%1:18:01:: 10226556 1 0 -juggle%1:04:00:: 00099799 2 0 -juggle%1:04:01:: 00338994 1 0 -juggle%2:35:00:: 01604814 4 0 -juggle%2:35:03:: 01602527 5 0 -juggle%2:41:00:: 02438383 3 0 -juggle%2:41:01:: 02577391 2 0 -juggle%2:41:02:: 02578235 1 0 -juggler%1:18:00:: 10226413 1 0 -jugglery%1:04:00:: 00562179 2 0 -jugglery%1:04:01:: 00754118 1 0 -juggling%1:04:00:: 00099799 2 0 -juggling%1:04:01:: 00338994 1 0 -juglandaceae%1:20:00:: 12317919 1 0 -juglandales%1:20:00:: 12317763 1 0 -juglans%1:20:00:: 12318164 1 0 -juglans_californica%1:20:00:: 12318782 1 0 -juglans_cinerea%1:20:00:: 12318965 1 0 -juglans_nigra%1:20:00:: 12319204 1 0 -juglans_regia%1:20:00:: 12319414 1 0 -jugoslav%1:18:00:: 09750891 1 0 -jugoslavian%1:18:00:: 09750891 1 0 -jugoslavija%1:15:00:: 08816236 1 0 -jugular%1:07:00:: 05042573 2 0 -jugular%1:08:00:: 05370918 1 0 -jugular%3:01:00:: 02852756 1 0 -jugular_vein%1:08:00:: 05370918 1 0 -juice%1:08:00:: 05398609 4 0 -juice%1:13:00:: 07923748 1 2 -juice%1:19:00:: 11470348 3 0 -juice%1:26:00:: 14050434 2 0 -juice_reamer%1:06:00:: 04059516 1 0 -juice_up%2:30:00:: 00192659 1 0 -juiceless%3:00:00:: 01369404 1 0 -juiceless%5:00:00:unstimulating:00 02307729 2 0 -juicer%1:06:00:: 04059516 2 0 -juicer%1:18:00:: 10034201 1 0 -juiciness%1:07:00:: 04996215 1 0 -juicy%3:00:00:: 01368793 1 1 -juicy%5:00:00:profitable:00 01871349 3 1 -juicy%5:00:00:sexy:00 02132967 2 1 -juicy%5:00:01:sexy:00 02132224 4 0 -jujitsu%1:04:00:: 00825951 1 0 -juju%1:06:00:: 03603958 2 0 -juju%1:09:00:: 05967894 1 1 -jujube%1:13:01:: 07606058 3 0 -jujube%1:13:02:: 07765999 2 0 -jujube%1:20:00:: 13143285 1 0 -jujube_bush%1:20:00:: 13143285 1 0 -jujutsu%1:04:00:: 00825951 1 0 -juke%1:04:00:: 00172217 2 0 -juke%1:06:00:: 03603199 1 0 -juke_house%1:06:00:: 03603199 1 0 -juke_joint%1:06:00:: 03603199 1 0 -jukebox%1:06:00:: 03604156 1 1 -julep%1:13:00:: 07915491 1 0 -jules_alfred_huot_de_goncourt%1:18:00:: 11006689 1 0 -jules_de_goncourt%1:18:00:: 11006689 1 0 -jules_emile_frederic_massenet%1:18:00:: 11163709 1 0 -jules_feifer%1:18:00:: 10968257 1 0 -jules_verne%1:18:00:: 11363412 1 0 -julia_evelina_smith%1:18:00:: 11305851 1 0 -julia_ward_howe%1:18:00:: 11062649 1 0 -julian%1:18:00:: 11094312 1 0 -julian%3:01:00:: 03077930 1 0 -julian_bond%1:18:00:: 10855987 1 0 -julian_calendar%1:28:00:: 15174885 1 0 -julian_the_apostate%1:18:00:: 11094312 1 0 -julienne%1:13:00:: 07708124 1 0 -julienne%1:13:01:: 07585997 2 0 -julienne%2:35:00:: 01257049 1 0 -julienne_vegetable%1:13:00:: 07708124 1 0 -julio_iglesias%1:18:00:: 11070855 1 0 -julius_caesar%1:18:00:: 10878161 1 1 -julius_erving%1:18:00:: 10960772 1 0 -julius_marx%1:18:00:: 11160676 1 0 -julius_ullman%1:18:00:: 10965361 1 0 -julius_winfield_erving%1:18:00:: 10960772 1 0 -july%1:28:00:: 15212167 1 13 -july_1%1:28:00:: 15200314 1 0 -july_4%1:28:00:: 15190084 1 0 -jumada_i%1:28:00:: 15217787 1 0 -jumada_ii%1:28:00:: 15217911 1 0 -jumbal%1:13:00:: 07633861 1 0 -jumbie_bead%1:20:00:: 12554029 1 0 -jumble%1:09:00:: 05953416 3 0 -jumble%1:13:00:: 07633861 2 0 -jumble%1:26:00:: 14500567 1 3 -jumble%2:35:00:: 01472807 3 0 -jumble%2:36:00:: 01657254 2 0 -jumble%2:42:00:: 02739861 1 1 -jumble_sale%1:04:00:: 01119850 1 0 -jumbled%5:00:00:untidy:00 02425529 1 2 -jumbo%5:00:00:large:00 01385773 1 0 -jumbo_jet%1:06:00:: 03604311 1 0 -jumbojet%1:06:00:: 03604311 1 0 -jumby_bead%1:20:00:: 12554029 1 0 -jumby_bean%1:20:00:: 12553742 1 0 -jumby_tree%1:20:00:: 12553742 1 0 -jument%1:05:00:: 01317089 1 0 -jumentous%3:01:00:: 02753345 1 0 -jump%1:04:00:: 00119568 6 0 -jump%1:04:01:: 00867357 4 0 -jump%1:04:02:: 00303849 5 0 -jump%1:10:00:: 06618427 3 0 -jump%1:11:00:: 07358985 2 0 -jump%1:11:01:: 07414222 1 0 -jump%2:30:00:: 00155727 4 2 -jump%2:30:01:: 00155547 7 1 -jump%2:30:03:: 00121506 15 0 -jump%2:30:05:: 00560391 14 0 -jump%2:31:00:: 00616498 13 0 -jump%2:33:00:: 01121178 3 4 -jump%2:33:03:: 01082937 6 1 -jump%2:38:00:: 01963942 1 19 -jump%2:38:01:: 01965156 11 0 -jump%2:38:04:: 01910373 2 6 -jump%2:38:05:: 02011865 9 0 -jump%2:38:07:: 01859050 12 0 -jump%2:38:11:: 02105082 8 0 -jump%2:38:12:: 01968275 10 0 -jump%2:42:00:: 02674564 5 1 -jump-start%1:04:00:: 01265921 1 0 -jump-start%2:30:00:: 00349223 2 0 -jump-start%2:38:00:: 01859050 1 0 -jump_ball%1:04:00:: 00241245 1 0 -jump_cut%1:10:00:: 06618549 1 0 -jump_for_joy%2:37:00:: 01813668 1 0 -jump_off%2:30:00:: 00347104 1 1 -jump_off%2:38:02:: 02105082 2 0 -jump_on%2:38:00:: 01923414 1 1 -jump_out%2:42:00:: 02674564 1 1 -jump_rope%1:04:00:: 00485632 2 0 -jump_rope%1:06:00:: 03605233 1 0 -jump_seat%1:06:00:: 03605417 1 1 -jump_shot%1:04:00:: 00111503 1 0 -jump_suit%1:06:00:: 03605504 2 0 -jump_suit%1:06:01:: 03605598 1 0 -jumped-up%5:00:00:pretentious:00 01850742 1 0 -jumper%1:04:00:: 00111503 8 0 -jumper%1:06:00:: 03604400 7 0 -jumper%1:06:01:: 03604536 6 0 -jumper%1:06:02:: 03604629 5 0 -jumper%1:06:03:: 03604763 4 0 -jumper%1:06:04:: 04370048 3 0 -jumper%1:18:00:: 10226803 2 0 -jumper%1:18:02:: 10226993 1 0 -jumper_cable%1:06:00:: 03604843 1 0 -jumper_lead%1:06:00:: 03604843 1 0 -jumpiness%1:12:00:: 07525760 1 0 -jumping%1:04:00:: 00440218 1 0 -jumping%1:04:01:: 00119568 2 0 -jumping-off_place%1:15:00:: 08508834 1 0 -jumping-off_point%1:04:00:: 00236194 1 0 -jumping_bean%1:20:00:: 12928819 1 0 -jumping_bristletail%1:05:00:: 02271222 1 0 -jumping_gene%1:27:00:: 14831812 1 0 -jumping_jack%1:06:00:: 03605073 1 0 -jumping_mouse%1:05:00:: 02350989 1 0 -jumping_orchid%1:20:00:: 12050014 1 0 -jumping_plant_louse%1:05:00:: 02256172 1 0 -jumping_seed%1:20:00:: 12928819 1 0 -jumping_up_and_down%1:04:00:: 00120647 1 1 -jumpstart%1:04:00:: 01265921 1 0 -jumpstart%2:30:00:: 00349223 2 0 -jumpstart%2:38:00:: 01859050 1 0 -jumpsuit%1:06:00:: 03605598 1 0 -jumpy%3:00:00:: 02243567 2 0 -jumpy%5:00:00:tense:03 02406370 1 1 -juncaceae%1:20:00:: 11743109 1 0 -juncaginaceae%1:20:00:: 12617140 1 0 -junco%1:05:00:: 01534433 1 0 -junco_hyemalis%1:05:00:: 01534582 1 0 -junction%1:04:00:: 00147454 5 0 -junction%1:06:00:: 03605722 1 1 -junction%1:06:01:: 03605915 4 0 -junction%1:25:00:: 13911151 3 0 -junction%1:26:00:: 14420954 2 0 -junction_barrier%1:06:00:: 03606106 1 0 -junction_rectifier%1:06:00:: 03202760 1 0 -junction_transistor%1:06:00:: 04471632 1 0 -juncture%1:11:00:: 07416714 1 1 -juncture%1:25:00:: 13911151 3 0 -juncture%1:26:00:: 14033185 2 0 -juncus%1:20:00:: 11743570 1 0 -juncus_articulatus%1:20:00:: 11744011 1 0 -juncus_bufonius%1:20:00:: 11744108 1 0 -juncus_effusus%1:20:00:: 11743772 1 0 -juncus_inflexus%1:20:00:: 11744251 1 0 -juncus_leseurii%1:20:00:: 11744355 1 0 -juncus_tenuis%1:20:00:: 11744471 1 0 -jund-ul-islam%1:14:00:: 08028148 1 0 -june%1:28:00:: 15211806 1 26 -june_14%1:28:00:: 15189838 1 1 -june_21%1:28:00:: 15222012 1 1 -june_23%1:28:00:: 15222369 1 0 -june_24%1:28:00:: 15222202 1 0 -june_29%1:28:00:: 15193776 1 0 -june_3%1:28:00:: 15189684 1 0 -june_beetle%1:05:00:: 02172870 1 0 -june_bug%1:05:00:: 02172870 1 0 -june_grass%1:20:00:: 12131767 1 0 -juneau%1:15:00:: 09055786 1 0 -juneberry%1:13:00:: 07745661 2 0 -juneberry%1:20:00:: 12623524 1 0 -juneberry_holly%1:20:00:: 12758250 1 0 -jung%1:18:00:: 11094611 1 0 -jungermanniaceae%1:20:00:: 11543264 1 0 -jungermanniales%1:20:00:: 11542920 1 0 -jungian%1:18:00:: 10227166 1 0 -jungian%3:01:00:: 03033785 1 1 -jungian_psychology%1:09:00:: 06057435 1 0 -jungle%1:14:00:: 08478171 2 0 -jungle%1:14:01:: 08439022 3 0 -jungle%1:15:00:: 08509111 1 0 -jungle_cat%1:05:00:: 02126028 1 0 -jungle_cock%1:05:00:: 01791314 1 0 -jungle_fever%1:26:00:: 14073795 1 0 -jungle_fowl%1:05:00:: 01791107 1 0 -jungle_gym%1:06:00:: 03603442 1 0 -jungle_hen%1:05:00:: 01791388 1 0 -jungle_rot%1:26:00:: 14227806 1 0 -jungly%5:00:00:wooded:00 02573987 1 0 -junin_virus%1:05:00:: 01330696 1 0 -junior%1:18:00:: 10227266 3 1 -junior%1:18:01:: 10227393 2 2 -junior%1:18:02:: 10784281 1 3 -junior%1:18:03:: 10227490 4 0 -junior%3:00:00:: 02100709 1 3 -junior%5:00:00:intermediate:00 01015185 2 2 -junior%5:00:00:young:00 01648891 3 0 -junior-grade%5:00:00:junior:00 02100968 1 1 -junior_class%1:14:00:: 08239488 1 0 -junior_college%1:14:00:: 08282364 1 0 -junior_featherweight%1:18:00:: 10227601 1 0 -junior_high%1:14:00:: 08409835 1 2 -junior_high_school%1:14:00:: 08409835 1 1 -junior_lightweight%1:18:00:: 10227698 1 0 -junior_middleweight%1:18:00:: 10227793 1 0 -junior_school%1:14:00:: 08277612 1 0 -junior_status%1:26:00:: 13952386 1 0 -junior_varsity%1:14:00:: 08080510 1 0 -junior_welterweight%1:18:00:: 10227889 1 0 -juniper%1:20:00:: 11636566 2 0 -juniper%1:20:02:: 12567490 1 0 -juniper_berries%1:13:00:: 07827130 1 0 -juniper_berry%1:20:00:: 11636835 1 0 -juniper_bush%1:20:00:: 12567490 1 0 -juniperic_acid%1:27:00:: 14614744 1 0 -junipero_serra%1:18:00:: 11293470 1 0 -juniperus%1:20:00:: 11636389 1 0 -juniperus_bermudiana%1:20:00:: 11637482 1 0 -juniperus_communis%1:20:00:: 11638109 1 0 -juniperus_communis_depressa%1:20:00:: 11638378 1 0 -juniperus_flaccida%1:20:00:: 11638698 1 0 -juniperus_horizontalis%1:20:00:: 11638525 1 0 -juniperus_procera%1:20:00:: 11637659 1 0 -juniperus_sabina%1:20:00:: 11637991 1 0 -juniperus_silicicola%1:20:00:: 11637810 1 0 -juniperus_virginiana%1:20:00:: 11637247 1 0 -junk%1:06:01:: 03603594 2 0 -junk%1:27:00:: 14857897 1 1 -junk%2:40:00:: 02223238 1 1 -junk_bond%1:21:00:: 13338439 1 0 -junk_dna%1:27:00:: 14831338 1 0 -junk_e-mail%1:10:00:: 06280347 1 0 -junk_food%1:13:00:: 07702509 1 0 -junk_heap%1:15:00:: 08573842 1 0 -junk_mail%1:10:00:: 06276141 1 0 -junk_pile%1:15:00:: 08573842 1 0 -junk_shop%1:06:00:: 03606251 1 0 -junker%1:18:00:: 09748770 1 0 -junkers%1:18:00:: 11094780 1 0 -junket%1:04:00:: 00311809 2 0 -junket%1:04:01:: 00308681 3 0 -junket%1:13:00:: 07611733 1 0 -junket%2:34:00:: 01185981 3 0 -junket%2:34:01:: 01186208 2 0 -junket%2:38:00:: 01843364 1 0 -junketeer%2:38:00:: 01843364 1 0 -junketing%1:04:00:: 00312160 1 0 -junkie%1:18:00:: 10035952 1 0 -junkie%1:18:01:: 09769076 2 0 -junky%1:18:00:: 10035952 1 0 -junky%1:18:01:: 09769076 2 0 -junkyard%1:15:00:: 08586978 1 1 -juno%1:18:00:: 09563805 1 0 -junoesque%5:00:00:shapely:00 02139793 1 0 -junta%1:14:00:: 08241964 1 0 -junto%1:14:00:: 08241798 1 0 -jupati%1:20:00:: 12595452 1 0 -jupati_palm%1:20:00:: 12595452 1 0 -jupaty%1:20:00:: 12595452 1 0 -jupiter%1:17:00:: 09322454 1 7 -jupiter%1:18:00:: 09573966 2 0 -jupiter's_beard%1:20:00:: 12506784 1 0 -jupiter_fidius%1:18:00:: 09574657 1 0 -jupiter_fulgur%1:18:00:: 09574226 1 0 -jupiter_fulminator%1:18:00:: 09574226 1 0 -jupiter_optimus_maximus%1:18:00:: 09574544 1 0 -jupiter_pluvius%1:18:00:: 09574446 1 0 -jupiter_tonans%1:18:00:: 09574350 1 0 -jural%5:00:00:legal:00 01401105 1 0 -jurassic%1:28:00:: 15126595 1 0 -jurassic%3:01:00:: 02753478 1 0 -jurassic_period%1:28:00:: 15126595 1 0 -juridic%3:01:00:: 02752987 2 0 -juridic%3:01:02:: 02753724 1 0 -juridical%3:01:00:: 02752987 2 0 -juridical%3:01:02:: 02753724 1 0 -jurisdiction%1:07:02:: 05198427 1 4 -jurisdiction%1:15:00:: 08590369 2 1 -jurisdictional%5:00:00:territorial:00 02408793 1 0 -jurisprudence%1:09:00:: 06161718 1 2 -jurisprudence%1:14:00:: 08441203 2 0 -jurisprudential%3:01:00:: 02753868 1 0 -jurisprudentially%4:02:00:: 00252122 1 1 -jurist%1:18:00:: 10227985 1 1 -jurist%1:18:01:: 10225219 2 0 -juristic%5:00:00:legal:00 01401105 1 0 -juror%1:18:00:: 10228278 1 2 -jury%1:14:00:: 08414119 1 21 -jury%1:14:01:: 08414807 2 2 -jury-rigged%5:00:00:impermanent:00 01757211 1 0 -jury_box%1:06:00:: 03606347 1 0 -jury_duty%1:04:00:: 01131135 1 0 -jury_mast%1:06:00:: 03606465 1 0 -jury_system%1:09:00:: 05903738 1 0 -juryman%1:18:00:: 10228278 1 0 -jurywoman%1:18:00:: 10228278 1 0 -jus_civile%1:10:00:: 06534659 1 0 -jus_sanguinis%1:09:00:: 05956906 1 0 -jus_soli%1:09:00:: 05957078 1 0 -jussieu%1:18:00:: 11094928 1 0 -jussive_mood%1:24:00:: 13802306 1 0 -just%3:00:00:: 01369663 1 4 -just%3:00:02:: 00958151 2 0 -just%3:00:04:: 00956131 3 0 -just%4:02:00:: 00004722 1 162 -just%4:02:01:: 00033308 3 52 -just%4:02:03:: 00246296 4 33 -just%4:02:04:: 00002621 5 13 -just%4:02:05:: 00158309 2 95 -just%4:02:06:: 00002950 6 0 -just%5:00:00:righteous:00 02036934 4 0 -just-noticeable_difference%1:09:00:: 05713101 1 0 -just_about%4:02:00:: 00007015 1 2 -just_as%4:02:02:: 00017881 1 1 -just_deserts%1:11:00:: 07294907 1 0 -just_in_case%4:02:00:: 00164751 1 0 -just_in_time%4:02:00:: 00167575 1 1 -just_now%4:02:00:: 00033308 1 1 -just_right%4:02:00:: 00172020 1 2 -just_so%4:02:00:: 00168230 1 0 -just_the_ticket%1:07:00:: 04716703 1 0 -just_then%4:02:00:: 00105240 1 0 -justice%1:04:00:: 00694681 2 6 -justice%1:07:00:: 04850117 1 16 -justice%1:14:00:: 08135342 4 0 -justice%1:18:00:: 10225219 3 1 -justice_department%1:14:00:: 08135342 1 0 -justice_of_the_peace%1:18:00:: 10228468 1 1 -justiciar%1:18:00:: 10228592 1 0 -justiciary%1:15:00:: 08587086 2 0 -justiciary%1:18:00:: 10228592 1 0 -justifiable%5:00:00:excusable:00 01722140 1 0 -justifiably%4:02:00:: 00238674 1 2 -justification%1:04:00:: 01241767 3 0 -justification%1:09:00:: 05823054 1 3 -justification%1:10:00:: 06740183 2 2 -justificative%5:00:00:apologetic:00 01632066 1 0 -justificative%5:00:00:exculpatory:00 00923790 2 0 -justificatory%5:00:00:apologetic:00 01632066 1 0 -justificatory%5:00:00:exculpatory:00 00923790 2 0 -justified%5:00:00:even:01 00910750 1 0 -justifiedly%4:02:00:: 00205375 1 0 -justifier%1:18:00:: 09798534 1 0 -justify%2:30:00:: 00489699 5 0 -justify%2:32:00:: 00896141 2 9 -justify%2:32:01:: 00896803 1 17 -justify%2:32:02:: 00894738 3 2 -justify%2:32:03:: 00902424 4 0 -justinian%1:18:00:: 11095123 1 0 -justinian_code%1:10:00:: 06534659 1 0 -justinian_i%1:18:00:: 11095123 1 0 -justinian_the_great%1:18:00:: 11095123 1 0 -justly%4:02:00:: 00205226 2 1 -justly%4:02:01:: 00205375 1 1 -justness%1:07:00:: 04850117 2 0 -justness%1:07:01:: 04713853 1 1 -jut%1:04:00:: 00407090 2 0 -jut%1:25:00:: 13894434 1 0 -jut%2:42:00:: 02713372 1 0 -jut_out%2:42:00:: 02713372 1 1 -jute%1:18:00:: 09703181 2 0 -jute%1:27:00:: 14925645 1 0 -jutish%1:10:00:: 06949946 1 0 -jutland%1:04:00:: 01282466 2 0 -jutland%1:15:00:: 08761039 1 0 -jutting%1:04:00:: 00407090 1 0 -jutting%5:00:02:protrusive:00 01353982 1 2 -juvenal%1:18:00:: 11095391 1 0 -juvenescence%1:22:00:: 13504403 1 0 -juvenile%1:18:00:: 09622049 1 0 -juvenile%3:01:00:: 02892980 1 1 -juvenile%5:00:00:immature:02 01492596 2 0 -juvenile-onset_diabetes%1:26:00:: 14118423 1 0 -juvenile_amaurotic_idiocy%1:26:00:: 14169128 1 0 -juvenile_body%1:08:00:: 05219297 1 0 -juvenile_court%1:14:00:: 08333868 1 0 -juvenile_delinquency%1:04:00:: 00736219 1 0 -juvenile_delinquent%1:18:00:: 10000945 1 0 -juvenile_diabetes%1:26:00:: 14118423 1 0 -juvenile_person%1:18:00:: 09622049 1 0 -juvenile_rheumatoid_arthritis%1:26:00:: 14188030 1 0 -juvenile_wart%1:07:00:: 04696969 1 0 -juvenility%1:07:00:: 04928585 2 0 -juvenility%1:26:00:: 14426568 1 0 -juxtapose%2:35:00:: 01501960 1 2 -juxtaposed%5:00:00:close:01 00449769 1 0 -juxtaposition%1:04:00:: 01051801 1 1 -juxtaposition%1:15:00:: 08624095 2 0 -jv%1:14:00:: 08080510 1 0 -jyaistha%1:28:00:: 15220149 1 0 -jylland%1:15:00:: 08761039 1 0 -jynx%1:05:00:: 01841569 1 0 -k%1:06:00:: 03606572 7 0 -k%1:10:00:: 06832248 6 0 -k%1:23:00:: 13627516 5 0 -k%1:23:01:: 13627681 4 0 -k%1:23:05:: 13714756 1 5 -k%1:23:06:: 13750844 3 0 -k%1:27:00:: 14650807 2 0 -k%5:00:00:cardinal:00 02198752 1 0 -k'ung_futzu%1:18:00:: 10906822 1 0 -k-dur_20%1:27:00:: 14861042 1 0 -k-lor%1:27:00:: 14861042 1 0 -k-lyte%1:27:00:: 14861042 1 0 -k-meson%1:17:00:: 09323660 1 0 -k.e.%1:19:00:: 11470492 1 0 -k2%1:17:00:: 09322701 1 0 -k_particle%1:17:00:: 09323660 1 0 -k_ration%1:13:00:: 07566092 1 0 -ka%1:18:00:: 09526606 1 0 -kaaba%1:06:00:: 03606719 1 0 -kabala%1:09:00:: 05954100 2 0 -kabala%1:10:00:: 06673770 1 0 -kabbala%1:09:00:: 05954100 2 0 -kabbala%1:10:00:: 06673770 1 0 -kabbalah%1:09:00:: 05954100 2 0 -kabbalah%1:10:00:: 06673770 1 0 -kabbalism%1:04:00:: 01213406 2 0 -kabbalism%1:09:00:: 05954366 1 0 -kabbalist%1:18:00:: 09885416 2 0 -kabbalist%1:18:01:: 09885534 1 0 -kabbalistic%5:00:00:esoteric:00 00899738 1 0 -kabob%1:13:00:: 07869775 1 0 -kabolin%1:27:00:: 14748335 1 0 -kabul%1:15:00:: 08704237 1 0 -kach%1:14:00:: 08028397 1 0 -kachaturian%1:18:00:: 11095587 1 0 -kachin%1:10:00:: 06933022 1 0 -kachina%1:06:00:: 03607029 3 0 -kachina%1:18:00:: 09666883 2 0 -kachina%1:18:01:: 10228712 1 0 -kachinic%1:10:00:: 06933022 1 0 -kadai%1:10:00:: 06934132 1 0 -kadai_language%1:10:00:: 06934132 1 0 -kadikoy%1:15:00:: 09041199 1 0 -kaffir%1:18:00:: 10228864 2 0 -kaffir%1:20:00:: 12137337 1 0 -kaffir_boom%1:20:01:: 12528109 2 0 -kaffir_boom%1:20:02:: 12528768 1 0 -kaffir_bread%1:20:00:: 11603462 1 0 -kaffir_cat%1:05:00:: 02125872 1 0 -kaffir_corn%1:20:00:: 12137337 1 0 -kaffir_pox%1:26:00:: 14124688 1 0 -kaffiyeh%1:06:00:: 03607186 1 0 -kafir%1:18:00:: 10228864 1 0 -kafir%1:18:01:: 09689631 2 0 -kafir_corn%1:20:00:: 12137337 1 0 -kafiri%1:10:00:: 06972756 1 0 -kafka%1:18:00:: 11095731 1 0 -kafkaesque%3:01:00:: 03134166 1 0 -kafkaesque%5:00:00:unrealistic:00 01942888 2 0 -kafocin%1:06:00:: 02996570 1 0 -kaftan%1:06:00:: 02936402 2 0 -kaftan%1:06:01:: 02936570 1 0 -kahane_chai%1:14:00:: 08028397 1 0 -kahikatea%1:20:00:: 11653904 1 0 -kahlil_gibran%1:18:00:: 10997997 1 0 -kahlua%1:13:00:: 07910970 1 0 -kahn%1:18:00:: 11095907 1 0 -kahoolawe%1:15:00:: 09079747 1 0 -kahoolawe_island%1:15:00:: 09079747 1 0 -kai_apple%1:13:00:: 07762373 1 0 -kail%1:13:00:: 07714078 2 0 -kail%1:20:00:: 11876976 1 0 -kainite%1:27:00:: 14678952 1 0 -kainogenesis%1:22:00:: 13444940 1 0 -kaiser%1:18:00:: 10229338 1 0 -kaiser_bill%1:18:00:: 11386853 1 0 -kaiser_roll%1:13:00:: 07691954 1 0 -kaiser_wilhelm%1:18:00:: 11386853 1 0 -kakatoe%1:05:00:: 01818959 1 0 -kakatoe_galerita%1:05:00:: 01819313 1 0 -kakatoe_leadbeateri%1:05:00:: 01819465 1 0 -kakemono%1:06:00:: 03607358 1 0 -kaki%1:05:00:: 02035656 2 0 -kaki%1:20:00:: 12771390 1 0 -kakke_disease%1:26:00:: 14199389 1 0 -kala-azar%1:26:00:: 14181049 1 0 -kala_azar%1:26:00:: 14178077 1 0 -kalaallit_nunaat%1:15:00:: 08819397 1 0 -kalahari%1:15:00:: 09170294 1 0 -kalahari_desert%1:15:00:: 09170294 1 0 -kalamazoo%1:15:00:: 09101233 1 0 -kalansuwa%1:06:00:: 03607527 1 0 -kalantas%1:20:00:: 12700357 1 0 -kalapooia%1:18:00:: 09658254 1 0 -kalapooian%1:10:00:: 06925103 1 0 -kalapuya%1:18:00:: 09658254 1 0 -kalapuyan%1:10:00:: 06925103 1 0 -kalashnikov%1:06:00:: 03607659 1 0 -kalashnikov_culture%1:09:00:: 06194894 1 0 -kale%1:13:00:: 07714078 3 0 -kale%1:20:00:: 11876976 2 0 -kale%1:21:00:: 13385216 1 1 -kaleidoscope%1:06:00:: 03607756 2 0 -kaleidoscope%1:09:00:: 05931827 1 0 -kaleidoscopic%5:00:00:changeable:00 00345949 1 0 -kaleidoscopical%5:00:00:changeable:00 00345949 1 0 -kalemia%1:26:00:: 14270016 1 0 -kali%1:18:00:: 09526703 2 0 -kali%1:20:00:: 11834654 1 0 -kalian%1:06:00:: 03533014 1 0 -kalif%1:18:00:: 09887496 1 0 -kalimantan%1:15:00:: 08843215 2 0 -kalimantan%1:15:01:: 08909537 1 0 -kalinin%1:18:00:: 11096033 1 0 -kaliph%1:18:00:: 09887496 1 0 -kaliuresis%1:26:00:: 14270127 1 0 -kalka%1:10:00:: 06929008 2 0 -kalka%1:18:00:: 09737835 1 0 -kalki%1:18:00:: 09530629 1 0 -kallman's_syndrome%1:26:00:: 14075838 1 0 -kalmia%1:20:00:: 12237486 1 0 -kalmia_angustifolia%1:20:00:: 12238073 1 0 -kalmia_latifolia%1:20:00:: 12237641 1 0 -kalmia_polifolia%1:20:00:: 12237855 1 0 -kalon_tripa%1:18:00:: 10229034 1 0 -kalotermes%1:05:00:: 02225407 1 0 -kalotermitidae%1:05:00:: 02225231 1 0 -kalpac%1:06:00:: 02941228 1 0 -kaluga%1:15:00:: 09005153 1 0 -kalumpang%1:20:00:: 12195734 1 0 -kaluresis%1:26:00:: 14270127 1 0 -kam-sui%1:10:00:: 06934309 1 0 -kam-tai%1:10:00:: 06934132 1 0 -kam_muang%1:10:00:: 06935417 1 0 -kama%1:18:00:: 09526808 1 0 -kamarupan%1:10:00:: 06931891 1 0 -kamasutra%1:10:00:: 06623788 1 0 -kamba%1:10:00:: 06993348 1 0 -kamchatka_peninsula%1:15:00:: 09021958 1 1 -kamchatkan_sea_eagle%1:05:00:: 01615303 1 0 -kameez%1:06:00:: 03607923 1 0 -kamehameha_i%1:18:00:: 11096192 1 0 -kamehameha_the_great%1:18:00:: 11096192 1 0 -kamet%1:17:00:: 09322930 1 0 -kami%1:18:00:: 09535255 1 0 -kamia%1:10:00:: 06922875 2 0 -kamia%1:18:00:: 09658398 1 0 -kamikaze%1:06:00:: 03608074 1 1 -kamikaze%1:18:00:: 10229193 2 0 -kammon_strait_bridge%1:06:00:: 03608224 1 0 -kampala%1:15:00:: 09043926 1 0 -kampong%1:15:00:: 08673039 1 0 -kampuchea%1:15:00:: 08716738 1 0 -kampuchean%1:18:00:: 09696280 1 0 -kampuchean%3:01:00:: 02968828 1 0 -kan_river%1:17:00:: 09286843 1 0 -kanaf%1:20:00:: 12178129 1 0 -kanamycin%1:06:00:: 03608356 1 0 -kananga%1:15:00:: 08735008 1 0 -kanara%1:15:00:: 08902753 1 0 -kanarese%1:10:00:: 06979957 2 0 -kanarese%1:18:00:: 09674631 1 0 -kanawha%1:17:00:: 09323085 1 0 -kanawha_river%1:17:00:: 09323085 1 0 -kanchanjanga%1:17:00:: 09323221 1 0 -kanchenjunga%1:17:00:: 09323221 1 0 -kanchil%1:05:00:: 02436224 1 0 -kandahar%1:15:00:: 08704409 1 0 -kandinski%1:18:00:: 11096338 1 0 -kandinsky%1:18:00:: 11096338 1 0 -kandy%1:15:00:: 08719705 1 0 -kangaroo%1:05:00:: 01877134 1 0 -kangaroo's-foot%1:20:00:: 12312728 1 0 -kangaroo's_paw%1:20:00:: 12312728 1 0 -kangaroo-foot_plant%1:20:00:: 12312728 1 0 -kangaroo_apple%1:20:00:: 12893794 1 0 -kangaroo_bear%1:05:00:: 01882714 1 0 -kangaroo_court%1:14:00:: 08333995 1 0 -kangaroo_hare%1:05:00:: 01878335 1 0 -kangaroo_jerboa%1:05:00:: 01880813 1 0 -kangaroo_mouse%1:05:00:: 02350670 1 0 -kangaroo_mouse%1:05:01:: 02334728 2 0 -kangaroo_paw%1:20:00:: 12312728 1 0 -kangaroo_rat%1:05:01:: 02350105 1 0 -kangaroo_rat%1:05:02:: 01880152 2 0 -kannada%1:10:00:: 06979957 1 0 -kannada-speaking%5:00:00:communicative:00 00498724 1 0 -kansa%1:10:00:: 06910323 2 0 -kansa%1:18:00:: 09658543 1 0 -kansan%1:18:00:: 09743192 1 0 -kansas%1:10:00:: 06910323 4 0 -kansas%1:15:00:: 09087599 1 1 -kansas%1:17:00:: 09323470 3 0 -kansas%1:18:00:: 09658543 2 0 -kansas_city%1:15:00:: 09107098 1 11 -kansas_city%1:15:01:: 09088396 2 0 -kansas_river%1:17:00:: 09323470 1 0 -kansu%1:15:00:: 08725692 1 0 -kant%1:18:00:: 11096508 1 0 -kantian%3:01:00:: 03033914 1 0 -kantrex%1:06:00:: 03608356 1 0 -kanzu%1:06:00:: 03608504 1 0 -kaochlor%1:27:00:: 14861042 1 0 -kaoliang%1:20:00:: 12138248 1 0 -kaolin%1:27:00:: 14670639 1 0 -kaoline%1:27:00:: 14670639 1 0 -kaolinite%1:27:00:: 14679147 1 0 -kaon%1:17:00:: 09323660 1 0 -kaopectate%1:06:00:: 03608661 1 0 -kapeika%1:23:00:: 13700142 1 0 -kaph%1:10:00:: 06837787 1 0 -kaplan_group%1:14:00:: 08028623 1 0 -kapok%1:20:00:: 12190410 2 0 -kapok%1:27:00:: 14925776 1 0 -kaposi's_sarcoma%1:26:00:: 14240775 1 0 -kaposi's_varicelliform_eruption%1:26:00:: 14225632 1 0 -kappa%1:10:00:: 06835098 1 0 -kappa-meson%1:17:00:: 09323660 1 0 -kapsiki%1:10:00:: 06983997 1 0 -kapuka%1:20:00:: 12949361 1 0 -kaput%5:00:00:destroyed:00 00735882 1 0 -kara_kum%1:15:00:: 09170475 1 0 -kara_sea%1:17:00:: 09324118 1 0 -karabiner%1:06:00:: 02960690 1 0 -karachi%1:15:00:: 08977211 1 0 -karaites%1:14:00:: 08094386 1 0 -karakalpak%1:10:00:: 06927851 2 0 -karakalpak%1:18:00:: 09735913 1 0 -karakoram%1:17:00:: 09323824 1 0 -karakoram_range%1:17:00:: 09323824 1 0 -karakorum_range%1:17:00:: 09323824 1 0 -karakul%1:05:00:: 02414043 1 0 -karaoke%1:04:00:: 01255302 1 0 -karat%1:23:00:: 13585127 1 0 -karate%1:04:00:: 00826397 1 0 -karaya_gum%1:27:00:: 14901793 1 0 -karbala%1:15:00:: 08914573 1 0 -karel_capek%1:18:00:: 10881616 1 0 -karelia%1:15:00:: 08779830 1 0 -karelian%1:10:00:: 06958063 2 0 -karelian%1:18:00:: 09706746 1 0 -karelian_isthmus%1:17:00:: 09324322 1 0 -karen%1:10:00:: 06932130 1 0 -karen_blixen%1:18:00:: 10935745 1 0 -karen_danielsen_horney%1:18:00:: 11060805 1 0 -karen_horney%1:18:00:: 11060805 1 0 -karenic%1:10:00:: 06932130 1 0 -karl-marx-stadt%1:15:00:: 08770518 1 0 -karl_adolf_eichmann%1:18:00:: 10953797 1 0 -karl_adolph_verner%1:18:00:: 11363552 1 0 -karl_alex_muller%1:18:00:: 11195913 1 0 -karl_augustus_menninger%1:18:00:: 11174563 1 0 -karl_baedeker%1:18:00:: 10831003 1 0 -karl_barth%1:18:00:: 10836308 1 0 -karl_czerny%1:18:00:: 10920366 1 0 -karl_friedrich_gauss%1:18:00:: 10992675 1 0 -karl_friedrich_hieronymus_von_munchhausen%1:18:00:: 11196305 1 0 -karl_gauss%1:18:00:: 10992675 1 0 -karl_gjellerup%1:18:00:: 11001567 1 0 -karl_gunnar_myrdal%1:18:00:: 11198861 1 0 -karl_gustav_jacob_jacobi%1:18:00:: 11077649 1 0 -karl_jaspers%1:18:00:: 11080987 1 0 -karl_landsteiner%1:18:00:: 11116117 1 0 -karl_linne%1:18:00:: 11133551 1 0 -karl_marx%1:18:00:: 11160457 1 0 -karl_menninger%1:18:00:: 11174563 1 0 -karl_popper%1:18:00:: 11242849 1 0 -karl_rudolf_gerd_von_rundstedt%1:18:00:: 11273679 1 0 -karl_scheele%1:18:00:: 11283843 1 0 -karl_theodor_jaspers%1:18:00:: 11080987 1 0 -karl_von_clausewitz%1:18:00:: 10899747 1 0 -karl_von_frisch%1:18:00:: 10982870 1 0 -karl_waldemar_ziegler%1:18:00:: 11406906 1 0 -karl_wernicke%1:18:00:: 11381684 1 0 -karl_wilhelm_scheele%1:18:00:: 11283843 1 0 -karl_wilhelm_siemens%1:18:00:: 11299890 1 0 -karlfeldt%1:18:00:: 11096645 1 0 -karloff%1:18:00:: 11096801 1 0 -karma%1:11:00:: 07330362 1 0 -karnataka%1:15:00:: 08902196 1 0 -karok%1:10:00:: 06921506 2 0 -karok%1:18:00:: 09658670 1 0 -karol_wojtyla%1:18:00:: 11087767 1 0 -karpov%1:18:00:: 11096991 1 0 -karsavina%1:18:00:: 11097208 1 0 -kartik%1:28:00:: 15220743 1 0 -kartikeya%1:18:00:: 09527001 1 0 -karttika%1:28:00:: 15220743 1 0 -karttikeya%1:18:00:: 09527001 1 0 -karyokinesis%1:22:00:: 13504739 1 0 -karyokinetic%3:01:00:: 03078076 1 0 -karyolymph%1:08:00:: 05398871 1 0 -karyolysis%1:22:00:: 13504947 1 0 -karyon%1:08:00:: 05434927 1 0 -karyoplasm%1:08:00:: 05434784 1 0 -karyotype%1:08:00:: 05444876 1 0 -kasai%1:17:00:: 09324474 1 0 -kasai_river%1:17:00:: 09324474 1 0 -kasbah%1:15:00:: 08628141 1 0 -kasha%1:13:00:: 07704579 1 0 -kashag%1:14:00:: 08383185 1 0 -kashmir%1:15:00:: 08975617 1 0 -kashmir_goat%1:05:00:: 02417242 1 0 -kashmiri%1:10:00:: 06972874 2 0 -kashmiri%1:18:00:: 09676021 1 0 -kashmiri%3:01:00:: 03078234 1 0 -kaspar_friedrich_wolff%1:18:00:: 11394848 1 0 -kasparov%1:18:00:: 11097335 1 0 -kassite%1:10:00:: 06968601 2 0 -kassite%1:18:00:: 09640577 1 0 -kastler%1:18:00:: 11097525 1 0 -kat%1:06:00:: 03608870 1 0 -katabatic%3:00:00:: 00109782 1 0 -katabatic_wind%1:19:00:: 11443283 1 0 -katabolic%3:00:00:: 00107984 2 0 -katabolic%3:01:00:: 02682699 1 0 -katabolism%1:22:00:: 13443787 1 0 -katamorphism%1:22:00:: 13505069 1 0 -katar%1:15:00:: 08986905 1 0 -katar%1:15:01:: 08986691 2 0 -katar_peninsula%1:15:00:: 08986691 1 0 -katari%1:18:00:: 09728137 1 0 -katari%3:01:00:: 03107596 1 0 -kate_chopin%1:18:00:: 10896823 1 0 -kate_o'flaherty_chopin%1:18:00:: 10896823 1 0 -kate_smith%1:18:00:: 11306008 1 0 -katharevusa%1:10:00:: 06976959 1 0 -katharine_hepburn%1:18:00:: 11043980 1 0 -katharine_houghton_hepburn%1:18:00:: 11043980 1 0 -katharobe%1:20:00:: 13124529 1 0 -katharobic%3:01:00:: 03021051 1 0 -katharometer%1:06:00:: 03609147 1 0 -katharsis%1:04:00:: 00253395 2 0 -katharsis%1:04:01:: 00253577 1 0 -katherine_anne_porter%1:18:00:: 11243424 1 0 -katherine_cornell%1:18:00:: 10911534 1 0 -katherine_mansfield%1:18:00:: 11154489 1 0 -kathleen_mansfield_beauchamp%1:18:00:: 11154489 1 0 -kathmandu%1:15:00:: 08906809 1 0 -kathryn_elizabeth_smith%1:18:00:: 11306008 1 0 -katmai_national_park%1:15:00:: 08606370 1 0 -katmandu%1:15:00:: 08906809 1 0 -katowice%1:15:00:: 08984010 1 0 -katsina%1:15:00:: 08974468 1 0 -katsura_tree%1:20:00:: 11702713 1 0 -katsushika_hokusai%1:18:00:: 11055915 1 0 -katsuwonidae%1:05:00:: 02629048 1 0 -katsuwonus%1:05:00:: 02628856 1 0 -katsuwonus_pelamis%1:05:00:: 02629230 1 0 -kattegatt%1:17:00:: 09324859 1 0 -katydid%1:05:00:: 02228341 1 0 -katzenjammer%1:11:00:: 07385660 2 0 -katzenjammer%1:26:00:: 14447165 1 0 -kauai%1:15:00:: 09079875 1 0 -kauai_island%1:15:00:: 09079875 1 0 -kaufman%1:18:00:: 11097625 1 0 -kaunas%1:15:00:: 09014470 1 0 -kaunda%1:18:00:: 11097820 1 0 -kauri%1:20:00:: 11647703 2 0 -kauri%1:20:02:: 11647548 3 0 -kauri%1:27:02:: 14895599 1 0 -kauri_copal%1:27:00:: 14895599 1 0 -kauri_gum%1:27:00:: 14895599 1 0 -kauri_pine%1:20:00:: 11647306 1 0 -kauri_resin%1:27:00:: 14895599 1 0 -kaury%1:20:00:: 11647703 1 0 -kava%1:13:00:: 07886317 1 0 -kavakava%1:13:00:: 07886317 1 0 -kavir_desert%1:15:00:: 09169038 1 0 -kavrin%1:06:00:: 03886237 1 0 -kaw_river%1:17:00:: 09323470 1 0 -kawaka%1:20:00:: 11639306 1 0 -kawasaki_disease%1:26:00:: 14076270 1 0 -kay_boyle%1:18:00:: 10860347 1 0 -kayak%1:06:00:: 03609235 1 0 -kayak%2:38:00:: 01947735 1 0 -kayo%1:04:00:: 00134099 1 0 -kayo%2:35:00:: 01414088 1 0 -kayoed%5:00:00:unconscious:00 00572714 1 0 -kayser-fleischer_ring%1:26:00:: 14266677 1 0 -kazak%1:10:00:: 06927128 3 0 -kazak%1:15:00:: 09019726 2 0 -kazak%1:18:00:: 09736035 1 0 -kazakh%1:10:00:: 06927128 3 0 -kazakh%1:15:00:: 09019726 2 0 -kazakh%1:18:00:: 09736035 1 0 -kazakhstan%1:15:00:: 09019726 1 0 -kazakhstani%1:18:00:: 09736181 1 0 -kazakhstani%3:01:00:: 03078445 1 0 -kazakhstani_monetary_unit%1:23:00:: 13700870 1 0 -kazakstan%1:15:00:: 09019726 1 0 -kazan%1:15:00:: 09008333 2 0 -kazan%1:18:00:: 11098039 1 0 -kazimir_malevich%1:18:00:: 11151436 1 0 -kazimir_severinovich_malevich%1:18:00:: 11151436 1 0 -kazoo%1:06:00:: 03609397 1 0 -kb%1:23:00:: 13627516 3 0 -kb%1:23:02:: 13627681 2 0 -kb%1:23:04:: 13627810 1 0 -kbit%1:23:00:: 13627810 1 0 -kbo%1:17:00:: 09327705 1 0 -kc%1:28:00:: 15279596 1 1 -kea%1:05:00:: 01818832 1 0 -kean%1:18:00:: 11098223 1 0 -keaton%1:18:00:: 11098380 1 0 -keats%1:18:00:: 11098601 1 0 -keb%1:18:00:: 09512157 1 0 -kebab%1:13:00:: 07869775 1 0 -keble%1:18:00:: 11098707 1 0 -kechua%1:10:00:: 06917083 3 0 -kechua%1:14:00:: 08489121 2 0 -kechua%1:18:00:: 09726970 1 0 -kechuan%1:10:00:: 06917083 1 0 -kechuan%3:01:00:: 03108623 1 0 -kedgeree%1:13:00:: 07869937 1 0 -keel%1:06:00:: 03609542 3 0 -keel%1:08:00:: 05228374 2 0 -keel%1:25:00:: 13919919 1 0 -keel%2:38:00:: 01924882 1 0 -keel-shaped%5:00:00:formed:00 02148011 1 0 -keel_arch%1:06:00:: 03842754 1 0 -keel_over%2:38:00:: 01976702 1 1 -keelboat%1:06:00:: 03609786 1 0 -keeled%3:44:00:: 03153361 1 0 -keeled_garlic%1:20:00:: 12432707 1 0 -keelson%1:06:00:: 03609959 1 0 -keen%1:10:00:: 07042735 1 0 -keen%2:37:00:: 01802219 1 0 -keen%5:00:00:good:01 01123879 3 0 -keen%5:00:00:intense:00 01511387 2 0 -keen%5:00:00:perceptive:00 01744515 1 3 -keen%5:00:00:sharp:00 00802179 5 0 -keen%5:00:00:sharp:04 00803432 4 0 -keen-eyed%5:00:00:eyed:00 00954064 1 0 -keen-sighted%5:00:00:farsighted:00 02157594 2 0 -keen-sighted%5:00:00:sighted:00 02158438 1 0 -keenly%4:02:00:: 00385081 1 2 -keenness%1:07:00:: 04705324 3 0 -keenness%1:09:00:: 05620468 1 1 -keenness%1:12:00:: 07555184 2 0 -keep%1:06:00:: 03610098 2 0 -keep%1:06:01:: 03525252 3 0 -keep%1:21:00:: 13365286 1 0 -keep%2:30:10:: 00212414 22 0 -keep%2:31:00:: 00732552 6 9 -keep%2:32:00:: 01065877 8 4 -keep%2:34:00:: 01184625 11 3 -keep%2:35:10:: 01302019 21 0 -keep%2:40:00:: 02202384 3 32 -keep%2:40:01:: 02202928 7 8 -keep%2:40:09:: 02283716 17 0 -keep%2:40:10:: 02203168 20 0 -keep%2:40:12:: 02203844 19 0 -keep%2:40:13:: 02204094 18 0 -keep%2:41:00:: 02422663 14 2 -keep%2:41:01:: 02450505 4 22 -keep%2:41:02:: 02410175 10 3 -keep%2:41:03:: 02578872 5 10 -keep%2:41:05:: 02578510 13 2 -keep%2:42:00:: 02681795 1 206 -keep%2:42:01:: 02651853 9 3 -keep%2:42:02:: 02733122 15 1 -keep%2:42:03:: 02734800 12 2 -keep%2:42:07:: 02684924 2 39 -keep%2:42:12:: 02652016 16 0 -keep_abreast%2:30:02:: 00118764 1 1 -keep_an_eye_on%2:41:00:: 02455407 1 3 -keep_apart%2:30:00:: 00495808 1 0 -keep_away%2:41:00:: 02451113 1 2 -keep_back%2:40:00:: 02213690 3 0 -keep_back%2:40:01:: 02283324 2 0 -keep_back%2:41:00:: 02422663 1 0 -keep_company%2:42:00:: 02716767 1 3 -keep_down%2:29:00:: 00077369 3 0 -keep_down%2:30:00:: 00235918 1 1 -keep_down%2:41:00:: 02424128 2 0 -keep_going%2:32:00:: 00908621 3 0 -keep_going%2:42:00:: 02623346 2 0 -keep_going%2:42:02:: 02684254 1 0 -keep_guard%2:41:00:: 02455159 1 1 -keep_in%2:41:00:: 02496388 1 2 -keep_in_line%2:37:00:: 01803936 1 0 -keep_mum%2:32:00:: 01041061 1 0 -keep_note%2:31:00:: 00737193 1 1 -keep_off%2:32:00:: 00811720 2 0 -keep_off%2:34:00:: 01189823 1 0 -keep_on%2:41:00:: 02410175 1 0 -keep_one's_distance%2:42:00:: 02655698 1 0 -keep_one's_eyes_off%2:42:00:: 02655698 1 0 -keep_one's_eyes_open%2:39:00:: 02167210 1 0 -keep_one's_eyes_peeled%2:39:00:: 02167210 1 0 -keep_one's_eyes_skinned%2:39:00:: 02167210 1 0 -keep_one's_hands_off%2:42:00:: 02655698 1 0 -keep_one's_mouth_shut%2:32:00:: 00937619 1 0 -keep_one's_nose_to_the_grindstone%2:41:00:: 02415573 1 0 -keep_one's_shoulder_to_the_wheel%2:41:00:: 02415573 1 0 -keep_open%2:40:00:: 02283716 1 0 -keep_out%2:30:00:: 00118435 2 0 -keep_out%2:41:00:: 02449340 1 3 -keep_pace%2:33:00:: 01114143 1 0 -keep_quiet%2:32:00:: 00937619 1 0 -keep_step%2:33:00:: 01114143 1 0 -keep_tabs_on%2:41:00:: 02455861 1 0 -keep_to_oneself%2:40:00:: 02214042 2 0 -keep_to_oneself%2:41:00:: 02371352 1 1 -keep_track%2:31:00:: 00595134 1 0 -keep_up%2:29:00:: 00020449 5 0 -keep_up%2:30:00:: 00118764 4 2 -keep_up%2:33:00:: 01113975 1 6 -keep_up%2:40:00:: 02280132 3 4 -keep_up%2:42:00:: 02679530 2 5 -keeper%1:18:00:: 09984298 2 0 -keeper%1:18:02:: 10229498 1 0 -keeping%1:04:00:: 00818466 2 1 -keeping%1:04:01:: 01205010 1 1 -keeping%1:04:02:: 00810598 3 0 -keepsake%1:06:00:: 03610270 1 1 -keeshond%1:05:00:: 02112350 1 0 -keflex%1:06:00:: 02996249 1 0 -keflin%1:06:00:: 02996249 1 0 -keftab%1:06:00:: 02996249 1 0 -keg%1:06:00:: 03610418 2 0 -keg%1:23:00:: 13768064 1 0 -kegel_exercises%1:04:00:: 00628539 1 0 -kegful%1:23:00:: 13768064 1 0 -kei_apple%1:20:00:: 12378753 1 0 -kei_apple_bush%1:20:00:: 12378753 1 0 -keister%1:08:00:: 05559256 1 0 -keith_rupert_murdoch%1:18:00:: 11196934 1 0 -kekchi%1:10:00:: 06925743 2 0 -kekchi%1:18:00:: 09658815 1 0 -kekule%1:18:00:: 11098876 1 0 -kekule_formula%1:27:00:: 14774894 1 0 -keller%1:18:00:: 11099085 1 0 -kellogg%1:18:00:: 11099438 1 0 -kelly%1:18:00:: 11099729 3 0 -kelly%1:18:01:: 11099923 2 0 -kelly%1:18:02:: 11100139 1 0 -keloid%1:26:00:: 14363913 1 0 -kelp%1:05:00:: 01403457 1 0 -kelp_greenling%1:05:00:: 02648916 1 0 -kelpie%1:05:00:: 02105412 2 0 -kelpie%1:18:00:: 09543924 1 0 -kelpwort%1:20:00:: 11834654 1 0 -kelpy%1:18:00:: 09543924 1 0 -kelt%1:18:00:: 09688008 1 0 -kelter%1:26:00:: 14497120 1 0 -kelvin%1:18:00:: 11100260 2 0 -kelvin%1:23:00:: 13714756 1 0 -kelvin_scale%1:24:00:: 13853002 1 0 -kemadrin%1:06:00:: 04007510 1 0 -kemal_ataturk%1:18:00:: 10826952 1 0 -kemal_pasha%1:18:00:: 10826952 1 0 -kempt%5:00:00:groomed:00 02427594 1 0 -ken%1:09:00:: 05805157 1 2 -ken%1:09:01:: 05623818 2 0 -ken_elton_kesey%1:18:00:: 11102674 1 0 -ken_kesey%1:18:00:: 11102674 1 0 -ken_russell%1:18:00:: 11275636 1 0 -kenaf%1:20:00:: 12178129 2 0 -kenaf%1:20:02:: 12178358 1 0 -kenai_fjords_national_park%1:15:00:: 08606502 1 0 -kenalog%1:27:00:: 15078768 1 0 -kendal%1:27:00:: 14988961 1 0 -kendal_green%1:27:00:: 14988961 1 0 -kendall%1:18:00:: 11100462 1 0 -kendall's_tau%1:09:00:: 06035213 1 0 -kendall_partial_rank_correlation%1:09:00:: 06034870 1 0 -kendall_rank_correlation%1:09:00:: 06035213 1 0 -kendall_test%1:09:00:: 06034611 1 0 -kendrew%1:18:00:: 11100619 1 0 -kennan%1:18:00:: 11100798 1 0 -kennedia%1:20:00:: 12536665 1 0 -kennedia_coccinea%1:20:00:: 12537068 1 0 -kennedia_prostrata%1:20:00:: 12537253 1 0 -kennedy%1:15:00:: 09124399 2 0 -kennedy%1:18:00:: 11101000 1 0 -kennedy_international_airport%1:15:00:: 09124399 1 0 -kennedy_interrnational%1:15:00:: 09124399 1 0 -kennedya%1:20:00:: 12536665 1 0 -kennel%1:06:00:: 03610524 1 0 -kennel%2:41:00:: 02459799 1 0 -kennelly%1:18:00:: 11101250 1 0 -kennelly-heaviside_layer%1:15:00:: 08582613 1 0 -kennesaw_mountain%1:04:00:: 01282711 1 0 -kenneth_bancroft_clark%1:18:00:: 10898693 1 0 -kenneth_clark%1:18:00:: 10898693 1 0 -kenneth_david_kaunda%1:18:00:: 11097820 1 0 -kenneth_grahame%1:18:00:: 11010557 1 0 -kenneth_kaunda%1:18:00:: 11097820 1 0 -kenneth_roberts%1:18:00:: 11264343 1 0 -kennewick%1:15:00:: 09153873 1 0 -kenning%1:10:00:: 07106651 1 0 -keno%1:04:00:: 00504660 1 0 -kenogenesis%1:22:00:: 13444940 1 0 -kent%1:15:00:: 08882934 1 1 -kent%1:18:00:: 11101576 2 0 -kentan%1:20:00:: 12427566 1 0 -kentish%1:10:00:: 06949946 1 0 -kentish%1:10:01:: 06949326 2 0 -kentuckian%1:18:00:: 09743275 1 0 -kentucky%1:15:00:: 09089139 1 3 -kentucky_black_bass%1:05:00:: 02564935 1 0 -kentucky_blue%1:20:00:: 12131767 1 0 -kentucky_bluegrass%1:20:00:: 12131767 1 0 -kentucky_coffee_tree%1:20:00:: 12496427 1 0 -kentucky_derby%1:11:00:: 07462119 1 0 -kentucky_wonder%1:13:00:: 07728284 1 0 -kentucky_wonder_bean%1:13:00:: 07728284 1 0 -kentucky_yellowwood%1:20:00:: 12516165 1 0 -kentucy_blue_grass%1:20:00:: 12131767 1 0 -kenya%1:15:00:: 08928193 1 0 -kenya_fever%1:26:00:: 14078120 1 0 -kenyan%1:18:00:: 09719309 1 0 -kenyan%3:01:00:: 03078586 1 0 -kenyan_monetary_unit%1:23:00:: 13706521 1 0 -kenyan_shilling%1:23:00:: 13706628 1 0 -kenyapithecus%1:05:00:: 02478990 1 0 -kenyata%1:18:00:: 11101700 1 0 -kenzo_tange%1:18:00:: 11330963 1 0 -keogh_plan%1:09:00:: 05912243 1 0 -keokuk%1:18:00:: 11101843 1 0 -kepi%1:06:00:: 03610682 1 0 -kepler%1:18:00:: 11101986 1 0 -kepler's_first_law%1:09:00:: 05879693 1 0 -kepler's_law%1:09:00:: 05879441 1 0 -kepler's_law_of_planetary_motion%1:09:00:: 05879441 1 0 -kepler's_second_law%1:09:00:: 05879856 1 0 -kepler's_third_law%1:09:00:: 05880187 1 0 -kept%3:00:00:: 00289799 1 0 -kept_up%5:00:00:preserved:01 00737515 1 0 -kept_woman%1:18:00:: 10323752 1 0 -kera%1:10:00:: 06985490 1 0 -keratalgia%1:26:00:: 14328513 1 0 -keratectasia%1:26:00:: 14104118 1 0 -keratin%1:27:00:: 14732472 1 0 -keratinisation%1:22:00:: 13505249 1 0 -keratinise%2:30:00:: 00576684 2 0 -keratinise%2:30:01:: 00576860 1 0 -keratinization%1:22:00:: 13505249 1 0 -keratinize%2:30:00:: 00576684 2 0 -keratinize%2:30:01:: 00576860 1 0 -keratitis%1:26:00:: 14348300 1 0 -keratoacanthoma%1:26:00:: 14239097 1 0 -keratocele%1:26:00:: 14297329 1 0 -keratoconjunctivitis%1:26:00:: 14348429 1 0 -keratoconus%1:26:00:: 14104218 1 0 -keratoderma%1:26:00:: 14227906 1 0 -keratoderma_blennorrhagica%1:26:00:: 14228512 1 0 -keratodermia%1:26:00:: 14227906 1 0 -keratohyalin%1:27:00:: 14926180 1 0 -keratoiritis%1:26:00:: 14348538 1 0 -keratomalacia%1:26:00:: 14266835 1 0 -keratomycosis%1:26:00:: 14182242 1 0 -keratonosis%1:26:00:: 14228038 1 0 -keratonosus%1:26:00:: 14256585 1 0 -keratoplasty%1:04:00:: 00681613 1 0 -keratoscleritis%1:26:00:: 14348647 1 0 -keratoscope%1:06:00:: 03610836 1 0 -keratoscopy%1:04:00:: 00643621 1 0 -keratosis%1:26:00:: 14228148 1 0 -keratosis_blennorrhagica%1:26:00:: 14228512 1 0 -keratosis_follicularis%1:26:00:: 14228712 1 0 -keratosis_nigricans%1:26:00:: 14221924 1 0 -keratosis_pilaris%1:26:00:: 14228885 1 0 -keratotomy%1:04:00:: 00679910 1 0 -kerb%1:06:00:: 03148920 1 0 -kerb_crawler%1:18:00:: 10229721 1 0 -kerbala%1:15:00:: 08914573 1 0 -kerbela%1:15:00:: 08914573 1 0 -kerbstone%1:06:00:: 03149686 1 0 -kerchief%1:06:00:: 03610992 1 1 -kerensky%1:18:00:: 11102144 1 0 -kerfuffle%1:26:00:: 13977366 1 0 -kerion%1:26:00:: 14125881 1 0 -kern%1:06:00:: 03611169 2 0 -kern%1:18:00:: 11102353 1 0 -kern%2:40:00:: 02365936 2 0 -kern%2:40:01:: 02366105 1 0 -kernel%1:09:00:: 05921123 3 0 -kernel%1:20:01:: 12157056 2 0 -kernel%1:20:02:: 13137010 1 0 -kernicterus%1:26:00:: 14320218 1 0 -kernig's_sign%1:26:00:: 14267017 1 0 -kernite%1:27:00:: 14679267 1 0 -kerosene%1:27:00:: 14687633 1 1 -kerosene_heater%1:06:00:: 03843883 1 0 -kerosene_lamp%1:06:00:: 03844045 1 0 -kerosine%1:27:00:: 14687633 1 0 -kerosine_heater%1:06:00:: 03843883 1 0 -kerosine_lamp%1:06:00:: 03844045 1 0 -kerouac%1:18:00:: 11102493 1 0 -kerr_cell%1:06:00:: 03611314 1 0 -kerry_blue_terrier%1:05:00:: 02093859 1 0 -kerugma%1:10:00:: 07244305 1 0 -kerygma%1:10:00:: 07244305 1 3 -kesey%1:18:00:: 11102674 1 0 -kestrel%1:05:01:: 01611969 2 0 -kestrel%1:05:02:: 01612122 1 0 -ketalar%1:06:00:: 03611590 1 0 -ketamine%1:06:00:: 03611590 1 0 -ketamine_hydrochloride%1:06:00:: 03611590 1 0 -ketch%1:06:00:: 03612010 1 1 -ketchup%1:13:00:: 07822197 1 0 -ketchup_bottle%1:06:00:: 02985963 1 0 -keteleeria%1:20:00:: 11645163 1 0 -ketembilla%1:13:00:: 07762534 2 0 -ketembilla%1:20:00:: 12378963 1 0 -ketembilla_tree%1:20:00:: 12378963 1 0 -ketoacidosis%1:26:00:: 14019840 1 0 -ketoacidosis-prone_diabetes%1:26:00:: 14118423 1 0 -ketoacidosis-resistant_diabetes%1:26:00:: 14118936 1 0 -ketoacidosis-resistant_diabetes_mellitus%1:26:00:: 14118936 1 0 -ketoaciduria%1:26:00:: 14271480 1 0 -ketohexose%1:27:00:: 14927587 1 0 -ketone%1:27:00:: 14926294 1 0 -ketone_body%1:27:00:: 14926595 1 0 -ketone_group%1:27:00:: 14926937 1 0 -ketonemia%1:26:00:: 14267205 1 0 -ketonuria%1:26:00:: 14271480 1 0 -ketoprofen%1:06:00:: 03612134 1 0 -ketorolac%1:06:00:: 03612378 1 0 -ketorolac_tromethamine%1:06:00:: 03612559 1 0 -ketose%1:27:00:: 14927739 1 0 -ketosis%1:26:00:: 14267205 1 6 -ketosis-prone_diabetes%1:26:00:: 14118423 1 0 -ketosis-resistant_diabetes%1:26:00:: 14118936 1 0 -ketosis-resistant_diabetes_mellitus%1:26:00:: 14118936 1 0 -ketosteroid%1:27:00:: 15058163 1 0 -kettering%1:18:00:: 11102878 1 0 -kettle%1:06:00:: 03612814 1 1 -kettle%1:06:01:: 03612965 4 0 -kettle%1:17:00:: 09325038 3 0 -kettle%1:23:00:: 13768154 2 0 -kettle_hole%1:17:00:: 09325038 1 0 -kettle_of_fish%1:26:00:: 14409489 1 0 -kettledrum%1:06:00:: 03612965 1 0 -kettleful%1:23:00:: 13768154 1 0 -ketubim%1:10:00:: 06453324 1 0 -keuka_lake%1:17:00:: 09325246 1 0 -keurboom%1:20:01:: 12579822 2 0 -keurboom%1:20:02:: 12580012 1 0 -key%1:06:00:: 03613294 1 14 -key%1:06:01:: 03613592 15 0 -key%1:06:02:: 04586581 13 0 -key%1:06:03:: 03615133 14 0 -key%1:07:00:: 04986147 3 2 -key%1:09:00:: 05794057 2 4 -key%1:10:00:: 06863751 4 1 -key%1:10:01:: 06424869 12 0 -key%1:10:02:: 06492188 11 0 -key%1:10:03:: 06492438 10 0 -key%1:15:00:: 08590909 9 0 -key%1:17:00:: 09325395 8 0 -key%1:18:00:: 11103104 7 0 -key%1:20:00:: 12036226 6 0 -key%1:23:00:: 13724838 5 0 -key%2:30:00:: 00482749 5 0 -key%2:30:10:: 00483656 4 0 -key%2:31:00:: 00652346 1 1 -key%2:35:00:: 01520655 3 0 -key%2:40:00:: 02338227 2 0 -key%5:00:00:important:00 01277097 1 8 -key_fruit%1:20:00:: 12036226 1 0 -key_lime%1:13:00:: 07749870 1 0 -key_out%2:31:00:: 00652346 1 0 -key_palm%1:20:00:: 12598027 1 0 -key_pattern%1:06:00:: 03396311 1 0 -key_ring%1:06:00:: 03615037 1 0 -key_signature%1:10:00:: 06863618 1 0 -key_stroke%1:04:00:: 00349520 1 0 -key_west%1:15:00:: 09073442 1 0 -key_word%1:10:00:: 06293106 2 0 -key_word%1:10:02:: 06492320 1 0 -keyboard%1:06:00:: 03613873 2 0 -keyboard%1:06:01:: 03614007 1 2 -keyboard_buffer%1:06:00:: 03614383 1 0 -keyboard_instrument%1:06:00:: 03614532 1 0 -keyboardist%1:18:00:: 10229883 1 0 -keycard%1:10:00:: 06477818 1 0 -keyed%3:00:00:: 01371769 1 0 -keyed%5:00:00:tonal:00 02437462 2 0 -keyhole%1:06:00:: 03614782 1 2 -keyhole_limpet%1:05:00:: 01949499 1 0 -keyhole_saw%1:06:00:: 03614887 1 0 -keyless%3:00:00:: 01371911 1 0 -keynes%1:18:00:: 11103397 1 0 -keynesian%1:18:00:: 10229983 1 0 -keynesian%3:01:00:: 03034035 1 0 -keynesianism%1:09:00:: 05995355 1 0 -keynote%1:09:00:: 05926049 2 1 -keynote%1:10:00:: 06857726 3 0 -keynote%1:10:01:: 07240278 1 1 -keynote%2:30:00:: 00299188 1 2 -keynote%2:32:00:: 00768265 2 1 -keynote_address%1:10:00:: 07240417 1 0 -keynote_speech%1:10:00:: 07240417 1 0 -keypad%1:06:00:: 03085013 1 0 -keystone%1:06:00:: 03615133 2 0 -keystone%1:09:00:: 05694232 1 0 -keystone_state%1:15:00:: 09134386 1 0 -keystone_stater%1:18:00:: 09745324 1 0 -keystroke%1:04:00:: 00349520 1 0 -kg%1:23:00:: 13724582 1 0 -kgb%1:14:00:: 08485434 1 0 -khabarovsk%1:15:00:: 09005273 2 0 -khabarovsk%1:15:01:: 09005457 1 0 -khachaturian%1:18:00:: 11103648 1 0 -khadafy%1:18:00:: 11250287 1 0 -khaddar%1:06:00:: 03615300 1 0 -khadi%1:06:00:: 03615300 1 0 -khaki%1:06:00:: 03615406 1 0 -khaki%5:00:00:chromatic:00 00376821 1 1 -khakis%1:06:00:: 03615563 1 0 -khalif%1:18:00:: 09887496 1 0 -khalifah%1:18:00:: 09887496 1 0 -khalka%1:10:00:: 06929008 2 0 -khalka%1:18:00:: 09737835 1 0 -khalkha%1:10:00:: 06929008 2 0 -khalkha%1:18:00:: 09737835 1 0 -khalsa%1:14:00:: 08099825 1 0 -khama%1:18:00:: 11103864 1 0 -khamsin%1:19:00:: 11442752 1 0 -khamti%1:10:00:: 06935741 1 0 -khan%1:06:00:: 02961035 2 0 -khan%1:18:00:: 10230097 1 0 -khanate%1:04:00:: 00594070 2 0 -khanate%1:15:00:: 08558082 1 0 -khanty%1:10:00:: 06959018 2 0 -khanty%1:18:00:: 09706911 1 0 -kharkiv%1:15:00:: 09016860 1 0 -kharkov%1:15:00:: 09016860 1 0 -khartoum%1:15:00:: 09030210 1 1 -khat%1:06:00:: 03608870 1 0 -khaya%1:20:00:: 12698905 1 0 -khayr_ad-din%1:18:00:: 10834337 1 0 -khedive%1:18:00:: 10230216 1 0 -khepera%1:18:00:: 09512516 1 0 -khesari%1:20:00:: 12541403 1 0 -khi%1:10:00:: 06836381 1 0 -khimar%1:06:00:: 03615655 1 0 -khios%1:15:00:: 08782976 1 0 -khirghiz%1:10:00:: 06927736 2 0 -khirghiz%1:18:00:: 09736312 1 0 -khmer%1:10:00:: 06937348 1 1 -khmer%1:18:00:: 09733707 2 0 -khmer_rouge%1:14:00:: 08028999 1 0 -khoikhoi%1:10:00:: 06941479 1 0 -khoikhoin%1:10:00:: 06941479 1 0 -khoisan%1:10:00:: 06941341 1 0 -khoisan_language%1:10:00:: 06941341 1 0 -khomeini%1:18:00:: 11104008 1 0 -khoum%1:23:00:: 13689875 1 0 -khowar%1:10:00:: 06972654 1 0 -khrushchev%1:18:00:: 11104287 1 0 -khuen%1:10:00:: 06935513 1 0 -khufu%1:18:00:: 09915434 1 0 -khukuri%1:06:00:: 03615790 1 0 -khyber_pass%1:17:00:: 09325530 1 0 -khz%1:28:00:: 15279596 1 0 -ki%1:18:00:: 09518782 2 0 -ki%1:26:00:: 14050559 1 0 -kia_quen%1:04:00:: 00423028 1 0 -kiaat%1:20:00:: 12565102 1 0 -kiang%1:05:00:: 02390738 1 0 -kib%1:23:00:: 13627516 1 0 -kibbitz%2:32:00:: 01058995 1 0 -kibble%1:06:00:: 03615987 2 0 -kibble%1:13:00:: 07567980 1 0 -kibbutz%1:14:00:: 08056873 1 0 -kibbutznik%1:18:00:: 10230335 1 0 -kibe%1:26:00:: 14183692 1 0 -kibibit%1:23:00:: 13627935 1 0 -kibibyte%1:23:00:: 13627516 1 0 -kibit%1:23:00:: 13627935 1 0 -kibitz%2:32:00:: 01058995 1 0 -kibitzer%1:18:00:: 10230432 1 0 -kibosh%2:41:00:: 02559752 1 0 -kichaga%1:10:00:: 06993445 1 0 -kichai%1:18:00:: 09658921 1 0 -kick%1:04:00:: 00136329 1 3 -kick%1:04:01:: 00336805 6 0 -kick%1:09:00:: 05827509 5 0 -kick%1:10:00:: 07209965 4 0 -kick%1:11:00:: 07350754 3 0 -kick%1:12:00:: 07528470 2 1 -kick%2:32:00:: 00907147 8 0 -kick%2:33:05:: 01112979 7 0 -kick%2:34:00:: 01196524 6 0 -kick%2:35:00:: 01370561 3 7 -kick%2:35:01:: 01371756 1 11 -kick%2:35:08:: 01371454 5 0 -kick%2:38:00:: 01936233 2 9 -kick%2:38:01:: 02048511 4 0 -kick-start%2:38:00:: 01858016 1 0 -kick_about%2:42:00:: 02604305 1 0 -kick_around%2:32:00:: 00813651 3 0 -kick_around%2:41:00:: 02516978 2 0 -kick_around%2:42:00:: 02604305 1 0 -kick_back%2:35:00:: 01371454 2 1 -kick_back%2:40:00:: 02355259 1 1 -kick_down%2:35:00:: 01586738 1 0 -kick_downstairs%2:41:00:: 02399331 1 0 -kick_in%2:35:00:: 01586738 3 0 -kick_in%2:40:00:: 02308741 2 0 -kick_in%2:42:00:: 02609439 1 0 -kick_in_the_butt%1:04:00:: 01164275 1 1 -kick_off%2:41:00:: 02395782 1 0 -kick_one's_heels%2:42:00:: 02638206 1 1 -kick_out%2:41:00:: 02401809 2 0 -kick_out%2:41:01:: 02501738 1 0 -kick_pleat%1:06:00:: 03616091 1 0 -kick_start%1:06:00:: 03616763 1 0 -kick_starter%1:06:00:: 03616763 1 0 -kick_the_bucket%2:30:00:: 00358431 1 0 -kick_turn%1:04:00:: 00441235 1 0 -kick_up%1:04:00:: 00437321 1 1 -kick_up%2:35:00:: 01371651 1 1 -kick_up%2:36:00:: 01646866 2 0 -kick_upstairs%2:41:00:: 02397637 1 0 -kickapoo%1:10:00:: 06910423 2 0 -kickapoo%1:18:00:: 09659039 1 0 -kickback%1:21:00:: 13284784 1 0 -kicker%1:18:00:: 10230580 1 0 -kicking%1:04:00:: 00136329 2 0 -kicking%1:04:01:: 00336805 1 0 -kickoff%1:04:00:: 00241507 1 2 -kickoff%1:11:00:: 07329568 3 0 -kickoff%1:28:00:: 15265518 2 1 -kickshaw%1:13:00:: 07557165 1 0 -kicksorter%1:06:00:: 03616225 1 0 -kickstand%1:06:00:: 03616428 1 0 -kid%1:05:00:: 02416820 5 0 -kid%1:18:00:: 09917593 1 53 -kid%1:18:01:: 09918248 4 0 -kid%1:18:02:: 11113489 3 0 -kid%1:27:00:: 14762846 2 0 -kid%2:32:00:: 00855295 2 2 -kid%2:32:01:: 00851100 1 5 -kid-glove%5:00:00:diplomatic:00 00759169 1 0 -kid_glove%1:06:00:: 03616979 1 0 -kidd%1:18:00:: 11104458 1 0 -kiddie_porn%1:04:00:: 00747519 1 0 -kiddy%1:18:00:: 10230736 1 0 -kiddy_porn%1:04:00:: 00747519 1 0 -kidnap%2:35:00:: 01471043 1 3 -kidnaper%1:18:00:: 10230801 1 0 -kidnapper%1:18:00:: 10230801 1 4 -kidnapping%1:04:00:: 00775702 1 0 -kidney%1:08:00:: 05332802 1 9 -kidney-shaped%5:00:00:simple:01 02170546 1 0 -kidney_bean%1:13:00:: 07727048 2 0 -kidney_bean%1:20:00:: 12557064 1 0 -kidney_begonia%1:20:00:: 12361560 1 0 -kidney_disease%1:26:00:: 14113228 1 0 -kidney_failure%1:26:00:: 14114555 1 0 -kidney_fern%1:20:00:: 12952717 1 0 -kidney_pie%1:13:00:: 07877575 1 0 -kidney_stone%1:17:00:: 09325824 1 0 -kidney_vetch%1:20:00:: 12506991 1 0 -kidney_wort%1:20:00:: 11938732 1 0 -kidskin%1:27:00:: 14762846 1 0 -kierkegaard%1:18:00:: 11104676 1 0 -kieselguhr%1:27:00:: 14843295 1 0 -kieserite%1:27:00:: 14679447 1 0 -kieslowski%1:18:00:: 11104896 1 0 -kiev%1:15:00:: 09015907 1 0 -kigali%1:15:00:: 08815346 1 0 -kiggelaria%1:20:00:: 12380597 1 0 -kiggelaria_africana%1:20:00:: 12380761 1 0 -kike%1:18:00:: 09682122 1 0 -kikladhes%1:15:00:: 08783149 1 0 -kildeer%1:05:00:: 02023992 1 0 -kilderkin%1:23:00:: 13622914 1 0 -kiley%1:06:00:: 03629401 1 0 -kilimanjaro%1:17:00:: 09325963 1 0 -kiliwa%1:10:00:: 06922965 2 0 -kiliwa%1:18:00:: 09659188 1 0 -kiliwi%1:10:00:: 06922965 2 0 -kiliwi%1:18:00:: 09659188 1 0 -kill%1:04:00:: 00219012 1 3 -kill%1:04:01:: 00217593 2 1 -kill%2:30:00:: 00478830 12 0 -kill%2:30:02:: 00355177 15 0 -kill%2:30:03:: 00355365 14 0 -kill%2:30:04:: 00355524 13 0 -kill%2:30:08:: 00355038 3 1 -kill%2:34:00:: 01202374 11 0 -kill%2:35:00:: 01323958 1 103 -kill%2:35:01:: 01325536 10 0 -kill%2:35:02:: 01325774 9 0 -kill%2:35:05:: 01407235 8 0 -kill%2:35:06:: 01407376 7 0 -kill%2:37:00:: 01809617 6 0 -kill%2:39:00:: 02198819 5 0 -kill%2:41:01:: 02473688 2 1 -kill%2:42:00:: 02748495 4 0 -kill_off%2:35:00:: 01327582 1 1 -kill_oneself%2:33:00:: 01146382 1 0 -kill_zone%1:15:00:: 08690352 1 0 -killable%5:00:00:edible:00 00829041 1 1 -killarney_fern%1:20:00:: 12952590 1 0 -killdeer%1:05:00:: 02023992 1 0 -killdeer_plover%1:05:00:: 02023992 1 0 -killer%1:05:00:: 02071294 4 0 -killer%1:09:00:: 05688630 3 0 -killer%1:18:00:: 10231087 1 8 -killer%1:26:00:: 14540564 2 0 -killer_bee%1:05:00:: 02208498 2 0 -killer_bee%1:18:00:: 10231361 1 0 -killer_cell%1:08:00:: 05452516 1 0 -killer_t_cell%1:08:00:: 05452516 1 0 -killer_whale%1:05:00:: 02071294 1 0 -killifish%1:05:00:: 01446760 1 0 -killing%1:04:00:: 00219012 2 5 -killing%1:11:00:: 07361576 1 5 -killing%1:21:00:: 13259797 3 0 -killing%5:00:00:humorous:00 01267339 1 0 -killing_field%1:15:00:: 08690479 1 0 -killing_zone%1:15:00:: 08690352 1 0 -killingly%4:02:00:: 00385216 1 0 -killjoy%1:18:00:: 10638136 1 0 -kiln%1:06:00:: 03617095 1 0 -kiln-dried%5:00:00:dry:01 02553725 1 0 -kilo%1:23:00:: 13724582 1 0 -kilobit%1:23:00:: 13627810 1 0 -kilobyte%1:23:00:: 13627516 2 0 -kilobyte%1:23:01:: 13627681 1 0 -kilocalorie%1:23:00:: 13726562 1 0 -kilocycle%1:28:00:: 15279596 1 0 -kilocycle_per_second%1:28:00:: 15279596 1 0 -kilogram%1:23:00:: 13724582 1 0 -kilogram-meter%1:23:00:: 13728203 1 0 -kilogram_calorie%1:23:00:: 13726562 1 0 -kilohertz%1:28:00:: 15279596 1 0 -kiloliter%1:23:00:: 13624873 1 0 -kilolitre%1:23:00:: 13624873 1 0 -kilometer%1:23:00:: 13659760 1 1 -kilometers_per_hour%1:28:00:: 15279767 1 0 -kilometre%1:23:00:: 13659760 1 0 -kilometres_per_hour%1:28:00:: 15279767 1 0 -kiloton%1:23:00:: 13721695 1 0 -kiloton%1:23:02:: 13647215 2 0 -kilovolt%1:23:00:: 13643770 1 0 -kilovolt-ampere%1:23:00:: 13645331 1 0 -kilowatt%1:23:00:: 13644761 1 0 -kilowatt_hour%1:23:00:: 13727478 1 0 -kilroy%1:18:00:: 09600901 1 0 -kilt%1:06:00:: 03617312 1 0 -kilter%1:26:00:: 14497120 1 0 -kimberley%1:15:00:: 09000854 1 0 -kimberlite%1:27:00:: 14933086 1 0 -kimono%1:06:00:: 03617480 1 0 -kin%1:14:00:: 07969695 2 0 -kin%1:18:00:: 10236304 1 0 -kin%5:00:00:related:01 01971846 1 0 -kin_group%1:14:00:: 07969695 1 0 -kina%1:23:00:: 13680599 1 0 -kinaesthesia%1:09:00:: 05722208 1 0 -kinaesthesia%1:09:01:: 05658985 2 0 -kinaesthesis%1:09:00:: 05658985 1 0 -kinaesthetic%3:01:00:: 02870453 1 0 -kinaesthetically%4:02:00:: 00198232 1 0 -kinanesthesia%1:09:00:: 05659260 1 0 -kinase%1:27:00:: 14927881 1 0 -kinchinjunga%1:17:00:: 09323221 1 0 -kind%1:09:00:: 05839024 1 126 -kind%3:00:00:: 01372049 1 4 -kind%5:00:00:forgiving:00 01041209 3 0 -kind%5:00:00:hospitable:00 01242282 2 0 -kind-hearted%5:00:00:kind:00 01373545 1 0 -kind-heartedness%1:12:00:: 07553590 1 0 -kind_of%4:02:00:: 00018302 1 7 -kinda%4:02:00:: 00018302 1 3 -kindergarten%1:14:00:: 08412136 1 1 -kindergartener%1:18:00:: 10466060 1 0 -kindergartner%1:18:00:: 10466060 1 0 -kindhearted%5:00:00:kind:00 01373545 1 0 -kindheartedness%1:12:00:: 07553590 1 0 -kindle%2:37:00:: 01759326 3 0 -kindle%2:43:00:: 02761372 2 0 -kindle%2:43:01:: 02761685 1 0 -kindled%5:00:00:lighted:00 00475625 1 1 -kindliness%1:07:00:: 04841664 1 0 -kindling%1:04:00:: 00378479 2 0 -kindling%1:27:00:: 15101586 1 0 -kindly%4:02:00:: 00004394 1 1 -kindly%5:00:00:benign:00 00226891 2 0 -kindly%5:00:00:kind:00 01372948 1 1 -kindness%1:04:00:: 00034574 3 0 -kindness%1:07:00:: 04840011 1 0 -kindness%1:07:01:: 04829764 2 0 -kindred%1:14:00:: 07969695 1 0 -kindred%5:00:00:related:01 01972479 2 0 -kindred%5:00:00:similar:00 02071782 1 2 -kine%1:05:00:: 02402425 1 0 -kinematics%1:09:00:: 06113777 1 0 -kinescope%1:06:00:: 03617594 1 0 -kinesiology%1:09:00:: 06082459 1 0 -kinesis%1:04:00:: 00863222 1 0 -kinesthesia%1:09:00:: 05722208 1 0 -kinesthesia%1:09:01:: 05658985 2 0 -kinesthesis%1:09:00:: 05658985 1 0 -kinesthetic%3:01:00:: 02870453 1 4 -kinesthetically%4:02:00:: 00198232 1 1 -kinesthetics%1:09:00:: 05658985 1 0 -kinetic%3:01:00:: 02893827 1 3 -kinetic%5:00:00:dynamic:00 00809164 3 0 -kinetic%5:00:00:moving:02 01563349 2 0 -kinetic_energy%1:19:00:: 11470492 1 4 -kinetic_theory%1:09:00:: 06106305 1 0 -kinetic_theory_of_gases%1:09:00:: 06106305 1 0 -kinetic_theory_of_heat%1:09:00:: 06108339 1 0 -kinetics%1:09:00:: 06113597 1 0 -kinetochore%1:08:00:: 05444324 1 0 -kinetoscope%1:06:00:: 03617834 1 0 -kinetosis%1:26:00:: 14203346 1 0 -kinfolk%1:14:00:: 07970721 1 0 -king%1:06:00:: 03618101 10 0 -king%1:06:01:: 03618219 9 0 -king%1:06:02:: 03618339 8 0 -king%1:18:00:: 10231515 1 19 -king%1:18:01:: 09840217 3 1 -king%1:18:02:: 10235024 2 1 -king%1:18:03:: 11105054 7 0 -king%1:18:04:: 11105298 6 0 -king%1:18:05:: 11105463 5 0 -king%1:26:00:: 14435670 4 0 -king's_counsel%1:18:00:: 10235269 1 0 -king's_english%1:10:00:: 06948260 1 0 -king's_evil%1:26:00:: 14144247 1 1 -king's_ransom%1:21:00:: 13371274 1 0 -king's_spear%1:20:00:: 12442697 1 0 -king-size%5:00:00:large:00 01388228 1 0 -king-sized%5:00:00:large:00 01388228 1 0 -king_arthur%1:18:00:: 10824888 1 0 -king_arthur's_round_table%1:06:00:: 04114554 1 0 -king_begonia%1:20:00:: 12361946 1 0 -king_camp_gilette%1:18:00:: 11000172 1 0 -king_charles_spaniel%1:05:00:: 02086753 1 0 -king_cobra%1:05:00:: 01748906 1 0 -king_crab%1:05:01:: 01981276 3 0 -king_crab%1:05:02:: 01787835 4 0 -king_crab%1:05:03:: 01982068 2 0 -king_crab%1:13:00:: 07788435 1 0 -king_devil%1:20:00:: 11982342 1 0 -king_ferdinand%1:18:00:: 10969305 1 0 -king_fern%1:20:01:: 12953484 2 0 -king_fern%1:20:02:: 12954799 1 0 -king_harold_i%1:18:00:: 11029454 1 0 -king_harold_ii%1:18:00:: 11029637 1 0 -king_hussein%1:18:00:: 11068196 1 0 -king_james%1:18:00:: 11079802 1 0 -king_james_bible%1:10:00:: 06449095 1 0 -king_james_i%1:18:00:: 11079802 1 0 -king_james_version%1:10:00:: 06449095 1 0 -king_john%1:18:00:: 11086279 1 0 -king_lear%1:18:00:: 09601049 1 0 -king_mackerel%1:05:00:: 02625851 1 0 -king_nut%1:20:00:: 12321395 1 0 -king_nut_hickory%1:20:00:: 12321395 1 0 -king_oedipus%1:18:00:: 09597798 1 0 -king_of_beasts%1:05:00:: 02129165 1 0 -king_of_england%1:18:00:: 10233445 1 0 -king_of_france%1:18:00:: 10234340 1 0 -king_of_great_britain%1:18:00:: 10233445 1 0 -king_of_swing%1:18:00:: 11007332 1 0 -king_of_the_germans%1:18:00:: 10234867 1 0 -king_of_the_herring%1:05:00:: 02547014 1 0 -king_oliver%1:18:00:: 11214153 1 0 -king_orange%1:20:00:: 12710917 1 0 -king_penguin%1:05:00:: 02056570 1 0 -king_post%1:06:00:: 03618678 1 0 -king_protea%1:20:00:: 12215022 1 0 -king_salmon%1:05:00:: 02536456 2 0 -king_salmon%1:13:00:: 07796321 1 0 -king_snake%1:05:00:: 01734418 1 0 -king_vulture%1:05:00:: 01620735 1 0 -king_whiting%1:05:00:: 02597818 1 0 -king_william_pine%1:20:00:: 11632929 1 0 -kingbird%1:05:00:: 01548301 1 0 -kingbolt%1:06:00:: 03618546 1 0 -kingcup%1:20:01:: 11720353 2 0 -kingcup%1:20:02:: 11728099 1 0 -kingdom%1:14:00:: 07940448 6 0 -kingdom%1:14:01:: 08405603 4 0 -kingdom%1:14:02:: 07940552 5 0 -kingdom%1:15:00:: 08558155 3 1 -kingdom%1:15:01:: 08591269 2 1 -kingdom%1:26:00:: 14514805 1 2 -kingdom_animalia%1:05:00:: 01313093 1 0 -kingdom_come%1:28:00:: 15121880 2 0 -kingdom_come%1:28:01:: 15143984 1 0 -kingdom_fungi%1:20:00:: 12992464 1 0 -kingdom_monera%1:05:00:: 01341876 1 0 -kingdom_of_belgium%1:15:00:: 08849753 1 0 -kingdom_of_bhutan%1:15:00:: 08852209 1 0 -kingdom_of_cambodia%1:15:00:: 08716738 1 0 -kingdom_of_denmark%1:15:00:: 08761244 1 0 -kingdom_of_god%1:15:00:: 08558661 1 0 -kingdom_of_lesotho%1:15:00:: 08958830 1 0 -kingdom_of_morocco%1:15:00:: 08969291 1 0 -kingdom_of_nepal%1:15:00:: 08906374 1 0 -kingdom_of_norway%1:15:00:: 08764107 1 0 -kingdom_of_saudi_arabia%1:15:00:: 08993288 1 0 -kingdom_of_spain%1:15:00:: 09023321 1 0 -kingdom_of_swaziland%1:15:00:: 09031233 1 0 -kingdom_of_sweden%1:15:00:: 08765890 1 0 -kingdom_of_thailand%1:15:00:: 09036452 1 0 -kingdom_of_the_netherlands%1:15:00:: 08949093 1 0 -kingdom_of_tonga%1:15:00:: 09037133 1 0 -kingdom_plantae%1:20:00:: 11529603 1 0 -kingdom_prokaryotae%1:05:00:: 01341876 1 0 -kingdom_protoctista%1:05:00:: 01386494 1 0 -kingfish%1:05:01:: 02597608 4 0 -kingfish%1:05:02:: 02626265 2 0 -kingfish%1:05:03:: 02598573 3 0 -kingfish%1:05:04:: 02579303 5 0 -kingfish%1:13:00:: 07784810 1 0 -kingfisher%1:05:00:: 01827403 1 0 -kingfisher_daisy%1:20:00:: 11969806 1 0 -kinglet%1:05:00:: 01563746 1 0 -kinglike%5:00:01:noble:02 01591699 1 0 -kingly%5:00:00:noble:02 01591699 1 0 -kingmaker%1:18:00:: 10233248 2 0 -kingmaker%1:18:01:: 11375087 1 0 -kingpin%1:06:00:: 03618546 2 0 -kingpin%1:06:01:: 03504293 3 0 -kingpin%1:18:00:: 10235142 1 0 -kings_canyon_national_park%1:15:00:: 08606688 1 0 -kingship%1:26:00:: 14433001 1 0 -kingsnake%1:05:00:: 01734418 1 0 -kingston%1:15:00:: 08754238 3 0 -kingston%1:15:01:: 09124732 1 0 -kingston%1:15:02:: 08827853 2 0 -kingston-upon_hull%1:15:00:: 08877208 1 0 -kingstown%1:15:00:: 08989556 1 0 -kingwood%1:20:00:: 12523141 2 0 -kingwood%1:20:02:: 12523319 1 0 -kingwood_tree%1:20:00:: 12523141 1 0 -kinin%1:27:00:: 14745477 1 0 -kink%1:09:00:: 05688770 5 0 -kink%1:09:01:: 05926150 4 0 -kink%1:18:00:: 10236842 3 0 -kink%1:25:00:: 13877918 2 0 -kink%1:26:00:: 14361182 1 0 -kink%2:30:00:: 00362128 2 0 -kink%2:35:00:: 01223833 1 0 -kink_up%2:35:00:: 01223833 1 0 -kinkajou%1:05:01:: 02499316 2 0 -kinkajou%1:05:02:: 02509197 1 0 -kinky%5:00:00:abnormal:00 01597509 1 0 -kinky%5:00:00:curly:00 01030372 2 0 -kinky%5:00:00:unconventional:01 00609564 3 0 -kino%1:20:01:: 12565912 2 0 -kino%1:27:00:: 14901411 1 0 -kino_gum%1:20:00:: 12566112 2 0 -kino_gum%1:27:00:: 14901411 1 0 -kinosternidae%1:05:00:: 01666802 1 0 -kinosternon%1:05:00:: 01666967 1 0 -kinsey%1:18:00:: 11105609 1 0 -kinsfolk%1:14:00:: 07970721 1 0 -kinshasa%1:15:00:: 08735164 1 0 -kinship%1:24:00:: 13812607 2 1 -kinship%1:24:02:: 13811410 1 2 -kinship_group%1:14:00:: 07969695 1 0 -kinship_system%1:09:00:: 05729609 1 0 -kinsman%1:18:00:: 10236946 1 0 -kinsperson%1:18:00:: 10236304 1 0 -kinswoman%1:18:00:: 10237069 1 0 -kinyarwanda%1:10:00:: 06993573 1 0 -kiosk%1:06:00:: 02873839 1 0 -kiowa%1:10:00:: 06920665 2 0 -kiowa%1:18:00:: 09659327 1 0 -kip%1:04:00:: 00438338 3 0 -kip%1:23:00:: 13680948 2 0 -kip%1:28:00:: 15273955 1 0 -kip%2:29:00:: 00014742 1 0 -kip_down%2:29:00:: 00017865 1 0 -kipling%1:18:00:: 11105778 1 1 -kiplingesque%3:01:00:: 03034192 1 0 -kipp's_apparatus%1:06:00:: 03618797 1 0 -kipper%1:13:00:: 07785138 1 0 -kippered_herring%1:13:00:: 07785138 1 0 -kippered_salmon%1:13:00:: 07798147 1 0 -kirchhoff%1:18:00:: 11105945 1 0 -kirchhoff's_laws%1:09:00:: 05880432 1 0 -kirchner%1:18:00:: 11106170 1 0 -kirghiz%1:10:00:: 06927736 3 0 -kirghiz%1:15:00:: 09020440 2 0 -kirghiz%1:18:00:: 09736312 1 0 -kirghizia%1:15:00:: 09020440 1 0 -kirghizstan%1:15:00:: 09020440 1 0 -kirgiz%1:10:00:: 06927736 3 0 -kirgiz%1:15:00:: 09020440 2 0 -kirgiz%1:18:00:: 09736312 1 0 -kirgizia%1:15:00:: 09020440 1 0 -kirgizstan%1:15:00:: 09020440 1 0 -kiribati%1:15:00:: 08840749 1 0 -kiribati_dollar%1:23:00:: 13673650 1 0 -kirk%1:06:00:: 03618982 1 0 -kirkia%1:20:00:: 12717914 1 0 -kirkia_wilmsii%1:20:00:: 12718074 1 0 -kirkuk%1:15:00:: 08914850 1 0 -kirpan%1:06:00:: 03619050 1 0 -kirsch%1:13:00:: 07904072 1 0 -kirtle%1:06:00:: 03619196 2 0 -kirtle%1:06:02:: 03619275 1 0 -kishar%1:18:00:: 09518908 1 0 -kishinev%1:15:00:: 09014850 1 0 -kishke%1:13:00:: 07878479 1 0 -kislev%1:28:00:: 15214840 1 0 -kismat%1:11:00:: 07330560 1 0 -kismet%1:11:00:: 07330560 1 0 -kiss%1:04:00:: 00138221 1 7 -kiss%1:04:01:: 00138078 4 0 -kiss%1:13:00:: 07606764 3 0 -kiss%1:13:01:: 07636869 2 0 -kiss%2:35:00:: 01431230 1 18 -kiss%2:35:01:: 01431723 2 0 -kiss-me-over-the-garden-gate%1:20:00:: 12601805 1 0 -kiss_curl%1:08:00:: 05258627 1 0 -kiss_of_death%1:11:00:: 07316242 1 0 -kiss_of_life%1:04:00:: 00832626 1 0 -kiss_of_peace%1:10:00:: 06631140 1 0 -kisser%1:08:00:: 05601357 2 0 -kisser%1:18:00:: 10237196 1 0 -kissimmee%1:17:00:: 09326139 1 0 -kissimmee_river%1:17:00:: 09326139 1 0 -kissing%1:04:00:: 00854000 1 2 -kissing_bug%1:05:00:: 02244515 1 0 -kissing_cousin%1:18:00:: 10237315 1 0 -kissing_disease%1:26:00:: 14135277 1 0 -kissing_kin%1:18:00:: 10237315 1 0 -kissinger%1:18:00:: 11106290 1 0 -kisumu%1:15:00:: 08928742 1 0 -kiswahili%1:10:00:: 06993647 1 0 -kit%1:05:00:: 01323155 3 0 -kit%1:06:00:: 03619396 2 0 -kit%1:06:01:: 03619650 1 2 -kit%2:40:00:: 02341200 1 0 -kit_and_boodle%1:26:00:: 14461679 1 0 -kit_and_caboodle%1:26:00:: 14461679 1 1 -kit_bag%1:06:00:: 03619793 1 0 -kit_carson%1:18:00:: 10884369 1 0 -kit_fox%1:05:01:: 02119634 2 0 -kit_fox%1:05:02:: 02119789 1 0 -kit_out%2:40:00:: 02341200 1 0 -kit_up%2:40:00:: 02341200 1 0 -kitakyushu%1:15:00:: 08925700 1 0 -kitambilla%1:13:00:: 07762534 2 0 -kitambilla%1:20:00:: 12378963 1 0 -kitbag%1:06:00:: 03619793 1 0 -kitchen%1:06:00:: 03619890 1 43 -kitchen_appliance%1:06:00:: 03620052 1 0 -kitchen_cabinet%1:14:00:: 08241512 1 0 -kitchen_garden%1:06:00:: 03620443 1 0 -kitchen_help%1:18:00:: 10237464 1 0 -kitchen_island%1:06:00:: 03620600 1 0 -kitchen_match%1:06:00:: 03620730 1 0 -kitchen_midden%1:15:00:: 08560560 1 0 -kitchen_police%1:18:00:: 10237556 1 0 -kitchen_range%1:06:00:: 04330340 1 0 -kitchen_sink%1:06:00:: 03620889 1 2 -kitchen_stove%1:06:00:: 04330340 1 0 -kitchen_table%1:06:00:: 03620967 1 1 -kitchen_utensil%1:06:00:: 03621049 1 0 -kitchener%1:18:00:: 11106479 1 0 -kitchenette%1:06:00:: 03620353 1 2 -kitchenware%1:06:00:: 03621377 1 0 -kite%1:05:00:: 01608432 4 0 -kite%1:06:00:: 03621473 3 0 -kite%1:21:00:: 13382306 2 0 -kite%1:21:01:: 13382471 1 0 -kite%2:38:00:: 01848190 4 0 -kite%2:38:01:: 01942560 3 0 -kite%2:40:00:: 02206140 2 0 -kite%2:40:01:: 02206313 1 0 -kite_balloon%1:06:00:: 03621694 1 0 -kite_tail%1:06:00:: 03621826 1 0 -kitembilla%1:13:00:: 07762534 2 0 -kitembilla%1:20:00:: 12378963 1 0 -kith%1:14:00:: 07970301 1 0 -kitsch%1:06:00:: 03621935 1 0 -kitschy%5:00:00:emotional:00 00854413 1 0 -kittee%1:04:00:: 00423222 1 0 -kitten%1:05:00:: 02122948 1 7 -kitten%2:29:00:: 00058135 1 0 -kitten-tails%1:20:00:: 12878169 1 0 -kittenish%5:00:00:playful:00 02123007 1 1 -kittiwake%1:05:00:: 02042759 1 0 -kittul%1:20:00:: 12587132 1 0 -kitty%1:05:01:: 02122298 4 0 -kitty%1:05:02:: 02122948 3 0 -kitty%1:21:00:: 13369474 1 0 -kitty%1:21:01:: 13343774 2 0 -kitty-cat%1:05:00:: 02122298 1 0 -kitty-corner%5:00:00:oblique:00 01719507 1 0 -kitty-cornered%5:00:00:oblique:00 01719507 1 0 -kitty_litter%1:27:00:: 14813957 1 0 -kitul%1:20:00:: 12587132 1 0 -kitul_tree%1:20:00:: 12587132 1 0 -kivu%1:17:00:: 09326299 1 0 -kiwi%1:05:00:: 01520576 4 0 -kiwi%1:13:00:: 07763629 3 0 -kiwi%1:18:00:: 09724533 2 0 -kiwi%1:20:00:: 12371439 1 0 -kiwi-sized%5:00:00:sized:00 02223559 1 0 -kiwi_fruit%1:13:00:: 07763629 1 0 -kiwi_vine%1:20:00:: 12371439 1 0 -kizil_kum%1:15:00:: 09170633 1 0 -kkk%1:14:00:: 08029421 1 0 -klaipeda%1:15:00:: 09014066 1 0 -klamath%1:17:00:: 09326467 1 0 -klamath_falls%1:15:00:: 09133643 1 0 -klamath_river%1:17:00:: 09326467 1 0 -klammath_weed%1:20:00:: 12369309 1 0 -klan%1:14:00:: 08029421 1 0 -klansman%1:18:00:: 10237676 1 0 -klaproth%1:18:00:: 11106652 1 0 -klaus_fuchs%1:18:00:: 10984589 1 0 -klavern%1:14:00:: 08029784 1 0 -klavier%1:06:00:: 03039015 1 0 -klaxon%1:06:00:: 03622058 1 0 -klebs-loeffler_bacillus%1:05:00:: 01366700 1 0 -klebsiella%1:05:00:: 01368672 1 0 -klee%1:18:00:: 11106830 1 0 -kleenex%1:27:00:: 14928008 1 1 -klein%1:18:00:: 11106943 3 0 -klein%1:18:01:: 11107110 2 0 -klein%1:18:02:: 11107308 1 0 -klein_bottle%1:06:00:: 03622207 1 0 -kleist%1:18:00:: 11107436 1 0 -klemens_metternich%1:18:00:: 11177532 1 0 -kleptomania%1:16:00:: 09182273 1 0 -kleptomaniac%1:18:00:: 10237799 1 0 -klick%1:23:00:: 13659760 1 0 -klieg_light%1:06:00:: 03622401 1 0 -klimt%1:18:00:: 11107635 1 0 -kline%1:18:00:: 11107757 1 0 -klinefelter%1:18:00:: 11107901 1 0 -klinefelter's_syndrome%1:26:00:: 14306475 1 0 -klinefelter_syndrome%1:26:00:: 14306475 1 0 -klondike%1:04:00:: 00495774 2 0 -klondike%1:15:00:: 08830720 1 0 -klopstock%1:18:00:: 11108084 1 0 -klorvess%1:27:00:: 14861042 1 0 -klotho%1:18:00:: 09565503 1 0 -kludge%1:14:00:: 07977344 1 0 -klutz%1:18:00:: 10237935 1 0 -kluxer%1:18:00:: 10237676 1 0 -klystron%1:06:00:: 03622526 1 0 -klyuchevskaya%1:15:00:: 09175767 1 0 -km%1:23:00:: 13659760 1 1 -km/h%1:28:00:: 15279767 1 0 -knack%1:09:00:: 05624254 1 2 -knacker%1:18:00:: 10238029 2 0 -knacker%1:18:01:: 10238127 1 0 -knackered%5:00:00:tired:00 02434115 1 0 -knackwurst%1:13:00:: 07677255 1 0 -knap%2:35:00:: 01414288 1 0 -knap%2:35:01:: 01259458 2 0 -knapsack%1:06:00:: 02769748 1 4 -knapweed%1:20:00:: 11948264 1 0 -knave%1:06:00:: 03589093 2 0 -knave%1:18:00:: 10536728 1 0 -knavery%1:04:00:: 00749574 1 0 -knavish%5:00:00:artful:00 00148078 1 0 -knavishly%4:02:00:: 00293926 1 0 -knawe%1:20:00:: 11814996 1 0 -knawel%1:20:00:: 11814996 1 0 -knead%2:35:00:: 01235355 1 1 -knead%2:35:01:: 01232738 2 0 -knee%1:05:01:: 02464065 2 3 -knee%1:06:00:: 03622698 3 1 -knee%1:08:00:: 05573602 1 51 -knee-deep%4:02:00:: 00258796 1 0 -knee-deep%5:00:00:shallow:01 00692154 1 1 -knee-hi%1:06:00:: 03622931 1 0 -knee-high%1:06:00:: 03622931 1 0 -knee-high%4:02:00:: 00258796 1 0 -knee-jerk_reflex%1:04:00:: 00864859 1 0 -knee-length%3:01:00:: 03078753 1 0 -knee_bend%1:04:00:: 00630071 1 0 -knee_brace%1:06:00:: 03622839 1 0 -knee_breeches%1:06:00:: 02896442 1 0 -knee_jerk%1:04:00:: 00864859 1 0 -knee_joint%1:08:00:: 05573602 1 2 -knee_pad%1:06:00:: 03623198 1 0 -knee_pants%1:06:00:: 02896442 1 0 -knee_piece%1:06:00:: 03623338 1 0 -kneecap%1:08:00:: 05278395 1 1 -kneecap%2:33:00:: 01137415 1 0 -kneel%1:04:00:: 00337078 1 0 -kneel%2:35:00:: 01545649 1 9 -kneeler%1:06:00:: 03623073 2 0 -kneeler%1:18:00:: 10238272 1 0 -kneeling%1:04:00:: 00337078 1 0 -kneepan%1:08:00:: 05278395 1 0 -knell%1:11:00:: 07386194 1 0 -knell%2:39:00:: 02181865 1 0 -knell%2:39:01:: 02181538 2 0 -knesset%1:14:00:: 08319679 1 0 -knesseth%1:14:00:: 08319679 1 0 -knickerbockers%1:06:00:: 02896442 1 0 -knickers%1:06:00:: 02854739 2 0 -knickers%1:06:01:: 02896442 1 0 -knickknack%1:06:00:: 02897692 2 0 -knickknack%1:06:01:: 03623448 1 0 -knickknackery%1:06:00:: 02897692 1 0 -knife%1:06:00:: 03623556 1 6 -knife%1:06:01:: 03624134 2 5 -knife%1:25:00:: 13918387 3 1 -knife%2:35:00:: 01231652 1 0 -knife-edge%1:07:00:: 05124404 1 0 -knife-handle%1:05:00:: 01959029 1 0 -knife_blade%1:06:00:: 03624400 1 0 -knife_edge%1:06:00:: 03624497 1 0 -knife_fight%1:04:00:: 01176540 1 0 -knife_pleat%1:06:00:: 03624653 1 0 -knife_thrust%1:04:00:: 01173965 1 1 -knifelike%5:00:00:distinct:00 00780944 4 0 -knifelike%5:00:00:perceptive:00 01744515 2 0 -knifelike%5:00:00:sharp:00 00802300 1 1 -knifelike%5:00:00:sharp:04 00803432 3 0 -knight%1:06:00:: 03624767 2 0 -knight%1:18:00:: 10238375 1 3 -knight%2:41:01:: 02399185 1 0 -knight's_service%1:04:00:: 00580081 1 0 -knight-errant%1:18:00:: 10239217 1 2 -knight_bachelor%1:18:00:: 10238749 1 0 -knight_banneret%1:18:00:: 10238898 1 0 -knight_errantry%1:07:00:: 05153037 1 1 -knight_errantry%1:09:00:: 05668725 2 0 -knight_of_the_round_table%1:18:00:: 10239089 1 0 -knight_of_the_square_flag%1:18:00:: 10238898 1 0 -knight_templar%1:18:00:: 10239329 2 0 -knight_templar%1:18:01:: 10239501 1 0 -knighthood%1:14:00:: 08388871 1 0 -knightia%1:20:00:: 12219495 1 0 -knightliness%1:09:00:: 05955848 1 0 -knightly%5:00:00:courteous:00 00640106 2 0 -knightly%5:00:00:past:00 01729157 1 1 -kniphofia%1:20:00:: 12437513 1 0 -kniphofia_praecox%1:20:00:: 12437930 1 0 -kniphofia_uvaria%1:20:00:: 12437769 1 0 -knish%1:13:00:: 07624757 1 0 -knit%1:06:00:: 03624966 3 0 -knit%1:06:01:: 03625226 2 0 -knit%1:06:02:: 03625355 1 1 -knit%2:35:00:: 01278817 3 0 -knit%2:36:00:: 01671039 1 2 -knit%2:36:01:: 01672014 2 1 -knit_stitch%1:06:00:: 03625226 1 0 -knitted%5:00:00:unwoven:00 02580267 1 0 -knitter%1:18:00:: 10239619 1 0 -knitting%1:04:00:: 00909471 2 0 -knitting%1:06:00:: 03624966 1 0 -knitting_machine%1:06:00:: 03625539 1 0 -knitting_needle%1:06:00:: 03625646 1 0 -knitting_stitch%1:06:00:: 03625783 1 0 -knitwear%1:06:00:: 03625943 1 0 -knitwork%1:06:00:: 03624966 1 0 -knob%1:06:00:: 03626014 2 1 -knob%1:06:01:: 03626115 1 2 -knob%1:06:02:: 03626272 4 0 -knob%1:25:00:: 13895986 3 0 -knob_celery%1:20:00:: 12933616 1 0 -knobbed%5:00:00:crooked:01 02313235 1 0 -knobble%1:06:00:: 03626418 1 0 -knobbly%5:00:00:unshapely:00 02141735 1 0 -knobby%5:00:00:unshapely:00 02141735 1 0 -knobcone_pine%1:20:00:: 11617878 1 0 -knobkerrie%1:06:00:: 03626502 1 0 -knobkerry%1:06:00:: 03626502 1 0 -knock%1:04:00:: 00133338 5 0 -knock%1:09:00:: 05734381 2 1 -knock%1:11:00:: 07410207 3 0 -knock%1:11:01:: 07386370 1 2 -knock%1:11:02:: 07336999 4 0 -knock%2:32:02:: 00826509 6 0 -knock%2:35:00:: 01239619 3 4 -knock%2:35:01:: 01414467 2 6 -knock%2:35:04:: 01238640 1 7 -knock%2:39:00:: 02185373 4 0 -knock%2:39:01:: 02178866 5 0 -knock-down%5:00:00:strong:00 02323072 1 0 -knock-down-and-drag-out%5:00:00:violent:00 02512044 1 0 -knock-knee%1:26:00:: 14559983 1 0 -knock-kneed%5:00:00:unfit:01 01019587 1 0 -knock-on_effect%1:19:00:: 11415608 1 0 -knock_about%2:35:00:: 01417705 1 1 -knock_about%2:42:00:: 02604305 2 0 -knock_against%2:35:00:: 01240308 1 1 -knock_back%2:42:00:: 02702674 1 0 -knock_cold%2:35:00:: 01414088 1 0 -knock_down%2:30:00:: 00336158 3 0 -knock_down%2:35:00:: 01412346 2 1 -knock_down%2:35:01:: 01239862 1 5 -knock_off%2:30:00:: 00363110 5 0 -knock_off%2:35:00:: 01327301 1 3 -knock_off%2:36:00:: 01700655 4 0 -knock_off%2:40:00:: 02322230 3 0 -knock_off%2:40:03:: 02349597 2 1 -knock_on%1:04:00:: 00471277 1 0 -knock_out%2:30:00:: 00180602 3 1 -knock_out%2:30:01:: 00472426 1 4 -knock_out%2:30:02:: 00451153 5 0 -knock_out%2:35:00:: 01414088 2 2 -knock_out%2:37:00:: 01809980 4 0 -knock_over%2:38:00:: 01909978 1 2 -knock_rummy%1:04:00:: 00496877 1 0 -knock_up%2:29:00:: 00053159 1 0 -knockabout%1:06:00:: 03626658 1 0 -knockabout%5:00:00:rugged:00 00707667 2 0 -knockabout%5:00:00:spirited:00 02279360 1 0 -knockdown%1:04:00:: 00133981 1 0 -knockdown%5:00:00:collective:00 00467737 1 0 -knockdown-dragout%5:00:00:violent:00 02512044 1 0 -knocked-out%5:00:00:damaged:00 00680634 1 0 -knocked_out%5:00:00:unconscious:00 00572714 1 0 -knocker%1:06:00:: 03626760 5 0 -knocker%1:08:00:: 05554405 4 0 -knocker%1:18:00:: 10009671 3 0 -knocker%1:18:01:: 10239761 2 0 -knocker%1:18:02:: 10239928 1 0 -knocking%1:11:00:: 07386370 1 1 -knockoff%1:06:00:: 03626925 1 0 -knockout%1:04:00:: 00134099 2 0 -knockout%1:18:00:: 10613996 1 0 -knockout%5:00:00:strong:00 02322512 1 0 -knockout_drops%1:06:00:: 03627021 1 0 -knockout_punch%1:04:00:: 00135637 1 0 -knockwurst%1:13:00:: 07677255 1 0 -knoll%1:17:00:: 09326662 1 1 -knossos%1:15:00:: 08784581 1 0 -knot%1:05:00:: 02028900 7 0 -knot%1:06:00:: 03627232 2 2 -knot%1:07:00:: 04948905 6 0 -knot%1:14:00:: 07960384 1 2 -knot%1:23:00:: 13660337 5 0 -knot%1:25:00:: 13885836 4 0 -knot%1:27:00:: 15102712 3 1 -knot%2:35:00:: 01300144 2 1 -knot%2:35:02:: 01521124 3 0 -knot%2:36:00:: 01673732 1 1 -knotgrass%1:20:01:: 12128490 1 0 -knothole%1:27:00:: 15102894 1 0 -knotted%5:00:00:crooked:01 02313235 2 0 -knotted%5:00:00:tied:00 00254880 1 1 -knotted_marjoram%1:20:00:: 12853482 1 0 -knottiness%1:07:00:: 04766620 1 0 -knotty%5:00:00:complex:00 02176841 3 0 -knotty%5:00:00:crooked:01 02313235 2 0 -knotty%5:00:00:difficult:00 00746451 1 1 -knotty%5:00:00:tangled:00 00255720 4 0 -knotty_pine%1:20:00:: 11609122 1 0 -knout%1:06:00:: 03627819 1 0 -know%1:09:00:: 05805012 1 0 -know%2:31:00:: 00594337 4 76 -know%2:31:01:: 00594621 1 585 -know%2:31:02:: 00595630 3 123 -know%2:31:03:: 00595935 2 142 -know%2:31:04:: 00596644 5 17 -know%2:31:06:: 00592883 6 10 -know%2:31:11:: 00608670 9 0 -know%2:31:12:: 00608502 10 0 -know%2:31:14:: 00608372 11 0 -know%2:31:15:: 00596132 7 1 -know%2:35:00:: 01426397 8 0 -know-all%1:18:00:: 10240235 1 0 -know-how%1:09:00:: 05616786 1 1 -know-it-all%1:18:00:: 10240235 1 0 -know-nothing_party%1:14:00:: 08257971 1 0 -know_apart%2:31:00:: 00650016 1 0 -know_nothing%1:18:00:: 10198958 1 0 -know_the_score%2:31:00:: 00596484 1 1 -know_what's_going_on%2:31:00:: 00596484 1 0 -know_what's_what%2:31:00:: 00596484 1 0 -knowable%3:00:00:: 01374582 1 0 -knower%1:18:00:: 10240082 1 0 -knowing%1:09:00:: 05804793 1 0 -knowing%5:00:00:educated:00 00830051 4 0 -knowing%5:00:00:informed:00 01307690 1 2 -knowing%5:00:00:intended:00 01338116 2 0 -knowing%5:00:02:informed:00 01307850 3 0 -knowingly%4:02:00:: 00237636 1 0 -knowingness%1:09:00:: 05675905 1 0 -knowingness%1:09:01:: 05621946 2 0 -knowledge%1:03:00:: 00023271 1 45 -knowledge_base%1:09:00:: 05999266 1 0 -knowledge_domain%1:09:00:: 05999266 1 0 -knowledgeability%1:07:00:: 04890546 1 0 -knowledgeable%5:00:00:educated:00 00830051 1 1 -knowledgeable%5:00:00:experienced:00 00936038 3 0 -knowledgeable%5:00:00:informed:00 01307850 2 0 -knowledgeableness%1:07:00:: 04890546 1 0 -knowlton's_cactus%1:20:00:: 11850918 1 0 -known%3:00:00:: 01375174 1 35 -knox%1:18:00:: 11108195 1 0 -knoxville%1:15:00:: 09140993 1 0 -knuckle%1:08:00:: 05585205 1 3 -knuckle%2:35:00:: 01605291 1 0 -knuckle%2:35:01:: 01605169 2 0 -knuckle_down%2:41:00:: 02421199 1 0 -knuckle_duster%1:06:00:: 02892948 1 1 -knuckle_joint%1:06:00:: 03627954 2 0 -knuckle_joint%1:08:00:: 05585205 1 0 -knuckle_under%2:32:00:: 00804476 1 2 -knuckleball%1:04:00:: 00108427 1 1 -knucklebones%1:04:00:: 00485262 1 0 -knucklehead%1:18:00:: 10039663 1 0 -knuckler%1:04:00:: 00108427 1 0 -knuckles%1:06:00:: 02892948 1 0 -knucks%1:06:00:: 02892948 1 0 -knut%1:18:00:: 10881382 1 0 -knut_hamsun%1:18:00:: 11027294 1 0 -knut_pedersen%1:18:00:: 11027294 1 0 -ko%1:04:00:: 00134099 1 0 -ko'd%5:00:00:unconscious:00 00572714 1 0 -ko_punch%1:04:00:: 00135637 1 0 -koala%1:05:00:: 01882714 1 0 -koala_bear%1:05:00:: 01882714 1 0 -koan%1:10:00:: 06785840 1 0 -koasati%1:10:00:: 06912638 2 0 -koasati%1:18:00:: 09659447 1 0 -kob%1:05:00:: 02427470 1 0 -kobe%1:15:00:: 08924913 1 0 -kobenhavn%1:15:00:: 08761868 1 0 -kobo%1:23:00:: 13689178 1 0 -kobuk_valley_national_park%1:15:00:: 08606869 1 0 -kobus%1:05:00:: 02427337 1 0 -kobus_kob%1:05:00:: 02427470 1 0 -kobus_leche%1:05:00:: 02427576 1 0 -koch%1:18:00:: 11108400 1 0 -kochia%1:20:00:: 11831730 1 0 -kochia_scoparia%1:20:00:: 11831874 1 0 -kodiak%1:05:00:: 02132788 2 0 -kodiak%1:17:00:: 09326844 1 0 -kodiak_bear%1:05:00:: 02132788 1 0 -kodiak_island%1:17:00:: 09326844 1 0 -koellia%1:20:00:: 12863458 1 0 -koestler%1:18:00:: 11108584 1 0 -kogia%1:05:00:: 02067462 1 0 -kogia_breviceps%1:05:00:: 02067603 1 0 -kogia_simus%1:05:00:: 02067768 1 0 -kohl%1:06:00:: 03628071 1 0 -kohleria%1:20:00:: 12832822 1 0 -kohlrabi%1:13:00:: 07733567 2 0 -kohlrabi%1:20:00:: 11877283 1 0 -koine%1:10:00:: 06977328 1 0 -koine%1:10:01:: 06906116 2 0 -koinonia%1:14:00:: 08228229 1 0 -kok-saghyz%1:20:00:: 12024805 1 0 -kok-sagyz%1:20:00:: 12024805 1 0 -kokka%1:14:00:: 08100481 1 0 -kokka%3:01:00:: 02924932 1 0 -kokka_shinto%1:14:00:: 08100481 1 0 -kokoi_venom%1:27:00:: 15037127 1 0 -kol_nidre%1:10:00:: 06456945 1 0 -kola%1:10:00:: 06984446 2 0 -kola%1:20:00:: 12197359 1 0 -kola_nut%1:20:00:: 12197359 2 0 -kola_nut%1:20:02:: 12197601 1 0 -kola_nut_tree%1:20:00:: 12197359 1 0 -kola_peninsula%1:15:00:: 09010974 1 0 -kolam%1:18:00:: 09674786 1 0 -kolami%1:10:00:: 06981706 1 0 -kolkata%1:15:00:: 08903636 1 0 -kolkhoz%1:14:00:: 08057068 1 0 -kolkhoznik%1:18:00:: 10240417 1 0 -kolkwitzia%1:20:00:: 12672497 1 0 -kolkwitzia_amabilis%1:20:00:: 12672631 1 0 -koln%1:15:00:: 08772307 1 0 -kolonia%1:15:00:: 08837457 1 0 -komi%1:10:00:: 06957042 2 0 -komi%1:18:00:: 09706255 1 0 -komodo_dragon%1:05:00:: 01695060 1 0 -komodo_lizard%1:05:00:: 01695060 1 0 -komondor%1:05:00:: 02105505 1 0 -kon_tiki%1:06:00:: 02783900 1 0 -konakri%1:15:00:: 08947617 1 0 -kong_the_master%1:18:00:: 10906822 1 0 -kongfuze%1:18:00:: 10906822 1 0 -kongo%1:10:00:: 06993719 1 0 -konini%1:20:00:: 12343951 1 0 -konoe%1:18:00:: 11108767 1 0 -konoye%1:18:00:: 11108767 1 0 -konqueror%1:10:00:: 06571639 1 0 -konrad_adenauer%1:18:00:: 10808756 1 0 -konrad_lorenz%1:18:00:: 11138449 1 0 -konrad_von_gesner%1:18:00:: 10997405 1 0 -konrad_zacharias_lorenz%1:18:00:: 11138449 1 0 -konstantin_sergeevich_alekseev%1:18:00:: 11312709 1 0 -konstantin_sergeyevich_stanislavsky%1:18:00:: 11312709 1 0 -konstantin_stanislavsky%1:18:00:: 11312709 1 0 -koodoo%1:05:00:: 02424305 1 0 -kook%1:18:00:: 10240514 1 0 -kookaburra%1:05:00:: 01828556 1 0 -kookie%5:00:00:insane:00 02074929 1 0 -kooky%5:00:00:insane:00 02074929 1 0 -koopmans%1:18:00:: 11109027 1 0 -kopeck%1:23:00:: 13699189 1 0 -kopek%1:23:00:: 13699189 1 0 -kopiyka%1:23:00:: 13703258 1 0 -kopje%1:17:00:: 09327077 1 0 -koplik's_spots%1:26:00:: 14267358 1 0 -koppie%1:17:00:: 09327077 1 0 -kor%1:23:00:: 13617046 1 0 -koran%1:10:00:: 06461609 1 0 -koranic%3:01:00:: 02855055 1 0 -korbut%1:18:00:: 11109192 1 0 -korchnoi%1:18:00:: 11109289 1 0 -korda%1:18:00:: 11109424 1 0 -kordofan%1:15:00:: 09030096 1 0 -kordofanian%1:10:00:: 06991622 1 0 -kore%1:18:00:: 09569467 1 0 -korea%1:15:00:: 08954611 1 4 -korea_bay%1:17:00:: 09327201 1 0 -korea_strait%1:17:00:: 09327361 1 0 -korean%1:10:00:: 06929171 2 0 -korean%1:18:00:: 09718936 1 1 -korean%3:01:00:: 02967791 1 1 -korean_lawn_grass%1:20:00:: 12146654 1 0 -korean_lespedeza%1:20:00:: 12543639 1 0 -korean_peninsula%1:15:00:: 08954611 1 0 -korean_strait%1:17:00:: 09327361 1 0 -korean_velvet_grass%1:20:00:: 12146823 1 0 -korean_war%1:04:00:: 01305551 1 3 -korinthos%1:15:00:: 08786432 1 0 -korsakoff's_psychosis%1:26:00:: 14395597 1 0 -korsakoff's_syndrome%1:26:00:: 14395597 1 0 -korsakov's_psychosis%1:26:00:: 14395597 1 0 -korsakov's_syndrome%1:26:00:: 14395597 1 0 -koruna%1:23:00:: 13681275 2 0 -koruna%1:23:01:: 13681661 1 0 -korzybski%1:18:00:: 11109563 1 0 -kos%1:23:00:: 13652529 1 0 -kosciusko%1:18:00:: 11109728 1 0 -kosciuszko%1:18:00:: 11109728 1 0 -kosher%1:13:00:: 07560542 1 0 -kosher%5:00:00:clean:04 00427644 1 1 -kosher%5:00:00:proper:00 01880071 2 0 -kosovo%1:15:00:: 08816807 1 0 -kosteletzya%1:20:00:: 12181851 1 0 -kosteletzya_virginica%1:20:00:: 12182276 1 0 -kota%1:10:00:: 06979645 2 0 -kota%1:18:00:: 09674908 1 0 -kotar%1:10:00:: 06979645 2 0 -kotar%1:18:00:: 09674908 1 0 -kotex%1:06:00:: 04135315 1 0 -koto%1:06:00:: 03628215 1 0 -koto_player%1:18:00:: 10240715 1 0 -kotoko%1:10:00:: 06984650 1 0 -kotow%1:10:00:: 07275275 1 0 -kotow%2:32:00:: 00880978 1 0 -koudou%1:05:00:: 02424305 1 0 -koumiss%1:13:00:: 07925808 1 0 -koussevitzky%1:18:00:: 11109970 1 0 -kovna%1:15:00:: 09014470 1 0 -kovno%1:15:00:: 09014470 1 0 -koweit%1:15:00:: 08929243 2 0 -koweit%1:15:01:: 08929555 1 0 -kowhai%1:20:00:: 12570972 1 0 -kowtow%1:10:00:: 07275275 1 0 -kowtow%2:32:00:: 00880978 2 0 -kowtow%2:38:00:: 02040709 1 0 -kp%1:18:00:: 10237556 1 0 -kph%1:28:00:: 15279767 1 0 -kr%1:14:00:: 08028999 2 0 -kr%1:27:00:: 14642916 1 0 -kraal%1:06:00:: 03628421 2 0 -kraal%1:15:00:: 08673131 1 0 -krafft-ebing%1:18:00:: 11110205 1 0 -kraft%1:27:00:: 14878980 1 0 -kraft_paper%1:27:00:: 14878980 1 0 -krait%1:05:00:: 01751036 1 0 -krakatao%1:15:00:: 09175915 1 0 -krakatau%1:15:00:: 09175915 1 0 -krakatoa%1:15:00:: 09175915 1 0 -krakau%1:15:00:: 08983413 1 0 -krakow%1:15:00:: 08983413 1 0 -krasner%1:18:00:: 11110396 1 0 -kraurosis%1:26:00:: 14571377 1 0 -kraurosis_vulvae%1:26:00:: 14571504 1 0 -kraut%1:18:00:: 09748239 1 0 -krauthead%1:18:00:: 09748239 1 1 -krebs%1:18:00:: 11110617 1 0 -krebs_citric_acid_cycle%1:22:00:: 13505467 1 0 -krebs_cycle%1:22:00:: 13505467 1 0 -kreisler%1:18:00:: 11110791 1 0 -kremlin%1:06:00:: 03628511 2 0 -kremlin%1:06:01:: 03628590 1 0 -krigia%1:20:00:: 11985739 1 0 -krigia_bulbosa%1:20:00:: 11985903 1 0 -krigia_dandelion%1:20:00:: 11985903 1 0 -krill%1:05:00:: 01988701 1 0 -kris%1:06:00:: 03628728 1 0 -krishna%1:18:00:: 09530721 1 0 -krishnaism%1:09:00:: 06238831 1 0 -kriss_kringle%1:18:00:: 10550673 1 0 -kriti%1:15:00:: 08784333 1 0 -kroeber%1:18:00:: 11110917 1 0 -krona%1:23:01:: 13681993 2 0 -krona%1:23:02:: 13682330 1 0 -krone%1:23:01:: 13682740 2 0 -krone%1:23:02:: 13682971 1 0 -kronecker%1:18:00:: 11111085 1 0 -kronecker_delta%1:24:00:: 13784763 1 0 -kroon%1:23:00:: 13700362 1 0 -kropotkin%1:18:00:: 11111194 1 0 -kroto%1:18:00:: 11111335 1 0 -krubi%1:20:00:: 11783488 1 0 -kruger%1:18:00:: 11111577 1 0 -krummhorn%1:06:00:: 03628831 1 0 -krung_thep%1:15:00:: 09036880 1 0 -krupp%1:18:00:: 11111710 2 0 -krupp%1:18:01:: 11111845 1 0 -krypterophaneron%1:05:00:: 01452051 1 0 -krypton%1:27:00:: 14642916 1 0 -krzysztof_kieslowski%1:18:00:: 11104896 1 0 -ks%1:15:00:: 09087599 1 0 -kshatriya%1:18:00:: 10240821 1 0 -kt%1:23:00:: 13585127 1 0 -ku-chiku%1:20:00:: 12149521 1 0 -ku_klux_klan%1:14:00:: 08029421 1 1 -ku_kluxer%1:18:00:: 10237676 1 0 -kuala_lumpur%1:15:00:: 08963813 1 0 -kuan_yin%1:18:00:: 09534187 1 0 -kuangchou%1:15:00:: 08725454 1 0 -kubla_khan%1:18:00:: 11112058 1 0 -kublai_kaan%1:18:00:: 11112058 1 0 -kublai_khan%1:18:00:: 11112058 1 0 -kubrick%1:18:00:: 11112377 1 0 -kuchean%1:10:00:: 06969018 1 0 -kuchean_dialect%1:10:01:: 06969018 1 0 -kudos%1:10:00:: 06693198 1 0 -kudu%1:05:00:: 02424305 1 0 -kudu_lily%1:20:00:: 11769176 1 0 -kudzu%1:20:00:: 12566954 1 0 -kudzu_vine%1:20:00:: 12566954 1 0 -kuenlun%1:17:00:: 09327881 1 0 -kuenlun_mountains%1:17:00:: 09327881 1 0 -kuhn%1:18:00:: 11112488 1 0 -kui%1:10:00:: 06981289 2 0 -kui%1:18:00:: 09675045 1 0 -kuiper%1:18:00:: 11112628 1 0 -kuiper_belt%1:17:00:: 09327538 1 0 -kuiper_belt_object%1:17:00:: 09327705 1 0 -kukenaam%1:17:00:: 09262082 1 0 -kukenaam_falls%1:17:00:: 09262082 1 0 -kuki%1:10:00:: 06933279 1 0 -kuki-chin%1:10:00:: 06933279 1 0 -kulanapan%1:10:00:: 06921186 1 0 -kulun%1:15:00:: 08969123 1 0 -kumasi%1:15:00:: 08946715 1 0 -kumis%1:13:00:: 07925808 1 0 -kummel%1:13:00:: 07910245 1 0 -kumquat%1:13:00:: 07749446 2 0 -kumquat%1:20:00:: 12713063 1 0 -kumquat_tree%1:20:00:: 12713063 1 0 -kund_johan_victor_rasmussen%1:18:00:: 11254393 1 0 -kundt's_tube%1:06:00:: 03628984 1 0 -kung_fu%1:04:00:: 00826606 1 0 -kunlan_shan%1:17:00:: 09327881 1 0 -kunlun%1:17:00:: 09327881 1 0 -kunlun_mountains%1:17:00:: 09327881 1 0 -kunzite%1:27:00:: 14928180 1 0 -kuomintang%1:14:00:: 08260691 1 0 -kupffer's_cell%1:08:00:: 05242752 1 0 -kura%1:17:00:: 09328148 1 0 -kura_river%1:17:00:: 09328148 1 0 -kurakkan%1:20:00:: 12118661 1 0 -kurchee%1:20:00:: 11772879 1 0 -kurchi%1:20:00:: 11772879 1 0 -kurd%1:18:00:: 09719430 1 0 -kurdish%1:10:00:: 06974558 1 0 -kurdish%3:01:00:: 03078832 1 0 -kurdistan%1:06:00:: 03629100 2 0 -kurdistan%1:15:00:: 09038990 1 0 -kurdistan_labor_pary%1:14:00:: 08029908 1 0 -kurdistan_workers_party%1:14:00:: 08029908 1 0 -kuri-chiku%1:20:00:: 12149350 1 0 -kurosawa%1:18:00:: 11112907 1 0 -kuroshio%1:19:00:: 11489686 1 0 -kuroshio_current%1:19:00:: 11489686 1 0 -kurrajong%1:20:00:: 12196694 1 0 -kurrat%1:20:00:: 12432356 1 0 -kursk%1:15:00:: 09005611 1 0 -kurt_godel%1:18:00:: 11003068 1 0 -kurt_vonnegut%1:18:00:: 11368841 1 0 -kurt_waldheim%1:18:00:: 11370654 1 0 -kurt_weill%1:18:00:: 11379908 1 0 -kurta%1:06:00:: 03629231 1 0 -kuru%1:26:00:: 14109101 1 0 -kurus%1:23:00:: 13687278 1 0 -kurux%1:10:00:: 06982391 1 0 -kusan%1:10:00:: 06925214 2 0 -kusan%1:18:00:: 09659605 1 0 -kussmaul's_coma%1:09:00:: 05680423 1 0 -kutch%1:20:00:: 12951331 1 0 -kutuzov%1:18:00:: 11113077 1 0 -kuvasz%1:05:00:: 02104029 1 0 -kuvi%1:10:00:: 06981401 1 0 -kuwait%1:15:00:: 08929243 2 0 -kuwait%1:15:01:: 08929555 1 0 -kuwait_city%1:15:00:: 08929555 1 0 -kuwaiti%1:18:00:: 09719653 1 0 -kuwaiti%3:01:00:: 03078975 2 0 -kuwaiti%3:01:01:: 03079151 1 0 -kuwaiti_dinar%1:23:00:: 13669860 1 0 -kuwaiti_dirham%1:23:00:: 13669998 1 0 -kuwaiti_monetary_unit%1:23:00:: 13669733 1 0 -kuznets%1:18:00:: 11113266 1 0 -kv%1:23:00:: 13643770 1 0 -kvass%1:13:00:: 07890617 1 0 -kvetch%1:10:00:: 07211503 2 0 -kvetch%1:18:00:: 10240921 1 0 -kvetch%2:32:00:: 00907147 1 0 -kw%1:23:00:: 13644761 1 0 -kw-hr%1:23:00:: 13727478 1 0 -kwa%1:10:00:: 06997168 1 0 -kwacha%1:23:01:: 13683221 2 0 -kwacha%1:23:02:: 13683578 1 0 -kwai%1:23:00:: 13709992 1 0 -kwajalein%1:04:00:: 01282966 2 0 -kwajalein%1:15:00:: 08839714 1 0 -kwakiutl%1:10:00:: 06914612 2 0 -kwakiutl%1:18:00:: 09659711 1 0 -kwan-yin%1:18:00:: 09534187 1 0 -kwangchow%1:15:00:: 08725454 1 0 -kwangju%1:15:00:: 08956305 1 0 -kwangtung%1:15:00:: 08725336 1 0 -kwannon%1:18:00:: 09535409 1 0 -kwanza%1:04:00:: 00518152 2 0 -kwanza%1:23:00:: 13683932 1 0 -kwanzaa%1:04:00:: 00518152 1 0 -kwashiorkor%1:26:00:: 14199934 1 0 -kwazulu-natal%1:15:00:: 08971693 1 0 -kweek%1:20:00:: 12115748 1 0 -kwela%1:10:00:: 07061180 1 0 -kwell%1:27:00:: 14928332 1 0 -ky%1:15:00:: 09089139 1 0 -kyanite%1:27:00:: 14679584 1 0 -kyat%1:23:00:: 13684298 1 0 -kyd%1:18:00:: 11113489 1 0 -kylie%1:06:00:: 03629401 1 0 -kylix%1:06:00:: 03629520 1 0 -kymograph%1:06:00:: 03629643 1 0 -kyo-chiku%1:20:00:: 12148757 1 0 -kyoto%1:15:00:: 08925093 1 0 -kyphosidae%1:05:00:: 02604014 1 0 -kyphosis%1:26:00:: 14505069 1 0 -kyphosus%1:05:00:: 02604342 1 0 -kyphosus_sectatrix%1:05:00:: 02604480 1 0 -kyphotic%5:00:00:unfit:01 01019000 1 0 -kyrgyz_republic%1:15:00:: 09020440 1 0 -kyrgyzstan%1:15:00:: 09020440 1 0 -kyrgyzstani%3:01:00:: 02963272 1 0 -kyrgyzstani_monetary_unit%1:23:00:: 13701793 1 0 -kyushu%1:15:00:: 08921392 1 0 -kyyiv%1:15:00:: 09015907 1 0 -kyzyl_kum%1:15:00:: 09170633 1 0 -l%1:10:00:: 06832356 4 0 -l%1:23:00:: 13624190 1 19 -l%1:23:06:: 13749644 2 0 -l%1:23:07:: 13640520 3 0 -l%5:00:00:cardinal:00 02191232 1 1 -l'aquila%1:15:00:: 08804319 1 0 -l'enfant%1:18:00:: 11126295 1 0 -l-dopa%1:27:00:: 14605132 1 0 -l-p%1:06:00:: 03694639 1 0 -l-plate%1:06:00:: 03694761 1 0 -l-shaped%5:00:00:formed:00 02148361 1 0 -l._m._montgomery%1:18:00:: 11188613 1 0 -l._monocytogenes%1:05:00:: 01367208 1 0 -l._ron_hubbard%1:18:00:: 11063535 1 0 -l._s._lowry%1:18:00:: 11143044 1 0 -la%1:10:00:: 06868986 3 0 -la%1:15:00:: 09090825 2 0 -la%1:27:00:: 14643118 1 0 -la-di-da%5:00:00:pretentious:00 01850288 1 0 -la_crosse%1:15:00:: 09157896 1 0 -la_fayette%1:18:00:: 11114056 1 0 -la_fontaine%1:18:00:: 11114637 1 0 -la_paz%1:15:00:: 08853308 1 0 -la_plata%1:17:00:: 09410558 1 0 -la_rochefoucauld%1:18:00:: 11117931 1 0 -la_spezia%1:15:00:: 08808979 1 0 -la_tour%1:18:00:: 11118481 1 0 -laager%1:06:00:: 03629857 1 0 -lab%1:06:00:: 03629986 1 2 -lab_bench%1:06:00:: 03630262 1 0 -lab_coat%1:06:00:: 03630383 1 0 -laban%1:18:00:: 11113601 1 0 -labanotation%1:10:00:: 06816555 1 0 -labdanum%1:20:00:: 12375107 2 0 -labdanum%1:27:00:: 14928518 1 0 -label%1:10:00:: 07272172 4 1 -label%1:10:01:: 07202579 1 3 -label%1:10:02:: 06851516 2 2 -label%1:27:00:: 14620066 3 1 -label%2:31:00:: 00650932 5 0 -label%2:31:01:: 00651480 4 1 -label%2:32:00:: 01029852 1 8 -label%2:32:01:: 00971650 3 3 -label%2:35:00:: 01588493 2 3 -labeled%3:00:00:: 01379705 1 2 -labelled%3:00:00:: 01379705 1 0 -labetalol%1:06:00:: 03630544 1 0 -labetalol_hydrochloride%1:06:00:: 03630544 1 0 -labia_majora%1:08:00:: 05522674 1 0 -labia_minora%1:08:00:: 05522998 1 0 -labial%1:10:00:: 07117007 1 0 -labial%3:01:00:: 02754327 2 0 -labial%3:01:01:: 02754417 1 0 -labial_artery%1:08:00:: 05348884 1 0 -labial_consonant%1:10:00:: 07117007 1 0 -labial_pipe%1:06:00:: 03369011 1 0 -labial_stop%1:10:00:: 07117472 1 0 -labial_vein%1:08:00:: 05371663 2 0 -labial_vein%1:08:01:: 05372125 1 0 -labialise%2:32:00:: 00980339 1 0 -labialize%2:32:00:: 00980339 1 0 -labiatae%1:20:00:: 12838027 1 0 -labiate%5:00:00:lipped:00 01704420 1 0 -labile%5:00:00:reactive:00 01929062 1 0 -labile%5:00:00:unbalanced:00 00894879 2 0 -labiodental%1:10:00:: 07117193 1 0 -labiodental_consonant%1:10:00:: 07117193 1 0 -labium%1:08:00:: 05522456 1 0 -lablab%1:20:00:: 12537437 1 0 -lablab_purpureus%1:20:00:: 12537569 1 0 -lablink%1:14:00:: 08132323 1 0 -labor%1:04:00:: 00620752 2 20 -labor%1:04:01:: 00795720 7 0 -labor%1:14:00:: 08180639 1 20 -labor%1:14:01:: 08137495 6 0 -labor%1:14:02:: 08261320 5 0 -labor%1:14:04:: 08472890 4 0 -labor%1:26:00:: 14048441 3 0 -labor%2:29:00:: 00057506 3 0 -labor%2:41:00:: 02419773 2 1 -labor%2:41:01:: 02406916 1 5 -labor-intensive%5:00:00:effortful:00 00837574 1 0 -labor_agreement%1:10:00:: 06526961 1 0 -labor_camp%1:06:00:: 03630849 1 0 -labor_coach%1:18:00:: 10241024 1 0 -labor_contract%1:10:00:: 06526961 1 0 -labor_day%1:28:00:: 15190520 1 0 -labor_department%1:14:00:: 08137495 1 0 -labor_force%1:14:00:: 08180944 1 0 -labor_leader%1:18:00:: 10242032 1 0 -labor_market%1:04:00:: 01098404 1 1 -labor_movement%1:14:00:: 08472890 1 1 -labor_of_love%1:04:00:: 00797207 1 0 -labor_organizer%1:18:00:: 10383505 1 0 -labor_pain%1:26:00:: 14328588 1 0 -labor_pains%1:26:00:: 14330833 1 0 -labor_party%1:14:00:: 08260961 1 0 -labor_pool%1:14:00:: 08180944 1 0 -labor_resources%1:21:00:: 13332197 1 0 -labor_secretary%1:04:00:: 00601822 2 0 -labor_secretary%1:18:00:: 10572469 1 0 -labor_union%1:14:00:: 08233056 1 3 -laboratory%1:06:00:: 03629986 1 19 -laboratory%1:15:00:: 08662570 2 0 -laboratory_bench%1:06:00:: 03630262 1 0 -laboratory_coat%1:06:00:: 03630383 1 0 -labored%5:00:00:awkward:00 01141468 1 0 -labored%5:00:00:effortful:00 00837415 2 0 -laborer%1:18:00:: 10241300 1 5 -laboring%5:00:00:busy:00 00293376 1 0 -laborious%5:00:00:effortful:00 00836544 1 0 -laboriously%4:02:00:: 00385333 1 0 -laboriousness%1:07:00:: 04709944 1 0 -laborsaving%5:00:00:helpful:00 01197024 1 1 -labour%1:04:00:: 00620752 4 0 -labour%1:14:00:: 08180639 1 1 -labour%1:14:02:: 08261320 3 0 -labour%1:26:00:: 14048441 2 0 -labour%2:29:00:: 00057506 3 0 -labour%2:41:00:: 02419773 1 0 -labour%2:41:01:: 02406916 2 0 -labour-intensive%5:00:00:effortful:00 00837574 1 0 -labour_camp%1:06:00:: 03630849 1 0 -labour_of_love%1:04:00:: 00797207 1 0 -labour_pains%1:26:00:: 14330833 1 0 -labour_party%1:14:00:: 08260961 2 0 -labour_party%1:14:01:: 08261320 1 0 -laboured%5:00:00:awkward:00 01141468 1 0 -laboured%5:00:00:effortful:00 00837415 2 0 -labourer%1:18:00:: 10241300 1 0 -labouring%5:00:00:busy:00 00293376 1 0 -labourite%1:18:00:: 10242328 1 0 -laboursaving%5:00:00:helpful:00 01197024 1 0 -labrador%1:15:00:: 08819883 1 1 -labrador-ungava_peninsula%1:17:00:: 09328311 1 0 -labrador_peninsula%1:17:00:: 09328311 1 0 -labrador_retriever%1:05:00:: 02099712 1 0 -labrador_sea%1:17:00:: 09328596 1 0 -labrador_tea%1:20:01:: 12238491 1 0 -labridae%1:05:00:: 02607630 1 0 -labrocyte%1:08:00:: 05607602 1 0 -labrouste%1:18:00:: 11113732 1 0 -laburnum%1:20:00:: 12537988 1 0 -laburnum_alpinum%1:20:00:: 12538209 1 0 -laburnum_anagyroides%1:20:00:: 12538380 1 0 -labyrinth%1:06:00:: 03733281 1 1 -labyrinth%1:08:00:: 05321307 2 0 -labyrinth_of_minos%1:06:00:: 03630992 1 0 -labyrinthian%5:00:00:complex:00 02178628 1 0 -labyrinthine%3:01:00:: 02947928 1 0 -labyrinthine%5:00:00:complex:00 02178628 2 0 -labyrinthine_artery%1:08:00:: 05349445 1 0 -labyrinthine_sense%1:09:00:: 05659365 1 0 -labyrinthine_vein%1:08:00:: 05372290 1 0 -labyrinthitis%1:26:00:: 14348757 1 0 -labyrinthodont%1:05:00:: 01655951 1 0 -labyrinthodonta%1:05:00:: 01655577 1 0 -labyrinthodontia%1:05:00:: 01655577 1 0 -lac%1:27:00:: 14701143 1 0 -lac_dye%1:27:00:: 14989106 1 0 -lac_wax%1:27:00:: 15095639 1 0 -laccopetalum%1:20:00:: 11736216 1 0 -laccopetalum_giganteum%1:20:00:: 11736362 1 0 -lace%1:06:00:: 03631177 2 0 -lace%1:06:01:: 03631445 1 0 -lace%2:30:00:: 00222135 5 0 -lace%2:35:00:: 01521603 4 0 -lace%2:35:01:: 01517662 1 1 -lace%2:36:00:: 01674375 3 0 -lace%2:36:01:: 01674717 2 0 -lace-flower_vine%1:20:00:: 12831141 1 0 -lace_bug%1:05:00:: 02238594 1 0 -lace_fern%1:20:00:: 13209129 1 0 -lace_into%2:35:00:: 01242537 1 0 -lace_making%1:04:00:: 00909672 1 0 -lace_up%2:35:00:: 01521603 1 0 -lacebark%1:20:00:: 12180885 1 0 -laced%3:00:00:: 00254516 1 1 -laced%5:00:00:patterned:00 01788994 2 0 -lacelike%5:00:00:fancy:00 01796600 1 0 -lacepod%1:20:00:: 11899223 1 0 -lacer%1:18:00:: 10242439 1 0 -lacerate%2:35:00:: 01559340 1 2 -lacerate%2:37:00:: 01793587 2 0 -lacerate%5:00:00:injured:00 01318937 2 0 -lacerate%5:00:00:rough:02 02247295 1 0 -lacerated%5:00:00:injured:00 01318937 2 0 -lacerated%5:00:00:rough:02 02247295 1 0 -laceration%1:04:00:: 00391293 2 0 -laceration%1:26:00:: 14287314 1 0 -lacerta%1:05:00:: 01693020 1 0 -lacerta_agilis%1:05:00:: 01693175 1 0 -lacerta_viridis%1:05:00:: 01693334 1 0 -lacertid%1:05:00:: 01692864 1 0 -lacertid_lizard%1:05:00:: 01692864 1 0 -lacertidae%1:05:00:: 01692713 1 0 -lacertilia%1:05:00:: 01673668 1 0 -lacertilian%3:01:00:: 02853740 1 0 -lacewing%1:05:00:: 02264363 1 0 -lacewing_fly%1:05:00:: 02264363 1 0 -lacewood%1:20:00:: 12807082 1 0 -lacework%1:06:00:: 03631710 1 0 -lachaise%1:18:00:: 11113898 1 0 -lachesis%1:18:00:: 09565639 1 0 -lachnolaimus%1:05:00:: 02608429 1 0 -lachnolaimus_maximus%1:05:00:: 02608547 1 0 -lachrymal%3:01:00:: 02879044 1 0 -lachrymal%3:01:01:: 02878902 2 0 -lachrymal_duct%1:08:00:: 05331812 1 0 -lachrymal_gland%1:08:00:: 05331653 1 0 -lachrymal_secretion%1:08:00:: 05405139 1 0 -lachrymation%1:22:00:: 13505843 1 0 -lachrymator%1:27:00:: 15067877 1 0 -lachrymatory%3:01:00:: 02879152 1 0 -lachrymose%5:00:00:sorrowful:00 01365239 1 0 -lacing%1:04:00:: 01160729 3 0 -lacing%1:06:00:: 03631445 2 0 -lacing%1:13:00:: 07926127 1 0 -laciniate%5:00:00:rough:02 02247166 1 0 -lack%1:26:00:: 14449405 1 42 -lack%2:42:00:: 02632353 1 31 -lackadaisical%5:00:00:idle:00 00295011 2 0 -lackadaisical%5:00:00:lethargic:00 00876204 1 0 -lackadaisically%4:02:00:: 00385541 1 0 -lackey%1:18:00:: 10242573 1 1 -lackey%1:18:01:: 10684827 2 0 -lacking%5:00:00:inadequate:00 00052012 1 4 -lacking%5:00:00:nonexistent:00 00927832 2 0 -lackluster%5:00:00:dull:02 00284194 2 0 -lackluster%5:00:00:dull:03 00808011 1 0 -lacklustre%5:00:00:dull:02 00284194 2 0 -lacklustre%5:00:00:dull:03 00808011 1 0 -laconia%1:15:00:: 08787695 1 0 -laconian%1:18:00:: 09711435 1 0 -laconic%5:00:00:concise:00 00547641 1 0 -laconically%4:02:00:: 00231457 1 0 -laconicism%1:10:00:: 07089531 1 0 -laconism%1:10:00:: 07089531 1 0 -lacquer%1:06:00:: 03631811 2 0 -lacquer%1:27:00:: 14928729 1 0 -lacquer%2:36:00:: 01682761 1 0 -lacquer_tree%1:20:00:: 12767648 1 0 -lacquerware%1:06:00:: 03631922 1 0 -lacrimal%3:01:00:: 02879044 1 0 -lacrimal%3:01:01:: 02878902 2 0 -lacrimal_apparatus%1:08:00:: 05405554 1 0 -lacrimal_artery%1:08:00:: 05349659 1 0 -lacrimal_bone%1:08:00:: 05332225 1 0 -lacrimal_duct%1:08:00:: 05331812 1 0 -lacrimal_gland%1:08:00:: 05331653 1 0 -lacrimal_sac%1:08:00:: 05331988 1 0 -lacrimal_secretion%1:08:00:: 05405139 1 0 -lacrimal_vein%1:08:00:: 05372428 1 0 -lacrimation%1:22:00:: 13505843 1 0 -lacrimator%1:27:00:: 15067877 1 0 -lacrimatory%3:01:00:: 02879152 1 0 -lacrosse%1:04:00:: 00477392 1 0 -lacrosse_ball%1:06:00:: 03632100 1 0 -lacrosse_player%1:18:00:: 10242682 1 0 -lactaid%1:27:00:: 14928885 1 0 -lactalbumin%1:27:00:: 14731716 1 0 -lactarius%1:20:00:: 13006377 1 0 -lactarius_delicioso%1:20:00:: 13006631 1 0 -lactase%1:27:00:: 14928885 1 0 -lactase_deficiency%1:26:00:: 14506656 1 0 -lactate%1:27:00:: 14679780 1 0 -lactate%2:34:00:: 01186428 1 0 -lactating%3:00:00:: 02554267 1 2 -lactation%1:04:00:: 00842997 3 0 -lactation%1:22:00:: 13505987 2 0 -lactation%1:28:00:: 15142836 1 0 -lacteal%1:08:00:: 05397032 1 0 -lacteal%3:01:00:: 02848948 1 0 -lactic%3:01:00:: 02848787 1 0 -lactic_acid%1:27:00:: 14929062 1 0 -lactiferous_duct%1:08:00:: 05554051 1 0 -lactifuge%1:27:00:: 14929209 1 0 -lactobacillaceae%1:05:00:: 01379636 1 0 -lactobacillus%1:05:00:: 01380118 1 0 -lactobacillus_acidophilus%1:05:00:: 01380298 1 0 -lactobacteriaceae%1:05:00:: 01379636 1 0 -lactoflavin%1:27:00:: 15091473 1 0 -lactogen%1:27:00:: 14929350 1 0 -lactogenic%3:01:00:: 02754543 1 0 -lactogenic_hormone%1:27:00:: 14749543 1 0 -lactophrys%1:05:00:: 02654609 1 0 -lactophrys_quadricornis%1:05:00:: 02654745 1 0 -lactose%1:27:00:: 14929462 1 0 -lactose_intolerance%1:26:00:: 14506656 1 0 -lactosuria%1:26:00:: 14506920 1 0 -lactuca%1:20:00:: 11986091 1 0 -lactuca_sativa%1:20:00:: 11986511 1 0 -lactuca_sativa_asparagina%1:20:00:: 11987349 1 0 -lactuca_sativa_capitata%1:20:00:: 11986900 1 0 -lactuca_sativa_crispa%1:20:00:: 11987126 1 0 -lactuca_sativa_longifolia%1:20:00:: 11986729 1 0 -lactuca_scariola%1:20:00:: 11987511 1 0 -lactuca_serriola%1:20:00:: 11987511 1 0 -lacuna%1:06:00:: 03632189 1 0 -lacuna%1:06:01:: 03064443 2 0 -lacustrine%3:01:00:: 02994217 1 0 -lacy%5:00:00:fancy:00 01796600 1 3 -lacy%5:00:00:reticulate:00 02007067 2 0 -lad%1:18:00:: 09871229 2 1 -lad%1:18:01:: 09908025 1 4 -lad's_love%1:20:00:: 11929477 1 0 -ladanum%1:20:00:: 12375107 1 0 -ladder%1:06:00:: 03632277 1 5 -ladder%1:11:00:: 07443010 3 0 -ladder%1:26:00:: 13940311 2 0 -ladder%2:30:00:: 00334803 1 0 -ladder-back%1:06:00:: 03632577 2 0 -ladder-back%1:06:01:: 03632729 1 0 -ladder-back_chair%1:06:00:: 03632729 1 0 -ladder-proof%5:00:00:impervious:00 01775280 1 0 -ladder_truck%1:06:00:: 03632852 1 0 -laddie%1:18:00:: 09871229 1 0 -lade%2:35:01:: 01489989 2 0 -lade%2:35:02:: 01578821 1 0 -laden%2:35:00:: 01578821 1 0 -laden%2:35:01:: 01489989 2 0 -laden%5:00:00:burdened:00 00869972 2 0 -laden%5:00:00:full:00 01085661 1 3 -ladened%5:00:00:full:00 01085661 1 1 -ladies'-eardrop%1:20:00:: 12343753 1 0 -ladies'-eardrops%1:20:00:: 12343753 1 0 -ladies'_man%1:18:00:: 10575089 1 0 -ladies'_room%1:06:00:: 03632963 1 0 -ladies'_slipper%1:20:00:: 12056217 1 0 -ladies'_tobacco%1:20:00:: 11922192 1 0 -ladies'_tresses%1:20:00:: 12083591 1 0 -ladin%1:10:00:: 06968052 1 0 -lading%1:06:00:: 02964389 1 0 -ladino%1:10:00:: 06967282 2 0 -ladino%1:18:00:: 10311823 1 0 -ladle%1:06:00:: 03633091 1 0 -ladle%2:35:00:: 01578821 2 0 -ladle%2:35:01:: 01578993 1 0 -ladoga%1:17:00:: 09331819 1 0 -ladrone_islands%1:15:00:: 08837552 1 0 -lady%1:18:00:: 10242791 3 0 -lady%1:18:01:: 09989290 2 3 -lady%1:18:02:: 10243137 1 27 -lady's-eardrop%1:20:00:: 12343753 1 0 -lady's-eardrops%1:20:00:: 12343753 1 0 -lady's-finger%1:20:00:: 12171966 1 0 -lady's_earrings%1:20:00:: 12684379 1 0 -lady's_laces%1:20:00:: 12129738 1 0 -lady's_leek%1:20:00:: 12433769 1 0 -lady's_maid%1:18:00:: 10243483 1 0 -lady's_slipper%1:20:00:: 12056217 1 0 -lady's_smock%1:20:00:: 11882074 1 0 -lady's_thistle%1:20:00:: 12015525 1 0 -lady's_tobacco%1:20:00:: 11922192 1 0 -lady's_tresses%1:20:00:: 12083591 1 0 -lady-in-waiting%1:18:00:: 10243273 1 0 -lady-of-the-night%1:20:00:: 12899166 1 0 -lady-slipper%1:20:00:: 12056217 1 0 -lady_beetle%1:05:00:: 02165456 1 0 -lady_chapel%1:06:00:: 03633341 1 0 -lady_crab%1:05:00:: 01979526 1 0 -lady_day%1:28:00:: 15186147 1 0 -lady_diana_frances_spencer%1:18:00:: 10933658 1 0 -lady_emma_hamilton%1:18:00:: 11026078 1 0 -lady_fern%1:20:00:: 13194572 1 0 -lady_friend%1:18:00:: 10130686 1 0 -lady_godiva%1:18:00:: 11003276 1 0 -lady_jane_grey%1:18:00:: 11015872 1 0 -lady_killer%1:18:00:: 10575089 1 0 -lady_of_pleasure%1:18:00:: 10485440 1 0 -lady_of_the_house%1:18:00:: 10189776 1 0 -lady_palm%1:20:00:: 12595964 1 0 -lady_peel%1:18:00:: 11132117 1 0 -lady_tulip%1:20:00:: 12454556 1 0 -lady_with_the_lamp%1:18:00:: 11207410 1 0 -ladybeetle%1:05:00:: 02165456 1 0 -ladybird%1:05:00:: 02165456 1 0 -ladybird_beetle%1:05:00:: 02165456 1 0 -ladybug%1:05:00:: 02165456 1 0 -ladyfinger%1:13:00:: 07636957 1 0 -ladyfish%1:05:00:: 02542017 1 0 -ladylike%5:00:00:refined:01 01948721 1 1 -ladylikeness%1:07:00:: 04667821 1 0 -ladylove%1:18:00:: 10243384 1 0 -ladyship%1:10:00:: 06342977 1 0 -laelia%1:20:00:: 12070016 1 0 -laertes%1:18:00:: 09592734 1 0 -laetrile%1:27:00:: 14887633 1 0 -laevulose%1:27:00:: 14874932 1 0 -lafayette%1:15:00:: 09091538 2 0 -lafayette%1:15:01:: 09085830 3 0 -lafayette%1:18:00:: 11114056 1 0 -laffer%1:18:00:: 11114285 1 0 -laffer_curve%1:10:00:: 07004738 1 0 -laffite%1:18:00:: 11114423 1 0 -lafitte%1:18:00:: 11114423 1 0 -lafora's_disease%1:26:00:: 14087938 1 0 -lag%1:04:00:: 01067577 1 1 -lag%1:06:00:: 04307269 3 0 -lag%1:28:00:: 15272887 2 0 -lag%2:35:00:: 01513045 3 0 -lag%2:35:01:: 01339050 4 0 -lag%2:38:00:: 01997862 1 7 -lag%2:41:00:: 02494356 2 0 -lag_b'omer%1:28:00:: 15199406 1 0 -lag_bolt%1:06:00:: 03633886 1 0 -lag_screw%1:06:00:: 03633886 1 0 -lagan%1:06:00:: 03633474 1 0 -lagarostrobus%1:20:00:: 11655764 1 0 -lagarostrobus_colensoi%1:20:00:: 11655974 1 0 -lagarostrobus_franklinii%1:20:00:: 11656123 1 0 -lagenaria%1:20:00:: 12166003 1 0 -lagenaria_siceraria%1:20:00:: 12166128 1 0 -lagend%1:06:00:: 03633474 1 0 -lagenophera%1:20:00:: 11987722 1 0 -lager%1:06:00:: 03629857 1 1 -lager%1:13:00:: 07887634 2 0 -lager_beer%1:13:00:: 07887634 1 0 -lagerphone%1:06:00:: 03633632 1 0 -lagerstroemia%1:20:00:: 12329020 1 0 -lagerstroemia_indica%1:20:00:: 12329260 1 0 -lagerstroemia_speciosa%1:20:00:: 12329473 1 0 -laggard%1:18:00:: 09993252 1 1 -laggard%5:00:00:slow:01 00981067 1 0 -lagger%1:18:00:: 09993252 1 0 -lagging%1:27:00:: 14786943 1 0 -lagidium%1:05:00:: 02367678 1 0 -lagniappe%1:21:00:: 13271797 1 0 -lagodon%1:05:00:: 02592244 1 0 -lagodon_rhomboides%1:05:00:: 02592371 1 0 -lagomorph%1:05:00:: 02323449 1 0 -lagomorpha%1:05:00:: 02323186 1 0 -lagoon%1:17:00:: 09328746 1 12 -lagophthalmos%1:26:00:: 14199146 1 0 -lagopus%1:05:00:: 01796222 1 0 -lagopus_scoticus%1:05:00:: 01796519 1 0 -lagorchestes%1:05:00:: 01878203 1 0 -lagos%1:15:00:: 08974604 1 0 -lagostomus%1:05:00:: 02367993 1 0 -lagostomus_maximus%1:05:00:: 02368116 1 0 -lagothrix%1:05:00:: 02494257 1 0 -laguna%1:17:00:: 09328746 1 0 -laguncularia%1:20:00:: 12325093 1 0 -laguncularia_racemosa%1:20:00:: 12325234 1 0 -lagune%1:17:00:: 09328746 1 0 -lah%1:10:00:: 06868986 1 0 -lahar%1:11:00:: 07405292 1 0 -lahore%1:15:00:: 08977428 1 0 -lahu%1:10:00:: 06932879 1 0 -laic%5:00:00:profane:00 02057226 1 0 -laicise%2:30:00:: 00534094 1 0 -laicize%2:30:00:: 00534094 1 0 -laid%5:00:00:arranged:00 01681307 1 1 -laid-back%5:00:00:relaxed:00 02408011 1 0 -laid-off%5:00:00:unemployed:00 00864884 1 0 -laid_low%5:00:00:ill:01 02545385 1 0 -laid_paper%1:27:00:: 14934527 1 0 -laid_up%5:00:00:ill:01 02545484 1 1 -lair%1:15:00:: 08591399 1 1 -laird%1:18:00:: 10243582 1 0 -laissez-faire%5:00:00:capitalistic:00 00297897 1 2 -laissez-faire_economy%1:14:00:: 08364959 1 0 -laissez_faire%1:09:00:: 05962936 1 2 -laissez_passer%1:10:00:: 06690408 1 0 -laity%1:14:00:: 08153102 1 3 -laius%1:18:00:: 09597478 1 0 -lake%1:17:00:: 09328904 1 3 -lake%1:27:00:: 14991004 3 0 -lake%1:27:01:: 14991106 2 0 -lake_albert%1:17:00:: 09330061 1 0 -lake_albert_nyanza%1:17:00:: 09330061 1 0 -lake_aral%1:17:00:: 09330233 1 0 -lake_baikal%1:17:00:: 09242767 1 0 -lake_balaton%1:17:00:: 09212935 1 0 -lake_baykal%1:17:00:: 09242767 1 0 -lake_bed%1:17:00:: 09330378 1 0 -lake_bottom%1:17:00:: 09330378 1 0 -lake_canandaigua%1:17:00:: 09232526 1 0 -lake_cayuga%1:17:00:: 09239581 1 0 -lake_chad%1:17:00:: 09330467 1 0 -lake_champlain%1:17:00:: 09330604 1 0 -lake_chelan%1:17:00:: 09242956 1 0 -lake_clark_national_park%1:15:00:: 08607066 1 0 -lake_constance%1:17:00:: 09252766 1 0 -lake_district%1:15:00:: 08873412 1 0 -lake_duck%1:05:00:: 01851731 1 0 -lake_dwelling%1:06:00:: 03634034 1 0 -lake_edward%1:17:00:: 09330913 1 0 -lake_erie%1:17:00:: 09331066 1 0 -lake_eyre%1:17:00:: 09277913 1 0 -lake_geneva%1:17:00:: 09331328 1 0 -lake_herring%1:05:00:: 02539573 2 0 -lake_herring%1:13:00:: 07795459 1 0 -lake_huron%1:17:00:: 09331535 1 0 -lake_ilmen%1:17:00:: 09331654 1 0 -lake_keuka%1:17:00:: 09325246 1 0 -lake_kivu%1:17:00:: 09326299 1 0 -lake_ladoga%1:17:00:: 09331819 1 0 -lake_leman%1:17:00:: 09331328 1 0 -lake_malawi%1:17:00:: 09332394 1 0 -lake_mead%1:06:00:: 03634189 1 0 -lake_michigan%1:17:00:: 09332050 1 0 -lake_nasser%1:17:00:: 09332246 1 0 -lake_nyasa%1:17:00:: 09332394 1 0 -lake_okeechobee%1:17:00:: 09377861 1 0 -lake_onega%1:17:00:: 09332598 1 0 -lake_ontario%1:17:00:: 09332770 1 0 -lake_poets%1:14:00:: 08468721 1 0 -lake_powell%1:06:00:: 03634469 1 0 -lake_saint_clair%1:17:00:: 09332976 1 0 -lake_salmon%1:05:00:: 02535759 1 0 -lake_seneca%1:17:00:: 09430100 1 0 -lake_st._clair%1:17:00:: 09332976 1 0 -lake_superior%1:17:00:: 09333171 1 0 -lake_tahoe%1:17:00:: 09243209 1 0 -lake_tana%1:17:00:: 09333334 1 0 -lake_tanganyika%1:17:00:: 09333512 1 0 -lake_trasimenus%1:04:00:: 01283185 1 0 -lake_trout%1:05:00:: 02538010 2 0 -lake_trout%1:13:00:: 07795019 1 0 -lake_tsana%1:17:00:: 09333334 1 0 -lake_urmia%1:17:00:: 09333706 1 0 -lake_vanern%1:17:00:: 09333905 1 0 -lake_victoria%1:17:00:: 09334049 1 0 -lake_volta%1:06:00:: 03634723 1 0 -lake_whitefish%1:05:00:: 02539424 1 0 -lake_winnipeg%1:17:00:: 09480428 1 0 -lakefront%1:17:00:: 09331251 1 0 -lakeland%1:15:00:: 08873412 1 0 -lakeland_terrier%1:05:00:: 02095570 1 0 -lakeshore%1:17:00:: 09332890 1 0 -lakeside%1:17:00:: 09332890 1 0 -lakh%1:23:00:: 13751404 1 0 -lakota%1:18:00:: 09669631 1 0 -lakshmi%1:18:00:: 09527091 1 0 -lallans%1:10:00:: 06950400 1 0 -lallation%1:10:00:: 06610143 2 0 -lallation%1:26:00:: 14402488 1 0 -lally%1:06:00:: 03634899 1 0 -lally_column%1:06:00:: 03634899 1 0 -lallygag%2:42:00:: 02639075 1 0 -lalthyrus_tingitanus%1:20:00:: 12542043 1 0 -lam%1:04:00:: 00060201 1 0 -lam%2:35:00:: 01416193 2 1 -lam%2:38:00:: 02075049 1 2 -lam_into%2:35:00:: 01242537 1 0 -lama%1:05:00:: 02437825 2 0 -lama%1:18:00:: 10243664 1 0 -lama_guanicoe%1:05:00:: 02438173 1 0 -lama_pacos%1:05:00:: 02438272 1 0 -lama_peruana%1:05:00:: 02437971 1 0 -lamaism%1:09:00:: 06241825 1 0 -lamaist%1:18:00:: 09684352 1 0 -lamarck%1:18:00:: 11114791 1 0 -lamarckian%1:18:00:: 10243791 1 0 -lamarckian%3:01:00:: 03013904 1 0 -lamarckism%1:09:00:: 06110426 1 0 -lamasery%1:06:00:: 03635032 1 0 -lamaze_method%1:22:00:: 13506119 1 0 -lamaze_method_of_childbirth%1:22:00:: 13506119 1 0 -lamb%1:05:00:: 02412440 1 5 -lamb%1:13:00:: 07667151 5 0 -lamb%1:18:00:: 10243872 4 0 -lamb%1:18:01:: 10243988 3 0 -lamb%1:18:02:: 11115029 2 0 -lamb%2:29:00:: 00058265 1 0 -lamb's-quarter%1:13:00:: 07733712 1 0 -lamb's-quarters%1:20:00:: 11828577 1 0 -lamb's_lettuce%1:20:00:: 12950796 1 0 -lamb-chop%1:13:00:: 07667974 1 0 -lamb_chop%1:13:00:: 07667974 1 0 -lamb_curry%1:13:00:: 07824191 1 0 -lamb_roast%1:13:00:: 07668215 1 0 -lamb_succory%1:20:00:: 11927740 1 0 -lambast%2:32:00:: 00824767 2 0 -lambast%2:35:00:: 01412204 1 0 -lambaste%2:32:00:: 00824767 2 0 -lambaste%2:35:00:: 01412204 1 0 -lambchop%1:13:00:: 07667974 1 0 -lambda%1:08:00:: 05233601 2 0 -lambda%1:10:00:: 06835206 1 0 -lambda_hyperon%1:17:00:: 09334266 1 0 -lambda_particle%1:17:00:: 09334266 1 0 -lambdacism%1:26:00:: 14402625 1 0 -lambency%1:07:00:: 04954534 1 0 -lambent%5:00:00:bright:00 00279332 1 0 -lambert%1:18:00:: 11115131 2 0 -lambert%1:23:00:: 13640520 1 0 -lambert-eaton_syndrome%1:26:00:: 14079156 1 0 -lambertia%1:20:00:: 12219875 1 0 -lambertia_formosa%1:20:00:: 12220019 1 0 -lambis%1:05:00:: 01943367 1 0 -lambkill%1:20:00:: 12238073 1 0 -lambkin%1:05:00:: 02412629 1 0 -lamblike%5:00:00:compliant:00 00696996 1 1 -lamboid_suture%1:08:00:: 05544575 1 0 -lambrequin%1:06:00:: 03635108 2 0 -lambrequin%1:06:01:: 03635236 1 0 -lambskin%1:27:00:: 14765016 1 0 -lambskin%1:27:01:: 14759003 2 0 -lame%1:06:00:: 03635330 2 0 -lame%1:18:00:: 10642988 1 0 -lame%2:29:00:: 00091647 1 0 -lame%5:00:00:weak:00 02325304 1 0 -lame%5:00:01:unfit:01 01018788 2 0 -lame_duck%1:18:00:: 10244108 1 0 -lamedh%1:10:00:: 06837895 1 0 -lamella%1:06:00:: 03635452 3 0 -lamella%1:08:00:: 05326060 2 0 -lamella%1:20:00:: 13011679 1 0 -lamellar_mixture%1:27:00:: 14929662 1 0 -lamellate_placentation%1:20:00:: 11681865 1 0 -lamellibranch%1:05:00:: 01955933 1 0 -lamellibranch%5:00:00:bivalve:00 02484078 1 0 -lamellibranchia%1:05:00:: 01955463 1 0 -lamellicorn_beetle%1:05:00:: 02171453 1 0 -lamellicornia%1:05:00:: 02171254 1 0 -lamely%4:02:00:: 00385689 1 0 -lameness%1:26:00:: 14549937 1 0 -lameness%1:26:01:: 14472900 2 0 -lament%1:10:00:: 06379568 3 0 -lament%1:10:01:: 07050619 2 0 -lament%1:10:02:: 07211950 1 0 -lament%2:32:00:: 00911350 2 0 -lament%2:37:00:: 01802219 1 1 -lamentable%5:00:00:bad:00 01126841 1 0 -lamentably%4:02:00:: 00093270 1 0 -lamentation%1:04:00:: 01072236 2 0 -lamentation%1:10:00:: 07211950 1 2 -lamentations%1:10:00:: 06438477 1 0 -lamented%3:00:00:: 01379988 1 0 -lamenter%1:18:00:: 10335246 1 0 -lamenting%5:00:00:sorrowful:00 01365785 1 0 -lamia%1:18:00:: 09544109 1 0 -lamiaceae%1:20:00:: 12838027 1 0 -lamina%1:08:00:: 05580929 1 0 -lamina_arcus_vertebrae%1:08:00:: 05581161 1 0 -laminal%5:00:00:stratified:00 00208613 1 0 -laminar%5:00:00:stratified:00 00208613 1 0 -laminar_flow%1:19:00:: 11521824 1 0 -laminar_flow_clean_room%1:06:00:: 03635516 1 0 -laminaria%1:05:00:: 01403284 1 0 -laminariaceae%1:05:00:: 01403052 1 0 -laminariales%1:05:00:: 01402831 1 0 -laminate%1:06:00:: 03635668 1 0 -laminate%2:35:00:: 01365131 3 0 -laminate%2:35:01:: 01391538 2 0 -laminate%2:35:02:: 01232387 4 0 -laminate%2:36:00:: 01625666 1 1 -laminated_glass%1:27:00:: 14882370 1 0 -lamination%1:04:00:: 00926923 2 0 -lamination%1:06:00:: 03635932 1 0 -laminator%1:18:00:: 10244226 1 0 -laminectomy%1:04:00:: 00682738 1 0 -laminitis%1:26:00:: 14348895 1 0 -lamisil%1:06:00:: 04412727 1 0 -lamium%1:20:00:: 12848870 1 0 -lamium_album%1:20:00:: 12849279 1 0 -lamium_amplexicaule%1:20:00:: 12849416 1 0 -lamivudine%1:06:00:: 03636062 1 0 -lammas%1:28:00:: 15190228 1 0 -lammas_day%1:28:00:: 15190228 1 0 -lammastide%1:28:00:: 15190424 1 0 -lammergeier%1:05:00:: 01617443 1 0 -lammergeyer%1:05:00:: 01617443 1 0 -lamna%1:05:00:: 01483707 1 0 -lamna_nasus%1:05:00:: 01483830 1 0 -lamnidae%1:05:00:: 01483188 1 0 -lamp%1:06:00:: 03636248 1 12 -lamp%1:06:01:: 03636649 2 2 -lamp_chimney%1:06:00:: 03636891 1 1 -lamp_house%1:06:00:: 03637027 1 0 -lamp_housing%1:06:00:: 03637027 1 0 -lamp_oil%1:27:00:: 14687633 1 0 -lamp_shade%1:06:00:: 03637318 1 0 -lamp_shell%1:05:00:: 02315487 1 0 -lampblack%1:27:00:: 14793533 1 0 -lamper_eel%1:05:00:: 01477525 1 0 -lamphouse%1:06:00:: 03637027 1 0 -lamplight%1:19:00:: 11472960 1 2 -lamplighter%1:18:00:: 10244359 1 0 -lamplit%5:00:00:light:06 00271966 1 0 -lampoon%1:10:00:: 06780309 1 0 -lampoon%2:32:00:: 00852685 1 1 -lampoon_artist%1:18:00:: 10244503 1 0 -lampooner%1:18:00:: 10400998 1 0 -lamppost%1:06:00:: 03637181 1 0 -lamprey%1:05:00:: 01477525 1 0 -lamprey_eel%1:05:00:: 01477525 1 0 -lampridae%1:05:00:: 02545569 1 0 -lampris%1:05:00:: 02545687 1 0 -lampris_guttatus%1:05:00:: 02546028 1 0 -lampris_regius%1:05:00:: 02545841 1 0 -lampropeltis%1:05:00:: 01734273 1 0 -lampropeltis_getulus%1:05:00:: 01734637 1 0 -lampropeltis_triangulum%1:05:00:: 01734808 1 0 -lampshade%1:06:00:: 03637318 1 0 -lampshell%1:05:00:: 02315487 1 0 -lampyridae%1:05:00:: 02168121 1 0 -lan%1:06:00:: 03681477 1 0 -lanai%1:06:00:: 03637480 2 0 -lanai%1:15:00:: 09080006 1 0 -lanai_island%1:15:00:: 09080006 1 0 -lanate%5:00:00:hairy:00 00214640 1 0 -lancashire%1:15:00:: 08884806 1 0 -lancaster%1:14:00:: 08155765 2 0 -lancaster%1:15:00:: 08873269 1 0 -lancastrian%1:18:01:: 09704157 1 0 -lancastrian%1:18:02:: 09704057 2 0 -lancastrian%3:01:02:: 03079293 2 0 -lancastrian%3:01:03:: 03079460 1 0 -lancastrian_line%1:14:00:: 08155765 1 0 -lance%1:06:00:: 04270891 1 2 -lance%1:06:01:: 04271148 2 0 -lance%1:06:02:: 03637618 3 0 -lance%2:35:00:: 01603885 3 0 -lance%2:35:01:: 01604119 2 0 -lance%2:38:00:: 02085158 1 0 -lance-shaped%5:00:00:formed:00 02148109 1 0 -lance_corporal%1:18:00:: 10244665 1 0 -lancelet%1:05:00:: 01467804 1 0 -lancelike%5:00:00:simple:01 02168549 1 0 -lancelot%1:18:00:: 11115293 1 0 -lanceolate%5:00:00:simple:01 02168549 1 0 -lanceolate_leaf%1:20:00:: 13158386 1 0 -lanceolate_spleenwort%1:20:00:: 13182937 1 0 -lancer%1:18:00:: 10244818 1 0 -lancers%1:04:00:: 00540616 1 0 -lancet%1:06:00:: 03637618 2 0 -lancet%1:06:01:: 03637787 1 0 -lancet-shaped%5:00:00:formed:00 02148187 1 0 -lancet_arch%1:06:00:: 03637787 1 0 -lancet_fish%1:05:00:: 02544274 1 0 -lancet_window%1:06:00:: 03637898 1 0 -lancetfish%1:05:00:: 02544274 1 0 -lancewood%1:20:00:: 11696450 2 0 -lancewood%1:20:02:: 11696606 1 0 -lancewood_tree%1:20:00:: 11696450 2 0 -lancewood_tree%1:20:01:: 12365285 1 0 -lanchou%1:15:00:: 08726582 1 0 -lanchow%1:15:00:: 08726582 1 0 -lancinate%5:00:00:sharp:04 00803432 1 0 -lancinating%5:00:00:sharp:04 00803432 1 0 -land%1:04:00:: 00453731 11 0 -land%1:14:00:: 08168978 9 1 -land%1:14:01:: 08166552 8 2 -land%1:15:01:: 08556491 3 11 -land%1:15:02:: 08544813 5 7 -land%1:17:00:: 09334396 4 9 -land%1:17:01:: 09335240 2 18 -land%1:18:00:: 11115558 10 0 -land%1:21:00:: 13246662 7 2 -land%1:21:01:: 13250048 1 22 -land%1:26:00:: 14514805 6 2 -land%2:30:00:: 00135857 3 3 -land%2:38:00:: 01979901 1 16 -land%2:38:01:: 01981036 2 4 -land%2:38:02:: 01981436 6 0 -land%2:38:03:: 02087156 4 2 -land%2:38:06:: 01981279 7 0 -land%2:40:00:: 02358527 5 1 -land-office_business%1:04:00:: 01096997 1 0 -land_agent%1:18:00:: 10244913 2 0 -land_agent%1:18:01:: 10509810 1 0 -land_area%1:07:00:: 05128870 1 3 -land_cress%1:20:00:: 11873845 1 0 -land_development%1:04:00:: 00948640 1 0 -land_grant%1:21:00:: 13254697 1 1 -land_line%1:06:00:: 03639497 1 0 -land_mass%1:17:00:: 09335916 1 0 -land_mile%1:23:00:: 13651218 1 0 -land_mine%1:06:00:: 03639675 1 0 -land_of_enchantment%1:15:00:: 09114696 1 0 -land_of_lincoln%1:15:00:: 09082540 1 0 -land_of_opportunity%1:15:00:: 09059274 1 0 -land_office%1:06:00:: 03639880 1 0 -land_rail%1:05:00:: 02015797 1 0 -land_reform%1:04:00:: 00260881 1 4 -land_resources%1:21:00:: 13332290 1 0 -land_site%1:15:00:: 08651247 1 1 -land_tax%1:21:00:: 13312569 1 0 -land_tenure%1:21:00:: 13242719 1 0 -land_up%2:30:00:: 00352558 2 0 -land_up%2:35:00:: 01477888 1 0 -landau%1:06:00:: 03638014 2 0 -landau%1:18:00:: 11115785 1 0 -landed%3:00:00:: 00269758 1 0 -landed_estate%1:21:00:: 13246662 1 0 -landed_gentry%1:14:00:: 08387685 1 0 -lander%1:06:00:: 03638180 2 0 -lander%1:15:00:: 09159958 1 0 -landfall%1:04:00:: 00880431 2 0 -landfall%1:17:00:: 09335693 1 0 -landfill%1:17:00:: 09335809 1 0 -landgrave%1:18:00:: 10245029 1 0 -landholder%1:18:00:: 10245639 1 0 -landholding%1:21:00:: 13247358 2 0 -landholding%1:21:01:: 13247445 1 0 -landing%1:04:00:: 00052334 4 0 -landing%1:04:01:: 00052500 3 0 -landing%1:06:00:: 03638321 2 1 -landing%1:06:01:: 03638511 1 6 -landing_approach%1:04:00:: 00281752 1 0 -landing_craft%1:06:00:: 03638623 1 0 -landing_deck%1:06:00:: 03363216 1 0 -landing_field%1:06:00:: 02687992 1 0 -landing_flap%1:06:00:: 03638743 1 0 -landing_gear%1:06:00:: 03638883 1 0 -landing_net%1:06:00:: 03639077 1 0 -landing_party%1:14:00:: 08265347 1 0 -landing_place%1:06:00:: 03638321 1 0 -landing_skid%1:06:00:: 03639230 1 0 -landing_stage%1:06:00:: 03639360 1 0 -landing_strip%1:06:00:: 02693070 1 0 -landlady%1:18:00:: 10245156 1 0 -landler%1:04:00:: 00541338 2 0 -landler%1:10:00:: 07055923 1 1 -landless%3:00:00:: 00269894 1 0 -landline%1:06:00:: 03639497 1 0 -landlocked%5:00:00:inland:00 00464068 1 1 -landlocked_salmon%1:05:00:: 02535759 1 0 -landlord%1:18:00:: 10245236 1 3 -landlord's_lien%1:21:00:: 13401970 1 0 -landlubber%1:18:00:: 10245341 2 0 -landlubber%1:18:01:: 10245507 1 0 -landlubberly%5:00:00:unseamanlike:00 01566725 1 0 -landman%1:18:00:: 10245507 1 0 -landmark%1:08:00:: 05230357 4 0 -landmark%1:10:00:: 07259319 3 0 -landmark%1:11:00:: 07417851 2 1 -landmark%1:15:00:: 08624891 1 2 -landmass%1:17:00:: 09335916 1 2 -landowner%1:18:00:: 10245639 1 1 -landowska%1:18:00:: 11115929 1 0 -landrover%1:06:00:: 03594945 1 1 -landry's_paralysis%1:26:00:: 14353622 1 0 -landscape%1:06:00:: 03640011 3 2 -landscape%1:06:01:: 03640166 2 2 -landscape%1:09:00:: 06209940 4 0 -landscape%1:15:00:: 08646902 1 13 -landscape%2:36:00:: 01741221 2 0 -landscape%2:36:01:: 01751836 1 0 -landscape_architect%1:18:00:: 10245863 1 0 -landscape_architecture%1:09:00:: 06124532 1 0 -landscape_gardener%1:18:00:: 10245863 1 0 -landscape_gardening%1:04:00:: 00921160 1 0 -landscape_painting%1:06:00:: 03640011 1 0 -landscaped%5:00:00:improved:00 01289083 1 1 -landscaper%1:18:00:: 10245863 1 0 -landscaping%1:04:00:: 00921160 1 1 -landscaping%1:06:00:: 03640288 2 0 -landscapist%1:18:00:: 10246176 1 0 -landscapist%1:18:01:: 10245863 2 0 -landside%1:06:00:: 03640456 1 0 -landslide%1:11:00:: 07405411 2 1 -landslide%1:11:01:: 07474185 1 1 -landslip%1:11:00:: 07405411 1 0 -landsmaal%1:10:00:: 06954768 1 0 -landsmal%1:10:00:: 06954768 1 0 -landsman%1:18:00:: 10245341 2 0 -landsman%1:18:01:: 10245507 1 0 -landsteiner%1:18:00:: 11116117 1 0 -landward%4:02:00:: 00385822 1 0 -landwards%4:02:00:: 00385822 1 0 -lane%1:06:00:: 03640589 1 4 -lane%1:06:01:: 03640660 2 1 -lane's_prince_albert%1:13:00:: 07742415 1 0 -laney%1:18:00:: 11116284 1 0 -lang_syne%4:02:00:: 00022401 1 0 -langbeinite%1:27:00:: 14679882 1 0 -lange%1:18:00:: 11116466 1 0 -langlaufer%1:18:00:: 10246317 1 0 -langley%1:18:00:: 11116642 2 0 -langley%1:23:00:: 13609871 1 0 -langmuir%1:18:00:: 11116875 1 0 -langobard%1:18:00:: 09703344 1 0 -langouste%1:05:00:: 01984695 2 0 -langouste%1:13:00:: 07793260 1 0 -langoustine%1:13:00:: 07793521 1 0 -langsat%1:20:00:: 12699301 1 0 -langset%1:20:00:: 12699301 1 0 -langside%1:04:00:: 01283389 1 0 -langston_hughes%1:18:00:: 11065101 1 0 -langsyne%1:28:00:: 15252635 1 0 -langsyne%4:02:00:: 00385946 1 0 -langtry%1:18:00:: 11117108 1 0 -language%1:09:00:: 05650820 5 1 -language%1:09:01:: 05808557 4 1 -language%1:10:00:: 06282651 1 48 -language%1:10:01:: 07109196 2 5 -language%1:10:02:: 07051975 3 2 -language%1:10:03:: 06304059 6 0 -language_area%1:08:00:: 05489394 1 0 -language_barrier%1:09:00:: 05691963 1 0 -language_learning%1:09:00:: 05754899 1 0 -language_lesson%1:04:00:: 00729478 1 0 -language_requirement%1:09:00:: 05893143 1 0 -language_school%1:14:00:: 08282950 1 0 -language_system%1:10:00:: 07279045 1 0 -language_teaching%1:04:00:: 00888162 1 0 -language_unit%1:10:00:: 06284225 1 0 -language_zone%1:08:00:: 05489394 1 0 -languas_speciosa%1:20:00:: 12357485 1 0 -langue_d'oc%1:10:00:: 06965406 1 0 -langue_d'oc_french%1:10:00:: 06965406 1 0 -langue_d'oil%1:10:00:: 06965249 1 0 -langue_d'oil_french%1:10:00:: 06965249 1 0 -languedoc-roussillon%1:15:00:: 08942780 1 0 -languid%5:00:00:lethargic:00 00876204 1 3 -languidly%4:02:00:: 00386050 1 0 -languish%2:29:00:: 00093593 3 0 -languish%2:30:00:: 00389992 1 1 -languish%2:37:00:: 01805684 2 0 -languisher%1:18:00:: 10246395 1 0 -languor%1:07:00:: 04635953 3 0 -languor%1:12:00:: 07516222 1 1 -languor%1:12:01:: 07484109 2 0 -languorous%5:00:00:lethargic:00 00876204 1 0 -languorously%4:02:00:: 00386181 1 0 -langur%1:05:00:: 02488291 1 0 -laniard%1:06:00:: 03641302 3 0 -laniard%1:06:01:: 03641451 2 0 -laniard%1:06:02:: 03641569 1 0 -laniary%3:01:00:: 02677861 1 0 -laniidae%1:05:00:: 01598432 1 0 -lanius%1:05:00:: 01598820 1 0 -lanius_borealis%1:05:00:: 01599269 1 0 -lanius_excubitor%1:05:00:: 01599159 1 0 -lanius_lucovicianus%1:05:00:: 01599556 1 0 -lanius_ludovicianus_excubitorides%1:05:00:: 01599388 1 0 -lanius_ludovicianus_migrans%1:05:00:: 01599741 1 0 -lank%5:00:00:long:01 01434841 1 0 -lank%5:00:00:thin:03 00989647 2 0 -lankiness%1:07:00:: 04998700 1 0 -lanky%5:00:00:tall:00 02385492 1 1 -lanky%5:00:00:thin:03 00989544 2 1 -lanolin%1:06:00:: 03640850 2 0 -lanolin%1:27:00:: 14816181 1 0 -lanoxin%1:06:00:: 03197804 1 0 -lansa%1:13:00:: 07745803 1 0 -lansat%1:13:00:: 07745803 1 0 -lanseh%1:13:00:: 07745803 1 0 -lanseh_tree%1:20:00:: 12699301 1 0 -lanset%1:13:00:: 07745803 1 0 -lansing%1:15:00:: 09101318 1 0 -lansium_domesticum%1:20:00:: 12699301 1 0 -lansoprazole%1:27:00:: 14777277 1 0 -lantana%1:20:00:: 12915140 1 0 -lantern%1:06:00:: 03640988 1 4 -lantern-fly%1:05:00:: 02259987 1 0 -lantern-jawed%5:00:00:prognathous:00 01875711 1 0 -lantern_fly%1:05:00:: 02259987 1 0 -lantern_jaw%1:08:00:: 05600030 1 0 -lantern_pinion%1:06:00:: 03641134 1 0 -lantern_slide%1:06:00:: 04237773 1 1 -lantern_wheel%1:06:00:: 03641134 1 0 -lanternfish%1:05:00:: 02543255 1 0 -lanthanide%1:27:00:: 14624743 1 0 -lanthanide_series%1:27:00:: 14625297 1 0 -lanthanoid%1:27:00:: 14624743 1 0 -lanthanon%1:27:00:: 14624743 1 0 -lanthanotidae%1:05:00:: 01691384 1 0 -lanthanotus%1:05:00:: 01691525 1 0 -lanthanotus_borneensis%1:05:00:: 01691652 1 0 -lanthanum%1:27:00:: 14643118 1 0 -lanugo%1:08:00:: 05255939 1 0 -lanyard%1:06:00:: 03641302 3 0 -lanyard%1:06:01:: 03641451 2 0 -lanyard%1:06:02:: 03641569 1 0 -lanzhou%1:15:00:: 08726582 1 0 -lao%1:10:00:: 06935594 2 0 -lao%1:18:00:: 09719794 1 0 -lao%3:01:00:: 03079803 1 3 -lao-tse%1:18:00:: 11117307 1 0 -lao-tzu%1:18:00:: 11117307 1 0 -lao-zi%1:18:00:: 11117307 1 0 -lao_people's_democratic_republic%1:15:00:: 08956760 1 0 -laocoon%1:18:00:: 09597141 1 0 -laos%1:15:00:: 08956760 1 13 -laotian%1:18:00:: 09719794 1 0 -laotian%3:01:00:: 03079627 1 0 -laotian_capital%1:15:00:: 08957064 1 0 -laotian_monetary_unit%1:23:00:: 13680823 1 0 -lap%1:04:00:: 00150591 6 0 -lap%1:04:01:: 00295172 5 0 -lap%1:06:00:: 03641706 4 0 -lap%1:06:01:: 03641947 3 0 -lap%1:08:00:: 05562595 1 11 -lap%1:26:00:: 14515041 2 0 -lap%2:30:02:: 00217576 5 0 -lap%2:34:00:: 01170983 4 0 -lap%2:35:00:: 01432176 2 1 -lap%2:39:00:: 02188198 3 0 -lap%2:42:00:: 02692197 1 3 -lap-jointed%5:00:00:even:01 00910885 1 0 -lap-strake%3:00:00:: 00316827 1 0 -lap-straked%3:00:00:: 00316827 1 0 -lap-streak%3:00:00:: 00316827 1 0 -lap-streaked%3:00:00:: 00316827 1 0 -lap_choly%1:04:00:: 00669262 1 0 -lap_covering%1:06:00:: 03641947 1 0 -lap_joint%1:06:00:: 03642573 1 0 -lap_of_honour%1:04:00:: 00295563 1 0 -lap_of_luxury%1:26:00:: 14492116 1 0 -lap_of_the_gods%1:26:00:: 14515177 1 0 -lap_up%2:34:00:: 01170983 1 0 -laparocele%1:26:00:: 14297406 1 0 -laparoscope%1:06:00:: 03642144 1 0 -laparoscopic_cholecystectomy%1:04:00:: 00669262 1 0 -laparoscopy%1:04:00:: 00683012 1 0 -laparotomy%1:04:00:: 00682856 1 0 -lapboard%1:06:00:: 03642341 1 0 -lapdog%1:05:00:: 02085272 1 0 -lapel%1:06:00:: 03642444 1 1 -lapful%1:23:00:: 13768250 1 0 -lapidarian%5:00:00:carved:00 00317629 1 0 -lapidarist%1:18:00:: 10246703 1 0 -lapidary%1:18:00:: 10246511 2 0 -lapidary%1:18:01:: 10246703 1 0 -lapidary%3:01:00:: 02829238 1 0 -lapidate%2:35:00:: 01323518 1 0 -lapidate%2:35:01:: 01232554 2 0 -lapidation%1:04:00:: 01164394 1 0 -lapidator%1:18:00:: 10659393 1 0 -lapidify%2:30:00:: 00507485 1 0 -lapidist%1:18:00:: 10246511 1 0 -lapin%1:05:00:: 02324514 2 0 -lapin%1:27:00:: 14765324 1 0 -lapis_lazuli%1:27:00:: 14929797 1 0 -laplace%1:18:00:: 11117451 1 0 -lapland%1:15:00:: 08957212 1 0 -laportea%1:20:00:: 12393942 1 0 -laportea_canadensis%1:20:00:: 12394118 1 0 -lapp%1:10:00:: 06959427 2 0 -lapp%1:18:00:: 09720033 1 0 -lappet%1:05:00:: 02307910 3 0 -lappet%1:06:00:: 03642716 2 0 -lappet%1:08:00:: 05471427 1 1 -lappet_caterpillar%1:05:00:: 02308033 1 0 -lappet_moth%1:05:00:: 02307910 1 0 -lappic%1:10:00:: 06959261 1 0 -lapping%1:06:00:: 03561657 1 0 -lappish%1:10:00:: 06959261 1 0 -lappland%1:15:00:: 08957212 1 0 -lapplander%1:18:00:: 09720033 1 0 -lappula%1:20:00:: 12819953 1 0 -lapse%1:04:00:: 00074524 1 3 -lapse%1:04:01:: 00068333 3 1 -lapse%1:28:00:: 15271417 2 1 -lapse%2:29:00:: 00093327 4 1 -lapse%2:30:00:: 00204585 3 1 -lapse%2:30:01:: 00351824 2 1 -lapse%2:38:00:: 02072849 6 0 -lapse%2:38:01:: 01972131 1 1 -lapse%2:40:00:: 02303761 5 0 -lapsed%5:00:00:irreligious:00 01784602 1 1 -lapsing%1:04:00:: 00068333 1 0 -laptev_sea%1:17:00:: 09336052 1 0 -laptop%1:06:00:: 03642806 1 0 -laptop_computer%1:06:00:: 03642806 1 0 -laputa%1:09:00:: 05630539 1 0 -laputan%3:01:00:: 03079951 1 0 -laputan%5:00:00:utopian:00 02498213 2 0 -lapwing%1:05:00:: 02024763 1 0 -laramie%1:15:00:: 09160056 1 0 -larboard%1:06:00:: 03642928 1 0 -larboard%5:00:00:left:00 02033742 1 0 -larcener%1:18:00:: 10246913 1 0 -larcenist%1:18:00:: 10246913 1 0 -larcenous%1:07:00:: 04875935 1 0 -larceny%1:04:00:: 00780889 1 0 -larch%1:20:00:: 11618861 2 0 -larch%1:20:02:: 11619136 1 0 -larch_tree%1:20:00:: 11618861 1 0 -lard%1:13:00:: 07672421 1 0 -lard%2:32:00:: 00956405 2 0 -lard%2:36:00:: 01679669 1 0 -lard_oil%1:27:00:: 14929897 1 0 -larder%1:06:00:: 03885535 2 0 -larder%1:13:00:: 07572616 1 0 -lardizabala%1:20:00:: 11703205 1 0 -lardizabala_family%1:20:00:: 11702999 1 0 -lardizabalaceae%1:20:00:: 11702999 1 0 -lardner%1:18:00:: 11117744 1 0 -laredo%1:15:00:: 09145083 1 0 -large%1:07:00:: 05096191 1 0 -large%3:00:00:: 01382086 1 139 -large%4:02:00:: 00386307 2 0 -large%4:02:01:: 00386393 1 0 -large%4:02:02:: 00225672 3 0 -large%5:00:00:comprehensive:00 00527870 6 0 -large%5:00:00:conspicuous:00 00579622 5 0 -large%5:00:00:generous:02 01114658 4 0 -large%5:00:00:pregnant:00 00173391 7 0 -large%5:00:00:rhetorical:00 02016881 3 0 -large%5:00:00:significant:00 02163307 2 2 -large-cap%3:01:00:: 02754618 1 0 -large-capitalisation%3:01:00:: 02754618 1 0 -large-capitalization%3:01:00:: 02754618 1 0 -large-flowered_calamint%1:20:00:: 12843316 1 0 -large-flowered_fiddleneck%1:20:00:: 12817129 1 0 -large-flowering_magnolia%1:20:00:: 11710136 1 0 -large-grained%5:00:00:coarse:00 02231355 1 0 -large-headed%5:00:00:headed:01 01184183 1 0 -large-hearted%5:00:00:kind:00 01372948 1 0 -large-leafed%5:00:00:leafy:00 01702253 1 0 -large-leaved%5:00:00:leafy:00 01702253 1 0 -large-leaved_aster%1:20:00:: 11934463 1 0 -large-leaved_cucumber_tree%1:20:00:: 11710987 1 0 -large-leaved_magnolia%1:20:00:: 11710987 1 0 -large-minded%5:00:00:broad-minded:00 00286837 1 0 -large-mouthed%5:00:00:large:00 01388327 1 0 -large-scale%5:00:00:large:00 01388418 1 2 -large-scale%5:00:02:large:00 01388542 2 0 -large-toothed_aspen%1:20:00:: 12734215 1 0 -large_calorie%1:23:00:: 13726562 1 0 -large_cap%1:14:00:: 08059125 1 0 -large_civet%1:05:00:: 02135610 1 0 -large_crabgrass%1:20:00:: 12117326 1 0 -large_cranberry%1:20:00:: 12245885 1 0 -large_indefinite_amount%1:23:00:: 13757724 1 0 -large_indefinite_quantity%1:23:00:: 13757724 1 0 -large_integer%1:23:00:: 13745420 1 0 -large_intestine%1:08:00:: 05535484 1 1 -large_magellanic_cloud%1:17:00:: 09336271 1 0 -large_number%1:23:00:: 13775093 1 18 -large_order%1:04:00:: 00797723 1 1 -large_periwinkle%1:20:00:: 11778257 1 0 -large_person%1:18:00:: 10247044 1 0 -large_poodle%1:05:00:: 02113892 1 0 -large_tooth_aspen%1:20:00:: 12734215 1 0 -large_white%1:05:00:: 02281136 1 0 -large_white_petunia%1:20:00:: 12909614 1 0 -large_yellow_lady's_slipper%1:20:00:: 12057447 1 0 -largeleaf_holly%1:20:00:: 12758325 1 0 -largely%4:02:00:: 00006105 1 24 -largely%4:02:01:: 00065359 2 0 -largemouth%1:05:00:: 02565324 1 0 -largemouth_bass%1:05:00:: 02565324 2 0 -largemouth_bass%1:13:00:: 07777735 1 0 -largemouth_black_bass%1:05:00:: 02565324 1 0 -largemouthed_bass%1:05:00:: 02565324 1 0 -largemouthed_black_bass%1:05:00:: 02565324 1 0 -largeness%1:07:00:: 05103946 3 0 -largeness%1:07:01:: 05106317 2 0 -largeness%1:07:02:: 04788982 4 0 -largeness%1:09:00:: 05618293 1 0 -larger%5:00:00:large:00 01383756 1 52 -larger-than-life%5:00:00:large:00 01386010 1 0 -largess%1:07:00:: 04832716 2 0 -largess%1:21:00:: 13265749 1 0 -largesse%1:07:00:: 04832716 2 0 -largesse%1:21:00:: 13265749 1 0 -larghetto%1:10:00:: 07046737 1 0 -larghetto%5:00:00:slow:02 00983304 1 0 -larghissimo%5:00:00:slow:02 00983401 1 0 -largish%5:00:00:large:00 01383857 1 0 -largo%1:10:00:: 07046543 1 0 -largo%4:02:00:: 00065486 1 0 -largo%5:00:00:slow:02 00983196 1 0 -lari%1:05:00:: 02040698 2 0 -lari%1:23:00:: 13700662 1 0 -lariat%1:06:00:: 03644378 1 0 -laricariidae%1:05:00:: 02520391 1 0 -larid%1:05:00:: 02041085 1 0 -laridae%1:05:00:: 02040872 1 0 -larium%1:06:00:: 03742728 1 0 -larix%1:20:00:: 11618750 1 0 -larix_decidua%1:20:00:: 11619845 1 0 -larix_laricina%1:20:00:: 11619227 1 0 -larix_lyallii%1:20:00:: 11619687 1 0 -larix_occidentalis%1:20:00:: 11619455 1 0 -larix_russica%1:20:00:: 11620016 1 0 -larix_siberica%1:20:00:: 11620016 1 0 -lark%1:04:00:: 00429322 4 0 -lark%1:05:01:: 01527617 3 0 -lark%1:05:02:: 01528654 2 0 -lark%1:05:03:: 01573074 1 0 -lark%2:38:00:: 01883716 1 0 -lark_about%2:38:00:: 01883716 1 0 -larkspur%1:20:00:: 11733312 1 1 -larn%2:31:00:: 00597915 1 0 -larodopa%1:27:00:: 14605132 1 0 -larotid%1:06:00:: 02703894 1 0 -larousse%1:18:00:: 11118072 1 0 -larrea%1:20:00:: 12722884 1 0 -larrea_tridentata%1:20:00:: 12723062 1 0 -larrup%2:35:00:: 01420928 1 0 -lars_onsager%1:18:00:: 11215384 1 0 -larus%1:05:00:: 02041492 1 0 -larus_argentatus%1:05:00:: 02042046 1 0 -larus_canus%1:05:00:: 02041678 1 0 -larus_marinus%1:05:00:: 02041875 1 0 -larus_ridibundus%1:05:00:: 02042180 1 0 -larva%1:05:00:: 02311060 1 6 -larvacea%1:05:00:: 01470287 1 0 -larvacean%1:05:00:: 01470479 1 0 -larvacide%1:27:00:: 14600135 1 0 -larval%3:01:00:: 03014166 2 0 -larval%5:00:00:immature:01 01490603 1 1 -larvicide%1:27:00:: 14930073 1 0 -laryngeal%3:01:00:: 02881995 1 0 -laryngeal_artery%1:08:00:: 05349906 1 0 -laryngeal_vein%1:08:00:: 05372593 1 0 -laryngectomy%1:04:00:: 00683214 1 0 -laryngismus%1:04:00:: 00227137 1 0 -laryngitis%1:26:00:: 14349043 1 0 -laryngopharyngeal%3:01:00:: 02882135 1 0 -laryngopharyngitis%1:26:00:: 14349208 1 0 -laryngopharynx%1:08:00:: 05529159 1 0 -laryngoscope%1:06:00:: 03643149 1 0 -laryngospasm%1:26:00:: 14100957 1 0 -laryngostenosis%1:26:00:: 14106823 1 0 -laryngotracheobronchitis%1:26:00:: 14349311 1 0 -larynx%1:08:00:: 05529729 1 0 -las_cruces%1:15:00:: 09115886 1 0 -las_vegas%1:15:00:: 09110939 1 1 -lasagna%1:13:01:: 07701053 2 0 -lasagna%1:13:02:: 07870167 1 0 -lasagne%1:13:00:: 07701053 2 0 -lasagne%1:13:02:: 07870167 1 0 -lasalle%1:18:00:: 11118205 1 0 -lascar%1:15:00:: 09176342 2 0 -lascar%1:18:00:: 10247176 1 0 -lascaux%1:17:00:: 09336416 1 0 -lascivious%5:00:00:sexy:00 02133207 1 0 -lasciviously%4:02:00:: 00386474 1 0 -lasciviousness%1:12:00:: 07490214 1 0 -lasek%1:04:00:: 00680183 1 0 -laser%1:06:00:: 03643253 1 0 -laser-assisted_in_situ_keratomileusis%1:04:00:: 00680511 1 0 -laser-assisted_subepithelial_keratomileusis%1:04:00:: 00680183 1 0 -laser-guided_bomb%1:06:00:: 03643491 1 0 -laser_beam%1:19:00:: 11485681 1 0 -laser_printer%1:06:00:: 03643737 1 0 -laser_trabecular_surgery%1:04:00:: 00680336 1 0 -lash%1:04:00:: 00134574 3 0 -lash%1:06:01:: 03643907 2 0 -lash%1:08:00:: 05314919 1 0 -lash%2:35:00:: 01398032 3 0 -lash%2:35:01:: 01411085 1 4 -lash%2:35:02:: 01303707 4 0 -lash%2:38:04:: 01877946 2 0 -lash-like%3:01:00:: 03015113 1 0 -lash-up%1:06:00:: 03644248 1 0 -lash_out%2:32:11:: 00862683 1 0 -lash_together%2:35:00:: 01287537 1 1 -lasher%1:18:00:: 10247250 1 1 -lashing%1:04:00:: 01163047 1 1 -lashing%1:06:00:: 03644073 2 0 -lashing%5:00:00:violent:00 02512205 1 1 -lashings%1:23:00:: 13777509 1 0 -lashkar-e-jhangvi%1:14:00:: 08030481 1 0 -lashkar-e-omar%1:14:00:: 08030711 1 0 -lashkar-e-taiba%1:14:00:: 08031020 1 0 -lashkar-e-tayyiba%1:14:00:: 08031020 1 0 -lashkar-e-toiba%1:14:00:: 08031020 1 0 -lasik%1:04:00:: 00680511 1 0 -lasiocampa%1:05:00:: 02306672 1 0 -lasiocampid%1:05:00:: 02306433 1 0 -lasiocampid_moth%1:05:00:: 02306433 1 0 -lasiocampidae%1:05:00:: 02306159 1 0 -lasiurus%1:05:00:: 02146064 1 0 -lasiurus_borealis%1:05:00:: 02146201 1 0 -lasix%1:06:00:: 03406597 1 0 -laskar_jihad%1:14:00:: 08031386 1 0 -lass%1:18:00:: 10247358 1 0 -lassa%1:15:00:: 08907377 1 0 -lassa_fever%1:26:00:: 14135956 1 0 -lassa_virus%1:05:00:: 01330852 1 0 -lassen_volcanic_national_park%1:15:00:: 08607231 1 0 -lassie%1:18:00:: 10247358 1 0 -lassitude%1:07:00:: 05042138 3 0 -lassitude%1:12:00:: 07484109 2 0 -lassitude%1:26:00:: 14014990 1 0 -lasso%1:06:00:: 03644378 2 0 -lasso%1:18:00:: 11118362 1 0 -lasso%2:35:00:: 01604251 1 0 -last%1:04:00:: 01264667 3 1 -last%1:06:00:: 03644532 8 0 -last%1:11:00:: 07291794 7 0 -last%1:23:01:: 13618180 6 0 -last%1:23:02:: 13718178 5 0 -last%1:24:00:: 13850148 2 1 -last%1:28:00:: 15267536 1 3 -last%1:28:01:: 15143276 4 0 -last%2:42:00:: 02704928 1 19 -last%2:42:01:: 02618149 2 7 -last%3:00:00:: 01013279 2 45 -last%4:02:00:: 00065748 1 4 -last%4:02:01:: 00065822 2 1 -last%5:00:00:closing:00 01010271 3 26 -last%5:00:00:dying:00 00004296 5 2 -last%5:00:00:high:02 01212095 7 1 -last%5:00:00:past:00 01730329 1 109 -last%5:00:00:ultimate:00 01579128 6 1 -last%5:00:00:unalterable:00 00349894 8 0 -last%5:00:00:unlikely:00 01412912 4 2 -last%5:00:00:worst:00 00230076 9 0 -last-ditch%5:00:00:ultimate:00 01579304 1 0 -last-minute%5:00:00:unpunctual:00 01901649 1 1 -last-place%5:00:00:worst:00 00230076 1 0 -last_but_not_least%4:02:00:: 00065963 1 0 -last_day%1:28:00:: 15171307 1 0 -last_frontier%1:15:00:: 09055015 1 0 -last_gasp%1:28:00:: 15268547 1 0 -last_half%1:28:00:: 15258179 1 0 -last_hurrah%1:04:00:: 00212678 1 0 -last_in_first_out%1:04:00:: 00620258 1 0 -last_judgement%1:28:00:: 15171307 1 0 -last_judgment%1:28:00:: 15171307 1 0 -last_laugh%1:11:00:: 07474318 1 0 -last_mentioned%5:00:00:latter:00 01047752 1 1 -last_mile%1:04:00:: 00291286 1 0 -last_minute%1:28:00:: 15244942 1 0 -last_name%1:10:00:: 06336904 1 0 -last_not_least%4:02:00:: 00065963 1 0 -last_out%2:42:00:: 02619122 1 0 -last_quarter%1:28:00:: 15207430 1 0 -last_resort%1:04:00:: 00178972 1 1 -last_respects%1:04:00:: 01229350 1 0 -last_rites%1:04:00:: 01030152 2 0 -last_rites%1:04:01:: 01039637 1 1 -last_straw%1:04:00:: 01222034 1 0 -last_supper%1:04:00:: 01035504 1 0 -last_word%1:07:00:: 04813712 3 0 -last_word%1:10:00:: 06649786 1 0 -last_word%1:10:01:: 06412213 2 0 -lastex%1:06:00:: 03644698 1 0 -lasthenia%1:20:00:: 11987956 1 0 -lasthenia_chrysostoma%1:20:00:: 11988132 1 0 -lasting%3:00:04:: 01754421 1 2 -lasting%3:00:06:: 01758339 3 0 -lasting%5:00:00:long:02 01439496 2 1 -lasting%5:00:00:stable:00 02291500 4 0 -lastingly%4:02:00:: 00066100 1 0 -lastingness%1:07:00:: 05053688 1 0 -lastly%4:02:00:: 00065822 1 1 -lastreopsis%1:20:00:: 13197670 1 0 -laszlo_lowestein%1:18:00:: 11138924 1 0 -lat%1:08:00:: 05559122 1 4 -latakia%1:15:00:: 09034402 2 0 -latakia%1:27:00:: 14715601 1 0 -latanier%1:20:00:: 12589687 1 0 -latanier_palm%1:20:00:: 12589687 1 0 -latch%1:06:00:: 03644858 2 0 -latch%1:06:01:: 03645011 1 0 -latch%2:35:00:: 01286777 1 2 -latch_on%2:31:00:: 00590366 3 0 -latch_on%2:31:03:: 00602112 2 0 -latch_on%2:35:00:: 01216194 1 0 -latchet%1:06:00:: 03645168 1 0 -latchkey%1:06:00:: 03645290 1 0 -latchkey_child%1:18:00:: 10247519 1 0 -latchstring%1:06:00:: 03645411 1 0 -late%3:00:00:: 00816481 1 33 -late%3:00:01:: 00820721 5 2 -late%3:00:02:: 00819235 6 1 -late%4:02:00:: 00100267 1 16 -late%4:02:01:: 00305821 2 3 -late%4:02:02:: 00305935 3 0 -late%4:02:03:: 00107416 4 0 -late%5:00:00:dead:01 00097674 4 3 -late%5:00:00:past:00 01730444 3 3 -late%5:00:00:unpunctual:00 01901186 2 4 -late%5:00:02:past:00 01729819 7 0 -late-blooming%5:00:00:autumnal:00 01255530 1 0 -late-flowering%5:00:00:autumnal:00 01255530 1 0 -late-night_hour%1:28:00:: 15168080 1 0 -late-ripening%5:00:00:autumnal:00 01255715 1 0 -late-spring-blooming%5:00:00:vernal:00 01254607 1 0 -late_blight%1:26:00:: 14217676 1 0 -late_greek%1:10:00:: 06977087 1 0 -late_latin%1:10:00:: 06963571 1 0 -late_purple_aster%1:20:00:: 11936287 1 0 -latecomer%1:18:00:: 10247720 1 0 -lateen%1:06:00:: 03645577 1 0 -lateen%5:00:00:rigged:00 01093524 1 0 -lateen-rig%1:06:00:: 03645730 1 0 -lateen-rigged%5:00:00:rigged:00 01093524 1 0 -lateen_sail%1:06:00:: 03645577 1 0 -lately%4:02:00:: 00107416 1 7 -latency%1:26:00:: 14482852 3 0 -latency%1:28:00:: 15273241 2 0 -latency%1:28:01:: 15297069 1 0 -latency_period%1:28:00:: 15146260 1 0 -latency_phase%1:28:00:: 15146260 1 0 -latency_stage%1:28:00:: 15146260 1 0 -lateness%1:07:00:: 05047059 1 0 -latent%5:00:00:inactive:02 00038462 2 1 -latent%5:00:00:potential:00 00044608 1 6 -latent_content%1:10:00:: 06599655 1 0 -latent_diabetes%1:26:00:: 14120096 1 0 -latent_heat%1:19:00:: 11471097 1 0 -latent_hostility%1:26:00:: 13980596 1 0 -latent_period%1:28:00:: 15273101 2 0 -latent_period%1:28:01:: 15273241 1 0 -latent_schizophrenia%1:26:00:: 14398929 1 0 -later%3:00:02:: 00819235 2 0 -later%4:02:01:: 00061203 1 107 -later%4:02:02:: 00155488 2 18 -later%4:02:03:: 00508157 3 0 -later%5:00:00:subsequent:00 00123485 1 16 -later_on%4:02:00:: 00061203 1 9 -lateral%1:04:00:: 00561707 1 0 -lateral%5:00:00:distal:02 00778828 2 0 -lateral%5:00:00:side:00 02441469 1 0 -lateral_cerebral_sulcus%1:08:00:: 05224080 1 0 -lateral_condyle%1:08:00:: 05472394 1 0 -lateral_epicondyle%1:08:00:: 05472846 1 0 -lateral_epicondylitis%1:26:00:: 14356720 1 0 -lateral_geniculate%1:08:00:: 05487694 1 0 -lateral_geniculate_body%1:08:00:: 05487694 1 0 -lateral_humeral_epicondylitis%1:26:00:: 14356720 1 0 -lateral_line%1:05:00:: 02465929 1 0 -lateral_line_organ%1:05:00:: 02465929 1 0 -lateral_pass%1:04:00:: 00561707 1 0 -lateral_rectus%1:08:00:: 05316407 1 0 -lateral_rectus_muscle%1:08:00:: 05316407 1 0 -lateral_thinking%1:09:00:: 05848182 1 0 -lateral_ventricle%1:08:00:: 05503196 1 0 -lateralisation%1:09:00:: 05992624 1 0 -laterality%1:07:00:: 04998417 3 0 -laterality%1:07:01:: 05067007 2 0 -laterality%1:09:00:: 05992624 1 0 -lateralization%1:09:00:: 05992624 1 0 -lateralize%2:38:00:: 02103781 1 0 -laterally%4:02:00:: 00386587 2 0 -laterally%4:02:01:: 00386765 1 0 -lateran%1:15:00:: 08807554 1 0 -lateran_council%1:14:00:: 08315194 1 0 -lateran_palace%1:06:00:: 03645866 1 0 -lateran_treaty%1:10:00:: 06774871 1 0 -laterite%1:27:00:: 14930165 1 0 -lates%1:05:00:: 02560383 1 0 -lates_calcarifer%1:05:00:: 02560546 1 0 -latest%1:10:00:: 06643185 1 0 -latest%5:00:00:current:00 00668366 1 3 -latest%5:00:00:fashionable:00 00971506 2 0 -latex%1:06:00:: 03646020 2 0 -latex%1:27:00:: 15006118 1 0 -latex_paint%1:06:00:: 03646020 1 0 -lath%1:06:00:: 03646148 1 0 -lath_and_plaster%1:27:00:: 14930312 1 0 -lathe%1:06:00:: 03646296 1 0 -lathee%1:06:00:: 03646546 1 0 -lather%1:17:00:: 09439213 1 3 -lather%1:17:01:: 09336555 4 0 -lather%1:18:00:: 10247800 3 0 -lather%1:26:00:: 14403560 2 0 -lather%2:29:00:: 00036932 4 0 -lather%2:29:01:: 00109540 3 0 -lather%2:30:00:: 00512043 2 0 -lather%2:35:01:: 01411085 1 0 -lathery%3:01:00:: 02754839 1 0 -lathi%1:06:00:: 03646546 1 0 -lathyrus%1:20:00:: 12538603 1 0 -lathyrus_hirsutus%1:20:00:: 12539564 1 0 -lathyrus_japonicus%1:20:00:: 12540250 1 0 -lathyrus_latifolius%1:20:00:: 12540001 1 0 -lathyrus_maritimus%1:20:00:: 12540250 1 0 -lathyrus_niger%1:20:00:: 12540488 1 0 -lathyrus_nissolia%1:20:00:: 12540647 1 0 -lathyrus_odoratus%1:20:00:: 12540800 1 0 -lathyrus_palustris%1:20:00:: 12540966 1 0 -lathyrus_pratensis%1:20:00:: 12541157 1 0 -lathyrus_sativus%1:20:00:: 12541403 1 0 -lathyrus_splendens%1:20:00:: 12541606 1 0 -lathyrus_sylvestris%1:20:00:: 12541805 1 0 -lathyrus_tuberosus%1:20:00:: 12542240 1 0 -lathyrus_vernus%1:20:00:: 12542466 1 0 -laticifer%1:20:00:: 13091227 1 0 -latimeria%1:05:00:: 02515560 1 0 -latimeria_chalumnae%1:05:00:: 02515713 1 0 -latimeridae%1:05:00:: 02515410 1 0 -latin%1:10:00:: 06962600 1 4 -latin%1:18:00:: 10247880 3 0 -latin%1:18:01:: 10248008 2 0 -latin%3:01:00:: 03080101 1 1 -latin%3:01:01:: 03080238 4 0 -latin%3:01:02:: 03080351 3 0 -latin%3:01:03:: 03080492 2 0 -latin-american%3:01:00:: 02754995 1 3 -latin_alphabet%1:10:00:: 06497872 1 0 -latin_america%1:15:00:: 09022831 1 3 -latin_american%1:18:00:: 09720256 1 2 -latin_cross%1:06:00:: 03646695 1 0 -latin_quarter%1:15:00:: 08933084 1 0 -latin_square%1:14:00:: 08269506 1 0 -latinae%1:05:00:: 02560271 1 0 -latinate%3:01:00:: 02904691 1 0 -latinesce%1:10:00:: 06896623 1 0 -latinian_language%1:10:00:: 06963951 1 0 -latinise%2:30:00:: 00386566 2 0 -latinise%2:32:00:: 00995525 1 0 -latinism%1:10:00:: 06293655 1 0 -latinist%1:18:00:: 10248091 1 0 -latinize%2:30:00:: 00386566 3 0 -latinize%2:32:00:: 00961243 2 0 -latinize%2:32:01:: 00995525 1 0 -latino%1:10:00:: 06896716 2 0 -latino%1:18:00:: 09720256 1 0 -latino%3:01:00:: 03072158 1 0 -latino_sine_flexione%1:10:00:: 06896856 1 0 -latish%5:00:00:late:00 00817176 1 0 -latissimus_dorsi%1:08:00:: 05559122 1 0 -latitude%1:07:02:: 05127640 4 0 -latitude%1:15:00:: 08595531 1 2 -latitude%1:15:01:: 08595720 3 0 -latitude%1:26:00:: 13995148 2 0 -latitudinal%3:01:00:: 02904780 1 0 -latitudinarian%1:18:00:: 10248198 1 0 -latitudinarian%5:00:00:broad-minded:00 00287275 1 0 -latium%1:15:00:: 08806735 1 0 -latke%1:13:00:: 07641581 1 0 -latona%1:18:00:: 09577833 1 0 -latria%1:04:00:: 01043989 1 0 -latrine%1:06:00:: 03646809 1 0 -latrobe%1:18:00:: 11118602 1 0 -latrodectus%1:05:00:: 01774252 1 0 -latrodectus_mactans%1:05:00:: 01774384 1 0 -lats%1:23:00:: 13701310 1 0 -latte%1:13:00:: 07920222 1 0 -latten%1:27:00:: 14930824 1 0 -latter%1:24:00:: 13846708 1 0 -latter%3:00:00:: 01047561 1 52 -latter-day%5:00:00:present:01 01732131 1 0 -latter-day_saint%1:18:00:: 10248542 1 0 -latterly%4:02:00:: 00107416 1 0 -lattice%1:06:00:: 03646916 3 0 -lattice%1:06:01:: 04582454 2 0 -lattice%1:09:00:: 05729875 1 0 -latticed%5:00:00:reticulate:00 02006798 1 0 -latticelike%5:00:00:reticulate:00 02006798 1 0 -latticework%1:06:00:: 03646916 1 0 -latvia%1:15:00:: 09013074 1 0 -latvian%1:10:00:: 06946355 2 0 -latvian%1:18:00:: 09707166 1 0 -latvian%3:01:00:: 02962818 1 0 -latvian_monetary_unit%1:23:00:: 13701183 1 0 -laud%2:32:00:: 00860620 1 0 -laudability%1:07:00:: 04807342 1 0 -laudable%5:00:00:worthy:00 02585545 1 0 -laudableness%1:07:00:: 04807342 1 0 -laudably%4:02:00:: 00218886 1 0 -laudanum%1:06:00:: 03647108 1 1 -laudator%1:18:00:: 10248711 1 0 -laudatory%5:00:00:complimentary:00 00906312 1 0 -lauder%1:18:00:: 10248711 2 0 -lauder%1:18:01:: 11118886 1 0 -laudo%1:17:00:: 09336702 1 0 -laugh%1:10:00:: 07127006 1 16 -laugh%1:10:01:: 06778102 3 0 -laugh%1:10:02:: 06878404 2 1 -laugh%2:29:00:: 00031820 1 64 -laugh_at%2:32:00:: 00851933 1 8 -laugh_away%2:32:00:: 00802136 1 0 -laugh_line%1:10:00:: 06778777 2 0 -laugh_line%1:25:00:: 13906345 1 0 -laugh_loudly%2:29:01:: 00031540 1 0 -laugh_off%2:32:00:: 00802136 1 1 -laugh_softly%2:29:00:: 00031663 1 1 -laugh_track%1:06:00:: 03647291 1 0 -laughable%5:00:00:foolish:00 02570643 1 0 -laughable%5:00:00:humorous:00 01265308 2 0 -laughably%4:02:00:: 00387017 1 0 -laugher%1:11:00:: 07475107 2 0 -laugher%1:18:00:: 10248876 1 0 -laughing%5:00:00:happy:00 01149358 1 0 -laughing_gas%1:06:00:: 03826945 1 0 -laughing_gull%1:05:00:: 02042180 1 0 -laughing_hyena%1:05:00:: 02117900 1 0 -laughing_jackass%1:05:01:: 01828556 1 0 -laughing_jackass%1:05:02:: 01625121 2 0 -laughing_owl%1:05:00:: 01625121 1 0 -laughingly%4:02:00:: 00220223 1 1 -laughingstock%1:18:00:: 09884666 1 0 -laughter%1:04:00:: 01072402 2 0 -laughter%1:10:00:: 07127006 1 15 -laughton%1:18:00:: 11119061 1 0 -lauhala%1:20:00:: 12155009 1 0 -launce%1:05:00:: 02618513 1 0 -launch%1:04:00:: 00103140 2 0 -launch%1:06:00:: 03647423 1 0 -launch%2:30:10:: 00347918 4 2 -launch%2:35:00:: 01514655 2 6 -launch%2:35:02:: 01515415 3 4 -launch%2:35:04:: 01515196 5 0 -launch%2:35:05:: 01253363 6 0 -launch%2:41:01:: 02427103 1 10 -launch_area%1:06:00:: 03647691 1 0 -launch_pad%1:06:00:: 03647691 1 0 -launcher%1:06:00:: 03647520 1 1 -launcher%1:06:01:: 02982232 2 0 -launching%1:04:00:: 00103140 3 0 -launching%1:04:01:: 00238022 2 0 -launching%1:04:02:: 00103291 1 1 -launching_pad%1:06:00:: 03647691 1 0 -launching_site%1:15:00:: 08591486 1 0 -launchpad%1:06:00:: 03647691 1 0 -launder%2:30:00:: 00188949 2 0 -launder%2:35:00:: 01535246 1 0 -launderette%1:06:00:: 03647872 1 0 -laundering%1:04:00:: 00578708 1 1 -laundress%1:18:00:: 10769188 1 0 -laundromat%1:06:00:: 03647872 1 0 -laundry%1:06:00:: 03648066 2 0 -laundry%1:06:01:: 03648219 1 1 -laundry_basket%1:06:00:: 03050864 1 0 -laundry_cart%1:06:00:: 03648431 1 0 -laundry_detergent%1:06:00:: 03648527 1 0 -laundry_truck%1:06:00:: 03648667 1 1 -laundryman%1:18:00:: 10769084 1 0 -laundrywoman%1:18:00:: 10769188 1 0 -lauraceae%1:20:00:: 11703386 1 0 -laurasia%1:17:00:: 09336853 1 0 -laureate%1:18:00:: 10249011 1 0 -laureate%5:00:00:honorable:00 01226809 1 0 -laurel%1:06:00:: 03648804 3 0 -laurel%1:18:00:: 11119190 2 0 -laurel%1:20:00:: 11703669 1 0 -laurel-tree%1:20:00:: 11706942 1 0 -laurel_and_hardy%1:14:00:: 08181375 1 0 -laurel_cherry%1:20:01:: 12646950 1 0 -laurel_cherry%1:20:02:: 12643113 2 0 -laurel_family%1:20:00:: 11703386 1 0 -laurel_oak%1:20:01:: 12273768 1 0 -laurel_oak%1:20:02:: 12272883 2 0 -laurel_sumac%1:20:00:: 12760875 1 0 -laurel_willow%1:20:00:: 12729521 1 0 -laurel_wreath%1:06:00:: 03648804 2 0 -laurel_wreath%1:10:00:: 06706676 1 0 -laureled%3:00:00:: 01381777 1 0 -laurelled%3:00:00:: 01381777 1 0 -laurels%1:10:00:: 06696483 1 3 -laurels%1:26:00:: 14436875 2 1 -laurelwood%1:20:00:: 12365285 1 0 -laurence_olivier%1:18:00:: 11214320 1 0 -laurence_stephen_lowry%1:18:00:: 11143044 1 0 -laurence_sterne%1:18:00:: 11316970 1 0 -laurens%1:18:00:: 11119476 1 0 -laurentian_highlands%1:15:00:: 08821319 1 0 -laurentian_plateau%1:15:00:: 08821319 1 0 -laurentius%1:18:00:: 11121108 1 0 -lauric_acid%1:27:00:: 14930476 1 0 -lauritz_lebrecht_hommel_melchior%1:18:00:: 11172411 1 0 -lauritz_melchior%1:18:00:: 11172411 1 0 -laurus%1:20:00:: 11703935 1 0 -laurus_nobilis%1:20:00:: 11704093 1 0 -lauryl_alcohol%1:27:00:: 14930670 1 0 -lausanne%1:15:00:: 09032981 1 0 -lautaro_faction_of_the_united_popular_action_movement%1:14:00:: 08031663 1 0 -lautaro_popular_rebel_forces%1:14:00:: 08031663 1 0 -lautaro_youth_movement%1:14:00:: 08031663 1 0 -lav%1:06:00:: 04446276 1 0 -lava%1:27:00:: 14930989 1 0 -lavabo%1:06:00:: 04553703 1 0 -lavage%1:04:00:: 00696487 1 0 -lavalava%1:06:00:: 03649003 1 0 -lavalier%1:06:00:: 03649161 1 0 -lavaliere%1:06:00:: 03649161 1 0 -lavalliere%1:06:00:: 03649161 1 0 -lavandula%1:20:00:: 12849597 1 0 -lavandula_angustifolia%1:20:00:: 12849952 1 0 -lavandula_latifolia%1:20:00:: 12850336 1 0 -lavandula_officinalis%1:20:00:: 12849952 1 0 -lavandula_stoechas%1:20:00:: 12850168 1 0 -lavatera%1:20:00:: 12182414 1 0 -lavatera_arborea%1:20:00:: 12182615 1 0 -lavation%1:04:00:: 00255710 1 0 -lavatory%1:06:00:: 04446276 1 2 -lavatory%1:06:01:: 04553920 2 0 -lavatory%1:06:02:: 03371875 3 0 -lave%2:29:00:: 00036362 2 0 -lave%2:29:02:: 00025034 3 0 -lave%2:30:01:: 00217576 1 0 -lavender%1:07:00:: 04970470 2 0 -lavender%1:20:00:: 12849717 1 0 -lavender%5:00:00:chromatic:00 00376917 1 3 -lavender-pink%5:00:00:chromatic:00 00377323 1 0 -lavender-tinged%5:00:00:chromatic:00 00377036 1 0 -lavender_cotton%1:20:00:: 12009420 1 0 -laver%1:05:01:: 01408743 4 0 -laver%1:05:02:: 01415524 3 0 -laver%1:06:00:: 03649288 2 0 -laver%1:18:00:: 11119634 1 0 -lavish%2:40:00:: 02264601 1 2 -lavish%5:00:00:generous:01 01111965 1 2 -lavish%5:00:00:rich:03 02025274 2 0 -lavishly%4:02:00:: 00335345 1 2 -lavishly%4:02:01:: 00187617 2 0 -lavishness%1:04:00:: 00743641 2 0 -lavishness%1:07:00:: 05146471 1 0 -lavoisier%1:18:00:: 11119917 1 0 -lavrenti_pavlovich_beria%1:18:00:: 10846693 1 0 -law%1:04:00:: 00611143 6 2 -law%1:09:00:: 05870916 3 11 -law%1:09:01:: 05872982 4 5 -law%1:09:02:: 06161718 5 3 -law%1:10:00:: 06532330 2 24 -law%1:14:00:: 08441203 1 50 -law%1:14:01:: 08209687 7 1 -law-abiding%5:00:00:lawful:00 01395821 1 0 -law-breaking%1:04:00:: 00766234 1 1 -law-makers%1:14:00:: 08163273 1 0 -law_agent%1:18:00:: 10249191 1 0 -law_degree%1:10:00:: 06704740 1 1 -law_enforcement%1:04:00:: 01128137 1 4 -law_enforcement_agency%1:14:00:: 08348815 1 0 -law_firm%1:14:00:: 08064039 1 0 -law_merchant%1:14:00:: 08455037 1 2 -law_of_action_and_reaction%1:09:00:: 05886266 1 0 -law_of_archimedes%1:09:00:: 05874716 1 0 -law_of_areas%1:09:00:: 05879856 1 0 -law_of_averages%1:09:00:: 05880715 1 0 -law_of_chemical_equilibrium%1:09:00:: 05877412 1 0 -law_of_closure%1:09:00:: 06249421 1 0 -law_of_common_fate%1:09:00:: 06249685 1 0 -law_of_conservation_of_energy%1:09:00:: 06104578 1 0 -law_of_conservation_of_mass%1:09:00:: 06104844 1 0 -law_of_conservation_of_matter%1:09:00:: 06104844 1 0 -law_of_constant_proportion%1:09:00:: 05880854 1 0 -law_of_continuation%1:09:00:: 06250208 1 0 -law_of_definite_proportions%1:09:00:: 05880854 1 0 -law_of_diminishing_returns%1:09:00:: 05881102 1 0 -law_of_effect%1:09:00:: 05881303 1 0 -law_of_equal_areas%1:09:00:: 05879856 1 0 -law_of_equivalent_proportions%1:09:00:: 05881578 1 0 -law_of_gravitation%1:09:00:: 05881867 1 0 -law_of_independent_assortment%1:09:00:: 05884984 1 0 -law_of_large_numbers%1:09:00:: 05875148 1 0 -law_of_mass_action%1:09:00:: 05882537 1 0 -law_of_moses%1:14:00:: 08455520 1 0 -law_of_motion%1:09:00:: 05885622 1 0 -law_of_multiple_proportions%1:09:00:: 05882226 1 0 -law_of_nations%1:14:00:: 08454003 1 6 -law_of_nature%1:09:00:: 05872982 1 3 -law_of_parsimony%1:09:00:: 05990738 1 0 -law_of_partial_pressures%1:09:00:: 05876469 1 0 -law_of_proximity%1:09:00:: 06250771 1 0 -law_of_reciprocal_proportions%1:09:00:: 05881578 1 0 -law_of_segregation%1:09:00:: 05884736 1 0 -law_of_similarity%1:09:00:: 06251033 1 0 -law_of_the_land%1:14:00:: 08454445 1 0 -law_of_thermodynamics%1:09:00:: 05882793 1 0 -law_of_volumes%1:09:00:: 05878229 1 0 -law_offender%1:18:00:: 10754449 1 0 -law_officer%1:18:00:: 10249459 1 1 -law_practice%1:04:00:: 00632104 1 0 -law_school%1:14:00:: 08283051 1 1 -law_student%1:18:00:: 10249869 1 0 -lawbreaker%1:18:00:: 10754449 1 0 -lawcourt%1:06:00:: 03649459 1 0 -lawful%3:00:00:: 01395617 1 0 -lawful%5:00:00:legal:00 01401224 4 0 -lawful%5:00:00:legitimate:00 01407267 3 0 -lawful%5:00:00:regular:00 01959807 2 0 -lawfully%4:02:00:: 00251820 2 0 -lawfully%4:02:01:: 00363218 1 0 -lawfully-begotten%5:00:00:legitimate:00 01406853 1 0 -lawfulness%1:07:00:: 04809784 1 0 -lawgiver%1:18:00:: 10249270 1 0 -lawless%5:00:00:uncontrolled:00 00600192 1 1 -lawless%5:00:00:unlawful:00 01396333 3 0 -lawless%5:00:02:unlawful:00 01396503 2 0 -lawlessly%4:02:00:: 00154536 1 0 -lawlessness%1:07:00:: 04811126 2 0 -lawlessness%1:26:00:: 13973059 1 0 -lawmaker%1:18:00:: 10249270 1 0 -lawmaking%1:04:00:: 01125693 1 0 -lawman%1:18:00:: 10249459 1 2 -lawn%1:15:00:: 08591592 1 14 -lawn_bowling%1:04:00:: 00462804 1 0 -lawn_cart%1:06:00:: 02797295 1 0 -lawn_chair%1:06:00:: 03649674 1 0 -lawn_furniture%1:06:00:: 03649797 1 0 -lawn_mower%1:06:00:: 03649909 1 0 -lawn_party%1:14:00:: 08255508 1 0 -lawn_tennis%1:04:00:: 00482298 1 0 -lawn_tool%1:06:00:: 03418242 1 0 -lawrence%1:15:00:: 09088556 7 0 -lawrence%1:18:00:: 11120146 6 0 -lawrence%1:18:01:: 11120368 5 0 -lawrence%1:18:02:: 11120530 4 0 -lawrence%1:18:03:: 11120633 3 0 -lawrence%1:18:04:: 11120834 2 0 -lawrence%1:18:05:: 11121108 1 0 -lawrence_durrell%1:18:00:: 10946286 1 0 -lawrence_george_durrell%1:18:00:: 10946286 1 0 -lawrence_of_arabia%1:18:00:: 11120834 1 0 -lawrence_peter_berra%1:18:00:: 10848946 1 0 -lawrencium%1:27:00:: 14643323 1 0 -laws%1:10:00:: 06451891 1 0 -lawson's_cedar%1:20:00:: 11635433 1 0 -lawson's_cypress%1:20:00:: 11635433 1 0 -lawsuit%1:04:00:: 01182654 1 0 -lawton%1:15:00:: 09132266 1 0 -lawyer%1:18:00:: 10249950 1 15 -lawyer-client_relation%1:24:00:: 13839662 1 0 -lawyer_bush%1:20:00:: 12653436 1 0 -lawyer_cane%1:20:00:: 12586725 1 0 -lawyerbush%1:20:00:: 12653436 1 0 -lax%3:00:01:: 02403671 3 0 -lax%3:00:02:: 02405160 2 0 -lax%5:00:00:negligent:00 00755482 1 1 -lax%5:00:00:unconstipated:00 00638841 4 0 -laxation%1:04:00:: 00147862 2 0 -laxation%1:22:00:: 13459088 1 0 -laxative%1:06:00:: 03650084 1 0 -laxative%3:00:00:: 00637857 1 0 -laxity%1:07:00:: 04666416 2 0 -laxity%1:26:00:: 14546042 1 0 -laxly%4:02:00:: 00387254 1 0 -laxness%1:07:00:: 04666416 1 1 -laxness%1:26:00:: 14546042 2 0 -lay%1:10:00:: 06378298 2 0 -lay%1:10:01:: 07049713 1 0 -lay%2:35:00:: 01544692 2 11 -lay%2:35:01:: 01494310 1 24 -lay%2:35:02:: 01545079 4 4 -lay%2:36:00:: 01651972 3 5 -lay%2:40:00:: 02307261 5 1 -lay%5:00:00:nonprofessional:00 01869975 2 0 -lay%5:00:00:profane:00 02057226 1 1 -lay-by%1:06:00:: 04020744 1 0 -lay-up%1:04:00:: 00111660 1 0 -lay_aside%2:40:00:: 02265979 1 0 -lay_away%2:40:00:: 02305856 1 0 -lay_claim%2:40:00:: 02275365 1 1 -lay_down%2:31:00:: 00665476 1 8 -lay_eyes_on%2:39:00:: 02130160 1 1 -lay_figure%1:06:00:: 03650682 1 0 -lay_hands_on%2:35:00:: 01212024 1 0 -lay_in%2:40:00:: 02281093 1 0 -lay_into%2:35:00:: 01242537 1 0 -lay_off%2:41:00:: 02403537 2 1 -lay_off%2:42:00:: 02680814 1 3 -lay_on_the_line%2:41:00:: 02545578 1 0 -lay_out%2:30:00:: 00407848 2 1 -lay_out%2:31:00:: 00711040 5 0 -lay_out%2:32:00:: 00772967 4 0 -lay_out%2:35:00:: 01474209 1 7 -lay_out%2:40:00:: 02366575 3 0 -lay_over%2:35:00:: 01469263 2 1 -lay_over%2:42:00:: 02652922 1 1 -lay_reader%1:18:00:: 10250712 1 0 -lay_to_rest%2:41:00:: 02456493 1 2 -lay_up%2:30:00:: 00512482 1 0 -lay_waste_to%2:30:00:: 00388635 1 0 -lay_witness%1:18:00:: 10250873 1 0 -layabout%1:18:00:: 10197967 1 0 -layby%1:06:00:: 04020744 1 0 -layer%1:05:00:: 01463259 5 0 -layer%1:05:01:: 01793159 4 0 -layer%1:06:00:: 03650173 1 8 -layer%1:09:00:: 06246896 3 0 -layer%1:15:00:: 08591680 2 1 -layer%2:35:00:: 01262113 1 3 -layer_cake%1:13:00:: 07633369 1 0 -layered%5:00:00:stratified:00 00208749 1 0 -layette%1:06:00:: 03650551 1 1 -layia%1:20:00:: 11988419 1 0 -layia_platyglossa%1:20:00:: 11988596 1 0 -laying%1:22:00:: 13506477 1 2 -laying_claim%1:04:00:: 00082870 1 0 -laying_on%1:04:00:: 00138441 1 1 -laying_on_of_hands%1:04:00:: 00165793 2 0 -laying_on_of_hands%1:04:01:: 00699872 1 0 -laying_waste%1:04:00:: 00217773 1 0 -layman%1:18:00:: 10250527 1 2 -layoff%1:04:00:: 00229814 1 2 -layout%1:04:00:: 01010901 2 1 -layout%1:09:00:: 05837271 1 1 -layover%1:04:00:: 01056411 1 0 -layperson%1:18:00:: 10250527 1 0 -layup%1:04:00:: 00111660 1 0 -lazar%1:18:01:: 10254670 1 0 -lazar_house%1:06:00:: 03650803 1 0 -lazaret%1:06:00:: 03650803 1 0 -lazarette%1:06:00:: 03650803 1 0 -lazaretto%1:06:00:: 03650803 1 0 -lazaretto%1:06:02:: 03440876 2 0 -lazarus%1:18:00:: 10251002 2 0 -lazarus%1:18:01:: 10251125 1 0 -laze%2:41:00:: 02417504 1 1 -lazily%4:02:00:: 00387525 1 2 -lazily%4:02:01:: 00361781 2 0 -laziness%1:04:00:: 00758795 3 0 -laziness%1:04:01:: 01064613 2 0 -laziness%1:07:00:: 04637108 1 0 -lazio%1:15:00:: 08806735 1 0 -lazuli%1:27:00:: 14929797 1 0 -lazuline%1:07:00:: 04969242 1 0 -lazy%5:00:00:idle:00 00294579 2 2 -lazy%5:00:00:slow:01 00981304 1 4 -lazy_daisy_stitch%1:06:00:: 03650973 1 0 -lazy_susan%1:06:00:: 04501837 1 0 -lazybones%1:18:00:: 10251329 1 0 -lazzaro_spallanzani%1:18:00:: 11309449 1 0 -lb%1:23:00:: 13720096 1 10 -lbf.%1:23:00:: 13648184 1 0 -lbj%1:18:00:: 11088346 1 0 -lcd%1:06:00:: 03676759 1 0 -lcm%1:09:00:: 05860639 1 0 -ld.%1:14:00:: 08185211 1 0 -ldl%1:27:00:: 14943009 1 0 -ldl_cholesterol%1:27:00:: 15058987 1 0 -le%1:26:00:: 14221138 1 0 -le_carre%1:18:00:: 11122825 1 0 -le_chatelier%1:18:00:: 11122977 1 0 -le_chatelier's_law%1:09:00:: 05883688 1 0 -le_chatelier's_principle%1:09:00:: 05883688 1 0 -le_chatelier-braun_principle%1:09:00:: 05883688 1 0 -le_chatelier_principle%1:09:00:: 05883688 1 0 -le_corbusier%1:18:00:: 11123124 1 0 -le_douanier_rousseau%1:18:00:: 11272972 1 0 -le_duc_tho%1:18:00:: 11123439 1 0 -le_gallienne%1:18:00:: 11124831 1 0 -le_havre%1:15:00:: 08936303 1 0 -le_notre%1:18:00:: 11127011 1 0 -lea%1:15:00:: 08616050 2 0 -lea%1:23:00:: 13654571 1 0 -leach%1:22:00:: 13506587 1 0 -leach%2:30:00:: 00488617 3 0 -leach%2:38:00:: 02071627 2 0 -leach%2:38:01:: 02071837 1 0 -leaching%1:22:00:: 13506587 1 0 -leacock%1:18:00:: 11121451 1 0 -lead%1:04:00:: 01256270 17 0 -lead%1:04:01:: 01256743 4 3 -lead%1:06:00:: 03651084 15 0 -lead%1:06:01:: 03604843 16 0 -lead%1:06:02:: 03651265 14 0 -lead%1:06:03:: 03652932 13 0 -lead%1:07:01:: 05051088 12 0 -lead%1:07:02:: 05157143 1 7 -lead%1:09:00:: 05826914 3 3 -lead%1:10:00:: 06271192 11 0 -lead%1:10:01:: 06270879 6 1 -lead%1:10:02:: 06651577 10 0 -lead%1:15:00:: 08592165 9 0 -lead%1:18:00:: 10648696 8 0 -lead%1:23:00:: 13596422 7 0 -lead%1:25:00:: 13893129 5 1 -lead%1:27:00:: 14643467 2 6 -lead%2:32:00:: 00771632 5 17 -lead%2:32:01:: 00813790 14 0 -lead%2:36:00:: 01732921 10 8 -lead%2:38:00:: 01999423 4 17 -lead%2:38:01:: 01999798 1 40 -lead%2:38:02:: 01999218 12 2 -lead%2:41:00:: 02440244 7 13 -lead%2:41:12:: 02555908 9 9 -lead%2:42:00:: 02685951 6 13 -lead%2:42:01:: 02687385 8 10 -lead%2:42:02:: 02686625 13 1 -lead%2:42:03:: 02686471 11 5 -lead%2:42:04:: 02635659 2 35 -lead%2:42:12:: 02635956 3 27 -lead-acid_accumulator%1:06:00:: 03651388 1 0 -lead-acid_battery%1:06:00:: 03651388 1 0 -lead-colored%5:00:00:colored:00 00398482 1 0 -lead-coloured%5:00:00:colored:00 00398482 1 0 -lead-free%5:00:00:unleaded:00 01397251 1 0 -lead-in%1:06:00:: 03651605 2 0 -lead-in%1:10:00:: 06270879 1 0 -lead_acetate%1:27:00:: 14989243 1 0 -lead_arsenate%1:27:00:: 14600238 1 0 -lead_astray%2:32:00:: 00854420 3 0 -lead_astray%2:38:00:: 02000288 2 0 -lead_astray%2:41:00:: 02580392 1 0 -lead_bank%1:14:00:: 08418885 1 0 -lead_by_the_nose%2:32:00:: 00839194 1 0 -lead_carbonate%1:27:00:: 15097722 1 0 -lead_chromate%1:27:00:: 14811932 1 0 -lead_colic%1:26:00:: 14070055 1 0 -lead_glass%1:27:00:: 14882117 1 0 -lead_line%1:06:00:: 03651947 1 0 -lead_off%2:30:00:: 00348746 2 0 -lead_off%2:41:00:: 02580392 1 1 -lead_on%2:32:00:: 00783956 1 1 -lead_on%2:41:00:: 02575082 2 0 -lead_ore%1:27:00:: 14933663 1 0 -lead_pencil%1:06:01:: 03652100 1 1 -lead_plant%1:20:00:: 12504306 1 0 -lead_poisoning%1:26:00:: 14069895 1 0 -lead_sheet%1:10:00:: 06815458 1 1 -lead_story%1:10:00:: 06271192 1 0 -lead_tetraethyl%1:27:00:: 14600357 1 0 -lead_time%1:28:00:: 15289524 1 0 -lead_tree%1:20:00:: 11762433 1 0 -lead_up%2:30:00:: 00539546 1 4 -leadbelly%1:18:00:: 11123262 1 0 -leaded%3:00:00:: 01396800 2 0 -leaded%5:00:00:fixed:00 01060304 1 1 -leaded%5:00:00:spaced:00 01656129 3 0 -leaded_bronze%1:27:00:: 14933569 1 0 -leaded_gasoline%1:27:00:: 14687261 1 0 -leaded_petrol%1:27:00:: 14687261 1 0 -leaden%3:01:00:: 02754012 3 0 -leaden%5:00:00:cloudy:00 00462249 1 2 -leaden%5:00:00:dull:03 00807667 5 0 -leaden%5:00:00:effortful:00 00837756 4 0 -leaden%5:00:00:heavy:02 01189853 2 1 -leader%1:06:00:: 03234795 2 0 -leader%1:18:00:: 09623038 1 23 -leaders%1:14:00:: 08381436 1 10 -leadership%1:04:00:: 01256417 1 9 -leadership%1:09:00:: 05617310 4 3 -leadership%1:14:00:: 08381436 2 6 -leadership%1:26:00:: 14433361 3 4 -leading%1:04:00:: 01256417 2 0 -leading%1:06:00:: 03651265 1 0 -leading%3:00:00:: 00198904 3 2 -leading%5:00:00:superior:01 02339341 2 3 -leading%5:00:00:up:00 02490631 4 1 -leading%5:00:02:major:06 01472790 1 4 -leading_astray%1:04:00:: 00160297 1 0 -leading_edge%1:06:00:: 03651739 1 0 -leading_indicator%1:10:00:: 06640977 1 0 -leading_lady%1:18:00:: 10251417 1 0 -leading_light%1:18:00:: 10276238 1 0 -leading_man%1:18:00:: 10251517 1 1 -leading_off%1:04:00:: 00160297 1 0 -leading_question%1:10:00:: 07195765 1 0 -leading_rein%1:06:00:: 03651843 1 0 -leading_tone%1:10:00:: 06858539 1 0 -leadless%3:00:00:: 01397125 1 0 -leadplant%1:20:00:: 12504306 1 0 -leadwort%1:20:00:: 12098524 1 0 -leadwort_family%1:20:00:: 12097927 1 0 -leaf%1:06:00:: 03652226 3 0 -leaf%1:10:00:: 06256229 2 0 -leaf%1:20:00:: 13152742 1 20 -leaf%2:29:00:: 00095747 3 0 -leaf%2:38:00:: 02089837 2 0 -leaf%2:39:10:: 02153023 1 0 -leaf-book%1:10:00:: 06407372 1 0 -leaf-cutter%1:05:00:: 02211444 1 0 -leaf-cutter_bee%1:05:00:: 02211444 1 0 -leaf-cutting_bee%1:05:00:: 02211444 1 0 -leaf-foot_bug%1:05:00:: 02240068 1 0 -leaf-footed_bug%1:05:00:: 02240068 1 0 -leaf-like%5:00:00:leafy:00 01702543 1 0 -leaf-miner%1:05:00:: 02198129 1 0 -leaf-nosed_bat%1:05:00:: 02141713 1 0 -leaf-nosed_snake%1:05:00:: 01729672 1 0 -leaf-roller%1:05:00:: 02284224 1 0 -leaf_beet%1:13:00:: 07720277 2 0 -leaf_beet%1:20:00:: 11832671 1 0 -leaf_beetle%1:05:00:: 02169497 1 0 -leaf_blade%1:20:00:: 13131883 1 0 -leaf_blight%1:26:00:: 14217897 1 0 -leaf_bud%1:20:00:: 13165286 1 0 -leaf_bug%1:05:00:: 02237424 1 0 -leaf_cast%1:26:00:: 14218158 1 0 -leaf_disease%1:26:00:: 14218057 1 0 -leaf_fat%1:27:00:: 14864825 1 0 -leaf_form%1:25:00:: 13862407 1 0 -leaf_insect%1:05:00:: 02232223 1 0 -leaf_lard%1:27:00:: 14864825 1 0 -leaf_lettuce%1:13:00:: 07724654 2 0 -leaf_lettuce%1:20:00:: 11987126 1 0 -leaf_miner%1:05:00:: 02198129 1 0 -leaf_mold%1:27:00:: 14933911 1 0 -leaf_mould%1:27:00:: 14933911 1 0 -leaf_mustard%1:13:00:: 07713763 2 0 -leaf_mustard%1:20:00:: 11878633 1 0 -leaf_node%1:20:00:: 13154190 1 0 -leaf_roller%1:05:00:: 02284224 1 0 -leaf_scorch%1:26:00:: 14282258 1 0 -leaf_shape%1:25:00:: 13862407 1 0 -leaf_soil%1:27:00:: 14933911 1 0 -leaf_spring%1:06:00:: 03652389 1 0 -leafage%1:20:00:: 13152742 1 0 -leafed%5:00:00:leafy:00 01702357 1 0 -leafhopper%1:05:00:: 02259212 1 1 -leafing%1:22:00:: 13483190 1 0 -leafless%3:00:00:: 01703494 1 0 -leaflet%1:08:00:: 05389625 1 1 -leaflet%1:10:00:: 06413889 3 0 -leaflet%1:20:00:: 13154077 2 0 -leaflike%5:00:00:leafy:00 01702543 1 0 -leafnose_bat%1:05:00:: 02141713 1 0 -leafstalk%1:20:00:: 13131618 1 0 -leafy%3:00:00:: 01700414 1 0 -leafy-stemmed%5:00:00:caulescent:00 00321535 1 0 -leafy_liverwort%1:20:00:: 11543105 1 0 -leafy_spurge%1:20:00:: 12919847 1 0 -leafy_vegetable%1:13:00:: 07709333 1 0 -league%1:14:00:: 08305114 2 2 -league%1:14:01:: 08231184 1 9 -league%1:23:00:: 13652066 3 0 -league%2:30:00:: 00369064 1 1 -league_of_iroquois%1:14:00:: 08305277 1 0 -league_of_nations%1:14:00:: 08195323 1 0 -league_together%2:41:00:: 02430078 1 0 -leak%1:10:00:: 07215185 5 0 -leak%1:11:00:: 07436661 4 0 -leak%1:17:00:: 09337048 1 1 -leak%1:22:00:: 13506727 3 0 -leak%1:26:00:: 14284581 2 0 -leak%2:30:00:: 00258109 4 0 -leak%2:30:04:: 00529759 3 0 -leak%2:32:00:: 00937023 1 1 -leak%2:32:01:: 00936169 2 0 -leak_fungus%1:20:00:: 12974062 1 0 -leak_out%2:32:00:: 00936169 1 4 -leakage%1:11:00:: 07436661 1 1 -leaker%1:18:00:: 10251612 1 0 -leakey%1:18:00:: 11121640 3 0 -leakey%1:18:01:: 11121876 2 0 -leakey%1:18:02:: 11122114 1 0 -leakiness%1:26:00:: 14577872 1 0 -leakproof%5:00:00:tight:02 01398865 1 0 -leaky%3:00:00:: 01397385 1 0 -leaky%5:00:00:communicative:00 00496259 3 0 -leaky%5:00:00:incontinent:00 00592113 2 0 -leal%5:00:00:loyal:00 00962135 1 0 -lean%1:07:00:: 05068080 1 0 -lean%2:31:10:: 00688261 4 1 -lean%2:35:00:: 01606574 2 6 -lean%2:38:00:: 02038357 1 24 -lean%2:38:07:: 02039013 5 0 -lean%2:42:01:: 02719399 3 3 -lean%3:00:00:: 02027003 2 0 -lean%3:00:04:: 00988232 1 5 -lean%5:00:00:unprofitable:00 01872374 4 0 -lean%5:00:01:insufficient:00 02337188 3 0 -lean-to%1:06:00:: 03652729 1 0 -lean-to_tent%1:06:00:: 03652826 1 0 -lean_against%2:35:00:: 01590007 1 5 -lean_back%2:38:00:: 02039156 1 3 -lean_on%2:35:00:: 01590007 1 6 -leander%1:18:00:: 09554505 1 0 -leaner%1:04:00:: 00105624 1 0 -leaning%1:04:00:: 00070363 4 0 -leaning%1:07:00:: 05068080 3 0 -leaning%1:09:00:: 06199561 2 0 -leaning%1:12:00:: 07499113 1 0 -leaning%5:00:00:inclined:01 01234527 1 1 -leaning_tower%1:06:00:: 03652530 1 0 -leaning_tower_of_pisa%1:06:00:: 03652530 1 0 -leanness%1:07:00:: 05001482 2 0 -leanness%1:07:01:: 05113462 1 0 -leap%1:04:00:: 00120202 1 5 -leap%1:07:00:: 05086740 4 0 -leap%1:11:00:: 07358985 2 2 -leap%1:11:01:: 07414222 3 0 -leap%2:30:00:: 00560391 2 1 -leap%2:38:00:: 01963942 1 22 -leap%2:38:10:: 01965156 4 0 -leap%2:38:11:: 02105082 3 0 -leap_day%1:28:00:: 15159426 1 0 -leap_out%2:38:00:: 01966501 2 0 -leap_out%2:42:00:: 02674564 1 0 -leap_second%1:28:00:: 15235334 1 0 -leap_year%1:28:00:: 15202230 1 0 -leaper%1:18:00:: 09869171 1 0 -leapfrog%1:04:00:: 00485998 2 0 -leapfrog%1:04:01:: 00486130 1 2 -leapfrog%2:30:00:: 00249188 2 0 -leapfrog%2:38:00:: 01965911 1 0 -leaping%1:04:00:: 00120202 1 1 -lear%1:18:00:: 11122439 1 0 -lear%1:18:01:: 09601049 2 0 -learn%2:31:00:: 00597915 1 90 -learn%2:31:01:: 00598954 2 53 -learn%2:31:02:: 00599992 4 3 -learn%2:31:03:: 00604576 3 6 -learn%2:32:00:: 00829107 5 2 -learn%2:32:02:: 00920336 6 0 -learned%3:00:02:: 01637032 3 0 -learned%5:00:00:educated:00 00830051 2 3 -learned%5:00:00:scholarly:00 02084358 1 7 -learned_person%1:18:00:: 10206887 1 0 -learned_profession%1:04:00:: 00610373 1 0 -learned_reaction%1:04:00:: 00864535 1 1 -learned_response%1:04:00:: 00864535 1 0 -learnedly%4:02:00:: 00330337 1 0 -learnedness%1:09:00:: 05985999 1 0 -learner%1:18:00:: 10251779 1 1 -learner%1:18:01:: 09801864 2 0 -learner's_dictionary%1:10:00:: 06419757 1 0 -learner's_permit%1:10:00:: 06550763 1 0 -learning%1:09:00:: 05752544 1 4 -learning%1:09:02:: 05985999 2 1 -learning_ability%1:09:00:: 05618056 1 0 -learning_curve%1:10:00:: 07004962 1 0 -learning_disability%1:26:00:: 14060688 1 0 -learning_disorder%1:26:00:: 14060688 1 0 -leary%1:18:00:: 11122579 1 0 -lease%1:10:00:: 06523132 2 1 -lease%1:21:00:: 13248393 1 1 -lease%1:28:00:: 15274863 3 0 -lease%2:40:00:: 02208537 4 0 -lease%2:40:01:: 02208903 3 0 -lease%2:41:00:: 02460199 1 2 -lease%2:41:01:: 02460619 2 0 -lease-lend%1:04:00:: 01109114 1 0 -lease_giver%1:18:00:: 10255096 1 0 -leased%3:00:02:: 00360041 1 0 -leasehold%1:21:00:: 13249154 1 0 -leaseholder%1:18:00:: 10252075 1 0 -leash%1:04:00:: 01145688 3 0 -leash%1:06:00:: 03652932 1 2 -leash%1:23:00:: 13744044 2 0 -leash%2:35:00:: 01289155 1 0 -least%1:09:00:: 05671526 1 0 -least%3:00:00:: 01556061 1 2 -least%4:02:00:: 00111758 1 5 -least_bittern%1:05:00:: 02012185 1 0 -least_common_multiple%1:09:00:: 05860639 1 0 -least_effort%1:04:00:: 00624436 1 0 -least_of_all%4:02:00:: 00111910 1 1 -least_resistance%1:04:00:: 00624436 1 0 -least_sandpiper%1:05:00:: 02027357 1 0 -least_shrew%1:05:00:: 01893399 1 0 -least_squares%1:09:00:: 06021013 1 0 -leastways%4:02:00:: 00104661 1 0 -leastwise%4:02:00:: 00104661 1 0 -leather%1:27:00:: 14759722 1 11 -leather%2:35:00:: 01398682 1 0 -leather-leafed%5:00:00:leafy:00 01702627 1 0 -leather-leaved%5:00:00:leafy:00 01702627 1 0 -leather_carp%1:05:00:: 01440160 1 0 -leather_fern%1:20:01:: 13200986 2 0 -leather_fern%1:20:02:: 13206178 1 0 -leather_flower%1:20:01:: 11730750 2 0 -leather_flower%1:20:02:: 11730933 1 0 -leather_soap%1:06:00:: 04124764 1 0 -leather_strip%1:06:00:: 03653220 1 0 -leatherback%1:05:00:: 01665541 1 0 -leatherback_turtle%1:05:00:: 01665541 1 0 -leathered%5:00:00:tough:01 02446070 1 1 -leatherette%1:06:00:: 03653110 1 0 -leatherfish%1:05:00:: 02654112 1 0 -leatherjack%1:05:00:: 02577662 1 0 -leatherjacket%1:05:01:: 02654112 1 0 -leatherjacket%1:05:02:: 02577662 2 0 -leatherjacket%1:05:03:: 02312325 3 0 -leatherleaf%1:20:00:: 12234318 2 0 -leatherleaf%1:20:01:: 13173488 1 0 -leatherleaf_fern%1:20:00:: 13200986 1 0 -leatherleaf_saxifrage%1:20:00:: 12799269 1 0 -leatherleaf_wood_fern%1:20:00:: 13194036 1 0 -leatherlike%5:00:00:tough:01 02446070 1 0 -leatherneck%1:18:00:: 10294139 1 0 -leatherwood%1:20:01:: 12347639 2 0 -leatherwood%1:20:02:: 12750767 1 0 -leatherwork%1:06:00:: 03653376 1 0 -leathery%5:00:00:tough:01 02446070 1 0 -leathery_grape_fern%1:20:00:: 12961393 1 0 -leathery_polypody%1:20:00:: 13173488 1 0 -leathery_turtle%1:05:00:: 01665541 1 0 -leave%1:04:00:: 00053097 3 0 -leave%1:10:00:: 06690114 2 1 -leave%1:28:00:: 15139130 1 2 -leave%2:30:02:: 00136991 4 27 -leave%2:30:03:: 00360092 12 5 -leave%2:31:02:: 00613018 14 3 -leave%2:31:05:: 00613683 2 63 -leave%2:38:00:: 02015598 5 20 -leave%2:38:01:: 02009433 1 146 -leave%2:40:01:: 02229055 10 7 -leave%2:40:02:: 02296153 13 3 -leave%2:40:06:: 02356230 9 8 -leave%2:41:00:: 02383440 8 14 -leave%2:42:00:: 02635659 7 16 -leave%2:42:01:: 02721438 6 19 -leave%2:42:02:: 02729414 3 56 -leave%2:42:03:: 02730135 11 5 -leave-taking%1:04:00:: 00053097 1 0 -leave_alone%2:30:00:: 00136991 1 0 -leave_behind%2:30:00:: 00360092 2 0 -leave_behind%2:30:03:: 00136991 3 0 -leave_behind%2:38:00:: 02081578 1 5 -leave_no_stone_unturned%2:35:00:: 01316209 1 0 -leave_of_absence%1:28:00:: 15139130 1 1 -leave_off%2:30:00:: 00572661 3 0 -leave_off%2:31:00:: 00615774 2 2 -leave_off%2:42:00:: 02684078 1 2 -leave_office%2:41:00:: 02382367 1 0 -leave_out%2:31:00:: 00614999 2 1 -leave_out%2:31:01:: 00615774 1 3 -leaved%5:00:00:leafy:00 01702357 1 0 -leaven%1:09:00:: 05869407 2 0 -leaven%1:27:00:: 14934031 1 0 -leaven%2:38:00:: 01975587 1 0 -leavened%3:00:00:: 01399748 1 1 -leavening%1:09:00:: 05869407 1 1 -leavening%1:27:00:: 14934031 2 0 -leaver%1:18:00:: 10004539 1 0 -leaving%1:04:00:: 00042757 1 1 -lebanese%1:18:00:: 09720595 1 0 -lebanese%3:01:00:: 03080619 1 0 -lebanese_hizballah%1:14:00:: 08023374 1 0 -lebanese_monetary_unit%1:23:00:: 13694825 1 0 -lebanese_pound%1:23:00:: 13694936 1 0 -lebanese_republic%1:15:00:: 08957381 1 0 -lebanon%1:15:00:: 08957381 1 0 -lebensraum%1:23:00:: 13778530 1 0 -lebistes%1:05:00:: 01448496 1 0 -lebistes_reticulatus%1:05:00:: 01448594 1 0 -leboyer_method%1:22:00:: 13506906 1 0 -leboyer_method_of_childbirth%1:22:00:: 13506906 1 0 -lecanopteris%1:20:00:: 13176000 1 0 -lecanora%1:20:00:: 12988158 1 0 -lecanoraceae%1:20:00:: 12987834 1 0 -leccinum%1:20:00:: 13058447 1 0 -leccinum_fibrillosum%1:20:00:: 13058608 1 0 -lech%1:18:00:: 10552980 1 0 -lech_after%2:37:00:: 01828256 1 0 -lech_walesa%1:18:00:: 11370990 1 0 -lechanorales%1:20:00:: 12987652 1 0 -lechatelierite%1:27:00:: 14879750 1 0 -lecher%1:18:00:: 10552980 1 1 -lecherous%5:00:00:sexy:00 02133431 1 0 -lecherousness%1:12:00:: 07489714 1 0 -lechery%1:04:00:: 00856733 1 0 -lechwe%1:05:00:: 02427576 1 0 -lecithin%1:27:00:: 14680040 1 0 -leclanche_cell%1:06:00:: 03653454 1 0 -lectern%1:06:00:: 03653583 1 0 -lectin%1:27:00:: 14889074 1 0 -lector%1:18:00:: 10252222 2 0 -lector%1:18:01:: 10252354 1 0 -lecture%1:04:00:: 00892861 3 0 -lecture%1:10:00:: 07240549 1 8 -lecture%1:10:01:: 06713930 2 0 -lecture%2:32:00:: 00824767 2 1 -lecture%2:32:01:: 00830761 1 4 -lecture_demonstration%1:04:00:: 00893088 1 0 -lecture_room%1:06:00:: 03653740 1 0 -lecturer%1:18:00:: 10252547 2 1 -lecturer%1:18:01:: 10252222 1 2 -lectureship%1:04:00:: 00594146 1 0 -lecturing%1:04:00:: 00892861 1 1 -lecythidaceae%1:20:00:: 12327209 1 0 -led%1:06:00:: 03666362 1 0 -leda%1:18:00:: 09601219 1 0 -ledbetter%1:18:00:: 11123262 1 0 -lede%1:10:00:: 06270879 1 0 -ledercillin_vk%1:06:00:: 03911251 1 0 -lederhosen%1:06:00:: 03653833 1 0 -ledge%1:17:00:: 09337253 1 1 -ledgeman%1:18:00:: 09873604 1 0 -ledger%1:06:00:: 03165211 2 1 -ledger%1:21:00:: 13404248 1 5 -ledger_board%1:06:00:: 03653975 1 0 -ledger_entry%1:21:00:: 13405296 1 0 -ledger_line%1:10:00:: 06862399 1 0 -ledger_paper%1:27:00:: 14934229 1 0 -ledum%1:20:00:: 12238306 1 0 -ledum_groenlandicum%1:20:00:: 12238491 1 0 -ledum_palustre%1:20:00:: 12238913 1 0 -lee%1:15:00:: 08592352 8 0 -lee%1:18:00:: 11123590 7 0 -lee%1:18:01:: 11123762 6 0 -lee%1:18:02:: 11123894 5 0 -lee%1:18:03:: 11124088 4 0 -lee%1:18:04:: 11124300 3 0 -lee%1:18:05:: 11124472 2 0 -lee%1:18:06:: 11124647 1 0 -lee%5:00:00:leeward:00 01400237 1 0 -lee's_birthday%1:28:00:: 15182569 1 0 -lee_buck_trevino%1:18:00:: 11348812 1 0 -lee_de_forest%1:18:00:: 10927424 1 0 -lee_harvey_oswald%1:18:00:: 11218153 1 0 -lee_krasner%1:18:00:: 11110396 1 0 -lee_side%1:15:00:: 08592352 1 0 -lee_strasberg%1:18:00:: 11321051 1 0 -lee_tide%1:11:00:: 07403601 1 0 -lee_trevino%1:18:00:: 11348812 1 0 -lee_yuen_kam%1:18:00:: 11124300 1 0 -leech%1:05:00:: 01937909 1 1 -leech%1:18:00:: 10252674 2 0 -leech%2:29:00:: 00086077 1 0 -leech_onto%2:35:00:: 01357141 1 0 -leechee%1:13:00:: 07766173 1 0 -leechlike%5:00:00:dependent:00 00726723 1 0 -leeds%1:15:00:: 08879028 1 0 -leek%1:13:00:: 07723039 2 0 -leek%1:20:00:: 12434239 1 0 -leer%1:07:00:: 04680027 2 0 -leer%1:10:00:: 06716483 1 0 -leer%2:39:00:: 02164288 1 3 -leering%5:00:00:malicious:00 00225408 1 2 -leering%5:00:00:sexy:00 02133653 2 0 -leery%5:00:00:distrustful:00 02464277 1 0 -lees%1:17:00:: 09337406 1 0 -leeuwenhoek%1:18:00:: 11129808 1 0 -leeward%1:15:00:: 08592352 2 0 -leeward%1:24:00:: 13829848 1 0 -leeward%3:00:00:: 01400098 1 0 -leeward%4:02:00:: 00095195 1 0 -leeward_islands%1:15:00:: 08749447 1 0 -leeward_side%1:24:00:: 13829980 1 0 -leeward_tide%1:11:00:: 07403601 1 0 -leeway%1:07:00:: 04749991 2 0 -leeway%1:22:00:: 13507210 1 0 -leflunomide%1:06:00:: 03654086 1 0 -left%1:04:00:: 00351168 5 0 -left%1:06:00:: 03654374 4 2 -left%1:08:00:: 05565548 3 2 -left%1:14:00:: 08416328 2 2 -left%1:15:00:: 08625462 1 19 -left%3:00:00:: 02032953 1 35 -left%3:00:02:: 02030935 4 0 -left%4:02:03:: 00387666 1 3 -left%5:00:00:left-handed:00 02029438 3 1 -left%5:00:00:unexhausted:00 00926505 2 14 -left-eyed%5:00:00:eyed:00 00954153 1 0 -left-hand%5:00:00:left-handed:00 02029438 1 2 -left-hand%5:00:00:left:00 02033323 2 0 -left-handed%3:00:00:: 02029167 1 0 -left-handed%5:00:00:ambiguous:00 00103196 5 0 -left-handed%5:00:00:counterclockwise:00 00442255 4 0 -left-handed%5:00:00:maladroit:00 00063563 6 0 -left-handed%5:00:01:legitimate:00 01406961 3 0 -left-handed%5:00:02:illegitimate:00 01408240 2 0 -left-handed_pitcher%1:18:00:: 10252921 1 0 -left-handedness%1:07:00:: 05067367 2 0 -left-handedness%1:26:00:: 13953356 1 0 -left-hander%1:18:00:: 10253122 2 1 -left-hander%1:18:01:: 10252921 1 2 -left-luggage_office%1:06:00:: 03011892 1 0 -left-of-center%5:00:00:left:02 02031335 1 1 -left-slanting%5:00:00:written:00 02284892 1 0 -left-wing%5:00:00:left:02 02031335 1 0 -left-winger%1:18:00:: 10619176 1 0 -left_atrioventricular_valve%1:08:00:: 05393813 1 0 -left_atrium%1:08:00:: 05393629 1 0 -left_atrium_of_the_heart%1:08:00:: 05393629 1 0 -left_bank%1:15:00:: 08933084 1 0 -left_brain%1:08:00:: 05477112 1 0 -left_coronary_artery%1:08:00:: 05344213 1 0 -left_field%1:04:00:: 00724433 2 0 -left_field%1:06:00:: 03654374 1 0 -left_fielder%1:18:00:: 10387586 1 2 -left_gastric_artery%1:08:00:: 05345978 1 0 -left_gastric_vein%1:08:00:: 05372725 1 0 -left_hand%1:08:00:: 05565548 1 6 -left_hander%1:18:00:: 10252921 1 0 -left_hemisphere%1:08:00:: 05477112 1 0 -left_over%5:00:00:unexhausted:00 00926505 1 3 -left_stage%1:15:00:: 08625684 1 0 -left_ventricle%1:08:00:: 05391977 1 4 -left_wing%1:14:00:: 08416328 1 0 -lefteye_flounder%1:05:00:: 02661017 1 0 -lefteyed_flounder%1:05:00:: 02661017 1 0 -leftfield%1:04:00:: 00724433 2 0 -leftfield%1:06:00:: 03654374 1 4 -lefthander%1:18:00:: 10252921 1 0 -leftish%5:00:00:left:02 02031248 1 0 -leftism%1:09:00:: 06218459 1 0 -leftist%1:18:00:: 10619176 1 0 -leftist%5:00:00:left:02 02031335 1 0 -leftmost%5:00:00:left:00 02033450 1 0 -leftover%1:24:00:: 13811184 1 0 -leftover%5:00:00:unexhausted:00 00926505 1 0 -leftovers%1:13:00:: 07563509 1 0 -lefty%1:18:00:: 10253122 1 2 -lefty%1:18:01:: 10252921 2 0 -leg%1:04:00:: 00306900 9 0 -leg%1:04:01:: 00307176 8 0 -leg%1:06:00:: 03654576 7 0 -leg%1:06:01:: 03654826 3 2 -leg%1:06:02:: 03906106 6 0 -leg%1:08:01:: 05560787 1 75 -leg%1:08:02:: 05561507 2 7 -leg%1:13:00:: 07655505 5 0 -leg%1:25:00:: 13913849 4 1 -leg-pull%1:04:00:: 00515159 1 0 -leg-pulling%1:04:00:: 00515159 1 0 -leg_bone%1:08:00:: 05594037 1 0 -leg_covering%1:06:00:: 03655072 1 0 -leg_curl%1:04:00:: 00630268 1 0 -leg_curling%1:04:00:: 00630268 1 1 -leg_exercise%1:04:00:: 00629911 1 0 -leg_extensor%1:04:00:: 00630401 1 1 -leg_it%2:38:00:: 01906322 1 0 -leg_of_lamb%1:13:00:: 07668588 1 1 -legacy%1:21:00:: 13263779 1 1 -legal%3:00:00:: 01400562 1 11 -legal%3:01:00:: 02754096 2 5 -legal%3:01:01:: 02754197 4 2 -legal%5:00:00:eligible:00 00852754 5 0 -legal%5:00:00:valid:00 02499148 3 3 -legal_action%1:04:00:: 01181902 1 0 -legal_age%1:28:00:: 15152062 1 1 -legal_assistant%1:18:00:: 10397886 1 0 -legal_blindness%1:26:00:: 14126908 1 0 -legal_brief%1:10:00:: 06543781 1 0 -legal_code%1:10:00:: 06667792 1 0 -legal_community%1:14:00:: 08112402 1 0 -legal_document%1:10:00:: 06479665 1 0 -legal_duty%1:04:00:: 01131515 1 0 -legal_expert%1:18:00:: 10227985 1 0 -legal_fee%1:21:00:: 13321992 1 0 -legal_fraud%1:04:00:: 00777806 1 0 -legal_guardian%1:18:00:: 10732314 1 0 -legal_holiday%1:28:00:: 15199592 1 2 -legal_injury%1:04:00:: 00744131 1 0 -legal_instrument%1:10:00:: 06479665 1 0 -legal_jointure%1:21:00:: 13264342 1 0 -legal_opinion%1:10:00:: 06551784 1 0 -legal_ouster%1:04:00:: 01194331 1 0 -legal_philosophy%1:09:00:: 06161718 1 0 -legal_power%1:07:00:: 05198427 1 0 -legal_principle%1:09:00:: 05956651 1 0 -legal_proceeding%1:04:00:: 01184814 1 0 -legal_profession%1:14:00:: 08112402 1 0 -legal_relation%1:24:00:: 13838205 1 0 -legal_representation%1:26:00:: 14000820 1 0 -legal_representative%1:18:00:: 10253296 1 0 -legal_residence%1:15:00:: 08559155 1 0 -legal_right%1:07:00:: 05177285 1 0 -legal_separation%1:04:00:: 01201429 2 0 -legal_separation%1:10:00:: 06541381 1 0 -legal_status%1:26:00:: 13952601 1 0 -legal_system%1:09:00:: 05903229 1 1 -legal_tender%1:21:00:: 13374008 1 0 -legal_transfer%1:04:00:: 01108753 1 0 -legalese%1:10:00:: 07071366 1 0 -legalisation%1:04:00:: 01195380 1 0 -legalise%2:41:00:: 02481436 1 0 -legalism%1:09:00:: 06212302 1 0 -legality%1:07:00:: 04809237 1 0 -legalization%1:04:00:: 01195380 1 0 -legalize%2:41:00:: 02481436 1 0 -legally%4:02:01:: 00251820 1 2 -legally%4:02:03:: 00124611 2 1 -legate%1:18:00:: 10253479 1 0 -legatee%1:18:00:: 10253611 1 1 -legateship%1:04:00:: 00594260 1 0 -legation%1:04:00:: 00594260 1 2 -legation%1:14:00:: 08403082 2 0 -legato%3:00:00:: 02294263 1 0 -legato%4:02:00:: 00387983 1 0 -legend%1:10:00:: 06346891 2 0 -legend%1:10:01:: 06371413 1 15 -legendary%5:00:00:known:00 01376355 1 3 -legendary%5:00:00:unreal:00 01935744 2 0 -legendary_creature%1:18:00:: 09487022 1 0 -leger%1:18:00:: 11124961 2 0 -leger%1:21:00:: 13404248 1 0 -leger_line%1:10:00:: 06862399 1 0 -legerdemain%1:04:00:: 00099951 1 0 -legerity%1:07:00:: 05003850 1 0 -legged%3:00:00:: 01429485 1 1 -legging%1:06:00:: 03655072 1 0 -leggy%5:00:01:tall:00 02385851 2 0 -leggy%5:00:02:tall:00 02386002 1 1 -leghorn%1:06:00:: 02859184 1 0 -legibility%1:07:00:: 04819285 2 0 -legibility%1:07:01:: 04703104 1 1 -legible%3:00:00:: 01404702 1 0 -legibly%4:02:00:: 00362276 1 0 -leging%1:06:00:: 03655072 1 0 -legion%1:14:00:: 08182962 4 0 -legion%1:14:01:: 08271801 3 0 -legion%1:14:02:: 08272248 2 0 -legion%1:14:03:: 08183802 1 1 -legion%5:00:00:many:00 01552419 1 0 -legionary%1:18:00:: 10253703 1 0 -legionary_ant%1:05:00:: 02220518 1 0 -legionella%1:05:00:: 01374224 1 0 -legionella_pneumophilia%1:05:00:: 01374224 1 0 -legionnaire%1:18:00:: 10253703 2 0 -legionnaire%1:18:01:: 10253887 1 0 -legionnaires'_disease%1:26:00:: 14148834 1 0 -legislate%2:41:00:: 02466670 1 1 -legislating%1:04:00:: 01125693 1 0 -legislation%1:04:00:: 01125693 2 2 -legislation%1:10:00:: 06535222 1 10 -legislative%3:01:00:: 02829422 2 3 -legislative%3:01:01:: 02829565 1 5 -legislative_act%1:10:00:: 06564387 1 0 -legislative_assembly%1:14:00:: 08163273 1 0 -legislative_body%1:14:00:: 08163273 1 0 -legislative_branch%1:14:00:: 08356375 1 0 -legislative_council%1:14:00:: 08163702 1 0 -legislatively%4:02:00:: 00129324 1 0 -legislator%1:18:00:: 10253995 1 8 -legislatorship%1:04:00:: 00594374 1 0 -legislature%1:14:00:: 08163273 1 5 -legitimacy%1:07:00:: 04810035 1 1 -legitimacy%1:07:01:: 04783247 2 0 -legitimate%2:30:00:: 00575359 3 0 -legitimate%2:32:02:: 00896677 2 0 -legitimate%2:41:00:: 02481436 1 0 -legitimate%3:00:00:: 01406640 1 1 -legitimate%5:00:00:established:00 01636205 3 1 -legitimate%5:00:00:legal:00 01401224 4 1 -legitimate%5:00:00:valid:00 02499301 2 1 -legitimately%4:02:00:: 00362831 2 0 -legitimately%4:02:01:: 00363218 1 1 -legitimation%1:04:00:: 01195380 2 0 -legitimation%1:04:01:: 01195584 1 0 -legitimatise%2:41:00:: 02481436 1 0 -legitimatize%2:41:00:: 02481436 1 0 -legitimise%2:41:00:: 02481436 1 0 -legitimize%2:41:00:: 02481436 1 1 -legless%3:00:00:: 01430009 1 0 -legless_lizard%1:05:00:: 01691217 1 0 -leglike%5:00:00:legged:00 01429676 1 0 -lego%1:06:00:: 03655295 1 0 -lego_set%1:06:00:: 03655295 1 0 -legs%1:07:00:: 05033046 1 0 -legume%1:13:00:: 07708798 3 0 -legume%1:20:00:: 11747468 1 1 -legume%1:20:02:: 11748002 2 0 -legume_family%1:20:00:: 11746776 1 0 -leguminosae%1:20:00:: 11746776 1 0 -leguminous%3:01:00:: 02755190 1 0 -leguminous_plant%1:20:00:: 11747468 1 0 -lehar%1:18:00:: 11125080 1 0 -lehigh_river%1:17:00:: 09337531 1 0 -lei%1:06:00:: 04606014 1 0 -leibnitz%1:18:00:: 11125193 1 0 -leibnitzian%3:01:00:: 03034283 1 0 -leibniz%1:18:00:: 11125193 1 0 -leibnizian%3:01:00:: 03034283 1 0 -leicester%1:15:00:: 08879197 2 0 -leicester%1:15:01:: 08884012 1 0 -leicestershire%1:15:00:: 08884012 1 0 -leichtlin's_camas%1:20:00:: 12449784 1 0 -leiden%1:15:00:: 08951077 1 0 -leiden_jar%1:06:00:: 03655470 1 1 -leigh%1:18:00:: 11125546 1 0 -leigh_hunt%1:18:00:: 11066772 1 0 -leiomyoma%1:26:00:: 14249384 1 0 -leiomyosarcoma%1:26:00:: 14241088 1 0 -leiopelma%1:05:00:: 01645278 1 0 -leiopelmatidae%1:05:00:: 01645093 1 0 -leiophyllum%1:20:00:: 12239100 1 0 -leiophyllum_buxifolium%1:20:00:: 12239240 1 0 -leipoa%1:05:00:: 01801479 1 0 -leipoa_ocellata%1:05:00:: 01801479 1 0 -leipzig%1:15:00:: 08771116 1 0 -leishmania%1:05:00:: 01418498 1 0 -leishmaniasis%1:26:00:: 14178077 1 0 -leishmaniasis_americana%1:26:00:: 14181409 1 0 -leishmaniosis%1:26:00:: 14178077 1 0 -leister%1:06:00:: 03655589 1 0 -leisure%1:04:00:: 01065286 2 2 -leisure%1:28:00:: 15137676 1 3 -leisure_time%1:28:00:: 15137676 1 0 -leisure_wear%1:06:00:: 03655720 1 0 -leisured%5:00:00:idle:00 00295235 1 0 -leisureliness%1:07:00:: 05062255 1 0 -leisurely%4:02:00:: 00104990 1 2 -leisurely%5:00:00:unhurried:00 01272176 1 0 -leitmotif%1:10:00:: 07028797 1 0 -leitmotiv%1:10:00:: 07028797 1 1 -leitneria%1:20:00:: 11742745 1 0 -leitneria_floridana%1:20:00:: 11742878 1 0 -leitneriaceae%1:20:00:: 11742531 1 0 -lek%1:23:00:: 13684632 1 0 -lekvar%1:13:00:: 07883156 1 0 -leland_stanford%1:18:00:: 11312556 1 0 -lem%1:06:00:: 03697366 1 0 -lemaireocereus%1:20:00:: 11848610 1 0 -lemaireocereus_chichipe%1:20:00:: 11848867 1 0 -lemaitre%1:18:00:: 11125646 1 0 -lemanderin%1:20:00:: 12711398 1 0 -lemma%1:10:00:: 06751833 1 4 -lemma%1:10:01:: 06344691 3 0 -lemma%1:20:00:: 13155451 2 0 -lemming%1:05:00:: 02344528 1 0 -lemmon%1:18:00:: 11125840 1 0 -lemmus%1:05:00:: 02344785 1 0 -lemmus_lemmus%1:05:00:: 02344918 1 0 -lemmus_trimucronatus%1:05:00:: 02345078 1 0 -lemna%1:20:00:: 11794791 1 0 -lemna_minor%1:20:00:: 11795049 1 0 -lemna_trisulca%1:20:00:: 11795216 1 0 -lemnaceae%1:20:00:: 11794267 1 0 -lemniscus%1:08:00:: 05475562 1 0 -lemnos%1:15:00:: 08790748 1 0 -lemon%1:06:00:: 03655838 5 0 -lemon%1:07:00:: 04966543 2 2 -lemon%1:09:00:: 05716342 4 0 -lemon%1:13:00:: 07749582 1 4 -lemon%1:20:00:: 12711596 3 0 -lemon-scented%5:00:00:odorous:00 01056558 1 0 -lemon-scented_gum%1:20:00:: 12338258 1 0 -lemon-wood%1:20:00:: 12669803 1 0 -lemon-wood_tree%1:20:00:: 12669803 1 0 -lemon_balm%1:13:00:: 07818689 2 0 -lemon_balm%1:20:00:: 12854600 1 0 -lemon_butter%1:13:00:: 07849186 1 0 -lemon_cheese%1:13:00:: 07643026 1 0 -lemon_curd%1:13:00:: 07643026 1 0 -lemon_drop%1:13:00:: 07599242 1 0 -lemon_extract%1:13:00:: 07828275 1 0 -lemon_geranium%1:20:01:: 12688372 1 0 -lemon_grass%1:20:00:: 12104384 2 0 -lemon_grass%1:27:00:: 15102167 1 0 -lemon_grove%1:06:00:: 03656011 1 0 -lemon_juice%1:13:00:: 07925229 1 0 -lemon_lily%1:20:00:: 12457091 1 0 -lemon_meringue_pie%1:13:00:: 07626287 1 1 -lemon_mint%1:20:01:: 12855710 2 0 -lemon_mint%1:20:02:: 12858987 1 0 -lemon_oil%1:13:00:: 07812790 1 0 -lemon_peel%1:13:00:: 07738760 1 0 -lemon_peel%1:13:01:: 07601175 2 0 -lemon_rind%1:13:00:: 07738760 1 0 -lemon_shark%1:05:00:: 01490670 1 0 -lemon_sole%1:05:00:: 02664399 4 0 -lemon_sole%1:05:01:: 02659808 5 0 -lemon_sole%1:05:02:: 02659478 6 0 -lemon_sole%1:05:03:: 02664642 3 0 -lemon_sole%1:13:01:: 07791535 2 0 -lemon_sole%1:13:02:: 07791663 1 0 -lemon_sumac%1:20:00:: 12763291 1 0 -lemon_tree%1:20:00:: 12711596 1 1 -lemon_yellow%1:07:00:: 04966543 1 0 -lemon_zest%1:13:00:: 07810745 1 0 -lemonade%1:13:00:: 07926250 1 1 -lemonade_mix%1:13:00:: 07594155 1 0 -lemongrass%1:20:00:: 12104384 2 0 -lemongrass%1:27:00:: 15102167 1 0 -lemongrass_oil%1:27:00:: 15102167 1 0 -lemonlike%5:00:00:sour:00 02369460 1 0 -lemonwood%1:20:00:: 12669803 2 0 -lemonwood%1:20:02:: 12670013 1 0 -lemonwood_tree%1:20:00:: 12669803 1 0 -lemonwood_tree%1:20:01:: 12662074 2 0 -lemony%5:00:00:sour:00 02369460 1 0 -lempira%1:23:00:: 13684965 1 0 -lemur%1:05:00:: 02496913 1 0 -lemur_catta%1:05:00:: 02497673 1 0 -lemuridae%1:05:00:: 02497408 1 0 -lemuroidea%1:05:00:: 02496576 1 0 -lena%1:17:00:: 09337686 1 0 -lena_calhoun_horne%1:18:00:: 11060535 1 0 -lena_horne%1:18:00:: 11060535 1 0 -lena_river%1:17:00:: 09337686 1 0 -lenard%1:18:00:: 11125957 1 0 -lend%2:40:00:: 02324182 2 7 -lend%2:40:01:: 02324478 1 7 -lend%2:42:00:: 02736391 3 2 -lend-lease%1:04:00:: 01109114 1 0 -lend_oneself%2:42:00:: 02707429 1 1 -lendable%5:00:00:available:00 00184676 1 0 -lender%1:18:00:: 10254392 1 0 -lending%1:04:00:: 01093666 1 1 -lending_institution%1:14:00:: 08055718 1 1 -lending_library%1:06:00:: 03656091 1 0 -lendl%1:18:00:: 11126081 1 0 -length%1:06:00:: 03656231 5 0 -length%1:07:00:: 05129201 1 38 -length%1:07:01:: 05051249 2 6 -length%1:07:02:: 05133107 3 3 -length%1:07:03:: 05129565 4 1 -length_of_service%1:07:00:: 05051734 1 0 -lengthen%2:30:00:: 00316631 2 0 -lengthen%2:30:01:: 00317700 1 1 -lengthened%5:00:00:long:01 01434218 1 0 -lengthening%1:04:00:: 01018366 1 1 -lengthily%4:02:00:: 00065575 1 1 -lengthiness%1:07:00:: 05133535 1 0 -lengthiness%1:07:01:: 05051896 2 0 -lengthways%3:00:00:: 01444813 1 0 -lengthways%4:02:00:: 00388209 1 0 -lengthwise%3:00:00:: 01444813 1 0 -lengthwise%4:02:00:: 00388209 1 1 -lengthy%5:00:00:long:02 01439155 1 6 -lenience%1:04:00:: 01071213 3 0 -lenience%1:07:00:: 04829922 1 0 -lenience%1:07:02:: 04638585 2 0 -leniency%1:04:00:: 01071213 3 0 -leniency%1:07:00:: 04829922 1 0 -leniency%1:07:02:: 04638585 2 0 -lenient%5:00:00:clement:01 00437744 3 0 -lenient%5:00:00:permissive:01 01763159 1 0 -lenient%5:00:00:undemanding:01 00711831 2 0 -leniently%4:02:00:: 00387254 1 0 -lenify%2:37:00:: 01765392 1 0 -lenin%1:18:00:: 11126490 1 0 -leningrad%1:15:00:: 09008454 1 0 -leninism%1:09:00:: 06215152 1 0 -lenitive%1:06:00:: 03656374 1 0 -lenitive%5:00:00:moderating:00 01341153 1 0 -lenity%1:07:00:: 04829922 1 0 -lennoaceae%1:20:00:: 12255452 1 0 -lennon%1:18:00:: 11126783 1 0 -lennox_robinson%1:18:00:: 11266117 1 0 -lens%1:06:00:: 03656484 1 5 -lens%1:06:01:: 03656957 5 0 -lens%1:08:00:: 05320362 4 0 -lens%1:10:00:: 06261060 3 0 -lens%1:20:00:: 12544027 2 0 -lens_cap%1:06:00:: 03657121 1 0 -lens_capsule%1:08:00:: 05326200 1 0 -lens_cortex%1:08:00:: 05320636 1 0 -lens_cover%1:06:00:: 03657121 1 0 -lens_culinaris%1:20:00:: 12544240 1 0 -lens_hood%1:06:00:: 03531808 1 0 -lens_implant%1:06:00:: 03657239 1 0 -lens_maker%1:18:00:: 10380000 1 0 -lens_nucleus%1:08:00:: 05320764 1 0 -lens_of_the_eye%1:08:00:: 05320362 1 0 -lens_system%1:06:00:: 03656484 1 0 -lense%1:06:00:: 03656484 1 0 -lensman%1:18:00:: 10426749 1 0 -lent%1:28:00:: 15242029 1 0 -lent_lily%1:20:00:: 12426978 1 0 -lente_iletin%1:08:00:: 05410901 1 0 -lente_insulin%1:08:00:: 05410901 1 0 -lenten%3:01:00:: 03080756 1 0 -lenten_rose%1:20:00:: 11734493 1 0 -lententide%1:28:00:: 15242029 1 0 -lentia%1:15:00:: 08846739 1 0 -lentibulariaceae%1:20:00:: 12871992 1 0 -lentic%3:00:00:: 00259433 1 0 -lenticel%1:20:00:: 13153888 1 0 -lenticular%5:00:00:convex:00 00537745 1 0 -lenticular_nucleus%1:08:00:: 05498048 1 0 -lentiform%5:00:00:convex:00 00537745 1 0 -lentiform_nucleus%1:08:00:: 05498048 1 0 -lentiginose%5:00:00:patterned:00 01788843 1 0 -lentiginous%5:00:00:patterned:00 01788843 1 0 -lentigo%1:08:00:: 05245192 1 0 -lentil%1:13:00:: 07725255 1 1 -lentil%1:20:00:: 12544240 3 0 -lentil%1:20:02:: 12544539 2 0 -lentil_plant%1:20:00:: 12544240 1 0 -lentil_soup%1:13:00:: 07588574 1 0 -lentinus%1:20:00:: 13001743 1 0 -lentinus_edodes%1:20:00:: 13001930 1 0 -lentinus_lepideus%1:20:00:: 13002209 1 0 -lentisk%1:20:00:: 12762049 1 0 -lentissimo%5:00:00:slow:02 00983119 1 0 -lento%4:02:00:: 00388494 1 0 -lento%5:00:00:slow:02 00983052 1 0 -leo%1:15:00:: 08686821 3 0 -leo%1:17:00:: 09337833 2 0 -leo%1:18:00:: 09752795 1 0 -leo_delibes%1:18:00:: 10928978 1 0 -leo_esaki%1:18:00:: 10960922 1 0 -leo_i%1:18:00:: 11127188 1 0 -leo_iii%1:18:00:: 11127419 1 0 -leo_ix%1:18:00:: 11127565 1 0 -leo_szilard%1:18:00:: 11328289 1 0 -leo_the_great%1:18:00:: 11127188 1 0 -leo_the_lion%1:15:00:: 08686821 1 0 -leo_tolstoy%1:18:00:: 11345378 1 0 -leo_x%1:18:00:: 11127752 1 0 -leo_xiii%1:18:00:: 11127996 1 0 -leon%1:15:00:: 08743691 3 0 -leon%1:15:01:: 09026360 2 0 -leon%1:15:02:: 09028367 1 0 -leon_battista_alberti%1:18:00:: 10811708 1 0 -leon_trotsky%1:18:00:: 11349318 1 0 -leonard%1:18:00:: 11128236 1 0 -leonard_bernstein%1:18:00:: 10848802 1 0 -leonard_bloomfield%1:18:00:: 10853767 1 0 -leonard_constant_lambert%1:18:00:: 11115131 1 0 -leonard_marx%1:18:00:: 11160861 1 0 -leonardesque%3:01:00:: 03034487 1 0 -leonardo%1:18:00:: 11128394 1 0 -leonardo_da_vinci%1:18:00:: 11128394 1 0 -leonberg%1:05:00:: 02111129 1 0 -leoncita%1:05:00:: 02491107 1 0 -leone%1:23:00:: 13685216 1 0 -leonhard_euler%1:18:00:: 10962611 1 0 -leonid_brezhnev%1:18:00:: 10863896 1 0 -leonid_fyodorovich_myasin%1:18:00:: 11163859 1 0 -leonid_ilyich_brezhnev%1:18:00:: 10863896 1 0 -leonidas%1:18:00:: 11128673 1 0 -leonide_fedorovitch_massine%1:18:00:: 11163859 1 0 -leonine%3:01:00:: 02755301 1 0 -leonotis%1:20:00:: 12850718 1 0 -leonotis_leonurus%1:20:00:: 12850906 1 0 -leonotis_nepetaefolia%1:20:00:: 12851094 1 0 -leonotis_nepetifolia%1:20:00:: 12851094 1 0 -leontief%1:18:00:: 11128834 1 0 -leontocebus%1:05:00:: 02490964 1 0 -leontocebus_oedipus%1:05:00:: 02491474 1 0 -leontocebus_rosalia%1:05:00:: 02491329 1 0 -leontodon%1:20:00:: 11988774 1 0 -leontodon_autumnalis%1:20:00:: 11989087 1 0 -leontopodium%1:20:00:: 11989266 1 0 -leontopodium_alpinum%1:20:00:: 11989393 1 0 -leontyne_price%1:18:00:: 11246408 1 0 -leonurus%1:20:00:: 12851304 1 0 -leonurus_cardiaca%1:20:00:: 12851469 1 0 -leopard%1:05:00:: 02128385 2 0 -leopard%1:27:00:: 14765422 1 0 -leopard's-bane%1:20:00:: 11961871 1 0 -leopard_cat%1:05:00:: 02126317 1 0 -leopard_frog%1:05:00:: 01641391 1 0 -leopard_lily%1:20:00:: 12416073 3 0 -leopard_lily%1:20:01:: 12427184 2 0 -leopard_lily%1:20:02:: 12428412 1 0 -leopard_lizard%1:05:00:: 01679962 1 0 -leopard_plant%1:20:00:: 11992166 1 0 -leopardbane%1:20:00:: 11961871 1 0 -leopardess%1:05:00:: 02128598 1 0 -leopold_antoni_stanislaw_stokowski%1:18:00:: 11318967 1 0 -leopold_kronecker%1:18:00:: 11111085 1 0 -leopold_stokowski%1:18:00:: 11318967 1 0 -leopoldville%1:15:00:: 08735164 1 0 -leotard%1:06:00:: 03657511 1 0 -leotards%1:06:01:: 04434932 1 0 -leotia_lubrica%1:20:00:: 13028937 1 0 -lepadidae%1:05:00:: 01998920 1 0 -lepanto%1:04:00:: 01283565 1 0 -lepas%1:05:00:: 01999048 1 0 -lepas_fascicularis%1:05:00:: 01999186 1 0 -lepechinia%1:20:00:: 12851673 1 0 -lepechinia_calycina%1:20:00:: 12851860 1 0 -leper%1:18:00:: 10254585 2 0 -leper%1:18:01:: 10254670 1 0 -leper_lily%1:20:00:: 12453186 1 0 -lepidium%1:20:00:: 11890329 1 0 -lepidium_alpina%1:20:00:: 11893916 1 0 -lepidium_sativum%1:20:00:: 11890507 1 0 -lepidobotryaceae%1:20:00:: 12701178 1 0 -lepidobotrys%1:20:00:: 12701666 1 0 -lepidochelys%1:05:00:: 01664244 1 0 -lepidochelys_kempii%1:05:00:: 01664492 1 0 -lepidochelys_olivacea%1:05:00:: 01664674 1 0 -lepidocrocite%1:27:00:: 14934353 1 0 -lepidocybium%1:05:00:: 02622408 1 0 -lepidocybium_flavobrunneum%1:05:00:: 02622547 1 0 -lepidodendraceae%1:20:00:: 13222035 1 0 -lepidodendrales%1:20:00:: 13221807 1 0 -lepidolite%1:27:00:: 14680261 1 0 -lepidomelane%1:27:00:: 14680415 1 0 -lepidophobia%1:26:00:: 14385243 1 0 -lepidoptera%1:05:00:: 02273545 1 0 -lepidopteran%1:05:00:: 02274024 1 0 -lepidopterist%1:18:00:: 10254761 1 0 -lepidopterologist%1:18:00:: 10254761 1 0 -lepidopterology%1:09:00:: 06072476 1 0 -lepidopteron%1:05:00:: 02274024 1 0 -lepidopterous_insect%1:05:00:: 02274024 1 0 -lepidoptery%1:09:00:: 06072476 1 0 -lepidosauria%1:05:00:: 01672767 1 0 -lepidote%5:00:00:rough:00 02241247 1 0 -lepidothamnus%1:20:00:: 11656380 1 0 -lepidothamnus_fonkii%1:20:00:: 11656549 1 0 -lepidothamnus_laxifolius%1:20:00:: 11656771 1 0 -lepiota%1:20:00:: 13013534 1 0 -lepiota_americana%1:20:00:: 13014409 1 0 -lepiota_cepaestipes%1:20:00:: 13014879 1 0 -lepiota_clypeolaria%1:20:00:: 13014741 1 0 -lepiota_morgani%1:20:00:: 13013965 1 0 -lepiota_naucina%1:20:00:: 13014097 1 0 -lepiota_procera%1:20:00:: 13013764 1 0 -lepiota_rhacodes%1:20:00:: 13014265 1 0 -lepiota_rubrotincta%1:20:00:: 13014581 1 0 -lepiotaceae%1:20:00:: 13012613 1 0 -lepisma%1:05:00:: 02270473 1 0 -lepisma_saccharina%1:05:00:: 02270623 1 0 -lepismatidae%1:05:00:: 02270326 1 0 -lepisosteidae%1:05:00:: 02641063 1 0 -lepisosteus%1:05:00:: 02641215 1 0 -lepisosteus_osseus%1:05:00:: 02641379 1 0 -lepista_irina%1:20:00:: 13021689 1 0 -lepomis%1:05:00:: 02563497 1 0 -lepomis_gibbosus%1:05:00:: 02563648 1 0 -lepomis_macrochirus%1:05:00:: 02563792 1 0 -lepomis_punctatus%1:05:00:: 02563949 1 0 -leporid%1:05:00:: 02323902 1 0 -leporid_mammal%1:05:00:: 02323902 1 0 -leporidae%1:05:00:: 02323715 1 0 -leporide%1:05:00:: 02328009 1 0 -leppy%1:05:00:: 02403920 1 0 -leprechaun%1:18:00:: 09541434 1 0 -lepromatous_leprosy%1:26:00:: 14136674 1 0 -leprose%5:00:00:rough:00 02241247 1 0 -leprosy%1:26:00:: 14136187 1 1 -leprosy_bacillus%1:05:00:: 01377804 1 0 -leprous%3:01:00:: 02829711 1 0 -leptarrhena%1:20:00:: 12799119 1 0 -leptarrhena_pyrolifolia%1:20:00:: 12799269 1 0 -leptinotarsa%1:05:00:: 02169833 1 0 -leptinotarsa_decemlineata%1:05:00:: 02169974 1 0 -leptocephalus%1:05:00:: 02311748 1 0 -leptodactylid%1:05:00:: 01642943 1 0 -leptodactylid_frog%1:05:00:: 01642943 1 0 -leptodactylidae%1:05:00:: 01642671 1 0 -leptodactylus%1:05:00:: 01643687 1 0 -leptodactylus_pentadactylus%1:05:00:: 01643896 1 0 -leptoglossus%1:05:00:: 02239934 1 0 -leptomeninges%1:08:00:: 05482328 1 0 -leptomeningitis%1:26:00:: 14349446 1 0 -lepton%1:17:00:: 09338013 2 0 -lepton%1:23:00:: 13675349 1 0 -leptopteris%1:20:00:: 12954185 1 0 -leptopteris_superba%1:20:00:: 12954353 1 0 -leptoptilus%1:05:00:: 02002875 1 0 -leptoptilus_crumeniferus%1:05:00:: 02003204 1 0 -leptoptilus_dubius%1:05:00:: 02003037 1 0 -leptorhine%3:00:00:: 01408593 1 0 -leptorrhine%3:00:00:: 01408593 1 0 -leptorrhinian%3:00:00:: 01408593 1 0 -leptorrhinic%3:00:00:: 01408593 1 0 -leptospira%1:05:00:: 01383502 1 0 -leptospirosis%1:26:00:: 14273365 1 0 -leptosporangiate%3:00:00:: 01409221 1 0 -leptosporangium%1:20:00:: 13093102 1 0 -leptotene%1:22:00:: 13507336 1 0 -leptotyphlopidae%1:05:00:: 01740393 1 0 -leptotyphlops%1:05:00:: 01740721 1 0 -leptotyphlops_humilis%1:05:00:: 01740885 1 0 -lepus%1:05:00:: 02326237 2 0 -lepus%1:17:00:: 09338243 1 0 -lepus_americanus%1:05:00:: 02327842 1 0 -lepus_arcticus%1:05:00:: 02327656 1 0 -lepus_californicus%1:05:00:: 02327435 1 0 -lepus_europaeus%1:05:00:: 02326862 1 0 -lepus_townsendi%1:05:00:: 02327175 1 0 -ler%1:18:00:: 09509770 1 0 -leresis%1:07:00:: 04651683 1 0 -lermontov%1:18:00:: 11129017 1 0 -lerner%1:18:00:: 11129130 1 0 -leroi_jones%1:18:00:: 10834011 1 0 -lerot%1:05:00:: 02353411 1 0 -leroy_robert_paige%1:18:00:: 11220664 1 0 -lesbian%1:18:00:: 10254965 1 0 -lesbian%1:18:01:: 09711530 2 0 -lesbian%5:00:00:homosexual:00 01202212 1 0 -lesbianism%1:04:00:: 00857424 1 0 -lesbos%1:15:00:: 08783583 1 0 -lescol%1:06:00:: 03372656 1 0 -lese_majesty%1:04:00:: 00782072 1 0 -lesion%1:26:01:: 14211294 1 2 -lesion%1:26:02:: 14298815 2 0 -leslie_howard%1:18:00:: 11062285 1 0 -leslie_howard_stainer%1:18:00:: 11062285 1 0 -leslie_richard_groves%1:18:00:: 11017661 1 0 -leslie_townes_hope%1:18:00:: 11059263 1 0 -lesotho%1:15:00:: 08958830 1 0 -lesotho_monetary_unit%1:23:00:: 13687524 1 0 -lespedeza%1:20:00:: 12542910 1 0 -lespedeza_bicolor%1:20:00:: 12543186 1 0 -lespedeza_cuneata%1:20:00:: 12543826 1 0 -lespedeza_sericea%1:20:00:: 12543826 1 0 -lespedeza_stipulacea%1:20:00:: 12543639 1 0 -lespedeza_striata%1:20:00:: 12543455 1 0 -lesquerella%1:20:00:: 11890723 1 0 -less%3:00:00:: 01555416 1 39 -less%4:02:00:: 00099527 1 68 -less%4:02:01:: 00099868 2 12 -less%5:00:00:fewer:00 01556913 3 0 -less%5:00:00:inferior:02 02347371 2 0 -less-traveled%5:00:00:unpopular:00 01817155 1 0 -lessee%1:18:00:: 10252075 1 0 -lessen%2:30:00:: 00151689 1 5 -lessen%2:30:01:: 00232956 3 1 -lessen%2:30:02:: 00441445 2 2 -lessened%5:00:00:impaired:00 01274945 1 2 -lessened%5:00:00:mitigated:00 01519580 2 0 -lessening%1:11:00:: 07355887 1 5 -lesseps%1:18:00:: 11129286 1 0 -lesser%3:00:00:: 01395488 1 6 -lesser%5:00:00:small:00 01393681 2 0 -lesser_anteater%1:05:00:: 02461128 1 0 -lesser_antilles%1:15:00:: 08748280 1 0 -lesser_ape%1:05:00:: 02483092 1 0 -lesser_bullrush%1:20:00:: 12156117 1 0 -lesser_burdock%1:20:00:: 11924661 1 0 -lesser_butterfly_orchid%1:20:00:: 12077944 1 0 -lesser_calamint%1:20:00:: 12843557 1 0 -lesser_celandine%1:20:00:: 11721337 1 0 -lesser_centaury%1:20:00:: 12291143 1 0 -lesser_duckweed%1:20:00:: 11795049 1 0 -lesser_galangal%1:20:00:: 12357100 1 0 -lesser_hemlock%1:20:00:: 12931231 1 0 -lesser_knapweed%1:20:00:: 11948656 1 0 -lesser_kudu%1:05:00:: 02424589 1 0 -lesser_omentum%1:08:00:: 05429840 1 0 -lesser_panda%1:05:00:: 02509815 1 0 -lesser_peritoneal_cavity%1:08:00:: 05428136 1 0 -lesser_prairie_chicken%1:05:00:: 01798839 1 0 -lesser_rhomboid_muscle%1:08:00:: 05575374 1 0 -lesser_rorqual%1:05:00:: 02065407 1 0 -lesser_scaup%1:05:00:: 01851731 1 0 -lesser_scaup_duck%1:05:00:: 01851731 1 0 -lesser_spearwort%1:20:00:: 11721642 1 0 -lesser_sunda_islands%1:15:00:: 08842583 1 0 -lesser_twayblade%1:20:00:: 12071477 1 0 -lesser_whitethroat%1:05:00:: 01565078 1 0 -lesser_wintergreen%1:20:00:: 12256522 1 0 -lesser_yellow_trefoil%1:20:00:: 11752937 1 0 -lesser_yellowlegs%1:05:00:: 02028451 1 0 -lessing%1:18:00:: 11129478 2 0 -lessing%1:18:01:: 11129665 1 0 -lesson%1:04:00:: 00729285 4 3 -lesson%1:04:01:: 00889472 1 6 -lesson%1:10:00:: 06672752 2 4 -lesson%1:10:01:: 06606044 3 4 -lessor%1:18:00:: 10255096 1 0 -lester_willis_young%1:18:00:: 11403692 1 0 -lesvos%1:15:00:: 08783583 1 0 -let%1:04:00:: 00569073 2 0 -let%1:14:00:: 08031020 1 0 -let%2:30:00:: 00496673 5 1 -let%2:30:01:: 00120796 4 2 -let%2:32:00:: 00771490 2 15 -let%2:32:02:: 00802318 3 2 -let%2:40:00:: 02208903 6 0 -let%2:41:00:: 02423183 1 219 -let_alone%4:02:00:: 00063369 1 3 -let_down%2:37:00:: 01798936 2 0 -let_down%2:38:00:: 01973125 1 7 -let_drive%2:33:00:: 01134375 1 1 -let_fly%2:33:00:: 01134375 1 1 -let_go%2:35:00:: 01474550 1 6 -let_go%2:42:00:: 02737063 2 4 -let_go_of%2:35:00:: 01474550 1 5 -let_in%2:41:00:: 02449847 1 1 -let_in%2:41:02:: 02502536 2 0 -let_it_go%2:41:00:: 02371239 1 1 -let_loose%2:32:00:: 00983824 1 1 -let_loose%2:35:00:: 01475536 2 0 -let_off%2:32:00:: 00893878 1 0 -let_on%2:32:00:: 00933821 1 1 -let_out%2:30:00:: 00303940 4 0 -let_out%2:32:00:: 00933821 2 2 -let_out%2:32:02:: 00983824 1 2 -let_out%2:35:00:: 01475301 3 0 -let_the_cat_out_of_the_bag%2:32:00:: 00937208 1 0 -let_up%2:30:00:: 00245059 1 1 -let_up%2:30:01:: 00156276 2 1 -letch%1:18:00:: 10552980 1 0 -letdown%1:12:00:: 07540602 1 1 -lethal%5:00:00:fatal:00 00993885 1 2 -lethal_agent%1:17:00:: 09338361 1 0 -lethal_dose%1:06:00:: 03657825 1 1 -lethal_gene%1:08:00:: 05438956 1 0 -lethality%1:07:00:: 04791081 1 1 -lethargic%3:00:00:: 00875712 1 0 -lethargic_encephalitis%1:26:00:: 14343735 1 0 -lethargically%4:02:00:: 00388590 1 0 -lethargy%1:07:00:: 05042138 2 1 -lethargy%1:07:01:: 04635953 3 0 -lethargy%1:26:00:: 14014990 1 2 -lethe%1:17:00:: 09338453 1 0 -leto%1:18:00:: 09577833 1 0 -letter%1:10:00:: 06624161 1 65 -letter%1:10:01:: 06828818 2 7 -letter%1:10:02:: 06706504 5 0 -letter%1:10:03:: 07173389 4 0 -letter%1:18:00:: 10255207 3 0 -letter%2:36:00:: 01692443 3 0 -letter%2:36:01:: 01692579 2 0 -letter%2:40:00:: 02290349 1 1 -letter-perfect%5:00:00:correct:00 00632071 1 0 -letter_bomb%1:06:00:: 03657918 1 0 -letter_bomb%2:33:00:: 01133488 1 0 -letter_bond%1:21:00:: 13420722 1 0 -letter_box%1:06:00:: 03710193 3 0 -letter_box%1:06:01:: 03989074 2 0 -letter_box%1:06:02:: 03990210 1 0 -letter_carrier%1:18:00:: 10283037 1 0 -letter_case%1:06:00:: 03658102 1 0 -letter_of_credit%1:21:00:: 13379753 1 0 -letter_of_intent%1:10:00:: 06626860 1 0 -letter_of_jeremiah%1:10:00:: 06459450 1 0 -letter_of_mark_and_reprisal%1:10:00:: 06550891 1 0 -letter_of_marque%1:10:00:: 06550891 1 0 -letter_of_the_alphabet%1:10:00:: 06828818 1 0 -letter_opener%1:06:00:: 03658185 1 0 -letter_paper%1:10:00:: 06258852 2 0 -letter_paper%1:27:00:: 14934758 1 0 -letter_security%1:21:00:: 13419535 1 0 -letter_stock%1:21:00:: 13420544 1 0 -letter_telegram%1:10:00:: 06275219 1 0 -letter_writer%1:18:00:: 09966554 1 2 -lettercard%1:10:00:: 06628125 1 0 -lettered%5:00:00:educated:00 00830051 1 0 -letterer%1:18:00:: 10255348 1 0 -letterhead%1:10:00:: 06259027 1 1 -lettering%1:10:00:: 06405699 1 3 -letterman%1:18:00:: 10255459 1 2 -letterpress%1:10:00:: 06678664 1 0 -letters%1:09:00:: 05752422 1 1 -letters%1:09:01:: 05986295 2 0 -letters_of_administration%1:10:00:: 06531481 1 0 -letters_of_marque%1:10:00:: 06550891 1 0 -letters_patent%1:10:00:: 06551627 1 0 -letters_testamentary%1:10:00:: 06531657 1 0 -letterset_printing%1:10:00:: 06680913 1 0 -letting%1:21:00:: 13248393 1 0 -letting_down%1:04:00:: 00327683 1 1 -lettish%1:10:00:: 06946355 1 0 -lettre_de_cachet%1:10:00:: 06548110 1 0 -lettuce%1:13:00:: 07723559 3 0 -lettuce%1:20:00:: 11986306 2 0 -lettuce%1:21:00:: 13385216 1 0 -letup%1:28:00:: 15274441 1 0 -leu%1:23:00:: 13685475 2 0 -leu%1:23:01:: 13702231 1 0 -leucadendron%1:20:00:: 12220247 1 0 -leucadendron_argenteum%1:20:00:: 12220496 1 0 -leucaemia%1:26:00:: 14242922 1 0 -leucaena%1:20:00:: 11762237 1 0 -leucaena_glauca%1:20:00:: 11762433 1 0 -leucaena_leucocephala%1:20:00:: 11762433 1 0 -leucanthemum%1:20:00:: 11989636 1 0 -leucanthemum_lacustre%1:20:00:: 11990627 1 0 -leucanthemum_maximum%1:20:00:: 11990167 1 0 -leucanthemum_superbum%1:20:00:: 11990313 1 0 -leucanthemum_vulgare%1:20:00:: 11989869 1 0 -leucine%1:27:00:: 14935128 1 0 -leuciscus%1:05:00:: 01440949 1 0 -leuciscus_cephalus%1:05:00:: 01441272 1 0 -leuciscus_leuciscus%1:05:00:: 01441117 1 0 -leucocyte%1:08:00:: 05449959 1 0 -leucocytosis%1:26:00:: 14196221 1 0 -leucocytozoan%1:05:00:: 01425223 1 0 -leucocytozoon%1:05:00:: 01425223 1 0 -leucogenes%1:20:00:: 11990804 1 0 -leucogenes_leontopodium%1:20:00:: 11990920 1 0 -leucoma%1:26:00:: 14257563 1 0 -leucopenia%1:26:00:: 14196405 1 0 -leucorrhea%1:08:00:: 05417821 1 0 -leucothoe%1:20:00:: 12239647 1 0 -leucothoe_editorum%1:20:00:: 12239880 1 0 -leucothoe_fontanesiana%1:20:00:: 12239880 1 0 -leucothoe_racemosa%1:20:00:: 12240150 1 0 -leucotomy%1:04:00:: 00684128 1 0 -leuctra%1:04:00:: 01283753 1 0 -leukaemia%1:26:00:: 14242922 1 0 -leukemia%1:26:00:: 14242922 1 0 -leukeran%1:06:00:: 03021531 1 0 -leukocyte%1:08:00:: 05449959 1 0 -leukocytosis%1:26:00:: 14196221 1 0 -leukoderma%1:26:00:: 14229248 1 0 -leukoencephalitis%1:26:00:: 14343302 1 0 -leukoma%1:26:00:: 14257563 1 0 -leukopenia%1:26:00:: 14196405 1 0 -leukorrhea%1:08:00:: 05417821 1 0 -leukotomy%1:04:00:: 00684128 1 0 -leuwenhoek%1:18:00:: 11129808 1 0 -lev%1:23:00:: 13685809 1 0 -lev_davidovich_bronstein%1:18:00:: 11349318 1 0 -lev_davidovich_landau%1:18:00:: 11115785 1 0 -lev_ivanov%1:18:00:: 11075352 1 0 -levallorphan%1:06:00:: 03658373 1 0 -levant%1:15:00:: 08915159 2 0 -levant%1:27:00:: 14763218 1 0 -levant%2:38:00:: 02074093 1 0 -levant_cotton%1:20:00:: 12176709 1 0 -levant_garlic%1:20:00:: 12432356 1 0 -levant_morocco%1:27:00:: 14763218 1 0 -levanter%1:19:00:: 11473033 1 0 -levantine%1:18:00:: 09720702 1 0 -levantine%3:01:00:: 03080862 1 0 -levator%1:08:00:: 05292736 1 0 -levee%1:06:00:: 03658635 3 0 -levee%1:06:01:: 03658759 2 0 -levee%1:14:00:: 08254627 1 0 -level%1:06:00:: 03658858 5 1 -level%1:06:01:: 03365991 8 0 -level%1:06:03:: 03536348 6 1 -level%1:07:00:: 05093890 1 69 -level%1:07:01:: 05131902 4 5 -level%1:09:00:: 06246896 7 0 -level%1:26:00:: 13939892 3 15 -level%1:26:01:: 14428160 2 22 -level%2:30:00:: 00356649 6 0 -level%2:32:01:: 00964237 5 0 -level%2:33:01:: 01152214 4 0 -level%2:33:02:: 01152896 1 4 -level%2:35:01:: 01307142 3 1 -level%2:36:00:: 01661804 2 1 -level%5:00:00:equal:00 00892243 5 0 -level%5:00:00:horizontal:00 01233104 3 1 -level%5:00:00:steady:00 02302537 2 1 -level%5:00:01:even:01 00910101 1 3 -level%5:00:02:even:01 00911091 4 1 -level-headed%5:00:00:reasonable:00 01944088 1 0 -level_best%1:07:00:: 05124928 1 0 -level_crossing%1:06:00:: 03659122 1 0 -level_off%2:30:00:: 00356649 1 3 -leveler%1:18:00:: 10255567 1 0 -levelheaded%5:00:00:reasonable:00 01944088 1 1 -leveling%1:04:00:: 00044673 3 0 -leveling%1:04:01:: 00218045 2 0 -leveling%1:04:02:: 00912576 1 0 -leveller%1:18:00:: 10255567 1 0 -lever%1:06:00:: 03659292 1 1 -lever%1:06:01:: 03659686 3 0 -lever%1:06:02:: 03659809 2 0 -lever%2:35:00:: 01593254 1 0 -lever_hang%1:04:00:: 00436817 1 0 -lever_lock%1:06:00:: 03659950 1 0 -lever_scale%1:06:00:: 04312154 1 0 -lever_tumbler%1:06:00:: 03659686 1 0 -leverage%1:04:00:: 01099946 3 0 -leverage%1:07:00:: 05156481 2 0 -leverage%1:19:00:: 11473138 1 0 -leverage%2:40:00:: 02359690 2 0 -leverage%2:40:01:: 02359839 1 0 -leveraged_buyout%1:04:00:: 00175174 1 0 -leveraging%1:04:00:: 01099946 1 0 -leveret%1:05:00:: 02326763 1 0 -levi%1:18:00:: 11164671 1 0 -levi's%1:06:00:: 03660124 1 0 -levi-lorrain_dwarf%1:18:00:: 10436458 1 0 -levi-strauss%1:18:00:: 11130113 1 0 -leviathan%1:18:00:: 10255728 1 0 -leviathan%1:18:02:: 09496802 2 0 -levirate%1:09:00:: 05669618 1 0 -levis%1:06:00:: 03660124 1 1 -levisticum%1:20:00:: 12940060 1 0 -levisticum_officinale%1:20:00:: 12940226 1 0 -levitate%2:38:00:: 01944252 2 0 -levitate%2:38:01:: 01944466 1 0 -levitation%1:04:00:: 00324699 3 0 -levitation%1:11:00:: 07363067 2 0 -levitation%1:19:00:: 11408733 1 0 -levite%1:18:00:: 10255915 1 0 -levitical%3:01:00:: 02755399 1 0 -leviticus%1:10:00:: 06433035 1 0 -levitra%1:06:00:: 04521428 1 0 -levity%1:07:00:: 04648749 2 0 -levity%1:12:00:: 07511906 1 0 -levodopa%1:27:00:: 14605132 1 0 -levorotary%5:00:00:counterclockwise:00 00442255 1 0 -levorotation%1:11:00:: 07441494 1 0 -levorotatory%5:00:00:counterclockwise:00 00442255 1 0 -levulose%1:27:00:: 14874932 1 0 -levy%1:04:01:: 01158064 2 0 -levy%1:21:00:: 13308864 1 0 -levy%2:33:00:: 01098452 2 0 -levy%2:40:00:: 02306462 1 4 -levy_en_masse%1:04:00:: 01158064 1 0 -lewd%5:00:00:dirty:02 00425740 1 1 -lewd%5:00:00:sexy:00 02133207 2 0 -lewdly%4:02:00:: 00388747 1 0 -lewdness%1:07:00:: 04903368 1 0 -lewis%1:18:00:: 11130291 6 0 -lewis%1:18:01:: 11130474 5 0 -lewis%1:18:02:: 11130661 4 0 -lewis%1:18:03:: 11130940 3 0 -lewis%1:18:04:: 11131135 2 0 -lewis%1:18:05:: 11131358 1 0 -lewis_and_clark_expedition%1:14:00:: 08409323 1 0 -lewis_carroll%1:18:00:: 10884061 1 0 -lewis_henry_morgan%1:18:00:: 11191113 1 0 -lewisia%1:20:00:: 11859981 1 0 -lewisia_cotyledon%1:20:00:: 11860208 1 0 -lewisia_rediviva%1:20:00:: 11860555 1 0 -lewiston%1:15:00:: 09081955 2 0 -lewiston%1:15:01:: 09093187 1 0 -lexeme%1:10:00:: 06306034 1 0 -lexical%3:01:00:: 02886629 1 2 -lexical%3:01:01:: 02886869 2 0 -lexical_ambiguity%1:07:00:: 04825576 1 0 -lexical_database%1:10:00:: 06638868 1 0 -lexical_disambiguation%1:10:00:: 07171666 1 0 -lexical_entry%1:10:00:: 06300823 1 0 -lexical_meaning%1:10:00:: 06601973 1 0 -lexical_semantics%1:09:00:: 06180412 1 0 -lexicalisation%1:22:00:: 13507472 1 0 -lexicalise%2:32:00:: 00962190 1 0 -lexicalised%3:01:00:: 02755525 1 0 -lexicalization%1:22:00:: 13507472 1 0 -lexicalize%2:32:00:: 00962190 1 0 -lexicalized%3:01:00:: 02755525 1 0 -lexicalized_concept%1:09:00:: 05873884 1 0 -lexically%4:02:00:: 00136663 1 0 -lexicographer%1:18:00:: 10256080 1 0 -lexicographic%3:01:00:: 02909808 1 0 -lexicographical%3:01:00:: 02909808 1 0 -lexicography%1:04:00:: 00931721 1 0 -lexicologist%1:18:00:: 10256080 1 0 -lexicology%1:09:00:: 06178812 1 0 -lexicon%1:09:00:: 05651242 1 2 -lexicon%1:10:00:: 06418901 2 0 -lexicostatistic%3:01:00:: 02881246 1 1 -lexicostatistics%1:09:00:: 06179574 1 4 -lexington%1:04:00:: 01283935 3 0 -lexington%1:15:00:: 09097283 1 0 -lexington%1:15:01:: 09089782 2 0 -lexington_and_concord%1:04:00:: 01283935 1 0 -lexis%1:09:00:: 05651068 1 0 -ley%1:15:00:: 08616050 1 0 -leycesteria%1:20:00:: 12672843 1 0 -leycesteria_formosa%1:20:00:: 12673012 1 0 -leyden%1:15:00:: 08951077 1 0 -leyden_jar%1:06:00:: 03655470 1 1 -leydig's_cell%1:08:00:: 05459457 1 0 -leydig_cell%1:08:00:: 05459457 1 0 -leymus%1:20:00:: 12124358 1 0 -leymus_arenaria%1:20:00:: 12119539 1 0 -leymus_condensatus%1:20:00:: 12119390 1 0 -leyte%1:04:00:: 01284124 1 2 -leyte_invasion%1:04:00:: 01284124 1 0 -leyte_island%1:04:00:: 01284124 1 0 -lf%1:07:00:: 05057382 1 0 -lgb%1:06:00:: 03643491 1 0 -lgv%1:26:00:: 14137561 1 0 -lh%1:27:00:: 14749272 1 0 -lhasa%1:05:00:: 02098413 2 0 -lhasa%1:15:00:: 08907377 1 0 -lhasa_apso%1:05:00:: 02098413 1 0 -lhotse%1:17:00:: 09338712 1 0 -li%1:23:00:: 13654674 2 0 -li%1:27:00:: 14643793 1 0 -li%5:00:00:cardinal:00 02191336 1 0 -li_po%1:18:00:: 11134115 1 0 -liabilities%1:21:00:: 13396054 1 0 -liability%1:07:00:: 05161436 3 0 -liability%1:26:00:: 14490319 2 0 -liability%1:26:01:: 14530403 1 1 -liability_insurance%1:21:00:: 13347065 1 0 -liable%5:00:00:likely:00 01411919 1 4 -liable%5:00:00:responsible:00 01997583 4 0 -liable%5:00:00:susceptible:00 02362178 3 1 -liable%5:00:01:nonexempt:00 02366365 2 1 -liaise%2:32:00:: 00760956 1 0 -liaison%1:10:00:: 06261260 2 1 -liaison%1:26:00:: 13931889 1 1 -liakoura%1:17:00:: 09385586 1 0 -liam_o'flaherty%1:18:00:: 11212669 1 0 -liana%1:20:00:: 13120211 1 0 -liao%1:14:00:: 08156054 1 0 -liao_dynasty%1:14:00:: 08156054 1 0 -liaodong_bandao%1:17:00:: 09338910 1 0 -liaodong_peninsula%1:17:00:: 09338910 1 0 -liar%1:18:00:: 10256537 1 2 -liatris%1:20:00:: 11991080 1 0 -liatris_punctata%1:20:00:: 11991549 1 0 -liatris_pycnostachya%1:20:00:: 11991777 1 0 -libation%1:04:00:: 01041835 3 0 -libation%1:13:00:: 07885832 2 0 -libation%1:13:02:: 07885937 1 0 -libber%1:18:00:: 10084635 1 0 -libby%1:18:00:: 11131505 1 0 -libel%1:10:00:: 06720371 1 0 -libel%1:10:01:: 06562436 2 0 -libel%2:32:00:: 00847683 1 0 -libeler%1:18:00:: 09999135 1 0 -libellous%5:00:00:harmful:00 01161233 1 0 -libelous%5:00:00:harmful:00 01161233 1 0 -liberal%1:18:00:: 10256756 1 27 -liberal%1:18:01:: 10257084 2 1 -liberal%3:00:00:: 00575230 3 3 -liberal%5:00:00:broad-minded:00 00286837 1 6 -liberal%5:00:00:generous:01 01111418 4 3 -liberal%5:00:00:inexact:00 00916199 5 0 -liberal%5:00:00:left:02 02031473 2 4 -liberal_arts%1:09:00:: 06153846 1 1 -liberal_democrat_party%1:14:00:: 08261589 1 0 -liberal_party%1:14:00:: 08261810 1 0 -liberalisation%1:04:00:: 00355691 1 0 -liberalise%2:41:00:: 02467003 2 0 -liberalise%2:41:01:: 02467203 1 0 -liberalism%1:09:00:: 06218623 1 6 -liberalism%1:09:01:: 05995576 2 1 -liberalist%1:18:00:: 10256756 1 0 -liberalistic%5:00:00:liberal:00 00575685 1 0 -liberality%1:07:00:: 04832518 2 0 -liberality%1:09:01:: 06204820 1 0 -liberalization%1:04:00:: 00355691 1 0 -liberalize%2:41:00:: 02467003 1 1 -liberalize%2:41:01:: 02467203 2 0 -liberally%4:02:00:: 00196874 1 1 -liberally%4:02:01:: 00196692 2 0 -liberalness%1:07:00:: 04832518 2 0 -liberalness%1:09:01:: 06204820 1 0 -liberate%2:36:03:: 01757994 4 0 -liberate%2:41:00:: 02497062 3 0 -liberate%2:41:01:: 02497400 1 2 -liberate%2:41:02:: 02421374 2 1 -liberated%5:00:00:free:00 01063102 2 0 -liberated%5:00:00:free:02 01058650 1 1 -liberation%1:04:00:: 00787832 2 0 -liberation%1:04:01:: 00216174 3 0 -liberation%1:04:02:: 00095502 1 1 -liberation_theology%1:09:00:: 06184733 1 0 -liberation_tigers_of_tamil_eelam%1:14:00:: 08032023 1 0 -liberator%1:18:00:: 10257221 1 0 -liberia%1:15:00:: 08959254 1 0 -liberian%1:18:00:: 09720842 1 0 -liberian%3:01:00:: 03081006 1 0 -liberian_capital%1:15:00:: 08959495 1 0 -liberian_coffee%1:20:00:: 12663254 1 0 -liberian_dollar%1:23:00:: 13673747 1 0 -libertarian%1:18:00:: 10257402 2 0 -libertarian%1:18:01:: 10257524 1 0 -libertarianism%1:09:00:: 06219185 1 0 -libertine%1:18:00:: 10257647 1 1 -libertine%5:00:00:immoral:00 01549568 1 0 -liberty%1:04:00:: 00737070 5 0 -liberty%1:26:01:: 13992514 1 7 -liberty%1:26:02:: 13994456 2 2 -liberty%1:26:03:: 13996061 3 1 -liberty%1:28:00:: 15140080 4 0 -liberty_bell%1:06:00:: 03660228 1 0 -liberty_cap%1:06:00:: 03660394 1 0 -liberty_chit%1:10:00:: 06690226 1 0 -liberty_island%1:15:00:: 09114401 1 0 -liberty_party%1:14:00:: 08261958 1 0 -liberty_ship%1:06:00:: 03660562 1 0 -libidinal%3:01:00:: 02945514 1 0 -libidinal_energy%1:16:00:: 09185440 1 0 -libidinous%5:00:00:sexy:00 02133207 1 0 -libido%1:12:00:: 07489548 1 0 -libocedrus%1:20:00:: 11638902 1 0 -libocedrus_bidwillii%1:20:00:: 11639445 1 0 -libocedrus_decurrens%1:20:00:: 11634736 1 0 -libocedrus_plumosa%1:20:00:: 11639306 1 0 -libra%1:15:00:: 08687150 3 0 -libra%1:17:00:: 09339109 2 0 -libra%1:18:00:: 09753065 1 0 -libra_the_balance%1:15:00:: 08687150 1 0 -libra_the_scales%1:15:00:: 08687150 1 0 -librarian%1:18:00:: 10257948 1 1 -librarianship%1:04:00:: 00594477 1 0 -library%1:06:00:: 03660664 3 2 -library%1:06:01:: 03660909 1 3 -library%1:06:02:: 03661043 5 0 -library%1:14:00:: 07977870 2 2 -library%1:14:01:: 07977592 4 0 -library_card%1:10:00:: 06478199 1 0 -library_catalog%1:10:00:: 06488325 1 0 -library_catalogue%1:10:00:: 06488325 1 0 -library_fine%1:21:00:: 13301500 1 0 -library_paste%1:27:00:: 14704966 1 0 -library_program%1:10:00:: 06576265 1 0 -library_routine%1:10:00:: 06583790 1 0 -library_science%1:09:00:: 06170892 1 0 -librate%2:38:00:: 01878566 2 0 -librate%2:42:00:: 02704617 1 0 -libration%1:22:00:: 13507617 1 0 -librettist%1:18:00:: 10258152 1 0 -libretto%1:10:00:: 07012025 1 1 -libreville%1:15:00:: 08945705 1 0 -libritabs%1:06:00:: 03022041 1 0 -librium%1:06:00:: 03022041 1 0 -libya%1:15:00:: 08959683 1 0 -libyan%1:18:00:: 09720967 1 0 -libyan%3:01:00:: 03081160 1 0 -libyan_desert%1:15:00:: 09170788 1 0 -libyan_dinar%1:23:00:: 13670281 1 0 -libyan_dirham%1:23:00:: 13670399 1 0 -libyan_fighting_group%1:14:00:: 08032594 1 0 -libyan_islamic_fighting_group%1:14:00:: 08032594 1 0 -libyan_islamic_group%1:14:00:: 08032594 1 0 -libyan_monetary_unit%1:23:00:: 13670156 1 0 -licence%1:10:00:: 06549661 3 0 -licence%1:26:01:: 13994806 2 0 -licence%1:26:02:: 13995378 1 0 -licence%2:41:00:: 02444662 1 0 -licenced%5:00:00:authorized:00 00178811 1 0 -license%1:04:00:: 01139194 4 0 -license%1:10:00:: 06549661 1 4 -license%1:26:01:: 13994806 2 3 -license%1:26:02:: 13995378 3 0 -license%2:41:00:: 02444662 1 2 -license_fee%1:21:00:: 13322113 1 0 -license_number%1:10:00:: 06425808 1 2 -license_plate%1:06:00:: 03661180 1 0 -license_tax%1:21:00:: 13322113 1 0 -licensed%5:00:00:authorized:00 00178811 1 2 -licensed_practical_nurse%1:18:00:: 10258304 1 0 -licensee%1:18:00:: 10258493 1 0 -licenser%1:18:00:: 10258602 1 0 -licensing_agreement%1:10:00:: 06527576 1 0 -licensing_fee%1:21:00:: 13322113 1 1 -licentiate%1:18:00:: 10258786 1 0 -licentious%5:00:00:unchaste:00 00362269 1 0 -licentiously%4:02:00:: 00388944 1 0 -licentiousness%1:04:00:: 00748307 2 0 -licentiousness%1:07:00:: 04851715 1 0 -lichanura%1:05:00:: 01742680 1 0 -lichanura_trivirgata%1:05:00:: 01742821 1 0 -lichee%1:13:00:: 07766173 2 0 -lichee%1:20:00:: 12744387 1 0 -lichen%1:20:00:: 12987056 2 0 -lichen%1:26:00:: 14229403 1 0 -lichen_planus%1:26:00:: 14229604 1 0 -lichen_ruber_planus%1:26:00:: 14229604 1 0 -lichenales%1:20:00:: 12986858 1 0 -lichenes%1:20:00:: 12986447 1 0 -lichgate%1:06:00:: 03698815 1 0 -lichi%1:13:00:: 07766173 1 0 -lichtenoid_eczema%1:26:00:: 14225877 1 0 -lichtenstein%1:18:00:: 11131658 1 0 -licinius_lucullus%1:18:00:: 11143600 1 0 -licit%3:00:00:: 01550438 1 0 -licit%5:00:00:legal:00 01401224 2 0 -licitly%4:02:00:: 00363218 1 0 -licitness%1:07:00:: 04810194 1 0 -lick%1:04:00:: 00150591 2 0 -lick%1:04:01:: 00134780 3 0 -lick%1:17:00:: 09420689 1 0 -lick%2:31:00:: 00634906 3 1 -lick%2:34:00:: 01170983 4 0 -lick%2:35:00:: 01432176 2 7 -lick%2:35:01:: 01412912 1 12 -licked%5:00:00:defeated:00 00694773 1 1 -lickety_cut%4:02:00:: 00168322 1 0 -lickety_split%4:02:00:: 00168322 1 0 -licking%1:04:00:: 01160729 2 0 -licking%1:11:01:: 07475364 1 2 -licorice%1:13:00:: 07607361 2 0 -licorice%1:20:00:: 12532886 1 0 -licorice_fern%1:20:00:: 13173132 1 0 -licorice_root%1:20:00:: 12533437 1 0 -licorice_stick%1:06:00:: 02834027 1 0 -lid%1:06:00:: 03661340 2 0 -lid%1:06:01:: 03497657 3 0 -lid%1:08:00:: 05313822 1 4 -lidar%1:06:00:: 03661621 1 0 -lidded%3:00:00:: 01446457 1 0 -lidded%5:00:00:topped:00 02441895 2 0 -lidless%3:00:00:: 01446632 1 0 -lidless%5:00:00:alert:00 00092391 3 0 -lidless%5:00:00:topless:00 02442184 2 0 -lido%1:06:00:: 03661861 1 0 -lido_deck%1:06:00:: 03662207 1 0 -lidocaine%1:06:00:: 03662016 1 0 -lie%1:10:00:: 06756831 1 13 -lie%1:15:00:: 08624196 3 0 -lie%1:18:00:: 11131808 2 0 -lie%2:32:00:: 00834259 5 9 -lie%2:35:00:: 01547001 2 58 -lie%2:38:00:: 01985029 7 4 -lie%2:42:00:: 02690708 1 88 -lie%2:42:01:: 02653381 3 15 -lie%2:42:02:: 02731390 6 4 -lie%2:42:03:: 02734338 4 14 -lie-abed%1:18:00:: 10258896 1 0 -lie-in%1:04:00:: 01064758 1 0 -lie_about%2:42:00:: 02639905 1 0 -lie_around%2:42:00:: 02639905 1 1 -lie_awake%2:35:00:: 01547925 1 2 -lie_detector%1:06:00:: 03662452 1 0 -lie_dormant%2:41:00:: 02378330 1 2 -lie_down%2:38:00:: 01985029 1 11 -lie_in%2:29:00:: 00057410 2 0 -lie_in%2:42:00:: 02653381 1 22 -lie_in_wait%2:33:00:: 01138204 1 1 -lie_low%2:31:00:: 00588703 2 0 -lie_low%2:39:00:: 02146674 1 1 -lie_with%2:35:00:: 01426397 1 0 -liebfraumilch%1:13:00:: 07897600 1 0 -liebig_condenser%1:06:00:: 03662301 1 0 -liechtenstein%1:15:00:: 08960548 1 0 -liechtensteiner%1:18:00:: 09721088 1 0 -liechtensteiner%3:01:00:: 03081328 1 0 -lied%1:10:00:: 07051620 1 0 -lieder_singer%1:18:00:: 10259016 1 0 -liederkranz%1:13:00:: 07853946 1 0 -lief%4:02:00:: 00348110 1 0 -liege%1:15:00:: 08851687 3 0 -liege%1:18:00:: 10746581 1 0 -liege%1:18:01:: 10259094 2 0 -liege%5:00:00:loyal:00 00962306 1 0 -liege_lord%1:18:00:: 10259094 1 0 -liege_subject%1:18:00:: 10746581 1 0 -liegeman%1:18:00:: 10746581 1 0 -lien%1:08:00:: 05333467 2 0 -lien%1:21:00:: 13401013 1 0 -lienal%3:01:00:: 02801156 1 0 -lienal_artery%1:08:00:: 05350061 1 0 -liepaja%1:15:00:: 09013603 1 0 -lietuva%1:15:00:: 09013830 1 0 -lieu%1:04:00:: 00721431 1 0 -lieutenancy%1:04:00:: 00594580 1 0 -lieutenant%1:18:00:: 10259225 2 7 -lieutenant%1:18:01:: 10259348 1 41 -lieutenant%1:18:02:: 10005280 3 1 -lieutenant%1:18:03:: 10259527 4 0 -lieutenant_colonel%1:18:00:: 10259780 1 0 -lieutenant_commander%1:18:00:: 10259997 1 0 -lieutenant_general%1:18:00:: 10260166 1 0 -lieutenant_governor%1:18:00:: 10260322 1 3 -lieutenant_jg%1:18:00:: 10260473 1 0 -lieutenant_junior_grade%1:18:00:: 10260473 1 0 -life%1:03:00:: 00006269 10 5 -life%1:07:01:: 04632157 9 5 -life%1:09:00:: 05810561 2 54 -life%1:10:00:: 06515827 12 2 -life%1:16:00:: 09178727 13 1 -life%1:18:00:: 10260706 8 5 -life%1:19:00:: 11473291 11 3 -life%1:26:00:: 13961642 4 29 -life%1:26:01:: 13963192 1 66 -life%1:26:02:: 13961399 3 41 -life%1:28:00:: 15140405 5 22 -life%1:28:01:: 15140744 6 18 -life%1:28:02:: 15140892 7 5 -life%1:28:03:: 15225076 14 0 -life-and-death%5:00:00:crucial:00 00656384 1 0 -life-giving%5:00:00:invigorating:00 01357484 1 0 -life-of-man%1:20:00:: 11797981 1 0 -life-or-death%5:00:00:crucial:00 00656384 1 0 -life-size%5:00:00:large:00 01388655 1 2 -life-sized%5:00:00:large:00 01388655 1 0 -life-style%1:07:00:: 04930632 1 0 -life-support%3:01:00:: 02755634 1 0 -life-support_system%1:06:00:: 03663910 2 0 -life-support_system%1:06:01:: 03664159 1 0 -life-sustaining%5:00:00:essential:00 00902347 1 0 -life-threatening%5:00:00:critical:03 00651039 1 0 -life-time%1:28:00:: 15140405 1 0 -life_assurance%1:21:00:: 13347237 1 0 -life_belt%1:06:00:: 03662719 2 0 -life_belt%1:06:01:: 04125853 1 0 -life_buoy%1:06:00:: 03662719 1 0 -life_class%1:04:00:: 00885764 1 3 -life_cycle%1:19:00:: 11473807 1 1 -life_cycle%1:22:00:: 13507827 2 0 -life_estate%1:21:00:: 13251715 1 0 -life_eternal%1:26:00:: 13957390 1 2 -life_expectancy%1:28:00:: 15142025 1 0 -life_force%1:19:00:: 11523839 1 0 -life_form%1:08:00:: 05217061 1 0 -life_history%1:04:00:: 00282613 2 0 -life_history%1:10:00:: 06515827 1 3 -life_imprisonment%1:26:00:: 14000200 1 0 -life_insurance%1:21:00:: 13347237 1 0 -life_jacket%1:06:00:: 03662887 1 0 -life_line%1:25:00:: 13906767 1 0 -life_mask%1:06:00:: 03663332 1 0 -life_office%1:06:00:: 03663433 1 0 -life_peer%1:18:00:: 10260943 1 0 -life_preserver%1:06:00:: 03663531 1 0 -life_principle%1:18:00:: 10757918 1 1 -life_raft%1:06:00:: 03663781 1 0 -life_ring%1:06:00:: 03662719 1 0 -life_saver%1:13:00:: 07607492 1 0 -life_science%1:09:00:: 06037298 1 1 -life_scientist%1:18:00:: 09855630 1 0 -life_sentence%1:28:00:: 15225076 1 0 -life_story%1:10:00:: 06515827 1 0 -life_style%1:07:00:: 04930632 1 2 -life_support%1:06:00:: 03663910 2 0 -life_support%1:06:01:: 03664159 1 0 -life_tenant%1:18:00:: 10261211 1 1 -life_vest%1:06:00:: 03662887 1 0 -lifeblood%1:07:00:: 05195796 2 0 -lifeblood%1:08:00:: 05401851 1 0 -lifeboat%1:06:00:: 03662601 1 0 -lifeguard%1:18:00:: 10260800 1 0 -lifehack%2:30:00:: 00587849 1 0 -lifeless%5:00:00:dead:02 00100373 4 0 -lifeless%5:00:00:empty:00 01087557 2 1 -lifeless%5:00:00:unanimated:00 00119533 3 0 -lifeless%5:00:01:dead:01 00097768 1 2 -lifelessly%4:02:00:: 00304898 3 0 -lifelessly%4:02:01:: 00389299 1 0 -lifelessly%4:02:02:: 00389183 2 0 -lifelessness%1:07:00:: 05006285 2 0 -lifelessness%1:26:00:: 14006179 1 0 -lifelike%5:00:00:realistic:00 01941026 1 2 -lifelike%5:00:00:unaffected:01 00074594 2 1 -lifeline%1:06:00:: 03663069 4 0 -lifeline%1:06:01:: 03663234 3 0 -lifeline%1:09:00:: 05694527 2 0 -lifeline%1:25:00:: 13906767 1 0 -lifelong%5:00:00:long:02 01440159 1 1 -lifer%1:18:00:: 10261041 1 0 -lifesaver%1:06:00:: 03662719 2 0 -lifesaver%1:18:00:: 10260800 1 0 -lifesaving%1:04:00:: 00093874 1 0 -lifesize%5:00:00:large:00 01388655 1 0 -lifespan%1:28:00:: 15140405 1 0 -lifestyle%1:07:00:: 04930632 1 0 -lifetime%1:28:00:: 15140405 1 2 -lifework%1:04:00:: 00584160 1 0 -lifo%1:04:00:: 00620258 1 0 -lift%1:04:00:: 00116376 12 0 -lift%1:04:01:: 00674158 9 0 -lift%1:04:02:: 01209487 1 1 -lift%1:04:03:: 00309276 11 0 -lift%1:04:04:: 00316594 10 0 -lift%1:06:00:: 03281145 8 0 -lift%1:06:01:: 04231693 5 0 -lift%1:06:02:: 03664374 7 0 -lift%1:06:03:: 03664514 6 0 -lift%1:11:00:: 07370671 3 0 -lift%1:11:01:: 07348399 4 0 -lift%1:19:00:: 11422277 2 0 -lift%2:29:00:: 00061933 24 0 -lift%2:30:00:: 00178502 23 0 -lift%2:30:02:: 00354195 20 0 -lift%2:30:03:: 00198623 21 0 -lift%2:30:04:: 00357198 19 0 -lift%2:30:05:: 00549982 9 1 -lift%2:30:07:: 00544549 10 1 -lift%2:30:08:: 00178773 22 0 -lift%2:30:09:: 00178652 11 1 -lift%2:32:00:: 00799798 6 2 -lift%2:32:01:: 00792921 18 0 -lift%2:32:02:: 00986074 5 2 -lift%2:35:00:: 01579153 2 10 -lift%2:35:01:: 01455184 8 1 -lift%2:35:02:: 01311608 17 0 -lift%2:35:04:: 01452057 16 0 -lift%2:38:00:: 01974062 1 31 -lift%2:38:01:: 01973759 3 2 -lift%2:38:03:: 01968569 4 2 -lift%2:40:00:: 02276866 7 1 -lift%2:40:01:: 02278061 14 0 -lift%2:40:02:: 02352181 13 0 -lift%2:40:03:: 02277138 15 0 -lift%2:42:01:: 02696801 12 0 -lift_bridge%1:06:00:: 03233744 1 0 -lift_off%2:38:00:: 02014553 1 0 -lift_out%2:35:02:: 01312371 1 1 -lift_pump%1:06:00:: 03664840 1 0 -lift_up%2:37:00:: 01811736 2 1 -lift_up%2:38:00:: 01976089 1 1 -lifted%5:00:00:raised:00 01208221 1 1 -lifter%1:18:00:: 10773394 1 4 -lifter%1:18:01:: 09866661 2 0 -lifting_device%1:06:00:: 03664675 1 0 -liftman%1:18:00:: 10050261 1 0 -liftoff%1:11:00:: 07371168 1 0 -ligament%1:06:00:: 03664943 2 0 -ligament%1:08:00:: 05295381 1 1 -ligamentum_teres_uteri%1:08:00:: 05295740 1 0 -ligan%1:06:00:: 03633474 1 0 -ligand%1:27:00:: 15110307 1 0 -ligate%2:29:00:: 00083334 3 0 -ligate%2:30:00:: 00567484 2 0 -ligate%2:35:00:: 01615354 1 0 -ligation%1:04:00:: 00148242 1 0 -ligature%1:04:00:: 00149084 6 0 -ligature%1:06:00:: 02840134 5 0 -ligature%1:06:01:: 03665083 4 0 -ligature%1:06:02:: 03665232 3 0 -ligature%1:10:00:: 07045519 1 0 -ligature%1:10:01:: 06823925 2 0 -liger%1:05:00:: 02129991 1 0 -light%1:06:00:: 03665366 2 23 -light%1:06:01:: 03666591 15 0 -light%1:07:00:: 04951373 7 4 -light%1:07:01:: 05018103 4 10 -light%1:07:02:: 04953380 11 2 -light%1:09:00:: 05807933 10 2 -light%1:09:01:: 06210791 3 13 -light%1:09:02:: 05612706 12 1 -light%1:10:00:: 06874019 14 0 -light%1:15:00:: 08646188 5 7 -light%1:16:00:: 09184668 13 0 -light%1:18:00:: 10276659 8 3 -light%1:19:00:: 11473954 1 46 -light%1:26:00:: 13983304 9 2 -light%1:26:01:: 14563784 6 4 -light%2:30:00:: 00291873 1 12 -light%2:34:00:: 01199881 2 10 -light%2:38:00:: 01978700 3 3 -light%2:38:01:: 01958452 6 0 -light%2:40:12:: 02229828 5 0 -light%2:43:00:: 02759614 4 2 -light%3:00:01:: 01186408 1 14 -light%3:00:02:: 01190316 5 3 -light%3:00:03:: 01190993 4 3 -light%3:00:04:: 01193046 3 4 -light%3:00:05:: 00408660 2 9 -light%3:00:06:: 00269989 6 3 -light%3:00:07:: 01191448 14 0 -light%3:00:08:: 01191876 13 0 -light%4:02:00:: 00390941 1 0 -light%5:00:00:digestible:00 01182414 8 2 -light%5:00:00:frivolous:00 02121424 21 0 -light%5:00:00:ill:01 02544525 15 0 -light%5:00:00:insignificant:00 02165318 19 0 -light%5:00:00:insufficient:00 02337329 18 0 -light%5:00:00:light-duty:00 01188186 22 0 -light%5:00:00:light-footed:00 01192393 11 1 -light%5:00:00:loose:02 00503527 9 2 -light%5:00:00:nonfat:00 00993117 23 0 -light%5:00:00:pure:02 01906464 10 1 -light%5:00:00:shallow:02 00693570 24 0 -light%5:00:00:temperate:00 02401863 17 0 -light%5:00:00:thin:01 02414188 16 0 -light%5:00:00:unchaste:00 00361837 25 0 -light%5:00:00:undemanding:01 00712186 12 1 -light%5:00:00:unstressed:00 02320442 7 2 -light%5:00:02:frivolous:00 02121572 20 0 -light-armed%5:00:00:armed:01 00142704 2 0 -light-armed%5:00:00:light:04 01193275 1 0 -light-blue%5:00:00:chromatic:00 00377131 1 0 -light-boned%5:00:00:frail:00 02040519 1 0 -light-colored%3:00:00:: 00408660 1 0 -light-duty%3:00:00:: 01188058 1 1 -light-emitting_diode%1:06:00:: 03666362 1 0 -light-fingered%5:00:00:adroit:00 00062740 1 0 -light-footed%3:00:00:: 01192248 1 3 -light-green%5:00:00:chromatic:00 00375969 1 3 -light-haired%3:00:00:: 00243606 1 1 -light-handed%5:00:00:delicate:00 00706800 1 0 -light-handedly%4:02:00:: 00391058 1 0 -light-headed%5:00:00:frivolous:00 02120828 2 1 -light-headed%5:00:00:ill:01 02544525 1 1 -light-headedly%4:02:00:: 00082923 1 0 -light-hearted%5:00:00:cheerful:00 00363291 1 0 -light-heartedly%4:02:00:: 00391143 1 0 -light-minded%5:00:00:frivolous:00 02121290 1 0 -light-mindedness%1:07:00:: 04648866 1 1 -light-o'-love%1:18:00:: 10262343 1 0 -light-of-love%1:18:00:: 10262343 1 0 -light-sensitive%5:00:00:sensitive:01 02104727 1 0 -light-skinned%5:00:00:white:02 00243515 1 0 -light-tight%5:00:00:opaque:00 00434265 1 0 -light-year%1:23:00:: 13656520 1 0 -light_adaptation%1:04:00:: 00193811 1 0 -light_air%1:19:00:: 11432387 1 0 -light_arm%1:06:00:: 03665851 1 0 -light_ballast%1:06:00:: 02779971 1 0 -light_beam%1:19:00:: 11428023 1 2 -light_beer%1:13:00:: 07887967 1 0 -light_bread%1:13:00:: 07687211 1 0 -light_breeze%1:19:00:: 11432508 1 0 -light_brown%1:07:00:: 04972801 1 1 -light_bulb%1:06:00:: 03665924 1 2 -light_circuit%1:06:00:: 03666238 1 0 -light_colonel%1:18:00:: 10259780 1 0 -light_company%1:14:00:: 08186393 1 1 -light_cream%1:13:00:: 07847917 1 0 -light_diet%1:13:00:: 07563642 1 0 -light_filter%1:06:00:: 03667060 1 0 -light_flyweight%1:18:00:: 10261511 1 0 -light_heavyweight%1:18:00:: 10261624 3 0 -light_heavyweight%1:18:01:: 10261762 2 0 -light_heavyweight%1:18:02:: 10261862 1 0 -light_hour%1:23:00:: 13656749 1 0 -light_intensity%1:07:00:: 05100751 1 0 -light_machine_gun%1:06:00:: 03667552 1 0 -light_meter%1:06:00:: 03667664 1 0 -light_microscope%1:06:00:: 03667829 1 0 -light_middleweight%1:18:00:: 10261977 1 0 -light_minute%1:23:00:: 13656913 1 0 -light_opera%1:10:00:: 07027090 1 0 -light_pen%1:06:00:: 03668279 1 0 -light_reaction%1:22:00:: 13508005 1 0 -light_reflex%1:04:00:: 00865808 1 0 -light_second%1:23:00:: 13657080 1 0 -light_show%1:04:00:: 00521450 1 0 -light_source%1:06:00:: 03665366 1 0 -light_speed%1:28:00:: 15284285 1 0 -light_time%1:07:00:: 05130210 1 0 -light_touch%1:11:00:: 07413714 1 0 -light_unit%1:23:00:: 13634418 1 0 -light_up%2:30:00:: 00291873 2 1 -light_up%2:34:00:: 01199881 5 0 -light_up%2:43:00:: 02771169 3 0 -light_up%2:43:01:: 02761229 1 1 -light_up%2:43:02:: 02764122 4 0 -light_upon%2:40:00:: 02286687 1 0 -light_welterweight%1:18:00:: 10262764 1 0 -light_whipping_cream%1:13:00:: 07848196 1 0 -light_within%1:16:00:: 09184668 1 0 -light_year%1:23:00:: 13656520 1 1 -lightbulb%1:06:00:: 03665924 1 0 -lighted%3:00:00:: 00475125 1 6 -lighted%5:00:00:light:06 00271580 2 6 -lighten%2:30:01:: 00312815 4 0 -lighten%2:30:02:: 00280930 5 0 -lighten%2:30:03:: 00199067 6 0 -lighten%2:32:00:: 00860136 3 0 -lighten%2:35:00:: 01487573 2 0 -lighten%2:37:01:: 01814074 1 1 -lighten_up%2:30:00:: 00312815 3 0 -lighten_up%2:30:01:: 00280930 4 0 -lighten_up%2:32:00:: 00860136 2 0 -lighten_up%2:37:01:: 01814074 1 0 -lightening%1:04:00:: 00273877 2 0 -lightening%1:11:00:: 07363180 1 0 -lighter%1:06:00:: 03666591 2 0 -lighter%1:06:01:: 02792552 3 0 -lighter%1:27:00:: 15101361 1 0 -lighter%2:38:00:: 01954852 1 0 -lighter-than-air%5:00:00:light:01 01187322 1 0 -lighter-than-air_craft%1:06:00:: 03666917 1 0 -lighterage%1:04:00:: 00651954 2 0 -lighterage%1:21:00:: 13322520 1 0 -lighterman%1:18:00:: 10261388 1 0 -lightheaded%5:00:00:frivolous:00 02120828 2 0 -lightheaded%5:00:00:ill:01 02544525 1 0 -lightheadedness%1:07:01:: 04894444 2 0 -lightheadedness%1:26:00:: 14372513 1 0 -lighthearted%5:00:00:cheerful:00 00363291 1 1 -lightheartedness%1:12:00:: 07530866 1 0 -lighthorse_harry_lee%1:18:00:: 11123762 1 0 -lighthouse%1:06:00:: 02814860 1 0 -lighthouse_keeper%1:18:00:: 10262093 1 0 -lighting%1:04:00:: 00378479 4 0 -lighting%1:04:01:: 00608645 3 1 -lighting%1:06:00:: 03667235 2 2 -lighting%1:26:00:: 13983304 1 3 -lighting-up%5:00:00:light:06 00272069 1 0 -lighting_circuit%1:06:00:: 03666238 1 0 -lighting_fixture%1:06:00:: 03667380 1 0 -lighting_industry%1:14:00:: 08068788 1 0 -lightless%5:00:00:dark:01 00275985 2 0 -lightless%5:00:00:invisible:00 02518229 1 0 -lightlessness%1:26:00:: 13983807 1 0 -lightly%4:02:00:: 00180279 3 2 -lightly%4:02:01:: 00176750 4 2 -lightly%4:02:02:: 00390941 2 2 -lightly%4:02:03:: 00477636 6 0 -lightly%4:02:04:: 00028923 5 2 -lightly%4:02:05:: 00180168 7 0 -lightly%4:02:06:: 00509034 1 4 -lightly-armed%5:00:00:light:04 01193275 1 0 -lightly_armored%5:00:00:armored:01 00144244 1 0 -lightly_armoured%5:00:00:armored:01 00144244 1 0 -lightness%1:07:00:: 04648596 6 0 -lightness%1:07:01:: 04951373 5 0 -lightness%1:07:02:: 05028700 2 0 -lightness%1:07:03:: 04979758 4 0 -lightness%1:07:04:: 05003850 3 0 -lightness%1:12:00:: 07527656 1 0 -lightning%1:11:00:: 07412993 2 3 -lightning%1:19:00:: 11475279 1 8 -lightning_arrester%1:06:00:: 04364160 1 0 -lightning_bug%1:05:00:: 02168245 1 0 -lightning_conductor%1:06:00:: 03668067 1 0 -lightning_hurler%1:18:00:: 09574226 1 0 -lightning_rod%1:06:00:: 03668067 2 0 -lightning_rod%1:18:00:: 10262183 1 0 -lightproof%5:00:00:opaque:00 00434265 1 0 -lights-out%1:10:00:: 06804483 2 0 -lights-out%1:28:00:: 15168569 1 0 -lightship%1:06:00:: 03668488 1 0 -lightsome%5:00:00:cheerful:00 00363291 2 0 -lightsome%5:00:00:light-footed:00 01192393 1 0 -lightsomely%4:02:00:: 00391143 2 0 -lightsomely%4:02:01:: 00391308 1 0 -lightsomeness%1:07:00:: 04648596 3 0 -lightsomeness%1:07:02:: 05003850 2 0 -lightsomeness%1:12:00:: 07530866 1 0 -lightweight%1:18:00:: 10262445 1 1 -lightweight%1:18:01:: 10262561 4 0 -lightweight%1:18:02:: 10776987 2 0 -lightweight%1:18:03:: 10262655 3 0 -lightweight%5:00:00:light:01 01186733 1 1 -lightweight%5:00:00:unimportant:00 01281559 2 0 -lightwood%1:20:00:: 11758122 1 0 -ligne%1:23:00:: 13652203 1 0 -ligneous%5:00:00:woody:00 02576058 1 0 -ligneous_plant%1:20:00:: 13103136 1 0 -lignify%2:30:00:: 00585499 1 0 -lignin%1:27:00:: 14935319 1 0 -lignite%1:27:00:: 14815263 1 4 -lignosae%1:20:00:: 13103660 1 0 -lignum%1:20:00:: 13096779 1 0 -lignum_vitae%1:20:00:: 12722071 2 0 -lignum_vitae%1:20:02:: 12722382 1 0 -ligularia%1:20:00:: 11991993 1 0 -ligule%1:20:00:: 13162164 1 0 -liguria%1:15:00:: 08808292 1 0 -ligurian_sea%1:17:00:: 09339272 1 0 -ligustrum%1:20:00:: 12307611 1 0 -ligustrum_amurense%1:20:00:: 12308112 1 0 -ligustrum_ibolium%1:20:00:: 12308259 1 0 -ligustrum_japonicum%1:20:00:: 12308447 1 0 -ligustrum_lucidum%1:20:00:: 12308664 1 0 -ligustrum_obtusifolium%1:20:00:: 12308907 1 0 -ligustrum_ovalifolium%1:20:00:: 12309052 1 0 -ligustrum_vulgare%1:20:00:: 12309277 1 0 -lii%5:00:00:cardinal:00 02191427 1 0 -liii%5:00:00:cardinal:00 02191519 1 0 -likable%3:00:02:: 02376277 1 0 -likable%5:00:00:liked:00 01461292 2 0 -like%1:09:00:: 05845419 2 0 -like%1:09:01:: 05845888 1 0 -like%2:31:00:: 00691665 4 2 -like%2:37:01:: 01824736 1 76 -like%2:37:04:: 01776952 3 19 -like%2:37:05:: 01777210 2 73 -like%2:37:06:: 01825962 5 1 -like%3:00:00:: 01409581 1 30 -like%3:00:02:: 01411065 2 1 -like%3:00:04:: 01410606 3 1 -like%5:00:00:same:00 02063554 4 0 -like-minded%5:00:00:like:00 01410036 1 2 -like_a_shot%4:02:00:: 00048739 1 0 -like_an_expert%4:02:00:: 00214289 1 0 -like_blue_murder%4:02:00:: 00086255 1 0 -like_clockwork%4:02:00:: 00168428 1 0 -like_crazy%4:02:00:: 00168564 1 0 -like_hell%4:02:00:: 00168564 1 2 -like_hell%4:02:01:: 00168870 2 0 -like_kings%4:02:00:: 00125985 1 0 -like_mad%4:02:00:: 00168564 1 1 -like_royalty%4:02:00:: 00125985 1 0 -like_sin%4:02:00:: 00168564 1 1 -like_the_devil%4:02:00:: 00168564 1 4 -like_thunder%4:02:00:: 00168564 1 2 -likeable%3:00:02:: 02376277 1 0 -likeable%5:00:00:liked:00 01461292 2 0 -liked%3:00:00:: 01461138 1 0 -likelihood%1:07:00:: 04756635 1 2 -likeliness%1:07:00:: 04756635 1 0 -likely%3:00:00:: 01411451 1 58 -likely%3:00:04:: 01413247 2 4 -likely%4:02:00:: 00138611 1 9 -likely%5:00:00:credible:00 00645169 4 0 -likely%5:00:00:prospective:00 01884176 3 0 -liken%2:31:00:: 00653620 1 0 -likeness%1:06:00:: 03668642 2 0 -likeness%1:07:00:: 04744814 1 1 -likening%1:04:00:: 00651088 1 0 -likewise%4:02:00:: 00138060 1 8 -likewise%4:02:01:: 00047534 2 3 -likewise%4:02:08:: 00069672 3 0 -liking%1:12:00:: 07497473 1 4 -likuta%1:23:00:: 13710546 1 0 -lilac%1:20:00:: 12310349 1 3 -lilac%5:00:00:chromatic:00 00376917 1 1 -lilac-blue%5:00:00:chromatic:00 00377224 1 0 -lilac-colored%5:00:00:chromatic:00 00376917 1 0 -lilac-pink%5:00:00:chromatic:00 00377323 1 0 -lilac-purple%5:00:00:chromatic:00 00377438 1 0 -lilangeni%1:23:00:: 13686137 1 0 -liliaceae%1:20:00:: 12423565 1 0 -liliaceous%3:01:00:: 02755772 1 0 -liliaceous_plant%1:20:00:: 12425281 1 0 -liliales%1:20:00:: 12410715 1 0 -lilian_alicia_marks%1:18:00:: 11157140 1 0 -liliid_monocot_family%1:20:00:: 11556187 1 0 -liliid_monocot_genus%1:20:00:: 11561228 1 0 -liliidae%1:20:00:: 12410381 1 0 -liliopsid%1:20:00:: 11668117 1 0 -liliopsid_family%1:20:00:: 11555413 1 0 -liliopsid_genus%1:20:00:: 11556857 1 0 -liliopsida%1:20:00:: 11667562 1 0 -lilith%1:18:00:: 09519075 1 0 -lilium%1:20:00:: 12426100 1 0 -lilium_auratum%1:20:00:: 12426623 1 0 -lilium_canadense%1:20:00:: 12426749 1 0 -lilium_candidum%1:20:00:: 12426978 1 0 -lilium_catesbaei%1:20:00:: 12427184 1 0 -lilium_columbianum%1:20:00:: 12427391 1 0 -lilium_lancifolium%1:20:00:: 12427566 1 0 -lilium_longiflorum%1:20:00:: 12427757 1 0 -lilium_maritinum%1:20:00:: 12427946 1 0 -lilium_martagon%1:20:00:: 12428076 1 0 -lilium_michiganense%1:20:00:: 12428242 1 0 -lilium_pardalinum%1:20:00:: 12428412 1 0 -lilium_philadelphicum%1:20:00:: 12428587 1 0 -lilium_superbum%1:20:00:: 12428747 1 0 -liliuokalani%1:18:00:: 11131981 1 0 -lille%1:15:00:: 08936476 1 0 -lillian_gish%1:18:00:: 11001422 1 0 -lillian_hellman%1:18:00:: 11039188 1 0 -lillian_russell%1:18:00:: 11275344 1 0 -lillie%1:18:00:: 11132117 1 0 -lillie_langtry%1:18:00:: 11117108 1 0 -lilliput%1:09:00:: 05630734 1 0 -lilliputian%1:18:00:: 09601429 2 0 -lilliputian%1:18:01:: 10262880 1 0 -lilliputian%3:01:00:: 03081485 1 0 -lilliputian%5:00:00:small:00 01392249 2 0 -lilliputian%5:00:00:unimportant:00 01280908 3 0 -lilo%1:06:00:: 03668803 1 0 -lilongwe%1:15:00:: 08963095 1 0 -lilt%1:07:00:: 04992008 1 1 -lilt%2:32:00:: 00950936 1 0 -lilting%5:00:00:rhythmical:00 02020011 1 0 -lily%1:20:00:: 12426248 1 0 -lily-livered%5:00:00:cowardly:00 00265314 1 0 -lily-of-the-valley_tree%1:20:00:: 12243459 1 0 -lily-white%5:00:00:achromatic:00 00390461 2 0 -lily-white%5:00:00:segregated:00 01327680 1 0 -lily_family%1:20:00:: 12423565 1 0 -lily_of_the_incas%1:20:00:: 12438783 1 0 -lily_of_the_nile%1:20:00:: 12429148 1 0 -lily_of_the_valley%1:20:00:: 12471544 1 0 -lily_pad%1:20:00:: 13154736 1 0 -lily_pons%1:18:00:: 11242321 1 0 -lily_turf%1:20:00:: 12473171 1 0 -lilyturf%1:20:00:: 12473171 1 0 -lima%1:15:00:: 08979878 1 0 -lima_bean%1:13:00:: 07729000 3 0 -lima_bean%1:20:01:: 12558230 2 0 -lima_bean%1:20:03:: 12558425 1 0 -lima_bean_plant%1:20:00:: 12558230 1 0 -limacidae%1:05:00:: 01945443 1 0 -limacine%3:01:00:: 02755918 1 0 -limacoid%3:01:00:: 02755918 1 0 -liman%1:17:00:: 09339414 1 0 -limanda%1:05:00:: 02658944 1 0 -limanda_ferruginea%1:05:00:: 02659176 1 0 -limax%1:05:00:: 01945580 1 0 -limb%1:06:00:: 02737833 6 0 -limb%1:06:01:: 03668906 5 0 -limb%1:06:02:: 03669094 4 0 -limb%1:08:00:: 05560244 1 6 -limb%1:15:00:: 08592494 3 0 -limb%1:20:00:: 13163803 2 0 -limb-girdle_muscular_dystrophy%1:26:00:: 14162563 1 0 -limbed%3:00:00:: 01414250 1 0 -limber%1:06:00:: 03669245 1 0 -limber%2:29:00:: 00101137 2 0 -limber%2:35:00:: 01603620 1 0 -limber%5:00:00:flexible:01 01022785 3 0 -limber%5:00:00:flexible:02 01024228 1 0 -limber%5:00:01:flexible:01 01022926 2 0 -limber_pine%1:20:00:: 11613867 1 0 -limber_up%2:29:00:: 00027064 2 0 -limber_up%2:35:00:: 01603620 1 0 -limbers%1:06:00:: 03669367 1 0 -limbic%3:01:00:: 03011036 1 0 -limbic_brain%1:08:00:: 05498773 1 1 -limbic_system%1:08:00:: 05498773 1 0 -limbless%3:00:00:: 01414817 1 0 -limbo%1:09:00:: 05630874 3 0 -limbo%1:09:01:: 05631076 2 0 -limbo%1:26:01:: 14436769 1 1 -limburger%1:13:00:: 07854066 1 0 -limbus%1:08:00:: 05235745 1 0 -lime%1:13:00:: 07749731 6 0 -lime%1:20:01:: 12711984 4 0 -lime%1:20:02:: 12202936 5 0 -lime%1:27:00:: 14936010 1 0 -lime%1:27:01:: 14789885 2 0 -lime%1:27:02:: 14702703 3 0 -lime%2:35:00:: 01603732 2 0 -lime%2:38:00:: 02083237 1 0 -lime_disease_spirochete%1:05:00:: 01383151 1 0 -lime_hydrate%1:27:00:: 14936010 1 0 -lime_juice%1:13:00:: 07925327 1 0 -lime_tree%1:20:01:: 12711984 1 1 -lime_tree%1:20:02:: 12202936 2 0 -limeade%1:13:00:: 07926346 1 0 -limeira%1:15:00:: 08855909 1 0 -limekiln%1:06:00:: 03669534 1 0 -limelight%1:06:00:: 03669665 2 0 -limelight%1:26:00:: 14433769 1 0 -limen%1:09:00:: 05712426 1 0 -limenitis%1:05:00:: 02276527 1 0 -limenitis_archippus%1:05:00:: 02277268 1 0 -limenitis_arthemis%1:05:00:: 02276902 1 0 -limenitis_astyanax%1:05:00:: 02277094 1 0 -limenitis_camilla%1:05:00:: 02276749 1 0 -limerick%1:10:00:: 06380603 2 0 -limerick%1:15:00:: 08889657 1 0 -limestone%1:27:00:: 14936226 1 0 -limestone_fern%1:20:00:: 13197507 1 0 -limestone_salamander%1:05:00:: 01638329 1 0 -limewater%1:27:00:: 14937093 1 0 -limey%1:18:00:: 09703485 1 0 -limicolae%1:05:00:: 02022498 1 0 -limicoline_bird%1:05:00:: 02022684 1 0 -limit%1:07:00:: 05124057 1 24 -limit%1:15:00:: 08592656 4 1 -limit%1:15:02:: 08593130 3 1 -limit%1:23:00:: 13758296 6 0 -limit%1:23:01:: 13758556 5 0 -limit%1:28:00:: 15268857 2 3 -limit%2:30:00:: 00235368 2 6 -limit%2:30:01:: 00233335 1 23 -limit%2:32:00:: 00947077 3 0 -limit_point%1:23:00:: 13758556 1 0 -limitation%1:04:00:: 00808182 5 0 -limitation%1:07:00:: 05162455 2 3 -limitation%1:09:00:: 05846355 1 3 -limitation%1:23:00:: 13758296 3 1 -limitation%1:28:00:: 15224293 4 0 -limited%1:06:00:: 03306385 1 0 -limited%3:00:00:: 01415021 1 25 -limited%5:00:00:finite:00 01007258 7 0 -limited%5:00:00:moderate:00 01532586 5 0 -limited%5:00:00:noncomprehensive:00 00529191 3 3 -limited%5:00:00:qualified:02 01913642 4 0 -limited%5:00:00:restricted:00 02002470 2 3 -limited%5:00:00:specific:00 01103844 6 0 -limited_audit%1:21:00:: 13411385 1 0 -limited_company%1:14:00:: 08185211 1 0 -limited_edition%1:10:00:: 06590601 1 1 -limited_liability%1:21:00:: 13397018 1 0 -limited_review%1:21:00:: 13411533 1 0 -limited_war%1:04:00:: 00953280 1 0 -limitedly%4:02:00:: 00130758 1 0 -limiter%1:06:00:: 03669886 1 0 -limiting%1:24:00:: 13800801 1 0 -limiting%5:00:00:restrictive:00 02004385 2 0 -limiting%5:00:01:restrictive:00 02004023 1 3 -limitless%3:00:04:: 01415605 2 0 -limitless%5:00:00:immeasurable:00 01499269 1 1 -limitless%5:00:00:infinite:00 01007657 3 0 -limitlessness%1:07:00:: 05209324 1 0 -limn%2:36:00:: 01688256 2 0 -limn%2:36:01:: 01689379 1 0 -limner%1:18:00:: 10455619 1 0 -limning%1:06:00:: 03173524 1 0 -limnobium%1:20:00:: 12613968 1 0 -limnocryptes%1:05:00:: 02032646 1 0 -limnocryptes_minima%1:05:00:: 02032769 1 0 -limnodium_spongia%1:20:00:: 12614096 1 0 -limnodromus%1:05:00:: 02032915 1 0 -limnodromus_griseus%1:05:00:: 02033208 1 0 -limnodromus_scolopaceus%1:05:00:: 02033324 1 0 -limnological%3:01:00:: 02756025 1 0 -limnologically%4:02:00:: 00391476 1 0 -limnologist%1:18:00:: 10263146 1 0 -limnology%1:09:00:: 06120317 1 0 -limnos%1:15:00:: 08790748 1 0 -limo%1:06:00:: 03670208 1 0 -limonene%1:27:00:: 14937658 1 0 -limonite%1:27:00:: 14937801 1 0 -limonium%1:20:00:: 12099220 1 0 -limosa%1:05:00:: 02034016 1 0 -limosa_haemastica%1:05:00:: 02034295 1 0 -limousin%1:15:00:: 08942965 1 0 -limousine%1:06:00:: 03670208 1 0 -limp%1:04:00:: 00286756 1 0 -limp%2:38:00:: 01917244 1 3 -limp%2:38:01:: 01996402 2 1 -limp%5:00:00:lax:01 02404081 2 0 -limp%5:00:00:stale:00 01070002 1 3 -limpa%1:13:00:: 07686202 1 0 -limper%1:18:00:: 10178917 1 0 -limpet%1:05:00:: 01948573 2 0 -limpet%1:13:00:: 07792640 1 0 -limpid%5:00:00:clear:00 00429355 3 0 -limpid%5:00:00:clear:02 00431774 2 0 -limpid%5:00:02:clear:02 00432453 1 0 -limpidity%1:07:00:: 04701943 2 0 -limpidity%1:07:01:: 04820258 1 0 -limpidly%4:02:00:: 00389595 1 0 -limping%1:26:00:: 14549937 1 0 -limpkin%1:05:00:: 02013706 1 0 -limply%4:02:00:: 00391575 1 0 -limpness%1:07:01:: 04939046 1 0 -limpopo%1:17:00:: 09339512 1 0 -limulidae%1:05:00:: 01787546 1 0 -limulus%1:05:00:: 01787693 1 0 -limulus_polyphemus%1:05:00:: 01787835 1 0 -lin%1:18:00:: 11132245 1 0 -linac%1:06:00:: 03671914 1 0 -linaceae%1:20:00:: 12486254 1 0 -linage%1:21:00:: 13326975 2 0 -linage%1:23:00:: 13713408 1 0 -linalool%1:27:00:: 14894029 1 0 -linanthus%1:20:00:: 12811294 1 0 -linanthus_dianthiflorus%1:20:00:: 12811501 1 0 -linanthus_dichotomus%1:20:00:: 12811713 1 0 -linaria%1:20:00:: 12883923 1 0 -linaria_canadensis%1:20:00:: 12884100 1 0 -linaria_vulgaris%1:20:00:: 12884260 1 0 -linchpin%1:06:00:: 03670339 2 0 -linchpin%1:09:00:: 05694232 1 0 -lincocin%1:06:00:: 03670622 1 0 -lincoln%1:05:00:: 02413717 3 0 -lincoln%1:15:00:: 09109882 2 0 -lincoln%1:18:00:: 11132462 1 1 -lincoln's_birthday%1:28:00:: 15187077 1 0 -lincoln_memorial%1:06:00:: 03670456 1 0 -lincoln_steffens%1:18:00:: 11314315 1 0 -lincolnesque%3:01:00:: 03034580 1 0 -lincolnian%3:01:00:: 03034580 1 0 -lincolnshire%1:15:00:: 08884191 1 0 -lincomycin%1:06:00:: 03670622 1 0 -lind%1:18:00:: 11132768 1 0 -lindane%1:27:00:: 14934864 1 0 -lindbergh%1:18:00:: 11132948 1 0 -linden%1:20:00:: 12202936 2 0 -linden%1:20:02:: 12203331 1 1 -linden_family%1:20:00:: 12202352 1 0 -linden_tree%1:20:00:: 12202936 1 0 -lindera%1:20:00:: 11705921 1 0 -lindera_benzoin%1:20:00:: 11706325 1 0 -lindesnes%1:15:00:: 08765771 1 0 -lindheimera%1:20:00:: 11992340 1 0 -lindheimera_texana%1:20:00:: 11992479 1 0 -lindsay%1:18:00:: 11133197 2 0 -lindsay%1:18:01:: 11133387 1 0 -lindy%1:04:00:: 00532567 1 0 -lindy_hop%1:04:00:: 00532567 1 0 -line%1:04:00:: 00582388 19 2 -line%1:04:01:: 01204294 16 3 -line%1:06:00:: 03670849 18 2 -line%1:06:01:: 02934168 9 9 -line%1:06:03:: 03671272 14 4 -line%1:06:05:: 03671473 23 1 -line%1:06:06:: 03946325 13 4 -line%1:06:07:: 04402057 15 3 -line%1:06:08:: 03671668 22 1 -line%1:06:09:: 04008385 30 0 -line%1:09:00:: 05748786 29 0 -line%1:09:01:: 05773049 8 10 -line%1:10:01:: 06799897 2 20 -line%1:10:02:: 07012534 5 11 -line%1:10:03:: 07028373 26 0 -line%1:10:04:: 06626286 28 0 -line%1:10:05:: 06260121 21 1 -line%1:10:06:: 07012979 27 0 -line%1:14:00:: 08101937 17 2 -line%1:14:01:: 08430203 3 15 -line%1:14:02:: 08377085 10 8 -line%1:14:03:: 08430568 1 51 -line%1:15:00:: 08593262 11 6 -line%1:15:01:: 08593924 20 1 -line%1:15:02:: 08594286 7 10 -line%1:19:00:: 11474637 6 10 -line%1:21:00:: 13379413 25 0 -line%1:23:00:: 13713003 24 0 -line%1:25:00:: 13863771 4 13 -line%1:25:01:: 13905792 12 5 -line%2:30:00:: 00454135 5 0 -line%2:30:01:: 00222993 6 0 -line%2:35:00:: 01270784 2 5 -line%2:35:01:: 01582645 3 0 -line%2:35:02:: 01276361 4 0 -line%2:42:00:: 02703539 1 7 -line-at-a-time_printer%1:06:00:: 03672827 1 0 -line-drive_double%1:04:00:: 00131991 1 0 -line-drive_single%1:04:00:: 00131877 1 0 -line-drive_triple%1:04:00:: 00132105 1 0 -line-shooter%1:18:00:: 09872066 1 0 -line-shooting%1:10:00:: 07229747 1 0 -line_backer%1:04:00:: 00726369 2 0 -line_backer%1:18:00:: 10263002 1 0 -line_block%1:06:00:: 03672097 1 0 -line_coach%1:18:00:: 09931989 1 1 -line_double%1:04:00:: 00131991 1 1 -line_drawing%1:06:00:: 03173524 1 0 -line_drive%1:04:00:: 00131608 1 1 -line_engraving%1:06:00:: 03672097 2 0 -line_engraving%1:06:01:: 03672245 1 0 -line_feed%1:22:00:: 13508183 1 0 -line_item%1:10:00:: 06483171 1 0 -line_judge%1:18:00:: 10263259 1 0 -line_management%1:04:00:: 01136375 1 0 -line_of_battle%1:15:00:: 08594714 1 0 -line_of_business%1:04:00:: 01097119 2 0 -line_of_business%1:06:00:: 03671668 1 0 -line_of_control%1:15:00:: 08515126 1 0 -line_of_credit%1:21:00:: 13379413 1 0 -line_of_defence%1:06:00:: 03672638 2 0 -line_of_defence%1:14:00:: 08048743 1 0 -line_of_defense%1:06:00:: 03672638 2 0 -line_of_defense%1:14:00:: 08048743 1 0 -line_of_descent%1:14:00:: 08101937 2 0 -line_of_descent%1:24:00:: 13813042 1 0 -line_of_destiny%1:25:00:: 13907104 1 0 -line_of_duty%1:04:00:: 01132590 1 0 -line_of_fate%1:25:00:: 13907104 1 0 -line_of_fire%1:15:00:: 08617516 1 0 -line_of_flight%1:15:00:: 08595171 1 0 -line_of_force%1:19:00:: 11457057 1 0 -line_of_gab%1:10:00:: 07013400 1 0 -line_of_heart%1:25:00:: 13906936 1 0 -line_of_inquiry%1:09:00:: 05773776 1 0 -line_of_latitude%1:15:00:: 08595720 1 0 -line_of_least_resistance%1:04:00:: 00416737 1 0 -line_of_life%1:25:00:: 13906767 1 0 -line_of_longitude%1:15:00:: 08598823 1 0 -line_of_march%1:14:00:: 08430940 2 0 -line_of_march%1:15:00:: 08595299 1 0 -line_of_merchandise%1:06:00:: 03671668 1 0 -line_of_poetry%1:10:00:: 06347996 1 0 -line_of_products%1:06:00:: 03671668 1 0 -line_of_questioning%1:09:00:: 05773776 1 0 -line_of_reasoning%1:09:00:: 05773049 1 0 -line_of_saturn%1:25:00:: 13907104 1 0 -line_of_scrimmage%1:15:00:: 08650677 1 0 -line_of_sight%1:15:00:: 08595398 1 0 -line_of_succession%1:14:00:: 08431048 1 0 -line_of_thought%1:09:00:: 05773407 1 0 -line_of_verse%1:10:00:: 06347996 1 0 -line_of_vision%1:15:00:: 08595398 1 1 -line_of_work%1:04:00:: 00582388 1 1 -line_officer%1:18:00:: 10263790 1 0 -line_one's_pockets%2:40:00:: 02278727 1 0 -line_organisation%1:14:00:: 08048948 1 0 -line_organization%1:14:00:: 08048948 1 0 -line_personnel%1:14:00:: 08440382 1 0 -line_printer%1:06:00:: 03672827 1 0 -line_roulette%1:25:00:: 13908580 1 0 -line_score%1:10:00:: 06468523 1 0 -line_single%1:04:00:: 00131877 1 0 -line_spectrum%1:19:00:: 11475476 1 0 -line_squall%1:19:00:: 11514171 1 0 -line_storm%1:19:00:: 11501864 1 0 -line_triple%1:04:00:: 00132105 1 0 -line_up%2:30:00:: 00464321 4 1 -line_up%2:33:00:: 01073953 6 0 -line_up%2:38:00:: 02036650 5 0 -line_up%2:38:01:: 02036755 3 1 -line_up%2:40:00:: 02213336 2 1 -line_up%2:42:00:: 02704213 1 3 -line_worker%1:18:00:: 10264120 1 0 -lineage%1:07:00:: 04922787 5 0 -lineage%1:14:00:: 08101937 1 2 -lineage%1:21:00:: 13326975 4 0 -lineage%1:23:00:: 13713408 3 0 -lineage%1:24:00:: 13813042 2 0 -lineal%3:00:00:: 01416508 1 0 -lineal%5:00:00:linear:01 00658591 2 0 -lineally%4:02:00:: 00391671 1 0 -lineament%1:08:00:: 05601758 2 0 -lineament%1:09:00:: 05849284 1 0 -linear%3:00:01:: 00658259 2 3 -linear%3:00:02:: 01417451 1 4 -linear%3:00:03:: 00110497 3 0 -linear%5:00:00:lengthwise:00 01445438 5 0 -linear%5:00:00:simple:01 02168699 4 0 -linear_a%1:10:00:: 06361934 1 0 -linear_accelerator%1:06:00:: 03671914 1 0 -linear_algebra%1:09:00:: 06013126 1 2 -linear_b%1:10:00:: 06362059 1 0 -linear_equation%1:10:00:: 06670137 1 0 -linear_leaf%1:20:00:: 13158512 1 0 -linear_measure%1:23:00:: 13603305 1 0 -linear_operator%1:24:00:: 13786595 1 10 -linear_perspective%1:07:00:: 04676308 1 0 -linear_programming%1:09:00:: 06018267 1 0 -linear_regression%1:09:00:: 06028904 1 0 -linear_unit%1:23:00:: 13603305 1 0 -linearise%2:30:00:: 00489145 1 0 -linearity%1:07:00:: 05063218 1 0 -linearize%2:30:00:: 00489145 1 0 -linearly%4:02:00:: 00129532 1 3 -lineation%1:04:00:: 00263813 2 0 -lineation%1:15:00:: 08612786 1 0 -linebacker%1:04:00:: 00726369 2 0 -linebacker%1:18:00:: 10263002 1 1 -linebacker_blitzing%1:04:00:: 00976085 1 0 -linecut%1:06:00:: 03672097 2 0 -linecut%1:06:01:: 03672245 1 0 -lined%3:00:00:: 01417941 3 0 -lined%5:00:00:bordered:00 00258797 1 3 -lined%5:00:00:rough:00 02241543 2 1 -lined_snake%1:05:00:: 01736032 1 1 -linelike%5:00:00:linear:01 00658680 1 0 -lineman%1:04:00:: 00726100 4 0 -lineman%1:18:00:: 10263411 1 1 -lineman%1:18:01:: 10049363 3 0 -lineman%1:18:02:: 10263580 2 0 -linemen%1:14:00:: 08430054 1 0 -linen%1:06:00:: 03672352 3 0 -linen%1:06:01:: 03672521 1 2 -linen%1:27:00:: 14934998 2 1 -linen_paper%1:27:00:: 14934998 1 0 -linendraper%1:18:00:: 10263684 1 0 -liner%1:04:00:: 00131608 1 1 -liner%1:06:00:: 03673027 4 0 -liner%1:06:01:: 03673270 3 0 -liner%1:06:02:: 03673767 2 0 -liner_train%1:06:00:: 03394272 1 0 -linesman%1:18:00:: 10049363 2 0 -linesman%1:18:01:: 10263931 1 0 -lineup%1:10:00:: 06486161 1 1 -lineup%1:14:00:: 08431205 2 0 -ling%1:05:01:: 02525120 3 0 -ling%1:05:02:: 02524928 4 0 -ling%1:05:03:: 02523427 5 0 -ling%1:20:01:: 12233529 2 0 -ling%1:20:02:: 12348635 1 0 -ling-pao%1:18:00:: 09533790 1 0 -ling_ko%1:20:00:: 12348635 1 0 -lingam%1:10:00:: 06808408 1 0 -lingberry%1:20:00:: 12249542 1 0 -lingcod%1:05:00:: 02553028 2 0 -lingcod%1:13:00:: 07784991 1 0 -lingenberry%1:20:00:: 12249542 1 0 -linger%2:38:00:: 02058590 4 1 -linger%2:38:01:: 02011560 3 2 -linger%2:42:00:: 02639075 2 2 -linger%2:42:01:: 02640906 5 0 -linger%2:42:02:: 02731242 1 3 -linger_over%2:42:00:: 02640226 1 0 -lingerer%1:18:00:: 10270232 1 0 -lingerie%1:06:00:: 03673450 1 0 -lingering%1:04:00:: 01068423 1 0 -lingeringly%4:02:00:: 00391989 1 1 -lingo%1:10:00:: 07157273 1 0 -lingonberry%1:13:00:: 07744057 2 0 -lingonberry%1:20:00:: 12249542 1 0 -lingua%1:08:00:: 05301072 1 0 -lingua_franca%1:10:00:: 06906116 1 0 -lingual%1:10:00:: 07119521 1 0 -lingual%3:01:00:: 02842445 1 1 -lingual%3:01:01:: 02829826 2 0 -lingual_artery%1:08:00:: 05350256 1 0 -lingual_vein%1:08:00:: 05372924 1 0 -lingually%4:02:00:: 00130833 1 1 -lingualumina%1:10:00:: 06896961 1 0 -linguica%1:13:00:: 07678065 1 0 -linguine%1:13:00:: 07700539 1 0 -linguini%1:13:00:: 07700539 1 0 -linguist%1:18:00:: 10264219 2 0 -linguist%1:18:01:: 10264437 1 16 -linguistic%3:01:00:: 02842445 1 4 -linguistic%3:01:01:: 02843218 2 3 -linguistic_atlas%1:10:00:: 06427240 1 0 -linguistic_communication%1:10:00:: 06282651 1 0 -linguistic_competence%1:07:00:: 05153897 1 0 -linguistic_context%1:10:00:: 06284898 1 0 -linguistic_geography%1:09:00:: 06168703 1 0 -linguistic_performance%1:04:00:: 00098051 1 0 -linguistic_process%1:09:00:: 05808557 2 0 -linguistic_process%1:22:00:: 13508333 1 0 -linguistic_profiling%1:10:00:: 06886655 1 0 -linguistic_relation%1:24:00:: 13797142 1 0 -linguistic_rule%1:10:00:: 07259772 1 0 -linguistic_scientist%1:18:00:: 10264437 1 0 -linguistic_string%1:10:00:: 07013736 1 0 -linguistic_unit%1:10:00:: 06284225 1 1 -linguistic_universal%1:10:00:: 07259984 1 0 -linguistically%4:02:00:: 00130833 2 0 -linguistically%4:02:01:: 00131151 1 1 -linguistics%1:09:00:: 06172789 1 2 -linguistics%1:09:01:: 06171040 2 0 -linguistics_department%1:14:00:: 08116879 1 0 -lingulate%5:00:00:rounded:00 02046736 1 0 -lingvo_kosmopolita%1:10:00:: 06897042 1 0 -liniment%1:06:00:: 03673594 1 0 -linin%1:08:00:: 05436548 1 0 -lining%1:04:00:: 00827240 4 0 -lining%1:04:01:: 00827379 3 0 -lining%1:06:00:: 03673767 1 0 -lining%1:06:01:: 03673270 2 0 -link%1:06:00:: 03673971 2 5 -link%1:06:02:: 04042795 8 0 -link%1:06:03:: 03674270 9 0 -link%1:10:00:: 06261260 7 0 -link%1:10:01:: 06586471 6 0 -link%1:23:01:: 13654777 5 0 -link%1:24:00:: 13792692 1 5 -link%1:25:00:: 13870805 4 0 -link%1:26:00:: 14419164 3 0 -link%2:31:00:: 00713167 1 14 -link%2:35:00:: 01354673 2 3 -link%2:35:02:: 01492052 4 0 -link%2:42:01:: 02622234 3 1 -link-attached_station%1:06:00:: 04075291 1 0 -link-attached_terminal%1:06:00:: 04075291 1 0 -link_trainer%1:06:00:: 03674731 1 0 -link_up%2:31:00:: 00713167 3 0 -link_up%2:35:00:: 01354673 2 0 -link_up%2:42:00:: 02622234 1 0 -linkage%1:04:00:: 00148978 4 0 -linkage%1:06:00:: 03674440 3 0 -linkage%1:07:00:: 04923024 2 0 -linkage%1:24:00:: 13792579 1 0 -linkage_editor%1:10:00:: 06576376 1 0 -linkage_group%1:08:00:: 05439100 1 0 -linkboy%1:18:00:: 10264928 1 0 -linked%5:00:00:connected:00 00567161 1 0 -linked_genes%1:08:00:: 05439100 1 0 -linking_verb%1:10:00:: 06472824 1 0 -linkman%1:18:00:: 10264928 1 0 -links%1:06:00:: 03674591 1 1 -links_course%1:06:00:: 03446528 1 0 -linksman%1:18:00:: 10136959 1 0 -linkup%1:06:00:: 03673971 1 0 -linnaea%1:20:00:: 12673178 1 0 -linnaea_borealis%1:20:00:: 12673328 1 0 -linnaea_borealis_americana%1:20:00:: 12673588 1 0 -linnaean%3:01:00:: 02830010 1 0 -linnaeus%1:18:00:: 11133551 1 0 -linnean%3:01:00:: 02830010 1 0 -linnet%1:05:01:: 01531344 2 0 -linnet%1:05:02:: 01532829 1 0 -lino%1:27:00:: 14938389 1 0 -linocut%1:06:00:: 03674842 2 0 -linocut%1:06:01:: 03674946 1 0 -linoleic_acid%1:27:00:: 14937943 1 0 -linolenic_acid%1:27:00:: 14938199 1 0 -linoleum%1:27:00:: 14938389 1 1 -linoleum_cutter%1:06:00:: 03675076 1 0 -linoleum_knife%1:06:00:: 03675076 1 0 -linolic_acid%1:27:00:: 14937943 1 0 -linosyris_vulgaris%1:20:00:: 11934239 1 0 -linotype%1:06:00:: 03675235 1 0 -linotype_machine%1:06:00:: 03675235 1 0 -linseed%1:27:00:: 15086247 1 0 -linseed_oil%1:27:00:: 15086352 1 0 -linsey-woolsey%1:06:00:: 03675445 1 0 -linstock%1:06:00:: 03675558 1 0 -lint%1:06:00:: 03675780 2 0 -lint%1:27:02:: 14938467 1 3 -lintel%1:06:00:: 03503233 1 0 -lintwhite%1:05:00:: 01531344 1 0 -linum%1:20:00:: 12486397 1 0 -linuron%1:27:00:: 14938578 1 0 -linus_carl_pauling%1:18:00:: 11226933 1 0 -linus_pauling%1:18:00:: 11226933 1 0 -linux%1:10:00:: 06568855 1 0 -linz%1:15:00:: 08846739 1 0 -liomys%1:05:00:: 02349730 1 0 -liomys_irroratus%1:05:00:: 02349847 1 0 -lion%1:05:00:: 02129165 1 2 -lion%1:15:00:: 08686821 4 0 -lion%1:18:00:: 10265070 2 0 -lion%1:18:01:: 09752795 3 0 -lion's-ear%1:20:00:: 12851094 1 0 -lion's_beard%1:20:00:: 11737752 1 0 -lion's_foot%1:20:00:: 11997409 1 0 -lion-hunter%1:18:00:: 10265200 2 0 -lion-hunter%1:18:01:: 10265281 1 0 -lion-jaw_forceps%1:06:00:: 03675907 1 0 -lion_cub%1:05:00:: 01322898 1 0 -lion_marmoset%1:05:00:: 02491107 1 0 -lion_monkey%1:05:00:: 02491107 1 0 -lionel_barrymore%1:18:00:: 10835709 1 0 -lionel_hampton%1:18:00:: 11027127 1 0 -lionel_trilling%1:18:00:: 11349092 1 0 -lioness%1:05:00:: 02129463 1 0 -lionet%1:05:00:: 02129530 1 0 -lionfish%1:05:00:: 02643566 1 0 -lionhearted%5:00:00:brave:00 00264178 1 0 -lionise%2:41:00:: 02398956 1 0 -lionize%2:41:00:: 02398956 1 2 -lions_club%1:14:00:: 08236027 1 0 -liopelma%1:05:00:: 01645278 1 0 -liopelma_hamiltoni%1:05:00:: 01645466 1 0 -liopelmidae%1:05:00:: 01645093 1 0 -liothyronine%1:08:00:: 05413873 1 0 -lip%1:05:00:: 01941538 5 0 -lip%1:06:00:: 02902250 4 0 -lip%1:08:00:: 05305806 1 57 -lip%1:10:00:: 06721949 3 0 -lip%1:20:00:: 11691857 2 0 -lip-gloss%1:06:00:: 03676087 1 0 -lip-read%2:31:00:: 00627970 1 0 -lip-shaped%5:00:00:formed:00 02148277 1 0 -lip-sync%2:32:00:: 01040920 1 0 -lip-synch%2:32:00:: 01040920 1 0 -lip_balm%1:06:00:: 03676006 1 0 -lip_fern%1:20:00:: 13208705 1 0 -lip_off%2:32:00:: 00825776 1 0 -lip_reader%1:18:00:: 10265390 1 0 -lip_rouge%1:06:00:: 03676483 1 0 -lip_service%1:10:00:: 06760076 1 0 -lip_sync%1:04:00:: 00910533 1 0 -lip_synch%1:04:00:: 00910533 1 0 -lip_synchronisation%1:04:00:: 00910533 1 0 -lip_synchronization%1:04:00:: 00910533 1 0 -lipaemia%1:26:00:: 14193925 1 0 -liparidae%1:05:00:: 02646985 1 0 -liparididae%1:05:00:: 02646985 1 0 -liparis%1:05:00:: 02647144 2 0 -liparis%1:20:00:: 12070381 1 0 -liparis_liparis%1:05:00:: 02647294 1 0 -liparis_loeselii%1:20:00:: 12070712 1 0 -lipase%1:27:00:: 14938687 1 0 -lipchitz%1:18:00:: 11133778 1 0 -lipectomy%1:04:00:: 00682080 1 0 -lipemia%1:26:00:: 14193925 1 0 -lipfern%1:20:00:: 13208705 1 0 -lipid%1:27:00:: 14938907 1 0 -lipid-lowering_medication%1:06:00:: 03676175 1 0 -lipid-lowering_medicine%1:06:00:: 03676175 1 0 -lipid_granulomatosis%1:26:00:: 14233717 1 0 -lipidaemia%1:26:00:: 14193925 1 0 -lipide%1:27:00:: 14938907 1 0 -lipidemia%1:26:00:: 14193925 1 0 -lipidosis%1:26:00:: 14193711 1 0 -lipitor%1:06:00:: 02754421 1 0 -lipizzan%1:05:00:: 02380052 1 0 -lipless%3:00:00:: 01704675 1 0 -liplike%5:00:00:lipped:00 01704420 1 0 -lipmann%1:18:00:: 11133938 1 0 -lipo-hepin%1:06:00:: 03514974 1 0 -lipo-lutin%1:27:00:: 14746048 1 0 -lipochondrodystrophy%1:26:00:: 14157163 1 0 -lipogram%1:10:00:: 07014187 1 0 -lipoid%1:27:00:: 14938907 1 0 -lipoid_granulomatosis%1:26:00:: 14233717 1 0 -lipoidaemia%1:26:00:: 14193925 1 0 -lipoidemia%1:26:00:: 14193925 1 0 -lipoma%1:26:00:: 14239322 1 0 -lipomatosis%1:26:00:: 14115799 1 0 -lipophilic%5:00:00:oleophilic:00 00492477 1 0 -lipoprotein%1:27:00:: 14939230 1 0 -liposarcoma%1:26:00:: 14241241 1 0 -liposcelis%1:05:00:: 02261286 1 0 -liposcelis_divinatorius%1:05:00:: 02261419 1 0 -liposomal_delivery_vector%1:17:00:: 09339668 1 0 -liposome%1:08:00:: 05520292 1 0 -liposuction%1:04:00:: 00682243 1 0 -lipotropic%5:00:00:oleophilic:00 00492477 1 0 -lipotyphla%1:05:00:: 01888821 1 0 -lipped%3:00:00:: 01704073 1 1 -lippi%1:18:00:: 11134196 2 0 -lippi%1:18:01:: 11134339 1 0 -lippizan%1:05:00:: 02380052 1 0 -lippizaner%1:05:00:: 02380052 1 0 -lippmann%1:18:00:: 11134466 2 0 -lippmann%1:18:01:: 11134620 1 0 -lipread%2:31:00:: 00627970 1 0 -lipreading%1:04:00:: 00882554 1 0 -lipscomb%1:18:00:: 11134730 1 0 -lipstick%1:06:00:: 03676483 1 2 -lipstick%2:29:00:: 00041417 2 0 -lipstick%2:36:00:: 01689589 1 0 -lipstick_plant%1:20:00:: 12830789 1 0 -liquaemin%1:06:00:: 03514974 1 0 -liquefaction%1:22:00:: 13508651 1 0 -liquefiable%5:00:00:liquid:00 02261985 1 0 -liquefied%5:00:00:liquid:00 02262173 1 0 -liquefied%5:00:02:melted:00 01506526 2 0 -liquefied_petroleum_gas%1:27:00:: 14878483 1 0 -liquefy%2:30:00:: 00443984 3 0 -liquefy%2:30:01:: 00444309 2 0 -liquefy%2:43:00:: 02757304 1 0 -liquescent%5:00:00:unfrozen:00 01079978 1 0 -liqueur%1:13:00:: 07907943 1 0 -liqueur_glass%1:06:00:: 03676623 1 0 -liquid%1:10:00:: 07119643 4 0 -liquid%1:26:00:: 14480420 2 5 -liquid%1:27:00:: 14940100 3 4 -liquid%1:27:04:: 14940386 1 6 -liquid%3:00:00:: 02261386 1 19 -liquid%3:00:04:: 01505991 4 0 -liquid%5:00:00:clear:02 00432453 3 1 -liquid%5:00:00:disposable:02 00778017 7 0 -liquid%5:00:00:graceful:00 01139832 6 0 -liquid%5:00:00:musical:01 01505041 5 0 -liquid%5:00:00:tearful:00 02473371 2 1 -liquid-fueled%5:00:00:fueled:00 01099051 1 0 -liquid_air%1:27:00:: 14940856 1 3 -liquid_assets%1:21:00:: 13333047 1 0 -liquid_bleach%1:27:00:: 14940952 1 0 -liquid_body_substance%1:08:00:: 05397468 1 0 -liquid_crystal%1:27:00:: 14941087 1 0 -liquid_crystal_display%1:06:00:: 03676759 1 0 -liquid_detergent%1:06:00:: 03677026 1 1 -liquid_diet%1:13:00:: 07563800 1 0 -liquid_ecstasy%1:06:00:: 04253751 1 0 -liquid_measure%1:23:00:: 13614764 1 0 -liquid_metal_reactor%1:06:00:: 03677115 1 0 -liquid_nitrogen%1:27:00:: 14940750 1 2 -liquid_oxygen%1:27:00:: 14648526 1 0 -liquid_pred%1:27:00:: 14753414 1 0 -liquid_soap%1:06:00:: 03677231 1 0 -liquid_state%1:26:00:: 14480420 1 0 -liquid_unit%1:23:00:: 13614764 1 0 -liquidambar%1:20:00:: 12316444 2 0 -liquidambar%1:20:01:: 12316300 3 0 -liquidambar%1:20:02:: 12316853 1 0 -liquidambar_styraciflua%1:20:00:: 12316572 1 0 -liquidate%2:35:00:: 01327301 1 2 -liquidate%2:40:00:: 02352019 2 0 -liquidate%2:40:02:: 02256589 3 0 -liquidate%2:40:03:: 02254495 4 0 -liquidation%1:04:00:: 00228535 1 2 -liquidation%1:04:01:: 01245061 2 1 -liquidation%1:04:02:: 00223720 3 0 -liquidator%1:18:00:: 10265532 2 0 -liquidator%1:18:01:: 10338707 1 0 -liquidise%2:30:00:: 00444309 1 0 -liquidiser%1:06:00:: 02850732 1 0 -liquidity%1:07:00:: 04937043 2 0 -liquidity%1:07:01:: 04737430 3 0 -liquidity%1:26:00:: 14480420 1 0 -liquidity_crisis%1:26:00:: 14488912 1 0 -liquidize%2:30:00:: 00444309 2 0 -liquidize%2:40:00:: 02247584 1 0 -liquidizer%1:06:00:: 02850732 1 0 -liquidness%1:07:00:: 04937043 2 0 -liquidness%1:26:00:: 14480420 1 0 -liquifiable%5:00:00:liquid:00 02261985 1 0 -liquified%3:00:04:: 01505991 1 0 -liquified%5:00:00:liquid:00 02262173 2 0 -liquified%5:00:02:melted:00 01506526 3 0 -liquify%2:30:00:: 00443984 2 0 -liquify%2:30:01:: 00444309 1 0 -liquor%1:13:00:: 07901587 1 11 -liquor%1:13:01:: 07584727 3 0 -liquor%1:27:00:: 14941230 2 7 -liquor_licence%1:10:00:: 06551070 1 0 -liquor_license%1:10:00:: 06551070 1 0 -liquor_store%1:06:00:: 03871371 1 0 -liquorice%1:13:00:: 07607361 2 0 -liquorice%1:20:00:: 12532886 1 0 -lir%1:18:00:: 09509770 1 0 -lira%1:23:01:: 13686376 3 0 -lira%1:23:02:: 13687160 2 0 -lira%1:23:03:: 13695189 1 0 -liriodendron%1:20:00:: 11712153 1 0 -liriodendron_tulipifera%1:20:00:: 11712282 1 0 -liriope%1:20:00:: 12473011 1 0 -liriope_muscari%1:20:00:: 12473171 1 0 -lis_pendens%1:04:00:: 01184720 1 0 -lisboa%1:15:00:: 08986066 1 0 -lisbon%1:15:00:: 08986066 1 1 -lise_meitner%1:18:00:: 11171614 1 0 -lisinopril%1:06:00:: 03677308 1 0 -lisle%1:06:00:: 03677540 2 0 -lisle%1:06:01:: 03677682 1 0 -lisle_thread%1:06:00:: 03677540 1 0 -lisp%1:10:00:: 06901936 2 0 -lisp%1:26:00:: 14402763 1 0 -lisp%2:32:00:: 00982178 1 0 -lisp_compiler%1:10:00:: 06574132 1 0 -lisp_program%1:10:00:: 06902109 1 0 -lisper%1:18:00:: 10265801 1 0 -lispingly%4:02:00:: 00392174 1 0 -lissom%5:00:00:graceful:00 01140290 1 0 -lissome%5:00:00:graceful:00 01140290 1 0 -lissomeness%1:07:00:: 05004091 1 0 -list%1:07:00:: 05068080 2 1 -list%1:10:00:: 06481320 1 64 -list%2:32:00:: 00945853 1 23 -list%2:32:01:: 00946755 5 0 -list%2:38:00:: 02038791 4 0 -list%2:38:01:: 02039013 3 0 -list%2:41:00:: 02472223 2 19 -list-processing_language%1:10:00:: 06901936 1 0 -list_price%1:21:00:: 13305070 1 0 -list_processing%1:22:00:: 13508830 1 0 -list_system%1:09:00:: 05904616 1 0 -listed%3:00:00:: 01418288 1 1 -listed_security%1:21:00:: 13420900 1 0 -listen%2:39:00:: 02169891 1 60 -listen%2:39:01:: 02171039 2 34 -listen%2:41:11:: 02571901 3 4 -listen_in%2:39:00:: 02189714 2 0 -listen_in%2:39:01:: 02170304 1 1 -listener%1:18:00:: 10165448 1 9 -listening%1:04:00:: 00882159 1 0 -listening_watch%1:04:00:: 00881257 1 0 -lister%1:06:00:: 03677766 3 0 -lister%1:18:00:: 10265891 2 0 -lister%1:18:01:: 11134895 1 0 -lister_plough%1:06:00:: 03677766 1 0 -lister_plow%1:06:00:: 03677766 1 0 -listera%1:20:00:: 12070950 1 0 -listera_convallarioides%1:20:00:: 12071259 1 0 -listera_cordata%1:20:00:: 12071477 1 0 -listera_ovata%1:20:00:: 12071744 1 0 -listeria%1:05:00:: 01367083 1 0 -listeria_meningitis%1:26:00:: 14137066 1 0 -listeria_monocytogenes%1:05:00:: 01367208 1 0 -listeriosis%1:26:00:: 14137066 1 0 -listing%1:04:00:: 01011166 2 0 -listing%1:10:00:: 06481320 1 0 -listless%5:00:00:lethargic:00 00876465 1 1 -listless%5:00:00:spiritless:00 02281938 2 0 -listlessly%4:02:00:: 00392246 1 1 -listlessness%1:07:00:: 04636881 2 0 -listlessness%1:12:00:: 07484109 1 0 -liston%1:18:00:: 11135044 1 0 -lisu%1:10:00:: 06932734 1 0 -liszt%1:18:00:: 11135236 1 0 -lit%1:09:00:: 06169488 1 0 -lit%3:00:02:: 00475125 2 0 -lit%5:00:00:light:06 00271580 1 1 -lit_crit%1:09:00:: 06169806 1 0 -litany%1:10:00:: 06457442 2 0 -litany%1:10:01:: 07240763 1 0 -litas%1:23:00:: 13701615 1 0 -litchee%1:13:00:: 07766173 1 0 -litchi%1:13:00:: 07766173 2 0 -litchi%1:20:00:: 12744387 1 0 -litchi_chinensis%1:20:00:: 12744387 1 0 -litchi_nut%1:13:00:: 07766173 1 0 -litchi_tree%1:20:00:: 12744387 1 0 -lite%5:00:00:nonfat:00 00993117 1 0 -liter%1:23:00:: 13624190 1 5 -literacy%1:09:00:: 05638486 1 0 -literal%1:10:00:: 06769670 1 0 -literal%3:00:00:: 01418789 3 0 -literal%5:00:00:exact:00 00914983 2 1 -literal%5:00:00:plain:01 01793674 4 0 -literal%5:00:00:true:00 02460964 1 10 -literal_error%1:10:00:: 06769670 1 0 -literal_interpretation%1:10:00:: 07173258 1 0 -literalise%2:31:00:: 00623812 1 0 -literalism%1:09:00:: 05964322 1 1 -literalism%1:09:01:: 06199893 2 0 -literalize%2:31:00:: 00623812 1 0 -literally%4:02:00:: 00340133 1 5 -literally%4:02:01:: 00111269 2 5 -literalness%1:07:00:: 04760611 1 3 -literary%3:01:00:: 02830501 1 27 -literary%5:00:00:formal:02 01045518 3 0 -literary%5:00:00:literate:01 01421368 2 0 -literary_agent%1:18:00:: 09778144 1 0 -literary_argument%1:10:00:: 06467680 1 0 -literary_composition%1:10:00:: 06364329 1 0 -literary_critic%1:18:00:: 10266016 1 0 -literary_criticism%1:09:00:: 06169806 2 0 -literary_criticism%1:10:00:: 06374587 1 0 -literary_genre%1:10:00:: 07092158 1 0 -literary_hack%1:18:00:: 10154740 1 0 -literary_pirate%1:18:00:: 10437262 1 0 -literary_review%1:10:00:: 06597930 1 0 -literary_study%1:09:00:: 06169285 1 1 -literary_work%1:10:00:: 06364329 1 2 -literate%1:18:00:: 10266328 1 0 -literate%3:00:00:: 01421602 1 1 -literate%3:00:01:: 01421077 2 0 -literate%5:00:00:educated:00 00830381 3 0 -literate_person%1:18:00:: 10266328 1 0 -literati%1:14:00:: 08387603 1 0 -literatim%4:02:00:: 00511729 1 0 -literature%1:04:00:: 00610592 4 2 -literature%1:09:00:: 06169488 2 6 -literature%1:10:00:: 06364641 1 60 -literature%1:10:01:: 06365102 3 5 -lithane%1:27:00:: 14941884 1 0 -lithe%5:00:00:graceful:00 01140290 1 1 -lithe-bodied%5:00:00:bodied:00 00628354 1 0 -litheness%1:07:00:: 05004091 1 0 -lithesome%5:00:00:graceful:00 01140290 1 0 -lithia_water%1:27:00:: 14941787 1 0 -lithiasis%1:26:00:: 14115914 1 0 -lithic%3:01:00:: 02830849 2 0 -lithic%3:01:01:: 02830954 1 0 -lithium%1:27:00:: 14643793 1 0 -lithium_carbonate%1:27:00:: 14941884 1 0 -lithocarpus%1:20:00:: 12265266 1 0 -lithocarpus_densiflorus%1:20:00:: 12265394 1 0 -lithocarpus_glaber%1:20:00:: 12265600 1 0 -lithocarpus_glabra%1:20:00:: 12265600 1 0 -lithodidae%1:05:00:: 01980993 1 0 -lithoglyptics%1:06:00:: 03442487 1 0 -lithograph%1:06:00:: 03677976 2 0 -lithograph%1:06:01:: 03678220 1 0 -lithograph%2:36:00:: 01749394 1 0 -lithograph_machine%1:06:00:: 03677976 1 0 -lithographer%1:18:00:: 10266486 1 0 -lithographic%3:01:00:: 03081681 1 0 -lithography%1:04:00:: 00939338 2 0 -lithography%1:10:00:: 06680002 1 0 -lithology%1:09:00:: 06121375 1 0 -lithomancer%1:18:00:: 10266744 1 0 -lithomancy%1:09:00:: 05777298 1 0 -lithomantic%3:01:00:: 02911008 1 0 -lithonate%1:27:00:: 14941884 1 0 -lithophragma%1:20:00:: 12799580 1 0 -lithophragma_affine%1:20:00:: 12799776 1 0 -lithophragma_affinis%1:20:00:: 12799776 1 0 -lithophragma_parviflorum%1:20:00:: 12800049 1 0 -lithophyte%1:20:00:: 13123841 1 0 -lithophytic%3:01:00:: 03022469 1 0 -lithophytic_plant%1:20:00:: 13123841 1 0 -lithops%1:20:00:: 11820463 1 0 -lithospermum%1:20:00:: 12820434 1 0 -lithospermum_canescens%1:20:00:: 12821048 1 0 -lithospermum_caroliniense%1:20:00:: 12820853 1 0 -lithospermum_officinale%1:20:00:: 12820669 1 0 -lithosphere%1:17:00:: 09339810 1 0 -lithotomy%1:04:00:: 00683358 1 0 -lithotomy_position%1:07:00:: 05080753 1 0 -lithuania%1:15:00:: 09013830 1 0 -lithuanian%1:10:00:: 06946199 2 0 -lithuanian%1:18:00:: 09707289 1 0 -lithuanian%3:01:00:: 02962961 1 0 -lithuanian_monetary_unit%1:23:00:: 13701482 1 0 -lithuresis%1:22:00:: 13508950 1 0 -litigant%1:18:00:: 10266848 1 1 -litigate%2:41:00:: 02582042 2 0 -litigate%2:41:01:: 02582450 1 0 -litigation%1:04:00:: 01186810 1 1 -litigator%1:18:00:: 10266848 1 0 -litigious%3:01:00:: 02859221 1 0 -litigious%5:00:00:argumentative:00 00603804 2 0 -litigiousness%1:07:00:: 04644306 1 0 -litmus%1:27:00:: 14941407 1 0 -litmus_paper%1:27:00:: 14941642 1 0 -litmus_test%1:10:00:: 07198437 2 0 -litmus_test%1:27:00:: 14941407 1 0 -litocranius%1:05:00:: 02420675 1 0 -litocranius_walleri%1:05:00:: 02420828 1 0 -litoral%1:15:00:: 08596076 1 0 -litotes%1:10:00:: 07104292 1 0 -litre%1:23:00:: 13624190 1 0 -litter%1:06:00:: 02820432 4 0 -litter%1:06:01:: 03678362 3 0 -litter%1:14:00:: 08400331 1 4 -litter%1:27:00:: 14858292 2 2 -litter%2:29:00:: 00058401 3 0 -litter%2:35:00:: 01378421 2 1 -litter%2:42:00:: 02735142 1 1 -litter-basket%1:06:00:: 03678558 1 0 -litter-bearer%1:18:00:: 10663549 1 0 -litter_basket%1:06:00:: 03678558 1 0 -litter_lout%1:18:00:: 10267166 1 0 -litterateur%1:18:00:: 10064405 1 0 -litterbin%1:06:00:: 03678558 1 0 -litterbug%1:18:00:: 10267166 1 0 -littered%5:00:00:untidy:00 02424949 1 1 -litterer%1:18:00:: 10267166 1 0 -little%1:23:00:: 13762717 1 12 -little%3:00:00:: 02386612 6 0 -little%3:00:01:: 01391351 1 163 -little%3:00:03:: 01554510 2 71 -little%4:02:00:: 00100002 1 16 -little%5:00:00:emotional:00 00855670 8 0 -little%5:00:00:lowercase:00 01467534 7 0 -little%5:00:00:soft:04 01455732 5 3 -little%5:00:00:unimportant:00 01280908 4 8 -little%5:00:00:young:00 01649031 3 12 -little-head_snakeweed%1:20:00:: 11974373 1 0 -little-known%5:00:00:unknown:00 01377407 1 0 -little-leaf_fig%1:20:00:: 12403276 1 0 -little-league_team%1:14:00:: 08232160 1 0 -little_auk%1:05:00:: 02046171 1 0 -little_barley%1:20:00:: 12124172 1 0 -little_bear%1:17:00:: 09340024 1 0 -little_bighorn%1:04:00:: 01284444 2 0 -little_bighorn%1:17:00:: 09340203 1 0 -little_bighorn_river%1:17:00:: 09340203 1 0 -little_black_ant%1:05:00:: 02220225 1 0 -little_blue_heron%1:05:00:: 02009229 1 0 -little_brother%1:18:00:: 10267311 1 0 -little_brown_bat%1:05:00:: 02146700 1 0 -little_brown_myotis%1:05:00:: 02146700 1 0 -little_by_little%4:02:00:: 00422281 1 0 -little_by_little%4:02:01:: 00155995 2 0 -little_chief_hare%1:05:00:: 02328820 1 0 -little_club_moss%1:20:00:: 13224673 1 0 -little_clubmoss%1:20:00:: 13223090 1 0 -little_corporal%1:18:00:: 11200276 1 0 -little_dictionary%1:10:00:: 06419912 1 0 -little_dipper%1:17:00:: 09340452 1 0 -little_dog%1:17:00:: 09232989 1 0 -little_ebony_spleenwort%1:20:00:: 13181406 1 0 -little_egret%1:05:00:: 02009508 1 0 -little_finger%1:08:00:: 05567727 1 1 -little_giant%1:18:00:: 10941206 1 0 -little_girl%1:18:00:: 10084295 1 0 -little_golden_zinnia%1:20:00:: 12034594 1 0 -little_grebe%1:05:00:: 02050809 1 0 -little_hand%1:06:00:: 03544238 1 0 -little_horn%1:17:00:: 09340203 1 0 -little_joe%1:23:00:: 13744304 1 0 -little_john%1:18:00:: 10267437 1 0 -little_league%1:14:00:: 08231999 1 0 -little_leaguer%1:18:00:: 10267561 1 0 -little_lord_fauntleroy%1:18:00:: 10082299 1 0 -little_missouri%1:17:00:: 09340644 1 0 -little_missouri_river%1:17:00:: 09340644 1 0 -little_mo_connolly%1:18:00:: 10907236 1 0 -little_office%1:04:00:: 01033903 1 0 -little_owl%1:05:00:: 01622120 1 0 -little_phoebe%1:23:00:: 13744521 1 0 -little_potato%1:26:00:: 14281549 1 0 -little_red_riding_hood%1:18:00:: 10267719 1 0 -little_rhody%1:15:00:: 09137032 1 0 -little_rock%1:15:00:: 09060280 1 1 -little_sioux_river%1:17:00:: 09340935 1 0 -little_sister%1:18:00:: 10267865 1 1 -little_skate%1:05:00:: 01501777 1 0 -little_slam%1:11:00:: 07474911 1 0 -little_sparrow%1:18:00:: 11234152 1 0 -little_spotted_skunk%1:05:00:: 02447021 1 0 -little_terror%1:18:00:: 10702483 1 0 -little_theater%1:06:00:: 03678729 1 0 -little_theatre%1:06:00:: 03678729 1 0 -little_toe%1:08:00:: 05577969 1 0 -little_wabash%1:17:00:: 09341145 1 0 -little_wabash_river%1:17:00:: 09341145 1 0 -littleneck%1:05:00:: 01958346 2 0 -littleneck%1:13:00:: 07787108 1 0 -littleneck_clam%1:05:00:: 01958346 2 0 -littleneck_clam%1:13:00:: 07787108 1 0 -littleness%1:07:00:: 05106633 1 0 -littleness%1:07:01:: 04834073 3 0 -littleness%1:07:03:: 05031367 2 0 -littler%5:00:00:small:00 01394922 1 0 -littoral%1:15:00:: 08596076 1 0 -littoral%3:01:00:: 02888659 1 0 -littoral_zone%1:15:00:: 08596076 1 0 -littorina%1:05:00:: 01948284 1 0 -littorinidae%1:05:00:: 01948154 1 0 -littre%1:18:00:: 11135371 1 0 -liturgical%3:01:00:: 02994312 1 0 -liturgics%1:09:00:: 06183652 1 0 -liturgiology%1:09:00:: 06183652 1 0 -liturgist%1:18:00:: 10267941 1 0 -liturgy%1:04:00:: 01033184 2 0 -liturgy%1:04:01:: 01035853 1 0 -liv%5:00:00:cardinal:00 02191616 1 0 -livable%3:00:00:: 01423676 1 1 -live%2:31:00:: 00596644 6 1 -live%2:42:00:: 02614181 5 14 -live%2:42:01:: 02616713 4 16 -live%2:42:04:: 02618149 3 29 -live%2:42:06:: 02614387 2 51 -live%2:42:07:: 02614970 7 0 -live%2:42:08:: 02649830 1 129 -live%3:00:00:: 00094448 3 0 -live%3:00:01:: 00099290 2 0 -live%3:00:02:: 01422556 1 6 -live%4:02:00:: 00259019 1 0 -live%5:00:00:charged:00 00358392 10 0 -live%5:00:00:current:00 00667353 9 0 -live%5:00:00:elastic:00 00843595 6 0 -live%5:00:00:lively:00 00806243 7 0 -live%5:00:00:loaded:00 01424596 5 0 -live%5:00:00:reverberant:00 02010441 4 0 -live%5:00:02:current:00 00667463 8 0 -live%5:00:07:active:05 00041488 11 0 -live-and-die%1:20:00:: 11755319 1 0 -live-bearer%1:05:00:: 01448951 1 0 -live-bearing%3:00:00:: 02519029 1 0 -live-forever%1:20:00:: 12786464 1 0 -live_axle%1:06:00:: 03678879 1 0 -live_birth%1:11:00:: 07320734 1 0 -live_body%1:08:00:: 05218788 1 0 -live_down%2:42:00:: 02615300 1 0 -live_in%2:34:00:: 01177314 1 1 -live_it_up%2:34:00:: 01191512 1 1 -live_load%1:06:00:: 03679037 1 0 -live_oak%1:20:00:: 12269241 1 1 -live_on%2:42:00:: 02618149 1 0 -live_out%2:34:00:: 01177505 2 0 -live_out%2:42:00:: 02619020 1 1 -live_over%2:31:00:: 00597216 1 0 -live_steam%1:27:00:: 15055342 1 0 -live_together%2:42:00:: 02651193 1 0 -live_up_to%2:42:00:: 02671880 1 5 -live_wire%1:18:00:: 10040945 1 0 -live_with%2:31:00:: 00668805 1 0 -liveable%3:00:00:: 01423676 1 0 -liveborn%5:00:00:alive:01 00094799 1 0 -liveborn_infant%1:18:00:: 10268058 1 0 -livedo%1:26:00:: 14229788 1 0 -livelihood%1:21:00:: 13365286 1 1 -liveliness%1:04:00:: 00552436 1 1 -liveliness%1:07:00:: 04632157 2 0 -livelong%1:20:00:: 12786464 1 0 -livelong%5:00:00:whole:00 00516231 1 0 -lively%3:00:00:: 00804695 1 7 -lively%5:00:00:animated:00 00119006 6 0 -lively%5:00:00:elastic:00 00843595 4 0 -lively%5:00:00:energetic:00 00874226 3 0 -lively%5:00:00:eventful:00 00804371 5 0 -lively%5:00:00:spirited:00 02280333 2 0 -liven%2:30:00:: 00192836 1 0 -liven_up%2:30:00:: 00192836 1 0 -liveness%1:07:00:: 05005447 1 0 -liver%1:08:00:: 05385534 1 11 -liver%1:13:00:: 07652052 2 1 -liver%1:18:00:: 10268180 4 0 -liver%1:18:01:: 10268299 3 0 -liver%5:00:00:colored:00 00398581 1 0 -liver-colored%5:00:00:colored:00 00398581 1 0 -liver-spotted_dalmatian%1:05:00:: 02110532 1 0 -liver_cancer%1:26:00:: 14131651 1 0 -liver_chestnut%1:05:00:: 02388832 1 0 -liver_disease%1:26:00:: 14116321 1 0 -liver_fluke%1:05:00:: 01926379 1 1 -liver_pudding%1:13:00:: 07677360 1 0 -liver_rot%1:26:00:: 14265006 1 0 -liver_sausage%1:13:00:: 07677360 1 0 -liver_spot%1:08:00:: 05245387 1 0 -liveried%3:00:00:: 01424238 1 0 -liverish%5:00:00:ill-natured:00 01135269 2 0 -liverish%5:00:00:ill:01 02543149 1 0 -liverleaf%1:20:00:: 11735053 1 0 -livermore%1:18:00:: 11135488 1 0 -liverpool%1:15:00:: 08877382 1 1 -liverpudlian%1:18:00:: 09704509 1 0 -liverpudlian%3:01:00:: 03081813 1 0 -liverwort%1:20:00:: 11542640 1 0 -liverwurst%1:13:00:: 07677360 1 0 -livery%1:04:00:: 01108753 2 0 -livery%1:04:01:: 00658946 3 0 -livery%1:06:00:: 03679174 1 0 -livery%5:00:00:ill:01 02543149 1 0 -livery_company%1:14:00:: 08186898 1 0 -livery_driver%1:18:00:: 10693646 1 0 -livery_stable%1:06:00:: 03679274 1 2 -liveryman%1:18:00:: 10268422 1 0 -livestock%1:05:00:: 01887474 1 8 -livid%5:00:00:angry:00 00115906 3 1 -livid%5:00:00:colorless:02 00404568 1 1 -livid%5:00:00:injured:00 01318330 4 0 -livid%5:00:00:light:06 00272172 2 1 -lividity%1:07:00:: 04977561 2 0 -lividity%1:12:00:: 07517292 1 0 -lividly%4:02:00:: 00392361 1 0 -lividness%1:07:00:: 04977561 1 0 -living%1:09:00:: 05810561 1 7 -living%1:14:00:: 07945818 2 2 -living%1:21:00:: 13365286 4 1 -living%1:26:00:: 13961642 3 1 -living%3:01:00:: 02756129 1 2 -living%5:00:00:absolute:00 00005839 3 1 -living%5:00:00:extant:00 00928874 4 0 -living%5:00:00:live:01 00099704 6 0 -living%5:00:00:realistic:00 01941274 2 2 -living%5:00:01:extant:00 00928781 5 0 -living-room%1:06:00:: 03679712 1 0 -living_accommodations%1:06:00:: 03546340 1 0 -living_arrangement%1:09:00:: 05730046 1 1 -living_dead%1:18:00:: 10805638 1 0 -living_death%1:26:00:: 14448825 1 0 -living_granite%1:20:00:: 11821929 1 0 -living_quarters%1:06:00:: 03679384 1 0 -living_rock%1:20:01:: 11843896 1 0 -living_rock%1:20:02:: 11821929 2 0 -living_room%1:06:00:: 03679712 1 12 -living_space%1:23:00:: 13778530 1 2 -living_stone%1:20:00:: 11820463 1 0 -living_substance%1:08:00:: 05432736 1 0 -living_thing%1:03:00:: 00004258 1 1 -living_trust%1:21:00:: 13362918 1 0 -living_wage%1:21:00:: 13280251 1 0 -living_will%1:10:00:: 06544841 1 0 -livingroom_set%1:14:00:: 08007897 1 0 -livingroom_suite%1:14:00:: 08007897 1 0 -livingston%1:18:00:: 11135610 1 0 -livingstone%1:18:00:: 11135797 1 0 -livingstone_daisy%1:20:00:: 11819912 1 0 -livistona%1:20:00:: 12591195 1 0 -livistona_australis%1:20:00:: 12591351 1 0 -livonia%1:15:00:: 09012898 1 0 -livonian%1:10:00:: 06957768 2 0 -livonian%1:18:00:: 09707061 1 0 -livonian-speaking%5:00:00:communicative:00 00498817 1 0 -livy%1:18:00:: 11135991 1 0 -liza%1:05:00:: 02602059 1 0 -lizard%1:05:00:: 01674464 1 1 -lizard%1:18:00:: 10274474 2 0 -lizard's-tail%1:20:00:: 13151975 1 0 -lizard's-tail_family%1:20:00:: 13151568 1 0 -lizard_orchid%1:20:00:: 12069679 1 0 -lizardfish%1:05:00:: 02543565 1 0 -ljubljana%1:15:00:: 08818736 1 0 -llama%1:05:00:: 02437616 1 0 -llano%1:17:00:: 09341319 1 0 -llano_estacado%1:17:00:: 09341465 1 0 -llb%1:10:00:: 06704898 1 0 -lld%1:10:00:: 06705698 1 0 -llew_llaw_gyffes%1:18:00:: 09509911 1 0 -llewelyn_powys%1:18:00:: 11245902 1 0 -llm%1:10:00:: 06704990 1 0 -lloyd%1:18:00:: 11136214 1 0 -lloyd_webber%1:18:00:: 11136405 1 0 -llud%1:18:00:: 09510073 1 0 -llullaillaco%1:17:00:: 09341673 1 0 -llyr%1:18:00:: 09510164 1 0 -lm%1:23:00:: 13641299 1 0 -lo/ovral%1:06:00:: 03689840 1 0 -loach%1:05:00:: 01438581 1 0 -load%1:06:00:: 03679986 1 9 -load%1:06:01:: 04551375 8 0 -load%1:06:02:: 02964389 3 2 -load%1:06:03:: 03680248 9 0 -load%1:09:00:: 05832745 6 1 -load%1:19:00:: 11446067 7 0 -load%1:19:01:: 11449561 5 1 -load%1:23:00:: 13772468 2 3 -load%1:23:01:: 13772313 4 1 -load%2:30:12:: 00487748 5 0 -load%2:35:01:: 01489989 1 8 -load%2:35:02:: 01490336 2 3 -load%2:35:10:: 01612084 4 0 -load%2:40:12:: 02231910 3 0 -load-bearing%5:00:00:bearing:00 00217428 1 0 -load-shedding%1:04:00:: 00807768 1 0 -load_down%2:35:00:: 01483131 1 0 -load_factor%1:24:00:: 13822569 1 0 -load_line%1:15:00:: 08596336 1 0 -load_up%2:35:00:: 01489989 1 1 -loaded%3:00:00:: 01424455 2 3 -loaded%5:00:00:full:00 01085661 1 6 -loaded%5:00:00:intoxicated:00 00798103 5 0 -loaded%5:00:00:prejudiced:00 00285725 3 1 -loaded%5:00:00:rich:00 02022167 4 0 -loaded_down%5:00:00:burdened:00 00869690 1 1 -loaded_down%5:00:00:encumbered:00 00868241 2 0 -loader%1:18:00:: 10655169 1 0 -loader%1:18:01:: 10268505 2 0 -loading%1:04:00:: 00713952 5 0 -loading%1:06:00:: 02964389 4 0 -loading%1:06:01:: 03679986 1 4 -loading%1:23:00:: 13772468 2 2 -loading%1:24:00:: 13826426 3 0 -loading_area%1:15:00:: 08596214 1 0 -loading_dock%1:06:00:: 03217333 1 0 -loading_zone%1:15:00:: 08596214 1 0 -loads%1:23:00:: 13777509 1 0 -loadstar%1:09:00:: 05937417 2 0 -loadstar%1:17:00:: 09342563 1 0 -loadstone%1:27:00:: 14942411 1 0 -loaf%1:13:00:: 07683786 1 3 -loaf%1:13:01:: 07649582 2 0 -loaf%2:42:00:: 02639075 2 0 -loaf%2:42:01:: 02639606 1 1 -loaf_of_bread%1:13:00:: 07683786 1 1 -loaf_sugar%1:13:00:: 07595499 1 0 -loafer%1:06:00:: 03680355 2 0 -loafer%1:18:00:: 10197967 1 0 -loafing%1:04:00:: 01065441 1 0 -loam%1:27:00:: 14942223 1 0 -loamless%3:00:00:: 01425435 1 0 -loamy%3:00:00:: 01425300 1 0 -loan%1:10:00:: 06293460 2 0 -loan%1:21:00:: 13398953 1 19 -loan%2:40:00:: 02324182 1 3 -loan-blend%1:10:00:: 06293229 1 0 -loan_application%1:10:00:: 06513043 1 0 -loan_approval%1:04:00:: 01141366 1 0 -loan_collection%1:14:00:: 07955841 1 0 -loan_office%1:06:00:: 03680629 2 0 -loan_office%1:06:01:: 03901974 1 0 -loan_participation%1:21:00:: 13399570 1 0 -loan_shark%1:18:00:: 10742384 1 0 -loan_translation%1:10:00:: 06301445 1 0 -loanblend%1:10:00:: 06293229 1 0 -loaner%1:06:00:: 03680512 2 0 -loaner%1:18:00:: 10254392 1 0 -loaning%1:04:00:: 01093666 1 0 -loanword%1:10:00:: 06293460 1 0 -loasa%1:20:00:: 12035213 1 0 -loasa_family%1:20:00:: 12034828 1 0 -loasaceae%1:20:00:: 12034828 1 0 -loath%5:00:00:disinclined:00 01293542 2 0 -loath%5:00:00:unwilling:00 02566453 1 0 -loathe%2:37:00:: 01774426 1 3 -loather%1:18:00:: 09754780 1 0 -loathing%1:12:00:: 07503430 1 0 -loathly%5:00:00:offensive:01 01625893 1 0 -loathsome%5:00:00:offensive:01 01625893 2 1 -loathsome%5:00:00:unwholesome:00 02560035 1 1 -loathsomeness%1:07:00:: 04781349 1 0 -lob%1:04:00:: 00120804 2 0 -lob%1:04:01:: 00569361 1 0 -lob%2:35:00:: 01513290 1 1 -lobachevsky%1:18:00:: 11136622 1 0 -lobar%3:01:00:: 02934314 1 0 -lobar_pneumonia%1:26:00:: 14148646 1 0 -lobata%1:05:00:: 01921216 1 0 -lobate%3:01:00:: 02934458 1 0 -lobate%5:00:00:compound:00 02172851 2 0 -lobate_foot%1:05:00:: 02155313 1 0 -lobated%3:01:00:: 02934458 1 0 -lobby%1:06:00:: 02715513 1 6 -lobby%1:14:00:: 08375526 3 0 -lobby%1:14:01:: 08375912 2 0 -lobby%2:41:00:: 02458943 1 1 -lobbying_expense%1:21:00:: 13276604 1 0 -lobbyism%1:04:00:: 00415333 1 0 -lobbyist%1:18:00:: 10268629 1 0 -lobe%1:06:00:: 03680734 4 0 -lobe%1:08:00:: 05493303 1 6 -lobe%1:10:00:: 07005523 3 0 -lobe%1:20:00:: 13161506 2 0 -lobe-finned_fish%1:05:00:: 02515214 1 0 -lobe_of_the_lung%1:08:00:: 05387959 1 0 -lobectomy%1:04:00:: 00683590 1 0 -lobed%5:00:00:compound:00 02172851 1 0 -lobed_leaf%1:20:00:: 13161412 1 0 -lobed_spleenwort%1:20:00:: 13182799 1 0 -lobefin%1:05:00:: 02515214 1 0 -lobelia%1:20:00:: 12168565 1 0 -lobelia_cardinalis%1:20:00:: 12168750 1 0 -lobelia_dortmanna%1:20:00:: 12169099 1 0 -lobelia_family%1:20:00:: 12168126 1 0 -lobelia_inflata%1:20:00:: 12168898 1 0 -lobelia_siphilitica%1:20:00:: 12169320 1 0 -lobeliaceae%1:20:00:: 12168126 1 0 -lobeliaceous%3:01:00:: 02756234 1 0 -lobipes%1:05:00:: 02038010 1 0 -lobipes_lobatus%1:05:00:: 02038141 1 0 -lobito%1:15:00:: 08708609 1 0 -loblolly%1:13:00:: 07875086 1 1 -loblolly_pine%1:20:00:: 11615387 1 0 -lobotes%1:05:00:: 02636035 1 0 -lobotes_pacificus%1:05:00:: 02636550 1 0 -lobotes_surinamensis%1:05:00:: 02636405 1 0 -lobotidae%1:05:00:: 02635911 1 0 -lobotomy%1:04:00:: 00684128 1 0 -lobscouse%1:13:00:: 07591330 1 1 -lobscuse%1:13:00:: 07591330 1 2 -lobster%1:05:00:: 01982650 2 0 -lobster%1:13:00:: 07792725 1 0 -lobster-backed%5:00:00:clothed:00 00456576 1 1 -lobster_a_la_newburg%1:13:00:: 07870478 1 0 -lobster_butter%1:13:00:: 07856045 1 0 -lobster_newburg%1:13:00:: 07870478 1 0 -lobster_plant%1:20:00:: 12920204 1 0 -lobster_pot%1:06:00:: 03680858 1 0 -lobster_stew%1:13:00:: 07591236 1 0 -lobster_tail%1:13:00:: 07793685 1 0 -lobster_tart%1:13:00:: 07624239 1 0 -lobster_thermidor%1:13:00:: 07870894 1 0 -lobsterback%1:18:00:: 10029985 1 0 -lobsterman%1:18:00:: 10268827 1 0 -lobular%3:01:00:: 02948068 1 1 -lobularia%1:20:00:: 11891050 1 0 -lobularia_maritima%1:20:00:: 11891175 1 0 -lobularity%1:07:00:: 05064722 1 1 -lobule%1:08:00:: 05493650 1 3 -lobworm%1:05:00:: 01936671 1 0 -local%1:06:00:: 03680942 1 2 -local%1:06:01:: 03681148 2 0 -local%3:00:01:: 01106405 1 47 -local%3:00:02:: 01425529 3 0 -local%3:01:01:: 02756346 2 3 -local_anaesthesia%1:26:00:: 14027204 1 0 -local_anaesthetic%1:06:00:: 03681148 1 0 -local_anesthesia%1:26:00:: 14027204 1 0 -local_anesthetic%1:06:00:: 03681148 1 0 -local_area_network%1:06:00:: 03681477 1 0 -local_authority%1:14:00:: 08482577 1 0 -local_call%1:10:00:: 06273986 1 2 -local_department%1:14:00:: 08120384 1 1 -local_government%1:14:00:: 08052874 1 1 -local_option%1:26:00:: 13993030 1 1 -local_oscillator%1:06:00:: 03681813 1 0 -local_post_office%1:14:00:: 08145553 1 0 -local_road%1:06:00:: 03682024 1 0 -local_street%1:06:00:: 03682024 1 0 -local_time%1:28:00:: 15116910 1 0 -locale%1:15:00:: 08677628 1 2 -localisation%1:04:00:: 00155487 2 0 -localisation%1:09:00:: 05992274 1 0 -localisation_of_function%1:09:00:: 05992274 1 0 -localisation_principle%1:09:00:: 05992274 1 0 -localise%2:36:00:: 01711749 4 0 -localise%2:41:00:: 02509919 3 0 -localise%2:42:00:: 02692335 2 0 -localise%2:42:01:: 02695895 1 0 -localised%5:00:00:decentralized:00 01108276 2 0 -localised%5:00:00:local:02 01425708 1 0 -localism%1:09:00:: 06202429 2 0 -localism%1:10:00:: 07156375 1 0 -locality%1:15:00:: 08641113 1 6 -localization%1:04:00:: 00155487 1 2 -localization%1:09:00:: 05992274 2 0 -localization_of_function%1:09:00:: 05992274 1 0 -localization_principle%1:09:00:: 05992274 1 0 -localize%2:36:00:: 01711749 4 0 -localize%2:41:00:: 02509919 3 0 -localize%2:42:00:: 02692335 2 0 -localize%2:42:01:: 02695895 1 0 -localized%5:00:00:decentralized:00 01108276 2 0 -localized%5:00:00:local:02 01425708 1 0 -locally%4:02:00:: 00135314 1 2 -locally%4:02:01:: 00135418 2 0 -locate%2:30:00:: 00413876 4 4 -locate%2:40:00:: 02286204 1 16 -locate%2:40:01:: 02333689 3 4 -locate%2:42:00:: 02694933 2 12 -located%5:00:00:settled:01 02126430 1 20 -locater%1:18:00:: 10268930 1 0 -locating%1:04:00:: 01051331 1 0 -locating%1:04:01:: 00155487 2 0 -location%1:03:00:: 00027167 1 992 -location%1:04:01:: 00155487 3 2 -location%1:04:02:: 01051331 2 2 -location%1:06:00:: 03682189 4 0 -locative%1:10:00:: 06332919 1 0 -locative_role%1:10:00:: 06332919 1 0 -locator%1:18:00:: 10268930 1 0 -loch%1:17:00:: 09341874 2 0 -loch%1:17:01:: 09341987 1 0 -loch_achray%1:17:00:: 09342141 1 0 -loch_linnhe%1:17:00:: 09342245 1 0 -loch_ness%1:17:00:: 09342386 1 0 -loch_ness_monster%1:18:00:: 09487821 1 0 -lochaber_ax%1:06:00:: 03682380 1 0 -lochia%1:08:00:: 05417272 1 0 -lock%1:04:00:: 00814458 6 0 -lock%1:06:00:: 03682487 1 6 -lock%1:06:01:: 03682877 5 0 -lock%1:06:02:: 03683079 4 0 -lock%1:06:03:: 03683341 3 1 -lock%1:08:00:: 05257737 2 2 -lock%2:30:00:: 00219775 3 4 -lock%2:35:00:: 01348174 1 8 -lock%2:35:01:: 01510827 2 7 -lock%2:35:02:: 01347678 7 1 -lock%2:35:03:: 01606018 5 2 -lock%2:35:04:: 01606736 4 2 -lock%2:36:04:: 01655347 9 0 -lock%2:37:00:: 01810320 6 1 -lock%2:38:04:: 02050865 8 0 -lock-gate%1:06:00:: 03684143 1 0 -lock-up_option%1:21:00:: 13242558 1 0 -lock_away%2:35:00:: 01347678 1 0 -lock_chamber%1:06:00:: 03683079 1 0 -lock_in%2:35:00:: 01347678 2 1 -lock_in%2:35:01:: 01348013 1 1 -lock_out%2:41:00:: 02449717 1 0 -lock_ring%1:06:00:: 03684489 1 0 -lock_up%2:35:00:: 01347678 2 3 -lock_up%2:35:01:: 01348452 1 3 -lock_washer%1:06:00:: 03684489 1 0 -lockage%1:04:00:: 00313385 3 0 -lockage%1:06:00:: 03683457 2 0 -lockage%1:21:00:: 13322641 1 0 -lockbox%1:06:00:: 04125257 1 0 -lockdown%1:04:00:: 01146993 1 0 -locke%1:18:00:: 11136798 1 0 -locker%1:06:00:: 02933462 1 4 -locker%1:06:01:: 03380301 3 0 -locker%1:06:02:: 03683606 2 0 -locker-room%3:01:00:: 02756620 1 0 -locker_room%1:06:00:: 03683708 1 2 -locket%1:06:00:: 03683995 1 0 -locking%1:04:00:: 00827638 1 0 -locking_pliers%1:06:00:: 03684224 1 0 -lockjaw%1:26:00:: 14185803 1 0 -lockkeeper%1:18:00:: 10269078 1 0 -lockman%1:18:00:: 10269078 1 0 -lockmaster%1:18:00:: 10269078 1 0 -locknut%1:06:00:: 03684338 1 0 -lockout%1:04:00:: 00202620 1 0 -lockring%1:06:00:: 03684489 1 0 -locksmith%1:18:00:: 10269199 1 0 -lockstep%1:04:00:: 00291400 2 0 -lockstep%1:04:01:: 01025254 1 0 -lockstitch%1:06:00:: 03684611 1 0 -lockup%1:04:00:: 00827638 2 0 -lockup%1:06:00:: 03684740 1 2 -loco%5:00:00:insane:00 02074929 1 0 -loco_disease%1:26:00:: 14273860 1 0 -locoism%1:26:00:: 14273860 1 0 -locomote%2:38:00:: 01835496 1 0 -locomotion%1:04:00:: 00283127 2 0 -locomotion%1:07:00:: 04773596 1 0 -locomotive%1:06:00:: 03684823 1 0 -locomotive%3:01:00:: 02994448 1 0 -locomotive_engine%1:06:00:: 03684823 1 0 -locomotive_engineer%1:18:00:: 10057714 1 0 -locomotor%3:01:00:: 02994448 1 0 -locomotor_ataxia%1:26:00:: 14134819 1 0 -locoweed%1:06:00:: 03990834 2 0 -locoweed%1:20:00:: 12554526 1 0 -locule%1:08:00:: 05253951 1 0 -loculus%1:08:00:: 05253951 1 0 -locum%1:18:00:: 10269289 1 0 -locum_tenens%1:18:00:: 10269289 1 0 -locus%1:14:00:: 08000881 3 0 -locus%1:15:00:: 08677628 1 0 -locus%1:15:01:: 08623568 2 0 -locus_classicus%1:10:00:: 06401004 1 0 -locus_niger%1:08:00:: 05500006 1 0 -locus_of_infection%1:15:00:: 08623676 1 0 -locust%1:05:00:: 02226970 1 2 -locust%1:20:00:: 12495146 3 0 -locust%1:20:02:: 12495396 2 0 -locust_bean%1:20:00:: 12493426 1 0 -locust_pod%1:20:00:: 12493426 1 0 -locust_tree%1:20:00:: 12495146 1 0 -locusta%1:05:00:: 02227119 1 0 -locusta_migratoria%1:05:00:: 02227247 1 0 -locustidae%1:05:00:: 02226598 1 0 -locution%1:10:00:: 07151380 1 0 -loddon_pondweed%1:20:00:: 12616630 1 0 -lode%1:19:00:: 11446067 1 0 -lodestar%1:09:00:: 05937417 2 0 -lodestar%1:17:00:: 09342563 1 0 -lodestone%1:27:00:: 14942411 1 0 -lodge%1:06:00:: 03685307 5 0 -lodge%1:06:01:: 03541696 6 0 -lodge%1:06:02:: 03685486 4 0 -lodge%1:06:03:: 03685640 3 0 -lodge%1:14:00:: 08227214 2 0 -lodge%1:18:00:: 11136973 1 0 -lodge%2:32:00:: 00869931 3 1 -lodge%2:35:00:: 01528069 2 1 -lodge%2:42:00:: 02651424 4 0 -lodge%2:42:02:: 02652494 1 3 -lodge_in%2:42:00:: 02648639 1 0 -lodgement%1:07:00:: 04777634 2 0 -lodgement%1:10:00:: 07236627 1 0 -lodgepole%1:20:00:: 11615026 1 0 -lodgepole_pine%1:20:00:: 11615026 1 0 -lodger%1:18:00:: 10269458 1 0 -lodging%1:04:00:: 01054227 3 0 -lodging%1:06:00:: 03546340 1 2 -lodging%1:07:00:: 04777634 2 0 -lodging_house%1:06:00:: 03685820 1 0 -lodgings%1:06:00:: 03195485 1 2 -lodgment%1:07:00:: 04777634 2 0 -lodgment%1:10:00:: 07236627 1 0 -lodine%1:06:00:: 03300907 1 0 -lodz%1:15:00:: 08984122 1 0 -loeb%1:18:00:: 11137175 1 0 -loess%1:27:00:: 14942631 1 0 -loestrin%1:06:00:: 03685962 1 0 -loewe%1:18:00:: 11137334 1 0 -loewi%1:18:00:: 11137506 1 0 -lofortyx%1:05:00:: 01806740 1 0 -lofortyx_californicus%1:05:00:: 01806847 1 0 -lofoten%1:15:00:: 08764899 1 0 -loft%1:06:00:: 03686130 2 1 -loft%1:06:01:: 03686363 4 0 -loft%1:06:02:: 03686470 1 1 -loft%1:07:00:: 05069447 3 0 -loft%2:31:00:: 00711420 4 0 -loft%2:35:00:: 01604442 2 0 -loft%2:35:01:: 01604012 3 0 -loft%2:40:00:: 02282252 1 0 -loft_bombing%1:04:00:: 00979348 1 0 -loftily%4:02:00:: 00392432 1 0 -loftiness%1:07:01:: 05137402 1 0 -loftiness%1:07:02:: 04729984 2 0 -lofty%5:00:00:high:01 01205473 2 1 -lofty%5:00:00:impressive:00 01285136 3 0 -lofty%5:00:00:noble:01 01588619 1 1 -log%1:06:01:: 03686658 5 0 -log%1:10:00:: 06503884 4 0 -log%1:10:01:: 06812631 2 0 -log%1:10:02:: 06504155 3 0 -log%1:27:01:: 14942762 1 7 -log%2:32:00:: 01002481 1 2 -log%2:35:00:: 01258828 2 1 -log-in%2:40:00:: 02249147 1 0 -log_cabin%1:06:00:: 03686924 1 1 -log_in%2:40:00:: 02249147 1 0 -log_line%1:06:00:: 03687448 1 0 -log_off%2:40:00:: 02249293 1 0 -log_on%2:40:00:: 02249147 1 0 -log_out%2:40:00:: 02249293 1 0 -log_up%2:32:00:: 01002618 1 0 -log_z's%2:29:00:: 00014742 1 0 -logagraphia%1:26:00:: 14095948 1 0 -logan%1:17:00:: 09342729 1 0 -loganberry%1:13:00:: 07745357 2 0 -loganberry%1:20:00:: 12655062 1 0 -logania%1:20:00:: 12485331 1 0 -loganiaceae%1:20:00:: 12485122 1 0 -logarithm%1:10:00:: 06812631 1 1 -logarithmic%3:01:00:: 02994617 1 0 -logarithmic_scale%1:24:00:: 13851245 1 0 -logarithmically%4:02:00:: 00392531 1 0 -logbook%1:10:00:: 06504049 1 0 -loge%1:06:00:: 03687003 1 0 -loge%1:06:01:: 02884225 2 0 -logger%1:18:00:: 10276045 1 1 -loggerhead%1:05:00:: 01664065 2 0 -loggerhead%1:18:00:: 10039663 1 0 -loggerhead_shrike%1:05:00:: 01599556 1 0 -loggerhead_turtle%1:05:00:: 01664065 1 0 -loggerheaded%5:00:00:stupid:00 00440292 1 0 -loggia%1:06:00:: 03687137 1 0 -logginess%1:26:00:: 14018432 1 0 -logging%1:04:00:: 00581772 1 1 -logic%1:09:00:: 06163751 1 2 -logic%1:09:01:: 05664069 5 0 -logic%1:09:02:: 05615028 2 2 -logic%1:09:03:: 05871618 3 1 -logic%1:09:04:: 06133018 4 0 -logic_bomb%1:10:00:: 06585203 1 0 -logic_diagram%1:10:00:: 06582267 1 0 -logic_element%1:06:00:: 03687306 1 0 -logic_gate%1:06:00:: 03427656 1 0 -logic_operation%1:22:00:: 13509042 1 0 -logic_programing%1:04:00:: 00929285 2 0 -logic_programing%1:10:00:: 06902193 1 0 -logic_programming%1:04:00:: 00929285 2 0 -logic_programming%1:10:00:: 06902193 1 0 -logical%3:00:00:: 01430111 1 6 -logical%3:00:05:: 00464513 3 0 -logical%5:00:00:rational:00 01925708 4 0 -logical%5:00:00:valid:00 02499301 2 5 -logical_argument%1:09:00:: 05773049 1 0 -logical_diagram%1:10:00:: 06582267 1 0 -logical_fallacy%1:09:00:: 05894143 1 0 -logical_implication%1:24:00:: 13860281 1 0 -logical_operation%1:22:00:: 13509042 1 0 -logical_positivism%1:09:00:: 05993367 1 0 -logical_positivist%1:18:00:: 10269611 1 0 -logical_proof%1:10:00:: 06647960 1 0 -logical_quantifier%1:10:00:: 06302542 1 0 -logical_relation%1:24:00:: 13783038 1 0 -logical_system%1:09:00:: 05664069 1 0 -logical_thinking%1:09:00:: 05772356 1 0 -logical_topology%1:09:00:: 05731405 1 0 -logicality%1:07:00:: 04784664 1 0 -logically%4:02:00:: 00363463 2 1 -logically%4:02:01:: 00363744 1 2 -logicalness%1:07:00:: 04784664 1 0 -logician%1:18:00:: 10269785 1 0 -logicism%1:09:00:: 05972417 1 0 -loginess%1:26:00:: 14018432 1 0 -logion%1:10:00:: 06301302 1 0 -logistic%3:01:00:: 02986218 1 1 -logistic_assessment%1:04:00:: 00875671 1 0 -logistic_assistance%1:04:00:: 01216515 1 0 -logistic_support%1:04:00:: 01216515 1 0 -logistical%3:01:00:: 02986218 1 0 -logistician%1:18:00:: 10269785 1 0 -logistics%1:04:00:: 01060745 1 1 -logjam%1:14:00:: 07962405 2 0 -logjam%1:26:00:: 14015596 1 0 -logo%1:10:00:: 07272084 1 0 -logogram%1:10:00:: 06840890 1 0 -logogrammatic%3:01:00:: 02756743 1 0 -logogrammatically%4:02:00:: 00514350 1 0 -logograph%1:10:00:: 06840890 1 0 -logographic%3:01:00:: 02756743 1 0 -logomach%1:18:00:: 10270109 1 0 -logomachist%1:18:00:: 10270109 1 0 -logomachy%1:10:00:: 07141319 1 0 -logomania%1:16:00:: 09182401 1 0 -logorrhea%1:16:00:: 09182401 1 0 -logos%1:18:00:: 09537144 1 0 -logotype%1:10:00:: 07272084 1 0 -logroll%2:41:00:: 02375902 1 0 -logrolling%1:04:00:: 00343894 2 0 -logrolling%1:04:01:: 01110063 1 0 -logrono%1:15:00:: 09026499 1 0 -logwood%1:20:00:: 12496949 2 0 -logwood%1:20:02:: 12497322 1 0 -logwood_tree%1:20:00:: 12496949 1 0 -logy%5:00:00:lethargic:00 00875962 1 0 -lohan%1:18:00:: 09532837 1 0 -loin%1:05:00:: 02463403 2 0 -loin%1:13:00:: 07658678 1 0 -loin_of_lamb%1:13:00:: 07667872 1 0 -loincloth%1:06:00:: 02896294 1 0 -loins%1:08:00:: 05558555 1 1 -loins%1:08:01:: 05597594 2 0 -loir%1:05:00:: 02352932 1 0 -loire%1:17:00:: 09342937 1 0 -loire_river%1:17:00:: 09342937 1 0 -loire_valley%1:17:00:: 09343123 1 0 -loiseleuria%1:20:00:: 12240335 1 0 -loiseleuria_procumbens%1:20:00:: 12240477 1 0 -loiter%2:42:00:: 02639075 1 1 -loiterer%1:18:00:: 10270232 1 0 -loki%1:18:00:: 09581680 1 0 -lola_montez%1:18:00:: 11187471 1 0 -loligo%1:05:00:: 01971620 1 0 -lolita%1:18:00:: 10270383 1 0 -lolium%1:20:00:: 12124505 1 0 -lolium_multiflorum%1:20:00:: 12125001 1 0 -lolium_perenne%1:20:00:: 12124818 1 0 -lolium_temulentum%1:20:00:: 12125183 1 0 -loll%2:42:00:: 02639606 2 0 -loll%2:42:01:: 02717701 1 0 -loll_around%2:42:00:: 02639606 1 0 -lollipop%1:13:00:: 07607605 2 0 -lollipop%1:13:02:: 07615774 1 0 -lollipop_lady%1:18:00:: 10270468 1 0 -lollipop_woman%1:18:00:: 10270468 1 0 -lollop%2:38:00:: 01900918 1 0 -lolly%1:13:00:: 07615774 2 0 -lolly%1:21:00:: 13385216 1 0 -lollygag%2:42:00:: 02639075 1 0 -lolo%1:10:00:: 06932948 1 0 -lolo-burmese%1:10:00:: 06932265 1 0 -loloish%1:10:00:: 06932537 1 0 -lomariopsidaceae%1:20:00:: 13202749 1 0 -lomatia%1:20:00:: 12220829 1 0 -lombard%1:18:00:: 09703344 1 0 -lombard_street%1:15:00:: 08596519 1 0 -lombardia%1:15:00:: 08808614 1 0 -lombardy%1:15:00:: 08808614 1 0 -lombardy_poplar%1:20:00:: 12732605 1 0 -lome%1:15:00:: 08760228 1 0 -loment%1:20:00:: 13139321 1 0 -lomogramma%1:20:00:: 13203115 1 0 -lomotil%1:06:00:: 03687604 1 0 -lomustine%1:06:00:: 03687688 1 0 -lonas%1:20:00:: 11992674 1 0 -lonas_annua%1:20:00:: 11992806 1 0 -lonas_inodora%1:20:00:: 11992806 1 0 -lonchocarpus%1:20:00:: 12544646 1 0 -london%1:15:00:: 08873622 1 13 -london%1:18:00:: 11137748 2 0 -london_plane%1:20:00:: 12807251 1 0 -londoner%1:18:00:: 09704630 1 1 -lone%5:00:00:single:05 02214736 3 0 -lone%5:00:00:unaccompanied:00 02251212 1 1 -lone%5:00:00:unsocial:00 02250430 2 1 -lone-star_state%1:15:00:: 09141526 1 0 -lone_hand%1:18:00:: 10270628 1 0 -lone_wolf%1:18:00:: 10270628 1 0 -loneliness%1:07:00:: 04622415 3 0 -loneliness%1:12:00:: 07534108 2 1 -loneliness%1:26:00:: 14415163 1 4 -lonely%5:00:00:dejected:00 00704360 2 4 -lonely%5:00:00:unaccompanied:00 02251212 1 4 -lonely%5:00:00:uninhabited:00 01313649 4 0 -lonely%5:00:01:unsocial:00 02250430 3 0 -loner%1:18:00:: 10270628 1 0 -lonesome%5:00:00:dejected:00 00704360 2 0 -lonesome%5:00:00:single:05 02214736 1 0 -lonesomeness%1:07:00:: 04622415 1 0 -long%2:37:02:: 01828405 1 6 -long%3:00:00:: 02005756 4 0 -long%3:00:01:: 01433493 2 105 -long%3:00:02:: 01437963 1 118 -long%3:00:04:: 01444022 6 0 -long%3:00:05:: 01444434 5 0 -long%4:02:00:: 00166025 1 36 -long%4:02:03:: 00166318 2 0 -long%5:00:00:abundant:00 00015589 9 0 -long%5:00:00:provident:00 01895296 8 0 -long%5:00:00:tall:00 02386125 3 2 -long%5:00:00:unsound:00 02274869 7 0 -long-acting%5:00:00:long:02 01440331 1 1 -long-ago%5:00:00:old:01 01640124 1 0 -long-armed%5:00:00:armed:03 00146609 1 0 -long-beard%1:06:00:: 02825240 1 0 -long-billed_marsh_wren%1:05:00:: 01585287 1 0 -long-bodied%5:00:00:bodied:00 00628432 1 0 -long-branched%5:00:00:branchy:00 00614120 1 0 -long-chain%3:01:00:: 02830223 1 0 -long-chain_molecule%1:17:00:: 09343266 1 0 -long-clawed_prawn%1:05:00:: 01987727 1 0 -long-dated%5:00:00:long:02 01440422 1 0 -long-distance%3:01:00:: 02756894 1 0 -long-distance%5:00:00:distant:01 00446333 2 0 -long-distance_call%1:10:00:: 06274092 1 0 -long-distance_runner%1:18:00:: 10292969 1 0 -long-eared_bat%1:05:00:: 02148835 1 0 -long-eared_owl%1:05:00:: 01624833 1 0 -long-faced%5:00:00:faced:00 00235731 1 0 -long-familiar%5:00:00:familiar:00 00966167 1 1 -long-fin_tunny%1:05:00:: 02627037 1 0 -long-haired%5:00:00:hairy:00 00214812 1 0 -long-handled%5:00:00:long:01 01434966 1 0 -long-handled_spade%1:06:00:: 03214450 1 0 -long-head_coneflower%1:20:00:: 12007196 1 0 -long-headed%5:00:00:dolichocephalic:00 00262705 1 0 -long-horned_beetle%1:05:00:: 02168699 1 0 -long-horned_grasshopper%1:05:00:: 02227966 1 0 -long-jawed%5:00:00:jawed:00 02597245 1 0 -long-lasting%5:00:00:long:02 01439496 1 0 -long-legged%5:00:00:tall:00 02385851 1 1 -long-legs%1:05:00:: 02034661 1 0 -long-life%5:00:00:long:02 01440641 1 0 -long-lived%5:00:00:long:02 01439496 1 1 -long-neck_clam%1:05:00:: 01957335 2 0 -long-neck_clam%1:13:00:: 07787429 1 0 -long-play%5:00:00:slow:01 00981455 1 0 -long-playing%5:00:00:slow:01 00981455 1 0 -long-range%5:00:00:long:01 01435060 2 3 -long-range%5:00:00:long:02 01440889 1 4 -long-run%5:00:00:long:02 01441000 1 3 -long-shanked%5:00:00:tall:00 02385851 1 1 -long-snouted%5:00:00:long:01 01435189 1 0 -long-spurred%3:00:00:: 02596222 1 0 -long-spurred_violet%1:20:00:: 12389932 1 0 -long-stalked%5:00:00:tall:00 02386305 1 0 -long-staple%5:00:00:long:01 01435290 1 0 -long-staple_cotton%1:27:00:: 14870325 1 0 -long-sufferance%1:07:00:: 05033291 1 0 -long-suffering%1:07:00:: 05033291 1 0 -long-suffering%5:00:00:patient:00 01736384 1 0 -long-tailed_porcupine%1:05:00:: 02347573 1 0 -long-tailed_weasel%1:05:00:: 02442668 1 0 -long-term%5:00:00:long:02 01441000 1 6 -long-term_memory%1:09:00:: 05760877 1 0 -long-wearing%5:00:00:serviceable:00 02124096 1 0 -long-winded%5:00:00:prolix:00 00549236 1 1 -long-windedly%4:02:00:: 00492543 1 0 -long-windedness%1:10:00:: 07090108 1 0 -long-wool%5:00:00:long:01 01435399 1 0 -long-wooled%5:00:00:long:01 01435399 1 0 -long_ago%4:02:00:: 00022401 1 14 -long_beach%1:15:00:: 09063477 1 0 -long_beech_fern%1:20:00:: 13231078 1 0 -long_bone%1:08:00:: 05275651 1 3 -long_chain%1:17:00:: 09343266 1 0 -long_distance%1:10:00:: 06274092 1 0 -long_division%1:04:00:: 00871123 1 0 -long_dozen%1:23:00:: 13747199 1 0 -long_fly%1:04:00:: 00438606 1 0 -long_haul%1:04:00:: 00308073 1 1 -long_haul%1:28:00:: 15243351 2 0 -long_horse%1:06:00:: 04524142 1 0 -long_hundred%1:23:00:: 13750574 1 0 -long_hundredweight%1:23:00:: 13721003 1 0 -long_iron%1:06:00:: 03688066 1 0 -long_island%1:15:00:: 09124039 1 4 -long_island_sound%1:17:00:: 09343422 1 1 -long_johns%1:06:00:: 03688192 1 0 -long_jump%1:04:00:: 00440382 2 0 -long_jump%1:11:00:: 07469609 1 0 -long_measure%1:23:00:: 13599469 1 0 -long_moss%1:20:00:: 12608127 1 0 -long_pants%1:06:00:: 03688605 1 0 -long_pepper%1:20:01:: 12900987 2 0 -long_pepper%1:20:02:: 13149829 1 0 -long_pillow%1:06:00:: 02865509 1 0 -long_plane%1:06:00:: 03601638 1 0 -long_run%1:28:00:: 15243351 1 0 -long_saphenous_vein%1:08:00:: 05379944 1 0 -long_shot%1:04:00:: 00803091 1 1 -long_shot%1:18:00:: 10271124 2 0 -long_since%4:02:01:: 00022401 1 5 -long_sleeve%1:06:00:: 03688405 1 0 -long_suit%1:07:00:: 05159225 2 0 -long_suit%1:14:00:: 07957193 1 0 -long_time%1:28:00:: 15242955 1 15 -long_tom%1:06:00:: 03688504 1 0 -long_ton%1:23:00:: 13721387 1 0 -long_trousers%1:06:00:: 03688605 1 0 -long_underwear%1:06:00:: 03688707 1 0 -long_wave%1:19:00:: 11507511 1 0 -long_whist%1:04:00:: 00496167 1 0 -longan%1:20:00:: 12743352 1 0 -longanberry%1:13:00:: 07766409 2 0 -longanberry%1:20:00:: 12743352 1 0 -longanimity%1:07:00:: 04640538 1 0 -longanimous%5:00:00:patient:00 01736571 1 0 -longar_palm%1:20:00:: 12585629 1 0 -longbeard%1:06:00:: 02825240 1 0 -longboat%1:06:00:: 03687820 1 0 -longbow%1:06:00:: 03687928 1 0 -longbowman%1:18:00:: 10270777 1 0 -longcase_clock%1:06:00:: 03452594 1 0 -longed-for%5:00:00:wanted:00 02527489 1 0 -longer%1:18:00:: 10270878 1 0 -longer%4:02:00:: 00392690 1 17 -longest%4:02:00:: 00392782 1 0 -longevity%1:07:00:: 05051734 1 1 -longevity%1:07:01:: 04927890 2 0 -longfellow%1:18:00:: 11137928 1 0 -longfin_mako%1:05:00:: 01484447 1 0 -longhand%1:10:00:: 06350274 1 1 -longhand%5:00:00:written:00 02285739 1 1 -longheaded_thimbleweed%1:20:00:: 11726145 1 0 -longhorn%1:05:00:: 02404432 1 0 -longicorn%1:05:00:: 02168699 1 0 -longicorn_beetle%1:05:00:: 02168699 1 0 -longing%1:12:00:: 07486628 1 4 -longingly%4:02:00:: 00389421 1 0 -longish%5:00:00:long:02 01440574 1 0 -longitude%1:15:00:: 08596668 1 1 -longitudinal%3:01:00:: 02830345 1 0 -longitudinal%5:00:00:lengthwise:00 01445558 2 0 -longitudinal%5:00:00:long:02 01440776 3 0 -longitudinally%4:02:00:: 00129675 3 0 -longitudinally%4:02:01:: 00388209 2 0 -longitudinally%4:02:02:: 00388379 1 0 -longleaf_pine%1:20:00:: 11615967 1 0 -longlegs%1:05:00:: 02034661 1 0 -longness%1:07:00:: 05133287 1 0 -longness%1:07:01:: 05051601 2 0 -longroot%1:20:00:: 11806369 1 0 -longshoreman%1:18:00:: 10655169 1 1 -longshot%1:06:00:: 03688316 1 1 -longsighted%5:00:00:farsighted:00 02157594 1 0 -longsighted%5:00:00:provident:00 01895296 2 0 -longsightedness%1:26:00:: 14554011 1 0 -longstanding%5:00:00:long:02 01441271 1 1 -longtail_weasel%1:05:00:: 02442668 1 0 -longtime%5:00:00:old:01 01640261 1 0 -longueur%1:28:00:: 15134054 1 0 -longways%1:04:00:: 00539510 1 0 -longways%4:02:00:: 00388209 1 0 -longways_dance%1:04:00:: 00539510 1 0 -longwise%4:02:00:: 00388209 1 0 -longwool%1:05:00:: 02414209 1 0 -longyi%1:06:00:: 03697913 1 0 -lonicera%1:20:00:: 12673755 1 0 -lonicera_albiflora%1:20:00:: 12674484 1 0 -lonicera_canadensis%1:20:00:: 12674685 1 0 -lonicera_caprifolium%1:20:00:: 12674895 1 0 -lonicera_dioica%1:20:00:: 12675100 1 0 -lonicera_flava%1:20:00:: 12675299 1 0 -lonicera_hirsuta%1:20:00:: 12675515 1 0 -lonicera_involucrata%1:20:00:: 12675716 1 0 -lonicera_japonica%1:20:00:: 12675876 1 0 -lonicera_japonica_halliana%1:20:00:: 12676134 1 0 -lonicera_morrowii%1:20:00:: 12676370 1 0 -lonicera_periclymenum%1:20:00:: 12676534 1 0 -lonicera_sempervirens%1:20:00:: 12676703 1 0 -lonicera_tatarica%1:20:00:: 12676940 1 0 -lonicera_xylosteum%1:20:00:: 12677120 1 0 -loniten%1:06:00:: 03771820 1 0 -lontar%1:20:00:: 12585629 1 0 -loo%1:06:00:: 04558478 1 0 -loofa%1:20:00:: 12167075 1 0 -loofah%1:20:00:: 12166793 2 0 -loofah%1:20:01:: 12167075 1 0 -look%1:04:00:: 00877127 2 16 -look%1:07:00:: 04674715 3 9 -look%1:07:01:: 04679738 1 24 -look%1:26:00:: 14526182 4 0 -look%2:29:00:: 00033599 3 25 -look%2:31:00:: 00720063 8 1 -look%2:31:02:: 00712708 10 0 -look%2:32:00:: 00929362 7 1 -look%2:39:00:: 02130524 1 274 -look%2:39:01:: 02133435 2 126 -look%2:39:02:: 02153709 4 8 -look%2:41:13:: 02549581 6 1 -look%2:42:00:: 02693319 5 1 -look%2:42:02:: 02658447 9 0 -look-alike%1:18:00:: 10027246 1 0 -look-alike%5:00:00:like:00 01410118 1 0 -look-over%1:04:00:: 00143626 1 0 -look_across%2:42:00:: 02721966 1 2 -look_after%2:39:00:: 02167435 1 5 -look_around%2:39:00:: 02132420 1 13 -look_at%2:31:00:: 00734054 1 17 -look_at%2:39:01:: 02130300 2 6 -look_away%2:39:00:: 02132263 1 2 -look_back%2:31:00:: 00696414 2 4 -look_back%2:39:00:: 02132099 1 11 -look_backward%2:39:00:: 02132099 1 0 -look_down_on%2:37:00:: 01828070 1 0 -look_for%2:35:00:: 01315613 1 50 -look_for%2:37:00:: 01804961 2 3 -look_forward%2:31:00:: 00720497 1 7 -look_into%2:31:00:: 00661824 2 2 -look_into%2:32:00:: 00789138 1 6 -look_like%2:42:00:: 02665617 1 59 -look_on%2:31:00:: 00689950 2 1 -look_on%2:39:00:: 02128653 1 3 -look_out%2:33:10:: 01129064 2 1 -look_out%2:39:00:: 02151966 1 7 -look_out_on%2:42:00:: 02721966 1 2 -look_out_over%2:42:00:: 02721966 1 1 -look_sharp%2:30:00:: 00459498 1 0 -look_to%2:31:01:: 00720617 1 4 -look_to%2:37:00:: 01804961 2 2 -look_up%2:32:00:: 00877083 1 8 -look_up_to%2:37:00:: 01827858 1 0 -look_upon%2:31:00:: 00689950 1 10 -lookdown%1:05:00:: 02578454 1 0 -lookdown_fish%1:05:00:: 02578454 1 0 -looker%1:18:00:: 10613996 2 0 -looker%1:18:01:: 10633450 1 0 -looker-on%1:18:00:: 10378026 1 0 -looking%1:04:00:: 00946432 2 0 -looking%1:04:01:: 00877127 1 1 -looking%5:00:00:superficial:00 01874886 1 5 -looking-glass_plant%1:20:00:: 12200143 1 0 -looking_at%1:04:00:: 00877127 1 3 -looking_for%1:04:00:: 00946432 1 0 -looking_glass%1:06:00:: 03688832 1 0 -looking_glass_tree%1:20:00:: 12199982 1 0 -lookout%1:04:00:: 00881545 4 0 -lookout%1:06:00:: 03688943 3 0 -lookout%1:15:00:: 08597176 2 0 -lookout%1:18:00:: 10271216 1 0 -lookout_man%1:18:00:: 10271216 1 0 -lookout_station%1:06:00:: 03688943 1 0 -lookup%1:22:00:: 13553560 1 8 -loom%1:06:00:: 03689157 1 1 -loom%2:36:00:: 01672384 4 0 -loom%2:42:00:: 02696503 2 4 -loom%2:42:02:: 02696961 1 7 -loom%2:42:06:: 02744061 3 3 -loon%1:05:00:: 02049088 2 1 -loon%1:18:00:: 10271451 1 1 -loon%1:18:01:: 10598904 3 0 -looney%1:18:00:: 09976283 1 0 -loonie%1:23:00:: 13672794 1 0 -loony%1:18:00:: 09976283 1 0 -loony%5:00:00:insane:00 02074929 1 0 -loony_bin%1:06:00:: 02820798 1 0 -loony_toons%1:06:00:: 02675657 1 0 -loop%1:04:00:: 00169811 10 0 -loop%1:06:00:: 03689347 8 0 -loop%1:06:01:: 03132438 1 1 -loop%1:06:03:: 03048883 9 0 -loop%1:09:00:: 05730724 7 0 -loop%1:10:00:: 06644823 5 0 -loop%1:10:01:: 06572857 6 0 -loop%1:14:00:: 08241654 4 0 -loop%1:22:00:: 13504173 3 0 -loop%1:25:00:: 13875571 2 0 -loop%2:35:00:: 01523986 4 0 -loop%2:35:01:: 01286290 5 0 -loop%2:36:00:: 01673472 2 1 -loop%2:38:00:: 02044596 3 0 -loop%2:38:01:: 02044745 1 1 -loop-line%1:06:00:: 03689700 1 0 -loop-the-loop%1:04:00:: 00169811 1 0 -loop_gain%1:07:00:: 05111248 1 0 -loop_knot%1:06:00:: 03689570 1 0 -loop_topology%1:09:00:: 05730724 1 0 -looper%1:05:00:: 02288268 1 0 -loophole%1:06:00:: 03689443 2 1 -loophole%1:10:00:: 06604548 1 2 -looping%1:22:00:: 13503908 1 0 -looping_ill%1:26:00:: 14274068 1 0 -loopy%3:01:00:: 02757100 1 0 -loopy%5:00:00:insane:00 02074929 2 0 -loos%1:18:00:: 11138085 1 0 -loose%2:30:01:: 00419137 4 0 -loose%2:30:02:: 00419375 3 0 -loose%2:35:00:: 01475536 2 1 -loose%2:41:00:: 02421374 1 1 -loose%3:00:01:: 01446749 3 1 -loose%3:00:02:: 00503321 1 2 -loose%3:00:04:: 00159381 7 0 -loose%4:02:00:: 00358021 1 2 -loose%5:00:00:coarse:00 02232112 9 0 -loose%5:00:00:inexact:00 00916199 5 1 -loose%5:00:00:irresponsible:00 01998835 10 0 -loose%5:00:00:lax:01 02404421 8 0 -loose%5:00:00:unchaste:00 00361837 13 0 -loose%5:00:00:unconstipated:00 00638841 6 1 -loose%5:00:00:uncontrolled:00 00600725 2 2 -loose%5:00:00:unofficial:00 01634027 4 1 -loose%5:00:00:unpackaged:00 01739582 11 0 -loose%5:00:01:free:00 01062114 12 0 -loose-fitting%5:00:00:loose:01 01446991 1 0 -loose-jointed%5:00:00:lax:01 02404670 1 1 -loose-jowled%5:00:00:fat:01 00987349 1 1 -loose-leaf_lettuce%1:13:00:: 07724654 1 0 -loose_cannon%1:18:00:: 10271525 1 0 -loose_end%1:04:00:: 00581885 1 1 -loose_off%2:33:00:: 01134375 1 0 -loose_sentence%1:10:00:: 06285789 1 0 -loose_smut%1:20:00:: 13066979 2 0 -loose_smut%1:26:00:: 14283909 1 0 -loose_woman%1:18:00:: 09772930 1 0 -looseleaf%5:00:00:unbound:02 00257579 1 0 -loosely%4:02:00:: 00179442 1 6 -loosely%4:02:01:: 00153473 4 0 -loosely%4:02:02:: 00221583 3 0 -loosely%4:02:04:: 00511481 2 0 -loosely_knit%5:00:00:distant:02 00451032 1 1 -loosen%2:30:00:: 00419137 7 0 -loosen%2:30:01:: 00419375 1 5 -loosen%2:35:00:: 01275516 6 0 -loosen%2:35:03:: 01463792 4 0 -loosen%2:35:05:: 01284908 5 0 -loosen%2:41:00:: 02601808 3 0 -loosen%2:41:01:: 02601996 2 0 -loosen_up%2:29:00:: 00026385 4 0 -loosen_up%2:29:01:: 00025654 5 0 -loosen_up%2:29:03:: 00027064 3 0 -loosen_up%2:35:00:: 01479682 1 1 -loosen_up%2:41:02:: 02602212 2 0 -loosened%5:00:00:untangled:00 00256538 1 0 -looseness%1:04:00:: 00748307 6 0 -looseness%1:07:00:: 04774511 5 0 -looseness%1:07:01:: 04804947 3 0 -looseness%1:07:02:: 04885609 2 0 -looseness%1:07:03:: 04777421 4 0 -looseness%1:26:00:: 14371913 1 0 -looseness_of_the_bowels%1:26:00:: 14371913 1 1 -loosening%1:04:00:: 00147862 2 0 -loosening%1:11:00:: 07443210 1 0 -loosestrife%1:20:01:: 12328398 1 0 -loosestrife%1:20:02:: 12095020 2 0 -loosestrife_family%1:20:00:: 12328026 1 0 -loot%1:21:00:: 13262663 1 2 -loot%1:21:01:: 13385216 2 1 -loot%2:40:00:: 02344568 2 0 -loot%2:40:01:: 02345288 1 1 -looted%5:00:00:empty:00 01087757 1 1 -looter%1:18:00:: 10443170 1 0 -looting%1:04:00:: 00966599 1 0 -lop%2:35:00:: 01321002 2 0 -lop%2:35:01:: 01560731 1 0 -lop-eared%5:00:00:eared:00 00812521 1 1 -lop_off%2:35:00:: 01299268 1 1 -lope%1:04:00:: 00288486 2 0 -lope%1:04:02:: 00294190 1 0 -lope%2:38:00:: 01928730 1 1 -lope_de_vega%1:18:00:: 11362195 1 0 -lope_felix_de_vega_carpio%1:18:00:: 11362195 1 0 -lophiidae%1:05:00:: 02547947 1 0 -lophius%1:05:00:: 02548128 1 0 -lophius_americanus%1:05:00:: 02548247 1 0 -lophodytes%1:05:00:: 01855343 1 0 -lophodytes_cucullatus%1:05:00:: 01855476 1 0 -lopholatilus%1:05:00:: 02573075 1 0 -lopholatilus_chamaeleonticeps%1:05:00:: 02573249 1 0 -lophophora%1:20:00:: 11849017 1 0 -lophophora_williamsii%1:20:00:: 11849271 1 0 -lophophorus%1:05:00:: 01805199 1 0 -lophosoria%1:20:00:: 13203405 1 0 -lophosoriaceae%1:20:00:: 13203251 1 0 -lopid%1:06:00:: 03433079 1 0 -lopper%1:06:00:: 04016240 1 0 -lopressor%1:06:00:: 03756857 1 0 -lopsided%5:00:00:asymmetrical:00 02373868 1 0 -lopsided%5:00:00:crooked:01 02312450 2 0 -lopsidedly%4:02:00:: 00240954 1 1 -lopsidedness%1:07:00:: 05066195 1 0 -loquacious%5:00:00:voluble:00 02384077 1 0 -loquaciously%4:02:00:: 00392875 1 0 -loquaciousness%1:07:00:: 04651382 1 0 -loquacity%1:07:00:: 04651382 1 0 -loquat%1:13:00:: 07763792 2 0 -loquat%1:20:00:: 12629666 1 0 -loquat_tree%1:20:00:: 12629666 1 0 -lorado_taft%1:18:00:: 11328930 1 0 -loranthaceae%1:20:00:: 12737383 1 0 -loranthus%1:20:00:: 12737745 1 0 -loranthus_europaeus%1:20:00:: 12737898 1 0 -lorazepam%1:06:00:: 03690005 1 0 -lorca%1:18:00:: 10989977 1 0 -lorchel%1:20:00:: 13035389 1 0 -lord%1:18:00:: 10271677 3 1 -lord%1:18:01:: 10388440 2 3 -lord%1:18:02:: 09536363 1 10 -lord%2:41:00:: 02398854 1 0 -lord's_day%1:28:00:: 15163797 1 0 -lord's_prayer%1:10:00:: 06457612 1 0 -lord's_resistance_army%1:14:00:: 08032955 1 0 -lord's_supper%1:04:00:: 01035853 1 1 -lord's_supper%1:04:01:: 01035504 2 0 -lord's_table%1:06:00:: 02699629 1 0 -lord_britten_of_aldeburgh%1:18:00:: 10864635 1 0 -lord_chancellor%1:18:00:: 10272171 1 0 -lord_george_gordon_byron%1:18:00:: 10877253 1 0 -lord_high_chancellor%1:18:00:: 10272171 1 0 -lord_it_over%2:41:00:: 02593551 1 0 -lord_macaulay%1:18:00:: 11146914 1 0 -lord_nelson%1:18:00:: 11203059 1 0 -lord_of_misrule%1:18:00:: 10272375 1 0 -lord_privy_seal%1:18:00:: 10272499 1 0 -lord_rayleigh%1:18:00:: 11255211 1 0 -lord_todd%1:18:00:: 11344549 1 0 -lordless%5:00:00:uncontrolled:00 00600879 1 0 -lordliness%1:07:01:: 04910684 1 0 -lordliness%1:07:02:: 04887912 2 0 -lordly%5:00:00:noble:02 01591050 1 1 -lordly%5:00:00:proud:00 01891109 2 0 -lordolatry%1:04:00:: 01045413 1 0 -lordosis%1:26:00:: 14505215 1 0 -lordotic%5:00:00:unfit:01 01020117 1 0 -lords-and-ladies%1:20:00:: 11780148 1 0 -lords_spiritual%1:14:00:: 08167779 1 0 -lords_temporal%1:14:00:: 08167953 1 0 -lordship%1:07:00:: 05198036 2 0 -lordship%1:10:00:: 06342781 1 2 -lore%1:09:00:: 05985381 1 4 -lorelei%1:18:00:: 10272657 1 1 -loren%1:18:00:: 11138180 1 0 -lorentz%1:18:00:: 11138301 1 0 -lorentz_force%1:19:00:: 11475682 1 0 -lorenz%1:18:00:: 11138449 1 0 -lorenz_hart%1:18:00:: 11032541 1 0 -lorenz_milton_hart%1:18:00:: 11032541 1 0 -lorenz_oken%1:18:00:: 11213323 1 0 -lorenz_okenfuss%1:18:00:: 11213323 1 0 -lorenzo_de'medici%1:18:00:: 11138681 1 0 -lorenzo_dressing%1:13:00:: 07833951 1 0 -lorenzo_ganganelli%1:18:00:: 10901589 1 0 -lorenzo_the_magnificent%1:18:00:: 11138681 1 0 -loretta_young%1:18:00:: 11404280 1 0 -lorfan%1:06:00:: 03658373 1 0 -lorgnette%1:06:00:: 03690168 1 0 -lorica%1:05:00:: 01905416 1 0 -loricata%1:05:00:: 01696525 1 0 -loriinae%1:05:00:: 01820190 1 0 -lorikeet%1:05:00:: 01820546 1 0 -loris_gracilis%1:05:00:: 02498743 1 0 -lorisidae%1:05:00:: 02498355 1 0 -lorraine%1:15:00:: 08943104 1 0 -lorraine_cross%1:06:00:: 03690279 1 0 -lorre%1:18:00:: 11138924 1 0 -lorry%1:06:00:: 03690473 2 0 -lorry%1:06:01:: 03690600 1 0 -lory%1:05:00:: 01820348 1 0 -los_alamos%1:15:00:: 09116010 1 0 -los_angeles%1:15:00:: 09063673 1 11 -lose%2:30:03:: 00204872 11 0 -lose%2:33:00:: 01099592 2 17 -lose%2:33:01:: 01113806 9 2 -lose%2:35:00:: 01503101 4 7 -lose%2:37:00:: 01795082 3 10 -lose%2:39:00:: 02197091 6 4 -lose%2:39:01:: 02127853 10 1 -lose%2:40:00:: 02288155 8 2 -lose%2:40:01:: 02287618 5 6 -lose%2:40:02:: 02287789 1 123 -lose%2:40:06:: 02288828 7 3 -lose_it%2:37:00:: 01784295 1 0 -lose_one's_temper%2:37:00:: 01795428 1 0 -lose_sight_of%2:39:00:: 02130017 1 0 -lose_track%2:31:00:: 00595306 1 0 -lose_weight%2:29:00:: 00045817 1 1 -loser%1:18:00:: 10272782 3 0 -loser%1:18:01:: 10272913 1 2 -loser%1:18:02:: 10273064 2 0 -losing_streak%1:14:00:: 08460769 1 1 -losings%1:21:00:: 13329322 1 0 -loss%1:04:00:: 00067526 3 6 -loss%1:07:00:: 05162985 4 4 -loss%1:11:00:: 07340725 7 2 -loss%1:11:01:: 07287472 5 3 -loss%1:11:02:: 07333649 8 0 -loss%1:21:00:: 13327231 6 2 -loss%1:21:01:: 13327676 1 16 -loss%1:22:00:: 13509196 2 12 -loss_leader%1:06:00:: 03234795 1 0 -loss_of_consciousness%1:11:00:: 07478169 1 0 -loss_ratio%1:24:00:: 13822735 1 0 -losses%1:21:00:: 13329322 1 6 -lossless%3:00:00:: 01433386 1 0 -lossy%3:00:00:: 01433267 1 0 -lost%1:14:00:: 07946694 1 1 -lost%3:00:01:: 01449564 1 5 -lost%3:00:02:: 01450969 3 3 -lost%3:00:03:: 01452266 4 2 -lost%5:00:00:hopeless:00 01230616 9 0 -lost%5:00:00:incomprehensible:00 00535170 6 1 -lost%5:00:00:perplexed:00 01766133 8 0 -lost%5:00:00:thoughtful:00 02419159 7 0 -lost%5:00:00:unoriented:00 01684133 2 5 -lost%5:00:00:unrecoverable:00 01956855 5 2 -lost-and-found%1:06:00:: 03690695 1 0 -lost_cause%1:04:00:: 00800825 1 0 -lost_tribes%1:14:00:: 08373055 1 0 -lot%1:06:00:: 03233423 5 3 -lot%1:14:00:: 08240169 3 4 -lot%1:14:01:: 07954731 6 1 -lot%1:15:00:: 08674970 2 5 -lot%1:18:00:: 10273669 7 0 -lot%1:23:00:: 13774404 1 13 -lot%1:26:00:: 14473222 4 3 -lot%2:40:00:: 02294436 2 0 -lot%2:41:00:: 02468965 1 0 -lot's_wife%1:18:00:: 10273906 1 0 -lota%1:05:00:: 02523338 2 0 -lota%1:06:00:: 03690851 1 0 -lota_lota%1:05:00:: 02523427 1 0 -lotario_di_segni%1:18:00:: 11071960 1 0 -loth%5:00:00:disinclined:00 01293542 2 0 -loth%5:00:00:unwilling:00 02566453 1 0 -lothario%1:18:00:: 10274173 1 0 -lothian_region%1:15:00:: 08892766 1 0 -lothringen%1:15:00:: 08943104 1 0 -loti%1:23:00:: 13687652 1 0 -lotic%3:00:00:: 00259329 1 0 -lotion%1:06:00:: 03690938 1 1 -lotion%1:06:01:: 03691128 2 0 -lots%1:23:00:: 13777509 1 10 -lots%4:02:00:: 00059171 1 0 -lotte%1:05:00:: 02548247 1 0 -lottery%1:04:00:: 00508091 2 0 -lottery%1:11:00:: 07317144 1 0 -lottery_winner%1:18:00:: 09627807 1 0 -lotto%1:04:00:: 00504660 1 0 -lotus%1:20:01:: 11715810 3 0 -lotus%1:20:02:: 11717399 1 1 -lotus%1:20:03:: 12545090 2 0 -lotus-eater%1:18:00:: 09994119 1 0 -lotus_americanus%1:20:00:: 12545232 1 0 -lotus_berthelotii%1:20:00:: 12545429 1 0 -lotus_corniculatus%1:20:00:: 12545635 1 0 -lotus_land%1:26:00:: 14514685 1 0 -lotus_position%1:07:00:: 05080923 1 0 -lotus_tetragonolobus%1:20:00:: 12545865 1 0 -lotus_tree%1:20:00:: 13143483 1 0 -lotusland%1:26:00:: 14514685 1 0 -lou_gehrig%1:18:00:: 10993350 1 0 -lou_gehrig's_disease%1:26:00:: 14105737 1 0 -louche%5:00:00:disreputable:00 01984669 1 0 -loud%3:00:00:: 01452593 1 50 -loud%3:00:02:: 01458736 3 0 -loud%4:02:00:: 00069901 1 1 -loud%5:00:00:tasteless:02 02393791 2 1 -loud-hailer%1:06:00:: 02917377 1 0 -loud-mouthed%5:00:00:loud:00 01453809 1 0 -loud-voiced%5:00:00:loud:00 01453896 1 1 -loud_hailer%1:06:00:: 02917377 1 0 -loud_pedal%1:06:00:: 04367011 1 0 -louden%2:30:00:: 00461956 2 0 -louden%2:39:00:: 02190477 1 0 -loudly%4:02:00:: 00069901 1 10 -loudly%4:02:02:: 00343799 3 0 -loudly%4:02:04:: 00412708 2 1 -loudmouth%1:18:00:: 10274318 1 0 -loudness%1:07:00:: 04990220 1 0 -loudness%1:07:02:: 04818700 2 0 -loudspeaker%1:06:00:: 03691459 1 1 -loudspeaker_system%1:06:00:: 03691459 1 0 -loufah_sponge%1:20:00:: 12167075 1 0 -lough%1:17:00:: 09343587 2 0 -lough%1:17:01:: 09343660 1 0 -louis%1:18:00:: 11141709 1 0 -louis-hector_berlioz%1:18:00:: 10847653 1 0 -louis_agassiz%1:18:00:: 10809317 1 0 -louis_antoine_de_bougainville%1:18:00:: 10859194 1 0 -louis_aragon%1:18:00:: 10821379 1 0 -louis_armstrong%1:18:00:: 10823199 1 0 -louis_auchincloss%1:18:00:: 10828091 1 0 -louis_b._mayer%1:18:00:: 11166877 1 0 -louis_bleriot%1:18:00:: 10852803 1 0 -louis_braille%1:18:00:: 10862281 1 0 -louis_burt_mayer%1:18:00:: 11166877 1 0 -louis_charles_alfred_de_musset%1:18:00:: 11198094 1 0 -louis_comfort_tiffany%1:18:00:: 11342301 1 0 -louis_d'or%1:21:00:: 13392977 1 0 -louis_d'outremer%1:18:00:: 11139520 1 0 -louis_eugene_felix_neel%1:18:00:: 11202581 1 0 -louis_harold_gray%1:18:00:: 11012993 1 0 -louis_henri_sullivan%1:18:00:: 11324902 1 0 -louis_henry_sullivan%1:18:00:: 11324902 1 0 -louis_i%1:18:00:: 11139092 1 0 -louis_ii%1:18:00:: 11139253 1 0 -louis_iii%1:18:00:: 11139403 1 0 -louis_isadore_kahn%1:18:00:: 11095907 1 0 -louis_iv%1:18:00:: 11139520 1 0 -louis_ix%1:18:00:: 11140243 1 0 -louis_jacques_mande_daguerre%1:18:00:: 10920832 1 0 -louis_joliet%1:18:00:: 11089484 1 0 -louis_jolliet%1:18:00:: 11089484 1 0 -louis_le_begue%1:18:00:: 11139253 1 0 -louis_le_faineant%1:18:00:: 11139619 1 0 -louis_le_hutin%1:18:00:: 11140461 1 0 -louis_leakey%1:18:00:: 11121640 1 0 -louis_pasteur%1:18:00:: 11224877 1 0 -louis_seymour_bazett_leakey%1:18:00:: 11121640 1 0 -louis_stanton_auchincloss%1:18:00:: 10828091 1 0 -louis_sullivan%1:18:00:: 11324902 1 0 -louis_the_bruiser%1:18:00:: 11139739 1 0 -louis_the_far%1:18:00:: 11139739 1 0 -louis_the_german%1:18:00:: 11139253 1 0 -louis_the_great%1:18:00:: 11141019 1 0 -louis_the_pious%1:18:00:: 11139092 1 0 -louis_the_quarreller%1:18:00:: 11140461 1 0 -louis_the_stammerer%1:18:00:: 11139253 1 0 -louis_the_wideawake%1:18:00:: 11139739 1 0 -louis_untermeyer%1:18:00:: 11356283 1 0 -louis_v%1:18:00:: 11139619 1 0 -louis_vi%1:18:00:: 11139739 1 0 -louis_victor_de_broglie%1:18:00:: 10865329 1 0 -louis_vii%1:18:00:: 11139927 1 0 -louis_viii%1:18:00:: 11140100 1 0 -louis_x%1:18:00:: 11140461 1 0 -louis_xi%1:18:00:: 11140582 1 0 -louis_xii%1:18:00:: 11140745 1 0 -louis_xiii%1:18:00:: 11140862 1 0 -louis_xiv%1:18:00:: 11141019 1 0 -louis_xv%1:18:00:: 11141289 1 0 -louis_xvi%1:18:00:: 11141495 1 0 -louisa_may_alcott%1:18:00:: 10812225 1 0 -louise_nevelson%1:18:00:: 11204689 1 0 -louisiana%1:15:00:: 09090825 1 3 -louisiana_purchase%1:15:00:: 09090559 1 0 -louisianan%1:18:00:: 09743383 1 1 -louisianian%1:18:00:: 09743383 1 0 -louisville%1:15:00:: 09089923 1 0 -lounge%1:06:00:: 03691817 2 0 -lounge%1:06:01:: 04256520 1 0 -lounge%2:35:00:: 01528339 1 2 -lounge%2:42:00:: 02639075 2 0 -lounge_about%2:42:00:: 02639606 1 1 -lounge_around%2:42:00:: 02639606 1 0 -lounge_car%1:06:00:: 03053976 1 0 -lounge_chair%1:06:00:: 03262932 1 0 -lounge_lizard%1:18:00:: 10274474 1 0 -lounge_suit%1:06:00:: 04504141 1 0 -lounger%1:06:00:: 04062428 2 0 -lounger%1:06:01:: 03692004 3 0 -lounger%1:18:00:: 09988703 1 0 -loungewear%1:06:00:: 03692379 1 0 -lounging_jacket%1:06:00:: 03692136 1 0 -lounging_pajama%1:06:00:: 03692272 1 0 -lounging_pyjama%1:06:00:: 03692272 1 0 -lounging_robe%1:06:00:: 03237992 1 0 -loup-garou%1:18:00:: 09503121 1 0 -loupe%1:06:00:: 03692522 1 0 -lour%2:29:00:: 00032981 3 0 -lour%2:30:00:: 00267855 2 0 -lour%2:30:01:: 00531489 1 0 -louse%1:05:01:: 02183857 1 2 -louse%1:05:02:: 02251775 3 0 -louse%1:05:03:: 02185481 4 0 -louse%1:18:00:: 10792028 2 0 -louse_fly%1:05:00:: 02198532 1 0 -louse_up%2:41:00:: 02527651 1 2 -lousiness%1:07:00:: 04781349 2 0 -lousiness%1:26:00:: 14454450 1 1 -lousy%5:00:00:bad:00 01127782 1 3 -lousy%5:00:00:dirty:01 00422374 2 2 -lousy%5:00:00:nasty:00 01587474 3 0 -lout%1:18:00:: 10274639 1 0 -loutish%5:00:00:unrefined:01 01949859 1 0 -louvar%1:05:00:: 02632494 1 0 -louver%1:06:00:: 03692676 1 0 -louvered%5:00:00:ventilated:00 02509059 1 0 -louvered_window%1:06:00:: 03692842 1 0 -louvre%1:06:00:: 03692676 2 0 -louvre%1:06:01:: 03692942 1 0 -louvre_museum%1:06:00:: 03692942 1 0 -lovable%3:00:00:: 01459422 1 0 -lovage%1:13:00:: 07818825 2 0 -lovage%1:20:00:: 12940226 1 0 -lovastatin%1:06:00:: 03693089 1 0 -love%1:04:00:: 00846515 6 0 -love%1:09:00:: 05813229 2 3 -love%1:12:00:: 07543288 1 42 -love%1:12:01:: 07488340 4 1 -love%1:18:00:: 09849598 3 2 -love%1:23:00:: 13596569 5 0 -love%2:35:00:: 01426397 4 0 -love%2:37:00:: 01775164 1 43 -love%2:37:01:: 01775535 3 13 -love%2:37:02:: 01828736 2 26 -love-in-a-mist%1:20:01:: 12384839 1 0 -love-in-a-mist%1:20:02:: 11807525 2 0 -love-in-a-mist%1:20:03:: 11736851 3 0 -love-in-idleness%1:20:00:: 12390681 1 0 -love-in-winter%1:20:00:: 12257725 1 0 -love-lies-bleeding%1:20:00:: 11823572 1 0 -love-philter%1:13:00:: 07883661 1 0 -love-philtre%1:13:00:: 07883661 1 0 -love-potion%1:13:00:: 07883661 1 0 -love-song%1:10:00:: 07051728 1 0 -love-token%1:06:00:: 03693617 1 0 -love_affair%1:26:00:: 13931436 1 0 -love_apple%1:20:00:: 12905817 1 0 -love_bite%1:26:00:: 14226862 1 0 -love_child%1:18:00:: 09842823 1 0 -love_feast%1:04:00:: 01028534 2 0 -love_feast%1:14:00:: 07976725 1 0 -love_grass%1:20:00:: 12120114 1 0 -love_handle%1:08:00:: 05556204 1 0 -love_knot%1:06:00:: 03693293 1 0 -love_letter%1:10:00:: 06626618 1 0 -love_life%1:04:00:: 00846515 1 0 -love_line%1:25:00:: 13906936 1 0 -love_lyric%1:10:00:: 07052619 1 1 -love_match%1:04:00:: 01037710 1 0 -love_seat%1:06:00:: 03693474 1 0 -love_song%1:10:00:: 07051728 1 0 -love_story%1:10:00:: 06371267 1 0 -love_tree%1:20:00:: 12513613 1 0 -love_vine%1:20:00:: 12825721 1 0 -loveable%3:00:00:: 01459422 1 0 -lovebird%1:05:01:: 01820052 2 0 -lovebird%1:05:02:: 01821869 1 0 -loved%3:00:00:: 01461822 1 0 -loved_one%1:18:00:: 09622928 1 0 -lovelace%1:18:00:: 11141882 1 0 -loveless%5:00:00:unloved:00 01463869 2 0 -loveless%5:00:00:unloving:00 01466956 1 0 -loveliness%1:07:00:: 04685396 1 2 -lovell%1:18:00:: 11141981 1 0 -lovelorn%5:00:00:unloved:00 01463414 1 0 -lovely%1:18:00:: 09972458 1 0 -lovely%5:00:00:beautiful:00 00219809 1 10 -lovely%5:00:00:lovable:00 01459755 2 1 -lovemaking%1:04:00:: 00846515 1 0 -lover%1:18:00:: 09622302 1 7 -lover%1:18:01:: 10077593 2 2 -lover%1:18:02:: 09622745 3 0 -lover's_knot%1:06:00:: 03693293 1 0 -loverlike%5:00:00:loving:00 01466038 1 0 -loverly%5:00:00:loving:00 01466038 1 0 -lovers'_knot%1:06:00:: 03693293 1 0 -loveseat%1:06:00:: 03693474 1 0 -lovesick%5:00:00:unhappy:00 01150063 1 0 -lovesickness%1:12:00:: 07487493 1 0 -lovesome%5:00:00:loving:00 01464700 1 0 -loving%3:00:00:: 01463965 1 3 -loving-kindness%1:07:00:: 04841245 1 0 -loving_cup%1:06:00:: 03147901 2 0 -loving_cup%1:06:01:: 03693707 1 0 -lovingly%4:02:00:: 00229074 1 1 -lovingness%1:07:00:: 04627000 2 0 -lovingness%1:12:00:: 07546125 1 0 -lovoa%1:20:00:: 12699485 1 0 -lovoa_klaineana%1:20:00:: 12699618 1 0 -low%1:06:00:: 03350011 4 0 -low%1:07:00:: 05097706 3 0 -low%1:18:00:: 11142155 2 0 -low%1:26:00:: 14520829 1 0 -low%2:32:00:: 01055018 1 0 -low%3:00:01:: 01206474 2 23 -low%3:00:02:: 01212469 1 55 -low%3:00:03:: 01215421 5 4 -low%4:02:00:: 00393149 1 3 -low%5:00:00:contemptible:00 00904745 6 3 -low%5:00:00:dejected:00 00703615 10 0 -low%5:00:00:humble:00 01893303 9 0 -low%5:00:00:inferior:01 02340458 7 0 -low%5:00:00:insufficient:00 02336759 8 0 -low%5:00:00:soft:04 01455888 3 11 -low%5:00:00:unrefined:01 01951008 4 6 -low-altitude%5:00:00:low:01 01207145 1 0 -low-backed%5:00:00:backed:00 00200529 1 0 -low-beam%5:00:00:dimmed:00 00284816 1 0 -low-birth-weight_baby%1:18:00:: 10274985 1 0 -low-birth-weight_infant%1:18:00:: 10274985 1 0 -low-budget%5:00:00:cheap:00 00934966 1 0 -low-bush_blueberry%1:20:00:: 12246941 1 0 -low-cal%5:00:00:nonfat:00 00993117 1 0 -low-calorie_diet%1:13:00:: 07564008 1 0 -low-carbon_steel%1:27:00:: 14952878 1 0 -low-ceilinged%5:00:00:ceilinged:00 01210080 1 1 -low-class%3:00:04:: 00259568 1 2 -low-cost%5:00:00:cheap:00 00935103 1 2 -low-cut%5:00:00:backless:00 00201259 2 0 -low-cut%5:00:00:necked:00 01209210 1 0 -low-density%5:00:00:distributed:00 00541823 2 0 -low-density%5:00:00:light:01 01187503 1 0 -low-density_lipoprotein%1:27:00:: 14943009 1 0 -low-down%1:10:00:: 06636113 1 2 -low-down%5:00:00:contemptible:00 00904745 1 1 -low-down%5:00:00:emotional:00 00855158 2 0 -low-fat_diet%1:13:00:: 07564101 1 0 -low-fat_milk%1:13:00:: 07846938 1 0 -low-grade%5:00:00:inferior:02 02347489 1 1 -low-growing%5:00:00:low:01 01207007 1 0 -low-interest%3:00:00:: 01210581 1 0 -low-key%5:00:00:restrained:00 02000406 1 0 -low-keyed%5:00:00:restrained:00 02000406 1 0 -low-level%3:00:04:: 00792991 2 0 -low-level%5:00:00:inferior:01 02340878 3 0 -low-level%5:00:00:low:01 01207145 4 0 -low-level%5:00:00:low:02 01213000 1 1 -low-level_formatting%1:10:00:: 06637350 1 0 -low-level_radioactive_waste%1:27:00:: 14943359 1 0 -low-lying%5:00:00:low:01 01207282 1 1 -low-lying%5:00:00:lowland:00 01219709 2 0 -low-necked%5:00:00:necked:00 01209210 1 0 -low-pass_filter%1:06:00:: 03694196 1 0 -low-pitched%3:00:00:: 01215421 1 1 -low-pitched%5:00:00:inclined:01 01235071 2 0 -low-powered%5:00:00:powerless:00 01828130 1 0 -low-pressure%5:00:00:unaggressive:00 00085139 1 0 -low-priced%5:00:00:cheap:00 00935103 1 0 -low-resolution%3:00:00:: 01218207 1 0 -low-rise%3:00:00:: 01218797 1 0 -low-salt_diet%1:13:00:: 07564292 1 0 -low-set%5:00:00:low:01 01207423 2 0 -low-set%5:00:00:short:03 02386962 1 0 -low-sodium_diet%1:13:00:: 07564292 1 0 -low-spirited%5:00:00:dejected:00 00703615 1 0 -low-spiritedness%1:12:00:: 07537668 1 0 -low-sudsing%3:00:00:: 01210375 1 1 -low-tech%3:00:00:: 01208919 1 0 -low-tension%3:00:00:: 01829980 1 0 -low-toned%5:00:00:soft:04 01455888 1 2 -low-voltage%3:00:00:: 01829980 1 0 -low-warp-loom%1:06:00:: 03694356 1 0 -low-water_mark%1:15:00:: 08679269 2 0 -low-water_mark%1:26:00:: 14486639 1 1 -low_archipelago%1:15:00:: 08990522 1 0 -low_beam%1:19:00:: 11485774 1 0 -low_blow%1:10:00:: 06721269 1 0 -low_blueberry%1:20:00:: 12246941 1 0 -low_brass%1:27:00:: 14942924 1 0 -low_comedy%1:10:00:: 07016542 1 0 -low_countries%1:15:00:: 09166127 1 0 -low_density%1:07:00:: 05089612 1 1 -low_explosive%1:27:00:: 14853392 1 0 -low_frequency%1:07:00:: 04986258 2 0 -low_frequency%1:07:01:: 05057382 1 2 -low_gallberry_holly%1:20:00:: 12757930 1 0 -low_gear%1:06:00:: 03350011 1 0 -low_german%1:10:00:: 06952249 1 0 -low_latin%1:10:00:: 06963292 1 0 -low_level_flight%1:04:00:: 00306318 1 0 -low_mass%1:04:00:: 01042578 1 0 -low_pitch%1:07:00:: 04986258 1 0 -low_profile%1:26:00:: 14434522 1 0 -low_quality%1:07:00:: 04730580 1 0 -low_relief%1:06:00:: 02803129 1 0 -low_spirits%1:26:00:: 14404941 1 0 -low_st_andrew's_cross%1:20:00:: 12369066 1 0 -low_status%1:26:00:: 13951215 1 0 -low_sunday%1:28:00:: 15191924 1 0 -low_temperature%1:07:00:: 05015117 1 4 -low_tide%1:11:00:: 07402271 1 0 -low_water%1:11:00:: 07402271 1 0 -lowan%1:05:00:: 01801479 1 0 -lowball%2:31:00:: 00673766 1 0 -lowborn%3:00:00:: 01592642 1 0 -lowboy%1:06:00:: 03693860 1 0 -lowbred%5:00:00:unrefined:01 01950857 1 0 -lowbrow%1:18:00:: 10423031 1 0 -lowbrow%5:00:00:nonintellectual:00 01334075 1 0 -lowbrowed%5:00:00:nonintellectual:00 01334075 1 0 -lowbush_cranberry%1:13:00:: 07744057 1 0 -lowbush_penstemon%1:20:00:: 12886600 1 0 -lowell%1:18:00:: 11142368 4 0 -lowell%1:18:01:: 11142517 3 0 -lowell%1:18:02:: 11142614 2 0 -lowell%1:18:03:: 11142788 1 0 -lowell_jackson_thomas%1:18:00:: 11339155 1 0 -lowell_thomas%1:18:00:: 11339155 1 0 -lower%1:06:00:: 03693973 1 0 -lower%2:29:00:: 00032981 5 0 -lower%2:30:00:: 00267855 3 1 -lower%2:30:01:: 00531489 2 6 -lower%2:35:03:: 01574923 4 0 -lower%2:38:00:: 01973125 1 15 -lower-case_letter%1:10:00:: 06824757 1 0 -lower-class%3:00:00:: 00259568 1 2 -lower-middle-class%5:00:00:middle-class:00 00260973 1 4 -lower-normandy%1:15:00:: 08940936 1 0 -lower-ranking%5:00:00:junior:00 02100968 1 0 -lower_berth%1:06:00:: 03693973 1 0 -lower_bound%1:25:00:: 13904011 1 0 -lower_california%1:17:00:: 09343761 1 0 -lower_cannon%1:06:00:: 04519887 1 0 -lower_carboniferous%1:28:00:: 15127729 1 0 -lower_carboniferous_period%1:28:00:: 15127729 1 0 -lower_class%1:14:00:: 08181540 1 1 -lower_court%1:14:00:: 08332896 1 0 -lower_criticism%1:10:00:: 06375471 1 0 -lower_deck%1:06:00:: 03694098 1 0 -lower_egypt%1:15:00:: 08897843 1 0 -lower_jaw%1:08:00:: 05275905 1 1 -lower_jawbone%1:08:00:: 05275905 1 0 -lower_limit%1:15:00:: 08593014 2 0 -lower_limit%1:23:00:: 13763384 1 3 -lower_mantle%1:17:00:: 09343943 1 0 -lower_oneself%2:41:12:: 02517827 1 0 -lower_paleolithic%1:28:00:: 15232712 1 0 -lower_peninsula%1:17:00:: 09344050 1 0 -lower_rank%1:26:00:: 13951444 1 2 -lower_respiratory_infection%1:26:00:: 14179276 1 0 -lower_respiratory_tract%1:08:00:: 05510358 1 0 -lower_respiratory_tract_smear%1:08:00:: 05266486 1 0 -lower_saxony%1:15:00:: 08769329 1 0 -lower_status%1:26:00:: 13951444 1 0 -lower_tunguska%1:17:00:: 09463362 1 0 -lowercase%1:10:00:: 06824757 1 0 -lowercase%3:00:00:: 01467298 1 0 -lowerclassman%1:18:00:: 10274815 1 0 -lowered%3:00:00:: 01208352 1 2 -lowering%1:04:00:: 00353469 1 0 -lowering%1:04:01:: 00327683 2 0 -lowering%5:00:00:cloudy:00 00462409 1 1 -loweringly%4:02:00:: 00508771 1 1 -lowermost%5:00:00:bottom:00 02440881 1 0 -lowest%4:02:00:: 00393240 1 0 -lowest%5:00:00:worst:00 00230076 1 0 -lowest_common_multiple%1:09:00:: 05860639 1 0 -lowland%1:17:00:: 09344198 1 1 -lowland%3:00:00:: 01219603 1 0 -lowland_burrowing_treefrog%1:05:00:: 01652297 1 0 -lowland_fir%1:20:00:: 11622368 1 0 -lowland_scot%1:18:00:: 10275249 1 0 -lowland_white_fir%1:20:00:: 11622368 1 0 -lowlander%1:18:00:: 10275249 1 0 -lowlands%1:15:00:: 08891889 1 0 -lowlands_of_scotland%1:15:00:: 08891889 1 0 -lowlife%1:18:00:: 10539715 1 0 -lowliness%1:26:00:: 13951215 2 0 -lowliness%1:26:01:: 14436438 1 0 -lowly%5:00:00:inferior:01 02340458 1 1 -lowly%5:00:00:junior:00 02100968 2 1 -lowly%5:00:00:lowborn:00 01592857 4 0 -lowly%5:00:00:unskilled:00 02229961 3 0 -lowness%1:07:00:: 05137557 3 0 -lowness%1:07:01:: 05097845 4 0 -lowness%1:12:00:: 07537668 2 0 -lowness%1:26:00:: 13951215 1 0 -lowry%1:18:00:: 11142922 2 0 -lowry%1:18:01:: 11143044 1 0 -lowset%5:00:00:low:01 01207423 1 0 -lox%1:13:00:: 07796750 2 0 -lox%1:27:00:: 14648526 1 0 -loxapine%1:06:00:: 03694490 1 0 -loxia%1:05:00:: 01533780 1 0 -loxia_curvirostra%1:05:00:: 01533893 1 0 -loxitane%1:06:00:: 03694490 1 0 -loxodonta%1:05:00:: 02504323 1 0 -loxodonta_africana%1:05:00:: 02504458 1 0 -loxodrome%1:15:00:: 08632678 1 0 -loxoma%1:20:00:: 13203708 1 0 -loxomataceae%1:20:00:: 13203551 1 0 -loxostege%1:05:00:: 02308852 1 0 -loxostege_similalis%1:05:01:: 02308998 2 0 -loxostege_similalis%1:05:02:: 02309120 1 0 -loya_jirga%1:14:00:: 08322187 1 0 -loyal%3:00:00:: 00961392 1 6 -loyal%3:00:06:: 01740207 2 0 -loyal%5:00:00:faithful:00 00959244 3 0 -loyalist%1:18:00:: 10275395 1 1 -loyalist_volunteer_force%1:14:00:: 08033194 1 0 -loyally%4:02:00:: 00316103 1 0 -loyalty%1:04:00:: 01206153 3 1 -loyalty%1:07:00:: 04877530 1 7 -loyalty%1:12:00:: 07546389 2 2 -loyang%1:15:00:: 08727230 1 0 -loyola%1:18:00:: 11071177 1 0 -lozal%1:06:00:: 03567325 1 0 -lozenge%1:06:00:: 03936568 2 0 -lozenge%1:13:00:: 07607707 1 0 -lozier%1:18:00:: 11143163 1 0 -lp%1:06:00:: 03694639 1 1 -lpn%1:18:00:: 10258304 1 0 -lr%1:27:00:: 14643323 1 0 -lsd%1:06:00:: 03699396 1 0 -ltd.%1:14:00:: 08185211 1 0 -ltm%1:09:00:: 05760877 1 0 -ltte%1:14:00:: 08032023 1 0 -lu%1:27:00:: 14644063 1 0 -luanda%1:15:00:: 08708304 1 0 -luau%1:11:00:: 07450055 1 0 -luba%1:10:00:: 06993870 2 0 -luba%1:18:00:: 09693244 1 0 -lubavitch%1:14:00:: 08475332 2 0 -lubavitch%1:15:00:: 09011922 1 0 -lubavitch_movement%1:14:00:: 08475332 1 0 -lubavitcher%1:18:00:: 10275534 1 0 -lubber%1:18:00:: 10274639 1 0 -lubber%1:18:01:: 10245341 2 0 -lubber's_hole%1:06:00:: 03694949 1 0 -lubber's_line%1:10:00:: 07259610 1 0 -lubber's_mark%1:10:00:: 07259610 1 0 -lubber's_point%1:10:00:: 07259610 1 0 -lubber_line%1:10:00:: 07259610 1 0 -lubberly%5:00:00:unseamanlike:00 01566725 2 0 -lubberly%5:00:00:unskilled:00 02230080 1 0 -lubbock%1:15:00:: 09145217 1 0 -lube%1:27:00:: 14890659 1 0 -lube%2:35:00:: 01484982 1 0 -lubeck%1:15:00:: 08773880 1 0 -lubitsch%1:18:00:: 11143331 1 0 -lublin%1:15:00:: 08984223 1 0 -lubricant%1:27:00:: 14890659 1 0 -lubricate%2:30:02:: 00219012 3 0 -lubricate%2:35:00:: 01484982 2 0 -lubricate%2:42:00:: 02751597 1 0 -lubricated%3:00:00:: 02236645 1 0 -lubricating_oil%1:27:00:: 14890945 1 0 -lubricating_substance%1:27:00:: 14890659 1 0 -lubricating_system%1:06:00:: 03695122 1 0 -lubrication%1:04:00:: 00716945 2 0 -lubrication%1:26:00:: 14578104 1 0 -lubricator%1:27:00:: 14890659 1 0 -lubricious%5:00:00:sexy:00 02133779 2 0 -lubricious%5:00:00:slippery:00 02235188 1 0 -lubricity%1:12:00:: 07490214 1 0 -lubumbashi%1:15:00:: 08735345 1 0 -lucania%1:15:00:: 08804487 1 0 -lucanidae%1:05:00:: 02175791 1 0 -lucas%1:18:00:: 11143458 1 0 -luce%1:18:00:: 11143806 2 0 -luce%1:18:01:: 11143933 1 0 -lucent%5:00:00:bright:00 00279332 1 0 -lucerne%1:20:00:: 12549420 1 0 -luchino_visconti%1:18:00:: 11367581 1 0 -luciano_pavarotti%1:18:00:: 11227101 1 0 -lucid%5:00:00:clear:00 00429355 1 3 -lucid%5:00:00:clear:02 00431774 4 0 -lucid%5:00:00:rational:00 01925708 3 0 -lucid%5:00:00:sane:00 02073970 2 0 -lucidity%1:07:00:: 04820258 1 1 -lucidity%1:26:00:: 14379703 2 0 -lucidly%4:02:00:: 00389595 1 0 -lucidness%1:07:00:: 04820258 1 0 -lucifer%1:06:00:: 03728437 3 0 -lucifer%1:17:00:: 09359471 2 0 -lucifer%1:18:00:: 09543353 1 2 -luciferin%1:27:00:: 14757011 1 0 -lucifugal%3:01:00:: 02757215 1 0 -lucifugous%3:01:00:: 02757215 1 0 -lucilia%1:05:00:: 02192127 1 0 -lucille_ball%1:18:00:: 10832731 1 0 -lucite%1:27:00:: 14594032 1 0 -lucius_annaeus_seneca%1:18:00:: 11292391 1 0 -lucius_clay%1:18:00:: 10900146 1 0 -lucius_cornelius_sulla_felix%1:18:00:: 11324090 1 0 -lucius_domitius_ahenobarbus%1:18:00:: 11203472 1 0 -lucius_dubignon_clay%1:18:00:: 10900146 1 0 -lucius_licinius_lucullus%1:18:00:: 11143600 1 0 -lucius_licinius_luculus%1:18:00:: 11144291 1 0 -lucius_quinctius_cincinnatus%1:18:00:: 10898308 1 0 -lucius_tarquinius_superbus%1:18:00:: 11331804 1 0 -luck%1:19:00:: 11418138 2 6 -luck%1:19:01:: 11418460 3 2 -luck%1:26:00:: 14473222 1 8 -luck_into%2:40:00:: 02212646 1 1 -luck_it%2:41:00:: 02544937 1 0 -luck_out%2:41:00:: 02524739 1 0 -luck_through%2:41:00:: 02544937 1 0 -luckily%4:02:00:: 00042254 1 1 -luckiness%1:26:00:: 14473655 1 0 -luckless%3:00:00:: 01468682 1 0 -lucknow%1:04:00:: 01284928 2 0 -lucknow%1:15:00:: 08904533 1 0 -lucky%3:00:00:: 01468097 2 1 -lucky%5:00:00:fortunate:00 01049210 1 11 -lucky%5:00:00:propitious:00 00177547 3 0 -lucky_dip%1:04:00:: 00508340 1 0 -lucky_dip%1:04:01:: 00162236 2 0 -lucky_lindy%1:18:00:: 11132948 1 0 -lucrative%5:00:00:profitable:00 01871774 1 0 -lucrativeness%1:07:00:: 05157866 1 0 -lucre%1:21:01:: 13258362 2 0 -lucre%1:21:02:: 13385216 1 0 -lucretia_coffin_mott%1:18:00:: 11194062 1 0 -lucretius%1:18:00:: 11144068 1 0 -lucrezia_borgia%1:18:00:: 10858018 1 0 -lucubrate%2:32:00:: 00955601 1 0 -lucubration%1:09:00:: 05784482 2 0 -lucubration%1:10:00:: 06377133 1 0 -luculent%5:00:00:clear:00 00429355 1 0 -lucullan%5:00:00:rich:03 02025274 1 0 -lucullus%1:18:00:: 11143600 1 0 -luculus%1:18:00:: 11144291 1 0 -lucy%1:05:00:: 02476736 1 0 -lucy_craft_laney%1:18:00:: 11116284 1 0 -lucy_in_the_sky_with_diamonds%1:06:00:: 02675657 1 0 -lucy_maud_montgomery%1:18:00:: 11188613 1 0 -lucy_stone%1:18:00:: 11319570 1 0 -luda%1:15:00:: 08726745 1 0 -luddite%1:18:00:: 10275676 2 0 -luddite%1:18:01:: 10275848 1 0 -ludi_saeculares%1:04:00:: 00518770 1 0 -ludian%1:10:00:: 06958178 1 0 -ludicrous%5:00:00:foolish:00 02570643 2 0 -ludicrous%5:00:00:humorous:00 01266397 1 1 -ludicrously%4:02:00:: 00387017 1 0 -ludo%1:04:00:: 00504975 1 0 -ludwig_boltzmann%1:18:00:: 10855834 1 0 -ludwig_josef_johan_wittgenstein%1:18:00:: 11393828 1 0 -ludwig_mies_van_der_rohe%1:18:00:: 11178922 1 0 -ludwig_van_beethoven%1:18:00:: 10841405 1 0 -ludwig_wittgenstein%1:18:00:: 11393828 1 0 -lues%1:26:00:: 14133985 1 0 -lues_venerea%1:26:00:: 14133985 1 0 -lufengpithecus%1:05:00:: 02478539 1 0 -luff%1:04:00:: 00313971 2 0 -luff%1:06:00:: 03695452 1 0 -luff%2:38:00:: 01902246 2 0 -luff%2:38:01:: 01928154 1 0 -luffa%1:20:00:: 12166424 2 0 -luffa%1:20:01:: 12167075 1 0 -luffa_acutangula%1:20:00:: 12166929 1 0 -luffa_cylindrica%1:20:00:: 12166793 1 0 -lufkin%1:15:00:: 09145341 1 0 -luftwaffe%1:14:00:: 08195229 1 0 -lug%1:05:00:: 01936671 4 0 -lug%1:06:00:: 03695616 3 0 -lug%1:06:01:: 03696568 2 0 -lug%1:18:00:: 09510305 1 0 -lug%2:35:00:: 01454246 1 5 -lug%2:35:02:: 01479333 2 0 -lug_wrench%1:06:00:: 03696746 1 0 -luganda%1:10:00:: 06993977 1 0 -luge%1:06:00:: 03695753 1 0 -luge%2:38:00:: 01940034 1 0 -luger%1:06:00:: 03695857 1 1 -luger%1:18:00:: 10275940 2 0 -luggage%1:06:00:: 02774630 1 6 -luggage_carousel%1:06:00:: 02966372 1 0 -luggage_carrier%1:06:00:: 03695957 1 0 -luggage_carrousel%1:06:00:: 02966372 1 0 -luggage_compartment%1:06:00:: 03696065 1 0 -luggage_rack%1:06:00:: 03696301 1 0 -luggage_van%1:06:00:: 02775039 1 0 -lugger%1:06:00:: 03696445 1 0 -lugh%1:18:00:: 09510305 1 0 -luging%1:04:00:: 00447361 1 0 -lugosi%1:18:00:: 11144431 1 0 -lugsail%1:06:00:: 03696568 1 0 -lugubrious%5:00:00:sorrowful:00 01366062 1 1 -lugubriously%4:02:00:: 00393370 1 0 -lugubriousness%1:07:00:: 04631470 1 0 -lugworm%1:05:00:: 01936671 1 0 -luigi_barnaba_gregorio_chiaramonti%1:18:00:: 11237550 1 0 -luigi_cherubini%1:18:00:: 10894905 1 0 -luigi_galvani%1:18:00:: 10988887 1 0 -luigi_pirandello%1:18:00:: 11235787 1 0 -luik%1:15:00:: 08851687 1 0 -luis_bunuel%1:18:00:: 10871655 1 0 -luis_de_gongora_y_argote%1:18:00:: 11006889 1 0 -lukasiewicz_notation%1:10:00:: 06814443 1 0 -luke%1:10:00:: 06441973 2 0 -luke%1:18:00:: 11144604 1 0 -lukewarm%5:00:00:unenthusiastic:00 00887472 2 1 -lukewarm%5:00:00:warm:01 02529581 1 1 -lukewarmly%4:02:00:: 00389804 1 0 -lukewarmness%1:07:00:: 05016936 1 0 -lukewarmness%1:07:01:: 04630547 2 0 -lule_burgas%1:04:00:: 01285101 1 0 -lull%1:26:00:: 14522956 2 0 -lull%1:28:00:: 15274441 1 4 -lull%2:30:00:: 00558061 2 1 -lull%2:37:00:: 01764800 3 0 -lull%2:37:01:: 01763643 1 2 -lullaby%1:04:00:: 00546738 2 0 -lullaby%1:10:00:: 07051851 1 1 -lulli%1:18:00:: 11144860 1 0 -lully%1:18:00:: 11144860 2 0 -lully%1:18:01:: 11145085 1 0 -lulu%1:18:00:: 10613996 1 0 -luluabourg%1:15:00:: 08735008 1 0 -lumbago%1:26:00:: 14328290 1 0 -lumbar%3:01:00:: 03014770 1 1 -lumbar_artery%1:08:00:: 05350453 1 0 -lumbar_nerve%1:08:00:: 05569690 1 0 -lumbar_pain%1:26:00:: 14328290 1 0 -lumbar_plexus%1:08:00:: 05507109 2 0 -lumbar_plexus%1:08:01:: 05507268 1 0 -lumbar_puncture%1:04:00:: 00944068 1 0 -lumbar_vein%1:08:00:: 05373145 1 0 -lumbar_vertebra%1:08:00:: 05589378 1 0 -lumber%1:06:00:: 02799175 2 0 -lumber%1:27:00:: 14943580 1 6 -lumber%2:35:00:: 01258828 2 0 -lumber%2:38:00:: 01925548 1 1 -lumber_jacket%1:06:00:: 03696909 1 0 -lumber_room%1:06:00:: 03697109 1 0 -lumbering%1:04:00:: 00608789 1 0 -lumbering%5:00:00:heavy-footed:00 01192786 1 0 -lumberjack%1:06:00:: 03696909 2 0 -lumberjack%1:18:00:: 10276045 1 0 -lumberman%1:18:00:: 10276045 1 0 -lumberman's_saw%1:06:00:: 04503836 1 0 -lumbermill%1:06:00:: 03697007 1 0 -lumberyard%1:06:00:: 03697265 1 0 -lumbosacral%3:01:00:: 03014941 1 0 -lumbosacral_plexus%1:08:00:: 05507427 1 0 -lumbus%1:05:00:: 02463403 1 0 -lumen%1:08:00:: 05254077 2 0 -lumen%1:23:00:: 13641299 1 0 -luminal%1:06:00:: 04256152 1 0 -luminance%1:07:00:: 05018103 1 0 -luminance_unit%1:23:00:: 13639808 1 0 -luminary%1:18:00:: 10276238 1 1 -luminesce%2:43:00:: 02766223 1 0 -luminescence%1:07:00:: 05018785 2 0 -luminescence%1:19:00:: 11476430 1 1 -luminescent%5:00:00:light:06 00272410 1 1 -luminism%1:14:00:: 08468958 1 0 -luminosity%1:07:00:: 05018103 1 1 -luminous%5:00:00:bright:00 00279332 1 3 -luminous_energy%1:19:00:: 11476939 1 0 -luminous_flux%1:28:00:: 15287486 1 0 -luminous_flux_unit%1:23:00:: 13639927 1 0 -luminous_intensity_unit%1:23:00:: 13640050 1 0 -luminousness%1:07:00:: 05018103 1 0 -lumma%1:23:00:: 13699527 1 0 -lummox%1:18:00:: 10274639 1 1 -lump%1:14:00:: 07961016 1 2 -lump%1:17:00:: 09307300 4 1 -lump%1:18:00:: 10274639 3 1 -lump%1:26:01:: 14315192 2 1 -lump%2:31:13:: 00657016 2 0 -lump%2:35:00:: 01385920 1 2 -lump_sugar%1:13:00:: 07595368 1 0 -lump_sum%1:21:00:: 13299248 1 0 -lumpectomy%1:04:00:: 00684648 1 0 -lumpen%5:00:00:stupid:00 00441272 1 0 -lumpenproletariat%1:14:00:: 08181075 1 0 -lumpenus%1:05:00:: 02615829 1 0 -lumpenus_lumpretaeformis%1:05:00:: 02615980 1 0 -lumper%1:18:00:: 10276477 2 0 -lumper%1:18:01:: 10655169 1 0 -lumpfish%1:05:00:: 02646667 1 0 -lumpish%5:00:00:stupid:00 00441272 1 1 -lumpsucker%1:05:00:: 02646892 1 0 -lumpy%5:00:00:uneven:00 00912490 2 0 -lumpy%5:00:00:unshapely:00 02141021 1 0 -lumpy_jaw%1:26:00:: 14254397 1 0 -luna%1:18:00:: 09571249 1 0 -luna_moth%1:05:00:: 02302969 1 0 -lunacy%1:04:00:: 00512843 2 0 -lunacy%1:26:00:: 14395240 1 0 -lunar%3:01:00:: 02757316 1 8 -lunar_calendar%1:28:00:: 15178417 1 0 -lunar_caustic%1:27:00:: 15014406 1 0 -lunar_crater%1:17:00:: 09344324 1 0 -lunar_day%1:28:00:: 15208740 1 0 -lunar_eclipse%1:11:00:: 07368993 1 0 -lunar_excursion_module%1:06:00:: 03697366 1 0 -lunar_latitude%1:15:00:: 08595958 1 0 -lunar_module%1:06:00:: 03697366 1 0 -lunar_month%1:28:00:: 15207872 1 0 -lunar_time_period%1:28:00:: 15275727 1 0 -lunar_year%1:28:00:: 15203017 1 0 -lunaria%1:20:00:: 11891395 1 0 -lunaria_annua%1:20:00:: 11891541 1 0 -lunate%5:00:00:rounded:00 02045473 1 0 -lunate_bone%1:08:00:: 05272423 1 0 -lunatic%1:18:00:: 10276764 1 0 -lunatic%1:18:01:: 09991530 2 0 -lunatic%5:00:00:insane:00 02076234 1 1 -lunatic_fringe%1:14:00:: 08360430 1 0 -lunation%1:28:00:: 15207872 1 2 -lunch%1:13:00:: 07575076 1 12 -lunch%2:34:00:: 01185304 1 1 -lunch%2:34:01:: 01185475 2 0 -lunch_meat%1:13:00:: 07678428 1 0 -lunch_meeting%1:14:00:: 08385849 1 0 -lunch_period%1:28:00:: 15165917 1 0 -luncheon%1:13:00:: 07575076 1 1 -luncheon_meat%1:13:00:: 07678428 1 0 -luncheon_meeting%1:14:00:: 08385849 1 0 -luncheon_voucher%1:10:00:: 06518420 1 0 -luncher%1:18:00:: 10277132 1 0 -lunching%1:04:00:: 00841297 1 0 -lunchroom%1:06:00:: 03697552 1 1 -lunchtime%1:28:00:: 15165917 1 0 -lund%1:15:00:: 08766571 1 0 -lunda%1:05:00:: 02048242 1 0 -lunda_cirrhata%1:05:00:: 02048353 1 0 -lunette%1:06:00:: 03697665 2 0 -lunette%1:06:01:: 03697812 1 0 -lung%1:08:00:: 05387544 1 30 -lung-like%3:01:00:: 02757863 1 0 -lung-power%1:07:00:: 05202413 1 0 -lung_cancer%1:26:00:: 14251317 1 0 -lunge%1:04:00:: 00290276 1 1 -lunge%1:04:01:: 01174251 2 0 -lunge%2:38:00:: 02062212 1 6 -lungen%1:20:00:: 12743352 1 0 -lunger%1:18:00:: 09960001 2 0 -lunger%1:18:01:: 10277231 1 0 -lungfish%1:05:00:: 02516188 1 0 -lungi%1:06:00:: 03697913 1 0 -lungless_salamander%1:05:00:: 01636127 1 0 -lungyi%1:06:00:: 03697913 1 0 -lunisolar%3:01:00:: 02757975 1 0 -lunisolar_calendar%1:28:00:: 15178546 1 0 -lunitidal_interval%1:28:00:: 15270697 1 0 -lunkhead%1:18:00:: 10039663 1 4 -lunt%1:18:00:: 11145199 1 0 -lunula%1:06:00:: 03698123 2 0 -lunula%1:08:00:: 05582038 1 0 -lunule%1:08:00:: 05582038 1 0 -luo%1:10:00:: 06998392 1 0 -luoyang%1:15:00:: 08727230 1 0 -lupin%1:20:00:: 12546183 1 0 -lupine%1:20:00:: 12546183 1 0 -lupine%3:01:00:: 02758124 1 0 -lupinus%1:20:00:: 12546015 1 0 -lupinus_albus%1:20:00:: 12546420 1 0 -lupinus_arboreus%1:20:00:: 12546617 1 0 -lupinus_luteus%1:20:00:: 12546832 1 0 -lupinus_perennis%1:20:00:: 12546962 1 0 -lupinus_subcarnosus%1:20:00:: 12547215 1 0 -lupinus_texensis%1:20:00:: 12547503 1 0 -lupus%1:17:00:: 09344449 2 0 -lupus%1:26:00:: 14229912 1 0 -lupus_erythematosus%1:26:00:: 14221138 1 0 -lupus_vulgaris%1:26:00:: 14220308 1 0 -lurch%1:04:00:: 00289388 1 1 -lurch%1:04:01:: 00290276 4 0 -lurch%1:04:02:: 00337210 3 0 -lurch%1:11:00:: 07476282 2 0 -lurch%2:33:00:: 01103693 5 0 -lurch%2:38:00:: 01864634 2 3 -lurch%2:38:01:: 02097544 3 2 -lurch%2:38:03:: 01924882 1 5 -lurch%2:42:00:: 02639475 4 0 -lurcher%1:18:00:: 10277352 1 0 -lure%1:06:00:: 02776205 3 0 -lure%1:07:00:: 04689660 1 1 -lure%1:09:00:: 05695232 2 0 -lure%2:32:00:: 00782527 1 6 -lurid%5:00:00:bright:00 00282389 3 2 -lurid%5:00:00:colorless:02 00405750 4 0 -lurid%5:00:00:sensational:00 02101757 2 3 -lurid%5:00:00:violent:00 02512334 1 3 -luridly%4:02:00:: 00393538 1 0 -luridness%1:07:01:: 04782610 3 0 -luridness%1:07:02:: 04977561 2 0 -luridness%1:10:00:: 07088053 1 0 -lurk%2:33:00:: 01138204 3 0 -lurk%2:42:00:: 02639075 2 1 -lurk%2:42:01:: 02640053 1 8 -lurker%1:18:00:: 10277352 1 0 -lurking_place%1:15:00:: 08584361 1 0 -lusaka%1:15:00:: 09165996 1 0 -lusatian%1:10:00:: 06945344 1 0 -luschka's_tonsil%1:08:00:: 05529286 1 0 -luscinia%1:05:00:: 01559964 1 0 -luscinia_luscinia%1:05:00:: 01560280 1 0 -luscinia_megarhynchos%1:05:00:: 01560105 1 0 -luscious%5:00:00:sexy:00 02132967 1 1 -luscious%5:00:00:tasty:00 02396720 2 0 -lusciously%4:02:00:: 00393688 1 0 -lusciousness%1:07:00:: 04995793 1 0 -lush%1:18:00:: 09782167 1 0 -lush%5:00:00:abundant:00 00015247 1 1 -lush%5:00:00:juicy:00 01369078 3 0 -lush%5:00:00:rich:03 02025274 2 0 -lushness%1:07:00:: 05116243 1 0 -lushun%1:15:00:: 08727396 1 0 -lusitania%1:15:00:: 09166304 1 0 -lusitanian%3:01:00:: 02958844 2 0 -lusitanian%3:01:01:: 02959007 1 0 -lust%1:04:00:: 00759335 2 1 -lust%1:12:00:: 07489714 1 1 -lust%2:34:00:: 01188485 1 0 -lust_after%2:37:00:: 01828256 1 0 -lust_for_learning%1:09:00:: 05682798 1 0 -luster%1:07:00:: 04701162 3 0 -luster%1:07:01:: 04954920 1 1 -luster%1:07:02:: 04954683 2 1 -lusterless%5:00:00:dull:02 00284194 2 0 -lusterless%5:00:00:dull:03 00808011 1 0 -lusterlessness%1:07:00:: 04956110 1 0 -lusterware%1:06:00:: 03698226 1 0 -lustful%5:00:00:passionate:00 01727133 3 0 -lustful%5:00:01:sexy:00 02133779 1 0 -lustful%5:00:02:sexy:00 02133207 2 0 -lustfully%4:02:00:: 00393903 1 0 -lustfulness%1:12:00:: 07489714 1 0 -lustily%4:02:00:: 00246190 1 1 -lustiness%1:07:00:: 05031012 1 0 -lustrate%2:30:00:: 00476538 1 0 -lustre%1:07:00:: 04701162 1 1 -lustre%1:07:01:: 04954920 2 0 -lustre%1:07:02:: 04954683 3 0 -lustreless%5:00:00:dull:02 00284194 2 0 -lustreless%5:00:00:dull:03 00808011 1 0 -lustrelessness%1:07:00:: 04956110 1 0 -lustrous%5:00:00:glorious:00 01122269 2 0 -lustrous%5:00:00:polished:00 01812237 1 0 -lustrous%5:00:01:bright:00 00281657 3 0 -lustrum%1:04:00:: 01027662 2 0 -lustrum%1:28:00:: 15204907 1 0 -lusty%5:00:00:healthy:00 01171746 2 1 -lusty%5:00:00:passionate:00 01727133 1 1 -lusus_naturae%1:18:00:: 10109443 1 0 -lut_desert%1:15:00:: 09169188 1 0 -luta%1:15:00:: 08726745 1 0 -lutanist%1:18:00:: 10277638 1 0 -lute%1:06:00:: 03698360 2 0 -lute%1:27:00:: 14706214 1 0 -luteal%3:01:00:: 02758222 1 0 -luteal_phase%1:28:00:: 15289208 1 0 -lutecium%1:27:00:: 14644063 1 0 -lutefisk%1:13:00:: 07871065 1 0 -lutein%1:27:00:: 14721635 1 0 -luteinizing_hormone%1:27:00:: 14749272 1 0 -lutenist%1:18:00:: 10277638 1 0 -luteotropin%1:27:00:: 14749543 1 0 -lutetium%1:27:00:: 14644063 1 0 -lutfisk%1:13:00:: 07871065 1 0 -luther%1:18:00:: 11145364 1 0 -luther_burbank%1:18:00:: 10872105 1 0 -lutheran%1:18:00:: 10277815 1 0 -lutheran%3:01:00:: 03034741 1 0 -lutheran%3:01:02:: 02955358 2 0 -lutheran_church%1:14:00:: 08091744 1 0 -lutheranism%1:09:00:: 06230208 1 0 -luthier%1:18:00:: 10277509 1 0 -luting%1:27:00:: 14706214 1 0 -lutist%1:18:00:: 10277638 1 0 -lutjanidae%1:05:00:: 02586382 1 0 -lutjanus%1:05:00:: 02586865 1 0 -lutjanus_analis%1:05:00:: 02587479 1 0 -lutjanus_apodus%1:05:00:: 02587618 1 0 -lutjanus_blackfordi%1:05:00:: 02587051 1 0 -lutjanus_griseus%1:05:00:: 02587300 1 0 -lutra%1:05:00:: 02444647 1 0 -lutra_canadensis%1:05:00:: 02445004 1 0 -lutra_lutra%1:05:00:: 02445171 1 0 -lutrinae%1:05:00:: 02444500 1 0 -lutyens%1:18:00:: 11145563 1 0 -lutzen%1:04:00:: 01285305 1 0 -luvaridae%1:05:00:: 02632239 1 0 -luvarus%1:05:00:: 02632359 1 0 -luvarus_imperialis%1:05:00:: 02632494 1 0 -luvian%1:10:00:: 06976161 1 0 -luwian%1:10:00:: 06976161 1 0 -lux%1:23:00:: 13640716 1 0 -luxate%2:30:00:: 00465762 1 0 -luxation%1:11:00:: 07445010 1 0 -luxe%5:00:00:elegant:00 00850053 1 0 -luxembourg%1:15:00:: 08960987 2 0 -luxembourg%1:15:01:: 08961402 1 0 -luxembourg-ville%1:15:00:: 08961402 1 0 -luxembourg_city%1:15:00:: 08961402 1 0 -luxembourg_franc%1:23:00:: 13678145 1 0 -luxembourger%1:18:00:: 09721244 1 0 -luxembourgian%3:01:00:: 02960832 1 0 -luxemburg%1:15:00:: 08960987 2 0 -luxemburg%1:15:01:: 08961402 1 0 -luxemburger%1:18:00:: 09721244 1 0 -luxemburger%3:01:00:: 03081986 2 0 -luxemburger%3:01:02:: 03082125 1 0 -luxor%1:15:00:: 08899577 1 0 -luxuria%1:04:00:: 00759335 1 0 -luxuriance%1:07:00:: 05116243 1 0 -luxuriant%5:00:00:abundant:00 00015247 3 0 -luxuriant%5:00:00:fancy:00 01795933 1 0 -luxuriant%5:00:00:indulgent:00 01298239 2 0 -luxuriantly%4:02:00:: 00389958 2 0 -luxuriantly%4:02:01:: 00390147 1 0 -luxuriate%2:30:00:: 00310812 3 0 -luxuriate%2:34:00:: 01204803 1 0 -luxuriate%2:34:14:: 01191645 2 0 -luxuriation%1:04:00:: 01071921 1 0 -luxurious%5:00:00:indulgent:00 01298239 1 3 -luxurious%5:00:00:rich:03 02024928 2 0 -luxuriously%4:02:00:: 00357251 2 0 -luxuriously%4:02:02:: 00508521 1 1 -luxuriousness%1:26:00:: 14492373 1 0 -luxury%1:07:00:: 05119223 1 5 -luxury%1:07:01:: 05146471 2 1 -luxury%1:26:00:: 14492373 3 0 -luxury_liner%1:06:00:: 03698604 1 0 -luyia%1:10:00:: 06994089 1 0 -luzon%1:15:00:: 08980814 1 0 -lv%5:00:00:cardinal:00 02191710 1 0 -lvi%5:00:00:cardinal:00 02191803 1 0 -lvii%5:00:00:cardinal:00 02191895 1 0 -lviii%5:00:00:cardinal:00 02191992 1 0 -lwei%1:23:00:: 13684037 1 0 -lx%1:23:00:: 13749778 1 0 -lx%1:23:01:: 13640716 2 0 -lx%5:00:00:cardinal:00 02192184 1 0 -lxi%5:00:00:cardinal:00 02192284 1 0 -lxii%5:00:00:cardinal:00 02192376 1 0 -lxiii%5:00:00:cardinal:00 02192469 1 0 -lxiv%5:00:00:cardinal:00 02192567 1 0 -lxv%5:00:00:cardinal:00 02192662 1 0 -lxvi%5:00:00:cardinal:00 02192756 1 0 -lxvii%5:00:00:cardinal:00 02192849 1 0 -lxviii%5:00:00:cardinal:00 02192947 1 0 -lxx%1:23:00:: 13749894 1 0 -lxx%5:00:00:cardinal:00 02193141 1 0 -lxxi%5:00:00:cardinal:00 02193249 1 0 -lxxii%5:00:00:cardinal:00 02193346 1 0 -lxxiii%5:00:00:cardinal:00 02193444 1 0 -lxxiv%5:00:00:cardinal:00 02193547 1 0 -lxxv%5:00:00:cardinal:00 02193647 1 0 -lxxvi%5:00:00:cardinal:00 02193746 1 0 -lxxvii%5:00:00:cardinal:00 02193844 1 0 -lxxviii%1:23:00:: 13750033 1 0 -lxxviii%5:00:00:cardinal:00 02193947 1 0 -lxxx%1:23:00:: 13750164 1 0 -lxxx%5:00:00:cardinal:00 02194151 1 0 -lxxxi%5:00:00:cardinal:00 02194255 1 0 -lxxxii%5:00:00:cardinal:00 02194351 1 0 -lxxxiii%5:00:00:cardinal:00 02194448 1 0 -lxxxiv%5:00:00:cardinal:00 02194550 1 0 -lxxxv%5:00:00:cardinal:00 02194649 1 0 -lxxxvi%5:00:00:cardinal:00 02194747 1 0 -lxxxvii%5:00:00:cardinal:00 02194844 1 0 -lxxxviii%5:00:00:cardinal:00 02194946 1 0 -lyallpur%1:15:00:: 08976799 1 0 -lycaena%1:05:00:: 02281987 1 0 -lycaena_hypophlaeas%1:05:00:: 02282553 1 0 -lycaenid%1:05:00:: 02281787 1 0 -lycaenid_butterfly%1:05:00:: 02281787 1 0 -lycaenidae%1:05:00:: 02281552 1 0 -lycaeon%1:05:00:: 02116630 1 0 -lycanthrope%1:18:00:: 09503121 1 0 -lycanthropy%1:07:00:: 05201183 1 0 -lycaon_pictus%1:05:00:: 02116738 1 0 -lycee%1:14:00:: 08284481 1 0 -lyceum%1:06:00:: 03698723 2 0 -lyceum%1:14:00:: 08284481 1 0 -lychee%1:13:00:: 07766173 1 0 -lychgate%1:06:00:: 03698815 1 0 -lychins_chalcedonica%1:20:00:: 11811921 1 0 -lychins_floscuculi%1:20:00:: 11811706 1 0 -lychnis%1:20:00:: 11811473 1 0 -lychnis_alba%1:20:00:: 11816336 1 0 -lychnis_coronaria%1:20:00:: 11812094 1 0 -lychnis_dioica%1:20:00:: 11816121 1 0 -lychnis_flos-cuculi%1:20:00:: 11811706 1 0 -lycia%1:15:00:: 08787878 1 0 -lycian%1:10:00:: 06976087 1 0 -lycium%1:20:00:: 12904720 1 0 -lycium_barbarum%1:20:00:: 12905135 1 0 -lycium_carolinianum%1:20:00:: 12905412 1 0 -lycium_halimifolium%1:20:00:: 12905135 1 0 -lycopene%1:27:00:: 14721342 1 0 -lycoperdaceae%1:20:00:: 13043516 1 0 -lycoperdales%1:20:00:: 13043264 1 0 -lycoperdon%1:20:00:: 13043746 1 0 -lycopersicon%1:20:00:: 12905655 1 0 -lycopersicon_esculentum%1:20:00:: 12905817 1 0 -lycopersicon_esculentum_cerasiforme%1:20:00:: 12906021 1 0 -lycopersicum%1:20:00:: 12905655 1 0 -lycophyta%1:20:00:: 13221243 1 0 -lycopod%1:20:00:: 13221529 1 0 -lycopodiaceae%1:20:00:: 13222477 1 0 -lycopodiales%1:20:00:: 13222227 1 0 -lycopodiate%1:20:00:: 13220842 1 0 -lycopodineae%1:20:00:: 13221383 1 0 -lycopodium%1:20:00:: 13222669 1 0 -lycopodium_alopecuroides%1:20:00:: 13223843 1 0 -lycopodium_alpinum%1:20:00:: 13222985 1 0 -lycopodium_clavitum%1:20:00:: 13223485 1 0 -lycopodium_complanatum%1:20:00:: 13223588 1 0 -lycopodium_lucidulum%1:20:00:: 13222877 1 0 -lycopodium_obscurum%1:20:00:: 13223710 1 0 -lycopodium_selago%1:20:00:: 13223090 1 0 -lycopsida%1:20:00:: 13220842 1 0 -lycopus%1:20:00:: 12852049 1 0 -lycopus_americanus%1:20:00:: 12852428 1 0 -lycopus_europaeus%1:20:00:: 12852570 1 0 -lycopus_virginicus%1:20:00:: 12852234 1 0 -lycosa%1:05:00:: 01775230 1 0 -lycosa_tarentula%1:05:00:: 01775370 1 0 -lycosidae%1:05:00:: 01774918 1 0 -lydia%1:15:00:: 08788004 1 0 -lydia_kamekeha_paki_liliuokalani%1:18:00:: 11131981 1 0 -lydian%1:10:00:: 06976244 1 0 -lye%1:27:00:: 14943814 1 0 -lye_hominy%1:13:00:: 07732433 1 0 -lygaeid%1:05:00:: 02238887 1 0 -lygaeid_bug%1:05:00:: 02238887 1 0 -lygaeidae%1:05:00:: 02238743 1 0 -lyginopteridales%1:20:00:: 11604904 1 0 -lyginopteris%1:20:00:: 11605396 1 0 -lygodium%1:20:00:: 12956029 1 0 -lygodium_microphyllum%1:20:00:: 12956588 1 0 -lygodium_palmatum%1:20:00:: 12956367 1 0 -lygus%1:05:00:: 02238113 1 0 -lygus_bug%1:05:00:: 02238235 1 0 -lygus_lineolaris%1:05:00:: 02238358 1 0 -lying%1:04:00:: 00751944 1 0 -lying-in%1:26:00:: 14048441 1 0 -lying_in_wait%1:04:00:: 01246926 1 0 -lying_in_wait%5:00:00:concealed:00 02089811 1 0 -lying_under_oath%1:04:00:: 00772381 1 0 -lyly%1:18:00:: 11145730 1 0 -lyman_frank_brown%1:18:00:: 10838665 1 0 -lymantria%1:05:00:: 02285909 1 0 -lymantria_dispar%1:05:00:: 02286089 1 0 -lymantriid%1:05:00:: 02285548 1 0 -lymantriidae%1:05:00:: 02285359 1 0 -lyme_arthritis%1:26:00:: 14265508 1 0 -lyme_disease%1:26:00:: 14265508 1 0 -lyme_grass%1:20:00:: 12119099 1 0 -lymph%1:08:00:: 05404074 1 0 -lymph_cell%1:08:00:: 05451384 1 0 -lymph_gland%1:08:00:: 05430095 1 0 -lymph_node%1:08:00:: 05430095 1 2 -lymph_vessel%1:08:00:: 05396807 1 0 -lymphadenitis%1:26:00:: 14349541 1 0 -lymphadenoma%1:26:00:: 14241733 1 0 -lymphadenopathy%1:26:00:: 14241825 1 0 -lymphangiectasia%1:26:00:: 14064186 1 0 -lymphangiectasis%1:26:00:: 14064186 1 0 -lymphangiogram%1:06:00:: 03698977 1 0 -lymphangiography%1:04:00:: 00905528 1 0 -lymphangioma%1:26:00:: 14247954 1 0 -lymphangitis%1:26:00:: 14349628 1 0 -lymphatic%3:01:00:: 02831031 1 0 -lymphatic_system%1:08:00:: 05396366 1 0 -lymphatic_tissue%1:08:00:: 05287882 1 0 -lymphatic_vessel%1:08:00:: 05396807 1 0 -lymphedema%1:26:00:: 14120614 1 0 -lymphoblast%1:08:00:: 05452765 1 0 -lymphoblast-like%5:00:00:cellular:00 00327930 1 0 -lymphoblastic_leukemia%1:26:00:: 14244542 1 0 -lymphocyte%1:08:00:: 05451384 1 1 -lymphocytic%3:01:00:: 02831143 1 0 -lymphocytic_choriomeningitis%1:26:00:: 14137408 1 0 -lymphocytic_choriomeningitis_virus%1:05:00:: 01330966 1 0 -lymphocytic_leukemia%1:26:00:: 14244353 1 0 -lymphocytopenia%1:26:00:: 14196823 1 0 -lymphocytosis%1:26:00:: 14196965 1 0 -lymphogranuloma%1:26:00:: 14318030 1 0 -lymphogranuloma_venereum%1:26:00:: 14137561 1 0 -lymphography%1:04:00:: 00905528 1 0 -lymphoid%3:01:00:: 02831272 1 0 -lymphoid_tissue%1:08:00:: 05287882 1 0 -lymphokine%1:27:00:: 14943950 1 0 -lymphoma%1:26:00:: 14241968 1 0 -lymphopathia_venereum%1:26:00:: 14137561 1 0 -lymphopenia%1:26:00:: 14196823 1 0 -lymphopoiesis%1:22:00:: 13509383 1 0 -lymphuria%1:26:00:: 14267994 1 0 -lynch%2:41:00:: 02484397 1 0 -lynch_law%1:04:00:: 00417005 1 0 -lynch_mob%1:14:00:: 08184730 1 0 -lynchburg%1:15:00:: 09151114 1 0 -lynching%1:04:00:: 00224599 1 0 -lynchpin%1:06:00:: 03670339 2 0 -lynchpin%1:09:00:: 05694232 1 0 -lyndon_baines_johnson%1:18:00:: 11088346 1 0 -lyndon_johnson%1:18:00:: 11088346 1 0 -lynn_fontanne%1:18:00:: 10974271 1 0 -lynx%1:05:00:: 02127052 2 0 -lynx%1:10:00:: 06571724 1 0 -lynx-eyed%5:00:00:sighted:00 02158438 1 0 -lynx_canadensis%1:05:00:: 02127381 1 0 -lynx_caracal%1:05:00:: 02127678 1 0 -lynx_lynx%1:05:00:: 02127292 1 0 -lynx_pardina%1:05:00:: 02127586 1 0 -lynx_rufus%1:05:00:: 02127482 1 0 -lyon%1:15:00:: 08936647 1 0 -lyonia%1:20:00:: 12240715 1 0 -lyonia_ligustrina%1:20:00:: 12241192 1 0 -lyonia_lucida%1:20:00:: 12241426 1 0 -lyonia_mariana%1:20:00:: 12240965 1 0 -lyonnais%1:15:00:: 08945110 1 0 -lyonnaise%5:00:00:cooked:00 00617678 1 0 -lyonnaise_sauce%1:13:00:: 07839864 1 0 -lyons%1:14:00:: 08316346 3 0 -lyons%1:14:01:: 08316564 2 0 -lyons%1:15:00:: 08936647 1 0 -lyophilisation%1:22:00:: 13484937 1 0 -lyophilise%2:30:00:: 00212236 1 0 -lyophilised%5:00:00:preserved:02 01072908 1 0 -lyophilization%1:22:00:: 13484937 1 0 -lyophilize%2:30:00:: 00212236 1 1 -lyophilized%5:00:00:preserved:02 01072908 1 0 -lypressin%1:06:00:: 03699138 1 0 -lyra%1:17:00:: 09344559 1 0 -lyrate%5:00:00:simple:01 02168796 1 0 -lyrate_leaf%1:20:00:: 13158605 1 0 -lyre%1:06:00:: 03699280 1 0 -lyre-flower%1:20:00:: 11910271 1 0 -lyre-shaped%5:00:00:formed:00 02148450 1 0 -lyre_snake%1:05:00:: 01739647 1 0 -lyrebird%1:05:00:: 01545574 1 0 -lyreflower%1:20:00:: 11910271 1 0 -lyric%1:10:00:: 06380726 2 0 -lyric%1:10:01:: 07051975 1 12 -lyric%2:36:00:: 01698916 1 0 -lyric%3:00:00:: 01468994 2 1 -lyric%3:01:01:: 02856286 4 0 -lyric%3:01:02:: 02856460 3 0 -lyric%5:00:00:emotional:00 00856011 1 3 -lyric_poem%1:10:00:: 06380726 1 1 -lyrical%5:00:00:emotional:00 00856011 2 0 -lyrical%5:00:00:melodious:00 01501990 1 1 -lyricality%1:07:00:: 04983688 1 0 -lyrically%4:02:00:: 00394020 1 0 -lyricism%1:07:00:: 04983688 1 0 -lyricism%1:07:01:: 04634739 2 0 -lyricist%1:18:00:: 10277912 1 4 -lyrist%1:18:00:: 10277912 1 0 -lyrurus%1:05:00:: 01795425 1 0 -lyrurus_mlokosiewiczi%1:05:00:: 01795900 1 0 -lyrurus_tetrix%1:05:00:: 01795735 1 0 -lysander%1:18:00:: 11145850 1 0 -lysenko%1:18:00:: 11146010 1 0 -lysergic_acid%1:27:00:: 14614864 1 0 -lysergic_acid_diethylamide%1:06:00:: 03699396 1 0 -lysichiton%1:20:00:: 11788926 1 0 -lysichiton_americanum%1:20:00:: 11789066 1 0 -lysichitum%1:20:00:: 11788926 1 0 -lysiloma%1:20:00:: 11762706 1 0 -lysiloma_bahamensis%1:20:00:: 11762927 1 0 -lysiloma_latisiliqua%1:20:00:: 11762927 1 0 -lysiloma_sabicu%1:20:00:: 11763142 1 0 -lysimachia%1:20:00:: 12094786 1 0 -lysimachia_ciliatum%1:20:00:: 12095543 1 0 -lysimachia_clethroides_duby%1:20:00:: 12095281 1 0 -lysimachia_nemorum%1:20:00:: 12095412 1 0 -lysimachia_nummularia%1:20:00:: 12095647 1 0 -lysimachia_quadrifolia%1:20:00:: 12096089 1 0 -lysimachia_terrestris%1:20:00:: 12095934 1 0 -lysimachia_vulgaris%1:20:00:: 12095781 1 0 -lysimachus%1:18:00:: 11146193 1 0 -lysin%1:27:00:: 15029646 1 0 -lysine%1:27:00:: 14944182 1 0 -lysine_intolerance%1:26:00:: 14194183 1 0 -lysinemia%1:26:00:: 14162943 1 0 -lysippus%1:18:00:: 11146407 1 0 -lysis%1:22:00:: 13509528 2 0 -lysis%1:22:01:: 13509843 1 0 -lysogenic%3:01:00:: 02831364 2 0 -lysogenic%3:01:01:: 02831478 1 0 -lysogenicity%1:26:00:: 14194345 1 0 -lysogenisation%1:22:00:: 13509967 1 0 -lysogenization%1:22:00:: 13509967 1 0 -lysogenize%2:30:00:: 00467015 1 0 -lysogeny%1:26:00:: 14194345 1 0 -lysol%1:27:00:: 14944317 1 0 -lysosome%1:08:00:: 05434203 1 0 -lysozyme%1:27:00:: 14944455 1 0 -lyssa%1:26:00:: 14271667 1 0 -lyssavirus%1:05:00:: 01340785 1 0 -lythraceae%1:20:00:: 12328026 1 0 -lythrum%1:20:00:: 12328241 1 0 -lythrum_hyssopifolia%1:20:00:: 12328801 1 0 -lythrum_salicaria%1:20:00:: 12328567 1 0 -lytton%1:18:00:: 11146494 1 0 -lytton_strachey%1:18:00:: 11320631 1 0 -m%1:07:00:: 05040081 2 5 -m%1:10:00:: 06832464 6 0 -m%1:23:00:: 13659162 1 5 -m%1:23:01:: 13750844 3 0 -m%1:23:02:: 13628056 5 0 -m%1:23:03:: 13628246 4 0 -m%5:00:00:cardinal:00 02198752 1 0 -m-1%1:06:00:: 03416775 1 0 -m-1_rifle%1:06:00:: 03416775 1 0 -m-theory%1:09:00:: 05890963 1 0 -m._j._schleiden%1:18:00:: 11284541 1 0 -m.m.%1:28:00:: 15286042 1 0 -m1%1:21:00:: 13357410 1 0 -m2%1:21:00:: 13357572 1 0 -m3%1:21:00:: 13357720 1 0 -ma%1:10:00:: 06701001 2 1 -ma%1:15:00:: 09095023 4 0 -ma%1:18:00:: 10278128 1 16 -ma%1:23:00:: 13637613 3 0 -ma'am%1:18:00:: 09989290 1 1 -maalox%1:27:00:: 14777441 1 0 -maar%1:17:00:: 09344724 1 0 -maarianhamina%1:15:00:: 08780720 1 0 -mac%1:06:00:: 03702719 1 0 -macabre%5:00:00:alarming:00 00195684 1 1 -macaca%1:05:00:: 02487217 1 0 -macaca_irus%1:05:00:: 02488003 1 0 -macaca_mulatta%1:05:00:: 02487547 1 0 -macaca_radiata%1:05:00:: 02487675 1 0 -macaca_sylvana%1:05:00:: 02487847 1 0 -macadam%1:06:00:: 04394630 2 0 -macadam%1:27:00:: 14977075 1 0 -macadamia%1:20:00:: 12221191 1 0 -macadamia_integrifolia%1:20:00:: 12221368 1 0 -macadamia_nut%1:13:00:: 07774596 2 0 -macadamia_nut%1:20:00:: 12221522 1 0 -macadamia_nut_tree%1:20:00:: 12221522 1 0 -macadamia_ternifolia%1:20:00:: 12221522 1 0 -macadamia_tetraphylla%1:20:00:: 12221801 1 0 -macadamia_tree%1:20:00:: 12221191 1 0 -macadamise%2:35:00:: 01603418 1 0 -macadamize%2:35:00:: 01603418 1 0 -macamba%1:20:00:: 12583855 1 0 -macao%1:15:00:: 08731423 1 0 -macao_monetary_unit%1:23:00:: 13690321 1 0 -macaque%1:05:00:: 02487347 1 0 -macaroni%1:13:00:: 07700964 2 0 -macaroni%1:18:00:: 10278263 1 0 -macaroni_and_cheese%1:13:00:: 07871234 1 0 -macaroni_salad%1:13:00:: 07807834 1 0 -macaroni_wheat%1:20:00:: 12142450 1 0 -macaronic%3:01:00:: 02758328 1 0 -macaroon%1:13:00:: 07636534 1 0 -macarthur%1:18:00:: 11146670 1 0 -macau%1:15:00:: 08731423 1 0 -macaulay%1:18:00:: 11146914 1 0 -macaw%1:05:00:: 01818515 1 0 -macbeth%1:18:00:: 11147099 1 0 -macdowell%1:18:00:: 11147185 1 0 -mace%1:10:00:: 07267461 4 0 -mace%1:13:00:: 07815294 3 0 -mace%1:18:00:: 10278456 2 0 -mace%1:27:00:: 14944617 1 0 -macebearer%1:18:00:: 10278456 1 0 -macedoine%1:13:00:: 07871335 1 0 -macedon%1:15:00:: 08915372 1 0 -macedonia%1:15:00:: 08961630 1 0 -macedonia%1:15:01:: 08915372 2 0 -macedonian%1:10:00:: 06945473 2 0 -macedonian%1:18:00:: 09721444 1 0 -macedonian%3:01:00:: 03082253 1 0 -macedonian_war%1:04:00:: 01285567 1 0 -macer%1:18:00:: 10278456 1 0 -macerate%2:30:01:: 00398484 3 0 -macerate%2:30:02:: 00398741 2 0 -macerate%2:30:03:: 00389406 4 0 -macerate%2:30:04:: 00398953 1 0 -maceration%1:07:00:: 05001867 2 0 -maceration%1:22:00:: 13510152 1 0 -macerative%3:01:00:: 02901331 1 0 -macgregor%1:18:00:: 11147348 1 0 -macguffin%1:09:00:: 05865774 1 0 -mach%1:18:00:: 11147533 1 0 -mach_number%1:24:00:: 13822876 1 0 -machaeranthera%1:20:00:: 11993007 1 0 -machaeranthera_bigelovii%1:20:00:: 11993444 1 0 -machaeranthera_tanacetifolia%1:20:00:: 11993203 1 0 -machaeranthera_tortifoloia%1:20:00:: 11993675 1 0 -machete%1:06:00:: 03699591 1 0 -machiavelli%1:18:00:: 11147729 1 0 -machiavellian%1:18:00:: 10278568 1 0 -machiavellian%3:01:00:: 03082394 1 0 -machiavellianism%1:09:00:: 06214164 1 0 -machicolate%2:40:00:: 02361811 1 0 -machicolation%1:06:00:: 03699754 1 0 -machilid%1:05:00:: 02271222 1 0 -machilidae%1:05:00:: 02271087 1 0 -machinate%2:31:00:: 00706975 2 0 -machinate%2:36:00:: 01651444 1 0 -machination%1:09:00:: 05908520 1 0 -machinator%1:18:00:: 09958892 1 0 -machine%1:06:00:: 03699975 1 33 -machine%1:06:01:: 02958343 6 0 -machine%1:06:02:: 03700963 4 1 -machine%1:14:00:: 08264583 5 0 -machine%1:14:01:: 08264759 3 2 -machine%1:18:00:: 10278666 2 2 -machine%2:36:00:: 01623967 2 0 -machine%2:36:01:: 01624169 1 0 -machine-accessible%5:00:00:on-line:00 01650581 1 0 -machine-controlled%5:00:00:automatic:00 00182086 1 0 -machine-displayable_text%1:10:00:: 06388777 1 0 -machine-driven%5:00:00:automatic:00 00182086 1 0 -machine-made%3:00:00:: 00674196 1 0 -machine-oriented_language%1:10:00:: 06899633 1 0 -machine-readable_text%1:10:00:: 06388918 1 0 -machine-wash%2:35:00:: 01537114 1 0 -machine_bolt%1:06:00:: 03701191 1 0 -machine_code%1:10:00:: 06357985 1 0 -machine_gun%1:06:00:: 03701391 1 8 -machine_gun%2:33:00:: 01136835 1 1 -machine_gunner%1:18:00:: 09811852 1 0 -machine_language%1:10:00:: 06357985 2 0 -machine_language%1:10:02:: 06899633 1 0 -machine_operation%1:22:00:: 13450862 1 0 -machine_pistol%1:06:00:: 02923682 1 0 -machine_politician%1:18:00:: 10278805 1 0 -machine_readable%3:01:00:: 02902214 1 0 -machine_readable_dictionary%1:10:00:: 06639023 1 0 -machine_rifle%1:06:00:: 02760855 1 0 -machine_screw%1:06:00:: 03701790 1 0 -machine_shop%1:06:00:: 03701947 1 1 -machine_stitch%1:06:00:: 03702067 1 0 -machine_tool%1:06:00:: 03702248 1 0 -machine_translation%1:09:00:: 06133503 1 0 -machine_wash%2:35:00:: 01537114 1 0 -machinelike%5:00:00:mechanical:00 01499999 1 1 -machinery%1:06:00:: 03701640 1 15 -machinery%1:14:00:: 08434029 2 3 -machinist%1:18:00:: 10279018 1 2 -machinist's_vise%1:06:00:: 03702440 1 0 -machismo%1:07:00:: 04667180 1 0 -machmeter%1:06:00:: 03702582 1 0 -macho%1:18:00:: 10279219 1 0 -macho%5:00:00:masculine:01 01483562 1 0 -macho-man%1:18:00:: 10665587 1 0 -machu_picchu%1:15:00:: 08980119 1 0 -machupo_virus%1:05:00:: 01331188 1 0 -macintosh%1:06:00:: 03702719 2 0 -macintosh%1:06:01:: 03703590 1 0 -mack%1:06:00:: 03702719 1 0 -mack_sennett%1:18:00:: 11293008 1 0 -mackem%1:18:00:: 10279317 1 0 -mackenzie%1:17:00:: 09344863 2 0 -mackenzie%1:18:00:: 11147924 1 0 -mackenzie_river%1:17:00:: 09344863 1 0 -mackerel%1:05:00:: 02624167 2 0 -mackerel%1:13:00:: 07781319 1 0 -mackerel_scad%1:05:00:: 02581482 1 0 -mackerel_shad%1:05:00:: 02581482 1 0 -mackerel_shark%1:05:00:: 01483522 1 0 -mackerel_sky%1:17:00:: 09345002 1 0 -mackinac_bridge%1:06:00:: 03702904 1 0 -mackinaw%1:06:00:: 03703075 4 0 -mackinaw%1:06:01:: 03703203 3 0 -mackinaw%1:06:02:: 03703320 2 0 -mackinaw%1:06:03:: 03703463 1 1 -mackinaw_blanket%1:06:00:: 03703320 1 0 -mackinaw_boat%1:06:00:: 03703203 1 0 -mackinaw_coat%1:06:00:: 03703463 1 0 -mackintosh%1:06:00:: 03703590 1 0 -mackintosh%1:06:01:: 03702719 2 0 -mackle%1:10:00:: 06591342 1 0 -macleaya%1:20:00:: 11906359 1 0 -macleaya_cordata%1:20:00:: 11906514 1 0 -macleish%1:18:00:: 11148152 1 0 -macleod%1:18:00:: 11148259 1 0 -maclura%1:20:00:: 12399784 1 0 -maclura_pomifera%1:20:00:: 12399899 1 0 -macon%1:13:00:: 07896661 2 0 -macon%1:15:00:: 09077556 1 0 -maconnais%1:13:00:: 07896661 1 0 -macoun%1:13:00:: 07741138 1 0 -macowanites%1:20:00:: 13048212 1 0 -macowanites_americanus%1:20:00:: 13048447 1 0 -macrame%1:06:00:: 03703730 1 0 -macrame%2:36:00:: 01670901 1 0 -macrencephalic%3:01:00:: 02901491 1 0 -macrencephalous%3:01:00:: 02901491 1 0 -macrencephaly%1:26:00:: 14152492 1 0 -macro%1:10:00:: 06586886 1 0 -macro%5:00:00:large:00 01388928 1 0 -macro_instruction%1:10:00:: 06586886 1 0 -macrobiotic%3:01:00:: 02983739 1 0 -macrobiotic_diet%1:13:00:: 07564515 1 0 -macrobiotics%1:09:00:: 06042312 1 0 -macrocephalic%3:01:00:: 02901649 1 0 -macrocephalon%1:05:00:: 01802033 1 0 -macrocephalon_maleo%1:05:00:: 01802159 1 0 -macrocephalous%3:01:00:: 02901649 1 0 -macrocephaly%1:26:00:: 14508974 1 0 -macrocheira%1:05:00:: 01982211 1 0 -macrocheira_kaempferi%1:05:00:: 01982347 1 0 -macroclemys%1:05:00:: 01666431 1 0 -macroclemys_temmincki%1:05:00:: 01666585 1 0 -macrocosm%1:17:00:: 09466280 1 0 -macrocosmic%3:01:00:: 02903062 1 0 -macrocyte%1:08:00:: 05449661 1 0 -macrocytic_anaemia%1:26:00:: 14166968 1 0 -macrocytic_anemia%1:26:00:: 14166968 1 0 -macrocytosis%1:26:00:: 14207711 1 0 -macrodactylus%1:05:00:: 02174870 1 0 -macrodactylus_subspinosus%1:05:00:: 02175014 1 0 -macrodantin%1:06:00:: 03826443 1 0 -macroeconomic%3:01:00:: 02758500 1 0 -macroeconomic_expert%1:18:00:: 10279392 1 0 -macroeconomics%1:09:00:: 06150933 1 0 -macroeconomist%1:18:00:: 10279392 1 0 -macroevolution%1:22:00:: 13510263 1 0 -macroglia%1:08:00:: 05467619 1 0 -macroglossia%1:26:00:: 14159459 1 0 -macromolecular%3:01:00:: 02902361 1 1 -macromolecule%1:27:00:: 14944888 1 0 -macron%1:10:00:: 06823440 1 0 -macronectes%1:05:00:: 02059723 1 0 -macronectes_giganteus%1:05:00:: 02059852 1 0 -macrophage%1:08:00:: 05450740 1 1 -macropodidae%1:05:00:: 01876843 1 0 -macropus%1:05:00:: 01877407 1 0 -macropus_agiles%1:05:00:: 01878061 1 0 -macropus_giganteus%1:05:00:: 01877606 1 0 -macrorhamphosidae%1:05:00:: 01456939 1 0 -macroscopic%5:00:00:large:00 01388809 2 0 -macroscopic%5:00:00:visible:00 02516316 1 0 -macroscopic_anatomy%1:09:00:: 06059865 1 0 -macroscopical%5:00:00:large:00 01388809 2 0 -macroscopical%5:00:00:visible:00 02516316 1 0 -macroscopically%4:02:00:: 00111138 1 1 -macrosporangium%1:20:00:: 11687432 1 0 -macrospore%1:20:00:: 11688199 1 0 -macrothelypteris%1:20:00:: 13229018 1 0 -macrotis%1:05:00:: 01876535 1 0 -macrotis_lagotis%1:05:00:: 01876667 1 0 -macrotus%1:05:00:: 02142407 1 0 -macrotus_californicus%1:05:00:: 02142407 1 0 -macrotyloma%1:20:00:: 12547658 1 0 -macrotyloma_uniflorum%1:20:00:: 12547872 1 0 -macrouridae%1:05:00:: 02525543 1 0 -macrozamia%1:20:00:: 11603835 1 0 -macrozamia_communis%1:20:00:: 11604046 1 0 -macrozamia_spiralis%1:20:00:: 11604046 1 0 -macrozoarces%1:05:00:: 02617956 1 0 -macrozoarces_americanus%1:05:00:: 02618094 1 0 -macruridae%1:05:00:: 02525543 1 0 -macula%1:08:00:: 05455690 2 0 -macula%1:08:01:: 05244934 3 0 -macula%1:19:00:: 11511004 1 0 -macula_lutea%1:08:00:: 05455690 1 0 -macular_area%1:08:00:: 05455690 1 0 -macular_degeneration%1:26:00:: 14256668 1 0 -macular_edema%1:26:00:: 14254768 1 0 -maculate%2:30:00:: 00492410 2 0 -maculate%2:35:00:: 01537409 1 0 -maculate%5:00:00:dirty:01 00422546 2 0 -maculate%5:00:00:impure:01 01905552 1 0 -maculation%1:04:00:: 00276813 2 0 -maculation%1:07:00:: 04682462 1 0 -macule%1:08:00:: 05244934 1 0 -macumba%1:09:00:: 06225505 3 0 -macumba%1:10:00:: 07059821 2 0 -macumba%1:14:00:: 08152069 1 0 -macushla%1:18:00:: 10279540 1 0 -mad%5:00:00:angry:00 00115193 1 12 -mad%5:00:00:foolish:00 02572038 4 0 -mad%5:00:00:insane:00 02075321 2 10 -mad%5:00:00:wild:02 02390724 3 9 -mad-dog_skullcap%1:20:00:: 12868019 1 0 -mad-dog_weed%1:20:00:: 12868019 1 0 -mad_anthony_wayne%1:18:00:: 11377564 1 0 -mad_apple%1:13:00:: 07713074 2 0 -mad_apple%1:20:00:: 12896000 1 0 -mad_cow_disease%1:26:00:: 14261846 1 0 -madagascan%1:18:00:: 09721647 1 0 -madagascan%3:01:00:: 03082589 1 0 -madagascar%1:15:00:: 08962187 1 0 -madagascar%1:15:01:: 08961970 2 0 -madagascar_cat%1:05:00:: 02497673 1 0 -madagascar_franc%1:23:00:: 13678273 1 0 -madagascar_jasmine%1:20:00:: 13239177 1 0 -madagascar_pepper%1:20:00:: 13149506 1 0 -madagascar_periwinkle%1:20:00:: 11772408 1 0 -madagascar_plum%1:20:00:: 12378249 1 0 -madake%1:20:00:: 12149521 1 0 -madam%1:18:00:: 09989290 1 1 -madam%1:18:01:: 10279669 2 0 -madame%1:18:00:: 10279778 1 0 -madame_curie%1:18:00:: 10917703 1 0 -madame_de_maintenon%1:18:00:: 11150224 1 0 -madame_de_stael%1:18:00:: 11311959 1 0 -madame_tussaud%1:18:00:: 11353510 1 0 -madcap%1:18:00:: 09991530 1 0 -madcap%5:00:00:incautious:00 00326608 1 0 -madden%2:37:00:: 01787600 3 0 -madden%2:37:01:: 01787709 2 0 -madden%2:37:02:: 01787822 1 0 -maddened%5:00:00:angry:00 00114454 1 2 -maddening%5:00:00:displeasing:00 01809245 1 2 -madder%1:20:00:: 12661227 1 0 -madder%2:30:00:: 00285593 1 0 -madder_family%1:20:00:: 12660009 1 0 -madderwort%1:20:00:: 12660601 1 0 -made%3:00:00:: 01469390 2 1 -made%5:00:00:ready-made:00 00672785 1 3 -made%5:00:00:successful:00 02332286 3 0 -made-to-order%5:00:01:custom-made:00 00672382 2 0 -made-to-order%5:00:02:custom-made:00 00672513 1 0 -made-up%5:00:00:paved:00 01739808 1 0 -madeira%1:13:00:: 07900616 3 0 -madeira%1:15:00:: 08985559 2 0 -madeira%1:17:00:: 09345127 1 0 -madeira_cake%1:13:00:: 07632515 1 0 -madeira_islands%1:15:00:: 08985724 1 0 -madeira_river%1:17:00:: 09345127 1 0 -madeira_sponge%1:13:00:: 07632515 1 0 -madeira_winter_cherry%1:20:00:: 12896862 1 0 -madeiras%1:15:00:: 08985724 1 0 -mademoiselle%1:05:00:: 02595339 1 0 -madhouse%1:06:00:: 02820798 1 0 -madia%1:20:00:: 11993932 1 0 -madia_elegans%1:20:00:: 11994336 1 0 -madia_oil%1:20:00:: 11994718 1 0 -madia_oil_plant%1:20:00:: 11994527 1 0 -madia_sativa%1:20:00:: 11994527 1 0 -madison%1:15:00:: 09158024 2 0 -madison%1:18:00:: 11148486 1 0 -madly%4:02:00:: 00046639 3 0 -madly%4:02:01:: 00080890 2 0 -madly%4:02:02:: 00503370 1 6 -madman%1:18:00:: 10276764 1 3 -madnep%1:20:00:: 12942025 1 0 -madness%1:07:00:: 04885784 5 0 -madness%1:09:00:: 05647156 4 0 -madness%1:12:00:: 07516997 3 0 -madness%1:26:00:: 14395240 1 2 -madness%1:26:01:: 14271667 2 0 -madonna%1:18:00:: 11161412 1 0 -madonna%1:18:01:: 11148748 2 0 -madonna_lily%1:20:00:: 12426978 1 0 -madonna_louise_ciccone%1:18:00:: 11148748 1 0 -madoqua%1:05:00:: 02421612 1 0 -madras%1:06:00:: 03703862 3 0 -madras%1:15:00:: 08904392 2 0 -madras%1:15:01:: 08905467 1 0 -madrasa%1:14:00:: 08283180 1 0 -madrasah%1:14:00:: 08283180 1 0 -madreporaria%1:05:00:: 01916738 1 0 -madrepore%1:05:00:: 01916925 1 0 -madrid%1:15:00:: 09024467 1 0 -madrigal%1:10:00:: 07052925 1 0 -madrigal%2:36:00:: 01732014 1 1 -madrigalist%1:18:00:: 10279867 1 0 -madrilene%1:13:00:: 07584228 1 0 -madriporian_coral%1:05:00:: 01916925 1 0 -madrona%1:20:00:: 12230540 1 0 -madrono%1:20:00:: 12230540 1 0 -madwoman%1:18:00:: 10279964 1 0 -madwort%1:20:00:: 11870747 1 0 -mae_west%1:06:00:: 03703945 2 0 -mae_west%1:18:00:: 11382278 1 0 -maeandra%1:05:00:: 01917167 1 0 -maelstrom%1:11:00:: 07433145 1 0 -maenad%1:18:00:: 09787390 2 0 -maenad%1:18:02:: 10280034 1 0 -maestro%1:18:00:: 10280130 1 0 -maeterlinck%1:18:00:: 11148899 1 0 -mafa%1:10:00:: 06984247 1 0 -maffeo_barberini%1:18:00:: 11357332 1 0 -maffia%1:14:00:: 08245802 1 0 -maffia%1:14:01:: 08245549 2 0 -maffia%1:14:02:: 08245425 3 0 -mafia%1:14:00:: 08245802 1 0 -mafia%1:14:01:: 08245549 2 0 -mafia%1:14:02:: 08245425 3 0 -mafioso%1:18:00:: 10280364 2 0 -mafioso%1:18:01:: 10280495 1 0 -mag%1:10:00:: 06595351 1 0 -mag_tape%1:06:00:: 03708036 1 0 -magadhan%1:10:00:: 06970645 1 0 -magazine%1:06:01:: 03704038 5 0 -magazine%1:06:02:: 03704210 2 2 -magazine%1:06:03:: 02973017 6 0 -magazine%1:06:04:: 03704376 4 0 -magazine%1:10:00:: 06595351 1 13 -magazine%1:14:00:: 08063303 3 1 -magazine_article%1:10:00:: 06269014 1 1 -magazine_publisher%1:14:00:: 08063303 1 0 -magazine_rack%1:06:00:: 03704549 1 0 -magdalen%1:18:00:: 10280598 1 0 -magdalena%1:17:00:: 09345265 1 0 -magdalena_river%1:17:00:: 09345265 1 0 -magellan%1:18:00:: 11149016 1 0 -magellanic_cloud%1:17:00:: 09345503 1 0 -magen_david%1:10:00:: 06882333 1 0 -magenta%1:04:00:: 01285784 2 0 -magenta%1:07:00:: 04964586 1 0 -magenta%5:00:00:chromatic:00 00377524 1 0 -magenta_pink%5:00:00:chromatic:00 00377616 1 0 -maggot%1:05:00:: 02312175 1 2 -maggoty%5:00:00:stale:00 01069823 1 0 -magh%1:28:00:: 15221099 1 0 -magha%1:28:00:: 15221099 1 0 -maghreb%1:15:00:: 08597323 1 0 -magi%1:14:00:: 08486538 1 0 -magic%1:04:01:: 00099951 2 0 -magic%1:09:00:: 05967977 1 4 -magic%5:00:00:supernatural:00 01576071 1 3 -magic_bullet%1:06:00:: 03704640 1 0 -magic_eye%1:06:00:: 03924978 1 0 -magic_lantern%1:06:00:: 03704834 1 0 -magic_marker%1:06:00:: 03326948 1 0 -magic_mushroom%1:20:00:: 11849467 1 0 -magic_number%1:23:00:: 13598960 1 0 -magic_realism%1:06:00:: 03704926 1 0 -magic_spell%1:10:00:: 07159791 1 0 -magic_square%1:14:00:: 08269707 1 0 -magic_trick%1:04:00:: 00099951 1 0 -magical%5:00:00:supernatural:00 01576071 1 2 -magical_ability%1:07:00:: 05201060 1 0 -magical_power%1:07:00:: 05201060 1 1 -magical_spell%1:10:00:: 07159791 1 0 -magically%4:02:00:: 00129788 1 0 -magician%1:18:00:: 10625860 2 0 -magician%1:18:01:: 10280674 1 5 -magicicada%1:05:00:: 02257149 1 0 -magicicada_septendecim%1:05:00:: 02257284 1 0 -magilp%1:27:00:: 14949608 1 0 -maginot%1:18:00:: 11149243 1 0 -maginot_line%1:06:00:: 03705134 1 0 -magisterial%3:01:00:: 02831596 1 0 -magisterial%5:00:00:dignified:00 00752110 3 0 -magisterial%5:00:00:domineering:00 00787595 2 0 -magisterially%4:02:00:: 00241383 2 0 -magisterially%4:02:01:: 00311430 1 0 -magistracy%1:04:00:: 00594738 1 0 -magistrate%1:18:00:: 10280945 1 1 -magistrature%1:04:00:: 00594738 1 0 -maglev%1:04:00:: 00951233 1 0 -magma%1:27:00:: 14931795 1 0 -magna_carta%1:10:00:: 06477003 1 0 -magna_charta%1:10:00:: 06477003 1 0 -magna_cum_laude%4:02:00:: 00291368 1 0 -magna_cum_laude%5:00:00:worthy:00 02586608 1 0 -magna_mater%1:18:00:: 09594093 1 0 -magnanimity%1:07:00:: 04832716 1 0 -magnanimous%5:00:00:generous:02 01114658 2 0 -magnanimous%5:00:00:noble:01 01589045 1 0 -magnanimously%4:02:00:: 00394151 1 0 -magnanimousness%1:07:00:: 04870340 1 0 -magnate%1:18:00:: 09840217 1 0 -magnesia%1:27:00:: 14690607 1 0 -magnesite%1:27:00:: 14680514 1 0 -magnesium%1:27:00:: 14644249 1 0 -magnesium_bicarbonate%1:27:00:: 14945137 1 0 -magnesium_carbonate%1:27:00:: 14945254 1 0 -magnesium_hydroxide%1:27:00:: 14945399 1 0 -magnesium_nitride%1:27:00:: 14945517 1 0 -magnesium_oxide%1:27:00:: 14690607 1 0 -magnesium_sulfate%1:27:00:: 14945624 1 0 -magnet%1:06:00:: 03705379 1 2 -magnet%1:09:00:: 05850823 2 0 -magnetic%3:00:00:: 01469677 2 1 -magnetic%3:00:01:: 01470298 4 0 -magnetic%3:00:03:: 01470813 3 0 -magnetic%3:01:00:: 02926188 1 4 -magnetic%5:00:00:attractive:01 00167077 5 0 -magnetic_attraction%1:19:00:: 11479058 1 1 -magnetic_bottle%1:06:00:: 03705808 1 0 -magnetic_bubble_memory%1:06:00:: 03706016 1 0 -magnetic_compass%1:06:00:: 03706229 1 0 -magnetic_core%1:06:00:: 03108069 1 0 -magnetic_core_memory%1:06:00:: 03706415 1 0 -magnetic_declination%1:25:00:: 13893310 1 0 -magnetic_dip%1:25:00:: 13892897 1 0 -magnetic_dipole%1:17:00:: 09345693 1 0 -magnetic_dipole_moment%1:19:00:: 11483580 1 0 -magnetic_disc%1:06:00:: 03706653 1 0 -magnetic_disk%1:06:00:: 03706653 1 0 -magnetic_equator%1:15:00:: 08490531 1 0 -magnetic_field%1:19:00:: 11477384 1 3 -magnetic_field_strength%1:07:00:: 05100525 1 0 -magnetic_flux%1:19:00:: 11477384 2 0 -magnetic_flux%1:23:00:: 13599730 1 0 -magnetic_flux_density%1:07:00:: 05100525 1 0 -magnetic_flux_unit%1:23:00:: 13634033 1 0 -magnetic_force%1:19:00:: 11479058 1 5 -magnetic_head%1:06:00:: 03706939 1 0 -magnetic_inclination%1:25:00:: 13892897 1 0 -magnetic_induction%1:07:00:: 05100525 2 0 -magnetic_induction%1:22:00:: 13510433 1 0 -magnetic_ink%1:27:00:: 14917859 1 0 -magnetic_intensity%1:07:00:: 05100525 1 0 -magnetic_iron-ore%1:27:00:: 14945914 1 0 -magnetic_levitation%1:04:00:: 00951233 1 0 -magnetic_line_of_force%1:19:00:: 11457392 1 0 -magnetic_medium%1:10:00:: 06263895 1 0 -magnetic_meridian%1:15:00:: 08599662 1 0 -magnetic_mine%1:06:00:: 03707171 1 0 -magnetic_moment%1:19:00:: 11483829 1 1 -magnetic_monopole%1:17:00:: 09345792 1 0 -magnetic_needle%1:06:00:: 03707372 1 1 -magnetic_north%1:24:00:: 13831441 1 0 -magnetic_pole%1:06:00:: 03976960 2 0 -magnetic_pole%1:15:00:: 08597579 1 0 -magnetic_pyrites%1:27:00:: 14693575 1 0 -magnetic_recorder%1:06:00:: 03707597 1 0 -magnetic_resonance%1:19:00:: 11478682 1 2 -magnetic_resonance_imaging%1:04:00:: 00902579 1 0 -magnetic_storage%1:10:00:: 06263895 1 0 -magnetic_storage_medium%1:10:00:: 06263895 1 0 -magnetic_storm%1:11:00:: 07428797 1 0 -magnetic_stripe%1:06:00:: 03707766 1 0 -magnetic_tape%1:06:00:: 03708036 1 0 -magnetic_variation%1:25:00:: 13893310 1 0 -magnetically%4:02:00:: 00089883 2 0 -magnetically%4:02:01:: 00506096 1 1 -magnetics%1:09:00:: 06120769 1 0 -magnetisation%1:07:00:: 05020225 3 0 -magnetisation%1:22:00:: 13510433 2 0 -magnetisation%1:23:00:: 13599547 1 0 -magnetise%2:30:00:: 00399788 2 0 -magnetise%2:32:00:: 00777522 1 0 -magnetised%3:00:00:: 01469677 1 0 -magnetism%1:09:00:: 06120769 2 0 -magnetism%1:19:00:: 11479058 1 6 -magnetite%1:27:00:: 14945914 1 0 -magnetization%1:07:00:: 05020225 3 0 -magnetization%1:22:00:: 13510433 2 0 -magnetization%1:23:00:: 13599547 1 0 -magnetize%2:30:00:: 00399788 1 2 -magnetize%2:32:00:: 00777522 2 0 -magnetized%3:00:00:: 01469677 1 0 -magneto%1:06:00:: 03708425 1 0 -magnetoelectric_machine%1:06:00:: 03708425 1 0 -magnetograph%1:06:00:: 03708672 1 0 -magnetohydrodynamics%1:09:00:: 06114069 1 0 -magnetometer%1:06:00:: 03708843 1 0 -magnetomotive_force%1:19:00:: 11523736 1 0 -magnetomotive_force_unit%1:23:00:: 13634615 1 0 -magneton%1:23:00:: 13642337 1 0 -magnetosphere%1:19:00:: 11477041 1 0 -magnetron%1:06:00:: 03708962 1 0 -magnificat%1:10:00:: 07037059 1 0 -magnification%1:04:00:: 00367427 1 1 -magnification%1:06:00:: 03289462 4 0 -magnification%1:10:00:: 06758835 3 0 -magnification%1:24:00:: 13822995 2 0 -magnificence%1:07:01:: 04814238 2 0 -magnificence%1:07:02:: 04729328 1 1 -magnificent%5:00:00:impressive:00 01285376 1 12 -magnificently%4:02:00:: 00182316 1 2 -magnificently%4:02:01:: 00350163 2 0 -magnifico%1:18:00:: 10281176 1 0 -magnified%5:00:00:increased:00 00881177 1 3 -magnifier%1:06:00:: 03709206 1 0 -magnify%2:30:00:: 00434077 1 4 -magnify%2:30:01:: 00240293 3 1 -magnify%2:32:00:: 00839834 2 1 -magnifying_glass%1:06:00:: 03484931 1 1 -magniloquence%1:10:00:: 07070429 1 0 -magniloquent%5:00:00:rhetorical:00 02017721 1 0 -magniloquently%4:02:00:: 00394292 1 0 -magnitude%1:07:00:: 05090441 1 15 -magnitude%1:07:01:: 05168890 3 1 -magnitude%1:24:00:: 13823651 2 1 -magnitude_relation%1:24:00:: 13815152 1 0 -magnolia%1:20:00:: 11709674 2 0 -magnolia%1:20:02:: 11710008 1 0 -magnolia_acuminata%1:20:00:: 11710827 1 0 -magnolia_family%1:20:00:: 11708181 1 0 -magnolia_fraseri%1:20:00:: 11710658 1 0 -magnolia_grandiflora%1:20:00:: 11710136 1 0 -magnolia_macrophylla%1:20:00:: 11710987 1 0 -magnolia_soulangiana%1:20:00:: 11711289 1 0 -magnolia_state%1:15:00:: 09103943 1 0 -magnolia_stellata%1:20:00:: 11711537 1 0 -magnolia_tripetala%1:20:00:: 11710393 1 0 -magnolia_virginiana%1:20:00:: 11711764 1 0 -magnoliaceae%1:20:00:: 11708181 1 0 -magnoliid_dicot_family%1:20:00:: 11564258 1 0 -magnoliid_dicot_genus%1:20:00:: 11571907 1 0 -magnoliidae%1:20:00:: 11667112 1 0 -magnoliophyta%1:20:00:: 11664929 1 0 -magnoliopsid%1:20:00:: 11666854 1 0 -magnoliopsid_family%1:20:00:: 11562747 1 0 -magnoliopsid_genus%1:20:00:: 11567411 1 0 -magnoliopsida%1:20:00:: 11665781 1 0 -magnum%1:06:00:: 03709363 1 0 -magnum_opus%1:06:00:: 03709454 1 0 -magnus_hitch%1:06:00:: 03709545 1 0 -magpie%1:05:00:: 01582220 1 1 -magpie%1:18:00:: 10281276 2 0 -magpie%1:18:01:: 09911570 3 0 -magritte%1:18:00:: 11149373 1 0 -maguey%1:20:01:: 12477583 2 0 -maguey%1:20:02:: 12477747 1 0 -magus%1:18:00:: 10281546 1 0 -magus%1:18:01:: 10281432 2 0 -magyar%1:10:00:: 06958836 2 0 -magyar%1:18:00:: 09713985 1 0 -magyar%3:01:00:: 02961505 1 0 -magyarorszag%1:15:00:: 08952190 1 0 -mah-jongg%1:04:00:: 00505126 1 1 -maha%1:18:00:: 09663628 1 0 -mahabharata%1:10:00:: 06431496 1 0 -mahabharatam%1:10:00:: 06431496 1 0 -mahabharatum%1:10:00:: 06431496 1 0 -mahagua%1:20:01:: 12180168 1 0 -mahagua%1:20:02:: 12178494 2 0 -mahalia_jackson%1:18:00:: 11076820 1 0 -mahan%1:18:00:: 11149483 1 0 -maharaja%1:18:00:: 10281637 1 0 -maharajah%1:18:00:: 10281637 1 0 -maharanee%1:18:00:: 10281770 1 0 -maharani%1:18:00:: 10281770 1 0 -maharashtra%1:15:00:: 08905936 1 0 -mahatma%1:18:00:: 10281896 1 0 -mahatma_gandhi%1:18:00:: 10989339 1 0 -mahayana%1:09:00:: 06240865 2 0 -mahayana%1:14:00:: 08099264 1 0 -mahayana_buddhism%1:09:00:: 06240865 1 0 -mahayanism%1:09:00:: 06189241 1 0 -mahayanist%1:18:00:: 09684082 1 0 -mahdi%1:18:00:: 10282014 1 0 -mahdism%1:09:00:: 06235829 1 0 -mahdist%1:18:00:: 10282262 1 0 -mahernia_verticillata%1:20:00:: 12200504 1 0 -mahgrib%1:15:00:: 08597323 1 0 -mahican%1:10:00:: 06910958 2 0 -mahican%1:18:00:: 09661873 1 0 -mahimahi%1:05:00:: 02581957 2 0 -mahimahi%1:13:00:: 07778938 1 0 -mahjong%1:04:00:: 00505126 1 0 -mahler%1:18:00:: 11149630 1 0 -mahlstick%1:06:00:: 03731882 1 0 -mahoe%1:20:01:: 12180168 1 0 -mahoe%1:20:02:: 12178494 2 0 -mahogany%1:07:00:: 04973386 3 0 -mahogany%1:20:00:: 12695144 2 0 -mahogany%1:20:02:: 12695572 1 2 -mahogany-red%5:00:00:chromatic:00 00381525 1 0 -mahogany_family%1:20:00:: 12694707 1 0 -mahogany_tree%1:20:00:: 12695144 1 0 -mahomet%1:18:00:: 11184092 1 0 -mahonia%1:20:00:: 11699283 1 0 -mahonia_aquifolium%1:20:00:: 11699442 1 0 -mahonia_nervosa%1:20:00:: 11699751 1 0 -mahound%1:18:00:: 11184092 1 0 -mahout%1:18:00:: 10282374 1 0 -mahratta%1:18:00:: 09676374 1 0 -mahratti%1:10:00:: 06971281 1 0 -mahuang%1:20:00:: 11598886 1 0 -maia%1:05:00:: 01981884 1 0 -maianthemum%1:20:00:: 12473405 1 0 -maianthemum_bifolium%1:20:00:: 12473840 1 0 -maianthemum_canadense%1:20:00:: 12473608 1 0 -maid%1:18:00:: 10282482 2 0 -maid%1:18:01:: 10282672 1 13 -maid_of_honor%1:18:00:: 09874862 1 0 -maiden%1:18:00:: 10282482 1 3 -maiden%1:28:00:: 15258945 2 0 -maiden%5:00:00:opening:00 01009343 1 0 -maiden_aunt%1:18:00:: 10282845 1 0 -maiden_blue-eyed_mary%1:20:00:: 12881913 1 0 -maiden_flight%1:04:00:: 00304208 1 0 -maiden_name%1:10:00:: 06337111 1 0 -maiden_over%1:28:00:: 15258945 1 0 -maiden_pink%1:20:00:: 11809094 1 0 -maiden_voyage%1:04:00:: 00313096 1 0 -maidenhair%1:20:00:: 13206817 1 0 -maidenhair_berry%1:20:00:: 12235479 1 0 -maidenhair_fern%1:20:00:: 13206817 1 0 -maidenhair_spleenwort%1:20:00:: 13181988 1 0 -maidenhair_tree%1:20:00:: 11664418 1 0 -maidenhead%1:08:00:: 05521934 1 0 -maidenhood%1:28:00:: 15147330 1 0 -maidenlike%5:00:00:feminine:01 01484651 1 0 -maidenliness%1:07:00:: 04667923 1 0 -maidenly%5:00:00:feminine:01 01484651 1 0 -maidhood%1:28:00:: 15147330 1 0 -maidism%1:26:00:: 14200873 1 0 -maidservant%1:18:00:: 10282672 1 0 -maidu%1:10:00:: 06924895 2 0 -maidu%1:18:00:: 09659866 1 0 -maiduguri%1:15:00:: 08974818 1 0 -maieutic_method%1:09:00:: 05661118 1 0 -maiger%1:05:00:: 02596252 1 0 -maigre%1:05:00:: 02596252 1 0 -maikoa%1:20:00:: 12899537 1 0 -mail%1:06:00:: 03000247 5 0 -mail%1:06:01:: 03709644 3 1 -mail%1:10:00:: 06264398 2 2 -mail%1:10:01:: 06275634 1 2 -mail%1:14:00:: 08463063 4 0 -mail%2:32:00:: 01031256 2 0 -mail%2:35:00:: 01437888 1 12 -mail-cheeked%5:00:00:armored:01 00144408 1 0 -mail-clad%5:00:00:armored:01 00144510 1 0 -mail-order_buying%1:04:00:: 00082223 1 0 -mail_boat%1:06:00:: 03710079 1 0 -mail_call%1:04:00:: 01012030 1 0 -mail_car%1:06:00:: 03710294 1 0 -mail_carrier%1:18:00:: 10283037 1 0 -mail_clerk%1:18:00:: 10459116 1 0 -mail_fraud%1:04:00:: 00777587 1 0 -mail_order%1:10:00:: 06530703 1 1 -mail_out%2:35:00:: 01437725 1 1 -mail_pouch%1:06:00:: 03709960 1 0 -mail_service%1:10:00:: 06264398 1 0 -mail_slot%1:06:00:: 03710819 1 0 -mail_train%1:06:00:: 03711044 1 0 -mailbag%1:06:00:: 03709823 2 0 -mailbag%1:06:01:: 03709960 1 0 -mailboat%1:06:00:: 03710079 1 0 -mailbox%1:06:00:: 03710193 1 4 -mailbox%1:06:01:: 03989074 2 0 -maildrop%1:06:00:: 03710421 1 0 -mailed%5:00:00:armored:01 00144510 1 0 -mailer%1:06:00:: 03710528 4 0 -mailer%1:10:00:: 07249336 3 0 -mailer%1:18:00:: 10282920 2 0 -mailer%1:18:01:: 11149762 1 0 -mailing%1:04:00:: 00122338 2 0 -mailing%1:14:00:: 08463647 1 0 -mailing-card%1:10:00:: 06627938 1 0 -mailing_address%1:15:00:: 08491245 1 0 -mailing_list%1:10:00:: 06492811 1 0 -maillol%1:18:00:: 11149867 1 0 -maillot%1:06:00:: 03710637 2 0 -maillot%1:06:01:: 03710721 1 0 -mailman%1:18:00:: 10283037 1 1 -mailsorter%1:06:00:: 03710937 1 0 -maim%2:29:00:: 00090888 1 0 -maimed%1:14:00:: 07950786 1 1 -maimed%5:00:00:unfit:01 01020282 1 0 -maimer%1:18:00:: 10341955 1 0 -maimonides%1:18:00:: 11149995 1 0 -main%1:06:00:: 03711145 2 0 -main%1:17:00:: 09345932 1 0 -main%3:00:02:: 00730215 2 0 -main%5:00:00:important:00 01277426 1 33 -main%5:00:00:intense:00 01512527 3 0 -main-topmast%1:06:00:: 03712887 1 0 -main-topsail%1:06:00:: 03712981 1 0 -main_clause%1:10:00:: 06314423 1 0 -main_course%1:06:00:: 03711384 2 0 -main_course%1:13:00:: 07579575 1 0 -main_deck%1:06:00:: 03711459 1 0 -main_diagonal%1:14:00:: 08268636 1 0 -main_drag%1:06:00:: 03711603 1 1 -main_entry_word%1:10:00:: 06300632 1 0 -main_file%1:10:00:: 06509902 1 0 -main_line%1:06:00:: 03711897 1 0 -main_office%1:06:00:: 03504723 1 0 -main_road%1:06:00:: 03519981 1 0 -main_rotor%1:06:00:: 03712111 1 0 -main_street%1:06:00:: 03712729 1 2 -main_street%1:15:00:: 08671822 2 0 -main_yard%1:06:00:: 03713069 1 0 -maine%1:15:00:: 09092497 1 2 -maine_lobster%1:05:00:: 01983481 2 0 -maine_lobster%1:13:00:: 07792926 1 0 -mainer%1:18:00:: 09743487 1 0 -mainframe%1:06:00:: 02995345 2 0 -mainframe%1:06:01:: 03711711 1 0 -mainframe_computer%1:06:00:: 03711711 1 0 -mainland%1:17:00:: 09346120 1 3 -mainland_china%1:15:00:: 08723006 1 0 -mainline%2:34:00:: 01199365 1 0 -mainly%4:02:00:: 00073897 1 11 -mainmast%1:06:00:: 03711999 1 0 -mainsail%1:06:00:: 03712337 1 0 -mainsheet%1:06:00:: 04188368 1 0 -mainspring%1:06:00:: 03712444 1 0 -mainstay%1:06:00:: 03712637 3 0 -mainstay%1:09:00:: 05694232 2 0 -mainstay%1:18:00:: 10432957 1 0 -mainstream%1:09:00:: 05955186 1 0 -mainstreamed%5:00:00:integrated:00 01326805 1 0 -maintain%2:31:00:: 00732552 10 0 -maintain%2:32:00:: 01016778 4 8 -maintain%2:32:01:: 01017643 8 0 -maintain%2:32:03:: 00896497 9 0 -maintain%2:32:04:: 01065877 7 0 -maintain%2:34:00:: 01184625 3 13 -maintain%2:40:00:: 02280132 2 38 -maintain%2:40:01:: 02204564 5 4 -maintain%2:40:10:: 02203168 6 0 -maintain%2:42:00:: 02681795 1 41 -maintainable%5:00:00:reparable:00 01963688 1 0 -maintained%5:00:01:preserved:01 00737515 1 1 -maintained%5:00:02:preserved:01 00737801 2 0 -maintainer%1:18:00:: 10740219 1 0 -maintenance%1:04:00:: 00267522 1 6 -maintenance%1:04:01:: 01216191 4 0 -maintenance%1:04:02:: 00765791 5 0 -maintenance%1:21:00:: 13366311 2 1 -maintenance%1:21:01:: 13283620 3 0 -maintenance_man%1:18:00:: 10521100 1 0 -maintenance_staff%1:14:00:: 08352848 1 0 -maintenon%1:18:00:: 11150224 1 0 -maiolica%1:06:00:: 03713436 1 0 -maisonette%1:06:00:: 03713151 2 0 -maisonette%1:06:01:: 03713254 1 0 -maisonnette%1:06:00:: 03713151 2 0 -maisonnette%1:06:01:: 03713254 1 0 -maitland%1:18:00:: 11150471 1 0 -maitre_d'%1:18:00:: 09892513 1 0 -maitre_d'hotel%1:18:00:: 09892513 1 0 -maitreya%1:18:00:: 09532553 1 0 -maize%1:07:00:: 04966543 2 0 -maize%1:20:00:: 12143676 1 0 -maja%1:05:00:: 01981884 1 0 -maja_squinado%1:05:00:: 01982068 1 0 -majagua%1:20:01:: 12180168 1 0 -majagua%1:20:02:: 12178494 2 0 -majestic%5:00:00:impressive:00 01285136 2 1 -majestic%5:00:00:noble:02 01591394 3 0 -majestic%5:00:00:superior:01 02339791 1 1 -majestically%4:02:00:: 00394462 1 1 -majesty%1:07:00:: 04729984 1 1 -majidae%1:05:00:: 01981543 1 0 -majolica%1:06:00:: 03713436 1 0 -major%1:09:00:: 05997659 4 0 -major%1:18:00:: 10283170 1 2 -major%1:18:01:: 10283366 3 0 -major%1:18:02:: 11150634 2 0 -major%2:31:09:: 00607609 1 2 -major%3:00:01:: 01471002 3 22 -major%3:00:02:: 01471538 2 25 -major%3:00:03:: 01471848 7 0 -major%3:00:04:: 01472098 5 1 -major%3:00:05:: 01472351 4 1 -major%3:00:06:: 01472628 1 38 -major%3:00:07:: 01473680 6 0 -major%5:00:00:senior:00 02100236 8 0 -major-domo%1:18:00:: 10283546 1 0 -major-general%1:18:00:: 10283663 1 3 -major-league_club%1:14:00:: 08078819 1 1 -major-league_team%1:14:00:: 08078819 1 0 -major_affective_disorder%1:26:00:: 14388910 1 0 -major_axis%1:09:00:: 06009537 1 7 -major_depressive_episode%1:26:00:: 14390466 1 0 -major_diatonic_scale%1:10:00:: 06860826 1 0 -major_fast_day%1:28:00:: 15161284 1 0 -major_form_class%1:10:00:: 06317672 1 0 -major_key%1:10:00:: 06864192 1 0 -major_league%1:14:00:: 08231499 1 4 -major_leaguer%1:18:00:: 10283931 1 0 -major_lobe%1:10:00:: 07005715 1 0 -major_mode%1:10:00:: 06864192 1 0 -major_planet%1:17:00:: 09394007 1 0 -major_power%1:14:00:: 08177592 1 0 -major_premise%1:10:00:: 06754184 1 0 -major_premiss%1:10:00:: 06754184 1 0 -major_scale%1:10:00:: 06860826 1 0 -major_suit%1:06:00:: 03713556 1 0 -major_surgery%1:04:00:: 00684837 1 0 -major_term%1:10:00:: 06754658 1 0 -major_tranquilizer%1:06:00:: 03713736 1 0 -major_tranquilliser%1:06:00:: 03713736 1 0 -major_tranquillizer%1:06:00:: 03713736 1 0 -majorana%1:20:00:: 12852930 1 0 -majorana_hortensis%1:20:00:: 12853482 1 0 -majorca%1:15:00:: 09024844 1 0 -majorette%1:18:00:: 10036692 2 0 -majorette%1:18:01:: 10036802 1 0 -majority%1:07:00:: 05122557 1 17 -majority%1:23:00:: 13581067 2 5 -majority%1:28:00:: 15152062 3 1 -majority_leader%1:18:00:: 10283824 1 0 -majority_operation%1:22:00:: 13510638 1 0 -majority_opinion%1:10:00:: 06552470 1 0 -majority_rule%1:09:00:: 05964445 1 0 -majors%1:14:00:: 08231499 1 2 -majuscular%5:00:00:majuscule:00 01474196 1 0 -majuscule%1:10:00:: 06824227 1 0 -majuscule%3:00:00:: 01473996 1 0 -majuscule%5:00:00:uppercase:00 01467919 2 0 -mak%1:14:00:: 08033454 1 0 -makaira%1:05:00:: 02630926 1 0 -makaira_albida%1:05:00:: 02631775 1 0 -makaira_marlina%1:05:00:: 02631475 1 0 -makaira_mazara%1:05:00:: 02631475 1 0 -makaira_mitsukurii%1:05:00:: 02631628 1 0 -makaira_nigricans%1:05:00:: 02631330 1 0 -makalu%1:17:00:: 09346284 1 0 -makarios_iii%1:18:00:: 11150809 1 0 -makataimeshekiakiak%1:18:00:: 10852320 1 0 -make%1:04:00:: 00340463 2 0 -make%1:09:00:: 05845140 1 1 -make%2:29:00:: 00074038 29 1 -make%2:29:01:: 00072012 49 0 -make%2:29:06:: 00107369 48 0 -make%2:29:08:: 00012267 19 5 -make%2:30:00:: 00120316 2 459 -make%2:30:02:: 00276068 27 2 -make%2:30:10:: 00562182 45 0 -make%2:30:12:: 00545953 47 0 -make%2:30:14:: 00562067 46 0 -make%2:30:15:: 00556855 18 5 -make%2:31:00:: 00730758 7 33 -make%2:31:10:: 00698256 43 0 -make%2:31:12:: 00698104 44 0 -make%2:31:13:: 00665476 23 4 -make%2:32:00:: 00770437 4 85 -make%2:32:09:: 00838524 42 0 -make%2:32:14:: 00891038 41 0 -make%2:35:13:: 01428578 40 0 -make%2:36:00:: 01617192 3 243 -make%2:36:01:: 01621555 6 52 -make%2:36:04:: 01733477 26 2 -make%2:36:05:: 01619014 11 14 -make%2:36:07:: 01664172 39 0 -make%2:36:08:: 01645601 5 78 -make%2:36:09:: 01640207 9 16 -make%2:36:10:: 01755504 38 0 -make%2:36:11:: 01653873 15 9 -make%2:36:12:: 01755816 16 8 -make%2:36:13:: 01654628 17 5 -make%2:36:15:: 01646075 8 17 -make%2:38:00:: 02020590 22 4 -make%2:38:02:: 02022162 13 12 -make%2:38:05:: 02075857 28 1 -make%2:38:10:: 02051031 36 0 -make%2:38:15:: 02021532 37 0 -make%2:39:12:: 02134050 35 0 -make%2:40:01:: 02289295 10 14 -make%2:40:02:: 02355596 21 4 -make%2:41:00:: 02560585 1 508 -make%2:41:01:: 02598483 25 2 -make%2:41:03:: 02396716 20 4 -make%2:41:13:: 02582921 24 3 -make%2:42:00:: 02674708 14 10 -make%2:42:05:: 02621395 12 12 -make%2:42:09:: 02748759 30 0 -make%2:42:11:: 02665124 33 0 -make%2:42:12:: 02745332 32 0 -make%2:42:13:: 02748627 31 0 -make%2:42:15:: 02621133 34 0 -make-believe%1:04:00:: 00755500 2 0 -make-believe%1:09:00:: 05769930 1 0 -make-believe%5:00:00:unreal:00 01937759 1 0 -make-do%1:04:00:: 00178551 1 0 -make-peace%1:18:00:: 09952163 1 0 -make-up%1:06:00:: 03714235 3 0 -make-up%1:07:00:: 04933544 2 0 -make-up%1:11:00:: 07322769 1 0 -make-work%1:04:00:: 00581621 1 1 -make_a_clean_breast_of%2:32:00:: 00817909 1 0 -make_a_face%2:29:00:: 00034288 1 0 -make_a_motion%2:32:00:: 00879356 1 0 -make_a_point%2:41:00:: 02595234 1 0 -make_a_stink%2:32:00:: 00910654 1 0 -make_as_if%2:29:00:: 00107468 1 0 -make_believe%2:32:01:: 00838524 1 0 -make_bold%2:41:00:: 02374924 1 1 -make_clean%2:35:00:: 01532589 1 0 -make_do%2:41:00:: 02587532 1 1 -make_for%2:36:00:: 01629589 1 13 -make_full%2:30:00:: 00452512 1 0 -make_fun%2:32:00:: 00851933 1 3 -make_good%2:41:00:: 02579140 1 1 -make_grow%2:30:00:: 00253761 1 0 -make_happy%2:41:00:: 02491383 1 1 -make_hay%2:34:00:: 01163197 1 0 -make_headway%2:33:00:: 01111028 1 0 -make_it%2:41:00:: 02585860 2 3 -make_it%2:41:05:: 02525044 3 0 -make_it%2:42:00:: 02619924 1 7 -make_love%2:35:00:: 01426397 1 1 -make_merry%2:41:00:: 02491383 1 0 -make_no_bones_about%2:32:00:: 00817752 1 0 -make_noise%2:39:00:: 02172888 1 2 -make_off%2:38:00:: 02073714 1 0 -make_out%2:31:00:: 00626300 3 2 -make_out%2:32:00:: 01064799 2 2 -make_out%2:32:02:: 01020731 8 0 -make_out%2:32:03:: 00931085 9 0 -make_out%2:32:06:: 00757056 10 0 -make_out%2:35:00:: 01426397 6 0 -make_out%2:35:01:: 01426153 7 0 -make_out%2:39:00:: 02193194 1 8 -make_out%2:41:02:: 02587532 5 1 -make_out%2:42:00:: 02617567 4 1 -make_over%2:36:00:: 01619725 2 1 -make_over%2:36:02:: 01669285 1 1 -make_pass%2:38:00:: 02052476 1 0 -make_peace%2:33:00:: 01093587 1 1 -make_pure%2:30:00:: 00475183 1 0 -make_relaxed%2:29:00:: 00025654 1 0 -make_sense%2:42:00:: 02619612 1 9 -make_sure%2:41:00:: 02595234 1 5 -make_unnecessary%2:30:00:: 00549552 1 0 -make_up%2:29:00:: 00040928 9 0 -make_up%2:30:00:: 00276068 6 1 -make_up%2:32:00:: 00764902 8 0 -make_up%2:36:01:: 01634424 5 1 -make_up%2:36:03:: 01753465 2 4 -make_up%2:40:00:: 02253456 3 3 -make_up%2:41:00:: 02520730 4 1 -make_up%2:42:00:: 02620587 1 19 -make_up%2:42:03:: 02672540 7 0 -make_up_one's_mind%2:31:00:: 00697589 1 10 -make_vibrant_sounds%2:32:00:: 01052936 1 0 -make_water%2:29:00:: 00072012 1 0 -make_way%2:38:00:: 02098332 1 3 -make_whoopie%2:41:00:: 02491383 1 0 -makedonija%1:15:00:: 08915372 1 0 -makeover%1:04:00:: 00660570 1 0 -makeover%1:04:01:: 00269674 2 0 -maker%1:14:00:: 08060446 3 0 -maker%1:18:00:: 10284064 1 8 -maker%1:18:01:: 09536363 2 0 -makeready%1:04:00:: 01143957 1 1 -makeshift%1:04:00:: 00178551 1 0 -makeshift%5:00:00:impermanent:00 01757211 1 1 -makeup%1:06:00:: 03714235 1 1 -makeup%1:07:00:: 04933544 3 0 -makeup%1:11:00:: 07322769 2 0 -makeweight%1:06:00:: 03714610 2 0 -makeweight%1:06:01:: 03714721 1 0 -makin%1:04:00:: 01296697 1 0 -making%1:04:00:: 00923995 1 7 -making%1:06:00:: 03714899 3 0 -making%1:07:00:: 04717139 2 0 -making_known%1:10:00:: 07212190 1 0 -making_love%1:04:00:: 00846515 1 0 -making_water%1:22:00:: 13506727 1 0 -mako%1:05:00:: 01484097 1 0 -mako_shark%1:05:00:: 01484097 1 0 -makomako%1:20:00:: 12193665 1 0 -maksim_gorky%1:18:00:: 11008870 1 0 -maksutov_telescope%1:06:00:: 03715114 1 0 -maktab_al-khidmat%1:14:00:: 08033454 1 0 -mal_de_la_rosa%1:26:00:: 14200873 1 0 -mal_de_mer%1:26:00:: 14203942 1 0 -mal_rosso%1:26:00:: 14200873 1 0 -malabar_kino%1:20:00:: 12566112 1 0 -malabo%1:15:00:: 08763765 1 0 -malabsorption%1:22:00:: 13510829 1 0 -malabsorption_syndrome%1:26:00:: 14307035 1 0 -malacanthidae%1:05:00:: 02572904 1 0 -malacca%1:06:00:: 03715275 2 0 -malacca%1:20:00:: 12136581 1 0 -malacca_cane%1:06:00:: 03715275 1 0 -malachi%1:10:00:: 06441464 2 0 -malachi%1:18:00:: 11150973 1 0 -malachias%1:10:00:: 06441464 2 0 -malachias%1:18:00:: 11150973 1 0 -malachite%1:27:00:: 14680661 1 0 -malacia%1:26:00:: 14208065 1 0 -malaclemys%1:05:00:: 01667959 1 0 -malaclemys_centrata%1:05:00:: 01668091 1 0 -malacologist%1:18:00:: 10284763 1 0 -malacology%1:09:00:: 06073067 1 0 -malaconotinae%1:05:00:: 01599919 1 0 -malacopterygian%1:05:00:: 01428580 1 0 -malacopterygii%1:05:00:: 01428155 1 0 -malacosoma%1:05:00:: 02307007 1 0 -malacosoma_americana%1:05:00:: 02307176 1 0 -malacosoma_disstria%1:05:01:: 02307515 2 0 -malacosoma_disstria%1:05:02:: 02307681 1 0 -malacostraca%1:05:00:: 01975312 1 0 -malacostracan_crustacean%1:05:00:: 01975687 1 0 -malacothamnus%1:20:00:: 12182858 1 0 -malacothamnus_fasciculatus%1:20:00:: 12183026 1 0 -maladaptive%3:00:00:: 00046673 1 0 -maladjusted%3:00:00:: 00351818 1 0 -maladjusted%5:00:00:neurotic:00 01584017 2 0 -maladjusted%5:00:00:unadjusted:00 00351420 3 0 -maladjustive%5:00:00:maladaptive:00 00046955 1 0 -maladjustment%1:26:00:: 14387975 1 0 -maladroit%3:00:00:: 00063277 1 1 -maladroitly%4:02:00:: 00056200 1 0 -maladroitness%1:09:00:: 05648459 1 0 -malady%1:26:00:: 14061805 2 1 -malady%1:26:01:: 14563928 1 1 -malaga%1:15:00:: 09026614 1 0 -malagasy_republic%1:15:00:: 08962187 1 0 -malahini%1:18:00:: 10284871 1 0 -malaise%1:26:00:: 14447019 1 6 -malamud%1:18:00:: 11151084 1 0 -malamute%1:05:00:: 02110063 1 0 -malanga%1:20:00:: 11793403 1 0 -malaprop%1:10:00:: 06769883 1 0 -malapropism%1:10:00:: 06769883 1 0 -malapropos%3:00:00:: 00138622 1 0 -malapropos%4:02:00:: 00376066 1 0 -malar%1:08:00:: 05273822 1 0 -malar_bone%1:08:00:: 05273822 1 0 -malaria%1:26:00:: 14077830 1 2 -malaria_mosquito%1:05:00:: 02201626 1 0 -malaria_parasite%1:05:00:: 01424420 1 0 -malarial%3:01:00:: 03082745 1 0 -malarial_mosquito%1:05:00:: 02201626 1 0 -malarkey%1:10:00:: 07136711 1 0 -malarky%1:10:00:: 07136711 1 0 -malathion%1:27:00:: 14946082 1 0 -malathion_poisoning%1:26:00:: 14510814 1 0 -malawi%1:15:00:: 08962610 1 0 -malawi_kwacha%1:23:00:: 13683221 1 0 -malawian%1:18:00:: 09721759 1 0 -malawian%3:01:00:: 03082875 1 0 -malawian_monetary_unit%1:23:00:: 13683093 1 0 -malaxis%1:20:00:: 12071965 1 0 -malaxis-unifolia%1:20:00:: 12072210 1 0 -malaxis_ophioglossoides%1:20:00:: 12072210 1 0 -malay%1:10:00:: 06938887 2 0 -malay%1:18:00:: 09712696 1 0 -malay%3:01:00:: 03083069 1 0 -malay_archipelago%1:15:00:: 08841956 1 0 -malay_peninsula%1:15:00:: 08964810 1 0 -malaya%1:15:00:: 08963369 1 0 -malayalam%1:10:00:: 06980175 1 0 -malayan%1:18:00:: 09712696 1 0 -malayan%3:01:00:: 03083069 2 0 -malayan%3:01:01:: 03083417 1 0 -malayan_tapir%1:05:00:: 02393940 1 0 -malayo-polynesian%1:10:00:: 06937768 1 0 -malayo-polynesian%3:01:00:: 02758610 1 0 -malaysia%1:15:00:: 08963369 1 0 -malaysia_militant_group%1:14:00:: 08027518 1 0 -malaysian%1:10:00:: 06939051 2 0 -malaysian%1:18:00:: 09721883 1 0 -malaysian%3:01:00:: 03083417 1 0 -malaysian_monetary_unit%1:23:00:: 13697963 1 0 -malaysian_mujahidin_group%1:14:00:: 08027518 1 0 -malcolm_little%1:18:00:: 11151189 1 0 -malcolm_lowry%1:18:00:: 11142922 1 0 -malcolm_stock%1:20:00:: 11892029 1 0 -malcolm_x%1:18:00:: 11151189 1 0 -malcolmia%1:20:00:: 11891838 1 0 -malcolmia_maritima%1:20:00:: 11892181 1 0 -malcontent%1:18:00:: 10284965 1 0 -malcontent%5:00:00:discontented:00 00589960 1 0 -maldivan%1:18:00:: 09722159 1 0 -maldive_islands%1:15:00:: 08965055 1 0 -maldives%1:15:00:: 08965251 1 0 -maldives%1:15:01:: 08965055 2 0 -maldivian%1:18:00:: 09722159 1 0 -maldon%1:04:00:: 01286000 1 0 -male%1:05:00:: 01321230 1 6 -male%1:15:00:: 08965475 3 0 -male%1:18:00:: 09624168 2 4 -male%3:00:00:: 01476685 1 8 -male%5:00:01:male:00 01477077 3 0 -male%5:00:02:masculine:01 01483677 2 0 -male-patterned_baldness%1:26:00:: 14457707 1 0 -male_aristocrat%1:18:00:: 10285135 1 0 -male_berry%1:20:00:: 12241192 1 0 -male_body%1:08:00:: 05219724 1 0 -male_bonding%1:24:00:: 13782329 1 0 -male_chauvinism%1:04:00:: 01156070 1 0 -male_chauvinist%1:18:00:: 09912431 1 0 -male_chest%1:08:00:: 05551617 1 0 -male_child%1:18:00:: 10285313 1 0 -male_erecticle_dysfunction%1:26:00:: 14045141 1 0 -male_fern%1:20:00:: 13193856 1 0 -male_genital_organ%1:08:00:: 05514905 1 0 -male_genitalia%1:08:00:: 05514905 1 0 -male_genitals%1:08:00:: 05514905 1 0 -male_horse%1:05:00:: 02376918 1 0 -male_hypogonadism%1:26:00:: 14075660 1 0 -male_internal_reproductive_organ%1:08:00:: 05515157 1 0 -male_monarch%1:18:00:: 10231515 1 0 -male_offspring%1:18:00:: 10285938 1 0 -male_orchis%1:20:00:: 12043673 1 0 -male_orgasm%1:04:00:: 00062331 1 0 -male_parent%1:18:00:: 10080869 1 0 -male_pattern_baldness%1:26:00:: 14457707 1 0 -male_person%1:18:00:: 09624168 1 0 -male_plug%1:06:00:: 03968293 1 0 -male_reproductive_gland%1:08:00:: 05525252 1 0 -male_reproductive_system%1:08:00:: 05513807 1 0 -male_sibling%1:18:00:: 10286084 1 0 -maleate%1:27:00:: 14946251 1 0 -maleberry%1:20:00:: 12241192 1 0 -malebranche%1:18:00:: 11151322 1 0 -malecite%1:10:00:: 06910517 2 0 -malecite%1:18:00:: 09660010 1 0 -maledict%2:32:00:: 00865958 1 0 -maledict%5:00:00:cursed:00 00669853 1 0 -malediction%1:10:00:: 07233996 1 1 -malefactor%1:18:00:: 09977660 1 0 -malefic%5:00:00:maleficent:00 00224515 1 0 -maleficence%1:07:00:: 04846533 2 0 -maleficence%1:12:00:: 07550551 1 0 -maleficent%3:00:00:: 00224166 1 0 -maleic_acid%1:27:00:: 14946424 1 0 -malemute%1:05:00:: 02110063 1 0 -maleness%1:07:00:: 05008227 1 1 -maleo%1:05:00:: 01802159 1 0 -maleseet%1:10:00:: 06910517 1 0 -malevich%1:18:00:: 11151436 1 0 -malevolence%1:07:00:: 04842313 2 0 -malevolence%1:12:00:: 07550369 1 0 -malevolency%1:07:00:: 04842313 1 1 -malevolent%5:00:00:maleficent:00 00224515 2 0 -malevolent%5:00:00:malicious:00 00225564 1 0 -malevolent_program%1:10:00:: 06573020 1 0 -malevolently%4:02:00:: 00394722 1 0 -malfeasance%1:04:00:: 00741925 1 0 -malfeasant%1:18:00:: 10286200 1 1 -malformation%1:11:00:: 07367091 2 0 -malformation%1:26:00:: 14213512 1 0 -malformed%5:00:00:unshapely:00 02141298 1 1 -malfunction%1:11:00:: 07318476 1 0 -malfunction%2:35:00:: 01525295 1 0 -malfunctioning%3:00:00:: 01092142 1 0 -malheur_wire_lettuce%1:20:00:: 11897900 1 0 -mali%1:15:00:: 08965598 1 0 -mali_franc%1:23:00:: 13678373 1 0 -malian%1:18:00:: 09722279 1 0 -malian%3:01:00:: 03083678 1 0 -malice%1:07:00:: 04842313 2 0 -malice%1:12:00:: 07550666 1 0 -malice_aforethought%1:09:00:: 05795957 1 0 -malicious%3:00:00:: 00224731 1 0 -malicious_gossip%1:10:00:: 07223811 1 0 -malicious_mischief%1:04:00:: 01249816 1 0 -maliciously%4:02:00:: 00201075 1 0 -maliciousness%1:12:00:: 07550666 1 0 -malign%2:32:00:: 00848169 1 0 -malign%3:00:00:: 00227003 1 1 -malign%5:00:00:maleficent:00 00224515 2 0 -malignance%1:07:00:: 04842788 2 0 -malignance%1:26:00:: 14237561 1 0 -malignancy%1:07:00:: 04842788 2 0 -malignancy%1:26:00:: 14237561 1 1 -malignant%3:00:02:: 02594714 1 0 -malignant_anaemia%1:26:00:: 14167426 1 0 -malignant_anemia%1:26:00:: 14167426 1 0 -malignant_hepatoma%1:26:00:: 14251174 1 0 -malignant_hypertension%1:26:00:: 14105091 1 0 -malignant_hyperthermia%1:26:00:: 14157782 1 0 -malignant_melanoma%1:26:00:: 14252564 1 0 -malignant_neoplasm%1:26:00:: 14239425 1 0 -malignant_neoplastic_disease%1:26:00:: 14239918 1 0 -malignant_neuroma%1:26:00:: 14241400 1 0 -malignant_pustule%1:26:00:: 14072625 1 0 -malignant_tumor%1:26:00:: 14239425 1 0 -malignantly%4:02:00:: 00394849 1 0 -maligner%1:18:00:: 09999135 1 0 -malignity%1:07:00:: 04842788 2 0 -malignity%1:12:00:: 07550369 1 0 -malignly%4:02:00:: 00394956 1 0 -malignment%1:10:00:: 06720216 1 0 -malik%1:18:00:: 10286282 1 0 -malinger%2:41:00:: 02464132 1 1 -malingerer%1:18:00:: 10286539 1 0 -malingering%1:04:00:: 00741272 1 1 -malinois%1:05:00:: 02105162 1 0 -malinowski%1:18:00:: 11151579 1 0 -mall%1:06:00:: 04010205 1 0 -mall%1:06:01:: 03965456 2 0 -mallard%1:05:00:: 01847806 1 0 -mallarme%1:18:00:: 11151798 1 0 -malleability%1:07:00:: 05021884 1 0 -malleable%5:00:00:formed:00 02144436 2 0 -malleable%5:00:00:tractable:00 02451551 1 0 -mallee%1:20:00:: 12335664 1 0 -mallee_fowl%1:05:00:: 01801479 1 0 -mallee_hen%1:05:00:: 01801672 1 0 -mallet%1:06:00:: 03715386 3 0 -mallet%1:06:01:: 03715669 2 0 -mallet%1:06:02:: 03715892 1 0 -malleus%1:08:00:: 05325943 1 0 -mallon%1:18:00:: 11151932 1 0 -mallophaga%1:05:00:: 02185337 1 0 -mallotus%1:05:00:: 02541139 1 0 -mallow%1:20:00:: 12170585 1 0 -mallow_family%1:20:00:: 12169776 1 0 -malmo%1:15:00:: 08766455 1 0 -malmsey%1:13:00:: 07900734 1 0 -malnourish%2:34:00:: 01179276 1 0 -malnourished%3:00:00:: 02300914 1 0 -malnourishment%1:26:00:: 14040490 1 0 -malnutrition%1:26:00:: 14199700 1 0 -malocclusion%1:26:00:: 14060929 1 0 -malodor%1:09:00:: 05714894 1 0 -malodorous%3:00:00:: 01053144 1 0 -malodorousness%1:07:00:: 04980656 1 0 -malodour%1:09:00:: 05714894 1 0 -malodourous%3:00:00:: 01053144 1 0 -malone%1:18:00:: 11152122 1 0 -malonylurea%1:27:00:: 14772716 1 0 -malope%1:20:00:: 12183452 1 0 -malope_trifida%1:20:00:: 12183452 1 0 -malopterurus%1:05:00:: 02518488 1 0 -malopterurus_electricus%1:05:00:: 02518622 1 0 -malory%1:18:00:: 11152331 1 0 -malosma%1:20:00:: 12760722 1 0 -malosma_laurina%1:20:00:: 12760875 1 0 -malpighi%1:18:00:: 11152544 1 0 -malpighia%1:20:00:: 12694193 1 0 -malpighia_glabra%1:20:00:: 12694486 1 0 -malpighia_obovata%1:20:00:: 12694336 1 0 -malpighiaceae%1:20:00:: 12694048 1 0 -malpighian_body%1:08:00:: 05247369 1 0 -malpighian_corpuscle%1:08:00:: 05247369 1 0 -malpighian_layer%1:08:00:: 05243704 1 0 -malposed%5:00:00:crooked:01 02313454 1 1 -malposed_tooth%1:08:00:: 05306604 1 0 -malposition%1:07:00:: 05079074 1 0 -malpractice%1:04:00:: 00742130 2 0 -malpractice%1:04:01:: 00742314 1 0 -malpractice_insurance%1:21:00:: 13348227 1 0 -malraux%1:18:00:: 11152758 1 0 -mals%1:10:00:: 06701128 1 0 -malt%1:13:01:: 07888909 3 0 -malt%1:13:02:: 07889274 2 0 -malt%1:13:03:: 07926642 1 0 -malt%2:30:00:: 00117624 4 0 -malt%2:30:01:: 00117878 2 0 -malt%2:30:02:: 00117757 3 0 -malt%2:30:03:: 00186001 1 0 -malt_liquor%1:13:00:: 07889274 1 0 -malt_sugar%1:27:00:: 14946618 1 0 -malt_whiskey%1:13:00:: 07907548 1 0 -malt_whisky%1:13:00:: 07907548 1 0 -malta%1:15:00:: 08966408 1 0 -malta%1:15:01:: 08966239 2 0 -malta_fever%1:26:00:: 14128029 1 0 -malted%1:13:00:: 07926642 1 0 -malted%3:44:00:: 03150301 1 0 -malted_milk%1:13:01:: 07926540 2 0 -malted_milk%1:13:02:: 07926642 1 0 -maltese%1:05:00:: 02085936 4 0 -maltese%1:05:01:: 02124157 3 0 -maltese%1:10:00:: 06988913 2 0 -maltese%1:18:00:: 09747618 1 0 -maltese%3:01:00:: 03083842 1 0 -maltese_cat%1:05:00:: 02124157 1 0 -maltese_cross%1:06:00:: 03716091 2 0 -maltese_cross%1:20:00:: 11811921 1 0 -maltese_dog%1:05:00:: 02085936 1 0 -maltese_language%1:10:00:: 06988913 1 0 -maltese_lira%1:23:00:: 13695189 1 0 -maltese_monetary_unit%1:23:00:: 13695081 1 0 -maltese_terrier%1:05:00:: 02085936 1 0 -maltha%1:27:00:: 14680836 1 0 -malthus%1:18:00:: 11152856 1 0 -malthusian%1:18:00:: 10286749 1 0 -malthusian%3:01:00:: 03084010 1 0 -malthusian_theory%1:09:00:: 05995726 1 0 -malthusianism%1:09:00:: 05995726 1 0 -malti%1:10:00:: 06988913 1 0 -maltman%1:18:00:: 10286855 1 0 -malto%1:10:00:: 06982487 2 0 -malto%1:18:00:: 09675156 1 0 -maltose%1:27:00:: 14946618 1 0 -maltreat%2:41:00:: 02516594 1 1 -maltreated%3:00:00:: 00017352 1 0 -maltreater%1:18:00:: 09758643 1 0 -maltreatment%1:04:00:: 00419908 1 0 -maltster%1:18:00:: 10286855 1 0 -malus%1:20:00:: 12633386 1 0 -malus_angustifolia%1:20:00:: 12635532 1 0 -malus_baccata%1:20:00:: 12634734 1 0 -malus_coronaria%1:20:00:: 12635151 1 0 -malus_fusca%1:20:00:: 12635359 1 0 -malus_ioensis%1:20:00:: 12635744 1 0 -malus_pumila%1:20:00:: 12633994 1 0 -malus_sylvestris%1:20:00:: 12634986 1 0 -malva%1:20:00:: 12170415 1 0 -malva_moschata%1:20:00:: 12171098 1 0 -malva_neglecta%1:20:00:: 12171316 1 0 -malva_sylvestris%1:20:00:: 12171503 1 0 -malvaceae%1:20:00:: 12169776 1 0 -malvales%1:20:00:: 12169526 1 0 -malvasia%1:20:00:: 13147689 1 0 -malvastrum%1:20:00:: 12183636 1 0 -malvastrum_coccineum%1:20:00:: 12187891 1 0 -malvaviscus%1:20:00:: 12183916 1 0 -malversate%2:40:00:: 02292535 1 0 -malversation%1:04:00:: 00735832 1 0 -malvina_hoffman%1:18:00:: 11054563 1 0 -mam%1:10:00:: 06925833 2 0 -mam%1:18:00:: 09660138 1 0 -mama%1:18:00:: 10278128 1 6 -mama%1:18:02:: 09519192 2 0 -mama's_boy%1:18:00:: 10333439 1 0 -mamba%1:05:00:: 01749582 1 0 -mambo%1:04:00:: 00538668 1 0 -mambo%2:38:00:: 01897489 1 0 -mamet%1:18:00:: 11153094 1 0 -mamey%1:13:00:: 07766530 2 0 -mamey%1:20:00:: 12370174 1 0 -mamilla%1:08:00:: 05554653 1 0 -mamillary_body%1:08:00:: 05228020 1 0 -mamma%1:08:00:: 05554189 2 0 -mamma%1:18:00:: 10278128 1 5 -mamma's_boy%1:18:00:: 10333439 1 0 -mammal%1:05:00:: 01861778 1 3 -mammal_family%1:05:00:: 01862557 1 0 -mammal_genus%1:05:00:: 01864707 1 0 -mammal_semnopithecus%1:05:00:: 02488149 1 0 -mammalia%1:05:00:: 01861465 1 0 -mammalian%1:05:00:: 01861778 1 0 -mammalian%3:01:00:: 02832272 1 2 -mammalogist%1:18:00:: 10286989 1 0 -mammalogy%1:09:00:: 06073215 1 0 -mammary%3:01:00:: 02893994 1 0 -mammary_gland%1:08:00:: 05554189 1 0 -mammea%1:20:00:: 12370011 1 0 -mammea_americana%1:20:00:: 12370174 1 0 -mammee%1:13:01:: 07766530 3 0 -mammee%1:13:02:: 07764486 4 0 -mammee%1:20:01:: 12370174 2 0 -mammee%1:20:02:: 12775919 1 0 -mammee_apple%1:13:00:: 07766530 2 0 -mammee_apple%1:20:00:: 12370174 1 0 -mammee_tree%1:20:00:: 12370174 1 0 -mammilla%1:08:00:: 05554653 1 0 -mammillaria%1:20:00:: 11849871 1 0 -mammillaria_plumosa%1:20:00:: 11849983 1 0 -mammillary_body%1:08:00:: 05228020 1 0 -mammogram%1:06:00:: 03716228 1 0 -mammography%1:04:00:: 01006188 1 0 -mammon%1:18:00:: 09491324 2 0 -mammon%1:26:00:: 14492634 1 0 -mammoth%1:05:00:: 02504770 1 0 -mammoth%5:00:01:large:00 01386538 1 1 -mammoth_cave_national_park%1:15:00:: 08607408 1 0 -mammothermography%1:04:00:: 01006536 1 0 -mammut%1:05:00:: 02505809 1 0 -mammut_americanum%1:05:00:: 02506248 1 0 -mammuthus%1:05:00:: 02504635 1 0 -mammuthus_columbi%1:05:00:: 02505238 1 0 -mammuthus_primigenius%1:05:00:: 02505063 1 0 -mammutidae%1:05:00:: 02505646 1 0 -mammy%1:18:00:: 10278128 2 0 -mammy%1:18:01:: 10287082 1 0 -mamo%1:05:00:: 01545010 1 0 -mamoncillo%1:20:00:: 12744850 1 0 -man%1:05:00:: 02472987 11 0 -man%1:05:01:: 02472293 4 29 -man%1:06:00:: 03716327 10 0 -man%1:15:00:: 08887716 9 0 -man%1:18:00:: 10287213 1 749 -man%1:18:03:: 10582746 2 346 -man%1:18:04:: 10289039 3 87 -man%1:18:05:: 10745332 7 0 -man%1:18:06:: 10288763 6 3 -man%1:18:07:: 10288516 8 0 -man%1:18:08:: 10289176 5 4 -man%2:33:00:: 01088547 2 0 -man%2:41:00:: 02420991 1 2 -man's_body%1:08:00:: 05220306 1 0 -man's_clothing%1:06:00:: 03746330 1 0 -man-about-town%1:18:00:: 10439727 1 0 -man-at-arms%1:18:00:: 10291469 1 0 -man-child%1:18:00:: 10285938 1 0 -man-eater%1:05:00:: 01484850 2 0 -man-eater%1:18:00:: 09891079 1 0 -man-eating_shark%1:05:00:: 01484850 1 0 -man-made%5:00:00:artificial:00 01573568 1 0 -man-made_fiber%1:27:00:: 14959058 1 0 -man-made_lake%1:06:00:: 04078747 1 0 -man-of-the-earth%1:20:01:: 12827907 2 0 -man-of-the-earth%1:20:02:: 12828379 1 0 -man-of-war%1:05:00:: 01913166 2 0 -man-of-war%1:06:00:: 03718212 1 1 -man-of-war_bird%1:05:00:: 02052775 1 0 -man-on-a-horse%1:20:00:: 13017789 1 0 -man-portable%5:00:00:portable:00 01525984 1 0 -man-sized%5:00:00:large:00 01389022 2 0 -man-sized%5:00:00:manly:00 01476046 1 0 -man-to-man%4:02:00:: 00058749 1 1 -man-to-man%5:00:00:direct:02 00765410 1 0 -man-to-man%5:00:00:individual:00 00494198 2 0 -man_and_wife%1:14:00:: 07989373 1 1 -man_friday%1:18:00:: 10531109 1 0 -man_hour%1:28:00:: 15230482 1 1 -man_in_the_street%1:18:00:: 10223744 1 1 -man_jack%1:18:00:: 10291730 1 0 -man_of_action%1:18:00:: 10291822 1 0 -man_of_affairs%1:18:00:: 09882007 1 1 -man_of_deeds%1:18:00:: 10291822 1 0 -man_of_letters%1:18:00:: 10291942 1 1 -man_of_means%1:18:00:: 10292052 1 0 -man_of_the_cloth%1:18:00:: 09927451 1 0 -man_of_the_world%1:18:00:: 10625285 1 0 -manacle%1:06:00:: 03484576 1 0 -manacle%2:35:00:: 01288201 1 0 -manage%2:35:03:: 01224415 7 0 -manage%2:41:00:: 02436349 2 5 -manage%2:41:01:: 02443049 4 3 -manage%2:41:02:: 02523221 6 0 -manage%2:41:03:: 02587532 3 3 -manage%2:41:08:: 02527431 5 2 -manage%2:41:09:: 02522864 1 27 -manageability%1:07:00:: 04905546 1 0 -manageable%3:00:00:: 01474513 1 0 -manageable%5:00:00:possible:00 01821690 2 0 -manageableness%1:07:00:: 04905546 1 0 -manageably%4:02:00:: 00390290 1 0 -managed_economy%1:14:00:: 08367100 1 0 -management%1:04:00:: 01133281 1 19 -management%1:14:00:: 08381165 2 8 -management_consultant%1:18:00:: 10289338 1 0 -management_consulting%1:14:00:: 08073844 1 0 -management_control%1:04:00:: 00806366 1 0 -management_personnel%1:14:00:: 08440499 1 2 -manager%1:18:00:: 10014939 1 29 -manager%1:18:01:: 09931640 2 21 -manageress%1:18:00:: 10289462 1 0 -managerial%3:01:00:: 02904223 1 0 -managerially%4:02:00:: 00395038 1 0 -managership%1:04:00:: 00594836 1 0 -managing_director%1:18:00:: 10014939 1 0 -managing_editor%1:18:00:: 10289534 1 1 -managua%1:15:00:: 08739047 1 0 -manakin%1:05:00:: 01551711 3 0 -manakin%1:06:00:: 03717921 2 0 -manakin%1:18:01:: 10291240 1 0 -manama%1:15:00:: 08848568 1 0 -manana%1:28:00:: 15263925 1 0 -manannan%1:18:00:: 09510419 1 0 -manassa_mauler%1:18:00:: 10930591 1 0 -manat%1:23:00:: 13699747 2 0 -manat%1:23:01:: 13702840 1 0 -manatee%1:05:00:: 02073831 1 0 -manawydan%1:18:00:: 09510527 1 0 -manawyddan%1:18:00:: 09510527 1 0 -manchester%1:15:00:: 08876975 2 1 -manchester%1:15:01:: 09111955 1 11 -manchester_terrier%1:05:00:: 02094721 1 0 -manchu%1:10:00:: 06928744 3 0 -manchu%1:14:00:: 08157405 2 0 -manchu%1:18:00:: 09737653 1 0 -manchu_dynasty%1:14:00:: 08157405 1 0 -manchuria%1:15:00:: 08722844 1 0 -manchurian%3:01:00:: 02969060 1 0 -mancunian%1:18:00:: 09704876 1 0 -mancunian%3:01:00:: 03084196 1 0 -manda%1:10:00:: 06981187 1 0 -mandaean%1:10:00:: 06988808 2 0 -mandaean%1:18:00:: 10290223 1 0 -mandaean%3:01:00:: 02758750 1 0 -mandaeanism%1:09:00:: 06223204 1 0 -mandala%1:06:00:: 03716656 1 0 -mandalay%1:15:00:: 08715952 1 0 -mandamus%1:10:00:: 06554675 1 1 -mandara%1:10:00:: 06984101 1 0 -mandarin%1:10:00:: 06930093 6 0 -mandarin%1:13:00:: 07747951 5 0 -mandarin%1:18:00:: 10289671 4 0 -mandarin%1:18:01:: 10289766 3 0 -mandarin%1:18:02:: 10289863 2 0 -mandarin%1:20:00:: 12709901 1 0 -mandarin_chinese%1:10:00:: 06930093 1 0 -mandarin_dialect%1:10:00:: 06930093 1 0 -mandarin_duck%1:05:00:: 01852400 1 0 -mandarin_orange%1:13:00:: 07747951 2 0 -mandarin_orange%1:20:00:: 12709901 1 0 -mandarin_orange_tree%1:20:00:: 12709901 1 0 -mandatary%1:18:00:: 10289969 1 0 -mandate%1:04:00:: 01140658 3 0 -mandate%1:10:00:: 06556481 1 1 -mandate%1:15:00:: 08597727 2 0 -mandate%2:32:00:: 00751279 3 0 -mandate%2:32:02:: 00751389 2 0 -mandate%2:41:00:: 02395603 1 1 -mandator%1:18:00:: 10290099 1 0 -mandatorily%4:02:00:: 00288655 1 0 -mandatory%1:15:00:: 08597727 2 0 -mandatory%1:18:00:: 10289969 1 0 -mandatory%5:00:00:obligatory:00 00848466 1 3 -mandatory_injunction%1:10:00:: 06543246 1 0 -mande%1:10:00:: 06997012 1 0 -mandean%1:10:00:: 06988808 2 0 -mandean%1:18:00:: 10290223 1 0 -mandean%3:01:00:: 02758750 1 0 -mandeanism%1:09:00:: 06223204 1 0 -mandela%1:18:00:: 11153200 1 0 -mandelamine%1:06:00:: 03755140 1 0 -mandelbrot%1:18:00:: 11153456 1 0 -mandelbrot_set%1:14:00:: 08001441 1 0 -mandelshtam%1:18:00:: 11153615 1 0 -mandelstam%1:18:00:: 11153615 1 0 -mandevilla%1:20:00:: 11773138 1 0 -mandevilla_boliviensis%1:20:00:: 11773408 1 0 -mandevilla_laxa%1:20:00:: 11773628 1 0 -mandible%1:08:00:: 05275905 1 0 -mandibula%1:08:00:: 05275905 1 0 -mandibular%3:01:00:: 02877910 1 0 -mandibular_bone%1:08:00:: 05275905 1 0 -mandibular_condyle%1:08:00:: 05471837 1 0 -mandibular_fossa%1:08:00:: 05280154 1 0 -mandibular_gland%1:08:00:: 05533635 1 0 -mandibular_joint%1:08:00:: 05276668 1 0 -mandibular_notch%1:08:00:: 05233741 1 0 -mandibulate%3:01:00:: 02758935 1 0 -mandibulofacial%3:01:00:: 02878045 1 0 -mandioc%1:20:00:: 12926689 1 0 -mandioca%1:20:00:: 12926689 1 0 -mandola%1:06:00:: 03716887 1 0 -mandolin%1:06:00:: 03716966 1 0 -mandragora%1:20:00:: 12906334 1 0 -mandragora_officinarum%1:20:00:: 12906498 1 0 -mandrake%1:20:01:: 12906498 2 0 -mandrake%1:20:02:: 12906771 1 0 -mandrake_root%1:20:00:: 12906771 1 0 -mandrel%1:06:00:: 04277493 1 0 -mandril%1:06:00:: 04277493 1 0 -mandrill%1:05:00:: 02486908 1 0 -mandrillus%1:05:00:: 02486787 1 0 -mandrillus_leucophaeus%1:05:00:: 02487079 1 0 -mandrillus_sphinx%1:05:00:: 02486908 1 0 -manduca%1:05:00:: 02298833 1 0 -manduca_quinquemaculata%1:05:01:: 02299378 2 0 -manduca_quinquemaculata%1:05:02:: 02299505 1 0 -manduca_sexta%1:05:01:: 02299039 2 0 -manduca_sexta%1:05:02:: 02299157 1 0 -manducate%2:34:00:: 01201089 1 0 -manduction%1:04:00:: 00278810 2 0 -manduction%1:04:01:: 01036333 1 0 -mane%1:05:00:: 01899746 1 1 -mane%1:08:01:: 05256085 2 0 -maned_sheep%1:05:00:: 02416104 1 0 -maned_wolf%1:05:00:: 02114712 1 0 -manes%1:18:00:: 11153783 1 0 -manet%1:18:00:: 11153887 1 0 -maneuver%1:04:00:: 00168237 4 0 -maneuver%1:04:01:: 00059552 5 0 -maneuver%1:04:02:: 00959992 1 5 -maneuver%1:04:03:: 00556313 3 0 -maneuver%1:09:00:: 05905152 2 0 -maneuver%2:33:00:: 01109863 3 0 -maneuver%2:38:00:: 01931768 1 5 -maneuver%2:41:03:: 02369390 2 0 -maneuverability%1:07:00:: 04774198 1 1 -maneuverable%5:00:00:mobile:00 01523249 1 0 -maneuverer%1:18:00:: 10290422 1 0 -manfred_eigen%1:18:00:: 10954180 1 0 -manful%3:00:00:: 01475831 1 0 -manful%5:00:00:masculine:01 01483677 2 0 -manfully%4:02:00:: 00390576 1 0 -manfulness%1:07:00:: 04666837 1 1 -mangabey%1:05:00:: 02485988 1 0 -manganate%1:27:00:: 14947445 1 0 -manganese%1:27:00:: 14644654 1 0 -manganese_bronze%1:27:00:: 14947125 1 0 -manganese_steel%1:27:00:: 14947255 1 0 -manganese_tetroxide%1:27:00:: 14680963 1 0 -manganic_acid%1:27:00:: 14615006 1 0 -manganite%1:27:00:: 14681100 1 0 -mange%1:26:00:: 14274217 1 0 -mangel-wurzel%1:13:00:: 07720185 2 0 -mangel-wurzel%1:20:00:: 11832899 1 0 -manger%1:06:00:: 03717131 1 0 -mangey%5:00:00:worn:00 02582269 1 0 -mangifera%1:20:00:: 12761123 1 0 -mangifera_indica%1:20:00:: 12761284 1 0 -mangily%4:02:00:: 00395119 1 0 -manginess%1:07:00:: 04816761 1 0 -mangle%1:06:00:: 03717285 1 0 -mangle%2:30:00:: 00292672 4 0 -mangle%2:30:01:: 00548750 3 0 -mangle%2:35:01:: 01390486 1 0 -mangle%2:35:02:: 01232098 2 0 -mangled%5:00:00:injured:00 01318937 1 1 -mangler%1:18:00:: 10341955 1 0 -manglietia%1:20:00:: 11711971 1 0 -mango%1:13:00:: 07764155 2 0 -mango%1:20:00:: 12761284 1 0 -mango_tree%1:20:00:: 12761284 1 0 -mangold%1:20:00:: 11832899 1 0 -mangold-wurzel%1:20:00:: 11832899 1 0 -mangonel%1:06:00:: 02981911 1 0 -mangosteen%1:13:00:: 07763987 2 0 -mangosteen%1:20:00:: 12366675 1 0 -mangosteen_tree%1:20:00:: 12366675 1 0 -mangrove%1:20:00:: 12345899 1 0 -mangrove_family%1:20:00:: 12345495 1 0 -mangrove_snapper%1:05:00:: 02587300 1 0 -mangy%5:00:00:worn:00 02582269 1 0 -manhandle%2:35:00:: 01412089 1 0 -manhattan%1:13:00:: 07915618 2 0 -manhattan%1:15:00:: 09120594 1 6 -manhattan_clam_chowder%1:13:00:: 07587819 1 0 -manhattan_island%1:15:00:: 09116709 1 0 -manhattan_project%1:04:00:: 00820232 2 0 -manhattan_project%1:14:00:: 08122768 1 0 -manhole%1:06:00:: 03717447 1 0 -manhole_cover%1:06:00:: 03717622 1 0 -manhood%1:04:00:: 00594953 3 0 -manhood%1:07:00:: 04726938 2 0 -manhood%1:26:00:: 14425319 1 2 -manhunt%1:04:00:: 00946529 1 0 -mania%1:16:00:: 09181557 1 2 -mania%1:26:00:: 14391660 2 0 -maniac%1:18:00:: 10276764 1 4 -maniac%1:18:01:: 10290541 2 0 -maniac%5:00:00:insane:00 02076416 1 0 -maniacal%5:00:00:insane:00 02076416 1 2 -maniacally%4:02:00:: 00395190 1 0 -manic%5:00:00:wild:02 02391003 1 2 -manic-depressive%1:18:00:: 10290684 1 1 -manic-depressive%5:00:00:insane:00 02076557 1 0 -manic-depressive_psychosis%1:26:00:: 14392639 1 0 -manic_depression%1:26:00:: 14392639 1 0 -manic_depressive_illness%1:26:00:: 14392639 1 0 -manic_disorder%1:26:00:: 14391660 1 0 -manichaean%1:18:00:: 10290813 1 0 -manichaean%3:01:00:: 02759009 2 0 -manichaean%3:01:01:: 02947252 1 0 -manichaeanism%1:09:00:: 06243575 1 0 -manichaeism%1:09:00:: 06243575 1 0 -manichean%1:18:00:: 10290813 1 0 -manichean%3:01:00:: 02759009 1 0 -manichee%1:18:00:: 10290813 1 0 -manichee%3:01:00:: 02759009 1 0 -maniclike%5:00:00:insane:00 02076713 1 1 -manicotti%1:13:00:: 07701457 1 0 -manicure%1:04:00:: 00660783 1 0 -manicure%2:29:00:: 00042479 2 0 -manicure%2:29:01:: 00042641 1 0 -manicure_set%1:14:00:: 07997486 1 0 -manicurist%1:18:00:: 10290919 1 0 -manidae%1:05:00:: 02461556 1 0 -manifest%1:10:00:: 06501918 1 0 -manifest%2:30:00:: 00423075 3 0 -manifest%2:32:00:: 00820976 1 9 -manifest%2:32:01:: 01000878 2 0 -manifest%5:00:00:obvious:00 01618376 1 0 -manifest_destiny%1:10:00:: 06662057 1 0 -manifestation%1:04:00:: 01177703 5 0 -manifestation%1:10:00:: 06798558 2 3 -manifestation%1:10:01:: 06880249 4 0 -manifestation%1:11:00:: 07323231 1 6 -manifestation%1:11:01:: 07323024 3 0 -manifestly%4:02:00:: 00039318 1 1 -manifesto%1:10:00:: 06727224 1 0 -manifold%1:06:00:: 03717750 1 11 -manifold%1:14:00:: 08004548 3 0 -manifold%1:27:00:: 14946750 2 0 -manifold%2:30:00:: 00247702 1 0 -manifold%2:30:01:: 00247390 2 0 -manifold%5:00:00:multiple:00 02218314 1 1 -manifold_paper%1:27:00:: 14946750 1 0 -manihot%1:20:00:: 12926316 1 0 -manihot_dulcis%1:20:00:: 12927194 1 0 -manihot_esculenta%1:20:00:: 12926689 1 0 -manihot_utilissima%1:20:00:: 12926689 1 0 -manikin%1:06:00:: 03717921 3 0 -manikin%1:18:00:: 10291580 1 0 -manikin%1:18:01:: 10291240 2 0 -manila%1:15:00:: 08981746 2 0 -manila%1:27:00:: 14946939 1 0 -manila_bay%1:04:00:: 01286181 1 0 -manila_bean%1:20:00:: 12564083 1 0 -manila_grass%1:20:00:: 12146488 1 0 -manila_hemp%1:20:00:: 12353431 2 0 -manila_hemp%1:27:00:: 14947558 1 0 -manila_maguey%1:20:00:: 12478131 1 0 -manila_paper%1:27:00:: 14946939 1 0 -manila_tamarind%1:20:00:: 11764478 1 0 -manilkara%1:20:00:: 12774127 1 0 -manilkara_bidentata%1:20:00:: 12774299 1 0 -manilkara_zapota%1:20:00:: 12774641 1 0 -manilla%1:27:00:: 14946939 1 0 -manilla_hemp%1:27:00:: 14947558 1 0 -manilla_paper%1:27:00:: 14946939 1 0 -manioc%1:20:00:: 12926689 3 0 -manioc%1:20:02:: 12927013 2 0 -manioc%1:27:00:: 14761578 1 0 -manioca%1:27:00:: 14761578 1 0 -manipulability%1:07:00:: 04774365 1 0 -manipulable%3:00:00:: 02451113 1 0 -manipulate%2:29:00:: 00080929 6 0 -manipulate%2:35:00:: 01211699 2 3 -manipulate%2:37:00:: 01803936 5 0 -manipulate%2:40:00:: 02351239 4 0 -manipulate%2:41:00:: 02536329 1 5 -manipulate%2:41:01:: 02576921 3 0 -manipulation%1:04:00:: 00158185 1 1 -manipulation%1:04:01:: 00140652 2 0 -manipulative%5:00:00:artful:00 00149461 1 0 -manipulative_electronic_deception%1:04:00:: 01251489 1 0 -manipulatively%4:02:00:: 00395335 1 0 -manipulator%1:18:00:: 10378412 1 0 -manipulator%1:18:01:: 10291110 2 0 -manipur%1:15:00:: 08902321 1 0 -maniraptor%1:05:00:: 01717016 1 0 -maniraptora%1:05:00:: 01716732 1 0 -manis%1:05:00:: 02461701 1 0 -manitoba%1:15:00:: 08823968 1 0 -mankato%1:15:00:: 09102781 1 0 -mankind%1:05:00:: 02472987 1 0 -manky%5:00:00:worthless:00 02502901 1 0 -manlike%3:00:00:: 01475831 1 0 -manlike%5:00:00:human:00 01259015 3 0 -manlike%5:00:00:masculine:01 01483677 2 0 -manliness%1:07:00:: 04666837 1 0 -manly%3:00:00:: 01475831 1 0 -manly%4:02:00:: 00390576 1 0 -manly%5:00:00:masculine:01 01483677 2 0 -mann%1:18:00:: 11154023 2 0 -mann%1:18:01:: 11154174 1 0 -manna%1:13:00:: 07860629 2 0 -manna%1:20:00:: 12311800 1 0 -manna_ash%1:20:00:: 12305293 1 0 -manna_from_heaven%1:11:00:: 07477587 2 0 -manna_from_heaven%1:13:00:: 07860629 1 0 -manna_grass%1:20:00:: 12122245 1 0 -manna_gum%1:20:00:: 12338979 1 0 -manna_lichen%1:20:00:: 12988341 1 0 -manned%3:00:00:: 01479805 1 3 -mannequin%1:06:00:: 03717921 2 0 -mannequin%1:18:00:: 10291240 1 0 -manner%1:07:01:: 04910135 2 17 -manner%1:07:02:: 04928903 1 49 -manner%1:09:01:: 05845562 3 7 -manner_name%1:10:00:: 06304425 1 0 -manner_of_speaking%1:10:00:: 07071483 1 0 -manner_of_walking%1:07:00:: 05003090 1 0 -mannered%5:00:00:affected:01 00074094 1 0 -mannerism%1:04:00:: 00755673 2 0 -mannerism%1:07:00:: 04764242 1 0 -mannerly%5:00:00:polite:00 00641343 1 0 -manners%1:07:00:: 04898087 1 5 -mannheim%1:15:00:: 08774073 1 0 -mannikin%1:06:00:: 03717921 3 0 -mannikin%1:18:00:: 10291580 1 0 -mannikin%1:18:01:: 10291240 2 0 -mannish%5:00:00:masculine:01 01483950 2 0 -mannish%5:00:00:unwomanly:00 01485828 1 0 -mannitol%1:06:00:: 03718056 1 0 -manoeuver%2:33:00:: 01109863 3 0 -manoeuver%2:38:00:: 01931768 2 0 -manoeuver%2:41:00:: 02369390 1 0 -manoeuvrability%1:07:00:: 04774198 1 0 -manoeuvrable%5:00:00:mobile:00 01523249 1 0 -manoeuvre%1:04:00:: 00168237 4 0 -manoeuvre%1:04:01:: 00059552 5 0 -manoeuvre%1:04:02:: 00959992 2 0 -manoeuvre%1:04:03:: 00556313 3 0 -manoeuvre%1:09:00:: 05905152 1 0 -manoeuvre%2:33:00:: 01109863 3 0 -manoeuvre%2:38:00:: 01931768 2 0 -manoeuvre%2:41:03:: 02369390 1 0 -manoeuvrer%1:18:00:: 10290422 1 0 -manometer%1:06:00:: 03718335 1 6 -manor%1:06:00:: 03718458 1 1 -manor%1:21:00:: 13252168 2 0 -manor_hall%1:06:00:: 03718581 1 0 -manor_house%1:06:00:: 03718458 1 2 -manorial%3:01:00:: 03084397 1 0 -manpad%1:06:00:: 03718699 1 0 -manpower%1:14:00:: 08212347 1 4 -manque%5:00:00:ambitious:00 00104825 1 0 -manroot%1:20:00:: 12827907 1 0 -mansard%1:06:00:: 03718789 1 0 -mansard%5:00:00:hipped:02 01221875 1 0 -mansard_roof%1:06:00:: 03718789 1 0 -mansart%1:18:00:: 11154355 1 0 -manse%1:06:00:: 03718935 2 0 -manse%1:06:01:: 03719053 1 1 -manservant%1:18:00:: 10292192 1 1 -mansfield%1:15:00:: 09131324 2 0 -mansfield%1:18:00:: 11154489 1 0 -mansi%1:10:00:: 06959140 2 0 -mansi%1:18:00:: 09708118 1 0 -mansion%1:06:00:: 03719053 2 0 -mansion%1:15:00:: 08685677 1 0 -mansion_house%1:06:00:: 03719053 1 0 -manslaughter%1:04:00:: 00220409 1 0 -manslayer%1:18:00:: 10338707 1 0 -manson%1:18:00:: 11154646 1 0 -manta%1:05:00:: 01500091 2 0 -manta%1:06:00:: 03719249 1 0 -manta_birostris%1:05:00:: 01500476 1 0 -manta_ray%1:05:00:: 01500091 1 0 -mantegna%1:18:00:: 11154857 1 0 -manteidae%1:05:00:: 02235761 1 0 -mantel%1:06:00:: 03719343 1 2 -mantelet%1:06:00:: 03719560 2 0 -mantelet%1:06:01:: 03719650 1 0 -mantell%1:18:00:: 11155013 1 0 -mantelpiece%1:06:00:: 03719343 1 0 -manteodea%1:05:00:: 02235575 1 0 -mantic%5:00:00:prophetic:00 01882754 1 1 -mantichora%1:18:00:: 09498301 1 0 -manticora%1:18:00:: 09498301 1 0 -manticore%1:18:00:: 09498301 1 0 -mantid%1:05:00:: 02236044 1 0 -mantidae%1:05:00:: 02235761 1 0 -mantiger%1:18:00:: 09498301 1 0 -mantilla%1:06:00:: 03719743 1 0 -mantilla%1:06:02:: 03719560 2 0 -mantinea%1:04:00:: 01286393 1 0 -mantineia%1:04:00:: 01286393 1 0 -mantis%1:05:00:: 02236044 1 0 -mantis_crab%1:05:00:: 01990007 1 0 -mantis_prawn%1:05:00:: 01990516 1 0 -mantis_religioso%1:05:00:: 02236241 1 0 -mantis_shrimp%1:05:00:: 01990007 1 0 -mantispid%1:05:00:: 02267483 1 0 -mantispidae%1:05:00:: 02267356 1 0 -mantissa%1:10:00:: 06813115 1 0 -mantle%1:06:00:: 02955767 8 0 -mantle%1:06:01:: 03151077 7 0 -mantle%1:06:02:: 03719343 6 0 -mantle%1:08:00:: 05244045 5 0 -mantle%1:10:00:: 06883956 1 1 -mantle%1:17:00:: 09346450 3 0 -mantle%1:17:01:: 09223725 4 0 -mantle%1:18:00:: 11155196 2 0 -mantle%2:35:00:: 01605404 2 0 -mantle%2:38:00:: 02085320 1 0 -mantled%5:00:00:covered:00 01695505 1 0 -mantled_ground_squirrel%1:05:00:: 02358390 1 0 -mantlepiece%1:06:00:: 03719343 1 0 -mantlet%1:06:00:: 03719650 1 0 -mantophasmatodea%1:05:00:: 02161737 1 0 -mantoux_test%1:09:00:: 05746163 1 0 -mantra%1:10:00:: 06466479 2 0 -mantra%1:10:01:: 07152590 1 0 -mantrap%1:06:00:: 03719826 2 0 -mantrap%1:18:00:: 10613996 1 1 -mantua%1:06:00:: 03719911 1 0 -manual%1:04:00:: 00895135 2 0 -manual%1:10:00:: 06421685 1 2 -manual%3:00:00:: 00182843 2 0 -manual%3:01:00:: 02759190 1 0 -manual%5:00:00:blue-collar:00 02557023 3 0 -manual_alphabet%1:10:00:: 06500765 1 0 -manual_dexterity%1:09:00:: 05642815 1 0 -manual_labor%1:04:00:: 00623162 1 1 -manual_laborer%1:18:00:: 10241300 1 0 -manual_labour%1:04:00:: 00623162 1 0 -manual_of_arms%1:04:00:: 00895135 1 0 -manually%4:02:00:: 00124702 1 0 -manubrium%1:08:00:: 05281584 1 0 -manuel_de_falla%1:18:00:: 10965836 1 0 -manuel_rodriquez_patriotic_front%1:14:00:: 08033829 1 0 -manufactory%1:06:00:: 03316406 1 0 -manufacture%1:04:00:: 00923444 1 2 -manufacture%1:04:01:: 00924825 2 0 -manufacture%2:36:00:: 01653442 1 3 -manufacture%2:36:01:: 01634424 2 1 -manufacture%2:36:02:: 01758696 4 0 -manufacture%2:36:03:: 01758882 3 0 -manufactured%5:00:00:factory-made:00 00675368 1 2 -manufactured_home%1:06:00:: 03776460 1 0 -manufacturer%1:14:00:: 08060446 1 16 -manufacturer%1:18:00:: 10292316 2 4 -manufacturing%1:04:00:: 00924825 1 2 -manufacturing_business%1:14:00:: 08060446 1 0 -manufacturing_plant%1:06:00:: 03316406 1 0 -manul%1:05:00:: 02126787 1 0 -manumission%1:04:00:: 01247807 1 1 -manumit%2:41:00:: 02496498 1 0 -manumitter%1:18:00:: 10051026 1 0 -manure%1:27:00:: 14863521 1 4 -manure%2:38:00:: 02083087 1 0 -manus%1:08:00:: 05564590 1 0 -manuscript%1:10:00:: 06406979 1 2 -manuscript%1:10:01:: 06407221 2 0 -manx%1:05:00:: 02124484 2 0 -manx%1:10:00:: 06961221 1 0 -manx%3:01:00:: 03084548 1 0 -manx_cat%1:05:00:: 02124484 1 0 -manx_shearwater%1:05:00:: 02060569 1 0 -many%3:00:00:: 01551633 1 347 -many-chambered%5:00:00:divided:00 02481870 1 0 -many-lobed%5:00:00:multilateral:00 00239668 1 0 -many-sided%3:00:04:: 00237240 1 0 -many-sided%5:00:00:colorful:03 00407654 3 0 -many-sided%5:00:00:varied:00 02506922 2 0 -many_a%5:00:00:many:00 01552255 1 6 -many_an%5:00:00:many:00 01552255 1 0 -many_another%5:00:00:many:00 01552255 1 2 -manzanilla%1:13:00:: 07901176 1 0 -manzanita%1:20:01:: 12231918 1 1 -manzanita%1:20:02:: 12230540 2 1 -manzoni%1:18:00:: 11155331 1 0 -mao%1:18:00:: 11155444 2 0 -mao%1:27:00:: 14953968 1 0 -mao_jacket%1:06:00:: 03720005 1 0 -mao_tsetung%1:18:00:: 11155444 1 0 -mao_zedong%1:18:00:: 11155444 1 0 -maoi%1:06:00:: 03783017 1 0 -maoism%1:09:00:: 06215495 1 0 -maoist%1:18:00:: 10292622 1 0 -maoist%3:01:00:: 02759290 1 0 -maori%1:10:00:: 06938386 2 0 -maori%1:14:00:: 08484239 1 0 -maori_hen%1:05:00:: 02015357 1 0 -map%1:06:00:: 03720163 1 7 -map%1:24:00:: 13783816 2 0 -map%2:30:00:: 00380698 6 0 -map%2:31:01:: 00710606 2 1 -map%2:36:00:: 01687876 1 3 -map%2:36:01:: 01688114 5 0 -map%2:36:03:: 01756149 4 0 -map%2:42:00:: 02695709 3 0 -map-reader%1:18:00:: 10292714 1 0 -map_collection%1:10:00:: 06427086 1 0 -map_maker%1:18:00:: 09898215 1 0 -map_out%2:36:03:: 01756149 1 1 -map_projection%1:06:00:: 03720443 1 0 -mapinguari%1:05:00:: 02459636 1 0 -maple%1:20:00:: 12752205 2 1 -maple%1:20:02:: 12752666 1 2 -maple-leaf%1:10:00:: 06883383 1 0 -maple-leaf_begonia%1:20:00:: 12361350 1 0 -maple-leaved_bayur%1:20:00:: 12200905 1 0 -maple-like%5:00:00:branchy:00 00614200 1 0 -maple_family%1:20:00:: 12751823 1 0 -maple_sugar%1:27:00:: 14947702 1 0 -maple_syrup%1:13:00:: 07860447 1 0 -maple_syrup_urine_disease%1:26:00:: 14159887 1 0 -maplelike%5:00:00:branchy:00 00614200 1 0 -mapmaking%1:04:00:: 00924579 1 0 -mapper%1:18:00:: 10442573 1 0 -mapping%1:04:00:: 01024643 2 0 -mapping%1:24:00:: 13783816 1 0 -mapquest%1:10:00:: 06578527 1 0 -mapquest%2:31:00:: 00649033 1 0 -maputo%1:15:00:: 08971554 1 0 -maquiladora%1:06:00:: 03720665 1 0 -maquis%1:14:00:: 08360849 2 0 -maquis%1:18:00:: 10292824 1 0 -maquisard%1:18:00:: 10292824 1 0 -mar%1:07:00:: 04692157 2 0 -mar%1:28:00:: 15210870 1 0 -mar%2:29:00:: 00090708 2 0 -mar%2:30:00:: 00477941 1 6 -mara%1:05:00:: 02365108 2 0 -mara%1:18:00:: 09526913 1 0 -marabou%1:05:01:: 02003204 1 0 -marabou%1:05:02:: 01897851 2 0 -marabou_stork%1:05:00:: 02003204 1 0 -marabout%1:05:00:: 02003204 1 0 -maraca%1:06:00:: 03720891 1 0 -maracaibo%1:15:00:: 09162803 1 0 -maracan_language%1:10:00:: 06917392 1 0 -maracay%1:15:00:: 09162955 1 0 -maraco%1:10:00:: 06917392 2 0 -maraco%1:18:00:: 09695379 1 0 -marang%1:13:00:: 07766723 2 0 -marang%1:20:00:: 12400924 1 0 -marang_tree%1:20:00:: 12400924 1 0 -maranta%1:20:00:: 12351600 1 0 -maranta_arundinaceae%1:20:00:: 12351790 1 0 -marantaceae%1:20:00:: 12351287 1 0 -marasca%1:20:00:: 12644057 2 0 -marasca%1:20:02:: 12644283 1 0 -marasca_cherry%1:20:00:: 12644057 1 0 -maraschino%1:13:01:: 07620689 2 0 -maraschino%1:13:02:: 07910379 1 0 -maraschino_cherry%1:13:00:: 07620689 2 0 -maraschino_cherry%1:20:00:: 12644057 1 0 -maraschino_liqueur%1:13:00:: 07910379 1 0 -marasmius%1:20:00:: 13006741 1 0 -marasmius_oreades%1:20:00:: 13006894 1 0 -marasmus%1:26:00:: 14200098 1 0 -marat%1:18:00:: 11155577 1 0 -maratha%1:18:00:: 09676374 1 0 -marathi%1:10:00:: 06971281 1 0 -marathon%1:04:00:: 00797361 1 1 -marathon%1:04:01:: 01286569 3 0 -marathon%1:11:00:: 07460546 2 0 -marathon_runner%1:18:00:: 10292969 1 0 -marathoner%1:18:00:: 10292969 1 0 -marattia%1:20:00:: 13215063 1 0 -marattia_salicina%1:20:00:: 13215258 1 0 -marattiaceae%1:20:00:: 13214813 1 0 -marattiales%1:20:00:: 13214645 1 0 -maraud%1:04:00:: 00976953 1 0 -maraud%2:38:00:: 02020237 1 0 -marauder%1:18:00:: 10293172 1 0 -marauding%5:00:00:offensive:03 01629832 1 0 -maravilla%1:20:01:: 11840246 2 0 -maravilla%1:20:02:: 11840476 1 0 -marble%1:06:00:: 03721047 2 2 -marble%1:06:01:: 03721169 3 0 -marble%1:27:00:: 14947807 1 8 -marble%2:36:00:: 01681492 1 0 -marble-wood%1:20:00:: 12770892 2 0 -marble-wood%1:20:02:: 12771085 1 0 -marble_bones_disease%1:26:00:: 14210119 1 0 -marble_cake%1:13:00:: 07634406 1 0 -marbled%5:00:00:patterned:00 01789117 1 0 -marbleisation%1:07:00:: 04951186 1 0 -marbleise%2:30:00:: 00523436 1 0 -marbleised%5:00:00:patterned:00 01789117 1 0 -marbleising%1:07:00:: 04951186 1 0 -marbleization%1:07:00:: 04951186 1 0 -marbleize%2:30:00:: 00523436 1 0 -marbleized%5:00:00:patterned:00 01789117 1 1 -marbleizing%1:07:00:: 04951186 1 1 -marbles%1:04:00:: 00486358 1 2 -marbles%1:09:00:: 05622196 2 0 -marblewood%1:20:00:: 12770892 2 0 -marblewood%1:20:02:: 12771085 1 0 -marbling%1:13:00:: 07672583 1 0 -marburg_disease%1:26:00:: 14265722 1 0 -marburg_hemorrhagic_fever%1:26:00:: 14265722 1 0 -marburg_virus%1:05:00:: 01332181 1 0 -marc%1:13:00:: 07904190 1 0 -marc_blitzstein%1:18:00:: 10853244 1 0 -marc_chagall%1:18:00:: 10889533 1 0 -marceau%1:18:00:: 11155814 1 0 -marcel%1:08:00:: 05259991 1 0 -marcel%2:29:00:: 00039385 1 0 -marcel_duchamp%1:18:00:: 10944238 1 0 -marcel_lajos_breuer%1:18:00:: 10863717 1 0 -marcel_marceau%1:18:00:: 11155814 1 0 -marcel_proust%1:18:00:: 11247298 1 0 -marcello_malpighi%1:18:00:: 11152544 1 0 -march%1:04:00:: 00290579 2 14 -march%1:04:02:: 00282840 3 3 -march%1:10:00:: 06700844 7 0 -march%1:10:01:: 07058296 6 0 -march%1:14:00:: 08428019 4 2 -march%1:15:00:: 08513163 5 0 -march%1:28:00:: 15210870 1 16 -march%2:35:00:: 01466978 7 0 -march%2:38:00:: 01919391 3 5 -march%2:38:01:: 01996735 1 24 -march%2:38:03:: 01924712 5 1 -march%2:38:04:: 02084380 2 5 -march%2:38:10:: 02084587 6 0 -march%2:41:00:: 02521816 4 1 -march_17%1:28:00:: 15187988 1 0 -march_19%1:28:00:: 15194739 1 0 -march_2%1:28:00:: 15187800 1 0 -march_25%1:28:00:: 15186147 1 0 -march_equinox%1:28:00:: 15223574 1 0 -march_king%1:18:00:: 11308988 1 0 -march_on%2:38:00:: 01992503 1 3 -march_out%2:38:00:: 02083923 1 0 -marchand_de_vin%1:13:00:: 07831821 1 0 -marchantia%1:20:00:: 11543792 1 0 -marchantia_polymorpha%1:20:00:: 11544015 1 0 -marchantiaceae%1:20:00:: 11543602 1 0 -marchantiales%1:20:00:: 11543429 1 0 -marche%1:15:00:: 08809384 1 0 -marched_upon%3:44:00:: 03150569 1 1 -marcher%1:18:00:: 10204921 3 0 -marcher%1:18:01:: 10293332 2 0 -marcher%1:18:02:: 10293502 1 0 -marches%1:15:00:: 08809384 1 0 -marching%1:04:00:: 00290579 1 1 -marching_band%1:14:00:: 08249207 1 0 -marching_music%1:10:00:: 07058296 1 0 -marching_order%1:06:00:: 03721252 1 0 -marching_orders%1:10:00:: 07168983 2 0 -marching_orders%1:10:01:: 07276414 1 0 -marchioness%1:18:00:: 10293590 2 0 -marchioness%1:18:01:: 10293773 1 0 -marchland%1:15:00:: 08513163 1 0 -marchpane%1:13:00:: 07608245 1 0 -marciano%1:18:00:: 11155943 1 0 -marcionism%1:09:00:: 06189341 1 0 -marco_polo%1:18:00:: 11241300 1 0 -marco_polo's_sheep%1:05:00:: 02414904 1 0 -marco_polo_sheep%1:05:00:: 02414904 1 0 -marconi%1:18:00:: 11156122 1 0 -marconi_rig%1:06:00:: 02831455 1 0 -marcus_annius_verus%1:18:00:: 10819755 1 0 -marcus_antonius%1:18:00:: 10820163 1 0 -marcus_aurelius%1:18:00:: 10819755 1 0 -marcus_aurelius_antoninus%1:18:00:: 10819755 1 0 -marcus_aurelius_valerius_maximianus%1:18:00:: 11166251 1 0 -marcus_cocceius_nerva%1:18:00:: 11204069 1 0 -marcus_junius_brutus%1:18:00:: 10869207 1 0 -marcus_terentius_varro%1:18:00:: 11361039 1 0 -marcus_tullius_cicero%1:18:00:: 10897946 1 0 -marcus_ulpius_traianus%1:18:00:: 11347834 1 0 -marcus_vipsanius_agrippa%1:18:00:: 10809857 1 0 -marcus_whitman%1:18:00:: 11384755 1 0 -marcuse%1:18:00:: 11156333 1 0 -mardi_gras%1:04:00:: 00520059 2 0 -mardi_gras%1:28:00:: 15241898 1 0 -marduk%1:18:00:: 09519288 1 0 -mare%1:05:00:: 02377480 1 2 -mare%1:17:00:: 09346613 2 0 -mare's_nest%1:26:00:: 14500567 1 0 -mare's_tail%1:17:00:: 09347116 1 0 -mare_clausum%1:17:00:: 09346735 1 0 -mare_liberum%1:17:00:: 09346874 1 0 -mare_nostrum%1:17:00:: 09347008 1 0 -marengo%1:04:00:: 01286745 1 0 -marfan's_syndrome%1:26:00:: 14157967 1 0 -margaret_court%1:18:00:: 10913355 1 0 -margaret_higgins_sanger%1:18:00:: 11280405 1 0 -margaret_hilda_thatcher%1:18:00:: 11337779 1 0 -margaret_mead%1:18:00:: 11170248 1 0 -margaret_mitchell%1:18:00:: 11182275 1 0 -margaret_munnerlyn_mitchell%1:18:00:: 11182275 1 0 -margaret_sanger%1:18:00:: 11280405 1 0 -margaret_thatcher%1:18:00:: 11337779 1 0 -margarete_gertrud_zelle%1:18:00:: 11164163 1 0 -margaric_acid%1:27:00:: 14742476 1 0 -margarin%1:13:00:: 07672914 2 0 -margarin%1:27:00:: 15079445 1 0 -margarine%1:13:00:: 07672914 1 0 -margarita%1:13:00:: 07915918 1 0 -margasivsa%1:28:00:: 15220864 1 0 -margate%1:05:00:: 02588794 1 0 -margay%1:05:00:: 02126640 1 0 -margay_cat%1:05:00:: 02126640 1 0 -marge%1:13:00:: 07672914 1 0 -margin%1:07:00:: 05120683 2 2 -margin%1:07:01:: 04749991 6 0 -margin%1:10:00:: 06389398 5 0 -margin%1:21:01:: 13351278 3 0 -margin%1:21:02:: 13260762 4 0 -margin%1:25:00:: 13903387 1 6 -margin_account%1:21:00:: 13351986 1 0 -margin_call%1:10:00:: 07192661 1 0 -margin_of_error%1:07:00:: 05120835 1 0 -margin_of_profit%1:21:00:: 13261242 1 0 -margin_of_safety%1:07:00:: 05120835 1 0 -marginal%5:00:00:minimal:00 01496311 2 3 -marginal%5:00:00:narrow:02 02563466 3 0 -marginal%5:00:00:peripheral:00 00331889 1 4 -marginal%5:00:00:unprofitable:00 01872486 4 0 -marginal_cost%1:07:00:: 05145708 1 3 -marginal_placentation%1:20:00:: 11682003 1 0 -marginal_utility%1:23:00:: 13580228 1 0 -marginal_wood_fern%1:20:00:: 13194036 1 0 -marginalia%1:10:00:: 06505935 1 0 -marginalisation%1:22:00:: 13510946 1 0 -marginalise%2:41:00:: 02377520 1 0 -marginality%1:07:00:: 05078147 1 2 -marginalization%1:22:00:: 13510946 1 0 -marginalize%2:41:00:: 02377520 1 0 -marginally%4:02:00:: 00090000 1 1 -marginocephalia%1:05:00:: 01702623 1 0 -marginocephalian%1:05:00:: 01702623 1 0 -margosa%1:20:00:: 12696492 1 0 -margrave%1:18:00:: 10293861 2 0 -margrave%1:18:01:: 10294020 1 0 -marguerite%1:20:01:: 11989869 1 0 -marguerite%1:20:02:: 11925898 2 0 -marguerite_daisy%1:20:00:: 11925898 1 0 -marguerite_radclyffe_hall%1:18:00:: 11025125 1 0 -mari%1:10:00:: 06957287 2 0 -mari%1:18:00:: 09706396 1 0 -maria%1:17:00:: 09346613 1 1 -maria%1:20:00:: 12365158 2 0 -maria_callas%1:18:00:: 10880189 1 0 -maria_luigi_carlo_zenobio_cherubini%1:18:00:: 10894905 1 0 -maria_magdalene_von_losch%1:18:00:: 10935304 1 0 -maria_meneghini_callas%1:18:00:: 10880189 1 0 -maria_mitchell%1:18:00:: 11182479 1 0 -maria_montesorri%1:18:00:: 11187154 1 0 -maria_tallchief%1:18:00:: 11329507 1 0 -mariachi%1:14:00:: 08250409 1 0 -marian%3:01:00:: 03034903 1 0 -marian_anderson%1:18:00:: 10817458 1 0 -mariana_islands%1:15:00:: 08837552 1 0 -marianas%1:15:00:: 08837552 1 0 -marianne_craig_moore%1:18:00:: 11189432 1 0 -marianne_moore%1:18:00:: 11189432 1 0 -maricopa%1:10:00:: 06923066 2 0 -maricopa%1:18:00:: 09660240 1 0 -marie-strumpell_disease%1:26:00:: 14220474 1 0 -marie_anne_charlotte_corday_d'armont%1:18:00:: 10910580 1 0 -marie_antoinette%1:18:00:: 11156548 1 0 -marie_charlotte_carmichael_stopes%1:18:00:: 11320044 1 0 -marie_curie%1:18:00:: 10917703 1 0 -marie_dolores_eliza_rosanna_gilbert%1:18:00:: 11187471 1 0 -marie_goeppert_mayer%1:18:00:: 11167088 1 0 -marie_grosholtz%1:18:00:: 11353510 1 0 -marie_henri_beyle%1:18:00:: 11316249 1 0 -marie_jean_antoine_nicolas_caritat%1:18:00:: 10906638 1 0 -marie_jeanne_becu%1:18:00:: 10943811 1 0 -marie_joseph_paul_yves_roch_gilbert_du_motier%1:18:00:: 11114056 1 0 -marie_louise_elisabeth_vigee-lebrun%1:18:00:: 11366232 1 0 -marie_stopes%1:18:00:: 11320044 1 0 -marie_tussaud%1:18:00:: 11353510 1 0 -mariehamn%1:15:00:: 08780720 1 0 -marigold%1:20:00:: 12020507 1 0 -marihuana%1:06:00:: 02949691 2 0 -marihuana%1:20:00:: 12397210 1 0 -marijuana%1:06:00:: 02949691 2 0 -marijuana%1:20:00:: 12397210 1 0 -marijuana_cigarette%1:06:00:: 03600806 1 0 -marilyn_horne%1:18:00:: 11060688 1 0 -marilyn_monroe%1:18:00:: 11186207 1 0 -marimba%1:06:00:: 03721384 1 0 -marina%1:06:00:: 03721590 1 0 -marinade%1:13:00:: 07824502 1 0 -marinade%2:30:00:: 00213544 1 0 -marinara%1:13:00:: 07838441 1 0 -marinate%2:30:00:: 00213544 1 2 -marine%1:18:00:: 10294139 1 1 -marine%1:18:01:: 10294318 2 0 -marine%3:00:00:: 01380721 4 0 -marine%3:01:00:: 02887899 1 2 -marine%3:01:01:: 02888000 3 0 -marine%3:01:02:: 02889746 2 0 -marine%5:00:00:aquatic:00 00124353 5 0 -marine_animal%1:05:00:: 01319467 1 0 -marine_archaeology%1:09:00:: 06145158 1 0 -marine_archeology%1:09:00:: 06145158 1 0 -marine_corps%1:14:00:: 08192970 1 5 -marine_corps_intelligence_activity%1:14:00:: 08194546 1 0 -marine_creature%1:05:00:: 01319467 1 0 -marine_engineer%1:18:00:: 10294421 1 0 -marine_glue%1:27:00:: 14703709 1 0 -marine_iguana%1:05:00:: 01677747 1 0 -marine_law%1:14:00:: 08454191 1 0 -marine_mine%1:06:00:: 03365078 1 0 -marine_museum%1:06:00:: 02732072 1 0 -marine_mussel%1:05:00:: 01964049 1 0 -marine_turtle%1:05:00:: 01663401 1 0 -marineland%1:06:00:: 03721691 1 0 -mariner%1:18:00:: 10294602 1 0 -mariner's_compass%1:06:00:: 03080731 1 0 -marines%1:14:01:: 08192817 1 0 -marini%1:18:00:: 11156812 1 0 -marino%1:18:00:: 11156812 1 0 -mario_vargas_llosa%1:18:00:: 11360895 1 0 -marionette%1:06:00:: 04025350 1 0 -mariotte's_law%1:09:00:: 05875988 1 0 -mariposa%1:20:00:: 12446200 1 0 -mariposa_lily%1:20:00:: 12446200 1 0 -mariposa_tulip%1:20:00:: 12446200 1 0 -mariposan%1:10:00:: 06924659 1 0 -marital%3:01:00:: 02852920 1 2 -marital_bed%1:24:00:: 13815030 1 0 -marital_communications_privilege%1:07:00:: 05180286 1 0 -marital_relationship%1:24:00:: 13815030 1 0 -marital_status%1:26:00:: 13963757 1 0 -mariticide%1:04:00:: 00221727 1 0 -maritime%3:01:00:: 02889746 1 0 -maritime%5:00:00:coastal:00 00463399 2 0 -maritime_law%1:14:00:: 08454191 1 0 -maritime_provinces%1:15:00:: 08821578 1 0 -maritimes%1:15:00:: 08821578 1 0 -marjoram%1:13:00:: 07818995 2 0 -marjoram%1:20:00:: 12853287 1 0 -mark%1:04:01:: 00064789 15 0 -mark%1:07:00:: 04693900 13 0 -mark%1:07:01:: 04681387 14 0 -mark%1:07:02:: 04676064 5 2 -mark%1:09:01:: 05737153 1 5 -mark%1:10:00:: 06817782 10 0 -mark%1:10:01:: 06794666 6 1 -mark%1:10:02:: 07270179 2 4 -mark%1:10:03:: 06798750 4 2 -mark%1:10:04:: 07262108 3 3 -mark%1:10:05:: 06646243 11 0 -mark%1:10:06:: 06441803 12 0 -mark%1:18:00:: 09921409 9 0 -mark%1:18:01:: 11156943 8 0 -mark%1:23:00:: 13688033 7 0 -mark%2:30:00:: 00508032 5 5 -mark%2:30:08:: 00190023 15 0 -mark%2:31:00:: 00657728 14 0 -mark%2:31:01:: 00612612 4 9 -mark%2:31:08:: 00662182 13 0 -mark%2:31:09:: 00651991 3 13 -mark%2:32:00:: 01004062 11 0 -mark%2:32:01:: 00800750 12 0 -mark%2:32:02:: 00921738 2 13 -mark%2:32:03:: 01062395 10 0 -mark%2:35:01:: 01275762 9 0 -mark%2:35:02:: 01551195 8 1 -mark%2:35:09:: 01588493 1 13 -mark%2:39:00:: 02118476 7 2 -mark%2:41:00:: 02508245 6 2 -mark_anthony%1:18:00:: 10820163 1 0 -mark_antony%1:18:00:: 10820163 1 0 -mark_clark%1:18:00:: 10898929 1 0 -mark_down%2:40:00:: 02320078 1 0 -mark_hopkins%1:18:00:: 11060103 1 0 -mark_of_cain%1:07:00:: 04828126 1 0 -mark_off%2:30:00:: 00234725 1 1 -mark_off%2:31:00:: 00662182 2 0 -mark_out%2:30:00:: 00234725 1 0 -mark_rothko%1:18:00:: 11272198 1 0 -mark_tobey%1:18:00:: 11344092 1 0 -mark_twain%1:18:00:: 10900730 1 0 -mark_up%2:40:00:: 02319824 1 0 -mark_wayne_clark%1:18:00:: 10898929 1 0 -markaz-ud-dawa-wal-irshad%1:14:00:: 08047501 1 0 -marked%3:00:00:: 01480186 3 1 -marked%5:00:00:conspicuous:00 00580684 2 2 -marked%5:00:00:noticeable:00 01287808 1 15 -marked-up%5:00:00:illegible:00 01405390 1 0 -markedly%4:02:00:: 00161294 1 2 -marker%1:06:00:: 03721797 1 1 -marker%1:06:01:: 03722007 3 0 -marker%1:10:00:: 07270179 2 0 -market%1:04:00:: 01097292 1 12 -market%1:06:00:: 03461385 3 4 -market%1:06:01:: 03722288 5 0 -market%1:14:00:: 08424951 2 9 -market%1:14:01:: 08072837 4 2 -market%2:30:00:: 00470386 4 0 -market%2:40:00:: 02298160 1 3 -market%2:40:01:: 02298471 3 0 -market%2:40:05:: 02326198 2 0 -market_analysis%1:04:00:: 00640434 1 0 -market_analyst%1:18:00:: 09791248 1 0 -market_capitalisation%1:04:00:: 00952386 1 0 -market_capitalization%1:04:00:: 00952386 1 0 -market_cross%1:15:00:: 08597973 1 0 -market_day%1:28:00:: 15174122 1 0 -market_economy%1:14:00:: 08364959 1 0 -market_forces%1:22:00:: 13511243 1 0 -market_garden%1:06:00:: 03722169 1 0 -market_gardening%1:04:00:: 00921289 1 0 -market_keeper%1:18:00:: 10592152 1 0 -market_letter%1:10:00:: 06682152 1 0 -market_order%1:10:00:: 06529996 1 0 -market_penetration%1:04:00:: 00051897 1 0 -market_place%1:04:00:: 01097292 2 0 -market_place%1:06:00:: 03722288 1 0 -market_price%1:21:00:: 13337322 1 4 -market_research%1:04:00:: 00640188 1 0 -market_square%1:06:00:: 03847823 1 0 -market_strategist%1:18:00:: 09791419 1 0 -market_town%1:15:00:: 08672073 1 0 -market_value%1:21:00:: 13337322 1 4 -marketable%5:00:00:exportable:00 00877119 3 0 -marketable%5:00:01:salable:00 02061998 1 4 -marketable%5:00:02:salable:00 02062133 2 0 -marketer%1:18:00:: 10577284 1 0 -marketing%1:04:00:: 01113068 1 31 -marketing%1:04:01:: 00082081 3 0 -marketing%1:04:02:: 01112420 2 0 -marketing_cost%1:21:00:: 13302621 1 0 -marketing_research%1:04:00:: 00640188 1 0 -marketplace%1:04:00:: 01097292 1 3 -marketplace%1:06:00:: 03722288 2 2 -markhoor%1:05:00:: 02417785 1 0 -markhor%1:05:00:: 02417785 1 0 -marking%1:04:00:: 00874977 3 0 -marking%1:04:01:: 00263642 4 0 -marking%1:07:00:: 04680285 2 1 -marking%1:10:00:: 07270179 1 1 -marking_ink%1:27:00:: 14948156 1 0 -markka%1:23:00:: 13688447 1 0 -markoff%1:18:00:: 11157275 1 0 -markoff_chain%1:22:00:: 13511368 1 0 -markoff_process%1:22:00:: 13511507 1 0 -markov%1:18:00:: 11157275 1 0 -markov_chain%1:22:00:: 13511368 1 0 -markov_process%1:22:00:: 13511507 1 0 -markova%1:18:00:: 11157140 1 0 -markovian%3:01:00:: 02994754 1 0 -marks%1:18:00:: 11157422 1 0 -marksman%1:18:00:: 10294953 1 8 -marksmanship%1:09:00:: 05638606 1 3 -markup%1:10:00:: 06787602 2 0 -markup%1:21:00:: 13303880 1 0 -markup_language%1:10:00:: 06787835 1 0 -markweed%1:20:00:: 12766869 1 0 -marl%1:27:00:: 14681249 1 0 -marlberry%1:20:00:: 12097556 1 0 -marlene_dietrich%1:18:00:: 10935304 1 0 -marley%1:18:00:: 11157580 1 0 -marlin%1:05:00:: 02631041 1 0 -marline%1:06:00:: 03722552 1 0 -marlinespike%1:06:00:: 03722646 1 0 -marlingspike%1:06:00:: 03722646 1 0 -marlinspike%1:06:00:: 03722646 1 0 -marlite%1:27:00:: 14698568 1 0 -marlowe%1:18:00:: 11157719 1 0 -marlowe%1:18:01:: 09601571 2 0 -marlstone%1:27:00:: 14698568 1 0 -marly%3:01:00:: 02995039 1 0 -marmalade%1:13:00:: 07643764 1 1 -marmalade_box%1:20:00:: 12667582 1 0 -marmalade_bush%1:20:00:: 12914193 1 0 -marmalade_orange%1:20:00:: 12708654 1 0 -marmalade_plum%1:13:00:: 07764486 1 0 -marmalade_tree%1:20:00:: 12775919 1 0 -marmara%1:17:00:: 09347208 1 0 -marmara_denizi%1:17:00:: 09347208 1 0 -marmite%1:06:00:: 03722827 2 0 -marmite%1:13:00:: 07586099 1 0 -marmora%1:17:00:: 09347208 1 0 -marmoreal%3:01:00:: 02994872 1 0 -marmorean%3:01:00:: 02994872 1 0 -marmoset%1:05:00:: 02490219 1 0 -marmot%1:05:00:: 02361337 1 0 -marmota%1:05:00:: 02361222 1 0 -marmota_caligata%1:05:00:: 02361706 1 0 -marmota_flaviventris%1:05:00:: 02361850 1 0 -marmota_monax%1:05:00:: 02361587 1 0 -marne_river%1:04:00:: 01271428 1 0 -maroc%1:15:00:: 08969291 1 0 -maroc%3:01:00:: 03024420 1 0 -marocain%1:06:00:: 03722944 1 0 -maroon%1:06:00:: 03723054 3 0 -maroon%1:07:00:: 04964878 2 0 -maroon%1:18:00:: 10295190 1 0 -maroon%2:30:00:: 00496489 2 0 -maroon%2:40:00:: 02228355 1 1 -maroon%5:00:00:chromatic:00 00377702 1 1 -maroon-purple%5:00:00:chromatic:00 00377802 1 0 -maroon-spotted%5:00:00:patterned:00 01789279 1 0 -marooned%5:00:00:unaccompanied:00 02251576 1 0 -marplan%1:06:00:: 03587442 1 0 -marquand%1:18:00:: 11157954 1 0 -marque%1:10:00:: 06845599 1 0 -marquee%1:06:00:: 03723153 2 0 -marquee%1:06:01:: 03900979 1 1 -marquesas_islands%1:15:00:: 08990999 1 0 -marquess%1:18:00:: 10295371 2 0 -marquess%1:18:01:: 10295479 1 0 -marqueterie%1:06:00:: 03723267 1 0 -marquetry%1:06:00:: 03723267 1 0 -marquette%1:15:00:: 09101495 2 0 -marquette%1:18:00:: 11158156 1 0 -marquis%1:18:00:: 10295479 2 0 -marquis%1:18:01:: 11158364 1 0 -marquis_de_condorcet%1:18:00:: 10906638 1 0 -marquis_de_lafayette%1:18:00:: 11114056 1 0 -marquis_de_laplace%1:18:00:: 11117451 1 0 -marquis_de_sade%1:18:00:: 11278120 1 0 -marquise%1:06:00:: 03723153 2 0 -marquise%1:18:00:: 10293590 1 0 -marquise_de_maintenon%1:18:00:: 11150224 1 0 -marquise_de_montespan%1:18:00:: 11186685 1 0 -marquise_de_pompadour%1:18:00:: 11241655 1 0 -marrakech%1:15:00:: 08970189 1 0 -marrakesh%1:15:00:: 08970189 1 0 -marrano%1:18:00:: 10295597 1 0 -marred%5:00:00:blemished:00 00246727 1 0 -marri%1:20:00:: 12336224 1 0 -marriage%1:04:00:: 01036996 3 2 -marriage%1:14:00:: 07989373 2 10 -marriage%1:26:00:: 13963970 1 26 -marriage%1:26:01:: 14421585 4 0 -marriage_bed%1:06:00:: 03723439 1 1 -marriage_broker%1:18:00:: 10299875 1 0 -marriage_brokerage%1:14:00:: 08070341 1 0 -marriage_ceremony%1:04:00:: 01036996 1 0 -marriage_contract%1:10:00:: 06523353 1 3 -marriage_counseling%1:10:00:: 06651463 1 0 -marriage_licence%1:10:00:: 06551339 1 0 -marriage_license%1:10:00:: 06551339 1 0 -marriage_mart%1:14:00:: 08070341 1 1 -marriage_of_convenience%1:26:00:: 13965515 1 0 -marriage_offer%1:10:00:: 07161741 1 0 -marriage_proposal%1:10:00:: 07161741 1 0 -marriage_settlement%1:10:00:: 06523353 1 0 -marriageability%1:07:00:: 04718030 1 0 -marriageable%5:00:00:mature:01 01489325 1 0 -married%1:18:00:: 10295819 1 0 -married%3:00:00:: 01481612 1 17 -married%3:01:00:: 02852920 2 0 -married_couple%1:14:00:: 07989373 1 2 -married_man%1:18:00:: 10193967 1 0 -married_person%1:18:00:: 10640620 1 0 -married_woman%1:18:00:: 10780632 1 0 -marrow%1:08:00:: 05285623 1 2 -marrow%1:09:00:: 05921123 5 0 -marrow%1:13:00:: 07716504 4 0 -marrow%1:13:02:: 07873057 3 0 -marrow%1:20:00:: 12159555 2 0 -marrow_squash%1:20:00:: 12159555 1 0 -marrowbone%1:13:00:: 07872915 1 1 -marrowfat_pea%1:13:00:: 07725663 1 0 -marrubium%1:20:00:: 12853901 1 0 -marrubium_vulgare%1:20:00:: 12854193 1 0 -marruecos%1:15:00:: 08969291 1 0 -marry%2:41:00:: 02488834 1 44 -marry%2:41:01:: 02489456 2 2 -mars%1:17:00:: 09347445 1 14 -mars%1:18:00:: 09555785 2 0 -marsala%1:13:00:: 07901355 1 0 -marseillaise%1:10:00:: 07049205 1 0 -marseille%1:06:00:: 03723534 2 0 -marseille%1:15:00:: 08936833 1 0 -marseilles%1:15:00:: 08936833 1 0 -marseilles_fever%1:26:00:: 14078120 1 0 -marsh%1:17:00:: 09347779 1 1 -marsh%1:18:00:: 11158533 3 0 -marsh%1:18:01:: 11158651 2 0 -marsh_andromeda%1:20:00:: 12229887 1 0 -marsh_bellflower%1:20:00:: 12038208 1 0 -marsh_buggy%1:06:00:: 04368695 1 0 -marsh_clematis%1:20:00:: 11730015 1 0 -marsh_cress%1:20:00:: 11895472 1 0 -marsh_elder%1:20:00:: 11985053 1 0 -marsh_felwort%1:20:00:: 12298958 1 0 -marsh_fern%1:20:00:: 13227778 1 0 -marsh_gas%1:27:00:: 14948265 1 0 -marsh_gentian%1:20:00:: 12295033 1 0 -marsh_hare%1:05:00:: 02326074 1 0 -marsh_harrier%1:05:00:: 01609956 1 0 -marsh_hawk%1:05:00:: 01610226 1 0 -marsh_hen%1:05:01:: 02016358 2 0 -marsh_hen%1:05:02:: 02018207 1 0 -marsh_horsetail%1:20:00:: 13220355 1 0 -marsh_mallow%1:20:00:: 12174521 1 0 -marsh_marigold%1:20:00:: 11728099 1 0 -marsh_milkweed%1:20:00:: 11969166 1 0 -marsh_orchid%1:20:00:: 12058630 1 0 -marsh_pea%1:20:00:: 12540966 1 0 -marsh_pink%1:20:00:: 12298395 1 0 -marsh_plant%1:20:00:: 13122364 1 0 -marsh_rosemary%1:20:00:: 12099342 1 0 -marsh_st-john's_wort%1:20:00:: 12369845 1 0 -marsh_tea%1:20:00:: 12238913 1 0 -marsh_trefoil%1:20:00:: 12484784 1 0 -marsh_wren%1:05:00:: 01585121 1 0 -marshal%1:18:00:: 10295951 1 5 -marshal%1:18:01:: 10296176 2 0 -marshal%2:30:00:: 00270215 3 1 -marshal%2:35:00:: 01360197 2 1 -marshal%2:38:00:: 01988325 1 1 -marshal%2:38:01:: 02000757 4 0 -marshal_saxe%1:18:00:: 11283300 1 0 -marshal_tito%1:18:00:: 11343625 1 0 -marshall%1:18:00:: 10295951 5 0 -marshall%1:18:01:: 10296176 4 0 -marshall%1:18:02:: 11158754 3 0 -marshall%1:18:03:: 11158982 2 0 -marshall%1:18:04:: 11159214 1 0 -marshall_islands%1:15:00:: 08839092 1 0 -marshall_islands%1:15:01:: 08838887 2 0 -marshall_mcluhan%1:18:00:: 11169595 1 0 -marshall_plan%1:21:00:: 13266690 1 0 -marshalling_yard%1:06:00:: 03723653 1 1 -marshals%1:14:00:: 08142370 1 0 -marshalship%1:04:00:: 00595032 1 0 -marshland%1:17:00:: 09347779 1 0 -marshmallow%1:13:00:: 07608098 1 0 -marshmallow_fluff%1:13:00:: 07855603 1 0 -marshy%5:00:00:wet:01 02548066 1 0 -marsilea%1:20:00:: 12957467 1 0 -marsilea_drummondii%1:20:00:: 12957803 1 0 -marsilea_quadrifolia%1:20:00:: 12957924 1 0 -marsileaceae%1:20:00:: 12957298 1 0 -marstan%1:18:00:: 11159318 1 0 -marston_moor%1:04:00:: 01286938 2 0 -marston_moor%1:15:00:: 08885099 1 0 -marsupial%1:05:00:: 01874434 1 0 -marsupial%3:01:00:: 02995373 1 0 -marsupial_mole%1:05:00:: 01886045 1 0 -marsupial_mouse%1:05:00:: 01885158 1 0 -marsupial_rat%1:05:00:: 01885158 1 0 -marsupialia%1:05:00:: 01874126 1 0 -marsupium%1:08:00:: 05517268 1 0 -mart%1:06:00:: 03722288 1 0 -marta_brigit_nilsson%1:18:00:: 11207768 1 0 -martagon%1:20:00:: 12428076 1 0 -martello_tower%1:06:00:: 03723781 1 0 -marten%1:05:00:: 02450034 1 0 -marten_cat%1:05:00:: 02450034 1 0 -martensite%1:27:00:: 14948377 1 0 -martes%1:05:00:: 02449921 1 0 -martes_americana%1:05:00:: 02450561 1 0 -martes_foina%1:05:00:: 02450677 1 0 -martes_martes%1:05:00:: 02450295 1 0 -martes_pennanti%1:05:00:: 02450829 1 0 -martes_zibellina%1:05:00:: 02450426 1 0 -martha's_vineyard%1:15:00:: 09098488 1 0 -martha_beatrice_potter_webb%1:18:00:: 11378087 1 0 -martha_graham%1:18:00:: 11010187 1 0 -martha_jane_burk%1:18:00:: 10872839 1 0 -martha_jane_burke%1:18:00:: 10872839 1 0 -marti%1:18:00:: 11159418 1 0 -martial%1:18:00:: 11159595 1 0 -martial%5:00:00:military:01 01517526 3 0 -martial%5:00:00:military:02 01518860 2 0 -martial%5:00:02:military:02 01518694 1 1 -martial_art%1:04:00:: 00825443 1 0 -martial_law%1:14:00:: 08454818 1 0 -martial_music%1:10:00:: 07058468 1 0 -martially%4:02:00:: 00500915 1 0 -martian%1:18:00:: 09489790 1 3 -martian%3:01:00:: 02939406 1 5 -martin%1:05:00:: 01595624 5 0 -martin%1:18:00:: 11159698 4 0 -martin%1:18:01:: 11159819 3 0 -martin%1:18:02:: 11159920 2 0 -martin%1:18:03:: 11160055 1 0 -martin_buber%1:18:00:: 10869683 1 0 -martin_cline%1:18:00:: 10902232 1 0 -martin_heidegger%1:18:00:: 11038293 1 0 -martin_heinrich_klaproth%1:18:00:: 11106652 1 0 -martin_luther%1:18:00:: 11145364 1 0 -martin_luther_king%1:18:00:: 11105054 1 0 -martin_luther_king_day%1:28:00:: 15182402 1 0 -martin_luther_king_jr's_birthday%1:28:00:: 15182402 1 0 -martin_luther_king_jr.%1:18:00:: 11105054 1 0 -martin_scorsese%1:18:00:: 11288818 1 0 -martin_v%1:18:00:: 11160200 1 0 -martin_van_buren%1:18:00:: 11358719 1 0 -martina_navratilova%1:18:00:: 11201740 1 0 -martinet%1:18:00:: 10296444 1 0 -martingale%1:06:00:: 03723885 1 0 -martingale%1:06:02:: 03220401 2 0 -martini%1:13:00:: 07916041 1 2 -martinique%1:15:00:: 08943242 1 0 -martinmas%1:28:00:: 15185837 1 0 -martynia%1:20:00:: 12873984 1 0 -martynia_annua%1:20:00:: 12873984 1 0 -martynia_arenaria%1:20:00:: 12875697 1 0 -martynia_fragrans%1:20:00:: 12875861 1 0 -martyniaceae%1:20:00:: 12873646 1 0 -martyr%1:18:00:: 10296618 1 8 -martyr%1:18:01:: 10296832 2 0 -martyr%2:29:00:: 00071646 2 0 -martyr%2:35:00:: 01605021 1 0 -martyr_operation%1:04:00:: 00731756 1 0 -martyrdom%1:11:00:: 07333347 1 0 -martyrdom%1:11:01:: 07306032 2 0 -martyrise%2:29:00:: 00071646 1 0 -martyrize%2:29:00:: 00071646 1 0 -martyrs_of_al-aqsa%1:14:00:: 08010942 1 0 -marum%1:20:00:: 12870048 1 0 -marumi%1:20:00:: 12713358 1 0 -marumi_kumquat%1:20:00:: 12713358 1 0 -marupa%1:20:00:: 12716400 1 0 -marut%1:18:00:: 09527185 1 0 -marvel%1:11:00:: 07289588 1 1 -marvel%2:32:00:: 00925735 2 1 -marvel%2:32:12:: 00925490 1 4 -marvel-of-peru%1:20:00:: 11839823 1 0 -marvell%1:18:00:: 11160361 1 0 -marveller%1:18:00:: 10789534 1 0 -marvellous%5:00:00:extraordinary:00 01676517 1 0 -marvellous%5:00:00:incredible:00 00646117 3 0 -marvellous%5:00:00:supernatural:00 01576551 2 0 -marvellously%4:02:00:: 00183090 1 0 -marvelous%5:00:00:extraordinary:00 01676517 1 3 -marvelous%5:00:00:incredible:00 00646117 2 3 -marvelous%5:00:00:supernatural:00 01576551 3 0 -marvelously%4:02:00:: 00183090 1 1 -marvin_neil_simon%1:18:00:: 11301129 1 0 -marx%1:18:00:: 11160457 5 0 -marx%1:18:01:: 11160676 4 0 -marx%1:18:02:: 11160861 3 0 -marx%1:18:03:: 11161045 2 0 -marx%1:18:04:: 11161228 1 0 -marx_brothers%1:14:00:: 07989741 1 0 -marxism%1:09:00:: 06215618 1 0 -marxism-leninism%1:09:00:: 06215152 1 0 -marxist%1:18:00:: 10297140 1 0 -marxist%1:18:01:: 09863749 2 0 -marxist%3:01:00:: 02875282 1 2 -marxist-leninist%3:01:00:: 02875374 1 0 -mary%1:18:00:: 11161412 1 2 -mary_ann_evans%1:18:00:: 10956883 1 0 -mary_ashton_rice_livermore%1:18:00:: 11135488 1 0 -mary_augusta_arnold_ward%1:18:00:: 11374085 1 0 -mary_baker_eddy%1:18:00:: 10948656 1 0 -mary_douglas_leakey%1:18:00:: 11121876 1 0 -mary_flannery_o'connor%1:18:00:: 11211987 1 0 -mary_godwin_wollstonecraft_shelley%1:18:00:: 11297032 1 0 -mary_harris_jones%1:18:00:: 11090884 1 0 -mary_i%1:18:00:: 11161664 1 0 -mary_ii%1:18:00:: 11162010 1 0 -mary_jane%1:06:00:: 03990834 1 0 -mary_leakey%1:18:00:: 11121876 1 0 -mary_leontyne_price%1:18:00:: 11246408 1 0 -mary_ludwig_hays_mccauley%1:18:00:: 11168218 1 0 -mary_magdalen%1:18:00:: 11162582 1 0 -mary_magdalene%1:18:00:: 11162582 1 1 -mary_mallon%1:18:00:: 11151932 1 0 -mary_martin%1:18:00:: 11159819 1 0 -mary_mccarthy%1:18:00:: 11167792 1 0 -mary_mccauley%1:18:00:: 11168218 1 0 -mary_mcleod_bethune%1:18:00:: 10850469 1 0 -mary_morse_baker_eddy%1:18:00:: 10948656 1 0 -mary_pickford%1:18:00:: 11234643 1 0 -mary_queen_of_scots%1:18:00:: 11162206 1 0 -mary_shelley%1:18:00:: 11297032 1 0 -mary_stuart%1:18:00:: 11162206 1 0 -mary_therese_mccarthy%1:18:00:: 11167792 1 0 -mary_tudor%1:18:00:: 11161664 1 0 -mary_wollstonecraft%1:18:00:: 11395199 1 0 -mary_wollstonecraft_godwin%1:18:00:: 11395199 1 0 -mary_wollstonecraft_shelley%1:18:00:: 11297032 1 0 -marya_sklodowska%1:18:00:: 10917703 1 0 -maryland%1:15:00:: 09093608 1 1 -maryland%1:15:01:: 09093980 2 0 -maryland_chicken%1:13:00:: 07864198 1 0 -maryland_golden_aster%1:20:00:: 11951820 1 0 -maryland_yellowthroat%1:05:00:: 01570839 1 0 -marylander%1:18:00:: 09743601 1 0 -marzipan%1:13:00:: 07608245 1 0 -masa%1:10:00:: 06986100 1 0 -masai%1:10:00:: 06998460 1 0 -mascara%1:06:00:: 03724066 1 1 -mascarene_grass%1:20:00:: 12146823 1 0 -mascarpone%1:13:00:: 07851554 1 0 -mascot%1:18:00:: 10297234 1 0 -masculine%1:10:00:: 06329165 1 0 -masculine%3:00:01:: 01483324 2 1 -masculine%3:00:02:: 01486084 1 2 -masculine%5:00:00:stressed:00 02319922 3 0 -masculinisation%1:22:00:: 13511755 1 0 -masculinise%2:30:00:: 00566569 1 0 -masculinity%1:07:00:: 05008227 1 1 -masculinity%1:07:01:: 04666615 2 0 -masculinization%1:22:00:: 13511755 1 0 -masculinize%2:30:00:: 00566569 2 0 -masculinize%2:30:01:: 00566895 1 0 -masdevallia%1:20:00:: 12072722 1 0 -masefield%1:18:00:: 11162793 1 0 -maser%1:06:00:: 03724176 1 0 -maseru%1:15:00:: 08959105 1 0 -mash%1:13:00:: 07805254 2 0 -mash%1:27:00:: 14948645 1 0 -mash%2:30:00:: 00331082 3 0 -mash%2:32:00:: 01037910 2 0 -mash%2:35:00:: 01593937 1 1 -mashed_potato%1:13:00:: 07711569 1 0 -masher%1:06:00:: 03724417 2 0 -masher%1:18:00:: 10787197 1 0 -mashhad%1:15:00:: 08911868 1 0 -mashi%1:10:00:: 06994157 1 0 -mashie%1:06:00:: 03724538 1 0 -mashie_niblick%1:06:00:: 03724623 1 0 -mashriq%1:15:00:: 08791978 1 0 -masjid%1:06:00:: 03724756 1 0 -mask%1:04:00:: 01049475 2 1 -mask%1:06:00:: 03724870 1 1 -mask%1:06:01:: 03725035 4 0 -mask%1:14:00:: 08253450 3 0 -mask%2:35:00:: 01358328 2 1 -mask%2:35:01:: 01358737 5 0 -mask%2:35:02:: 01358855 4 0 -mask%2:39:00:: 02147603 1 1 -mask%2:39:01:: 02158587 3 0 -mask_of_pregnancy%1:26:00:: 14302652 1 0 -masked%5:00:00:covert:00 01707230 1 0 -masked%5:00:00:marked:00 01481014 2 0 -masked_ball%1:11:00:: 07449157 1 0 -masked_shrew%1:05:00:: 01892145 1 0 -masker%1:18:00:: 10297841 1 0 -masking%1:04:00:: 01049685 1 1 -masking%1:06:00:: 03725198 3 0 -masking%1:09:00:: 05713347 2 0 -masking_paper%1:06:00:: 03725355 1 0 -masking_piece%1:06:00:: 03725198 1 0 -masking_tape%1:06:00:: 03725355 1 0 -masochism%1:12:00:: 07494175 1 0 -masochist%1:18:00:: 10297367 1 0 -masochistic%3:00:00:: 02057681 1 0 -masochistically%4:02:00:: 00395430 1 0 -mason%1:18:00:: 10297531 4 0 -mason%1:18:01:: 10111144 5 0 -mason%1:18:02:: 11162915 3 0 -mason%1:18:03:: 11163041 2 0 -mason%1:18:04:: 11163160 1 0 -mason's_level%1:06:00:: 03725869 1 0 -mason's_trowel%1:06:00:: 02898269 1 0 -mason-dixon_line%1:15:00:: 08515581 1 0 -mason_and_dixon's_line%1:15:00:: 08515581 1 0 -mason_and_dixon_line%1:15:00:: 08515581 1 0 -mason_bee%1:05:00:: 02211627 1 0 -mason_city%1:15:00:: 09087247 1 0 -mason_jar%1:06:00:: 03725600 1 0 -mason_wasp%1:05:01:: 02214341 2 0 -mason_wasp%1:05:02:: 02215621 1 0 -masonic%3:01:00:: 02895268 2 0 -masonic%3:01:01:: 02895418 1 0 -masonite%1:06:00:: 03725506 1 0 -masonry%1:04:00:: 00608896 3 0 -masonry%1:06:00:: 03725717 1 2 -masonry%1:14:00:: 08235513 2 0 -masora%1:10:00:: 06375624 1 0 -masorah%1:10:00:: 06375624 1 0 -masorete%1:18:00:: 10297655 1 0 -masoretic%3:01:00:: 02895565 1 0 -masorite%1:18:00:: 10297655 1 0 -masoud%1:18:00:: 11163342 1 0 -masqat%1:15:00:: 08975435 1 0 -masque%1:14:00:: 08253450 1 0 -masquer%1:18:00:: 10297841 1 0 -masquerade%1:04:00:: 00756194 3 0 -masquerade%1:06:00:: 03320519 2 0 -masquerade%1:14:00:: 08253450 1 0 -masquerade%2:32:00:: 00837617 2 1 -masquerade%2:39:00:: 02147962 1 2 -masquerade_ball%1:11:00:: 07449157 1 0 -masquerade_costume%1:06:00:: 03320519 1 0 -masquerade_party%1:14:00:: 08253450 1 0 -masquerader%1:18:00:: 10297841 1 0 -mass%1:04:00:: 01042242 4 10 -mass%1:07:00:: 05024254 1 35 -mass%1:07:01:: 05099389 7 3 -mass%1:10:00:: 07033753 8 0 -mass%1:10:01:: 07033613 9 0 -mass%1:14:01:: 08180190 6 4 -mass%1:14:02:: 07962124 3 12 -mass%1:17:00:: 09348055 5 6 -mass%1:23:00:: 13774404 2 14 -mass%2:38:00:: 02024168 1 3 -mass%5:00:00:collective:00 00467240 1 0 -mass-action_principle%1:09:00:: 05992015 1 0 -mass-energy_equivalence%1:09:00:: 05885187 1 0 -mass-produce%2:36:00:: 01625891 1 0 -mass-produced%5:00:00:factory-made:00 00675473 1 0 -mass-spectrometric%3:01:00:: 02918615 1 1 -mass_action%1:09:00:: 05992015 1 0 -mass_card%1:10:00:: 06628450 1 0 -mass_culture%1:09:00:: 05752179 1 1 -mass_defect%1:19:00:: 11481824 1 0 -mass_deficiency%1:19:00:: 11481824 1 0 -mass_energy%1:07:00:: 05026171 1 0 -mass_hysteria%1:26:00:: 14392143 1 0 -mass_medium%1:10:00:: 06261586 1 0 -mass_meeting%1:14:00:: 08358332 1 0 -mass_murder%1:04:00:: 00223983 1 1 -mass_murderer%1:18:00:: 10298343 1 0 -mass_noun%1:10:00:: 06319710 1 0 -mass_number%1:23:00:: 13715614 1 0 -mass_production%1:04:00:: 00914182 1 0 -mass_rapid_transit%1:06:00:: 04054213 1 1 -mass_spectrograph%1:06:00:: 03726371 1 0 -mass_spectrometer%1:06:00:: 03726516 1 0 -mass_spectroscopic%3:01:00:: 02918490 1 0 -mass_spectroscopy%1:04:00:: 00650743 1 0 -mass_spectrum%1:19:00:: 11500679 1 0 -mass_unit%1:23:00:: 13609214 1 0 -massachuset%1:10:00:: 06910639 1 2 -massachuset%1:18:00:: 09660373 2 0 -massachusetts%1:10:00:: 06910639 4 0 -massachusetts%1:15:00:: 09095023 1 5 -massachusetts%1:15:01:: 09095606 3 0 -massachusetts%1:18:00:: 09660373 2 0 -massachusetts_bay%1:17:00:: 09348236 1 0 -massachusetts_bay_colony%1:15:00:: 09095606 1 0 -massachusetts_fern%1:20:00:: 13230190 1 0 -massachusetts_institute_of_technology%1:06:00:: 03725968 1 0 -massacre%1:04:00:: 00223983 1 0 -massacre%2:30:00:: 00479176 1 1 -massage%1:04:00:: 00659048 1 1 -massage%2:29:00:: 00064487 2 1 -massage%2:35:00:: 01232738 1 1 -massage_parlor%1:06:00:: 03726116 2 0 -massage_parlor%1:06:01:: 03726233 1 0 -massager%1:18:00:: 10297983 1 0 -massasauga%1:05:01:: 01757677 2 0 -massasauga%1:05:02:: 01757901 1 0 -massasauga_rattler%1:05:00:: 01757677 1 0 -massasoit%1:18:00:: 11163582 1 0 -massawa%1:15:00:: 08777919 1 0 -masse%1:04:00:: 00500669 1 0 -masse_shot%1:04:00:: 00500669 1 0 -massed_fire%1:04:00:: 00989583 1 0 -massenet%1:18:00:: 11163709 1 0 -masses%1:14:00:: 08180190 1 3 -masseter%1:08:00:: 05294256 1 0 -masseur%1:18:00:: 10298202 1 3 -masseuse%1:18:00:: 10298271 1 0 -massicot%1:27:00:: 14933755 1 0 -massicotite%1:27:00:: 14933755 1 0 -massif%1:17:00:: 09348460 1 0 -massif_central%1:17:00:: 09348643 1 0 -massine%1:18:00:: 11163859 1 0 -massive%5:00:00:heavy:01 01185916 4 0 -massive%5:00:00:large:00 01389170 1 9 -massive%5:00:00:solid:02 02263875 2 0 -massive%5:00:02:large:00 01389451 3 0 -massively%4:02:00:: 00395574 1 0 -massiveness%1:07:00:: 05104421 1 0 -massiveness%1:07:01:: 05027837 2 0 -massorete%1:18:00:: 10297655 1 0 -mast%1:06:00:: 03726760 1 3 -mast%1:06:01:: 03726993 4 0 -mast%1:13:00:: 07805872 3 0 -mast%1:20:00:: 12280364 2 0 -mast_cell%1:08:00:: 05607602 1 0 -mastaba%1:06:00:: 03727067 1 0 -mastabah%1:06:00:: 03727067 1 0 -mastalgia%1:26:00:: 14328720 1 0 -mastectomy%1:04:00:: 00685508 1 0 -masted%3:01:00:: 02895668 1 1 -master%1:06:00:: 03727274 6 1 -master%1:06:01:: 03896984 10 0 -master%1:18:00:: 10280130 1 8 -master%1:18:01:: 10752930 3 1 -master%1:18:02:: 10298482 9 0 -master%1:18:03:: 10298647 4 1 -master%1:18:04:: 10388440 2 5 -master%1:18:05:: 10298798 8 0 -master%1:18:06:: 10164233 5 1 -master%1:18:07:: 10298912 7 0 -master%2:31:00:: 00597385 4 0 -master%2:31:01:: 00597634 1 4 -master%2:33:00:: 01108627 2 2 -master%2:41:00:: 02539334 3 1 -master%5:00:00:important:00 01277426 1 0 -master's_degree%1:10:00:: 06700447 1 1 -master-at-arms%1:18:00:: 10299125 1 0 -master_bedroom%1:06:00:: 03727465 1 2 -master_class%1:14:00:: 08239024 1 0 -master_copy%1:06:00:: 03727274 1 0 -master_cylinder%1:06:00:: 02889996 1 0 -master_file%1:10:00:: 06509902 1 0 -master_in_business%1:10:00:: 06701359 1 0 -master_in_business_administration%1:10:00:: 06701359 1 0 -master_in_public_affairs%1:10:00:: 06702020 1 0 -master_key%1:06:00:: 03896984 1 0 -master_of_architecture%1:10:00:: 06700844 1 0 -master_of_arts%1:10:00:: 06701001 1 0 -master_of_arts_in_library_science%1:10:00:: 06701128 1 0 -master_of_arts_in_teaching%1:10:00:: 06701251 1 0 -master_of_ceremonies%1:18:00:: 10299250 1 1 -master_of_divinity%1:10:00:: 06701495 1 0 -master_of_education%1:10:00:: 06701596 1 0 -master_of_fine_arts%1:10:00:: 06701698 1 0 -master_of_laws%1:10:00:: 06704990 1 0 -master_of_library_science%1:10:00:: 06701906 1 0 -master_of_literature%1:10:00:: 06701800 1 0 -master_of_science%1:10:00:: 06702139 1 1 -master_of_science_in_engineering%1:10:00:: 06702247 1 0 -master_of_theology%1:10:00:: 06702358 1 0 -master_plan%1:09:00:: 05899442 1 0 -master_race%1:14:00:: 07968550 1 0 -master_sergeant%1:18:00:: 10299583 1 0 -mastered%5:00:00:perfect:00 01750617 1 0 -masterful%5:00:00:skilled:00 02226979 1 0 -masterfully%4:02:01:: 00395744 1 0 -mastering%1:04:00:: 00910856 2 0 -mastering%1:09:00:: 05757234 1 0 -masterless%5:00:00:uncontrolled:00 00600879 1 0 -masterly%5:00:00:skilled:00 02226979 1 1 -mastermind%1:18:00:: 10383816 1 0 -mastermind%1:18:01:: 10126926 2 0 -mastermind%2:31:00:: 00710005 1 1 -masterpiece%1:04:00:: 00037006 2 2 -masterpiece%1:06:00:: 03727605 1 4 -masters%1:18:00:: 11164058 1 0 -mastership%1:04:00:: 00595146 2 0 -mastership%1:09:00:: 05638700 1 0 -masterstroke%1:04:00:: 00037090 1 0 -masterwort%1:20:00:: 12934036 1 0 -mastery%1:04:00:: 01128655 3 0 -mastery%1:09:00:: 05641959 1 4 -mastery%1:26:00:: 14442530 2 1 -masthead%1:06:00:: 03727738 3 0 -masthead%1:10:00:: 06344846 2 0 -masthead%1:10:01:: 06493158 1 0 -mastic%1:20:00:: 12762049 3 0 -mastic%1:27:00:: 14896321 1 0 -mastic%1:27:01:: 14704851 2 0 -mastic_tree%1:20:00:: 12762049 1 0 -masticate%2:34:00:: 01201089 2 0 -masticate%2:35:00:: 01235667 1 0 -mastication%1:04:00:: 00278810 1 0 -masticophis%1:05:00:: 01731418 1 0 -masticophis_bilineatus%1:05:00:: 01732093 1 0 -masticophis_flagellum%1:05:00:: 01731764 1 0 -masticophis_lateralis%1:05:00:: 01731941 1 0 -mastiff%1:05:00:: 02108254 1 0 -mastiff_bat%1:05:00:: 02150134 1 0 -mastigomycota%1:20:00:: 12976985 1 0 -mastigomycotina%1:20:00:: 12976985 1 0 -mastigophora%1:05:00:: 01416354 1 0 -mastigophoran%1:05:00:: 01416585 1 0 -mastigophore%1:05:00:: 01416585 1 0 -mastigoproctus%1:05:00:: 01771624 1 0 -mastigoproctus_giganteus%1:05:00:: 01771766 1 0 -mastitis%1:26:00:: 14349717 1 0 -mastocyte%1:08:00:: 05607602 1 0 -mastodon%1:05:00:: 02505998 1 0 -mastodont%1:05:00:: 02505998 1 0 -mastoid%1:08:00:: 05542193 1 0 -mastoid%3:01:00:: 02853434 2 0 -mastoid%3:01:01:: 02853534 1 0 -mastoid_bone%1:08:00:: 05542193 1 0 -mastoid_process%1:08:00:: 05542193 1 0 -mastoidal%1:08:00:: 05542193 1 0 -mastoidal%3:01:01:: 02853434 1 0 -mastoidale%1:08:00:: 05233875 1 0 -mastoidectomy%1:04:00:: 00686168 1 0 -mastoiditis%1:26:00:: 14349807 1 0 -mastopathy%1:26:00:: 14208342 1 0 -mastopexy%1:04:00:: 00682436 1 0 -mastotermes%1:05:00:: 02224466 1 0 -mastotermes_darwiniensis%1:05:00:: 02224713 1 0 -mastotermes_electrodominicus%1:05:00:: 02225081 1 0 -mastotermes_electromexicus%1:05:00:: 02224937 1 0 -mastotermitidae%1:05:00:: 02224323 1 0 -masturbate%2:35:00:: 01430633 2 0 -masturbate%2:35:01:: 01430952 1 0 -masturbation%1:04:00:: 00855674 1 0 -masturbator%1:18:00:: 10299700 1 0 -mat%1:06:00:: 03727837 1 4 -mat%1:06:02:: 03727946 3 1 -mat%1:06:03:: 03728131 7 0 -mat%1:06:04:: 03728318 2 1 -mat%1:07:00:: 04956110 6 0 -mat%1:10:00:: 06701251 5 0 -mat%1:17:00:: 09348827 4 0 -mat%2:30:00:: 00565592 2 0 -mat%2:35:00:: 01462928 1 0 -mat%5:00:00:dull:02 00283972 1 0 -mat_up%2:30:00:: 00565592 1 0 -mata_hari%1:18:00:: 11164163 1 0 -matabele%1:10:00:: 06994488 1 0 -matador%1:18:00:: 09836519 1 0 -matai%1:20:00:: 11658544 1 0 -matakam%1:10:00:: 06984247 1 0 -matamoros%1:15:00:: 08743786 1 0 -match%1:06:00:: 03728437 1 4 -match%1:06:01:: 03728811 4 1 -match%1:06:02:: 03728982 3 1 -match%1:09:00:: 05696020 9 0 -match%1:11:00:: 07470671 2 1 -match%1:14:00:: 07988857 8 0 -match%1:18:00:: 09626238 7 0 -match%1:18:01:: 09900981 6 0 -match%1:23:00:: 13596673 5 0 -match%2:30:00:: 00456596 9 0 -match%2:30:01:: 00456740 5 3 -match%2:30:07:: 00417001 10 0 -match%2:33:00:: 01081152 8 0 -match%2:35:08:: 01292885 3 6 -match%2:35:10:: 01293389 7 0 -match%2:40:00:: 02332627 2 12 -match%2:41:00:: 02594674 6 0 -match%2:42:00:: 02657219 1 16 -match%2:42:01:: 02672187 4 5 -match-up%1:04:00:: 00389953 1 0 -match_game%1:11:00:: 07471126 1 0 -match_plane%1:06:00:: 03729647 1 0 -match_play%1:04:00:: 00466630 1 0 -match_point%1:23:00:: 13610669 1 0 -matchboard%1:06:00:: 03729131 1 0 -matchbook%1:06:00:: 03729308 1 0 -matchbox%1:06:00:: 03729402 1 0 -matchbush%1:20:00:: 11974126 1 0 -matched%3:00:00:: 01486489 2 0 -matched%5:00:00:competitive:00 00513048 1 1 -matched_game%1:11:00:: 07471126 1 0 -matcher%1:18:01:: 10299875 1 0 -matchet%1:06:00:: 03699591 1 0 -matching%5:00:01:matched:00 01486704 2 1 -matching%5:00:02:matched:00 01486854 1 2 -matching_funds%1:21:00:: 13423118 1 2 -matchless%5:00:00:incomparable:00 00505410 1 0 -matchlock%1:06:00:: 03729482 1 0 -matchmaker%1:18:00:: 10299875 1 0 -matchmaking%1:04:00:: 01240628 1 0 -matchstick%1:06:00:: 03729826 1 0 -matchup%1:04:00:: 00389953 1 0 -matchweed%1:20:00:: 11974126 1 0 -matchwood%1:17:00:: 09348949 3 0 -matchwood%1:27:01:: 14948983 2 0 -matchwood%1:27:02:: 14949075 1 0 -mate%1:04:00:: 00167764 10 0 -mate%1:06:00:: 03728811 5 1 -mate%1:13:00:: 07926785 9 0 -mate%1:18:00:: 10640620 4 1 -mate%1:18:01:: 10300303 3 2 -mate%1:18:02:: 10300041 1 4 -mate%1:18:03:: 10300154 8 0 -mate%1:18:04:: 10695050 2 2 -mate%1:20:00:: 12757668 7 0 -mate%1:23:00:: 13743100 6 0 -mate%2:33:00:: 01114475 3 0 -mate%2:35:00:: 01428853 1 7 -mate%2:35:02:: 01292885 2 1 -mated%3:00:00:: 01482956 1 0 -mated%5:00:00:married:00 01481932 3 0 -mated%5:00:00:matched:00 01486960 2 0 -mateless%5:00:00:unmarried:00 01482658 2 0 -mateless%5:00:00:unmated:00 01483251 1 0 -matelote%1:13:00:: 07591813 1 0 -mater%1:18:00:: 10300500 1 0 -mater_turrita%1:18:00:: 09594093 1 0 -materfamilias%1:18:00:: 10302576 1 0 -materia_medica%1:09:00:: 06054892 1 0 -material%1:06:00:: 03309808 3 7 -material%1:06:01:: 03729951 4 5 -material%1:10:00:: 06635509 2 34 -material%1:18:00:: 10300654 5 0 -material%1:27:00:: 14580897 1 73 -material%3:00:01:: 00626800 2 3 -material%3:00:02:: 01487627 3 1 -material%3:00:03:: 00625393 6 0 -material%3:00:04:: 00629997 5 0 -material%5:00:00:physical:00 01779193 4 1 -material%5:00:00:worldly:00 02577734 1 5 -material_body%1:08:00:: 05217168 1 0 -material_breach%1:04:00:: 00070462 1 0 -material_possession%1:21:00:: 13244753 1 0 -material_resource%1:21:00:: 13353156 1 0 -material_witness%1:18:00:: 10301089 1 0 -materialisation%1:11:00:: 07323024 2 0 -materialisation%1:11:01:: 07295047 3 0 -materialisation%1:22:00:: 13512036 1 0 -materialise%2:30:00:: 00344174 1 0 -materialism%1:09:00:: 05972585 2 0 -materialism%1:26:00:: 14039310 1 2 -materialist%1:18:00:: 10300829 2 0 -materialist%1:18:01:: 10300963 1 0 -materialistic%5:00:00:middle-class:00 00260780 2 0 -materialistic%5:00:00:worldly:00 02577907 1 0 -materialistically%4:02:00:: 00395916 1 0 -materiality%1:07:00:: 04760771 2 0 -materiality%1:24:00:: 13794658 1 0 -materialization%1:11:00:: 07323024 2 0 -materialization%1:11:01:: 07295047 3 0 -materialization%1:22:00:: 13512036 1 0 -materialize%2:30:00:: 00344174 1 3 -materially%4:02:00:: 00136870 1 1 -materially%4:02:01:: 00137011 2 0 -materials_handling%1:04:00:: 00713784 1 0 -materiel%1:06:00:: 03730153 1 0 -maternal%3:00:00:: 01734884 1 1 -maternal%3:00:04:: 01722529 3 0 -maternal%3:01:00:: 02759367 2 0 -maternal%5:00:00:related:01 01972349 4 0 -maternal-infant_bonding%1:24:00:: 13782533 1 0 -maternal_language%1:10:00:: 06904748 1 0 -maternal_quality%1:07:00:: 04872958 1 0 -maternalism%1:04:00:: 00655540 2 0 -maternalism%1:07:00:: 04872958 1 0 -maternalistic%5:00:00:maternal:00 01735130 1 0 -maternally%4:02:00:: 00396055 1 0 -maternity%1:07:00:: 04872958 3 0 -maternity%1:24:00:: 13814041 2 0 -maternity%1:26:00:: 14046202 1 0 -maternity_hospital%1:06:00:: 03730334 1 0 -maternity_ward%1:06:00:: 03730494 1 0 -mates%1:14:00:: 07988857 1 0 -matey%5:00:00:friendly:01 01075524 1 0 -math%1:09:00:: 06000644 1 1 -math_teacher%1:18:00:: 10302446 1 0 -mathematical%3:00:00:: 02230795 2 0 -mathematical%3:01:00:: 02937876 1 3 -mathematical%5:00:00:exact:00 00915141 5 0 -mathematical%5:00:00:possible:00 01822933 4 0 -mathematical%5:00:00:unquestionable:00 01918771 3 0 -mathematical_function%1:24:00:: 13783816 1 0 -mathematical_group%1:09:00:: 06016853 1 0 -mathematical_logic%1:09:00:: 06164665 1 0 -mathematical_notation%1:10:00:: 06808720 1 0 -mathematical_operation%1:04:00:: 00869583 1 0 -mathematical_process%1:04:00:: 00869583 1 0 -mathematical_product%1:09:00:: 05859630 1 0 -mathematical_proof%1:10:00:: 06647864 1 0 -mathematical_relation%1:24:00:: 13783581 1 0 -mathematical_space%1:14:00:: 08001685 1 0 -mathematical_statement%1:10:00:: 06732169 1 0 -mathematical_statistician%1:18:00:: 10653238 1 0 -mathematical_symbol%1:10:00:: 06840047 1 0 -mathematically%4:02:00:: 00064829 1 3 -mathematician%1:18:00:: 10301261 1 0 -mathematics%1:09:00:: 06000644 1 4 -mathematics_department%1:14:00:: 08117052 1 0 -mathematics_teacher%1:18:00:: 10302446 1 0 -mathew_b._brady%1:18:00:: 10861535 1 0 -mathias%1:18:00:: 11164332 1 0 -maths%1:09:00:: 06000644 1 0 -matilija_poppy%1:20:00:: 11907689 1 0 -matinee%1:10:00:: 06894111 1 0 -matinee_idol%1:18:00:: 10198437 1 0 -mating%1:04:00:: 00847340 1 2 -matins%1:28:00:: 15229677 1 0 -matisse%1:18:00:: 11164505 1 0 -matman%1:18:00:: 10793168 1 0 -matoaka%1:18:00:: 11240249 1 0 -matriarch%1:18:00:: 10302576 1 1 -matriarch%1:18:01:: 10302700 2 0 -matriarchal%3:00:00:: 01738335 1 0 -matriarchate%1:14:00:: 07972888 1 0 -matriarchic%5:00:00:matriarchal:00 01738495 1 0 -matriarchy%1:14:00:: 07972888 1 0 -matric%1:04:00:: 01248608 1 0 -matricaria%1:20:00:: 11994827 1 0 -matricaria_chamomilla%1:20:00:: 11995092 1 0 -matricaria_inodorum%1:20:00:: 12028424 1 0 -matricaria_matricarioides%1:20:00:: 11995396 1 0 -matricaria_oreades%1:20:00:: 12028818 1 0 -matricaria_recutita%1:20:00:: 11995092 1 0 -matricaria_tchihatchewii%1:20:00:: 12029039 1 0 -matricentric%5:00:00:matriarchal:00 01738663 1 0 -matricide%1:04:00:: 00221819 2 0 -matricide%1:18:00:: 10302816 1 0 -matriculate%1:18:00:: 10302905 1 0 -matriculate%2:41:00:: 02471203 1 2 -matriculation%1:04:00:: 01248608 1 0 -matrikin%1:18:00:: 10236521 1 0 -matrilineage%1:24:00:: 13814755 1 0 -matrilineal%5:00:00:lineal:00 01416809 1 0 -matrilineal_kin%1:18:00:: 10236521 1 0 -matrilineal_sib%1:18:00:: 10236521 1 0 -matrilineally%4:02:00:: 00391803 1 0 -matrilinear%5:00:00:lineal:00 01416809 1 0 -matrimonial%3:01:00:: 02852920 1 0 -matrimonial_law%1:09:00:: 06162377 1 0 -matrimony%1:04:00:: 01036903 2 0 -matrimony%1:26:00:: 13963970 1 1 -matrimony_vine%1:20:00:: 12904938 1 0 -matrisib%1:18:00:: 10236521 1 0 -matrix%1:06:00:: 03730655 6 0 -matrix%1:08:00:: 05582191 5 0 -matrix%1:08:01:: 05582305 4 0 -matrix%1:14:00:: 08267640 1 1 -matrix%1:17:00:: 09349055 3 0 -matrix%1:27:00:: 14949227 2 0 -matrix_addition%1:04:00:: 00872900 1 0 -matrix_algebra%1:09:00:: 06013584 1 0 -matrix_inversion%1:04:00:: 00873084 1 0 -matrix_multiplication%1:04:00:: 00872986 1 0 -matrix_operation%1:04:00:: 00872722 1 0 -matrix_printer%1:06:00:: 03225777 1 0 -matrix_transposition%1:04:00:: 00873238 1 0 -matron%1:18:00:: 10303037 1 1 -matron%1:18:01:: 10303186 3 0 -matron%1:18:02:: 10303310 2 0 -matron_of_honor%1:18:00:: 10303385 1 0 -matronly%5:00:00:womanly:00 01485254 1 0 -matronymic%1:10:00:: 06336149 1 0 -matsyendra%1:07:00:: 05082116 1 1 -matt%1:07:00:: 04956110 1 0 -matt%5:00:00:dull:02 00283972 1 0 -matt-up%2:30:00:: 00565592 1 0 -matte%1:07:00:: 04956110 2 0 -matte%1:27:00:: 14949384 1 0 -matte%2:30:00:: 00565592 1 0 -matte%5:00:00:dull:02 00283972 1 0 -matte_up%2:30:00:: 00565592 1 0 -matted%5:00:00:dull:02 00283972 2 0 -matted%5:00:00:tangled:00 00255918 1 1 -matter%1:03:00:: 00020827 3 7 -matter%1:07:00:: 05169242 5 1 -matter%1:09:00:: 05814291 2 32 -matter%1:09:01:: 05671325 1 35 -matter%1:09:02:: 05688397 4 1 -matter%1:10:00:: 06365467 6 0 -matter%2:42:00:: 02645839 1 21 -matter-of-course%5:00:00:expected:00 00930170 1 0 -matter-of-fact%5:00:00:practical:00 01835409 2 0 -matter-of-fact%5:00:00:unrhetorical:00 02018649 1 0 -matter_of_course%1:11:00:: 07295850 1 1 -matter_of_fact%1:09:00:: 05818620 2 0 -matter_of_fact%1:10:00:: 06784317 1 0 -matter_of_law%1:10:00:: 06784470 1 0 -matter_to%2:42:00:: 02678663 1 4 -matterhorn%1:17:00:: 09349192 1 0 -matteuccia%1:20:00:: 13197800 1 0 -matteuccia_struthiopteris%1:20:00:: 13198054 1 0 -matthew%1:10:00:: 06441607 2 0 -matthew%1:18:00:: 11164671 1 0 -matthew_arnold%1:18:00:: 10823760 1 0 -matthew_calbraith_perry%1:18:00:: 11230402 1 0 -matthew_flinders%1:18:00:: 10973339 1 0 -matthew_walker%1:06:00:: 03730788 1 0 -matthew_walker_knot%1:06:00:: 03730788 1 0 -matthias_schleiden%1:18:00:: 11284541 1 0 -matthiola%1:20:00:: 11892460 1 0 -matthiola_incana%1:20:00:: 11892817 1 0 -matting%1:06:00:: 03730893 1 1 -matting%1:06:01:: 03728318 2 0 -mattock%1:06:00:: 03731019 1 0 -mattole%1:10:00:: 06919911 2 0 -mattole%1:18:00:: 09660524 1 0 -mattress%1:06:00:: 03731164 1 0 -mattress_cover%1:06:00:: 03731483 1 0 -mattress_pad%1:06:00:: 03731590 1 0 -maturate%2:29:00:: 00096766 3 0 -maturate%2:30:00:: 00250181 1 0 -maturate%2:30:01:: 00248026 2 0 -maturation%1:22:00:: 13489037 2 1 -maturation%1:22:01:: 13512238 1 2 -maturation%1:22:02:: 13479889 3 0 -maturational%3:01:00:: 02979722 1 0 -mature%2:29:04:: 00097179 6 0 -mature%2:30:00:: 00250181 1 5 -mature%2:30:01:: 00248026 5 0 -mature%2:30:03:: 00577998 3 0 -mature%2:30:04:: 00249969 4 0 -mature%2:32:00:: 00926156 2 0 -mature%3:00:01:: 01488245 3 1 -mature%3:00:02:: 01491775 1 4 -mature%3:00:04:: 01095914 5 0 -mature%3:00:06:: 01493173 4 0 -mature%5:00:00:developed:00 00742316 2 4 -mature-onset_diabetes%1:26:00:: 14118936 1 0 -matured%5:00:00:developed:00 00742316 2 0 -matured%5:00:00:mature:01 01489085 1 0 -maturely%4:02:00:: 00383972 1 0 -maturement%1:22:00:: 13512238 1 0 -matureness%1:26:00:: 14424780 1 0 -maturity%1:26:00:: 14424780 2 11 -maturity%1:28:00:: 15152817 1 16 -maturity%1:28:01:: 15153225 3 1 -maturity-onset_diabetes%1:26:00:: 14118936 1 0 -maturity-onset_diabetes_mellitus%1:26:00:: 14118936 1 0 -maturity_date%1:28:00:: 15153225 1 0 -matutinal%3:01:00:: 02759480 1 0 -matzah%1:13:00:: 07684164 1 0 -matzah_ball%1:13:00:: 07701912 1 0 -matzah_meal%1:13:00:: 07568389 1 0 -matzo%1:13:00:: 07684164 1 0 -matzo_ball%1:13:00:: 07701912 1 0 -matzo_meal%1:13:00:: 07568389 1 0 -matzoh%1:13:00:: 07684164 1 0 -matzoh_ball%1:13:00:: 07701912 1 0 -matzoh_meal%1:13:00:: 07568389 1 0 -maud_gonne%1:18:00:: 11007059 1 0 -maudlin%5:00:00:emotional:00 00854413 1 0 -maugham%1:18:00:: 11164970 1 0 -maui%1:15:00:: 09080146 1 0 -maui_island%1:15:00:: 09080146 1 0 -maul%1:06:00:: 03731695 1 0 -maul%2:35:00:: 01232098 2 0 -maul%2:35:01:: 01232272 1 0 -maul_oak%1:20:00:: 12270946 1 0 -mauldin%1:18:00:: 11165164 1 0 -maule's_quince%1:20:00:: 12624568 1 0 -mauler%1:18:00:: 10303513 1 0 -maulers%1:08:00:: 05565192 1 0 -maulstick%1:06:00:: 03731882 1 0 -mauna_kea%1:15:00:: 09176446 1 0 -mauna_loa%1:15:00:: 09176608 1 0 -maund%1:23:00:: 13718267 1 0 -maunder%2:32:00:: 01044533 2 0 -maunder%2:32:01:: 01036804 3 0 -maunder%2:38:00:: 01882081 1 0 -maundy%1:11:00:: 07455151 1 0 -maundy_money%1:21:00:: 13393427 1 0 -maundy_thursday%1:28:00:: 15193526 1 0 -maupassant%1:18:00:: 11165339 1 0 -maureen_catherine_connolly%1:18:00:: 10907236 1 0 -mauriac%1:18:00:: 11165519 1 0 -maurice_barrymore%1:18:00:: 10835218 1 0 -maurice_chevalier%1:18:00:: 10895549 1 0 -maurice_de_vlaminck%1:18:00:: 11368240 1 0 -maurice_hugh_frederick_wilkins%1:18:00:: 11387362 1 0 -maurice_ravel%1:18:00:: 11255085 1 0 -maurice_utrillo%1:18:00:: 11358225 1 0 -maurice_wilkins%1:18:00:: 11387362 1 0 -mauritania%1:15:00:: 08966820 1 0 -mauritanian%1:18:00:: 09722399 1 0 -mauritanian%3:01:00:: 03084759 1 0 -mauritanian_monetary_unit%1:23:00:: 13689630 1 0 -mauritanie%1:15:00:: 08966820 1 0 -mauritian%1:18:00:: 09722530 1 0 -mauritian%3:01:01:: 03084759 1 0 -mauritian_monetary_unit%1:23:00:: 13704529 1 0 -mauritian_rupee%1:23:00:: 13704643 1 0 -mauritius%1:15:00:: 08967484 1 0 -mauritius%1:15:01:: 08967329 2 0 -maurois%1:18:00:: 11165712 1 0 -mauser%1:06:00:: 03732020 2 0 -mauser%1:18:00:: 11165854 1 0 -mausoleum%1:06:00:: 03732114 1 1 -mausoleum_at_halicarnasus%1:06:00:: 03732252 1 0 -mauve%1:07:00:: 04970544 1 0 -mauve%5:00:00:chromatic:00 00377890 1 2 -mauve-blue%5:00:00:chromatic:00 00378002 1 0 -mauve-pink%5:00:00:chromatic:00 00378084 1 0 -maven%1:18:00:: 09762509 1 0 -maverick%1:05:00:: 02404028 2 0 -maverick%1:18:00:: 10303654 1 0 -maverick%5:00:00:unconventional:00 00607202 1 0 -mavik%1:06:00:: 04470037 1 0 -mavin%1:18:00:: 09762509 1 0 -mavis%1:05:00:: 01558149 1 0 -maw%1:08:00:: 05302307 1 0 -mawkish%5:00:00:emotional:00 00854413 1 0 -mawkishly%4:02:00:: 00396200 1 0 -mawkishness%1:07:00:: 04627506 2 0 -mawkishness%1:12:00:: 07482267 1 0 -mawlamyine%1:15:00:: 08716076 1 0 -max%1:06:00:: 04253751 1 0 -max_beerbohm%1:18:00:: 10841241 1 0 -max_born%1:18:00:: 10858164 1 0 -max_bruch%1:18:00:: 10867933 1 0 -max_delbruck%1:18:00:: 10928810 1 0 -max_ernst%1:18:00:: 10960561 1 0 -max_ferdinand_perutz%1:18:00:: 11230977 1 0 -max_karl_ernst_ludwig_planck%1:18:00:: 11238906 1 0 -max_muller%1:18:00:: 11195452 1 0 -max_out%2:38:00:: 02007111 1 0 -max_perutz%1:18:00:: 11230977 1 0 -max_planck%1:18:00:: 11238906 1 0 -max_weber%1:18:00:: 11378662 2 0 -max_weber%1:18:01:: 11378805 1 0 -maxfield_frederick_parrish%1:18:00:: 11224173 1 0 -maxfield_parrish%1:18:00:: 11224173 1 0 -maxi%1:06:00:: 03732458 1 0 -maxi%3:00:00:: 01433081 1 0 -maxilla%1:08:00:: 05284132 1 0 -maxillaria%1:20:00:: 12073217 1 0 -maxillary%1:08:00:: 05284132 1 0 -maxillary%3:01:00:: 02878147 1 0 -maxillary_artery%1:08:00:: 05350679 1 0 -maxillary_sinus%1:08:00:: 05253443 1 0 -maxillary_vein%1:08:00:: 05373300 1 0 -maxillodental%3:01:00:: 02878252 1 0 -maxillofacial%3:01:00:: 02878368 1 0 -maxillomandibular%3:01:00:: 02878580 1 0 -maxim%1:10:00:: 07152948 1 1 -maxim%1:18:00:: 11166060 2 0 -maxim_gorki%1:18:00:: 11008870 1 0 -maxim_gun%1:06:00:: 03732543 1 0 -maximal%3:00:00:: 01495725 1 2 -maximally%4:02:00:: 00396363 1 0 -maximation%1:04:00:: 00367066 1 0 -maximian%1:18:00:: 11166251 1 0 -maximilian's_sunflower%1:20:00:: 11979354 1 0 -maximilien_paul_emile_littre%1:18:00:: 11135371 1 0 -maximisation%1:04:00:: 00367066 1 0 -maximise%2:30:00:: 00428583 2 0 -maximise%2:30:01:: 00428870 1 0 -maximising%5:00:00:increasing:00 02536026 1 0 -maximization%1:04:00:: 00367066 2 0 -maximization%1:04:01:: 00870786 1 0 -maximize%2:30:00:: 00428583 1 2 -maximize%2:30:01:: 00428870 2 1 -maximizing%5:00:00:increasing:00 02536026 1 0 -maximum%1:07:00:: 05124928 2 1 -maximum%1:15:00:: 08598132 3 0 -maximum%1:23:00:: 13776137 1 11 -maximum%3:00:00:: 01495725 1 36 -maximum_and_minimum_thermometer%1:06:00:: 03732658 1 0 -maxmilien_de_bethune%1:18:00:: 11325146 1 0 -maxmillien_marie_isidore_de_robespierre%1:18:00:: 11265183 1 0 -maxostoma%1:05:00:: 01445998 1 0 -maxwell%1:18:00:: 11166504 2 0 -maxwell%1:23:00:: 13638375 1 0 -maxwell's_demon%1:18:00:: 09489146 1 0 -maxwell's_equations%1:10:00:: 06670711 1 0 -maxwell-boltzmann_distribution_law%1:09:00:: 05877178 1 0 -maxwell_anderson%1:18:00:: 10817607 1 0 -maxzide%1:06:00:: 03732828 1 0 -may%1:20:00:: 12627750 2 0 -may%1:28:00:: 15211484 1 29 -may_1%1:28:00:: 15189033 1 0 -may_24%1:28:00:: 15200164 1 0 -may_apple%1:20:01:: 11700058 2 0 -may_apple%1:20:02:: 11700279 1 0 -may_beetle%1:05:01:: 02174659 1 0 -may_beetle%1:05:02:: 02172870 2 0 -may_blob%1:20:00:: 11728099 1 0 -may_bug%1:05:01:: 02174659 1 0 -may_bug%1:05:02:: 02172870 2 0 -may_day%1:28:00:: 15189033 1 1 -may_fish%1:05:00:: 01447331 1 0 -may_lily%1:20:00:: 12471544 1 0 -may_queen%1:18:00:: 10304160 1 0 -may_wine%1:13:00:: 07931870 1 0 -maya%1:10:00:: 06919215 2 0 -maya%1:18:00:: 09648309 1 0 -maya_lin%1:18:00:: 11132245 1 0 -mayaca%1:20:00:: 12608620 1 0 -mayacaceae%1:20:00:: 12608447 1 0 -mayakovski%1:18:00:: 11166732 1 0 -mayan%1:10:00:: 06919215 2 0 -mayan%1:18:00:: 09648309 1 0 -mayan_language%1:10:00:: 06919215 1 0 -mayapple%1:20:01:: 11700058 1 0 -mayas%1:14:00:: 08484386 1 0 -maybe%4:02:00:: 00300247 1 57 -mayday%1:10:00:: 06803954 1 0 -mayeng%1:20:00:: 12200905 1 0 -mayenne%1:15:00:: 08943461 1 0 -mayer%1:18:00:: 11166877 2 0 -mayer%1:18:01:: 11167088 1 0 -mayetiola%1:05:00:: 02189535 1 0 -mayetiola_destructor%1:05:00:: 02189670 1 0 -mayfish%1:05:00:: 01447331 1 0 -mayflower%1:06:00:: 03732992 1 1 -mayflower%1:20:00:: 12235051 2 0 -mayfly%1:05:00:: 02262449 1 0 -mayhap%4:02:00:: 00300247 1 0 -mayhaw%1:20:00:: 12627526 1 0 -mayhem%1:04:00:: 00770151 1 0 -mayhem%1:04:01:: 00554107 2 0 -mayidism%1:26:00:: 14200873 1 0 -mayo%1:13:00:: 07834507 1 0 -mayonnaise%1:13:00:: 07834507 1 0 -mayor%1:18:00:: 10303814 1 9 -mayoral%3:01:00:: 03085072 1 0 -mayoralty%1:04:00:: 00595333 1 0 -mayoress%1:18:00:: 10304018 2 0 -mayoress%1:18:01:: 10304086 1 0 -maypole%1:06:00:: 03733131 1 0 -maypop%1:20:00:: 12384227 1 0 -mays%1:18:00:: 11167269 1 0 -mayweed%1:20:00:: 11923174 1 0 -mazama%1:05:00:: 02434598 1 0 -mazar-i-sharif%1:15:00:: 08704554 1 0 -mazatlan%1:15:00:: 08743945 1 0 -mazdaism%1:09:00:: 06244149 1 0 -maze%1:06:00:: 03733281 1 2 -maze%1:09:00:: 05685879 2 0 -mazed%5:00:00:perplexed:00 01766133 1 0 -mazer%1:06:00:: 03733465 1 0 -mazopathy%1:26:00:: 14208342 1 0 -mazurka%1:04:00:: 00538052 2 0 -mazurka%1:10:00:: 07056021 1 0 -mazy%5:00:00:complex:00 02178628 1 0 -mazzard%1:20:00:: 12642600 1 0 -mazzard_cherry%1:20:00:: 12642600 1 0 -mazzini%1:18:00:: 11167418 1 0 -mb%1:10:00:: 06699225 4 0 -mb%1:23:00:: 13628056 3 0 -mb%1:23:01:: 13628246 2 0 -mb%1:23:02:: 13628419 1 0 -mba%1:10:00:: 06701359 1 0 -mbabane%1:15:00:: 09031501 1 0 -mbd%1:26:00:: 14056280 1 0 -mbeya%1:15:00:: 09035632 1 0 -mbit%1:23:00:: 13628419 1 0 -mbundu%1:14:00:: 08484522 1 0 -mc%1:28:00:: 15279957 1 5 -mcalester%1:15:00:: 09132367 1 0 -mcallen%1:15:00:: 09145437 1 0 -mcardle's_disease%1:26:00:: 14160179 1 0 -mcburney's_point%1:08:00:: 05608419 1 0 -mccarthy%1:18:00:: 11167595 2 0 -mccarthy%1:18:01:: 11167792 1 0 -mccarthyism%1:04:00:: 00426388 1 0 -mccartney%1:18:00:: 11167952 1 0 -mccauley%1:18:00:: 11168218 1 0 -mccormick%1:18:00:: 11168513 2 0 -mccormick%1:18:01:: 11168645 1 0 -mccullers%1:18:00:: 11168839 1 0 -mcg%1:23:00:: 13722929 1 0 -mcgraw%1:18:00:: 11168974 1 0 -mcguffey%1:18:00:: 11169135 1 0 -mcguffey_eclectic_readers%1:10:00:: 06415186 1 0 -mcguffin%1:09:00:: 05865774 1 0 -mcia%1:14:00:: 08194546 1 0 -mcintosh%1:13:00:: 07740954 1 0 -mckim%1:18:00:: 11169294 1 0 -mckinley%1:17:00:: 09349425 2 0 -mckinley%1:18:00:: 11169418 1 0 -mcluhan%1:18:00:: 11169595 1 0 -mcmaster%1:18:00:: 11169764 1 0 -mcpherson%1:18:00:: 11169943 1 0 -md%1:10:00:: 06703321 4 0 -md%1:15:00:: 09093608 3 0 -md%1:18:00:: 10020890 2 0 -md%1:27:00:: 14645092 1 0 -mdi%1:14:00:: 08047501 1 0 -mdiv%1:10:00:: 06701495 1 0 -mdma%1:06:00:: 03756184 1 0 -me%1:15:00:: 09092497 1 0 -mea_culpa%1:10:00:: 06633596 1 0 -mead%1:13:00:: 07890750 3 0 -mead%1:18:00:: 11170123 2 0 -mead%1:18:01:: 11170248 1 0 -mead's_milkweed%1:20:00:: 13234857 1 0 -meade%1:18:00:: 11170438 2 0 -meade%1:18:01:: 11170604 1 0 -meadow%1:15:00:: 08570634 1 6 -meadow-beauty_family%1:20:00:: 12348774 1 0 -meadow_beauty%1:20:00:: 12350032 1 0 -meadow_bright%1:20:00:: 11728099 1 0 -meadow_buttercup%1:20:00:: 11720643 1 0 -meadow_clary%1:20:00:: 12866002 1 0 -meadow_cranesbill%1:20:00:: 12686274 1 0 -meadow_cress%1:20:00:: 11882074 1 0 -meadow_fern%1:20:00:: 13228017 1 0 -meadow_fescue%1:20:00:: 12121610 1 0 -meadow_foxtail%1:20:00:: 12107710 1 0 -meadow_goldenrod%1:20:00:: 12016567 1 0 -meadow_grass%1:20:00:: 12131550 1 0 -meadow_jumping_mouse%1:05:00:: 02351343 1 0 -meadow_leek%1:20:00:: 12432574 1 0 -meadow_lily%1:20:00:: 12426749 1 0 -meadow_mouse%1:05:00:: 02341288 1 0 -meadow_mushroom%1:20:00:: 13001529 1 0 -meadow_pea%1:20:00:: 12541157 1 0 -meadow_pipit%1:05:00:: 01528845 1 0 -meadow_rue%1:20:00:: 11738547 1 0 -meadow_saffron%1:20:00:: 12455540 1 0 -meadow_salsify%1:20:00:: 12027658 1 0 -meadow_saxifrage%1:20:00:: 12793494 1 0 -meadow_spikemoss%1:20:00:: 13224922 1 0 -meadow_spittlebug%1:05:00:: 02258198 1 0 -meadow_vole%1:05:00:: 02341288 1 0 -meadowgrass%1:20:00:: 12131550 1 0 -meadowlark%1:05:00:: 01573074 1 0 -meager%3:00:00:: 00106456 1 4 -meagerly%3:00:00:: 00106456 1 0 -meagerly%4:02:00:: 00396699 1 0 -meagerness%1:07:00:: 05113462 1 0 -meagre%3:00:00:: 00106456 1 0 -meagrely%4:02:00:: 00396699 1 0 -meagreness%1:07:00:: 05113462 1 0 -meal%1:13:00:: 07573696 1 20 -meal%1:13:01:: 07567707 3 0 -meal%1:28:00:: 15245990 2 0 -meal_plan%1:21:00:: 13415547 1 0 -meal_ticket%1:10:00:: 06518420 2 0 -meal_ticket%1:21:00:: 13366428 1 0 -mealberry%1:20:00:: 12231358 1 0 -mealie%1:20:00:: 12144313 1 0 -mealtime%1:28:00:: 15165637 1 0 -mealworm%1:05:00:: 02181477 1 0 -mealy%3:01:00:: 02759910 1 0 -mealy%5:00:00:coarse:00 02231502 2 0 -mealy-mouthed%5:00:00:indirect:02 00768927 1 0 -mealy_bug%1:05:00:: 02250822 1 0 -mealy_sage%1:20:00:: 12865239 1 0 -mealybug%1:05:00:: 02250822 1 0 -mealymouthed%5:00:00:indirect:02 00768927 1 0 -mean%1:09:00:: 06023969 1 10 -mean%2:31:00:: 00708538 4 27 -mean%2:31:01:: 00730052 6 8 -mean%2:31:05:: 00708840 7 0 -mean%2:32:01:: 00955148 1 93 -mean%2:32:03:: 00931852 3 43 -mean%2:42:00:: 02635189 2 89 -mean%2:42:03:: 02742482 5 9 -mean%5:00:00:contemptible:00 00905039 8 0 -mean%5:00:00:ignoble:01 01589650 3 3 -mean%5:00:00:nasty:00 01587787 2 6 -mean%5:00:00:normal:01 01594146 1 16 -mean%5:00:00:poor:03 02025718 5 0 -mean%5:00:00:skilled:00 02227663 4 0 -mean%5:00:01:stingy:00 01112969 7 0 -mean%5:00:02:stingy:00 01113807 6 0 -mean_deviation%1:09:00:: 06023476 1 0 -mean_deviation_from_the_mean%1:09:00:: 06023476 1 0 -mean_distance%1:07:00:: 05084982 1 0 -mean_solar_day%1:28:00:: 15155220 1 0 -mean_solar_time%1:28:00:: 15156537 1 0 -mean_sun%1:09:00:: 05890021 1 0 -mean_time%1:28:00:: 15156537 1 0 -mean_value%1:09:00:: 06023969 1 0 -meander%1:04:00:: 00284409 2 0 -meander%1:17:00:: 09349648 1 0 -meander%2:38:00:: 01882814 1 1 -meandering%5:00:00:indirect:00 00763407 1 2 -meanderingly%4:02:00:: 00397197 1 0 -meanie%1:18:00:: 10304278 1 0 -meaning%1:09:00:: 05919866 2 31 -meaning%1:10:00:: 06601327 1 48 -meaning%5:00:00:meaningful:00 01497387 1 0 -meaningful%3:00:00:: 01496976 1 8 -meaningfully%4:02:00:: 00397327 1 0 -meaningfulness%1:07:00:: 05170236 1 1 -meaningless%3:00:00:: 01497736 1 4 -meaninglessness%1:07:00:: 05173795 2 0 -meaninglessness%1:10:00:: 06607339 1 0 -meanly%4:02:00:: 00397466 4 0 -meanly%4:02:01:: 00397610 3 0 -meanly%4:02:02:: 00397720 2 0 -meanly%4:02:04:: 00407053 1 0 -meanness%1:07:00:: 04845684 1 1 -meanness%1:07:01:: 04833687 2 0 -means%1:04:00:: 00172710 1 50 -means%1:06:00:: 03733547 2 11 -means%1:21:00:: 13353858 3 0 -means_grass%1:20:00:: 12138905 1 0 -means_test%1:04:00:: 00637677 1 0 -meanspirited%3:00:02:: 01115081 1 0 -meanspirited%5:00:00:ignoble:01 01589650 2 0 -meanspiritedly%4:02:00:: 00397930 1 0 -meantime%1:28:00:: 15272887 1 0 -meantime%4:02:00:: 00064946 1 0 -meanwhile%1:28:00:: 15272887 1 0 -meanwhile%4:02:00:: 00064946 2 6 -meanwhile%4:02:01:: 00065184 1 10 -meany%1:18:00:: 10304278 2 0 -meany%1:18:01:: 11170764 1 0 -mearstone%1:10:00:: 07259438 1 0 -measles%1:26:00:: 14123044 1 0 -measly%5:00:00:meager:00 00107384 1 0 -measurability%1:07:00:: 05209822 1 0 -measurable%3:00:00:: 01498769 1 4 -measurable%5:00:00:important:00 01279310 2 1 -measurably%4:02:00:: 00398204 1 0 -measure%1:03:00:: 00033615 2 5 -measure%1:04:00:: 00996969 4 2 -measure%1:04:01:: 00174412 1 5 -measure%1:06:00:: 03735637 8 0 -measure%1:06:01:: 03733644 9 0 -measure%1:10:00:: 06864725 7 0 -measure%1:10:01:: 07094093 6 1 -measure%1:10:02:: 06536853 3 2 -measure%1:10:03:: 07260623 5 1 -measure%2:30:00:: 00489837 2 20 -measure%2:31:00:: 00647094 1 35 -measure%2:31:01:: 00681429 4 10 -measure%2:42:00:: 02704349 3 14 -measure_out%2:31:00:: 00647094 1 0 -measure_up%2:42:00:: 02679012 1 1 -measured%3:01:00:: 02931947 1 0 -measured%5:00:00:intended:00 01337939 3 0 -measured%5:00:00:rhythmical:00 02020310 2 0 -measured%5:00:00:unhurried:00 01271961 4 0 -measuredly%4:02:00:: 00507323 1 0 -measureless%5:00:00:immeasurable:00 01499269 1 0 -measurement%1:04:00:: 00996969 1 19 -measurer%1:18:00:: 10304383 1 0 -measuring%1:04:00:: 00996969 1 2 -measuring_block%1:23:00:: 13584646 1 0 -measuring_cup%1:06:00:: 03733805 1 0 -measuring_device%1:06:00:: 03733925 1 0 -measuring_instrument%1:06:00:: 03733925 1 0 -measuring_rod%1:06:00:: 03735637 1 0 -measuring_stick%1:06:00:: 03735637 1 0 -measuring_system%1:06:00:: 03733925 1 0 -measuring_unit%1:23:00:: 13584646 1 0 -measuring_worm%1:05:00:: 02288268 1 0 -meat%1:09:00:: 05921123 3 0 -meat%1:13:01:: 07649854 1 4 -meat%1:20:00:: 13137010 2 0 -meat-eating%5:00:00:carnivorous:00 00313701 1 0 -meat-packing_business%1:04:00:: 01103964 1 0 -meat_and_potatoes%1:09:00:: 05793907 1 0 -meat_cleaver%1:06:00:: 03041632 1 0 -meat_counter%1:06:00:: 03735963 1 0 -meat_grinder%1:04:00:: 00965183 2 0 -meat_grinder%1:06:00:: 03736064 1 0 -meat_hook%1:06:00:: 03736147 1 0 -meat_hooks%1:08:00:: 05565192 1 0 -meat_house%1:06:00:: 03736269 2 1 -meat_house%1:06:01:: 04246731 1 1 -meat_loaf%1:13:00:: 07871810 1 0 -meat_market%1:06:00:: 02927161 1 0 -meat_packer%1:18:00:: 10304505 1 0 -meat_packing%1:04:00:: 01103964 1 0 -meat_pie%1:13:00:: 07871940 1 0 -meat_safe%1:06:00:: 03736372 1 0 -meat_thermometer%1:06:00:: 03736470 1 0 -meatball%1:13:00:: 07871436 1 0 -meatless%3:00:00:: 01499602 1 0 -meatloaf%1:13:00:: 07871810 1 0 -meatman%1:18:00:: 09884391 1 0 -meatpacking%1:04:00:: 01103964 1 0 -meatus%1:08:00:: 05248553 1 0 -meaty%3:00:00:: 01499457 1 1 -meaty%5:00:00:meaningful:00 01497245 2 0 -mebaral%1:06:00:: 03747508 1 0 -mebendazole%1:06:00:: 03736674 1 0 -mebibit%1:23:00:: 13628592 1 0 -mebibyte%1:23:00:: 13628056 1 0 -mecca%1:15:00:: 08994090 1 0 -mecca%1:15:01:: 08598568 2 0 -meccano%1:06:00:: 03736809 1 0 -meccano_set%1:06:00:: 03736809 1 0 -mechanic%1:18:00:: 10279018 1 1 -mechanic%1:18:01:: 09825750 2 1 -mechanic%5:00:00:mechanical:00 01500247 1 0 -mechanic's_lien%1:21:00:: 13402209 1 0 -mechanical%3:00:00:: 01499686 1 10 -mechanical%3:01:00:: 02890983 3 1 -mechanical%3:01:01:: 02891236 2 2 -mechanical_advantage%1:24:00:: 13823150 1 0 -mechanical_device%1:06:00:: 03736970 1 0 -mechanical_drawing%1:04:00:: 00608037 2 0 -mechanical_drawing%1:06:00:: 03737912 1 0 -mechanical_energy%1:19:00:: 11482013 1 0 -mechanical_engineer%1:18:00:: 10304650 1 0 -mechanical_engineering%1:09:00:: 06134716 1 0 -mechanical_man%1:06:00:: 02710201 1 0 -mechanical_mixture%1:27:00:: 14588986 1 0 -mechanical_phenomenon%1:19:00:: 11480698 1 0 -mechanical_piano%1:06:00:: 03738066 1 0 -mechanical_press%1:06:00:: 03999992 1 0 -mechanical_system%1:06:00:: 03738241 1 0 -mechanically%4:02:00:: 00113904 2 1 -mechanically%4:02:01:: 00114029 1 1 -mechanically_skillful%3:01:00:: 02891236 1 0 -mechanics%1:04:00:: 00098385 2 2 -mechanics%1:09:00:: 06100236 1 3 -mechanisation%1:04:00:: 00102457 2 0 -mechanisation%1:26:00:: 14578302 1 0 -mechanise%2:30:00:: 00479598 3 0 -mechanise%2:30:01:: 00480569 2 0 -mechanise%2:30:02:: 00480751 1 0 -mechanised%5:00:00:mechanical:00 01500555 2 0 -mechanised%5:00:00:mobile:00 01523450 1 0 -mechanism%1:04:00:: 00098385 2 3 -mechanism%1:06:00:: 03738472 5 0 -mechanism%1:09:00:: 05972781 4 0 -mechanism%1:17:00:: 09349797 3 2 -mechanism%1:22:00:: 13512506 1 8 -mechanist%1:18:00:: 10304783 1 0 -mechanistic%3:01:00:: 02911112 2 0 -mechanistic%5:00:00:mechanical:00 01500416 1 1 -mechanistically%4:02:00:: 00398339 1 0 -mechanization%1:04:00:: 00102457 2 0 -mechanization%1:26:00:: 14578302 1 0 -mechanize%2:30:00:: 00479598 3 0 -mechanize%2:30:01:: 00480569 2 0 -mechanize%2:30:02:: 00480751 1 0 -mechanized%5:00:00:mechanical:00 01500555 1 1 -mechanized%5:00:00:mobile:00 01523450 2 0 -mechanized_cavalry%1:14:00:: 08390012 1 0 -mecholyl%1:06:00:: 03753826 1 0 -meckel's_diverticulum%1:26:00:: 14295986 1 0 -meclizine%1:06:00:: 03739136 1 0 -meclizine_hydrochloride%1:06:00:: 03739136 1 0 -meclofenamate%1:06:00:: 03739327 1 0 -meclofenamate_sodium%1:06:00:: 03739327 1 0 -meclomen%1:06:00:: 03739327 1 0 -meconium%1:27:00:: 14855150 1 0 -meconopsis%1:20:00:: 11906713 1 0 -meconopsis_betonicifolia%1:20:00:: 11906917 1 0 -meconopsis_cambrica%1:20:00:: 11907100 1 0 -mecoptera%1:05:00:: 02161944 1 0 -mecopteran%1:05:00:: 02162235 1 0 -mecopterous%3:01:00:: 02760011 1 0 -med%1:10:00:: 06701596 1 0 -medaille_militaire%1:10:00:: 06709349 1 0 -medal%1:10:00:: 06706676 1 4 -medal_of_honor%1:10:00:: 06707178 1 1 -medal_play%1:04:00:: 00466524 1 0 -medal_winner%1:18:00:: 10304914 1 0 -medalist%1:18:00:: 10304914 2 0 -medalist%1:18:01:: 10305062 1 0 -medallion%1:10:00:: 06706676 4 0 -medallion%1:10:01:: 06883460 3 0 -medallion%1:13:00:: 07649202 2 0 -medallion%1:21:00:: 13393059 1 0 -medallist%1:18:00:: 10304914 2 0 -medallist%1:18:01:: 10305062 1 0 -medan%1:15:00:: 08910106 1 0 -medawar%1:18:00:: 11170913 1 0 -meddle%2:41:00:: 02539101 1 1 -meddler%1:18:00:: 10305192 1 0 -meddlesome%5:00:00:intrusive:01 01352561 1 0 -meddlesomeness%1:07:00:: 04837931 1 0 -meddling%1:04:00:: 00201516 1 1 -meddling%5:00:00:intrusive:01 01352561 1 2 -medea%1:18:00:: 09592563 1 0 -medellin%1:15:00:: 08733291 1 0 -medellin_cartel%1:14:00:: 08237202 1 0 -medevac%1:04:00:: 00055038 1 0 -medfly%1:05:00:: 02197185 1 0 -medford%1:15:00:: 09133775 1 0 -medford%1:15:01:: 09097461 2 0 -medgar_evers%1:18:00:: 10963642 1 0 -medgar_wiley_evers%1:18:00:: 10963642 1 0 -media_consultant%1:18:00:: 10305391 1 0 -media_guru%1:18:00:: 10305391 1 0 -mediacy%1:07:00:: 04919580 1 0 -mediaeval%3:01:00:: 02989754 1 0 -mediaeval%5:00:00:nonmodern:00 01537448 2 0 -medial%5:00:00:central:01 00331030 2 0 -medial%5:00:00:mesial:00 00779133 1 0 -medial_condyle%1:08:00:: 05472538 1 0 -medial_geniculate%1:08:00:: 05487941 1 0 -medial_geniculate_body%1:08:00:: 05487941 1 0 -medial_rectus%1:08:00:: 05316850 1 0 -medial_rectus_muscle%1:08:00:: 05316850 1 0 -medially%4:02:00:: 00398528 1 0 -median%1:09:00:: 06023821 1 0 -median%5:00:00:central:01 00331030 3 0 -median%5:00:00:mesial:00 00779133 2 0 -median%5:00:00:normal:01 01594472 1 1 -median_value%1:09:00:: 06023821 1 0 -mediant%1:10:00:: 06857986 1 0 -mediastinum%1:08:00:: 05324691 1 0 -mediate%2:32:00:: 00760956 1 1 -mediate%2:42:00:: 02691890 2 0 -mediate%3:00:00:: 00770756 1 0 -mediate%5:00:00:intermediate:00 01014953 2 0 -mediated%5:00:00:mediate:00 00771203 1 0 -mediateness%1:07:00:: 04919580 1 0 -mediation%1:04:00:: 01240432 2 0 -mediation%1:10:00:: 07150644 1 0 -mediator%1:18:00:: 09624559 1 0 -mediatorial%3:01:00:: 02989921 1 0 -mediatory%3:01:00:: 02990035 1 0 -mediatrix%1:18:00:: 09624899 1 0 -medic%1:18:00:: 10305635 2 0 -medic%1:20:00:: 12548280 1 0 -medicago%1:20:00:: 12548134 1 0 -medicago_arborea%1:20:00:: 12548564 1 0 -medicago_echinus%1:20:00:: 12549005 1 0 -medicago_falcata%1:20:00:: 12548804 1 0 -medicago_intertexta%1:20:00:: 12549005 1 0 -medicago_lupulina%1:20:00:: 12549192 1 0 -medicago_sativa%1:20:00:: 12549420 1 0 -medicaid%1:04:00:: 01089179 1 0 -medicaid_funds%1:21:00:: 13356887 1 0 -medical%1:04:00:: 00142361 1 0 -medical%3:00:00:: 01168988 2 4 -medical%3:01:00:: 02760116 1 29 -medical%3:01:02:: 02607455 3 1 -medical_aid%1:04:00:: 00657604 1 1 -medical_assistant%1:18:00:: 10305523 1 0 -medical_bill%1:10:00:: 06517547 1 0 -medical_building%1:06:00:: 03739518 1 0 -medical_care%1:04:00:: 00657604 1 1 -medical_center%1:15:00:: 08571139 1 0 -medical_checkup%1:04:00:: 00142361 1 0 -medical_community%1:14:00:: 08112829 1 0 -medical_diagnosis%1:04:00:: 00153105 1 0 -medical_dressing%1:06:00:: 03237639 1 0 -medical_evacuation%1:04:00:: 00055038 1 0 -medical_exam%1:04:00:: 00142361 1 0 -medical_examination%1:04:00:: 00142361 1 0 -medical_examiner%1:18:00:: 09965985 1 0 -medical_expense%1:21:00:: 13276778 1 0 -medical_extern%1:18:00:: 10074578 1 0 -medical_history%1:10:00:: 06515297 1 0 -medical_institution%1:14:00:: 08053905 1 0 -medical_instrument%1:06:00:: 03739693 1 0 -medical_intern%1:18:00:: 10211203 1 1 -medical_literature_analysis_and_retrieval_system%1:10:00:: 06638254 1 0 -medical_man%1:18:00:: 10305802 1 1 -medical_officer%1:18:00:: 10305635 1 0 -medical_practice%1:04:00:: 00632201 1 1 -medical_practitioner%1:18:00:: 10305802 1 0 -medical_procedure%1:04:00:: 01024392 1 0 -medical_profession%1:14:00:: 08112829 1 0 -medical_prognosis%1:04:00:: 00153665 1 0 -medical_record%1:10:00:: 06515297 1 0 -medical_relation%1:24:00:: 13837667 1 0 -medical_report%1:10:00:: 07220178 1 1 -medical_school%1:14:00:: 08283507 1 3 -medical_science%1:09:00:: 06045562 1 0 -medical_scientist%1:18:00:: 10306004 1 0 -medical_social_worker%1:18:00:: 09785236 1 0 -medical_specialist%1:18:00:: 10632576 1 0 -medical_specialty%1:09:00:: 06043075 1 0 -medical_student%1:18:00:: 10306181 1 0 -medically%4:02:00:: 00124792 1 1 -medicament%1:06:00:: 03740161 1 0 -medicare%1:04:00:: 01089009 1 0 -medicare_check%1:21:00:: 13384018 1 0 -medicare_payment%1:21:00:: 13384018 1 0 -medicate%2:29:00:: 00084230 2 0 -medicate%2:29:01:: 00084562 1 0 -medication%1:04:00:: 00664110 2 0 -medication%1:06:00:: 03740161 1 2 -medicative%5:00:00:healthful:00 01166656 1 0 -medici%1:14:00:: 08485281 1 0 -medicinal%5:00:00:healthful:00 01166656 1 0 -medicinal_drug%1:06:00:: 03740161 1 0 -medicinal_leech%1:05:00:: 01938454 1 0 -medicinally%4:02:00:: 00124933 1 0 -medicine%1:04:00:: 00612160 3 3 -medicine%1:04:02:: 01162529 4 0 -medicine%1:06:00:: 03740161 2 3 -medicine%1:09:00:: 06043075 1 5 -medicine%2:29:00:: 00084230 1 0 -medicine_ball%1:06:00:: 03742019 1 0 -medicine_cabinet%1:06:00:: 03742115 1 0 -medicine_chest%1:06:00:: 03742115 1 0 -medicine_man%1:18:00:: 10626439 1 0 -medick%1:20:00:: 12548280 1 0 -medico%1:18:00:: 10020890 2 0 -medico%1:18:02:: 10306181 1 0 -medicolegal%3:01:00:: 02760615 1 0 -mediety%1:23:00:: 13737089 1 0 -medieval%3:01:00:: 02989754 1 11 -medieval%5:00:00:nonmodern:00 01537448 2 1 -medieval%5:00:00:past:00 01729157 3 0 -medieval_greek%1:10:00:: 06977190 1 0 -medieval_latin%1:10:00:: 06963704 1 0 -medieval_mode%1:10:00:: 06860481 1 0 -medieval_schoolman%1:18:00:: 10559683 1 0 -medina%1:15:00:: 08994339 1 0 -medina%1:15:01:: 08628308 2 0 -medinilla%1:20:00:: 12349491 1 0 -medinilla_magnifica%1:20:00:: 12349711 1 0 -mediocre%5:00:00:bad:00 01128253 3 0 -mediocre%5:00:00:inferior:02 02347564 1 0 -mediocre%5:00:00:ordinary:00 01673061 2 0 -mediocrity%1:07:00:: 04795061 1 1 -mediocrity%1:18:00:: 10569179 2 0 -meditate%2:31:00:: 00630380 1 4 -meditate%2:31:02:: 00704388 2 0 -meditation%1:09:00:: 05785885 1 1 -meditation%1:09:01:: 05786184 2 0 -meditative%5:00:00:thoughtful:00 02419434 1 1 -meditatively%4:02:00:: 00398644 1 0 -meditativeness%1:07:00:: 04660805 1 0 -mediterranean%1:17:00:: 09350045 1 1 -mediterranean%3:01:00:: 03085213 1 0 -mediterranean_anaemia%1:26:00:: 14195715 1 0 -mediterranean_anchovy%1:05:00:: 02534165 1 0 -mediterranean_anemia%1:26:00:: 14195715 1 0 -mediterranean_cypress%1:20:00:: 11632619 1 0 -mediterranean_fever%1:26:00:: 14128029 1 0 -mediterranean_flour_moth%1:05:00:: 02289988 1 0 -mediterranean_fruit_fly%1:05:00:: 02197185 1 0 -mediterranean_hackberry%1:20:00:: 12409470 1 0 -mediterranean_sea%1:17:00:: 09350045 1 0 -mediterranean_snapdragon%1:20:00:: 12877838 1 0 -mediterranean_water_shrew%1:05:00:: 01893164 1 0 -medium%1:04:00:: 00610222 11 0 -medium%1:10:00:: 06254475 3 2 -medium%1:10:01:: 06254669 1 5 -medium%1:10:02:: 06261586 10 0 -medium%1:15:01:: 08568142 2 4 -medium%1:18:00:: 10306279 9 0 -medium%1:26:00:: 13920169 8 0 -medium%1:27:00:: 14899328 4 1 -medium%1:27:01:: 14899530 6 0 -medium%1:27:02:: 14899888 5 0 -medium%1:27:03:: 14899152 7 0 -medium%5:00:00:cooked:00 00617752 2 0 -medium%5:00:00:moderate:00 01531957 1 5 -medium-dry%5:00:00:dry:03 02368147 1 0 -medium-large%5:00:00:large:00 01389634 1 0 -medium-size%5:00:00:sized:00 02223659 1 0 -medium-sized%5:00:00:sized:00 02223659 1 0 -medium_frequency%1:07:00:: 05057485 1 0 -medium_of_exchange%1:21:00:: 13372961 1 0 -medium_steel%1:27:00:: 14949522 1 0 -medium_wave%1:19:00:: 11507321 1 0 -medivac%1:04:00:: 00055038 1 0 -medlar%1:13:01:: 07766891 4 0 -medlar%1:13:02:: 07767002 3 0 -medlar%1:20:01:: 12636224 2 0 -medlar%1:20:02:: 12670758 1 0 -medlar_tree%1:20:00:: 12636224 1 0 -medlars%1:10:00:: 06638254 1 0 -medley%1:10:00:: 07047505 1 1 -medline%1:06:00:: 03742238 1 0 -medoc%1:13:00:: 07894298 1 0 -medroxyprogesterone%1:27:00:: 14747168 1 0 -medulla%1:08:00:: 05490799 3 0 -medulla%1:08:02:: 05495172 2 0 -medulla%1:27:00:: 14957893 1 0 -medulla_oblongata%1:08:00:: 05495172 1 0 -medulla_spinalis%1:08:00:: 05503705 1 0 -medullary%3:01:00:: 02760820 3 0 -medullary%3:01:01:: 02761053 1 0 -medullary%3:01:02:: 02760940 2 0 -medullary_ray%1:20:00:: 13098515 1 0 -medullary_sheath%1:08:00:: 05464685 1 0 -medullated%3:01:00:: 02766699 1 0 -medullated_nerve_fiber%1:08:00:: 05464378 1 0 -medusa%1:05:01:: 01910252 2 0 -medusa%1:18:00:: 09497913 1 0 -medusa's_head%1:20:01:: 12918991 1 0 -medusa's_head%1:20:02:: 12119822 2 0 -medusan%1:05:00:: 01910252 1 0 -medusoid%1:05:00:: 01910252 1 0 -medusoid%3:01:00:: 02761162 1 0 -meed%1:21:00:: 13284356 1 0 -meek%5:00:00:docile:00 02328916 2 0 -meek%5:00:00:humble:00 01893510 1 4 -meek%5:00:00:submissive:00 00789494 3 0 -meekly%4:02:00:: 00110286 2 1 -meekly%4:02:02:: 00110414 1 1 -meekness%1:07:00:: 04889779 2 0 -meekness%1:12:00:: 07509325 1 0 -meerestone%1:10:00:: 07259438 1 0 -meerkat%1:05:00:: 02138441 1 0 -meerschaum%1:06:00:: 03742416 2 0 -meerschaum%1:27:00:: 14681445 1 0 -meet%1:11:00:: 07467846 1 4 -meet%2:33:00:: 01079480 10 8 -meet%2:34:00:: 01183573 4 23 -meet%2:35:00:: 01205696 13 1 -meet%2:38:01:: 02023107 1 49 -meet%2:38:06:: 02022804 9 11 -meet%2:39:00:: 02110082 12 3 -meet%2:41:00:: 02428924 7 14 -meet%2:41:01:: 02486932 2 38 -meet%2:41:02:: 02594674 6 15 -meet%2:41:03:: 02596113 8 12 -meet%2:42:00:: 02739480 11 7 -meet%2:42:01:: 02667900 5 18 -meet%2:42:02:: 02710402 3 32 -meet%5:00:00:just:00 01370141 1 0 -meet_up_with%2:38:00:: 02022977 1 2 -meeter%1:18:00:: 09608002 1 0 -meeting%1:04:00:: 01230965 4 2 -meeting%1:04:02:: 00146856 5 1 -meeting%1:11:00:: 07414922 3 2 -meeting%1:14:00:: 08307589 1 30 -meeting%1:14:01:: 08310389 2 4 -meeting%1:15:00:: 08542634 6 0 -meeting_house%1:20:00:: 11727358 1 0 -meeting_of_minds%1:26:00:: 13971802 1 0 -meeting_place%1:06:00:: 03386420 1 0 -meetinghouse%1:06:00:: 03099622 1 0 -mefenamic_acid%1:06:00:: 03742531 1 0 -mefloquine%1:06:00:: 03742728 1 0 -mefloquine_hydrochloride%1:06:00:: 03742728 1 0 -mefoxin%1:06:00:: 02996840 1 0 -meg%1:23:00:: 13751533 1 0 -megabat%1:05:00:: 02139671 1 0 -megabit%1:23:00:: 13628419 1 0 -megabucks%1:21:00:: 13250680 1 0 -megabyte%1:23:00:: 13628056 2 0 -megabyte%1:23:01:: 13628246 1 0 -megacardia%1:26:00:: 14334631 1 0 -megacephaly%1:26:00:: 14508974 1 0 -megachile%1:05:00:: 02211283 1 0 -megachilidae%1:05:00:: 02211099 1 0 -megachiroptera%1:05:00:: 02139479 1 0 -megacolon%1:08:00:: 05536178 1 0 -megacycle%1:28:00:: 15279957 1 0 -megacycle_per_second%1:28:00:: 15279957 1 0 -megadeath%1:11:00:: 07333506 1 0 -megaderma%1:05:00:: 02144792 1 0 -megaderma_lyra%1:05:00:: 02144936 1 0 -megadermatidae%1:05:00:: 02144442 1 0 -megaera%1:18:00:: 09506674 1 0 -megaflop%1:23:00:: 13607187 1 0 -megagametophyte%1:20:00:: 11687266 1 0 -megahertz%1:28:00:: 15279957 1 0 -megahit%1:04:00:: 00064151 1 0 -megakaryocyte%1:08:00:: 05448928 1 0 -megakaryocytic%3:01:00:: 03012477 1 1 -megalith%1:06:00:: 03743016 1 0 -megalithic%3:01:00:: 03085394 1 0 -megalithic_structure%1:06:00:: 03743016 1 0 -megalobatrachus%1:05:00:: 01633578 1 0 -megalobatrachus_maximus%1:05:00:: 01633781 1 0 -megaloblast%1:08:00:: 05449797 1 0 -megaloblastic%3:01:00:: 03012599 1 0 -megaloblastic_anaemia%1:26:00:: 14167773 1 0 -megaloblastic_anemia%1:26:00:: 14167773 1 0 -megalocardia%1:26:00:: 14334631 1 0 -megalocephaly%1:26:00:: 14508974 1 0 -megalocyte%1:08:00:: 05449661 1 0 -megalohepatia%1:26:00:: 14103180 1 0 -megalomania%1:26:00:: 14392318 1 1 -megalomaniac%1:18:00:: 10306496 1 0 -megalomaniacal%5:00:00:neurotic:00 01584569 1 0 -megalomanic%5:00:00:neurotic:00 01584569 1 0 -megalonychidae%1:05:00:: 02457586 1 0 -megalopolis%1:15:00:: 08537708 1 1 -megaloptera%1:05:00:: 02265471 1 0 -megalosaur%1:05:00:: 01715518 1 0 -megalosauridae%1:05:00:: 01715249 1 0 -megalosaurus%1:05:00:: 01715518 1 0 -megaphone%1:06:00:: 03743279 1 0 -megapode%1:05:00:: 01801088 1 0 -megapodiidae%1:05:00:: 01800759 1 0 -megapodius%1:05:00:: 01800963 1 0 -megaptera%1:05:00:: 02065599 1 0 -megaptera_novaeangliae%1:05:00:: 02065726 1 0 -megascopic%5:00:00:visible:00 02516435 1 0 -megasporangium%1:20:00:: 11687432 1 0 -megaspore%1:20:00:: 11688199 1 0 -megasporophyll%1:20:00:: 11687553 1 0 -megathere%1:05:00:: 02458822 1 0 -megatherian%1:05:00:: 02458517 1 0 -megatherian_mammal%1:05:00:: 02458517 1 0 -megatheriid%1:05:00:: 02458517 1 0 -megatheriidae%1:05:00:: 02458356 1 0 -megatherium%1:05:00:: 02458675 1 0 -megaton%1:23:00:: 13721804 2 0 -megaton%1:23:02:: 13647353 1 1 -megaton_bomb%1:06:00:: 03743422 1 5 -megavitamin_therapy%1:04:00:: 00664388 1 0 -megawatt%1:23:00:: 13644894 1 0 -megestrol%1:27:00:: 14746270 1 0 -megestrol_acetate%1:27:00:: 14746270 1 0 -megillah%1:10:00:: 06408239 2 0 -megillah%1:10:01:: 07218299 1 0 -megilp%1:27:00:: 14949608 1 0 -megohm%1:23:00:: 13647097 1 0 -megrim%1:26:00:: 14327707 1 0 -megrims%1:26:00:: 14404460 1 0 -mehemet_ali%1:18:00:: 11184273 1 0 -mei%1:20:00:: 12640839 1 0 -meibomian_cyst%1:26:00:: 14202520 1 0 -meibomian_gland%1:08:00:: 05328508 1 0 -meiji_tenno%1:18:00:: 11171157 1 0 -meiosis%1:10:00:: 07104292 2 0 -meiosis%1:22:00:: 13512725 1 0 -meiotic%3:01:00:: 02763423 1 0 -meir%1:18:00:: 11171298 1 0 -meissner%1:18:00:: 11171409 2 0 -meissner%1:18:01:: 11171513 1 0 -meister_eckhart%1:18:00:: 10948312 1 0 -meitner%1:18:00:: 11171614 1 0 -meitnerium%1:27:00:: 14644963 1 0 -mek%1:14:00:: 08034778 1 0 -mekong%1:17:00:: 09350524 1 1 -mekong_river%1:17:00:: 09350524 1 1 -mel_columcille_gerard_gibson%1:18:00:: 10998305 1 0 -mel_gibson%1:18:00:: 10998305 1 0 -melaena%1:27:00:: 14855280 1 0 -melagra%1:26:00:: 14328794 1 0 -melagueta_pepper%1:20:00:: 12357968 1 0 -melamine%1:27:00:: 14949746 1 0 -melamine_resin%1:27:00:: 14949886 1 0 -melampodium%1:20:00:: 11995683 1 0 -melampodium_leucanthum%1:20:00:: 11995840 1 0 -melampsora%1:20:00:: 13063936 1 0 -melampsora_lini%1:20:00:: 13064111 1 0 -melampsoraceae%1:20:00:: 13063784 1 0 -melancholia%1:26:00:: 14392491 1 0 -melancholiac%1:18:00:: 10306595 1 0 -melancholic%1:18:00:: 10306595 1 0 -melancholic%5:00:00:sad:00 01362684 1 0 -melancholy%1:08:00:: 05406782 3 0 -melancholy%1:12:00:: 07533097 1 4 -melancholy%1:26:00:: 14404722 2 0 -melancholy%5:00:00:depressing:00 00365261 2 0 -melancholy%5:00:00:sad:00 01362684 1 3 -melancholy_thistle%1:20:00:: 11954798 1 0 -melanchthon%1:18:00:: 11171851 1 0 -melanerpes%1:05:00:: 01840643 1 0 -melanerpes_erythrocephalus%1:05:00:: 01840775 1 0 -melanesia%1:15:00:: 08836630 1 0 -melanesian%3:01:00:: 02863959 1 0 -melange%1:14:00:: 08399977 1 0 -melanie_klein%1:18:00:: 11107110 1 0 -melanin%1:27:00:: 14757172 1 0 -melanise%2:30:00:: 00280532 2 0 -melanise%2:30:01:: 00280787 1 0 -melanism%1:26:00:: 14230083 1 0 -melanitta%1:05:00:: 01853379 1 0 -melanitta_nigra%1:05:00:: 01853666 1 0 -melanize%2:30:00:: 00280532 2 0 -melanize%2:30:01:: 00280787 1 0 -melanoblast%1:08:00:: 05241374 1 0 -melanocyte%1:08:00:: 05241485 1 0 -melanocyte-stimulating_hormone%1:27:00:: 15073784 1 0 -melanoderma%1:07:00:: 04976567 1 0 -melanogrammus%1:05:00:: 02523750 1 0 -melanogrammus_aeglefinus%1:05:00:: 02523877 1 0 -melanoma%1:26:00:: 14252564 1 0 -melanoplus%1:05:00:: 02227430 1 0 -melanosis%1:26:00:: 14230083 1 0 -melanotis%1:05:00:: 01587148 1 0 -melanotis_caerulescens%1:05:00:: 01587278 1 0 -melanthiaceae%1:20:00:: 12463322 1 0 -melasma%1:26:00:: 14302652 1 0 -melastoma%1:20:00:: 12349091 1 0 -melastoma_malabathricum%1:20:00:: 12349315 1 0 -melastomaceae%1:20:00:: 12348774 1 0 -melastomataceae%1:20:00:: 12348774 1 0 -melatonin%1:08:00:: 05411338 1 0 -melba%1:18:00:: 11172045 1 0 -melba_toast%1:13:00:: 07689757 1 0 -melbourne%1:15:00:: 08833809 2 0 -melbourne%1:15:01:: 09073584 1 0 -melchior%1:18:00:: 11172181 2 0 -melchior%1:18:01:: 11172411 1 0 -melchite%1:18:00:: 10306716 2 0 -melchite%1:18:01:: 10306890 1 0 -meld%1:04:00:: 00497060 1 0 -meld%2:30:00:: 00394813 3 0 -meld%2:30:06:: 00395841 2 0 -meld%2:32:00:: 00902807 1 0 -meleagrididae%1:05:00:: 01793818 1 0 -meleagris%1:05:00:: 01793988 1 0 -meleagris_gallopavo%1:05:00:: 01794158 1 0 -melee%1:04:00:: 00554200 1 2 -melena%1:27:00:: 14855280 1 0 -meles%1:05:00:: 02447896 1 0 -meles_meles%1:05:00:: 02448060 1 0 -melia%1:20:00:: 12695760 1 0 -melia_azadirachta%1:20:00:: 12696492 1 0 -melia_azedarach%1:20:00:: 12695975 1 0 -melia_azederach%1:20:00:: 12695975 1 0 -meliaceae%1:20:00:: 12694707 1 0 -melicocca%1:20:00:: 12744656 1 0 -melicocca_bijuga%1:20:00:: 12744850 1 0 -melicocca_bijugatus%1:20:00:: 12744850 1 0 -melicoccus%1:20:00:: 12744656 1 0 -melicytus%1:20:00:: 12391280 1 0 -melilot%1:20:00:: 11750989 1 0 -melilotus%1:20:00:: 11750989 1 0 -melilotus_alba%1:20:00:: 11751213 1 0 -melilotus_officinalis%1:20:00:: 11751347 1 0 -melina_mercouri%1:18:00:: 11175748 1 0 -melinae%1:05:00:: 02447220 1 0 -meliorate%2:30:00:: 00205046 2 0 -meliorate%2:30:01:: 00205885 1 0 -melioration%1:04:00:: 00261029 1 1 -melioration%1:22:00:: 13470193 3 0 -melioration%1:26:00:: 14422179 2 0 -meliorative%5:00:00:bettering:00 00232385 1 0 -meliorism%1:09:00:: 05945508 1 0 -meliorist%1:18:00:: 10515194 1 0 -meliphagidae%1:05:00:: 01526635 1 0 -melissa%1:20:00:: 12854443 1 0 -melissa_officinalis%1:20:00:: 12854600 1 0 -melkite%1:18:00:: 10306716 2 0 -melkite%1:18:01:: 10306890 1 0 -mellaril%1:06:00:: 04425262 1 0 -mellifluous%5:00:00:melodious:00 01501821 1 0 -mellisonant%5:00:00:melodious:00 01501821 1 0 -mellivora%1:05:00:: 02448200 1 0 -mellivora_capensis%1:05:00:: 02448318 1 0 -mellon%1:18:00:: 11172609 1 0 -mellow%2:30:00:: 00254298 3 0 -mellow%2:30:01:: 00254672 1 0 -mellow%2:30:03:: 00254486 2 0 -mellow%4:02:00:: 00398843 1 0 -mellow%5:00:00:intoxicated:00 00799224 5 0 -mellow%5:00:00:mature:02 01492061 3 0 -mellow%5:00:00:relaxed:00 02408011 1 0 -mellow%5:00:00:ripe:00 01493636 2 0 -mellow%5:00:00:soft:02 01156302 4 0 -mellow_out%2:30:00:: 00254486 1 0 -mellowed%5:00:00:mature:02 01492061 2 0 -mellowed%5:00:00:ripe:00 01493636 1 0 -mellowing%1:22:00:: 13513222 1 0 -mellowingly%4:02:00:: 00507609 1 1 -mellowly%4:02:00:: 00398843 1 0 -mellowness%1:07:00:: 04989015 3 0 -mellowness%1:07:01:: 04958302 4 0 -mellowness%1:07:02:: 04656448 5 0 -mellowness%1:09:00:: 05718118 2 0 -mellowness%1:12:00:: 07554224 1 0 -melocactus%1:20:00:: 11850136 1 0 -melodic%3:00:04:: 01501113 1 1 -melodic%3:01:00:: 02864068 2 0 -melodic_line%1:10:00:: 07028373 1 0 -melodic_phrase%1:10:00:: 07028373 1 0 -melodic_theme%1:10:00:: 07029247 1 0 -melodically%4:02:00:: 00134613 1 0 -melodious%3:00:00:: 01501113 2 0 -melodious%3:00:04:: 01502195 1 1 -melodiously%4:02:00:: 00398955 1 0 -melodiousness%1:07:00:: 04983848 1 0 -melodise%2:36:00:: 01706756 1 0 -melodize%2:36:00:: 01706756 1 0 -melodrama%1:10:00:: 07016648 1 1 -melodramatic%5:00:01:theatrical:00 00796337 2 0 -melodramatic%5:00:02:dramatic:00 00795078 1 1 -melodramatically%4:02:00:: 00399242 2 0 -melodramatically%4:02:01:: 00399389 1 0 -melody%1:09:00:: 05711915 2 4 -melody%1:10:00:: 07028373 1 8 -melody_pipe%1:06:00:: 03006626 1 0 -melogale%1:05:00:: 02448502 1 0 -meloid%1:05:00:: 02179012 1 0 -meloidae%1:05:00:: 02178886 1 0 -melolontha%1:05:00:: 02174521 1 0 -melolontha_melolontha%1:05:00:: 02174659 1 0 -melolonthid_beetle%1:05:00:: 02174355 1 0 -melolonthidae%1:05:00:: 02174153 1 0 -melon%1:13:00:: 07755411 1 2 -melon%1:20:00:: 12163824 2 0 -melon_ball%1:13:00:: 07755619 1 0 -melon_tree%1:20:00:: 12373100 1 0 -melon_vine%1:20:00:: 12163824 1 0 -melophagus%1:05:00:: 02198996 1 0 -melophagus_ovinus%1:05:00:: 02199170 1 0 -melopsittacus%1:05:00:: 01821727 1 0 -melopsittacus_undulatus%1:05:00:: 01821869 1 0 -melosa%1:20:00:: 11994527 1 0 -melospiza%1:05:00:: 01536474 1 0 -melospiza_georgiana%1:05:00:: 01536780 1 0 -melospiza_melodia%1:05:00:: 01536644 1 0 -melphalan%1:06:00:: 03743577 1 0 -melpomene%1:18:00:: 09566791 1 0 -melt%1:22:00:: 13566535 1 0 -melt%2:30:00:: 00376106 2 2 -melt%2:30:01:: 00444629 1 3 -melt%2:30:02:: 00395841 4 1 -melt%2:30:04:: 00254486 3 2 -melt%2:30:05:: 00224651 5 0 -melt%2:30:10:: 00223928 6 0 -melt_down%2:30:00:: 00444629 1 0 -melt_off%2:29:00:: 00045817 1 1 -meltable%5:00:00:soluble:01 02265594 1 0 -meltdown%1:11:00:: 07316403 2 0 -meltdown%1:22:00:: 13513362 1 0 -melted%3:00:00:: 01505991 1 0 -melter%1:18:00:: 10307114 1 0 -melting%1:22:00:: 13566535 1 1 -melting%5:00:00:unfrozen:00 01079978 1 1 -melting_point%1:07:00:: 05013967 1 0 -melting_pot%1:06:00:: 03140126 2 0 -melting_pot%1:15:00:: 08598696 1 2 -meltwater%1:27:00:: 14950055 1 0 -melursus%1:05:00:: 02134240 1 0 -melursus_ursinus%1:05:00:: 02134418 1 0 -melvil_dewey%1:18:00:: 10933266 1 0 -melville%1:18:00:: 11172795 1 0 -melville_bell%1:18:00:: 10842575 1 0 -melville_louis_kossuth_dewey%1:18:00:: 10933266 1 0 -melville_w._fuller%1:18:00:: 10985653 1 0 -melville_weston_fuller%1:18:00:: 10985653 1 0 -melvin_calvin%1:18:00:: 10880669 1 0 -mem%1:10:00:: 06838005 1 0 -member%1:08:00:: 05559908 3 5 -member%1:08:01:: 05526384 5 0 -member%1:14:00:: 08170686 4 0 -member%1:18:00:: 10307234 1 67 -member%1:24:00:: 13810615 2 6 -member_bank%1:14:00:: 08419033 1 0 -member_of_parliament%1:18:00:: 10400437 1 0 -membered%3:00:00:: 01502507 1 0 -memberless%3:00:00:: 01503886 1 0 -membership%1:14:00:: 08400965 1 10 -membership%1:26:00:: 13931627 2 9 -membership_card%1:10:00:: 06477970 1 0 -membracidae%1:05:00:: 02259565 1 0 -membrane%1:06:00:: 03743761 1 1 -membrane%1:08:00:: 05426243 2 0 -membrane-forming%5:00:00:unhealthy:00 01177704 1 0 -membrane_bone%1:08:00:: 05276860 1 0 -membranophone%1:06:00:: 03249569 1 0 -membranous%3:01:00:: 03085572 1 0 -membranous%5:00:00:unhealthy:00 01177704 2 0 -membranous_labyrinth%1:08:00:: 05321664 1 0 -meme%1:09:00:: 05985126 1 0 -memel%1:15:00:: 09014066 1 0 -memento%1:09:00:: 05813822 1 0 -memento_mori%1:09:00:: 05813912 1 0 -memo%1:10:00:: 06506191 1 0 -memoir%1:10:00:: 06516495 1 1 -memoir%1:10:01:: 06410187 2 0 -memorabilia%1:10:00:: 06505705 1 1 -memorability%1:07:00:: 05215921 1 0 -memorable%5:00:02:unforgettable:00 01040752 1 6 -memorably%4:02:00:: 00399533 1 0 -memoranda%1:10:00:: 06506191 1 0 -memorandum%1:10:00:: 06506191 1 2 -memorial%1:06:00:: 03743902 3 0 -memorial%1:10:00:: 06688522 1 1 -memorial%1:10:01:: 06513624 2 0 -memorial_day%1:28:00:: 15189452 1 0 -memorial_park%1:15:00:: 08521623 1 0 -memorial_tablet%1:06:00:: 02892201 1 0 -memorialisation%1:11:00:: 07452841 1 0 -memorialise%2:31:00:: 00612042 2 0 -memorialise%2:32:00:: 00768062 1 0 -memorialization%1:11:00:: 07452841 1 0 -memorialize%2:31:00:: 00612042 2 0 -memorialize%2:32:00:: 00768062 1 0 -memorisation%1:09:00:: 05755156 1 0 -memorise%2:31:00:: 00604576 1 0 -memoriser%1:18:00:: 10308504 1 0 -memorization%1:09:00:: 05755156 1 1 -memorize%2:31:00:: 00604576 1 6 -memorizer%1:18:00:: 10308504 1 0 -memory%1:06:00:: 03744276 4 3 -memory%1:09:00:: 05651399 3 9 -memory%1:09:01:: 05760202 2 15 -memory%1:09:02:: 05935060 1 25 -memory%1:09:03:: 06140268 5 0 -memory_access%1:06:00:: 02671224 1 0 -memory_board%1:06:00:: 03744276 1 0 -memory_cache%1:06:00:: 02935017 1 0 -memory_chip%1:06:00:: 03744684 1 0 -memory_device%1:06:00:: 03744840 1 0 -memory_image%1:09:00:: 05935871 1 2 -memory_loss%1:09:00:: 05672391 1 0 -memory_picture%1:09:00:: 05936016 1 2 -memory_trace%1:09:00:: 05935381 1 0 -memphis%1:15:00:: 09141119 1 4 -memphis%1:15:01:: 08899351 2 0 -memsahib%1:18:00:: 09687940 1 0 -men%1:14:00:: 08212347 1 35 -men's%1:06:00:: 03746486 1 0 -men's_furnishings%1:06:00:: 03473704 1 0 -men's_room%1:06:00:: 03746486 1 0 -menace%1:10:00:: 06733782 2 1 -menace%1:26:00:: 14543231 1 8 -menace%2:29:00:: 00012137 3 0 -menace%2:32:00:: 01067194 2 1 -menace%2:42:00:: 02697120 1 1 -menachem_begin%1:18:00:: 10841657 1 0 -menacing%5:00:00:alarming:00 00194357 1 1 -menacingly%4:02:00:: 00399802 1 0 -menadione%1:27:00:: 15093049 1 0 -menage%1:14:00:: 08078020 1 0 -menage_a_trois%1:14:00:: 08078453 1 0 -menagerie%1:06:00:: 03745146 2 0 -menagerie%1:14:00:: 08456888 1 0 -menai_strait%1:17:00:: 09350776 1 0 -menander%1:18:00:: 11172929 1 0 -menarche%1:11:00:: 07325762 1 4 -mencken%1:18:00:: 11173031 1 0 -mend%1:04:00:: 00266806 2 0 -mend%1:06:00:: 03745285 1 0 -mend%2:30:00:: 00260648 1 5 -mend%2:30:01:: 00270561 2 1 -mendacious%5:00:00:false:00 02462089 2 0 -mendacious%5:00:00:untruthful:00 01226129 1 1 -mendaciously%4:02:00:: 00399974 1 0 -mendacity%1:07:00:: 04876235 1 0 -mendel%1:18:00:: 11173199 1 0 -mendel's_law%1:09:00:: 05884433 1 0 -mendeleev%1:18:00:: 11173475 1 0 -mendeleev's_law%1:09:00:: 05887156 1 0 -mendelevium%1:27:00:: 14645092 1 0 -mendeleyev%1:18:00:: 11173475 1 0 -mendelian%1:18:00:: 10308653 1 0 -mendelian%3:01:00:: 03085715 1 0 -mendelianism%1:09:00:: 06109972 1 0 -mendelism%1:09:00:: 06109972 1 0 -mendelsohn%1:18:00:: 11173778 1 0 -mendelssohn%1:18:00:: 11173917 1 0 -mendenhall_glacier%1:17:00:: 09350922 1 0 -mender%1:18:00:: 10308732 1 0 -mendicancy%1:10:00:: 07187996 2 0 -mendicancy%1:26:00:: 14494032 1 0 -mendicant%1:18:00:: 09847010 2 0 -mendicant%1:18:01:: 10111903 1 0 -mendicant%5:00:00:beseeching:00 00714437 1 0 -mendicity%1:26:00:: 14494032 1 0 -mending%1:04:00:: 00266806 2 0 -mending%1:06:00:: 03745487 1 0 -menelaus%1:18:00:: 09595059 1 0 -menhaden%1:05:00:: 02531625 1 0 -menhaden_oil%1:27:00:: 14950129 1 0 -menhir%1:06:00:: 03745571 1 0 -menial%1:18:00:: 10308938 1 0 -menial%5:00:00:unskilled:00 02229961 1 1 -menially%4:02:00:: 00400398 1 0 -meniere%1:18:00:: 11174119 1 0 -meniere's_disease%1:26:00:: 14078421 1 0 -meningeal%3:01:00:: 02761251 1 0 -meningeal_artery%1:08:00:: 05351058 1 0 -meningeal_veins%1:08:00:: 05373495 1 0 -meninges%1:08:00:: 05326900 1 0 -meningioma%1:26:00:: 14239743 1 0 -meningism%1:26:00:: 14359816 1 0 -meningitis%1:26:00:: 14137829 1 0 -meningocele%1:26:00:: 14467172 1 0 -meningoencephalitis%1:26:00:: 14343411 1 0 -meninx%1:08:00:: 05326900 1 0 -menippe%1:05:00:: 01977366 1 0 -menippe_mercenaria%1:05:00:: 01977485 1 0 -meniscectomy%1:04:00:: 00686282 1 0 -meniscium%1:20:00:: 13229227 1 0 -meniscus%1:06:00:: 03745712 3 0 -meniscus%1:06:01:: 03745864 2 0 -meniscus%1:08:00:: 05288396 1 0 -menispermaceae%1:20:00:: 11712827 1 0 -menispermum%1:20:00:: 11713034 1 0 -menispermum_canadense%1:20:00:: 11713370 1 0 -menninger%1:18:00:: 11174354 3 0 -menninger%1:18:01:: 11174563 2 0 -menninger%1:18:02:: 11174730 1 0 -mennonite%1:18:00:: 09677561 1 0 -mennonite_church%1:14:00:: 08093269 1 0 -mennonitism%1:09:00:: 06230809 1 0 -meno_mosso%1:28:00:: 15265331 1 0 -menominee%1:10:00:: 06910755 2 0 -menominee%1:18:00:: 09660645 1 0 -menominee_whitefish%1:05:00:: 02539894 1 0 -menomini%1:10:00:: 06910755 2 0 -menomini%1:18:00:: 09660645 1 0 -menopausal%3:01:00:: 02761349 1 0 -menopause%1:28:00:: 15154462 1 0 -menopon%1:05:00:: 02185694 1 0 -menopon_gallinae%1:05:00:: 02185814 1 0 -menopon_palladum%1:05:00:: 02185814 1 0 -menorah%1:06:00:: 03746005 2 0 -menorah%1:06:01:: 03746155 1 0 -menorrhagia%1:22:00:: 13513540 1 0 -menorrhea%1:08:00:: 05402576 1 0 -menotti%1:18:00:: 11174901 1 0 -menotyphla%1:05:00:: 01888948 1 0 -mens_rea%1:09:00:: 05795957 1 0 -mens_store%1:06:00:: 03052464 1 0 -mensa%1:17:00:: 09351086 1 0 -mensal%3:01:00:: 02932161 1 0 -mensal_line%1:25:00:: 13906936 1 0 -mensch%1:18:00:: 10309009 1 0 -menses%1:22:00:: 13513747 1 0 -mensh%1:18:00:: 10309009 1 0 -menshevik%1:18:00:: 10309147 1 0 -menstrual%3:01:00:: 02879273 1 0 -menstrual_blood%1:08:00:: 05402576 1 0 -menstrual_cycle%1:28:00:: 15288111 1 0 -menstrual_flow%1:08:00:: 05402576 1 0 -menstrual_phase%1:28:00:: 15288707 1 0 -menstruate%2:29:00:: 00062203 1 0 -menstruation%1:22:00:: 13513747 1 0 -menstruum%1:22:00:: 13513747 2 0 -menstruum%1:27:00:: 14950300 1 0 -mensurable%3:00:00:: 01498769 2 0 -mensurable%3:01:00:: 02931947 1 0 -mensural%3:01:00:: 02931947 2 0 -mensural%3:01:01:: 02932081 1 0 -mensurate%2:31:00:: 00647094 1 0 -mensuration%1:04:00:: 00996969 1 0 -mental%3:00:00:: 01779986 1 12 -mental%3:01:00:: 02898750 2 4 -mental%3:01:03:: 02734914 3 0 -mental%3:01:04:: 02734776 4 0 -mental%5:00:00:unhealthy:00 01177899 5 0 -mental_ability%1:09:00:: 05622956 1 0 -mental_abnormality%1:26:00:: 14200301 1 0 -mental_age%1:07:00:: 04925218 1 0 -mental_anguish%1:12:00:: 07495236 1 0 -mental_attitude%1:09:00:: 06193203 1 0 -mental_balance%1:26:00:: 14379360 1 0 -mental_block%1:09:00:: 05645199 1 0 -mental_capacity%1:09:00:: 05618056 1 0 -mental_case%1:18:00:: 10354898 1 1 -mental_condition%1:26:00:: 14373582 1 0 -mental_confusion%1:09:00:: 05683582 1 0 -mental_defectiveness%1:09:00:: 05646535 1 0 -mental_deficiency%1:09:00:: 05646828 1 0 -mental_dexterity%1:09:00:: 05619553 1 0 -mental_disease%1:26:00:: 14380140 1 0 -mental_disorder%1:26:00:: 14083790 1 0 -mental_disturbance%1:26:00:: 14083790 1 1 -mental_energy%1:16:00:: 09184834 1 0 -mental_exhaustion%1:26:00:: 14018203 1 0 -mental_faculty%1:09:00:: 05650329 1 0 -mental_health%1:26:00:: 14379130 1 1 -mental_home%1:06:00:: 03746574 1 0 -mental_hospital%1:06:00:: 03746574 1 0 -mental_hygiene%1:09:00:: 06056923 1 0 -mental_illness%1:26:00:: 14380140 1 0 -mental_image%1:09:00:: 05928118 1 4 -mental_imagery%1:09:00:: 05767733 1 0 -mental_institution%1:06:00:: 03746574 1 1 -mental_lexicon%1:09:00:: 05651242 1 0 -mental_measurement%1:04:00:: 01002677 1 0 -mental_note%1:09:00:: 05704550 1 0 -mental_object%1:09:00:: 05809192 1 0 -mental_picture%1:09:00:: 05936704 1 1 -mental_process%1:09:00:: 05701363 1 0 -mental_quickness%1:09:00:: 05619345 1 0 -mental_rejection%1:09:00:: 05698982 1 0 -mental_representation%1:09:00:: 05926676 1 0 -mental_reservation%1:09:00:: 05698620 1 0 -mental_retardation%1:09:00:: 05646218 1 0 -mental_soundness%1:26:00:: 14379360 1 0 -mental_state%1:26:00:: 14373582 1 0 -mental_strain%1:26:00:: 14375890 1 0 -mental_synthesis%1:09:00:: 05771836 1 0 -mental_telepathist%1:18:00:: 10697879 1 0 -mental_test%1:04:00:: 01006675 1 0 -mental_testing%1:04:00:: 01006675 1 0 -mental_unsoundness%1:26:00:: 14397714 1 0 -mentalism%1:09:00:: 05973007 1 0 -mentality%1:09:00:: 05618056 2 1 -mentality%1:09:01:: 06195839 1 1 -mentally%4:02:00:: 00228724 1 6 -mentally_ill%5:00:00:insane:00 02076817 1 1 -mentally_retarded%1:14:00:: 07948971 1 1 -mentation%1:09:00:: 05770926 1 0 -mentha%1:20:00:: 12854925 1 0 -mentha_aquatica%1:20:00:: 12855494 1 0 -mentha_arvensis%1:20:00:: 12855365 1 0 -mentha_citrata%1:20:00:: 12855710 1 0 -mentha_longifolia%1:20:00:: 12855886 1 0 -mentha_piperita%1:20:00:: 12856091 1 0 -mentha_pulegium%1:20:00:: 12856680 1 0 -mentha_rotundifolia%1:20:00:: 12856479 1 0 -mentha_spicata%1:20:00:: 12856287 1 0 -mentha_suaveolens%1:20:00:: 12856479 1 0 -menthol%1:06:00:: 03746861 2 0 -menthol%1:27:00:: 14950394 1 0 -mentholated%3:01:00:: 03085877 1 0 -mentholated_salve%1:06:00:: 03746994 1 0 -menticirrhus%1:05:00:: 02597173 1 0 -menticirrhus_americanus%1:05:00:: 02597818 1 0 -menticirrhus_littoralis%1:05:00:: 02598252 1 0 -menticirrhus_saxatilis%1:05:00:: 02597972 1 0 -menticirrhus_undulatus%1:05:00:: 02598134 1 0 -mention%1:10:00:: 06706317 3 0 -mention%1:10:01:: 06766190 1 8 -mention%1:10:02:: 06763681 2 1 -mention%2:32:00:: 01020005 2 14 -mention%2:32:01:: 01023071 3 6 -mention%2:32:02:: 01024190 1 62 -mentioner%1:18:00:: 10309347 1 0 -mentor%1:18:00:: 10309496 1 0 -mentor%2:32:00:: 00829947 1 0 -mentum%1:08:00:: 05277100 3 0 -mentum%1:08:02:: 05599617 2 0 -mentum%1:20:00:: 11690737 1 0 -mentzelia%1:20:00:: 12035423 1 0 -mentzelia_laevicaulis%1:20:00:: 12035631 1 0 -mentzelia_lindleyi%1:20:00:: 12035907 1 0 -mentzelia_livicaulis%1:20:00:: 12035631 1 0 -menu%1:09:00:: 05911124 4 0 -menu%1:10:00:: 06492939 1 1 -menu%1:10:01:: 06493392 3 0 -menu%1:13:00:: 07565083 2 0 -menuhin%1:18:00:: 11175040 1 0 -menura%1:05:00:: 01545425 1 0 -menurae%1:05:00:: 01545149 1 0 -menuridae%1:05:00:: 01545303 1 0 -menyanthaceae%1:20:00:: 12484413 1 0 -menyanthes%1:20:00:: 12484612 1 0 -menyanthes_trifoliata%1:20:00:: 12484784 1 0 -menziesia%1:20:00:: 12241699 1 0 -menziesia_ferruginea%1:20:00:: 12241880 1 0 -menziesia_pilosa%1:20:00:: 12242123 1 0 -meow%1:11:00:: 07386614 1 0 -meow%2:32:00:: 01052782 1 0 -mepacrine%1:06:00:: 04034641 1 0 -meperidine%1:06:00:: 03747103 1 0 -meperidine_hydrochloride%1:06:00:: 03747103 1 0 -mephaquine%1:06:00:: 03742728 1 0 -mephenytoin%1:06:00:: 03747281 1 0 -mephistophelean%5:00:00:evil:00 01133374 1 0 -mephistopheles%1:18:00:: 09601769 1 0 -mephistophelian%5:00:00:evil:00 01133374 1 0 -mephitic%5:00:00:malodorous:00 01054204 1 0 -mephitinae%1:05:00:: 02445564 1 0 -mephitis%1:05:00:: 02446014 3 0 -mephitis%1:09:00:: 05714894 2 0 -mephitis%1:27:00:: 15035975 1 0 -mephitis_macroura%1:05:00:: 02446352 1 0 -mephitis_mephitis%1:05:00:: 02446206 1 0 -mephobarbital%1:06:00:: 03747508 1 0 -meprin%1:06:00:: 03747746 1 0 -meprobamate%1:06:00:: 03747746 1 0 -meq%1:07:00:: 05026744 1 2 -meralgia%1:26:00:: 14328894 1 0 -merbromine%1:06:00:: 03748002 1 0 -mercalli_scale%1:24:00:: 13851426 1 0 -mercantile%3:01:00:: 02995482 1 0 -mercantile%5:00:00:commercial:00 00483650 3 0 -mercantile%5:00:02:commercial:00 00483816 2 0 -mercantile_agency%1:14:00:: 08354842 1 0 -mercantile_establishment%1:06:00:: 03748162 1 0 -mercantile_law%1:14:00:: 08455037 1 0 -mercantile_system%1:14:00:: 08367339 1 0 -mercantilism%1:04:00:: 01090446 2 0 -mercantilism%1:14:00:: 08367339 1 0 -mercaptopurine%1:06:00:: 03748456 1 0 -mercator%1:18:00:: 11175243 1 0 -mercator's_projection%1:06:00:: 03748691 1 0 -mercator_projection%1:06:00:: 03748691 1 0 -merce_cunningham%1:18:00:: 10917554 1 0 -mercedario%1:17:00:: 09351257 1 0 -mercenaria%1:05:00:: 01957923 1 0 -mercenaria_mercenaria%1:05:00:: 01958038 1 0 -mercenary%1:18:00:: 10309614 1 2 -mercenary%5:00:00:commercial:00 00483816 3 0 -mercenary%5:00:00:paid:00 01709081 2 0 -mercenary%5:00:00:worldly:00 02577907 1 0 -mercer%1:18:00:: 10309785 1 1 -mercer%1:18:01:: 11175445 2 0 -mercerise%2:30:00:: 00185698 1 0 -mercerised%3:44:00:: 03150670 1 0 -mercerize%2:30:00:: 00185698 1 0 -mercerized%3:44:00:: 03150670 1 0 -merchandise%1:06:00:: 03748886 1 4 -merchandise%2:40:00:: 02260362 1 1 -merchandiser%1:18:00:: 10309896 1 0 -merchandising%1:04:00:: 01113068 1 2 -merchant%1:18:00:: 10309896 1 8 -merchant-venturer%1:18:00:: 10748142 1 0 -merchant_bank%1:14:00:: 08419163 1 0 -merchant_marine%1:06:00:: 04196502 2 0 -merchant_marine%1:14:00:: 08273645 1 0 -merchant_ship%1:06:00:: 02878222 1 0 -merchant_vessels%1:06:00:: 04196502 1 0 -merchantability%1:26:00:: 14564165 1 0 -merchantable%5:00:00:salable:00 02062133 1 0 -merchantman%1:06:00:: 02878222 1 0 -merciful%3:00:00:: 01507134 1 1 -merciful%5:00:00:gracious:00 01142196 2 0 -mercifully%4:02:01:: 00192866 1 0 -mercifulness%1:04:00:: 01071411 3 0 -mercifulness%1:07:00:: 04829282 2 0 -mercifulness%1:12:00:: 07554500 1 0 -merciless%3:00:00:: 01507402 1 3 -mercilessly%4:02:00:: 00400471 1 0 -mercilessness%1:07:00:: 04831031 2 0 -mercilessness%1:12:00:: 07506382 1 0 -merckx%1:18:00:: 11175605 1 0 -mercouri%1:18:00:: 11175748 1 0 -mercurial%3:01:00:: 02866278 4 0 -mercurial%3:01:01:: 02866448 3 0 -mercurial%3:01:02:: 02866674 2 0 -mercurial%5:00:00:changeable:00 00345189 1 1 -mercurial_ointment%1:06:00:: 03749409 1 0 -mercurialis%1:20:00:: 12923839 1 0 -mercurialis_annua%1:20:00:: 12924036 1 0 -mercurialis_perennis%1:20:00:: 12924284 1 0 -mercuric%3:01:00:: 02763520 1 0 -mercuric_chloride%1:27:00:: 14950694 1 0 -mercurochrome%1:06:00:: 03748002 1 0 -mercurous%3:01:00:: 02763520 1 0 -mercurous_chloride%1:27:00:: 14950937 1 0 -mercury%1:07:00:: 05014308 4 0 -mercury%1:17:00:: 09351408 3 0 -mercury%1:18:00:: 09562704 2 0 -mercury%1:27:00:: 14645346 1 6 -mercury-contaminated%5:00:00:contaminated:00 01909628 1 0 -mercury-in-glass_clinical_thermometer%1:06:00:: 03043423 1 0 -mercury-in-glass_thermometer%1:06:00:: 03749807 1 0 -mercury-vapor_lamp%1:06:00:: 03750206 1 0 -mercury_barometer%1:06:00:: 03749504 1 0 -mercury_cell%1:06:00:: 03749634 1 0 -mercury_chloride%1:27:00:: 14950694 1 0 -mercury_fulminate%1:27:00:: 14798815 1 0 -mercury_poisoning%1:26:00:: 14511234 1 0 -mercury_program%1:09:00:: 05900010 1 0 -mercury_thermometer%1:06:00:: 03749807 1 0 -mercy%1:04:00:: 01071411 1 4 -mercy%1:04:01:: 01227495 5 0 -mercy%1:07:00:: 04829282 2 2 -mercy%1:12:00:: 07554500 3 1 -mercy%1:26:00:: 14474435 4 0 -mercy_killing%1:04:00:: 00219856 1 0 -mercy_seat%1:06:00:: 03750437 2 0 -mercy_seat%1:06:01:: 03750540 1 0 -mere%1:17:00:: 09351547 1 0 -mere%5:00:00:plain:01 01792573 2 4 -mere%5:00:00:specified:00 01099707 1 22 -meredith%1:18:00:: 11175875 2 0 -meredith%1:18:01:: 11176005 1 0 -merely%4:02:00:: 00004722 1 73 -merestone%1:10:00:: 07259438 1 0 -meretricious%3:01:00:: 02763684 1 0 -meretricious%5:00:00:insincere:00 02182302 3 0 -meretricious%5:00:00:tasteless:02 02393791 2 0 -meretriciously%4:02:00:: 00400722 1 0 -meretriciousness%1:07:00:: 04875113 1 0 -meretriciousness%1:07:02:: 04818700 2 0 -merganser%1:05:00:: 01854415 1 0 -merge%2:30:00:: 00367685 1 10 -merge%2:30:01:: 00394813 2 3 -merge%2:30:02:: 00243124 3 0 -merged%5:00:00:united:00 02477557 1 0 -mergenthaler%1:18:00:: 11176230 1 0 -merger%1:04:00:: 01238424 1 6 -merger%1:11:00:: 07373602 2 0 -merger_agreement%1:10:00:: 06527710 1 0 -merginae%1:05:00:: 01854047 1 0 -merging%1:04:01:: 00380881 2 0 -merging%1:04:02:: 00146856 1 1 -merging%5:00:00:convergent:00 00612383 1 0 -mergus%1:05:00:: 01854223 1 0 -mergus_albellus%1:05:00:: 01855188 1 0 -mergus_merganser%1:05:00:: 01854700 1 0 -mergus_merganser_americanus%1:05:00:: 01854838 1 0 -mergus_serrator%1:05:00:: 01855032 1 0 -mericarp%1:20:00:: 11678377 1 0 -merida%1:15:00:: 08740367 1 0 -meridian%1:15:00:: 08598823 3 0 -meridian%1:15:01:: 09105156 2 0 -meridian%1:26:00:: 13940456 1 0 -meridian%3:01:00:: 02866183 1 0 -meridian%5:00:00:mature:01 01489557 2 0 -meridional%3:01:00:: 02763824 1 0 -meridional%5:00:00:southern:01 01605445 2 0 -meringue%1:13:00:: 07621140 1 0 -meringue_kiss%1:13:00:: 07607027 1 0 -merino%1:05:00:: 02414290 1 0 -merino_sheep%1:05:00:: 02414290 1 0 -meriones%1:05:00:: 02344006 1 0 -meriones_longifrons%1:05:00:: 02344408 1 0 -meriones_unguiculatus%1:05:00:: 02344270 1 0 -meristem%1:20:00:: 13130885 1 0 -merit%1:07:01:: 05138958 1 5 -merit%1:07:02:: 04807050 2 3 -merit%2:42:04:: 02646378 1 6 -merit_badge%1:10:00:: 06882953 1 0 -merit_pay%1:21:00:: 13280373 1 0 -merit_system%1:09:00:: 05664487 1 0 -meritable%5:00:00:worthy:00 02586747 1 0 -merited%3:00:00:: 01371137 1 0 -meritless%5:00:00:worthless:00 02502578 1 0 -meritocracy%1:09:00:: 06218824 2 0 -meritocracy%1:14:00:: 07973088 1 0 -meritocratic%3:01:00:: 03086002 1 0 -meritorious%5:00:00:worthy:00 02586747 1 1 -meritoriously%4:02:00:: 00400876 1 0 -meritoriousness%1:07:00:: 04807050 1 0 -meriwether_lewis%1:18:00:: 11130940 1 0 -merl%1:05:00:: 01558594 1 0 -merlangus%1:05:00:: 02522990 1 0 -merlangus_merlangus%1:05:00:: 02523110 1 0 -merle%1:05:00:: 01558594 1 0 -merlin%1:05:00:: 01612275 2 0 -merlin%1:18:00:: 11176388 1 0 -merlon%1:06:00:: 03750614 1 0 -merlot%1:13:00:: 07895839 2 0 -merlot%1:20:00:: 13147045 1 0 -merluccius%1:05:00:: 02524424 1 0 -merluccius_bilinearis%1:05:00:: 02524659 1 0 -mermaid%1:18:00:: 09489601 1 1 -merman%1:18:00:: 09489697 2 0 -merman%1:18:01:: 11176527 1 0 -merodach%1:18:00:: 09519288 1 0 -meromelia%1:26:00:: 14466432 1 0 -meronym%1:10:00:: 06293746 1 0 -meronymy%1:24:00:: 13808708 1 0 -meropidae%1:05:00:: 01828714 1 0 -merops%1:05:00:: 01828856 1 0 -merostomata%1:05:00:: 01787191 1 0 -merovingian%1:14:00:: 08156200 2 0 -merovingian%1:18:00:: 10310404 1 0 -merovingian%3:01:00:: 02761455 1 0 -merovingian_dynasty%1:14:00:: 08156200 1 0 -merozoite%1:05:00:: 01422450 1 0 -merrily%4:02:00:: 00050297 1 2 -merrimac%1:06:00:: 03750748 1 0 -merrimack%1:17:00:: 09351647 1 0 -merrimack_river%1:17:00:: 09351647 1 0 -merriment%1:04:00:: 00429949 2 1 -merriment%1:12:00:: 07529245 1 2 -merriness%1:07:00:: 04649051 1 0 -merry%5:00:00:energetic:00 00874226 3 0 -merry%5:00:01:joyous:00 01367431 2 1 -merry%5:00:02:joyous:00 01367651 1 4 -merry-go-round%1:06:00:: 02966193 2 0 -merry-go-round%1:11:00:: 07342772 1 0 -merry_andrew%1:18:00:: 09930876 1 0 -merry_bells%1:20:00:: 12475035 1 0 -merrymaker%1:18:00:: 10526096 1 0 -merrymaking%1:04:00:: 00509846 1 1 -mertensia%1:20:00:: 12821257 1 0 -mertensia_virginica%1:20:00:: 12821505 1 0 -merthiolate%1:06:00:: 04424003 1 0 -merton%1:18:00:: 11176669 2 0 -merton%1:18:01:: 11176797 1 0 -meryl_streep%1:18:00:: 11322068 1 0 -meryta%1:20:00:: 11799158 1 0 -meryta_sinclairii%1:20:00:: 11799331 1 0 -mesa%1:15:00:: 09058071 2 0 -mesa%1:17:00:: 09351905 1 0 -mesa_verde_national_park%1:15:00:: 08607575 1 0 -mesabi_range%1:17:00:: 09352108 1 0 -mesalliance%1:26:00:: 13965780 1 0 -mesantoin%1:06:00:: 03747281 1 0 -mesasamkranti%1:28:00:: 15221286 1 0 -mescal%1:13:00:: 07905770 2 0 -mescal%1:20:00:: 11849271 1 0 -mescal_bean%1:20:00:: 12570703 1 0 -mescal_button%1:20:00:: 11849467 1 0 -mescaline%1:06:00:: 03750912 1 0 -mesembryanthemum%1:20:00:: 11820751 1 0 -mesembryanthemum_crystallinum%1:20:00:: 11821184 1 0 -mesembryanthemum_edule%1:20:00:: 11819509 1 0 -mesencephalon%1:08:00:: 05499828 1 0 -mesenchyme%1:05:00:: 01464441 1 0 -mesenteric%3:01:00:: 03009476 1 1 -mesenteric_artery%1:08:00:: 05351746 1 0 -mesenteric_plexus%1:08:00:: 05507642 1 0 -mesenteric_vein%1:08:00:: 05373616 1 0 -mesentery%1:08:00:: 05429195 1 0 -mesh%1:04:00:: 00140393 5 0 -mesh%1:06:00:: 03819595 4 0 -mesh%1:09:00:: 05731062 3 0 -mesh%1:11:00:: 07338114 2 0 -mesh%1:23:00:: 13654889 1 1 -mesh%2:30:00:: 00405079 2 1 -mesh%2:35:00:: 01463340 4 0 -mesh%2:35:01:: 01510827 1 1 -mesh%2:41:00:: 02458017 3 0 -mesh_topology%1:09:00:: 05731062 1 0 -meshed%1:15:00:: 08911868 1 0 -meshed%5:00:00:geared:00 01100817 2 0 -meshed%5:00:00:reticulate:00 02007225 1 0 -meshing%1:04:00:: 00140393 3 0 -meshing%1:06:01:: 03819595 2 0 -meshing%1:11:00:: 07338114 1 0 -meshuga%5:00:00:impractical:00 01837025 1 0 -meshugaas%1:04:00:: 00513251 1 0 -meshugga%5:00:00:impractical:00 01837025 1 0 -meshugge%5:00:00:impractical:00 01837025 1 0 -meshuggeneh%1:18:00:: 10310516 1 0 -meshuggeneh%5:00:00:impractical:00 01837025 1 0 -meshuggener%1:18:00:: 10310516 1 0 -meshuggener%5:00:00:impractical:00 01837025 1 0 -meshwork%1:06:00:: 03819595 1 0 -mesial%3:00:00:: 00778958 1 0 -mesic%3:00:00:: 02589551 2 0 -mesic%3:01:00:: 02995161 1 0 -mesmer%1:18:00:: 11176932 1 0 -mesmeric%5:00:00:attractive:01 00168188 1 0 -mesmerise%2:29:00:: 00020671 2 0 -mesmerise%2:32:00:: 00777522 1 0 -mesmerised%5:00:00:enchanted:00 00865848 1 0 -mesmerism%1:04:00:: 00158996 1 0 -mesmerist%1:18:00:: 10195261 1 0 -mesmerize%2:29:00:: 00020671 2 0 -mesmerize%2:32:00:: 00777522 1 1 -mesmerized%5:00:00:enchanted:00 00865848 1 0 -mesmerizer%1:18:00:: 10195261 1 0 -mesmerizing%5:00:00:attractive:01 00168188 1 0 -mesne_lord%1:18:00:: 10310647 1 0 -mesoamerica%1:15:00:: 08735564 1 0 -mesoamerican%1:18:00:: 10310783 1 0 -mesoamerican%3:01:00:: 02866825 1 0 -mesoblast%1:05:00:: 01464077 1 0 -mesoblastic%3:01:00:: 02866976 1 0 -mesocarp%1:20:00:: 11684654 1 0 -mesocolon%1:08:00:: 05429404 1 0 -mesocricetus%1:05:00:: 02343187 1 0 -mesocricetus_auratus%1:05:00:: 02343320 1 0 -mesoderm%1:05:00:: 01464077 1 0 -mesodermal%3:01:00:: 02866976 1 0 -mesohippus%1:05:00:: 02376135 1 0 -mesolithic%1:28:00:: 15233239 1 0 -mesolithic%3:01:00:: 03089951 1 0 -mesolithic_age%1:28:00:: 15233239 1 0 -mesomorph%1:18:00:: 10310903 1 0 -mesomorphic%3:00:00:: 00828336 1 0 -mesomorphy%1:07:00:: 04999306 1 0 -meson%1:17:00:: 09352282 1 0 -mesonic%3:01:00:: 02995161 1 0 -mesophyron%1:08:00:: 05232691 1 0 -mesophyte%1:20:00:: 13121349 1 0 -mesophytic%5:00:00:mesic:00 02589730 1 0 -mesophytic_plant%1:20:00:: 13121349 1 0 -mesopotamia%1:15:00:: 08916316 1 0 -mesosphere%1:17:00:: 09352578 1 0 -mesothelioma%1:26:00:: 14251435 1 0 -mesothelium%1:08:00:: 05240710 1 0 -mesotron%1:17:00:: 09352282 1 0 -mesozoic%1:28:00:: 15126175 1 0 -mesozoic%3:01:00:: 02867141 1 0 -mesozoic_era%1:28:00:: 15126175 1 0 -mespilus%1:20:00:: 12636107 1 0 -mespilus_germanica%1:20:00:: 12636224 1 0 -mesquit%1:20:00:: 11765277 1 0 -mesquite%1:20:00:: 11765277 1 0 -mesquite_gum%1:27:00:: 14901565 1 0 -mess%1:06:00:: 03751065 5 1 -mess%1:13:00:: 07565608 4 1 -mess%1:13:01:: 07650792 3 1 -mess%1:23:00:: 13774404 6 0 -mess%1:26:00:: 14500047 1 12 -mess%1:26:02:: 14409489 2 1 -mess%2:30:00:: 00276214 2 0 -mess%2:34:00:: 01176079 1 0 -mess-up%1:04:00:: 00075618 1 0 -mess_about%2:42:00:: 02639075 1 0 -mess_around%2:35:00:: 01473346 1 2 -mess_hall%1:06:00:: 03751065 1 1 -mess_jacket%1:06:00:: 03751269 1 0 -mess_kit%1:06:00:: 03751458 1 0 -mess_of_pottage%1:21:00:: 13413840 1 0 -mess_up%2:30:00:: 00276214 3 0 -mess_up%2:35:01:: 01387493 2 0 -mess_up%2:41:00:: 02527651 1 1 -message%1:10:00:: 06598915 2 11 -message%1:10:01:: 06253690 1 20 -message%2:32:00:: 01071328 3 0 -message%2:32:01:: 01071474 2 0 -message%2:32:02:: 01071632 1 0 -message_pad%1:27:00:: 14951110 1 0 -messaging%1:10:00:: 06280477 1 0 -messenger%1:18:00:: 10311021 1 7 -messenger_boy%1:18:00:: 10311375 1 1 -messenger_rna%1:27:00:: 14832770 1 0 -messiah%1:10:00:: 07042405 4 0 -messiah%1:18:00:: 09537325 3 0 -messiah%1:18:01:: 09537502 2 0 -messiah%1:18:02:: 09537660 1 0 -messiahship%1:04:00:: 00595410 1 0 -messianic%3:01:00:: 02867242 1 0 -messidor%1:28:00:: 15177396 1 0 -messily%4:02:00:: 00400998 1 0 -messina%1:15:00:: 08805801 1 0 -messiness%1:07:00:: 04897428 2 0 -messiness%1:26:01:: 14500047 1 0 -messmate%1:18:00:: 10311506 1 0 -messuage%1:06:00:: 03751590 1 0 -messy%5:00:00:untidy:00 02426042 1 1 -mestiza%1:18:00:: 10311661 1 0 -mestizo%1:18:00:: 10311823 1 0 -mestranol%1:27:00:: 14751216 1 0 -mesua%1:20:00:: 12370384 1 0 -mesua_ferrea%1:20:00:: 12370549 1 0 -metabola%1:05:00:: 02161225 1 0 -metabolic%3:00:00:: 01508444 2 0 -metabolic%3:01:00:: 02975096 1 1 -metabolic_acidosis%1:26:00:: 14020023 1 0 -metabolic_alkalosis%1:26:00:: 14021471 1 0 -metabolic_disorder%1:26:00:: 14084502 1 0 -metabolic_process%1:22:00:: 13514314 1 0 -metabolic_rate%1:28:00:: 15280201 1 0 -metabolically%4:02:00:: 00114192 1 0 -metabolise%2:34:00:: 01197750 1 0 -metabolism%1:22:00:: 13514314 2 0 -metabolism%1:22:02:: 13514880 1 0 -metabolite%1:27:00:: 15110796 1 0 -metabolize%2:34:00:: 01197750 1 1 -metabolous%3:00:00:: 01508444 1 0 -metacarpal%1:08:00:: 05277261 1 0 -metacarpal%3:01:00:: 03086167 1 0 -metacarpal_artery%1:08:00:: 05352291 1 0 -metacarpal_bone%1:08:00:: 05277261 1 0 -metacarpal_vein%1:08:00:: 05373790 1 0 -metacarpophalangeal_joint%1:08:00:: 05585205 1 0 -metacarpus%1:08:00:: 05593871 1 0 -metacenter%1:09:00:: 05866822 1 0 -metacentre%1:09:00:: 05866822 1 0 -metacentric%3:01:00:: 03140338 2 0 -metacentric%3:01:01:: 03140494 1 0 -metacentric_chromosome%1:08:00:: 05445099 1 0 -metacyesis%1:26:00:: 14047740 1 0 -metadata%1:14:00:: 08462721 1 0 -metagenesis%1:19:00:: 11424589 1 0 -metagrabolised%5:00:00:perplexed:00 01766550 1 0 -metagrabolized%5:00:00:perplexed:00 01766550 1 0 -metagrobolised%5:00:00:perplexed:00 01766550 1 0 -metagrobolized%5:00:00:perplexed:00 01766550 1 0 -metaknowledge%1:09:00:: 05999455 1 0 -metal%1:27:00:: 14625458 1 21 -metal%1:27:01:: 14586769 2 0 -metal%2:35:00:: 01603303 1 0 -metal%3:00:00:: 01527420 1 5 -metal-colored%5:00:00:colored:00 00398677 1 0 -metal-coloured%5:00:00:colored:00 00398677 1 0 -metal-cutting%5:00:00:sharp:00 00802397 1 0 -metal-looking%5:00:00:metallic:00 01528946 1 0 -metal_bar%1:06:00:: 03570526 1 0 -metal_detector%1:06:00:: 03751757 1 0 -metal_drum%1:06:00:: 03249956 1 0 -metal_filing%1:17:00:: 09352721 1 0 -metal_glove%1:06:00:: 03429771 1 0 -metal_money%1:21:00:: 13387877 1 0 -metal_plating%1:06:00:: 03963028 1 0 -metal_saw%1:06:00:: 03474779 1 0 -metal_screw%1:06:00:: 03752185 1 0 -metal_wood%1:06:00:: 03752398 1 0 -metalanguage%1:10:00:: 06900156 1 0 -metalepsis%1:10:00:: 07107896 1 0 -metalhead%1:18:00:: 10311995 1 0 -metalize%2:35:00:: 01615602 1 0 -metallic%1:06:00:: 03751977 2 0 -metallic%1:06:01:: 03752071 1 0 -metallic%3:00:00:: 01527420 1 3 -metallic-colored%5:00:00:colored:00 00398677 1 0 -metallic-coloured%5:00:00:colored:00 00398677 1 0 -metallic-looking%5:00:00:metallic:00 01528946 1 0 -metallic_bond%1:19:00:: 11438105 1 0 -metallic_element%1:27:00:: 14625458 1 0 -metallike%5:00:00:metallic:00 01528946 1 0 -metallize%2:35:00:: 01615602 1 0 -metallized_dye%1:27:00:: 14627529 1 0 -metalloid%5:00:00:nonmetallic:00 01529479 1 0 -metallurgic%3:01:00:: 03086294 1 0 -metallurgical%3:01:00:: 03086294 1 0 -metallurgical_engineer%1:18:00:: 10312077 1 0 -metallurgist%1:18:00:: 10312077 1 0 -metallurgy%1:09:00:: 06125698 1 0 -metalware%1:06:00:: 03752262 1 0 -metalwork%1:04:00:: 00925732 2 0 -metalwork%1:06:00:: 03752521 1 0 -metalworker%1:18:00:: 10614629 1 0 -metalworking%1:04:00:: 00925732 1 0 -metalworking_vise%1:06:00:: 03702440 1 0 -metalworks%1:06:00:: 03387653 1 0 -metamathematics%1:09:00:: 06017895 1 0 -metamere%1:05:00:: 02665812 1 0 -metameric%5:00:00:divided:00 02481951 1 0 -metamorphic%3:00:00:: 01529643 2 0 -metamorphic%3:01:00:: 02951869 1 0 -metamorphic_rock%1:27:00:: 14698698 1 0 -metamorphism%1:22:00:: 13514648 1 0 -metamorphopsia%1:26:00:: 14554695 1 0 -metamorphose%2:30:00:: 00384055 1 1 -metamorphose%2:30:02:: 00381601 2 0 -metamorphosis%1:04:01:: 00402128 3 0 -metamorphosis%1:04:02:: 00402308 2 0 -metamorphosis%1:22:00:: 13514880 1 0 -metamorphous%3:01:00:: 02951869 1 0 -metamorphous%5:00:00:metamorphic:00 01530801 2 0 -metaphase%1:22:01:: 13515149 2 0 -metaphase%1:22:02:: 13515251 1 0 -metaphor%1:10:00:: 07106800 1 3 -metaphoric%5:00:00:figurative:00 01419784 1 0 -metaphorical%5:00:00:figurative:00 01419784 1 0 -metaphorically%4:02:00:: 00135073 1 0 -metaphosphoric_acid%1:27:00:: 14615135 1 0 -metaphysical%3:01:00:: 02865814 1 2 -metaphysical%5:00:00:supernatural:00 01576729 2 1 -metaphysical%5:00:00:theoretical:00 00862067 3 0 -metaphysically%4:02:00:: 00134419 1 0 -metaphysics%1:09:00:: 06162653 1 0 -metaphysis%1:08:00:: 05592870 1 0 -metaplastic_anaemia%1:26:00:: 14168010 1 0 -metaplastic_anemia%1:26:00:: 14168010 1 0 -metaproterenol%1:06:00:: 03752649 1 0 -metarule%1:09:00:: 05847320 1 0 -metasequoia%1:20:00:: 11640132 1 0 -metasequoia_glyptostrodoides%1:20:00:: 11640132 1 0 -metastability%1:07:00:: 04739262 1 0 -metastable%3:01:00:: 02865963 1 0 -metastasis%1:22:01:: 13515353 1 0 -metastasise%2:29:00:: 00104667 1 0 -metastasize%2:29:00:: 00104667 1 0 -metastatic%3:01:00:: 02975216 1 0 -metastatic_tumor%1:26:00:: 14239425 1 0 -metatarsal%1:08:00:: 05277405 1 0 -metatarsal%3:01:00:: 03086476 1 0 -metatarsal_arch%1:08:00:: 05576827 1 0 -metatarsal_artery%1:08:00:: 05352433 1 0 -metatarsal_vein%1:08:00:: 05373924 1 0 -metatarsus%1:08:00:: 05594568 1 0 -metatheria%1:05:00:: 01873850 1 0 -metatherian%1:05:00:: 01873982 1 0 -metathesis%1:22:00:: 13469066 2 0 -metathesis%1:22:01:: 13515520 1 0 -metaurus_river%1:04:00:: 01287179 1 0 -metazoa%1:05:00:: 01908703 1 0 -metazoan%1:05:00:: 01908958 1 0 -metchnikoff%1:18:00:: 11177151 1 0 -metchnikov%1:18:00:: 11177151 1 0 -mete%1:15:00:: 08512736 1 0 -mete_out%2:40:00:: 02294436 1 0 -meted_out%5:00:00:distributed:00 00540236 1 1 -metempsychosis%1:19:00:: 11408914 1 0 -metencephalon%1:08:00:: 05481997 1 0 -meteor%1:17:00:: 09353109 1 6 -meteor%1:19:00:: 11483990 2 0 -meteor_shower%1:19:00:: 11507000 1 0 -meteor_stream%1:19:00:: 11507000 1 1 -meteor_swarm%1:17:00:: 09353338 1 0 -meteoric%3:01:00:: 02865315 2 0 -meteoric%3:01:02:: 02865479 1 0 -meteoric%5:00:00:fast:01 00979234 3 0 -meteorite%1:17:00:: 09352849 1 8 -meteoritic%3:01:00:: 02980416 1 6 -meteoritical%3:01:00:: 02980416 1 0 -meteoroid%1:17:00:: 09353109 1 0 -meteorologic%3:01:00:: 02865479 1 0 -meteorological%3:01:00:: 02865479 1 1 -meteorological_balloon%1:06:00:: 03752922 1 0 -meteorological_conditions%1:26:00:: 14520123 1 2 -meteorological_observation_post%1:15:00:: 08599976 1 0 -meteorological_satellite%1:06:00:: 04567593 1 0 -meteorologically%4:02:00:: 00134294 1 0 -meteorologist%1:18:00:: 10312287 1 0 -meteorology%1:09:00:: 06118563 2 0 -meteorology%1:10:00:: 06749729 1 0 -meteortropism%1:04:00:: 00862170 1 0 -meter%1:06:00:: 03753077 2 1 -meter%1:07:00:: 04991738 4 0 -meter%1:10:00:: 07094093 3 0 -meter%1:23:00:: 13659162 1 6 -meter%2:30:00:: 00490586 1 1 -meter%2:35:00:: 01273974 2 0 -meter_maid%1:18:00:: 10312491 1 0 -meter_reading%1:04:00:: 01004582 2 0 -meter_reading%1:09:00:: 05816790 1 0 -meterstick%1:06:00:: 03753514 1 0 -metformin%1:06:00:: 03753657 1 0 -meth%1:06:00:: 03754295 1 0 -methacholine%1:06:00:: 03753826 1 0 -methacrylic_acid%1:27:00:: 14615822 1 0 -methadon%1:06:00:: 03754014 1 0 -methadone%1:06:00:: 03754014 1 0 -methadone_hydrochloride%1:06:00:: 03754014 1 0 -methamphetamine%1:06:00:: 03754295 1 0 -methamphetamine_hydrochloride%1:06:00:: 03754295 1 0 -methanal%1:27:00:: 14873196 1 0 -methane%1:27:00:: 14951229 1 0 -methane_series%1:27:00:: 14951377 1 0 -methanogen%1:05:00:: 01347858 1 0 -methanol%1:27:00:: 14687818 1 0 -methapyrilene%1:06:00:: 03754676 1 0 -methaqualone%1:06:00:: 03754822 1 0 -metharbital%1:06:00:: 03754979 1 0 -methedrine%1:06:00:: 03754295 1 0 -metheglin%1:13:00:: 07890890 1 0 -methenamine%1:06:00:: 03755140 1 0 -methicillin%1:06:00:: 03755388 1 0 -methionine%1:27:00:: 14952290 1 0 -methocarbamol%1:06:00:: 03755545 1 0 -method%1:04:00:: 00549766 2 0 -method%1:09:00:: 05660268 1 95 -method_acting%1:04:00:: 00549766 1 0 -method_of_accounting%1:21:00:: 13405962 1 0 -method_of_choice%1:09:00:: 05661294 1 1 -method_of_fluxions%1:09:00:: 06014435 1 0 -method_of_least_squares%1:09:00:: 06021013 1 0 -methodical%5:00:00:organized:01 01668567 1 3 -methodically%4:02:00:: 00173884 1 5 -methodicalness%1:07:00:: 04768483 1 0 -methodism%1:09:00:: 06231494 1 0 -methodist%1:18:00:: 10312600 1 0 -methodist%3:01:00:: 02955562 1 1 -methodist_church%1:14:00:: 08092340 1 1 -methodist_denomination%1:14:00:: 08092539 1 0 -methodists%1:14:00:: 08092340 1 0 -methodological%3:01:00:: 02943463 1 0 -methodological_analysis%1:09:00:: 06166898 1 0 -methodologically%4:02:00:: 00401345 1 0 -methodology%1:09:00:: 05661400 2 0 -methodology%1:09:01:: 06166898 1 0 -methotrexate%1:06:00:: 03755712 1 0 -methotrexate_sodium%1:06:00:: 03755712 1 0 -methuselah%1:18:00:: 11177370 1 0 -methuselah%1:18:01:: 10375506 2 0 -methyl%1:27:00:: 14952122 1 0 -methyl_alcohol%1:27:00:: 14687818 1 0 -methyl_bromide%1:27:00:: 14951682 1 0 -methyl_ethyl_ketone%1:27:00:: 14787954 1 0 -methyl_group%1:27:00:: 14952122 1 0 -methyl_orange%1:27:00:: 14771482 1 0 -methyl_phenol%1:27:00:: 14825982 1 0 -methyl_radical%1:27:00:: 14952122 1 0 -methyl_salicylate%1:27:00:: 14952441 1 0 -methylated%3:01:00:: 03086603 1 0 -methylated_spirit%1:27:00:: 14951814 1 0 -methylbenzene%1:27:00:: 15075378 1 0 -methyldopa%1:06:00:: 03755991 1 0 -methylene%1:27:00:: 14951983 1 0 -methylene_blue%1:27:00:: 14771270 1 0 -methylene_chloride%1:27:00:: 15018013 1 0 -methylene_group%1:27:00:: 14951983 1 0 -methylene_radical%1:27:00:: 14951983 1 0 -methylenedioxymethamphetamine%1:06:00:: 03756184 1 0 -methylphenidate%1:06:00:: 03756624 1 0 -methyltestosterone%1:27:00:: 14748117 1 0 -methylthionine_chloride%1:27:00:: 14771270 1 0 -metic%1:18:00:: 10312890 1 0 -metical%1:23:00:: 13688811 1 0 -meticorten%1:27:00:: 14753414 1 0 -meticulosity%1:07:00:: 04672605 1 0 -meticulous%5:00:00:fastidious:00 00984879 2 0 -meticulous%5:00:00:precise:00 01838529 1 0 -meticulously%4:02:00:: 00194037 1 4 -meticulousness%1:07:00:: 04672605 1 0 -metier%1:04:00:: 00610222 2 0 -metier%1:07:00:: 05159225 1 0 -metis%1:18:00:: 10313000 1 1 -metonym%1:10:00:: 06293898 1 0 -metonymic%5:00:00:figurative:00 01419999 1 0 -metonymical%5:00:00:figurative:00 01419999 1 0 -metonymically%4:02:00:: 00134532 1 0 -metonymy%1:10:00:: 07107676 1 0 -metopion%1:08:00:: 05234016 1 0 -metoprolol%1:06:00:: 03756857 1 0 -metralgia%1:26:00:: 14328966 1 0 -metrazol%1:06:00:: 03913702 1 1 -metrazol_shock%1:04:00:: 00707028 1 0 -metrazol_shock_therapy%1:04:00:: 00707028 1 0 -metrazol_shock_treatment%1:04:00:: 00707028 1 0 -metre%1:07:00:: 04991738 3 0 -metre%1:10:00:: 07094093 2 0 -metre%1:23:00:: 13659162 1 0 -metrestick%1:06:00:: 03753514 1 0 -metric%1:23:00:: 13577171 3 0 -metric%1:23:01:: 13604275 2 0 -metric%1:24:00:: 13784906 1 0 -metric%3:01:00:: 02995636 1 0 -metric%5:00:00:rhythmical:00 02020310 2 0 -metric_capacity_unit%1:23:00:: 13616054 1 0 -metric_function%1:24:00:: 13784906 1 0 -metric_grain%1:23:00:: 13723304 1 0 -metric_hundredweight%1:23:00:: 13725271 1 0 -metric_linear_unit%1:23:00:: 13649268 1 0 -metric_space%1:14:00:: 08004695 1 0 -metric_system%1:23:00:: 13577934 1 0 -metric_ton%1:23:00:: 13725588 1 0 -metric_unit%1:23:00:: 13604275 1 0 -metric_weight_unit%1:23:00:: 13717155 1 0 -metrical%3:01:00:: 02995636 1 0 -metrical%5:00:00:rhythmical:00 02020310 2 0 -metrical_foot%1:10:00:: 07094843 1 0 -metrical_unit%1:10:00:: 07094843 1 0 -metrically%4:02:00:: 00401465 1 0 -metricate%2:30:00:: 00381331 1 0 -metrication%1:04:00:: 00194645 1 0 -metricise%2:30:00:: 00381331 2 0 -metricise%2:30:01:: 00383764 1 0 -metricize%2:30:00:: 00381331 2 0 -metricize%2:30:01:: 00383764 1 0 -metrics%1:09:00:: 06170025 1 0 -metrification%1:04:00:: 00194645 2 0 -metrification%1:04:01:: 00931300 1 0 -metrify%2:30:00:: 00381331 2 0 -metrify%2:36:00:: 01703023 1 0 -metritis%1:26:00:: 14349892 1 0 -metro%1:06:00:: 03757138 1 1 -metrological%3:01:00:: 02763927 1 0 -metrology%1:09:00:: 06135806 1 0 -metronidazole%1:06:00:: 03757428 1 0 -metronome%1:06:00:: 03757604 1 0 -metronome_marking%1:28:00:: 15286042 1 0 -metronymic%1:10:00:: 06336149 1 0 -metropolis%1:14:00:: 08226335 2 0 -metropolis%1:15:00:: 08524735 1 7 -metropolitan%1:18:00:: 10313146 2 0 -metropolitan%1:18:01:: 10313239 1 0 -metropolitan%3:01:00:: 02865172 1 15 -metroptosis%1:26:00:: 14558801 1 0 -metrorrhagia%1:26:00:: 14370825 1 0 -metroxylon%1:20:00:: 12591523 1 0 -metroxylon_sagu%1:20:00:: 12591702 1 0 -metternich%1:18:00:: 11177532 1 0 -mettle%1:07:02:: 04857490 1 0 -mettlesome%5:00:00:brave:00 00263994 2 0 -mettlesome%5:00:00:spirited:00 02280457 1 0 -mettlesomeness%1:07:00:: 04634415 1 0 -metycaine%1:06:00:: 03946933 1 0 -meuniere_butter%1:13:00:: 07849186 1 0 -meuse%1:04:00:: 01287431 2 0 -meuse%1:17:00:: 09353437 1 0 -meuse-argonne%1:04:00:: 01287431 1 0 -meuse-argonne_operation%1:04:00:: 01287431 1 0 -meuse_river%1:04:00:: 01287431 2 0 -meuse_river%1:17:00:: 09353437 1 0 -mevacor%1:06:00:: 03693089 1 0 -mew%1:05:00:: 02041678 2 0 -mew%1:11:00:: 07386614 1 0 -mew%2:32:00:: 01052782 1 1 -mew%2:32:03:: 01060198 2 0 -mew_gull%1:05:00:: 02041678 1 0 -mewl%2:29:00:: 00066025 1 0 -mews%1:06:00:: 03757723 1 0 -mexicali%1:15:00:: 08744105 1 0 -mexican%1:18:00:: 09722658 1 17 -mexican%3:01:00:: 03026902 1 4 -mexican-american%1:18:00:: 09723067 1 0 -mexican_beaded_lizard%1:05:00:: 01692523 1 0 -mexican_bean_beetle%1:05:00:: 02166229 1 0 -mexican_black_cherry%1:13:00:: 07757874 1 0 -mexican_capital%1:15:00:: 08744236 1 0 -mexican_cypress%1:20:00:: 11632376 1 0 -mexican_fire_plant%1:20:00:: 12920719 1 0 -mexican_flameleaf%1:20:00:: 12920204 1 0 -mexican_freetail_bat%1:05:00:: 02149653 1 0 -mexican_green%1:06:00:: 02670049 1 0 -mexican_hairless%1:05:00:: 02113978 1 0 -mexican_hat%1:20:00:: 12006930 1 0 -mexican_husk_tomato%1:13:00:: 07734555 2 0 -mexican_husk_tomato%1:20:00:: 12911440 1 0 -mexican_hyssop%1:20:00:: 12840502 1 0 -mexican_jumping_bean%1:20:00:: 12928819 1 0 -mexican_juniper%1:20:00:: 11638698 1 0 -mexican_mint%1:20:00:: 12866459 1 0 -mexican_monetary_unit%1:23:00:: 13692713 1 0 -mexican_nut_pine%1:20:00:: 11609862 1 0 -mexican_onyx%1:27:00:: 14665469 1 0 -mexican_peso%1:23:00:: 13692822 1 0 -mexican_pocket_mouse%1:05:00:: 02349847 1 0 -mexican_poppy%1:20:00:: 11902982 1 0 -mexican_revolution%1:04:00:: 01305796 1 0 -mexican_spanish%1:10:00:: 06967428 1 0 -mexican_standoff%1:26:00:: 13936557 1 0 -mexican_sunflower%1:20:00:: 12026018 1 0 -mexican_swamp_cypress%1:20:00:: 11642430 1 0 -mexican_tea%1:20:01:: 11828804 2 0 -mexican_tea%1:20:02:: 11829205 1 0 -mexican_tulip_poppy%1:20:00:: 11906127 1 0 -mexican_valium%1:06:00:: 04036494 1 0 -mexican_war%1:04:00:: 01306007 1 0 -mexicano%1:18:00:: 09723067 1 0 -mexico%1:15:00:: 08740875 1 3 -mexico_city%1:15:00:: 08744236 1 0 -mexiletine%1:06:00:: 03757925 1 0 -mexitil%1:06:00:: 03757925 1 0 -meyer_guggenheim%1:18:00:: 11018862 1 0 -meyerbeer%1:18:00:: 11177695 1 0 -meyerhof%1:18:00:: 11177873 1 0 -mezcal%1:20:00:: 11849271 1 0 -mezereon%1:20:00:: 12347158 1 0 -mezereum%1:20:00:: 12347380 1 0 -mezuza%1:10:00:: 06433672 1 0 -mezuzah%1:10:00:: 06433672 1 0 -mezzanine%1:06:00:: 03758089 2 0 -mezzanine%1:06:01:: 03758220 1 0 -mezzanine_floor%1:06:00:: 03758089 1 0 -mezzo%1:10:00:: 06873017 2 0 -mezzo%1:18:00:: 10313441 1 0 -mezzo-relievo%1:06:00:: 03758334 1 0 -mezzo-rilievo%1:06:00:: 03758334 1 0 -mezzo-soprano%1:10:00:: 06873017 2 0 -mezzo-soprano%1:18:00:: 10313441 1 0 -mezzotint%1:06:00:: 03758478 1 0 -mf%1:07:00:: 05057485 1 0 -mfa%1:10:00:: 06701698 1 0 -mflop%1:23:00:: 13607187 1 0 -mg%1:23:00:: 13723061 1 39 -mg%1:27:00:: 14644249 2 0 -mho%1:23:00:: 13637240 1 0 -mhz%1:28:00:: 15279957 1 0 -mi%1:10:00:: 06868582 8 0 -mi%1:14:05:: 08347206 6 0 -mi%1:14:06:: 08346655 7 0 -mi%1:15:00:: 09099526 5 0 -mi%1:23:00:: 13651218 4 0 -mi%1:23:04:: 13660337 3 0 -mi%1:23:05:: 13660619 2 0 -mi%1:26:00:: 14113021 1 0 -miami%1:15:00:: 09073697 2 0 -miami%1:18:00:: 09661107 1 0 -miami_beach%1:15:00:: 09073938 1 0 -miao%1:10:00:: 06937098 2 0 -miao%1:18:00:: 09713764 1 0 -miaou%1:11:00:: 07386614 1 0 -miaou%2:32:00:: 00941719 1 0 -miaow%1:11:00:: 07386614 1 0 -miaow%2:32:00:: 00941719 1 0 -miasm%1:26:00:: 14518010 2 0 -miasm%1:26:01:: 14526032 1 0 -miasma%1:26:00:: 14518010 2 0 -miasma%1:26:01:: 14526032 1 0 -miasmal%5:00:00:cloudy:00 00462546 1 0 -miasmic%5:00:00:cloudy:00 00462546 2 0 -miasmic%5:00:00:malodorous:00 01054204 1 0 -miaul%1:11:00:: 07386614 1 0 -mib%1:23:00:: 13628056 1 0 -mibit%1:23:00:: 13628592 1 0 -mica%1:27:00:: 14681555 1 0 -micaceous%3:01:00:: 02764031 1 0 -micah%1:10:00:: 06440102 2 0 -micah%1:18:00:: 11178059 1 0 -micawber%1:18:00:: 09601906 1 0 -micelle%1:17:00:: 09353603 1 11 -michael%1:18:00:: 09539517 1 0 -michael_assat%1:18:00:: 11201386 1 0 -michael_ellis_de_bakey%1:18:00:: 10926238 1 0 -michael_faraday%1:18:00:: 10966318 1 0 -michael_gerald_tyson%1:18:00:: 11355082 1 0 -michael_jackson%1:18:00:: 11076965 1 0 -michael_joe_jackson%1:18:00:: 11076965 1 0 -michael_ondaatje%1:18:00:: 11214926 1 0 -michael_philip_jagger%1:18:00:: 11078650 1 0 -michaelmas%1:28:00:: 15186412 1 0 -michaelmas_daisy%1:20:00:: 11934807 1 0 -michaelmas_day%1:28:00:: 15186412 1 0 -michaelmastide%1:28:00:: 15186596 1 0 -micheas%1:10:00:: 06440102 2 0 -micheas%1:18:00:: 11178059 1 0 -michel_de_notredame%1:18:00:: 11210105 1 0 -michel_eyquem_montaigne%1:18:00:: 11186511 1 0 -michel_montaigne%1:18:00:: 11186511 1 0 -michel_ney%1:18:00:: 11205647 1 0 -michelangelesque%3:01:00:: 03035021 1 0 -michelangelo%1:18:00:: 11178161 1 0 -michelangelo_buonarroti%1:18:00:: 11178161 1 0 -michelangelo_merisi_da_caravaggio%1:18:00:: 10882089 1 0 -michelson%1:18:00:: 11178393 1 0 -michelson-morley_experiment%1:04:00:: 00693109 1 0 -michener%1:18:00:: 11178631 1 0 -michigan%1:04:00:: 00493308 3 0 -michigan%1:15:00:: 09099526 1 5 -michigan%1:17:00:: 09332050 2 0 -michigan_lily%1:20:00:: 12428242 1 0 -michigander%1:18:00:: 09743690 1 0 -michinomiya_hirohito%1:18:00:: 11051822 1 0 -mick%1:18:00:: 09715521 1 0 -mick_jagger%1:18:00:: 11078650 1 0 -mickey%1:18:00:: 09715521 1 0 -mickey_charles_mantle%1:18:00:: 11155196 1 0 -mickey_finn%1:06:00:: 03758614 1 0 -mickey_mantle%1:18:00:: 11155196 1 0 -mickey_mouse%1:05:00:: 02452014 1 0 -mickey_spillane%1:18:00:: 11311287 1 0 -mickle%1:23:00:: 13774404 1 0 -micmac%1:10:00:: 06910868 2 0 -micmac%1:18:00:: 09661258 1 0 -miconazole%1:06:00:: 03758720 1 0 -micro%5:00:00:small:00 01393976 1 0 -micro-cook%2:30:00:: 00321936 1 0 -micro-organism%1:05:00:: 01326291 1 0 -micro_chip%1:06:00:: 03020034 1 0 -microbalance%1:06:00:: 03758894 1 0 -microbar%1:23:00:: 13712120 1 0 -microbat%1:05:00:: 02141306 1 0 -microbe%1:05:00:: 01384491 1 0 -microbial%3:01:00:: 03014485 1 1 -microbic%3:01:00:: 03014485 1 0 -microbiologist%1:18:00:: 10313580 1 0 -microbiology%1:09:00:: 06077648 1 0 -microbrachia%1:26:00:: 14509219 1 0 -microbrewery%1:06:00:: 03758992 1 0 -microcentrum%1:05:00:: 02228215 1 0 -microcephalic%3:01:00:: 02901806 1 0 -microcephalous%3:01:00:: 02901806 1 0 -microcephalus%1:26:00:: 14509299 1 0 -microcephaly%1:26:00:: 14509299 1 0 -microchip%1:06:00:: 03020034 1 0 -microchiroptera%1:05:00:: 02140970 1 0 -microcircuit%1:06:00:: 03577090 1 0 -micrococcaceae%1:05:00:: 01378800 1 0 -micrococcus%1:05:00:: 01379116 1 0 -microcode%1:10:00:: 06357814 1 0 -microcomputer%1:06:00:: 03918480 1 0 -microcopy%2:36:00:: 01736523 1 0 -microcosm%1:09:00:: 05938314 1 1 -microcosmic%3:01:00:: 02902744 1 0 -microcosmic_salt%1:27:00:: 15016726 1 0 -microcrystalline%5:00:00:crystalline:00 00269241 1 0 -microcyte%1:08:00:: 05454578 1 0 -microcytic_anaemia%1:26:00:: 14167123 1 0 -microcytic_anemia%1:26:00:: 14167123 1 0 -microcytosis%1:26:00:: 14197099 1 0 -microdesmidae%1:05:00:: 02620826 1 0 -microdipodops%1:05:00:: 02350537 1 0 -microdot%1:06:00:: 03759114 1 0 -microeconomic%3:01:00:: 02764159 1 0 -microeconomic_expert%1:18:00:: 10313724 1 0 -microeconomics%1:09:00:: 06151108 1 0 -microeconomist%1:18:00:: 10313724 1 0 -microelectronic%3:01:00:: 02902068 1 0 -microelectronics%1:09:00:: 06115179 1 0 -microevolution%1:22:00:: 13515678 1 0 -microfarad%1:23:00:: 13635985 1 0 -microfiche%1:06:00:: 03759243 1 0 -microfilm%1:06:00:: 03759432 1 0 -microfilm%2:36:00:: 01712450 1 0 -microflora%1:20:00:: 11530008 1 0 -microfossil%1:17:00:: 09353815 1 0 -microgametophyte%1:20:00:: 11687681 1 0 -microgauss%1:23:00:: 13638706 1 0 -microglia%1:08:00:: 05468211 1 0 -microgliacyte%1:08:00:: 05468351 1 0 -microgram%1:23:00:: 13722929 1 0 -microgramma%1:20:00:: 13176201 1 0 -microgramma-piloselloides%1:20:00:: 13176363 1 0 -microhylidae%1:05:00:: 01652583 1 0 -micromeria%1:20:00:: 12857024 1 0 -micromeria_chamissonis%1:20:00:: 12857204 1 0 -micromeria_douglasii%1:20:00:: 12857204 1 0 -micromeria_juliana%1:20:00:: 12857456 1 0 -micrometeor%1:17:00:: 09353918 1 0 -micrometeoric%3:01:00:: 02902883 1 0 -micrometeorite%1:17:00:: 09353918 1 11 -micrometeoritic%3:01:00:: 02980583 1 2 -micrometeoroid%1:17:00:: 09353918 1 0 -micrometer%1:06:00:: 03759661 2 0 -micrometer%1:23:00:: 13658496 1 0 -micrometer_caliper%1:06:00:: 03759661 1 0 -micrometer_gauge%1:06:00:: 03759661 1 0 -micrometry%1:04:00:: 01002872 1 0 -micromicron%1:23:00:: 13657849 1 0 -micromillimeter%1:23:00:: 13658278 1 0 -micromillimetre%1:23:00:: 13658278 1 0 -micromyx%1:05:00:: 02332315 1 0 -micromyx_minutus%1:05:00:: 02332447 1 0 -micron%1:23:00:: 13658496 1 4 -micronase%1:06:00:: 03441930 1 0 -micronesia%1:15:00:: 08837048 1 0 -micronesia%1:15:01:: 08836886 2 0 -micronor%1:06:00:: 03759795 1 0 -micronutrient%1:27:00:: 14582716 1 0 -microorganism%1:05:00:: 01326291 1 5 -micropaleontology%1:09:00:: 06145062 1 0 -micropenis%1:08:00:: 05526860 1 0 -microphage%1:08:00:: 05453815 1 0 -microphallus%1:08:00:: 05526860 1 0 -microphone%1:06:00:: 03759954 1 4 -microphone_boom%1:06:00:: 02871824 1 0 -microphoning%1:22:00:: 13515828 1 1 -microphotometer%1:06:00:: 03760164 1 0 -micropogonias%1:05:00:: 02596592 1 0 -micropogonias_undulatus%1:05:00:: 02596720 1 0 -microprocessor%1:06:00:: 03760310 1 0 -microprocessor_chip%1:06:00:: 03020034 1 0 -micropterus%1:05:00:: 02564572 1 0 -micropterus_dolomieu%1:05:00:: 02565072 1 0 -micropterus_pseudoplites%1:05:00:: 02564935 1 0 -micropterus_salmoides%1:05:00:: 02565324 1 0 -micropylar%3:01:00:: 02902976 1 0 -micropyle%1:20:00:: 11679378 1 0 -microradian%1:23:00:: 13611740 1 0 -microscope%1:06:00:: 03760671 1 7 -microscope_slide%1:06:00:: 04237924 1 0 -microscope_stage%1:06:00:: 04296949 1 0 -microscopic%3:01:00:: 02918844 1 4 -microscopic%5:00:00:precise:00 01838772 3 0 -microscopic%5:00:00:small:00 01393822 4 0 -microscopic%5:00:00:visible:00 02516570 2 0 -microscopic_anatomy%1:09:00:: 06060049 1 0 -microscopic_field%1:09:00:: 05934852 1 0 -microscopical%3:01:00:: 02918844 1 0 -microscopical%5:00:00:small:00 01393822 3 0 -microscopical%5:00:00:visible:00 02516570 2 0 -microscopically%4:02:00:: 00078669 1 6 -microscopically%4:02:01:: 00078905 2 0 -microscopist%1:18:00:: 10313872 1 0 -microscopium%1:17:00:: 09354142 1 0 -microscopy%1:04:00:: 00640889 1 1 -microsecond%1:28:00:: 15236176 1 4 -microseism%1:11:00:: 07429484 1 0 -microsoft_disk_operating_system%1:10:00:: 06568552 1 0 -microsomal%3:01:00:: 03019219 1 1 -microsome%1:08:00:: 05434361 1 0 -microsorium%1:20:00:: 13176523 1 0 -microsorium_punctatum%1:20:00:: 13176714 1 0 -microsporangium%1:20:00:: 11687964 1 0 -microspore%1:20:00:: 11687789 1 0 -microsporidian%1:05:00:: 01427399 1 0 -microsporophyll%1:20:00:: 11688069 1 0 -microsporum%1:20:00:: 13078652 1 0 -microstomus%1:05:00:: 02659667 1 0 -microstomus_kitt%1:05:00:: 02659808 1 0 -microstrobos%1:20:00:: 11656974 1 0 -microstrobos_niphophilus%1:20:00:: 11657153 1 0 -microsurgery%1:04:00:: 00684988 1 0 -microtaggant%1:27:00:: 14952654 1 0 -microtome%1:06:00:: 03760944 1 0 -microtubule%1:08:00:: 05246969 1 0 -microtus%1:05:00:: 02341108 1 0 -microtus_ochrogaster%1:05:00:: 02341616 1 0 -microtus_pennsylvaticus%1:05:00:: 02341288 1 0 -microtus_richardsoni%1:05:00:: 02341475 1 0 -microvolt%1:23:00:: 13642729 1 0 -microwave%1:06:00:: 03761084 2 0 -microwave%1:19:00:: 11482312 1 2 -microwave%2:30:00:: 00321936 1 0 -microwave_bomb%1:06:00:: 03761333 1 0 -microwave_diathermy_machine%1:06:00:: 03761588 1 0 -microwave_linear_accelerator%1:06:00:: 03761731 1 0 -microwave_oven%1:06:00:: 03761084 1 0 -microwave_radar%1:06:00:: 04039848 1 0 -microwave_spectroscopy%1:04:00:: 00650912 1 0 -microwave_spectrum%1:19:00:: 11500816 1 0 -microzide%1:06:00:: 03552169 1 0 -micruroides%1:05:00:: 01746063 1 0 -micruroides_euryxanthus%1:05:00:: 01746191 1 0 -micrurus%1:05:00:: 01745780 1 0 -micrurus_fulvius%1:05:00:: 01745902 1 0 -micturate%2:29:00:: 00072012 1 0 -micturition%1:22:00:: 13515958 1 0 -micturition_reflex%1:04:00:: 00866273 1 0 -mid%5:00:00:middle:00 00816324 1 8 -mid-april%1:28:00:: 15211385 1 0 -mid-atlantic%5:00:00:eastern:02 00827327 1 0 -mid-atlantic_ridge%1:17:00:: 09354283 1 0 -mid-atlantic_states%1:15:00:: 09049303 1 0 -mid-august%1:28:00:: 15212638 1 0 -mid-calf%1:08:00:: 05574519 1 0 -mid-december%1:28:00:: 15213963 1 0 -mid-eighties%1:28:00:: 15150870 1 0 -mid-february%1:28:00:: 15210765 1 0 -mid-fifties%1:28:00:: 15149642 1 2 -mid-forties%1:28:00:: 15149351 1 0 -mid-january%1:28:00:: 15210383 1 0 -mid-july%1:28:00:: 15212358 1 0 -mid-june%1:28:00:: 15212070 1 2 -mid-march%1:28:00:: 15211090 1 0 -mid-may%1:28:00:: 15211711 1 0 -mid-nineties%1:28:00:: 15151255 1 0 -mid-november%1:28:00:: 15213669 1 0 -mid-october%1:28:00:: 15213303 1 0 -mid-off%1:04:00:: 00728218 1 0 -mid-on%1:04:00:: 00728342 1 0 -mid-september%1:28:00:: 15213008 1 0 -mid-seventies%1:28:00:: 15150493 1 0 -mid-sixties%1:28:00:: 15150013 1 0 -mid-thirties%1:28:00:: 15149038 1 1 -mid-twenties%1:28:00:: 15148584 1 0 -mid-water%1:17:00:: 09354608 1 0 -midafternoon%1:28:00:: 15166352 1 0 -midair%1:15:00:: 08600147 1 1 -midas%1:18:00:: 09498497 1 0 -midas_touch%1:07:00:: 05201342 1 0 -midazolam%1:06:00:: 03761845 1 0 -midbrain%1:08:00:: 05499828 1 0 -midday%1:28:00:: 15165490 1 1 -midden%1:14:00:: 07962295 2 0 -midden%1:15:00:: 08560560 1 0 -middle%1:08:00:: 05555473 3 2 -middle%1:09:00:: 05868272 2 2 -middle%1:15:00:: 08523483 1 10 -middle%1:28:00:: 15266685 4 1 -middle%2:35:00:: 01498498 1 0 -middle%3:00:00:: 00815941 4 1 -middle%3:00:01:: 00820458 3 1 -middle%5:00:00:intermediate:00 01014953 1 5 -middle%5:00:01:central:01 00330506 2 4 -middle-aged%5:00:00:old:02 01646021 1 4 -middle-aged_man%1:18:00:: 10314054 1 0 -middle-class%3:00:00:: 00260430 1 15 -middle-ear_deafness%1:26:00:: 14551146 1 0 -middle-level%5:00:00:inferior:01 02341014 1 1 -middle-of-the-road%5:00:00:center:00 02031810 1 0 -middle-of-the-road%5:00:00:moderate:00 01532653 2 0 -middle_age%1:28:00:: 15153472 1 0 -middle_ages%1:28:00:: 15259284 1 5 -middle_atlantic%5:00:00:eastern:02 00827327 1 1 -middle_buster%1:06:00:: 03677766 1 0 -middle_c%1:10:00:: 06869815 1 0 -middle_cerebral_artery%1:08:00:: 05341641 1 0 -middle_cerebral_vein%1:08:00:: 05362593 1 0 -middle_class%1:14:00:: 08181658 1 9 -middle_distance%1:09:00:: 05934550 1 1 -middle_ear%1:08:00:: 05324888 1 0 -middle_east%1:15:00:: 08791167 1 1 -middle_eastern%3:01:00:: 02626379 1 0 -middle_english%1:10:00:: 06948761 1 0 -middle_finger%1:08:00:: 05567604 1 0 -middle_greek%1:10:00:: 06977190 1 0 -middle_high_german%1:10:00:: 06950973 1 0 -middle_irish%1:10:00:: 06961033 1 0 -middle_low_german%1:10:00:: 06952480 1 0 -middle_meningeal_artery%1:08:00:: 05351442 1 0 -middle_name%1:10:00:: 06337202 1 0 -middle_of_the_roader%1:18:00:: 09904837 1 0 -middle_paleolithic%1:28:00:: 15232899 1 0 -middle_school%1:14:00:: 08284481 1 0 -middle_temporal_vein%1:08:00:: 05382432 1 0 -middle_term%1:10:00:: 06754972 1 0 -middle_thyroid_vein%1:08:00:: 05383956 1 0 -middle_watch%1:28:00:: 15293435 1 0 -middle_west%1:15:00:: 08564307 1 1 -middlebreaker%1:06:00:: 03677766 1 0 -middlebrow%1:18:00:: 10314182 1 0 -middleman%1:18:00:: 09960117 3 0 -middleman%1:18:01:: 10222497 1 0 -middleman%1:18:02:: 10211036 2 0 -middlemost%5:00:00:central:01 00331167 1 0 -middleton%1:18:00:: 11178781 1 0 -middleweight%1:18:00:: 10314305 3 0 -middleweight%1:18:01:: 10314422 2 0 -middleweight%1:18:02:: 10314517 1 0 -middling%1:06:00:: 03762067 1 0 -middling%4:02:00:: 00035718 1 0 -middling%5:00:00:ordinary:00 01673061 1 0 -middy%1:06:00:: 03762238 1 0 -middy_blouse%1:06:00:: 03762238 1 0 -mideast%1:15:00:: 08791167 1 0 -midfield%1:15:00:: 08571275 1 0 -midgard%1:09:00:: 05631175 1 0 -midge%1:05:00:: 02203152 1 0 -midget%1:18:00:: 10040344 1 0 -midget%5:00:00:small:00 01392249 1 0 -midgrass%1:20:00:: 12103680 1 0 -midi%1:10:00:: 06666030 2 0 -midi%1:15:00:: 08943601 1 0 -midi%3:00:00:: 01432894 1 0 -midi-pyrenees%1:15:00:: 08943699 1 0 -midinette%1:18:00:: 10314627 1 0 -midiron%1:06:00:: 03762332 1 0 -midland%1:15:00:: 08588596 2 0 -midland%1:15:01:: 09145553 1 0 -midland%5:00:00:inland:00 00463917 1 0 -midline%1:25:00:: 13861686 1 0 -midmost%4:02:00:: 00259303 1 0 -midmost%5:00:00:central:01 00331167 1 0 -midnight%1:28:00:: 15168185 1 7 -midnight_sun%1:19:00:: 11482579 1 0 -midplane%1:25:00:: 13861686 1 0 -midpoint%1:15:00:: 08521816 1 0 -midrash%1:10:00:: 06763052 1 0 -midrib%1:20:00:: 13098420 1 0 -midriff%1:08:00:: 05318606 2 0 -midriff%1:08:01:: 05555473 1 0 -midsection%1:08:00:: 05555473 1 1 -midshipman%1:18:00:: 10314703 1 2 -midships%4:02:00:: 00402030 1 0 -midst%1:15:00:: 08588699 1 3 -midstream%1:17:00:: 09354511 1 0 -midsummer%1:28:00:: 15222012 1 1 -midsummer's_day%1:28:00:: 15222202 1 0 -midsummer-men%1:20:00:: 12786273 1 0 -midsummer_day%1:28:00:: 15222202 1 0 -midsummer_eve%1:28:00:: 15222369 1 0 -midsummer_night%1:28:00:: 15222369 1 0 -midterm%1:10:00:: 07198605 3 0 -midterm%1:28:00:: 15225668 2 0 -midterm%1:28:01:: 15226625 1 0 -midterm_exam%1:10:00:: 07198605 1 0 -midterm_examination%1:10:00:: 07198605 1 0 -midvein%1:20:00:: 13098420 1 0 -midwatch%1:28:00:: 15293435 1 1 -midway%1:04:00:: 01287782 2 0 -midway%1:15:00:: 08614746 1 0 -midway%4:02:00:: 00255415 1 1 -midway%5:00:00:central:01 00330506 1 2 -midway_islands%1:15:00:: 09080989 1 0 -midweek%1:28:00:: 15136342 2 0 -midweek%1:28:01:: 15164233 1 0 -midweek%4:02:00:: 00402217 1 0 -midweekly%5:00:00:periodic:00 01970322 1 0 -midwest%1:15:00:: 08564307 1 1 -midwestern%5:00:00:western:02 00826403 1 4 -midwestern_united_states%1:15:00:: 08564307 1 0 -midwife%1:18:00:: 10314836 1 0 -midwife_toad%1:05:01:: 01648139 2 0 -midwife_toad%1:05:02:: 01648356 1 0 -midwifery%1:04:00:: 00186549 2 0 -midwifery%1:09:00:: 06053439 1 0 -midwinter%1:28:00:: 15238074 1 0 -mien%1:07:00:: 04910377 1 1 -mierkat%1:05:00:: 02138441 1 0 -mies_van_der_rohe%1:18:00:: 11178922 1 0 -mifepristone%1:06:00:: 02668093 1 0 -miff%1:26:00:: 14407070 1 0 -miff%2:37:00:: 01786620 1 0 -miffed%5:00:00:displeased:00 01806106 1 0 -might%1:07:00:: 05030680 1 3 -might-have-been%1:11:00:: 07283364 1 0 -mightily%4:02:00:: 00032299 2 0 -mightily%4:02:01:: 00091139 1 0 -mightiness%1:07:00:: 05030680 1 0 -mighty%4:02:00:: 00032299 1 4 -mighty%5:00:00:powerful:00 01826575 1 10 -mighty_mouse%1:05:00:: 02452347 1 0 -mignonette%1:20:00:: 12385566 1 0 -mignonette_family%1:20:00:: 12385046 1 0 -migraine%1:26:00:: 14327707 1 0 -migrant%1:18:00:: 10314952 1 0 -migrant%5:00:00:unsettled:01 02127815 1 0 -migrant_shrike%1:05:00:: 01599741 1 0 -migrate%2:38:00:: 01856626 1 4 -migrate%2:38:01:: 01857093 2 0 -migration%1:04:00:: 01123095 1 2 -migration%1:11:00:: 07312616 4 0 -migration%1:11:01:: 07312829 3 0 -migration%1:14:00:: 07966421 2 0 -migration_route%1:15:00:: 08617622 1 0 -migrational%3:01:00:: 02895861 1 0 -migrator%1:05:00:: 01318478 2 0 -migrator%1:18:00:: 10314952 1 0 -migratory%3:00:00:: 02129007 1 0 -migratory%5:00:00:unsettled:01 02127815 2 0 -migratory_grasshopper%1:05:00:: 02227604 1 0 -migratory_locust%1:05:00:: 02227247 1 0 -migratory_quail%1:05:00:: 01805070 1 0 -miguel_de_cervantes%1:18:00:: 10889032 1 0 -miguel_de_cervantes_saavedra%1:18:00:: 10889032 1 0 -miguel_jose_serra%1:18:00:: 11293470 1 0 -mihrab%1:06:00:: 03762434 2 0 -mihrab%1:06:01:: 03762602 1 0 -mikado%1:18:00:: 10315217 1 0 -mikania%1:20:00:: 11996092 1 0 -mikania_scandens%1:20:00:: 11996251 1 0 -mike%1:06:00:: 03759954 1 1 -mike_tyson%1:18:00:: 11355082 1 0 -mikhail_aleksandrovich_bakunin%1:18:00:: 10831483 1 0 -mikhail_bakunin%1:18:00:: 10831483 1 0 -mikhail_baryshnikov%1:18:00:: 10837737 1 0 -mikhail_glinka%1:18:00:: 11002422 1 0 -mikhail_gorbachev%1:18:00:: 11007750 1 0 -mikhail_ilarionovich_kutuzov%1:18:00:: 11113077 1 0 -mikhail_ivanovich_glinka%1:18:00:: 11002422 1 0 -mikhail_ivanovich_kalinin%1:18:00:: 11096033 1 0 -mikhail_kalinin%1:18:00:: 11096033 1 0 -mikhail_sergeyevich_gorbachev%1:18:00:: 11007750 1 0 -mikhail_yurievich_lermontov%1:18:00:: 11129017 1 0 -mikir-meithei%1:10:00:: 06933546 1 0 -mikmaq%1:18:00:: 09661258 1 0 -mikolaj_kopernik%1:18:00:: 10909724 1 0 -mikvah%1:04:00:: 00258093 1 0 -mil%1:23:01:: 13655089 3 0 -mil%1:23:02:: 13623636 4 0 -mil%1:23:03:: 13611082 5 0 -mil%1:23:04:: 13693781 1 0 -mil%1:23:05:: 13655262 2 0 -milady%1:18:00:: 10315382 1 0 -milage%1:07:00:: 05131194 1 0 -milan%1:15:00:: 08809165 1 0 -milanese%1:18:00:: 10315456 1 0 -milanese%3:01:00:: 02970576 1 0 -milano%1:15:00:: 08809165 1 0 -milch%3:01:00:: 03086712 1 0 -milch_cow%1:05:00:: 02406174 1 0 -milcher%1:05:00:: 02406174 1 0 -mild%3:00:00:: 01508719 1 7 -mild%5:00:00:clement:02 00438332 3 0 -mild%5:00:00:humble:00 01893510 2 0 -mild-mannered%5:00:00:mild:00 01509262 1 1 -mild-tasting%5:00:00:tasty:00 02398051 1 0 -mild_silver_protein%1:06:00:: 03762809 1 0 -mild_steel%1:27:00:: 14952878 1 0 -mildew%1:20:00:: 13077295 2 0 -mildew%1:22:00:: 13516176 1 0 -mildew%2:30:00:: 00210738 1 0 -mildly%4:02:00:: 00033562 1 3 -mildly%4:02:02:: 00502847 2 1 -mildness%1:07:00:: 04829922 3 0 -mildness%1:07:01:: 04910973 2 0 -mildness%1:26:00:: 14522408 1 0 -mildred_ella_didrikson%1:18:00:: 11404666 1 0 -mildred_ella_didrikson_zaharias%1:18:00:: 11404666 1 0 -mile%1:11:00:: 07469325 8 0 -mile%1:23:01:: 13651218 1 49 -mile%1:23:02:: 13655262 7 0 -mile%1:23:03:: 13655414 6 0 -mile%1:23:04:: 13660337 2 5 -mile%1:23:05:: 13660868 4 0 -mile%1:23:06:: 13660619 5 0 -mile%1:23:07:: 13776342 3 0 -mile-high_city%1:15:00:: 09068107 1 0 -mileage%1:07:00:: 05131194 1 1 -mileage%1:21:00:: 13294029 3 0 -mileage%1:24:00:: 13823287 2 0 -mileometer%1:06:00:: 03841143 1 0 -milepost%1:10:00:: 07271167 1 0 -miler%1:18:00:: 10315561 2 0 -miler%1:23:00:: 13651520 1 0 -miles_davis%1:18:00:: 10924828 1 0 -miles_dewey_davis_jr.%1:18:00:: 10924828 1 0 -miles_gloriosus%1:18:00:: 10315730 1 0 -miles_per_gallon%1:23:00:: 13604572 1 0 -miles_per_hour%1:28:00:: 15284878 2 0 -miles_per_hour%1:28:01:: 15280346 1 3 -miles_standish%1:18:00:: 11312362 1 0 -milestone%1:10:01:: 07271167 1 2 -milestone%1:11:00:: 07418716 2 1 -milfoil%1:20:01:: 11916696 1 0 -milhaud%1:18:00:: 11179124 1 0 -miliaria%1:26:00:: 14322106 1 0 -miliary_fever%1:26:00:: 14143239 1 0 -miliary_tuberculosis%1:26:00:: 14143818 1 0 -milieu%1:26:00:: 14513944 1 1 -militainment%1:04:00:: 00515791 1 0 -militance%1:07:00:: 04837615 1 0 -militancy%1:07:00:: 04837615 1 0 -militant%1:18:00:: 10315837 1 0 -militant%5:00:00:aggressive:00 00083003 2 1 -militant%5:00:00:unpeaceful:00 01742715 1 1 -militant%5:00:01:unpeaceful:00 01742537 3 0 -militant_tendency%1:14:00:: 08262154 1 0 -militarily%4:02:00:: 00111016 1 1 -militarisation%1:04:00:: 01156438 1 0 -militarise%2:30:00:: 00578116 2 0 -militarise%2:33:00:: 01098869 1 0 -militarised%5:00:00:armed:01 00142825 1 0 -militarism%1:09:00:: 06221974 1 0 -militarist%1:18:00:: 10316013 1 0 -militaristic%5:00:00:military:02 01518577 1 0 -militarization%1:04:00:: 01156438 1 0 -militarize%2:30:00:: 00578116 2 0 -militarize%2:33:00:: 01098869 1 0 -militarized%5:00:00:armed:01 00142825 1 0 -military%1:14:00:: 08199025 1 1 -military%3:00:01:: 01517081 3 3 -military%3:00:02:: 01518386 2 12 -military%3:01:00:: 02764251 1 37 -military-industrial_complex%1:14:00:: 07969366 1 0 -military_academy%1:14:00:: 08279524 1 0 -military_action%1:04:00:: 00952963 1 0 -military_adviser%1:18:00:: 10316164 1 0 -military_advisor%1:18:00:: 10316164 1 0 -military_attache%1:18:00:: 10316360 1 0 -military_band%1:14:00:: 08249459 1 0 -military_blockade%1:04:00:: 01075117 1 0 -military_campaign%1:04:00:: 00968155 1 0 -military_capability%1:07:00:: 05203649 1 0 -military_censorship%1:04:00:: 00821295 1 0 -military_ceremony%1:04:00:: 01028381 2 0 -military_ceremony%1:11:00:: 07453063 1 0 -military_chaplain%1:18:00:: 10316527 1 0 -military_commission%1:10:00:: 06478988 1 0 -military_control%1:04:00:: 01133106 1 0 -military_court%1:14:00:: 08334087 1 0 -military_drill%1:04:00:: 00896348 1 0 -military_engineer%1:18:00:: 09809538 1 0 -military_expedition%1:04:00:: 00968479 1 0 -military_force%1:14:00:: 08198398 1 3 -military_formation%1:14:00:: 08426816 1 0 -military_government%1:14:00:: 08053003 1 0 -military_governor%1:18:00:: 10316683 1 0 -military_greeting%1:10:00:: 06633041 1 0 -military_group%1:14:00:: 08198398 1 0 -military_headquarters%1:06:00:: 03504420 1 0 -military_hospital%1:06:00:: 03762982 1 0 -military_installation%1:06:00:: 03763133 1 0 -military_intelligence%1:10:00:: 06642899 2 0 -military_intelligence%1:14:00:: 08339706 1 0 -military_intelligence_agency%1:14:00:: 08339706 1 0 -military_intelligence_section_5%1:14:00:: 08347206 1 0 -military_intelligence_section_6%1:14:00:: 08346655 1 0 -military_issue%1:21:00:: 13367593 1 0 -military_junta%1:14:00:: 08241964 1 0 -military_law%1:14:00:: 08455271 1 0 -military_leader%1:18:00:: 10316862 1 0 -military_machine%1:14:00:: 08199025 1 0 -military_man%1:18:00:: 10582746 1 1 -military_march%1:10:00:: 07058468 1 0 -military_mission%1:04:00:: 00970645 1 0 -military_music%1:10:00:: 07058468 1 0 -military_officer%1:18:00:: 10317007 1 0 -military_operation%1:04:00:: 00955060 1 0 -military_pace%1:23:00:: 13655908 1 0 -military_personnel%1:14:00:: 08397255 1 2 -military_personnel%1:18:00:: 10582746 2 1 -military_plane%1:06:00:: 04552348 1 0 -military_police%1:14:00:: 08211290 1 0 -military_policeman%1:18:00:: 10317500 1 0 -military_position%1:15:00:: 08622586 1 0 -military_post%1:06:00:: 03763403 1 0 -military_posture%1:07:00:: 05203649 1 0 -military_press%1:04:00:: 00627013 1 0 -military_quarters%1:06:00:: 03763727 1 0 -military_rank%1:26:00:: 14431471 1 0 -military_rating%1:26:00:: 14431471 1 0 -military_recruit%1:18:00:: 10512372 1 0 -military_reserve%1:14:00:: 08206460 1 0 -military_science%1:09:00:: 06248043 1 0 -military_service%1:04:01:: 00579977 2 0 -military_service%1:14:00:: 08198137 1 1 -military_strength%1:07:00:: 05203649 1 0 -military_training%1:04:00:: 00895501 1 0 -military_uniform%1:06:00:: 03763968 1 0 -military_unit%1:14:00:: 08198398 1 1 -military_vehicle%1:06:00:: 03764276 1 1 -military_volunteer%1:18:00:: 10759331 1 0 -militate%2:41:00:: 02431129 1 1 -militia%1:14:00:: 08390511 1 5 -militia%1:14:01:: 08390731 2 0 -militiaman%1:18:00:: 10317717 1 0 -milium%1:08:00:: 05245626 1 0 -milk%1:08:00:: 05399034 2 1 -milk%1:13:01:: 07844042 1 20 -milk%1:13:02:: 07844604 4 0 -milk%1:17:00:: 09354780 3 0 -milk%2:30:00:: 00194170 1 3 -milk%2:30:01:: 00194373 3 0 -milk%2:34:00:: 01164906 2 1 -milk-sick%5:00:00:ill:01 02545592 1 0 -milk-vetch%1:20:00:: 12508309 1 0 -milk-white%5:00:00:achromatic:00 00390539 1 0 -milk_adder%1:05:00:: 01734808 1 0 -milk_bar%1:06:00:: 03764606 1 0 -milk_can%1:06:00:: 03764736 1 0 -milk_chocolate%1:13:00:: 07604307 1 0 -milk_cow%1:05:00:: 02406174 1 0 -milk_float%1:06:00:: 03764822 1 0 -milk_glass%1:27:00:: 14879996 1 0 -milk_intolerance%1:26:00:: 14506656 1 0 -milk_leg%1:26:00:: 14103018 1 0 -milk_of_magnesia%1:06:00:: 03765269 1 0 -milk_powder%1:13:00:: 07846143 1 0 -milk_pox%1:26:00:: 14124688 1 0 -milk_punch%1:13:00:: 07930205 1 0 -milk_river%1:17:00:: 09354780 1 0 -milk_shake%1:13:00:: 07923297 1 0 -milk_sickness%1:26:00:: 14078613 2 0 -milk_sickness%1:26:01:: 14276201 1 0 -milk_snake%1:05:00:: 01734808 1 0 -milk_sugar%1:27:00:: 14929462 1 0 -milk_thistle%1:20:01:: 12018760 1 0 -milk_thistle%1:20:02:: 12015525 2 0 -milk_tooth%1:08:00:: 05306894 1 0 -milk_vetch%1:20:00:: 12508309 1 0 -milk_wagon%1:06:00:: 03765467 1 0 -milk_whey%1:27:00:: 15097578 1 0 -milkcap%1:20:00:: 13006631 1 0 -milker%1:05:00:: 02406174 1 0 -milking_machine%1:06:00:: 03764995 1 0 -milking_shorthorn%1:05:00:: 02407172 1 0 -milking_stool%1:06:00:: 03765128 1 1 -milkless%5:00:00:dry:02 02554663 1 0 -milklike%5:00:00:opaque:00 00434384 1 0 -milkmaid%1:18:00:: 09988216 1 0 -milkman%1:18:00:: 10317884 1 0 -milkshake%1:13:00:: 07923297 1 0 -milksop%1:18:00:: 10603378 1 0 -milkwagon%1:06:00:: 03765467 1 0 -milkweed%1:20:00:: 13233727 1 0 -milkweed%1:20:02:: 12019035 2 0 -milkweed_butterfly%1:05:00:: 02279972 1 0 -milkweed_family%1:20:00:: 13233012 1 0 -milkwort%1:20:00:: 12705013 1 0 -milkwort_family%1:20:00:: 12704636 1 0 -milky%5:00:00:opaque:00 00434384 1 0 -milky_way%1:17:00:: 09354984 1 0 -milky_way_galaxy%1:17:00:: 09354984 1 0 -milky_way_system%1:17:00:: 09354984 1 0 -mill%1:04:00:: 00358290 5 0 -mill%1:06:00:: 03765561 4 0 -mill%1:06:01:: 03316406 1 4 -mill%1:18:00:: 11179287 3 0 -mill%1:18:01:: 11179502 2 0 -mill%2:30:00:: 00332017 2 1 -mill%2:35:00:: 01457825 3 0 -mill%2:35:02:: 01391697 4 0 -mill%2:38:00:: 01902126 1 1 -mill-girl%1:18:00:: 10318193 1 0 -mill-hand%1:18:00:: 10318293 1 0 -mill_about%2:38:00:: 01902126 2 0 -mill_about%2:42:00:: 02639075 1 1 -mill_agent%1:18:00:: 10317963 1 0 -mill_around%2:38:00:: 01902126 2 0 -mill_around%2:42:00:: 02639075 1 0 -mill_wheel%1:06:00:: 03767203 1 0 -millais%1:18:00:: 11179666 1 0 -millard_fillmore%1:18:00:: 10970864 1 0 -millay%1:18:00:: 11179797 1 0 -millboard%1:27:00:: 14801402 1 0 -milldam%1:06:00:: 03765934 1 0 -milled%5:00:00:processed:00 01952153 1 0 -millenarian%1:18:00:: 10318414 1 0 -millenarian%3:01:00:: 02865018 1 0 -millenarianism%1:09:00:: 06189551 1 1 -millenarism%1:09:00:: 06189551 1 0 -millenarist%1:18:00:: 10318414 1 0 -millenary%1:23:00:: 13751036 3 0 -millenary%1:28:00:: 15141213 2 0 -millenary%1:28:02:: 15252146 1 0 -millenary%3:01:00:: 02864699 2 0 -millenary%3:01:01:: 03086852 1 0 -millennial%3:01:00:: 02864824 1 0 -millennian%3:01:00:: 02864824 1 0 -millennium%1:28:00:: 15141213 1 4 -millennium%1:28:01:: 15263283 2 0 -millennium%1:28:02:: 15252146 3 0 -millenniumism%1:09:00:: 06189551 1 0 -millepede%1:05:00:: 01786646 1 0 -miller%1:05:00:: 02283617 6 0 -miller%1:06:00:: 03766044 5 0 -miller%1:18:00:: 10318087 4 0 -miller%1:18:01:: 11179923 3 0 -miller%1:18:02:: 11180029 2 0 -miller%1:18:03:: 11180209 1 0 -miller's-thumb%1:05:00:: 02645691 1 0 -millerite%1:27:00:: 14681987 1 0 -millet%1:13:00:: 07802963 3 0 -millet%1:18:00:: 11180357 2 0 -millet%1:20:00:: 12135898 1 0 -millettia%1:20:01:: 12549799 1 0 -milliammeter%1:06:00:: 03766218 1 0 -milliampere%1:23:00:: 13637613 1 2 -milliard%1:23:00:: 13752033 1 0 -millibar%1:23:00:: 13711663 1 0 -millicurie%1:23:00:: 13645465 1 0 -millidegree%1:23:00:: 13714376 1 6 -milliequivalent%1:07:00:: 05026744 1 0 -millifarad%1:23:00:: 13636135 1 0 -milligram%1:23:00:: 13723061 1 26 -millihenry%1:23:00:: 13639274 1 0 -millikan%1:18:00:: 11180476 1 0 -milliliter%1:23:00:: 13623636 1 2 -millilitre%1:23:00:: 13623636 1 0 -millime%1:23:00:: 13670935 1 0 -millimeter%1:23:00:: 13658657 1 1 -millimeter_of_mercury%1:23:00:: 13711416 1 1 -millimetre%1:23:00:: 13658657 1 0 -millimicron%1:23:00:: 13658278 1 0 -milline%1:23:00:: 13713159 1 0 -milliner%1:18:00:: 10162354 1 0 -millinery%1:06:00:: 03766322 2 0 -millinery%1:06:01:: 03766508 1 0 -milling%1:06:00:: 03766600 1 0 -milling_machine%1:06:00:: 03766044 1 0 -milling_machinery%1:06:00:: 03765561 1 0 -million%1:23:00:: 13751533 1 16 -million%1:23:01:: 13776432 2 0 -million%5:00:00:cardinal:00 02199177 1 36 -million_floating_point_operations_per_second%1:23:00:: 13607187 1 0 -million_instructions_per_second%1:23:00:: 13607616 1 0 -millionaire%1:18:00:: 10529555 1 0 -millionairess%1:18:00:: 10318607 1 0 -millionfold%4:02:00:: 00344659 1 0 -millionth%1:23:00:: 13739507 2 0 -millionth%1:24:00:: 13849913 1 0 -millionth%5:00:00:ordinal:00 02212591 1 0 -milliped%1:05:00:: 01786646 1 0 -millipede%1:05:00:: 01786646 1 0 -milliradian%1:23:00:: 13611884 1 0 -millisecond%1:28:00:: 15236338 1 0 -millivolt%1:23:00:: 13642596 1 0 -millivoltmeter%1:06:00:: 03766697 1 1 -milliwatt%1:23:00:: 13644379 1 0 -millpond%1:17:00:: 09355261 1 1 -millrace%1:06:00:: 03766816 1 0 -millrun%1:06:00:: 03766816 1 0 -mills%1:18:00:: 11180643 1 0 -millstone%1:06:00:: 03766935 3 0 -millstone%1:06:01:: 03767112 2 0 -millstone%1:09:00:: 05689645 1 0 -millwheel%1:06:00:: 03767203 1 1 -millwork%1:06:00:: 03767363 1 0 -millwright%1:18:00:: 10318686 1 0 -milne%1:18:00:: 11180812 1 0 -milo%1:20:00:: 12138444 1 0 -milo_maize%1:20:00:: 12138444 1 0 -milometer%1:06:00:: 03841143 1 0 -milontin%1:06:00:: 03922412 1 0 -milord%1:18:00:: 10318802 1 0 -milquetoast%1:18:00:: 10603378 1 2 -milt%1:05:00:: 02322712 2 0 -milt%1:13:00:: 07799447 1 0 -miltiades%1:18:00:: 11180952 1 0 -miltomate%1:20:00:: 12911673 1 0 -milton%1:18:00:: 11181073 1 0 -milton_friedman%1:18:00:: 10982658 1 0 -milton_snavely_hershey%1:18:00:: 11046457 1 0 -miltonia%1:20:00:: 12073410 1 0 -miltown%1:06:00:: 03747746 1 0 -milvus%1:05:00:: 01608685 1 0 -milvus_migrans%1:05:00:: 01608814 1 0 -milwaukee%1:15:00:: 09158268 1 1 -mimamsa%1:09:00:: 06238265 1 0 -mime%1:04:00:: 00550016 2 0 -mime%1:18:00:: 10318892 1 0 -mime%2:36:00:: 01724185 2 0 -mime%2:36:01:: 01743531 1 0 -mimeo%1:06:00:: 03767459 1 0 -mimeo%2:36:00:: 01695257 1 0 -mimeograph%1:06:00:: 03767459 1 0 -mimeograph%2:36:00:: 01695257 1 0 -mimeograph_machine%1:06:00:: 03767459 1 0 -mimer%1:18:00:: 10318892 1 0 -mimesis%1:09:00:: 05962785 1 11 -mimesis%1:10:00:: 06613448 3 0 -mimesis%1:26:00:: 14078733 2 0 -mimetic%5:00:00:imitative:00 01216807 2 0 -mimetic%5:00:00:representational:00 01979803 1 2 -mimic%1:18:00:: 10319163 1 0 -mimic%2:36:00:: 01743531 1 0 -mimic%5:00:00:imitative:00 01216981 1 0 -mimicker%1:18:00:: 10319163 1 0 -mimicry%1:04:00:: 00549472 1 1 -mimicry%1:04:01:: 01021396 2 0 -mimidae%1:05:00:: 01586541 1 0 -mimir%1:18:00:: 09581859 1 0 -mimosa%1:13:00:: 07930315 3 0 -mimosa%1:20:01:: 11754893 2 0 -mimosa%1:20:03:: 11757653 1 0 -mimosa_bush%1:20:00:: 11757851 1 0 -mimosa_pudica%1:20:00:: 11755319 1 0 -mimosa_sensitiva%1:20:00:: 11755110 1 0 -mimosaceae%1:20:00:: 11753936 1 0 -mimosoideae%1:20:00:: 11754188 1 0 -mimus%1:05:00:: 01586791 1 0 -mimus_polyglotktos%1:05:00:: 01586941 1 0 -min%1:10:00:: 06930633 2 2 -min%1:18:00:: 09512611 3 0 -min%1:28:00:: 15234764 1 5 -min_dialect%1:10:00:: 06930633 1 0 -mina%1:05:00:: 01577659 1 0 -minacious%5:00:00:alarming:00 00194357 1 0 -minah%1:05:00:: 01577659 1 0 -minamata_bay%1:17:00:: 09355397 1 0 -minamata_disease%1:26:00:: 14511491 1 0 -minaret%1:06:00:: 03767745 1 0 -minato_ohashi_bridge%1:06:00:: 03767846 1 0 -minatory%5:00:00:alarming:00 00194357 1 0 -mince%1:13:00:: 07650903 1 0 -mince%2:32:00:: 01058036 1 2 -mince%2:35:00:: 01560583 3 0 -mince%2:38:00:: 01929927 2 0 -mince_pie%1:13:00:: 07626094 1 0 -mincemeat%1:13:00:: 07678586 1 0 -mincer%1:06:00:: 03767966 1 0 -mincing%5:00:00:refined:01 01948092 1 1 -mincing_machine%1:06:00:: 03767966 1 0 -mincingly%4:02:00:: 00402278 1 0 -mind%1:09:00:: 05611302 1 120 -mind%1:09:01:: 05762149 2 13 -mind%1:09:03:: 05703956 5 1 -mind%1:09:04:: 05837957 3 10 -mind%1:09:05:: 05618849 7 0 -mind%1:09:06:: 05982915 6 0 -mind%1:18:00:: 10708292 4 3 -mind%2:31:00:: 00609506 6 0 -mind%2:31:02:: 00724492 2 5 -mind%2:31:03:: 00724664 5 0 -mind%2:32:00:: 00848707 1 15 -mind%2:41:00:: 02571901 4 0 -mind%2:41:01:: 02437707 3 2 -mind's_eye%1:09:00:: 05768107 1 1 -mind-altering%5:00:00:psychoactive:00 01777367 1 0 -mind-altering_drug%1:06:00:: 04017137 1 0 -mind-bending%5:00:00:psychoactive:00 01777662 1 0 -mind-blowing%5:00:00:emotional:00 00856132 2 0 -mind-blowing%5:00:00:psychoactive:00 01777662 1 0 -mind-boggling%5:00:00:impressive:00 01285938 1 0 -mind-expanding%5:00:00:psychoactive:00 01777526 1 0 -mind-set%1:09:00:: 06195839 1 0 -mind_game%1:04:00:: 00158443 2 0 -mind_game%1:04:01:: 00459979 1 0 -mind_reader%1:18:00:: 10697879 1 0 -mind_reader%1:18:01:: 10319580 2 0 -mindanao%1:15:00:: 08980920 1 0 -minded%5:00:00:oriented:00 01683496 1 2 -minded%5:00:01:inclined:02 01292411 2 0 -minden%1:04:00:: 01288057 1 0 -minder%1:18:00:: 09829122 2 0 -minder%1:18:01:: 10319313 1 0 -mindful%3:00:00:: 01977155 1 3 -mindfully%4:02:00:: 00153681 1 0 -mindfulness%1:07:00:: 04663763 1 0 -mindless%3:00:00:: 01978003 3 0 -mindless%5:00:00:foolish:00 02571277 4 0 -mindless%5:00:00:meaningless:00 01498418 1 1 -mindless%5:00:00:nonintellectual:00 01334277 2 1 -mindless%5:00:00:unreasonable:00 01945139 5 0 -mindlessly%4:02:00:: 00401708 2 0 -mindlessly%4:02:01:: 00401893 1 0 -mindlessness%1:07:01:: 04894204 2 0 -mindlessness%1:07:02:: 05174023 1 0 -mindoro%1:15:00:: 08981123 1 0 -mindset%1:09:00:: 06195839 1 0 -mine%1:06:00:: 03768132 2 5 -mine%1:06:01:: 03768346 1 12 -mine%2:33:00:: 01125724 2 0 -mine%2:34:00:: 01163620 1 3 -mine_detector%1:06:00:: 03768683 1 0 -mine_disposal%1:04:00:: 00091670 1 0 -mine_field%1:15:00:: 08674464 1 1 -mine_pig%1:27:00:: 14953005 1 0 -mine_run%5:00:00:ordinary:00 01674926 1 0 -mined%3:00:00:: 01503978 1 0 -minefield%1:15:00:: 08507255 1 0 -minelayer%1:06:00:: 03768823 1 0 -minelaying%1:04:00:: 00961962 1 0 -miner%1:18:00:: 10319796 1 2 -miner's_cat%1:05:00:: 02508742 1 0 -miner's_lettuce%1:20:00:: 11861853 1 0 -mineral%1:27:00:: 14662574 1 9 -mineral%3:01:01:: 03086974 1 0 -mineral%5:00:00:inorganic:02 01680559 2 0 -mineral_deficiency%1:26:00:: 14450172 1 0 -mineral_dressing%1:22:00:: 13516312 1 0 -mineral_extraction%1:22:00:: 13516312 1 0 -mineral_jelly%1:27:00:: 14980910 1 0 -mineral_kingdom%1:14:00:: 07941045 1 0 -mineral_oil%1:27:00:: 14953091 1 1 -mineral_pitch%1:27:00:: 14667455 1 0 -mineral_processing%1:22:00:: 13516312 1 0 -mineral_resources%1:21:00:: 13332395 1 0 -mineral_tar%1:27:00:: 14680836 1 0 -mineral_vein%1:17:00:: 09470222 1 0 -mineral_water%1:13:01:: 07936745 1 0 -mineral_wax%1:27:00:: 14665102 1 0 -mineral_wool%1:27:00:: 14769644 1 0 -mineralize%2:30:00:: 00585606 2 0 -mineralize%2:30:01:: 00585705 1 0 -mineralocorticoid%1:27:00:: 14751863 1 0 -mineralogist%1:18:00:: 10319996 1 0 -mineralogy%1:09:00:: 06121113 1 1 -minerva%1:18:00:: 09557632 1 0 -mineshaft%1:06:00:: 03768916 1 0 -minestrone%1:13:00:: 07586894 1 0 -minesweeper%1:06:00:: 03769100 1 0 -minesweeping%1:04:00:: 00091779 1 0 -mineworker%1:18:00:: 10319796 1 0 -ming%1:14:00:: 08156392 1 0 -ming_dynasty%1:14:00:: 08156392 1 0 -ming_tree%1:20:00:: 13112035 2 0 -ming_tree%1:20:01:: 13112201 1 0 -minge%1:08:00:: 05263732 1 0 -minginess%1:07:00:: 04833687 1 0 -mingle%2:35:00:: 01462005 1 9 -mingle%2:41:00:: 02597095 2 2 -mingle%2:42:00:: 02739861 3 0 -mingle-mangle%1:14:00:: 08399977 1 0 -mingling%1:04:00:: 01082350 1 1 -mingy%5:00:00:stingy:00 01113807 1 0 -mini%1:06:00:: 03770439 1 0 -mini%3:00:00:: 01432712 1 0 -miniate%2:36:00:: 01696893 1 0 -miniate%2:36:01:: 01683957 2 0 -miniature%1:06:01:: 03769235 2 1 -miniature%1:06:02:: 03769397 1 1 -miniature%5:00:00:small:00 01394075 1 1 -miniature_fan_palm%1:20:00:: 12596148 1 0 -miniature_golf%1:04:00:: 00466712 1 0 -miniature_pinscher%1:05:00:: 02107312 1 0 -miniature_poodle%1:05:00:: 02113712 1 0 -miniature_schnauzer%1:05:00:: 02097047 1 0 -miniaturisation%1:04:00:: 00360601 1 0 -miniaturise%2:30:00:: 00241496 1 0 -miniaturist%1:18:00:: 10320106 1 0 -miniaturization%1:04:00:: 00360601 1 0 -miniaturize%2:30:00:: 00241496 1 0 -minibar%1:06:00:: 03769610 1 0 -minibike%1:06:00:: 03769722 1 0 -minibus%1:06:00:: 03769881 1 0 -minicab%1:06:00:: 03769967 1 0 -minicar%1:06:00:: 03770085 1 0 -minicomputer%1:06:00:: 03770224 1 0 -miniconju%1:18:00:: 09660820 1 0 -minify%2:30:00:: 00441445 1 0 -minim%1:10:00:: 06870844 3 0 -minim%1:23:01:: 13618508 2 0 -minim%1:23:02:: 13621011 1 0 -minimal%3:00:00:: 01496021 1 24 -minimal_art%1:14:00:: 08469233 1 0 -minimal_brain_damage%1:26:00:: 14056280 1 0 -minimal_brain_dysfunction%1:26:00:: 14056280 1 0 -minimalism%1:14:00:: 08469233 1 0 -minimalist%1:18:00:: 10320230 2 0 -minimalist%1:18:01:: 10320354 1 0 -minimalist%3:01:00:: 02764549 1 0 -minimalist%5:00:00:moderate:00 01532760 2 0 -minimally%4:02:00:: 00396529 1 0 -minimally_invasive_coronary_bypass_surgery%1:04:00:: 00676453 1 0 -minimisation%1:04:00:: 00355919 1 0 -minimise%2:30:00:: 00427802 2 0 -minimise%2:32:01:: 00841125 1 0 -minimization%1:04:00:: 00355919 1 0 -minimize%2:30:00:: 00427802 1 12 -minimize%2:32:00:: 00864475 3 0 -minimize%2:32:01:: 00841125 2 2 -minimized%5:00:02:decreased:00 00883075 1 1 -minimum%1:15:00:: 08600274 2 0 -minimum%1:23:00:: 13763384 1 9 -minimum%3:00:00:: 01496021 1 23 -minimum_wage%1:21:00:: 13280515 1 0 -minimus%1:08:00:: 05566366 1 0 -mining%1:04:00:: 00922327 1 3 -mining%1:04:02:: 00961962 2 0 -mining_bee%1:05:00:: 02210427 1 1 -mining_company%1:14:00:: 08003619 1 0 -mining_engineer%1:18:00:: 10320484 1 0 -mining_geology%1:09:00:: 06122033 1 0 -minion%1:18:00:: 10320612 1 0 -minipress%1:06:00:: 03998525 1 0 -miniscule%5:00:00:small:00 01394180 1 0 -miniskirt%1:06:00:: 03770439 1 0 -minister%1:04:00:: 00585810 4 0 -minister%1:18:00:: 09983572 1 10 -minister%1:18:01:: 10320695 3 0 -minister%1:18:02:: 10320863 2 0 -minister%2:41:00:: 02446660 2 0 -minister%2:41:12:: 02549392 1 3 -minister_of_finance%1:18:00:: 10089892 1 0 -minister_of_religion%1:18:00:: 09983572 1 0 -minister_plenipotentiary%1:18:00:: 10061043 1 0 -ministerial%3:01:01:: 02764643 2 0 -ministerial%3:01:02:: 02764828 1 1 -ministerially%4:02:00:: 00402395 1 0 -ministrant%1:18:00:: 10321126 1 0 -ministrant%5:00:00:helpful:00 01197207 1 0 -ministration%1:04:00:: 01209220 1 1 -ministry%1:04:00:: 00314271 4 0 -ministry%1:06:00:: 03770316 2 1 -ministry%1:14:00:: 08114004 3 0 -ministry%1:14:01:: 08113797 1 1 -ministry_of_transportation_test%1:04:00:: 00795161 1 0 -minisub%1:06:00:: 03770520 1 0 -minisubmarine%1:06:00:: 03770520 1 0 -minium%1:27:00:: 15003329 1 0 -minivan%1:06:00:: 03770679 1 0 -miniver%1:06:00:: 03770834 1 0 -mink%1:05:00:: 02442845 3 0 -mink%1:06:00:: 03770954 2 0 -mink%1:27:00:: 14765497 1 0 -mink_coat%1:06:00:: 03770954 1 0 -minke_whale%1:05:00:: 02065407 1 0 -minkowski%1:18:00:: 11181255 1 0 -minneapolis%1:15:00:: 09102883 1 2 -minnesota%1:15:00:: 09102016 1 5 -minnesota_multiphasic_personality_inventory%1:10:00:: 06475589 1 0 -minnesotan%1:18:00:: 09743792 1 0 -minnewit%1:18:00:: 11181438 1 0 -minnie_bush%1:20:00:: 12242123 1 0 -minnie_mouse%1:05:00:: 02452138 1 0 -minniebush%1:20:00:: 12242123 1 0 -minnow%1:05:01:: 01442972 1 0 -minoan%1:18:00:: 09709916 1 0 -minoan%3:01:00:: 03016684 1 1 -minoan_civilisation%1:14:00:: 08290763 1 0 -minoan_civilization%1:14:00:: 08290763 1 0 -minoan_culture%1:14:00:: 08290763 1 0 -minocin%1:06:00:: 03771066 1 0 -minocycline%1:06:00:: 03771066 1 0 -minor%1:18:00:: 09917593 1 2 -minor%3:00:01:: 01471368 3 2 -minor%3:00:02:: 01471723 2 3 -minor%3:00:03:: 01471954 5 1 -minor%3:00:04:: 01472225 4 1 -minor%3:00:05:: 01472509 7 0 -minor%3:00:06:: 01473083 1 6 -minor%3:00:07:: 01473826 6 0 -minor%5:00:00:junior:00 02101240 8 0 -minor%5:00:00:limited:00 01415219 10 0 -minor%5:00:00:pardonable:00 01721401 9 0 -minor-league_club%1:14:00:: 08078976 1 0 -minor-league_team%1:14:00:: 08078976 1 0 -minor_axis%1:09:00:: 06009857 1 0 -minor_diatonic_scale%1:10:00:: 06861020 1 0 -minor_expense%1:21:00:: 13306436 1 0 -minor_fast_day%1:28:00:: 15161430 1 0 -minor_key%1:10:00:: 06864308 1 0 -minor_league%1:14:00:: 08231678 1 3 -minor_leaguer%1:18:00:: 10321340 1 0 -minor_mode%1:10:00:: 06864308 1 0 -minor_planet%1:17:00:: 09355623 1 0 -minor_premise%1:10:00:: 06754415 1 0 -minor_premiss%1:10:00:: 06754415 1 0 -minor_role%1:09:00:: 05929363 1 0 -minor_scale%1:10:00:: 06861020 1 0 -minor_suit%1:06:00:: 03771261 1 0 -minor_surgery%1:04:00:: 00685349 1 0 -minor_term%1:10:00:: 06754816 1 0 -minor_tranquilizer%1:06:00:: 03771443 1 0 -minor_tranquilliser%1:06:00:: 03771443 1 0 -minor_tranquillizer%1:06:00:: 03771443 1 0 -minority%1:07:00:: 05122850 2 2 -minority%1:14:00:: 07966570 1 3 -minority%1:28:00:: 15152261 3 0 -minority_leader%1:18:00:: 10321233 1 0 -minors%1:14:00:: 08231678 1 0 -minos%1:18:00:: 09564680 1 0 -minotaur%1:18:00:: 09499056 1 0 -minoxidil%1:06:00:: 03771820 1 0 -minsk%1:15:00:: 09011518 1 0 -minster%1:06:00:: 03772077 1 0 -minstrel%1:18:00:: 10099093 1 1 -minstrel%1:18:01:: 10321474 2 0 -minstrel%2:36:00:: 01730216 1 0 -minstrel_show%1:10:00:: 07019743 2 0 -minstrel_show%1:14:00:: 08189371 1 0 -minstrelsy%1:09:00:: 05635970 3 0 -minstrelsy%1:10:00:: 07049849 2 0 -minstrelsy%1:14:00:: 08189581 1 0 -mint%1:06:00:: 03772269 6 0 -mint%1:13:00:: 07606278 5 0 -mint%1:13:01:: 07819166 4 0 -mint%1:20:00:: 12855042 2 0 -mint%1:20:01:: 12839319 3 0 -mint%1:23:00:: 13774404 1 1 -mint%2:36:00:: 01639105 1 0 -mint%5:00:00:perfect:00 01751609 1 0 -mint-scented%5:00:00:odorous:00 01056636 1 0 -mint_candy%1:13:00:: 07606278 1 0 -mint_family%1:20:00:: 12838027 1 0 -mint_geranium%1:20:00:: 12021499 1 0 -mint_julep%1:13:00:: 07915491 1 0 -mint_sauce%1:13:00:: 07823591 1 0 -mintage%1:04:00:: 00909796 3 0 -mintage%1:21:00:: 13387877 1 0 -mintage%1:21:01:: 13322758 2 0 -minter%1:18:00:: 09934921 1 0 -mintmark%1:10:00:: 06799142 1 0 -minty%3:01:00:: 02764991 1 0 -minuartia%1:20:00:: 11812358 1 0 -minuend%1:23:00:: 13729031 1 0 -minuet%1:04:00:: 00536778 1 1 -minuet%1:10:00:: 07056113 2 0 -minuit%1:18:00:: 11181438 1 0 -minus%1:04:00:: 00871862 1 0 -minus%3:00:00:: 01819821 1 0 -minus%5:00:00:disadvantageous:00 00065667 2 0 -minus_sign%1:10:00:: 06812085 1 0 -minuscular%3:00:00:: 01474324 1 0 -minuscule%1:10:00:: 06350592 2 0 -minuscule%1:10:01:: 06824757 1 0 -minuscule%3:00:00:: 01474324 1 0 -minuscule%5:00:00:lowercase:00 01467534 2 0 -minuscule%5:00:00:small:00 01394180 3 0 -minute%1:07:00:: 05131023 6 0 -minute%1:10:00:: 06506315 5 0 -minute%1:23:00:: 13611567 4 0 -minute%1:28:00:: 15234764 1 83 -minute%1:28:01:: 15246853 2 8 -minute%1:28:02:: 15244650 3 1 -minute%5:00:00:careful:00 00310716 2 0 -minute%5:00:00:small:00 01393483 1 5 -minute_book%1:10:00:: 06508299 1 0 -minute_gun%1:06:00:: 03772417 1 0 -minute_hand%1:06:00:: 03772584 1 0 -minute_of_arc%1:23:00:: 13611567 1 1 -minute_steak%1:13:00:: 07658580 1 0 -minutely%4:02:00:: 00402555 1 0 -minuteman%1:06:00:: 03772674 2 0 -minuteman%1:18:00:: 10321632 1 0 -minuteness%1:07:00:: 05106928 1 0 -minuteness%1:07:01:: 04803702 2 0 -minutes%1:10:00:: 06508112 1 0 -minutia%1:09:00:: 05819890 1 1 -minx%1:18:00:: 09965134 1 0 -minyan%1:14:00:: 08358165 1 0 -miocene%1:28:00:: 15125519 1 0 -miocene_epoch%1:28:00:: 15125519 1 0 -miosis%1:04:00:: 00865808 2 0 -miosis%1:22:00:: 13512725 1 0 -miotic%1:06:00:: 03772881 1 0 -miotic%3:01:00:: 02765308 1 0 -miotic_drug%1:06:00:: 03772881 1 0 -miotic_eyedrop%1:04:00:: 00657257 1 0 -mips%1:23:00:: 13607616 1 0 -mirabeau%1:18:00:: 11181634 1 0 -mirabilis%1:20:00:: 11839297 1 0 -mirabilis_californica%1:20:00:: 11840067 1 0 -mirabilis_jalapa%1:20:00:: 11839823 1 0 -mirabilis_laevis%1:20:00:: 11840067 1 0 -mirabilis_longiflora%1:20:00:: 11840246 1 0 -mirabilis_multiflora%1:20:00:: 11840476 1 0 -mirabilis_oblongifolia%1:20:00:: 11840764 1 0 -mirabilis_uniflora%1:20:00:: 11839823 1 0 -miracle%1:11:00:: 07289481 1 7 -miracle%1:11:01:: 07288801 2 1 -miracle-worship%1:04:00:: 01045520 1 0 -miracle_man%1:18:00:: 10321754 1 0 -miracle_play%1:10:00:: 07018313 1 0 -miracle_worker%1:18:00:: 10321754 1 0 -miraculous%5:00:00:fortunate:00 01048976 2 0 -miraculous%5:00:00:supernatural:00 01576551 1 1 -miraculous_food%1:13:00:: 07860629 1 0 -miraculously%4:02:00:: 00402764 1 2 -mirage%1:09:00:: 05940214 2 0 -mirage%1:19:00:: 11484375 1 0 -miranda_rule%1:10:00:: 06655074 1 0 -mirasol%1:20:00:: 11978713 1 0 -mire%1:17:00:: 09355850 1 1 -mire%1:26:00:: 14410365 3 0 -mire%1:27:00:: 14956523 2 0 -mire%2:35:00:: 01534745 4 0 -mire%2:38:00:: 01834896 3 0 -mire%2:38:01:: 01835103 2 0 -mire%2:42:00:: 02678287 1 0 -mired%5:00:00:encumbered:00 00868603 1 0 -miri%1:10:00:: 06933824 1 0 -mirid%1:05:00:: 02237581 1 0 -mirid_bug%1:05:00:: 02237581 1 0 -miridae%1:05:00:: 02237239 1 0 -mirish%1:10:00:: 06933824 1 0 -mirky%5:00:00:opaque:00 00433529 1 0 -mirky%5:00:00:shaded:01 00276689 2 0 -miro%1:18:00:: 11181835 2 0 -miro%1:20:00:: 11658331 1 0 -mirounga%1:05:00:: 02080291 1 0 -mirror%1:06:00:: 03773035 1 8 -mirror%1:09:00:: 05767245 2 1 -mirror%2:32:00:: 00821944 2 0 -mirror%2:43:00:: 02766925 1 4 -mirror-image_relation%1:24:00:: 13829408 1 0 -mirror_carp%1:05:00:: 01440242 1 0 -mirror_image%1:07:00:: 04747115 1 0 -mirror_symmetry%1:09:00:: 06105314 1 0 -mirrored%5:00:00:reflected:00 02008917 1 0 -mirrorlike%5:00:00:reflective:00 02008082 1 0 -mirth%1:12:00:: 07529377 1 0 -mirthful%5:00:00:humorous:00 01265308 2 0 -mirthful%5:00:00:joyous:00 01367651 1 0 -mirthfully%4:02:00:: 00050297 1 0 -mirthfulness%1:12:00:: 07529377 1 0 -mirthless%5:00:00:joyless:00 01368657 1 0 -miry%5:00:00:wet:01 02548066 1 0 -misaddress%2:32:00:: 00991025 1 0 -misadventure%1:11:00:: 07314427 1 0 -misadvise%2:32:00:: 00876104 1 0 -misalign%2:30:00:: 00466327 1 0 -misalignment%1:07:00:: 05077524 1 0 -misalliance%1:26:00:: 13965627 1 0 -misally%2:41:00:: 02430421 1 0 -misanthrope%1:18:00:: 10321882 1 1 -misanthropic%5:00:00:distrustful:00 02463582 1 0 -misanthropic%5:00:00:ill-natured:00 01138161 2 0 -misanthropical%5:00:00:distrustful:00 02463582 1 0 -misanthropical%5:00:00:ill-natured:00 01138161 2 0 -misanthropist%1:18:00:: 10321882 1 0 -misanthropy%1:07:00:: 04658524 2 0 -misanthropy%1:12:00:: 07546844 1 0 -misapplication%1:04:00:: 00776732 2 0 -misapplication%1:04:02:: 00949516 1 0 -misapply%2:34:00:: 01161290 1 0 -misapprehend%2:31:01:: 00619869 1 0 -misapprehension%1:09:00:: 05895723 1 0 -misappropriate%2:40:00:: 02292535 1 0 -misappropriated%5:00:00:illegal:00 01403151 1 0 -misappropriation%1:04:00:: 00776732 1 0 -misappropriation%1:04:02:: 00084895 2 0 -misbegot%5:00:00:illegitimate:00 01407909 1 0 -misbegotten%5:00:00:illegitimate:00 01407909 1 0 -misbehave%2:41:00:: 02517202 1 0 -misbehavior%1:04:00:: 00735936 1 3 -misbehaviour%1:04:00:: 00735936 1 0 -misbelieve%2:31:00:: 00684507 1 0 -misbeliever%1:18:00:: 10171755 1 0 -misbranded%5:00:00:illegal:00 01404195 1 1 -miscalculate%2:31:00:: 00639478 2 0 -miscalculate%2:31:01:: 00712389 1 1 -miscalculation%1:04:00:: 00072808 1 2 -miscall%2:32:00:: 00971324 1 0 -miscarriage%1:04:00:: 00230475 2 0 -miscarriage%1:11:00:: 07319652 1 0 -miscarry%2:29:00:: 00059769 2 0 -miscarry%2:41:00:: 02528380 1 1 -miscast%2:36:00:: 01711073 1 0 -miscegenate%2:42:00:: 02739121 1 0 -miscegenation%1:04:00:: 00849768 1 1 -miscellanea%1:14:00:: 08398773 1 0 -miscellaneous%5:00:00:heterogeneous:00 01199083 1 2 -miscellaneous%5:00:00:varied:00 02506922 2 0 -miscellany%1:10:00:: 06592699 2 0 -miscellany%1:14:00:: 08398773 1 0 -misch_metal%1:27:00:: 14953240 1 0 -mischance%1:11:00:: 07314427 2 0 -mischance%1:19:01:: 11427842 1 0 -mischief%1:04:00:: 00736375 1 3 -mischief%1:07:00:: 04846533 2 0 -mischief-maker%1:18:00:: 10731244 1 0 -mischief-making%1:04:00:: 00736375 1 0 -mischievous%5:00:00:harmful:00 01162633 2 0 -mischievous%5:00:00:playful:00 02122715 1 1 -mischievously%4:02:00:: 00016678 1 0 -mischievousness%1:04:00:: 00736375 3 0 -mischievousness%1:07:00:: 04909563 1 0 -mischievousness%1:07:01:: 04650010 2 0 -miscible%3:00:00:: 00509377 1 0 -misconceive%2:31:01:: 00619869 1 0 -misconception%1:09:00:: 05893653 1 3 -misconduct%1:04:00:: 00732746 2 0 -misconduct%1:04:01:: 01134330 1 0 -misconduct%2:41:00:: 02438861 2 0 -misconduct%2:41:02:: 02517202 1 0 -misconstrual%1:10:00:: 07174877 1 0 -misconstruction%1:10:00:: 06314036 2 1 -misconstruction%1:10:01:: 07174877 1 1 -misconstrue%2:31:01:: 00619869 1 2 -miscount%1:04:00:: 00653719 1 0 -miscount%2:32:00:: 00948602 1 0 -miscreant%1:18:00:: 10522324 1 0 -miscreate%2:31:00:: 00701576 1 0 -miscreation%1:11:00:: 07367091 1 0 -miscue%1:04:00:: 00500927 1 0 -miscue%1:04:01:: 00073828 2 0 -misdate%2:31:00:: 00619503 1 0 -misdating%1:28:00:: 15180304 1 0 -misdeal%1:04:00:: 01085567 1 0 -misdeal%2:40:00:: 02246908 1 0 -misdeed%1:04:00:: 00735936 1 2 -misdeliver%2:35:00:: 01438585 1 0 -misdemean%2:41:00:: 02517202 1 0 -misdemeanor%1:04:00:: 00770270 1 1 -misdemeanour%1:04:00:: 00770270 1 0 -misdirect%2:32:00:: 00991025 3 0 -misdirect%2:38:00:: 02000288 2 0 -misdirect%2:41:00:: 02579447 1 0 -misdirection%1:04:00:: 01134479 3 0 -misdirection%1:04:01:: 00200041 4 0 -misdirection%1:10:00:: 06787037 2 0 -misdirection%1:10:02:: 07169743 1 0 -misdo%2:41:00:: 02563014 1 0 -mise_en_scene%1:06:00:: 03773268 1 0 -miser%1:18:00:: 10322084 1 0 -miserable%5:00:00:contemptible:00 00904745 3 1 -miserable%5:00:00:inferior:02 02347086 4 0 -miserable%5:00:00:meager:00 00107384 6 0 -miserable%5:00:00:uncomfortable:00 00478872 5 0 -miserable%5:00:00:unfortunate:00 01050890 2 1 -miserable%5:00:00:unhappy:00 01150205 1 3 -miserableness%1:26:00:: 14448333 1 0 -miserably%4:02:00:: 00402938 1 1 -miserliness%1:07:00:: 04834228 1 0 -miserly%5:00:00:stingy:00 01113807 1 0 -misery%1:12:00:: 07533978 2 0 -misery%1:26:00:: 14448333 1 8 -misestimate%2:31:00:: 00639478 2 0 -misestimate%2:31:01:: 00712389 1 0 -misestimation%1:04:00:: 00072808 1 0 -misfeasance%1:04:00:: 00742020 1 0 -misfire%1:11:00:: 07421749 1 0 -misfire%1:11:01:: 07319774 2 0 -misfire%2:33:00:: 01134653 1 1 -misfit%1:18:00:: 10322238 1 0 -misfortunate%5:00:00:unfortunate:00 01050890 1 0 -misfortune%1:11:00:: 07304852 1 4 -misfortune%1:26:00:: 14475405 2 3 -misfunction%2:35:00:: 01525295 1 0 -misgauge%2:31:00:: 00673341 1 1 -misgive%2:31:00:: 00733454 1 0 -misgiving%1:09:00:: 05698791 3 0 -misgiving%1:09:02:: 05951566 2 1 -misgiving%1:12:00:: 07525555 1 3 -misgovern%2:41:00:: 02586979 1 0 -misgovernment%1:04:00:: 01125562 1 0 -misguide%2:32:00:: 00876104 2 0 -misguide%2:38:00:: 02000288 1 0 -misguided%5:00:00:foolish:00 02572267 1 1 -misguided%5:00:00:wrong:01 02036397 2 0 -mishandle%2:41:00:: 02527651 1 0 -mishandle%2:41:01:: 02438861 2 0 -mishap%1:11:00:: 07314427 2 0 -mishap%1:19:01:: 11427842 1 0 -mishegaas%1:04:00:: 00513251 1 0 -mishegoss%1:04:00:: 00513251 1 0 -mishmash%1:14:00:: 08399977 1 0 -mishna%1:10:00:: 06462807 1 0 -mishnah%1:10:00:: 06462807 1 0 -mishnaic%3:01:00:: 02765076 1 0 -mishpachah%1:14:00:: 07970079 1 0 -mishpocha%1:14:00:: 07970079 1 0 -misidentify%2:31:00:: 00618267 1 0 -misinform%2:32:00:: 00834009 1 0 -misinformation%1:10:00:: 06634960 1 0 -misinterpret%2:31:01:: 00624801 2 0 -misinterpret%2:31:02:: 00619869 3 0 -misinterpret%2:32:00:: 00939182 1 1 -misinterpretation%1:10:00:: 07174433 1 1 -misjudge%2:31:00:: 00671190 1 2 -mislabeled%5:00:00:illegal:00 01404195 1 0 -mislaid%5:00:00:lost:01 01449884 1 0 -mislay%2:35:00:: 01503101 1 1 -mislead%2:32:00:: 00834009 2 2 -mislead%2:38:00:: 02000288 1 2 -misleader%1:18:00:: 10322391 1 0 -misleading%5:00:00:dishonest:00 01224253 1 4 -misleadingly%4:02:00:: 00082148 1 0 -mismanage%2:41:00:: 02438861 1 1 -mismanagement%1:04:00:: 01134479 1 1 -mismarry%2:41:00:: 02489363 1 0 -mismatch%1:09:00:: 05696199 1 0 -mismatch%2:35:00:: 01294026 1 0 -mismatched%3:00:00:: 01487201 1 0 -mismatched%5:00:00:unequal:00 00892773 2 0 -mismate%2:35:00:: 01293548 1 0 -mismated%5:00:00:mismatched:00 01487352 1 0 -misname%2:32:00:: 00971324 1 1 -misnomer%1:10:00:: 06338485 1 1 -miso%1:13:00:: 07857170 1 0 -misocainea%1:12:00:: 07547397 1 0 -misogamist%1:18:00:: 10322546 1 0 -misogamy%1:12:00:: 07546973 1 0 -misogynic%5:00:00:distrustful:00 02464491 1 0 -misogynism%1:12:00:: 07547064 1 0 -misogynist%1:18:00:: 10322648 1 1 -misogynistic%5:00:00:ill-natured:00 01138316 1 0 -misogynous%5:00:00:ill-natured:00 01138316 1 0 -misogyny%1:12:00:: 07547064 1 0 -misology%1:12:00:: 07547219 1 0 -misoneism%1:12:00:: 07547293 1 0 -misopedia%1:12:00:: 07547473 1 0 -misperceive%2:39:00:: 02117840 1 1 -mispickel%1:27:00:: 14667328 1 0 -misplace%2:35:00:: 01501793 2 1 -misplace%2:35:01:: 01503101 1 1 -misplaced%5:00:00:disarranged:00 01682073 1 5 -misplaced%5:00:00:lost:01 01449884 2 0 -misplaced_modifier%1:10:00:: 06323822 1 0 -misplacement%1:07:00:: 05079074 1 0 -misplay%1:04:00:: 00072068 1 0 -misplay%2:33:00:: 01075044 2 0 -misplay%2:36:00:: 01649695 1 0 -misprint%1:10:00:: 06769670 1 0 -misprint%2:36:00:: 01746839 1 0 -mispronounce%2:32:00:: 00951601 1 0 -mispronunciation%1:10:00:: 07130918 1 0 -misquotation%1:10:00:: 06613576 1 0 -misquote%1:10:00:: 06613576 1 0 -misquote%2:32:00:: 01023781 1 1 -misread%2:31:00:: 00624801 2 0 -misread%2:31:02:: 00627693 1 1 -misreading%1:10:00:: 07175102 1 0 -misreckoning%1:04:00:: 00072808 1 0 -misrelated%5:00:00:unrelated:02 01974904 1 1 -misremember%2:31:00:: 00617605 1 0 -misrepresent%2:32:00:: 00836705 1 2 -misrepresent%2:41:00:: 02576921 2 0 -misrepresentation%1:04:00:: 00751145 2 0 -misrepresentation%1:10:00:: 06758225 1 1 -misrepresented%5:00:00:disingenuous:00 01311067 1 0 -misrule%1:04:00:: 01125562 1 0 -miss%1:10:00:: 06341249 3 0 -miss%1:11:00:: 07319774 2 1 -miss%1:18:00:: 10129825 1 3 -miss%2:31:00:: 00614999 4 6 -miss%2:32:00:: 00810557 9 0 -miss%2:35:00:: 01237901 7 4 -miss%2:37:00:: 01805523 2 13 -miss%2:38:00:: 02022659 5 5 -miss%2:39:00:: 02127853 1 16 -miss%2:42:00:: 02632353 6 4 -miss%2:42:01:: 02613672 3 9 -miss%2:42:02:: 02632838 8 1 -missal%1:10:00:: 06417279 1 0 -missed%5:00:00:incomprehensible:00 00535170 1 0 -missel_thrush%1:05:00:: 01557962 1 0 -misshapen%5:00:00:unshapely:00 02141298 1 0 -misshapenness%1:26:00:: 14213512 1 0 -missile%1:06:00:: 04008634 2 4 -missile%1:06:01:: 03773504 1 10 -missile_defence_system%1:06:00:: 03773835 1 0 -missile_defense_system%1:06:00:: 03773835 1 0 -missing%5:00:00:lost:01 01450178 1 5 -missing%5:00:00:nonexistent:00 00927832 2 0 -missing_link%1:18:00:: 10322801 1 0 -mission%1:04:00:: 00731222 3 8 -mission%1:04:01:: 00970645 2 8 -mission%1:04:02:: 00730984 4 7 -mission%1:14:00:: 08402442 5 0 -mission%1:14:01:: 08403225 1 18 -mission_bells%1:20:01:: 12452256 2 0 -mission_bells%1:20:02:: 12452480 1 0 -mission_impossible%1:04:00:: 00731648 1 0 -missional%3:01:00:: 02765506 1 0 -missionary%1:18:00:: 10322957 1 3 -missionary%1:18:01:: 10323182 2 0 -missionary%3:01:00:: 02765506 1 0 -missionary_position%1:07:00:: 05081057 1 0 -missionary_post%1:14:00:: 08403225 1 0 -missionary_station%1:14:00:: 08403225 1 0 -missionary_work%1:04:00:: 00730984 1 0 -missioner%1:18:01:: 10323182 1 0 -missippian_period%1:28:00:: 15127729 1 0 -missis%1:18:00:: 10323529 1 0 -mississippi%1:15:00:: 09103943 2 5 -mississippi%1:17:00:: 09356080 1 5 -mississippi_river%1:17:00:: 09356080 1 2 -mississippian%1:18:00:: 09743891 2 0 -mississippian%1:28:00:: 15127729 1 0 -missive%1:10:00:: 06624161 1 1 -missoula%1:15:00:: 09109333 1 0 -missouri%1:10:00:: 06909079 4 0 -missouri%1:15:00:: 09105821 1 7 -missouri%1:17:00:: 09356320 2 1 -missouri%1:18:00:: 09660958 3 0 -missouri_compromise%1:10:00:: 07179609 1 0 -missouri_goldenrod%1:20:00:: 12016777 1 0 -missouri_gourd%1:20:00:: 12162425 1 0 -missouri_primrose%1:20:00:: 12344837 1 0 -missouri_river%1:17:00:: 09356320 1 0 -missourian%1:18:00:: 09743986 1 0 -misspeak%2:32:00:: 00951601 1 0 -misspell%2:32:00:: 00938146 1 0 -misspelling%1:10:00:: 06353653 1 0 -misspend%2:40:00:: 02266677 2 0 -misspend%2:42:00:: 02708301 1 0 -misstate%2:32:00:: 00799243 1 0 -misstatement%1:10:00:: 06768735 1 0 -misstep%1:04:00:: 00076563 1 0 -missus%1:18:00:: 10323529 1 0 -missy%1:18:00:: 10129825 1 0 -mist%1:19:00:: 11482706 1 10 -mist%2:30:00:: 00361495 1 1 -mist%2:35:00:: 01373303 3 0 -mist%2:39:00:: 02157731 2 0 -mist-flower%1:20:00:: 11955896 1 0 -mist_over%2:30:00:: 00361495 1 0 -mistakable%5:00:00:similar:00 02072341 1 0 -mistake%1:04:00:: 00070965 1 13 -mistake%1:09:00:: 05895723 2 6 -mistake%1:10:00:: 06769392 3 2 -mistake%2:31:01:: 00617748 2 0 -mistake%2:31:02:: 00618267 1 7 -mistaken%5:00:00:incorrect:00 00633235 2 2 -mistaken%5:00:00:wrong:01 02036397 1 6 -mistakenly%4:02:00:: 00195542 1 2 -mistaking%1:10:00:: 07174433 1 1 -mister%1:10:00:: 06341340 1 0 -mistflower%1:20:00:: 11955896 1 0 -mistily%4:02:00:: 00403052 1 0 -mistily%4:02:01:: 00232600 2 0 -mistime%2:30:00:: 00491313 1 0 -mistiming%1:28:00:: 15180304 1 0 -mistiness%1:07:00:: 04704116 1 0 -mistle_thrush%1:05:00:: 01557962 1 0 -mistletoe%1:20:01:: 12739332 2 0 -mistletoe%1:20:02:: 12739801 1 0 -mistletoe%1:20:03:: 12737898 3 0 -mistletoe_cactus%1:20:00:: 11853079 1 0 -mistletoe_family%1:20:01:: 12737383 2 0 -mistletoe_family%1:20:02:: 12738859 1 0 -mistletoe_fig%1:20:00:: 12403075 1 0 -mistletoe_rubber_plant%1:20:00:: 12403075 1 0 -mistletoe_thrush%1:05:00:: 01557962 1 0 -mistral%1:19:00:: 11482873 1 0 -mistranslate%2:32:00:: 00960453 1 0 -mistranslation%1:10:00:: 06347122 1 0 -mistreat%2:41:00:: 02516594 1 0 -mistreated%3:00:00:: 00017352 1 0 -mistreatment%1:04:00:: 00418025 1 0 -mistress%1:18:00:: 10323634 3 0 -mistress%1:18:01:: 10323752 1 4 -mistress%1:18:02:: 10559840 2 0 -mistrial%1:04:00:: 01199252 1 0 -mistrust%1:07:00:: 04895773 2 0 -mistrust%1:09:00:: 05698791 1 0 -mistrust%2:31:00:: 00687926 1 2 -mistrustful%5:00:00:distrustful:00 02464277 1 0 -mistrustfully%4:02:00:: 00320408 1 0 -misty%5:00:00:cloudy:00 00461609 1 1 -misty%5:00:00:wet:01 02549569 2 0 -misty-eyed%5:00:00:tearful:00 02473543 1 1 -misunderstand%2:31:01:: 00619869 1 3 -misunderstanding%1:09:00:: 05895723 2 0 -misunderstanding%1:10:00:: 07174433 1 1 -misunderstood%5:00:00:ununderstood:00 01379116 1 0 -misuse%1:04:00:: 00947719 1 1 -misuse%2:30:00:: 00203213 2 0 -misuse%2:34:00:: 01161290 1 2 -misused%3:00:00:: 02495346 1 1 -mit%1:06:00:: 03725968 1 0 -mitchell%1:18:00:: 11181937 6 0 -mitchell%1:18:01:: 11182098 5 0 -mitchell%1:18:02:: 11182275 4 0 -mitchell%1:18:03:: 11182479 3 0 -mitchell%1:18:04:: 11182621 2 0 -mitchell%1:18:05:: 11182825 1 0 -mitchella%1:20:00:: 12668364 1 0 -mitchella_repens%1:20:00:: 12668517 1 0 -mitchum%1:18:00:: 11182966 1 0 -mite%1:05:00:: 01779629 2 0 -mite%1:23:00:: 13774115 1 2 -mite_box%1:06:00:: 03982767 1 1 -mitella%1:20:00:: 12800327 1 0 -mitella_diphylla%1:20:00:: 12800832 1 0 -mitella_pentandra%1:20:00:: 12801072 1 0 -miter%1:06:00:: 03773970 3 0 -miter%1:06:01:: 03774124 2 0 -miter%1:06:02:: 03774461 1 0 -miter%2:35:00:: 01584199 1 1 -miter%2:35:01:: 01291707 3 0 -miter%2:40:00:: 02263958 2 0 -miter_box%1:06:00:: 03774327 1 0 -miter_joint%1:06:00:: 03774461 1 0 -miter_mushroom%1:20:00:: 13035925 1 0 -miterwort%1:20:00:: 12800586 1 0 -mitford%1:18:00:: 11183074 2 0 -mitford%1:18:01:: 11183211 1 0 -mithan%1:05:00:: 02410141 1 0 -mithra%1:18:00:: 09531826 1 0 -mithracin%1:06:00:: 03774673 1 0 -mithraic%3:01:00:: 03019322 1 0 -mithraicism%1:09:00:: 06243963 1 0 -mithraism%1:09:00:: 06243963 1 0 -mithraist%1:18:00:: 09686051 1 0 -mithraistic%3:01:00:: 03019322 1 0 -mithramycin%1:06:00:: 03774673 1 0 -mithras%1:18:00:: 09531826 1 0 -mithridate_mustard%1:20:00:: 11898775 1 0 -mithridates%1:18:00:: 11183387 1 0 -mithridates_the_great%1:18:00:: 11183387 1 0 -mithridates_vi%1:18:00:: 11183387 1 0 -mitigable%5:00:00:placable:00 01785079 1 0 -mitigate%2:30:04:: 00198850 2 0 -mitigate%2:32:00:: 00906037 1 3 -mitigated%3:00:00:: 01519284 1 0 -mitigating_circumstance%1:09:00:: 05823317 1 0 -mitigation%1:04:00:: 00354583 1 1 -mitigation%1:04:01:: 00353249 3 0 -mitigation%1:10:00:: 06741728 2 0 -mitigative%5:00:00:moderating:00 01341153 1 0 -mitigatory%5:00:00:moderating:00 01341153 1 0 -mitochondrion%1:08:00:: 05445389 1 0 -mitogen%1:27:00:: 14953357 1 0 -mitomycin%1:06:00:: 03774842 1 0 -mitosis%1:22:00:: 13516597 1 0 -mitotic%3:01:00:: 03019483 1 0 -mitra%1:18:00:: 09527291 1 0 -mitral%3:01:00:: 03019576 1 1 -mitral%3:01:01:: 03019709 2 0 -mitral_stenosis%1:26:00:: 14111915 1 0 -mitral_valve%1:08:00:: 05393813 1 0 -mitral_valve_prolapse%1:26:00:: 14111715 1 0 -mitral_valve_stenosis%1:26:00:: 14111915 1 0 -mitre%1:06:00:: 03773970 3 0 -mitre%1:06:01:: 03774124 2 0 -mitre%1:06:02:: 03774461 1 0 -mitre_box%1:06:00:: 03774327 1 0 -mitre_joint%1:06:00:: 03774461 1 0 -mitrewort%1:20:00:: 12800586 1 0 -mitrula_elegans%1:20:00:: 13029122 1 0 -mitsvah%1:04:00:: 00045114 2 0 -mitsvah%1:09:00:: 06186166 1 0 -mitt%1:06:00:: 02800213 2 0 -mitt%1:08:00:: 05564590 1 0 -mittelschmerz%1:09:00:: 05724965 1 0 -mitten%1:06:00:: 03775071 1 0 -mitterrand%1:18:00:: 11183605 1 0 -mitzvah%1:04:00:: 00045114 2 0 -mitzvah%1:09:00:: 06186166 1 0 -miwok%1:10:00:: 06924790 2 0 -miwok%1:18:00:: 09661397 1 0 -mix%1:04:00:: 00380083 3 0 -mix%1:11:00:: 07374756 2 0 -mix%1:13:00:: 07882886 1 0 -mix%2:30:00:: 00394813 1 7 -mix%2:30:01:: 00184117 4 1 -mix%2:30:02:: 00556193 3 1 -mix%2:35:00:: 01462005 5 0 -mix%2:35:02:: 01418667 6 0 -mix%2:41:00:: 02481900 2 1 -mix-up%1:04:00:: 00072473 1 0 -mix_in%2:30:00:: 00396035 1 2 -mix_in%2:30:01:: 00184117 2 0 -mix_up%2:31:00:: 00620379 2 0 -mix_up%2:36:00:: 01657254 1 0 -mixable%3:00:00:: 00509377 1 0 -mixed%5:00:00:heterogeneous:00 01199083 1 6 -mixed%5:00:00:integrated:00 01326652 2 1 -mixed-blood%1:18:00:: 10323999 1 0 -mixed-up%5:00:00:perplexed:00 01766133 1 1 -mixed_bag%1:14:00:: 08398773 1 0 -mixed_bud%1:20:00:: 13165552 1 0 -mixed_drink%1:13:00:: 07911371 1 0 -mixed_economy%1:14:00:: 08365222 1 0 -mixed_farming%1:04:00:: 00919396 1 0 -mixed_marriage%1:14:00:: 07990158 1 0 -mixed_metaphor%1:10:00:: 07107381 1 0 -mixed_nuisance%1:09:00:: 05831270 1 0 -mixer%1:06:00:: 03775199 4 0 -mixer%1:06:01:: 03775388 3 0 -mixer%1:13:00:: 07913180 2 0 -mixer%1:14:00:: 08256369 1 0 -mixing%1:04:00:: 00380083 1 4 -mixing_bowl%1:06:00:: 03775546 1 0 -mixing_faucet%1:06:00:: 03775636 1 0 -mixologist%1:18:00:: 09841188 1 0 -mixology%1:09:00:: 05638778 1 0 -mixture%1:04:00:: 00380083 5 0 -mixture%1:11:00:: 07374756 4 1 -mixture%1:13:00:: 07882497 2 3 -mixture%1:14:00:: 08398773 3 2 -mixture%1:27:00:: 14586258 1 11 -mizen%1:06:00:: 03775847 1 0 -mizen%1:06:01:: 03775747 2 0 -mizenmast%1:06:00:: 03775847 1 0 -mizzen%1:06:00:: 03775847 1 0 -mizzen%1:06:01:: 03775747 2 0 -mizzen_course%1:06:00:: 03137473 1 0 -mizzenmast%1:06:00:: 03775847 1 0 -mizzle%1:19:00:: 11502322 1 0 -mizzle%2:43:00:: 02757475 1 0 -mko%1:14:00:: 08034778 1 0 -ml%1:23:00:: 13623636 1 13 -mlitt%1:10:00:: 06701800 1 0 -mls%1:10:00:: 06701906 1 0 -mm%1:23:00:: 13658657 1 16 -mm_hg%1:23:00:: 13711416 1 0 -mmpi%1:10:00:: 06475589 1 0 -mn%1:15:00:: 09102016 2 0 -mn%1:27:00:: 14644654 1 0 -mnemonic%1:04:00:: 00171507 1 0 -mnemonic%3:01:00:: 02896017 1 0 -mnemonics%1:09:00:: 05661551 1 0 -mnemonist%1:18:00:: 10324201 1 0 -mnemosyne%1:18:00:: 09577155 1 0 -mnemotechnic%3:01:00:: 02896017 1 0 -mnemotechnical%3:01:00:: 02896017 1 0 -mniaceae%1:20:00:: 11541322 1 0 -mnium%1:20:00:: 11541579 1 0 -mo%1:15:00:: 09105821 3 0 -mo%1:27:00:: 14645661 2 0 -mo%1:28:00:: 15246853 1 0 -moa%1:05:00:: 01523105 1 0 -moan%1:10:00:: 07126383 1 1 -moan%2:32:00:: 01045419 1 3 -moaner%1:18:00:: 10776339 1 0 -moat%1:06:00:: 03776050 1 0 -moated%5:00:00:protected:00 01885757 1 0 -mob%1:14:00:: 08184600 1 11 -mob%1:14:01:: 08244062 3 0 -mob%1:14:02:: 08246302 2 1 -mob%2:38:00:: 02064131 1 0 -moban%1:06:00:: 03780896 1 0 -mobbish%5:00:00:disorderly:00 01666927 1 0 -mobcap%1:06:00:: 03776167 1 1 -mobile%1:06:00:: 03776291 3 0 -mobile%1:15:00:: 09054480 2 0 -mobile%1:17:00:: 09356639 1 0 -mobile%3:00:00:: 01522376 2 0 -mobile%5:00:00:moving:02 01563494 3 0 -mobile%5:00:00:unsettled:01 02128084 1 2 -mobile%5:00:01:changeable:00 00345694 5 0 -mobile%5:00:02:changeable:00 00346103 4 0 -mobile_bay%1:17:00:: 09356781 1 0 -mobile_canteen%1:06:00:: 02952674 1 0 -mobile_home%1:06:00:: 03776460 1 0 -mobile_phone%1:06:00:: 02992529 1 0 -mobile_river%1:17:00:: 09356639 1 0 -mobilisation%1:04:00:: 01230283 1 0 -mobilisation%1:04:01:: 01156438 2 0 -mobilise%2:30:00:: 00270005 4 0 -mobilise%2:30:02:: 00270215 3 0 -mobilise%2:33:00:: 01088381 2 0 -mobilise%2:33:01:: 01097960 1 0 -mobility%1:07:00:: 04773351 1 2 -mobilization%1:04:00:: 01230283 2 0 -mobilization%1:04:01:: 01156438 1 1 -mobilize%2:30:00:: 00270005 4 0 -mobilize%2:30:02:: 00270215 1 5 -mobilize%2:33:00:: 01088381 3 0 -mobilize%2:33:01:: 01097960 2 2 -mobius%1:18:00:: 11183791 1 0 -mobius_strip%1:06:00:: 03776673 1 0 -moblike%5:00:00:disorderly:00 01666927 1 2 -mobocracy%1:14:00:: 08362302 1 0 -mobster%1:18:00:: 10120085 1 0 -mobula%1:05:00:: 01500721 1 0 -mobula_hypostoma%1:05:00:: 01500854 1 0 -mobulidae%1:05:00:: 01499898 1 0 -mobuto_lake%1:17:00:: 09330061 1 0 -mocambique%1:15:00:: 08971025 1 0 -mocassin%1:06:00:: 03776877 1 0 -moccasin%1:06:00:: 03776877 1 0 -moccasin_flower%1:20:00:: 12056601 1 0 -mocha%1:07:00:: 04972950 4 0 -mocha%1:13:01:: 07920872 3 0 -mocha%1:13:02:: 07920989 2 0 -mocha%1:27:00:: 14762969 1 0 -mocha_coffee%1:13:00:: 07920872 1 0 -mock%1:04:00:: 01224700 1 0 -mock%2:32:00:: 00849080 1 4 -mock%2:32:01:: 00849332 2 0 -mock%5:00:00:counterfeit:00 01117823 1 2 -mock-heroic%1:10:00:: 06386345 1 0 -mock-up%1:06:00:: 03776997 1 0 -mock_azalia%1:20:00:: 11769176 1 0 -mock_orange%1:20:01:: 12791329 1 0 -mock_orange%1:20:02:: 12399899 4 0 -mock_orange%1:20:03:: 12772908 2 0 -mock_orange%1:20:04:: 12643113 3 0 -mock_privet%1:20:00:: 12310021 1 0 -mock_sun%1:19:00:: 11487732 1 0 -mock_turtle_soup%1:13:00:: 07586179 1 0 -mock_up%2:36:00:: 01697406 1 0 -mocker%1:05:00:: 01586941 2 0 -mocker%1:18:00:: 10561320 1 1 -mockernut%1:20:00:: 12322099 1 0 -mockernut_hickory%1:20:00:: 12322099 1 0 -mockery%1:04:01:: 00549610 3 0 -mockery%1:10:00:: 06716234 1 1 -mockery%1:10:01:: 06780309 2 0 -mocking%5:00:00:disrespectful:00 01995596 1 1 -mocking%5:00:00:playful:00 02123118 2 0 -mocking_thrush%1:05:00:: 01587834 1 0 -mockingbird%1:05:00:: 01586941 1 0 -mockingly%4:02:00:: 00301168 2 0 -mockingly%4:02:01:: 00347860 1 0 -mod%1:18:00:: 10324357 1 0 -mod%5:00:00:fashionable:00 00972902 1 0 -mod_con%1:06:00:: 03777126 1 0 -modal%1:10:00:: 06318722 1 0 -modal%3:01:00:: 02864400 3 0 -modal%3:01:01:: 02864551 2 0 -modal%5:00:00:normal:01 01594811 1 2 -modal_auxiliary%1:10:00:: 06318722 1 0 -modal_auxiliary_verb%1:10:00:: 06318722 1 0 -modal_logic%1:09:00:: 06166644 1 0 -modal_logic%1:09:01:: 06165823 2 0 -modal_value%1:09:00:: 06023675 1 0 -modal_verb%1:10:00:: 06318722 1 0 -modality%1:04:00:: 00661847 4 0 -modality%1:09:00:: 05652396 3 0 -modality%1:24:00:: 13802634 1 0 -modality%1:24:01:: 13801424 2 0 -mode%1:07:00:: 04928903 1 13 -mode%1:09:00:: 06023675 6 0 -mode%1:10:00:: 06861630 5 0 -mode%1:24:00:: 13802634 3 0 -mode%1:24:02:: 13801424 4 0 -mode%1:26:00:: 13923929 2 0 -model%1:04:00:: 00898804 9 0 -model%1:06:00:: 03777283 4 4 -model%1:09:00:: 05890249 1 19 -model%1:09:01:: 05925366 5 3 -model%1:09:02:: 05937112 7 1 -model%1:09:03:: 05845652 2 11 -model%1:18:00:: 10324560 3 6 -model%1:18:01:: 10324851 6 1 -model%1:18:02:: 10291240 8 0 -model%2:36:00:: 01697027 2 1 -model%2:36:01:: 01697406 6 0 -model%2:36:02:: 01743784 1 1 -model%2:36:04:: 01722980 5 0 -model%2:39:00:: 02142626 4 0 -model%2:39:01:: 02142775 3 0 -model%5:00:00:worthy:00 02586446 1 1 -model_t%1:06:00:: 03777568 1 0 -modeled%5:00:00:shapely:00 02139884 1 1 -modeler%1:18:00:: 10325774 1 0 -modeling%1:04:00:: 00898804 3 0 -modeling%1:04:01:: 00937895 2 0 -modeling%1:06:00:: 03779621 1 0 -modeller%1:18:00:: 10325774 1 0 -modelling%1:04:00:: 00898804 2 0 -modelling%1:04:01:: 00937895 1 0 -modem%1:06:00:: 03777754 1 0 -moderate%1:18:00:: 09904837 1 1 -moderate%2:30:01:: 00202934 6 0 -moderate%2:30:03:: 00198710 2 1 -moderate%2:32:00:: 00813790 1 1 -moderate%2:32:01:: 00933566 5 0 -moderate%2:32:06:: 01058036 4 0 -moderate%2:41:00:: 02510337 3 0 -moderate%3:00:00:: 01531375 1 10 -moderate%5:00:00:mild:00 01509367 2 2 -moderate%5:00:00:temperate:00 02402078 3 0 -moderate-size%5:00:00:sized:00 02223659 1 0 -moderate-sized%5:00:00:sized:00 02223659 1 0 -moderate_breeze%1:19:00:: 11432758 1 0 -moderate_gale%1:19:00:: 11462013 1 0 -moderately%4:02:00:: 00035718 1 2 -moderately%4:02:01:: 00215237 2 0 -moderateness%1:07:00:: 05117660 2 0 -moderateness%1:07:01:: 05146904 1 0 -moderating%3:00:00:: 01340990 1 0 -moderation%1:04:00:: 00353249 4 0 -moderation%1:07:00:: 05117660 1 1 -moderation%1:07:01:: 04883614 3 0 -moderation%1:11:00:: 07357101 2 0 -moderationism%1:09:00:: 05987283 1 0 -moderationist%1:18:00:: 09904837 2 0 -moderationist%1:18:01:: 10325957 1 0 -moderatism%1:09:00:: 06214379 1 0 -moderato%5:00:00:slow:02 00983499 1 0 -moderator%1:18:00:: 10326087 4 0 -moderator%1:18:01:: 10326257 3 0 -moderator%1:18:02:: 10326392 2 0 -moderator%1:27:00:: 14727355 1 0 -moderatorship%1:04:00:: 00595545 1 0 -modern%1:10:00:: 06826726 2 0 -modern%1:18:00:: 10326551 1 2 -modern%3:00:00:: 01535709 1 57 -modern%5:00:00:fashionable:00 00972902 2 6 -modern%5:00:00:late:01 00820975 5 0 -modern%5:00:00:nonclassical:00 00414354 3 5 -modern%5:00:00:progressive:01 01876261 4 3 -modern-day%5:00:00:modern:00 01536094 1 0 -modern_ballet%1:04:00:: 00529784 1 0 -modern_dance%1:04:00:: 00530018 1 0 -modern_english%1:10:00:: 06949506 1 0 -modern_era%1:28:00:: 15254831 1 0 -modern_font%1:10:00:: 06826726 1 0 -modern_greek%1:10:00:: 06976680 1 1 -modern_hebrew%1:10:00:: 06987409 1 0 -modern_jazz%1:10:00:: 07063921 1 0 -modern_man%1:05:00:: 02475669 1 1 -modern_times%1:28:00:: 15120528 1 2 -modern_world%1:28:00:: 15120528 1 4 -moderne%5:00:00:modern:00 01536745 1 0 -modernisation%1:04:00:: 00264913 1 0 -modernise%2:30:00:: 00262076 2 0 -modernise%2:30:02:: 00411020 1 0 -modernised%5:00:00:progressive:01 01876670 1 0 -modernism%1:04:00:: 00412449 3 0 -modernism%1:06:00:: 03777961 1 2 -modernism%1:07:00:: 05050668 2 0 -modernist%1:18:00:: 10326643 1 0 -modernistic%5:00:00:fashionable:00 00972902 1 0 -modernity%1:07:00:: 05050668 1 5 -modernization%1:04:00:: 00264913 1 8 -modernization%1:10:00:: 06408990 2 0 -modernize%2:30:00:: 00262076 1 3 -modernize%2:30:02:: 00411020 2 1 -modernized%5:00:00:progressive:01 01876670 1 0 -modernness%1:07:00:: 05050668 1 0 -modest%3:00:01:: 01537885 4 0 -modest%3:00:02:: 01539225 1 3 -modest%5:00:00:humble:00 01893510 6 0 -modest%5:00:00:inferior:01 02340458 5 0 -modest%5:00:00:limited:00 01415219 7 0 -modest%5:00:00:moderate:00 01532912 2 2 -modest%5:00:00:unpretentious:00 01851916 3 1 -modest_moussorgsky%1:18:00:: 11198375 1 0 -modest_mussorgsky%1:18:00:: 11198375 1 0 -modest_petrovich_moussorgsky%1:18:00:: 11198375 1 0 -modest_petrovich_mussorgsky%1:18:00:: 11198375 1 0 -modestly%4:02:00:: 00239215 1 2 -modestness%1:07:00:: 05146904 1 0 -modestness%1:07:01:: 04900947 2 0 -modesty%1:07:00:: 04900947 1 1 -modesty%1:07:01:: 04900121 2 1 -modicon%1:06:00:: 03778135 1 0 -modicum%1:23:00:: 13761801 1 0 -modifiable%3:00:00:: 00350069 1 0 -modification%1:04:00:: 00199707 1 2 -modification%1:06:00:: 03778302 2 1 -modification%1:11:00:: 07296428 4 0 -modification%1:24:00:: 13800801 3 0 -modified%3:00:00:: 01540365 1 1 -modified%5:00:00:qualified:02 01913642 2 1 -modified_american_plan%1:21:00:: 13415866 1 0 -modified_radical_mastectomy%1:04:00:: 00685675 1 0 -modifier%1:08:00:: 05439286 4 0 -modifier%1:10:00:: 06320801 1 5 -modifier%1:18:00:: 09609871 3 0 -modifier%1:18:01:: 10326776 2 0 -modifier_gene%1:08:00:: 05439286 1 0 -modify%2:30:00:: 00169806 1 17 -modify%2:30:01:: 00171127 2 1 -modify%2:30:10:: 00126264 3 0 -modigliani%1:18:00:: 11183955 1 0 -modillion%1:06:00:: 03778459 1 0 -modiolus%1:08:00:: 05322735 1 0 -modish%5:00:00:fashionable:00 00971506 1 0 -modishly%4:02:00:: 00006858 1 0 -modishness%1:07:00:: 04813712 1 0 -modiste%1:18:00:: 10033412 2 0 -modiste%1:18:01:: 10162354 1 0 -mods%1:14:00:: 08371574 1 0 -modular%5:00:00:standard:02 02296415 1 0 -modulate%2:30:00:: 00171458 4 0 -modulate%2:30:01:: 00299341 3 0 -modulate%2:30:05:: 00123894 5 0 -modulate%2:32:00:: 00982293 2 0 -modulate%2:36:00:: 01729142 1 0 -modulated%3:00:00:: 01541448 1 0 -modulated%5:00:00:inflected:00 00700214 2 0 -modulation%1:04:00:: 00200379 5 0 -modulation%1:10:00:: 06281295 2 2 -modulation%1:10:01:: 07087641 1 3 -modulation%1:10:02:: 07084166 3 0 -modulation%1:10:03:: 07083958 4 0 -module%1:06:00:: 03778600 4 0 -module%1:06:01:: 03778817 3 0 -module%1:06:02:: 03779000 2 0 -module%1:09:00:: 05650329 1 0 -modulus%1:23:00:: 13587763 3 0 -modulus%1:23:01:: 13730377 2 0 -modulus%1:23:02:: 13735622 1 0 -modulus_of_elasticity%1:23:00:: 13587963 1 0 -modulus_of_rigidity%1:23:00:: 13588381 1 0 -modus_operandi%1:04:00:: 01026482 1 0 -modus_vivendi%1:07:00:: 04930632 2 0 -modus_vivendi%1:10:00:: 07179192 1 0 -moehringia%1:20:00:: 11812573 1 0 -moehringia_lateriflora%1:20:00:: 11812910 1 0 -moehringia_mucosa%1:20:00:: 11813077 1 0 -moeller's_glossitis%1:26:00:: 14347334 1 0 -mogadiscio%1:15:00:: 08998853 1 0 -mogadishu%1:15:00:: 08998853 1 0 -mogdad_coffee%1:20:00:: 12500751 1 0 -mogen_david%1:10:00:: 06882333 1 0 -moghul%1:18:00:: 10326883 1 0 -mogul%1:18:00:: 10326883 2 0 -mogul%1:18:01:: 09840217 3 0 -mogul%1:25:00:: 13895549 1 0 -mogul_empire%1:14:00:: 08405873 1 0 -mohair%1:06:00:: 03779128 1 0 -mohammad%1:18:00:: 11184092 1 0 -mohammed%1:18:00:: 11184092 1 0 -mohammed_ali%1:18:00:: 11184273 1 0 -mohammed_reza_pahlavi%1:18:00:: 11220461 1 0 -mohammed_reza_pahlevi%1:18:00:: 11220461 1 0 -mohammedan%1:18:00:: 10327002 1 0 -mohammedan%3:01:00:: 03035113 1 0 -mohammedan_calendar%1:28:00:: 15178841 1 0 -mohammedanism%1:09:00:: 06234825 1 0 -mohandas_karamchand_gandhi%1:18:00:: 10989339 1 0 -moharram%1:28:00:: 15217308 1 0 -mohave%1:10:00:: 06923182 3 0 -mohave%1:15:00:: 09170996 2 0 -mohave%1:18:00:: 09661543 1 0 -mohave_desert%1:15:00:: 09170996 1 0 -mohawk%1:08:00:: 05260928 3 0 -mohawk%1:10:00:: 06916313 2 0 -mohawk%1:18:00:: 09661731 1 0 -mohawk_haircut%1:08:00:: 05260928 1 0 -mohawk_river%1:17:00:: 09356929 1 0 -mohican%1:10:00:: 06910958 2 0 -mohican%1:18:00:: 09661873 1 0 -moho%1:17:00:: 09357080 1 0 -mohorovicic%1:18:00:: 11184531 1 0 -mohorovicic_discontinuity%1:17:00:: 09357080 1 0 -mohria%1:20:00:: 12956791 1 0 -mohria_caffrorum%1:20:00:: 12956922 1 0 -mohs_scale%1:24:00:: 13851677 1 0 -moiety%1:14:00:: 08372299 2 0 -moiety%1:23:00:: 13737089 1 0 -moil%2:30:00:: 00218214 3 0 -moil%2:38:00:: 01885430 2 0 -moil%2:41:00:: 02419773 1 0 -moira_shearer%1:18:00:: 11296775 1 0 -moirae%1:18:00:: 09565099 1 0 -moirai%1:18:00:: 09565099 1 0 -moire%1:06:00:: 03779246 1 1 -moire%5:00:00:patterned:00 01789359 1 0 -moist%5:00:00:wet:01 02548820 1 6 -moisten%2:30:00:: 00217956 1 3 -moisten%2:35:00:: 01376082 2 0 -moistener%1:06:00:: 03161016 1 0 -moistening%1:04:00:: 00278040 1 0 -moistly%4:02:00:: 00297741 1 0 -moistness%1:26:00:: 14535905 1 0 -moisture%1:26:00:: 14535431 1 7 -moisturise%2:30:00:: 00215800 1 0 -moisturize%2:30:00:: 00215800 1 0 -mojarra%1:05:00:: 02636854 1 0 -mojave%1:10:00:: 06923182 3 0 -mojave%1:15:00:: 09170996 2 0 -mojave%1:18:00:: 09661543 1 0 -mojave_aster%1:20:00:: 11993675 1 0 -mojave_desert%1:15:00:: 09170996 1 0 -mojave_rattlesnake%1:05:00:: 01757115 1 0 -mojo%1:09:00:: 05968209 1 0 -moke%1:05:00:: 02389865 1 0 -moksa%1:11:00:: 07321657 1 0 -mokulu%1:10:00:: 06985722 1 0 -mol%1:23:00:: 13724081 1 0 -mola%1:05:00:: 02656670 1 0 -mola_lanceolata%1:05:00:: 02656969 1 0 -molal%3:01:00:: 02900381 1 2 -molal_concentration%1:07:00:: 05039907 1 0 -molality%1:07:00:: 05039907 1 0 -molar%1:08:00:: 05307773 1 0 -molar%3:00:00:: 01542071 4 0 -molar%3:01:00:: 02900081 3 0 -molar%3:01:02:: 02900219 2 0 -molar%3:01:03:: 02900545 1 0 -molar_concentration%1:07:00:: 05040081 1 0 -molar_pregnancy%1:26:00:: 14192942 1 0 -molarity%1:07:00:: 05040081 1 0 -molasses%1:13:00:: 07859951 1 0 -molasses_cookie%1:13:00:: 07637178 1 0 -molasses_kiss%1:13:00:: 07606933 1 0 -molasses_taffy%1:13:00:: 07609549 1 0 -mold%1:06:00:: 03779370 2 1 -mold%1:06:02:: 03779621 8 0 -mold%1:07:00:: 04732709 7 0 -mold%1:13:00:: 07938594 6 0 -mold%1:20:00:: 13077033 5 0 -mold%1:22:00:: 13516176 4 0 -mold%1:25:00:: 13913566 1 1 -mold%1:27:00:: 14953564 3 0 -mold%2:30:00:: 00210738 2 1 -mold%2:31:00:: 00701040 6 0 -mold%2:35:00:: 01221405 5 0 -mold%2:36:00:: 01662771 3 0 -mold%2:36:01:: 01659248 4 0 -mold%2:36:02:: 01697027 1 4 -moldable%5:00:00:elastic:00 00844461 1 0 -moldavia%1:15:00:: 09014586 1 0 -moldboard%1:06:00:: 03779884 1 0 -moldboard_plow%1:06:00:: 03780047 1 0 -molded%5:00:00:formed:00 02149787 1 0 -molded_salad%1:13:00:: 07808806 1 0 -molder%2:30:00:: 00209837 1 0 -moldiness%1:07:00:: 04928194 1 0 -molding%1:04:00:: 00937895 5 0 -molding%1:04:01:: 00909899 1 1 -molding%1:06:00:: 03780247 3 0 -molding%1:06:01:: 03780392 2 0 -molding%1:06:02:: 03779621 4 0 -moldova%1:15:00:: 09014586 1 0 -moldovan%3:01:00:: 02963128 1 0 -moldovan_monetary_unit%1:23:00:: 13702102 1 0 -moldy%5:00:00:stale:00 01070088 1 0 -mole%1:05:00:: 01889520 6 0 -mole%1:06:00:: 02894605 5 0 -mole%1:07:00:: 04693804 4 0 -mole%1:13:00:: 07838551 3 0 -mole%1:18:00:: 09970192 2 0 -mole%1:23:00:: 13724081 1 0 -mole_cricket%1:05:00:: 02229765 1 0 -mole_plant%1:20:00:: 12918404 2 0 -mole_plant%1:20:02:: 12920521 1 0 -mole_rat%1:05:01:: 02369293 1 0 -mole_rat%1:05:02:: 02334201 3 0 -mole_rat%1:05:03:: 02368821 2 0 -mole_salamander%1:05:00:: 01632308 1 0 -molech%1:18:00:: 09519454 1 0 -molecular%3:00:00:: 01542252 2 0 -molecular%3:01:00:: 02900700 1 6 -molecular_biologist%1:18:00:: 10327143 1 0 -molecular_biology%1:09:00:: 06078088 1 0 -molecular_formula%1:10:00:: 06817173 1 0 -molecular_genetics%1:09:00:: 06077916 1 0 -molecular_weight%1:07:00:: 05026312 1 4 -molecule%1:27:00:: 14682133 1 9 -molecule%1:27:01:: 14585519 2 0 -molehill%1:17:00:: 09357346 1 0 -moleskin%1:06:00:: 03780799 1 0 -molest%2:37:00:: 01789514 2 0 -molest%2:41:00:: 02569495 1 2 -molestation%1:04:00:: 00419644 2 0 -molestation%1:04:01:: 00773047 1 0 -molester%1:18:00:: 10327333 1 0 -molidae%1:05:00:: 02656426 1 0 -moliere%1:18:00:: 11184694 1 0 -molindone%1:06:00:: 03780896 1 0 -moline%1:15:00:: 09083949 1 0 -molisch's_test%1:27:00:: 14609784 1 0 -molisch_reaction%1:27:00:: 14609784 1 0 -molisch_test%1:27:00:: 14609784 1 0 -molise%1:15:00:: 08809492 1 0 -moll%1:18:00:: 10327475 1 0 -mollah%1:18:00:: 10338231 1 0 -molle%1:20:01:: 12765115 1 0 -mollie%1:05:00:: 01449980 1 0 -mollienesia%1:05:00:: 01449857 1 0 -mollification%1:04:00:: 01151097 2 0 -mollification%1:26:00:: 13970764 1 0 -mollify%2:30:00:: 00256027 3 0 -mollify%2:30:01:: 00294884 2 0 -mollify%2:37:00:: 01765392 1 1 -molluga%1:20:00:: 11821415 1 0 -molluga_verticillata%1:20:00:: 11821534 1 0 -mollusc%1:05:00:: 01940736 1 0 -mollusca%1:05:00:: 01940488 1 0 -molluscum%1:26:00:: 14230232 1 0 -molluscum_contagiosum%1:26:00:: 14230358 1 0 -mollusk%1:05:00:: 01940736 1 0 -mollusk_family%1:05:00:: 01938850 1 0 -mollusk_genus%1:05:00:: 01939598 1 0 -molly%1:05:00:: 01449980 1 0 -molly_miller%1:05:00:: 02613820 1 0 -molly_pitcher%1:18:00:: 11168218 1 0 -mollycoddle%1:18:00:: 10327583 1 0 -mollycoddle%2:41:00:: 02570267 1 0 -mollycoddler%1:18:00:: 10395390 1 0 -mollymawk%1:05:00:: 02058221 1 0 -molnar%1:18:00:: 11184825 1 0 -moloch%1:05:00:: 01688961 3 0 -moloch%1:18:01:: 09519454 2 0 -moloch%1:18:02:: 10462005 1 0 -moloch_horridus%1:05:00:: 01689081 1 0 -molokai%1:15:00:: 09080273 1 0 -molokai_island%1:15:00:: 09080273 1 0 -molossidae%1:05:00:: 02149136 1 0 -molothrus%1:05:00:: 01574997 1 0 -molotov%1:15:00:: 09009372 2 0 -molotov%1:18:00:: 11184927 1 0 -molotov_cocktail%1:06:00:: 03781055 1 0 -molt%1:22:00:: 13516842 1 0 -molt%2:29:00:: 00009147 1 0 -molten%5:00:00:melted:00 01506526 1 3 -molter%1:05:00:: 01318660 1 0 -molting%1:22:00:: 13516842 1 0 -molto%4:02:00:: 00403175 1 0 -molucca_balm%1:20:00:: 12857779 1 0 -moluccas%1:15:00:: 08909233 1 0 -molucella%1:20:00:: 12857594 1 0 -molucella_laevis%1:20:00:: 12857779 1 0 -molva%1:05:00:: 02525012 1 0 -molva_molva%1:05:00:: 02525120 1 0 -molybdenite%1:27:00:: 14682469 1 0 -molybdenum%1:27:00:: 14645661 1 0 -molybdenum_steel%1:27:00:: 14953674 1 0 -mom%1:18:00:: 10278128 1 0 -mombasa%1:15:00:: 08928933 1 0 -mombin%1:13:00:: 07765517 2 0 -mombin%1:20:00:: 12766043 1 0 -mombin_tree%1:20:00:: 12766043 1 0 -moment%1:07:00:: 05170574 4 1 -moment%1:09:00:: 06022509 6 0 -moment%1:19:00:: 11482985 5 0 -moment%1:28:00:: 15244650 1 86 -moment%1:28:01:: 15246853 2 73 -moment%1:28:02:: 15120050 3 1 -moment_magnitude_scale%1:24:00:: 13852083 1 0 -moment_of_a_couple%1:19:00:: 11483179 1 0 -moment_of_a_magnet%1:19:00:: 11483829 1 0 -moment_of_inertia%1:19:00:: 11468973 1 0 -moment_of_truth%1:28:00:: 15245144 2 0 -moment_of_truth%1:28:01:: 15245244 1 0 -momentaneous%5:00:00:short:02 01443097 1 0 -momentarily%4:02:00:: 00034403 2 1 -momentarily%4:02:02:: 00092814 1 3 -momentary%5:00:00:short:02 01443097 1 3 -momently%4:02:00:: 00034403 2 0 -momently%4:02:02:: 00092814 1 0 -momentous%5:00:00:significant:00 02161982 1 1 -momentously%4:02:00:: 00403249 1 0 -momentousness%1:07:00:: 05169412 1 0 -momentum%1:07:00:: 05035820 1 7 -momentum%1:07:01:: 05029137 2 2 -momism%1:04:00:: 00820721 1 0 -momma%1:18:00:: 10278128 1 0 -mommsen%1:18:00:: 11185044 1 0 -mommy%1:18:00:: 10278128 1 2 -momordica%1:20:00:: 12167282 1 0 -momordica_balsamina%1:20:00:: 12167436 1 0 -momordica_charantia%1:20:00:: 12167602 1 0 -momos%1:18:00:: 09565914 1 0 -momot%1:05:00:: 01830915 1 0 -momotidae%1:05:00:: 01830623 1 0 -momotus%1:05:00:: 01830799 1 0 -momus%1:18:00:: 09565914 1 0 -mon%1:10:00:: 06937441 3 0 -mon%1:18:00:: 10327696 2 0 -mon%1:28:00:: 15163979 1 0 -mon-khmer%1:10:00:: 06936948 1 2 -mona%1:15:00:: 08895928 1 0 -monacan%1:18:00:: 10327987 1 0 -monacan%3:01:00:: 02978155 1 0 -monaco%1:15:00:: 08967868 1 0 -monaco-ville%1:15:00:: 08968125 1 0 -monad%1:05:00:: 01326751 3 0 -monad%1:23:00:: 13742840 2 0 -monad%1:27:00:: 14621080 1 0 -monadic_operation%1:22:00:: 13517080 1 0 -monal%1:05:00:: 01805321 1 0 -monandrous%5:00:00:monogamous:00 01544580 1 0 -monandry%1:26:00:: 13965888 1 0 -monarch%1:05:00:: 02279972 2 0 -monarch%1:18:00:: 10628644 1 2 -monarch_butterfly%1:05:00:: 02279972 1 0 -monarchal%5:00:00:noble:02 01591895 1 0 -monarchal%5:00:00:undemocratic:00 00718339 2 0 -monarchic%5:00:00:undemocratic:00 00718339 1 0 -monarchical%5:00:00:noble:02 01591895 1 0 -monarchical%5:00:00:undemocratic:00 00718339 2 0 -monarchism%1:09:00:: 06219300 1 0 -monarchist%1:18:00:: 10327824 1 0 -monarchy%1:14:00:: 08363812 1 0 -monarda%1:20:00:: 12858150 1 0 -monarda_citriodora%1:20:00:: 12858987 1 0 -monarda_clinopodia%1:20:00:: 12859272 1 0 -monarda_didyma%1:20:00:: 12858397 1 0 -monarda_fistulosa%1:20:00:: 12858871 1 0 -monarda_pectinata%1:20:00:: 12859153 1 0 -monarda_punctata%1:20:00:: 12858618 1 0 -monardella%1:20:00:: 12859488 1 0 -monardella_lanceolata%1:20:00:: 12859679 1 0 -monario%1:10:00:: 06897129 1 0 -monas%1:23:00:: 13742840 1 0 -monastery%1:06:00:: 03781244 1 1 -monastic%1:18:00:: 10112129 1 0 -monastic%5:00:00:unworldly:00 02578894 1 5 -monastic_habit%1:06:00:: 03781467 1 0 -monastic_order%1:14:00:: 08147794 1 0 -monastical%5:00:00:unworldly:00 02578894 1 0 -monasticism%1:07:00:: 04882214 1 0 -monatomic%3:01:00:: 02884766 1 0 -monaul%1:05:00:: 01805321 1 0 -monaural%3:00:00:: 00240842 1 1 -monaurally%4:02:00:: 00208111 1 0 -monazite%1:27:00:: 14682642 1 0 -monday%1:28:00:: 15163979 1 28 -mondrian%1:18:00:: 11185175 1 0 -monecious%3:00:00:: 01542865 1 0 -monegasque%1:18:00:: 10327987 1 0 -monegasque%3:01:00:: 02978155 1 0 -monel_metal%1:27:00:: 14719291 1 0 -monell_metal%1:27:00:: 14719291 1 0 -monera%1:05:00:: 01341876 1 0 -moneran%1:05:00:: 01342269 1 0 -moneran%3:01:00:: 02834164 1 0 -moneron%1:05:00:: 01342269 1 0 -moneses%1:20:00:: 12257920 1 0 -moneses_uniflora%1:20:00:: 12258101 1 0 -monestrous%5:00:00:estrous:00 02138034 1 0 -monet%1:18:00:: 11185392 1 0 -monetarism%1:09:00:: 05995898 1 0 -monetarist%1:18:00:: 10328123 1 0 -monetary%3:01:00:: 02775934 1 0 -monetary_fund%1:21:00:: 13358549 1 0 -monetary_resource%1:21:00:: 13356112 1 0 -monetary_standard%1:21:00:: 13373214 1 0 -monetary_system%1:21:00:: 13372961 1 0 -monetary_unit%1:23:00:: 13604718 1 0 -monetary_value%1:07:00:: 05145118 1 0 -monetisation%1:04:01:: 00154689 1 0 -monetise%2:41:00:: 02481231 1 0 -monetization%1:04:01:: 00154689 1 0 -monetize%2:41:00:: 02481231 1 0 -money%1:21:00:: 13384557 1 77 -money%1:21:01:: 13384877 3 0 -money%1:21:02:: 13250542 2 15 -money-spinner%1:09:00:: 05910577 1 0 -money_belt%1:06:00:: 03781683 1 0 -money_box%1:06:00:: 02976939 2 0 -money_box%1:06:01:: 04139859 1 0 -money_changer%1:18:00:: 10069120 1 0 -money_cowrie%1:05:00:: 01953594 1 0 -money_dealer%1:18:00:: 09624980 1 0 -money_handler%1:18:00:: 09624980 1 0 -money_laundering%1:04:00:: 01051221 1 0 -money_market%1:14:00:: 08073601 1 0 -money_order%1:21:00:: 13380820 1 1 -money_plant%1:20:00:: 11891541 1 0 -money_supply%1:21:00:: 13357178 1 0 -moneybag%1:06:00:: 03781594 1 0 -moneyed%3:00:00:: 02026055 1 0 -moneyed%5:00:00:rich:00 02022167 2 0 -moneyer%1:18:00:: 09934921 1 0 -moneygrubber%1:18:00:: 10328328 1 0 -moneylender%1:18:00:: 10742384 1 0 -moneyless%3:00:00:: 02026197 1 0 -moneyless%5:00:00:poor:00 02023914 2 0 -moneymaker%1:09:00:: 05910577 2 0 -moneymaker%1:18:00:: 10328437 1 1 -moneymaking%1:04:00:: 00078393 1 1 -moneymaking%5:00:00:commercial:00 00483816 2 0 -moneymaking%5:00:00:profitable:00 01871774 1 0 -moneyman%1:18:00:: 10090020 1 0 -moneywort%1:20:00:: 12095647 1 0 -monger%1:18:00:: 10720453 1 0 -monger%2:40:00:: 02302817 1 0 -mongo%1:23:00:: 13708748 1 0 -mongol%1:18:00:: 09644152 1 0 -mongol%3:01:00:: 03087088 1 0 -mongol_dynasty%1:14:00:: 08160146 1 0 -mongol_tatar%1:18:00:: 09644657 1 0 -mongolia%1:15:00:: 08968879 1 0 -mongolia%1:15:01:: 08968677 2 0 -mongolian%1:10:00:: 06928839 2 0 -mongolian%1:18:00:: 09644152 1 0 -mongolian%3:01:01:: 03087088 2 0 -mongolian%3:01:02:: 03087424 1 0 -mongolian_monetary_unit%1:23:00:: 13708500 1 0 -mongolian_people's_republic%1:15:00:: 08968879 1 0 -mongolian_race%1:18:00:: 09643421 1 0 -mongolianism%1:26:00:: 14159623 1 0 -mongolic%1:10:00:: 06928839 1 0 -mongolic_language%1:10:00:: 06928839 1 0 -mongolism%1:26:00:: 14159623 1 0 -mongoloid%1:18:00:: 10328560 2 0 -mongoloid%1:18:01:: 10328696 1 0 -mongoloid%3:01:00:: 03087579 3 0 -mongoloid%3:01:01:: 03087685 2 0 -mongoloid%3:01:02:: 03087909 1 0 -mongoloid_race%1:18:00:: 09643421 1 0 -mongoose%1:05:00:: 02137549 1 0 -mongrel%1:05:00:: 02084861 2 0 -mongrel%1:06:00:: 02804772 1 0 -mongrelise%2:35:00:: 01429663 1 0 -mongrelize%2:35:00:: 01429663 1 0 -monic_polynomial%1:09:00:: 05862410 1 3 -monica_seles%1:18:00:: 11291451 1 0 -monied%3:00:00:: 02026055 1 0 -moniker%1:10:00:: 06337693 1 0 -monilia%1:20:00:: 13079073 1 0 -monilia_albicans%1:20:00:: 13079567 1 1 -monilia_disease%1:26:00:: 14181713 1 0 -moniliaceae%1:20:00:: 13078133 1 0 -moniliales%1:20:00:: 13077479 1 0 -moniliasis%1:26:00:: 14181713 1 0 -monish%2:32:00:: 00870577 2 0 -monish%2:32:01:: 00871195 1 0 -monism%1:09:00:: 05964643 1 0 -monistat%1:06:00:: 03758720 1 0 -monistic%3:01:00:: 02947019 1 0 -monition%1:10:00:: 06714420 1 0 -monition%1:10:01:: 06672297 2 0 -monition%1:10:02:: 06558434 3 0 -monitor%1:05:00:: 01694709 7 0 -monitor%1:06:00:: 03781787 6 0 -monitor%1:06:01:: 03782006 5 0 -monitor%1:06:02:: 03782190 4 0 -monitor%1:06:03:: 03782430 3 0 -monitor%1:18:00:: 09771855 2 0 -monitor%1:18:01:: 10478960 1 0 -monitor%2:39:00:: 02163301 1 9 -monitor%2:39:01:: 02163626 2 0 -monitor_lizard%1:05:00:: 01694709 1 0 -monitor_program%1:10:00:: 06576539 1 0 -monitoring%1:04:00:: 00880046 1 4 -monitoring_device%1:06:00:: 03782190 1 0 -monitoring_program%1:10:00:: 06576539 1 0 -monitory%5:00:00:dissuasive:00 01771124 1 0 -monitrice%1:18:00:: 10241024 1 0 -monk%1:18:00:: 10112129 1 5 -monk%1:18:01:: 11185500 2 0 -monk's_cloth%1:06:00:: 03782929 1 0 -monkey%1:05:00:: 02484322 1 8 -monkey%1:18:00:: 10200047 2 0 -monkey%2:35:00:: 01473346 2 0 -monkey%2:35:12:: 01586018 1 0 -monkey-bread_tree%1:20:00:: 12189987 1 0 -monkey-wrench%1:06:00:: 03782794 1 0 -monkey_around%2:35:00:: 01473346 1 0 -monkey_bread%1:13:00:: 07770439 1 0 -monkey_bridge%1:06:00:: 03782558 1 0 -monkey_bridge%1:06:01:: 03373752 2 0 -monkey_business%1:04:00:: 00736894 1 0 -monkey_dog%1:05:00:: 02110627 1 0 -monkey_jacket%1:06:00:: 03751269 1 0 -monkey_ladder%1:06:00:: 03782689 1 0 -monkey_nut%1:13:00:: 07737745 1 0 -monkey_pinscher%1:05:00:: 02110627 1 0 -monkey_pod%1:20:00:: 11759853 1 0 -monkey_puzzle%1:20:00:: 11646167 1 0 -monkey_wrench%1:06:00:: 03782794 1 0 -monkeypod%1:20:00:: 11759853 1 0 -monkfish%1:05:00:: 02548247 2 0 -monkfish%1:05:01:: 01495493 3 0 -monkfish%1:13:00:: 07779747 1 0 -monkish%5:00:00:nonindulgent:00 01300961 1 1 -monkshood%1:20:00:: 11723227 1 0 -monmouth_court_house%1:04:00:: 01288272 1 0 -monnet%1:18:00:: 11185680 1 0 -mono%1:26:00:: 14135277 1 0 -mono%5:00:00:monaural:00 00241079 1 0 -mono-iodotyrosine%1:27:00:: 14834807 1 5 -monoamine%1:27:00:: 14953813 1 0 -monoamine_neurotransmitter%1:27:00:: 14807737 1 0 -monoamine_oxidase%1:27:00:: 14953968 1 0 -monoamine_oxidase_inhibitor%1:06:00:: 03783017 1 0 -monoatomic%3:01:00:: 02884766 1 0 -monobasic_acid%1:27:00:: 14611031 1 0 -monoblast%1:08:00:: 05453412 1 0 -monoblastic_leukaemia%1:26:00:: 14244726 1 0 -monoblastic_leukemia%1:26:00:: 14244726 1 0 -monocanthidae%1:05:00:: 02653655 1 0 -monocanthus%1:05:00:: 02653965 1 0 -monocarboxylic%3:01:00:: 02765640 1 0 -monocarp%1:20:00:: 11686780 1 0 -monocarpic%3:01:00:: 03039556 1 0 -monocarpic_plant%1:20:00:: 11686780 1 0 -monocarpous_plant%1:20:00:: 11686780 1 0 -monochamus%1:05:00:: 02168876 1 0 -monochromacy%1:26:00:: 14155274 1 0 -monochromasy%1:26:00:: 14155274 1 0 -monochromat%1:18:00:: 09625213 1 0 -monochromatic%3:00:00:: 00366355 2 0 -monochromatic%3:01:00:: 03040525 1 0 -monochromatic%5:00:00:colored:00 00398816 3 0 -monochromatic_vision%1:26:00:: 14155274 1 0 -monochromatism%1:26:00:: 14155274 1 0 -monochrome%1:06:00:: 02846399 2 0 -monochrome%1:06:01:: 03783304 1 1 -monochrome%5:00:00:colored:00 00398816 1 0 -monochromia%1:26:00:: 14155274 1 0 -monochromic%5:00:00:colored:00 00398816 1 0 -monochromous%5:00:00:colored:00 00398816 1 0 -monocle%1:06:00:: 03783430 1 5 -monocled%5:00:00:adorned:00 00056943 1 0 -monoclinal%5:00:00:inclined:01 01235178 1 0 -monocline%1:17:00:: 09357447 1 0 -monoclinic%3:00:00:: 00366025 1 0 -monoclinous%3:00:00:: 01542489 1 0 -monoclonal%1:27:00:: 15029781 1 0 -monoclonal%3:01:00:: 02765730 1 0 -monoclonal_antibody%1:27:00:: 15029781 1 0 -monocot%1:20:00:: 11668117 1 0 -monocot_family%1:20:00:: 11555413 1 0 -monocot_genus%1:20:00:: 11556857 1 0 -monocotyledon%1:20:00:: 11668117 1 0 -monocotyledonae%1:20:00:: 11667562 1 0 -monocotyledones%1:20:00:: 11667562 1 0 -monocotyledonous%3:00:00:: 00753922 1 0 -monocracy%1:14:00:: 08440630 1 0 -monocular_vision%1:09:00:: 05656803 1 0 -monoculture%1:04:00:: 00918055 1 0 -monocycle%1:06:00:: 04509417 1 0 -monocyte%1:08:00:: 05453267 1 0 -monocytic_leukaemia%1:26:00:: 14244726 1 0 -monocytic_leukemia%1:26:00:: 14244726 1 0 -monocytosis%1:26:00:: 14268084 1 0 -monod%1:18:00:: 11185816 1 0 -monodic%5:00:00:monophonic:00 01544059 1 0 -monodical%5:00:00:monophonic:00 01544059 1 0 -monodon%1:05:00:: 02072355 1 0 -monodon_monoceros%1:05:00:: 02072493 1 0 -monodontidae%1:05:00:: 02072209 1 0 -monody%1:10:00:: 07024705 1 0 -monoecious%3:00:00:: 01542865 1 0 -monoestrous%5:00:00:estrous:00 02138034 1 0 -monofocal_iol%1:06:00:: 03783575 1 0 -monofocal_lens_implant%1:06:00:: 03783575 1 0 -monogamist%1:18:00:: 10328782 1 0 -monogamous%3:00:00:: 01544347 1 0 -monogamousness%1:26:00:: 13966007 1 0 -monogamy%1:26:00:: 13966007 1 0 -monogenesis%1:22:00:: 13517199 1 0 -monogenic%5:00:00:inheritable:00 01314863 1 0 -monogenic_disease%1:26:00:: 14074877 1 0 -monogenic_disorder%1:26:00:: 14074877 1 0 -monogram%1:10:00:: 06824041 1 0 -monograph%1:10:00:: 06409448 1 1 -monogynic%5:00:00:monogamous:00 01544688 1 0 -monogynist%1:18:00:: 10328782 1 0 -monogynous%5:00:00:monogamous:00 01544688 1 0 -monogyny%1:26:00:: 13966201 1 0 -monohybrid%1:05:00:: 01327909 1 0 -monohybrid_cross%1:04:00:: 00850986 1 0 -monohydrate%1:27:00:: 14954152 1 0 -monoicous%3:00:00:: 01542865 1 0 -monolatry%1:04:00:: 01046664 1 0 -monolingual%1:18:00:: 10328941 1 0 -monolingual%3:00:00:: 01545427 1 0 -monolingually%4:02:00:: 00209754 1 0 -monolith%1:06:00:: 03783755 1 0 -monolithic%5:00:00:large:00 01389170 1 0 -monolithic%5:00:00:undiversified:00 00784037 2 0 -monologist%1:18:00:: 10329035 1 1 -monologue%1:10:00:: 07160752 1 3 -monologue%1:10:01:: 07011387 3 0 -monologue%1:10:02:: 07156819 2 0 -monologuise%2:32:00:: 00964478 1 0 -monologuize%2:32:00:: 00964478 1 0 -monomania%1:16:00:: 09182524 1 0 -monomaniac%1:18:00:: 10329143 1 0 -monomaniacal%5:00:00:neurotic:00 01584724 1 0 -monomer%1:27:00:: 14682963 1 1 -monometallic%3:01:00:: 02905356 1 0 -monomorium%1:05:00:: 02219901 1 0 -monomorium_minimum%1:05:00:: 02220225 1 0 -monomorium_pharaonis%1:05:00:: 02220055 1 0 -monomorphemic%3:01:00:: 02936627 1 0 -mononeuropathy%1:26:00:: 14208988 1 0 -monongahela%1:17:00:: 09357580 1 0 -monongahela_river%1:17:00:: 09357580 1 0 -mononuclear%3:00:00:: 00241397 1 1 -mononuclear_phagocyte_system%1:08:00:: 05461610 1 0 -mononucleate%3:00:00:: 00241397 1 0 -mononucleosis%1:26:00:: 14135277 1 0 -mononychus_olecranus%1:05:00:: 01718808 1 0 -monophonic%3:00:00:: 01543772 2 0 -monophonic%5:00:00:monaural:00 00241079 1 1 -monophonic_music%1:10:00:: 07024705 1 0 -monophony%1:10:00:: 07024705 1 0 -monophthalmos%1:18:00:: 10819533 1 0 -monophysite%1:18:00:: 10329251 1 0 -monophysite%3:01:00:: 02765825 1 0 -monophysitic%3:01:00:: 02765825 1 0 -monophysitism%1:09:00:: 06189776 1 0 -monoplane%1:06:00:: 03783873 1 0 -monoplane_flying_fish%1:05:00:: 02550655 1 0 -monoplegia%1:26:00:: 14350023 1 0 -monoploid%3:00:00:: 01147433 1 0 -monopolisation%1:04:00:: 01128806 1 0 -monopolise%2:40:00:: 02204242 2 0 -monopolise%2:41:00:: 02442546 1 0 -monopoliser%1:18:00:: 10329337 1 0 -monopolist%1:18:00:: 10329337 1 0 -monopolistic%5:00:00:noncompetitive:00 00513559 1 0 -monopolization%1:04:00:: 01128806 1 1 -monopolize%2:40:00:: 02204242 2 2 -monopolize%2:41:00:: 02442546 1 2 -monopolizer%1:18:00:: 10329337 1 0 -monopoly%1:04:00:: 00505238 3 0 -monopoly%1:26:01:: 14444326 1 5 -monopoly%1:26:02:: 14444114 2 2 -monopoly_board%1:06:00:: 03783959 1 0 -monopsony%1:26:00:: 14444644 1 0 -monopteral%5:00:00:peripteral:00 00139990 1 0 -monorail%1:06:00:: 03784053 1 0 -monorchidism%1:26:00:: 14092456 1 0 -monorchism%1:26:00:: 14092456 1 0 -monosaccharide%1:27:00:: 14954284 1 0 -monosaccharose%1:27:00:: 14954284 1 0 -monosemous%5:00:00:unambiguous:00 00103953 1 0 -monosemy%1:07:00:: 04820908 1 0 -monosodium_glutamate%1:13:00:: 07828378 1 0 -monosomy%1:26:00:: 14504405 1 0 -monospaced_font%1:10:00:: 06825996 1 0 -monostotic_fibrous_dysplasia%1:26:00:: 14366633 1 0 -monosyllabic%5:00:00:syllabic:00 02289018 1 0 -monosyllabic_word%1:10:00:: 06294309 1 0 -monosyllabically%4:02:00:: 00143946 1 0 -monosyllable%1:10:00:: 06294309 1 2 -monotheism%1:09:00:: 06224136 1 0 -monotheist%1:18:00:: 10329579 1 0 -monotheistic%3:00:00:: 01781243 1 0 -monothelitism%1:09:00:: 06190060 1 0 -monotone%1:10:00:: 07084560 1 1 -monotone%1:10:01:: 07084747 2 0 -monotone%3:00:04:: 01547220 1 2 -monotone%5:00:00:unmodulated:00 01541828 2 0 -monotonic%3:00:00:: 01547220 1 0 -monotonic%5:00:00:unmodulated:00 01541828 2 0 -monotonous%5:00:00:dull:03 00807817 1 2 -monotonous%5:00:00:unmodulated:00 01541828 2 0 -monotonously%4:02:00:: 00403325 1 0 -monotony%1:07:00:: 04740326 1 3 -monotony%1:07:01:: 04739535 2 0 -monotremata%1:05:00:: 01871699 1 0 -monotreme%1:05:00:: 01871875 1 0 -monotropa%1:20:00:: 12258663 1 0 -monotropa_hypopithys%1:20:00:: 12259316 1 0 -monotropa_uniflora%1:20:00:: 12258885 1 0 -monotropaceae%1:20:00:: 12258380 1 0 -monotype%1:06:00:: 03784139 2 0 -monotype%1:14:00:: 08109772 1 0 -monotypic%3:01:00:: 02765965 1 0 -monounsaturated%5:00:00:unsaturated:00 00757634 1 0 -monounsaturated_fatty_acid%1:27:00:: 14741474 1 0 -monovalent%3:00:01:: 01546222 2 0 -monovalent%3:00:02:: 01547831 1 0 -monovular%3:00:00:: 00292448 1 0 -monoxide%1:27:00:: 14954601 1 0 -monozygotic%3:01:00:: 02933692 1 0 -monozygotic_twin%1:18:00:: 10197182 1 0 -monozygous_twin%1:18:00:: 10197182 1 0 -monro's_foramen%1:08:00:: 05545611 1 0 -monroe%1:15:00:: 09091668 4 0 -monroe%1:15:01:: 09101639 3 0 -monroe%1:18:00:: 11186042 2 0 -monroe%1:18:01:: 11186207 1 0 -monroe_doctrine%1:10:00:: 06662366 1 6 -monrovia%1:15:00:: 08959495 1 0 -mons%1:08:00:: 05522283 1 0 -mons_pubis%1:08:00:: 05522283 1 0 -mons_veneris%1:08:00:: 05522283 1 0 -monsieur%1:18:00:: 10329675 1 1 -monsignor%1:18:00:: 10329789 1 0 -monsoon%1:19:00:: 11484570 1 2 -monsoon%1:19:01:: 11484741 3 0 -monsoon%1:28:00:: 15239033 2 0 -monster%1:05:00:: 01460108 5 0 -monster%1:18:00:: 10329945 4 0 -monster%1:18:01:: 10109443 3 1 -monster%1:18:02:: 09491966 1 5 -monster%1:18:03:: 10128909 2 1 -monstera%1:13:00:: 07746749 2 0 -monstera%1:20:00:: 11789438 1 0 -monstera_deliciosa%1:20:00:: 11789589 1 0 -monstrance%1:06:00:: 03784270 2 0 -monstrance%1:10:00:: 06648046 1 0 -monstrosity%1:11:00:: 07367231 2 1 -monstrosity%1:18:00:: 10109443 1 1 -monstrous%5:00:00:evil:00 01131454 2 3 -monstrous%5:00:00:large:00 01389738 1 5 -monstrous%5:00:00:ugly:00 00221627 3 1 -monstrously%4:02:00:: 00351542 3 0 -monstrously%4:02:02:: 00355747 2 0 -monstrously%4:02:04:: 00356765 1 0 -mont_blanc%1:17:00:: 09357847 1 0 -montage%1:06:00:: 03067912 1 0 -montagu%1:18:00:: 11186356 1 0 -montagu's_harrier%1:05:00:: 01610100 1 0 -montaigne%1:18:00:: 11186511 1 0 -montan_wax%1:27:00:: 14954733 1 0 -montana%1:15:00:: 09108164 1 0 -montanan%1:18:00:: 09744075 1 0 -montane%3:01:00:: 02890874 1 0 -monte%1:04:00:: 00493031 1 0 -monte_bianco%1:17:00:: 09357847 1 0 -monte_carlo%1:15:00:: 08968225 1 0 -montego_bay%1:15:00:: 08754388 1 0 -montenegro%1:15:00:: 08817235 1 0 -monterey%1:15:00:: 09064080 1 0 -monterey_bay%1:17:00:: 09358096 1 0 -monterey_cypress%1:20:00:: 11632167 1 0 -monterey_pine%1:20:00:: 11617090 1 0 -monterrey%1:15:00:: 08744509 1 0 -montespan%1:18:00:: 11186685 1 0 -montesquieu%1:18:00:: 11186911 1 0 -montessori%1:18:00:: 11187154 1 0 -monteverdi%1:18:00:: 11187364 1 0 -montevideo%1:15:00:: 09160571 1 0 -montez%1:18:00:: 11187471 1 0 -montezuma%1:20:00:: 12191240 1 0 -montezuma's_revenge%1:26:00:: 14372399 1 0 -montezuma_cypress%1:20:00:: 11642430 1 0 -montezuma_ii%1:18:00:: 11187601 1 0 -montfort%1:18:00:: 11187754 1 0 -montgolfier%1:18:00:: 11187930 2 0 -montgolfier%1:18:01:: 11188123 1 0 -montgomery%1:15:00:: 09053801 3 0 -montgomery%1:18:00:: 11188316 2 0 -montgomery%1:18:01:: 11188613 1 0 -montgomery's_tubercle%1:08:00:: 05328695 1 0 -montgomery_ward%1:18:00:: 11373897 1 0 -month%1:28:00:: 15206296 2 37 -month%1:28:01:: 15209413 1 70 -month_by_month%4:02:00:: 00178213 1 1 -month_of_sundays%1:28:00:: 15243202 1 0 -monthlong%5:00:00:long:02 01441418 1 0 -monthly%1:10:00:: 06594505 1 0 -monthly%4:02:00:: 00254978 1 0 -monthly%5:00:00:periodic:00 01969707 1 0 -montia%1:20:00:: 11860801 1 0 -montia_chamissoi%1:20:00:: 11861641 1 0 -montia_cordifolia%1:20:00:: 11861238 1 0 -montia_lamprosperma%1:20:00:: 11861487 1 0 -montia_perfoliata%1:20:00:: 11861853 1 0 -montmartre%1:15:00:: 08933287 1 0 -montpelier%1:15:00:: 09148259 1 0 -montrachet%1:13:00:: 07894703 1 0 -montreal%1:15:00:: 08829533 1 3 -montserrat%1:15:00:: 08711300 1 0 -montserratian%1:18:00:: 09723228 1 0 -montserratian%3:01:00:: 03088038 1 0 -monument%1:06:00:: 03743902 1 7 -monument%1:06:03:: 04076713 3 0 -monument%1:15:00:: 08600443 2 0 -monumental%3:01:00:: 02864165 1 1 -monumental%5:00:00:large:00 01389170 3 0 -monumental%5:00:00:significant:00 02163468 2 0 -monumentalise%2:31:00:: 00612454 1 0 -monumentalize%2:31:00:: 00612454 1 0 -moo%1:11:00:: 07386821 1 0 -moo%2:32:00:: 01055018 1 1 -moo-cow%1:05:00:: 02403454 1 0 -moo_goo_gai_pan%1:13:00:: 07861983 1 0 -mooch%1:18:00:: 10330189 1 0 -mooch%2:40:00:: 02270404 1 0 -moocher%1:18:00:: 10330189 1 0 -mood%1:12:00:: 07551052 1 14 -mood%1:24:00:: 13801424 3 0 -mood%1:26:00:: 14524661 2 6 -moodily%4:02:00:: 00403513 1 0 -moodiness%1:07:00:: 04628632 2 0 -moodiness%1:12:00:: 07552252 1 0 -moody%1:18:00:: 11188742 2 0 -moody%1:18:01:: 11188852 1 0 -moody%5:00:00:emotional:00 00856325 2 0 -moody%5:00:00:ill-natured:00 01137378 1 0 -moolah%1:21:00:: 13385216 1 0 -moon%1:17:00:: 09358226 6 0 -moon%1:17:01:: 09358358 1 30 -moon%1:17:02:: 09358550 2 1 -moon%1:18:00:: 11189054 5 0 -moon%1:19:00:: 11484975 4 0 -moon%1:28:00:: 15207872 3 0 -moon%2:39:00:: 02141840 3 0 -moon%2:41:00:: 02417908 2 0 -moon%2:41:01:: 02418205 1 0 -moon-curser%1:18:00:: 10615334 1 0 -moon-faced%5:00:00:faced:00 00235823 1 0 -moon-ray%1:19:00:: 11484861 1 0 -moon-round%5:00:00:round:00 02042503 1 1 -moon-splashed%5:00:00:covered:00 01696502 1 1 -moon-worship%1:04:00:: 01046888 1 0 -moon_about%2:37:00:: 01805247 1 0 -moon_around%2:37:00:: 01805247 2 0 -moon_around%2:41:00:: 02417908 1 0 -moon_blindness%1:26:00:: 14274451 2 0 -moon_blindness%1:26:01:: 14554853 1 0 -moon_carrot%1:20:00:: 12944390 1 0 -moon_curser%1:18:00:: 10615334 1 0 -moon_daisy%1:20:00:: 11989869 1 0 -moon_on%2:41:00:: 02417908 1 1 -moon_ray%1:19:00:: 11484861 1 0 -moon_shell%1:05:00:: 01947997 1 0 -moon_shot%1:04:00:: 00103737 1 0 -moon_trefoil%1:20:00:: 12548564 1 0 -moonbeam%1:19:00:: 11484861 1 0 -mooneye%1:26:00:: 14274451 1 0 -moonfish%1:05:01:: 02545841 2 0 -moonfish%1:05:02:: 02578233 1 0 -moonflower%1:20:00:: 12827537 1 0 -moonie%1:18:00:: 10330439 1 0 -moonily%4:02:00:: 00322757 1 0 -moonless%3:00:00:: 00278131 1 0 -moonlight%1:19:00:: 11484975 1 5 -moonlight%2:41:00:: 02420606 1 0 -moonlighter%1:18:00:: 10330593 1 0 -moonlike%5:00:00:round:00 02042503 1 0 -moonlit%3:00:00:: 00278006 1 1 -moonseed%1:20:00:: 11713164 1 0 -moonseed_family%1:20:00:: 11712827 1 0 -moonshell%1:05:00:: 01947997 1 0 -moonshine%1:13:00:: 07902520 2 0 -moonshine%1:19:00:: 11484975 1 0 -moonshine%2:30:00:: 00228858 1 0 -moonshiner%1:18:00:: 09866922 1 0 -moonstone%1:27:00:: 14954822 1 0 -moonstruck%5:00:00:insane:00 02076234 1 0 -moonwalk%1:04:00:: 00292269 2 0 -moonwalk%1:04:01:: 00293125 1 0 -moonwort%1:20:00:: 12961112 1 0 -moony%3:00:02:: 00278006 1 0 -moony%5:00:00:inattentive:00 00165585 2 0 -moor%1:17:00:: 09358751 2 0 -moor%1:18:00:: 09723361 1 0 -moor%2:35:00:: 01305099 3 0 -moor%2:35:01:: 01305542 1 0 -moor%2:35:03:: 01305361 2 0 -moor-bird%1:05:00:: 01796519 1 0 -moor_berry%1:20:00:: 12248780 1 0 -moorage%1:04:00:: 00052146 3 0 -moorage%1:15:00:: 08640111 2 0 -moorage%1:21:00:: 13322867 1 0 -moorbird%1:05:00:: 01796519 1 0 -moorcock%1:05:00:: 01796800 1 0 -moore%1:18:00:: 11189274 6 0 -moore%1:18:01:: 11189432 5 0 -moore%1:18:02:: 11189579 4 0 -moore%1:18:03:: 11189709 3 0 -moore%1:18:04:: 11189829 2 0 -moore%1:18:05:: 11190024 1 0 -moorfowl%1:05:00:: 01796519 1 0 -moorgame%1:05:00:: 01796519 1 0 -moorhen%1:05:01:: 02016816 1 0 -moorhen%1:05:02:: 01796729 2 0 -mooring%1:06:00:: 03784475 2 0 -mooring%1:15:00:: 08640111 1 0 -mooring_anchor%1:06:00:: 03784666 1 0 -mooring_line%1:06:00:: 03784475 1 0 -mooring_mast%1:06:00:: 03784793 1 0 -mooring_tower%1:06:00:: 03784793 1 0 -moorish%1:09:00:: 05843687 1 0 -moorish%3:01:00:: 03088220 1 0 -moorish_arch%1:06:00:: 03784896 1 0 -moorish_architecture%1:09:00:: 05843687 1 0 -moorland%1:17:00:: 09358751 1 0 -moorwort%1:20:00:: 12229651 1 0 -moose%1:05:00:: 02432983 1 0 -moose-wood%1:20:01:: 12347639 2 0 -moose-wood%1:20:02:: 12753762 1 0 -moosewood%1:20:01:: 12347639 2 0 -moosewood%1:20:02:: 12753762 1 0 -moot%1:04:00:: 01183638 1 0 -moot%2:32:00:: 00813044 1 0 -moot%5:00:00:controversial:00 00602117 2 0 -moot%5:00:00:irrelevant:00 01977025 1 0 -moot_court%1:14:00:: 08334319 1 0 -mop%1:06:00:: 04367480 1 0 -mop%2:29:00:: 00034758 2 0 -mop%2:35:01:: 01393339 1 2 -mop-headed%5:00:00:branchy:00 00614305 1 0 -mop_handle%1:06:00:: 03785142 1 0 -mop_up%1:04:00:: 00211110 1 0 -mop_up%2:30:00:: 00484892 3 0 -mop_up%2:33:00:: 01102997 2 0 -mop_up%2:35:00:: 01393339 1 2 -mopboard%1:06:00:: 02800354 1 0 -mope%1:18:00:: 09988703 1 0 -mope%2:37:00:: 01805247 2 0 -mope%2:38:00:: 01918669 1 0 -mope_around%2:38:00:: 01918669 1 0 -moped%1:06:00:: 03785016 1 0 -mopes%1:26:00:: 14405061 1 0 -mopper%1:18:00:: 10330722 1 0 -moppet%1:18:00:: 10330835 1 0 -mopping%1:04:00:: 00252020 1 0 -moquelumnan%1:10:00:: 06924790 1 0 -moquette%1:06:00:: 03785237 1 0 -moraceae%1:20:00:: 12398682 1 0 -moraceous%3:01:00:: 02766085 1 0 -moraine%1:17:00:: 09358907 1 0 -moral%1:10:00:: 06606044 1 2 -moral%3:00:00:: 01548193 1 8 -moral%5:00:00:mental:00 01780596 2 0 -moral_certainty%1:07:00:: 04755783 1 0 -moral_excellence%1:07:00:: 04847298 1 0 -moral_force%1:16:00:: 09179962 1 0 -moral_hazard%1:26:00:: 14542579 1 0 -moral_obligation%1:04:00:: 01130560 1 0 -moral_philosophy%1:09:00:: 06159473 1 0 -moral_principle%1:09:00:: 05956019 1 1 -moral_principle%1:10:00:: 06655683 2 0 -moral_sense%1:16:00:: 09184136 1 0 -morale%1:07:00:: 04625129 2 2 -morale%1:26:00:: 14374273 1 2 -morale_booster%1:04:00:: 01211489 1 0 -morale_builder%1:09:00:: 05693537 1 1 -morale_building%1:04:00:: 01211489 1 0 -moralisation%1:04:00:: 00265773 2 0 -moralisation%1:10:00:: 06742932 1 0 -moralise%2:30:00:: 00385047 3 0 -moralise%2:32:00:: 00828374 2 0 -moralise%2:32:01:: 00938621 1 0 -moralism%1:04:00:: 00876062 2 0 -moralism%1:10:00:: 07153641 1 0 -moralist%1:18:00:: 10330931 1 1 -moralist%1:18:01:: 10296444 2 0 -moralistic%5:00:00:moral:00 01548925 1 1 -morality%1:07:00:: 04846770 1 8 -morality%1:16:00:: 09183693 2 5 -morality_play%1:10:00:: 07018444 1 0 -moralization%1:04:00:: 00265773 2 0 -moralization%1:10:00:: 06742932 1 0 -moralize%2:30:00:: 00385047 3 0 -moralize%2:32:00:: 00828374 2 0 -moralize%2:32:01:: 00938621 1 0 -moralizing%1:10:00:: 06742932 1 0 -morally%4:02:00:: 00364477 2 0 -morally%4:02:01:: 00134203 1 2 -morals%1:16:00:: 09183693 1 2 -moranzanist_patriotic_front%1:14:00:: 08034028 1 0 -morass%1:17:00:: 09355850 1 0 -moratorium%1:26:00:: 14013751 2 0 -moratorium%1:28:00:: 15275466 1 0 -moravia%1:15:00:: 08758679 1 0 -moravian%3:01:00:: 03040635 1 0 -moray%1:05:00:: 02527271 1 0 -moray_eel%1:05:00:: 02527271 1 0 -moray_firth%1:17:00:: 09359031 1 0 -morbid%5:00:00:offensive:01 01626440 2 0 -morbid%5:00:00:unhealthy:00 01176246 3 0 -morbid%5:00:00:unwholesome:00 02559862 1 0 -morbidity%1:07:00:: 04790449 3 0 -morbidity%1:09:00:: 05699906 2 0 -morbidity%1:24:00:: 13827103 1 0 -morbidly%4:02:00:: 00403667 1 0 -morbidness%1:07:00:: 04790449 2 0 -morbidness%1:09:00:: 05699906 1 0 -morbific%5:00:00:unhealthful:00 01168434 1 0 -morbilli%1:26:00:: 14123044 1 0 -morbilliform%3:01:00:: 02766229 1 0 -morceau%1:10:00:: 06269674 1 0 -morchella%1:20:00:: 13031956 1 0 -morchella_angusticeps%1:20:00:: 13033577 1 0 -morchella_conica%1:20:00:: 13033577 1 0 -morchella_crassipes%1:20:00:: 13033879 1 0 -morchella_esculenta%1:20:00:: 13032381 1 0 -morchella_semilibera%1:20:00:: 13034062 1 0 -morchellaceae%1:20:00:: 13031690 1 0 -mordacious%5:00:00:dangerous:00 02060198 2 0 -mordacious%5:00:00:sarcastic:00 02079313 1 0 -mordaciously%4:02:00:: 00099228 1 0 -mordacity%1:07:00:: 04943367 1 0 -mordant%1:27:00:: 14955030 1 0 -mordant%5:00:00:destructive:00 00587376 2 0 -mordant%5:00:00:sarcastic:00 02079507 1 0 -mordecai_richler%1:18:00:: 11261698 1 0 -mordva%1:10:00:: 06957403 2 0 -mordva%1:18:00:: 09707400 1 0 -mordvin%1:10:00:: 06957403 2 0 -mordvin%1:18:00:: 09707400 1 0 -mordvinian%1:10:00:: 06957403 2 0 -mordvinian%1:18:00:: 09707400 1 0 -more%1:18:00:: 11190183 1 0 -more%3:00:01:: 01555133 1 134 -more%3:00:02:: 01556355 2 67 -more%4:02:00:: 00099341 1 374 -more%4:02:01:: 00099712 2 34 -more_and_more%4:02:00:: 00059854 1 8 -more_often_than_not%4:02:00:: 00155621 1 2 -more_or_less%4:02:00:: 00007015 1 11 -more_or_less%4:02:01:: 00036291 2 0 -more_than%3:00:00:: 01555133 1 0 -moreau_river%1:17:00:: 09359150 1 0 -moreen%1:06:00:: 03785361 1 0 -morel%1:20:00:: 13032115 1 0 -morelia_spilotes_variegatus%1:05:00:: 01743936 1 0 -morello%1:13:00:: 07758260 2 0 -morello%1:20:00:: 12643877 1 0 -moreover%4:02:00:: 00029367 1 37 -mores%1:09:00:: 05667951 1 1 -moresque%3:01:00:: 03088220 1 0 -moreton_bay%1:17:00:: 09359312 1 0 -moreton_bay_chestnut%1:20:00:: 12512674 1 0 -moreton_bay_pine%1:20:00:: 11646955 1 0 -moreton_bay_tulipwood%1:20:00:: 12744142 1 0 -morgan%1:05:00:: 02379329 6 0 -morgan%1:18:00:: 11190446 5 0 -morgan%1:18:01:: 11190592 4 0 -morgan%1:18:02:: 11190774 3 0 -morgan%1:18:03:: 11190954 2 0 -morgan%1:18:04:: 11191113 1 0 -morgan_city%1:15:00:: 09091774 1 0 -morgan_le_fay%1:18:00:: 09541661 1 0 -morganatic%5:00:00:legitimate:00 01406961 1 0 -morganite%1:27:00:: 14955776 1 0 -morgantown%1:15:00:: 09156666 1 0 -morgen%1:23:00:: 13614572 1 0 -morgue%1:06:00:: 03785499 1 1 -moribund%5:00:00:dying:00 00004171 2 0 -moribund%5:00:00:undynamic:00 00810764 1 0 -morion%1:06:00:: 03785721 1 0 -morlett's_crocodile%1:05:00:: 01697749 1 0 -morley%1:18:00:: 11191251 1 0 -mormon%1:18:00:: 11191475 1 0 -mormon%1:18:02:: 10248542 2 0 -mormon%3:01:00:: 02955806 1 0 -mormon_church%1:14:00:: 08089205 1 0 -mormon_cricket%1:05:00:: 02228697 1 0 -mormon_state%1:15:00:: 09147046 1 0 -mormon_tabernacle%1:06:00:: 04378842 1 0 -mormonism%1:09:00:: 06232166 1 0 -mormons%1:14:00:: 08089205 1 0 -morn%1:28:00:: 15165289 1 0 -mornay_sauce%1:13:00:: 07837630 1 0 -morning%1:10:00:: 06632671 2 2 -morning%1:11:00:: 07326108 4 0 -morning%1:28:00:: 15165289 1 86 -morning%1:28:01:: 15168790 3 0 -morning-after_pill%1:06:00:: 03785843 1 0 -morning-glory_family%1:20:00:: 12823164 1 0 -morning_coat%1:06:00:: 04368496 1 0 -morning_dress%1:06:00:: 03786096 2 0 -morning_dress%1:06:01:: 03786194 1 0 -morning_glory%1:20:00:: 12826516 1 1 -morning_prayer%1:28:00:: 15229677 1 0 -morning_room%1:06:00:: 03786313 1 0 -morning_sickness%1:26:00:: 14360156 1 0 -morning_star%1:17:00:: 09359471 1 0 -morning_time%1:28:00:: 15165289 1 0 -moro%1:18:00:: 09712967 1 0 -moro_islamic_liberation_front%1:14:00:: 08034299 1 0 -moro_reflex%1:04:00:: 00865284 1 0 -moroccan%1:18:00:: 09723564 1 0 -moroccan%3:01:00:: 03024420 1 3 -moroccan_dirham%1:23:00:: 13671527 1 0 -moroccan_monetary_unit%1:23:00:: 13671416 1 0 -morocco%1:15:00:: 08969291 1 3 -morocco%1:27:00:: 14763059 2 1 -moron%1:15:00:: 08713285 2 0 -moron%1:18:00:: 10197525 1 0 -morone%1:05:00:: 02566325 1 0 -morone_americana%1:05:00:: 02566489 1 0 -morone_interrupta%1:05:00:: 02566665 1 0 -moronic%5:00:00:retarded:00 01841054 1 0 -moronity%1:09:00:: 05646828 1 0 -morose%5:00:00:ill-natured:00 01137378 1 2 -morosely%4:02:00:: 00403807 1 1 -moroseness%1:07:00:: 04642057 2 0 -moroseness%1:12:00:: 07552367 1 0 -morosoph%1:18:00:: 10331098 1 0 -morph%2:30:00:: 00469030 2 0 -morph%2:30:01:: 00469187 1 0 -morphallaxis%1:22:00:: 13517385 1 0 -morphea%1:26:00:: 14565121 1 0 -morpheme%1:10:00:: 06306233 1 0 -morphemic%3:01:00:: 02936410 1 1 -morpheus%1:18:00:: 09499230 1 0 -morphia%1:06:00:: 03786417 1 0 -morphine%1:06:00:: 03786417 1 0 -morphogenesis%1:22:00:: 13517553 1 0 -morphologic%3:01:00:: 02949275 1 1 -morphologic%3:01:01:: 02949931 2 0 -morphologic%3:01:02:: 02949511 3 0 -morphological%3:01:00:: 02949275 3 0 -morphological%3:01:01:: 02949931 1 0 -morphological%3:01:02:: 02949511 2 0 -morphological_rule%1:10:00:: 07260493 1 0 -morphologically%4:02:00:: 00403911 1 0 -morphology%1:09:00:: 06078327 1 1 -morphology%1:09:01:: 06178042 2 0 -morphology%1:09:02:: 06177729 3 0 -morphology%1:09:03:: 06117855 4 0 -morphophoneme%1:10:00:: 07111510 1 0 -morphophonemic%3:01:00:: 02936859 1 4 -morphophonemic_system%1:10:00:: 07113080 1 3 -morphophonemics%1:09:00:: 06178660 1 9 -morphophysiology%1:09:00:: 06059709 1 0 -morrigan%1:18:00:: 09510643 1 0 -morrigu%1:18:00:: 09510643 1 0 -morris%1:18:00:: 11191653 4 0 -morris%1:18:01:: 11191848 3 0 -morris%1:18:02:: 11192067 2 0 -morris%1:18:03:: 11192195 1 0 -morris_chair%1:06:00:: 03786621 1 0 -morris_dance%1:04:00:: 00538368 1 0 -morris_dancer%1:18:00:: 10331167 1 0 -morris_dancing%1:04:00:: 00538368 1 0 -morrison%1:18:00:: 11192349 2 0 -morrison%1:18:01:: 11192533 1 0 -morrison_r._waite%1:18:00:: 11370314 1 0 -morrison_remick_waite%1:18:00:: 11370314 1 0 -morrison_waite%1:18:00:: 11370314 1 0 -morristown%1:15:00:: 09113611 1 0 -morrow%1:28:00:: 15156311 1 2 -morrow's_honeysuckle%1:20:00:: 12676370 1 0 -mors%1:18:00:: 09555653 1 0 -morse%1:10:00:: 06355459 1 1 -morse%1:18:00:: 11192666 2 0 -morse_code%1:10:00:: 06355459 1 0 -morsel%1:13:00:: 07579076 2 1 -morsel%1:23:00:: 13771034 1 1 -mortal%1:03:00:: 00007846 1 2 -mortal%3:00:00:: 01557614 1 3 -mortal%5:00:00:merciless:00 01507992 3 0 -mortal%5:00:00:unpardonable:00 01721691 2 1 -mortal%5:00:01:fatal:00 00993667 4 0 -mortal_enemy%1:18:00:: 10331258 1 0 -mortal_sin%1:04:00:: 00757730 1 0 -mortality%1:07:00:: 05055974 1 4 -mortality%1:28:00:: 15277118 2 0 -mortality_rate%1:28:00:: 15277118 1 0 -mortality_table%1:14:00:: 08266669 1 0 -mortally%4:02:00:: 00404073 1 1 -mortar%1:06:00:: 03786715 1 3 -mortar%1:06:01:: 03786901 3 0 -mortar%1:27:00:: 14955889 2 2 -mortar%2:35:00:: 01362291 1 3 -mortar_fire%1:04:00:: 00994895 1 0 -mortarboard%1:06:00:: 03787032 2 0 -mortarboard%1:06:01:: 03787164 1 0 -mortgage%1:21:00:: 13352138 1 4 -mortgage%2:40:00:: 02351737 1 0 -mortgage-backed_security%1:21:00:: 13340244 1 0 -mortgage_application%1:10:00:: 06513154 1 0 -mortgage_deed%1:10:00:: 06546157 1 0 -mortgage_holder%1:18:00:: 10331347 1 0 -mortgage_loan%1:21:00:: 13400334 1 0 -mortgaged%5:00:00:encumbered:00 00868815 1 0 -mortgagee%1:18:00:: 10331347 1 0 -mortgager%1:18:00:: 10331569 1 0 -mortgagor%1:18:00:: 10331569 1 0 -mortice%1:06:00:: 03787308 1 0 -mortice%2:35:00:: 01293644 2 0 -mortice%2:35:01:: 01293782 1 0 -mortician%1:18:00:: 10331841 1 1 -mortification%1:04:00:: 01069311 4 0 -mortification%1:11:00:: 07309223 3 0 -mortification%1:12:00:: 07507742 1 1 -mortification%1:19:00:: 11486708 2 0 -mortified%5:00:00:ashamed:00 00154270 2 0 -mortified%5:00:00:unhealthy:00 01176973 1 0 -mortify%2:29:00:: 00097394 4 0 -mortify%2:37:01:: 01799794 3 0 -mortify%2:37:02:: 01801847 2 0 -mortify%2:37:04:: 01802070 1 0 -mortifying%5:00:00:undignified:00 00752555 2 0 -mortifying%5:00:00:unpleasant:00 01803335 1 0 -mortimer%1:18:00:: 11192901 1 0 -mortise%1:06:00:: 03787308 1 0 -mortise%2:35:00:: 01293644 2 0 -mortise%2:35:01:: 01293782 1 0 -mortise-and-tenon_joint%1:06:00:: 03787523 1 0 -mortise_joint%1:06:00:: 03787523 2 0 -mortise_joint%1:08:00:: 05578442 1 0 -mortmain%1:07:00:: 05194435 2 0 -mortmain%1:21:00:: 13250244 1 0 -morton%1:18:00:: 11193058 1 0 -mortuary%1:06:00:: 03785499 1 0 -mortuary%3:01:00:: 02950371 2 0 -mortuary%3:01:01:: 02950471 1 0 -morula%1:05:00:: 01462803 1 0 -morus%1:20:00:: 12398990 1 0 -morus_alba%1:20:00:: 12399384 1 0 -morus_nigra%1:20:00:: 12399534 1 0 -morus_rubra%1:20:00:: 12399656 1 0 -mosaic%1:06:00:: 03787759 1 2 -mosaic%1:06:01:: 03787904 6 0 -mosaic%1:06:02:: 03788047 5 0 -mosaic%1:09:00:: 05931980 4 0 -mosaic%1:10:00:: 06571790 3 0 -mosaic%1:26:00:: 14280775 2 0 -mosaic%3:01:00:: 03035313 1 0 -mosaic_culture%1:09:00:: 06195096 1 0 -mosaic_gold%1:27:00:: 14701826 1 0 -mosaic_law%1:14:00:: 08455520 1 0 -mosaicism%1:26:00:: 14571028 1 0 -mosan%1:10:00:: 06913768 1 0 -mosander%1:18:00:: 11193250 1 0 -moschus%1:05:00:: 02435099 1 0 -moschus_moschiferus%1:05:00:: 02435216 1 0 -moscow%1:15:00:: 09004068 1 4 -moselle%1:13:00:: 07896765 1 0 -moses%1:18:00:: 11193392 1 1 -moses%1:18:01:: 11193645 2 0 -moses_maimonides%1:18:00:: 11149995 1 0 -mosey%2:38:00:: 01918183 1 0 -mosh%2:38:00:: 01897885 1 0 -moshav%1:14:00:: 08226838 1 0 -moshe_dayan%1:18:00:: 10925939 1 0 -moslem%1:18:00:: 09682291 1 0 -moslem%3:01:00:: 02923510 1 0 -moslem_calendar%1:28:00:: 15178841 1 0 -mosque%1:06:00:: 03788195 1 0 -mosquito%1:05:00:: 02200198 1 2 -mosquito_bite%1:26:00:: 14287904 1 0 -mosquito_boat%1:06:00:: 04017807 1 0 -mosquito_craft%1:06:00:: 04017807 1 0 -mosquito_fern%1:20:00:: 12959538 1 0 -mosquito_hawk%1:05:00:: 02268443 1 0 -mosquito_hawk%1:05:01:: 01836384 2 0 -mosquito_net%1:06:00:: 03788365 1 0 -mosquitofish%1:05:00:: 01449374 1 0 -moss%1:20:00:: 11537506 1 1 -moss-grown%5:00:00:covered:00 01696632 1 0 -moss-grown%5:00:00:unfashionable:00 00974697 2 0 -moss-trooper%1:18:00:: 10332110 1 0 -moss_agate%1:27:00:: 14708413 1 0 -moss_animal%1:05:00:: 02313709 1 0 -moss_campion%1:20:00:: 11815721 1 0 -moss_family%1:20:00:: 11537665 1 0 -moss_genus%1:20:00:: 11537886 1 0 -moss_green%5:00:00:chromatic:00 00378166 1 0 -moss_hart%1:18:00:: 11032700 1 0 -moss_locust%1:20:00:: 12567950 1 0 -moss_phlox%1:20:00:: 12811027 1 0 -moss_pink%1:20:01:: 12811027 2 0 -moss_pink%1:20:02:: 12811501 1 0 -mossad%1:14:00:: 08346490 1 0 -mossback%1:18:00:: 10332016 1 0 -mossbauer%1:18:00:: 11193814 1 0 -mosstone%5:00:00:chromatic:00 00378166 1 0 -mossy%5:00:00:covered:00 01696632 1 0 -mossy%5:00:00:unfashionable:00 00974697 2 0 -mossy-cup_oak%1:20:00:: 12274358 1 0 -mossy_saxifrage%1:20:00:: 12793695 1 0 -mossycup_oak%1:20:00:: 12274358 1 0 -most%3:00:01:: 01555732 2 26 -most%3:00:02:: 01557120 1 76 -most%4:02:00:: 00111609 1 180 -most%4:02:01:: 00112009 2 63 -most%4:02:02:: 00073033 3 1 -most-favored-nation%3:01:00:: 03035446 1 0 -most-valuable%5:00:00:important:00 01279431 1 1 -most_especially%4:02:00:: 00150671 1 0 -most_importantly%4:02:01:: 00150671 1 0 -most_valuable_player%1:18:00:: 10332257 1 2 -mostaccioli%1:13:00:: 07872492 1 0 -mostly%4:02:00:: 00006105 1 10 -mostly%4:02:03:: 00155621 2 3 -mosul%1:15:00:: 08915017 1 0 -mot%1:04:00:: 00795161 2 0 -mot%1:10:00:: 06776783 1 0 -mot_juste%1:10:00:: 07080778 1 0 -mot_test%1:04:00:: 00795161 1 0 -motacilla%1:05:00:: 01528244 1 0 -motacillidae%1:05:00:: 01528087 1 0 -mote%1:27:00:: 14585519 1 0 -motel%1:06:00:: 03788498 1 1 -motel_room%1:06:00:: 03788601 1 0 -motet%1:10:00:: 07280754 1 0 -moth%1:05:00:: 02283201 1 3 -moth-eaten%5:00:00:unoriginal:00 01689580 3 0 -moth-eaten%5:00:00:worn:00 02583043 1 0 -moth-eaten%5:00:01:worn:00 02582473 2 0 -moth-resistant%5:00:00:impervious:00 01774619 1 0 -moth_bean%1:20:00:: 12577362 1 0 -moth_miller%1:05:00:: 02283617 1 0 -moth_mullein%1:20:00:: 12889219 1 0 -moth_orchid%1:20:00:: 12076577 1 0 -moth_plant%1:20:00:: 12076577 1 0 -mothball%1:06:00:: 03788703 1 0 -mothball%2:40:00:: 02281641 1 0 -mother%1:09:00:: 05835292 5 0 -mother%1:18:00:: 10332385 1 100 -mother%1:18:01:: 10332861 4 0 -mother%1:18:02:: 10332953 3 0 -mother%1:27:00:: 15106674 2 0 -mother%2:29:00:: 00054628 2 0 -mother%2:41:00:: 02550516 1 2 -mother's_boy%1:18:00:: 10333439 1 0 -mother's_daughter%1:18:00:: 10333601 1 1 -mother's_day%1:28:00:: 15189249 1 0 -mother's_milk%1:08:00:: 05399243 1 0 -mother's_son%1:18:00:: 10333719 1 0 -mother-in-law%1:18:00:: 10333317 1 0 -mother-in-law's_tongue%1:20:01:: 12481458 1 0 -mother-in-law's_tongue%1:20:02:: 11787625 2 0 -mother-in-law_plant%1:20:00:: 11787625 1 0 -mother-naked%5:00:00:unclothed:00 00459553 1 1 -mother-of-pearl%1:27:00:: 14758706 1 0 -mother-of-pearl_cloud%1:17:00:: 09364582 1 0 -mother-of-thousands%1:20:00:: 12794568 1 0 -mother_board%1:06:00:: 03125057 1 0 -mother_carey's_chicken%1:05:00:: 02061560 1 0 -mother_carey's_hen%1:05:00:: 02061560 1 0 -mother_cell%1:20:00:: 11688750 1 0 -mother_country%1:15:00:: 08510169 1 1 -mother_figure%1:18:00:: 10333044 1 0 -mother_fucker%1:18:00:: 09815188 1 0 -mother_goose%1:18:00:: 09602048 1 0 -mother_hen%1:05:00:: 01793085 2 0 -mother_hen%1:18:00:: 10333165 1 0 -mother_hubbard%1:06:00:: 03788914 1 0 -mother_jones%1:18:00:: 11090884 1 0 -mother_lode%1:19:00:: 11445960 1 0 -mother_of_thyme%1:20:00:: 12839574 1 0 -mother_seton%1:18:00:: 11293972 1 0 -mother_superior%1:18:00:: 09754217 1 0 -mother_teresa%1:18:00:: 11335878 1 0 -mother_theresa%1:18:00:: 11335878 1 0 -mother_tongue%1:10:00:: 06904748 1 0 -mother_wit%1:09:00:: 05614657 1 0 -motherese%1:10:00:: 07155531 1 0 -motherfucker%1:18:00:: 09815188 1 0 -motherhood%1:24:00:: 13814041 1 0 -motherland%1:15:00:: 08510169 1 1 -motherless%5:00:00:unparented:00 01734347 1 0 -motherlike%5:00:00:maternal:00 01735252 1 0 -motherliness%1:07:00:: 04872958 1 0 -motherly%4:02:00:: 00396055 1 0 -motherly%5:00:00:maternal:00 01735346 1 0 -motherwell%1:18:00:: 11193928 1 0 -motherwort%1:20:00:: 12851469 1 0 -mothproof%2:33:00:: 01154825 1 0 -mothproof%5:00:00:impervious:00 01774619 1 0 -mothy%5:00:00:troubled:00 02458408 2 0 -mothy%5:00:00:worn:00 02582473 1 0 -motif%1:06:00:: 03789014 1 5 -motif%1:09:00:: 05920272 3 1 -motif%1:10:00:: 07029682 2 1 -motile%1:18:00:: 10165808 1 0 -motile%5:00:00:mobile:00 01523567 1 0 -motilin%1:08:00:: 05409945 1 0 -motility%1:04:00:: 00331950 2 0 -motility%1:07:00:: 04773761 1 0 -motion%1:04:00:: 00331950 3 6 -motion%1:04:01:: 00279835 6 1 -motion%1:10:00:: 06876309 1 8 -motion%1:10:01:: 07163593 5 1 -motion%1:11:00:: 07309781 2 7 -motion%1:19:00:: 11425088 7 0 -motion%1:26:00:: 14004317 4 2 -motion%2:32:00:: 00992041 1 1 -motion-picture_camera%1:06:00:: 03789171 1 0 -motion-picture_fan%1:18:00:: 10336411 1 0 -motion-picture_film%1:06:00:: 03789400 1 0 -motion-picture_photography%1:04:00:: 00907919 1 0 -motion-picture_show%1:10:00:: 06613686 1 0 -motion_picture%1:10:00:: 06613686 1 9 -motion_sickness%1:26:00:: 14203346 1 0 -motion_study%1:04:00:: 00645365 1 0 -motional%3:01:00:: 03002724 1 1 -motionless%5:00:00:nonmoving:00 01564315 1 8 -motionlessly%4:02:00:: 00404311 1 0 -motionlessness%1:26:00:: 14006179 1 0 -motivate%2:36:00:: 01649999 1 6 -motivated%3:00:00:: 01558385 1 3 -motivating%1:04:00:: 00070641 1 0 -motivating%5:00:00:causative:00 00324195 1 2 -motivation%1:03:00:: 00023773 1 5 -motivation%1:04:00:: 00070641 3 0 -motivation%1:26:00:: 14578471 2 0 -motivational%3:01:00:: 02766328 1 0 -motivative%5:00:00:causative:00 00324195 1 0 -motivator%1:16:00:: 09179776 1 0 -motive%1:03:00:: 00023773 1 18 -motive%1:06:00:: 03789014 3 0 -motive%1:10:00:: 07029682 2 0 -motive%5:00:00:causative:00 00324481 1 1 -motive%5:00:02:causative:00 00324195 2 0 -motive_power%1:07:00:: 04773596 1 0 -motiveless%5:00:00:unmotivated:00 01559270 1 0 -motivity%1:07:00:: 04773596 1 0 -motley%1:06:00:: 03789603 3 0 -motley%1:06:01:: 03789794 2 0 -motley%1:14:00:: 08398773 1 0 -motley%2:30:00:: 00284669 2 0 -motley%2:30:01:: 00436879 1 0 -motley%5:00:00:colored:00 00398978 2 0 -motley%5:00:00:heterogeneous:00 01199083 1 0 -motley_fool%1:18:00:: 10221312 1 0 -motmot%1:05:00:: 01830915 1 0 -motoneuron%1:08:00:: 05466696 1 0 -motor%1:06:00:: 03789946 1 6 -motor%1:17:00:: 09359631 2 0 -motor%2:38:00:: 01930117 1 1 -motor%5:00:00:causative:00 00324481 2 0 -motor%5:00:00:efferent:00 00334245 1 1 -motor-assisted%5:00:00:assisted:00 02353849 1 0 -motor_aphasia%1:26:00:: 14098458 1 0 -motor_area%1:08:00:: 05489640 1 0 -motor_ataxia%1:26:00:: 14091254 1 0 -motor_city%1:15:00:: 09100394 1 0 -motor_control%1:04:00:: 00830733 1 0 -motor_cortex%1:08:00:: 05489640 1 0 -motor_end_plate%1:08:00:: 05466393 1 0 -motor_fiber%1:08:00:: 05474976 1 0 -motor_home%1:06:00:: 02946348 1 0 -motor_horn%1:06:00:: 02761834 1 0 -motor_hotel%1:06:00:: 03790755 1 0 -motor_inn%1:06:00:: 03790755 1 0 -motor_lodge%1:06:00:: 03790755 1 0 -motor_memory%1:09:00:: 05761277 1 0 -motor_mower%1:06:00:: 03995856 1 0 -motor_nerve%1:08:00:: 05474738 1 0 -motor_nerve_fiber%1:08:00:: 05466696 1 0 -motor_neuron%1:08:00:: 05466696 1 1 -motor_oil%1:27:00:: 14953441 1 0 -motor_pool%1:14:00:: 08293684 1 1 -motor_region%1:08:00:: 05489640 1 0 -motor_scooter%1:06:00:: 03791053 1 0 -motor_torpedo_boat%1:06:00:: 04017807 1 0 -motor_vehicle%1:06:00:: 03791235 1 0 -motorbike%1:06:00:: 03769722 1 0 -motorbike%2:38:00:: 01936048 1 0 -motorboat%1:06:00:: 03790230 1 0 -motorboat%2:38:00:: 01945277 1 0 -motorbus%1:06:00:: 02924116 1 0 -motorcade%1:14:00:: 08428383 1 0 -motorcar%1:06:00:: 02958343 1 1 -motorcoach%1:06:00:: 02924116 1 0 -motorcycle%1:06:00:: 03790512 1 0 -motorcycle%2:38:00:: 01936048 1 0 -motorcycle_cop%1:18:00:: 10333838 1 0 -motorcycle_policeman%1:18:00:: 10333838 1 0 -motorcycling%1:04:01:: 00451635 1 0 -motorcyclist%1:18:00:: 10334009 1 0 -motored%3:00:00:: 01559484 1 0 -motorial%3:00:00:: 00333987 1 0 -motoring%1:04:00:: 00299112 1 0 -motorisation%1:04:00:: 00102927 1 0 -motorise%2:30:00:: 00480751 1 0 -motorised%3:00:00:: 01559484 1 0 -motorist%1:18:00:: 10334101 1 0 -motorization%1:04:00:: 00102927 1 0 -motorize%2:30:00:: 00480751 3 0 -motorize%2:40:03:: 02226013 2 0 -motorize%2:40:05:: 02226172 1 0 -motorized%3:00:00:: 01559484 1 0 -motorized%5:00:00:mobile:00 01523450 2 0 -motorized_wheelchair%1:06:00:: 03790953 1 0 -motorless%3:00:00:: 01559804 1 0 -motorman%1:18:00:: 10334255 1 0 -motormouth%1:18:00:: 10334335 1 0 -motortruck%1:06:00:: 04490091 1 0 -motorway%1:06:00:: 03306610 1 0 -motown%1:15:00:: 09100394 1 0 -motrin%1:06:00:: 03556281 1 0 -mott%1:18:00:: 11194062 1 0 -mottle%1:07:00:: 04958865 1 0 -mottle%2:30:00:: 00510364 2 0 -mottle%2:36:00:: 01696135 1 2 -mottled%5:00:00:patterned:00 01788273 1 1 -mottling%1:04:00:: 00263947 1 0 -motto%1:10:00:: 07152259 1 2 -moue%1:10:00:: 06877742 1 0 -moufflon%1:05:00:: 02415829 1 0 -mouflon%1:05:00:: 02415829 1 0 -moujik%1:18:00:: 10342770 1 0 -moukden%1:15:00:: 08728462 1 0 -mould%1:06:00:: 03779370 8 0 -mould%1:06:02:: 03779621 7 0 -mould%1:07:00:: 04732709 6 0 -mould%1:13:00:: 07938594 5 0 -mould%1:20:00:: 13077033 4 0 -mould%1:22:00:: 13516176 3 0 -mould%1:25:00:: 13913566 2 0 -mould%1:27:00:: 14953564 1 0 -mould%2:36:00:: 01662771 2 0 -mould%2:36:01:: 01659248 3 0 -mould%2:36:02:: 01697027 1 1 -mouldboard%1:06:00:: 03779884 1 0 -mouldboard_plough%1:06:00:: 03780047 1 0 -moulder%2:30:00:: 00209837 1 0 -moulding%1:04:00:: 00937895 4 0 -moulding%1:06:00:: 03780247 2 0 -moulding%1:06:01:: 03780392 1 0 -moulding%1:06:02:: 03779621 3 0 -mouldy%5:00:00:stale:00 01070088 1 0 -moulmein%1:15:00:: 08716076 1 0 -moult%1:22:00:: 13516842 1 0 -moult%2:29:00:: 00009147 1 0 -moulter%1:05:00:: 01318660 1 0 -moulting%1:22:00:: 13516842 1 0 -mound%1:04:00:: 00722984 5 0 -mound%1:06:00:: 03792048 4 0 -mound%1:06:01:: 03792334 1 5 -mound%1:14:00:: 07961480 3 1 -mound%1:17:00:: 09326662 2 1 -mound%2:36:00:: 01660386 1 0 -mound-bird%1:05:00:: 01801088 1 0 -mound_bird%1:05:00:: 01801088 1 0 -mound_builder%1:05:00:: 01801088 2 0 -mound_builder%1:18:00:: 10334461 1 0 -mound_over%2:35:00:: 01607871 1 1 -mound_over%2:36:00:: 01660547 2 0 -mounded_over%3:44:00:: 03150897 1 1 -mount%1:04:00:: 00325110 2 1 -mount%1:05:00:: 02377703 1 4 -mount%1:06:00:: 02769460 5 0 -mount%1:06:01:: 03792526 4 0 -mount%1:17:00:: 09359803 3 0 -mount%2:30:00:: 00433232 2 8 -mount%2:30:01:: 00407633 3 6 -mount%2:35:00:: 01343204 1 10 -mount%2:35:07:: 01429322 8 0 -mount%2:36:00:: 01649124 4 4 -mount%2:36:01:: 01649251 7 0 -mount%2:38:00:: 01921964 6 3 -mount%2:38:01:: 01923414 5 3 -mount_adams%1:17:00:: 09187407 1 0 -mount_ararat%1:17:00:: 09203032 1 0 -mount_asama%1:15:00:: 08926681 1 0 -mount_athos%1:15:00:: 08785132 1 0 -mount_bartle_frere%1:17:00:: 09361681 1 0 -mount_carmel%1:17:00:: 09361816 1 0 -mount_communism%1:17:00:: 09251832 1 0 -mount_cook_lily%1:20:00:: 11722199 1 0 -mount_elbert%1:17:00:: 09362050 1 0 -mount_etna%1:15:00:: 09174718 1 0 -mount_everest%1:17:00:: 09277010 1 1 -mount_fuji%1:15:00:: 09175016 1 0 -mount_garmo%1:17:00:: 09251832 1 0 -mount_godwin_austen%1:17:00:: 09322701 1 0 -mount_hubbard%1:17:00:: 09306642 1 0 -mount_kanchenjunga%1:17:00:: 09323221 1 0 -mount_kilimanjaro%1:17:00:: 09325963 1 0 -mount_logan%1:17:00:: 09342729 1 0 -mount_mckinley%1:17:00:: 09349425 1 0 -mount_olympus%1:17:00:: 09378529 1 0 -mount_orizaba%1:15:00:: 09173777 1 0 -mount_parnassus%1:17:00:: 09385586 1 0 -mount_pinatubo%1:15:00:: 08982289 1 0 -mount_ranier%1:17:00:: 09405169 1 0 -mount_ranier_national_park%1:15:00:: 08607752 1 0 -mount_rushmore%1:17:00:: 09417668 1 0 -mount_rushmore_state%1:15:00:: 09138935 1 0 -mount_saint_helens%1:15:00:: 09177385 1 0 -mount_shasta%1:17:00:: 09431569 1 0 -mount_sherman%1:17:00:: 09431902 1 0 -mount_sinai%1:17:00:: 09435512 1 0 -mount_st._helens%1:15:00:: 09177385 1 0 -mount_tacoma%1:17:00:: 09405169 1 0 -mount_up%2:38:00:: 01923414 1 2 -mount_vernon%1:15:00:: 09152769 1 0 -mount_vesuvius%1:15:00:: 09177883 1 0 -mount_whitney%1:17:00:: 09479072 1 0 -mount_wilson%1:17:00:: 09479811 1 0 -mountain%1:17:00:: 09359803 1 17 -mountain%1:23:00:: 13774404 2 0 -mountain_alder%1:20:01:: 12754311 1 0 -mountain_alder%1:20:02:: 12285369 2 0 -mountain_andromeda%1:20:00:: 12243693 1 0 -mountain_anemone%1:20:00:: 11725311 1 0 -mountain_ash%1:20:01:: 12658118 1 0 -mountain_ash%1:20:02:: 12305986 3 0 -mountain_ash%1:20:03:: 12338796 2 0 -mountain_avens%1:20:00:: 12629305 1 0 -mountain_azalea%1:20:00:: 12240477 1 0 -mountain_beaver%1:05:00:: 02363996 1 0 -mountain_bike%1:06:00:: 03792782 1 0 -mountain_birch%1:20:00:: 12283542 1 0 -mountain_blacksnake%1:05:00:: 01732789 1 0 -mountain_bladder_fern%1:20:00:: 13196234 1 0 -mountain_blue_berry%1:20:00:: 12248359 1 0 -mountain_box%1:20:00:: 12231358 1 0 -mountain_chain%1:17:00:: 09403734 1 0 -mountain_chinchilla%1:05:00:: 02367812 1 0 -mountain_clematis%1:20:00:: 11731659 1 0 -mountain_climber%1:18:00:: 10334567 1 0 -mountain_climbing%1:04:00:: 00325785 1 0 -mountain_clubmoss%1:20:00:: 13223090 1 0 -mountain_cranberry%1:13:00:: 07744057 2 0 -mountain_cranberry%1:20:00:: 12249542 1 0 -mountain_daisy%1:20:00:: 11806219 1 0 -mountain_devil%1:05:00:: 01689081 2 0 -mountain_devil%1:20:00:: 12220019 1 0 -mountain_ebony%1:20:00:: 12491017 1 0 -mountain_everlasting%1:20:00:: 11922926 1 0 -mountain_fern%1:20:00:: 13229543 1 0 -mountain_fetterbush%1:20:00:: 12243693 1 0 -mountain_fever%1:26:00:: 14141656 1 0 -mountain_four_o'clock%1:20:00:: 11840764 1 0 -mountain_goat%1:05:00:: 02418465 1 0 -mountain_gorilla%1:05:00:: 02481366 1 0 -mountain_grape%1:20:00:: 11699442 1 0 -mountain_heath%1:20:00:: 12242850 1 0 -mountain_hemlock%1:20:00:: 11627908 1 0 -mountain_hollyhock%1:20:00:: 12181612 1 0 -mountain_lady's_slipper%1:20:00:: 12058192 1 0 -mountain_laurel%1:20:01:: 12237641 1 0 -mountain_laurel%1:20:02:: 11707827 2 0 -mountain_lily%1:20:01:: 12426623 1 0 -mountain_lily%1:20:02:: 11722199 2 0 -mountain_lion%1:05:00:: 02125311 1 0 -mountain_male_fern%1:20:00:: 13194212 1 0 -mountain_man%1:18:00:: 10113072 1 0 -mountain_maple%1:20:00:: 12754311 1 0 -mountain_mint%1:20:00:: 12863624 1 0 -mountain_nyala%1:05:00:: 02425086 1 0 -mountain_oak%1:20:00:: 12336973 1 0 -mountain_paca%1:05:00:: 02366579 1 0 -mountain_parsley_fern%1:20:00:: 13210597 1 0 -mountain_partridge%1:05:00:: 01808596 1 0 -mountain_pass%1:17:00:: 09386842 1 0 -mountain_peak%1:17:00:: 09360122 1 0 -mountain_phlox%1:20:00:: 12811027 1 0 -mountain_pine%1:20:01:: 11612349 3 0 -mountain_pine%1:20:02:: 11613459 2 0 -mountain_pine%1:20:03:: 11639445 1 0 -mountain_pride%1:20:00:: 12887065 1 0 -mountain_quail%1:05:00:: 01808596 1 0 -mountain_range%1:17:00:: 09403734 1 0 -mountain_rice%1:20:00:: 12126516 1 0 -mountain_rimu%1:20:00:: 11656771 1 0 -mountain_rose%1:20:00:: 12620661 1 0 -mountain_sandwort%1:20:00:: 11806219 1 0 -mountain_sheep%1:05:00:: 02415435 1 0 -mountain_sickness%1:26:00:: 14043092 1 0 -mountain_skink%1:05:00:: 01684741 1 0 -mountain_spinach%1:20:00:: 11831100 1 0 -mountain_spleenwort%1:20:00:: 13182338 1 0 -mountain_standard_time%1:28:00:: 15132408 1 0 -mountain_starwort%1:20:00:: 11806219 1 0 -mountain_state%1:15:00:: 09155306 1 0 -mountain_sumac%1:20:00:: 12763762 1 0 -mountain_swamp_gum%1:20:00:: 12336586 1 0 -mountain_tea%1:20:00:: 12235765 1 0 -mountain_tent%1:06:00:: 03792972 1 0 -mountain_time%1:28:00:: 15132408 1 0 -mountain_trail%1:06:00:: 03793090 1 0 -mountain_viscacha%1:05:00:: 02367812 1 0 -mountain_watercress%1:20:00:: 11882636 1 0 -mountain_zebra%1:05:00:: 02391373 1 0 -mountaineer%1:18:00:: 10334567 1 0 -mountaineer%2:38:00:: 01922895 1 0 -mountaineering%1:04:00:: 00325785 1 0 -mountainous%5:00:00:large:00 01389846 2 2 -mountainous%5:00:00:rough:00 02240490 1 2 -mountainous%5:00:00:upland:00 01219502 3 1 -mountainside%1:17:00:: 09361517 1 2 -mountebank%1:18:00:: 10334782 1 0 -mounted%5:00:00:adorned:00 00059491 2 1 -mounted%5:00:00:affixed:00 00159267 1 2 -mounter%1:18:00:: 10334957 2 0 -mounter%1:18:01:: 10335123 1 0 -mountie%1:18:00:: 10540114 1 0 -mounties%1:14:00:: 08210670 1 0 -mounting%1:06:00:: 03793186 2 0 -mounting%1:11:00:: 07370410 1 0 -mourn%2:37:00:: 01797051 1 6 -mourn%2:37:01:: 01797204 2 1 -mourner%1:18:00:: 10335246 1 2 -mournful%5:00:00:sad:00 01362387 2 0 -mournful%5:00:01:sorrowful:00 01366157 1 2 -mournful_widow%1:20:00:: 12683571 1 0 -mournfully%4:02:00:: 00404622 1 2 -mournfulness%1:12:00:: 07535209 1 0 -mourning%1:04:00:: 01072236 2 0 -mourning%1:26:00:: 13989280 1 0 -mourning%5:00:00:sorrowful:00 01364817 1 0 -mourning_band%1:06:00:: 04570680 1 0 -mourning_cloak%1:05:00:: 02275560 1 0 -mourning_cloak_butterfly%1:05:00:: 02275560 1 0 -mourning_dove%1:05:00:: 01814217 1 0 -mourning_ring%1:06:00:: 03793387 1 0 -mouse%1:05:00:: 02330245 1 14 -mouse%1:06:00:: 03793489 4 0 -mouse%1:18:00:: 10335563 3 0 -mouse%1:26:00:: 14289387 2 0 -mouse%2:35:00:: 01212115 2 0 -mouse%2:38:00:: 01911888 1 0 -mouse's_nest%1:17:00:: 09362207 1 0 -mouse-colored%5:00:00:chromatic:00 00378280 1 1 -mouse-ear_chickweed%1:20:00:: 11807108 1 0 -mouse-ear_cress%1:20:00:: 11871496 1 0 -mouse-ear_hawkweed%1:20:00:: 12004120 1 0 -mouse-eared%5:00:00:eared:00 00812626 1 0 -mouse-eared_bat%1:05:00:: 02141611 1 0 -mouse-sized%5:00:00:sized:00 02223785 1 0 -mouse-tooth_forceps%1:06:00:: 03793954 1 0 -mouse_button%1:06:00:: 03793850 1 0 -mouse_click%1:04:00:: 00112828 1 0 -mouse_deer%1:05:00:: 02435853 1 0 -mouse_ear%1:20:01:: 11807108 2 0 -mouse_ear%1:20:02:: 12822115 1 0 -mouse_eared_chickweed%1:20:00:: 11807108 1 0 -mouse_hare%1:05:00:: 02328429 1 0 -mouse_mat%1:06:00:: 03794655 1 0 -mouse_nest%1:17:00:: 09362207 1 1 -mouselike%5:00:00:chromatic:00 00378280 1 0 -mousepad%1:06:00:: 03794655 1 0 -mouser%1:05:00:: 02122430 1 0 -mousetrap%1:04:00:: 00976270 2 0 -mousetrap%1:06:00:: 03794056 1 0 -mousey%3:01:00:: 02766469 1 0 -mousey%5:00:00:chromatic:00 00378280 2 0 -mousey%5:00:00:timid:00 00252826 3 0 -moussaka%1:13:00:: 07872593 1 0 -mousse%1:06:00:: 03794136 3 0 -mousse%1:13:01:: 07611839 2 0 -mousse%1:13:02:: 07611991 1 0 -mousse%2:29:00:: 00039950 1 0 -mousseline_de_sole%1:06:00:: 03794291 1 0 -moussorgsky%1:18:00:: 11198375 1 0 -moustache%1:08:00:: 05262185 1 0 -moustache_cup%1:06:00:: 03802643 1 0 -moustachio%1:08:00:: 05262534 1 0 -mousy%3:01:00:: 02766469 2 0 -mousy%5:00:00:chromatic:00 00378280 3 0 -mousy%5:00:00:timid:00 00252826 1 1 -mouth%1:06:00:: 03794392 8 0 -mouth%1:08:00:: 05301908 2 12 -mouth%1:08:01:: 05302499 1 48 -mouth%1:10:00:: 06721949 7 0 -mouth%1:17:00:: 09362316 4 2 -mouth%1:17:01:: 09362469 3 2 -mouth%1:18:00:: 10335679 5 1 -mouth%1:18:01:: 10335801 6 0 -mouth%2:32:00:: 00941990 1 3 -mouth%2:32:01:: 01040707 2 1 -mouth%2:35:00:: 01432474 3 0 -mouth-to-mouth_resuscitation%1:04:00:: 00832626 1 0 -mouth-watering%5:00:00:appetizing:00 00133669 1 0 -mouth_bow%1:06:00:: 03597916 1 0 -mouth_harp%1:06:00:: 03494278 1 0 -mouth_hole%1:06:00:: 03794540 1 0 -mouth_off%2:32:00:: 01051956 1 0 -mouth_organ%1:06:00:: 03494278 1 0 -mouthbreeder%1:05:00:: 02513805 1 0 -mouthful%1:13:00:: 07578879 2 0 -mouthful%1:23:00:: 13768343 1 1 -mouthless%3:00:00:: 02310771 1 0 -mouthlike%5:00:00:stomatous:00 02310679 1 0 -mouthpart%1:05:00:: 01768808 1 0 -mouthpiece%1:06:00:: 03794798 6 0 -mouthpiece%1:06:01:: 03794957 5 0 -mouthpiece%1:06:02:: 03795123 2 1 -mouthpiece%1:06:03:: 03795269 4 0 -mouthpiece%1:06:04:: 03795419 1 1 -mouthpiece%1:18:01:: 10335801 3 0 -mouthwash%1:27:00:: 14848642 1 0 -mouton%1:13:00:: 07666733 1 0 -movability%1:07:00:: 04773899 1 0 -movable%1:21:00:: 13245846 1 0 -movable%5:00:00:mobile:00 01523724 2 0 -movable%5:00:00:portable:00 01526062 1 0 -movable_barrier%1:06:00:: 03795580 1 0 -movable_feast%1:28:00:: 15185290 1 0 -movableness%1:07:00:: 04773899 1 0 -move%1:04:00:: 00165942 1 8 -move%1:04:01:: 00168658 2 3 -move%1:04:02:: 00166172 5 0 -move%1:04:03:: 00331950 3 1 -move%1:04:04:: 00279835 4 0 -move%2:29:06:: 00014549 6 7 -move%2:30:00:: 00124442 7 6 -move%2:30:01:: 00539110 13 1 -move%2:32:00:: 00879356 16 0 -move%2:33:00:: 01076615 15 0 -move%2:36:00:: 01649999 10 3 -move%2:37:00:: 01767949 9 3 -move%2:37:01:: 01771390 11 2 -move%2:38:00:: 01831531 3 52 -move%2:38:01:: 01850315 2 57 -move%2:38:02:: 01855606 4 20 -move%2:38:03:: 01835496 1 110 -move%2:40:00:: 02355959 12 1 -move%2:41:00:: 02367363 8 3 -move%2:41:01:: 02372605 5 15 -move%2:41:02:: 02598863 14 0 -move_around%2:38:00:: 02102002 2 0 -move_around%2:38:03:: 01909812 1 1 -move_back%2:38:00:: 01994442 1 4 -move_back_and_forth%2:38:00:: 01876530 1 0 -move_in%2:38:00:: 01855982 3 0 -move_in%2:38:01:: 02015384 2 0 -move_in%2:38:02:: 01856096 1 4 -move_in_on%2:38:00:: 02019175 1 1 -move_in_on%2:41:00:: 02440914 2 0 -move_into%2:38:00:: 02016523 1 12 -move_involuntarily%2:29:00:: 00010054 1 0 -move_on%2:38:00:: 01992503 1 7 -move_out%2:38:00:: 01856211 2 0 -move_out%2:41:00:: 02404904 1 0 -move_over%2:38:00:: 01848465 1 2 -move_reflexively%2:29:00:: 00010054 1 0 -move_through%2:38:00:: 01915365 1 0 -move_up%2:38:00:: 01968569 2 3 -move_up%2:38:01:: 01969779 1 3 -moveable%5:00:00:mobile:00 01523724 1 0 -moveable_feast%1:28:00:: 15185290 1 0 -moved%3:00:00:: 01559903 1 0 -movement%1:04:00:: 00331950 1 24 -movement%1:04:02:: 00280586 11 0 -movement%1:04:03:: 00798245 6 4 -movement%1:04:04:: 00279835 2 16 -movement%1:06:00:: 03795758 10 0 -movement%1:09:00:: 06197664 9 0 -movement%1:10:00:: 07046339 5 4 -movement%1:11:00:: 07309781 3 14 -movement%1:14:00:: 08464601 4 4 -movement%1:19:00:: 11425088 7 3 -movement%1:22:00:: 13441387 8 0 -movement_for_revenge%1:14:00:: 08045428 1 0 -movement_of_holy_warriors%1:14:00:: 08022972 1 0 -mover%1:14:00:: 08478482 4 0 -mover%1:18:00:: 10335931 3 0 -mover%1:18:01:: 10484526 2 0 -mover%1:18:02:: 10336234 1 3 -mover_and_shaker%1:18:00:: 10585976 1 0 -movie%1:10:00:: 06613686 1 26 -movie_actor%1:18:00:: 10564098 1 0 -movie_camera%1:06:00:: 03789171 1 1 -movie_film%1:06:00:: 03789400 1 0 -movie_house%1:06:00:: 03032252 1 1 -movie_industry%1:14:00:: 08068151 1 0 -movie_maker%1:18:00:: 10088390 1 0 -movie_making%1:04:00:: 00924714 1 0 -movie_projector%1:06:00:: 03795976 1 0 -movie_star%1:18:00:: 10089484 1 2 -movie_theater%1:06:00:: 03032252 1 1 -movie_theatre%1:06:00:: 03032252 1 0 -moviegoer%1:18:00:: 10336411 1 1 -moviemaking%1:04:00:: 00924714 1 0 -movimiento_revolucionario_tupac_anaru%1:14:00:: 08045681 1 0 -moving%3:00:01:: 01560513 2 2 -moving%3:00:02:: 01561771 1 9 -moving%3:00:03:: 01565396 3 0 -moving-coil_galvanometer%1:06:00:: 03796181 1 0 -moving-picture_show%1:10:00:: 06613686 1 0 -moving_company%1:14:00:: 08478482 1 0 -moving_expense%1:21:00:: 13277056 1 0 -moving_in%1:04:00:: 00086809 1 0 -moving_picture%1:10:00:: 06613686 1 0 -moving_ridge%1:11:00:: 07352190 1 0 -moving_staircase%1:06:00:: 03295773 1 0 -moving_stairway%1:06:00:: 03295773 1 0 -moving_van%1:06:00:: 03796401 1 0 -movingly%4:02:00:: 00036515 1 1 -mow%1:06:00:: 03500557 1 0 -mow%2:29:00:: 00034758 2 0 -mow%2:35:00:: 01319562 1 1 -mow_down%2:30:00:: 00479176 1 0 -mower%1:06:00:: 03649909 1 0 -mown%3:00:00:: 01566027 1 0 -moxie%1:07:00:: 05032351 1 0 -moxie_plum%1:20:00:: 12235479 1 0 -moynihan%1:18:00:: 11194205 1 0 -mozambican%1:18:00:: 09723689 1 0 -mozambican%3:01:00:: 03088384 2 0 -mozambican%3:01:01:: 03088558 1 0 -mozambique%1:15:00:: 08971025 1 0 -mozambique_channel%1:17:00:: 09362666 1 0 -mozambique_monetary_unit%1:23:00:: 13688695 1 0 -mozart%1:10:00:: 07278652 2 0 -mozart%1:18:00:: 11194355 1 0 -mozartean%3:01:00:: 03035675 1 0 -mozartian%3:01:00:: 03035675 1 0 -mozzarella%1:13:00:: 07854184 1 0 -mp%1:14:00:: 08211290 2 0 -mp%1:18:00:: 10317500 1 0 -mpeg%1:04:00:: 00616398 1 0 -mph%1:28:00:: 15284878 2 1 -mph%1:28:01:: 15280346 1 2 -mps%1:08:00:: 05461610 1 0 -mr%1:10:00:: 06341340 1 0 -mr.%1:10:00:: 06341340 1 0 -mr._moto%1:18:00:: 09602162 1 0 -mrd%1:10:00:: 06639023 1 0 -mri%1:04:00:: 00902579 1 0 -mrna%1:27:00:: 14832770 1 0 -mrs%1:10:00:: 06341431 1 0 -mrs.%1:10:00:: 06341431 1 0 -mrs._gandhi%1:18:00:: 10989610 1 0 -mrs._henry_wood%1:18:00:: 11395609 1 0 -mrs._humphrey_ward%1:18:00:: 11374085 1 0 -mrs._simpson%1:18:00:: 11301809 1 0 -mrta%1:14:00:: 08045681 1 0 -ms%1:10:00:: 06702139 3 0 -ms%1:10:01:: 06406979 4 0 -ms%1:10:02:: 06341525 5 0 -ms%1:15:00:: 09103943 2 0 -ms%1:26:00:: 14094068 1 0 -ms-dos%1:10:00:: 06568552 1 0 -ms.%1:10:00:: 06341525 1 0 -msasa%1:20:00:: 12491435 1 0 -msb%1:14:00:: 08424501 1 0 -msc%1:10:00:: 06702139 1 0 -msec%1:28:00:: 15236338 1 0 -msg%1:13:00:: 07828378 1 0 -msh%1:27:00:: 15073784 1 0 -mst%1:28:00:: 15132408 1 0 -mt%1:09:00:: 06133503 4 0 -mt%1:15:00:: 09108164 3 0 -mt%1:23:00:: 13725588 2 0 -mt%1:27:00:: 14644963 1 0 -mt._ararat%1:17:00:: 09203032 1 0 -mt._everest%1:17:00:: 09277010 1 0 -mt._mckinley%1:17:00:: 09349425 1 0 -mt._olympus%1:17:00:: 09378529 1 0 -mt._ranier%1:17:00:: 09405169 1 0 -mt._rushmore%1:17:00:: 09417668 1 0 -mt._st._helens%1:15:00:: 09177385 1 0 -mt._vesuvius%1:15:00:: 09177883 1 0 -mt_etna%1:15:00:: 09174718 1 0 -mt_orizaba%1:15:00:: 09173777 1 0 -mu%1:10:00:: 06835315 1 0 -mu-meson%1:17:00:: 09363214 1 0 -muadhdhin%1:18:00:: 10336730 1 0 -muammar_al-qaddafi%1:18:00:: 11250287 1 0 -muammar_el-qaddafi%1:18:00:: 11250287 1 0 -muazzin%1:18:00:: 10336730 1 0 -mubarak%1:18:00:: 11194587 1 0 -much%1:23:00:: 13776621 1 54 -much%3:00:00:: 01553629 1 137 -much%4:02:00:: 00059086 1 95 -much%4:02:01:: 00022829 4 9 -much%4:02:03:: 00032803 2 17 -much%4:02:04:: 00059171 3 10 -much%4:02:06:: 00059413 5 6 -much_as%4:02:00:: 00188600 1 3 -muchness%1:07:00:: 05099662 1 0 -mucic_acid%1:27:00:: 14615971 1 0 -muciferous%3:01:00:: 02867419 1 0 -mucilage%1:27:00:: 14901679 1 0 -mucilage%1:27:01:: 14702875 2 0 -mucilaginous%5:00:00:adhesive:00 00053691 1 0 -mucin%1:27:00:: 14730955 1 0 -mucinoid%3:01:00:: 02903281 1 0 -mucinous%3:01:00:: 02903177 1 0 -muck%1:27:00:: 14956661 1 0 -muck%1:27:01:: 14854847 2 0 -muck%2:30:01:: 00178380 1 1 -muck%2:35:00:: 01534745 3 0 -muck%2:38:00:: 02083087 2 0 -muck_about%2:35:00:: 01473346 1 0 -muck_around%2:35:00:: 01473346 1 0 -muck_up%2:35:00:: 01534745 2 0 -muck_up%2:41:00:: 02527651 1 1 -muckheap%1:14:00:: 07962295 1 0 -muckhill%1:14:00:: 07962295 1 0 -muckle%1:23:00:: 13774404 1 0 -muckrake%2:32:00:: 00934744 1 0 -muckraker%1:18:00:: 10336537 1 0 -muckraking%1:10:00:: 07215816 1 0 -mucky%5:00:00:dirty:01 00422620 2 0 -mucky%5:00:00:wet:01 02548066 1 0 -mucocutaneous%3:01:00:: 02903352 1 0 -mucocutaneous_leishmaniasis%1:26:00:: 14181409 1 0 -mucocutaneous_lymph_node_syndrome%1:26:00:: 14076270 1 0 -mucoid%1:27:00:: 14956027 1 0 -mucoid%3:01:00:: 02903793 1 0 -mucoidal%3:01:00:: 02903793 1 0 -mucopolysaccharide%1:27:00:: 14956143 1 0 -mucopolysaccharidosis%1:26:00:: 14157527 1 0 -mucopurulent%3:01:00:: 02903477 1 0 -mucor%1:20:00:: 12973443 1 0 -mucoraceae%1:20:00:: 12972966 1 0 -mucorales%1:20:00:: 12972818 1 0 -mucosa%1:08:00:: 05327134 1 5 -mucosal%3:01:00:: 02867505 1 0 -mucose%3:01:00:: 02903593 1 0 -mucous%3:01:00:: 02903593 1 0 -mucous_colitis%1:26:00:: 14306245 1 0 -mucous_membrane%1:08:00:: 05327134 1 0 -mucous_secretion%1:08:00:: 05415395 1 0 -mucoviscidosis%1:26:00:: 14155506 1 0 -mucuna%1:20:00:: 12550210 1 0 -mucuna_aterrima%1:20:00:: 12550408 1 0 -mucuna_deeringiana%1:20:00:: 12550408 1 0 -mucuna_pruriens_utilis%1:20:00:: 12550408 1 0 -mucus%1:08:00:: 05415395 1 2 -mud%1:10:00:: 06720137 2 0 -mud%1:27:00:: 14956325 1 23 -mud%2:35:00:: 01534745 1 0 -mud%2:35:01:: 01361884 2 0 -mud-beplastered%5:00:00:covered:00 01696734 1 1 -mud-brick%3:01:00:: 03140621 1 0 -mud-wrestle%2:35:00:: 01504910 1 0 -mud_bath%1:04:00:: 00258301 1 0 -mud_brick%1:06:00:: 03796522 1 0 -mud_dauber%1:05:00:: 02216365 1 0 -mud_digger%1:18:00:: 10019308 1 3 -mud_flat%1:15:00:: 08600618 1 1 -mud_hen%1:05:00:: 02018207 1 0 -mud_midget%1:20:00:: 11796573 1 0 -mud_pie%1:27:00:: 14780737 1 0 -mud_plantain%1:20:00:: 12610740 1 0 -mud_puddle%1:17:00:: 09362820 1 0 -mud_puppy%1:05:01:: 01634522 1 0 -mud_puppy%1:05:02:: 01632777 3 0 -mud_puppy%1:05:03:: 01633406 2 0 -mud_stain%1:07:00:: 04695805 1 0 -mud_turtle%1:05:00:: 01667114 1 0 -mudcat%1:05:00:: 02520147 2 0 -mudcat%1:13:00:: 07780038 1 0 -mudder%1:05:00:: 02385676 1 0 -muddied%5:00:00:impure:02 01909077 1 1 -muddiness%1:07:00:: 04703698 3 0 -muddiness%1:09:00:: 05683582 2 0 -muddiness%1:26:00:: 14535056 1 0 -muddle%1:26:00:: 14500567 1 1 -muddle%1:26:01:: 14409489 2 0 -muddle%2:31:00:: 00620532 2 0 -muddle%2:35:00:: 01419867 1 0 -muddled%5:00:00:confused:00 00436115 1 0 -muddleheaded%5:00:00:confused:00 00435872 1 1 -muddy%2:30:00:: 00543918 3 0 -muddy%2:31:00:: 00620926 2 0 -muddy%2:35:00:: 01252875 1 0 -muddy%5:00:00:dirty:01 00422620 2 1 -muddy%5:00:00:impure:02 01909077 3 0 -muddy%5:00:00:opaque:00 00433529 4 0 -muddy%5:00:00:wet:01 02548066 1 7 -muddy_up%2:35:00:: 01252875 1 0 -mudguard%1:06:00:: 03796605 1 1 -mudhif%1:06:00:: 03796848 1 0 -mudra%1:04:00:: 00335285 1 0 -mudskipper%1:05:00:: 02619550 1 0 -mudslide%1:11:00:: 07405579 1 0 -mudslinger%1:18:00:: 10336537 1 0 -mudspringer%1:05:00:: 02619550 1 0 -mudwrestle%2:35:00:: 01504910 1 0 -muenchen%1:15:00:: 08774227 1 0 -muenster%1:13:00:: 07854266 1 0 -muesli%1:13:00:: 07702957 1 0 -muezzin%1:18:00:: 10336730 1 0 -muff%1:04:00:: 00075912 2 0 -muff%1:06:00:: 03796974 1 1 -muff%2:41:00:: 02527651 2 0 -muff%2:41:01:: 02529896 1 0 -muffin%1:13:00:: 07690273 1 0 -muffin_man%1:18:00:: 10336904 1 0 -muffle%1:06:00:: 03797062 1 0 -muffle%2:35:00:: 01568630 1 2 -muffle%2:39:00:: 02191311 2 0 -muffled%5:00:00:covered:00 01696855 2 1 -muffled%5:00:00:soft:04 01454985 1 7 -muffler%1:06:00:: 03797182 2 0 -muffler%1:06:01:: 04218564 1 2 -muffler%1:06:02:: 03161450 3 0 -mufti%1:06:00:: 03797264 2 0 -mufti%1:18:00:: 10337020 1 0 -mug%1:06:00:: 03797390 4 0 -mug%1:08:00:: 05601357 3 0 -mug%1:18:00:: 09921409 2 0 -mug%1:23:00:: 13768440 1 0 -mug%2:40:00:: 02277663 1 0 -mug's_game%1:04:00:: 00788007 1 0 -mug_book%1:10:00:: 06511396 1 0 -mug_file%1:10:00:: 06511396 1 1 -mug_shot%1:06:00:: 03797548 1 0 -mug_up%2:31:00:: 00605783 1 0 -mugful%1:23:00:: 13768440 1 0 -muggee%1:18:00:: 10337134 1 0 -mugger%1:18:00:: 10337300 1 0 -mugginess%1:26:00:: 14535807 1 0 -mugging%1:04:00:: 00774009 1 0 -muggins%1:18:00:: 10100761 1 0 -muggy%5:00:00:wet:01 02549691 1 0 -mugho_pine%1:20:00:: 11612349 1 0 -mugil%1:05:00:: 02601589 1 0 -mugil_cephalus%1:05:00:: 02601767 1 0 -mugil_curema%1:05:00:: 02601921 1 0 -mugil_liza%1:05:00:: 02602059 1 0 -mugilidae%1:05:00:: 02601200 1 0 -mugiloidea%1:05:00:: 02600953 1 0 -mugo_pine%1:20:00:: 11612349 1 0 -mugshot%1:06:00:: 03797548 1 0 -mugwort%1:20:00:: 11928858 1 0 -mugwump%1:18:00:: 10337645 1 0 -mugwump%1:18:01:: 10337488 2 0 -muhammad%1:18:00:: 11184092 2 0 -muhammad%1:18:01:: 11194749 1 0 -muhammad_ali%1:18:00:: 10814574 2 0 -muhammad_ali%1:18:01:: 11184273 1 0 -muhammad_ali_jinnah%1:18:00:: 11085113 1 0 -muhammadan%1:18:00:: 10327002 1 0 -muhammadan%3:01:00:: 03035113 1 0 -muhammadan_calendar%1:28:00:: 15178841 1 0 -muhammadanism%1:09:00:: 06234825 1 0 -muhammedan%1:18:00:: 10327002 1 0 -muharram%1:28:00:: 15217308 1 0 -muharrum%1:28:00:: 15217308 1 0 -muhlenbergia%1:20:00:: 12125398 1 0 -muhlenbergia_schreberi%1:20:00:: 12125584 1 0 -muir%1:18:00:: 11194910 1 0 -muishond%1:05:00:: 02443808 1 0 -mujahadeen%1:14:00:: 08206663 1 0 -mujahadein%1:14:00:: 08206663 1 0 -mujahadin%1:14:00:: 08206663 1 0 -mujahedeen%1:14:00:: 08206663 1 0 -mujahedeen_khalq%1:14:00:: 08207001 1 0 -mujahedeen_kompak%1:14:00:: 08034579 1 0 -mujahedin%1:14:00:: 08206663 1 0 -mujahid%1:18:00:: 10337789 1 0 -mujahideen%1:14:00:: 08206663 1 0 -mujahidin%1:14:00:: 08206663 1 0 -mujahidin-e_khalq_organization%1:14:00:: 08034778 1 0 -mujik%1:18:00:: 10342770 1 0 -mujtihad%1:18:00:: 10337913 1 0 -mukalla%1:15:00:: 09165294 1 0 -mukataa%1:06:00:: 03797703 1 0 -mukden%1:15:00:: 08728462 1 0 -mulatto%1:18:00:: 09638454 1 0 -mulberry%1:13:00:: 07767171 2 0 -mulberry%1:20:00:: 12399132 1 0 -mulberry_family%1:20:00:: 12398682 1 0 -mulberry_fig%1:20:00:: 12403513 1 0 -mulberry_tree%1:20:00:: 12399132 1 0 -mulch%1:06:00:: 03797896 1 5 -mulch%2:35:00:: 01234379 1 0 -mulct%1:21:00:: 13301328 1 0 -mulct%2:40:00:: 02307412 2 0 -mulct%2:41:00:: 02572119 1 0 -mule%1:05:00:: 02390101 1 3 -mule%1:06:00:: 03798061 2 0 -mule's_ears%1:20:00:: 12032429 1 0 -mule_deer%1:05:00:: 02432511 1 0 -mule_driver%1:18:00:: 10338094 1 10 -mule_fat%1:20:00:: 11938556 1 0 -mule_skinner%1:18:00:: 10338094 1 0 -muleteer%1:18:00:: 10338094 1 0 -muliebrity%1:07:00:: 04667406 2 0 -muliebrity%1:26:00:: 14425715 1 0 -mulish%5:00:00:stubborn:00 02328297 1 0 -mulishly%4:02:00:: 00198845 1 0 -mulishness%1:07:00:: 04908835 1 0 -mull%1:15:00:: 08894011 2 0 -mull%1:17:00:: 09362945 1 0 -mull%2:31:00:: 00630380 1 1 -mull%2:39:00:: 02196540 2 0 -mull_over%2:31:00:: 00630380 1 0 -mulla%1:18:00:: 10338231 1 0 -mullah%1:18:00:: 10338231 1 0 -mullah_mohammed_omar%1:18:00:: 11195073 1 0 -mullah_omar%1:18:00:: 11195073 1 0 -mulled_cider%1:13:00:: 07922041 1 0 -mulled_wine%1:13:00:: 07926920 1 0 -mullein%1:20:00:: 12888906 1 0 -mullein_pink%1:20:00:: 11812094 1 0 -muller%1:06:00:: 03919430 8 0 -muller%1:06:01:: 03798165 9 0 -muller%1:18:00:: 11195295 6 0 -muller%1:18:01:: 11195452 5 0 -muller%1:18:02:: 11195619 4 0 -muller%1:18:03:: 11195771 3 0 -muller%1:18:04:: 11195913 2 0 -muller%1:18:05:: 11196046 1 0 -muller%1:18:06:: 10339504 7 0 -mullet%1:05:01:: 02599958 3 0 -mullet%1:05:02:: 02601344 2 0 -mullet%1:13:00:: 07784367 1 0 -mullidae%1:05:00:: 02599784 1 0 -mulligan%1:13:00:: 07590068 1 0 -mulligan_stew%1:13:00:: 07590068 1 0 -mulligatawny%1:13:00:: 07586318 1 0 -mullion%1:06:00:: 03798268 1 0 -mullioned%5:00:00:divided:00 02482159 1 0 -mulloidichthys%1:05:00:: 02600657 1 0 -mulloidichthys_martinicus%1:05:00:: 02600798 1 0 -mulloway%1:05:00:: 02596067 1 0 -mullus%1:05:00:: 02600135 1 0 -mullus_auratus%1:05:00:: 02600503 1 0 -mullus_surmuletus%1:05:00:: 02600298 1 0 -multi-billionaire%1:18:00:: 10529823 1 0 -multi-color%5:00:00:colored:00 00398978 1 0 -multi-colored%5:00:00:colored:00 00398978 1 0 -multi-colour%5:00:00:colored:00 00398978 1 0 -multi-coloured%5:00:00:colored:00 00398978 1 0 -multi-ethnic%5:00:00:social:00 02249337 1 0 -multi-seeded%5:00:00:seedy:00 02255394 1 0 -multi-stemmed%5:00:00:caulescent:00 00321614 1 0 -multi-valued%5:00:00:ambiguous:00 00103302 1 0 -multibank_holding_company%1:14:00:: 08185643 1 0 -multicellular%5:00:00:cellular:00 00328017 1 0 -multichannel_recorder%1:06:00:: 03798442 1 1 -multicollinearity%1:09:00:: 06027843 1 0 -multicolor%5:00:00:colored:00 00398978 1 0 -multicolored%5:00:00:colored:00 00398978 1 0 -multicolour%5:00:00:colored:00 00398978 1 0 -multicoloured%5:00:00:colored:00 00398978 1 0 -multicultural%3:01:00:: 02872776 1 0 -multiculturalism%1:09:00:: 05964805 1 0 -multidimensional%3:00:00:: 00660019 1 1 -multidimensional_language%1:10:00:: 06900282 1 0 -multiengine_airplane%1:06:00:: 03798610 1 0 -multiengine_plane%1:06:00:: 03798610 1 0 -multiethnic%5:00:00:social:00 02249337 1 0 -multifaceted%5:00:00:varied:00 02506922 1 0 -multifactorial%5:00:00:complex:00 02178837 1 0 -multifarious%5:00:00:varied:00 02506922 1 0 -multifariously%4:02:00:: 00052231 1 0 -multifariousness%1:07:00:: 04751305 1 0 -multiflora%1:20:00:: 12622072 1 0 -multiflora_rose%1:20:00:: 12622072 1 0 -multifocal_iol%1:06:00:: 03798729 1 0 -multifocal_lens_implant%1:06:00:: 03798729 1 0 -multiform%3:00:00:: 01966853 1 0 -multilane%3:00:00:: 02221362 1 0 -multilateral%3:00:00:: 00237240 1 1 -multilaterally%4:02:00:: 00253306 1 0 -multilevel%3:01:00:: 02888198 1 0 -multilingual%3:00:00:: 01545571 1 0 -multimedia%1:10:00:: 06261744 1 0 -multimedia_system%1:10:00:: 06261744 1 0 -multinational%5:00:00:international:00 01569166 1 0 -multinomial%1:09:00:: 05861855 1 0 -multinomial%3:01:00:: 03100751 1 0 -multinucleate%3:01:00:: 02882467 1 0 -multiparous%3:00:00:: 02475292 1 0 -multipartite%5:00:00:multilateral:00 00238310 1 0 -multiphase%3:01:00:: 02888295 1 0 -multiple%1:09:00:: 05859991 1 0 -multiple%3:00:00:: 02215977 1 6 -multiple-choice%3:00:00:: 02220788 1 1 -multiple_correlation%1:09:00:: 06027613 1 0 -multiple_correlation_coefficient%1:09:00:: 06033692 1 0 -multiple_fruit%1:20:00:: 13137672 1 0 -multiple_mononeuropathy%1:26:00:: 14209087 1 0 -multiple_myeloma%1:26:00:: 14248422 1 0 -multiple_neuritis%1:26:00:: 14353314 1 0 -multiple_personality%1:26:00:: 14394783 1 0 -multiple_regression%1:09:00:: 06027613 1 0 -multiple_sclerosis%1:26:00:: 14094068 1 2 -multiple_star%1:17:00:: 09363064 1 0 -multiple_voting%1:04:00:: 00184802 1 0 -multiplex%1:06:00:: 03798982 2 0 -multiplex%1:10:00:: 06277025 1 0 -multiplex%5:00:00:complex:00 02179044 2 0 -multiplex%5:00:00:multiple:00 02218314 1 0 -multiplex_operation%1:22:00:: 13517717 1 0 -multiplexer%1:06:00:: 03799113 1 0 -multiplicand%1:23:00:: 13733979 1 0 -multiplication%1:04:00:: 00871576 3 0 -multiplication%1:04:01:: 00849982 1 1 -multiplication%1:22:00:: 13517843 2 0 -multiplicative%5:00:00:increasing:00 02536123 1 0 -multiplicative_inverse%1:24:00:: 13843173 1 0 -multiplicatively%4:02:00:: 00083817 1 0 -multiplicity%1:07:00:: 05121908 2 0 -multiplicity%1:07:02:: 05098750 1 6 -multiplied%5:00:00:increased:00 00881337 1 1 -multiplier%1:23:00:: 13733818 1 0 -multiplier_factor%1:23:00:: 13733818 1 0 -multiplier_onion%1:20:00:: 12433178 1 0 -multiply%2:29:00:: 00056334 3 1 -multiply%2:29:01:: 00055142 4 0 -multiply%2:30:00:: 00247390 2 7 -multiply%2:31:00:: 00641672 1 18 -multiply%4:02:00:: 00083666 1 0 -multipotent%5:00:00:potent:00 01824653 1 0 -multiprocessing%1:22:00:: 13518140 1 0 -multiprocessor%1:06:00:: 03799240 1 0 -multiprogramming%1:22:00:: 13518279 1 0 -multipurpose%5:00:00:useful:00 02496323 1 0 -multiracial%5:00:00:racial:00 01928114 1 0 -multistage%1:28:00:: 15291110 1 0 -multistage_rocket%1:06:00:: 03799375 1 0 -multistorey%5:00:00:high-rise:00 01218548 1 0 -multistoried%5:00:00:high-rise:00 01218548 1 0 -multistory%5:00:00:high-rise:00 01218548 1 0 -multitude%1:14:00:: 08182716 2 0 -multitude%1:14:01:: 08180190 3 0 -multitude%1:23:00:: 13775093 1 1 -multitudinous%5:00:00:incalculable:00 00301951 1 1 -multitudinousness%1:07:00:: 05122295 1 0 -multivalence%1:26:00:: 14570330 1 0 -multivalency%1:26:00:: 14570330 1 0 -multivalent%3:00:00:: 01547007 1 0 -multivalent%3:00:04:: 01546349 2 0 -multivalent%5:00:00:ambiguous:00 00103302 3 0 -multivariate%5:00:00:variable:00 02505004 1 0 -multivariate_analysis%1:09:00:: 06021247 1 0 -multiversity%1:14:00:: 08286801 1 0 -multivitamin%1:13:00:: 07938007 1 0 -multivitamin_pill%1:13:00:: 07938007 1 0 -mulwi%1:10:00:: 06984746 1 0 -mum%1:07:00:: 04652345 3 0 -mum%1:18:00:: 10278128 2 0 -mum%1:20:00:: 11961100 1 0 -mum%5:00:00:uncommunicative:00 00501820 1 1 -mumbai%1:15:00:: 08903872 1 0 -mumble%1:10:00:: 07127252 1 0 -mumble%2:32:00:: 01044533 1 6 -mumble%2:34:00:: 01175224 2 0 -mumble-the-peg%1:04:00:: 00486490 1 0 -mumbler%1:18:00:: 10342543 1 0 -mumblety-peg%1:04:00:: 00486490 1 0 -mumbling%1:04:00:: 00279235 2 0 -mumbling%1:10:00:: 07132634 1 0 -mumbo_jumbo%1:10:00:: 06612420 1 1 -mumification_necrosis%1:26:00:: 14313661 1 0 -mummer%1:18:00:: 10318892 1 0 -mummery%1:10:00:: 06609403 1 0 -mummichog%1:05:00:: 01447139 1 0 -mummification%1:04:00:: 00820583 3 0 -mummification%1:26:00:: 14578634 1 0 -mummification%1:26:01:: 14313661 2 0 -mummify%2:30:00:: 00242205 3 0 -mummify%2:40:00:: 02227127 2 0 -mummify%2:42:00:: 02680358 1 0 -mummy%1:08:00:: 05218630 2 0 -mummy%1:18:00:: 10278128 1 0 -mummy-brown%5:00:00:chromatic:00 00383957 1 0 -mumps%1:26:00:: 14138178 1 0 -mumpsimus%1:09:00:: 05836714 1 0 -munch%1:04:00:: 00841393 2 0 -munch%1:18:00:: 11196208 1 0 -munch%2:34:00:: 01201693 1 0 -munchausen%1:18:00:: 11196305 1 0 -munchausen's_syndrome%1:26:00:: 14307275 1 0 -munchausen_syndrome%1:26:00:: 14307275 1 0 -munchener%1:13:00:: 07887304 1 0 -muncher%1:18:00:: 10338391 1 0 -munchhausen%1:18:00:: 11196305 1 0 -muncie%1:15:00:: 09085967 1 0 -munda%1:10:00:: 06936823 1 0 -munda-mon-khmer%1:10:00:: 06936620 1 0 -mundane%5:00:00:earthly:00 01181446 3 0 -mundane%5:00:00:ordinary:00 01674242 1 2 -mundane%5:00:00:worldly:00 02578035 2 0 -mundanely%4:02:00:: 00404749 2 0 -mundanely%4:02:01:: 00404879 1 0 -mundaneness%1:07:00:: 04880273 1 0 -mundaneness%1:07:01:: 04794751 2 0 -mundanity%1:07:00:: 04880273 1 0 -mundanity%1:07:01:: 04794751 2 0 -mung%1:20:00:: 12578255 1 0 -mung_bean%1:20:00:: 12578255 1 0 -mungo_park%1:18:00:: 11222655 1 0 -munich%1:15:00:: 08774227 1 1 -munich_beer%1:13:00:: 07887304 1 0 -municipal%3:01:00:: 02697452 1 11 -municipal%5:00:00:domestic:00 01038580 2 0 -municipal_bond%1:21:00:: 13338657 1 0 -municipal_center%1:15:00:: 08543496 1 0 -municipal_government%1:14:00:: 08225736 1 0 -municipal_note%1:21:00:: 13415043 1 0 -municipality%1:14:00:: 08225581 2 0 -municipality%1:15:00:: 08626283 1 0 -municipally%4:02:00:: 00130227 1 0 -munificence%1:07:00:: 04832716 1 0 -munificent%5:00:00:generous:01 01111965 1 0 -munificently%4:02:00:: 00196692 1 0 -muniments%1:10:00:: 06546931 1 0 -munition%1:06:00:: 04566257 1 1 -munition%1:06:01:: 03385557 3 0 -munition%1:06:02:: 03799610 2 0 -munition%2:40:00:: 02334756 1 0 -munitions_industry%1:14:00:: 08068924 1 0 -munj%1:20:00:: 12133151 1 0 -munja%1:20:00:: 12133151 1 0 -munjeet%1:20:00:: 12661045 1 0 -munjuk%1:10:00:: 06984746 1 0 -munro%1:18:00:: 11196627 1 0 -muntiacus%1:05:00:: 02434834 1 0 -muntingia%1:20:00:: 12193964 1 0 -muntingia_calabura%1:20:00:: 12194147 1 0 -muntjac%1:05:00:: 02434954 1 0 -muntz_metal%1:27:00:: 14720238 1 0 -muon%1:17:00:: 09363214 1 0 -muraenidae%1:05:00:: 02527145 1 0 -mural%1:06:00:: 03799710 1 0 -mural%3:01:00:: 02879424 1 0 -muralist%1:18:00:: 10338498 1 0 -muramidase%1:27:00:: 14944455 1 0 -murder%1:04:00:: 00220522 1 45 -murder%2:30:00:: 00548750 2 1 -murder%2:41:00:: 02482425 1 5 -murder_charge%1:10:00:: 07235574 1 0 -murder_conviction%1:04:00:: 01194021 1 0 -murder_indictment%1:10:00:: 07235574 1 0 -murder_mystery%1:10:00:: 06371145 1 0 -murder_suspect%1:18:00:: 10339251 1 1 -murdered%5:00:00:dead:01 00097906 1 1 -murderee%1:18:00:: 10338628 1 0 -murderer%1:18:00:: 10338707 1 12 -murderess%1:18:00:: 10339179 1 0 -murderous%5:00:00:bloody:00 00248837 1 0 -murderously%4:02:00:: 00273306 2 0 -murderously%4:02:01:: 00405016 1 0 -murderousness%1:07:00:: 04830904 2 0 -murderousness%1:12:00:: 07547547 1 0 -murdoch%1:18:00:: 11196764 2 0 -murdoch%1:18:01:: 11196934 1 0 -muriatic_acid%1:27:00:: 14957057 1 0 -muridae%1:05:00:: 02331479 1 0 -muriel_sarah_spark%1:18:00:: 11309613 1 0 -muriel_spark%1:18:00:: 11309613 1 0 -murillo%1:18:00:: 11197633 1 0 -murine%1:05:00:: 02331842 1 0 -murine%3:01:00:: 02867611 1 0 -murine_typhus%1:26:00:: 14141238 1 0 -muritaniya%1:15:00:: 08966820 1 0 -murk%1:26:00:: 14521648 1 0 -murk%2:30:00:: 00312060 1 0 -murkily%4:02:00:: 00211964 2 0 -murkily%4:02:01:: 00405169 1 0 -murkiness%1:07:00:: 04703698 2 0 -murkiness%1:26:00:: 14521648 1 0 -murky%5:00:00:opaque:00 00433529 1 2 -murky%5:00:00:shaded:01 00276689 2 0 -murmansk%1:15:00:: 09008723 1 0 -murmur%1:10:00:: 07211092 4 0 -murmur%1:10:01:: 07114154 2 1 -murmur%1:11:00:: 07386920 1 2 -murmur%1:26:00:: 14334814 3 0 -murmur%2:32:00:: 01044114 1 15 -murmur%2:32:01:: 00909219 2 0 -murmur_vowel%1:10:00:: 07114154 1 0 -murmuration%1:11:00:: 07386920 1 0 -murmurer%1:18:00:: 10342543 1 0 -murmuring%1:10:00:: 07211092 2 0 -murmuring%1:11:00:: 07386920 1 1 -murmuring%5:00:00:soft:04 01456038 1 0 -murmurous%5:00:00:soft:04 01456221 1 0 -muroidea%1:05:00:: 02330830 1 0 -murphy%1:13:00:: 07710616 1 0 -murphy's_law%1:10:00:: 07153502 1 0 -murphy_bed%1:06:00:: 03799876 1 0 -murrain%1:26:00:: 14274592 1 0 -murray%1:17:00:: 09363420 3 0 -murray%1:18:00:: 11197099 2 0 -murray%1:18:01:: 11197417 1 0 -murray_gell-mann%1:18:00:: 10993777 1 0 -murray_river%1:17:00:: 09363420 1 0 -murre%1:05:00:: 02047260 1 0 -murrow%1:18:00:: 11197743 1 0 -murrumbidgee%1:17:00:: 09363620 1 0 -murrumbidgee_river%1:17:00:: 09363620 1 0 -mus%1:05:00:: 02331960 1 0 -mus_musculus%1:05:00:: 02332156 1 0 -mus_rose%1:20:00:: 12171098 1 0 -musa%1:20:00:: 12352150 1 0 -musa_acuminata%1:20:00:: 12352639 1 0 -musa_basjoo%1:20:00:: 12352844 1 0 -musa_ensete%1:20:00:: 12353754 1 0 -musa_paradisiaca%1:20:00:: 12352990 1 0 -musa_paradisiaca_sapientum%1:20:00:: 12353203 1 0 -musa_textilis%1:20:00:: 12353431 1 0 -musaceae%1:20:00:: 12351975 1 0 -musales%1:20:00:: 12350234 1 0 -musca%1:05:00:: 02190648 2 0 -musca%1:17:00:: 09363810 1 0 -musca_domestica%1:05:00:: 02190790 1 0 -musca_volitans%1:26:00:: 14365119 1 0 -muscadel%1:13:02:: 07901457 1 0 -muscadelle%1:13:02:: 07901457 1 0 -muscadet%1:13:00:: 07896893 2 0 -muscadet%1:20:00:: 13147153 1 0 -muscadine%1:13:00:: 07759424 2 0 -muscadine%1:20:00:: 13145250 1 0 -muscae_volitantes%1:26:00:: 14365119 1 0 -muscardinus%1:05:00:: 02353037 1 0 -muscardinus_avellanarius%1:05:00:: 02353172 1 0 -muscari%1:20:00:: 12460549 1 0 -muscari_comosum%1:20:00:: 12461109 1 0 -muscari_neglectum%1:20:00:: 12460957 1 0 -muscat%1:13:01:: 07760153 4 0 -muscat%1:13:02:: 07901457 3 0 -muscat%1:15:00:: 08975435 2 0 -muscat%1:20:00:: 13147788 1 0 -muscat_and_oman%1:15:00:: 08975106 1 0 -muscat_grape%1:13:00:: 07760153 1 0 -muscatel%1:13:01:: 07760153 2 0 -muscatel%1:13:02:: 07901457 1 0 -musci%1:20:00:: 11538935 1 0 -muscicapa%1:05:00:: 01556040 1 0 -muscicapa_grisola%1:05:00:: 01556182 1 0 -muscicapa_striata%1:05:00:: 01556182 1 0 -muscicapidae%1:05:00:: 01555586 1 0 -muscidae%1:05:00:: 02190015 1 0 -muscivora%1:05:00:: 01555172 1 0 -muscivora-forficata%1:05:00:: 01555305 1 0 -muscle%1:07:00:: 05030418 5 0 -muscle%1:07:01:: 05198132 4 0 -muscle%1:08:00:: 05289297 1 43 -muscle%1:08:01:: 05289057 2 2 -muscle%1:18:00:: 10339350 3 0 -muscle%2:38:00:: 02019431 1 0 -muscle-bound%5:00:00:inflexible:01 01023533 1 0 -muscle-builder%1:18:00:: 09862845 1 0 -muscle_builder%1:18:00:: 09862845 1 0 -muscle_building%1:04:00:: 00625993 1 0 -muscle_cell%1:08:00:: 05459232 1 0 -muscle_contraction%1:04:00:: 00369802 1 0 -muscle_fiber%1:08:00:: 05459232 1 2 -muscle_fibre%1:08:00:: 05459232 1 0 -muscle_into%2:38:00:: 01873417 1 1 -muscle_memory%1:09:00:: 05761277 1 0 -muscle_relaxant%1:06:00:: 03800001 1 0 -muscle_sense%1:09:00:: 05658985 1 0 -muscle_spasm%1:26:00:: 14360459 1 0 -muscle_system%1:08:00:: 05461816 1 0 -muscle_tone%1:26:00:: 14545215 1 1 -musclebuilder%1:18:00:: 09862845 1 0 -musclebuilding%1:04:00:: 00625993 1 0 -muscleman%1:18:00:: 10339350 1 1 -muscleman%1:18:01:: 09862845 2 0 -muscoidea%1:05:00:: 02189822 1 0 -muscovite%1:18:00:: 09729062 2 0 -muscovite%1:27:00:: 14683085 1 0 -muscovite%3:01:00:: 03088695 1 0 -muscovy%1:15:00:: 09003918 1 0 -muscovy_duck%1:05:00:: 01852671 1 0 -muscular%3:00:04:: 00828336 2 3 -muscular%3:01:00:: 02882570 1 6 -muscular%5:00:00:powerful:00 01826828 3 1 -muscular%5:00:00:strong:00 02321809 4 0 -muscular_contraction%1:04:00:: 00369802 1 0 -muscular_dystrophy%1:26:00:: 14160365 1 2 -muscular_structure%1:08:00:: 05461816 1 0 -muscular_tissue%1:08:00:: 05289057 1 0 -muscular_tonus%1:26:00:: 14545215 1 0 -muscularity%1:07:00:: 05030418 2 0 -muscularity%1:07:01:: 04633197 3 0 -muscularity%1:26:00:: 14044719 1 0 -musculature%1:08:00:: 05461816 1 1 -musculophrenic_artery%1:08:00:: 05352601 1 0 -musculophrenic_vein%1:08:00:: 05374101 1 0 -musculoskeletal%3:01:00:: 02882726 1 0 -musculoskeletal_system%1:08:00:: 05462057 1 0 -musculospiral_nerve%1:08:00:: 05504807 1 0 -musculus%1:08:00:: 05289297 1 0 -musculus_abductor_digiti_minimi_manus%1:08:00:: 05291230 1 0 -musculus_abductor_digiti_minimi_pedis%1:08:00:: 05291373 1 0 -musculus_abductor_hallucis%1:08:00:: 05291495 1 0 -musculus_abductor_pollicis%1:08:00:: 05291604 1 0 -musculus_adductor_brevis%1:08:00:: 05291945 1 0 -musculus_adductor_hallucis%1:08:00:: 05292359 1 0 -musculus_adductor_longus%1:08:00:: 05292073 1 0 -musculus_adductor_magnus%1:08:00:: 05292200 1 0 -musculus_anconeus%1:08:00:: 05292856 1 0 -musculus_articularis_cubiti%1:08:00:: 05293773 1 0 -musculus_articularis_genus%1:08:00:: 05293944 1 0 -musculus_biceps_brachii%1:08:00:: 05579436 1 0 -musculus_biceps_femoris%1:08:00:: 05579053 1 0 -musculus_buccinator%1:08:00:: 05294068 1 0 -musculus_deltoideus%1:08:00:: 05549350 1 0 -musculus_intercostalis%1:08:00:: 05552287 1 0 -musculus_obliquus_externus_abdominis%1:08:00:: 05557839 1 0 -musculus_pectoralis%1:08:00:: 05551711 1 0 -musculus_pectoralis_major%1:08:00:: 05551939 1 0 -musculus_pectoralis_minor%1:08:00:: 05552106 1 0 -musculus_quadriceps_femoris%1:08:00:: 05294819 1 0 -musculus_rhomboideus_major%1:08:00:: 05575185 1 0 -musculus_rhomboideus_minor%1:08:00:: 05575374 1 0 -musculus_sartorius%1:08:00:: 05589896 1 0 -musculus_scalenus%1:08:00:: 05590144 1 0 -musculus_serratus_anterior%1:08:00:: 05550494 1 0 -musculus_serratus_posterior%1:08:00:: 05550688 1 0 -musculus_sphincter_ani%1:08:00:: 05571713 1 0 -musculus_sphincter_ani_externus%1:08:00:: 05571904 1 0 -musculus_sphincter_ani_internus%1:08:00:: 05572057 1 0 -musculus_sphincter_ductus_choledochi%1:08:00:: 05572629 1 0 -musculus_sphincter_ductus_pancreatici%1:08:00:: 05572782 1 0 -musculus_sphincter_pupillae%1:08:00:: 05572940 1 0 -musculus_sphincter_pylori%1:08:00:: 05573099 1 0 -musculus_sphincter_urethrae%1:08:00:: 05572227 1 0 -musculus_sphincter_vesicae%1:08:00:: 05572396 1 0 -musculus_sternocleidomastoideus%1:08:00:: 05590366 1 0 -musculus_temporalis%1:08:00:: 05602304 1 0 -musculus_teres_major%1:08:00:: 05590939 1 0 -musculus_teres_minor%1:08:00:: 05591096 1 0 -musculus_tibialis%1:08:00:: 05591256 1 0 -musculus_transversalis_abdominis%1:08:00:: 05558078 1 0 -musculus_trapezius%1:08:00:: 05591770 1 0 -musculus_triceps_brachii%1:08:00:: 05579753 1 0 -musd%1:10:00:: 06703420 1 0 -muse%1:09:00:: 05835162 2 0 -muse%1:18:00:: 09565999 1 1 -muse%2:31:00:: 00630380 1 10 -muser%1:18:00:: 10339504 1 0 -musette%1:06:00:: 03800371 1 0 -musette_pipe%1:06:00:: 03800485 1 0 -museum%1:06:00:: 03800563 1 3 -musgoi%1:10:00:: 06984446 1 0 -musgu%1:10:00:: 06984746 1 0 -mush%1:04:00:: 00308208 4 0 -mush%1:10:00:: 06775969 3 0 -mush%1:13:00:: 07703333 2 0 -mush%1:17:00:: 09400826 1 0 -mush%2:38:00:: 01939406 2 0 -mush%2:38:01:: 01939678 1 0 -musher%1:18:00:: 10339717 1 0 -mushiness%1:07:00:: 04939198 1 0 -mushiness%1:07:01:: 04627506 2 0 -mushroom%1:13:00:: 07734744 5 0 -mushroom%1:19:00:: 11442073 4 0 -mushroom%1:20:00:: 13001041 1 0 -mushroom%1:20:01:: 13000891 2 0 -mushroom%1:20:02:: 12997919 3 0 -mushroom%2:30:00:: 00231445 2 0 -mushroom%2:35:00:: 01382437 1 0 -mushroom-shaped_cloud%1:19:00:: 11442073 1 0 -mushroom_anchor%1:06:00:: 03800772 1 0 -mushroom_cloud%1:19:00:: 11442073 1 0 -mushroom_coral%1:05:00:: 01917882 1 0 -mushroom_pimple%1:20:00:: 12966048 1 0 -mushroom_poisoning%1:26:00:: 14069057 1 0 -mushroom_sauce%1:13:00:: 07838811 1 0 -mushroom_wine_sauce%1:13:00:: 07831821 1 0 -mushy%5:00:00:emotional:00 00854413 2 0 -mushy%5:00:00:soft:01 01154639 1 0 -mushy_peas%1:13:00:: 07726525 1 0 -musial%1:18:00:: 11197944 1 0 -music%1:04:00:: 00543233 3 2 -music%1:04:02:: 01162529 5 0 -music%1:09:00:: 05718556 2 12 -music%1:09:01:: 05718935 4 0 -music%1:10:00:: 07020895 1 51 -music_box%1:06:00:: 03801353 1 0 -music_critic%1:18:00:: 10339856 1 0 -music_department%1:14:00:: 08117540 1 0 -music_director%1:18:00:: 09952539 1 0 -music_genre%1:10:00:: 07071942 1 0 -music_hall%1:06:00:: 03801533 1 1 -music_hall%1:10:00:: 07020423 2 0 -music_lesson%1:04:00:: 00889760 1 0 -music_lover%1:18:00:: 09951616 1 1 -music_of_the_spheres%1:09:00:: 05719466 1 0 -music_paper%1:27:00:: 14957152 1 0 -music_rack%1:06:00:: 03801760 1 0 -music_school%1:06:00:: 03801671 2 0 -music_school%1:14:00:: 08283649 1 0 -music_stand%1:06:00:: 03801760 1 0 -music_stool%1:06:00:: 03801880 1 0 -music_teacher%1:18:00:: 10341343 1 0 -musical%1:10:00:: 07019172 1 2 -musical%3:00:01:: 01504625 3 0 -musical%3:00:02:: 01505462 2 2 -musical%3:00:04:: 01501113 4 0 -musical%3:01:00:: 02867783 1 21 -musical_accompaniment%1:10:00:: 07031752 1 0 -musical_arrangement%1:10:00:: 07038400 1 0 -musical_box%1:06:00:: 03801353 1 0 -musical_chairs%1:04:00:: 00486670 1 0 -musical_chairs%1:04:01:: 00339173 2 0 -musical_comedy%1:10:00:: 07019172 1 4 -musical_composition%1:10:00:: 07037465 1 1 -musical_drama%1:10:00:: 07026920 1 0 -musical_genre%1:10:00:: 07071942 1 0 -musical_group%1:14:00:: 08246613 1 0 -musical_harmony%1:10:00:: 07027180 1 0 -musical_instrument%1:06:00:: 03800933 1 1 -musical_instrument_digital_interface%1:10:00:: 06666030 1 0 -musical_interval%1:10:00:: 06858779 1 0 -musical_mode%1:10:00:: 06861630 1 0 -musical_notation%1:10:00:: 06814870 1 0 -musical_note%1:10:00:: 06865345 1 0 -musical_octave%1:10:00:: 06859401 1 0 -musical_organisation%1:14:00:: 08246613 1 0 -musical_organization%1:14:00:: 08246613 1 0 -musical_passage%1:10:00:: 07044917 1 0 -musical_perception%1:09:00:: 05711791 1 0 -musical_performance%1:04:00:: 00100253 1 0 -musical_phrase%1:10:00:: 07045353 1 0 -musical_rhythm%1:10:00:: 07086518 1 0 -musical_scale%1:10:00:: 06856568 1 0 -musical_score%1:10:00:: 06815714 1 0 -musical_soiree%1:14:00:: 08255373 1 0 -musical_style%1:10:00:: 07071942 1 0 -musical_theater%1:10:00:: 07019172 1 2 -musical_theme%1:10:00:: 07029247 1 0 -musical_time%1:28:00:: 15122011 1 0 -musical_time_signature%1:10:00:: 06864524 1 0 -musicality%1:07:00:: 04983402 1 0 -musically%4:02:01:: 00405269 1 1 -musicalness%1:07:00:: 04983402 1 0 -musician%1:18:00:: 10339966 2 3 -musician%1:18:01:: 10340312 1 15 -musicianship%1:09:00:: 05636048 1 2 -musicogenic_epilepsy%1:26:00:: 14089240 1 0 -musicological%3:01:00:: 02867945 1 0 -musicologically%4:02:00:: 00134115 1 0 -musicologist%1:18:00:: 10341243 1 0 -musicology%1:09:00:: 06171388 1 0 -musing%1:09:00:: 05785508 1 1 -musing%5:00:00:thoughtful:00 02419434 1 0 -musingly%4:02:00:: 00405519 1 0 -musjid%1:06:00:: 03724756 1 0 -musk%1:09:00:: 05714332 2 0 -musk%1:27:00:: 14846646 1 0 -musk-scented%5:00:00:odorous:00 01056711 1 0 -musk_clover%1:20:00:: 12689305 1 0 -musk_deer%1:05:00:: 02435216 1 0 -musk_duck%1:05:00:: 01852671 1 0 -musk_hog%1:05:00:: 02397529 1 0 -musk_kangaroo%1:05:00:: 01879837 1 0 -musk_mallow%1:20:01:: 12171098 2 0 -musk_mallow%1:20:02:: 12172481 1 0 -musk_ox%1:05:00:: 02411206 1 0 -musk_rose%1:20:00:: 12622297 1 0 -musk_sheep%1:05:00:: 02411206 1 0 -musk_thistle%1:20:00:: 11944954 1 0 -musk_turtle%1:05:00:: 01667432 1 0 -muskat%1:20:00:: 13147788 1 0 -muskellunge%1:05:00:: 02561514 2 0 -muskellunge%1:13:00:: 07779535 1 0 -musket%1:06:00:: 03802007 1 9 -musket_ball%1:06:00:: 03802228 1 2 -musketeer%1:18:00:: 10341446 1 0 -musketry%1:09:00:: 05643611 2 0 -musketry%1:14:00:: 08389438 1 13 -muskhogean%1:10:00:: 06913313 2 0 -muskhogean%1:18:00:: 09662038 1 0 -muskhogean_language%1:10:00:: 06913313 1 0 -muskiness%1:07:00:: 04981044 1 0 -muskmelon%1:13:00:: 07755707 2 0 -muskmelon%1:20:00:: 12164363 1 0 -muskogean%1:10:00:: 06913313 2 0 -muskogean%1:18:00:: 09662038 1 0 -muskogean_language%1:10:00:: 06913313 1 0 -muskogee%1:10:00:: 06912737 3 0 -muskogee%1:15:00:: 09132474 2 0 -muskogee%1:18:00:: 09662325 1 0 -muskrat%1:05:00:: 02338145 2 0 -muskrat%1:27:00:: 14765575 1 0 -muskrat_fur%1:27:00:: 14765575 1 0 -muskus_grass%1:20:00:: 12689305 1 0 -muskwood%1:20:00:: 11998317 1 0 -musky%5:00:00:fragrant:00 01053046 1 0 -musky-scented%5:00:00:odorous:00 01056711 1 0 -muslim%1:18:00:: 09682291 1 0 -muslim%3:01:00:: 02923510 1 0 -muslim_calendar%1:28:00:: 15178841 1 0 -muslim_ummah%1:14:00:: 08224684 1 0 -muslimah%1:18:00:: 10341573 1 0 -muslimism%1:09:00:: 06234825 2 0 -muslimism%1:14:00:: 08095647 1 0 -muslin%1:06:00:: 03802393 1 0 -musnud%1:06:00:: 03802507 1 0 -musophaga%1:05:00:: 01825155 1 0 -musophagidae%1:05:00:: 01825009 1 0 -musophobia%1:26:00:: 14385325 1 0 -musquash%1:05:00:: 02338145 1 0 -muss%1:26:00:: 14500047 1 0 -muss%2:35:00:: 01473886 1 0 -mussel%1:05:00:: 01963571 2 0 -mussel%1:13:00:: 07783550 1 0 -mussel_shrimp%1:05:00:: 01997825 1 0 -musset%1:18:00:: 11198094 1 0 -mussiness%1:26:00:: 14500047 1 0 -mussitate%2:32:00:: 01044533 1 0 -mussitation%1:11:00:: 07386920 1 0 -mussolini%1:18:00:: 11198253 1 0 -mussorgsky%1:18:00:: 11198375 1 0 -mussy%5:00:00:untidy:00 02426042 1 0 -must%1:07:00:: 04928194 3 0 -must%1:13:00:: 07924655 2 0 -must%1:17:00:: 09363970 1 0 -must%5:00:00:essential:00 00901547 1 0 -mustache%1:08:00:: 05262185 1 6 -mustache_cup%1:06:00:: 03802643 1 0 -mustached%5:00:00:unshaven:00 02154334 1 1 -mustachio%1:08:00:: 05262534 1 0 -mustachioed%5:00:00:unshaven:00 02154334 1 0 -mustafa_kemal%1:18:00:: 10826952 1 0 -mustagh%1:17:00:: 09323824 1 0 -mustagh_range%1:17:00:: 09323824 1 0 -mustang%1:05:00:: 02380583 1 0 -mustang_mint%1:20:00:: 12859679 1 0 -mustard%1:13:00:: 07819480 2 0 -mustard%1:13:01:: 07713763 3 0 -mustard%1:20:00:: 11878283 1 0 -mustard_agent%1:27:00:: 14957270 1 0 -mustard_family%1:20:00:: 11867525 1 0 -mustard_gas%1:27:00:: 14957270 1 0 -mustard_greens%1:13:00:: 07713763 1 0 -mustard_oil%1:20:00:: 11878520 1 0 -mustard_plaster%1:06:00:: 03802800 1 0 -mustard_sauce%1:13:00:: 07838905 1 0 -mustard_seed%1:13:00:: 07819303 1 0 -mustard_tree%1:20:00:: 12908230 1 0 -mustard_tree%1:20:01:: 12299640 2 0 -mustela%1:05:00:: 02441723 1 0 -mustela_erminea%1:05:00:: 02442172 1 0 -mustela_frenata%1:05:00:: 02442668 1 0 -mustela_nigripes%1:05:00:: 02443484 1 0 -mustela_nivalis%1:05:00:: 02442572 1 0 -mustela_putorius%1:05:00:: 02443114 1 0 -mustela_rixosa%1:05:00:: 02442446 1 0 -mustela_vison%1:05:00:: 02443015 1 0 -mustelid%1:05:00:: 02441326 1 0 -mustelidae%1:05:00:: 02440705 1 0 -musteline%1:05:00:: 02441326 1 0 -musteline_mammal%1:05:00:: 02441326 1 0 -mustelus%1:05:00:: 01492212 1 0 -mustelus_canis%1:05:00:: 01492708 1 0 -mustelus_mustelus%1:05:00:: 01492569 1 0 -mustelus_norrisi%1:05:00:: 01492860 1 0 -muster%1:04:00:: 01157850 2 0 -muster%1:14:00:: 08479615 1 0 -muster%2:32:00:: 00793271 2 2 -muster%2:35:02:: 01381549 1 4 -muster_call%1:04:00:: 01012125 1 0 -muster_in%2:33:00:: 01097500 1 0 -muster_out%2:33:00:: 01097743 1 0 -muster_roll%1:10:00:: 06496624 1 0 -muster_up%2:35:00:: 01381549 1 0 -musth%1:28:00:: 15288943 1 0 -mustiness%1:07:00:: 04928194 1 0 -musty%5:00:00:malodorous:00 01053915 2 0 -musty%5:00:00:stale:00 01070088 1 0 -mutability%1:07:00:: 04741311 1 0 -mutable%3:00:00:: 00356339 1 0 -mutableness%1:07:00:: 04741311 1 0 -mutafacient%3:01:00:: 02986893 1 0 -mutagen%1:17:00:: 09364086 1 0 -mutagenesis%1:11:00:: 07426108 1 0 -mutagenic%3:01:00:: 02987017 1 0 -mutamycin%1:06:00:: 03774842 1 0 -mutant%1:05:00:: 01324305 2 0 -mutant%1:18:00:: 10341660 1 1 -mutant%3:01:00:: 02987454 1 0 -mutant_gene%1:08:00:: 05439413 1 0 -mutate%2:30:00:: 00119873 1 0 -mutation%1:11:00:: 07425011 2 0 -mutation%1:11:01:: 07297811 3 0 -mutation%1:18:00:: 10341660 1 0 -mutational%3:01:00:: 02987177 1 1 -mutatis_mutandis%4:02:00:: 00256817 1 0 -mutative%3:01:00:: 02987332 1 0 -mutawa%1:14:00:: 08210411 1 0 -mutawa'een%1:14:00:: 08210411 1 0 -mutchkin%1:23:00:: 13618298 1 0 -mute%1:06:00:: 03802973 2 0 -mute%1:18:00:: 10342367 1 0 -mute%2:39:00:: 02191311 1 0 -mute%5:00:00:inarticulate:00 00152285 1 3 -mute%5:00:01:inarticulate:00 00151855 2 0 -mute_swan%1:05:00:: 01859190 1 0 -muted%5:00:00:soft:04 01454985 2 0 -muted%5:00:02:soft:04 01455540 1 1 -mutely%4:02:00:: 00112090 1 3 -muteness%1:07:00:: 04651974 2 0 -muteness%1:26:00:: 14551986 1 0 -mutilate%2:29:00:: 00090708 3 0 -mutilate%2:30:00:: 00292672 1 1 -mutilate%2:30:01:: 00548750 2 0 -mutilated%5:00:00:unfit:01 01020282 1 0 -mutilation%1:11:00:: 07433662 1 1 -mutilator%1:18:00:: 10341955 1 0 -mutillidae%1:05:00:: 02214660 1 0 -mutineer%1:18:00:: 10342180 1 1 -mutinous%5:00:00:disloyal:00 00963502 2 0 -mutinous%5:00:00:insubordinate:00 02330935 1 0 -mutinus%1:20:00:: 13041172 1 0 -mutinus_caninus%1:20:00:: 13041312 1 0 -mutiny%1:04:00:: 00963896 1 2 -mutiny%2:41:00:: 02583958 1 0 -mutisia%1:20:00:: 11996677 1 0 -mutism%1:26:00:: 14551986 1 0 -muton%1:27:00:: 14957546 1 0 -mutsuhito%1:18:00:: 11171157 1 0 -mutt%1:05:00:: 02084861 1 0 -mutter%1:10:00:: 07211092 2 0 -mutter%1:11:00:: 07386920 1 0 -mutter%2:32:00:: 00909219 2 6 -mutter%2:32:01:: 01044533 1 19 -mutterer%1:18:00:: 10342543 1 0 -muttering%1:10:00:: 07211092 2 0 -muttering%1:11:00:: 07386920 1 1 -mutton%1:13:00:: 07666733 1 2 -mutton_chop%1:08:00:: 05262802 2 0 -mutton_chop%1:13:00:: 07666847 1 0 -mutton_quad%1:23:00:: 13712689 1 0 -mutton_snapper%1:05:00:: 02587479 1 0 -mutton_tallow%1:27:00:: 14957795 1 0 -muttonfish%1:05:00:: 02587479 1 0 -muttonhead%1:18:00:: 10039663 1 0 -mutual%3:00:00:: 01945550 2 0 -mutual%5:00:00:shared:00 02152473 1 3 -mutual_affection%1:24:00:: 13812173 1 1 -mutual_aid%1:04:00:: 01216908 1 0 -mutual_exclusiveness%1:24:00:: 13858045 1 0 -mutual_fund%1:14:00:: 08071516 2 0 -mutual_fund%1:21:00:: 13358895 1 0 -mutual_fund_company%1:14:00:: 08071516 1 0 -mutual_inductance%1:23:00:: 13587236 1 0 -mutual_induction%1:19:00:: 11468442 1 0 -mutual_opposition%1:24:00:: 13856110 1 0 -mutual_resemblance%1:07:00:: 04747710 1 0 -mutual_savings_bank%1:14:00:: 08424501 1 0 -mutual_understanding%1:24:00:: 13812173 1 0 -mutualism%1:24:00:: 13842622 1 0 -mutualist%5:00:00:dependent:00 00726445 1 0 -mutuality%1:24:00:: 13841863 2 0 -mutuality%1:24:01:: 13843401 1 1 -mutually%4:02:00:: 00405645 1 0 -mutually_beneficial%5:00:00:dependent:00 00726445 1 0 -mutually_exclusive%5:00:00:incompatible:01 00508750 1 3 -mutualness%1:24:00:: 13843401 1 0 -muumuu%1:06:00:: 03788914 1 0 -muybridge%1:18:00:: 11198608 1 0 -muzhik%1:18:00:: 10342770 1 0 -muzjik%1:18:00:: 10342770 1 0 -muztag%1:17:00:: 09364249 1 0 -muztagh%1:17:00:: 09364249 1 0 -muzzle%1:05:00:: 02452464 2 2 -muzzle%1:06:00:: 03410740 4 0 -muzzle%1:06:01:: 03469687 1 2 -muzzle%1:06:02:: 03803284 3 0 -muzzle%2:35:03:: 01284683 3 0 -muzzle%2:39:00:: 02190943 2 0 -muzzle%2:40:00:: 02340897 1 0 -muzzle-loading%3:01:00:: 02888531 1 0 -muzzle_loader%1:06:00:: 03803116 1 1 -muzzle_velocity%1:28:00:: 15283920 1 0 -muzzler%1:18:00:: 10342893 1 0 -muzzy%5:00:00:confused:00 00436115 2 0 -muzzy%5:00:00:indistinct:00 00781644 1 0 -mv%1:23:00:: 13642596 1 1 -mv%1:27:00:: 14645092 2 0 -mvp%1:18:00:: 10332257 1 0 -mwanza%1:15:00:: 09035735 1 0 -mwera%1:10:00:: 06994225 1 0 -mx%1:23:00:: 13638375 1 0 -mya%1:05:00:: 01957202 1 0 -mya_arenaria%1:05:00:: 01957335 1 0 -myaceae%1:05:00:: 01956924 1 0 -myacidae%1:05:00:: 01957075 1 0 -myadestes%1:05:00:: 01561059 1 0 -myalgia%1:26:00:: 14329040 1 0 -myalgic%3:01:00:: 02766602 1 0 -myanmar%1:15:00:: 08715390 1 0 -myanmar_monetary_unit%1:23:00:: 13684140 1 0 -myasthenia%1:26:00:: 14078871 1 0 -myasthenia%1:26:01:: 14044852 2 0 -myasthenia_gravis%1:26:00:: 14078871 1 0 -myasthenic_syndrome%1:26:00:: 14079156 1 0 -mycelia_sterilia%1:20:00:: 13082077 1 0 -mycelium%1:20:00:: 13022709 1 0 -mycenae%1:15:00:: 08787049 1 0 -mycenaean%3:01:00:: 03016857 1 1 -mycenaean_civilisation%1:14:00:: 08291157 1 0 -mycenaean_civilization%1:14:00:: 08291157 1 0 -mycenaean_culture%1:14:00:: 08291157 1 0 -mycenaen%1:18:00:: 10342992 1 0 -mycetophilidae%1:05:00:: 02203457 1 0 -mycobacteria%1:05:00:: 01377092 1 0 -mycobacteriaceae%1:05:00:: 01376801 1 0 -mycobacterium%1:05:00:: 01377092 1 0 -mycobacterium_leprae%1:05:00:: 01377804 1 0 -mycobacterium_tuberculosis%1:05:00:: 01377278 1 0 -mycologist%1:18:00:: 10343088 1 0 -mycology%1:09:00:: 06069747 1 0 -mycomycin%1:06:00:: 03803488 1 0 -mycophage%1:18:00:: 10343211 1 0 -mycophagist%1:18:00:: 10343211 1 0 -mycophagy%1:04:00:: 00411859 1 0 -mycoplasma%1:05:00:: 01373826 1 0 -mycoplasmal_pneumonia%1:26:00:: 14147964 1 0 -mycoplasmataceae%1:05:00:: 01373440 1 0 -mycoplasmatales%1:05:00:: 01373272 1 0 -mycosis%1:26:00:: 14176895 1 0 -mycostatin%1:06:00:: 03837157 1 0 -mycotoxin%1:27:00:: 15036536 1 0 -mycrosporidia%1:05:00:: 01427241 1 0 -mycteria%1:05:00:: 02004661 1 0 -mycteria_americana%1:05:00:: 02004855 1 0 -mycteroperca%1:05:00:: 02570038 1 0 -mycteroperca_bonaci%1:05:00:: 02570164 1 0 -myctophidae%1:05:00:: 02543093 1 0 -mydriasis%1:04:00:: 00866079 1 0 -mydriatic%1:06:00:: 03803610 1 0 -mydriatic_drug%1:06:00:: 03803610 1 0 -myelatelia%1:26:00:: 14350106 1 0 -myelencephalon%1:08:00:: 05500812 1 0 -myelic%3:01:00:: 03012707 1 0 -myelin%1:27:00:: 14957893 1 0 -myelin_sheath%1:08:00:: 05464685 1 0 -myelinated%3:01:00:: 02766699 1 0 -myelinated_nerve_fiber%1:08:00:: 05464378 1 0 -myeline%1:27:00:: 14957893 1 0 -myelinic%3:01:00:: 03012793 1 0 -myelinisation%1:22:00:: 13518432 1 0 -myelinization%1:22:00:: 13518432 1 0 -myelitis%1:26:00:: 14350206 1 0 -myeloblast%1:08:00:: 05448704 1 0 -myeloblastic_leukemia%1:26:00:: 14244991 1 0 -myelocyte%1:08:00:: 05448597 1 0 -myelocytic_leukemia%1:26:00:: 14245163 1 0 -myelofibrosis%1:26:00:: 14207978 1 1 -myelogram%1:06:00:: 03803780 1 0 -myelography%1:04:00:: 00906470 1 0 -myeloid%3:01:00:: 03012954 1 1 -myeloid%3:01:01:: 03013037 2 0 -myeloid_leukemia%1:26:00:: 14244160 1 0 -myeloma%1:26:00:: 14248256 1 0 -myelomeningocele%1:26:00:: 14467395 1 0 -myenteric_plexus%1:08:00:: 05507756 1 0 -myg%1:23:00:: 13724977 1 0 -myiasis%1:26:00:: 14453840 1 0 -mylanta%1:27:00:: 14777523 1 0 -mylar%1:27:00:: 14592217 1 0 -myles_standish%1:18:00:: 11312362 1 0 -myliobatidae%1:05:00:: 01498822 1 0 -mylitta%1:18:00:: 09516498 1 0 -mylodon%1:05:00:: 02459485 1 0 -mylodontid%1:05:00:: 02459190 1 0 -mylodontidae%1:05:00:: 02459001 1 0 -mym%1:23:00:: 13659943 1 0 -myna%1:05:00:: 01577659 1 0 -myna_bird%1:05:00:: 01577659 1 0 -mynah%1:05:00:: 01577659 1 0 -mynah_bird%1:05:00:: 01577659 1 0 -myocardial%3:01:00:: 03013124 1 2 -myocardial_infarct%1:26:00:: 14113021 1 0 -myocardial_infarction%1:26:00:: 14113021 1 1 -myocardial_inflammation%1:26:00:: 14339387 1 0 -myocardiopathy%1:26:00:: 14110966 1 0 -myocarditis%1:26:00:: 14339387 1 0 -myocardium%1:08:00:: 05391000 1 1 -myocastor%1:05:00:: 02366825 1 0 -myocastor_coypus%1:05:00:: 02366959 1 0 -myoclonus%1:26:00:: 14361415 1 0 -myoclonus_epilepsy%1:26:00:: 14087938 1 0 -myodynia%1:26:00:: 14329040 1 0 -myofibril%1:08:00:: 05459953 1 1 -myofibrilla%1:08:00:: 05459953 1 2 -myoglobin%1:27:00:: 15024606 1 0 -myoglobinuria%1:26:00:: 14507050 1 0 -myogram%1:10:00:: 07005158 1 0 -myoid%3:01:00:: 03013231 1 0 -myology%1:09:00:: 06082610 1 0 -myoma%1:26:00:: 14248541 1 0 -myometritis%1:26:00:: 14350448 1 0 -myometrium%1:08:00:: 05520168 1 0 -myomorpha%1:05:00:: 02330582 1 0 -myonecrosis%1:19:00:: 11486983 1 0 -myoneural_junction%1:08:00:: 05474195 1 0 -myopathic%3:01:00:: 02766952 1 0 -myopathy%1:26:00:: 14209201 1 0 -myope%1:18:00:: 10343355 1 0 -myopia%1:26:00:: 14553290 1 0 -myopic%3:00:00:: 02157226 1 0 -myopic%5:00:00:improvident:00 01896046 2 0 -myopus%1:05:00:: 02345213 1 0 -myosarcoma%1:26:00:: 14241319 1 0 -myosin%1:27:00:: 15022617 1 0 -myosis%1:04:00:: 00865808 2 0 -myosis%1:26:00:: 14330340 1 0 -myositis%1:26:00:: 14350292 1 0 -myositis_trichinosa%1:26:00:: 14350536 1 0 -myosotis%1:20:00:: 12821736 1 0 -myosotis_scorpiodes%1:20:00:: 12822115 1 0 -myosotis_sylvatica%1:20:00:: 12821895 1 0 -myotactic_reflex%1:04:00:: 00867606 1 0 -myotic%1:06:00:: 03772881 1 0 -myotic%3:01:00:: 02765308 1 0 -myotic_drug%1:06:00:: 03772881 1 0 -myotis%1:05:00:: 02146526 1 0 -myotis_leucifugus%1:05:00:: 02146700 1 0 -myotis_velifer%1:05:00:: 02146879 1 0 -myotomy%1:04:00:: 00688462 1 0 -myotonia%1:26:00:: 14545353 1 0 -myotonia_atrophica%1:26:00:: 14163182 1 0 -myotonia_congenita%1:26:00:: 14545685 1 0 -myotonic%3:01:00:: 03013300 1 0 -myotonic_dystrophy%1:26:00:: 14163182 1 0 -myotonic_muscular_dystrophy%1:26:00:: 14163182 1 0 -myrcia%1:20:00:: 12332866 1 0 -myrciaria%1:20:00:: 12332866 1 0 -myrciaria_cauliflora%1:20:00:: 12333053 1 0 -myrdal%1:18:00:: 11198861 1 0 -myriad%1:23:00:: 13751265 2 0 -myriad%1:23:01:: 13776726 1 1 -myriad%5:00:00:incalculable:00 00301951 1 3 -myriagram%1:23:00:: 13724977 1 0 -myriameter%1:23:00:: 13659943 1 0 -myriametre%1:23:00:: 13659943 1 0 -myriapod%1:05:00:: 01783017 1 0 -myriapoda%1:05:00:: 01786402 1 0 -myrica%1:20:00:: 11741010 1 0 -myrica_cerifera%1:20:00:: 11741575 1 0 -myrica_gale%1:20:00:: 11741175 1 0 -myrica_pensylvanica%1:20:00:: 11741797 1 0 -myricaceae%1:20:00:: 11740824 1 0 -myricales%1:20:00:: 11740655 1 0 -myricaria%1:20:00:: 12386724 1 0 -myricaria_germanica%1:20:00:: 12386945 1 0 -myringa%1:08:00:: 05318831 1 0 -myringectomy%1:04:00:: 00688557 1 0 -myringoplasty%1:04:00:: 00688647 1 0 -myringotomy%1:04:00:: 00688766 1 0 -myriophyllum%1:20:00:: 12326842 1 0 -myristic_acid%1:27:00:: 14958102 1 0 -myristica%1:20:00:: 11714150 1 0 -myristica_fragrans%1:20:00:: 11714382 1 0 -myristicaceae%1:20:00:: 11713960 1 0 -myrmecia%1:05:00:: 02222199 1 0 -myrmecobius%1:05:00:: 01885367 1 0 -myrmecobius_fasciatus%1:05:00:: 01885498 1 0 -myrmecophaga%1:05:00:: 02460275 1 0 -myrmecophaga_jubata%1:05:00:: 02460451 1 0 -myrmecophagidae%1:05:00:: 02459808 1 0 -myrmecophagous%5:00:00:insectivorous:00 00315702 1 0 -myrmecophile%1:05:00:: 01386354 1 0 -myrmecophilous%5:00:00:dependent:00 00726612 1 0 -myrmecophyte%1:20:00:: 13179056 1 0 -myrmecophytic%3:01:00:: 03025967 1 0 -myrmeleon%1:05:00:: 02263848 1 0 -myrmeleontidae%1:05:00:: 02263717 1 0 -myrmidon%1:18:00:: 09597628 2 0 -myrmidon%1:18:01:: 10343449 1 0 -myrobalan%1:20:00:: 12643313 1 0 -myrobalan_plum%1:20:00:: 12643313 1 0 -myroxylon%1:20:00:: 12550968 1 0 -myroxylon_balsamum%1:20:00:: 12551173 1 0 -myroxylon_balsamum_pereirae%1:20:00:: 12551457 1 0 -myroxylon_pereirae%1:20:00:: 12551457 1 0 -myroxylon_toluiferum%1:20:00:: 12551173 1 0 -myrrh%1:20:00:: 12692875 1 0 -myrrh_tree%1:20:00:: 12692714 1 0 -myrrhis%1:20:00:: 12940427 1 0 -myrrhis_odorata%1:20:00:: 12940609 1 0 -myrsinaceae%1:20:00:: 12096798 1 0 -myrsine%1:20:00:: 12097013 1 0 -myrsine_family%1:20:00:: 12096798 1 0 -myrtaceae%1:20:00:: 12329899 1 0 -myrtaceous_tree%1:20:00:: 12330239 1 0 -myrtales%1:20:00:: 12322887 1 0 -myrtillocactus%1:20:00:: 11850337 1 0 -myrtillocactus_geometrizans%1:20:00:: 11850521 1 0 -myrtle%1:20:00:: 12330469 2 0 -myrtle%1:20:02:: 11778092 1 1 -myrtle_beech%1:20:00:: 12266528 1 0 -myrtle_bird%1:05:00:: 01569423 1 0 -myrtle_family%1:20:00:: 12329899 1 0 -myrtle_flag%1:20:00:: 11780930 1 0 -myrtle_oak%1:20:00:: 12275888 1 0 -myrtle_spurge%1:20:00:: 12918404 1 0 -myrtle_warbler%1:05:00:: 01569423 1 0 -myrtus%1:20:00:: 12330336 1 0 -myrtus_communis%1:20:00:: 12330587 1 0 -mysidacea%1:05:00:: 01988971 1 0 -mysidae%1:05:00:: 01989097 1 0 -mysis%1:05:00:: 01989254 1 0 -mysoline%1:06:00:: 04002931 1 0 -mysophilia%1:12:00:: 07498769 1 0 -mysophobia%1:26:00:: 14383848 1 0 -mysophobic%5:00:00:afraid:00 00080213 1 0 -mysore%1:15:00:: 08904731 1 0 -mysore%1:15:01:: 08902196 2 0 -mysore_thorn%1:20:00:: 12489046 1 0 -mysterious%5:00:00:esoteric:00 00900071 2 4 -mysterious%5:00:00:inexplicable:00 00939444 1 14 -mysteriously%4:02:01:: 00296836 1 0 -mystery%1:09:00:: 05685538 1 18 -mystery%1:10:00:: 06370792 2 0 -mystery_novel%1:10:00:: 06368142 1 0 -mystery_play%1:10:00:: 07018604 1 0 -mystery_story%1:10:00:: 06370792 1 9 -mystic%1:18:00:: 10343554 1 0 -mystic%3:01:00:: 02863247 3 0 -mystic%3:01:01:: 02863464 2 0 -mystic%5:00:00:esoteric:00 00900071 1 2 -mystic_jewel%1:18:00:: 09533790 1 0 -mystical%3:01:00:: 02863247 1 1 -mystical%3:01:01:: 02863464 2 0 -mystical%5:00:00:esoteric:00 00900071 3 0 -mystically%4:02:00:: 00133516 1 0 -mysticeti%1:05:00:: 02062991 1 0 -mysticism%1:09:00:: 05948857 1 0 -mysticism%1:09:01:: 05784560 2 0 -mystification%1:04:00:: 01266152 3 0 -mystification%1:06:00:: 03803911 2 0 -mystification%1:09:00:: 05685030 1 0 -mystified%5:00:00:perplexed:00 01766550 1 0 -mystifier%1:10:00:: 06784639 1 0 -mystify%2:30:00:: 00518653 2 0 -mystify%2:31:00:: 00622384 1 1 -mystifying%5:00:00:inexplicable:00 00939444 1 0 -mystique%1:07:00:: 04727559 1 2 -myth%1:10:00:: 06372680 1 14 -mythic%3:01:00:: 02995972 1 1 -mythic%5:00:00:unreal:00 01936184 2 0 -mythical%5:00:00:unreal:00 01936184 1 0 -mythical_being%1:18:00:: 09484664 1 0 -mythical_creature%1:18:00:: 09492123 1 0 -mythical_monster%1:18:00:: 09492123 1 0 -mythical_place%1:09:00:: 05625879 1 0 -mythicise%2:30:00:: 00135013 2 0 -mythicise%2:31:00:: 00623656 1 0 -mythicize%2:30:00:: 00135013 2 0 -mythicize%2:31:00:: 00623656 1 0 -mythologic%5:00:00:unreal:00 01936184 1 0 -mythological%5:00:00:unreal:00 01936184 1 12 -mythologisation%1:10:00:: 06769238 1 0 -mythologise%2:30:00:: 00135013 2 0 -mythologise%2:36:00:: 01634734 1 0 -mythologist%1:18:00:: 10343869 1 0 -mythologization%1:10:00:: 06769238 1 0 -mythologize%2:30:00:: 00135013 2 0 -mythologize%2:36:00:: 01634734 1 0 -mythology%1:09:00:: 06147873 2 0 -mythology%1:14:00:: 07978423 1 3 -mytilene%1:15:00:: 08783583 1 0 -mytilid%1:05:00:: 01964049 1 0 -mytilidae%1:05:00:: 01963730 1 0 -mytilus%1:05:00:: 01963876 1 0 -mytilus_edulis%1:05:00:: 01964271 1 0 -myxedema%1:26:00:: 14121500 1 0 -myxine%1:05:00:: 01478816 1 0 -myxine_glutinosa%1:05:00:: 01478969 1 0 -myxinidae%1:05:00:: 01478300 1 0 -myxiniformes%1:05:00:: 01478073 1 0 -myxinikela%1:05:00:: 01479329 1 0 -myxinikela_siroka%1:05:00:: 01479459 1 0 -myxinoidea%1:05:00:: 01478073 1 0 -myxinoidei%1:05:00:: 01478073 1 0 -myxobacter%1:05:00:: 01378545 1 0 -myxobacterales%1:05:00:: 01377906 1 0 -myxobacteria%1:05:00:: 01378545 1 0 -myxobacteriaceae%1:05:00:: 01378137 1 0 -myxobacteriales%1:05:00:: 01377906 1 0 -myxobacterium%1:05:00:: 01378545 1 0 -myxocephalus%1:05:00:: 02646117 1 0 -myxocephalus_aenaeus%1:05:00:: 02646241 1 0 -myxoedema%1:26:00:: 14121500 1 0 -myxoma%1:26:00:: 14248669 1 0 -myxoma_virus%1:05:00:: 01333890 1 0 -myxomatosis%1:26:00:: 14274701 1 0 -myxomycete%1:20:00:: 12975804 1 0 -myxomycetes%1:20:00:: 12975608 1 0 -myxomycota%1:20:00:: 12975207 1 0 -myxophyceae%1:05:00:: 01358904 1 0 -myxosporidia%1:05:00:: 01427547 1 0 -myxosporidian%1:05:00:: 01427703 1 0 -myxovirus%1:05:00:: 01336910 1 0 -n%1:10:00:: 06832572 5 0 -n%1:23:00:: 13580909 4 0 -n%1:23:01:: 13647667 3 0 -n%1:24:00:: 13831176 2 0 -n%1:27:00:: 14647235 1 0 -n'djamena%1:15:00:: 08720280 1 0 -n-th%5:00:00:ordinal:00 02213144 1 0 -n-type_semiconductor%1:06:00:: 03833750 1 0 -n._y._stock_exchange%1:06:00:: 03822951 1 0 -n.b.%1:10:00:: 06764380 1 0 -na%1:27:00:: 14655371 1 0 -na-dene%1:10:00:: 06913635 1 0 -naan%1:13:00:: 07684289 1 0 -nab%2:35:00:: 01215137 2 1 -nab%2:35:01:: 01213273 3 0 -nab%2:35:02:: 01600759 1 1 -nabalus%1:20:00:: 11996792 1 0 -nabalus_alba%1:20:00:: 11997160 1 0 -nabalus_serpentarius%1:20:00:: 11997409 1 0 -nablus%1:15:00:: 08793746 1 0 -nabob%1:18:00:: 10344004 2 0 -nabob%1:18:01:: 10348752 1 0 -nabokov%1:18:00:: 11198981 1 0 -naboom%1:20:00:: 12921660 1 0 -nabothian_cyst%1:26:00:: 14202272 1 0 -nabothian_follicle%1:26:00:: 14202272 1 0 -nabothian_gland%1:08:00:: 05555167 1 0 -nabu%1:18:00:: 09519596 1 0 -nabumetone%1:06:00:: 03804048 1 0 -nac%1:14:00:: 08310722 1 0 -nacelle%1:06:00:: 03804211 1 0 -nacho%1:13:00:: 07712959 1 0 -nacimiento%1:17:00:: 09364426 1 0 -nacre%1:27:00:: 14758706 1 0 -nacreous%3:01:00:: 02996123 1 0 -nacreous%5:00:00:bright:00 00282020 2 0 -nacreous_cloud%1:17:00:: 09364582 1 0 -nad%1:27:00:: 14962612 1 0 -nada%1:23:00:: 13740168 1 0 -nada_daiquiri%1:13:00:: 07914686 1 0 -nadine_gordimer%1:18:00:: 11007993 1 0 -nadir%1:15:01:: 08600760 2 0 -nadir%1:26:00:: 14486639 1 2 -nadolol%1:06:00:: 03804311 1 0 -nadp%1:27:00:: 14962837 1 0 -naegele's_rule%1:09:00:: 05885412 1 0 -naemorhedus%1:05:00:: 02418648 1 0 -naemorhedus_goral%1:05:00:: 02418770 1 0 -nafcil%1:06:00:: 03804493 1 0 -nafcillin%1:06:00:: 03804493 1 0 -nafta%1:04:00:: 01092769 1 0 -nafud%1:15:00:: 09171376 1 0 -nag%1:05:00:: 02382204 2 0 -nag%1:18:00:: 10561861 1 0 -nag%2:31:00:: 00610928 3 0 -nag%2:32:00:: 00844941 1 2 -nag%2:37:00:: 01766638 2 1 -nag_hammadi%1:14:00:: 07984805 2 0 -nag_hammadi%1:15:00:: 08899478 1 0 -nag_hammadi_library%1:14:00:: 07984805 1 0 -naga%1:10:00:: 06933429 1 0 -nagami%1:20:00:: 12713521 1 0 -nagami_kumquat%1:20:00:: 12713521 1 0 -nagano%1:15:00:: 08923586 1 0 -nagari%1:10:00:: 06352782 1 0 -nagari_script%1:10:00:: 06352782 1 0 -nagasaki%1:15:00:: 08925957 1 0 -nageia%1:20:00:: 11657314 1 0 -nageia_nagi%1:20:00:: 11657585 1 0 -nagger%1:18:00:: 10561861 1 0 -nagging%5:00:00:ill-natured:00 01138610 1 1 -nagi%1:20:00:: 11657585 1 0 -nagoya%1:15:00:: 08923755 1 0 -naha_city%1:15:00:: 08924560 1 0 -nahuatl%1:10:00:: 06918832 2 0 -nahuatl%1:18:00:: 09648743 1 0 -nahum%1:10:00:: 06440313 2 0 -nahum%1:18:00:: 11199137 1 0 -naiad%1:18:00:: 09550443 2 0 -naiad%1:20:00:: 12611640 1 0 -naiad_family%1:20:00:: 12611243 1 0 -naiadaceae%1:20:00:: 12611243 1 0 -naiadales%1:20:00:: 12610933 1 0 -naiant%5:00:00:horizontal:00 01233225 1 0 -naias%1:20:00:: 12611479 1 0 -naif%1:18:00:: 10344121 1 0 -naif%3:00:00:: 02271544 1 0 -naiki%1:10:00:: 06981818 1 0 -nail%1:06:00:: 03804744 2 3 -nail%1:08:00:: 05581693 1 3 -nail%1:23:00:: 13652335 3 0 -nail%2:33:00:: 01117484 7 0 -nail%2:35:00:: 01357831 1 8 -nail%2:35:01:: 01215137 2 2 -nail%2:35:02:: 01401772 3 1 -nail%2:40:00:: 02287380 6 0 -nail%2:41:00:: 02522581 5 0 -nail%2:41:01:: 02524897 4 0 -nail-biting%5:00:00:tense:03 02405805 1 0 -nail-tailed_kangaroo%1:05:00:: 01878639 1 0 -nail-tailed_wallaby%1:05:00:: 01878639 1 0 -nail_down%2:30:00:: 00481941 3 0 -nail_down%2:31:00:: 00715541 2 0 -nail_down%2:41:00:: 02524897 1 1 -nail_enamel%1:06:00:: 03805725 1 0 -nail_hole%1:06:00:: 03805634 1 0 -nail_polish%1:06:00:: 03805725 1 0 -nail_pulling%1:04:00:: 00423423 1 0 -nail_removal%1:04:00:: 00423423 1 0 -nail_varnish%1:06:00:: 03805725 1 0 -nailbrush%1:06:00:: 03805180 1 0 -nailer%1:18:00:: 10344203 1 0 -nailfile%1:06:00:: 03805280 1 0 -nailhead%1:06:00:: 03805374 2 0 -nailhead%1:06:01:: 03805503 1 0 -nailrod%1:20:00:: 12155773 1 0 -nainsook%1:06:00:: 03805933 1 0 -naira%1:23:00:: 13689073 1 0 -nairobi%1:15:00:: 08928582 1 0 -naismith%1:18:00:: 11199234 1 0 -naive%3:00:00:: 02271544 1 6 -naive%5:00:00:inexperienced:00 00937341 5 0 -naive%5:00:00:unconditioned:00 01637371 3 0 -naive%5:00:00:uninformed:00 01309657 4 0 -naive%5:00:00:untrained:00 01912858 2 0 -naive_art%1:06:00:: 03861959 1 0 -naive_realism%1:09:00:: 05975659 1 0 -naively%4:02:00:: 00406157 1 0 -naiveness%1:07:00:: 04880573 1 0 -naivete%1:07:00:: 04880573 1 0 -naivety%1:07:00:: 04880573 1 0 -naja%1:05:00:: 01747739 1 0 -naja_haje%1:05:00:: 01748389 1 0 -naja_hannah%1:05:00:: 01748906 1 0 -naja_naja%1:05:00:: 01748264 1 0 -naja_nigricollis%1:05:00:: 01748686 1 0 -najadaceae%1:20:00:: 12611243 1 0 -najas%1:20:00:: 12611479 1 0 -najd%1:15:00:: 08995242 1 0 -naked%5:00:00:bare:00 01698760 5 0 -naked%5:00:00:overt:00 01705195 4 1 -naked%5:00:00:unassisted:00 02354234 3 1 -naked%5:00:00:unclothed:00 00457998 1 6 -naked%5:00:00:unprotected:00 01886783 2 3 -naked-muzzled%5:00:00:hairless:00 00211735 1 0 -naked-tailed%5:00:00:hairless:00 00211827 1 0 -naked_as_a_jaybird%5:00:00:unclothed:00 00458266 1 0 -naked_as_the_day_one_was_born%5:00:00:unclothed:00 00459553 1 0 -naked_as_the_day_you_were_born%5:00:00:unclothed:00 00459553 1 0 -naked_eye%1:08:00:: 05311795 1 0 -naked_lady%1:20:01:: 12419394 2 0 -naked_lady%1:20:02:: 12455540 1 0 -naked_mole_rat%1:05:00:: 02369680 1 0 -naked_option%1:04:00:: 00080474 1 0 -nakedly%4:02:00:: 00406288 2 0 -nakedly%4:02:02:: 00406470 1 1 -nakedness%1:07:00:: 04654066 3 0 -nakedness%1:26:00:: 14456138 1 1 -nakedness%1:26:01:: 14525548 2 0 -nakedwood%1:20:00:: 12331788 2 0 -nakedwood%1:20:01:: 13142907 1 0 -nakuru%1:15:00:: 08929102 1 0 -nalchik%1:15:00:: 09008993 1 0 -nalfon%1:06:00:: 03328392 1 0 -nalidixic_acid%1:06:00:: 03806040 1 0 -nalline%1:06:00:: 03806180 1 0 -nalorphine%1:06:00:: 03806180 1 0 -naloxone%1:06:00:: 03806381 1 0 -naltrexone%1:06:00:: 03806547 1 0 -namby-pamby%1:18:00:: 10344319 1 0 -namby-pamby%5:00:00:weak:00 02325816 1 0 -name%1:04:00:: 01139636 5 1 -name%1:10:00:: 06333653 1 94 -name%1:10:01:: 06720964 6 0 -name%1:14:00:: 07972279 3 2 -name%1:18:00:: 10344443 4 1 -name%1:26:00:: 14438788 2 6 -name%2:31:00:: 00645552 9 0 -name%2:31:01:: 00652346 7 1 -name%2:32:02:: 01026095 2 6 -name%2:32:03:: 01028748 1 31 -name%2:32:04:: 01024190 6 2 -name%2:32:07:: 00947439 5 4 -name%2:32:09:: 00945853 8 0 -name%2:41:00:: 02396205 4 4 -name%2:41:01:: 02396716 3 5 -name-dropping%1:10:00:: 06766812 1 0 -name_and_address%1:10:00:: 06787150 1 0 -name_calling%1:10:00:: 06720784 1 0 -name_day%1:28:00:: 15221718 1 0 -name_dropper%1:18:00:: 10344656 1 0 -name_part%1:09:00:: 05929887 1 0 -name_tag%1:10:00:: 07272920 1 0 -namedrop%2:32:00:: 01025089 1 0 -nameko%1:20:00:: 13009085 1 0 -nameless%5:00:00:anonymous:00 00120784 1 1 -namelessness%1:26:00:: 14436285 1 0 -namely%4:02:00:: 00188510 1 9 -nameplate%1:06:00:: 03806652 1 0 -namer%1:18:00:: 10344774 1 0 -names%1:10:00:: 06720784 1 0 -namesake%1:18:00:: 10344922 1 1 -namib_desert%1:15:00:: 09171204 1 0 -namibia%1:15:00:: 08699654 1 0 -namibian%1:18:00:: 09723819 1 0 -namibian%3:01:00:: 03088838 1 0 -naming%1:04:00:: 00163779 2 0 -naming%1:10:00:: 07230502 1 0 -naming%5:00:00:denotative:00 00722386 1 0 -nammad%1:06:00:: 03835729 1 0 -nammu%1:18:00:: 09519748 1 0 -namoi%1:17:00:: 09364778 1 0 -namoi_river%1:17:00:: 09364778 1 0 -nampa%1:15:00:: 09082058 1 0 -namtar%1:18:00:: 09519901 1 0 -namtaru%1:18:00:: 09519901 1 0 -namur%1:15:00:: 08851830 1 0 -nan%1:13:00:: 07684289 4 0 -nan%1:17:00:: 09364954 3 0 -nan%1:18:00:: 10345015 1 0 -nan%1:18:01:: 10142747 2 0 -nan-chang%1:15:00:: 08727806 1 0 -nan-ning%1:15:00:: 08727945 1 0 -nan_ling%1:17:00:: 09365443 1 0 -nan_river%1:17:00:: 09364954 1 0 -nanaimo%1:15:00:: 08823156 1 0 -nanak%1:18:00:: 11199394 1 0 -nance%1:18:00:: 10076033 1 0 -nancere%1:10:00:: 06985404 1 0 -nanchang%1:15:00:: 08727806 1 0 -nancy%1:15:00:: 08936996 1 0 -nancy_freeman_mitford%1:18:00:: 11183074 1 0 -nancy_mitford%1:18:00:: 11183074 1 0 -nancy_witcher_astor%1:18:00:: 10826717 1 0 -nand_circuit%1:06:00:: 03806748 1 0 -nand_gate%1:06:00:: 03806748 1 0 -nanda_devi%1:17:00:: 09365128 1 0 -nandrolone%1:27:00:: 14748335 1 0 -nandu%1:05:00:: 01521756 1 0 -nanga_parbat%1:17:00:: 09365288 1 0 -nanism%1:26:00:: 14506403 1 0 -nanjing%1:15:00:: 08728066 1 0 -nankeen%1:06:00:: 03806904 1 0 -nanking%1:15:00:: 08728066 1 0 -nanna%1:18:00:: 09582019 2 0 -nanna%1:18:01:: 10142747 1 0 -nanna%1:18:02:: 09520103 3 0 -nanning%1:15:00:: 08727945 1 0 -nanny%1:05:00:: 02416964 2 0 -nanny%1:18:00:: 10345100 1 0 -nanny-goat%1:05:00:: 02416964 1 0 -nanocephalic%3:01:00:: 02901806 1 0 -nanocephaly%1:26:00:: 14509299 1 0 -nanogram%1:23:00:: 13723189 1 0 -nanometer%1:23:00:: 13658278 1 0 -nanometre%1:23:00:: 13658278 1 0 -nanomia%1:05:00:: 01912809 1 0 -nanophthalmos%1:26:00:: 14200418 1 0 -nanosecond%1:28:00:: 15236015 1 0 -nanotechnology%1:09:00:: 06134899 1 0 -nanotube%1:27:00:: 14622491 1 0 -nanovolt%1:23:00:: 13642856 1 0 -nansen%1:18:00:: 11199727 1 0 -nantes%1:15:00:: 08937109 1 0 -nanticoke%1:10:00:: 06911067 2 0 -nanticoke%1:18:00:: 09662530 1 0 -nantua%1:13:00:: 07839055 1 0 -nantucket%1:15:00:: 09098592 1 0 -nanus%1:18:00:: 10040344 1 0 -naomi%1:18:00:: 11199943 1 0 -nap%1:04:00:: 00858377 4 0 -nap%1:04:01:: 00493742 5 0 -nap%1:06:00:: 03936045 3 0 -nap%1:07:00:: 04947087 2 0 -nap%1:28:00:: 15273626 1 0 -nap%2:29:00:: 00015498 1 0 -napa%1:20:00:: 11878808 1 0 -napaea%1:20:00:: 12184337 1 0 -napaea_dioica%1:20:00:: 12184468 1 0 -napalm%1:27:00:: 14958254 1 0 -nape%1:08:00:: 05547396 1 0 -napery%1:06:00:: 04380617 1 0 -naphazoline%1:06:00:: 03807052 1 0 -naphtha%1:27:00:: 14958405 1 0 -naphthalene%1:27:00:: 14958564 1 0 -naphthalene_poisoning%1:26:00:: 14511730 1 0 -naphthol%1:27:00:: 14958800 1 0 -naphthoquinone%1:27:00:: 15092751 1 0 -napier%1:18:00:: 11200090 1 0 -napier's_bones%1:06:00:: 03807334 1 0 -napier's_rods%1:06:00:: 03807334 1 0 -napierian_logarithm%1:10:00:: 06813004 1 0 -napkin%1:06:00:: 03807537 1 0 -napkin%1:06:01:: 03188531 2 0 -napkin_ring%1:06:00:: 03807780 1 0 -naples%1:15:00:: 08805565 1 0 -naples_garlic%1:20:00:: 12434483 1 0 -napoleon%1:04:00:: 00493742 3 0 -napoleon%1:13:00:: 07627086 2 0 -napoleon%1:18:00:: 11200276 1 4 -napoleon_bonaparte%1:18:00:: 11200276 1 1 -napoleon_i%1:18:00:: 11200276 1 0 -napoleon_iii%1:18:00:: 11200492 1 0 -napoleonic%3:01:00:: 03035876 1 1 -napoleonic_wars%1:04:00:: 01306358 1 0 -napoli%1:15:00:: 08805565 1 0 -napped%5:00:00:soft:01 01153141 1 0 -napping%5:00:00:unready:00 01932633 1 0 -nappy%1:06:00:: 03188531 1 0 -nappy%5:00:00:curly:00 01030372 1 0 -naprapath%1:18:00:: 09625309 1 1 -naprapathy%1:04:00:: 00708489 1 0 -naprosyn%1:06:00:: 03807895 1 0 -naproxen%1:06:00:: 03807895 1 0 -naproxen_sodium%1:06:00:: 03808144 1 0 -napu%1:05:00:: 02436353 1 0 -naqua%1:06:00:: 04481373 1 0 -nara%1:14:00:: 08126483 1 0 -naranjilla%1:20:00:: 12897118 1 0 -narc%1:18:00:: 10345302 1 0 -narcan%1:06:00:: 03806381 1 0 -narcism%1:07:00:: 04835260 1 0 -narcissism%1:07:00:: 04835260 1 0 -narcissist%1:18:00:: 10345422 1 0 -narcissistic%5:00:00:selfish:00 02098694 1 0 -narcissistic_personality%1:07:00:: 04619596 1 0 -narcissus%1:18:00:: 09499338 2 0 -narcissus%1:20:00:: 12421467 1 0 -narcissus_jonquilla%1:20:00:: 12421917 1 0 -narcissus_papyraceus%1:20:00:: 12422230 1 0 -narcissus_pseudonarcissus%1:20:00:: 12421683 1 0 -narcist%1:18:00:: 10345422 1 0 -narco-state%1:15:00:: 08513417 1 0 -narcolepsy%1:26:00:: 14307468 1 0 -narcoleptic%1:06:00:: 03808424 2 0 -narcoleptic%1:18:00:: 10345556 1 0 -narcoleptic%3:01:00:: 02767110 1 0 -narcosis%1:09:00:: 05682055 1 0 -narcoterrorism%1:04:00:: 00764436 1 0 -narcotic%1:06:00:: 03808564 1 0 -narcotic%3:01:00:: 02863111 1 0 -narcotic%5:00:00:depressant:00 02308840 2 0 -narcotic%5:00:00:uninteresting:00 01346198 3 0 -narcotic_antagonist%1:06:00:: 03808977 1 0 -narcotics_agent%1:18:00:: 10345302 1 0 -narcotise%2:29:00:: 00085506 1 0 -narcotised%5:00:00:intoxicated:00 00798879 1 0 -narcotising%5:00:00:depressant:00 02308840 1 0 -narcotize%2:29:00:: 00085506 1 1 -narcotized%5:00:00:intoxicated:00 00798879 1 0 -narcotizing%5:00:00:depressant:00 02308840 1 0 -narcotraffic%1:04:00:: 01114055 1 0 -nard%1:06:00:: 03809211 1 0 -nardil%1:06:00:: 03921749 1 0 -nardo%1:20:00:: 12957803 1 0 -nardoo%1:20:00:: 12957803 1 0 -nares_deep%1:17:00:: 09365587 1 0 -narghile%1:06:00:: 03533014 1 0 -nargileh%1:06:00:: 03533014 1 0 -narial%3:01:00:: 03026652 1 0 -naris%1:08:00:: 05600431 1 0 -nark%1:18:00:: 10345659 1 0 -nark%1:18:01:: 10345302 2 0 -nark%2:32:00:: 00936913 2 0 -nark%2:37:00:: 01787955 1 0 -narragansett_bay%1:17:00:: 09365730 1 0 -narrate%2:32:00:: 00953216 2 0 -narrate%2:32:01:: 00954271 1 1 -narration%1:10:00:: 07220773 2 0 -narration%1:10:01:: 07221094 1 0 -narration%1:10:02:: 06397307 3 0 -narrative%1:10:00:: 07221094 1 8 -narrative%5:00:00:communicative:00 00498912 1 1 -narrator%1:18:00:: 10345804 1 0 -narrow%1:17:00:: 09365863 1 0 -narrow%2:30:00:: 00305109 1 2 -narrow%2:30:01:: 00304422 4 1 -narrow%2:30:05:: 00437449 3 1 -narrow%2:31:00:: 00715541 2 1 -narrow%3:00:00:: 02561888 1 19 -narrow%3:00:02:: 02563310 4 0 -narrow%3:00:06:: 00287640 3 1 -narrow%5:00:00:careful:00 00310716 5 0 -narrow%5:00:00:limited:00 01415480 2 2 -narrow-bodied%5:00:00:bodied:00 00628519 1 0 -narrow-body%1:06:00:: 03809312 1 0 -narrow-body_aircraft%1:06:00:: 03809312 1 0 -narrow-leaf_cattail%1:20:00:: 12156117 1 0 -narrow-leaf_penstemon%1:20:00:: 12886831 1 0 -narrow-leaved_bottletree%1:20:00:: 12196954 1 0 -narrow-leaved_everlasting_pea%1:20:00:: 12541805 1 0 -narrow-leaved_flame_flower%1:20:00:: 11863242 1 0 -narrow-leaved_plantain%1:20:00:: 12599185 1 0 -narrow-leaved_reedmace%1:20:00:: 12156117 1 0 -narrow-leaved_spleenwort%1:20:00:: 13194918 1 0 -narrow-leaved_strap_fern%1:20:00:: 13175074 1 0 -narrow-leaved_water_plantain%1:20:00:: 12612811 1 0 -narrow-leaved_white-topped_aster%1:20:00:: 12013701 1 0 -narrow-minded%3:00:00:: 00287640 2 0 -narrow-minded%3:00:04:: 02155675 1 0 -narrow-minded%5:00:00:sectarian:00 02091997 3 0 -narrow-mindedly%4:02:00:: 00406638 1 0 -narrow-mindedness%1:09:00:: 06205411 1 0 -narrow-mouthed%5:00:00:narrow:00 02562484 1 0 -narrow_beech_fern%1:20:00:: 13231078 1 0 -narrow_boat%1:06:00:: 02947660 1 0 -narrow_down%2:30:01:: 00437449 2 0 -narrow_down%2:31:00:: 00715541 1 1 -narrow_escape%1:04:00:: 00061014 1 1 -narrow_gauge%1:06:00:: 03809456 1 0 -narrow_goldenrod%1:20:00:: 12017853 1 0 -narrow_margin%1:07:00:: 05121095 1 0 -narrow_wale%1:06:00:: 03809603 1 0 -narrowboat%1:06:00:: 02947660 1 0 -narrowbody_aircraft%1:06:00:: 03809312 1 0 -narrowed%5:00:00:constricted:00 01448697 2 0 -narrowed%5:00:00:narrow:00 02562368 1 2 -narrowhead_morel%1:20:00:: 13033577 1 0 -narrowing%1:04:00:: 00407407 3 0 -narrowing%1:07:00:: 05071027 1 1 -narrowing%1:22:00:: 13518563 2 0 -narrowing%5:00:00:narrow:00 02562235 2 0 -narrowing%5:00:02:narrow:00 02562909 1 0 -narrowly%4:02:00:: 00221429 1 3 -narrowness%1:07:00:: 05136788 1 1 -narrowness%1:07:01:: 05121095 4 0 -narrowness%1:09:00:: 06205411 2 0 -narrowness%1:09:01:: 05846626 3 0 -narthecium%1:20:00:: 12463574 1 0 -narthecium_americanum%1:20:00:: 12464128 1 0 -narthecium_ossifragum%1:20:00:: 12463975 1 0 -narthex%1:06:01:: 03809686 2 0 -narthex%1:06:02:: 03809802 1 0 -narwal%1:05:00:: 02072493 1 0 -narwhal%1:05:00:: 02072493 1 0 -narwhale%1:05:00:: 02072493 1 0 -nary%5:00:00:no:00 02268882 1 0 -nasa%1:14:00:: 08126290 1 0 -nasal%1:08:00:: 05277532 2 0 -nasal%1:10:00:: 07119211 1 0 -nasal%3:01:00:: 02978781 1 1 -nasal%5:00:00:high:03 01213550 2 1 -nasal_bone%1:08:00:: 05277532 1 0 -nasal_canthus%1:08:00:: 05314462 1 0 -nasal_cavity%1:08:00:: 05528604 1 1 -nasal_concha%1:08:00:: 05229341 1 0 -nasal_consonant%1:10:00:: 07119211 1 0 -nasal_decongestant%1:06:00:: 03809939 1 0 -nasal_meatus%1:08:00:: 05249094 1 0 -nasal_septum%1:08:00:: 05223110 1 0 -nasal_sinus%1:08:00:: 05253561 1 0 -nasal_twang%1:07:00:: 04989512 1 0 -nasale%2:32:00:: 00985593 1 1 -nasalis%1:05:00:: 02489060 1 0 -nasalis_larvatus%1:05:00:: 02489166 1 0 -nasalisation%1:10:00:: 07118002 1 0 -nasalise%2:32:00:: 00951206 2 0 -nasalise%2:32:01:: 00951399 1 0 -nasality%1:07:00:: 04989362 1 0 -nasalization%1:10:00:: 07118002 1 0 -nasalize%2:32:00:: 00951206 2 0 -nasalize%2:32:01:: 00951399 1 0 -nasally%4:02:00:: 00143367 1 0 -nascence%1:11:00:: 07320302 1 0 -nascency%1:11:00:: 07320302 1 0 -nascent%3:00:00:: 00003356 1 0 -nasdaq%1:06:00:: 03810186 1 0 -naseby%1:04:00:: 01288549 2 0 -naseby%1:15:00:: 08886037 1 0 -nash%1:18:00:: 11200686 1 0 -nash_equilibrium%1:26:00:: 14003599 1 0 -nashville%1:15:00:: 09141297 1 1 -nasion%1:08:00:: 05234162 1 0 -nasofrontal_vein%1:08:00:: 05374280 1 0 -nasogastric_feeding%1:04:00:: 01058539 1 0 -nasolacrimal_duct%1:08:00:: 05332438 1 0 -nasopharyngeal%3:01:00:: 02767250 1 0 -nasopharyngeal_leishmaniasis%1:26:00:: 14181409 1 0 -nasopharynx%1:08:00:: 05528854 1 0 -nasotracheal_tube%1:06:00:: 03810412 1 0 -nassau%1:15:00:: 08847570 1 1 -nasser%1:17:00:: 09332246 2 0 -nasser%1:18:00:: 11200812 1 0 -nast%1:18:00:: 11200949 1 0 -nastily%4:02:00:: 00407053 1 0 -nastiness%1:07:00:: 04780755 3 0 -nastiness%1:07:02:: 04842515 2 0 -nastiness%1:26:00:: 14495761 1 0 -nasturtium%1:13:00:: 07819769 3 0 -nasturtium%1:20:01:: 12719684 1 0 -nasturtium%1:20:02:: 11893004 2 0 -nasturtium_amphibium%1:20:00:: 11895714 1 0 -nasturtium_family%1:20:00:: 12719277 1 0 -nasturtium_officinale%1:20:00:: 11893131 1 0 -nasty%3:00:00:: 01587077 1 2 -nasty%5:00:00:difficult:00 00747727 2 0 -nasty%5:00:00:dirty:01 00421590 4 0 -nasty%5:00:00:dirty:02 00425313 3 0 -nasua%1:05:00:: 02509405 1 0 -nasua_narica%1:05:00:: 02509515 1 0 -nat_turner%1:18:00:: 11353195 1 0 -natal%1:15:00:: 08971693 1 0 -natal%1:15:01:: 08856037 2 0 -natal%3:01:00:: 02767378 1 1 -natal%3:01:01:: 02767514 2 0 -natal_day%1:28:00:: 15252422 1 0 -natal_plum%1:13:00:: 07746910 3 0 -natal_plum%1:20:00:: 11771924 1 0 -natal_plum%1:20:01:: 11771746 2 0 -natalie_wood%1:18:00:: 11395895 1 0 -natality%1:28:00:: 15276427 1 0 -natantia%1:05:00:: 01986367 1 0 -natation%1:04:00:: 00443231 1 0 -natator%1:18:00:: 10683126 1 0 -natatorium%1:06:00:: 04371225 1 0 -natchez%1:15:00:: 09105260 1 0 -nates%1:08:00:: 05559256 1 0 -nathan_bailey%1:18:00:: 10831136 1 0 -nathan_birnbaum%1:18:00:: 10873783 1 0 -nathan_hale%1:18:00:: 11023623 1 0 -nathaniel_bailey%1:18:00:: 10831136 1 0 -nathaniel_bowditch%1:18:00:: 10859485 1 0 -nathaniel_currier%1:18:00:: 10918358 1 0 -nathaniel_hawthorne%1:18:00:: 11035618 1 0 -naticidae%1:05:00:: 01947874 1 0 -nation%1:14:00:: 08168978 1 33 -nation%1:14:01:: 08166552 2 10 -nation%1:14:02:: 08303692 4 0 -nation%1:18:00:: 11201061 3 0 -nation_of_islam%1:14:00:: 08476629 1 0 -national%1:18:00:: 09625401 1 2 -national%3:00:00:: 01567862 2 17 -national%3:00:01:: 01105840 3 6 -national%3:01:00:: 02988060 1 46 -national%3:01:01:: 02988281 7 0 -national%3:01:02:: 02988402 6 1 -national%5:00:00:domestic:00 01038332 5 5 -national%5:00:00:public:00 01861776 4 5 -national_academy_of_sciences%1:14:00:: 08281029 1 0 -national_aeronautics_and_space_administration%1:14:00:: 08126290 1 0 -national_anthem%1:10:00:: 07049055 1 1 -national_archives_and_records_administration%1:14:00:: 08126483 1 0 -national_assistance%1:04:00:: 01087740 1 0 -national_association_of_realtors%1:14:00:: 08487319 1 0 -national_association_of_securities_dealers_automated_quotations%1:06:00:: 03810186 1 0 -national_bank%1:14:00:: 08418631 1 0 -national_baseball_hall_of_fame%1:06:00:: 03810561 1 0 -national_capital%1:15:00:: 08691669 1 0 -national_censorship%1:04:00:: 00822755 1 0 -national_climatic_data_center%1:14:00:: 08130292 1 0 -national_debt%1:21:00:: 13397519 1 0 -national_debt_ceiling%1:21:00:: 13398074 1 0 -national_flag%1:10:00:: 06882009 1 0 -national_geospatial-intelligence_agency%1:14:00:: 08396537 1 0 -national_guard%1:14:00:: 08391387 1 2 -national_guard_bureau%1:14:00:: 08391696 1 0 -national_holiday%1:28:00:: 15199592 1 0 -national_income%1:21:00:: 13256894 1 1 -national_institute_of_justice%1:14:00:: 08142170 1 0 -national_institute_of_standards_and_technology%1:14:00:: 08131005 1 0 -national_institutes_of_health%1:14:00:: 08134081 1 0 -national_insurance%1:04:00:: 01087498 1 0 -national_intelligence_community%1:14:00:: 08340153 1 0 -national_labor_relations_board%1:14:00:: 08126716 1 0 -national_leader%1:18:00:: 10650162 1 1 -national_liberation_army%1:14:00:: 08035233 2 0 -national_liberation_army%1:14:01:: 08035601 1 0 -national_liberation_front_of_corsica%1:14:00:: 08036005 1 0 -national_library_of_medicine%1:06:00:: 03810741 1 0 -national_monument%1:06:00:: 03810952 1 0 -national_oceanic_and_atmospheric_administration%1:14:00:: 08129883 1 0 -national_park%1:15:00:: 08600992 1 1 -national_park_service%1:14:00:: 08139637 1 1 -national_reconnaissance_office%1:14:00:: 08347704 1 0 -national_rifle_association%1:14:00:: 08375722 1 0 -national_science_foundation%1:14:00:: 08126921 1 0 -national_security_agency%1:14:00:: 08348091 1 0 -national_security_council%1:14:00:: 08127760 1 0 -national_service%1:04:00:: 00579201 1 0 -national_socialism%1:14:00:: 08366440 1 0 -national_socialist%3:01:00:: 02999718 1 0 -national_socialist_german_workers'_party%1:14:00:: 08262309 1 0 -national_technical_information_service%1:14:00:: 08131254 1 0 -national_trading_policy%1:10:00:: 06663018 1 0 -national_trust%1:14:00:: 08049125 1 0 -national_volunteers_association%1:14:00:: 08235623 1 0 -national_weather_service%1:14:00:: 08130476 1 0 -nationalisation%1:04:00:: 01151788 3 0 -nationalisation%1:04:01:: 01152300 2 0 -nationalisation%1:04:02:: 01152461 1 0 -nationalise%2:30:00:: 00411547 2 0 -nationalise%2:30:01:: 00578295 1 0 -nationalism%1:07:00:: 04878101 1 7 -nationalism%1:09:00:: 05965022 2 5 -nationalism%1:09:01:: 05965195 4 0 -nationalism%1:12:00:: 07485047 3 0 -nationalist%1:18:00:: 10407310 1 0 -nationalist%1:18:01:: 10346015 2 0 -nationalist%5:00:00:national:00 01568092 1 0 -nationalist_china%1:15:00:: 08730550 1 0 -nationalist_leader%1:18:00:: 10346198 1 0 -nationalistic%5:00:00:national:00 01568092 2 0 -nationalistic%5:00:00:patriotic:00 01740358 1 3 -nationality%1:14:00:: 07949463 1 1 -nationality%1:26:00:: 13953787 2 0 -nationalization%1:04:00:: 01151788 3 0 -nationalization%1:04:01:: 01152300 2 0 -nationalization%1:04:02:: 01152461 1 0 -nationalize%2:30:00:: 00411547 1 2 -nationalize%2:30:01:: 00578295 2 0 -nationally%4:02:00:: 00407215 2 1 -nationally%4:02:02:: 00135667 1 2 -nationhood%1:26:00:: 13926451 1 0 -nationwide%4:02:00:: 00407215 1 0 -nationwide%5:00:00:comprehensive:00 00526984 1 0 -native%1:03:00:: 00019046 3 0 -native%1:18:00:: 09620794 1 3 -native%1:18:01:: 09621232 2 0 -native%3:00:01:: 01036083 1 5 -native%3:00:02:: 01037148 3 1 -native%3:00:03:: 01033996 2 2 -native%5:00:00:pure:02 01906975 4 0 -native-born%5:00:00:native:01 01037022 1 0 -native_alaskan%1:18:00:: 09741074 1 0 -native_american%1:18:00:: 09644820 1 0 -native_american%3:01:00:: 02928066 1 0 -native_australian%1:18:00:: 09676490 1 0 -native_bear%1:05:00:: 01882714 1 0 -native_beech%1:20:00:: 12698598 1 0 -native_cat%1:05:00:: 01884203 1 0 -native_cranberry%1:20:00:: 12254168 1 0 -native_fuchsia%1:20:00:: 12343951 1 0 -native_hawaiian%1:18:00:: 09742690 1 0 -native_holly%1:20:00:: 12562141 1 0 -native_land%1:15:00:: 08510169 1 3 -native_language%1:10:00:: 06903396 1 0 -native_orange%1:20:00:: 11865738 1 0 -native_peach%1:13:00:: 07769306 1 0 -native_pear%1:20:00:: 12224140 1 0 -native_pomegranate%1:20:00:: 11865276 1 0 -native_speaker%1:18:00:: 10631131 1 0 -native_sulfur%1:27:00:: 14785325 1 0 -native_sulphur%1:27:00:: 14785325 1 0 -nativeness%1:07:00:: 04799881 1 0 -nativism%1:09:00:: 05973198 2 0 -nativism%1:10:00:: 06660668 1 0 -nativist%1:18:00:: 09625676 1 0 -nativist%3:01:00:: 02988550 2 0 -nativist%3:01:01:: 02988793 1 0 -nativistic%3:01:00:: 02988550 2 0 -nativistic%3:01:01:: 02988793 1 0 -nativity%1:09:00:: 06192908 2 0 -nativity%1:11:00:: 07320302 1 0 -nato%1:14:00:: 08174398 1 0 -natriuresis%1:26:00:: 14270241 1 0 -natriuretic%3:01:00:: 02767596 1 0 -natrix%1:05:00:: 01737197 1 0 -natrix_maura%1:05:00:: 01738065 1 0 -natrix_natrix%1:05:00:: 01737875 1 0 -natrix_sipedon%1:05:00:: 01737472 1 0 -natrolite%1:27:00:: 15107524 1 0 -natta%1:18:00:: 11201264 1 0 -natter%2:32:00:: 01038666 1 0 -natterjack%1:05:00:: 01646648 1 0 -nattily%4:02:00:: 00407419 1 0 -nattiness%1:07:00:: 04814025 1 0 -natty%5:00:00:fashionable:00 00971933 1 0 -natural%1:04:00:: 01245950 3 0 -natural%1:10:00:: 06867218 2 0 -natural%1:18:00:: 10346392 1 0 -natural%3:00:01:: 01569965 1 22 -natural%3:00:02:: 01570892 2 15 -natural%3:00:03:: 01574036 3 4 -natural%3:00:04:: 01577771 5 0 -natural%5:00:00:biological:00 01406180 8 0 -natural%5:00:00:intelligent:00 01335708 9 0 -natural%5:00:00:normal:01 01595050 4 2 -natural%5:00:00:spontaneous:00 02282985 6 0 -natural%5:00:00:unaffected:01 00074594 10 0 -natural%5:00:00:unprocessed:00 01952643 7 0 -natural_ability%1:09:00:: 05623937 1 0 -natural_action%1:22:00:: 13518963 1 0 -natural_childbirth%1:22:00:: 13518656 1 0 -natural_covering%1:17:00:: 09257949 1 0 -natural_depression%1:17:00:: 09366017 1 0 -natural_elevation%1:17:00:: 09366317 1 0 -natural_enclosure%1:17:00:: 09273291 1 0 -natural_endowment%1:09:00:: 05624042 1 0 -natural_event%1:11:00:: 07283608 1 0 -natural_family_planning%1:04:00:: 00851689 1 0 -natural_fiber%1:27:00:: 14959234 1 0 -natural_fibre%1:27:00:: 14959234 1 0 -natural_gas%1:27:00:: 14960090 1 1 -natural_glass%1:27:00:: 14879605 1 0 -natural_history%1:09:00:: 05794189 1 0 -natural_immunity%1:26:00:: 14528571 1 0 -natural_language%1:10:00:: 06904171 1 0 -natural_language_processing%1:09:00:: 06142412 1 0 -natural_language_processing_application%1:10:00:: 06572011 1 0 -natural_language_processor%1:10:00:: 06572011 1 0 -natural_law%1:09:00:: 05870916 1 4 -natural_logarithm%1:10:00:: 06813004 1 0 -natural_number%1:23:00:: 13728367 1 0 -natural_object%1:03:00:: 00019128 1 0 -natural_order%1:17:00:: 09366597 1 1 -natural_phenomenon%1:19:00:: 11408559 1 1 -natural_philosophy%1:09:00:: 06090869 1 0 -natural_process%1:22:00:: 13518963 1 0 -natural_resin%1:27:00:: 14894481 1 0 -natural_resource%1:21:00:: 13332009 1 3 -natural_resources%1:21:00:: 13332009 1 1 -natural_rubber%1:27:00:: 15006258 1 0 -natural_science%1:09:00:: 06000400 1 1 -natural_scientist%1:18:00:: 10346514 1 0 -natural_selection%1:22:00:: 13563746 1 0 -natural_shape%1:25:00:: 13862282 1 0 -natural_spring%1:17:00:: 09443453 1 0 -natural_state%1:26:00:: 13939353 1 0 -natural_theology%1:09:00:: 06184963 1 0 -natural_virtue%1:07:00:: 04847733 1 0 -naturalisation%1:04:00:: 01187620 2 0 -naturalisation%1:04:01:: 00084642 4 0 -naturalisation%1:04:02:: 00920956 3 0 -naturalisation%1:07:00:: 04787324 1 0 -naturalise%2:30:00:: 00412292 3 0 -naturalise%2:30:01:: 00412696 2 0 -naturalise%2:30:02:: 00412993 1 0 -naturalise%2:30:03:: 00302464 4 0 -naturalised%5:00:00:planted:00 01831789 1 0 -naturalism%1:09:00:: 05973372 1 1 -naturalism%1:14:00:: 08469457 2 0 -naturalist%1:18:00:: 10346514 2 0 -naturalist%1:18:01:: 10346955 1 0 -naturalistic%5:00:00:representational:00 01979985 1 0 -naturalization%1:04:00:: 01187620 2 0 -naturalization%1:04:01:: 00084642 4 0 -naturalization%1:04:02:: 00920956 3 0 -naturalization%1:07:00:: 04787324 1 0 -naturalize%2:30:00:: 00412292 1 1 -naturalize%2:30:01:: 00412696 4 0 -naturalize%2:30:02:: 00412993 3 0 -naturalize%2:30:03:: 00302464 5 0 -naturalize%2:32:00:: 00939757 2 0 -naturalized%5:00:00:planted:00 01831789 2 0 -naturalized%5:00:02:foreign:01 01035422 1 1 -naturally%4:02:00:: 00038625 1 22 -naturally%4:02:01:: 00140403 2 7 -naturally%4:02:02:: 00488773 4 1 -naturally%4:02:03:: 00505352 3 2 -naturally_occurring%5:00:00:present:02 01847349 1 0 -naturalness%1:07:00:: 04785908 1 1 -naturalness%1:07:01:: 04747246 3 0 -naturalness%1:07:02:: 04880830 2 0 -nature%1:07:01:: 04623113 4 3 -nature%1:07:02:: 04726724 1 41 -nature%1:09:00:: 05840431 5 0 -nature%1:17:00:: 09366762 3 9 -nature%1:18:00:: 09503682 2 12 -nature_study%1:09:00:: 05797899 1 0 -nature_worship%1:09:00:: 05949336 1 0 -naturism%1:04:00:: 01031563 1 0 -naturist%1:18:00:: 10365701 1 0 -naturistic%3:01:00:: 02989069 1 0 -naturopath%1:18:00:: 10347110 1 1 -naturopathy%1:04:00:: 00708332 1 0 -nauch%1:04:00:: 00526793 1 0 -nauclea%1:20:00:: 12668732 1 0 -nauclea_diderrichii%1:20:00:: 12668917 1 0 -naucrates%1:05:00:: 02580055 1 0 -naucrates_ductor%1:05:00:: 02580188 1 0 -naught%1:04:00:: 00067153 2 0 -naught%1:23:00:: 13740168 1 1 -naughtily%4:02:00:: 00016678 1 0 -naughtiness%1:07:00:: 04909563 1 0 -naughty%5:00:00:bad:00 01128406 2 0 -naughty%5:00:00:sexy:00 02132224 1 0 -naumachia%1:06:00:: 03811163 1 0 -naumachy%1:06:00:: 03811163 1 0 -naupathia%1:26:00:: 14203942 1 0 -nauru%1:15:00:: 08841483 1 0 -nauru%1:15:01:: 08841209 2 0 -nauru_island%1:15:00:: 08841209 1 0 -nauruan%1:18:00:: 09723944 1 0 -nauruan%3:01:00:: 03088968 1 0 -nausea%1:12:00:: 07504111 2 0 -nausea%1:26:00:: 14359952 1 2 -nauseant%1:06:00:: 03283519 1 0 -nauseate%2:37:00:: 01808374 2 0 -nauseate%2:39:00:: 02195191 1 0 -nauseated%5:00:00:ill:01 02545689 1 1 -nauseating%5:00:00:unwholesome:00 02560035 1 0 -nauseatingness%1:07:00:: 04996571 1 0 -nauseous%5:00:00:ill:01 02545689 2 0 -nauseous%5:00:00:unwholesome:00 02560035 1 0 -naut_mi%1:23:00:: 13660337 2 0 -naut_mi%1:23:01:: 13660619 1 0 -nautch%1:04:00:: 00526793 1 0 -nautch_dance%1:04:00:: 00526793 1 0 -nautch_girl%1:18:00:: 10347204 1 0 -nautical%3:01:02:: 02889746 1 1 -nautical_chain%1:23:00:: 13660084 1 0 -nautical_linear_unit%1:23:00:: 13649626 1 0 -nautical_mile%1:23:01:: 13660337 2 0 -nautical_mile%1:23:02:: 13660619 1 0 -nautical_signal_flag%1:10:00:: 06875392 1 0 -nautilidae%1:05:00:: 01968591 1 0 -nautilus%1:05:01:: 01968897 3 0 -nautilus%1:05:02:: 01970667 2 0 -nautilus%1:06:00:: 03811295 1 0 -navaho%1:10:00:: 06919712 2 0 -navaho%1:18:00:: 09662661 1 0 -navajo%1:10:00:: 06919712 2 0 -navajo%1:18:00:: 09662661 1 0 -naval%3:01:00:: 02767701 1 8 -naval_academy%1:14:00:: 08279665 1 0 -naval_air_warfare_center_weapons_division%1:14:00:: 08193212 1 0 -naval_attache%1:18:00:: 10347298 1 0 -naval_battle%1:04:00:: 00958477 1 0 -naval_blockade%1:04:00:: 01074970 1 4 -naval_brass%1:27:00:: 14960261 1 0 -naval_campaign%1:04:00:: 00970478 1 0 -naval_chart%1:06:00:: 03811648 1 0 -naval_commander%1:18:00:: 10347446 1 0 -naval_division%1:14:00:: 08219226 1 0 -naval_engineer%1:18:00:: 10294421 1 0 -naval_engineering%1:09:00:: 06135503 1 0 -naval_equipment%1:06:00:: 03811847 1 0 -naval_forces%1:14:00:: 08191701 1 0 -naval_gun%1:06:00:: 03811965 1 0 -naval_installation%1:06:00:: 03812119 1 0 -naval_missile%1:06:00:: 03812263 1 0 -naval_officer%1:18:00:: 10347593 1 0 -naval_radar%1:06:00:: 03812382 1 0 -naval_research_laboratory%1:06:00:: 03812541 1 0 -naval_shipyard%1:06:00:: 03813704 1 0 -naval_special_warfare%1:14:00:: 08193448 1 0 -naval_surface_warfare_center%1:14:00:: 08193645 1 0 -naval_tactical_data_system%1:06:00:: 03812789 1 0 -naval_underwater_warfare_center%1:14:00:: 08193854 1 0 -naval_unit%1:14:00:: 08191532 1 0 -naval_weaponry%1:06:00:: 03812924 1 0 -navane%1:06:00:: 04425656 1 0 -navarino%1:04:00:: 01288795 1 0 -nave%1:06:00:: 03813078 1 0 -navel%1:08:00:: 05556595 1 2 -navel%1:15:00:: 08524404 2 0 -navel-gazing%1:09:00:: 05787848 1 0 -navel_orange%1:13:00:: 07749192 1 0 -navel_point%1:15:00:: 08524404 1 0 -navicular%1:08:00:: 05272276 1 0 -navicular%5:00:00:formed:00 02148526 1 0 -navigability%1:07:00:: 04719661 1 0 -navigable%5:00:00:passable:00 01724743 1 0 -navigate%2:38:00:: 01933305 2 0 -navigate%2:38:02:: 01846320 1 2 -navigate%2:38:03:: 01932704 3 0 -navigation%1:04:00:: 00815801 1 1 -navigation%1:04:01:: 00314469 3 0 -navigation%1:04:02:: 01105737 2 0 -navigation_light%1:06:00:: 03813369 1 0 -navigational%3:01:00:: 02909006 1 0 -navigational_chart%1:06:00:: 03811648 1 0 -navigational_instrument%1:06:00:: 03813176 1 0 -navigational_system%1:06:00:: 03811444 1 0 -navigator%1:18:00:: 10347883 3 0 -navigator%1:18:01:: 10348365 2 0 -navigator%1:18:02:: 10546428 1 1 -navratilova%1:18:00:: 11201740 1 0 -navvy%1:18:00:: 10035809 1 0 -navy%1:07:00:: 04969703 2 1 -navy%1:14:00:: 08191701 1 9 -navy%1:14:01:: 08191987 3 0 -navy_base%1:06:00:: 03813612 1 0 -navy_bean%1:13:00:: 07727140 1 0 -navy_blue%1:07:00:: 04969703 1 0 -navy_cross%1:10:00:: 06707709 1 0 -navy_department%1:14:00:: 08144907 1 0 -navy_man%1:18:00:: 09861395 1 0 -navy_seal%1:18:00:: 10348526 1 0 -navy_secretary%1:04:00:: 00603319 1 0 -navy_yard%1:06:00:: 03813704 1 0 -nawab%1:18:00:: 10348752 1 0 -nawcwpns%1:14:00:: 08193212 1 0 -nay%1:10:00:: 07205210 1 1 -nay%4:02:00:: 00407679 1 1 -naysayer%1:18:00:: 10349551 1 0 -naysaying%1:10:00:: 07204822 1 0 -nazarene%1:18:00:: 10349670 3 0 -nazarene%1:18:01:: 10349750 2 0 -nazarene%1:18:02:: 10349836 1 0 -nazarene%3:01:00:: 02767872 2 0 -nazarene%3:01:01:: 02768002 1 0 -nazareth%1:15:00:: 08794193 1 0 -naze%1:15:00:: 08765771 1 0 -nazi%1:18:00:: 10350220 1 6 -nazi%1:18:01:: 10350484 2 0 -nazi%3:01:00:: 02999718 2 1 -nazi%3:01:02:: 02999904 1 5 -nazi_germany%1:14:00:: 08170255 1 0 -nazi_party%1:14:00:: 08262309 1 0 -nazification%1:22:00:: 13520426 1 0 -nazify%2:30:00:: 00502085 1 0 -naziism%1:14:00:: 08366440 1 0 -nazimova%1:18:00:: 11201941 1 0 -nazism%1:14:00:: 08366440 1 1 -nb%1:10:00:: 06764380 2 0 -nb%1:27:00:: 14646942 1 0 -nbe%1:24:00:: 13831310 1 0 -nbw%1:24:00:: 13835308 1 0 -nc%1:15:00:: 09126305 1 0 -ncdc%1:14:00:: 08130292 1 0 -nd%1:15:00:: 09129442 2 0 -nd%1:27:00:: 14645882 1 0 -ndebele%1:10:00:: 06994488 1 0 -ndjamena%1:15:00:: 08720280 1 0 -ne%1:15:00:: 09109444 3 0 -ne%1:24:00:: 13831843 2 0 -ne%1:27:00:: 14646152 1 0 -ne'er%4:02:00:: 00020759 1 0 -ne'er-do-well%1:18:00:: 10135953 1 0 -ne_plus_ultra%1:26:00:: 14459422 1 0 -neandertal%1:05:00:: 02475078 1 0 -neandertal%3:01:00:: 03089121 1 0 -neandertal%5:00:00:unrefined:01 01949859 2 0 -neandertal_man%1:05:00:: 02475078 1 0 -neanderthal%1:05:00:: 02475078 1 0 -neanderthal%3:01:00:: 03089121 2 0 -neanderthal%5:00:00:unrefined:01 01949859 1 1 -neanderthal_man%1:05:00:: 02475078 1 0 -neanderthalian%3:01:00:: 03089121 1 0 -neap%1:11:00:: 07403300 1 0 -neap_tide%1:11:00:: 07403300 1 0 -neapolitan%1:18:00:: 10350666 1 0 -neapolitan%3:01:00:: 02970442 1 0 -neapolitan_ice_cream%1:13:00:: 07615052 1 0 -near%2:38:00:: 02053941 1 11 -near%3:00:00:: 00444519 1 44 -near%4:02:01:: 00409709 1 19 -near%4:02:03:: 00073033 2 1 -near%5:00:00:artificial:00 01573762 3 0 -near%5:00:00:close:02 00452883 5 0 -near%5:00:00:left:00 02033556 2 0 -near%5:00:00:stingy:00 01113225 4 0 -near%5:00:02:close:02 00451872 6 0 -near-blind%5:00:00:blind:00 02159969 1 1 -near-death_experience%1:11:00:: 07287610 1 0 -near_beer%1:13:00:: 07891189 1 0 -near_east%1:15:00:: 08791167 1 0 -near_gale%1:19:00:: 11462013 1 0 -near_miss%1:11:00:: 07301846 1 0 -near_thing%1:04:00:: 00204334 1 0 -near_vision%1:09:00:: 05656890 1 0 -nearby%4:02:00:: 00071321 1 7 -nearby%5:00:00:near:00 00445169 1 8 -nearer%4:02:00:: 00407802 1 1 -nearest%4:02:00:: 00408021 1 0 -nearly%4:02:00:: 00073033 1 53 -nearly%4:02:02:: 00160659 2 0 -nearness%1:07:00:: 05085572 1 1 -nearside%1:06:00:: 03813834 1 0 -nearsighted%3:00:00:: 02157226 1 1 -nearsightedness%1:26:00:: 14553290 1 0 -neat%5:00:00:adroit:00 00061664 4 1 -neat%5:00:00:elegant:00 00850648 3 1 -neat%5:00:00:good:01 01123879 5 0 -neat%5:00:00:tidy:00 02423284 1 9 -neat%5:00:00:undiluted:00 00757120 6 0 -neat%5:00:03:tidy:00 02423432 2 1 -neat's-foot_oil%1:27:00:: 14960457 1 0 -neaten%2:29:00:: 00040353 2 0 -neaten%2:30:00:: 00275843 1 0 -neatly%4:02:00:: 00180057 1 6 -neatness%1:07:00:: 04896515 2 0 -neatness%1:26:00:: 14497365 1 0 -neb%1:05:01:: 01758308 2 0 -neb%1:05:02:: 02452637 1 0 -nebbech%1:18:00:: 10350774 1 0 -nebbish%1:18:00:: 10350774 1 0 -nebcin%1:06:00:: 04443588 1 0 -nebe%1:24:00:: 13831994 1 0 -nebiim%1:10:00:: 06452601 1 0 -nebn%1:24:00:: 13831717 1 0 -nebo%1:18:00:: 09519596 1 0 -nebraska%1:15:00:: 09109444 1 1 -nebraska_fern%1:20:00:: 12935609 1 0 -nebraskan%1:18:00:: 09744161 1 0 -nebuchadnezzar%1:06:00:: 03813946 2 0 -nebuchadnezzar%1:18:00:: 11202063 1 0 -nebuchadnezzar_ii%1:18:00:: 11202063 1 0 -nebuchadrezzar%1:18:00:: 11202063 1 0 -nebuchadrezzar_ii%1:18:00:: 11202063 1 0 -nebula%1:07:00:: 04682184 4 0 -nebula%1:17:00:: 09366940 3 0 -nebula%1:26:00:: 14314756 2 0 -nebula%1:27:00:: 14960606 1 0 -nebular%3:01:00:: 03089377 1 0 -nebular%5:00:00:cloudy:00 00462129 2 0 -nebular_hypothesis%1:09:00:: 05888215 1 0 -nebule%1:17:00:: 09367137 1 0 -nebuliser%1:06:00:: 02754103 1 0 -nebulizer%1:06:00:: 02754103 1 0 -nebulose%5:00:00:indistinct:00 00781974 1 0 -nebulous%3:01:00:: 03089377 2 0 -nebulous%5:00:00:indefinite:00 00702245 3 0 -nebulous%5:00:00:indistinct:00 00781974 1 1 -nebulously%4:02:00:: 00511825 1 0 -nec%1:26:00:: 14136868 1 0 -necessarily%4:02:00:: 00408205 1 5 -necessarily%4:02:01:: 00408375 3 1 -necessarily%4:02:03:: 00112393 2 4 -necessary%1:17:00:: 09367203 1 0 -necessary%3:00:00:: 01580050 1 81 -necessary%5:00:00:inevitable:00 00343552 2 1 -necessitarian%1:18:00:: 10350896 1 0 -necessitate%2:42:00:: 02627934 1 12 -necessitate%2:42:01:: 02635547 2 4 -necessitous%5:00:00:poor:00 02023430 1 0 -necessity%1:17:00:: 09367203 2 7 -necessity%1:26:00:: 14450691 1 11 -neck%1:06:00:: 03814112 5 0 -neck%1:06:01:: 03814348 4 0 -neck%1:08:00:: 05546540 1 34 -neck%1:13:00:: 07661357 3 0 -neck%1:17:00:: 09367733 2 0 -neck%2:35:00:: 01426153 1 0 -neck-deep%5:00:00:involved:00 01516605 1 0 -neck_and_neck%4:02:00:: 00408632 1 0 -neck_and_neck%5:00:00:inconclusive:00 00551416 1 0 -neck_bone%1:08:00:: 05588551 1 0 -neck_brace%1:06:00:: 03814639 1 0 -neck_exercise%1:04:00:: 00630526 1 0 -neck_of_the_woods%1:15:00:: 08641113 1 0 -neck_opening%1:06:00:: 03814112 1 0 -neck_ruff%1:06:00:: 03024746 1 0 -neck_sweetbread%1:13:00:: 07652881 1 0 -neckar%1:17:00:: 09367827 1 0 -neckar_river%1:17:00:: 09367827 1 0 -neckband%1:06:00:: 03068181 2 0 -neckband%1:06:01:: 03024882 3 0 -neckband%1:06:02:: 03814528 1 0 -neckcloth%1:06:00:: 03814727 1 0 -necked%3:00:00:: 01209003 1 0 -necker%1:18:00:: 10351064 1 0 -neckerchief%1:06:00:: 03814817 1 0 -necking%1:04:00:: 00854000 2 0 -necking%1:06:00:: 03448491 1 0 -necklace%1:06:00:: 03814906 1 1 -necklace_poplar%1:20:00:: 12732966 1 0 -necklace_tree%1:20:00:: 12553573 1 0 -neckless%3:00:00:: 01209679 1 0 -necklet%1:06:00:: 03815149 1 0 -necklike%5:00:00:necked:00 01209470 1 0 -neckline%1:06:00:: 03815278 1 0 -neckpiece%1:06:00:: 03815482 1 0 -necktie%1:06:00:: 03815615 1 2 -neckwear%1:06:00:: 03816005 1 0 -necrobiosis%1:19:00:: 11486178 1 0 -necrobiosis_lipoidica%1:26:00:: 14230588 1 0 -necrobiosis_lipoidica_diabeticorum%1:26:00:: 14230588 1 0 -necrology%1:10:00:: 06748133 1 0 -necrology%1:10:01:: 06493926 2 0 -necrolysis%1:22:00:: 13520629 1 0 -necromancer%1:18:00:: 10625860 1 0 -necromancer%1:18:01:: 10351152 2 0 -necromancy%1:09:00:: 05777439 2 0 -necromancy%1:09:01:: 05978812 1 0 -necromania%1:16:00:: 09182650 1 0 -necromantic%3:01:00:: 02910789 1 0 -necromantic%5:00:00:supernatural:00 01576845 2 0 -necromantical%3:01:00:: 02910789 1 0 -necrophagia%1:04:00:: 00842419 1 0 -necrophagy%1:04:00:: 00842419 1 0 -necrophilia%1:16:00:: 09182650 1 0 -necrophilism%1:16:00:: 09182650 1 0 -necropolis%1:15:00:: 08521623 1 0 -necropsy%1:04:00:: 00141396 1 1 -necrose%2:29:00:: 00097394 1 0 -necrosis%1:19:00:: 11486708 1 3 -necrotic%3:01:00:: 02982602 1 1 -necrotizing_enteritis%1:26:00:: 14345168 1 0 -necrotizing_enterocolitis%1:26:00:: 14136868 1 0 -nectar%1:13:01:: 07610295 3 0 -nectar%1:13:02:: 07924276 2 0 -nectar%1:27:00:: 14846779 1 3 -nectar-rich%3:01:00:: 03089713 1 0 -nectariferous%3:01:00:: 03089615 1 0 -nectarine%1:13:00:: 07751148 2 0 -nectarine%1:20:00:: 12648196 1 0 -nectarine_tree%1:20:00:: 12648196 1 0 -nectarous%5:00:00:tasty:00 02395910 1 0 -nectary%1:20:00:: 11683838 1 1 -necturus%1:05:00:: 01634392 1 0 -necturus_maculosus%1:05:00:: 01634522 1 0 -nederland%1:15:00:: 08949093 1 0 -nee%5:00:00:inheritable:00 01315339 1 0 -need%1:03:00:: 00023773 3 12 -need%1:17:00:: 09367991 2 29 -need%1:26:00:: 14449126 1 56 -need%1:26:01:: 14493716 4 1 -need%2:34:00:: 01188725 2 98 -need%2:34:01:: 01189113 3 1 -need%2:42:00:: 02627934 1 110 -needed%5:00:00:necessary:00 01580775 1 21 -needer%1:18:00:: 10766025 1 0 -needful%5:00:00:necessary:00 01580775 1 0 -needfully%4:02:00:: 00408205 1 0 -neediness%1:07:00:: 04719805 2 0 -neediness%1:26:00:: 14493426 1 0 -needle%1:06:00:: 03816136 3 1 -needle%1:06:01:: 03816394 2 2 -needle%1:06:02:: 03923918 4 0 -needle%1:20:00:: 13157595 1 2 -needle%2:32:00:: 00851733 1 1 -needle%2:35:00:: 01331027 2 0 -needle-bush%1:20:00:: 12219289 1 0 -needle-shaped%5:00:00:simple:01 02167133 1 0 -needle-wood%1:20:00:: 12219065 1 0 -needle_bearing%1:06:00:: 02780315 1 0 -needle_biopsy%1:09:00:: 05743174 1 0 -needle_blight%1:26:00:: 14218158 1 0 -needle_bush%1:20:00:: 12219289 1 0 -needle_cast%1:26:00:: 14218158 1 0 -needle_furze%1:20:00:: 12530439 1 0 -needle_palm%1:20:00:: 12483427 1 0 -needle_rush%1:20:00:: 12153914 1 0 -needle_spike_rush%1:20:00:: 12153914 1 0 -needle_wood%1:20:00:: 12219065 1 0 -needlebush%1:20:00:: 12219289 1 0 -needlecraft%1:04:00:: 00910070 2 0 -needlecraft%1:06:00:: 03816849 1 0 -needled%5:00:00:simple:01 02168904 1 0 -needlefish%1:05:01:: 01455778 2 0 -needlefish%1:05:02:: 02549989 1 0 -needlelike%5:00:00:pointed:00 01810189 1 0 -needlenose_pliers%1:06:00:: 03816530 1 0 -needlepoint%1:06:00:: 03816659 2 0 -needlepoint%1:06:01:: 03975788 1 0 -needlepoint_embroidery%1:06:00:: 03816659 1 0 -needless%5:00:00:unnecessary:00 01582049 1 2 -needlessly%4:02:00:: 00195786 1 1 -needlewoman%1:18:00:: 10033412 1 0 -needlewood%1:20:00:: 12219065 1 0 -needlework%1:04:00:: 00910070 2 0 -needlework%1:06:00:: 03816849 1 0 -needleworker%1:18:00:: 10351281 1 0 -needs%4:02:00:: 00112393 1 0 -needy%1:14:00:: 08469678 1 0 -needy%5:00:00:demanding:01 00710909 2 0 -needy%5:00:00:poor:00 02023430 1 0 -neel%1:18:00:: 11202581 1 0 -neem%1:20:00:: 12696492 1 0 -neem_cake%1:27:00:: 14782919 1 0 -neem_seed%1:20:00:: 12696830 1 0 -neem_tree%1:20:00:: 12696492 1 0 -neencephalon%1:08:00:: 05481549 1 0 -nefarious%5:00:00:wicked:00 02515001 1 0 -nefariously%4:02:00:: 00408865 1 0 -nefariousness%1:07:00:: 04852750 1 0 -nefazodone%1:06:00:: 03817062 1 0 -nefertiti%1:18:00:: 11202722 1 0 -neftali_ricardo_reyes%1:18:00:: 11203795 1 0 -nefud%1:15:00:: 09171376 1 0 -negaprion%1:05:00:: 01490546 1 0 -negaprion_brevirostris%1:05:00:: 01490670 1 0 -negara_brunei_darussalam%1:15:00:: 08896092 1 0 -negate%2:30:03:: 00470084 4 0 -negate%2:31:00:: 00666886 3 0 -negate%2:32:00:: 00823436 2 0 -negate%2:42:00:: 02663141 1 0 -negation%1:10:00:: 07206461 2 0 -negation%1:10:01:: 07280941 1 0 -negation%1:10:02:: 06751572 3 0 -negative%1:06:00:: 03817191 2 0 -negative%1:10:00:: 07204911 1 1 -negative%2:41:00:: 02473431 1 0 -negative%3:00:01:: 00075515 2 2 -negative%3:00:02:: 01818234 1 12 -negative%3:00:04:: 01820861 4 0 -negative%3:00:05:: 01820338 5 0 -negative%5:00:00:bad:00 01128508 3 1 -negative%5:00:00:charged:00 00358534 8 0 -negative%5:00:00:destructive:00 00587890 7 0 -negative%5:00:00:disadvantageous:00 00065667 9 0 -negative%5:00:00:minus:00 01819976 6 0 -negative_charge%1:19:00:: 11436019 1 2 -negative_chemotaxis%1:04:00:: 00863017 1 0 -negative_correlation%1:09:00:: 06033172 1 0 -negative_feedback%1:22:00:: 13520731 1 0 -negative_feedback_circuit%1:06:00:: 03097535 1 0 -negative_identification%1:10:00:: 06885906 1 0 -negative_magnetic_pole%1:06:00:: 03817331 1 0 -negative_muon%1:17:00:: 09363214 1 0 -negative_pole%1:06:00:: 03817331 2 0 -negative_pole%1:06:01:: 03817522 1 0 -negative_reinforcer%1:09:00:: 05829012 1 0 -negative_reinforcing_stimulus%1:09:00:: 05829012 1 0 -negative_stimulation%1:09:00:: 05828263 1 0 -negative_stimulus%1:09:00:: 05829480 1 0 -negatively%4:02:00:: 00004184 2 0 -negatively%4:02:01:: 00004288 1 0 -negatively_charged%5:00:00:charged:00 00358534 1 1 -negativeness%1:07:00:: 05167618 2 0 -negativeness%1:07:03:: 05108262 3 0 -negativeness%1:24:00:: 13857008 1 0 -negativism%1:07:00:: 05167618 1 0 -negativist%1:18:00:: 09999795 2 0 -negativist%1:18:01:: 10351491 1 0 -negativity%1:07:00:: 05167618 2 0 -negativity%1:07:02:: 04944513 4 0 -negativity%1:07:03:: 05108262 3 0 -negativity%1:24:00:: 13857008 1 0 -negatron%1:17:00:: 09271904 1 0 -negev%1:15:00:: 09171560 1 0 -negev_desert%1:15:00:: 09171560 1 0 -neggram%1:06:00:: 03806040 1 0 -neglect%1:04:00:: 00739270 5 0 -neglect%1:04:02:: 00418615 3 1 -neglect%1:07:00:: 04665813 4 0 -neglect%1:09:00:: 05706629 1 2 -neglect%1:26:00:: 14423428 2 1 -neglect%2:31:00:: 00614999 1 6 -neglect%2:31:01:: 00616857 4 3 -neglect%2:31:05:: 00616153 3 4 -neglect%2:41:00:: 02529284 2 4 -neglect_of_duty%1:04:00:: 00740609 1 0 -neglected%5:00:00:uncared-for:00 00308720 2 1 -neglected%5:00:00:unnoticed:00 01608656 1 1 -neglecter%1:18:00:: 10351625 1 0 -neglectful%5:00:00:negligent:00 00755220 2 0 -neglectful%5:00:02:negligent:00 00755876 1 0 -neglectfully%4:02:00:: 00409009 1 0 -neglectfulness%1:07:00:: 04665813 1 0 -neglige%1:06:00:: 03817647 1 0 -negligee%1:06:00:: 03817647 1 0 -negligence%1:04:00:: 00739270 1 2 -negligence%1:07:00:: 04665813 2 0 -negligent%3:00:00:: 00754873 1 1 -negligently%4:02:00:: 00409090 1 0 -negligible%5:00:00:minimal:00 01496462 1 7 -negligible%5:00:00:worthless:00 02502994 2 0 -negociate%2:32:00:: 00761713 6 0 -negociate%2:32:01:: 00762478 5 0 -negociate%2:38:00:: 02050688 4 0 -negociate%2:40:00:: 02221178 3 0 -negociate%2:40:02:: 02221328 2 0 -negociate%2:41:02:: 02522864 1 0 -negotiable%5:00:00:alienable:00 00093556 3 0 -negotiable%5:00:00:flexible:02 01024400 2 0 -negotiable%5:00:00:passable:00 01724916 1 0 -negotiable_instrument%1:10:00:: 06481156 1 0 -negotiant%1:18:00:: 10351874 1 0 -negotiate%2:32:00:: 00761713 1 17 -negotiate%2:38:00:: 02050688 2 0 -negotiation%1:04:00:: 01266364 2 0 -negotiation%1:10:00:: 07148192 1 2 -negotiator%1:18:00:: 10351874 1 0 -negotiatress%1:18:00:: 10352208 1 0 -negotiatrix%1:18:00:: 10352208 1 0 -negress%1:18:00:: 09636796 1 0 -negritude%1:09:00:: 06219415 1 0 -negro%1:18:00:: 09636339 1 22 -negro%5:00:00:black:02 00242832 1 9 -negro_peach%1:20:00:: 12670334 1 0 -negro_pepper%1:20:00:: 11696935 1 0 -negro_race%1:18:00:: 09636890 1 0 -negro_spiritual%1:10:00:: 07035598 1 0 -negro_vine%1:20:00:: 13239736 1 0 -negroid%1:18:00:: 09636339 1 0 -negroid%5:00:00:black:02 00243039 1 1 -negroid_race%1:18:00:: 09636890 1 0 -negus%1:13:00:: 07927070 1 0 -nehemiah%1:10:00:: 06436443 1 0 -nehru%1:18:00:: 11202833 1 0 -nei_monggol%1:15:00:: 08729971 1 0 -neigh%1:11:00:: 07387316 1 0 -neigh%2:32:00:: 01059743 1 0 -neighbor%1:17:00:: 09368224 2 0 -neighbor%1:18:00:: 10352299 1 23 -neighbor%2:42:00:: 02608004 2 0 -neighbor%2:42:01:: 02608176 1 0 -neighborhood%1:14:00:: 08225090 2 14 -neighborhood%1:15:00:: 08641113 1 28 -neighborhood%1:15:01:: 08642331 4 0 -neighborhood%1:23:00:: 13759146 3 0 -neighboring%5:00:00:connected:00 00566342 1 0 -neighborliness%1:07:00:: 04656051 1 1 -neighborly%5:00:00:friendly:01 01076435 1 0 -neighbour%1:17:00:: 09368224 2 0 -neighbour%1:18:00:: 10352299 1 0 -neighbour%2:42:00:: 02608004 2 0 -neighbour%2:42:01:: 02608176 1 0 -neighbourhood%1:14:00:: 08225090 2 0 -neighbourhood%1:15:00:: 08641113 1 1 -neighbourliness%1:07:00:: 04656051 1 0 -neighbourly%5:00:00:friendly:01 01076435 1 0 -neil_armstrong%1:18:00:: 10823369 1 0 -neil_simon%1:18:00:: 11301129 1 0 -neisseria_gonorrhoeae%1:05:00:: 01365885 1 0 -neither%5:00:00:incomplete:00 00524607 1 0 -nejd%1:15:00:: 08995242 1 0 -nekton%1:05:00:: 01384313 1 0 -nelfinavir%1:06:00:: 03817830 1 0 -nell_gwynn%1:18:00:: 11020888 1 0 -nell_gwynne%1:18:00:: 11020888 1 0 -nell_gywn%1:18:00:: 11020888 1 0 -nellie_bly%1:18:00:: 11290653 1 0 -nellie_ross%1:18:00:: 11270772 1 0 -nellie_tayloe_ross%1:18:00:: 11270772 1 0 -nelson%1:04:00:: 00813336 2 0 -nelson%1:18:00:: 11203059 1 0 -nelson_algren%1:18:00:: 10813711 1 0 -nelson_mandela%1:18:00:: 11153200 1 0 -nelson_rolihlahla_mandela%1:18:00:: 11153200 1 0 -nelumbo%1:20:00:: 11717239 1 0 -nelumbo_lutea%1:20:00:: 11717577 1 0 -nelumbo_nucifera%1:20:00:: 11717399 1 0 -nelumbonaceae%1:20:00:: 11717007 1 0 -nem_con%4:02:00:: 00106316 1 0 -nematocera%1:05:00:: 02199712 1 0 -nematoda%1:05:00:: 01929396 1 0 -nematode%1:05:00:: 01930112 1 0 -nematode_worm%1:05:00:: 01930112 1 0 -nembutal%1:06:00:: 03913129 1 0 -nemea%1:15:00:: 08788190 1 0 -nemean_games%1:04:00:: 00516559 1 0 -nemean_lion%1:18:00:: 09499494 1 0 -nemertea%1:05:00:: 01928360 1 0 -nemertean%1:05:00:: 01928517 1 0 -nemertina%1:05:00:: 01928360 1 0 -nemertine%1:05:00:: 01928517 1 0 -nemesis%1:18:00:: 09567421 1 2 -nemesis%1:26:00:: 14445226 2 0 -nemine_contradicente%4:02:00:: 00106316 1 0 -nemophila%1:20:00:: 12836212 1 0 -nemophila_aurita%1:20:00:: 12837803 1 0 -nemophila_maculata%1:20:00:: 12836508 1 0 -nemophila_menziesii%1:20:00:: 12836337 1 0 -nenets%1:10:00:: 06959788 1 0 -nentsi%1:10:00:: 06959788 1 0 -nentsy%1:10:00:: 06959788 1 0 -neo%5:00:00:modern:00 01536276 1 4 -neo-darwinian%3:01:00:: 03013726 1 0 -neo-darwinism%1:09:00:: 06110267 1 0 -neo-lamarckian%3:01:00:: 03014030 1 0 -neo-lamarckism%1:09:00:: 06110598 1 0 -neo-latin%1:10:00:: 06963822 1 0 -neo_jazz%1:10:00:: 07063921 1 0 -neobiotic%1:06:00:: 03818090 1 0 -neoceratodus%1:05:00:: 02516867 1 0 -neoceratodus_forsteri%1:05:00:: 02516994 1 0 -neoclassic%5:00:00:classical:00 00414080 1 0 -neoclassical%5:00:00:classical:00 00414080 1 0 -neoclassicism%1:09:00:: 06154464 1 0 -neoclassicist%1:18:00:: 10352557 1 0 -neoclassicist%3:01:00:: 02834992 1 0 -neoclassicistic%3:01:00:: 02834992 1 0 -neocolonialism%1:04:00:: 00426757 1 0 -neocon%1:18:00:: 10352663 1 0 -neoconservatism%1:09:00:: 06216408 1 0 -neoconservative%1:18:00:: 10352663 1 0 -neocortex%1:08:00:: 05481746 1 5 -neocortical%3:01:00:: 03010781 1 3 -neodymium%1:27:00:: 14645882 1 0 -neoencephalon%1:08:00:: 05481549 1 0 -neoexpressionism%1:14:00:: 08467576 1 0 -neofiber%1:05:00:: 02338319 1 0 -neofiber_alleni%1:05:00:: 02338449 1 0 -neohygrophorus%1:20:00:: 13073526 1 0 -neohygrophorus_angelesianus%1:20:00:: 13073703 1 0 -neolentinus%1:20:00:: 13051196 1 0 -neolentinus_ponderosus%1:20:00:: 13051346 1 0 -neoliberal%1:18:00:: 10352782 1 0 -neoliberal%5:00:00:liberal:00 00576011 1 1 -neoliberalism%1:09:00:: 06219009 1 0 -neolith%1:06:00:: 03818001 1 0 -neolithic%1:28:00:: 15233411 1 0 -neolithic%3:01:00:: 03090086 1 0 -neolithic_age%1:28:00:: 15233411 1 0 -neologism%1:04:00:: 00940560 2 0 -neologism%1:10:00:: 06294441 1 0 -neologist%1:18:00:: 10352898 1 0 -neology%1:04:00:: 00940560 2 0 -neology%1:10:00:: 06294441 1 0 -neomycin%1:06:00:: 03818090 1 0 -neomys%1:05:00:: 01892876 1 0 -neomys_anomalus%1:05:00:: 01893164 1 0 -neomys_fodiens%1:05:00:: 01893021 1 0 -neon%1:27:00:: 14646152 1 0 -neon_induction_lamp%1:06:00:: 03818343 1 0 -neon_lamp%1:06:00:: 03818343 1 0 -neon_tube%1:06:00:: 03818343 1 1 -neonatal%3:01:00:: 02768106 1 0 -neonatal_death%1:26:00:: 14310172 1 0 -neonatal_hyperbilirubinemia%1:26:00:: 14319093 1 0 -neonatal_intensive_care_unit%1:14:00:: 08146410 1 0 -neonatal_mortality%1:28:00:: 15285772 1 0 -neonatal_mortality_rate%1:28:00:: 15285772 1 0 -neonatal_period%1:28:00:: 15145499 1 0 -neonate%1:18:00:: 10353016 1 0 -neonatology%1:09:00:: 06061917 1 0 -neopallium%1:08:00:: 05481746 1 0 -neophobia%1:26:00:: 14383961 1 0 -neophron%1:05:00:: 01617633 1 0 -neophron_percnopterus%1:05:00:: 01617766 1 0 -neophyte%1:18:01:: 10355449 2 0 -neophyte%1:18:02:: 09901502 3 0 -neophyte%1:20:00:: 11553634 1 0 -neoplasia%1:22:00:: 13520849 1 0 -neoplasm%1:26:00:: 14235200 1 0 -neoplastic%3:01:00:: 02768271 1 0 -neoplastic_cell%1:08:00:: 05431177 1 0 -neoplatonism%1:09:00:: 05973603 1 0 -neoplatonist%1:18:00:: 10353269 1 0 -neopolitan%1:18:00:: 09716837 1 0 -neoprene%1:27:00:: 15007377 1 0 -neoromanticism%1:14:00:: 08469785 1 1 -neosho%1:17:00:: 09368479 1 0 -neosho_river%1:17:00:: 09368479 1 0 -neosporin%1:06:00:: 03818629 1 0 -neostigmine%1:06:00:: 03818843 1 0 -neotenic%3:01:00:: 02768421 1 0 -neotenous%3:01:00:: 02768421 1 0 -neoteny%1:09:00:: 06198083 1 0 -neotoma%1:05:00:: 02339768 1 0 -neotoma_cinerea%1:05:00:: 02339922 1 0 -neotoma_floridana%1:05:00:: 02340358 1 0 -neotoma_fuscipes%1:05:00:: 02340186 1 0 -neotony%1:26:00:: 14569683 1 0 -nepa%1:05:00:: 02242669 1 0 -nepal%1:15:00:: 08906374 1 0 -nepal_trumpet_flower%1:20:00:: 11771147 1 0 -nepalese%1:18:00:: 09724066 1 0 -nepalese%3:01:00:: 02971839 1 0 -nepalese_monetary_unit%1:23:00:: 13704788 1 0 -nepalese_rupee%1:23:00:: 13704897 1 0 -nepali%1:10:00:: 06972985 2 0 -nepali%1:18:00:: 09724066 1 0 -nepali%3:01:00:: 02971839 1 0 -nepenthaceae%1:20:00:: 12781659 1 0 -nepenthes%1:20:00:: 12781814 1 0 -nepeta%1:20:00:: 12859873 1 0 -nepeta_cataria%1:20:00:: 12859986 1 0 -nepeta_hederaceae%1:20:00:: 12847374 1 0 -nepheline%1:27:00:: 14683204 1 0 -nephelinite%1:27:00:: 14683447 1 0 -nephelite%1:27:00:: 14683204 1 0 -nephelium%1:20:00:: 12745160 1 0 -nephelium_lappaceum%1:20:00:: 12745386 1 0 -nephelium_litchi%1:20:00:: 12744387 1 0 -nephelium_longana%1:20:00:: 12743352 1 0 -nephelium_mutabile%1:20:00:: 12745564 1 0 -nephew%1:18:00:: 10353355 1 8 -nephology%1:09:00:: 06119608 1 0 -nephoscope%1:06:00:: 03819047 1 0 -nephralgia%1:26:00:: 14329159 1 0 -nephrectomy%1:04:00:: 00686385 1 0 -nephrite%1:27:00:: 14683595 1 0 -nephritic%3:01:00:: 02883599 2 0 -nephritic%3:01:01:: 02883710 1 0 -nephritis%1:26:00:: 14113798 1 0 -nephroangiosclerosis%1:26:00:: 14113938 1 0 -nephroblastoma%1:26:00:: 14246097 1 0 -nephrocalcinosis%1:26:00:: 14115454 1 0 -nephrogenic_diabetes_insipidus%1:26:00:: 14119598 1 0 -nephrolepis%1:20:00:: 13204646 1 0 -nephrolepis_exaltata%1:20:00:: 13205058 1 0 -nephrolepis_exaltata_bostoniensis%1:20:00:: 13205058 1 0 -nephrolepis_pectinata%1:20:00:: 13205249 1 0 -nephrolith%1:17:00:: 09325824 1 0 -nephrolithiasis%1:26:00:: 14115648 1 0 -nephrology%1:09:00:: 06052521 1 0 -nephron%1:08:00:: 05247178 1 0 -nephropathy%1:26:00:: 14113228 1 0 -nephrops%1:05:00:: 01984131 1 0 -nephrops_norvegicus%1:05:00:: 01984245 1 0 -nephropsidae%1:05:00:: 01983958 1 0 -nephroptosia%1:26:00:: 14558899 1 0 -nephroptosis%1:26:00:: 14558899 1 0 -nephrosclerosis%1:26:00:: 14113938 1 0 -nephrosis%1:26:00:: 14113228 2 0 -nephrosis%1:26:01:: 14307724 1 0 -nephrotic_syndrome%1:26:00:: 14307724 1 0 -nephrotomy%1:04:00:: 00698234 1 0 -nephrotoxic%5:00:00:toxic:00 02450269 1 0 -nephrotoxin%1:27:00:: 15036211 1 0 -nephthys%1:18:00:: 09512692 1 0 -nephthytis%1:20:00:: 11789962 1 0 -nephthytis_afzelii%1:20:00:: 11790089 1 0 -nepidae%1:05:00:: 02242293 1 0 -nepotism%1:04:00:: 01154900 1 0 -nepotist%1:18:00:: 10353475 1 0 -neptune%1:17:00:: 09368699 2 0 -neptune%1:18:00:: 09569330 1 1 -neptunium%1:27:00:: 14646403 1 0 -nerd%1:18:00:: 10684630 1 0 -nerd%1:18:01:: 10353598 2 0 -nereid%1:18:00:: 09550585 1 0 -nereus%1:18:00:: 09567560 1 0 -nergal%1:18:00:: 09520223 1 0 -nerita%1:05:00:: 01946630 1 0 -nerita_peloronta%1:05:00:: 01946827 1 0 -neritic%3:01:00:: 02973836 1 0 -neritic%5:00:00:shallow:01 00692415 2 0 -neritic_zone%1:17:00:: 09369039 1 0 -neritid%1:05:00:: 01946277 1 0 -neritid_gastropod%1:05:00:: 01946277 1 0 -neritidae%1:05:00:: 01946118 1 0 -neritina%1:05:00:: 01947139 1 0 -nerium%1:20:00:: 11773860 1 0 -nerium_oleander%1:20:00:: 11773987 1 0 -nernst%1:18:00:: 11203287 1 0 -nero%1:18:00:: 11203472 1 0 -nero's_crown%1:20:00:: 11776511 1 0 -nero_claudius_caesar_drusus_germanicus%1:18:00:: 11203472 1 0 -nerodia%1:05:00:: 01737356 1 0 -nerodia_sipedon%1:05:00:: 01737472 1 0 -neroli_oil%1:27:00:: 14968038 1 0 -nerthus%1:18:00:: 09585757 1 0 -neruda%1:18:00:: 11203795 1 0 -nerva%1:18:00:: 11204069 1 0 -nerve%1:07:00:: 04857490 2 5 -nerve%1:07:01:: 04838210 3 0 -nerve%1:08:00:: 05474346 1 6 -nerve%2:37:00:: 01806271 1 0 -nerve-racking%5:00:00:disagreeable:00 00090408 1 0 -nerve-wracking%5:00:00:disagreeable:00 00090408 1 0 -nerve_agent%1:27:00:: 14960721 1 0 -nerve_block_anaesthesia%1:26:00:: 14027396 1 0 -nerve_block_anesthesia%1:26:00:: 14027396 1 0 -nerve_cell%1:08:00:: 05465567 1 0 -nerve_center%1:08:00:: 05463533 2 0 -nerve_center%1:15:00:: 08514412 1 0 -nerve_centre%1:08:00:: 05463533 2 0 -nerve_centre%1:15:00:: 08514412 1 0 -nerve_compression%1:26:00:: 14109485 1 0 -nerve_deafness%1:26:00:: 14551565 1 0 -nerve_end%1:08:00:: 05469032 1 0 -nerve_ending%1:08:00:: 05469032 1 0 -nerve_entrapment%1:26:00:: 14109691 1 0 -nerve_fiber%1:08:00:: 05464104 1 0 -nerve_fibre%1:08:00:: 05464104 1 0 -nerve_gas%1:27:00:: 14960721 1 0 -nerve_growth_factor%1:27:00:: 14734487 1 0 -nerve_impulse%1:11:00:: 07308042 1 0 -nerve_pathway%1:08:00:: 05475878 1 0 -nerve_plexus%1:08:00:: 05236848 1 0 -nerve_tissue%1:08:00:: 05296775 1 0 -nerve_tract%1:08:00:: 05475878 1 0 -nerveless%5:00:00:composed:00 00530772 1 1 -nerveless%5:00:00:powerless:00 01827766 2 0 -nervelessly%4:02:00:: 00295545 1 0 -nervelessness%1:07:00:: 04858632 1 0 -nerveroot%1:20:00:: 12056601 1 0 -nerves%1:07:00:: 04862236 2 1 -nerves%1:26:00:: 14375576 1 3 -nervi%1:18:00:: 11203920 1 0 -nervii_olfactorii%1:08:00:: 05477946 1 0 -nervily%4:02:00:: 00284319 1 0 -nervous%3:01:00:: 02904518 3 0 -nervous%5:00:00:excitable:00 00919155 5 0 -nervous%5:00:00:excited:00 00919813 4 0 -nervous%5:00:00:tense:03 02406908 1 9 -nervous%5:00:00:troubled:00 02456157 2 3 -nervous_breakdown%1:26:00:: 14066661 1 3 -nervous_disorder%1:26:00:: 14084880 1 0 -nervous_exhaustion%1:26:00:: 14066806 1 0 -nervous_impulse%1:11:00:: 07308042 1 0 -nervous_prostration%1:26:00:: 14066806 1 0 -nervous_strain%1:26:00:: 14375890 1 0 -nervous_system%1:08:00:: 05462315 1 2 -nervous_tissue%1:08:00:: 05296775 1 0 -nervously%4:02:00:: 00409200 1 3 -nervously%4:02:01:: 00409459 2 2 -nervousness%1:07:00:: 04624959 3 0 -nervousness%1:12:00:: 07525760 1 1 -nervousness%1:26:00:: 14375576 2 0 -nervure%1:05:02:: 02468735 2 0 -nervure%1:20:01:: 13098186 1 0 -nervus%1:08:00:: 05474346 1 0 -nervus_abducens%1:08:00:: 05479108 1 0 -nervus_accessorius%1:08:00:: 05480401 1 0 -nervus_coccygeus%1:08:00:: 05569577 1 0 -nervus_facialis%1:08:00:: 05479314 1 0 -nervus_femoralis%1:08:00:: 05568104 1 0 -nervus_glossopharyngeus%1:08:00:: 05479786 1 0 -nervus_hypoglosus%1:08:00:: 05480607 1 0 -nervus_ischiadicus%1:08:00:: 05567875 1 0 -nervus_oculomotorius%1:08:00:: 05478526 1 0 -nervus_opticus%1:08:00:: 05478336 1 0 -nervus_phrenicus%1:08:00:: 05568550 1 0 -nervus_radialis%1:08:00:: 05504807 1 0 -nervus_saphenus%1:08:00:: 05568349 1 0 -nervus_spinalis%1:08:00:: 05569053 1 0 -nervus_trigeminus%1:08:00:: 05478896 1 0 -nervus_ulnaris%1:08:00:: 05568767 1 0 -nervus_vagus%1:08:00:: 05480076 1 0 -nervus_vestibulocochlearis%1:08:00:: 05479503 1 0 -nervy%5:00:00:bold:00 00251373 2 0 -nervy%5:00:00:forward:02 00204779 3 0 -nervy%5:00:00:tense:03 02406370 1 0 -nescience%1:09:00:: 05988743 1 0 -nescient%5:00:00:agnostic:00 01306087 1 0 -nescient%5:00:00:uneducated:00 00831225 2 0 -nesokia%1:05:00:: 02334079 1 0 -ness%1:17:00:: 09233715 1 0 -nesselrode%1:13:00:: 07618684 1 0 -nesselrode_pudding%1:13:00:: 07618684 1 0 -nessie%1:18:00:: 09487821 1 0 -nest%1:06:00:: 03819217 2 1 -nest%1:06:01:: 03819336 5 0 -nest%1:14:00:: 08244346 4 0 -nest%1:15:00:: 08643729 3 0 -nest%1:17:00:: 09369169 1 14 -nest%2:35:00:: 01529766 2 2 -nest%2:35:01:: 01383393 4 0 -nest%2:35:02:: 01424948 3 0 -nest%2:42:00:: 02654947 1 4 -nest_egg%1:06:00:: 03819448 2 0 -nest_egg%1:21:00:: 13359572 1 0 -nester%1:05:00:: 01514926 2 0 -nester%1:18:00:: 10643218 1 0 -nesting_place%1:15:00:: 08610975 1 1 -nestle%1:04:00:: 00417643 1 0 -nestle%2:35:00:: 01424948 1 5 -nestle%2:35:01:: 01425348 3 0 -nestle%2:42:00:: 02691354 2 0 -nestled%5:00:00:close:01 00449889 1 0 -nestling%1:05:00:: 01504344 1 1 -nestling%1:18:00:: 09917593 2 0 -nestor%1:05:00:: 01818704 2 0 -nestor%1:18:00:: 11204276 1 0 -nestor_notabilis%1:05:00:: 01818832 1 0 -nestor_paz_zamora_commission%1:14:00:: 08035233 1 0 -nestorian%1:18:00:: 10353734 1 0 -nestorian%3:01:00:: 02768611 1 0 -nestorian_church%1:14:00:: 08085359 1 0 -nestorianism%1:09:00:: 06190305 1 0 -nestorius%1:18:00:: 11204409 1 0 -net%1:06:00:: 03819595 6 0 -net%1:06:01:: 03580615 1 4 -net%1:06:02:: 03819994 2 2 -net%1:06:03:: 03820154 5 0 -net%1:06:04:: 03820318 4 0 -net%1:21:00:: 13258362 3 0 -net%2:35:00:: 01365945 4 0 -net%2:36:00:: 01672168 3 0 -net%2:40:00:: 02291258 1 1 -net%2:40:01:: 02291548 2 0 -net%3:00:00:: 01582461 1 6 -net%5:00:00:ultimate:00 01579128 2 1 -net_ball%1:04:01:: 00569073 1 0 -net_estate%1:21:00:: 13251424 1 0 -net_fish%2:33:00:: 01143410 1 0 -net_income%1:21:00:: 13258362 1 0 -net_melon%1:13:00:: 07756641 2 0 -net_melon%1:20:00:: 12165170 1 0 -net_profit%1:21:00:: 13258362 1 0 -net_sales%1:21:00:: 13261107 1 0 -net_ton%1:23:00:: 13721529 1 0 -netball%1:04:00:: 00482122 1 0 -nether%5:00:00:bottom:00 02441132 1 0 -nether%5:00:00:infernal:00 01303946 2 0 -nether%5:00:00:low:01 01207546 3 0 -nether_region%1:09:00:: 05629682 1 0 -netherlander%1:18:00:: 09713108 1 0 -netherlands%1:15:00:: 08949093 1 0 -netherlands_antilles%1:15:00:: 08748499 1 0 -netherlands_guiana%1:15:00:: 09030752 1 0 -nethermost%5:00:00:bottom:00 02440881 1 0 -netherworld%1:09:00:: 05629381 1 0 -netkeeper%1:04:00:: 00464037 2 0 -netkeeper%1:18:00:: 10134001 1 0 -netlike%5:00:00:reticulate:00 02007067 1 1 -netmail%2:32:00:: 01032451 1 0 -netminder%1:18:00:: 10134001 1 0 -netscape%1:10:00:: 06571862 1 0 -nett%2:35:00:: 01365945 1 0 -nett%3:00:00:: 01582461 1 0 -netted%5:00:00:reticulate:00 02007067 1 0 -netted_melon%1:13:00:: 07756641 2 0 -netted_melon%1:20:00:: 12165170 1 0 -netting%1:04:00:: 00909386 2 0 -netting%1:06:00:: 03429914 1 0 -nettle%1:20:00:: 12392070 1 0 -nettle%2:37:00:: 01787955 2 0 -nettle%2:39:00:: 02120715 1 0 -nettle-leaved_bellflower%1:20:00:: 12039122 1 0 -nettle-leaved_goosefoot%1:20:00:: 11830045 1 0 -nettle_family%1:20:00:: 12391745 1 0 -nettle_rash%1:26:00:: 14322248 1 0 -nettle_tree%1:20:00:: 12409231 1 0 -nettled%5:00:00:displeased:00 01806106 1 0 -nettleleaf_goosefoot%1:20:00:: 11830045 1 0 -nettlesome%5:00:00:disagreeable:00 00089550 1 1 -nettlesome%5:00:00:ill-natured:00 01136541 2 0 -network%1:06:00:: 03819595 3 1 -network%1:06:01:: 03820474 2 4 -network%1:06:02:: 03820728 5 0 -network%1:06:03:: 03820950 4 0 -network%1:14:00:: 08434259 1 23 -network%2:32:00:: 01032840 1 0 -network_architecture%1:10:00:: 06725680 1 0 -network_army%1:14:00:: 07949160 1 0 -network_programming%1:10:00:: 06486042 1 0 -network_topology%1:09:00:: 05730365 1 0 -networklike%5:00:00:reticulate:00 02007322 1 0 -neumann%1:18:00:: 11369035 1 0 -neural%3:01:00:: 02894119 2 0 -neural%3:01:01:: 02904518 1 0 -neural_arch%1:08:00:: 05587997 1 0 -neural_impulse%1:11:00:: 07308042 1 0 -neural_net%1:08:00:: 05501711 2 0 -neural_net%1:10:00:: 06725467 1 0 -neural_network%1:08:00:: 05501711 2 0 -neural_network%1:10:00:: 06725467 1 0 -neural_structure%1:08:00:: 05462674 1 0 -neural_tube%1:05:00:: 01463933 1 0 -neuralgia%1:26:00:: 14329262 1 0 -neuralgic%3:01:00:: 03090456 1 0 -neuralgy%1:26:00:: 14329262 1 0 -neurasthenia%1:26:00:: 14066959 1 0 -neurasthenic%1:18:00:: 10353813 1 0 -neurasthenic%3:01:00:: 03090612 1 0 -neurectomy%1:04:00:: 00686471 1 0 -neurilemma%1:08:00:: 05464939 1 0 -neurilemoma%1:26:00:: 14249138 1 0 -neurinoma%1:26:00:: 14248787 1 0 -neuritis%1:26:00:: 14350837 1 0 -neuroanatomic%3:01:00:: 02914414 1 0 -neuroanatomical%3:01:00:: 02914414 1 0 -neuroanatomy%1:09:00:: 06060208 1 0 -neurobiological%3:01:00:: 02666294 1 0 -neurobiological%4:02:00:: 00133853 1 0 -neurobiologist%1:18:00:: 10353928 1 0 -neurobiology%1:09:00:: 06078511 1 0 -neuroblast%1:08:00:: 05448501 1 0 -neuroblastoma%1:26:00:: 14248899 1 0 -neurochemical%1:27:00:: 14807410 1 0 -neurodermatitis%1:26:00:: 14224341 1 0 -neuroendocrine%3:01:00:: 02882943 1 0 -neuroepithelioma%1:26:00:: 14249037 1 0 -neuroepithelium%1:08:00:: 05240850 1 0 -neuroethics%1:09:00:: 06159924 1 0 -neurofibroma%1:26:00:: 14249138 1 0 -neurofibromatosis%1:26:00:: 14158179 1 0 -neurogenesis%1:22:00:: 13520981 1 0 -neurogenic%3:01:00:: 02883112 1 0 -neurogenic_bladder%1:26:00:: 14401512 1 0 -neuroglia%1:08:00:: 05467054 1 0 -neurogliacyte%1:08:00:: 05467432 1 0 -neuroglial%3:01:00:: 02883210 1 0 -neuroglial_cell%1:08:00:: 05467432 1 0 -neurohormone%1:08:00:: 05411430 1 0 -neurohypophysis%1:08:00:: 05484862 1 0 -neurolemma%1:08:00:: 05464939 1 0 -neuroleptic%1:06:00:: 03713736 1 0 -neuroleptic_agent%1:06:00:: 03713736 1 0 -neuroleptic_drug%1:06:00:: 03713736 1 0 -neurolinguist%1:18:00:: 10354053 1 0 -neurolinguistics%1:09:00:: 06179290 1 0 -neurologic%3:01:00:: 02917893 1 0 -neurological%3:01:00:: 02917893 1 1 -neurological_disease%1:26:00:: 14084880 1 0 -neurological_disorder%1:26:00:: 14084880 1 0 -neurologist%1:18:00:: 10354265 1 0 -neurology%1:09:01:: 06078978 1 0 -neurology%1:09:02:: 06052864 2 0 -neurolysin%1:27:00:: 15036321 1 0 -neuroma%1:26:00:: 14249262 1 0 -neuromatous%3:01:00:: 02883344 1 0 -neuromotor%5:00:00:efferent:00 00334555 1 0 -neuromuscular%3:01:00:: 02883459 1 1 -neuromuscular_blocking_agent%1:27:00:: 14961512 1 0 -neuromuscular_junction%1:08:00:: 05474195 1 0 -neuron%1:08:00:: 05465567 1 0 -neuronal%3:01:00:: 02894119 1 1 -neuronic%3:01:00:: 02894119 1 0 -neurontin%1:06:00:: 03409070 1 0 -neuropathy%1:26:00:: 14208438 1 0 -neurophysiological%3:01:00:: 02908887 1 0 -neurophysiology%1:09:00:: 06081602 1 0 -neuropil%1:08:00:: 05483122 1 0 -neuropile%1:08:00:: 05483122 1 0 -neuroplasty%1:04:00:: 00682538 1 0 -neuropsychiatric%3:01:00:: 03011858 1 2 -neuropsychiatry%1:09:00:: 06053101 1 0 -neuropsychological%3:01:00:: 02908768 1 0 -neuropsychology%1:09:00:: 06140799 1 0 -neuroptera%1:05:00:: 02263038 1 0 -neuropteran%1:05:00:: 02263378 1 0 -neuropteron%1:05:00:: 02263378 1 0 -neuropterous_insect%1:05:00:: 02263378 1 0 -neurosarcoma%1:26:00:: 14241400 1 0 -neuroscience%1:09:00:: 06081833 1 0 -neuroscientist%1:18:00:: 10354580 1 0 -neurosis%1:26:00:: 14393161 1 8 -neurospora%1:20:00:: 12964321 1 0 -neurosurgeon%1:18:00:: 10354754 1 0 -neurosurgery%1:04:00:: 00688915 1 0 -neurosyphilis%1:26:00:: 14135065 1 0 -neurotic%1:18:00:: 10354898 1 1 -neurotic%3:00:00:: 01583040 2 1 -neurotic%3:01:00:: 02976525 1 3 -neurotic_depression%1:26:00:: 14390967 1 0 -neurotically%4:02:00:: 00409327 1 0 -neuroticism%1:26:00:: 14393161 1 0 -neurotoxic%3:01:00:: 02883805 1 0 -neurotoxin%1:27:00:: 15036321 1 0 -neurotransmitter%1:27:00:: 14807558 1 0 -neurotrichus%1:05:00:: 01891145 1 0 -neurotrichus_gibbsii%1:05:00:: 01891274 1 0 -neurotropic%3:01:00:: 02883914 1 0 -neurotropism%1:04:00:: 00862310 1 0 -neuter%1:10:00:: 06329313 1 1 -neuter%2:29:00:: 00060477 1 0 -neuter%3:00:00:: 01486327 1 0 -neuter%5:00:00:asexual:00 02136522 2 0 -neutered%5:00:00:castrated:00 02136970 1 0 -neutering%1:04:00:: 00692506 1 0 -neutral%1:18:00:: 10355142 1 0 -neutral%3:00:00:: 00386392 5 0 -neutral%3:00:02:: 01818992 4 0 -neutral%5:00:00:colorless:03 00408284 6 0 -neutral%5:00:00:nonaligned:00 00732160 3 2 -neutral%5:00:00:objective:00 01615625 1 4 -neutral%5:00:00:uncharged:00 00359160 7 0 -neutral%5:00:00:unreactive:00 01930004 2 3 -neutral-colored%5:00:00:colored:00 00399479 1 0 -neutral-coloured%5:00:00:colored:00 00399479 1 0 -neutral_spirits%1:13:00:: 07902121 1 0 -neutralisation%1:04:00:: 00233386 4 0 -neutralisation%1:04:01:: 00234423 3 0 -neutralisation%1:04:02:: 00234675 2 0 -neutralisation%1:22:00:: 13521072 1 0 -neutralisation_reaction%1:22:00:: 13521072 1 0 -neutralise%2:30:00:: 00469904 4 0 -neutralise%2:30:01:: 00470084 3 0 -neutralise%2:33:00:: 01117931 2 0 -neutralise%2:35:00:: 01327301 1 0 -neutralised%5:00:00:neutral:02 01819152 1 0 -neutralism%1:10:00:: 06662712 1 4 -neutralist%1:18:00:: 10355306 1 5 -neutrality%1:04:00:: 01240850 1 1 -neutrality%1:07:01:: 05039819 3 0 -neutrality%1:09:00:: 06205018 2 0 -neutralization%1:04:00:: 00233386 4 0 -neutralization%1:04:01:: 00234423 1 2 -neutralization%1:04:02:: 00234675 3 0 -neutralization%1:22:00:: 13521072 2 0 -neutralization_fire%1:04:00:: 00991772 1 0 -neutralization_reaction%1:22:00:: 13521072 1 0 -neutralize%2:30:00:: 00469904 6 0 -neutralize%2:30:01:: 00470084 2 1 -neutralize%2:33:00:: 01117931 5 0 -neutralize%2:35:00:: 01327301 4 0 -neutralize%2:41:00:: 02535896 1 3 -neutralize%2:41:02:: 02543874 3 0 -neutralized%5:00:00:neutral:02 01819152 1 1 -neutrino%1:17:00:: 09369412 1 0 -neutron%1:17:00:: 09369520 1 0 -neutron_bomb%1:06:00:: 03821145 1 1 -neutron_flux%1:28:00:: 15287199 1 0 -neutron_radiation%1:19:00:: 11487298 1 0 -neutron_star%1:17:00:: 09369692 1 0 -neutropenia%1:26:00:: 14196543 1 0 -neutrophil%1:08:00:: 05453657 1 5 -neutrophile%1:08:00:: 05453657 1 0 -neva%1:17:00:: 09369844 1 0 -neva_river%1:17:00:: 09369844 1 0 -nevada%1:15:00:: 09110422 1 0 -nevadan%1:18:00:: 09744262 1 0 -nevado_de_colima%1:15:00:: 09174015 1 0 -neve%1:17:00:: 09370006 1 0 -nevelson%1:18:00:: 11204689 1 0 -never%4:02:00:: 00020759 1 255 -never%4:02:01:: 00020997 2 0 -never-ending%5:00:00:continuous:01 00595299 1 0 -never-never%1:15:00:: 08505265 2 0 -never-never%1:21:00:: 13296752 1 0 -never-never_land%1:09:00:: 05631304 1 0 -never-say-die%5:00:00:unconquerable:00 00570099 1 0 -never_again%4:02:00:: 00409597 1 1 -nevermore%4:02:00:: 00409597 1 0 -nevertheless%4:02:00:: 00027384 1 28 -nevil_shute%1:18:00:: 11299212 1 0 -nevil_shute_norway%1:18:00:: 11299212 1 0 -neville_chamberlain%1:18:00:: 10889689 1 0 -nevirapine%1:06:00:: 03821259 1 0 -nevis%1:15:00:: 08988216 1 0 -nevoid_elephantiasis%1:26:00:: 14367797 1 0 -nevus%1:07:00:: 04692638 1 0 -nevus_flammeus%1:07:00:: 04696193 1 0 -new%3:00:00:: 01640850 1 310 -new%3:00:09:: 02584699 6 0 -new%4:02:00:: 00112601 1 1 -new%5:00:00:early:02 00818008 10 0 -new%5:00:00:inexperienced:00 00937186 3 11 -new%5:00:00:original:00 01687167 2 36 -new%5:00:00:other:00 02070491 5 3 -new%5:00:00:unaccustomed:00 00024996 11 0 -new%5:00:00:unprecedented:00 00128733 4 5 -new%5:00:01:late:01 00820975 9 0 -new%5:00:02:late:01 00821208 8 0 -new%5:00:02:original:00 01687965 7 0 -new-made%5:00:00:fresh:01 01068513 1 0 -new-mown%5:00:00:mown:00 01566223 1 0 -new-sprung%5:00:00:new:00 01641921 1 0 -new_amsterdam%1:15:00:: 09116876 1 0 -new_ballgame%1:26:00:: 13932739 1 0 -new_britain%1:15:00:: 08843958 1 0 -new_brunswick%1:15:00:: 08824484 2 0 -new_brunswick%1:15:01:: 09113901 1 0 -new_caledonia%1:15:00:: 08844108 1 0 -new_caledonian%3:01:00:: 02768740 1 0 -new_caledonian_pine%1:20:00:: 11646517 1 0 -new_caledonian_yew%1:20:00:: 11662937 1 0 -new_criticism%1:10:00:: 06375215 1 0 -new_deal%1:04:00:: 01084848 3 0 -new_deal%1:10:00:: 06657109 1 2 -new_deal%1:28:00:: 15261471 2 1 -new_dealer%1:18:00:: 10355806 1 0 -new_delhi%1:15:00:: 08903049 1 0 -new_edition%1:10:00:: 06270541 1 1 -new_england%1:15:00:: 09048880 1 17 -new_england_aster%1:20:00:: 11934616 1 0 -new_england_boiled_dinner%1:13:00:: 07862946 1 0 -new_england_clam_chowder%1:13:00:: 07587962 1 0 -new_englander%1:18:00:: 10355942 1 5 -new_english_bible%1:10:00:: 06449361 1 0 -new_flower%1:15:00:: 08778401 1 0 -new_forest%1:15:00:: 08882530 1 0 -new_greek%1:10:00:: 06976680 1 0 -new_guinea%1:15:00:: 08844279 1 0 -new_hampshire%1:15:00:: 09111366 1 1 -new_hampshire%1:15:01:: 09111636 2 0 -new_hampshirite%1:18:00:: 09744346 1 0 -new_haven%1:15:00:: 09069415 1 1 -new_hebrides%1:15:00:: 09160775 1 0 -new_ireland%1:15:00:: 08845225 1 0 -new_jazz%1:10:00:: 07063921 1 0 -new_jersey%1:15:00:: 09112282 1 2 -new_jersey%1:15:01:: 09112742 2 0 -new_jerseyan%1:18:00:: 09744462 1 0 -new_jerseyite%1:18:00:: 09744462 1 0 -new_latin%1:10:00:: 06963822 1 0 -new_line%1:22:00:: 13521444 1 0 -new_london%1:15:00:: 09069569 1 0 -new_look%1:09:00:: 05750471 1 0 -new_mexican%1:18:00:: 09744587 1 0 -new_mexico%1:15:00:: 09114696 1 5 -new_moon%1:28:00:: 15206943 1 1 -new_netherland%1:15:00:: 09117118 1 0 -new_norwegian%1:10:00:: 06954768 1 0 -new_orleans%1:15:00:: 09091909 1 2 -new_penny%1:21:00:: 13391841 1 0 -new_people's_army%1:14:00:: 08036293 1 0 -new_phase_of_the_moon%1:28:00:: 15206943 1 0 -new_river%1:17:00:: 09370168 1 0 -new_river_gorge_bridge%1:06:00:: 03822015 1 0 -new_scotland_yard%1:14:00:: 08210835 1 0 -new_siberian_islands%1:15:00:: 09176159 1 0 -new_south_wales%1:15:00:: 08833130 1 0 -new_stone_age%1:28:00:: 15233411 1 0 -new_style_calendar%1:28:00:: 15174218 1 0 -new_testament%1:10:00:: 06453849 1 2 -new_town%1:15:00:: 08626522 1 0 -new_wave%1:14:00:: 08469917 1 0 -new_wave%1:14:01:: 08465558 2 0 -new_waver%1:18:00:: 10357112 1 1 -new_world%1:15:00:: 08682389 1 0 -new_world_anteater%1:05:00:: 02460009 1 0 -new_world_beaver%1:05:00:: 02363351 1 0 -new_world_blackbird%1:05:00:: 01574045 1 0 -new_world_chat%1:05:00:: 01569836 1 0 -new_world_coral_snake%1:05:00:: 01745484 1 0 -new_world_flycatcher%1:05:00:: 01547832 1 0 -new_world_goldfinch%1:05:00:: 01532325 1 0 -new_world_jay%1:05:00:: 01580772 1 0 -new_world_least_weasel%1:05:00:: 02442446 1 0 -new_world_leishmaniasis%1:26:00:: 14181409 1 0 -new_world_monkey%1:05:00:: 02489589 1 0 -new_world_mouse%1:05:00:: 02336011 1 0 -new_world_opah%1:05:00:: 02546028 1 0 -new_world_oriole%1:05:00:: 01571904 1 0 -new_world_porcupine%1:05:00:: 02347744 1 0 -new_world_sparrow%1:05:00:: 01534762 1 0 -new_world_tapir%1:05:00:: 02393807 1 0 -new_world_vulture%1:05:00:: 01618922 1 0 -new_world_warbler%1:05:00:: 01567133 1 0 -new_year%1:28:00:: 15182319 1 0 -new_year's%1:28:00:: 15182189 1 0 -new_year's_day%1:28:00:: 15182189 1 2 -new_year's_eve%1:28:00:: 15182053 1 3 -new_york%1:15:00:: 09117351 2 16 -new_york%1:15:01:: 09119277 1 46 -new_york%1:15:02:: 09118181 3 0 -new_york_aster%1:20:00:: 11934807 1 0 -new_york_bay%1:17:00:: 09370383 1 1 -new_york_city%1:15:00:: 09119277 1 6 -new_york_fern%1:20:00:: 13229951 1 0 -new_york_minute%1:28:00:: 15247110 1 0 -new_york_state%1:15:00:: 09117351 1 0 -new_york_state_barge_canal%1:15:00:: 09119070 1 0 -new_york_stock_exchange%1:06:00:: 03822951 1 0 -new_york_strip%1:13:00:: 07662719 1 0 -new_yorker%1:18:00:: 09744679 1 1 -new_zealand%1:15:00:: 08972521 1 0 -new_zealand%1:15:01:: 08971914 2 0 -new_zealand_beech%1:20:00:: 12266796 1 0 -new_zealand_cotton%1:20:00:: 12185526 1 0 -new_zealand_dacryberry%1:20:00:: 11653904 1 0 -new_zealand_daisybush%1:20:00:: 11998492 1 0 -new_zealand_dollar%1:23:00:: 13673843 1 0 -new_zealand_honeysuckle%1:20:00:: 12219668 1 0 -new_zealand_islands%1:15:00:: 08971914 1 0 -new_zealand_mountain_pine%1:20:00:: 11655592 1 0 -new_zealand_spinach%1:20:00:: 11822300 1 0 -new_zealand_white_pine%1:20:00:: 11653904 1 0 -new_zealand_wine_berry%1:20:00:: 12193665 1 0 -new_zealand_wren%1:05:00:: 01588431 1 0 -new_zealander%1:18:00:: 09724533 1 0 -new_zealander%3:01:00:: 03131480 1 0 -newari%1:10:00:: 06934020 1 0 -newark%1:15:00:: 09113762 1 0 -newbie%1:18:00:: 10355449 1 0 -newborn%1:18:00:: 10353016 1 0 -newborn%5:00:00:new:00 01641921 2 2 -newborn%5:00:00:young:00 01649184 1 4 -newborn_baby%1:18:00:: 10353016 1 0 -newborn_infant%1:18:00:: 10353016 1 0 -newburg_sauce%1:13:00:: 07870734 1 0 -newburgh%1:15:00:: 09124845 1 0 -newcastle%1:15:00:: 08879388 1 1 -newcastle-upon-tyne%1:15:00:: 08879388 1 0 -newcastle_disease%1:26:00:: 14274801 1 0 -newcomb%1:18:00:: 11204855 1 0 -newcomer%1:18:00:: 10355449 1 2 -newcomer%1:18:01:: 10355688 2 1 -newel%1:06:00:: 03821424 2 0 -newel%1:06:02:: 03821518 1 0 -newel_post%1:06:00:: 03821518 1 0 -newfangled%5:00:00:original:00 01687965 1 0 -newfound%5:00:00:new:00 01642081 1 0 -newfoundland%1:05:00:: 02111277 1 1 -newfoundland%1:15:01:: 08825211 2 0 -newfoundland_and_labrador%1:15:00:: 08824937 1 0 -newfoundland_dog%1:05:00:: 02111277 1 0 -newfoundland_dwarf_birch%1:20:00:: 12283790 1 0 -newgate%1:06:00:: 03821660 1 0 -newly%4:02:00:: 00112601 1 10 -newlywed%1:18:00:: 10356066 1 0 -newman%1:18:00:: 11204962 2 0 -newman%1:18:01:: 11205246 1 0 -newmarket%1:04:00:: 00493308 2 0 -newmarket%1:06:00:: 03821898 1 0 -newness%1:07:00:: 04926427 1 0 -newport%1:15:00:: 08895497 1 4 -newport%1:15:01:: 09137682 2 0 -newport_news%1:15:00:: 09150662 1 0 -news%1:07:00:: 05192897 5 0 -news%1:10:00:: 06642138 1 21 -news%1:10:01:: 06681177 2 17 -news%1:10:02:: 06619850 3 3 -news%1:10:03:: 06642356 4 0 -news_agency%1:14:00:: 08355075 1 0 -news_article%1:10:00:: 06269130 1 0 -news_bulletin%1:10:00:: 06682494 1 0 -news_conference%1:10:00:: 07144834 1 2 -news_event%1:11:00:: 07400831 1 0 -news_item%1:10:00:: 06483339 1 1 -news_leak%1:10:00:: 07215185 1 0 -news_magazine%1:10:00:: 06596474 1 0 -news_media%1:10:00:: 06266417 1 0 -news_organisation%1:14:00:: 08355075 1 0 -news_organization%1:14:00:: 08355075 1 0 -news_photography%1:10:00:: 06266878 1 0 -news_program%1:10:00:: 06619850 1 0 -news_reader%1:18:00:: 10356877 1 0 -news_report%1:10:00:: 06681551 1 0 -news_show%1:10:00:: 06619850 1 1 -news_story%1:10:00:: 06269130 1 0 -newsagent%1:18:00:: 10356213 1 0 -newsboy%1:18:00:: 09897603 1 2 -newsbreak%1:10:00:: 06682494 1 0 -newscast%1:10:00:: 06683359 1 0 -newscaster%1:18:00:: 10356344 1 0 -newsdealer%1:18:00:: 10356213 1 0 -newsflash%1:10:00:: 06682494 1 0 -newsless%5:00:00:uninformative:00 01305704 2 0 -newsless%5:00:00:uninformed:00 01309428 1 0 -newsletter%1:10:00:: 06681976 1 2 -newsman%1:18:00:: 10521662 1 2 -newsmonger%1:18:00:: 10139347 1 0 -newspaper%1:06:00:: 03822171 3 2 -newspaper%1:10:00:: 06267145 1 31 -newspaper%1:14:00:: 08062970 2 13 -newspaper%1:27:00:: 14961722 4 0 -newspaper_ad%1:10:00:: 07249426 1 0 -newspaper_advertisement%1:10:00:: 07249426 1 0 -newspaper_article%1:10:00:: 06269130 1 0 -newspaper_clipping%1:10:00:: 06612649 1 0 -newspaper_column%1:10:00:: 06268567 1 0 -newspaper_columnist%1:18:00:: 10356592 1 1 -newspaper_critic%1:18:00:: 10356749 1 1 -newspaper_editor%1:18:00:: 10356450 1 0 -newspaper_headline%1:10:00:: 06344461 1 0 -newspaper_publisher%1:14:00:: 08062970 2 0 -newspaper_publisher%1:18:00:: 10491575 1 0 -newspapering%1:04:00:: 00611874 1 0 -newspaperman%1:18:00:: 09966710 1 1 -newspaperwoman%1:18:00:: 09966710 1 0 -newspeak%1:04:00:: 00926277 1 0 -newsperson%1:18:00:: 10521662 1 0 -newsprint%1:27:00:: 14961722 1 0 -newsreader%1:18:00:: 10356877 1 0 -newsreel%1:10:00:: 06616703 1 0 -newsroom%1:06:00:: 03822361 3 0 -newsroom%1:06:01:: 03822504 2 0 -newsroom%1:14:00:: 08063129 1 0 -newssheet%1:10:00:: 06681976 1 0 -newsstand%1:06:00:: 03822656 1 0 -newsstand_operator%1:18:00:: 10356213 1 0 -newsvendor%1:18:00:: 10356213 1 0 -newswoman%1:18:00:: 10521853 1 0 -newsworthiness%1:07:00:: 05192897 1 0 -newsworthy%5:00:00:interesting:00 01344834 1 0 -newswriter%1:18:00:: 09966710 1 0 -newsy%5:00:00:communicative:00 00496422 2 0 -newsy%5:00:00:informative:00 01305244 1 0 -newt%1:05:00:: 01630284 1 0 -newton%1:18:00:: 11205375 1 1 -newton%1:23:00:: 13647667 2 0 -newton's_first_law%1:09:00:: 05885822 1 0 -newton's_first_law_of_motion%1:09:00:: 05885822 1 0 -newton's_law%1:09:00:: 05885622 1 0 -newton's_law_of_gravitation%1:09:00:: 05881867 1 0 -newton's_law_of_motion%1:09:00:: 05885622 1 0 -newton's_second_law%1:09:00:: 05886039 1 0 -newton's_second_law_of_motion%1:09:00:: 05886039 1 0 -newton's_theory_of_gravitation%1:09:00:: 05990089 1 0 -newton's_third_law%1:09:00:: 05886266 1 0 -newton's_third_law_of_motion%1:09:00:: 05886266 1 0 -newtonian%1:18:00:: 10357012 1 0 -newtonian%3:01:00:: 03036014 1 2 -newtonian_mechanics%1:09:00:: 06111335 1 0 -newtonian_reflector%1:06:00:: 03822767 1 0 -newtonian_telescope%1:06:00:: 03822767 1 0 -newtown_wonder%1:13:00:: 07742513 1 0 -next%4:02:00:: 00054212 1 11 -next%5:00:00:close:01 00447472 2 24 -next%5:00:00:incoming:00 01294975 3 7 -next%5:00:00:succeeding:00 00127948 1 90 -next-to-last%5:00:00:intermediate:00 01015185 2 0 -next-to-last%5:00:01:intermediate:00 01015392 1 0 -next_door%4:02:00:: 00240082 1 3 -next_friend%1:18:00:: 10357207 1 0 -next_of_kin%1:18:00:: 10357349 1 0 -nexus%1:14:00:: 08458833 2 0 -nexus%1:24:00:: 13792692 1 0 -ney%1:18:00:: 11205647 1 0 -nez_perce%1:10:00:: 06925435 2 0 -nez_perce%1:18:00:: 09662804 1 0 -ng%1:23:00:: 13723189 1 0 -nga%1:14:00:: 08396537 1 0 -ngaio_marsh%1:18:00:: 11158533 1 0 -nganasan%1:10:00:: 06960083 2 0 -nganasan%1:18:00:: 09707587 1 0 -ngb%1:14:00:: 08391696 1 0 -ngf%1:27:00:: 14734487 1 0 -ngo%1:14:00:: 08009834 1 0 -ngu%1:26:00:: 14566996 1 0 -ngultrum%1:23:00:: 13689411 1 0 -nguni%1:10:00:: 06994329 1 0 -nguyen_tat_thanh%1:18:00:: 11053344 1 0 -ngwee%1:23:00:: 13683700 1 0 -nh%1:15:00:: 09111366 1 0 -ni%1:27:00:: 14646610 1 0 -ni-hard%1:27:00:: 14963051 1 0 -ni-hard_iron%1:27:00:: 14963051 1 0 -ni-resist%1:27:00:: 14963187 1 0 -ni-resist_iron%1:27:00:: 14963187 1 0 -niacin%1:27:00:: 15092059 1 0 -niagara%1:17:00:: 09370552 2 0 -niagara%1:17:01:: 09370773 1 0 -niagara_falls%1:15:00:: 09125016 2 0 -niagara_falls%1:17:00:: 09370773 1 0 -niagara_river%1:17:00:: 09370552 1 0 -niamey%1:15:00:: 08973647 1 0 -nib%1:05:00:: 01758308 2 0 -nib%1:06:00:: 03823111 1 0 -nibbed%5:00:00:pointed:00 01810720 1 1 -nibble%1:04:00:: 00842197 2 0 -nibble%1:23:00:: 13625884 1 0 -nibble%2:34:01:: 01174294 3 0 -nibble%2:35:00:: 01446729 1 0 -nibble%2:35:02:: 01446420 2 0 -nibbler%1:18:00:: 10357484 1 0 -nibelung%1:18:00:: 09499657 2 0 -nibelung%1:18:01:: 09499854 1 0 -nibelungenlied%1:10:00:: 06382345 1 0 -niblick%1:06:00:: 03823216 1 0 -nicad%1:06:00:: 03823312 1 0 -nicaea%1:14:00:: 08313592 3 0 -nicaea%1:14:01:: 08314715 2 0 -nicaea%1:15:00:: 08504151 1 0 -nicaean%3:01:00:: 03090782 1 0 -nicandra%1:20:00:: 12906926 1 0 -nicandra_physaloides%1:20:00:: 12907057 1 0 -nicaragua%1:15:00:: 08738820 1 0 -nicaraguan%1:18:00:: 09724656 1 0 -nicaraguan%3:01:00:: 03090939 1 0 -nicaraguan_capital%1:15:00:: 08739047 1 0 -nicaraguan_monetary_unit%1:23:00:: 13691154 1 0 -niccolo_machiavelli%1:18:00:: 11147729 1 0 -niccolo_paganini%1:18:00:: 11219851 1 0 -nice%1:15:00:: 08937251 1 0 -nice%3:00:00:: 01586342 1 23 -nice%5:00:00:fastidious:00 00984333 4 0 -nice%5:00:00:polite:00 00641460 5 0 -nice%5:00:00:respectable:00 01993408 2 5 -nice%5:00:02:precise:00 01838916 3 1 -nicely%4:02:00:: 00187028 1 5 -nicene%3:01:00:: 03090782 1 0 -nicene_creed%1:10:00:: 06791017 1 0 -niceness%1:07:00:: 04779521 2 0 -niceness%1:07:01:: 04711256 3 0 -niceness%1:07:02:: 04912982 1 0 -nicety%1:07:00:: 04713853 1 1 -nicety%1:10:00:: 06606191 2 0 -niche%1:06:00:: 04061969 3 1 -niche%1:25:00:: 13872421 2 1 -niche%1:26:00:: 13926168 1 1 -niche%1:26:01:: 13924336 4 0 -nicholas%1:18:00:: 11205797 1 0 -nicholas_i%1:18:00:: 11205975 1 0 -nicholas_ii%1:18:00:: 11206150 1 0 -nicholas_v%1:18:00:: 11202322 1 0 -nicholas_vachel_lindsay%1:18:00:: 11133197 1 0 -nichrome%1:27:00:: 14961896 1 0 -nick%1:04:00:: 00387897 3 0 -nick%1:06:00:: 03823540 2 0 -nick%1:07:00:: 04693384 1 0 -nick%2:29:00:: 00054535 4 0 -nick%2:30:00:: 00511318 3 0 -nick%2:35:00:: 01259005 2 0 -nick%2:35:01:: 01259141 1 0 -nickel%1:21:00:: 13390139 2 1 -nickel%1:21:01:: 13395652 3 0 -nickel%1:27:00:: 14646610 1 4 -nickel%2:35:00:: 01395663 1 0 -nickel-and-dime%2:35:00:: 01385013 2 0 -nickel-and-dime%2:40:00:: 02266784 1 0 -nickel-and-dime%5:00:00:cheap:00 00935259 2 0 -nickel-and-dime%5:00:00:unimportant:00 01281695 1 0 -nickel-base_alloy%1:27:00:: 14962117 1 0 -nickel-cadmium_accumulator%1:06:00:: 03823312 1 0 -nickel-iron_accumulator%1:06:00:: 03823673 1 0 -nickel-iron_battery%1:06:00:: 03823673 1 0 -nickel_alloy%1:27:00:: 14962117 1 0 -nickel_bronze%1:27:00:: 14962291 1 0 -nickel_note%1:21:00:: 13395652 1 0 -nickel_silver%1:27:00:: 14962387 1 0 -nickel_steel%1:27:00:: 14962521 1 0 -nickelodeon%1:06:00:: 03604156 1 0 -nicker%1:11:00:: 07387316 1 0 -nicker%2:32:00:: 01059743 1 0 -nicker_nut%1:20:00:: 11689197 1 0 -nicker_seed%1:20:00:: 11689197 1 0 -nicklaus%1:18:00:: 11206356 1 0 -nicknack%1:06:00:: 02897692 1 0 -nickname%1:10:00:: 06337693 1 1 -nickname%1:10:01:: 06338003 2 0 -nickname%2:32:00:: 01028640 1 1 -nicol_prism%1:06:00:: 03823906 1 0 -nicola_amati%1:18:00:: 10815477 1 0 -nicola_sacco%1:18:00:: 11277680 1 0 -nicolas_de_malebranche%1:18:00:: 11151322 1 0 -nicolas_leonard_sadi_carnot%1:18:00:: 10883380 1 0 -nicolas_poussin%1:18:00:: 11244765 1 0 -nicolaus_copernicus%1:18:00:: 10909724 1 0 -nicolo_amati%1:18:00:: 10815477 1 0 -nicolson%1:18:00:: 11206544 1 0 -nicosia%1:15:00:: 08757132 1 0 -nicotiana%1:20:00:: 12907287 1 0 -nicotiana_alata%1:20:00:: 12907671 1 0 -nicotiana_glauca%1:20:00:: 12908230 1 0 -nicotiana_rustica%1:20:00:: 12908093 1 0 -nicotiana_tabacum%1:20:00:: 12907857 1 0 -nicotinamide_adenine_dinucleotide%1:27:00:: 14962612 1 0 -nicotinamide_adenine_dinucleotide_phosphate%1:27:00:: 14962837 1 0 -nicotine%1:27:00:: 14714817 1 1 -nicotine_addiction%1:26:00:: 14065243 1 0 -nicotine_poisoning%1:26:00:: 14511862 1 0 -nicotinic_acid%1:27:00:: 15092059 1 0 -nictate%2:29:00:: 00007739 1 0 -nictation%1:04:00:: 00117959 1 0 -nictitate%2:29:00:: 00007739 1 0 -nictitating_membrane%1:08:00:: 05314639 1 0 -nictitation%1:04:00:: 00117959 1 0 -nicu%1:14:00:: 08146410 1 0 -nidaros%1:15:00:: 08765623 1 0 -nidation%1:22:00:: 13496286 1 0 -niddm%1:26:00:: 14118936 1 0 -nidicolous%3:00:00:: 01587950 1 0 -nidifugous%3:00:00:: 01588065 1 0 -nidularia%1:20:00:: 13046887 1 0 -nidulariaceae%1:20:00:: 13046512 1 0 -nidulariales%1:20:00:: 13046285 1 0 -nidus%1:17:00:: 09371028 2 0 -nidus%1:26:00:: 14182697 1 0 -niebuhr%1:18:00:: 11206705 2 0 -niebuhr%1:18:01:: 11206885 1 0 -niece%1:18:00:: 10357613 1 1 -niels_abel%1:18:00:: 10807197 1 0 -niels_bohr%1:18:00:: 10855200 1 0 -niels_henrik_abel%1:18:00:: 10807197 1 0 -niels_henrik_david_bohr%1:18:00:: 10855200 1 0 -nielsen%1:18:00:: 11207006 1 0 -niemann-pick_disease%1:26:00:: 14164007 1 0 -nierembergia%1:20:00:: 12908645 1 0 -nierembergia_frutescens%1:20:00:: 12909068 1 0 -nierembergia_repens%1:20:00:: 12908854 1 0 -nierembergia_rivularis%1:20:00:: 12908854 1 0 -nietzsche%1:18:00:: 11207125 1 0 -nifedipine%1:06:00:: 03824014 1 0 -niff%1:09:00:: 05715150 1 0 -niffy%5:00:00:malodorous:00 01054367 1 0 -nifty%5:00:00:good:01 01123879 1 0 -nigella%1:20:00:: 11736694 1 0 -nigella_damascena%1:20:00:: 11736851 1 0 -nigella_hispanica%1:20:00:: 11737009 1 0 -nigella_sativa%1:20:00:: 11737125 1 0 -niger%1:15:00:: 08973330 2 0 -niger%1:17:00:: 09371151 1 0 -niger-congo%1:10:00:: 06991764 1 0 -niger-kordofanian%1:10:00:: 06991277 1 0 -niger-kordofanian_language%1:10:00:: 06991277 1 0 -niger_franc%1:23:00:: 13678480 1 0 -niger_river%1:17:00:: 09371151 1 0 -nigeria%1:15:00:: 08973776 1 0 -nigerian%1:18:00:: 09724785 1 0 -nigerian%3:01:00:: 03091080 2 0 -nigerian%3:01:01:: 03091307 1 0 -nigerian_capital%1:15:00:: 08974171 1 0 -nigerian_monetary_unit%1:23:00:: 13688944 1 0 -nigerien%1:18:00:: 09725124 1 0 -nigerien%3:01:00:: 03091080 1 0 -nigga%1:18:00:: 09638009 1 0 -niggard%1:18:00:: 10357737 1 0 -niggardliness%1:07:00:: 04833687 1 0 -niggardly%5:00:00:stingy:00 01113636 1 0 -niggardness%1:07:00:: 04833687 1 0 -nigger%1:18:00:: 09638009 1 15 -niggle%2:32:00:: 00774056 2 0 -niggle%2:37:00:: 01793933 1 0 -niggler%1:18:00:: 09896826 1 0 -niggling%5:00:00:unimportant:00 01280908 1 0 -nigh%3:00:00:: 00444519 1 0 -nigh%4:02:00:: 00409709 1 0 -nigh%4:02:01:: 00073033 2 0 -nigh%5:00:00:left:00 02033556 2 0 -nigher%4:02:00:: 00407802 1 0 -nighest%4:02:00:: 00408021 1 0 -night%1:18:00:: 09559769 8 0 -night%1:26:00:: 13983717 5 1 -night%1:28:00:: 15167027 1 163 -night%1:28:01:: 15167577 2 1 -night%1:28:02:: 15155747 4 1 -night%1:28:03:: 15167349 7 0 -night%1:28:04:: 15167474 3 1 -night%1:28:05:: 15169759 6 0 -night-blooming_cereus%1:20:01:: 11853813 1 0 -night-blooming_cereus%1:20:02:: 11844892 3 0 -night-blooming_cereus%1:20:03:: 11848479 2 0 -night-light%1:06:00:: 03824713 1 0 -night-line%1:06:00:: 03824867 1 0 -night-robe%1:06:00:: 03824381 1 0 -night-sight%1:09:00:: 05656997 1 1 -night-stop%1:04:00:: 01056713 1 0 -night_bell%1:06:00:: 03824197 1 0 -night_bird%1:05:00:: 01515078 1 0 -night_blindness%1:26:00:: 14554853 1 0 -night_club%1:06:00:: 02931417 1 0 -night_court%1:14:00:: 08334451 1 0 -night_game%1:04:00:: 00456563 1 3 -night_heron%1:05:00:: 02010453 1 0 -night_jasmine%1:20:00:: 12902662 1 0 -night_jessamine%1:20:00:: 12902662 1 0 -night_latch%1:06:00:: 03824589 1 0 -night_letter%1:10:00:: 06622877 1 0 -night_life%1:04:00:: 00431292 2 0 -night_life%1:04:01:: 00515952 1 0 -night_lizard%1:05:00:: 01683558 1 0 -night_owl%1:18:00:: 10357907 1 0 -night_porter%1:18:00:: 10358032 1 0 -night_raven%1:05:01:: 01515217 2 0 -night_raven%1:05:02:: 02010453 1 0 -night_rider%1:18:00:: 10358124 1 0 -night_school%1:14:00:: 08411970 1 0 -night_shift%1:14:00:: 08218832 2 0 -night_shift%1:28:00:: 15292960 1 0 -night_snake%1:05:00:: 01740131 1 0 -night_soil%1:27:00:: 14864170 1 0 -night_terror%1:11:00:: 07290503 1 0 -night_vision%1:09:00:: 05656997 1 0 -night_watch%1:28:00:: 15293435 1 0 -night_watchman%1:18:00:: 10358322 1 0 -nightbird%1:18:00:: 10357907 1 0 -nightcap%1:04:00:: 00460844 3 0 -nightcap%1:06:00:: 03824284 2 0 -nightcap%1:13:00:: 07912619 1 0 -nightclothes%1:06:00:: 03825080 1 0 -nightclub%1:06:00:: 02931417 1 6 -nightcrawler%1:05:00:: 01935395 1 0 -nightdress%1:06:00:: 03824381 1 1 -nighted%5:00:00:unpunctual:00 01901496 1 1 -nightfall%1:28:00:: 15169421 1 4 -nightgown%1:06:00:: 03824381 1 0 -nighthawk%1:05:00:: 01836384 2 0 -nighthawk%1:18:00:: 10357907 1 0 -nightie%1:06:00:: 03824381 1 0 -nightingale%1:05:00:: 01560105 1 2 -nightingale%1:18:00:: 11207410 2 0 -nightjar%1:05:00:: 01835276 1 0 -nightlife%1:04:00:: 00431292 2 0 -nightlife%1:04:01:: 00515952 1 0 -nightlong%5:00:00:long:02 01441530 1 0 -nightly%4:02:00:: 00410210 1 0 -nightly%5:00:00:periodic:00 01968352 1 0 -nightmare%1:09:00:: 05769062 2 2 -nightmare%1:26:00:: 13936676 1 2 -nightmarish%5:00:00:alarming:00 00194817 1 1 -nightrider%1:18:00:: 10358124 1 0 -nightshade%1:20:00:: 12893463 1 0 -nightshirt%1:06:00:: 03824999 1 1 -nightspot%1:06:00:: 02931417 1 0 -nightstick%1:06:00:: 04491388 1 0 -nighttime%1:28:00:: 15167027 1 1 -nightwalker%1:05:00:: 01935395 1 0 -nightwear%1:06:00:: 03825080 1 0 -nightwork%1:04:00:: 00581991 1 0 -nigra%1:18:00:: 09638009 1 1 -nigrify%2:30:00:: 00280532 1 0 -nigroporus%1:20:00:: 13051546 1 0 -nigroporus_vinosus%1:20:00:: 13051694 1 0 -nih%1:14:00:: 08134081 1 0 -nihau%1:15:00:: 09080415 1 0 -nihau_island%1:15:00:: 09080415 1 0 -nihil%1:23:00:: 13740591 1 0 -nihil_obstat%1:04:00:: 01139749 2 0 -nihil_obstat%1:10:00:: 06688059 1 0 -nihilism%1:09:00:: 05965388 1 1 -nihilism%1:26:00:: 13973320 3 0 -nihilism%1:26:01:: 14378712 2 0 -nihilist%1:18:00:: 09791816 2 0 -nihilist%1:18:01:: 10358420 1 0 -nihilistic%3:01:00:: 02911757 1 1 -nihilistic_delusion%1:26:00:: 14378712 1 0 -nihility%1:26:00:: 14455700 1 0 -nihon%1:15:00:: 08921850 1 0 -nij%1:14:00:: 08142170 1 0 -nijinsky%1:18:00:: 11207585 1 0 -nijmegen%1:15:00:: 08950787 1 0 -nike%1:18:00:: 09567767 1 0 -nikita_khrushchev%1:18:00:: 11104287 1 0 -nikita_sergeyevich_khrushchev%1:18:00:: 11104287 1 0 -nikola_tesla%1:18:00:: 11336850 1 0 -nikolaas_tinbergen%1:18:00:: 11343040 1 0 -nikolai_andreyevich_rimski-korsakov%1:18:00:: 11262929 1 0 -nikolai_andreyevich_rimsky-korsakov%1:18:00:: 11262929 1 0 -nikolai_ivanovich_bukharin%1:18:00:: 10870691 1 0 -nikolai_ivanovich_lobachevsky%1:18:00:: 11136622 1 0 -nikolai_lenin%1:18:00:: 11126490 1 0 -nikolai_vasilievich_gogol%1:18:00:: 11004333 1 0 -nil%1:23:00:: 13740168 1 0 -nile%1:17:00:: 09371360 1 0 -nile_crocodile%1:05:00:: 01697457 1 0 -nile_river%1:17:00:: 09371360 1 0 -nilgai%1:05:00:: 02425532 1 0 -nilgiri_hills%1:15:00:: 08906169 1 0 -nilo-saharan%1:10:00:: 06997697 1 0 -nilo-saharan_language%1:10:00:: 06997697 1 0 -nilotic%1:10:00:: 06998108 1 0 -nilotic%3:01:00:: 03091464 2 0 -nilotic%3:01:01:: 03091618 1 0 -nilotic_language%1:10:00:: 06998108 1 0 -nilpotent%3:01:00:: 03012377 1 12 -nilsson%1:18:00:: 11207768 1 0 -nim%1:04:00:: 00499599 1 0 -nim_tree%1:20:00:: 12696492 1 0 -nimble%5:00:00:active:01 00032733 1 1 -nimble%5:00:00:intelligent:00 01334833 2 0 -nimble-fingered%5:00:00:adroit:00 00062740 1 0 -nimble_will%1:20:00:: 12125584 1 0 -nimbleness%1:07:00:: 05003850 2 0 -nimbleness%1:09:00:: 05619553 1 0 -nimblewill%1:20:00:: 12125584 1 0 -nimbly%4:02:00:: 00189615 1 1 -nimbus%1:07:00:: 04951716 2 0 -nimbus%1:17:00:: 09371686 1 0 -nimbus_cloud%1:17:00:: 09371686 1 0 -nimby%1:18:00:: 10358575 1 0 -nimiety%1:07:00:: 05119714 1 0 -niminy-piminy%5:00:00:refined:01 01948092 1 0 -nimitz%1:18:00:: 11207929 1 0 -nimravus%1:05:00:: 02131076 1 0 -nimrod%1:18:00:: 11202477 1 0 -nin-sin%1:20:00:: 11799732 1 0 -nina%1:18:00:: 09520367 1 0 -nina_from_carolina%1:23:00:: 13745270 1 0 -nincompoop%1:18:00:: 10358794 1 0 -nine%1:06:00:: 03825548 3 0 -nine%1:14:00:: 08079613 2 0 -nine%1:23:00:: 13745270 1 5 -nine%5:00:00:cardinal:00 02187161 1 21 -nine-banded_armadillo%1:05:00:: 02454794 1 0 -nine-fold%5:00:00:multiple:00 02220099 1 0 -nine-membered%5:00:00:membered:00 01503633 1 0 -nine-sided%5:00:00:multilateral:00 00238788 1 0 -nine-spot%1:06:00:: 03825548 1 0 -nine_iron%1:06:00:: 03823216 1 0 -nine_times%4:02:00:: 00410317 1 0 -ninefold%4:02:00:: 00410317 1 0 -ninefold%5:00:00:multiple:00 02220099 1 0 -ninepence%1:21:00:: 13391693 1 0 -ninepenny%5:00:00:sized:00 02223881 1 0 -ninepin%1:06:00:: 03825271 1 0 -ninepin_ball%1:06:00:: 03825442 1 0 -ninepins%1:04:00:: 00462383 1 0 -niner%1:23:00:: 13745270 1 0 -nineteen%1:23:00:: 13747989 1 2 -nineteen%5:00:00:cardinal:00 02188205 1 4 -nineteenth%1:24:00:: 13848784 1 0 -nineteenth%5:00:00:ordinal:00 02204472 1 14 -nineteenth_amendment%1:10:00:: 06729251 1 0 -nineties%1:28:00:: 15151255 3 0 -nineties%1:28:01:: 15151379 2 0 -nineties%1:28:02:: 15151470 1 1 -ninetieth%1:24:00:: 13849611 1 0 -ninetieth%5:00:00:ordinal:00 02209197 1 0 -ninety%1:23:00:: 13750297 1 0 -ninety%5:00:00:cardinal:00 02195145 1 4 -ninety-eight%5:00:00:cardinal:00 02195911 1 0 -ninety-fifth%5:00:00:ordinal:00 02209306 1 0 -ninety-five%5:00:00:cardinal:00 02195620 1 0 -ninety-four%5:00:00:cardinal:00 02195523 1 0 -ninety-nine%5:00:00:cardinal:00 02196012 1 0 -ninety-one%5:00:00:cardinal:00 02195234 1 0 -ninety-seven%5:00:00:cardinal:00 02195811 1 0 -ninety-six%5:00:00:cardinal:00 02195716 1 0 -ninety-three%5:00:00:cardinal:00 02195423 1 0 -ninety-two%5:00:00:cardinal:00 02195328 1 0 -nineveh%1:15:00:: 08919475 1 0 -ningal%1:18:00:: 09520498 1 0 -ningirsu%1:18:00:: 09520617 1 0 -ningishzida%1:18:00:: 09520752 1 0 -ninhursag%1:18:00:: 09520880 1 0 -ninib%1:18:00:: 09521157 1 0 -ninigi%1:18:00:: 09535504 1 0 -ninigino-mikoto%1:18:00:: 09535504 1 0 -ninja%1:14:00:: 08389094 2 0 -ninja%1:18:00:: 10358889 1 0 -ninjitsu%1:04:00:: 00826213 1 0 -ninjutsu%1:04:00:: 00826213 1 0 -ninkharsag%1:18:00:: 09520880 1 0 -ninkhursag%1:18:00:: 09520880 1 0 -ninny%1:18:00:: 10358794 1 0 -ninon%1:06:00:: 03825673 1 0 -ninth%1:23:00:: 13738235 2 0 -ninth%1:24:00:: 13847715 1 1 -ninth%5:00:00:ordinal:00 02203249 1 11 -ninth_cranial_nerve%1:08:00:: 05479786 1 0 -ninth_of_ab%1:28:00:: 15197658 1 0 -ninth_of_av%1:28:00:: 15197658 1 0 -nintoo%1:18:00:: 09521051 1 0 -nintu%1:18:00:: 09521051 1 0 -ninurta%1:18:00:: 09521157 1 0 -niobe%1:18:00:: 09496918 1 0 -niobite%1:27:00:: 14683859 1 0 -niobium%1:27:00:: 14646942 1 0 -niobrara%1:17:00:: 09371816 1 0 -niobrara_river%1:17:00:: 09371816 1 0 -nip%1:04:01:: 00842281 6 0 -nip%1:07:00:: 04993108 5 0 -nip%1:07:01:: 05015678 4 0 -nip%1:09:00:: 05715864 3 0 -nip%1:18:00:: 09718652 2 0 -nip%1:23:00:: 13773250 1 0 -nip%2:35:00:: 01456771 1 1 -nip%2:35:01:: 01456463 3 0 -nip%2:35:02:: 01446569 2 1 -nip_and_tuck%1:04:00:: 00674158 1 0 -nip_and_tuck%4:02:00:: 00408632 1 0 -nip_and_tuck%5:00:00:inconclusive:00 00551416 1 0 -nip_off%2:35:00:: 01456463 1 0 -nipa%1:13:00:: 07891613 2 0 -nipa%1:20:00:: 12591897 1 0 -nipa_fruticans%1:20:00:: 12592058 1 0 -nipa_palm%1:20:00:: 12592058 1 0 -nipper%1:05:00:: 02156532 2 0 -nipper%1:18:00:: 09917593 1 0 -nipping%5:00:00:cold:01 01252714 2 0 -nipping%5:00:00:sarcastic:00 02079313 1 0 -nipple%1:06:00:: 03825788 2 0 -nipple%1:08:00:: 05554653 1 0 -nipple_shield%1:06:00:: 03825913 1 0 -nippon%1:15:00:: 08921850 1 0 -nipponese%1:18:00:: 09718217 1 0 -nipponese%3:01:00:: 02965043 1 0 -nippy%5:00:00:cold:01 01252714 2 0 -nippy%5:00:00:tasty:00 02398129 1 0 -nipr%1:14:00:: 08043499 1 0 -niqaabi%1:18:00:: 10359117 1 0 -niqab%1:06:00:: 03826039 1 0 -nirvana%1:15:00:: 08565506 2 0 -nirvana%1:26:00:: 13988224 1 1 -nisan%1:28:00:: 15215816 1 0 -nisei%1:18:00:: 10359300 1 0 -nisi%5:00:00:inconclusive:00 00551695 1 0 -nissan%1:28:00:: 15215816 1 0 -nissen_hut%1:06:00:: 03826186 1 0 -nist%1:14:00:: 08131005 1 0 -nisus%1:04:00:: 00788766 1 0 -nit%1:05:00:: 01461146 2 0 -nit%1:23:00:: 13641023 1 0 -nitella%1:05:00:: 01413071 1 0 -niter%1:27:00:: 14861355 1 0 -nitid%5:00:00:bright:00 00279092 1 0 -nitpick%2:32:00:: 00846218 1 0 -nitpicker%1:18:00:: 10359422 1 0 -nitramine%1:27:00:: 15069584 1 0 -nitrate%1:27:00:: 15015501 1 1 -nitrate%2:30:10:: 00185103 1 0 -nitrate_bacterium%1:05:00:: 01374703 1 0 -nitrazepam%1:06:00:: 03826331 1 0 -nitre%1:27:00:: 14861355 1 0 -nitric%3:01:00:: 03091996 1 0 -nitric_acid%1:27:00:: 14766532 1 0 -nitric_bacteria%1:05:00:: 01362336 1 0 -nitric_bacterium%1:05:00:: 01374703 1 0 -nitric_oxide%1:27:00:: 14767202 1 0 -nitride%1:27:00:: 14963317 1 0 -nitrification%1:22:00:: 13521616 2 0 -nitrification%1:22:01:: 13521873 1 0 -nitrify%2:30:00:: 00502478 3 0 -nitrify%2:30:01:: 00504676 2 0 -nitrify%2:30:02:: 00504901 1 0 -nitril%1:27:00:: 14827346 1 0 -nitrile%1:27:00:: 14827346 1 0 -nitrite%1:27:00:: 15015963 1 0 -nitrite_bacterium%1:05:00:: 01374846 1 0 -nitro_group%1:27:00:: 15015872 1 0 -nitrobacter%1:05:00:: 01362196 1 0 -nitrobacteria%1:05:00:: 01362336 1 0 -nitrobacteriaceae%1:05:00:: 01361973 1 0 -nitrobacterium%1:05:00:: 01374457 1 0 -nitrobenzene%1:27:00:: 14963486 1 0 -nitrocalcite%1:27:00:: 14684017 1 0 -nitrocellulose%1:27:00:: 14794993 1 0 -nitrochloroform%1:27:00:: 14810168 1 0 -nitrochloromethane%1:27:00:: 14810356 1 0 -nitrocotton%1:27:00:: 14794993 1 0 -nitrofuran%1:27:00:: 14963634 1 0 -nitrofurantoin%1:06:00:: 03826443 1 0 -nitrogen%1:27:00:: 14647235 1 5 -nitrogen-bearing%3:01:00:: 03091861 1 0 -nitrogen-fixing%3:01:00:: 03091751 1 0 -nitrogen_balance%1:26:00:: 14017871 1 0 -nitrogen_cycle%1:22:00:: 13522084 1 0 -nitrogen_dioxide%1:27:00:: 14767087 1 0 -nitrogen_fixation%1:22:00:: 13522305 1 0 -nitrogen_mustard%1:27:00:: 14957649 1 0 -nitrogen_narcosis%1:09:00:: 05682196 1 0 -nitrogen_oxide%1:27:00:: 14766890 1 1 -nitrogen_trichloride%1:27:00:: 15017121 1 0 -nitrogenase%1:27:00:: 14963762 1 0 -nitrogenise%2:30:00:: 00504676 1 0 -nitrogenize%2:30:00:: 00504676 1 0 -nitrogenous%3:01:00:: 03091861 1 0 -nitroglycerin%1:27:00:: 14886579 1 0 -nitroglycerine%1:27:00:: 14886579 1 0 -nitrohydrochloric_acid%1:27:00:: 14767477 1 0 -nitrosobacteria%1:05:00:: 01362623 1 0 -nitrosomonas%1:05:00:: 01362480 1 0 -nitrospan%1:06:00:: 03826762 2 0 -nitrospan%1:27:00:: 14886579 1 0 -nitrostat%1:06:00:: 03826762 2 0 -nitrostat%1:27:00:: 14886579 1 0 -nitrous%3:01:00:: 03091996 1 0 -nitrous_acid%1:27:00:: 14766725 1 0 -nitrous_bacteria%1:05:00:: 01362623 1 0 -nitrous_bacterium%1:05:00:: 01374846 1 0 -nitrous_oxide%1:06:00:: 03826945 1 0 -nitta_tree%1:20:00:: 11763625 1 0 -nitty-gritty%1:09:00:: 05921123 1 0 -nitweed%1:20:00:: 12368637 1 0 -nitwit%1:18:00:: 10013114 1 0 -nitwitted%5:00:00:stupid:00 00441365 1 0 -nivose%1:28:00:: 15176476 1 0 -nix%1:23:00:: 13740168 1 0 -nix%2:32:00:: 00795863 1 0 -nixon%1:18:00:: 11208172 1 0 -nizhni_novgorod%1:15:00:: 09008130 1 0 -nizhnyi_novgorod%1:15:00:: 09008130 1 0 -nj%1:15:00:: 09112282 1 0 -njord%1:18:00:: 09582122 1 0 -njorth%1:18:00:: 09582122 1 0 -nlp%1:09:00:: 06142412 1 0 -nlrb%1:14:00:: 08126716 1 0 -nm%1:15:00:: 09114696 2 0 -nm%1:23:00:: 13658278 1 0 -nmr%1:19:00:: 11478898 1 0 -nne%1:24:00:: 13831572 1 0 -nnrti%1:06:00:: 03828155 1 0 -nnw%1:24:00:: 13835163 1 0 -no%1:10:00:: 07205104 1 21 -no%1:27:00:: 14647722 2 0 -no%3:00:00:: 02268485 1 135 -no%4:02:00:: 00024356 3 0 -no%4:02:01:: 00024587 2 4 -no%4:02:02:: 00050681 1 38 -no-account%1:18:00:: 10135953 1 0 -no-account%5:00:00:worthless:00 02502578 1 1 -no-brainer%1:04:00:: 00797468 1 0 -no-count%5:00:00:worthless:00 02502578 1 0 -no-frills%5:00:00:essential:00 00901650 1 0 -no-go%3:00:00:: 01123002 1 0 -no-go_area%1:15:00:: 08611063 1 0 -no-goal%1:09:00:: 05982024 1 1 -no-good%5:00:00:bad:00 01129021 2 0 -no-good%5:00:00:worthless:00 02502578 1 0 -no-hit%5:00:00:successful:00 02332421 1 1 -no-hit_game%1:04:00:: 00475014 1 1 -no-hitter%1:04:00:: 00475014 1 0 -no-nonsense%5:00:00:direct:02 00765537 1 1 -no-par-value_stock%1:21:00:: 13335808 1 0 -no-par_stock%1:21:00:: 13335808 1 0 -no-parking_zone%1:15:00:: 08611421 1 0 -no-see-um%1:05:00:: 02202678 1 0 -no-show%1:18:00:: 10362917 2 0 -no-show%1:18:01:: 10363017 1 0 -no-trump%1:04:00:: 00491561 1 0 -no-win%5:00:00:unsuccessful:00 02334854 1 0 -no-win_situation%1:26:00:: 13936783 1 0 -no.%1:23:00:: 13597280 1 8 -no_ball%1:04:00:: 00477268 1 0 -no_doubt%4:02:00:: 00150134 1 25 -no_end%4:02:00:: 00169008 1 1 -no_fault_automobile_insurance%1:21:00:: 13345560 1 0 -no_fault_insurance%1:21:00:: 13345560 1 0 -no_longer%4:02:00:: 00031515 1 48 -no_man's_land%1:07:00:: 04825815 3 0 -no_man's_land%1:15:00:: 08611218 1 1 -no_man's_land%1:21:00:: 13249805 2 0 -no_matter%4:02:00:: 00118531 1 10 -no_matter_what_happens%4:02:00:: 00156833 1 1 -no_more%4:02:01:: 00031515 1 15 -no_more%4:02:05:: 00050681 2 12 -noaa%1:14:00:: 08129883 1 0 -noachian%3:01:00:: 02768850 1 0 -noachian_deluge%1:19:00:: 11455386 1 0 -noah%1:18:00:: 11208431 1 0 -noah's_flood%1:19:00:: 11455386 1 0 -noah_and_the_flood%1:19:00:: 11455386 1 0 -noah_webster%1:18:00:: 11379108 1 0 -noam_chomsky%1:18:00:: 10896452 1 0 -nob%1:18:00:: 10714577 1 0 -nob_hill%1:15:00:: 09065899 1 0 -nobble%2:30:00:: 00512640 4 0 -nobble%2:35:00:: 01471043 3 0 -nobble%2:40:00:: 02276866 2 0 -nobble%2:41:00:: 02572119 1 0 -nobel%1:18:00:: 11208688 1 0 -nobel_laureate%1:18:00:: 10359546 1 0 -nobel_prize%1:10:00:: 07268759 1 1 -nobelist%1:18:00:: 10359546 1 0 -nobelium%1:27:00:: 14647722 1 0 -nobility%1:07:00:: 04870340 2 1 -nobility%1:14:00:: 08388207 1 1 -nobility%1:26:00:: 14432032 3 0 -noble%1:18:00:: 10271677 1 0 -noble%3:00:01:: 01588172 3 1 -noble%3:00:02:: 01590115 2 2 -noble%5:00:00:impressive:00 01283508 1 3 -noble%5:00:00:unreactive:00 01930244 4 0 -noble-minded%5:00:00:noble:01 01588619 1 0 -noble-mindedness%1:07:00:: 04870643 1 0 -noble_cane%1:20:00:: 12132956 1 0 -noble_gas%1:27:00:: 14624369 1 0 -noble_metal%1:27:00:: 14627081 1 0 -nobleman%1:18:00:: 10271677 1 0 -nobleness%1:07:00:: 04870340 1 0 -noblesse%1:14:00:: 08388503 2 0 -noblesse%1:26:00:: 14432032 1 0 -noblesse_oblige%1:04:00:: 01130735 1 0 -noblewoman%1:18:00:: 10242791 1 0 -nobly%4:02:00:: 00410426 1 0 -nobody%1:18:00:: 09923418 1 1 -noc%1:18:00:: 10359659 1 0 -nocent%5:00:00:harmful:00 01162817 1 0 -nociceptive%5:00:00:sensitive:01 02105055 1 2 -nock%2:35:00:: 01275762 1 0 -noctambulation%1:04:00:: 00285141 1 0 -noctambulism%1:04:00:: 00285141 1 0 -noctambulist%1:18:00:: 10611361 1 0 -noctiluca%1:05:00:: 01417674 1 0 -noctiluca_miliaris%1:05:00:: 01417674 1 1 -noctilucent%5:00:00:bright:00 00282557 1 0 -noctua%1:05:00:: 02295570 1 0 -noctuid%1:05:00:: 02295064 1 0 -noctuid_moth%1:05:00:: 02295064 1 0 -noctuidae%1:05:00:: 02294761 1 0 -nocturia%1:22:00:: 13522485 1 0 -nocturnal%3:00:00:: 00678923 1 1 -nocturnal%3:01:01:: 02931826 2 0 -nocturnal_emission%1:22:00:: 13522611 1 0 -nocturnally%4:02:00:: 00143457 1 0 -nocturne%1:10:00:: 07047679 1 0 -nod%1:04:00:: 00336430 2 1 -nod%1:10:01:: 07274316 1 1 -nod%2:29:02:: 00016573 5 0 -nod%2:29:03:: 00016702 3 1 -nod%2:32:00:: 00898210 2 16 -nod%2:32:01:: 00898434 1 35 -nod%2:38:00:: 01877785 4 0 -nod_off%2:29:00:: 00017282 1 0 -nodal_rhythm%1:07:00:: 04768309 1 0 -nodding%5:00:00:unerect:00 01238486 1 0 -nodding_groundsel%1:20:00:: 12011370 1 0 -nodding_onion%1:20:00:: 12433769 1 0 -nodding_thistle%1:20:00:: 11944954 1 0 -nodding_wild_onion%1:20:00:: 12433769 1 0 -noddle%1:09:00:: 05611684 1 0 -node%1:06:00:: 03827107 8 0 -node%1:08:00:: 05264913 7 0 -node%1:08:01:: 05430095 6 0 -node%1:15:00:: 08498424 5 0 -node%1:15:01:: 08498580 4 0 -node%1:20:00:: 13154190 3 0 -node%1:25:01:: 13895986 2 0 -node%1:25:02:: 13911045 1 0 -nodes_of_ranvier%1:08:00:: 05464534 1 0 -nodular%3:01:00:: 03092198 1 1 -nodular%5:00:00:unshapely:00 02141867 2 0 -nodulated%5:00:00:unshapely:00 02141867 1 0 -nodule%1:08:00:: 05265038 1 1 -nodule%1:17:00:: 09371941 3 0 -nodule%1:20:00:: 13088989 2 0 -noduled%5:00:00:unshapely:00 02141867 1 0 -nodulose%5:00:00:unshapely:00 02142063 1 0 -noel%1:28:00:: 15196537 1 0 -noel_coward%1:18:00:: 10913641 1 0 -noemi%1:18:00:: 11199943 1 0 -noesis%1:03:00:: 00023271 1 0 -noether%1:18:00:: 11208917 1 0 -noetic%5:00:00:mental:00 01780343 1 0 -nog%1:06:00:: 03827284 2 0 -nog%1:06:01:: 03905540 1 0 -nogales%1:15:00:: 09058219 1 0 -nogales%1:15:01:: 08744626 2 0 -noggin%1:08:00:: 05539454 1 0 -nogging%1:06:00:: 03827420 1 0 -noguchi%1:18:00:: 11209019 2 0 -noguchi%1:18:01:: 11209201 1 0 -nohow%4:02:00:: 00410520 1 0 -noise%1:07:00:: 04771332 6 0 -noise%1:07:01:: 04823031 5 0 -noise%1:09:00:: 05720248 2 1 -noise%1:10:00:: 07122730 4 0 -noise%1:11:00:: 07387509 1 43 -noise%1:11:01:: 07430211 3 0 -noise%2:39:00:: 02172888 1 0 -noise_conditions%1:26:00:: 13924536 1 0 -noise_level%1:07:00:: 05098620 1 0 -noise_pollution%1:26:00:: 14518539 1 0 -noiseless%5:00:00:quiet:01 01919282 1 0 -noiselessly%4:02:00:: 00462520 1 0 -noiselessness%1:07:00:: 04983013 1 0 -noisemaker%1:06:00:: 03827536 1 2 -noisily%4:02:00:: 00229255 1 1 -noisiness%1:07:00:: 04981474 1 0 -noisome%5:00:00:malodorous:00 01053634 2 0 -noisome%5:00:00:unwholesome:00 02560035 1 0 -noisomeness%1:07:00:: 04790774 1 0 -noisy%3:00:00:: 01919931 1 4 -noisy%5:00:00:colorful:03 00407766 2 0 -nol.pros.%2:30:00:: 00363268 1 0 -nol_pros%1:10:00:: 06505252 1 0 -noli-me-tangere%1:26:00:: 14212941 1 0 -nolina%1:20:00:: 12479821 1 0 -nolina_microcarpa%1:20:00:: 12480004 1 0 -nolle_pros%2:30:00:: 00363268 1 0 -nolle_prosequi%1:10:00:: 06505252 1 0 -nolle_prosequi%2:30:00:: 00363268 1 0 -nolo_contendere%1:10:00:: 06560939 1 0 -nom_de_guerre%1:10:00:: 06338278 1 0 -nom_de_plume%1:10:00:: 06338653 1 0 -noma%1:26:00:: 14213044 1 0 -nomad%1:18:00:: 10359759 1 0 -nomadic%5:00:00:unsettled:01 02128084 1 0 -nombril%1:15:00:: 08611339 1 0 -nome%1:15:00:: 09056055 1 0 -nomenclature%1:10:00:: 06304059 1 0 -nomenklatura%1:04:00:: 01154083 1 0 -nomia%1:05:00:: 02210567 1 2 -nomia_melanderi%1:05:00:: 02210921 1 1 -nominal%1:10:00:: 06316480 1 0 -nominal%3:00:00:: 01939784 4 0 -nominal%3:01:00:: 02768958 3 0 -nominal%3:01:01:: 02769128 1 1 -nominal%5:00:00:formal:01 01043374 6 0 -nominal%5:00:00:minimal:00 01496592 2 1 -nominal%5:00:02:specified:00 01099810 5 0 -nominal_aphasia%1:26:00:: 14098663 1 0 -nominal_damages%1:21:00:: 13291614 1 0 -nominal_head%1:18:00:: 10113583 1 0 -nominal_phrase%1:10:00:: 06316480 1 0 -nominal_value%1:21:00:: 13335635 1 0 -nominalism%1:09:00:: 05974156 1 0 -nominalist%1:18:00:: 10359988 1 0 -nominalistic%3:01:00:: 02769358 1 0 -nominally%4:02:00:: 00125012 1 2 -nominate%2:32:00:: 00879540 1 4 -nominate%2:41:00:: 02396205 4 0 -nominate%2:41:01:: 02396716 3 0 -nominate%2:41:02:: 02401523 2 0 -nominated%5:00:00:appointive:00 00846625 1 0 -nominating_address%1:10:00:: 07240925 1 0 -nominating_speech%1:10:00:: 07240925 1 0 -nomination%1:04:00:: 00164152 1 3 -nomination%1:10:00:: 07240925 3 0 -nomination%1:26:00:: 13926535 2 0 -nominative%1:10:00:: 06311160 1 0 -nominative%3:01:00:: 02769463 1 0 -nominative%5:00:00:appointive:00 00846625 3 0 -nominative%5:00:00:specified:00 01099810 2 0 -nominative_case%1:10:00:: 06311160 1 0 -nominator%1:18:00:: 10360101 1 0 -nominee%1:18:00:: 09889691 1 0 -nomogram%1:06:00:: 03827716 1 0 -nomograph%1:06:00:: 03827716 1 0 -nomothetic%3:00:00:: 02593861 1 0 -non%4:02:00:: 00024073 1 0 -non-aromatic%5:00:00:odorless:00 01057958 1 0 -non-automatic%5:00:00:manual:00 00182961 1 0 -non-buoyant%5:00:00:heavy:01 01186107 1 0 -non-cash_expense%1:21:00:: 13276913 1 0 -non-catholic%1:18:00:: 09680136 1 8 -non-christian_priest%1:18:00:: 10471250 1 0 -non-conducting%3:00:00:: 00558232 1 0 -non-dedicated_file_server%1:06:00:: 03827830 1 0 -non-discrimination%1:07:00:: 04839445 1 1 -non-elective%5:00:00:appointive:00 00846789 1 0 -non-engagement%1:04:00:: 01239487 1 0 -non-euclidean_geometry%1:09:00:: 06006777 1 0 -non-finite%3:00:00:: 01008745 1 0 -non-flowering_plant%1:20:00:: 11530990 1 0 -non-insulin-dependent_diabetes%1:26:00:: 14118936 1 0 -non-insulin-dependent_diabetes_mellitus%1:26:00:: 14118936 1 0 -non-invertible%3:00:00:: 02595357 1 0 -non-involvement%1:04:00:: 01239487 1 0 -non-ionic_detergent%1:27:00:: 14618050 1 0 -non-issue%1:26:00:: 14006821 1 0 -non-jew%1:18:00:: 09679028 1 1 -non-living%3:00:00:: 00118238 1 0 -non-market_economy%1:14:00:: 08365344 1 0 -non-metric%3:01:00:: 02995864 1 0 -non-miscible%3:00:00:: 00509735 1 0 -non-negotiable%5:00:00:inalienable:00 00094239 1 0 -non-nucleoside_reverse_transcriptase_inhibitor%1:06:00:: 03828155 1 0 -non-paying%5:00:00:unpaid:00 01710421 1 0 -non-poisonous%5:00:00:edible:00 00829146 2 0 -non-poisonous%5:00:00:nontoxic:00 02450919 1 0 -non-profit-making%5:00:00:noncommercial:00 00484680 1 0 -non-proliferation%1:04:00:: 01078572 1 0 -non-resinous%5:00:00:nonadhesive:00 00055142 1 0 -non-resiny%5:00:00:nonadhesive:00 00055142 1 0 -non-resistant%1:18:00:: 10362195 1 1 -non-slave%5:00:00:free:01 01065941 1 0 -non-standard_speech%1:10:00:: 07155081 1 0 -non-u%5:00:00:lower-class:00 00259820 1 0 -non-ugric%1:10:00:: 06956544 1 0 -non-verbally%4:02:00:: 00128763 1 0 -non-volatile_storage%1:06:00:: 03829340 1 0 -non-water-soluble%5:00:00:insoluble:01 02266043 1 0 -non-white%5:00:00:black:02 00242575 1 0 -non-zero%5:00:00:cardinal:00 02186265 1 0 -non_compos_mentis%5:00:00:insane:00 02076988 1 0 -non_pros%1:04:00:: 01188783 1 0 -non_prosequitur%1:04:00:: 01188783 1 0 -non_sequitur%1:09:00:: 05781663 2 0 -non_sequitur%1:10:00:: 07199814 1 0 -non_vult%1:10:00:: 06560939 1 0 -nonabsorbency%1:07:00:: 04942738 1 0 -nonabsorbent%3:00:00:: 00007813 1 0 -nonabsorptive%3:00:00:: 00007813 1 0 -nonacceptance%1:04:00:: 00205349 1 0 -nonaccomplishment%1:04:00:: 00066216 1 0 -nonachievement%1:04:00:: 00066216 1 0 -nonachiever%1:18:00:: 10736394 1 0 -nonadaptive%5:00:00:maladaptive:00 00046792 1 0 -nonaddictive%3:00:00:: 00047954 1 0 -nonadhesive%3:00:00:: 00054908 1 0 -nonadjacent%5:00:00:distant:01 00446525 1 0 -nonadsorbent%3:00:00:: 00008595 1 0 -nonadsorptive%3:00:00:: 00008595 1 0 -nonage%1:28:00:: 15152261 1 0 -nonaged%3:00:00:: 01471954 1 0 -nonagenarian%1:18:00:: 10360253 1 0 -nonagenarian%5:00:00:old:02 01646120 1 0 -nonaggression%1:10:00:: 06661923 1 0 -nonaggressive%3:00:00:: 00084956 1 0 -nonagon%1:25:00:: 13882639 1 0 -nonalcoholic%3:00:00:: 01159531 1 0 -nonaligned%3:00:00:: 00732037 1 0 -nonalignment%1:14:00:: 08294395 1 0 -nonalinement%1:14:00:: 08294395 1 0 -nonallele%1:08:00:: 05439942 1 0 -nonappearance%1:04:00:: 01234243 1 0 -nonappointive%5:00:00:elective:00 00846349 1 0 -nonarbitrable%3:00:00:: 00140437 1 0 -nonarbitrary%3:00:00:: 00720082 1 0 -nonarboreal%3:00:00:: 00141947 1 0 -nonassertive%5:00:00:unassertive:00 00157080 1 1 -nonassociative%3:00:00:: 00157849 1 0 -nonastringent%3:00:00:: 00190023 1 0 -nonattendance%1:04:00:: 01234090 1 0 -nonattender%1:18:00:: 10362917 1 0 -nonautonomous%5:00:00:unfree:00 01065401 1 0 -nonbearing%3:00:00:: 00217563 1 0 -nonbeing%1:26:00:: 13959818 1 0 -nonbeliever%1:18:00:: 10015897 1 0 -nonbelligerent%5:00:00:peaceful:00 01741563 1 0 -nonbiodegradable_pollution%1:26:00:: 14517243 1 0 -noncallable_bond%1:21:00:: 13338780 1 0 -noncaloric%3:01:00:: 02675626 1 0 -noncandidate%1:18:00:: 10360366 1 0 -noncarbonated%5:00:00:noneffervescent:00 02277182 1 0 -noncausal%3:00:00:: 00325197 1 0 -noncausative%3:00:00:: 00325197 1 0 -nonce%1:28:00:: 15135434 1 0 -nonce_word%1:10:00:: 06294584 1 0 -noncellular%3:00:00:: 00328128 1 0 -nonchalance%1:07:00:: 04673470 1 0 -nonchalant%5:00:00:unconcerned:00 00545746 1 1 -nonchalantly%4:02:00:: 00243086 2 0 -nonchalantly%4:02:01:: 00295545 1 0 -nonchristian%5:00:00:unchristian:00 00411599 1 0 -nonchurchgoing%5:00:00:irreligious:00 01784602 1 1 -noncitizen%1:18:00:: 10103485 1 0 -noncivilised%3:00:00:: 00412567 1 0 -noncivilized%3:00:00:: 00412567 1 0 -nonclassical%3:00:00:: 00414227 1 0 -noncoding_dna%1:27:00:: 14831178 1 0 -noncollapsable%3:00:00:: 00466365 1 0 -noncollapsible%3:00:00:: 00466365 1 0 -noncolumned%3:00:00:: 00141522 1 0 -noncom%1:18:00:: 10360747 1 1 -noncombatant%1:18:00:: 10360578 1 0 -noncombatant%5:00:01:military:01 01517755 2 0 -noncombatant%5:00:02:civilian:00 01518295 1 0 -noncombinative%3:00:00:: 00472810 1 0 -noncombining%5:00:00:noncombinative:00 00472914 1 0 -noncombustible%3:00:00:: 00474043 1 0 -noncommercial%3:00:00:: 00484333 1 0 -noncommissioned%3:00:00:: 00485593 1 1 -noncommissioned_officer%1:18:00:: 10360747 1 0 -noncommittal%5:00:00:indefinite:00 00702444 1 0 -noncommunicable%5:00:00:noninfectious:00 01303636 1 0 -noncompetitive%3:00:00:: 00513165 1 1 -noncompetitively%4:02:00:: 00243448 1 0 -noncompliance%1:04:00:: 01179707 1 0 -noncompliant%1:18:00:: 09833997 1 0 -noncompliant%3:00:00:: 00695523 1 0 -noncomprehensive%3:00:00:: 00529075 1 0 -noncomprehensively%4:02:00:: 00288556 1 0 -nonconcentric%3:00:00:: 00543200 1 0 -nonconducting%3:00:00:: 00558232 1 0 -nonconductive%3:00:00:: 00558232 1 0 -nonconductor%1:27:00:: 14821590 1 0 -nonconformance%1:04:00:: 01204845 2 0 -nonconformance%1:09:00:: 06212650 1 0 -nonconforming%5:00:00:unorthodox:00 01691826 1 0 -nonconformism%1:04:00:: 00418305 2 0 -nonconformism%1:09:00:: 06212650 1 0 -nonconformist%1:18:00:: 09957834 2 0 -nonconformist%1:18:01:: 09958133 1 1 -nonconformist%3:00:00:: 00610249 1 0 -nonconformist%5:00:00:unorthodox:00 01691826 2 0 -nonconformity%1:04:00:: 01204845 4 0 -nonconformity%1:07:00:: 04801030 3 0 -nonconformity%1:09:00:: 06212650 2 0 -nonconformity%1:10:00:: 07181453 1 0 -nonconscious%5:00:00:inanimate:01 00118451 2 0 -nonconscious%5:00:00:unconscious:00 00572845 1 0 -noncontagious%5:00:00:noninfectious:00 01303636 1 0 -noncontentious%5:00:00:unargumentative:00 00604520 1 0 -noncontinuous%3:00:00:: 00596769 1 0 -noncontroversial%3:00:00:: 00602721 1 0 -nonconvergent%5:00:00:parallel:00 01718732 1 0 -noncritical%3:00:01:: 00651697 2 0 -noncritical%3:00:02:: 00652533 1 0 -noncritical%3:00:04:: 00650351 3 0 -noncrucial%3:00:00:: 00656771 1 0 -noncrucial%3:00:04:: 00651697 2 0 -noncrystalline%3:00:00:: 00269486 1 0 -noncurrent%3:00:00:: 00668571 1 0 -noncyclic%3:00:00:: 00676457 1 0 -noncyclic%5:00:00:aperiodic:00 01970604 2 0 -noncyclical%3:00:00:: 00676457 1 0 -nondeductible%3:00:00:: 00689970 1 0 -nondenominational%5:00:00:nonsectarian:00 02092987 1 0 -nondepository_financial_institution%1:14:00:: 08419984 1 0 -nondescript%1:18:00:: 10361060 1 0 -nondescript%5:00:00:ordinary:00 01673590 1 1 -nondevelopment%1:22:00:: 13522744 1 0 -nondigestible%5:00:00:indigestible:00 01183274 1 0 -nondirectional_antenna%1:06:00:: 03846772 1 0 -nondiscretionary_trust%1:21:00:: 13362734 1 0 -nondisjunction%1:22:00:: 13522879 1 0 -nondisposable%3:00:01:: 00776822 2 0 -nondisposable%3:00:02:: 00778161 1 0 -nondrinker%1:18:00:: 09757944 1 0 -nondriver%1:18:00:: 10361194 1 1 -none%1:04:00:: 01034385 2 0 -none%1:28:00:: 15228787 1 0 -none%4:02:00:: 00024682 1 1 -none%5:00:00:no:00 02269039 1 0 -nonechoic%3:00:00:: 01217919 1 0 -noneffervescent%3:00:00:: 02276964 2 0 -noneffervescent%3:00:04:: 02277485 1 0 -nonelected%5:00:00:appointive:00 00846789 1 0 -nonelective%5:00:00:appointive:00 00846789 1 0 -nonenterprising%3:00:00:: 00885415 1 0 -nonentity%1:18:00:: 09923418 2 0 -nonentity%1:26:00:: 13959931 1 0 -nonenzymatic%3:01:00:: 03005155 1 1 -nonequivalence%1:07:00:: 04752414 1 1 -nonequivalent%5:00:00:unequal:00 00892976 1 1 -nones%1:28:00:: 15230076 1 0 -nonessential%1:17:00:: 09312645 1 0 -nonessential%5:00:00:inessential:00 00903264 1 0 -nonesuch%1:18:00:: 10325243 1 0 -nonesuch_clover%1:20:00:: 12549192 1 0 -nonetheless%4:02:00:: 00027384 1 4 -nonevent%1:11:00:: 07283473 1 0 -nonexempt%3:00:00:: 02366200 2 0 -nonexempt%3:00:02:: 02400218 1 0 -nonexistence%1:26:00:: 13959931 1 0 -nonexistent%3:00:00:: 00927578 1 3 -nonexplorative%3:00:00:: 00878704 1 0 -nonexploratory%3:00:00:: 00878704 1 0 -nonexplosive%3:00:00:: 00475008 1 0 -nonextant%3:00:02:: 00929164 1 0 -nonextant%5:00:00:nonexistent:00 00928238 2 0 -nonextensile%3:00:00:: 00945019 1 0 -nonfat%3:00:00:: 00992955 1 0 -nonfat_dry_milk%1:13:00:: 07846274 1 0 -nonfatal%3:00:00:: 00994210 1 0 -nonfeasance%1:04:00:: 00739078 1 0 -nonfiction%1:10:00:: 06367571 1 4 -nonfictional%3:01:00:: 02727912 1 0 -nonfictional_prose%1:10:00:: 06367571 1 0 -nonfigurative%5:00:00:nonrepresentational:00 01980557 1 0 -nonfinancial%3:01:00:: 02848119 1 0 -nonfissile%3:00:00:: 01016806 1 0 -nonfissionable%3:00:00:: 01017048 1 0 -nonflammable%5:00:00:noncombustible:00 00474541 1 0 -nonflavored%5:00:00:tasteless:01 02400002 1 0 -nonflavoured%5:00:00:tasteless:01 02400002 1 0 -nonflowering%3:00:00:: 02597951 1 0 -nonflowering_plant%1:20:00:: 11545524 1 0 -nonfluent_aphasia%1:26:00:: 14098458 1 0 -nonfunctional%3:00:00:: 01090993 1 1 -nonfunctional%3:00:03:: 01092142 2 0 -nonglutinous%5:00:00:nonadhesive:00 00055041 1 0 -nongonococcal_urethritis%1:26:00:: 14566996 1 0 -nongovernmental_organization%1:14:00:: 08009834 1 0 -nongranular%5:00:00:fine:00 02233282 1 0 -nongregarious%5:00:00:ungregarious:00 02253205 1 0 -nonhairy%5:00:00:hairless:00 00211916 1 0 -nonharmonic%3:01:00:: 02737981 1 0 -nonhereditary%5:00:00:noninheritable:00 01316019 1 0 -nonheritable%3:00:00:: 01315507 1 0 -nonhierarchic%3:00:00:: 01204318 1 0 -nonhierarchical%3:00:00:: 01204318 1 0 -nonhuman%3:00:00:: 01260023 1 0 -nonimitative%3:00:00:: 01217485 1 0 -nonimmune%5:00:00:susceptible:00 02362178 1 0 -nonindulgence%1:07:00:: 04881998 1 0 -nonindulgent%3:00:00:: 01299888 1 0 -nonindustrial%3:00:00:: 01302368 1 0 -noninfectious%3:00:00:: 01303544 1 0 -noninflammatory%5:00:00:unprovocative:00 01898051 1 0 -noninheritable%3:00:00:: 01315507 1 0 -noninstitutional%3:00:00:: 01231837 1 0 -noninstitutionalised%3:00:00:: 01231070 1 0 -noninstitutionalized%3:00:00:: 01231070 1 0 -nonintegrated%3:00:00:: 01329007 1 0 -nonintellectual%3:00:00:: 01333718 1 0 -noninterchangeable%5:00:00:asymmetrical:00 02373981 1 0 -noninterference%1:10:00:: 06661747 1 1 -nonintersecting%5:00:00:parallel:00 01718732 1 0 -nonintervention%1:10:00:: 06661747 1 0 -noninvasive%3:00:00:: 01356515 1 0 -nonionic%3:00:00:: 00356211 1 1 -nonionic%3:01:00:: 02751367 2 0 -nonionised%3:00:00:: 00356211 1 0 -nonionized%3:00:00:: 00356211 1 0 -nonjudgmental%3:00:00:: 00649405 1 0 -nonkosher%5:00:00:unclean:00 00428121 1 0 -nonleaded%5:00:00:unleaded:00 01397251 1 0 -nonlegal%5:00:00:illegal:00 01403469 1 0 -nonlethal%5:00:00:nonfatal:00 00994326 1 0 -nonlexical%3:01:00:: 02886767 1 0 -nonlexically%4:02:00:: 00136761 1 0 -nonlinear%3:00:00:: 01417790 1 0 -nonlinear_correlation%1:09:00:: 06031657 1 0 -nonlinear_distortion%1:19:00:: 11512144 1 0 -nonlinear_system%1:14:00:: 08435246 1 0 -nonlinguistic%3:01:00:: 02842704 1 2 -nonliteral%3:00:00:: 01419149 1 0 -nonliterary%5:00:00:informal:02 01047144 1 0 -nonliterate%5:00:00:noncivilized:00 00413312 1 0 -nonliving%3:00:00:: 00118238 1 0 -nonmagnetic%3:00:00:: 01470913 1 0 -nonmalignant_neoplasm%1:26:00:: 14236226 1 0 -nonmalignant_tumor%1:26:00:: 14236226 1 0 -nonmalignant_tumour%1:26:00:: 14236226 1 0 -nonmandatory%5:00:00:optional:00 00847972 1 0 -nonmaterial%3:00:00:: 00627410 1 0 -nonmeaningful%3:00:00:: 01497736 1 0 -nonmechanical%3:00:00:: 01500766 1 0 -nonmechanical%5:00:00:maladroit:00 00064365 2 0 -nonmechanistic%5:00:00:nonmechanical:00 01500876 1 0 -nonmedicinal%5:00:00:unhealthful:00 01168632 1 0 -nonmember%1:18:00:: 10308066 1 0 -nonmetal%1:27:00:: 14627246 1 0 -nonmetal%3:00:00:: 01529293 1 0 -nonmetallic%3:00:00:: 01529293 1 4 -nonmetamorphic%3:00:00:: 01531180 1 0 -nonmigratory%3:00:00:: 02129136 1 0 -nonmilitary%3:00:00:: 01518955 1 0 -nonmodern%3:00:00:: 01536911 1 0 -nonmonotonic%3:00:00:: 01547721 1 0 -nonmotile%5:00:00:immobile:00 01525502 1 0 -nonmoving%3:00:00:: 01564073 1 0 -nonmusical%3:00:01:: 01505318 2 0 -nonmusical%3:00:02:: 01505786 1 0 -nonnative%3:00:00:: 01037405 1 0 -nonnative%5:00:01:foreign:01 01035559 2 0 -nonnative%5:00:02:foreign:01 01035277 3 0 -nonnatural%5:00:00:supernatural:00 01577086 1 0 -nonnegative%5:00:00:plus:00 01819592 1 0 -nonnomadic%5:00:00:settled:01 02126694 1 0 -nonnormative%5:00:00:nonstandard:02 02297586 1 0 -nonobjective%5:00:00:nonrepresentational:00 01980557 1 0 -nonobligatory%5:00:00:optional:00 00847972 1 0 -nonobservance%1:04:00:: 01204711 1 0 -nonobservant%5:00:00:irreligious:00 01784723 1 1 -nonoccurrence%1:26:00:: 13961179 1 1 -nonopening%5:00:00:closed:01 01654299 1 0 -nonoperational%3:00:00:: 01660857 1 0 -nonoscillatory%5:00:00:aperiodic:00 01970686 1 0 -nonparallel%5:00:00:asynchronous:00 02380358 1 0 -nonparallel%5:00:00:oblique:00 01720091 2 0 -nonparametric%3:01:00:: 02911488 1 0 -nonparametric_statistic%1:09:00:: 06022727 1 0 -nonparametric_statistics%1:09:00:: 06034101 1 0 -nonparasitic%5:00:00:independent:00 00728993 1 0 -nonpareil%1:13:01:: 07621264 2 0 -nonpareil%1:13:02:: 07604840 3 0 -nonpareil%1:18:00:: 10325243 1 0 -nonpareil%5:00:00:incomparable:00 00505410 1 0 -nonparticipant%1:18:00:: 10361296 1 0 -nonparticipation%1:04:00:: 01239487 1 0 -nonparticulate%3:00:00:: 01724456 1 1 -nonparticulate_radiation%1:19:00:: 11450869 1 0 -nonpartisan%1:18:00:: 10361390 1 0 -nonpartisan%3:00:00:: 00731292 1 0 -nonpartisanship%1:09:00:: 06202686 1 0 -nonpartizan%1:18:00:: 10361390 1 0 -nonpartizan%3:00:00:: 00731292 1 0 -nonpasserine%3:01:00:: 02775175 1 0 -nonpasserine_bird%1:05:00:: 01524761 1 0 -nonpayment%1:04:00:: 01120855 3 0 -nonpayment%1:21:00:: 13300141 2 0 -nonpayment%1:21:02:: 13300411 1 0 -nonperformance%1:04:00:: 00739270 1 0 -nonperiodic%3:00:00:: 01970464 1 0 -nonperson%1:18:00:: 10361525 1 0 -nonpersonal%5:00:00:impersonal:00 01769744 1 0 -nonphotosynthetic%3:01:00:: 02777831 1 0 -nonphysical%5:00:00:immaterial:01 00627643 1 0 -nonplus%2:31:00:: 00622384 1 0 -nonplused%5:00:00:perplexed:00 01765926 1 0 -nonplussed%5:00:00:perplexed:00 01765926 1 0 -nonpoisonous%5:00:00:edible:00 00829146 2 0 -nonpoisonous%5:00:00:nontoxic:00 02450919 1 0 -nonpolar%3:01:00:: 02751367 1 0 -nonpolitical%3:00:00:: 01815129 1 1 -nonporous%3:00:00:: 00329695 1 0 -nonpregnant%3:00:00:: 00173694 1 0 -nonprehensile%3:00:00:: 00129029 1 0 -nonprescription%3:00:00:: 01846204 1 0 -nonproductive%5:00:00:unproductive:00 01867189 1 1 -nonprofessional%3:00:00:: 01869370 1 0 -nonprofit%1:04:00:: 01137597 1 0 -nonprofit%5:00:00:noncommercial:00 00484680 1 0 -nonprofit_organization%1:04:00:: 01137597 1 0 -nonprognosticative%5:00:00:unprophetic:00 01883719 1 0 -nonprogressive%5:00:00:conservative:00 00574884 1 0 -nonproliferation%1:04:00:: 01078572 1 0 -nonproliferation_center%1:14:00:: 08125722 1 0 -nonproprietary%3:00:00:: 01109359 1 0 -nonprotractile%3:00:00:: 00945019 1 0 -nonpsychoactive%3:00:00:: 01778073 1 0 -nonpublic%5:00:00:private:00 01860207 1 0 -nonpurulent%5:00:00:antiseptic:00 02116397 1 0 -nonracial%3:00:00:: 01928381 1 0 -nonracist%5:00:00:unprejudiced:00 00286470 1 0 -nonradioactive%3:00:00:: 00427255 1 0 -nonrandom%3:00:00:: 01925158 1 0 -nonrapid_eye_movement%1:26:00:: 14025478 1 0 -nonrapid_eye_movement_sleep%1:26:00:: 14025478 1 0 -nonrational%5:00:00:illogical:00 01431471 2 0 -nonrational%5:00:00:irrational:00 01926921 1 0 -nonreader%1:18:00:: 10361901 1 0 -nonreader%1:18:01:: 10199103 2 0 -nonreciprocal%3:00:00:: 01946911 1 0 -nonreciprocating%5:00:00:nonreciprocal:00 01947021 1 0 -nonrecreational%5:00:00:professional:01 01869126 1 0 -nonreflecting%3:00:00:: 02008380 1 0 -nonreflective%3:00:00:: 02008380 1 0 -nonreligious_person%1:18:00:: 09625789 1 0 -nonremittal%1:21:00:: 13300141 2 0 -nonremittal%1:21:02:: 13300411 1 0 -nonrenewable%3:00:00:: 01963117 1 0 -nonrepetitive%3:00:00:: 01964775 1 0 -nonrepresentational%3:00:00:: 01980250 1 0 -nonrepresentative%3:00:00:: 01982538 1 0 -nonresident%1:18:00:: 10362003 1 0 -nonresident%3:00:00:: 02125601 1 2 -nonresidential%3:00:00:: 00485252 1 0 -nonresilient%5:00:00:inelastic:00 00845856 1 0 -nonresinous%5:00:00:nonadhesive:00 00055142 1 0 -nonresiny%5:00:00:nonadhesive:00 00055142 1 0 -nonresistance%1:04:00:: 01169598 1 0 -nonresistant%5:00:00:compliant:00 00697089 2 0 -nonresistant%5:00:00:susceptible:00 02362178 1 0 -nonresonant%3:00:00:: 02011142 1 0 -nonrestrictive%5:00:00:unrestrictive:00 02005460 1 0 -nonrestrictive_clause%1:10:00:: 06315454 1 0 -nonreticulate%3:00:00:: 02007413 1 0 -nonretractable%3:00:00:: 02007775 1 0 -nonretractile%3:00:00:: 02007775 1 0 -nonreturnable%3:00:00:: 00777238 1 0 -nonreversible%3:00:00:: 01760009 1 0 -nonrhythmic%5:00:00:unrhythmical:00 02021332 1 0 -nonrigid%3:00:00:: 01027076 1 0 -nonruminant%3:01:00:: 02790134 1 0 -nonsectarian%3:00:00:: 02092129 1 0 -nonsegmental%5:00:00:united:00 02478589 1 0 -nonsegregated%5:00:00:integrated:00 01326516 1 0 -nonsense%1:06:00:: 03376438 2 0 -nonsense%1:10:00:: 06607339 1 5 -nonsense%5:00:00:meaningless:00 01498594 1 1 -nonsense_verse%1:10:00:: 06608035 1 0 -nonsensical%5:00:00:foolish:00 02570643 1 0 -nonsensical%5:00:00:meaningless:00 01498594 2 0 -nonsensicality%1:10:00:: 06607339 1 0 -nonsensitive%5:00:00:unclassified:02 00416651 1 0 -nonsexual%3:00:00:: 02135913 1 0 -nonsignificant%3:00:00:: 02165925 1 0 -nonsingular_matrix%1:14:00:: 08269939 1 0 -nonskid%5:00:00:nonslippery:00 02236423 1 0 -nonslip%5:00:00:nonslippery:00 02236532 1 0 -nonslippery%3:00:00:: 02236271 1 0 -nonsmoker%1:06:00:: 03828020 2 0 -nonsmoker%1:18:00:: 10362319 1 0 -nonsmoking_car%1:06:00:: 03828020 1 0 -nonsocial%5:00:00:ungregarious:00 02253205 1 0 -nonsocial_infection%1:26:00:: 14178326 1 0 -nonsolid_color%1:07:00:: 04978561 1 0 -nonsolid_colour%1:07:00:: 04978561 1 0 -nonsovereign%5:00:00:unfree:00 01065401 1 0 -nonspatial%3:01:00:: 02841422 1 0 -nonspeaking%3:00:00:: 00153239 1 0 -nonspecific%3:00:00:: 01105620 1 19 -nonspecific_urethritis%1:26:00:: 14567571 1 0 -nonspecifically%4:02:00:: 00042134 1 3 -nonspherical%3:01:00:: 02800851 1 0 -nonstandard%3:00:00:: 02295867 3 0 -nonstandard%3:00:02:: 02297166 2 0 -nonstandard%3:00:03:: 02298285 1 0 -nonstarter%1:05:00:: 02385776 2 0 -nonstarter%1:18:00:: 10273064 1 0 -nonsteroid%1:27:00:: 15058023 1 0 -nonsteroidal%1:27:00:: 15058023 1 0 -nonsteroidal%3:01:00:: 02803740 1 0 -nonsteroidal_anti-inflammatory%1:06:00:: 03828465 1 0 -nonsteroidal_anti-inflammatory_drug%1:06:00:: 03828465 1 0 -nonstick%5:00:00:slippery:00 02235330 1 0 -nonstop%1:04:00:: 00302001 1 0 -nonstop%4:02:00:: 00410620 1 0 -nonstop%5:00:00:continuous:01 00595147 2 0 -nonstop%5:00:00:direct:00 00761449 1 0 -nonstop_flight%1:04:00:: 00302001 1 0 -nonstructural%5:00:00:nonfunctional:00 01091160 1 0 -nonsubjective%3:00:04:: 01615180 1 0 -nonsubmergible%3:00:00:: 02473033 1 0 -nonsubmersible%3:00:00:: 02473033 1 0 -nonsuch%1:18:00:: 10325243 1 0 -nonsuppurative%3:01:00:: 02805872 1 0 -nonsurgical%3:01:00:: 02889157 1 0 -nonsweet%3:00:00:: 02338327 1 0 -nonsyllabic%3:00:00:: 02289738 1 0 -nonsyllabic%3:00:02:: 02288490 2 0 -nonsymbiotic%5:00:00:independent:00 00728993 1 0 -nonsynchronous%5:00:00:asynchronous:00 02380225 1 0 -nonsynthetic%5:00:00:organic:02 01679907 1 0 -nontaxable%3:00:00:: 02400929 1 0 -nontechnical%3:00:00:: 01109096 1 0 -nontelescopic%5:00:00:noncollapsible:00 00466486 1 0 -nontelescoping%5:00:00:noncollapsible:00 00466486 1 0 -nonterritorial%3:00:00:: 02409712 1 0 -nontextual_matter%1:10:00:: 06998748 1 0 -nonthermal%3:01:00:: 02814758 1 0 -nonthrombocytopenic_purpura%1:26:00:: 14197628 1 0 -nontoxic%3:00:00:: 02450640 1 0 -nontoxic%5:00:00:edible:00 00829146 2 0 -nontraditional%3:00:00:: 00611938 1 0 -nontransferable%5:00:00:inalienable:00 00094324 1 0 -nontranslational%3:01:00:: 03092376 1 0 -nontransmissible%5:00:00:noninfectious:00 01303636 2 0 -nontransmissible%5:00:00:noninheritable:00 01316019 1 0 -nontricyclic%1:06:00:: 03829085 1 0 -nontricyclic_antidepressant%1:06:00:: 03829085 1 0 -nontricyclic_antidepressant_drug%1:06:00:: 03829085 1 0 -nontricyclic_drug%1:06:00:: 03829085 1 0 -nonturbulent%5:00:00:unagitated:02 00088792 1 0 -nonuniform%5:00:00:heterogeneous:00 01199663 1 0 -nonuniformity%1:07:00:: 04750940 1 0 -nonunion%3:00:00:: 02474674 1 0 -nonunionised%5:00:00:nonunion:00 02475001 1 0 -nonunionized%5:00:00:nonunion:00 02475001 1 0 -nonuple%5:00:00:multiple:00 02220099 1 0 -nonvascular_organism%1:20:00:: 13084479 1 0 -nonvascular_plant%1:20:00:: 11537327 1 0 -nonvenomous%5:00:00:nontoxic:00 02451014 1 0 -nonverbal%5:00:00:communicative:00 00499062 3 0 -nonverbal%5:00:01:communicative:00 00497964 1 3 -nonverbal%5:00:02:communicative:00 00499183 2 0 -nonverbal_intelligence%1:09:00:: 05619059 1 0 -nonverbally%4:02:00:: 00128763 1 0 -nonviable%5:00:00:dead:01 00098043 1 0 -nonviolence%1:04:00:: 01242716 1 0 -nonviolent%3:00:00:: 02512922 1 0 -nonviolent%5:00:00:bloodless:00 00249576 2 0 -nonviolent_resistance%1:04:00:: 01242716 1 0 -nonviolently%4:02:00:: 00223979 1 0 -nonviscid%5:00:00:nonadhesive:00 00055041 1 0 -nonvisual%5:00:00:invisible:00 02518370 1 0 -nonvolatile%3:00:00:: 02520077 1 1 -nonvolatile_storage%1:06:00:: 03829340 1 0 -nonvolatilisable%3:00:00:: 02520077 1 0 -nonvolatilizable%3:00:00:: 02520077 1 0 -nonvoluntary%3:00:00:: 02521353 1 0 -nonwashable%3:00:00:: 02534245 1 0 -nonwoody%3:00:00:: 02576657 1 0 -nonworker%1:18:00:: 09626031 1 0 -noodle%1:08:00:: 05539454 2 0 -noodle%1:13:00:: 07699584 1 0 -nook%1:06:00:: 03109881 2 0 -nook%1:15:00:: 08643648 1 0 -nook_and_cranny%1:09:00:: 05820023 1 0 -nookie%1:04:00:: 00846021 1 0 -nooks_and_crannies%1:09:00:: 05820023 1 1 -nooky%1:04:00:: 00846021 1 0 -noon%1:28:00:: 15165490 1 8 -noonan's_syndrome%1:26:00:: 14308012 1 0 -noonday%1:28:00:: 15165490 1 0 -noontide%1:28:00:: 15165490 1 0 -noose%1:06:00:: 04248851 1 0 -noose%1:06:01:: 03829563 2 0 -noose%2:35:00:: 01342124 2 0 -noose%2:36:00:: 01673630 1 0 -nootka%1:10:00:: 06914709 2 0 -nootka%1:18:00:: 09662951 1 0 -nootka_cypress%1:20:00:: 11635830 1 0 -nopal%1:20:01:: 11851258 2 0 -nopal%1:20:02:: 11852028 1 0 -nopalea%1:20:00:: 11851101 1 0 -nor'-east%1:24:00:: 13831843 1 0 -nor'-east%4:02:00:: 00411661 1 0 -nor'-nor'-east%1:24:00:: 13831572 1 0 -nor'-nor'-east%4:02:00:: 00411849 1 0 -nor'-nor'-west%1:24:00:: 13835163 1 0 -nor'-nor'-west%4:02:00:: 00411947 1 0 -nor'-west%1:24:00:: 13834885 1 0 -nor'-west%4:02:00:: 00411755 1 0 -nor-q-d%1:06:00:: 03830448 1 0 -noradrenaline%1:08:00:: 05407890 1 1 -norbert_wiener%1:18:00:: 11385611 1 0 -nord-pas-de-calais%1:15:00:: 08943810 1 0 -nordic%1:10:00:: 06953731 1 0 -nordic%3:01:00:: 03092527 2 0 -nordic%3:01:01:: 03092661 1 0 -nordic%5:00:00:blond:00 00244324 3 0 -noreaster%1:19:00:: 11462951 1 0 -noreg%1:15:00:: 08764107 1 0 -norepinephrine%1:08:00:: 05407890 1 0 -norethandrolone%1:27:00:: 14746417 1 1 -norethindrone%1:27:00:: 14746417 1 0 -norethindrone_acetate%1:27:00:: 14746417 1 0 -norethynodrel%1:27:00:: 14746793 1 0 -norflex%1:06:00:: 03856148 1 0 -norfolk%1:15:00:: 09150863 1 0 -norfolk_island%1:15:00:: 08835188 1 0 -norfolk_island_pine%1:20:00:: 11646344 1 0 -norfolk_jacket%1:06:00:: 03829857 1 0 -norfolk_terrier%1:05:00:: 02094114 1 0 -norfolk_wherry%1:06:00:: 04577293 1 0 -norge%1:15:00:: 08764107 1 0 -norgestrel%1:27:00:: 14747007 1 0 -noria%1:06:00:: 03829954 1 0 -norinyl%1:06:00:: 03830111 1 0 -norlestrin%1:06:00:: 03830278 1 0 -norlutin%1:27:00:: 14746417 1 0 -norm%1:09:00:: 06021761 2 3 -norm%1:24:00:: 13854488 1 9 -norma%1:17:00:: 09372176 1 0 -norma_jean_baker%1:18:00:: 11186207 1 0 -normal%1:09:00:: 05667613 1 0 -normal%3:00:01:: 01593649 1 77 -normal%3:00:02:: 01599445 2 1 -normal%3:00:03:: 01598319 3 0 -normal%5:00:00:perpendicular:00 01720549 4 0 -normal_curve%1:09:00:: 06026088 1 0 -normal_distribution%1:09:00:: 06025689 1 1 -normal_dwarf%1:18:00:: 10472447 1 0 -normal_fault%1:17:00:: 09372313 1 0 -normal_school%1:14:00:: 08412620 1 0 -normal_tension_glaucoma%1:26:00:: 14255848 1 0 -normalcy%1:07:00:: 04795413 2 0 -normalcy%1:26:00:: 14500908 1 0 -normalisation%1:04:00:: 01158690 1 0 -normalise%2:30:01:: 00468236 2 0 -normalise%2:30:03:: 00468583 1 0 -normaliser%1:18:00:: 10362428 1 0 -normality%1:07:00:: 04795413 3 0 -normality%1:07:01:: 04714058 4 0 -normality%1:23:00:: 13580909 2 0 -normality%1:26:00:: 14500908 1 0 -normalization%1:04:00:: 01158690 1 0 -normalize%2:30:01:: 00468236 2 0 -normalize%2:30:03:: 00303056 3 0 -normalize%2:30:06:: 00468583 1 0 -normalizer%1:18:00:: 10362428 1 0 -normally%4:02:00:: 00106921 1 20 -norman%1:18:00:: 09713260 3 0 -norman%1:18:01:: 11209306 2 0 -norman%1:18:02:: 11209428 1 0 -norman%3:01:00:: 03092824 2 0 -norman%3:01:01:: 03092958 1 0 -norman-french%1:10:00:: 06965698 1 0 -norman_architecture%1:09:00:: 05843042 1 0 -norman_conquest%1:04:00:: 01306736 1 0 -norman_french%1:10:00:: 06965698 1 0 -norman_jewison%1:18:00:: 11084409 1 0 -norman_mailer%1:18:00:: 11149762 1 0 -norman_mattoon_thomas%1:18:00:: 11339361 1 0 -norman_rockwell%1:18:00:: 11267568 1 0 -norman_thomas%1:18:00:: 11339361 1 0 -normandie%1:15:00:: 08944561 1 0 -normandy%1:15:00:: 08944561 1 0 -normative%3:00:00:: 00732456 2 0 -normative%3:01:00:: 02996239 1 0 -normodyne%1:06:00:: 03630544 1 0 -normotensive%3:00:00:: 01599340 1 0 -normothermia%1:26:00:: 14044372 1 0 -norn%1:18:00:: 09582343 1 0 -norris%1:18:00:: 11209543 1 0 -norrish%1:18:00:: 11209675 1 0 -norse%1:10:00:: 06953731 3 0 -norse%1:18:00:: 09725402 2 0 -norse%1:18:02:: 09730204 1 0 -norse%3:01:00:: 02959912 2 0 -norse%3:01:01:: 02960130 1 0 -norse_deity%1:18:00:: 09578465 1 0 -norse_mythology%1:14:00:: 07983856 1 0 -norseman%1:18:00:: 09725402 1 0 -north%1:15:00:: 08561081 4 2 -north%1:15:01:: 09052314 2 3 -north%1:15:02:: 09052652 1 20 -north%1:18:00:: 11209790 7 0 -north%1:24:00:: 13831176 3 2 -north%1:24:01:: 13831441 6 0 -north%1:24:02:: 13835427 5 0 -north%3:00:00:: 01600333 1 7 -north%4:02:00:: 00244043 1 11 -north-central%5:00:00:north:00 01600888 2 0 -north-central%5:00:00:northern:01 01604566 1 0 -north-east%4:02:00:: 00411661 1 0 -north-northeast%4:02:00:: 00411849 1 0 -north-northwest%4:02:00:: 00411947 1 0 -north-polar%5:00:00:polar:00 02444475 1 0 -north-seeking_pole%1:06:00:: 03987674 1 0 -north-south_direction%1:15:00:: 08681534 1 0 -north-west%4:02:00:: 00411755 1 0 -north_africa%1:15:00:: 09178141 1 0 -north_african%3:01:00:: 02996373 1 0 -north_america%1:14:00:: 08173030 2 0 -north_america%1:17:00:: 09372504 1 4 -north_american%1:18:00:: 09725229 1 0 -north_american%3:01:00:: 02928566 1 0 -north_american_country%1:15:00:: 08702805 1 0 -north_american_free_trade_agreement%1:04:00:: 01092769 1 0 -north_american_nation%1:15:00:: 08702805 1 0 -north_atlantic%1:17:00:: 09373016 1 0 -north_atlantic_council%1:14:00:: 08310722 1 0 -north_atlantic_treaty%1:10:00:: 06775086 1 0 -north_atlantic_treaty_organization%1:14:00:: 08174398 1 0 -north_borneo%1:15:00:: 08964288 1 0 -north_by_east%1:24:00:: 13831310 1 0 -north_by_west%1:24:00:: 13835308 1 0 -north_carolina%1:15:00:: 09126305 1 3 -north_carolina%1:15:01:: 09126895 2 0 -north_carolinian%1:18:00:: 09744834 1 0 -north_cascades_national_park%1:15:00:: 08607957 1 0 -north_celestial_pole%1:15:00:: 08611532 1 0 -north_channel%1:17:00:: 09373175 1 0 -north_dakota%1:15:00:: 09129442 1 0 -north_dakotan%1:18:00:: 09744945 1 0 -north_dravidian%1:10:00:: 06982221 1 0 -north_equatorial_current%1:19:00:: 11489230 1 0 -north_frigid_zone%1:15:00:: 08496477 1 0 -north_germanic%1:10:00:: 06953731 1 0 -north_germanic_language%1:10:00:: 06953731 1 0 -north_island%1:15:00:: 08972148 1 0 -north_island_edelweiss%1:20:00:: 11990920 1 0 -north_korea%1:15:00:: 08955082 1 0 -north_korean%1:18:00:: 09719105 1 2 -north_korean%3:01:00:: 02967990 1 2 -north_korean_monetary_unit%1:23:00:: 13708855 1 0 -north_korean_won%1:23:00:: 13708992 1 0 -north_northeast%1:24:00:: 13831572 1 0 -north_northwest%1:24:00:: 13835163 1 0 -north_pacific%1:17:00:: 09373485 1 0 -north_peak%1:17:00:: 09373623 1 0 -north_platte%1:15:00:: 09110099 2 0 -north_platte%1:17:00:: 09373716 1 0 -north_platte_river%1:17:00:: 09373716 1 0 -north_pole%1:15:00:: 08611836 1 2 -north_sea%1:17:00:: 09374036 1 0 -north_side%1:15:00:: 08650305 1 0 -north_star%1:17:00:: 09396712 1 0 -north_star_state%1:15:00:: 09102016 1 0 -north_temperate_zone%1:15:00:: 08662155 1 0 -north_vietnam%1:15:00:: 09163584 1 0 -north_vietnamese%3:01:00:: 02769692 1 0 -north_wind%1:19:00:: 11487950 1 0 -north_yorkshire%1:15:00:: 08885380 1 0 -northampton%1:15:00:: 08885921 1 0 -northamptonshire%1:15:00:: 08885773 1 0 -northbound%5:00:00:north:00 01600713 1 0 -northeast%1:15:00:: 08563990 2 1 -northeast%1:15:01:: 08561230 4 0 -northeast%1:24:00:: 13831843 1 1 -northeast%1:24:02:: 13835546 3 0 -northeast%4:02:00:: 00411661 1 0 -northeast%5:00:01:north:00 01601592 1 1 -northeast%5:00:02:north:00 01601763 2 0 -northeast_by_east%1:24:00:: 13831994 1 0 -northeast_by_north%1:24:00:: 13831717 1 0 -northeaster%1:19:00:: 11462951 1 0 -northeasterly%5:00:01:north:00 01601592 2 0 -northeasterly%5:00:02:north:00 01601763 1 0 -northeastern%5:00:00:eastern:02 00827556 2 0 -northeastern%5:00:00:north:00 01601592 1 0 -northeastern_united_states%1:15:00:: 08563990 1 0 -northeastward%1:24:00:: 13831843 1 0 -northeastward%4:02:00:: 00511917 1 0 -northeastward%5:00:00:north:00 01601901 1 0 -northeastwardly%4:02:00:: 00511917 1 0 -norther%1:19:00:: 11487950 1 0 -northerly%1:19:00:: 11487950 1 0 -northerly%4:02:00:: 00244043 1 0 -northerly%5:00:01:north:00 01601069 2 0 -northerly%5:00:02:north:00 01601297 1 1 -northern%1:10:00:: 06949207 1 0 -northern%3:00:01:: 01604226 4 0 -northern%3:00:02:: 01605753 1 15 -northern%5:00:01:north:00 01601069 3 1 -northern%5:00:02:north:00 01601297 2 6 -northern_alliance%1:14:00:: 08476425 1 0 -northern_baptist%1:18:00:: 10362557 1 0 -northern_baptist_convention%1:14:00:: 08089797 1 0 -northern_barramundi%1:05:00:: 02545387 1 0 -northern_bedstraw%1:20:00:: 12665659 1 0 -northern_beech_fern%1:20:00:: 13231078 1 0 -northern_bobwhite%1:05:00:: 01804653 1 0 -northern_bog_lemming%1:05:00:: 02346170 1 0 -northern_casque-headed_frog%1:05:00:: 01652297 1 0 -northern_cricket_frog%1:05:00:: 01651641 1 0 -northern_cross%1:17:00:: 09373333 1 0 -northern_dewberry%1:20:00:: 12655351 1 0 -northern_dune_tansy%1:20:00:: 12022821 1 0 -northern_europe%1:15:00:: 08760393 1 0 -northern_flying_squirrel%1:05:00:: 02361090 1 0 -northern_harrier%1:05:00:: 01610226 1 0 -northern_hemisphere%1:15:00:: 08611662 1 0 -northern_holly_fern%1:20:00:: 13200411 1 0 -northern_ireland%1:15:00:: 08887841 1 0 -northern_jacob's_ladder%1:20:00:: 12810007 1 0 -northern_lights%1:19:00:: 11427619 1 0 -northern_lobster%1:05:00:: 01983481 2 0 -northern_lobster%1:13:00:: 07792926 1 0 -northern_mammoth%1:05:00:: 02505063 1 0 -northern_mariana_islands%1:15:00:: 08837864 1 0 -northern_marianas%1:15:00:: 08837864 1 0 -northern_oak_fern%1:20:00:: 13197507 1 0 -northern_oriole%1:05:00:: 01572328 1 0 -northern_parula%1:05:00:: 01567678 1 0 -northern_phalarope%1:05:00:: 02038141 1 0 -northern_pike%1:05:00:: 02561381 1 0 -northern_pin_oak%1:20:00:: 12271451 1 0 -northern_pitch_pine%1:20:00:: 11611356 1 0 -northern_pocket_gopher%1:05:00:: 02354781 1 0 -northern_porgy%1:05:00:: 02593453 1 0 -northern_red_oak%1:20:00:: 12277800 1 0 -northern_rhodesia%1:15:00:: 09165613 1 0 -northern_scup%1:05:00:: 02593453 1 0 -northern_sea_robin%1:05:00:: 02651060 1 0 -northern_shrike%1:05:00:: 01599269 1 0 -northern_snakehead%1:05:00:: 02514320 1 0 -northern_snow_bedstraw%1:20:00:: 12665659 1 0 -northern_spy%1:13:00:: 07741235 1 0 -northern_storm_petrel%1:05:00:: 02061217 1 0 -northern_territory%1:15:00:: 08834916 1 0 -northern_white_cedar%1:20:00:: 11644226 1 0 -northern_whiting%1:05:00:: 02597972 1 0 -northern_woodsia%1:20:00:: 13202355 1 0 -northerner%1:18:00:: 10362682 1 3 -northerner%1:18:01:: 10802283 2 1 -northernmost%5:00:00:north:00 01601462 1 0 -northernness%1:07:00:: 05079180 1 0 -northland%1:15:00:: 08562990 1 1 -northman%1:18:00:: 09730204 1 0 -northmost%5:00:00:north:00 01601462 1 0 -northrop%1:18:00:: 11209990 1 0 -northrop_frye%1:18:00:: 10984418 1 0 -northumberland%1:15:00:: 08884328 1 0 -northumbria%1:15:00:: 08886147 1 0 -northward%1:24:00:: 13831176 1 0 -northward%4:02:00:: 00244043 1 3 -northward%5:00:00:north:00 01600713 1 0 -northwards%4:02:00:: 00244043 1 0 -northwest%1:15:00:: 08564139 1 1 -northwest%1:15:01:: 08561946 4 0 -northwest%1:24:00:: 13834885 3 0 -northwest%1:24:02:: 13836253 2 0 -northwest%4:02:00:: 00411755 1 1 -northwest%5:00:01:north:00 01601981 1 1 -northwest%5:00:02:north:00 01602112 2 0 -northwest_by_north%1:24:00:: 13835037 1 0 -northwest_by_west%1:24:00:: 13834761 1 0 -northwest_passage%1:15:00:: 08680571 1 0 -northwest_territories%1:15:00:: 08825477 1 0 -northwest_wind%1:19:00:: 11448475 1 0 -northwester%1:19:00:: 11448475 1 0 -northwesterly%5:00:01:north:00 01601981 2 0 -northwesterly%5:00:02:north:00 01602112 1 0 -northwestern%5:00:00:north:00 01601981 1 0 -northwestern%5:00:00:western:02 00826658 2 0 -northwestern_united_states%1:15:00:: 08564139 1 0 -northwestward%1:24:00:: 13834885 1 0 -northwestward%4:02:00:: 00512086 1 0 -northwestward%5:00:00:north:00 01602250 1 0 -northwestwardly%4:02:00:: 00512086 1 0 -nortriptyline%1:06:00:: 03830582 1 0 -noruz%1:28:00:: 15223916 1 0 -norvasc%1:06:00:: 02702809 1 0 -norvir%1:06:00:: 04094983 1 0 -norway%1:15:00:: 08764107 1 1 -norway_lobster%1:05:00:: 01984245 1 0 -norway_maple%1:20:00:: 12754781 1 0 -norway_rat%1:05:00:: 02333546 1 0 -norway_spruce%1:20:00:: 11625003 1 0 -norwegian%1:10:00:: 06954303 2 0 -norwegian%1:18:00:: 09725402 1 0 -norwegian%3:01:00:: 02959912 1 0 -norwegian_elkhound%1:05:00:: 02091467 1 0 -norwegian_krone%1:23:00:: 13682971 1 0 -norwegian_lobster%1:13:00:: 07793521 1 0 -norwegian_monetary_unit%1:23:00:: 13682860 1 0 -norwegian_sea%1:17:00:: 09374306 1 0 -norwich_terrier%1:05:00:: 02094258 1 0 -nose%1:06:00:: 03830835 2 3 -nose%1:06:01:: 03833564 8 0 -nose%1:06:02:: 03831062 3 1 -nose%1:08:00:: 05598147 1 28 -nose%1:09:00:: 05658826 6 0 -nose%1:09:01:: 05637106 7 0 -nose%1:10:00:: 06807056 5 0 -nose%1:23:00:: 13762458 4 0 -nose%2:33:00:: 01109644 6 0 -nose%2:35:00:: 01424350 5 0 -nose%2:38:00:: 01873051 4 0 -nose%2:38:02:: 01994128 2 1 -nose%2:39:00:: 02169119 1 1 -nose%2:39:01:: 02125223 3 0 -nose_candy%1:06:00:: 03066743 1 0 -nose_cone%1:06:00:: 03831537 1 0 -nose_count%1:04:00:: 00653388 1 0 -nose_dive%1:04:00:: 00326677 1 0 -nose_drops%1:06:00:: 02837416 1 0 -nose_flute%1:06:00:: 03831757 1 0 -nose_job%1:04:00:: 00689062 1 0 -nose_out%2:39:00:: 02125460 1 0 -nose_ring%1:06:00:: 03832008 1 0 -nosebag%1:06:00:: 03831203 1 0 -noseband%1:06:00:: 03831382 1 0 -nosebleed%1:26:00:: 14370992 1 0 -nosecount%1:04:00:: 00653388 1 0 -nosed%3:00:00:: 01607293 1 1 -nosedive%1:04:00:: 00326677 2 0 -nosedive%1:22:00:: 13523088 1 0 -nosedive%2:38:00:: 01967634 1 0 -nosegay%1:06:00:: 02879087 1 0 -noseless%3:00:00:: 01607909 1 0 -nosepiece%1:06:00:: 02899439 3 0 -nosepiece%1:06:01:: 03831899 1 0 -nosepiece%1:06:02:: 03831382 2 0 -nosewheel%1:06:00:: 03832144 1 0 -nosey%5:00:00:curious:00 00665156 1 0 -nosey-parker%1:18:00:: 09883807 1 0 -nosh%1:13:00:: 07577538 1 0 -nosh%2:34:00:: 01173405 1 0 -nosh-up%1:13:00:: 07577657 1 0 -nosher%1:18:00:: 10362765 1 0 -nosiness%1:09:00:: 05683390 1 0 -nosocomial%3:01:00:: 02769811 1 0 -nosohusial%3:01:00:: 03147163 1 0 -nosology%1:09:00:: 06053280 1 0 -nostalgia%1:12:00:: 07487375 1 2 -nostalgic%5:00:00:desirous:00 00889098 1 0 -nostalgically%4:02:00:: 00410720 1 0 -nostoc%1:05:00:: 01359365 1 0 -nostocaceae%1:05:00:: 01359070 1 0 -nostradamus%1:18:00:: 11210105 1 0 -nostril%1:08:00:: 05600109 1 0 -nostrum%1:06:00:: 03832305 2 0 -nostrum%1:06:01:: 03880770 1 0 -nosy%5:00:00:curious:00 00665156 1 0 -nosy-parker%1:18:00:: 09883807 1 0 -not%4:02:00:: 00024073 1 1837 -not-for-profit%1:04:00:: 01137597 1 0 -not_bad%5:00:00:good:01 01123879 1 0 -not_by_a_blame_sight%4:02:00:: 00057042 1 1 -not_by_a_long_sight%4:02:00:: 00057042 1 0 -not_guilty%5:00:00:innocent:00 01320474 1 0 -not_intrusive%3:00:00:: 01352895 1 0 -not_surprised%3:00:00:: 02359308 1 0 -not_to_mention%4:02:00:: 00063369 1 2 -nota_bene%1:10:00:: 06764380 1 0 -notability%1:18:00:: 10276238 1 0 -notable%1:18:00:: 10276238 1 1 -notable%5:00:00:known:00 01375831 2 1 -notable%5:00:00:worthy:00 02586957 1 5 -notably%4:02:00:: 00139266 1 5 -notarise%2:32:00:: 00822101 1 0 -notarize%2:32:00:: 00822101 1 1 -notary%1:18:00:: 10363149 1 0 -notary_public%1:18:00:: 10363149 1 0 -notate%2:32:00:: 00995286 1 0 -notation%1:04:00:: 00615182 3 0 -notation%1:10:00:: 06808493 1 2 -notation%1:10:01:: 06763273 2 0 -notational_system%1:10:00:: 06808493 1 0 -notch%1:04:00:: 00387897 4 0 -notch%1:06:00:: 03832405 3 0 -notch%1:17:00:: 09386842 2 0 -notch%1:25:00:: 13905275 1 1 -notch%2:32:00:: 01004550 2 0 -notch%2:35:00:: 01276970 1 3 -notched%5:00:01:rough:02 02246903 2 0 -notched%5:00:02:rough:02 02247785 1 0 -note%1:07:00:: 04727694 5 2 -note%1:10:00:: 06504462 1 14 -note%1:10:02:: 06763273 7 1 -note%1:10:03:: 06626286 2 13 -note%1:10:04:: 06865345 3 4 -note%1:10:05:: 07082819 4 3 -note%1:21:00:: 13398469 9 0 -note%1:21:01:: 13393762 6 1 -note%1:26:00:: 14435445 8 0 -note%2:32:00:: 01020005 1 41 -note%2:32:01:: 01020934 4 3 -note%2:39:00:: 02118476 2 36 -note%2:39:02:: 02118933 3 29 -note_of_hand%1:21:00:: 13398469 1 0 -note_payable%1:21:00:: 13407718 1 0 -note_receivable%1:21:00:: 13407389 1 0 -note_value%1:28:00:: 15134913 1 0 -notebook%1:06:00:: 03832673 2 0 -notebook%1:10:00:: 06415419 1 2 -notebook_computer%1:06:00:: 03832673 1 0 -notebook_entry%1:10:00:: 06505434 1 0 -notecase%1:06:00:: 04548362 1 0 -notechis%1:05:00:: 01750315 1 0 -notechis_scutatus%1:05:00:: 01750437 1 0 -noted%5:00:00:known:00 01375831 1 3 -noted%5:00:00:noticeable:00 01287972 2 0 -notemigonus%1:05:00:: 01442055 1 0 -notemigonus_crysoleucas%1:05:00:: 01442166 1 0 -notepad%1:27:00:: 15021085 1 0 -notepaper%1:10:00:: 06259166 1 0 -noteworthy%5:00:00:significant:00 02163602 2 0 -noteworthy%5:00:00:worthy:00 02586957 1 3 -nothing%1:23:00:: 13740168 1 141 -nothing%4:02:00:: 00024257 1 0 -nothingness%1:10:00:: 07136711 2 0 -nothingness%1:26:00:: 14455700 1 0 -nothings%1:10:00:: 07137315 1 0 -nothofagus%1:20:00:: 12265900 1 0 -nothofagus_cuninghamii%1:20:00:: 12266528 1 0 -nothofagus_dombeyi%1:20:00:: 12266644 1 0 -nothofagus_menziesii%1:20:00:: 12266984 1 0 -nothofagus_obliqua%1:20:00:: 12267133 1 0 -nothofagus_procera%1:20:00:: 12267265 1 0 -nothofagus_solanderi%1:20:00:: 12267411 1 0 -nothofagus_truncata%1:20:00:: 12267534 1 0 -nothosaur%1:05:00:: 01726203 1 0 -nothosauria%1:05:00:: 01725933 1 0 -notice%1:09:00:: 05703429 2 3 -notice%1:09:01:: 05703803 6 1 -notice%1:10:00:: 06793426 5 1 -notice%1:10:01:: 06747670 1 8 -notice%1:10:02:: 07185668 3 2 -notice%1:10:03:: 07212612 4 1 -notice%1:10:04:: 06410776 7 0 -notice%2:32:00:: 01058574 3 1 -notice%2:32:01:: 01059123 4 0 -notice%2:39:00:: 02118476 2 19 -notice%2:39:04:: 02154508 1 39 -notice_board%1:06:00:: 02916538 1 0 -noticeability%1:07:00:: 04706290 1 0 -noticeable%3:00:00:: 01286799 1 2 -noticeable%3:00:04:: 01614778 3 0 -noticeable%5:00:00:perceptible:00 01746995 2 1 -noticeable%5:00:00:strong:00 02323204 4 0 -noticeableness%1:07:00:: 04706290 1 0 -noticeably%4:02:00:: 00365668 1 1 -noticed%3:00:00:: 01607978 1 0 -noticer%1:18:00:: 10363360 2 0 -noticer%1:18:01:: 10363445 1 0 -notifiable%5:00:00:reported:00 00471698 1 0 -notification%1:04:02:: 01187463 1 1 -notification%1:10:00:: 07212424 2 0 -notification%1:10:01:: 07185668 3 0 -notify%2:32:00:: 00873682 1 10 -notion%1:06:00:: 03832799 4 0 -notion%1:09:00:: 05836598 2 14 -notion%1:09:01:: 05919549 3 2 -notion%1:09:02:: 05916739 1 14 -notional%5:00:00:abstract:00 00012071 4 0 -notional%5:00:00:creative:00 00643598 3 0 -notional%5:00:00:theoretical:00 00861818 2 0 -notional%5:00:00:unreal:00 01936528 1 0 -notions_counter%1:06:00:: 03832973 1 0 -notochord%1:05:00:: 01466472 1 0 -notomys%1:05:00:: 02334609 1 0 -notonecta%1:05:00:: 02240852 1 0 -notonecta_undulata%1:05:00:: 02241008 1 0 -notonectidae%1:05:00:: 02240706 1 0 -notophthalmus%1:05:00:: 01630795 1 0 -notophthalmus_viridescens%1:05:00:: 01630901 1 0 -notoriety%1:26:00:: 14439149 1 0 -notorious%5:00:00:disreputable:00 01984411 1 5 -notoriously%4:02:00:: 00410881 1 1 -notornis%1:05:00:: 02017725 1 0 -notornis_mantelli%1:05:00:: 02017725 1 0 -notoryctidae%1:05:00:: 01885724 1 0 -notoryctus%1:05:00:: 01885856 1 0 -notoryctus_typhlops%1:05:00:: 01886045 1 0 -notostraca%1:05:00:: 01995803 1 0 -notropis%1:05:00:: 01441625 1 0 -notropis_atherinoides%1:05:00:: 01441742 1 0 -notropis_cornutus%1:05:00:: 01441910 1 0 -notturno%1:10:00:: 07047679 1 0 -notwithstanding%4:02:00:: 00027384 1 1 -nouakchott%1:15:00:: 08967176 1 0 -nougat%1:13:00:: 07608339 1 0 -nougat_bar%1:13:00:: 07608429 1 0 -nought%1:23:00:: 13742358 1 0 -noughts_and_crosses%1:04:00:: 00506207 1 0 -noumenon%1:09:00:: 05813457 1 0 -noun%1:10:00:: 06319293 1 1 -noun%1:10:01:: 06317862 2 1 -noun_phrase%1:10:00:: 06316480 1 0 -nourish%2:34:00:: 01202728 1 4 -nourish%2:34:01:: 01204191 2 1 -nourished%3:00:00:: 02300227 1 1 -nourishing%5:00:01:wholesome:00 02557719 1 0 -nourishment%1:04:00:: 00664849 2 0 -nourishment%1:13:00:: 07570720 1 1 -nous%1:09:00:: 05611302 2 0 -nous%1:09:02:: 05615147 1 0 -nouveau-riche%1:18:00:: 10740868 1 0 -nouveau-riche%5:00:00:pretentious:00 01850862 1 0 -nouvelle_cuisine%1:13:00:: 07571903 1 0 -nouvelle_vague%1:14:00:: 08469917 1 0 -nov%1:28:00:: 15213406 1 9 -nov-esperanto%1:10:00:: 06897205 1 0 -nov-latin%1:10:00:: 06897381 1 0 -nova%1:17:00:: 09374493 1 0 -nova_lisboa%1:15:00:: 08708481 1 0 -nova_lox%1:13:00:: 07796970 1 0 -nova_salmon%1:13:00:: 07796970 1 0 -nova_scotia%1:15:00:: 08826306 2 0 -nova_scotia%1:15:01:: 08826841 1 0 -nova_scotia_lox%1:13:00:: 07796970 1 0 -nova_scotia_salmon%1:13:00:: 07796970 1 0 -nova_scotian%1:18:00:: 09725546 1 0 -nova_style_salmon%1:13:00:: 07796970 1 0 -nova_zembla%1:15:00:: 09010785 1 0 -novate%2:30:00:: 00577330 1 0 -novation%1:04:00:: 00196848 1 0 -novaya_zemlya%1:15:00:: 09010785 1 0 -novel%1:06:00:: 03833065 2 0 -novel%1:10:00:: 06367879 1 17 -novel%5:00:00:new:00 01642245 2 0 -novel%5:00:00:original:00 01687167 1 6 -novelette%1:10:00:: 06368962 1 0 -novelisation%1:04:00:: 00931453 1 0 -novelise%2:30:00:: 00116619 1 0 -novelist%1:18:00:: 10363573 1 6 -novelization%1:04:00:: 00931453 1 0 -novelize%2:30:00:: 00116619 1 0 -novella%1:10:00:: 06368962 1 0 -novelty%1:06:00:: 02787435 4 0 -novelty%1:06:01:: 03623448 3 0 -novelty%1:07:00:: 04800596 1 3 -novelty%1:09:00:: 05635055 2 1 -novelty_shop%1:06:00:: 03436417 1 0 -november%1:28:00:: 15213406 1 22 -november_1%1:28:00:: 15195059 1 0 -november_11%1:28:00:: 15200896 1 0 -november_2%1:28:00:: 15195477 1 1 -november_5%1:28:00:: 15158816 1 0 -novena%1:04:00:: 01043189 1 0 -novgorod%1:15:00:: 09009174 1 0 -novial%1:10:00:: 06897306 1 0 -novice%1:18:00:: 10363913 2 0 -novice%1:18:01:: 10364198 1 0 -noviciate%1:28:00:: 15294884 1 0 -novillada%1:06:00:: 03833294 1 0 -novillero%1:18:00:: 09836658 1 0 -novitiate%1:18:00:: 10364198 2 0 -novitiate%1:28:00:: 15294884 1 1 -novobiocin%1:06:00:: 03833409 1 0 -novocain%1:06:00:: 04006953 1 0 -novocaine%1:06:00:: 04006953 1 0 -novosibirsk%1:15:00:: 09010300 1 0 -now%1:28:00:: 15119919 1 10 -now%4:02:00:: 00048475 2 182 -now%4:02:01:: 00048739 5 9 -now%4:02:02:: 00049102 3 29 -now%4:02:04:: 00049220 4 15 -now%4:02:05:: 00049433 1 283 -now%4:02:06:: 00049685 7 0 -now%4:02:07:: 00049758 6 0 -now_and_again%4:02:00:: 00021212 1 1 -now_and_then%4:02:00:: 00021212 1 3 -now_now%4:02:00:: 00049889 1 0 -nowadays%1:28:00:: 15119536 1 0 -nowadays%4:02:00:: 00048475 1 0 -nowhere%1:26:00:: 14436667 1 1 -nowhere%4:02:00:: 00025464 1 11 -nowise%4:02:00:: 00411570 1 3 -nowness%1:07:00:: 05050115 1 0 -nowrooz%1:28:00:: 15223916 1 0 -nowruz%1:28:00:: 15223916 1 0 -nox%1:18:00:: 09559769 1 0 -noxious%3:00:00:: 01611067 1 0 -noxiously%4:02:00:: 00309875 1 0 -noxiousness%1:07:00:: 04790774 1 0 -noyes%1:18:00:: 11210291 1 0 -nozzle%1:06:00:: 03833564 1 2 -nozzle%1:08:00:: 05598707 2 0 -np%1:18:00:: 10367819 2 0 -np%1:27:00:: 14646403 1 0 -npa%1:14:00:: 08036293 1 0 -npc%1:14:00:: 08125722 1 0 -nra%1:14:00:: 08375722 1 0 -nrc%1:14:00:: 08122596 1 0 -nrem%1:26:00:: 14025478 1 0 -nrem_sleep%1:26:00:: 14025478 1 0 -nrl%1:06:00:: 03812541 1 0 -nrna%1:27:00:: 14833027 1 0 -nro%1:14:00:: 08347704 1 0 -nrti%1:06:00:: 03834836 1 0 -nsa%1:14:00:: 08348091 1 0 -nsaid%1:06:00:: 03828465 1 0 -nsc%1:14:00:: 08127760 1 0 -nsf%1:14:00:: 08126921 1 0 -nsu%1:26:00:: 14567571 1 0 -nsw%1:14:00:: 08193448 1 0 -nswc%1:14:00:: 08193645 1 0 -nt%1:14:00:: 08049125 1 0 -nth%5:00:00:ordinal:00 02213144 1 0 -ntis%1:14:00:: 08131254 1 0 -nu%1:10:00:: 06835420 1 0 -nuance%1:10:00:: 06606191 1 2 -nub%1:09:00:: 05921123 3 0 -nub%1:17:00:: 09374646 2 0 -nub%1:25:00:: 13895622 1 0 -nubbin%1:17:00:: 09374773 1 1 -nubbiness%1:07:00:: 04948722 1 0 -nubble%1:25:00:: 13895622 1 0 -nubbly%5:00:00:rough:00 02240795 1 0 -nubby%5:00:00:rough:00 02240795 1 0 -nubia%1:15:00:: 08504375 1 0 -nubian%1:18:00:: 10364333 1 0 -nubian_desert%1:15:00:: 09171674 1 0 -nubile%5:00:00:mature:01 01489325 1 1 -nucellus%1:20:00:: 11679250 1 0 -nucha%1:08:00:: 05547396 1 0 -nucifraga%1:05:00:: 01581607 1 0 -nucifraga_caryocatactes%1:05:00:: 01581874 1 0 -nucifraga_columbiana%1:05:00:: 01581984 1 0 -nuclear%3:00:00:: 00610532 1 12 -nuclear%3:01:01:: 02862444 2 5 -nuclear%3:01:02:: 02862629 3 1 -nuclear%5:00:00:central:01 00331259 4 1 -nuclear-powered_ship%1:06:00:: 03833907 1 0 -nuclear-powered_submarine%1:06:00:: 03811295 1 0 -nuclear_cataract%1:26:00:: 14256117 1 0 -nuclear_chemist%1:18:00:: 10364502 1 0 -nuclear_chemistry%1:09:00:: 06090540 1 0 -nuclear_club%1:14:00:: 07960569 1 0 -nuclear_deterrence%1:04:00:: 01076863 1 0 -nuclear_energy%1:19:00:: 11425989 1 0 -nuclear_engineering%1:09:00:: 06135335 1 0 -nuclear_explosion%1:11:00:: 07408386 1 0 -nuclear_family%1:14:00:: 07973487 1 0 -nuclear_fission%1:22:00:: 13481224 1 0 -nuclear_fuel%1:27:00:: 14688089 1 0 -nuclear_fusion%1:22:00:: 13485525 1 0 -nuclear_fusion_reaction%1:22:00:: 13485525 1 0 -nuclear_magnetic_resonance%1:19:00:: 11478898 1 0 -nuclear_medicine%1:09:00:: 06052685 1 0 -nuclear_meltdown%1:22:00:: 13513362 1 0 -nuclear_physicist%1:18:00:: 10364643 1 0 -nuclear_physics%1:09:00:: 06100555 1 0 -nuclear_power%1:19:00:: 11426125 1 0 -nuclear_propulsion%1:19:00:: 11488160 1 0 -nuclear_reaction%1:22:00:: 13523208 1 0 -nuclear_reactor%1:06:00:: 03834040 1 0 -nuclear_regulatory_commission%1:14:00:: 08122596 1 0 -nuclear_resonance%1:19:00:: 11478514 1 1 -nuclear_rna%1:27:00:: 14833027 1 0 -nuclear_rocket%1:06:00:: 03834472 1 0 -nuclear_submarine%1:06:00:: 03811295 1 0 -nuclear_terrorism%1:04:00:: 00764588 1 0 -nuclear_transplantation%1:04:00:: 00638770 1 0 -nuclear_warhead%1:06:00:: 02753881 1 0 -nuclear_weapon%1:06:00:: 03834604 1 0 -nuclear_winter%1:19:00:: 11434150 1 0 -nuclease%1:27:00:: 14963916 1 0 -nucleate%2:42:00:: 02626274 1 1 -nucleate%3:01:00:: 02862797 1 0 -nucleated%3:01:00:: 02862797 1 0 -nucleic_acid%1:27:00:: 14964129 1 1 -nucleolar_organiser%1:08:00:: 05435477 1 0 -nucleolar_organizer%1:08:00:: 05435477 1 0 -nucleole%1:08:00:: 05435277 1 0 -nucleolus%1:08:00:: 05435277 1 2 -nucleolus_organiser%1:08:00:: 05435477 1 0 -nucleolus_organizer%1:08:00:: 05435477 1 0 -nucleon%1:17:00:: 09374886 1 0 -nucleon_number%1:23:00:: 13715614 1 0 -nucleonics%1:09:00:: 06100555 1 0 -nucleoplasm%1:08:00:: 05434784 1 0 -nucleoprotein%1:27:00:: 14734905 1 0 -nucleoside%1:27:00:: 14964367 1 0 -nucleoside_reverse_transcriptase_inhibitor%1:06:00:: 03834836 1 0 -nucleosynthesis%1:22:00:: 13523503 1 0 -nucleotide%1:27:00:: 14964590 1 0 -nucleus%1:08:00:: 05434927 1 10 -nucleus%1:08:01:: 05501932 5 0 -nucleus%1:08:02:: 05320764 6 0 -nucleus%1:14:00:: 08242223 3 3 -nucleus%1:17:00:: 09375085 2 3 -nucleus%1:17:01:: 09375223 4 0 -nucleus_niger%1:08:00:: 05500006 1 0 -nuda%1:05:00:: 01919099 1 0 -nude%1:06:00:: 03835197 1 2 -nude%1:06:01:: 03835298 4 0 -nude%1:18:00:: 10365399 3 0 -nude%1:26:00:: 14456435 2 0 -nude%5:00:00:unclothed:00 00457998 1 2 -nude_dancing%1:04:00:: 00531201 1 0 -nude_mouse%1:05:00:: 02332954 1 0 -nude_painting%1:06:00:: 03835197 1 0 -nude_person%1:18:00:: 10365399 1 0 -nude_sculpture%1:06:00:: 03835298 1 0 -nude_statue%1:06:00:: 03835298 1 0 -nudeness%1:26:00:: 14456138 1 0 -nudge%1:04:00:: 00112997 1 0 -nudge%2:32:00:: 00766289 2 0 -nudge%2:35:00:: 01231252 1 3 -nudger%1:18:00:: 10365514 1 0 -nudibranch%1:05:00:: 01950731 1 0 -nudibranchia%1:05:00:: 01950457 1 0 -nudism%1:04:00:: 01031563 1 0 -nudist%1:18:00:: 10365701 1 0 -nudity%1:26:00:: 14456138 1 0 -nudnick%1:18:00:: 10365846 1 0 -nudnik%1:18:00:: 10365846 1 0 -nuffield%1:18:00:: 11210383 1 0 -nugatory%5:00:00:worthless:00 02503216 1 0 -nugget%1:17:00:: 09375481 1 0 -nuisance%1:09:00:: 05830527 1 3 -nuisance%1:18:00:: 10391513 2 0 -nuisance_abatement%1:04:00:: 00361459 1 0 -nuisance_tax%1:21:00:: 13316568 1 0 -nuisance_value%1:07:00:: 05162807 1 0 -nuke%1:06:00:: 02753881 1 0 -nuke%2:30:04:: 00321936 3 0 -nuke%2:33:00:: 01133288 1 0 -nuke%2:33:01:: 01132980 2 0 -null%1:23:00:: 13740168 1 0 -null%5:00:00:invalid:00 02500590 1 1 -null_set%1:14:00:: 08001344 1 0 -null_space%1:14:00:: 08004443 1 9 -nullah%1:17:00:: 09375606 1 0 -nullarbor_plain%1:15:00:: 08835390 1 0 -nullification%1:04:00:: 00231567 2 0 -nullification%1:09:00:: 06185748 1 0 -nullified%5:00:00:invalid:00 02500497 1 0 -nullifier%1:18:00:: 10365984 1 0 -nullifier%1:18:01:: 10214390 2 0 -nullify%2:30:00:: 00470084 3 0 -nullify%2:31:00:: 00667102 2 0 -nullify%2:41:00:: 02478059 1 0 -nullipara%1:18:00:: 10366145 1 0 -nullity%1:10:00:: 06532763 2 0 -nullity%1:26:00:: 14455700 1 0 -numb%2:39:00:: 02115273 1 0 -numb%5:00:00:afraid:00 00080698 3 0 -numb%5:00:00:insensible:00 02103333 1 3 -numb%5:00:00:insensitive:02 02107386 2 0 -numbat%1:05:00:: 01885498 1 0 -number%1:06:00:: 03835412 11 0 -number%1:07:00:: 05121418 1 131 -number%1:07:01:: 05096294 9 1 -number%1:10:00:: 06596978 6 2 -number%1:10:01:: 06807198 5 2 -number%1:10:02:: 06425065 8 1 -number%1:10:03:: 06426111 4 5 -number%1:10:04:: 06892016 3 5 -number%1:10:05:: 06326526 10 0 -number%1:14:00:: 08480512 7 1 -number%1:23:00:: 13582013 2 63 -number%2:30:00:: 00235918 6 0 -number%2:32:00:: 00948071 5 0 -number%2:32:01:: 00946755 3 1 -number%2:32:03:: 00948853 2 2 -number%2:42:00:: 02645007 1 6 -number%2:42:01:: 02731632 4 0 -number_1%1:23:00:: 13597444 1 0 -number_agreement%1:24:00:: 13797561 1 0 -number_cruncher%1:06:00:: 03835582 2 0 -number_cruncher%1:18:00:: 09887378 1 0 -number_crunching%1:04:00:: 00869467 1 0 -number_one%1:18:00:: 09605110 1 1 -number_one%1:23:00:: 13597444 3 0 -number_one%1:24:00:: 13846199 2 0 -number_one_wood%1:06:00:: 03244047 1 0 -number_representation_system%1:10:00:: 06809074 1 0 -number_system%1:10:00:: 06809074 1 0 -number_theorist%1:18:00:: 10366276 1 0 -numbering%1:10:00:: 06490887 1 2 -numberless%5:00:00:incalculable:00 00301951 1 0 -numberplate%1:06:00:: 03661180 1 0 -numbers%1:04:00:: 00508547 2 0 -numbers%1:10:00:: 06433249 1 0 -numbers_game%1:04:00:: 00508547 1 1 -numbers_pool%1:04:00:: 00508547 1 0 -numbers_racket%1:04:00:: 00508547 1 0 -numbfish%1:05:00:: 01496331 1 0 -numbing%5:00:00:desensitizing:00 02108547 1 3 -numbly%4:02:00:: 00411427 1 0 -numbness%1:07:00:: 04636610 2 0 -numbness%1:26:00:: 14322528 1 1 -numdah%1:06:00:: 03835729 1 0 -numdah_rug%1:06:00:: 03835729 1 0 -numen%1:18:00:: 10366484 1 0 -numenius%1:05:00:: 02033444 1 0 -numenius_arquata%1:05:00:: 02033779 1 0 -numenius_borealis%1:05:00:: 02033882 1 0 -numerable%5:00:00:calculable:00 00301589 1 0 -numeracy%1:09:00:: 05639431 1 0 -numeral%1:10:00:: 06807198 1 0 -numeral%3:01:00:: 02769933 1 0 -numerate%2:31:00:: 00626768 2 0 -numerate%2:32:00:: 00948071 1 0 -numerate%3:00:00:: 00832075 1 0 -numeration%1:04:00:: 00634586 2 0 -numeration%1:10:01:: 07230959 1 0 -numeration_system%1:10:00:: 06809074 1 0 -numerator%1:23:00:: 13732871 1 0 -numeric%3:01:00:: 02769933 1 0 -numeric%5:00:00:quantitative:00 01915586 2 0 -numerical%3:00:00:: 02230795 3 0 -numerical%3:01:00:: 02769933 2 1 -numerical%5:00:00:quantitative:00 01915586 1 4 -numerical_analysis%1:09:00:: 06007642 1 0 -numerical_quantity%1:09:00:: 05856066 1 0 -numerical_value%1:23:00:: 13581465 1 0 -numerically%4:02:00:: 00411171 1 0 -numerological%3:01:00:: 02770123 1 0 -numerologist%1:18:00:: 10366383 1 0 -numerology%1:09:00:: 06248530 1 0 -numerosity%1:07:00:: 05121908 1 0 -numerous%5:00:00:many:00 01552419 1 18 -numerousness%1:07:00:: 05121908 1 0 -numida%1:05:00:: 01808989 1 0 -numida_meleagris%1:05:00:: 01809106 1 0 -numidia%1:15:00:: 08707710 1 0 -numidian%1:18:00:: 10366692 1 0 -numidian%3:01:00:: 02770229 1 0 -numididae%1:05:00:: 01808785 1 0 -numidinae%1:05:00:: 01808785 1 0 -numinous%3:01:00:: 02770360 2 0 -numinous%5:00:00:sacred:00 02056001 1 1 -numismatics%1:04:00:: 01015996 1 0 -numismatist%1:18:00:: 10366779 1 0 -numismatologist%1:18:00:: 10366779 1 0 -numismatology%1:04:00:: 01015996 1 0 -nummulite%1:05:00:: 01393753 1 0 -nummulitidae%1:05:00:: 01393604 1 0 -numskull%1:18:00:: 10039663 1 0 -nun%1:10:00:: 07266879 2 0 -nun%1:10:01:: 06838112 3 0 -nun%1:18:00:: 10368009 1 3 -nun's_habit%1:06:00:: 03835941 1 0 -nun_buoy%1:10:00:: 07266879 1 0 -nunavut%1:15:00:: 08825664 1 0 -nunc_dimittis%1:10:00:: 06456642 1 0 -nuncio%1:18:00:: 10368113 1 0 -nung%1:10:02:: 06935990 1 0 -nunnery%1:06:00:: 03835853 1 0 -nuphar%1:20:00:: 11716285 1 0 -nuphar_advena%1:20:00:: 11716422 1 0 -nuphar_lutea%1:20:00:: 11716877 1 0 -nuphar_sagittifolium%1:20:00:: 11716698 1 0 -nuprin%1:06:00:: 03556281 1 0 -nuptial%3:01:00:: 02843495 1 0 -nuptials%1:11:00:: 07452074 1 0 -nuptse%1:17:00:: 09375693 1 0 -nuremberg%1:15:00:: 08774374 1 0 -nureyev%1:18:00:: 11210610 1 0 -nurnberg%1:15:00:: 08774374 1 0 -nurse%1:18:00:: 10366966 1 2 -nurse%1:18:01:: 10345100 2 1 -nurse%2:29:00:: 00080705 1 2 -nurse%2:34:00:: 01186428 5 0 -nurse%2:37:00:: 01773130 2 1 -nurse%2:41:00:: 02550698 3 0 -nurse%2:41:03:: 02515194 4 0 -nurse's_aide%1:18:00:: 10367548 1 0 -nurse-midwife%1:18:00:: 10367694 1 0 -nurse-patient_relation%1:24:00:: 13838025 1 0 -nurse_clinician%1:18:00:: 10367819 1 0 -nurse_log%1:27:00:: 14964925 1 0 -nurse_practitioner%1:18:00:: 10367819 1 0 -nurse_shark%1:05:00:: 01486838 1 0 -nursed%5:00:00:breast-fed:00 00267268 1 0 -nurseling%1:18:00:: 10368291 1 0 -nursemaid%1:18:00:: 10345100 1 0 -nurser%1:18:00:: 10367409 1 0 -nursery%1:06:00:: 03457902 2 0 -nursery%1:06:01:: 03836062 1 2 -nursery_rhyme%1:10:00:: 07222728 1 0 -nursery_school%1:14:00:: 08412265 1 0 -nurseryman%1:18:00:: 10120533 1 0 -nursing%1:04:00:: 00665079 1 1 -nursing%1:04:01:: 01058870 3 0 -nursing%1:14:00:: 08112976 2 0 -nursing_aide%1:18:00:: 10367548 1 0 -nursing_bottle%1:06:00:: 02877266 1 0 -nursing_care%1:04:00:: 00664997 1 0 -nursing_home%1:06:00:: 03528100 1 0 -nursing_school%1:14:00:: 08283757 1 0 -nursling%1:18:00:: 10368291 1 0 -nurtural%5:00:00:noninheritable:00 01316127 1 0 -nurturance%1:04:00:: 00665358 1 0 -nurturant%5:00:00:compassionate:00 00506743 1 0 -nurture%1:04:00:: 01129532 2 0 -nurture%1:07:00:: 04922113 1 0 -nurture%2:32:00:: 00908351 1 1 -nurture%2:34:00:: 01202728 3 0 -nurture%2:41:00:: 02539788 2 0 -nusa_tenggara%1:15:00:: 08842583 1 0 -nusku%1:18:00:: 09521395 1 0 -nut%1:06:00:: 03836191 3 1 -nut%1:08:00:: 05524615 7 0 -nut%1:18:00:: 09512835 2 1 -nut%1:18:01:: 09769076 6 0 -nut%1:18:02:: 09974496 5 0 -nut%1:20:00:: 13136556 1 2 -nut%1:23:00:: 13712592 4 0 -nut%2:35:00:: 01382720 1 0 -nut-bearing%5:00:00:productive:00 01866243 1 0 -nut-leaved_screw_tree%1:20:00:: 12199399 1 0 -nut_and_bolt%1:06:00:: 03836451 1 0 -nut_bar%1:13:00:: 07608533 1 0 -nut_bread%1:13:00:: 07685218 1 0 -nut_butter%1:13:00:: 07855413 1 0 -nut_case%1:18:00:: 09974496 1 0 -nut_grass%1:20:00:: 12151615 1 0 -nut_house%1:06:00:: 02820798 1 0 -nut_pine%1:20:00:: 11609684 1 0 -nut_sedge%1:20:00:: 12151615 1 0 -nut_tree%1:20:00:: 13110915 1 0 -nutate%2:38:00:: 01876311 1 0 -nutation%1:04:00:: 00336561 1 0 -nutbrown%5:00:00:brunet:00 00245860 1 0 -nutcase%1:18:00:: 09976283 1 0 -nutcracker%1:05:00:: 01581730 3 0 -nutcracker%1:05:02:: 01590583 2 0 -nutcracker%1:06:00:: 03836602 1 0 -nutgrass%1:20:00:: 12151615 1 0 -nuthatch%1:05:00:: 01590583 1 0 -nuthouse%1:06:00:: 02820798 1 1 -nutlet%1:20:00:: 13136781 1 0 -nutlike%5:00:00:round:00 02042599 2 0 -nutlike%5:00:00:tasty:00 02398255 1 0 -nutmeg%1:13:00:: 07815424 2 0 -nutmeg%1:20:00:: 11714382 1 0 -nutmeg-shaped%5:00:00:formed:00 02148648 1 0 -nutmeg-yew%1:20:00:: 11649150 1 0 -nutmeg_family%1:20:00:: 11713960 1 0 -nutmeg_flower%1:20:00:: 11737125 1 0 -nutmeg_geranium%1:20:00:: 12688187 1 0 -nutmeg_hickory%1:20:00:: 12321669 1 0 -nutmeg_melon%1:13:00:: 07756641 2 0 -nutmeg_melon%1:20:00:: 12165170 1 0 -nutmeg_state%1:15:00:: 09068444 1 0 -nutmeg_tree%1:20:00:: 11714382 1 0 -nutria%1:05:00:: 02366959 1 0 -nutrient%1:03:00:: 00021265 1 1 -nutrient%1:03:01:: 00021734 2 0 -nutrient%5:00:00:wholesome:00 02557719 1 1 -nutrient_agar%1:27:00:: 14900184 1 0 -nutrient_artery%1:08:00:: 05352754 1 0 -nutrify%2:34:00:: 01204191 1 0 -nutriment%1:13:00:: 07570720 1 0 -nutrition%1:09:00:: 06135915 3 0 -nutrition%1:13:00:: 07570720 2 0 -nutrition%1:22:00:: 13523661 1 0 -nutritional%3:01:00:: 03002351 1 1 -nutritionally%4:02:00:: 00411045 1 0 -nutritionary%3:01:00:: 03002351 1 0 -nutritionist%1:18:00:: 10012484 1 0 -nutritionist's_calorie%1:23:00:: 13726562 1 0 -nutritious%5:00:00:wholesome:00 02557719 1 0 -nutritiousness%1:07:00:: 04789897 1 0 -nutritive%5:00:00:wholesome:00 02557719 1 1 -nutritiveness%1:07:00:: 04789897 1 0 -nuts%5:00:00:insane:00 02074929 1 0 -nuts_and_bolts%1:10:00:: 06642518 1 0 -nutsedge%1:20:00:: 12151615 1 0 -nutshell%1:20:00:: 11683747 1 0 -nuttall's_oak%1:20:00:: 12276314 1 0 -nuttall_oak%1:20:00:: 12276314 1 0 -nutter%1:18:00:: 10368414 1 0 -nuttily%4:02:00:: 00303930 1 0 -nutty%5:00:00:insane:00 02074929 2 0 -nutty%5:00:00:tasty:00 02398255 1 0 -nuwc%1:14:00:: 08193854 1 0 -nux_vomica%1:06:00:: 03836699 1 0 -nuytsia%1:20:00:: 12738480 1 0 -nuytsia_floribunda%1:20:00:: 12738599 1 0 -nuzzle%2:35:00:: 01424350 2 0 -nuzzle%2:35:01:: 01314323 3 0 -nuzzle%2:35:02:: 01424948 1 1 -nv%1:15:00:: 09110422 1 0 -nw%1:24:00:: 13834885 1 0 -nwbn%1:24:00:: 13835037 1 0 -nwbw%1:24:00:: 13834761 1 0 -ny%1:15:00:: 09117351 1 0 -nyala%1:05:00:: 02424909 2 0 -nyala%1:15:00:: 09030382 1 0 -nyamuragira%1:15:00:: 09176732 1 0 -nyamwezi%1:10:00:: 06994918 1 0 -nyasaland%1:15:00:: 08962610 1 0 -nybble%1:23:00:: 13625884 1 0 -nyctaginaceae%1:20:00:: 11835806 1 0 -nyctaginia%1:20:00:: 11836137 1 0 -nyctaginia_capitata%1:20:00:: 11836327 1 0 -nyctalopia%1:26:00:: 14554853 1 0 -nyctanassa%1:05:00:: 02010881 1 0 -nyctanassa_violacea%1:05:00:: 02011016 1 0 -nyctereutes%1:05:00:: 02116322 1 0 -nyctereutes_procyonides%1:05:00:: 02116450 1 0 -nycticebus%1:05:00:: 02498888 1 0 -nycticebus_pygmaeus%1:05:00:: 02499022 1 0 -nycticebus_tardigradua%1:05:00:: 02499022 1 0 -nycticorax%1:05:00:: 02010592 1 0 -nycticorax_nycticorax%1:05:00:: 02010728 1 0 -nyctimene%1:05:00:: 02140357 1 0 -nyctophobia%1:26:00:: 14384041 1 0 -nycturia%1:22:00:: 13522485 1 0 -nydrazid%1:06:00:: 03587715 1 0 -nyiragongo%1:15:00:: 09176844 1 0 -nylghai%1:05:00:: 02425532 1 0 -nylghau%1:05:00:: 02425532 1 0 -nylon%1:06:00:: 03836906 2 0 -nylon%1:27:00:: 14966192 1 0 -nylon_stocking%1:06:00:: 03836976 1 0 -nylons%1:06:00:: 03836976 1 0 -nymph%1:05:00:: 02311617 2 1 -nymph%1:18:00:: 09548632 1 1 -nymph%1:18:01:: 10368528 3 0 -nymphaea%1:20:00:: 11715207 1 0 -nymphaea_alba%1:20:00:: 11715678 1 0 -nymphaea_caerulea%1:20:00:: 11716041 1 0 -nymphaea_lotus%1:20:00:: 11715810 1 0 -nymphaea_odorata%1:20:00:: 11715430 1 0 -nymphaea_stellata%1:20:00:: 11716167 1 0 -nymphaeaceae%1:20:00:: 11714618 1 0 -nymphalid%1:05:00:: 02274822 1 0 -nymphalid_butterfly%1:05:00:: 02274822 1 0 -nymphalidae%1:05:00:: 02274516 1 0 -nymphalis%1:05:00:: 02275372 1 0 -nymphalis_antiopa%1:05:00:: 02275560 1 0 -nymphet%1:18:00:: 10368624 1 0 -nymphicus%1:05:00:: 01819600 1 0 -nymphicus_hollandicus%1:05:00:: 01819734 1 0 -nympho%1:18:00:: 10368798 1 0 -nympholepsy%1:26:00:: 14091018 1 0 -nympholept%1:18:00:: 10368711 1 0 -nymphomania%1:12:00:: 07489925 1 0 -nymphomaniac%1:18:00:: 10368798 1 2 -nymphomaniac%5:00:00:neurotic:00 01584857 1 0 -nymphomaniacal%5:00:00:neurotic:00 01584857 1 0 -nynorsk%1:10:00:: 06954768 1 0 -nypa%1:20:00:: 12591897 1 0 -nyquist_frequency%1:28:00:: 15285456 1 0 -nyquist_rate%1:28:00:: 15282188 1 0 -nyse%1:06:00:: 03822951 1 0 -nyssa%1:20:00:: 12340202 1 0 -nyssa_aquatica%1:20:00:: 12340581 1 0 -nyssa_sylvatica%1:20:00:: 12340755 1 0 -nyssaceae%1:20:00:: 12339972 1 0 -nystagmus%1:04:00:: 00337605 1 0 -nystan%1:06:00:: 03837157 1 0 -nystatin%1:06:00:: 03837157 1 0 -nyx%1:18:00:: 09555962 1 0 -o%1:08:00:: 05401229 3 0 -o%1:10:00:: 06832680 2 0 -o%1:27:00:: 14648100 1 3 -o'brien%1:18:00:: 11211322 1 0 -o'casey%1:18:00:: 11211419 1 0 -o'clock%4:02:00:: 00197182 1 16 -o'connor%1:18:00:: 11211987 1 0 -o'er%4:02:00:: 00226458 1 0 -o'flaherty%1:18:00:: 11212669 1 0 -o'hara%1:18:00:: 11212988 1 0 -o'keeffe%1:18:00:: 11213216 1 0 -o'neill%1:18:00:: 11215070 1 0 -o'toole%1:18:00:: 11218473 1 0 -o._henry%1:18:00:: 11243102 1 0 -o.d.%2:29:00:: 00085353 1 0 -o.e.d.%1:10:00:: 06420424 1 0 -o.k.%1:10:00:: 06687701 1 0 -o.k.%2:32:00:: 00806502 1 0 -o.k.%4:02:00:: 00015471 1 0 -o.k.%5:00:00:satisfactory:00 02081114 1 2 -o_level%1:26:00:: 14431169 1 0 -o_ring%1:06:00:: 03855604 1 0 -oaf%1:18:00:: 10274639 1 0 -oafish%5:00:00:unrefined:01 01949859 1 0 -oahu%1:15:00:: 09080554 1 0 -oahu_island%1:15:00:: 09080554 1 0 -oak%1:20:00:: 12268246 2 1 -oak%1:20:02:: 12268918 1 3 -oak-leaved_goosefoot%1:20:00:: 11829672 1 0 -oak_apple%1:20:00:: 13099734 1 0 -oak_blight%1:26:00:: 14218293 1 0 -oak_chestnut%1:20:00:: 12264512 1 0 -oak_fern%1:20:00:: 13197274 1 0 -oak_leaf_cluster%1:10:00:: 06708664 1 0 -oak_tree%1:20:00:: 12268246 1 0 -oaken%5:00:00:woody:00 02576223 1 1 -oakland%1:15:00:: 09064264 1 0 -oakleaf_goosefoot%1:20:00:: 11829672 1 0 -oakley%1:18:00:: 11210806 1 0 -oakum%1:27:00:: 14966334 1 0 -oar%1:06:00:: 03837422 1 0 -oarfish%1:05:00:: 02547014 1 0 -oarlock%1:06:00:: 03905730 1 0 -oarsman%1:18:00:: 10368920 1 0 -oarsmanship%1:09:00:: 05639556 1 0 -oarswoman%1:18:00:: 10369095 1 0 -oas%1:14:00:: 08176077 1 0 -oasis%1:06:00:: 03499796 2 0 -oasis%1:15:00:: 08506496 1 0 -oast%1:06:00:: 03837606 1 0 -oast_house%1:06:00:: 03837698 1 0 -oat%1:13:00:: 07804152 2 0 -oat%1:20:00:: 12109827 1 1 -oat_cell_carcinoma%1:26:00:: 14251616 1 0 -oatcake%1:13:00:: 07685303 1 0 -oaten%3:01:00:: 03130585 1 0 -oates%1:18:00:: 11210963 2 0 -oates%1:18:01:: 11211071 1 0 -oath%1:10:00:: 06684572 2 2 -oath%1:10:01:: 07125096 1 15 -oath%1:10:02:: 07226841 3 0 -oatmeal%1:13:00:: 07874995 1 1 -oatmeal%1:13:01:: 07568502 2 0 -oatmeal_cookie%1:13:00:: 07638226 1 0 -oaxaca%1:15:00:: 08744750 1 0 -oaxaca_de_juarez%1:15:00:: 08744750 1 0 -ob%1:09:00:: 06053439 2 0 -ob%1:17:00:: 09375891 1 0 -ob_river%1:17:00:: 09375891 1 0 -obadiah%1:10:00:: 06439712 2 0 -obadiah%1:18:00:: 11211236 1 0 -obbligato%1:10:00:: 06815970 2 0 -obbligato%1:10:02:: 07029581 1 0 -obduracy%1:07:00:: 04863793 1 0 -obdurate%5:00:00:hardhearted:00 01158180 2 0 -obdurate%5:00:00:unregenerate:00 01957712 1 1 -obdurately%4:02:00:: 00198845 1 0 -obeah%1:09:00:: 06225667 2 0 -obeah%1:14:00:: 08152198 1 0 -obeche%1:20:00:: 12201938 2 0 -obeche%1:20:02:: 12202234 1 0 -obechi%1:20:00:: 12201938 1 0 -obedience%1:04:00:: 01167146 1 3 -obedience%1:04:02:: 01132864 3 0 -obedience%1:07:00:: 04906273 2 0 -obedience_plant%1:20:00:: 12351790 1 0 -obedient%3:00:00:: 01612053 1 3 -obedient_plant%1:20:00:: 12862116 1 0 -obediently%4:02:00:: 00317020 1 1 -obeisance%1:04:00:: 01167146 2 0 -obeisance%1:10:00:: 07274425 1 0 -obelion%1:08:00:: 05234315 1 0 -obelisk%1:06:00:: 03837869 1 1 -obelisk%1:10:00:: 06828529 2 0 -oberson%1:18:00:: 09546280 1 0 -obese%5:00:00:fat:01 00987180 1 0 -obesity%1:07:00:: 05000342 1 0 -obesity_diet%1:13:00:: 07564629 1 0 -obey%2:41:00:: 02542795 1 14 -obfuscate%2:32:00:: 00940214 1 0 -obfuscation%1:04:00:: 01266152 2 0 -obfuscation%1:04:01:: 00274586 3 0 -obfuscation%1:09:00:: 05685030 1 0 -obi%1:09:00:: 06225667 2 0 -obi%1:14:00:: 08152198 1 0 -obidoxime_chloride%1:27:00:: 15018169 1 0 -obiism%1:09:00:: 06245674 1 0 -obit%1:10:00:: 06748133 1 0 -obiter_dictum%1:10:00:: 06765887 2 0 -obiter_dictum%1:10:02:: 06766092 1 0 -obituary%1:10:00:: 06748133 1 0 -object%1:03:00:: 00002684 1 51 -object%1:09:00:: 05981230 2 3 -object%1:09:01:: 05810948 4 1 -object%1:09:02:: 06132724 5 0 -object%1:10:00:: 06310237 3 2 -object%2:32:00:: 00807461 1 19 -object%2:42:00:: 02753865 2 0 -object-oriented_database%1:10:00:: 06638527 1 0 -object-oriented_database_management_system%1:10:00:: 06589151 1 0 -object-oriented_programing%1:04:00:: 00929432 1 0 -object-oriented_programing_language%1:10:00:: 06900684 1 0 -object-oriented_programming%1:04:00:: 00929432 1 0 -object-oriented_programming_language%1:10:00:: 06900684 1 0 -object_ball%1:06:00:: 03838024 1 0 -object_code%1:10:00:: 06358159 1 0 -object_glass%1:06:00:: 03838298 1 0 -object_language%1:10:01:: 06284067 2 0 -object_language%1:10:02:: 06900507 1 0 -object_lens%1:06:00:: 03838298 1 0 -object_lesson%1:10:00:: 06672752 1 0 -object_of_a_preposition%1:10:00:: 06310449 1 0 -object_of_the_verb%1:10:00:: 06310578 1 0 -object_program%1:10:00:: 06576893 1 0 -object_recognition%1:09:00:: 05711308 1 0 -objectification%1:04:00:: 00932088 1 2 -objectification%1:06:00:: 03838160 2 0 -objectify%2:30:00:: 00388296 2 0 -objectify%2:30:01:: 00532607 1 0 -objection%1:04:00:: 01025678 4 0 -objection%1:04:01:: 01177033 3 2 -objection%1:10:00:: 07208338 2 3 -objection%1:10:01:: 07246742 1 10 -objectionable%5:00:00:offensive:01 01626874 1 1 -objectionable%5:00:00:unacceptable:00 00018850 2 0 -objectionableness%1:07:00:: 04781755 1 0 -objectionably%4:02:00:: 00306909 1 0 -objective%1:06:00:: 03838298 2 0 -objective%1:09:00:: 05981230 1 38 -objective%3:00:00:: 01615180 1 9 -objective%3:01:00:: 02861997 2 0 -objective%5:00:00:concrete:00 00013442 4 0 -objective%5:00:00:real:00 01934026 3 0 -objective_case%1:10:00:: 06311557 1 0 -objective_lens%1:06:00:: 03838298 1 0 -objectively%4:02:00:: 00412045 1 0 -objectiveness%1:07:00:: 04892344 1 0 -objectivity%1:07:00:: 04892344 1 2 -objector%1:18:00:: 10018021 1 0 -objet_d'art%1:06:00:: 03838535 1 1 -objurgate%2:32:00:: 00864159 1 0 -objurgate%2:32:01:: 00824292 2 0 -objurgation%1:10:00:: 06712833 1 0 -oblanceolate%5:00:00:simple:01 02169467 1 0 -oblanceolate_leaf%1:20:00:: 13158815 1 0 -oblate%1:18:00:: 10348874 1 0 -oblate%3:00:00:: 02049918 1 0 -oblateness%1:07:00:: 05070622 1 0 -oblation%1:04:00:: 01041349 2 0 -oblation%1:04:01:: 01041498 1 0 -obligate%2:32:00:: 00885217 3 0 -obligate%2:40:00:: 02348182 2 0 -obligate%2:41:00:: 02506546 1 0 -obligate%3:00:00:: 01617675 1 0 -obligate_anaerobe%1:05:00:: 01327204 1 0 -obligated%3:00:00:: 01616474 1 2 -obligation%1:04:00:: 01129920 1 14 -obligation%1:10:00:: 06773150 5 0 -obligation%1:21:00:: 13398241 4 0 -obligation%1:24:00:: 13782033 3 0 -obligation%1:26:00:: 14490110 2 1 -obligational%3:01:00:: 03137958 1 1 -obligato%1:10:00:: 06815970 2 0 -obligato%1:10:02:: 07029581 1 0 -obligatorily%4:02:00:: 00288655 2 0 -obligatorily%4:02:01:: 00414750 1 0 -obligatory%3:00:00:: 00848074 1 0 -obligatory%5:00:00:necessary:00 01580968 2 0 -oblige%2:32:00:: 00885217 2 1 -oblige%2:32:01:: 00885925 3 0 -oblige%2:41:00:: 02506546 1 14 -obliged%5:00:00:obligated:00 01616891 1 7 -obliger%1:18:00:: 10369166 1 0 -obliging%5:00:00:accommodating:00 00021110 1 0 -obligingly%4:02:00:: 00231620 1 1 -obligingness%1:07:00:: 04641153 1 0 -oblique%1:08:00:: 05557839 2 0 -oblique%1:10:00:: 06311334 1 0 -oblique%3:00:00:: 01718867 1 2 -oblique%5:00:00:indirect:02 00768098 2 0 -oblique-angled%5:00:00:oblique:00 01720198 1 0 -oblique_angle%1:25:00:: 13892383 1 0 -oblique_bandage%1:06:00:: 03838748 1 0 -oblique_case%1:10:00:: 06311334 1 0 -oblique_triangle%1:25:00:: 13880295 1 0 -oblique_vein_of_the_left_atrium%1:08:00:: 05374475 1 0 -obliquely%4:02:00:: 00274710 2 0 -obliquely%4:02:02:: 00453580 1 0 -obliqueness%1:07:00:: 05066333 1 0 -obliqueness%1:07:01:: 04919712 2 0 -obliquity%1:07:00:: 04874939 2 0 -obliquity%1:26:00:: 14049098 1 0 -obliterable%5:00:00:eradicable:00 00898132 1 0 -obliterate%2:30:00:: 00311338 3 1 -obliterate%2:30:01:: 00313987 2 1 -obliterate%2:30:02:: 00478830 1 1 -obliterate%2:30:03:: 00472230 4 0 -obliterate%5:00:00:destroyed:00 00735088 1 0 -obliterated%5:00:00:destroyed:00 00735088 1 0 -obliteration%1:04:00:: 00218208 1 2 -obliteration%1:11:00:: 07331013 2 0 -obliterator%1:17:00:: 09376078 1 0 -oblivion%1:09:00:: 05674134 2 0 -oblivion%1:26:00:: 14436769 1 1 -oblivious%5:00:00:inattentive:00 00165943 2 0 -oblivious%5:00:00:unaware:00 00192026 1 2 -obliviousness%1:09:00:: 05674134 1 0 -oblong%1:25:00:: 13873361 1 0 -oblong%5:00:00:long:01 01435507 2 0 -oblong%5:00:00:simple:01 02169591 1 0 -oblong_leaf%1:20:00:: 13158925 1 0 -oblong_woodsia%1:20:00:: 13202125 1 0 -oblongness%1:07:00:: 05071869 1 0 -obloquy%1:10:00:: 06719579 2 0 -obloquy%1:26:00:: 14441498 1 0 -obnoxious%5:00:00:offensive:01 01626874 1 2 -obnoxiously%4:02:00:: 00306909 1 0 -obnoxiousness%1:07:00:: 04781755 1 0 -obnubilate%2:31:00:: 00620673 2 0 -obnubilate%2:39:00:: 02157731 1 0 -oboe%1:06:00:: 03838899 1 0 -oboe_d'amore%1:06:00:: 03839276 1 0 -oboe_da_caccia%1:06:00:: 03839172 1 0 -oboist%1:18:00:: 10369317 1 0 -obolus%1:23:00:: 13718451 1 0 -obovate%5:00:00:simple:01 02169728 1 0 -obovate_leaf%1:20:00:: 13159044 1 0 -obscene%5:00:00:dirty:02 00425740 3 0 -obscene%5:00:00:indecent:00 00684163 1 2 -obscene%5:00:00:offensive:01 01625063 2 0 -obscenely%4:02:00:: 00388747 2 0 -obscenely%4:02:01:: 00412321 1 0 -obscenity%1:04:00:: 00738697 3 0 -obscenity%1:07:00:: 04903368 1 1 -obscenity%1:10:00:: 07124340 2 0 -obscurantism%1:04:00:: 00756470 2 0 -obscurantism%1:09:00:: 05987397 1 0 -obscurantist%1:18:00:: 10369417 1 0 -obscure%2:30:00:: 00313712 3 2 -obscure%2:30:02:: 00313987 5 0 -obscure%2:30:03:: 00587390 4 0 -obscure%2:31:00:: 00620673 2 2 -obscure%2:39:00:: 02157731 1 3 -obscure%5:00:00:concealed:00 02089377 3 0 -obscure%5:00:00:incomprehensible:00 00534250 2 2 -obscure%5:00:00:inconspicuous:00 00581637 5 0 -obscure%5:00:00:inglorious:00 01122595 4 0 -obscure%5:00:00:unclear:00 00431004 1 4 -obscure%5:00:00:unconnected:00 00567860 6 0 -obscurely%4:02:00:: 00247084 1 1 -obscureness%1:07:02:: 04823416 3 0 -obscureness%1:26:00:: 14436438 1 0 -obscureness%1:26:01:: 13985671 2 0 -obscurity%1:07:02:: 04823416 1 3 -obscurity%1:26:00:: 14436029 2 2 -obscurity%1:26:01:: 13985671 3 2 -obsequious%5:00:00:insincere:00 02181231 1 2 -obsequious%5:00:00:servile:00 00790540 2 0 -obsequiously%4:02:00:: 00412409 1 0 -obsequiousness%1:07:00:: 04906712 1 0 -observable%5:00:00:noticeable:00 01287486 1 1 -observably%4:02:00:: 00365668 1 0 -observance%1:04:00:: 00879759 1 1 -observance%1:04:02:: 01204419 4 0 -observance%1:09:00:: 05703429 3 0 -observance%1:11:01:: 07450842 2 0 -observant%5:00:00:attentive:00 00164462 1 2 -observant%5:00:00:lawful:00 01395821 3 0 -observant%5:00:00:perceptive:00 01745517 2 0 -observantly%4:02:00:: 00412596 1 0 -observation%1:04:00:: 00879759 2 6 -observation%1:04:01:: 01002956 1 26 -observation%1:09:00:: 05703429 5 1 -observation%1:09:02:: 05818741 4 1 -observation%1:10:00:: 06767035 3 1 -observation_dome%1:06:00:: 03839424 1 2 -observation_post%1:15:00:: 08597176 1 0 -observation_station%1:06:00:: 03839534 1 0 -observation_tower%1:06:00:: 03688943 1 0 -observational%5:00:00:empirical:00 00859949 1 1 -observatory%1:06:00:: 03839671 1 0 -observatory%1:06:01:: 03688943 2 0 -observe%2:31:00:: 00732552 8 1 -observe%2:32:00:: 01020005 2 17 -observe%2:39:00:: 02169352 4 10 -observe%2:39:01:: 02118933 3 12 -observe%2:39:02:: 02154508 1 39 -observe%2:41:00:: 02455407 7 2 -observe%2:41:01:: 02457233 5 4 -observe%2:41:02:: 02578510 6 3 -observe%2:41:04:: 02578872 9 0 -observed%5:00:00:determined:00 01610484 1 7 -observed_fire%1:04:00:: 00991914 1 0 -observer%1:18:00:: 09626589 1 11 -observer%1:18:01:: 10369528 2 9 -observer's_meridian%1:15:00:: 08599174 1 0 -observing%5:00:00:perceptive:00 01745517 1 0 -observingly%4:02:00:: 00412596 1 0 -obsess%2:37:00:: 01783214 1 2 -obsess%2:37:03:: 01831143 2 0 -obsessed%5:00:00:concerned:00 00544478 1 1 -obsessed%5:00:00:controlled:00 00599468 2 0 -obsession%1:09:00:: 05700401 2 0 -obsession%1:16:00:: 09183255 1 0 -obsessional%5:00:00:neurotic:00 01585022 1 0 -obsessionally%4:02:00:: 00243608 1 0 -obsessive%1:18:00:: 10348989 1 0 -obsessive%5:00:00:neurotic:00 01585022 1 0 -obsessive-compulsive%1:18:00:: 10349090 1 0 -obsessive-compulsive%5:00:00:neurotic:00 01585312 1 1 -obsessive-compulsive_disorder%1:26:00:: 14381017 1 0 -obsessive-compulsive_personality%1:07:00:: 04619791 1 0 -obsessively%4:02:00:: 00243608 1 0 -obsessiveness%1:07:00:: 04626062 1 0 -obsessivity%1:07:00:: 04626062 1 0 -obsidian%1:27:00:: 14880960 1 1 -obsolesce%2:30:00:: 00567775 1 0 -obsolescence%1:22:00:: 13523983 1 0 -obsolescent%5:00:00:noncurrent:00 00669367 1 1 -obsolete%5:00:01:noncurrent:00 00669021 1 0 -obsoleteness%1:07:00:: 04925577 1 0 -obstacle%1:06:00:: 03839795 2 4 -obstacle%1:09:00:: 05690269 1 5 -obstacle_race%1:11:00:: 07462917 1 0 -obstetric%3:01:00:: 02917694 1 0 -obstetrical%3:01:00:: 02917694 1 0 -obstetrical_delivery%1:04:00:: 00042541 1 0 -obstetrical_toad%1:05:00:: 01648139 1 0 -obstetrician%1:18:00:: 10369699 1 0 -obstetrics%1:09:00:: 06053439 1 0 -obstinacy%1:07:00:: 04908835 1 0 -obstinacy%1:07:01:: 04863074 2 0 -obstinance%1:07:00:: 04908835 1 0 -obstinance%1:07:01:: 04863074 2 0 -obstinate%2:30:00:: 00350889 1 0 -obstinate%3:00:00:: 02326695 1 0 -obstinate%5:00:00:disobedient:00 01613839 3 0 -obstinate%5:00:00:unregenerate:00 01957712 2 0 -obstinately%4:02:00:: 00198845 1 2 -obstipate%2:29:00:: 00074730 1 0 -obstipation%1:26:00:: 14371770 1 0 -obstreperous%5:00:00:aggressive:00 00083876 2 0 -obstreperous%5:00:00:defiant:00 00696207 1 0 -obstreperously%4:02:00:: 00412708 1 0 -obstreperousness%1:07:00:: 04908283 1 0 -obstruct%2:35:00:: 01476483 2 2 -obstruct%2:39:04:: 02145543 3 0 -obstruct%2:41:00:: 02557199 1 2 -obstructed%3:00:00:: 01620509 1 0 -obstructer%1:06:00:: 03839993 2 0 -obstructer%1:18:00:: 10349243 1 0 -obstruction%1:04:00:: 00562280 5 0 -obstruction%1:04:01:: 01074498 4 0 -obstruction%1:06:00:: 03839993 1 4 -obstruction%1:09:00:: 05690269 3 0 -obstruction%1:26:00:: 14507951 2 0 -obstruction_of_justice%1:04:00:: 01181212 1 0 -obstructionism%1:04:00:: 01176931 1 0 -obstructionist%1:18:00:: 10349243 1 0 -obstructive%5:00:00:preventive:00 01764351 1 0 -obstructive_shock%1:26:00:: 14067681 1 0 -obstructively%4:02:00:: 00413387 1 0 -obstructor%1:06:00:: 03839993 2 0 -obstructor%1:18:00:: 10349243 1 0 -obstruent%1:10:00:: 07115684 1 0 -obtain%2:30:00:: 00522751 2 17 -obtain%2:40:00:: 02238085 1 116 -obtain%2:42:00:: 02648502 3 1 -obtainable%5:00:00:available:00 00184363 1 3 -obtainment%1:04:00:: 00077856 1 0 -obtention%1:04:00:: 00077856 1 0 -obtrude%2:32:00:: 00747757 2 0 -obtrude%2:38:00:: 01873157 1 0 -obtrude_upon%2:38:00:: 02019716 1 1 -obtrusive%3:00:00:: 01614778 1 0 -obtrusive%5:00:00:protrusive:00 01353866 2 0 -obtrusively%4:02:00:: 00412889 1 0 -obtrusiveness%1:07:00:: 04707110 1 1 -obtund%2:30:00:: 00192356 1 0 -obturate%2:35:00:: 01476483 1 0 -obturator%1:06:00:: 03840327 1 0 -obturator_vein%1:08:00:: 05374658 1 0 -obtuse%3:00:00:: 01811905 1 0 -obtuse%5:00:00:simple:01 02169359 2 0 -obtuse%5:00:00:stupid:00 00440579 4 0 -obtuse%5:00:00:undiscerning:00 00772492 3 0 -obtuse-angled_triangle%1:25:00:: 13880415 1 0 -obtuse_angle%1:25:00:: 13892048 1 0 -obtuse_leaf%1:20:00:: 13158714 1 0 -obtuse_triangle%1:25:00:: 13880415 1 0 -obtusely%4:02:00:: 00323315 1 0 -obtuseness%1:07:00:: 04705950 2 0 -obtuseness%1:09:01:: 05646039 1 0 -obverse%1:06:00:: 03840507 2 0 -obverse%1:09:00:: 05791311 1 1 -obviate%2:41:00:: 02453321 2 0 -obviate%2:42:00:: 02629256 1 0 -obviating%5:00:00:preventive:00 01765132 1 0 -obviation%1:04:00:: 01079042 1 0 -obvious%3:00:00:: 01618053 1 26 -obviously%4:02:00:: 00039318 1 44 -obviousness%1:07:00:: 04706290 1 0 -oca%1:20:00:: 12704041 1 0 -ocarina%1:06:00:: 03840681 1 0 -occam%1:18:00:: 11211517 1 0 -occam's_razor%1:09:00:: 05990738 1 0 -occasion%1:11:00:: 07416714 1 14 -occasion%1:11:01:: 07447261 2 6 -occasion%1:16:00:: 09179264 3 3 -occasion%1:26:00:: 14485064 5 0 -occasion%1:28:00:: 15245829 4 0 -occasion%2:36:00:: 01646528 1 3 -occasional%5:00:00:infrequent:00 01067415 1 21 -occasional%5:00:00:irregular:00 01961205 3 0 -occasional%5:00:00:sporadic:00 00594004 4 0 -occasional%5:00:00:unpredictable:00 01842468 2 2 -occasionally%4:02:00:: 00021212 1 30 -occasions%1:09:00:: 05983943 1 1 -occident%1:15:00:: 08682575 1 0 -occident%1:15:01:: 08682389 2 0 -occidental%1:10:00:: 06897474 2 0 -occidental%1:18:00:: 10369845 1 1 -occidental%5:00:00:western:01 00825375 1 0 -occidentalise%2:30:00:: 00523645 1 0 -occidentalism%1:07:00:: 05167927 2 0 -occidentalism%1:09:00:: 06158057 1 0 -occidentalize%2:30:00:: 00523645 1 0 -occipital%3:01:00:: 02934994 1 1 -occipital_bone%1:08:00:: 05541872 1 0 -occipital_cortex%1:08:00:: 05494365 1 0 -occipital_gyrus%1:08:00:: 05489231 1 0 -occipital_lobe%1:08:00:: 05494365 1 1 -occipital_protuberance%1:08:00:: 05542052 1 0 -occipital_vein%1:08:00:: 05374861 1 0 -occipitomastoid_suture%1:08:00:: 05544725 1 0 -occiput%1:08:00:: 05540976 1 0 -occitan%1:10:00:: 06966190 1 0 -occlude%2:35:00:: 01476483 1 1 -occluded%5:00:00:combined:00 01330307 2 1 -occluded%5:00:00:obstructed:00 01621807 1 2 -occluded_front%1:19:00:: 11461080 1 0 -occlusion%1:04:00:: 01074694 5 0 -occlusion%1:06:00:: 02853449 4 0 -occlusion%1:07:00:: 05067928 3 0 -occlusion%1:19:00:: 11461080 2 0 -occlusion%1:26:00:: 14100769 1 1 -occlusive%1:10:00:: 07115914 1 0 -occlusive%3:01:00:: 02950154 1 1 -occult%1:04:00:: 00412572 2 0 -occult%1:18:00:: 09503877 1 0 -occult%2:39:00:: 02145429 3 0 -occult%2:39:01:: 02158340 1 0 -occult%2:39:02:: 02149611 2 0 -occult%5:00:00:esoteric:00 00900071 2 0 -occult%5:00:00:invisible:00 02518470 1 0 -occult_arts%1:04:00:: 00412572 1 0 -occultation%1:11:00:: 07368646 1 0 -occultism%1:09:00:: 05968288 2 0 -occultism%1:09:01:: 05968450 1 0 -occultist%1:18:00:: 10370381 1 0 -occupancy%1:04:00:: 01054335 1 1 -occupancy%1:04:01:: 00086809 2 0 -occupancy_rate%1:24:00:: 13818551 1 0 -occupant%1:18:00:: 10523519 1 6 -occupation%1:04:00:: 00582388 1 7 -occupation%1:04:01:: 00086809 4 1 -occupation%1:04:02:: 01133106 2 1 -occupation%1:04:04:: 00582868 3 1 -occupation%1:28:00:: 15141486 5 0 -occupation_licence%1:10:00:: 06551498 1 0 -occupation_license%1:10:00:: 06551498 1 1 -occupational%3:01:00:: 02894591 1 4 -occupational_disease%1:26:00:: 14079493 1 0 -occupational_group%1:14:00:: 08403631 1 0 -occupational_hazard%1:26:00:: 14542858 1 0 -occupational_safety_and_health_act%1:10:00:: 06535652 1 0 -occupational_safety_and_health_administration%1:14:00:: 08349138 1 0 -occupational_therapy%1:04:00:: 00664577 1 0 -occupied%3:00:00:: 01623187 1 3 -occupied%3:00:02:: 01624267 2 0 -occupied%5:00:00:busy:00 00293611 4 0 -occupied%5:00:00:inhabited:00 01311814 3 0 -occupier%1:18:00:: 10523519 1 0 -occupier%1:18:01:: 10369955 2 0 -occupy%2:31:00:: 00600370 7 1 -occupy%2:33:00:: 01126360 5 2 -occupy%2:40:08:: 02267989 6 1 -occupy%2:41:00:: 02415831 1 8 -occupy%2:41:04:: 02394183 8 0 -occupy%2:42:00:: 02648639 2 7 -occupy%2:42:01:: 02649042 3 3 -occupy%2:42:04:: 02678438 4 2 -occur%2:30:00:: 00339934 1 81 -occur%2:31:00:: 00723349 2 21 -occur%2:42:03:: 02612368 3 0 -occurrence%1:11:00:: 07283608 1 29 -occurrence%1:26:00:: 13959069 2 3 -occurrent%1:11:00:: 07283608 1 0 -occurrent%5:00:00:current:00 00667641 1 0 -ocean%1:17:00:: 09376198 1 8 -ocean%1:23:00:: 13776971 2 0 -ocean_bottom%1:17:00:: 09376526 1 0 -ocean_current%1:19:00:: 11488387 1 0 -ocean_floor%1:17:00:: 09376526 1 1 -ocean_liner%1:06:00:: 03673027 1 0 -ocean_perch%1:05:00:: 02644817 2 0 -ocean_perch%1:13:00:: 07792117 1 0 -ocean_pout%1:05:00:: 02618094 1 0 -ocean_state%1:15:00:: 09137032 1 0 -ocean_sunfish%1:05:00:: 02656670 1 0 -ocean_trip%1:04:00:: 00312784 1 0 -oceanaut%1:18:00:: 09801371 1 0 -oceanfront%1:17:00:: 09376786 1 0 -oceangoing%5:00:00:marine:00 01381074 1 0 -oceania%1:15:00:: 08835875 1 0 -oceanic%1:10:00:: 06937985 1 0 -oceanic%3:01:00:: 02890216 1 0 -oceanic%5:00:00:marine:00 01381196 3 0 -oceanic%5:00:00:unlimited:00 01416081 2 0 -oceanic_abyss%1:17:00:: 09461315 1 0 -oceanic_bird%1:05:00:: 02057731 1 0 -oceanic_bonito%1:05:00:: 02629230 1 0 -oceanic_whitetip_shark%1:05:00:: 01490112 1 0 -oceanica%1:15:00:: 08835875 1 0 -oceanid%1:18:00:: 09550899 1 0 -oceanites%1:05:00:: 02061425 1 0 -oceanites_oceanicus%1:05:00:: 02061560 1 0 -oceanographer%1:18:00:: 10370122 1 0 -oceanography%1:09:00:: 06119904 1 0 -oceanology%1:09:00:: 06119904 1 0 -oceanus%1:18:00:: 09574767 1 0 -ocellated%3:01:00:: 02869368 1 0 -ocellated_turkey%1:05:00:: 01794651 1 0 -ocellus%1:07:00:: 04681621 2 0 -ocellus%1:08:00:: 05312306 1 0 -ocelot%1:05:00:: 02125494 1 1 -ocher%1:07:00:: 04966841 1 1 -ocher%1:27:00:: 14843986 2 0 -ocher%5:00:00:chromatic:00 00378498 1 0 -ochlocracy%1:14:00:: 08362302 1 0 -ochna%1:20:00:: 12382699 1 0 -ochna_family%1:20:00:: 12382484 1 0 -ochna_serrulata%1:20:00:: 12382875 1 0 -ochnaceae%1:20:00:: 12382484 1 0 -ochoa%1:18:00:: 11211696 1 0 -ochotona%1:05:00:: 02328662 1 0 -ochotona_collaris%1:05:00:: 02328942 1 0 -ochotona_princeps%1:05:00:: 02328820 1 0 -ochotonidae%1:05:00:: 02328270 1 0 -ochre%1:07:00:: 04966841 2 0 -ochre%1:27:00:: 14843986 1 0 -ochre%5:00:00:chromatic:00 00378498 1 0 -ochroma%1:20:00:: 12191461 1 0 -ochroma_lagopus%1:20:00:: 12191587 1 0 -ochronosis%1:26:00:: 14268439 1 0 -ochs%1:18:00:: 11211870 1 0 -ocimum%1:20:00:: 12860254 1 0 -ocimum_basilicum%1:20:00:: 12860542 1 0 -ockham%1:18:00:: 11211517 1 0 -ockham's_razor%1:09:00:: 05990738 1 0 -oconee_bells%1:20:00:: 12252383 1 0 -ocotillo%1:20:00:: 12381931 1 0 -oct%1:28:00:: 15213115 1 3 -octad%1:23:00:: 13745086 1 0 -octadecanoic_acid%1:27:00:: 15056938 1 0 -octagon%1:25:00:: 13882563 1 0 -octagonal%3:01:00:: 02834862 1 0 -octahedron%1:25:00:: 13915594 1 1 -octal%3:01:00:: 02869437 1 0 -octal_digit%1:23:00:: 13741603 1 0 -octal_notation%1:10:00:: 06810544 1 0 -octal_number_system%1:10:00:: 06810238 1 0 -octal_numeration_system%1:10:00:: 06810238 1 0 -octameter%1:10:00:: 07096330 1 0 -octane%1:27:00:: 14966530 1 0 -octane_number%1:23:00:: 13579933 1 0 -octane_rating%1:23:00:: 13579933 1 0 -octanedioic_acid%1:27:00:: 14616181 1 0 -octangular%3:01:00:: 02834862 1 0 -octans%1:17:00:: 09376866 1 0 -octant%1:06:00:: 03840823 1 0 -octave%1:10:00:: 06859401 2 0 -octave%1:10:01:: 06382923 3 0 -octave%1:28:00:: 15296258 1 1 -octavian%1:18:00:: 10828990 1 0 -octavo%1:07:00:: 05096408 1 0 -octet%1:10:00:: 07042137 5 0 -octet%1:14:00:: 07987903 4 0 -octet%1:14:01:: 07988604 3 0 -octet%1:14:02:: 08248047 2 0 -octet%1:23:00:: 13745086 1 0 -octette%1:10:00:: 07042137 4 0 -octette%1:14:00:: 07987903 3 0 -octette%1:14:01:: 07988604 2 0 -octette%1:14:02:: 08248047 1 0 -octillion%1:23:00:: 13753740 1 0 -october%1:28:00:: 15213115 1 13 -october_12%1:28:00:: 15190895 1 0 -october_24%1:28:00:: 15191080 1 0 -october_revolution%1:04:00:: 01308008 1 0 -octoberfest%1:13:00:: 07888058 1 0 -octogenarian%1:18:00:: 10370286 1 0 -octogenarian%5:00:00:old:02 01646278 1 0 -octonary%1:23:00:: 13745086 1 0 -octopod%1:05:00:: 01969726 1 0 -octopoda%1:05:00:: 01969550 1 0 -octopodidae%1:05:00:: 01969893 1 0 -octopus%1:05:00:: 01970164 2 0 -octopus%1:13:00:: 07782365 1 0 -octoroon%1:18:00:: 09638722 1 0 -octosyllabic%5:00:00:syllabic:00 02289151 1 0 -octosyllable%1:10:00:: 07096425 1 0 -octroi%1:21:00:: 13317422 1 0 -octuple%5:00:00:multiple:00 02219988 1 0 -ocular%1:06:00:: 03309465 1 0 -ocular%3:01:00:: 02869823 1 1 -ocular%3:01:04:: 02869563 2 0 -ocular%5:00:00:visible:00 02516148 3 0 -ocular_muscle%1:08:00:: 05316175 1 0 -oculism%1:04:00:: 00609159 1 0 -oculist%1:18:00:: 10379073 2 0 -oculist%1:18:01:: 10380305 1 0 -oculomotor%1:08:00:: 05478526 1 0 -oculomotor_nerve%1:08:00:: 05478526 1 0 -oculopharyngeal_muscular_dystrophy%1:26:00:: 14163676 1 0 -oculus%1:08:00:: 05311054 1 0 -oculus_dexter%1:08:00:: 05312149 1 0 -oculus_sinister%1:08:00:: 05312227 1 0 -ocyurus%1:05:00:: 02587761 1 0 -ocyurus_chrysurus%1:05:00:: 02587877 1 0 -od%1:08:00:: 05312149 2 0 -od%1:10:00:: 06703632 1 0 -odalisque%1:18:00:: 10370603 1 0 -odd%3:00:00:: 00913454 1 7 -odd%5:00:00:inexact:00 00916383 3 3 -odd%5:00:00:mismatched:00 01487496 5 0 -odd%5:00:00:strange:00 00968010 4 1 -odd%5:00:00:unexhausted:00 00926505 6 0 -odd%5:00:00:unusual:00 00490845 2 6 -odd-even_check%1:09:00:: 05825942 1 0 -odd-job%5:00:00:part-time:00 01089949 1 0 -odd-job_man%1:18:00:: 10159289 1 0 -odd-leg_caliper%1:06:00:: 03841011 1 0 -odd-pinnate%5:00:00:compound:00 02172995 1 0 -odd-pinnate_leaf%1:20:00:: 13160254 1 0 -odd-toed_ungulate%1:05:00:: 02373336 1 0 -odd_fellow%1:18:00:: 10240514 1 0 -odd_fish%1:18:00:: 10240514 1 0 -odd_hassel%1:18:00:: 11034167 1 0 -odd_man_out%1:18:00:: 10240514 1 0 -oddball%1:18:00:: 10042845 1 0 -oddish%5:00:00:strange:00 00969264 1 0 -oddity%1:06:00:: 03149951 3 0 -oddity%1:07:01:: 04797824 2 0 -oddity%1:07:02:: 04799011 1 0 -oddly%4:02:00:: 00035491 1 2 -oddly%4:02:01:: 00437381 2 0 -oddment%1:06:00:: 03286383 1 0 -oddment%1:06:01:: 03149951 2 0 -oddments%1:14:00:: 08399977 1 0 -oddness%1:07:00:: 04799011 2 0 -oddness%1:24:00:: 13790592 1 0 -oddone_colonna%1:18:00:: 11160200 1 0 -odds%1:07:00:: 04756504 1 1 -odds%1:24:00:: 13823483 2 0 -odds-maker%1:18:00:: 10370683 1 0 -odds-on%5:00:00:unequal:00 00893118 1 0 -odds_and_ends%1:14:00:: 08399977 1 2 -ode%1:10:00:: 06383659 1 0 -oder%1:17:00:: 09376979 1 0 -oder_river%1:17:00:: 09376979 1 0 -odesa%1:15:00:: 09017005 1 0 -odessa%1:15:00:: 09017005 1 1 -odessa%1:15:01:: 09145655 2 0 -odets%1:18:00:: 11212120 1 0 -odin%1:18:00:: 09582949 1 0 -odious%5:00:00:hateful:00 01460679 1 1 -odiously%4:02:01:: 00309632 1 0 -odiousness%1:07:00:: 04780958 1 0 -odist%1:18:00:: 10370881 1 0 -odium%1:12:00:: 07503430 2 0 -odium%1:26:00:: 14441610 1 0 -odo%1:18:00:: 11356636 1 0 -odo_of_lagery%1:18:00:: 11356636 1 0 -odoacer%1:18:00:: 11212226 1 0 -odobenidae%1:05:00:: 02081282 1 0 -odobenus%1:05:00:: 02081423 1 0 -odobenus_divergens%1:05:00:: 02081927 1 0 -odobenus_rosmarus%1:05:00:: 02081798 1 0 -odocoileus%1:05:00:: 02432139 1 0 -odocoileus_hemionus%1:05:00:: 02432511 1 0 -odocoileus_hemionus_columbianus%1:05:00:: 02432704 1 0 -odocoileus_virginianus%1:05:00:: 02432291 1 0 -odometer%1:06:00:: 03841143 1 0 -odonata%1:05:00:: 02267975 1 0 -odonate%1:05:00:: 02268148 1 0 -odontalgia%1:26:00:: 14323974 1 0 -odontaspididae%1:05:00:: 01487077 1 0 -odontaspis%1:05:00:: 01487312 1 0 -odontaspis_taurus%1:05:00:: 01487506 1 0 -odontiasis%1:22:00:: 13565781 1 0 -odontoceti%1:05:00:: 02066450 1 0 -odontoglossum%1:20:00:: 12073991 1 0 -odontoid_process%1:08:00:: 05588991 1 0 -odontology%1:09:00:: 06047430 1 0 -odontophorus%1:05:00:: 01805446 1 0 -odor%1:07:00:: 04980008 1 7 -odor%1:09:00:: 05713737 2 2 -odoriferous%5:00:00:unsavory:00 01628200 1 0 -odoriferous%5:00:01:fragrant:00 01052611 3 0 -odoriferous%5:00:02:malodorous:00 01054504 2 0 -odorize%2:39:00:: 02125641 1 0 -odorless%3:00:00:: 01057775 1 0 -odorous%3:00:00:: 01055073 1 0 -odorous%5:00:01:fragrant:00 01052611 3 0 -odorous%5:00:02:malodorous:00 01054504 2 0 -odour%1:07:00:: 04980008 2 0 -odour%1:09:00:: 05713737 1 0 -odourise%2:39:00:: 02125641 1 0 -odourless%3:00:00:: 01057775 1 0 -odovacar%1:18:00:: 11212226 1 0 -odovakar%1:18:00:: 11212226 1 0 -odynophagia%1:26:00:: 14329460 1 0 -odysseus%1:18:00:: 09592848 1 0 -odyssey%1:04:00:: 00308279 1 1 -odyssey%1:10:00:: 06382193 2 0 -oecanthus%1:05:00:: 02230355 1 0 -oecanthus_fultoni%1:05:00:: 02230634 1 0 -oecumenic%5:00:00:nonsectarian:00 02092460 1 0 -oecumenical%5:00:00:comprehensive:00 00527188 2 0 -oecumenical%5:00:00:nonsectarian:00 02092460 1 0 -oecumenism%1:14:00:: 08471949 1 0 -oed%1:10:00:: 06420424 1 0 -oedema%1:26:00:: 14316714 1 0 -oedipal_complex%1:12:00:: 07482782 1 0 -oedipus%1:18:00:: 09597798 1 0 -oedipus_complex%1:12:00:: 07482782 1 0 -oedipus_rex%1:18:00:: 09597798 1 0 -oedogoniaceae%1:05:00:: 01411727 1 0 -oedogoniales%1:05:00:: 01411556 1 0 -oedogonium%1:05:00:: 01411871 1 0 -oeil_de_boeuf%1:06:00:: 03841290 1 0 -oenanthe%1:05:00:: 01561613 2 0 -oenanthe%1:20:00:: 12940778 1 0 -oenanthe_aquatica%1:20:00:: 12941220 1 0 -oenanthe_crocata%1:20:00:: 12940939 1 0 -oengus%1:18:00:: 09507909 1 0 -oenologist%1:18:00:: 09616573 1 0 -oenology%1:09:00:: 05636171 1 0 -oenomel%1:13:00:: 07891095 1 0 -oenophile%1:18:00:: 10059067 1 0 -oenothera%1:20:00:: 12344131 1 0 -oenothera_biennis%1:20:00:: 12344483 1 0 -oenothera_fruticosa%1:20:00:: 12344700 1 0 -oenothera_macrocarpa%1:20:00:: 12344837 1 0 -oersted%1:18:00:: 11212426 2 0 -oersted%1:23:00:: 13638244 1 0 -oesophageal_reflux%1:26:00:: 14335485 1 0 -oesophageal_veins%1:08:00:: 05366812 1 0 -oesophagitis%1:26:00:: 14345815 1 0 -oesophagogastric_junction%1:08:00:: 05571341 1 0 -oesophagoscope%1:06:00:: 03296963 1 0 -oesophagus%1:08:00:: 05533948 1 0 -oesterreich%1:15:00:: 08845555 1 0 -oestradiol%1:27:00:: 14750316 1 0 -oestridae%1:05:00:: 02194414 1 0 -oestriol%1:27:00:: 14750622 1 0 -oestrogen%1:27:00:: 14749794 1 0 -oestrone%1:27:00:: 14750782 1 0 -oestrus%1:05:00:: 02194599 2 0 -oestrus%1:26:00:: 14038264 1 0 -oestrus_ovis%1:05:00:: 02194750 1 0 -oeuvre%1:06:00:: 03841417 1 0 -of_a_sudden%4:02:00:: 00061677 1 7 -of_age%5:00:00:old:02 01644541 1 4 -of_all_time%4:02:00:: 00146387 1 2 -of_course%4:02:00:: 00038625 1 123 -of_each_person%4:02:00:: 00501291 1 0 -of_import%3:00:00:: 01275562 1 0 -of_late%4:02:00:: 00107416 1 2 -of_necessity%4:02:00:: 00112393 1 1 -of_sound_mind%5:00:00:sane:00 02073678 1 0 -of_the_essence%5:00:00:important:00 01276150 1 0 -of_unsound_mind%5:00:00:insane:00 02076988 1 0 -off%2:41:00:: 02482425 1 0 -off%3:00:00:: 01651469 1 3 -off%3:00:02:: 01651896 3 0 -off%4:02:00:: 00235254 2 12 -off%4:02:03:: 00232936 1 13 -off%4:02:04:: 00193194 3 5 -off%5:00:00:inactive:08 00035254 5 0 -off%5:00:00:soured:00 02369869 4 0 -off%5:00:00:unsatisfactory:00 02082924 2 1 -off-and-on%5:00:00:broken:02 00290593 1 0 -off-axis_reflector%1:06:00:: 03516647 1 0 -off-base%5:00:00:peripheral:00 00332269 1 0 -off-broadway%1:15:00:: 09122397 1 1 -off-center%5:00:00:eccentric:00 00543494 1 0 -off-centered%5:00:00:eccentric:00 00543494 1 0 -off-color%5:00:00:dirty:02 00424787 2 0 -off-color%5:00:00:tasteless:02 02394793 1 0 -off-colour%5:00:00:tasteless:02 02394793 1 0 -off-day%1:28:00:: 15171738 1 0 -off-guard%5:00:00:unready:00 01932633 1 0 -off-hand%4:02:00:: 00259467 1 0 -off-key%5:00:00:inharmonious:00 01164420 1 0 -off-licence%1:06:00:: 03871371 1 0 -off-limits%5:00:00:restricted:00 02002683 1 0 -off-line%3:00:00:: 01650752 2 0 -off-line%3:00:02:: 01651044 1 0 -off-line_equipment%1:06:00:: 03842377 1 0 -off-line_operation%1:22:00:: 13436809 1 0 -off-putting%5:00:00:displeasing:00 01809541 1 0 -off-putting%5:00:00:unappealing:00 00171292 2 0 -off-roader%1:06:00:: 03792782 1 0 -off-season%1:28:00:: 15238761 1 0 -off-site%3:00:00:: 01637766 1 0 -off-speed_pitch%1:04:00:: 00107684 1 0 -off-street%3:00:00:: 01638178 1 0 -off-the-clock%4:02:00:: 00259878 1 0 -off-the-cuff%5:00:00:unprepared:00 01845451 1 0 -off-the-peg%5:00:00:ready-made:00 00672932 1 0 -off-the-rack%5:00:00:ready-made:00 00672932 1 0 -off-the-shelf%5:00:00:ready-made:00 00672932 1 0 -off-the-shoulder%5:00:00:unclothed:00 00459746 1 0 -off-the-wall%5:00:00:unconventional:01 00608791 1 0 -off-white%1:07:00:: 04961331 1 0 -off-white%5:00:00:achromatic:00 00392460 1 0 -off_and_on%4:02:00:: 00169094 1 1 -off_guard%5:00:00:unready:00 01932633 1 2 -off_her_guard%5:00:00:unready:00 01932633 1 0 -off_his_guard%5:00:00:unready:00 01932633 1 0 -off_one's_guard%5:00:00:unready:00 01932633 1 0 -off_the_beaten_track%5:00:00:far:00 00444220 1 1 -off_the_cuff%4:02:00:: 00169195 1 0 -off_the_hook%5:00:00:safe:01 02058379 1 0 -off_the_record%4:02:00:: 00169443 1 0 -off_year%1:28:00:: 15202424 2 0 -off_year%1:28:01:: 15202532 1 0 -off_your_guard%5:00:00:unready:00 01932633 1 0 -offal%1:13:00:: 07651774 1 0 -offbeat%1:10:00:: 07087102 1 0 -offbeat%5:00:00:unconventional:01 00609564 1 1 -offenbach%1:18:00:: 11212534 1 0 -offence%1:04:00:: 00980038 1 1 -offence%1:04:01:: 00766234 5 0 -offence%1:04:02:: 01224031 4 0 -offence%1:12:00:: 07517550 3 0 -offence%1:14:00:: 08081244 2 0 -offenceless%5:00:00:inoffensive:02 01628839 1 0 -offend%2:37:00:: 01793177 4 0 -offend%2:37:01:: 01789270 1 2 -offend%2:37:02:: 01810447 3 0 -offend%2:41:00:: 02566528 2 0 -offended%5:00:00:displeased:00 01807075 1 0 -offender%1:18:00:: 09633969 1 1 -offending%3:00:00:: 01631025 1 0 -offense%1:04:00:: 00980038 5 0 -offense%1:04:01:: 00766234 3 1 -offense%1:04:02:: 01224031 1 2 -offense%1:12:00:: 07517550 2 1 -offense%1:14:00:: 08081244 4 0 -offenseless%5:00:00:inoffensive:02 01628839 1 0 -offensive%1:04:00:: 00980038 1 1 -offensive%3:00:01:: 01624633 5 0 -offensive%3:00:02:: 01628302 3 0 -offensive%3:00:03:: 01628946 2 0 -offensive%3:00:04:: 01627965 4 0 -offensive%3:00:05:: 00908672 6 0 -offensive%5:00:00:offending:00 01631386 1 1 -offensive%5:00:00:unwholesome:00 02560035 7 0 -offensive_activity%1:04:00:: 01224031 1 0 -offensively%4:02:00:: 00306682 3 0 -offensively%4:02:01:: 00306909 2 0 -offensively%4:02:02:: 00307333 1 0 -offensiveness%1:07:00:: 04780958 1 0 -offer%1:04:01:: 00787061 3 0 -offer%1:10:00:: 07164546 2 2 -offer%1:10:01:: 07185076 1 2 -offer%2:31:00:: 00706557 4 4 -offer%2:32:06:: 00871623 13 0 -offer%2:32:12:: 00879764 12 0 -offer%2:39:06:: 02157361 8 1 -offer%2:40:00:: 02297142 2 31 -offer%2:40:01:: 02298632 7 1 -offer%2:40:02:: 02296726 1 95 -offer%2:40:03:: 02297409 6 3 -offer%2:40:09:: 02297742 5 3 -offer%2:40:10:: 02297948 11 0 -offer%2:41:00:: 02425112 3 12 -offer%2:41:03:: 02376289 10 0 -offer%2:42:00:: 02613487 9 0 -offer_price%1:21:00:: 13304508 1 0 -offer_up%2:42:00:: 02613487 1 0 -offerer%1:18:00:: 10371052 1 0 -offering%1:04:00:: 01041498 4 0 -offering%1:10:00:: 07164546 1 1 -offering%1:10:01:: 07185076 3 0 -offering%1:21:00:: 13270373 2 0 -offeror%1:18:00:: 10371052 1 0 -offertory%1:04:00:: 01036194 2 0 -offertory%1:21:00:: 13270648 1 0 -offhand%4:02:00:: 00263427 2 0 -offhand%4:02:01:: 00263657 1 0 -offhand%5:00:00:careless:00 00313217 2 0 -offhand%5:00:00:unprepared:00 01845451 1 0 -offhanded%4:02:00:: 00263427 2 0 -offhanded%4:02:01:: 00263657 1 0 -offhanded%5:00:00:careless:00 00313217 2 0 -offhanded%5:00:00:unprepared:00 01845451 1 0 -offhandedly%4:02:00:: 00263427 2 0 -offhandedly%4:02:01:: 00263657 1 0 -office%1:04:00:: 01033458 6 0 -office%1:04:01:: 00720565 3 6 -office%1:04:02:: 00586262 7 0 -office%1:06:00:: 03841666 1 62 -office%1:14:00:: 08352303 5 0 -office%1:14:01:: 08337324 2 24 -office%1:26:00:: 13945102 4 2 -office-bearer%1:18:00:: 10371221 1 0 -office_block%1:06:00:: 03842012 1 0 -office_boy%1:18:00:: 10371330 1 1 -office_building%1:06:00:: 03842012 1 0 -office_furniture%1:06:00:: 03842156 1 0 -office_of_inspector_general%1:14:00:: 08351380 1 0 -office_of_intelligence_support%1:14:00:: 08140767 1 0 -office_of_management_and_budget%1:14:00:: 08128492 1 0 -office_of_naval_intelligence%1:14:00:: 08194266 1 0 -office_of_the_dead%1:04:00:: 01034077 1 0 -office_staff%1:14:00:: 08352303 1 0 -officeholder%1:18:00:: 10202624 2 0 -officeholder%1:18:02:: 10371450 1 0 -officer%1:18:01:: 10448983 3 8 -officer%1:18:02:: 10371450 2 23 -officer%1:18:03:: 10317007 1 86 -officer%1:18:04:: 10371741 4 1 -officer%2:32:00:: 00752335 1 1 -officer's_mess%1:06:00:: 03842276 1 0 -official%1:18:00:: 10372076 2 3 -official%1:18:01:: 10372373 1 23 -official%3:00:00:: 01632537 1 10 -official%3:01:00:: 02991463 2 1 -official%5:00:00:confirmed:00 01634736 3 1 -official%5:00:00:established:00 01636363 5 0 -official%5:00:00:regular:00 01959918 4 0 -official_document%1:10:00:: 06479665 1 0 -official_emissary%1:18:00:: 10253479 1 0 -official_immunity%1:04:00:: 00214315 1 0 -officialdom%1:14:00:: 08357784 1 0 -officialese%1:10:00:: 07072195 1 0 -officialise%2:30:00:: 00523304 1 0 -officialize%2:30:00:: 00523304 1 0 -officially%4:02:00:: 00114310 1 2 -officially%4:02:01:: 00186491 2 1 -officiant%1:18:00:: 10373390 1 0 -officiate%2:33:00:: 01096497 2 1 -officiate%2:41:01:: 02382087 1 4 -officiating%1:04:00:: 01191755 1 0 -officiation%1:04:00:: 01191755 1 0 -officiation%1:04:01:: 00548173 2 0 -officious%5:00:00:intrusive:01 01352561 1 0 -officiously%4:02:00:: 00413222 1 0 -officiousness%1:07:00:: 04837931 1 0 -offing%1:17:00:: 09377125 2 0 -offing%1:28:00:: 15263675 1 0 -offish%5:00:00:unapproachable:00 00134562 1 0 -offload%2:35:00:: 01488123 2 0 -offload%2:40:00:: 02233081 1 0 -offprint%1:10:00:: 06269785 1 0 -offsaddle%2:35:00:: 01492576 1 1 -offset%1:06:00:: 04176747 6 0 -offset%1:10:00:: 06680570 5 0 -offset%1:19:00:: 11415721 4 0 -offset%1:20:00:: 13127843 3 0 -offset%1:21:00:: 13291189 2 0 -offset%1:28:00:: 15265518 1 0 -offset%2:36:00:: 01746940 5 0 -offset%2:36:01:: 01747085 4 0 -offset%2:40:01:: 02232044 3 0 -offset%2:42:00:: 02717831 2 2 -offset%2:42:01:: 02718015 1 5 -offset_lithography%1:10:00:: 06680818 1 0 -offset_printing%1:10:00:: 06680570 1 0 -offsetting_balance%1:21:00:: 13409850 1 0 -offshoot%1:19:00:: 11415721 1 0 -offshore%3:00:00:: 00464399 1 0 -offshore%4:02:00:: 00140049 1 1 -offshore%5:00:00:marine:00 01381340 2 0 -offshore_rig%1:06:00:: 03240683 1 0 -offside%1:04:00:: 00074324 1 0 -offside%3:00:00:: 01652158 1 0 -offside%4:02:00:: 00413573 1 0 -offsides%3:00:00:: 01652158 1 0 -offspring%1:05:00:: 01321579 3 0 -offspring%1:11:00:: 07295047 2 1 -offspring%1:18:00:: 10373998 1 3 -offstage%1:06:00:: 04592962 1 1 -offstage%3:00:00:: 01637904 1 0 -offstage%4:02:00:: 00259653 1 0 -offstage%4:02:01:: 00259573 2 0 -offstage%5:00:00:private:00 01860328 2 0 -ofo%1:10:00:: 06911180 2 0 -ofo%1:18:00:: 09663121 1 0 -oft%4:02:00:: 00035058 1 0 -often%4:02:00:: 00035058 1 153 -often%4:02:01:: 00059413 2 2 -often%4:02:02:: 00059547 3 0 -oftener%4:02:00:: 00035255 1 0 -oftenness%1:28:00:: 15278281 1 0 -oftentimes%4:02:00:: 00035058 1 1 -ofttimes%4:02:00:: 00035058 1 0 -ogalala%1:10:00:: 06911265 2 0 -ogalala%1:18:00:: 09663248 1 0 -ogcocephalidae%1:05:00:: 02547562 1 0 -ogden%1:15:00:: 09147504 2 0 -ogden%1:18:00:: 11212786 1 0 -ogden_nash%1:18:00:: 11200686 1 0 -ogdoad%1:23:00:: 13745086 1 0 -ogee%1:06:00:: 03842585 1 0 -ogee_arch%1:06:00:: 03842754 1 0 -ogive%1:06:00:: 03831537 1 0 -oglala%1:10:00:: 06911265 2 0 -oglala%1:18:00:: 09663248 1 0 -ogle%2:39:00:: 02164067 1 2 -ogler%1:18:00:: 10374282 1 0 -ogre%1:18:00:: 09490825 2 0 -ogre%1:18:01:: 10329945 1 0 -ogress%1:18:00:: 09490961 1 1 -oh%1:15:00:: 09130076 1 0 -ohio%1:15:00:: 09130076 1 9 -ohio%1:17:00:: 09377315 2 0 -ohio_buckeye%1:20:00:: 12768933 1 0 -ohio_goldenrod%1:20:00:: 12018188 1 0 -ohio_river%1:17:00:: 09377315 1 0 -ohio_state_university%1:06:00:: 03842868 1 0 -ohioan%1:18:00:: 09745041 1 0 -ohm%1:18:00:: 11213094 2 0 -ohm%1:23:00:: 13646816 1 0 -ohm's_law%1:09:00:: 05886455 1 0 -ohmage%1:19:00:: 11504225 1 0 -ohmic%3:01:00:: 02950264 1 1 -ohmic_resistance%1:19:00:: 11503968 1 0 -ohmmeter%1:06:00:: 03842986 1 0 -oig%1:14:00:: 08351380 1 0 -oil%1:06:01:: 03843092 2 5 -oil%1:13:00:: 07673397 4 0 -oil%1:27:00:: 14966667 1 10 -oil%1:27:01:: 14980579 3 0 -oil%2:29:00:: 00085626 2 0 -oil%2:35:00:: 01268571 1 1 -oil-bearing%5:00:00:productive:00 01866336 1 0 -oil-fired%5:00:00:fueled:00 01099134 1 0 -oil-hardened_steel%1:27:00:: 14968308 1 0 -oil-industry_analyst%1:18:00:: 09791151 1 0 -oil-rich_seed%1:20:00:: 11689483 1 0 -oil-soluble%5:00:00:soluble:01 02265719 1 0 -oil-water_interface%1:17:00:: 09377511 1 2 -oil_beetle%1:05:00:: 02179192 1 0 -oil_burner%1:06:00:: 03843221 1 0 -oil_business%1:14:00:: 08069050 1 1 -oil_cake%1:13:00:: 07801508 1 0 -oil_cartel%1:14:00:: 08237699 1 0 -oil_change%1:04:00:: 00268025 1 0 -oil_color%1:06:00:: 03843092 1 0 -oil_colour%1:06:00:: 03843092 1 0 -oil_company%1:14:00:: 08069241 1 0 -oil_conservation%1:04:00:: 00819756 1 0 -oil_filter%1:06:00:: 03843555 1 0 -oil_furnace%1:06:00:: 03843221 1 0 -oil_future%1:06:00:: 03843724 1 0 -oil_geologist%1:18:00:: 10420392 1 1 -oil_gland%1:08:00:: 05328115 1 0 -oil_heater%1:06:00:: 03843883 1 0 -oil_industry%1:14:00:: 08069050 1 0 -oil_lamp%1:06:00:: 03844045 1 0 -oil_meal%1:13:00:: 07801709 1 0 -oil_nut%1:20:00:: 12737251 1 0 -oil_of_cloves%1:27:00:: 14893271 1 0 -oil_of_turpentine%1:27:00:: 14893652 1 0 -oil_of_vitriol%1:27:00:: 15093482 1 0 -oil_of_wintergreen%1:13:00:: 07812913 1 0 -oil_paint%1:06:00:: 03844233 1 0 -oil_painter%1:18:00:: 10374762 1 0 -oil_painting%1:04:00:: 00938538 2 0 -oil_painting%1:06:00:: 03844349 1 2 -oil_palm%1:20:00:: 12590232 1 0 -oil_pipeline%1:06:00:: 03844459 1 0 -oil_pressure%1:19:00:: 11496746 1 0 -oil_production%1:04:00:: 00923130 1 0 -oil_pump%1:06:00:: 03844550 1 0 -oil_refinery%1:06:00:: 03844673 1 0 -oil_rig%1:06:00:: 03241093 1 0 -oil_rigger%1:18:00:: 10530862 1 0 -oil_shale%1:27:00:: 15038789 1 0 -oil_slick%1:06:00:: 03844965 1 0 -oil_stain%1:07:00:: 04695884 1 0 -oil_tanker%1:06:00:: 03845190 1 0 -oil_tycoon%1:18:00:: 10374849 1 0 -oil_well%1:06:00:: 03845360 1 2 -oilbird%1:05:00:: 01837526 1 0 -oilcan%1:06:00:: 03843316 1 0 -oilcloth%1:06:00:: 03843438 1 1 -oiled%3:00:00:: 01955031 1 1 -oiler%1:06:00:: 03845190 3 0 -oiler%1:06:01:: 03845360 2 0 -oiler%1:18:00:: 10374415 1 0 -oilfield%1:15:00:: 08659861 1 2 -oilfish%1:05:00:: 02622712 1 0 -oiliness%1:07:01:: 05000116 1 0 -oiliness%1:07:02:: 04868505 2 0 -oilman%1:18:00:: 10374541 2 0 -oilman%1:18:01:: 10374652 1 0 -oilpaper%1:27:00:: 14968402 1 0 -oilrig%1:06:00:: 03241093 1 0 -oilseed%1:20:00:: 11689483 1 0 -oilskin%1:06:00:: 03844815 1 0 -oilstone%1:06:00:: 03845107 1 0 -oilstove%1:06:00:: 03843883 1 0 -oily%5:00:00:coated:00 01699838 3 1 -oily%5:00:00:dirty:01 00422168 4 0 -oily%5:00:00:fatty:00 00992432 1 4 -oily%5:00:00:insincere:00 02181432 2 1 -oink%1:11:00:: 07384614 1 0 -oink%2:32:00:: 01054694 1 0 -ointment%1:06:00:: 03845550 1 0 -ointment%1:06:01:: 03128519 2 0 -oireachtas%1:14:00:: 08319777 1 0 -ois%1:14:00:: 08140767 1 0 -ojibwa%1:10:00:: 06911366 2 0 -ojibwa%1:18:00:: 09663472 1 0 -ojibway%1:10:00:: 06911366 2 0 -ojibway%1:18:00:: 09663472 1 0 -ojos_del_salado%1:17:00:: 09377657 1 0 -ok%1:10:00:: 06687701 2 0 -ok%1:15:00:: 09131654 1 0 -ok%4:02:00:: 00053004 1 1 -ok%5:00:00:satisfactory:00 02081114 1 0 -oka%1:20:00:: 12704041 3 0 -oka%1:23:01:: 13718574 1 0 -oka%1:23:02:: 13618418 2 0 -okapi%1:05:00:: 02439398 1 0 -okapia%1:05:00:: 02439286 1 0 -okapia_johnstoni%1:05:00:: 02439398 1 0 -okay%1:10:00:: 06687701 1 0 -okay%2:32:00:: 00806502 1 0 -okay%4:02:00:: 00015471 1 0 -okay%5:00:00:satisfactory:00 02081114 1 2 -okeechobee%1:17:00:: 09377861 1 0 -okeechobee_waterway%1:17:00:: 09259746 1 0 -okefenokee_swamp%1:17:00:: 09378014 1 0 -okeh%1:10:00:: 06687701 1 0 -oken%1:18:00:: 11213323 1 0 -okenfuss%1:18:00:: 11213323 1 0 -okey%1:10:00:: 06687701 1 0 -okinawa%1:04:00:: 01289061 2 0 -okinawa%1:15:00:: 08924400 1 0 -okinawa_campaign%1:04:00:: 01289061 1 0 -oklahoma%1:15:00:: 09131654 1 2 -oklahoma_city%1:15:00:: 09132597 1 0 -oklahoman%1:18:00:: 09745132 1 0 -okra%1:13:00:: 07733394 3 0 -okra%1:20:00:: 12171966 2 0 -okra%1:20:02:: 12172364 1 0 -okra_plant%1:20:00:: 12171966 1 0 -oktoberfest%1:04:00:: 00518303 2 0 -oktoberfest%1:13:00:: 07888058 1 0 -ola%1:27:00:: 14976170 1 0 -olaf_ii%1:18:00:: 11213552 1 0 -olav_ii%1:18:00:: 11213552 1 0 -old%1:28:00:: 15121302 1 0 -old%3:00:01:: 01638438 2 95 -old%3:00:02:: 01643620 1 108 -old%5:00:00:early:01 00820219 7 0 -old%5:00:00:experienced:00 00936297 4 1 -old%5:00:00:familiar:00 00966357 3 5 -old%5:00:00:genuine:00 01116118 6 0 -old%5:00:00:preceding:00 00127137 8 0 -old%5:00:03:past:00 01729566 5 0 -old-age_insurance%1:04:00:: 01088563 1 0 -old-age_pension%1:21:00:: 13384341 1 0 -old-age_pensioner%1:18:00:: 10374943 1 0 -old-fashioned%5:00:00:unfashionable:00 00974159 1 1 -old-fashionedness%1:07:00:: 04925895 1 0 -old-field_toadflax%1:20:00:: 12884100 1 0 -old-hat%5:00:00:unfashionable:00 00974159 2 0 -old-hat%5:00:00:unoriginal:00 01688757 1 0 -old-line%5:00:00:right:03 02030425 1 0 -old-maid's_bonnet%1:20:00:: 12546962 1 0 -old-maidish%5:00:00:fastidious:00 00985297 1 0 -old-man-of-the-woods%1:20:00:: 13059657 1 0 -old-time%5:00:00:fashionable:00 00973192 1 0 -old-timer%1:18:00:: 10376890 2 0 -old-timer%1:18:01:: 10749123 1 0 -old-womanish%5:00:00:fastidious:00 00985297 1 0 -old-world%5:00:00:nonmodern:00 01537628 1 0 -old_age%1:28:00:: 15153787 1 1 -old_bag%1:18:00:: 09832321 1 0 -old_bailey%1:14:00:: 08334581 1 0 -old_boy%1:18:00:: 10375052 2 1 -old_boy%1:18:01:: 10375129 3 0 -old_boy%1:18:02:: 10375214 1 7 -old_boy_network%1:14:00:: 08434704 1 0 -old_bulgarian%1:10:00:: 06944156 1 0 -old_bullion%1:18:00:: 10845763 1 0 -old_catholic%1:18:00:: 09680908 1 0 -old_catholic_church%1:14:00:: 08086050 1 0 -old_church_slavic%1:10:00:: 06944156 1 0 -old_church_slavonic%1:10:00:: 06944156 1 0 -old_codger%1:18:00:: 09933842 1 0 -old_colony%1:15:00:: 09095023 1 0 -old_country%1:15:00:: 08611954 1 2 -old_delhi%1:15:00:: 08903220 1 0 -old_dominion%1:15:00:: 09148970 1 0 -old_dominion_state%1:15:00:: 09148970 1 0 -old_english%1:10:00:: 06949591 1 0 -old_english_sheepdog%1:05:00:: 02105641 1 0 -old_faithful%1:17:00:: 09378178 1 0 -old_fashioned%1:13:00:: 07916437 1 0 -old_french%1:10:00:: 06965580 1 0 -old_frisian%1:10:00:: 06955418 1 0 -old_geezer%1:18:00:: 10376890 1 0 -old_glory%1:06:00:: 02701566 1 0 -old_gold%1:07:00:: 04966649 1 0 -old_growth%1:20:00:: 13240025 1 0 -old_guard%1:14:00:: 08417178 1 0 -old_hand%1:18:00:: 10749123 1 0 -old_hickory%1:18:00:: 11075823 1 0 -old_high_german%1:10:00:: 06950886 1 0 -old_icelandic%1:10:00:: 06953332 1 0 -old_irish%1:10:00:: 06960948 1 0 -old_ironsides%1:06:00:: 03093018 1 0 -old_italian%1:10:00:: 06964485 1 0 -old_lady%1:18:00:: 10375314 1 0 -old_latin%1:10:00:: 06962954 1 0 -old_line_state%1:15:00:: 09093608 1 0 -old_maid%1:04:00:: 00493858 5 0 -old_maid%1:18:00:: 10636488 1 4 -old_maid%1:18:02:: 10273352 4 0 -old_maid%1:20:01:: 11772408 3 0 -old_maid%1:20:02:: 12034141 2 0 -old_maid_flower%1:20:00:: 12034141 1 0 -old_man%1:18:01:: 10375402 3 1 -old_man%1:18:02:: 10375506 1 38 -old_man%1:18:03:: 10375214 2 3 -old_man%1:18:04:: 10375690 5 0 -old_man%1:20:00:: 11929477 4 0 -old_man's_beard%1:20:00:: 12608127 1 0 -old_man's_beard%1:20:01:: 11731157 3 0 -old_man's_beard%1:20:02:: 11731411 2 0 -old_man_of_the_mountain%1:20:00:: 12025507 1 0 -old_master%1:18:00:: 10375794 1 0 -old_money%1:26:00:: 14492723 1 0 -old_nick%1:18:00:: 09543353 1 0 -old_norse%1:10:00:: 06953167 1 0 -old_north_french%1:10:00:: 06965698 1 0 -old_north_state%1:15:00:: 09126305 1 0 -old_person%1:18:00:: 10376523 1 0 -old_prussian%1:10:00:: 06946017 1 0 -old_rose%1:07:00:: 04971447 1 0 -old_salt%1:18:00:: 10294602 1 0 -old_saxon%1:10:00:: 06952400 1 0 -old_school%1:14:00:: 08417572 1 1 -old_school_tie%1:06:00:: 03845990 1 0 -old_sledge%1:04:00:: 00498700 1 0 -old_south%1:15:00:: 09051609 1 3 -old_squaw%1:05:00:: 01853870 1 0 -old_stager%1:18:00:: 10749123 1 0 -old_style%1:10:00:: 06826974 1 0 -old_style_calendar%1:28:00:: 15174885 1 0 -old_style_font%1:10:00:: 06826974 1 0 -old_testament%1:10:00:: 06449735 1 5 -old_times%1:28:00:: 15252635 1 0 -old_witch_grass%1:20:00:: 12127237 1 0 -old_witchgrass%1:20:00:: 12127237 1 0 -old_wives'_tale%1:09:00:: 05978370 1 1 -old_woman%1:18:00:: 10377021 1 11 -old_woman%1:20:00:: 11931312 2 0 -old_world%1:15:00:: 08562454 1 0 -old_world_beaver%1:05:00:: 02363245 1 0 -old_world_buffalo%1:05:00:: 02407959 1 0 -old_world_chat%1:05:00:: 01560636 1 0 -old_world_coot%1:05:00:: 02018368 1 0 -old_world_coral_snake%1:05:00:: 01746359 1 0 -old_world_crayfish%1:05:00:: 01985493 1 0 -old_world_flycatcher%1:05:00:: 01555809 1 0 -old_world_hop_hornbeam%1:20:00:: 12287836 1 0 -old_world_jay%1:05:00:: 01580379 1 0 -old_world_least_weasel%1:05:00:: 02442572 1 0 -old_world_leishmaniasis%1:26:00:: 14181187 1 0 -old_world_mistletoe%1:20:00:: 12739332 1 0 -old_world_monkey%1:05:00:: 02484473 1 0 -old_world_oriole%1:05:00:: 01575745 1 0 -old_world_porcupine%1:05:00:: 02346998 1 0 -old_world_quail%1:05:00:: 01804921 1 0 -old_world_rabbit%1:05:00:: 02324850 1 0 -old_world_robin%1:05:00:: 01562265 1 0 -old_world_scops_owl%1:05:00:: 01624115 1 0 -old_world_vulture%1:05:00:: 01616764 1 0 -old_world_warbler%1:05:00:: 01564394 1 0 -old_world_white_pelican%1:05:00:: 02052365 1 0 -old_world_yew%1:20:00:: 11661909 1 0 -olde_worlde%5:00:00:fashionable:00 00973192 1 0 -olden%5:00:00:past:00 01730745 1 0 -oldenburg%1:18:00:: 11213726 1 0 -older%5:00:00:experienced:00 00936297 3 1 -older%5:00:00:old:02 01644225 1 11 -older%5:00:00:senior:00 02100031 2 3 -oldfield%1:18:00:: 11213966 1 0 -oldie%1:10:00:: 07052700 1 0 -oldish%5:00:00:old:02 01646366 1 0 -oldline%5:00:00:right:03 02030425 1 0 -oldness%1:07:00:: 04925348 2 0 -oldness%1:07:01:: 04927445 1 0 -oldster%1:18:00:: 10376523 1 2 -oldtimer%1:18:00:: 10376890 2 0 -oldtimer%1:18:01:: 10749123 1 0 -olduvai_gorge%1:17:00:: 09378349 1 0 -oldwench%1:05:00:: 02653497 1 0 -oldwife%1:05:00:: 02653497 1 0 -oldwife%1:05:01:: 01853870 2 0 -olea%1:20:00:: 12300625 1 0 -olea_cunninghamii%1:20:00:: 12301613 1 0 -olea_europaea%1:20:00:: 12301180 1 0 -olea_lanceolata%1:20:00:: 12301766 1 0 -oleaceae%1:20:00:: 12299988 1 0 -oleaceous%3:01:00:: 02770479 1 0 -oleaginous%5:00:00:fatty:00 00992432 2 0 -oleaginous%5:00:00:insincere:00 02181432 1 0 -oleaginousness%1:07:01:: 05000116 1 0 -oleaginousness%1:07:02:: 04868505 2 0 -oleales%1:20:00:: 12300441 1 0 -oleander%1:20:00:: 11773987 1 1 -oleander_fern%1:20:00:: 13204276 1 0 -oleandra%1:20:00:: 13204102 1 0 -oleandra_mollis%1:20:00:: 13204276 1 0 -oleandra_neriiformis%1:20:00:: 13204276 1 0 -oleandraceae%1:20:00:: 13203842 1 0 -olearia%1:20:00:: 11997775 1 0 -olearia_argophylla%1:20:00:: 11998317 1 0 -olearia_haastii%1:20:00:: 11998492 1 0 -oleaster%1:20:00:: 12325787 1 0 -oleaster_family%1:20:00:: 12325497 1 0 -olecranon%1:08:00:: 05593654 1 0 -olecranon_process%1:08:00:: 05593654 1 0 -oled%1:06:00:: 03854506 1 0 -olefin%1:27:00:: 14713120 1 0 -olefine%1:27:00:: 14713120 1 0 -oleic_acid%1:27:00:: 14968526 1 0 -olein%1:27:00:: 15079656 1 0 -oleo%1:13:00:: 07672914 1 0 -oleo_oil%1:27:00:: 14968795 1 0 -oleomargarine%1:13:00:: 07672914 1 0 -oleophilic%3:00:00:: 00492332 1 3 -oleophobic%3:00:00:: 00492595 1 1 -oleoresin%1:27:00:: 14896441 1 0 -oleoresin_capiscum%1:27:00:: 14968926 1 0 -olfaction%1:09:00:: 05658603 1 0 -olfactive%3:01:00:: 02770629 1 0 -olfactory%3:01:00:: 02770629 1 0 -olfactory_brain%1:08:00:: 05477686 1 0 -olfactory_bulb%1:08:00:: 05478139 1 0 -olfactory_impairment%1:26:00:: 14059021 1 0 -olfactory_modality%1:09:00:: 05658603 1 0 -olfactory_nerve%1:08:00:: 05477946 1 0 -olfactory_organ%1:08:00:: 05598147 1 0 -olfactory_perception%1:09:00:: 05713737 1 0 -olfactory_property%1:07:00:: 04980008 1 0 -olfactory_sensation%1:09:00:: 05713737 1 0 -olfersia%1:20:00:: 13198354 1 0 -olfersia_cervina%1:20:00:: 13198482 1 0 -olga_korbut%1:18:00:: 11109192 1 0 -olibanum%1:27:00:: 14873951 1 0 -oligarch%1:18:00:: 10377185 1 0 -oligarchic%3:01:00:: 02770742 1 0 -oligarchical%3:01:00:: 02770742 1 0 -oligarchy%1:14:00:: 08362455 1 0 -oligocene%1:28:00:: 15125679 1 0 -oligocene_epoch%1:28:00:: 15125679 1 0 -oligochaeta%1:05:00:: 01935012 1 0 -oligochaete%1:05:00:: 01935176 1 0 -oligochaete_worm%1:05:00:: 01935176 1 0 -oligoclase%1:27:00:: 14865316 1 0 -oligodactyly%1:26:00:: 14160665 1 0 -oligodendria%1:08:00:: 05468523 1 0 -oligodendrocyte%1:08:00:: 05468739 1 0 -oligodendroglia%1:08:00:: 05468523 1 0 -oligodontia%1:26:00:: 14160786 1 0 -oligomenorrhea%1:22:00:: 13524191 1 0 -oligoplites%1:05:00:: 02577532 1 0 -oligopoly%1:26:00:: 14444825 1 0 -oligoporus%1:20:00:: 13051866 1 0 -oligoporus_leucospongia%1:20:00:: 13052014 1 0 -oligosaccharide%1:27:00:: 14969044 1 0 -oligospermia%1:26:00:: 14571618 1 0 -oliguria%1:22:00:: 13524295 2 0 -oliguria%1:26:00:: 14507148 1 0 -olimbos%1:17:00:: 09378529 1 0 -olive%1:07:00:: 04974340 5 0 -olive%1:13:00:: 07767344 4 0 -olive%1:20:00:: 12301180 2 0 -olive%1:20:01:: 12301445 1 0 -olive%1:20:02:: 12301038 3 0 -olive%5:00:00:chromatic:00 00378782 1 2 -olive-brown%5:00:00:chromatic:00 00378591 1 0 -olive-colored%5:00:00:colored:00 00399606 1 0 -olive-coloured%5:00:00:colored:00 00399606 1 0 -olive-drab%5:00:00:chromatic:00 00378687 1 0 -olive-drab_uniform%1:06:00:: 03846234 1 0 -olive-gray%5:00:00:achromatic:00 00390630 1 0 -olive-green%1:07:00:: 04968139 1 0 -olive-grey%5:00:00:achromatic:00 00390630 1 0 -olive-like%5:00:00:rounded:00 02046828 1 0 -olive-sized%5:00:00:small:00 01394316 1 0 -olive-tree_agaric%1:20:00:: 13007629 1 0 -olive_branch%1:10:00:: 07167186 1 0 -olive_brown%1:07:00:: 04974248 1 0 -olive_drab%1:06:00:: 03846100 3 0 -olive_drab%1:06:01:: 03846234 2 0 -olive_drab%1:07:00:: 04974463 1 0 -olive_family%1:20:00:: 12299988 1 0 -olive_green%1:07:00:: 04968139 1 0 -olive_oil%1:13:00:: 07674508 1 0 -olive_ridley%1:05:00:: 01664674 1 0 -olive_tree%1:20:00:: 12300840 1 0 -olivelike%5:00:00:rounded:00 02046828 1 0 -olivenite%1:27:00:: 14684272 1 0 -oliver%1:18:00:: 11214153 1 0 -oliver_cromwell%1:18:00:: 10916105 1 0 -oliver_ellsworth%1:18:00:: 10958381 1 0 -oliver_goldsmith%1:18:00:: 11005429 1 0 -oliver_hardy%1:18:00:: 11028780 1 0 -oliver_hazard_perry%1:18:00:: 11230158 1 0 -oliver_heaviside%1:18:00:: 11037495 1 0 -oliver_stone%1:18:00:: 11319704 1 0 -oliver_wendell_holmes%1:18:00:: 11056947 1 0 -oliver_wendell_holmes_jr.%1:18:00:: 11057076 1 0 -olivier%1:18:00:: 11214320 1 0 -olivine%1:27:00:: 14684111 1 0 -olla%1:27:00:: 14976170 1 0 -olla_podrida%1:13:00:: 07589967 1 0 -ollari%1:10:00:: 06982022 1 0 -olm%1:05:00:: 01634227 1 0 -olmec%1:18:00:: 09649067 1 0 -olmsted%1:18:00:: 11214513 1 0 -ology%1:09:00:: 05998724 1 1 -olympia%1:15:00:: 09154000 1 0 -olympia%1:15:01:: 08790953 2 0 -olympiad%1:11:00:: 07457126 2 0 -olympiad%1:28:00:: 15204720 1 0 -olympian%1:18:00:: 10377291 1 0 -olympian%1:18:01:: 09553347 2 0 -olympian%3:01:00:: 03093184 2 0 -olympian%3:01:01:: 03093379 1 0 -olympian%5:00:00:extraordinary:00 01676026 4 0 -olympian%5:00:00:superior:01 02339791 3 0 -olympian_games%1:04:00:: 00516720 1 0 -olympian_zeus%1:06:00:: 03846431 1 0 -olympic%3:01:00:: 03093076 1 4 -olympic%3:01:01:: 03093379 2 0 -olympic_games%1:04:00:: 00516720 2 0 -olympic_games%1:11:00:: 07457126 1 0 -olympic_god%1:18:00:: 09553347 1 0 -olympic_national_park%1:15:00:: 08608157 1 0 -olympic_salamander%1:05:00:: 01635480 1 0 -olympics%1:11:00:: 07457126 1 2 -olympus%1:17:00:: 09378529 1 0 -omaha%1:05:00:: 02383813 4 0 -omaha%1:10:00:: 06911484 3 0 -omaha%1:15:00:: 09110229 2 0 -omaha%1:18:00:: 09663628 1 0 -oman%1:15:00:: 08975106 1 0 -omani%1:18:00:: 09725653 1 0 -omani%3:01:00:: 03093551 1 0 -omani_monetary_unit%1:23:00:: 13697011 1 0 -omani_rial%1:23:00:: 13697134 1 0 -omar_bradley%1:18:00:: 10860807 1 0 -omar_khayyam%1:18:00:: 11214707 1 0 -omar_nelson_bradley%1:18:00:: 10860807 1 0 -omasum%1:05:00:: 02399791 1 0 -omayyad%1:14:00:: 08159331 1 0 -omb%1:14:00:: 08128492 1 0 -ombu%1:20:00:: 11855842 1 0 -ombudsman%1:18:00:: 10377394 1 0 -omdurman%1:04:00:: 01289444 2 0 -omdurman%1:15:00:: 09030596 1 0 -omega%1:10:00:: 06836599 2 0 -omega%1:11:00:: 07355014 1 0 -omega-3%1:27:00:: 14742028 1 0 -omega-3_fatty_acid%1:27:00:: 14742028 1 0 -omega-6%1:27:00:: 14742271 1 0 -omega-6_fatty_acid%1:27:00:: 14742271 1 0 -omega_centauri%1:17:00:: 09378801 1 0 -omelet%1:13:00:: 07842753 1 0 -omelet_pan%1:06:00:: 03846677 1 0 -omelette%1:13:00:: 07842753 1 0 -omelette_pan%1:06:00:: 03846677 1 0 -omen%1:11:00:: 07286368 1 3 -omen%2:32:00:: 00871942 1 0 -omental_bursa%1:08:00:: 05428136 1 0 -omentum%1:08:00:: 05429525 1 0 -omeprazole%1:27:00:: 14777606 1 0 -omerta%1:10:00:: 06669013 1 0 -omicron%1:10:00:: 06835630 1 0 -ominous%5:00:00:alarming:00 00194357 1 10 -ominous%5:00:00:unpropitious:00 00178126 2 0 -ominously%4:02:00:: 00237423 1 3 -omissible%5:00:00:incidental:00 01857410 1 0 -omission%1:04:01:: 00074624 1 2 -omission%1:09:00:: 05706954 4 0 -omission%1:22:00:: 13524399 3 1 -omission%1:26:00:: 14423614 2 1 -omissive%3:01:00:: 02765190 1 0 -omit%2:31:00:: 00614999 2 0 -omit%2:31:01:: 00615774 1 10 -omiya%1:15:00:: 08923884 1 0 -ommastrephes%1:05:00:: 01971850 1 0 -ommatidium%1:08:00:: 05312614 1 0 -ommiad%1:14:00:: 08159331 1 0 -omnibus%1:06:00:: 02924116 2 0 -omnibus%1:10:00:: 06592844 1 0 -omnibus%5:00:00:comprehensive:00 00528041 1 0 -omnidirectional%3:01:00:: 02714141 1 0 -omnidirectional_antenna%1:06:00:: 03846772 1 0 -omnidirectional_radio_range%1:06:00:: 03846970 1 0 -omnidirectional_range%1:06:00:: 03846970 1 0 -omnifarious%5:00:00:varied:00 02507209 1 0 -omnipotence%1:26:00:: 14459185 1 0 -omnipotent%5:00:00:powerful:00 01826186 1 0 -omnipresence%1:26:00:: 13958456 1 0 -omnipresent%5:00:00:present:02 01847515 1 0 -omnirange%1:06:00:: 03846970 1 0 -omniscience%1:26:00:: 14458943 1 0 -omniscient%5:00:00:wise:00 02569454 1 1 -omnium-gatherum%1:14:00:: 08399977 1 0 -omnivore%1:05:00:: 02075612 2 0 -omnivore%1:18:00:: 10377542 1 0 -omnivorous%3:00:00:: 00315109 1 0 -omomyid%1:05:00:: 02500749 1 0 -omomyid_group%1:05:00:: 02500749 1 0 -omophagia%1:04:00:: 00842519 1 0 -omotic%1:10:00:: 06991117 1 0 -omphalocele%1:26:00:: 14297489 1 0 -omphalos%1:08:00:: 05556595 1 0 -omphaloskepsis%1:09:00:: 05787848 1 0 -omphalotus%1:20:00:: 13005166 1 0 -omphalotus_illudens%1:20:00:: 13005329 1 0 -omphalus%1:08:00:: 05556595 1 0 -omsk%1:15:00:: 09010565 1 0 -on%3:00:00:: 01651196 1 6 -on%3:00:02:: 01651741 2 0 -on%4:02:00:: 00068368 1 40 -on%4:02:01:: 00069346 2 2 -on%4:02:02:: 00069472 3 1 -on-going%5:00:00:current:00 00667822 1 0 -on-key%5:00:00:harmonious:00 01163759 1 0 -on-license%1:10:00:: 06551226 1 0 -on-line%3:00:00:: 01650401 2 0 -on-line%3:00:02:: 01650883 1 0 -on-line%5:00:00:current:00 00667936 3 0 -on-line_database%1:10:00:: 06588511 1 0 -on-off_switch%1:06:00:: 04445952 1 0 -on-site%3:00:00:: 01637454 1 1 -on-street%3:00:00:: 01638311 1 0 -on-the-job%3:01:00:: 02771328 1 0 -on-the-scene%5:00:00:on-site:00 01637583 1 1 -on-the-spot%5:00:00:on-site:00 01637583 1 1 -on/off_switch%1:06:00:: 04445952 1 0 -on_a_higher_floor%4:02:00:: 00094545 1 0 -on_a_lower_floor%4:02:00:: 00094396 1 0 -on_a_regular_basis%4:02:00:: 00195024 1 0 -on_air%4:02:00:: 00280886 1 0 -on_all_fours%4:02:00:: 00169546 1 1 -on_an_individual_basis%4:02:00:: 00207668 1 0 -on_an_irregular_basis%4:02:00:: 00195185 1 0 -on_and_off%4:02:00:: 00169094 1 0 -on_approval%4:02:00:: 00169769 1 0 -on_average%4:02:00:: 00169659 1 0 -on_base%4:02:00:: 00249736 1 0 -on_board%4:02:00:: 00249878 1 0 -on_camera%4:02:00:: 00514475 1 0 -on_earth%4:02:00:: 00508255 1 0 -on_faith%4:02:00:: 00169881 1 0 -on_fire%5:00:00:lighted:00 00475308 1 1 -on_guard%5:00:00:wary:00 00162661 1 1 -on_hand%5:00:00:available:00 00185020 1 4 -on_it%4:02:00:: 00468127 1 7 -on_occasion%4:02:00:: 00021212 1 2 -on_one's_guard%5:00:00:wary:00 00162661 1 0 -on_one_hand%4:02:00:: 00119798 1 0 -on_paper%4:02:01:: 00246672 1 4 -on_purpose%4:02:00:: 00062330 1 0 -on_request%4:02:00:: 00159771 1 4 -on_tap%5:00:00:available:00 00185160 2 0 -on_tap%5:00:02:available:00 00185363 1 0 -on_that%4:02:00:: 00468127 1 0 -on_that_point%4:02:00:: 00109461 1 0 -on_the_average%4:02:00:: 00169659 1 1 -on_the_button%4:02:00:: 00368663 1 0 -on_the_button%5:00:00:precise:00 01839099 1 0 -on_the_coattails%4:02:00:: 00119357 1 0 -on_the_contrary%4:02:02:: 00170412 1 10 -on_the_dot%4:02:00:: 00368663 1 0 -on_the_face_of_it%4:02:00:: 00039941 1 1 -on_the_fence%5:00:00:indecisive:01 00686356 1 0 -on_the_fly%4:02:00:: 00170614 1 0 -on_the_go%5:00:00:active:01 00033359 1 0 -on_the_hook%5:00:00:dangerous:00 02060359 1 1 -on_the_job%5:00:00:employed:00 00864461 1 7 -on_the_loose%5:00:00:free:00 01062114 1 0 -on_the_nose%4:02:00:: 00368663 1 0 -on_the_nose%5:00:00:precise:00 01839099 1 0 -on_the_offensive%5:00:00:offensive:03 01630033 1 0 -on_the_one_hand%4:02:00:: 00119798 1 10 -on_the_other_hand%4:02:00:: 00119578 1 26 -on_the_q.t.%4:02:00:: 00166608 1 0 -on_the_qt%4:02:00:: 00166608 1 0 -on_the_qui_vive%1:07:00:: 04664628 1 0 -on_the_road%1:04:00:: 00311528 1 1 -on_the_side%4:02:00:: 00244201 1 1 -on_the_sly%4:02:01:: 00106170 1 0 -on_the_spot%4:02:00:: 00170715 1 3 -on_the_spot%4:02:01:: 00170867 3 0 -on_the_spot%4:02:02:: 00171027 2 0 -on_the_spur_of_the_moment%4:02:00:: 00171135 1 0 -on_the_table%5:00:00:flexible:02 01024400 1 0 -on_the_way%4:02:00:: 00171322 1 10 -on_the_whole%4:02:00:: 00151755 1 4 -on_the_wing%4:02:00:: 00505010 1 1 -on_time%4:02:00:: 00171457 1 0 -on_tour%1:04:00:: 00311528 1 0 -on_trial%5:00:00:unproved:00 01894576 1 1 -on_your_guard%5:00:00:wary:00 00162661 1 0 -onager%1:05:00:: 02390834 2 0 -onager%1:06:00:: 02981911 1 0 -onagraceae%1:20:00:: 12341126 1 0 -onanism%1:04:00:: 00855674 1 0 -onanism%1:04:01:: 00849059 2 0 -onanist%1:18:00:: 10299700 1 0 -once%4:02:00:: 00118869 1 98 -once%4:02:01:: 00118965 3 21 -once%4:02:02:: 00181342 2 28 -once-over%1:04:00:: 00143626 1 0 -once_again%4:02:00:: 00040365 1 13 -once_and_for_all%4:02:00:: 00092985 1 2 -once_in_a_while%4:02:00:: 00021212 1 1 -once_more%4:02:00:: 00040365 1 15 -onchocerciasis%1:26:00:: 14454030 1 0 -oncidium%1:20:00:: 12074408 1 0 -oncidium_papilio%1:20:00:: 12080820 1 0 -oncidium_papilio_kramerianum%1:20:00:: 12080588 1 0 -oncogene%1:08:00:: 05440410 1 0 -oncologic%3:01:00:: 02913243 1 0 -oncological%3:01:00:: 02913243 1 0 -oncologist%1:18:00:: 10377633 1 0 -oncology%1:09:00:: 06054266 1 0 -oncoming%1:11:00:: 07325990 1 0 -oncoming%5:00:00:moving:02 01562416 1 1 -oncorhynchus%1:05:00:: 02535909 1 0 -oncorhynchus_keta%1:05:00:: 02536685 1 0 -oncorhynchus_kisutch%1:05:00:: 02536864 1 0 -oncorhynchus_nerka%1:05:00:: 02536165 1 0 -oncorhynchus_tshawytscha%1:05:00:: 02536456 1 0 -oncovin%1:06:00:: 04535826 1 0 -ondaatje%1:18:00:: 11214926 1 0 -ondatra%1:05:00:: 02338029 1 0 -ondatra_zibethica%1:05:00:: 02338145 1 0 -one%1:09:00:: 05870055 2 26 -one%1:23:00:: 13742573 1 44 -one%5:00:00:cardinal:00 02186338 1 422 -one%5:00:00:combined:00 01330506 6 0 -one%5:00:00:extraordinary:00 01677623 4 1 -one%5:00:00:incomparable:00 00505410 7 0 -one%5:00:00:indefinite:00 00702642 5 1 -one%5:00:00:same:00 02064427 3 3 -one%5:00:00:united:00 02477885 2 4 -one-and-one%1:04:00:: 00111222 1 0 -one-armed%5:00:00:armed:03 00146693 1 0 -one-armed_bandit%1:06:00:: 04243546 1 0 -one-billionth%1:23:00:: 13739721 1 0 -one-celled%5:00:00:noncellular:00 00328401 1 0 -one-dimensional%3:00:00:: 00658259 2 0 -one-dimensional%3:00:02:: 00659715 1 0 -one-dimensional_language%1:10:00:: 06901163 1 0 -one-dimensionality%1:07:00:: 05063218 1 0 -one-eared%5:00:00:monaural:00 00241004 1 0 -one-eighth%1:23:00:: 13738140 1 2 -one-eyed%5:00:00:eyed:00 00954233 1 0 -one-fifth%1:23:00:: 13737830 1 3 -one-flowered_pyrola%1:20:00:: 12258101 1 0 -one-flowered_wintergreen%1:20:00:: 12258101 1 0 -one-fourth%1:23:00:: 13737480 1 1 -one-half%1:23:00:: 13736799 1 7 -one-handed%5:00:00:handed:00 02027906 1 0 -one-hitter%1:04:00:: 00475142 1 0 -one-horse%5:00:00:provincial:00 00637455 1 1 -one-humped%3:01:00:: 02770951 1 0 -one-hundred-millionth%1:23:00:: 13739612 1 0 -one-hundred-thousandth%1:23:00:: 13739396 1 0 -one-hundredth%1:23:00:: 13739051 1 0 -one-liner%1:10:00:: 06779642 1 0 -one-man%5:00:00:single:05 02214518 1 0 -one-man_rule%1:14:00:: 08440630 1 0 -one-member%5:00:00:single:05 02215769 1 0 -one-millionth%1:23:00:: 13739507 1 0 -one-night_stand%1:04:00:: 00100437 2 0 -one-night_stand%1:04:01:: 00856559 1 0 -one-ninth%1:23:00:: 13738235 1 0 -one-off%1:11:00:: 07296083 1 0 -one-on-one%4:02:00:: 00044579 1 0 -one-on-one%5:00:00:individual:00 00494198 2 0 -one-on-one%5:00:00:private:00 01860465 1 0 -one-party%5:00:00:unilateral:00 00237156 1 0 -one-person%5:00:00:single:05 02214518 1 0 -one-piece%3:00:00:: 01649876 1 0 -one-quadrillionth%1:23:00:: 13739934 1 0 -one-quarter%1:23:00:: 13737480 1 0 -one-quintillionth%1:23:00:: 13740051 1 0 -one-seed%5:00:00:seedy:00 02255736 1 0 -one-seeded%5:00:00:seedy:00 02255736 1 0 -one-seventh%1:23:00:: 13738043 1 0 -one-sided%3:00:02:: 01760009 1 0 -one-sided%3:00:04:: 00236989 2 0 -one-sided%5:00:00:partial:01 01723091 3 0 -one-sidedly%4:02:00:: 00253117 1 0 -one-sixteenth%1:23:00:: 13738585 1 0 -one-sixth%1:23:00:: 13737952 1 0 -one-sixtieth%1:23:00:: 13738840 1 0 -one-sixty-fourth%1:23:00:: 13738939 1 0 -one-spot%1:06:00:: 03847214 1 0 -one-step%1:04:00:: 00535732 1 0 -one-step%2:38:00:: 01897677 1 0 -one-ten-thousandth%1:23:00:: 13739278 1 0 -one-tenth%1:23:00:: 13738327 1 1 -one-third%1:23:00:: 13737190 1 7 -one-thirty-second%1:23:00:: 13738705 1 0 -one-thousandth%1:23:00:: 13739170 1 1 -one-time%5:00:00:past:00 01729566 1 0 -one-to-one%5:00:00:matched:00 01487048 1 0 -one-trillionth%1:23:00:: 13739826 1 0 -one-twelfth%1:23:00:: 13738459 1 0 -one-upmanship%1:04:00:: 00412006 1 1 -one-way%5:00:00:unidirectional:00 00234378 1 0 -one-way_light_time%1:28:00:: 15130749 1 0 -one-way_street%1:06:00:: 03847334 2 0 -one-way_street%1:09:00:: 05963973 1 0 -one-winged%5:00:00:winged:00 02567738 1 0 -one-woman%5:00:00:single:05 02214518 1 0 -one-year%3:00:04:: 00678024 1 0 -one-year-old%5:00:00:young:00 01647601 1 0 -one_after_another%4:02:01:: 00505853 1 2 -one_and_only%5:00:00:incomparable:00 00505410 1 0 -one_at_a_time%4:02:00:: 00505853 1 2 -one_by_one%4:02:00:: 00156387 2 1 -one_by_one%4:02:01:: 00207668 3 0 -one_by_one%4:02:02:: 00505853 1 6 -one_c%1:23:00:: 13750415 1 0 -one_dollar_bill%1:21:00:: 13395897 1 0 -one_hundred%5:00:00:cardinal:00 02196107 1 10 -one_hundred_eighty%5:00:00:cardinal:00 02198069 1 0 -one_hundred_fifteen%5:00:00:cardinal:00 02196543 1 0 -one_hundred_fifty%5:00:00:cardinal:00 02197364 1 0 -one_hundred_fifty-five%5:00:00:cardinal:00 02197476 1 0 -one_hundred_five%5:00:00:cardinal:00 02196333 1 0 -one_hundred_forty%5:00:00:cardinal:00 02197130 1 0 -one_hundred_forty-five%5:00:00:cardinal:00 02197244 1 0 -one_hundred_ninety%5:00:00:cardinal:00 02198187 1 0 -one_hundred_one%5:00:00:cardinal:00 02196211 1 0 -one_hundred_seventy%5:00:00:cardinal:00 02197828 1 0 -one_hundred_seventy-five%5:00:00:cardinal:00 02197944 1 0 -one_hundred_sixty%5:00:00:cardinal:00 02197595 1 0 -one_hundred_sixty-five%5:00:00:cardinal:00 02197708 1 0 -one_hundred_ten%5:00:00:cardinal:00 02196439 1 0 -one_hundred_thirty%5:00:00:cardinal:00 02196891 1 0 -one_hundred_thirty-five%5:00:00:cardinal:00 02197007 1 0 -one_hundred_twenty%5:00:00:cardinal:00 02196657 1 0 -one_hundred_twenty-five%5:00:00:cardinal:00 02196769 1 0 -one_iron%1:06:00:: 03244775 1 0 -one_million_million%1:23:00:: 13752172 2 0 -one_million_million%1:23:01:: 13752443 1 0 -one_million_million_million%1:23:00:: 13752679 1 0 -one_of_the_boys%1:18:00:: 10377865 1 0 -one_one's_coattails%4:02:00:: 00119357 1 0 -one_percent%1:23:00:: 13739051 1 2 -one_shot%1:06:00:: 04113641 1 0 -one_thousand%1:23:00:: 13750844 1 0 -one_thousand%5:00:00:cardinal:00 02198752 1 2 -one_thousand_million%1:23:00:: 13751829 1 0 -one_thousand_thousand%1:23:00:: 13751533 1 0 -one_time%4:02:00:: 00118869 1 0 -onega%1:17:00:: 09332598 1 0 -oneida%1:10:00:: 06916505 2 0 -oneida%1:18:00:: 09663999 1 0 -oneiric%3:01:00:: 02771079 1 0 -oneirism%1:09:00:: 05769471 1 0 -oneiromancer%1:18:00:: 10377732 1 0 -oneiromancy%1:09:00:: 05777599 1 0 -oneness%1:07:00:: 04743370 1 2 -onerous%5:00:00:heavy:02 01189109 1 0 -onerously%4:02:00:: 00413649 1 0 -onerousness%1:07:00:: 04711031 1 0 -onetime%5:00:00:past:00 01729566 1 2 -ongoing%5:00:00:current:00 00667822 1 0 -oni%1:14:00:: 08194266 1 0 -onion%1:13:00:: 07722217 3 0 -onion%1:20:00:: 12432808 2 0 -onion%1:20:02:: 12433081 1 0 -onion_bagel%1:13:00:: 07693889 1 0 -onion_bread%1:13:00:: 07684422 1 0 -onion_butter%1:13:00:: 07855721 1 0 -onion_dome%1:06:00:: 03847471 1 0 -onion_louse%1:05:00:: 02272552 1 0 -onion_mildew%1:20:00:: 12981301 1 0 -onion_plant%1:20:00:: 12432808 1 0 -onion_roll%1:13:00:: 07692405 1 0 -onion_salt%1:13:00:: 07813495 1 0 -onion_smut%1:20:00:: 13068735 1 0 -onion_stem%1:20:00:: 13014879 1 0 -onion_thrips%1:05:00:: 02272552 1 0 -onion_yellow-dwarf_virus%1:05:00:: 01341580 1 0 -onion_yellow_dwarf%1:26:00:: 14285008 1 0 -onionskin%1:27:00:: 14969254 1 0 -oniscidae%1:05:00:: 01991676 1 0 -oniscus%1:05:00:: 01991808 1 0 -online%3:00:00:: 01650401 2 0 -online%3:00:02:: 01650883 1 0 -online%5:00:00:current:00 00667936 3 0 -onlooker%1:18:00:: 10378026 1 3 -only%4:02:00:: 00010759 3 13 -only%4:02:01:: 00008600 2 226 -only%4:02:02:: 00004722 1 258 -only%4:02:03:: 00505114 6 2 -only%4:02:04:: 00010914 4 6 -only%4:02:05:: 00011011 7 0 -only%4:02:06:: 00028319 5 4 -only%5:00:00:exclusive:00 01862697 2 0 -only%5:00:00:single:05 02214736 1 0 -only_if%4:02:00:: 00505114 1 1 -only_too%4:02:00:: 00250258 1 2 -only_when%4:02:00:: 00505114 1 3 -ono%1:18:00:: 11215205 1 0 -onobrychis%1:20:00:: 12552081 1 0 -onobrychis_viciaefolia%1:20:00:: 12552309 1 0 -onobrychis_viciifolia%1:20:00:: 12552309 1 0 -onoclea%1:20:00:: 13198728 1 0 -onoclea_sensibilis%1:20:00:: 13198914 1 0 -onoclea_struthiopteris%1:20:00:: 13198054 1 0 -onomancer%1:18:00:: 10378113 1 0 -onomancy%1:09:00:: 05777722 1 0 -onomastic%3:01:00:: 02771174 1 0 -onomasticon%1:10:00:: 06420573 1 0 -onomastics%1:09:00:: 06178995 1 0 -onomatomania%1:16:00:: 09183532 1 0 -onomatopoeia%1:10:00:: 07104574 1 0 -onomatopoeic%3:00:00:: 01217579 2 0 -onomatopoeic%3:01:00:: 03137397 1 0 -onomatopoeical%3:00:00:: 01217579 1 0 -onomatopoetic%3:00:00:: 01217579 2 0 -onomatopoetic%3:01:00:: 03137397 1 0 -onondaga%1:10:00:: 06916601 2 0 -onondaga%1:18:00:: 09664121 1 0 -ononis%1:20:00:: 12552658 1 0 -ononis_repens%1:20:00:: 12552893 1 0 -ononis_spinosa%1:20:00:: 12553114 1 0 -onopordon%1:20:00:: 11998648 1 0 -onopordon_acanthium%1:20:00:: 11998888 1 0 -onopordum%1:20:00:: 11998648 1 0 -onopordum_acanthium%1:20:00:: 11998888 1 0 -onosmodium%1:20:00:: 12822284 1 0 -onrush%1:04:00:: 00972621 1 2 -onrush%1:11:00:: 07440617 2 1 -onsager%1:18:00:: 11215384 1 0 -onset%1:04:01:: 00972621 2 0 -onset%1:11:00:: 07325990 1 42 -onshore%3:00:04:: 00464195 1 1 -onshore%4:02:00:: 00140168 1 1 -onshore%5:00:00:terrestrial:00 00125068 2 0 -onside%3:00:00:: 01652033 1 0 -onslaught%1:04:00:: 00972621 2 2 -onslaught%1:10:00:: 07083441 3 0 -onslaught%1:11:00:: 07306160 1 2 -onstage%3:00:00:: 01638053 1 0 -onstage%4:02:00:: 00259775 1 0 -ontario%1:15:00:: 08827126 2 0 -ontario%1:17:00:: 09332770 1 0 -ontogenesis%1:22:00:: 13489037 1 0 -ontogenetic%3:01:00:: 02942769 1 0 -ontogeny%1:22:00:: 13489037 1 0 -ontological%3:01:00:: 02920464 1 0 -ontology%1:09:00:: 06162847 2 0 -ontology%1:09:01:: 06162979 1 0 -onus%1:09:00:: 05832745 1 0 -onward%4:02:00:: 00103859 1 0 -onward%4:02:01:: 00067265 2 0 -onward_motion%1:04:00:: 00282050 1 0 -onwards%4:02:00:: 00067265 1 0 -onychium%1:20:00:: 13211305 1 0 -onychogalea%1:05:00:: 01878500 1 0 -onycholysis%1:26:00:: 14079740 1 0 -onychomys%1:05:00:: 02337774 1 0 -onychophora%1:05:00:: 01999374 1 0 -onychophoran%1:05:00:: 01999767 1 0 -onychosis%1:26:00:: 14079861 1 0 -onymous%3:00:00:: 00121034 1 0 -onyx%1:27:00:: 14969523 1 0 -onyx_marble%1:27:00:: 14665469 1 0 -onyxis%1:08:00:: 05584605 1 0 -oocyte%1:08:00:: 05458576 1 0 -oodles%1:23:00:: 13777509 1 0 -oogenesis%1:22:00:: 13524612 1 0 -ooh%2:32:00:: 00865776 1 0 -oology%1:09:00:: 06073331 1 0 -oolong%1:13:00:: 07935379 1 0 -oom_paul_kruger%1:18:00:: 11111577 1 0 -oomph%1:07:00:: 04635482 2 0 -oomph%1:07:01:: 04686935 1 0 -oomycetes%1:20:00:: 12977296 1 0 -oophorectomy%1:04:00:: 00686570 1 0 -oophoritis%1:26:00:: 14351002 1 0 -oophorosalpingectomy%1:04:00:: 00686682 1 0 -oort%1:18:00:: 11215541 1 0 -oort_cloud%1:14:00:: 08270662 1 0 -oosphere%1:20:00:: 11549391 1 0 -oospore%1:20:00:: 11549245 1 0 -ootid%1:08:00:: 05458173 1 0 -ooze%1:11:00:: 07432119 2 0 -ooze%1:27:00:: 14956661 1 0 -ooze%2:29:00:: 00067999 2 0 -ooze%2:38:00:: 02071974 1 0 -ooze_leather%1:27:00:: 14760813 1 0 -ooze_out%2:29:00:: 00067999 1 0 -ooze_through%2:35:00:: 01605537 1 0 -oozing%1:11:00:: 07432119 1 0 -oozing%5:00:00:leaky:00 01397892 1 0 -oozy%5:00:00:leaky:00 01397892 1 0 -op_art%1:06:00:: 03847622 1 0 -opacification%1:22:00:: 13524686 1 0 -opacify%2:30:00:: 00577500 2 0 -opacify%2:30:01:: 00577689 1 0 -opacity%1:07:00:: 04703424 3 0 -opacity%1:07:01:: 04823258 2 0 -opacity%1:19:00:: 11490058 1 0 -opah%1:05:00:: 02545841 1 0 -opal%1:27:00:: 14688234 1 0 -opal_glass%1:27:00:: 14879996 1 0 -opalesce%2:42:00:: 02734140 2 0 -opalesce%2:43:00:: 02765231 1 0 -opalescence%1:07:00:: 04953678 1 0 -opalescent%5:00:00:bright:00 00282020 1 1 -opaline%5:00:00:bright:00 00282020 1 0 -opalise%2:30:00:: 00117085 2 0 -opalise%2:30:01:: 00117230 1 0 -opalize%2:30:00:: 00117085 2 0 -opalize%2:30:01:: 00117230 1 0 -opaque%3:00:00:: 00433115 1 3 -opaque%5:00:00:incomprehensible:00 00535293 2 0 -opaque_gem%1:27:00:: 14969666 1 0 -opaquely%4:02:00:: 00413725 1 0 -opaqueness%1:07:00:: 04703424 2 0 -opaqueness%1:07:01:: 04823258 1 0 -opcw%1:14:00:: 08175875 1 0 -opec%1:14:00:: 08177030 1 0 -opel%1:18:00:: 11215724 1 0 -open%1:09:00:: 05612809 4 0 -open%1:11:00:: 07465159 3 0 -open%1:15:01:: 08632423 1 1 -open%1:15:02:: 08613733 2 1 -open%2:30:00:: 00539936 6 4 -open%2:30:01:: 00540101 7 2 -open%2:33:00:: 01077887 9 1 -open%2:35:00:: 01346003 1 66 -open%2:35:06:: 01346804 3 17 -open%2:35:08:: 01579813 5 4 -open%2:39:10:: 02140630 11 0 -open%2:40:04:: 02358034 10 0 -open%2:41:00:: 02426171 2 45 -open%2:41:01:: 02425462 4 14 -open%2:42:00:: 02744651 8 1 -open%3:00:00:: 01985247 15 0 -open%3:00:01:: 01652380 1 34 -open%3:00:02:: 01652902 2 17 -open%3:00:04:: 01659999 11 1 -open%3:00:07:: 01704761 16 0 -open%3:00:08:: 01654377 5 4 -open%5:00:00:active:06 00036254 21 0 -open%5:00:00:available:00 00185509 6 4 -open%5:00:00:coarse:00 02232112 9 2 -open%5:00:00:ingenuous:00 01310273 20 0 -open%5:00:00:nonunion:00 02474876 17 0 -open%5:00:00:public:00 01861910 4 7 -open%5:00:00:susceptible:00 02361540 18 0 -open%5:00:00:unconstricted:00 01449354 14 1 -open%5:00:00:unenclosed:00 01659117 10 2 -open%5:00:00:unobstructed:00 01622505 19 0 -open%5:00:00:unprotected:00 01886620 3 13 -open%5:00:00:unrestricted:00 02003357 7 3 -open%5:00:00:unsealed:01 02087178 13 1 -open%5:00:00:unsettled:02 02130821 12 1 -open%5:00:00:vulnerable:00 02523664 8 2 -open-air%5:00:00:outdoor:00 01692512 1 0 -open-air_market%1:06:00:: 03847823 1 0 -open-air_marketplace%1:06:00:: 03847823 1 0 -open-and-shut%5:00:00:obvious:00 01619475 1 0 -open-angle_glaucoma%1:26:00:: 14256346 1 0 -open-chain%3:00:00:: 00677313 1 0 -open-class_word%1:10:00:: 06289250 1 0 -open-collared%5:00:00:unbuttoned:00 00297250 1 1 -open-door_policy%1:10:00:: 06663168 1 0 -open-end_credit%1:21:00:: 13375323 1 0 -open-end_fund%1:14:00:: 08071516 1 0 -open-end_investment_company%1:14:00:: 08071516 1 0 -open-end_wrench%1:06:00:: 03848168 1 0 -open-ended%5:00:00:changeable:00 00346246 3 0 -open-ended%5:00:00:indeterminate:01 00740958 2 1 -open-ended%5:00:00:unrestricted:00 02003604 1 1 -open-eyed%5:00:00:alert:00 00091764 1 0 -open-face_sandwich%1:13:00:: 07696977 1 0 -open-heart_surgery%1:04:00:: 00675540 1 0 -open-hearth%3:01:00:: 02889271 1 0 -open-hearth_furnace%1:06:00:: 03848537 1 0 -open-hearth_process%1:22:00:: 13524804 1 0 -open-minded%5:00:00:broad-minded:00 00287498 1 0 -open-plan%5:00:00:unrestricted:00 02003477 1 0 -open-source%3:01:00:: 03093695 1 0 -open_account%1:10:00:: 06529798 2 0 -open_account%1:21:00:: 13375604 1 0 -open_air%1:15:00:: 08613733 1 0 -open_chain%1:17:00:: 09378929 1 0 -open_circuit%1:06:00:: 03848033 1 0 -open_door%1:07:00:: 05181078 2 0 -open_door%1:10:00:: 06663168 1 0 -open_fire%2:33:00:: 01135783 1 1 -open_fireplace%1:06:00:: 03346455 1 0 -open_fracture%1:26:00:: 14292796 1 0 -open_frame%1:04:00:: 00188007 1 0 -open_house%1:14:00:: 08254993 1 1 -open_interval%1:09:00:: 06016600 1 0 -open_letter%1:10:00:: 06625601 1 0 -open_marriage%1:26:00:: 13966496 1 0 -open_order%1:14:00:: 08426993 1 0 -open_primary%1:04:00:: 00183084 1 0 -open_sandwich%1:13:00:: 07696977 1 0 -open_secret%1:10:00:: 06674028 1 0 -open_sesame%1:04:00:: 00179275 1 1 -open_sesame%1:10:00:: 07170660 2 0 -open_shop%1:14:00:: 08234935 1 0 -open_sight%1:06:00:: 03849412 1 0 -open_society%1:14:00:: 08288189 1 0 -open_university%1:14:00:: 08286946 1 0 -open_up%2:30:00:: 00539936 3 2 -open_up%2:30:01:: 00540101 2 2 -open_up%2:32:00:: 01041298 7 0 -open_up%2:35:00:: 01346003 1 2 -open_up%2:35:06:: 01346804 6 0 -open_up%2:36:00:: 01645421 4 1 -open_up%2:41:00:: 02426171 5 0 -open_weave%1:06:00:: 03849538 1 0 -openbill%1:05:00:: 02003577 1 0 -opencast%5:00:00:surface:00 02471602 1 0 -opencast_mining%1:04:00:: 00922848 1 0 -opencut%5:00:00:surface:00 02471602 1 0 -opened%3:00:02:: 01654377 1 2 -opened%5:00:00:open:02 01653135 2 1 -opened%5:00:00:unsealed:01 02087178 3 0 -opener%1:06:00:: 03848348 3 0 -opener%1:11:00:: 07326369 1 3 -opener%1:18:00:: 10737431 2 0 -openhanded%5:00:00:generous:01 01111418 1 0 -openhandedness%1:07:00:: 04832716 1 0 -openhearted%5:00:00:communicative:00 00499315 2 0 -openhearted%5:00:00:kind:00 01372948 1 0 -opening%1:04:00:: 00457890 12 0 -opening%1:04:01:: 00338641 5 1 -opening%1:04:02:: 00383390 3 2 -opening%1:04:03:: 00239230 13 0 -opening%1:06:00:: 03848729 10 0 -opening%1:06:01:: 03499142 11 0 -opening%1:08:00:: 05249636 9 0 -opening%1:09:00:: 05792010 8 0 -opening%1:10:00:: 06397476 7 0 -opening%1:11:00:: 07329363 4 1 -opening%1:11:01:: 07452699 2 2 -opening%1:17:00:: 09379111 1 5 -opening%1:26:00:: 14485249 6 0 -opening%3:00:00:: 01008947 1 8 -opening_line%1:10:00:: 06271055 1 0 -opening_move%1:04:00:: 00239230 1 0 -opening_night%1:11:00:: 07329363 1 0 -openly%4:02:00:: 00053394 1 13 -openmouthed%5:00:00:surprised:00 02358762 1 2 -openness%1:07:01:: 04654066 2 0 -openness%1:07:02:: 04645020 3 0 -openness%1:07:03:: 05083905 1 0 -openside_plane%1:06:00:: 03849275 1 0 -openwork%1:06:00:: 03849679 1 1 -opepe%1:20:00:: 12668917 1 0 -opera%1:06:00:: 03849814 3 0 -opera%1:10:00:: 07026352 1 10 -opera%1:10:01:: 06571938 2 0 -opera_bouffe%1:10:00:: 07026646 1 1 -opera_cloak%1:06:00:: 03849943 1 0 -opera_comique%1:10:00:: 07026646 1 0 -opera_company%1:14:00:: 08187370 1 0 -opera_glasses%1:06:00:: 02841315 1 0 -opera_hat%1:06:00:: 03237416 1 0 -opera_hood%1:06:00:: 03849943 1 0 -opera_house%1:06:00:: 03849814 1 0 -opera_star%1:18:00:: 10378290 1 0 -operable%3:00:00:: 01169817 1 0 -operable%5:00:00:practical:00 01835663 3 0 -operable%5:00:00:serviceable:00 02124253 2 0 -operagoer%1:18:00:: 10378213 1 1 -operand%1:09:00:: 05857346 1 0 -operant%5:00:00:operative:00 00832609 1 0 -operant_conditioning%1:09:00:: 05759696 1 0 -operate%2:29:00:: 00083809 7 0 -operate%2:30:00:: 00341285 5 2 -operate%2:33:00:: 01109863 4 3 -operate%2:35:00:: 01224744 3 14 -operate%2:35:02:: 01510827 6 0 -operate%2:35:03:: 01525666 2 29 -operate%2:41:00:: 02443849 1 34 -operate_on%2:29:00:: 00083809 1 0 -operatic%3:01:00:: 02912383 1 2 -operatic_star%1:18:00:: 10378290 1 0 -operating%3:44:00:: 03150985 1 2 -operating%5:00:01:operative:00 00833018 2 0 -operating_budget%1:21:00:: 13422234 1 1 -operating_capability%1:07:00:: 05204143 1 0 -operating_capital%1:21:00:: 13354769 1 1 -operating_cost%1:21:00:: 13277179 1 2 -operating_expense%1:21:00:: 13277179 1 0 -operating_instructions%1:10:00:: 06422144 1 0 -operating_microscope%1:06:00:: 03850053 1 0 -operating_procedure%1:04:00:: 01024811 1 1 -operating_room%1:06:00:: 03850245 1 0 -operating_statement%1:21:00:: 13355301 1 0 -operating_surgeon%1:18:00:: 10679174 1 0 -operating_system%1:10:00:: 06568134 1 0 -operating_table%1:06:00:: 03850492 1 0 -operating_theater%1:06:00:: 03850245 1 0 -operating_theatre%1:06:00:: 03850245 1 0 -operation%1:04:00:: 00671351 6 2 -operation%1:04:01:: 00869583 10 0 -operation%1:04:02:: 00955060 5 4 -operation%1:04:03:: 00409483 3 8 -operation%1:04:05:: 00577068 7 2 -operation%1:04:06:: 01095966 2 11 -operation%1:04:07:: 00409211 11 0 -operation%1:09:00:: 05701363 9 0 -operation%1:22:00:: 13524925 4 4 -operation%1:22:01:: 13525549 8 0 -operation%1:26:00:: 14008806 1 12 -operation_code%1:10:00:: 06358311 1 0 -operation_desert_storm%1:04:00:: 01289631 1 0 -operational%3:00:00:: 01660267 3 2 -operational%3:01:00:: 03014288 1 7 -operational%5:00:00:operative:00 00833018 4 1 -operational%5:00:00:serviceable:00 02124253 2 4 -operational_casualty%1:11:00:: 07339941 1 0 -operational_cell%1:14:00:: 08359316 1 0 -operational_damage%1:11:00:: 07339941 1 0 -operationalism%1:09:00:: 05974363 1 0 -operationalist%3:01:00:: 02912250 1 0 -operationally%4:02:00:: 00413842 1 1 -operations%1:04:00:: 01107726 1 1 -operations_research%1:04:00:: 00637546 1 0 -operative%1:18:00:: 10476671 2 0 -operative%1:18:01:: 10569411 1 0 -operative%3:00:00:: 00832347 1 1 -operative%3:00:04:: 01169194 2 0 -operative%5:00:00:functioning:00 01091728 4 0 -operative%5:00:00:significant:00 02164050 3 0 -operative_field%1:09:00:: 05934962 1 0 -operatively%4:02:00:: 00137262 1 0 -operator%1:18:00:: 10378412 2 9 -operator%1:18:01:: 10378780 3 1 -operator%1:18:02:: 10194566 4 1 -operator%1:18:03:: 10378952 5 0 -operator%1:24:00:: 13786413 1 27 -operator_gene%1:08:00:: 05440046 1 0 -operculate%3:01:00:: 02974507 1 0 -operculated%3:01:00:: 02974507 1 0 -operculum%1:05:00:: 01902368 1 0 -operetta%1:10:00:: 07027090 1 4 -operon%1:08:00:: 05440207 1 0 -operose%5:00:00:effortful:00 00836544 1 0 -operoseness%1:07:00:: 04709944 1 0 -opheodrys%1:05:00:: 01729838 1 0 -opheodrys_aestivus%1:05:00:: 01730307 1 0 -opheodrys_vernalis%1:05:00:: 01730185 1 0 -ophidia%1:05:00:: 01726390 1 0 -ophidian%1:05:00:: 01726692 1 0 -ophidiidae%1:05:00:: 02558724 1 0 -ophidism%1:26:00:: 14512009 1 0 -ophiodon%1:05:00:: 02552894 1 0 -ophiodon_elongatus%1:05:00:: 02553028 1 0 -ophiodontidae%1:05:00:: 02552737 1 0 -ophioglossaceae%1:20:00:: 12959967 1 0 -ophioglossales%1:20:00:: 12959802 1 0 -ophioglossum%1:20:00:: 12960211 1 0 -ophioglossum_pendulum%1:20:00:: 12960552 1 0 -ophiolatry%1:04:00:: 01046792 1 0 -ophiophagus%1:05:00:: 01748560 1 0 -ophiophagus_hannah%1:05:00:: 01748906 1 0 -ophisaurus%1:05:00:: 01690339 1 0 -ophiuchus%1:17:00:: 09379572 1 0 -ophiurida%1:05:00:: 02317653 1 0 -ophiuroidea%1:05:00:: 02317488 1 0 -ophryon%1:08:00:: 05234438 1 0 -ophrys%1:20:00:: 12074678 1 0 -ophrys_apifera%1:20:00:: 12074867 1 0 -ophrys_insectifera%1:20:00:: 12075010 1 0 -ophrys_muscifera%1:20:00:: 12075010 1 0 -ophrys_sphegodes%1:20:00:: 12075299 1 0 -ophthalmectomy%1:04:00:: 00686826 1 0 -ophthalmia%1:26:00:: 14259320 1 0 -ophthalmia_neonatorum%1:26:00:: 14259431 1 0 -ophthalmic%3:01:00:: 02889406 2 0 -ophthalmic%3:01:01:: 02889516 1 0 -ophthalmic_artery%1:08:00:: 05352896 1 0 -ophthalmic_vein%1:08:00:: 05374980 1 0 -ophthalmitis%1:26:00:: 14259320 1 0 -ophthalmologist%1:18:00:: 10379073 1 0 -ophthalmology%1:09:00:: 06054446 1 0 -ophthalmoplegia%1:26:00:: 14351219 1 0 -ophthalmoscope%1:06:00:: 03850613 1 0 -ophthalmoscopy%1:04:00:: 00143763 1 0 -opiate%1:06:00:: 03850746 1 0 -opiliones%1:05:00:: 01769635 1 0 -opine%2:31:02:: 00631737 2 0 -opine%2:32:00:: 01027668 1 0 -opinion%1:04:01:: 01191158 5 2 -opinion%1:09:00:: 05945642 1 21 -opinion%1:09:01:: 05949726 3 3 -opinion%1:09:02:: 05916739 6 0 -opinion%1:10:00:: 06551784 4 2 -opinion%1:10:01:: 06782019 2 4 -opinion_poll%1:09:00:: 05800998 1 0 -opinionated%5:00:00:narrow-minded:00 00288362 1 1 -opinionative%5:00:00:narrow-minded:00 00288362 1 0 -opisthobranchia%1:05:00:: 01950195 1 0 -opisthocomidae%1:05:00:: 01809446 1 0 -opisthocomus%1:05:00:: 01809592 1 0 -opisthocomus_hoazin%1:05:00:: 01809752 1 0 -opisthognathidae%1:05:00:: 02611425 1 0 -opisthognathous%3:00:00:: 01875829 1 0 -opisthorchiasis%1:26:00:: 14454311 1 0 -opisthotonos%1:26:00:: 14361513 1 0 -opium%1:06:00:: 03850966 1 14 -opium_addict%1:18:00:: 10379278 1 0 -opium_den%1:06:00:: 03851124 1 0 -opium_poppy%1:20:00:: 11902389 1 0 -opium_taker%1:18:00:: 10379278 1 0 -opopanax%1:27:00:: 14969892 1 0 -oporto%1:15:00:: 08986374 1 0 -opossum%1:05:01:: 01874928 2 0 -opossum%1:05:02:: 01881171 1 0 -opossum_rat%1:05:00:: 01876034 1 0 -opossum_shrimp%1:05:00:: 01989516 1 0 -opossum_wood%1:20:00:: 12778398 1 0 -oppenheimer%1:18:00:: 11215909 1 0 -opponent%1:18:00:: 09773245 2 2 -opponent%1:18:02:: 10379620 1 2 -opponent%5:00:00:hostile:01 01246148 1 0 -opportune%3:00:00:: 01660994 1 0 -opportunely%4:02:00:: 00376266 1 0 -opportuneness%1:07:00:: 04718826 1 0 -opportunism%1:07:00:: 04835488 1 1 -opportunist%1:18:00:: 10379376 1 0 -opportunist%5:00:00:expedient:00 00931974 1 0 -opportunistic%5:00:00:expedient:00 00931974 1 1 -opportunistic_infection%1:26:00:: 14178482 1 0 -opportunity%1:26:00:: 14483917 1 67 -opportunity_cost%1:21:00:: 13305794 1 0 -opposable%3:00:00:: 01662510 1 0 -oppose%2:32:00:: 00776059 6 0 -oppose%2:32:01:: 00775831 1 24 -oppose%2:33:00:: 01081152 4 3 -oppose%2:33:01:: 01091427 2 10 -oppose%2:41:00:: 02378623 5 0 -oppose%2:42:00:: 02666531 3 4 -opposed%3:00:00:: 01662756 1 1 -opposer%1:18:00:: 09773245 1 0 -opposing%5:00:00:hostile:01 01246148 1 4 -opposite%1:10:00:: 06288024 1 2 -opposite%1:18:00:: 10379620 3 1 -opposite%1:24:03:: 13858604 2 1 -opposite%1:24:04:: 13858833 4 0 -opposite%3:00:00:: 01663201 2 4 -opposite%4:02:00:: 00044861 1 0 -opposite%5:00:00:different:00 02066312 6 1 -opposite%5:00:00:other:00 02070711 4 3 -opposite%5:00:01:other:00 02070887 1 9 -opposite%5:00:02:different:00 02067913 5 3 -opposite%5:00:02:other:00 02071139 3 4 -opposite_number%1:09:00:: 05695806 1 0 -opposite_word%1:10:00:: 06288024 1 0 -oppositely%4:02:00:: 00170332 1 0 -oppositeness%1:24:00:: 13854649 1 0 -opposition%1:04:00:: 01169744 3 3 -opposition%1:04:01:: 00202284 1 7 -opposition%1:14:00:: 08403787 5 1 -opposition%1:14:01:: 08404188 8 0 -opposition%1:18:00:: 10055847 7 0 -opposition%1:18:01:: 10379620 4 1 -opposition%1:24:00:: 13828905 6 0 -opposition%1:24:02:: 13854649 2 4 -oppositive%5:00:00:disjunctive:00 00564504 1 0 -oppress%2:41:00:: 02424652 1 1 -oppress%2:41:01:: 02585489 2 0 -oppressed%5:00:00:burdened:00 00869972 1 0 -oppression%1:04:00:: 00421047 1 1 -oppression%1:12:00:: 07538674 3 0 -oppression%1:26:00:: 13996719 2 0 -oppressive%5:00:00:domineering:00 00788474 2 0 -oppressive%5:00:00:heavy:02 01189998 1 0 -oppressively%4:02:00:: 00414031 1 0 -oppressiveness%1:07:00:: 04711031 2 0 -oppressiveness%1:12:00:: 07538674 1 0 -oppressor%1:18:00:: 10379758 1 0 -opprobrious%5:00:00:dishonorable:00 01227546 2 0 -opprobrious%5:00:00:offensive:02 01628531 1 0 -opprobrium%1:26:00:: 14441230 2 0 -opprobrium%1:26:01:: 14441498 1 0 -oppugn%2:32:00:: 00867409 1 0 -ops%1:18:00:: 09576548 1 0 -opsanus_tau%1:05:00:: 02548689 1 0 -opsin%1:27:00:: 14735077 1 0 -opsonin%1:27:00:: 15030264 1 0 -opsonisation%1:22:00:: 13525912 1 0 -opsonization%1:22:00:: 13525912 1 0 -opsonize%2:30:00:: 00577839 1 0 -opt%2:31:00:: 00679389 1 0 -opt_out%2:31:00:: 00679715 1 0 -optative%1:24:00:: 13802098 1 0 -optative%3:01:00:: 03093862 2 0 -optative%3:01:01:: 03094006 1 0 -optative_mood%1:24:00:: 13802098 1 0 -optez%1:10:00:: 06897553 1 0 -opthalmic%3:01:00:: 02869823 1 0 -optic%1:08:00:: 05311054 1 0 -optic%3:01:00:: 02869823 1 0 -optic%3:01:04:: 02869563 2 0 -optic_axis%1:09:00:: 06010105 2 0 -optic_axis%1:09:01:: 06010381 1 0 -optic_chiasm%1:08:00:: 05228881 1 0 -optic_chiasma%1:08:00:: 05228881 1 0 -optic_cup%1:05:00:: 02155678 1 0 -optic_disc%1:08:00:: 05456082 1 0 -optic_disk%1:08:00:: 05456082 1 0 -optic_nerve%1:08:00:: 05478336 1 0 -optic_radiation%1:08:00:: 05229049 1 0 -optic_tract%1:08:00:: 05478336 1 0 -optical%3:01:00:: 02869823 3 0 -optical%3:01:01:: 02861859 1 2 -optical%3:01:04:: 02869563 2 1 -optical_aberration%1:19:00:: 11420139 1 0 -optical_bench%1:06:00:: 03851219 1 0 -optical_condenser%1:06:00:: 03087366 1 0 -optical_crown%1:27:00:: 14880273 1 0 -optical_crown_glass%1:27:00:: 14880273 1 0 -optical_density%1:07:00:: 05089367 1 0 -optical_device%1:06:00:: 03851341 1 0 -optical_disc%1:06:00:: 03851787 1 0 -optical_disk%1:06:00:: 03851787 1 0 -optical_fiber%1:06:00:: 03852031 1 0 -optical_fibre%1:06:00:: 03852031 1 0 -optical_flint%1:27:00:: 14880425 1 0 -optical_fusion%1:09:00:: 05936561 1 0 -optical_glass%1:27:00:: 14880107 1 0 -optical_illusion%1:19:00:: 11490463 1 0 -optical_instrument%1:06:00:: 03852280 1 0 -optical_lens%1:06:00:: 02943241 1 0 -optical_maser%1:06:00:: 03643253 1 0 -optical_opacity%1:19:00:: 11490257 1 0 -optical_phenomenon%1:19:00:: 11490638 1 0 -optical_prism%1:06:00:: 04005340 1 0 -optical_pyrometer%1:06:00:: 03852544 1 0 -optical_telescope%1:06:00:: 03852688 1 0 -optically%4:02:00:: 00133041 1 1 -optician%1:18:00:: 10380000 1 0 -optics%1:07:00:: 04950026 2 0 -optics%1:09:00:: 06100778 1 0 -optimal%5:00:00:best:00 00228645 1 3 -optimally%4:02:00:: 00414160 1 0 -optimisation%1:04:00:: 00260051 1 0 -optimise%2:29:00:: 00011852 3 0 -optimise%2:30:00:: 00172505 1 0 -optimise%2:30:01:: 00124226 2 0 -optimism%1:07:00:: 05211793 2 0 -optimism%1:12:00:: 07541558 1 2 -optimist%1:18:00:: 10380126 1 0 -optimistic%3:00:00:: 01663571 1 2 -optimistic%5:00:00:positive:01 01817908 2 0 -optimistically%4:02:00:: 00414252 1 0 -optimization%1:04:00:: 00260051 1 0 -optimize%2:29:00:: 00011852 3 0 -optimize%2:30:00:: 00172505 1 0 -optimize%2:30:01:: 00124226 2 0 -optimum%1:07:00:: 05143864 1 1 -optimum%5:00:00:best:00 00228645 1 6 -option%1:04:00:: 00161243 3 0 -option%1:09:00:: 05790944 2 0 -option%1:21:00:: 13241600 1 0 -optional%3:00:00:: 00847399 1 0 -optionally%4:02:00:: 00414619 1 0 -optometrist%1:18:00:: 10380305 1 0 -optometry%1:04:00:: 00632716 1 0 -opulence%1:26:00:: 14492373 1 0 -opulent%5:00:00:rich:03 02024928 1 1 -opulently%4:02:00:: 00414884 1 0 -opuntia%1:20:00:: 11851395 1 0 -opuntia_cholla%1:20:00:: 11851839 1 0 -opuntia_lindheimeri%1:20:00:: 11852028 1 0 -opuntia_tuna%1:20:00:: 11852148 1 0 -opuntiales%1:20:00:: 11841368 1 0 -opus%1:10:00:: 07037465 1 2 -opv%1:06:00:: 04122011 1 0 -or%1:06:00:: 03850245 2 0 -or%1:15:00:: 09133010 1 0 -or_circuit%1:06:00:: 03853454 1 0 -or_else%4:02:01:: 00063172 1 7 -or_gate%1:06:00:: 03853454 1 0 -or_so%4:02:00:: 00007015 1 8 -orach%1:20:00:: 11830714 1 0 -orache%1:20:00:: 11830714 1 0 -oracle%1:06:00:: 03852908 3 0 -oracle%1:10:00:: 06750339 2 0 -oracle%1:18:00:: 10483530 1 0 -oracle_of_apollo%1:06:00:: 04407844 1 0 -oracle_of_delphi%1:06:00:: 04407844 1 0 -oracular%3:01:00:: 03000868 1 0 -oracular%5:00:00:ambiguous:00 00102930 3 0 -oracular%5:00:00:prophetic:00 01882621 2 0 -orad%4:02:00:: 00172775 1 0 -oradexon%1:27:00:: 14753808 1 0 -oral%1:10:00:: 07198846 1 0 -oral%3:00:00:: 01665184 3 0 -oral%3:00:02:: 00110252 4 0 -oral%3:01:00:: 02771485 2 0 -oral%5:00:00:spoken:00 02284169 1 6 -oral_cancer%1:26:00:: 14251845 1 0 -oral_cavity%1:08:00:: 05302499 1 1 -oral_communication%1:10:00:: 07109196 1 0 -oral_contraception%1:04:00:: 00852400 1 0 -oral_contraceptive%1:06:00:: 03936895 1 0 -oral_contraceptive_pill%1:06:00:: 03936895 1 0 -oral_contract%1:10:00:: 06772583 1 0 -oral_exam%1:10:00:: 07198846 1 0 -oral_examination%1:10:00:: 07198846 1 0 -oral_fissure%1:08:00:: 05302499 1 0 -oral_herpes%1:26:00:: 14132375 1 0 -oral_personality%1:07:00:: 04619946 1 0 -oral_phase%1:28:00:: 15146545 1 0 -oral_poliovirus_vaccine%1:06:00:: 04122011 1 0 -oral_presentation%1:10:00:: 07241837 1 0 -oral_roberts%1:18:00:: 11264508 1 0 -oral_sex%1:04:00:: 00854876 1 0 -oral_smear%1:08:00:: 05265981 1 0 -oral_stage%1:28:00:: 15146545 1 0 -orally%4:02:00:: 00156496 2 0 -orally%4:02:01:: 00156654 1 1 -oran%1:15:00:: 08706663 1 0 -orang%1:05:00:: 02480495 1 0 -orange%1:07:00:: 04965179 2 3 -orange%1:13:00:: 07747607 1 4 -orange%1:17:00:: 09379705 5 0 -orange%1:20:00:: 12708293 3 1 -orange%1:27:00:: 14991210 4 0 -orange%5:00:00:chromatic:00 00378892 1 7 -orange-blossom_orchid%1:20:00:: 12082131 1 0 -orange-brown%5:00:00:chromatic:00 00379181 1 0 -orange-colored%5:00:00:colored:00 00399715 1 0 -orange-coloured%5:00:00:colored:00 00399715 1 0 -orange-flowered%5:00:00:colored:00 00399840 1 0 -orange-hued%5:00:00:colored:00 00399715 1 0 -orange-juice_concentrate%1:13:00:: 07924955 1 0 -orange-red%5:00:00:chromatic:00 00379084 1 0 -orange-sized%5:00:00:sized:00 02223977 1 0 -orange_balsam%1:20:00:: 12684379 1 0 -orange_bat%1:05:00:: 02144251 1 0 -orange_daisy%1:20:00:: 11966215 1 0 -orange_fleabane%1:20:00:: 11966215 1 0 -orange_free_state%1:15:00:: 09001184 1 0 -orange_grass%1:20:00:: 12368637 1 0 -orange_group%1:14:00:: 08036849 1 0 -orange_grove%1:06:00:: 03853023 1 0 -orange_hawkweed%1:20:00:: 12003814 1 0 -orange_horseshoe_bat%1:05:00:: 02144251 1 0 -orange_juice%1:13:00:: 07924834 1 0 -orange_liqueur%1:13:00:: 07909811 1 0 -orange_marmalade%1:13:00:: 07643891 1 0 -orange_milkweed%1:20:00:: 13235503 1 0 -orange_milkwort%1:20:00:: 12705458 1 0 -orange_mushroom_pimple%1:20:00:: 12966193 1 0 -orange_order%1:14:00:: 08036669 1 0 -orange_peel%1:13:00:: 07738905 1 0 -orange_peel%1:13:01:: 07601290 2 0 -orange_peel_fungus%1:20:00:: 13029760 1 0 -orange_pekoe%1:13:00:: 07934908 1 0 -orange_red%1:07:00:: 04964977 1 0 -orange_rind%1:13:00:: 07738905 1 0 -orange_river%1:17:00:: 09379705 1 0 -orange_sneezeweed%1:20:00:: 11977660 1 0 -orange_soda%1:13:00:: 07928488 1 0 -orange_toast%1:13:00:: 07689624 1 0 -orange_tortrix%1:05:00:: 02284884 1 0 -orange_tree%1:20:00:: 12708293 1 0 -orange_yellow%1:07:00:: 04966717 1 0 -orange_zest%1:13:00:: 07810825 1 0 -orangeade%1:13:00:: 07926442 1 0 -orangeman%1:18:00:: 10380499 1 0 -orangeness%1:07:00:: 04965179 1 0 -orangery%1:21:00:: 13252672 1 0 -orangewood%1:20:00:: 12708520 1 0 -orangish%5:00:00:chromatic:00 00378892 1 0 -orangish-red%5:00:00:chromatic:00 00379084 1 0 -orangutan%1:05:00:: 02480495 1 0 -orangutang%1:05:00:: 02480495 1 0 -orasone%1:27:00:: 14753414 1 0 -orate%2:32:00:: 00828901 1 0 -oration%1:10:00:: 07241551 1 2 -orator%1:18:00:: 10380672 1 1 -oratorical%5:00:00:rhetorical:00 02017933 1 2 -oratorio%1:10:00:: 07042249 1 1 -oratory%1:10:00:: 07241205 1 0 -orb%1:08:00:: 05316025 1 2 -orb%1:25:00:: 13899404 2 0 -orb%2:38:00:: 02043982 1 0 -orb-weaver%1:05:00:: 01772782 1 0 -orb-weaving%3:01:00:: 02771648 1 0 -orb-weaving_spider%1:05:00:: 01772664 1 0 -orb_web%1:06:00:: 03853103 1 0 -orbicular%5:00:00:simple:01 02169844 1 0 -orbicular%5:00:01:round:00 02041229 2 0 -orbiculate%5:00:00:simple:01 02169844 1 0 -orbiculate_leaf%1:20:00:: 13159263 1 0 -orbignya%1:20:00:: 12592351 1 0 -orbignya_cohune%1:20:00:: 12593122 1 0 -orbignya_martiana%1:20:00:: 12592544 1 0 -orbignya_phalerata%1:20:00:: 12592544 1 0 -orbignya_spesiosa%1:20:00:: 12592544 1 0 -orbison%1:18:00:: 11216100 1 0 -orbit%1:07:00:: 05125377 3 1 -orbit%1:08:00:: 05285275 5 0 -orbit%1:15:00:: 08612049 1 11 -orbit%1:15:01:: 08612340 4 0 -orbit%1:26:00:: 14514039 2 1 -orbit%2:38:00:: 02043982 1 2 -orbit_period%1:28:00:: 15289944 1 0 -orbital%3:01:00:: 02979285 1 2 -orbital%3:01:02:: 02870178 2 0 -orbital_cavity%1:08:00:: 05285275 1 0 -orbital_motion%1:11:00:: 07441902 1 0 -orbital_plane%1:25:00:: 13861806 1 0 -orbital_point%1:08:00:: 05234593 1 0 -orbital_rotation%1:11:00:: 07441902 1 0 -orbitale%1:08:00:: 05234593 1 0 -orbiter%1:06:00:: 04137444 1 0 -orbitual%5:00:00:cyclic:01 00676271 1 0 -orca%1:05:00:: 02071294 1 0 -orchard%1:06:00:: 03463832 1 2 -orchard_apple_tree%1:20:00:: 12633994 1 0 -orchard_grass%1:20:00:: 12116429 1 0 -orchard_oriole%1:05:00:: 01572782 1 0 -orchestia%1:05:00:: 01993065 1 0 -orchestiidae%1:05:00:: 01992935 1 0 -orchestra%1:06:00:: 03853178 2 1 -orchestra%1:14:00:: 08248157 1 10 -orchestra_pit%1:06:00:: 03853291 1 0 -orchestral%3:01:00:: 02956137 1 1 -orchestral_bells%1:06:00:: 03440682 1 0 -orchestrate%2:31:00:: 00710005 2 0 -orchestrate%2:36:00:: 01707737 1 0 -orchestrated%3:01:00:: 02956272 1 0 -orchestration%1:04:01:: 00939818 2 1 -orchestration%1:04:02:: 01008801 3 0 -orchestration%1:10:00:: 07038615 1 3 -orchestrator%1:18:00:: 10381100 1 0 -orchid%1:20:00:: 12041446 1 1 -orchid_cactus%1:20:00:: 11846765 1 0 -orchid_family%1:20:00:: 12039743 1 0 -orchid_tree%1:20:00:: 12491017 1 0 -orchidaceae%1:20:00:: 12039743 1 0 -orchidaceous_plant%1:20:00:: 12041446 1 0 -orchidales%1:20:00:: 12039524 1 0 -orchidalgia%1:26:00:: 14329578 1 0 -orchidectomy%1:04:00:: 00686913 1 0 -orchiectomy%1:04:00:: 00686913 1 0 -orchil%1:20:01:: 12988572 2 0 -orchil%1:27:00:: 14989430 1 0 -orchiopexy%1:04:00:: 00689186 1 0 -orchis%1:08:00:: 05524615 2 0 -orchis%1:20:00:: 12043444 1 0 -orchis_mascula%1:20:00:: 12043673 1 0 -orchis_papilionaceae%1:20:00:: 12043836 1 0 -orchis_spectabilis%1:20:00:: 12044041 1 0 -orchitis%1:26:00:: 14351094 1 0 -orchotomy%1:04:00:: 00689302 1 0 -orcinus%1:05:00:: 02071173 1 0 -orcinus_orca%1:05:00:: 02071294 1 0 -orcus%1:18:00:: 09570522 1 0 -orczy%1:18:00:: 11216264 1 0 -ord_kangaroo_rat%1:05:00:: 02350357 1 0 -ordain%2:32:00:: 00746084 4 0 -ordain%2:41:00:: 02386012 2 1 -ordain%2:41:01:: 02427916 1 3 -ordain%2:41:02:: 02427726 3 0 -ordained%5:00:00:consecrated:00 00573542 2 0 -ordained%5:00:00:settled:02 02129718 1 0 -ordainer%1:18:00:: 10381214 1 0 -ordeal%1:04:00:: 01196477 2 0 -ordeal%1:11:00:: 07287730 1 3 -ordeal_bean%1:20:00:: 12487058 1 0 -ordeal_tree%1:20:00:: 11768816 1 0 -order%1:04:00:: 01009871 15 0 -order%1:07:00:: 04698656 14 0 -order%1:07:01:: 05091316 2 8 -order%1:10:00:: 06539770 6 2 -order%1:10:01:: 06529219 7 2 -order%1:10:02:: 06652878 9 1 -order%1:10:03:: 07168623 1 26 -order%1:10:04:: 07279687 13 0 -order%1:14:00:: 08456993 4 6 -order%1:14:01:: 08106934 12 0 -order%1:14:02:: 08227214 8 1 -order%1:14:03:: 08147794 11 0 -order%1:26:00:: 13968547 3 7 -order%1:26:01:: 13950812 10 0 -order%1:26:02:: 14496710 5 4 -order%2:30:00:: 00277659 5 1 -order%2:30:01:: 00276883 6 1 -order%2:31:00:: 00658052 9 0 -order%2:31:01:: 00735571 8 0 -order%2:32:00:: 00745499 2 14 -order%2:32:01:: 00746718 1 28 -order%2:32:02:: 00747135 3 5 -order%2:41:01:: 02511551 4 3 -order%2:41:02:: 02386012 7 0 -order-chenopodiales%1:20:00:: 11804082 1 0 -order_acarina%1:05:00:: 01775879 1 0 -order_accipitriformes%1:05:00:: 01604968 1 0 -order_actinaria%1:05:00:: 01914415 1 0 -order_actiniaria%1:05:00:: 01914415 1 0 -order_actinomycetales%1:05:00:: 01374989 1 0 -order_actinomyxidia%1:05:00:: 01427005 1 0 -order_aepyorniformes%1:05:00:: 01521980 1 0 -order_agaricales%1:20:00:: 12998349 1 0 -order_alcyonaria%1:05:00:: 01915093 1 0 -order_alismales%1:20:00:: 12610933 1 0 -order_amoebida%1:05:00:: 01391569 1 0 -order_amoebina%1:05:00:: 01391569 1 0 -order_amphipoda%1:05:00:: 01992516 1 0 -order_anacanthini%1:05:00:: 02521472 1 0 -order_anaspida%1:05:00:: 01475794 1 0 -order_andreaeales%1:20:00:: 11539675 1 0 -order_anguilliformes%1:05:00:: 02525866 1 0 -order_anoplura%1:05:00:: 02183697 1 0 -order_anostraca%1:05:00:: 01995137 1 0 -order_anseriformes%1:05:00:: 01845272 1 0 -order_anthocerotales%1:20:00:: 11538341 1 0 -order_anura%1:05:00:: 01639369 1 0 -order_aphyllophorales%1:20:00:: 13049285 1 0 -order_aplacophora%1:05:00:: 01954340 1 0 -order_apodes%1:05:00:: 02525866 1 0 -order_apodiformes%1:05:00:: 01831519 1 0 -order_apterygiformes%1:05:00:: 01520058 1 0 -order_arales%1:20:00:: 11778391 1 0 -order_araneae%1:05:00:: 01771966 1 0 -order_araneida%1:05:00:: 01771966 1 0 -order_aristolochiales%1:20:00:: 11800799 1 0 -order_arms%1:04:00:: 00895292 1 1 -order_artiodactyla%1:05:00:: 02394068 1 0 -order_aspergillales%1:20:00:: 13026763 1 0 -order_auriculariales%1:20:00:: 13061921 1 0 -order_batoidei%1:05:00:: 01496617 1 0 -order_batrachia%1:05:00:: 01639369 1 0 -order_belemnoidea%1:05:00:: 01973375 1 0 -order_bennettitales%1:20:00:: 11604225 1 0 -order_berycomorphi%1:05:00:: 01450081 1 0 -order_blastocladiales%1:20:00:: 12978381 1 0 -order_book%1:06:00:: 03853588 2 0 -order_book%1:10:00:: 06485933 1 0 -order_branchiura%1:05:00:: 01997436 1 0 -order_bryales%1:20:00:: 11540000 1 0 -order_campanulales%1:20:00:: 11911274 1 0 -order_caprimulgiformes%1:05:00:: 01834702 1 0 -order_carnivora%1:05:00:: 02074915 1 0 -order_caryophyllales%1:20:00:: 11804082 1 0 -order_casuariiformes%1:05:00:: 01519046 1 0 -order_casuarinales%1:20:00:: 12224309 1 0 -order_caudata%1:05:00:: 01628450 1 0 -order_cestida%1:05:00:: 01920582 1 0 -order_cetacea%1:05:00:: 02062209 1 0 -order_charadriiformes%1:05:00:: 02021438 1 0 -order_charales%1:05:00:: 01412279 1 0 -order_chelonethida%1:05:00:: 01770553 1 0 -order_chelonia%1:05:00:: 01662274 1 0 -order_chiroptera%1:05:00:: 02138921 1 0 -order_chlorococcales%1:05:00:: 01410847 1 0 -order_chytridiales%1:20:00:: 12977795 1 0 -order_ciconiiformes%1:05:00:: 02001428 1 0 -order_cilioflagellata%1:05:00:: 01417041 1 0 -order_coccidia%1:05:00:: 01422835 1 0 -order_code%1:10:00:: 06358311 1 0 -order_coleoptera%1:05:00:: 02163982 1 0 -order_collembola%1:05:00:: 02163144 1 0 -order_columbiformes%1:05:00:: 01810466 1 0 -order_colymbiformes%1:05:00:: 02049299 1 0 -order_commelinales%1:20:00:: 12605019 1 0 -order_coniferales%1:20:00:: 11607392 1 0 -order_conodonta%1:05:00:: 01476135 1 0 -order_conodontophorida%1:05:00:: 01476135 1 0 -order_coraciiformes%1:05:00:: 01825417 1 0 -order_cordaitales%1:20:00:: 11606379 1 0 -order_corrodentia%1:05:00:: 02260183 1 0 -order_crocodilia%1:05:00:: 01696282 1 0 -order_crocodylia%1:05:00:: 01696282 1 0 -order_cuculiformes%1:05:00:: 01822423 1 0 -order_cycadales%1:20:00:: 11600139 1 0 -order_cycadofilicales%1:20:00:: 11604904 1 0 -order_cyclostomata%1:05:00:: 01476829 1 0 -order_cydippea%1:05:00:: 01919714 1 0 -order_cydippida%1:05:00:: 01919714 1 0 -order_cydippidea%1:05:00:: 01919714 1 0 -order_cypriniformes%1:05:00:: 01437805 1 0 -order_decapoda%1:05:01:: 01975880 1 0 -order_decapoda%1:05:02:: 01970866 2 0 -order_dermaptera%1:05:00:: 02272707 1 0 -order_dermoptera%1:05:00:: 02502085 1 0 -order_diapensiales%1:20:00:: 12250708 1 0 -order_dicranales%1:20:00:: 11540230 1 0 -order_dictyoptera%1:05:00:: 02232606 1 0 -order_dinocerata%1:05:00:: 02371471 1 0 -order_dinoflagellata%1:05:00:: 01417041 1 0 -order_dinornithiformes%1:05:00:: 01522594 1 0 -order_diptera%1:05:00:: 02188065 1 0 -order_discocephali%1:05:00:: 02574489 1 0 -order_ebenales%1:20:00:: 12769815 1 0 -order_edentata%1:05:00:: 02453373 1 0 -order_embiodea%1:05:00:: 02183353 1 0 -order_embioptera%1:05:00:: 02183353 1 0 -order_endomycetales%1:20:00:: 13024967 1 0 -order_entomophthorales%1:20:00:: 12974286 1 0 -order_ephemerida%1:05:00:: 02261883 1 0 -order_ephemeroptera%1:05:00:: 02261883 1 0 -order_equisetales%1:20:00:: 13218900 1 0 -order_ericales%1:20:00:: 12226009 1 0 -order_erysiphales%1:20:00:: 12963140 1 0 -order_eubacteriales%1:05:00:: 01356086 1 0 -order_eubryales%1:20:00:: 11540747 1 0 -order_euphausiacea%1:05:00:: 01988481 1 0 -order_eurotiales%1:20:00:: 13026763 1 0 -order_eurypterida%1:05:00:: 01788420 1 0 -order_exocycloida%1:05:00:: 02319423 1 0 -order_fagales%1:20:00:: 12260021 1 0 -order_falconiformes%1:05:00:: 01604625 1 0 -order_filicales%1:20:00:: 13169674 1 0 -order_foraminifera%1:05:00:: 01392843 1 0 -order_form%1:10:00:: 06474030 1 0 -order_fucales%1:05:00:: 01403805 1 0 -order_gadiformes%1:05:00:: 02521241 1 0 -order_galliformes%1:05:00:: 01789064 1 0 -order_ganoidei%1:05:00:: 02638323 1 0 -order_gaviiformes%1:05:00:: 02048514 1 0 -order_gentianales%1:20:00:: 12289744 1 0 -order_geophilomorpha%1:05:00:: 01785831 1 0 -order_geraniales%1:20:00:: 12684640 1 0 -order_ginkgoales%1:20:00:: 11663813 1 0 -order_gnetales%1:20:00:: 11596845 1 0 -order_graminales%1:20:00:: 12100382 1 0 -order_gregarinida%1:05:00:: 01423464 1 0 -order_gruiformes%1:05:00:: 02012306 1 0 -order_guttiferales%1:20:00:: 12359578 1 0 -order_gymnophiona%1:05:00:: 01654957 1 0 -order_haemosporidia%1:05:00:: 01423757 1 0 -order_haplosporidia%1:05:00:: 01426466 1 0 -order_heliozoa%1:05:00:: 01390627 1 0 -order_helotiales%1:20:00:: 12967281 1 0 -order_hemiptera%1:05:00:: 02236495 1 0 -order_heterosomata%1:05:00:: 02657083 1 0 -order_heterotrichales%1:05:00:: 01401296 1 0 -order_hymenogastrales%1:20:00:: 12970872 1 0 -order_hymenoptera%1:05:00:: 02205896 1 0 -order_hypericales%1:20:00:: 12359026 1 0 -order_hypermastigina%1:05:00:: 01418794 1 0 -order_hypocreales%1:20:00:: 12965056 1 0 -order_hyracoidea%1:05:00:: 02372251 1 0 -order_ichthyosauria%1:05:00:: 01724055 1 0 -order_ictodosauria%1:05:00:: 01721404 1 0 -order_insectivora%1:05:00:: 01888520 1 0 -order_insessores%1:05:00:: 01523656 1 0 -order_isoetales%1:20:00:: 13225729 1 0 -order_isopoda%1:05:00:: 01990627 1 0 -order_isoptera%1:05:00:: 02222718 1 0 -order_isospondyli%1:05:00:: 02528534 1 0 -order_juglandales%1:20:00:: 12317763 1 0 -order_jungermanniales%1:20:00:: 11542920 1 0 -order_lagomorpha%1:05:00:: 02323186 1 0 -order_laminariales%1:05:00:: 01402831 1 0 -order_lechanorales%1:20:00:: 12987652 1 0 -order_lepidodendrales%1:20:00:: 13221807 1 0 -order_lepidoptera%1:05:00:: 02273545 1 0 -order_lichenales%1:20:00:: 12986858 1 0 -order_liliales%1:20:00:: 12410715 1 0 -order_lobata%1:05:00:: 01921216 1 0 -order_loricata%1:05:00:: 01696525 1 0 -order_lycoperdales%1:20:00:: 13043264 1 0 -order_lycopodiales%1:20:00:: 13222227 1 0 -order_lyginopteridales%1:20:00:: 11604904 1 0 -order_madreporaria%1:05:00:: 01916738 1 0 -order_mallophaga%1:05:00:: 02185337 1 0 -order_malvales%1:20:00:: 12169526 1 0 -order_mantophasmatodea%1:05:00:: 02161737 1 0 -order_marattiales%1:20:00:: 13214645 1 0 -order_marchantiales%1:20:00:: 11543429 1 0 -order_marsupialia%1:05:00:: 01874126 1 0 -order_mecoptera%1:05:00:: 02161944 1 0 -order_moniliales%1:20:00:: 13077479 1 0 -order_monotremata%1:05:00:: 01871699 1 0 -order_mucorales%1:20:00:: 12972818 1 0 -order_musales%1:20:00:: 12350234 1 0 -order_myaceae%1:05:00:: 01956924 1 0 -order_mycelia_sterilia%1:20:00:: 13082077 1 0 -order_mycoplasmatales%1:05:00:: 01373272 1 0 -order_mycrosporidia%1:05:00:: 01427241 1 0 -order_myricales%1:20:00:: 11740655 1 0 -order_myrtales%1:20:00:: 12322887 1 0 -order_mysidacea%1:05:00:: 01988971 1 0 -order_myxobacterales%1:05:00:: 01377906 1 0 -order_myxobacteria%1:05:00:: 01377906 1 0 -order_myxobacteriales%1:05:00:: 01377906 1 0 -order_myxosporidia%1:05:00:: 01427547 1 0 -order_naiadales%1:20:00:: 12610933 1 0 -order_neuroptera%1:05:00:: 02263038 1 0 -order_nidulariales%1:20:00:: 13046285 1 0 -order_notostraca%1:05:00:: 01995803 1 0 -order_nudibranchia%1:05:00:: 01950457 1 0 -order_octopoda%1:05:00:: 01969550 1 0 -order_odonata%1:05:00:: 02267975 1 0 -order_oedogoniales%1:05:00:: 01411556 1 0 -order_of_business%1:10:00:: 06485261 1 0 -order_of_magnitude%1:07:00:: 05091316 1 5 -order_of_magnitude%1:24:00:: 13823651 2 0 -order_of_our_lady_of_mount_carmel%1:14:00:: 08148827 1 0 -order_of_payment%1:21:00:: 13377268 1 0 -order_of_saint_benedict%1:14:00:: 08148601 1 0 -order_of_the_day%1:10:00:: 06485800 1 0 -order_of_the_purple_heart%1:10:00:: 06708475 1 0 -order_oleales%1:20:00:: 12300441 1 0 -order_ophioglossales%1:20:00:: 12959802 1 0 -order_opiliones%1:05:00:: 01769635 1 0 -order_opuntiales%1:20:00:: 11841368 1 0 -order_orchidales%1:20:00:: 12039524 1 0 -order_ornithischia%1:05:00:: 01700076 1 0 -order_orthoptera%1:05:00:: 02225959 1 0 -order_ostariophysi%1:05:00:: 01429172 1 0 -order_osteoglossiformes%1:05:00:: 02544596 1 0 -order_ostracodermi%1:05:00:: 01474641 1 0 -order_palmales%1:20:00:: 12581230 1 0 -order_pandanales%1:20:00:: 12154228 1 0 -order_papaverales%1:20:00:: 11864364 1 0 -order_paper%1:10:00:: 06485933 1 0 -order_parietales%1:20:00:: 12359026 1 0 -order_passeriformes%1:05:00:: 01523908 1 0 -order_pectinibranchia%1:05:00:: 01952812 1 0 -order_pediculati%1:05:00:: 02547213 1 0 -order_pedipalpi%1:05:00:: 01771246 1 0 -order_pelecaniformes%1:05:00:: 02051213 1 0 -order_pelycosauria%1:05:00:: 01721718 1 0 -order_perciformes%1:05:00:: 02553196 1 0 -order_percomorphi%1:05:00:: 02553196 1 0 -order_perissodactyla%1:05:00:: 02373093 1 0 -order_peronosporales%1:20:00:: 12980231 1 0 -order_pezizales%1:20:00:: 13029946 1 0 -order_phalangida%1:05:00:: 01769635 1 0 -order_phallales%1:20:00:: 13039553 1 0 -order_phasmatodea%1:05:00:: 02230782 1 0 -order_phasmida%1:05:00:: 02230782 1 0 -order_pholidota%1:05:00:: 02461372 1 0 -order_picariae%1:05:00:: 01825758 1 0 -order_piciformes%1:05:00:: 01837746 1 0 -order_piperales%1:20:00:: 13148602 1 0 -order_plantaginales%1:20:00:: 12598247 1 0 -order_platyctenea%1:05:00:: 01919912 1 0 -order_plecoptera%1:05:00:: 02262679 1 0 -order_plectognathi%1:05:00:: 02652335 1 0 -order_pleuronectiformes%1:05:00:: 02657083 1 0 -order_plumbaginales%1:20:00:: 12097746 1 0 -order_podicipediformes%1:05:00:: 02049299 1 0 -order_podicipitiformes%1:05:00:: 02049299 1 0 -order_polemoniales%1:20:00:: 12808227 1 0 -order_polygonales%1:20:00:: 12600417 1 0 -order_polymastigina%1:05:00:: 01419082 1 0 -order_polypodiales%1:20:00:: 13169674 1 0 -order_primates%1:05:00:: 02469588 1 0 -order_primulales%1:20:00:: 12090041 1 0 -order_proboscidea%1:05:00:: 02502902 1 0 -order_procellariiformes%1:05:00:: 02057478 1 0 -order_proteales%1:20:00:: 12213485 1 0 -order_protura%1:05:00:: 02163616 1 0 -order_pseudomonadales%1:05:00:: 01360330 1 0 -order_pseudoscorpiones%1:05:00:: 01770553 1 0 -order_pseudoscorpionida%1:05:00:: 01770553 1 0 -order_psilophytales%1:20:00:: 13217213 1 0 -order_psilotales%1:20:00:: 13216238 1 0 -order_psittaciformes%1:05:00:: 01816635 1 0 -order_psocoptera%1:05:00:: 02260183 1 0 -order_pterosauria%1:05:00:: 01722828 1 0 -order_pulmonata%1:05:00:: 01952162 1 0 -order_pycnogonida%1:05:00:: 01786879 1 0 -order_radiolaria%1:05:00:: 01390899 1 0 -order_rajiformes%1:05:00:: 01496617 1 0 -order_ranales%1:20:00:: 11692952 1 0 -order_ranunculales%1:20:00:: 11692952 1 0 -order_raptores%1:05:00:: 01604123 1 0 -order_rhamnales%1:20:00:: 13140535 1 0 -order_rheiformes%1:05:00:: 01520789 1 0 -order_rhoeadales%1:20:00:: 11864364 1 0 -order_rhynchocephalia%1:05:00:: 01672950 1 0 -order_rickettsiales%1:05:00:: 01370913 1 0 -order_rodentia%1:05:00:: 02329093 1 0 -order_rosales%1:20:00:: 12618942 1 0 -order_rubiales%1:20:00:: 12659730 1 0 -order_salicales%1:20:00:: 12723835 1 0 -order_salientia%1:05:00:: 01639369 1 0 -order_santalales%1:20:00:: 12734446 1 0 -order_sapindales%1:20:00:: 12740196 1 0 -order_saprolegniales%1:20:00:: 12979478 1 0 -order_sarcosporidia%1:05:00:: 01425983 1 0 -order_sarraceniales%1:20:00:: 12778926 1 0 -order_saurischia%1:05:00:: 01707895 1 0 -order_sauropterygia%1:05:00:: 01725240 1 0 -order_scandentia%1:05:00:: 02494538 1 0 -order_sclerodermatales%1:20:00:: 12968408 1 0 -order_scleroparei%1:05:00:: 02641608 1 0 -order_scorpionida%1:05:00:: 01770263 1 0 -order_scrophulariales%1:20:00:: 12808751 1 0 -order_secotiales%1:20:00:: 13047216 1 0 -order_selaginellales%1:20:00:: 13224086 1 0 -order_siluriformes%1:05:00:: 02517169 1 0 -order_siphonaptera%1:05:00:: 02185973 1 0 -order_siphonophora%1:05:00:: 01912272 1 0 -order_sirenia%1:05:00:: 02073041 1 0 -order_solenichthyes%1:05:00:: 01453852 1 0 -order_solenogastres%1:05:00:: 01954340 1 0 -order_spatangoida%1:05:00:: 02319689 1 0 -order_sphaeriales%1:20:00:: 12963796 1 0 -order_sphaerocarpales%1:20:00:: 11544131 1 0 -order_sphagnales%1:20:00:: 11541713 1 0 -order_sphenisciformes%1:05:00:: 02055280 1 0 -order_spirochaetales%1:05:00:: 01381399 1 0 -order_squamata%1:05:00:: 01673503 1 0 -order_stegocephalia%1:05:00:: 01656340 1 0 -order_stereospondyli%1:05:00:: 01656078 1 0 -order_stomatopoda%1:05:00:: 01989701 1 0 -order_strigiformes%1:05:00:: 01620967 1 0 -order_struthioniformes%1:05:00:: 01518347 1 0 -order_synentognathi%1:05:00:: 02549533 1 0 -order_taxales%1:20:00:: 11660848 1 0 -order_temnospondyli%1:05:00:: 01656576 1 0 -order_testacea%1:05:00:: 01393873 1 0 -order_testudinata%1:05:00:: 01662274 1 0 -order_testudines%1:05:00:: 01662274 1 0 -order_tetraodontiformes%1:05:00:: 02652335 1 0 -order_thecodontia%1:05:00:: 01723678 1 0 -order_therapsida%1:05:00:: 01719645 1 0 -order_thymelaeales%1:20:00:: 12322887 1 0 -order_thysanoptera%1:05:00:: 02271427 1 0 -order_thysanura%1:05:00:: 02269829 1 0 -order_tinamiformes%1:05:00:: 01809977 1 0 -order_torpediniformes%1:05:00:: 01496037 1 0 -order_tremellales%1:20:00:: 13060451 1 0 -order_trichoptera%1:05:00:: 02269015 1 0 -order_trogoniformes%1:05:00:: 01843805 1 0 -order_tuberales%1:20:00:: 12984802 1 0 -order_tubulidentata%1:05:00:: 02082358 1 0 -order_tulostomatales%1:20:00:: 13041548 1 0 -order_ulvales%1:05:00:: 01408253 1 0 -order_umbellales%1:20:00:: 12213197 1 0 -order_uredinales%1:20:00:: 13063046 1 0 -order_urodella%1:05:00:: 01628450 1 0 -order_uropygi%1:05:00:: 01771246 1 0 -order_urticales%1:20:00:: 12391477 1 0 -order_ustilaginales%1:20:00:: 13065902 1 0 -order_volvocales%1:05:00:: 01408880 1 0 -order_xiphosura%1:05:00:: 01787401 1 0 -order_xyridales%1:20:00:: 12605019 1 0 -order_zeomorphi%1:05:00:: 01452496 1 0 -order_zygnemales%1:05:00:: 01409940 1 0 -order_zygnematales%1:05:00:: 01409940 1 0 -ordered%3:00:00:: 01667519 1 4 -ordered%3:00:04:: 01681028 2 0 -ordered%3:00:06:: 00464513 3 0 -ordered_series%1:24:00:: 13850304 1 0 -orderer%1:18:00:: 10381369 2 0 -orderer%1:18:01:: 10381698 1 0 -ordering%1:04:00:: 01009871 2 3 -ordering%1:14:00:: 08456993 1 4 -orderliness%1:07:00:: 04768483 1 1 -orderliness%1:26:00:: 14496710 2 0 -orderly%1:18:00:: 10381804 2 0 -orderly%1:18:01:: 10381981 1 2 -orderly%3:00:00:: 01666126 1 4 -orderly%5:00:00:tidy:00 02423284 2 0 -orderly_sergeant%1:18:00:: 10382157 1 1 -ordinal%1:23:00:: 13597280 1 0 -ordinal%3:00:00:: 02200035 2 0 -ordinal%3:01:00:: 02996466 1 0 -ordinal_number%1:23:00:: 13597280 1 0 -ordinance%1:04:00:: 00165298 3 0 -ordinance%1:10:00:: 06664051 1 1 -ordinance%1:10:01:: 06565788 2 0 -ordinand%1:18:00:: 10382302 1 0 -ordinarily%4:02:00:: 00106921 1 9 -ordinariness%1:07:00:: 04794751 1 0 -ordinary%1:06:00:: 03853734 5 0 -ordinary%1:06:01:: 03853924 4 0 -ordinary%1:18:00:: 10382480 3 0 -ordinary%1:18:01:: 10382380 1 3 -ordinary%1:26:00:: 13942743 2 1 -ordinary%3:00:00:: 01672607 1 28 -ordinary%5:00:02:common:01 00486290 2 4 -ordinary_annuity%1:21:00:: 13295025 1 0 -ordinary_bicycle%1:06:00:: 03853924 1 0 -ordinary_care%1:04:00:: 01131794 1 0 -ordinary_life_insurance%1:21:00:: 13347947 1 0 -ordinary_shares%1:21:00:: 13335172 1 0 -ordinate%1:09:00:: 06011692 1 1 -ordinate%2:30:00:: 00466053 2 0 -ordinate%2:41:00:: 02386012 1 0 -ordination%1:04:00:: 00165298 3 0 -ordination%1:14:00:: 08456993 2 0 -ordination%1:26:00:: 14432167 1 0 -ordnance%1:06:00:: 03799610 1 0 -ordnance%1:06:01:: 02746365 2 0 -ordnance_store%1:06:00:: 03799610 1 0 -ordnance_survey%1:14:00:: 08153874 1 0 -ordovician%1:28:00:: 15128363 1 0 -ordovician_period%1:28:00:: 15128363 1 0 -ordure%1:27:00:: 14854262 1 0 -ore%1:23:00:: 13682450 2 0 -ore%1:27:00:: 14688500 1 3 -ore_bed%1:17:00:: 09379868 1 0 -ore_dressing%1:22:00:: 13516312 1 0 -ore_processing%1:22:00:: 13516312 1 0 -oread%1:18:00:: 09549643 1 0 -oreamnos%1:05:00:: 02418341 1 0 -oreamnos_americanus%1:05:00:: 02418465 1 0 -orectolobidae%1:05:00:: 01486241 1 0 -orectolobus%1:05:00:: 01486411 1 0 -orectolobus_barbatus%1:05:00:: 01486540 1 0 -oregano%1:13:00:: 07818995 2 0 -oregano%1:20:00:: 12853287 1 0 -oregon%1:15:00:: 09133010 1 2 -oregon_alder%1:20:00:: 12285512 1 0 -oregon_ash%1:20:00:: 12304899 1 0 -oregon_cedar%1:20:00:: 11635433 1 0 -oregon_crab_apple%1:20:00:: 12635359 1 0 -oregon_fir%1:20:00:: 11628793 1 0 -oregon_grape%1:20:01:: 11699442 2 0 -oregon_grape%1:20:02:: 11699751 1 0 -oregon_holly_grape%1:20:00:: 11699442 1 0 -oregon_jargon%1:10:00:: 06905828 1 0 -oregon_larch%1:20:00:: 11619455 1 0 -oregon_lily%1:20:00:: 12427391 1 0 -oregon_maple%1:20:00:: 12754003 1 0 -oregon_myrtle%1:20:00:: 11707827 1 0 -oregon_oak%1:20:00:: 12272239 1 0 -oregon_pine%1:20:00:: 11628793 1 0 -oregon_white_oak%1:20:00:: 12272239 1 0 -oregonian%1:18:00:: 09745229 1 0 -oreide%1:27:00:: 14688705 1 0 -oreo%1:13:00:: 07637292 1 0 -oreo_cookie%1:13:00:: 07637292 1 0 -oreopteris%1:20:00:: 13229358 1 0 -oreopteris_limbosperma%1:20:00:: 13229543 1 0 -oreortyx%1:05:00:: 01808447 1 0 -oreortyx_picta_palmeri%1:05:00:: 01808596 1 0 -orestes%1:18:00:: 09595957 1 0 -orff%1:18:00:: 11216386 1 0 -organ%1:06:00:: 03854065 5 0 -organ%1:06:01:: 03273551 3 1 -organ%1:06:02:: 03494537 6 0 -organ%1:08:00:: 05297523 1 8 -organ%1:10:00:: 06595056 4 0 -organ%1:14:00:: 08349350 2 1 -organ-grinder%1:18:00:: 10382710 1 0 -organ_donor%1:18:00:: 10382597 1 0 -organ_loft%1:06:00:: 03854722 1 0 -organ_of_corti%1:08:00:: 05322855 1 0 -organ_of_hearing%1:08:00:: 05321144 1 0 -organ_of_speech%1:08:00:: 05305614 1 0 -organ_pipe%1:06:00:: 03854815 1 0 -organ_stop%1:06:00:: 03854998 1 0 -organ_transplant%1:04:00:: 00693679 1 0 -organdie%1:06:00:: 03854421 1 0 -organdy%1:06:00:: 03854421 1 0 -organelle%1:08:00:: 05445668 1 0 -organic%1:27:00:: 14859838 1 0 -organic%3:00:00:: 01093142 3 0 -organic%3:00:01:: 01679055 1 21 -organic%3:00:02:: 01679459 2 0 -organic%5:00:00:essential:00 00901345 6 0 -organic%5:00:00:healthful:00 01166875 5 0 -organic%5:00:00:wholesome:00 02558767 4 0 -organic_brain_syndrome%1:26:00:: 14200548 1 0 -organic_chemistry%1:09:00:: 06088995 1 0 -organic_compound%1:27:00:: 14727670 1 0 -organic_disorder%1:26:00:: 14053558 1 0 -organic_evolution%1:22:00:: 13477023 1 0 -organic_fertiliser%1:27:00:: 14859838 1 0 -organic_fertilizer%1:27:00:: 14859838 1 0 -organic_law%1:10:00:: 06533648 1 0 -organic_light-emitting_diode%1:06:00:: 03854506 1 0 -organic_phenomenon%1:19:00:: 11418750 1 0 -organic_process%1:22:00:: 13526110 1 0 -organic_structure%1:08:00:: 05216365 1 0 -organically%4:02:00:: 00113311 2 1 -organically%4:02:01:: 00113582 1 1 -organically%4:02:02:: 00113722 3 0 -organicism%1:09:00:: 05994706 1 0 -organicistic%3:01:00:: 02986392 1 0 -organification%1:22:00:: 13527726 1 4 -organisation%1:04:00:: 01136519 5 0 -organisation%1:04:01:: 01008378 6 0 -organisation%1:04:02:: 00237078 7 0 -organisation%1:07:00:: 04768657 4 0 -organisation%1:09:00:: 05726596 3 0 -organisation%1:14:00:: 08008335 2 0 -organisation%1:14:01:: 08164585 1 0 -organisational%3:01:00:: 02898276 1 0 -organise%2:30:00:: 00404642 1 1 -organise%2:31:00:: 00710005 6 0 -organise%2:36:00:: 01651444 5 0 -organise%2:41:00:: 02432530 4 0 -organise%2:41:01:: 02448185 2 0 -organise%2:41:02:: 02434238 3 0 -organised%5:00:00:union:00 02474476 1 0 -organiser%1:06:00:: 03918737 3 0 -organiser%1:18:00:: 10383237 2 0 -organiser%1:18:01:: 10383505 1 0 -organism%1:03:00:: 00004475 1 9 -organism%1:14:00:: 08436036 2 0 -organismal%3:01:00:: 02986509 1 0 -organismic%3:01:00:: 02986509 1 0 -organist%1:18:00:: 10382825 1 0 -organization%1:04:00:: 01136519 4 3 -organization%1:04:01:: 01008378 6 0 -organization%1:04:02:: 00237078 7 0 -organization%1:07:00:: 04768657 5 0 -organization%1:09:00:: 05726596 2 12 -organization%1:14:00:: 08008335 1 29 -organization%1:14:01:: 08164585 3 11 -organization_chart%1:10:00:: 07001294 1 0 -organization_expense%1:21:00:: 13277492 1 0 -organization_for_the_prohibition_of_chemical_weapons%1:14:00:: 08175875 1 0 -organization_man%1:18:00:: 10383094 1 0 -organization_of_american_states%1:14:00:: 08176077 1 0 -organization_of_petroleum-exporting_countries%1:14:00:: 08177030 1 0 -organization_of_the_oppressed_on_earth%1:14:00:: 08023374 1 0 -organizational%3:01:00:: 02898276 1 3 -organizationally%4:02:00:: 00415058 1 0 -organize%2:30:00:: 00404642 4 4 -organize%2:31:00:: 00710005 3 5 -organize%2:36:00:: 01651444 5 2 -organize%2:41:00:: 02432530 2 6 -organize%2:41:01:: 02448185 1 11 -organize%2:41:02:: 02434238 6 1 -organized%3:00:01:: 01668340 2 2 -organized%3:00:02:: 01670221 1 5 -organized%5:00:00:union:00 02474476 3 0 -organized_crime%1:14:00:: 08245172 1 0 -organized_labor%1:14:00:: 08181267 1 0 -organized_religion%1:14:00:: 08081668 1 0 -organizer%1:06:00:: 03918737 3 0 -organizer%1:18:00:: 10383237 1 1 -organizer%1:18:01:: 10383505 2 0 -organon%1:09:00:: 05664986 1 0 -organophosphate%1:27:00:: 14969994 1 0 -organophosphate_nerve_agent%1:27:00:: 14970136 1 0 -organs%1:13:00:: 07651454 1 0 -organza%1:06:00:: 03855214 1 0 -orgasm%1:04:00:: 00062133 1 0 -orgiastic%5:00:00:intoxicated:00 00797706 2 0 -orgiastic%5:00:00:sexy:00 02134162 1 0 -orgy%1:04:00:: 01030280 2 1 -orgy%1:04:01:: 01073824 1 1 -orgy%1:04:02:: 00511212 3 0 -oriel%1:06:00:: 03855333 1 0 -oriel_window%1:06:00:: 03855333 1 0 -orient%1:15:00:: 08562620 1 1 -orient%1:15:01:: 08562243 2 0 -orient%2:30:00:: 00301662 5 0 -orient%2:32:01:: 00874537 4 0 -orient%2:39:00:: 02159197 2 2 -orient%2:42:00:: 02713184 1 2 -orient%2:42:01:: 02712914 3 1 -oriental%1:18:00:: 09643078 1 0 -oriental%5:00:00:eastern:01 00825807 1 4 -oriental_alabaster%1:27:00:: 14665469 1 0 -oriental_arborvitae%1:20:00:: 11644462 1 0 -oriental_beetle%1:05:00:: 02173784 1 0 -oriental_bittersweet%1:20:00:: 12748534 1 0 -oriental_black_mushroom%1:20:00:: 13001930 1 0 -oriental_bush_cherry%1:20:00:: 12646740 1 0 -oriental_cherry%1:20:00:: 12649317 1 0 -oriental_cockroach%1:05:00:: 02233943 1 0 -oriental_garlic%1:20:00:: 12435777 1 0 -oriental_person%1:18:00:: 09643078 1 0 -oriental_plane%1:20:00:: 12807624 1 0 -oriental_poppy%1:20:00:: 11901977 1 0 -oriental_roach%1:05:00:: 02233943 1 0 -oriental_scops_owl%1:05:00:: 01624212 1 0 -oriental_sore%1:26:00:: 14181187 1 0 -oriental_spruce%1:20:00:: 11626409 1 0 -oriental_studies%1:09:00:: 06158185 1 0 -orientalise%2:30:00:: 00523895 1 0 -orientalism%1:07:00:: 05168063 2 0 -orientalism%1:09:00:: 06158185 1 0 -orientalist%1:18:00:: 10383689 1 0 -orientalize%2:30:00:: 00523895 1 0 -orientate%2:39:00:: 02159197 1 0 -orientated%3:00:00:: 01682229 1 0 -orientating%3:00:00:: 01684426 1 0 -orientation%1:04:00:: 01052372 1 2 -orientation%1:04:01:: 00891512 6 0 -orientation%1:09:00:: 06208021 2 1 -orientation%1:09:01:: 05676755 5 0 -orientation%1:09:02:: 06200344 4 0 -orientation%1:24:00:: 13828075 3 0 -orientation_course%1:04:00:: 00891512 1 0 -oriented%3:00:00:: 01682229 1 4 -orienting%3:00:00:: 01684426 1 0 -orifice%1:08:00:: 05249636 1 2 -oriflamme%1:06:00:: 03855464 2 0 -oriflamme%1:10:00:: 06809291 1 0 -origami%1:04:00:: 00936456 1 0 -origanum%1:20:00:: 12853080 1 0 -origanum_dictamnus%1:20:00:: 12853706 1 0 -origanum_majorana%1:20:00:: 12853482 1 0 -origanum_vulgare%1:20:00:: 12853287 1 0 -origen%1:18:00:: 11216562 1 0 -origin%1:07:00:: 04923743 2 3 -origin%1:09:00:: 06009086 4 1 -origin%1:11:00:: 07323922 3 1 -origin%1:14:00:: 08101937 6 0 -origin%1:15:00:: 08507558 1 11 -origin%1:22:00:: 13559177 5 0 -original%1:06:00:: 03727274 1 3 -original%1:09:00:: 05938400 2 2 -original%3:00:00:: 01686439 3 5 -original%5:00:00:primary:00 01853039 2 8 -original%5:00:00:underived:00 00699207 4 0 -original%5:00:01:first:00 01012503 1 17 -original_sin%1:04:00:: 00757483 1 1 -originalism%1:09:00:: 05946234 1 0 -originality%1:07:00:: 04800359 2 1 -originality%1:09:00:: 05634613 1 3 -originally%4:02:00:: 00154725 1 3 -originally%4:02:01:: 00431941 2 1 -originally%4:02:02:: 00167286 3 0 -originate%2:36:00:: 01628449 2 4 -originate%2:42:00:: 02624263 1 12 -originate%2:42:02:: 02743343 3 0 -originate_in%2:42:00:: 02627666 1 7 -origination%1:04:00:: 00240184 2 0 -origination%1:11:00:: 07323922 1 0 -origination_fee%1:21:00:: 13322938 1 0 -originative%3:00:00:: 00643250 1 0 -originative%5:00:00:original:00 01687363 2 0 -originator%1:18:00:: 10383816 1 0 -orinasal%1:10:00:: 07119358 1 0 -orinasal_phone%1:10:00:: 07119358 1 0 -orinase%1:06:00:: 04448826 1 0 -orinoco%1:17:00:: 09379938 1 1 -orinoco_river%1:17:00:: 09379938 1 0 -oriole%1:05:01:: 01571904 2 0 -oriole%1:05:02:: 01575745 1 0 -oriolidae%1:05:00:: 01575577 1 0 -oriolus%1:05:00:: 01575941 1 0 -oriolus_oriolus%1:05:00:: 01576076 1 0 -orion%1:17:00:: 09380117 2 0 -orion%1:18:00:: 09571693 1 0 -orison%1:10:00:: 07189130 1 0 -orissa%1:15:00:: 08906053 1 0 -orites%1:20:00:: 12221943 1 0 -orites_excelsa%1:20:00:: 12222090 1 0 -oriya%1:10:00:: 06971123 2 0 -oriya%1:18:00:: 09676127 1 0 -orizaba%1:15:00:: 08744871 1 0 -orkney_islands%1:15:00:: 08953829 1 0 -orlando%1:15:00:: 09074140 1 0 -orlando_di_lasso%1:18:00:: 11118362 1 0 -orleanais%1:15:00:: 08944818 1 0 -orleanism%1:09:00:: 06219613 1 0 -orleanist%1:18:00:: 10384054 1 0 -orleans%1:04:00:: 01289830 2 0 -orleans%1:15:00:: 08937414 1 0 -orlon%1:06:00:: 03855756 1 0 -orlop%1:06:00:: 03855908 1 0 -orlop_deck%1:06:00:: 03855908 1 0 -orly%1:15:00:: 08933621 1 0 -orly_group%1:14:00:: 08016385 1 0 -ormandy%1:18:00:: 11216797 1 0 -ormazd%1:18:00:: 09531955 1 0 -ormer%1:05:00:: 01943087 1 0 -ormolu%1:27:00:: 14970538 1 0 -ormosia%1:20:00:: 12553314 1 0 -ormosia_coarctata%1:20:00:: 12554029 1 0 -ormosia_monosperma%1:20:00:: 12553742 1 0 -ormuzd%1:18:00:: 09531955 1 0 -ornament%1:06:00:: 03169390 1 1 -ornament%2:36:00:: 01675963 1 1 -ornament%2:42:00:: 02749247 2 0 -ornamental%1:20:00:: 11536087 1 0 -ornamental%5:00:00:nonfunctional:00 01091234 1 0 -ornamentalism%1:04:00:: 00412727 1 0 -ornamentalist%1:18:00:: 09998907 1 0 -ornamentally%4:02:00:: 00207481 1 0 -ornamentation%1:04:00:: 00262743 3 0 -ornamentation%1:06:00:: 03169390 2 0 -ornamentation%1:26:00:: 13920322 1 0 -ornate%5:00:00:rhetorical:00 02017141 1 0 -ornately%4:02:00:: 00207578 1 1 -ornateness%1:07:00:: 04698112 2 0 -ornateness%1:10:00:: 07070429 1 0 -orneriness%1:07:00:: 04909270 1 0 -ornery%5:00:00:ill-natured:00 01135673 1 4 -ornithine%1:27:00:: 14607378 1 0 -ornithischia%1:05:00:: 01700076 1 0 -ornithischian%1:05:00:: 01700470 1 0 -ornithischian_dinosaur%1:05:00:: 01700470 1 0 -ornithogalum%1:20:00:: 12459471 1 0 -ornithogalum_pyrenaicum%1:20:00:: 12460146 1 0 -ornithogalum_thyrsoides%1:20:00:: 12460308 1 0 -ornithogalum_umbellatum%1:20:00:: 12459882 1 0 -ornithological%3:01:00:: 03094928 1 0 -ornithologist%1:18:00:: 10384214 1 0 -ornithology%1:09:00:: 06073494 1 0 -ornithomimid%1:05:00:: 01715888 1 0 -ornithomimida%1:05:00:: 01715692 1 0 -ornithopod%1:05:00:: 01705591 1 0 -ornithopod_dinosaur%1:05:00:: 01705591 1 0 -ornithopoda%1:05:00:: 01705247 1 0 -ornithopter%1:06:00:: 03857156 1 0 -ornithorhynchidae%1:05:00:: 01873007 1 0 -ornithorhynchus%1:05:00:: 01873144 1 0 -ornithorhynchus_anatinus%1:05:00:: 01873310 1 0 -ornithosis%1:26:00:: 14149773 1 0 -orobanchaceae%1:20:00:: 12874231 1 0 -orogeny%1:22:00:: 13527817 1 0 -orography%1:09:00:: 06118146 1 0 -oroide%1:27:00:: 14688705 1 0 -orology%1:09:00:: 06118146 1 0 -orono%1:15:00:: 09093315 1 0 -orontium%1:20:00:: 11790239 1 0 -orontium_aquaticum%1:20:00:: 11790390 1 0 -oropharyngeal%3:01:00:: 02771740 1 0 -oropharynx%1:08:00:: 05529012 1 0 -orotund%5:00:00:full:01 01457486 2 0 -orotund%5:00:00:rhetorical:00 02016881 1 0 -orozco%1:18:00:: 11216922 1 0 -orphan%1:05:00:: 01321770 4 0 -orphan%1:10:00:: 07013269 3 0 -orphan%1:18:00:: 10384392 1 1 -orphan%1:18:01:: 10384496 2 0 -orphan%2:40:00:: 02315277 1 0 -orphan_site%1:15:00:: 08661697 1 0 -orphanage%1:06:00:: 03856012 2 0 -orphanage%1:26:00:: 14571181 1 0 -orphaned%5:00:00:unparented:00 01734171 1 0 -orphanhood%1:26:00:: 14571181 1 0 -orphans'_asylum%1:06:00:: 03856012 1 0 -orphenadrine%1:06:00:: 03856148 1 0 -orpheus%1:18:00:: 09571914 1 0 -orphic%3:01:00:: 02771866 1 0 -orphic%5:00:00:esoteric:00 00900071 2 0 -orphrey%1:06:00:: 03856335 1 0 -orpiment%1:27:00:: 14688831 1 0 -orpin%1:20:00:: 12786464 1 0 -orpine%1:20:00:: 12786464 1 0 -orpington%1:05:00:: 01793715 1 0 -orr%1:18:00:: 11217072 1 0 -orrery%1:06:00:: 03856465 1 0 -orris%1:20:01:: 12413419 1 0 -orris%1:20:02:: 12412987 2 0 -orrisroot%1:20:00:: 12412987 1 0 -orson_welles%1:18:00:: 11380768 1 0 -ortalis%1:05:00:: 01800286 1 0 -ortega%1:18:00:: 11217182 1 0 -ortega_y_gasset%1:18:00:: 11217312 1 0 -orthicon%1:06:00:: 03856728 1 1 -orthilia%1:20:00:: 12257140 1 0 -orthoboric_acid%1:27:00:: 14783808 1 0 -orthochorea%1:26:00:: 14095439 1 0 -orthochromatic_film%1:06:00:: 03857026 1 0 -orthoclase%1:27:00:: 14865221 1 0 -orthodontia%1:09:00:: 06048552 1 0 -orthodontic%3:01:00:: 02915815 1 0 -orthodontic_braces%1:06:00:: 02887079 1 0 -orthodontic_treatment%1:04:00:: 00708676 1 0 -orthodontics%1:09:00:: 06048552 1 0 -orthodontist%1:18:00:: 10384610 1 0 -orthodonture%1:09:00:: 06048552 1 0 -orthodox%3:00:00:: 01689880 2 3 -orthodox%3:01:00:: 02953420 1 3 -orthodox%3:01:01:: 02953598 3 0 -orthodox_catholic_church%1:14:00:: 08086356 1 1 -orthodox_church%1:14:00:: 08086356 1 1 -orthodox_jew%1:18:00:: 10384772 1 0 -orthodox_judaism%1:09:00:: 06234104 2 0 -orthodox_judaism%1:14:00:: 08094659 1 0 -orthodox_sleep%1:26:00:: 14025478 1 0 -orthodoxy%1:07:00:: 04801313 1 1 -orthodoxy%1:09:00:: 06211811 2 0 -orthoepist%1:18:00:: 10384935 1 0 -orthoepy%1:09:00:: 06176837 2 0 -orthoepy%1:10:00:: 07128692 1 0 -orthogonal%5:00:00:irrelevant:00 01976532 1 0 -orthogonal%5:00:00:perpendicular:00 01720642 3 0 -orthogonal%5:00:00:unrelated:02 01974979 2 0 -orthogonal_opposition%1:24:00:: 13829047 1 0 -orthogonality%1:07:00:: 05072078 2 0 -orthogonality%1:24:00:: 13829047 1 0 -orthographic%3:01:00:: 02909952 1 3 -orthography%1:10:00:: 06351202 1 8 -orthomolecular%5:00:00:healthful:00 01166993 1 0 -orthomorphic_projection%1:06:00:: 03090437 1 0 -orthomyxovirus%1:05:00:: 01337078 1 0 -orthopaedic%3:01:00:: 03095068 1 0 -orthopaedics%1:09:00:: 06064106 1 0 -orthopaedist%1:18:00:: 10385159 1 0 -orthopedic%3:01:00:: 03095068 1 1 -orthopedical%3:01:00:: 03095068 1 0 -orthopedics%1:09:00:: 06064106 1 0 -orthopedist%1:18:00:: 10385159 1 0 -orthophosphate%1:27:00:: 14982265 1 1 -orthophosphoric_acid%1:27:00:: 14982907 1 0 -orthophosphorous_acid%1:27:00:: 14614594 1 0 -orthopnea%1:26:00:: 14369913 1 0 -orthopristis%1:05:00:: 02589955 1 0 -orthopristis_chrysopterus%1:05:00:: 02590094 1 0 -orthopter%1:06:00:: 03857156 1 0 -orthoptera%1:05:00:: 02225959 1 0 -orthopteran%1:05:00:: 02226183 1 0 -orthopteron%1:05:00:: 02226183 1 0 -orthopterous_insect%1:05:00:: 02226183 1 0 -orthoptic%3:01:00:: 03095257 1 0 -orthoptics%1:04:00:: 00708957 1 0 -orthoptist%1:18:00:: 10385354 1 0 -orthoscope%1:06:00:: 03857291 1 0 -orthostatic%5:00:00:erect:00 01236716 1 0 -orthostatic_hypotension%1:26:00:: 14104367 1 0 -orthotomus%1:05:00:: 01566082 1 0 -orthotomus_sutorius%1:05:00:: 01566207 1 0 -orthotropous%3:00:00:: 01029563 1 0 -orthotropous_ovule%1:20:00:: 11679909 1 0 -ortilis_vetula_macalli%1:05:00:: 01800633 1 0 -ortolan%1:05:00:: 01537895 1 0 -ortolan_bunting%1:05:00:: 01537895 1 0 -ortygan%1:05:00:: 02020345 1 0 -orudis%1:06:00:: 03612134 1 0 -orudis_kt%1:06:00:: 03612134 1 0 -orumiyeh%1:15:00:: 08912559 1 0 -oruvail%1:06:00:: 03612134 1 0 -orville_wright%1:18:00:: 11398611 1 0 -orwell%1:18:00:: 11217479 1 0 -orwellian%3:01:00:: 02772012 1 0 -orycteropodidae%1:05:00:: 02082498 1 0 -orycteropus%1:05:00:: 02082632 1 0 -orycteropus_afer%1:05:00:: 02082791 1 0 -oryctolagus%1:05:00:: 02324717 1 0 -oryctolagus_cuniculus%1:05:00:: 02324850 1 0 -oryx%1:05:00:: 02428349 1 0 -oryx_gazella%1:05:00:: 02428508 1 0 -oryza%1:20:00:: 12125782 1 0 -oryza_sativa%1:20:00:: 12126084 1 0 -oryzomys%1:05:00:: 02340521 1 0 -oryzomys_palustris%1:05:00:: 02340640 1 0 -oryzopsis%1:20:00:: 12126238 1 0 -oryzopsis_hymenoides%1:20:00:: 12126516 1 0 -oryzopsis_miliacea%1:20:00:: 12126736 1 0 -orzo%1:13:00:: 07699682 1 0 -os%1:08:00:: 05269901 5 0 -os%1:08:01:: 05302422 1 1 -os%1:08:02:: 05312227 4 0 -os%1:10:00:: 06568134 3 0 -os%1:27:00:: 14647907 2 0 -os_breve%1:08:00:: 05280698 1 0 -os_capitatum%1:08:00:: 05273223 1 0 -os_frontale%1:08:00:: 05541231 1 0 -os_hamatum%1:08:00:: 05273408 1 0 -os_hyoideum%1:08:00:: 05275162 1 0 -os_ischii%1:08:00:: 05275466 1 0 -os_longum%1:08:00:: 05275651 1 0 -os_lunatum%1:08:00:: 05272423 1 0 -os_nasale%1:08:00:: 05277532 1 0 -os_palatinum%1:08:00:: 05278152 1 0 -os_pisiforme%1:08:00:: 05272745 1 0 -os_pubis%1:08:00:: 05278714 1 0 -os_scaphoideum%1:08:00:: 05272276 1 0 -os_sesamoideum%1:08:00:: 05280512 1 0 -os_sphenoidale%1:08:00:: 05280998 1 0 -os_tarsi_fibulare%1:08:00:: 05274808 1 0 -os_temporale%1:08:00:: 05282000 1 0 -os_trapezium%1:08:00:: 05272891 1 0 -os_trapezoideum%1:08:00:: 05273073 1 0 -os_triquetrum%1:08:00:: 05272545 1 0 -os_zygomaticum%1:08:00:: 05273822 1 0 -osage%1:10:00:: 06911575 3 0 -osage%1:17:00:: 09380299 2 0 -osage%1:18:00:: 09663786 1 0 -osage_orange%1:20:00:: 12399899 1 0 -osage_river%1:17:00:: 09380299 1 0 -osaka%1:15:00:: 08924023 1 0 -osaka_bay%1:17:00:: 09380446 1 0 -osama_bin_laden%1:18:00:: 10851452 1 0 -osasco%1:15:00:: 08856162 1 0 -osborne%1:18:00:: 11217668 1 0 -oscan%1:10:00:: 06962350 2 0 -oscan%1:18:00:: 09717789 1 0 -oscan-speaking%5:00:00:communicative:00 00499441 1 0 -oscar%1:10:00:: 07268967 1 0 -oscar_fingal_o'flahertie_wills_wilde%1:18:00:: 11386346 1 0 -oscar_hammerstein%1:18:00:: 11026597 1 0 -oscar_hammerstein_ii%1:18:00:: 11026597 1 0 -oscar_palmer_robertson%1:18:00:: 11264828 1 0 -oscar_robertson%1:18:00:: 11264828 1 0 -oscar_wilde%1:18:00:: 11386346 1 0 -oscheocele%1:26:00:: 14318116 1 0 -oscheocoele%1:26:00:: 14318116 1 0 -oscillate%2:38:00:: 01878063 2 0 -oscillate%2:42:00:: 02706046 1 0 -oscillating%5:00:00:periodic:00 01967917 1 0 -oscillation%1:11:00:: 07345166 2 1 -oscillation%1:11:01:: 07341038 3 0 -oscillation%1:22:00:: 13527965 1 1 -oscillator%1:06:00:: 03857430 1 1 -oscillatoriaceae%1:05:00:: 01359488 1 0 -oscillatory%5:00:00:periodic:00 01967917 1 0 -oscillogram%1:06:00:: 03857588 1 0 -oscillograph%1:06:00:: 03857687 1 0 -oscilloscope%1:06:00:: 03857828 1 0 -oscine%1:05:00:: 01525720 1 0 -oscine%3:01:00:: 03138122 1 0 -oscine_bird%1:05:00:: 01525720 1 0 -oscines%1:05:00:: 01524885 1 0 -oscitance%1:04:00:: 00837293 2 0 -oscitance%1:26:00:: 14030671 1 0 -oscitancy%1:04:00:: 00837293 2 0 -oscitancy%1:26:00:: 14030671 1 0 -oscitant%5:00:00:inattentive:00 00165766 1 0 -osco-umbrian%1:10:00:: 06962060 1 0 -osculate%2:35:00:: 01431230 3 0 -osculate%2:42:00:: 02751055 2 0 -osculate%2:42:03:: 02752431 1 0 -osculating_circle%1:07:00:: 05102889 1 0 -osculation%1:04:00:: 00138221 2 0 -osculation%1:26:00:: 14419889 1 0 -osculator%1:18:00:: 10237196 1 0 -osha%1:14:00:: 08349138 1 0 -osier%1:20:01:: 12725521 2 0 -osier%1:20:02:: 13164501 1 0 -osip_emilevich_mandelstam%1:18:00:: 11153615 1 0 -osip_mandelstam%1:18:00:: 11153615 1 0 -osiris%1:18:00:: 09512913 1 0 -oslo%1:15:00:: 08765069 1 0 -osman_i%1:18:00:: 11217789 1 0 -osmanli%1:18:00:: 09735113 1 0 -osmanthus%1:20:00:: 12309403 1 0 -osmanthus_americanus%1:20:00:: 12309630 1 0 -osmeridae%1:05:00:: 02540255 1 0 -osmerus%1:05:00:: 02540637 1 0 -osmerus_eperlanus%1:05:00:: 02540983 1 0 -osmerus_mordax%1:05:00:: 02540791 1 0 -osmiridium%1:27:00:: 14688978 1 0 -osmitrol%1:06:00:: 03718056 1 0 -osmium%1:27:00:: 14647907 1 0 -osmoreceptor%1:08:00:: 05466575 1 0 -osmosis%1:22:00:: 13528100 1 0 -osmotic%3:01:00:: 03000608 1 0 -osmotic_pressure%1:19:00:: 11496881 1 3 -osmotically%4:02:00:: 00415200 1 0 -osmund%1:20:00:: 12953206 1 0 -osmunda_cinnamonea%1:20:00:: 12953919 1 0 -osmunda_clatonia%1:20:00:: 12953712 1 0 -osmunda_regalis%1:20:00:: 12953484 1 0 -osmundaceae%1:20:00:: 12952852 1 0 -osprey%1:05:00:: 01616086 1 0 -osseous%3:01:00:: 03138224 1 2 -osseous_labyrinth%1:08:00:: 05321917 1 0 -osseous_tissue%1:27:00:: 14757848 1 0 -ossete%1:10:00:: 06975368 1 0 -ossicle%1:08:00:: 05277728 1 0 -ossicular%3:01:00:: 03138396 1 0 -ossiculate%3:01:00:: 03138396 1 0 -ossiculum%1:08:00:: 05277728 1 0 -ossiferous%3:01:00:: 03138545 1 0 -ossification%1:07:00:: 04801763 4 0 -ossification%1:22:00:: 13528750 1 6 -ossification%1:22:01:: 13528852 3 0 -ossification%1:22:02:: 13529015 2 0 -ossified%5:00:00:inflexible:02 01025397 1 0 -ossify%2:30:00:: 00267249 1 1 -ossify%2:30:01:: 00267365 3 0 -ossify%2:30:02:: 00418110 2 0 -osso_buco%1:13:00:: 07872748 1 0 -ossuary%1:06:00:: 03858085 1 0 -ostariophysi%1:05:00:: 01429172 1 0 -osteal%3:01:00:: 03138224 2 0 -osteal%3:01:01:: 03138664 1 0 -osteichthyes%1:05:00:: 02514575 1 0 -osteitis%1:26:00:: 14351321 1 0 -osteitis_deformans%1:26:00:: 14079971 1 0 -ostensible%5:00:00:counterfeit:00 01117942 2 0 -ostensible%5:00:00:superficial:00 01873985 1 0 -ostensibly%4:02:00:: 00039941 1 1 -ostensive%5:00:00:counterfeit:00 01117942 2 0 -ostensive%5:00:00:instructive:00 01325193 1 0 -ostensive_definition%1:10:00:: 06745285 1 0 -ostensorium%1:06:00:: 03784270 1 0 -ostentate%2:39:00:: 02141973 1 0 -ostentation%1:07:00:: 04789274 3 0 -ostentation%1:07:01:: 04817923 2 0 -ostentation%1:10:00:: 06889330 1 0 -ostentatious%3:00:00:: 01848355 1 1 -ostentatious%5:00:00:tasteless:02 02394975 2 0 -ostentatiously%4:02:00:: 00415277 1 0 -ostentatiousness%1:07:00:: 04817923 1 0 -osteoarthritis%1:26:00:: 14188238 1 0 -osteoblast%1:08:00:: 05448149 1 0 -osteoblastoma%1:26:00:: 14249601 1 0 -osteochondroma%1:26:00:: 14249785 1 0 -osteoclasis%1:04:00:: 00709395 1 0 -osteoclast%1:08:00:: 05449073 1 0 -osteocyte%1:08:00:: 05449196 1 0 -osteodystrophy%1:26:00:: 14059481 1 0 -osteogenesis_imperfecta%1:26:00:: 14158424 1 0 -osteogenic_sarcoma%1:26:00:: 14241556 1 0 -osteoglossidae%1:05:00:: 02544754 1 0 -osteoglossiformes%1:05:00:: 02544596 1 0 -osteologer%1:18:00:: 10385455 1 0 -osteologist%1:18:00:: 10385455 1 0 -osteology%1:09:00:: 06060336 1 0 -osteolysis%1:22:00:: 13529167 1 0 -osteoma%1:26:00:: 14249937 1 0 -osteomalacia%1:26:00:: 14208176 1 0 -osteomyelitis%1:26:00:: 14351490 1 0 -osteopath%1:18:00:: 10385566 1 0 -osteopathist%1:18:00:: 10385566 1 0 -osteopathy%1:04:00:: 00709205 1 0 -osteopetrosis%1:26:00:: 14210119 1 0 -osteophyte%1:08:00:: 05473507 1 0 -osteoporosis%1:26:00:: 14210354 1 1 -osteosarcoma%1:26:00:: 14241556 1 0 -osteosclerosis%1:26:00:: 14188467 1 0 -osteosclerosis_congenita%1:26:00:: 14121804 1 0 -osteostracan%1:05:00:: 01475648 1 0 -osteostraci%1:05:00:: 01475421 1 0 -osteotomy%1:04:00:: 00689467 1 0 -ostiarius%1:18:00:: 10026763 1 0 -ostiary%1:18:00:: 10026553 2 0 -ostiary%1:18:01:: 10026763 1 0 -ostinato%1:10:00:: 07045637 1 0 -ostiole%1:20:00:: 12962149 1 0 -ostler%1:18:00:: 10644301 1 0 -ostomy%1:04:00:: 00689550 1 0 -ostraciidae%1:05:00:: 02654256 1 0 -ostracise%2:41:00:: 02465658 2 0 -ostracise%2:41:01:: 02504017 1 0 -ostracism%1:04:00:: 00207434 2 0 -ostracism%1:26:00:: 14427633 1 0 -ostracize%2:41:00:: 02465658 2 0 -ostracize%2:41:01:: 02504017 1 1 -ostracod%1:05:00:: 01997825 1 0 -ostracoda%1:05:00:: 01997698 1 0 -ostracoderm%1:05:00:: 01474864 1 0 -ostracodermi%1:05:00:: 01474641 1 0 -ostrava%1:15:00:: 08758487 1 0 -ostrea%1:05:00:: 01960900 1 0 -ostrea_gigas%1:05:00:: 01961234 1 0 -ostreidae%1:05:00:: 01960301 1 0 -ostrich%1:05:00:: 01518878 2 0 -ostrich%1:18:00:: 10385707 1 0 -ostrich_fern%1:20:00:: 13198054 1 0 -ostrogoth%1:18:00:: 10385923 1 0 -ostrya%1:20:00:: 12287388 1 0 -ostrya_carpinifolia%1:20:00:: 12287836 1 0 -ostrya_virginiana%1:20:00:: 12288005 1 0 -ostryopsis%1:20:00:: 12288188 1 0 -ostwald%1:18:00:: 11218054 1 0 -ostwald's_theory_of_indicators%1:09:00:: 06109487 1 0 -ostyak%1:10:00:: 06959018 2 0 -ostyak%1:18:00:: 09706911 1 0 -ostyak-samoyed%1:10:00:: 06960180 2 0 -ostyak-samoyed%1:18:00:: 09707735 1 0 -oswald%1:18:00:: 11218153 1 0 -oswald_spengler%1:18:00:: 11310679 1 0 -oswald_veblen%1:18:00:: 11361913 1 0 -oswego_tea%1:20:00:: 12858397 1 0 -otaheite_arrowroot%1:27:00:: 15055046 1 0 -otaheite_arrowroot_starch%1:27:00:: 15055046 1 0 -otalgia%1:26:00:: 14327435 1 0 -otaria%1:05:00:: 02078159 1 0 -otaria_byronia%1:05:00:: 02078292 1 0 -otariidae%1:05:00:: 02076535 1 0 -otc%5:00:00:unlisted:00 01418647 1 0 -otc_market%1:06:00:: 03866350 1 0 -otc_security%1:21:00:: 13421095 1 0 -otc_stock%1:21:00:: 13421286 1 0 -othello%1:18:00:: 09602258 1 0 -other%3:00:00:: 02069355 1 483 -other%5:00:00:past:00 01730820 2 8 -other%5:00:00:strange:00 00969333 4 0 -other%5:00:02:past:00 01729384 3 0 -other_than%4:02:00:: 00113082 1 0 -otherness%1:07:00:: 04742766 1 0 -otherwise%4:02:01:: 00046002 1 24 -otherwise%4:02:03:: 00113082 2 7 -otherwise%5:00:00:other:00 02071301 1 0 -otherworld%1:09:00:: 05810143 1 0 -otherworldliness%1:07:00:: 04621314 1 0 -otherworldly%5:00:00:supernatural:00 01577086 1 0 -othman_i%1:18:00:: 11217789 1 0 -otho%1:18:00:: 11356636 1 0 -otho_i%1:18:00:: 11218625 1 0 -otho_of_lagery%1:18:00:: 11356636 1 0 -othonna%1:20:00:: 11999278 1 0 -otic%3:01:00:: 02979028 1 0 -otic_ganglion%1:08:00:: 05297363 1 0 -otides%1:05:00:: 02018485 1 0 -otididae%1:05:00:: 02018638 1 0 -otiose%5:00:00:idle:00 00294579 3 0 -otiose%5:00:00:useless:00 02497471 2 0 -otiose%5:00:00:worthless:00 02503305 1 0 -otis%1:05:00:: 02019044 2 0 -otis%1:18:00:: 11218290 1 0 -otis_skinner%1:18:00:: 11304811 1 0 -otis_tarda%1:05:00:: 02019190 1 0 -otitis%1:26:00:: 14351629 1 0 -otitis_externa%1:26:00:: 14351759 1 0 -otitis_interna%1:26:00:: 14348757 1 0 -otitis_media%1:26:00:: 14351886 1 0 -oto%1:10:00:: 06909190 2 0 -oto%1:18:00:: 09664295 1 0 -otoe%1:10:00:: 06909190 2 0 -otoe%1:18:00:: 09664295 1 0 -otoganglion%1:08:00:: 05297363 1 0 -otolaryngologist%1:18:00:: 10059323 1 0 -otolaryngology%1:09:00:: 06062842 1 0 -otologist%1:18:00:: 10041195 1 0 -otology%1:09:00:: 06054700 1 0 -otoplasty%1:04:00:: 00682625 1 0 -otorhinolaryngologist%1:18:00:: 10059323 1 0 -otorhinolaryngology%1:09:00:: 06062842 1 0 -otorrhea%1:26:00:: 14352077 1 0 -otosclerosis%1:26:00:: 14160903 1 0 -otoscope%1:06:00:: 03858183 1 0 -ototoxic%5:00:00:toxic:00 02450364 1 0 -ottar%1:27:00:: 14892989 1 0 -ottava_rima%1:10:00:: 07097965 1 0 -ottawa%1:15:00:: 08827486 3 0 -ottawa%1:17:00:: 09380588 2 0 -ottawa%1:18:00:: 09664450 1 0 -ottawa_river%1:17:00:: 09380588 1 0 -otter%1:05:00:: 02444819 2 0 -otter%1:27:00:: 14765785 1 0 -otter_hound%1:05:00:: 02091635 1 0 -otter_shrew%1:05:00:: 01894956 1 0 -otterhound%1:05:00:: 02091635 1 0 -ottmar_mergenthaler%1:18:00:: 11176230 1 0 -otto_frisch%1:18:00:: 10983172 1 0 -otto_fritz_meyerhof%1:18:00:: 11177873 1 0 -otto_hahn%1:18:00:: 11022160 1 0 -otto_heinrich_warburg%1:18:00:: 11373672 1 0 -otto_i%1:18:00:: 11218625 1 0 -otto_jespersen%1:18:00:: 11083527 1 0 -otto_loewi%1:18:00:: 11137506 1 0 -otto_meyerhof%1:18:00:: 11177873 1 0 -otto_neumann_sverdrup%1:18:00:: 11326008 1 0 -otto_robert_frisch%1:18:00:: 10983172 1 0 -otto_the_great%1:18:00:: 11218625 1 0 -otto_von_bismarck%1:18:00:: 10851599 1 0 -otto_wagner%1:18:00:: 11370068 1 0 -ottoman%1:06:00:: 03858418 3 0 -ottoman%1:06:01:: 03380724 4 0 -ottoman%1:14:00:: 08156505 2 0 -ottoman%1:18:00:: 09735113 1 0 -ottoman%3:01:00:: 02970241 1 0 -ottoman_dynasty%1:14:00:: 08156505 1 0 -ottoman_empire%1:15:00:: 09038597 1 0 -ottoman_turk%1:18:00:: 09735113 1 0 -ottorino_respighi%1:18:00:: 11258214 1 0 -ottumwa%1:15:00:: 09087352 1 0 -otus%1:05:00:: 01623284 1 0 -otus_asio%1:05:00:: 01623425 1 0 -otus_scops%1:05:00:: 01624115 1 0 -otus_sunia%1:05:00:: 01624212 1 0 -ouachita%1:17:00:: 09380817 1 0 -ouachita_river%1:17:00:: 09380817 1 0 -oubliette%1:06:00:: 03858533 1 0 -ouguiya%1:23:00:: 13689765 1 0 -ouija%1:06:00:: 03858662 1 0 -ouija_board%1:06:00:: 03858662 1 0 -oujda%1:15:00:: 08970318 1 0 -ounce%1:05:00:: 02128757 3 0 -ounce%1:23:01:: 13719922 2 0 -ounce%1:23:02:: 13722522 1 4 -our_lady's_bedstraw%1:20:00:: 12665857 1 0 -our_lady's_mild_thistle%1:20:00:: 12015525 1 0 -our_lord's_candle%1:20:00:: 12484244 1 0 -ouranopithecus%1:05:00:: 02478416 1 0 -ouranos%1:18:00:: 09568051 1 0 -ouse%1:17:00:: 09381048 1 0 -ouse_river%1:17:00:: 09381048 1 0 -ousel%1:05:01:: 01558594 1 0 -oust%2:41:00:: 02401809 1 4 -oust%2:41:01:: 02406449 2 0 -ouster%1:04:00:: 00208797 3 0 -ouster%1:04:01:: 01194615 2 0 -ouster%1:18:00:: 10386071 1 0 -ousting%1:04:00:: 00208797 1 0 -out%1:04:00:: 00129527 1 0 -out%2:32:00:: 00935141 3 0 -out%2:32:01:: 00935264 2 0 -out%2:32:02:: 00935456 1 0 -out%3:00:02:: 02061487 1 3 -out%4:02:02:: 00232862 1 5 -out%4:02:03:: 00233295 3 0 -out%4:02:04:: 00233413 2 0 -out%5:00:00:dead:02 00100213 2 2 -out%5:00:00:exterior:00 00952653 8 0 -out%5:00:00:impermissible:00 01761375 5 0 -out%5:00:00:impossible:00 01823948 3 1 -out%5:00:00:outer:00 00949797 9 0 -out%5:00:00:outgoing:00 01295946 6 0 -out%5:00:00:unconscious:00 00572714 10 0 -out%5:00:00:unfashionable:00 00974908 7 0 -out%5:00:00:unsuccessful:00 02334973 4 0 -out-and-out%5:00:00:complete:00 00520892 1 1 -out-and-outer%1:18:00:: 10386196 1 0 -out-basket%1:06:00:: 03858837 1 0 -out-herod%2:33:00:: 01107705 1 0 -out-migration%1:04:00:: 00056087 1 0 -out-of-body_experience%1:11:00:: 07287812 1 0 -out-of-bounds%5:00:00:foul:00 00956049 1 3 -out-of-bounds%5:00:00:restricted:00 02002683 2 2 -out-of-court_settlement%1:10:00:: 07178182 1 0 -out-of-date%5:00:00:noncurrent:00 00669138 1 0 -out-of-door%3:00:00:: 01692222 1 0 -out-of-doors%1:15:00:: 08613733 1 1 -out-of-pocket%5:00:00:due:00 00137373 1 0 -out-of-school%5:00:00:free:00 01063490 1 1 -out-of-the-box_thinking%1:09:00:: 05797177 1 0 -out-of-the-way%5:00:00:far:00 00444220 3 0 -out-of-the-way%5:00:00:improper:00 01881365 2 0 -out-of-the-way%5:00:00:unusual:00 00490979 1 1 -out-of-town%5:00:00:distant:01 00446605 1 3 -out-tray%1:06:00:: 03858837 1 0 -out_and_away%4:02:00:: 00047056 1 0 -out_front%4:02:00:: 00067513 1 0 -out_in%2:38:00:: 02017299 1 0 -out_loud%4:02:00:: 00069771 1 2 -out_of%4:02:00:: 00233573 1 0 -out_of_bounds%1:15:00:: 08651104 1 0 -out_of_doors%4:02:00:: 00110659 1 3 -out_of_gear%5:00:00:ungeared:00 01101264 1 0 -out_of_hand%4:02:00:: 00148422 1 3 -out_of_nothing%4:02:00:: 00171543 1 0 -out_of_place%4:02:00:: 00510244 1 0 -out_of_place%5:00:00:malapropos:00 00138782 1 1 -out_of_play%5:00:00:dead:02 00100506 1 0 -out_of_practice%5:00:00:unskilled:00 02230205 1 0 -out_of_print%5:00:00:discontinued:00 00598536 1 0 -out_of_reach%5:00:00:inaccessible:00 00020410 1 0 -out_of_sight%4:02:00:: 00252249 2 1 -out_of_sight%4:02:01:: 00510105 1 1 -out_of_sight%5:00:00:invisible:00 02517817 1 4 -out_of_stock%5:00:00:unavailable:00 00186490 1 0 -out_of_the_blue%4:02:00:: 00040719 1 0 -out_of_the_blue%5:00:00:unexpected:00 00930765 1 1 -out_of_the_question%5:00:00:unthinkable:00 02418692 1 1 -out_of_the_way%4:02:00:: 00040882 6 0 -out_of_the_way%4:02:01:: 00041014 5 0 -out_of_the_way%4:02:02:: 00041133 4 0 -out_of_the_way%4:02:03:: 00041232 3 0 -out_of_the_way%4:02:04:: 00041393 2 0 -out_of_the_way%4:02:05:: 00041452 1 0 -out_of_thin_air%4:02:00:: 00171543 1 0 -out_of_true%5:00:00:uneven:00 00912637 1 0 -out_of_use%5:00:00:closed:01 01653857 1 0 -out_of_view%4:02:00:: 00510105 1 0 -out_of_wedlock%4:02:00:: 00362650 1 0 -out_of_wedlock%4:02:01:: 00171673 2 0 -out_of_whack%5:00:00:malfunctioning:00 01092727 1 0 -out_of_work%5:00:00:unemployed:00 00865007 1 0 -out_or_keeping%5:00:00:incongruous:00 00562909 1 0 -out_to%5:00:00:resolute:00 01990172 1 1 -outage%1:11:00:: 07421859 2 0 -outage%1:23:00:: 13759428 1 0 -outaouais%1:17:00:: 09380588 1 0 -outback%1:15:00:: 08505110 1 0 -outback%5:00:00:inaccessible:00 00020103 1 0 -outbalance%2:42:00:: 02645597 1 0 -outbid%2:40:00:: 02299801 2 0 -outbid%2:40:01:: 02301000 1 0 -outboard%1:06:00:: 03859000 2 0 -outboard%1:06:01:: 03859170 1 0 -outboard%3:00:00:: 01291391 1 0 -outboard_motor%1:06:00:: 03859000 1 1 -outboard_motorboat%1:06:00:: 03859170 1 0 -outbound%5:00:00:outgoing:00 01295660 1 0 -outbrave%2:33:00:: 01107625 2 0 -outbrave%2:33:01:: 01117219 1 0 -outbreak%1:11:00:: 07435273 1 1 -outbred%3:00:00:: 01291937 1 0 -outbuilding%1:06:00:: 03859280 1 0 -outburst%1:04:00:: 00554433 3 0 -outburst%1:10:00:: 07014320 1 3 -outburst%1:11:00:: 07434942 2 2 -outcall%2:40:00:: 02300734 1 0 -outcast%1:18:00:: 10386312 1 2 -outcast%5:00:00:unwanted:00 02528440 1 0 -outcaste%1:18:00:: 10386515 1 0 -outcaste%5:00:00:unwanted:00 02528566 1 0 -outclass%2:31:00:: 00659373 1 1 -outclassed%5:00:00:inferior:01 02341132 1 1 -outcome%1:11:00:: 07292694 1 16 -outcome%1:19:00:: 11410625 2 2 -outcrop%1:17:00:: 09381242 1 0 -outcrop%2:30:00:: 00424499 1 0 -outcropping%1:17:00:: 09381242 1 0 -outcry%1:10:00:: 07120524 1 2 -outcry%2:32:00:: 00912048 2 0 -outcry%2:33:00:: 01105186 1 0 -outdated%5:00:00:noncurrent:00 00669138 1 1 -outdistance%2:38:00:: 02081795 1 4 -outdo%2:33:00:: 01105639 1 2 -outdo%2:33:01:: 01109259 2 0 -outdoor%3:00:00:: 01692222 1 6 -outdoor%3:01:00:: 03095372 2 2 -outdoor_game%1:04:00:: 00464651 1 0 -outdoor_man%1:18:00:: 10639359 1 1 -outdoor_sport%1:04:00:: 00433661 1 0 -outdoor_stage%1:06:00:: 02786984 1 0 -outdoors%1:15:00:: 08613733 1 0 -outdoors%4:02:00:: 00110659 1 2 -outdoorsman%1:18:00:: 10386618 1 0 -outdoorswoman%1:18:00:: 10386754 1 0 -outdoorsy%5:00:00:outdoor:00 01692640 1 0 -outdraw%2:33:00:: 01105526 1 1 -outer%3:00:00:: 00949548 1 6 -outer%5:00:00:external:00 00948384 3 0 -outer%5:00:00:outward:00 00951163 2 1 -outer_boundary%1:25:00:: 13903576 1 0 -outer_ear%1:08:00:: 05323723 1 0 -outer_garment%1:06:00:: 03863923 1 0 -outer_hebrides%1:15:00:: 08894319 1 0 -outer_mongolia%1:15:00:: 08968879 1 0 -outer_planet%1:17:00:: 09381480 1 0 -outer_space%1:15:00:: 08500433 1 1 -outercourse%1:04:00:: 00843831 1 0 -outermost%5:00:00:outer:00 00949883 1 0 -outerwear%1:06:00:: 03859495 1 0 -outface%2:39:00:: 02132989 1 2 -outfall%1:06:00:: 03859608 1 0 -outfield%1:06:00:: 03859717 1 2 -outfielder%1:18:00:: 10386984 1 4 -outfielder%1:18:01:: 10386874 2 0 -outfight%2:33:00:: 01109431 1 1 -outfit%1:06:00:: 03619396 3 1 -outfit%1:06:01:: 03859958 2 1 -outfit%1:14:00:: 08274826 1 7 -outfit%2:40:00:: 02339413 1 0 -outfitted%5:00:00:equipped:00 01094855 2 0 -outfitted%5:00:00:furnished:00 01097484 1 0 -outfitter%1:06:00:: 03860234 2 0 -outfitter%1:18:00:: 10387712 1 0 -outfitting%1:04:00:: 01157138 1 0 -outflank%2:33:00:: 01109259 2 0 -outflank%2:38:00:: 02085446 1 0 -outflow%1:11:00:: 07436661 1 1 -outflow%1:17:00:: 09443453 3 0 -outflow%1:22:00:: 13529295 2 0 -outflowing%5:00:00:outgoing:00 01295837 1 0 -outfox%2:33:00:: 01107806 1 0 -outfox%2:33:01:: 01104852 2 0 -outgeneral%2:33:00:: 01109773 1 1 -outgo%1:21:00:: 13275288 1 0 -outgo%2:33:00:: 01105639 1 0 -outgoer%1:18:00:: 10051975 1 0 -outgoing%3:00:00:: 01295443 1 2 -outgoing%3:00:01:: 01294185 2 0 -outgoing%5:00:00:sociable:00 02258249 3 0 -outgrow%2:30:01:: 00543745 1 1 -outgrow%2:33:00:: 01105097 2 0 -outgrowth%1:08:00:: 05470189 3 0 -outgrowth%1:11:00:: 07324673 2 0 -outgrowth%1:19:00:: 11415721 1 0 -outguess%2:32:00:: 00917651 1 0 -outhouse%1:06:00:: 03860404 1 0 -outing%1:04:00:: 00311809 1 1 -outing%1:28:00:: 15138691 2 0 -outlander%1:18:00:: 10103485 1 0 -outlandish%5:00:00:unconventional:01 00608791 1 0 -outlandishly%4:02:00:: 00415496 1 0 -outlandishness%1:07:00:: 04798511 1 0 -outlast%2:42:00:: 02619739 1 0 -outlaw%1:18:00:: 09977660 1 1 -outlaw%2:41:00:: 02480923 1 2 -outlaw%5:00:00:illegal:00 01403760 1 0 -outlaw%5:00:00:unlawful:00 01396333 2 0 -outlawed%5:00:00:illegal:00 01403760 1 0 -outlawry%1:07:00:: 04811126 1 0 -outlay%1:04:00:: 01122149 1 1 -outlay%1:21:01:: 13275288 2 0 -outlet%1:04:00:: 01264447 4 0 -outlet%1:06:00:: 03303965 3 0 -outlet%1:06:01:: 03748162 1 3 -outlet%1:06:02:: 04548771 2 1 -outlet_box%1:06:00:: 03860569 1 0 -outlier%1:09:00:: 06023369 2 0 -outlier%1:18:00:: 10387836 1 0 -outline%1:09:00:: 05891572 3 1 -outline%1:10:00:: 06468951 2 2 -outline%1:15:00:: 08612786 1 3 -outline%2:32:00:: 01006421 1 12 -outline%2:36:01:: 01689379 3 0 -outline%2:36:03:: 01701634 2 0 -outlined%5:00:00:distinct:00 00780712 1 1 -outlive%2:42:00:: 02619739 1 2 -outlook%1:04:00:: 00881545 3 0 -outlook%1:09:00:: 05944958 2 5 -outlook%1:09:01:: 06195839 1 11 -outlying%5:00:00:far:00 00444399 1 1 -outmaneuver%2:33:00:: 01110247 1 1 -outmanoeuvre%2:33:00:: 01110247 1 0 -outmarch%2:33:00:: 01110880 1 0 -outmatch%2:33:00:: 01105639 1 0 -outmode%2:30:00:: 00559754 1 1 -outmoded%5:00:00:unfashionable:00 00974159 1 1 -outmost%5:00:00:outer:00 00949883 1 0 -outnumber%2:42:00:: 02644905 1 2 -outpace%2:33:00:: 01106670 1 0 -outpatient%1:18:00:: 10387936 1 0 -outperform%2:33:00:: 01105639 1 0 -outplay%2:33:00:: 01154957 1 1 -outpoint%2:33:00:: 01101103 2 0 -outpoint%2:38:00:: 01946279 1 0 -outport%1:15:00:: 08638260 1 0 -outpost%1:06:00:: 03860741 3 1 -outpost%1:14:00:: 08374653 2 1 -outpost%1:15:00:: 08613985 1 1 -outpouring%1:04:00:: 00329819 5 0 -outpouring%1:10:00:: 07083441 4 0 -outpouring%1:11:00:: 07407777 3 0 -outpouring%1:11:01:: 07439570 2 0 -outpouring%1:17:00:: 09443453 1 0 -output%1:04:00:: 00914632 2 2 -output%1:06:00:: 03287178 1 5 -output%1:06:01:: 03860882 5 0 -output%1:10:02:: 07264925 3 1 -output%1:23:00:: 13758745 4 0 -output%2:36:00:: 01622795 1 1 -output-to-input_ratio%1:24:00:: 13823968 1 0 -output_contract%1:10:00:: 06523473 1 0 -output_device%1:06:00:: 03861048 1 0 -output_file%1:10:00:: 06510663 1 0 -output_program%1:10:00:: 06577232 1 0 -output_routine%1:10:00:: 06583929 1 0 -output_signal%1:10:00:: 07264925 1 0 -outrage%1:04:00:: 01225397 4 0 -outrage%1:04:01:: 00425090 2 1 -outrage%1:11:00:: 07306252 3 0 -outrage%1:12:00:: 07517737 1 1 -outrage%2:37:01:: 01810447 1 2 -outrage%2:41:00:: 02567519 3 0 -outrage%2:41:01:: 02568065 2 0 -outraged%5:00:00:angry:00 00115494 1 1 -outrageous%5:00:00:immoderate:00 01534282 2 0 -outrageous%5:00:00:offensive:01 01626562 1 1 -outrageously%4:02:00:: 00117372 2 0 -outrageously%4:02:01:: 00117508 1 0 -outrageousness%1:07:00:: 04903247 2 0 -outrageousness%1:07:01:: 05119096 1 0 -outrange%2:33:00:: 01107439 1 0 -outrank%2:42:00:: 02673844 1 0 -outre%5:00:00:unconventional:01 00608791 1 0 -outreach%1:04:00:: 00348953 1 5 -outride%2:38:00:: 01958278 2 0 -outride%2:42:00:: 02619122 1 0 -outrider%1:18:00:: 10388082 1 0 -outrigged%5:00:00:rigged:00 01093631 1 0 -outrigger%1:06:00:: 03861271 1 0 -outrigger_canoe%1:06:00:: 03861430 1 0 -outright%4:02:00:: 00097620 2 0 -outright%4:02:01:: 00097731 1 2 -outright%4:02:02:: 00033421 3 0 -outright%5:00:00:unqualified:02 01914407 1 1 -outrival%2:33:00:: 01122630 1 0 -outroar%2:33:00:: 01105296 1 0 -outrun%2:38:00:: 01927608 1 2 -outsail%2:33:00:: 01105385 1 0 -outscore%2:33:00:: 01101103 1 0 -outsell%2:33:00:: 01106377 2 0 -outsell%2:33:01:: 01106504 1 0 -outset%1:28:00:: 15265518 1 4 -outshine%2:33:00:: 01107254 2 0 -outshine%2:43:00:: 02763166 1 0 -outshout%2:33:00:: 01105186 1 0 -outside%1:15:00:: 08613472 2 1 -outside%1:15:01:: 08613593 1 7 -outside%3:00:00:: 01692969 1 5 -outside%3:00:04:: 01692222 4 3 -outside%4:02:00:: 00110659 1 15 -outside%4:02:01:: 00110919 2 6 -outside%5:00:00:exterior:00 00952761 6 3 -outside%5:00:00:external:00 00948514 3 4 -outside%5:00:00:extramural:00 01347749 5 3 -outside%5:00:00:extrinsic:00 01350225 2 5 -outside%5:00:00:foreign:02 01037885 7 2 -outside%5:00:00:inaccurate:00 00023655 10 0 -outside%5:00:00:outer:00 00950002 9 0 -outside%5:00:00:unlikely:00 01413084 8 0 -outside_caliper%1:06:00:: 03861596 1 0 -outside_clinch%1:06:00:: 03861731 1 0 -outside_door%1:06:00:: 03307274 1 2 -outside_loop%1:04:00:: 00170172 1 0 -outside_marriage%4:02:00:: 00171673 1 0 -outside_mirror%1:06:00:: 03861842 1 0 -outsider%1:18:00:: 10103921 1 2 -outsider%1:18:01:: 10388192 2 0 -outsider_art%1:06:00:: 03861959 1 0 -outsize%1:07:00:: 05096577 1 0 -outsize%5:00:00:large:00 01389993 1 0 -outsized%5:00:00:large:00 01389993 1 0 -outskirt%1:15:00:: 08690792 1 1 -outskirts%1:15:00:: 08539276 1 3 -outsmart%2:33:00:: 01104852 1 2 -outsmart%2:33:01:: 01110247 2 0 -outsole%1:06:00:: 03862190 1 0 -outsource%2:40:00:: 02361100 1 0 -outspan%2:35:00:: 01491517 1 0 -outspoken%5:00:00:communicative:00 00499530 1 1 -outspoken%5:00:00:direct:02 00764484 2 0 -outspokenly%4:02:00:: 00415633 1 0 -outspokenness%1:07:00:: 04650731 1 0 -outspread%5:00:00:extended:00 01431938 1 0 -outstanding%5:00:00:conspicuous:00 00580805 2 3 -outstanding%5:00:00:important:00 01278818 4 0 -outstanding%5:00:00:superior:02 02343762 1 5 -outstanding%5:00:00:unpaid:00 01710543 3 0 -outstandingly%4:02:00:: 00507053 1 2 -outstandingly%4:02:01:: 00107230 2 0 -outstare%2:39:00:: 02132989 1 0 -outstation%1:15:00:: 08613985 1 0 -outstay%2:42:00:: 02637466 1 0 -outstay%2:42:01:: 02619291 2 0 -outstretched%5:00:00:extended:00 01432070 1 0 -outstrip%2:33:00:: 01105639 1 1 -outstrip%2:38:00:: 02081795 2 0 -outstroke%1:11:00:: 07351497 1 0 -outtake%1:10:00:: 06614901 1 0 -outthrust%1:17:00:: 09381781 1 0 -outturn%1:06:00:: 03860882 1 0 -outvie%2:33:00:: 01122630 1 0 -outvote%2:41:00:: 02462997 1 0 -outward%3:00:00:: 00950706 1 3 -outward%4:02:00:: 00258677 1 1 -outward%5:00:00:outgoing:00 01295660 2 0 -outward-bound%5:00:00:outgoing:00 01295660 1 0 -outward-developing%5:00:00:centrifugal:00 00332524 1 0 -outward-moving%5:00:00:centrifugal:00 00332723 1 0 -outwardly%4:02:00:: 00230058 2 0 -outwardly%4:02:01:: 00230331 1 1 -outwardness%1:07:00:: 05078623 2 0 -outwardness%1:07:02:: 04620741 3 0 -outwardness%1:09:00:: 05787498 1 0 -outwards%4:02:00:: 00258677 1 0 -outwear%2:29:00:: 00075021 2 0 -outwear%2:42:00:: 02705303 1 0 -outweigh%2:33:00:: 01107544 1 3 -outweigh%2:42:00:: 02645597 2 2 -outwit%2:33:00:: 01104852 1 0 -outwork%1:06:00:: 03862379 1 0 -ouzel%1:05:01:: 01558594 1 0 -ouzo%1:13:00:: 07904934 1 0 -ov%1:14:00:: 08036849 1 0 -oval%1:25:00:: 13878306 1 3 -oval%5:00:00:rounded:00 02046199 1 4 -oval-bodied%5:00:00:bodied:00 00628610 1 0 -oval-fruited%5:00:00:fruitful:00 01082038 1 0 -oval-shaped%5:00:00:rounded:00 02046199 1 0 -oval_kumquat%1:20:00:: 12713521 1 0 -oval_office%1:06:00:: 03862531 1 0 -oval_window%1:08:00:: 05325606 1 0 -ovalbumin%1:13:00:: 07841037 1 0 -ovalipes%1:05:00:: 01979395 1 0 -ovalipes_ocellatus%1:05:00:: 01979526 1 0 -ovarian%3:01:00:: 02932685 1 0 -ovarian_artery%1:08:00:: 05353070 1 0 -ovarian_cyst%1:26:00:: 14202417 1 0 -ovarian_pregnancy%1:26:00:: 14047547 1 0 -ovarian_vein%1:08:00:: 05375530 1 0 -ovariectomy%1:04:00:: 00686570 1 0 -ovaritis%1:26:00:: 14351995 1 0 -ovary%1:08:00:: 05515287 2 0 -ovary%1:20:00:: 11678635 1 0 -ovate%5:00:00:rounded:00 02046199 2 0 -ovate%5:00:00:simple:01 02169940 1 0 -ovate_leaf%1:20:00:: 13159155 1 0 -ovation%1:10:00:: 06688751 1 0 -oven%1:06:00:: 03862676 1 1 -oven-ready%5:00:00:prepared:00 01844141 1 0 -oven-shaped%5:00:00:formed:00 02148728 1 0 -oven_broil%2:30:00:: 00328370 1 0 -oven_stuffer%1:13:00:: 07645769 1 0 -oven_stuffer_roaster%1:13:00:: 07645769 1 0 -oven_thermometer%1:06:00:: 03862862 1 0 -ovenbake%2:30:00:: 00320121 1 0 -ovenbird%1:05:01:: 01570267 1 0 -ovenbird%1:05:02:: 01552813 2 0 -ovenware%1:06:00:: 03862984 1 0 -over%1:28:00:: 15258694 1 0 -over%4:02:00:: 00226458 3 1 -over%4:02:01:: 00226550 1 23 -over%4:02:02:: 00226677 2 2 -over%4:02:04:: 00226758 4 0 -over%4:02:05:: 00198039 5 0 -over%5:00:01:finished:01 01003277 1 21 -over-correct%2:41:00:: 02520360 1 0 -over-crowding%1:26:00:: 13944747 1 0 -over-embellished%5:00:00:rhetorical:00 02017372 1 0 -over-refine%2:30:00:: 00474308 1 0 -over-the-counter%3:00:00:: 01846204 1 0 -over-the-counter%5:00:00:unlisted:00 01418647 2 0 -over-the-counter_drug%1:06:00:: 03866176 1 0 -over-the-counter_market%1:06:00:: 03866350 1 0 -over-the-counter_medicine%1:06:00:: 03866176 1 0 -over-the-hill%5:00:00:old:02 01646435 1 0 -over-the-shoulder_bombing%1:04:00:: 00979557 1 0 -over-the-top%5:00:00:immoderate:00 01534648 1 0 -over_again%4:02:00:: 00040365 1 1 -over_and_over%4:02:00:: 00176981 1 5 -over_and_over_again%4:02:00:: 00176981 1 3 -over_here%4:02:00:: 00260998 1 1 -over_the_counter_security%1:21:00:: 13421095 1 0 -over_the_counter_stock%1:21:00:: 13421286 1 0 -overabundance%1:07:00:: 05119367 2 0 -overabundance%1:26:00:: 14452294 1 0 -overabundant%5:00:00:abundant:00 00015720 1 0 -overachieve%2:41:00:: 02562235 1 0 -overachievement%1:04:00:: 00047356 1 2 -overachiever%1:18:00:: 10388321 1 2 -overact%2:36:00:: 01751173 1 0 -overacting%1:04:00:: 00551585 1 0 -overactive%5:00:00:active:01 00033206 1 1 -overactivity%1:22:00:: 13529450 1 0 -overage%1:21:00:: 13378816 1 0 -overage%5:00:00:old:02 01646435 1 0 -overaged%5:00:00:old:02 01646435 1 0 -overall%1:06:00:: 03863108 1 4 -overall%1:06:02:: 03863262 2 0 -overall%5:00:00:general:00 01102451 1 9 -overall%5:00:00:gross:00 01582946 2 8 -overambitious%5:00:00:ambitious:00 00104942 1 0 -overanxiety%1:26:00:: 14375166 1 0 -overanxious%5:00:00:insecure:01 02093703 1 0 -overappraisal%1:10:00:: 06528992 1 0 -overarch%2:38:00:: 02035315 2 0 -overarch%2:42:00:: 02644771 1 0 -overarm%3:00:00:: 02470734 1 0 -overawe%2:37:00:: 01779803 1 0 -overawed%5:00:00:awed:00 02014972 1 0 -overbalance%2:40:00:: 02265090 2 0 -overbalance%2:42:00:: 02645597 1 0 -overbear%2:35:00:: 01389186 3 0 -overbear%2:36:00:: 01652652 2 0 -overbear%2:42:00:: 02647184 1 0 -overbearing%5:00:00:domineering:00 00787357 1 2 -overbearing%5:00:00:proud:00 01891109 2 0 -overbearingly%4:02:00:: 00415782 1 0 -overbearingness%1:07:00:: 04888788 1 0 -overbid%1:10:00:: 07165298 1 0 -overbid%1:10:01:: 06737758 2 0 -overbid%2:40:00:: 02299552 2 0 -overbid%2:40:01:: 02301151 1 0 -overbite%1:26:00:: 14061097 1 0 -overblown%5:00:00:mature:01 01489454 2 0 -overblown%5:00:00:pretentious:00 01849960 1 0 -overboard%4:02:00:: 00173131 2 3 -overboard%4:02:01:: 00506715 1 3 -overboil%2:30:00:: 00375268 1 0 -overboil%2:30:01:: 00322719 2 0 -overbold%5:00:00:forward:02 00205295 1 0 -overburden%1:06:00:: 03864994 2 0 -overburden%1:17:00:: 09381880 1 0 -overburden%2:32:00:: 00750842 1 1 -overburden%2:35:00:: 01487718 2 0 -overburdened%5:00:00:burdened:00 00869690 1 0 -overbusy%5:00:00:busy:00 00293819 1 0 -overcall%1:10:00:: 06737758 1 0 -overcapitalisation%1:04:00:: 00093127 1 0 -overcapitalise%2:30:00:: 00162350 3 0 -overcapitalise%2:31:00:: 00671859 2 0 -overcapitalise%2:31:01:: 00731400 1 0 -overcapitalization%1:04:00:: 00093127 1 0 -overcapitalize%2:30:00:: 00162350 3 0 -overcapitalize%2:31:00:: 00671859 2 0 -overcapitalize%2:31:01:: 00731400 1 0 -overcareful%5:00:00:careful:00 00310943 1 0 -overcast%1:04:00:: 00455076 4 0 -overcast%1:06:00:: 03863442 3 0 -overcast%1:26:00:: 14524198 1 6 -overcast%1:26:01:: 13984468 2 0 -overcast%2:35:00:: 01330093 3 0 -overcast%2:35:01:: 01330269 2 0 -overcast%2:43:00:: 02770717 1 0 -overcast%5:00:00:cloudy:00 00461971 1 1 -overcasting%1:06:00:: 03863442 1 0 -overcautious%5:00:00:cautious:00 00326296 1 0 -overcharge%1:21:00:: 13307784 1 0 -overcharge%2:35:00:: 01488555 2 0 -overcharge%2:40:00:: 02319050 1 0 -overclothe%2:29:00:: 00049309 1 0 -overclothes%1:06:00:: 03859495 1 0 -overcloud%2:30:00:: 00313712 2 0 -overcloud%2:43:00:: 02771020 1 0 -overcoat%1:06:00:: 03456665 1 3 -overcoat%1:06:01:: 03863657 2 0 -overcoating%1:06:00:: 03863657 1 0 -overcome%2:33:01:: 01108627 2 9 -overcome%2:33:02:: 01104018 4 0 -overcome%2:33:03:: 01108148 1 14 -overcome%2:37:00:: 01809321 3 8 -overcomer%1:18:00:: 10668450 1 0 -overcompensate%2:41:00:: 02520360 2 0 -overcompensate%2:42:00:: 02672859 1 0 -overcompensation%1:21:00:: 13282948 2 0 -overcompensation%1:22:00:: 13529616 1 0 -overconfidence%1:09:00:: 05697789 1 0 -overconfident%5:00:00:confident:00 00339288 1 1 -overcook%2:30:00:: 00323571 1 0 -overcredulity%1:07:00:: 04895695 1 0 -overcredulous%5:00:00:credulous:00 00646890 1 0 -overcritical%5:00:00:critical:01 00648345 1 0 -overcrop%2:36:00:: 01741692 1 0 -overcrossing%1:06:00:: 03379828 1 0 -overcrowd%2:38:00:: 02027926 2 0 -overcrowd%2:38:01:: 02028181 1 0 -overcultivate%2:36:00:: 01741692 1 0 -overcup_oak%1:20:00:: 12274151 1 0 -overcurious%5:00:00:curious:00 00665502 1 1 -overdelicate%5:00:00:delicate:00 00706974 1 0 -overdo%2:41:00:: 02568999 1 0 -overdone%5:00:00:cooked:00 00617864 2 0 -overdone%5:00:00:immoderate:00 01533806 1 2 -overdose%2:29:00:: 00085353 1 0 -overdraft%1:21:00:: 13377654 1 0 -overdraft_credit%1:21:00:: 13380996 1 0 -overdramatise%2:32:00:: 00988692 1 0 -overdramatize%2:32:00:: 00988692 1 0 -overdraw%2:32:00:: 00839834 2 0 -overdraw%2:40:00:: 02312186 1 0 -overdress%2:29:00:: 00044149 2 0 -overdress%2:29:01:: 00049309 1 0 -overdressed%5:00:00:clothed:00 00456355 1 0 -overdrive%1:06:00:: 03863783 2 0 -overdrive%1:26:00:: 14009020 1 0 -overdrive%2:34:00:: 01161695 2 0 -overdrive%2:41:00:: 02408530 1 1 -overdue%5:00:00:due:00 00137120 1 0 -overeager%5:00:00:eager:00 00811707 1 0 -overeat%2:34:00:: 01193099 1 1 -overeating%1:04:00:: 00759186 1 1 -overemotional%5:00:00:emotional:00 00856511 1 0 -overemphasis%1:07:00:: 05037737 1 0 -overemphasise%2:32:00:: 00840609 1 0 -overemphasize%2:32:00:: 00840609 1 2 -overenthusiastic%5:00:00:enthusiastic:00 00886980 1 0 -overestimate%1:09:00:: 05804274 2 0 -overestimate%1:10:00:: 06528992 1 0 -overestimate%2:31:00:: 00672017 1 1 -overestimate%2:31:02:: 00695475 2 0 -overestimation%1:09:00:: 05804274 2 0 -overestimation%1:10:00:: 06528992 1 1 -overexcited%5:00:00:excited:00 00920422 1 0 -overexert%2:41:00:: 02371975 1 0 -overexert_oneself%2:33:00:: 01146382 1 0 -overexertion%1:04:00:: 00633717 1 0 -overexploit%2:34:00:: 01164568 1 0 -overexploitation%1:04:00:: 00951433 1 0 -overexpose%2:39:00:: 02113054 2 0 -overexpose%2:39:01:: 02113622 1 1 -overexposure%1:04:00:: 00907500 1 0 -overexposure%1:04:01:: 00157687 2 0 -overextend%2:34:00:: 01165898 1 0 -overfamiliar%5:00:00:forward:02 00205150 1 0 -overfatigue%2:29:00:: 00075998 1 0 -overfed%5:00:00:nourished:00 02300714 1 0 -overfeed%2:34:00:: 01179530 1 1 -overfeeding%1:04:00:: 01059096 1 0 -overfill%2:30:00:: 00453554 1 1 -overflight%1:04:00:: 00304442 1 0 -overflow%1:04:00:: 00329819 1 1 -overflow%1:11:00:: 07407272 2 0 -overflow%2:37:00:: 01763101 2 0 -overflow%2:38:00:: 02072159 1 2 -overflow_incontinence%1:22:00:: 13529831 1 0 -overflowing%5:00:00:full:00 01083754 1 0 -overfly%2:38:00:: 01840092 1 0 -overfond%5:00:00:loving:00 01466136 1 0 -overfull%5:00:00:full:00 01085167 1 0 -overgarment%1:06:00:: 03863923 1 0 -overgeneralise%2:32:00:: 01022257 1 0 -overgeneralize%2:32:00:: 01022257 1 0 -overgenerous%5:00:00:generous:01 01111965 1 0 -overgorge%2:34:00:: 01193099 1 0 -overgreedy%5:00:00:gluttonous:00 00011665 1 0 -overgrow%2:30:01:: 00232714 3 0 -overgrow%2:30:02:: 00232843 2 0 -overgrow%2:42:02:: 02669709 1 0 -overgrown%5:00:00:covered:00 01697235 1 1 -overgrown%5:00:00:wooded:00 02574092 2 0 -overgrowth%1:07:00:: 05116486 2 0 -overgrowth%1:26:00:: 14368288 1 0 -overhand%3:00:00:: 02470734 1 1 -overhand%5:00:00:handmade:00 00674021 2 0 -overhand_knot%1:06:00:: 03864139 1 0 -overhand_pitch%1:04:00:: 00108545 1 0 -overhand_stitch%1:06:00:: 03864254 1 0 -overhanded%3:00:00:: 02470734 1 0 -overhang%1:06:00:: 03864356 1 1 -overhang%2:42:00:: 02697435 2 0 -overhang%2:42:01:: 02713748 1 0 -overhasty%5:00:00:hurried:00 01270868 1 0 -overhaul%1:04:00:: 00268112 1 0 -overhaul%1:04:01:: 00265119 2 0 -overhaul%2:30:00:: 00262076 2 1 -overhaul%2:38:00:: 02049696 1 1 -overhead%1:04:00:: 00569474 6 0 -overhead%1:06:00:: 03864542 5 0 -overhead%1:06:01:: 04534779 4 0 -overhead%1:15:00:: 08556065 3 0 -overhead%1:21:00:: 13277179 1 3 -overhead%1:28:00:: 15298011 2 0 -overhead%3:00:00:: 02472563 1 4 -overhead%4:02:00:: 00249447 2 2 -overhead%4:02:01:: 00249641 1 2 -overhead_projector%1:06:00:: 03864692 1 0 -overhead_railway%1:06:00:: 03280813 1 0 -overhear%2:39:00:: 02189168 1 8 -overheat%2:30:00:: 00370263 1 1 -overheat%2:30:01:: 00372501 2 0 -overheated%5:00:00:hot:01 01249621 1 1 -overheating%1:22:00:: 13530108 1 0 -overindulge%2:34:00:: 01193099 1 1 -overindulgence%1:04:00:: 01073655 1 0 -overindulgent%5:00:00:indulgent:00 01299385 1 0 -overjealous%5:00:00:distrustful:00 02464105 1 0 -overjoy%2:37:00:: 01813228 1 0 -overjoyed%5:00:00:joyful:00 01363936 1 0 -overkill%1:04:00:: 00633479 2 0 -overkill%1:07:00:: 05204316 1 0 -overladen%5:00:00:full:00 01085848 1 0 -overland%5:00:00:terrestrial:00 00125170 1 0 -overlap%1:06:00:: 03641706 3 0 -overlap%1:07:00:: 05048833 2 0 -overlap%1:09:00:: 05764365 1 0 -overlap%2:42:01:: 02688794 2 1 -overlap%2:42:03:: 02660631 1 5 -overlapping%1:06:00:: 03561657 1 0 -overlarge%5:00:00:large:00 01390130 1 0 -overlay%1:06:00:: 04187233 1 0 -overlay%1:06:01:: 03864834 2 0 -overlay%2:35:00:: 01336635 1 1 -overlay%2:35:01:: 01326890 2 0 -overlayer%1:06:00:: 04187233 1 0 -overleaf%4:02:00:: 00415866 1 0 -overleap%2:31:00:: 00614999 3 0 -overleap%2:38:00:: 01966168 2 0 -overleap%2:41:00:: 02569396 1 0 -overlie%2:35:00:: 01326890 2 0 -overlie%2:35:01:: 01547797 1 0 -overlip%1:08:00:: 05306055 1 0 -overload%1:06:00:: 03864994 2 0 -overload%1:06:02:: 03865171 1 1 -overload%2:30:00:: 00182037 2 1 -overload%2:35:00:: 01488555 3 0 -overload%2:35:01:: 01488847 1 1 -overloaded%5:00:00:full:00 01085848 1 1 -overlook%1:15:00:: 08614104 1 0 -overlook%2:31:00:: 00614999 3 1 -overlook%2:39:00:: 02166248 5 0 -overlook%2:39:01:: 02166361 1 6 -overlook%2:42:00:: 02696129 4 0 -overlook%2:42:01:: 02721966 2 3 -overlooked%5:00:00:unnoticed:00 01608848 1 1 -overlooking%5:00:00:high:01 01205232 1 0 -overlord%1:18:00:: 10388440 1 0 -overlordship%1:04:00:: 00595684 1 0 -overly%4:02:00:: 00047392 1 0 -overlying%5:00:00:superjacent:00 02349149 1 0 -overmantel%1:06:00:: 03865288 1 0 -overmaster%2:33:00:: 01110517 1 0 -overmodest%5:00:00:modest:01 01538118 1 0 -overmuch%1:07:00:: 05119367 1 0 -overmuch%4:02:00:: 00415963 1 0 -overmuch%5:00:00:much:00 01553925 1 0 -overmuchness%1:07:00:: 05119367 1 0 -overnice%5:00:00:fastidious:00 00984333 1 0 -overnight%4:02:00:: 00244342 1 2 -overnight%4:02:01:: 00244449 2 0 -overnight%5:00:00:long:02 01441530 1 2 -overnight_bag%1:06:00:: 03865371 1 0 -overnight_case%1:06:00:: 03865371 1 0 -overnighter%1:06:00:: 03865371 2 0 -overnighter%1:18:00:: 10388647 1 3 -overpass%1:06:00:: 03865557 1 0 -overpay%2:40:00:: 02250077 1 0 -overpayment%1:04:00:: 01121390 2 0 -overpayment%1:21:00:: 13279046 1 4 -overplay%2:36:00:: 01751173 1 0 -overplus%1:07:00:: 05120116 1 0 -overpopulate%2:42:00:: 02651014 1 0 -overpopulation%1:14:00:: 08178935 1 0 -overpower%2:33:00:: 01110517 1 2 -overpower%2:37:00:: 01809321 2 1 -overpowering%5:00:00:irresistible:00 01989446 1 0 -overpoweringly%4:02:00:: 00239688 1 0 -overpraise%2:32:00:: 00857407 1 0 -overpressure%1:19:00:: 11495964 1 0 -overprice%2:40:00:: 02351378 1 0 -overpriced%5:00:00:expensive:00 00934082 1 1 -overprint%1:06:00:: 03865704 1 0 -overprint%2:36:00:: 01748273 1 0 -overproduce%2:36:00:: 01740468 1 1 -overproduce%2:36:01:: 01625206 2 0 -overproduction%1:04:00:: 00914343 1 0 -overprotect%2:33:00:: 01128899 2 0 -overprotect%2:41:00:: 02550516 1 0 -overprotection%1:04:00:: 00820721 1 1 -overprotective%5:00:00:protective:00 01888450 1 1 -overproud%5:00:00:proud:00 01892433 1 0 -overrate%2:31:00:: 00672017 1 0 -overrating%1:09:00:: 05804274 1 0 -overreach%2:33:00:: 01104852 2 1 -overreach%2:41:00:: 02525868 1 3 -overreaching%5:00:00:bold:00 00251529 1 0 -overreact%2:31:00:: 00718117 1 0 -overreaction%1:04:00:: 00859863 1 0 -overreckoning%1:09:00:: 05804274 1 0 -overrefine%2:30:00:: 00474308 1 0 -overrefined%5:00:00:refined:01 01948958 1 0 -overrefinement%1:04:00:: 00751529 1 0 -override%1:04:00:: 00231567 2 0 -override%1:06:00:: 03865820 1 0 -override%2:31:00:: 00716130 1 3 -override%2:38:03:: 01957995 4 0 -override%2:41:00:: 02544191 3 0 -override%2:42:03:: 02644622 2 0 -overriding%5:00:00:dominant:01 00792202 1 1 -overripe%5:00:00:ripe:00 01493807 1 0 -overrule%2:31:00:: 00716130 1 0 -overrun%1:04:00:: 00914343 1 0 -overrun%2:31:03:: 00705924 5 0 -overrun%2:33:04:: 01103459 4 0 -overrun%2:38:00:: 02072159 3 0 -overrun%2:38:01:: 02020413 1 3 -overrun%2:42:00:: 02654686 2 0 -oversea%4:02:00:: 00416084 1 0 -oversea%5:00:00:marine:00 01381473 1 0 -overseas%4:02:00:: 00416084 1 1 -overseas%4:02:01:: 00181676 2 1 -overseas%5:00:00:foreign:02 01037763 1 1 -overseas%5:00:00:marine:00 01381473 2 0 -overseas_cap%1:06:00:: 03420801 1 0 -overseas_telegram%1:10:00:: 06275095 1 0 -oversee%2:41:00:: 02443049 1 0 -overseer%1:18:00:: 10388732 1 0 -oversensitive%5:00:00:sensitive:02 02106651 1 0 -oversensitiveness%1:12:00:: 07512719 1 0 -overserious%5:00:00:serious:00 02119639 1 0 -oversew%2:35:00:: 01330442 1 0 -oversewn%5:00:00:handmade:00 00674021 1 0 -oversexed%5:00:00:sexy:00 02134286 1 0 -overshadow%2:39:00:: 02158196 3 0 -overshadow%2:42:00:: 02744280 1 1 -overshadow%2:42:01:: 02696306 2 0 -overshielding%1:04:00:: 00820721 1 0 -overshoe%1:06:00:: 03865949 1 1 -overshoot%1:04:00:: 00281898 1 0 -overshoot%2:31:00:: 00705778 2 1 -overshoot%2:33:00:: 01135219 1 1 -overshot%5:00:00:protrusive:00 01354308 1 0 -overside%4:02:00:: 00416191 1 0 -oversight%1:04:00:: 00074524 3 0 -oversight%1:04:01:: 01135529 2 0 -oversight%1:09:00:: 05706815 1 0 -oversimplification%1:04:00:: 01212037 1 1 -oversimplification%1:10:00:: 06739345 2 0 -oversimplify%2:30:00:: 00400741 2 0 -oversimplify%2:41:00:: 02569235 1 0 -oversize%5:00:00:large:00 01389993 1 0 -oversized%5:00:00:large:00 01389993 1 2 -overskirt%1:06:00:: 03866082 1 0 -oversleep%2:29:00:: 00015713 1 0 -oversolicitous%5:00:00:attentive:00 00164598 1 0 -overspecialise%2:30:00:: 00437976 1 0 -overspecialize%2:30:00:: 00437976 1 0 -overspend%2:40:00:: 02266317 2 0 -overspend%2:40:01:: 02267727 1 0 -overspill%1:11:00:: 07407272 2 0 -overspill%1:14:00:: 08179033 1 0 -overspread%2:42:00:: 02689299 1 0 -overstate%2:32:00:: 00839834 1 0 -overstated%5:00:00:immoderate:00 01533806 1 0 -overstatement%1:10:00:: 06758835 1 0 -overstay%2:42:00:: 02637466 1 0 -overstep%2:38:00:: 02019574 1 1 -overstep%2:42:00:: 02669081 2 0 -overstock%2:40:00:: 02323604 1 0 -overstrain%1:19:00:: 11515644 1 0 -overstrain%2:34:00:: 01165898 1 1 -overstress%2:32:00:: 00840609 1 0 -overstretch%2:29:00:: 00071803 1 0 -overstrung%5:00:00:tense:01 02403401 2 0 -overstrung%5:00:00:tense:03 02406370 1 0 -overstuff%2:35:00:: 01525066 1 0 -overstuffed%5:00:00:soft:01 01154775 1 0 -overstuffed_chair%1:06:00:: 03262932 1 0 -oversubscribed%5:00:00:sold:00 02259380 1 0 -oversupply%1:07:00:: 05119837 1 0 -oversupply%2:40:00:: 02356704 1 0 -oversuspicious%5:00:00:distrustful:00 02464615 1 0 -overt%3:00:00:: 01704761 1 1 -overt_operation%1:04:00:: 00984490 1 0 -overtake%2:33:00:: 01155090 1 3 -overtake%2:37:00:: 01809321 3 0 -overtake%2:38:00:: 02049696 2 2 -overtaking%1:04:00:: 00340192 1 0 -overtax%2:40:00:: 02308275 1 0 -overthrow%1:04:01:: 00215683 1 1 -overthrow%1:04:02:: 00554850 2 0 -overthrow%2:31:00:: 00716130 2 0 -overthrow%2:41:00:: 02402409 1 4 -overthrust_fault%1:17:00:: 09457507 1 0 -overtime%1:28:00:: 15233989 2 0 -overtime%1:28:01:: 15137194 1 1 -overtime%4:02:00:: 00259994 1 0 -overtime_period%1:28:00:: 15234348 1 0 -overtire%2:29:00:: 00075998 1 0 -overtly%4:02:00:: 00078558 1 1 -overtolerance%1:07:00:: 04639030 1 0 -overtone%1:09:00:: 05720093 2 0 -overtone%1:10:00:: 06606464 1 1 -overtop%2:42:00:: 02696129 1 0 -overtrump%2:33:00:: 01078426 1 0 -overture%1:10:00:: 07164349 3 1 -overture%1:10:01:: 07040820 1 2 -overture%1:11:00:: 07327013 2 1 -overturn%1:04:00:: 00348312 1 0 -overturn%1:04:01:: 00068170 2 0 -overturn%2:30:00:: 00125633 6 0 -overturn%2:31:00:: 00716130 3 1 -overturn%2:32:00:: 00799798 5 0 -overturn%2:38:00:: 01909397 1 2 -overturn%2:38:01:: 01909978 2 1 -overturn%2:41:00:: 02402409 4 0 -overturned%5:00:00:turned:00 02467766 1 1 -overuse%1:04:00:: 00951433 1 0 -overuse%2:34:00:: 01161695 1 0 -overutilisation%1:04:00:: 00951433 1 0 -overutilization%1:04:00:: 00951433 1 0 -overvaliant%5:00:00:bold:00 00251681 1 1 -overvaluation%1:09:00:: 05736468 2 0 -overvaluation%1:10:00:: 06528992 1 0 -overvalue%2:31:00:: 00695475 1 0 -overview%1:10:00:: 06469223 1 0 -overweary%2:29:00:: 00075998 1 0 -overweening%5:00:00:immodest:02 01540102 2 0 -overweening%5:00:00:unrestrained:00 02000968 1 0 -overweight%1:07:00:: 05000537 1 0 -overweight%5:00:00:fat:01 00987769 1 1 -overwhelm%2:32:00:: 00751131 2 1 -overwhelm%2:33:00:: 01110517 4 0 -overwhelm%2:35:00:: 01339294 3 0 -overwhelm%2:37:00:: 01809321 1 1 -overwhelming%5:00:00:intense:00 01511152 2 0 -overwhelming%5:00:00:irresistible:00 01989446 1 8 -overwhelmingly%4:02:00:: 00239688 1 2 -overwinter%2:42:00:: 02709573 1 0 -overwork%1:04:00:: 00623370 1 0 -overwork%2:36:00:: 01669174 1 1 -overwork%2:41:00:: 02409148 2 0 -overworking%1:04:00:: 00623370 1 0 -overwrite%2:32:00:: 00999079 1 0 -overwrought%5:00:00:agitated:00 00085870 1 0 -overzealous%5:00:00:passionate:00 01726859 1 0 -ovibos%1:05:00:: 02411075 1 0 -ovibos_moschatus%1:05:00:: 02411206 1 0 -ovid%1:18:00:: 11218776 1 0 -oviduct%1:08:00:: 05518870 1 0 -oviedo%1:15:00:: 09026780 1 0 -oviform%5:00:00:rounded:00 02046199 1 0 -ovimbundu%1:14:00:: 08484522 1 0 -ovine%3:01:00:: 02932802 1 0 -oviparous%3:00:00:: 02519171 1 0 -ovipositor%1:05:00:: 01460813 1 0 -oviraptorid%1:05:00:: 01717229 1 0 -ovis%1:05:00:: 02411427 1 0 -ovis_ammon%1:05:00:: 02414763 1 0 -ovis_aries%1:05:00:: 02413131 1 0 -ovis_canadensis%1:05:00:: 02415577 1 0 -ovis_montana_dalli%1:05:00:: 02415253 1 0 -ovis_musimon%1:05:00:: 02415829 1 0 -ovis_poli%1:05:00:: 02414904 1 0 -ovis_vignei%1:05:00:: 02415130 1 0 -ovocon%1:06:00:: 03866555 1 0 -ovoflavin%1:27:00:: 15091473 1 0 -ovoid%1:25:00:: 13915023 1 0 -ovoid%5:00:00:rounded:00 02046199 1 0 -ovolo%1:06:00:: 03866721 1 0 -ovotestis%1:08:00:: 05515545 1 0 -ovoviviparous%3:00:00:: 02519399 1 0 -ovral%1:06:00:: 03866908 1 0 -ovrette%1:06:00:: 03867070 1 0 -ovular%3:01:01:: 02932931 2 0 -ovular%3:01:02:: 02933027 1 0 -ovulate%2:29:00:: 00062397 1 0 -ovulation%1:22:00:: 13530237 1 0 -ovulation_method%1:04:00:: 00852825 1 0 -ovulation_method_of_family_planning%1:04:00:: 00852825 1 0 -ovule%1:08:01:: 05458300 2 0 -ovule%1:20:00:: 11678768 1 0 -ovulen%1:06:00:: 03867201 1 0 -ovum%1:08:00:: 05457973 1 0 -owe%2:40:00:: 02253956 3 3 -owe%2:40:01:: 02254155 1 11 -owe%2:42:00:: 02731814 2 5 -owen%1:18:00:: 11218938 2 0 -owen%1:18:01:: 11219121 1 0 -owen_glendower%1:18:00:: 11002040 1 0 -owen_wister%1:18:00:: 11393446 1 0 -owens%1:18:00:: 11219293 1 0 -owensboro%1:15:00:: 09090128 1 0 -owing%5:00:00:unpaid:00 01710543 1 1 -owl%1:05:00:: 01621127 1 3 -owlclaws%1:20:00:: 11977660 1 0 -owlet%1:05:00:: 01621635 1 0 -owlet_moth%1:05:00:: 02295064 1 0 -owlish%5:00:00:wise:00 02569945 1 0 -owlishly%4:02:00:: 00416297 1 0 -owlt%1:28:00:: 15130749 1 0 -own%2:40:00:: 02204692 1 47 -own%5:00:00:personal:00 01768724 1 259 -own_goal%1:04:00:: 00187499 1 0 -own_right%1:07:00:: 05181513 1 0 -own_up%2:32:00:: 00817909 1 0 -owned%3:00:00:: 00360306 1 1 -owner%1:18:00:: 10388924 1 15 -owner%1:18:02:: 10389398 2 9 -owner-driver%1:18:00:: 10389760 1 0 -owner-occupied%5:00:00:inhabited:00 01311973 1 0 -owner-occupier%1:18:00:: 10389865 1 0 -ownerless%3:00:00:: 00360569 1 0 -ownership%1:04:00:: 00809465 2 2 -ownership%1:21:00:: 13240514 1 4 -ownership%1:26:00:: 14479488 3 0 -ox%1:05:00:: 02402175 2 0 -ox%1:05:02:: 02403003 1 1 -ox-eyed%5:00:00:eyed:00 00954390 1 0 -ox-eyed_daisy%1:20:00:: 11989869 1 0 -oxacillin%1:06:00:: 03867355 1 0 -oxalacetate%1:27:00:: 14970645 1 0 -oxalacetic_acid%1:27:00:: 14970752 1 0 -oxalate%1:27:00:: 14970920 1 0 -oxalic_acid%1:27:00:: 14971022 1 0 -oxalidaceae%1:20:00:: 12702443 1 0 -oxalis%1:20:00:: 12702948 1 0 -oxalis_acetosella%1:20:00:: 12703190 1 0 -oxalis_caprina%1:20:00:: 12703716 1 0 -oxalis_cernua%1:20:00:: 12703383 1 0 -oxalis_corniculata%1:20:00:: 12703557 1 0 -oxalis_crenata%1:20:00:: 12704041 1 0 -oxalis_pes-caprae%1:20:00:: 12703383 1 0 -oxalis_tuberosa%1:20:00:: 12704041 1 0 -oxalis_violacea%1:20:00:: 12703856 1 0 -oxaloacetate%1:27:00:: 14970645 1 0 -oxaloacetic_acid%1:27:00:: 14970752 1 0 -oxandra%1:20:00:: 11696338 1 0 -oxandra_lanceolata%1:20:00:: 11696450 1 0 -oxaprozin%1:06:00:: 03867515 1 0 -oxazepam%1:06:00:: 03867675 1 0 -oxblood_red%1:07:00:: 04964079 1 0 -oxbow%1:06:00:: 03867854 3 0 -oxbow%1:17:00:: 09382019 2 0 -oxbow%1:17:01:: 09382099 1 0 -oxbow_lake%1:17:00:: 09382191 1 0 -oxbridge%1:06:00:: 03868044 1 0 -oxcart%1:06:00:: 03868242 1 1 -oxen%1:05:00:: 02402425 1 6 -oxeye%1:06:00:: 03868324 3 0 -oxeye%1:20:01:: 11942487 2 0 -oxeye%1:20:02:: 11980682 1 0 -oxeye_daisy%1:20:01:: 11989869 2 0 -oxeye_daisy%1:20:02:: 11990167 1 0 -oxford%1:06:00:: 03868406 4 0 -oxford%1:06:01:: 03868509 3 0 -oxford%1:15:00:: 08877807 1 1 -oxford%1:15:01:: 09077681 2 0 -oxford-gray%5:00:00:achromatic:00 00390725 1 0 -oxford-grey%5:00:00:achromatic:00 00390725 1 0 -oxford_english%1:10:00:: 06950049 1 1 -oxford_english_dictionary%1:10:00:: 06420424 1 0 -oxford_gray%1:07:00:: 04962240 1 0 -oxford_grey%1:07:00:: 04962240 1 0 -oxford_movement%1:14:00:: 08475586 1 0 -oxford_university%1:06:00:: 03868509 1 0 -oxheart%1:13:00:: 07757602 2 0 -oxheart%1:20:00:: 12642435 1 0 -oxheart_cherry%1:13:00:: 07757602 2 0 -oxheart_cherry%1:20:00:: 12642435 1 0 -oxidant%1:27:00:: 14780040 1 0 -oxidase%1:27:00:: 14971234 1 0 -oxidate%2:30:00:: 00238867 2 0 -oxidate%2:30:01:: 00239321 1 0 -oxidation%1:22:00:: 13530408 1 20 -oxidation-reduction%1:22:00:: 13530799 1 0 -oxidation-reduction_indicator%1:27:00:: 14971359 1 0 -oxidation_number%1:23:00:: 13591314 1 0 -oxidation_state%1:23:00:: 13591314 1 0 -oxidative%5:00:00:aerobic:00 00068883 1 0 -oxidative_phosphorylation%1:22:00:: 13530989 1 0 -oxide%1:27:00:: 14971519 1 0 -oxidisation%1:22:00:: 13530408 1 0 -oxidise%2:30:00:: 00238867 1 1 -oxidise%2:30:01:: 00239321 2 0 -oxidised%3:44:00:: 03151122 1 1 -oxidiser%1:27:00:: 14780040 1 0 -oxidizable%5:00:00:reactive:00 01929202 1 0 -oxidization%1:22:00:: 13530408 1 0 -oxidize%2:30:00:: 00238867 2 0 -oxidize%2:30:01:: 00239321 1 0 -oxidized%3:44:00:: 03151122 1 0 -oxidized_ldl_cholesterol%1:27:00:: 15059237 1 0 -oxidizer%1:27:00:: 14780040 1 0 -oxidizing_agent%1:27:00:: 14780040 1 0 -oxidoreductase%1:27:00:: 14971969 1 0 -oxidoreduction%1:22:00:: 13530799 1 0 -oxime%1:27:00:: 14972092 1 0 -oximeter%1:06:00:: 03868643 1 0 -oxlip%1:20:01:: 12091550 1 0 -oxonian%1:18:00:: 09705003 1 0 -oxonian%3:01:00:: 03095588 2 0 -oxonian%3:01:01:: 03095813 1 0 -oxtail%1:05:00:: 02158494 1 0 -oxtail_soup%1:13:00:: 07586485 1 0 -oxtant%1:23:00:: 13612427 1 0 -oxtongue%1:20:00:: 12003167 1 0 -oxyacetylene%1:27:00:: 14972184 1 0 -oxyacetylene_torch%1:06:00:: 03868763 1 0 -oxyacid%1:27:00:: 14972359 1 0 -oxybelis%1:05:00:: 01739260 1 0 -oxybenzene%1:27:00:: 14796073 1 0 -oxybutyric_acid%1:27:00:: 14927451 1 0 -oxycephaly%1:26:00:: 14164190 1 0 -oxydendrum%1:20:00:: 12242287 1 0 -oxydendrum_arboreum%1:20:00:: 12242409 1 0 -oxygen%1:27:00:: 14648100 1 39 -oxygen_acid%1:27:00:: 14972359 1 0 -oxygen_debt%1:26:00:: 14042735 1 0 -oxygen_deficit%1:07:00:: 05114652 1 0 -oxygen_mask%1:06:00:: 03868863 1 0 -oxygenase%1:27:00:: 14972681 1 0 -oxygenate%2:30:00:: 00185465 1 0 -oxygenation%1:22:00:: 13531149 1 0 -oxygenise%2:30:00:: 00185465 3 0 -oxygenise%2:30:01:: 00308269 2 0 -oxygenise%2:30:02:: 00308775 1 0 -oxygenize%2:30:00:: 00185465 3 0 -oxygenize%2:30:01:: 00308269 2 0 -oxygenize%2:30:02:: 00308775 1 0 -oxyhaemoglobin%1:27:00:: 15024773 1 0 -oxyhemoglobin%1:27:00:: 15024773 1 0 -oxylebius%1:05:00:: 02649082 1 0 -oxylebius_pictus%1:05:00:: 02649218 1 0 -oxymoron%1:10:00:: 07108010 1 0 -oxyopia%1:09:00:: 05655966 1 0 -oxyphenbutazone%1:06:00:: 03869044 1 0 -oxyphencyclimine%1:06:00:: 03869222 1 0 -oxytetracycline%1:06:00:: 03869389 1 2 -oxytetracycline_hydrochloride%1:06:00:: 03869389 1 0 -oxytocic%1:06:00:: 03869685 1 0 -oxytocic_drug%1:06:00:: 03869685 1 0 -oxytocin%1:08:00:: 05411571 1 0 -oxytone%1:10:00:: 06294716 1 0 -oxytropis%1:20:00:: 12554242 1 0 -oxytropis_lambertii%1:20:00:: 12554729 1 0 -oxyura%1:05:00:: 01849747 1 0 -oxyura_jamaicensis%1:05:00:: 01849863 1 0 -oxyuranus%1:05:00:: 01751353 1 0 -oxyuranus_scutellatus%1:05:00:: 01751472 1 0 -oxyuridae%1:05:00:: 01931277 1 0 -oyabun%1:18:00:: 10389976 1 4 -oyster%1:05:00:: 01960459 1 1 -oyster%1:13:00:: 07786164 2 0 -oyster%1:13:01:: 07649342 3 0 -oyster%2:35:00:: 01383511 1 0 -oyster-fish%1:05:00:: 02548884 1 0 -oyster_agaric%1:20:00:: 13007417 1 0 -oyster_bank%1:06:00:: 03869976 1 0 -oyster_bar%1:06:00:: 03869838 1 0 -oyster_bed%1:06:00:: 03869976 1 0 -oyster_catcher%1:05:00:: 02037110 1 0 -oyster_crab%1:05:00:: 01980830 1 0 -oyster_cracker%1:13:00:: 07695410 1 0 -oyster_dressing%1:13:00:: 07679034 1 0 -oyster_fish%1:05:00:: 02548884 1 0 -oyster_fungus%1:20:00:: 13007417 1 0 -oyster_mushroom%1:20:00:: 13007417 1 0 -oyster_park%1:06:00:: 03869976 1 0 -oyster_plant%1:13:00:: 07735179 3 0 -oyster_plant%1:20:00:: 12027222 2 0 -oyster_plant%1:20:02:: 12027538 1 0 -oyster_shell%1:05:00:: 01904886 1 0 -oyster_stew%1:13:00:: 07591162 1 0 -oyster_stuffing%1:13:00:: 07679034 1 0 -oystercatcher%1:05:00:: 02037110 1 0 -oysterfish%1:05:00:: 02548884 1 0 -oysters_rockefeller%1:13:00:: 07786337 1 0 -oz.%1:23:00:: 13719922 1 0 -ozaena%1:26:00:: 14352163 1 0 -ozark_chinkapin%1:20:00:: 12263987 1 0 -ozark_chinquapin%1:20:00:: 12263987 1 0 -ozark_mountains%1:17:00:: 09382362 1 0 -ozark_plateau%1:17:00:: 09382362 1 0 -ozark_sundrops%1:20:00:: 12344837 1 0 -ozarks%1:17:00:: 09382362 1 0 -ozawa%1:18:00:: 11219502 1 0 -ozena%1:26:00:: 14352163 1 0 -ozocerite%1:27:00:: 14665102 1 0 -ozokerite%1:27:00:: 14665102 1 0 -ozone%1:27:00:: 14972807 1 3 -ozone_hole%1:17:00:: 09382570 1 0 -ozone_layer%1:17:00:: 09382726 1 0 -ozone_sickness%1:26:00:: 14190284 1 0 -ozonide%1:27:00:: 14684427 1 0 -ozonise%2:30:00:: 00585805 1 0 -ozonium%1:20:00:: 13082711 1 0 -ozonize%2:30:00:: 00585805 1 0 -ozonosphere%1:17:00:: 09382726 1 0 -ozothamnus%1:20:00:: 11999455 1 0 -ozothamnus_secundiflorus%1:20:00:: 11999656 1 0 -p%1:10:00:: 06832788 2 0 -p%1:27:00:: 14649197 1 0 -p-n-p_transistor%1:06:00:: 03972146 1 0 -p-n_junction%1:06:00:: 03971960 1 0 -p-type_semiconductor%1:06:00:: 04017993 1 0 -p._g._wodehouse%1:18:00:: 11394042 1 0 -p._p._von_mauser%1:18:00:: 11165854 1 0 -p._t._barnum%1:18:00:: 10834869 1 0 -p.a.%1:06:00:: 04018155 1 0 -p.a.%4:02:00:: 00250570 1 0 -p.a._system%1:06:00:: 04018155 1 0 -p.e.%1:19:00:: 11494472 1 0 -p.m.%4:02:00:: 00251408 1 0 -p.m.%5:00:00:postmeridian:00 00130701 1 0 -p.o.%1:18:00:: 10420809 1 0 -p/e_ratio%1:24:00:: 13824340 1 0 -pa%1:06:00:: 04018155 5 0 -pa%1:15:00:: 09134386 4 0 -pa%1:18:00:: 09988063 1 22 -pa%1:23:00:: 13711303 3 0 -pa%1:27:00:: 14651708 2 0 -pa'anga%1:23:00:: 13690109 1 0 -pa_system%1:06:00:: 04018155 1 2 -paba%1:27:00:: 14973965 1 0 -pabir%1:10:00:: 06983895 1 0 -pablo_casals%1:18:00:: 10885831 1 0 -pablo_neruda%1:18:00:: 11203795 1 0 -pablo_picasso%1:18:00:: 11234951 1 0 -pablum%1:10:00:: 06612174 2 0 -pablum%1:13:00:: 07703053 1 0 -pabulum%1:09:00:: 05811380 2 0 -pabulum%1:13:00:: 07556637 1 0 -pac%1:14:00:: 08327212 1 0 -pac-man_strategy%1:04:00:: 00176312 1 0 -paca%1:05:00:: 02366301 1 0 -pace%1:04:00:: 00285889 4 1 -pace%1:07:01:: 05058580 3 4 -pace%1:23:00:: 13650447 6 0 -pace%1:23:01:: 13757249 2 6 -pace%1:28:00:: 15280497 1 10 -pace%1:28:01:: 15283097 5 0 -pace%2:30:00:: 00490722 3 2 -pace%2:31:00:: 00702601 4 0 -pace%2:38:00:: 01929254 1 10 -pace%2:38:01:: 02091165 2 6 -pace_car%1:06:00:: 03870105 1 0 -pace_lap%1:04:00:: 00295422 1 0 -pacemaker%1:05:00:: 02388143 4 0 -pacemaker%1:06:00:: 03870290 3 0 -pacemaker%1:08:00:: 05389460 2 0 -pacemaker%1:09:00:: 05938633 1 0 -pacer%1:05:01:: 02387983 2 0 -pacer%1:05:02:: 02388143 1 0 -pacesetter%1:05:00:: 02388143 2 0 -pacesetter%1:09:00:: 05938633 1 0 -pacha%1:18:00:: 10403768 1 0 -pachinko%1:04:00:: 00459465 1 1 -pachisi%1:04:00:: 00505446 1 0 -pachouli%1:06:00:: 03898271 2 0 -pachouli%1:20:00:: 12862828 1 0 -pachuco%1:18:00:: 10390050 1 0 -pachycephala%1:05:00:: 01556368 1 0 -pachycephalosaur%1:05:00:: 01703161 1 0 -pachycephalosaurus%1:05:00:: 01703161 1 0 -pachycheilia%1:26:00:: 14509491 1 0 -pachyderm%1:05:00:: 02453108 1 0 -pachyderma%1:26:00:: 14367797 1 0 -pachydermal%3:01:00:: 02772186 1 0 -pachydermatous%3:01:00:: 02772186 1 0 -pachydermatous%5:00:00:insensitive:02 02107162 2 0 -pachydermic%3:01:00:: 02772186 1 0 -pachydermous%3:01:00:: 02772186 1 0 -pachyrhizus%1:20:00:: 12555069 1 0 -pachyrhizus_erosus%1:20:00:: 12555255 1 0 -pachyrhizus_tuberosus%1:20:00:: 12555553 1 0 -pachysandra%1:20:00:: 12746884 1 0 -pachysandra_procumbens%1:20:00:: 12747120 1 0 -pachysandra_terminalis%1:20:00:: 12747371 1 0 -pachytene%1:22:00:: 13531318 1 0 -pacific%1:17:00:: 09382990 1 10 -pacific%3:01:00:: 02946644 1 0 -pacific%5:00:01:conciliatory:00 00760149 3 0 -pacific%5:00:02:peaceful:00 01741669 2 0 -pacific_bonito%1:05:00:: 02628259 1 0 -pacific_bottlenose_dolphin%1:05:00:: 02070174 1 0 -pacific_coast%1:17:00:: 09383793 1 0 -pacific_cod%1:05:00:: 02522866 1 0 -pacific_giant_salamander%1:05:00:: 01635176 1 0 -pacific_halibut%1:05:00:: 02660640 1 0 -pacific_hemlock%1:20:00:: 11628087 1 0 -pacific_herring%1:05:00:: 02532451 1 0 -pacific_newt%1:05:00:: 01631175 1 0 -pacific_northwest%1:15:00:: 08564739 1 0 -pacific_ocean%1:17:00:: 09382990 1 0 -pacific_plum%1:20:00:: 12649866 1 0 -pacific_ridley%1:05:00:: 01664674 1 0 -pacific_sardine%1:05:00:: 02533545 1 0 -pacific_silver_fir%1:20:00:: 11621281 1 0 -pacific_spiny_dogfish%1:05:00:: 01494041 1 0 -pacific_standard_time%1:28:00:: 15132638 1 0 -pacific_sturgeon%1:05:00:: 02640626 1 0 -pacific_time%1:28:00:: 15132638 1 0 -pacific_tree_toad%1:05:00:: 01650901 1 0 -pacific_tripletail%1:05:00:: 02636550 1 0 -pacific_walrus%1:05:00:: 02081927 1 0 -pacific_yew%1:20:00:: 11662128 1 0 -pacifically%4:02:00:: 00418712 1 0 -pacification%1:04:00:: 01151097 1 1 -pacification%1:04:01:: 00963749 3 0 -pacification%1:10:00:: 06773976 2 0 -pacificism%1:09:00:: 05965586 1 0 -pacificism%1:09:01:: 05946406 2 0 -pacificist%1:18:00:: 10390199 1 0 -pacifier%1:06:00:: 03075768 3 0 -pacifier%1:06:01:: 03870461 2 0 -pacifier%1:18:00:: 09952163 1 0 -pacifism%1:09:00:: 05965586 1 0 -pacifism%1:09:01:: 05946406 2 0 -pacifist%1:18:00:: 10390199 1 0 -pacifist%5:00:00:peaceful:00 01741953 1 0 -pacifistic%5:00:00:peaceful:00 01741953 1 0 -pacifistically%4:02:00:: 00416430 1 0 -pacify%2:36:00:: 01647867 2 0 -pacify%2:37:00:: 01765392 1 3 -pacing%1:04:00:: 00289555 2 1 -pacing%1:28:00:: 15264363 1 1 -pacinian_corpuscle%1:08:00:: 05469424 1 0 -pack%1:06:00:: 03870546 3 1 -pack%1:06:02:: 03870672 9 0 -pack%1:06:03:: 03870822 8 0 -pack%1:06:04:: 03870980 7 0 -pack%1:14:00:: 07994941 6 0 -pack%1:14:01:: 08240633 5 0 -pack%1:14:02:: 08244062 4 0 -pack%1:14:03:: 07956426 2 1 -pack%1:23:00:: 13775093 1 1 -pack%2:29:00:: 00108909 13 0 -pack%2:35:00:: 01482449 1 11 -pack%2:35:01:: 01483131 12 0 -pack%2:35:02:: 01483779 3 2 -pack%2:35:04:: 01484884 10 0 -pack%2:35:06:: 01574571 9 0 -pack%2:35:08:: 01451176 4 2 -pack%2:35:11:: 01484027 11 0 -pack%2:38:00:: 02064131 7 0 -pack%2:38:01:: 01926031 8 0 -pack%2:38:02:: 02086963 2 2 -pack%2:41:00:: 02396536 5 1 -pack%2:42:00:: 02717102 6 0 -pack_animal%1:05:00:: 01317391 1 0 -pack_ice%1:17:00:: 09383901 1 0 -pack_of_cards%1:14:00:: 07956721 1 0 -pack_on%2:29:00:: 00107110 1 2 -pack_rat%1:05:00:: 02339922 2 0 -pack_rat%1:18:00:: 10281276 1 0 -pack_riding%1:04:00:: 00300037 1 0 -pack_tent%1:06:00:: 02769963 1 0 -pack_together%2:35:00:: 01389329 1 0 -packable%3:01:00:: 02772465 1 0 -package%1:06:00:: 03871083 2 3 -package%1:10:00:: 06566077 3 0 -package%1:14:00:: 08008017 1 3 -package%2:35:00:: 01485158 1 2 -package_bomb%1:06:00:: 03657918 1 0 -package_holiday%1:04:00:: 00748919 1 0 -package_store%1:06:00:: 03871371 1 0 -package_tour%1:04:00:: 00748919 1 0 -packaged%3:00:00:: 01739178 1 0 -packaged_goods%1:06:00:: 03871255 1 0 -packaging%1:04:00:: 01103788 1 1 -packaging%1:06:00:: 03871524 3 0 -packaging%1:10:00:: 07247071 2 0 -packaging_company%1:14:00:: 08069342 1 0 -packaging_concern%1:14:00:: 08069342 1 0 -packed%5:00:00:compact:00 00502922 2 0 -packed%5:00:00:crowded:00 00560100 1 1 -packed_cell_volume%1:24:00:: 13821766 1 0 -packed_cells%1:08:00:: 05450370 1 0 -packer%1:18:00:: 10390427 1 0 -packer%1:18:01:: 10304505 2 0 -packer%1:18:02:: 09830629 3 0 -packera%1:20:00:: 11999958 1 0 -packera_aurea%1:20:00:: 12000356 1 0 -packet%1:06:00:: 03871628 3 0 -packet%1:06:01:: 03710079 4 0 -packet%1:10:00:: 07281099 2 0 -packet%1:14:00:: 08008017 1 7 -packet_boat%1:06:00:: 03710079 1 0 -packhorse%1:05:00:: 02386746 1 0 -packing%1:04:00:: 00322228 2 1 -packing%1:04:01:: 00319312 3 0 -packing%1:27:00:: 14976448 1 2 -packing_box%1:06:00:: 04345595 1 0 -packing_box%1:06:01:: 03871724 2 0 -packing_case%1:06:00:: 03871724 1 0 -packing_material%1:27:00:: 14976448 1 0 -packing_needle%1:06:00:: 03872167 1 0 -packing_nut%1:06:00:: 04345787 1 0 -packing_plant%1:06:00:: 03871860 1 0 -packinghouse%1:06:00:: 03871860 2 0 -packinghouse%1:06:01:: 03872016 1 1 -packman%1:18:00:: 10411551 1 0 -packrat%1:05:00:: 02339922 2 0 -packrat%1:18:00:: 10390600 1 0 -packsack%1:06:00:: 02769748 1 0 -packsaddle%1:06:00:: 03872273 1 0 -packthread%1:06:00:: 03872386 1 0 -pact%1:10:00:: 06773434 1 1 -pad%1:05:00:: 02440523 7 0 -pad%1:06:00:: 03872495 4 0 -pad%1:06:02:: 03647691 5 0 -pad%1:06:04:: 03195485 6 0 -pad%1:06:05:: 03872885 3 0 -pad%1:20:00:: 13154586 2 0 -pad%1:27:01:: 14973133 1 1 -pad%2:30:00:: 00321486 4 0 -pad%2:32:00:: 00956405 1 1 -pad%2:35:00:: 01526956 3 0 -pad%2:38:00:: 01921204 2 0 -pad_of_paper%1:27:00:: 14973133 1 0 -padauk%1:20:01:: 12565368 1 0 -padda%1:05:00:: 01543508 1 0 -padda_oryzivora%1:05:00:: 01543632 1 0 -padded%5:00:00:soft:01 01153703 1 1 -padder%1:18:00:: 10102130 1 0 -padding%1:06:00:: 03873064 1 0 -paddle%1:06:00:: 03873416 4 0 -paddle%1:06:01:: 03873574 3 0 -paddle%1:06:02:: 03873699 2 0 -paddle%1:06:03:: 03873848 1 0 -paddle%2:35:03:: 01419373 6 0 -paddle%2:35:07:: 01420928 5 0 -paddle%2:38:00:: 01947887 1 1 -paddle%2:38:01:: 01961859 3 0 -paddle%2:38:04:: 01918803 4 0 -paddle%2:41:00:: 02419613 2 0 -paddle-box%1:06:00:: 03873996 1 0 -paddle-shaped%5:00:00:formed:00 02148805 1 0 -paddle-wheeler%1:06:00:: 03874138 1 0 -paddle_box%1:06:00:: 03873996 1 0 -paddle_steamer%1:06:00:: 03874138 1 0 -paddle_wheel%1:06:00:: 03874293 1 0 -paddlefish%1:05:00:: 02639605 1 0 -paddler%1:18:00:: 09891470 1 0 -paddlewheel%1:06:00:: 03874293 1 0 -paddock%1:06:00:: 03874487 1 0 -paddy%1:13:00:: 07804900 3 0 -paddy%1:15:00:: 08614229 2 0 -paddy%1:18:00:: 09715521 1 0 -paddy_field%1:15:00:: 08614229 1 0 -paddy_wagon%1:06:00:: 03977966 1 0 -paddymelon%1:05:00:: 01879217 1 0 -pademelon%1:05:00:: 01879217 1 0 -paderewski%1:18:00:: 11219635 1 0 -padlock%1:06:00:: 03874599 1 1 -padlock%2:35:00:: 01342012 1 1 -padouk%1:20:01:: 12565368 1 0 -padova%1:15:00:: 08813156 1 0 -padre%1:18:00:: 10081204 2 0 -padre%1:18:01:: 10316527 1 0 -padrone%1:18:00:: 10390807 1 0 -padrone%1:18:01:: 10390698 2 0 -padua%1:15:00:: 08813156 1 0 -paducah%1:15:00:: 09090271 1 0 -paean%1:10:00:: 06694149 1 2 -paean%1:10:01:: 07036862 2 0 -paederast%1:18:00:: 10411867 1 0 -paederastic%5:00:00:homosexual:00 01202367 1 0 -paederasty%1:04:00:: 00857872 1 0 -paediatric%3:01:00:: 02893637 1 0 -paediatrician%1:18:00:: 09828760 1 0 -paediatrics%1:09:00:: 06061631 1 0 -paedophile%1:18:00:: 10412669 1 0 -paedophilia%1:04:00:: 00738270 1 0 -paella%1:13:00:: 07591961 1 0 -paeonia%1:20:00:: 11719120 1 0 -paeoniaceae%1:20:00:: 11718911 1 0 -paeony%1:20:00:: 11719286 1 0 -pagad%1:14:00:: 08039601 1 0 -pagan%1:18:00:: 10166394 1 1 -pagan%1:18:01:: 10390902 2 0 -pagan%1:18:02:: 10168183 3 0 -pagan%5:00:00:irreligious:00 01784401 1 0 -pagan_religion%1:09:00:: 06224657 1 0 -paganini%1:18:00:: 11219851 1 0 -paganise%2:30:00:: 00571738 1 0 -paganism%1:09:00:: 06224657 1 1 -paganize%2:30:00:: 00571738 1 0 -page%1:10:00:: 06256697 1 34 -page%1:18:00:: 11219992 3 0 -page%1:18:01:: 10391086 6 0 -page%1:18:02:: 10391248 5 0 -page%1:18:03:: 10391416 4 0 -page%1:18:04:: 11220149 2 0 -page%2:32:00:: 00754560 1 1 -page%2:32:01:: 00949093 3 0 -page%2:41:00:: 02412513 2 0 -page-at-a-time_printer%1:06:00:: 03874823 1 0 -page_number%1:10:00:: 06258680 1 0 -page_printer%1:06:00:: 03874823 1 0 -pageant%1:04:00:: 00899761 1 1 -pageant%1:11:00:: 07452251 2 0 -pageantry%1:04:00:: 00899761 2 0 -pageantry%1:11:00:: 07452251 1 0 -pageboy%1:08:00:: 05260127 2 0 -pageboy%1:18:00:: 10391416 1 0 -pagellus%1:05:00:: 02591493 1 0 -pagellus_centrodontus%1:05:00:: 02591613 1 0 -pager%1:06:00:: 02823124 1 0 -paget%1:18:00:: 11220319 1 0 -paget's_disease%1:26:00:: 14079971 1 0 -paginate%2:32:00:: 00949093 1 0 -pagination%1:10:00:: 06258680 1 0 -paging%1:10:00:: 07128322 1 1 -paging%1:10:01:: 06258680 2 0 -pago_pago%1:15:00:: 08992067 1 0 -pagoda%1:06:00:: 03874965 1 0 -pagoda_tree%1:20:01:: 11774795 2 0 -pagoda_tree%1:20:02:: 11774972 1 0 -pagophila%1:05:00:: 02042342 1 0 -pagophila_eburnea%1:05:00:: 02042472 1 0 -pagophilus%1:05:00:: 02080022 1 0 -pagophilus_groenlandicus%1:05:00:: 02080146 1 0 -pagrus%1:05:00:: 02591205 1 0 -pagrus_pagrus%1:05:00:: 02591330 1 0 -paguridae%1:05:00:: 01985947 1 0 -pagurus%1:05:00:: 01986072 1 0 -pahautea%1:20:00:: 11639445 1 0 -pahlavi%1:10:00:: 06974846 2 0 -pahlavi%1:10:01:: 06352954 3 0 -pahlavi%1:18:00:: 11220461 1 0 -pahlevi%1:18:00:: 11220461 1 0 -pahoehoe%1:27:00:: 14931559 1 0 -paid%3:00:00:: 01708249 1 2 -paid%5:00:00:professional:01 01869126 2 1 -paid%5:00:00:profitable:00 01871473 3 0 -paid-up%5:00:00:paid:00 01709245 1 0 -paid_vacation%1:28:00:: 15139018 1 1 -paige%1:18:00:: 11220664 1 0 -paigle%1:20:01:: 12091377 2 0 -paigle%1:20:02:: 12091550 1 0 -pail%1:06:00:: 02909870 1 5 -pail%1:23:00:: 13768537 2 0 -pailful%1:23:00:: 13768537 1 0 -paillasse%1:06:00:: 03875088 1 0 -pain%1:09:00:: 05724694 3 9 -pain%1:09:01:: 05830059 5 0 -pain%1:12:00:: 07494363 2 14 -pain%1:18:00:: 10391513 4 0 -pain%1:26:00:: 14322699 1 32 -pain%2:29:00:: 00070816 1 2 -pain%2:37:00:: 01792567 2 0 -pain-free%5:00:00:painless:00 01713250 1 0 -pain_in_the_ass%1:09:00:: 05830059 1 0 -pain_in_the_neck%1:09:00:: 05830059 2 0 -pain_in_the_neck%1:18:00:: 10391513 1 0 -pain_pill%1:06:00:: 02707683 1 0 -pain_sensation%1:09:00:: 05724694 1 0 -pain_threshold%1:09:00:: 05712698 1 0 -pain_unit%1:23:00:: 13607873 1 0 -paine%1:18:00:: 11220836 2 0 -paine%1:18:01:: 11221107 1 0 -pained%5:00:00:displeased:00 01807075 1 0 -painful%3:00:00:: 01711071 1 10 -painful%5:00:00:bad:00 01126291 3 0 -painful%5:00:00:uncomfortable:00 00478685 4 0 -painful%5:00:00:unpleasant:00 01804175 2 1 -painful_sensation%1:09:00:: 05724694 1 0 -painfully%4:02:00:: 00114609 1 6 -painfully%4:02:01:: 00509533 2 2 -painfulness%1:07:00:: 04720024 2 0 -painfulness%1:12:00:: 07494363 1 0 -painkiller%1:06:00:: 02707683 1 0 -painless%3:00:00:: 01713095 2 0 -painless%5:00:00:easy:01 00750712 1 1 -painlessly%4:02:01:: 00509702 1 0 -pains%1:04:00:: 00788766 1 4 -painstaking%5:00:00:careful:00 00310138 1 0 -painstakingly%4:02:00:: 00416553 1 0 -painstakingness%1:07:00:: 04672355 1 0 -paint%1:06:00:: 03875218 1 7 -paint%1:06:01:: 04112752 3 0 -paint%1:15:00:: 08590909 2 0 -paint%2:35:00:: 01362736 2 13 -paint%2:35:01:: 01363482 4 0 -paint%2:36:00:: 01684663 3 11 -paint%2:36:01:: 01684899 1 17 -paint_a_picture%2:32:00:: 00930368 1 1 -paint_leaf%1:20:00:: 12920521 1 0 -paint_roller%1:06:00:: 03877229 1 0 -paint_the_lily%2:30:00:: 00183241 2 0 -paint_the_lily%2:36:00:: 01677242 1 0 -paintable%3:00:00:: 01715872 1 0 -paintball%1:04:00:: 00467122 2 0 -paintball%1:06:00:: 03875806 1 0 -paintball_gun%1:06:00:: 03875955 1 0 -paintbox%1:06:00:: 03876111 1 0 -paintbrush%1:06:00:: 03876231 1 0 -painted%3:00:00:: 01713373 1 2 -painted%3:00:01:: 01714516 3 0 -painted%5:00:00:artificial:00 01573889 2 1 -painted%5:00:00:colored:00 00398978 4 0 -painted-leaf_begonia%1:20:00:: 12361946 1 0 -painted_beauty%1:05:00:: 02276078 1 0 -painted_cup%1:20:00:: 12879963 1 0 -painted_daisy%1:20:00:: 12022054 1 0 -painted_desert%1:15:00:: 09171853 1 0 -painted_greenling%1:05:00:: 02649218 1 0 -painted_leaf%1:20:01:: 12920204 2 0 -painted_leaf%1:20:02:: 12920719 1 0 -painted_nettle%1:20:00:: 12845413 1 0 -painted_sandgrouse%1:05:00:: 01816017 1 0 -painted_terrapin%1:05:00:: 01669654 1 0 -painted_tongue%1:20:00:: 12912801 1 0 -painted_tortoise%1:05:00:: 01669654 1 0 -painted_turtle%1:05:00:: 01669654 1 0 -painter%1:05:00:: 02125311 4 0 -painter%1:06:00:: 03876352 3 0 -painter%1:18:00:: 10391653 1 15 -painter%1:18:01:: 10393909 2 0 -painter's_colic%1:26:00:: 14070055 1 0 -painterly%5:00:00:aesthetic:00 00070288 1 0 -painting%1:04:00:: 00936620 2 9 -painting%1:04:01:: 00609236 4 1 -painting%1:04:02:: 00717208 3 4 -painting%1:06:00:: 03876519 1 13 -pair%1:14:00:: 07976936 3 7 -pair%1:14:01:: 07985223 1 18 -pair%1:14:02:: 07958407 4 0 -pair%1:23:00:: 13743605 2 10 -pair%2:35:00:: 01428853 5 0 -pair%2:35:01:: 01292885 2 2 -pair%2:35:03:: 01465218 4 0 -pair%2:35:04:: 01465365 3 0 -pair%2:41:00:: 02490430 1 3 -pair_creation%1:22:00:: 13531435 1 0 -pair_formation%1:22:00:: 13531435 1 0 -pair_of_pincers%1:06:00:: 03941684 1 0 -pair_of_pliers%1:06:00:: 03966976 1 0 -pair_of_scissors%1:06:00:: 04148054 1 0 -pair_of_tongs%1:06:00:: 04450749 1 0 -pair_of_tweezers%1:06:00:: 03941684 1 0 -pair_of_virginals%1:06:00:: 04537436 1 0 -pair_off%2:41:00:: 02490430 1 0 -pair_production%1:22:00:: 13531435 1 0 -paired%3:00:02:: 01663201 2 0 -paired%5:00:00:matched:00 01486960 1 1 -paired%5:00:00:mated:00 01483076 3 0 -pairing%1:04:00:: 00847340 1 0 -pairing%1:04:01:: 00389610 2 0 -paisa%1:23:00:: 13703942 1 0 -paisley%1:06:00:: 03877351 1 0 -paiute%1:10:00:: 06915124 2 0 -paiute%1:18:00:: 09664556 1 0 -paiwanic%1:10:00:: 06941041 1 0 -pajama%1:06:00:: 03877472 2 0 -pajama%1:06:02:: 03877674 1 0 -pak_choi%1:20:00:: 11879054 1 0 -pakchoi%1:20:00:: 11879054 1 0 -pakistan%1:15:00:: 08975902 1 1 -pakistani%1:18:00:: 09725772 1 0 -pakistani%3:01:00:: 03095964 1 0 -pakistani_monetary_unit%1:23:00:: 13704143 1 0 -pakistani_rupee%1:23:00:: 13704274 1 0 -pal%1:18:00:: 09877951 1 0 -pal%2:41:00:: 02588871 1 0 -pal_up%2:41:00:: 02588871 1 0 -palace%1:06:00:: 03877845 4 0 -palace%1:06:01:: 03878066 1 3 -palace%1:06:02:: 03878211 3 0 -palace%1:14:00:: 08053121 2 2 -palace_car%1:06:00:: 03891664 1 0 -palace_of_versailles%1:06:00:: 04529486 1 0 -paladin%1:18:00:: 09906538 1 0 -palaeencephalon%1:08:00:: 05482129 1 0 -palaemon%1:05:00:: 01987353 1 0 -palaemon_australis%1:05:00:: 01987727 1 0 -palaemonidae%1:05:00:: 01987228 1 0 -palaeoanthropology%1:09:00:: 06074189 1 0 -palaeobiology%1:09:00:: 06078724 1 0 -palaeobotany%1:09:00:: 06074372 1 0 -palaeoclimatology%1:09:00:: 06145326 1 0 -palaeodendrology%1:09:00:: 06074728 1 0 -palaeoecology%1:09:00:: 06082709 1 0 -palaeoethnography%1:09:00:: 06146760 1 0 -palaeogeography%1:09:00:: 06145446 1 0 -palaeogeology%1:09:00:: 06117395 1 0 -palaeolithic%1:28:00:: 15232406 1 0 -palaeolithic%3:01:00:: 03090263 1 0 -palaeology%1:09:00:: 06146142 1 0 -palaeontological%3:01:00:: 02772654 1 0 -palaeontologist%1:18:00:: 10394786 1 0 -palaeontology%1:09:00:: 06073888 1 0 -palaeopathology%1:09:00:: 06145729 1 0 -palaeornithology%1:09:00:: 06075112 1 0 -palaeozoology%1:09:00:: 06074860 1 0 -palaestra%1:06:00:: 03878511 1 0 -palaetiology%1:09:00:: 06145897 1 0 -palaic%1:10:00:: 06976318 1 0 -palankeen%1:06:00:: 03878294 1 0 -palanquin%1:06:00:: 03878294 1 0 -palaquium%1:20:00:: 12774891 1 0 -palaquium_gutta%1:20:00:: 12775070 1 0 -palas%1:20:00:: 12510343 1 0 -palatability%1:07:00:: 04995211 1 0 -palatability%1:07:01:: 04794580 2 0 -palatable%3:00:00:: 01716227 1 0 -palatableness%1:07:00:: 04995211 1 0 -palatableness%1:07:01:: 04794580 2 0 -palatably%4:02:00:: 00416763 1 0 -palatal%1:10:00:: 07114535 1 0 -palatal%3:01:00:: 02996605 1 0 -palatal%5:00:00:soft:03 01157494 2 0 -palatalise%2:32:00:: 00951069 1 0 -palatalised%5:00:00:soft:03 01157494 1 0 -palatalize%2:32:00:: 00951069 1 0 -palatalized%5:00:00:soft:03 01157494 1 0 -palate%1:08:00:: 05309725 1 0 -palatial%3:01:00:: 03096141 1 0 -palatial%5:00:00:impressive:00 01286093 2 0 -palatinate%1:15:00:: 08775439 1 0 -palatinate%1:15:01:: 08553424 2 0 -palatine%1:08:00:: 05278152 4 0 -palatine%1:15:00:: 08797412 3 0 -palatine%1:18:00:: 10394141 2 0 -palatine%1:18:01:: 10394329 1 0 -palatine%3:01:00:: 02861402 3 0 -palatine%3:01:01:: 02861483 2 0 -palatine%3:01:02:: 02996605 1 0 -palatine_artery%1:08:00:: 05353241 1 0 -palatine_bone%1:08:00:: 05278152 1 0 -palatine_raphe%1:08:00:: 05276566 1 0 -palatine_tonsil%1:08:00:: 05309050 1 0 -palatine_vein%1:08:00:: 05375729 1 0 -palatoglossal%3:01:00:: 02772543 1 0 -palatopharyngoplasty%1:04:00:: 00689729 1 0 -palau%1:15:00:: 08978161 1 0 -palau%1:15:01:: 08977948 2 0 -palau_islands%1:15:00:: 08977948 1 0 -palaver%1:10:00:: 06609503 2 0 -palaver%1:10:01:: 06695862 1 0 -palaver%2:32:00:: 00763260 3 0 -palaver%2:32:01:: 00768778 2 0 -palaver%2:32:02:: 01036804 1 0 -pale%1:06:00:: 03929952 1 1 -pale%2:29:00:: 00103619 1 1 -pale%5:00:00:colorless:02 00405879 4 3 -pale%5:00:00:colorless:03 00408445 3 6 -pale%5:00:00:light:05 00408992 1 12 -pale%5:00:00:thin:04 01458200 5 0 -pale%5:00:00:weak:00 02325984 2 9 -pale-colored%5:00:00:colored:00 00399923 1 0 -pale-faced%5:00:00:faced:00 00235913 1 0 -pale-hued%5:00:00:colored:00 00399923 1 0 -pale_ale%1:13:00:: 07890068 1 0 -pale_blue%5:00:00:chromatic:00 00377131 1 0 -pale_chrysanthemum_aphid%1:05:00:: 02253391 1 0 -pale_coral_root%1:20:00:: 12054195 1 0 -pale_violet%1:20:00:: 12390099 1 0 -pale_yellow%1:07:00:: 04966941 1 0 -paleacrita%1:05:00:: 02287204 1 0 -paleacrita_vernata%1:05:00:: 02287352 1 0 -paleencephalon%1:08:00:: 05482129 1 0 -paleface%1:18:00:: 09639719 1 0 -palely%4:02:00:: 00416996 2 0 -palely%4:02:01:: 00417139 1 0 -paleness%1:07:00:: 04975612 3 0 -paleness%1:07:01:: 04977247 2 0 -paleness%1:07:02:: 04977561 1 0 -paleo-american%1:18:00:: 10394434 1 0 -paleo-american_culture%1:14:00:: 08291338 1 0 -paleo-amerind%1:18:00:: 10394434 1 0 -paleo-amerind_culture%1:14:00:: 08291338 1 0 -paleo-indian%1:18:00:: 10394434 1 0 -paleo-indian_culture%1:14:00:: 08291338 1 0 -paleoanthropological%3:01:00:: 02907330 1 0 -paleoanthropology%1:09:00:: 06074189 1 0 -paleobiology%1:09:00:: 06078724 1 0 -paleobotany%1:09:00:: 06074372 1 0 -paleocene%1:28:00:: 15126000 1 0 -paleocene_epoch%1:28:00:: 15126000 1 0 -paleocerebellum%1:08:00:: 05486319 1 0 -paleoclimatology%1:09:00:: 06145326 1 0 -paleocortex%1:08:00:: 05481870 1 1 -paleocortical%3:01:00:: 03010904 1 1 -paleodendrology%1:09:00:: 06074728 1 0 -paleoecology%1:09:00:: 06082709 1 0 -paleoencephalon%1:08:00:: 05482129 1 0 -paleoethnography%1:09:00:: 06146760 1 0 -paleogeography%1:09:00:: 06145446 1 0 -paleogeology%1:09:00:: 06117395 1 0 -paleographer%1:18:00:: 10394673 1 0 -paleographist%1:18:00:: 10394673 1 0 -paleography%1:09:00:: 06145586 1 0 -paleolith%1:06:00:: 03878418 1 0 -paleolithic%1:28:00:: 15232406 1 0 -paleolithic%3:01:00:: 03090263 1 0 -paleolithic_age%1:28:00:: 15232406 1 0 -paleology%1:09:00:: 06146142 1 0 -paleomammalogy%1:09:00:: 06075016 1 0 -paleontological%3:01:00:: 02772654 1 0 -paleontologist%1:18:00:: 10394786 1 0 -paleontology%1:09:00:: 06073888 1 0 -paleopathology%1:09:00:: 06145729 1 0 -paleornithology%1:09:00:: 06075112 1 0 -paleostriatum%1:08:00:: 05498300 1 0 -paleozoic%1:28:00:: 15126931 1 0 -paleozoic%3:01:00:: 02996801 1 0 -paleozoic_era%1:28:00:: 15126931 1 0 -paleozoology%1:09:00:: 06074860 1 0 -palermo%1:15:00:: 08811473 1 1 -palestine%1:15:00:: 08798382 2 0 -palestine%1:15:01:: 08798771 1 4 -palestine_authority%1:14:00:: 08320923 1 0 -palestine_islamic_jihad%1:14:00:: 08037118 1 0 -palestine_liberation_front%1:14:00:: 08037503 1 0 -palestine_liberation_organization%1:14:00:: 08320385 1 0 -palestine_national_authority%1:14:00:: 08320923 1 0 -palestinian%1:18:00:: 09713357 1 0 -palestinian%3:01:00:: 02974615 1 0 -palestinian_arab%1:18:00:: 09713357 1 0 -palestinian_hizballah%1:14:00:: 08037861 1 0 -palestinian_islamic_jihad%1:14:00:: 08037118 1 0 -palestinian_national_authority%1:14:00:: 08320923 1 0 -palestra%1:06:00:: 03878511 1 0 -palestrina%1:18:00:: 11221268 1 0 -paletiology%1:09:00:: 06145897 1 0 -palette%1:06:00:: 03878674 2 1 -palette%1:06:01:: 03879705 3 0 -palette%1:07:00:: 05128370 1 1 -palette_knife%1:06:00:: 03878828 1 0 -palfrey%1:05:00:: 02378299 1 0 -palgrave%1:18:00:: 11221389 1 0 -pali%1:10:00:: 06973334 1 0 -palilalia%1:26:00:: 14331137 1 0 -palimony%1:21:00:: 13283485 1 0 -palimpsest%1:10:00:: 06407514 1 0 -palindrome%1:10:00:: 06294828 1 0 -paling%1:06:00:: 03930313 1 0 -palingenesis%1:22:00:: 13531652 1 0 -palingenetic%3:01:00:: 02687434 1 0 -palinuridae%1:05:00:: 01984416 1 0 -palinurus%1:05:00:: 01984547 1 0 -palisade%1:06:00:: 03878963 1 0 -palisade%2:33:00:: 01130607 1 0 -palish%5:00:00:light:05 00409141 1 0 -paliurus%1:20:00:: 13143626 1 0 -paliurus_spina-christi%1:20:00:: 13143758 1 0 -pall%1:06:00:: 03151077 3 0 -pall%1:06:01:: 03879116 2 0 -pall%1:12:00:: 07537259 1 0 -pall%2:29:00:: 00076114 8 0 -pall%2:30:00:: 00392142 7 0 -pall%2:30:01:: 00538199 1 1 -pall%2:30:02:: 00538323 6 0 -pall%2:30:03:: 00538454 5 0 -pall%2:34:00:: 01193932 4 0 -pall%2:35:00:: 01335588 3 0 -pall%2:37:00:: 01785748 2 0 -pall-mall%1:04:00:: 00463116 1 0 -pall_mall%1:15:00:: 08876139 1 0 -palladian%3:01:00:: 02772819 1 0 -palladio%1:18:00:: 11221495 1 0 -palladium%1:27:00:: 14648754 1 0 -pallas%1:17:00:: 09383998 2 0 -pallas%1:18:00:: 09557387 1 0 -pallas's_cat%1:05:00:: 02126787 1 0 -pallas's_sandgrouse%1:05:00:: 01816474 1 0 -pallas_athena%1:18:00:: 09557387 1 0 -pallas_athene%1:18:00:: 09557387 1 0 -pallasite%1:17:00:: 09384106 1 0 -pallbearer%1:18:00:: 10395073 1 0 -pallet%1:06:00:: 03879336 4 0 -pallet%1:06:01:: 03878674 5 0 -pallet%1:06:02:: 03879456 3 0 -pallet%1:06:03:: 03879582 2 0 -pallet%1:07:00:: 05128370 1 0 -pallette%1:06:00:: 03879705 1 0 -palliasse%1:06:00:: 03875088 1 0 -palliate%2:29:00:: 00064095 2 0 -palliate%2:32:00:: 00906037 1 0 -palliation%1:04:00:: 00355547 1 0 -palliation%1:04:01:: 00354583 2 0 -palliative%1:06:00:: 03879854 1 0 -palliative%5:00:00:moderating:00 01341153 1 0 -pallid%5:00:00:colorless:02 00405879 1 2 -pallid%5:00:00:colorless:03 00408445 3 0 -pallid%5:00:00:weak:00 02325984 2 1 -pallid_bat%1:05:00:: 02147591 1 0 -pallidity%1:07:00:: 04975612 1 0 -pallidly%4:02:00:: 00417139 1 0 -pallidness%1:07:00:: 04977561 1 0 -pallidum%1:08:00:: 05498300 1 0 -pallium%1:06:00:: 03880032 4 0 -pallium%1:06:01:: 03880129 3 0 -pallium%1:08:00:: 05244045 2 0 -pallium%1:08:01:: 05486510 1 0 -pallone%1:04:00:: 00483848 1 0 -pallor%1:07:00:: 04977561 1 2 -pally%5:00:00:friendly:01 01075524 1 0 -palm%1:08:00:: 05565696 1 4 -palm%1:10:00:: 06706676 4 0 -palm%1:20:00:: 12582231 3 0 -palm%1:23:00:: 13656075 2 0 -palm%2:35:00:: 01210737 1 1 -palm-shaped%5:00:00:compound:00 02173125 1 0 -palm_beach%1:15:00:: 09074285 1 0 -palm_cat%1:05:00:: 02138169 1 0 -palm_civet%1:05:00:: 02138169 1 0 -palm_family%1:20:00:: 12581381 1 0 -palm_kernel%1:20:00:: 12590715 1 0 -palm_nut%1:20:00:: 12590715 1 0 -palm_off%2:40:00:: 02244426 1 1 -palm_oil%1:13:00:: 07674617 1 0 -palm_reading%1:09:00:: 05777830 1 0 -palm_sunday%1:28:00:: 15191661 1 0 -palm_tree%1:20:00:: 12582231 1 0 -palma_christ%1:20:00:: 12924623 1 0 -palma_christi%1:20:00:: 12924623 1 0 -palmaceae%1:20:00:: 12581381 1 0 -palmae%1:20:00:: 12581381 1 0 -palmales%1:20:00:: 12581230 1 0 -palmar%3:01:00:: 02773062 1 0 -palmate%5:00:00:compound:00 02173125 2 0 -palmate%5:00:00:webbed:00 02591239 1 0 -palmate_leaf%1:20:00:: 13156986 1 0 -palmately%4:02:00:: 00023169 1 0 -palmately-lobed%5:00:00:multilateral:00 00239742 1 0 -palmatifid%5:00:00:compound:00 02173264 1 0 -palmature%1:26:00:: 14331271 1 0 -palmer%1:18:00:: 11221650 1 0 -palmer_peninsula%1:17:00:: 09198755 1 0 -palmetto%1:20:00:: 12583401 1 0 -palmetto_state%1:15:00:: 09137869 1 0 -palmist%1:18:00:: 10395209 1 0 -palmister%1:18:00:: 10395209 1 0 -palmistry%1:09:00:: 05777830 1 0 -palmitic_acid%1:27:00:: 14973303 1 0 -palmitin%1:27:00:: 14973492 1 0 -palmlike%5:00:00:branchless:00 00614791 1 0 -palmy%5:00:00:successful:00 02331857 1 0 -palmyra%1:20:00:: 12585629 1 0 -palmyra_palm%1:20:00:: 12585629 1 0 -palo_alto%1:15:00:: 09064468 1 0 -palo_santo%1:20:00:: 12721477 1 0 -palo_verde%1:20:00:: 12498055 1 0 -palometa%1:05:00:: 02633677 1 0 -palometa_simillima%1:05:00:: 02633677 1 0 -palomino%1:05:00:: 02389128 1 0 -palooka%1:18:00:: 10666752 1 0 -paloverde%1:20:00:: 12493868 1 0 -palpability%1:07:00:: 04760024 1 0 -palpable%3:00:00:: 01717117 1 1 -palpable%5:00:00:perceptible:00 01747713 2 0 -palpably%4:02:00:: 00161420 1 1 -palpate%2:35:00:: 01210352 1 0 -palpation%1:04:00:: 00143885 1 0 -palpatory%3:01:00:: 02773293 1 0 -palpebra%1:08:00:: 05313822 1 0 -palpebra_conjunctiva%1:08:00:: 05315612 1 0 -palpebrate%2:29:00:: 00008055 1 0 -palpebrate%3:01:00:: 02773401 1 0 -palpebration%1:04:00:: 01265176 1 0 -palpitant%5:00:00:unsteady:00 02304322 1 0 -palpitate%2:38:00:: 01879928 3 0 -palpitate%2:38:01:: 01889129 2 0 -palpitate%2:38:02:: 01889392 1 0 -palpitating%5:00:00:unsteady:00 02304322 1 0 -palpitation%1:26:00:: 14335097 1 0 -palpitation%1:26:01:: 14004572 2 0 -palsgrave%1:18:00:: 10394141 1 0 -palsied%5:00:00:ill:01 02545874 1 0 -palsy%1:26:00:: 14558226 1 0 -palsy%1:26:01:: 14316470 2 0 -palsy%2:30:00:: 00268680 1 0 -palsy-walsy%5:00:00:friendly:01 01075524 1 0 -palter%2:32:00:: 00835506 1 0 -paltering%1:04:00:: 00752144 1 0 -paltriness%1:07:00:: 05140278 1 0 -paltry%5:00:00:meager:00 00107384 2 0 -paltry%5:00:00:worthless:00 02502994 1 0 -pamelor%1:06:00:: 03830582 1 0 -pamir_mountains%1:17:00:: 09384223 1 0 -pamlico%1:10:00:: 06911666 2 0 -pamlico%1:18:00:: 09664766 1 0 -pampas%1:15:00:: 08713655 1 0 -pampas_grass%1:20:00:: 12115180 1 0 -pamper%2:41:00:: 02570267 1 1 -pamperer%1:18:00:: 10395390 1 0 -pampering%1:04:00:: 01073241 1 0 -pampering%5:00:00:indulgent:00 01299484 1 0 -pamphlet%1:10:00:: 06409290 2 1 -pamphlet%1:10:01:: 06413889 1 1 -pamphleteer%1:18:00:: 10395605 1 0 -pan%1:05:00:: 02481629 4 0 -pan%1:06:00:: 03880323 3 0 -pan%1:06:01:: 03880531 1 5 -pan%1:18:00:: 09568241 2 0 -pan%2:32:00:: 00846344 3 0 -pan%2:35:00:: 01536508 2 1 -pan%2:38:00:: 01998302 1 1 -pan-broil%2:30:00:: 00328579 1 0 -pan-fry%2:30:00:: 00326049 1 0 -pan-hellenic%3:01:00:: 03016027 1 0 -pan_american_day%1:28:00:: 15188688 1 0 -pan_american_union%1:14:00:: 08176901 1 0 -pan_gravy%1:13:00:: 07837912 1 0 -pan_off%2:35:00:: 01536508 1 0 -pan_out%2:35:00:: 01536508 2 0 -pan_out%2:41:00:: 02525985 1 0 -pan_paniscus%1:05:00:: 02482650 1 0 -pan_roast%2:30:00:: 00325085 1 0 -pan_troglodytes%1:05:00:: 02481823 1 0 -pan_troglodytes_schweinfurthii%1:05:00:: 02482286 1 0 -pan_troglodytes_troglodytes%1:05:00:: 02482474 1 0 -pan_troglodytes_verus%1:05:00:: 02482060 1 0 -panacea%1:06:00:: 03880770 2 0 -panacea%1:18:00:: 09563042 1 0 -panache%1:06:00:: 03880951 2 0 -panache%1:07:00:: 04812871 1 0 -panadol%1:06:00:: 02674482 1 0 -panama%1:06:00:: 02859184 2 0 -panama%1:15:00:: 08739206 1 1 -panama_canal%1:06:00:: 03881034 1 0 -panama_canal_zone%1:15:00:: 08739829 1 0 -panama_city%1:15:00:: 08739512 2 0 -panama_city%1:15:01:: 09074431 1 0 -panama_hat%1:06:00:: 02859184 1 0 -panama_redwood%1:20:01:: 12563045 2 0 -panama_redwood%1:20:02:: 12563281 1 0 -panama_redwood_tree%1:20:00:: 12563045 1 0 -panama_tree%1:20:00:: 12195533 1 0 -panamanian%1:18:00:: 09726120 1 0 -panamanian%3:01:00:: 02966482 1 0 -panamanian_capital%1:15:00:: 08739512 1 0 -panamanian_monetary_unit%1:23:00:: 13664041 1 0 -panamica%1:20:00:: 12395463 1 0 -panamiga%1:20:00:: 12395463 1 0 -panatela%1:06:00:: 03881207 1 0 -panax%1:20:00:: 11799520 1 0 -panax_ginseng%1:20:00:: 11799732 1 0 -panax_pseudoginseng%1:20:00:: 11799732 1 0 -panax_quinquefolius%1:20:00:: 11800020 1 0 -panax_schinseng%1:20:00:: 11799732 1 0 -pancake%1:13:00:: 07640203 1 0 -pancake-like%5:00:00:round:00 02042687 1 0 -pancake-style%5:00:00:cooked:00 00617951 1 0 -pancake_batter%1:13:00:: 07861247 1 0 -pancake_day%1:28:00:: 15241898 1 0 -pancake_turner%1:06:00:: 03881305 1 0 -pancake_turtle%1:05:00:: 01672032 1 0 -pancarditis%1:26:00:: 14339536 1 0 -panchayat%1:14:00:: 08311522 1 0 -panchayet%1:14:00:: 08311522 1 0 -panchen_lama%1:18:00:: 10395828 1 0 -pancho_villa%1:18:00:: 11366405 1 0 -panchromatic_film%1:06:00:: 03881404 1 0 -pancreas%1:08:00:: 05387167 1 0 -pancreatectomy%1:04:00:: 00687027 1 0 -pancreatic%3:01:00:: 02932561 1 0 -pancreatic_artery%1:08:00:: 05353364 1 0 -pancreatic_cancer%1:26:00:: 14251981 1 0 -pancreatic_duct%1:08:00:: 05387395 1 0 -pancreatic_fibrosis%1:26:00:: 14155506 1 0 -pancreatic_juice%1:08:00:: 05406397 1 0 -pancreatic_vein%1:08:00:: 05375881 1 0 -pancreatin%1:27:00:: 14848995 1 0 -pancreatitis%1:26:00:: 14352334 1 0 -pancytopenia%1:26:00:: 13973769 1 0 -panda%1:05:01:: 02510455 1 0 -panda%1:05:02:: 02509815 2 0 -panda_bear%1:05:00:: 02510455 1 0 -panda_car%1:06:00:: 03881534 1 0 -pandanaceae%1:20:00:: 12154426 1 0 -pandanales%1:20:00:: 12154228 1 0 -pandanus%1:20:00:: 12154773 2 0 -pandanus%1:20:03:: 12155126 1 0 -pandanus_tectorius%1:20:00:: 12155009 1 0 -pandar%1:18:00:: 10433737 1 0 -pandean_pipe%1:06:00:: 03884397 1 0 -pandemic%1:11:00:: 07435713 1 0 -pandemic%5:00:00:epidemic:00 01427188 1 0 -pandemic%5:00:00:general:00 01102568 2 0 -pandemonium%1:26:00:: 13976322 1 0 -pander%1:18:00:: 10433737 1 1 -pander%2:34:00:: 01180975 2 0 -pander%2:34:13:: 01182293 1 0 -panderer%1:18:00:: 10433737 1 0 -panderer%1:18:01:: 10395926 2 0 -pandiculation%1:04:00:: 00628883 1 0 -pandion%1:05:00:: 01615949 1 0 -pandion_haliaetus%1:05:00:: 01616086 1 0 -pandionidae%1:05:00:: 01615825 1 0 -pandora%1:18:00:: 09578248 1 0 -pandora's_box%1:06:00:: 03881625 1 0 -pandowdy%1:13:00:: 07623363 1 0 -pandurate%5:00:00:simple:01 02170052 1 0 -pandurate_leaf%1:20:00:: 13159357 1 0 -panduriform%5:00:00:simple:01 02170052 1 0 -panduriform_leaf%1:20:00:: 13159357 1 0 -pane%1:06:00:: 03881893 1 3 -pane%1:06:01:: 03882611 2 0 -pane%1:06:02:: 02675657 3 0 -pane_of_glass%1:06:00:: 03881893 1 1 -panegyric%1:10:00:: 06694149 1 0 -panegyric%5:00:00:complimentary:00 00906099 1 0 -panegyrical%5:00:00:complimentary:00 00906099 1 0 -panegyrist%1:18:00:: 09617161 1 0 -panel%1:06:00:: 03882058 1 1 -panel%1:06:01:: 03098140 8 0 -panel%1:06:02:: 03882346 5 0 -panel%1:06:03:: 03187268 7 0 -panel%1:06:04:: 03448253 6 0 -panel%1:14:00:: 08414381 4 0 -panel%1:14:01:: 08414807 2 0 -panel%1:14:02:: 08414608 3 0 -panel%2:31:00:: 00625963 2 0 -panel%2:36:00:: 01678519 1 1 -panel_discussion%1:10:00:: 07143869 1 1 -panel_heating%1:06:00:: 03882430 1 0 -panel_light%1:06:00:: 03882861 1 0 -panel_truck%1:06:00:: 03173929 1 0 -paneled%5:00:00:adorned:00 00059669 1 0 -paneling%1:06:00:: 03882611 1 3 -panelist%1:18:00:: 10396106 1 0 -panelling%1:06:00:: 03882611 1 0 -panellist%1:18:00:: 10396106 1 0 -panencephalitis%1:26:00:: 14343597 1 0 -panetela%1:06:00:: 03881207 1 0 -panetella%1:06:00:: 03881207 1 0 -panfish%1:13:00:: 07782939 1 0 -pang%1:12:00:: 07494972 1 1 -pang%1:26:00:: 14329654 3 0 -pang%1:26:01:: 14329762 2 0 -panga%1:06:00:: 03699591 1 0 -pangaea%1:17:00:: 09384532 1 0 -pangea%1:17:00:: 09384532 1 0 -pangloss%1:18:00:: 09602383 1 0 -pango_pango%1:15:00:: 08992067 1 0 -pangolin%1:05:00:: 02461830 1 0 -panhandle%1:06:00:: 03882960 2 0 -panhandle%1:15:00:: 08614357 1 0 -panhandle%2:40:00:: 02270978 1 0 -panhandler%1:18:00:: 10396337 1 0 -panhellenic%3:01:00:: 03016027 1 0 -panhysterectomy%1:04:00:: 00677434 1 0 -panic%1:12:00:: 07520612 1 7 -panic%1:26:01:: 14405931 2 2 -panic%2:37:00:: 01782218 1 1 -panic%2:37:01:: 01781983 2 1 -panic-stricken%5:00:00:afraid:00 00080357 1 1 -panic-struck%5:00:00:afraid:00 00080357 1 0 -panic_attack%1:12:00:: 07521437 1 0 -panic_button%1:06:00:: 03883054 1 0 -panic_disorder%1:26:00:: 14381249 1 0 -panic_grass%1:20:00:: 12127030 1 0 -panicked%5:00:00:afraid:00 00080357 1 1 -panicky%5:00:00:afraid:00 00080357 1 0 -panicle%1:20:00:: 13132656 1 0 -panicled%3:01:00:: 02773472 1 0 -panicled_aster%1:20:00:: 11936369 1 0 -paniculate%3:01:00:: 03133791 1 0 -panicum%1:20:00:: 12126911 1 0 -panicum_capillare%1:20:00:: 12127237 1 0 -panicum_miliaceum%1:20:00:: 12127575 1 0 -panicum_texanum%1:20:00:: 12127768 1 0 -panicum_virgatum%1:20:00:: 12127460 1 0 -panini%1:18:00:: 11221778 1 0 -panipat%1:04:00:: 01289997 1 0 -panjabi%1:10:00:: 06971605 2 0 -panjabi%1:18:00:: 09676247 1 0 -panjandrum%1:18:00:: 10748620 1 0 -pannier%1:06:00:: 03883278 3 0 -pannier%1:06:01:: 03883385 2 0 -pannier%1:06:02:: 03883524 1 0 -pannikin%1:06:00:: 03883664 1 0 -panocha%1:13:00:: 07605804 1 0 -panoche%1:13:00:: 07605804 1 0 -panofsky%1:18:00:: 11221956 1 0 -panonychus%1:05:00:: 01782378 1 0 -panonychus_ulmi%1:05:00:: 01782516 1 0 -panoplied%5:00:00:clothed:00 00454849 2 0 -panoplied%5:00:00:equipped:00 01094647 1 0 -panoply%1:14:00:: 08461981 1 0 -panoptic%5:00:00:comprehensive:00 00526062 2 0 -panoptic%5:00:00:visible:00 02516785 1 0 -panoptical%5:00:00:visible:00 02516785 1 0 -panopticon%1:06:00:: 03883773 2 0 -panopticon%1:06:01:: 03883944 1 0 -panorama%1:06:00:: 03884072 2 0 -panorama%1:09:00:: 05933246 1 0 -panoramic%5:00:00:wide:00 02561123 1 1 -panoramic_sight%1:06:00:: 03884232 1 0 -panoramic_view%1:09:00:: 06209101 1 0 -panorpidae%1:05:00:: 02162404 1 0 -panpipe%1:06:00:: 03884397 1 0 -pansa%1:28:00:: 15220985 1 0 -pansexual%1:18:00:: 10396462 1 0 -pansinusitis%1:26:00:: 14355356 1 0 -pansy%1:18:00:: 10076033 3 0 -pansy%1:18:01:: 10603378 2 0 -pansy%1:20:01:: 12390485 1 19 -pansy_orchid%1:20:00:: 12073554 1 0 -pansy_violet%1:20:00:: 12389501 1 0 -pant%1:04:00:: 00837098 3 0 -pant%1:06:00:: 04489008 2 0 -pant%1:11:00:: 07388706 1 0 -pant%2:29:00:: 00005526 1 9 -pant%2:32:00:: 00986173 2 1 -pant-hoot%2:32:00:: 01042995 1 0 -pant_leg%1:06:00:: 03885293 1 2 -pantaloon%1:06:00:: 03884554 3 0 -pantaloon%1:18:00:: 09602484 2 0 -pantaloon%1:18:01:: 09602610 1 0 -pantalooned%5:00:00:clothed:00 00454984 1 0 -pantechnicon%1:06:01:: 03884639 1 0 -pantheism%1:09:00:: 06224975 2 0 -pantheism%1:09:01:: 06225235 1 0 -pantheist%1:18:00:: 10396594 1 0 -pantheist%3:01:00:: 02931675 1 0 -pantheistic%3:01:00:: 02931675 1 0 -pantheon%1:06:00:: 03884778 3 0 -pantheon%1:06:01:: 03884926 2 0 -pantheon%1:14:00:: 08153337 1 1 -panther%1:05:02:: 02128669 2 0 -panther%1:05:03:: 02128925 1 2 -panther%1:05:04:: 02125311 3 0 -panther_cat%1:05:00:: 02125494 1 0 -panther_lily%1:20:00:: 12428412 1 0 -panthera%1:05:00:: 02128120 1 0 -panthera_leo%1:05:00:: 02129165 1 0 -panthera_onca%1:05:00:: 02128925 1 0 -panthera_pardus%1:05:00:: 02128385 1 0 -panthera_tigris%1:05:00:: 02129604 1 0 -panthera_uncia%1:05:00:: 02128757 1 0 -pantie%1:06:00:: 03885028 1 0 -pantile%1:27:00:: 14976759 1 0 -panting%1:04:00:: 00834135 1 1 -panting%1:06:00:: 03885194 2 0 -panto%1:04:00:: 00550242 1 0 -pantograph%1:06:00:: 03885410 1 0 -pantomime%1:04:00:: 00550016 1 1 -pantomime%2:36:00:: 01724185 1 1 -pantomimer%1:18:00:: 10318892 1 0 -pantomimist%1:18:00:: 10318892 1 0 -pantothen%1:27:00:: 14973585 1 0 -pantothenic_acid%1:27:00:: 14973585 1 0 -pantotheria%1:05:00:: 01873622 1 0 -pantropic%5:00:00:equatorial:00 02443803 1 0 -pantropical%5:00:00:equatorial:00 02443803 1 0 -pantry%1:06:00:: 03885535 1 1 -pantryman%1:18:00:: 09884509 1 0 -pants%1:06:01:: 02854739 1 0 -pants_presser%1:06:00:: 04488857 1 0 -pants_suit%1:06:00:: 03885669 1 0 -pantsuit%1:06:00:: 03885669 1 0 -panty%1:06:00:: 03885028 1 0 -panty_girdle%1:06:00:: 03885788 1 0 -pantyhose%1:06:00:: 03885904 1 0 -pantywaist%1:18:00:: 10603378 1 0 -panzer%1:06:00:: 03886053 1 0 -paola_caliari%1:18:00:: 11363791 1 0 -paolo_veronese%1:18:00:: 11363791 1 0 -pap%1:08:00:: 05554653 3 0 -pap%1:10:00:: 06612174 1 1 -pap%1:13:00:: 07564796 2 0 -pap_smear%1:08:00:: 05266239 1 0 -pap_test%1:09:00:: 05743296 1 0 -papa%1:18:00:: 09988063 1 23 -papa_doc%1:18:00:: 10946624 1 0 -papacy%1:14:00:: 08053260 1 0 -papaia%1:20:00:: 12373100 1 0 -papain%1:27:00:: 14973833 1 0 -papal%3:01:00:: 02879638 1 1 -papal_bull%1:10:00:: 06726761 1 0 -papal_cross%1:06:00:: 03886151 1 0 -papal_infallibility%1:07:00:: 04805635 1 0 -papal_nuncio%1:18:00:: 10368113 1 0 -papal_states%1:15:00:: 08809596 1 0 -papanicolaou_smear%1:08:00:: 05266239 1 0 -papanicolaou_test%1:09:00:: 05743296 1 0 -paparazzo%1:18:00:: 10396727 1 0 -papaver%1:20:00:: 11900986 1 0 -papaver_alpinum%1:20:00:: 11901294 1 0 -papaver_argemone%1:20:00:: 11901597 1 0 -papaver_californicum%1:20:00:: 11901452 1 0 -papaver_heterophyllum%1:20:00:: 11908549 1 0 -papaver_nudicaule%1:20:00:: 11901759 1 0 -papaver_orientale%1:20:00:: 11901977 1 0 -papaver_rhoeas%1:20:00:: 11902200 1 0 -papaver_somniferum%1:20:00:: 11902389 1 0 -papaveraceae%1:20:00:: 11900058 1 0 -papaverales%1:20:00:: 11864364 1 0 -papaverine%1:06:00:: 03886237 1 0 -papaw%1:13:00:: 07762114 2 0 -papaw%1:20:01:: 11695599 1 0 -papaw_tree%1:20:00:: 11695599 1 0 -papaya%1:13:00:: 07762244 2 0 -papaya%1:20:00:: 12373100 1 0 -papaya_family%1:20:00:: 12372708 1 0 -papaya_juice%1:13:00:: 07925423 1 0 -papaya_tree%1:20:00:: 12373100 1 0 -papeete%1:15:00:: 08990203 1 0 -paper%1:06:00:: 03822171 7 0 -paper%1:10:00:: 06255613 4 4 -paper%1:10:01:: 06409752 2 21 -paper%1:10:02:: 06269956 5 3 -paper%1:10:03:: 06267145 3 12 -paper%1:14:00:: 08062970 6 2 -paper%1:27:00:: 14974264 1 30 -paper%2:35:00:: 01268457 1 0 -paper%2:35:01:: 01268112 2 0 -paper-back_book%1:06:00:: 03886432 1 0 -paper-mache%1:27:00:: 14975444 1 0 -paper-pusher%1:18:00:: 10397275 1 0 -paper_bag%1:06:00:: 04122825 1 1 -paper_birch%1:20:00:: 12281974 1 0 -paper_chain%1:06:00:: 03886641 1 0 -paper_chase%1:04:00:: 00460078 1 0 -paper_chromatography%1:22:00:: 13531927 1 0 -paper_clip%1:06:00:: 03886762 1 0 -paper_cup%1:06:00:: 03216710 1 0 -paper_currency%1:21:00:: 13387209 1 0 -paper_cutter%1:06:00:: 03886940 1 0 -paper_doll%1:06:00:: 03887066 1 0 -paper_electrophoresis%1:22:00:: 13532059 1 2 -paper_fastener%1:06:00:: 03887185 1 0 -paper_feed%1:06:00:: 03887330 1 0 -paper_flower%1:20:00:: 11839167 1 0 -paper_gold%1:21:00:: 13330941 1 0 -paper_knife%1:06:00:: 03658185 1 0 -paper_loss%1:21:00:: 13259013 1 0 -paper_mill%1:06:00:: 03887512 1 0 -paper_money%1:21:00:: 13387209 1 0 -paper_mulberry%1:20:00:: 12403994 1 0 -paper_nautilus%1:05:00:: 01970667 1 0 -paper_plant%1:20:00:: 12151365 1 0 -paper_plate%1:06:00:: 03887603 1 0 -paper_profit%1:21:00:: 13258825 1 0 -paper_round%1:15:00:: 08613078 1 0 -paper_route%1:04:00:: 00720331 2 0 -paper_route%1:15:00:: 08613078 1 0 -paper_rush%1:20:00:: 12151365 1 0 -paper_tape%1:27:00:: 14975266 1 0 -paper_thin%5:00:00:thin:01 02414500 1 0 -paper_tiger%1:07:00:: 05207352 1 0 -paper_towel%1:06:00:: 03887697 1 0 -paper_toweling%1:27:00:: 14975351 1 0 -paper_trail%1:10:00:: 06504662 1 0 -paper_wasp%1:05:00:: 02212958 1 0 -paper_white%1:20:00:: 12422230 1 0 -paperback%1:06:00:: 03886432 1 1 -paperback%5:00:00:bound:02 00257232 1 0 -paperback_book%1:06:00:: 03886432 1 0 -paperbacked%5:00:00:bound:02 00257232 1 0 -paperbark_birch%1:20:00:: 12281974 1 0 -paperboard%1:27:00:: 14801146 1 0 -paperboy%1:18:00:: 10396908 1 0 -paperclip%1:06:00:: 03886762 1 0 -paperer%1:18:00:: 10397001 1 0 -paperhanger%1:18:00:: 10397001 2 0 -paperhanger%1:18:01:: 10397142 1 0 -paperhanging%1:04:00:: 00718573 1 0 -papering%1:04:00:: 00718573 1 0 -paperknife%1:06:00:: 03658185 1 0 -paperlike%3:01:00:: 02691531 1 0 -papermaking%1:04:00:: 00609423 1 0 -papers%1:10:00:: 06470073 1 13 -paperweight%1:06:00:: 03887797 1 0 -paperwork%1:04:00:: 00582071 1 1 -papery%3:01:00:: 02691531 2 0 -papery%5:00:00:thin:01 02414599 1 1 -paphiopedilum%1:20:00:: 12075495 1 0 -papier-mache%1:27:00:: 14975444 1 0 -papilionaceae%1:20:00:: 12501537 1 0 -papilionoideae%1:20:00:: 12501745 1 0 -papilla%1:08:00:: 05473593 3 0 -papilla%1:08:01:: 05473735 2 0 -papilla%1:20:00:: 11820191 1 0 -papillary%3:01:00:: 03010176 1 1 -papillary_muscle%1:08:00:: 05390233 1 0 -papillary_tumor%1:26:00:: 14250081 1 0 -papillary_tumour%1:26:00:: 14250081 1 0 -papillate%3:01:00:: 03010337 1 0 -papilledema%1:26:00:: 14316164 1 0 -papilliform%3:01:00:: 02773612 1 0 -papilloma%1:26:00:: 14250081 1 0 -papillon%1:05:00:: 02086910 1 0 -papillose%3:01:00:: 03010176 1 0 -papio%1:05:00:: 02486565 1 0 -papio_ursinus%1:05:00:: 02486657 1 0 -papism%1:04:00:: 01030488 2 0 -papism%1:09:00:: 06227562 1 0 -papist%1:18:00:: 09680657 1 0 -papist%3:01:00:: 02921753 1 0 -papistic%3:01:00:: 02921753 1 0 -papistical%3:01:00:: 02921753 1 0 -papoose%1:18:00:: 10397392 1 0 -papoose_root%1:20:00:: 11698562 1 0 -papooseroot%1:20:00:: 11698562 1 0 -papovavirus%1:05:00:: 01340155 1 0 -pappa%1:18:00:: 09988063 1 0 -pappataci_fever%1:26:00:: 14219487 1 0 -pappoose%1:18:00:: 10397392 1 0 -pappose%5:00:00:hairy:00 00214907 1 0 -pappus%1:20:00:: 11692604 1 0 -paprika%1:13:00:: 07824702 2 0 -paprika%1:20:00:: 12901264 1 0 -paprika_sauce%1:13:00:: 07839172 1 0 -paprilus%1:05:00:: 02633844 1 0 -paprilus_alepidotus%1:05:00:: 02633977 1 0 -papua%1:15:00:: 08844923 1 0 -papua_new_guinea%1:15:00:: 08844557 1 0 -papuan%1:10:00:: 06941115 2 0 -papuan%1:18:00:: 09750282 1 0 -papuan%3:01:00:: 03096269 1 0 -papuan_language%1:10:00:: 06941115 1 0 -papuan_monetary_unit%1:23:00:: 13680463 1 0 -papule%1:26:00:: 14333863 1 0 -papulovesicle%1:26:00:: 14334011 1 0 -papyrus%1:10:01:: 06485178 3 0 -papyrus%1:20:00:: 12151365 2 0 -papyrus%1:27:00:: 14975598 1 0 -par%1:23:00:: 13596756 1 2 -par%1:26:00:: 13946760 2 1 -par%2:33:00:: 01084331 1 0 -par_excellence%4:02:00:: 00256912 1 0 -par_value%1:21:00:: 13335635 1 0 -para%1:15:00:: 08854855 5 0 -para%1:17:00:: 09384771 4 0 -para%1:18:00:: 10399019 3 0 -para%1:23:00:: 13671310 2 0 -para%1:26:00:: 14047171 1 0 -para_aminobenzoic_acid%1:27:00:: 14973965 1 0 -para_i%1:18:00:: 10472274 1 0 -para_river%1:17:00:: 09384771 1 0 -para_rubber%1:27:00:: 15007677 1 0 -para_rubber_tree%1:20:00:: 12926039 1 0 -parable%1:10:00:: 06372095 1 2 -parable%1:10:01:: 06373090 2 0 -parabola%1:25:00:: 13886371 1 0 -parabolic%3:01:00:: 02996904 1 0 -parabolic%5:00:00:rounded:00 02046916 2 0 -parabolic_geometry%1:09:00:: 06005518 1 0 -parabolic_mirror%1:06:00:: 03887899 1 0 -parabolic_reflector%1:06:00:: 03888022 1 0 -parabolical%3:01:00:: 02996904 1 0 -parabolical%5:00:00:rounded:00 02046916 2 0 -paraboloid%1:25:00:: 13897002 1 0 -paraboloid_reflector%1:06:00:: 03888022 1 0 -paraboloidal%5:00:00:rounded:00 02047051 1 0 -paracelsus%1:18:00:: 11222054 1 0 -paracentesis%1:04:00:: 00943471 1 0 -paracentral_scotoma%1:26:00:: 14556765 1 0 -paracervical_block%1:26:00:: 14028967 1 0 -paracheirodon%1:05:00:: 02584004 1 0 -paracheirodon_axelrodi%1:05:00:: 02584145 1 0 -parachute%1:06:00:: 03888257 1 2 -parachute%2:38:00:: 01968275 1 0 -parachute_jumper%1:18:00:: 10397482 1 0 -parachuter%1:18:00:: 10397482 1 0 -parachuting%1:04:00:: 00303849 1 0 -parachutist%1:18:00:: 10397482 1 0 -paraclete%1:18:00:: 09537781 1 0 -paracosm%1:09:00:: 05633228 1 0 -parade%1:04:00:: 00521085 3 0 -parade%1:14:00:: 08428485 1 3 -parade%1:14:02:: 08460395 2 1 -parade%2:38:00:: 01924505 2 1 -parade%2:38:01:: 01924712 1 2 -parade_ground%1:15:00:: 08614545 1 4 -parader%1:18:00:: 10293332 1 0 -paradiddle%1:11:00:: 07388816 1 0 -paradigm%1:09:00:: 05937524 2 1 -paradigm%1:09:01:: 06210171 4 0 -paradigm%1:10:00:: 06309684 3 0 -paradigm%1:24:00:: 13804375 1 4 -paradigmatic%3:01:00:: 02965415 2 0 -paradigmatic%3:01:01:: 02965552 1 0 -paradigmatic%3:01:02:: 02773691 3 0 -paradisaeidae%1:05:00:: 01570969 1 0 -paradisaic%5:00:00:heavenly:00 01180084 1 0 -paradisaical%5:00:00:heavenly:00 01180084 1 0 -paradisal%5:00:00:heavenly:00 01180084 1 0 -paradise%1:09:00:: 05628939 2 0 -paradise%1:15:01:: 08565506 1 2 -paradise_flower%1:20:00:: 12490054 1 0 -paradise_tree%1:20:00:: 12716594 1 0 -paradisea_liliastrum%1:20:00:: 12606688 1 0 -paradisiac%5:00:00:heavenly:00 01180084 1 0 -paradisiacal%5:00:00:heavenly:00 01180084 1 0 -paradox%1:10:00:: 06724559 1 3 -paradoxical%5:00:00:inexplicable:00 00939895 1 2 -paradoxical_sleep%1:26:00:: 14025755 1 0 -paradoxically%4:02:00:: 00023263 1 5 -paradoxurus%1:05:00:: 02138042 1 0 -paraduodenal_smear%1:08:00:: 05266096 1 0 -paraesthesia%1:26:00:: 14324795 1 0 -paraffin%1:27:00:: 15095237 1 0 -paraffin%1:27:01:: 14926086 3 0 -paraffin%1:27:02:: 14951377 2 0 -paraffin_oil%1:27:00:: 14926086 1 0 -paraffin_scale%1:27:00:: 15020528 1 0 -paraffin_series%1:27:00:: 14951377 1 0 -paraffin_wax%1:27:00:: 15095237 1 0 -parafovea%1:08:00:: 05455563 1 0 -paragliding%1:04:00:: 00304349 1 0 -paragon%1:09:00:: 05924519 1 1 -paragon%1:18:00:: 10325243 2 0 -paragonite%1:27:00:: 14689226 1 0 -paragraph%1:10:00:: 06399995 1 5 -paragraph%2:36:00:: 01699539 3 0 -paragraph%2:36:01:: 01699700 2 0 -paragraph%2:41:00:: 02469443 1 0 -paragrapher%1:18:00:: 10397694 1 0 -paraguay%1:15:00:: 08978343 1 0 -paraguay_tea%1:20:00:: 12757668 1 0 -paraguayan%1:18:00:: 09726246 1 0 -paraguayan%3:01:00:: 02967179 1 0 -paraguayan_monetary_unit%1:23:00:: 13679494 1 0 -parainfluenza_virus%1:05:00:: 01330314 1 0 -parakeet%1:05:00:: 01821203 1 1 -paralanguage%1:10:00:: 07082025 1 0 -paraldehyde%1:27:00:: 14689325 1 0 -paralegal%1:18:00:: 10397886 1 0 -paraleipsis%1:10:00:: 07104733 1 0 -paralepsis%1:10:00:: 07104733 1 0 -paralichthys%1:05:00:: 02661317 1 0 -paralichthys_dentatus%1:05:00:: 02661618 1 0 -paralichthys_lethostigmus%1:05:00:: 02661473 1 0 -paralinguistic_communication%1:10:00:: 07082025 1 0 -paralipomenon%1:10:00:: 06435394 1 0 -paralipsis%1:10:00:: 07104733 1 0 -paralithodes%1:05:00:: 01981137 1 0 -paralithodes_camtschatica%1:05:00:: 01981276 1 0 -parallax%1:19:00:: 11528225 1 0 -parallel%1:07:00:: 04746430 1 5 -parallel%1:15:00:: 08595720 2 1 -parallel%1:25:00:: 13880994 3 0 -parallel%2:30:00:: 00525281 2 1 -parallel%2:42:00:: 02659222 1 5 -parallel%2:42:01:: 02659358 3 0 -parallel%3:00:00:: 01718158 1 10 -parallel%5:00:00:synchronous:00 02379157 2 0 -parallel-park%2:38:00:: 01934842 1 0 -parallel-veined_leaf%1:20:00:: 13161639 1 0 -parallel_axiom%1:09:00:: 06006458 1 0 -parallel_bars%1:06:00:: 03888605 1 1 -parallel_circuit%1:06:00:: 03888808 1 0 -parallel_interface%1:06:00:: 03888998 1 0 -parallel_lives%1:10:00:: 06748270 1 0 -parallel_of_latitude%1:15:00:: 08595720 1 0 -parallel_operation%1:22:00:: 13532196 1 0 -parallel_port%1:06:00:: 03888998 1 0 -parallel_processing%1:22:00:: 13518140 1 0 -parallelepiped%1:25:00:: 13884740 1 0 -parallelepipedon%1:25:00:: 13884740 1 0 -parallelism%1:07:00:: 04745240 1 3 -parallelize%2:35:00:: 01498615 1 0 -parallelogram%1:25:00:: 13881175 1 0 -parallelopiped%1:25:00:: 13884740 1 0 -parallelopipedon%1:25:00:: 13884740 1 0 -paralogism%1:09:00:: 05895373 1 0 -paralyse%2:30:00:: 00268477 2 0 -paralyse%2:30:01:: 00268796 1 0 -paralysis%1:26:00:: 14558226 1 0 -paralysis_agitans%1:26:00:: 14094350 1 0 -paralytic%1:18:00:: 10398033 1 0 -paralytic%3:01:00:: 03096448 1 0 -paralytic%5:00:00:ill:01 02545989 2 0 -paralytic_abasia%1:26:00:: 14549600 1 0 -paralytical%3:01:00:: 03096448 1 0 -paralyze%2:30:00:: 00268477 2 1 -paralyze%2:30:01:: 00268796 1 1 -paralyzed%5:00:00:ill:01 02545989 1 0 -paramagnet%1:06:00:: 03889208 1 1 -paramagnetic%3:01:00:: 03002617 1 13 -paramagnetism%1:19:00:: 11480521 1 0 -paramaribo%1:15:00:: 09031061 1 0 -paramecia%1:05:00:: 01396048 1 0 -paramecium%1:05:00:: 01396048 1 0 -paramedic%1:18:00:: 10398176 1 0 -paramedical%1:18:00:: 10398176 1 0 -paramedical%3:01:00:: 02773862 1 0 -parameter%1:09:00:: 05859071 1 5 -parameter%1:09:03:: 05859277 4 0 -parameter%1:10:00:: 06356299 3 0 -parameter%1:11:00:: 07328305 2 2 -parametric%3:01:00:: 02911346 1 2 -parametric_quantity%1:09:00:: 05859071 1 0 -parametric_statistic%1:09:00:: 06023022 1 0 -parametritis%1:26:00:: 14352455 1 0 -paramilitary%1:14:00:: 08207209 1 0 -paramilitary%3:01:00:: 02764378 1 0 -paramilitary_force%1:14:00:: 08207209 1 0 -paramilitary_organisation%1:14:00:: 08207209 1 0 -paramilitary_organization%1:14:00:: 08207209 1 1 -paramilitary_unit%1:14:00:: 08207209 1 0 -paramnesia%1:09:00:: 05672698 1 0 -paramount%5:00:00:dominant:01 00792202 1 3 -paramount_issue%1:09:00:: 05815075 1 0 -paramountcy%1:26:00:: 14443228 1 0 -paramour%1:18:00:: 09952393 2 0 -paramour%1:18:01:: 10078333 1 0 -paramyxovirus%1:05:00:: 01337191 1 0 -parana%1:17:00:: 09384921 1 0 -parana_river%1:17:00:: 09384921 1 0 -paranasal%3:01:00:: 02774164 1 0 -paranasal_sinus%1:08:00:: 05253561 1 0 -parang%1:06:00:: 03889397 1 0 -paranoia%1:26:00:: 14398390 1 0 -paranoiac%1:18:00:: 10398370 1 1 -paranoic_type_schizophrenia%1:26:00:: 14399852 1 0 -paranoid%1:18:00:: 10398370 1 0 -paranoid%5:00:00:insane:00 02077157 1 2 -paranoid_schizophrenia%1:26:00:: 14399852 1 0 -paranormal%3:00:00:: 01599532 2 0 -paranormal%3:00:02:: 02108827 1 0 -paranthias%1:05:00:: 02569770 1 0 -paranthias_furcifer%1:05:00:: 02569905 1 0 -paranthropus%1:05:00:: 02477516 1 0 -paraparesis%1:26:00:: 14558700 1 0 -parapet%1:06:00:: 03889503 2 0 -parapet%1:06:01:: 03889626 1 0 -paraph%1:10:00:: 06890688 1 0 -paraphernalia%1:06:00:: 03430959 1 1 -paraphilia%1:04:00:: 00737705 1 0 -paraphrase%1:10:00:: 06429316 1 2 -paraphrase%2:32:00:: 00961736 1 1 -paraphrasis%1:10:00:: 06429316 1 0 -paraphrastic%5:00:00:altered:00 00353001 1 0 -paraphrenia%1:26:00:: 14399852 1 0 -paraphrenic_schizophrenia%1:26:00:: 14399852 1 0 -paraphysis%1:20:00:: 13092836 1 0 -paraplegia%1:26:00:: 14559495 1 0 -paraplegic%1:18:00:: 10398487 1 0 -paraplegic%5:00:00:ill:01 02546116 1 0 -parapodium%1:05:00:: 02465257 1 0 -parapraxis%1:04:00:: 00073828 1 0 -paraprofessional%1:18:00:: 10398624 1 0 -parapsychological%5:00:00:paranormal:00 01599782 1 0 -parapsychologist%1:18:00:: 10398806 1 0 -parapsychology%1:10:00:: 07256375 1 0 -paraquat%1:27:00:: 14974153 1 0 -paraquat_poisoning%1:26:00:: 14512088 1 0 -paraquet%1:05:00:: 01821203 1 0 -parasail%1:06:00:: 03889726 1 0 -parasailing%1:04:00:: 00304349 1 0 -parascalops%1:05:00:: 01890033 1 0 -parascalops_breweri%1:05:00:: 01890144 1 0 -parashurama%1:18:00:: 09531515 1 0 -parasitaemia%1:26:00:: 14167298 1 0 -parasitaxus%1:20:00:: 11657763 1 0 -parasitaxus_ustus%1:20:00:: 11657904 1 0 -parasite%1:05:00:: 01384687 1 4 -parasite%1:18:00:: 10252674 2 0 -parasite_yew%1:20:00:: 11657904 1 0 -parasitemia%1:26:00:: 14167298 1 0 -parasitic%3:01:00:: 02720484 2 0 -parasitic%3:01:01:: 02833692 1 0 -parasitic%5:00:00:dependent:00 00726723 3 0 -parasitic_jaeger%1:05:00:: 02044517 1 0 -parasitic_plant%1:20:00:: 13120446 1 0 -parasitic_worm%1:05:00:: 01922717 1 0 -parasitical%3:01:00:: 02833692 1 0 -parasitical%5:00:00:dependent:00 00726723 2 0 -parasitically%4:02:00:: 00023412 1 0 -parasiticidal%5:00:00:healthful:00 01165266 1 0 -parasitism%1:24:00:: 13842415 1 0 -parasol%1:06:00:: 03889871 1 0 -parasol_mushroom%1:20:00:: 13013764 1 0 -parasympathetic%1:08:00:: 05505679 1 0 -parasympathetic%3:01:00:: 03011248 1 9 -parasympathetic_nervous_system%1:08:00:: 05505679 1 0 -parasympathomimetic%3:01:00:: 03011380 1 0 -parathelypteris%1:20:00:: 13229747 1 0 -parathelypteris_novae-boracensis%1:20:00:: 13229951 1 0 -parathelypteris_simulata%1:20:00:: 13230190 1 0 -parathion%1:27:00:: 15012214 1 0 -parathion_poisoning%1:26:00:: 14512270 1 0 -parathormone%1:08:00:: 05411785 1 0 -parathyroid%1:08:00:: 05330365 1 0 -parathyroid_gland%1:08:00:: 05330365 1 0 -parathyroid_hormone%1:08:00:: 05411785 1 0 -paratrooper%1:18:00:: 10399019 1 0 -paratroops%1:14:00:: 08390374 1 0 -paratyphoid%1:26:00:: 14138538 1 0 -paratyphoid_fever%1:26:00:: 14138538 1 0 -paraumbilical_vein%1:08:00:: 05376050 1 0 -parazoa%1:05:00:: 01906328 1 0 -parazoan%1:05:00:: 01906749 1 0 -parboil%2:30:00:: 00322559 1 0 -parcae%1:18:00:: 09565334 1 0 -parcel%1:04:00:: 01085098 2 1 -parcel%1:06:00:: 03871083 1 1 -parcel%1:14:00:: 08008017 4 0 -parcel%1:15:00:: 08673395 3 0 -parcel%2:35:00:: 01283746 3 0 -parcel%2:35:01:: 01336334 2 0 -parcel%2:41:00:: 02469085 1 1 -parcel_bomb%1:06:00:: 03657918 1 0 -parcel_of_land%1:15:00:: 08673395 1 0 -parcel_out%2:40:00:: 02294436 1 0 -parcel_post%1:10:00:: 06265983 1 0 -parceled_out%5:00:00:distributed:00 00540236 1 0 -parceling%1:04:00:: 01083645 1 0 -parcellation%1:04:00:: 00386164 1 0 -parcelling%1:04:00:: 01083645 1 0 -parch%2:30:00:: 00218330 1 1 -parched%5:00:00:cooked:00 00618040 2 0 -parched%5:00:00:dry:01 02551946 1 1 -parcheesi%1:04:00:: 00505615 1 0 -parchesi%1:04:00:: 00505446 1 0 -parchisi%1:04:00:: 00505446 1 0 -parchment%1:27:00:: 14759003 2 0 -parchment%1:27:01:: 14975779 1 1 -pardner%1:18:00:: 09935434 1 2 -pardon%1:04:00:: 01227190 1 1 -pardon%1:04:01:: 01249315 3 0 -pardon%1:10:00:: 06552639 2 0 -pardon%2:32:00:: 00905399 2 2 -pardon%2:32:01:: 00905852 1 2 -pardonable%3:00:00:: 01721059 1 1 -pardonably%4:02:00:: 00333096 1 0 -pardoner%1:18:00:: 10399130 2 0 -pardoner%1:18:01:: 10399299 1 0 -pare%2:30:00:: 00233089 1 1 -pare%2:35:00:: 01262564 4 0 -pare%2:35:01:: 01552219 2 0 -pare%2:35:02:: 01262936 3 0 -pare_down%2:30:00:: 00233089 1 1 -paregmenon%1:10:00:: 07104912 1 0 -paregoric%1:06:00:: 03889974 1 0 -parenchyma%1:08:01:: 05268619 1 4 -parenchyma%1:20:02:: 13096317 2 0 -parent%1:03:00:: 00006150 2 0 -parent%1:18:00:: 10399491 1 35 -parent%2:41:00:: 02539788 1 0 -parentage%1:14:00:: 08101937 3 0 -parentage%1:24:00:: 13813765 2 0 -parentage%1:26:00:: 14425414 1 0 -parental%3:00:00:: 01722529 2 0 -parental%3:01:00:: 02884085 1 1 -parental_quality%1:07:00:: 04872826 1 0 -parentally%4:02:00:: 00417299 1 0 -parented%3:00:00:: 01733867 1 0 -parenteral%3:01:00:: 03096635 2 0 -parenteral%3:01:01:: 03096747 1 0 -parenterally%4:02:00:: 00417376 1 0 -parenthesis%1:10:00:: 06843393 1 1 -parenthesis%1:10:01:: 06600684 2 0 -parenthesis-free_notation%1:10:00:: 06814236 1 0 -parenthetic%5:00:00:incidental:00 01857527 1 0 -parenthetical%1:10:00:: 06315873 1 0 -parenthetical%5:00:00:incidental:00 01857527 1 0 -parenthetical_expression%1:10:00:: 06315873 1 0 -parenthetically%4:02:00:: 00417510 1 0 -parenthood%1:26:00:: 14425414 1 2 -parentless%3:00:00:: 01733982 1 0 -parer%1:06:00:: 03890093 2 0 -parer%1:18:00:: 10399895 1 0 -paresis%1:26:00:: 14558599 1 0 -paresthesia%1:26:00:: 14324795 1 0 -paretic%1:18:00:: 10400003 1 0 -pareto%1:18:00:: 11222457 1 0 -pareve%5:00:00:edible:00 00829243 1 0 -parfait%1:13:00:: 07616386 1 0 -parfait_glass%1:06:00:: 03890233 1 0 -parget%1:27:00:: 14977358 1 0 -parget%2:35:00:: 01361561 1 0 -pargeting%1:04:00:: 00718689 3 0 -pargeting%1:06:00:: 03890358 2 0 -pargeting%1:27:00:: 14977358 1 0 -pargetry%1:06:00:: 03890358 1 0 -pargetting%1:04:00:: 00718689 3 0 -pargetting%1:06:00:: 03890358 2 0 -pargetting%1:27:00:: 14977358 1 0 -parheliacal%3:01:00:: 02774269 1 0 -parhelic%3:01:00:: 02774269 1 0 -parhelic_circle%1:19:00:: 11487533 1 0 -parhelic_ring%1:19:00:: 11487533 1 0 -parhelion%1:19:00:: 11487732 1 0 -pari-mutuel_machine%1:06:00:: 03890514 1 0 -pari_passu%4:02:00:: 00257026 1 0 -pariah%1:18:00:: 10386312 1 0 -pariah_dog%1:05:00:: 02085118 1 0 -paridae%1:05:00:: 01591490 1 0 -paries%1:08:00:: 05604254 1 0 -parietal%3:01:00:: 02896222 1 0 -parietal_bone%1:08:00:: 05541645 1 0 -parietal_cortex%1:08:00:: 05494130 1 0 -parietal_gyrus%1:08:00:: 05489070 1 0 -parietal_lobe%1:08:00:: 05494130 1 0 -parietal_pericardium%1:08:00:: 05428794 1 0 -parietal_placentation%1:20:00:: 11682166 1 0 -parietal_pleura%1:08:00:: 05388311 1 0 -parietales%1:20:00:: 12359026 1 0 -parietaria%1:20:00:: 12394494 1 0 -parietaria_difussa%1:20:00:: 12394638 1 0 -parieto-occipital_fissure%1:08:00:: 05224358 1 0 -parieto-occipital_sulcus%1:08:00:: 05224358 1 0 -parietomastoid_suture%1:08:00:: 05544906 1 0 -parimutuel%1:04:00:: 00507162 1 2 -paring%1:13:00:: 07851054 2 0 -paring%1:17:00:: 09385137 1 0 -paring_knife%1:06:00:: 03890093 1 0 -paripinnate%5:00:00:compound:00 02172617 1 0 -paris%1:15:00:: 08932568 1 20 -paris%1:15:01:: 09145751 4 0 -paris%1:18:00:: 09500217 3 0 -paris%1:20:00:: 12469372 2 0 -paris_daisy%1:20:00:: 11925898 1 0 -paris_green%1:07:00:: 04968257 2 0 -paris_green%1:27:00:: 15012327 1 0 -paris_quadrifolia%1:20:00:: 12469517 1 0 -paris_university%1:06:00:: 03890713 1 0 -parish%1:14:00:: 08223688 1 3 -parish%1:15:00:: 08615001 2 0 -parishioner%1:18:00:: 10400108 1 1 -parisian%1:18:00:: 09708750 1 0 -parisian%3:01:00:: 03023449 1 2 -parisienne%1:18:00:: 09708889 1 0 -parisology%1:10:00:: 06604963 1 1 -parity%1:07:00:: 04748426 5 0 -parity%1:09:00:: 06105314 4 0 -parity%1:23:00:: 13625482 3 0 -parity%1:24:00:: 13790133 2 0 -parity%1:26:00:: 14047171 1 0 -parity_bit%1:23:00:: 13625482 1 0 -parity_check%1:09:00:: 05825942 1 0 -parjanya%1:18:00:: 09527454 1 0 -parji%1:10:00:: 06981920 1 0 -park%1:06:00:: 02782778 3 2 -park%1:06:01:: 03890881 6 0 -park%1:15:00:: 08615149 1 13 -park%1:15:01:: 08615374 2 5 -park%1:15:02:: 08615638 5 0 -park%1:18:00:: 11222655 4 0 -park%2:35:00:: 01493380 1 11 -park%2:38:00:: 01934427 2 3 -park_ave.%1:15:00:: 09122258 1 0 -park_avenue%1:15:00:: 09122258 1 0 -park_bench%1:06:00:: 03891251 1 0 -park_commissioner%1:18:00:: 10400205 1 0 -parka%1:06:00:: 03891051 1 0 -parka_squirrel%1:05:00:: 02359047 1 0 -parked%3:44:00:: 03151302 1 5 -parker%1:18:00:: 11222759 2 0 -parker%1:18:01:: 11222914 1 0 -parker_house_roll%1:13:00:: 07692114 1 0 -parkeriaceae%1:20:00:: 13171447 1 0 -parkersburg%1:15:00:: 09156889 1 0 -parkia%1:20:00:: 11763473 1 0 -parkia_javanica%1:20:00:: 11763874 1 0 -parking%1:04:00:: 00168505 2 2 -parking%1:23:00:: 13778671 1 2 -parking_area%1:15:00:: 08615638 1 2 -parking_brake%1:06:00:: 03483637 1 0 -parking_lot%1:15:00:: 08615638 1 6 -parking_meter%1:06:00:: 03891332 1 0 -parking_space%1:15:00:: 08615810 1 1 -parking_ticket%1:10:00:: 06559004 1 0 -parking_zone%1:15:00:: 08615810 1 0 -parkinson%1:18:00:: 11223119 2 0 -parkinson%1:18:01:: 11223294 1 0 -parkinson's%1:26:00:: 14094350 1 0 -parkinson's_disease%1:26:00:: 14094350 1 1 -parkinson's_law%1:10:01:: 06767287 2 0 -parkinson's_law%1:10:02:: 06767512 1 0 -parkinson's_syndrome%1:26:00:: 14094350 1 0 -parkinsonia%1:20:00:: 12497492 1 0 -parkinsonia_aculeata%1:20:00:: 12497669 1 0 -parkinsonia_florida%1:20:00:: 12498055 1 0 -parkinsonism%1:26:00:: 14094350 1 0 -parkland%1:15:00:: 08615149 1 0 -parks%1:18:00:: 11223396 1 0 -parkway%1:06:00:: 03242713 1 0 -parky%5:00:00:cold:01 01252566 1 0 -parlance%1:10:00:: 07081177 1 1 -parlay%1:04:00:: 00507271 1 0 -parlay%2:33:00:: 01139623 1 1 -parley%1:10:00:: 07141437 1 0 -parley%2:32:00:: 00763009 1 0 -parliament%1:04:00:: 00492497 2 0 -parliament%1:14:00:: 08319198 1 2 -parliamentarian%1:18:00:: 10400309 2 0 -parliamentarian%1:18:01:: 10400437 1 0 -parliamentary%3:01:00:: 02774411 1 2 -parliamentary%5:00:00:democratic:00 00715830 2 1 -parliamentary%5:00:02:democratic:00 00716056 3 0 -parliamentary_agent%1:18:00:: 10400618 1 0 -parliamentary_democracy%1:14:00:: 08363711 1 0 -parliamentary_law%1:10:00:: 06652878 1 0 -parliamentary_monarchy%1:14:00:: 08364044 1 0 -parliamentary_procedure%1:10:00:: 06652878 1 0 -parlor%1:06:00:: 03891538 1 8 -parlor%1:06:01:: 03679712 2 1 -parlor_car%1:06:00:: 03891664 1 0 -parlor_game%1:04:00:: 00501722 1 0 -parlor_grand%1:06:00:: 02766792 1 0 -parlor_grand_piano%1:06:00:: 02766792 1 0 -parlormaid%1:18:00:: 10400826 1 0 -parlour%1:06:00:: 03891538 1 0 -parlour%1:06:01:: 03679712 2 0 -parlour_car%1:06:00:: 03891664 1 0 -parlour_game%1:04:00:: 00501722 1 0 -parlour_grand%1:06:00:: 02766792 1 0 -parlour_grand_piano%1:06:00:: 02766792 1 0 -parlourmaid%1:18:00:: 10400826 1 0 -parlous%5:00:00:dangerous:00 02060496 1 0 -parmelia%1:20:00:: 12991645 1 0 -parmeliaceae%1:20:00:: 12991488 1 0 -parmenides%1:18:00:: 11223642 1 0 -parmesan%1:13:00:: 07854348 1 0 -parnahiba%1:17:00:: 09385416 1 0 -parnaiba%1:17:00:: 09385416 1 0 -parnassia%1:20:00:: 12801520 1 0 -parnassia_fimbriata%1:20:00:: 12801966 1 0 -parnassia_palustris%1:20:00:: 12801781 1 0 -parnassus%1:17:00:: 09385586 1 0 -parnell%1:18:00:: 11223929 1 0 -parochetus%1:20:00:: 12555720 1 0 -parochetus_communis%1:20:00:: 12555859 1 0 -parochial%3:01:00:: 02871695 1 2 -parochial%5:00:00:provincial:00 00637267 2 0 -parochial_school%1:14:00:: 08284221 1 0 -parochialism%1:09:00:: 06205698 1 0 -parochially%4:02:00:: 00417671 1 0 -parodist%1:18:00:: 10400998 1 0 -parody%1:04:00:: 00549610 2 0 -parody%1:10:00:: 06780309 1 2 -parody%2:32:00:: 00849939 2 0 -parody%2:36:00:: 01723963 1 1 -paroicous%5:00:00:monoecious:00 01543502 1 0 -parol_evidence_rule%1:10:00:: 06654639 1 0 -parole%1:04:00:: 01257701 3 0 -parole%1:10:00:: 07227301 1 0 -parole%1:10:01:: 06674188 2 0 -parole%2:41:00:: 02591893 1 0 -parolee%1:18:00:: 10477585 1 0 -paronomasia%1:10:00:: 06781581 1 0 -paronychia%1:20:00:: 11813309 2 0 -paronychia%1:26:00:: 14178794 1 0 -parophrys%1:05:00:: 02664511 1 0 -parophrys_vitulus%1:05:00:: 02664642 1 0 -paroquet%1:05:00:: 01821203 1 0 -parosamia%1:26:00:: 14059021 1 0 -parotid%3:01:00:: 02774705 1 0 -parotid_gland%1:08:00:: 05533212 1 0 -parotid_vein%1:08:00:: 05376219 1 0 -parotitis%1:26:00:: 14352570 1 0 -parous%3:01:00:: 02774585 1 0 -parousia%1:11:00:: 07322550 1 0 -paroxetime%1:06:00:: 03891851 1 0 -paroxysm%1:26:00:: 14082788 1 1 -paroxysmal%3:01:00:: 02774804 1 0 -paroxysmal_trepidant_abasia%1:26:00:: 14549709 1 0 -paroxytone%1:10:00:: 06301672 1 0 -parquet%1:06:00:: 03892035 2 0 -parquet%1:06:01:: 03892178 1 0 -parquet_circle%1:06:00:: 03892273 1 0 -parquet_floor%1:06:00:: 03892178 1 0 -parqueterie%1:06:00:: 03892425 1 0 -parquetry%1:06:00:: 03892425 1 0 -parr%1:05:00:: 02535080 2 0 -parr%1:05:02:: 02513727 3 0 -parr%1:18:00:: 11224046 1 0 -parrakeet%1:05:00:: 01821203 1 0 -parricide%1:04:00:: 00221596 2 0 -parricide%1:18:00:: 10401204 1 0 -parrish%1:18:00:: 11224173 1 0 -parroket%1:05:00:: 01821203 1 0 -parroquet%1:05:00:: 01821203 1 0 -parrot%1:05:00:: 01816887 1 1 -parrot%1:18:00:: 10401331 2 0 -parrot%2:32:00:: 00958174 1 1 -parrot's_beak%1:20:00:: 12517077 1 0 -parrot's_bill%1:20:00:: 12517077 1 0 -parrot_disease%1:26:00:: 14274975 1 0 -parrot_fever%1:26:00:: 14149773 1 0 -parrotfish%1:05:00:: 02610664 1 0 -parrotia%1:20:00:: 12317164 1 0 -parrotiopsis%1:20:00:: 12317611 1 0 -parrotlike%5:00:00:imitative:00 01217134 1 1 -parry%1:04:00:: 00135504 2 0 -parry%1:04:01:: 01174495 1 0 -parry%2:32:00:: 00809654 2 0 -parry%2:33:00:: 01147060 1 1 -parry's_penstemon%1:20:00:: 12887532 1 0 -parry's_pinyon%1:20:00:: 11610823 1 0 -parry_manzanita%1:20:00:: 12232280 1 0 -pars_anterior%1:08:00:: 05484573 1 0 -pars_distilis%1:08:00:: 05484573 1 0 -pars_intermedia%1:08:00:: 05484711 1 0 -pars_nervosa%1:08:00:: 05484862 1 0 -parse%2:31:00:: 00643910 1 0 -parsec%1:23:00:: 13657489 1 0 -parsee%1:18:00:: 10401468 1 0 -parseeism%1:09:00:: 06244445 1 0 -parser%1:10:00:: 06577369 1 0 -parsi%1:18:00:: 10401468 1 0 -parsiism%1:09:00:: 06244445 1 0 -parsimonious%5:00:00:stingy:00 01114116 1 0 -parsimoniousness%1:07:00:: 04893525 1 0 -parsimoniousness%1:07:01:: 04833687 2 0 -parsimony%1:07:00:: 04893525 1 0 -parsimony%1:07:01:: 04833687 2 0 -parsley%1:13:00:: 07819896 2 0 -parsley%1:20:00:: 12942395 1 0 -parsley-leaved_thorn%1:20:00:: 12626674 1 0 -parsley_haw%1:20:00:: 12626674 1 0 -parsnip%1:13:00:: 07735404 3 0 -parsnip%1:20:00:: 12941536 2 0 -parsnip%1:20:02:: 12941914 1 0 -parson%1:18:00:: 09983572 1 2 -parson's_nose%1:13:00:: 07649463 1 0 -parsonage%1:06:00:: 03892557 1 1 -parsons%1:18:00:: 11224309 1 0 -parsons_table%1:06:00:: 03892728 1 0 -part%1:04:01:: 00720565 6 13 -part%1:04:03:: 00787465 12 2 -part%1:06:00:: 03892891 2 24 -part%1:08:01:: 05256358 10 3 -part%1:09:00:: 05867413 9 7 -part%1:09:01:: 05929008 7 9 -part%1:09:02:: 05671974 4 19 -part%1:10:00:: 07030718 11 2 -part%1:15:00:: 08630039 5 15 -part%1:17:00:: 09385911 3 19 -part%1:21:00:: 13285176 8 8 -part%1:24:00:: 13809207 1 113 -part%2:35:00:: 01557774 4 0 -part%2:35:01:: 01556921 5 0 -part%2:38:00:: 02014165 3 0 -part%2:38:02:: 02030158 1 4 -part%2:41:00:: 02431320 2 1 -part%4:02:00:: 00007703 1 11 -part-of-speech_tagger%1:10:00:: 06577916 1 0 -part-owner%1:18:00:: 10402603 1 0 -part-singing%1:04:00:: 01255452 1 0 -part-time%3:00:00:: 01089369 1 21 -part-time%4:02:00:: 00252740 1 0 -part-timer%1:18:00:: 10402709 1 0 -part_music%1:10:00:: 07030976 1 0 -part_name%1:10:00:: 06293746 1 0 -part_of_speech%1:10:00:: 06317464 1 1 -part_to_whole_relation%1:24:00:: 13808708 1 0 -part_with%2:40:00:: 02345647 1 0 -partake%2:34:13:: 01172701 3 0 -partake%2:40:00:: 02295208 2 0 -partake%2:42:00:: 02736660 1 1 -partake_in%2:40:00:: 02295208 2 0 -partake_in%2:41:00:: 02450417 1 0 -partaker%1:18:00:: 10401639 1 0 -parted%5:00:00:compound:00 02173371 1 1 -parted_leaf%1:20:00:: 13161754 1 0 -parterre%1:06:00:: 03892273 2 0 -parterre%1:06:01:: 03893603 1 0 -parthenium%1:20:00:: 12000609 1 0 -parthenium_argentatum%1:20:00:: 12000851 1 0 -parthenium_hysterophorus%1:20:00:: 12001077 1 0 -parthenium_integrifolium%1:20:00:: 12001294 1 0 -parthenocarpy%1:22:00:: 13532356 1 0 -parthenocissus%1:20:00:: 13148019 1 0 -parthenocissus_quinquefolia%1:20:00:: 13148384 1 0 -parthenocissus_tricuspidata%1:20:00:: 13148208 1 0 -parthenogenesis%1:22:00:: 13532501 2 0 -parthenogenesis%1:22:01:: 13532747 1 0 -parthenogenetic%5:00:00:asexual:00 02136158 1 0 -parthenogeny%1:22:00:: 13532501 2 0 -parthenogeny%1:22:01:: 13532747 1 0 -parthenon%1:06:00:: 03893732 1 1 -parthenote%1:08:00:: 05432623 1 0 -parthia%1:15:00:: 08978821 1 0 -parthian%1:10:00:: 06975007 2 0 -parthian%1:18:00:: 09726374 1 0 -parthian%3:01:00:: 03096931 1 0 -parti-color%2:30:00:: 00284669 1 0 -parti_pris%1:09:00:: 05949937 1 0 -partial%1:09:00:: 06015053 1 0 -partial%1:09:01:: 05720093 2 0 -partial%3:00:01:: 01722965 2 1 -partial%5:00:00:inclined:02 01292683 3 0 -partial%5:00:00:incomplete:00 00524693 1 5 -partial_abortion%1:04:00:: 00230997 1 0 -partial_breach%1:04:00:: 00070807 1 0 -partial_correlation%1:09:00:: 06031866 1 0 -partial_denture%1:06:00:: 03893935 1 0 -partial_derivative%1:09:00:: 06015053 1 0 -partial_differential_equation%1:10:00:: 06670866 1 0 -partial_eclipse%1:11:00:: 07369344 1 0 -partial_tone%1:09:00:: 05720093 1 0 -partial_veil%1:20:00:: 13095013 1 0 -partial_verdict%1:04:00:: 01193362 1 0 -partiality%1:09:00:: 06201136 2 0 -partiality%1:12:00:: 07497797 1 0 -partially%4:02:00:: 00007703 1 7 -partialness%1:26:00:: 14462064 1 0 -partible%5:00:00:divisible:00 00785555 1 0 -participant%1:18:00:: 10401829 1 1 -participant%1:18:01:: 10439851 2 0 -participant_role%1:10:00:: 06331803 1 0 -participate%2:33:00:: 01082606 2 1 -participate%2:41:00:: 02450256 1 28 -participating%5:00:00:involved:00 01515280 1 0 -participation%1:04:00:: 01239064 1 13 -participation%1:26:00:: 13924659 2 0 -participation_financing%1:21:00:: 13399570 1 0 -participation_loan%1:21:00:: 13399570 1 2 -participatory%5:00:00:democratic:00 00716211 1 0 -participial%1:10:00:: 06330528 1 0 -participial%3:01:00:: 03097103 1 0 -participle%1:10:00:: 06330528 1 0 -particle%1:10:00:: 06326406 3 1 -particle%1:17:00:: 09386422 2 18 -particle%1:27:01:: 14585519 1 33 -particle_accelerator%1:06:00:: 02670382 1 0 -particle_beam%1:19:00:: 11485907 1 0 -particle_board%1:06:00:: 03331390 1 0 -particle_detector%1:06:00:: 03894051 1 0 -particle_physics%1:09:00:: 06101551 1 0 -particolored%5:00:00:colored:00 00398978 1 0 -particolored_buckeye%1:20:00:: 12769318 1 0 -particoloured%5:00:00:colored:00 00398978 1 0 -particular%1:09:00:: 05818182 1 7 -particular%1:10:00:: 06751142 3 0 -particular%1:24:00:: 13809920 2 0 -particular%5:00:00:careful:00 00311044 6 0 -particular%5:00:00:fastidious:00 00984624 5 0 -particular%5:00:00:primary:00 01853228 4 0 -particular%5:00:00:specific:00 01104026 1 24 -particular%5:00:00:uncommon:00 00488187 3 6 -particular%5:00:02:specific:00 01104460 2 13 -particular_baptist%1:14:00:: 08090329 1 0 -particular_date%1:28:00:: 15179888 1 0 -particular_proposition%1:10:00:: 06751142 1 0 -particularisation%1:10:00:: 07202812 1 0 -particularise%2:32:00:: 01021973 1 0 -particularised%5:00:00:specific:00 01104709 1 0 -particularism%1:09:00:: 05705075 1 0 -particularistic%3:01:00:: 02860719 1 1 -particularity%1:07:00:: 04762633 1 0 -particularization%1:10:00:: 07202812 1 0 -particularize%2:32:00:: 01021973 1 0 -particularized%5:00:00:specific:00 01104709 1 0 -particularly%4:02:00:: 00084223 1 61 -particularly%4:02:01:: 00248488 3 0 -particularly%4:02:02:: 00248765 2 0 -particulate%1:27:00:: 14839439 1 0 -particulate%3:00:00:: 01724368 1 3 -particulate_matter%1:27:00:: 14839439 1 0 -particulate_radiation%1:19:00:: 11499510 1 0 -parting%1:04:00:: 00053097 1 2 -parting%1:08:00:: 05256358 2 0 -partisan%1:06:00:: 03894217 3 0 -partisan%1:18:00:: 10402086 1 0 -partisan%1:18:01:: 10059582 2 0 -partisan%3:00:00:: 00730731 1 0 -partisanship%1:09:00:: 06201136 1 0 -partita%1:10:00:: 07047165 2 0 -partita%1:10:01:: 07047275 1 0 -partition%1:04:00:: 00397953 4 0 -partition%1:06:00:: 03894379 1 2 -partition%1:08:00:: 05222790 3 0 -partition%1:23:00:: 13627114 2 0 -partition%2:30:00:: 00332835 2 0 -partition%2:35:00:: 01563724 1 0 -partition_off%2:35:00:: 01563724 1 0 -partitioning%1:04:00:: 00397953 2 0 -partitioning%1:09:00:: 05781800 1 0 -partitionist%1:18:00:: 10402285 1 0 -partitive%1:10:00:: 06301792 1 0 -partitive%3:01:00:: 03097289 2 0 -partitive%3:01:02:: 03097502 1 0 -partitive%5:00:00:disjunctive:00 00565289 3 0 -partiya_karkeran_kurdistan%1:14:00:: 08029908 1 0 -partizan%1:06:00:: 03894217 2 0 -partizan%1:18:00:: 10059582 1 0 -partizan%3:00:00:: 00730731 1 0 -partly%4:02:00:: 00007703 1 19 -partner%1:18:00:: 09935434 2 7 -partner%1:18:01:: 10640620 1 8 -partner%1:18:02:: 10402417 3 0 -partner%2:40:00:: 02332086 1 1 -partner%2:41:00:: 02371684 2 0 -partner_in_crime%1:18:00:: 09953483 1 0 -partner_off%2:41:00:: 02490430 1 0 -partner_relation%1:24:00:: 13839888 1 0 -partnership%1:10:00:: 06526291 3 0 -partnership%1:14:00:: 08060694 1 5 -partnership%1:24:00:: 13781348 2 0 -partnership_certificate%1:21:00:: 13419032 1 0 -partridge%1:05:01:: 01807496 3 0 -partridge%1:05:02:: 01804478 4 0 -partridge%1:05:03:: 01797886 5 0 -partridge%1:05:04:: 01810268 2 0 -partridge%1:13:00:: 07647496 1 0 -partridge_pea%1:20:00:: 12494358 1 0 -partridgeberry%1:20:00:: 12668517 1 0 -parts%1:15:00:: 08615926 1 2 -parts_bin%1:06:00:: 03894677 1 0 -parts_catalog%1:10:00:: 06488629 1 0 -parts_catalogue%1:10:00:: 06488629 1 0 -parts_department%1:14:00:: 08118849 1 0 -parts_inventory%1:10:00:: 06492569 1 0 -partsong%1:10:00:: 07052799 1 0 -parttime%3:00:00:: 01089369 1 0 -parturiency%1:26:00:: 14048441 1 0 -parturient%3:01:00:: 02860919 1 0 -parturient%5:00:00:nascent:00 00003829 2 0 -parturition%1:22:00:: 13532886 1 0 -party%1:11:00:: 07447641 4 6 -party%1:14:00:: 08252602 2 14 -party%1:14:01:: 08256968 1 29 -party%1:14:02:: 08264897 3 12 -party%1:18:00:: 10402824 5 1 -party%2:41:00:: 02491851 1 0 -party-spirited%5:00:00:partisan:00 00730896 1 0 -party_boss%1:18:00:: 10403162 1 0 -party_favor%1:06:00:: 03894762 1 0 -party_favour%1:06:00:: 03894762 1 0 -party_game%1:04:00:: 00458800 1 1 -party_girl%1:18:00:: 10403366 1 0 -party_line%1:06:00:: 03894933 2 0 -party_line%1:10:00:: 06660816 1 0 -party_liner%1:18:00:: 10403633 1 0 -party_man%1:18:00:: 10403633 1 0 -party_of_democratic_kampuchea%1:14:00:: 08028999 1 0 -party_of_god%1:14:00:: 08023374 1 0 -party_pooper%1:18:00:: 10638136 1 0 -party_spirit%1:04:00:: 01207521 1 0 -party_to_the_action%1:14:00:: 08265469 1 0 -party_to_the_transaction%1:14:00:: 08265469 1 0 -party_wall%1:06:00:: 03895038 1 0 -party_whip%1:18:00:: 10776766 1 0 -partygoer%1:18:00:: 10403490 1 0 -parula%1:05:00:: 01567530 1 0 -parula_americana%1:05:00:: 01567678 1 0 -parula_warbler%1:05:00:: 01567678 1 0 -parulidae%1:05:00:: 01566888 1 0 -parus%1:05:00:: 01591910 1 0 -parus_atricapillus%1:05:00:: 01592257 1 0 -parus_bicolor%1:05:00:: 01592387 1 0 -parus_caeruleus%1:05:00:: 01592694 1 0 -parus_carolinensis%1:05:00:: 01592540 1 0 -parvati%1:18:00:: 09527560 1 0 -parve%5:00:00:edible:00 00829243 1 0 -parvenu%1:18:00:: 10740868 1 0 -parvenu%5:00:00:new:00 01642379 2 0 -parvenu%5:00:00:pretentious:00 01850862 1 0 -parvenue%5:00:00:new:00 01642379 2 0 -parvenue%5:00:00:pretentious:00 01850862 1 0 -parvis%1:06:00:: 03895170 1 0 -parvo%1:05:00:: 01341183 1 0 -parvovirus%1:05:00:: 01341183 1 0 -pas%1:04:00:: 00286112 1 0 -pas_de_calais%1:17:00:: 09447450 1 0 -pas_de_deux%1:04:00:: 00529224 1 0 -pas_de_quatre%1:04:00:: 00529511 1 0 -pas_de_trois%1:04:00:: 00529400 1 0 -pas_seul%1:04:00:: 00529101 1 0 -pasadena%1:15:00:: 09064594 1 0 -pasang%1:05:01:: 02417663 2 0 -pasang%1:05:02:: 02428349 1 0 -pascal%1:10:00:: 06903115 3 0 -pascal%1:18:00:: 11224419 2 0 -pascal%1:23:00:: 13711303 1 0 -pascal's_law%1:09:00:: 05886613 1 0 -pascal's_law_of_fluid_pressures%1:09:00:: 05886613 1 0 -pascal_celery%1:13:00:: 07730562 1 0 -pascal_compiler%1:10:00:: 06574231 1 0 -pasch%1:28:00:: 15191401 2 0 -pasch%1:28:01:: 15191494 1 0 -pascha%1:28:00:: 15191401 2 0 -pascha%1:28:01:: 15191494 1 0 -paschal%3:01:00:: 02774923 1 0 -paschal_celery%1:13:00:: 07730562 1 0 -paschal_lamb%1:10:00:: 06883274 1 0 -paseo%1:06:00:: 04544979 1 0 -pasha%1:18:00:: 10403768 1 0 -pashto%1:10:00:: 06975132 1 0 -pashtoon%1:18:00:: 09689739 1 0 -pashtu%1:10:00:: 06975132 1 0 -pashtun%1:14:00:: 08484648 2 0 -pashtun%1:18:00:: 09689739 1 0 -pasigraphy%1:10:00:: 06897627 1 0 -pasiphae%1:18:00:: 09568643 1 0 -paso_doble%1:04:00:: 00536872 1 1 -paso_doble%1:10:00:: 07056265 2 0 -paspalum%1:20:00:: 12128071 1 0 -paspalum_dilatatum%1:20:00:: 12128071 1 0 -paspalum_distichum%1:20:00:: 12128490 1 0 -paspalum_notatum%1:20:00:: 12128306 1 0 -pasque_flower%1:20:00:: 11737534 1 0 -pasqueflower%1:20:00:: 11737534 1 0 -pasquinade%1:10:00:: 06780309 1 0 -pass%1:04:00:: 00105820 15 0 -pass%1:04:01:: 00787061 14 0 -pass%1:04:02:: 00560529 3 2 -pass%1:04:04:: 00127286 1 6 -pass%1:04:05:: 00065575 16 0 -pass%1:04:06:: 00304592 7 1 -pass%1:10:00:: 06690226 12 0 -pass%1:10:01:: 06691083 5 1 -pass%1:10:02:: 07176499 11 0 -pass%1:10:03:: 06690408 6 1 -pass%1:10:04:: 06519369 13 0 -pass%1:11:00:: 07418822 9 0 -pass%1:11:01:: 07341860 10 0 -pass%1:17:00:: 09386842 4 1 -pass%1:26:00:: 13936939 8 0 -pass%1:28:00:: 15139552 2 3 -pass%2:29:00:: 00072989 25 0 -pass%2:30:00:: 00339934 8 7 -pass%2:30:01:: 00421691 13 3 -pass%2:30:11:: 00358431 24 0 -pass%2:32:00:: 00803325 23 0 -pass%2:32:01:: 00742320 12 3 -pass%2:35:00:: 01212230 11 3 -pass%2:38:00:: 02050132 1 32 -pass%2:38:01:: 02049696 7 8 -pass%2:38:02:: 01972131 19 1 -pass%2:38:03:: 02072849 4 17 -pass%2:38:04:: 02052476 22 0 -pass%2:38:05:: 02051694 2 31 -pass%2:40:00:: 02230772 5 13 -pass%2:40:01:: 02231473 20 0 -pass%2:40:02:: 02221635 18 1 -pass%2:40:13:: 02229550 21 0 -pass%2:41:02:: 02466670 3 29 -pass%2:41:04:: 02523351 9 4 -pass%2:41:07:: 02523953 16 1 -pass%2:41:08:: 02525044 14 2 -pass%2:41:11:: 02423513 17 1 -pass%2:42:00:: 02708420 10 3 -pass%2:42:04:: 02669081 15 1 -pass%2:42:08:: 02685951 6 8 -pass%3:00:00:: 01241927 1 0 -pass-through%1:06:00:: 03897130 1 0 -pass_across%2:38:00:: 01915365 1 0 -pass_along%2:32:00:: 00742320 1 0 -pass_around%2:32:00:: 00968211 2 0 -pass_around%2:38:00:: 02043190 1 0 -pass_away%2:30:00:: 00358431 1 3 -pass_away%2:30:01:: 00351576 2 1 -pass_by%2:38:00:: 02051694 1 6 -pass_catcher%1:18:00:: 10510818 1 0 -pass_completion%1:04:00:: 00557419 1 0 -pass_judgment%2:31:00:: 00670261 1 0 -pass_off%2:29:00:: 00105333 6 0 -pass_off%2:30:00:: 00339934 5 0 -pass_off%2:30:01:: 00421691 4 0 -pass_off%2:32:00:: 00801522 2 1 -pass_off%2:38:00:: 02052965 3 0 -pass_off%2:39:00:: 02134492 1 1 -pass_on%2:32:00:: 00742320 7 0 -pass_on%2:38:00:: 02043190 6 0 -pass_on%2:38:01:: 01992503 3 2 -pass_on%2:40:00:: 02230247 4 1 -pass_on%2:40:01:: 02230772 1 4 -pass_on%2:40:03:: 02296153 2 3 -pass_on%2:41:00:: 02589013 5 0 -pass_out%2:29:00:: 00023646 1 1 -pass_out%2:29:01:: 00023868 3 0 -pass_out%2:40:00:: 02201644 2 0 -pass_over%2:31:00:: 00616498 1 2 -pass_over%2:35:00:: 01392237 5 0 -pass_over%2:38:01:: 01912159 3 1 -pass_over%2:38:02:: 01915365 2 1 -pass_over%2:38:03:: 01840092 4 1 -pass_receiver%1:18:00:: 10510818 1 0 -pass_through%2:38:00:: 01915365 1 18 -pass_through%2:38:01:: 01913363 3 1 -pass_through%2:38:02:: 02053190 2 14 -pass_up%2:39:00:: 02119353 2 0 -pass_up%2:40:00:: 02237338 1 1 -pass_water%2:29:00:: 00072012 1 1 -pass_with_flying_colors%2:41:00:: 02522581 1 0 -passable%3:00:00:: 01724551 1 0 -passable%5:00:00:satisfactory:00 02080937 2 0 -passably%4:02:00:: 00035718 1 0 -passado%1:04:00:: 01174251 1 0 -passage%1:04:00:: 00309115 5 3 -passage%1:04:01:: 01126856 4 3 -passage%1:04:02:: 00318035 10 0 -passage%1:04:04:: 00201058 1 6 -passage%1:04:05:: 00865600 8 1 -passage%1:06:00:: 03895293 3 4 -passage%1:08:00:: 05248181 7 1 -passage%1:10:00:: 06400271 2 5 -passage%1:10:01:: 07044917 6 2 -passage%1:11:00:: 07310642 9 0 -passageway%1:06:00:: 03895585 1 2 -passageway%1:08:00:: 05248181 2 1 -passamaquody%1:18:00:: 09664908 1 0 -passant%5:00:00:erect:00 01236842 1 0 -passbook%1:21:00:: 13414159 1 0 -passbook_savings_account%1:21:00:: 13364821 1 0 -passe%5:00:00:unfashionable:00 00974159 1 0 -passe-partout%1:06:00:: 03896984 1 0 -passe-partout%1:06:01:: 03896526 2 0 -passed_ball%1:04:00:: 00108665 1 0 -passee%5:00:00:unfashionable:00 00974159 1 0 -passel%1:23:00:: 13774404 1 0 -passementerie%1:06:00:: 04484160 1 0 -passenger%1:18:00:: 10403876 1 4 -passenger_car%1:06:00:: 03895866 1 0 -passenger_pigeon%1:05:00:: 01815270 1 0 -passenger_ship%1:06:00:: 03896103 1 0 -passenger_train%1:06:00:: 03896233 1 0 -passenger_van%1:06:00:: 03896419 1 0 -passenger_vehicle%1:06:00:: 02924116 1 0 -passer%1:05:00:: 01539772 5 0 -passer%1:18:00:: 10404242 4 0 -passer%1:18:01:: 10404672 1 0 -passer%1:18:02:: 10404426 3 0 -passer%1:18:03:: 10404550 2 0 -passer-by%1:18:00:: 10404672 1 0 -passer_domesticus%1:05:00:: 01539925 1 0 -passer_montanus%1:05:00:: 01540090 1 0 -passerby%1:18:00:: 10404672 1 3 -passeres%1:05:00:: 01524885 1 0 -passeridae%1:05:00:: 01539377 1 0 -passeriform_bird%1:05:00:: 01524359 1 0 -passeriformes%1:05:00:: 01523908 1 0 -passerina%1:05:00:: 01537360 1 0 -passerina_cyanea%1:05:00:: 01537544 1 0 -passerine%1:05:00:: 01524359 1 0 -passerine%3:01:00:: 02775029 1 0 -passero%1:04:00:: 01290162 1 0 -passero_cape%1:15:00:: 08811653 1 0 -passiflora%1:20:00:: 12383256 1 0 -passiflora_edulis%1:20:00:: 12383737 1 0 -passiflora_foetida%1:20:00:: 12384839 1 0 -passiflora_incarnata%1:20:00:: 12384227 1 0 -passiflora_laurifolia%1:20:00:: 12384375 1 0 -passiflora_ligularis%1:20:00:: 12383894 1 0 -passiflora_maliformis%1:20:00:: 12384680 1 0 -passiflora_mollissima%1:20:00:: 12384569 1 0 -passiflora_quadrangularis%1:20:00:: 12384037 1 0 -passifloraceae%1:20:00:: 12383073 1 0 -passim%4:02:00:: 00257106 1 0 -passing%1:04:00:: 00340192 6 0 -passing%1:04:02:: 00065575 7 0 -passing%1:04:03:: 00560529 1 7 -passing%1:04:05:: 00865600 5 0 -passing%1:11:00:: 07333649 2 1 -passing%1:11:01:: 07310642 3 0 -passing%1:11:02:: 07292577 4 0 -passing%3:00:00:: 01241927 2 0 -passing%4:02:00:: 00046299 1 0 -passing%5:00:00:careless:00 00312234 4 0 -passing%5:00:00:impermanent:00 01756292 1 2 -passing%5:00:00:satisfactory:00 02081933 3 0 -passing_comment%1:10:00:: 06766092 1 0 -passing_game%1:04:00:: 00560529 1 0 -passing_note%1:10:00:: 06870437 1 0 -passing_play%1:04:00:: 00560529 1 0 -passing_shot%1:04:00:: 00569608 1 0 -passing_tone%1:10:00:: 06870437 1 0 -passing_water%1:22:00:: 13506727 1 0 -passion%1:07:00:: 04628192 2 3 -passion%1:09:00:: 05813229 6 1 -passion%1:12:00:: 07480896 1 4 -passion%1:12:02:: 07488788 5 1 -passion%1:16:00:: 09181557 4 1 -passion%1:26:01:: 14039179 3 1 -passion%1:26:02:: 14325220 7 0 -passion_fruit%1:13:00:: 07753743 1 0 -passion_of_christ%1:26:00:: 14325220 1 0 -passion_play%1:10:00:: 07018724 1 0 -passion_sunday%1:28:00:: 15191739 1 0 -passion_week%1:28:00:: 15181444 1 0 -passionate%3:00:00:: 01725712 1 7 -passionately%4:02:00:: 00209874 1 2 -passionately%4:02:01:: 00034945 2 0 -passionateness%1:12:00:: 07480896 1 0 -passionflower%1:20:00:: 12383402 1 0 -passionflower_family%1:20:00:: 12383073 1 0 -passionflower_vine%1:20:00:: 12383402 1 0 -passionless%3:00:00:: 01727439 1 0 -passionless%5:00:00:cold:02 01257990 2 0 -passive%1:24:00:: 13803431 1 0 -passive%3:00:01:: 00039592 1 5 -passive%3:00:02:: 00042228 3 0 -passive%5:00:00:nonviolent:00 02513101 2 1 -passive_air_defense%1:04:00:: 00960546 1 0 -passive_immunity%1:26:00:: 14527721 1 0 -passive_matrix_display%1:06:00:: 03896628 1 0 -passive_resistance%1:04:00:: 01242716 1 0 -passive_resister%1:18:00:: 10362195 1 0 -passive_source%1:18:00:: 10404810 1 0 -passive_transport%1:22:00:: 13533186 1 0 -passive_trust%1:21:00:: 13361333 1 0 -passive_voice%1:24:00:: 13803431 1 0 -passively%4:02:00:: 00079748 1 2 -passiveness%1:07:00:: 04636397 2 0 -passiveness%1:07:01:: 04907020 1 0 -passivism%1:09:00:: 05965586 1 0 -passivity%1:07:00:: 04636397 1 1 -passivity%1:07:01:: 04907020 2 0 -passkey%1:06:00:: 03896984 1 0 -passover%1:28:00:: 15195928 1 0 -passover_supper%1:04:00:: 01035667 1 0 -passport%1:07:00:: 04673668 3 0 -passport%1:10:00:: 06500937 2 0 -passport%1:10:01:: 06691083 1 0 -password%1:10:00:: 06674188 1 0 -past%1:10:00:: 06330262 3 1 -past%1:28:00:: 15120823 1 42 -past%1:28:01:: 15141693 2 5 -past%3:00:00:: 01727926 1 29 -past%4:02:00:: 00417787 1 15 -past%5:00:00:outgoing:00 01296091 2 4 -past_master%1:18:00:: 10405107 2 0 -past_master%1:18:01:: 10405229 1 0 -past_participle%1:10:00:: 06331154 1 0 -past_perfect%1:24:00:: 13806735 1 0 -past_perfect_tense%1:24:00:: 13806735 1 0 -past_progressive%1:24:00:: 13806964 1 0 -past_progressive_tense%1:24:00:: 13806964 1 0 -past_tense%1:10:00:: 06330262 1 0 -past_times%1:28:00:: 15120823 1 0 -pasta%1:13:00:: 07698915 2 0 -pasta%1:13:01:: 07863374 1 0 -pasta_salad%1:13:00:: 07807710 1 0 -pasta_sauce%1:13:00:: 07838233 1 0 -paste%1:13:01:: 07856270 4 0 -paste%1:27:00:: 14704966 3 0 -paste%1:27:01:: 14705287 1 6 -paste%1:27:02:: 14882248 2 0 -paste%2:35:00:: 01412644 2 0 -paste%2:35:01:: 01332205 1 5 -paste%2:35:02:: 01332599 3 0 -paste-up%1:06:00:: 03897334 1 0 -pasteboard%1:27:00:: 14801271 1 0 -pasted%5:00:00:affixed:00 00159106 1 4 -pastel%1:07:00:: 04974575 1 1 -pastel%5:00:00:delicate:00 00707087 1 1 -pastel%5:00:00:light:05 00409207 2 1 -pastel-colored%5:00:00:colored:00 00400013 1 0 -pastelike%5:00:00:colorless:02 00406140 1 1 -paster%1:10:00:: 07272545 2 0 -paster%1:18:00:: 10404998 1 0 -pastern%1:05:00:: 02462066 1 0 -pasternak%1:18:00:: 11224654 1 0 -pasteur%1:18:00:: 11224877 1 0 -pasteurellosis%1:26:00:: 14263280 1 0 -pasteurian%3:01:00:: 03036191 1 0 -pasteurisation%1:04:00:: 00254166 1 0 -pasteurise%2:30:00:: 00364629 1 0 -pasteurised%3:44:00:: 03151423 1 0 -pasteurization%1:04:00:: 00254166 1 0 -pasteurize%2:30:00:: 00364629 1 0 -pasteurized%3:44:00:: 03151423 1 0 -pasteurized_milk%1:13:00:: 07845166 1 0 -pastiche%1:06:00:: 03897520 2 0 -pastiche%1:10:00:: 07047505 1 0 -pastil%1:13:00:: 07607967 1 0 -pastille%1:13:00:: 07607967 1 0 -pastime%1:04:00:: 00431552 1 1 -pastinaca%1:20:00:: 12941360 1 0 -pastinaca_sativa%1:20:00:: 12941536 1 0 -pastis%1:13:00:: 07910538 1 0 -pastness%1:07:00:: 05049656 1 0 -pasto%1:15:00:: 09175322 1 0 -pastor%1:05:00:: 01577265 2 0 -pastor%1:18:00:: 09983572 1 9 -pastor_roseus%1:05:00:: 01577458 1 0 -pastor_sturnus%1:05:00:: 01577458 1 0 -pastoral%1:10:00:: 07043824 1 0 -pastoral%1:10:01:: 06377275 3 0 -pastoral%1:10:02:: 06625850 2 0 -pastoral%3:01:00:: 02860564 1 1 -pastoral%3:01:02:: 02895044 2 0 -pastoral%5:00:00:rural:00 02051179 3 0 -pastorale%1:10:00:: 07043824 1 0 -pastorate%1:04:00:: 00595785 2 0 -pastorate%1:14:00:: 08113634 1 0 -pastorship%1:04:00:: 00595785 1 0 -pastrami%1:13:00:: 07664379 1 0 -pastry%1:13:00:: 07622708 2 0 -pastry%1:13:02:: 07623136 1 0 -pastry_cart%1:06:00:: 03897634 1 0 -pastry_cook%1:18:00:: 10405320 1 0 -pastry_dough%1:13:00:: 07623136 1 0 -pasturage%1:13:00:: 07801091 2 0 -pasturage%1:20:00:: 12104501 1 0 -pasture%1:13:00:: 07801091 2 1 -pasture%1:15:00:: 08616050 1 4 -pasture%2:35:00:: 01576165 2 0 -pasture%2:35:10:: 01576478 1 0 -pasture_brake%1:20:00:: 13189844 1 0 -pastureland%1:15:00:: 08616050 1 0 -pasty%1:06:00:: 03897759 2 0 -pasty%1:13:00:: 07872170 1 0 -pasty%5:00:00:adhesive:00 00053691 2 1 -pasty%5:00:00:colorless:02 00406140 1 1 -pat%1:04:00:: 00125436 2 0 -pat%1:11:00:: 07388987 1 0 -pat%2:35:00:: 01233027 2 2 -pat%2:35:01:: 01243661 1 11 -pat%4:02:00:: 00009859 1 0 -pat%5:00:00:appropriate:00 00135342 2 0 -pat%5:00:00:plausible:00 01799781 1 0 -pataca%1:23:00:: 13690445 1 0 -patagonia%1:15:00:: 08711468 1 0 -patagonian_desert%1:15:00:: 09171984 1 0 -patas%1:05:00:: 02486261 1 0 -patavium%1:15:00:: 08813156 1 0 -patch%1:06:00:: 03897943 3 2 -patch%1:06:01:: 03745285 7 0 -patch%1:06:02:: 03309356 8 0 -patch%1:06:03:: 04408871 6 0 -patch%1:06:04:: 02785648 9 0 -patch%1:07:00:: 04682462 1 7 -patch%1:10:00:: 06573223 5 0 -patch%1:15:00:: 08674739 2 3 -patch%1:28:00:: 15246353 4 0 -patch%2:30:00:: 00262703 3 0 -patch%2:30:01:: 00261705 4 0 -patch%2:35:00:: 01590171 1 2 -patch%2:40:00:: 02357693 2 1 -patch_pocket%1:06:00:: 03898395 1 0 -patch_test%1:09:00:: 05745486 1 0 -patch_up%2:30:00:: 00262703 1 1 -patch_up%2:32:00:: 00764902 2 0 -patchboard%1:06:00:: 04373264 1 0 -patchcord%1:06:00:: 03898129 1 0 -patched%5:00:00:old:01 01640356 1 1 -patched%5:00:00:patterned:00 01789481 2 0 -patchily%4:02:00:: 00417884 1 0 -patchiness%1:07:00:: 04772844 1 0 -patching%1:04:00:: 00267349 1 0 -patchouli%1:06:00:: 03898271 2 0 -patchouli%1:20:00:: 12862828 1 0 -patchouly%1:06:00:: 03898271 2 0 -patchouly%1:20:00:: 12862828 1 0 -patchwork%1:06:00:: 03898500 3 0 -patchwork%1:06:01:: 03898633 2 0 -patchwork%1:09:00:: 05953416 1 1 -patchwork_quilt%1:06:00:: 03898633 1 0 -patchy%5:00:00:uneven:00 00912814 1 0 -pate%1:08:00:: 05539595 2 0 -pate%1:13:00:: 07857959 1 0 -pate_a_choux%1:13:00:: 07628181 1 0 -pate_de_foie_gras%1:13:00:: 07858197 1 0 -pate_feuillete%1:13:00:: 07627931 1 0 -patella%1:05:00:: 01948917 2 0 -patella%1:08:00:: 05278395 1 0 -patella_vulgata%1:05:00:: 01949085 1 0 -patellar%3:01:00:: 02861072 1 0 -patellar_reflex%1:04:00:: 00864859 1 0 -patellidae%1:05:00:: 01948788 1 0 -patelliform%5:00:00:concave:00 00536792 1 0 -patency%1:07:00:: 05084067 1 0 -patency%1:07:01:: 04706290 2 0 -patent%1:10:00:: 06551627 2 0 -patent%1:10:01:: 06501141 1 5 -patent%2:30:00:: 00568483 3 0 -patent%2:40:00:: 02239692 1 1 -patent%2:41:00:: 02445356 2 0 -patent%5:00:00:obvious:00 01618376 2 0 -patent%5:00:00:unobstructed:00 01622748 1 0 -patent_and_trademark_office_database%1:14:00:: 08349681 1 0 -patent_application%1:10:00:: 06513255 1 0 -patent_ductus_arteriosus%1:08:00:: 05418432 1 0 -patent_infringement%1:04:00:: 00771604 1 0 -patent_law%1:09:00:: 06162528 1 0 -patent_leather%1:27:00:: 14763329 1 1 -patent_log%1:06:00:: 03898787 1 0 -patent_medicine%1:06:00:: 03898936 1 1 -patent_of_invention%1:10:00:: 06501141 1 0 -patent_office%1:14:00:: 08349681 1 0 -patent_right%1:07:00:: 05188646 1 1 -patent_system%1:09:00:: 05903878 1 0 -patented%5:00:00:proprietary:00 01110686 1 0 -patentee%1:18:00:: 10405410 1 0 -patently%4:02:00:: 00039318 1 0 -pater%1:18:00:: 10405540 1 0 -paterfamilias%1:18:00:: 10406765 1 0 -paternal%3:00:00:: 01734436 2 0 -paternal%3:00:04:: 01722529 3 0 -paternal%3:01:00:: 02759604 1 0 -paternal%5:00:00:related:01 01971671 4 0 -paternal_quality%1:07:00:: 04873305 1 0 -paternalism%1:09:00:: 06196071 1 0 -paternalistic%5:00:00:paternal:00 01734772 1 1 -paternally%4:02:00:: 00417947 1 1 -paternity%1:04:00:: 00240754 3 0 -paternity%1:24:00:: 13813898 2 0 -paternity%1:26:00:: 14578792 1 0 -paternity_suit%1:04:00:: 01183798 1 0 -paternity_test%1:09:00:: 05743496 1 0 -paternoster%1:06:00:: 03899100 2 0 -paternoster%1:10:00:: 06457796 1 0 -paterson%1:15:00:: 09114020 2 0 -paterson%1:18:00:: 11225165 1 0 -path%1:04:00:: 00415676 1 10 -path%1:06:00:: 03899328 2 8 -path%1:15:00:: 08616311 3 3 -path%1:17:00:: 09387222 4 0 -path_of_least_resistance%1:04:00:: 00416737 1 0 -pathan%1:14:00:: 08484648 2 0 -pathan%1:18:00:: 09689739 1 0 -pathetic%5:00:00:contemptible:00 00905181 2 1 -pathetic%5:00:00:undignified:00 00752847 3 0 -pathetic%5:00:00:unfortunate:00 01050890 1 1 -pathetic_fallacy%1:09:00:: 05894631 1 0 -pathetically%4:02:01:: 00418077 2 0 -pathetically%4:02:02:: 00418223 1 0 -pathfinder%1:18:00:: 10562749 1 0 -pathless%5:00:00:inaccessible:00 00020241 1 1 -pathogen%1:05:00:: 01386007 1 0 -pathogenesis%1:22:00:: 13533349 1 1 -pathogenic%5:00:00:unhealthful:00 01168434 1 2 -pathogenically%4:02:00:: 00023875 1 0 -pathologic%3:01:00:: 02861206 2 0 -pathologic%5:00:00:unhealthy:00 01176246 1 1 -pathologic_process%1:22:00:: 13533470 1 0 -pathological%3:01:00:: 02861206 1 5 -pathological%5:00:00:neurotic:00 01585491 2 1 -pathological%5:00:00:unhealthy:00 01176246 3 0 -pathological_process%1:22:00:: 13533470 1 0 -pathological_state%1:26:00:: 14051917 1 0 -pathologically%4:02:00:: 00132673 1 0 -pathologist%1:18:00:: 10011074 1 2 -pathology%1:09:00:: 06060845 1 2 -pathology%1:26:00:: 14204950 2 0 -pathos%1:07:00:: 05211254 1 1 -pathos%1:10:00:: 07072337 3 0 -pathos%1:12:00:: 07553964 2 0 -pathway%1:06:00:: 03899533 2 1 -pathway%1:08:00:: 05475878 1 2 -patience%1:04:01:: 00495524 2 0 -patience%1:07:00:: 04640538 1 9 -patient%1:10:00:: 06332136 2 0 -patient%1:18:00:: 10405694 1 73 -patient%3:00:00:: 01735736 1 3 -patient_of%5:00:00:patient:00 01736883 1 0 -patient_role%1:10:00:: 06332136 1 0 -patiently%4:02:00:: 00173644 1 3 -patina%1:06:00:: 03899612 1 1 -patinate%2:35:00:: 01265499 1 0 -patinise%2:35:00:: 01265499 1 0 -patinize%2:35:00:: 01265499 1 0 -patio%1:06:00:: 03899768 1 0 -patisserie%1:06:00:: 03899933 1 0 -patka%1:06:00:: 03900028 1 0 -patness%1:07:00:: 04718826 1 0 -patois%1:10:00:: 07156219 2 0 -patois%1:10:01:: 07157273 1 0 -paton%1:18:00:: 11225350 1 0 -patrai%1:15:00:: 08788588 1 0 -patras%1:15:00:: 08788588 1 0 -patrial%1:18:00:: 10406072 1 0 -patriarch%1:18:01:: 10406765 2 0 -patriarch%1:18:02:: 10406391 3 0 -patriarch%1:18:03:: 10406905 1 0 -patriarch%1:18:04:: 10406266 4 0 -patriarchal%3:00:00:: 01737825 1 1 -patriarchal%3:01:00:: 02759765 2 0 -patriarchal_cross%1:06:00:: 03900104 1 0 -patriarchate%1:14:00:: 07972674 2 0 -patriarchate%1:15:00:: 08617873 1 0 -patriarchic%5:00:00:patriarchal:00 01738100 1 0 -patriarchy%1:14:00:: 07972674 1 0 -patricentric%5:00:00:patriarchal:00 01738252 1 0 -patrician%1:18:00:: 09807754 2 0 -patrician%1:18:01:: 10407105 1 0 -patrician%5:00:00:noble:02 01590484 2 0 -patrician%5:00:00:refined:01 01948848 1 0 -patricide%1:04:00:: 00221900 2 0 -patricide%1:18:00:: 10407221 1 0 -patrick%1:18:00:: 11225469 1 0 -patrick_henry%1:18:00:: 11040381 1 0 -patrick_victor_martindale_white%1:18:00:: 11384159 1 0 -patrick_white%1:18:00:: 11384159 1 0 -patrikin%1:18:00:: 10236663 1 0 -patrilineage%1:24:00:: 13814898 1 0 -patrilineal%5:00:00:lineal:00 01416959 1 0 -patrilineal_kin%1:18:00:: 10236663 1 0 -patrilineal_sib%1:18:00:: 10236663 1 0 -patrilineally%4:02:00:: 00391897 1 0 -patrilinear%5:00:00:lineal:00 01416959 1 0 -patrimonial%5:00:00:inheritable:00 01314197 1 0 -patrimony%1:21:01:: 13263920 2 0 -patrimony%1:21:02:: 13271631 1 0 -patriot%1:18:00:: 10407310 1 2 -patriot's_day%1:28:00:: 15188852 1 0 -patrioteer%1:18:00:: 09911849 1 0 -patriotic%3:00:00:: 01740207 1 4 -patriotically%4:02:00:: 00418392 1 0 -patriotism%1:07:00:: 04878101 1 3 -patrisib%1:18:00:: 10236663 1 0 -patristic%3:01:00:: 03020463 1 2 -patristical%3:01:00:: 03020463 1 0 -patristics%1:09:00:: 06185302 2 0 -patristics%1:10:00:: 06364004 1 0 -patroclus%1:18:00:: 09500398 1 0 -patrol%1:04:00:: 00824808 2 1 -patrol%1:14:00:: 08216176 1 10 -patrol%1:14:01:: 08329113 3 0 -patrol%2:41:00:: 02454939 1 5 -patrol_boat%1:06:00:: 03900194 1 0 -patrol_car%1:06:00:: 03141065 1 0 -patrol_ship%1:06:00:: 03900194 1 0 -patrol_wagon%1:06:00:: 03977966 1 0 -patroller%1:18:00:: 10407552 1 1 -patrolman%1:18:00:: 10095664 1 3 -patrology%1:09:00:: 06185302 2 0 -patrology%1:10:00:: 06364004 1 0 -patron%1:18:00:: 10407726 1 4 -patron%1:18:01:: 10407954 3 0 -patron%1:18:02:: 10408324 2 0 -patron_saint%1:18:00:: 10408552 1 2 -patronage%1:04:00:: 01213886 1 3 -patronage%1:04:01:: 01153861 4 0 -patronage%1:04:02:: 01096454 5 0 -patronage%1:10:00:: 06719404 3 0 -patronage%1:14:00:: 08401554 2 0 -patronage%2:32:00:: 00908621 2 0 -patronage%2:34:00:: 01185011 1 0 -patroness%1:18:00:: 10408438 1 0 -patronise%2:32:00:: 00908621 4 0 -patronise%2:32:01:: 00908977 3 0 -patronise%2:40:00:: 02219940 2 0 -patronise%2:41:00:: 02466134 1 0 -patronised%3:00:00:: 01738746 1 0 -patronising%5:00:00:superior:01 02338917 1 0 -patronisingly%4:02:00:: 00292133 1 0 -patronize%2:32:00:: 00908621 4 0 -patronize%2:32:01:: 00908977 3 1 -patronize%2:40:00:: 02219940 1 2 -patronize%2:41:00:: 02466134 2 1 -patronized%3:00:00:: 01738746 1 0 -patronizing%5:00:00:superior:01 02338917 1 2 -patronizingly%4:02:00:: 00292133 1 0 -patronless%3:00:00:: 01738895 1 0 -patronne%1:18:00:: 10408438 1 4 -patronym%1:10:00:: 06335832 1 0 -patronymic%1:10:00:: 06335832 1 0 -patronymic%3:01:00:: 03097689 1 0 -patsy%1:18:00:: 09921409 1 0 -patten%1:06:00:: 03047690 1 0 -patter%1:10:00:: 07013400 1 2 -patter%1:11:00:: 07389170 2 0 -patter%2:39:00:: 02185187 2 0 -patter%2:43:00:: 02757828 1 0 -pattern%1:04:00:: 00410247 2 22 -pattern%1:06:00:: 03178782 3 9 -pattern%1:09:00:: 05930736 1 28 -pattern%1:09:01:: 05938795 5 1 -pattern%1:09:02:: 05902327 6 1 -pattern%1:09:03:: 05667613 4 8 -pattern%1:10:00:: 07005270 8 0 -pattern%1:15:00:: 08492747 7 0 -pattern%2:36:00:: 01743784 1 4 -pattern%2:42:00:: 02712243 2 0 -pattern-bomb%2:33:00:: 01133194 1 0 -patterned%3:00:00:: 01786133 1 0 -patterned_advance%1:14:00:: 08458912 1 0 -patternmaker%1:18:00:: 10408809 1 0 -patty%1:13:01:: 07599468 3 0 -patty%1:13:02:: 07627310 2 0 -patty%1:13:03:: 07663899 1 0 -patty-pan%1:06:00:: 03900301 1 0 -patty_shell%1:13:00:: 07627223 1 0 -pattypan_squash%1:13:00:: 07716750 2 0 -pattypan_squash%1:20:00:: 12160125 1 0 -patwin%1:10:00:: 06924376 2 0 -patwin%1:18:00:: 09665075 1 0 -patzer%1:18:00:: 10408939 1 0 -paucity%1:07:01:: 05117140 1 1 -paul%1:18:00:: 11225661 2 0 -paul%1:18:01:: 11226614 1 0 -paul_adrien_maurice_dirac%1:18:00:: 10936894 1 0 -paul_bunyan%1:18:00:: 09591155 1 0 -paul_bustill_robeson%1:18:00:: 11264973 1 0 -paul_cezanne%1:18:00:: 10889316 1 0 -paul_dukas%1:18:00:: 10944593 1 0 -paul_ehrlich%1:18:00:: 10953605 1 0 -paul_gauguin%1:18:00:: 10992528 1 0 -paul_hermann_muller%1:18:00:: 11196046 1 0 -paul_heyse%1:18:00:: 11048879 1 0 -paul_hindemith%1:18:00:: 11050870 1 0 -paul_iii%1:18:00:: 11226126 1 0 -paul_johann_ludwig_von_heyse%1:18:00:: 11048879 1 0 -paul_johannes_tillich%1:18:00:: 11342618 1 0 -paul_john_flory%1:18:00:: 10973873 1 0 -paul_joseph_goebbels%1:18:00:: 11003724 1 0 -paul_klee%1:18:00:: 11106830 1 0 -paul_leonard_newman%1:18:00:: 11205246 1 0 -paul_ludwig_von_beneckendorff_und_von_hindenburg%1:18:00:: 11051070 1 0 -paul_mccartney%1:18:00:: 11167952 1 0 -paul_newman%1:18:00:: 11205246 1 0 -paul_revere%1:18:00:: 11258501 1 0 -paul_robeson%1:18:00:: 11264973 1 0 -paul_simon%1:18:00:: 11301279 1 0 -paul_the_apostle%1:18:00:: 11225661 1 0 -paul_tillich%1:18:00:: 11342618 1 0 -paul_verlaine%1:18:00:: 11363164 1 0 -paul_vernier%1:18:00:: 11363657 1 0 -paul_vi%1:18:00:: 11226427 1 0 -paul_von_hindenburg%1:18:00:: 11051070 1 0 -pauli%1:18:00:: 11226713 1 0 -pauli_exclusion_principle%1:09:00:: 05886939 1 0 -pauline%3:01:00:: 02775318 1 0 -pauling%1:18:00:: 11226933 1 0 -paulo_afonso%1:17:00:: 09387624 1 0 -paulo_afonso_falls%1:17:00:: 09387624 1 0 -paumotu_archipelago%1:15:00:: 08990522 1 0 -paunch%1:08:00:: 05555917 1 0 -paunchiness%1:07:00:: 04999964 1 0 -paunchy%5:00:00:fat:01 00986457 1 0 -pauper%1:18:00:: 10409011 1 0 -pauperisation%1:04:00:: 01150467 1 0 -pauperise%2:40:00:: 02317970 1 0 -pauperism%1:26:00:: 14493716 1 0 -pauperization%1:04:00:: 01150467 2 0 -pauperization%1:26:00:: 14493716 1 0 -pauperize%2:40:00:: 02317970 1 0 -pauropoda%1:05:00:: 01783205 1 0 -pause%1:04:00:: 01062817 2 3 -pause%1:28:00:: 15271008 1 12 -pause%2:32:01:: 00779061 2 12 -pause%2:42:00:: 02641035 1 23 -pavage%1:04:00:: 00717081 2 0 -pavage%1:21:00:: 13315518 1 0 -pavan%1:04:00:: 00526948 2 0 -pavan%1:10:00:: 07056406 1 0 -pavane%1:04:00:: 00526948 2 0 -pavane%1:10:00:: 07056406 1 0 -pavarotti%1:18:00:: 11227101 1 0 -pave%1:06:00:: 03900393 1 0 -pave%2:35:00:: 01267098 1 0 -paved%3:00:00:: 01739693 1 3 -paved_surface%1:06:00:: 03900509 1 0 -pavement%1:06:00:: 03900750 1 2 -pavement%1:06:01:: 04215402 3 1 -pavement%1:27:00:: 14977504 2 1 -pavement_artist%1:18:00:: 10409161 1 0 -pavilion%1:06:00:: 03900979 1 0 -paving%1:04:00:: 00717081 3 0 -paving%1:06:00:: 03900750 2 0 -paving%1:27:00:: 14977504 1 0 -paving_machine%1:06:00:: 03901229 1 0 -paving_material%1:27:00:: 14977504 1 0 -paving_stone%1:06:00:: 03901074 1 1 -pavior%1:06:00:: 03901229 1 0 -paviour%1:06:00:: 03901229 1 0 -pavis%1:06:00:: 03901338 1 0 -pavise%1:06:00:: 03901338 1 0 -pavlov%1:18:00:: 11227206 1 0 -pavlova%1:13:00:: 07612137 2 0 -pavlova%1:18:00:: 11227400 1 0 -pavlovian%3:01:00:: 03036316 1 0 -pavo%1:05:00:: 01805692 2 0 -pavo%1:17:00:: 09387764 1 0 -pavo_cristatus%1:05:00:: 01806364 1 0 -pavo_muticus%1:05:00:: 01806467 1 0 -pavonia%1:20:00:: 12184912 1 0 -pavor_nocturnus%1:26:00:: 14025258 1 0 -paw%1:05:00:: 02439929 1 2 -paw%1:08:01:: 05564590 2 0 -paw%2:35:00:: 01211098 2 1 -paw%2:35:01:: 01211455 1 1 -pawer%1:18:00:: 10409322 1 0 -pawky%5:00:00:artful:00 00149686 1 0 -pawl%1:06:00:: 03901548 1 0 -pawn%1:04:00:: 01111236 4 0 -pawn%1:06:00:: 03901750 3 0 -pawn%1:18:00:: 10209616 2 0 -pawn%1:21:00:: 13350875 1 0 -pawn%2:40:00:: 02347220 1 0 -pawn_ticket%1:21:00:: 13414443 1 0 -pawnbroker%1:18:00:: 10409459 1 0 -pawnbroker's_shop%1:06:00:: 03901974 1 0 -pawnee%1:10:00:: 06915927 2 0 -pawnee%1:18:00:: 09665218 1 0 -pawnshop%1:06:00:: 03901974 1 0 -pawpaw%1:13:00:: 07762114 3 0 -pawpaw%1:20:01:: 11695599 2 0 -pawpaw%1:20:02:: 12373100 1 0 -pax%1:10:00:: 06631140 1 0 -pax_romana%1:26:00:: 14540318 1 0 -paxil%1:06:00:: 03891851 1 0 -paxto%1:10:00:: 06975132 1 0 -paxton%1:18:00:: 11227499 1 0 -pay%1:21:01:: 13279262 1 14 -pay%2:31:00:: 00732224 6 4 -pay%2:31:03:: 00737884 9 1 -pay%2:32:00:: 01060494 2 26 -pay%2:40:00:: 02251743 1 138 -pay%2:40:01:: 02291708 4 6 -pay%2:40:02:: 02253456 5 6 -pay%2:40:04:: 02252931 3 12 -pay%2:40:13:: 02344243 10 0 -pay%2:40:14:: 02253154 11 0 -pay%2:41:00:: 02488056 8 1 -pay%2:42:00:: 02732292 7 3 -pay-phone%1:06:00:: 03902125 1 0 -pay-station%1:06:00:: 03902125 1 0 -pay_as_you_earn%1:21:00:: 13311573 1 0 -pay_back%2:33:00:: 01153947 2 0 -pay_back%2:40:00:: 02344381 1 0 -pay_cash%2:40:00:: 02317548 1 0 -pay_claim%1:10:00:: 07192845 1 0 -pay_cut%1:04:00:: 00352683 1 1 -pay_dirt%1:26:00:: 14475273 2 0 -pay_dirt%1:27:00:: 14977741 1 0 -pay_envelope%1:21:00:: 13280658 1 0 -pay_for%2:41:00:: 02384940 1 0 -pay_heed%2:39:00:: 02170427 1 0 -pay_off%2:33:00:: 01153947 6 0 -pay_off%2:40:00:: 02352019 2 2 -pay_off%2:40:01:: 02284803 5 0 -pay_off%2:40:02:: 02292004 1 4 -pay_off%2:40:03:: 02256853 3 2 -pay_off%2:40:04:: 02253456 4 1 -pay_out%2:40:00:: 02301502 1 3 -pay_packet%1:21:00:: 13280658 1 0 -pay_rate%1:21:00:: 13281476 1 1 -pay_up%2:40:00:: 02252931 1 0 -payable%1:26:00:: 14490801 1 0 -payable%5:00:00:due:00 00136884 1 2 -payables%1:21:00:: 13330168 1 0 -payback%1:04:00:: 01235463 2 0 -payback%1:21:00:: 13296460 1 0 -paycheck%1:21:00:: 13382975 1 0 -payday%1:28:00:: 15172782 1 2 -paye%1:21:00:: 13311573 1 0 -payee%1:18:00:: 10409634 1 0 -payena%1:20:00:: 12775225 1 0 -payer%1:18:00:: 10409752 1 0 -paygrade%1:26:00:: 14431471 1 0 -paying%5:00:00:paid:00 01708663 2 0 -paying%5:00:00:profitable:00 01871473 1 0 -paying_attention%1:09:00:: 05702726 1 0 -paying_attention%3:00:00:: 01194483 1 0 -paying_back%1:04:00:: 01234729 1 0 -payload%1:06:00:: 02964389 2 0 -payload%1:06:01:: 04551375 1 0 -paymaster%1:18:00:: 10410035 1 0 -payment%1:04:00:: 01120448 2 23 -payment%1:04:01:: 01235137 3 0 -payment%1:21:00:: 13278375 1 32 -payment_rate%1:21:00:: 13281770 1 0 -payne's_gray%1:27:00:: 14923207 1 1 -payne's_grey%1:27:00:: 14923207 1 0 -paynim%1:18:00:: 10166626 1 0 -payoff%1:11:00:: 07295629 4 0 -payoff%1:21:00:: 13299357 1 0 -payoff%1:21:01:: 13284562 2 0 -payoff%1:21:02:: 13260190 3 0 -payola%1:21:00:: 13284973 1 0 -payroll%1:14:00:: 08120079 3 0 -payroll%1:21:00:: 13412721 1 1 -payroll%1:21:02:: 13412877 2 0 -payroll_check%1:21:00:: 13382975 1 0 -payroll_department%1:14:00:: 08120079 1 0 -pays_de_la_loire%1:15:00:: 08943926 1 0 -paysheet%1:21:00:: 13412721 2 0 -paysheet%1:21:02:: 13412877 1 0 -payslip%1:21:00:: 13412131 1 0 -pb%1:23:00:: 13630213 4 0 -pb%1:23:01:: 13630387 3 0 -pb%1:23:02:: 13630545 2 0 -pb%1:27:00:: 14643467 1 0 -pbit%1:23:00:: 13630545 1 0 -pbs%1:27:00:: 14786361 1 10 -pc%1:06:00:: 03918480 1 0 -pc_board%1:06:00:: 03902220 1 0 -pcp%1:06:00:: 03921499 2 0 -pcp%1:18:00:: 10165109 1 0 -pct%1:24:00:: 13817526 1 0 -pd%1:27:00:: 14648754 1 0 -pda%1:06:00:: 03918737 1 0 -pdflp%1:14:00:: 08019523 1 0 -pdl%1:23:00:: 13647997 1 0 -pe%1:10:00:: 06838437 1 0 -pe-tsai%1:20:00:: 11878808 1 0 -pea%1:13:00:: 07725376 1 3 -pea%1:20:00:: 12560016 3 0 -pea%1:20:02:: 12560282 2 0 -pea-chick%1:05:00:: 01806061 1 0 -pea-green%5:00:00:chromatic:00 00379495 1 0 -pea-souper%1:19:00:: 11490934 1 0 -pea_bean%1:13:00:: 07727140 1 0 -pea_crab%1:05:00:: 01980655 1 0 -pea_family%1:20:00:: 11746776 1 0 -pea_flour%1:13:00:: 07568625 1 0 -pea_green%1:07:00:: 04968257 1 0 -pea_jacket%1:06:00:: 03902756 1 0 -pea_plant%1:20:00:: 12560016 1 0 -pea_pod%1:20:00:: 13140242 1 0 -pea_shooter%1:06:00:: 03902972 1 0 -pea_soup%1:13:00:: 07586604 1 2 -pea_soup%1:19:00:: 11490934 2 0 -pea_tree%1:20:00:: 12511856 1 0 -pea_weevil%1:05:00:: 02182355 1 0 -peabody%1:18:00:: 11227618 1 0 -peace%1:10:00:: 06773976 5 0 -peace%1:12:00:: 07515790 3 6 -peace%1:26:00:: 13970236 1 13 -peace%1:26:01:: 13969700 2 6 -peace%1:26:02:: 14539524 4 1 -peace-loving%5:00:00:peaceful:00 01742119 1 1 -peace_advocacy%1:09:00:: 06221659 1 0 -peace_corps%1:14:00:: 08195636 1 0 -peace_garden_state%1:15:00:: 09129442 1 0 -peace_initiative%1:04:00:: 00243813 1 0 -peace_lily%1:20:00:: 11792341 1 0 -peace_march%1:04:00:: 01178728 1 0 -peace_of_mind%1:12:00:: 07515790 1 1 -peace_of_westphalia%1:10:00:: 06774192 1 0 -peace_offering%1:10:00:: 07167186 1 0 -peace_officer%1:18:00:: 10249459 1 1 -peace_pipe%1:06:00:: 02941408 1 0 -peace_process%1:22:00:: 13533704 1 0 -peace_treaty%1:10:00:: 06773976 1 0 -peaceable%3:00:00:: 01740892 2 0 -peaceable%5:00:01:peaceful:00 01741669 3 0 -peaceable%5:00:02:peaceful:00 01742119 1 2 -peaceableness%1:26:00:: 13970584 1 0 -peaceably%4:02:00:: 00418712 1 0 -peaceful%3:00:00:: 01740892 1 5 -peaceful%5:00:00:nonviolent:00 02513101 2 0 -peacefully%4:02:00:: 00109817 1 2 -peacefulness%1:12:00:: 07515790 2 0 -peacefulness%1:26:02:: 13970584 1 0 -peacekeeper%1:06:00:: 03902381 3 0 -peacekeeper%1:18:00:: 10410125 2 0 -peacekeeper%1:18:01:: 10410246 1 0 -peacekeeping%1:04:00:: 00980904 1 0 -peacekeeping%3:01:00:: 02775417 1 0 -peacekeeping_mission%1:04:00:: 00980904 1 0 -peacekeeping_operation%1:04:00:: 00980904 1 0 -peacemaker%1:06:00:: 02907656 2 0 -peacemaker%1:18:00:: 09952163 1 0 -peacenik%1:18:00:: 10028123 1 0 -peacetime%1:28:00:: 15293227 1 0 -peach%1:07:00:: 04971675 4 0 -peach%1:13:00:: 07751004 3 0 -peach%1:18:00:: 10613996 2 0 -peach%1:20:00:: 12648045 1 0 -peach%2:32:00:: 00937208 1 0 -peach-colored%5:00:00:colored:00 00400101 1 0 -peach-leaved_willow%1:20:00:: 12727729 1 0 -peach-wood%1:20:00:: 12489268 1 0 -peach_bell%1:20:00:: 12038585 1 0 -peach_bells%1:20:00:: 12038585 1 0 -peach_blight%1:26:00:: 14218401 1 0 -peach_ice_cream%1:13:00:: 07615190 1 0 -peach_melba%1:13:00:: 07612273 1 0 -peach_orchard%1:06:00:: 03902482 1 0 -peach_pit%1:20:00:: 11690088 1 0 -peach_sauce%1:13:00:: 07832202 1 0 -peach_state%1:15:00:: 09075842 1 0 -peach_tree%1:20:00:: 12648045 1 0 -peachick%1:05:00:: 01806061 1 0 -peachleaf_willow%1:20:00:: 12727729 1 0 -peachwood%1:20:00:: 12489268 1 0 -peachy%5:00:00:chromatic:00 00379267 2 0 -peachy%5:00:00:good:01 01123879 1 0 -peachy-colored%5:00:00:chromatic:00 00379267 1 0 -peachy-coloured%5:00:00:chromatic:00 00379267 1 0 -peacoat%1:06:00:: 03902756 1 0 -peacock%1:05:01:: 01806143 2 2 -peacock%1:05:02:: 02279257 1 2 -peacock-blue%5:00:00:chromatic:00 00379413 1 0 -peacock-throne%1:06:00:: 03902564 1 0 -peacock_blue%1:07:00:: 04969798 1 0 -peacock_butterfly%1:05:00:: 02279257 1 0 -peacock_flower%1:20:00:: 12494794 1 0 -peacock_flower_fence%1:20:00:: 11758799 1 0 -peacock_ore%1:27:00:: 14669242 1 0 -peafowl%1:05:00:: 01805801 1 0 -peag%1:06:00:: 04549407 1 0 -peahen%1:05:00:: 01806297 1 0 -peak%1:06:00:: 02838728 7 0 -peak%1:15:00:: 08617963 4 2 -peak%1:15:01:: 08677801 6 0 -peak%1:23:00:: 13653902 1 3 -peak%1:25:01:: 13902482 5 0 -peak%1:26:00:: 13940456 3 2 -peak%1:28:00:: 15295045 2 2 -peak%2:38:00:: 02008066 1 1 -peak_season%1:28:00:: 15238570 1 0 -peaked%5:00:00:ill:01 02542325 1 2 -peaked%5:00:00:pointed:00 01810868 2 1 -peaked_cap%1:06:00:: 03610682 1 0 -peaky%5:00:00:high:03 01214255 1 1 -peal%1:11:00:: 07389330 1 1 -peal%2:39:00:: 02181402 1 0 -peal%2:39:01:: 02180898 2 0 -pealing%1:11:00:: 07389330 1 1 -pean%1:10:00:: 06694149 2 0 -pean%1:10:01:: 07036862 1 0 -peanut%1:13:00:: 07737745 4 0 -peanut%1:18:00:: 10410440 3 0 -peanut%1:20:00:: 11748501 2 0 -peanut%1:20:02:: 11748811 1 0 -peanut%5:00:00:minor:06 01473353 1 0 -peanut_bar%1:13:00:: 07608641 1 0 -peanut_brittle%1:13:00:: 07599911 1 0 -peanut_butter%1:13:00:: 07855510 1 2 -peanut_gallery%1:06:00:: 04164199 2 0 -peanut_gallery%1:14:00:: 07949796 1 0 -peanut_oil%1:13:00:: 07674749 1 0 -peanut_vine%1:20:00:: 11748501 1 0 -peanut_worm%1:05:00:: 02315821 1 0 -peanuts%1:21:00:: 13413016 1 0 -pear%1:13:00:: 07767847 1 3 -pear%1:20:00:: 12651611 2 0 -pear-shaped%5:00:00:full:01 01457486 2 0 -pear-shaped%5:00:00:round:00 02042775 1 0 -pear_blight%1:26:00:: 14217002 1 0 -pear_haw%1:20:00:: 12627119 1 0 -pear_hawthorn%1:20:00:: 12627119 1 0 -pear_tree%1:20:00:: 12651611 1 0 -pearl%1:07:00:: 04961331 2 1 -pearl%1:21:00:: 13372403 1 1 -pearl%1:25:00:: 13901585 3 0 -pearl%2:35:00:: 01383800 1 0 -pearl-fish%1:05:00:: 02559383 1 0 -pearl-weed%1:20:00:: 11814238 1 0 -pearl_ash%1:27:00:: 14860749 1 0 -pearl_bailey%1:18:00:: 10831363 1 0 -pearl_barley%1:13:00:: 07803213 1 0 -pearl_buck%1:18:00:: 10870235 1 0 -pearl_diver%1:18:00:: 10410531 1 0 -pearl_fishery%1:06:00:: 03902869 1 0 -pearl_gray%5:00:00:achromatic:00 00390844 1 0 -pearl_grey%5:00:00:achromatic:00 00390844 1 0 -pearl_harbor%1:15:00:: 09080782 1 0 -pearl_hominy%1:13:00:: 07732525 1 0 -pearl_mae_bailey%1:18:00:: 10831363 1 0 -pearl_millet%1:20:00:: 12128825 1 0 -pearl_oyster%1:05:00:: 01961985 1 0 -pearl_river%1:17:00:: 09387880 2 0 -pearl_river%1:17:01:: 09483340 1 0 -pearl_sago%1:27:00:: 15054770 1 0 -pearl_sydenstricker_buck%1:18:00:: 10870235 1 0 -pearler%1:18:00:: 10410531 1 0 -pearlescent%5:00:00:bright:00 00282020 1 0 -pearlfish%1:05:00:: 02559383 1 0 -pearlite%1:27:00:: 14977845 1 0 -pearlweed%1:20:00:: 11814238 1 0 -pearlwort%1:20:00:: 11814238 1 0 -pearly%1:08:00:: 05283498 1 0 -pearly%5:00:00:achromatic:00 00390943 1 1 -pearly-shelled_mussel%1:05:00:: 01964957 1 0 -pearly-white%5:00:00:achromatic:00 00390943 1 0 -pearly_everlasting%1:20:00:: 11921395 1 0 -pearly_nautilus%1:05:00:: 01968897 1 0 -pearly_razorfish%1:05:00:: 02609823 1 0 -pearmain%1:13:00:: 07741357 1 0 -pearson_product-moment_correlation_coefficient%1:09:00:: 06033427 1 0 -peary%1:18:00:: 11227796 1 0 -peasant%1:18:00:: 10410668 1 6 -peasant%1:18:02:: 10410815 3 0 -peasant%1:18:03:: 10410996 2 1 -peasant's_revolt%1:04:00:: 00964105 1 0 -peasanthood%1:04:00:: 00595894 1 0 -peasantry%1:14:00:: 08182283 1 0 -pease_pudding%1:13:00:: 07618871 1 0 -peasecod%1:20:00:: 13140242 1 0 -peat%1:27:00:: 14689493 1 0 -peat_bog%1:17:00:: 09225943 1 0 -peat_moss%1:20:00:: 11542137 1 0 -peaty%3:01:00:: 02775599 1 0 -peavey%1:06:00:: 03903133 1 0 -peavy%1:06:00:: 03903133 1 0 -peba%1:05:00:: 02454794 1 0 -pebble%1:17:00:: 09388023 1 5 -pebble-grained%5:00:00:uneven:00 00912980 1 0 -pebble_plant%1:20:00:: 11820965 1 0 -pebbly%5:00:00:rough:00 02242223 1 0 -pebibit%1:23:00:: 13630707 1 0 -pebibyte%1:23:00:: 13630213 1 0 -pecan%1:13:00:: 07774719 3 0 -pecan%1:20:00:: 12321077 2 0 -pecan%1:20:02:: 12321304 1 0 -pecan_pie%1:13:00:: 07626602 1 0 -pecan_tree%1:20:00:: 12321077 1 0 -peccable%5:00:00:wicked:00 02515214 1 0 -peccadillo%1:04:00:: 00738785 1 0 -peccant%5:00:00:wicked:00 02515214 1 0 -peccari_angulatus%1:05:00:: 02397744 1 0 -peccary%1:05:00:: 02397529 1 0 -peck%1:23:00:: 13774404 1 0 -peck%1:23:01:: 13620713 3 0 -peck%1:23:02:: 13622451 2 0 -peck%2:32:00:: 00844941 5 0 -peck%2:34:00:: 01173813 2 1 -peck%2:34:01:: 01173656 4 0 -peck%2:35:00:: 01431879 3 0 -peck%2:35:01:: 01243474 1 3 -peck_at%2:34:00:: 01173656 1 0 -pecker%1:05:00:: 01838598 2 0 -pecker%1:05:01:: 01758308 3 0 -pecker%1:08:00:: 05526713 1 0 -peckerwood%1:05:00:: 01838598 1 0 -pecking_order%1:14:00:: 08376051 1 0 -peckish%5:00:00:hungry:00 01269819 1 0 -peckish%5:00:00:ill-natured:00 01136541 2 0 -pecopteris%1:20:00:: 11545350 1 0 -pecos%1:17:00:: 09388121 1 0 -pecos_river%1:17:00:: 09388121 1 0 -pecs%1:08:00:: 05551711 1 4 -pecten_irradians%1:05:00:: 01966377 1 0 -pecten_magellanicus%1:05:00:: 01966586 1 0 -pectic%3:01:00:: 03097826 1 0 -pectic_acid%1:27:00:: 14978114 1 0 -pectin%1:27:00:: 14978232 1 0 -pectinate%5:00:00:rough:02 02247422 1 0 -pectineal%3:01:00:: 02776296 1 0 -pectinibranchia%1:05:00:: 01952812 1 0 -pectinidae%1:05:00:: 01965747 1 0 -pectoral%1:06:00:: 03903290 2 0 -pectoral%1:08:00:: 05551711 1 3 -pectoral%3:01:00:: 02860389 1 0 -pectoral_arch%1:08:00:: 05586280 1 0 -pectoral_fin%1:05:00:: 02466564 1 0 -pectoral_girdle%1:08:00:: 05586111 1 0 -pectoral_medallion%1:06:00:: 03903290 1 0 -pectoral_muscle%1:08:00:: 05551711 1 0 -pectoral_sandpiper%1:05:00:: 02028727 1 0 -pectoral_vein%1:08:00:: 05376391 1 0 -pectoralis%1:08:00:: 05551711 1 1 -pectoralis_major%1:08:00:: 05551939 1 1 -pectoralis_minor%1:08:00:: 05552106 1 0 -pectus%1:08:00:: 05552607 1 0 -peculate%2:40:00:: 02292535 1 0 -peculation%1:04:00:: 00776732 1 0 -peculator%1:18:00:: 10051337 1 0 -peculiar%5:00:00:characteristic:00 00357790 4 0 -peculiar%5:00:00:specific:00 01104026 2 6 -peculiar%5:00:00:strange:00 00968010 1 9 -peculiar%5:00:00:unusual:00 00491089 3 0 -peculiar_velocity%1:28:00:: 15284043 1 0 -peculiarity%1:06:00:: 03149951 3 0 -peculiarity%1:07:02:: 04763925 2 1 -peculiarity%1:09:00:: 05852125 1 1 -peculiarly%4:02:00:: 00035491 2 2 -peculiarly%4:02:01:: 00248488 1 4 -peculiarly%4:02:02:: 00084223 3 1 -pecuniary%3:01:00:: 02775934 1 0 -pecuniary_resource%1:21:00:: 13356112 1 0 -pedagog%1:18:00:: 10045713 1 0 -pedagogic%3:01:00:: 02945971 1 0 -pedagogical%3:01:00:: 02945971 1 1 -pedagogically%4:02:00:: 00311651 1 0 -pedagogics%1:09:00:: 05660937 1 0 -pedagogue%1:18:00:: 10045713 1 0 -pedagogy%1:04:00:: 00887081 2 0 -pedagogy%1:04:01:: 00883297 3 0 -pedagogy%1:09:00:: 05660937 1 0 -pedal%1:06:00:: 03903424 2 0 -pedal%1:10:00:: 06858674 1 0 -pedal%2:36:00:: 01728052 2 0 -pedal%2:38:00:: 01935476 1 0 -pedal%3:01:00:: 02776174 1 0 -pedal_extremity%1:08:00:: 05563034 1 0 -pedal_point%1:10:00:: 06858674 1 0 -pedal_pusher%1:06:00:: 03903733 1 0 -pedaler%1:18:00:: 10411163 1 0 -pedaliaceae%1:20:00:: 12874429 1 0 -pedaller%1:18:00:: 10411163 1 0 -pedant%1:18:00:: 10411356 1 0 -pedantic%5:00:00:scholarly:00 02083908 1 1 -pedantically%4:02:00:: 00418985 1 0 -pedantry%1:10:00:: 06890128 1 0 -pedate%5:00:00:compound:00 02173510 1 0 -pedate%5:00:00:footed:00 01031503 2 0 -pedate_leaf%1:20:00:: 13160365 1 0 -peddle%2:40:00:: 02302817 1 2 -peddler%1:18:00:: 10411551 1 3 -peddler%1:18:01:: 10495555 2 0 -peddling%1:04:00:: 01116968 1 0 -pederast%1:18:00:: 10411867 1 0 -pederastic%5:00:00:homosexual:00 01202367 1 0 -pederasty%1:04:00:: 00857872 1 0 -pedesis%1:19:00:: 11433140 1 0 -pedestal%1:06:00:: 02797692 1 1 -pedestal%1:06:01:: 03903868 3 0 -pedestal%1:26:00:: 14432389 2 0 -pedestal_table%1:06:00:: 03904060 1 0 -pedestrian%1:18:00:: 10412055 1 0 -pedestrian%5:00:00:uninteresting:00 01346343 1 0 -pedestrian_bridge%1:06:00:: 03379828 1 0 -pedestrian_crossing%1:06:00:: 03904183 1 0 -pedestrian_traffic%1:14:00:: 08425777 1 0 -pediamycin%1:06:00:: 03295357 1 0 -pediapred%1:27:00:: 14753188 1 0 -pediatric%3:01:00:: 02893637 1 0 -pediatric_medicine%1:09:00:: 06061631 1 0 -pediatrician%1:18:00:: 09828760 1 0 -pediatrics%1:09:00:: 06061631 1 0 -pediatrist%1:18:00:: 09828760 1 0 -pedicab%1:06:00:: 03904433 1 0 -pedicel%1:20:00:: 13132156 1 0 -pedicle%1:20:00:: 13132156 1 0 -pediculati%1:05:00:: 02547213 1 0 -pediculicide%1:27:00:: 14978453 1 0 -pediculidae%1:05:00:: 02184114 1 0 -pediculosis%1:26:00:: 14454450 1 0 -pediculosis_capitis%1:26:00:: 14454661 1 0 -pediculosis_corporis%1:26:00:: 14454773 1 0 -pediculosis_pubis%1:26:00:: 14454874 1 0 -pediculus%1:05:00:: 02184270 1 0 -pediculus_capitis%1:05:00:: 02184589 1 0 -pediculus_corporis%1:05:00:: 02184720 1 0 -pediculus_humanus%1:05:00:: 02184473 1 0 -pedicure%1:04:00:: 00660957 1 0 -pedicure%2:29:00:: 00042936 1 0 -pedigree%1:07:00:: 04923907 3 0 -pedigree%1:14:00:: 08101937 1 2 -pedigree%1:14:01:: 08101846 2 0 -pedigree%5:00:00:purebred:00 01903965 1 0 -pedigreed%5:00:00:purebred:00 01903965 1 0 -pedilanthus%1:20:00:: 12927921 1 0 -pedilanthus_bracteatus%1:20:00:: 12928307 1 0 -pedilanthus_pavonis%1:20:00:: 12928307 1 0 -pedilanthus_tithymaloides%1:20:00:: 12928491 1 0 -pediment%1:06:00:: 03904657 1 0 -pediocactus%1:20:00:: 11850748 1 0 -pediocactus_knowltonii%1:20:00:: 11850918 1 0 -pedioecetes%1:05:00:: 01798052 1 0 -pedioecetes_phasianellus%1:05:00:: 01798168 1 0 -pedionomus%1:05:00:: 02020450 1 0 -pedionomus_torquatus%1:05:00:: 02020578 1 0 -pedipalpi%1:05:00:: 01771246 1 0 -pedlar%1:18:00:: 10411551 1 0 -pedodontist%1:18:00:: 10412554 1 0 -pedology%1:09:00:: 06061631 1 0 -pedometer%1:06:00:: 03904782 1 0 -pedophile%1:18:00:: 10412669 1 0 -pedophilia%1:04:00:: 00738270 1 0 -pedro_calderon_de_la_barca%1:18:00:: 10879155 1 0 -peduncle%1:08:00:: 05476754 3 0 -peduncle%1:20:00:: 13132034 2 0 -peduncle%1:26:00:: 14235066 1 0 -pedunculate%3:00:00:: 00159735 1 0 -pedunculate_oak%1:20:00:: 12277578 1 0 -pedunculated_polyp%1:26:00:: 14234950 1 0 -pedwood%1:20:00:: 12948053 1 0 -pee%1:22:00:: 13533886 2 0 -pee%1:27:00:: 14855724 1 0 -pee%2:29:00:: 00072012 1 0 -pee-pee%2:29:00:: 00072012 1 0 -pee_dee%1:17:00:: 09388318 1 0 -pee_dee_river%1:17:00:: 09388318 1 0 -peeing%1:22:00:: 13533886 1 0 -peek%1:04:00:: 00878221 1 0 -peek%2:39:02:: 02165304 1 0 -peekaboo%1:04:00:: 00487072 1 0 -peel%1:13:00:: 07738353 2 0 -peel%1:18:00:: 11228039 1 0 -peel%2:29:02:: 00049900 3 0 -peel%2:35:00:: 01262936 1 3 -peel%2:35:01:: 01259951 2 0 -peel_off%2:29:00:: 00009492 5 0 -peel_off%2:29:01:: 00050315 2 1 -peel_off%2:35:00:: 01263215 1 1 -peel_off%2:35:01:: 01259951 4 0 -peel_off%2:38:00:: 02033703 3 0 -peeled%5:00:00:unclothed:00 00458266 1 0 -peeler%1:06:00:: 03904909 3 0 -peeler%1:18:00:: 10664340 1 0 -peeler%1:18:01:: 10412784 2 0 -peeling%1:19:00:: 11445564 1 0 -peen%1:06:00:: 03905053 1 0 -peep%1:04:00:: 00878221 2 0 -peep%1:11:00:: 07379094 1 0 -peep%2:30:00:: 00422764 5 0 -peep%2:32:00:: 01052301 3 0 -peep%2:32:01:: 00916011 4 0 -peep%2:39:00:: 02165146 1 1 -peep%2:39:01:: 02137592 2 0 -peep_sight%1:06:00:: 03905361 1 0 -peeper%1:05:00:: 01315213 3 0 -peeper%1:08:00:: 05312040 2 0 -peeper%1:18:00:: 10761326 1 0 -peephole%1:06:00:: 03905208 1 0 -peeping_tom%1:18:00:: 10761326 1 0 -peepshow%1:10:00:: 06617527 2 0 -peepshow%1:14:00:: 08408115 1 0 -peepul%1:20:00:: 12402596 1 0 -peer%1:18:00:: 09626238 1 4 -peer%1:18:01:: 10412910 2 0 -peer%2:39:00:: 02168965 1 30 -peer_group%1:14:00:: 08372190 1 1 -peer_of_the_realm%1:18:00:: 10413276 1 0 -peer_review%2:32:00:: 00855794 1 0 -peerage%1:14:00:: 08388636 1 0 -peeress%1:18:00:: 10242791 1 0 -peerless%5:00:00:incomparable:00 00505410 1 0 -peeve%1:12:00:: 07551418 1 0 -peeve%2:37:00:: 01788932 1 0 -peeved%5:00:00:displeased:00 01806106 1 0 -peevish%5:00:00:ill-natured:00 01136541 1 1 -peevishly%4:02:00:: 00419144 1 0 -peevishness%1:07:00:: 04642258 2 0 -peevishness%1:12:00:: 07552729 1 0 -peewee%1:05:00:: 01549430 2 0 -peewee%1:18:00:: 10543544 1 0 -peewit%1:05:01:: 02024763 1 0 -peewit%1:05:02:: 01549430 2 0 -peg%1:06:00:: 03905540 1 2 -peg%1:06:01:: 03905730 6 0 -peg%1:06:02:: 03905947 5 0 -peg%1:06:03:: 03906106 4 0 -peg%1:08:00:: 05561707 3 0 -peg%1:10:04:: 07271791 2 0 -peg%2:30:03:: 00271201 4 0 -peg%2:35:00:: 01340283 3 0 -peg%2:35:01:: 01442203 2 0 -peg%2:41:00:: 02524897 1 0 -peg_away%2:41:00:: 02415573 1 0 -peg_down%2:31:00:: 00715541 2 0 -peg_down%2:35:00:: 01340283 1 1 -peg_top%1:06:00:: 03906355 1 0 -pegasus%1:17:00:: 09388530 2 0 -pegasus%1:18:00:: 09500625 1 0 -pegboard%1:06:00:: 03906224 1 8 -pegged-down%5:00:00:fastened:00 02096083 1 1 -pegleg%1:06:00:: 03906106 1 0 -pegmatite%1:27:00:: 14932741 1 0 -pehlevi%1:10:00:: 06974846 1 0 -pei%1:18:00:: 11228153 1 0 -peignoir%1:06:00:: 03817647 1 0 -peiping%1:15:00:: 08724726 1 0 -peirce%1:18:00:: 11228298 2 0 -peirce%1:18:01:: 11228486 1 0 -peireskia%1:20:00:: 11852255 1 0 -pejorative%5:00:00:uncomplimentary:00 00907243 1 0 -pejoratively%4:02:00:: 00419283 1 0 -pekan%1:05:00:: 02450829 1 0 -peke%1:05:00:: 02086079 1 0 -pekinese%1:05:00:: 02086079 1 0 -peking%1:15:00:: 08724726 1 0 -peking_man%1:05:00:: 02473857 1 0 -pekingese%1:05:00:: 02086079 1 0 -pekoe%1:13:00:: 07934908 1 0 -pel%1:06:00:: 03952277 1 0 -pelage%1:05:00:: 01898731 1 0 -pelagianism%1:09:00:: 06190554 1 0 -pelagic%3:01:00:: 02890216 1 0 -pelagic_bird%1:05:00:: 02057731 1 0 -pelagius%1:18:00:: 11228691 1 0 -pelargonium%1:20:00:: 12687211 1 0 -pelargonium_graveolens%1:20:00:: 12687462 1 0 -pelargonium_hortorum%1:20:00:: 12687698 1 0 -pelargonium_limoneum%1:20:00:: 12688372 1 0 -pelargonium_odoratissimum%1:20:00:: 12688187 1 0 -pelargonium_peltatum%1:20:00:: 12687957 1 0 -pelecanidae%1:05:00:: 02051701 1 0 -pelecaniform_seabird%1:05:00:: 02051474 1 0 -pelecaniformes%1:05:00:: 02051213 1 0 -pelecanoididae%1:05:00:: 02061716 1 0 -pelecanus%1:05:00:: 02052044 1 0 -pelecanus_erythrorhynchos%1:05:00:: 02052204 1 0 -pelecanus_onocrotalus%1:05:00:: 02052365 1 0 -pelecypod%1:05:00:: 01955933 1 0 -pelecypod%5:00:00:bivalve:00 02484078 1 0 -pelecypodous%5:00:00:bivalve:00 02484078 1 0 -peleus%1:18:00:: 09598270 1 0 -pelew%1:15:00:: 08977948 1 0 -pelf%1:21:00:: 13385216 1 0 -pelham%1:06:00:: 03906463 1 0 -pelham_grenville_wodehouse%1:18:00:: 11394042 1 0 -pelican%1:05:00:: 02051845 1 0 -pelican_crossing%1:06:00:: 03906590 1 0 -pelican_state%1:15:00:: 09090825 1 0 -peliosis%1:26:00:: 14197468 1 0 -pelisse%1:06:00:: 03906789 1 0 -pell-mell%4:02:00:: 00163991 1 0 -pell-mell%5:00:00:hurried:00 01271410 1 0 -pellaea%1:20:00:: 13211516 1 0 -pellaea_andromedifolia%1:20:00:: 13212025 1 0 -pellaea_atropurpurea%1:20:00:: 13212175 1 0 -pellaea_mucronata%1:20:00:: 13212379 1 0 -pellaea_ornithopus%1:20:00:: 13212379 1 0 -pellaea_rotundifolia%1:20:00:: 13212559 1 0 -pellagra%1:26:00:: 14200873 1 0 -pellet%1:06:00:: 04205759 2 0 -pellet%1:25:00:: 13901423 1 0 -pellicle%1:05:00:: 01458746 1 0 -pellicularia%1:20:00:: 13015826 1 0 -pellicularia_filamentosa%1:20:00:: 13016076 1 0 -pellicularia_koleroga%1:20:00:: 13016289 1 0 -pellitory%1:20:01:: 11920998 2 0 -pellitory%1:20:02:: 12394638 1 0 -pellitory-of-spain%1:20:00:: 11920998 1 0 -pellitory-of-the-wall%1:20:00:: 12394638 1 0 -pellucid%5:00:00:clear:00 00429355 2 0 -pellucid%5:00:00:clear:02 00431774 1 0 -pellucidity%1:07:00:: 04701943 2 0 -pellucidity%1:07:01:: 04820258 1 0 -pellucidly%4:02:00:: 00389595 1 0 -pellucidness%1:07:00:: 04701943 1 0 -pelmet%1:06:00:: 03111296 1 0 -pelobatidae%1:05:00:: 01648818 1 0 -peloponnese%1:15:00:: 08790495 1 0 -peloponnesian%3:01:00:: 02879947 1 0 -peloponnesian_peninsula%1:15:00:: 08790495 1 0 -peloponnesian_war%1:04:00:: 01306911 1 0 -peloponnesus%1:15:00:: 08790495 1 0 -pelota%1:04:00:: 00480366 1 0 -pelt%1:05:00:: 01895735 2 0 -pelt%1:27:00:: 14764061 1 0 -pelt%2:33:00:: 01121320 2 1 -pelt%2:35:00:: 01507914 1 1 -pelt%2:43:00:: 02758033 3 0 -pelt_along%2:38:00:: 02058994 1 0 -peltandra%1:20:00:: 11790624 1 0 -peltandra_virginica%1:20:00:: 11790936 1 0 -peltate%5:00:00:simple:01 02170199 1 0 -peltate_leaf%1:20:00:: 13159457 1 0 -pelter%1:18:00:: 10413429 2 0 -pelter%1:19:00:: 11502102 1 0 -pelting%1:07:00:: 05045208 1 1 -peltiphyllum%1:20:00:: 12797213 1 0 -peltiphyllum_peltatum%1:20:00:: 12797368 1 0 -peludo%1:05:00:: 02455720 1 0 -pelvic%3:01:00:: 02894741 1 2 -pelvic_arch%1:08:00:: 05596651 1 0 -pelvic_cavity%1:08:00:: 05597050 1 0 -pelvic_fin%1:05:00:: 02466731 1 0 -pelvic_girdle%1:08:00:: 05596651 1 1 -pelvic_inflammatory_disease%1:26:00:: 14172558 1 0 -pelvimeter%1:06:00:: 03906894 1 0 -pelvimetry%1:04:00:: 01003113 1 0 -pelvis%1:08:00:: 05596651 1 1 -pelvis%1:08:01:: 05596442 2 0 -pelycosaur%1:05:00:: 01721898 1 0 -pelycosauria%1:05:00:: 01721718 1 0 -pembroke%1:05:00:: 02113023 1 0 -pembroke_welsh_corgi%1:05:00:: 02113023 1 0 -pemican%1:13:00:: 07665146 1 0 -pemmican%1:13:00:: 07665146 1 1 -pempheridae%1:05:00:: 02603737 1 0 -pemphigous%3:01:00:: 02776379 1 0 -pemphigus%1:26:00:: 14230800 1 0 -pen%1:05:00:: 01858845 5 0 -pen%1:06:00:: 03906997 1 8 -pen%1:06:01:: 03907227 2 1 -pen%1:06:02:: 03911513 4 0 -pen%1:06:03:: 03964495 3 0 -pen%2:36:00:: 01698271 1 3 -pen-and-ink%1:06:00:: 03908111 1 1 -pen-friend%1:18:00:: 10414379 1 0 -pen-tail%1:05:00:: 02495570 1 0 -pen-tailed_tree_shrew%1:05:00:: 02495570 1 0 -pen_name%1:10:00:: 06338653 1 0 -pen_nib%1:06:00:: 03823111 1 0 -pen_pal%1:18:00:: 10414379 1 0 -pen_up%2:35:00:: 01345877 1 0 -penal%3:01:00:: 02779420 1 0 -penal%5:00:00:illegal:00 01404370 3 0 -penal%5:00:00:punitive:00 01902866 2 0 -penal_code%1:10:00:: 06668019 1 0 -penal_colony%1:06:00:: 03907475 1 0 -penal_facility%1:06:00:: 03907654 1 0 -penal_institution%1:06:00:: 03907654 1 0 -penalisation%1:04:00:: 01160342 1 0 -penalise%2:41:00:: 02499629 1 0 -penalization%1:04:00:: 01160342 1 0 -penalize%2:41:00:: 02499629 1 3 -penally%4:02:00:: 00435951 1 0 -penalty%1:04:00:: 01160342 1 6 -penalty%1:07:00:: 05164845 3 1 -penalty%1:07:01:: 05163189 4 0 -penalty%1:21:00:: 13300555 2 1 -penalty_box%1:06:00:: 03907908 1 0 -penalty_free_throw%1:04:00:: 00110964 1 0 -penance%1:04:00:: 01165537 3 0 -penance%1:04:01:: 01039140 2 1 -penance%1:12:00:: 07536870 1 1 -penchant%1:12:00:: 07498210 1 0 -pencil%1:06:00:: 03908204 1 7 -pencil%1:06:01:: 03908456 4 0 -pencil%1:25:00:: 13863020 3 0 -pencil%1:27:00:: 14796748 2 0 -pencil%2:36:00:: 01688604 1 0 -pencil_box%1:06:00:: 03908618 1 0 -pencil_case%1:06:00:: 03908618 1 0 -pencil_cedar%1:20:00:: 11637015 1 0 -pencil_cedar%1:20:02:: 11623685 2 0 -pencil_cedar_tree%1:20:00:: 11637015 1 0 -pencil_eraser%1:06:00:: 04116512 1 0 -pencil_lead%1:06:00:: 03651084 1 0 -pencil_pusher%1:18:00:: 10414507 1 1 -pencil_sharpener%1:06:00:: 03908714 1 0 -penciled%3:44:00:: 03151711 1 1 -pencilled%3:44:00:: 03151711 1 0 -pendant%1:06:00:: 03005285 2 0 -pendant%1:06:01:: 03908831 1 0 -pendant%5:00:00:supported:00 02351370 1 0 -pendant_earring%1:06:00:: 03909020 1 0 -pendent%1:06:00:: 03005285 2 0 -pendent%1:06:01:: 03908831 1 0 -pendent%5:00:00:supported:00 02351370 1 0 -pending%5:00:00:unfinished:01 01004703 1 3 -pendragon%1:18:00:: 10413588 1 0 -pendulous%5:00:00:unerect:00 01238486 1 0 -pendulum%1:06:00:: 03909160 1 1 -pendulum_clock%1:06:00:: 03909406 1 0 -pendulum_watch%1:06:00:: 03909516 1 0 -peneidae%1:05:00:: 01987938 1 0 -penelope%1:05:00:: 01799876 2 0 -penelope%1:18:00:: 09593144 1 0 -peneplain%1:17:00:: 09388653 1 0 -peneplane%1:17:00:: 09388653 1 0 -penetrability%1:07:00:: 04940730 1 0 -penetrable%3:00:00:: 01771462 1 0 -penetrable%5:00:00:vulnerable:00 02524563 2 0 -penetralia%1:15:00:: 08588840 1 0 -penetrate%2:31:00:: 00728954 2 3 -penetrate%2:31:01:: 00591755 3 1 -penetrate%2:35:00:: 01227675 1 7 -penetrate%2:35:04:: 01422003 6 0 -penetrate%2:35:05:: 01229071 7 0 -penetrate%2:38:06:: 01993031 5 0 -penetrate%2:41:00:: 02435634 4 0 -penetrating%5:00:00:perceptive:00 01744515 1 2 -penetrating%5:00:00:sharp:00 00802514 2 0 -penetrating_injury%1:26:00:: 14294964 1 0 -penetrating_trauma%1:26:00:: 14294964 1 0 -penetratingly%4:02:00:: 00419404 1 0 -penetration%1:04:00:: 00975452 1 2 -penetration%1:04:02:: 00051525 3 1 -penetration%1:04:03:: 00846817 6 0 -penetration%1:07:00:: 05135288 5 0 -penetration%1:07:01:: 05201452 4 0 -penetration%1:09:00:: 05710356 2 1 -penetration_bomb%1:06:00:: 03909658 1 0 -penetrative%5:00:00:perceptive:00 01744515 1 0 -penetrative%5:00:00:sharp:00 00802514 2 0 -penetratively%4:02:00:: 00419404 1 0 -penetrator%1:18:00:: 10413688 1 0 -peneus%1:05:00:: 01988064 1 0 -pengo%1:10:00:: 06981085 2 0 -pengo%1:23:00:: 13676758 1 0 -penguin%1:05:00:: 02055803 1 0 -penial%3:01:00:: 03097952 1 0 -penicillamine%1:06:00:: 03909835 1 0 -penicillin%1:06:00:: 03910033 1 0 -penicillin-resistant%3:01:00:: 02779530 1 0 -penicillin-resistant_bacteria%1:05:00:: 01377392 1 0 -penicillin_f%1:06:00:: 03910601 1 0 -penicillin_g%1:06:00:: 03910723 1 0 -penicillin_o%1:06:00:: 03910887 1 0 -penicillin_v%1:06:00:: 03911039 1 0 -penicillin_v_potassium%1:06:00:: 03911251 1 0 -penicillinase%1:27:00:: 14978544 1 0 -penicillinase-resistant_antibiotic%1:06:00:: 03910417 1 0 -penicillium%1:20:00:: 13079953 1 0 -penile%3:01:00:: 03097952 1 0 -penile_implant%1:06:00:: 03911406 1 0 -peninsula%1:17:00:: 09388848 1 1 -peninsular%3:01:00:: 03098252 1 0 -penis%1:08:00:: 05526384 1 0 -penis_envy%1:12:00:: 07550204 1 0 -penitence%1:12:00:: 07536870 1 0 -penitent%1:18:00:: 10413834 1 0 -penitent%3:00:00:: 01743217 1 0 -penitential%5:00:00:penitent:00 01743704 1 0 -penitentially%4:02:00:: 00365110 1 0 -penitentiary%1:06:00:: 03911513 1 0 -penitentiary%5:00:00:penitent:00 01743704 2 0 -penitentiary%5:00:00:punitive:00 01902980 1 0 -penitently%4:02:00:: 00365110 1 0 -penknife%1:06:00:: 03911658 1 0 -penlight%1:06:00:: 03911767 1 0 -penman%1:18:00:: 10564660 1 0 -penmanship%1:10:00:: 06403969 1 0 -penn%1:06:00:: 04512476 2 0 -penn%1:18:00:: 11228956 1 0 -penn'orth%1:23:00:: 13661163 1 0 -pennant%1:06:00:: 03911866 3 0 -pennant%1:10:00:: 06875288 2 0 -pennant%1:10:01:: 06705891 1 4 -pennate%5:00:00:feathered:00 00998598 1 0 -pennatula%1:05:00:: 01915541 1 0 -pennatulidae%1:05:00:: 01915414 1 0 -penne%1:13:00:: 07701147 1 0 -penni%1:23:00:: 13688577 1 0 -penniless%5:00:00:poor:00 02023661 1 0 -pennilessness%1:26:00:: 14494186 1 0 -pennine_chain%1:15:00:: 08797013 1 0 -pennines%1:15:00:: 08797013 1 0 -penning%1:04:00:: 00929718 1 0 -pennisetum%1:20:00:: 12128645 1 0 -pennisetum_americanum%1:20:00:: 12128825 1 0 -pennisetum_cenchroides%1:20:00:: 12114010 1 0 -pennisetum_glaucum%1:20:00:: 12128825 1 0 -pennisetum_ruppelii%1:20:00:: 12129134 1 0 -pennisetum_setaceum%1:20:00:: 12129134 1 0 -pennistum_villosum%1:20:00:: 12129349 1 0 -pennon%1:05:00:: 02152446 2 0 -pennon%1:06:00:: 03911866 1 0 -pennoncel%1:06:00:: 03911992 1 0 -pennoncelle%1:06:00:: 03911992 1 0 -pennsylvania%1:06:00:: 04512476 3 0 -pennsylvania%1:15:00:: 09134386 1 12 -pennsylvania%1:15:01:: 09134882 2 0 -pennsylvania_dutch%1:10:00:: 06952115 1 0 -pennsylvanian%1:18:00:: 09745324 2 0 -pennsylvanian%1:28:00:: 15127507 1 0 -pennsylvanian_period%1:28:00:: 15127507 1 0 -penny%1:21:00:: 13390626 2 1 -penny%1:23:00:: 13694367 1 2 -penny-pinch%2:40:00:: 02266784 1 1 -penny-pinching%1:07:00:: 04893525 1 0 -penny-pinching%5:00:00:stingy:00 01113225 1 0 -penny-wise%5:00:00:thrifty:00 02421833 1 0 -penny_ante%1:04:00:: 00497819 2 0 -penny_ante%1:04:01:: 01110720 1 0 -penny_ante_poker%1:04:00:: 00497819 1 0 -penny_arcade%1:06:00:: 03912105 1 1 -penny_bank%1:06:00:: 03935335 1 0 -penny_dreadful%1:10:00:: 06368321 1 0 -penny_grass%1:20:00:: 11898775 1 0 -penny_pincher%1:18:00:: 10414084 1 0 -penny_stock%1:21:00:: 13337050 1 0 -pennycress%1:20:00:: 11898639 1 0 -pennyroyal%1:20:01:: 12856680 1 0 -pennyroyal%1:20:02:: 12847927 2 0 -pennyroyal_oil%1:20:01:: 12856868 1 0 -pennyroyal_oil%1:20:02:: 12848212 2 0 -pennyweight%1:23:00:: 13722198 1 0 -pennywhistle%1:06:00:: 03912218 1 0 -pennyworth%1:23:00:: 13661163 1 0 -penobscot%1:17:00:: 09389601 2 0 -penobscot%1:18:00:: 09665367 1 0 -penobscot_bay%1:17:00:: 09389746 1 0 -penobscot_river%1:17:00:: 09389601 1 0 -penoche%1:13:00:: 07605804 1 0 -penologist%1:18:00:: 10414239 1 0 -penology%1:09:00:: 06152460 1 0 -penoncel%1:06:00:: 03911992 1 0 -penpusher%1:18:00:: 10414507 1 0 -pensacola%1:15:00:: 09074596 1 0 -pension%1:21:00:: 13384164 1 4 -pension%2:40:00:: 02262601 1 0 -pension_account%1:09:00:: 05911255 1 0 -pension_fund%1:14:00:: 08070674 2 0 -pension_fund%1:21:00:: 13360103 1 0 -pension_off%2:40:01:: 02262601 2 0 -pension_off%2:41:00:: 02380571 1 0 -pension_plan%1:09:00:: 05911255 1 0 -pensionable%5:00:00:eligible:00 00852875 1 0 -pensionary%1:18:00:: 10176913 2 0 -pensionary%1:18:01:: 10414612 1 0 -pensioner%1:18:00:: 10414612 1 1 -pensive%5:00:00:sad:00 01362950 2 0 -pensive%5:00:00:thoughtful:00 02419434 1 1 -pensively%4:02:00:: 00419576 1 0 -pensiveness%1:07:00:: 04660805 2 0 -pensiveness%1:12:00:: 07533607 1 0 -penstemon%1:20:00:: 12884523 1 0 -penstemon_barbatus%1:20:00:: 12885045 1 0 -penstemon_centranthifolius%1:20:00:: 12885265 1 0 -penstemon_cyananthus%1:20:00:: 12885754 1 0 -penstemon_davidsonii%1:20:00:: 12885956 1 0 -penstemon_deustus%1:20:00:: 12886185 1 0 -penstemon_dolius%1:20:00:: 12886402 1 0 -penstemon_fruticosus%1:20:00:: 12886600 1 0 -penstemon_linarioides%1:20:00:: 12886831 1 0 -penstemon_newberryi%1:20:00:: 12887065 1 0 -penstemon_palmeri%1:20:00:: 12887293 1 0 -penstemon_parryi%1:20:00:: 12887532 1 0 -penstemon_rupicola%1:20:00:: 12887713 1 0 -penstemon_rydbergii%1:20:00:: 12888016 1 0 -penstemon_serrulatus%1:20:00:: 12888234 1 0 -penstemon_whippleanus%1:20:00:: 12888457 1 0 -penstock%1:06:00:: 04244379 2 0 -penstock%1:06:01:: 04244615 1 0 -pent%5:00:00:confined:00 00558951 1 0 -pent-up%5:00:00:inhibited:00 01316467 1 0 -pentacle%1:25:00:: 13882008 1 0 -pentad%1:23:00:: 13744521 1 0 -pentaerythritol%1:06:00:: 03912328 1 0 -pentagon%1:06:00:: 03912496 1 2 -pentagon%1:14:00:: 08207095 2 1 -pentagon%1:25:00:: 13882201 3 0 -pentagon_gang%1:14:00:: 08038131 1 0 -pentagonal%3:01:00:: 02834730 1 0 -pentagram%1:25:00:: 13882008 1 0 -pentahedron%1:25:00:: 13915209 1 0 -pentail%1:05:00:: 02495570 1 0 -pentamerous%5:00:00:divided:00 02482298 1 0 -pentameter%1:10:00:: 07096142 1 0 -pentamethylenetetrazol%1:06:00:: 03913702 1 0 -pentangle%1:25:00:: 13882008 1 0 -pentangular%3:01:00:: 02834730 1 0 -pentanoic_acid%1:27:00:: 14740094 1 0 -pentastomid%1:05:00:: 01788864 1 0 -pentastomida%1:05:00:: 01788730 1 0 -pentasyllabic%5:00:00:syllabic:00 02289287 1 0 -pentateuch%1:10:00:: 06451891 1 0 -pentathlete%1:18:00:: 10414768 1 0 -pentathlon%1:11:00:: 07457722 1 0 -pentatone%1:10:00:: 06861435 1 0 -pentatonic%3:01:00:: 02938485 1 0 -pentatonic_scale%1:10:00:: 06861435 1 0 -pentavalent%3:01:00:: 03098390 1 0 -pentazocine%1:06:00:: 03912664 1 0 -pentecost%1:28:01:: 15242209 1 0 -pentecost%1:28:02:: 15197042 2 0 -pentecostal%1:18:00:: 10414865 1 0 -pentecostal%3:01:00:: 03098491 2 0 -pentecostal%3:01:01:: 03098628 1 0 -pentecostal_religion%1:14:00:: 08087319 1 0 -pentecostalism%1:09:00:: 06232298 1 0 -pentecostalist%1:18:00:: 10414865 1 0 -penthouse%1:06:00:: 03912821 1 1 -pentimento%1:06:00:: 03912929 1 0 -pentlandite%1:27:00:: 14689672 1 0 -pentobarbital%1:06:00:: 03913129 1 0 -pentobarbital_sodium%1:06:00:: 03913129 1 0 -pentode%1:06:00:: 03913343 1 0 -pentose%1:27:00:: 14690063 1 0 -pentothal%1:06:00:: 04424936 1 0 -pentoxide%1:27:00:: 14690335 1 0 -pentoxifylline%1:06:00:: 03913437 1 0 -pentylenetetrazol%1:06:00:: 03913702 1 0 -penuche%1:13:00:: 07605804 1 0 -penuchle%1:04:00:: 00494100 1 0 -penult%1:10:00:: 06305109 1 0 -penultima%1:10:00:: 06305109 1 0 -penultimate%1:10:00:: 06305109 1 0 -penultimate%5:00:00:intermediate:00 01015392 1 0 -penumbra%1:26:00:: 13985219 1 0 -penumbral%3:01:00:: 02779654 1 0 -penurious%5:00:00:poor:00 02023661 1 0 -penurious%5:00:00:stingy:00 01114116 2 0 -penuriously%4:02:00:: 00419690 1 0 -penuriousness%1:07:00:: 04834339 2 0 -penuriousness%1:26:00:: 14494186 1 0 -penury%1:26:00:: 14493716 1 0 -penutian%1:10:00:: 06923880 1 1 -penutian%1:18:00:: 09665545 2 0 -peon%1:18:00:: 10035809 1 0 -peonage%1:04:00:: 00415540 2 0 -peonage%1:26:00:: 13998186 1 0 -peony%1:20:00:: 11719286 1 2 -peony_family%1:20:00:: 11718911 1 0 -people%1:14:00:: 07942152 1 257 -people%1:14:01:: 08160276 2 28 -people%1:14:02:: 07971141 3 3 -people%1:14:03:: 08180190 4 1 -people%2:30:00:: 00451461 1 1 -people%2:42:00:: 02650840 2 0 -people's_liberation_army%1:14:00:: 08024408 1 0 -people's_mujahidin_of_iran%1:14:00:: 08034778 1 0 -people's_party%1:14:00:: 08262494 1 0 -people's_republic_of_bangladesh%1:15:00:: 08848731 1 0 -people's_republic_of_china%1:15:00:: 08723006 1 0 -people's_republican_army%1:14:00:: 08024408 1 0 -people_against_gangsterism_and_drugs%1:14:00:: 08039601 1 0 -people_in_power%1:14:00:: 08387806 1 0 -people_of_color%1:14:00:: 07968354 1 0 -people_of_colour%1:14:00:: 07968354 1 0 -peopled%5:00:00:inhabited:00 01312105 1 1 -peoples%1:14:00:: 07943300 1 0 -peoria%1:15:00:: 09084075 1 0 -pep%1:07:00:: 04634833 1 0 -pep_pill%1:06:00:: 02704153 1 0 -pep_rally%1:14:00:: 08358492 1 0 -pep_talk%1:10:00:: 07246215 1 0 -pep_up%2:30:00:: 00192659 2 0 -pep_up%2:32:00:: 00858781 1 1 -pepcid%1:06:00:: 03319858 1 0 -peperomia%1:20:00:: 13150894 1 0 -peperomia_argyreia%1:20:00:: 13151082 1 0 -peperomia_sandersii%1:20:00:: 13151082 1 0 -pepin%1:18:00:: 11229095 1 0 -pepin_iii%1:18:00:: 11229095 1 0 -pepin_the_short%1:18:00:: 11229095 1 0 -peplos%1:06:00:: 03913930 1 0 -peplum%1:06:00:: 03914106 1 0 -peplum%1:06:01:: 03913930 2 0 -peplus%1:06:00:: 03913930 1 0 -pepper%1:13:01:: 07815588 3 0 -pepper%1:13:02:: 07720442 4 0 -pepper%1:20:00:: 12900462 2 0 -pepper%1:20:01:: 13149506 1 0 -pepper%2:33:00:: 01121320 2 1 -pepper%2:39:00:: 02196081 1 1 -pepper-and-salt%1:06:00:: 03914231 1 0 -pepper_box%1:06:00:: 03914438 1 0 -pepper_bush%1:20:00:: 12250180 1 0 -pepper_family%1:20:00:: 13148791 1 0 -pepper_grass%1:20:00:: 11890507 1 0 -pepper_grinder%1:06:00:: 03914337 1 0 -pepper_mill%1:06:00:: 03914337 1 0 -pepper_pot%1:06:00:: 03914438 2 0 -pepper_pot%1:13:00:: 07586718 1 0 -pepper_root%1:20:00:: 11882426 1 0 -pepper_sauce%1:13:00:: 07839312 1 0 -pepper_shaker%1:06:00:: 03914438 1 0 -pepper_shrub%1:20:00:: 11740414 1 0 -pepper_spray%1:06:00:: 03914583 1 0 -pepper_steak%1:13:01:: 07877849 2 0 -pepper_steak%1:13:02:: 07877961 1 0 -pepper_tree%1:20:01:: 12718074 2 0 -pepper_tree%1:20:02:: 12765115 1 0 -pepper_vine%1:20:00:: 13149296 1 0 -peppercorn%1:13:00:: 07815588 1 0 -peppercorn_rent%1:21:00:: 13296089 1 0 -peppered_steak%1:13:00:: 07877961 1 0 -pepperidge%1:20:00:: 12340755 1 0 -pepperiness%1:07:00:: 04993312 1 0 -peppermint%1:13:01:: 07606538 3 0 -peppermint%1:20:00:: 12856091 1 0 -peppermint%1:20:02:: 12336092 2 0 -peppermint_candy%1:13:00:: 07606538 1 0 -peppermint_gum%1:20:00:: 12336092 1 0 -peppermint_oil%1:13:00:: 07812497 1 0 -peppermint_patty%1:13:00:: 07599554 1 0 -pepperoni%1:13:00:: 07677480 1 0 -pepperoni_pizza%1:13:00:: 07874159 1 0 -pepperwood%1:20:00:: 11707827 1 0 -pepperwort%1:20:01:: 11890507 2 0 -pepperwort%1:20:02:: 12957608 1 0 -peppery%5:00:00:tasty:00 02397496 1 0 -peppiness%1:07:00:: 04634833 1 0 -peppy%5:00:00:lively:00 00805309 1 0 -pepsi%1:13:00:: 07928790 1 0 -pepsi_cola%1:13:00:: 07928790 1 0 -pepsin%1:27:00:: 14978729 1 0 -pepsinogen%1:27:00:: 14978887 1 0 -peptic%3:01:00:: 02908525 1 0 -peptic_ulcer%1:26:00:: 14212402 1 0 -peptic_ulceration%1:26:00:: 14212402 1 0 -peptidase%1:27:00:: 14999106 1 1 -peptide%1:27:00:: 14743046 1 0 -peptide_bond%1:19:00:: 11438260 1 0 -peptide_linkage%1:19:00:: 11438260 1 0 -peptisation%1:22:00:: 13534098 1 0 -peptise%2:30:00:: 00330909 1 0 -peptization%1:22:00:: 13534098 1 0 -peptize%2:30:00:: 00330909 1 0 -pepto-bismal%1:27:00:: 14777768 1 0 -peptone%1:27:00:: 14690447 1 0 -pepys%1:18:00:: 11229323 1 0 -per_annum%4:02:00:: 00250570 1 2 -per_capita%4:02:00:: 00501291 1 0 -per_capita%5:00:00:proportionate:00 00482452 1 14 -per_capita_income%1:21:00:: 13262200 1 0 -per_centum%1:24:00:: 13817526 1 3 -per_diem%1:21:00:: 13293752 1 0 -per_diem%4:02:00:: 00250798 1 0 -per_se%4:02:00:: 00036762 1 5 -per_year%4:02:00:: 00250570 1 5 -peradventure%1:09:00:: 05699600 1 0 -peradventure%4:02:00:: 00300247 1 0 -perambulate%2:38:00:: 01910965 2 0 -perambulate%2:39:00:: 02165754 1 0 -perambulating%5:00:00:mobile:00 01523968 1 1 -perambulation%1:04:00:: 00284101 2 0 -perambulation%1:04:01:: 00292386 1 0 -perambulator%1:06:00:: 02766534 1 0 -peramelidae%1:05:00:: 01876180 1 0 -perboric_acid%1:27:00:: 14979052 1 0 -perca%1:05:00:: 02557033 1 0 -perca_flavescens%1:05:00:: 02557182 1 0 -perca_fluviatilis%1:05:00:: 02557318 1 0 -percale%1:06:00:: 03914831 1 0 -perceivable%5:00:00:comprehensible:00 00533452 2 0 -perceivable%5:00:00:perceptible:00 01747849 1 0 -perceive%2:31:00:: 00591519 2 9 -perceive%2:39:00:: 02106506 1 26 -perceived%5:00:01:detected:00 01609373 2 0 -perceived%5:00:02:detected:00 01609501 1 1 -perceiver%1:18:00:: 09626589 1 0 -percent%1:24:00:: 13817526 1 64 -percent_sign%1:10:00:: 06828199 1 0 -percentage%1:21:00:: 13285176 2 6 -percentage%1:24:00:: 13817526 1 26 -percentage_point%1:10:00:: 06812289 1 0 -percentage_sign%1:10:00:: 06828199 1 0 -percentile%1:09:00:: 05737752 1 0 -percept%1:09:00:: 05930136 1 0 -perceptibility%1:07:00:: 05017230 1 0 -perceptible%3:00:00:: 01746605 1 1 -perceptible%5:00:00:noticeable:00 01287282 3 0 -perceptible%5:00:00:palpable:00 01717471 2 0 -perceptibly%4:02:00:: 00365668 1 0 -perception%1:04:00:: 00876874 5 0 -perception%1:09:00:: 05708432 3 4 -perception%1:09:01:: 05930136 1 6 -perception%1:09:02:: 05836468 2 4 -perception%1:09:03:: 05710020 4 1 -perceptive%3:00:00:: 01744111 2 1 -perceptive%3:01:00:: 02868326 1 1 -perceptively%4:02:00:: 00419795 1 0 -perceptiveness%1:07:00:: 04843875 4 0 -perceptiveness%1:09:00:: 05749619 2 0 -perceptiveness%1:09:01:: 05710210 3 0 -perceptiveness%1:12:00:: 07513247 1 0 -perceptivity%1:12:00:: 07513247 1 0 -perceptual%3:01:00:: 02945377 1 3 -perceptual_constancy%1:09:00:: 05708818 1 0 -perceptual_experience%1:09:00:: 05930136 1 0 -perceptually%4:02:00:: 00419876 1 0 -perch%1:05:01:: 02556846 6 0 -perch%1:05:02:: 02555863 7 0 -perch%1:06:00:: 03914919 1 1 -perch%1:13:00:: 07780173 5 0 -perch%1:15:00:: 08626758 4 0 -perch%1:23:01:: 13650921 2 0 -perch%1:23:02:: 13614679 3 0 -perch%2:35:00:: 01543731 1 6 -perch%2:35:10:: 01611240 3 0 -perch%2:38:00:: 01978700 2 0 -perchance%4:02:00:: 00420004 1 1 -perchance%4:02:01:: 00300247 2 1 -percher%1:05:00:: 01523656 2 0 -percher%1:18:00:: 09627017 1 0 -percheron%1:05:00:: 02387093 1 0 -perching_bird%1:05:00:: 01523656 1 0 -perchlorate%1:27:00:: 14684607 1 1 -perchloric_acid%1:27:00:: 14684690 1 0 -perchloride%1:27:00:: 15017466 1 0 -perchloromethane%1:27:00:: 14798039 1 0 -percidae%1:05:00:: 02556623 1 0 -perciformes%1:05:00:: 02553196 1 0 -percina%1:05:00:: 02558079 1 0 -percina_tanasi%1:05:00:: 02558206 1 0 -percipient%1:18:00:: 09626589 1 0 -percipient%5:00:00:discerning:00 00771616 1 0 -percival_lowell%1:18:00:: 11142614 1 0 -percoid%1:05:00:: 02554730 1 0 -percoid_fish%1:05:00:: 02554730 1 0 -percoidea%1:05:00:: 02554512 1 0 -percoidean%1:05:00:: 02554730 1 0 -percolate%1:27:00:: 14997888 1 0 -percolate%2:29:00:: 00023473 6 0 -percolate%2:35:00:: 01457954 5 0 -percolate%2:35:02:: 01458228 4 0 -percolate%2:35:03:: 01458464 3 0 -percolate%2:38:00:: 02071627 1 0 -percolate%2:38:01:: 02060437 2 0 -percolation%1:04:00:: 00248252 2 0 -percolation%1:04:01:: 00192149 3 0 -percolation%1:22:00:: 13534274 1 0 -percolator%1:06:00:: 03915118 1 1 -percomorphi%1:05:00:: 02553196 1 0 -percophidae%1:05:00:: 02620033 1 0 -percuss%2:35:00:: 01248023 1 0 -percussion%1:04:00:: 00377813 2 1 -percussion%1:04:01:: 00545059 1 1 -percussion%1:04:02:: 00876239 4 0 -percussion%1:14:00:: 08217557 3 0 -percussion_cap%1:06:00:: 03915320 1 0 -percussion_instrument%1:06:00:: 03915437 1 0 -percussion_section%1:14:00:: 08217557 1 0 -percussionist%1:18:00:: 10415037 1 0 -percussive%3:01:00:: 03004701 1 2 -percussive_instrument%1:06:00:: 03915437 1 1 -percussor%1:06:00:: 03966751 1 0 -percutaneous%3:01:00:: 02944327 1 0 -percy%1:18:00:: 11229499 2 0 -percy%1:18:01:: 11229662 1 0 -percy_aldridge_grainger%1:18:00:: 11010697 1 0 -percy_bysshe_shelley%1:18:00:: 11296914 1 0 -percy_grainger%1:18:00:: 11010697 1 0 -perdicidae%1:05:00:: 01807265 1 0 -perdicinae%1:05:00:: 01807265 1 0 -perdition%1:09:00:: 05629682 1 0 -perdix%1:05:00:: 01807701 1 0 -perdix_perdix%1:05:00:: 01807828 1 0 -perdurability%1:07:00:: 05054746 1 0 -perdurable%5:00:00:imperishable:00 01754049 1 0 -pere_david's_deer%1:05:00:: 02435517 1 0 -pere_jacques_marquette%1:18:00:: 11158156 1 0 -peregrinate%2:38:00:: 02081006 1 0 -peregrination%1:04:00:: 00296478 1 0 -peregrine%1:05:00:: 01611472 1 0 -peregrine%5:00:00:unsettled:01 02128084 1 0 -peregrine_falcon%1:05:00:: 01611472 1 0 -perejil%1:17:00:: 09389999 1 0 -peremptorily%4:02:00:: 00365284 1 0 -peremptory%5:00:00:decisive:00 00685365 3 0 -peremptory%5:00:00:domineering:00 00787595 1 2 -peremptory%5:00:02:imperative:00 00713205 2 0 -perennate%2:42:00:: 02618877 1 0 -perennation%1:22:00:: 13534608 1 0 -perennial%1:20:00:: 11553240 1 0 -perennial%3:00:00:: 00678473 1 2 -perennial%5:00:00:continual:00 00592880 3 0 -perennial%5:00:00:long:02 01441729 2 0 -perennial_pea%1:20:00:: 12540001 1 0 -perennial_ragweed%1:20:00:: 11920133 1 0 -perennial_ryegrass%1:20:00:: 12124818 1 0 -perennial_salt_marsh_aster%1:20:00:: 11936448 1 0 -perennially%4:02:00:: 00227818 1 1 -pereskia%1:20:00:: 11852255 1 0 -pereskia_aculeata%1:20:00:: 11852531 1 0 -perestroika%1:10:00:: 06658545 1 0 -perfect%1:24:00:: 13806140 1 0 -perfect%2:30:00:: 00473572 1 4 -perfect%3:00:00:: 01749320 1 17 -perfect%5:00:00:exact:00 00915321 3 0 -perfect%5:00:00:unmitigated:00 01520091 2 0 -perfect_game%1:04:00:: 00474881 1 0 -perfect_gas%1:27:00:: 14916512 1 1 -perfect_participle%1:10:00:: 06331154 1 0 -perfect_pitch%1:09:00:: 05658106 1 0 -perfect_tense%1:24:00:: 13806140 1 1 -perfecta%1:04:00:: 00507025 1 0 -perfected%5:00:00:formed:00 02148917 1 0 -perfecter%1:18:00:: 10415439 1 0 -perfectibility%1:09:00:: 05623444 1 1 -perfectible%5:00:00:perfect:00 01751693 1 0 -perfection%1:04:00:: 00260494 3 0 -perfection%1:09:00:: 05924519 2 0 -perfection%1:26:00:: 14459422 1 7 -perfectionism%1:07:00:: 04637722 1 1 -perfectionist%1:18:00:: 10415230 1 1 -perfective%1:24:00:: 13804889 2 0 -perfective%1:24:01:: 13806140 1 0 -perfective_aspect%1:24:00:: 13804889 1 0 -perfective_tense%1:24:00:: 13806140 1 0 -perfectly%4:02:00:: 00008997 1 13 -perfectly%4:02:01:: 00009650 2 2 -perfervid%5:00:00:passionate:00 01726235 1 0 -perfidious%5:00:00:unfaithful:00 00960094 1 0 -perfidiously%4:02:00:: 00420121 1 0 -perfidiousness%1:07:00:: 04879964 1 0 -perfidy%1:04:00:: 00749767 2 0 -perfidy%1:07:00:: 04879964 1 0 -perfluorocarbon%1:27:00:: 14979132 1 0 -perfoliate%5:00:00:simple:01 02170411 1 0 -perfoliate_leaf%1:20:00:: 13159558 1 0 -perforate%2:35:00:: 01442779 1 0 -perforate%2:35:03:: 01227675 2 0 -perforate%5:00:00:cut:01 00662139 1 0 -perforated%5:00:00:cut:01 00661973 2 0 -perforated%5:00:02:cut:01 00662139 1 0 -perforated_eardrum%1:08:00:: 05324388 1 0 -perforating_vein%1:08:00:: 05376541 1 0 -perforation%1:04:00:: 00944633 3 0 -perforation%1:06:00:: 03915900 1 1 -perforation%1:17:00:: 09389867 2 0 -perforce%4:02:00:: 00260088 1 0 -perform%2:36:00:: 01712704 1 25 -perform%2:36:01:: 01714208 3 19 -perform%2:41:00:: 02561995 4 2 -perform%2:41:02:: 02374764 2 19 -performance%1:04:00:: 00097504 3 13 -performance%1:04:01:: 00550771 2 19 -performance%1:04:03:: 00047106 4 2 -performance%1:10:00:: 06891493 1 27 -performance%1:22:00:: 13525549 5 0 -performance_bond%1:21:00:: 13338960 1 0 -performance_capability%1:07:00:: 05204143 1 0 -performer%1:18:00:: 10415638 1 8 -performing%1:04:00:: 00548326 1 0 -performing_artist%1:18:00:: 10415638 1 0 -performing_arts%1:09:00:: 06157326 1 0 -perfume%1:06:00:: 03916031 2 2 -perfume%1:09:00:: 05714466 1 2 -perfume%2:29:00:: 00043480 2 0 -perfume%2:39:00:: 02126382 1 0 -perfumed%5:00:01:fragrant:00 01052611 2 0 -perfumed%5:00:02:fragrant:00 01052888 1 1 -perfumer%1:18:00:: 10416270 1 0 -perfumery%1:04:00:: 00937394 4 0 -perfumery%1:06:00:: 03916289 3 0 -perfumery%1:06:01:: 03916385 2 0 -perfumery%1:06:02:: 03916470 1 0 -perfunctorily%4:02:00:: 00260328 1 2 -perfunctory%5:00:00:careless:00 00312234 1 1 -perfunctory%5:00:00:formal:01 01043619 2 0 -perfuse%2:30:00:: 00454251 2 0 -perfuse%2:30:01:: 00454475 1 0 -perfusion%1:04:00:: 00324233 1 1 -pergamum%1:15:00:: 09042451 1 0 -pergola%1:06:00:: 02732827 1 0 -perhaps%4:02:00:: 00300247 1 123 -peri%1:18:00:: 10416364 1 0 -peri%1:18:02:: 09546905 2 0 -periactin%1:06:00:: 03157582 1 0 -perianal%3:01:00:: 02856584 1 0 -perianth%1:20:00:: 11692265 1 0 -periapsis%1:15:00:: 08618379 1 0 -periarterial_plexus%1:08:00:: 05507977 1 0 -periarteritis%1:26:00:: 14258762 1 0 -periarteritis_nodosa%1:26:00:: 14080352 1 0 -pericallis%1:20:00:: 12001565 1 0 -pericallis_cruenta%1:20:00:: 12001707 1 0 -pericallis_hybrida%1:20:00:: 12001924 1 0 -pericardiac%3:01:00:: 02856654 1 0 -pericardial%3:01:00:: 02856654 1 0 -pericardial_cavity%1:08:00:: 05428974 1 0 -pericardial_sac%1:08:00:: 05604854 1 0 -pericardial_space%1:08:00:: 05428974 1 0 -pericardial_vein%1:08:00:: 05376721 1 0 -pericarditis%1:26:00:: 14339682 1 0 -pericardium%1:08:00:: 05428473 1 0 -pericarp%1:20:00:: 11684264 1 0 -pericementoclasia%1:26:00:: 14081025 1 0 -periclase%1:27:00:: 14690607 1 0 -pericles%1:18:00:: 11229801 1 0 -peridinian%1:05:00:: 01418114 1 0 -peridiniidae%1:05:00:: 01417807 1 0 -peridinium%1:05:00:: 01417982 1 0 -peridium%1:20:00:: 11533365 1 0 -peridot%1:27:00:: 14979961 1 0 -peridotite%1:27:00:: 14932943 1 0 -perigee%1:15:00:: 08618669 1 0 -perigon%1:25:00:: 13892674 1 0 -perigonal%3:01:00:: 02775713 1 0 -perigone%1:20:00:: 11692265 1 0 -perigonium%1:20:00:: 11692265 1 0 -perihelion%1:15:00:: 08618831 1 0 -perijove%1:15:00:: 08619006 1 0 -peril%1:04:00:: 00802238 3 0 -peril%1:26:00:: 14541852 1 1 -peril%1:26:01:: 14543552 2 0 -peril%2:32:00:: 01036319 2 0 -peril%2:42:00:: 02697120 1 0 -perilla%1:20:00:: 12860842 1 0 -perilla_frutescens_crispa%1:20:00:: 12860978 1 0 -perilous%5:00:00:dangerous:00 02060496 1 4 -perilously%4:02:00:: 00090228 1 1 -perilousness%1:26:00:: 14541538 1 0 -perilune%1:15:00:: 08619112 1 0 -perilymph%1:08:00:: 05322247 1 0 -perimeter%1:07:00:: 05101261 3 0 -perimeter%1:25:00:: 13903387 1 0 -perimeter%1:25:01:: 13871452 2 0 -perimysium%1:08:00:: 05296127 1 0 -perinasal%3:01:00:: 02978928 1 0 -perinatal%3:00:00:: 00129276 1 0 -perinatologist%1:18:00:: 10416444 1 0 -perinatology%1:09:00:: 06053982 1 0 -perineal%3:01:00:: 02856851 1 0 -perineal_artery%1:08:00:: 05353507 1 0 -perineotomy%1:04:00:: 00680803 1 0 -perineum%1:08:00:: 05538494 1 0 -perineurium%1:08:00:: 05296001 1 0 -period%1:10:00:: 06843520 7 0 -period%1:22:00:: 13513747 6 0 -period%1:28:00:: 15113229 1 94 -period%1:28:02:: 15289779 2 2 -period%1:28:03:: 15247518 4 0 -period%1:28:04:: 15144178 5 0 -period%1:28:07:: 15258281 3 0 -period_of_play%1:28:00:: 15256915 1 0 -period_of_time%1:28:00:: 15113229 1 7 -period_piece%1:06:00:: 03916581 1 1 -periodic%3:00:00:: 01967240 1 5 -periodic%5:00:00:sporadic:00 00594004 2 0 -periodic_acid%1:27:00:: 14972582 1 0 -periodic_apnea_of_the_newborn%1:26:00:: 14369530 1 0 -periodic_breathing%1:04:00:: 00834290 1 0 -periodic_edema%1:26:00:: 14120310 1 0 -periodic_event%1:11:00:: 07296190 1 0 -periodic_law%1:09:00:: 05887156 1 0 -periodic_motion%1:11:00:: 07349679 1 0 -periodic_movement%1:11:00:: 07349679 1 0 -periodic_sentence%1:10:00:: 06285940 1 0 -periodic_table%1:14:00:: 08267446 1 0 -periodical%1:10:00:: 06593296 1 4 -periodical%3:00:00:: 01967240 1 0 -periodical_cicada%1:05:00:: 02257284 1 0 -periodically%4:02:00:: 00212974 1 3 -periodicity%1:07:00:: 04767805 1 1 -periodontal%3:01:00:: 02916006 1 0 -periodontal_disease%1:26:00:: 14080622 1 0 -periodontia%1:09:00:: 06048851 1 0 -periodontic%3:01:00:: 02916006 1 0 -periodontics%1:09:00:: 06048851 1 0 -periodontist%1:18:00:: 10416567 1 0 -periodontitis%1:26:00:: 14080622 1 0 -periophthalmus%1:05:00:: 02619409 1 0 -periosteum%1:08:00:: 05327373 1 0 -peripatetic%1:18:00:: 10416732 1 0 -peripatetic%1:18:01:: 09808080 2 0 -peripatetic%3:01:00:: 03028465 1 0 -peripatetic%5:00:00:unsettled:01 02128388 2 0 -peripateticism%1:09:00:: 05969194 1 0 -peripatidae%1:05:00:: 02000036 1 0 -peripatopsidae%1:05:00:: 02000618 1 0 -peripatopsis%1:05:00:: 02000764 1 0 -peripatus%1:05:00:: 01999767 1 0 -peripeteia%1:11:00:: 07298715 1 0 -peripetia%1:11:00:: 07298715 1 0 -peripety%1:11:00:: 07298715 1 0 -peripheral%1:06:00:: 03916720 1 0 -peripheral%3:00:00:: 00331446 1 2 -peripheral%5:00:00:incidental:00 01857743 2 1 -peripheral_device%1:06:00:: 03916720 1 0 -peripheral_nervous_system%1:08:00:: 05504336 1 0 -peripheral_vision%1:09:00:: 05657373 1 0 -peripherally%4:02:00:: 00114932 1 2 -periphery%1:25:00:: 13903576 1 4 -periphrasis%1:10:00:: 07090379 1 0 -periphrastic%5:00:00:indirect:02 00767626 1 0 -periplaneta%1:05:00:: 02234181 1 0 -periplaneta_americana%1:05:00:: 02234355 1 0 -periplaneta_australasiae%1:05:00:: 02234570 1 0 -periploca%1:20:00:: 13237343 1 0 -periploca_graeca%1:20:00:: 13237508 1 0 -peripteral%3:00:00:: 00139870 1 0 -perirhinal%3:01:00:: 02978928 1 0 -periscope%1:06:00:: 03917048 1 0 -periselene%1:15:00:: 08619112 1 0 -perish%2:30:00:: 00358431 1 5 -perishability%1:07:00:: 04793731 1 0 -perishable%1:13:00:: 07937344 1 0 -perishable%3:00:00:: 01753365 1 0 -perishableness%1:07:00:: 04793731 1 0 -perisher%1:18:00:: 10416828 1 0 -perisoreus%1:05:00:: 01581041 1 0 -perisoreus_canadensis%1:05:00:: 01581166 1 0 -perisoreus_canadensis_capitalis%1:05:00:: 01581434 1 0 -perisperm%1:20:00:: 11686652 1 0 -perissodactyl%1:05:00:: 02373336 1 0 -perissodactyl_mammal%1:05:00:: 02373336 1 0 -perissodactyla%1:05:00:: 02373093 1 0 -peristalsis%1:22:00:: 13534773 1 0 -peristediinae%1:05:00:: 02651215 1 0 -peristedion%1:05:00:: 02651412 1 0 -peristedion_miniatum%1:05:00:: 02651617 1 0 -peristome%1:05:00:: 02511510 2 0 -peristome%1:20:00:: 11685876 1 0 -peristylar%5:00:00:peripteral:00 00140075 1 0 -peristyle%1:06:00:: 03917198 1 0 -perithecium%1:20:00:: 12962310 1 0 -perithelial%3:01:00:: 02775797 1 0 -perithelium%1:08:00:: 05327652 1 0 -peritoneal%3:01:00:: 03001012 1 0 -peritoneal_cavity%1:08:00:: 05427946 1 0 -peritoneal_inflammation%1:26:00:: 14352687 1 0 -peritoneum%1:08:00:: 05427739 1 0 -peritonitis%1:26:00:: 14352687 1 0 -peritonsillar_abscess%1:26:00:: 14173823 1 0 -peritrate%1:06:00:: 03912328 1 0 -peritrichous%5:00:00:covered:00 01696999 1 0 -periwig%1:06:00:: 03917327 1 0 -periwigged%5:00:00:wigged:00 02564683 1 0 -periwinkle%1:05:00:: 01948446 4 0 -periwinkle%1:13:00:: 07782668 3 0 -periwinkle%1:20:01:: 11777929 1 1 -periwinkle%1:20:02:: 11772408 2 0 -periwinkle_plant_derivative%1:06:00:: 03917455 1 0 -perjure%2:32:00:: 00834745 1 0 -perjurer%1:18:00:: 10416909 1 0 -perjury%1:04:00:: 00772381 1 0 -perk%1:21:00:: 13298011 1 0 -perk%2:29:00:: 00023473 1 0 -perk_up%2:29:00:: 00023473 1 1 -perk_up%2:29:01:: 00022686 2 0 -perked_up%5:00:00:enlivened:00 00119993 1 0 -perkily%4:02:00:: 00420260 1 0 -perkiness%1:07:00:: 04649651 2 0 -perkiness%1:12:00:: 07530723 1 0 -perky%5:00:00:cheerful:00 00363621 1 2 -perleche%1:26:00:: 14058066 1 0 -perm%1:08:00:: 05260533 2 0 -perm%1:15:00:: 09009372 1 0 -perm%2:29:00:: 00039824 1 0 -permafrost%1:17:00:: 09390146 1 0 -permalloy%1:27:00:: 14979285 1 0 -permanence%1:07:00:: 05053215 1 1 -permanency%1:07:00:: 05053215 1 0 -permanent%1:08:00:: 05260533 1 0 -permanent%3:00:00:: 01754421 1 13 -permanent%5:00:00:irreversible:00 01759527 2 0 -permanent-press%5:00:00:unironed:00 01360085 1 0 -permanent_injunction%1:10:00:: 06543389 1 0 -permanent_magnet%1:06:00:: 03917622 1 0 -permanent_press%1:06:00:: 03917814 1 0 -permanent_tooth%1:08:00:: 05306708 1 0 -permanent_wave%1:08:00:: 05260533 1 0 -permanently%4:02:00:: 00087916 1 4 -permanganate%1:27:00:: 14979410 1 0 -permanganate_of_potash%1:27:00:: 14995278 1 0 -permanganic_acid%1:27:00:: 14979588 1 0 -permeability%1:07:00:: 04940496 1 0 -permeable%3:00:00:: 01772032 1 0 -permeableness%1:07:00:: 04940496 1 0 -permeant%5:00:00:distributive:00 00468795 1 0 -permeate%2:35:00:: 01457954 2 0 -permeate%2:35:01:: 01229071 1 2 -permeate%2:35:02:: 01227235 3 0 -permeating%5:00:00:distributive:00 00468795 1 0 -permeation%1:04:00:: 00051712 2 0 -permeation%1:22:00:: 13534954 1 0 -permeative%5:00:00:distributive:00 00468795 1 0 -permed%5:00:00:curly:00 01030525 1 0 -permian%1:28:00:: 15127165 1 1 -permian_period%1:28:00:: 15127165 1 0 -permic%1:10:00:: 06956896 1 0 -permissibility%1:07:00:: 04793209 1 0 -permissible%3:00:00:: 01760944 1 0 -permissible%5:00:00:admissible:00 01762404 2 0 -permissibly%4:02:00:: 00086926 1 0 -permission%1:04:00:: 01139194 2 1 -permission%1:10:00:: 06689297 1 5 -permissive%3:00:01:: 01762839 2 0 -permissive%3:00:02:: 01763594 1 0 -permissive_waste%1:04:00:: 01252124 1 0 -permissively%4:02:00:: 00086845 1 0 -permissiveness%1:07:00:: 04637923 1 0 -permit%1:04:00:: 01139194 2 1 -permit%1:05:00:: 02579928 3 0 -permit%1:10:02:: 06549661 1 6 -permit%2:32:00:: 00802318 1 55 -permit%2:32:06:: 00802946 3 0 -permit%2:41:00:: 02423183 2 39 -permutability%1:07:00:: 04737568 1 0 -permutable%5:00:00:exchangeable:00 00918200 1 0 -permutableness%1:07:00:: 04737568 1 0 -permutation%1:04:00:: 00399223 3 0 -permutation%1:04:01:: 00870312 2 0 -permutation%1:04:02:: 00339646 4 0 -permutation%1:11:00:: 07443761 1 0 -permute%2:30:00:: 00380424 1 0 -pernambuco%1:15:00:: 08856475 1 0 -pernambuco_wood%1:20:00:: 12489268 1 0 -pernicious%5:00:00:harmful:00 01162406 2 0 -pernicious%5:00:00:noxious:00 01611329 1 0 -pernicious_anaemia%1:26:00:: 14167426 1 0 -pernicious_anemia%1:26:00:: 14167426 1 0 -perniciously%4:02:00:: 00277435 2 0 -perniciously%4:02:01:: 00378212 1 0 -perniciousness%1:07:00:: 04790942 1 0 -pernickety%5:00:00:fastidious:00 00985104 1 0 -pernio%1:26:00:: 14183522 1 0 -pernis%1:05:00:: 01608086 1 0 -pernis_apivorus%1:05:00:: 01608265 1 0 -pernod%1:13:00:: 07910656 1 0 -pernyi_moth%1:05:00:: 02304657 1 0 -perodicticus%1:05:00:: 02499178 1 0 -perodicticus_potto%1:05:00:: 02499316 1 0 -perognathus%1:05:00:: 02349040 1 0 -perognathus_flavescens%1:05:00:: 02349390 1 0 -perognathus_flavus%1:05:00:: 02349205 1 0 -perognathus_hispidus%1:05:00:: 02349557 1 0 -peromyscus%1:05:00:: 02336451 1 0 -peromyscus_eremicus%1:05:00:: 02337171 1 0 -peromyscus_gossypinus%1:05:00:: 02337332 1 0 -peromyscus_leucopus%1:05:00:: 02336826 1 0 -peromyscus_maniculatus%1:05:00:: 02337001 1 0 -peron%1:18:00:: 11230021 1 0 -peroneal%3:01:00:: 02856972 1 0 -peroneal_vein%1:08:00:: 05376844 1 0 -peroneus%1:08:00:: 05575960 1 0 -peronospora%1:20:00:: 12980652 1 0 -peronospora_destructor%1:20:00:: 12981301 1 0 -peronospora_hyoscyami%1:20:00:: 12981443 1 0 -peronospora_tabacina%1:20:00:: 12981086 1 0 -peronosporaceae%1:20:00:: 12980478 1 0 -peronosporales%1:20:00:: 12980231 1 0 -perorate%2:32:00:: 01051573 2 0 -perorate%2:32:01:: 01051698 1 0 -peroration%1:10:00:: 06399126 2 0 -peroration%1:10:01:: 07241723 1 0 -peroxidase%1:27:00:: 14979730 1 0 -peroxide%1:27:00:: 14781225 1 1 -peroxide%1:27:01:: 14980087 2 0 -peroxide%2:30:00:: 00279661 1 0 -peroxide_blond%1:18:00:: 10417045 1 0 -peroxide_blonde%1:18:00:: 10417045 1 0 -perpendicular%1:06:00:: 03917973 4 0 -perpendicular%1:06:01:: 03969627 3 0 -perpendicular%1:09:00:: 05843236 2 0 -perpendicular%1:25:00:: 13870680 1 0 -perpendicular%3:00:00:: 01720280 1 0 -perpendicular%3:00:04:: 01233347 2 0 -perpendicular%5:00:00:steep:00 01145724 3 0 -perpendicular_style%1:09:00:: 05843236 1 0 -perpendicularity%1:07:00:: 05072208 2 0 -perpendicularity%1:24:00:: 13829047 1 0 -perpendicularly%4:02:00:: 00420382 2 0 -perpendicularly%4:02:01:: 00452126 1 0 -perpetrate%2:41:00:: 02582615 1 2 -perpetration%1:04:00:: 00773235 1 1 -perpetrator%1:18:00:: 10417168 1 0 -perpetual%5:00:00:continuous:01 00595299 2 0 -perpetual%5:00:00:permanent:00 01755024 1 1 -perpetual_calendar%1:14:00:: 08267008 1 0 -perpetual_motion%1:26:00:: 14005549 1 0 -perpetual_motion_machine%1:06:00:: 03918074 1 0 -perpetual_warrant%1:21:00:: 13418616 1 0 -perpetually%4:02:00:: 00020280 2 0 -perpetually%4:02:01:: 00227968 1 0 -perpetuate%2:42:00:: 02648253 1 10 -perpetuation%1:04:00:: 01018366 1 2 -perpetuity%1:07:00:: 05053527 1 0 -perphenazine%1:06:00:: 03918297 1 0 -perplex%2:30:00:: 00402539 2 0 -perplex%2:31:00:: 00622384 1 0 -perplexed%3:00:00:: 01765643 1 2 -perplexedly%4:02:00:: 00420525 1 0 -perplexing%5:00:00:unclear:00 00430756 1 2 -perplexity%1:09:00:: 05685363 1 0 -perquisite%1:07:00:: 05178715 2 0 -perquisite%1:21:00:: 13298011 1 0 -perry%1:13:00:: 07922147 4 0 -perry%1:18:00:: 11230158 3 0 -perry%1:18:01:: 11230402 2 0 -perry%1:18:02:: 11230669 1 0 -perry_mason%1:18:00:: 09602716 1 0 -persea%1:20:00:: 11706629 1 0 -persea_americana%1:20:00:: 11706761 1 0 -persea_borbonia%1:20:00:: 11706942 1 0 -persecute%2:41:00:: 02585489 1 2 -persecution%1:04:00:: 00420477 1 3 -persecutor%1:18:00:: 10716005 1 0 -persephone%1:18:00:: 09569467 1 0 -persepolis%1:15:00:: 08913085 1 0 -perseus%1:17:00:: 09390236 2 0 -perseus%1:18:00:: 09497163 1 0 -perseverance%1:04:00:: 01021579 2 0 -perseverance%1:07:00:: 04864515 1 0 -perseverate%2:32:00:: 00958823 1 0 -perseveration%1:04:00:: 01021579 2 0 -perseveration%1:09:00:: 06200010 1 0 -persevere%2:30:00:: 00350461 1 1 -persevering%5:00:00:patient:00 01736122 1 0 -perseveringly%4:02:00:: 00272435 1 0 -pershing%1:18:00:: 11230780 1 0 -persia%1:15:00:: 08910668 2 0 -persia%1:15:01:: 08912842 1 0 -persian%1:10:00:: 06974127 2 0 -persian%1:18:00:: 09714429 1 0 -persian%3:01:00:: 03075191 1 0 -persian_cat%1:05:00:: 02123394 1 0 -persian_deity%1:18:00:: 09531630 1 0 -persian_empire%1:15:00:: 08912842 1 0 -persian_gulf%1:17:00:: 09390424 1 0 -persian_gulf_illness%1:26:00:: 14305699 1 0 -persian_gulf_war%1:04:00:: 01307090 1 0 -persian_iris%1:20:00:: 12414449 1 0 -persian_lamb%1:05:00:: 02412977 2 0 -persian_lamb%1:27:00:: 14765240 1 0 -persian_lilac%1:20:01:: 12311045 2 0 -persian_lilac%1:20:02:: 12695975 1 0 -persian_melon%1:13:00:: 07756499 2 0 -persian_melon%1:20:00:: 12164881 1 0 -persian_violet%1:20:00:: 12292463 1 0 -persian_walnut%1:20:00:: 12319414 1 0 -persiflage%1:10:00:: 06778032 1 0 -persimmon%1:13:00:: 07746186 2 0 -persimmon%1:20:00:: 12771192 1 0 -persimmon_tree%1:20:00:: 12771192 1 0 -persist%2:30:01:: 00350461 2 8 -persist%2:42:00:: 02647497 1 11 -persist%2:42:01:: 02731024 3 1 -persist_in%2:42:00:: 02747922 1 3 -persistence%1:04:00:: 01021579 3 0 -persistence%1:07:00:: 04864515 2 2 -persistence%1:07:02:: 05054130 1 5 -persistency%1:07:00:: 04864515 1 3 -persistent%3:00:00:: 01758339 3 0 -persistent%5:00:00:continual:00 00593071 1 10 -persistent%5:00:00:stubborn:00 02327569 4 0 -persistent%5:00:00:unforgettable:00 01040544 2 1 -persistently%4:02:00:: 00272512 2 1 -persistently%4:02:01:: 00420679 1 1 -persisting%5:00:00:continuous:01 00596043 1 0 -persnickety%5:00:00:fastidious:00 00985104 2 0 -persnickety%5:00:00:proud:00 01890382 1 0 -person%1:03:00:: 00007846 1 6833 -person%1:08:00:: 05217688 2 1 -person%1:10:00:: 06326797 3 0 -person-to-person%4:02:00:: 00044579 1 0 -person-to-person%5:00:00:personal:00 01769179 1 0 -person_agreement%1:24:00:: 13797747 1 0 -person_hour%1:28:00:: 15230482 1 0 -person_of_color%1:18:00:: 09636106 1 0 -person_of_colour%1:18:00:: 09636106 1 0 -persona%1:07:00:: 04677716 2 0 -persona%1:09:00:: 05929008 1 1 -persona_grata%1:18:00:: 10417843 1 0 -persona_non_grata%1:18:00:: 09631129 2 0 -persona_non_grata%1:18:01:: 10417969 1 0 -personable%5:00:00:attractive:01 00168694 1 0 -personableness%1:07:00:: 04618921 1 0 -personage%1:18:00:: 10417682 1 1 -personage%1:18:01:: 10200781 2 0 -personal%1:10:00:: 06271288 1 0 -personal%3:00:00:: 01767329 1 31 -personal%3:01:00:: 02858707 5 0 -personal%3:01:01:: 02858816 3 2 -personal%5:00:00:physical:00 01779428 4 1 -personal%5:00:00:subjective:00 01616157 2 12 -personal_appeal%1:07:00:: 04686537 1 0 -personal_business%1:09:00:: 05671676 1 0 -personal_care%1:04:00:: 00665476 1 0 -personal_chattel%1:21:00:: 13245846 1 0 -personal_check%1:21:00:: 13383289 1 0 -personal_cheque%1:21:00:: 13383289 1 0 -personal_computer%1:06:00:: 03918480 1 0 -personal_credit_line%1:21:00:: 13379413 1 0 -personal_digital_assistant%1:06:00:: 03918737 1 0 -personal_effects%1:21:00:: 13246079 1 0 -personal_equation%1:07:00:: 04773068 1 0 -personal_estate%1:21:00:: 13245626 1 0 -personal_expense%1:21:00:: 13277644 1 0 -personal_foul%1:04:00:: 00771198 1 0 -personal_identification_number%1:10:00:: 06887441 1 0 -personal_identity%1:07:00:: 04618070 1 0 -personal_income%1:21:00:: 13259359 1 0 -personal_judgement%1:04:00:: 01189650 1 0 -personal_judgment%1:04:00:: 01189650 1 0 -personal_letter%1:10:00:: 06625329 1 0 -personal_line_of_credit%1:21:00:: 13379413 1 0 -personal_loan%1:21:00:: 13399782 1 0 -personal_magnetism%1:07:00:: 04686537 1 0 -personal_manner%1:07:00:: 04910135 1 0 -personal_matters%1:09:00:: 05671676 1 0 -personal_memory%1:09:00:: 05761044 1 0 -personal_organiser%1:06:00:: 03918737 1 0 -personal_organizer%1:06:00:: 03918737 1 0 -personal_pronoun%1:10:00:: 06327136 1 2 -personal_property%1:21:00:: 13245626 1 2 -personal_relation%1:24:00:: 13781670 1 0 -personal_relationship%1:24:00:: 13781670 1 0 -personal_representative%1:18:00:: 10417551 1 0 -personalise%2:30:00:: 00388065 1 0 -personalised%5:00:01:personal:00 01768252 1 0 -personality%1:07:00:: 04617562 1 14 -personality%1:18:00:: 10417424 2 2 -personality_assessment%1:10:00:: 06474289 1 0 -personality_disorder%1:26:00:: 14387807 1 0 -personality_inventory%1:10:00:: 06474289 1 0 -personality_test%1:04:00:: 01007463 1 0 -personalize%2:30:00:: 00388065 1 1 -personalized%5:00:01:personal:00 01768252 1 1 -personalized%5:00:02:personal:00 01768969 2 0 -personally%4:02:00:: 00132060 2 4 -personally%4:02:01:: 00366393 1 7 -personally%4:02:02:: 00132322 5 1 -personally%4:02:03:: 00366266 3 2 -personally%4:02:04:: 00132158 4 2 -personalty%1:21:00:: 13245626 1 0 -personate%2:31:00:: 00727573 2 0 -personate%2:32:00:: 00837288 1 0 -personation%1:04:00:: 00549284 1 0 -personation%1:04:01:: 00548802 2 0 -personhood%1:07:00:: 04618781 1 0 -personification%1:04:00:: 00933259 3 0 -personification%1:10:00:: 07108123 2 0 -personification%1:18:00:: 10418101 1 1 -personify%2:31:00:: 00727573 3 0 -personify%2:42:00:: 02697725 2 2 -personify%2:42:01:: 02698944 1 2 -personnel%1:14:00:: 08208016 1 27 -personnel%1:14:01:: 08118991 2 0 -personnel_carrier%1:06:00:: 03919096 1 0 -personnel_casualty%1:11:00:: 07340725 1 0 -personnel_department%1:14:00:: 08118991 1 0 -personnel_office%1:14:00:: 08118991 1 0 -personnel_pouch%1:06:00:: 02862770 1 0 -persoonia%1:20:00:: 12222334 1 0 -perspective%1:07:00:: 04676308 2 1 -perspective%1:09:00:: 06208751 1 6 -perspex%1:27:00:: 14594032 1 0 -perspicacious%5:00:00:discerning:00 00771803 2 0 -perspicacious%5:00:00:wise:00 02569558 1 0 -perspicaciousness%1:09:00:: 05621439 1 0 -perspicacity%1:07:00:: 04892084 2 0 -perspicacity%1:09:00:: 05621439 1 0 -perspicuity%1:07:00:: 04821615 1 0 -perspicuous%5:00:00:clear:00 00429355 1 0 -perspicuously%4:02:00:: 00389595 1 0 -perspicuousness%1:07:00:: 04821615 1 0 -perspiration%1:08:00:: 05405751 1 5 -perspiration%1:22:00:: 13535261 2 0 -perspire%2:29:00:: 00067545 1 0 -perspirer%1:18:00:: 10418735 1 0 -persuadable%5:00:00:susceptible:00 02361848 1 0 -persuade%2:32:00:: 00766418 2 12 -persuade%2:41:00:: 02586121 1 17 -persuader%1:18:00:: 10418841 1 0 -persuasible%5:00:00:susceptible:00 02361848 1 0 -persuasion%1:09:00:: 05945642 2 0 -persuasion%1:10:00:: 07245125 1 0 -persuasive%3:00:00:: 01769843 1 1 -persuasively%4:02:00:: 00420827 1 0 -persuasiveness%1:07:00:: 05191832 1 0 -pert%5:00:00:spirited:00 02280090 1 1 -pertain%2:42:00:: 02653706 2 1 -pertain%2:42:01:: 02676054 1 9 -pertainym%1:10:00:: 06322357 1 0 -perth%1:15:00:: 08834806 1 0 -pertinacious%5:00:00:stubborn:00 02327569 1 0 -pertinaciously%4:02:00:: 00420948 1 0 -pertinacity%1:07:00:: 04864515 1 0 -pertinence%1:24:00:: 13795180 1 1 -pertinency%1:24:00:: 13795180 1 0 -pertinent%5:00:00:apropos:00 00138314 2 2 -pertinent%5:00:00:relevant:00 01975833 1 5 -pertinently%4:02:00:: 00421098 1 0 -pertly%4:02:00:: 00366490 1 0 -pertness%1:07:00:: 04649651 1 0 -pertness%1:07:01:: 04632703 2 0 -perturb%2:30:00:: 00276601 4 0 -perturb%2:37:00:: 01764171 1 1 -perturb%2:38:00:: 02065329 3 0 -perturb%2:38:01:: 02065652 2 0 -perturbation%1:04:00:: 00553173 5 0 -perturbation%1:07:00:: 04904996 4 0 -perturbation%1:11:00:: 07428450 3 0 -perturbation%1:19:00:: 11414874 2 0 -perturbation%1:26:00:: 14403282 1 2 -perturbed%5:00:00:discomposed:00 00532560 1 0 -perturbing%5:00:00:heavy:02 01189386 1 0 -pertusaria%1:20:00:: 12989301 1 0 -pertusariaceae%1:20:00:: 12989142 1 0 -pertussis%1:26:00:: 14144626 1 0 -peru%1:15:00:: 08979054 1 1 -peruke%1:06:00:: 03917327 1 0 -peruked%5:00:00:wigged:00 02564683 1 0 -perusal%1:10:00:: 06598445 1 1 -peruse%2:39:00:: 02152812 1 1 -perusing%1:10:00:: 06598445 1 0 -perutz%1:18:00:: 11230977 1 0 -peruvian%1:18:00:: 09726499 1 0 -peruvian%3:01:00:: 02966154 1 0 -peruvian_balsam%1:20:00:: 12551457 1 0 -peruvian_bark%1:20:00:: 12664710 1 0 -peruvian_cotton%1:20:00:: 12177129 1 0 -peruvian_current%1:19:00:: 11489878 1 0 -peruvian_lily%1:20:00:: 12438783 1 0 -peruvian_mastic_tree%1:20:00:: 12765115 1 0 -peruvian_monetary_unit%1:23:00:: 13680273 1 0 -pervade%2:35:00:: 01229071 1 3 -pervaporate%2:30:00:: 00367241 2 0 -pervaporate%2:30:01:: 00367416 1 0 -pervaporation%1:04:00:: 00375348 1 1 -pervasion%1:22:00:: 13534954 1 0 -pervasive%5:00:00:distributive:00 00468795 1 0 -pervasively%4:02:00:: 00421324 1 0 -pervasiveness%1:07:00:: 04765166 1 0 -perverse%5:00:00:corrupt:00 00621524 3 0 -perverse%5:00:00:disobedient:00 01613839 2 0 -perverse%5:00:00:negative:02 01818820 1 2 -perversely%4:02:00:: 00247859 1 2 -perversely%4:02:03:: 00247969 2 0 -perverseness%1:07:00:: 04909018 1 0 -perverseness%1:07:01:: 04853503 2 0 -perversion%1:04:00:: 00742474 3 0 -perversion%1:04:01:: 00854717 2 0 -perversion%1:25:00:: 13876921 1 0 -perversity%1:07:00:: 04853503 2 0 -perversity%1:07:01:: 04909018 1 0 -perversive%5:00:00:evil:00 01132366 1 0 -pervert%1:18:00:: 10419047 1 0 -pervert%2:30:00:: 00203213 3 0 -pervert%2:32:00:: 00932798 2 0 -pervert%2:41:00:: 02579447 1 0 -perverted%5:00:00:abnormal:00 01597509 1 0 -perverted%5:00:00:corrupt:00 00621524 3 0 -perverted%5:00:00:disingenuous:00 01311067 2 0 -pervious%3:00:00:: 01773234 1 0 -perviousness%1:07:00:: 04940730 1 0 -pes%1:08:00:: 05563266 1 0 -pes_cavus%1:26:00:: 14214001 1 0 -pes_planus%1:08:00:: 05576421 1 0 -pesach%1:28:00:: 15195928 1 0 -pesah%1:28:00:: 15195928 1 0 -pesantran%1:14:00:: 08283866 1 0 -pesantren%1:14:00:: 08283866 1 0 -peseta%1:23:00:: 13690758 1 0 -pesewa%1:23:00:: 13667150 1 0 -pesh_merga%1:14:00:: 08030379 1 0 -peshawar%1:15:00:: 08977527 1 0 -peshmerga%1:18:00:: 10417288 1 0 -pesky%5:00:00:disagreeable:00 00089550 1 0 -peso%1:23:03:: 13691764 7 0 -peso%1:23:04:: 13692014 6 0 -peso%1:23:05:: 13692278 5 0 -peso%1:23:06:: 13692822 3 0 -peso%1:23:07:: 13693084 2 0 -peso%1:23:08:: 13693349 1 0 -peso%1:23:09:: 13691509 8 0 -peso%1:23:10:: 13692559 4 0 -pessary%1:06:00:: 03189461 1 0 -pessimal%5:00:00:worst:00 00230208 1 0 -pessimism%1:07:00:: 05211974 2 0 -pessimism%1:12:00:: 07543033 1 1 -pessimist%1:18:00:: 10419472 1 1 -pessimistic%3:00:00:: 01664581 1 1 -pessimistically%4:02:00:: 00414436 1 0 -pessimum%5:00:00:worst:00 00230208 1 0 -pest%1:05:00:: 01314388 4 0 -pest%1:18:00:: 10419630 3 0 -pest%1:26:00:: 14076479 2 0 -pest%1:26:01:: 14138691 1 0 -pester%2:37:00:: 01803380 1 2 -pestered%5:00:00:troubled:00 02455845 1 2 -pesterer%1:18:00:: 10419630 1 0 -pestering%5:00:00:disagreeable:00 00089550 1 1 -pesthole%1:15:00:: 08619250 1 0 -pesthouse%1:06:00:: 03650803 1 0 -pesticide%1:27:00:: 14980215 1 0 -pesticide_poisoning%1:26:00:: 14512508 1 0 -pestiferous%5:00:00:disagreeable:00 00089550 4 0 -pestiferous%5:00:00:epidemic:00 01427333 2 0 -pestiferous%5:00:00:evil:00 01132366 3 0 -pestiferous%5:00:00:septic:00 02114296 1 0 -pestilence%1:09:00:: 05693669 3 0 -pestilence%1:26:00:: 14076479 2 0 -pestilence%1:26:01:: 14138691 1 0 -pestilent%5:00:00:epidemic:00 01427333 2 0 -pestilent%5:00:00:noxious:00 01611329 1 0 -pestilential%5:00:00:epidemic:00 01427333 1 1 -pestis%1:26:01:: 14138691 1 0 -pestis_ambulans%1:26:00:: 14139333 1 0 -pestis_bubonica%1:26:00:: 14139015 1 0 -pestle%1:06:00:: 03919289 3 0 -pestle%1:06:01:: 03919430 2 0 -pestle%1:06:02:: 04300080 1 0 -pestle%2:30:00:: 00331842 1 0 -pesto%1:13:00:: 07832416 1 0 -pet%1:04:00:: 00902376 4 0 -pet%1:05:00:: 01318894 1 2 -pet%1:12:00:: 07553176 3 0 -pet%1:18:00:: 09991867 2 0 -pet%2:35:00:: 01425892 1 1 -pet%2:35:01:: 01226600 2 0 -pet%5:00:00:loved:00 01462882 1 0 -pet-food%1:13:00:: 07805731 1 0 -pet_food%1:13:00:: 07805731 1 0 -pet_name%1:10:00:: 06339244 1 0 -pet_peeve%1:10:00:: 07211604 1 0 -pet_scanner%1:06:00:: 03987990 1 0 -pet_shop%1:06:00:: 03920641 1 0 -pet_sitter%1:18:00:: 10420507 1 0 -pet_sitting%1:04:00:: 00655878 1 0 -petabit%1:23:00:: 13630545 1 0 -petabyte%1:23:00:: 13630213 2 0 -petabyte%1:23:01:: 13630387 1 0 -petal%1:20:00:: 11690455 1 2 -petal-like%5:00:00:leafy:00 01702727 1 0 -petaled%3:00:00:: 01775540 1 0 -petalled%3:00:00:: 01775540 1 0 -petalless%3:00:00:: 01776532 1 0 -petallike%5:00:00:leafy:00 01702727 1 0 -petaloid%3:01:00:: 02776496 1 0 -petalous%3:00:00:: 01775540 1 0 -petard%1:06:00:: 03919702 1 0 -petasites%1:20:00:: 12002197 1 0 -petasites_fragrans%1:20:00:: 12002651 1 0 -petasites_hybridus%1:20:00:: 12002428 1 0 -petasites_sagitattus%1:20:00:: 12002826 1 0 -petasites_vulgaris%1:20:00:: 12002428 1 0 -petaurista%1:05:00:: 02362420 1 0 -petaurista_petaurista%1:05:00:: 02362569 1 0 -petauristidae%1:05:00:: 02362025 1 0 -petaurus%1:05:00:: 01881991 1 0 -petchary%1:05:00:: 01549053 1 0 -petcock%1:06:00:: 03919808 1 0 -pete_seeger%1:18:00:: 11290984 1 0 -petechia%1:26:00:: 14289193 1 0 -peter%1:08:00:: 05526713 2 0 -peter%1:18:00:: 11231157 1 0 -peter's_gland%1:08:00:: 05430454 1 0 -peter's_pence%1:21:00:: 13270760 1 0 -peter_abelard%1:18:00:: 10807317 1 0 -peter_alexander_ustinov%1:18:00:: 11358065 1 0 -peter_behrens%1:18:00:: 10841880 1 0 -peter_carl_faberge%1:18:00:: 10964829 1 0 -peter_carl_goldmark%1:18:00:: 11005050 1 0 -peter_cooper%1:18:00:: 10909471 1 0 -peter_goldmark%1:18:00:: 11005050 1 0 -peter_i%1:18:00:: 11231433 1 0 -peter_ilich_tchaikovsky%1:18:00:: 11333762 1 0 -peter_lorre%1:18:00:: 11138924 1 0 -peter_mark_roget%1:18:00:: 11269085 1 0 -peter_medawar%1:18:00:: 11170913 1 0 -peter_minnewit%1:18:00:: 11181438 1 0 -peter_minuit%1:18:00:: 11181438 1 0 -peter_o'toole%1:18:00:: 11218473 1 0 -peter_out%2:29:00:: 00099517 2 0 -peter_out%2:42:00:: 02683671 1 1 -peter_pan%1:18:00:: 09602828 2 0 -peter_pan%1:18:01:: 10419785 1 0 -peter_pan_collar%1:06:00:: 03919974 1 0 -peter_paul_mauser%1:18:00:: 11165854 1 0 -peter_paul_rubens%1:18:00:: 11273104 1 0 -peter_seamus_o'toole%1:18:00:: 11218473 1 0 -peter_seeger%1:18:00:: 11290984 1 0 -peter_sellers%1:18:00:: 11292105 1 0 -peter_stuyvesant%1:18:00:: 11323094 1 0 -peter_tchaikovsky%1:18:00:: 11333762 1 0 -peter_the_great%1:18:00:: 11231433 1 0 -peterburg%1:15:00:: 09008454 1 0 -petersburg%1:04:00:: 01290435 2 0 -petersburg%1:15:00:: 09152218 1 0 -petersburg_campaign%1:04:00:: 01290435 1 0 -petfood%1:13:00:: 07805731 1 0 -petiole%1:20:00:: 13131618 1 0 -petiolule%1:20:00:: 11678299 1 0 -petit_bourgeois%1:14:00:: 08182105 2 0 -petit_bourgeois%1:18:00:: 10419916 1 0 -petit_dejeuner%1:13:00:: 07574780 1 1 -petit_four%1:13:00:: 07633640 1 0 -petit_juror%1:18:00:: 10420277 1 0 -petit_jury%1:14:00:: 08415272 1 0 -petit_larceny%1:04:00:: 00784083 1 0 -petit_mal%1:26:00:: 14083559 2 0 -petit_mal%1:26:01:: 14088127 1 0 -petit_mal_epilepsy%1:26:00:: 14088127 1 0 -petit_point%1:06:00:: 03920087 2 0 -petit_point%1:06:01:: 03920181 1 0 -petite%1:07:00:: 05096708 1 0 -petite%5:00:00:small:00 01392249 1 1 -petite_bourgeoisie%1:14:00:: 08182105 1 0 -petite_marmite%1:13:00:: 07586894 1 0 -petiteness%1:07:00:: 05106928 1 0 -petitio%1:09:00:: 05894814 1 0 -petitio_principii%1:09:00:: 05894814 1 0 -petition%1:10:00:: 06513366 1 6 -petition%1:10:01:: 07189130 2 0 -petition%2:32:00:: 00754731 1 2 -petitionary%5:00:00:beseeching:00 00714585 1 0 -petitioner%1:18:00:: 10420031 1 30 -petitioner%1:18:01:: 10672192 2 0 -petrarca%1:18:00:: 11231683 1 0 -petrarch%1:18:00:: 11231683 1 0 -petrarchan_sonnet%1:10:00:: 06382716 1 0 -petrel%1:05:00:: 02059162 1 0 -petri_dish%1:06:00:: 03920288 1 0 -petrifaction%1:17:00:: 09390680 2 0 -petrifaction%1:22:00:: 13535583 1 0 -petrification%1:22:00:: 13535583 1 0 -petrified_forest_national_park%1:15:00:: 08608314 1 0 -petrify%2:30:00:: 00507485 2 0 -petrify%2:30:01:: 00192471 1 1 -petrify%2:30:02:: 00418110 3 0 -petrifying%5:00:00:alarming:00 00196233 1 0 -petrissage%1:04:00:: 00659834 1 0 -petrochemical%1:27:00:: 14980468 1 0 -petrocoptis%1:20:00:: 11813830 1 0 -petrogale%1:05:00:: 01878803 1 0 -petroglyph%1:04:00:: 00942440 1 0 -petrograd%1:15:00:: 09008454 1 0 -petrol%1:27:00:: 14686913 1 0 -petrol_bomb%1:06:00:: 03781055 1 0 -petrol_engine%1:06:00:: 03424630 1 0 -petrol_gage%1:06:00:: 03424862 1 0 -petrol_gauge%1:06:00:: 03424862 1 0 -petrol_line%1:06:00:: 03401500 1 0 -petrol_pump%1:06:00:: 03425413 1 0 -petrol_station%1:06:00:: 03425092 1 0 -petrol_tank%1:06:00:: 03426134 1 0 -petrolatum%1:27:00:: 14980910 1 0 -petrolatum_gauze%1:06:00:: 03920384 1 0 -petroleum%1:27:00:: 14980579 1 0 -petroleum_future%1:06:00:: 03843724 1 0 -petroleum_geologist%1:18:00:: 10420392 1 1 -petroleum_geology%1:09:00:: 06121690 1 0 -petroleum_jelly%1:27:00:: 14980910 1 0 -petroleum_refinery%1:06:00:: 03844673 1 0 -petrology%1:09:00:: 06121375 1 0 -petromyzon%1:05:00:: 01477745 1 0 -petromyzon_marinus%1:05:00:: 01477875 1 0 -petromyzoniformes%1:05:00:: 01477184 1 0 -petromyzontidae%1:05:00:: 01477373 1 0 -petronas_towers%1:06:00:: 03920497 1 0 -petronius%1:18:00:: 11231821 1 0 -petronius_arbiter%1:18:00:: 11231821 1 0 -petroselinum%1:20:00:: 12942270 1 0 -petroselinum_crispum%1:20:00:: 12942395 1 0 -petroselinum_crispum_neapolitanum%1:20:00:: 12942572 1 0 -petroselinum_crispum_tuberosum%1:20:00:: 12942729 1 0 -petrous%5:00:00:hard:01 01152320 1 0 -petrus_stuyvesant%1:18:00:: 11323094 1 0 -petter%1:18:00:: 10420649 1 0 -petteria%1:20:00:: 12498316 1 0 -petteria_ramentacea%1:20:00:: 12498457 1 0 -petticoat%1:06:00:: 03920737 1 0 -petticoated%5:00:00:clothed:00 00456436 1 1 -pettifog%2:32:00:: 00774056 1 0 -pettifogger%1:18:00:: 10594857 1 0 -pettifogger%1:18:01:: 10501203 2 0 -pettifoggery%1:10:00:: 07184735 1 0 -pettily%4:02:00:: 00421403 1 0 -pettiness%1:07:00:: 05173205 2 0 -pettiness%1:07:01:: 04834073 3 0 -pettiness%1:09:00:: 06205827 1 0 -petting%1:04:00:: 00854000 1 1 -petting_zoo%1:14:00:: 07993526 1 0 -pettish%5:00:00:ill-natured:00 01136541 1 0 -pettishly%4:02:00:: 00216592 1 0 -pettishness%1:07:00:: 04642258 1 0 -petty%1:04:00:: 00784083 1 0 -petty%5:00:00:junior:00 02100968 1 0 -petty%5:00:00:narrow-minded:00 00288498 3 0 -petty%5:00:00:unimportant:00 01280908 2 0 -petty_apartheid%1:14:00:: 08379455 1 0 -petty_bourgeoisie%1:14:00:: 08182105 1 0 -petty_cash%1:21:00:: 13422411 1 0 -petty_criticism%1:10:00:: 06719203 1 0 -petty_juror%1:18:00:: 10420277 1 0 -petty_jury%1:14:00:: 08415272 1 0 -petty_larceny%1:04:00:: 00784083 1 0 -petty_morel%1:20:00:: 11797981 1 0 -petty_officer%1:18:00:: 10420809 1 0 -petty_spurge%1:20:00:: 12918810 1 0 -petty_whin%1:20:00:: 12530439 1 0 -petulance%1:12:00:: 07552729 1 1 -petulant%5:00:00:ill-natured:00 01136541 1 0 -petulantly%4:02:00:: 00216592 1 1 -petunia%1:20:00:: 12909421 1 0 -petunia%1:20:01:: 12909252 2 0 -petunia_axillaris%1:20:00:: 12909614 1 0 -petunia_hybrida%1:20:00:: 12909917 1 0 -petunia_integrifolia%1:20:00:: 12909759 1 0 -peul%1:10:00:: 06996510 1 0 -pew%1:06:00:: 03920867 1 1 -pewee%1:05:00:: 01549430 1 0 -pewit%1:05:01:: 02024763 2 0 -pewit%1:05:02:: 01549430 3 0 -pewit%1:05:03:: 02042180 1 0 -pewit_gull%1:05:00:: 02042180 1 0 -pewter%1:27:00:: 14718099 1 0 -peyer's_patch%1:08:00:: 05430454 1 0 -peyote%1:06:00:: 03750912 2 0 -peyote%1:20:00:: 11849271 1 0 -peyton_rous%1:18:00:: 11272523 1 0 -peziza%1:20:00:: 13030438 1 0 -peziza_coccinea%1:20:00:: 13030852 1 0 -peziza_domicilina%1:20:00:: 13030616 1 0 -pezizaceae%1:20:00:: 13030157 1 0 -pezizales%1:20:00:: 13029946 1 0 -pezophaps%1:05:00:: 01811394 1 0 -pezophaps_solitaria%1:05:00:: 01811542 1 0 -pfalz%1:15:00:: 08775439 1 0 -pfannkuchen%1:13:00:: 07641380 1 0 -pfc%1:27:00:: 14979132 1 0 -pfennig%1:23:00:: 13688190 1 1 -pflp%1:14:00:: 08038379 1 0 -pflp-gc%1:14:00:: 08038748 1 0 -ph%1:07:00:: 05039106 1 7 -ph.d.%1:10:00:: 06704115 1 0 -ph_scale%1:07:00:: 05039106 1 0 -phacelia%1:20:00:: 12836862 1 0 -phacelia_campanularia%1:20:00:: 12837052 1 0 -phacelia_minor%1:20:00:: 12837259 1 0 -phacelia_tanacetifolia%1:20:00:: 12837466 1 0 -phacelia_whitlavia%1:20:00:: 12837259 1 0 -phacochoerus%1:05:00:: 02396970 1 0 -phacoemulsification%1:04:00:: 00679140 1 0 -phaeochromocytoma%1:26:00:: 14250232 1 0 -phaeophyceae%1:05:00:: 01402169 1 0 -phaeophyta%1:05:00:: 01402381 1 0 -phaethon%1:05:00:: 02054966 2 0 -phaethon%1:18:00:: 09570114 1 0 -phaethontidae%1:05:00:: 02054834 1 0 -phaeton%1:06:00:: 04459122 1 0 -phage%1:05:00:: 01334862 1 0 -phagocyte%1:08:00:: 05450888 1 1 -phagocytic%3:01:00:: 02776576 1 0 -phagocytosis%1:22:00:: 13535837 1 0 -phagun%1:28:00:: 15221474 1 0 -phaius%1:20:00:: 12076223 1 0 -phalacrocoracidae%1:05:00:: 02053720 1 0 -phalacrocorax%1:05:00:: 02053859 1 0 -phalacrocorax_carbo%1:05:00:: 02054036 1 0 -phalacrosis%1:26:00:: 14457041 1 0 -phalaenopsis%1:20:00:: 12076381 1 0 -phalaenopsis_amabilis%1:20:00:: 12076852 1 0 -phalaenoptilus%1:05:00:: 01836527 1 0 -phalaenoptilus_nuttallii%1:05:00:: 01836673 1 0 -phalangeal%3:01:00:: 02776688 1 0 -phalanger%1:05:00:: 01881171 1 0 -phalangeridae%1:05:00:: 01880937 1 0 -phalangida%1:05:00:: 01769635 1 0 -phalangiidae%1:05:00:: 01769789 1 0 -phalangist%1:18:00:: 10076483 1 0 -phalangitis%1:26:00:: 14352801 1 0 -phalangium%1:05:00:: 01769930 1 0 -phalangium_opilio%1:05:00:: 01770081 1 0 -phalanx%1:08:00:: 05278584 1 3 -phalanx%1:14:00:: 08272460 3 0 -phalanx%1:14:01:: 08272564 2 1 -phalaris%1:20:00:: 12129525 1 0 -phalaris_aquatica%1:20:00:: 12130160 1 0 -phalaris_arundinacea%1:20:00:: 12129738 1 0 -phalaris_canariensis%1:20:00:: 12129986 1 0 -phalaris_tuberosa%1:20:00:: 12130160 1 0 -phalarope%1:05:00:: 02037464 1 0 -phalaropidae%1:05:00:: 02037278 1 0 -phalaropus%1:05:00:: 02037713 1 0 -phalaropus_fulicarius%1:05:00:: 02037869 1 0 -phalguna%1:28:00:: 15221474 1 0 -phallaceae%1:20:00:: 13039870 1 0 -phallales%1:20:00:: 13039553 1 0 -phallic%3:01:00:: 02839179 1 0 -phallic%5:00:00:male:00 01477391 2 0 -phallic_phase%1:28:00:: 15146828 1 0 -phallic_stage%1:28:00:: 15146828 1 0 -phalloplasty%1:04:00:: 00689995 1 0 -phallus%1:08:00:: 05526384 2 0 -phallus%1:20:00:: 13040108 1 0 -phallus_impudicus%1:20:00:: 13040629 1 0 -phallus_ravenelii%1:20:00:: 13040796 1 0 -phalsa%1:20:00:: 12205104 1 0 -phanerogam%1:20:00:: 11552386 1 0 -phanerogamae%1:20:00:: 11551659 1 0 -phaneromania%1:16:00:: 09182784 1 0 -phanerozoic%1:28:00:: 15124183 1 0 -phanerozoic_aeon%1:28:00:: 15124183 1 0 -phanerozoic_eon%1:28:00:: 15124183 1 0 -phantasm%1:09:00:: 05897553 2 0 -phantasm%1:18:00:: 09547111 1 0 -phantasma%1:09:00:: 05897553 2 0 -phantasma%1:18:00:: 09547111 1 0 -phantasmagoria%1:09:00:: 05928840 1 0 -phantasmagoric%5:00:00:unrealistic:00 01943067 1 0 -phantasmagorical%5:00:00:unrealistic:00 01943067 1 0 -phantasmal%5:00:00:supernatural:00 01574925 1 0 -phantasy%1:09:00:: 05632446 3 0 -phantasy%1:09:01:: 05896059 1 1 -phantasy%1:10:00:: 06368425 2 0 -phantasy_life%1:09:00:: 05632927 1 0 -phantasy_world%1:09:00:: 05633044 1 0 -phantom%1:09:00:: 05897553 2 1 -phantom%1:18:00:: 09547111 1 2 -phantom%5:00:00:unreal:02 01939402 1 1 -phantom_limb%1:09:00:: 05940090 1 0 -phantom_limb_pain%1:09:00:: 05725137 1 0 -phantom_limb_syndrome%1:26:00:: 14308168 1 0 -phantom_orchid%1:20:00:: 12060546 1 0 -pharaoh%1:18:00:: 10421016 1 0 -pharaoh's_ant%1:05:00:: 02220055 1 0 -pharaoh's_chicken%1:05:00:: 01617766 1 0 -pharaoh_ant%1:05:00:: 02220055 1 0 -pharaoh_of_egypt%1:18:00:: 10421016 1 0 -pharaonic%3:01:00:: 02776813 1 0 -pharisaic%5:00:00:pious:00 01782100 1 0 -pharisaical%5:00:00:pious:00 01782100 1 0 -pharisee%1:18:00:: 10421183 2 0 -pharisee%1:18:01:: 10421339 1 0 -pharma%1:14:00:: 08002578 1 0 -pharmaceutic%1:06:00:: 03920989 1 0 -pharmaceutic%3:01:00:: 03098803 1 0 -pharmaceutical%1:06:00:: 03920989 1 0 -pharmaceutical%3:01:00:: 03098803 1 1 -pharmaceutical%3:01:01:: 03099131 2 0 -pharmaceutical_chemist%1:18:00:: 10421753 1 0 -pharmaceutical_company%1:14:00:: 08002578 1 0 -pharmaceutics%1:09:00:: 06055300 1 0 -pharmacist%1:18:00:: 10421470 1 1 -pharmacogenetics%1:09:00:: 06079247 1 0 -pharmacokinetics%1:09:00:: 06055529 1 0 -pharmacologic%3:01:00:: 02912686 1 0 -pharmacological%3:01:00:: 02912686 1 1 -pharmacological_medicine%1:09:00:: 06054892 1 0 -pharmacologically%4:02:00:: 00421471 1 0 -pharmacologist%1:18:00:: 10421753 1 0 -pharmacology%1:09:00:: 06054892 1 0 -pharmacopeia%1:10:00:: 06411883 1 0 -pharmacopoeia%1:06:00:: 03921209 1 0 -pharmacy%1:06:00:: 03249342 2 1 -pharmacy%1:09:00:: 06055300 1 1 -pharomacrus%1:05:00:: 01844414 1 0 -pharomacrus_mocino%1:05:00:: 01844746 1 0 -pharos%1:06:00:: 02814860 1 0 -pharsalus%1:04:00:: 01290711 1 0 -pharyngeal%1:10:00:: 07120176 1 0 -pharyngeal%3:01:00:: 02997099 1 0 -pharyngeal_consonant%1:10:00:: 07120176 1 0 -pharyngeal_recess%1:08:00:: 05609884 1 0 -pharyngeal_reflex%1:04:00:: 00866423 1 0 -pharyngeal_tonsil%1:08:00:: 05529286 1 0 -pharyngeal_vein%1:08:00:: 05377098 1 0 -pharyngitis%1:26:00:: 14173484 1 0 -pharynx%1:08:00:: 05547508 1 0 -phascogale%1:05:00:: 01885032 1 0 -phascolarctos%1:05:00:: 01882607 1 0 -phascolarctos_cinereus%1:05:00:: 01882714 1 0 -phase%1:07:00:: 04676540 4 0 -phase%1:26:00:: 14480065 2 22 -phase%1:28:00:: 15290337 1 24 -phase%1:28:01:: 15290132 3 1 -phase%2:30:00:: 00394381 2 0 -phase%2:36:00:: 01648894 1 0 -phase-out%1:04:00:: 01023138 1 0 -phase_angle%1:28:00:: 15290132 1 0 -phase_change%1:22:00:: 13536016 1 0 -phase_i%1:04:00:: 00792720 1 0 -phase_i_clinical_trial%1:04:00:: 00792720 1 0 -phase_ii%1:04:00:: 00792954 1 0 -phase_ii_clinical_trial%1:04:00:: 00792954 1 0 -phase_iii%1:04:00:: 00793212 1 0 -phase_iii_clinical_trial%1:04:00:: 00793212 1 0 -phase_in%2:36:00:: 01642717 1 0 -phase_iv%1:04:00:: 00793529 1 0 -phase_iv_clinical_trial%1:04:00:: 00793529 1 0 -phase_modulation%1:10:00:: 06281848 1 0 -phase_of_cell_division%1:22:00:: 13536299 1 0 -phase_of_the_moon%1:28:00:: 15206744 1 0 -phase_out%2:36:00:: 01642820 1 0 -phase_space%1:03:00:: 00029114 1 0 -phase_transition%1:22:00:: 13536016 1 0 -phaseolus%1:20:00:: 12556030 1 0 -phaseolus_aconitifolius%1:20:00:: 12577362 1 0 -phaseolus_acutifolius_latifolius%1:20:00:: 12558680 1 0 -phaseolus_angularis%1:20:00:: 12577686 1 0 -phaseolus_aureus%1:20:00:: 12578255 1 0 -phaseolus_caracalla%1:20:00:: 12577895 1 0 -phaseolus_coccineus%1:20:00:: 12557681 1 0 -phaseolus_limensis%1:20:00:: 12558230 1 0 -phaseolus_lunatus%1:20:00:: 12558425 1 0 -phaseolus_multiflorus%1:20:00:: 12557681 1 0 -phaseolus_vulgaris%1:20:00:: 12556793 1 0 -phasianid%1:05:00:: 01802721 1 0 -phasianidae%1:05:00:: 01802309 1 0 -phasianus%1:05:00:: 01802895 1 0 -phasianus_colchicus%1:05:00:: 01803362 1 0 -phasmatidae%1:05:00:: 02231307 1 0 -phasmatodea%1:05:00:: 02230782 1 0 -phasmid%1:05:00:: 02231052 1 0 -phasmid_insect%1:05:00:: 02231052 1 0 -phasmida%1:05:00:: 02230782 1 0 -phasmidae%1:05:00:: 02231307 1 0 -phasmidia%1:05:00:: 01929951 1 0 -phatic_communication%1:10:00:: 07134287 1 0 -phatic_speech%1:10:00:: 07134287 1 0 -phd%1:10:00:: 06704115 1 0 -pheasant%1:05:00:: 01803078 1 2 -pheasant%1:13:00:: 07647602 2 0 -pheasant's-eye%1:20:00:: 11724660 1 0 -pheasant_coucal%1:05:00:: 01824862 1 0 -pheasant_cuckoo%1:05:00:: 01824862 1 0 -pheasant_under_glass%1:13:00:: 07873198 1 0 -phegopteris%1:20:00:: 13230421 1 0 -phegopteris_connectilis%1:20:00:: 13231078 1 0 -phegopteris_hexagonoptera%1:20:00:: 13230843 1 0 -pheidias%1:18:00:: 11231943 1 0 -phellem%1:27:00:: 14823547 1 0 -phellodendron%1:20:00:: 12713664 1 0 -phellodendron_amurense%1:20:00:: 12713866 1 0 -phenacetin%1:06:00:: 02675354 1 0 -phenacomys%1:05:00:: 02342534 1 0 -phenaphen%1:06:00:: 02674482 1 0 -phenazopyridine%1:06:00:: 03921337 1 0 -phencyclidine%1:06:00:: 03921499 1 0 -phencyclidine_hydrochloride%1:06:00:: 03921499 1 0 -phenelzine%1:06:00:: 03921749 1 0 -phenergan%1:06:00:: 04010348 1 0 -phenicia%1:15:00:: 08919693 1 0 -pheniramine%1:06:00:: 03921915 1 0 -pheno-safranine%1:27:00:: 15001640 1 0 -phenobarbital%1:06:00:: 04256152 1 0 -phenobarbitone%1:06:00:: 04256152 1 0 -phenol%1:27:00:: 14989545 1 0 -phenol%1:27:01:: 14796073 2 0 -phenolic%1:27:00:: 14902627 1 0 -phenolic_plastic%1:27:00:: 14981461 1 0 -phenolic_resin%1:27:00:: 14902627 1 0 -phenolic_urea%1:27:00:: 14981461 1 0 -phenolphthalein%1:06:00:: 03922109 1 0 -phenomenal%3:01:00:: 02859708 1 0 -phenomenal%5:00:00:extraordinary:00 01676993 2 0 -phenomenally%4:02:00:: 00421629 1 0 -phenomenology%1:09:00:: 06167106 1 0 -phenomenon%1:03:00:: 00034213 1 25 -phenomenon%1:11:00:: 07423818 2 5 -phenoplast%1:27:00:: 14902627 1 0 -phenothiazine%1:27:00:: 14771643 1 3 -phenotype%1:07:00:: 04933852 1 0 -phenotypic%3:01:00:: 02942347 1 0 -phenotypical%3:01:00:: 02942347 1 0 -phenoxymethyl_penicillin%1:06:00:: 03911039 1 0 -phensuximide%1:06:00:: 03922412 1 0 -phentolamine%1:06:00:: 03922561 1 0 -phenyl_salicylate%1:27:00:: 15010430 1 0 -phenylacetamide%1:06:00:: 02674912 1 0 -phenylalanine%1:27:00:: 14981579 1 0 -phenylamine%1:27:00:: 14754505 1 0 -phenylbutazone%1:06:00:: 03922722 1 0 -phenylephrine%1:06:00:: 03922863 1 0 -phenylethylene%1:27:00:: 14595543 1 0 -phenylic_acid%1:27:00:: 14796073 1 0 -phenylketonuria%1:26:00:: 14507375 1 0 -phenylpropanolamine%1:06:00:: 03923004 1 0 -phenyltoloxamine%1:06:00:: 03923229 1 0 -phenytoin%1:06:00:: 03203441 1 0 -pheochromocytoma%1:26:00:: 14250232 1 0 -pheresis%1:04:00:: 00649992 1 0 -pheromone%1:27:00:: 14846890 1 0 -phi%1:10:00:: 06836275 1 0 -phi_coefficient%1:09:00:: 06035413 1 0 -phi_correlation%1:09:00:: 06035413 1 0 -phial%1:06:00:: 03923379 1 0 -phidias%1:18:00:: 11231943 1 0 -phil_anderson%1:18:00:: 10817717 1 0 -philadelphaceae%1:20:00:: 12790656 1 0 -philadelphia%1:15:00:: 09136182 1 9 -philadelphia_fleabane%1:20:00:: 11966896 1 0 -philadelphia_pepper_pot%1:13:00:: 07586718 1 0 -philadelphus%1:20:00:: 12791064 1 0 -philadelphus_coronarius%1:20:00:: 12791329 1 0 -philaenus%1:05:00:: 02258065 1 0 -philaenus_spumarius%1:05:00:: 02258198 1 0 -philander%2:32:00:: 01037910 2 0 -philander%2:41:00:: 02590910 1 0 -philanderer%1:18:00:: 10789118 1 0 -philanthropic%3:01:00:: 03006699 2 0 -philanthropic%5:00:00:charitable:00 00359645 1 1 -philanthropic_foundation%1:14:00:: 08406825 1 0 -philanthropic_gift%1:04:00:: 01089483 1 0 -philanthropically%4:02:00:: 00421749 1 0 -philanthropist%1:18:00:: 10421956 1 1 -philanthropy%1:04:00:: 01089483 1 0 -philatelic%3:01:00:: 03006854 1 0 -philatelical%3:01:00:: 03006854 1 0 -philatelically%4:02:00:: 00421838 1 0 -philatelist%1:18:00:: 10422405 1 0 -philately%1:04:00:: 01016420 1 0 -philemon%1:10:00:: 06446217 3 0 -philemon%1:18:00:: 11232050 2 0 -philemon%1:18:01:: 11232229 1 0 -philharmonic%1:14:00:: 08248856 1 0 -philharmonic%3:01:00:: 03099259 1 1 -philharmonic%5:00:00:musical:02 01505619 2 0 -philharmonic_pitch%1:07:00:: 04985580 1 0 -philhellene%1:18:00:: 10422540 1 0 -philhellene%3:01:00:: 03133141 1 0 -philhellenic%3:01:00:: 03133141 1 0 -philhellenism%1:12:00:: 07501194 1 0 -philhellenist%1:18:00:: 10422540 1 0 -philia%1:12:00:: 07544647 1 0 -philibert_de_l'orme%1:18:00:: 10929437 1 0 -philibert_delorme%1:18:00:: 10929437 1 0 -philip%1:18:00:: 11232475 1 0 -philip_anderson%1:18:00:: 10817717 1 0 -philip_augustus%1:18:00:: 11232989 1 0 -philip_dormer_stanhope%1:18:00:: 10895073 1 0 -philip_ii%1:18:00:: 11232615 3 0 -philip_ii%1:18:01:: 11232837 2 0 -philip_ii%1:18:02:: 11232989 1 0 -philip_ii_of_macedon%1:18:00:: 11232837 1 0 -philip_ii_of_spain%1:18:00:: 11232615 1 0 -philip_marlowe%1:18:00:: 09601571 1 0 -philip_michael_ondaatje%1:18:00:: 11214926 1 0 -philip_milton_roth%1:18:00:: 11272030 1 0 -philip_of_valois%1:18:00:: 11233383 1 0 -philip_roth%1:18:00:: 11272030 1 0 -philip_v%1:18:00:: 11233211 1 0 -philip_vi%1:18:00:: 11233383 1 0 -philip_warren_anderson%1:18:00:: 10817717 1 0 -philipp_lenard%1:18:00:: 11125957 1 0 -philipp_melanchthon%1:18:00:: 11171851 1 0 -philipp_schwarzerd%1:18:00:: 11171851 1 0 -philippi%1:04:00:: 01290840 2 0 -philippi%1:15:00:: 08915660 1 0 -philippian%1:18:00:: 10422759 1 0 -philippians%1:10:00:: 06444458 1 0 -philippic%1:10:00:: 07233415 1 1 -philippine%1:10:00:: 06939756 1 0 -philippine%3:01:00:: 03066180 1 0 -philippine_cedar%1:20:00:: 12700357 1 0 -philippine_islands%1:15:00:: 08980300 1 1 -philippine_mahogany%1:20:01:: 12700357 2 0 -philippine_mahogany%1:20:02:: 12700560 1 0 -philippine_monetary_unit%1:23:00:: 13692963 1 0 -philippine_peso%1:23:00:: 13693084 1 0 -philippine_sea%1:04:00:: 01290997 1 0 -philippines%1:15:00:: 08981244 1 2 -philippines%1:15:01:: 08980300 2 0 -philippopolis%1:15:00:: 08714795 1 0 -philippus_aureolus_paracelsus%1:18:00:: 11222054 1 0 -philistia%1:15:00:: 08799706 1 0 -philistine%1:18:00:: 10422871 2 0 -philistine%1:18:01:: 10423031 1 0 -philistine%3:01:00:: 03099392 1 0 -philistine%5:00:00:nonintellectual:00 01333886 2 0 -philistinism%1:26:00:: 14039310 1 0 -phillidae%1:05:00:: 02231930 1 0 -phillips_screw%1:06:00:: 03923564 1 0 -phillips_screwdriver%1:06:00:: 03923692 1 0 -phillipsite%1:27:00:: 15107677 1 0 -phillis_wheatley%1:18:00:: 11382930 1 0 -phillyrea%1:20:00:: 12309850 1 0 -philodendron%1:20:00:: 11791341 1 0 -philogyny%1:12:00:: 07501326 1 0 -philohela%1:05:00:: 02031455 1 0 -philohela_minor%1:05:00:: 02031585 1 0 -philological%3:01:00:: 03019955 1 1 -philologist%1:18:00:: 10423225 1 0 -philologue%1:18:00:: 10423225 1 0 -philology%1:09:00:: 06171040 1 0 -philomachus%1:05:00:: 02029914 1 0 -philomachus_pugnax%1:05:00:: 02030035 1 0 -philomath%1:18:00:: 10423514 1 0 -philophylla%1:05:00:: 02198021 1 0 -philosopher%1:18:00:: 10423589 1 15 -philosopher%1:18:01:: 10425946 2 1 -philosopher's_stone%1:27:00:: 14582870 1 0 -philosopher's_wool%1:27:00:: 15108087 1 0 -philosophers'_stone%1:27:00:: 14582870 1 0 -philosophers'_wool%1:27:00:: 15108087 1 0 -philosophic%3:01:00:: 02858231 1 2 -philosophic%5:00:00:unemotional:00 00858053 2 0 -philosophical%3:01:00:: 02858231 1 7 -philosophical%5:00:00:unemotional:00 00858053 2 2 -philosophical_doctrine%1:09:00:: 06167328 1 0 -philosophical_system%1:09:00:: 05943300 1 0 -philosophical_theory%1:09:00:: 06167328 1 0 -philosophically%4:02:00:: 00132416 1 1 -philosophically%4:02:01:: 00501606 2 0 -philosophise%2:31:00:: 00630026 1 0 -philosophiser%1:18:00:: 10426184 1 0 -philosophize%2:31:00:: 00630026 1 1 -philosophizer%1:18:00:: 10426184 1 0 -philosophizing%1:10:00:: 06742772 1 1 -philosophy%1:09:00:: 06158346 2 8 -philosophy%1:09:01:: 05943300 1 12 -philosophy%1:09:02:: 05944686 3 1 -philosophy_department%1:14:00:: 08117225 1 0 -philter%1:13:00:: 07883661 1 0 -philtre%1:13:00:: 07883661 1 0 -phimosis%1:26:00:: 14509583 1 0 -phineas_taylor_barnum%1:18:00:: 10834869 1 0 -phintias%1:18:00:: 11233595 1 0 -phiz%1:08:00:: 05601357 2 0 -phiz%1:18:00:: 10866738 1 0 -phlebectomy%1:04:00:: 00690132 1 0 -phlebitis%1:26:00:: 14352890 1 0 -phlebodium%1:20:00:: 13176873 1 0 -phlebodium_aureum%1:20:00:: 13177048 1 0 -phlebogram%1:06:00:: 04526112 1 0 -phlebothrombosis%1:26:00:: 14353008 1 0 -phlebotomise%2:29:00:: 00086077 1 0 -phlebotomist%1:18:00:: 10426363 1 0 -phlebotomize%2:29:00:: 00086077 1 0 -phlebotomus%1:05:00:: 02204084 2 0 -phlebotomus%1:26:00:: 14219487 1 0 -phlebotomus_papatasii%1:05:00:: 02204249 1 0 -phlebotomy%1:04:00:: 00698609 1 0 -phlegm%1:07:00:: 04635953 3 0 -phlegm%1:08:00:: 05415815 2 0 -phlegm%1:12:00:: 07483782 1 0 -phlegmasia_alba_dolens%1:26:00:: 14103018 1 0 -phlegmatic%5:00:00:unemotional:00 00858340 1 0 -phlegmatical%5:00:00:unemotional:00 00858340 1 0 -phlegmatically%4:02:00:: 00421978 1 0 -phlegmy%3:00:00:: 01178856 1 0 -phleum%1:20:00:: 12130408 1 0 -phleum_pratense%1:20:00:: 12130549 1 0 -phloem%1:20:00:: 13098962 1 1 -phlogiston%1:27:00:: 14583228 1 0 -phlogopite%1:27:00:: 14690790 1 0 -phlomis%1:20:00:: 12861345 1 0 -phlomis_fruticosa%1:20:00:: 12861541 1 0 -phlox%1:20:00:: 12810595 1 0 -phlox_bifida%1:20:00:: 12810847 1 0 -phlox_family%1:20:00:: 12808933 1 0 -phlox_stellaria%1:20:00:: 12810847 1 0 -phlox_subulata%1:20:00:: 12811027 1 0 -phnom_penh%1:15:00:: 08717059 1 0 -phobia%1:26:00:: 14381416 1 0 -phobic%5:00:00:neurotic:00 01585679 1 0 -phobic_disorder%1:26:00:: 14381416 1 0 -phobic_neurosis%1:26:00:: 14381416 1 0 -phobophobia%1:26:00:: 14384133 1 0 -phobos%1:17:00:: 09390873 1 0 -phoca%1:05:00:: 02079706 1 0 -phoca_vitulina%1:05:00:: 02079851 1 0 -phocidae%1:05:00:: 02079170 1 0 -phocine%3:01:00:: 02853663 1 0 -phocoena%1:05:00:: 02070311 1 0 -phocoena_phocoena%1:05:00:: 02070624 1 0 -phocoena_sinus%1:05:00:: 02070776 1 0 -phocomelia%1:26:00:: 14466567 1 0 -phoebe%1:05:00:: 01549886 3 0 -phoebe%1:18:00:: 09577308 2 0 -phoebe%1:23:00:: 13744521 1 0 -phoebe_bird%1:05:00:: 01549886 1 0 -phoebus%1:18:00:: 09553767 1 0 -phoebus_apollo%1:18:00:: 09553767 1 0 -phoenicia%1:15:00:: 08919693 1 0 -phoenician%1:10:00:: 06989473 2 0 -phoenician%1:18:00:: 09640859 1 0 -phoenician%3:01:00:: 02776931 1 0 -phoenicophorium%1:20:00:: 12593689 1 0 -phoenicopteridae%1:05:00:: 02007422 1 0 -phoeniculidae%1:05:00:: 01830183 1 0 -phoeniculus%1:05:00:: 01830316 1 0 -phoenicurus%1:05:00:: 01561318 1 0 -phoenix%1:15:00:: 09058376 1 1 -phoenix%1:17:00:: 09390967 4 0 -phoenix%1:18:00:: 09500936 3 0 -phoenix%1:20:00:: 12593826 2 0 -phoenix_dactylifera%1:20:00:: 12593994 1 0 -phoenix_tree%1:20:00:: 12198286 1 0 -pholadidae%1:05:00:: 01967677 1 0 -pholas%1:05:00:: 01967812 1 0 -pholidae%1:05:00:: 02614788 1 0 -pholidota%1:05:00:: 02461372 2 0 -pholidota%1:20:00:: 12077062 1 0 -pholiota%1:20:00:: 13007770 1 0 -pholiota_astragalina%1:20:00:: 13008157 1 0 -pholiota_aurea%1:20:00:: 13008315 1 0 -pholiota_destruens%1:20:00:: 13008485 1 0 -pholiota_flammans%1:20:00:: 13008689 1 0 -pholiota_flavida%1:20:00:: 13008839 1 0 -pholiota_nameko%1:20:00:: 13009085 1 0 -pholiota_squarrosa%1:20:00:: 13009429 1 0 -pholiota_squarrosa-adiposa%1:20:00:: 13009244 1 0 -pholiota_squarrosoides%1:20:00:: 13009656 1 0 -pholis%1:05:00:: 02615157 1 0 -pholis_gunnellus%1:05:00:: 02615298 1 0 -pholistoma%1:20:00:: 12837643 1 0 -pholistoma_auritum%1:20:00:: 12837803 1 0 -phon%1:23:00:: 13713983 1 0 -phonate%2:32:00:: 00745187 1 0 -phonation%1:10:00:: 07110615 1 0 -phone%1:06:00:: 04401088 1 13 -phone%1:06:01:: 03261776 3 0 -phone%1:10:00:: 07111047 2 0 -phone%2:32:00:: 00789448 1 7 -phone-in%1:10:00:: 06620467 1 0 -phone_bill%1:10:00:: 06517663 1 0 -phone_book%1:10:00:: 06423754 1 0 -phone_booth%1:06:00:: 04401680 1 1 -phone_call%1:10:00:: 06272803 1 1 -phone_card%1:21:00:: 13376512 1 0 -phone_company%1:14:00:: 08186221 1 1 -phone_cord%1:06:00:: 04401828 1 0 -phone_jack%1:06:00:: 04401949 1 0 -phone_line%1:06:00:: 04402057 1 0 -phone_message%1:10:00:: 06276287 1 0 -phone_number%1:10:00:: 06426111 1 0 -phone_plug%1:06:00:: 04402342 1 0 -phone_service%1:14:00:: 08186221 1 0 -phone_system%1:06:00:: 04402746 1 0 -phone_tapper%1:18:00:: 10691318 1 0 -phonebook%1:10:00:: 06423754 1 0 -phoneme%1:10:00:: 07111711 1 2 -phonemic%3:01:00:: 02858086 1 4 -phonemic%4:02:00:: 00131965 1 0 -phonemic_system%1:10:00:: 07113192 1 4 -phonemics%1:09:00:: 06177450 1 2 -phoner%1:18:00:: 09888017 1 0 -phonetic%3:01:00:: 02857726 2 0 -phonetic%3:01:01:: 02857893 1 2 -phonetic_alphabet%1:10:00:: 06500448 1 0 -phonetic_symbol%1:10:00:: 06839858 1 0 -phonetic_transcription%1:10:00:: 06349952 1 0 -phonetically%4:02:00:: 00131869 1 0 -phonetician%1:18:00:: 10426454 1 0 -phonetics%1:09:00:: 06177033 1 1 -phoney%1:18:00:: 10195593 1 0 -phoney%5:00:00:counterfeit:00 01117477 1 0 -phonic%3:01:00:: 02857893 3 0 -phonic%3:01:01:: 03099549 2 0 -phonic%3:01:02:: 03099638 1 1 -phonics%1:04:00:: 00888409 1 0 -phonogram%1:10:00:: 06821889 1 0 -phonogramic%3:01:00:: 02777055 1 0 -phonograph%1:06:01:: 04064401 1 1 -phonograph_album%1:06:00:: 03923801 1 0 -phonograph_needle%1:06:00:: 03923918 1 1 -phonograph_record%1:06:00:: 03924069 1 1 -phonograph_recording%1:06:00:: 03924069 1 0 -phonograph_recording_disk%1:06:00:: 02675077 1 0 -phonologic%3:01:00:: 02777160 1 9 -phonologic_system%1:10:00:: 07113337 1 1 -phonological%3:01:00:: 02777160 1 0 -phonological_system%1:10:00:: 07113337 1 0 -phonologist%1:18:00:: 10426630 1 0 -phonology%1:09:00:: 06177450 1 5 -phonophobia%1:26:00:: 14384227 1 0 -phony%1:18:00:: 10195593 1 1 -phony%5:00:00:counterfeit:00 01117477 1 6 -phoradendron%1:20:00:: 12739595 1 0 -phoradendron_flavescens%1:20:00:: 12739966 1 0 -phoradendron_serotinum%1:20:00:: 12739966 1 0 -phoronid%1:05:00:: 02313360 1 0 -phoronida%1:05:00:: 02313195 1 0 -phoronidea%1:05:00:: 02313195 1 0 -phosgene%1:27:00:: 14981847 1 1 -phosphatase%1:27:00:: 14981983 1 0 -phosphate%1:13:00:: 07928578 2 0 -phosphate%1:27:00:: 14982265 1 9 -phosphate_buffer_solution%1:27:00:: 14786361 1 0 -phosphine%1:27:00:: 14982129 1 0 -phosphocreatine%1:27:00:: 14982421 1 0 -phospholipid%1:27:00:: 14982681 1 0 -phosphoprotein%1:27:00:: 14735225 1 0 -phosphor%1:27:00:: 14649036 1 0 -phosphor_bronze%1:27:00:: 14717785 1 0 -phosphoresce%2:42:00:: 02632035 1 0 -phosphorescence%1:19:00:: 11491026 1 0 -phosphorescent%5:00:00:light:06 00272555 1 1 -phosphoric%3:01:00:: 03099742 1 0 -phosphoric_acid%1:27:00:: 14982907 1 0 -phosphorous%3:01:00:: 03099742 1 0 -phosphorous_acid%1:27:00:: 14614594 1 0 -phosphorus%1:17:00:: 09359471 2 0 -phosphorus%1:27:00:: 14649197 1 1 -phot%1:23:00:: 13640866 1 0 -photalgia%1:26:00:: 14329888 1 0 -photic%3:01:00:: 02838805 1 0 -photinia%1:20:00:: 12636430 1 0 -photinia_arbutifolia%1:20:00:: 12633061 1 0 -photius%1:18:00:: 11233934 1 0 -photo%1:06:00:: 03925226 1 3 -photo-offset%1:10:00:: 06680431 1 0 -photo-offset_printing%1:10:00:: 06680431 1 0 -photo_credit%1:10:00:: 06764751 1 0 -photo_finish%1:11:00:: 07354243 1 0 -photo_op%1:11:00:: 07455760 1 0 -photo_opportunity%1:11:00:: 07455760 1 0 -photoblepharon%1:05:00:: 01452200 1 0 -photoblepharon_palpebratus%1:05:00:: 01452345 1 0 -photocathode%1:06:00:: 03924407 1 0 -photocell%1:06:00:: 03924978 1 0 -photochemical%3:01:00:: 02692815 1 0 -photochemical_exchange%1:19:00:: 11410023 1 3 -photochemical_reaction%1:22:00:: 13536523 1 2 -photochemistry%1:09:00:: 06090397 1 0 -photocoagulation%1:04:00:: 00690281 1 0 -photocoagulator%1:06:00:: 03924532 1 0 -photoconduction%1:19:00:: 11409689 1 0 -photoconductive%3:01:00:: 02827413 1 0 -photoconductive_cell%1:06:00:: 03924978 1 0 -photoconductivity%1:19:00:: 11409689 1 0 -photocopier%1:06:00:: 03924679 1 0 -photocopy%1:06:00:: 03924811 1 0 -photocopy%2:36:00:: 01736299 1 0 -photoelectric%3:01:00:: 02827790 1 0 -photoelectric_cell%1:06:00:: 03924978 1 0 -photoelectric_emission%1:22:00:: 13536661 1 0 -photoelectrical%3:01:00:: 02827790 1 0 -photoelectrically%4:02:00:: 00121770 1 0 -photoelectricity%1:19:00:: 11491194 1 0 -photoelectron%1:17:00:: 09391089 1 0 -photoemission%1:19:00:: 11410172 1 0 -photoemissive%3:01:00:: 02827571 1 0 -photoengraving%1:06:00:: 03478261 1 0 -photoflash%1:06:00:: 03358172 1 0 -photoflood%1:06:00:: 03365374 1 0 -photogelatin_process%1:10:00:: 06679726 1 0 -photogenic%5:00:00:attractive:01 00168820 1 0 -photogenic_epilepsy%1:26:00:: 14089339 1 0 -photograph%1:06:00:: 03925226 1 17 -photograph%2:32:00:: 01003249 1 9 -photograph%2:42:00:: 02734653 2 1 -photograph_album%1:06:00:: 03926061 1 0 -photographer%1:18:00:: 10426749 1 0 -photographer's_model%1:18:00:: 10427103 1 0 -photographic%3:01:00:: 02838592 1 7 -photographic%5:00:00:exact:00 00915420 2 0 -photographic_camera%1:06:00:: 02942699 1 0 -photographic_density%1:07:00:: 05089367 1 0 -photographic_emulsion%1:06:00:: 03284482 1 0 -photographic_equipment%1:06:00:: 03926148 1 0 -photographic_film%1:06:00:: 03338821 1 0 -photographic_material%1:06:00:: 03926412 1 0 -photographic_paper%1:06:00:: 03926412 1 0 -photographic_plate%1:06:00:: 03960783 1 0 -photographic_print%1:06:00:: 03926575 1 0 -photographically%4:02:00:: 00121894 1 1 -photography%1:04:00:: 00903559 1 1 -photography%1:04:01:: 00620554 3 0 -photography%1:22:00:: 13536794 2 0 -photogravure%1:04:00:: 01103492 3 0 -photogravure%1:06:00:: 03455802 2 0 -photogravure%1:10:00:: 06679167 1 0 -photojournalism%1:10:00:: 06266710 1 0 -photojournalist%1:18:00:: 10427223 1 0 -photolithograph%1:06:00:: 03926757 1 0 -photolithography%1:10:00:: 06680195 1 0 -photomechanical%3:01:00:: 02777355 1 0 -photomechanics%1:09:00:: 05666530 2 0 -photomechanics%1:22:00:: 13537176 1 0 -photometer%1:06:00:: 03667664 2 0 -photometer%1:06:01:: 03926876 1 0 -photometric%3:01:00:: 02777548 1 0 -photometrical%3:01:00:: 02777548 1 0 -photometrically%4:02:00:: 00122014 1 0 -photometrician%1:18:00:: 10427359 1 0 -photometrist%1:18:00:: 10427359 1 0 -photometry%1:04:00:: 01003272 1 0 -photomicrograph%1:06:00:: 03927091 1 0 -photomontage%1:06:00:: 03927201 1 1 -photomosaic%1:06:00:: 03787904 1 0 -photon%1:17:00:: 09391223 1 1 -photophobia%1:26:00:: 14329888 2 0 -photophobia%1:26:01:: 14384351 1 0 -photopic_vision%1:09:00:: 05657166 1 0 -photopigment%1:27:00:: 15089104 1 0 -photoplate_making%1:22:00:: 13537176 1 0 -photoretinitis%1:26:00:: 14555059 1 0 -photosensitise%2:39:00:: 02114730 1 0 -photosensitive%5:00:00:sensitive:01 02104727 1 0 -photosensitivity%1:09:00:: 05654201 1 0 -photosensitize%2:39:00:: 02114730 1 0 -photosphere%1:17:00:: 09391386 1 0 -photostat%1:06:00:: 03927299 2 0 -photostat%1:06:01:: 03927539 1 0 -photostat%2:36:00:: 01736669 1 0 -photostat_machine%1:06:00:: 03927299 1 0 -photosynthesis%1:22:00:: 13537429 1 0 -photosynthetic%3:01:00:: 02777686 1 0 -phototherapy%1:04:00:: 00705886 1 0 -phototrophic_bacteria%1:05:00:: 01359945 1 0 -phototropic_bacteria%1:05:00:: 01359945 1 0 -phototropism%1:04:00:: 00862399 1 0 -photovoltaic%3:01:00:: 02827662 1 0 -photovoltaic_cell%1:06:00:: 04257986 1 0 -phoxinus%1:05:00:: 01442855 1 0 -phoxinus_phoxinus%1:05:00:: 01442972 1 0 -phragmacone%1:05:00:: 01904965 1 0 -phragmipedium%1:20:00:: 12077505 1 0 -phragmites%1:20:00:: 12130759 1 0 -phragmites_communis%1:20:00:: 12130937 1 0 -phragmocone%1:05:00:: 01904965 1 0 -phrasal%3:01:00:: 02937108 1 0 -phrasal_idiom%1:10:00:: 07154330 1 0 -phrasal_verb%1:10:00:: 06330764 1 0 -phrase%1:04:00:: 00527061 4 0 -phrase%1:10:00:: 06316048 1 10 -phrase%1:10:01:: 07045353 2 3 -phrase%1:10:02:: 07154330 3 0 -phrase%2:32:00:: 00980453 1 3 -phrase%2:32:01:: 00961114 2 0 -phrase_book%1:10:00:: 06416452 1 0 -phrase_structure%1:09:00:: 06176107 1 0 -phraseology%1:10:00:: 07081739 1 1 -phrasing%1:04:00:: 01012608 1 1 -phrasing%1:10:00:: 07081739 2 0 -phratry%1:14:00:: 07970721 1 0 -phreatic%3:01:00:: 02777931 1 0 -phrenetic%5:00:00:agitated:00 00086341 1 0 -phrenic%3:01:00:: 02997227 1 0 -phrenic_nerve%1:08:00:: 05568550 1 0 -phrenic_vein%1:08:00:: 05377252 1 0 -phrenitis%1:26:00:: 14342132 1 0 -phrenological%3:01:00:: 02778016 1 0 -phrenologist%1:18:00:: 10427467 1 0 -phrenology%1:09:00:: 06045847 1 0 -phrontistery%1:06:00:: 03927652 1 0 -phrygia%1:15:00:: 08701410 1 0 -phrygian%1:10:00:: 06943378 2 0 -phrygian%1:18:00:: 10427658 1 0 -phrygian_deity%1:18:00:: 09593937 1 0 -phrynosoma%1:05:00:: 01681812 1 0 -phrynosoma_cornutum%1:05:00:: 01682172 1 0 -phs%1:14:00:: 08133855 1 0 -phthalic_acid%1:27:00:: 14983036 1 0 -phthalic_anhydride%1:27:00:: 14768765 1 0 -phthiriidae%1:05:00:: 02184881 1 0 -phthirius%1:05:00:: 02185007 1 0 -phthirius_pubis%1:05:00:: 02185167 1 0 -phthirus%1:05:00:: 02185007 1 0 -phthisis%1:26:00:: 14144064 1 0 -phthorimaea%1:05:00:: 02294279 1 0 -phthorimaea_operculella%1:05:01:: 02294407 2 0 -phthorimaea_operculella%1:05:02:: 02294577 1 0 -phycobilin%1:05:00:: 01399236 1 0 -phycocyanin%1:05:00:: 01399450 1 0 -phycoerythrin%1:05:00:: 01399366 1 0 -phycology%1:09:00:: 06074507 1 0 -phycomycetes%1:20:00:: 12976672 1 0 -phycomycetes_group%1:20:00:: 12976672 1 0 -phycomycosis%1:26:00:: 14182332 1 0 -phylactery%1:10:00:: 06856189 1 0 -phyle%1:14:00:: 08373969 1 0 -phyletic%3:01:00:: 02942958 1 0 -phyllidae%1:05:00:: 02231930 1 0 -phylliform%5:00:00:formed:00 02149070 1 0 -phyllitis%1:20:00:: 13184164 1 0 -phyllitis_scolopendrium%1:20:00:: 13183056 1 0 -phyllium%1:05:00:: 02232086 1 0 -phyllo%1:13:00:: 07628068 1 0 -phylloclad%1:20:00:: 13130014 1 0 -phyllocladaceae%1:20:00:: 11649597 1 0 -phylloclade%1:20:00:: 13130014 1 0 -phyllocladus%1:20:00:: 11649749 1 0 -phyllocladus_alpinus%1:20:00:: 11650430 1 0 -phyllocladus_asplenifolius%1:20:00:: 11650160 1 0 -phyllocladus_trichomanoides%1:20:00:: 11650307 1 0 -phyllode%1:20:00:: 13131752 1 0 -phyllodial%3:01:00:: 03133883 1 0 -phyllodoce%1:20:00:: 12242668 1 0 -phyllodoce_breweri%1:20:00:: 12243109 1 0 -phyllodoce_caerulea%1:20:00:: 12242850 1 0 -phylloporus%1:20:00:: 13058796 1 0 -phylloporus_boletinoides%1:20:00:: 13058963 1 0 -phylloquinone%1:27:00:: 15092942 1 0 -phyllorhynchus%1:05:00:: 01729533 1 0 -phylloscopus%1:05:00:: 01565238 1 0 -phylloscopus_sibilatrix%1:05:00:: 01565345 1 0 -phyllostachys%1:20:00:: 12148962 1 0 -phyllostachys_aurea%1:20:00:: 12149144 1 0 -phyllostachys_bambusoides%1:20:00:: 12149521 1 0 -phyllostachys_nigra%1:20:00:: 12149350 1 0 -phyllostomatidae%1:05:00:: 02142064 1 0 -phyllostomidae%1:05:00:: 02142064 1 0 -phyllostomus%1:05:00:: 02142575 1 0 -phyllostomus_hastatus%1:05:00:: 02142898 1 0 -phylloxera%1:05:00:: 02255698 1 0 -phylloxera_vitifoleae%1:05:00:: 02255855 1 0 -phylloxeridae%1:05:00:: 02255567 1 0 -phylogenesis%1:22:00:: 13477023 1 0 -phylogenetic%3:01:00:: 02942958 1 0 -phylogenetic_relation%1:24:00:: 13812296 1 0 -phylogenetically%4:02:00:: 00115117 1 0 -phylogeny%1:22:00:: 13477023 1 0 -phylum%1:14:00:: 08102555 2 0 -phylum%1:14:01:: 08103635 1 1 -phylum_acanthocephala%1:05:00:: 01923171 1 0 -phylum_annelida%1:05:00:: 01934207 1 0 -phylum_arthropoda%1:05:00:: 01767199 1 0 -phylum_aschelminthes%1:05:00:: 01929396 1 0 -phylum_brachiopoda%1:05:00:: 02315309 1 0 -phylum_bryozoa%1:05:00:: 02313495 1 0 -phylum_chaetognatha%1:05:00:: 01923637 1 0 -phylum_chordata%1:05:00:: 01465994 1 0 -phylum_cnidaria%1:05:00:: 01909111 1 0 -phylum_coelenterata%1:05:00:: 01909111 1 0 -phylum_cryptophyta%1:05:00:: 01421012 1 0 -phylum_ctenophora%1:05:00:: 01918310 1 0 -phylum_cycliophora%1:05:00:: 02314717 1 0 -phylum_echinodermata%1:05:00:: 02316392 1 0 -phylum_ectoprocta%1:05:00:: 02314001 1 0 -phylum_entoprocta%1:05:00:: 02314321 1 0 -phylum_mollusca%1:05:00:: 01940488 1 0 -phylum_nematoda%1:05:00:: 01929396 1 0 -phylum_nemertea%1:05:00:: 01928360 1 0 -phylum_nemertina%1:05:00:: 01928360 1 0 -phylum_phoronida%1:05:00:: 02313195 1 0 -phylum_platyhelminthes%1:05:00:: 01924590 1 0 -phylum_pogonophora%1:05:00:: 01928737 1 0 -phylum_porifera%1:05:00:: 01906552 1 0 -phylum_protozoa%1:05:00:: 01389188 1 0 -phylum_pyrrophyta%1:05:00:: 01388992 1 0 -phylum_rotifera%1:05:00:: 01929047 1 0 -phylum_sipuncula%1:05:00:: 02315696 1 0 -physa%1:05:00:: 01952712 1 0 -physalia%1:05:00:: 01913035 1 0 -physalis%1:20:00:: 12910141 1 0 -physalis_alkekengi%1:20:00:: 12910875 1 0 -physalis_ixocarpa%1:20:00:: 12911440 1 0 -physalis_peruviana%1:20:00:: 12911079 1 0 -physalis_philadelphica%1:20:00:: 12911673 1 0 -physalis_pruinosa%1:20:00:: 12911264 1 0 -physalis_pubescens%1:20:00:: 12910676 1 0 -physalis_viscosa%1:20:00:: 12911914 1 0 -physaria%1:20:00:: 11893451 1 0 -physeter%1:05:00:: 02067100 1 0 -physeter_catodon%1:05:00:: 02067240 1 0 -physeteridae%1:05:00:: 02066950 1 0 -physiatrics%1:04:00:: 00700000 1 0 -physic%1:06:00:: 04025748 1 0 -physic_nut%1:20:00:: 12925583 1 0 -physical%3:00:00:: 01778212 1 29 -physical%3:01:00:: 02779774 2 5 -physical%5:00:00:energetic:00 00874092 5 2 -physical%5:00:00:forceful:00 00842324 6 0 -physical%5:00:00:material:01 00627004 3 5 -physical%5:00:00:natural:03 01574259 4 3 -physical%5:00:02:material:01 00627204 7 0 -physical_ability%1:07:00:: 05201659 1 1 -physical_anthropology%1:09:00:: 06147141 1 0 -physical_attraction%1:12:00:: 07487955 1 0 -physical_body%1:08:00:: 05217168 1 0 -physical_change%1:22:00:: 13536016 1 0 -physical_chemistry%1:09:00:: 06089447 1 1 -physical_composition%1:07:00:: 04933544 1 0 -physical_condition%1:26:00:: 14034177 1 0 -physical_contact%1:04:00:: 00124880 1 0 -physical_education%1:09:00:: 05756888 1 2 -physical_entity%1:03:00:: 00001930 1 0 -physical_exercise%1:04:00:: 00624738 1 0 -physical_exertion%1:04:00:: 00624738 1 0 -physical_fitness%1:26:00:: 14546432 1 0 -physical_geography%1:09:00:: 06122445 1 0 -physical_object%1:03:00:: 00002684 1 0 -physical_pendulum%1:06:00:: 03927792 1 0 -physical_phenomenon%1:19:00:: 11419404 1 2 -physical_process%1:03:00:: 00029677 1 0 -physical_property%1:07:00:: 05009170 1 2 -physical_rehabilitation%1:04:00:: 00400995 1 0 -physical_restoration%1:04:00:: 00400995 1 0 -physical_science%1:09:00:: 06094587 1 3 -physical_structure%1:08:00:: 05216365 1 1 -physical_therapist%1:18:00:: 10427764 1 1 -physical_therapy%1:04:00:: 00700000 1 0 -physical_topology%1:09:00:: 05731223 1 0 -physical_value%1:21:00:: 13303045 1 0 -physicalism%1:09:00:: 05972585 1 0 -physicality%1:07:00:: 04624517 1 0 -physically%4:02:00:: 00115254 1 7 -physicalness%1:07:00:: 04760771 1 1 -physician%1:18:00:: 10020890 1 7 -physician-assisted_suicide%1:04:00:: 00223144 1 0 -physician-patient_privilege%1:07:00:: 05180483 1 0 -physicist%1:18:00:: 10428004 1 3 -physicochemical%3:01:00:: 02693186 1 1 -physics%1:09:00:: 06090869 1 10 -physics%1:09:01:: 06094587 2 0 -physics_department%1:14:00:: 08117379 1 0 -physics_lab%1:06:00:: 03928001 1 0 -physics_laboratory%1:06:00:: 03928001 1 0 -physidae%1:05:00:: 01952429 1 0 -physiognomy%1:08:00:: 05601357 1 2 -physiography%1:09:00:: 06122445 1 0 -physiologic%5:00:00:physical:00 01779558 1 0 -physiological%3:01:00:: 02949082 1 14 -physiological%5:00:00:physical:00 01779558 2 0 -physiological_anatomy%1:09:00:: 06059709 1 0 -physiological_condition%1:26:00:: 14034177 1 0 -physiological_jaundice_of_the_newborn%1:26:00:: 14320016 1 0 -physiological_nystagmus%1:04:00:: 00337844 1 0 -physiological_property%1:07:00:: 05005250 1 0 -physiological_psychology%1:09:00:: 06140799 1 0 -physiological_reaction%1:04:00:: 00863513 1 0 -physiological_sphincter%1:08:00:: 05571501 1 0 -physiological_state%1:26:00:: 14034177 1 0 -physiologically%4:02:00:: 00115370 1 0 -physiologist%1:18:00:: 10429965 1 0 -physiology%1:07:00:: 05005064 2 0 -physiology%1:09:00:: 06080522 1 1 -physiotherapeutic%3:01:00:: 02889619 1 0 -physiotherapist%1:18:00:: 10427764 1 0 -physiotherapy%1:04:00:: 00700000 1 0 -physique%1:07:00:: 04998530 1 2 -physique%1:08:00:: 05217168 2 0 -physostegia%1:20:00:: 12861892 1 0 -physostegia_virginiana%1:20:00:: 12862116 1 0 -physostigma%1:20:00:: 12486732 1 0 -physostigma_venenosum%1:20:00:: 12486882 1 0 -physostigmine%1:20:00:: 12487262 1 0 -phytelephas%1:20:00:: 12594165 1 0 -phytelephas_macrocarpa%1:20:00:: 12594324 1 0 -phytochemical%1:27:00:: 14983143 1 0 -phytochemist%1:18:00:: 10430554 1 0 -phytochemistry%1:09:00:: 06089728 1 0 -phytohormone%1:27:00:: 14744841 1 0 -phytolacca%1:20:00:: 11855122 1 0 -phytolacca_acinosa%1:20:00:: 11855435 1 0 -phytolacca_americana%1:20:00:: 11855553 1 0 -phytolacca_dioica%1:20:00:: 11855842 1 0 -phytolaccaceae%1:20:00:: 11854760 1 0 -phytologist%1:18:00:: 09868270 1 0 -phytology%1:09:00:: 06066555 1 0 -phytomastigina%1:05:00:: 01420655 1 0 -phytonadione%1:27:00:: 15092942 1 0 -phytophagic%5:00:00:herbivorous:00 00314639 1 0 -phytophagous%5:00:00:herbivorous:00 00314639 1 0 -phytophilous%5:00:00:herbivorous:00 00314639 1 0 -phytophthora%1:20:00:: 12982723 1 0 -phytophthora_citrophthora%1:20:00:: 12982915 1 0 -phytophthora_infestans%1:20:00:: 12983048 1 0 -phytoplankton%1:05:00:: 01383896 1 0 -phytotherapy%1:04:00:: 00700421 1 0 -phytotoxin%1:27:00:: 15036638 1 0 -pi%1:06:00:: 04013993 5 0 -pi%1:10:00:: 06835740 4 0 -pi%1:18:00:: 10476671 2 0 -pi%1:18:01:: 10475163 3 0 -pi%1:23:00:: 13754008 1 0 -pi-meson%1:17:00:: 09392656 1 0 -pia%1:20:00:: 12475774 1 0 -pia_mater%1:08:00:: 05482800 1 0 -piaf%1:18:00:: 11234152 1 0 -piaffe%1:04:00:: 00288384 1 0 -piaget%1:18:00:: 11234292 1 0 -piagetian%3:01:00:: 03036464 1 0 -pianism%1:10:00:: 06893065 1 1 -pianissimo%1:07:00:: 04991389 1 0 -pianissimo%4:02:00:: 00343938 1 0 -pianissimo%5:00:00:piano:00 01458490 1 0 -pianissimo_assai%5:00:00:piano:00 01458619 1 0 -pianist%1:18:00:: 10430665 1 5 -pianistic%3:01:00:: 03023216 1 1 -pianistic%3:01:01:: 03023348 2 0 -piano%1:06:00:: 03928116 1 10 -piano%1:07:00:: 04991389 2 0 -piano%3:00:00:: 01458303 1 0 -piano%4:02:00:: 00343660 1 0 -piano_accordion%1:06:00:: 02672831 1 0 -piano_action%1:06:00:: 03928589 1 0 -piano_damper%1:06:00:: 03161893 1 0 -piano_keyboard%1:06:00:: 03928814 1 0 -piano_lesson%1:04:00:: 00889883 1 1 -piano_maker%1:18:00:: 10431122 1 0 -piano_music%1:09:00:: 05719325 2 0 -piano_music%1:10:00:: 06815621 1 0 -piano_player%1:18:00:: 10430665 1 1 -piano_sonata%1:10:00:: 07044276 1 1 -piano_stool%1:06:00:: 03801880 1 3 -piano_teacher%1:18:00:: 10431224 1 0 -piano_tuner%1:18:00:: 10733117 1 0 -piano_wire%1:06:00:: 03928994 1 0 -pianoforte%1:06:00:: 03928116 1 0 -pianola%1:06:00:: 03738066 1 0 -piassava_palm%1:20:00:: 12585137 1 0 -piaster%1:23:00:: 13694160 1 0 -piaster%1:23:01:: 13687278 2 0 -piastre%1:23:00:: 13694160 1 0 -piastre%1:23:01:: 13687278 2 0 -piazza%1:15:00:: 08619795 1 1 -pib%1:23:00:: 13630213 1 0 -pibgorn%1:06:00:: 03537550 1 0 -pibit%1:23:00:: 13630707 1 0 -pibroch%1:10:00:: 07058762 1 0 -pic%1:06:00:: 03925226 2 0 -pic%1:10:00:: 06613686 1 0 -pica%1:05:00:: 01582111 3 0 -pica%1:23:00:: 13712428 2 0 -pica%1:26:00:: 14055977 1 0 -pica-pica%1:20:00:: 12925179 1 0 -pica_em%1:23:00:: 13712428 1 0 -pica_pica%1:05:00:: 01582398 1 0 -pica_pica_hudsonia%1:05:00:: 01582498 1 0 -picador%1:18:00:: 09836786 1 0 -picaninny%1:18:00:: 10431330 1 0 -picardie%1:15:00:: 08944089 1 0 -picardy%1:15:00:: 08944089 1 0 -picaresque%5:00:00:dishonest:00 01224755 1 0 -picariae%1:05:00:: 01825758 1 0 -picasso%1:18:00:: 11234951 1 3 -picayune%5:00:00:unimportant:00 01280908 1 0 -piccalilli%1:13:00:: 07825597 1 0 -piccaninny%1:18:00:: 10431330 1 0 -piccolo%1:06:00:: 03929091 1 0 -picea%1:20:00:: 11624367 1 0 -picea_abies%1:20:00:: 11625003 1 0 -picea_breweriana%1:20:00:: 11625223 1 0 -picea_engelmannii%1:20:00:: 11625391 1 0 -picea_glauca%1:20:00:: 11625632 1 0 -picea_mariana%1:20:00:: 11625804 1 0 -picea_obovata%1:20:00:: 11626010 1 0 -picea_orientalis%1:20:00:: 11626409 1 0 -picea_pungens%1:20:00:: 11626585 1 0 -picea_rubens%1:20:00:: 11626826 1 0 -picea_sitchensis%1:20:00:: 11626152 1 0 -pichi%1:20:00:: 12903964 1 0 -pichiciago%1:05:00:: 02456275 1 0 -pichiciego%1:05:00:: 02456275 1 0 -picidae%1:05:00:: 01838326 1 0 -piciform_bird%1:05:00:: 01838038 1 0 -piciformes%1:05:00:: 01837746 1 0 -pick%1:04:00:: 00161243 9 0 -pick%1:04:01:: 00563665 8 0 -pick%1:06:00:: 03929202 7 0 -pick%1:06:01:: 03929443 6 0 -pick%1:06:02:: 04598965 4 0 -pick%1:06:03:: 03929660 5 0 -pick%1:09:00:: 05790242 1 1 -pick%1:14:00:: 08387035 3 0 -pick%1:23:00:: 13759558 2 0 -pick%2:30:00:: 00178102 5 1 -pick%2:30:01:: 00177714 6 1 -pick%2:31:00:: 00676450 1 13 -pick%2:32:09:: 00842772 3 2 -pick%2:34:00:: 01174294 12 0 -pick%2:35:00:: 01243474 11 0 -pick%2:35:01:: 01382083 2 4 -pick%2:35:02:: 01442578 10 0 -pick%2:35:05:: 01452546 9 0 -pick%2:36:00:: 01647131 4 1 -pick%2:40:00:: 02287209 8 0 -pick%2:40:01:: 02321648 7 0 -pick's_disease%1:26:00:: 14396431 1 0 -pick-me-up%1:06:00:: 02888133 2 0 -pick-me-up%1:06:01:: 03930777 1 0 -pick-off%1:04:00:: 00564583 1 0 -pick_apart%2:32:00:: 00826509 1 0 -pick_at%2:32:00:: 00845909 3 0 -pick_at%2:34:00:: 01173656 2 0 -pick_at%2:35:00:: 01609115 1 1 -pick_off%2:35:00:: 01592456 2 1 -pick_off%2:41:00:: 02484875 1 1 -pick_out%2:31:00:: 00674607 1 4 -pick_out%2:39:00:: 02193194 2 2 -pick_over%2:31:00:: 00677544 1 0 -pick_up%2:29:00:: 00023473 16 0 -pick_up%2:30:00:: 00205598 13 1 -pick_up%2:30:01:: 00513757 10 2 -pick_up%2:31:00:: 00598954 5 4 -pick_up%2:34:00:: 01173813 15 0 -pick_up%2:35:00:: 01215137 7 3 -pick_up%2:35:01:: 01207402 2 19 -pick_up%2:37:00:: 01811736 12 1 -pick_up%2:38:00:: 01957107 3 6 -pick_up%2:38:01:: 01976089 1 22 -pick_up%2:39:00:: 02117955 14 0 -pick_up%2:39:01:: 02107248 9 2 -pick_up%2:40:00:: 02287041 8 2 -pick_up%2:40:01:: 02305586 4 5 -pick_up%2:40:02:: 02355410 6 3 -pick_up%2:41:00:: 02486534 11 1 -pick_up_the_gauntlet%2:32:00:: 00950206 1 0 -pickaback%4:02:00:: 00349309 2 0 -pickaback%4:02:01:: 00349454 1 0 -pickaback_plant%1:20:00:: 12804352 1 0 -pickaninny%1:18:00:: 10431330 1 0 -pickax%1:06:00:: 03929202 1 0 -pickaxe%1:06:00:: 03929202 1 0 -pickelhaube%1:06:00:: 03929855 1 0 -picker%1:18:00:: 10431514 2 0 -picker%1:18:01:: 10431625 1 0 -pickerel%1:05:00:: 02561661 2 0 -pickerel%1:13:00:: 07779664 1 0 -pickerel_frog%1:05:00:: 01642257 1 0 -pickerel_weed%1:20:00:: 12609968 1 0 -pickerelweed%1:20:00:: 12609968 1 0 -pickerelweed_family%1:20:00:: 12609638 1 0 -pickeringia%1:20:00:: 12558902 1 0 -pickeringia_montana%1:20:00:: 12559044 1 0 -picket%1:04:00:: 00423563 6 0 -picket%1:06:00:: 03929952 5 0 -picket%1:06:01:: 03930087 4 0 -picket%1:14:00:: 08216295 2 2 -picket%1:18:00:: 10431770 3 0 -picket%1:18:01:: 10271216 1 2 -picket%2:35:00:: 01289026 2 1 -picket%2:41:00:: 02522153 1 1 -picket_boat%1:06:00:: 03930229 1 1 -picket_fence%1:06:00:: 03930313 1 0 -picket_line%1:14:00:: 08431345 1 0 -picket_ship%1:06:00:: 03930431 1 1 -pickett%1:18:00:: 11234472 1 0 -pickford%1:18:00:: 11234643 1 0 -picking%1:04:00:: 00714357 2 0 -picking%1:23:00:: 13759558 1 0 -pickings%1:04:00:: 00714477 1 0 -pickle%1:13:00:: 07824988 1 1 -pickle%1:26:00:: 14409489 2 0 -pickle%2:30:00:: 00213223 1 0 -pickle_barrel%1:06:00:: 03930515 1 0 -pickle_relish%1:13:00:: 07825496 1 0 -pickled%5:00:00:preserved:02 01073094 1 0 -pickled_herring%1:13:00:: 07785342 1 0 -picklepuss%1:18:00:: 10627899 1 0 -picknicker%1:18:00:: 10432189 1 0 -pickpocket%1:18:00:: 10431907 1 0 -pickup%1:04:00:: 01016201 8 0 -pickup%1:04:01:: 00319176 9 0 -pickup%1:06:00:: 03930630 1 2 -pickup%1:06:01:: 02971940 7 0 -pickup%1:06:02:: 04450465 6 0 -pickup%1:06:03:: 03930777 3 1 -pickup%1:07:00:: 05061003 5 0 -pickup%1:10:00:: 06547832 2 1 -pickup%1:18:00:: 10432053 4 0 -pickup_arm%1:06:00:: 04450465 1 0 -pickup_truck%1:06:00:: 03930630 1 0 -picky%5:00:00:fastidious:00 00984624 1 0 -picnic%1:04:00:: 00575365 2 1 -picnic%1:13:00:: 07576438 3 0 -picnic%1:28:00:: 15138691 1 2 -picnic%2:34:00:: 01168259 1 1 -picnic_area%1:15:00:: 08619343 1 1 -picnic_ground%1:15:00:: 08619343 1 0 -picnic_ham%1:13:00:: 07670147 1 0 -picnic_shoulder%1:13:00:: 07670147 1 0 -picnicker%1:18:00:: 10432189 1 0 -pico_de_orizaba%1:15:00:: 09173777 1 0 -picofarad%1:23:00:: 13635854 1 0 -picoides%1:05:00:: 01839221 1 0 -picometer%1:23:00:: 13657849 1 0 -picometre%1:23:00:: 13657849 1 0 -picornavirus%1:05:00:: 01337583 1 0 -picosecond%1:28:00:: 15235853 1 0 -picot%1:06:00:: 03930946 1 0 -picovolt%1:23:00:: 13642982 1 0 -picrasma%1:20:00:: 12718314 1 0 -picrasma_excelsa%1:20:00:: 12718483 1 0 -picrasma_excelsum%1:20:00:: 12718483 1 0 -picric_acid%1:27:00:: 14983326 1 0 -picris%1:20:00:: 12002957 1 0 -picris_echioides%1:20:00:: 12003167 1 0 -pictograph%1:10:00:: 06840530 1 0 -pictographic%3:01:00:: 02778122 1 0 -pictor%1:17:00:: 09391524 1 0 -pictorial%1:10:00:: 06593668 1 0 -pictorial%3:01:00:: 02861617 1 3 -pictorial%5:00:00:realistic:00 01941026 2 1 -pictorial_matter%1:10:00:: 06999436 1 0 -pictorial_representation%1:04:00:: 00900375 1 0 -pictorially%4:02:00:: 00023958 1 1 -pictural%3:01:00:: 02861617 1 0 -picture%1:06:00:: 03931044 1 25 -picture%1:06:01:: 03876519 2 24 -picture%1:06:02:: 03925226 10 0 -picture%1:09:00:: 05936704 3 22 -picture%1:09:01:: 05766077 9 1 -picture%1:10:00:: 06999436 5 3 -picture%1:10:01:: 06277803 7 3 -picture%1:10:02:: 06613686 6 3 -picture%1:10:03:: 07201804 8 2 -picture%1:26:00:: 13937075 4 10 -picture%2:36:00:: 01686956 2 4 -picture%2:36:01:: 01635432 1 5 -picture_book%1:06:00:: 03931651 1 1 -picture_card%1:06:00:: 03314028 1 0 -picture_element%1:06:00:: 03952277 1 0 -picture_frame%1:06:00:: 03931765 1 1 -picture_gallery%1:06:00:: 03412058 1 0 -picture_hat%1:06:00:: 03931885 1 1 -picture_palace%1:06:00:: 03032252 1 1 -picture_plane%1:25:00:: 13861934 1 5 -picture_postcard%1:10:00:: 06628228 1 0 -picture_rail%1:06:00:: 03931980 1 0 -picture_show%1:10:00:: 06613686 1 0 -picture_taking%1:04:00:: 00903559 1 0 -picture_tube%1:06:00:: 03617594 1 0 -picture_window%1:06:00:: 03932080 1 0 -picture_writing%1:10:00:: 06361218 1 0 -pictured%5:00:00:delineated:00 01715157 2 0 -pictured%5:00:00:unreal:00 01935301 1 1 -picturesque%5:00:00:beautiful:00 00219924 1 2 -picturesque%5:00:00:colorful:03 00407887 2 1 -picturesquely%4:02:00:: 00422104 1 0 -picturesqueness%1:07:00:: 04684765 2 0 -picturesqueness%1:07:01:: 04819822 1 0 -picturing%1:04:00:: 00900375 2 1 -picturing%1:09:00:: 05768415 1 1 -picul%1:23:00:: 13718675 1 0 -piculet%1:05:00:: 01841943 1 0 -picumnus%1:05:00:: 01841815 1 0 -picus%1:05:00:: 01838961 1 0 -picus_viridis%1:05:00:: 01839086 1 0 -pid%1:26:00:: 14172558 1 0 -piddle%1:27:00:: 14855724 1 0 -piddle%2:29:00:: 00072012 2 0 -piddle%2:42:00:: 02708123 1 0 -piddle_away%2:42:00:: 02708123 1 0 -piddling%5:00:00:unimportant:00 01280908 1 0 -piddock%1:05:00:: 01967963 1 0 -pidgin%1:10:00:: 06905680 1 1 -pidlimdi%1:10:00:: 06983795 1 0 -pie%1:10:00:: 06942094 2 0 -pie%1:13:00:: 07625493 1 2 -pie-dog%1:05:00:: 02085118 1 0 -pie-eyed%5:00:00:intoxicated:00 00798103 1 0 -pie_chart%1:10:00:: 07002312 1 0 -pie_crust%1:13:00:: 07623263 1 0 -pie_plant%1:20:00:: 12603449 1 0 -pie_shell%1:13:00:: 07623263 1 0 -piebald%5:00:00:colored:00 00398978 1 0 -piece%1:06:00:: 03932203 1 23 -piece%1:06:02:: 03716327 13 0 -piece%1:06:03:: 03343853 7 2 -piece%1:06:04:: 03838535 10 1 -piece%1:06:05:: 03932499 2 13 -piece%1:07:00:: 05084889 9 1 -piece%1:10:01:: 07037465 4 7 -piece%1:10:02:: 06269396 6 2 -piece%1:11:00:: 07309457 5 4 -piece%1:13:00:: 07654667 8 1 -piece%1:17:00:: 09385911 3 8 -piece%1:21:00:: 13286524 12 0 -piece%1:28:00:: 15246353 11 0 -piece%2:30:00:: 00261705 5 0 -piece%2:34:00:: 01174294 4 0 -piece%2:35:00:: 01294992 3 0 -piece%2:35:02:: 01590171 1 1 -piece%2:36:00:: 01656788 2 0 -piece-dye%2:30:00:: 00288947 1 0 -piece_de_resistance%1:06:00:: 03069567 1 1 -piece_de_resistance%1:13:00:: 07579688 2 0 -piece_goods%1:06:00:: 04611654 1 0 -piece_of_ass%1:04:00:: 00846021 1 0 -piece_of_cake%1:04:00:: 00575365 1 0 -piece_of_cloth%1:06:00:: 03932670 1 0 -piece_of_eight%1:21:00:: 13389660 1 0 -piece_of_furniture%1:06:00:: 03405725 1 0 -piece_of_ground%1:15:00:: 08673395 1 0 -piece_of_land%1:15:00:: 08673395 1 0 -piece_of_leather%1:06:00:: 03933183 1 0 -piece_of_material%1:06:00:: 03932670 1 0 -piece_of_music%1:10:00:: 07037465 1 0 -piece_of_paper%1:10:00:: 06255777 1 3 -piece_of_tail%1:04:00:: 00846021 1 0 -piece_of_work%1:06:00:: 04599396 1 0 -piece_of_writing%1:10:00:: 06362953 1 0 -piecemeal%4:02:00:: 00422281 1 0 -piecemeal%5:00:00:gradual:01 01143006 1 0 -piecework%1:04:00:: 00581517 1 0 -pied%5:00:00:colored:00 00398978 1 0 -pied-a-terre%1:06:00:: 03933391 1 0 -pied-billed_grebe%1:05:00:: 02051059 1 0 -pied_lemming%1:05:00:: 02345600 1 0 -pied_piper%1:18:00:: 09602964 2 0 -pied_piper%1:18:01:: 10432320 1 0 -pied_piper_of_hamelin%1:18:00:: 09602964 1 0 -piedmont%1:15:00:: 08809749 3 0 -piedmont%1:15:01:: 09052100 1 1 -piedmont%1:17:00:: 09391644 2 0 -piedmont_glacier%1:17:00:: 09391774 1 0 -piedmont_type_of_glacier%1:17:00:: 09391774 1 0 -piemonte%1:15:00:: 08809749 1 0 -pieplant%1:13:00:: 07713267 1 0 -pier%1:06:00:: 03933529 1 1 -pier%1:06:01:: 03933933 3 0 -pier%1:06:02:: 03934042 2 0 -pier_arch%1:06:00:: 03934229 1 0 -pier_glass%1:06:00:: 03934311 1 0 -pier_luigi_nervi%1:18:00:: 11203920 1 0 -pier_mirror%1:06:00:: 03934311 1 0 -pier_table%1:06:00:: 03934565 1 0 -pierce%1:18:00:: 11234813 1 0 -pierce%2:35:00:: 01441100 5 0 -pierce%2:35:01:: 01441510 4 0 -pierce%2:35:02:: 01442361 1 2 -pierce%2:37:00:: 01769693 2 1 -pierce%2:39:00:: 02135487 3 0 -pierced%5:00:00:cut:01 00662139 1 0 -piercing%5:00:00:perceptive:00 01744515 1 0 -piercing%5:00:00:sharp:04 00803432 2 0 -piercingly%4:02:00:: 00422435 1 0 -piercingly%4:02:01:: 00050075 2 0 -pierid%1:05:00:: 02280458 1 0 -pierid_butterfly%1:05:00:: 02280458 1 0 -pieridae%1:05:00:: 02280223 1 0 -pieris%1:05:00:: 02280845 2 0 -pieris%1:20:00:: 12243292 1 0 -pieris_brassicae%1:05:00:: 02281136 1 0 -pieris_floribunda%1:20:00:: 12243693 1 0 -pieris_japonica%1:20:00:: 12243459 1 0 -pieris_protodice%1:05:00:: 02281267 1 0 -pieris_rapae%1:05:01:: 02281015 2 0 -pieris_rapae%1:05:02:: 02310585 1 0 -pierre%1:15:00:: 09139508 1 0 -pierre-paul_broca%1:18:00:: 10864858 1 0 -pierre_abelard%1:18:00:: 10807317 1 0 -pierre_athanase_larousse%1:18:00:: 11118072 1 0 -pierre_auguste_renoir%1:18:00:: 11258096 1 0 -pierre_boulez%1:18:00:: 10859369 1 0 -pierre_charles_l'enfant%1:18:00:: 11126295 1 0 -pierre_corneille%1:18:00:: 10911104 1 0 -pierre_curie%1:18:00:: 10917999 1 0 -pierre_de_fermat%1:18:00:: 10969799 1 0 -pierre_de_terrail%1:18:00:: 10838802 1 0 -pierre_joseph_proudhon%1:18:00:: 11247155 1 0 -pierre_laporte_bridge%1:06:00:: 03934416 1 0 -pierre_larousse%1:18:00:: 11118072 1 0 -pierre_simon_de_laplace%1:18:00:: 11117451 1 0 -pierre_teilhard_de_chardin%1:18:00:: 11334609 1 0 -pierre_terrail%1:18:00:: 10838802 1 0 -pierrot%1:18:00:: 09603120 1 0 -piet_mondrian%1:18:00:: 11185175 1 0 -pieta%1:06:00:: 03934656 1 0 -pieter_breughel%1:18:00:: 10868177 1 0 -pieter_bruegel%1:18:00:: 10868177 1 0 -pieter_brueghel%1:18:00:: 10868177 1 0 -pieter_brueghel_the_elder%1:18:00:: 10868177 1 0 -pieter_zeeman%1:18:00:: 11405437 1 0 -pietism%1:07:01:: 04827175 2 0 -pietism%1:14:00:: 08475722 1 0 -pietistic%3:01:00:: 02920594 1 0 -pietistic%5:00:00:pious:00 01782100 2 0 -pietistical%3:01:00:: 02920594 1 0 -pietistical%5:00:00:pious:00 01782100 2 0 -piety%1:07:00:: 04826771 1 1 -piezo_effect%1:19:00:: 11491308 1 0 -piezoelectric%3:01:00:: 02980972 1 2 -piezoelectric_crystal%1:06:00:: 03934780 1 0 -piezoelectric_effect%1:19:00:: 11491308 1 1 -piezoelectricity%1:19:00:: 11491308 1 1 -piezometer%1:06:00:: 03934890 1 0 -piffle%1:10:00:: 06608143 1 0 -piffle%2:29:00:: 00106843 2 0 -piffle%2:32:00:: 01036804 1 0 -piffling%5:00:00:unimportant:00 01280908 1 0 -pig%1:05:00:: 02395406 1 7 -pig%1:06:00:: 03934998 6 0 -pig%1:06:01:: 03935116 5 0 -pig%1:18:00:: 10179649 3 0 -pig%1:18:01:: 09879144 4 0 -pig%1:18:02:: 10612210 2 0 -pig%2:29:00:: 00058645 3 0 -pig%2:34:00:: 01196653 2 0 -pig%2:42:00:: 02615739 1 0 -pig's_ears%1:20:00:: 13004826 1 0 -pig-a-back%4:02:00:: 00349309 2 0 -pig-a-back%4:02:01:: 00349454 1 0 -pig-headedly%4:02:00:: 00198845 1 0 -pig-sized%5:00:00:sized:00 02224076 1 0 -pig_bed%1:06:00:: 03935116 1 0 -pig_farm%1:06:00:: 03935234 1 0 -pig_iron%1:27:00:: 14983491 1 0 -pig_it%2:42:00:: 02615739 1 0 -pig_laurel%1:20:00:: 12238073 1 0 -pig_lead%1:27:00:: 14983694 1 0 -pig_out%2:34:00:: 01193099 1 0 -pigboat%1:06:00:: 04347754 1 0 -pigeon%1:05:00:: 01811909 1 3 -pigeon-breasted%5:00:00:unshapely:00 02142139 1 0 -pigeon-pea_plant%1:20:00:: 12510774 1 0 -pigeon-toed%3:00:00:: 01032624 1 1 -pigeon_berry%1:20:00:: 11855553 1 0 -pigeon_breast%1:26:00:: 14215199 1 0 -pigeon_droppings%1:27:00:: 14854764 1 0 -pigeon_guillemot%1:05:00:: 02047045 1 0 -pigeon_hawk%1:05:00:: 01612275 1 0 -pigeon_loft%1:06:00:: 03686363 1 0 -pigeon_pea%1:13:00:: 07726230 2 0 -pigeon_pea%1:20:00:: 12510774 1 0 -pigeon_toes%1:26:00:: 14560115 1 0 -pigeonhole%1:06:00:: 03144486 2 0 -pigeonhole%1:09:00:: 05839663 1 0 -pigeonhole%2:31:00:: 00656292 2 0 -pigeonhole%2:35:00:: 01497634 1 0 -pigeonholing%1:09:00:: 05733090 1 0 -pigfish%1:05:00:: 02590094 2 0 -pigfish%1:05:01:: 02608284 1 0 -piggery%1:06:00:: 03935234 1 0 -piggish%5:00:00:gluttonous:00 00011327 1 0 -piggishly%4:02:00:: 00422619 1 0 -piggishness%1:07:00:: 04886235 1 0 -piggy%1:05:00:: 02395694 1 0 -piggy%5:00:00:gluttonous:00 00011327 1 0 -piggy_bank%1:06:00:: 03935335 1 0 -piggyback%1:04:00:: 00319513 1 0 -piggyback%2:30:00:: 00586461 5 0 -piggyback%2:35:00:: 01601934 4 0 -piggyback%2:35:02:: 01602096 3 0 -piggyback%2:35:03:: 01602191 2 0 -piggyback%2:38:00:: 01957403 1 0 -piggyback%4:02:00:: 00349309 2 0 -piggyback%4:02:01:: 00349454 1 0 -piggyback_plant%1:20:00:: 12804352 1 0 -pigheaded%5:00:00:stubborn:00 02327428 1 1 -pigheadedness%1:07:00:: 04863074 1 0 -piglet%1:05:00:: 02395694 1 0 -pigman%1:18:00:: 10683593 1 0 -pigment%1:06:00:: 03875218 3 0 -pigment%1:27:00:: 14989820 1 2 -pigment%1:27:01:: 14990723 2 0 -pigment%2:30:00:: 00287258 2 0 -pigment%2:30:01:: 00287392 1 0 -pigmentation%1:07:00:: 04976319 2 0 -pigmentation%1:22:00:: 13537622 1 0 -pigmy%1:18:00:: 10496489 2 0 -pigmy%1:18:01:: 10496626 1 0 -pigmy_talinum%1:20:00:: 11863467 1 0 -pignolia%1:13:00:: 07774842 1 0 -pignut%1:20:00:: 12320627 1 0 -pignut_hickory%1:20:00:: 12320627 1 0 -pigpen%1:06:00:: 04346428 1 0 -pigs'_feet%1:13:00:: 07671581 1 0 -pigs'_knuckles%1:13:00:: 07671581 1 0 -pigs_in_blankets%1:13:00:: 07873348 1 0 -pigskin%1:27:00:: 14763424 1 1 -pigsticking%1:04:00:: 00453631 1 0 -pigsty%1:06:00:: 04346428 1 0 -pigswill%1:13:00:: 07805006 1 0 -pigtail%1:08:00:: 05259914 1 0 -pigwash%1:13:00:: 07805006 1 0 -pigweed%1:13:00:: 07733712 3 0 -pigweed%1:20:01:: 11828577 1 0 -pigweed%1:20:02:: 11824146 2 0 -pij%1:14:00:: 08037118 1 0 -pika%1:05:00:: 02328429 1 0 -pike%1:05:00:: 02561108 5 0 -pike%1:06:00:: 03935450 4 0 -pike%1:06:01:: 03306610 1 1 -pike%1:06:02:: 03935698 3 0 -pike%1:13:00:: 07779375 2 0 -pike's_peak%1:17:00:: 09391996 1 0 -pike-perch%1:05:00:: 02557591 1 0 -pike_perch%1:05:00:: 02557591 1 0 -pikeblenny%1:05:00:: 02614482 1 0 -piked_reverse_hang%1:04:00:: 00437219 1 0 -piked_whale%1:05:00:: 02065407 1 0 -pikestaff%1:06:00:: 03935789 1 0 -pilaf%1:13:00:: 07873464 1 0 -pilaff%1:13:00:: 07873464 1 0 -pilar%3:01:00:: 02778439 1 0 -pilar_cyst%1:26:00:: 14202763 1 0 -pilary%5:00:00:hairy:00 00215087 1 0 -pilaster%1:06:00:: 03935883 1 0 -pilate%1:18:00:: 11235112 1 0 -pilau%1:13:00:: 07873464 1 0 -pilaw%1:13:00:: 07873464 1 0 -pilchard%1:05:00:: 02533209 2 0 -pilchard%1:13:00:: 07794063 1 0 -pile%1:06:00:: 02753710 8 0 -pile%1:06:01:: 04541136 5 0 -pile%1:06:02:: 03936045 7 0 -pile%1:06:03:: 03936269 6 0 -pile%1:08:00:: 05255692 4 0 -pile%1:14:00:: 07961480 1 9 -pile%1:21:00:: 13250680 3 2 -pile%1:23:00:: 13774404 2 3 -pile%2:35:00:: 01503404 1 8 -pile%2:35:03:: 01434822 3 0 -pile%2:38:00:: 02064131 2 2 -pile_driver%1:06:00:: 03936466 1 0 -pile_dwelling%1:06:00:: 03634034 1 0 -pile_up%2:30:00:: 00158804 1 4 -pile_up%2:35:00:: 01504298 2 2 -pile_up%2:40:00:: 02304982 3 0 -pilea%1:20:00:: 12394861 1 0 -pilea_involucrata%1:20:00:: 12395463 1 0 -pilea_microphylla%1:20:00:: 12395289 1 0 -pilea_pumilla%1:20:00:: 12395068 1 0 -piles%1:23:00:: 13777509 2 0 -piles%1:26:00:: 14327125 1 0 -pileup%1:11:00:: 07317285 1 0 -pileus%1:20:00:: 11532351 1 0 -pilewort%1:20:00:: 11721337 1 0 -pilfer%2:40:00:: 02276866 1 2 -pilferage%1:04:00:: 00781355 1 0 -pilferer%1:18:00:: 10616204 1 0 -pilgrim%1:18:00:: 10432441 1 1 -pilgrim%1:18:01:: 10432532 3 0 -pilgrim%1:18:02:: 10432674 2 0 -pilgrim's_journey%1:04:00:: 00311687 1 0 -pilgrim's_progress%1:10:00:: 06372572 1 0 -pilgrim_father%1:18:00:: 10432674 1 0 -pilgrimage%1:04:00:: 00311687 1 2 -piling%1:06:00:: 03936269 1 0 -pill%1:06:00:: 03936568 2 1 -pill%1:06:01:: 03936764 1 6 -pill%1:06:02:: 03936895 5 0 -pill%1:09:00:: 05833511 4 0 -pill%1:18:00:: 10432875 3 0 -pill_bottle%1:06:00:: 03937543 1 0 -pill_bug%1:05:00:: 01991520 1 0 -pill_head%1:18:00:: 10433077 1 0 -pill_pusher%1:18:00:: 10421470 1 0 -pill_roller%1:18:00:: 10421470 1 0 -pillage%1:04:00:: 00965895 2 0 -pillage%1:21:00:: 13262663 1 0 -pillage%2:40:00:: 02344568 1 0 -pillaged%5:00:00:destroyed:00 00735709 2 0 -pillaged%5:00:00:empty:00 01087757 1 0 -pillager%1:18:00:: 10443170 1 0 -pillaging%1:04:00:: 00965895 1 0 -pillar%1:06:00:: 03073977 5 0 -pillar%1:06:01:: 03074380 4 0 -pillar%1:09:00:: 05913842 1 1 -pillar%1:18:00:: 10432957 3 0 -pillar%1:25:00:: 13900422 2 0 -pillar-shaped%5:00:00:rounded:00 02047160 1 0 -pillar_box%1:06:00:: 03937437 1 0 -pillar_of_islam%1:09:00:: 05913994 1 0 -pillar_of_strength%1:18:00:: 10718794 1 0 -pillared%5:00:00:columned:00 00141429 1 0 -pillars_of_hercules%1:17:00:: 09392162 1 0 -pillbox%1:06:00:: 03937633 3 0 -pillbox%1:06:01:: 03937751 2 0 -pillbox%1:06:02:: 03937835 1 0 -pillion%1:06:00:: 03937931 1 0 -pillock%1:18:00:: 10667187 1 0 -pillory%1:06:00:: 03938037 1 0 -pillory%2:32:02:: 00823827 3 0 -pillory%2:41:00:: 02483828 2 0 -pillory%2:41:01:: 02483941 1 1 -pillow%1:06:00:: 03938244 1 8 -pillow%2:35:00:: 01502946 1 0 -pillow_block%1:06:00:: 03938401 1 0 -pillow_fight%1:04:00:: 00487228 1 0 -pillow_lace%1:06:00:: 03938522 1 0 -pillow_lava%1:27:00:: 14931633 1 0 -pillow_sham%1:06:00:: 03938725 1 0 -pillow_slip%1:06:00:: 02975412 1 0 -pillow_talk%1:10:00:: 07142242 1 0 -pillowcase%1:06:00:: 02975412 1 0 -pillwort%1:20:00:: 12958261 1 0 -pilocarpine%1:06:00:: 03938838 1 0 -pilomotor_reflex%1:04:00:: 00866606 1 0 -pilose%5:00:00:hairy:00 00215087 1 0 -pilosebaceous%3:01:00:: 02778533 1 0 -pilosella%1:20:00:: 12003407 1 0 -pilosella_aurantiaca%1:20:00:: 12003814 1 0 -pilosella_officinarum%1:20:00:: 12004120 1 0 -pilosity%1:07:00:: 04683453 1 0 -pilot%1:06:00:: 03939281 5 0 -pilot%1:06:01:: 03328201 6 0 -pilot%1:09:00:: 05938400 4 0 -pilot%1:10:00:: 06620906 3 0 -pilot%1:18:00:: 10433164 1 6 -pilot%1:18:01:: 10433452 2 0 -pilot%2:38:00:: 01941093 1 1 -pilot%2:38:01:: 01933305 2 1 -pilot_balloon%1:06:00:: 03938951 1 0 -pilot_biscuit%1:13:00:: 07694839 1 0 -pilot_bit%1:06:00:: 03939062 1 0 -pilot_blacksnake%1:05:00:: 01732789 1 0 -pilot_boat%1:06:00:: 03939178 1 0 -pilot_bread%1:13:00:: 07694839 1 0 -pilot_burner%1:06:00:: 03939281 1 0 -pilot_chart%1:06:00:: 03811648 1 0 -pilot_cloth%1:06:00:: 03939440 1 0 -pilot_engine%1:06:00:: 03939565 1 0 -pilot_experiment%1:09:00:: 05799071 1 0 -pilot_film%1:10:00:: 06620906 1 0 -pilot_ladder%1:06:00:: 03591116 1 0 -pilot_lamp%1:06:00:: 03939844 1 0 -pilot_light%1:06:00:: 03939844 2 0 -pilot_light%1:06:01:: 03939281 1 1 -pilot_program%1:04:00:: 00795352 1 1 -pilot_program%1:10:00:: 06620906 2 0 -pilot_project%1:04:00:: 00795352 1 0 -pilot_whale%1:05:00:: 02071636 1 0 -pilotage%1:04:00:: 00815801 1 0 -pilotage%1:04:01:: 00609506 2 0 -pilotfish%1:05:00:: 02580188 1 0 -pilothouse%1:06:00:: 03939677 1 0 -piloting%1:04:00:: 00815801 1 0 -piloting%1:04:01:: 00609506 2 0 -pilotless%5:00:00:unmanned:00 01480080 1 0 -pilotless_aircraft%1:06:00:: 03245889 1 0 -pilous%5:00:00:hairy:00 00215087 1 0 -pilsen%1:15:00:: 08757791 1 0 -pilsener%1:13:00:: 07888229 1 0 -pilsner%1:13:00:: 07888229 1 0 -piltdown_hoax%1:18:00:: 10433610 1 0 -piltdown_man%1:18:00:: 10433610 1 0 -pilularia%1:20:00:: 12958140 1 0 -pilularia_globulifera%1:20:00:: 12958261 1 0 -pilus%1:05:00:: 01902132 2 0 -pilus%1:08:00:: 05254393 1 0 -pima%1:10:00:: 06918640 2 0 -pima%1:18:00:: 09665897 1 0 -pimenta%1:20:00:: 12330751 1 0 -pimenta_acris%1:20:00:: 12330891 1 0 -pimenta_dioica%1:20:00:: 12331066 1 0 -pimenta_officinalis%1:20:00:: 12331263 1 0 -pimento%1:13:00:: 07721195 2 0 -pimento%1:20:00:: 12901264 1 0 -pimento_butter%1:13:00:: 07855812 1 0 -pimento_tree%1:20:00:: 12331066 1 0 -pimiento%1:13:00:: 07721195 2 0 -pimiento%1:20:00:: 12901264 1 0 -pimlico%1:06:00:: 03940022 1 0 -pimozide%1:06:00:: 03940154 1 0 -pimp%1:18:00:: 10433737 1 3 -pimp%2:34:00:: 01180975 1 0 -pimpernel%1:20:00:: 12092262 2 0 -pimpernel%1:20:02:: 12637485 1 0 -pimpinella%1:20:00:: 12942930 1 0 -pimpinella_anisum%1:20:00:: 12943049 1 0 -pimple%1:26:00:: 14334306 1 1 -pimpled%5:00:00:blemished:00 00246175 1 0 -pimply%5:00:00:blemished:00 00246175 1 0 -pin%1:06:00:: 03940256 9 0 -pin%1:06:01:: 03940713 1 1 -pin%1:06:02:: 03951971 6 0 -pin%1:06:03:: 03905730 10 0 -pin%1:06:04:: 02882647 11 0 -pin%1:06:06:: 03940894 8 0 -pin%1:06:07:: 03941013 7 0 -pin%1:08:00:: 05561707 5 0 -pin%1:10:00:: 06887441 4 0 -pin%1:10:05:: 07271791 3 0 -pin%1:11:00:: 07471371 2 0 -pin%2:33:00:: 01121621 4 0 -pin%2:35:01:: 01368264 2 1 -pin%2:35:02:: 01444723 3 0 -pin%2:35:03:: 01207149 1 2 -pin-tailed_duck%1:05:00:: 01849157 1 0 -pin-tailed_grouse%1:05:00:: 01816140 1 0 -pin-tailed_sandgrouse%1:05:00:: 01816140 1 0 -pin-up%1:18:00:: 09972458 1 0 -pin_bone%1:13:00:: 07659425 1 0 -pin_cherry%1:20:00:: 12647893 1 0 -pin_clover%1:20:00:: 12688903 1 0 -pin_curl%1:08:00:: 05258462 1 0 -pin_down%2:31:00:: 00715541 1 1 -pin_down%2:35:00:: 01340149 3 0 -pin_down%2:41:00:: 02496185 2 0 -pin_grass%1:20:00:: 12688903 1 0 -pin_money%1:21:00:: 13422545 1 0 -pin_number%1:10:00:: 06887441 1 0 -pin_oak%1:20:01:: 12276872 1 0 -pin_oak%1:20:02:: 12273768 2 0 -pin_table%1:06:00:: 03941417 1 0 -pin_tumbler%1:06:00:: 03941013 1 0 -pin_up%2:35:00:: 01340149 1 0 -pin_wrench%1:06:00:: 03944530 1 0 -pina_cloth%1:27:00:: 14592309 1 0 -pina_colada%1:13:00:: 07930433 1 0 -pinaceae%1:20:00:: 11607739 1 0 -pinafore%1:06:00:: 03604400 1 1 -pinata%1:06:00:: 03941231 1 0 -pinatubo%1:15:00:: 08982289 1 0 -pinball%1:04:00:: 00459284 1 1 -pinball_game%1:04:00:: 00459284 1 0 -pinball_machine%1:06:00:: 03941417 1 0 -pince-nez%1:06:00:: 03941586 1 0 -pincer%1:05:00:: 02156532 2 0 -pincer%1:06:00:: 03941684 1 0 -pinch%1:04:00:: 00357275 6 0 -pinch%1:04:01:: 00088725 7 0 -pinch%1:04:03:: 00842281 5 0 -pinch%1:11:01:: 07417405 4 0 -pinch%1:23:00:: 13774115 3 0 -pinch%1:26:00:: 14295140 2 0 -pinch%1:26:01:: 14409371 1 0 -pinch%2:30:00:: 00504019 5 0 -pinch%2:35:00:: 01456771 1 3 -pinch%2:35:01:: 01457206 2 2 -pinch%2:35:02:: 01321509 4 0 -pinch%2:40:00:: 02276866 3 0 -pinch_bar%1:06:00:: 03941887 1 0 -pinch_hitter%1:18:00:: 10434160 1 1 -pinchas_zukerman%1:18:00:: 11408041 1 0 -pinchbeck%1:27:00:: 14718233 1 0 -pinchbeck%5:00:00:counterfeit:00 01118118 1 0 -pinche%1:05:00:: 02491474 1 0 -pinched%5:00:00:constricted:00 01448861 4 0 -pinched%5:00:00:high:03 01213550 1 1 -pinched%5:00:00:poor:00 02023661 3 0 -pinched%5:00:00:thin:03 00988988 2 1 -pinchgut%1:18:00:: 10434054 1 0 -pinckneya%1:20:00:: 12669157 1 0 -pinckneya_pubens%1:20:00:: 12669362 1 0 -pinctada%1:05:00:: 01961862 1 0 -pinctada_margaritifera%1:05:00:: 01961985 1 0 -pincurl_clip%1:06:00:: 03942028 1 0 -pincus%1:18:00:: 11235263 1 0 -pincushion%1:06:00:: 03942126 1 0 -pincushion_flower%1:20:00:: 12683571 1 0 -pincushion_hakea%1:20:00:: 12218868 1 0 -pindar%1:18:00:: 11235510 1 0 -pindaric%1:10:00:: 06384034 1 0 -pindaric_ode%1:10:00:: 06384034 1 0 -pindolol%1:06:00:: 03942244 1 0 -pine%1:20:00:: 11608250 1 4 -pine%1:20:02:: 11608885 2 2 -pine%2:37:00:: 01805684 1 0 -pine-barren_sandwort%1:20:00:: 11806369 1 0 -pine-tar_rag%1:06:00:: 03942397 1 0 -pine-weed%1:20:00:: 12368637 1 0 -pine_away%2:30:00:: 00389992 1 0 -pine_bluff%1:15:00:: 09060480 1 0 -pine_family%1:20:00:: 11607739 1 0 -pine_fern%1:20:00:: 12955840 1 0 -pine_finch%1:05:00:: 01532511 1 0 -pine_grosbeak%1:05:00:: 01541102 1 0 -pine_hyacinth%1:20:00:: 11729860 1 0 -pine_knot%1:27:00:: 15101271 1 1 -pine_leaf_aphid%1:05:00:: 02255270 1 0 -pine_lily%1:20:00:: 12427184 1 0 -pine_lizard%1:05:00:: 01680813 1 0 -pine_marten%1:05:00:: 02450295 1 0 -pine_mouse%1:05:00:: 02340930 1 0 -pine_nut%1:13:00:: 07774842 1 0 -pine_sawyer%1:05:00:: 02169218 1 0 -pine_siskin%1:05:00:: 01532511 1 0 -pine_snake%1:05:00:: 01734104 1 0 -pine_spittlebug%1:05:00:: 02258508 1 0 -pine_tar%1:27:00:: 14991476 1 0 -pine_tree%1:20:00:: 11608250 1 0 -pine_tree_state%1:15:00:: 09092497 1 0 -pine_vole%1:05:00:: 02340930 1 0 -pineal%3:01:00:: 03099928 1 0 -pineal%5:00:00:rounded:00 02047252 2 0 -pineal_body%1:08:00:: 05485098 1 0 -pineal_eye%1:08:00:: 05299927 1 0 -pineal_gland%1:08:00:: 05485098 1 0 -pinealoma%1:26:00:: 14250433 1 0 -pineapple%1:13:00:: 07753275 2 0 -pineapple%1:20:00:: 12607456 1 0 -pineapple_family%1:20:00:: 12606907 1 0 -pineapple_guava%1:13:00:: 07763107 1 0 -pineapple_juice%1:13:00:: 07925116 1 0 -pineapple_plant%1:20:00:: 12607456 1 0 -pineapple_weed%1:20:00:: 11995396 1 0 -pinecone%1:20:00:: 11683331 1 1 -pinesap%1:20:00:: 12259316 1 0 -pinetum%1:17:00:: 09392402 1 0 -pineus%1:05:00:: 02255144 1 0 -pineus_pinifoliae%1:05:00:: 02255270 1 0 -pineweed%1:20:00:: 12368637 1 0 -pinfish%1:05:00:: 02592371 1 0 -pinfold%1:06:00:: 03942600 1 0 -ping%1:11:00:: 07389569 2 0 -ping%1:17:00:: 09392507 1 0 -ping%2:32:00:: 00743692 5 0 -ping%2:32:01:: 00743911 4 0 -ping%2:35:00:: 01236795 1 1 -ping%2:39:00:: 02178709 3 0 -ping%2:39:01:: 02178866 2 0 -ping-pong%1:04:00:: 00499263 1 1 -ping-pong_ball%1:06:00:: 03942813 1 0 -ping-pong_table%1:06:00:: 04381587 1 0 -ping_river%1:17:00:: 09392507 1 0 -pinger%1:06:00:: 03942692 1 0 -pingpong_paddle%1:06:00:: 04381724 1 0 -pingpong_table%1:06:00:: 04381587 1 0 -pinguecula%1:08:00:: 05315855 1 0 -pinguicula%1:20:00:: 12872698 1 0 -pinguinus%1:05:00:: 02046321 1 0 -pinguinus_impennis%1:05:00:: 02046442 1 0 -pinhead%1:06:00:: 03942920 2 0 -pinhead%1:18:00:: 10039391 1 0 -pinhole%1:06:00:: 03943010 1 0 -pinicola%1:05:00:: 01540969 1 0 -pinicola_enucleator%1:05:00:: 01541102 1 0 -pining%1:12:00:: 07487063 1 0 -pinion%1:05:01:: 02152446 3 0 -pinion%1:05:02:: 02468864 2 0 -pinion%1:06:00:: 03943115 1 0 -pinion%2:30:00:: 00512749 2 0 -pinion%2:35:00:: 01300565 1 0 -pinion_and_crown_wheel%1:06:00:: 02833793 1 0 -pinion_and_ring_gear%1:06:00:: 02833793 1 0 -pinioned%5:00:00:bound:01 00253654 2 0 -pinioned%5:00:00:winged:00 02567815 1 0 -pinite%1:27:00:: 14690938 1 0 -pink%1:07:00:: 04970916 1 2 -pink%1:18:00:: 10434321 3 0 -pink%1:20:00:: 11807979 2 0 -pink%2:35:00:: 01255508 3 0 -pink%2:39:00:: 02185373 1 0 -pink%2:39:03:: 02178866 2 0 -pink%5:00:00:chromatic:00 00379595 1 12 -pink-and-white_everlasting%1:20:00:: 11917407 1 0 -pink-collar%5:00:00:white-collar:00 02556568 1 0 -pink-lavender%5:00:00:chromatic:00 00379697 1 0 -pink-orange%5:00:00:chromatic:00 00379804 1 0 -pink-purple%5:00:00:chromatic:00 00380077 1 0 -pink-red%5:00:00:chromatic:00 00379914 1 0 -pink-slipped%5:00:00:unemployed:00 00864884 1 0 -pink-tinged%5:00:00:chromatic:00 00379992 1 0 -pink-tipped%5:00:00:tipped:00 02431178 1 0 -pink_bollworm%1:05:00:: 02310149 1 0 -pink_calla%1:20:00:: 11794024 1 0 -pink_cockatoo%1:05:00:: 01819465 1 0 -pink_disease%1:26:00:: 14281678 1 0 -pink_disease_fungus%1:20:00:: 13015509 1 0 -pink_elephants%1:26:00:: 14378064 1 0 -pink_family%1:20:00:: 11804604 1 0 -pink_fivecorner%1:20:00:: 12255225 1 0 -pink_fritillary%1:20:00:: 12453714 1 0 -pink_lady%1:13:00:: 07916582 1 0 -pink_of_my_john%1:20:00:: 12390681 1 0 -pink_paper_daisy%1:20:00:: 11917407 1 0 -pink_sand_verbena%1:20:00:: 11837743 1 0 -pink_shower%1:20:00:: 12492460 1 0 -pink_shower_tree%1:20:00:: 12492460 1 0 -pink_slip%1:10:00:: 07213079 1 0 -pink_wine%1:13:00:: 07893253 1 0 -pinkeye%1:26:00:: 14341432 1 0 -pinkie%1:08:00:: 05567727 1 0 -pinkify%2:30:00:: 00285414 1 0 -pinkish%5:00:00:chromatic:00 00379595 1 0 -pinkish-lavender%5:00:00:chromatic:00 00379697 1 0 -pinkish-orange%5:00:00:chromatic:00 00379804 1 0 -pinkish-purple%5:00:00:chromatic:00 00380077 1 0 -pinkish-white%5:00:00:achromatic:00 00391077 1 0 -pinkness%1:07:00:: 04971131 1 0 -pinko%1:18:00:: 10434321 1 0 -pinkroot%1:26:00:: 14283097 1 0 -pinky%1:08:00:: 05567727 1 0 -pinna%1:08:00:: 05323889 2 0 -pinna%1:20:00:: 13154388 1 0 -pinnace%1:06:00:: 04409128 1 0 -pinnacle%1:06:00:: 03943266 1 1 -pinnacle%1:15:00:: 08619457 3 0 -pinnacle%1:26:00:: 13940456 2 0 -pinnacle%2:38:00:: 01975237 2 0 -pinnacle%2:42:00:: 02694802 1 0 -pinnate%5:00:00:compound:00 02173632 1 0 -pinnate-leafed%5:00:00:leafy:00 01702814 1 0 -pinnate-leaved%5:00:00:leafy:00 01702814 1 0 -pinnate_leaf%1:20:00:: 13157137 1 0 -pinnated%5:00:00:compound:00 02173632 1 0 -pinnately%4:02:00:: 00422735 1 0 -pinnatifid%5:00:00:compound:00 02173773 1 0 -pinnatiped%1:05:00:: 02075927 1 0 -pinnatisect%5:00:00:compound:00 02173930 1 0 -pinner%1:06:00:: 03943448 1 0 -pinning%1:10:00:: 07228349 1 1 -pinniped%1:05:00:: 02075927 1 0 -pinniped_mammal%1:05:00:: 02075927 1 0 -pinnipedia%1:05:00:: 02075727 1 0 -pinnotheres%1:05:00:: 01980471 1 0 -pinnotheres_ostreum%1:05:00:: 01980830 1 0 -pinnotheridae%1:05:00:: 01980328 1 0 -pinnule%1:20:00:: 13154388 1 0 -pinny%1:06:00:: 03604400 1 0 -pinochle%1:04:00:: 00494100 1 0 -pinocle%1:04:00:: 00494100 1 0 -pinocytosis%1:22:00:: 13537761 1 0 -pinole%1:13:00:: 07568706 1 0 -pinon%1:20:00:: 11609475 1 0 -pinon_nut%1:13:00:: 07774842 1 0 -pinon_pine%1:20:00:: 11609862 1 0 -pinophytina%1:20:00:: 11607071 1 0 -pinopsida%1:20:00:: 11607071 1 0 -pinot%1:20:00:: 13146035 1 0 -pinot_blanc%1:13:00:: 07895100 2 0 -pinot_blanc%1:20:00:: 13146403 1 0 -pinot_chardonnay%1:13:00:: 07894799 1 0 -pinot_grape%1:20:00:: 13146035 1 0 -pinot_noir%1:13:00:: 07894965 2 0 -pinot_noir%1:20:00:: 13146225 1 0 -pinpoint%1:06:00:: 03943544 3 0 -pinpoint%1:07:00:: 04681230 2 1 -pinpoint%1:28:00:: 15245382 1 1 -pinpoint%2:40:00:: 02287380 1 3 -pinprick%1:06:00:: 03943623 2 0 -pinprick%1:26:00:: 14407211 1 0 -pins_and_needles%1:09:00:: 05722754 1 0 -pinscher%1:05:00:: 02106966 1 0 -pinsk%1:15:00:: 09011820 1 0 -pinstripe%1:06:00:: 03943714 3 0 -pinstripe%1:06:01:: 03943833 2 0 -pinstripe%1:06:02:: 03943920 1 0 -pinstriped%5:00:00:patterned:00 01789873 1 0 -pint%1:23:01:: 13619307 3 0 -pint%1:23:02:: 13621850 1 0 -pint%1:23:03:: 13620404 2 0 -pint-size%5:00:00:short:03 02387790 1 0 -pint-sized%5:00:00:short:03 02387790 1 0 -pintado%1:05:00:: 02626265 1 0 -pintail%1:05:01:: 01849157 1 0 -pinter%1:18:00:: 11235619 1 0 -pintle%1:06:00:: 03944024 1 0 -pinto%1:05:00:: 02389261 1 0 -pinto_bean%1:13:00:: 07727252 1 0 -pinus%1:20:00:: 11608055 1 0 -pinus_albicaulis%1:20:00:: 11614039 1 0 -pinus_aristata%1:20:00:: 11617272 1 0 -pinus_attenuata%1:20:00:: 11617878 1 0 -pinus_banksiana%1:20:00:: 11615607 1 0 -pinus_californiarum%1:20:00:: 11610602 1 0 -pinus_cembra%1:20:00:: 11612018 1 0 -pinus_cembroides%1:20:00:: 11609862 1 0 -pinus_contorta%1:20:00:: 11615026 1 0 -pinus_contorta_murrayana%1:20:00:: 11615259 1 0 -pinus_densiflora%1:20:00:: 11618079 1 0 -pinus_echinata%1:20:00:: 11616260 1 0 -pinus_edulis%1:20:00:: 11610047 1 0 -pinus_flexilis%1:20:00:: 11613867 1 0 -pinus_glabra%1:20:00:: 11611087 1 0 -pinus_jeffreyi%1:20:00:: 11614713 1 0 -pinus_longaeva%1:20:00:: 11612575 1 0 -pinus_monophylla%1:20:00:: 11610215 1 0 -pinus_monticola%1:20:00:: 11613459 1 0 -pinus_mugo%1:20:00:: 11612349 1 0 -pinus_muricata%1:20:00:: 11610437 1 0 -pinus_nigra%1:20:00:: 11611233 1 0 -pinus_palustris%1:20:00:: 11615967 1 0 -pinus_parryana%1:20:00:: 11610823 1 0 -pinus_pinea%1:20:00:: 11611758 1 0 -pinus_ponderosa%1:20:00:: 11614420 1 0 -pinus_pungens%1:20:00:: 11617631 1 0 -pinus_quadrifolia%1:20:00:: 11610823 1 0 -pinus_radiata%1:20:00:: 11617090 1 0 -pinus_resinosa%1:20:00:: 11616486 1 0 -pinus_rigida%1:20:00:: 11611356 1 0 -pinus_serotina%1:20:00:: 11611561 1 0 -pinus_strobiformis%1:20:00:: 11613692 1 0 -pinus_strobus%1:20:00:: 11613219 1 0 -pinus_sylvestris%1:20:00:: 11616662 1 0 -pinus_taeda%1:20:00:: 11615387 1 0 -pinus_thunbergii%1:20:00:: 11618290 1 0 -pinus_torreyana%1:20:00:: 11618525 1 0 -pinus_virginiana%1:20:00:: 11616852 1 0 -pinwheel%1:06:00:: 02984328 4 0 -pinwheel%1:06:01:: 03944138 3 0 -pinwheel%1:06:02:: 03944341 2 0 -pinwheel%1:20:01:: 12786836 1 0 -pinwheel-shaped%5:00:00:round:00 02042872 1 0 -pinwheel_flower%1:20:00:: 11776511 1 0 -pinwheel_roll%1:13:00:: 07693439 1 0 -pinwheel_wind_collector%1:06:00:: 03944138 1 0 -pinworm%1:05:00:: 01931520 1 0 -pinyon%1:20:00:: 11609475 1 0 -piolet%1:06:00:: 03556679 1 0 -pion%1:17:00:: 09392656 1 0 -pioneer%1:18:00:: 10434424 2 1 -pioneer%1:18:01:: 10434725 1 1 -pioneer%2:31:00:: 00649757 3 0 -pioneer%2:36:00:: 01645421 1 3 -pioneer%2:36:01:: 01641914 2 0 -pious%3:00:00:: 01781478 1 0 -pious_platitude%1:10:00:: 07136098 1 0 -piously%4:02:01:: 00310393 1 0 -piousness%1:07:00:: 04826771 1 0 -pip%1:10:00:: 07271942 4 0 -pip%1:10:01:: 07263358 5 0 -pip%1:20:00:: 11685091 3 0 -pip%1:26:00:: 14274905 1 0 -pip%1:26:01:: 14203269 2 0 -pip%2:33:00:: 01102997 3 0 -pip%2:33:01:: 01137138 2 0 -pip%2:41:00:: 02484570 1 0 -pip-squeak%1:18:00:: 10435251 1 0 -pip_out%2:30:00:: 00359806 1 0 -pipa%1:05:00:: 01653975 1 0 -pipa_americana%1:05:00:: 01654083 1 0 -pipa_pipa%1:05:00:: 01654083 1 0 -pipage%1:06:00:: 03944672 2 0 -pipage%1:21:00:: 13323102 1 0 -pipal%1:20:00:: 12402596 1 0 -pipal_tree%1:20:00:: 12402596 1 0 -pipe%1:06:00:: 03944672 2 4 -pipe%1:06:01:: 03945167 1 6 -pipe%1:06:03:: 03854815 5 0 -pipe%1:06:04:: 03945615 4 0 -pipe%1:25:00:: 13901321 3 0 -pipe%2:32:00:: 00914420 1 1 -pipe%2:36:00:: 01727684 3 0 -pipe%2:36:01:: 01670645 4 0 -pipe%2:38:00:: 01950295 2 0 -pipe-clay%2:35:00:: 01533324 1 0 -pipe_bomb%1:06:00:: 03945817 1 0 -pipe_bowl%1:06:00:: 02881397 1 0 -pipe_clamp%1:06:00:: 03947343 1 0 -pipe_cleaner%1:06:00:: 03945928 1 0 -pipe_cutter%1:06:00:: 03946076 1 0 -pipe_down%2:39:00:: 02190188 1 0 -pipe_dream%1:09:00:: 05632732 1 0 -pipe_fitter%1:18:00:: 10443032 1 0 -pipe_fitting%1:06:00:: 03946162 1 0 -pipe_in%2:35:00:: 01436391 1 1 -pipe_in%2:38:00:: 02080652 2 0 -pipe_major%1:18:00:: 10434947 1 0 -pipe_of_peace%1:06:00:: 02941408 1 0 -pipe_organ%1:06:00:: 03854065 1 0 -pipe_rack%1:06:00:: 03946723 1 0 -pipe_smoker%1:18:00:: 10435169 1 0 -pipe_up%2:32:00:: 01050565 1 0 -pipe_up%2:32:01:: 00914420 2 0 -pipe_vine%1:20:00:: 11801665 1 0 -pipe_vise%1:06:00:: 03947343 1 0 -pipe_wrench%1:06:00:: 03947466 1 0 -pipeclay%1:27:00:: 14813560 1 0 -pipefish%1:05:00:: 01455778 1 0 -pipefitting%1:06:00:: 03946162 1 0 -pipeful%1:23:00:: 13768630 1 0 -pipeline%1:06:00:: 03946325 2 0 -pipeline%1:10:00:: 07223635 1 0 -pipeline_company%1:14:00:: 08069487 1 2 -piper%1:18:00:: 10435041 1 1 -piper%1:20:00:: 13149039 2 0 -piper_betel%1:20:00:: 13149970 1 0 -piper_cubeba%1:20:00:: 13150178 1 0 -piper_longum%1:20:00:: 13149829 1 0 -piper_nigrum%1:20:00:: 13149506 1 0 -piperaceae%1:20:00:: 13148791 1 0 -piperacillin%1:06:00:: 03946532 1 0 -piperales%1:20:00:: 13148602 1 0 -piperazine%1:06:00:: 03946814 1 0 -piperin%1:27:00:: 15033189 1 0 -piperine%1:27:00:: 15033189 1 0 -piperocaine%1:06:00:: 03946933 1 0 -piperocaine_hydrochloride%1:06:00:: 03946933 1 0 -pipestem_clematis%1:20:00:: 11730205 1 0 -pipet%1:06:00:: 03947111 1 0 -pipette%1:06:00:: 03947111 1 0 -pipework%1:06:00:: 03854815 1 0 -pipewort%1:20:00:: 12609379 1 0 -pipewort_family%1:20:00:: 12608941 1 0 -pipidae%1:05:00:: 01653610 1 0 -pipile%1:05:00:: 01800042 1 0 -pipilo%1:05:00:: 01542055 1 0 -pipilo_erythrophthalmus%1:05:00:: 01542168 1 0 -piping%1:04:00:: 00101708 3 0 -piping%1:06:00:: 03944672 2 0 -piping%1:06:01:: 03947681 1 0 -piping%4:02:00:: 00422842 1 0 -piping_crow%1:05:00:: 01583828 1 0 -piping_crow-shrike%1:05:00:: 01583828 1 0 -piping_guan%1:05:00:: 01800195 1 0 -piping_plover%1:05:00:: 02023855 1 0 -pipistrel%1:05:01:: 02147947 1 0 -pipistrelle%1:05:00:: 02147947 1 0 -pipistrellus%1:05:00:: 02147747 1 0 -pipistrellus_pipistrellus%1:05:00:: 02147947 1 0 -pipistrellus_subflavus%1:05:00:: 02148088 1 0 -pipit%1:05:00:: 01528654 1 0 -pippin%1:13:00:: 07741461 1 0 -pipra%1:05:00:: 01551549 1 0 -pipracil%1:06:00:: 03946532 1 0 -pipridae%1:05:00:: 01551430 1 0 -pipsissewa%1:20:00:: 12257570 1 0 -piptadenia%1:20:00:: 11764072 1 0 -piptadenia_macrocarpa%1:20:00:: 11760294 1 0 -pipturus%1:20:00:: 12395717 1 0 -pipturus_albidus%1:20:00:: 12396091 1 0 -pipturus_argenteus%1:20:00:: 12395906 1 0 -pipul%1:20:00:: 12402596 1 0 -piquance%1:07:00:: 04993108 1 0 -piquance%1:07:01:: 04720393 2 0 -piquancy%1:07:00:: 04993108 1 0 -piquancy%1:07:01:: 04720393 2 0 -piquant%5:00:00:attractive:01 00167671 3 0 -piquant%5:00:00:stimulating:00 02306874 2 0 -piquant%5:00:00:tasty:00 02398378 1 0 -piquantly%4:02:00:: 00422944 1 0 -piquantness%1:07:00:: 04993108 1 0 -piquantness%1:07:01:: 04720393 2 0 -pique%1:06:00:: 03947798 1 1 -pique%1:12:00:: 07518468 2 0 -pique%2:37:00:: 01789270 1 0 -piqueria%1:20:00:: 12004310 1 0 -piquet%1:04:00:: 00494293 1 0 -piquet%1:04:01:: 00423563 2 0 -piracy%1:04:00:: 00783527 1 0 -piracy%1:04:01:: 00750405 2 0 -pirana%1:05:00:: 02584449 1 0 -pirandello%1:18:00:: 11235787 1 0 -piranga%1:05:00:: 01597551 1 0 -piranga_flava_hepatica%1:05:00:: 01598271 1 0 -piranga_ludoviciana%1:05:00:: 01597906 1 0 -piranga_olivacea%1:05:00:: 01597737 1 0 -piranga_rubra%1:05:00:: 01598074 1 0 -piranha%1:05:00:: 02584449 2 0 -piranha%1:18:00:: 10293172 1 0 -pirate%1:06:00:: 03947888 3 0 -pirate%1:18:00:: 10435367 2 1 -pirate%1:18:01:: 10437262 1 2 -pirate%2:35:00:: 01471825 2 0 -pirate%2:40:00:: 02277897 1 0 -pirate_flag%1:06:00:: 02847009 1 0 -pirate_ship%1:06:00:: 03947888 1 0 -piratical%3:01:00:: 03100026 1 1 -piratical%3:01:01:: 03100184 2 0 -piratically%4:02:00:: 00424459 1 0 -piriform_area%1:08:00:: 05477305 1 0 -piriform_lobe%1:08:00:: 05477305 1 0 -pirogi%1:13:00:: 07624924 1 0 -pirogue%1:06:00:: 03254374 1 1 -piroplasm%1:05:00:: 01425634 1 0 -piroshki%1:13:00:: 07624924 1 0 -pirouette%1:04:00:: 00343730 1 0 -pirouette%2:38:00:: 02048384 1 0 -piroxicam%1:06:00:: 03948041 1 0 -pirozhki%1:13:00:: 07624924 1 0 -pis_aller%1:04:00:: 00178972 1 0 -pisa%1:15:00:: 08809910 1 0 -pisang_wax%1:27:00:: 14991611 1 0 -pisanosaur%1:05:00:: 01700924 1 0 -pisanosaurus%1:05:00:: 01700924 1 0 -piscary%1:06:00:: 03350880 1 0 -piscatorial%3:01:00:: 03100315 1 0 -piscatory%3:01:00:: 03100315 1 0 -pisces%1:05:00:: 02511824 4 0 -pisces%1:15:00:: 08688076 1 1 -pisces%1:17:00:: 09392824 3 0 -pisces%1:18:00:: 09753792 2 0 -pisces_the_fishes%1:15:00:: 08688076 1 0 -piscidia%1:20:00:: 12559302 1 0 -piscidia_erythrina%1:20:00:: 12559518 1 0 -piscidia_piscipula%1:20:00:: 12559518 1 0 -piscine%3:01:00:: 02832382 1 0 -piscivorous%5:00:00:carnivorous:00 00313836 1 0 -pisha_paysha%1:04:00:: 00494406 1 0 -pisiform%1:08:00:: 05272745 1 0 -pisiform_bone%1:08:00:: 05272745 1 0 -pismire%1:05:00:: 02219486 1 0 -pisonia%1:20:00:: 11841061 1 0 -pisonia_aculeata%1:20:00:: 11841247 1 0 -piss%1:22:00:: 13533886 2 0 -piss%1:27:00:: 14855724 1 0 -piss%2:29:00:: 00072012 1 1 -piss-up%1:04:00:: 00510922 1 0 -pissaba_palm%1:20:00:: 12585137 1 0 -pissed%5:00:00:displeased:00 01806106 1 0 -pissed%5:00:00:intoxicated:00 00798103 2 0 -pissed_off%5:00:00:displeased:00 01806106 1 0 -pisser%1:09:00:: 05688907 2 0 -pisser%1:18:00:: 10435716 1 0 -pissing%1:22:00:: 13533886 1 0 -pissis%1:17:00:: 09392961 1 0 -pistachio%1:13:00:: 07775050 2 0 -pistachio%1:20:00:: 12761702 1 0 -pistachio_nut%1:13:00:: 07775050 1 0 -pistachio_tree%1:20:00:: 12761702 1 0 -pistacia%1:20:00:: 12761471 1 0 -pistacia_lentiscus%1:20:00:: 12762049 1 0 -pistacia_terebinthus%1:20:00:: 12761905 1 0 -pistacia_vera%1:20:00:: 12761702 1 0 -piste%1:06:00:: 03948242 2 0 -piste%1:06:01:: 03948347 1 0 -pistia%1:20:00:: 11791569 1 0 -pistia_stratiotes%1:20:00:: 11791569 1 0 -pistia_stratoites%1:20:00:: 11791569 1 0 -pistil%1:20:00:: 11676500 1 0 -pistillate%3:00:02:: 00316046 1 0 -pistillate%5:00:00:female:00 01478482 2 0 -pistillode%1:20:00:: 11677144 1 0 -pistol%1:06:00:: 03948459 1 17 -pistol-whip%2:35:00:: 01397945 1 1 -pistol_grip%1:06:00:: 03948830 1 0 -pistol_shrimp%1:05:00:: 01987076 1 0 -pistoleer%1:18:00:: 10435855 1 1 -piston%1:06:00:: 03948950 2 0 -piston%1:18:00:: 11235926 1 0 -piston_chamber%1:06:00:: 03156405 1 0 -piston_ring%1:06:00:: 03949145 1 0 -piston_rod%1:06:00:: 03949317 1 0 -pisum%1:20:00:: 12559842 1 0 -pisum_arvense%1:20:00:: 12561309 1 0 -pisum_sativum%1:20:00:: 12560420 1 0 -pisum_sativum_arvense%1:20:00:: 12561309 1 0 -pisum_sativum_macrocarpon%1:20:00:: 12560775 1 0 -pit%1:06:00:: 03949442 9 0 -pit%1:06:01:: 03070396 11 0 -pit%1:06:02:: 03949663 8 0 -pit%1:06:03:: 03853291 10 0 -pit%1:06:04:: 03949761 7 0 -pit%1:06:05:: 03949924 6 0 -pit%1:06:06:: 03950113 5 0 -pit%1:09:00:: 05629682 4 0 -pit%1:17:00:: 09393108 1 5 -pit%1:20:00:: 11684739 3 0 -pit%1:25:00:: 13872211 2 0 -pit%2:30:00:: 00179567 3 0 -pit%2:33:00:: 01081152 1 1 -pit%2:35:00:: 01551195 2 0 -pit-a-pat%4:02:00:: 00424587 2 0 -pit-a-pat%4:02:01:: 00424724 1 0 -pit-run_gravel%1:27:00:: 14699321 1 0 -pit_bull_terrier%1:05:00:: 02093428 1 0 -pit_of_the_stomach%1:08:00:: 05508943 1 0 -pit_run%1:27:00:: 14699321 1 3 -pit_stop%1:04:00:: 01056804 2 0 -pit_stop%1:04:01:: 01056941 1 0 -pit_viper%1:05:00:: 01753959 1 0 -pita%1:13:00:: 07683617 1 0 -pitahaya%1:13:00:: 07751280 2 0 -pitahaya%1:20:01:: 11843053 1 0 -pitahaya_cactus%1:20:00:: 11843053 1 0 -pitanga%1:20:00:: 12332030 1 0 -pitch%1:04:00:: 00106104 10 0 -pitch%1:04:01:: 00498558 8 0 -pitch%1:04:02:: 00573664 7 0 -pitch%1:04:03:: 00106272 2 3 -pitch%1:04:04:: 00337210 9 0 -pitch%1:07:00:: 04985198 1 5 -pitch%1:07:01:: 05069199 5 1 -pitch%1:10:00:: 07248653 4 1 -pitch%1:15:00:: 08624656 3 1 -pitch%1:27:00:: 14911704 6 0 -pitch%2:30:00:: 00298420 4 1 -pitch%2:30:02:: 00298244 12 0 -pitch%2:33:04:: 01149868 11 0 -pitch%2:35:00:: 01512625 1 6 -pitch%2:35:01:: 01514126 8 0 -pitch%2:35:04:: 01402637 10 0 -pitch%2:35:13:: 01509079 9 0 -pitch%2:38:00:: 01978436 3 2 -pitch%2:38:01:: 02037090 6 0 -pitch%2:38:02:: 01884577 7 0 -pitch%2:38:03:: 01864634 2 5 -pitch%2:40:00:: 02302817 5 0 -pitch-black%5:00:00:dark:01 00274068 1 0 -pitch-dark%5:00:00:dark:01 00274068 1 0 -pitch_accent%1:10:00:: 07085961 1 0 -pitch_apple%1:20:00:: 12366313 1 0 -pitch_black%1:07:00:: 04960582 1 0 -pitch_blackness%1:26:00:: 13983807 1 0 -pitch_contour%1:10:00:: 07084166 1 0 -pitch_in%2:34:00:: 01173057 1 0 -pitch_into%2:35:00:: 01242537 1 0 -pitch_pine%1:20:01:: 11611356 2 0 -pitch_pine%1:20:02:: 11615967 1 0 -pitch_pipe%1:06:00:: 03950647 1 0 -pitch_shot%1:04:00:: 00573664 1 0 -pitchblende%1:27:00:: 15084545 1 0 -pitched%3:44:00:: 03151871 1 2 -pitched%5:00:00:inclined:01 01235334 2 0 -pitched_battle%1:04:00:: 00956485 1 0 -pitcher%1:04:00:: 00722984 5 0 -pitcher%1:06:00:: 03950228 2 2 -pitcher%1:18:00:: 10435988 1 15 -pitcher%1:20:00:: 12780168 4 0 -pitcher%1:23:00:: 13768748 3 1 -pitcher's_mound%1:06:00:: 03792334 1 0 -pitcher-plant_family%1:20:00:: 12779233 1 0 -pitcher-shaped%5:00:00:formed:00 02149153 1 0 -pitcher_plant%1:20:00:: 12779603 1 0 -pitcher_sage%1:20:01:: 12851860 2 0 -pitcher_sage%1:20:02:: 12866333 1 0 -pitcherful%1:23:00:: 13768748 1 0 -pitchfork%1:06:00:: 03950359 1 2 -pitchfork%2:35:00:: 01579340 1 0 -pitching%1:04:00:: 00127151 1 7 -pitching%1:04:01:: 00337210 2 1 -pitching_change%1:04:00:: 00197136 1 0 -pitching_coach%1:18:00:: 09932098 1 0 -pitching_wedge%1:06:00:: 03950537 1 0 -pitchman%1:18:00:: 10411551 2 0 -pitchman%1:18:01:: 10436334 1 0 -pitchstone%1:27:00:: 14881143 1 0 -pitchy%5:00:00:achromatic:00 00388849 1 0 -pitchy%5:00:00:adhesive:00 00054364 2 0 -piteous%5:00:00:unfortunate:00 01050890 1 3 -piteously%4:02:00:: 00424862 1 1 -pitfall%1:06:00:: 03949663 2 0 -pitfall%1:09:00:: 05688990 1 1 -pith%1:09:00:: 05921123 2 0 -pith%1:20:00:: 13096159 1 1 -pith%2:40:00:: 02366241 1 0 -pith_hat%1:06:00:: 03950899 1 0 -pith_helmet%1:06:00:: 03950899 1 0 -pithead%1:06:00:: 03950818 1 0 -pithecanthropus%1:05:00:: 02473554 1 0 -pithecanthropus_erectus%1:05:00:: 02473554 1 0 -pithecellobium%1:20:00:: 11764231 1 0 -pithecellobium_dulce%1:20:00:: 11764478 1 0 -pithecellodium_unguis-cati%1:20:00:: 11764814 1 0 -pithecia%1:05:00:: 02492833 1 0 -pithecolobium%1:20:00:: 11764231 1 0 -pithily%4:02:00:: 00424937 1 0 -pithiness%1:10:00:: 07089024 1 0 -pithy%5:00:00:concise:00 00548316 1 1 -pitiable%5:00:00:contemptible:00 00905181 1 1 -pitiable%5:00:00:unfortunate:00 01050890 2 0 -pitiably%4:02:00:: 00418223 1 0 -pitiful%5:00:00:bad:00 01126841 2 0 -pitiful%5:00:00:contemptible:00 00905181 1 1 -pitiful%5:00:00:unfortunate:00 01050890 3 0 -pitifully%4:02:00:: 00425087 1 0 -pitiless%5:00:00:inhumane:00 01264179 2 0 -pitiless%5:00:00:merciless:00 01508086 1 2 -pitilessly%4:02:00:: 00400471 1 1 -pitilessness%1:07:00:: 04831264 2 0 -pitilessness%1:12:00:: 07506382 1 0 -pitman%1:18:00:: 09932508 2 0 -pitman%1:18:01:: 11236043 1 0 -pitocin%1:08:00:: 05411571 1 0 -piton%1:06:00:: 03951068 1 0 -pitot%1:06:00:: 03951453 2 0 -pitot%1:18:00:: 11236188 1 0 -pitot-static_tube%1:06:00:: 03951213 1 0 -pitot_head%1:06:00:: 03951213 1 0 -pitot_tube%1:06:00:: 03951453 1 0 -pitot_tube%1:06:02:: 03951213 2 0 -pitprop%1:06:00:: 03951690 1 0 -pitressin%1:08:00:: 05414147 1 0 -pitsaw%1:06:00:: 03951800 1 0 -pitt%1:18:00:: 11236317 3 0 -pitt%1:18:01:: 11236497 2 0 -pitt%1:18:02:: 11236663 1 0 -pitt_the_elder%1:18:00:: 11236317 1 0 -pitt_the_younger%1:18:00:: 11236497 1 0 -pitta%1:05:00:: 01555004 1 0 -pittance%1:21:00:: 13300711 1 0 -pitted%5:00:00:cellular:00 00327690 1 0 -pitter-patter%1:11:00:: 07389757 1 0 -pitter-patter%2:39:00:: 02185187 2 0 -pitter-patter%2:43:00:: 02757828 1 0 -pitter-patter%4:02:00:: 00424587 2 0 -pitter-patter%4:02:01:: 00424724 1 0 -pittidae%1:05:00:: 01554708 1 0 -pitting%1:22:00:: 13537894 1 0 -pittsburgh%1:15:00:: 09136582 1 5 -pittsburgh_of_the_south%1:15:00:: 09053947 1 0 -pittsfield%1:15:00:: 09097599 1 0 -pitty-pat%4:02:00:: 00424587 2 0 -pitty-pat%4:02:01:: 00424724 1 0 -pitty-patty%4:02:00:: 00424587 2 0 -pitty-patty%4:02:01:: 00424724 1 0 -pituitary%1:08:00:: 05483890 1 5 -pituitary%3:01:00:: 03100479 1 0 -pituitary_body%1:08:00:: 05483890 1 0 -pituitary_dwarf%1:18:00:: 10436458 1 0 -pituitary_gland%1:08:00:: 05483890 1 2 -pituophis%1:05:00:: 01733634 1 0 -pituophis_melanoleucus%1:05:00:: 01733957 1 0 -pity%1:07:00:: 04829550 3 0 -pity%1:11:00:: 07305098 2 3 -pity%1:12:00:: 07553964 1 6 -pity%2:37:00:: 01821996 1 4 -pityingly%4:02:00:: 00238281 1 1 -pitymys%1:05:00:: 02340813 1 0 -pitymys_pinetorum%1:05:00:: 02340930 1 0 -pityriasis%1:26:00:: 14231022 1 0 -pityriasis_alba%1:26:00:: 14231330 1 0 -pityriasis_rosea%1:26:00:: 14231504 1 0 -pityrogramma%1:20:00:: 13212751 1 0 -pityrogramma_argentea%1:20:00:: 13213066 1 0 -pityrogramma_calomelanos%1:20:00:: 13213235 1 0 -pityrogramma_calomelanos_aureoflava%1:20:00:: 13213397 1 0 -pityrogramma_chrysophylla%1:20:00:: 13213577 1 0 -pius_ii%1:18:00:: 11236852 1 0 -pius_ix%1:18:00:: 11237868 1 0 -pius_v%1:18:00:: 11237075 1 0 -pius_vi%1:18:00:: 11237275 1 0 -pius_vii%1:18:00:: 11237550 1 0 -pius_x%1:18:00:: 11238092 1 0 -pius_xi%1:18:00:: 11238303 1 0 -pius_xii%1:18:00:: 11238511 1 0 -piute%1:18:00:: 09664556 1 0 -pivot%1:04:00:: 00342916 3 0 -pivot%1:06:00:: 03951971 2 0 -pivot%1:18:00:: 10436707 1 0 -pivot%2:38:00:: 02046572 1 1 -pivot_joint%1:08:00:: 05597188 1 0 -pivot_man%1:18:00:: 10436707 1 0 -pivot_shot%1:04:00:: 00111839 1 0 -pivotal%5:00:00:crucial:00 00656507 1 0 -pivoting_window%1:06:00:: 03952150 1 0 -pix%1:06:00:: 04030161 2 0 -pix%1:06:01:: 04030274 1 0 -pix_chest%1:06:00:: 04030274 1 0 -pixel%1:06:00:: 03952277 1 0 -pixie%1:18:00:: 09540739 1 1 -pixie%1:20:00:: 12251740 2 0 -pixilated%5:00:00:intoxicated:00 00798103 2 0 -pixilated%5:00:00:playful:00 02122715 1 0 -pixy%1:18:00:: 09540739 2 0 -pixy%1:20:00:: 12251740 1 0 -pizarro%1:18:00:: 11238726 1 0 -pizza%1:13:00:: 07873807 1 1 -pizza_parlor%1:06:00:: 03952576 1 0 -pizza_pie%1:13:00:: 07873807 1 0 -pizza_shop%1:06:00:: 03952576 1 0 -pizzaz%1:07:00:: 04635482 1 0 -pizzazz%1:07:00:: 04635482 1 0 -pizzeria%1:06:00:: 03952576 1 0 -pizzicato%1:10:00:: 07024607 1 0 -pizzicato%4:02:00:: 00423378 1 0 -pizzicato%5:00:00:plucked:00 00945927 1 0 -pj's%1:06:00:: 03877472 1 0 -pkd%1:26:00:: 14114186 1 0 -pku%1:26:00:: 14507375 1 0 -pku_test%1:09:00:: 05743770 1 0 -placable%3:00:00:: 01784830 1 0 -placard%1:10:00:: 06793426 1 0 -placard%2:32:00:: 00991900 2 0 -placard%2:35:01:: 01591835 1 0 -placate%2:37:00:: 01765392 1 0 -placating%5:00:00:conciliatory:00 00759826 1 0 -placatingly%4:02:00:: 00425223 1 0 -placation%1:04:00:: 01151407 1 0 -placative%5:00:00:conciliatory:00 00759826 1 0 -placatory%5:00:00:conciliatory:00 00759826 1 0 -place%1:04:00:: 00586262 8 4 -place%1:04:01:: 00721431 5 9 -place%1:09:00:: 05611822 3 22 -place%1:10:00:: 06401107 12 2 -place%1:10:01:: 06389553 16 1 -place%1:10:02:: 06483454 15 1 -place%1:15:00:: 08664443 1 77 -place%1:15:01:: 08642037 4 17 -place%1:15:02:: 08619795 14 1 -place%1:15:03:: 08647616 11 2 -place%1:15:04:: 08513718 2 38 -place%1:15:05:: 08621598 9 3 -place%1:15:06:: 08559508 7 6 -place%1:26:00:: 13947645 10 2 -place%1:26:01:: 13926786 6 7 -place%1:26:02:: 13947867 13 1 -place%2:31:00:: 00618878 8 2 -place%2:31:01:: 00658052 3 7 -place%2:31:03:: 00659776 6 3 -place%2:31:13:: 00673448 11 1 -place%2:32:00:: 01049276 16 0 -place%2:32:01:: 00745970 5 4 -place%2:33:00:: 01088923 14 0 -place%2:33:02:: 01086691 15 0 -place%2:33:03:: 01150559 7 2 -place%2:35:00:: 01494310 1 135 -place%2:36:00:: 01711749 10 1 -place%2:40:00:: 02333689 4 4 -place%2:40:03:: 02271137 13 0 -place%2:41:00:: 02537960 9 1 -place%2:41:01:: 02392762 2 13 -place%2:42:00:: 02695895 12 0 -place-kick%2:33:00:: 01112837 2 0 -place-kick%2:35:00:: 01371044 1 0 -place-kicker%1:18:00:: 10436851 1 1 -place-kicking%1:04:00:: 00137279 1 3 -place-worship%1:04:00:: 01045621 1 0 -place_bet%1:04:00:: 00507425 1 0 -place_down%2:35:00:: 01500372 1 0 -place_kick%1:04:00:: 00137279 1 0 -place_mat%1:06:00:: 03952886 1 0 -place_name%1:10:00:: 06343838 1 0 -place_of_birth%1:15:00:: 08510350 1 1 -place_of_business%1:06:00:: 03953020 1 3 -place_of_origin%1:15:00:: 08510456 1 1 -place_of_worship%1:06:00:: 03953416 1 0 -place_setting%1:06:00:: 03953743 1 0 -place_upright%2:35:00:: 01546768 1 0 -placeable%5:00:00:identifiable:00 01272920 1 0 -placebo%1:04:00:: 01034685 2 0 -placebo%1:06:00:: 03952696 1 0 -placebo_effect%1:19:00:: 11416087 1 0 -placed%5:00:00:arranged:00 01681477 2 0 -placed%5:00:00:settled:01 02126430 1 0 -placeholder%1:10:00:: 07271478 2 0 -placeholder%1:18:00:: 10486909 1 0 -placekicker%1:18:00:: 10436851 1 0 -placeman%1:18:00:: 10437014 1 0 -placement%1:04:00:: 01051331 3 1 -placement%1:04:01:: 00039990 2 2 -placement%1:07:00:: 05075602 1 6 -placement_center%1:14:00:: 08354523 1 0 -placement_office%1:14:00:: 08354523 1 0 -placenta%1:08:00:: 05520699 2 0 -placenta%1:20:00:: 11680838 1 0 -placenta_previa%1:26:00:: 14048847 1 0 -placental%1:05:00:: 01886756 1 0 -placental%3:00:00:: 01830946 1 0 -placental_mammal%1:05:00:: 01886756 1 0 -placentation%1:20:00:: 11680995 2 0 -placentation%1:22:00:: 13538080 1 0 -placer%1:17:00:: 09393403 1 0 -placer_miner%1:18:00:: 10437137 1 0 -placer_mining%1:04:00:: 00922727 1 0 -placeseeker%1:18:00:: 10437014 1 0 -placid%5:00:00:calm:00 00302951 1 2 -placid%5:00:00:good-natured:00 01134486 2 1 -placidity%1:07:00:: 04904352 2 0 -placidity%1:12:00:: 07515169 1 0 -placidly%4:02:00:: 00423098 2 0 -placidly%4:02:01:: 00423243 1 1 -placidness%1:12:00:: 07515169 1 0 -placido_domingo%1:18:00:: 10938199 1 0 -placidyl%1:06:00:: 03299788 1 0 -placket%1:06:00:: 03953901 1 0 -placoderm%1:05:00:: 01480106 1 0 -placodermi%1:05:00:: 01479937 1 0 -placoid%5:00:00:planar:00 00659421 1 0 -placuna%1:05:00:: 01962662 1 0 -placuna_placenta%1:05:00:: 01962788 1 0 -plagal_cadence%1:10:00:: 07046030 1 0 -plage%1:17:00:: 09393524 1 0 -plagianthus%1:20:00:: 12185078 1 0 -plagianthus_betulinus%1:20:00:: 12185254 1 0 -plagianthus_regius%1:20:00:: 12185254 1 0 -plagiarisation%1:04:00:: 00750405 1 0 -plagiarise%2:40:00:: 02278061 1 0 -plagiarised%5:00:00:derived:00 00698848 1 0 -plagiariser%1:18:00:: 10437262 1 0 -plagiarism%1:04:00:: 00750405 2 0 -plagiarism%1:10:00:: 07277158 1 0 -plagiarist%1:18:00:: 10437262 1 0 -plagiaristic%5:00:00:derived:00 00698848 1 0 -plagiarization%1:04:00:: 00750405 1 0 -plagiarize%2:40:00:: 02278061 1 0 -plagiarized%5:00:00:derived:00 00698848 1 0 -plagiarizer%1:18:00:: 10437262 1 0 -plagiocephaly%1:26:00:: 14467685 1 0 -plagioclase%1:27:00:: 14865316 1 0 -plagioclastic%3:01:00:: 02778332 1 0 -plague%1:09:00:: 05831939 5 0 -plague%1:11:00:: 07316603 4 0 -plague%1:14:00:: 07996412 3 0 -plague%1:26:00:: 14138691 1 0 -plague%1:26:01:: 14076479 2 0 -plague%2:37:00:: 01789514 2 2 -plague%2:43:00:: 02771320 1 6 -plague_pneumonia%1:26:00:: 14139661 1 0 -plague_spot%1:08:00:: 05245521 1 0 -plaguey%4:02:00:: 00425330 1 0 -plaguey%5:00:00:disagreeable:00 00089550 2 0 -plaguey%5:00:00:epidemic:00 01427333 1 0 -plaguily%4:02:00:: 00425330 1 0 -plaguy%4:02:00:: 00425330 1 0 -plaguy%5:00:00:disagreeable:00 00089550 1 0 -plaice%1:05:00:: 02658531 2 0 -plaice%1:13:00:: 07790935 1 0 -plaid%1:06:00:: 04395106 1 0 -plain%1:06:00:: 03625226 2 0 -plain%1:17:00:: 09393605 1 1 -plain%2:32:00:: 00907147 1 0 -plain%3:00:01:: 01791911 2 1 -plain%3:00:02:: 01785906 3 1 -plain%4:02:00:: 00039318 1 0 -plain%5:00:00:direct:02 00765666 5 1 -plain%5:00:00:obvious:00 01618376 1 8 -plain%5:00:00:pure:02 01907103 4 1 -plain%5:00:00:unadorned:00 00060605 6 1 -plain%5:00:00:unattractive:00 00169432 7 0 -plain-woven%5:00:00:woven:00 02579864 1 0 -plain_clothes%1:06:00:: 03036469 1 0 -plain_flour%1:13:00:: 07569423 1 0 -plain_sailing%1:04:00:: 00282953 1 0 -plain_stitch%1:06:00:: 03625226 1 0 -plain_turkey%1:05:00:: 02019438 1 0 -plain_wanderer%1:05:00:: 02020578 1 0 -plain_weave%1:06:00:: 03954012 1 0 -plainchant%1:10:00:: 07035153 1 0 -plainclothesman%1:18:00:: 10437590 1 2 -plainly%4:02:00:: 00039318 1 12 -plainly%4:02:01:: 00005055 2 0 -plainness%1:07:00:: 04697267 3 0 -plainness%1:07:02:: 04691651 4 0 -plainness%1:07:03:: 04821615 2 0 -plainness%1:26:00:: 14487026 1 0 -plains_indian%1:18:00:: 09649554 1 0 -plains_lemon_monarda%1:20:00:: 12859153 1 0 -plains_pocket_gopher%1:05:00:: 02354162 1 0 -plains_pocket_mouse%1:05:00:: 02349390 1 0 -plains_spadefoot%1:05:00:: 01649726 1 0 -plainsman%1:18:00:: 10437698 1 0 -plainsong%1:10:00:: 07035153 1 0 -plainspoken%5:00:00:direct:02 00764484 2 0 -plainspoken%5:00:00:unrhetorical:00 02018899 1 0 -plaint%1:10:00:: 07211950 2 0 -plaint%1:10:01:: 07236759 1 0 -plaintiff%1:18:00:: 10437852 1 0 -plaintiff_in_error%1:18:00:: 09800469 1 0 -plaintive%5:00:00:sorrowful:00 01366157 1 0 -plaintively%4:02:00:: 00425453 1 1 -plaintiveness%1:12:00:: 07535430 1 0 -plait%1:06:00:: 03965907 2 0 -plait%1:08:00:: 05259512 1 0 -plait%2:35:00:: 01387656 2 0 -plait%2:36:00:: 01674717 1 0 -plaiter%1:18:00:: 10438042 1 0 -plan%1:06:00:: 03954199 3 6 -plan%1:09:00:: 05898568 1 63 -plan%1:09:01:: 05728678 2 10 -plan%2:31:00:: 00704690 2 27 -plan%2:31:01:: 00705227 1 44 -plan%2:36:00:: 01638368 3 17 -plan%2:36:01:: 01639714 4 2 -plan_of_action%1:09:00:: 05902545 1 0 -plan_of_attack%1:04:00:: 00941140 1 0 -planar%3:00:00:: 00658942 1 2 -planaria%1:05:00:: 01925270 1 0 -planarian%1:05:00:: 01925270 1 0 -planate%5:00:00:planar:00 00659530 1 0 -planation%1:22:00:: 13538182 1 0 -planchet%1:06:00:: 03954393 1 0 -planchette%1:06:00:: 03954507 1 0 -planck%1:18:00:: 11238906 1 0 -planck's_constant%1:23:00:: 13591123 1 0 -planck's_law%1:09:00:: 05887365 1 0 -planck's_radiation_law%1:09:00:: 05887712 1 0 -plane%1:06:00:: 03954731 5 0 -plane%1:06:01:: 02691156 1 21 -plane%1:06:02:: 03955296 4 0 -plane%1:25:00:: 13861050 2 16 -plane%1:26:00:: 13941806 3 3 -plane%2:35:00:: 01249490 1 2 -plane%2:35:03:: 01307389 3 0 -plane%2:38:00:: 01942718 2 0 -plane%5:00:00:even:01 00910101 1 2 -plane-polarized%3:01:00:: 02779960 1 0 -plane-tree_family%1:20:00:: 12806270 1 0 -plane_angle%1:25:00:: 13889216 1 0 -plane_figure%1:25:00:: 13863186 1 0 -plane_geometry%1:09:00:: 06012108 1 0 -plane_seat%1:06:00:: 03955489 1 0 -plane_section%1:15:00:: 08648153 1 0 -plane_table%1:06:00:: 03955615 1 0 -plane_ticket%1:10:00:: 06519253 1 0 -plane_tree%1:20:00:: 12806732 1 0 -planeness%1:07:00:: 05063349 1 0 -planer%1:06:00:: 03955296 1 0 -planera%1:20:00:: 12410032 1 0 -planet%1:17:00:: 09394007 1 21 -planet%1:17:01:: 09394646 3 0 -planet%1:18:00:: 10552639 2 1 -planet_gear%1:06:00:: 03956331 1 0 -planet_wheel%1:06:00:: 03956331 1 0 -planetal%3:01:00:: 02778668 1 0 -planetarium%1:06:01:: 03955809 3 0 -planetarium%1:06:02:: 03955941 2 0 -planetarium%1:06:03:: 03956157 1 0 -planetary%3:01:00:: 02778668 1 8 -planetary%3:01:02:: 02780093 2 0 -planetary%5:00:00:international:00 01568684 4 0 -planetary%5:00:00:unsettled:01 02127509 3 0 -planetary_gear%1:06:00:: 03956331 1 0 -planetary_house%1:15:00:: 08685677 1 0 -planetary_nebula%1:17:00:: 09394797 1 0 -planetesimal%1:17:00:: 09395086 1 0 -planetesimal_hypothesis%1:09:00:: 05888377 1 0 -planetoid%1:17:00:: 09355623 1 1 -plangency%1:07:00:: 04989657 1 0 -plangent%5:00:00:full:01 01457234 1 0 -planimeter%1:06:00:: 03577312 1 0 -planing_machine%1:06:00:: 03955296 1 0 -plank%1:10:00:: 06501622 2 0 -plank%1:27:00:: 15101854 1 9 -plank%2:34:00:: 01180701 3 0 -plank%2:35:00:: 01336159 1 2 -plank%2:35:01:: 01500572 2 0 -plank-bed%1:06:00:: 03956531 1 0 -plank_down%2:38:00:: 01978069 1 0 -plank_over%2:35:00:: 01336159 1 0 -planking%1:04:00:: 00714693 3 0 -planking%1:06:00:: 03956623 2 0 -planking%1:27:00:: 15102359 1 0 -plankton%1:05:00:: 01383638 1 0 -planktonic%3:01:00:: 02778943 1 0 -planktonic_algae%1:05:00:: 01384084 1 0 -planless%5:00:00:purposeless:00 01910652 1 0 -planned%3:00:00:: 01797148 1 5 -planned%5:00:00:premeditated:00 01842963 2 0 -planned_community%1:15:00:: 08553887 1 0 -planner%1:06:00:: 03956785 2 0 -planner%1:18:00:: 10438172 1 4 -planning%1:04:00:: 01144133 1 25 -planning%1:04:02:: 00928371 2 4 -planning%1:09:00:: 05794694 3 3 -planning_board%1:14:00:: 08381636 1 0 -planning_commission%1:14:00:: 08325386 1 0 -plano%1:15:00:: 09145851 1 0 -planococcus%1:05:00:: 02251452 1 0 -planococcus_citri%1:05:00:: 02251593 1 0 -planoconcave%5:00:00:concave:00 00536898 1 0 -planoconvex%5:00:00:convex:00 00538371 1 0 -planographic%3:01:00:: 02779044 1 0 -planographic_printing%1:10:00:: 06679457 1 0 -planography%1:10:00:: 06679457 1 0 -plant%1:03:00:: 00017222 2 37 -plant%1:06:01:: 03956922 1 63 -plant%1:09:00:: 05906080 4 0 -plant%1:18:00:: 10438470 3 0 -plant%2:31:00:: 00734790 6 0 -plant%2:35:00:: 01567275 1 8 -plant%2:35:01:: 01528821 2 2 -plant%2:35:06:: 01371201 5 0 -plant%2:36:00:: 01647229 3 1 -plant%2:40:00:: 02322810 4 0 -plant-eating%5:00:00:herbivorous:00 00314639 1 0 -plant_bug%1:05:00:: 02237424 1 0 -plant_cell%1:20:00:: 11530149 1 0 -plant_closing%1:04:00:: 00229587 1 0 -plant_department%1:14:00:: 08119226 1 0 -plant_disease%1:26:00:: 14276936 1 0 -plant_family%1:20:00:: 11744583 1 0 -plant_fiber%1:27:00:: 14959644 1 0 -plant_fibre%1:27:00:: 14959644 1 0 -plant_food%1:27:00:: 14859344 1 0 -plant_genus%1:20:00:: 11744859 1 0 -plant_hopper%1:05:00:: 02259377 1 0 -plant_hormone%1:27:00:: 14744841 1 0 -plant_kingdom%1:20:00:: 11529603 1 0 -plant_life%1:03:00:: 00017222 1 0 -plant_louse%1:05:00:: 02251775 1 0 -plant_material%1:27:00:: 14991712 1 0 -plant_order%1:20:00:: 11534677 1 0 -plant_organ%1:20:00:: 13087625 1 0 -plant_part%1:20:00:: 13086908 1 0 -plant_process%1:20:00:: 13088096 1 0 -plant_product%1:27:00:: 14991927 1 0 -plant_scientist%1:18:00:: 09868270 1 0 -plant_structure%1:20:00:: 13086908 1 0 -plant_substance%1:27:00:: 14991712 1 0 -plant_tissue%1:20:00:: 13095685 1 1 -plant_toxin%1:27:00:: 15036638 1 0 -plant_virus%1:05:00:: 01335460 1 0 -plantae%1:20:00:: 11529603 1 0 -plantagenet%1:14:00:: 08156685 1 0 -plantagenet_line%1:14:00:: 08156685 1 0 -plantaginaceae%1:20:00:: 12598409 1 0 -plantaginales%1:20:00:: 12598247 1 0 -plantago%1:20:00:: 12598629 1 0 -plantago_lanceolata%1:20:00:: 12599185 1 0 -plantago_major%1:20:00:: 12599435 1 0 -plantago_media%1:20:00:: 12599661 1 0 -plantago_psyllium%1:20:00:: 12599874 1 0 -plantago_rugelii%1:20:00:: 12600095 1 0 -plantago_virginica%1:20:00:: 12600267 1 0 -plantain%1:13:00:: 07768423 3 0 -plantain%1:20:00:: 12352990 2 0 -plantain%1:20:01:: 12598826 1 0 -plantain-leaved_pussytoes%1:20:00:: 11922661 1 0 -plantain_family%1:20:00:: 12598409 1 0 -plantain_lily%1:20:00:: 12457771 1 1 -plantain_tree%1:20:00:: 12352990 1 0 -plantal%3:01:00:: 02833235 1 0 -plantar%3:01:00:: 02779163 1 0 -plantar_reflex%1:04:00:: 00866882 1 0 -plantar_wart%1:07:00:: 04697084 1 0 -plantation%1:06:00:: 03463832 3 0 -plantation%1:14:00:: 08374773 2 0 -plantation%1:21:00:: 13252513 1 4 -plantation_owner%1:18:00:: 10438619 1 0 -plantation_walking_horse%1:05:00:: 02379430 1 0 -planted%3:00:00:: 01831473 2 0 -planted%5:00:00:established:00 01635633 1 1 -planter%1:06:00:: 03957315 3 0 -planter%1:18:00:: 10438619 1 7 -planter%1:18:01:: 10438728 2 0 -planter's_punch%1:13:00:: 07931452 1 0 -planthopper%1:05:00:: 02259377 1 0 -plantigrade%1:05:00:: 02506947 1 0 -plantigrade%3:00:00:: 00751353 1 0 -plantigrade_mammal%1:05:00:: 02506947 1 0 -planting%1:04:00:: 01052450 1 3 -planting%1:04:01:: 00919513 3 0 -planting%1:14:00:: 08064888 2 0 -plantlet%1:20:00:: 11531090 1 0 -plantlike_flagellate%1:05:00:: 01420860 1 0 -plantsman%1:18:00:: 10186350 1 0 -planula%1:05:00:: 01909788 1 0 -plaque%1:06:00:: 02892201 2 1 -plaque%1:08:00:: 05244239 1 2 -plaquenil%1:06:00:: 03553908 1 0 -plash%1:11:00:: 07395104 1 0 -plash%2:35:00:: 01374020 2 0 -plash%2:35:01:: 01518659 1 0 -plasm%1:08:00:: 05435722 1 0 -plasm%1:08:01:: 05403427 2 0 -plasma%1:08:00:: 05403427 1 5 -plasma%1:26:00:: 14481511 3 0 -plasma%1:27:01:: 14992165 2 0 -plasma_cell%1:08:00:: 05452845 1 0 -plasma_membrane%1:08:00:: 05312782 1 0 -plasma_physics%1:09:00:: 06101849 1 0 -plasma_protein%1:27:00:: 14736359 1 0 -plasma_thromboplastin_antecedent%1:27:00:: 15072331 1 0 -plasmablast%1:08:00:: 05453057 1 0 -plasmacyte%1:08:00:: 05452845 1 0 -plasmacytoma%1:26:00:: 14250514 1 0 -plasmapheresis%1:04:00:: 00650267 1 0 -plasmid%1:17:00:: 09395266 1 0 -plasmid_dna%1:17:00:: 09395266 1 0 -plasmin%1:27:00:: 14983774 1 0 -plasminogen%1:27:00:: 14983911 1 0 -plasminogen_activator%1:27:00:: 14984066 1 0 -plasmodial_slime_mold%1:20:00:: 12975804 1 0 -plasmodiidae%1:05:00:: 01424165 1 0 -plasmodiophora%1:20:00:: 12983404 1 0 -plasmodiophora_brassicae%1:20:00:: 12983654 1 0 -plasmodiophoraceae%1:20:00:: 12983217 1 0 -plasmodium%1:05:00:: 01424420 2 0 -plasmodium%1:05:02:: 01428003 1 0 -plasmodium_vivax%1:05:00:: 01424420 1 0 -plassey%1:04:00:: 01291310 1 0 -plaster%1:06:00:: 03957420 5 0 -plaster%1:06:01:: 03957567 4 0 -plaster%1:06:02:: 03993403 3 0 -plaster%1:27:00:: 14992287 1 3 -plaster%1:27:01:: 14992613 2 0 -plaster%2:29:00:: 00082929 6 0 -plaster%2:35:00:: 01360899 5 0 -plaster%2:35:01:: 01362430 1 1 -plaster%2:35:02:: 01362568 4 0 -plaster%2:35:10:: 01612818 3 0 -plaster%2:35:11:: 01612964 2 0 -plaster_bandage%1:06:00:: 02979836 1 0 -plaster_cast%1:06:00:: 02979836 1 2 -plaster_of_paris%1:27:00:: 14992613 1 1 -plaster_over%2:35:00:: 01362430 1 1 -plaster_saint%1:18:00:: 10438952 1 1 -plasterboard%1:06:00:: 03957762 1 0 -plastered%5:00:00:covered:00 01697129 2 0 -plastered%5:00:00:groomed:00 02427718 1 1 -plastered%5:00:00:intoxicated:00 00798103 3 0 -plasterer%1:18:00:: 10438842 1 1 -plasterer's_float%1:06:00:: 03364599 1 0 -plastering%1:04:00:: 00718815 1 0 -plastering_trowel%1:06:00:: 03957991 1 0 -plasterwork%1:06:00:: 03957567 1 0 -plastic%1:21:00:: 13376012 2 0 -plastic%1:27:00:: 14592610 1 2 -plastic%5:00:00:constructive:00 00585398 3 0 -plastic%5:00:00:elastic:00 00844461 1 1 -plastic%5:00:00:impressionable:00 02364954 2 0 -plastic_art%1:06:00:: 03958097 1 0 -plastic_bag%1:06:00:: 03958227 1 0 -plastic_bomb%1:06:00:: 03958338 1 0 -plastic_explosive%1:06:00:: 03958448 1 0 -plastic_film%1:06:00:: 03339296 1 0 -plastic_laminate%1:06:00:: 03958630 1 0 -plastic_surgeon%1:18:00:: 09967270 1 0 -plastic_surgery%1:04:00:: 00690501 1 0 -plastic_wrap%1:06:00:: 03958752 1 0 -plastically%4:02:00:: 00225563 1 1 -plasticine%1:27:00:: 14592405 1 0 -plasticise%2:30:00:: 00569556 2 0 -plasticise%2:30:01:: 00569741 1 0 -plasticiser%1:27:00:: 14593162 1 0 -plasticity%1:07:00:: 05021884 1 3 -plasticize%2:30:00:: 00569556 2 0 -plasticize%2:30:01:: 00569741 1 0 -plasticizer%1:27:00:: 14593162 1 0 -plastics_industry%1:14:00:: 08069768 1 0 -plastid%1:20:00:: 12962622 1 0 -plastinate%2:40:00:: 02280647 1 0 -plastination%1:22:00:: 13538314 1 0 -plastique%1:06:00:: 03958448 1 0 -plastron%1:05:00:: 01904029 5 0 -plastron%1:06:00:: 03958910 4 0 -plastron%1:06:01:: 03959014 3 0 -plastron%1:06:02:: 03959123 2 0 -plastron%1:06:03:: 03959227 1 0 -plat%1:06:00:: 03959350 1 0 -plat%2:31:00:: 00710922 1 1 -plata_river%1:17:00:: 09410558 1 0 -plataea%1:04:00:: 01291517 2 0 -plataea%1:15:00:: 08789447 1 0 -platalea%1:05:00:: 02006827 1 0 -platalea_leucorodia%1:05:00:: 02006985 1 0 -plataleidae%1:05:00:: 02006510 1 0 -platan%1:20:00:: 12806732 1 0 -platanaceae%1:20:00:: 12806270 1 0 -platanistidae%1:05:00:: 02071905 1 0 -platanthera%1:20:00:: 12077732 1 0 -platanthera_bifolia%1:20:00:: 12077944 1 0 -platanthera_chlorantha%1:20:00:: 12078172 1 0 -platanthera_leucophea%1:20:00:: 12078451 1 0 -platanus%1:20:00:: 12806455 1 0 -platanus_acerifolia%1:20:00:: 12807251 1 0 -platanus_occidentalis%1:20:00:: 12807409 1 0 -platanus_orientalis%1:20:00:: 12807624 1 0 -platanus_racemosa%1:20:00:: 12807773 1 0 -platanus_wrightii%1:20:00:: 12808007 1 0 -plate%1:06:00:: 03959485 4 3 -plate%1:06:01:: 03959701 14 0 -plate%1:06:02:: 03959936 2 4 -plate%1:06:03:: 03960374 13 0 -plate%1:06:04:: 03528901 1 6 -plate%1:06:05:: 03960490 12 0 -plate%1:06:06:: 03960664 3 3 -plate%1:06:07:: 03960783 11 0 -plate%1:06:08:: 03960950 10 0 -plate%1:06:09:: 03176386 15 0 -plate%1:08:00:: 05581349 9 0 -plate%1:13:01:: 07579787 8 0 -plate%1:13:02:: 07657664 7 0 -plate%1:17:00:: 09395457 6 0 -plate%1:23:00:: 13768850 5 1 -plate%2:35:00:: 01395049 1 0 -plate_armor%1:06:00:: 02740764 1 0 -plate_armour%1:06:00:: 02740764 1 0 -plate_glass%1:06:00:: 03961070 1 0 -plate_iron%1:06:00:: 03961250 1 0 -plate_rack%1:06:00:: 03961711 1 0 -plate_rail%1:06:00:: 03961828 1 0 -plate_tectonic_theory%1:09:00:: 06118370 1 0 -plate_tectonics%1:09:00:: 06118370 1 0 -plateau%1:17:00:: 09453008 1 0 -plateau_striped_whiptail%1:05:00:: 01686220 1 0 -plateful%1:23:00:: 13768850 1 0 -platelayer%1:18:00:: 10439087 1 0 -platelet%1:27:00:: 15023959 1 0 -plateletpheresis%1:04:00:: 00650402 1 0 -platelike%5:00:00:planar:00 00659421 1 0 -platen%1:06:00:: 03961394 3 0 -platen%1:06:01:: 03961503 2 0 -platen%1:06:02:: 03961630 1 0 -plater%1:18:00:: 10439203 1 0 -platform%1:06:00:: 03961939 1 5 -platform%1:06:01:: 03962525 4 0 -platform%1:06:02:: 03025250 5 0 -platform%1:06:03:: 03962685 3 0 -platform%1:10:00:: 06501311 2 2 -platform_bed%1:06:00:: 03962852 1 0 -platform_rocker%1:06:00:: 03962932 1 0 -plath%1:18:00:: 11239143 1 0 -platichthys%1:05:00:: 02658670 1 0 -platichthys_flesus%1:05:00:: 02658811 1 0 -plating%1:04:00:: 00719016 2 0 -plating%1:06:00:: 03963028 1 0 -platinize%2:35:00:: 01615695 1 0 -platinum%1:27:00:: 14649543 1 3 -platinum-blonde%5:00:00:blond:00 00243945 1 0 -platinum_black%1:27:00:: 14984244 1 0 -platinum_blond%1:18:00:: 10439373 1 0 -platinum_blonde%1:18:00:: 10439373 1 0 -platinum_thermometer%1:06:00:: 04079746 1 0 -platitude%1:10:00:: 07154046 1 0 -platitudinal%5:00:00:unoriginal:00 01689223 1 0 -platitudinarian%1:18:00:: 10439523 1 0 -platitudinize%2:32:00:: 00951769 1 0 -platitudinous%5:00:00:unoriginal:00 01689223 1 1 -plato%1:18:00:: 11239271 1 15 -plato's_academy%1:14:00:: 08279943 1 0 -platonic%3:01:00:: 02780680 1 2 -platonic%5:00:00:passionless:00 01727644 2 0 -platonic_body%1:25:00:: 13915999 1 0 -platonic_solid%1:25:00:: 13915999 1 0 -platonic_year%1:28:00:: 15233614 1 0 -platonism%1:09:00:: 05974564 1 3 -platonist%1:18:00:: 10439629 1 2 -platonistic%3:01:00:: 02780538 1 0 -platoon%1:14:00:: 08214470 1 6 -platoon%1:14:01:: 08214698 2 2 -platoon%1:14:02:: 08215044 3 0 -platt_national_park%1:15:00:: 08608505 1 0 -plattdeutsch%1:10:00:: 06952249 1 0 -platte%1:17:00:: 09395592 1 0 -platte_river%1:17:00:: 09395592 1 0 -platte_river_penstemon%1:20:00:: 12885754 1 0 -plattensee%1:17:00:: 09212935 1 0 -platter%1:06:00:: 03963198 1 0 -platter%1:06:01:: 03924069 2 0 -platy%1:05:00:: 01449712 1 0 -platycephalidae%1:05:00:: 02649400 1 0 -platycerium%1:20:00:: 13177354 1 0 -platycerium_alcicorne%1:20:00:: 13177884 1 0 -platycerium_andinum%1:20:00:: 13177768 1 0 -platycerium_bifurcatum%1:20:00:: 13177884 1 0 -platycladus_orientalis%1:20:00:: 11644462 1 0 -platyctenea%1:05:00:: 01919912 1 0 -platyctenean%1:05:00:: 01920051 1 0 -platyhelminth%1:05:00:: 01924916 1 0 -platyhelminthes%1:05:00:: 01924590 1 0 -platylobium%1:20:00:: 12561696 1 0 -platylobium_formosum%1:20:00:: 12561897 1 0 -platymiscium%1:20:00:: 12562420 1 0 -platymiscium_pinnatum%1:20:00:: 12563045 1 0 -platymiscium_trinitatis%1:20:00:: 12562785 1 0 -platypoecilus%1:05:00:: 01449586 1 0 -platypoecilus_maculatus%1:05:00:: 01449712 1 0 -platypus%1:05:00:: 01873310 1 0 -platyrhine%3:00:00:: 01408929 1 0 -platyrhinian%3:00:00:: 01408929 1 0 -platyrrhine%1:05:00:: 02489589 1 0 -platyrrhine%3:00:00:: 01408929 1 0 -platyrrhini%1:05:00:: 02489288 1 0 -platyrrhinian%1:05:00:: 02489589 1 0 -platyrrhinian%3:00:00:: 01408929 1 0 -platyrrhinic%3:00:00:: 01408929 1 0 -platysma%1:08:00:: 05294374 1 0 -platystemon%1:20:00:: 11907267 1 0 -platystemon_californicus%1:20:00:: 11907405 1 0 -plaudit%1:10:00:: 06691684 1 0 -plaudits%1:10:00:: 06691684 1 0 -plausibility%1:07:00:: 04783724 1 0 -plausible%3:00:00:: 01799457 1 2 -plausible%5:00:00:insincere:00 02182728 2 0 -plausibleness%1:07:00:: 04783724 1 0 -plausibly%4:02:00:: 00296131 1 0 -plausive%5:00:00:favorable:02 00996089 1 0 -plautus%1:05:00:: 02046045 2 0 -plautus%1:18:00:: 11239443 1 0 -plautus_alle%1:05:00:: 02046171 1 0 -plavix%1:06:00:: 03048598 1 0 -play%1:04:00:: 00511817 14 0 -play%1:04:01:: 00457382 15 0 -play%1:04:02:: 00430140 16 0 -play%1:04:03:: 00786887 7 1 -play%1:04:04:: 00556313 4 6 -play%1:04:05:: 00557588 3 8 -play%1:04:06:: 00431893 8 1 -play%1:04:07:: 00041468 17 0 -play%1:04:08:: 00947596 6 1 -play%1:07:00:: 04774511 13 0 -play%1:10:01:: 07007945 1 32 -play%1:10:02:: 06780882 12 0 -play%1:10:03:: 07018931 2 10 -play%1:11:00:: 07411851 11 0 -play%1:26:00:: 14009763 5 2 -play%1:26:01:: 13993842 10 0 -play%1:28:00:: 15256915 9 0 -play%2:29:00:: 00013328 16 2 -play%2:29:01:: 00013615 8 6 -play%2:29:04:: 00075875 35 0 -play%2:31:01:: 00711932 21 1 -play%2:33:00:: 01072949 1 70 -play%2:33:01:: 01138911 10 5 -play%2:33:02:: 01079480 34 0 -play%2:33:03:: 01149470 15 2 -play%2:33:07:: 01156115 29 0 -play%2:33:08:: 01155687 30 0 -play%2:33:09:: 01080691 31 0 -play%2:33:12:: 01079873 33 0 -play%2:33:13:: 01080064 32 0 -play%2:34:13:: 01163355 20 1 -play%2:35:00:: 01586278 19 1 -play%2:35:07:: 01377239 28 0 -play%2:36:00:: 01724459 6 14 -play%2:36:01:: 01726172 7 8 -play%2:36:02:: 01719302 4 27 -play%2:36:03:: 01716619 14 2 -play%2:36:04:: 01716882 26 0 -play%2:36:05:: 01717169 18 1 -play%2:36:06:: 01722077 12 4 -play%2:36:10:: 01719921 25 0 -play%2:36:11:: 01717436 13 3 -play%2:36:12:: 01725051 3 29 -play%2:36:13:: 01629589 27 0 -play%2:38:00:: 01903385 9 5 -play%2:38:03:: 01903562 24 0 -play%2:41:00:: 02418421 11 4 -play%2:41:02:: 02597601 17 1 -play%2:41:03:: 02418686 5 23 -play%2:41:12:: 02370650 2 37 -play%2:41:13:: 02437465 23 0 -play%2:42:00:: 02722449 22 0 -play-actor%1:18:00:: 09840050 1 0 -play-box%1:06:00:: 03963483 1 0 -play_a_joke_on%2:41:00:: 02577586 1 0 -play_a_joke_on%2:41:01:: 02575723 2 0 -play_a_trick_on%2:41:00:: 02575723 1 0 -play_along%2:36:00:: 01728355 2 0 -play_along%2:41:00:: 02417208 1 0 -play_around%2:41:00:: 02598642 1 1 -play_around%2:41:02:: 02416030 2 0 -play_back%2:36:00:: 01738347 1 1 -play_down%2:30:00:: 00513492 1 0 -play_false%2:32:00:: 00839194 1 0 -play_group%1:14:00:: 08412362 1 0 -play_hooky%2:42:00:: 02614023 1 0 -play_it_by_ear%2:41:00:: 02370433 1 0 -play_list%1:10:00:: 06494016 1 0 -play_off%2:33:00:: 01081152 1 0 -play_out%2:30:00:: 00572788 4 0 -play_out%2:33:00:: 01081652 3 0 -play_out%2:36:00:: 01715185 2 0 -play_out%2:40:00:: 02280869 1 0 -play_possum%2:32:00:: 00838995 1 1 -play_reading%1:10:00:: 06893183 1 0 -play_therapy%1:04:00:: 00704159 1 0 -play_tricks%2:41:00:: 02575723 1 0 -play_up%2:30:00:: 00514069 1 1 -play_up%2:37:09:: 01804753 2 0 -playable%3:00:00:: 00955115 1 1 -playact%2:36:00:: 01719921 1 0 -playacting%1:04:00:: 00548326 1 1 -playactor%1:18:00:: 09840050 1 0 -playback%1:04:00:: 01020770 1 1 -playback%1:06:00:: 03963294 2 0 -playbill%1:10:01:: 06748703 1 0 -playbook%1:09:00:: 05907479 3 0 -playbook%1:10:00:: 06416598 2 0 -playbook%1:10:01:: 06416766 1 0 -playbox%1:06:00:: 03963483 1 0 -playboy%1:18:00:: 10439727 1 0 -playday%1:28:00:: 15138600 1 0 -played%3:44:00:: 03152015 1 1 -played_out%5:00:00:tired:00 02433451 1 1 -played_out%5:00:00:worn:00 02582602 2 0 -player%1:18:00:: 09765278 3 1 -player%1:18:01:: 10439851 1 20 -player%1:18:02:: 10340312 2 3 -player%1:18:03:: 10440387 5 0 -player%1:18:04:: 10440580 4 0 -player_piano%1:06:00:: 03738066 1 0 -playfellow%1:18:00:: 10441037 1 0 -playful%3:00:00:: 02121859 1 1 -playfully%4:02:00:: 00425582 1 0 -playfulness%1:04:00:: 00429949 3 0 -playfulness%1:07:00:: 04649261 2 0 -playfulness%1:12:00:: 07512039 1 0 -playgoer%1:18:00:: 10440717 1 0 -playground%1:06:00:: 03963645 2 0 -playground%1:15:00:: 08640739 1 1 -playground_ball%1:06:00:: 04256891 1 0 -playground_slide%1:06:00:: 04238128 1 0 -playhouse%1:06:00:: 03963813 1 0 -playing%1:04:00:: 00041188 2 1 -playing%1:04:01:: 00101191 1 11 -playing%1:04:02:: 00548326 3 0 -playing_area%1:15:00:: 08570758 1 0 -playing_card%1:06:00:: 03963982 1 0 -playing_field%1:15:00:: 08570758 2 0 -playing_field%1:26:00:: 13943740 1 0 -playing_period%1:28:00:: 15256915 1 0 -playlet%1:10:00:: 07009538 1 0 -playlist%1:10:00:: 06494016 1 0 -playlobium_obtusangulum%1:20:00:: 12562141 1 0 -playmaker%1:18:00:: 10440886 1 0 -playmate%1:18:00:: 10441037 1 3 -playoff%1:11:00:: 07465290 1 0 -playoff_game%1:04:00:: 00461162 1 2 -playpen%1:06:00:: 03964495 1 0 -playroom%1:06:00:: 04119478 1 0 -playschool%1:14:00:: 08412362 1 0 -playscript%1:10:00:: 07009946 1 0 -playsuit%1:06:00:: 03964611 1 0 -plaything%1:06:00:: 03964744 1 0 -playtime%1:28:00:: 15138600 1 0 -playwright%1:18:00:: 10030277 1 4 -plaza%1:06:01:: 03965456 2 0 -plaza%1:15:00:: 08619795 1 0 -plea%1:04:01:: 01197928 3 0 -plea%1:10:00:: 07187638 1 0 -plea%1:10:02:: 06561138 2 0 -plea-bargain%2:32:00:: 00764526 1 0 -plea_bargain%1:10:00:: 06563950 1 0 -plea_bargaining%1:10:00:: 06563950 1 0 -plea_of_insanity%1:10:00:: 06561744 1 0 -pleach%2:35:00:: 01518659 2 0 -pleach%2:35:01:: 01519569 1 0 -plead%2:32:00:: 00759501 1 10 -plead%2:32:01:: 00760576 3 4 -plead%2:32:02:: 00894365 2 4 -plead%2:32:03:: 01016316 4 1 -pleader%1:18:00:: 09775663 1 0 -pleading%1:10:00:: 06559365 1 0 -pleading%3:00:00:: 00713995 1 0 -pleading_in_the_alternative%1:10:00:: 06560021 1 0 -pleadingly%4:02:00:: 00278633 1 0 -pleasance%1:12:00:: 07490713 2 0 -pleasance%1:15:00:: 08643806 1 0 -pleasant%3:00:00:: 01800349 1 9 -pleasant%5:00:00:nice:00 01586866 2 1 -pleasant-smelling%5:00:00:odorous:00 01056802 1 0 -pleasant-tasting%5:00:00:tasty:00 02396720 1 0 -pleasant_island%1:15:00:: 08841209 1 0 -pleasantly%4:02:00:: 00219110 2 2 -pleasantly%4:02:01:: 00219325 1 2 -pleasantness%1:07:00:: 04778630 2 0 -pleasantness%1:12:00:: 07492170 1 0 -pleasantry%1:04:00:: 00515297 1 0 -please%2:37:00:: 01815628 1 15 -please%2:37:01:: 01824958 2 10 -please%2:37:03:: 01816054 3 0 -please%4:02:00:: 00009966 1 0 -pleased%3:00:00:: 01805157 1 9 -pleased%5:00:00:proud:00 01892506 2 3 -pleaser%1:18:00:: 10441124 1 0 -pleasing%1:04:00:: 01073556 1 0 -pleasing%3:00:00:: 01807219 1 7 -pleasingly%4:02:00:: 00425762 1 0 -pleasingness%1:07:00:: 04684872 2 0 -pleasingness%1:07:01:: 04995421 1 0 -pleasurable%5:00:00:pleasant:00 01801029 1 0 -pleasurably%4:02:00:: 00228546 1 0 -pleasure%1:04:01:: 00846326 5 0 -pleasure%1:04:02:: 01071746 4 0 -pleasure%1:09:00:: 05829782 2 4 -pleasure%1:09:01:: 05790452 3 0 -pleasure%1:12:00:: 07490713 1 21 -pleasure-pain_principle%1:09:00:: 05871792 1 0 -pleasure-unpleasure_principle%1:09:00:: 05871792 1 0 -pleasure_boat%1:06:00:: 02932891 1 0 -pleasure_craft%1:06:00:: 02932891 1 0 -pleasure_ground%1:15:00:: 08494231 1 0 -pleasure_principle%1:09:00:: 05871792 1 0 -pleasure_seeker%1:18:00:: 10168183 1 0 -pleasure_trip%1:04:00:: 00311809 1 0 -pleat%1:06:00:: 03965907 1 1 -pleat%2:35:00:: 01387301 1 0 -pleat%2:35:02:: 01217780 2 0 -pleating%1:04:00:: 00406800 1 0 -pleb%1:18:00:: 10441251 1 0 -plebe%1:18:00:: 09886540 1 0 -plebeian%1:18:00:: 10441251 1 0 -plebeian%5:00:00:lowborn:00 01593079 1 0 -plebiscite%1:04:00:: 00181495 1 0 -plecoptera%1:05:00:: 02262679 1 0 -plecopteran%1:05:00:: 02262803 1 0 -plecotus%1:05:00:: 02148698 1 0 -plecotus_townsendi%1:05:00:: 02148991 1 0 -plectania%1:20:00:: 13031007 1 0 -plectognath%1:05:00:: 02652668 1 0 -plectognath_fish%1:05:00:: 02652668 1 0 -plectognathi%1:05:00:: 02652335 1 0 -plectomycetes%1:20:00:: 13026529 1 0 -plectophera%1:05:00:: 02262062 1 0 -plectorrhiza%1:20:00:: 12078596 1 0 -plectranthus%1:20:00:: 12862512 1 0 -plectranthus_amboinicus%1:20:00:: 12845187 1 0 -plectron%1:06:00:: 03929660 1 0 -plectrophenax%1:05:00:: 01538498 1 0 -plectrophenax_nivalis%1:05:00:: 01538630 1 0 -plectrum%1:06:00:: 03929660 1 0 -pledge%1:10:00:: 07227772 4 0 -pledge%1:13:00:: 07884413 3 0 -pledge%1:18:00:: 10441410 2 0 -pledge%1:21:02:: 13350702 1 0 -pledge%2:32:00:: 00884540 1 3 -pledge%2:32:01:: 00884946 5 0 -pledge%2:32:02:: 00886281 4 0 -pledge%2:34:00:: 01175467 3 0 -pledge%2:40:04:: 02299269 2 0 -pledge_taker%1:18:00:: 10441819 1 0 -pledged%5:00:00:committed:00 00518549 1 0 -pledgee%1:18:00:: 10441534 1 0 -pledger%1:18:00:: 10441694 1 0 -pleiades%1:17:00:: 09395763 2 0 -pleiades%1:18:00:: 09549758 1 0 -pleione%1:20:00:: 12078954 1 0 -pleiospilos%1:20:00:: 11821777 1 0 -pleistocene%1:28:00:: 15124864 1 0 -pleistocene_epoch%1:28:00:: 15124864 1 0 -plenarily%4:02:00:: 00425872 1 0 -plenary%5:00:00:comprehensive:00 00528167 1 0 -plenipotentiary%1:18:00:: 10441962 1 0 -plenitude%1:07:00:: 05115568 1 1 -plenteous%5:00:00:abundant:00 00014490 1 0 -plenteously%4:02:00:: 00279867 1 0 -plenteousness%1:07:00:: 05115568 1 0 -plentiful%5:00:00:fruitful:00 01080900 3 0 -plentiful%5:00:01:abundant:00 00014490 2 2 -plentiful%5:00:02:abundant:00 00015854 1 2 -plentifully%4:02:00:: 00279867 1 0 -plentifulness%1:07:00:: 05115568 1 0 -plentitude%1:07:00:: 05115568 1 0 -plenty%1:07:00:: 05115568 1 13 -plenty%1:23:00:: 13774404 2 2 -plenty%4:02:00:: 00145713 1 6 -plenum%1:06:00:: 03966206 2 0 -plenum%1:14:00:: 08309854 1 0 -pleochroic%3:01:00:: 03007149 1 0 -pleochroism%1:19:00:: 11491619 1 0 -pleomorphic%3:01:00:: 02780837 1 0 -pleomorphic_rhabdomyosarcoma%1:26:00:: 14245928 1 0 -pleomorphic_rhabdosarcoma%1:26:00:: 14245928 1 0 -pleomorphism%1:19:00:: 11491816 2 0 -pleomorphism%1:19:01:: 11492833 1 0 -pleonasm%1:10:00:: 07091087 1 0 -pleonaste%1:27:00:: 15051503 1 0 -pleonastic%5:00:00:prolix:00 00549826 1 0 -pleopod%1:05:00:: 02585446 1 0 -plesianthropus%1:05:00:: 02476074 1 0 -plesiosaur%1:05:00:: 01725713 1 0 -plesiosauria%1:05:00:: 01725427 1 0 -plesiosaurus%1:05:00:: 01725713 1 0 -plessimeter%1:06:00:: 03966582 1 0 -plessor%1:06:00:: 03966751 1 0 -plethodon%1:05:00:: 01635964 1 0 -plethodon_cinereus%1:05:00:: 01636352 1 0 -plethodon_vehiculum%1:05:00:: 01636510 1 0 -plethodont%1:05:00:: 01636127 1 0 -plethodontidae%1:05:00:: 01635659 1 0 -plethora%1:07:00:: 05120116 1 0 -plethoric%5:00:00:abundant:00 00015720 1 0 -plethysmograph%1:06:00:: 03966325 1 0 -pleura%1:08:00:: 05388115 1 6 -pleural%3:01:00:: 02947653 1 6 -pleural_cavity%1:08:00:: 05388527 1 0 -pleural_space%1:08:00:: 05388665 1 0 -pleuralgia%1:26:00:: 14330046 1 0 -pleurisy%1:26:00:: 14173013 1 0 -pleurisy_root%1:20:00:: 13235503 1 0 -pleurobrachia%1:05:00:: 01920302 1 0 -pleurobrachiidae%1:05:00:: 01920178 1 0 -pleurocarp%1:20:00:: 11539467 1 0 -pleurocarpous%3:00:00:: 02590382 1 0 -pleurocarpous_moss%1:20:00:: 11539467 1 0 -pleurodont%1:05:00:: 01325060 1 0 -pleurodynia%1:26:00:: 14330046 1 0 -pleuronectes%1:05:00:: 02658381 1 0 -pleuronectes_platessa%1:05:00:: 02658531 1 0 -pleuronectidae%1:05:00:: 02657805 1 0 -pleuropneumonia%1:26:00:: 14173295 1 0 -pleuropneumonialike_organism%1:05:00:: 01374063 1 0 -pleurosorus%1:20:00:: 13183669 1 0 -pleurothallis%1:20:00:: 12079523 1 0 -pleurotus%1:20:00:: 13007195 1 0 -pleurotus_ostreatus%1:20:00:: 13007417 1 0 -pleurotus_phosphoreus%1:20:00:: 13007629 1 0 -pleven%1:04:00:: 01291674 1 0 -plevna%1:04:00:: 01291674 1 0 -plexiglas%1:27:00:: 14594174 1 0 -plexiglass%1:27:00:: 14594174 1 0 -pleximeter%1:06:00:: 03966582 1 0 -pleximetry%1:04:00:: 00876239 1 0 -plexor%1:06:00:: 03966751 1 0 -plexus%1:08:00:: 05236322 1 0 -plexus_autonomici%1:08:00:: 05236709 1 0 -plexus_brachialis%1:08:00:: 05506034 1 0 -plexus_cardiacus%1:08:00:: 05506229 1 0 -plexus_caroticus%1:08:00:: 05506369 1 0 -plexus_celiacus%1:08:00:: 05508735 1 0 -plexus_cervicalis%1:08:00:: 05506507 1 0 -plexus_choroideus%1:08:00:: 05506648 1 0 -plexus_coccygeus%1:08:00:: 05506832 1 0 -plexus_dentalis%1:08:00:: 05508113 1 0 -plexus_hypogastricus%1:08:00:: 05506976 1 0 -plexus_lumbalis%1:08:00:: 05507109 2 0 -plexus_lumbalis%1:08:01:: 05507268 1 0 -plexus_mesentericus%1:08:00:: 05507642 1 0 -plexus_myentericus%1:08:00:: 05507756 1 0 -plexus_periarterialis%1:08:00:: 05507977 1 0 -plexus_pulmonalis%1:08:00:: 05508403 1 0 -plexus_sacralis%1:08:00:: 05508534 1 0 -plf%1:14:00:: 08037503 1 0 -pliability%1:07:01:: 04659730 2 0 -pliability%1:07:02:: 05022709 1 0 -pliable%5:00:00:adaptable:00 01028163 3 0 -pliable%5:00:00:flexible:01 01022367 4 0 -pliable%5:00:00:formed:00 02144436 2 0 -pliable%5:00:00:susceptible:00 02362030 1 0 -pliancy%1:07:00:: 04659730 2 0 -pliancy%1:07:01:: 05023022 1 0 -pliant%5:00:00:adaptable:00 01028163 3 0 -pliant%5:00:00:flexible:01 01022367 4 0 -pliant%5:00:00:formed:00 02144436 2 0 -pliant%5:00:00:impressionable:00 02364954 1 1 -pliantness%1:07:00:: 04659730 2 0 -pliantness%1:07:01:: 05023022 1 0 -plica%1:08:00:: 05492259 1 0 -plica_vocalis%1:08:00:: 05530429 1 0 -plicate%2:35:00:: 01217780 1 0 -plication%1:04:00:: 00406800 2 0 -plication%1:25:00:: 13907415 1 0 -plicatoperipatus%1:05:00:: 02000354 1 0 -plicatoperipatus_jamaicensis%1:05:00:: 02000502 1 0 -plier%1:18:00:: 10442093 1 0 -pliers%1:06:00:: 03966976 1 0 -plight%1:10:00:: 07228105 2 0 -plight%1:26:00:: 14408646 1 8 -plight%2:32:00:: 00884540 2 0 -plight%2:32:01:: 00886602 1 0 -plimsoll%1:06:00:: 03967270 2 0 -plimsoll%1:15:00:: 08596336 1 0 -plimsoll_line%1:15:00:: 08596336 1 0 -plimsoll_mark%1:15:00:: 08596336 1 0 -plinian_eruption%1:11:00:: 07405652 1 0 -plinth%1:06:00:: 03903868 1 0 -pliny%1:18:00:: 11239567 2 0 -pliny%1:18:01:: 11239765 1 0 -pliny_the_elder%1:18:00:: 11239567 1 0 -pliny_the_younger%1:18:00:: 11239765 1 0 -pliocene%1:28:00:: 15125323 1 0 -pliocene_epoch%1:28:00:: 15125323 1 0 -plo%1:14:00:: 08320385 1 0 -ploce%1:10:00:: 07100387 1 0 -ploceidae%1:05:00:: 01542567 1 0 -ploceus%1:05:00:: 01543059 1 0 -ploceus_philippinus%1:05:00:: 01543175 1 0 -plod%1:04:00:: 00291965 1 0 -plod%2:38:00:: 01921204 1 6 -plodder%1:18:00:: 10442232 3 0 -plodder%1:18:01:: 10442417 2 0 -plodder%1:18:02:: 10731848 1 0 -plodding%1:04:00:: 00621476 1 1 -plodding%1:04:01:: 00291965 2 0 -plodding%5:00:00:effortful:00 00837756 1 1 -ploddingly%4:02:00:: 00426005 1 0 -plonk%1:11:00:: 07389931 2 0 -plonk%1:13:00:: 07896994 1 0 -plonk%2:35:00:: 01500572 1 0 -plonk_down%2:38:00:: 01978069 1 0 -plop%1:11:00:: 07390049 1 0 -plop%2:35:00:: 01500572 3 0 -plop%2:38:00:: 01977266 2 0 -plop%2:38:01:: 01977421 1 0 -plop%4:02:00:: 00426140 1 0 -plosion%1:10:00:: 07116443 1 0 -plosive%1:10:00:: 07115914 1 0 -plosive_consonant%1:10:00:: 07115914 1 0 -plosive_speech_sound%1:10:00:: 07115914 1 0 -plot%1:09:00:: 05907682 1 9 -plot%1:10:00:: 06373314 3 5 -plot%1:10:01:: 07000065 4 0 -plot%1:15:00:: 08674739 2 6 -plot%2:31:00:: 00708128 1 6 -plot%2:31:01:: 00710922 3 1 -plot%2:36:00:: 01693453 2 2 -plot%2:36:03:: 01638825 4 0 -plot_element%1:09:00:: 05865652 1 0 -plot_line%1:10:00:: 06373645 1 0 -plot_of_ground%1:15:00:: 08674739 1 0 -plot_of_land%1:15:00:: 08674739 1 0 -plotinus%1:18:00:: 11239989 1 0 -plott_hound%1:05:00:: 02090253 1 0 -plotted%5:00:00:premeditated:00 01842963 1 0 -plotter%1:06:00:: 03967396 4 0 -plotter%1:18:00:: 09958892 3 0 -plotter%1:18:01:: 10556518 1 0 -plotter%1:18:02:: 10442573 2 0 -plough%1:06:00:: 03967562 2 0 -plough%1:17:00:: 09219858 1 0 -plough%2:36:00:: 01741864 2 0 -plough%2:38:00:: 02096853 1 0 -plough_horse%1:05:00:: 02382338 1 0 -plough_on%2:38:00:: 01993549 1 0 -ploughboy%1:18:00:: 10442705 1 0 -ploughed%3:00:00:: 01832945 1 0 -ploughing%1:04:00:: 00918644 1 0 -ploughland%1:17:00:: 09260907 1 0 -ploughman%1:18:00:: 10442815 1 0 -ploughman's_lunch%1:13:00:: 07577772 1 0 -ploughshare%1:06:00:: 03967788 1 0 -ploughwright%1:18:00:: 10442923 1 0 -plovdiv%1:15:00:: 08714795 1 0 -plover%1:05:00:: 02023341 1 0 -plow%1:06:00:: 03967562 1 2 -plow%2:32:00:: 01033527 2 2 -plow%2:36:00:: 01741864 1 6 -plow%2:38:00:: 02096853 3 1 -plow_ahead%2:32:00:: 00781303 1 1 -plow_horse%1:05:00:: 02382338 1 0 -plowboy%1:18:00:: 10442705 1 0 -plowed%3:00:00:: 01832945 1 0 -plower%1:18:00:: 10442815 1 0 -plowing%1:04:00:: 00918644 1 2 -plowland%1:17:00:: 09260907 1 0 -plowman%1:18:00:: 10442815 1 0 -plowshare%1:06:00:: 03967788 1 2 -plowwright%1:18:00:: 10442923 1 0 -ploy%1:04:00:: 00172490 2 0 -ploy%1:10:00:: 06765531 1 0 -pluck%1:04:00:: 00116008 2 0 -pluck%1:07:00:: 04859816 1 1 -pluck%2:35:00:: 01592456 1 3 -pluck%2:35:01:: 01382083 6 0 -pluck%2:35:02:: 01452546 4 0 -pluck%2:35:03:: 01384275 5 0 -pluck%2:40:00:: 02319050 3 0 -pluck%2:40:01:: 02322596 2 0 -pluck_at%2:35:00:: 01609115 1 0 -plucked%3:00:00:: 00945772 1 0 -plucked%5:00:00:unfeathered:00 00999519 2 0 -pluckily%4:02:00:: 00426877 1 0 -pluckiness%1:07:00:: 04859816 1 0 -plucky%3:00:00:: 00266634 1 0 -plucky%5:00:00:spirited:00 02279900 2 0 -plug%1:05:00:: 02382204 7 0 -plug%1:06:00:: 03967942 1 15 -plug%1:06:01:: 03346898 6 0 -plug%1:06:02:: 04269270 4 0 -plug%1:06:03:: 03968293 5 0 -plug%1:10:00:: 07248507 3 0 -plug%1:13:00:: 07579399 2 0 -plug%2:30:00:: 00351266 2 1 -plug%2:30:02:: 00188000 6 0 -plug%2:30:03:: 00188137 5 0 -plug%2:32:00:: 00976487 4 0 -plug%2:35:00:: 01415285 3 0 -plug%2:35:01:: 01422886 1 2 -plug-in%1:06:00:: 03033986 1 0 -plug-ugly%1:18:00:: 10717921 1 2 -plug_away%2:30:00:: 00351266 2 0 -plug_away%2:41:00:: 02415573 1 0 -plug_fuse%1:06:00:: 03968479 1 0 -plug_hat%1:06:00:: 02881757 1 0 -plug_in%2:35:00:: 01421122 1 2 -plug_into%2:35:00:: 01421122 1 0 -plugboard%1:06:00:: 04373264 1 0 -plugged%3:44:00:: 03152135 1 0 -plugged%5:00:00:obstructed:00 01621080 2 0 -plugger%1:18:00:: 10482220 1 0 -plughole%1:06:00:: 03968581 1 0 -plum%1:04:00:: 00596081 3 0 -plum%1:13:00:: 07751451 2 0 -plum%1:20:00:: 12638218 1 0 -plum%4:02:02:: 00009541 1 2 -plum%4:02:04:: 00009373 2 0 -plum-fruited_yew%1:20:00:: 11658709 1 0 -plum-yew%1:20:00:: 11648776 1 0 -plum-yew_family%1:20:00:: 11648428 1 0 -plum_duff%1:13:00:: 07618119 1 0 -plum_pudding%1:13:00:: 07617708 1 0 -plum_sauce%1:13:00:: 07832099 1 0 -plum_tomato%1:13:00:: 07734417 2 0 -plum_tomato%1:20:00:: 12906214 1 0 -plum_tree%1:20:00:: 12638218 1 0 -plumage%1:05:00:: 01896031 1 0 -plumaged%5:00:00:feathered:00 00998674 1 0 -plumate%5:00:00:feathered:00 00998850 1 0 -plumb%1:06:00:: 03968728 1 0 -plumb%2:30:00:: 00465634 4 0 -plumb%2:31:00:: 00730647 1 1 -plumb%2:31:02:: 00646442 3 0 -plumb%2:35:00:: 01487830 2 0 -plumb%4:02:00:: 00427057 2 0 -plumb%4:02:02:: 00009541 3 0 -plumb%4:02:04:: 00009373 1 2 -plumb%5:00:00:vertical:00 01233851 1 0 -plumb_bob%1:06:00:: 03968728 1 0 -plumb_level%1:06:00:: 03969510 1 0 -plumb_line%1:06:00:: 03969627 1 1 -plumb_rule%1:06:00:: 03969902 1 0 -plumbable%3:00:00:: 00994744 1 0 -plumbaginaceae%1:20:00:: 12097927 1 0 -plumbaginaceous%3:01:00:: 02780975 1 0 -plumbaginales%1:20:00:: 12097746 1 0 -plumbago%1:20:00:: 12098403 2 0 -plumbago%1:27:00:: 14796575 1 0 -plumbago_europaea%1:20:00:: 12098524 1 0 -plumber%1:18:00:: 10443032 1 3 -plumber's_helper%1:06:00:: 03970156 1 0 -plumber's_snake%1:06:00:: 03968886 1 0 -plumbery%1:04:00:: 00609669 1 0 -plumbic%3:01:00:: 02781131 1 0 -plumbing%1:04:00:: 00999089 3 0 -plumbing%1:04:01:: 00609669 2 1 -plumbing%1:06:00:: 03969041 1 2 -plumbing_fixture%1:06:00:: 03969259 1 0 -plumbing_system%1:06:00:: 03969041 1 0 -plumbism%1:26:00:: 14069895 1 0 -plumbous%3:01:00:: 02781131 1 0 -plumcot%1:13:00:: 07768590 2 0 -plumcot%1:20:00:: 12640435 1 0 -plumcot_tree%1:20:00:: 12640435 1 0 -plume%1:05:00:: 01896031 3 0 -plume%1:06:00:: 03969998 2 0 -plume%1:25:00:: 13900760 1 0 -plume%2:29:00:: 00043683 6 0 -plume%2:30:00:: 00144544 5 0 -plume%2:35:00:: 01392080 4 0 -plume%2:36:00:: 01680132 3 0 -plume%2:37:00:: 01772498 2 0 -plume%2:40:00:: 02319050 1 0 -plume-tipped%5:00:00:tipped:00 02431262 1 0 -plume_grass%1:20:00:: 12121033 1 0 -plume_poppy%1:20:00:: 11906514 1 0 -plume_thistle%1:20:00:: 11953884 1 0 -plumed%5:00:01:adorned:00 00057881 3 0 -plumed%5:00:01:feathered:00 00998850 2 0 -plumed%5:00:02:feathered:00 00998985 1 0 -plumed_scorpionfish%1:05:00:: 02643316 1 0 -plumed_thistle%1:20:00:: 11953884 1 0 -plumed_tussock%1:20:00:: 12115383 1 0 -plumelike%5:00:00:feathered:00 00999136 1 0 -plumeria%1:20:00:: 11774279 1 0 -plumeria_acutifolia%1:20:00:: 11774795 1 0 -plumeria_alba%1:20:00:: 11774972 1 0 -plumiera%1:20:00:: 11774279 1 0 -plumlike%5:00:00:rounded:00 02047335 1 0 -plummet%1:06:00:: 03968728 1 0 -plummet%2:38:00:: 01978199 1 1 -plummy%5:00:00:affected:01 00074216 2 0 -plummy%5:00:00:desirable:00 00733632 1 0 -plumose%5:00:00:feathered:00 00998850 1 0 -plump%1:11:00:: 07390205 1 0 -plump%2:31:12:: 00676267 4 0 -plump%2:34:00:: 01194938 3 0 -plump%2:35:00:: 01500572 2 0 -plump%2:38:01:: 01978199 1 0 -plump%4:02:01:: 00426278 1 0 -plump%5:00:00:fat:01 00986766 1 2 -plump_down%2:35:00:: 01500572 2 0 -plump_down%2:38:00:: 01978069 1 0 -plump_for%2:41:00:: 02453889 1 1 -plump_in%2:38:00:: 02017416 1 0 -plump_out%2:34:00:: 01194938 2 0 -plump_out%2:38:00:: 02017550 1 0 -plump_up%2:35:00:: 01391946 1 0 -plumping%5:00:00:large:00 01390215 1 1 -plumpness%1:07:00:: 05000913 1 4 -plumule%1:05:00:: 01897146 1 0 -plumy%5:00:00:adorned:00 00058554 3 0 -plumy%5:00:01:feathered:00 00998985 2 0 -plumy%5:00:02:feathered:00 00999136 1 0 -plunder%1:21:00:: 13262663 1 1 -plunder%2:35:01:: 01565472 4 0 -plunder%2:40:00:: 02344568 3 0 -plunder%2:40:01:: 02345048 2 0 -plunder%2:40:02:: 02345288 1 1 -plunderage%1:04:00:: 00777439 1 0 -plundered%5:00:00:empty:00 01087757 1 0 -plunderer%1:18:00:: 10443170 1 0 -plundering%1:04:00:: 00965895 1 0 -plundering%5:00:00:acquisitive:00 00030701 1 0 -plunge%1:04:00:: 00442847 1 1 -plunge%1:11:00:: 07434209 2 0 -plunge%2:30:10:: 00347918 4 4 -plunge%2:31:00:: 00601043 8 0 -plunge%2:31:01:: 00601378 5 1 -plunge%2:35:00:: 01577093 7 0 -plunge%2:35:01:: 01577635 1 6 -plunge%2:38:00:: 01977080 6 0 -plunge%2:38:01:: 01967373 2 4 -plunge%2:38:05:: 01834053 3 4 -plunger%1:06:00:: 03948950 4 0 -plunger%1:06:01:: 03970156 3 0 -plunger%1:18:00:: 10634075 1 0 -plunger%1:18:01:: 10019406 2 0 -plunk%1:04:00:: 00132219 2 0 -plunk%1:11:00:: 07390307 1 0 -plunk%2:35:00:: 01452546 4 0 -plunk%2:35:02:: 01500572 2 1 -plunk%2:38:00:: 01967373 3 0 -plunk%2:39:00:: 02184965 1 1 -plunk%4:02:00:: 00426140 1 0 -plunk_down%2:35:00:: 01500572 1 0 -plunk_for%2:41:00:: 02453889 1 0 -plunker%1:04:00:: 00132219 1 1 -pluperfect%1:24:00:: 13806735 1 0 -pluperfect%5:00:00:perfect:00 01751828 1 0 -pluperfect_tense%1:24:00:: 13806735 1 0 -plural%1:10:00:: 06295235 1 0 -plural%3:00:00:: 02182979 2 0 -plural%3:00:01:: 02183512 1 0 -plural_form%1:10:00:: 06295235 1 0 -pluralisation%1:24:00:: 13804507 1 0 -pluralise%2:32:00:: 01071916 1 0 -pluralism%1:04:00:: 00412130 3 0 -pluralism%1:09:00:: 05965749 2 0 -pluralism%1:14:00:: 08367683 1 0 -pluralist%1:18:00:: 10443482 3 0 -pluralist%1:18:01:: 10443659 2 0 -pluralist%1:18:02:: 10443830 1 0 -pluralistic%3:01:00:: 02947477 1 1 -plurality%1:23:00:: 13581218 3 0 -plurality%1:23:01:: 13775093 2 0 -plurality%1:26:00:: 14569844 1 0 -pluralization%1:24:00:: 13804507 1 0 -pluralize%2:32:00:: 01071916 1 0 -plus%1:04:00:: 00872107 2 0 -plus%1:07:00:: 05154517 1 0 -plus%3:00:00:: 01819390 1 0 -plus%5:00:00:advantageous:00 00065064 2 0 -plus_fours%1:06:00:: 03970363 1 0 -plus_sign%1:10:00:: 06811986 1 0 -plush%1:06:00:: 03970546 1 0 -plush%5:00:00:rich:03 02025274 1 1 -plush-like%5:00:00:coarse:00 02231998 1 0 -plushy%5:00:00:coarse:00 02231998 1 0 -plushy%5:00:00:rich:03 02025274 2 0 -plutarch%1:18:00:: 11240139 1 0 -pluteaceae%1:20:00:: 13019017 1 0 -pluteus%1:20:00:: 13019202 1 0 -pluteus_aurantiorugosus%1:20:00:: 13019496 1 0 -pluteus_cervinus%1:20:00:: 13019835 1 0 -pluteus_magnus%1:20:00:: 13019643 1 0 -pluto%1:17:00:: 09395899 3 0 -pluto%1:18:00:: 09570298 2 0 -pluto%1:18:01:: 09603258 1 0 -plutocracy%1:14:00:: 08362775 1 0 -plutocrat%1:18:00:: 10443955 1 0 -plutocratic%3:01:00:: 02781247 1 0 -plutocratical%3:01:00:: 02781247 1 0 -pluton%1:27:00:: 14932303 1 0 -plutonian%5:00:00:infernal:00 01304081 1 0 -plutonic%5:00:00:intrusive:03 01355378 1 0 -plutonic_rock%1:27:00:: 14932303 1 0 -plutonium%1:27:00:: 14649775 1 0 -plutonium_239%1:27:00:: 14650137 1 0 -plutonium_bomb%1:06:00:: 02753044 1 0 -plutonium_pit%1:06:00:: 03970673 1 0 -plutonium_trigger%1:06:00:: 03970673 1 0 -pluvialis%1:05:00:: 02024353 1 0 -pluvianus%1:05:00:: 02039660 1 0 -pluvianus_aegyptius%1:05:00:: 02039780 1 0 -pluviometer%1:06:00:: 04049585 1 0 -pluviose%1:28:00:: 15176630 1 0 -ply%1:06:00:: 03970884 2 0 -ply%1:06:01:: 03971040 1 0 -ply%2:34:00:: 01182709 1 1 -ply%2:34:01:: 01160806 6 0 -ply%2:35:00:: 01224653 5 0 -ply%2:35:03:: 01291817 4 0 -ply%2:38:00:: 01864038 3 0 -ply%2:41:00:: 02595383 2 0 -plyboard%1:06:00:: 03971218 1 0 -plyer%1:18:00:: 10442093 1 0 -plyers%1:06:00:: 03966976 1 0 -plymouth%1:15:00:: 09098721 1 0 -plymouth_colony%1:15:00:: 09098885 1 0 -plymouth_rock%1:05:00:: 01790304 2 0 -plymouth_rock%1:15:00:: 09099098 1 0 -plywood%1:06:00:: 03971218 1 0 -plzen%1:15:00:: 08757791 1 0 -pm%1:04:00:: 00141396 1 1 -pm%1:10:00:: 06281848 4 0 -pm%1:18:00:: 09907196 3 0 -pm%1:27:00:: 14651479 2 0 -pms%1:26:00:: 14308311 1 0 -pneumatic%3:01:00:: 02838894 1 0 -pneumatic_caisson%1:06:00:: 02937093 1 0 -pneumatic_drill%1:06:00:: 03971321 1 0 -pneumatic_hammer%1:06:00:: 02689434 1 0 -pneumatic_tire%1:06:00:: 03971422 1 0 -pneumatic_tyre%1:06:00:: 03971422 1 0 -pneumatically%4:02:00:: 00426457 1 0 -pneumatics%1:09:00:: 06113170 1 0 -pneumatophore%1:20:00:: 13125882 1 0 -pneumococcal%3:01:00:: 02839036 1 0 -pneumococcal_pneumonia%1:26:00:: 14149167 1 0 -pneumococcal_vaccine%1:06:00:: 03971771 1 0 -pneumococcus%1:05:00:: 01380754 1 0 -pneumoconiosis%1:26:00:: 14149963 1 0 -pneumocystis_carinii_pneumonia%1:26:00:: 14149290 1 0 -pneumocystis_pneumonia%1:26:00:: 14149290 1 0 -pneumocytosis%1:26:00:: 14149290 1 0 -pneumoencephalogram%1:06:00:: 03285730 1 0 -pneumogastric%1:08:00:: 05480076 1 0 -pneumogastric%3:01:00:: 02733652 2 0 -pneumogastric%3:01:01:: 02822055 1 0 -pneumogastric_nerve%1:08:00:: 05480076 1 0 -pneumonectomy%1:04:00:: 00687135 1 0 -pneumonia%1:26:00:: 14147627 1 1 -pneumonic%3:01:00:: 02935115 2 0 -pneumonic%3:01:01:: 02935285 1 0 -pneumonic_plague%1:26:00:: 14139661 1 0 -pneumonitis%1:26:00:: 14353995 1 0 -pneumonoconiosis%1:26:00:: 14149963 1 0 -pneumothorax%1:26:00:: 14149536 1 0 -pneumovax%1:06:00:: 03971771 1 0 -pnom_penh%1:15:00:: 08717059 1 0 -po%1:14:00:: 08145277 4 0 -po%1:17:00:: 09396150 3 0 -po%1:18:00:: 10420809 2 0 -po%1:27:00:: 14650556 1 0 -po-faced%5:00:00:humorless:00 01268837 1 0 -po_box%1:06:00:: 03990210 1 0 -po_box_no%1:15:00:: 08491531 1 0 -po_box_number%1:15:00:: 08491531 1 0 -po_hai%1:17:00:: 09226209 1 0 -po_river%1:17:00:: 09396150 1 0 -poa%1:20:00:: 12131216 1 0 -poa_nemoralis%1:20:00:: 12132092 1 0 -poa_pratensis%1:20:00:: 12131767 1 0 -poaceae%1:20:00:: 12100538 1 0 -poach%2:30:00:: 00544404 2 1 -poach%2:33:00:: 01143266 1 1 -poached%5:00:00:cooked:00 00616822 1 0 -poached_egg%1:13:00:: 07842202 1 0 -poacher%1:05:00:: 02647660 3 0 -poacher%1:06:00:: 03972372 2 0 -poacher%1:18:00:: 10444058 1 0 -poaching%1:04:00:: 00247342 1 0 -pob%1:06:00:: 03990210 1 0 -pobeda_peak%1:17:00:: 09396275 1 0 -pobedy_peak%1:17:00:: 09396275 1 0 -pocahontas%1:18:00:: 11240249 1 0 -pocatello%1:15:00:: 09082158 1 0 -pochard%1:05:00:: 01851038 1 0 -pock%1:26:00:: 14334511 1 0 -pock%2:35:00:: 01551195 1 0 -pocked%5:00:00:blemished:00 00246878 2 0 -pocked%5:00:00:rough:00 02241714 1 0 -pocket%1:06:00:: 03972524 1 21 -pocket%1:06:01:: 03972799 9 0 -pocket%1:08:00:: 05516848 8 0 -pocket%1:14:00:: 07950090 7 0 -pocket%1:19:00:: 11423028 6 0 -pocket%1:21:00:: 13356774 3 2 -pocket%1:25:00:: 13914473 2 2 -pocket%1:25:01:: 13894306 5 0 -pocket%1:25:02:: 13911660 4 0 -pocket%2:40:00:: 02278592 1 1 -pocket%2:40:01:: 02292432 2 0 -pocket-handkerchief%1:06:00:: 03973520 1 0 -pocket-size%5:00:00:limited:00 01415219 1 0 -pocket-size%5:00:00:small:00 01394400 2 0 -pocket-sized%5:00:00:limited:00 01415219 1 0 -pocket-sized%5:00:00:small:00 01394400 2 0 -pocket_battleship%1:06:00:: 03973003 1 0 -pocket_billiards%1:04:00:: 00501080 1 0 -pocket_book%1:06:01:: 03973170 1 0 -pocket_borough%1:15:00:: 08540266 1 0 -pocket_bread%1:13:00:: 07683617 1 0 -pocket_calculator%1:06:00:: 03483823 1 0 -pocket_comb%1:06:00:: 03973285 1 0 -pocket_dictionary%1:10:00:: 06419912 1 0 -pocket_edition%1:06:00:: 03973170 1 0 -pocket_flap%1:06:00:: 03973402 1 0 -pocket_flask%1:06:00:: 03521675 1 0 -pocket_gopher%1:05:00:: 02353861 1 0 -pocket_knife%1:06:00:: 03973628 1 0 -pocket_lighter%1:06:00:: 03031422 1 0 -pocket_money%1:21:00:: 13422545 1 0 -pocket_mouse%1:05:00:: 02348788 1 0 -pocket_rat%1:05:00:: 02331309 1 0 -pocket_veto%1:04:00:: 00209680 1 0 -pocket_watch%1:06:00:: 03973839 1 0 -pocketable%5:00:00:small:00 01394400 1 0 -pocketbook%1:06:00:: 02774152 4 0 -pocketbook%1:06:01:: 03973170 3 0 -pocketbook%1:06:02:: 04548362 2 0 -pocketbook%1:21:00:: 13354021 1 0 -pocketbook_issue%1:09:00:: 05815267 1 0 -pocketcomb%1:06:00:: 03973285 1 0 -pocketed_bat%1:05:00:: 02149861 1 0 -pocketed_freetail_bat%1:05:00:: 02149861 1 0 -pocketful%1:23:00:: 13768946 1 1 -pocketknife%1:06:00:: 03973628 1 0 -pockmark%1:26:00:: 14364065 1 0 -pockmark%2:35:00:: 01551530 1 0 -pockmarked%5:00:00:blemished:00 00246878 2 0 -pockmarked%5:00:00:rough:00 02241714 1 0 -pod%1:06:00:: 03973945 4 0 -pod%1:14:00:: 07995164 3 0 -pod%1:20:00:: 13139055 2 0 -pod%1:20:01:: 13140049 1 0 -pod%2:29:00:: 00095870 2 0 -pod%2:30:00:: 00198057 1 0 -podalgia%1:26:00:: 14330201 1 0 -podalyria%1:20:00:: 12563404 1 0 -podargidae%1:05:00:: 01836809 1 0 -podargus%1:05:00:: 01836953 1 0 -podaxaceae%1:20:00:: 12970193 1 0 -podcast%2:32:00:: 00968962 1 0 -podetium%1:20:00:: 11534161 1 0 -podgy%5:00:00:fat:01 00987510 1 0 -podiatrist%1:18:00:: 09919297 1 0 -podiatry%1:09:00:: 06062076 1 0 -podiceps%1:05:00:: 02049855 1 0 -podiceps_cristatus%1:05:00:: 02050313 1 0 -podiceps_grisegena%1:05:00:: 02050442 1 0 -podiceps_nigricollis%1:05:00:: 02050586 1 0 -podiceps_ruficollis%1:05:00:: 02050809 1 0 -podicipedidae%1:05:00:: 02049672 1 0 -podicipediformes%1:05:00:: 02049299 1 0 -podicipitiform_seabird%1:05:00:: 02049532 1 0 -podicipitiformes%1:05:00:: 02049299 1 0 -podilymbus%1:05:00:: 02050921 1 0 -podilymbus_podiceps%1:05:00:: 02051059 1 0 -podium%1:06:00:: 03159640 1 0 -podlike%5:00:00:sheathed:00 02155454 1 0 -podocarp%1:20:00:: 11652039 1 0 -podocarpaceae%1:20:00:: 11651259 1 0 -podocarpus%1:20:00:: 11651731 1 0 -podocarpus_amara%1:20:00:: 11659627 1 0 -podocarpus_coriaceus%1:20:00:: 11652217 1 0 -podocarpus_dacrydioides%1:20:00:: 11653904 1 0 -podocarpus_elatus%1:20:00:: 11652376 1 0 -podocarpus_elongatus%1:20:00:: 11652578 1 0 -podocarpus_family%1:20:00:: 11651259 1 0 -podocarpus_ferruginea%1:20:00:: 11658331 1 0 -podocarpus_latifolius%1:20:00:: 11652753 1 0 -podocarpus_nivalis%1:20:00:: 11652966 1 0 -podocarpus_spicata%1:20:00:: 11658544 1 0 -podocarpus_totara%1:20:00:: 11653126 1 0 -podophyllum%1:20:00:: 11699915 1 0 -podophyllum_peltatum%1:20:00:: 11700058 1 0 -podsol%1:27:00:: 14993137 1 0 -podsol_soil%1:27:00:: 14993137 1 0 -podsolic_soil%1:27:00:: 14993137 1 0 -podzol%1:27:00:: 14993137 1 0 -podzol_soil%1:27:00:: 14993137 1 0 -poe%1:18:00:: 11240480 1 0 -poeciliid%1:05:00:: 01448951 1 0 -poeciliid_fish%1:05:00:: 01448951 1 0 -poeciliidae%1:05:00:: 01448767 1 0 -poecilocapsus%1:05:00:: 02237730 1 0 -poecilocapsus_lineatus%1:05:00:: 02237868 1 0 -poecilogale%1:05:00:: 02443683 1 0 -poecilogale_albinucha%1:05:00:: 02443959 1 0 -poem%1:10:00:: 06377442 1 14 -poenology%1:09:00:: 06152460 1 0 -poephila%1:05:00:: 01544067 1 0 -poephila_castanotis%1:05:00:: 01544389 1 0 -poesy%1:10:02:: 07092592 1 0 -poet%1:18:00:: 10444194 1 14 -poet-singer%1:18:00:: 10099093 1 0 -poet_laureate%1:18:00:: 10447359 2 0 -poet_laureate%1:18:01:: 10447585 1 0 -poetess%1:18:00:: 10447255 1 0 -poetic%3:01:00:: 02857099 1 1 -poetic%3:01:01:: 02857295 3 0 -poetic%5:00:00:figurative:00 01420337 2 1 -poetic%5:00:00:rhetorical:00 02018141 4 0 -poetic_justice%1:11:00:: 07294907 1 0 -poetic_license%1:26:00:: 13995016 1 0 -poetic_rhythm%1:10:00:: 07093895 1 0 -poetical%3:01:00:: 02857099 1 0 -poetical%5:00:00:rhetorical:00 02018141 2 0 -poetically%4:02:00:: 00131770 1 0 -poetics%1:09:00:: 06169932 1 0 -poetise%2:36:00:: 01702514 1 0 -poetiser%1:18:00:: 10528493 1 0 -poetize%2:36:00:: 01702514 1 0 -poetizer%1:18:00:: 10528493 1 0 -poetry%1:10:02:: 07092592 1 11 -poetry%1:10:03:: 07093273 2 1 -pogey%1:04:00:: 01088304 1 0 -pogge%1:05:00:: 02648035 1 0 -pogo_stick%1:06:00:: 03974070 1 0 -pogonia%1:20:00:: 12079963 1 0 -pogonia_divaricata%1:20:00:: 12051514 1 0 -pogonia_rosea%1:20:00:: 12051792 1 0 -pogonion%1:08:00:: 05234737 1 0 -pogonip%1:19:00:: 11467543 1 0 -pogonophora%1:05:00:: 01928737 1 0 -pogonophoran%1:05:00:: 01928865 1 0 -pogostemon%1:20:00:: 12862648 1 0 -pogostemon_cablin%1:20:00:: 12862828 1 0 -pogrom%1:04:00:: 00421210 1 0 -pogy%1:04:00:: 01088304 1 0 -poi%1:13:00:: 07874531 1 0 -poignance%1:26:00:: 13989443 1 0 -poignancy%1:07:00:: 05211254 2 0 -poignancy%1:26:00:: 13989443 1 1 -poignant%5:00:00:moving:01 01560821 1 3 -poignant%5:00:00:painful:00 01712174 2 2 -poignantly%4:02:00:: 00066605 1 0 -poikilotherm%1:05:00:: 01315581 1 0 -poikilothermic%5:00:00:cold-blooded:00 02533075 1 0 -poikilothermous%5:00:00:cold-blooded:00 02533075 1 0 -poilu%1:13:00:: 07590177 2 0 -poilu%1:18:00:: 10447828 1 0 -poinciana%1:20:00:: 12498739 1 0 -poinciana%1:20:02:: 12489815 2 0 -poinciana_gilliesii%1:20:00:: 12489815 1 0 -poinciana_pulcherrima%1:20:00:: 12490054 1 0 -poinciana_regia%1:20:00:: 12494794 1 0 -poinsettia%1:20:00:: 12920204 1 0 -poinsettia_strain%1:05:00:: 02247655 1 0 -point%1:06:00:: 03974215 15 1 -point%1:06:01:: 03974671 25 0 -point%1:06:02:: 03974769 24 0 -point%1:06:03:: 03213826 26 0 -point%1:07:00:: 05071556 22 0 -point%1:07:01:: 04731925 14 1 -point%1:07:02:: 04732067 23 0 -point%1:09:00:: 05865998 1 51 -point%1:09:01:: 05817845 4 17 -point%1:09:02:: 05984066 7 6 -point%1:10:00:: 06843520 19 0 -point%1:10:01:: 06606808 3 20 -point%1:10:02:: 06822034 20 0 -point%1:10:03:: 06482401 12 2 -point%1:10:04:: 06812289 21 0 -point%1:15:00:: 08620061 2 21 -point%1:17:02:: 09396465 11 2 -point%1:21:00:: 13400150 18 0 -point%1:23:00:: 13712286 17 0 -point%1:23:01:: 13610162 10 2 -point%1:24:00:: 13830305 16 0 -point%1:24:04:: 13794885 13 1 -point%1:25:00:: 13902482 8 3 -point%1:25:02:: 13911872 9 2 -point%1:26:00:: 13939892 5 16 -point%1:28:00:: 15180528 6 9 -point%2:30:00:: 00392960 13 0 -point%2:30:09:: 00261957 14 0 -point%2:32:00:: 00923793 1 25 -point%2:32:11:: 00924255 12 0 -point%2:32:12:: 00921300 5 1 -point%2:33:00:: 01152214 3 8 -point%2:33:02:: 01152670 10 0 -point%2:33:10:: 01150559 11 0 -point%2:35:11:: 01589224 8 0 -point%2:35:12:: 01589056 9 0 -point%2:35:13:: 01589363 7 0 -point%2:38:05:: 01931768 4 5 -point%2:38:09:: 01928154 6 0 -point%2:42:00:: 02713184 2 8 -point-and-shoot_camera%1:06:00:: 03974915 1 0 -point-blank%4:02:00:: 00423471 1 0 -point-blank%5:00:00:direct:00 00761592 2 0 -point-blank%5:00:00:direct:02 00764484 1 1 -point-of-sale%3:01:00:: 03143374 1 0 -point_after%1:04:00:: 00189257 1 0 -point_after_touchdown%1:04:00:: 00189257 1 0 -point_duty%1:04:00:: 01070566 1 0 -point_in_time%1:28:00:: 15180528 1 0 -point_jam%2:32:00:: 01057558 1 0 -point_lace%1:06:00:: 03975788 1 0 -point_man%1:18:00:: 10448065 2 0 -point_man%1:18:01:: 10448157 1 0 -point_mutation%1:11:00:: 07426406 1 0 -point_of_accumulation%1:23:00:: 13758556 1 0 -point_of_apoapsis%1:15:00:: 08495617 1 0 -point_of_departure%1:04:00:: 00236194 2 0 -point_of_departure%1:15:00:: 08508834 1 0 -point_of_entry%1:15:00:: 08638442 1 0 -point_of_honor%1:09:00:: 05672178 1 0 -point_of_intersection%1:09:00:: 05866653 1 3 -point_of_no_return%1:09:00:: 05749042 1 0 -point_of_order%1:10:00:: 06667169 1 0 -point_of_periapsis%1:15:00:: 08618379 1 0 -point_of_reference%1:10:00:: 07258332 1 0 -point_of_view%1:07:00:: 05076237 2 0 -point_of_view%1:09:00:: 06210363 1 13 -point_out%2:32:01:: 01058574 1 42 -point_out%2:32:02:: 01013230 3 3 -point_out%2:32:03:: 00924612 2 7 -point_source%1:15:00:: 08585298 1 0 -point_system%1:09:00:: 05664640 1 1 -point_system%1:10:00:: 06362628 3 0 -point_system%1:23:00:: 13579166 2 0 -point_the_way%2:32:00:: 00749794 1 2 -point_up%2:32:00:: 01014186 1 6 -point_woman%1:18:00:: 10448455 1 0 -pointed%3:00:00:: 01809655 1 2 -pointed%5:00:00:direct:02 00765862 2 0 -pointed-leaf_maple%1:20:00:: 12755559 1 0 -pointed-toe%5:00:00:toed:00 01032226 1 0 -pointed_arch%1:06:00:: 03975035 1 0 -pointedly%4:02:00:: 00004038 1 0 -pointedness%1:07:00:: 05071556 1 0 -pointedness%1:07:01:: 04919011 2 0 -pointel%1:06:00:: 03455355 1 0 -pointer%1:05:00:: 02099997 4 0 -pointer%1:06:00:: 03975232 2 0 -pointer%1:06:01:: 03150795 3 0 -pointer%1:10:00:: 06818121 1 0 -pointillism%1:06:00:: 03975419 2 0 -pointillism%1:14:00:: 08276053 1 0 -pointillist%1:18:00:: 10447924 1 0 -pointillist%5:00:00:patterned:00 01789734 1 0 -pointillistic%5:00:00:patterned:00 01789734 1 0 -pointing_out%1:10:00:: 06798472 1 1 -pointing_trowel%1:06:00:: 03975657 1 0 -pointless%3:00:00:: 01811504 1 0 -pointless%5:00:00:worthless:00 02503305 2 0 -pointlessly%4:02:00:: 00426628 1 0 -pointlessness%1:07:00:: 05174023 1 0 -pointrel%1:06:00:: 03455355 1 0 -pointsman%1:18:00:: 10448322 1 0 -pointy-toed%5:00:00:toed:00 01032226 1 0 -poise%1:07:00:: 04904162 3 0 -poise%1:23:00:: 13715240 1 2 -poise%1:26:00:: 14003880 2 0 -poise%2:35:01:: 01602318 4 0 -poise%2:35:02:: 01602665 3 1 -poise%2:37:00:: 01806109 2 1 -poise%2:38:00:: 01943571 1 3 -poised%5:00:00:balanced:00 00894272 1 4 -poised%5:00:00:composed:00 00530354 2 0 -poison%1:07:00:: 05166397 2 1 -poison%1:27:00:: 15032376 1 4 -poison%2:29:00:: 00088339 5 0 -poison%2:30:00:: 00532429 3 1 -poison%2:35:00:: 01323338 2 1 -poison%2:35:01:: 01323793 4 0 -poison%2:41:00:: 02580678 1 3 -poison-berry%1:20:00:: 12896307 1 0 -poison_arrow_plant%1:20:00:: 11768505 1 0 -poison_ash%1:20:00:: 12766595 1 0 -poison_bush%1:20:01:: 11751765 2 0 -poison_bush%1:20:02:: 12529905 1 0 -poison_camas%1:20:00:: 12467433 1 0 -poison_dogwood%1:20:00:: 12766595 1 0 -poison_gas%1:27:00:: 14993378 1 0 -poison_hemlock%1:20:00:: 12935609 1 0 -poison_ivy%1:20:00:: 12766869 2 0 -poison_ivy%1:26:00:: 14223492 1 0 -poison_mercury%1:20:00:: 12766869 1 0 -poison_milkweed%1:20:00:: 13235319 1 0 -poison_oak%1:20:02:: 12766869 2 0 -poison_oak%1:26:00:: 14223638 1 0 -poison_parsley%1:20:00:: 12935609 1 0 -poison_pea%1:20:02:: 12529905 1 0 -poison_pill%1:04:00:: 00176449 1 0 -poison_sumac%1:20:00:: 12766595 2 0 -poison_sumac%1:26:00:: 14223752 1 0 -poisonberry%1:20:00:: 12896307 1 0 -poisoner%1:18:00:: 10448568 1 0 -poisoning%1:04:00:: 00224738 2 0 -poisoning%1:26:00:: 14509712 1 0 -poisonous%5:00:00:inedible:00 00829656 2 0 -poisonous%5:00:00:malicious:00 00226105 3 0 -poisonous%5:00:00:toxic:00 02450512 1 0 -poisonous_nightshade%1:20:00:: 12894607 1 0 -poisonous_parasol%1:20:00:: 13013965 1 0 -poisonous_plant%1:20:00:: 13100156 1 0 -poisonous_substance%1:27:00:: 15032376 1 0 -poisonously%4:02:00:: 00426761 1 0 -poisson_distribution%1:09:00:: 06025854 1 0 -poitier%1:18:00:: 11240609 1 0 -poitiers%1:04:00:: 01291839 1 0 -poitou%1:15:00:: 08944224 1 0 -poitou-charentes%1:15:00:: 08944224 1 0 -poitrine_d'agneau%1:13:00:: 07667480 1 0 -poivrade%1:13:00:: 07839312 1 0 -poke%1:04:00:: 00134780 5 0 -poke%1:04:01:: 00334935 4 0 -poke%1:06:00:: 04122825 3 0 -poke%1:18:00:: 09993252 2 0 -poke%1:20:00:: 11855553 1 0 -poke%2:35:00:: 01230241 5 0 -poke%2:35:01:: 01229976 1 7 -poke%2:35:02:: 01414626 4 0 -poke%2:35:03:: 01424220 3 0 -poke%2:39:00:: 02169119 2 5 -poke_at%2:35:00:: 01231252 1 1 -poke_bonnet%1:06:00:: 02869837 1 0 -poke_check%1:04:00:: 00563212 1 0 -poke_fun%2:32:00:: 00851933 1 1 -poke_into%2:35:00:: 01226875 2 0 -poke_into%2:35:01:: 01228753 1 1 -poke_milkweed%1:20:00:: 13234519 1 0 -poke_out%2:42:00:: 02690093 1 0 -poker%1:04:00:: 00494768 2 0 -poker%1:06:00:: 03975926 1 0 -poker-faced%5:00:00:uncommunicative:00 00501313 1 1 -poker_alumroot%1:20:00:: 12798632 1 0 -poker_chip%1:06:00:: 03020416 1 0 -poker_face%1:07:00:: 04680133 1 0 -poker_game%1:04:00:: 00494768 1 0 -poker_hand%1:14:00:: 07957655 1 0 -poker_heuchera%1:20:00:: 12798632 1 0 -poker_plant%1:20:00:: 12437769 1 0 -pokeweed%1:20:00:: 11855274 1 0 -pokeweed_family%1:20:00:: 11854760 1 0 -pokey%1:06:00:: 03592245 1 0 -pokey%5:00:00:provincial:00 00637455 2 0 -pokey%5:00:00:slow:01 00981067 1 0 -poking%1:04:00:: 00334935 1 0 -pokomo%1:10:00:: 06995016 1 0 -poky%1:06:00:: 03592245 1 0 -poky%5:00:00:provincial:00 00637455 2 0 -poky%5:00:00:slow:01 00981067 1 0 -pol%1:18:00:: 10450303 1 0 -polack%1:18:00:: 09727747 1 0 -poland%1:15:00:: 08982587 1 7 -polanisia%1:20:00:: 11867070 1 0 -polanisia_dodecandra%1:20:00:: 11867311 1 0 -polanisia_graveolens%1:20:00:: 11867311 1 0 -polar%3:00:00:: 02444147 4 0 -polar%3:01:00:: 02838005 3 0 -polar%5:00:00:charged:00 00358820 1 3 -polar%5:00:00:cold:01 01252151 5 0 -polar%5:00:00:crucial:00 00656507 6 0 -polar%5:00:00:different:00 02066312 2 1 -polar_bear%1:05:00:: 02134084 1 0 -polar_body%1:08:00:: 05458703 1 0 -polar_circle%1:15:00:: 08496655 1 0 -polar_coordinate%1:09:00:: 06011903 1 0 -polar_front%1:19:00:: 11460829 1 0 -polar_glacier%1:17:00:: 09396608 1 0 -polar_hare%1:05:00:: 02327656 1 0 -polar_opposition%1:24:00:: 13856449 1 0 -polar_region%1:15:00:: 08573258 1 0 -polar_star%1:17:00:: 09396712 1 0 -polar_zone%1:15:00:: 08573258 1 0 -polarimeter%1:06:00:: 03976105 1 0 -polaris%1:17:00:: 09396712 1 0 -polarisation%1:19:00:: 11492014 2 0 -polarisation%1:26:00:: 14002109 1 0 -polariscope%1:06:00:: 03976105 1 0 -polarise%2:30:00:: 00487182 3 0 -polarise%2:30:01:: 00487350 2 0 -polarise%2:30:02:: 00487554 1 0 -polarity%1:24:00:: 13856574 2 1 -polarity%1:24:01:: 13856110 1 3 -polarization%1:19:00:: 11492014 1 3 -polarization%1:26:00:: 14002109 2 1 -polarize%2:30:00:: 00487182 3 1 -polarize%2:30:01:: 00487350 2 1 -polarize%2:30:02:: 00487554 1 2 -polarographic%3:01:00:: 02781425 1 0 -polarography%1:04:00:: 00647147 1 0 -polaroid%1:06:00:: 03976268 1 0 -polaroid_camera%1:06:00:: 03976467 1 0 -polaroid_land_camera%1:06:00:: 03976467 1 0 -polder%1:17:00:: 09397001 1 0 -pole%1:06:00:: 03976657 1 6 -pole%1:06:01:: 03976960 10 0 -pole%1:06:02:: 03977158 9 0 -pole%1:06:03:: 04413151 8 0 -pole%1:09:00:: 05950559 3 2 -pole%1:15:00:: 08620881 7 0 -pole%1:15:01:: 08621099 6 0 -pole%1:18:00:: 09727627 2 4 -pole%1:23:01:: 13650921 4 0 -pole%1:23:02:: 13614679 5 0 -pole%2:30:00:: 00239973 3 0 -pole%2:35:00:: 01372189 1 2 -pole%2:35:01:: 01218652 2 0 -pole-handled%5:00:00:long:01 01434966 1 0 -pole_bean%1:20:00:: 12556656 1 0 -pole_horse%1:05:00:: 02387452 2 0 -pole_horse%1:05:01:: 02388453 1 0 -pole_jump%1:11:00:: 07469772 1 0 -pole_jumper%1:18:00:: 10746931 1 0 -pole_jumping%1:11:00:: 07469772 1 0 -pole_position%1:15:00:: 08621283 1 0 -pole_star%1:17:00:: 09396712 1 0 -pole_vault%1:11:00:: 07469772 1 0 -pole_vaulter%1:18:00:: 10746931 1 0 -pole_vaulting%1:11:00:: 07469772 1 0 -poleax%1:06:00:: 03977266 2 0 -poleax%1:06:01:: 03977430 1 0 -poleax%2:35:00:: 01258642 1 0 -poleaxe%1:06:00:: 03977266 2 0 -poleaxe%1:06:01:: 03977430 1 0 -poleaxe%2:35:00:: 01258642 1 0 -polecat%1:05:01:: 02443114 2 0 -polecat%1:05:02:: 02445715 1 0 -polecat_weed%1:20:00:: 11792742 1 0 -polemic%1:10:00:: 07183660 2 0 -polemic%1:18:00:: 10448670 1 0 -polemic%5:00:00:controversial:00 00602563 1 0 -polemical%5:00:00:controversial:00 00602563 1 1 -polemically%4:02:00:: 00302622 1 0 -polemicise%2:32:00:: 00774932 1 0 -polemicist%1:18:00:: 10448670 1 0 -polemicize%2:32:00:: 00774932 1 0 -polemics%1:09:00:: 06185458 1 0 -polemise%2:32:00:: 00774932 1 0 -polemist%1:18:00:: 10448670 1 0 -polemize%2:32:00:: 00774932 1 0 -polemoniaceae%1:20:00:: 12808933 1 0 -polemoniaceous%3:01:00:: 02781531 1 0 -polemoniales%1:20:00:: 12808227 1 0 -polemonium%1:20:00:: 12809365 1 0 -polemonium_boreale%1:20:00:: 12810007 1 0 -polemonium_caeruleum%1:20:00:: 12809626 1 0 -polemonium_reptans%1:20:00:: 12809868 1 0 -polemonium_van-bruntiae%1:20:00:: 12809626 1 0 -polemonium_viscosum%1:20:00:: 12810151 1 0 -polenta%1:13:00:: 07703743 1 0 -poler%1:05:00:: 02387452 1 0 -polestar%1:17:00:: 09396712 1 0 -polianthes%1:20:00:: 12480233 1 0 -polianthes_tuberosa%1:20:00:: 12480456 1 0 -police%1:14:00:: 08209687 1 34 -police%2:41:00:: 02454939 1 4 -police_academy%1:14:00:: 08279424 1 0 -police_action%1:04:00:: 00955806 1 0 -police_blotter%1:10:00:: 06502858 1 0 -police_boat%1:06:00:: 03977592 1 0 -police_captain%1:18:00:: 09893015 1 1 -police_car%1:06:00:: 03141065 1 3 -police_chief%1:18:00:: 09893015 1 4 -police_commissioner%1:18:00:: 10448834 1 0 -police_constable%1:18:00:: 09959258 1 0 -police_court%1:14:00:: 08334873 1 0 -police_cruiser%1:06:00:: 03141065 1 0 -police_department%1:14:00:: 08121542 1 3 -police_detective%1:18:00:: 10009276 1 0 -police_dog%1:05:00:: 02106854 1 0 -police_force%1:14:00:: 08209687 1 1 -police_headquarters%1:06:00:: 03977678 1 2 -police_investigation%1:04:00:: 00635012 1 1 -police_lieutenant%1:18:00:: 10259225 1 0 -police_matron%1:18:00:: 10449412 1 0 -police_officer%1:18:00:: 10448983 1 1 -police_precinct%1:15:00:: 08538584 1 0 -police_sergeant%1:18:00:: 10449521 1 0 -police_squad%1:14:00:: 08080947 1 0 -police_state%1:14:00:: 08441039 1 0 -police_station%1:06:00:: 03977678 1 0 -police_van%1:06:00:: 03977966 1 0 -police_wagon%1:06:00:: 03977966 1 0 -police_work%1:04:00:: 00635012 1 0 -policeman%1:18:00:: 10448983 1 11 -policeman_bird%1:05:00:: 02004492 1 0 -policewoman%1:18:00:: 10449412 1 0 -policy%1:09:00:: 05901508 1 33 -policy%1:10:00:: 06656408 2 25 -policy%1:10:02:: 06523641 3 2 -policy-making%5:00:00:political:00 01814929 1 0 -policy_change%1:04:00:: 00163406 1 0 -policy_maker%1:18:00:: 10449845 1 1 -policyholder%1:18:00:: 10449664 1 0 -polio%1:26:00:: 14140176 1 1 -poliomyelitis%1:26:00:: 14140176 1 0 -polioptila%1:05:00:: 01563313 1 0 -poliosis%1:07:00:: 04976870 1 0 -poliovirus%1:05:00:: 01337734 1 0 -poliovirus_vaccine%1:06:00:: 03978130 1 0 -polish%1:07:00:: 04955160 1 2 -polish%1:10:00:: 06944720 4 0 -polish%1:26:00:: 14459824 2 1 -polish%1:27:00:: 14996020 3 0 -polish%2:30:00:: 00473799 3 0 -polish%2:30:01:: 00474017 2 3 -polish%2:35:00:: 01245637 1 7 -polish%3:01:00:: 02961258 1 3 -polish_monetary_unit%1:23:00:: 13710651 1 0 -polish_notation%1:10:00:: 06814443 1 0 -polish_off%2:30:00:: 00484892 1 1 -polish_off%2:34:00:: 01196802 3 0 -polish_off%2:41:00:: 02482425 2 0 -polish_up%2:30:00:: 00473799 1 0 -polished%3:00:00:: 01811997 1 2 -polished%5:00:00:processed:00 01952153 3 0 -polished%5:00:00:sophisticated:00 02271177 2 0 -polished%5:00:01:finished:02 01005306 4 0 -polished_rice%1:13:00:: 07804657 1 0 -polisher%1:06:00:: 02911332 1 0 -polishing%1:04:00:: 00578795 1 0 -polistes%1:05:00:: 02213967 1 0 -polistes_annularis%1:05:00:: 02214096 1 0 -politburo%1:14:00:: 08327090 1 0 -polite%3:00:00:: 00641158 1 3 -polite%3:00:04:: 00642379 3 0 -polite%5:00:00:refined:01 01947741 2 1 -politely%4:02:00:: 00218479 1 4 -politeness%1:04:00:: 01227908 2 0 -politeness%1:07:00:: 04912982 1 3 -politesse%1:07:00:: 04913738 1 0 -politic%3:00:00:: 01813400 1 1 -politic%5:00:00:diplomatic:00 00758800 2 0 -political%3:00:00:: 01814385 1 45 -political%3:01:01:: 02857407 2 11 -political%3:01:02:: 02857587 3 6 -political_action_committee%1:14:00:: 08327212 1 0 -political_arena%1:26:00:: 14515344 1 2 -political_boss%1:18:00:: 10403162 1 0 -political_campaign%1:04:00:: 00799537 2 0 -political_campaign%1:11:00:: 07472929 1 3 -political_commissar%1:18:00:: 09942697 1 0 -political_contribution%1:21:00:: 13270906 1 0 -political_correctitude%1:07:00:: 04899713 1 0 -political_correctness%1:07:00:: 04899713 1 0 -political_detainee%1:18:00:: 10009162 1 0 -political_dissident%1:18:00:: 10018532 1 0 -political_donation%1:21:00:: 13270906 1 0 -political_economy%1:09:00:: 06149484 1 0 -political_entity%1:14:00:: 08359949 1 0 -political_hack%1:18:00:: 10278805 1 0 -political_incorrectness%1:07:00:: 04901754 1 0 -political_leader%1:18:00:: 10450303 1 1 -political_liberty%1:26:00:: 13995662 1 0 -political_machine%1:14:00:: 08264583 1 0 -political_movement%1:14:00:: 08472335 1 0 -political_orientation%1:09:00:: 06212839 1 0 -political_party%1:14:00:: 08256968 1 1 -political_platform%1:10:00:: 06501311 1 1 -political_prisoner%1:18:00:: 10450038 1 0 -political_program%1:10:00:: 06501311 1 0 -political_relation%1:24:00:: 13840719 1 0 -political_science%1:09:00:: 06148148 1 1 -political_scientist%1:18:00:: 10450161 1 0 -political_sphere%1:26:00:: 14515344 1 0 -political_sympathies%1:09:00:: 06149192 1 0 -political_system%1:14:00:: 08367880 1 3 -political_theory%1:09:00:: 06212839 1 0 -political_unit%1:14:00:: 08359949 1 1 -politically%4:02:00:: 00115859 1 1 -politically%4:02:01:: 00115745 2 1 -politically_correct%3:01:00:: 02781685 1 0 -politically_incorrect%3:01:00:: 02781783 1 0 -politician%1:18:00:: 10450303 2 4 -politician%1:18:01:: 10451263 1 9 -politician%1:18:02:: 10451450 3 0 -politicise%2:30:00:: 00534222 1 0 -politicize%2:30:00:: 00534222 1 0 -politick%2:41:00:: 02375748 1 0 -politico%1:18:00:: 10450303 1 0 -politics%1:04:00:: 00611972 3 3 -politics%1:04:01:: 01124508 5 0 -politics%1:09:00:: 06148148 2 4 -politics%1:09:01:: 06149192 4 1 -politics%1:24:00:: 13840719 1 21 -polity%1:04:00:: 01137455 3 0 -polity%1:14:00:: 08050385 2 0 -polity%1:26:00:: 13968859 1 0 -polk%1:18:00:: 11240733 1 0 -polka%1:04:00:: 00538144 2 0 -polka%1:10:00:: 07056504 1 1 -polka%2:38:00:: 01897583 1 0 -polka_dot%1:06:00:: 03978300 1 0 -poll%1:04:00:: 00653811 5 0 -poll%1:05:00:: 01817346 4 0 -poll%1:08:01:: 05539595 2 0 -poll%1:08:02:: 05539012 3 0 -poll%1:09:00:: 05800998 1 4 -poll%2:35:00:: 01320669 4 0 -poll%2:41:00:: 02454312 1 1 -poll%2:41:01:: 02463298 2 0 -poll%2:41:02:: 02454835 3 0 -poll_parrot%1:05:00:: 01817346 1 0 -poll_taker%1:18:00:: 10451590 1 0 -poll_tax%1:21:00:: 13314355 1 0 -pollachius%1:05:00:: 02524081 1 0 -pollachius_pollachius%1:05:00:: 02524202 1 0 -pollack%1:05:00:: 02524202 3 0 -pollack%1:13:00:: 07789240 2 0 -pollack%1:18:00:: 11240996 1 0 -pollard%1:05:00:: 01319339 2 0 -pollard%1:20:00:: 13108323 1 0 -pollard%2:35:00:: 01320669 1 0 -pollen%1:20:00:: 11675537 1 10 -pollen_count%1:23:00:: 13592871 1 0 -pollen_tube%1:20:00:: 11680596 1 0 -pollenate%2:29:00:: 00054059 1 0 -pollenation%1:11:00:: 07437372 1 0 -pollex%1:08:00:: 05567217 1 0 -pollinate%2:29:00:: 00054059 1 0 -pollination%1:11:00:: 07437372 1 0 -pollinator%1:05:00:: 02161457 1 0 -polling_booth%1:06:00:: 03978421 1 0 -polling_day%1:28:00:: 15172881 1 0 -polling_place%1:15:00:: 08538917 1 0 -polling_station%1:15:00:: 08538917 1 0 -pollinium%1:20:00:: 11675738 1 0 -pollinosis%1:26:00:: 14534199 1 0 -polliwog%1:05:00:: 02469472 1 0 -pollock%1:05:00:: 02524202 3 0 -pollock%1:13:00:: 07789240 2 0 -pollock%1:18:00:: 11241106 1 0 -polls%1:15:00:: 08621393 1 3 -pollster%1:18:00:: 10451590 1 0 -pollucite%1:27:00:: 14691085 1 0 -pollutant%1:27:00:: 14857278 1 0 -pollute%2:30:00:: 00492706 1 0 -polluted%5:00:00:impure:02 01908889 1 1 -polluter%1:18:00:: 10451858 1 0 -pollution%1:04:00:: 00276987 3 0 -pollution%1:26:00:: 14516743 1 1 -pollution%1:26:02:: 14498404 2 0 -pollux%1:17:00:: 09397150 1 0 -polly_fish%1:05:00:: 02610664 1 0 -pollyannaish%5:00:00:optimistic:00 01664015 1 0 -pollyfish%1:05:00:: 02610664 1 0 -pollywog%1:05:00:: 02469472 1 0 -polo%1:04:00:: 00477639 2 0 -polo%1:18:00:: 11241300 1 0 -polo-neck%1:06:00:: 04502197 1 0 -polo-neck_collar%1:06:00:: 04502364 1 0 -polo_ball%1:06:00:: 03978575 1 0 -polo_mallet%1:06:00:: 03978686 1 0 -polo_pony%1:05:00:: 02380464 1 0 -polo_shirt%1:06:00:: 03978966 1 0 -polo_stick%1:06:00:: 03978686 1 0 -polonaise%1:06:00:: 03978815 1 0 -polonium%1:27:00:: 14650556 1 0 -polony%1:13:00:: 07676967 1 0 -polska%1:15:00:: 08982587 1 0 -poltergeist%1:18:00:: 09546145 1 0 -poltroon%1:18:00:: 10452024 1 0 -poltroon%5:00:00:cowardly:00 00266309 1 0 -poltroonery%1:07:00:: 04861143 1 0 -polyamide%1:27:00:: 14966058 1 0 -polyandrist%1:18:00:: 10452151 1 0 -polyandrous%5:00:00:polygamous:00 01545203 1 0 -polyandry%1:26:00:: 13966795 1 0 -polyangiaceae%1:05:00:: 01378137 1 0 -polyangium%1:05:00:: 01378346 1 0 -polyanthus%1:20:00:: 12091953 1 0 -polyarteritis%1:26:00:: 14258865 1 0 -polyarteritis_nodosa%1:26:00:: 14080352 1 0 -polyatomic%3:01:00:: 02885076 1 0 -polyborus%1:05:00:: 01612803 1 0 -polyborus_cheriway_audubonii%1:05:00:: 01612955 1 0 -polyborus_plancus%1:05:00:: 01613177 1 0 -polybotria%1:20:00:: 13199244 1 0 -polybotria_cervina%1:20:00:: 13198482 1 0 -polybotrya%1:20:00:: 13199244 1 0 -polybotrya_cervina%1:20:00:: 13198482 1 0 -polybutene%1:27:00:: 14787386 1 2 -polybutylene%1:27:00:: 14787386 1 0 -polycarp%1:18:00:: 11241455 1 0 -polychaeta%1:05:00:: 01936219 1 0 -polychaete%1:05:00:: 01936391 1 0 -polychaete_worm%1:05:00:: 01936391 1 0 -polychete%1:05:00:: 01936391 1 0 -polychete_worm%1:05:00:: 01936391 1 0 -polychromatic%3:00:00:: 00366526 1 0 -polychromatic%5:00:00:colored:00 00400193 2 0 -polychrome%1:06:00:: 03979100 1 0 -polychrome%2:30:00:: 00284813 1 0 -polychrome%5:00:00:colored:00 00400193 1 0 -polychromic%5:00:00:colored:00 00400193 1 0 -polychromise%2:30:00:: 00284813 1 0 -polychromize%2:30:00:: 00284813 1 0 -polycillin%1:06:00:: 02705651 1 0 -polycirrus%1:05:00:: 01937422 1 0 -polyconic_projection%1:06:00:: 03979212 1 0 -polycrystalline%5:00:00:crystalline:00 00269364 1 2 -polycystic_kidney_disease%1:26:00:: 14114186 1 0 -polycythemia%1:26:00:: 14197315 1 0 -polydactyl%3:01:00:: 02781885 1 0 -polydactylous%3:01:00:: 02781885 1 0 -polydactylus%1:05:00:: 02611154 1 0 -polydactylus_virginicus%1:05:00:: 02611294 1 0 -polydactyly%1:26:00:: 14471724 1 0 -polydipsia%1:26:00:: 14040966 1 0 -polyelectrolyte%1:27:00:: 14590441 1 1 -polyergus%1:05:00:: 02222459 1 0 -polyergus_rufescens%1:05:00:: 02222582 1 0 -polyester%1:06:00:: 03979377 3 0 -polyester%1:27:00:: 14993713 1 0 -polyester%1:27:02:: 14993559 2 0 -polyester_fiber%1:27:00:: 14993868 1 0 -polyestrous%5:00:00:estrous:00 02138138 1 0 -polyethylene%1:27:00:: 14594313 1 2 -polyfoam%1:27:00:: 14903339 1 0 -polygala%1:20:00:: 12704844 1 0 -polygala_alba%1:20:00:: 12705220 1 0 -polygala_lutea%1:20:00:: 12705458 1 0 -polygala_paucifolia%1:20:00:: 12705698 1 0 -polygala_senega%1:20:00:: 12705978 1 0 -polygala_vulgaris%1:20:00:: 12706410 1 0 -polygalaceae%1:20:00:: 12704636 1 0 -polygamist%1:18:00:: 10452260 1 0 -polygamous%3:00:00:: 01544856 1 0 -polygamous%5:00:00:monoecious:00 01543225 2 0 -polygamy%1:26:00:: 13966925 1 0 -polygene%1:08:00:: 05440555 1 0 -polygenic%5:00:00:inheritable:00 01315025 1 0 -polygenic_disease%1:26:00:: 14075199 1 0 -polygenic_disorder%1:26:00:: 14075199 1 0 -polyglot%1:18:00:: 10264219 1 0 -polyglot%5:00:00:multilingual:00 01545904 1 0 -polygon%1:25:00:: 13866144 1 0 -polygonaceae%1:20:00:: 12600574 1 0 -polygonal%3:01:00:: 03100611 1 0 -polygonal_shape%1:25:00:: 13866144 1 0 -polygonales%1:20:00:: 12600417 1 0 -polygonally%4:02:00:: 00511029 1 0 -polygonatum%1:20:00:: 12474006 1 0 -polygonatum_biflorum%1:20:00:: 12474418 1 0 -polygonatum_commutatum%1:20:00:: 12474418 1 0 -polygonia%1:05:00:: 02277895 1 0 -polygonia_comma%1:05:00:: 02278024 1 0 -polygonum%1:20:00:: 12600888 1 0 -polygonum_aubertii%1:20:00:: 12601106 1 0 -polygonum_fagopyrum%1:20:00:: 12601494 1 0 -polygonum_orientale%1:20:00:: 12601805 1 0 -polygraph%1:06:00:: 03979492 1 0 -polygynist%1:18:00:: 10452432 1 0 -polygynous%5:00:00:polygamous:00 01545317 1 0 -polygyny%1:26:00:: 13967089 1 0 -polyhedral%3:01:00:: 02782106 1 0 -polyhedral_angle%1:25:00:: 13916363 1 0 -polyhedron%1:25:00:: 13883885 1 0 -polyhidrosis%1:22:00:: 13495209 1 0 -polyhymnia%1:18:00:: 09566904 1 0 -polymastigina%1:05:00:: 01419082 1 0 -polymastigote%1:05:00:: 01419332 1 0 -polymath%1:18:00:: 10207077 1 0 -polymer%1:27:00:: 14994328 1 0 -polymerase%1:27:00:: 14984378 1 0 -polymeric%3:01:00:: 02782225 1 0 -polymeric_amide%1:27:00:: 14966058 1 0 -polymerisation%1:22:00:: 13538757 1 0 -polymerise%2:30:00:: 00266197 2 0 -polymerise%2:30:02:: 00266586 1 0 -polymerization%1:22:00:: 13538757 1 3 -polymerize%2:30:00:: 00266197 2 0 -polymerize%2:30:02:: 00266586 1 0 -polymethyl_methacrylate%1:27:00:: 14593874 1 0 -polymonium_caeruleum_van-bruntiae%1:20:00:: 12809626 1 0 -polymorph%1:05:00:: 01328121 1 0 -polymorphemic%3:01:00:: 02936764 1 0 -polymorphic%3:01:00:: 02855185 2 0 -polymorphic%3:01:01:: 02855503 1 0 -polymorphic%5:00:00:multiform:00 01967041 3 0 -polymorphism%1:19:00:: 11492388 3 0 -polymorphism%1:19:01:: 11492833 2 0 -polymorphism%1:19:02:: 11493266 1 0 -polymorphous%3:01:00:: 02855185 2 0 -polymorphous%3:01:01:: 02855503 1 0 -polymorphous%5:00:00:multiform:00 01967041 3 0 -polymox%1:06:00:: 02703894 1 0 -polymyositis%1:26:00:: 14209635 1 1 -polymyxin%1:06:00:: 03979717 1 0 -polynemidae%1:05:00:: 02610834 1 0 -polynesia%1:15:00:: 08841667 1 0 -polynesian%1:10:00:: 06937768 2 0 -polynesian%1:18:00:: 09727826 1 0 -polynesian%3:01:00:: 02961396 1 0 -polynesian_tattler%1:05:00:: 02030568 1 0 -polyneuritic_psychosis%1:26:00:: 14395597 1 0 -polyneuritis%1:26:00:: 14353314 1 0 -polynomial%1:09:00:: 05861855 1 35 -polynomial%3:01:00:: 03100751 1 0 -polynya%1:17:00:: 09397268 1 0 -polyodon%1:05:00:: 02639464 1 0 -polyodon_spathula%1:05:00:: 02639605 1 0 -polyodontidae%1:05:00:: 02639312 1 0 -polyoestrous%5:00:00:estrous:00 02138138 1 0 -polyoicous%5:00:00:monoecious:00 01543225 1 0 -polyoma%1:05:00:: 01340522 1 0 -polyoma_virus%1:05:00:: 01340522 1 0 -polyose%1:27:00:: 14994004 1 0 -polyostotic_fibrous_dysplasia%1:26:00:: 14366486 1 0 -polyp%1:05:00:: 01909906 2 0 -polyp%1:26:00:: 14234436 1 0 -polypectomy%1:04:00:: 00690848 1 0 -polypedates%1:05:00:: 01644245 1 0 -polypedatidae%1:05:00:: 01644104 1 0 -polypeptide%1:27:00:: 14742917 1 0 -polypetalous%5:00:00:petalous:00 01776161 1 0 -polyphase%3:01:00:: 02888295 1 0 -polyphemus_moth%1:05:00:: 02304432 1 0 -polyphone%1:10:00:: 06839411 1 0 -polyphonic%3:00:00:: 01544169 3 0 -polyphonic%3:01:00:: 02855757 2 0 -polyphonic%3:01:01:: 02856124 1 0 -polyphonic_letter%1:10:00:: 06839411 1 0 -polyphonic_music%1:10:00:: 07024929 1 0 -polyphonic_prose%1:10:00:: 06376860 1 0 -polyphonically%4:02:00:: 00131660 1 0 -polyphonous%3:01:00:: 02855757 1 0 -polyphony%1:10:00:: 07024929 1 0 -polyphosphate%1:27:00:: 14994726 1 6 -polyphosphoric_acid%1:27:00:: 14615264 1 0 -polyplacophora%1:05:00:: 01954729 1 0 -polyplacophore%1:05:00:: 01955084 1 0 -polyploid%1:05:00:: 01320692 1 0 -polyploid%3:00:00:: 01147836 1 0 -polyploidy%1:26:00:: 14570939 1 0 -polypodiaceae%1:20:00:: 13172107 1 0 -polypodiales%1:20:00:: 13169674 1 0 -polypodium%1:20:00:: 13172725 1 0 -polypodium_aureum%1:20:00:: 13177048 1 0 -polypodium_glycyrrhiza%1:20:00:: 13173132 1 0 -polypodium_polypodioides%1:20:00:: 13173259 1 0 -polypodium_scouleri%1:20:00:: 13173488 1 0 -polypodium_virgianum%1:20:00:: 13173697 1 0 -polypodium_vulgare%1:20:00:: 13173882 1 0 -polypody%1:20:00:: 13172923 1 0 -polyporaceae%1:20:00:: 13049561 1 0 -polypore%1:20:00:: 13049953 1 0 -polyporus%1:20:00:: 13052431 1 0 -polyporus_frondosus%1:20:00:: 13052670 1 0 -polyporus_squamosus%1:20:00:: 13052931 1 0 -polyporus_tenuiculus%1:20:00:: 13052248 1 0 -polyprion%1:05:00:: 02568326 1 0 -polyprion_americanus%1:05:00:: 02568447 1 0 -polypropene%1:27:00:: 14996158 1 0 -polypropenonitrile%1:06:00:: 03979847 1 0 -polypropylene%1:27:00:: 14996158 1 0 -polyptoton%1:10:00:: 07100522 1 0 -polypus%1:26:00:: 14234436 1 0 -polysaccharide%1:27:00:: 14994004 1 0 -polysemant%1:10:00:: 06301953 1 0 -polysemantic%5:00:00:ambiguous:00 00103447 1 0 -polysemantic_word%1:10:00:: 06301953 1 0 -polysemous%5:00:00:ambiguous:00 00103447 1 0 -polysemous_word%1:10:00:: 06301953 1 0 -polysemy%1:07:00:: 04825576 1 0 -polysomy%1:26:00:: 14467846 1 0 -polystichum%1:20:00:: 13199445 1 0 -polystichum_acrostichoides%1:20:00:: 13199717 1 0 -polystichum_aculeatum%1:20:00:: 13195341 1 0 -polystichum_adiantiformis%1:20:00:: 13200986 1 0 -polystichum_braunii%1:20:00:: 13200193 1 0 -polystichum_lonchitis%1:20:00:: 13200411 1 0 -polystichum_scopulinum%1:20:00:: 13200542 1 0 -polystichum_setiferum%1:20:00:: 13200651 1 0 -polystyrene%1:27:00:: 14595711 1 0 -polysyllabic%5:00:00:long:01 01435675 2 0 -polysyllabic%5:00:00:syllabic:00 02289405 1 0 -polysyllabic_word%1:10:00:: 06302083 1 0 -polysyllabically%4:02:00:: 00144033 1 0 -polysyllable%1:10:00:: 06302083 1 0 -polysyndeton%1:10:00:: 07105045 1 0 -polysynthetic%5:00:00:synthetic:02 00112018 1 0 -polytechnic%1:14:00:: 08285407 1 0 -polytechnic_institute%1:14:00:: 08285407 1 0 -polytetrafluoroethylene%1:27:00:: 14596398 1 0 -polytheism%1:09:00:: 06224305 1 0 -polytheist%1:18:00:: 10452535 1 0 -polytheistic%3:00:00:: 01781356 1 0 -polythene%1:27:00:: 14594313 1 0 -polytonal%5:00:00:tonal:00 02437685 1 1 -polytonalism%1:10:00:: 07025151 1 0 -polytonality%1:10:00:: 07025151 1 0 -polyunsaturated%5:00:00:unsaturated:00 00757783 1 0 -polyunsaturated_fat%1:27:00:: 14994824 1 0 -polyunsaturated_fatty_acid%1:27:00:: 14741730 1 0 -polyurethan%1:27:00:: 14903095 1 0 -polyurethane%1:27:00:: 14903095 1 0 -polyurethane_foam%1:27:00:: 14903339 1 0 -polyuria%1:26:00:: 14114365 1 0 -polyvalence%1:26:00:: 14570330 1 0 -polyvalence%1:26:01:: 14570091 2 0 -polyvalency%1:26:00:: 14570330 1 0 -polyvalency%1:26:01:: 14570091 2 0 -polyvalent%3:00:01:: 01546349 2 0 -polyvalent%3:00:02:: 01547961 1 0 -polyvinyl-formaldehyde%1:27:00:: 14996295 1 0 -polyvinyl_acetate%1:27:00:: 14595279 1 0 -polyvinyl_chloride%1:27:00:: 14595403 1 0 -polyvinyl_resin%1:27:00:: 15088440 1 0 -polyzoa%1:05:00:: 02313495 1 0 -polyzoan%1:05:00:: 02313709 1 0 -pom%1:18:00:: 09703573 1 0 -pom-pom%1:06:00:: 02715712 2 0 -pom-pom%1:06:01:: 03980734 1 0 -pomacanthus%1:05:00:: 02605809 1 0 -pomace_fly%1:05:00:: 02196344 1 0 -pomacentridae%1:05:00:: 02606194 1 0 -pomacentrus%1:05:00:: 02606590 1 0 -pomacentrus_leucostictus%1:05:00:: 02606751 1 0 -pomade%1:06:00:: 03980026 1 0 -pomade%2:29:00:: 00040084 1 0 -pomaded%5:00:00:groomed:00 02427882 1 1 -pomaderris%1:20:00:: 13143930 1 0 -pomaderris_apetala%1:20:00:: 13144084 1 0 -pomatomidae%1:05:00:: 02573406 1 0 -pomatomus%1:05:00:: 02573563 1 0 -pomatomus_saltatrix%1:05:00:: 02573704 1 0 -pomatum%1:06:00:: 03980026 1 0 -pome%1:20:00:: 13138842 1 0 -pomegranate%1:13:00:: 07768694 2 0 -pomegranate%1:20:00:: 12345280 1 0 -pomegranate_tree%1:20:00:: 12345280 1 0 -pomelo%1:13:00:: 07750146 2 0 -pomelo%1:20:00:: 12709103 1 0 -pomelo_tree%1:20:00:: 12709103 1 0 -pomeranian%1:05:00:: 02112018 1 0 -pomfret%1:05:00:: 02582721 1 0 -pomme_blanche%1:20:00:: 12564613 1 0 -pomme_de_prairie%1:20:00:: 12564613 1 0 -pommel%1:06:00:: 03980178 2 0 -pommel%1:06:01:: 03626272 3 0 -pommel%1:06:02:: 03980332 1 0 -pommel%2:35:00:: 01416020 1 1 -pommel_horse%1:06:00:: 03980478 1 0 -pommy%1:18:00:: 09703573 1 0 -pomo%1:10:00:: 06921300 2 0 -pomo%1:18:00:: 09666039 1 0 -pomolobus%1:05:00:: 02531362 1 0 -pomolobus_pseudoharengus%1:05:00:: 02531114 1 0 -pomologist%1:18:00:: 10452631 1 0 -pomology%1:09:00:: 06069886 1 0 -pomoxis%1:05:00:: 02562680 1 0 -pomoxis_annularis%1:05:00:: 02563079 1 0 -pomoxis_nigromaculatus%1:05:00:: 02562971 1 0 -pomp%1:07:01:: 04815002 2 0 -pomp%1:10:00:: 06880134 1 0 -pompadour%1:08:00:: 05260240 2 0 -pompadour%1:18:00:: 11241655 1 0 -pompadour%2:29:00:: 00039267 1 0 -pompano%1:05:00:: 02579557 2 0 -pompano%1:13:00:: 07781689 1 0 -pompeii%1:15:00:: 08803883 1 0 -pompey%1:15:00:: 08879680 2 0 -pompey%1:18:00:: 11241854 1 0 -pompey_the_great%1:18:00:: 11241854 1 0 -pompon%1:05:00:: 02589796 2 0 -pompon%1:06:00:: 03980734 1 0 -pomposity%1:07:00:: 04817923 1 0 -pompous%3:01:00:: 02782367 2 0 -pompous%5:00:00:pretentious:00 01849960 1 2 -pompously%4:02:00:: 00232744 1 2 -pompousness%1:07:00:: 04817923 1 1 -ponca%1:10:00:: 06911758 2 0 -ponca%1:18:00:: 09666206 1 0 -ponce%1:18:00:: 10433737 2 0 -ponce%1:18:01:: 10452752 1 0 -ponce_de_leon%1:18:00:: 11242077 1 0 -poncho%1:06:00:: 03980874 1 3 -poncirus%1:20:00:: 12714114 1 0 -poncirus_trifoliata%1:20:00:: 12714254 1 0 -pond%1:17:00:: 09397391 1 26 -pond-apple_tree%1:20:00:: 11695285 1 0 -pond-scum_parasite%1:20:00:: 12978076 1 0 -pond-skater%1:05:00:: 02243562 1 0 -pond_apple%1:13:00:: 07761954 2 0 -pond_apple%1:20:00:: 11695285 1 0 -pond_bald_cypress%1:20:00:: 11641963 1 0 -pond_cypress%1:20:00:: 11642243 1 0 -pond_lily%1:20:00:: 11715430 1 0 -pond_pine%1:20:00:: 11611561 1 0 -pond_scum%1:05:00:: 01410457 1 0 -ponder%2:31:00:: 00630380 1 9 -ponderable%3:00:00:: 01815309 1 0 -ponderable%5:00:00:thinkable:00 02418093 2 0 -ponderer%1:18:00:: 10339504 1 0 -pondering%5:00:00:thoughtful:00 02419434 1 0 -ponderosa%1:20:00:: 11614420 1 0 -ponderosa_pine%1:20:00:: 11614420 1 0 -ponderosity%1:07:00:: 05027837 1 0 -ponderous%5:00:00:heavy-footed:00 01192786 1 2 -ponderous%5:00:00:heavy:01 01186207 2 1 -ponderous%5:00:00:uninteresting:00 01346538 3 0 -ponderously%4:02:00:: 00427134 2 0 -ponderously%4:02:01:: 00427243 1 0 -ponderousness%1:07:00:: 05027837 2 0 -ponderousness%1:07:01:: 05206829 1 0 -pondweed%1:20:01:: 12615710 1 0 -pondweed%1:20:02:: 12614317 2 0 -pondweed_family%1:20:00:: 12615427 1 0 -pone%1:13:00:: 07688624 1 0 -pong%1:09:00:: 05715150 1 0 -pongamia%1:20:00:: 12563567 1 0 -pongamia_glabra%1:20:00:: 12563702 1 0 -pongee%1:06:00:: 03980986 1 0 -pongid%1:05:00:: 02480153 1 0 -pongidae%1:05:00:: 02479896 1 0 -pongo%1:05:00:: 02480346 1 0 -pongo_pygmaeus%1:05:00:: 02480495 1 0 -poniard%1:06:00:: 03981094 1 0 -poniard%2:35:00:: 01231878 1 0 -ponka%1:10:00:: 06911758 2 0 -ponka%1:18:00:: 09666206 1 0 -pons%1:08:00:: 05500992 2 0 -pons%1:18:00:: 11242321 1 0 -pons_asinorum%1:10:00:: 06786358 1 0 -pons_varolii%1:08:00:: 05500992 1 0 -ponselle%1:18:00:: 11242469 1 0 -ponstel%1:06:00:: 03742531 1 0 -ponte_25_de_abril%1:06:00:: 03981204 1 0 -pontederia%1:20:00:: 12609842 1 0 -pontederia_cordata%1:20:00:: 12609968 1 0 -pontederiaceae%1:20:00:: 12609638 1 0 -pontiac%1:18:00:: 11242596 1 0 -pontifex%1:18:00:: 10452892 1 0 -pontiff%1:18:00:: 10453533 1 0 -pontifical%1:06:00:: 03981340 1 0 -pontifical%3:01:00:: 02721057 2 0 -pontifical%3:01:01:: 02879638 1 0 -pontifical%5:00:00:pretentious:00 01849960 3 0 -pontificate%1:14:00:: 08053260 1 0 -pontificate%2:32:00:: 00828754 2 0 -pontificate%2:41:01:: 02432395 1 0 -pontius_pilate%1:18:00:: 11235112 1 0 -pontoon%1:06:00:: 03981464 2 0 -pontoon%1:06:01:: 03981566 1 0 -pontoon_bridge%1:06:00:: 03981760 1 1 -pontoon_plane%1:06:00:: 03365231 1 0 -pontos%1:18:00:: 09568776 1 0 -pontus%1:15:00:: 08701719 2 0 -pontus%1:18:00:: 09568776 1 0 -pony%1:05:01:: 02382437 5 0 -pony%1:05:02:: 02380335 1 2 -pony%1:05:03:: 02385098 2 1 -pony%1:06:00:: 04206225 4 0 -pony%1:10:00:: 06347225 3 0 -pony-trekking%1:04:00:: 00450866 1 0 -pony_cart%1:06:00:: 03981924 1 0 -pony_express%1:10:00:: 06265815 1 0 -pony_up%2:40:00:: 02200341 1 0 -ponycart%1:06:00:: 03981924 1 0 -ponytail%1:08:00:: 05260380 1 0 -pooch%1:05:00:: 02084732 1 0 -pooch%2:30:00:: 00146023 1 1 -pooch_out%2:30:00:: 00146023 1 0 -pood%1:23:00:: 13718838 1 0 -poodle%1:05:00:: 02113335 1 0 -poodle_dog%1:05:00:: 02113335 1 0 -pooecetes%1:05:00:: 01535005 1 0 -pooecetes_gramineus%1:05:00:: 01535140 1 0 -poof%1:18:00:: 10076033 1 0 -pooh-bah%1:18:00:: 10174971 1 0 -pooh-pooh%2:32:00:: 00796976 2 0 -pooh-pooh%2:32:01:: 01064062 1 1 -pool%1:04:00:: 00501080 9 0 -pool%1:06:00:: 03982060 1 13 -pool%1:14:00:: 08236438 4 2 -pool%1:14:01:: 08481369 3 2 -pool%1:15:00:: 08665101 8 0 -pool%1:17:00:: 09397391 2 2 -pool%1:17:01:: 09397607 6 1 -pool%1:21:00:: 13369857 5 1 -pool%1:21:01:: 13369474 7 0 -pool%2:33:00:: 01090107 2 0 -pool%2:40:00:: 02295842 1 4 -pool_ball%1:06:00:: 03982232 1 0 -pool_cue%1:06:00:: 03145522 1 0 -pool_player%1:18:00:: 10453184 1 0 -pool_stick%1:06:00:: 03145522 1 0 -pool_table%1:06:00:: 03982430 1 0 -pooler%1:18:00:: 10453061 1 0 -pooling_of_interest%1:21:00:: 13407012 1 0 -poolroom%1:06:00:: 03982331 1 0 -poon%1:20:00:: 12364604 2 0 -poon%1:20:02:: 12364823 1 0 -poop%1:06:00:: 04316646 4 0 -poop%1:10:00:: 06636113 3 0 -poop%1:18:00:: 10358794 2 0 -poop%1:27:00:: 14854581 1 0 -poop_deck%1:06:00:: 03982642 1 0 -poop_out%2:29:00:: 00099517 1 0 -poor%1:14:00:: 08179205 1 0 -poor%3:00:00:: 02022953 2 12 -poor%3:00:02:: 02024411 4 0 -poor%3:00:03:: 02025498 3 2 -poor%5:00:00:bad:00 01128719 6 0 -poor%5:00:00:insufficient:00 02336904 5 0 -poor%5:00:00:unfortunate:00 01050890 1 18 -poor-spirited%5:00:00:cowardly:00 00266420 1 0 -poor_box%1:06:00:: 03982767 1 0 -poor_boy%1:13:00:: 07697825 1 0 -poor_devil%1:18:00:: 10453265 1 2 -poor_fish%1:18:00:: 10667187 1 0 -poor_law%1:10:00:: 06538785 1 0 -poor_man's_orchid%1:20:00:: 12913144 1 0 -poor_man's_pulse%1:20:00:: 12547872 1 0 -poor_man's_weatherglass%1:20:00:: 12092417 1 0 -poor_people%1:14:00:: 08179205 1 0 -poor_person%1:18:00:: 10453357 1 0 -poor_rates%1:21:00:: 13315077 1 0 -poor_speller%1:18:00:: 10635149 1 0 -poor_white_trash%1:18:00:: 09641226 1 1 -poorhouse%1:06:00:: 03982895 1 0 -poorly%4:02:00:: 00011516 1 9 -poorly%5:00:00:ill:01 02542325 1 0 -poorness%1:07:01:: 04730797 4 0 -poorness%1:07:02:: 05148399 2 0 -poorness%1:07:03:: 05113462 3 0 -poorness%1:26:00:: 14493145 1 0 -poorwill%1:05:00:: 01836673 1 0 -poove%1:18:00:: 10076033 1 0 -pop%1:10:00:: 07059962 4 0 -pop%1:11:00:: 07390400 3 0 -pop%1:13:00:: 07927512 2 0 -pop%1:18:00:: 09988063 1 1 -pop%2:30:03:: 00309582 13 0 -pop%2:30:04:: 00309792 12 0 -pop%2:33:00:: 01134071 4 1 -pop%2:34:00:: 01199487 11 0 -pop%2:34:02:: 01202374 10 0 -pop%2:35:00:: 01404913 2 3 -pop%2:35:05:: 01499510 7 0 -pop%2:35:06:: 01401005 9 0 -pop%2:35:07:: 01474980 8 0 -pop%2:38:00:: 02081946 1 3 -pop%2:39:00:: 02185988 3 1 -pop%2:39:04:: 02157519 6 0 -pop%2:39:06:: 02186192 5 0 -pop%4:02:00:: 00427394 1 0 -pop%5:00:00:nonclassical:00 00414518 1 0 -pop-fly%1:04:00:: 00128976 1 0 -pop-up%1:04:00:: 00128976 2 0 -pop-up%1:10:00:: 06413260 1 0 -pop-up_book%1:10:00:: 06413260 1 0 -pop_art%1:06:00:: 03983068 1 0 -pop_bottle%1:06:00:: 03983396 1 0 -pop_fly%1:04:00:: 00128976 1 1 -pop_group%1:14:00:: 08249752 1 0 -pop_in%2:38:00:: 01920330 1 2 -pop_music%1:10:00:: 07059962 1 0 -pop_off%2:30:00:: 00358431 2 0 -pop_off%2:38:00:: 02009122 1 0 -pop_out%2:30:00:: 00529411 4 0 -pop_out%2:30:01:: 00426156 1 3 -pop_out%2:38:00:: 01920457 3 0 -pop_out%2:38:01:: 02081946 2 0 -pop_quiz%1:10:00:: 07198757 1 0 -pop_tent%1:06:00:: 03984125 1 1 -pop_the_question%2:32:00:: 00879764 1 0 -pop_up%2:39:00:: 02157519 1 4 -popcorn%1:13:00:: 07732636 2 0 -popcorn%1:20:00:: 12145477 1 0 -popcorn_ball%1:13:00:: 07608721 1 0 -pope%1:18:00:: 10453533 1 6 -pope%1:18:01:: 11242743 2 0 -pope's_nose%1:13:00:: 07649463 1 0 -pope_alexander_vi%1:18:00:: 10813204 1 0 -popery%1:04:00:: 01030488 1 0 -popeyed%5:00:00:eyed:00 00954503 2 0 -popeyed%5:00:00:surprised:00 02358762 1 0 -popgun%1:06:00:: 03983499 1 0 -popillia%1:05:00:: 02173240 1 0 -popillia_japonica%1:05:00:: 02173373 1 0 -popinjay%1:05:00:: 01817263 2 0 -popinjay%1:18:00:: 10454645 1 0 -popish%3:01:00:: 02921753 1 0 -popishly%4:02:00:: 00427473 1 0 -poplar%1:20:00:: 12731401 2 0 -poplar%1:20:02:: 12731714 1 0 -poplar_bluff%1:15:00:: 09107305 1 0 -poplar_tree%1:20:00:: 12731401 1 0 -poplin%1:06:00:: 03983612 1 1 -popliteal%3:01:00:: 02782525 1 0 -popliteal_artery%1:08:00:: 05345421 1 0 -popliteal_vein%1:08:00:: 05377371 1 0 -popover%1:13:00:: 07690739 1 0 -popper%1:06:00:: 03983712 3 0 -popper%1:06:01:: 03983814 2 0 -popper%1:18:00:: 11242849 1 0 -poppet%1:06:00:: 03983928 1 0 -poppet_valve%1:06:00:: 03983928 1 0 -popping%1:11:00:: 07390400 1 3 -poppy%1:20:00:: 11900569 1 2 -poppy_day%1:28:00:: 15200661 1 0 -poppy_family%1:20:00:: 11900058 1 0 -poppy_mallow%1:20:00:: 12174926 1 0 -poppy_seed%1:13:00:: 07827750 1 0 -poppycock%1:10:00:: 06609909 1 0 -popsicle%1:13:00:: 07615774 1 0 -populace%1:14:00:: 08179689 1 2 -popular%3:00:00:: 01815838 1 14 -popular%5:00:00:democratic:00 00716370 2 9 -popular%5:00:00:nonclassical:00 00414518 4 1 -popular%5:00:01:common:01 00486539 3 5 -popular_democratic_front_for_the_liberation_of_palestine%1:14:00:: 08019523 1 0 -popular_front%1:14:00:: 08294581 1 0 -popular_front_for_the_liberation_of_palestine%1:14:00:: 08038379 1 0 -popular_front_for_the_liberation_of_palestine-general_command%1:14:00:: 08038748 1 0 -popular_music%1:10:00:: 07059255 1 2 -popular_music_genre%1:10:00:: 07059255 1 0 -popular_opinion%1:09:00:: 05949726 1 0 -popular_struggle_front%1:14:00:: 08038995 1 0 -popularisation%1:04:01:: 00273077 2 0 -popularisation%1:10:00:: 07174260 1 0 -popularise%2:30:00:: 00578508 2 0 -popularise%2:32:00:: 00970215 1 0 -populariser%1:18:00:: 10454752 1 0 -popularism%1:10:00:: 07025302 1 1 -popularity%1:07:00:: 04808639 1 6 -popularity_contest%1:04:00:: 01169200 1 1 -popularization%1:04:01:: 00273077 2 0 -popularization%1:10:00:: 07174260 1 0 -popularize%2:30:00:: 00578508 2 0 -popularize%2:32:00:: 00970215 1 0 -popularizer%1:18:00:: 10454752 1 0 -popularly%4:02:00:: 00188669 1 2 -populate%2:30:02:: 00451279 2 0 -populate%2:42:00:: 02649830 1 7 -populated%5:00:00:inhabited:00 01312215 1 2 -populated_area%1:15:00:: 08675967 1 0 -population%1:04:00:: 01257969 5 0 -population%1:09:00:: 06026276 3 3 -population%1:14:00:: 08179879 1 27 -population%1:14:01:: 08178741 2 4 -population%1:23:00:: 13779804 4 1 -population_commission%1:14:00:: 08298737 1 0 -population_control%1:04:00:: 01124384 1 0 -population_growth%1:22:00:: 13538996 1 0 -population_profile%1:10:00:: 07002863 1 0 -population_scientist%1:18:00:: 10002257 1 0 -population_shift%1:11:00:: 07359920 1 4 -populism%1:09:00:: 05965933 1 0 -populist%1:18:00:: 10002031 1 0 -populist_party%1:14:00:: 08262494 1 0 -populous%5:00:00:inhabited:00 01312376 1 3 -populus%1:20:00:: 12731202 1 0 -populus_alba%1:20:00:: 12732009 1 0 -populus_balsamifera%1:20:00:: 12731835 1 0 -populus_canescens%1:20:00:: 12732252 1 0 -populus_deltoides%1:20:00:: 12732966 1 0 -populus_grandidentata%1:20:00:: 12734215 1 0 -populus_heterophylla%1:20:00:: 12733428 1 0 -populus_nigra%1:20:00:: 12732491 1 0 -populus_nigra_italica%1:20:00:: 12732605 1 0 -populus_tremula%1:20:00:: 12733870 1 0 -populus_tremuloides%1:20:00:: 12734070 1 0 -populus_trichocarpa%1:20:00:: 12733218 1 0 -porbeagle%1:05:00:: 01483830 1 0 -porc%1:13:00:: 07668702 1 0 -porcelain%1:06:00:: 03984234 1 0 -porcelain_clay%1:27:00:: 14670639 1 0 -porcelainize%2:35:00:: 01615789 1 0 -porcellio%1:05:00:: 01992113 1 0 -porcellionidae%1:05:00:: 01991982 1 0 -porch%1:06:00:: 03984381 1 21 -porcine%3:01:00:: 03100921 1 0 -porcine%5:00:00:fat:01 00987974 2 0 -porcine%5:00:00:gluttonous:00 00011327 3 0 -porcupine%1:05:00:: 02346627 1 1 -porcupine_ball%1:13:00:: 07871588 1 0 -porcupine_fish%1:05:00:: 02655848 1 0 -porcupine_provision%1:04:00:: 00175605 1 0 -porcupinefish%1:05:00:: 02655848 1 0 -porcupines%1:13:00:: 07871588 1 0 -pore%1:08:00:: 05245906 2 1 -pore%1:20:00:: 11680032 3 0 -pore%1:25:00:: 13912115 1 2 -pore%2:31:00:: 00722232 1 1 -pore_fungus%1:20:00:: 13049953 1 0 -pore_mushroom%1:20:00:: 13049953 1 0 -porgy%1:05:00:: 02590987 2 0 -porgy%1:13:00:: 07790081 1 0 -porifera%1:05:00:: 01906552 1 0 -poriferan%1:05:00:: 01906749 1 0 -poriferous%3:00:00:: 00329396 1 0 -poring_over%1:10:00:: 06598445 1 0 -pork%1:13:00:: 07668702 1 4 -pork%1:21:00:: 13358000 2 0 -pork-and-veal_goulash%1:13:00:: 07590841 1 0 -pork-barreling%1:04:00:: 00078821 1 0 -pork-fish%1:05:00:: 02589623 1 0 -pork_and_beans%1:13:00:: 07874674 1 0 -pork_barrel%1:21:00:: 13358000 1 0 -pork_belly%1:13:00:: 07669713 1 0 -pork_butcher%1:18:00:: 10454972 1 0 -pork_loin%1:13:00:: 07669470 1 0 -pork_pie%1:13:00:: 07872284 1 0 -pork_roast%1:13:00:: 07669788 1 0 -pork_sausage%1:13:00:: 07677593 1 0 -pork_tenderloin%1:13:00:: 07660283 1 0 -porkchop%1:13:00:: 07670254 1 1 -porker%1:05:00:: 02395931 1 0 -porkfish%1:05:00:: 02589623 1 0 -porkholt%1:13:00:: 07590974 1 0 -porkpie%1:06:00:: 03984643 1 0 -porkpie_hat%1:06:00:: 03984643 1 0 -porn%1:04:00:: 00747215 1 0 -porn_merchant%1:18:00:: 10455094 1 0 -porno%1:04:00:: 00747215 1 0 -pornographer%1:18:00:: 10455094 1 0 -pornographic%5:00:00:sexy:00 02134397 1 0 -pornographically%4:02:00:: 00116004 1 0 -pornography%1:04:00:: 00747215 1 0 -poronotus%1:05:00:: 02633287 1 0 -poronotus_triacanthus%1:05:00:: 02633422 1 0 -poroporo%1:20:00:: 12893794 1 0 -porose%5:00:00:porous:00 00329585 1 0 -porosity%1:07:00:: 04940146 1 1 -porous%3:00:00:: 00329396 2 0 -porous%5:00:00:leaky:00 01397998 3 0 -porous%5:00:00:permeable:00 01772305 1 11 -porousness%1:07:00:: 04940146 1 0 -porphyra%1:05:00:: 01415393 1 0 -porphyria%1:26:00:: 14507651 1 0 -porphyrin%1:27:00:: 15024124 1 0 -porphyrio%1:05:00:: 02017093 1 0 -porphyrio_porphyrio%1:05:00:: 02017213 1 0 -porphyritic%3:01:00:: 03101056 1 0 -porphyritic_rock%1:27:00:: 14996395 1 0 -porphyrula%1:05:00:: 02017335 1 0 -porphyrula_martinica%1:05:00:: 02017475 1 0 -porphyry%1:27:00:: 14996395 1 0 -porpoise%1:05:00:: 02070430 1 0 -porpoise_oil%1:27:00:: 14996579 1 0 -porridge%1:13:00:: 07874780 1 0 -porringer%1:06:00:: 03984759 1 0 -port%1:06:00:: 03984908 3 1 -port%1:06:01:: 03578656 5 0 -port%1:06:02:: 03642928 4 1 -port%1:13:00:: 07900825 2 1 -port%1:15:00:: 08633957 1 5 -port%2:30:00:: 00587268 8 0 -port%2:34:00:: 01171661 7 0 -port%2:35:00:: 01239202 6 0 -port%2:35:07:: 01450792 5 0 -port%2:38:03:: 01908204 4 0 -port%2:38:04:: 02090854 1 0 -port%2:38:05:: 01979085 3 0 -port%2:38:06:: 02087472 2 0 -port%5:00:00:left:00 02033742 1 0 -port-access_coronary_bypass_surgery%1:04:00:: 00676160 1 0 -port-au-prince%1:15:00:: 08751885 1 0 -port-of-spain%1:15:00:: 08756511 1 0 -port-wine_stain%1:07:00:: 04696193 1 0 -port_arthur%1:04:00:: 01292017 2 0 -port_arthur%1:15:00:: 08727396 1 0 -port_jackson_fig%1:20:00:: 12403276 1 0 -port_jackson_heath%1:20:00:: 12253835 1 0 -port_jackson_pine%1:20:00:: 11633863 1 0 -port_louis%1:15:00:: 08967688 1 0 -port_moresby%1:15:00:: 08845053 1 0 -port_of_call%1:15:00:: 08639479 1 0 -port_of_entry%1:15:00:: 08638442 1 0 -port_of_spain%1:15:00:: 08756511 1 0 -port_orford_cedar%1:20:00:: 11635433 2 0 -port_orford_cedar%1:20:02:: 11635709 1 0 -port_sudan%1:15:00:: 09030467 1 0 -port_vila%1:15:00:: 09160968 1 0 -port_watcher%1:18:00:: 10455821 1 0 -port_wine%1:13:00:: 07900825 1 0 -porta%1:08:00:: 05249636 1 0 -porta_hepatis%1:08:00:: 05250190 1 0 -portability%1:07:00:: 04776176 1 0 -portable%1:06:00:: 03985069 1 0 -portable%3:00:00:: 01525776 1 3 -portable%5:00:00:outboard:00 01291589 2 0 -portable_circular_saw%1:06:00:: 03985441 1 0 -portable_computer%1:06:00:: 03985232 1 0 -portable_saw%1:06:00:: 03985441 1 0 -portacaval_shunt%1:08:00:: 05548314 1 0 -portage%1:04:00:: 00319717 3 0 -portage%1:06:00:: 03985588 2 0 -portage%1:21:00:: 13306346 1 0 -portal%1:06:01:: 03985684 1 5 -portal%1:08:00:: 05377665 3 0 -portal%1:10:00:: 06359657 2 0 -portal_hypertension%1:26:00:: 14104830 1 0 -portal_site%1:10:00:: 06359657 1 0 -portal_system%1:08:00:: 05377515 1 0 -portal_tomb%1:06:00:: 03220237 1 0 -portal_vein%1:08:00:: 05377665 1 0 -portcullis%1:06:00:: 03985881 1 0 -porte%1:14:00:: 08052227 1 0 -porte-cochere%1:06:00:: 03986071 2 0 -porte-cochere%1:06:01:: 03986224 1 0 -portend%2:32:00:: 00871942 1 1 -portent%1:11:00:: 07286368 1 0 -portentous%5:00:00:pretentious:00 01849960 3 0 -portentous%5:00:00:prophetic:00 01883106 2 1 -portentous%5:00:00:significant:00 02164165 1 2 -portentously%4:02:00:: 00427561 1 0 -porter%1:13:00:: 07890226 7 0 -porter%1:18:00:: 10455447 1 1 -porter%1:18:01:: 10455305 6 0 -porter%1:18:02:: 10026553 2 1 -porter%1:18:03:: 11243102 5 0 -porter%1:18:04:: 11243268 4 0 -porter%1:18:05:: 11243424 3 0 -porter%2:35:00:: 01450961 1 0 -porter's_beer%1:13:00:: 07890226 1 0 -porterage%1:04:00:: 00319825 2 0 -porterage%1:21:00:: 13324710 1 0 -porterhouse%1:13:00:: 07660800 1 1 -porterhouse_steak%1:13:00:: 07660800 1 0 -portfolio%1:04:00:: 00721282 4 0 -portfolio%1:06:00:: 03986355 1 2 -portfolio%1:10:00:: 06494153 3 0 -portfolio%1:14:00:: 08242428 2 0 -porthole%1:06:00:: 03986562 1 0 -porthole%1:06:01:: 03984908 2 0 -portia_tree%1:20:00:: 12188635 1 0 -portico%1:06:00:: 03986704 1 0 -porticoed%5:00:00:apteral:00 00139492 1 0 -portiere%1:06:00:: 03986857 1 0 -portion%1:04:00:: 01085098 3 4 -portion%1:06:00:: 03892891 2 4 -portion%1:13:00:: 07578363 7 0 -portion%1:21:00:: 13285176 4 2 -portion%1:21:01:: 13265425 6 0 -portion%1:24:00:: 13809207 1 31 -portion%1:26:00:: 14473222 5 0 -portion%2:40:00:: 02228698 1 0 -portion_out%2:40:00:: 02294179 1 0 -portland%1:15:00:: 09093472 2 0 -portland%1:15:01:: 09133895 1 0 -portland_cement%1:27:00:: 14804958 1 0 -portly%5:00:00:fat:01 00988077 1 0 -portmanteau%1:06:00:: 03986949 2 0 -portmanteau%1:10:00:: 06288527 1 0 -portmanteau_word%1:10:00:: 06288527 1 0 -porto%1:15:00:: 08986374 1 0 -porto_novo%1:15:00:: 08759684 1 0 -porto_rico%1:15:00:: 08752974 1 0 -porto_rico%1:15:01:: 08752814 2 0 -portrait%1:06:00:: 03987079 2 2 -portrait%1:10:00:: 07202391 1 2 -portrait_camera%1:06:00:: 03987266 1 0 -portrait_lens%1:06:00:: 03987376 1 0 -portrait_painter%1:18:00:: 10455619 1 0 -portraitist%1:18:00:: 10455619 1 0 -portraiture%1:04:00:: 00900957 2 0 -portraiture%1:10:01:: 07202391 1 0 -portray%2:32:00:: 00988890 1 9 -portray%2:36:00:: 01688256 2 3 -portray%2:36:01:: 01723690 3 2 -portray%2:36:02:: 01688771 4 0 -portrayal%1:04:00:: 00900726 5 0 -portrayal%1:04:02:: 00548802 2 1 -portrayal%1:06:00:: 03987079 4 0 -portrayal%1:09:00:: 05766984 3 0 -portrayal%1:10:01:: 07202391 1 1 -portrayed%5:00:00:delineated:00 01715157 1 0 -portrayer%1:18:00:: 10455619 1 0 -portraying%1:09:00:: 05766984 1 0 -portsmouth%1:15:00:: 09112123 2 0 -portsmouth%1:15:01:: 08879680 3 0 -portsmouth%1:15:02:: 09151216 1 0 -portugal%1:15:00:: 08984788 1 1 -portuguese%1:10:00:: 06966310 1 1 -portuguese%1:18:00:: 09728009 2 0 -portuguese%3:01:00:: 02959007 1 0 -portuguese_cypress%1:20:00:: 11632376 1 0 -portuguese_escudo%1:23:00:: 13676108 1 0 -portuguese_guinea%1:15:00:: 08947772 1 0 -portuguese_heath%1:20:00:: 12228886 1 0 -portuguese_man-of-war%1:05:00:: 01913166 1 0 -portuguese_monetary_unit%1:23:00:: 13675976 1 0 -portuguese_republic%1:15:00:: 08984788 1 0 -portulaca%1:20:00:: 11857696 1 0 -portulaca_grandiflora%1:20:00:: 11857875 1 0 -portulaca_oleracea%1:20:00:: 11858077 1 0 -portulacaceae%1:20:00:: 11856981 1 0 -portunidae%1:05:00:: 01978744 1 0 -portunus%1:05:00:: 01979124 1 0 -portunus_puber%1:05:00:: 01979269 1 0 -portwatcher%1:18:00:: 10455821 1 2 -porzana%1:05:00:: 02015944 1 0 -porzana_porzana%1:05:00:: 02016066 1 0 -pos_tagger%1:10:00:: 06577916 1 0 -pose%1:04:00:: 00755673 3 0 -pose%1:07:00:: 04788011 1 1 -pose%1:07:01:: 05081300 2 0 -pose%2:31:09:: 00622384 6 0 -pose%2:32:13:: 00837288 3 1 -pose%2:35:02:: 01494310 5 0 -pose%2:39:00:: 02142775 2 4 -pose%2:41:00:: 02519183 4 0 -pose%2:42:00:: 02722663 1 7 -posed%3:44:00:: 03152249 1 0 -poseidon%1:18:00:: 09568927 1 0 -poser%1:10:00:: 06785367 3 0 -poser%1:18:00:: 10324560 2 0 -poser%1:18:01:: 10455915 1 0 -poseur%1:18:00:: 10455915 1 1 -poseuse%1:18:00:: 10456070 1 0 -posh%5:00:00:stylish:00 00975778 1 0 -posing%1:04:00:: 00344421 1 0 -posit%1:10:00:: 06753299 1 0 -posit%2:31:00:: 00716758 3 0 -posit%2:32:02:: 00878136 2 0 -posit%2:35:00:: 01575675 1 0 -position%1:04:00:: 01051331 10 2 -position%1:04:01:: 00586262 6 12 -position%1:04:02:: 00722479 9 3 -position%1:04:03:: 00721431 15 0 -position%1:04:04:: 00083448 16 0 -position%1:07:00:: 05074774 7 7 -position%1:07:01:: 05079866 4 14 -position%1:09:00:: 06208751 3 18 -position%1:09:01:: 06196284 12 1 -position%1:10:00:: 06783265 13 0 -position%1:10:01:: 06483454 14 0 -position%1:15:00:: 08621598 1 34 -position%1:15:02:: 08622586 2 18 -position%1:15:03:: 08622201 8 3 -position%1:26:00:: 13945919 5 12 -position%1:26:02:: 13925752 11 1 -position%2:35:00:: 01494310 2 1 -position%2:38:00:: 01987160 1 2 -position_effect%1:19:00:: 11416534 1 0 -position_paper%1:10:00:: 07220045 1 0 -position_paper%1:10:01:: 06506430 2 0 -positionable%3:01:00:: 02782629 1 0 -positional%3:01:00:: 02782715 1 0 -positional_notation%1:10:00:: 06809421 1 0 -positional_representation_system%1:10:00:: 06809421 1 0 -positioner%1:06:00:: 04110439 1 0 -positioning%1:04:00:: 01051331 1 0 -positioning%5:00:00:orienting:00 01684811 1 0 -positive%1:06:00:: 03987509 2 0 -positive%1:10:00:: 06322468 1 0 -positive%3:00:01:: 01817500 1 20 -positive%3:00:04:: 01820481 4 1 -positive%3:00:05:: 01820103 8 0 -positive%3:01:00:: 02782815 7 0 -positive%5:00:00:advantageous:00 00065064 3 2 -positive%5:00:00:certain:02 00337172 2 3 -positive%5:00:00:charged:00 00358678 10 0 -positive%5:00:00:confident:00 00339288 11 0 -positive%5:00:00:formal:01 01043505 5 1 -positive%5:00:00:plus:00 01819692 9 0 -positive%5:00:00:undeniable:00 00721838 6 1 -positive_charge%1:19:00:: 11435871 1 0 -positive_chemotaxis%1:04:00:: 00863121 1 0 -positive_correlation%1:09:00:: 06032898 1 0 -positive_degree%1:10:00:: 06322468 1 0 -positive_feedback%1:22:00:: 13539262 1 1 -positive_fraud%1:04:00:: 00778213 1 0 -positive_identification%1:10:00:: 06885389 1 0 -positive_magnetic_pole%1:06:00:: 03987674 1 0 -positive_muon%1:17:00:: 09199581 1 0 -positive_pole%1:06:00:: 03987674 2 0 -positive_pole%1:06:01:: 03987865 1 0 -positive_reinforcer%1:09:00:: 05828820 1 0 -positive_reinforcing_stimulus%1:09:00:: 05828820 1 0 -positive_stimulus%1:09:00:: 05829342 1 0 -positively%4:02:00:: 00182199 1 5 -positively%4:02:02:: 00511573 2 0 -positively_charged%5:00:00:charged:00 00358678 1 0 -positiveness%1:07:00:: 05166805 2 0 -positiveness%1:07:01:: 05160796 3 0 -positiveness%1:07:02:: 04755218 5 0 -positiveness%1:07:03:: 05108109 4 0 -positiveness%1:24:00:: 13856857 1 0 -positivism%1:07:00:: 05166805 2 0 -positivism%1:09:00:: 05993367 1 3 -positivist%1:18:00:: 10456138 1 6 -positivist%3:01:00:: 02782815 1 4 -positivistic%3:01:00:: 02782815 1 0 -positivity%1:07:00:: 05166805 2 0 -positivity%1:07:01:: 05160796 3 0 -positivity%1:07:02:: 04755218 5 0 -positivity%1:07:03:: 05108109 4 0 -positivity%1:24:00:: 13856857 1 0 -positron%1:17:00:: 09397896 1 0 -positron_emission_tomography%1:04:00:: 00902376 1 0 -positron_emission_tomography_scanner%1:06:00:: 03987990 1 0 -posology%1:09:00:: 06055692 1 0 -posse%1:14:00:: 08405490 1 11 -posse_comitatus%1:14:00:: 08405490 1 0 -posseman%1:18:00:: 10456391 1 2 -possess%2:40:00:: 02204692 2 12 -possess%2:42:00:: 02632167 1 31 -possess%2:42:02:: 02647311 3 2 -possessed%5:00:00:controlled:00 00599468 1 2 -possessed%5:00:00:insane:00 02074673 2 0 -possession%1:03:00:: 00032613 2 6 -possession%1:04:00:: 00809465 1 10 -possession%1:04:01:: 00809702 7 0 -possession%1:07:00:: 04862005 6 0 -possession%1:15:00:: 08631531 5 0 -possession%1:16:00:: 09182524 4 0 -possession%1:26:00:: 14407795 3 0 -possessive%1:10:00:: 06311852 1 0 -possessive%3:01:00:: 02862251 1 1 -possessive%5:00:00:acquisitive:00 00030508 2 1 -possessive%5:00:00:dominant:01 00792476 3 0 -possessive_case%1:10:00:: 06311852 1 0 -possessively%4:02:00:: 00427685 1 0 -possessiveness%1:07:00:: 04945942 1 0 -possessor%1:18:00:: 10389398 1 0 -posset%1:13:00:: 07916773 1 0 -possibility%1:09:00:: 05888929 3 12 -possibility%1:09:01:: 05792010 4 6 -possibility%1:09:03:: 05951180 1 21 -possibility%1:26:00:: 14481929 2 18 -possible%1:09:00:: 05792192 1 1 -possible%1:18:00:: 10456514 2 0 -possible%3:00:00:: 01821266 1 136 -possible%3:00:04:: 00044353 2 20 -possible_action%1:09:00:: 05792010 1 0 -possibleness%1:26:00:: 14481929 1 0 -possibly%4:02:00:: 00300247 1 26 -possibly%4:02:01:: 00300496 2 0 -possum%1:05:01:: 01874928 1 2 -possum%1:05:02:: 01881171 2 0 -possum_haw%1:20:00:: 12757303 1 0 -possum_oak%1:20:00:: 12276110 1 0 -possumwood%1:20:00:: 12771597 1 0 -post%1:04:00:: 00586262 3 3 -post%1:04:01:: 00318186 11 0 -post%1:06:00:: 03988170 4 2 -post%1:06:01:: 03763403 2 3 -post%1:10:00:: 06264398 10 0 -post%1:10:02:: 07257815 9 0 -post%1:14:00:: 08463063 8 0 -post%1:15:00:: 08624385 1 3 -post%1:18:00:: 11243562 7 0 -post%1:18:01:: 11243720 6 0 -post%1:18:02:: 11243907 5 0 -post%2:32:00:: 00999715 5 1 -post%2:32:01:: 01031109 12 0 -post%2:32:02:: 01031256 11 0 -post%2:32:03:: 00991683 2 3 -post%2:33:00:: 01088923 4 1 -post%2:35:00:: 01570403 10 0 -post%2:35:01:: 01591476 9 0 -post%2:35:02:: 01591621 1 3 -post%2:38:04:: 01960105 8 0 -post%2:40:05:: 02233195 7 0 -post%2:41:00:: 02473331 6 0 -post%2:41:01:: 02385634 3 1 -post-communist%3:01:00:: 02875104 1 0 -post-free%4:02:00:: 00427829 1 0 -post-free%5:00:00:paid:00 01709354 1 0 -post-haste%4:02:00:: 00260163 1 0 -post-hole_digger%1:06:00:: 03989665 1 0 -post-horse%1:05:00:: 02387722 1 0 -post-impressionist%1:18:00:: 10459414 1 0 -post-it%1:10:00:: 06259297 1 0 -post-maturity%1:26:00:: 14426325 1 0 -post-menopause%1:26:00:: 14426325 1 0 -post-mortem%1:04:00:: 00141396 2 0 -post-mortem%1:10:00:: 07144039 1 0 -post-mortem_examination%1:04:00:: 00141396 1 0 -post-obit_bond%1:21:00:: 13339189 1 0 -post-office_box%1:06:00:: 03990210 1 0 -post-office_box_number%1:15:00:: 08491531 1 0 -post-paid%4:02:00:: 00427829 1 0 -post-rotational_nystagmus%1:04:00:: 00338404 1 0 -post_and_lintel%1:06:00:: 03988926 1 0 -post_card%1:10:00:: 06627938 1 0 -post_chaise%1:06:00:: 03989199 1 0 -post_doc%1:18:00:: 10456696 2 0 -post_doc%1:21:00:: 13267687 1 0 -post_exchange%1:06:00:: 03989447 1 0 -post_hoc%1:09:00:: 05894972 1 0 -post_hoc_ergo_propter_hoc%1:09:00:: 05894972 1 0 -post_hole%1:06:00:: 03989553 1 0 -post_horn%1:06:00:: 03989777 1 0 -post_horse%1:05:00:: 02387722 1 0 -post_house%1:06:00:: 03989898 1 0 -post_meridiem%4:02:00:: 00251408 1 0 -post_meridiem%5:00:00:postmeridian:00 00130701 1 0 -post_oak%1:20:00:: 12278371 1 0 -post_office%1:04:00:: 00487326 3 0 -post_office%1:14:00:: 08145277 2 0 -post_office%1:14:01:: 08145553 1 3 -post_road%1:06:00:: 03990385 1 0 -postage%1:10:00:: 06796119 2 0 -postage%1:21:00:: 13324826 1 0 -postage_meter%1:06:00:: 03988758 1 0 -postage_stamp%1:10:00:: 06796119 1 0 -postal%3:01:00:: 02885934 1 0 -postal_card%1:10:00:: 06627938 1 0 -postal_clerk%1:18:00:: 10459116 1 0 -postal_code%1:10:00:: 06355705 1 0 -postal_order%1:21:00:: 13380820 1 0 -postal_rate_commission%1:14:00:: 08127166 1 0 -postal_service%1:10:00:: 06264398 1 0 -postbag%1:06:00:: 03709823 1 0 -postbiblical%3:01:00:: 02854968 1 0 -postbox%1:06:00:: 03989074 1 0 -postcard%1:10:00:: 06627938 1 0 -postcava%1:08:00:: 05422852 1 0 -postcentral_gyrus%1:08:00:: 05493141 1 0 -postcode%1:10:00:: 06355705 1 0 -postdate%2:30:00:: 00277254 2 0 -postdate%2:42:00:: 02712772 1 0 -postdiluvian%1:18:00:: 10456603 1 0 -postdiluvian%3:01:00:: 02762522 1 0 -postdoc%1:18:00:: 10456696 2 0 -postdoc%1:21:00:: 13267687 1 0 -postdoctoral%1:21:00:: 13267687 1 0 -postdoctoral%3:01:00:: 02762621 1 0 -poste_restante%1:10:00:: 06265636 2 0 -poste_restante%1:14:00:: 08145701 1 0 -posted%3:44:00:: 03152480 1 0 -poster%1:05:00:: 02387722 3 0 -poster%1:10:00:: 06793426 1 1 -poster%1:18:00:: 09854510 2 0 -poster_board%1:27:00:: 14801146 1 0 -poster_boy%1:18:00:: 10456874 1 0 -poster_child%1:18:00:: 10456950 1 0 -poster_color%1:06:00:: 04407257 1 0 -poster_colour%1:06:00:: 04407257 1 0 -poster_girl%1:18:00:: 10457214 1 0 -poster_paint%1:06:00:: 04407257 1 0 -posterboard%1:27:00:: 14801146 1 0 -posterior%1:08:00:: 05559256 1 0 -posterior%1:08:01:: 05306476 2 0 -posterior%3:00:00:: 00131426 1 5 -posterior%5:00:00:subsequent:00 00123485 2 0 -posterior_cardinal_vein%1:08:00:: 05360170 1 0 -posterior_cerebral_artery%1:08:00:: 05341789 1 0 -posterior_facial_vein%1:08:00:: 05379438 1 0 -posterior_labial_veins%1:08:00:: 05424504 1 0 -posterior_meningeal_artery%1:08:00:: 05351572 1 0 -posterior_naris%1:08:00:: 05600270 1 0 -posterior_pituitary%1:08:00:: 05484862 1 0 -posterior_pituitary_gland%1:08:00:: 05484862 1 0 -posterior_serratus_muscle%1:08:00:: 05550688 1 0 -posterior_subcapsular_cataract%1:26:00:: 14256227 1 0 -posterior_synechia%1:26:00:: 14206826 1 0 -posterior_temporal_artery%1:08:00:: 05355341 1 0 -posterior_vein_of_the_left_ventricle%1:08:00:: 05377833 1 0 -posteriority%1:07:00:: 05078450 1 0 -posteriority%1:07:01:: 05047617 2 0 -posterity%1:14:00:: 08369142 2 0 -posterity%1:14:01:: 08369220 1 0 -postern%1:06:00:: 03989349 1 0 -postexilic%3:01:00:: 02762782 1 0 -postfix%1:10:00:: 06308987 1 0 -postfix_notation%1:10:00:: 06814655 1 0 -postganglionic%3:01:00:: 03101227 1 0 -postglacial%3:01:00:: 02762931 1 0 -postgraduate%1:18:00:: 10141109 1 0 -postgraduate%5:00:00:high:02 01211665 1 0 -posthitis%1:26:00:: 14354121 1 0 -posthole%1:06:00:: 03989553 1 0 -posthole_digger%1:06:00:: 03989665 1 0 -posthouse%1:06:00:: 03989898 1 0 -posthumous%5:00:00:late:00 00817242 1 1 -posthumous_birth%1:11:00:: 07321012 2 0 -posthumous_birth%1:11:01:: 07321142 1 0 -posthumously%4:02:00:: 00423598 1 0 -posthypnotic_amnesia%1:09:00:: 05673710 1 0 -posthypnotic_suggestion%1:09:00:: 05916520 1 0 -postiche%1:06:01:: 03318438 2 0 -postiche%1:06:02:: 03476083 1 0 -postictal%3:01:00:: 03101415 1 0 -postilion%1:18:00:: 10459212 1 0 -postillion%1:18:00:: 10459212 1 0 -postimpressionist%1:18:00:: 10459414 1 0 -postindustrial%5:00:00:industrial:00 01302137 1 0 -posting%1:04:00:: 00122338 3 0 -posting%1:10:00:: 06793426 1 0 -posting%1:10:01:: 06494373 2 0 -postlude%1:10:00:: 07041344 1 0 -postman%1:18:00:: 10283037 1 0 -postmark%1:10:00:: 07270718 1 1 -postmark%2:35:00:: 01274104 1 0 -postmaster%1:18:00:: 10459575 1 0 -postmaster_general%1:18:00:: 10459764 1 2 -postmature_infant%1:18:00:: 10457293 1 0 -postmenopausal%3:01:00:: 02763056 1 0 -postmeridian%3:00:00:: 00130596 1 0 -postmillennial%3:01:00:: 03101553 1 0 -postmistress%1:18:00:: 10459687 1 0 -postmodern%3:01:00:: 02835329 1 0 -postmodernism%1:06:00:: 03990025 1 0 -postmodernist%3:01:00:: 02835329 1 0 -postmortal%3:00:00:: 00121649 1 0 -postmortem%1:04:00:: 00141396 2 0 -postmortem%1:10:00:: 07144039 1 0 -postmortem%3:00:00:: 00121649 1 0 -postmortem%5:00:00:succeeding:00 00128262 2 0 -postmortem_examination%1:04:00:: 00141396 1 0 -postnasal_drip%1:26:00:: 14333721 1 0 -postnatal%3:00:00:: 00129467 1 0 -postnuptial%3:01:00:: 03043371 1 0 -postoperative%5:00:00:surgical:00 01169660 1 0 -postoperatively%4:02:00:: 00137352 1 0 -postpaid%5:00:00:paid:00 01709437 1 0 -postpartum%3:00:00:: 00129467 1 0 -postpone%2:42:00:: 02642814 1 12 -postponement%1:04:00:: 01066881 2 0 -postponement%1:28:00:: 15272029 1 0 -postponer%1:18:00:: 10478626 1 0 -postpose%2:35:00:: 01248205 1 0 -postposition%1:10:00:: 06483702 1 0 -postpositive%3:01:00:: 02763140 1 0 -postprandial%3:00:00:: 00129729 1 0 -postscript%1:10:00:: 06764623 1 1 -postscript%1:10:01:: 06399631 2 0 -posttraumatic_amnesia%1:09:00:: 05672862 1 0 -posttraumatic_epilepsy%1:26:00:: 14089450 1 0 -posttraumatic_stress_disorder%1:26:00:: 14386130 1 0 -postulant%1:18:00:: 10459882 1 0 -postulate%1:10:00:: 06753299 1 1 -postulate%2:31:00:: 00716758 2 1 -postulate%2:32:00:: 00756898 1 3 -postulate%2:42:00:: 02627934 3 0 -postulation%1:10:00:: 06733227 1 0 -postulation%1:10:01:: 06513366 2 0 -postulational%3:01:00:: 02653385 1 0 -postulator%1:18:00:: 10457444 2 0 -postulator%1:18:01:: 10457597 1 0 -postum%1:13:00:: 07731436 1 0 -postural%3:01:00:: 03101667 1 0 -postural_hypotension%1:26:00:: 14104367 1 0 -posture%1:07:00:: 05079866 1 9 -posture%1:07:01:: 05002822 2 1 -posture%1:07:02:: 05203649 4 0 -posture%1:09:00:: 06196284 3 0 -posture%2:39:00:: 02142775 2 0 -posture%2:41:00:: 02519183 1 0 -posturer%1:18:00:: 10457777 1 0 -posturing%1:07:00:: 04887701 1 0 -postwar%3:00:00:: 00130017 1 2 -posy%1:06:00:: 02879087 1 0 -pot%1:06:00:: 03990474 1 6 -pot%1:06:01:: 04446521 2 5 -pot%1:06:02:: 03991646 8 0 -pot%1:06:03:: 03990834 9 0 -pot%1:06:04:: 03991062 4 1 -pot%1:08:00:: 05556071 7 0 -pot%1:21:00:: 13343774 6 0 -pot%1:23:00:: 13769033 3 1 -pot%1:23:01:: 13774404 5 0 -pot%2:35:00:: 01529491 1 1 -pot-au-feu%1:13:00:: 07593004 1 0 -pot-trained%5:00:00:trained:00 01912483 1 0 -pot_cheese%1:13:00:: 07851767 1 0 -pot_farm%1:06:00:: 03991969 1 0 -pot_likker%1:13:00:: 07584727 1 0 -pot_liquor%1:13:00:: 07584727 1 0 -pot_marigold%1:20:00:: 11943660 1 0 -pot_marjoram%1:20:00:: 12853287 1 0 -pot_metal%1:27:00:: 14718362 2 0 -pot_metal%1:27:01:: 14802167 1 0 -pot_plant%1:20:00:: 11536230 1 0 -pot_roast%1:13:00:: 07661711 1 0 -potable%1:13:00:: 07881800 1 0 -potable%3:00:00:: 00797113 1 0 -potage%1:13:00:: 07587023 1 0 -potage_st._germain%1:13:00:: 07588419 1 0 -potamogale%1:05:00:: 01894956 1 0 -potamogale_velox%1:05:00:: 01894956 1 0 -potamogalidae%1:05:00:: 01894670 1 0 -potamogeton%1:20:00:: 12615986 1 0 -potamogeton_americanus%1:20:00:: 12616630 1 0 -potamogeton_crispus%1:20:00:: 12616248 1 0 -potamogeton_gramineous%1:20:00:: 12616442 1 0 -potamogeton_nodosus%1:20:00:: 12616630 1 0 -potamogetonaceae%1:20:00:: 12615427 1 0 -potamophis%1:05:00:: 01736569 1 0 -potamophis_striatula%1:05:00:: 01736796 1 0 -potash%1:27:00:: 14996843 1 0 -potash_alum%1:27:00:: 14628119 1 0 -potash_muriate%1:27:00:: 14861042 1 0 -potassium%1:27:00:: 14650807 1 5 -potassium-argon_dating%1:04:00:: 00992544 1 0 -potassium_acid_carbonate%1:27:00:: 14860842 1 0 -potassium_alum%1:27:00:: 14628119 1 0 -potassium_bicarbonate%1:27:00:: 14860842 1 0 -potassium_bitartrate%1:27:00:: 15013269 1 0 -potassium_bromide%1:27:00:: 14861566 1 0 -potassium_carbonate%1:27:00:: 14861716 1 0 -potassium_chlorate%1:27:00:: 14861887 1 0 -potassium_chloride%1:27:00:: 14861042 1 0 -potassium_cyanide%1:27:00:: 14862064 1 0 -potassium_dichromate%1:27:00:: 14862192 1 0 -potassium_ferrocyanide%1:27:00:: 14995061 1 0 -potassium_hydrogen_carbonate%1:27:00:: 14860842 1 0 -potassium_hydrogen_tartrate%1:27:00:: 15013269 1 0 -potassium_hydroxide%1:27:00:: 14996843 1 0 -potassium_iodide%1:27:00:: 14862316 1 0 -potassium_muriate%1:27:00:: 14861042 1 0 -potassium_nitrate%1:27:00:: 14861355 1 0 -potassium_permanganate%1:27:00:: 14995278 1 0 -potassium_sodium_tartrate%1:27:00:: 15009474 1 0 -potation%1:04:00:: 00843575 2 0 -potation%1:13:00:: 07883980 1 0 -potato%1:13:00:: 07710616 1 2 -potato%1:20:00:: 12897493 2 0 -potato_bean%1:13:00:: 07774032 3 0 -potato_bean%1:20:00:: 12507379 2 0 -potato_bean%1:20:02:: 12555553 1 0 -potato_beetle%1:05:00:: 02169974 1 0 -potato_blight%1:26:00:: 14218493 1 0 -potato_bug%1:05:00:: 02169974 1 0 -potato_chip%1:13:00:: 07712559 1 0 -potato_disease%1:26:00:: 14218493 1 0 -potato_family%1:20:00:: 12892226 1 0 -potato_fern%1:20:01:: 13178707 2 0 -potato_fern%1:20:02:: 13215258 1 0 -potato_fungus%1:20:00:: 13016076 1 0 -potato_mildew%1:26:00:: 14218493 1 0 -potato_mold%1:26:00:: 14218493 1 0 -potato_mosaic%1:26:00:: 14280986 1 0 -potato_moth%1:05:00:: 02294407 1 0 -potato_murrain%1:26:00:: 14218493 1 0 -potato_nose%1:26:00:: 14397040 1 0 -potato_pancake%1:13:00:: 07641581 1 0 -potato_peel%1:13:00:: 07711683 1 0 -potato_peelings%1:13:00:: 07711683 1 0 -potato_race%1:11:00:: 07463323 1 0 -potato_salad%1:13:00:: 07807594 1 0 -potato_scab_bacteria%1:05:00:: 01376647 1 0 -potato_skin%1:13:00:: 07711683 1 0 -potato_tree%1:20:01:: 12894247 2 0 -potato_tree%1:20:02:: 12897999 1 0 -potato_tuber_moth%1:05:00:: 02294407 1 0 -potato_tuberworm%1:05:00:: 02294577 1 0 -potato_vine%1:20:02:: 12895811 2 0 -potato_vine%1:20:03:: 12897788 1 0 -potato_wart%1:26:00:: 14281851 1 0 -potato_wart_fungus%1:20:00:: 12979316 1 0 -potato_worm%1:05:00:: 02299505 1 0 -potato_yellow-dwarf_virus%1:05:00:: 01341727 1 3 -potato_yellow_dwarf%1:26:00:: 14284876 1 0 -potawatomi%1:10:00:: 06911857 2 0 -potawatomi%1:18:00:: 09666349 1 0 -potbellied%5:00:00:fat:01 00986457 1 0 -potbelly%1:06:00:: 03991202 2 0 -potbelly%1:08:00:: 05556071 1 0 -potbelly_stove%1:06:00:: 03991202 1 0 -potboiler%1:10:00:: 06387053 1 0 -potbound%5:00:00:planted:00 01831942 1 0 -potboy%1:18:00:: 10460033 1 0 -poteen%1:13:00:: 07907342 1 0 -potemkin%1:18:00:: 11244061 1 0 -potemkin_village%1:06:00:: 03991321 1 0 -potence%1:26:00:: 14051728 1 0 -potency%1:07:00:: 05034225 2 1 -potency%1:07:01:: 05196582 1 2 -potency%1:26:01:: 14051728 4 0 -potency%1:26:02:: 14482620 3 0 -potent%3:00:00:: 01824244 3 1 -potent%3:00:02:: 01825419 4 0 -potent%5:00:00:influential:00 01830599 1 2 -potent%5:00:00:powerful:00 01826979 2 2 -potentate%1:18:00:: 10011902 1 0 -potential%1:19:00:: 11493827 2 0 -potential%1:26:00:: 14482620 1 10 -potential%3:00:00:: 00044353 1 7 -potential%5:00:00:prospective:00 01884176 2 6 -potential_difference%1:19:00:: 11493827 1 0 -potential_divider%1:06:00:: 03991443 1 0 -potential_drop%1:19:00:: 11493827 1 0 -potential_energy%1:19:00:: 11494472 1 5 -potential_unit%1:23:00:: 13634784 1 0 -potentiality%1:09:00:: 05623181 2 2 -potentiality%1:26:00:: 14482620 1 3 -potentially%4:02:00:: 00300891 1 2 -potentiate%2:30:00:: 00229801 1 0 -potentiation%1:22:00:: 13539422 1 0 -potentilla%1:20:00:: 12636705 1 0 -potentilla_anserina%1:20:00:: 12637123 1 0 -potentiometer%1:06:00:: 03991646 2 0 -potentiometer%1:06:01:: 03991837 1 1 -potently%4:02:00:: 00427944 1 0 -poterium%1:20:00:: 12637319 1 0 -poterium_sanguisorba%1:20:00:: 12637485 1 0 -potful%1:23:00:: 13769033 1 0 -pothead%1:18:00:: 10460193 1 0 -pother%1:26:00:: 14403772 1 0 -pother%2:37:00:: 01819911 2 0 -pother%2:37:01:: 01820077 1 0 -potherb%1:13:00:: 07709172 1 0 -potholder%1:06:00:: 03992115 1 0 -pothole%1:17:00:: 09398076 1 2 -potholed%5:00:00:rough:00 02241714 1 0 -potholer%1:18:00:: 10460286 1 0 -pothook%1:06:00:: 03992208 1 0 -pothos%1:20:01:: 11792029 1 0 -pothos%1:20:02:: 11788727 2 0 -pothouse%1:06:00:: 04018399 1 0 -pothunter%1:18:00:: 10460720 1 0 -pothunter%1:18:01:: 10460599 2 0 -pothunter%1:18:02:: 10460501 3 0 -potion%1:13:00:: 07883251 1 0 -potlatch%1:11:00:: 07455301 1 0 -potluck%1:13:00:: 07574176 1 0 -potman%1:18:00:: 10460033 1 0 -potomac%1:15:00:: 09071246 2 0 -potomac%1:17:00:: 09398217 1 0 -potomac_river%1:17:00:: 09398217 1 0 -potomania%1:16:00:: 09181993 1 0 -potoroinae%1:05:00:: 01879983 1 0 -potoroo%1:05:00:: 01880473 1 0 -potorous%1:05:00:: 01880355 1 0 -potos%1:05:00:: 02509071 1 0 -potos_caudivolvulus%1:05:00:: 02509197 1 0 -potos_flavus%1:05:00:: 02509197 1 0 -potpie%1:13:00:: 07875152 1 0 -potpourri%1:06:00:: 03992325 3 0 -potpourri%1:10:00:: 07047505 2 0 -potpourri%1:14:00:: 08398773 1 1 -potsdam%1:15:00:: 08774546 1 0 -potsdam_conference%1:14:00:: 08328088 1 0 -potsherd%1:06:00:: 03992436 1 0 -potshot%1:04:00:: 00124766 1 1 -potshot%1:10:00:: 06711539 2 0 -pott's_disease%1:26:00:: 14140391 1 0 -pottage%1:13:00:: 07587111 1 0 -pottage%1:13:01:: 07587023 2 0 -potted%3:00:00:: 01834121 1 0 -potted%5:00:00:abridged:00 00004817 3 0 -potted%5:00:00:preserved:02 01073194 2 0 -potter%1:18:00:: 10460806 1 7 -potter%2:35:00:: 01473176 3 0 -potter%2:35:01:: 01473346 1 1 -potter%2:41:00:: 02415394 2 0 -potter's_clay%1:27:00:: 14814125 1 0 -potter's_earth%1:27:00:: 14814125 1 0 -potter's_field%1:15:00:: 08626845 1 0 -potter's_wheel%1:06:00:: 03992509 1 0 -potter_around%2:35:00:: 01473176 1 0 -potter_bee%1:05:00:: 02211896 1 0 -potter_wasp%1:05:00:: 02214499 1 0 -potterer%1:18:00:: 10496193 1 0 -pottery%1:04:00:: 00609868 2 1 -pottery%1:06:00:: 03992703 1 10 -pottery%1:06:01:: 03992888 3 0 -pottle%1:06:00:: 03992975 1 0 -potto%1:05:01:: 02499316 2 0 -potto%1:05:02:: 02509197 1 0 -potty%1:06:00:: 03004275 2 0 -potty%1:06:01:: 04446521 1 0 -potty%5:00:00:intoxicated:00 00798384 3 0 -potty%5:00:00:loving:00 01465668 1 0 -potty%5:00:00:unimportant:00 01281874 2 0 -potty-trained%5:00:00:trained:00 01912483 1 0 -potty_chair%1:06:00:: 03993053 1 0 -potty_seat%1:06:00:: 03993053 1 0 -potyokin%1:18:00:: 11244061 1 0 -pouch%1:06:00:: 03993180 1 1 -pouch%1:08:00:: 05516848 3 0 -pouch%1:25:00:: 13914473 2 0 -pouch%2:30:00:: 00263231 3 0 -pouch%2:35:00:: 01486050 1 0 -pouch%2:35:01:: 01438183 2 0 -pouch-shaped%5:00:00:concave:00 00536304 1 0 -pouched%3:01:00:: 02763240 1 0 -pouched_mammal%1:05:00:: 01874434 1 0 -pouched_mole%1:05:00:: 01886045 1 0 -pouched_mouse%1:05:00:: 01885158 1 0 -pouched_rat%1:05:01:: 02353861 1 0 -pouchlike%5:00:00:concave:00 00536304 1 0 -poudrin%1:19:00:: 11509377 1 0 -pouf%1:06:00:: 03858418 2 0 -pouf%1:18:00:: 10076033 1 0 -pouf_paste%1:13:00:: 07628181 1 0 -pouffe%1:06:00:: 03858418 1 0 -poulenc%1:18:00:: 11244419 1 0 -poulet%1:13:00:: 07644967 1 0 -poulette%1:13:00:: 07840304 1 0 -poulterer%1:18:00:: 10461060 1 0 -poultice%1:06:00:: 03993403 1 0 -poultice%2:29:00:: 00082929 1 0 -poultry%1:05:00:: 01789740 1 2 -poultry%1:13:00:: 07644706 2 0 -poultryman%1:18:00:: 10461060 1 0 -pounce%1:04:00:: 01258161 1 0 -pounce%2:38:00:: 02064358 1 2 -pound%1:04:00:: 01175316 14 0 -pound%1:06:00:: 03993703 13 0 -pound%1:10:00:: 06809756 12 0 -pound%1:18:00:: 11244550 11 0 -pound%1:23:00:: 13648184 10 0 -pound%1:23:01:: 13686660 2 2 -pound%1:23:02:: 13693641 9 0 -pound%1:23:03:: 13694017 8 0 -pound%1:23:04:: 13694657 7 0 -pound%1:23:05:: 13694936 6 0 -pound%1:23:07:: 13695420 5 0 -pound%1:23:08:: 13695674 4 0 -pound%1:23:09:: 13720096 1 42 -pound%1:23:10:: 13720302 3 0 -pound%2:30:03:: 00331514 8 0 -pound%2:35:00:: 01414626 1 5 -pound%2:35:01:: 01575146 2 3 -pound%2:35:04:: 01302183 7 0 -pound%2:35:05:: 01302365 6 0 -pound%2:35:06:: 01563996 5 0 -pound%2:38:00:: 01880113 4 1 -pound%2:38:01:: 01925548 3 1 -pound-foolish%5:00:00:wasteful:00 02422499 1 0 -pound_cake%1:13:00:: 07633229 1 0 -pound_net%1:06:00:: 03993878 1 0 -pound_off%2:35:00:: 01563996 1 0 -pound_sign%1:10:00:: 06809756 1 0 -pound_sterling%1:23:00:: 13686660 1 0 -pound_up%2:35:00:: 01302365 1 0 -poundage%1:04:00:: 00086297 4 0 -poundage%1:07:00:: 05028348 3 0 -poundage%1:21:00:: 13323207 2 0 -poundage%1:21:01:: 13324912 1 0 -poundal%1:23:00:: 13647997 1 0 -pounder%1:06:00:: 03919430 2 0 -pounder%1:23:00:: 13648378 1 0 -pounding%1:04:00:: 01175316 3 0 -pounding%1:11:00:: 07410526 1 1 -pounding%1:11:01:: 07401726 2 1 -pounds_per_square_inch%1:23:00:: 13711570 1 0 -pour%2:38:00:: 02028366 2 7 -pour%2:38:02:: 02069248 4 4 -pour%2:38:03:: 02069551 1 12 -pour%2:38:04:: 02070296 3 6 -pour%2:40:00:: 02355806 5 1 -pour%2:43:00:: 02758033 6 0 -pour_cold_water_on%2:37:00:: 01819772 1 0 -pour_down%2:34:00:: 01202374 1 0 -pour_forth%2:35:00:: 01541803 1 1 -pour_out%2:32:00:: 00941565 1 2 -pour_out%2:38:00:: 02070296 2 1 -pour_out%2:38:01:: 02070150 3 1 -pour_out%2:38:02:: 02069788 4 1 -pourboire%1:21:00:: 13298701 1 0 -pouring%5:00:00:running:02 01240805 1 0 -pousse-cafe%1:13:00:: 07910799 1 0 -poussin%1:18:00:: 11244765 1 0 -pout%1:05:01:: 02519340 3 0 -pout%1:05:02:: 02617207 2 0 -pout%1:10:00:: 06877742 1 0 -pout%2:29:00:: 00034758 2 0 -pout%2:42:00:: 02719016 1 0 -pouter%1:05:00:: 01812187 2 0 -pouter%1:18:00:: 10627899 1 0 -pouter_pigeon%1:05:00:: 01812187 1 0 -pouteria%1:20:00:: 12775530 1 0 -pouteria_campechiana_nervosa%1:20:00:: 12775717 1 0 -pouteria_zapota%1:20:00:: 12775919 1 0 -poutingly%4:02:00:: 00428173 1 0 -poverty%1:26:00:: 14493145 1 7 -poverty-stricken%5:00:00:poor:00 02023430 1 0 -poverty_grass%1:20:00:: 12376740 1 0 -poverty_level%1:21:00:: 13293246 1 0 -poverty_line%1:21:00:: 13293246 1 0 -poverty_trap%1:26:00:: 13926932 1 0 -pow%1:18:00:: 10476331 1 1 -pow_camp%1:06:00:: 04005912 1 0 -powder%1:06:01:: 03994008 3 1 -powder%1:27:00:: 14997012 1 15 -powder%1:27:01:: 15016314 2 6 -powder%2:29:00:: 00042173 2 0 -powder%2:30:00:: 00332154 1 0 -powder-post_termite%1:05:00:: 02225798 1 0 -powder-puff%5:00:00:feminine:01 01484814 1 1 -powder_and_shot%1:06:00:: 03994297 1 0 -powder_blue%1:07:00:: 04969431 1 0 -powder_blue%5:00:00:chromatic:00 00380178 1 0 -powder_compact%1:06:00:: 03078995 1 0 -powder_flask%1:06:00:: 03994614 1 0 -powder_horn%1:06:00:: 03994614 1 0 -powder_keg%1:06:00:: 03994757 2 0 -powder_keg%1:26:00:: 14543145 1 0 -powder_magazine%1:06:00:: 03704038 1 0 -powder_metallurgy%1:09:00:: 06125996 1 0 -powder_method%1:22:00:: 13539585 1 0 -powder_monkey%1:18:00:: 10461280 1 0 -powder_photography%1:22:00:: 13539585 1 0 -powder_room%1:06:00:: 03632963 1 0 -powder_store%1:06:00:: 03704038 1 0 -powder_technique%1:22:00:: 13539585 1 1 -powdered%5:00:00:fine:00 02233390 1 6 -powdered_ginger%1:13:00:: 07815163 1 0 -powdered_milk%1:13:00:: 07846143 1 0 -powdered_mustard%1:06:00:: 03994417 1 0 -powdered_sugar%1:13:00:: 07595914 1 0 -powderer%1:18:00:: 10461169 1 0 -powderiness%1:07:00:: 04948069 1 0 -powderise%2:30:00:: 00332154 2 0 -powderise%2:30:01:: 00332445 1 0 -powderize%2:30:00:: 00332154 2 0 -powderize%2:30:01:: 00332445 1 0 -powderpuff%1:06:00:: 03994874 1 0 -powdery%5:00:00:fine:00 02233390 1 1 -powdery%5:00:00:light:05 00409319 2 1 -powdery-blue%5:00:00:chromatic:00 00380178 1 0 -powdery_mildew%1:20:00:: 12963628 1 0 -powell%1:18:00:: 11244887 2 0 -powell%1:18:01:: 11245110 1 0 -power%1:07:00:: 05190804 1 62 -power%1:07:02:: 05030680 7 5 -power%1:09:01:: 05616246 3 13 -power%1:10:00:: 06812417 6 7 -power%1:14:00:: 08177592 8 1 -power%1:18:00:: 10461424 5 7 -power%1:18:01:: 09840217 9 0 -power%1:19:00:: 11453016 2 13 -power%1:26:00:: 13945102 4 7 -power%2:34:00:: 01181559 1 3 -power-assisted%5:00:00:assisted:00 02354001 1 0 -power-assisted_steering%1:06:00:: 03996849 1 0 -power-dive%2:38:00:: 01963655 1 0 -power-driven%5:00:00:powered:00 01829149 1 0 -power-station_worker%1:18:00:: 10462751 1 0 -power_brake%1:06:00:: 03995018 1 0 -power_breakfast%1:14:00:: 08385989 1 0 -power_broker%1:18:00:: 10462217 1 0 -power_cable%1:06:00:: 03995535 1 0 -power_company%1:14:00:: 08186393 1 1 -power_cord%1:06:00:: 03995265 1 0 -power_couple%1:14:00:: 07989083 1 0 -power_dive%1:04:00:: 00327134 1 0 -power_drill%1:06:00:: 03995372 1 0 -power_failure%1:11:00:: 07422036 1 0 -power_grid%1:06:00:: 03997027 1 0 -power_hammer%1:06:00:: 03481521 1 0 -power_hunger%1:07:00:: 04836583 1 0 -power_law%1:09:00:: 05996110 1 0 -power_line%1:06:00:: 03995535 1 0 -power_loading%1:24:00:: 13826614 1 0 -power_loom%1:06:00:: 03995661 1 0 -power_meter%1:06:00:: 03272810 1 0 -power_module%1:06:00:: 03995746 1 0 -power_mower%1:06:00:: 03995856 1 0 -power_of_appointment%1:07:00:: 05034048 1 0 -power_of_attorney%1:10:00:: 06530789 1 0 -power_outage%1:11:00:: 07422036 1 0 -power_pack%1:06:00:: 03996004 1 0 -power_plant%1:06:00:: 03996655 1 1 -power_play%1:04:00:: 00788097 1 0 -power_play%1:04:01:: 00560866 2 0 -power_play%1:04:02:: 00558396 3 0 -power_point%1:06:00:: 03974671 1 0 -power_politics%1:10:00:: 07148938 1 0 -power_pylon%1:06:00:: 04028581 1 0 -power_saw%1:06:00:: 03996145 1 1 -power_series%1:09:00:: 05862970 1 0 -power_service%1:14:00:: 08186393 1 0 -power_shovel%1:06:00:: 03996416 1 0 -power_station%1:06:00:: 03996655 1 0 -power_steering%1:06:00:: 03996849 1 0 -power_structure%1:14:00:: 08376051 1 0 -power_system%1:06:00:: 03997027 1 0 -power_takeoff%1:06:00:: 03997274 1 0 -power_tool%1:06:00:: 03997484 1 3 -power_train%1:06:00:: 03431745 1 0 -power_trip%1:04:00:: 00811036 1 0 -power_unit%1:23:00:: 13635108 1 0 -power_user%1:18:00:: 10462588 1 0 -power_walking%1:04:00:: 00629009 1 0 -power_worker%1:18:00:: 10462751 1 0 -powerboat%1:06:00:: 03790230 1 0 -powerbroker%1:18:00:: 10462217 1 0 -powered%3:00:00:: 01828391 1 0 -powerful%3:00:00:: 01825671 1 18 -powerful%4:02:00:: 00032299 1 0 -powerful%5:00:00:influential:00 01830599 3 2 -powerful%5:00:00:superhuman:00 01261363 5 0 -powerful%5:00:01:strong:00 02321809 4 1 -powerful%5:00:02:strong:00 02323072 2 2 -powerfully%4:02:00:: 00427944 2 0 -powerfully%4:02:01:: 00428245 1 2 -powerfulness%1:07:00:: 05190804 1 1 -powerhouse%1:06:00:: 03996655 3 0 -powerhouse%1:14:00:: 08081142 2 0 -powerhouse%1:18:00:: 10462429 1 0 -powerless%3:00:00:: 01827535 1 1 -powerlessly%4:02:00:: 00428493 1 0 -powerlessness%1:07:00:: 05204637 1 0 -powerwash%2:35:00:: 01535915 1 0 -powhatan%1:10:00:: 06911962 3 0 -powhatan%1:18:00:: 09666476 2 0 -powhatan%1:18:01:: 11245382 1 0 -powwow%1:10:00:: 07144416 1 1 -powwow%1:14:00:: 08322430 2 0 -powwow%2:32:00:: 00763136 1 0 -powys%1:18:00:: 11245590 3 0 -powys%1:18:01:: 11245744 2 0 -powys%1:18:02:: 11245902 1 0 -pox%1:26:00:: 14124232 2 0 -pox%1:26:01:: 14133985 1 0 -poxvirus%1:05:00:: 01333731 1 0 -poyang%1:17:00:: 09398533 1 0 -poyou%1:05:00:: 02455720 1 0 -pozsony%1:15:00:: 08759263 1 0 -ppk%1:14:00:: 08029908 1 0 -pplo%1:05:00:: 01374063 1 0 -ppp%1:04:00:: 00689729 1 0 -pr%1:10:00:: 07247925 3 0 -pr%1:15:00:: 08752974 2 0 -pr%1:27:00:: 14651212 1 0 -pr_man%1:18:00:: 10469611 1 0 -practicability%1:07:00:: 05152150 1 0 -practicable%5:00:00:possible:00 01822563 2 2 -practicable%5:00:00:practical:00 01835663 1 2 -practicableness%1:07:00:: 05152150 1 0 -practicably%4:02:00:: 00428572 1 0 -practical%3:00:00:: 01834304 1 21 -practical%5:00:00:applied:00 00863555 4 0 -practical%5:00:01:realistic:00 01940651 2 2 -practical%5:00:02:realistic:00 01941814 3 0 -practical_application%1:04:00:: 00949134 1 0 -practical_joke%1:04:00:: 00514128 1 0 -practical_joker%1:18:00:: 10463714 1 0 -practical_nurse%1:18:00:: 10258304 1 1 -practical_politics%1:09:00:: 06149038 1 0 -practicality%1:07:00:: 05151088 1 0 -practically%4:02:00:: 00053744 1 27 -practically%4:02:01:: 00053512 2 0 -practically%4:02:02:: 00022829 3 0 -practice%1:04:00:: 00410247 1 23 -practice%1:04:02:: 00894552 2 5 -practice%1:04:03:: 00631378 4 2 -practice%1:04:04:: 00411048 3 3 -practice%1:09:00:: 05667196 5 1 -practice%2:31:00:: 00606093 2 7 -practice%2:36:00:: 01723224 3 5 -practice%2:41:00:: 02568672 1 11 -practice%2:41:01:: 02561332 4 2 -practice%2:41:03:: 02375468 5 0 -practice_bundling%2:29:00:: 00015163 1 0 -practice_game%1:04:00:: 00456899 1 0 -practice_of_law%1:04:00:: 00611143 1 0 -practice_of_medicine%1:04:00:: 00612160 1 0 -practice_range%1:06:00:: 03997745 1 0 -practice_session%1:04:00:: 00894552 1 1 -practice_teacher%1:18:00:: 10666259 1 0 -practiced%5:00:00:experienced:00 00936427 2 0 -practiced%5:00:00:skilled:00 02226162 1 1 -practician%1:18:00:: 10462860 1 0 -practise%2:31:00:: 00606093 3 0 -practise%2:36:00:: 01723224 1 1 -practise%2:41:00:: 02568672 2 0 -practised%5:00:00:experienced:00 00936427 1 1 -practitioner%1:18:00:: 10462860 1 1 -praenomen%1:10:00:: 06337594 1 0 -praesidium%1:14:00:: 08327390 1 0 -praetor%1:18:00:: 10463028 1 0 -praetorial%3:01:00:: 03101818 1 0 -praetorian%1:18:00:: 10463259 1 0 -praetorian%3:01:00:: 03101818 1 0 -praetorian%5:00:00:corrupt:00 00622014 2 0 -praetorian_guard%1:14:00:: 08429346 2 0 -praetorian_guard%1:18:00:: 10463259 1 0 -praetorium%1:06:00:: 03997875 1 0 -praetorship%1:04:00:: 00596193 1 0 -prag%1:15:00:: 08757926 1 0 -pragmatic%1:10:00:: 06541578 1 0 -pragmatic%3:01:00:: 02783085 2 0 -pragmatic%5:00:00:practical:00 01835409 1 2 -pragmatic%5:00:00:realistic:00 01940651 3 0 -pragmatic_sanction%1:10:00:: 06541578 1 0 -pragmatical%3:01:00:: 02783085 1 0 -pragmatical%5:00:00:practical:00 01835409 2 0 -pragmatically%4:02:00:: 00428722 1 0 -pragmatics%1:09:00:: 06179492 1 0 -pragmatism%1:07:00:: 05151869 2 0 -pragmatism%1:09:00:: 05974798 1 0 -pragmatist%1:18:00:: 10463386 2 0 -pragmatist%1:18:01:: 10463582 1 0 -prague%1:15:00:: 08757926 1 0 -praha%1:15:00:: 08757926 1 0 -praia%1:15:00:: 08718094 1 0 -prairia_sabbatia%1:20:00:: 12298637 1 0 -prairial%1:28:00:: 15177244 1 0 -prairie%1:15:00:: 08619524 1 2 -prairie_anemone%1:20:00:: 11737752 1 0 -prairie_aster%1:20:00:: 11935469 1 0 -prairie_berry%1:20:00:: 12894930 1 0 -prairie_bird's-foot_trefoil%1:20:00:: 12545232 1 0 -prairie_chicken%1:05:00:: 01798484 1 0 -prairie_coneflower%1:20:01:: 12007196 2 0 -prairie_coneflower%1:20:02:: 12007406 1 0 -prairie_cordgrass%1:20:00:: 12139921 1 0 -prairie_crab%1:20:00:: 12635744 1 0 -prairie_dock%1:20:00:: 12001294 1 0 -prairie_dog%1:05:00:: 02359324 1 1 -prairie_fire%1:11:00:: 07303988 1 0 -prairie_fowl%1:05:00:: 01798484 1 0 -prairie_fox%1:05:00:: 02119634 1 0 -prairie_gentian%1:20:00:: 12291959 1 0 -prairie_golden_aster%1:20:00:: 11981475 1 0 -prairie_gourd%1:20:00:: 12162425 2 0 -prairie_gourd%1:20:02:: 12162758 1 0 -prairie_gourd_vine%1:20:00:: 12162425 1 0 -prairie_grass%1:20:00:: 12133462 1 0 -prairie_grouse%1:05:00:: 01798484 1 0 -prairie_lotus%1:20:00:: 12545232 1 0 -prairie_mallow%1:20:00:: 12187891 1 0 -prairie_marmot%1:05:00:: 02359324 1 0 -prairie_mimosa%1:20:00:: 12526178 1 0 -prairie_orchid%1:20:00:: 12067433 1 0 -prairie_rattler%1:05:00:: 01756089 1 0 -prairie_rattlesnake%1:05:00:: 01756089 1 1 -prairie_rocket%1:20:01:: 11883628 2 0 -prairie_rocket%1:20:02:: 11887310 1 0 -prairie_sage%1:20:00:: 11930788 1 0 -prairie_sagewort%1:20:00:: 11930571 1 0 -prairie_schooner%1:06:00:: 03122295 1 0 -prairie_smoke%1:20:00:: 12632335 1 0 -prairie_soil%1:27:00:: 14997274 1 0 -prairie_star%1:20:00:: 12800049 1 0 -prairie_state%1:15:00:: 09082540 1 0 -prairie_sunflower%1:20:00:: 11979527 1 0 -prairie_trefoil%1:20:00:: 12545232 1 0 -prairie_trillium%1:20:00:: 12468545 1 0 -prairie_vole%1:05:00:: 02341616 1 0 -prairie_wagon%1:06:00:: 03122295 1 0 -prairie_wake-robin%1:20:00:: 12468545 1 0 -prairie_white-fringed_orchid%1:20:00:: 12078451 1 0 -prairie_white-fringed_orchis%1:20:00:: 12067433 1 0 -prairie_willow%1:20:00:: 12728508 1 0 -prairie_wolf%1:05:00:: 02114855 1 0 -praise%1:10:00:: 06693198 1 5 -praise%1:10:01:: 06693502 2 0 -praise%2:32:00:: 00856824 1 14 -praiseful%5:00:00:complimentary:00 00906312 1 0 -praiseworthily%4:02:00:: 00218886 1 0 -praiseworthiness%1:07:00:: 04807342 1 0 -praiseworthy%5:00:00:worthy:00 02585545 1 0 -praising%5:00:00:complimentary:00 00906312 1 0 -praisworthiness%1:07:00:: 05139342 1 0 -prajapati%1:18:00:: 09527707 1 0 -prakrit%1:10:00:: 06973092 2 0 -prakrit%1:10:01:: 06973505 1 0 -prakritic%3:01:00:: 02761569 1 0 -praline%1:13:00:: 07608866 1 0 -pram%1:06:00:: 02766534 1 0 -prance%1:04:00:: 00290125 1 0 -prance%2:38:00:: 01916634 1 2 -prance%2:38:01:: 01958868 4 0 -prance%2:38:02:: 01959022 3 0 -prance%2:38:03:: 01959181 2 0 -prancer%1:05:00:: 02378870 1 0 -prandial%3:01:00:: 02783250 1 0 -prang%1:11:00:: 07302164 1 0 -prang%2:35:00:: 01562627 1 0 -prang_up%2:29:00:: 00053159 1 0 -prank%1:04:00:: 00427580 2 0 -prank%1:04:01:: 00513401 1 1 -prank%2:29:00:: 00043912 2 0 -prank%2:36:00:: 01677858 1 0 -prankish%5:00:00:playful:00 02122715 1 0 -prankishness%1:07:00:: 04909721 1 0 -prankster%1:18:00:: 10463714 1 0 -praseodymium%1:27:00:: 14651212 1 0 -prat%1:08:00:: 05559256 1 0 -prate%1:10:00:: 07137129 1 0 -prate%2:32:00:: 01036804 1 0 -prater%1:18:00:: 09911570 1 0 -pratfall%1:04:00:: 00074790 2 0 -pratfall%1:04:01:: 00077169 1 0 -pratincole%1:05:00:: 02038993 1 0 -prattle%1:10:00:: 07137129 1 0 -prattle%2:32:00:: 01036804 1 1 -prattler%1:18:00:: 10463943 1 0 -praunus%1:05:00:: 01989390 1 0 -pravachol%1:06:00:: 03997980 1 0 -pravastatin%1:06:00:: 03997980 1 0 -prawn%1:05:00:: 01987545 2 0 -prawn%1:13:00:: 07794159 1 0 -prawn%2:35:00:: 01382606 1 0 -praxis%1:04:00:: 00411048 1 0 -praxiteles%1:18:00:: 09527825 1 0 -pray%2:32:00:: 00759944 1 21 -pray%2:32:01:: 00759269 2 2 -praya%1:05:00:: 01913346 1 0 -prayer%1:04:00:: 01041968 1 5 -prayer%1:10:00:: 07186828 3 2 -prayer%1:10:01:: 06455990 4 1 -prayer%1:10:02:: 07189130 2 4 -prayer%1:18:00:: 10464052 5 0 -prayer_beads%1:06:00:: 04109335 1 0 -prayer_book%1:10:00:: 06416946 1 0 -prayer_mat%1:06:00:: 03998194 1 0 -prayer_meeting%1:04:00:: 01032892 1 1 -prayer_of_azariah_and_song_of_the_three_children%1:10:00:: 06458836 1 0 -prayer_rug%1:06:00:: 03998194 1 0 -prayer_service%1:04:00:: 01032892 1 0 -prayer_shawl%1:06:00:: 03998333 1 0 -prayer_wheel%1:10:00:: 06418375 1 0 -prayerbook%1:10:00:: 06416946 1 0 -prayerful%5:00:00:pious:00 01782426 1 0 -praying_mantid%1:05:00:: 02236241 1 0 -praying_mantis%1:05:00:: 02236241 1 0 -prazosin%1:06:00:: 03998525 1 0 -prc%1:15:00:: 08723006 1 0 -pre-christian%3:01:00:: 02761944 1 0 -pre-columbian%3:01:00:: 03030096 1 0 -pre-eclampsia%1:26:00:: 14191442 1 0 -pre-eminently%4:02:00:: 00428875 1 0 -pre-empt%1:10:00:: 06738008 1 0 -pre-emption%1:04:00:: 00085041 4 0 -pre-emption%1:07:00:: 05178394 3 0 -pre-emption%1:07:01:: 05178571 2 0 -pre-emption%1:09:00:: 05957238 1 0 -pre-emptive%5:00:00:preventive:00 01765237 1 0 -pre-emptive_strike%1:04:00:: 01247156 1 0 -pre-emptor%1:18:00:: 10464870 2 0 -pre-emptor%1:18:01:: 10465002 1 0 -pre-existent%5:00:00:antecedent:00 00122386 1 0 -pre-existing%5:00:00:antecedent:00 00122386 1 0 -pre-jurassic%3:01:00:: 02753600 1 0 -pre-raphaelite%1:18:00:: 10465248 1 0 -pre-raphaelite%3:01:00:: 03102110 1 0 -pre-socratic%1:18:00:: 10469511 1 0 -pre-socratic%3:01:00:: 02762404 1 0 -preach%2:32:00:: 00827730 2 4 -preach%2:32:02:: 00828003 1 9 -preacher%1:18:00:: 10464178 1 8 -preacher_man%1:18:00:: 10464178 1 0 -preachification%1:10:00:: 06743230 1 0 -preachify%2:32:00:: 00828374 1 0 -preaching%1:10:00:: 07243837 1 10 -preaching%1:10:01:: 06712325 2 1 -preachment%1:10:00:: 07244949 1 0 -preachy%5:00:00:instructive:00 01325273 1 0 -preadolescent%5:00:00:young:00 01649271 1 0 -preakness%1:11:00:: 07462269 1 0 -preamble%1:10:00:: 06398090 1 1 -preamble%2:32:00:: 00902144 1 0 -preanal%3:01:00:: 02783329 1 0 -prearrange%2:36:00:: 01648790 1 1 -prearrangement%1:09:00:: 05795334 1 0 -preassemble%2:36:00:: 01739263 1 0 -prebend%1:21:00:: 13294403 1 0 -prebendary%1:18:00:: 10464432 1 0 -precambrian%1:28:00:: 15128711 1 0 -precambrian_aeon%1:28:00:: 15128711 1 0 -precambrian_eon%1:28:00:: 15128711 1 0 -precambrian_period%1:28:00:: 15128711 1 0 -precancerous%3:01:00:: 02783646 1 0 -precarious%5:00:00:dangerous:00 02060496 2 1 -precarious%5:00:00:insecure:02 02095037 3 0 -precarious%5:00:00:uneasy:00 00823192 1 4 -precariously%4:02:00:: 00429097 1 0 -precariousness%1:07:00:: 04856621 1 0 -precariousness%1:07:01:: 04756887 2 0 -precast%5:00:00:formed:00 02149245 1 1 -precative%5:00:00:beseeching:00 00714763 1 0 -precatory%5:00:00:beseeching:00 00714763 1 0 -precaution%1:04:00:: 00822970 1 5 -precaution%1:07:00:: 04664314 2 2 -precaution%1:09:00:: 05615869 3 1 -precautional%5:00:00:preventive:00 01764895 1 0 -precautionary%5:00:00:preventive:00 01764895 1 0 -precava%1:08:00:: 05423095 1 0 -precede%2:32:03:: 00901799 5 0 -precede%2:38:00:: 01999218 4 1 -precede%2:41:00:: 02407766 3 3 -precede%2:42:00:: 02712443 1 9 -precede%2:42:01:: 02692686 2 6 -precedence%1:04:00:: 01257145 3 0 -precedence%1:07:00:: 05047279 2 0 -precedence%1:26:00:: 13949802 1 2 -precedency%1:04:00:: 01257145 3 0 -precedency%1:07:00:: 05047279 2 0 -precedency%1:26:00:: 13949802 1 0 -precedent%1:09:00:: 05821486 1 3 -precedent%1:10:00:: 06535035 2 1 -precedent%1:10:02:: 06600282 4 0 -precedent%1:14:00:: 08453722 3 0 -precedent%5:00:00:preceding:00 00126497 1 0 -precedented%3:00:00:: 00128467 1 0 -precedentedly%4:02:00:: 00488888 1 0 -precedential%5:00:00:senior:00 02100376 1 0 -preceding%3:00:00:: 00125711 1 7 -preceding%5:00:00:outgoing:00 01296091 2 0 -precentor%1:18:00:: 09919771 1 0 -precentorship%1:04:00:: 00596290 1 0 -precentral_gyrus%1:08:00:: 05492806 1 0 -precept%1:09:01:: 06185955 2 0 -precept%1:10:00:: 06655388 1 0 -preceptor%1:18:00:: 10464542 1 0 -preceptorship%1:04:00:: 00596393 1 0 -precess%2:38:00:: 02101470 1 0 -precession%1:04:00:: 01257145 2 0 -precession%1:26:00:: 14005728 1 0 -precession_of_the_equinoxes%1:22:00:: 13539894 1 0 -prechlorination%1:22:00:: 13540091 1 1 -precinct%1:15:00:: 08538426 1 1 -preciosity%1:07:00:: 04788332 1 0 -precious%4:02:00:: 00429274 1 0 -precious%5:00:00:artful:00 00148642 4 0 -precious%5:00:00:loved:00 01462625 1 7 -precious%5:00:00:valuable:00 02501534 2 3 -precious%5:00:00:worthy:00 02587556 3 0 -precious_coral%1:27:00:: 14823036 1 0 -precious_metal%1:21:00:: 13371489 1 0 -precious_stone%1:06:00:: 03596787 1 0 -preciously%4:02:00:: 00429274 1 0 -preciousness%1:07:00:: 05141222 2 0 -preciousness%1:07:01:: 04788332 3 0 -preciousness%1:07:02:: 05146272 1 0 -precipice%1:17:00:: 09398677 1 1 -precipitance%1:07:00:: 05060476 1 0 -precipitancy%1:07:00:: 05060476 1 0 -precipitant%1:27:00:: 14997393 1 0 -precipitant%5:00:00:hurried:00 01270868 1 0 -precipitate%1:27:00:: 14591635 1 1 -precipitate%2:30:00:: 00474994 2 4 -precipitate%2:35:00:: 01507596 5 0 -precipitate%2:36:00:: 01644339 1 4 -precipitate%2:38:01:: 01971750 4 0 -precipitate%2:43:00:: 02756821 3 0 -precipitate%5:00:00:hurried:00 01270868 1 0 -precipitately%4:02:00:: 00354938 1 0 -precipitateness%1:07:00:: 05060476 1 0 -precipitating%5:00:00:causative:00 00324680 1 0 -precipitation%1:07:00:: 05061149 5 0 -precipitation%1:07:01:: 05060189 6 0 -precipitation%1:11:00:: 07434320 4 0 -precipitation%1:19:00:: 11494638 3 0 -precipitation%1:22:00:: 13540199 2 0 -precipitation%1:23:00:: 13772653 1 0 -precipitator%1:06:00:: 03998673 1 0 -precipitin%1:27:00:: 15027762 1 1 -precipitous%5:00:00:hurried:00 01270868 1 0 -precipitous%5:00:00:steep:00 01145151 2 0 -precipitously%4:02:00:: 00429390 2 0 -precipitously%4:02:01:: 00429534 1 0 -precipitousness%1:07:00:: 05069624 1 0 -precipitousness%1:07:01:: 05060476 2 0 -precis%1:10:00:: 06468951 1 0 -precis%2:32:00:: 01008437 1 0 -precise%3:00:00:: 01837744 1 16 -precise%5:00:00:correct:00 00631798 2 1 -precisely%4:02:00:: 00158309 1 20 -precisely%4:02:01:: 00368287 2 4 -precisely%4:02:02:: 00368663 3 3 -preciseness%1:07:00:: 04803880 2 0 -preciseness%1:07:01:: 04821451 1 0 -precision%1:07:00:: 04803880 1 9 -precision_cookie%1:10:00:: 06387864 1 0 -precision_rifle%1:06:00:: 04250224 1 0 -preclinical%3:01:00:: 02783412 1 0 -preclinical_phase%1:04:00:: 00794123 1 0 -preclinical_test%1:04:00:: 00794123 1 0 -preclinical_trial%1:04:00:: 00794123 1 0 -preclude%2:41:00:: 02452885 1 2 -preclude%2:42:00:: 02629390 2 0 -preclusion%1:04:00:: 01079042 1 0 -preclusive%5:00:00:preventive:00 01765132 1 0 -precocial%3:00:00:: 00101452 1 0 -precocious%3:00:00:: 01839829 1 1 -precocious%5:00:00:early:02 00819051 2 0 -precocious_dentition%1:22:00:: 13540322 1 0 -precociously%4:02:00:: 00429700 1 0 -precociousness%1:09:00:: 05620294 1 0 -precocity%1:09:00:: 05620294 1 0 -precognition%1:10:00:: 07256932 1 0 -precognitive%5:00:00:prophetic:00 01882474 1 0 -preconceive%2:36:00:: 01634011 1 0 -preconceived%3:44:00:: 03152577 1 1 -preconceived_idea%1:09:00:: 05949937 1 0 -preconceived_notion%1:09:00:: 05949937 1 1 -preconceived_opinion%1:09:00:: 05949937 1 0 -preconception%1:09:00:: 05949937 1 1 -preconception%1:09:01:: 06201908 2 0 -preconcerted%5:00:00:settled:02 02130391 1 0 -precondition%1:09:00:: 05892880 3 0 -precondition%1:09:01:: 05893356 2 0 -precondition%1:10:00:: 06755568 1 0 -precondition%2:30:00:: 00407328 1 2 -preconditioned%5:00:00:prepared:00 01844241 1 0 -precook%2:36:00:: 01665836 1 0 -precooked%5:00:00:prepared:00 01844441 1 1 -precooled%5:00:00:cool:01 02530620 1 1 -precordial%3:01:00:: 02783795 1 0 -precordium%1:08:00:: 05493002 1 0 -precursor%1:10:00:: 06802571 3 0 -precursor%1:18:00:: 09627117 2 0 -precursor%1:27:00:: 14583066 1 0 -precursory%5:00:00:prophetic:00 01883226 1 0 -predaceous%5:00:00:acquisitive:00 00030798 2 0 -predaceous%5:00:00:carnivorous:00 00313911 1 0 -predacious%5:00:00:acquisitive:00 00030798 2 0 -predacious%5:00:00:carnivorous:00 00313911 1 0 -predate%2:30:00:: 00277086 4 0 -predate%2:34:00:: 01203500 3 0 -predate%2:42:00:: 02712443 1 0 -predate%2:42:01:: 02692686 2 0 -predation%1:04:00:: 00711897 2 0 -predation%1:04:01:: 00967310 1 0 -predator%1:05:00:: 02152740 2 0 -predator%1:18:00:: 10293172 1 0 -predatory%5:00:00:acquisitive:00 00030798 3 0 -predatory%5:00:00:aggressive:00 00084022 2 0 -predatory%5:00:00:offensive:03 01629832 1 0 -predatory_animal%1:05:00:: 02152740 1 0 -predecease%2:30:00:: 00360805 1 0 -predecessor%1:10:00:: 06802571 2 0 -predecessor%1:18:00:: 10464711 1 4 -predestinarian%1:18:00:: 10080508 1 0 -predestinarian%3:01:00:: 02783917 1 0 -predestinarianism%1:09:00:: 05946582 1 0 -predestinate%2:31:00:: 00703310 1 0 -predestinate%5:00:00:certain:03 00341017 1 0 -predestination%1:09:00:: 05966129 2 0 -predestination%1:11:00:: 07330666 1 0 -predestinationist%1:18:00:: 10080508 1 0 -predestine%2:31:00:: 00702969 3 0 -predestine%2:31:01:: 00703310 2 0 -predestine%2:32:00:: 00746242 1 0 -predestined%5:00:00:certain:03 00341017 1 0 -predetermination%1:04:00:: 00155970 3 0 -predetermination%1:09:00:: 05838530 2 0 -predetermination%1:09:01:: 05966129 1 0 -predetermine%2:31:00:: 00702773 1 0 -predetermine%2:31:01:: 00680346 2 0 -predetermined%5:00:00:planned:00 01797633 1 1 -predicament%1:26:00:: 14408646 1 1 -predicate%1:10:00:: 06316626 2 0 -predicate%1:10:01:: 06316813 1 0 -predicate%2:32:00:: 01017001 2 0 -predicate%2:32:01:: 00931232 3 0 -predicate%2:32:02:: 01017222 1 0 -predicate_calculus%1:09:00:: 06165364 1 0 -predication%1:10:00:: 06733227 1 0 -predicative%3:00:00:: 00172993 1 0 -predicatively%4:02:00:: 00125108 1 0 -predicator%1:10:00:: 06316376 1 2 -predict%2:32:00:: 00917772 1 28 -predict%2:32:01:: 00871942 2 2 -predictability%1:07:00:: 04756025 1 0 -predictable%3:00:00:: 01841544 1 5 -predictably%4:02:00:: 00429815 1 0 -prediction%1:09:00:: 05775081 1 2 -prediction%1:10:00:: 06748969 2 0 -predictive%5:00:00:prophetic:00 01883325 1 2 -predictor%1:06:00:: 03998867 3 0 -predictor%1:09:00:: 05824313 2 0 -predictor%1:18:00:: 10102506 1 0 -predictor_variable%1:09:00:: 05863736 1 0 -predigest%2:34:00:: 01197870 1 0 -predigested%5:00:00:digestible:00 01182554 1 1 -predilection%1:09:00:: 06200344 1 1 -predilection%1:12:00:: 07498210 2 0 -predispose%2:31:00:: 00680692 1 0 -predisposed%5:00:00:susceptible:00 02362348 1 1 -predisposition%1:07:00:: 04943464 3 0 -predisposition%1:09:00:: 06200178 2 0 -predisposition%1:26:00:: 14531772 1 0 -prednisolone%1:27:00:: 14753188 1 0 -prednisone%1:27:00:: 14753414 1 3 -predominance%1:07:00:: 04707409 2 0 -predominance%1:26:00:: 14442749 1 1 -predominant%5:00:00:dominant:01 00792202 2 0 -predominant%5:00:00:frequent:00 01066787 1 0 -predominantly%4:02:00:: 00161018 1 2 -predominate%2:42:00:: 02644234 1 2 -predominate%2:42:01:: 02696503 2 0 -predominate%5:00:00:dominant:01 00792202 1 0 -predomination%1:07:00:: 04707409 2 0 -predomination%1:26:00:: 14442749 1 1 -preeclampsia%1:26:00:: 14191442 1 0 -preemie%1:18:00:: 10465451 1 0 -preeminence%1:26:00:: 14435445 1 0 -preeminent%5:00:00:superior:01 02339341 1 1 -preeminently%4:02:00:: 00428875 1 0 -preemployment_training_program%1:09:00:: 05910328 1 1 -preempt%1:10:00:: 06738008 1 0 -preempt%2:40:00:: 02302454 1 1 -preempt%2:40:01:: 02301321 4 0 -preempt%2:40:02:: 02302652 3 0 -preempt%2:41:00:: 02406011 2 0 -preemption%1:04:00:: 00085041 4 0 -preemption%1:07:00:: 05178394 3 0 -preemption%1:07:01:: 05178571 2 0 -preemption%1:09:00:: 05957238 1 0 -preemptive%5:00:00:preventive:00 01765237 1 0 -preemptive_bid%1:10:00:: 06738008 1 0 -preemptive_right%1:21:00:: 13241182 1 0 -preemptor%1:18:00:: 10464870 2 0 -preemptor%1:18:01:: 10465002 1 0 -preen%2:29:00:: 00043683 3 0 -preen%2:32:00:: 00883847 2 0 -preen%2:35:00:: 01392080 1 0 -preen_gland%1:05:00:: 02468017 1 0 -preexist%2:42:00:: 02604100 1 0 -preexistence%1:26:00:: 13957117 1 1 -preexistent%5:00:00:antecedent:00 00122386 1 1 -preexisting%5:00:00:antecedent:00 00122386 1 0 -prefab%1:06:00:: 03999064 1 0 -prefab%5:00:00:ready-made:00 00673172 1 0 -prefabricate%2:36:00:: 01739263 1 0 -prefabricate%2:36:01:: 01622445 2 0 -prefabrication%1:04:00:: 00926468 1 0 -preface%1:10:00:: 06397903 1 1 -preface%2:32:00:: 00901799 1 1 -prefaded%5:00:00:colorless:02 00406348 1 0 -prefatorial%5:00:00:preceding:00 00126339 1 0 -prefatory%5:00:00:preceding:00 00126339 1 0 -prefect%1:18:00:: 10465128 1 0 -prefectural%3:01:00:: 03102723 1 0 -prefecture%1:04:00:: 00596496 2 0 -prefecture%1:15:00:: 08626947 1 0 -prefer%2:31:00:: 00679389 2 16 -prefer%2:37:00:: 01826498 1 22 -prefer%2:41:00:: 02400037 3 1 -prefer%2:41:01:: 02400251 4 0 -preferable%5:00:00:desirable:00 00733743 1 1 -preferably%4:02:00:: 00115554 1 4 -preference%1:07:00:: 05158095 4 0 -preference%1:09:00:: 05791452 3 0 -preference%1:09:01:: 06200344 2 2 -preference%1:12:00:: 07498210 1 2 -preference_shares%1:21:00:: 13335974 1 0 -preferent%5:00:00:loved:00 01462882 1 0 -preferential%5:00:00:advantageous:00 00065184 1 1 -preferentially%4:02:00:: 00184412 1 2 -preferment%1:04:00:: 00198631 1 1 -preferment%1:10:00:: 07237647 2 0 -preferred%5:00:00:desirable:00 00733743 1 1 -preferred%5:00:00:loved:00 01462882 2 0 -preferred_shares%1:21:00:: 13335974 1 0 -preferred_stock%1:21:00:: 13335974 1 0 -prefiguration%1:09:00:: 05776015 2 0 -prefiguration%1:09:01:: 05939109 1 0 -prefigurative%5:00:00:prophetic:00 01882162 1 0 -prefigure%2:32:00:: 00871942 2 0 -prefigure%2:36:01:: 01636993 1 0 -prefix%1:10:00:: 06308304 1 1 -prefix%2:35:00:: 01297961 1 0 -prefix_notation%1:10:00:: 06814443 1 0 -prefixation%1:04:00:: 00927845 1 0 -preform%2:36:00:: 01660082 2 0 -preform%2:36:01:: 01660252 1 0 -preformation%1:09:00:: 05992949 1 0 -prefrontal%5:00:00:anterior:00 00131297 1 0 -prefrontal_cortex%1:08:00:: 05493992 1 0 -prefrontal_leucotomy%1:04:00:: 00684128 1 0 -prefrontal_leukotomy%1:04:00:: 00684128 1 0 -prefrontal_lobe%1:08:00:: 05493992 1 0 -prefrontal_lobotomy%1:04:00:: 00684128 1 0 -pregnancy%1:26:00:: 14046202 1 0 -pregnancy_test%1:09:00:: 05743870 1 0 -pregnanediol%1:27:00:: 15111437 1 0 -pregnant%3:00:00:: 00173220 1 3 -pregnant%5:00:00:full:00 01084900 3 0 -pregnant%5:00:00:meaningful:00 01497387 2 1 -pregnant_chad%1:27:00:: 14835817 1 0 -preheat%2:30:00:: 00372400 1 0 -prehend%2:35:00:: 01212572 1 0 -prehensile%3:00:00:: 00128882 1 0 -prehensile%5:00:00:acquisitive:00 00029933 3 0 -prehensile%5:00:00:intelligent:00 01336084 2 0 -prehension%1:04:00:: 00812274 1 0 -prehensor%1:05:00:: 01784925 1 0 -prehistoric%3:01:00:: 02946359 2 0 -prehistoric%5:00:00:past:00 01730909 1 1 -prehistoric%5:00:00:unfashionable:00 00975011 3 0 -prehistoric_culture%1:28:00:: 15254550 1 0 -prehistorical%5:00:00:past:00 01730909 1 0 -prehistory%1:28:00:: 15254550 1 0 -preindication%1:11:00:: 07286014 1 0 -preinvasive_cancer%1:26:00:: 14247035 1 0 -preisolate%2:30:00:: 00496956 1 1 -prejudge%2:31:00:: 00681281 1 0 -prejudgement%1:09:00:: 05789666 1 0 -prejudgment%1:09:00:: 05789666 1 0 -prejudice%1:09:01:: 06201908 1 3 -prejudice%2:31:00:: 00680145 2 0 -prejudice%2:41:00:: 02513742 1 0 -prejudiced%3:00:00:: 00285148 2 0 -prejudiced%5:00:00:subjective:00 01616244 1 1 -prejudicial%3:01:00:: 02762081 2 0 -prejudicial%5:00:00:harmful:00 01161984 1 1 -prejudicious%3:01:00:: 02762081 1 0 -prejudicious%5:00:00:harmful:00 01161984 2 0 -prelacy%1:04:00:: 00596592 2 0 -prelacy%1:14:00:: 08113710 1 0 -prelapsarian%3:01:00:: 02784068 1 0 -prelate%1:18:00:: 09807075 1 0 -prelature%1:04:00:: 00596592 2 0 -prelature%1:14:00:: 08113710 1 0 -prelim%1:10:00:: 07199013 2 0 -prelim%1:11:00:: 07457599 1 0 -preliminary%1:11:00:: 07457599 1 0 -preliminary%1:11:02:: 07327013 2 0 -preliminary%5:00:00:exploratory:00 00878086 1 11 -preliminary_exam%1:10:00:: 07199013 1 0 -preliminary_examination%1:10:00:: 07199013 1 0 -preliminary_prospectus%1:10:00:: 07165778 1 0 -prelims%1:10:00:: 06390688 1 0 -preliterate%5:00:00:illiterate:00 01422243 1 1 -preliterate%5:00:00:noncivilized:00 00413312 2 1 -prelone%1:27:00:: 14753188 1 0 -prelude%1:10:00:: 07040543 2 0 -prelude%1:11:00:: 07327013 1 1 -prelude%2:36:00:: 01725615 2 0 -prelude%2:42:00:: 02671498 1 0 -premarital%3:01:00:: 03043173 1 0 -premature%3:00:00:: 01495535 1 0 -premature%5:00:00:early:00 00815000 3 0 -premature%5:00:02:early:00 00815227 2 0 -premature_baby%1:18:00:: 10465451 1 0 -premature_ejaculation%1:22:00:: 13540429 1 0 -premature_infant%1:18:00:: 10465451 1 0 -premature_labor%1:26:00:: 14048309 1 0 -premature_labour%1:26:00:: 14048309 1 0 -premature_ventricular_contraction%1:26:00:: 14362841 1 0 -prematurely%4:02:00:: 00429964 2 0 -prematurely%4:02:01:: 00430105 1 0 -prematureness%1:26:00:: 14426736 1 0 -prematurity%1:26:00:: 14426736 1 0 -premedical%3:01:00:: 02760500 1 0 -premedical%5:00:00:preceding:00 00126702 2 0 -premeditate%2:31:00:: 00704073 1 0 -premeditate%2:31:01:: 00631244 2 0 -premeditated%3:00:00:: 01842763 1 0 -premeditation%1:09:00:: 05796617 1 0 -premeditation%1:09:01:: 05796222 2 0 -premenopausal%3:01:00:: 02762326 1 0 -premenstrual%3:01:00:: 02784185 1 0 -premenstrual_syndrome%1:26:00:: 14308311 1 0 -premie%1:18:00:: 10465451 1 0 -premier%1:18:00:: 09907196 1 0 -premier%1:18:01:: 09906986 2 0 -premier%2:36:00:: 01718185 2 0 -premier%2:36:01:: 01718331 1 0 -premier%5:00:01:first:00 01012855 2 0 -premier%5:00:02:first:00 01012990 1 0 -premiere%1:10:00:: 06893285 1 1 -premiere%2:36:00:: 01718185 2 0 -premiere%2:36:01:: 01718331 1 0 -premiere%5:00:00:first:00 01012855 1 0 -premiership%1:04:00:: 00596692 1 0 -premise%1:10:00:: 06753800 1 1 -premise%2:31:00:: 00717208 3 0 -premise%2:32:00:: 01001467 1 0 -premise%2:32:01:: 00901799 2 0 -premises%1:15:00:: 08627161 1 1 -premiss%1:10:00:: 06753800 1 0 -premiss%2:31:00:: 00717208 1 0 -premium%1:21:00:: 13413986 2 0 -premium%1:21:01:: 13272059 5 0 -premium%1:21:02:: 13301620 1 1 -premium%1:21:03:: 13324297 3 0 -premium%1:21:04:: 13272283 4 0 -premium%5:00:00:superior:02 02343931 1 1 -premium_bond%1:21:00:: 13418047 1 0 -premix%1:13:00:: 07882886 1 3 -premolar%1:08:00:: 05307358 1 0 -premonition%1:10:00:: 07225450 2 0 -premonition%1:12:00:: 07522128 1 2 -premonitory%5:00:00:prophetic:00 01883226 1 1 -prenanthes%1:20:00:: 12004686 1 0 -prenanthes_alba%1:20:00:: 11997160 1 0 -prenanthes_purpurea%1:20:00:: 12004987 1 0 -prenanthes_serpentaria%1:20:00:: 11997409 1 0 -prenatal%3:00:00:: 00129103 1 0 -prenatal_diagnosis%1:04:00:: 00153288 1 0 -prenominal%3:00:00:: 00172562 1 0 -prentice%1:18:00:: 09801864 1 0 -prenuptial%3:01:00:: 03043173 1 0 -preoccupancy%1:04:00:: 00087073 2 0 -preoccupancy%1:09:00:: 05700087 1 0 -preoccupation%1:04:00:: 00087073 3 0 -preoccupation%1:09:00:: 05700087 2 1 -preoccupation%1:09:02:: 05836921 1 1 -preoccupied%5:00:00:concerned:00 00544478 2 1 -preoccupied%5:00:00:thoughtful:00 02419159 1 1 -preoccupy%2:37:00:: 01783394 1 1 -preoccupy%2:40:00:: 02273083 2 0 -preoperative%5:00:00:surgical:00 01169533 1 0 -preordain%2:31:00:: 00702969 1 0 -preordination%1:09:00:: 05966129 1 0 -prep%1:04:00:: 00729108 1 0 -prep_school%1:14:00:: 08409969 1 2 -prepackaged%5:00:00:packaged:00 01739315 1 1 -prepacked%5:00:00:packaged:00 01739315 1 0 -prepaid%5:00:00:paid:00 01709437 1 0 -preparation%1:04:00:: 00893955 6 0 -preparation%1:04:01:: 00729108 7 0 -preparation%1:04:02:: 01143040 1 14 -preparation%1:04:03:: 00243918 8 0 -preparation%1:09:00:: 05794694 3 2 -preparation%1:10:00:: 07027942 5 0 -preparation%1:26:00:: 14031108 4 0 -preparation%1:27:00:: 14873641 2 5 -preparation_fire%1:04:00:: 00992102 1 0 -preparative%5:00:00:preceding:00 00126830 1 1 -preparatory%5:00:00:preceding:00 00126830 1 1 -preparatory_school%1:14:00:: 08409969 1 2 -prepare%2:30:00:: 00406243 1 45 -prepare%2:31:00:: 00602805 8 0 -prepare%2:31:01:: 00603298 6 2 -prepare%2:36:00:: 01651444 4 8 -prepare%2:36:01:: 01664172 2 15 -prepare%2:36:02:: 01754271 3 8 -prepare%2:39:00:: 02179915 7 0 -prepare%2:41:00:: 02387034 5 5 -prepare_for%2:30:00:: 00273257 1 7 -prepared%3:00:00:: 01843380 1 14 -prepared%5:00:00:equipped:00 01095085 3 0 -prepared%5:00:00:willing:00 02565425 2 1 -preparedness%1:26:00:: 14031108 1 0 -prepay%2:40:00:: 02250340 1 0 -prepayment%1:04:00:: 01121492 1 0 -preponderance%1:07:00:: 05122099 2 0 -preponderance%1:07:01:: 05028159 3 0 -preponderance%1:07:02:: 05191486 1 0 -preponderant%5:00:00:dominant:01 00792202 1 0 -preponderantly%4:02:00:: 00161018 1 0 -preponderate%2:42:00:: 02645597 1 0 -preponderating%5:00:00:dominant:01 00792202 1 0 -prepose%2:35:00:: 01248405 1 0 -preposition%1:10:00:: 06325145 1 2 -preposition%1:10:01:: 06483992 2 0 -prepositional%3:01:00:: 03102278 1 3 -prepositional_object%1:10:00:: 06310449 1 0 -prepositional_phrase%1:10:00:: 06317247 1 0 -prepositionally%4:02:00:: 00514618 1 0 -prepossess%2:31:00:: 00680145 4 0 -prepossess%2:37:00:: 01783746 2 0 -prepossess%2:37:01:: 01770096 3 0 -prepossess%2:40:00:: 02205012 1 0 -prepossessing%5:00:00:attractive:01 00168910 1 0 -prepossession%1:09:00:: 05949937 2 0 -prepossession%1:26:00:: 13924863 1 0 -preposterous%5:00:00:foolish:00 02570643 1 2 -preposterously%4:02:00:: 00387017 1 0 -prepotency%1:26:00:: 14442749 1 0 -preprandial%3:00:00:: 00129612 1 0 -prepubertal%5:00:00:immature:01 01490855 1 0 -prepuberty%1:28:00:: 15148081 1 0 -prepubescent%5:00:00:immature:01 01490855 1 1 -prepuce%1:08:00:: 05526957 2 0 -prepuce%1:08:01:: 05527085 1 0 -prepupal%5:00:00:immature:01 01491067 1 1 -prepyloric_vein%1:08:00:: 05378022 1 0 -prerecord%2:32:00:: 00999429 1 0 -prerecorded%5:00:00:recorded:00 01423491 1 0 -prerequisite%1:09:00:: 05892427 1 1 -prerequisite%5:00:00:obligatory:00 00849232 1 0 -prerogative%1:07:00:: 05178715 1 0 -pres_young%1:18:00:: 11403692 1 0 -presage%1:11:00:: 07286368 2 0 -presage%1:12:00:: 07522536 1 0 -presage%2:32:00:: 00871942 1 1 -presbyope%1:18:00:: 10465635 1 0 -presbyopia%1:26:00:: 14555214 1 0 -presbyopic%3:00:00:: 02157399 1 0 -presbyter%1:18:00:: 10465831 1 0 -presbyterian%1:18:00:: 10465922 1 1 -presbyterian_church%1:14:00:: 08091891 1 0 -presbyterianism%1:09:00:: 06232499 1 0 -presbytery%1:06:00:: 03999160 1 0 -presbytes%1:05:00:: 02488149 1 0 -presbytes_entellus%1:05:00:: 02488415 1 0 -preschool%1:14:00:: 08276539 1 0 -preschooler%1:18:00:: 10466060 1 0 -prescience%1:09:00:: 05919431 1 0 -prescient%5:00:00:discerning:00 00772137 1 0 -presciently%4:02:00:: 00430261 1 0 -prescott%1:15:00:: 09058635 1 0 -prescribe%2:32:00:: 00747135 1 7 -prescribed%5:00:00:formal:01 01043505 4 0 -prescribed%5:00:00:nonarbitrary:00 00720212 1 2 -prescribed%5:00:00:regular:00 01959918 3 0 -prescribed%5:00:00:settled:02 02129718 2 1 -prescript%1:10:00:: 06652242 1 0 -prescription%1:06:00:: 03999280 2 1 -prescription%1:10:00:: 06788565 1 2 -prescription%1:10:01:: 06365808 4 0 -prescription%1:10:02:: 06366002 3 0 -prescription%3:00:00:: 01846049 1 0 -prescription_drug%1:06:00:: 03999280 1 0 -prescription_medicine%1:06:00:: 03999280 1 0 -prescriptive%3:00:00:: 00732456 1 0 -prescriptive_grammar%1:09:00:: 06175967 1 0 -prescriptive_linguistics%1:09:00:: 06181893 1 0 -prescriptivism%1:09:00:: 06250444 2 0 -prescriptivism%1:09:01:: 06250597 1 0 -preseason%1:28:00:: 15240119 1 1 -presence%1:04:00:: 01233802 6 0 -presence%1:07:00:: 04910377 5 1 -presence%1:09:00:: 05917174 4 2 -presence%1:15:00:: 08642632 2 6 -presence%1:18:00:: 09547528 3 2 -presence%1:26:00:: 13957601 1 30 -presence_chamber%1:06:00:: 03999621 1 0 -presence_of_mind%1:07:00:: 04862747 1 0 -presenile_dementia%1:26:00:: 14395955 1 0 -present%1:10:00:: 06329734 3 0 -present%1:21:00:: 13268842 2 4 -present%1:28:00:: 15119536 1 17 -present%2:32:00:: 00772967 2 28 -present%2:32:01:: 00901103 9 2 -present%2:32:02:: 00989602 8 3 -present%2:32:03:: 00899956 13 0 -present%2:32:04:: 00901651 12 0 -present%2:32:06:: 01066433 11 0 -present%2:36:00:: 01711445 3 14 -present%2:36:08:: 01688771 10 1 -present%2:39:00:: 02148788 1 40 -present%2:40:00:: 02200686 7 3 -present%2:40:01:: 02262752 4 13 -present%2:40:02:: 02261888 6 3 -present%2:42:00:: 02722663 5 7 -present%3:00:01:: 01731351 1 60 -present%3:00:02:: 01846413 2 39 -present-day%5:00:00:current:00 00667079 1 8 -present_moment%1:28:00:: 15120050 1 0 -present_participle%1:10:00:: 06331014 1 0 -present_perfect%1:24:00:: 13806404 1 0 -present_perfect_tense%1:24:00:: 13806404 1 0 -present_progressive%1:24:00:: 13805974 1 0 -present_progressive_tense%1:24:00:: 13805974 1 0 -present_tense%1:10:00:: 06329734 1 0 -present_times%1:28:00:: 15120528 1 0 -presentable%5:00:00:respectable:00 01993598 1 2 -presentably%4:02:00:: 00430520 1 0 -presentation%1:04:00:: 00521562 2 4 -presentation%1:04:01:: 01048697 1 6 -presentation%1:06:00:: 03210940 5 1 -presentation%1:07:00:: 05081434 7 0 -presentation%1:10:00:: 06891022 3 3 -presentation%1:10:01:: 07167415 4 1 -presentation%1:10:02:: 07217349 6 0 -presentational%3:01:00:: 02784317 1 1 -presenter%1:18:00:: 10025730 3 0 -presenter%1:18:01:: 10466198 2 0 -presenter%1:18:02:: 10466387 1 0 -presentiment%1:12:00:: 07522128 1 0 -presentism%1:09:00:: 05966602 1 0 -presentist%1:18:00:: 10466564 1 0 -presently%4:02:00:: 00048268 2 5 -presently%4:02:01:: 00033922 1 38 -presentment%1:04:00:: 01187463 1 1 -presentment%1:04:02:: 00521562 3 0 -presentment%1:10:00:: 07191162 2 0 -presentness%1:07:00:: 05050115 1 1 -preservable%5:00:00:preserved:01 00737619 1 0 -preservation%1:04:00:: 00819024 1 1 -preservation%1:11:00:: 07419599 4 0 -preservation%1:22:00:: 13540610 3 0 -preservation%1:26:00:: 14578940 2 0 -preservationist%1:18:00:: 10466759 1 0 -preservative%1:27:00:: 14997529 1 0 -preservative%5:00:00:protective:00 01888554 1 0 -preserve%1:13:00:: 07642471 3 0 -preserve%1:15:00:: 08587439 2 0 -preserve%1:26:00:: 14515463 1 1 -preserve%2:30:00:: 00212414 4 1 -preserve%2:40:00:: 02280132 2 9 -preserve%2:40:01:: 02225492 3 9 -preserve%2:42:00:: 02679899 1 21 -preserve%2:42:01:: 02733122 5 0 -preserve%2:42:07:: 02682773 6 0 -preserved%3:00:01:: 00737246 2 1 -preserved%3:00:02:: 01071423 1 1 -preserver%1:06:00:: 03663531 4 0 -preserver%1:18:00:: 10514962 1 0 -preserver%1:18:01:: 10466918 3 0 -preserver%1:18:02:: 10467052 2 0 -preserves%1:13:00:: 07642471 1 0 -preset%5:00:00:planned:00 01797633 1 0 -preside%2:41:00:: 02443609 1 3 -presidency%1:04:00:: 00596807 2 0 -presidency%1:28:00:: 15266265 1 1 -president%1:04:04:: 00597265 6 1 -president%1:18:00:: 10467179 3 5 -president%1:18:01:: 10468559 1 14 -president%1:18:02:: 10468750 5 3 -president%1:18:03:: 10468962 4 3 -president%1:18:04:: 10467395 2 5 -president_abraham_lincoln%1:18:00:: 11132462 1 0 -president_adams%1:18:00:: 10808200 2 0 -president_adams%1:18:01:: 10808353 1 0 -president_andrew_johnson%1:18:00:: 11088059 1 0 -president_arthur%1:18:00:: 10825180 1 0 -president_benjamin_harrison%1:18:00:: 11031668 1 0 -president_buchanan%1:18:00:: 10869931 1 0 -president_bush%1:18:00:: 10875468 2 0 -president_bush%1:18:02:: 10875910 1 0 -president_carter%1:18:00:: 10884831 1 0 -president_cleveland%1:18:00:: 10902051 1 0 -president_clinton%1:18:00:: 10902591 1 0 -president_coolidge%1:18:00:: 10908919 1 0 -president_eisenhower%1:18:00:: 10954966 1 0 -president_fillmore%1:18:00:: 10970864 1 0 -president_ford%1:18:00:: 10974740 1 0 -president_franklin_roosevelt%1:18:00:: 11270023 1 0 -president_garfield%1:18:00:: 10990733 1 0 -president_george_w._bush%1:18:00:: 10875910 1 0 -president_grant%1:18:00:: 11011123 1 0 -president_harding%1:18:00:: 11028446 1 0 -president_harrison%1:18:01:: 11031420 2 0 -president_harrison%1:18:02:: 11031668 1 0 -president_hayes%1:18:00:: 11036140 1 0 -president_hoover%1:18:00:: 11058633 1 0 -president_jefferson%1:18:00:: 11081828 1 0 -president_john_adams%1:18:00:: 10808200 1 0 -president_john_f._kennedy%1:18:00:: 11101000 1 0 -president_john_quincy_adams%1:18:00:: 10808353 1 0 -president_johnson%1:18:00:: 11088059 2 0 -president_johnson%1:18:01:: 11088346 1 0 -president_kennedy%1:18:00:: 11101000 1 0 -president_lincoln%1:18:00:: 11132462 1 0 -president_lyndon_johnson%1:18:00:: 11088346 1 0 -president_madison%1:18:00:: 11148486 1 0 -president_mckinley%1:18:00:: 11169418 1 0 -president_monroe%1:18:00:: 11186042 1 0 -president_nixon%1:18:00:: 11208172 1 0 -president_of_the_united_states%1:04:00:: 00597265 2 0 -president_of_the_united_states%1:18:00:: 10467395 1 1 -president_pierce%1:18:00:: 11234813 1 0 -president_polk%1:18:00:: 11240733 1 0 -president_reagan%1:18:00:: 11255460 1 0 -president_roosevelt%1:18:01:: 11269697 2 0 -president_roosevelt%1:18:02:: 11270023 1 0 -president_taft%1:18:00:: 11328714 1 0 -president_taylor%1:18:00:: 11333237 1 0 -president_theodore_roosevelt%1:18:00:: 11269697 1 0 -president_truman%1:18:00:: 11349739 1 0 -president_tyler%1:18:00:: 11354145 1 0 -president_van_buren%1:18:00:: 11358719 1 0 -president_washington%1:18:00:: 11375418 1 0 -president_william_henry_harrison%1:18:00:: 11031420 1 0 -president_wilson%1:18:00:: 11390855 1 0 -presidential%3:00:00:: 00753504 2 0 -presidential%3:01:00:: 02984104 1 8 -presidential_directive%1:10:00:: 07170282 1 0 -presidential_term%1:28:00:: 15266265 1 0 -presidentially%4:02:00:: 00514696 1 0 -presidents'_day%1:28:00:: 15187619 1 0 -presidentship%1:04:00:: 00596807 1 0 -presiding_officer%1:18:00:: 10469346 1 0 -presidio%1:06:00:: 03999763 1 0 -presidium%1:14:00:: 08327390 1 0 -presley%1:18:00:: 11246040 1 0 -presocratic%3:01:00:: 02762404 1 0 -press%1:04:00:: 00113113 9 0 -press%1:04:02:: 00627013 8 0 -press%1:06:00:: 03999992 7 0 -press%1:06:01:: 04000311 3 1 -press%1:06:02:: 04550184 5 0 -press%1:06:03:: 04000480 6 0 -press%1:10:00:: 06263369 2 1 -press%1:14:01:: 08183398 4 0 -press%1:26:00:: 14451349 1 1 -press%2:32:00:: 00765649 2 7 -press%2:32:01:: 00759657 14 0 -press%2:33:00:: 01150370 13 0 -press%2:35:00:: 01447257 1 32 -press%2:35:01:: 01390616 4 2 -press%2:35:02:: 01387786 5 2 -press%2:35:03:: 01390833 12 0 -press%2:35:06:: 01447632 11 0 -press%2:36:00:: 01662614 10 0 -press%2:36:01:: 01754105 7 1 -press%2:38:00:: 02024367 6 1 -press%2:41:12:: 02589576 9 0 -press%2:42:00:: 02722782 8 0 -press%2:42:01:: 02646064 3 2 -press-up%1:04:00:: 00629318 1 0 -press_agency%1:14:00:: 08355075 1 0 -press_agent%1:18:00:: 10469611 1 0 -press_association%1:14:00:: 08355075 1 0 -press_box%1:06:00:: 04000592 1 0 -press_clipping%1:10:00:: 06612649 1 1 -press_conference%1:10:00:: 07144834 1 1 -press_corps%1:14:00:: 08403435 1 1 -press_cutting%1:10:00:: 06612649 1 0 -press_down%2:35:10:: 01574766 1 0 -press_down_on%2:35:00:: 01597096 1 1 -press_gallery%1:06:00:: 04000716 1 0 -press_gang%1:14:00:: 08216408 1 0 -press_home%2:32:00:: 01014362 1 0 -press_lord%1:18:00:: 10469786 1 0 -press_of_canvas%1:06:00:: 04000998 1 0 -press_of_sail%1:06:00:: 04000998 1 0 -press_on%2:38:00:: 01993549 1 1 -press_out%2:30:00:: 00478682 1 1 -press_out%2:35:09:: 01351754 3 0 -press_out%2:36:00:: 01662614 2 0 -press_photographer%1:18:00:: 10469874 1 0 -press_release%1:10:00:: 06747484 1 0 -press_run%1:28:00:: 15261972 1 0 -press_stud%1:06:00:: 04248209 1 0 -pressburg%1:15:00:: 08759263 1 0 -pressed%5:00:00:ironed:00 01359697 1 0 -pressing%1:04:00:: 00113113 1 1 -pressing%1:06:00:: 04000867 2 0 -pressing%5:00:00:imperative:00 00713558 1 3 -pressingly%4:02:00:: 00430706 1 0 -pressman%1:18:00:: 10475297 1 0 -pressman%1:18:01:: 09966710 2 0 -pressmark%1:10:00:: 06818439 1 0 -pressor%1:06:00:: 04522421 1 0 -pressor%3:01:00:: 02784558 1 0 -pressure%1:04:00:: 00113113 3 4 -pressure%1:07:00:: 05195362 2 29 -pressure%1:09:00:: 05724475 5 2 -pressure%1:19:00:: 11495041 1 65 -pressure%1:19:01:: 11429458 7 0 -pressure%1:26:00:: 14451349 4 3 -pressure%1:26:01:: 14477076 6 0 -pressure%2:41:00:: 02504562 1 1 -pressure%2:41:01:: 02581073 2 0 -pressure-cook%2:30:00:: 00328679 1 0 -pressure-feed_lubricating_system%1:06:00:: 03695122 1 0 -pressure-wash%2:35:00:: 01535915 1 0 -pressure_cabin%1:06:00:: 04001132 1 0 -pressure_cooker%1:06:00:: 04001265 1 0 -pressure_dome%1:06:00:: 04001397 1 1 -pressure_feed%1:06:00:: 03695122 1 0 -pressure_gage%1:06:00:: 04001499 1 0 -pressure_gauge%1:06:00:: 04001499 1 0 -pressure_group%1:14:00:: 08375526 1 0 -pressure_level%1:19:00:: 11495041 1 0 -pressure_point%1:08:00:: 05239039 3 0 -pressure_point%1:09:00:: 05687654 2 0 -pressure_point%1:15:00:: 08622340 1 0 -pressure_sensation%1:09:00:: 05724475 1 0 -pressure_sore%1:26:00:: 14212126 1 0 -pressure_suit%1:06:00:: 04001845 1 0 -pressure_unit%1:23:00:: 13607985 1 0 -pressurise%2:30:00:: 00403149 3 0 -pressurise%2:30:01:: 00403401 2 0 -pressurise%2:30:02:: 00403609 1 0 -pressurize%2:30:00:: 00403149 3 0 -pressurize%2:30:01:: 00403401 2 0 -pressurize%2:30:02:: 00403609 1 0 -pressurized_water_reactor%1:06:00:: 04001661 1 0 -prestidigitation%1:04:00:: 00552312 1 0 -prestidigitator%1:18:00:: 10280674 1 0 -prestige%1:26:00:: 14435809 1 11 -prestigious%5:00:00:influential:00 01830703 2 0 -prestigious%5:00:00:reputable:00 01982957 1 0 -prestigiousness%1:26:00:: 14435809 1 0 -prestissimo%4:02:00:: 00423749 1 0 -prestissimo%5:00:00:fast:02 00982430 1 0 -presto%4:02:01:: 00061814 1 1 -presto%4:02:02:: 00061899 2 0 -presto%5:00:00:fast:02 00982357 1 1 -presumable%5:00:00:thinkable:00 02418412 1 0 -presumably%4:02:00:: 00053952 1 16 -presume%2:29:00:: 00011551 4 0 -presume%2:31:00:: 00632236 1 12 -presume%2:32:00:: 01015677 3 0 -presume%2:41:00:: 02374924 2 0 -presumption%1:04:00:: 01225562 4 0 -presumption%1:07:00:: 04838727 3 0 -presumption%1:09:00:: 05893356 1 3 -presumption%1:09:01:: 05781347 2 0 -presumptive%5:00:00:credible:00 00645281 2 0 -presumptive%5:00:00:probable:00 01413576 1 0 -presumptively%4:02:00:: 00053952 1 0 -presumptuous%5:00:00:forward:02 00205696 1 0 -presumptuously%4:02:00:: 00430783 1 0 -presumptuousness%1:07:00:: 04838727 1 0 -presuppose%2:31:00:: 00716345 2 2 -presuppose%2:31:01:: 00716531 1 2 -presupposition%1:09:00:: 05779923 1 2 -presymptomatic%3:01:00:: 02783412 1 0 -preteen%1:18:00:: 09627263 1 0 -preteen%5:00:00:young:00 01649271 1 0 -preteenager%1:18:00:: 09627263 1 0 -pretence%1:04:00:: 00754956 5 0 -pretence%1:07:00:: 04788853 1 1 -pretence%1:07:01:: 04678908 2 1 -pretence%1:09:00:: 05769930 4 0 -pretence%1:10:00:: 06759349 3 0 -pretend%1:04:00:: 00755500 1 0 -pretend%2:32:00:: 00838043 1 12 -pretend%2:32:01:: 00838524 5 0 -pretend%2:32:02:: 00916909 4 0 -pretend%2:32:06:: 00756649 6 0 -pretend%2:36:00:: 01721556 2 10 -pretend%2:40:03:: 02275799 3 0 -pretend%5:00:00:unreal:00 01937759 1 0 -pretended%5:00:00:counterfeit:00 01116857 1 2 -pretender%1:18:00:: 10201535 2 0 -pretender%1:18:01:: 10195593 3 0 -pretender%1:18:02:: 10469979 1 0 -pretending%1:04:00:: 00754956 1 0 -pretense%1:04:00:: 00754956 1 1 -pretense%1:07:00:: 04788853 4 0 -pretense%1:07:01:: 04678908 5 0 -pretense%1:09:01:: 05769930 3 0 -pretense%1:10:00:: 06759349 2 0 -pretension%1:07:00:: 04788853 1 1 -pretension%1:07:01:: 04788982 3 0 -pretension%1:10:00:: 06730371 2 0 -pretentious%3:00:00:: 01849288 1 0 -pretentious%3:00:04:: 01848355 2 0 -pretentious%5:00:00:tasteless:02 02394975 3 0 -pretentiously%4:02:00:: 00430921 1 0 -pretentiousness%1:07:00:: 04788982 2 0 -pretentiousness%1:07:01:: 04817923 1 0 -preterist%1:18:00:: 10470132 1 0 -preterit%1:24:00:: 13806614 1 0 -preterite%1:24:00:: 13806614 1 0 -preterition%1:10:00:: 07104733 1 0 -preterm_baby%1:18:00:: 10465451 1 0 -preterm_infant%1:18:00:: 10465451 1 0 -pretermission%1:09:00:: 05707146 1 0 -pretermit%2:31:00:: 00614999 2 0 -pretermit%2:31:01:: 00617293 1 0 -preternatural%5:00:00:extraordinary:00 01677733 1 0 -preternatural%5:00:00:supernatural:00 01577086 2 0 -preternaturally%4:02:00:: 00431238 1 0 -pretext%1:07:00:: 04678908 2 0 -pretext%1:10:00:: 06759776 1 1 -pretor%1:18:00:: 10463028 1 0 -pretoria%1:15:00:: 09000272 1 0 -pretorial%3:01:00:: 03101818 1 0 -pretorian%3:01:00:: 03101818 1 0 -pretorian%5:00:00:corrupt:00 00622014 2 0 -pretorium%1:06:00:: 03997875 1 0 -pretrial%1:10:00:: 07145026 1 0 -pretrial_conference%1:10:00:: 07145026 1 0 -prettify%2:30:00:: 00293141 1 0 -prettily%4:02:00:: 00431396 1 0 -prettiness%1:07:00:: 04685649 1 1 -pretty%4:02:00:: 00035718 1 35 -pretty%5:00:00:bad:00 01128871 2 3 -pretty%5:00:00:beautiful:00 00220082 1 20 -pretty-pretty%5:00:00:beautiful:00 00220241 1 0 -pretty_much%4:02:00:: 00022717 1 3 -pretty_up%2:29:00:: 00043078 1 0 -pretzel%1:13:00:: 07695742 1 0 -preussen%1:15:00:: 08775784 1 0 -prevacid%1:27:00:: 14777277 1 0 -prevail%2:32:02:: 00777793 5 0 -prevail%2:33:00:: 01101734 4 2 -prevail%2:42:00:: 02647497 3 5 -prevail%2:42:01:: 02648502 2 5 -prevail%2:42:02:: 02644234 1 6 -prevailing%5:00:00:frequent:00 01066787 1 0 -prevailing_party%1:18:00:: 10470314 1 0 -prevailing_westerly%1:19:00:: 11525614 1 0 -prevailing_wind%1:19:00:: 11497586 1 0 -prevalence%1:07:00:: 04765355 1 1 -prevalence%1:07:01:: 05122099 3 0 -prevalence%1:24:00:: 13824114 2 0 -prevalent%5:00:00:frequent:00 01066787 1 0 -prevaricate%2:32:00:: 00835506 1 0 -prevarication%1:04:00:: 00751944 3 0 -prevarication%1:07:00:: 04825383 2 0 -prevarication%1:10:00:: 06756831 1 0 -prevaricator%1:18:00:: 10256537 1 0 -prevenient%5:00:00:antecedent:00 00122245 1 0 -prevent%2:41:00:: 02450505 2 40 -prevent%2:41:01:: 02452885 1 62 -preventable%3:00:00:: 00343883 1 0 -preventative%1:06:01:: 04002026 1 0 -preventative%1:06:02:: 03096593 3 0 -preventative%1:06:03:: 03520811 2 0 -preventative%3:00:00:: 01763813 1 0 -preventative%5:00:00:healthful:00 01167269 2 0 -prevention%1:04:00:: 01077350 1 17 -preventive%1:06:01:: 04002026 1 0 -preventive%1:06:02:: 03096593 3 0 -preventive%1:06:03:: 03520811 2 0 -preventive%3:00:00:: 01763813 2 0 -preventive%5:00:00:healthful:00 01167269 1 1 -preventive_attack%1:04:00:: 00978005 1 0 -preventive_medicine%1:04:00:: 00613282 1 1 -preventive_strike%1:04:00:: 00978005 1 0 -preview%1:10:00:: 06888506 2 0 -preview%1:10:01:: 06888674 1 0 -preview%2:39:00:: 02151816 1 0 -previous%5:00:00:early:00 00815227 3 0 -previous%5:00:00:past:00 01729819 2 17 -previous%5:00:00:preceding:00 00127137 1 24 -previous_question%1:10:00:: 07163803 1 0 -previously%4:02:00:: 00060632 1 30 -previse%2:31:00:: 00720808 2 0 -previse%2:32:00:: 00870942 1 0 -prevision%1:09:00:: 05919431 2 0 -prevision%1:09:01:: 05775829 1 5 -prevision%1:09:02:: 05805277 3 0 -prevision%1:09:03:: 05775081 4 0 -prevue%1:10:00:: 06888674 1 0 -prewar%3:00:00:: 00129878 1 3 -prexy%1:18:00:: 10468750 1 0 -prey%1:05:00:: 02152881 2 2 -prey%1:18:00:: 10470460 1 3 -prey%2:34:01:: 01203715 1 1 -prey%2:34:10:: 01203500 2 0 -priacanthidae%1:05:00:: 02571300 1 0 -priacanthus%1:05:00:: 02571486 1 0 -priacanthus_arenatus%1:05:00:: 02571810 1 0 -priam%1:18:00:: 11246255 1 0 -priapic%5:00:00:male:00 01477391 2 0 -priapic%5:00:02:male:00 01477564 1 0 -priapism%1:26:00:: 14210564 1 0 -priapus%1:18:00:: 09570794 1 0 -price%1:07:00:: 05145118 1 56 -price%1:07:01:: 05141683 4 2 -price%1:07:02:: 05163807 3 2 -price%1:10:00:: 07167041 5 1 -price%1:18:00:: 11246408 7 0 -price%1:21:00:: 13303315 2 9 -price%1:21:02:: 13303759 6 0 -price%2:31:00:: 00721889 2 0 -price%2:40:00:: 02351010 1 4 -price-controlled%5:00:00:controlled:00 00599628 1 0 -price-fixing%1:04:00:: 01070708 1 0 -price-to-earnings_ratio%1:24:00:: 13824340 1 0 -price_bracket%1:14:00:: 08006405 1 0 -price_competition%1:24:00:: 13837200 1 3 -price_control%1:10:00:: 06657464 1 0 -price_cut%1:04:00:: 00352861 1 0 -price_cutting%1:04:00:: 00352861 1 1 -price_floor%1:10:00:: 06658269 1 0 -price_freeze%1:04:00:: 00809279 1 0 -price_gouging%1:09:00:: 05736893 1 0 -price_increase%1:07:00:: 05110107 1 0 -price_index%1:10:00:: 06641181 1 0 -price_level%1:10:00:: 06641181 1 0 -price_list%1:10:00:: 06494538 1 0 -price_of_admission%1:21:00:: 13321495 1 0 -price_reduction%1:04:00:: 00362103 1 0 -price_support%1:21:00:: 13267411 1 0 -price_tag%1:10:00:: 07273024 1 0 -price_war%1:24:00:: 13837200 1 0 -priceless%5:00:00:valuable:00 02501367 1 3 -pricelessness%1:07:00:: 05141222 1 0 -pricey%5:00:00:expensive:00 00933599 1 0 -pricing%1:09:00:: 05736736 1 3 -pricing_system%1:09:00:: 05904918 1 0 -prick%1:04:00:: 00944789 4 0 -prick%1:08:00:: 05526713 3 0 -prick%1:18:00:: 09815188 1 2 -prick%1:25:00:: 13904843 2 0 -prick%2:35:00:: 01440801 1 3 -prick%2:35:03:: 01445407 7 0 -prick%2:35:04:: 01240935 4 1 -prick%2:37:00:: 01760945 6 0 -prick%2:38:00:: 01983006 3 1 -prick%2:39:00:: 02123424 2 1 -prick%2:39:01:: 02123298 5 0 -prick_up%2:38:00:: 01983006 1 1 -pricker%1:06:00:: 02888898 2 0 -pricker%1:20:00:: 13089631 1 0 -pricket%1:05:00:: 02430748 2 0 -pricket%1:06:00:: 04002262 1 0 -pricking%1:04:00:: 00944789 1 0 -prickle%1:20:00:: 13089631 1 0 -prickle%2:35:00:: 01440801 3 0 -prickle%2:39:00:: 02122983 2 0 -prickle%2:39:01:: 02123298 1 0 -prickle-weed%1:20:00:: 12526178 1 0 -prickle_cell%1:08:00:: 05241662 1 0 -prickleback%1:05:00:: 02615642 1 0 -prickleback%1:05:01:: 01454856 2 0 -prickliness%1:07:00:: 04949799 1 0 -prickling%1:09:00:: 05722868 1 0 -prickly%5:00:00:armed:02 00145083 2 0 -prickly%5:00:00:ill-natured:00 01135420 1 1 -prickly-edged_leaf%1:20:00:: 13161904 1 0 -prickly-leafed%5:00:00:leafy:00 01702913 1 0 -prickly-leaved%5:00:00:leafy:00 01702913 1 0 -prickly-seeded_spinach%1:20:00:: 11835568 1 0 -prickly_ash%1:20:01:: 12714755 1 0 -prickly_ash%1:20:02:: 12222090 2 0 -prickly_custard_apple%1:20:00:: 11694664 1 0 -prickly_heat%1:26:00:: 14322106 1 0 -prickly_lettuce%1:20:00:: 11987511 1 0 -prickly_pear%1:13:00:: 07768858 2 0 -prickly_pear%1:20:01:: 11851578 1 0 -prickly_pear_cactus%1:20:00:: 11851578 1 0 -prickly_pine%1:20:00:: 11617631 1 0 -prickly_poppy%1:20:01:: 11901597 2 0 -prickly_poppy%1:20:02:: 11902709 1 0 -prickly_shield_fern%1:20:00:: 13200193 1 0 -prickteaser%1:18:00:: 09965134 1 0 -pricy%5:00:00:expensive:00 00933599 1 0 -pride%1:04:00:: 00758175 5 0 -pride%1:07:00:: 04886646 3 3 -pride%1:12:00:: 07508486 1 6 -pride%1:12:01:: 07531536 2 5 -pride%1:14:00:: 07995278 4 0 -pride%2:37:00:: 01772498 1 2 -pride-of-india%1:20:00:: 12695975 1 0 -pride-of-india%1:20:01:: 12329473 2 0 -pride_of_barbados%1:20:00:: 12490054 1 0 -pride_of_bolivia%1:20:00:: 12573911 1 0 -pride_of_california%1:20:00:: 12541606 1 0 -pride_of_place%1:15:00:: 08621472 1 0 -pride_oneself%2:37:09:: 01828993 1 0 -prideful%5:00:00:elated:00 00704898 2 0 -prideful%5:00:00:proud:00 01891109 1 0 -pridefulness%1:12:00:: 07508486 1 0 -prie-dieu%1:06:00:: 04002371 1 1 -priest%1:18:00:: 10470779 1 10 -priest%1:18:01:: 10471250 2 5 -priest-doctor%1:18:00:: 10626194 1 0 -priest-penitent_privilege%1:07:00:: 05180677 1 0 -priestcraft%1:09:00:: 05643807 2 0 -priestcraft%1:09:01:: 05908727 1 0 -priestess%1:18:00:: 10471570 1 0 -priesthood%1:14:00:: 08113443 1 0 -priestley%1:18:00:: 11246542 1 0 -priestlike%3:00:00:: 00574114 1 0 -priestly%3:00:00:: 00574114 2 0 -priestly%3:01:00:: 02899666 1 0 -prig%1:18:00:: 10617024 1 0 -priggish%5:00:00:proper:00 01880163 1 0 -priggishly%4:02:00:: 00431503 1 0 -priggishness%1:07:00:: 04899980 1 0 -prilosec%1:27:00:: 14777606 1 0 -prim%2:29:00:: 00045145 3 0 -prim%2:30:00:: 00145772 2 0 -prim%2:30:01:: 00525164 1 0 -prim%5:00:00:proper:00 01880163 2 0 -prim%5:00:00:refined:01 01948092 1 0 -prim_out%2:29:00:: 00045145 1 0 -prim_up%2:29:00:: 00045145 1 0 -prima%1:13:00:: 07741623 1 0 -prima%5:00:00:major:06 01472790 1 0 -prima_ballerina%1:18:00:: 10471640 1 0 -prima_donna%1:18:00:: 10471732 2 0 -prima_donna%1:18:01:: 10471859 1 0 -prima_facie%4:02:00:: 00260274 1 0 -prima_facie%5:00:00:clear:00 00429793 1 0 -primacy%1:26:00:: 14435353 1 1 -primaeval%5:00:00:early:00 00813589 1 0 -primal%5:00:00:early:00 00813589 2 0 -primal%5:00:00:important:00 01277097 1 0 -primality%1:07:00:: 05208896 1 0 -primaquine%1:06:00:: 04002452 1 0 -primarily%4:02:00:: 00138410 2 0 -primarily%4:02:01:: 00073897 1 28 -primary%1:04:00:: 00182571 1 3 -primary%1:05:00:: 02469080 2 1 -primary%1:06:00:: 04002629 4 0 -primary%1:17:00:: 09398769 3 0 -primary%3:00:00:: 01852174 1 16 -primary%5:00:00:basic:00 01856238 4 0 -primary%5:00:00:essential:00 00901060 5 0 -primary%5:00:00:important:00 01277426 3 7 -primary%5:00:00:underived:00 00699521 2 8 -primary_amenorrhea%1:26:00:: 14303647 1 0 -primary_atypical_pneumonia%1:26:00:: 14147964 1 0 -primary_care%1:04:00:: 00656033 1 0 -primary_care_physician%1:18:00:: 10471948 1 0 -primary_care_provider%1:18:00:: 10165109 1 0 -primary_cell%1:06:00:: 04540761 1 0 -primary_censorship%1:04:00:: 00822350 1 0 -primary_coil%1:06:00:: 04002629 1 0 -primary_color%1:07:00:: 04957176 1 0 -primary_color_for_light%1:07:00:: 04957589 1 0 -primary_color_for_pigments%1:07:00:: 04957356 1 0 -primary_colour%1:07:00:: 04957176 1 0 -primary_colour_for_light%1:07:00:: 04957589 1 0 -primary_colour_for_pigments%1:07:00:: 04957356 1 0 -primary_dentition%1:08:00:: 05282247 1 0 -primary_dysmenorrhea%1:26:00:: 14326305 1 0 -primary_election%1:04:00:: 00182571 1 1 -primary_feather%1:05:00:: 02469080 1 0 -primary_health_care%1:04:00:: 01089297 1 0 -primary_quill%1:05:00:: 02469080 1 0 -primary_school%1:14:00:: 08412749 1 0 -primary_sex_character%1:07:00:: 05007560 1 0 -primary_sex_characteristic%1:07:00:: 05007560 1 0 -primary_sexual_characteristic%1:07:00:: 05007560 1 0 -primary_solid_solution%1:27:00:: 15051705 1 0 -primary_subtractive_color_for_light%1:07:00:: 04957854 1 0 -primary_subtractive_colour_for_light%1:07:00:: 04957854 1 0 -primary_syphilis%1:26:00:: 14134351 1 0 -primary_tooth%1:08:00:: 05306894 1 0 -primary_winding%1:06:00:: 04002629 1 0 -primate%1:05:00:: 02469914 2 0 -primate%1:18:00:: 09807075 1 1 -primates%1:05:00:: 02469588 1 1 -primateship%1:04:00:: 00597532 1 0 -primatology%1:09:00:: 06073647 1 0 -primaxin%1:06:00:: 04002536 1 0 -prime%1:23:00:: 13594005 1 2 -prime%1:28:00:: 15152409 4 0 -prime%1:28:01:: 15229784 3 0 -prime%1:28:02:: 15295045 2 0 -prime%2:30:00:: 00408624 1 1 -prime%2:30:01:: 00454018 3 0 -prime%2:35:00:: 01365355 2 0 -prime%3:01:00:: 03012209 4 0 -prime%5:00:00:mature:01 01489557 5 0 -prime%5:00:00:superior:02 02342899 3 2 -prime%5:00:01:first:00 01013171 2 3 -prime%5:00:02:first:00 01012990 1 6 -prime_factor%1:23:00:: 13594136 1 0 -prime_interest_rate%1:21:00:: 13319872 1 0 -prime_meridian%1:15:00:: 08599292 1 0 -prime_minister%1:18:00:: 09906986 2 16 -prime_minister%1:18:01:: 09907196 1 16 -prime_mover%1:18:00:: 09504603 1 0 -prime_number%1:23:00:: 13594302 1 0 -prime_of_life%1:28:00:: 15152409 1 0 -prime_quantity%1:23:00:: 13594005 1 0 -prime_time%1:28:00:: 15166897 1 1 -primed%5:00:00:ready:00 01931203 1 2 -primer%1:06:00:: 03407122 2 0 -primer%1:06:01:: 03360845 3 0 -primer%1:10:00:: 06414948 1 1 -primer_coat%1:06:00:: 03360845 1 0 -primeval%5:00:00:early:00 00813589 1 3 -primidone%1:06:00:: 04002931 1 0 -primigravida%1:18:00:: 10472129 1 0 -priming%1:04:01:: 01144046 1 1 -priming%1:06:00:: 03407122 2 0 -priming%1:06:01:: 03360845 3 0 -priming_coat%1:06:00:: 03360845 1 0 -primipara%1:18:00:: 10472274 1 0 -primiparous%3:01:00:: 03102427 1 0 -primitive%1:10:00:: 06294941 3 0 -primitive%1:10:01:: 06295113 2 0 -primitive%1:18:00:: 09627462 1 0 -primitive%5:00:00:noncivilized:00 00413432 3 1 -primitive%5:00:00:untrained:00 01912858 4 0 -primitive%5:00:01:early:02 00817731 2 2 -primitive%5:00:02:early:02 00818175 1 8 -primitive_art%1:06:00:: 03861959 1 0 -primitive_person%1:18:00:: 09627462 1 0 -primitively%4:02:00:: 00431812 2 0 -primitively%4:02:01:: 00431941 1 0 -primitiveness%1:26:00:: 14472624 1 0 -primitivism%1:06:00:: 04003110 2 0 -primitivism%1:26:00:: 14472624 1 0 -primly%4:02:00:: 00431649 1 1 -primness%1:07:00:: 04899980 2 0 -primness%1:07:01:: 04901152 1 0 -primo%1:10:00:: 07031276 1 0 -primo%5:00:00:best:00 00228876 1 0 -primogenitor%1:18:00:: 10126806 1 0 -primogeniture%1:21:00:: 13263257 1 0 -primordial%5:00:00:early:00 00813589 1 0 -primordial_dwarf%1:18:00:: 10472447 1 0 -primordium%1:08:00:: 05298159 1 0 -primp%2:29:00:: 00043683 1 0 -primping%1:04:00:: 00828559 1 1 -primrose%1:20:00:: 12090890 1 0 -primrose_family%1:20:00:: 12090318 1 0 -primrose_jasmine%1:20:00:: 12306938 1 0 -primrose_path%1:04:00:: 00416129 1 0 -primula%1:20:00:: 12090890 1 0 -primula_auricula%1:20:00:: 12091806 1 0 -primula_elatior%1:20:00:: 12091550 1 0 -primula_polyantha%1:20:00:: 12091953 1 0 -primula_sinensis%1:20:00:: 12091697 1 0 -primula_veris%1:20:00:: 12091377 1 0 -primula_vulgaris%1:20:00:: 12091213 1 0 -primulaceae%1:20:00:: 12090318 1 0 -primulales%1:20:00:: 12090041 1 0 -primum_mobile%1:18:00:: 09504603 1 0 -primus%1:06:00:: 04003241 2 0 -primus%1:18:00:: 10472690 1 0 -primus_stove%1:06:00:: 04003241 1 0 -prince%1:18:00:: 10472799 1 1 -prince's-feather%1:20:01:: 12601805 1 0 -prince's-feather%1:20:02:: 11823756 2 0 -prince's-plume%1:20:00:: 11897466 2 0 -prince's-plume%1:20:01:: 11823756 3 0 -prince's-plume%1:20:02:: 12601805 1 0 -prince's_pine%1:20:00:: 12257570 1 0 -prince-of-wales'-heath%1:20:00:: 12229111 1 0 -prince-of-wales_feather%1:20:00:: 12954353 1 0 -prince-of-wales_fern%1:20:00:: 12954353 1 0 -prince-of-wales_plume%1:20:00:: 12954353 1 0 -prince_albert%1:06:00:: 04003359 2 0 -prince_albert%1:18:00:: 10811540 1 0 -prince_albert's_yew%1:20:00:: 11659248 1 0 -prince_albert_yew%1:20:00:: 11659248 1 0 -prince_charles%1:18:00:: 10892416 1 0 -prince_charming%1:18:00:: 10473453 1 0 -prince_consort%1:18:00:: 10473562 1 0 -prince_edward%1:18:00:: 10949952 1 0 -prince_edward_island%1:15:00:: 08828750 1 0 -prince_eugene_of_savoy%1:18:00:: 10962423 1 0 -prince_fumimaro_konoe%1:18:00:: 11108767 1 0 -prince_fumimaro_konoye%1:18:00:: 11108767 1 0 -prince_klemens_wenzel_nepomuk_lothar_von_metternich%1:18:00:: 11177532 1 0 -prince_of_darkness%1:18:00:: 09543353 1 0 -prince_of_smolensk%1:18:00:: 11113077 1 0 -prince_of_wales%1:18:00:: 10473917 1 1 -prince_of_wales_heath%1:20:00:: 12229111 1 0 -prince_otto_eduard_leopold_von_bismarck%1:18:00:: 10851599 1 0 -prince_otto_von_bismarck%1:18:00:: 10851599 1 0 -prince_peter_kropotkin%1:18:00:: 11111194 1 0 -prince_philip%1:18:00:: 11232475 1 0 -prince_rupert%1:18:00:: 11274103 1 0 -princedom%1:15:00:: 08558488 2 0 -princedom%1:26:00:: 14433115 1 0 -princeling%1:18:00:: 10473718 2 0 -princeling%1:18:01:: 10473789 1 0 -princely%5:00:00:noble:02 01592108 2 0 -princely%5:00:00:rich:03 02024928 1 0 -princess%1:18:00:: 10474064 1 0 -princess_diana%1:18:00:: 10933658 1 0 -princess_feather%1:20:00:: 12601805 1 0 -princess_grace_of_monaco%1:18:00:: 11099923 1 0 -princess_of_wales%1:18:00:: 10933658 1 0 -princess_pine%1:20:00:: 13223710 1 0 -princess_royal%1:18:00:: 10474343 1 0 -princeton%1:06:00:: 04003453 2 0 -princeton%1:15:00:: 09114128 1 0 -princeton_university%1:06:00:: 04003453 1 0 -princeton_wordnet%1:10:00:: 06639204 1 0 -princewood%1:20:01:: 12818601 1 0 -princewood%1:20:02:: 12818346 2 0 -principal%1:18:00:: 10474645 2 2 -principal%1:18:01:: 10648696 3 1 -principal%1:18:02:: 10474446 6 0 -principal%1:18:03:: 10474950 5 0 -principal%1:21:01:: 13400662 1 12 -principal%1:21:02:: 13355868 4 0 -principal%5:00:00:important:00 01277426 1 19 -principal_axis%1:09:00:: 06010105 1 0 -principal_diagonal%1:14:00:: 08268636 1 0 -principal_investigator%1:18:00:: 10475163 1 0 -principal_sum%1:21:00:: 13355868 1 0 -principality%1:15:00:: 08558488 1 0 -principality_of_andorra%1:15:00:: 09023118 1 0 -principality_of_liechtenstein%1:15:00:: 08960548 1 0 -principality_of_monaco%1:15:00:: 08967868 1 0 -principally%4:02:00:: 00073897 1 2 -principalship%1:04:00:: 00597629 1 0 -principe%1:15:00:: 08993144 1 0 -principen%1:06:00:: 02705651 1 0 -principle%1:09:00:: 05872477 3 7 -principle%1:09:01:: 05955323 2 9 -principle%1:09:02:: 05793210 6 2 -principle%1:09:03:: 05913538 1 13 -principle%1:09:04:: 05874232 4 3 -principle%1:10:00:: 06655388 5 2 -principle_of_equivalence%1:09:00:: 05990981 1 0 -principle_of_liquid_displacement%1:09:00:: 05991242 1 0 -principle_of_parsimony%1:09:00:: 05990738 1 0 -principle_of_relativity%1:09:00:: 05990480 1 0 -principle_of_superposition%1:09:00:: 05991441 2 0 -principle_of_superposition%1:09:01:: 05991776 1 0 -principled%3:00:00:: 01551130 1 0 -prinia%1:05:00:: 01565804 1 0 -prinival%1:06:00:: 03677308 1 0 -prink%2:29:00:: 00044149 2 0 -prink%2:29:01:: 00045532 1 0 -print%1:06:00:: 04003597 2 2 -print%1:06:01:: 04003856 6 0 -print%1:06:02:: 03926575 7 0 -print%1:06:03:: 04003982 5 0 -print%1:10:00:: 06678302 1 2 -print%1:10:01:: 06798750 3 0 -print%1:10:02:: 06678146 4 0 -print%2:36:00:: 01747945 4 0 -print%2:36:01:: 01749184 3 0 -print%2:36:02:: 01745722 1 12 -print%2:36:03:: 01746715 2 1 -print_buffer%1:06:00:: 04004099 1 0 -print_media%1:10:00:: 06263609 1 0 -print_over%2:36:00:: 01748273 1 0 -print_run%1:28:00:: 15261972 1 0 -print_seller%1:18:00:: 10475835 1 0 -print_shop%1:06:00:: 04005090 1 2 -printable%3:00:00:: 01964933 1 1 -printed_circuit%1:06:00:: 04004210 1 0 -printed_symbol%1:10:00:: 06817623 1 1 -printer%1:06:00:: 04004475 3 0 -printer%1:06:01:: 04004767 2 0 -printer%1:18:00:: 10475297 1 0 -printer's_devil%1:18:00:: 10475584 1 0 -printer's_ink%1:27:00:: 14918023 1 0 -printer_cable%1:06:00:: 04004990 1 0 -printing%1:04:00:: 01103159 2 1 -printing%1:10:00:: 06677302 3 0 -printing%1:10:01:: 06403291 1 2 -printing%1:10:02:: 06590210 4 0 -printing_business%1:14:00:: 08069627 1 0 -printing_company%1:14:00:: 08069627 1 0 -printing_concern%1:14:00:: 08069627 1 0 -printing_ink%1:27:00:: 14918023 1 1 -printing_machine%1:06:00:: 04004475 1 0 -printing_operation%1:22:00:: 13540791 1 0 -printing_press%1:06:00:: 04000311 1 0 -printing_process%1:10:00:: 06677302 1 0 -printing_shop%1:06:00:: 04005090 1 0 -printing_unit%1:23:00:: 13608207 1 0 -printmaker%1:18:00:: 10475687 1 0 -printmaking%1:04:00:: 00937476 1 0 -printout%1:10:00:: 07265075 1 0 -priodontes%1:05:00:: 02455887 1 0 -priodontes_giganteus%1:05:00:: 02456008 1 0 -prion%1:17:00:: 09398935 1 0 -prionace%1:05:00:: 01490885 1 0 -prionace_glauca%1:05:00:: 01491006 1 0 -prionotus%1:05:00:: 02650928 1 0 -prionotus_carolinus%1:05:00:: 02651060 1 0 -prior%1:18:00:: 10475940 1 0 -prior%5:00:00:antecedent:00 00122128 1 22 -prioress%1:18:00:: 09754217 1 0 -prioritise%2:31:00:: 00660381 1 0 -prioritize%2:31:00:: 00660381 1 0 -priority%1:07:00:: 05047279 2 0 -priority%1:26:00:: 13949802 1 7 -priority_processing%1:22:00:: 13540975 1 0 -priorship%1:04:00:: 00597728 1 0 -priory%1:06:00:: 04005197 1 0 -priscoan%1:28:00:: 15129572 1 0 -priscoan_aeon%1:28:00:: 15129572 1 0 -priscoan_eon%1:28:00:: 15129572 1 0 -prise%2:31:00:: 00694068 3 0 -prise%2:35:00:: 01593254 1 1 -prise%2:36:00:: 01630903 2 0 -prism%1:06:00:: 04005340 2 0 -prism%1:25:00:: 13884511 1 0 -prism_spectroscope%1:06:00:: 04273064 1 0 -prismatic%3:01:00:: 03102558 1 0 -prismatic%5:00:00:colorful:00 00403654 2 0 -prismatoid%1:25:00:: 13917874 1 0 -prismoid%1:25:00:: 13918095 1 0 -prison%1:06:00:: 04005630 1 3 -prison%1:26:00:: 13937284 2 0 -prison-breaking%1:04:00:: 00059989 1 0 -prison_camp%1:06:00:: 04600764 2 0 -prison_camp%1:06:01:: 04005912 1 1 -prison_cell%1:06:00:: 02991302 1 0 -prison_chaplain%1:18:00:: 09908769 1 0 -prison_farm%1:06:00:: 04600764 1 1 -prison_guard%1:18:00:: 10149867 1 0 -prison_house%1:06:00:: 04005630 2 0 -prison_house%1:26:00:: 13937284 1 1 -prison_term%1:28:00:: 15224692 1 0 -prisonbreak%1:04:00:: 00059989 1 0 -prisoner%1:18:00:: 10476086 1 12 -prisoner's_base%1:04:00:: 00460541 1 0 -prisoner_of_war%1:18:00:: 10476331 1 2 -prisoner_of_war_camp%1:06:00:: 04005912 1 0 -prisoner_of_war_censorship%1:04:00:: 00821973 1 0 -prisonlike%5:00:00:unfree:00 01065538 1 0 -prissily%4:02:00:: 00431649 1 0 -prissy%5:00:00:fastidious:00 00984333 2 0 -prissy%5:00:00:proper:00 01880163 1 0 -pristidae%1:05:00:: 01496944 1 0 -pristine%5:00:00:clean:01 00418679 2 0 -pristine%5:00:00:pure:02 01907293 1 0 -pristis%1:05:00:: 01497278 1 0 -pristis_pectinatus%1:05:00:: 01497413 1 0 -pritzelago%1:20:00:: 11893808 1 0 -pritzelago_alpina%1:20:00:: 11893916 1 0 -privacy%1:07:00:: 04622932 1 2 -privacy%1:26:02:: 14416089 2 1 -private%1:18:00:: 10476467 1 12 -private%3:00:00:: 01858094 1 44 -private%5:00:00:inward:00 00952181 4 0 -private%5:00:00:personal:00 01768086 3 0 -private%5:00:02:personal:00 01769378 2 0 -private-enterprise%5:00:00:capitalistic:00 00297755 1 0 -private_citizen%1:18:00:: 10457903 1 0 -private_corporation%1:14:00:: 08383690 1 0 -private_detective%1:18:00:: 10476671 1 11 -private_enterprise%1:14:00:: 08364959 1 0 -private_eye%1:18:00:: 10476671 1 12 -private_foundation%1:14:00:: 08407000 1 0 -private_instructor%1:18:00:: 09931418 1 0 -private_investigator%1:18:00:: 10476671 1 0 -private_line%1:06:00:: 04006227 1 0 -private_nuisance%1:09:00:: 05831412 1 0 -private_parts%1:08:00:: 05514081 1 0 -private_practice%1:04:00:: 00632820 1 0 -private_property%1:21:00:: 13245626 1 1 -private_road%1:06:00:: 03244388 1 0 -private_school%1:14:00:: 08411170 1 3 -private_security_force%1:14:00:: 08210982 1 0 -private_treaty%1:04:00:: 00092212 1 0 -privateer%1:06:00:: 04006067 2 0 -privateer%1:18:00:: 10476928 1 0 -privateersman%1:18:00:: 10476928 1 0 -privately%4:02:00:: 00162137 1 7 -privately%4:02:01:: 00162645 2 1 -privately_held_corporation%1:14:00:: 08383690 1 0 -privateness%1:07:00:: 04622932 2 0 -privateness%1:26:00:: 14416089 1 0 -privates%1:08:00:: 05514081 1 0 -privation%1:04:00:: 01150200 2 0 -privation%1:26:00:: 14493426 1 0 -privatisation%1:04:00:: 01152033 1 0 -privatise%2:30:00:: 00412048 1 0 -privatization%1:04:00:: 01152033 1 0 -privatize%2:30:00:: 00412048 1 0 -privet%1:20:00:: 12307756 1 0 -privet_andromeda%1:20:00:: 12241192 1 0 -privet_hedge%1:06:00:: 04006330 1 0 -privilege%1:07:00:: 05178715 2 3 -privilege%1:07:01:: 05179567 3 0 -privilege%1:07:02:: 05158296 1 8 -privilege%2:41:00:: 02453692 1 0 -privilege_against_self_incrimination%1:07:00:: 05184810 1 0 -privilege_of_the_floor%1:07:00:: 05179410 1 0 -privileged%3:00:00:: 01864123 1 4 -privileged%5:00:00:exclusive:00 01863066 3 0 -privileged%5:00:00:exempt:00 02366078 2 0 -privily%4:02:00:: 00277064 1 0 -privine%1:06:00:: 03807052 1 0 -privy%1:06:00:: 03860404 2 1 -privy%1:06:01:: 04446276 1 1 -privy%5:00:00:informed:00 01308089 2 0 -privy%5:00:00:private:00 01860580 1 0 -privy_council%1:14:00:: 08311687 1 0 -privy_purse%1:21:00:: 13294302 1 0 -prix_de_rome%1:10:00:: 07269163 1 0 -prix_fixe%1:10:00:: 06497233 1 0 -prix_fixe%3:00:00:: 02453035 1 0 -prix_goncourt%1:10:00:: 07269430 1 0 -prize%1:06:00:: 04487996 3 0 -prize%1:21:00:: 13268146 1 9 -prize%1:21:01:: 13262663 2 1 -prize%2:31:00:: 00694068 3 0 -prize%2:35:00:: 01593254 2 0 -prize%2:40:00:: 02256109 1 1 -prize%5:00:00:superior:02 02342899 1 0 -prize_fight%1:11:00:: 07471806 1 0 -prize_money%1:21:00:: 13268758 1 1 -prize_ring%1:06:00:: 02885663 1 0 -prize_winner%1:18:00:: 09627807 1 0 -prizefight%1:11:00:: 07471806 1 1 -prizefight%2:35:00:: 01420451 1 0 -prizefighter%1:18:01:: 10477077 1 0 -prizewinning%5:00:00:best:00 00228025 1 1 -prn%4:02:00:: 00181418 1 0 -pro%1:10:00:: 06649223 2 0 -pro%1:18:00:: 10480583 1 1 -pro%3:00:00:: 01817301 1 5 -pro%4:02:00:: 00289204 1 0 -pro-american%3:01:00:: 02927944 1 0 -pro-choice%3:00:00:: 02594006 1 0 -pro-choice_faction%1:14:00:: 08417281 1 0 -pro-inflammatory%5:00:00:unhealthy:00 01178024 1 0 -pro-life%3:00:00:: 02594159 1 0 -pro-life_faction%1:14:00:: 08417436 1 0 -pro-lifer%1:18:00:: 10458356 1 0 -pro_bono%5:00:00:unpaid:00 01710709 1 0 -pro_forma%4:02:00:: 00260328 1 0 -pro_forma%5:00:00:formal:01 01043619 1 0 -pro_rata%4:02:00:: 00260532 1 2 -pro_re_nata%4:02:00:: 00181418 1 0 -pro_tem%4:02:00:: 00257182 1 0 -pro_tem%5:00:00:impermanent:00 01757608 1 1 -pro_tempore%4:02:00:: 00257182 1 0 -pro_tempore%5:00:00:impermanent:00 01757608 1 0 -proaccelerin%1:27:00:: 15071366 1 0 -proactive%3:00:00:: 02592147 1 0 -proactive%5:00:00:active:03 00039394 2 0 -probabilism%1:09:00:: 05975258 2 0 -probabilism%1:09:01:: 06160781 1 0 -probabilistic%3:01:00:: 03102871 2 0 -probabilistic%3:01:01:: 03103058 1 0 -probabilistically%4:02:00:: 00432054 1 0 -probability%1:07:00:: 04756172 2 2 -probability%1:07:01:: 05091770 1 30 -probability_theorist%1:18:00:: 10477465 1 0 -probability_theory%1:09:00:: 06037108 1 0 -probable%1:18:00:: 10458024 1 0 -probable%3:00:00:: 01413247 1 11 -probable%5:00:00:likely:00 01412134 2 2 -probable_cause%1:09:00:: 05824514 1 0 -probably%4:02:00:: 00138611 1 112 -probably%4:02:01:: 00296131 2 0 -probate%1:04:00:: 00154894 2 0 -probate%1:10:00:: 06544432 1 0 -probate%2:41:00:: 02465297 2 0 -probate%2:42:00:: 02643872 1 0 -probate_court%1:14:00:: 08335087 1 0 -probate_will%1:10:00:: 06544432 1 0 -probation%1:04:00:: 01258251 3 0 -probation%1:28:00:: 15297303 2 0 -probation%1:28:01:: 15297472 1 0 -probation_officer%1:18:00:: 10477839 1 0 -probationary%5:00:00:conditional:00 00556318 1 0 -probationer%1:18:00:: 10477585 2 0 -probationer%1:18:01:: 10477713 1 0 -probative%5:00:00:significant:00 02163774 1 0 -probatory%5:00:00:significant:00 02163774 1 0 -probe%1:04:00:: 00947041 3 0 -probe%1:04:01:: 00641522 4 0 -probe%1:06:00:: 04006411 2 0 -probe%1:09:00:: 05800611 1 0 -probe%2:32:00:: 00788564 1 7 -probe%2:35:00:: 01226875 2 2 -probenecid%1:06:00:: 04006584 1 0 -probing%5:00:00:inquiring:00 00879918 1 0 -probiotic%1:05:00:: 01349495 1 0 -probiotic_bacterium%1:05:00:: 01349495 1 0 -probiotic_flora%1:05:00:: 01349495 1 0 -probiotic_microflora%1:05:00:: 01349495 1 0 -probity%1:07:00:: 04869811 1 0 -problem%1:09:00:: 05687338 3 17 -problem%1:10:00:: 06784003 2 38 -problem%1:26:00:: 14410605 1 151 -problem-oriented_language%1:10:00:: 06899110 1 0 -problem_solver%1:18:00:: 10458111 1 0 -problem_solving%1:09:00:: 05796750 2 0 -problem_solving%1:09:01:: 06140437 1 0 -problematic%5:00:00:difficult:00 00746451 2 0 -problematic%5:00:00:questionable:00 01916784 1 0 -problematical%5:00:00:difficult:00 00746451 2 0 -problematical%5:00:00:questionable:00 01916784 1 0 -problematically%4:02:00:: 00432218 1 0 -proboscidea%1:05:00:: 02502902 2 0 -proboscidea%1:20:00:: 12874996 1 0 -proboscidea_arenaria%1:20:00:: 12875697 1 0 -proboscidea_fragrans%1:20:00:: 12875861 1 0 -proboscidea_louisianica%1:20:00:: 12875269 1 0 -proboscidean%1:05:00:: 02503127 1 0 -proboscidian%1:05:00:: 02503127 1 0 -proboscis%1:05:00:: 02452967 2 0 -proboscis%1:08:00:: 05599084 1 0 -proboscis_flower%1:20:00:: 12875269 1 0 -proboscis_monkey%1:05:00:: 02489166 1 0 -proboscis_worm%1:05:00:: 01928517 1 0 -procaine%1:06:00:: 04006727 1 0 -procaine_hydrochloride%1:06:00:: 04006953 1 0 -procarbazine%1:06:00:: 04007126 1 0 -procardia%1:06:00:: 03824014 1 0 -procaryote%1:05:00:: 01415920 1 0 -procaryotic%3:01:00:: 02860183 1 0 -procavia%1:05:00:: 02372813 1 0 -procavia_capensis%1:05:00:: 02372952 1 0 -procaviidae%1:05:00:: 02372397 1 0 -procedural%3:00:00:: 00055340 2 0 -procedural%3:01:00:: 03103198 1 4 -procedure%1:04:00:: 01023820 1 41 -procedure%1:04:01:: 01023636 4 0 -procedure%1:04:02:: 00577068 2 15 -procedure%1:10:00:: 06582403 3 0 -proceed%2:30:00:: 00341560 4 3 -proceed%2:32:00:: 00781000 1 19 -proceed%2:38:00:: 01995549 2 17 -proceed%2:41:00:: 02372605 3 8 -proceed%2:42:00:: 02684924 5 1 -proceeding%1:04:00:: 01184814 1 1 -proceedings%1:04:00:: 01184814 1 5 -proceedings%1:10:00:: 06508112 2 0 -proceeds%1:21:00:: 13260190 1 3 -procellaria%1:05:00:: 02059393 1 0 -procellaria_aequinoctialis%1:05:00:: 02059541 1 0 -procellariidae%1:05:00:: 02058933 1 0 -procellariiform_seabird%1:05:00:: 02057898 1 0 -procellariiformes%1:05:00:: 02057478 1 0 -process%1:03:00:: 00029677 6 0 -process%1:04:00:: 01023820 1 63 -process%1:08:00:: 05470189 5 0 -process%1:09:00:: 05701363 2 3 -process%1:09:01:: 05701738 4 0 -process%1:10:00:: 06556692 3 0 -process%2:30:00:: 00515154 1 2 -process%2:31:00:: 00638837 3 1 -process%2:35:00:: 01438681 7 0 -process%2:36:00:: 01668603 6 0 -process%2:38:00:: 01996735 5 0 -process%2:41:00:: 02582042 4 0 -process%2:41:01:: 02438535 2 1 -process-server%1:18:00:: 10478118 1 1 -process_cheese%1:13:00:: 07851926 1 0 -process_of_monition%1:10:00:: 06558434 1 0 -process_printing%1:10:00:: 06679041 1 0 -processed%3:00:00:: 01951684 3 0 -processed%3:00:02:: 01953297 2 0 -processed%5:00:00:prepared:00 01844585 1 1 -processed_cheese%1:13:00:: 07851926 1 0 -processing%1:22:00:: 13541167 1 2 -processing_time%1:28:00:: 15297672 1 0 -procession%1:04:00:: 00296585 2 0 -procession%1:04:01:: 00282050 3 0 -procession%1:11:00:: 07327288 1 0 -processional%1:10:00:: 07034409 1 0 -processional%3:01:00:: 03103380 2 0 -processional%3:01:01:: 03103520 1 0 -processional_march%1:10:00:: 07058871 1 0 -processor%1:06:00:: 02995345 3 0 -processor%1:14:00:: 08065937 1 1 -processor%1:18:00:: 10477955 2 0 -processus_coronoideus%1:08:00:: 05472032 1 0 -prochlorperazine%1:06:00:: 04007239 1 0 -prociphilus%1:05:00:: 02254110 1 0 -prociphilus_tessellatus%1:05:00:: 02254246 1 0 -proclaim%2:32:00:: 00977336 2 10 -proclaim%2:32:01:: 00860620 4 1 -proclaim%2:32:02:: 00978173 1 13 -proclaim%2:32:03:: 01017001 3 3 -proclaimed%5:00:01:declared:00 00687750 1 2 -proclamation%1:04:00:: 01266491 2 0 -proclamation%1:10:00:: 06726158 1 6 -proclivity%1:09:00:: 06199561 1 0 -procnias%1:05:00:: 01551915 1 0 -proconsul%1:05:00:: 02478875 3 0 -proconsul%1:18:00:: 10478293 2 0 -proconsul%1:18:02:: 10478462 1 0 -proconsular%3:01:00:: 03103655 1 0 -proconsulate%1:04:00:: 00597821 1 0 -proconsulship%1:04:00:: 00597821 1 0 -proconvertin%1:27:00:: 15071503 1 0 -procrastinate%2:42:00:: 02642238 1 1 -procrastinate%2:42:01:: 02642610 2 0 -procrastination%1:04:00:: 01067362 1 1 -procrastination%1:07:00:: 05062370 2 0 -procrastinator%1:18:00:: 10478626 1 0 -procreate%2:29:00:: 00055142 1 0 -procreation%1:04:00:: 00849523 1 5 -procreative%5:00:00:fruitful:00 01081592 1 1 -procrustean%3:01:00:: 02761686 1 0 -procrustean_bed%1:10:00:: 07261782 1 0 -procrustean_rule%1:10:00:: 07261782 1 0 -procrustean_standard%1:10:00:: 07261782 1 0 -procrustes%1:18:00:: 09569709 1 0 -proctalgia%1:26:00:: 14330265 1 0 -proctitis%1:26:00:: 14354257 1 0 -proctocele%1:26:00:: 14297150 1 0 -proctologist%1:18:00:: 10478827 1 0 -proctology%1:09:00:: 06062225 1 0 -proctoplasty%1:04:00:: 00690933 1 0 -proctor%1:18:00:: 10478960 1 0 -proctor%2:41:00:: 02593354 1 0 -proctorship%1:04:00:: 00597957 1 0 -proctoscope%1:06:00:: 04007415 1 0 -proctoscopy%1:04:00:: 00643067 1 0 -procumbent%5:00:00:unerect:00 01239410 1 0 -procurable%5:00:00:available:00 00184363 1 0 -procural%1:04:00:: 00083729 1 0 -procurance%1:04:00:: 00083729 1 0 -procurator%1:18:00:: 10479135 2 0 -procurator%1:18:01:: 10486909 1 0 -procure%2:34:00:: 01180975 2 0 -procure%2:40:00:: 02238770 1 3 -procurement%1:04:00:: 00083729 1 8 -procurer%1:18:00:: 10433737 1 1 -procurer%1:18:01:: 10479328 2 0 -procuress%1:18:00:: 10479493 1 0 -procursive_epilepsy%1:26:00:: 14089592 1 0 -procyclidine%1:06:00:: 04007510 1 0 -procyon%1:05:00:: 02507863 2 0 -procyon%1:17:00:: 09399485 1 0 -procyon_cancrivorus%1:05:00:: 02508346 1 0 -procyon_lotor%1:05:00:: 02508213 1 0 -procyonid%1:05:00:: 02507649 1 0 -procyonidae%1:05:00:: 02507337 1 0 -prod%1:06:00:: 04007664 2 0 -prod%1:10:00:: 07252378 1 0 -prod%2:35:00:: 01230710 2 2 -prod%2:35:01:: 01229976 3 0 -prod%2:35:02:: 01231252 1 2 -prodding%1:10:00:: 07252378 1 0 -prodigal%1:18:00:: 10479561 1 0 -prodigal%5:00:00:wasteful:00 02422242 1 0 -prodigality%1:04:00:: 00743641 2 0 -prodigality%1:07:00:: 04894807 1 0 -prodigally%4:02:01:: 00432446 1 0 -prodigious%5:00:00:extraordinary:00 01676026 3 0 -prodigious%5:00:00:large:00 01384730 1 4 -prodigious%5:00:00:significant:00 02164165 2 0 -prodigiously%4:02:00:: 00432629 1 0 -prodigy%1:09:00:: 05939244 3 0 -prodigy%1:11:00:: 07286368 2 0 -prodigy%1:18:00:: 10479783 1 0 -prodroma%1:26:00:: 14303877 1 0 -prodromal%3:01:00:: 02784701 1 0 -prodrome%1:26:00:: 14303877 1 0 -prodromic%3:01:00:: 02784701 1 0 -produce%1:13:00:: 07705711 1 2 -produce%2:29:00:: 00094460 7 0 -produce%2:36:00:: 01621555 2 38 -produce%2:36:02:: 01752495 1 69 -produce%2:36:03:: 01752884 3 26 -produce%2:36:05:: 01739814 5 6 -produce%2:39:00:: 02157100 6 5 -produce%2:39:01:: 02141146 4 12 -producer%1:11:00:: 07328756 3 2 -producer%1:18:01:: 10292316 1 9 -producer%1:18:02:: 10480018 2 5 -producer_gas%1:27:00:: 14862481 1 0 -producer_price_index%1:10:00:: 06641524 1 0 -product%1:06:00:: 04007894 2 25 -product%1:06:01:: 03748886 1 52 -product%1:09:00:: 05859630 3 8 -product%1:14:00:: 07999068 6 0 -product%1:19:00:: 11415842 5 0 -product%1:27:00:: 14997699 4 2 -product-moment_correlation_coefficient%1:09:00:: 06033427 1 0 -product_development%1:04:00:: 00250882 1 0 -product_introduction%1:04:00:: 00238871 1 0 -product_line%1:06:00:: 03671668 1 0 -product_research%1:04:00:: 00640560 1 0 -production%1:04:00:: 00912960 1 36 -production%1:04:01:: 00522736 4 2 -production%1:04:02:: 00913705 7 0 -production%1:04:03:: 00913585 8 0 -production%1:06:00:: 04007894 3 6 -production%1:10:00:: 07006951 2 12 -production%1:10:01:: 07213989 6 0 -production%1:23:00:: 13758745 5 0 -production_cost%1:21:00:: 13302775 1 0 -production_line%1:06:00:: 04008385 1 0 -production_order%1:10:00:: 06530143 1 0 -productive%3:00:00:: 01865197 1 8 -productive%3:00:04:: 01867295 2 1 -productive%5:00:00:fruitful:00 01081340 4 0 -productive%5:00:00:successful:00 02332604 3 1 -productively%4:02:00:: 00213875 1 0 -productiveness%1:07:01:: 05147940 1 0 -productivity%1:07:00:: 05147940 1 13 -productivity%1:24:00:: 13824500 2 0 -proenzyme%1:27:00:: 14691445 1 0 -prof%1:18:00:: 10480730 1 0 -profanation%1:04:00:: 00746587 1 0 -profanation%1:04:01:: 00273319 2 0 -profanatory%5:00:00:profane:00 02057444 1 0 -profane%2:41:00:: 02568065 2 0 -profane%2:41:01:: 02579447 1 0 -profane%3:00:00:: 02056880 2 0 -profane%5:00:00:dirty:02 00425002 1 1 -profane%5:00:00:irreverent:00 02012748 4 0 -profane%5:00:00:unholy:00 02054926 3 0 -profaned%5:00:00:desecrated:00 00574010 1 0 -profanely%4:02:00:: 00432751 2 0 -profanely%4:02:01:: 00432907 1 1 -profaneness%1:07:00:: 04856014 2 0 -profaneness%1:09:00:: 06207874 1 0 -profanity%1:10:00:: 07128527 1 1 -profess%2:32:00:: 00819756 1 4 -profess%2:32:01:: 00888326 6 0 -profess%2:32:02:: 00818553 3 1 -profess%2:32:03:: 00760735 2 3 -profess%2:32:04:: 00756649 7 0 -profess%2:32:08:: 00888657 5 0 -profess%2:32:10:: 01010690 4 0 -professed%5:00:00:declared:00 00688074 3 0 -professed%5:00:00:professional:01 01869258 1 0 -professed%5:00:01:declared:00 00688296 2 0 -professedly%4:02:00:: 00189278 1 2 -professedly%4:02:01:: 00276528 2 0 -professing%1:10:00:: 06732925 1 0 -profession%1:04:00:: 00609953 2 5 -profession%1:10:00:: 06732925 3 0 -profession%1:10:01:: 06685040 4 0 -profession%1:14:00:: 08112096 1 7 -professional%1:18:00:: 10480253 1 3 -professional%1:18:01:: 10298482 3 1 -professional%1:18:02:: 10480583 2 1 -professional%3:00:01:: 01868724 1 12 -professional%3:00:02:: 01870100 3 6 -professional%3:01:00:: 02839505 4 4 -professional%3:01:01:: 02839695 2 11 -professional%5:00:00:white-collar:00 02556402 5 1 -professional_association%1:14:00:: 08242675 1 0 -professional_baseball%1:04:00:: 00474657 1 0 -professional_basketball%1:04:00:: 00481803 1 0 -professional_boxing%1:04:00:: 00446311 1 0 -professional_dancer%1:18:00:: 09989502 1 0 -professional_football%1:04:00:: 00470554 1 0 -professional_golf%1:04:00:: 00466273 1 0 -professional_golfer%1:18:00:: 10137367 1 0 -professional_life%1:04:00:: 00606227 1 0 -professional_organisation%1:14:00:: 08266070 1 0 -professional_organization%1:14:00:: 08266070 1 0 -professional_person%1:18:00:: 10480253 1 0 -professional_relation%1:24:00:: 13837439 1 0 -professional_tennis%1:04:00:: 00483205 1 0 -professional_tennis_player%1:18:00:: 10701644 1 0 -professional_wrestling%1:04:00:: 00448126 1 0 -professionalisation%1:22:00:: 13541491 1 0 -professionalise%2:30:00:: 00583242 2 0 -professionalise%2:30:01:: 00583523 1 0 -professionalism%1:09:00:: 05641089 1 0 -professionalization%1:22:00:: 13541491 1 0 -professionalize%2:30:00:: 00583242 2 0 -professionalize%2:30:01:: 00583523 1 0 -professionally%4:02:00:: 00130432 1 2 -professor%1:18:00:: 10480730 1 19 -professorial%3:01:00:: 02784873 1 0 -professorially%4:02:00:: 00125238 1 0 -professorship%1:04:00:: 00598056 1 1 -proffer%1:10:00:: 07162680 1 0 -proffer%2:40:00:: 02297142 1 2 -proficiency%1:07:00:: 05154114 1 1 -proficiency%1:09:00:: 05643190 2 0 -proficient%3:01:00:: 02809220 2 0 -proficient%5:00:00:skilled:00 02226162 1 3 -proficiently%4:02:00:: 00432997 1 0 -profile%1:10:00:: 06516404 3 1 -profile%1:10:01:: 07002599 1 10 -profile%1:15:00:: 08548415 5 0 -profile%1:15:01:: 08613202 2 3 -profile%1:26:00:: 14434329 4 0 -profile%2:36:00:: 01680913 2 0 -profile%2:36:01:: 01699346 1 0 -profiling%1:10:00:: 06886818 1 0 -profit%1:07:00:: 05157574 2 1 -profit%1:21:00:: 13258362 1 6 -profit%2:40:00:: 02278830 2 2 -profit%2:40:02:: 02290461 1 2 -profit-and-loss_statement%1:21:00:: 13355301 1 0 -profit-maximising%5:00:00:increasing:00 02536365 1 0 -profit-maximizing%5:00:00:increasing:00 02536365 1 2 -profit_and_loss%1:21:00:: 13407844 1 1 -profit_and_loss_account%1:21:00:: 13407844 1 0 -profit_margin%1:21:00:: 13261242 1 3 -profit_sharing%1:21:00:: 13289020 1 1 -profit_taker%1:18:00:: 10481167 1 0 -profitability%1:07:00:: 05157866 1 1 -profitable%3:00:00:: 01870889 1 4 -profitableness%1:07:00:: 05157866 2 0 -profitableness%1:07:01:: 05160796 1 0 -profitably%4:02:00:: 00213875 1 3 -profiteer%1:18:00:: 10481003 1 0 -profiteer%2:40:00:: 02279615 1 0 -profiterole%1:13:00:: 07628328 1 0 -profitless%5:00:00:unrewarding:00 02016295 1 0 -profitlessly%4:02:00:: 00433120 1 0 -profits%1:21:01:: 13258362 1 6 -profits%1:21:02:: 13259917 2 0 -profligacy%1:04:00:: 00748307 2 0 -profligacy%1:07:00:: 04894807 1 0 -profligate%1:18:00:: 10505942 1 0 -profligate%1:18:01:: 10479561 2 0 -profligate%5:00:00:immoral:00 01549568 2 0 -profligate%5:00:00:wasteful:00 02422242 1 0 -profligately%4:02:00:: 00500447 1 0 -profound%3:00:00:: 01872745 1 12 -profound%5:00:00:deep:01 00691141 6 0 -profound%5:00:00:deep:02 00693020 5 0 -profound%5:00:00:intense:00 01512645 2 8 -profound%5:00:00:significant:00 02162934 3 0 -profound%5:00:02:deep:02 00693237 4 0 -profoundly%4:02:00:: 00173353 1 5 -profoundly_deaf%5:00:00:deaf:00 00682521 1 0 -profoundness%1:07:00:: 05134880 4 0 -profoundness%1:07:01:: 05094863 5 0 -profoundness%1:09:00:: 05613962 3 0 -profoundness%1:09:01:: 05926358 2 0 -profoundness%1:26:00:: 13942554 1 0 -profundity%1:07:00:: 05134880 4 0 -profundity%1:07:01:: 05094863 2 1 -profundity%1:09:00:: 05613962 3 0 -profundity%1:09:01:: 05926358 1 1 -profuse%5:00:00:abundant:00 00015247 1 1 -profusely%4:02:00:: 00214554 1 1 -profuseness%1:07:00:: 05115804 1 0 -profusion%1:07:00:: 05115804 1 1 -progenitor%1:18:00:: 10126806 1 0 -progeny%1:18:00:: 10373998 1 0 -progeria%1:26:00:: 14468348 1 0 -progestational%3:01:00:: 02983236 2 0 -progestational%3:01:01:: 02983431 1 0 -progesterone%1:27:00:: 14746048 1 0 -progestin%1:27:00:: 14747338 1 0 -progestogen%1:27:00:: 14747338 1 0 -prognathic%3:00:00:: 01875560 1 0 -prognathism%1:26:00:: 14579063 1 0 -prognathous%3:00:00:: 01875560 1 0 -progne%1:05:00:: 01596479 1 0 -progne_subis%1:05:00:: 01596608 1 0 -prognosis%1:04:00:: 00153665 2 0 -prognosis%1:10:00:: 06749881 1 0 -prognostic%1:11:00:: 07286368 1 0 -prognostic%5:00:00:prophetic:00 01883325 1 0 -prognosticate%2:32:00:: 00917772 1 0 -prognosticate%2:32:01:: 00871942 2 0 -prognostication%1:09:00:: 05775407 3 0 -prognostication%1:10:00:: 06748969 2 0 -prognostication%1:11:00:: 07286368 1 0 -prognosticative%5:00:00:prophetic:00 01883325 1 0 -prognosticator%1:18:00:: 10102506 1 0 -program%1:04:00:: 00551215 8 0 -program%1:09:00:: 05898568 1 106 -program%1:09:01:: 05899087 2 36 -program%1:10:00:: 06748466 5 0 -program%1:10:01:: 06619428 3 5 -program%1:10:02:: 06568978 7 0 -program%1:10:04:: 06501311 4 3 -program%1:10:05:: 06676416 6 0 -program%2:32:00:: 00795264 1 4 -program%2:36:00:: 01747717 2 3 -program_library%1:14:00:: 07977592 1 0 -program_line%1:10:00:: 06584891 1 0 -program_music%1:10:00:: 07281219 1 0 -program_trading%1:04:00:: 00079752 1 0 -programing%1:04:00:: 00928947 2 0 -programing%1:04:01:: 01144355 1 0 -programing_language%1:10:00:: 06898352 1 0 -programma%1:10:00:: 06541726 1 0 -programme%1:04:00:: 00551215 7 0 -programme%1:09:00:: 05898568 6 0 -programme%1:09:01:: 05899087 5 0 -programme%1:10:00:: 06748466 1 0 -programme%1:10:01:: 06619428 3 0 -programme%1:10:02:: 06568978 4 0 -programme%1:10:05:: 06676416 2 0 -programme%2:32:00:: 00795264 2 0 -programme%2:36:00:: 01747717 1 0 -programme_music%1:10:00:: 07281219 1 0 -programmed_cell_death%1:19:00:: 11486381 1 0 -programmer%1:18:00:: 10481268 1 0 -programming%1:04:00:: 00928947 2 0 -programming%1:04:01:: 01144355 1 2 -programming_error%1:11:00:: 07300092 1 0 -programming_language%1:10:00:: 06898352 1 0 -progress%1:04:00:: 00282050 2 6 -progress%1:04:01:: 00249501 1 24 -progress%1:11:00:: 07445265 3 5 -progress%2:30:00:: 00248659 1 12 -progress%2:30:01:: 00252990 3 0 -progress%2:38:00:: 01992503 2 3 -progress_report%1:10:00:: 07219923 1 0 -progress_to%2:38:00:: 02022162 1 1 -progression%1:04:00:: 00282050 3 1 -progression%1:11:00:: 07445265 2 1 -progression%1:14:00:: 08458912 1 2 -progressive%1:18:00:: 10256756 2 0 -progressive%1:24:00:: 13805734 1 0 -progressive%3:00:01:: 01876006 1 3 -progressive%3:00:02:: 01877617 3 0 -progressive%5:00:00:active:02 00037653 6 0 -progressive%5:00:00:increasing:00 02536518 4 0 -progressive%5:00:00:liberal:00 00576189 2 3 -progressive%5:00:00:ordered:00 01668011 5 0 -progressive_aspect%1:24:00:: 13805336 1 0 -progressive_emphysematous_necrosis%1:26:00:: 14313943 1 0 -progressive_party%1:14:00:: 08262695 1 0 -progressive_rock%1:10:00:: 07065333 1 0 -progressive_tax%1:21:00:: 13314495 1 0 -progressive_tense%1:24:00:: 13805734 1 0 -progressive_vaccinia%1:26:00:: 14089719 1 0 -progressively%4:02:01:: 00059854 1 3 -progressiveness%1:07:00:: 04737743 1 0 -progressivism%1:09:00:: 06219711 1 2 -progressivity%1:07:00:: 04737743 1 0 -progymnosperm%1:20:00:: 11596344 1 0 -prohibit%2:32:00:: 00795863 1 8 -prohibited%5:00:00:illegal:00 01402498 2 0 -prohibited%5:00:00:impermissible:00 01761375 1 0 -prohibition%1:04:00:: 00201923 5 0 -prohibition%1:10:00:: 06542047 2 2 -prohibition%1:10:01:: 07255174 4 0 -prohibition%1:10:02:: 06541820 1 3 -prohibition%1:28:00:: 15294382 3 1 -prohibition_era%1:28:00:: 15294382 1 1 -prohibition_party%1:14:00:: 08262937 1 0 -prohibitionist%1:18:00:: 10037922 1 0 -prohibitive%5:00:00:preventive:00 01765498 1 0 -prohibitively%4:02:00:: 00433247 1 0 -prohibitory%5:00:00:preventive:00 01765498 1 0 -proinflammatory%5:00:00:unhealthy:00 01178024 1 0 -project%1:04:00:: 00795720 1 23 -project%1:09:00:: 05910453 2 1 -project%2:31:00:: 00706243 8 1 -project%2:31:01:: 00729642 12 0 -project%2:32:00:: 00743223 1 7 -project%2:35:00:: 01515791 11 0 -project%2:35:01:: 01436015 3 5 -project%2:36:00:: 01635432 9 0 -project%2:36:01:: 01638368 7 1 -project%2:36:03:: 01632897 10 0 -project%2:36:08:: 01690972 6 1 -project%2:39:00:: 02180747 5 1 -project%2:39:01:: 02138075 4 2 -project%2:42:00:: 02713372 2 6 -projected%5:00:00:protrusive:00 01353982 1 1 -projectile%1:06:00:: 04008634 1 2 -projectile%1:06:01:: 04099429 2 0 -projectile%5:00:00:dynamic:00 00809622 1 0 -projecting%5:00:00:protrusive:00 01353982 1 0 -projection%1:04:00:: 00116687 10 0 -projection%1:04:02:: 00407090 9 0 -projection%1:06:00:: 04008947 4 1 -projection%1:06:01:: 04009382 8 0 -projection%1:09:00:: 05910453 3 1 -projection%1:09:01:: 05775293 1 9 -projection%1:10:00:: 06887599 2 3 -projection%1:19:00:: 11512331 7 0 -projection%1:22:00:: 13541798 6 0 -projection%1:25:00:: 13919685 5 0 -projection_screen%1:06:00:: 04152829 1 0 -projectionist%1:18:00:: 10481561 1 0 -projective_device%1:04:00:: 01007609 1 0 -projective_geometry%1:09:00:: 06012340 1 0 -projective_technique%1:04:00:: 01007609 1 0 -projective_test%1:04:00:: 01007609 1 0 -projector%1:06:00:: 04009552 2 0 -projector%1:06:01:: 04009801 1 0 -prokaryote%1:05:00:: 01415920 1 0 -prokaryotic%3:01:00:: 02860183 1 0 -prokayotae%1:05:00:: 01341876 1 0 -prokhorov%1:18:00:: 11246718 1 0 -prokofiev%1:18:00:: 11247002 1 0 -prolactin%1:27:00:: 14749543 1 0 -prolamine%1:27:00:: 15026420 1 0 -prolapse%1:26:00:: 14559208 1 0 -prolapse%2:38:00:: 01833906 1 0 -prolapsus%1:26:00:: 14559208 1 0 -prolate%3:00:00:: 02050116 1 0 -prolate%5:00:00:rounded:00 02046199 2 0 -prolate_cycloid%1:25:00:: 13909071 1 0 -prole%1:18:00:: 10481711 1 0 -prolegomenon%1:10:00:: 06398270 1 0 -prolepsis%1:10:00:: 07105238 1 0 -proletarian%1:18:00:: 10481711 1 0 -proletarian%5:00:00:lower-class:00 00259957 1 0 -proletariat%1:14:00:: 08180639 1 1 -proliferate%2:30:00:: 00310635 1 0 -proliferate%2:30:01:: 00247830 2 0 -proliferation%1:22:00:: 13541975 1 3 -proliferation%1:22:01:: 13542114 2 0 -prolific%5:00:00:fruitful:00 01082115 2 0 -prolific%5:00:00:productive:00 01865967 1 1 -prolificacy%1:07:00:: 05147586 1 0 -proline%1:27:00:: 14684798 1 0 -prolix%3:00:00:: 00548781 1 0 -prolixity%1:10:00:: 07090108 1 0 -prolixness%1:10:00:: 07090108 1 0 -prolog%1:10:00:: 06902193 1 0 -prologise%2:32:00:: 00902289 1 0 -prologize%2:32:00:: 00902289 1 0 -prologue%1:10:00:: 07009421 1 0 -prologuize%2:32:00:: 00902289 1 0 -prolong%2:30:00:: 00317888 1 3 -prolong%2:42:00:: 02679530 2 0 -prolongation%1:04:00:: 01018366 1 1 -prolongation%1:07:00:: 05133535 2 0 -prolongation%1:07:01:: 05051896 3 0 -prolonge%1:06:00:: 04009923 1 0 -prolonge_knot%1:06:00:: 04010057 1 0 -prolonged%5:00:00:long:01 01434218 2 0 -prolonged%5:00:00:long:02 01439155 1 5 -prolonged_interrogation%1:04:00:: 00423769 1 0 -prolusion%1:04:00:: 01144716 2 0 -prolusion%1:10:00:: 06397903 1 0 -prolusory%3:01:00:: 02785018 1 0 -prom%1:11:00:: 07449316 1 0 -promenade%1:04:00:: 00284101 5 0 -promenade%1:04:01:: 00291663 4 0 -promenade%1:04:02:: 00540895 3 0 -promenade%1:06:00:: 04010205 2 0 -promenade%1:11:00:: 07449316 1 0 -promenade%2:38:00:: 01919226 2 0 -promenade%2:38:01:: 01924505 1 0 -promenade_deck%1:06:00:: 03549732 1 0 -promethazine%1:06:00:: 04010348 1 0 -prometheus%1:18:00:: 09575902 1 1 -promethium%1:27:00:: 14651479 1 0 -prominence%1:07:00:: 05169507 2 2 -prominence%1:25:00:: 13894434 3 0 -prominence%1:26:00:: 14433587 1 3 -prominent%5:00:00:conspicuous:00 00580805 1 13 -prominent%5:00:02:conspicuous:00 00579622 2 9 -prominently%4:02:00:: 00208390 1 6 -promiscuity%1:04:00:: 00856342 1 0 -promiscuous%5:00:00:indiscriminate:00 00774006 1 0 -promiscuous%5:00:00:unchaste:00 00361837 2 0 -promiscuously%4:02:00:: 00388944 2 0 -promiscuously%4:02:01:: 00433363 1 0 -promiscuousness%1:04:00:: 00856342 1 0 -promise%1:09:00:: 05950733 2 8 -promise%1:10:00:: 07226545 1 8 -promise%2:32:00:: 00884011 1 26 -promise%2:32:01:: 00884317 2 11 -promise%2:32:02:: 00917772 3 5 -promise%2:42:00:: 02740552 4 3 -promised_land%1:09:00:: 05629104 3 0 -promised_land%1:15:01:: 08565506 2 0 -promised_land%1:15:02:: 08798382 1 0 -promisee%1:18:00:: 10481929 1 0 -promiser%1:18:00:: 10482054 1 0 -promising%5:00:00:auspicious:00 00176387 2 2 -promising%5:00:00:likely:00 01412286 1 9 -promisingly%4:02:00:: 00433514 1 0 -promisor%1:18:00:: 10482054 1 0 -promissory%3:01:00:: 02997740 1 0 -promissory_note%1:21:00:: 13398469 1 0 -promontory%1:17:00:: 09399592 1 0 -promote%2:32:00:: 00976653 3 2 -promote%2:33:00:: 01080235 5 0 -promote%2:33:01:: 01080523 4 0 -promote%2:41:00:: 02397637 2 5 -promote%2:41:01:: 02554922 1 31 -promoter%1:18:00:: 10482220 1 2 -promoter%1:18:01:: 10593745 2 0 -promotion%1:04:00:: 00198451 2 1 -promotion%1:04:02:: 00249780 4 0 -promotion%1:10:00:: 07247071 1 4 -promotion%1:10:01:: 07251984 3 0 -promotion_system%1:09:00:: 05905027 1 1 -promotional%3:01:00:: 03103815 1 2 -promotional%3:01:01:: 03103932 2 0 -promotional_expense%1:21:00:: 13277789 1 0 -promotional_material%1:10:00:: 07247071 1 0 -promotive%5:00:00:encouraging:00 00866987 1 0 -prompt%1:10:00:: 07011803 1 0 -prompt%1:10:01:: 06280604 2 0 -prompt%2:32:00:: 00771961 2 2 -prompt%2:32:01:: 00877848 3 0 -prompt%2:36:00:: 01649999 1 9 -prompt%5:00:00:fast:01 00978754 3 0 -prompt%5:00:00:punctual:00 01900630 1 1 -prompt%5:00:00:ready:00 01931676 2 0 -prompt_box%1:06:00:: 04010566 1 0 -prompt_copy%1:10:00:: 07010275 1 0 -promptbook%1:10:00:: 07010275 1 0 -prompter%1:06:00:: 04010779 2 0 -prompter%1:18:00:: 10482414 1 0 -prompter's_box%1:06:00:: 04010566 1 0 -prompting%1:10:00:: 07246582 1 0 -prompting%1:10:01:: 07011803 2 0 -promptitude%1:07:00:: 05060052 1 0 -promptly%4:02:00:: 00105341 2 3 -promptly%4:02:01:: 00105467 3 2 -promptly%4:02:02:: 00105603 1 4 -promptness%1:07:00:: 05060052 1 0 -promptness%1:07:01:: 05047778 2 0 -promulgate%2:32:00:: 00977336 1 1 -promulgate%2:32:01:: 00861560 2 1 -promulgated%5:00:00:publicized:00 00469999 1 0 -promulgation%1:04:00:: 01266491 3 0 -promulgation%1:10:00:: 06746580 1 0 -promulgation%1:10:01:: 06726939 2 0 -promulgator%1:18:00:: 10482587 1 1 -promycelium%1:20:00:: 12994892 1 0 -pronate%2:38:00:: 02081410 1 0 -pronation%1:04:00:: 00343091 1 0 -pronator%1:08:00:: 05292468 1 0 -prone%5:00:00:inclined:02 01292884 1 4 -prone%5:00:00:unerect:00 01239534 2 2 -prone_float%1:04:00:: 00443375 1 0 -proneness%1:07:00:: 04943578 1 0 -prong%1:06:00:: 04010927 1 0 -prongbuck%1:05:00:: 02429456 1 0 -pronged%5:00:00:divided:00 02482509 1 0 -pronged%5:00:02:divided:00 02479602 2 0 -pronghorn%1:05:00:: 02429456 1 0 -pronghorn_antelope%1:05:00:: 02429456 1 0 -prongy%5:00:00:divided:00 02479602 1 0 -pronk%2:38:00:: 01869465 1 0 -pronominal%1:10:00:: 06317351 1 0 -pronominal%3:01:00:: 02937433 1 0 -pronominal_phrase%1:10:00:: 06317351 1 0 -pronoun%1:10:00:: 06325370 1 5 -pronounce%2:32:00:: 00971650 2 3 -pronounce%2:32:01:: 00978549 1 3 -pronounceable%3:00:00:: 01878075 1 0 -pronounced%5:00:00:noticeable:00 01287808 1 4 -pronouncement%1:10:00:: 06727616 1 3 -pronto%4:02:00:: 00105341 1 0 -pronucleus%1:08:00:: 05431762 1 0 -pronunciamento%1:10:00:: 06727224 1 0 -pronunciation%1:10:00:: 07128946 1 0 -pronunciation%1:10:01:: 07128692 2 0 -proof%1:04:00:: 00153961 6 0 -proof%1:06:00:: 04011130 5 0 -proof%1:09:00:: 05824739 1 10 -proof%1:10:00:: 06647614 2 8 -proof%1:10:01:: 06590885 4 0 -proof%1:23:00:: 13780180 3 0 -proof%2:30:00:: 00165971 5 0 -proof%2:30:01:: 00534545 4 0 -proof%2:31:00:: 00628302 3 0 -proof%2:35:00:: 01235558 2 0 -proof%2:36:00:: 01752316 1 0 -proof%5:00:00:impervious:00 01774720 1 0 -proof_spirit%1:13:00:: 07885705 1 0 -proofed%5:00:00:treated:00 01954640 1 0 -proofread%2:31:00:: 00628302 1 0 -proofreader%1:18:00:: 10482768 1 0 -prop%1:06:00:: 04011242 1 1 -prop%1:06:01:: 02692086 3 0 -prop%1:06:02:: 04012260 2 0 -prop%2:35:00:: 01219004 1 1 -prop_root%1:20:00:: 13126856 1 0 -prop_up%2:35:00:: 01219004 1 2 -propaedeutic%1:04:00:: 00891642 1 0 -propaedeutic%5:00:00:preceding:00 00126830 1 0 -propaedeutics%1:04:00:: 00891642 1 0 -propaganda%1:10:00:: 06674542 1 4 -propagandise%2:32:00:: 00970732 2 0 -propagandise%2:32:01:: 00970873 1 0 -propagandist%1:18:00:: 10482921 1 7 -propagandist%3:01:00:: 03022739 1 0 -propagandistic%3:01:00:: 03022739 1 4 -propagandize%2:32:00:: 00970732 2 0 -propagandize%2:32:01:: 00970873 1 0 -propagate%2:29:00:: 00055539 8 0 -propagate%2:29:01:: 00055871 7 0 -propagate%2:32:00:: 00968211 6 0 -propagate%2:35:00:: 01436139 3 0 -propagate%2:35:01:: 01379256 5 0 -propagate%2:35:06:: 01380122 4 0 -propagate%2:38:01:: 02085573 2 0 -propagate%2:40:00:: 02230447 1 0 -propagation%1:04:00:: 00849982 2 1 -propagation%1:10:00:: 06253518 1 1 -propagation%1:19:00:: 11512992 3 0 -propagative%3:01:00:: 02785130 1 0 -propagator%1:18:00:: 10483138 2 0 -propagator%1:18:01:: 10483274 1 0 -propanal%1:27:00:: 14998042 1 0 -propanamide%1:27:00:: 14862640 1 0 -propane%1:27:00:: 14691686 1 0 -propanediol%1:27:00:: 14852003 1 0 -propanoic_acid%1:27:00:: 14862753 1 0 -propanol%1:27:00:: 14998142 1 0 -propanolol%1:06:00:: 04011409 1 0 -propanone%1:27:00:: 14600504 1 0 -proparoxytone%1:10:00:: 06302269 1 0 -propel%2:35:00:: 01511706 1 4 -propel%2:36:00:: 01649999 2 0 -propellant%1:27:00:: 14691822 1 0 -propellant%5:00:00:dynamic:00 00809790 1 0 -propellant_explosive%1:06:00:: 04011609 1 0 -propellent%1:27:00:: 14691822 1 0 -propellent%5:00:00:dynamic:00 00809790 1 0 -propeller%1:06:00:: 04011827 1 1 -propeller_plane%1:06:00:: 04012084 1 0 -propelling%5:00:00:dynamic:00 00809790 1 0 -propellor%1:06:00:: 04011827 1 0 -propenal%1:27:00:: 14998290 1 0 -propene%1:27:00:: 14998826 1 0 -propenoate%1:27:00:: 14998421 1 0 -propenoic_acid%1:27:00:: 14998522 1 0 -propenonitrile%1:27:00:: 14998677 1 0 -propensity%1:07:00:: 04943154 3 0 -propensity%1:09:00:: 06199561 2 0 -propensity%1:12:00:: 07499113 1 0 -propenyl_alcohol%1:27:00:: 14719893 1 0 -proper%3:00:00:: 01878466 1 34 -proper%5:00:00:appropriate:00 00135455 4 2 -proper%5:00:00:real:02 01938322 2 4 -proper%5:00:00:specific:00 01104889 3 2 -proper_fraction%1:23:00:: 13735921 1 0 -proper_name%1:10:00:: 06320004 1 0 -proper_noun%1:10:00:: 06320004 1 0 -properly%4:02:00:: 00196203 1 21 -properly%4:02:01:: 00505450 2 1 -properly_speaking%4:02:00:: 00227023 1 1 -properness%1:07:00:: 04898437 1 0 -propertied%5:00:00:upper-class:00 00261602 1 0 -property%1:06:00:: 04012260 5 0 -property%1:07:00:: 04916342 2 26 -property%1:09:00:: 05849040 4 0 -property%1:15:00:: 08513718 3 4 -property%1:21:00:: 13244109 1 30 -property-owning%5:00:00:upper-class:00 00261602 1 0 -property_line%1:15:00:: 08515349 1 0 -property_man%1:18:00:: 10483395 1 0 -property_master%1:18:00:: 10483395 1 0 -property_owner%1:18:00:: 10245639 1 0 -property_right%1:21:00:: 13241057 1 0 -property_settlement%1:10:00:: 07178337 1 1 -property_tax%1:21:00:: 13312569 1 0 -propertyless%5:00:00:lower-class:00 00260100 1 0 -prophase%1:22:01:: 13542374 2 0 -prophase%1:22:02:: 13542474 1 0 -prophecy%1:09:00:: 05775407 1 2 -prophecy%1:10:00:: 06750154 2 1 -prophesier%1:18:00:: 10483530 1 0 -prophesy%2:32:00:: 00926702 1 1 -prophesy%2:32:01:: 00828003 2 0 -prophet%1:18:00:: 10483530 1 3 -prophet%1:18:01:: 10483890 2 1 -prophetess%1:18:00:: 10483799 1 0 -prophetic%3:00:00:: 01881696 1 3 -prophetical%3:00:00:: 01881696 1 0 -prophetically%4:02:00:: 00248249 1 2 -prophets%1:10:00:: 06452601 1 0 -prophylactic%1:06:00:: 03088164 2 0 -prophylactic%1:06:01:: 04002026 1 0 -prophylactic%5:00:00:healthful:00 01167269 3 0 -prophylactic%5:00:01:protective:00 01887638 2 0 -prophylactic%5:00:02:protective:00 01887819 1 0 -prophylactic_device%1:06:00:: 03096593 1 0 -prophylaxis%1:04:00:: 01079295 1 0 -prophyll%1:20:00:: 13127001 1 0 -propinquity%1:07:00:: 05085867 1 0 -propionaldehyde%1:27:00:: 14998042 1 0 -propionic_acid%1:27:00:: 14862753 1 0 -propitiate%2:32:00:: 00765213 1 0 -propitiation%1:04:00:: 01151407 1 0 -propitiation%1:04:01:: 00095121 2 0 -propitiative%5:00:00:conciliatory:00 00760289 1 0 -propitiatory%3:01:00:: 02940509 1 0 -propitiatory%5:00:00:conciliatory:00 00760289 2 0 -propitious%3:00:00:: 00177186 1 1 -propitiously%4:02:00:: 00217434 1 0 -propitiousness%1:07:00:: 05161150 1 0 -propjet%1:06:00:: 04012482 1 0 -propman%1:18:00:: 10483395 1 0 -proponent%1:18:00:: 09774783 1 1 -proportion%1:07:00:: 05091194 2 7 -proportion%1:07:01:: 05076827 5 0 -proportion%1:24:00:: 13815742 1 9 -proportion%1:24:01:: 13815449 4 0 -proportion%1:25:00:: 13898315 3 1 -proportion%2:30:00:: 00151279 2 0 -proportion%2:30:01:: 00483466 1 0 -proportionable%5:00:00:proportionate:00 00482580 1 0 -proportional%1:09:00:: 05863919 1 0 -proportional%5:00:00:proportionate:00 00482673 1 6 -proportional%5:00:01:proportionate:00 00482948 2 0 -proportional_counter%1:06:00:: 04012665 1 0 -proportional_counter_tube%1:06:00:: 04012665 1 0 -proportional_font%1:10:00:: 06826214 1 0 -proportional_representation%1:04:00:: 01217720 1 0 -proportional_sample%1:09:00:: 06027051 1 0 -proportional_sampling%1:04:00:: 00162417 1 0 -proportional_tax%1:21:00:: 13314652 1 0 -proportionality%1:07:00:: 05076827 2 0 -proportionality%1:24:00:: 13824675 1 1 -proportionally%4:02:00:: 00318303 1 1 -proportionate%3:00:00:: 00482227 1 2 -proportionate%5:00:00:balanced:00 00894029 3 0 -proportionate%5:00:00:commensurate:00 00481737 2 1 -proportionately%4:02:00:: 00318303 1 4 -proportionately%4:02:01:: 00318641 2 0 -proportionately%4:02:03:: 00260532 3 0 -proportionateness%1:24:00:: 13817279 1 0 -proposal%1:10:00:: 07162194 1 17 -proposal%1:10:01:: 07161429 3 0 -proposal%1:10:02:: 07161741 2 1 -proposal_of_marriage%1:10:00:: 07161741 1 0 -propose%2:31:00:: 00706243 2 21 -propose%2:31:01:: 00708980 3 6 -propose%2:32:00:: 00875394 1 23 -propose%2:32:01:: 00879764 5 1 -propose%2:41:00:: 02401523 4 1 -proposer%1:18:00:: 10484526 2 0 -proposer%1:18:01:: 10673451 1 0 -proposition%1:04:00:: 00797581 5 0 -proposition%1:10:00:: 06750804 1 6 -proposition%1:10:01:: 07162680 2 2 -proposition%1:10:02:: 07161429 4 0 -proposition%1:10:03:: 07161912 3 0 -proposition%2:32:00:: 00875951 1 1 -propositional_calculus%1:09:00:: 06165147 1 0 -propositional_logic%1:09:00:: 06165147 1 0 -propositus%1:18:00:: 10484739 1 0 -propound%2:32:00:: 00876332 1 0 -propoxyphene%1:06:00:: 04012852 1 0 -propoxyphene_hydrochloride%1:06:00:: 04012852 1 0 -propping_up%1:04:00:: 01017550 1 0 -proprietary%1:21:00:: 13243780 1 0 -proprietary%3:00:00:: 01109914 1 0 -proprietary_colony%1:14:00:: 08375031 1 0 -proprietary_drug%1:06:00:: 02891566 1 0 -proprietor%1:18:00:: 10388924 1 11 -proprietorship%1:21:00:: 13243780 1 10 -proprietorship_certificate%1:21:00:: 13419178 1 0 -proprietress%1:18:00:: 10458519 1 0 -propriety%1:07:00:: 04898437 1 1 -proprioception%1:09:00:: 05659621 1 0 -proprioceptive%3:01:00:: 02868142 1 0 -proprioceptor%1:08:00:: 05469664 1 0 -proprionamide%1:27:00:: 14862640 1 0 -props%1:04:00:: 01229549 1 0 -propulsion%1:04:00:: 00045250 2 0 -propulsion%1:19:00:: 11497777 1 0 -propulsion_system%1:06:00:: 04013060 1 0 -propulsive%3:01:00:: 03104040 1 0 -propulsive%5:00:00:dynamic:00 00809790 2 0 -propyl%1:27:00:: 14998965 1 0 -propyl_alcohol%1:27:00:: 14998142 1 0 -propyl_group%1:27:00:: 14998965 1 0 -propyl_radical%1:27:00:: 14998965 1 0 -propylene%1:27:00:: 14998826 1 0 -propylene_glycol%1:27:00:: 14852003 1 0 -propylthiouracil%1:27:00:: 14692202 1 1 -prorate%2:31:00:: 00639148 2 0 -prorate%2:31:01:: 00639331 1 0 -proration%1:04:00:: 00807925 1 0 -prorogation%1:04:00:: 01067192 1 0 -prorogue%2:41:00:: 02428771 2 0 -prorogue%2:42:00:: 02642814 1 0 -prosaic%5:00:00:unexciting:00 00922840 3 0 -prosaic%5:00:00:uninteresting:00 01346343 2 0 -prosaic%5:00:00:unrhetorical:00 02018649 1 0 -prosaically%4:02:00:: 00433637 1 0 -prosaicness%1:07:00:: 04795878 1 0 -prosauropoda%1:05:00:: 01708648 1 0 -proscenium%1:06:00:: 04013176 2 0 -proscenium%1:06:01:: 04013362 1 0 -proscenium_arch%1:06:00:: 04013600 1 0 -proscenium_wall%1:06:00:: 04013176 1 0 -prosciutto%1:13:00:: 07670328 1 0 -proscribe%2:32:00:: 00795863 1 2 -proscribed%5:00:00:impermissible:00 01761375 1 0 -proscription%1:04:00:: 00206302 2 0 -proscription%1:10:00:: 06542047 1 0 -prose%1:10:00:: 06376572 1 3 -prose%1:10:01:: 07072434 2 0 -prose_poem%1:10:00:: 06376776 1 1 -prosecute%2:41:00:: 02581477 2 3 -prosecute%2:41:01:: 02581900 1 3 -prosecute%2:41:02:: 02375131 3 0 -prosecuting_attorney%1:18:00:: 10484858 1 2 -prosecuting_officer%1:18:00:: 10484858 1 0 -prosecution%1:04:00:: 01198307 1 3 -prosecution%1:04:01:: 01022008 3 0 -prosecution%1:14:00:: 08064742 2 1 -prosecutor%1:18:00:: 10484858 1 4 -proselyte%1:18:00:: 10485168 1 0 -proselytise%2:32:00:: 00769834 1 0 -proselytism%1:04:00:: 00094954 2 0 -proselytism%1:10:00:: 07246382 1 0 -proselytize%2:32:00:: 00769834 1 0 -prosencephalon%1:08:00:: 05495981 1 0 -proserpina%1:18:00:: 09569985 1 0 -proserpine%1:18:00:: 09569985 1 0 -prosily%4:02:00:: 00433791 1 0 -prosimian%1:05:00:: 02496052 1 0 -prosimii%1:05:00:: 02495789 1 0 -prosiness%1:07:01:: 04795878 1 0 -prosodic%3:01:00:: 02997329 1 1 -prosodic_system%1:10:00:: 07112805 1 0 -prosodion%1:10:00:: 07034409 1 0 -prosody%1:09:00:: 06170025 3 0 -prosody%1:10:00:: 07083732 1 1 -prosody%1:10:01:: 07093895 2 0 -prosom%1:06:00:: 03298211 1 0 -prosopis%1:20:00:: 11765099 1 0 -prosopis_glandulosa%1:20:00:: 11765568 1 0 -prosopis_juliflora%1:20:00:: 11765859 1 0 -prosopis_juliiflora%1:20:00:: 11765859 1 0 -prosopis_pubescens%1:20:00:: 11766189 1 0 -prosopium%1:05:00:: 02539752 1 0 -prosopium_cylindraceum%1:05:00:: 02539894 1 0 -prosopium_williamsonii%1:05:00:: 02540091 1 0 -prosopopoeia%1:10:00:: 07108123 1 0 -prospect%1:04:00:: 00153665 5 0 -prospect%1:09:00:: 05933246 4 0 -prospect%1:09:01:: 05944958 2 3 -prospect%1:18:00:: 09890749 3 1 -prospect%1:26:00:: 14482968 1 10 -prospect%2:31:00:: 00648071 2 0 -prospect%2:39:00:: 02154180 1 0 -prospective%3:00:00:: 01883898 1 6 -prospector%1:18:00:: 10485298 1 0 -prospectus%1:10:00:: 06674947 2 0 -prospectus%1:10:01:: 07165506 1 0 -prosper%2:40:00:: 02342800 1 1 -prosper_meniere%1:18:00:: 11174119 1 0 -prospering%5:00:00:successful:00 02331857 1 0 -prosperity%1:26:00:: 14474052 2 1 -prosperity%1:26:02:: 14489699 1 3 -prospero_lambertini%1:18:00:: 10844031 1 0 -prosperous%5:00:00:happy:00 01149195 3 0 -prosperous%5:00:00:propitious:00 00177547 4 0 -prosperous%5:00:00:rich:00 02022556 1 2 -prosperous%5:00:00:successful:00 02331857 2 1 -prosperously%4:02:01:: 00015860 1 0 -prospicience%1:09:00:: 05805277 1 0 -prospicient%5:00:00:provident:00 01895296 1 0 -prostaglandin%1:08:00:: 05414931 1 0 -prostate%1:08:00:: 05331404 1 0 -prostate%3:01:00:: 02785279 1 0 -prostate_cancer%1:26:00:: 14252067 1 0 -prostate_gland%1:08:00:: 05331404 1 0 -prostate_specific_antigen%1:27:00:: 14736510 1 0 -prostatectomy%1:04:00:: 00687252 1 0 -prostatic%3:01:00:: 02785279 1 0 -prostatic_adenocarcinoma%1:26:00:: 14252067 1 0 -prostatitis%1:26:00:: 14354462 1 0 -prostheon%1:08:00:: 05234911 1 0 -prosthesis%1:06:00:: 04013729 1 0 -prosthetic%3:01:00:: 02785412 2 0 -prosthetic%3:01:01:: 02785525 1 0 -prosthetic_device%1:06:00:: 04013729 1 0 -prosthetics%1:09:00:: 06049091 1 0 -prosthetist%1:18:00:: 10458596 1 0 -prosthion%1:08:00:: 05234911 1 0 -prosthodontia%1:09:00:: 06049250 1 0 -prosthodontic%3:01:00:: 02785647 1 0 -prosthodontics%1:09:00:: 06049250 1 0 -prosthodontist%1:18:00:: 10458696 1 0 -prostigmin%1:06:00:: 03818843 1 0 -prostitute%1:18:00:: 10485440 1 1 -prostitute%2:41:00:: 02554066 1 0 -prostitution%1:04:00:: 00748155 1 2 -prostrate%2:30:00:: 00558219 2 1 -prostrate%2:35:00:: 01498005 3 0 -prostrate%2:38:00:: 02063610 1 1 -prostrate%5:00:01:unerect:00 01239040 1 2 -prostrate%5:00:02:unerect:00 01239534 2 0 -prostration%1:04:00:: 00341109 3 0 -prostration%1:04:01:: 01167548 2 0 -prostration%1:26:00:: 14066203 1 0 -prostyle%5:00:00:apteral:00 00139702 1 0 -prosy%5:00:00:uninteresting:00 01346343 1 0 -protactinium%1:27:00:: 14651708 1 0 -protagonism%1:04:00:: 01214171 1 0 -protagonist%1:18:00:: 10677713 1 1 -protagonist%1:18:01:: 10172793 2 0 -protamine%1:27:00:: 15026508 1 0 -protanopia%1:26:00:: 14154421 1 0 -protanopic%5:00:00:blind:00 02160291 1 0 -protea%1:20:00:: 12214789 1 0 -protea_cynaroides%1:20:00:: 12215022 1 0 -protea_family%1:20:00:: 12213635 1 0 -protea_mellifera%1:20:00:: 12215210 1 0 -proteaceae%1:20:00:: 12213635 1 0 -proteales%1:20:00:: 12213485 1 0 -protean%5:00:00:variable:00 02505141 1 0 -protease%1:27:00:: 14999106 1 5 -protease_inhibitor%1:06:00:: 04013993 1 0 -protect%2:33:00:: 01128193 1 43 -protect%2:33:01:: 01129710 2 1 -protected%3:00:00:: 01884930 1 0 -protected%5:00:00:preserved:01 00737703 2 0 -protecting%5:00:00:protective:00 01888765 1 1 -protection%1:04:00:: 00817680 1 18 -protection%1:04:01:: 00784755 7 0 -protection%1:04:02:: 01214863 5 0 -protection%1:04:03:: 01127874 6 0 -protection%1:06:00:: 04014297 2 5 -protection%1:21:00:: 13344071 3 3 -protection%1:26:00:: 14539960 4 1 -protectionism%1:10:00:: 06658786 1 0 -protectionist%1:18:00:: 10485883 1 0 -protective%3:00:00:: 01887076 1 9 -protective%5:00:00:tender:03 02449177 2 1 -protective%5:00:01:careful:00 00311187 3 0 -protective_coloration%1:07:00:: 04978792 1 0 -protective_cover%1:06:00:: 04014297 1 0 -protective_covering%1:05:00:: 01902568 2 0 -protective_covering%1:06:00:: 04014297 1 0 -protective_embankment%1:06:00:: 03296328 1 0 -protective_fold%1:08:00:: 05313679 1 0 -protective_garment%1:06:00:: 04015204 1 0 -protective_tariff%1:21:00:: 13317611 1 0 -protectively%4:02:00:: 00211397 1 1 -protectiveness%1:07:00:: 04723622 2 0 -protectiveness%1:12:00:: 07545303 1 0 -protector%1:18:00:: 09614684 1 0 -protector_of_boundaries%1:18:00:: 09574657 1 0 -protectorate%1:15:00:: 08627316 1 1 -protectorship%1:04:00:: 00598215 1 0 -protege%1:18:00:: 10485989 1 1 -protegee%1:18:00:: 10486166 1 0 -proteidae%1:05:00:: 01633949 1 0 -protein%1:27:00:: 14728724 1 23 -protein_folding%1:22:00:: 13569226 1 0 -protein_molecule%1:17:00:: 09399899 1 0 -proteinaceous%3:01:00:: 02785757 1 0 -proteinase%1:27:00:: 14999106 1 0 -proteinuria%1:26:00:: 14265958 1 0 -proteles%1:05:00:: 02118058 1 0 -proteles_cristata%1:05:00:: 02118176 1 0 -proteolysis%1:22:00:: 13542688 1 2 -proteolytic%3:01:00:: 03019114 1 1 -proteolytic_enzyme%1:27:00:: 14999106 1 0 -proteome%1:27:00:: 14736854 1 0 -proteomics%1:09:00:: 06077276 1 0 -proteosome%1:06:00:: 04015652 1 0 -proteosome_vaccine%1:06:00:: 04015652 1 0 -proterochampsa%1:05:00:: 01696151 1 0 -proterozoic%1:28:00:: 15128997 1 0 -proterozoic%5:00:00:early:00 00815406 1 0 -proterozoic_aeon%1:28:00:: 15128997 1 0 -proterozoic_eon%1:28:00:: 15128997 1 0 -protest%1:04:00:: 01177033 2 4 -protest%1:10:00:: 07210225 1 11 -protest%1:10:01:: 07210553 3 1 -protest%2:32:00:: 00910135 1 13 -protest%2:32:01:: 01011542 3 1 -protest%2:41:00:: 02521410 2 8 -protest_march%1:04:00:: 01179167 1 0 -protestant%1:14:00:: 08087570 2 5 -protestant%1:18:00:: 09679316 1 15 -protestant%3:01:00:: 02952622 1 27 -protestant%5:00:00:complaining:00 00514175 2 0 -protestant_church%1:14:00:: 08087570 1 0 -protestant_deacon%1:18:00:: 09994673 1 0 -protestant_denomination%1:14:00:: 08147188 1 3 -protestant_episcopal_church%1:14:00:: 08088472 1 0 -protestant_reformation%1:14:00:: 08475929 1 0 -protestantism%1:09:00:: 06228549 1 6 -protestation%1:10:00:: 06733119 2 1 -protestation%1:10:01:: 07210225 1 1 -protester%1:18:00:: 10002760 2 0 -protester%1:18:01:: 10018021 1 0 -proteus%1:05:00:: 01634092 2 0 -proteus%1:18:00:: 09569142 1 0 -proteus_anguinus%1:05:00:: 01634227 1 0 -prothalamion%1:10:00:: 07053364 1 0 -prothalamium%1:10:00:: 07053364 1 0 -prothorax%1:05:00:: 02665687 1 0 -prothrombin%1:27:00:: 15070897 1 0 -prothrombin_accelerator%1:27:00:: 15071366 1 0 -prothrombinase%1:27:00:: 15072099 1 0 -protirelin%1:27:00:: 15074203 1 0 -protist%1:05:00:: 01387451 1 0 -protista%1:05:00:: 01387208 1 0 -protistan%1:05:00:: 01387451 1 0 -protium%1:20:00:: 12693033 1 0 -protium_guianense%1:20:00:: 12693352 1 0 -protium_heptaphyllum%1:20:00:: 12693244 1 0 -proto%5:00:00:early:00 00815586 1 2 -proto-indo_european%1:10:00:: 06942094 1 0 -proto-norse%1:10:00:: 06953054 1 0 -proto-oncogene%1:08:00:: 05440756 1 0 -protoactinium%1:27:00:: 14651708 1 0 -protoanthropology%1:09:00:: 06146260 1 0 -protoarchaeology%1:09:00:: 06146407 1 0 -protoarcheology%1:09:00:: 06146407 1 0 -protoavis%1:05:00:: 01515583 1 0 -protoceratops%1:05:00:: 01704103 1 0 -protocol%1:09:02:: 05668915 3 0 -protocol%1:10:00:: 06664981 2 0 -protocol%1:10:01:: 06665108 1 0 -protoctist%1:05:00:: 01387065 1 0 -protoctist_family%1:05:00:: 01387617 1 0 -protoctist_genus%1:05:00:: 01388130 1 0 -protoctist_order%1:05:00:: 01347199 1 0 -protoctista%1:05:00:: 01386494 1 0 -protogeometric%5:00:00:nonrepresentational:00 01981448 1 3 -protoheme%1:27:00:: 15024997 1 0 -protohemin%1:27:00:: 15025228 1 0 -protohippus%1:05:00:: 02376423 1 0 -protohistory%1:09:00:: 06146260 1 0 -protology%1:09:00:: 06248693 1 0 -protomammal%1:05:00:: 01719914 1 0 -proton%1:17:00:: 09400037 1 1 -proton_accelerator%1:06:00:: 04015786 1 0 -proton_magnetic_resonance%1:19:00:: 11478898 1 1 -protoplasm%1:08:00:: 05432736 1 1 -protoplasmic_astrocyte%1:08:00:: 05468098 1 0 -protoplast%1:08:00:: 05431585 1 0 -prototheria%1:05:00:: 01871406 1 0 -prototherian%1:05:00:: 01871543 1 0 -prototypal%5:00:00:first:00 01011392 1 0 -prototype%1:09:00:: 05937524 1 2 -prototypic%5:00:00:first:00 01011392 1 0 -prototypical%5:00:00:first:00 01011392 1 1 -protozoa%1:05:00:: 01389188 1 3 -protozoal%3:01:00:: 02891869 1 0 -protozoal_infection%1:26:00:: 14178913 1 0 -protozoan%1:05:00:: 01389507 1 1 -protozoan%3:01:00:: 02891869 1 0 -protozoic%3:01:00:: 02891869 1 0 -protozoological%3:01:00:: 02891733 1 0 -protozoologist%1:18:00:: 10486236 1 0 -protozoology%1:09:00:: 06073748 1 0 -protozoon%1:05:00:: 01389507 1 0 -protract%2:30:00:: 00317888 1 0 -protracted%5:00:00:long:02 01439155 1 0 -protractedly%4:02:00:: 00391989 1 0 -protractible%5:00:00:extensile:00 00944734 1 0 -protractile%5:00:00:extensile:00 00944734 1 0 -protraction%1:04:00:: 01018366 2 0 -protraction%1:07:00:: 05051896 1 0 -protractor%1:06:00:: 04015908 1 0 -protriptyline%1:06:00:: 04016015 1 0 -protropin%1:08:00:: 05412912 1 0 -protrude%2:30:00:: 00263231 3 0 -protrude%2:38:00:: 02081946 2 0 -protrude%2:42:00:: 02713372 1 7 -protruding%5:00:00:protrusive:00 01353982 1 0 -protrusible%5:00:00:extensile:00 00944848 1 0 -protrusile%5:00:00:extensile:00 00944848 1 0 -protrusion%1:04:00:: 00407090 2 0 -protrusion%1:25:00:: 13894434 1 0 -protrusive%3:00:00:: 01353226 1 0 -protuberance%1:25:00:: 13894434 1 1 -protuberance%1:26:00:: 14087321 2 0 -protuberant%5:00:00:protrusive:00 01353618 1 0 -protuberate%2:42:00:: 02714541 2 0 -protuberate%2:42:01:: 02714731 1 0 -protura%1:05:00:: 02163616 1 0 -proturan%1:05:00:: 02163763 1 0 -proud%3:00:00:: 01889256 1 14 -proud%5:00:00:impressive:00 01285136 2 2 -proud_flesh%1:26:00:: 14318819 1 0 -proud_of%5:00:00:proud:00 01892506 1 1 -proudhon%1:18:00:: 11247155 1 0 -proudly%4:02:00:: 00189846 1 4 -proust%1:18:00:: 11247298 1 0 -proustian%3:01:00:: 03033397 1 0 -provability%1:07:00:: 04755466 1 0 -provable%5:00:00:obvious:00 01619105 1 0 -provably%4:02:00:: 00308559 1 0 -prove%2:31:00:: 00664788 2 45 -prove%2:31:01:: 00665771 9 0 -prove%2:31:02:: 00665630 4 4 -prove%2:32:00:: 01015244 3 6 -prove%2:36:00:: 01745052 8 0 -prove%2:38:00:: 01975587 7 0 -prove%2:38:01:: 01983134 6 0 -prove%2:41:03:: 02531625 5 0 -prove%2:42:00:: 02633881 1 58 -prove_oneself%2:31:00:: 00665235 1 1 -proved%3:00:00:: 01893724 1 1 -proven%3:00:00:: 01893724 1 0 -provenance%1:15:00:: 08510456 1 1 -provencal%1:10:00:: 06966190 1 0 -provencal%3:01:00:: 02761831 1 0 -provence%1:15:00:: 08944960 1 0 -provender%1:13:01:: 07572353 2 0 -provender%1:13:02:: 07800091 1 0 -provenience%1:15:00:: 08510456 1 0 -proventil%1:06:00:: 02695321 1 0 -provera%1:27:00:: 14747168 1 0 -proverb%1:10:00:: 07153838 1 3 -proverbial%3:01:00:: 02990304 1 1 -proverbial%5:00:00:known:00 01376522 2 0 -proverbially%4:02:00:: 00433909 1 0 -proverbs%1:10:00:: 06437308 1 0 -provide%2:30:05:: 00406963 7 0 -provide%2:32:00:: 01063188 3 14 -provide%2:34:00:: 01182709 2 25 -provide%2:40:00:: 02327200 1 270 -provide%2:40:08:: 02219442 6 0 -provide%2:41:00:: 02376289 4 2 -provide%2:42:00:: 02721438 5 0 -providence%1:04:00:: 01132327 2 2 -providence%1:07:00:: 04892970 4 0 -providence%1:15:00:: 09137451 1 7 -providence%1:26:00:: 14473917 3 0 -provident%3:00:00:: 01894758 1 0 -provident%5:00:00:prudent:00 01898974 2 0 -providential%3:01:00:: 03006513 2 0 -providential%5:00:00:fortunate:00 01048976 1 1 -providential%5:00:00:heavenly:00 01180363 3 0 -providentially%4:02:00:: 00434063 2 0 -providentially%4:02:01:: 00434213 1 0 -providentially%4:02:02:: 00369288 3 0 -providently%4:02:00:: 00369132 1 0 -provider%1:18:00:: 10677271 1 0 -provider%1:18:01:: 10486349 2 0 -province%1:15:00:: 08654360 1 4 -province%1:26:00:: 14515633 2 1 -provincial%1:18:00:: 10410668 2 0 -provincial%1:18:01:: 10458834 1 0 -provincial%3:00:00:: 00636547 2 2 -provincial%3:01:00:: 02785874 1 3 -provincial_capital%1:15:00:: 08695198 1 0 -provincialism%1:09:00:: 06202429 2 1 -provincialism%1:09:01:: 06205937 1 1 -provincially%4:02:00:: 00125358 1 0 -proving_ground%1:06:00:: 04016133 1 1 -provirus%1:27:00:: 14817141 1 0 -provision%1:04:01:: 01057200 2 4 -provision%1:09:00:: 05794694 3 1 -provision%1:10:00:: 06755947 1 27 -provision%1:21:00:: 13367448 4 0 -provision%2:40:00:: 02338975 1 1 -provisional%5:00:00:conditional:00 00556318 1 3 -provisional_ira%1:14:00:: 08024732 1 0 -provisional_irish_republican_army%1:14:00:: 08024732 1 0 -provisionally%4:02:00:: 00088777 1 0 -provisionary%5:00:00:conditional:00 00556318 1 0 -provisioner%1:18:00:: 10681557 1 0 -provisions%1:13:00:: 07572353 1 1 -proviso%1:10:00:: 06755947 1 1 -provisory%5:00:00:conditional:00 00556611 1 0 -provitamin%1:27:00:: 15090379 1 0 -provitamin_a%1:27:00:: 15090535 1 0 -provo%1:15:00:: 09147618 1 0 -provocateur%1:18:00:: 09778392 1 0 -provocation%1:04:00:: 01221790 1 1 -provocation%1:10:00:: 07252764 3 0 -provocation%1:16:00:: 09184975 2 0 -provocative%3:00:00:: 01896478 1 1 -provocative%5:00:00:sexy:00 02134557 2 0 -provocatively%4:02:00:: 00434354 1 0 -provoke%2:32:00:: 00794079 3 3 -provoke%2:36:00:: 01646866 2 3 -provoke%2:37:00:: 01759326 1 3 -provoke%2:37:01:: 01789514 4 1 -provoked%5:00:00:angry:00 00114266 1 0 -provoker%1:18:00:: 10209246 1 0 -provoking%5:00:00:provocative:00 01896925 1 0 -provokingly%4:02:00:: 00434354 1 0 -provos%1:14:00:: 08024732 1 0 -provost%1:18:00:: 10486468 1 0 -provost_court%1:14:00:: 08334693 1 0 -provost_guard%1:14:00:: 08216535 1 1 -provost_marshal%1:18:00:: 10486561 1 0 -prow%1:06:00:: 02880008 1 0 -prowess%1:09:00:: 05638987 1 3 -prowl%1:04:00:: 00292125 1 0 -prowl%2:38:00:: 01918304 1 2 -prowl%2:42:00:: 02639475 2 1 -prowl_car%1:06:00:: 03141065 1 0 -prowler%1:18:00:: 10486679 1 1 -prox%5:00:00:future:00 01733330 1 0 -proxemics%1:09:00:: 06151550 1 0 -proxima%1:17:00:: 09400190 1 0 -proxima_centauri%1:17:00:: 09400190 1 0 -proximal%3:00:00:: 00778509 1 2 -proximate%3:00:00:: 01579608 1 2 -proximate%5:00:00:close:01 00450147 2 0 -proximity%1:07:00:: 05085867 1 1 -proximity%1:09:00:: 06250771 3 0 -proximity%1:15:00:: 08642517 2 0 -proximo%5:00:00:future:00 01733330 1 0 -proxy%1:10:00:: 06531141 2 0 -proxy%1:18:00:: 10486909 1 0 -proxy_fight%1:04:00:: 00174950 1 0 -proxy_war%1:26:00:: 13981763 1 0 -prozac%1:06:00:: 03370927 1 0 -prude%1:18:00:: 10487026 1 0 -prudence%1:07:00:: 04892794 1 1 -prudence%1:09:00:: 05615500 2 0 -prudent%3:00:00:: 01898129 1 0 -prudential%5:00:00:prudent:00 01899167 1 0 -prudently%4:02:00:: 00369288 1 0 -prudery%1:07:00:: 04901152 1 0 -prudhoe_bay%1:17:00:: 09400337 1 0 -prudish%5:00:00:proper:00 01880163 1 0 -prudishly%4:02:00:: 00434504 1 0 -prudishness%1:07:00:: 04901152 1 0 -prumnopitys%1:20:00:: 11658104 1 0 -prumnopitys_amara%1:20:00:: 11659627 1 0 -prumnopitys_andina%1:20:00:: 11658709 1 0 -prumnopitys_elegans%1:20:00:: 11658709 1 0 -prumnopitys_ferruginea%1:20:00:: 11658331 1 0 -prumnopitys_taxifolia%1:20:00:: 11658544 1 0 -prune%1:13:00:: 07752602 1 0 -prune%2:30:00:: 00473322 2 0 -prune%2:35:00:: 01321002 1 0 -prune_cake%1:13:00:: 07633743 1 0 -prune_whip%1:13:00:: 07612530 1 0 -prunella%1:05:00:: 01527055 2 0 -prunella%1:20:00:: 12863026 1 0 -prunella_modularis%1:05:00:: 01527347 1 0 -prunella_vulgaris%1:20:00:: 12863234 1 0 -prunellidae%1:05:00:: 01526925 1 0 -pruner%1:06:00:: 04016240 2 0 -pruner%1:18:00:: 10487182 1 0 -pruning%1:04:00:: 00360143 2 0 -pruning%1:17:00:: 09400485 1 0 -pruning_hook%1:06:00:: 04016240 1 0 -pruning_knife%1:06:00:: 04016479 1 0 -pruning_saw%1:06:00:: 04016576 1 0 -pruning_shears%1:06:00:: 04016684 1 0 -pruno%1:13:00:: 07922299 1 0 -prunus%1:20:00:: 12637729 1 0 -prunus_alleghaniensis%1:20:00:: 12638753 1 0 -prunus_americana%1:20:00:: 12638964 1 0 -prunus_amygdalus%1:20:00:: 12645174 1 0 -prunus_angustifolia%1:20:00:: 12639168 1 0 -prunus_armeniaca%1:20:00:: 12641007 1 0 -prunus_avium%1:20:00:: 12642200 1 0 -prunus_besseyi%1:20:00:: 12642734 1 0 -prunus_capuli%1:20:00:: 12642964 1 0 -prunus_caroliniana%1:20:00:: 12643113 1 0 -prunus_cerasifera%1:20:00:: 12643313 1 0 -prunus_cerasus%1:20:00:: 12643473 1 0 -prunus_cerasus_austera%1:20:00:: 12643877 1 0 -prunus_cerasus_caproniana%1:20:00:: 12643688 1 0 -prunus_cerasus_marasca%1:20:00:: 12644057 1 0 -prunus_cuneata%1:20:00:: 12648424 1 0 -prunus_dasycarpa%1:20:00:: 12641180 1 0 -prunus_demissa%1:20:00:: 12650915 1 0 -prunus_domestica%1:20:00:: 12639584 1 0 -prunus_domestica_insititia%1:20:00:: 12639910 1 0 -prunus_dulcis%1:20:00:: 12645174 1 0 -prunus_dulcis_amara%1:20:00:: 12645530 1 0 -prunus_glandulosa%1:20:00:: 12646197 1 0 -prunus_ilicifolia%1:20:00:: 12646397 1 0 -prunus_incisa%1:20:00:: 12646605 1 0 -prunus_insititia%1:20:00:: 12639736 1 0 -prunus_japonica%1:20:00:: 12646740 1 0 -prunus_laurocerasus%1:20:00:: 12646950 1 0 -prunus_lyonii%1:20:00:: 12647231 1 0 -prunus_maritima%1:20:00:: 12639376 1 0 -prunus_mexicana%1:20:00:: 12640081 1 0 -prunus_mume%1:20:00:: 12640839 1 0 -prunus_nigra%1:20:00:: 12640284 1 0 -prunus_padus%1:20:00:: 12647560 1 0 -prunus_pensylvanica%1:20:00:: 12647893 1 0 -prunus_persica%1:20:00:: 12648045 1 0 -prunus_persica_nectarina%1:20:00:: 12648196 1 0 -prunus_pumila%1:20:00:: 12648424 1 0 -prunus_pumilla_susquehanae%1:20:00:: 12648424 1 0 -prunus_salicina%1:20:00:: 12648693 1 0 -prunus_serotina%1:20:00:: 12648888 1 0 -prunus_serrulata%1:20:00:: 12649317 1 0 -prunus_sieboldii%1:20:00:: 12649539 1 0 -prunus_spinosa%1:20:00:: 12649723 1 0 -prunus_subcordata%1:20:00:: 12649866 1 0 -prunus_subhirtella%1:20:00:: 12650038 1 0 -prunus_susquehanae%1:20:00:: 12648424 1 0 -prunus_tenella%1:20:00:: 12650229 1 0 -prunus_triloba%1:20:00:: 12650379 1 0 -prunus_virginiana%1:20:00:: 12650556 1 0 -prunus_virginiana_demissa%1:20:00:: 12650915 1 0 -prurience%1:12:00:: 07490214 1 0 -pruriency%1:12:00:: 07490214 1 0 -prurient%5:00:00:sexy:00 02133779 1 1 -pruriently%4:02:00:: 00434687 1 0 -prurigo%1:26:00:: 14231640 1 0 -pruritus%1:09:00:: 05723811 1 0 -pruritus_ani%1:09:00:: 05724019 1 0 -pruritus_vulvae%1:09:00:: 05724121 1 0 -prussia%1:15:00:: 08775784 1 0 -prussian%1:18:00:: 09748648 1 0 -prussian%3:01:00:: 03104149 1 0 -prussian_asparagus%1:20:00:: 12460146 1 0 -prussian_blue%1:07:00:: 04969617 2 0 -prussian_blue%1:27:00:: 14922960 1 1 -prussic_acid%1:27:00:: 14613643 1 0 -pry%1:06:00:: 03138344 1 0 -pry%2:32:00:: 00784874 2 2 -pry%2:35:00:: 01593254 1 3 -pry%2:36:00:: 01630903 4 0 -pry%2:39:00:: 02169119 3 1 -pry_bar%1:06:00:: 03138344 1 0 -prying%1:09:00:: 05683390 1 0 -prying%5:00:00:curious:00 00665156 1 0 -pryingly%4:02:00:: 00434764 1 0 -przevalski's_horse%1:05:00:: 02381831 1 0 -przewalski's_horse%1:05:00:: 02381831 1 0 -ps%1:10:00:: 06764623 1 0 -psa%1:27:00:: 14736510 1 0 -psa_blood_test%1:09:00:: 05742703 1 0 -psalm%1:10:00:: 06466787 1 0 -psalm%1:10:02:: 06466677 2 0 -psalm%2:36:00:: 01730059 1 0 -psalmist%1:18:00:: 10487363 1 0 -psalmody%1:04:00:: 01255549 1 0 -psalms%1:10:00:: 06437137 1 0 -psalter%1:10:00:: 06417467 1 0 -psalterium%1:05:00:: 02399791 1 0 -psaltery%1:06:00:: 04016846 1 0 -psaltriparus%1:05:00:: 01592892 1 0 -psammoma%1:26:00:: 14250622 1 0 -psenes%1:05:00:: 02634156 1 0 -psephologist%1:18:00:: 10487592 1 0 -psephology%1:09:00:: 06152311 1 0 -psephurus%1:05:00:: 02639786 1 0 -psephurus_gladis%1:05:00:: 02639922 1 0 -psetta%1:05:00:: 02663086 1 0 -psetta_maxima%1:05:00:: 02663211 1 0 -psettichthys%1:05:00:: 02664823 1 0 -psettichthys_melanostichus%1:05:00:: 02664960 1 0 -pseud%1:18:00:: 10201535 1 0 -pseudacris%1:05:00:: 01651900 1 0 -pseudaletia%1:05:00:: 02297127 1 0 -pseudaletia_unipuncta%1:05:01:: 02297294 2 0 -pseudaletia_unipuncta%1:05:02:: 02297442 1 0 -pseudechis%1:05:00:: 01750598 1 0 -pseudechis_porphyriacus%1:05:00:: 01750743 1 0 -pseudemys%1:05:00:: 01668257 1 0 -pseudemys_concinna%1:05:00:: 01668892 1 0 -pseudemys_rubriventris%1:05:00:: 01668436 1 0 -pseudemys_scripta%1:05:00:: 01668665 1 0 -pseudepigrapha%1:10:00:: 06461406 1 0 -pseudo%1:18:00:: 10201535 1 0 -pseudo%5:00:00:counterfeit:00 01118232 1 9 -pseudobombax%1:20:00:: 12191965 1 0 -pseudobombax_ellipticum%1:20:00:: 12192132 1 0 -pseudobulb%1:20:00:: 12047060 1 0 -pseudocarp%1:20:00:: 13140367 1 0 -pseudococcidae%1:05:00:: 02250464 1 0 -pseudococcus%1:05:00:: 02250653 1 0 -pseudococcus_comstocki%1:05:00:: 02251233 1 0 -pseudococcus_fragilis%1:05:00:: 02251067 1 0 -pseudocolus%1:20:00:: 13042814 1 0 -pseudocolus_fusiformis%1:20:00:: 13042982 1 0 -pseudocyesis%1:26:00:: 14046038 1 0 -pseudoephedrine%1:27:00:: 14714213 1 0 -pseudohallucination%1:26:00:: 14378177 1 0 -pseudohermaphrodite%1:18:00:: 10487710 1 0 -pseudohermaphrodite%5:00:00:androgynous:00 01479509 1 0 -pseudohermaphroditic%5:00:00:androgynous:00 01479509 1 0 -pseudohermaphroditism%1:26:00:: 14468167 1 0 -pseudohypertrophic_dystrophy%1:26:00:: 14161795 1 0 -pseudolarix%1:20:00:: 11620248 1 0 -pseudolarix_amabilis%1:20:00:: 11620389 1 0 -pseudomonad%1:05:00:: 01361261 1 0 -pseudomonadales%1:05:00:: 01360330 1 0 -pseudomonas%1:05:00:: 01360937 1 0 -pseudomonas_pyocanea%1:05:00:: 01353658 1 1 -pseudomonas_solanacearum%1:05:00:: 01361113 1 0 -pseudomonodaceae%1:05:00:: 01360712 1 0 -pseudonym%1:10:00:: 06338278 1 0 -pseudonymous%5:00:00:onymous:00 00121376 1 0 -pseudoperipteral%5:00:00:peripteral:00 00140075 1 0 -pseudophloem%1:20:00:: 13099373 1 6 -pseudopleuronectes%1:05:00:: 02659342 1 0 -pseudopleuronectes_americanus%1:05:00:: 02659478 1 0 -pseudopod%1:05:00:: 01427848 1 0 -pseudopodium%1:05:00:: 01427848 1 0 -pseudoprostyle%5:00:00:apteral:00 00139702 1 0 -pseudorubella%1:26:00:: 14123759 1 0 -pseudoryx%1:05:00:: 02428653 1 0 -pseudoryx_nghetinhensis%1:05:00:: 02428842 1 0 -pseudoscience%1:09:00:: 05778954 1 0 -pseudoscientific%5:00:00:unscientific:00 02085322 1 0 -pseudoscorpion%1:05:00:: 01770795 1 0 -pseudoscorpiones%1:05:00:: 01770553 1 0 -pseudoscorpionida%1:05:00:: 01770553 1 0 -pseudosmallpox%1:26:00:: 14124688 1 0 -pseudotaxus%1:20:00:: 11663136 1 0 -pseudotaxus_chienii%1:20:00:: 11663263 1 0 -pseudotsuga%1:20:00:: 11628284 1 0 -pseudotsuga_macrocarpa%1:20:00:: 11629047 1 0 -pseudotsuga_menziesii%1:20:00:: 11628793 1 0 -pseudovariola%1:26:00:: 14124688 1 0 -pseudowintera%1:20:00:: 11740208 1 0 -pseudowintera_colorata%1:20:00:: 11740414 1 0 -psf%1:14:00:: 08038995 1 0 -psi%1:10:00:: 06836493 2 0 -psi%1:23:00:: 13711570 1 1 -psi_particle%1:17:00:: 09322349 1 0 -psidium%1:20:00:: 12333397 1 0 -psidium_cattleianum%1:20:00:: 12333961 1 0 -psidium_guajava%1:20:00:: 12333530 1 0 -psidium_guineense%1:20:00:: 12334153 1 0 -psidium_littorale%1:20:00:: 12333771 1 0 -psidium_littorale_longipes%1:20:00:: 12333961 1 0 -psilocin%1:06:00:: 04017019 1 0 -psilocybin%1:06:00:: 04017019 1 0 -psilomelane%1:27:00:: 14692342 1 0 -psilophytaceae%1:20:00:: 13217624 1 0 -psilophytales%1:20:00:: 13217213 1 0 -psilophyte%1:20:00:: 13217494 1 0 -psilophyton%1:20:00:: 13217993 1 0 -psilopsida%1:20:00:: 13215936 1 0 -psilosis%1:22:00:: 13542855 2 0 -psilosis%1:26:00:: 14400979 1 0 -psilotaceae%1:20:00:: 13216475 1 0 -psilotales%1:20:00:: 13216238 1 0 -psilotatae%1:20:00:: 13215936 1 0 -psilotum%1:20:00:: 13216673 1 0 -psilotum_nudum%1:20:00:: 13217005 1 0 -psithyrus%1:05:00:: 02209755 1 4 -psittacidae%1:05:00:: 01817424 1 0 -psittaciformes%1:05:00:: 01816635 1 0 -psittacosaur%1:05:00:: 01705010 1 0 -psittacosaurus%1:05:00:: 01705010 1 0 -psittacosis%1:26:00:: 14274975 1 0 -psittacosis%1:26:01:: 14149773 2 0 -psittacula%1:05:00:: 01822164 1 0 -psittacula_krameri%1:05:00:: 01822300 1 0 -psittacus%1:05:00:: 01817772 1 0 -psittacus_erithacus%1:05:00:: 01817953 1 0 -psoas%1:08:00:: 05574862 1 0 -psocid%1:05:00:: 02260863 1 0 -psocidae%1:05:00:: 02260623 1 0 -psocoptera%1:05:00:: 02260183 1 0 -psocopterous_insect%1:05:00:: 02260421 1 0 -psophia%1:05:00:: 02020902 1 0 -psophia_crepitans%1:05:00:: 02021281 1 0 -psophiidae%1:05:00:: 02020777 1 0 -psophocarpus%1:20:00:: 12563913 1 0 -psophocarpus_tetragonolobus%1:20:00:: 12564083 1 0 -psoralea%1:20:00:: 12564381 1 0 -psoralea_esculenta%1:20:00:: 12564613 1 0 -psoriasis%1:26:00:: 14231794 1 0 -psoriatic_arthritis%1:26:00:: 14187869 1 0 -pst%1:28:00:: 15132638 1 0 -psych_up%2:37:00:: 01763482 1 0 -psyche%1:09:00:: 05611302 1 2 -psyche%1:18:00:: 10627082 2 1 -psyche%1:18:01:: 09577601 3 0 -psychedelia%1:14:00:: 08292298 1 0 -psychedelic%5:00:00:agitated:00 00086801 3 0 -psychedelic%5:00:00:colorful:00 00403819 2 0 -psychedelic%5:00:00:psychoactive:00 01777822 1 0 -psychedelic_drug%1:06:00:: 03479647 1 0 -psychedelic_rock%1:10:00:: 07065562 1 0 -psychiatric%3:01:00:: 02913004 1 1 -psychiatric_hospital%1:06:00:: 03746574 1 0 -psychiatrical%3:01:00:: 02913004 1 0 -psychiatrist%1:18:00:: 10488016 1 4 -psychiatry%1:09:00:: 06055946 1 0 -psychic%1:18:00:: 10488309 1 0 -psychic%5:00:00:mental:00 01780740 1 0 -psychic%5:00:00:paranormal:00 01599898 2 0 -psychic_communication%1:10:00:: 07255791 1 0 -psychic_energy%1:16:00:: 09184834 1 0 -psychic_phenomena%1:10:00:: 07256375 1 0 -psychic_phenomenon%1:10:00:: 07256375 1 1 -psychic_trauma%1:26:00:: 14285276 1 0 -psychical%5:00:00:mental:00 01780740 1 4 -psychical%5:00:00:paranormal:00 01599898 2 0 -psychical_communication%1:10:00:: 07255791 1 0 -psychically%4:02:00:: 00207252 1 3 -psycho%1:18:00:: 10490141 1 0 -psychoactive%3:00:00:: 01776974 1 0 -psychoactive_drug%1:06:00:: 04017137 1 2 -psychoactive_substance%1:06:00:: 04017137 1 0 -psychoanalyse%2:31:00:: 00643197 1 0 -psychoanalysis%1:04:00:: 00704305 1 0 -psychoanalyst%1:18:00:: 09790278 1 0 -psychoanalytic%3:01:00:: 02913428 1 0 -psychoanalytic_process%1:22:00:: 13542947 1 0 -psychoanalytical%3:01:00:: 02913428 1 0 -psychoanalyze%2:31:00:: 00643197 1 0 -psychobabble%1:10:00:: 07072587 1 0 -psychodelic_drug%1:06:00:: 03479647 1 0 -psychodid%1:05:00:: 02203978 1 0 -psychodidae%1:05:00:: 02203739 1 0 -psychodynamics%1:09:00:: 06141768 2 0 -psychodynamics%1:24:00:: 13844518 1 0 -psychogalvanic_response%1:04:00:: 00860011 1 0 -psychogenesis%1:22:00:: 13543093 2 0 -psychogenesis%1:22:01:: 13543231 1 0 -psychogenetic%3:01:00:: 02905943 2 0 -psychogenetic%3:01:01:: 02906059 1 0 -psychogenic%3:01:00:: 02906059 1 0 -psychogenic%5:00:00:mental:00 01780937 2 0 -psychogenic_fugue%1:26:00:: 14394479 1 0 -psychokinesis%1:10:00:: 07257045 1 0 -psychokinetic%5:00:00:paranormal:00 01600041 1 0 -psycholinguist%1:18:00:: 10488656 1 0 -psycholinguistic%3:01:00:: 02939656 1 0 -psycholinguistics%1:09:00:: 06140587 1 0 -psychological%3:01:00:: 02905794 2 2 -psychological%5:00:00:mental:00 01781076 1 6 -psychological_condition%1:26:00:: 14373582 1 0 -psychological_disorder%1:26:00:: 14083790 1 0 -psychological_feature%1:03:00:: 00023100 1 0 -psychological_medicine%1:09:00:: 06055946 1 0 -psychological_moment%1:28:00:: 15246135 1 0 -psychological_operation%1:04:00:: 00983982 1 0 -psychological_science%1:09:00:: 06136258 1 0 -psychological_state%1:26:00:: 14373582 1 0 -psychological_warfare%1:04:00:: 00953410 1 0 -psychologically%4:02:00:: 00435142 2 0 -psychologically%4:02:01:: 00434921 1 1 -psychologist%1:18:00:: 10488865 1 16 -psychology%1:09:00:: 06136258 1 5 -psychology_department%1:14:00:: 08117702 1 0 -psychometric%3:01:00:: 02913737 1 0 -psychometric_test%1:04:00:: 01006675 1 0 -psychometrics%1:09:00:: 06141023 1 0 -psychometrika%1:09:00:: 06141023 1 0 -psychometry%1:09:00:: 06141023 1 0 -psychomotor%3:01:00:: 02913870 1 0 -psychomotor_development%1:22:00:: 13543418 1 0 -psychomotor_epilepsy%1:26:00:: 14089974 1 0 -psychoneurosis%1:26:00:: 14393161 1 0 -psychoneurotic%1:18:00:: 10354898 1 0 -psychoneurotic%3:00:00:: 01583040 1 0 -psychonomics%1:09:00:: 06139285 1 0 -psychopath%1:18:00:: 10489564 1 1 -psychopathic%5:00:00:insane:00 02077253 1 1 -psychopathic_personality%1:26:00:: 14388139 1 0 -psychopathologic%5:00:00:insane:00 02077253 1 0 -psychopathological%5:00:00:insane:00 02077253 1 0 -psychopathology%1:09:00:: 06055946 2 0 -psychopathology%1:09:01:: 06137759 1 0 -psychopathy%1:26:00:: 14380140 1 0 -psychopharmacological%3:01:00:: 03011972 1 1 -psychopharmacology%1:09:00:: 06055824 1 0 -psychophysicist%1:18:00:: 10489426 1 0 -psychophysics%1:09:00:: 06139491 1 0 -psychophysiology%1:09:00:: 06140799 1 1 -psychopomp%1:18:00:: 10489818 1 1 -psychopsis%1:20:00:: 12080199 1 0 -psychopsis_krameriana%1:20:00:: 12080588 1 0 -psychopsis_papilio%1:20:00:: 12080820 1 0 -psychosexual%3:01:00:: 02886971 1 0 -psychosexual_development%1:22:00:: 13543564 1 0 -psychosexuality%1:09:00:: 05930010 1 0 -psychosis%1:26:00:: 14398067 1 0 -psychosomatic%5:00:00:neurotic:00 01585781 1 0 -psychosomatic_disorder%1:26:00:: 14386475 1 1 -psychosurgery%1:04:00:: 00667384 1 0 -psychotherapeutic%3:01:00:: 02914038 1 1 -psychotherapeutic%5:00:00:healthful:00 01165830 2 0 -psychotherapeutics%1:09:00:: 06056923 1 0 -psychotherapist%1:18:00:: 10489944 1 0 -psychotherapy%1:04:00:: 00700652 2 0 -psychotherapy%1:09:00:: 06056923 1 2 -psychotherapy_group%1:14:00:: 08310034 1 0 -psychotic%1:18:00:: 10490141 1 0 -psychotic%5:00:00:insane:00 02077469 1 1 -psychotic_belief%1:26:00:: 14376855 1 0 -psychotic_depression%1:26:00:: 14391112 1 0 -psychotic_person%1:18:00:: 10490141 1 0 -psychotria%1:20:00:: 12669641 1 0 -psychotria_capensis%1:20:00:: 12669803 1 0 -psychotropic%3:00:00:: 01776974 1 0 -psychotropic_agent%1:06:00:: 04017429 1 0 -psychrometer%1:06:00:: 04017571 1 0 -psylla%1:05:00:: 02256172 1 0 -psyllid%1:05:00:: 02256172 1 0 -psyllidae%1:05:00:: 02256010 1 0 -psyllium%1:20:00:: 12599874 1 0 -psyop%1:04:00:: 00983982 1 0 -pt%1:27:00:: 14649543 1 0 -pt_boat%1:06:00:: 04017807 1 0 -ptah%1:18:00:: 09513065 1 0 -ptarmigan%1:05:00:: 01796340 1 0 -pteretis%1:20:00:: 13197800 1 0 -pteretis_struthiopteris%1:20:00:: 13198054 1 0 -pteridaceae%1:20:00:: 13205482 1 0 -pteridium%1:20:00:: 13189656 1 0 -pteridium_aquilinum%1:20:00:: 13189844 1 0 -pteridium_esculentum%1:20:00:: 13190060 1 0 -pteridological%3:01:00:: 02763308 1 0 -pteridologist%1:18:00:: 10490330 1 0 -pteridology%1:09:00:: 06074613 1 0 -pteridophyta%1:20:00:: 11544769 1 0 -pteridophyte%1:20:00:: 11545524 1 0 -pteridosperm%1:20:00:: 11605542 1 0 -pteridospermae%1:20:00:: 11605147 1 0 -pteridospermaphyta%1:20:00:: 11605147 1 0 -pteridospermopsida%1:20:00:: 11604698 1 0 -pteriidae%1:05:00:: 01961736 1 0 -pterion%1:08:00:: 05235100 1 0 -pteris%1:20:00:: 13213768 1 0 -pteris_cretica%1:20:00:: 13214217 1 0 -pteris_multifida%1:20:00:: 13214340 1 0 -pteris_serrulata%1:20:00:: 13214485 1 0 -pternohyla%1:05:00:: 01652163 1 0 -pternohyla_fodiens%1:05:00:: 01652297 1 0 -pterocarpus%1:20:00:: 12564840 1 0 -pterocarpus_angolensis%1:20:00:: 12565102 1 0 -pterocarpus_indicus%1:20:00:: 12565368 1 0 -pterocarpus_macrocarpus%1:20:00:: 12565730 1 0 -pterocarpus_marsupium%1:20:00:: 12565912 1 0 -pterocarpus_santalinus%1:20:00:: 12566331 1 0 -pterocarya%1:20:00:: 12322359 1 0 -pterocarya_fraxinifolia%1:20:00:: 12322699 1 0 -pterocles%1:05:00:: 01815855 1 0 -pterocles_alchata%1:05:00:: 01816140 1 0 -pterocles_indicus%1:05:00:: 01816017 1 0 -pteroclididae%1:05:00:: 01815431 1 0 -pterocnemia%1:05:00:: 01521602 1 0 -pterocnemia_pennata%1:05:00:: 01521756 1 0 -pterodactyl%1:05:00:: 01723579 1 0 -pterodactylidae%1:05:00:: 01723259 1 0 -pterodactylus%1:05:00:: 01723425 1 0 -pterois%1:05:00:: 02643448 1 0 -pteropogon%1:20:00:: 12005329 1 0 -pteropogon_humboltianum%1:20:00:: 12005329 1 0 -pteropsida%1:20:00:: 11664677 1 0 -pteropus%1:05:00:: 02139914 1 0 -pteropus_capestratus%1:05:00:: 02140179 1 0 -pteropus_hypomelanus%1:05:00:: 02140268 1 0 -pterosaur%1:05:00:: 01722998 1 0 -pterosauria%1:05:00:: 01722828 1 0 -pterospermum%1:20:00:: 12200747 1 0 -pterospermum_acerifolium%1:20:00:: 12200905 1 0 -pterostylis%1:20:00:: 12081022 1 0 -pteroylglutamic_acid%1:27:00:: 15091846 1 0 -pteroylmonoglutamic_acid%1:27:00:: 15091846 1 0 -pterygium%1:08:00:: 05317603 1 1 -pterygoid_muscle%1:08:00:: 05576074 1 0 -pterygoid_plexus%1:08:00:: 05508211 1 0 -pterygoid_process%1:08:00:: 05542539 1 0 -ptilocercus%1:05:00:: 02495446 1 0 -ptilocrinus%1:05:00:: 02320339 1 0 -ptilonorhynchidae%1:05:00:: 01600480 1 0 -ptilonorhynchus%1:05:00:: 01600909 1 0 -ptilonorhynchus_violaceus%1:05:00:: 01601068 1 0 -ptloris%1:05:00:: 01571297 1 0 -ptloris_paradisea%1:05:00:: 01571410 1 0 -pto%1:06:00:: 03997274 1 0 -ptolemaic%3:01:00:: 03033522 1 0 -ptolemaic%5:00:00:geocentric:00 01118673 2 0 -ptolemaic_dynasty%1:14:00:: 08156948 1 0 -ptolemaic_system%1:09:00:: 05890809 1 1 -ptolemy%1:14:00:: 08156948 2 0 -ptolemy%1:18:00:: 11247413 1 0 -ptolemy_i%1:18:00:: 11247644 1 0 -ptolemy_ii%1:18:00:: 11247897 1 0 -ptomain%1:27:00:: 14999411 1 0 -ptomaine%1:26:00:: 14069541 2 0 -ptomaine%1:27:00:: 14999411 1 0 -ptomaine_poisoning%1:26:00:: 14069541 1 0 -ptosis%1:26:00:: 14558995 1 0 -ptsd%1:26:00:: 14386130 1 0 -ptyalin%1:27:00:: 14738521 1 0 -ptyalise%2:29:00:: 00101956 1 0 -ptyalism%1:22:00:: 13543871 1 0 -ptyalith%1:17:00:: 09400584 1 0 -ptyalize%2:29:00:: 00101956 1 0 -ptyas%1:05:00:: 01733094 1 0 -ptyas_mucosus%1:05:00:: 01733214 1 0 -ptychozoon%1:05:00:: 01675225 1 0 -ptychozoon_homalocephalum%1:05:00:: 01675352 1 0 -pu%1:27:00:: 14649775 1 0 -pub%1:06:00:: 04018399 1 0 -pub-crawl%2:34:00:: 01171941 1 0 -pub_crawl%1:04:00:: 00749105 1 0 -pubertal%3:01:00:: 02786006 1 0 -puberty%1:28:00:: 15148295 1 0 -puberulent%5:00:00:hairy:00 00213610 1 0 -pubes%1:08:00:: 05558555 1 0 -pubescence%1:28:00:: 15148295 1 0 -pubescent%5:00:00:hairy:00 00213610 2 0 -pubescent%5:00:00:immature:01 01491240 1 3 -pubic%3:01:00:: 02880076 1 0 -pubic_bone%1:08:00:: 05278714 1 0 -pubic_hair%1:08:00:: 05263587 1 0 -pubic_louse%1:05:00:: 02185167 1 0 -pubic_region%1:08:00:: 05558555 1 0 -pubis%1:08:00:: 05278714 1 0 -public%1:14:00:: 08179689 1 35 -public%1:14:01:: 07965817 2 4 -public%3:00:00:: 01861205 1 50 -public%5:00:00:common:02 00493297 2 22 -public-relations_campaign%1:04:00:: 00801834 1 0 -public-service_corporation%1:14:00:: 08185758 1 0 -public-spirited%5:00:00:unselfish:00 02099303 1 0 -public_address_system%1:06:00:: 04018155 1 0 -public_assistance%1:04:00:: 01086945 1 0 -public_charity%1:14:00:: 08407140 1 0 -public_convenience%1:06:00:: 04018667 1 0 -public_debate%1:10:00:: 07242104 1 1 -public_debt%1:21:00:: 13397705 1 0 -public_defender%1:18:00:: 10490557 1 0 -public_discussion%1:10:00:: 07144190 1 0 -public_domain%1:21:00:: 13243668 1 0 -public_easement%1:07:00:: 05179027 1 0 -public_executioner%1:18:00:: 10069427 1 0 -public_exposure%1:10:00:: 06253140 1 0 -public_eye%1:26:00:: 14433769 1 0 -public_figure%1:18:00:: 10344443 1 0 -public_holiday%1:28:00:: 15199592 1 0 -public_house%1:06:00:: 04018399 1 0 -public_housing%1:15:00:: 08549911 1 0 -public_knowledge%1:09:00:: 05612067 1 0 -public_lavatory%1:06:00:: 04018667 1 0 -public_law%1:10:00:: 06534548 1 7 -public_lecture%1:10:00:: 07240549 1 1 -public_library%1:14:00:: 07978170 1 0 -public_mover%1:14:00:: 08478482 1 0 -public_nudity%1:04:00:: 00772253 1 0 -public_nuisance%1:09:00:: 05831566 1 0 -public_office%1:04:00:: 00598318 1 0 -public_opinion%1:09:00:: 05949726 1 3 -public_opinion_poll%1:09:00:: 05800998 1 1 -public_presentation%1:10:00:: 06891493 1 0 -public_press%1:10:00:: 06263369 1 1 -public_property%1:21:00:: 13249062 1 0 -public_prosecutor%1:18:00:: 10484858 1 0 -public_relations%1:10:00:: 07247925 1 4 -public_relations_man%1:18:00:: 10469611 1 0 -public_relations_person%1:18:00:: 10490965 1 0 -public_school%1:14:00:: 08410282 1 4 -public_school%1:14:01:: 08410688 2 0 -public_security%1:26:00:: 14539524 1 0 -public_servant%1:18:00:: 10491136 1 0 -public_service%1:04:00:: 00585660 2 0 -public_service%1:04:01:: 01210281 1 0 -public_speaker%1:18:00:: 10380672 1 0 -public_speaking%1:10:00:: 07241837 1 0 -public_square%1:06:00:: 02684962 2 0 -public_square%1:15:00:: 08619620 1 2 -public_toilet%1:06:00:: 04018667 1 0 -public_transit%1:06:00:: 04018951 1 1 -public_transport%1:06:00:: 04019101 1 0 -public_treasury%1:21:00:: 13357891 1 0 -public_trust%1:21:00:: 13361465 1 0 -public_utility%1:14:00:: 08185758 1 1 -public_utility_company%1:14:00:: 08185758 1 0 -public_violence%1:04:00:: 01170502 1 0 -public_works%1:06:00:: 04019335 1 0 -publically%4:02:00:: 00161932 1 0 -publican%1:18:00:: 10490421 1 0 -publication%1:04:00:: 01101958 4 0 -publication%1:04:01:: 01103614 2 5 -publication%1:04:02:: 01102436 3 0 -publication%1:10:00:: 06589574 1 6 -publicise%2:32:00:: 00954608 2 0 -publicise%2:32:01:: 00975902 1 0 -publicised%3:00:00:: 00469603 1 0 -publiciser%1:18:00:: 10490699 1 0 -publicist%1:18:00:: 10490699 1 1 -publicity%1:07:00:: 04720536 2 0 -publicity%1:10:00:: 07247071 1 4 -publicity_man%1:18:00:: 10469611 1 1 -publicize%2:32:00:: 00954608 1 3 -publicize%2:32:01:: 00975902 2 2 -publicized%3:00:00:: 00469603 1 1 -publicizer%1:18:00:: 10490699 1 0 -publicizing%1:04:00:: 01101329 1 0 -publicly%4:02:00:: 00161932 1 12 -publicly%4:02:01:: 00162765 2 0 -publish%2:32:00:: 00967625 2 14 -publish%2:36:00:: 01744611 3 1 -publish%2:36:01:: 01745722 1 39 -publishable%3:00:00:: 00471178 1 0 -published%3:00:00:: 00470930 1 3 -published%5:00:00:publicized:00 00469999 2 0 -publisher%1:14:00:: 08062623 1 4 -publisher%1:18:00:: 10491309 2 3 -publisher%1:18:01:: 10491575 3 0 -publishing%1:04:00:: 01101958 1 1 -publishing_company%1:14:00:: 08062623 1 0 -publishing_conglomerate%1:14:00:: 08062842 1 0 -publishing_empire%1:14:00:: 08062842 1 0 -publishing_firm%1:14:00:: 08062623 1 0 -publishing_house%1:14:00:: 08062623 1 0 -publius_aelius_hadrianus%1:18:00:: 11021342 1 0 -publius_cornelius_scipio%1:18:00:: 11288216 1 0 -publius_cornelius_scipio_africanus_major%1:18:00:: 11288216 1 0 -publius_cornelius_tacitus%1:18:00:: 11328524 1 0 -publius_ovidius_naso%1:18:00:: 11218776 1 0 -publius_terentius_afer%1:18:00:: 11335695 1 0 -publius_vergilius_maro%1:18:00:: 11367436 1 0 -pubococcygeus_exercises%1:04:00:: 00628539 1 0 -puccini%1:18:00:: 11248077 1 0 -puccinia%1:20:00:: 13064852 1 0 -puccinia_graminis%1:20:00:: 13065089 1 0 -pucciniaceae%1:20:00:: 13064678 1 0 -puccoon%1:20:01:: 11908077 2 0 -puccoon%1:20:02:: 12820853 1 0 -puce%1:07:00:: 04974145 1 0 -puck%1:06:00:: 04019541 2 0 -puck%1:18:00:: 09541809 1 0 -pucka%5:00:00:superior:02 02344070 1 0 -pucker%1:25:00:: 13907847 1 1 -pucker%2:35:00:: 01278817 1 3 -pucker%2:35:01:: 01330822 2 0 -pucker%2:35:02:: 01279015 3 0 -puckerbush%1:20:00:: 11741575 1 0 -puckish%5:00:00:playful:00 02122715 1 1 -puckishly%4:02:00:: 00367106 1 0 -puckishness%1:07:00:: 04650010 1 0 -pud%1:13:00:: 07612996 1 0 -pudden-head%1:18:00:: 10667187 1 0 -pudding%1:13:00:: 07612632 3 0 -pudding%1:13:01:: 07617188 1 0 -pudding%1:13:02:: 07612996 2 0 -pudding-face%1:08:00:: 05601662 1 0 -pudding-wife%1:05:00:: 02608996 1 0 -pudding_berry%1:20:00:: 12948251 1 0 -pudding_face%1:08:00:: 05601662 1 0 -pudding_head%1:18:00:: 10667187 1 0 -pudding_pipe_tree%1:20:00:: 12492106 1 0 -pudding_stone%1:27:00:: 14863031 1 0 -puddingheaded%5:00:00:confused:00 00435872 1 0 -puddingwife%1:05:00:: 02608996 1 0 -puddle%1:15:00:: 08665101 3 0 -puddle%1:17:00:: 09397607 2 0 -puddle%1:27:00:: 14992945 1 0 -puddle%2:29:00:: 00072012 9 0 -puddle%2:31:00:: 00620532 8 0 -puddle%2:35:00:: 01473729 5 0 -puddle%2:35:01:: 01419867 6 0 -puddle%2:35:02:: 01484267 4 0 -puddle%2:35:03:: 01374465 7 0 -puddle%2:35:04:: 01529292 3 0 -puddle%2:36:00:: 01624743 2 0 -puddle%2:38:00:: 01916471 1 0 -puddler%1:18:00:: 10491869 1 0 -pudendal%3:01:00:: 03104332 1 0 -pudendal_artery%1:08:00:: 05353683 1 0 -pudendal_block%1:26:00:: 14029163 1 0 -pudendal_cleavage%1:08:00:: 05522784 1 0 -pudendal_cleft%1:08:00:: 05522784 1 0 -pudendal_slit%1:08:00:: 05522784 1 0 -pudendal_vein%1:08:00:: 05378137 1 0 -pudendum%1:08:00:: 05514272 1 0 -pudge%1:18:00:: 10491998 1 0 -pudginess%1:07:00:: 05001089 1 0 -pudgy%5:00:00:fat:01 00987510 1 0 -puebla%1:15:00:: 08745011 1 0 -puebla_de_zaragoza%1:15:00:: 08745011 1 0 -pueblo%1:15:00:: 08673273 3 0 -pueblo%1:15:01:: 09068320 2 0 -pueblo%1:18:00:: 09666622 1 0 -pueraria%1:20:00:: 12566809 1 0 -pueraria_lobata%1:20:00:: 12566954 1 0 -puerile%3:01:00:: 03104461 1 0 -puerile%5:00:00:immature:02 01492596 2 0 -puerility%1:07:00:: 04928760 2 0 -puerility%1:26:00:: 14427065 1 0 -puerpera%1:18:00:: 10492086 1 0 -puerperal%3:01:00:: 03039648 1 0 -puerperal_fever%1:26:00:: 14190493 1 0 -puerperium%1:28:00:: 15142568 1 0 -puerto_rican%1:18:00:: 09746725 1 1 -puerto_rico%1:15:00:: 08752974 1 17 -puerto_rico%1:15:01:: 08752814 2 0 -puff%1:04:00:: 00837675 7 0 -puff%1:04:01:: 00835501 8 0 -puff%1:06:00:: 04033995 4 0 -puff%1:06:01:: 03994874 5 0 -puff%1:06:02:: 03858418 6 0 -puff%1:10:00:: 06695110 3 0 -puff%1:13:00:: 07628470 2 0 -puff%1:19:00:: 11497888 1 0 -puff%2:29:00:: 00005526 3 1 -puff%2:29:01:: 00006802 8 0 -puff%2:30:00:: 00263682 7 0 -puff%2:32:00:: 00797303 6 0 -puff%2:32:01:: 01065272 5 0 -puff%2:34:00:: 01199009 2 1 -puff%2:34:01:: 01198616 1 2 -puff%2:37:00:: 01812197 4 0 -puff%5:00:00:fancy:00 01796736 1 0 -puff_adder%1:05:01:: 01753032 1 0 -puff_adder%1:05:02:: 01729322 2 0 -puff_batter%1:13:00:: 07628181 1 0 -puff_of_air%1:19:00:: 11497888 1 0 -puff_out%2:30:00:: 00263682 1 1 -puff_paste%1:13:00:: 07627931 1 0 -puff_up%2:30:00:: 00264578 1 1 -puff_up%2:30:01:: 00263682 2 1 -puff_up%2:32:00:: 01065272 4 0 -puff_up%2:41:00:: 02596908 3 0 -puffball%1:20:00:: 13043926 1 0 -puffball%1:20:01:: 12969131 2 0 -puffbird%1:05:00:: 01842504 1 0 -puffed%5:00:00:fancy:00 01796736 1 0 -puffed_rice%1:13:00:: 07705557 1 0 -puffed_wheat%1:13:00:: 07705633 1 0 -puffer%1:05:00:: 02655020 2 0 -puffer%1:13:00:: 07781972 1 0 -pufferfish%1:05:00:: 02655020 2 0 -pufferfish%1:13:00:: 07781972 1 0 -puffery%1:10:00:: 06696181 1 0 -puffin%1:05:00:: 02047614 1 0 -puffiness%1:07:00:: 04817923 2 0 -puffiness%1:26:00:: 14315192 1 0 -puffing%1:04:01:: 00834460 2 0 -puffing%1:04:02:: 00834866 1 0 -puffinus%1:05:00:: 02060290 1 0 -puffinus_puffinus%1:05:00:: 02060569 1 0 -puffy%5:00:00:large:00 01384081 1 0 -puffy%5:00:00:stormy:00 00305700 3 0 -puffy%5:00:00:unhealthy:00 01174565 2 0 -pug%1:05:00:: 02110958 1 0 -pug-dog%1:05:00:: 02110958 1 0 -pug-faced%5:00:00:faced:00 00235988 1 0 -pug-nose%5:00:00:nosed:00 01607572 1 0 -pug-nosed%5:00:00:nosed:00 01607572 1 1 -pug_nose%1:08:00:: 05599398 1 0 -puget_sound%1:17:00:: 09400667 1 0 -pugilism%1:04:00:: 00445802 1 0 -pugilist%1:18:00:: 09870208 1 0 -pugilistic%3:01:00:: 03104585 1 0 -pugin%1:18:00:: 11248232 1 0 -puglia%1:15:00:: 08810358 1 0 -pugnacious%5:00:00:aggressive:00 00084353 2 0 -pugnacious%5:00:00:tough:03 02448623 1 0 -pugnaciously%4:02:00:: 00435261 1 0 -pugnacity%1:07:00:: 04643662 1 0 -puissance%1:07:00:: 05191695 1 0 -puissant%5:00:00:powerful:00 01827161 1 0 -pujunan%1:10:00:: 06924895 1 0 -puka%1:20:01:: 11799331 2 0 -puka%1:20:02:: 12949160 1 0 -puka_inti%1:14:00:: 08040008 1 0 -puke%1:18:00:: 10539715 1 1 -puke%1:27:00:: 14855992 2 0 -puke%2:29:00:: 00076400 1 0 -puking%1:04:00:: 00118733 1 0 -pukka%5:00:00:superior:02 02344070 1 0 -puku%1:05:00:: 02428089 1 0 -pul%1:23:00:: 13663340 1 0 -pula%1:23:00:: 13695945 1 0 -pulasan%1:13:00:: 07769886 2 0 -pulasan%1:20:00:: 12745564 1 0 -pulasan_tree%1:20:00:: 12745564 1 0 -pulassan%1:13:00:: 07769886 2 0 -pulassan%1:20:00:: 12745564 1 0 -pulchritude%1:07:00:: 04685062 1 0 -pulchritudinous%5:00:00:beautiful:00 00220341 1 0 -pule%2:29:00:: 00066025 1 0 -pulex%1:05:00:: 02186586 1 0 -pulex_irritans%1:05:00:: 02186717 1 0 -pulicaria%1:20:00:: 12005500 1 0 -pulicaria_dysenterica%1:20:00:: 12005656 1 0 -pulicidae%1:05:00:: 02186399 1 0 -pulitzer%1:18:00:: 11248426 1 0 -pull%1:04:00:: 00114431 1 5 -pull%1:04:01:: 00837675 6 0 -pull%1:04:02:: 00625427 7 0 -pull%1:06:01:: 04019696 4 1 -pull%1:07:00:: 05157274 3 1 -pull%1:19:00:: 11498040 2 2 -pull%1:26:00:: 14299070 5 0 -pull%2:29:00:: 00071803 8 1 -pull%2:30:11:: 00571596 17 0 -pull%2:33:13:: 01148710 16 0 -pull%2:35:00:: 01448100 1 44 -pull%2:35:01:: 01573276 12 0 -pull%2:35:02:: 01505254 2 8 -pull%2:35:03:: 01407059 13 0 -pull%2:35:04:: 01609287 4 3 -pull%2:35:05:: 01384275 14 0 -pull%2:35:10:: 01351170 15 0 -pull%2:38:00:: 02057337 7 1 -pull%2:38:01:: 02057499 3 6 -pull%2:38:02:: 01947247 10 0 -pull%2:38:03:: 01995211 6 2 -pull%2:38:04:: 01858573 11 0 -pull%2:38:13:: 02103162 9 0 -pull%2:41:00:: 02582615 5 2 -pull-in%1:06:00:: 04020617 1 0 -pull-off%1:06:00:: 04020744 1 0 -pull-through%1:06:00:: 04021164 1 0 -pull-up%1:04:00:: 00629597 2 0 -pull-up%1:06:00:: 04020617 1 0 -pull_a_face%2:29:00:: 00034288 1 0 -pull_a_fast_one_on%2:41:00:: 02575723 1 0 -pull_ahead%2:33:00:: 01111028 1 0 -pull_along%2:35:00:: 01453718 1 0 -pull_at%2:35:00:: 01609115 1 0 -pull_away%2:38:00:: 01994442 1 1 -pull_back%2:32:12:: 00799383 5 0 -pull_back%2:35:00:: 01449053 3 0 -pull_back%2:35:01:: 01243298 4 0 -pull_back%2:35:03:: 01609773 2 0 -pull_back%2:38:00:: 01994442 1 1 -pull_chain%1:06:00:: 04020087 1 0 -pull_down%2:35:00:: 01239862 2 0 -pull_down%2:36:00:: 01661804 1 2 -pull_in%2:35:00:: 01505254 1 4 -pull_in%2:35:01:: 01384439 4 0 -pull_in%2:38:00:: 02015384 3 0 -pull_in%2:40:00:: 02289295 2 0 -pull_in_one's_horns%2:32:00:: 00799383 1 0 -pull_off%2:35:00:: 01592456 1 2 -pull_off%2:35:01:: 01592774 4 0 -pull_off%2:41:00:: 02522864 3 0 -pull_off%2:41:01:: 02404467 2 1 -pull_one's_weight%2:41:00:: 02414272 1 0 -pull_out%2:35:00:: 01351170 3 1 -pull_out%2:38:00:: 02015168 1 4 -pull_out%2:38:03:: 01995211 2 4 -pull_out%2:41:00:: 02380980 4 0 -pull_out_all_the_stops%2:34:00:: 01160193 1 0 -pull_over%2:38:00:: 01841591 1 0 -pull_round%2:42:00:: 02619924 1 0 -pull_someone's_leg%2:41:00:: 02577586 1 0 -pull_strings%2:41:00:: 02536329 1 0 -pull_the_leg_of%2:32:00:: 00851100 1 2 -pull_the_plug%2:41:00:: 02510184 1 0 -pull_the_wool_over_someone's_eyes%2:32:00:: 00839194 1 0 -pull_through%2:41:00:: 02551832 2 0 -pull_through%2:42:00:: 02619924 1 0 -pull_together%2:35:00:: 01380638 1 1 -pull_up%2:35:00:: 01351170 4 0 -pull_up%2:38:01:: 01863410 3 0 -pull_up%2:38:02:: 01863158 1 6 -pull_up%2:38:03:: 01982686 2 1 -pull_up_short%2:38:00:: 01861230 1 0 -pull_up_stakes%2:41:00:: 02383440 1 0 -pull_wires%2:41:00:: 02536329 1 0 -pullback%1:04:00:: 00056688 2 0 -pullback%1:06:00:: 04019881 1 0 -puller%1:18:00:: 10492202 2 0 -puller%1:18:01:: 10492447 1 0 -pullet%1:05:00:: 01793249 2 0 -pullet%1:13:00:: 07645469 1 0 -pulley%1:06:00:: 04020298 1 3 -pulley-block%1:06:00:: 04020298 1 0 -pulley_block%1:06:00:: 04020298 1 0 -pulling%1:04:00:: 00114431 1 1 -pulling_out%1:04:00:: 00849059 1 0 -pullman%1:06:00:: 04020912 1 0 -pullman_car%1:06:00:: 04020912 1 0 -pullman_porter%1:18:00:: 10455305 1 0 -pullorum_disease%1:26:00:: 14275077 1 0 -pullout%1:04:00:: 00057306 1 0 -pullover%1:06:00:: 04021028 1 0 -pullulate%2:29:00:: 00056589 5 0 -pullulate%2:30:00:: 00357332 3 0 -pullulate%2:30:01:: 00246930 4 0 -pullulate%2:38:00:: 02028366 2 0 -pullulate%2:42:00:: 02714974 1 0 -pullulate_with%2:42:00:: 02715923 1 0 -pullulation%1:22:00:: 13543968 2 0 -pullulation%1:22:01:: 13544073 1 0 -pulmonary%3:01:00:: 02935115 1 5 -pulmonary_anthrax%1:26:00:: 14072934 1 0 -pulmonary_artery%1:08:00:: 05353819 1 21 -pulmonary_circulation%1:19:00:: 11439446 1 0 -pulmonary_congestion%1:26:00:: 14321243 1 0 -pulmonary_embolism%1:26:00:: 14101801 1 0 -pulmonary_emphysema%1:26:00:: 14147380 1 1 -pulmonary_plexis%1:08:00:: 05508403 1 0 -pulmonary_reserve%1:23:00:: 13759941 1 0 -pulmonary_stenosis%1:26:00:: 14106917 1 0 -pulmonary_trunk%1:08:00:: 05354026 1 0 -pulmonary_tuberculosis%1:26:00:: 14144064 1 0 -pulmonary_valve%1:08:00:: 05394707 1 0 -pulmonary_vein%1:08:00:: 05378234 1 9 -pulmonata%1:05:00:: 01952162 1 0 -pulmonic%3:01:00:: 02935115 1 0 -pulmonic_plague%1:26:00:: 14139661 1 0 -pulp%1:08:00:: 05308950 5 0 -pulp%1:10:00:: 06596607 4 0 -pulp%1:17:00:: 09400826 1 2 -pulp%1:20:00:: 13096035 2 1 -pulp%1:27:00:: 14794418 3 0 -pulp%2:30:00:: 00331713 2 0 -pulp%2:35:01:: 01352273 1 0 -pulp_cavity%1:08:00:: 05283326 1 0 -pulp_magazine%1:10:00:: 06596607 1 0 -pulpiness%1:07:00:: 04939198 1 0 -pulpit%1:06:00:: 03159640 1 2 -pulpwood%1:27:00:: 15100397 1 0 -pulpy%5:00:00:nonwoody:00 02576918 1 0 -pulque%1:13:00:: 07905618 1 0 -pulsar%1:17:00:: 09400987 1 0 -pulsate%2:36:00:: 01623027 3 0 -pulsate%2:38:00:: 01879251 1 1 -pulsate%2:38:01:: 01879579 2 0 -pulsatilla%1:20:00:: 11737316 1 0 -pulsatilla_occidentalis%1:20:00:: 11738063 1 0 -pulsatilla_patens%1:20:00:: 11737752 1 0 -pulsatilla_vulgaris%1:20:00:: 11738203 1 0 -pulsation%1:11:00:: 07420991 1 1 -pulsation%1:11:02:: 07400906 3 0 -pulsation%1:19:00:: 11529295 2 0 -pulse%1:11:00:: 07400906 2 1 -pulse%1:11:01:: 07420991 1 1 -pulse%1:13:00:: 07709046 4 0 -pulse%1:28:00:: 15280695 3 0 -pulse%2:36:00:: 01623027 2 1 -pulse%2:38:00:: 01879251 1 1 -pulse%2:38:01:: 01879777 3 0 -pulse-time_modulation%1:10:00:: 06282093 1 0 -pulse_counter%1:06:00:: 04021362 1 0 -pulse_generator%1:06:00:: 04021503 1 1 -pulse_height_analyzer%1:06:00:: 03616225 1 0 -pulse_modulation%1:10:00:: 06281959 1 0 -pulse_rate%1:28:00:: 15280695 1 0 -pulse_timing_circuit%1:06:00:: 04021704 1 1 -pulseless%5:00:00:dead:01 00096595 1 1 -pulseless_disease%1:26:00:: 14258957 1 0 -pulsing%1:11:00:: 07420991 1 0 -pulverisation%1:04:00:: 00358290 2 0 -pulverisation%1:04:01:: 00218753 3 0 -pulverisation%1:27:00:: 14997012 1 0 -pulverise%2:30:00:: 00332154 3 0 -pulverise%2:30:01:: 00332445 2 0 -pulverise%2:36:00:: 01656458 1 0 -pulverised%5:00:00:fine:00 02233390 1 0 -pulverization%1:04:00:: 00358290 2 0 -pulverization%1:04:01:: 00218753 3 0 -pulverization%1:27:00:: 14997012 1 0 -pulverize%2:30:00:: 00332154 1 1 -pulverize%2:30:01:: 00332445 3 0 -pulverize%2:36:00:: 01656458 2 0 -pulverized%5:00:00:fine:00 02233390 1 1 -puma%1:05:00:: 02125311 1 0 -pumice%1:27:00:: 14700438 1 0 -pumice%2:35:00:: 01250243 1 0 -pumice_stone%1:27:00:: 14700438 1 0 -pummel%2:35:00:: 01416020 1 1 -pummelo%1:20:00:: 12709103 1 0 -pump%1:06:00:: 04021798 1 4 -pump%1:06:01:: 04022332 3 0 -pump%1:08:00:: 05388805 2 0 -pump%2:32:00:: 00788057 8 0 -pump%2:33:00:: 01155307 2 3 -pump%2:35:00:: 01225684 1 4 -pump%2:38:00:: 01853069 7 0 -pump%2:38:01:: 01853310 3 1 -pump%2:38:02:: 02068324 5 0 -pump%2:38:03:: 01853192 6 0 -pump%2:40:00:: 02356113 4 0 -pump-and-dump_scheme%1:09:00:: 05906305 1 0 -pump-type_pliers%1:06:00:: 04023021 1 0 -pump_action%1:06:00:: 04022434 1 0 -pump_house%1:06:00:: 04022708 1 0 -pump_priming%1:04:00:: 00270403 2 0 -pump_priming%1:04:01:: 01122754 1 0 -pump_room%1:06:00:: 04022866 1 0 -pump_well%1:06:00:: 04023119 1 0 -pumped%5:00:00:tense:03 02407346 1 0 -pumped-up%5:00:00:tense:03 02407346 1 2 -pumped_up%5:00:00:tense:03 02407346 1 0 -pumpernickel%1:13:00:: 07685918 1 0 -pumping_station%1:06:00:: 04022708 1 0 -pumpkin%1:13:00:: 07735510 2 0 -pumpkin%1:20:00:: 12158443 1 0 -pumpkin-shaped%3:00:00:: 02049918 1 0 -pumpkin_ash%1:20:00:: 12306089 1 0 -pumpkin_pie%1:13:00:: 07626721 1 0 -pumpkin_seed%1:13:00:: 07770763 1 0 -pumpkin_vine%1:20:00:: 12158443 1 0 -pumpkinseed%1:05:00:: 02563648 1 0 -pun%1:10:00:: 06781581 1 1 -pun%2:36:00:: 01702331 1 0 -punch%1:04:00:: 00134780 1 1 -punch%1:06:00:: 04023249 3 0 -punch%1:13:00:: 07930554 2 0 -punch%2:35:00:: 01415285 1 3 -punch%2:35:01:: 01442779 3 0 -punch%2:35:04:: 01575536 2 1 -punch-drunk%5:00:00:confused:00 00437223 1 0 -punch-up%1:04:00:: 01177583 1 0 -punch_bag%1:06:00:: 04023962 1 0 -punch_bowl%1:06:00:: 04023695 1 0 -punch_card%1:06:00:: 04023808 1 0 -punch_in%2:32:00:: 00966330 1 1 -punch_line%1:10:00:: 06778777 1 0 -punch_out%2:32:00:: 00966640 1 0 -punch_pliers%1:06:00:: 04024137 1 0 -punch_press%1:06:00:: 04024274 1 0 -punchayet%1:14:00:: 08311522 1 0 -punchball%1:06:00:: 04023962 1 0 -punchboard%1:06:00:: 04023422 1 0 -punched_card%1:06:00:: 04023808 1 0 -puncher%1:06:00:: 04023249 3 0 -puncher%1:18:00:: 09972661 1 3 -puncher%1:18:01:: 10492627 2 0 -punching_bag%1:06:00:: 04023962 2 0 -punching_bag%1:18:00:: 10492727 1 0 -punching_ball%1:06:00:: 04023962 1 0 -punctilio%1:04:00:: 01204623 2 0 -punctilio%1:10:00:: 06666729 1 0 -punctilious%5:00:00:precise:00 01838529 1 0 -punctiliously%4:02:00:: 00435342 1 0 -punctiliousness%1:07:00:: 04672605 1 0 -punctual%3:00:00:: 01900349 1 0 -punctuality%1:07:00:: 05047778 1 1 -punctually%4:02:00:: 00064691 1 0 -punctuate%2:30:00:: 00190023 1 1 -punctuate%2:30:01:: 00364478 3 0 -punctuate%2:32:00:: 01013367 2 0 -punctuated_equilibrium%1:09:00:: 06111003 1 0 -punctuation%1:04:00:: 00390198 3 0 -punctuation%1:10:00:: 06841365 2 0 -punctuation%1:11:00:: 07368130 1 0 -punctuation_mark%1:10:00:: 06841365 1 1 -punctum%1:08:00:: 05278922 1 0 -puncturable%3:00:00:: 01776629 1 0 -puncture%1:04:00:: 00942988 3 0 -puncture%1:06:00:: 04024396 2 0 -puncture%1:11:00:: 07314658 1 0 -puncture%2:30:00:: 00403798 4 0 -puncture%2:30:03:: 00309990 5 0 -puncture%2:32:00:: 00856234 3 0 -puncture%2:35:00:: 01274971 1 1 -puncture%2:35:02:: 01275182 2 0 -punctured%5:00:00:cut:01 00662139 1 2 -punctureless%3:00:00:: 01776713 1 0 -pundit%1:18:00:: 10206887 1 1 -pung%1:06:00:: 04024576 1 0 -pungapung%1:20:00:: 11782878 1 0 -pungency%1:07:00:: 04992834 2 0 -pungency%1:10:00:: 06776986 1 0 -pungent%5:00:00:sarcastic:00 02079313 2 0 -pungent%5:00:00:tasty:00 02398608 1 0 -pungently%4:02:00:: 00435546 2 0 -pungently%4:02:01:: 00435666 1 1 -punic%1:10:00:: 06989657 1 0 -punic%3:01:00:: 03104740 1 0 -punic%5:00:00:unfaithful:00 00960094 2 0 -punic_war%1:04:00:: 01307299 1 0 -punica%1:20:00:: 12345136 1 0 -punica_granatum%1:20:00:: 12345280 1 0 -punicaceae%1:20:00:: 12344996 1 0 -punily%4:02:00:: 00435803 1 0 -puniness%1:07:00:: 05107495 2 0 -puniness%1:07:01:: 05173205 1 0 -punish%2:41:00:: 02499629 1 10 -punishable%5:00:00:guilty:00 01322846 1 1 -punishable%5:00:00:illegal:00 01404370 2 0 -punished%3:00:00:: 01901777 1 0 -punishing%3:44:00:: 03152759 1 0 -punishing%5:00:00:effortful:00 00836544 2 0 -punishingly%4:02:00:: 00435872 1 0 -punishment%1:04:00:: 01160342 1 12 -punitive%3:00:00:: 01902468 1 1 -punitive_damages%1:21:00:: 13291831 1 0 -punitively%4:02:00:: 00435951 1 0 -punitorily%4:02:00:: 00435951 1 0 -punitory%3:00:00:: 01902468 1 0 -punjab%1:15:00:: 08902894 1 0 -punjabi%1:10:00:: 06971605 2 0 -punjabi%1:18:00:: 09676247 1 0 -punk%1:10:00:: 07065740 5 0 -punk%1:18:00:: 10184081 1 1 -punk%1:18:02:: 10492894 4 0 -punk%1:27:01:: 15101723 2 0 -punk%1:27:02:: 15101586 3 0 -punk%5:00:00:inferior:02 02346013 1 0 -punk_rock%1:10:00:: 07065740 1 0 -punk_rocker%1:18:00:: 10492894 1 0 -punkah%1:06:00:: 04024676 1 0 -punkey%1:05:00:: 02202678 1 0 -punkie%1:05:00:: 02202678 1 0 -punks%1:14:00:: 08370505 1 0 -punky%1:05:00:: 02202678 1 0 -punnet%1:06:00:: 04024862 1 0 -punning%1:10:00:: 06781581 1 0 -punster%1:18:00:: 10493093 1 1 -punt%1:04:00:: 00136984 3 0 -punt%1:06:00:: 04024983 2 0 -punt%1:23:00:: 13694657 1 0 -punt%2:33:00:: 01139104 3 0 -punt%2:35:00:: 01372189 2 0 -punt%2:35:01:: 01372408 1 1 -punta_arenas%1:15:00:: 08721796 1 0 -punter%1:18:00:: 10493199 2 0 -punter%1:18:01:: 09851876 3 0 -punter%1:18:02:: 10493419 1 0 -punting%1:04:00:: 00136984 1 0 -puny%5:00:00:small:00 01394558 2 0 -puny%5:00:00:weak:00 02326342 1 1 -pup%1:05:00:: 01322343 1 1 -pup%1:18:00:: 10493835 2 0 -pup%2:29:00:: 00058516 1 0 -pup_tent%1:06:00:: 04025508 1 1 -pupa%1:05:00:: 02312427 1 0 -pupal%5:00:00:immature:01 01491541 1 0 -pupate%2:29:00:: 00096520 1 2 -pupet_regime%1:14:00:: 08178321 1 0 -pupil%1:08:00:: 05320183 2 1 -pupil%1:18:00:: 10665698 1 8 -pupil%1:18:01:: 10559288 3 0 -pupillary%3:01:00:: 02786103 1 0 -pupillary_reflex%1:04:00:: 00865808 1 0 -pupillary_sphincter%1:08:00:: 05572940 1 0 -puppet%1:06:00:: 04025130 3 0 -puppet%1:06:01:: 04025350 1 1 -puppet%1:18:00:: 09976551 2 0 -puppet_government%1:14:00:: 08178321 1 0 -puppet_leader%1:18:00:: 10493528 1 0 -puppet_play%1:10:00:: 07019633 1 0 -puppet_ruler%1:18:00:: 10493528 1 0 -puppet_show%1:10:00:: 07019633 1 0 -puppet_state%1:14:00:: 08178321 1 0 -puppeteer%1:18:00:: 10493685 1 0 -puppetry%1:04:00:: 00899657 2 0 -puppetry%1:09:00:: 05636294 1 0 -puppis%1:17:00:: 09401159 1 0 -puppy%1:05:00:: 01322604 1 2 -puppy%1:18:00:: 10493835 2 0 -puppy_fat%1:08:00:: 05269784 1 0 -puppy_love%1:12:00:: 07544351 1 0 -puppyish%5:00:00:young:00 01649469 1 1 -puppylike%5:00:00:young:00 01649469 1 0 -purace%1:15:00:: 09176955 1 0 -purana%1:10:00:: 06463786 1 0 -puranic%3:01:00:: 02786215 1 0 -purau%1:20:00:: 12180168 1 0 -purblind%5:00:00:blind:00 02159969 1 0 -purblind%5:00:00:undiscerning:00 00772492 2 0 -purcell%1:18:00:: 11248599 1 0 -purchasable%5:00:00:available:00 00185607 2 0 -purchasable%5:00:00:corrupt:00 00621207 1 0 -purchase%1:04:00:: 00079018 1 8 -purchase%1:19:00:: 11473138 4 0 -purchase%1:19:01:: 11415342 3 1 -purchase%1:21:00:: 13253612 2 3 -purchase%2:40:00:: 02207206 1 34 -purchase_agreement%1:10:00:: 06523842 1 0 -purchase_contract%1:10:00:: 06523842 1 0 -purchase_order%1:10:00:: 06529219 1 0 -purchase_price%1:21:00:: 13305262 1 0 -purchaser%1:18:00:: 09885145 1 0 -purchasing%1:04:00:: 00081572 1 0 -purchasing_agent%1:18:00:: 10493922 1 1 -purchasing_department%1:14:00:: 08119397 1 2 -purdah%1:06:00:: 04025633 3 0 -purdah%1:14:00:: 08379882 2 0 -purdah%1:26:00:: 14415072 1 0 -pure%3:00:01:: 01904845 6 0 -pure%3:00:02:: 01905653 1 18 -pure%3:00:04:: 00393508 3 1 -pure%5:00:00:chaste:00 00361125 7 0 -pure%5:00:00:harmonious:00 01163860 4 1 -pure%5:00:00:theoretical:01 00862911 5 1 -pure%5:00:00:unmitigated:00 01520091 2 2 -pure_absence%1:26:00:: 14088918 1 0 -pure_binary_numeration_system%1:10:00:: 06810020 1 0 -pure_gold%1:27:00:: 14639467 1 0 -pure_imaginary_number%1:23:00:: 13730054 1 0 -pure_mathematics%1:09:00:: 06003682 1 0 -pure_tone%1:09:00:: 05719605 1 0 -pureblood%1:05:00:: 01323599 1 0 -pureblood%5:00:00:purebred:00 01903965 1 0 -pureblooded%5:00:00:purebred:00 01903965 1 0 -purebred%1:05:00:: 01323599 1 0 -purebred%3:00:00:: 01903617 1 0 -puree%1:13:00:: 07651025 1 0 -puree%2:35:00:: 01250474 1 0 -purely%4:02:00:: 00179112 1 12 -pureness%1:07:00:: 04849972 3 0 -pureness%1:26:00:: 14486767 1 0 -pureness%1:26:01:: 13990064 2 0 -purgation%1:04:00:: 00253577 1 0 -purgation%1:04:01:: 00252662 3 0 -purgation%1:04:02:: 00253070 2 0 -purgative%1:06:00:: 04025748 1 0 -purgative%5:00:00:laxative:00 00638067 1 0 -purgatorial%3:01:00:: 03104988 2 0 -purgatorial%3:01:01:: 03105129 1 0 -purgatory%1:09:00:: 05631449 2 0 -purgatory%1:26:00:: 13937406 1 1 -purge%1:04:00:: 00252430 2 0 -purge%1:04:01:: 00252662 1 0 -purge%1:04:02:: 00216834 3 0 -purge%2:29:00:: 00073813 7 0 -purge%2:29:04:: 00076400 6 0 -purge%2:30:00:: 00475647 4 0 -purge%2:30:03:: 00455529 5 0 -purge%2:30:04:: 00475819 3 0 -purge%2:32:00:: 00905283 2 0 -purge%2:41:00:: 02565090 1 1 -purging%1:04:00:: 00252430 1 1 -purging%1:04:01:: 00252662 2 0 -purging%3:01:01:: 03105129 1 0 -purging_cassia%1:20:00:: 12492106 1 0 -purification%1:04:00:: 00253270 1 2 -purification%1:04:01:: 00252894 4 0 -purification%1:04:02:: 00253070 3 0 -purification%1:22:00:: 13548105 2 0 -purifier%1:06:00:: 04026053 1 0 -purify%2:30:00:: 00475183 1 2 -purify%2:30:01:: 00475819 2 1 -purify%2:30:02:: 00476133 3 0 -purifying%3:00:00:: 02117694 2 0 -purifying%3:01:00:: 03105129 1 0 -purifying%5:00:00:antiseptic:00 02116304 3 0 -purim%1:28:00:: 15196870 1 0 -purine%1:27:00:: 14706574 2 0 -purine%1:27:01:: 14706749 1 0 -purinethol%1:06:00:: 03748456 1 0 -purism%1:10:00:: 07191950 1 0 -purist%1:18:00:: 10494037 1 0 -puritan%1:18:00:: 10494195 2 0 -puritan%1:18:01:: 10487026 3 0 -puritan%1:18:02:: 10494373 1 0 -puritanic%5:00:00:nonindulgent:00 01300370 1 0 -puritanical%3:01:00:: 03105296 1 0 -puritanical%5:00:00:nonindulgent:00 01300370 3 0 -puritanical%5:00:00:proper:00 01880163 2 0 -puritanically%4:02:00:: 00434504 1 0 -puritanism%1:07:00:: 04639591 2 0 -puritanism%1:09:00:: 06232635 1 0 -purity%1:07:00:: 04849972 3 0 -purity%1:26:00:: 14486767 1 3 -purity%1:26:02:: 13990064 2 1 -purkinje%1:18:00:: 11248777 1 0 -purkinje's_system%1:08:00:: 05391269 1 0 -purkinje's_tissue%1:08:00:: 05391269 1 0 -purkinje_cell%1:08:00:: 05466244 1 0 -purkinje_fiber%1:08:00:: 05391118 1 0 -purkinje_network%1:08:00:: 05391269 1 0 -purl%1:06:00:: 04026180 2 0 -purl%1:06:01:: 04026304 1 0 -purl%2:32:00:: 01046815 2 2 -purl%2:36:00:: 01668144 5 0 -purl%2:36:01:: 01668278 4 0 -purl%2:36:02:: 01671333 3 1 -purl%2:38:00:: 02047650 1 2 -purl_stitch%1:06:00:: 04026180 1 0 -purl_stitch%2:36:00:: 01671885 1 0 -purlieu%1:15:00:: 08539457 1 0 -purloin%2:40:00:: 02276866 1 1 -purloo%1:13:00:: 07590177 1 0 -purple%1:07:00:: 04970059 1 2 -purple%1:26:00:: 14432271 2 0 -purple%2:30:00:: 00285088 2 0 -purple%2:30:01:: 00289297 1 0 -purple%5:00:00:chromatic:00 00380312 1 9 -purple%5:00:00:noble:02 01591394 3 0 -purple%5:00:00:rhetorical:00 02017372 2 0 -purple-black%5:00:00:achromatic:00 00391162 1 0 -purple-blue%5:00:00:chromatic:00 00380483 1 0 -purple-brown%5:00:00:chromatic:00 00380583 1 0 -purple-eyed%5:00:00:eyed:00 00954576 1 0 -purple-flowered%5:00:00:colored:00 00400312 1 0 -purple-flowering_raspberry%1:20:00:: 12657509 1 0 -purple-fringed_orchid%1:20:01:: 12068432 1 0 -purple-fringed_orchid%1:20:02:: 12066630 2 0 -purple-fringed_orchis%1:20:01:: 12068432 1 0 -purple-fringed_orchis%1:20:02:: 12066630 2 0 -purple-green%5:00:00:chromatic:00 00380686 1 0 -purple-hooded_orchis%1:20:00:: 12044041 1 0 -purple-lilac%5:00:00:chromatic:00 00380789 1 0 -purple-red%5:00:00:chromatic:00 00380895 1 0 -purple-spotted%5:00:00:patterned:00 01790070 1 0 -purple-staining_cortinarius%1:20:00:: 13075441 1 0 -purple-stemmed_aster%1:20:00:: 11936539 1 0 -purple-tinged%5:00:00:chromatic:00 00380992 1 0 -purple-tinted%5:00:00:chromatic:00 00380992 1 0 -purple-veined%5:00:00:patterned:00 01789954 1 0 -purple-white%5:00:00:achromatic:00 00391265 1 0 -purple_amaranth%1:20:00:: 11823756 1 0 -purple_anise%1:20:00:: 11708857 1 0 -purple_apricot%1:20:00:: 12641180 1 0 -purple_avens%1:20:01:: 12632072 2 0 -purple_avens%1:20:02:: 12632335 1 0 -purple_bacteria%1:05:00:: 01360180 1 0 -purple_beech%1:20:00:: 12261571 1 0 -purple_boneset%1:20:00:: 11969166 1 0 -purple_chinese_houses%1:20:00:: 12881631 1 0 -purple_clematis%1:20:00:: 11731659 1 0 -purple_clover%1:20:00:: 11753355 1 0 -purple_cress%1:20:00:: 11882972 1 0 -purple_emperor%1:05:00:: 02278980 1 0 -purple_finch%1:05:00:: 01533000 1 0 -purple_fringeless_orchid%1:20:00:: 12068138 1 0 -purple_fringeless_orchis%1:20:00:: 12068138 1 0 -purple_gallinule%1:05:00:: 02016956 1 0 -purple_grackle%1:05:00:: 01574560 1 0 -purple_granadillo%1:20:00:: 12383737 1 0 -purple_ground_cherry%1:20:00:: 12911079 2 0 -purple_ground_cherry%1:20:02:: 12911673 1 0 -purple_heart%1:06:00:: 04256152 2 0 -purple_heart%1:10:00:: 06708475 1 1 -purple_heather%1:20:00:: 12243109 1 0 -purple_loco%1:20:00:: 12554729 1 0 -purple_locoweed%1:20:00:: 12554729 1 0 -purple_loosestrife%1:20:00:: 12328567 1 0 -purple_martin%1:05:00:: 01596608 1 0 -purple_milk_vetch%1:20:00:: 12508762 1 0 -purple_mullein%1:20:00:: 12889579 1 0 -purple_nightshade%1:20:00:: 12894930 1 0 -purple_onion%1:13:00:: 07722888 1 0 -purple_orchis%1:20:00:: 12044041 1 0 -purple_osier%1:20:00:: 12729729 1 0 -purple_passage%1:10:00:: 06401222 1 0 -purple_pea%1:20:00:: 12535593 1 0 -purple_poppy_mallow%1:20:00:: 12175370 1 0 -purple_rock_brake%1:20:00:: 13212175 1 0 -purple_sage%1:20:00:: 12865562 1 0 -purple_sanicle%1:20:00:: 12943912 1 0 -purple_saxifrage%1:20:00:: 12794135 1 0 -purple_silkweed%1:20:00:: 13235011 1 0 -purple_strawberry_guava%1:20:00:: 12333961 1 0 -purple_trillium%1:20:00:: 12468900 1 0 -purple_velvet_plant%1:20:00:: 11975254 1 0 -purple_virgin's_bower%1:20:00:: 11731659 1 0 -purple_willow%1:20:00:: 12729729 1 0 -purpleness%1:07:00:: 04970059 1 0 -purplish%5:00:00:chromatic:00 00380312 1 0 -purplish-black%5:00:00:achromatic:00 00391162 1 0 -purplish-blue%5:00:00:chromatic:00 00380483 1 0 -purplish-brown%5:00:00:chromatic:00 00380583 1 0 -purplish-green%5:00:00:chromatic:00 00380686 1 0 -purplish-lilac%5:00:00:chromatic:00 00380789 1 0 -purplish-red%1:07:00:: 04964287 1 0 -purplish-red%5:00:00:chromatic:00 00380895 1 0 -purplish-white%5:00:00:achromatic:00 00391265 1 0 -purplish_blue%1:07:00:: 04969952 1 0 -purplish_pink%1:07:00:: 04971522 1 0 -purplish_red%1:07:00:: 04964287 1 0 -purport%1:09:00:: 05922651 2 0 -purport%1:10:00:: 06605897 1 0 -purport%2:31:00:: 00708980 2 1 -purport%2:32:00:: 00757192 1 3 -purportedly%4:02:01:: 00154449 1 1 -purpose%1:07:00:: 05149325 2 26 -purpose%1:07:01:: 04864200 3 5 -purpose%1:09:00:: 05982152 1 75 -purpose%2:31:00:: 00699626 2 0 -purpose%2:31:01:: 00708980 1 0 -purpose-built%5:00:00:purposeful:00 01910359 1 0 -purpose-made%5:00:00:purposeful:00 01910359 1 0 -purposeful%3:00:00:: 01909890 1 2 -purposeful%5:00:00:meaningful:00 01497594 2 0 -purposefully%4:02:00:: 00436088 1 0 -purposefulness%1:07:00:: 05170400 1 0 -purposeless%3:00:00:: 01910488 1 0 -purposeless%5:00:00:worthless:00 02503305 2 0 -purposelessly%4:02:00:: 00436282 1 0 -purposelessness%1:07:00:: 05174326 1 0 -purposely%4:02:00:: 00062330 1 2 -purposive%5:00:00:nonrandom:00 01925242 1 0 -purposive%5:00:00:purposeful:00 01910249 2 0 -purpura%1:26:00:: 14197468 1 0 -purpura_hemorrhagica%1:26:00:: 14565417 1 0 -purpurate%2:30:00:: 00285088 1 0 -purr%1:11:00:: 07390645 1 0 -purr%2:32:00:: 01052936 2 0 -purr%2:39:00:: 02188587 1 0 -purse%1:06:00:: 02774152 1 5 -purse%1:06:02:: 04026417 3 1 -purse%1:21:00:: 13413159 4 0 -purse%1:21:01:: 13413294 2 1 -purse%2:30:00:: 00145902 1 2 -purse%2:35:00:: 01279305 2 0 -purse-proud%5:00:00:proud:00 01892683 1 0 -purse-string_operation%1:04:00:: 00691879 1 0 -purse_seine%1:06:00:: 04026518 1 0 -purse_string%1:06:00:: 04026688 1 0 -purser%1:18:00:: 10494643 1 0 -purslane%1:20:00:: 11857320 1 0 -purslane_family%1:20:00:: 11856981 1 0 -purslane_speedwell%1:20:00:: 12891824 1 0 -pursual%1:04:00:: 00319939 1 0 -pursuance%1:04:00:: 01022008 2 0 -pursuance%1:09:00:: 05770391 1 0 -pursuant%5:00:00:consistent:00 00577405 1 19 -pursue%2:35:00:: 01317533 3 6 -pursue%2:38:00:: 02000868 2 9 -pursue%2:41:00:: 02375131 1 11 -pursue%2:41:01:: 02376429 4 4 -pursued%1:18:00:: 10494778 1 1 -pursued%3:44:00:: 03152874 1 1 -pursuer%1:18:00:: 10494935 1 3 -pursuer%1:18:01:: 10495167 2 0 -pursuing%5:00:00:following:00 00199811 1 2 -pursuit%1:04:00:: 00319939 1 4 -pursuit%1:04:01:: 00431552 4 0 -pursuit%1:04:02:: 00432689 3 0 -pursuit%1:09:00:: 05770391 2 2 -pursy%5:00:00:breathless:00 00268748 1 0 -purulence%1:08:00:: 05417472 2 0 -purulence%1:26:00:: 14312600 1 0 -purulency%1:26:00:: 14312600 1 0 -purulent%5:00:00:septic:00 02114613 1 0 -purulent_pleurisy%1:26:00:: 14173175 1 0 -purus%1:17:00:: 09401340 1 0 -purus_river%1:17:00:: 09401340 1 0 -purvey%2:40:00:: 02338975 1 0 -purveyance%1:04:00:: 01060924 1 0 -purveyor%1:18:00:: 10495299 1 1 -purview%1:07:00:: 05127782 1 0 -pus%1:08:00:: 05417472 2 0 -pus%1:28:00:: 15220985 1 0 -pus-forming_bacteria%1:05:00:: 01377510 1 0 -pusan%1:15:00:: 08956574 1 0 -pusey%1:18:00:: 11248997 1 0 -puseyism%1:09:00:: 06229410 1 0 -push%1:04:00:: 00112312 1 4 -push%1:04:01:: 00282485 5 0 -push%1:06:00:: 04027023 4 0 -push%1:07:00:: 04836683 3 0 -push%1:19:00:: 11498203 2 1 -push%2:32:00:: 00976653 3 6 -push%2:32:01:: 00765977 2 7 -push%2:35:06:: 01447632 10 0 -push%2:38:00:: 01871979 1 56 -push%2:38:01:: 02054864 6 1 -push%2:38:02:: 01872645 5 3 -push%2:38:08:: 01872877 9 0 -push%2:40:00:: 02245555 8 0 -push%2:41:00:: 02406916 4 3 -push%2:41:10:: 02589576 7 0 -push-bike%1:06:00:: 04026813 1 0 -push-button_radio%1:06:00:: 04027367 1 0 -push-down_list%1:10:00:: 06494646 1 0 -push-down_queue%1:10:00:: 06502054 1 0 -push-down_stack%1:10:00:: 06494646 1 0 -push-down_storage%1:06:00:: 04027504 1 0 -push-down_store%1:06:00:: 04027504 1 0 -push_around%2:37:00:: 01781520 1 1 -push_aside%2:32:00:: 00800930 2 1 -push_aside%2:38:00:: 01873294 1 3 -push_away%2:38:00:: 01873294 1 1 -push_back%1:04:00:: 00980779 1 0 -push_back%2:35:00:: 01506157 1 3 -push_broom%1:06:00:: 04026918 1 0 -push_button%1:06:00:: 04027023 1 0 -push_down%2:35:00:: 01239862 1 1 -push_forward%2:38:00:: 01996574 1 0 -push_on%2:38:00:: 01993549 1 0 -push_out%2:38:00:: 01873157 1 0 -push_through%2:30:00:: 00548266 1 1 -push_up%2:38:00:: 01873530 1 2 -push_up%2:42:00:: 02713852 2 0 -pushan%1:18:00:: 09527924 1 0 -pushball%1:04:00:: 00477827 1 0 -pushcart%1:06:00:: 03484083 1 0 -pushchair%1:06:00:: 02766534 1 0 -pusher%1:06:00:: 02766534 5 0 -pusher%1:06:01:: 04027706 4 0 -pusher%1:18:00:: 10495421 3 0 -pusher%1:18:01:: 10495555 2 0 -pusher%1:18:02:: 10495756 1 0 -pushful%5:00:00:ambitious:00 00104318 1 0 -pushiness%1:07:00:: 05167412 1 0 -pushing%1:04:00:: 00112312 1 1 -pushkin%1:18:00:: 11249191 1 0 -pushover%1:04:00:: 00575365 2 0 -pushover%1:18:00:: 10495880 1 0 -pushpin%1:06:00:: 04431745 1 0 -pushtun%1:18:00:: 09689739 1 0 -pushup%1:04:00:: 00629318 1 6 -pushy%5:00:00:ambitious:00 00104318 1 0 -pusillanimity%1:07:00:: 04860985 1 0 -pusillanimous%5:00:00:cowardly:00 00266420 1 0 -pusillanimously%4:02:00:: 00454869 1 0 -pusillanimousness%1:07:00:: 04860985 1 0 -puss%1:05:00:: 02122298 2 0 -puss%1:08:00:: 05521514 1 0 -pussley%1:20:00:: 11858077 1 0 -pussly%1:20:00:: 11858077 1 0 -pussy%1:05:00:: 02122298 2 0 -pussy%1:08:00:: 05521514 1 4 -pussy%5:00:00:septic:00 02114613 1 0 -pussy's-paw%1:20:00:: 11862300 1 0 -pussy-paw%1:20:00:: 11862300 1 0 -pussy-paws%1:20:00:: 11862300 1 0 -pussy_willow%1:20:01:: 12727101 1 1 -pussy_willow%1:20:02:: 12727518 2 0 -pussycat%1:05:00:: 02122298 2 0 -pussycat%1:18:00:: 10495975 1 0 -pussyfoot%2:38:00:: 01911888 1 0 -pussytoes%1:20:00:: 11922374 1 0 -pustulate%5:00:00:blemished:00 00246175 1 0 -pustule%1:26:00:: 14334122 1 0 -put%1:04:00:: 00080968 1 0 -put%2:31:00:: 00735571 9 0 -put%2:31:13:: 00673448 6 2 -put%2:32:00:: 00981276 3 28 -put%2:34:00:: 01160370 4 6 -put%2:35:00:: 01494310 1 138 -put%2:35:05:: 01493741 2 98 -put%2:36:13:: 01706375 8 0 -put%2:39:13:: 02111499 7 0 -put%2:40:00:: 02271137 5 3 -put-down%1:10:00:: 06716796 1 0 -put-on%1:04:00:: 00753685 2 0 -put-on%1:04:01:: 00427580 3 0 -put-on%1:10:00:: 06780309 1 0 -put-put%1:06:00:: 04027820 1 0 -put-up%5:00:00:planned:00 01797770 1 0 -put-upon%5:00:00:misused:00 02495687 1 0 -put_across%2:32:00:: 00742320 1 0 -put_aside%2:32:00:: 00778885 2 0 -put_aside%2:35:00:: 01615991 1 0 -put_away%2:32:00:: 00778885 7 0 -put_away%2:34:00:: 01173208 6 0 -put_away%2:35:00:: 01327133 5 0 -put_away%2:35:01:: 01347678 1 2 -put_away%2:35:03:: 01615991 4 0 -put_away%2:40:00:: 02222318 2 1 -put_away%2:41:00:: 02494356 3 0 -put_back%2:35:00:: 01308381 1 2 -put_back%2:42:00:: 02702674 2 0 -put_behind_bars%2:41:00:: 02494356 1 0 -put_differently%4:02:00:: 00179333 1 0 -put_down%2:32:00:: 01020356 7 0 -put_down%2:32:05:: 01000214 8 0 -put_down%2:35:00:: 01544692 2 2 -put_down%2:35:01:: 01489465 5 0 -put_down%2:35:02:: 01500372 1 6 -put_down%2:35:03:: 01326528 6 0 -put_down%2:37:00:: 01800422 4 0 -put_down%2:38:00:: 01981036 3 1 -put_forward%2:32:00:: 00878136 1 1 -put_forward%2:32:01:: 00879540 4 0 -put_forward%2:36:00:: 01629958 3 0 -put_forward%2:41:00:: 02373785 2 0 -put_in%2:30:00:: 00187526 1 6 -put_in%2:32:00:: 00780191 3 2 -put_in%2:32:02:: 00914769 6 0 -put_in%2:33:00:: 01072641 5 1 -put_in%2:35:00:: 01569566 4 1 -put_in%2:40:00:: 02281093 2 2 -put_off%2:32:03:: 00809654 5 0 -put_off%2:37:00:: 01819387 3 0 -put_off%2:37:02:: 01790739 4 0 -put_off%2:37:04:: 01808626 2 1 -put_off%2:42:00:: 02642814 1 1 -put_on%2:29:00:: 00050652 1 18 -put_on%2:29:03:: 00046151 9 0 -put_on%2:30:00:: 00184511 2 3 -put_on%2:30:01:: 00184786 5 1 -put_on%2:32:00:: 00854904 8 0 -put_on%2:35:00:: 01363648 7 0 -put_on%2:36:00:: 01649251 6 0 -put_on%2:36:01:: 01649809 4 1 -put_on%2:36:02:: 01665185 3 2 -put_on%5:00:00:counterfeit:00 01116857 1 0 -put_on_airs%2:41:00:: 02593551 1 0 -put_on_the_line%2:41:00:: 02545578 1 0 -put_one_across%2:32:00:: 00854904 1 0 -put_one_over%2:32:03:: 00854904 1 0 -put_option%1:04:00:: 00080968 2 0 -put_option%1:21:00:: 13242484 1 0 -put_out%2:29:00:: 00021065 10 0 -put_out%2:29:01:: 00027705 4 1 -put_out%2:32:00:: 00967625 9 0 -put_out%2:33:00:: 01154382 8 0 -put_out%2:35:00:: 01569017 3 1 -put_out%2:35:01:: 01615457 7 0 -put_out%2:36:00:: 01625532 2 1 -put_out%2:41:00:: 02507736 1 2 -put_out%2:42:00:: 02755452 6 0 -put_out%2:43:00:: 02760495 5 0 -put_out_feelers%2:31:00:: 00646135 1 1 -put_over%2:32:00:: 00744904 1 1 -put_over%2:42:00:: 02642814 2 0 -put_right%2:30:00:: 00208055 1 0 -put_through%2:30:00:: 00486018 1 2 -put_through%2:35:00:: 01355906 2 0 -put_to_death%2:41:00:: 02483267 1 2 -put_to_sleep%2:35:01:: 01327133 2 0 -put_to_sleep%2:35:02:: 01494178 1 1 -put_to_work%2:41:00:: 02407987 1 1 -put_together%2:36:00:: 01656788 1 4 -put_under%2:29:00:: 00021065 1 0 -put_up%2:30:00:: 00213794 6 1 -put_up%2:31:00:: 00668099 4 2 -put_up%2:32:00:: 00879540 9 0 -put_up%2:35:00:: 01570403 1 4 -put_up%2:36:00:: 01661243 3 3 -put_up%2:40:00:: 02297571 5 1 -put_up%2:40:01:: 02237782 8 0 -put_up%2:41:00:: 02459173 7 0 -put_up%2:41:01:: 02376289 2 3 -putamen%1:08:00:: 05498460 1 0 -putative%5:00:00:acknowledged:00 00028471 1 0 -putdownable%5:00:00:uninteresting:00 01346650 1 0 -putin%1:18:00:: 11249322 1 0 -putoff%1:10:00:: 06759974 1 0 -putout%1:04:00:: 00130093 1 1 -putrajaya%1:15:00:: 08963969 1 0 -putrefacient%5:00:00:septic:00 02115034 1 0 -putrefaction%1:07:00:: 04850996 3 0 -putrefaction%1:22:00:: 13458019 2 0 -putrefaction%1:26:00:: 14560926 1 0 -putrefactive%5:00:00:septic:00 02115034 1 0 -putrefiable%5:00:00:perishable:00 01753785 1 0 -putrefy%2:30:00:: 00399553 1 0 -putrescence%1:07:00:: 04791591 2 0 -putrescence%1:26:00:: 14561102 1 0 -putrescent%5:00:00:stale:00 01071049 1 0 -putrescible%5:00:00:perishable:00 01753785 1 0 -putrescine%1:27:00:: 14863177 1 0 -putrid%3:01:00:: 02786315 1 0 -putrid%5:00:00:corrupt:00 00622354 3 0 -putrid%5:00:00:stale:00 01070844 2 0 -putrid-smelling%5:00:00:malodorous:00 01054630 1 0 -putridity%1:26:00:: 14488200 1 0 -putridness%1:26:00:: 14561102 1 0 -putsch%1:04:00:: 01145015 1 0 -putt%1:04:00:: 00572838 1 0 -putt%2:35:00:: 01403540 1 3 -putt%2:35:01:: 01403785 2 0 -puttee%1:06:00:: 04027935 1 0 -putter%1:06:00:: 04028074 2 0 -putter%1:18:00:: 10496081 1 0 -putter%2:35:00:: 01473176 3 0 -putter%2:35:01:: 01473346 2 0 -putter%2:41:00:: 02415394 1 0 -putter_around%2:35:00:: 01473176 1 2 -putterer%1:18:00:: 10496193 1 0 -putting%1:04:00:: 00572838 1 0 -putting_green%1:15:00:: 08579780 1 0 -putting_iron%1:06:00:: 04028074 1 0 -putting_surface%1:15:00:: 08579780 1 0 -putting_to_death%1:04:00:: 00219012 1 0 -putty%1:27:00:: 14703797 1 0 -putty%2:35:00:: 01364733 1 0 -putty_knife%1:06:00:: 04028221 1 0 -puttyroot%1:20:00:: 12045514 1 0 -putz%1:08:00:: 05526713 2 0 -putz%1:18:00:: 10496393 1 0 -puzzle%1:06:00:: 04028315 2 0 -puzzle%1:10:00:: 06784639 1 0 -puzzle%2:31:00:: 00622384 1 6 -puzzle%2:37:03:: 01831308 2 0 -puzzle_out%2:31:00:: 00634906 1 2 -puzzle_over%2:31:00:: 00621653 1 3 -puzzled%5:00:00:perplexed:00 01765926 1 4 -puzzlement%1:09:00:: 05685030 1 1 -puzzler%1:10:00:: 06784639 1 0 -puzzling%5:00:00:incomprehensible:00 00534524 1 2 -puzzling%5:00:00:unclear:00 00430756 2 2 -pva%1:27:00:: 14595279 1 0 -pvc%1:26:00:: 14362841 2 0 -pvc%1:27:00:: 14595403 1 0 -pwr%1:06:00:: 04001661 1 0 -px%1:06:00:: 03989447 1 0 -pya%1:23:00:: 13684402 1 0 -pyaemia%1:26:00:: 14190736 1 0 -pyaemic%3:01:00:: 03105430 1 0 -pycnanthemum%1:20:00:: 12863458 1 0 -pycnanthemum_virginianum%1:20:00:: 12863819 1 0 -pycnidium%1:20:00:: 11550620 1 0 -pycnodysostosis%1:26:00:: 14506533 1 0 -pycnogonid%1:05:00:: 01787006 1 0 -pycnogonida%1:05:00:: 01786879 1 0 -pycnosis%1:26:00:: 14076667 1 0 -pycnotic%3:01:00:: 03009911 1 0 -pydna%1:04:00:: 01292343 1 0 -pye-dog%1:05:00:: 02085118 1 0 -pyelitis%1:26:00:: 14173397 1 0 -pyelogram%1:06:00:: 04028472 1 0 -pyelography%1:04:00:: 00906664 1 0 -pyelonephritis%1:26:00:: 14566308 1 0 -pyemia%1:26:00:: 14190736 1 0 -pyemic%3:01:00:: 03105430 1 0 -pygmalion%1:18:00:: 09554701 1 0 -pygmy%1:18:00:: 10496489 2 0 -pygmy%1:18:01:: 10496626 1 0 -pygmy_chimpanzee%1:05:00:: 02482650 1 0 -pygmy_cypress%1:20:00:: 11631405 1 0 -pygmy_marmoset%1:05:00:: 02490811 1 0 -pygmy_mouse%1:05:00:: 02337598 1 0 -pygmy_sperm_whale%1:05:00:: 02067603 1 0 -pygopodidae%1:05:00:: 01675964 1 0 -pygopus%1:05:00:: 01676113 1 0 -pygoscelis%1:05:00:: 02056091 1 0 -pygoscelis_adeliae%1:05:00:: 02056228 1 0 -pyinma%1:20:00:: 12329744 1 0 -pyjama%1:06:00:: 03877472 2 0 -pyjama%1:06:02:: 03877674 1 0 -pyknic%3:00:00:: 00828175 1 0 -pyknic_type%1:07:00:: 04999214 1 0 -pyknosis%1:26:00:: 14076667 1 0 -pyknotic%3:01:00:: 03009911 1 2 -pyle%1:18:00:: 11249559 1 0 -pylodictus%1:05:00:: 02520015 1 0 -pylodictus_olivaris%1:05:00:: 02520147 1 0 -pylon%1:06:00:: 04028581 2 0 -pylon%1:06:01:: 04028764 1 0 -pyloric%3:01:00:: 03105571 1 0 -pyloric_sphincter%1:08:00:: 05573099 1 0 -pyloric_stenosis%1:26:00:: 14107085 1 0 -pyloric_valve%1:08:00:: 05573099 1 0 -pyloric_vein%1:08:00:: 05378850 1 0 -pylorus%1:08:00:: 05535095 1 0 -pynchon%1:18:00:: 11249712 1 0 -pyocyanase%1:06:00:: 04028881 1 0 -pyocyanin%1:06:00:: 04029015 1 0 -pyogenic%3:01:00:: 03105674 1 0 -pyongyang%1:15:00:: 08955397 1 0 -pyorrhea%1:26:00:: 14210888 1 0 -pyorrhea%1:26:01:: 14080836 2 0 -pyorrhea_alveolaris%1:26:00:: 14080836 1 0 -pyorrhoea%1:26:00:: 14210888 1 0 -pyorrhoea%1:26:01:: 14080836 2 0 -pyotr_alexeyevich_kropotkin%1:18:00:: 11111194 1 0 -pyotr_ilych_tchaikovsky%1:18:00:: 11333762 1 0 -pyotr_tchaikovsky%1:18:00:: 11333762 1 0 -pyracanth%1:20:00:: 12651229 1 0 -pyracantha%1:20:00:: 12651229 1 0 -pyralid%1:05:00:: 02288789 1 0 -pyralid_moth%1:05:00:: 02288789 1 0 -pyralidae%1:05:00:: 02288473 1 0 -pyralididae%1:05:00:: 02288473 1 0 -pyralis%1:05:00:: 02289061 1 0 -pyramid%1:06:00:: 04029125 3 0 -pyramid%1:21:00:: 13343284 2 0 -pyramid%1:25:00:: 13914837 1 0 -pyramid%2:30:00:: 00158094 4 0 -pyramid%2:35:00:: 01466047 3 0 -pyramid%2:40:00:: 02290756 1 1 -pyramid%2:40:01:: 02246300 2 0 -pyramid_bugle%1:20:00:: 12841354 1 0 -pyramid_plant%1:20:00:: 12292877 1 0 -pyramid_scheme%1:09:00:: 05908000 1 0 -pyramidal%5:00:00:pointed:00 01810998 1 0 -pyramidal_bone%1:08:00:: 05272545 1 0 -pyramidal_motor_system%1:08:00:: 05491612 1 0 -pyramidal_tent%1:06:00:: 04029416 1 0 -pyramidal_tract%1:08:00:: 05491612 1 0 -pyramidic%5:00:00:pointed:00 01810998 1 0 -pyramidical%5:00:00:pointed:00 01810998 1 0 -pyramidically%4:02:00:: 00054084 1 0 -pyramiding%1:04:00:: 00779809 1 0 -pyramids_of_egypt%1:06:00:: 04029125 1 0 -pyrausta%1:05:00:: 02289466 1 0 -pyrausta_nubilalis%1:05:01:: 02289610 2 0 -pyrausta_nubilalis%1:05:02:: 02309841 1 0 -pyre%1:14:00:: 07963494 1 0 -pyrectic%1:27:00:: 14584502 1 0 -pyrectic%3:01:00:: 03105742 1 0 -pyrene%1:20:00:: 13136863 2 0 -pyrene%1:27:00:: 14958937 1 0 -pyrenees%1:17:00:: 09401474 1 0 -pyrenees_daisy%1:20:00:: 11990627 1 0 -pyrenomycetes%1:20:00:: 13028070 1 0 -pyrethrum%1:20:00:: 12005869 4 0 -pyrethrum%1:20:01:: 12022054 3 0 -pyrethrum%1:20:02:: 12022382 2 0 -pyrethrum%1:20:03:: 12022719 1 0 -pyretic%3:00:00:: 01170069 1 0 -pyrex%1:27:00:: 14999614 1 5 -pyrexia%1:26:00:: 14365356 1 0 -pyridine%1:27:00:: 14692510 1 0 -pyridium%1:06:00:: 03921337 1 0 -pyridoxal%1:27:00:: 15091669 1 0 -pyridoxamine%1:27:00:: 15091669 1 0 -pyridoxine%1:27:00:: 15091669 1 0 -pyriform_area%1:08:00:: 05477305 1 0 -pyriform_lobe%1:08:00:: 05477305 1 0 -pyrilamine%1:06:00:: 04029541 1 0 -pyrimidine%1:27:00:: 14999801 2 0 -pyrimidine%1:27:01:: 14999913 1 0 -pyrite%1:27:00:: 14692682 1 0 -pyrites%1:27:00:: 14692844 1 0 -pyrocellulose%1:27:00:: 14795432 1 0 -pyrocephalus%1:05:00:: 01550033 1 0 -pyrocephalus_rubinus_mexicanus%1:05:00:: 01550172 1 0 -pyrochemical%3:01:00:: 03105856 1 0 -pyrochemical_process%1:22:00:: 13544279 1 0 -pyrochemistry%1:22:00:: 13544279 1 0 -pyroelectric%3:01:00:: 03106005 1 0 -pyroelectrical%3:01:00:: 03106005 1 0 -pyroelectricity%1:19:00:: 11435661 1 0 -pyrogallic%3:01:00:: 03106176 1 0 -pyrogallic_acid%1:27:00:: 14615400 1 0 -pyrogallol%1:27:00:: 14615400 1 0 -pyrogen%1:27:00:: 14584502 2 0 -pyrogen%1:27:01:: 14584658 1 0 -pyrogenetic%3:01:01:: 03106279 1 0 -pyrogenic%3:01:00:: 02852265 2 0 -pyrogenic%3:01:01:: 03106279 1 0 -pyrogenous%3:01:00:: 02852265 2 0 -pyrogenous%3:01:01:: 03106279 1 0 -pyrograph%1:06:00:: 04029647 1 0 -pyrographer%1:18:00:: 10496715 1 0 -pyrographic%3:01:00:: 03106446 1 0 -pyrography%1:04:00:: 00938240 1 0 -pyrola%1:20:00:: 12256112 1 0 -pyrola_americana%1:20:00:: 12256325 1 0 -pyrola_elliptica%1:20:00:: 12256708 1 0 -pyrola_minor%1:20:00:: 12256522 1 0 -pyrola_rotundifolia%1:20:00:: 12256920 1 0 -pyrola_rotundifolia_americana%1:20:00:: 12256325 1 0 -pyrola_uniflora%1:20:00:: 12258101 1 0 -pyrolaceae%1:20:00:: 12255659 1 0 -pyrolatry%1:04:00:: 01046167 1 0 -pyroligneous%3:01:00:: 03106565 1 0 -pyroligneous_acid%1:27:00:: 14863326 1 0 -pyrolignic%3:01:00:: 03106565 1 0 -pyrolusite%1:27:00:: 14692973 1 0 -pyrolysis%1:11:00:: 07360077 1 0 -pyrolytic%3:01:00:: 03106748 1 0 -pyromancer%1:18:00:: 10496825 1 0 -pyromancy%1:09:00:: 05778029 1 0 -pyromania%1:16:00:: 09182929 1 0 -pyromaniac%1:18:00:: 10277027 1 0 -pyrometer%1:06:00:: 04029734 1 3 -pyrometric_cone%1:06:00:: 04029913 1 0 -pyromorphite%1:27:00:: 14693124 1 0 -pyrope%1:27:00:: 15000060 1 0 -pyrophobia%1:26:00:: 14384431 1 0 -pyrophoric_alloy%1:27:00:: 15000149 1 0 -pyrophorus%1:05:00:: 02176611 1 0 -pyrophorus_noctiluca%1:05:00:: 02176747 1 0 -pyrophosphate%1:27:00:: 14615724 1 0 -pyrophosphoric_acid%1:27:00:: 14615602 1 0 -pyrophyllite%1:27:00:: 14693275 1 0 -pyroscope%1:06:00:: 03852544 1 0 -pyrosis%1:26:00:: 14335223 1 0 -pyrostat%1:06:00:: 04030054 1 0 -pyrotechnic%1:06:00:: 03348454 1 0 -pyrotechnic%3:01:00:: 03106846 1 0 -pyrotechnic%5:00:00:extraordinary:00 01677957 2 0 -pyrotechnical%3:01:00:: 03106846 1 0 -pyrotechnics%1:04:00:: 00617692 2 0 -pyrotechnics%1:09:00:: 05620050 1 0 -pyrotechny%1:04:00:: 00617692 1 0 -pyroxene%1:27:00:: 14693396 1 0 -pyroxylin%1:27:00:: 14795598 1 0 -pyroxyline%1:27:00:: 14795598 1 0 -pyrrhic%1:04:00:: 00542584 2 0 -pyrrhic%1:10:01:: 07095895 1 0 -pyrrhic%3:01:00:: 03107061 3 0 -pyrrhic%3:01:01:: 03107285 2 0 -pyrrhic%3:01:02:: 03107450 1 0 -pyrrhic_victory%1:11:00:: 07474533 1 0 -pyrrhocoridae%1:05:00:: 02244963 1 0 -pyrrhotine%1:27:00:: 14693575 1 0 -pyrrhotite%1:27:00:: 14693575 1 0 -pyrrhula%1:05:00:: 01534034 1 0 -pyrrhula_pyrrhula%1:05:00:: 01534155 1 0 -pyrrhuloxia%1:05:00:: 01541760 1 0 -pyrrhuloxia_sinuata%1:05:00:: 01541760 1 0 -pyrrhus%1:18:00:: 11249890 1 0 -pyrrophyta%1:05:00:: 01388992 1 0 -pyrrosia%1:20:00:: 13178107 1 0 -pyrrosia_lingua%1:20:00:: 13178284 1 0 -pyrularia%1:20:00:: 12736840 1 0 -pyrularia_pubera%1:20:00:: 12736999 1 0 -pyrus%1:20:00:: 12651465 1 0 -pyrus_communis%1:20:00:: 12651611 1 0 -pyruvic_acid%1:27:00:: 15000334 1 0 -pythagoras%1:18:00:: 11250056 1 0 -pythagorean%3:01:00:: 03036805 1 0 -pythia%1:18:00:: 09570630 1 0 -pythiaceae%1:20:00:: 12982103 1 0 -pythian_games%1:04:00:: 00516900 1 0 -pythias%1:18:00:: 11233595 1 0 -pythium%1:20:00:: 12982468 1 0 -pythium_debaryanum%1:20:00:: 12982590 1 0 -pythius%1:18:00:: 09554019 1 0 -python%1:05:00:: 01743605 1 3 -python%1:18:00:: 09501198 3 0 -python%1:18:01:: 10496927 2 0 -python_molurus%1:05:00:: 01744270 1 0 -python_reticulatus%1:05:00:: 01744100 1 0 -python_sebae%1:05:00:: 01744401 1 0 -python_variegatus%1:05:00:: 01743936 1 0 -pythoness%1:18:00:: 10497046 1 0 -pythoness%1:18:01:: 09570630 2 0 -pythonidae%1:05:00:: 01743449 1 0 -pythoninae%1:05:00:: 01743223 1 0 -pyuria%1:26:00:: 14316583 1 0 -pyx%1:06:00:: 04030161 2 0 -pyx%1:06:01:: 04030274 1 0 -pyx_chest%1:06:00:: 04030274 1 0 -pyxidanthera%1:20:00:: 12251577 1 0 -pyxidanthera_barbulata%1:20:00:: 12251740 1 0 -pyxidium%1:20:00:: 13139482 1 0 -pyxie%1:20:00:: 12251740 1 0 -pyxis%1:06:00:: 04030414 3 0 -pyxis%1:17:00:: 09401613 2 0 -pyxis%1:20:00:: 13139482 1 0 -q%1:10:00:: 06832896 1 0 -q_fever%1:26:00:: 14141821 1 1 -qabala%1:10:00:: 06673770 1 0 -qabalah%1:10:00:: 06673770 1 0 -qabalistic%5:00:00:esoteric:00 00899738 1 0 -qabbala%1:09:00:: 05954100 1 0 -qabbalah%1:09:00:: 05954100 1 0 -qaddafi%1:18:00:: 11250287 1 0 -qadhafi%1:18:00:: 11250287 1 0 -qadi%1:18:00:: 10497135 1 0 -qaeda%1:14:00:: 08013845 1 0 -qandahar%1:15:00:: 08704409 1 0 -qara_qum%1:15:00:: 09170475 1 0 -qassam_brigades%1:14:00:: 08040257 1 0 -qat%1:06:00:: 03608870 1 0 -qatar%1:15:00:: 08986905 1 0 -qatar%1:15:01:: 08986691 2 0 -qatar_peninsula%1:15:00:: 08986691 1 0 -qatari%1:18:00:: 09728137 1 0 -qatari%3:01:00:: 03107596 1 0 -qatari_dirham%1:23:00:: 13698445 1 0 -qatari_monetary_unit%1:23:00:: 13698202 1 0 -qatari_riyal%1:23:00:: 13698327 1 0 -qcd%1:09:00:: 06112681 1 0 -qed%1:09:00:: 06112505 1 0 -qepiq%1:23:00:: 13699836 1 0 -qi%1:26:00:: 14050559 1 0 -qiang%1:10:00:: 06931499 1 0 -qiangic%1:10:00:: 06931499 1 0 -qibla%1:14:00:: 08040522 2 0 -qibla%1:15:00:: 08681649 1 0 -qin%1:14:00:: 08157182 1 0 -qin_dynasty%1:14:00:: 08157182 1 0 -qin_shi_huang_ti%1:18:00:: 11250581 1 0 -qindarka%1:23:00:: 13684735 1 0 -qing%1:14:00:: 08157405 1 0 -qing_dynasty%1:14:00:: 08157405 1 0 -qintar%1:23:00:: 13684735 1 0 -qizil_qum%1:15:00:: 09170633 1 0 -qoph%1:10:00:: 06838652 1 0 -quaalude%1:06:00:: 03754822 1 0 -quack%1:11:00:: 07390762 2 0 -quack%1:18:00:: 10497202 1 14 -quack%2:29:00:: 00011982 2 0 -quack%2:32:00:: 01053098 1 1 -quack%5:00:00:unqualified:01 01911589 1 4 -quack-quack%1:05:00:: 01847089 1 0 -quack_grass%1:20:00:: 12105578 1 0 -quackery%1:04:00:: 00633108 1 6 -quackery%1:04:01:: 00750306 2 0 -quackgrass%1:20:00:: 12105578 1 0 -quad%1:06:00:: 04030518 4 0 -quad%1:06:01:: 04030655 3 0 -quad%1:08:00:: 05294819 2 0 -quad%1:18:00:: 10497645 1 0 -quadragesima%1:28:00:: 15192544 1 0 -quadrangle%1:06:00:: 04030518 2 0 -quadrangle%1:25:00:: 13879126 1 0 -quadrangular%3:01:00:: 02834340 1 0 -quadrangular_prism%1:25:00:: 13885011 1 0 -quadrant%1:06:00:: 04030846 4 0 -quadrant%1:15:00:: 08627554 3 0 -quadrant%1:15:01:: 08627665 2 0 -quadrant%1:15:02:: 08627805 1 0 -quadrantanopia%1:26:00:: 14554591 1 0 -quadraphonic%3:01:00:: 03108193 1 0 -quadraphonic_system%1:06:00:: 04030965 1 0 -quadraphony%1:06:00:: 04030965 1 0 -quadrasonic%3:01:00:: 03108193 1 0 -quadrate%1:25:01:: 13879049 2 0 -quadrate%1:25:02:: 13917022 1 0 -quadrate%5:00:00:square:00 02043499 1 0 -quadratic%1:09:00:: 05862501 2 0 -quadratic%1:10:00:: 06670240 1 0 -quadratic%3:01:00:: 03107801 2 0 -quadratic%3:01:01:: 03108077 1 0 -quadratic_equation%1:10:00:: 06670240 1 0 -quadratic_polynomial%1:09:00:: 05862501 1 0 -quadratics%1:09:00:: 06012998 1 0 -quadrature%1:04:00:: 00873671 1 0 -quadrennium%1:28:00:: 15205719 1 0 -quadric%1:25:00:: 13902905 1 0 -quadric_surface%1:25:00:: 13902905 1 0 -quadriceps%1:08:00:: 05294819 1 1 -quadriceps_femoris%1:08:00:: 05294819 1 0 -quadrigesima_sunday%1:28:00:: 15192544 1 0 -quadrilateral%1:25:00:: 13879126 1 0 -quadrilateral%5:00:00:multilateral:00 00238400 1 0 -quadrille%1:04:00:: 00540485 2 0 -quadrille%1:10:00:: 07056593 1 0 -quadrillion%1:23:00:: 13752911 2 0 -quadrillion%1:23:01:: 13753067 1 0 -quadrillionth%1:23:00:: 13739934 1 0 -quadrillionth%5:00:00:ordinal:00 02212914 1 0 -quadripara%1:18:00:: 10497373 1 0 -quadripartite%5:00:00:multilateral:00 00239090 1 0 -quadriphonic%3:01:00:: 03108193 1 0 -quadriphonic_system%1:06:00:: 04030965 1 0 -quadriplegia%1:26:00:: 14559757 1 0 -quadriplegic%1:18:00:: 10497534 1 0 -quadrisonic%3:01:00:: 03108193 1 0 -quadrivium%1:09:00:: 06172294 1 0 -quadroon%1:18:00:: 09638569 1 0 -quadrumvirate%1:14:00:: 07988010 1 0 -quadruped%1:05:00:: 02156871 1 0 -quadruped%3:00:00:: 00241816 1 0 -quadrupedal%3:00:00:: 00241816 1 0 -quadruple%1:09:00:: 05860498 2 0 -quadruple%1:14:00:: 07988089 1 0 -quadruple%2:30:00:: 00247048 1 1 -quadruple%5:00:00:multiple:00 02219144 2 0 -quadruple%5:00:02:multiple:00 02219287 1 0 -quadruple_time%1:28:00:: 15264010 1 0 -quadruplet%1:14:00:: 07988089 3 0 -quadruplet%1:18:00:: 10497645 2 0 -quadruplet%1:23:00:: 13744304 1 0 -quadruplex%5:00:00:multiple:00 02219287 1 0 -quadruplicate%1:06:00:: 04031166 1 0 -quadruplicate%2:36:00:: 01735947 1 0 -quadruplicate%5:00:00:multiple:00 02219287 1 0 -quadrupling%1:22:00:: 13544433 1 1 -quaestor%1:18:00:: 10497775 1 0 -quaff%1:13:00:: 07884182 1 0 -quaff%2:34:00:: 01202068 1 0 -quaffer%1:18:00:: 10497946 1 0 -quag%1:17:00:: 09355850 1 0 -quagga%1:05:00:: 02391617 1 0 -quaggy%5:00:00:wet:01 02548066 1 0 -quagmire%1:17:00:: 09355850 1 0 -quahaug%1:05:00:: 01958038 2 0 -quahaug%1:13:00:: 07786856 1 0 -quahog%1:05:00:: 01958038 2 0 -quahog%1:13:00:: 07786856 1 0 -quai_d'orsay%1:14:00:: 08114400 2 0 -quai_d'orsay%1:15:00:: 08933770 1 0 -quail%1:05:01:: 01806567 2 0 -quail%1:13:00:: 07647321 1 0 -quail%2:38:00:: 02061069 1 1 -quail_at%2:37:00:: 01782432 1 0 -quail_brush%1:20:00:: 11831521 1 0 -quail_bush%1:20:00:: 11831521 1 0 -quaint%5:00:00:fashionable:00 00973192 3 0 -quaint%5:00:00:strange:00 00969556 1 3 -quaint%5:00:01:strange:00 00969763 2 1 -quaintly%4:02:00:: 00436409 2 0 -quaintly%4:02:01:: 00436531 1 0 -quaintness%1:07:01:: 04798700 2 0 -quaintness%1:07:02:: 04926038 1 0 -quake%1:11:00:: 07428954 1 3 -quake%2:38:01:: 01889129 1 2 -quake%2:38:02:: 01888784 2 0 -quaker%1:18:00:: 09679708 1 1 -quaker%1:18:01:: 10498046 2 0 -quaker_gun%1:06:00:: 04031370 1 0 -quakerism%1:09:00:: 06190809 1 0 -quakers%1:14:00:: 08150377 1 0 -quaking_aspen%1:20:00:: 12733870 1 0 -qualification%1:04:00:: 00200563 2 2 -qualification%1:07:00:: 04717139 1 8 -qualification%1:10:00:: 06762380 3 0 -qualified%3:00:01:: 01911053 1 2 -qualified%3:00:02:: 01913200 2 1 -qualified%5:00:00:conditional:00 00556174 5 0 -qualified%5:00:00:modified:00 01540871 4 0 -qualified%5:00:00:registered:00 01958259 3 1 -qualifier%1:10:00:: 06320801 2 0 -qualifier%1:18:00:: 10498196 1 0 -qualify%2:30:00:: 00300761 4 1 -qualify%2:30:01:: 00171127 7 0 -qualify%2:30:02:: 00199309 3 2 -qualify%2:32:00:: 01018928 5 0 -qualify%2:32:01:: 00956687 6 0 -qualify%2:32:02:: 00972191 2 3 -qualify%2:42:00:: 02679012 1 14 -qualifying%1:04:00:: 00065575 2 0 -qualifying%1:24:00:: 13800801 1 0 -qualifying_adjective%1:10:00:: 06321932 1 0 -qualitative%3:00:00:: 01914521 1 5 -qualitative%3:01:00:: 02976870 2 0 -qualitative_analysis%1:04:00:: 00646833 1 0 -qualitatively%4:02:00:: 00436676 1 1 -quality%1:07:00:: 04723816 1 42 -quality%1:07:01:: 04987620 4 6 -quality%1:07:02:: 04728068 2 16 -quality%1:09:00:: 05849284 3 12 -quality%1:26:00:: 13948026 5 0 -quality%5:00:00:superior:02 02342899 1 0 -quality%5:00:00:upper-class:00 00261486 2 0 -quality_control%1:04:00:: 00806484 1 0 -quality_of_life%1:26:00:: 13986943 1 1 -qualm%1:12:00:: 07525555 1 1 -qualm%1:26:00:: 14360320 2 0 -quamash%1:20:00:: 12449296 1 0 -quamassia%1:20:00:: 12449024 1 0 -quamoclit_pennata%1:20:00:: 12827270 1 0 -quandang%1:13:00:: 07769306 2 0 -quandang%1:20:00:: 12736603 1 0 -quandary%1:09:00:: 05686086 2 0 -quandary%1:26:00:: 14408646 1 0 -quandong%1:13:00:: 07769306 4 0 -quandong%1:20:01:: 12192877 3 0 -quandong%1:20:02:: 12193334 2 0 -quandong%1:20:03:: 12736603 1 0 -quandong_nut%1:13:00:: 07769465 1 0 -quandong_tree%1:20:01:: 12192877 2 0 -quandong_tree%1:20:02:: 12736603 1 0 -quango%1:14:00:: 08050484 1 0 -quantal%3:01:00:: 02976983 1 0 -quantic%1:09:00:: 05862613 1 0 -quantifiability%1:07:00:: 05209822 1 0 -quantifiable%5:00:00:quantitative:00 01915745 1 0 -quantification%1:04:00:: 01003570 2 0 -quantification%1:09:00:: 06165623 1 0 -quantifier%1:10:00:: 06302381 2 0 -quantifier%1:10:01:: 06302542 1 0 -quantify%2:30:00:: 00489837 2 0 -quantify%2:30:01:: 00492095 1 0 -quantisation%1:04:00:: 00389308 1 0 -quantise%2:31:00:: 00638194 2 0 -quantise%2:31:01:: 00673095 1 0 -quantitative%3:00:00:: 01914930 1 5 -quantitative%3:00:01:: 02290714 3 0 -quantitative%3:01:00:: 02977198 2 0 -quantitative_analysis%1:04:00:: 00647270 1 0 -quantitative_chemical_analysis%1:04:00:: 00647270 1 0 -quantitative_relation%1:24:00:: 13815152 1 0 -quantitatively%4:02:00:: 00246547 1 3 -quantity%1:03:00:: 00033615 1 15 -quantity%1:07:00:: 05108740 2 7 -quantity%1:09:01:: 05855125 3 0 -quantity_unit%1:23:00:: 13632961 1 0 -quantization%1:04:00:: 00389308 1 0 -quantize%2:31:00:: 00638194 2 0 -quantize%2:31:01:: 00673095 1 0 -quantized%3:01:00:: 02976983 1 0 -quantong%1:13:00:: 07769306 1 0 -quantum%1:09:00:: 05855517 2 0 -quantum%1:09:01:: 05855748 1 0 -quantum_chromodynamics%1:09:00:: 06112681 1 0 -quantum_electrodynamics%1:09:00:: 06112505 1 0 -quantum_field_theory%1:09:00:: 06112223 1 0 -quantum_jump%1:11:00:: 07359377 1 0 -quantum_jump%1:11:01:: 07359184 2 0 -quantum_leap%1:11:00:: 07359184 1 0 -quantum_mechanics%1:09:00:: 06111961 1 0 -quantum_physics%1:09:00:: 06101973 1 0 -quantum_theory%1:09:00:: 06107660 1 0 -quaoar%1:17:00:: 09401750 1 0 -quapaw%1:10:00:: 06912056 2 0 -quapaw%1:18:00:: 09666974 1 0 -quarantine%1:04:00:: 01201645 2 0 -quarantine%1:26:00:: 14415335 1 0 -quarantine%2:30:00:: 00496266 1 0 -quarantined%5:00:00:segregated:00 01327205 1 0 -quark%1:13:00:: 07854455 2 0 -quark%1:17:00:: 09401834 1 0 -quark_cheese%1:13:00:: 07854455 1 0 -quarrel%1:06:00:: 04031481 2 0 -quarrel%1:10:00:: 07184149 1 2 -quarrel%2:32:00:: 00775156 1 11 -quarreler%1:18:00:: 10498422 1 0 -quarreller%1:18:00:: 10498422 1 0 -quarrelsome%5:00:00:argumentative:00 00603660 1 1 -quarrelsomeness%1:07:00:: 04643979 1 0 -quarrier%1:18:00:: 10498551 1 0 -quarry%1:05:00:: 02152881 3 0 -quarry%1:06:00:: 03949442 2 0 -quarry%1:18:00:: 10470460 1 0 -quarry%2:34:00:: 01163847 1 0 -quarrying%1:04:00:: 00922968 1 0 -quarryman%1:18:00:: 10498551 1 0 -quart%1:23:01:: 13619592 1 3 -quart%1:23:02:: 13622035 2 0 -quart%1:23:03:: 13620549 3 0 -quartan%1:26:00:: 14340635 1 0 -quartan%3:01:00:: 02997900 1 0 -quarter%1:04:00:: 01258579 14 0 -quarter%1:06:00:: 04316646 12 0 -quarter%1:06:01:: 04031600 13 0 -quarter%1:15:00:: 08627919 2 4 -quarter%1:18:00:: 10498699 11 0 -quarter%1:21:00:: 13390244 10 0 -quarter%1:23:01:: 13737480 1 7 -quarter%1:23:02:: 13720852 8 0 -quarter%1:23:04:: 13623054 9 0 -quarter%1:24:00:: 13830166 7 0 -quarter%1:28:00:: 15226046 5 0 -quarter%1:28:01:: 15258450 3 0 -quarter%1:28:02:: 15206590 6 0 -quarter%1:28:03:: 15234942 4 0 -quarter%2:31:00:: 00642498 4 0 -quarter%2:35:01:: 01563575 3 0 -quarter%2:41:00:: 02483564 2 0 -quarter%2:42:00:: 02653159 1 0 -quarter-century%1:28:00:: 15206195 1 3 -quarter-circle%1:15:00:: 08627805 1 0 -quarter-hour%1:28:00:: 15228267 1 0 -quarter-tone%1:10:00:: 06859309 1 0 -quarter-vine%1:20:00:: 12814003 1 0 -quarter_crack%1:26:00:: 14275661 1 0 -quarter_day%1:28:00:: 15160866 1 0 -quarter_horse%1:05:00:: 02379183 1 0 -quarter_mile%1:23:00:: 13651931 1 2 -quarter_note%1:10:00:: 06871127 1 0 -quarter_plate%1:06:00:: 04032392 1 0 -quarter_pound%1:23:00:: 13720501 1 0 -quarter_rest%1:10:00:: 06871262 1 0 -quarter_round%1:06:00:: 03866721 1 0 -quarter_section%1:23:00:: 13613592 1 0 -quarter_sessions%1:14:00:: 08335253 1 0 -quarter_stock%1:21:00:: 13342597 1 0 -quarter_tone%1:10:00:: 06859309 1 0 -quarterback%1:04:00:: 00726567 2 0 -quarterback%1:18:00:: 10498816 1 6 -quarterback%2:33:00:: 01076370 1 0 -quarterdeck%1:06:00:: 04031770 1 0 -quarterfinal%1:11:00:: 07467212 1 0 -quartering%1:04:00:: 00386553 3 0 -quartering%1:06:00:: 04031884 2 0 -quartering%1:06:01:: 04032049 1 0 -quarterlight%1:06:00:: 04032242 1 0 -quarterly%1:10:00:: 06594625 1 0 -quarterly%3:01:00:: 02998046 1 1 -quarterly%4:02:00:: 00436848 2 0 -quarterly%4:02:01:: 00436980 1 0 -quartermaster%1:18:00:: 10498986 1 0 -quartermaster_general%1:18:00:: 10499110 1 0 -quartern%1:23:00:: 13737480 1 0 -quarters%1:06:00:: 03679384 1 6 -quarterstaff%1:06:00:: 04032509 1 0 -quartervine%1:20:00:: 12814003 1 0 -quartet%1:10:00:: 07041688 5 0 -quartet%1:14:00:: 07987380 4 0 -quartet%1:14:01:: 07988089 3 0 -quartet%1:14:02:: 08247251 2 0 -quartet%1:23:00:: 13744304 1 0 -quartette%1:10:00:: 07041688 4 0 -quartette%1:14:00:: 07987380 3 0 -quartette%1:14:01:: 07988089 2 0 -quartette%1:14:02:: 08247251 1 0 -quartic%1:23:00:: 13731356 1 0 -quartic_polynomial%1:09:00:: 05862113 1 0 -quartile%1:09:00:: 05738204 1 0 -quarto%1:07:00:: 05096820 1 0 -quartz%1:27:00:: 14693733 2 0 -quartz%1:27:01:: 14879750 1 1 -quartz_battery%1:06:00:: 04032603 1 0 -quartz_crystal%1:06:00:: 04032710 1 0 -quartz_glass%1:27:00:: 14879750 1 0 -quartz_lamp%1:06:00:: 04032936 1 0 -quartz_mill%1:06:00:: 04032603 1 0 -quartz_oscillator%1:06:00:: 03143754 1 0 -quartzite%1:27:00:: 14694161 1 0 -quartzose%3:01:00:: 02998184 1 0 -quasar%1:17:00:: 09402370 1 0 -quash%2:41:00:: 02424128 1 1 -quash%2:41:01:: 02478059 2 0 -quasi%5:00:00:similar:00 02072806 1 4 -quasi-ngo%1:14:00:: 08050484 1 0 -quasi-religious%5:00:00:sacred:00 02056165 1 0 -quasi-royal%5:00:00:uncrowned:00 00654983 1 0 -quasi-stellar_radio_source%1:17:00:: 09402370 1 0 -quasi_contract%1:10:00:: 06523969 1 0 -quasiparticle%1:09:00:: 06102116 1 0 -quassia%1:20:01:: 12718995 2 0 -quassia%1:27:00:: 15000475 1 0 -quassia_amara%1:20:00:: 12718995 1 0 -quassia_family%1:20:00:: 12715569 1 0 -quat%1:06:00:: 03608870 1 0 -quatercentenary%1:28:00:: 15251892 1 0 -quatercentennial%1:28:00:: 15251892 1 0 -quatern%1:23:00:: 13744304 1 0 -quaternary%1:23:00:: 13744304 2 0 -quaternary%1:28:00:: 15124545 1 0 -quaternary%5:00:00:multiple:00 02219492 1 0 -quaternary%5:00:00:ordinal:00 02202443 2 0 -quaternary_ammonium_compound%1:27:00:: 14691231 1 0 -quaternary_period%1:28:00:: 15124545 1 0 -quaternate%5:00:00:multiple:00 02219492 1 0 -quaternion%1:23:00:: 13744304 1 0 -quaternity%1:23:00:: 13744304 1 0 -quatrain%1:10:00:: 06384480 1 1 -quattrocento%1:28:00:: 15205880 1 0 -quaver%1:10:00:: 06871384 2 0 -quaver%1:11:00:: 07390857 1 1 -quaver%2:32:00:: 01050896 2 0 -quaver%2:32:01:: 01051118 1 0 -quavering%5:00:00:unsteady:00 02304987 1 3 -quaveringly%4:02:00:: 00509145 1 1 -quay%1:06:00:: 04033082 1 0 -quayage%1:21:00:: 13324188 1 0 -queasily%4:02:00:: 00437102 1 0 -queasiness%1:07:00:: 04625284 2 0 -queasiness%1:26:00:: 14360320 1 0 -queasy%5:00:00:ill:01 02545689 2 0 -queasy%5:00:00:troubled:00 02456157 3 0 -queasy%5:00:00:unwholesome:00 02560035 1 0 -quebec%1:15:00:: 08829071 2 0 -quebec%1:15:01:: 08829317 1 0 -quebec_bridge%1:06:00:: 04033178 1 0 -quebec_city%1:15:00:: 08829317 1 0 -quebecois%1:18:00:: 10499232 1 0 -quebecois%3:01:00:: 02977320 1 0 -quechua%1:10:00:: 06917083 3 0 -quechua%1:14:00:: 08489121 2 0 -quechua%1:18:00:: 09726970 1 0 -quechuan%1:10:00:: 06917083 1 0 -quechuan%3:01:00:: 03108623 1 0 -quechuan_language%1:10:00:: 06917083 1 0 -queckenstedt's_test%1:09:00:: 05744288 1 0 -queen%1:05:01:: 02313008 1 16 -queen%1:05:02:: 02369935 9 0 -queen%1:05:03:: 02122878 10 0 -queen%1:06:00:: 04033287 8 0 -queen%1:06:01:: 04033425 7 0 -queen%1:18:00:: 10499355 2 4 -queen%1:18:01:: 10499857 3 1 -queen%1:18:02:: 10076033 6 0 -queen%1:18:03:: 10235024 5 0 -queen%1:18:04:: 10500217 4 0 -queen%2:38:00:: 01969991 2 0 -queen%2:41:00:: 02593790 1 0 -queen's_counsel%1:18:00:: 10500824 1 0 -queen's_crape_myrtle%1:20:00:: 12329473 1 0 -queen's_cup%1:20:00:: 12472778 1 0 -queen's_english%1:10:00:: 06948260 1 0 -queen-size%5:00:00:large:00 01390344 1 0 -queen-sized%5:00:00:large:00 01390344 1 0 -queen_anne's_lace%1:20:00:: 12937130 1 0 -queen_bee%1:05:00:: 02207345 1 0 -queen_charlotte_sound%1:17:00:: 09402553 1 0 -queen_city%1:15:00:: 09128372 1 0 -queen_consort%1:18:00:: 10500419 1 0 -queen_dowager%1:18:00:: 10500506 1 0 -queen_isabella%1:18:00:: 11073795 1 0 -queen_it_over%2:41:00:: 02593551 1 0 -queen_maud_land%1:15:00:: 08628414 1 0 -queen_mole_rat%1:05:00:: 02369935 1 0 -queen_mother%1:18:00:: 10500603 1 0 -queen_of_england%1:18:00:: 10499631 1 0 -queen_of_the_may%1:18:00:: 10304160 1 0 -queen_of_the_night%1:20:00:: 11853979 1 0 -queen_post%1:06:00:: 04033557 1 0 -queen_regent%1:18:00:: 10500717 1 0 -queen_regnant%1:18:00:: 10499355 1 0 -queen_triggerfish%1:05:00:: 02653497 1 0 -queen_victoria%1:18:00:: 11365857 1 0 -queenfish%1:05:00:: 02598878 1 0 -queenlike%5:00:00:noble:02 01592262 1 0 -queenly%5:00:00:noble:02 01592262 1 0 -queens%1:15:00:: 09123182 1 0 -queensboro_bridge%1:06:00:: 04033647 1 0 -queensland%1:15:00:: 08832691 1 0 -queensland_bottletree%1:20:00:: 12196954 1 0 -queensland_grass-cloth_plant%1:20:00:: 12395906 1 0 -queensland_hemp%1:20:00:: 12186554 1 0 -queensland_kauri%1:20:00:: 11648039 1 0 -queensland_lungfish%1:05:00:: 02516994 1 0 -queensland_nut%1:20:00:: 12221801 1 0 -queer%1:18:00:: 10076033 1 0 -queer%2:32:00:: 01036319 2 0 -queer%2:41:00:: 02558172 1 0 -queer%5:00:00:homosexual:00 01201937 2 0 -queer%5:00:00:strange:00 00968010 1 9 -queer_bird%1:18:00:: 10240514 1 0 -queer_duck%1:18:00:: 10240514 1 0 -queerly%4:02:00:: 00437246 2 0 -queerly%4:02:01:: 00437381 1 0 -queerness%1:04:00:: 00856847 2 0 -queerness%1:07:00:: 04797824 1 0 -quell%2:30:00:: 00463234 1 3 -quell%2:34:00:: 01194114 2 0 -quelled%5:00:00:suppressed:00 00470528 1 0 -quelling%1:04:00:: 01079604 1 0 -quellung%1:22:00:: 13544537 1 0 -quellung_reaction%1:22:00:: 13544537 1 0 -quench%2:30:01:: 00463234 4 0 -quench%2:30:02:: 00370773 6 0 -quench%2:30:04:: 00429763 5 0 -quench%2:34:00:: 01204021 1 1 -quench%2:41:02:: 02422967 3 0 -quench%2:43:00:: 02761897 2 0 -quenched%5:00:00:mitigated:00 01519673 1 0 -quenched%5:00:00:suppressed:00 00470528 2 0 -quenched_steel%1:27:00:: 15000689 1 0 -quenching%1:04:00:: 00229934 1 0 -quenchless%5:00:00:insatiate:00 02078673 1 0 -quentin_jerome_tarantino%1:18:00:: 11331300 1 0 -quentin_tarantino%1:18:00:: 11331300 1 0 -quercitron%1:20:00:: 12279458 2 0 -quercitron%1:27:00:: 15000858 1 0 -quercitron_oak%1:20:00:: 12279458 1 0 -quercus%1:20:00:: 12268096 1 0 -quercus_agrifolia%1:20:00:: 12269406 1 0 -quercus_alba%1:20:00:: 12270027 1 0 -quercus_arizonica%1:20:00:: 12270278 1 0 -quercus_bicolor%1:20:00:: 12270460 1 0 -quercus_borealis%1:20:00:: 12277800 1 0 -quercus_cerris%1:20:00:: 12270741 1 0 -quercus_chrysolepis%1:20:00:: 12270946 1 0 -quercus_coccinea%1:20:00:: 12271187 1 0 -quercus_ellipsoidalis%1:20:00:: 12271451 1 0 -quercus_falcata%1:20:00:: 12271933 1 0 -quercus_garryana%1:20:00:: 12272239 1 0 -quercus_grosseserrata%1:20:00:: 12275317 1 0 -quercus_ilex%1:20:00:: 12272432 1 0 -quercus_ilicifolia%1:20:00:: 12272735 1 0 -quercus_imbricaria%1:20:00:: 12272883 1 0 -quercus_incana%1:20:00:: 12273114 1 0 -quercus_kelloggii%1:20:00:: 12273344 1 0 -quercus_laevis%1:20:00:: 12273515 1 0 -quercus_laurifolia%1:20:00:: 12273768 1 0 -quercus_lobata%1:20:00:: 12273939 1 0 -quercus_lyrata%1:20:00:: 12274151 1 0 -quercus_macrocarpa%1:20:00:: 12274358 1 0 -quercus_marilandica%1:20:00:: 12274863 1 0 -quercus_michauxii%1:20:00:: 12275131 1 0 -quercus_mongolica%1:20:00:: 12275317 1 0 -quercus_montana%1:20:00:: 12276628 1 0 -quercus_muehlenbergii%1:20:00:: 12275675 1 0 -quercus_myrtifolia%1:20:00:: 12275888 1 0 -quercus_nigra%1:20:00:: 12276110 1 0 -quercus_nuttalli%1:20:00:: 12276314 1 0 -quercus_palustris%1:20:00:: 12276872 1 0 -quercus_petraea%1:20:00:: 12276477 1 0 -quercus_phellos%1:20:00:: 12277150 1 0 -quercus_prinoides%1:20:00:: 12277334 1 0 -quercus_prinus%1:20:00:: 12276628 1 0 -quercus_robur%1:20:00:: 12277578 1 0 -quercus_rubra%1:20:00:: 12277800 1 0 -quercus_sessiliflora%1:20:00:: 12276477 1 0 -quercus_shumardii%1:20:00:: 12278107 1 0 -quercus_stellata%1:20:00:: 12278371 1 0 -quercus_suber%1:20:00:: 12278650 1 0 -quercus_texana%1:20:00:: 12278865 1 0 -quercus_vaccinifolia%1:20:00:: 12279060 1 0 -quercus_variabilis%1:20:00:: 12279293 1 0 -quercus_velutina%1:20:00:: 12279458 1 0 -quercus_virginiana%1:20:00:: 12279772 1 0 -quercus_wislizenii%1:20:00:: 12280060 1 0 -quercus_wizlizenii%1:20:00:: 12280060 1 0 -querier%1:18:00:: 10207831 1 0 -quern%1:06:00:: 04033801 1 0 -querulous%5:00:00:complaining:00 00513981 1 2 -querulously%4:02:00:: 00419144 1 1 -querulousness%1:07:00:: 04642980 1 0 -query%1:10:00:: 07193596 1 1 -query%2:32:00:: 00785008 1 3 -query_language%1:10:00:: 06899446 1 0 -quesadilla%1:13:00:: 07881205 1 0 -quest%1:04:00:: 00946650 2 0 -quest%1:09:00:: 05770391 1 1 -quest%2:32:00:: 00782428 4 0 -quest%2:32:01:: 00752764 5 0 -quest%2:32:02:: 01047951 3 0 -quest%2:38:00:: 02002591 2 0 -quest%2:40:00:: 02240881 1 0 -quest_after%2:35:00:: 01317533 1 0 -quest_for%2:35:00:: 01317533 1 0 -quester%1:18:00:: 10575787 1 0 -question%1:07:00:: 04757522 4 8 -question%1:10:00:: 07193596 1 81 -question%1:10:01:: 06783768 2 50 -question%1:10:02:: 07163593 5 0 -question%1:10:03:: 07196682 3 9 -question%1:10:04:: 07162059 6 0 -question%2:32:00:: 00785008 3 5 -question%2:32:01:: 00867409 1 17 -question%2:32:02:: 00925110 5 2 -question%2:32:03:: 00788184 2 14 -question%2:32:09:: 00808855 4 3 -question_mark%1:10:00:: 06844040 1 0 -question_master%1:18:00:: 10500942 1 0 -question_of_fact%1:10:00:: 06784317 1 0 -question_of_law%1:10:00:: 06784470 1 0 -question_sheet%1:10:00:: 07199328 1 0 -question_time%1:28:00:: 15298507 1 0 -questionable%3:00:00:: 01916229 1 2 -questionable%5:00:00:deniable:00 00721371 2 0 -questionably%4:02:00:: 00437796 1 0 -questioner%1:18:00:: 10207831 1 1 -questioning%1:10:00:: 07193184 1 6 -questioning%5:00:00:curious:00 00664879 3 0 -questioning%5:00:00:distrustful:00 02463847 2 0 -questioning%5:00:00:perplexed:00 01766784 1 1 -questioningly%4:02:00:: 00357692 1 1 -questioningly%4:02:01:: 00437976 2 0 -questionnaire%1:10:00:: 06474122 1 4 -quetch%2:32:00:: 00907147 1 0 -quetzal%1:05:00:: 01844551 2 0 -quetzal%1:23:00:: 13696270 1 0 -quetzal_bird%1:05:00:: 01844551 1 0 -quetzalcoatl%1:18:00:: 10501097 1 0 -queue%1:08:00:: 05259823 3 0 -queue%1:10:00:: 06494816 2 0 -queue%1:14:00:: 08432345 1 0 -queue%2:38:00:: 02036755 1 0 -queue_up%2:38:00:: 02036755 1 0 -quezon_city%1:15:00:: 08982181 1 0 -qui_vive%1:26:00:: 14031660 1 0 -quiaquia%1:05:00:: 02581642 1 0 -quibble%1:10:00:: 06761798 1 0 -quibble%2:32:00:: 00774056 2 0 -quibble%2:32:01:: 00810385 1 0 -quibbler%1:18:00:: 10501203 1 0 -quiche%1:10:00:: 06926020 3 0 -quiche%1:13:00:: 07619594 2 0 -quiche%1:18:00:: 09667097 1 0 -quiche_lorraine%1:13:00:: 07619786 1 0 -quick%1:08:00:: 05597980 1 0 -quick%4:02:00:: 00105603 1 7 -quick%5:00:00:active:01 00032733 3 2 -quick%5:00:00:excitable:00 00919018 6 1 -quick%5:00:00:fast:01 00979366 1 20 -quick%5:00:00:hurried:00 01270486 2 6 -quick%5:00:00:intelligent:00 01335903 4 1 -quick%5:00:02:fast:01 00978754 5 1 -quick-change%5:00:00:changeable:00 00346368 1 0 -quick-drying%5:00:00:changeable:00 00346527 1 0 -quick-eared%5:00:00:hearing:00 00682841 1 0 -quick-freeze%2:30:00:: 00375690 1 0 -quick-frozen%5:00:00:preserved:02 01072586 1 1 -quick-sighted%5:00:00:perceptive:00 01745653 2 0 -quick-sighted%5:00:00:sighted:00 02158438 1 0 -quick-tempered%5:00:00:ill-natured:00 01135914 1 0 -quick-witted%5:00:00:adroit:00 00063087 1 0 -quick-wittedness%1:09:00:: 05619345 1 0 -quick_assets%1:21:00:: 13333047 1 0 -quick_bread%1:13:00:: 07684600 1 0 -quick_buck%1:21:00:: 13260510 1 0 -quick_fix%1:04:00:: 00268457 1 0 -quick_grass%1:20:00:: 12105578 1 0 -quick_march%1:04:00:: 00291796 1 1 -quick_study%1:18:00:: 10501453 1 0 -quick_temper%1:12:00:: 07552549 1 0 -quick_time%1:28:00:: 15283224 1 0 -quicken%2:29:00:: 00024279 5 0 -quicken%2:29:02:: 00053035 4 0 -quicken%2:30:00:: 00442063 3 0 -quicken%2:30:01:: 00438178 1 3 -quicken%2:39:00:: 02117534 2 0 -quickener%1:17:00:: 09402704 1 0 -quickening%1:04:00:: 00330457 3 0 -quickening%1:22:00:: 13544783 1 1 -quickening%1:26:00:: 14048134 2 0 -quicker%4:02:00:: 00086528 1 1 -quickest%4:02:00:: 00086685 1 0 -quickie%1:04:00:: 00268457 1 1 -quicklime%1:27:00:: 14789885 1 0 -quickly%4:02:00:: 00085811 1 24 -quickly%4:02:02:: 00105603 2 16 -quickly%4:02:03:: 00290935 3 0 -quickness%1:07:00:: 05059132 3 0 -quickness%1:09:00:: 05619345 2 0 -quickness%1:09:01:: 05642175 1 1 -quicksand%1:17:00:: 09402944 2 0 -quicksand%1:26:00:: 14411772 1 0 -quickset%1:20:00:: 13127666 1 0 -quickset%5:00:00:planted:00 01832108 1 0 -quicksilver%1:27:00:: 14645346 1 0 -quicksilver%5:00:00:changeable:00 00345189 1 1 -quickstep%1:04:01:: 00536964 2 0 -quickstep%1:10:00:: 07058668 1 0 -quickstep%2:38:00:: 01899158 1 1 -quicky%1:04:00:: 00268457 1 0 -quid%1:13:00:: 07579399 3 0 -quid%1:21:00:: 13323460 2 0 -quid%1:23:00:: 13686660 1 0 -quid_pro_quo%1:21:00:: 13323460 1 0 -quiddity%1:09:00:: 05922014 2 0 -quiddity%1:10:00:: 06761798 1 0 -quidnunc%1:18:00:: 09883807 1 0 -quiesce%2:39:00:: 02190188 1 0 -quiescence%1:04:00:: 01064863 2 0 -quiescence%1:26:00:: 14011811 1 0 -quiescency%1:04:00:: 01064863 2 0 -quiescency%1:26:00:: 14011811 1 0 -quiescent%5:00:00:dormant:00 00040909 3 0 -quiescent%5:00:00:inactive:02 00038623 4 0 -quiescent%5:00:00:inactive:07 00043231 1 1 -quiescent%5:00:00:quiet:02 01923118 2 0 -quiet%1:07:00:: 04904352 4 0 -quiet%1:07:02:: 04982207 3 1 -quiet%1:26:00:: 14522956 1 1 -quiet%1:26:02:: 13969101 2 1 -quiet%2:37:00:: 01764800 2 1 -quiet%2:39:00:: 02190188 1 1 -quiet%3:00:01:: 01918984 2 10 -quiet%3:00:02:: 01922763 1 13 -quiet%3:00:03:: 00043615 6 0 -quiet%4:02:00:: 00229568 1 1 -quiet%5:00:00:calm:00 00302951 5 1 -quiet%5:00:00:soft:04 01455540 4 1 -quiet%5:00:00:unostentatious:00 01849170 3 3 -quiet_down%2:39:00:: 02190188 1 1 -quieten%2:30:00:: 00461493 3 0 -quieten%2:37:00:: 01764800 2 0 -quieten%2:39:00:: 02190188 1 0 -quietism%1:09:00:: 05949088 1 0 -quietist%1:18:00:: 10501635 1 0 -quietly%4:02:00:: 00070166 1 8 -quietly%4:02:01:: 00229399 2 7 -quietly%4:02:02:: 00229568 3 3 -quietly%4:02:05:: 00438146 4 0 -quietness%1:07:00:: 04982856 1 2 -quietness%1:12:00:: 07515560 2 1 -quietude%1:12:00:: 07515560 1 0 -quietus%1:26:00:: 13962765 1 0 -quiff%1:08:00:: 05258177 1 0 -quill%1:05:01:: 01900837 2 1 -quill%1:05:02:: 02468617 4 0 -quill%1:05:03:: 02468864 3 0 -quill%1:06:00:: 04033901 1 1 -quill_feather%1:05:00:: 02468864 1 0 -quill_pen%1:06:00:: 04033901 1 0 -quillwort%1:20:00:: 13226320 1 0 -quillwort_family%1:20:00:: 13225955 1 0 -quilt%1:06:00:: 04033995 1 1 -quilt%2:36:00:: 01667304 2 0 -quilt%2:36:01:: 01667449 1 0 -quilted%5:00:00:thick:01 02411683 1 1 -quilted_bedspread%1:06:00:: 04034262 1 0 -quilting%1:06:00:: 04034367 2 0 -quilting%1:06:01:: 04034477 1 0 -quilting_bee%1:14:00:: 07976851 1 0 -quin%1:18:00:: 10501908 1 0 -quinacrine%1:06:00:: 04034641 1 0 -quinacrine_hydrochloride%1:06:00:: 04034641 1 0 -quince%1:13:00:: 07769584 2 0 -quince%1:20:00:: 12628986 1 0 -quince_bush%1:20:00:: 12628986 1 0 -quincentenary%1:28:00:: 15252021 1 0 -quincentenary%3:01:00:: 03108429 1 0 -quincentennial%1:28:00:: 15252021 1 0 -quincentennial%3:01:00:: 03108429 1 0 -quincke's_edema%1:26:00:: 14120310 1 0 -quincy%1:18:00:: 11250833 1 0 -quine%1:18:00:: 11250991 1 0 -quinidex%1:06:00:: 04034884 1 0 -quinidine%1:06:00:: 04034884 1 0 -quinine%1:06:00:: 04035086 1 0 -quinine_water%1:13:00:: 07929172 1 0 -quinnat_salmon%1:05:00:: 02536456 1 0 -quinone%1:27:00:: 15000973 1 0 -quinora%1:06:00:: 04034884 1 0 -quinquagesima%1:28:00:: 15192406 1 0 -quinquagesima_sunday%1:28:00:: 15192406 1 0 -quinquefoliate%5:00:00:compound:00 02174089 1 0 -quinquefoliate_leaf%1:20:00:: 13156884 1 0 -quinquennium%1:28:00:: 15205799 1 0 -quinsy%1:26:00:: 14173823 1 0 -quint%1:18:00:: 10501908 2 0 -quint%1:23:00:: 13744521 1 0 -quintal%1:23:01:: 13721177 2 0 -quintal%1:23:02:: 13725457 1 0 -quintana_roo%1:15:00:: 08745249 1 0 -quintessence%1:09:00:: 05922175 2 0 -quintessence%1:09:01:: 05821646 3 0 -quintessence%1:27:00:: 14847103 1 0 -quintessential%3:01:00:: 02998269 1 0 -quintet%1:10:00:: 07041795 1 1 -quintet%1:14:00:: 07987580 5 0 -quintet%1:14:01:: 07988229 4 0 -quintet%1:14:02:: 08247703 3 0 -quintet%1:23:00:: 13744521 2 0 -quintette%1:10:00:: 07041795 4 0 -quintette%1:14:00:: 07987580 3 0 -quintette%1:14:01:: 07988229 2 0 -quintette%1:14:02:: 08247703 1 0 -quintillion%1:23:00:: 13753274 1 0 -quintillionth%1:23:00:: 13740051 1 0 -quintillionth%5:00:00:ordinal:00 02213029 1 0 -quintipara%1:18:00:: 10501747 1 0 -quintuple%1:14:00:: 07988229 1 0 -quintuple%2:30:00:: 00247234 1 0 -quintuple%5:00:00:multiple:00 02219660 1 0 -quintuplet%1:14:00:: 07988229 3 0 -quintuplet%1:18:00:: 10501908 2 0 -quintuplet%1:23:00:: 13744521 1 0 -quintupling%1:22:00:: 13544930 1 0 -quintus_septimius_florens_tertullianus%1:18:00:: 11336668 1 0 -quip%1:10:00:: 06767777 2 0 -quip%1:10:01:: 07153727 1 0 -quip%2:32:00:: 00853958 1 1 -quipu%1:06:00:: 04035231 1 0 -quira%1:20:01:: 12562577 2 0 -quira%1:20:02:: 12563281 1 0 -quire%1:23:00:: 13583030 1 0 -quirk%1:06:00:: 04035397 2 0 -quirk%1:07:00:: 04797824 1 1 -quirk%2:35:00:: 01222830 1 1 -quirk_bead%1:06:00:: 04035481 1 0 -quirk_molding%1:06:00:: 04035634 1 0 -quirk_moulding%1:06:00:: 04035634 1 0 -quirkiness%1:07:00:: 04797824 1 0 -quirky%5:00:00:unconventional:01 00609564 1 0 -quirt%1:06:00:: 04035748 1 7 -quiscalus%1:05:00:: 01574270 1 0 -quiscalus_quiscula%1:05:00:: 01574560 1 0 -quisling%1:18:00:: 09935793 1 0 -quislingism%1:04:00:: 01205341 1 0 -quit%2:33:05:: 01083044 5 0 -quit%2:38:00:: 02008396 3 1 -quit%2:40:00:: 02227487 4 0 -quit%2:41:00:: 02382367 2 1 -quit%2:42:04:: 02680814 1 13 -quitclaim%1:04:00:: 01108641 2 0 -quitclaim%1:10:00:: 06546783 1 0 -quitclaim_deed%1:10:00:: 06546783 1 0 -quite%4:02:01:: 00018577 2 47 -quite%4:02:02:: 00018781 1 57 -quite%4:02:03:: 00018918 3 6 -quite%4:02:04:: 00019181 4 0 -quite_a%4:02:00:: 00018918 1 0 -quite_a_little%1:23:00:: 13774404 1 0 -quite_an%4:02:00:: 00018918 1 0 -quito%1:15:00:: 08777233 1 0 -quits%5:00:00:equal:00 00892104 1 0 -quittance%1:21:00:: 13299651 2 0 -quittance%1:21:01:: 13403520 1 0 -quitter%1:18:00:: 10502046 1 0 -quiver%1:04:00:: 00345926 4 0 -quiver%1:06:00:: 04035836 3 0 -quiver%1:12:00:: 07520112 1 1 -quiver%1:26:00:: 14004572 2 0 -quiver%2:38:00:: 01889129 1 8 -quiver%2:38:03:: 01879579 3 0 -quiver%2:38:04:: 01878719 2 1 -quivering%1:04:00:: 00345926 2 0 -quivering%1:26:00:: 14004572 1 0 -quixotic%5:00:00:impractical:00 01837182 1 2 -quixotically%4:02:00:: 00438300 1 0 -quixotism%1:07:00:: 05153037 1 0 -quiz%1:10:00:: 07199191 1 2 -quiz%2:32:00:: 00786458 1 0 -quiz_program%1:10:00:: 06621215 1 0 -quizmaster%1:18:00:: 10500942 1 0 -quizzer%1:18:00:: 10068234 1 0 -quizzical%5:00:00:perplexed:00 01766784 2 0 -quizzical%5:00:00:playful:00 02123118 1 0 -quizzically%4:02:00:: 00437976 1 0 -qum%1:15:00:: 08912703 1 0 -quo_warranto%1:04:00:: 01200857 1 0 -quodlibet%1:09:00:: 05815412 1 0 -quoin%1:06:00:: 03109693 3 0 -quoin%1:06:01:: 04035912 2 0 -quoin%1:06:02:: 04036004 1 0 -quoit%1:06:00:: 04036155 1 0 -quoits%1:04:00:: 00467320 1 0 -quondam%5:00:00:past:00 01729566 1 0 -quonset_hut%1:06:00:: 03826186 1 0 -quoratean%1:10:00:: 06921392 1 0 -quorum%1:14:00:: 08357992 1 0 -quota%1:10:00:: 06660396 3 0 -quota%1:21:00:: 13289744 2 0 -quota%1:23:00:: 13599348 1 1 -quotability%1:07:00:: 04807489 1 0 -quotable%3:00:00:: 01963958 1 0 -quotable%5:00:00:worthy:00 02587083 2 0 -quotation%1:04:00:: 01030642 4 0 -quotation%1:10:00:: 06613056 2 1 -quotation%1:10:01:: 06763681 1 1 -quotation%1:10:02:: 06756267 3 0 -quotation_mark%1:10:00:: 06844199 1 0 -quote%1:10:00:: 06844199 1 0 -quote%1:10:01:: 06613056 2 0 -quote%2:32:00:: 01023259 1 30 -quote%2:32:02:: 01023574 3 0 -quote%2:32:07:: 01004403 4 0 -quote%2:32:13:: 01023925 2 0 -quoter%1:18:00:: 10502204 1 0 -quotidian%5:00:00:ordinary:00 01674242 1 0 -quotient%1:23:00:: 13733316 2 0 -quotient%1:24:00:: 13824815 1 0 -quotient_verdict%1:04:00:: 01193535 1 0 -quran%1:10:00:: 06461609 1 0 -qurush%1:23:00:: 13698838 1 0 -qwerty_keyboard%1:06:00:: 04036303 1 0 -r%1:07:00:: 05102101 4 0 -r%1:10:00:: 06833004 3 0 -r%1:23:00:: 13646031 1 0 -r%1:23:01:: 13590079 2 0 -r-2%1:06:00:: 04036494 1 0 -r._b._cattell%1:18:00:: 10891569 1 0 -r._buckminster_fuller%1:18:00:: 10985440 1 0 -r._j._mitchell%1:18:00:: 11182825 1 0 -r.c.%3:01:00:: 02921753 1 0 -r.v.%1:06:00:: 04065272 1 0 -r_and_b%1:10:00:: 07064315 1 0 -ra%1:15:00:: 08633191 3 0 -ra%1:18:00:: 09513216 2 0 -ra%1:27:00:: 14651921 1 0 -rabat%1:15:00:: 08970445 1 1 -rabato%1:06:00:: 04036648 1 0 -rabbet%1:06:00:: 04036776 1 0 -rabbet%2:35:00:: 01281500 2 0 -rabbet%2:35:01:: 01295910 1 0 -rabbet_joint%1:06:00:: 04036963 1 0 -rabbet_plane%1:06:00:: 03849275 1 0 -rabbi%1:10:00:: 06341609 2 0 -rabbi%1:18:00:: 10502329 1 6 -rabbi_moses_ben_maimon%1:18:00:: 11149995 1 0 -rabbinate%1:04:00:: 00598678 2 0 -rabbinate%1:14:00:: 08113910 1 0 -rabbinic%3:01:00:: 02930765 1 0 -rabbinical%3:01:00:: 02930765 1 0 -rabbit%1:05:00:: 02324045 1 9 -rabbit%1:13:00:: 07666521 3 0 -rabbit%1:27:00:: 14765324 2 0 -rabbit%2:33:00:: 01142761 1 0 -rabbit's-foot_fern%1:20:00:: 13177048 1 0 -rabbit-eared_bandicoot%1:05:00:: 01876667 1 0 -rabbit-eye_blueberry%1:20:00:: 12247202 1 0 -rabbit-sized%5:00:00:sized:00 02224168 1 0 -rabbit-weed%1:20:00:: 11974557 1 0 -rabbit_bandicoot%1:05:00:: 01876667 1 0 -rabbit_brush%1:20:00:: 11952541 1 0 -rabbit_burrow%1:17:00:: 09403086 1 0 -rabbit_bush%1:20:00:: 11952541 1 0 -rabbit_ears%1:05:00:: 02324431 2 0 -rabbit_ears%1:06:00:: 04037076 1 0 -rabbit_fever%1:26:00:: 14276360 1 1 -rabbit_food%1:13:00:: 07708398 1 0 -rabbit_hole%1:17:00:: 09403086 1 0 -rabbit_hutch%1:06:00:: 04037220 1 0 -rabbit_on%2:32:00:: 01051956 1 0 -rabbit_punch%1:04:00:: 00136048 1 1 -rabbit_test%1:09:00:: 05744010 1 0 -rabbit_warren%1:15:00:: 08678515 1 1 -rabbit_warren%1:17:00:: 09474765 2 0 -rabbiteye%1:20:00:: 12247202 1 0 -rabbiteye_blueberry%1:20:00:: 12247202 1 0 -rabbitfish%1:05:00:: 01481498 1 0 -rabbitweed%1:20:00:: 11974557 1 0 -rabbitwood%1:20:00:: 12736999 1 0 -rabble%1:14:00:: 08184600 1 1 -rabble%1:14:01:: 08401819 2 0 -rabble-rouser%1:18:00:: 10001481 1 0 -rabble-rousing%5:00:00:provocative:00 01897378 1 0 -rabelais%1:18:00:: 11251225 1 0 -rabelaisian%3:01:00:: 03108861 1 0 -rabi_i%1:28:00:: 15217563 1 0 -rabi_ii%1:28:00:: 15217674 1 0 -rabid%3:01:00:: 02786473 1 0 -rabid%5:00:00:passionate:00 01726859 2 0 -rabidity%1:07:00:: 04885784 1 0 -rabidness%1:07:00:: 04885784 1 0 -rabies%1:26:00:: 14271667 1 0 -rabindranath_tagore%1:18:00:: 11329030 1 0 -raccoon%1:05:00:: 02508021 2 0 -raccoon%1:27:00:: 14765856 1 0 -raccoon_dog%1:05:00:: 02116450 1 0 -raccoon_fox%1:05:00:: 02508742 1 0 -race%1:06:00:: 04037873 6 0 -race%1:11:00:: 07458453 2 6 -race%1:11:01:: 07472657 1 6 -race%1:14:00:: 07967982 3 4 -race%1:14:01:: 08110648 4 2 -race%1:19:00:: 11423197 5 0 -race%2:33:00:: 01086103 2 3 -race%2:38:00:: 02058994 1 15 -race%2:38:10:: 02059462 4 0 -race%2:41:03:: 02369948 3 0 -race_car%1:06:00:: 04037443 1 0 -race_driver%1:18:00:: 10502576 1 0 -race_horse%1:05:00:: 02382948 1 0 -race_meeting%1:11:00:: 07468244 1 0 -race_murder%1:04:00:: 01245159 1 0 -race_problem%1:26:00:: 14410918 1 1 -race_riot%1:04:00:: 01170666 1 0 -race_runner%1:05:00:: 01686044 1 0 -raceabout%1:06:00:: 04037298 1 0 -racecard%1:10:00:: 06748841 1 0 -racecourse%1:06:00:: 04037625 1 0 -racehorse%1:05:00:: 02382948 1 0 -raceme%1:20:00:: 13132486 1 0 -racemic_acid%1:27:00:: 15067739 1 0 -racemose%5:00:00:indeterminate:02 00741633 1 0 -racer%1:05:00:: 02384858 3 0 -racer%1:05:01:: 01730812 4 0 -racer%1:06:00:: 04037443 2 0 -racer%1:18:00:: 10502576 1 0 -racerunner%1:05:00:: 01686044 1 0 -racetrack%1:06:00:: 04037625 1 0 -racetrack_tout%1:18:00:: 10502762 1 0 -raceway%1:06:00:: 04037873 1 0 -raceway%1:06:01:: 04037625 2 0 -rachel%1:18:00:: 11251384 1 0 -rachel_carson%1:18:00:: 10884597 1 0 -rachel_louise_carson%1:18:00:: 10884597 1 0 -rachet%1:06:00:: 04055180 1 0 -rachet_up%2:38:00:: 02072673 1 0 -rachis%1:08:00:: 05588174 2 0 -rachis%1:20:00:: 13128976 1 0 -rachischisis%1:26:00:: 14471224 1 0 -rachitic%5:00:00:ill:01 02546316 1 0 -rachitis%1:26:00:: 14201311 2 0 -rachitis%1:26:01:: 14354642 1 0 -rachmaninoff%1:18:00:: 11251531 1 0 -rachmaninov%1:18:00:: 11251531 1 0 -rachycentridae%1:05:00:: 02573918 1 0 -rachycentron%1:05:00:: 02574093 1 0 -rachycentron_canadum%1:05:00:: 02574271 1 0 -racial%3:00:00:: 01927654 2 1 -racial%3:01:00:: 03141609 1 6 -racial_discrimination%1:04:00:: 01155044 1 0 -racial_extermination%1:04:00:: 01245159 1 0 -racial_immunity%1:26:00:: 14528752 1 0 -racial_profiling%1:04:00:: 01155253 1 0 -racial_segregation%1:14:00:: 08379353 1 0 -racialism%1:04:00:: 01155044 1 0 -racialist%1:18:00:: 10502950 1 0 -racially%4:02:00:: 00130129 1 0 -racily%4:02:00:: 00438483 1 0 -racine%1:15:00:: 09158501 2 0 -racine%1:18:00:: 11251788 1 1 -raciness%1:07:00:: 04902283 2 0 -raciness%1:07:01:: 04992834 1 0 -racing%1:04:00:: 00449295 1 1 -racing_boat%1:06:00:: 04037964 1 0 -racing_car%1:06:00:: 04037443 1 0 -racing_circuit%1:06:00:: 04038109 1 0 -racing_gig%1:06:00:: 04038231 1 0 -racing_shell%1:06:00:: 04190997 1 0 -racing_skate%1:06:00:: 04273972 1 0 -racing_skiff%1:06:00:: 04038338 1 0 -racing_start%1:11:00:: 07329737 1 0 -racing_yacht%1:06:00:: 04610013 1 0 -racism%1:04:00:: 01155044 2 0 -racism%1:09:00:: 06203758 1 0 -racist%1:18:00:: 10502950 1 1 -racist%5:00:00:prejudiced:00 00285905 2 0 -racist%5:00:00:racial:00 01928283 1 0 -rack%1:04:00:: 00287276 7 0 -rack%1:04:01:: 00423916 6 0 -rack%1:06:00:: 04038440 5 0 -rack%1:06:01:: 04038727 1 5 -rack%1:06:02:: 04039041 4 0 -rack%1:11:00:: 07335581 3 0 -rack%1:13:00:: 07668073 2 0 -rack%2:29:00:: 00071547 11 0 -rack%2:35:01:: 01213348 10 0 -rack%2:36:00:: 01669419 9 0 -rack%2:37:00:: 01798678 2 1 -rack%2:37:01:: 01802689 8 0 -rack%2:38:00:: 01960491 1 2 -rack%2:38:01:: 01855058 7 0 -rack%2:38:02:: 01946138 5 0 -rack%2:38:03:: 01940782 6 0 -rack%2:40:00:: 02241107 4 0 -rack%2:41:01:: 02408722 3 0 -rack_and_pinion%1:06:00:: 04039209 1 0 -rack_of_lamb%1:13:00:: 07668356 1 0 -rack_railway%1:06:00:: 03065063 1 0 -rack_rent%1:21:00:: 13296194 1 0 -rack_up%2:30:00:: 00452394 4 0 -rack_up%2:33:00:: 01102997 3 0 -rack_up%2:33:01:: 01111816 1 1 -rack_up%2:35:00:: 01499849 2 0 -racker%1:18:00:: 10503138 1 0 -racket%1:04:00:: 00775943 2 1 -racket%1:06:00:: 04039381 4 0 -racket%1:09:00:: 05720248 3 0 -racket%1:11:00:: 07390945 1 3 -racket%2:35:00:: 01408633 3 0 -racket%2:39:00:: 02172008 2 0 -racket%2:41:00:: 02491383 1 0 -racket_club%1:14:00:: 08230110 1 0 -racketeer%1:18:00:: 10503247 1 3 -racketeer%2:41:00:: 02445788 1 0 -racketeer_influenced_and_corrupt_organizations_act%1:10:00:: 06533039 1 0 -racketeering%1:04:00:: 00776165 1 0 -racketiness%1:07:00:: 04981474 1 0 -rackety%5:00:00:noisy:00 01921466 1 0 -racking%5:00:00:painful:00 01712529 1 0 -racon%1:10:00:: 07263897 1 0 -raconteur%1:18:00:: 09793352 1 0 -racoon%1:05:00:: 02508021 1 0 -racquet%1:06:00:: 04039381 1 0 -racquetball%1:04:00:: 00479616 2 0 -racquetball%1:06:00:: 04039742 1 0 -racy%5:00:00:mobile:00 01524102 4 0 -racy%5:00:00:sexy:00 02132224 3 0 -racy%5:00:00:spirited:00 02280333 1 1 -racy%5:00:00:tasty:00 02397234 2 0 -rad%1:23:00:: 13646557 1 0 -rad%1:23:01:: 13612042 2 0 -radar%1:06:00:: 04039848 1 11 -radar_beacon%1:10:00:: 07263897 1 0 -radar_dome%1:06:00:: 04045255 1 0 -radar_echo%1:10:00:: 07263503 1 0 -radar_fire%1:04:00:: 00992221 1 0 -radar_target%1:10:00:: 07263358 1 0 -radclyffe_hall%1:18:00:: 11025125 1 0 -raddle%1:27:00:: 15008287 1 0 -raddle%2:30:00:: 00508844 2 0 -raddle%2:35:00:: 01518552 1 0 -raddled%5:00:00:tired:00 02433000 2 0 -raddled%5:00:00:worn:00 02582873 1 0 -radhakrishnan%1:18:00:: 11251995 1 0 -radial%1:06:00:: 04040247 1 0 -radial%3:01:00:: 02836757 2 1 -radial%3:01:01:: 02836910 1 1 -radial%3:01:02:: 02836626 3 0 -radial%5:00:00:symmetrical:00 02373055 4 0 -radial-ply%3:01:00:: 02786549 1 0 -radial-ply_tire%1:06:00:: 04040247 1 0 -radial_artery%1:08:00:: 05338847 1 0 -radial_asymmetry%1:07:00:: 05066490 1 0 -radial_engine%1:06:00:: 04040373 1 0 -radial_keratotomy%1:04:00:: 00680018 1 0 -radial_nerve%1:08:00:: 05504807 1 0 -radial_pulse%1:28:00:: 15281071 1 0 -radial_symmetry%1:07:00:: 05065555 1 0 -radial_tire%1:06:00:: 04040247 1 0 -radial_vein%1:08:00:: 05379039 1 0 -radial_velocity%1:28:00:: 15284158 1 0 -radially%4:02:00:: 00438582 1 0 -radially_symmetrical%5:00:00:symmetrical:00 02373309 1 0 -radian%1:23:00:: 13612042 1 0 -radiance%1:07:00:: 04953954 2 1 -radiance%1:19:00:: 11463371 1 2 -radiance%1:26:00:: 14051201 3 0 -radiancy%1:07:00:: 04953954 1 0 -radiant%5:00:00:bright:00 00280463 1 2 -radiant_energy%1:19:00:: 11499091 1 0 -radiant_flux%1:28:00:: 15287351 1 0 -radiant_heating%1:22:00:: 13545036 1 0 -radiantly%4:02:00:: 00438741 1 0 -radiate%2:30:00:: 00291163 2 1 -radiate%2:30:02:: 00529582 7 0 -radiate%2:30:05:: 00436668 8 0 -radiate%2:37:00:: 01829747 6 0 -radiate%2:39:00:: 02160552 5 0 -radiate%2:39:05:: 02161530 4 0 -radiate%2:42:00:: 02686952 3 0 -radiate%2:43:00:: 02767116 1 2 -radiate%5:00:00:compound:00 02174188 2 0 -radiate%5:00:00:symmetrical:00 02373055 1 0 -radiating%5:00:00:divergent:00 00612980 1 0 -radiatio_optica%1:08:00:: 05229049 1 0 -radiation%1:04:00:: 01252918 2 15 -radiation%1:04:01:: 00705580 7 0 -radiation%1:08:00:: 05503555 6 0 -radiation%1:11:00:: 07439883 5 0 -radiation%1:19:00:: 11499284 1 31 -radiation%1:22:00:: 13545184 4 0 -radiation%1:26:00:: 14308472 3 0 -radiation_diagram%1:10:00:: 07005270 1 0 -radiation_field%1:19:00:: 11477582 1 0 -radiation_pattern%1:10:00:: 07005270 1 0 -radiation_pressure%1:19:00:: 11497173 1 0 -radiation_pyrometer%1:06:00:: 04040540 1 0 -radiation_sickness%1:26:00:: 14308472 1 0 -radiation_syndrome%1:26:00:: 14308472 1 0 -radiation_therapy%1:04:00:: 00705580 1 0 -radiator%1:06:01:: 04040759 3 0 -radiator%1:06:02:: 04041069 2 0 -radiator%1:17:00:: 09403211 1 1 -radiator_cap%1:06:00:: 04041243 1 0 -radiator_grille%1:06:00:: 03459775 1 0 -radiator_hose%1:06:00:: 04041408 1 0 -radical%1:10:01:: 06841159 5 0 -radical%1:10:02:: 06300193 6 0 -radical%1:18:01:: 10503452 3 1 -radical%1:23:00:: 13731530 4 0 -radical%1:27:00:: 14621446 1 4 -radical%1:27:02:: 14874196 2 3 -radical%3:00:00:: 00318667 5 0 -radical%3:01:01:: 02836479 4 0 -radical%5:00:00:basic:00 01856802 3 1 -radical%5:00:00:immoderate:00 01535270 1 5 -radical%5:00:00:new:00 01642657 2 4 -radical_cell%1:14:00:: 08358963 1 0 -radical_chic%1:04:00:: 00756034 1 0 -radical_hysterectomy%1:04:00:: 00677434 1 0 -radical_mastectomy%1:04:00:: 00685837 1 0 -radical_sign%1:10:00:: 06812188 1 0 -radicalism%1:09:00:: 06219875 1 2 -radicalize%2:30:00:: 00534369 1 0 -radically%4:02:00:: 00178342 1 6 -radicchio%1:13:00:: 07731006 1 0 -radicle%1:08:00:: 05236152 1 0 -radiculitis%1:26:00:: 14354751 1 0 -radiigera%1:20:00:: 13045429 1 0 -radiigera_fuscogleba%1:20:00:: 13045594 1 0 -radio%1:06:00:: 04041544 3 6 -radio%1:06:01:: 04043733 2 8 -radio%1:10:00:: 06277135 1 9 -radio%2:32:00:: 01007495 1 2 -radio%3:01:00:: 02953847 1 1 -radio-controlled%5:00:00:guided:00 01429138 1 0 -radio-controlled_aircraft%1:06:00:: 03245889 1 0 -radio-frequency_spectrum%1:19:00:: 11500968 1 0 -radio-gramophone%1:06:00:: 04043411 1 0 -radio-opacity%1:19:00:: 11490335 1 0 -radio-opaque%3:00:00:: 00434838 1 0 -radio-phonograph%1:06:00:: 04043411 1 0 -radio_aerial%1:06:00:: 04041747 1 0 -radio_announcer%1:18:00:: 10503710 1 0 -radio_antenna%1:06:00:: 04041747 1 0 -radio_astronomy%1:09:00:: 06096759 1 0 -radio_beacon%1:06:00:: 04041930 2 0 -radio_beacon%1:10:00:: 07264086 1 0 -radio_beam%1:10:00:: 06792645 1 0 -radio_brightness%1:07:00:: 04954412 1 2 -radio_broadcast%1:10:00:: 06622366 1 0 -radio_chassis%1:06:00:: 04042076 1 0 -radio_compass%1:06:00:: 04042204 1 0 -radio_detection_and_ranging%1:06:00:: 04039848 1 0 -radio_emission%1:19:00:: 11499817 1 16 -radio_frequency%1:07:00:: 05056490 1 0 -radio_interferometer%1:06:00:: 04042632 1 0 -radio_link%1:06:00:: 04042795 1 0 -radio_news%1:10:00:: 06683513 1 0 -radio_noise%1:11:00:: 07432034 1 2 -radio_observation%1:04:00:: 01247969 1 2 -radio_operator%1:18:00:: 10504426 1 0 -radio_radiation%1:19:00:: 11499817 1 2 -radio_receiver%1:06:00:: 04043733 1 0 -radio_reflector%1:06:00:: 04044716 1 1 -radio_set%1:06:00:: 04043733 1 0 -radio_signal%1:19:00:: 11500570 1 0 -radio_source%1:17:00:: 09403333 1 3 -radio_spectrum%1:19:00:: 11500968 1 1 -radio_station%1:06:00:: 04044119 1 0 -radio_telescope%1:06:00:: 04044716 1 1 -radio_transmitter%1:06:00:: 04045085 1 1 -radio_wave%1:19:00:: 11499817 1 2 -radioactive%3:00:00:: 00426907 1 3 -radioactive_dating%1:04:00:: 01004377 1 0 -radioactive_decay%1:22:00:: 13456899 1 0 -radioactive_dust%1:27:00:: 14858950 1 0 -radioactive_iodine_excretion_test%1:09:00:: 05744620 1 0 -radioactive_iodine_test%1:09:00:: 05744421 1 0 -radioactive_iodine_uptake_test%1:09:00:: 05744792 1 0 -radioactive_material%1:27:00:: 15002233 1 0 -radioactive_waste%1:27:00:: 15002346 1 0 -radioactively%4:02:00:: 00514781 1 0 -radioactivity%1:22:00:: 13545184 1 0 -radioactivity_unit%1:23:00:: 13635336 1 0 -radiobiologist%1:18:00:: 10503818 1 0 -radiobiology%1:09:00:: 06082834 1 0 -radiocarbon%1:27:00:: 14633856 1 0 -radiocarbon_dating%1:04:00:: 00992732 1 0 -radiocarpal_joint%1:08:00:: 05584928 1 0 -radiochemist%1:18:00:: 10364502 1 0 -radiochemistry%1:09:00:: 06090540 1 0 -radiochlorine%1:27:00:: 14634999 1 3 -radiocommunication%1:10:00:: 06277135 1 0 -radiogram%1:06:00:: 04042358 2 0 -radiogram%1:10:00:: 06276401 1 0 -radiograph%1:06:00:: 04042358 1 0 -radiographer%1:18:00:: 10503965 1 0 -radiographic%3:01:00:: 02837145 1 0 -radiography%1:04:00:: 00904428 2 0 -radiography%1:22:00:: 13545382 1 0 -radioimmunoassay%1:09:00:: 05740804 1 0 -radioisotope%1:27:00:: 14619857 1 0 -radiolaria%1:05:00:: 01390899 1 0 -radiolarian%1:05:00:: 01391028 1 0 -radiolocate%2:42:00:: 02695520 1 0 -radiolocation%1:06:00:: 04039848 1 0 -radiologic_technologist%1:18:00:: 10504090 1 0 -radiological%3:01:00:: 02786744 1 0 -radiologist%1:18:00:: 10504206 1 0 -radiology%1:04:00:: 00903309 2 0 -radiology%1:09:00:: 06062407 1 0 -radiolucent%3:00:00:: 00434692 1 0 -radiolysis%1:22:00:: 13545627 1 0 -radiometer%1:06:00:: 04042985 1 0 -radiomicrometer%1:06:00:: 04043168 1 0 -radiopacity%1:19:00:: 11490335 1 0 -radiopaque%3:00:00:: 00434838 1 0 -radiopaque_dye%1:27:00:: 15001212 1 0 -radiopharmaceutical%1:06:00:: 04043268 1 0 -radiophone%1:06:00:: 04044498 1 0 -radiophonic%3:01:00:: 02786866 1 0 -radiophoto%1:06:00:: 04043619 1 0 -radiophotograph%1:06:00:: 04043619 1 0 -radiophotography%1:04:00:: 00907235 1 0 -radioprotection%1:26:00:: 14540455 1 0 -radioscopy%1:04:00:: 00903309 1 0 -radiosensitive%5:00:00:sensitive:01 02104890 1 0 -radiosensitivity%1:09:00:: 05654201 1 0 -radiotelegraph%1:06:00:: 04044307 2 0 -radiotelegraph%1:10:00:: 06275471 1 0 -radiotelegraphic_signal%1:10:00:: 06805665 1 0 -radiotelegraphy%1:06:00:: 04044307 2 0 -radiotelegraphy%1:10:00:: 06275471 1 0 -radiotelephone%1:06:00:: 04044498 2 0 -radiotelephone%1:10:00:: 06276501 1 0 -radiotelephonic%3:01:00:: 02786866 1 0 -radiotelephony%1:10:00:: 06276501 1 0 -radiotherapist%1:18:00:: 10504206 1 0 -radiotherapy%1:04:00:: 00705580 1 0 -radiotherapy_equipment%1:06:00:: 04044955 1 0 -radiothorium%1:27:00:: 14658422 1 0 -radish%1:13:00:: 07735687 1 8 -radish%1:20:00:: 11894770 4 0 -radish%1:20:02:: 11894958 3 0 -radish%1:20:03:: 11895092 2 0 -radish%1:20:04:: 11894327 5 0 -radish_plant%1:20:00:: 11894327 1 0 -radium%1:27:00:: 14651921 1 0 -radium_therapy%1:04:00:: 00706019 1 0 -radius%1:06:00:: 04283378 5 0 -radius%1:07:00:: 05102101 1 4 -radius%1:08:00:: 05593318 4 0 -radius%1:15:00:: 08628578 3 1 -radius%1:25:00:: 13871538 2 1 -radius_of_curvature%1:07:00:: 05102578 1 3 -radius_vector%1:09:00:: 05865174 2 0 -radius_vector%1:09:01:: 05865311 1 0 -radix%1:23:00:: 13597794 1 0 -radome%1:06:00:: 04045255 1 0 -radon%1:27:00:: 14652104 1 0 -radyera%1:20:00:: 12185687 1 0 -radyera_farragei%1:20:00:: 12185859 1 0 -raetam%1:20:00:: 12567490 1 0 -raf%1:14:00:: 08195132 1 0 -raf%1:14:01:: 08041106 2 0 -raffaello_santi%1:18:00:: 11254028 1 0 -raffaello_sanzio%1:18:00:: 11254028 1 0 -raffia%1:20:00:: 12594746 3 0 -raffia%1:20:02:: 12595305 2 0 -raffia%1:27:00:: 15002546 1 0 -raffia_farinifera%1:20:00:: 12594989 1 0 -raffia_palm%1:20:00:: 12594989 1 0 -raffia_ruffia%1:20:00:: 12594989 1 0 -raffia_taedigera%1:20:00:: 12595452 1 0 -raffia_vinifera%1:20:00:: 12595699 1 0 -raffinose%1:27:00:: 15002679 1 0 -raffish%5:00:00:fashionable:00 00971933 1 0 -raffish%5:00:00:unconventional:01 00609341 2 0 -raffishly%4:02:00:: 00221130 1 0 -raffle%1:04:00:: 00508672 1 0 -raffle%2:40:00:: 02201975 1 0 -raffle_off%2:40:00:: 02201975 1 0 -raffles%1:18:00:: 11252222 1 0 -rafflesiaceae%1:20:00:: 11803118 1 0 -raft%1:06:00:: 04045397 1 2 -raft%1:23:00:: 13774404 2 0 -raft%2:36:00:: 01654156 3 0 -raft%2:38:00:: 01842508 2 0 -raft%2:38:01:: 01949966 1 0 -raft_foundation%1:06:00:: 04045787 1 0 -rafter%1:06:00:: 04045644 1 1 -rafter%1:18:00:: 10504545 2 0 -rafter%2:40:00:: 02337870 1 0 -raftered%5:00:00:ceilinged:00 01210174 1 1 -raftman%1:18:00:: 10504545 1 0 -rafts%1:23:00:: 13777509 1 0 -raftsman%1:18:00:: 10504545 1 0 -rag%1:04:02:: 00514658 5 0 -rag%1:06:00:: 04045941 1 9 -rag%1:10:00:: 06267893 4 0 -rag%1:10:01:: 07060844 3 0 -rag%1:28:00:: 15170786 2 0 -rag%2:30:00:: 00338736 6 0 -rag%2:32:00:: 00824767 5 0 -rag%2:32:01:: 00850501 4 0 -rag%2:36:00:: 01725886 3 0 -rag%2:37:00:: 01803003 1 0 -rag%2:37:01:: 01787955 2 0 -rag_day%1:28:00:: 15171008 1 0 -rag_doll%1:06:00:: 04046172 1 0 -rag_gourd%1:20:00:: 12166424 1 0 -rag_paper%1:27:00:: 14694672 1 0 -rag_trade%1:14:00:: 08066317 1 0 -rag_week%1:28:00:: 15170786 1 0 -ragamuffin%1:18:00:: 10504664 1 1 -ragbag%1:06:00:: 04046091 2 0 -ragbag%1:14:00:: 08399977 1 0 -rage%1:09:00:: 05751173 5 0 -rage%1:12:00:: 07516997 1 21 -rage%1:26:00:: 14036735 2 4 -rage%1:26:01:: 13980128 4 0 -rage%1:26:02:: 14039179 3 1 -rage%2:37:00:: 01796033 3 1 -rage%2:42:00:: 02722902 2 4 -rage%2:42:01:: 02723016 1 4 -ragee%1:20:00:: 12118661 1 0 -ragged%5:00:00:tired:00 02434210 2 2 -ragged%5:00:00:uneven:00 00913131 3 2 -ragged%5:00:01:worn:00 02582697 1 5 -ragged-fringed_orchid%1:20:00:: 12067193 1 0 -ragged_orchid%1:20:00:: 12067193 1 0 -ragged_orchis%1:20:00:: 12067193 1 0 -ragged_robin%1:20:00:: 11811706 1 0 -raggedly%4:02:00:: 00438846 3 0 -raggedly%4:02:01:: 00438995 2 0 -raggedly%4:02:02:: 00439125 1 0 -raggedness%1:07:00:: 04817168 2 0 -raggedness%1:07:01:: 04948241 1 0 -ragi%1:20:00:: 12118661 1 0 -raging%5:00:00:intense:00 01512804 2 0 -raging%5:00:00:stormy:00 00304144 3 0 -raging%5:00:00:violent:00 02511800 1 0 -raglan%1:06:00:: 04046277 1 0 -raglan_sleeve%1:06:00:: 04046400 1 0 -ragnar_anton_kittil_frisch%1:18:00:: 10983007 1 0 -ragnar_frisch%1:18:00:: 10983007 1 0 -ragnarok%1:10:00:: 06372925 1 0 -ragout%1:13:00:: 07592656 1 0 -ragpicker%1:18:00:: 10504805 1 0 -ragpicker's_disease%1:26:00:: 14072934 1 0 -ragsorter%1:18:00:: 10504956 1 0 -ragsorter's_disease%1:26:00:: 14072934 1 0 -ragtag%1:14:00:: 08401819 1 0 -ragtag_and_bobtail%1:14:00:: 08401819 1 0 -ragtime%1:10:00:: 07060844 1 0 -ragusa%1:15:00:: 08818835 1 0 -ragweed%1:20:01:: 11919447 2 0 -ragweed%1:20:02:: 12012253 1 0 -ragweed_pollen%1:27:00:: 14585392 1 0 -ragwort%1:20:01:: 12012253 1 0 -ragwort%1:20:02:: 12012111 2 0 -rahu%1:18:00:: 09528032 1 0 -raid%1:04:00:: 00976953 1 3 -raid%1:04:01:: 00777324 2 0 -raid%2:35:02:: 01318081 4 0 -raid%2:38:00:: 02020027 2 2 -raid%2:40:02:: 02275152 3 0 -raid%2:41:00:: 02494850 1 2 -raider%1:14:00:: 08076253 2 0 -raider%1:18:00:: 10443170 1 0 -raiding%5:00:00:offensive:03 01629832 1 0 -rail%1:05:00:: 02014941 5 0 -rail%1:06:00:: 04046590 4 0 -rail%1:06:01:: 04463679 3 0 -rail%1:06:02:: 04047401 1 5 -rail%1:06:03:: 04046810 2 3 -rail%2:32:00:: 00911261 1 2 -rail%2:32:01:: 00847870 9 0 -rail%2:32:04:: 00841767 10 0 -rail%2:33:00:: 01141271 8 0 -rail%2:35:03:: 01503268 7 0 -rail%2:38:00:: 01936537 6 0 -rail%2:38:01:: 02031430 4 0 -rail%2:38:04:: 01954559 5 0 -rail%2:40:00:: 02330407 3 0 -rail%2:42:00:: 02711543 2 0 -rail-splitter%1:18:00:: 10505206 1 0 -rail_fence%1:06:00:: 04046974 1 1 -rail_in%2:42:00:: 02711543 1 0 -rail_line%1:06:00:: 03671272 1 0 -rail_off%2:38:00:: 02031430 1 0 -rail_technology%1:04:00:: 00951037 1 0 -railbird%1:18:00:: 10505085 1 0 -railcar%1:06:00:: 02959942 1 0 -railhead%1:06:00:: 04047139 1 1 -railhead%1:06:01:: 04047291 2 0 -railing%1:06:00:: 04047401 1 3 -railing%1:06:01:: 04047733 2 0 -raillery%1:10:00:: 06777794 1 0 -railroad%1:06:00:: 04048568 1 13 -railroad%1:06:01:: 04048075 2 0 -railroad%2:38:00:: 01950657 3 0 -railroad%2:40:00:: 02331919 2 0 -railroad%2:41:00:: 02506181 1 0 -railroad_bed%1:06:00:: 04047834 1 0 -railroad_car%1:06:00:: 02959942 1 0 -railroad_engineer%1:18:00:: 10057714 1 0 -railroad_flat%1:06:00:: 04047949 1 0 -railroad_line%1:06:00:: 04048568 1 0 -railroad_man%1:18:00:: 10722758 1 0 -railroad_siding%1:06:00:: 04216106 1 2 -railroad_station%1:06:00:: 04049098 1 5 -railroad_terminal%1:06:00:: 04049098 1 1 -railroad_ticket%1:10:00:: 06519607 1 0 -railroad_tie%1:06:00:: 04433585 1 0 -railroad_track%1:06:00:: 04048075 1 0 -railroad_train%1:06:00:: 04468005 1 1 -railroad_tunnel%1:06:00:: 04048441 1 0 -railroad_vine%1:20:00:: 12828628 1 0 -railroad_worm%1:05:00:: 02196896 1 0 -railroader%1:18:00:: 10722758 1 0 -railroading%1:04:00:: 00951037 1 0 -rails%1:06:00:: 04463679 1 0 -railway%1:06:00:: 04048568 1 1 -railway%1:06:01:: 04048075 2 1 -railway_car%1:06:00:: 02959942 1 0 -railway_junction%1:06:00:: 04048979 1 0 -railway_line%1:06:00:: 03671272 2 0 -railway_line%1:06:01:: 04048568 1 0 -railway_locomotive%1:06:00:: 03684823 1 0 -railway_man%1:18:00:: 10722758 1 0 -railway_station%1:06:00:: 04049098 1 1 -railway_system%1:06:00:: 04048568 1 1 -railway_yard%1:06:00:: 04611154 1 0 -railwayman%1:18:00:: 10722758 1 0 -railyard%1:06:00:: 04611154 1 0 -raiment%1:06:00:: 02742322 1 0 -raiment%2:29:00:: 00047945 1 0 -raimentless%5:00:00:unclothed:00 00459102 1 0 -rain%1:07:00:: 05045208 3 0 -rain%1:19:00:: 11501381 1 25 -rain%1:27:00:: 15008607 2 5 -rain%2:43:00:: 02756558 1 13 -rain-giver%1:18:00:: 09574446 1 0 -rain-in-the-face%1:18:00:: 11252392 1 0 -rain-wash%1:22:00:: 13545733 1 0 -rain_barrel%1:06:00:: 04049303 1 0 -rain_buckets%2:43:00:: 02758033 1 0 -rain_cats_and_dogs%2:43:00:: 02758033 1 0 -rain_check%1:10:00:: 06520571 2 0 -rain_check%1:10:01:: 07228630 1 0 -rain_cloud%1:17:00:: 09371686 1 1 -rain_dance%1:04:00:: 00542711 1 1 -rain_date%1:28:00:: 15160216 1 0 -rain_down%2:43:00:: 02756558 1 0 -rain_forest%1:14:00:: 08439126 1 0 -rain_gage%1:06:00:: 04049585 1 0 -rain_gauge%1:06:00:: 04049585 1 0 -rain_out%2:41:00:: 02594833 1 0 -rain_shadow%1:15:00:: 08628746 1 0 -rain_shower%1:19:00:: 11502497 1 0 -rain_stick%1:06:00:: 04049753 1 0 -rain_tree%1:20:00:: 11759853 1 0 -rainbow%1:09:00:: 05950982 2 0 -rainbow%1:17:00:: 09403427 1 2 -rainbow_cactus%1:20:00:: 11846425 1 0 -rainbow_fish%1:05:00:: 01448594 1 0 -rainbow_lorikeet%1:05:00:: 01821076 1 0 -rainbow_perch%1:05:00:: 02571167 1 0 -rainbow_pink%1:20:00:: 11808721 1 0 -rainbow_runner%1:05:00:: 02577403 1 0 -rainbow_seaperch%1:05:00:: 02571167 1 0 -rainbow_shower%1:20:00:: 12492682 1 0 -rainbow_smelt%1:05:00:: 02540791 2 0 -rainbow_smelt%1:13:00:: 07798728 1 0 -rainbow_trout%1:05:00:: 02537525 2 0 -rainbow_trout%1:13:00:: 07794605 1 0 -raincoat%1:06:00:: 04049405 1 0 -raindrop%1:19:00:: 11501649 1 0 -rainer_maria_rilke%1:18:00:: 11262574 1 0 -rainfall%1:19:00:: 11501381 1 1 -rainfly%1:06:00:: 04412097 1 0 -rainforest%1:14:00:: 08439126 1 0 -raininess%1:07:00:: 05037037 1 0 -raining%5:00:00:descending:00 02486797 1 0 -rainless%5:00:00:dry:01 02553797 1 0 -rainmaker%1:18:00:: 10505347 2 0 -rainmaker%1:18:01:: 10505459 1 0 -rainmaking%1:04:00:: 00922054 1 0 -rainproof%5:00:00:tight:02 01398941 1 0 -rainstorm%1:19:00:: 11501737 1 0 -rainwater%1:27:00:: 15008607 1 0 -rainy%5:00:00:wet:01 02550333 1 0 -rainy_day%1:28:00:: 15294745 1 0 -rainy_season%1:28:00:: 15238895 1 0 -raisable%5:00:00:mobile:00 01524215 1 0 -raise%1:04:00:: 00116376 4 0 -raise%1:04:01:: 00803208 3 0 -raise%1:07:00:: 05110185 1 3 -raise%1:17:00:: 09206985 2 0 -raise%2:29:00:: 00098517 27 0 -raise%2:30:00:: 00229605 13 1 -raise%2:30:01:: 00158503 1 33 -raise%2:30:02:: 00544549 12 1 -raise%2:30:03:: 00549982 25 0 -raise%2:30:13:: 00354195 26 0 -raise%2:30:14:: 00557537 24 0 -raise%2:31:00:: 00641929 23 0 -raise%2:32:00:: 00941166 3 21 -raise%2:32:01:: 01025246 19 0 -raise%2:32:06:: 00851625 21 0 -raise%2:32:14:: 00744070 22 0 -raise%2:32:15:: 00950782 20 0 -raise%2:33:00:: 01098452 18 0 -raise%2:33:08:: 01156291 17 0 -raise%2:33:09:: 01156406 16 0 -raise%2:36:01:: 01629958 7 7 -raise%2:36:02:: 01661243 9 2 -raise%2:36:03:: 01739814 5 10 -raise%2:36:06:: 01755651 11 1 -raise%2:37:08:: 01759326 10 1 -raise%2:38:00:: 01974062 2 26 -raise%2:38:01:: 01975587 15 0 -raise%2:38:02:: 01973759 8 4 -raise%2:40:00:: 02306281 4 14 -raise%2:41:00:: 02539788 6 7 -raise%2:41:04:: 02397637 14 0 -raise_a_stink%2:32:00:: 00910654 1 0 -raise_hell%2:32:00:: 00910654 1 1 -raise_the_roof%2:37:00:: 01787469 1 1 -raise_up%2:35:00:: 01419473 1 2 -raiseable%5:00:00:mobile:00 01524215 1 0 -raised%3:00:00:: 01207835 1 4 -raised%5:00:00:increased:00 00881432 3 0 -raised%5:00:01:adorned:00 00057149 2 1 -raised_doughnut%1:13:00:: 07639188 1 0 -raiser%1:18:00:: 09779790 2 0 -raiser%1:18:01:: 10505613 1 0 -raisin%1:13:00:: 07752664 1 0 -raisin-nut_cookie%1:13:00:: 07637398 1 0 -raisin_bran%1:13:00:: 07705221 1 0 -raisin_bread%1:13:00:: 07684517 1 0 -raisin_cookie%1:13:00:: 07637652 1 0 -raisin_moth%1:05:00:: 02290870 1 0 -raising%1:04:01:: 01129532 3 0 -raising%1:07:00:: 04922113 2 0 -raising%1:11:00:: 07370671 1 1 -raising%5:00:00:increasing:00 02536605 1 2 -raising_hell%1:04:00:: 01223032 1 0 -raison_d'etre%1:07:00:: 05149589 2 0 -raison_d'etre%1:09:00:: 05794618 1 0 -raita%1:13:00:: 07849619 1 0 -raiu%1:09:00:: 05744792 1 0 -raj%1:26:00:: 14443345 1 0 -raja%1:05:00:: 01501450 2 0 -raja%1:18:00:: 10505732 1 0 -raja_batis%1:05:00:: 01501641 1 0 -raja_erinacea%1:05:00:: 01501777 1 0 -raja_laevis%1:05:00:: 01502101 1 0 -raja_radiata%1:05:00:: 01501948 1 0 -rajab%1:28:00:: 15218037 1 0 -rajah%1:18:00:: 10505732 1 1 -rajanya%1:14:00:: 08307145 1 0 -rajidae%1:05:00:: 01500995 1 0 -rajiformes%1:05:00:: 01496617 1 0 -rajpoot%1:18:00:: 10505816 1 0 -rajput%1:18:00:: 10505816 1 0 -rakaposhi%1:17:00:: 09403581 1 0 -rake%1:06:00:: 04050066 3 0 -rake%1:07:00:: 05069199 2 0 -rake%1:18:00:: 10505942 1 0 -rake%2:35:00:: 01306853 5 0 -rake%2:35:01:: 01307020 2 1 -rake%2:35:02:: 01240514 6 0 -rake%2:38:00:: 02099669 1 1 -rake%2:39:00:: 02152278 4 0 -rake%2:42:10:: 02688527 3 0 -rake-off%1:21:00:: 13289306 1 0 -rake_handle%1:06:00:: 04050313 1 0 -rake_in%2:40:00:: 02290029 1 0 -rake_off%2:40:00:: 02284662 1 0 -rake_up%2:31:00:: 00721755 1 1 -rakehell%1:18:00:: 10505942 1 0 -rakish%5:00:00:fashionable:00 00971933 1 0 -rakish%5:00:00:unconventional:01 00609341 2 0 -rakishly%4:02:00:: 00221130 1 1 -rakishness%1:07:01:: 04814025 2 0 -rakishness%1:07:02:: 04884995 1 0 -rale%1:11:00:: 07391240 1 0 -ralegh%1:18:00:: 11252627 1 0 -raleigh%1:15:00:: 09127844 2 0 -raleigh%1:18:00:: 11252627 1 0 -rallentando%4:02:00:: 00423888 1 0 -rallentando%5:00:00:decreasing:02 02538508 1 0 -rallidae%1:05:00:: 02014646 1 0 -rally%1:04:00:: 01166517 5 0 -rally%1:04:01:: 00045646 2 1 -rally%1:11:01:: 07459157 4 0 -rally%1:14:00:: 08358332 1 2 -rally%1:22:00:: 13545845 3 0 -rally%2:30:00:: 00528608 4 1 -rally%2:32:00:: 00850501 5 0 -rally%2:33:00:: 01097960 2 2 -rally%2:35:00:: 01385643 1 3 -rally%2:35:01:: 01381549 3 1 -rallying%1:04:00:: 01230685 1 1 -rallying%1:04:01:: 00045646 2 0 -rallying%5:00:00:encouraging:00 00867092 1 1 -rallying_cry%1:10:00:: 07152752 1 0 -rallying_cry%1:10:01:: 07123404 2 0 -rallying_point%1:10:00:: 06607067 1 1 -ralph_barton_perry%1:18:00:: 11230669 1 0 -ralph_bunche%1:18:00:: 10871270 1 0 -ralph_ellison%1:18:00:: 10958182 1 0 -ralph_johnson_bunche%1:18:00:: 10871270 1 0 -ralph_richardson%1:18:00:: 11261184 1 0 -ralph_vaughan_williams%1:18:00:: 11361585 1 0 -ralph_waldo_ellison%1:18:00:: 10958182 1 0 -ralph_waldo_emerson%1:18:00:: 10958552 1 0 -ram%1:05:00:: 02412080 5 0 -ram%1:06:00:: 04050410 4 0 -ram%1:06:01:: 04052757 1 1 -ram%1:15:00:: 08686129 3 0 -ram%1:18:00:: 09752246 2 0 -ram%2:35:00:: 01516534 2 2 -ram%2:35:01:: 01561819 3 1 -ram%2:35:02:: 01575146 1 2 -ram%2:35:03:: 01524298 4 0 -ram's-head%1:20:00:: 12056990 1 0 -ram's-head_lady's_slipper%1:20:00:: 12056990 1 0 -ram's_horn%1:20:00:: 12875269 1 0 -ram_disk%1:06:00:: 04050600 1 0 -ram_down%2:31:00:: 00606471 2 0 -ram_down%2:35:00:: 01575146 1 0 -ram_home%2:32:00:: 01014362 1 0 -rama%1:18:00:: 09530867 1 0 -ramachandra%1:18:00:: 09531186 1 0 -ramadan%1:04:00:: 01243089 2 0 -ramadan%1:28:00:: 15218272 1 0 -ramalina%1:20:00:: 12990250 1 0 -ramanavami%1:28:00:: 15219874 1 0 -ramate%5:00:00:branchy:00 00613866 1 0 -ramayana%1:10:00:: 06464024 1 0 -ramble%1:04:00:: 00284409 1 0 -ramble%2:38:01:: 01881180 2 0 -ramble%2:42:00:: 02684453 1 2 -ramble_on%2:42:00:: 02684453 1 1 -rambler%1:18:00:: 10506220 1 0 -rambler%1:18:01:: 10506094 2 0 -rambling%5:00:00:indirect:00 00763407 3 0 -rambling%5:00:00:indirect:02 00768397 2 0 -rambling%5:00:00:untidy:00 02426679 1 0 -ramblingly%4:02:00:: 00500355 1 0 -rambotan%1:13:00:: 07769731 2 0 -rambotan%1:20:00:: 12745386 1 0 -rambouillet%1:05:00:: 02414442 1 0 -rambunctious%5:00:00:disorderly:00 01666489 1 0 -rambutan%1:13:00:: 07769731 2 0 -rambutan%1:20:00:: 12745386 1 0 -rambutan_tree%1:20:00:: 12745386 1 0 -rameau%1:18:00:: 11252915 1 0 -ramee%1:20:00:: 12393269 1 0 -ramekin%1:06:00:: 04050933 2 0 -ramekin%1:13:00:: 07937621 1 0 -ramequin%1:06:00:: 04050933 2 0 -ramequin%1:13:00:: 07937621 1 0 -rameses%1:18:00:: 11253097 1 0 -rameses_ii%1:18:00:: 11253248 1 0 -rameses_the_great%1:18:00:: 11253248 1 0 -ramesses%1:18:00:: 11253097 1 0 -ramesses_ii%1:18:00:: 11253248 1 0 -ramesses_the_great%1:18:00:: 11253248 1 0 -ramie%1:20:00:: 12393269 1 0 -ramification%1:04:00:: 00388392 1 1 -ramification%1:07:00:: 05083200 4 0 -ramification%1:11:00:: 07423899 3 0 -ramification%1:25:00:: 13913849 2 0 -ramify%2:30:00:: 00328802 3 0 -ramify%2:30:01:: 00329244 2 0 -ramify%2:30:04:: 00401373 1 0 -ramipril%1:06:00:: 04051068 1 0 -ramjet%1:06:00:: 04051269 1 0 -ramjet_engine%1:06:00:: 04051269 1 0 -ramman%1:18:00:: 09521521 1 0 -rammer%1:06:00:: 04051439 1 0 -ramon_lully%1:18:00:: 11145085 1 0 -ramon_y_cajal%1:18:00:: 11253455 1 0 -ramona%1:20:00:: 12865824 1 0 -ramontchi%1:20:00:: 12378249 1 0 -ramose%5:00:00:branchy:00 00613866 1 0 -ramous%5:00:00:branchy:00 00613866 1 0 -ramp%1:06:00:: 04051549 1 2 -ramp%1:06:01:: 04615728 3 0 -ramp%1:20:00:: 12435338 2 0 -ramp%2:35:00:: 01546513 5 0 -ramp%2:38:02:: 01922754 4 0 -ramp%2:39:00:: 02143124 3 0 -ramp%2:40:00:: 02334595 2 0 -ramp%2:42:00:: 02723016 1 0 -ramp_up%2:30:00:: 00253277 1 0 -rampage%1:04:00:: 00554541 1 0 -rampage%2:41:00:: 02584906 1 0 -rampageous%5:00:00:violent:00 02512470 1 0 -rampant%5:00:00:abundant:00 00016005 3 0 -rampant%5:00:00:erect:00 01236964 2 0 -rampant%5:00:00:uncontrolled:00 00601032 1 1 -rampant_arch%1:06:00:: 04051705 1 0 -rampantly%4:02:00:: 00439257 1 0 -rampart%1:06:00:: 04051825 1 2 -ramphastidae%1:05:00:: 01843238 1 0 -ramphomicron%1:05:00:: 01834412 1 0 -rampion%1:20:00:: 12038898 1 0 -rampion_bellflower%1:20:00:: 12038898 1 0 -ramrod%1:06:00:: 04052235 1 4 -ramrod%1:06:01:: 04052346 3 0 -ramrod%1:18:00:: 10506336 2 0 -ramsay_hunt_syndrome%1:26:00:: 14308945 1 0 -ramses%1:18:00:: 11253097 1 0 -ramses_ii%1:18:00:: 11253248 1 0 -ramses_the_great%1:18:00:: 11253248 1 0 -ramshackle%5:00:00:damaged:00 00679717 1 0 -ramsons%1:20:00:: 12435649 1 0 -ramus%1:08:00:: 05276290 1 0 -rana%1:05:00:: 01640567 1 0 -rana_cascadae%1:05:00:: 01641930 1 0 -rana_catesbeiana%1:05:00:: 01641577 1 0 -rana_clamitans%1:05:00:: 01641739 1 0 -rana_goliath%1:05:00:: 01642097 1 0 -rana_palustris%1:05:00:: 01642257 1 0 -rana_pipiens%1:05:00:: 01641391 1 0 -rana_sylvatica%1:05:00:: 01641206 1 0 -rana_tarahumarae%1:05:00:: 01642391 1 0 -rana_temporaria%1:05:00:: 01642539 1 0 -ranales%1:20:00:: 11692952 1 0 -ranalian_complex%1:20:00:: 11667112 1 0 -ranatra%1:05:00:: 02242816 1 0 -ranch%1:06:00:: 04052442 1 4 -ranch%2:41:00:: 02420430 1 0 -ranch_hand%1:18:00:: 10506544 1 0 -ranch_house%1:06:00:: 04052658 1 3 -rancher%1:18:00:: 10506417 1 5 -ranching%1:04:00:: 00920062 1 0 -rancid%5:00:00:malodorous:00 01054922 2 0 -rancid%5:00:00:stale:00 01070321 1 0 -rancidity%1:26:00:: 14561839 1 0 -rancidness%1:07:00:: 04992431 1 0 -rancor%1:12:00:: 07548978 1 1 -rancorous%5:00:00:resentful:00 00116940 1 0 -rancour%1:12:00:: 07548978 1 0 -rand%1:15:00:: 09001881 3 0 -rand%1:18:00:: 11253630 2 0 -rand%1:23:00:: 13696523 1 0 -randall_jarrell%1:18:00:: 11080884 1 0 -random%3:00:00:: 01924316 1 5 -random-access_memory%1:06:00:: 04052757 1 1 -random_access_memory%1:06:00:: 04052757 1 0 -random_memory%1:06:00:: 04052757 1 1 -random_number_generator%1:10:00:: 06584049 1 0 -random_sample%1:09:00:: 05822507 2 0 -random_sample%1:09:01:: 06026885 1 0 -random_sampling%1:04:00:: 00162055 1 0 -random_variable%1:09:00:: 05864177 1 11 -random_walk%1:22:00:: 13545973 1 0 -randomisation%1:04:00:: 01009001 1 0 -randomise%2:30:00:: 00278899 1 0 -randomised%5:00:00:irregular:00 01961666 1 0 -randomization%1:04:00:: 01009001 1 1 -randomize%2:30:00:: 00278899 1 0 -randomized%5:00:00:irregular:00 01961666 1 0 -randomly%4:02:00:: 00070765 1 2 -randomness%1:07:00:: 04771332 2 0 -randomness%1:07:01:: 05012585 1 0 -randy%5:00:00:sexy:00 02131668 1 0 -ranee%1:18:00:: 10506642 1 0 -range%1:06:00:: 04053218 5 1 -range%1:06:01:: 04330340 9 0 -range%1:07:00:: 05125377 1 45 -range%1:09:00:: 05623628 8 0 -range%1:14:00:: 08399586 6 0 -range%1:14:01:: 08000304 7 0 -range%1:15:01:: 08628921 2 14 -range%1:15:02:: 08629199 3 7 -range%1:17:00:: 09403734 4 1 -range%2:31:00:: 00658052 8 0 -range%2:34:00:: 01204439 7 0 -range%2:35:00:: 01474209 5 1 -range%2:35:02:: 01576165 6 0 -range%2:38:00:: 01881180 2 2 -range%2:42:00:: 02690384 4 1 -range%2:42:01:: 02727039 1 34 -range%2:42:03:: 02741149 3 1 -range_animal%1:05:00:: 01315805 1 0 -range_finder%1:06:00:: 04053508 1 0 -range_hood%1:06:00:: 04053677 1 0 -range_in%2:33:12:: 01153007 1 0 -range_of_a_function%1:14:00:: 08000304 1 0 -range_of_mountains%1:17:00:: 09403734 1 0 -range_pole%1:06:00:: 04053767 1 0 -rangefinder%1:06:00:: 04053508 1 0 -rangeland%1:17:00:: 09405078 1 0 -ranger%1:18:00:: 10092098 2 0 -ranger%1:18:01:: 10704712 1 0 -ranger%1:18:02:: 09942275 3 0 -rangifer%1:05:00:: 02433796 1 0 -rangifer_arcticus%1:05:00:: 02434415 1 0 -rangifer_caribou%1:05:00:: 02434190 1 0 -rangifer_tarandus%1:05:00:: 02433925 1 0 -ranging%3:44:00:: 03153018 1 2 -ranging_pole%1:06:00:: 04053767 1 0 -rangoon%1:15:00:: 08715777 1 0 -rangpur%1:20:00:: 12711398 1 0 -rangpur_lime%1:20:00:: 12711398 1 0 -rangy%5:00:00:large:00 01390487 3 0 -rangy%5:00:00:mobile:00 01524344 2 0 -rangy%5:00:00:tall:00 02385492 1 1 -rani%1:18:00:: 10506642 1 0 -ranid%1:05:00:: 01640846 1 0 -ranidae%1:05:00:: 01640383 1 0 -ranier%1:17:00:: 09405169 1 0 -ranitidine%1:06:00:: 04053995 1 0 -rank%1:14:00:: 08431942 1 20 -rank%1:14:01:: 08398179 3 3 -rank%1:14:02:: 08400965 5 1 -rank%1:26:00:: 14429985 2 6 -rank%1:26:01:: 13947415 4 2 -rank%2:31:00:: 00658052 2 1 -rank%2:31:13:: 00660102 1 2 -rank%2:42:00:: 02673844 3 0 -rank%5:00:00:abundant:00 00016135 5 0 -rank%5:00:00:complete:00 00520892 4 0 -rank%5:00:00:conspicuous:00 00580039 3 0 -rank%5:00:00:fertile:00 01002256 1 1 -rank%5:00:00:offensive:01 01627049 2 0 -rank-difference_correlation%1:09:00:: 06034301 1 0 -rank-difference_correlation_coefficient%1:09:00:: 06034301 1 0 -rank-order_correlation%1:09:00:: 06034301 1 0 -rank-order_correlation_coefficient%1:09:00:: 06034301 1 0 -rank-smelling%5:00:00:malodorous:00 01054741 1 0 -rank_and_file%1:14:00:: 08398179 1 2 -rank_and_file%1:14:01:: 08401711 2 0 -rank_order%1:04:00:: 01010245 1 0 -ranked%5:00:00:hierarchical:00 01203986 1 1 -ranker%1:18:00:: 10506762 2 0 -ranker%1:18:01:: 10506915 1 0 -rankin%1:18:00:: 11253802 1 0 -rankine%1:23:00:: 13714905 1 0 -rankine_scale%1:24:00:: 13853198 1 0 -ranking%1:26:00:: 14429484 1 0 -ranking%5:00:00:senior:00 02100566 1 0 -rankle%2:37:00:: 01773825 1 0 -rankness%1:07:00:: 04980656 2 0 -rankness%1:07:01:: 05147586 1 0 -ransack%2:35:02:: 01319193 2 3 -ransack%2:40:00:: 02344568 1 3 -ransacked%5:00:00:empty:00 01087757 1 0 -ransacking%1:04:00:: 00946806 1 0 -ransom%1:04:00:: 00096851 3 0 -ransom%1:04:01:: 01121585 2 1 -ransom%1:21:00:: 13284048 1 1 -ransom%2:40:00:: 02256998 1 0 -ransom_money%1:21:00:: 13284048 1 1 -ransomed%5:00:01:saved:00 01451850 2 0 -ransomed%5:00:02:saved:00 01452024 1 0 -rant%1:10:00:: 07087777 2 0 -rant%1:10:01:: 07242912 1 0 -rant%2:32:00:: 01051956 1 0 -ranter%1:18:00:: 10507070 1 0 -ranting%1:10:00:: 07242912 1 0 -ranula%1:26:00:: 14202673 1 0 -ranunculaceae%1:20:00:: 11719468 1 0 -ranunculales%1:20:00:: 11692952 1 0 -ranunculus%1:20:00:: 11720088 1 0 -ranunculus_acris%1:20:00:: 11720643 1 0 -ranunculus_aquatilis%1:20:00:: 11720891 1 0 -ranunculus_bulbosus%1:20:00:: 11721124 1 0 -ranunculus_ficaria%1:20:00:: 11721337 1 0 -ranunculus_flammula%1:20:00:: 11721642 1 0 -ranunculus_glaberrimus%1:20:00:: 11721844 1 0 -ranunculus_lingua%1:20:00:: 11722036 1 0 -ranunculus_lyalii%1:20:00:: 11722199 1 0 -ranunculus_occidentalis%1:20:00:: 11722342 1 0 -ranunculus_repens%1:20:00:: 11722466 1 0 -ranunculus_sceleratus%1:20:00:: 11722621 1 0 -ranvier's_nodes%1:08:00:: 05464534 1 0 -raoul_dufy%1:18:00:: 10944468 1 0 -raoulia%1:20:00:: 12006081 1 0 -raoulia_australis%1:20:00:: 12006306 1 0 -raoulia_lutescens%1:20:00:: 12006306 1 0 -rap%1:04:00:: 00133338 6 0 -rap%1:10:00:: 06713752 1 1 -rap%1:10:01:: 07141537 4 0 -rap%1:10:02:: 07064055 5 0 -rap%1:11:00:: 07388987 3 0 -rap%1:11:01:: 07410021 2 0 -rap%2:32:00:: 01042432 4 0 -rap%2:35:00:: 01414288 1 5 -rap%2:36:10:: 01715997 3 0 -rap%2:39:00:: 02185373 2 0 -rap_group%1:14:00:: 08479795 1 0 -rap_music%1:10:00:: 07064055 1 0 -rap_session%1:10:00:: 07141644 1 0 -rap_sheet%1:10:00:: 06502858 1 0 -rapacious%5:00:00:acquisitive:00 00031138 2 0 -rapacious%5:00:00:aggressive:00 00084022 1 0 -rapacious%5:00:00:gluttonous:00 00010726 3 0 -rapaciously%4:02:00:: 00439393 1 0 -rapaciousness%1:07:00:: 04886402 1 0 -rapaciousness%1:07:01:: 04834817 2 0 -rapacity%1:04:00:: 00758525 2 0 -rapacity%1:07:00:: 04886402 1 0 -rapateaceae%1:20:00:: 12608778 1 0 -rape%1:04:00:: 00773402 3 0 -rape%1:04:01:: 00966384 2 0 -rape%1:20:00:: 11879722 1 0 -rape%2:35:01:: 01565472 2 0 -rape%2:41:00:: 02567519 1 4 -rape_conviction%1:04:00:: 01194125 1 0 -rape_oil%1:20:00:: 11880032 1 0 -rape_suspect%1:18:00:: 10507380 1 0 -raped%5:00:00:destroyed:00 00735709 1 1 -raper%1:18:00:: 10507230 1 0 -rapeseed%1:20:00:: 11879895 1 0 -rapeseed_oil%1:20:00:: 11880032 1 0 -raphael%1:18:00:: 11254028 1 0 -raphael%1:18:01:: 09539640 2 0 -raphanus%1:20:00:: 11894173 1 0 -raphanus_raphanistrum%1:20:00:: 11894558 1 0 -raphanus_sativus%1:20:00:: 11894770 1 0 -raphanus_sativus_longipinnatus%1:20:00:: 11895092 1 0 -raphe%1:08:00:: 05276425 1 0 -raphia%1:20:00:: 12594746 2 0 -raphia%1:27:00:: 15002546 1 0 -raphicerus%1:05:00:: 02426339 1 0 -raphicerus_campestris%1:05:00:: 02426481 1 0 -raphidae%1:05:00:: 01810946 1 0 -raphidiidae%1:05:00:: 02267019 1 0 -raphus%1:05:00:: 01811104 1 0 -raphus_cucullatus%1:05:00:: 01811243 1 0 -rapid%1:17:00:: 09405396 1 0 -rapid%5:00:00:fast:01 00979697 1 21 -rapid%5:00:02:fast:01 00979862 2 0 -rapid_city%1:15:00:: 09139698 1 0 -rapid_climb%1:11:00:: 07375525 1 0 -rapid_eye_movement%1:26:00:: 14025755 1 0 -rapid_eye_movement_sleep%1:26:00:: 14025755 1 0 -rapid_growth%1:11:00:: 07375525 1 0 -rapid_transit%1:06:00:: 04054213 1 1 -rapidity%1:07:00:: 05059132 1 1 -rapidly%4:02:00:: 00085811 1 40 -rapidness%1:07:00:: 05059132 1 0 -rapier%1:06:00:: 04054361 1 0 -rapine%1:04:00:: 00966384 1 0 -rapist%1:18:00:: 10507230 1 1 -rappahannock%1:17:00:: 09405515 1 0 -rappahannock_river%1:17:00:: 09405515 1 0 -rappee%1:06:00:: 04054471 1 0 -rappel%1:04:00:: 00326809 1 0 -rappel%2:38:00:: 01923058 1 0 -rappeller%1:18:00:: 09757449 1 0 -rapper%1:06:00:: 03626760 2 0 -rapper%1:18:00:: 10507482 1 0 -rapport%1:24:00:: 13811740 1 1 -rapporteur%1:18:00:: 10507565 1 0 -rapprochement%1:04:00:: 01205827 1 0 -rapscallion%1:18:01:: 10200047 2 0 -rapscallion%1:18:02:: 10536728 1 0 -rapt%5:00:00:joyous:00 01367008 1 0 -raptor%1:05:00:: 01604330 1 0 -raptores%1:05:00:: 01604123 1 0 -raptorial%3:01:00:: 02836314 1 0 -raptorial%5:00:00:aggressive:00 00084022 2 0 -raptorial_bird%1:05:00:: 01604330 1 0 -rapture%1:26:00:: 13986372 1 2 -rapture%1:26:02:: 13988101 2 0 -rapturous%5:00:00:joyous:00 01367008 1 0 -rapturously%4:02:00:: 00325139 1 0 -raptus%1:26:00:: 13986372 2 0 -raptus%1:26:01:: 14081941 1 0 -raptus_hemorrhagicus%1:26:00:: 14087096 1 0 -rara_avis%1:18:00:: 10507692 1 0 -rare%5:00:00:extraordinary:00 01678112 5 0 -rare%5:00:00:infrequent:00 01067538 2 2 -rare%5:00:00:raw:00 00619691 6 0 -rare%5:00:00:scarce:00 00017024 3 2 -rare%5:00:00:thin:02 02417725 4 0 -rare%5:00:00:uncommon:00 00488561 1 6 -rare-earth_element%1:27:00:: 14624743 1 0 -rare-roasted%5:00:00:cooked:00 00618169 1 0 -rare_bird%1:18:00:: 10507692 1 0 -rare_earth%1:27:00:: 14624743 1 1 -rarebit%1:13:00:: 07880325 1 0 -raree-show%1:04:00:: 00519669 2 0 -raree-show%1:14:00:: 08408115 1 0 -rarefaction%1:11:00:: 07419408 1 0 -rarefied%5:00:00:noble:01 01588619 2 0 -rarefied%5:00:00:thin:02 02417725 1 0 -rarefy%2:30:00:: 00226379 3 0 -rarefy%2:30:01:: 00552138 2 0 -rarefy%2:30:03:: 00570383 1 0 -rarely%4:02:00:: 00035385 1 16 -rareness%1:07:00:: 05117237 1 0 -rarified%5:00:00:noble:01 01588619 2 0 -rarified%5:00:00:thin:02 02417725 1 1 -rarify%2:30:00:: 00400883 1 0 -raring%5:00:00:eager:00 00811536 1 0 -rariora%1:06:00:: 04054566 1 0 -rarity%1:06:00:: 03149951 3 0 -rarity%1:07:01:: 05089612 2 0 -rarity%1:07:02:: 05117237 1 0 -ras%1:08:00:: 05502375 1 0 -ras_tafari%1:18:00:: 11022309 1 0 -ras_tafari_makonnen%1:18:00:: 11022309 1 0 -rascal%1:18:01:: 10200047 2 0 -rascal%1:18:02:: 10536728 1 1 -rascality%1:04:00:: 00736375 3 0 -rascality%1:07:00:: 04909721 1 0 -rascality%1:07:01:: 04875728 2 0 -rascally%5:00:00:dishonest:00 01224964 2 0 -rascally%5:00:00:playful:00 02122379 1 0 -rase%2:36:00:: 01661804 1 0 -rash%1:14:00:: 08459087 2 0 -rash%1:26:00:: 14321953 1 0 -rash%5:00:00:bold:00 00250739 2 0 -rash%5:00:00:imprudent:00 01900188 1 0 -rasher%1:05:00:: 02644501 1 0 -rashly%4:02:03:: 00354642 1 0 -rashness%1:07:00:: 04661926 2 0 -rashness%1:07:01:: 04894204 1 0 -rasht%1:15:00:: 08912153 1 0 -rashtriya_swayamsevak_sangh%1:14:00:: 08235623 1 0 -rask%1:18:00:: 11254213 1 0 -raskolnikov%1:18:00:: 10507783 1 0 -rasmus_christian_rask%1:18:00:: 11254213 1 0 -rasmussen%1:18:00:: 11254393 1 0 -rasp%1:06:00:: 04054670 2 0 -rasp%1:10:00:: 07130774 1 1 -rasp%2:32:00:: 00981814 2 0 -rasp%2:35:00:: 01386906 1 0 -rasp_fern%1:20:00:: 13185658 1 0 -raspberry%1:10:00:: 07123870 3 0 -raspberry%1:13:00:: 07745466 2 0 -raspberry%1:20:00:: 12655869 1 0 -raspberry-red%5:00:00:chromatic:00 00371841 1 0 -raspberry_bush%1:20:00:: 12655869 1 0 -rasping%1:10:00:: 07130774 1 0 -rasping%5:00:00:cacophonous:00 00299476 1 1 -raspingly%4:02:00:: 00350521 1 0 -rasputin%1:18:00:: 11254683 1 0 -raspy%5:00:00:cacophonous:00 00299476 1 0 -rassling%1:04:00:: 00447540 1 0 -rasta%1:18:00:: 09685922 1 0 -rastafari%1:14:00:: 08292418 1 0 -rastafarian%1:14:00:: 08152353 2 0 -rastafarian%1:18:00:: 09685922 1 0 -rastafarian%3:01:00:: 02925195 1 0 -rastafarianism%1:09:00:: 06225855 1 0 -rastas%1:14:00:: 08292418 1 0 -raster%1:06:00:: 04054795 1 0 -raster_font%1:10:00:: 06827679 1 0 -rasterize%2:30:00:: 00114481 1 0 -rat%1:05:00:: 02331046 1 5 -rat%1:06:00:: 04055030 5 0 -rat%1:18:00:: 10539715 3 0 -rat%1:18:01:: 10554455 2 0 -rat%1:18:02:: 10206173 4 0 -rat%2:32:09:: 00841986 6 0 -rat%2:35:00:: 01480641 5 0 -rat%2:35:01:: 01527135 4 0 -rat%2:41:00:: 02584475 1 0 -rat%2:41:01:: 02412939 3 0 -rat%2:41:02:: 02413140 2 0 -rat's-tail_cactus%1:20:00:: 11843441 1 0 -rat-a-tat%1:11:00:: 07391079 1 0 -rat-a-tat-tat%1:11:00:: 07391079 1 0 -rat-catcher%1:18:00:: 10508008 1 0 -rat-tail_file%1:06:00:: 04056073 1 0 -rat-tat%1:11:00:: 07391079 1 0 -rat_cheese%1:13:00:: 07853125 1 0 -rat_chinchilla%1:05:00:: 02368399 1 0 -rat_kangaroo%1:05:00:: 01880152 1 0 -rat_race%1:04:00:: 01026633 1 0 -rat_snake%1:05:00:: 01732244 1 0 -rat_terrier%1:05:00:: 02094562 1 0 -rat_typhus%1:26:00:: 14141238 1 0 -ratability%1:07:00:: 05210003 2 0 -ratability%1:26:00:: 14530659 1 0 -ratable%5:00:00:taxable:00 02400724 1 1 -ratables%1:21:00:: 13245076 1 0 -ratafee%1:13:01:: 07911061 1 0 -ratafia%1:13:01:: 07911061 1 0 -ratafia%1:13:02:: 07636669 2 0 -ratafia_biscuit%1:13:00:: 07636669 1 0 -ratan%1:06:00:: 04056180 1 0 -rataplan%1:11:00:: 07392373 1 0 -ratatouille%1:13:00:: 07592768 1 0 -ratbite_fever%1:26:00:: 14140533 1 0 -ratbite_fever_bacterium%1:05:00:: 01363887 1 0 -ratch%1:06:00:: 04055180 1 0 -ratchet%1:06:00:: 04055180 1 0 -ratchet%2:38:00:: 02072673 1 0 -ratchet_down%2:38:00:: 02072673 1 0 -ratchet_screwdriver%1:06:00:: 04279987 1 0 -ratchet_wheel%1:06:00:: 04055447 1 0 -rate%1:07:00:: 05058580 3 1 -rate%1:21:00:: 13325010 2 39 -rate%1:24:00:: 13816649 4 0 -rate%1:28:00:: 15286249 1 68 -rate%2:31:00:: 00658052 1 9 -rate%2:31:01:: 00660971 3 1 -rate%2:42:01:: 02646227 2 2 -rate_of_attrition%1:28:00:: 15276307 1 1 -rate_of_depreciation%1:21:00:: 13326450 1 0 -rate_of_exchange%1:21:00:: 13326620 1 0 -rate_of_flow%1:28:00:: 15277730 1 0 -rate_of_growth%1:28:00:: 15278825 1 3 -rate_of_inflation%1:28:00:: 15279299 1 0 -rate_of_interest%1:21:00:: 13319032 1 0 -rate_of_pay%1:21:00:: 13281476 1 2 -rate_of_payment%1:21:00:: 13281770 1 0 -rate_of_respiration%1:28:00:: 15281653 1 0 -rate_of_return%1:28:00:: 15281176 1 0 -rateability%1:26:00:: 14530659 1 0 -rateable%5:00:00:taxable:00 02400724 1 0 -rateables%1:21:00:: 13245076 1 0 -ratel%1:05:00:: 02448318 1 0 -ratepayer%1:18:00:: 10508141 1 0 -rates%1:21:00:: 13314936 1 0 -rather%4:02:00:: 00018781 4 0 -rather%4:02:01:: 00115554 3 6 -rather%4:02:02:: 00098714 1 59 -rather%4:02:04:: 00018302 2 53 -rathole%1:06:00:: 04055595 2 0 -rathole%1:17:00:: 09405683 1 1 -rathskeller%1:06:00:: 04055700 1 0 -ratibida%1:20:00:: 12006503 1 0 -ratibida_columnaris%1:20:00:: 12006930 1 0 -ratibida_columnifera%1:20:00:: 12007196 1 0 -ratibida_tagetes%1:20:00:: 12007406 1 0 -ratification%1:10:01:: 07179943 1 0 -ratified%5:00:00:legal:00 01401413 1 0 -ratifier%1:18:00:: 10670668 1 0 -ratify%2:41:00:: 02464866 1 5 -rating%1:04:00:: 00874806 2 3 -rating%1:09:00:: 05736149 1 7 -rating%1:26:00:: 14429382 3 1 -rating%1:26:02:: 14431471 4 0 -rating_system%1:09:00:: 05733221 1 0 -ratio%1:24:00:: 13815449 2 0 -ratio%1:24:01:: 13819207 1 21 -ratiocinate%2:31:00:: 00633265 1 0 -ratiocination%1:09:00:: 05783658 2 0 -ratiocination%1:10:00:: 06753030 1 0 -ratiocinative%5:00:00:logical:00 01430716 1 0 -ratiocinator%1:18:00:: 10510339 1 0 -ration%1:13:01:: 07565725 1 7 -ration%1:21:00:: 13286099 2 1 -ration%2:40:00:: 02234803 2 0 -ration%2:40:01:: 02234988 1 0 -ration_card%1:10:00:: 06478331 1 0 -ration_out%2:40:00:: 02234803 1 0 -rational%1:23:00:: 13730469 1 0 -rational%3:00:00:: 01925372 1 4 -rational%3:01:00:: 02929901 3 0 -rational%5:00:00:intellectual:00 01333118 4 0 -rational%5:00:00:mental:00 01780343 2 1 -rational_motive%1:16:00:: 09178821 1 0 -rational_number%1:23:00:: 13730469 1 0 -rationale%1:09:00:: 05793210 1 3 -rationalisation%1:04:00:: 01009190 5 0 -rationalisation%1:04:01:: 01212225 3 0 -rationalisation%1:04:02:: 01137760 4 0 -rationalisation%1:09:00:: 05794403 2 0 -rationalisation%1:22:00:: 13546169 1 0 -rationalise%2:30:00:: 00473322 5 0 -rationalise%2:30:01:: 00568879 4 0 -rationalise%2:31:00:: 00629257 3 0 -rationalise%2:32:00:: 00894738 2 0 -rationalise%2:40:00:: 02269485 1 0 -rationalise_away%2:31:00:: 00629492 1 0 -rationalism%1:09:01:: 05966958 3 0 -rationalism%1:09:02:: 05975473 1 2 -rationalism%1:09:03:: 06191018 2 0 -rationalist%1:18:00:: 10456138 1 0 -rationalist%3:01:00:: 02909517 1 0 -rationalistic%3:01:00:: 02787073 1 0 -rationality%1:07:00:: 04784978 2 0 -rationality%1:26:00:: 14379829 1 0 -rationalization%1:04:00:: 01009190 5 0 -rationalization%1:04:01:: 01212225 3 0 -rationalization%1:04:02:: 01137760 4 0 -rationalization%1:09:00:: 05794403 1 1 -rationalization%1:22:00:: 13546169 2 0 -rationalize%2:30:00:: 00473322 2 2 -rationalize%2:30:01:: 00568879 5 0 -rationalize%2:31:00:: 00629257 4 0 -rationalize%2:32:00:: 00894738 1 3 -rationalize%2:40:00:: 02269485 3 0 -rationalize_away%2:31:00:: 00629492 1 0 -rationally%4:02:00:: 00184530 1 2 -rationalness%1:07:00:: 04784978 1 0 -rationed%5:00:00:distributed:00 00541935 1 1 -rationing%1:04:00:: 01084932 1 2 -ratitae%1:05:00:: 01518170 1 0 -ratite%1:05:00:: 01517565 1 0 -ratite_bird%1:05:00:: 01517565 1 0 -ratlike%3:01:00:: 03144265 1 0 -ratlin%1:06:00:: 04055861 1 0 -ratline%1:06:00:: 04055861 1 0 -ratsbane%1:27:00:: 14768201 1 0 -rattail%1:05:00:: 02525703 1 0 -rattail_cactus%1:20:00:: 11843441 1 0 -rattail_fish%1:05:00:: 02525703 1 0 -rattan%1:06:00:: 04056180 3 0 -rattan%1:20:01:: 12586499 1 0 -rattan%1:20:02:: 12136392 2 0 -rattan_cane%1:20:00:: 12136392 1 0 -rattan_palm%1:20:00:: 12586499 1 0 -ratter%1:05:00:: 02094562 2 0 -ratter%1:18:00:: 10007109 1 0 -rattigan%1:18:00:: 11254950 1 0 -ratting%1:10:00:: 07214994 1 0 -rattle%1:05:00:: 01754737 3 0 -rattle%1:06:00:: 04056289 2 0 -rattle%1:11:00:: 07391240 1 3 -rattle%2:38:00:: 01890626 2 3 -rattle%2:39:00:: 02175057 1 4 -rattle-top%1:20:00:: 11728945 1 0 -rattle_down%2:32:00:: 00945648 1 0 -rattle_off%2:32:00:: 00945648 1 0 -rattle_on%2:32:00:: 01037498 1 0 -rattle_weed%1:20:00:: 12509993 1 0 -rattlebox%1:20:00:: 12519563 1 0 -rattlebrained%5:00:00:foolish:00 02572420 1 0 -rattled%5:00:00:discomposed:00 00532560 1 0 -rattlepated%5:00:00:foolish:00 02572420 1 0 -rattler%1:05:00:: 01754876 1 2 -rattler%1:06:00:: 03394480 2 0 -rattlesnake%1:05:00:: 01754876 1 6 -rattlesnake's_master%1:20:00:: 12938667 1 0 -rattlesnake_fern%1:20:00:: 12961536 1 0 -rattlesnake_master%1:20:00:: 12938667 1 0 -rattlesnake_orchid%1:20:00:: 12077244 1 0 -rattlesnake_plantain%1:20:00:: 12063639 1 0 -rattlesnake_root%1:20:01:: 12004987 1 0 -rattlesnake_root%1:20:02:: 11997032 2 0 -rattlesnake_weed%1:20:00:: 11982545 1 0 -rattling%1:11:00:: 07391240 1 2 -rattling%4:02:00:: 00031899 1 0 -rattling%5:00:00:energetic:00 00874226 2 0 -rattling%5:00:00:extraordinary:00 01676517 1 0 -rattrap%1:06:00:: 04056413 3 0 -rattrap%1:06:01:: 04056491 2 0 -rattrap%1:26:00:: 14409285 1 0 -rattus%1:05:00:: 02333368 1 0 -rattus_norvegicus%1:05:00:: 02333546 1 0 -rattus_rattus%1:05:00:: 02333909 1 0 -ratty%3:01:00:: 02787210 1 0 -ratty%5:00:00:dirty:01 00422772 3 0 -ratty%5:00:00:worn:00 02583043 2 0 -rau-sed%1:06:00:: 04078236 1 0 -raucous%5:00:00:cacophonous:00 00300359 1 2 -raucous%5:00:00:disorderly:00 01667110 2 1 -raucously%4:02:00:: 00199333 1 1 -raucously%4:02:01:: 00445487 2 0 -raudixin%1:06:00:: 04078236 1 0 -rauli_beech%1:20:00:: 12267265 1 0 -raunch%1:07:00:: 04817280 1 0 -raunchy%5:00:00:dirty:01 00420650 3 0 -raunchy%5:00:00:dirty:02 00425740 2 0 -raunchy%5:00:00:sexy:00 02134701 1 0 -rauvolfia%1:20:00:: 11775340 1 0 -rauwolfia%1:20:00:: 11775340 2 0 -rauwolfia%1:27:00:: 15002814 1 0 -rauwolfia_serpentina%1:20:00:: 11775626 1 0 -ravage%1:11:00:: 07334876 1 1 -ravage%2:30:00:: 00389083 1 0 -ravage%2:30:01:: 00388635 2 0 -ravaged%5:00:02:destroyed:00 00735709 1 0 -ravaging%1:04:00:: 00967157 1 0 -ravaging%5:00:00:destructive:00 00588425 1 0 -rave%1:10:00:: 06693744 2 0 -rave%1:11:00:: 07449676 1 0 -rave%2:32:00:: 00882220 3 0 -rave%2:32:01:: 01051956 2 0 -rave%2:41:00:: 02492054 1 0 -rave-up%1:14:00:: 08479894 1 0 -ravehook%1:06:00:: 04056599 1 0 -ravel%1:11:00:: 07443010 2 0 -ravel%1:18:00:: 11255085 1 0 -ravel%2:35:00:: 01521124 2 0 -ravel%2:35:01:: 01521367 1 0 -ravel_out%2:35:00:: 01521367 1 0 -raveling%1:27:00:: 15002959 1 0 -ravelling%1:27:00:: 15002959 1 0 -raven%1:05:00:: 01579260 1 0 -raven%2:34:00:: 01196653 3 0 -raven%2:34:01:: 01177857 4 0 -raven%2:34:02:: 01203500 2 0 -raven%2:35:00:: 01213908 1 0 -ravenala%1:20:00:: 12355023 1 0 -ravenala_madagascariensis%1:20:00:: 12355023 1 0 -ravening%5:00:00:acquisitive:00 00031138 2 0 -ravening%5:00:00:aggressive:00 00084022 1 0 -ravening%5:00:00:gluttonous:00 00010726 3 0 -ravenna%1:04:00:: 01292553 1 0 -ravenna_grass%1:20:00:: 12121187 1 0 -ravenous%5:00:00:gluttonous:00 00010726 2 0 -ravenous%5:00:00:hungry:00 01269506 1 0 -ravenously%4:02:00:: 00360054 1 0 -ravenousness%1:26:00:: 14040071 1 0 -raver%1:18:00:: 10507070 2 0 -raver%1:18:01:: 10508272 1 0 -ravi_shankar%1:18:00:: 11295464 1 0 -ravigote%1:13:00:: 07832592 1 0 -ravigotte%1:13:00:: 07832592 1 0 -ravine%1:17:00:: 09405787 1 0 -raving%1:10:00:: 07243193 1 0 -raving%4:02:00:: 00439472 1 0 -raving_mad%5:00:00:insane:00 02077625 1 1 -ravingly%4:02:00:: 00439472 1 0 -ravioli%1:13:00:: 07701244 1 0 -ravish%2:37:00:: 01817314 2 0 -ravish%2:41:00:: 02567519 1 0 -ravisher%1:18:00:: 10754281 1 0 -ravisher%1:18:01:: 10613996 2 0 -ravishing%5:00:00:beautiful:00 00220502 1 0 -ravishingly%4:02:00:: 00439550 1 0 -ravishment%1:04:00:: 00773402 2 0 -ravishment%1:12:00:: 07491286 1 0 -raw%1:26:00:: 14456586 1 0 -raw%3:00:00:: 00619433 3 1 -raw%5:00:00:cold:01 01252399 10 0 -raw%5:00:00:inexperienced:00 00937186 12 0 -raw%5:00:00:injured:00 01319061 2 2 -raw%5:00:00:overt:00 01705195 5 1 -raw%5:00:00:painful:00 01712753 9 0 -raw%5:00:00:unanalyzed:00 00417204 7 1 -raw%5:00:00:unclothed:00 00458266 13 0 -raw%5:00:00:unfair:00 00958020 6 1 -raw%5:00:00:unfinished:02 01005914 11 0 -raw%5:00:00:unpolished:00 01813081 8 0 -raw%5:00:00:unprocessed:00 01952643 1 7 -raw%5:00:00:untreated:00 01954943 4 1 -raw_beauty%1:07:00:: 04684255 1 0 -raw_data%1:14:00:: 08462858 1 0 -raw_deal%1:11:00:: 07293475 1 1 -raw_material%1:27:00:: 14596700 1 2 -raw_meat%1:13:00:: 07651159 1 0 -raw_milk%1:13:00:: 07845702 1 0 -raw_recruit%1:18:00:: 10508379 1 0 -raw_sienna%1:07:00:: 04973957 1 1 -raw_sienna%1:27:00:: 14843877 2 0 -raw_talent%1:09:00:: 05624615 1 0 -raw_throat%1:26:00:: 14173484 1 0 -raw_umber%1:27:00:: 15083533 1 1 -raw_vegetable%1:13:00:: 07708398 1 0 -raw_weather%1:26:00:: 14523344 1 0 -raw_wood%1:27:00:: 15100479 1 0 -raw_wool%1:27:00:: 15104488 1 0 -raw_wound%1:26:00:: 14286339 1 0 -rawalpindi%1:15:00:: 08977665 1 0 -rawboned%5:00:00:thin:03 00989721 1 0 -rawhide%1:27:00:: 14759588 1 1 -rawness%1:09:00:: 05988956 4 0 -rawness%1:26:00:: 14462193 2 0 -rawness%1:26:01:: 14332617 3 0 -rawness%1:26:02:: 14536207 1 0 -ray%1:05:00:: 01495701 7 0 -ray%1:05:01:: 01900719 6 0 -ray%1:10:00:: 06868445 5 0 -ray%1:19:00:: 11428023 1 11 -ray%1:19:01:: 11428379 4 0 -ray%1:20:00:: 13131516 2 1 -ray%1:25:00:: 13913427 3 0 -ray%2:30:01:: 00291444 3 0 -ray%2:42:00:: 02686952 2 0 -ray%2:43:00:: 02768431 1 0 -ray_bradbury%1:18:00:: 10860444 1 0 -ray_cattell%1:18:00:: 10891569 1 0 -ray_douglas_bradbury%1:18:00:: 10860444 1 0 -ray_floret%1:20:00:: 11674603 1 0 -ray_flower%1:20:00:: 11674603 1 0 -ray_m._dolby%1:18:00:: 10938019 1 0 -ray_of_light%1:19:00:: 11428023 1 0 -ray_robinson%1:18:00:: 11266279 1 0 -rayleigh%1:18:00:: 11255211 1 0 -rayleigh_disk%1:06:00:: 04056718 1 0 -rayless%3:01:00:: 03109032 1 0 -rayless_chamomile%1:20:00:: 11995396 1 0 -raymond_b._cattell%1:18:00:: 10891569 1 0 -raymond_bernard_cattell%1:18:00:: 10891569 1 0 -raymond_chandler%1:18:00:: 10890437 1 0 -raymond_lully%1:18:00:: 11145085 1 0 -raymond_thornton_chandler%1:18:00:: 10890437 1 0 -raynaud's_sign%1:26:00:: 14303448 1 0 -rayon%1:06:00:: 04056932 1 0 -rayon_stocking%1:06:00:: 03836976 1 0 -rayons%1:06:00:: 03836976 1 0 -razbliuto%1:12:00:: 07482368 1 0 -raze%2:36:00:: 01661804 1 0 -razed%5:00:00:destroyed:00 00735608 1 0 -razing%1:04:00:: 00218045 2 0 -razing%1:11:00:: 07335097 1 0 -razmataz%1:04:00:: 00563330 1 0 -razor%1:06:00:: 04057047 1 5 -razor%2:29:00:: 00037680 1 0 -razor-backed%5:00:00:backed:00 00200603 1 0 -razor-billed_auk%1:05:00:: 02045864 1 0 -razor-fish%1:05:00:: 02609617 1 0 -razor-sharp%5:00:00:distinct:00 00781061 1 1 -razor-sharp%5:00:00:sharp:00 00802767 2 0 -razor_clam%1:05:00:: 01959029 1 0 -razor_edge%1:06:00:: 04057323 1 0 -razor_fish%1:05:00:: 02609617 1 0 -razorback%1:05:01:: 02396157 1 0 -razorback%1:05:02:: 02064338 2 0 -razorback%5:00:00:backed:00 00200603 1 0 -razorback_hog%1:05:00:: 02396157 1 0 -razorbacked_hog%1:05:00:: 02396157 1 0 -razorbill%1:05:00:: 02045864 1 0 -razorblade%1:06:00:: 04057215 1 0 -razz%1:10:00:: 07123870 1 0 -razz%2:32:00:: 00850501 1 0 -razzing%1:10:00:: 07123870 1 0 -razzle%1:04:00:: 00563330 1 0 -razzle-dazzle%1:04:00:: 00563330 1 0 -razzmatazz%1:04:00:: 00563330 1 0 -rb%1:27:00:: 14652954 1 0 -rbc%1:08:00:: 05454070 1 0 -rbi%1:04:00:: 00190180 1 1 -rcmp%1:14:00:: 08210670 1 0 -re%1:10:00:: 06868445 3 0 -re%1:18:00:: 09513216 2 0 -re%1:27:00:: 14652390 1 0 -re-address%2:32:00:: 00991264 1 0 -re-afforest%2:35:00:: 01568145 1 0 -re-afforestation%1:04:00:: 00400449 1 0 -re-argue%2:32:00:: 00772488 1 1 -re-arm%2:33:00:: 01087559 1 0 -re-assume%2:30:00:: 00525027 1 1 -re-create%2:31:00:: 00736799 3 0 -re-create%2:36:00:: 01619354 1 1 -re-create%2:36:01:: 01693881 2 0 -re-created%3:44:00:: 03153155 1 1 -re-creation%1:04:00:: 00908772 1 1 -re-echo%1:07:00:: 05011089 1 0 -re-emerge%2:30:00:: 00426301 1 2 -re-emphasise%2:32:00:: 00840809 1 1 -re-emphasize%2:32:00:: 00840809 1 0 -re-enter%2:38:00:: 01852892 1 2 -re-entrant%3:00:00:: 02592015 1 0 -re-equip%2:40:00:: 02341491 1 0 -re-establishment%1:04:00:: 00237705 1 0 -re-examine%2:32:00:: 00788971 1 0 -re-experiencing%1:09:00:: 05810768 1 0 -re-explain%2:32:00:: 00938899 1 0 -re-explore%2:31:00:: 00649245 1 1 -re-formation%1:04:00:: 00269963 1 0 -re-formed%5:00:00:organized:02 01670856 1 1 -re-incorporate%2:30:00:: 00467346 1 1 -re-introduce%2:32:00:: 00901464 1 0 -re-introduction%1:10:00:: 07163110 1 1 -re-sentencing%1:04:00:: 01165919 1 0 -re-start%2:30:00:: 00350104 2 0 -re-start%2:38:00:: 01858686 1 0 -re-uptake%1:22:00:: 13551396 1 0 -rea_silvia%1:18:00:: 09556121 1 0 -reabsorb%2:35:00:: 01539913 1 0 -reabsorption%1:22:00:: 13550504 1 0 -reach%1:04:00:: 00341243 3 2 -reach%1:07:00:: 05125377 2 2 -reach%1:09:00:: 05623628 4 1 -reach%1:15:00:: 08628921 1 2 -reach%2:32:00:: 00743344 4 22 -reach%2:33:00:: 01146051 9 0 -reach%2:35:00:: 01440139 3 29 -reach%2:38:00:: 02006834 2 39 -reach%2:38:01:: 02020590 1 103 -reach%2:38:06:: 02022162 7 9 -reach%2:40:00:: 02230772 8 1 -reach%2:41:00:: 02526085 5 18 -reach%2:42:00:: 02685665 6 13 -reach_into%2:42:00:: 02690299 1 3 -reach_one's_nostrils%2:39:00:: 02124632 1 0 -reach_out%2:32:00:: 00744572 3 0 -reach_out%2:35:00:: 01440139 1 4 -reach_out%2:42:00:: 02690093 2 3 -reachable%5:00:00:accessible:00 00019349 1 0 -reaching%1:04:00:: 00048225 2 0 -reaching%1:04:01:: 00341243 1 0 -reacquaint%2:32:00:: 00874867 1 1 -reacquired_stock%1:21:00:: 13419951 1 0 -react%2:30:00:: 00446885 3 2 -react%2:31:00:: 00717358 1 22 -react%2:41:00:: 02378623 2 2 -reactance%1:19:00:: 11504313 1 0 -reactant%1:27:00:: 14694765 1 3 -reaction%1:04:00:: 00859001 3 7 -reaction%1:04:01:: 00202816 7 0 -reaction%1:09:00:: 05917328 2 10 -reaction%1:09:01:: 06216634 6 0 -reaction%1:19:00:: 11498461 4 0 -reaction%1:19:01:: 11417129 5 0 -reaction%1:22:00:: 13447361 1 38 -reaction-propulsion_engine%1:06:00:: 04057435 1 0 -reaction_engine%1:06:00:: 04057435 1 0 -reaction_formation%1:22:00:: 13546416 1 0 -reaction_propulsion%1:19:00:: 11498850 1 0 -reaction_time%1:28:00:: 15273241 1 0 -reaction_turbine%1:06:00:: 04057673 1 0 -reactionary%1:18:00:: 10508475 1 5 -reactionary%5:00:00:right:03 02030562 1 3 -reactionism%1:09:00:: 06220199 1 0 -reactionist%5:00:00:right:03 02030562 1 0 -reactivate%2:30:00:: 00191940 1 3 -reactive%3:00:00:: 01928608 1 0 -reactive%5:00:00:sensitive:01 02105176 2 0 -reactive_depression%1:26:00:: 14390249 1 0 -reactive_schizophrenia%1:26:00:: 14400325 1 0 -reactivity%1:09:00:: 05653575 1 9 -reactivity%1:26:00:: 14534457 2 1 -reactor%1:06:00:: 03834040 2 0 -reactor%1:06:01:: 04057846 1 0 -read%1:10:00:: 06590065 1 0 -read%2:31:00:: 00625119 1 115 -read%2:31:01:: 00626428 3 15 -read%2:31:02:: 00627091 5 5 -read%2:31:04:: 00593852 11 0 -read%2:31:05:: 00599992 7 4 -read%2:31:06:: 00627520 4 5 -read%2:31:08:: 00620239 10 0 -read%2:31:09:: 00624476 6 5 -read%2:32:02:: 00922867 8 3 -read%2:36:05:: 01718755 9 0 -read%2:42:00:: 02730813 2 17 -read-only_file%1:10:00:: 06510836 1 0 -read-only_memory%1:06:00:: 04058239 1 0 -read-only_memory_chip%1:06:00:: 04058486 1 0 -read-only_storage%1:06:00:: 04058239 1 0 -read-out%1:06:00:: 04058594 3 0 -read-out%1:10:00:: 06819698 2 0 -read-out%1:10:01:: 07265170 1 0 -read/write_head%1:06:00:: 04058721 1 0 -read/write_memory%1:06:00:: 04052757 1 0 -read_between_the_lines%2:31:00:: 00621504 1 0 -read_method%1:22:00:: 13546768 1 0 -read_method_of_childbirth%1:22:00:: 13546768 1 0 -readability%1:07:00:: 04819953 1 0 -readability%1:07:01:: 04819285 2 0 -readable%5:00:00:legible:00 01405047 1 1 -readably%4:02:00:: 00362276 1 0 -readapt%2:30:00:: 00151574 1 1 -readapt%2:30:03:: 00151114 2 0 -reader%1:10:00:: 06415061 8 0 -reader%1:18:00:: 10508710 1 19 -reader%1:18:01:: 10252222 7 0 -reader%1:18:02:: 10670483 2 9 -reader%1:18:03:: 10508862 3 2 -reader%1:18:04:: 10482768 5 0 -reader%1:18:05:: 10526927 4 0 -reader%1:18:06:: 10252354 6 0 -readership%1:14:00:: 08222571 1 0 -readily%4:02:00:: 00161193 1 19 -readily%4:02:01:: 00105341 2 0 -readiness%1:07:01:: 04644719 2 2 -readiness%1:07:02:: 04708796 4 0 -readiness%1:09:00:: 05674584 3 1 -readiness%1:26:00:: 14031108 1 3 -reading%1:04:02:: 01004582 8 0 -reading%1:09:00:: 05808794 1 22 -reading%1:09:01:: 05928513 5 1 -reading%1:09:02:: 05816790 3 3 -reading%1:10:00:: 06598030 4 2 -reading%1:10:01:: 07173766 2 4 -reading%1:10:02:: 07234881 7 0 -reading%1:15:00:: 08880223 6 0 -reading_assignment%1:04:00:: 00730134 1 0 -reading_clinic%1:10:00:: 07146534 1 0 -reading_desk%1:06:00:: 03653583 1 0 -reading_lamp%1:06:00:: 04057981 1 0 -reading_material%1:10:00:: 06598030 1 0 -reading_program%1:10:00:: 06677089 1 0 -reading_room%1:06:00:: 04058096 1 1 -reading_teacher%1:18:00:: 10509063 1 0 -readjust%2:30:00:: 00151114 1 2 -readjust%2:30:01:: 00297669 2 0 -readjustment%1:04:00:: 00194127 1 1 -readjustment%1:04:01:: 00999787 2 0 -readmission%1:04:00:: 01248418 1 0 -readmit%2:41:00:: 02503212 1 0 -readmit%2:41:01:: 02390786 2 0 -readout%1:06:00:: 04058594 3 0 -readout%1:10:00:: 06819698 2 0 -readout%1:10:01:: 07265170 1 0 -ready%1:26:00:: 14031523 1 2 -ready%2:30:00:: 00406243 2 1 -ready%2:36:00:: 01664172 1 1 -ready%3:00:00:: 01930512 1 58 -ready%5:00:00:intelligent:00 01335903 5 0 -ready%5:00:00:prepared:00 01844742 4 1 -ready%5:00:00:willing:00 02565701 3 2 -ready%5:00:01:available:00 00185759 2 4 -ready-cooked%5:00:00:cooked:00 00618274 1 0 -ready-made%1:06:00:: 04058921 1 0 -ready-made%3:00:00:: 00672621 1 1 -ready-made%5:00:00:factory-made:00 00675587 3 0 -ready-made%5:00:00:unoriginal:00 01689442 2 0 -ready-mix%1:13:00:: 07593774 1 0 -ready-to-eat%5:00:00:ready-made:00 00673330 1 0 -ready-to-wear%1:06:00:: 04059157 1 0 -ready-to-wear%5:00:00:ready-made:00 00672932 1 0 -ready_and_waiting%5:00:00:ready:00 01931926 1 0 -ready_cash%1:21:00:: 13422684 1 0 -ready_money%1:21:00:: 13422684 1 0 -ready_reckoner%1:10:00:: 06423496 1 0 -ready_to_hand%5:00:00:accessible:00 00019731 1 0 -readying%1:04:00:: 01143040 1 0 -reaffiliation%1:04:00:: 01082274 1 0 -reaffirm%2:32:00:: 01011923 1 6 -reaffirmation%1:10:00:: 06732581 1 0 -reagan%1:18:00:: 11255460 1 0 -reagan_administration%1:14:00:: 08165979 1 0 -reagent%1:27:00:: 14778982 1 3 -reagin%1:27:00:: 15031418 1 0 -real%1:21:00:: 13389577 3 0 -real%1:23:00:: 13729902 1 0 -real%1:23:01:: 13667908 2 0 -real%3:00:00:: 01932973 1 54 -real%3:00:01:: 01939596 6 0 -real%3:00:02:: 01937994 2 14 -real%3:00:03:: 00625393 7 0 -real%4:02:01:: 00031899 1 8 -real%5:00:00:concrete:00 00013662 4 3 -real%5:00:00:serious:00 02119716 3 4 -real%5:00:00:tangible:02 02392406 8 0 -real%5:00:00:true:00 02460964 5 1 -real%5:00:02:realistic:00 01941604 9 0 -real-estate_business%1:04:00:: 01101227 1 0 -real-time%3:01:00:: 02787452 1 0 -real-time_operation%1:22:00:: 13547048 1 0 -real-time_processing%1:22:00:: 13547048 1 0 -real_estate%1:21:00:: 13246475 1 5 -real_estate_agent%1:18:00:: 10509810 1 0 -real_estate_broker%1:18:00:: 10509810 1 1 -real_estate_investment_trust%1:14:00:: 08072287 1 0 -real_estate_loan%1:21:00:: 13400334 1 0 -real_gnp%1:21:00:: 13257354 1 0 -real_gross_national_product%1:21:00:: 13257354 1 0 -real_ira%1:14:00:: 08040762 1 0 -real_irish_republican_army%1:14:00:: 08040762 1 0 -real_life%1:09:00:: 05810250 1 5 -real_matrix%1:14:00:: 08270067 1 0 -real_mccoy%1:07:00:: 04783445 1 0 -real_number%1:23:00:: 13729902 1 0 -real_presence%1:10:00:: 06791195 1 0 -real_property%1:21:00:: 13246475 1 2 -real_storage%1:06:00:: 04059298 1 0 -real_stuff%1:07:00:: 04783445 1 0 -real_tennis%1:04:00:: 00483705 1 0 -real_thing%1:07:00:: 04783445 1 2 -real_time%1:28:00:: 15298695 2 0 -real_time%1:28:01:: 15298852 1 0 -real_world%1:09:00:: 05810250 1 0 -realgar%1:27:00:: 14694910 1 0 -realign%2:30:00:: 00465145 1 1 -realine%2:30:00:: 00465145 1 0 -realisation%1:04:00:: 00931847 5 0 -realisation%1:04:01:: 01119620 3 0 -realisation%1:04:02:: 00061917 6 0 -realisation%1:04:03:: 00940043 4 0 -realisation%1:09:00:: 05807540 2 0 -realisation%1:10:00:: 07039056 1 0 -realise%2:31:00:: 00591115 6 0 -realise%2:31:01:: 00728617 5 0 -realise%2:36:00:: 01644746 4 0 -realise%2:36:07:: 01707495 3 0 -realise%2:40:00:: 02244603 2 0 -realise%2:40:01:: 02289295 1 0 -realised%5:00:00:complete:00 00521329 1 0 -realism%1:07:00:: 05151869 1 3 -realism%1:09:00:: 05975659 3 1 -realism%1:09:01:: 05974564 5 0 -realism%1:14:00:: 08469457 4 0 -realism%1:26:00:: 13955461 2 2 -realist%1:18:00:: 10509161 1 1 -realist%1:18:01:: 10509389 3 0 -realist%1:18:02:: 10509605 2 0 -realistic%3:00:00:: 01939984 1 10 -realistic%3:01:00:: 02787290 3 0 -realistic%5:00:00:representational:00 01979985 2 1 -realistically%4:02:00:: 00125481 2 0 -realistically%4:02:01:: 00215517 1 5 -reality%1:07:00:: 04762355 4 0 -reality%1:09:00:: 05809878 1 21 -reality%1:26:01:: 13955461 2 14 -reality%1:26:02:: 13956097 3 4 -reality_check%1:11:00:: 07418963 1 0 -reality_principle%1:09:00:: 05872098 1 0 -realizable%5:00:00:possible:00 01821690 2 0 -realizable%5:00:00:tangible:02 02392537 1 0 -realization%1:04:00:: 00931847 2 3 -realization%1:04:01:: 01119620 4 0 -realization%1:04:02:: 00061917 6 0 -realization%1:04:03:: 00940043 5 0 -realization%1:09:00:: 05807540 1 3 -realization%1:10:00:: 07039056 3 0 -realize%2:31:00:: 00591115 2 37 -realize%2:31:01:: 00728617 1 48 -realize%2:36:00:: 01644746 3 8 -realize%2:36:07:: 01707495 6 0 -realize%2:40:00:: 02244603 5 0 -realize%2:40:01:: 02289295 4 2 -realized%5:00:00:complete:00 00521329 1 0 -reallocate%2:40:00:: 02234551 1 0 -reallocation%1:04:00:: 01084180 2 0 -reallocation%1:21:00:: 13289630 1 0 -reallot%2:40:00:: 02228901 1 0 -reallotment%1:04:00:: 01084180 1 0 -really%4:02:00:: 00031899 4 0 -really%4:02:02:: 00038013 3 0 -really%4:02:03:: 00037226 1 61 -really%4:02:04:: 00149510 2 42 -realm%1:09:00:: 05997814 3 0 -realm%1:15:00:: 08558155 2 0 -realm%1:26:01:: 14514805 1 6 -realness%1:26:00:: 13955461 1 0 -realpolitik%1:09:00:: 06149038 1 0 -realtor%1:18:00:: 10510078 1 0 -realty%1:21:00:: 13246475 1 0 -ream%1:23:00:: 13583137 2 0 -ream%1:23:01:: 13777098 1 0 -ream%2:30:00:: 00541417 3 0 -ream%2:30:01:: 00541551 2 0 -ream%2:35:00:: 01352010 1 0 -reamer%1:06:00:: 04059399 2 0 -reamer%1:06:01:: 04059516 1 0 -reanimate%2:29:00:: 00024279 1 0 -reanimated%5:00:00:animated:00 00119279 1 0 -reap%2:35:00:: 01320009 1 3 -reap%2:40:00:: 02293148 2 1 -reap_hook%1:06:00:: 04213353 1 0 -reaper%1:06:00:: 03496892 3 0 -reaper%1:18:00:: 10161363 1 0 -reaper%1:18:01:: 09488584 2 0 -reaper_binder%1:06:00:: 02840361 1 0 -reaping_hook%1:06:00:: 04213353 1 0 -reappear%2:30:00:: 00426301 1 8 -reappearance%1:04:00:: 00050887 2 0 -reappearance%1:11:00:: 07321967 1 1 -reapportion%2:40:00:: 02234551 1 0 -reapportionment%1:04:00:: 01084180 1 0 -reappraisal%1:09:00:: 05747582 1 0 -reappraise%2:31:00:: 00682592 1 0 -rear%1:06:00:: 04059701 5 0 -rear%1:08:00:: 05559256 4 0 -rear%1:14:00:: 08482700 1 16 -rear%1:15:00:: 08629508 2 6 -rear%1:15:01:: 08625846 3 4 -rear%2:36:00:: 01661243 5 0 -rear%2:38:00:: 01981623 1 7 -rear%2:38:01:: 01982866 4 0 -rear%2:41:00:: 02539788 2 2 -rear%2:42:00:: 02696801 3 1 -rear%5:00:00:back:00 00197891 1 3 -rear-end%2:35:00:: 01237088 1 0 -rear_admiral%1:18:00:: 10510245 1 0 -rear_back%2:38:00:: 01981791 1 1 -rear_back%2:38:01:: 01981933 2 0 -rear_end%1:08:00:: 05559256 1 1 -rear_lamp%1:06:00:: 04384910 1 0 -rear_light%1:06:00:: 04384910 1 0 -rear_of_barrel%1:06:00:: 02895881 1 0 -rear_of_tube%1:06:00:: 02895881 1 0 -rear_window%1:06:00:: 04060065 1 3 -rearguard%1:14:00:: 08216647 1 1 -rearing%1:04:00:: 01129532 2 1 -rearing%1:07:00:: 04922113 1 1 -rearing%5:00:00:erect:00 01236964 1 0 -rearm%2:33:00:: 01087559 2 0 -rearm%2:40:00:: 02335078 1 0 -rearmament%1:04:00:: 01157384 1 0 -rearmost%5:00:00:back:00 00197773 1 0 -rearrange%2:30:00:: 00278280 1 4 -rearrangement%1:04:00:: 00338821 1 0 -rearview_mirror%1:06:00:: 04059947 1 0 -rearward%1:15:00:: 08629746 1 1 -rearward%4:02:00:: 00074407 1 4 -rearward%5:00:00:back:00 00197891 1 1 -rearward%5:00:00:backward:01 00202250 2 0 -rearwards%4:02:00:: 00074407 1 0 -reason%1:09:00:: 05651680 3 3 -reason%1:09:01:: 05819149 6 0 -reason%1:10:00:: 06740402 5 1 -reason%1:10:01:: 06739990 2 29 -reason%1:16:00:: 09178999 1 76 -reason%1:26:00:: 14379829 4 1 -reason%2:31:00:: 00632627 3 1 -reason%2:31:01:: 00634472 1 3 -reason%2:32:00:: 00772189 2 2 -reason_out%2:31:00:: 00634472 1 0 -reasonable%3:00:00:: 01943406 1 16 -reasonable%5:00:00:moderate:00 01532261 2 14 -reasonable%5:00:00:rational:00 01926229 3 0 -reasonable_care%1:04:00:: 01131794 1 0 -reasonableness%1:07:00:: 05160574 2 0 -reasonableness%1:07:01:: 05118062 4 0 -reasonableness%1:07:02:: 05146904 3 0 -reasonableness%1:07:03:: 04783888 5 0 -reasonableness%1:26:00:: 14379829 1 0 -reasonably%4:02:00:: 00035718 1 11 -reasonably%4:02:01:: 00215811 2 1 -reasoned%5:00:00:valid:00 02499511 1 0 -reasoner%1:18:00:: 10510339 1 0 -reasoning%1:09:00:: 05772356 1 5 -reasoning%5:00:00:rational:00 01926089 1 0 -reasoning_backward%1:09:00:: 05783768 1 0 -reasoning_by_elimination%1:09:00:: 05782245 1 0 -reasonless%5:00:00:irrational:00 01926803 2 0 -reasonless%5:00:00:unmotivated:00 01559042 3 0 -reasonless%5:00:00:unreasonable:00 01945139 1 0 -reassail%2:33:00:: 01121052 1 1 -reassemble%2:36:00:: 01657524 1 3 -reassembly%1:04:00:: 00269856 1 0 -reassert%2:32:00:: 01012073 1 2 -reassertion%1:10:00:: 06732581 1 0 -reassess%2:31:00:: 00682781 1 0 -reassessment%1:09:00:: 05747582 1 0 -reassign%2:41:00:: 02393086 1 1 -reassignment%1:04:00:: 00732076 1 0 -reassurance%1:04:00:: 01215719 1 4 -reassure%2:32:00:: 01019808 2 1 -reassure%2:37:00:: 01766407 1 5 -reassured%5:00:00:confident:00 00339599 1 1 -reassuring%3:00:00:: 00196934 1 2 -reassuringly%4:02:00:: 00439687 1 1 -reata%1:06:00:: 03644378 1 0 -reattribute%2:31:00:: 00727305 1 0 -reaumur%1:18:00:: 11255619 1 0 -reaumur_scale%1:24:00:: 13853407 1 0 -reaumur_thermometer%1:06:00:: 04060198 1 0 -reave%2:40:00:: 02344568 1 0 -reawaken%2:29:00:: 00019182 1 1 -reb%1:18:00:: 10628368 1 9 -rebarbative%5:00:00:unpleasant:00 01804422 1 0 -rebate%1:06:00:: 04036776 2 0 -rebate%1:21:00:: 13282275 1 0 -rebate%2:35:00:: 01555193 2 0 -rebate%2:35:01:: 01295134 3 0 -rebate%2:40:00:: 02320200 1 0 -rebato%1:06:00:: 04036648 1 0 -rebecca%1:18:00:: 11255775 1 0 -rebecca_rolfe%1:18:00:: 11240249 1 0 -rebecca_west%1:18:00:: 11382398 1 0 -rebekah%1:18:00:: 11255775 1 0 -rebel%1:18:00:: 10210137 2 3 -rebel%1:18:01:: 10303654 3 1 -rebel%1:18:02:: 10628368 1 10 -rebel%2:41:00:: 02583139 1 5 -rebel%2:41:01:: 02583379 2 2 -rebellion%1:04:00:: 00962129 2 5 -rebellion%1:04:01:: 01177327 1 5 -rebellious%5:00:00:discontented:00 00589960 2 1 -rebellious%5:00:00:disloyal:00 00963671 3 0 -rebellious%5:00:00:insubordinate:00 02331088 1 1 -rebelliously%4:02:00:: 00198661 1 1 -rebelliousness%1:04:00:: 01179393 2 0 -rebelliousness%1:07:00:: 04907991 1 0 -rebind%2:35:00:: 01336007 1 0 -rebirth%1:04:00:: 00094788 4 0 -rebirth%1:04:02:: 01047803 3 0 -rebirth%1:11:00:: 07321247 2 0 -rebirth%1:19:00:: 11408914 1 0 -reboot%2:29:00:: 00098346 1 0 -reborn%5:00:00:regenerate:00 01957177 1 1 -rebound%1:04:00:: 00140112 3 0 -rebound%1:04:01:: 00859691 2 0 -rebound%1:11:00:: 07350192 1 0 -rebound%2:30:00:: 00528608 2 0 -rebound%2:38:00:: 01892104 1 1 -rebound_tenderness%1:26:00:: 14332448 1 0 -reboxetine%1:06:00:: 04060316 1 0 -rebozo%1:06:00:: 04060448 1 0 -rebroadcast%1:10:01:: 06619751 1 0 -rebroadcast%2:32:00:: 00973888 1 0 -rebuff%1:04:00:: 01225783 1 1 -rebuff%1:10:00:: 07208000 2 0 -rebuff%2:32:00:: 00798539 1 3 -rebuff%2:33:00:: 01131197 2 1 -rebuild%2:36:00:: 01655902 1 8 -rebuilding%1:04:00:: 00270186 1 2 -rebuke%1:10:00:: 06711855 1 0 -rebuke%2:32:00:: 00824767 1 3 -rebuker%1:18:00:: 10740017 1 0 -rebukingly%4:02:00:: 00439847 1 0 -reburial%1:04:00:: 01050763 1 0 -rebury%2:41:00:: 02456851 1 0 -reburying%1:04:00:: 01050763 1 0 -rebus%1:10:00:: 06786486 1 0 -rebut%2:31:00:: 00667747 2 1 -rebut%2:32:00:: 00814850 1 7 -rebuttal%1:10:00:: 07201220 1 0 -rebuttal%1:10:01:: 06562993 2 0 -rebutter%1:10:00:: 06562993 2 0 -rebutter%1:18:00:: 10510546 1 0 -rec_room%1:06:00:: 04065464 1 0 -recalcitrance%1:07:00:: 04907575 1 0 -recalcitrancy%1:07:00:: 04907575 1 0 -recalcitrant%5:00:00:defiant:00 00696335 2 0 -recalcitrant%5:00:00:disobedient:00 01614127 1 0 -recalcitrate%2:33:00:: 01091844 1 0 -recalculate%2:31:00:: 00639693 1 1 -recalculation%1:04:00:: 00870101 1 0 -recall%1:04:01:: 01258719 5 0 -recall%1:09:00:: 05761559 4 0 -recall%1:10:00:: 07190840 2 0 -recall%1:10:01:: 06804388 3 0 -recall%1:10:02:: 07280072 1 0 -recall%2:31:00:: 00607780 1 47 -recall%2:31:06:: 00722848 5 1 -recall%2:32:00:: 00959524 2 4 -recall%2:32:02:: 00791506 4 1 -recall%2:40:00:: 02312478 7 0 -recall%2:41:00:: 02480216 6 0 -recall%2:42:00:: 02675458 3 1 -recall_dose%1:06:00:: 02872172 1 0 -recant%2:32:00:: 00798717 1 0 -recantation%1:10:00:: 07206096 1 0 -recap%1:06:00:: 04083942 2 0 -recap%1:10:00:: 06469377 1 0 -recap%2:32:00:: 01008903 1 0 -recapitulate%2:32:00:: 01008903 1 1 -recapitulate%2:36:00:: 01727490 3 0 -recapitulate%2:36:01:: 01735144 2 0 -recapitulation%1:04:00:: 00940217 4 0 -recapitulation%1:10:00:: 06469377 3 0 -recapitulation%1:10:01:: 07039238 2 0 -recapitulation%1:22:00:: 13531652 1 0 -recapture%1:04:00:: 00096969 2 0 -recapture%1:04:01:: 00097122 1 0 -recapture%2:35:00:: 01439604 4 0 -recapture%2:36:00:: 01686827 2 1 -recapture%2:37:00:: 01772363 1 3 -recapture%2:40:00:: 02304013 3 0 -recast%2:36:00:: 01710934 1 0 -recast%2:36:01:: 01663205 2 0 -recast%2:36:02:: 01658586 3 0 -recasting%1:10:00:: 06429145 1 0 -recce%1:04:00:: 00985008 1 0 -recco%1:04:00:: 00985008 1 0 -reccy%1:04:00:: 00985008 1 0 -recede%2:30:00:: 00570694 3 0 -recede%2:33:00:: 01113806 2 0 -recede%2:38:01:: 01994442 1 4 -receding%1:04:00:: 00057486 2 0 -receding%1:11:00:: 07336214 1 0 -receding%5:00:00:backward:01 00202411 1 0 -receipt%1:04:00:: 00090253 1 3 -receipt%1:10:00:: 06520222 2 2 -receipt%2:31:00:: 00662485 2 0 -receipt%2:32:00:: 00892698 1 0 -receipts%1:21:00:: 13256691 1 2 -receivable%5:00:00:due:00 00137277 1 0 -receivables%1:21:00:: 13330283 1 0 -receive%2:30:00:: 00117346 8 2 -receive%2:30:01:: 00522751 2 27 -receive%2:31:00:: 00686879 6 8 -receive%2:31:08:: 00617095 13 0 -receive%2:32:00:: 00900583 7 2 -receive%2:34:00:: 01172838 12 0 -receive%2:35:00:: 01470225 5 16 -receive%2:39:00:: 02107248 3 25 -receive%2:39:03:: 02108026 4 22 -receive%2:39:15:: 02108654 11 0 -receive%2:40:00:: 02210119 1 122 -receive%2:41:00:: 02493511 10 0 -receive%2:42:00:: 02739480 9 1 -received%3:00:04:: 02297664 1 0 -received%5:00:00:conventional:00 00605893 2 0 -received_pronunciation%1:10:00:: 06948396 1 0 -receiver%1:06:00:: 04060647 1 4 -receiver%1:06:01:: 04402580 3 3 -receiver%1:18:00:: 09627906 4 1 -receiver%1:18:01:: 10265532 2 3 -receiver%1:18:02:: 10510818 6 0 -receiver%1:18:03:: 10510974 5 0 -receiver-creditor_relation%1:24:00:: 13840039 1 0 -receivership%1:04:00:: 00598767 3 0 -receivership%1:04:01:: 01186578 2 0 -receivership%1:26:00:: 14479320 1 0 -receiving_set%1:06:00:: 04043733 1 0 -receiving_system%1:06:00:: 04060647 1 1 -recency%1:07:01:: 05049808 1 0 -recency%1:07:02:: 04927268 2 0 -recent%1:28:00:: 15124713 1 0 -recent%5:00:00:new:00 01642477 1 36 -recent%5:00:00:past:00 01730444 2 9 -recent_epoch%1:28:00:: 15124713 1 0 -recently%4:02:00:: 00107416 1 31 -recentness%1:07:01:: 05049808 1 0 -recentness%1:07:02:: 04927268 2 0 -receptacle%1:06:00:: 04060904 1 1 -receptacle%1:06:01:: 04061442 3 0 -receptacle%1:20:00:: 13130161 2 0 -reception%1:04:00:: 00090253 4 1 -reception%1:04:03:: 00139919 5 0 -reception%1:10:00:: 06281040 3 3 -reception%1:10:01:: 06630852 1 4 -reception%1:14:00:: 08254331 2 3 -reception_desk%1:06:00:: 04061681 1 0 -reception_line%1:14:00:: 08433077 1 0 -reception_room%1:06:00:: 04061793 1 1 -receptionist%1:18:00:: 10511069 1 6 -receptive%3:00:00:: 01985247 2 0 -receptive%5:00:00:absorbent:00 00007208 4 0 -receptive%5:00:00:afferent:00 00333611 3 0 -receptive%5:00:00:pervious:00 01773420 1 1 -receptive_aphasia%1:26:00:: 14099172 1 0 -receptively%4:02:00:: 00439930 1 0 -receptiveness%1:07:00:: 04645020 1 0 -receptivity%1:07:00:: 04645020 1 0 -receptor%1:08:00:: 05299178 2 0 -receptor%1:08:01:: 05608868 1 0 -recess%1:04:00:: 01062997 5 0 -recess%1:06:00:: 04061969 4 0 -recess%1:17:00:: 09313716 3 0 -recess%1:25:00:: 13872421 2 0 -recess%1:26:00:: 14013646 1 0 -recess%2:30:00:: 00364297 3 0 -recess%2:35:00:: 01277305 2 0 -recess%2:35:01:: 01498872 1 2 -recessed%5:00:00:concave:00 00536998 2 0 -recessed%5:00:00:hollow:00 02264521 1 0 -recession%1:04:00:: 00057486 5 0 -recession%1:04:01:: 01249991 4 0 -recession%1:14:00:: 08429556 3 0 -recession%1:25:00:: 13872421 2 0 -recession%1:26:00:: 14013368 1 1 -recessional%1:10:00:: 07037232 2 0 -recessional%1:14:00:: 08429556 1 0 -recessional%3:01:00:: 03109261 1 0 -recessional_march%1:10:00:: 07058871 1 0 -recessionary%3:01:00:: 03109141 1 0 -recessive%1:08:00:: 05438315 1 0 -recessive%3:00:00:: 00793988 2 0 -recessive%3:01:00:: 03109141 1 0 -recessive_allele%1:08:00:: 05438315 1 0 -recessive_gene%1:08:00:: 05440875 1 0 -recharge%2:30:00:: 00518288 2 0 -recharge%2:35:00:: 01490572 1 0 -rechargeable%5:00:00:reversible:00 01759251 1 0 -rechauffe%1:13:00:: 07572134 1 0 -recherche%5:00:00:elegant:00 00850552 1 0 -rechewed_food%1:13:00:: 07805478 1 0 -recidivate%2:29:00:: 00093327 1 0 -recidivism%1:04:00:: 00068617 1 0 -recidivist%1:18:00:: 10511239 2 0 -recidivist%1:18:01:: 10511425 1 0 -recife%1:15:00:: 08856475 1 0 -recipe%1:10:00:: 06788785 1 0 -recipient%1:10:00:: 06333095 2 0 -recipient%1:18:00:: 09627906 1 2 -recipient_role%1:10:00:: 06333095 1 0 -reciprocal%1:04:00:: 00851146 3 0 -reciprocal%1:24:00:: 13843173 2 0 -reciprocal%1:24:01:: 13843601 1 0 -reciprocal%3:00:00:: 01945550 1 7 -reciprocal%5:00:00:inverse:00 00769761 2 0 -reciprocal-inhibition_therapy%1:04:00:: 00702659 1 0 -reciprocal_cross%1:04:00:: 00851146 1 0 -reciprocal_inhibition%1:04:00:: 00702659 1 0 -reciprocal_ohm%1:23:00:: 13637240 1 0 -reciprocal_pronoun%1:10:00:: 06327261 1 0 -reciprocality%1:24:00:: 13841213 1 0 -reciprocally%4:02:00:: 00175919 3 0 -reciprocally%4:02:01:: 00405645 2 0 -reciprocally%4:02:02:: 00405868 1 0 -reciprocate%2:38:00:: 01875820 2 0 -reciprocate%2:41:00:: 02372326 1 0 -reciprocating_engine%1:06:00:: 04062179 1 0 -reciprocating_saw%1:06:00:: 04121728 1 0 -reciprocation%1:04:00:: 01236049 1 0 -reciprocation%1:04:01:: 00341435 2 0 -reciprocation%1:04:02:: 00040152 3 0 -reciprocative%5:00:00:reciprocal:00 01946595 2 0 -reciprocative%5:00:01:reciprocal:00 01946764 1 0 -reciprocatory%5:00:00:reciprocal:00 01946595 2 0 -reciprocatory%5:00:01:reciprocal:00 01946764 1 0 -reciprocity%1:04:00:: 00040420 2 0 -reciprocity%1:24:00:: 13841213 1 0 -recirculation%1:04:00:: 00368515 1 0 -recission%1:04:00:: 00232863 1 0 -recital%1:10:00:: 07234735 4 0 -recital%1:10:01:: 07220773 1 1 -recital%1:10:02:: 07234881 3 0 -recital%1:10:03:: 06893441 2 1 -recital%1:10:04:: 07221756 5 0 -recitalist%1:18:00:: 10511649 1 0 -recitation%1:04:00:: 00894552 4 0 -recitation%1:04:01:: 01232246 3 0 -recitation%1:10:00:: 07234881 2 0 -recitation%1:10:01:: 07235218 1 0 -recitative%1:10:00:: 07087346 1 0 -recite%2:32:00:: 00945255 2 2 -recite%2:32:01:: 00953216 4 0 -recite%2:32:02:: 01051364 1 2 -recite%2:32:03:: 00946105 5 0 -recite%2:36:00:: 01703454 3 0 -reciter%1:18:00:: 10511771 1 0 -reckless%5:00:00:bold:00 00250739 1 2 -reckless%5:00:00:careless:00 00312757 2 0 -recklessly%4:02:00:: 00354861 1 1 -recklessness%1:07:00:: 04661926 1 2 -reckon%2:31:00:: 00690614 3 1 -reckon%2:31:01:: 00637259 4 1 -reckon%2:31:02:: 00631737 1 5 -reckon%2:31:03:: 00712135 2 3 -reckon%2:31:05:: 00712708 5 0 -reckon%2:31:13:: 00712556 6 0 -reckoner%1:10:00:: 06423496 2 0 -reckoner%1:18:00:: 09887034 1 0 -reckoning%1:04:01:: 00634586 3 0 -reckoning%1:09:00:: 05802185 1 1 -reckoning%1:10:00:: 06517779 2 0 -reclaim%2:30:00:: 00383871 4 0 -reclaim%2:30:04:: 00302130 5 0 -reclaim%2:30:08:: 00384620 3 0 -reclaim%2:40:00:: 02276322 1 2 -reclaim%2:40:03:: 02226833 2 0 -reclaimable%5:00:00:useful:00 02496425 1 0 -reclaimed%5:00:00:saved:00 01451937 1 2 -reclamation%1:04:00:: 00095971 2 0 -reclamation%1:04:01:: 00269018 1 0 -reclamation%1:04:02:: 00093354 3 0 -reclassification%1:04:00:: 01013316 1 1 -reclassify%2:31:00:: 00655792 1 2 -recline%2:35:00:: 01547390 3 0 -recline%2:35:03:: 01547641 2 0 -recline%2:38:00:: 02039156 1 0 -recliner%1:06:00:: 04062428 1 0 -reclining%1:04:00:: 00341548 1 1 -reclining_chair%1:06:00:: 04062428 1 0 -recluse%1:18:00:: 10172448 1 1 -recluse%5:00:00:unsocial:00 02250691 1 0 -reclusive%5:00:00:private:00 01859055 2 0 -reclusive%5:00:00:unsocial:00 02250691 1 0 -reclusiveness%1:07:00:: 04622772 1 0 -recode%2:30:00:: 00278514 1 0 -recoding%1:04:00:: 00616951 1 0 -recognisable%5:00:00:identifiable:00 01272920 1 0 -recognisance%1:21:00:: 13350443 1 0 -recognise%2:31:00:: 00610374 7 0 -recognise%2:31:01:: 00728617 6 0 -recognise%2:31:02:: 00592883 8 0 -recognise%2:32:00:: 00892467 5 0 -recognise%2:32:01:: 00897241 4 0 -recognise%2:39:01:: 02193194 3 0 -recognise%2:41:00:: 02475535 2 0 -recognise%2:41:01:: 02546467 1 0 -recognised%5:00:00:acknowledged:00 00027599 2 0 -recognised%5:00:00:established:00 01636507 1 0 -recognition%1:04:00:: 00165563 8 0 -recognition%1:09:00:: 05762998 2 8 -recognition%1:09:01:: 06194216 7 0 -recognition%1:09:02:: 05807540 4 1 -recognition%1:10:00:: 06688274 3 1 -recognition%1:10:01:: 07149107 6 0 -recognition%1:19:00:: 11502695 5 0 -recognition%1:26:00:: 14411981 1 10 -recognizable%5:00:00:identifiable:00 01272920 2 2 -recognizable%5:00:00:perceptible:00 01747996 1 2 -recognizably%4:02:00:: 00424004 1 0 -recognizance%1:21:00:: 13350443 1 0 -recognize%2:31:00:: 00610374 4 11 -recognize%2:31:01:: 00728617 2 32 -recognize%2:31:02:: 00592883 1 33 -recognize%2:32:00:: 00892467 7 2 -recognize%2:32:01:: 00897241 6 2 -recognize%2:39:01:: 02193194 3 25 -recognize%2:41:00:: 02475535 5 2 -recognize%2:41:01:: 02546467 9 0 -recognize%2:42:00:: 02754158 8 0 -recognized%5:00:00:acknowledged:00 00027599 1 3 -recognized%5:00:00:established:00 01636507 2 0 -recoil%1:11:00:: 07350192 2 0 -recoil%1:11:01:: 07350754 1 0 -recoil%2:35:00:: 01371454 4 0 -recoil%2:38:00:: 02061069 1 2 -recoil%2:38:01:: 01892104 3 0 -recoil%2:41:00:: 02378950 2 0 -recoilless%3:01:00:: 02787627 1 0 -recollect%2:31:00:: 00607780 1 4 -recollection%1:09:00:: 05761918 1 4 -recollection%1:09:01:: 05761559 2 3 -recollection%1:09:02:: 05935292 3 0 -recollective%3:00:00:: 02005756 1 0 -recombinant%1:05:00:: 01313888 1 0 -recombinant%3:01:00:: 02787740 1 0 -recombinant_deoxyribonucleic_acid%1:27:00:: 14831479 1 0 -recombinant_dna%1:27:00:: 14831479 1 0 -recombinant_dna_technology%1:09:00:: 06127209 1 0 -recombinant_human_insulin%1:08:00:: 05411049 1 0 -recombinant_protein%1:27:00:: 14729633 1 0 -recombination%1:11:00:: 07374152 2 0 -recombination%1:11:01:: 07374357 1 0 -recombine%2:30:00:: 00566024 1 0 -recombine%2:30:01:: 00565858 2 0 -recombine%2:30:03:: 00193954 3 0 -recommence%2:30:00:: 00346537 2 0 -recommence%2:30:01:: 00349416 1 0 -recommencement%1:04:00:: 00242003 1 0 -recommend%2:30:00:: 00578733 3 0 -recommend%2:32:00:: 00882948 2 6 -recommend%2:32:01:: 00875141 1 50 -recommendation%1:07:00:: 04673668 3 0 -recommendation%1:10:00:: 06671637 1 25 -recommendation%1:10:02:: 06694540 2 1 -recommit%2:38:00:: 01953191 3 0 -recommit%2:40:00:: 02348057 2 0 -recommit%2:41:01:: 02583041 1 0 -recompense%1:04:00:: 00259643 2 0 -recompense%1:21:00:: 13282007 1 0 -recompense%2:40:00:: 02249741 2 0 -recompense%2:40:01:: 02250625 1 0 -reconcilable%3:00:00:: 01986483 1 0 -reconcile%2:30:00:: 00482473 2 2 -reconcile%2:30:01:: 00482893 1 2 -reconcile%2:31:00:: 00732394 4 1 -reconcile%2:32:00:: 00764902 3 1 -reconciled%5:00:00:consistent:00 00577612 1 0 -reconciler%1:18:00:: 09952163 1 0 -reconciliation%1:04:00:: 00185104 2 0 -reconciliation%1:04:01:: 01205827 1 0 -reconciling%5:00:00:adaptive:00 00046339 1 1 -recondite%5:00:00:esoteric:00 00899226 1 0 -reconditeness%1:07:00:: 04823416 2 0 -reconditeness%1:09:00:: 05926358 1 0 -recondition%2:30:00:: 00207588 1 1 -reconfirm%2:32:00:: 01012905 1 0 -reconnaissance%1:04:01:: 00984609 1 0 -reconnaissance_by_fire%1:04:00:: 00985516 1 0 -reconnaissance_in_force%1:04:00:: 00985746 1 0 -reconnaissance_mission%1:04:00:: 00984609 1 0 -reconnaissance_plane%1:06:00:: 04062644 1 0 -reconnaissance_vehicle%1:06:00:: 04062807 1 0 -reconnoiter%2:39:00:: 02167571 1 1 -reconnoitering%1:04:00:: 00985106 1 0 -reconnoitre%2:39:00:: 02167571 1 0 -reconnoitring%1:04:00:: 00985106 1 0 -reconquer%2:40:00:: 02272938 1 0 -reconsecrate%2:32:00:: 00866953 1 0 -reconsider%2:31:00:: 00654015 1 7 -reconsider%2:31:01:: 00654258 2 0 -reconsideration%1:09:00:: 05790012 2 0 -reconsideration%1:10:00:: 07139532 1 1 -reconstitute%2:30:02:: 00404401 1 0 -reconstruct%2:30:00:: 00199490 5 0 -reconstruct%2:30:01:: 00151448 3 1 -reconstruct%2:31:00:: 00634090 1 3 -reconstruct%2:36:00:: 01655902 2 1 -reconstruct%2:41:04:: 02552449 4 0 -reconstructed%3:00:00:: 00288685 1 1 -reconstruction%1:04:00:: 00269258 2 1 -reconstruction%1:09:00:: 05762258 4 0 -reconstruction%1:10:00:: 07174138 3 0 -reconstruction%1:28:00:: 15261658 1 2 -reconstruction_period%1:28:00:: 15261658 1 0 -reconstructive%5:00:00:constructive:00 00585856 1 0 -reconstructive_memory%1:09:00:: 05762258 1 0 -reconstructive_surgery%1:04:00:: 00690501 1 0 -reconvene%2:38:00:: 02024716 1 2 -reconvert%2:30:00:: 00117498 1 1 -reconvict%2:32:00:: 00906637 1 0 -recopy%2:36:00:: 01695143 1 1 -record%1:04:00:: 00063014 6 3 -record%1:04:01:: 00047745 4 6 -record%1:06:00:: 03924069 2 23 -record%1:10:00:: 06490173 8 0 -record%1:10:02:: 06636524 5 3 -record%1:10:03:: 06647206 1 26 -record%1:21:00:: 13403643 7 1 -record%1:23:00:: 13596986 3 7 -record%2:31:00:: 00612042 5 0 -record%2:32:00:: 01000214 1 34 -record%2:32:01:: 00998399 2 9 -record%2:32:03:: 00922867 3 4 -record%2:39:00:: 02105810 4 0 -record-breaker%1:18:00:: 10511856 1 0 -record-breaking%5:00:00:best:00 00228967 1 0 -record-holder%1:18:00:: 10511856 1 0 -record-keeper%1:18:00:: 10516874 1 0 -record_album%1:06:00:: 03923801 2 0 -record_album%1:10:00:: 06591815 1 0 -record_book%1:10:00:: 06636524 1 0 -record_changer%1:06:00:: 04063154 1 0 -record_company%1:14:00:: 08478261 1 0 -record_cover%1:06:00:: 04064747 1 0 -record_hop%1:11:00:: 07449548 1 0 -record_jacket%1:06:00:: 04064307 1 0 -record_player%1:06:00:: 04064401 1 1 -record_sleeve%1:06:00:: 04064747 1 0 -recorded%3:00:00:: 01422956 1 2 -recorded%5:00:00:registered:00 01958512 2 0 -recorder%1:06:00:: 03343354 4 0 -recorder%1:06:01:: 04063373 1 2 -recorder%1:18:00:: 10516874 2 0 -recorder%1:18:01:: 10511960 3 0 -recorder_player%1:18:00:: 10512109 1 0 -recording%1:04:00:: 00910203 2 5 -recording%1:06:00:: 04063661 1 14 -recording%1:06:01:: 04063868 3 0 -recording_equipment%1:06:00:: 04063373 1 0 -recording_label%1:10:00:: 06851516 1 0 -recording_machine%1:06:00:: 04063373 1 0 -recording_studio%1:06:00:: 04064107 1 1 -recording_system%1:06:00:: 04064213 1 0 -recount%1:04:00:: 00653958 1 0 -recount%2:32:00:: 00953216 1 10 -recount%2:32:02:: 00801355 2 0 -recounting%1:10:00:: 07222823 1 0 -recoup%2:40:00:: 02249438 2 0 -recoup%2:40:01:: 02215001 3 0 -recoup%2:40:02:: 02249591 1 1 -recourse%1:04:00:: 01208597 1 2 -recourse%1:07:00:: 05155123 2 0 -recover%2:29:00:: 00092690 2 4 -recover%2:30:00:: 00528339 3 3 -recover%2:35:00:: 01336541 6 0 -recover%2:40:00:: 02247977 1 9 -recover%2:40:01:: 02249438 4 0 -recover%2:40:06:: 02226833 5 0 -recoverable%3:00:00:: 01956060 1 1 -recovered%5:00:00:found:00 01450888 2 0 -recovered%5:00:00:well:01 02541012 1 0 -recoverer%1:18:00:: 10522759 1 0 -recovering%5:00:00:ill:01 02543598 1 0 -recovery%1:04:00:: 00045907 3 2 -recovery%1:11:00:: 07419792 1 3 -recovery%1:22:00:: 13452347 2 2 -recovery_room%1:06:00:: 04064862 1 0 -recreant%1:18:00:: 10452024 1 0 -recreant%1:18:02:: 10007109 2 0 -recreant%5:00:00:cowardly:00 00265496 2 0 -recreant%5:00:00:disloyal:00 00963858 1 0 -recreate%2:29:02:: 00024279 1 4 -recreate%2:36:05:: 01737617 4 0 -recreate%2:37:00:: 01817938 3 0 -recreate%2:41:00:: 02418421 2 0 -recreation%1:04:00:: 00426928 1 23 -recreation%1:04:01:: 00401783 2 0 -recreation_facility%1:06:00:: 04065132 1 0 -recreation_room%1:06:00:: 04065464 1 0 -recreational%3:01:00:: 02787831 1 1 -recreational%5:00:00:nonprofessional:00 01869634 2 1 -recreational_drug%1:06:00:: 04064988 1 0 -recreational_facility%1:06:00:: 04065132 1 1 -recreational_vehicle%1:06:00:: 04065272 1 0 -recriminate%2:32:00:: 00844553 1 0 -recrimination%1:10:00:: 07234657 1 2 -recriminative%5:00:00:inculpatory:00 00925287 1 0 -recriminatory%5:00:00:inculpatory:00 00925287 1 0 -recrudesce%2:30:00:: 00309074 2 0 -recrudesce%2:30:01:: 00339464 1 0 -recrudescence%1:11:00:: 07435891 1 0 -recrudescent%5:00:00:revived:00 02013422 1 0 -recruit%1:18:00:: 10512201 2 2 -recruit%1:18:01:: 10512372 1 2 -recruit%2:33:00:: 01098452 3 2 -recruit%2:40:00:: 02240319 2 3 -recruit%2:41:01:: 02471327 1 7 -recruiter%1:18:00:: 10512562 2 0 -recruiter%1:18:01:: 10512708 1 0 -recruiting-sergeant%1:18:00:: 10512859 1 0 -recruitment%1:04:00:: 01263711 1 6 -rectal%3:01:00:: 02933426 1 0 -rectal_artery%1:08:00:: 05354238 1 0 -rectal_reflex%1:04:00:: 00811221 1 0 -rectal_vein%1:08:00:: 05369092 1 0 -rectangle%1:25:00:: 13883346 1 1 -rectangular%5:00:00:angular:00 02048977 1 1 -rectangular%5:00:00:perpendicular:00 01720642 2 1 -rectangularity%1:07:00:: 05071869 1 0 -rectifiable%3:00:00:: 01963509 1 0 -rectification%1:04:00:: 00258854 3 0 -rectification%1:04:01:: 00156119 4 0 -rectification%1:11:00:: 07416308 2 0 -rectification%1:22:00:: 13547199 1 0 -rectified%5:00:00:corrected:00 00634559 1 0 -rectifier%1:06:00:: 04065632 1 2 -rectifier%1:18:00:: 10512982 2 0 -rectify%2:30:00:: 00199912 4 0 -rectify%2:30:02:: 00199659 5 0 -rectify%2:30:05:: 00474492 2 0 -rectify%2:30:06:: 00161731 6 0 -rectify%2:30:08:: 00384620 3 0 -rectify%2:32:02:: 00919829 1 0 -rectifying_tube%1:06:00:: 03202940 1 0 -rectifying_valve%1:06:00:: 03202940 1 0 -rectilineal%5:00:00:linear:01 00658752 1 0 -rectilinear%5:00:00:linear:01 00658752 1 0 -rectilinear_regression%1:09:00:: 06028904 1 0 -rectitude%1:07:00:: 04826623 1 1 -recto%1:10:00:: 06257484 1 0 -rectocele%1:26:00:: 14297150 1 0 -rectoplasty%1:04:00:: 00690933 1 0 -rector%1:18:00:: 09983572 1 0 -rectorate%1:04:00:: 00598868 1 0 -rectorship%1:04:00:: 00598868 1 0 -rectory%1:06:00:: 03892557 1 0 -rectosigmoid%3:01:00:: 02933540 1 0 -rectum%1:08:00:: 05537806 1 0 -rectus%1:08:00:: 05316590 1 0 -rectus_inferior%1:08:00:: 05316674 1 0 -rectus_lateralis%1:08:00:: 05316407 1 0 -rectus_medialis%1:08:00:: 05316850 1 0 -rectus_superior%1:08:00:: 05317013 1 0 -recumb%2:35:00:: 01547390 1 0 -recumbent%5:00:00:unerect:00 01238201 1 0 -recuperate%2:29:00:: 00092690 4 0 -recuperate%2:29:01:: 00093163 3 0 -recuperate%2:30:02:: 00528339 2 0 -recuperate%2:40:00:: 02249438 1 0 -recuperation%1:22:00:: 13452347 1 1 -recuperative%5:00:00:healthful:00 01167540 1 0 -recur%2:30:00:: 00343334 1 5 -recur%2:32:00:: 00959714 2 1 -recur%2:41:11:: 02590072 3 0 -recurrence%1:11:00:: 07343363 1 1 -recurrent%5:00:00:continual:00 00592880 1 2 -recurrent_event%1:11:00:: 07296190 1 0 -recurrent_fever%1:26:00:: 14142459 1 0 -recurrently%4:02:00:: 00514889 1 0 -recurring%5:00:00:continual:00 00593276 1 0 -recurring_decimal%1:23:00:: 13736376 1 0 -recursion%1:09:00:: 05848357 1 0 -recursive%5:00:00:algorithmic:00 00092848 1 0 -recursive_definition%1:10:00:: 06745422 1 0 -recursive_routine%1:10:00:: 06584162 1 0 -recurvate%5:00:00:curved:00 02316626 1 0 -recurve%2:38:00:: 02034883 1 0 -recurved%5:00:00:curved:00 02316626 1 0 -recurvirostra%1:05:00:: 02036548 1 0 -recurvirostridae%1:05:00:: 02036399 1 0 -recusal%1:04:00:: 01080062 1 0 -recusancy%1:04:00:: 01243453 1 0 -recusant%1:18:00:: 09957834 1 0 -recusant%5:00:00:disobedient:00 01614558 2 0 -recusant%5:00:00:unorthodox:00 01691302 1 0 -recusation%1:04:00:: 01080062 1 0 -recusation%1:04:01:: 01026020 2 0 -recuse%2:31:00:: 00686249 2 0 -recuse%2:32:00:: 00972867 1 0 -recyclable%5:00:00:useful:00 02496425 1 0 -recycle%2:34:00:: 01162425 2 0 -recycle%2:38:00:: 02052877 1 0 -recycling%1:04:00:: 00948868 1 0 -recycling_bin%1:06:00:: 04065789 1 0 -recycling_plant%1:06:00:: 04065909 1 0 -red%1:07:00:: 04962784 1 9 -red%1:17:00:: 09405949 2 7 -red%1:18:00:: 09863749 3 1 -red%1:21:00:: 13327231 4 0 -red%5:00:00:colored:00 00395626 3 7 -red%5:00:01:chromatic:00 00381097 1 43 -red%5:00:02:bloody:00 00248560 2 8 -red-backed_lemming%1:05:00:: 02345340 1 0 -red-backed_mouse%1:05:00:: 02342250 1 0 -red-backed_sandpiper%1:05:00:: 02027492 1 0 -red-bellied_snake%1:05:00:: 01738306 1 1 -red-bellied_terrapin%1:05:00:: 01668436 1 0 -red-bellied_turtle%1:05:00:: 01668436 1 0 -red-berried_elder%1:20:01:: 12679593 1 0 -red-berried_elder%1:20:02:: 12679432 2 0 -red-berry%1:20:00:: 13142504 1 0 -red-berry%1:20:02:: 11724109 2 0 -red-blind%5:00:00:blind:00 02160291 1 0 -red-blindness%1:26:00:: 14154421 1 0 -red-blooded%5:00:00:healthy:00 01171746 1 0 -red-breasted_merganser%1:05:00:: 01855032 1 0 -red-breasted_nuthatch%1:05:00:: 01591123 1 0 -red-breasted_sapsucker%1:05:00:: 01841441 1 0 -red-breasted_snipe%1:05:00:: 02033324 1 0 -red-brick%5:00:00:modern:00 01536445 1 0 -red-brown%5:00:00:chromatic:00 00381525 1 0 -red-carpet%5:00:00:uncommon:00 00488697 1 0 -red-coated%5:00:00:clothed:00 00456576 1 0 -red-eye%2:38:00:: 01840505 1 0 -red-eyed_vireo%1:05:00:: 01602832 1 0 -red-faced%5:00:00:colored:00 00395626 1 2 -red-faced%5:00:00:discomposed:00 00531887 2 0 -red-flowered%5:00:00:colored:00 00400395 1 0 -red-flowered_silky_oak%1:20:00:: 12217851 1 0 -red-fruited%5:00:00:fruitful:00 01082302 1 0 -red-gray%5:00:00:achromatic:00 00391368 1 0 -red-green_color_blindness%1:26:00:: 14153982 1 0 -red-green_colour_blindness%1:26:00:: 14153982 1 0 -red-green_dichromacy%1:26:00:: 14153982 1 0 -red-grey%5:00:00:achromatic:00 00391368 1 0 -red-handed%4:02:00:: 00125602 1 0 -red-handed%5:00:00:guilty:00 01322959 1 0 -red-header%1:18:00:: 10513823 1 0 -red-hot%5:00:00:fast:01 00977372 5 0 -red-hot%5:00:00:hot:01 01249768 4 0 -red-hot%5:00:00:new:00 01641791 2 0 -red-hot%5:00:00:sexy:00 02132967 1 0 -red-hot%5:00:02:hot:02 01256973 3 0 -red-hot_poker%1:20:00:: 12437930 1 0 -red-ink%2:30:00:: 00509228 1 0 -red-lavender%5:00:00:chromatic:00 00381636 1 0 -red-lead_putty%1:27:00:: 14704152 1 0 -red-legged_partridge%1:05:00:: 01808140 1 0 -red-letter%5:00:00:unforgettable:00 01040825 1 0 -red-letter_day%1:28:00:: 15171145 1 0 -red-light_district%1:15:00:: 08554346 1 0 -red-necked_grebe%1:05:00:: 02050442 1 0 -red-orange%5:00:00:chromatic:00 00381861 1 0 -red-purple%5:00:00:chromatic:00 00381975 1 0 -red-rimmed%5:00:00:rimmed:00 02027480 1 1 -red-shafted_flicker%1:05:00:: 01840120 1 0 -red-shouldered_hawk%1:05:00:: 01607812 1 0 -red-skinned_onion%1:20:00:: 12434106 1 0 -red-spotted_purple%1:05:00:: 02277094 1 0 -red-streaked%5:00:00:patterned:00 01790150 1 0 -red-striped%5:00:00:patterned:00 01790150 1 0 -red-tailed_hawk%1:05:00:: 01607429 1 1 -red-veined_pie_plant%1:20:00:: 12603273 1 0 -red-violet%5:00:00:chromatic:00 00382074 1 0 -red-winged_blackbird%1:05:00:: 01575401 1 0 -red_admiral%1:05:00:: 02276355 1 0 -red_alder%1:20:00:: 12285512 1 0 -red_alert%1:26:00:: 14032100 1 0 -red_algae%1:05:00:: 01413942 1 0 -red_amaranth%1:20:00:: 11823756 1 0 -red_angel's_trumpet%1:20:00:: 12899971 1 0 -red_army_faction%1:14:00:: 08041106 1 0 -red_ash%1:20:00:: 12305475 1 0 -red_baneberry%1:20:00:: 11724109 1 0 -red_bat%1:05:00:: 02146201 1 0 -red_bay%1:20:00:: 11706942 1 0 -red_bearberry%1:20:00:: 12231358 1 0 -red_beech%1:20:01:: 12261808 1 0 -red_beech%1:20:02:: 12199790 2 0 -red_birch%1:20:00:: 12282933 1 0 -red_bird's_eye%1:20:00:: 11816121 1 0 -red_blood_cell%1:08:00:: 05454070 1 5 -red_bone_marrow%1:08:00:: 05285835 1 0 -red_bordeaux%1:13:00:: 07895435 1 0 -red_brass%1:27:00:: 15003139 1 0 -red_brigades%1:14:00:: 08041484 1 0 -red_bryony%1:20:00:: 12163456 1 0 -red_buckeye%1:20:00:: 12769219 1 0 -red_cabbage%1:13:00:: 07714802 2 0 -red_cabbage%1:20:00:: 11876316 1 0 -red_campion%1:20:00:: 11816121 1 0 -red_carpet%1:06:00:: 04066270 1 0 -red_carpet%5:00:00:uncommon:00 00488697 1 0 -red_cedar%1:20:01:: 11634736 3 0 -red_cedar%1:20:02:: 11637247 2 0 -red_cedar%1:20:03:: 11644046 1 0 -red_cedar%1:20:04:: 11623556 4 0 -red_cent%1:07:00:: 05140793 1 0 -red_china%1:15:00:: 08723006 1 1 -red_clay%1:27:00:: 14695069 1 1 -red_clintonia%1:20:00:: 12472326 1 0 -red_cloud%1:18:00:: 11255917 1 0 -red_clover%1:20:00:: 11753355 1 0 -red_cole%1:20:00:: 11872973 1 0 -red_coral%1:05:00:: 01916588 2 0 -red_coral%1:27:00:: 14823036 1 0 -red_cross%1:14:00:: 08047747 1 0 -red_currant%1:13:00:: 07744682 2 0 -red_currant%1:20:00:: 12805373 1 0 -red_cypress_pine%1:20:00:: 11633999 1 0 -red_dagga%1:20:00:: 12850906 1 0 -red_deer%1:05:00:: 02431122 1 0 -red_delicious%1:13:00:: 07740461 1 0 -red_devil%1:06:00:: 04163740 1 0 -red_dogwood%1:20:01:: 12947544 2 0 -red_dogwood%1:20:02:: 12948053 1 0 -red_drum%1:05:00:: 02595702 1 0 -red_dwarf%1:17:00:: 09406198 1 0 -red_dwarf_star%1:17:00:: 09406198 1 0 -red_eft%1:05:00:: 01630901 1 0 -red_elm%1:20:01:: 12408280 2 0 -red_elm%1:20:02:: 12408717 1 0 -red_false_mallow%1:20:00:: 12187891 1 0 -red_fire%1:27:00:: 14695184 1 0 -red_flag%1:04:00:: 00425615 3 0 -red_flag%1:10:00:: 07265619 1 0 -red_flag%1:10:01:: 06882244 2 0 -red_fox%1:05:00:: 02119022 3 0 -red_fox%1:05:02:: 02119477 2 0 -red_fox%1:20:00:: 11825211 1 0 -red_giant%1:17:00:: 09406368 1 0 -red_giant_star%1:17:00:: 09406368 1 0 -red_ginger%1:20:00:: 12357343 1 0 -red_goatfish%1:05:00:: 02600503 1 0 -red_goosefoot%1:20:01:: 11830252 1 0 -red_goosefoot%1:20:02:: 11829922 2 0 -red_gram%1:20:00:: 12510774 1 0 -red_grouse%1:05:00:: 01796519 1 0 -red_guard%1:14:00:: 08321469 1 0 -red_gum%1:20:01:: 12336092 3 0 -red_gum%1:20:02:: 12336224 2 0 -red_gum%1:20:03:: 12316572 5 0 -red_gum%1:20:04:: 12316982 4 0 -red_gum%1:20:05:: 12339090 1 0 -red_hand_defenders%1:14:00:: 08041840 1 0 -red_haw%1:20:01:: 12628356 2 0 -red_haw%1:20:02:: 12628705 1 0 -red_heat%1:07:00:: 05016553 1 0 -red_helleborine%1:20:00:: 12051103 1 0 -red_herring%1:04:00:: 00350878 1 1 -red_herring%1:10:00:: 07165778 3 0 -red_herring%1:13:00:: 07798233 2 0 -red_hot%1:13:00:: 07697537 1 0 -red_indian%1:18:00:: 09645091 1 0 -red_ink%1:21:00:: 13327231 1 0 -red_jungle_fowl%1:05:00:: 01791463 1 0 -red_juniper%1:20:00:: 11637247 1 0 -red_kauri%1:20:00:: 11648268 1 0 -red_lauan%1:20:00:: 12377494 2 0 -red_lauan%1:20:02:: 12377658 1 0 -red_lauan_tree%1:20:00:: 12377494 1 0 -red_laver%1:05:00:: 01415524 1 0 -red_lead%1:27:00:: 15003329 1 0 -red_light%1:10:00:: 06874497 2 0 -red_light%1:10:01:: 06874571 1 0 -red_line%1:15:00:: 08629922 1 0 -red_maids%1:20:00:: 11858814 1 0 -red_man%1:18:00:: 09667205 1 0 -red_maple%1:20:00:: 12753573 1 0 -red_marrow%1:08:00:: 05285835 1 0 -red_meat%1:13:00:: 07651325 1 0 -red_morning-glory%1:20:00:: 12828220 1 0 -red_mulberry%1:20:00:: 12399656 1 0 -red_mullet%1:05:00:: 02600298 1 0 -red_notice%1:10:00:: 07276732 1 0 -red_oak%1:20:00:: 12271643 1 0 -red_onion%1:13:00:: 07722888 1 0 -red_osier%1:20:01:: 12729729 2 0 -red_osier%1:20:02:: 12947544 1 0 -red_osier_dogwood%1:20:00:: 12947544 1 0 -red_panda%1:05:00:: 02509815 1 0 -red_pepper%1:13:00:: 07822518 1 0 -red_pepper%1:13:02:: 07722052 2 0 -red_periwinkle%1:20:00:: 11772408 1 0 -red_phalarope%1:05:00:: 02037869 1 0 -red_pimpernel%1:20:00:: 12092417 1 0 -red_pine%1:20:01:: 11616486 2 0 -red_pine%1:20:02:: 11654293 1 0 -red_planet%1:17:00:: 09347445 1 0 -red_poll%1:05:00:: 02405692 1 0 -red_porgy%1:05:00:: 02591330 1 0 -red_raspberry%1:20:00:: 12656229 1 0 -red_rat_snake%1:05:00:: 01732614 1 0 -red_region%1:09:00:: 05630409 1 0 -red_river%1:17:00:: 09405949 1 10 -red_rockfish%1:05:00:: 02644665 2 0 -red_rockfish%1:13:00:: 07797518 1 0 -red_salmon%1:05:00:: 02536165 2 0 -red_salmon%1:13:00:: 07796165 1 0 -red_sandalwood%1:20:01:: 12566331 2 0 -red_sandalwood%1:20:02:: 11758799 3 0 -red_sandalwood%1:20:03:: 12566627 1 0 -red_sanders%1:20:00:: 12566331 1 0 -red_sanderswood%1:20:00:: 12566331 1 0 -red_saunders%1:20:00:: 12566331 1 0 -red_scare%1:26:00:: 14406209 1 1 -red_sea%1:17:00:: 09406551 1 0 -red_setter%1:05:00:: 02100877 1 0 -red_shift%1:19:00:: 11513357 1 0 -red_shrubby_penstemon%1:20:00:: 12885510 1 0 -red_silk-cotton_tree%1:20:00:: 12189429 1 0 -red_silk_cotton%1:27:00:: 14925945 1 0 -red_silver_fir%1:20:00:: 11621281 1 0 -red_siskin%1:05:00:: 01531639 1 0 -red_snapper%1:05:00:: 02587051 2 0 -red_snapper%1:13:00:: 07797357 1 0 -red_sorrel%1:20:00:: 12179632 1 0 -red_spider%1:05:00:: 01782516 1 0 -red_spider_mite%1:05:00:: 01782516 1 0 -red_sprites%1:19:00:: 11475992 1 0 -red_spruce%1:20:00:: 11626826 1 0 -red_squirrel%1:05:01:: 02357111 2 0 -red_squirrel%1:05:02:: 02357401 1 0 -red_sun%1:14:00:: 08040008 1 0 -red_tai%1:10:00:: 06934933 1 0 -red_tape%1:04:00:: 01025563 1 0 -red_tide%1:27:00:: 15003496 1 0 -red_trillium%1:20:01:: 12468900 2 0 -red_trillium%1:20:02:: 12469157 1 0 -red_underwing%1:05:00:: 02296021 1 0 -red_valerian%1:20:00:: 12951146 1 0 -red_water%1:26:00:: 14271920 1 0 -red_willow%1:20:00:: 12729729 1 0 -red_wine%1:13:00:: 07892512 1 0 -red_wolf%1:05:00:: 02114712 1 0 -red_worm%1:05:00:: 01935395 1 0 -redact%1:18:00:: 10513120 1 0 -redact%2:30:00:: 00200397 2 0 -redact%2:32:00:: 00981276 1 0 -redaction%1:04:00:: 00931608 2 0 -redaction%1:10:00:: 06427831 1 0 -redactor%1:18:00:: 10513120 1 0 -redback_vole%1:05:00:: 02342250 1 0 -redbelly%1:05:00:: 01668436 1 0 -redberry%1:20:00:: 13142504 1 0 -redberry%1:20:02:: 11724109 2 0 -redbird%1:05:01:: 01541386 2 0 -redbird%1:05:02:: 01597737 1 0 -redbird_cactus%1:20:00:: 12928491 1 0 -redbird_flower%1:20:00:: 12928491 1 0 -redbone%1:05:00:: 02090379 1 0 -redbreast%1:05:00:: 01562265 1 0 -redbrick%5:00:00:modern:00 01536445 1 0 -redbrick_university%1:06:00:: 04066023 1 0 -redbrush%1:20:00:: 12947544 1 0 -redbud%1:20:00:: 12513933 1 0 -redbug%1:05:00:: 01781071 1 0 -redcap%1:18:00:: 10513386 2 0 -redcap%1:18:01:: 10513509 1 0 -redcoat%1:18:00:: 10029985 1 12 -redden%2:29:00:: 00103317 1 1 -redden%2:30:00:: 00289031 3 0 -redden%2:30:01:: 00534837 2 0 -reddened%5:00:00:colored:00 00395626 1 0 -reddened%5:00:00:light:06 00270496 2 0 -redding%1:15:00:: 09064729 1 0 -reddish%5:00:00:chromatic:00 00381097 1 0 -reddish-brown%5:00:00:chromatic:00 00381525 1 0 -reddish-gray%5:00:00:achromatic:00 00391368 1 0 -reddish-grey%5:00:00:achromatic:00 00391368 1 0 -reddish-lavender%5:00:00:chromatic:00 00381636 1 0 -reddish-orange%5:00:00:chromatic:00 00381861 1 0 -reddish-pink%5:00:00:chromatic:00 00381766 1 0 -reddish-striped%5:00:00:patterned:00 01790150 1 0 -reddish-violet%5:00:00:chromatic:00 00382074 1 0 -reddish_blue%1:07:00:: 04970758 1 0 -reddish_brown%1:07:00:: 04973386 1 0 -reddish_orange%1:07:00:: 04965451 1 0 -reddish_purple%1:07:00:: 04970631 1 0 -reddisn-purple%5:00:00:chromatic:00 00381975 1 0 -reddle%1:27:00:: 15008287 1 0 -rede%2:32:00:: 00872886 2 0 -rede%2:32:01:: 00938247 1 0 -redecorate%2:36:00:: 01678407 1 1 -rededicate%2:32:00:: 00888150 1 1 -rededication%1:11:00:: 07452559 1 0 -redeem%2:40:00:: 02256732 6 0 -redeem%2:40:01:: 02256853 5 0 -redeem%2:40:03:: 02256998 4 0 -redeem%2:40:04:: 02257232 3 0 -redeem%2:41:00:: 02551501 2 0 -redeem%2:41:04:: 02551602 1 3 -redeemable%5:00:00:convertible:00 00916965 2 0 -redeemable%5:00:00:corrigible:00 00635327 3 0 -redeemable%5:00:00:recoverable:00 01956229 1 0 -redeemed%5:00:00:saved:00 01452024 1 0 -redeemer%1:18:00:: 11083656 1 0 -redeemer%1:18:01:: 10513623 2 0 -redeeming%5:00:00:good:01 01124574 2 0 -redeeming%5:00:01:good:02 01130733 1 0 -redefine%2:32:00:: 00957549 2 0 -redefine%2:42:00:: 02611827 1 1 -redefinition%1:10:00:: 06745628 1 2 -redemption%1:04:00:: 00079212 3 0 -redemption%1:04:01:: 00094001 1 1 -redemption%1:21:00:: 13299804 2 0 -redemptional%3:01:00:: 03109399 1 0 -redemptive%3:01:00:: 03109399 1 0 -redemptive%5:00:00:good:02 01130733 2 0 -redemptory%3:01:00:: 03109399 1 0 -redeploy%2:35:00:: 01379804 1 0 -redeployment%1:04:00:: 01143760 1 0 -redeposit%2:35:00:: 01576001 2 0 -redeposit%2:40:00:: 02311135 1 0 -redeposition%1:22:00:: 13547380 1 2 -redesign%2:36:00:: 01640107 1 0 -redetermination%1:04:00:: 00156293 1 0 -redetermine%2:32:00:: 00919960 1 0 -redevelop%2:30:00:: 00172258 3 0 -redevelop%2:32:00:: 00926310 2 0 -redevelop%2:39:00:: 02139361 1 0 -redevelopment%1:04:00:: 00265119 1 1 -redevelopment_authority%1:14:00:: 08353244 1 0 -redeye%1:04:00:: 00302185 1 0 -redeye_flight%1:04:00:: 00302185 1 0 -redfin_pickerel%1:05:00:: 02561937 1 0 -redfish%1:05:01:: 02535258 3 0 -redfish%1:05:02:: 02595702 2 0 -redfish%1:13:00:: 07792117 1 0 -redford%1:18:00:: 11256125 1 0 -redhead%1:05:01:: 01840775 3 0 -redhead%1:05:02:: 01851207 2 0 -redhead%1:18:00:: 10513823 1 0 -redheaded%5:00:00:blond:00 00244410 1 1 -redheaded_woodpecker%1:05:00:: 01840775 1 0 -redheader%1:18:00:: 10513823 1 1 -redhorse%1:05:00:: 01446152 1 0 -redhorse_sucker%1:05:00:: 01446152 1 0 -rediffusion%1:10:00:: 06276902 1 0 -redirect%2:38:00:: 01953334 1 1 -redirect_examination%1:10:00:: 07195404 1 0 -rediscover%2:39:00:: 02156384 1 2 -rediscovery%1:04:00:: 00151914 1 1 -redispose%2:40:00:: 02355109 1 0 -redisposition%1:04:00:: 01143760 1 0 -redistribute%2:35:00:: 01379965 1 2 -redistributed%5:00:00:decentralized:00 01108427 1 0 -redistribution%1:04:00:: 01083350 1 0 -redline%2:41:00:: 02512666 1 0 -redly%4:02:00:: 00506216 1 1 -redmaids%1:20:00:: 11858814 1 0 -redneck%1:18:00:: 10513938 1 0 -redness%1:07:00:: 04962784 2 0 -redness%1:26:00:: 14336539 1 0 -redo%2:30:00:: 00199490 2 0 -redo%2:36:00:: 01619725 1 0 -redolence%1:07:00:: 04980463 1 0 -redolent%5:00:00:fragrant:00 01052428 3 0 -redolent%5:00:00:mindful:00 01977669 1 0 -redolent%5:00:00:odorous:00 01056897 2 0 -redonda%1:15:00:: 08710219 1 0 -redouble%2:30:00:: 00290581 1 2 -redouble%2:30:01:: 00227042 3 0 -redouble%2:30:02:: 00246475 2 0 -redoubled%5:00:00:increased:00 00881551 1 1 -redoubt%1:06:00:: 04066388 2 0 -redoubt%1:06:01:: 04066476 1 0 -redoubtable%5:00:00:alarming:00 00195383 1 2 -redoubtable%5:00:00:reputable:00 01983432 2 0 -redound%2:30:00:: 00156027 2 0 -redound%2:30:01:: 00138217 3 0 -redound%2:39:00:: 02137020 1 0 -redox%1:22:00:: 13530799 1 0 -redpoll%1:05:01:: 01531811 2 0 -redpoll%1:05:02:: 01531971 1 0 -redraft%1:21:00:: 13378031 1 0 -redress%1:04:00:: 00259177 2 0 -redress%1:21:00:: 13290676 1 1 -redress%2:41:00:: 02519991 1 1 -redroot%1:20:00:: 11908077 1 0 -redshank%1:05:00:: 02028035 1 0 -redshift%1:19:00:: 11513357 1 0 -redskin%1:18:00:: 09667205 1 0 -redstart%1:05:01:: 01561452 2 0 -redstart%1:05:02:: 01568294 1 0 -redstem_storksbill%1:20:00:: 12688903 1 0 -redtail%1:05:01:: 01607429 1 0 -redtail%1:05:02:: 01561452 2 0 -reduce%2:29:00:: 00045817 20 0 -reduce%2:30:00:: 00429060 1 102 -reduce%2:30:01:: 00233203 11 1 -reduce%2:30:02:: 00236999 18 0 -reduce%2:30:03:: 00237877 10 1 -reduce%2:30:04:: 00240131 9 1 -reduce%2:30:05:: 00241038 7 2 -reduce%2:30:06:: 00242396 2 9 -reduce%2:30:08:: 00243900 16 0 -reduce%2:30:09:: 00226071 19 0 -reduce%2:30:10:: 00237259 17 0 -reduce%2:30:11:: 00237704 6 3 -reduce%2:30:12:: 00587522 15 0 -reduce%2:35:00:: 01558582 13 0 -reduce%2:35:01:: 01499137 14 0 -reduce%2:37:00:: 01800907 5 3 -reduce%2:40:00:: 02317836 8 1 -reduce%2:40:04:: 02258291 4 3 -reduce%2:41:00:: 02399888 3 5 -reduce%2:41:03:: 02424128 12 0 -reduced%3:00:04:: 00881735 1 6 -reduced%5:00:00:low:02 01213090 2 1 -reduced_instruction_set_computer%1:07:00:: 04932875 1 0 -reduced_instruction_set_computing%1:07:00:: 04932875 1 0 -reducer%1:06:00:: 04066659 2 0 -reducer%1:27:00:: 14780267 1 0 -reducible%3:00:00:: 00883611 1 0 -reducing%1:22:00:: 13547677 1 1 -reducing%1:22:01:: 13547513 2 0 -reducing_agent%1:27:00:: 14780267 1 0 -reducing_diet%1:13:00:: 07564629 1 0 -reductant%1:27:00:: 14780267 1 0 -reductase%1:27:00:: 15003645 1 0 -reductio%1:09:00:: 05824985 1 0 -reductio_ad_absurdum%1:09:00:: 05824985 1 0 -reduction%1:04:00:: 00351638 1 16 -reduction%1:04:02:: 00192300 3 1 -reduction%1:22:00:: 13547677 2 3 -reduction_division%1:22:00:: 13512725 1 0 -reduction_gear%1:06:00:: 04066767 1 0 -reductionism%1:09:01:: 05782563 1 0 -reductionism%1:09:02:: 05782448 2 0 -reductionist%3:01:00:: 02979593 1 0 -reductive%5:00:00:subtractive:00 00050446 1 0 -reductivism%1:14:00:: 08469233 1 0 -redundance%1:07:00:: 05120310 1 0 -redundancy%1:04:00:: 01019248 4 0 -redundancy%1:07:00:: 05120310 2 1 -redundancy%1:09:00:: 05730163 3 0 -redundancy%1:10:00:: 07090938 1 1 -redundancy_check%1:09:00:: 05825942 1 0 -redundant%5:00:00:unnecessary:00 01581305 1 2 -redundant%5:00:02:prolix:00 00549826 2 0 -reduplicate%2:36:00:: 01734502 2 0 -reduplicate%2:36:01:: 01735556 1 0 -reduplication%1:04:00:: 01019372 4 0 -reduplication%1:10:00:: 06303150 3 0 -reduplication%1:10:01:: 06305610 2 0 -reduplication%1:10:02:: 07099598 1 0 -reduviid%1:05:00:: 02244173 1 0 -reduviidae%1:05:00:: 02244007 1 0 -redux%5:00:00:revived:00 02013630 1 0 -redwing%1:05:01:: 01558461 2 0 -redwing%1:05:02:: 01575401 1 0 -redwood%1:20:00:: 11640645 2 0 -redwood%1:20:02:: 11640898 1 0 -redwood_family%1:20:00:: 11639609 1 0 -redwood_national_park%1:15:00:: 08608641 1 0 -redwood_penstemon%1:20:00:: 12885510 1 0 -reecho%2:32:00:: 00958078 3 0 -reecho%2:39:00:: 02184265 2 0 -reecho%2:39:01:: 02184394 1 1 -reechoing%5:00:00:reverberant:00 02009993 1 0 -reed%1:06:00:: 02817799 5 0 -reed%1:06:01:: 04066888 4 0 -reed%1:18:00:: 11256335 3 0 -reed%1:18:01:: 11256494 2 0 -reed%1:20:00:: 12136720 1 0 -reed_bunting%1:05:00:: 01538059 1 0 -reed_canary_grass%1:20:00:: 12129738 1 0 -reed_grass%1:20:00:: 12112918 1 0 -reed_instrument%1:06:00:: 02817799 1 0 -reed_mace%1:20:00:: 12155773 1 0 -reed_meadow_grass%1:20:00:: 12122442 1 0 -reed_organ%1:06:00:: 03494537 1 0 -reed_pipe%1:06:00:: 04067143 1 0 -reed_rhapis%1:20:00:: 12596345 1 0 -reed_section%1:14:00:: 08217865 1 0 -reed_stop%1:06:00:: 04067231 1 0 -reedbird%1:05:01:: 01573898 1 0 -reedbird%1:05:02:: 01565599 2 0 -reedlike%5:00:00:thin:03 00989830 1 0 -reedmace%1:20:00:: 12155773 1 0 -reedy%5:00:00:noisy:00 01921639 1 0 -reedy%5:00:00:thin:03 00989830 2 0 -reef%1:06:00:: 03458961 3 0 -reef%1:15:00:: 09001881 2 0 -reef%1:17:00:: 09406793 1 1 -reef%2:30:00:: 00436185 2 0 -reef%2:30:01:: 00241399 3 0 -reef%2:38:02:: 01973636 1 0 -reef_knot%1:06:00:: 04067353 1 0 -reef_squirrelfish%1:05:00:: 01450950 1 0 -reef_whitetip_shark%1:05:00:: 01493146 1 0 -reefer%1:06:00:: 03600806 1 0 -reefy%5:00:00:shallow:01 00692548 1 0 -reek%1:09:00:: 05714894 1 0 -reek%2:29:00:: 00068627 3 1 -reek%2:39:00:: 02124106 2 1 -reek%2:39:13:: 02194723 1 1 -reek%2:43:00:: 02768120 4 0 -reeking%5:00:00:malodorous:00 01054832 2 0 -reeking%5:00:00:wet:01 02549857 1 1 -reel%1:04:00:: 00540211 5 0 -reel%1:04:01:: 00539674 6 0 -reel%1:06:00:: 02860415 4 0 -reel%1:06:01:: 04067472 3 0 -reel%1:06:02:: 04067658 1 3 -reel%1:10:00:: 07056680 2 0 -reel%2:35:00:: 01523105 3 0 -reel%2:38:00:: 01924882 1 2 -reel%2:38:03:: 02046755 2 1 -reel_off%2:32:00:: 00945648 2 0 -reel_off%2:35:00:: 01523520 1 0 -reelect%2:41:00:: 02401296 1 3 -reelection%1:04:00:: 00181373 1 1 -reeler%1:18:00:: 10514051 2 0 -reeler%1:18:01:: 10645854 1 0 -reenact%2:36:00:: 01722447 3 0 -reenact%2:36:01:: 01722815 1 2 -reenact%2:41:00:: 02428202 2 1 -reenactment%1:04:00:: 00551913 1 0 -reenactor%1:18:00:: 10514121 1 0 -reenforce%2:30:00:: 00222472 1 1 -reenforcement%1:04:00:: 00971463 2 0 -reenforcement%1:10:00:: 06650238 1 1 -reenlistment%1:04:00:: 01207108 1 0 -reentering_angle%1:25:00:: 13890064 1 0 -reentering_polygon%1:25:00:: 13867005 1 0 -reentrant%3:00:00:: 02592015 1 0 -reentrant_angle%1:25:00:: 13890064 1 0 -reentrant_polygon%1:25:00:: 13867005 1 0 -reentry%1:04:00:: 00328230 1 0 -reestablish%2:41:00:: 02426799 1 1 -reevaluate%2:31:00:: 00682781 1 1 -reevaluation%1:09:00:: 05737025 1 1 -reeve%1:05:00:: 02030224 1 0 -reeve%2:35:00:: 01341897 3 0 -reeve%2:38:00:: 02053381 2 0 -reeve%2:38:01:: 02053621 1 0 -reexamination%1:04:00:: 00143251 2 0 -reexamination%1:10:01:: 07195404 1 0 -reexamine%2:31:00:: 00696189 1 3 -ref%1:18:00:: 10514429 1 0 -refabrication%1:04:00:: 00269856 1 0 -reface%2:35:00:: 01272139 1 0 -reface%2:35:01:: 01271778 2 0 -refashion%2:36:01:: 01619725 1 1 -refection%1:13:00:: 07574426 1 0 -refectory%1:06:00:: 04067818 1 1 -refectory_table%1:06:00:: 04067921 1 0 -refer%2:31:00:: 00655555 3 12 -refer%2:32:00:: 00931467 6 3 -refer%2:32:01:: 01024190 1 21 -refer%2:32:04:: 01028294 7 0 -refer%2:32:12:: 00877083 5 4 -refer%2:38:00:: 01952898 4 6 -refer%2:42:00:: 02676054 2 18 -referable%5:00:00:attributable:00 00171872 1 0 -referee%1:18:00:: 10514429 1 1 -referee%1:18:01:: 10526927 2 0 -referee%1:18:02:: 10514643 3 0 -referee%2:32:00:: 00855794 2 0 -referee%2:33:00:: 01085237 1 0 -refereeing%1:04:00:: 01191755 1 0 -reference%1:04:00:: 01264050 7 2 -reference%1:09:00:: 05922949 6 3 -reference%1:09:01:: 05923314 10 0 -reference%1:10:01:: 06694796 5 4 -reference%1:10:02:: 06766190 1 9 -reference%1:10:03:: 06763681 2 6 -reference%1:10:04:: 06417598 4 5 -reference%1:10:06:: 07258332 3 5 -reference%1:10:07:: 07258664 8 0 -reference%1:10:08:: 06356515 9 0 -reference%2:36:00:: 01705257 1 0 -reference_book%1:10:00:: 06417598 1 0 -reference_frame%1:09:00:: 05728024 1 0 -reference_grid%1:06:00:: 03459159 1 0 -reference_manual%1:10:00:: 06422364 1 0 -reference_point%1:10:00:: 07258332 1 0 -reference_system%1:09:00:: 05728024 1 0 -reference_work%1:10:00:: 06417598 1 0 -referenced%5:00:00:documented:00 00786485 1 0 -referendum%1:04:00:: 00181640 1 1 -referent%1:10:00:: 06603494 1 0 -referent%1:10:01:: 06603242 2 0 -referent%1:10:02:: 06603130 3 0 -referent%5:00:00:denotative:00 00722886 1 0 -referential%5:00:00:denotative:00 00723015 1 0 -referral%1:04:00:: 00121904 3 0 -referral%1:10:00:: 06672040 2 0 -referral%1:18:00:: 10514255 1 0 -referred_pain%1:26:00:: 14331373 1 0 -refill%1:06:00:: 04068055 2 0 -refill%1:06:01:: 04068261 1 0 -refill%2:30:00:: 00453803 1 1 -refilling%1:22:00:: 13547925 1 0 -refinance%2:40:00:: 02218546 1 1 -refine%2:30:00:: 00474492 4 0 -refine%2:30:01:: 00474017 1 2 -refine%2:30:02:: 00474762 3 0 -refine%2:30:03:: 00401906 5 0 -refine%2:30:05:: 00401688 6 0 -refine%2:30:06:: 00400883 2 1 -refined%3:00:01:: 01947266 1 2 -refined%3:00:02:: 01953297 2 1 -refined%5:00:00:elegant:00 00850648 5 0 -refined%5:00:00:gracious:00 01142069 4 0 -refined%5:00:00:sophisticated:00 02271177 3 0 -refined_sugar%1:13:00:: 07859284 1 0 -refinement%1:07:01:: 04811995 5 0 -refinement%1:10:00:: 06606191 4 0 -refinement%1:11:00:: 07357679 2 1 -refinement%1:22:00:: 13548105 3 0 -refinement%1:26:00:: 14459824 1 1 -refiner%1:18:00:: 10514784 1 0 -refinery%1:06:00:: 04068441 1 0 -refining%1:22:00:: 13548105 1 0 -refining_industry%1:14:00:: 08069050 1 0 -refinish%2:35:00:: 01265246 1 0 -refinisher%1:18:00:: 10514962 1 0 -refit%1:04:00:: 01157275 1 0 -refit%2:40:00:: 02341592 1 0 -reflate%2:30:00:: 00256283 4 0 -reflate%2:30:01:: 00264285 3 0 -reflate%2:30:04:: 00563100 2 0 -reflate%2:30:05:: 00563360 1 0 -reflation%1:22:00:: 13548350 1 0 -reflect%2:31:00:: 00630380 2 18 -reflect%2:32:00:: 00821580 7 0 -reflect%2:32:01:: 00821765 6 0 -reflect%2:39:00:: 02136271 3 17 -reflect%2:39:01:: 02136892 1 41 -reflect%2:39:02:: 02136754 5 0 -reflect%2:43:00:: 02765924 4 5 -reflectance%1:23:00:: 13588819 1 1 -reflected%3:00:00:: 02008615 1 0 -reflecting%5:00:00:reflective:00 02008245 1 0 -reflecting_telescope%1:06:00:: 04068601 1 0 -reflection%1:06:00:: 04068976 5 2 -reflection%1:07:01:: 05010627 8 0 -reflection%1:07:02:: 04747115 4 2 -reflection%1:09:00:: 05785508 1 8 -reflection%1:10:00:: 06767035 7 0 -reflection%1:10:01:: 06880249 3 4 -reflection%1:19:00:: 11503060 2 4 -reflection%1:24:00:: 13785404 6 0 -reflection_factor%1:23:00:: 13588819 1 0 -reflective%3:00:00:: 02007882 2 0 -reflective%5:00:00:intellectual:00 01333331 3 0 -reflective%5:00:00:thoughtful:00 02419434 1 3 -reflective_power%1:24:00:: 13820432 1 0 -reflectively%4:02:00:: 00440009 1 1 -reflectiveness%1:07:00:: 04661546 1 0 -reflectivity%1:07:00:: 05010627 2 0 -reflectivity%1:07:01:: 04661546 3 0 -reflectivity%1:23:00:: 13588819 1 0 -reflectometer%1:06:00:: 04069166 1 0 -reflector%1:06:00:: 04069276 1 6 -reflector%1:06:01:: 04068601 2 1 -reflectorise%2:40:00:: 02360702 1 0 -reflectorize%2:40:00:: 02360702 1 0 -reflex%1:04:00:: 00863513 1 5 -reflex%5:00:00:involuntary:02 02522669 1 0 -reflex_action%1:04:00:: 00863513 1 0 -reflex_angle%1:25:00:: 13892562 1 0 -reflex_arc%1:08:00:: 05463449 1 0 -reflex_camera%1:06:00:: 04069434 1 0 -reflex_epilepsy%1:26:00:: 14090245 1 0 -reflex_response%1:04:00:: 00863513 1 0 -reflexed%5:00:00:crooked:01 02313563 1 0 -reflexion%1:06:00:: 04068976 7 0 -reflexion%1:07:01:: 05010627 5 0 -reflexion%1:07:02:: 04747115 6 0 -reflexion%1:09:00:: 05785508 4 0 -reflexion%1:10:00:: 06767035 3 0 -reflexion%1:10:01:: 06880249 2 0 -reflexion%1:19:00:: 11503060 1 0 -reflexive%1:10:00:: 06328207 1 0 -reflexive%5:00:00:backward:01 00202508 2 0 -reflexive%5:00:00:involuntary:02 02522669 1 0 -reflexive_pronoun%1:10:00:: 06328207 1 0 -reflexive_verb%1:10:00:: 06328386 1 0 -reflexiveness%1:24:00:: 13799245 1 0 -reflexiveness%1:24:01:: 13798814 2 0 -reflexivity%1:24:00:: 13799245 1 0 -reflexivity%1:24:01:: 13798814 2 0 -reflexly%4:02:00:: 00191776 1 2 -reflexology%1:04:00:: 00659946 2 0 -reflexology%1:09:00:: 06141197 1 0 -refloat%2:38:00:: 01875036 1 0 -reflux%1:11:00:: 07402147 2 0 -reflux%1:26:00:: 14336004 1 0 -reflux_condenser%1:06:00:: 04069582 1 0 -refocus%2:30:01:: 00314605 3 0 -refocus%2:31:00:: 00732091 2 0 -refocus%2:39:00:: 02162162 1 0 -refocusing%1:04:00:: 00375938 1 1 -reforest%2:35:00:: 01568346 1 0 -reforestation%1:04:00:: 00400449 1 0 -reforge%2:36:00:: 01658586 1 0 -reform%1:04:00:: 00260622 1 3 -reform%1:04:01:: 00800940 2 1 -reform%1:04:02:: 00261405 3 0 -reform%2:30:00:: 00265386 1 1 -reform%2:30:01:: 00265941 4 0 -reform%2:30:02:: 00266081 3 0 -reform%2:30:03:: 00167934 6 0 -reform%2:30:04:: 00384620 2 0 -reform%2:30:08:: 00265673 5 0 -reform-minded%5:00:00:liberal:00 00576189 1 0 -reform_jew%1:18:00:: 10515863 1 0 -reform_judaism%1:09:00:: 06234728 2 0 -reform_judaism%1:14:00:: 08095426 1 0 -reform_movement%1:14:00:: 08473623 1 1 -reform_school%1:06:00:: 04069777 1 0 -reformable%5:00:00:corrigible:00 00635327 1 0 -reformation%1:04:01:: 00095971 3 0 -reformation%1:14:00:: 08475929 2 0 -reformation%1:26:00:: 14424087 1 0 -reformative%5:00:00:helpful:00 01197386 1 0 -reformatory%1:06:00:: 04069777 1 0 -reformatory%5:00:00:helpful:00 01197386 1 0 -reformed%5:00:00:regenerate:00 01957312 2 0 -reformed%5:00:00:unorthodox:00 01691975 1 1 -reformer%1:06:00:: 04070003 2 0 -reformer%1:18:00:: 10515194 1 0 -reformism%1:09:00:: 05967097 1 0 -reformist%1:18:00:: 10515194 1 0 -reformist%5:00:00:liberal:00 00576189 1 0 -reformulate%2:32:00:: 00926310 1 0 -refract%2:32:00:: 00920929 2 0 -refract%2:39:00:: 02111838 1 0 -refractile%3:01:00:: 02788005 1 0 -refracting_telescope%1:06:00:: 04070207 1 0 -refraction%1:11:00:: 07410883 2 0 -refraction%1:19:00:: 11503287 1 0 -refractive%3:01:00:: 02788005 1 0 -refractive%5:00:00:crooked:01 02312918 2 0 -refractive_index%1:24:00:: 13824929 1 0 -refractiveness%1:07:00:: 05011568 1 0 -refractivity%1:07:00:: 05011568 1 0 -refractometer%1:06:00:: 04070415 1 0 -refractoriness%1:07:00:: 04907575 1 0 -refractory%1:06:00:: 03404900 1 0 -refractory%5:00:00:disobedient:00 01614127 3 0 -refractory%5:00:00:unresponsive:00 01999941 2 0 -refractory%5:00:02:intractable:00 02452562 1 0 -refractory-lined%3:01:00:: 02788252 1 0 -refractory_anaemia%1:26:00:: 14168176 1 0 -refractory_anemia%1:26:00:: 14168176 1 0 -refractory_period%1:28:00:: 15227391 1 0 -refractory_pot%1:06:00:: 02868975 1 0 -refracture%2:29:00:: 00108121 1 0 -refrain%1:10:00:: 07050177 1 3 -refrain%2:34:00:: 01196037 2 0 -refrain%2:42:00:: 02725714 1 1 -refresh%2:29:00:: 00024649 4 0 -refresh%2:29:02:: 00024814 3 0 -refresh%2:30:00:: 00164444 2 0 -refresh%2:31:00:: 00696852 1 0 -refreshed%5:00:00:rested:00 02434797 1 3 -refreshen%2:29:00:: 00024814 1 0 -refreshen%2:29:01:: 00024649 2 0 -refresher%1:04:00:: 00891850 3 0 -refresher%1:13:00:: 07914128 2 0 -refresher%1:21:00:: 13322343 1 0 -refresher_course%1:04:00:: 00891850 1 0 -refreshful%5:00:00:invigorating:00 01357027 1 0 -refreshfully%4:02:00:: 00440250 1 0 -refreshing%5:00:00:invigorating:00 01357027 1 2 -refreshing%5:00:00:new:00 01642245 2 0 -refreshingly%4:02:00:: 00440121 2 0 -refreshingly%4:02:01:: 00440250 1 0 -refreshment%1:04:00:: 00401783 2 0 -refreshment%1:13:00:: 07574504 1 0 -refried_beans%1:13:00:: 07881625 1 0 -refrigerant%1:27:00:: 15003797 1 0 -refrigerant%5:00:00:cold:01 01253661 1 0 -refrigerate%2:30:00:: 00371051 2 0 -refrigerate%2:30:01:: 00371955 1 0 -refrigerated%5:00:00:cold:01 01253879 1 1 -refrigerating%5:00:00:cold:01 01253661 1 0 -refrigeration%1:04:00:: 00707344 2 0 -refrigeration%1:22:00:: 13548531 1 2 -refrigeration_system%1:06:00:: 04070545 1 0 -refrigerator%1:06:00:: 04070727 1 2 -refrigerator_car%1:06:00:: 04070964 1 0 -refrigerator_cookie%1:13:00:: 07637508 1 0 -refuel%2:40:00:: 02236888 2 1 -refuel%2:40:01:: 02338729 1 2 -refueling%1:04:00:: 01059719 1 1 -refuge%1:04:00:: 01208597 4 0 -refuge%1:06:00:: 04071102 3 0 -refuge%1:07:00:: 05155123 2 0 -refuge%1:15:00:: 08643933 1 0 -refugee%1:18:00:: 10516016 1 5 -refugee_camp%1:06:00:: 02945813 1 0 -refulgence%1:07:00:: 04953954 1 0 -refulgency%1:07:00:: 04953954 1 0 -refulgent%5:00:00:bright:00 00280463 1 0 -refund%1:04:00:: 01121690 2 1 -refund%1:21:00:: 13282161 1 7 -refund%2:40:00:: 02284951 1 1 -refurbish%2:30:00:: 00163441 1 1 -refurbishment%1:26:00:: 14424517 1 0 -refurnish%2:40:00:: 02336807 1 0 -refusal%1:10:00:: 06634095 2 1 -refusal%1:10:01:: 07205573 1 4 -refuse%1:27:00:: 14857151 1 1 -refuse%2:32:00:: 00797430 1 47 -refuse%2:40:00:: 02237338 2 13 -refuse%2:40:01:: 02212825 4 2 -refuse%2:41:00:: 02502916 6 0 -refuse%2:42:00:: 02707800 3 5 -refuse%2:42:04:: 02755017 5 0 -refuse_collector%1:18:00:: 10120330 1 0 -refuse_heap%1:15:00:: 08573842 1 0 -refutable%5:00:00:deniable:00 00721371 1 0 -refutal%1:04:00:: 00155298 1 0 -refutation%1:04:00:: 00155298 3 0 -refutation%1:09:00:: 05826469 2 0 -refutation%1:10:00:: 07200813 1 0 -refute%2:31:00:: 00667747 2 1 -refute%2:32:00:: 00814850 1 2 -refuter%1:18:00:: 10510546 1 0 -regain%2:40:00:: 02247977 1 5 -regain%2:40:01:: 02285629 2 0 -regaining%1:04:00:: 00089351 1 0 -regal%5:00:00:noble:02 01591394 1 1 -regale%2:34:00:: 01176232 1 1 -regalecidae%1:05:00:: 02546744 1 0 -regalecus_glesne%1:05:00:: 02547014 1 0 -regalia%1:06:02:: 04071263 1 0 -regalia%1:06:03:: 02742322 2 0 -regally%4:02:00:: 00440412 1 0 -regard%1:04:00:: 00878648 4 1 -regard%1:09:00:: 05820170 1 4 -regard%1:09:01:: 05702726 2 2 -regard%1:09:02:: 06206800 7 0 -regard%1:10:00:: 06630627 3 1 -regard%1:12:02:: 07545415 6 0 -regard%1:26:00:: 14437552 5 0 -regard%2:31:00:: 00690614 1 33 -regard%2:39:00:: 02133185 2 19 -regard%2:42:00:: 02677097 3 12 -regard_as%2:31:00:: 00689950 1 31 -regardant%5:00:00:backward:01 00202677 1 1 -regardful%5:00:00:respectful:00 01994180 1 0 -regardless%4:02:00:: 00118531 1 12 -regardless%5:00:00:heedless:00 01194099 1 0 -regatta%1:11:00:: 07468456 1 0 -regency%1:04:00:: 00598970 3 0 -regency%1:28:00:: 15295603 2 0 -regency%1:28:01:: 15298995 1 0 -regenerate%2:29:00:: 00097621 9 0 -regenerate%2:29:01:: 00097941 8 0 -regenerate%2:30:00:: 00167535 7 0 -regenerate%2:30:01:: 00168588 4 0 -regenerate%2:30:02:: 00168393 5 0 -regenerate%2:30:04:: 00167824 6 0 -regenerate%2:30:05:: 00384620 3 0 -regenerate%2:30:06:: 00385189 2 0 -regenerate%2:36:00:: 01631072 1 0 -regenerate%3:00:00:: 01956964 1 0 -regenerating%3:44:00:: 03153255 1 1 -regeneration%1:04:00:: 01047937 3 0 -regeneration%1:04:01:: 00269963 4 0 -regeneration%1:22:00:: 13548734 1 0 -regeneration%1:22:01:: 13539262 2 0 -regent%1:18:00:: 10516117 2 0 -regent%1:18:01:: 10516294 1 0 -regent%5:00:00:powerful:00 01827261 1 0 -reggae%1:10:00:: 07066285 1 0 -reggane%1:15:00:: 08707332 1 0 -regicide%1:04:00:: 00225070 2 0 -regicide%1:18:00:: 10516422 1 0 -regime%1:09:00:: 05909585 2 1 -regime%1:14:00:: 08050678 1 2 -regimen%1:09:00:: 05909585 1 0 -regiment%1:14:00:: 08213817 1 145 -regiment%2:41:00:: 02392961 3 0 -regiment%2:41:01:: 02448886 2 0 -regiment%2:41:02:: 02442372 1 1 -regimental%3:01:00:: 03109663 1 7 -regimentally%4:02:00:: 00511108 1 0 -regimentals%1:06:00:: 04071393 1 0 -regimentation%1:04:00:: 01148283 1 1 -regimented%5:00:00:controlled:00 00599745 1 0 -regina%1:15:00:: 08830005 1 0 -reginald_carey_harrison%1:18:00:: 11031995 1 0 -reginald_joseph_mitchell%1:18:00:: 11182825 1 0 -reginald_marsh%1:18:00:: 11158651 1 0 -regiomontanus%1:18:00:: 11195619 1 0 -region%1:08:00:: 05221895 2 5 -region%1:09:00:: 05997814 5 0 -region%1:15:00:: 08630039 1 65 -region%1:15:01:: 08630985 3 2 -region%1:23:00:: 13759146 4 0 -regional%3:01:00:: 02871858 1 14 -regional%5:00:00:territorial:00 02408977 2 4 -regional_anaesthesia%1:26:00:: 14027674 1 0 -regional_anatomy%1:09:00:: 06060463 1 0 -regional_anesthesia%1:26:00:: 14027674 1 0 -regional_enteritis%1:26:00:: 14305990 1 0 -regional_ileitis%1:26:00:: 14305990 1 0 -regionalism%1:07:00:: 04878434 3 0 -regionalism%1:10:00:: 07156497 1 0 -regionalism%1:10:01:: 06662850 2 0 -regionally%4:02:00:: 00135567 1 1 -register%1:06:00:: 04071536 6 0 -register%1:06:01:: 04071712 5 0 -register%1:06:02:: 02977438 7 0 -register%1:06:03:: 04071876 4 0 -register%1:07:00:: 05126849 2 1 -register%1:10:00:: 06507041 1 2 -register%1:21:00:: 13412321 3 0 -register%2:31:00:: 00728224 10 0 -register%2:32:00:: 00922867 5 2 -register%2:32:03:: 01001857 2 6 -register%2:32:05:: 01032326 9 0 -register%2:36:00:: 01726605 8 0 -register%2:39:00:: 02105810 4 3 -register%2:39:01:: 02139740 7 0 -register%2:41:00:: 02471690 1 7 -register%2:41:01:: 02471087 3 4 -register%2:41:05:: 02472033 6 1 -register_language%1:10:00:: 06905243 1 1 -registered%3:00:00:: 01958027 2 0 -registered%3:00:02:: 01958898 1 0 -registered%5:00:00:documented:00 00786624 3 0 -registered_bond%1:21:00:: 13339325 1 0 -registered_mail%1:10:00:: 06623316 1 0 -registered_nurse%1:18:00:: 10516527 1 0 -registered_post%1:10:00:: 06623316 1 0 -registered_representative%1:18:00:: 09761753 1 0 -registered_security%1:21:00:: 13340579 1 0 -registrant%1:18:00:: 10516692 1 8 -registrar%1:18:00:: 10516874 3 0 -registrar%1:18:01:: 10517032 2 0 -registrar%1:18:03:: 10517137 1 0 -registration%1:04:00:: 00050037 1 7 -registration%1:04:01:: 00999787 5 0 -registration%1:07:00:: 04987356 4 0 -registration%1:10:00:: 06479374 3 0 -registration%1:14:00:: 08479986 2 0 -registration_fire%1:04:00:: 00993228 1 0 -registration_number%1:10:00:: 06425808 1 0 -registry%1:10:00:: 06507041 1 1 -regius_professor%1:18:00:: 10517283 1 1 -reglaecus%1:05:00:: 02546873 1 0 -regnant%5:00:00:powerful:00 01827432 1 0 -regnellidium%1:20:00:: 12958615 1 0 -regnellidium_diphyllum%1:20:00:: 12958615 1 0 -regorge%2:29:00:: 00076400 1 0 -regosol%1:27:00:: 14695351 1 0 -regress%1:04:00:: 00235208 2 0 -regress%1:09:00:: 05783768 1 0 -regress%2:29:00:: 00093327 4 0 -regress%2:30:00:: 00249313 3 0 -regress%2:30:01:: 00387310 2 0 -regress%2:30:06:: 00491456 1 0 -regression%1:04:00:: 00235208 4 0 -regression%1:09:00:: 06027264 3 0 -regression%1:22:00:: 13548931 2 0 -regression%1:26:00:: 14503354 1 0 -regression_analysis%1:09:00:: 06028021 1 0 -regression_coefficient%1:09:00:: 06028566 1 0 -regression_curve%1:09:00:: 06029306 1 0 -regression_equation%1:09:00:: 06028260 1 1 -regression_line%1:09:00:: 06029306 1 2 -regression_of_y_on_x%1:09:00:: 06028260 1 0 -regression_toward_the_mean%1:09:00:: 06027264 1 0 -regressive%3:00:01:: 01876957 2 0 -regressive%3:00:02:: 01877919 1 0 -regret%1:12:00:: 07535670 1 5 -regret%2:32:00:: 00911761 3 1 -regret%2:32:02:: 00911562 4 1 -regret%2:37:00:: 01796582 1 8 -regret%2:37:01:: 01796924 2 2 -regretful%3:00:00:: 01150475 1 0 -regretfully%4:02:00:: 00424313 1 1 -regrets%1:10:00:: 06634239 1 0 -regrettable%5:00:00:unfortunate:00 01052038 1 0 -regrettably%4:02:00:: 00042769 1 0 -regroup%2:31:00:: 00656825 2 0 -regroup%2:41:00:: 02433381 1 1 -regrow%2:29:00:: 00095012 1 0 -regular%1:07:00:: 05096972 4 0 -regular%1:18:00:: 10517405 1 1 -regular%1:18:01:: 10517583 3 0 -regular%1:18:02:: 10517743 2 0 -regular%3:00:00:: 01959294 1 17 -regular%3:00:01:: 01961937 9 0 -regular%3:00:02:: 01970777 8 0 -regular%3:00:06:: 00638501 10 0 -regular%5:00:00:frequent:00 01067003 7 1 -regular%5:00:00:full-time:00 01089275 13 0 -regular%5:00:00:normal:01 01595312 12 0 -regular%5:00:00:scheduled:00 02366927 4 2 -regular%5:00:00:standard:02 02296632 3 5 -regular%5:00:00:steady:00 02302187 6 1 -regular%5:00:00:symmetrical:00 02372520 11 0 -regular%5:00:00:typical:00 02469577 2 8 -regular%5:00:00:usual:00 00489863 5 2 -regular_army%1:14:00:: 08191230 1 3 -regular_convex_polyhedron%1:25:00:: 13915999 1 0 -regular_convex_solid%1:25:00:: 13915999 1 0 -regular_dodecahedron%1:25:00:: 13917094 1 0 -regular_hexagon%1:25:00:: 13882385 1 0 -regular_hexahedron%1:25:00:: 13916721 1 0 -regular_icosahedron%1:25:00:: 13917334 1 0 -regular_octahedron%1:25:00:: 13917214 1 0 -regular_payment%1:21:00:: 13281275 1 0 -regular_polygon%1:25:00:: 13867133 1 0 -regular_polyhedron%1:25:00:: 13915999 1 0 -regular_recurrence%1:07:00:: 04768028 1 0 -regular_tetrahedron%1:25:00:: 13916603 1 0 -regularisation%1:04:00:: 00806902 2 0 -regularisation%1:26:00:: 13925015 1 0 -regularise%2:30:00:: 00275607 2 0 -regularise%2:41:00:: 02511551 1 0 -regularity%1:07:00:: 04767347 2 1 -regularity%1:07:04:: 05065211 1 1 -regularization%1:04:00:: 00806902 2 0 -regularization%1:26:00:: 13925015 1 0 -regularize%2:30:00:: 00275607 2 0 -regularize%2:41:00:: 02511551 1 0 -regularly%4:02:00:: 00195024 1 6 -regularly%4:02:01:: 00331461 3 0 -regularly%4:02:03:: 00331817 2 0 -regulate%2:30:00:: 00299341 1 6 -regulate%2:30:01:: 00234988 4 0 -regulate%2:31:00:: 00701040 3 1 -regulate%2:41:01:: 02511551 2 4 -regulated%3:00:00:: 01962310 1 1 -regulating%1:04:00:: 00805034 1 0 -regulation%1:04:00:: 00805034 6 0 -regulation%1:04:01:: 00806902 5 0 -regulation%1:09:00:: 05846054 2 2 -regulation%1:10:00:: 06664051 1 10 -regulation%1:22:00:: 13549105 4 0 -regulation%1:26:00:: 14443434 3 0 -regulation%5:00:00:standard:02 02296824 1 1 -regulation_time%1:28:00:: 15233778 1 0 -regulative%5:00:00:restrictive:00 02004685 1 0 -regulator%1:06:00:: 04072193 1 1 -regulator%1:06:01:: 03450018 3 0 -regulator%1:18:00:: 10517826 2 0 -regulator_gene%1:08:00:: 05441053 1 0 -regulatory%5:00:00:restrictive:00 02004685 1 1 -regulatory_agency%1:14:00:: 08353406 1 0 -regulatory_authority%1:14:00:: 08353406 1 0 -regulatory_gene%1:08:00:: 05441053 1 0 -regulatory_offence%1:04:00:: 00774796 1 0 -regulatory_offense%1:04:00:: 00774796 1 0 -regulus%1:05:00:: 01563579 2 0 -regulus%1:17:00:: 09406944 1 0 -regulus_calendula%1:05:00:: 01564217 1 0 -regulus_regulus%1:05:00:: 01563945 1 0 -regulus_satrata%1:05:00:: 01564101 1 0 -regur%1:27:00:: 14695497 1 0 -regur_soil%1:27:00:: 14695497 1 0 -regurgitate%2:29:00:: 00076400 4 0 -regurgitate%2:32:00:: 00959178 3 0 -regurgitate%2:34:00:: 01178335 2 0 -regurgitate%2:38:00:: 02069396 1 0 -regurgitation%1:04:00:: 00118733 3 0 -regurgitation%1:09:00:: 05762671 2 0 -regurgitation%1:11:00:: 07406474 1 0 -rehabilitate%2:41:00:: 02552163 1 1 -rehabilitate%2:41:01:: 02565272 2 0 -rehabilitate%2:41:03:: 02552829 3 0 -rehabilitation%1:04:00:: 00269018 2 2 -rehabilitation%1:04:01:: 00400645 1 7 -rehabilitation%1:04:02:: 00700260 4 0 -rehabilitation%1:04:03:: 01241997 3 0 -rehabilitation_program%1:09:00:: 05900583 1 2 -rehabilitative%3:00:00:: 01903412 1 0 -rehabilitative%5:00:00:constructive:00 00585856 2 0 -reharmonisation%1:10:00:: 07027651 1 0 -reharmonise%2:36:00:: 01707128 1 0 -reharmonization%1:10:00:: 07027651 1 1 -reharmonize%2:36:00:: 01707128 1 0 -rehash%1:10:00:: 06635759 1 0 -rehash%2:32:00:: 01009097 2 0 -rehash%2:34:00:: 01162629 1 1 -rehear%2:41:00:: 02501159 1 0 -rehearing%1:04:00:: 00882460 1 1 -rehearsal%1:04:00:: 00896832 2 0 -rehearsal%1:04:01:: 00897026 1 6 -rehearse%2:36:00:: 01723224 1 5 -reheat%2:30:00:: 00544280 1 0 -reheel%2:30:00:: 00533671 1 0 -rehnquist%1:18:00:: 11256765 1 0 -rehouse%2:41:00:: 02459532 1 0 -reich%1:14:00:: 08169573 1 1 -reich%1:18:00:: 11257031 3 0 -reich%1:18:01:: 11257159 2 0 -reichstein%1:18:00:: 11257395 1 0 -reid%1:18:00:: 11257547 1 0 -reification%1:04:00:: 00932804 1 0 -reification%1:04:01:: 00932298 2 0 -reify%2:31:00:: 00692580 1 0 -reign%1:26:00:: 14443532 3 0 -reign%1:28:00:: 15260814 2 0 -reign%1:28:01:: 15260964 1 1 -reign%2:41:00:: 02587375 1 3 -reign%2:42:00:: 02644234 2 1 -reign_of_terror%1:28:00:: 15260436 2 0 -reign_of_terror%1:28:01:: 15260651 1 0 -reigning%5:00:00:powerful:00 01827432 1 0 -reignite%2:43:00:: 02760344 1 0 -reimburse%2:40:00:: 02285205 1 1 -reimburse%2:40:01:: 02249591 2 0 -reimbursement%1:21:00:: 13290002 1 1 -reimpose%2:40:00:: 02307140 1 0 -reimposition%1:04:00:: 01148398 1 0 -reims%1:15:00:: 08937594 1 0 -rein%1:06:00:: 04072551 1 5 -rein%1:07:00:: 05197574 2 0 -rein%2:30:00:: 00234857 4 0 -rein%2:38:00:: 01862090 2 0 -rein%2:38:01:: 01858362 3 0 -rein%2:41:00:: 02442737 1 1 -rein_in%2:38:00:: 01862090 1 2 -rein_in%2:38:01:: 01858362 3 0 -rein_in%2:41:00:: 02442737 2 0 -rein_orchid%1:20:00:: 12065777 1 0 -rein_orchis%1:20:00:: 12065777 1 0 -reincarnate%2:30:00:: 00167652 2 0 -reincarnate%2:42:00:: 02698726 1 0 -reincarnate%5:00:00:corporeal:00 00630727 1 0 -reincarnation%1:09:00:: 06191212 3 0 -reincarnation%1:11:00:: 07321247 2 0 -reincarnation%1:18:00:: 10518003 1 0 -reincarnationism%1:09:00:: 05968553 1 0 -reindeer%1:05:00:: 02433925 1 0 -reindeer_lichen%1:20:00:: 12991184 1 0 -reindeer_moss%1:20:00:: 12991184 1 0 -reinforce%2:30:00:: 00222472 1 11 -reinforce%2:32:00:: 00787660 2 1 -reinforced%5:00:00:improved:00 01288690 2 0 -reinforced%5:00:00:strong:00 02323358 1 0 -reinforced_concrete%1:27:00:: 14804797 1 2 -reinforcement%1:04:00:: 01219551 5 0 -reinforcement%1:04:01:: 00971463 1 4 -reinforcement%1:06:00:: 04336034 4 0 -reinforcement%1:09:00:: 05828552 3 0 -reinforcement%1:10:00:: 06650238 2 0 -reinforcer%1:09:00:: 05828552 1 0 -reinforcing_stimulus%1:09:00:: 05828552 1 0 -reinhold_niebuhr%1:18:00:: 11206885 1 0 -reinstall%2:35:00:: 01570258 1 1 -reinstate%2:41:00:: 02553262 1 1 -reinstate%2:41:01:: 02426799 2 0 -reinstatement%1:04:00:: 00401459 2 0 -reinstatement%1:26:00:: 13944914 1 0 -reinsurance%1:21:00:: 13348456 1 0 -reinsure%2:32:00:: 00891734 2 0 -reinsure%2:32:01:: 00891541 3 0 -reinsure%2:40:00:: 02251509 1 0 -reintegrate%2:30:00:: 00398349 1 0 -reinterpret%2:31:00:: 00624140 2 0 -reinterpret%2:32:00:: 00938899 1 2 -reinterpretation%1:04:00:: 00100889 2 0 -reinterpretation%1:09:00:: 05928733 1 0 -reintroduce%2:32:00:: 00901464 1 0 -reintroduction%1:10:00:: 07217673 1 0 -reinvent%2:36:00:: 01737778 2 0 -reinvent%2:36:01:: 01737923 1 0 -reinvigorate%2:29:00:: 00028362 1 0 -reinvigorated%5:00:00:rested:00 02434797 1 0 -reissue%1:10:00:: 06270308 1 1 -reissue%2:36:00:: 01736098 1 1 -reissue%2:41:00:: 02479701 2 0 -reit%1:14:00:: 08072287 1 0 -reiter%1:18:00:: 11257697 1 0 -reiter's_disease%1:26:00:: 14309183 1 0 -reiter's_syndrome%1:26:00:: 14309183 1 0 -reiterate%2:32:00:: 00958334 1 5 -reiteration%1:04:00:: 01019372 1 0 -reiterative%5:00:00:repetitive:00 01964632 1 0 -reithrodontomys%1:05:00:: 02336129 1 0 -reject%1:09:00:: 05790572 1 0 -reject%2:31:00:: 00685683 1 19 -reject%2:31:02:: 00685419 7 0 -reject%2:32:00:: 00807178 3 2 -reject%2:32:02:: 00796976 4 1 -reject%2:40:00:: 02237338 2 15 -reject%2:41:00:: 02502916 6 0 -reject%2:42:04:: 02755017 5 0 -rejected%5:00:00:unloved:00 01463735 1 0 -rejection%1:04:00:: 00203342 1 5 -rejection%1:10:00:: 07207273 4 0 -rejection%1:19:00:: 11505318 3 0 -rejection%1:26:00:: 13937554 2 1 -rejective%3:00:00:: 00076341 1 0 -rejig%2:40:00:: 02341491 1 0 -rejoice%2:32:00:: 00857923 2 2 -rejoice%2:37:00:: 01813884 1 4 -rejoice%2:37:02:: 01823370 3 1 -rejoicing%1:10:00:: 07129422 2 0 -rejoicing%1:12:00:: 07529563 1 2 -rejoicing%5:00:00:elated:00 00704898 1 1 -rejoicing_in_the_law%1:28:00:: 15197302 1 0 -rejoicing_of_the_law%1:28:00:: 15197302 1 0 -rejoicing_over_the_law%1:28:00:: 15197302 1 0 -rejoin%2:32:00:: 00816353 2 1 -rejoin%2:41:00:: 02435552 1 3 -rejoinder%1:10:00:: 07199922 1 0 -rejoinder%1:10:01:: 06563324 2 0 -rejuvenate%2:29:00:: 00097781 5 0 -rejuvenate%2:30:00:: 00250877 3 0 -rejuvenate%2:30:03:: 00578862 2 0 -rejuvenate%2:30:04:: 00168588 4 0 -rejuvenate%2:32:02:: 00794383 1 0 -rejuvenation%1:04:00:: 00401639 2 0 -rejuvenation%1:19:00:: 11505546 1 0 -rekindle%2:37:00:: 01760552 2 0 -rekindle%2:43:00:: 02761594 1 0 -relace%2:35:00:: 01521813 1 1 -relafen%1:06:00:: 03804048 1 0 -relapse%1:04:00:: 00068333 1 0 -relapse%2:29:00:: 00093327 2 0 -relapse%2:30:00:: 00268165 1 0 -relapsing%1:04:00:: 00068333 1 0 -relapsing_fever%1:26:00:: 14142459 1 0 -relate%2:31:00:: 00713167 1 15 -relate%2:32:00:: 00953058 3 7 -relate%2:41:00:: 02458103 5 2 -relate%2:42:00:: 02676054 2 9 -relate%2:42:01:: 02724417 4 4 -related%3:00:01:: 01971237 2 4 -related%3:00:02:: 01972820 1 20 -related_to%3:00:00:: 01972820 1 12 -relatedness%1:24:00:: 13795489 1 1 -relatiative%5:00:00:punitive:00 01903160 1 0 -relation%1:03:00:: 00031921 1 23 -relation%1:04:00:: 00040962 6 0 -relation%1:04:01:: 00845523 2 2 -relation%1:09:00:: 05957428 5 0 -relation%1:10:01:: 07222823 4 0 -relation%1:18:00:: 10235549 3 0 -relation_back%1:09:00:: 05957428 1 0 -relational%5:00:00:relative:00 00006245 1 0 -relational_adjective%1:10:00:: 06322157 1 0 -relational_database%1:10:00:: 06637973 1 0 -relational_database_management_system%1:10:00:: 06588998 1 0 -relations%1:24:00:: 13780449 1 14 -relationship%1:24:00:: 13780719 1 25 -relationship%1:24:01:: 13812607 4 0 -relationship%1:26:00:: 13928388 2 9 -relationship%1:26:01:: 13928668 3 8 -relative%1:05:00:: 01328302 2 2 -relative%1:18:00:: 10235549 1 8 -relative%3:00:00:: 00006032 1 25 -relative%5:00:00:proportionate:00 00482673 2 1 -relative-in-law%1:18:00:: 10207169 1 0 -relative_atomic_mass%1:07:00:: 05025935 1 0 -relative_clause%1:10:00:: 06315096 1 0 -relative_density%1:07:00:: 05089782 1 0 -relative_frequency%1:24:00:: 13821570 1 2 -relative_humidity%1:24:00:: 13825080 1 1 -relative_incidence%1:24:00:: 13826959 1 0 -relative_majority%1:23:00:: 13581218 1 0 -relative_molecular_mass%1:07:00:: 05026312 1 0 -relative_pronoun%1:10:00:: 06327551 1 0 -relative_quantity%1:23:00:: 13576982 1 0 -relatively%4:02:00:: 00160834 1 36 -relativise%2:31:00:: 00691834 1 0 -relativism%1:09:00:: 05975846 1 0 -relativistic%3:01:00:: 02835887 1 1 -relativistic%3:01:01:: 02836161 2 0 -relativistic_mass%1:07:00:: 05025129 1 0 -relativistically%4:02:00:: 00130000 1 0 -relativity%1:07:00:: 05212609 2 0 -relativity%1:09:00:: 06106502 1 0 -relativity_theory%1:09:00:: 06106502 1 0 -relativize%2:31:00:: 00691834 1 0 -relatum%1:10:00:: 06603366 1 0 -relax%2:29:00:: 00026385 1 17 -relax%2:29:01:: 00025654 4 1 -relax%2:30:01:: 00419685 2 5 -relax%2:30:02:: 00419137 3 3 -relax%2:30:05:: 00441212 8 0 -relax%2:41:00:: 02601808 7 0 -relax%2:41:01:: 02601996 6 0 -relax%2:41:02:: 02602212 5 0 -relaxant%1:06:00:: 04072811 1 0 -relaxant%5:00:00:depressant:00 02309004 1 0 -relaxation%1:04:00:: 01064148 5 0 -relaxation%1:04:01:: 00355691 7 0 -relaxation%1:04:02:: 00873798 6 0 -relaxation%1:11:00:: 07443210 4 0 -relaxation%1:12:00:: 07515974 3 0 -relaxation%1:22:00:: 13549311 2 0 -relaxation%1:22:01:: 13549488 1 0 -relaxation_behavior%1:22:00:: 13549311 1 0 -relaxation_method%1:04:00:: 00873798 1 0 -relaxation_time%1:28:00:: 15275315 1 2 -relaxed%3:00:00:: 02407603 1 2 -relaxer%1:17:00:: 09407043 1 0 -relaxin%1:08:00:: 05412053 1 0 -relaxing%3:00:00:: 01922227 1 0 -relay%1:04:00:: 00318567 1 1 -relay%1:06:00:: 04072960 5 0 -relay%1:11:00:: 07464083 4 0 -relay%1:14:00:: 08218965 2 0 -relay%1:14:01:: 07985533 3 0 -relay%2:32:00:: 00743082 1 2 -relay%2:35:00:: 01225576 2 0 -relay_link%1:06:00:: 02872529 1 0 -relay_race%1:11:00:: 07464083 1 0 -relay_station%1:06:00:: 02872529 1 0 -relay_transmitter%1:06:00:: 02872529 1 0 -relearn%2:31:00:: 00598278 1 1 -release%1:04:00:: 01264447 9 0 -release%1:04:01:: 00095502 2 3 -release%1:04:02:: 00216174 5 2 -release%1:04:03:: 00329619 10 0 -release%1:04:05:: 00213694 11 0 -release%1:04:06:: 00210940 12 0 -release%1:06:00:: 04073208 1 6 -release%1:06:01:: 04073425 8 0 -release%1:10:00:: 06747484 4 2 -release%1:10:01:: 06552814 7 0 -release%1:11:00:: 07333649 6 1 -release%1:22:00:: 13549672 3 2 -release%2:29:00:: 00069295 6 3 -release%2:29:01:: 00104868 5 3 -release%2:30:00:: 00269682 10 0 -release%2:32:00:: 00967625 4 3 -release%2:35:00:: 01474550 1 12 -release%2:35:01:: 01436518 3 4 -release%2:36:03:: 01757994 9 0 -release%2:40:00:: 02316304 8 0 -release%2:41:00:: 02421374 2 6 -release%2:41:01:: 02494047 7 1 -releasing%5:00:00:emotional:00 00854869 1 0 -releasing_factor%1:08:00:: 05412242 2 0 -releasing_factor%1:27:00:: 15023294 1 0 -releasing_hormone%1:08:00:: 05412242 2 0 -releasing_hormone%1:27:00:: 15023294 1 0 -relegate%2:31:02:: 00739662 4 0 -relegate%2:41:00:: 02399331 2 2 -relegate%2:41:01:: 02503803 3 0 -relegate%2:41:02:: 02589013 1 4 -relegating%1:04:00:: 01140839 1 0 -relegation%1:04:00:: 01140839 1 0 -relegation%1:04:01:: 00208521 3 0 -relegation%1:04:02:: 01013434 2 0 -relent%2:42:00:: 02703289 1 3 -relentless%5:00:00:continual:00 00593071 2 1 -relentless%5:00:00:implacable:00 01785341 1 2 -relentlessly%4:02:00:: 00217857 1 3 -relentlessness%1:07:00:: 04831437 1 2 -relevance%1:24:00:: 13794417 1 7 -relevancy%1:24:00:: 13794417 1 2 -relevant%3:00:00:: 01975138 1 11 -relevantly%4:02:00:: 00440523 1 0 -reliability%1:07:00:: 04670022 1 2 -reliable%3:00:00:: 00724081 1 9 -reliable%5:00:01:trustworthy:00 02465115 3 1 -reliable%5:00:02:trustworthy:00 02465519 2 1 -reliableness%1:07:00:: 04670022 1 0 -reliably%4:02:00:: 00223395 1 1 -reliance%1:09:00:: 05697976 1 2 -reliance%1:26:00:: 14001728 2 1 -reliant%5:00:00:dependent:00 00727113 1 0 -relic%1:06:00:: 04073547 1 2 -relic%1:06:01:: 03610270 2 0 -relict%1:17:00:: 09407194 2 0 -relict%1:20:00:: 13084633 1 0 -relief%1:04:00:: 01088168 8 1 -relief%1:04:01:: 00354884 9 1 -relief%1:04:02:: 01209220 5 3 -relief%1:04:04:: 01075567 11 0 -relief%1:06:00:: 04073669 10 0 -relief%1:11:00:: 07357101 7 1 -relief%1:12:00:: 07493280 1 12 -relief%1:18:00:: 10648237 4 3 -relief%1:21:00:: 13290991 3 5 -relief%1:26:00:: 14445749 2 8 -relief%1:28:00:: 15274074 6 1 -relief_map%1:06:00:: 03096142 1 0 -relief_pitcher%1:18:00:: 10518194 1 0 -relief_printing%1:10:00:: 06678664 1 0 -relief_valve%1:06:00:: 04127633 1 0 -relieve%2:29:00:: 00064095 1 9 -relieve%2:29:02:: 00082563 7 1 -relieve%2:30:05:: 00199067 11 0 -relieve%2:32:00:: 00936648 6 1 -relieve%2:32:01:: 00893878 10 0 -relieve%2:37:00:: 01815185 4 2 -relieve%2:40:00:: 02312882 9 0 -relieve%2:40:01:: 02312996 8 0 -relieve%2:41:00:: 02550868 5 1 -relieve%2:41:01:: 02412175 2 4 -relieve%2:41:02:: 02564146 3 2 -relieve_oneself%2:29:00:: 00072012 1 1 -relieved%5:00:00:mitigated:00 01519465 1 5 -relieved%5:00:00:protrusive:00 01353982 2 0 -reliever%1:18:00:: 10518194 3 0 -reliever%1:18:01:: 10648237 1 0 -reliever%1:18:02:: 10518349 2 0 -relievo%1:06:00:: 04073669 1 0 -religion%1:09:00:: 05946687 1 63 -religion%1:14:00:: 08081668 2 9 -religionism%1:07:00:: 04827175 2 0 -religionism%1:09:00:: 06206470 1 0 -religionist%1:18:00:: 09629065 1 1 -religiosity%1:07:00:: 04827175 1 0 -religious%1:18:00:: 10518602 1 0 -religious%3:00:00:: 01783158 2 3 -religious%3:00:01:: 01782981 3 0 -religious%5:00:00:sacred:00 02056265 1 10 -religious%5:00:00:scrupulous:00 02085740 4 0 -religious_belief%1:09:00:: 05946687 1 6 -religious_ceremony%1:04:00:: 01028082 1 0 -religious_cult%1:09:00:: 05948264 1 0 -religious_doctrine%1:10:00:: 06789411 1 0 -religious_festival%1:28:00:: 15162210 1 0 -religious_holiday%1:28:00:: 15183802 1 0 -religious_leader%1:18:00:: 10519494 1 0 -religious_movement%1:14:00:: 08473787 1 0 -religious_music%1:10:00:: 07033007 1 0 -religious_mystic%1:18:00:: 10343554 1 0 -religious_mysticism%1:09:00:: 05948857 1 0 -religious_offering%1:04:00:: 01041349 1 0 -religious_order%1:14:00:: 08149781 1 1 -religious_orientation%1:09:00:: 06222336 1 0 -religious_outcast%1:18:00:: 10171755 1 0 -religious_person%1:18:00:: 09628382 1 0 -religious_residence%1:06:00:: 04073948 1 0 -religious_right%1:14:00:: 08416890 1 0 -religious_rite%1:04:00:: 01029406 1 0 -religious_ritual%1:04:00:: 01028082 1 0 -religious_school%1:14:00:: 08284054 1 0 -religious_sect%1:14:00:: 08149781 1 0 -religious_service%1:04:00:: 01032040 1 0 -religious_society_of_friends%1:14:00:: 08150377 1 0 -religious_song%1:10:00:: 07035420 1 0 -religious_text%1:10:00:: 06429590 1 0 -religious_trance%1:09:00:: 05681855 1 0 -religious_writing%1:10:00:: 06429590 1 0 -religiousism%1:07:00:: 04827175 1 0 -religiously%4:02:00:: 00178460 1 3 -religiously%4:02:01:: 00178586 2 0 -religiousness%1:07:00:: 04826999 1 1 -religiousness%1:07:01:: 04848866 2 0 -reline%2:30:00:: 00509349 2 0 -reline%2:35:00:: 01271064 1 0 -relinquish%2:35:02:: 01474550 4 0 -relinquish%2:40:00:: 02227487 3 0 -relinquish%2:40:01:: 02316304 1 9 -relinquish%2:41:00:: 02534062 2 0 -relinquished%5:00:00:unoccupied:02 01624533 1 0 -relinquishing%1:04:00:: 00212808 2 0 -relinquishing%1:10:00:: 07254836 1 0 -relinquishment%1:04:00:: 00212808 2 0 -relinquishment%1:10:00:: 07254836 1 0 -reliquary%1:06:00:: 04074185 1 0 -relish%1:09:00:: 05715864 3 0 -relish%1:12:02:: 07491981 1 2 -relish%1:13:00:: 07582441 2 0 -relish%2:37:00:: 01820302 1 2 -relishing%1:04:00:: 00841901 1 0 -relistening%1:04:00:: 00882460 1 0 -relive%2:31:00:: 00597216 1 1 -reliving%1:09:00:: 05810768 1 3 -reload%2:35:00:: 01490690 2 0 -reload%2:35:01:: 01490572 1 2 -relocatable_program%1:10:00:: 06578060 1 0 -relocate%2:30:00:: 00414627 1 0 -relocate%2:30:01:: 00414409 2 0 -relocated%5:00:00:settled:01 02126796 1 0 -relocation%1:04:00:: 00168658 2 0 -relocation%1:04:02:: 01252566 1 0 -reluctance%1:07:00:: 04645943 2 0 -reluctance%1:19:00:: 11504750 1 0 -reluctant%5:00:00:disinclined:00 01293882 2 2 -reluctant%5:00:00:uneager:00 00811969 3 1 -reluctant%5:00:00:unwilling:00 02566453 1 3 -reluctantly%4:02:00:: 00091259 1 5 -reluctivity%1:07:00:: 05019499 1 0 -rely%2:31:11:: 00688377 1 1 -rely_on%2:42:00:: 02664017 1 0 -rely_on%2:42:02:: 02663848 2 0 -rely_upon%2:42:00:: 02664017 1 0 -relyric%2:36:00:: 01699059 1 1 -rem%1:23:00:: 13646367 2 0 -rem%1:26:00:: 14025755 1 0 -rem_sleep%1:26:00:: 14025755 1 0 -remain%2:30:00:: 00117985 1 128 -remain%2:42:01:: 02731024 4 9 -remain%2:42:03:: 02727462 2 38 -remain%2:42:05:: 02637592 3 34 -remain_down%2:33:00:: 01125209 1 0 -remain_firm%2:42:00:: 02702120 1 2 -remainder%1:06:00:: 03286383 4 0 -remainder%1:23:00:: 13729236 3 0 -remainder%1:23:01:: 13733663 2 0 -remainder%1:24:00:: 13810818 1 8 -remainder%2:40:00:: 02243461 1 0 -remaining%5:00:00:unexhausted:00 00926505 1 3 -remains%1:08:00:: 05218119 2 0 -remains%1:17:00:: 09407346 1 1 -remake%1:06:00:: 04074329 1 0 -remake%2:36:00:: 01619725 1 2 -remaking%1:06:00:: 04074329 1 0 -remand%1:04:00:: 00328327 1 0 -remand%2:32:00:: 00949974 1 3 -remand%2:41:00:: 02494356 2 0 -remark%1:09:00:: 05710573 2 0 -remark%1:10:00:: 06765044 1 32 -remark%2:32:00:: 01020005 1 41 -remark%2:32:01:: 01058574 2 0 -remarkable%5:00:00:extraordinary:00 01678417 1 13 -remarkable%5:00:00:significant:00 02163602 2 2 -remarkably%4:02:00:: 00107230 1 9 -remarkably%4:02:01:: 00454512 2 0 -remarriage%1:04:00:: 01248752 1 0 -remarry%2:41:00:: 02490247 1 1 -rematch%1:11:00:: 07343195 1 0 -rembrandt%1:18:00:: 11257932 1 0 -rembrandt_harmensz_van_rijn%1:18:00:: 11257932 1 0 -rembrandt_van_rijn%1:18:00:: 11257932 1 0 -rembrandt_van_ryn%1:18:00:: 11257932 1 0 -rembrandtesque%3:01:00:: 03037712 1 0 -remediable%3:00:00:: 01962631 1 0 -remedial%5:00:00:bettering:00 00232986 1 1 -remedial%5:00:00:healthful:00 01165943 2 0 -remediate%2:30:00:: 00199912 1 0 -remediation%1:04:00:: 00259177 1 0 -remedy%1:04:00:: 00259177 1 2 -remedy%1:06:00:: 04074482 2 1 -remedy%2:29:00:: 00082563 2 0 -remedy%2:30:00:: 00199912 1 3 -remember%2:31:00:: 00607780 1 106 -remember%2:31:01:: 00609683 2 53 -remember%2:31:02:: 00611256 3 23 -remember%2:31:08:: 00611802 7 0 -remember%2:31:09:: 00611481 8 0 -remember%2:32:00:: 00882523 6 0 -remember%2:32:07:: 00882802 5 0 -remember%2:40:00:: 02356567 4 2 -remember_oneself%2:41:00:: 02597968 1 0 -remembering%1:09:00:: 05760202 1 0 -remembrance%1:09:00:: 05761918 1 3 -remembrance%1:10:00:: 06688522 2 0 -remembrance_day%1:28:00:: 15200661 1 0 -remembrance_sunday%1:28:00:: 15200661 1 0 -remicade%1:06:00:: 03569657 2 0 -remicade%1:27:00:: 15030022 1 0 -remilegia%1:05:00:: 02575455 1 0 -remilegia_australis%1:05:00:: 02575590 1 0 -remilitarisation%1:04:00:: 01158543 1 0 -remilitarise%2:33:00:: 01099220 1 0 -remilitarization%1:04:00:: 01158543 1 0 -remilitarize%2:33:00:: 01099220 1 0 -remind%2:31:00:: 00610538 1 22 -remind%2:32:00:: 00877848 2 13 -reminder%1:09:00:: 05813626 2 3 -reminder%1:10:00:: 06506757 1 3 -reminder%1:18:00:: 09771855 3 0 -remindful%5:00:00:mindful:00 01977669 1 0 -reminisce%2:31:00:: 00611055 1 3 -reminiscence%1:09:01:: 05761559 2 0 -reminiscence%1:09:02:: 05762848 1 0 -reminiscent%5:00:00:mindful:00 01977669 1 0 -reminiscently%4:02:00:: 00440612 1 0 -remise%1:04:00:: 01174645 3 0 -remise%1:06:00:: 03055857 2 0 -remise%1:06:01:: 04074876 1 0 -remiss%5:00:00:negligent:00 00755220 1 0 -remission%1:04:00:: 00094240 4 0 -remission%1:04:01:: 00122106 3 0 -remission%1:11:00:: 07419960 1 1 -remission%1:21:00:: 13299453 2 0 -remission_of_sin%1:04:00:: 00094240 1 0 -remissness%1:07:00:: 04666416 1 0 -remit%1:04:00:: 00122106 2 0 -remit%1:09:00:: 05815890 1 0 -remit%2:30:00:: 00421125 6 0 -remit%2:30:02:: 00268314 7 0 -remit%2:32:00:: 01018800 3 0 -remit%2:32:01:: 00949974 4 0 -remit%2:32:04:: 00903947 5 0 -remit%2:40:00:: 02255081 1 1 -remit%2:42:00:: 02642814 2 0 -remitment%1:04:00:: 00122106 2 0 -remitment%1:21:00:: 13299453 1 0 -remittal%1:04:00:: 00094240 3 0 -remittal%1:11:00:: 07419960 2 0 -remittal%1:21:00:: 13299453 1 0 -remittance%1:21:00:: 13299453 1 0 -remittance_man%1:18:00:: 10519884 1 0 -remittent%5:00:00:decreased:00 00883188 1 0 -remnant%1:06:00:: 03286383 2 0 -remnant%1:24:00:: 13811184 1 3 -remodel%2:30:00:: 00199490 1 3 -remodel%2:36:00:: 01658586 2 0 -remold%2:30:00:: 00164072 3 0 -remold%2:36:00:: 01663205 1 0 -remold%2:36:01:: 01660870 2 0 -remonstrance%1:10:00:: 07246742 1 2 -remonstrate%2:32:00:: 00910555 1 2 -remonstrate%2:32:01:: 01013230 2 0 -remonstrate%2:32:04:: 00824767 3 0 -remonstration%1:10:00:: 07246742 1 0 -remora%1:05:00:: 02574910 1 0 -remorse%1:12:00:: 07536074 1 1 -remorseful%5:00:00:penitent:00 01743506 1 1 -remorsefully%4:02:00:: 00217998 1 0 -remorseless%5:00:00:merciless:00 01508086 1 1 -remorselessly%4:02:00:: 00400471 1 0 -remote%1:06:00:: 04074963 1 0 -remote%3:00:00:: 00450606 5 0 -remote%5:00:00:inaccessible:00 00020103 4 1 -remote%5:00:00:unlikely:00 01413084 2 4 -remote%5:00:01:far:00 00442917 1 5 -remote%5:00:02:far:00 00443075 3 3 -remote-access_data_processing%1:22:00:: 13468542 1 0 -remote-control_bomb%1:06:00:: 04075160 1 0 -remote-controlled%3:00:00:: 01479940 1 0 -remote_control%1:06:00:: 04074963 1 0 -remote_station%1:06:00:: 04075291 1 0 -remote_terminal%1:06:00:: 04075291 1 0 -remotely%4:02:00:: 00440745 2 0 -remotely%4:02:01:: 00440845 1 0 -remoteness%1:07:00:: 05085165 1 0 -remoteness%1:07:01:: 04656996 2 0 -remotion%1:04:00:: 00391599 1 0 -remoulade_sauce%1:13:00:: 07832741 1 0 -remould%2:30:00:: 00164072 2 0 -remould%2:36:00:: 01663205 1 0 -remount%1:05:00:: 02378149 1 0 -remount%2:34:00:: 01184195 3 0 -remount%2:35:00:: 01343372 2 0 -remount%2:38:00:: 01923630 1 1 -removable%3:00:00:: 01526582 1 0 -removable%5:00:00:eradicable:00 00898132 2 0 -removable_disk%1:06:00:: 04075468 1 0 -removal%1:04:00:: 00391599 1 9 -removal%1:04:02:: 00216723 2 0 -removal_company%1:14:00:: 08478482 1 0 -removal_firm%1:14:00:: 08478482 1 1 -remove%1:07:00:: 05090255 1 0 -remove%2:30:00:: 00173338 1 86 -remove%2:30:01:: 00421535 6 2 -remove%2:30:02:: 00571061 8 0 -remove%2:38:00:: 02086458 5 3 -remove%2:40:00:: 02224055 3 4 -remove%2:41:00:: 02404224 2 4 -remove%2:41:01:: 02482425 7 0 -remove%2:41:02:: 02404904 4 3 -removed%5:00:02:distant:02 00451155 1 0 -removed%5:00:02:far:00 00443075 2 0 -remover%1:18:00:: 10519984 2 0 -remover%1:27:00:: 15003969 1 0 -remuda%1:14:00:: 07994818 1 1 -remunerate%2:40:00:: 02249741 1 0 -remunerated%5:00:00:paid:00 01708898 1 0 -remuneration%1:04:00:: 01121855 2 0 -remuneration%1:21:00:: 13279262 1 1 -remunerative%5:00:00:paid:00 01708663 1 1 -remunerative%5:00:00:profitable:00 01871774 2 0 -remunerator%1:18:00:: 10409752 1 0 -remus%1:18:00:: 09556580 1 0 -renaissance%1:04:00:: 01047803 2 1 -renaissance%1:28:00:: 15259812 1 5 -renaissance_man%1:18:01:: 10520109 2 0 -renaissance_man%1:18:02:: 10520286 1 0 -renal%3:01:00:: 02883599 1 0 -renal_artery%1:08:00:: 05354381 1 1 -renal_calculus%1:17:00:: 09325824 1 0 -renal_colic%1:26:00:: 14331690 1 0 -renal_corpuscle%1:08:00:: 05247369 1 0 -renal_cortex%1:08:00:: 05491154 1 0 -renal_disorder%1:26:00:: 14113228 1 0 -renal_failure%1:26:00:: 14114555 1 0 -renal_insufficiency%1:26:00:: 14114773 1 0 -renal_lithiasis%1:26:00:: 14115648 1 0 -renal_pelvis%1:08:00:: 05596442 1 0 -renal_vein%1:08:00:: 05379247 1 0 -rename%2:32:00:: 01029212 1 2 -rename%2:41:00:: 02396981 2 0 -renascence%1:04:00:: 01047803 3 0 -renascence%1:11:00:: 07321247 2 0 -renascence%1:28:00:: 15259812 1 0 -renascent%5:00:00:revived:00 02013864 1 0 -renata_tebaldi%1:18:00:: 11334317 1 0 -rend%2:35:00:: 01573276 1 2 -render%1:27:00:: 15060326 1 0 -render%2:30:00:: 00120675 1 12 -render%2:30:04:: 00444975 13 0 -render%2:32:00:: 01060746 11 0 -render%2:32:01:: 01062253 5 1 -render%2:32:04:: 00959827 12 0 -render%2:35:00:: 01361240 10 0 -render%2:36:00:: 01629000 4 2 -render%2:36:03:: 01732172 3 4 -render%2:36:04:: 01686956 9 0 -render%2:40:00:: 02310007 7 0 -render%2:40:01:: 02310328 6 0 -render%2:40:02:: 02327200 2 10 -render%2:40:03:: 02293321 8 0 -render-set%2:35:00:: 01361387 1 0 -rendering%1:04:00:: 01122037 7 0 -rendering%1:04:01:: 00100543 3 1 -rendering%1:06:00:: 04075615 6 0 -rendering%1:06:01:: 04075715 5 0 -rendering%1:09:00:: 05766247 2 1 -rendering%1:10:01:: 06893565 1 1 -rendering%1:10:02:: 06536389 4 0 -rendezvous%1:04:00:: 01231548 1 3 -rendezvous%1:14:00:: 08385717 3 0 -rendezvous%1:15:00:: 08642870 2 1 -rendezvous%2:41:00:: 02487226 1 0 -rending%5:00:00:cacophonous:00 00300469 1 2 -rendition%1:04:00:: 00421321 3 0 -rendition%1:04:01:: 00100543 4 0 -rendition%1:09:00:: 05766247 2 0 -rendition%1:10:00:: 06893565 1 2 -rene-robert_cavelier%1:18:00:: 11118205 1 0 -rene_antoine_ferchault_de_reaumur%1:18:00:: 11255619 1 0 -rene_descartes%1:18:00:: 10931854 1 0 -rene_magritte%1:18:00:: 11149373 1 0 -renegade%1:18:00:: 10520544 1 0 -renegade%1:18:01:: 10007109 2 0 -renegade%2:41:00:: 02583379 1 0 -renegade%5:00:00:disloyal:00 00963858 1 0 -renegade_state%1:14:00:: 08170374 1 0 -renege%1:04:00:: 01259211 1 0 -renege%2:32:00:: 00800242 1 0 -renege_on%2:32:00:: 00800242 1 0 -renegociate%2:32:00:: 00762043 2 0 -renegociate%2:32:01:: 00762329 1 0 -renegotiate%2:32:00:: 00762043 2 0 -renegotiate%2:32:01:: 00762329 1 0 -renegue_on%2:32:00:: 00800242 1 0 -renew%2:30:00:: 00167652 2 3 -renew%2:36:00:: 01631072 1 7 -renewable%3:00:00:: 01962982 1 0 -renewable%5:00:00:inexhaustible:00 00925820 2 0 -renewable_resource%1:21:00:: 13332500 1 0 -renewal%1:04:00:: 00269018 1 2 -renewal%1:04:01:: 01248852 2 1 -renewal%1:22:00:: 13547925 3 0 -renewed%5:00:00:revived:00 02013758 1 1 -renewing%5:00:00:invigorating:00 01357742 1 1 -reniform%5:00:00:simple:01 02170546 1 0 -reniform_leaf%1:20:00:: 13159691 1 0 -renin%1:27:00:: 15004149 1 0 -rennet%1:27:00:: 14738623 1 0 -rennin%1:27:00:: 15004317 1 0 -reno%1:15:00:: 09111168 1 0 -renoir%1:18:00:: 11258096 1 0 -renormalise%2:30:00:: 00468236 1 0 -renormalize%2:30:00:: 00468236 1 0 -renounce%2:32:00:: 00757544 4 0 -renounce%2:40:00:: 02227487 3 0 -renounce%2:41:00:: 02367032 2 0 -renounce%2:41:01:: 02379198 1 0 -renouncement%1:10:00:: 07254594 1 0 -renovate%2:29:00:: 00024279 3 0 -renovate%2:30:00:: 00164201 1 0 -renovate%2:30:01:: 00163441 2 0 -renovation%1:04:00:: 00265119 1 1 -renovation%1:26:00:: 14424517 2 0 -renovator%1:18:00:: 10514962 1 0 -renown%1:26:00:: 14437386 1 0 -renowned%5:00:00:known:00 01375831 1 0 -rensselaerite%1:27:00:: 15066796 1 0 -rent%1:04:02:: 00391407 4 0 -rent%1:17:00:: 09410928 2 2 -rent%1:21:00:: 13295657 1 6 -rent%1:21:01:: 13296270 3 0 -rent%2:40:00:: 02208537 3 1 -rent%2:40:01:: 02208903 2 2 -rent%2:41:00:: 02460619 4 0 -rent%2:41:01:: 02460199 1 6 -rent-a-car%1:21:00:: 13248598 1 0 -rent-free%4:02:00:: 00260618 1 0 -rent-free%5:00:00:unpaid:00 01710809 1 0 -rent-rebate%1:21:00:: 13282419 1 0 -rent-roll%1:10:00:: 06507454 1 0 -rent_collector%1:18:00:: 10520675 1 0 -rent_out%2:40:00:: 02209499 1 2 -rentable%3:00:00:: 01963294 1 0 -rental%1:04:00:: 01111375 2 0 -rental%1:21:00:: 13248393 1 0 -rental%3:01:00:: 02892033 2 0 -rental%3:01:01:: 02892164 1 0 -rental_collection%1:14:00:: 07978276 1 0 -rental_income%1:21:00:: 13260092 1 0 -rente%1:21:01:: 13294503 1 0 -renter%1:18:00:: 10700201 1 0 -renter%1:18:01:: 10520804 2 0 -rentier%1:18:00:: 10520964 1 0 -renting%1:04:00:: 01111375 1 0 -renunciant%5:00:00:nonindulgent:00 01301056 1 0 -renunciation%1:04:00:: 00205079 4 0 -renunciation%1:10:00:: 07254594 3 0 -renunciation%1:10:01:: 07207410 1 1 -renunciation%1:26:00:: 14413411 2 0 -renunciative%5:00:00:nonindulgent:00 01301056 1 0 -reopen%2:35:00:: 01346693 1 3 -reorder%1:10:00:: 06530255 1 0 -reorder%2:31:00:: 00659112 1 1 -reorder%2:32:00:: 00745810 2 0 -reordering%1:04:00:: 00339463 1 0 -reorganisation%1:04:00:: 01137987 1 0 -reorganise%2:41:00:: 02433123 2 0 -reorganise%2:41:01:: 02433381 1 0 -reorganised%5:00:00:organized:02 01670982 1 0 -reorganization%1:04:00:: 01137987 1 0 -reorganization%1:04:01:: 00200768 2 0 -reorganize%2:41:00:: 02433123 1 3 -reorganize%2:41:01:: 02433381 2 1 -reorganized%5:00:00:organized:02 01670982 1 0 -reorient%2:30:00:: 00468791 3 0 -reorient%2:38:00:: 01908543 2 0 -reorient%2:39:00:: 02159594 1 0 -reorientate%2:39:00:: 02159594 1 0 -reorientation%1:04:00:: 00346296 2 0 -reorientation%1:09:00:: 06208614 1 1 -reoviridae%1:05:00:: 01333610 1 0 -reovirus%1:05:00:: 01340935 1 0 -rep%1:06:00:: 04075813 2 0 -rep%1:18:00:: 09955944 1 0 -repaint%2:35:00:: 01363174 2 0 -repaint%2:36:00:: 01685797 1 0 -repair%1:04:00:: 00266806 1 5 -repair%1:15:00:: 08581503 3 0 -repair%1:26:00:: 14546701 2 1 -repair%2:29:03:: 00024279 5 0 -repair%2:30:00:: 00260648 1 11 -repair%2:30:02:: 00199912 4 0 -repair%2:38:00:: 01843497 3 0 -repair%2:40:00:: 02250625 2 0 -repair_shed%1:06:00:: 02687821 1 0 -repair_shop%1:06:00:: 04075916 1 0 -repairer%1:18:00:: 10308732 1 0 -repairman%1:18:00:: 10521100 1 1 -repand%5:00:00:smooth:02 02245020 1 0 -reparable%3:00:00:: 01963509 1 0 -reparation%1:04:00:: 00095329 4 0 -reparation%1:04:01:: 00266806 3 0 -reparation%1:21:00:: 13292390 2 0 -reparation%1:21:01:: 13292613 1 0 -repartee%1:10:00:: 06777687 1 0 -repast%1:13:00:: 07573696 1 0 -repatriate%1:18:00:: 10521288 1 0 -repatriate%2:41:00:: 02502387 2 0 -repatriate%2:41:01:: 02503633 1 0 -repatriation%1:04:00:: 00051385 1 0 -repay%2:32:00:: 00816353 4 0 -repay%2:40:00:: 02284951 1 7 -repay%2:40:01:: 02344060 2 1 -repay%2:40:02:: 02344381 3 0 -repayable%5:00:00:due:00 00137501 1 1 -repayment%1:04:00:: 01121690 1 1 -repayment%1:21:00:: 13299651 2 0 -repayment_rate%1:21:00:: 13281770 1 0 -repeal%1:04:00:: 00231887 1 1 -repeal%2:32:00:: 00799798 1 3 -repeat%1:11:00:: 07342049 1 2 -repeat%2:30:00:: 00343334 3 8 -repeat%2:32:00:: 00958334 1 33 -repeat%2:32:01:: 00957679 4 7 -repeat%2:36:00:: 01734502 2 11 -repeat%2:36:01:: 01727490 6 0 -repeat%2:41:00:: 02595662 5 3 -repeatable%3:00:00:: 01963958 1 0 -repeated%5:00:00:continual:00 00592880 1 6 -repeatedly%4:02:00:: 00176880 1 10 -repeater%1:06:00:: 04076284 3 0 -repeater%1:06:01:: 04076052 4 0 -repeater%1:18:00:: 10521470 1 0 -repeater%1:18:01:: 10511425 2 0 -repeating%1:04:00:: 01018630 1 0 -repeating_decimal%1:23:00:: 13736376 1 0 -repeating_firearm%1:06:00:: 04076284 1 0 -repechage%1:11:00:: 07464234 1 0 -repel%2:32:00:: 00798539 4 1 -repel%2:33:00:: 01131197 3 2 -repel%2:35:00:: 01506157 1 7 -repel%2:37:00:: 01808769 2 2 -repel%2:39:00:: 02194913 5 0 -repellant%1:07:00:: 05196054 3 0 -repellant%1:27:00:: 14920388 2 0 -repellant%1:27:01:: 14920586 1 0 -repellant%5:00:00:offensive:01 01625893 2 0 -repellant%5:00:00:unpleasant:00 01804422 1 0 -repellent%1:07:00:: 05196054 3 0 -repellent%1:27:00:: 14920388 2 0 -repellent%1:27:01:: 14920586 1 0 -repellent%5:00:00:nonabsorbent:00 00007990 3 0 -repellent%5:00:00:offensive:01 01625893 2 0 -repellent%5:00:00:unpleasant:00 01804422 1 0 -repellently%4:02:00:: 00441043 1 0 -repelling%5:00:00:offensive:01 01625893 1 0 -repellingly%4:02:00:: 00441043 1 0 -repent%2:37:00:: 01796582 2 0 -repent%2:37:01:: 01796800 1 2 -repentance%1:12:00:: 07536870 1 1 -repentant%3:00:00:: 01743217 1 1 -repentantly%4:02:00:: 00365110 1 0 -repercuss%2:30:00:: 00137940 1 0 -repercussion%1:11:00:: 07350192 2 0 -repercussion%1:19:00:: 11416722 1 0 -repertoire%1:14:01:: 08336627 2 0 -repertoire%1:14:02:: 08336844 1 0 -repertory%1:06:00:: 04076433 1 3 -repertory%1:14:00:: 08336844 2 0 -repertory%1:14:01:: 08336627 3 0 -repertory_company%1:14:00:: 08187569 1 0 -repetition%1:04:00:: 01018630 2 4 -repetition%1:10:00:: 07099271 3 1 -repetition%1:11:00:: 07342049 1 6 -repetitious%3:00:00:: 01964367 1 0 -repetitiousness%1:10:00:: 07090721 1 0 -repetitive%3:00:00:: 01964367 2 0 -repetitive%5:00:00:continual:00 00592539 1 1 -repetitively%4:02:00:: 00441173 1 0 -repetitiveness%1:10:00:: 07090721 1 0 -rephrase%2:32:00:: 00961736 1 1 -rephrasing%1:10:00:: 06429145 1 0 -repine%2:32:00:: 00910891 1 0 -replace%2:30:00:: 00162688 1 24 -replace%2:35:00:: 01308381 3 7 -replace%2:40:00:: 02257767 4 6 -replace%2:41:00:: 02405390 2 21 -replaceability%1:07:00:: 04737234 1 0 -replaceable%3:00:00:: 01978395 1 0 -replacement%1:04:00:: 00197772 1 4 -replacement%1:09:00:: 05696425 4 1 -replacement%1:11:00:: 07443761 3 2 -replacement%1:18:01:: 10671736 6 0 -replacement%1:18:02:: 10680153 2 2 -replacement%1:22:00:: 13547925 5 0 -replacement_cost%1:21:00:: 13302905 1 0 -replacing%1:04:00:: 00197772 1 1 -replant%2:35:00:: 01568489 1 1 -replay%1:04:00:: 01020117 2 0 -replay%1:11:00:: 07343195 1 0 -replay%2:33:00:: 01075883 4 0 -replay%2:33:01:: 01081001 3 0 -replay%2:36:00:: 01725530 2 0 -replay%2:36:01:: 01738347 1 0 -replenish%2:30:00:: 00453803 1 6 -replenishment%1:22:00:: 13547925 1 1 -replete%2:34:00:: 01193721 1 0 -replete%5:00:00:full:00 01085442 2 0 -replete%5:00:00:nourished:00 02300501 1 0 -repletion%1:04:00:: 00841628 2 0 -repletion%1:26:00:: 14452151 1 0 -replica%1:06:00:: 04076533 1 0 -replicate%2:36:00:: 01734502 3 0 -replicate%2:36:01:: 01734929 2 0 -replicate%2:38:00:: 02036498 1 0 -replication%1:04:00:: 01019901 1 1 -replication%1:04:01:: 01249060 7 0 -replication%1:06:00:: 04076533 6 0 -replication%1:07:00:: 05010801 5 0 -replication%1:10:00:: 06563168 4 0 -replication%1:10:01:: 07199922 3 0 -replication%1:22:00:: 13549916 2 0 -reply%1:10:00:: 07199565 2 2 -reply%1:10:01:: 06746005 1 21 -reply%2:32:00:: 00815686 1 53 -reply-paid%5:00:00:paid:00 01709542 1 0 -repoint%2:30:00:: 00261957 1 0 -report%1:09:00:: 06207199 7 0 -report%1:10:00:: 06681551 3 10 -report%1:10:01:: 07217924 2 10 -report%1:10:02:: 06409752 6 0 -report%1:10:03:: 07218470 1 50 -report%1:10:04:: 07220300 5 0 -report%1:11:00:: 07391516 4 2 -report%2:32:00:: 00965035 1 64 -report%2:32:01:: 00965390 4 5 -report%2:32:02:: 00965542 6 1 -report%2:32:03:: 00965687 3 12 -report%2:32:04:: 00966809 2 52 -report%2:32:13:: 00967098 5 1 -report_card%1:10:00:: 07220300 1 0 -report_out%2:32:00:: 00879212 1 2 -reportable%3:00:00:: 00472057 1 0 -reportable%5:00:00:reported:00 00471842 2 0 -reportage%1:10:00:: 06683784 1 0 -reported%3:00:00:: 00471348 1 2 -reportedly%4:02:00:: 00200927 1 3 -reporter%1:18:00:: 10521662 1 10 -reporting%1:10:00:: 06683784 1 1 -reporting_weight%1:07:00:: 05027276 1 1 -repose%1:04:00:: 01064148 1 3 -repose%1:07:00:: 04904352 3 0 -repose%1:12:00:: 07515790 2 0 -repose%2:34:00:: 01160645 1 1 -repose%2:35:00:: 01548072 3 0 -repose%2:35:01:: 01544692 5 0 -repose%2:35:02:: 01547390 4 0 -repose%2:35:03:: 01498166 6 0 -repose%2:42:12:: 02664664 2 0 -repose_on%2:42:00:: 02663643 1 0 -reposeful%3:00:00:: 01922227 1 0 -reposit%2:40:00:: 02281751 1 0 -repositing%1:04:00:: 00372607 1 0 -reposition%1:04:00:: 00372607 1 0 -reposition%2:35:01:: 01499006 2 0 -reposition%2:38:00:: 01883344 1 0 -repositioning%1:04:00:: 01052739 1 0 -repository%1:06:00:: 03177349 1 2 -repository%1:06:01:: 04076713 3 0 -repository%1:18:00:: 10521928 2 1 -repossess%2:40:00:: 02276322 1 0 -repossess%2:40:03:: 02205887 2 0 -repossession%1:04:00:: 00089891 1 0 -repot%2:35:00:: 01529624 1 0 -repp%1:06:00:: 04075813 1 0 -reprehend%2:32:00:: 00826201 1 0 -reprehensibility%1:07:00:: 04853212 1 0 -reprehensible%5:00:00:wrong:01 02035765 1 1 -reprehensibly%4:02:00:: 00303647 1 0 -reprehension%1:10:00:: 06711855 1 0 -reprehensively%4:02:00:: 00291765 1 0 -represent%2:30:06:: 00380698 15 0 -represent%2:32:00:: 00988028 5 8 -represent%2:32:02:: 00836236 2 28 -represent%2:32:10:: 00825447 13 0 -represent%2:32:11:: 00772967 14 0 -represent%2:32:12:: 00987345 12 0 -represent%2:36:01:: 01686132 9 2 -represent%2:36:02:: 01719302 10 1 -represent%2:36:11:: 01711445 11 0 -represent%2:41:00:: 02541509 4 11 -represent%2:41:02:: 02541921 3 14 -represent%2:41:06:: 02581675 8 2 -represent%2:42:00:: 02620587 7 5 -represent%2:42:01:: 02723733 6 7 -represent%2:42:02:: 02699497 1 39 -representable%5:00:00:expressible:00 00943683 1 0 -representation%1:04:00:: 00898518 10 0 -representation%1:04:01:: 01217499 3 1 -representation%1:06:00:: 04076846 2 10 -representation%1:07:00:: 05187711 9 0 -representation%1:09:00:: 05926676 1 10 -representation%1:10:00:: 07203388 6 0 -representation%1:10:01:: 06893885 7 0 -representation%1:10:02:: 06739782 8 0 -representation%1:14:00:: 08337108 5 0 -representation%1:26:00:: 14000403 4 0 -representational%3:00:00:: 01979053 1 2 -representational_process%1:09:00:: 05765159 1 0 -representative%1:09:00:: 05820620 4 0 -representative%1:18:00:: 10522035 1 8 -representative%1:18:01:: 09955781 3 4 -representative%1:18:02:: 10638385 2 4 -representative%3:00:00:: 01981699 2 1 -representative%5:00:00:democratic:00 00716562 3 0 -representative%5:00:00:typical:00 02469407 1 3 -representative_sample%1:09:00:: 06027051 1 0 -representative_sampling%1:04:00:: 00162417 1 0 -represented%3:00:02:: 01714985 1 0 -repress%2:30:00:: 00586598 4 0 -repress%2:31:00:: 00612841 3 0 -repress%2:35:00:: 01568630 2 0 -repress%2:41:00:: 02424128 1 2 -repressed%5:00:00:inhibited:00 01316467 1 1 -represser%1:17:00:: 09407541 1 0 -repressing%5:00:00:restrictive:00 02004176 1 0 -repression%1:04:00:: 00420712 3 0 -repression%1:22:00:: 13550089 2 0 -repression%1:26:00:: 13996571 1 1 -repressive%5:00:00:restrictive:00 02004176 1 1 -repressor%1:17:00:: 09407541 1 0 -repressor_gene%1:08:00:: 05441224 1 0 -reprieve%1:04:00:: 01259034 4 0 -reprieve%1:10:00:: 06548317 3 0 -reprieve%1:11:00:: 07368256 2 0 -reprieve%1:26:00:: 14446034 1 1 -reprieve%2:41:00:: 02551390 2 0 -reprieve%2:42:00:: 02644035 1 0 -reprimand%1:10:00:: 06711855 1 0 -reprimand%2:32:00:: 00823669 1 2 -reprimand%2:32:01:: 00824767 2 0 -reprint%1:10:00:: 06269785 2 0 -reprint%1:10:01:: 06270308 1 1 -reprint%2:36:00:: 01736098 1 1 -reprinting%1:10:00:: 06270308 1 0 -reprisal%1:04:00:: 01235946 1 2 -reprise%2:36:00:: 01727490 1 0 -reprize%2:36:00:: 01727490 1 0 -reproach%1:10:00:: 06713512 1 7 -reproach%1:26:00:: 14441714 2 1 -reproach%2:32:00:: 00825975 1 2 -reproacher%1:18:00:: 10740017 1 0 -reproachful%5:00:00:unfavorable:02 00996864 1 0 -reproachfully%4:02:00:: 00163076 1 0 -reprobate%1:18:00:: 10522324 1 1 -reprobate%2:31:00:: 00687181 1 1 -reprobate%2:32:00:: 00864159 3 0 -reprobate%2:32:01:: 01071155 2 0 -reprobate%5:00:00:corrupt:00 00621524 1 0 -reprobation%1:09:00:: 06201042 2 0 -reprobation%1:26:00:: 14414146 1 0 -reprocess%2:34:00:: 01162425 1 0 -reproduce%2:29:00:: 00055142 2 1 -reproduce%2:32:00:: 00959178 4 0 -reproduce%2:36:00:: 01736822 1 13 -reproduce%2:36:03:: 01737141 3 0 -reproducer%1:06:00:: 04077430 1 0 -reproducibility%1:07:00:: 04806169 1 2 -reproducible%3:00:00:: 01867996 1 5 -reproducibly%4:02:00:: 00060541 1 1 -reproduction%1:04:00:: 00849523 5 0 -reproduction%1:04:01:: 01019901 4 0 -reproduction%1:06:00:: 04076533 3 0 -reproduction%1:09:00:: 05762483 2 0 -reproduction%1:22:00:: 13550318 1 1 -reproduction_cost%1:21:00:: 13303045 1 0 -reproductive%5:00:00:fruitful:00 01081592 1 0 -reproductive_cell%1:08:00:: 05456732 1 0 -reproductive_cloning%1:04:00:: 00638448 1 0 -reproductive_memory%1:09:00:: 05762483 1 0 -reproductive_organ%1:08:00:: 05513302 1 0 -reproductive_structure%1:20:00:: 11675842 1 0 -reproductive_system%1:08:00:: 05509146 1 0 -reproof%1:10:00:: 06711855 1 1 -reproof%2:32:00:: 00824767 1 0 -reproval%1:10:00:: 06711855 1 0 -reprove%2:32:00:: 00824066 1 0 -reprover%1:18:00:: 10740017 1 0 -reproving%5:00:00:unfavorable:02 00996864 1 0 -reprovingly%4:02:00:: 00163076 1 1 -reptantia%1:05:00:: 01982482 1 0 -reptile%1:05:00:: 01661091 1 1 -reptile_family%1:05:00:: 01656813 1 0 -reptile_genus%1:05:00:: 01657723 1 0 -reptilia%1:05:00:: 01660719 1 0 -reptilian%1:05:00:: 01661091 1 0 -reptilian%3:01:00:: 02832458 1 0 -republic%1:14:00:: 08361329 1 7 -republic%1:14:01:: 08362917 2 0 -republic_of_albania%1:15:00:: 08704822 1 0 -republic_of_angola%1:15:00:: 08707917 1 0 -republic_of_armenia%1:15:00:: 09017526 1 0 -republic_of_austria%1:15:00:: 08845555 1 0 -republic_of_belarus%1:15:00:: 09011151 1 0 -republic_of_benin%1:15:00:: 08759420 1 0 -republic_of_bolivia%1:15:00:: 08852843 1 0 -republic_of_bosnia_and_herzegovina%1:15:00:: 08817630 1 0 -republic_of_botswana%1:15:00:: 08852389 1 0 -republic_of_bulgaria%1:15:00:: 08714132 1 0 -republic_of_burundi%1:15:00:: 08716219 1 0 -republic_of_cameroon%1:15:00:: 08717209 1 0 -republic_of_cape_verde%1:15:00:: 08717915 1 0 -republic_of_chad%1:15:00:: 08720037 1 0 -republic_of_chile%1:15:00:: 08720481 1 0 -republic_of_china%1:15:00:: 08730550 1 0 -republic_of_colombia%1:15:00:: 08732116 1 0 -republic_of_costa_rica%1:15:00:: 08736107 1 0 -republic_of_cote_d'ivoire%1:15:00:: 08736517 1 0 -republic_of_croatia%1:15:00:: 08815858 1 0 -republic_of_cuba%1:15:00:: 08750334 1 0 -republic_of_cyprus%1:15:00:: 08756884 1 0 -republic_of_djibouti%1:15:00:: 08762495 1 0 -republic_of_ecuador%1:15:00:: 08776687 1 0 -republic_of_el_salvador%1:15:00:: 08738272 1 0 -republic_of_equatorial_guinea%1:15:00:: 08763500 1 0 -republic_of_estonia%1:15:00:: 09012297 1 0 -republic_of_fiji%1:15:00:: 08779149 1 0 -republic_of_finland%1:15:00:: 08779504 1 0 -republic_of_ghana%1:15:00:: 08946187 1 0 -republic_of_guatemala%1:15:00:: 08737041 1 0 -republic_of_guinea%1:15:00:: 08947319 1 0 -republic_of_guinea-bissau%1:15:00:: 08947772 1 0 -republic_of_haiti%1:15:00:: 08751494 1 0 -republic_of_honduras%1:15:00:: 08737716 1 0 -republic_of_hungary%1:15:00:: 08952190 1 0 -republic_of_iceland%1:15:00:: 08953324 1 0 -republic_of_india%1:15:00:: 08900535 1 0 -republic_of_indonesia%1:15:00:: 08907606 1 0 -republic_of_iraq%1:15:00:: 08913434 1 0 -republic_of_ireland%1:15:00:: 08888676 1 0 -republic_of_kazakhstan%1:15:00:: 09019726 1 0 -republic_of_kenya%1:15:00:: 08928193 1 0 -republic_of_kiribati%1:15:00:: 08840749 1 0 -republic_of_korea%1:15:00:: 08955626 1 0 -republic_of_latvia%1:15:00:: 09013074 1 0 -republic_of_liberia%1:15:00:: 08959254 1 0 -republic_of_lithuania%1:15:00:: 09013830 1 0 -republic_of_madagascar%1:15:00:: 08962187 1 0 -republic_of_malawi%1:15:00:: 08962610 1 0 -republic_of_maldives%1:15:00:: 08965251 1 0 -republic_of_mali%1:15:00:: 08965598 1 0 -republic_of_malta%1:15:00:: 08966408 1 0 -republic_of_mauritius%1:15:00:: 08967484 1 0 -republic_of_moldova%1:15:00:: 09014586 1 0 -republic_of_mozambique%1:15:00:: 08971025 1 0 -republic_of_namibia%1:15:00:: 08699654 1 0 -republic_of_nauru%1:15:00:: 08841483 1 0 -republic_of_nicaragua%1:15:00:: 08738820 1 0 -republic_of_niger%1:15:00:: 08973330 1 0 -republic_of_palau%1:15:00:: 08978161 1 0 -republic_of_panama%1:15:00:: 08739206 1 0 -republic_of_paraguay%1:15:00:: 08978343 1 0 -republic_of_peru%1:15:00:: 08979054 1 0 -republic_of_poland%1:15:00:: 08982587 1 0 -republic_of_san_marino%1:15:00:: 08992181 1 0 -republic_of_senegal%1:15:00:: 08995862 1 0 -republic_of_seychelles%1:15:00:: 08996483 1 0 -republic_of_sierra_leone%1:15:00:: 08996871 1 0 -republic_of_singapore%1:15:00:: 08997487 1 0 -republic_of_slovenia%1:15:00:: 08818444 1 0 -republic_of_south_africa%1:15:00:: 08999482 1 0 -republic_of_suriname%1:15:00:: 09030752 1 0 -republic_of_tajikistan%1:15:00:: 09020961 1 0 -republic_of_the_congo%1:15:00:: 08734044 1 0 -republic_of_the_gambia%1:15:00:: 08945821 1 0 -republic_of_the_marshall_islands%1:15:00:: 08839092 1 0 -republic_of_the_philippines%1:15:00:: 08981244 1 0 -republic_of_the_sudan%1:15:00:: 09029457 1 0 -republic_of_trinidad_and_tobago%1:15:00:: 08756202 1 0 -republic_of_tunisia%1:15:00:: 09037394 1 0 -republic_of_turkey%1:15:00:: 09039411 1 0 -republic_of_uganda%1:15:00:: 09043052 1 0 -republic_of_uzbekistan%1:15:00:: 09022265 1 0 -republic_of_vanuatu%1:15:00:: 09160775 1 0 -republic_of_venezuela%1:15:00:: 09161803 1 0 -republic_of_yemen%1:15:00:: 09164561 1 0 -republic_of_zambia%1:15:00:: 09165613 1 0 -republic_of_zimbabwe%1:15:00:: 09167101 1 0 -republican%1:17:00:: 09407632 3 0 -republican%1:18:00:: 10522495 2 1 -republican%1:18:01:: 10522633 1 8 -republican%3:01:01:: 02788378 1 6 -republican%5:00:00:democratic:00 00716892 2 0 -republican_guard%1:14:00:: 08345189 1 0 -republican_party%1:14:00:: 08263113 1 1 -republican_river%1:17:00:: 09407632 1 0 -republicanism%1:09:00:: 06220299 1 0 -republication%1:04:00:: 01102574 2 0 -republication%1:10:00:: 07258964 1 0 -republish%2:30:00:: 00169176 2 0 -republish%2:36:00:: 01746145 1 0 -republishing%1:04:00:: 01102574 1 0 -repudiate%2:31:00:: 00686039 2 1 -repudiate%2:32:00:: 00757544 1 3 -repudiate%2:32:04:: 00816828 4 0 -repudiate%2:32:06:: 00911917 3 0 -repudiation%1:04:00:: 00522338 3 0 -repudiation%1:10:00:: 07207410 1 0 -repudiation%1:10:01:: 07205718 2 0 -repudiative%5:00:00:rejective:00 00076739 1 0 -repugn%2:32:00:: 00869596 1 0 -repugnance%1:12:00:: 07503987 1 1 -repugnance%1:24:00:: 13858045 2 0 -repugnant%5:00:00:offensive:01 01625063 1 0 -repulse%1:10:00:: 07208000 1 0 -repulse%2:33:00:: 01131197 1 2 -repulse%2:35:00:: 01506157 3 0 -repulse%2:37:00:: 01808769 2 0 -repulsion%1:04:00:: 00961001 3 0 -repulsion%1:12:00:: 07503987 2 1 -repulsion%1:19:00:: 11426914 1 2 -repulsive%3:00:00:: 00170156 2 0 -repulsive%5:00:00:offensive:01 01625063 1 1 -repulsive%5:00:00:ugly:00 00221934 3 0 -repulsive_force%1:19:00:: 11426914 1 2 -repulsively%4:02:00:: 00309632 1 0 -repulsiveness%1:07:00:: 04781349 1 0 -repurchase%1:04:00:: 00079212 1 0 -repurchase%2:40:00:: 02207890 1 0 -reputability%1:07:00:: 04871002 1 0 -reputable%3:00:00:: 01982646 1 4 -reputably%4:02:00:: 00319180 1 0 -reputation%1:09:00:: 06207199 3 0 -reputation%1:26:00:: 14438125 1 5 -reputation%1:26:01:: 14439294 2 4 -repute%1:26:00:: 14438125 1 1 -repute%2:31:00:: 00689950 1 2 -reputedly%4:02:00:: 00441321 1 0 -request%1:10:00:: 07185325 2 4 -request%1:10:01:: 06513366 1 10 -request%2:32:01:: 00752764 1 11 -request%2:32:02:: 00753428 2 7 -request%2:32:13:: 01069809 3 0 -requested%3:00:00:: 01965287 1 0 -requester%1:18:00:: 10420031 1 0 -requiem%1:04:00:: 01042661 3 0 -requiem%1:10:00:: 07050619 1 0 -requiem%1:10:01:: 07033913 2 0 -requiem_shark%1:05:00:: 01488918 1 0 -requiescat%1:10:00:: 07190584 1 0 -require%2:32:00:: 00751567 3 16 -require%2:32:01:: 00755745 2 16 -require%2:34:00:: 01188725 4 6 -require%2:42:00:: 02627934 1 144 -required%5:00:00:necessary:00 01580775 1 13 -required%5:00:00:obligatory:00 00848466 2 1 -required_course%1:04:00:: 00892036 1 0 -requirement%1:09:00:: 05892427 3 11 -requirement%1:09:01:: 05892651 1 19 -requirement%1:17:00:: 09367203 2 18 -requirements_contract%1:10:00:: 06524111 1 0 -requisite%1:17:00:: 09367203 1 0 -requisite%5:00:00:necessary:00 01580775 1 0 -requisiteness%1:26:00:: 14450904 1 0 -requisition%1:04:01:: 00087218 3 0 -requisition%1:10:00:: 07192240 1 1 -requisition%1:10:01:: 06476200 2 0 -requisition%2:32:00:: 00754430 1 2 -requisition%2:40:00:: 02276000 2 0 -requisition_form%1:10:00:: 06476200 1 0 -requital%1:04:00:: 01235137 2 0 -requital%1:21:00:: 13300828 1 0 -requite%2:40:00:: 02344060 1 0 -reread%2:31:00:: 00625723 1 3 -rerebrace%1:06:00:: 04077594 1 0 -reredos%1:06:00:: 02699770 1 0 -rerun%1:10:00:: 06620063 1 0 -rerun%2:30:00:: 00517684 4 0 -rerun%2:32:00:: 00973888 1 1 -rerun%2:33:00:: 01094539 3 0 -rerun%2:36:00:: 01649482 2 0 -res%1:08:00:: 05461349 1 0 -res_adjudicata%1:09:00:: 05816154 1 0 -res_gestae%1:04:00:: 00038175 2 0 -res_gestae%1:10:00:: 06735261 1 0 -res_ipsa_loquitur%1:10:00:: 06654791 1 0 -res_judicata%1:09:00:: 05816154 1 0 -res_publica%1:14:00:: 08168978 1 0 -resale%1:04:00:: 01117454 1 0 -rescale%2:30:00:: 00319761 1 0 -reschedule%2:32:00:: 00795475 1 1 -rescind%2:32:00:: 00799798 1 3 -rescindable%5:00:00:revocable:00 01760293 1 0 -rescission%1:04:00:: 00232863 1 0 -rescript%1:10:00:: 06364149 4 0 -rescript%1:10:01:: 06428976 3 0 -rescript%1:10:02:: 06746347 1 0 -rescript%1:10:03:: 06539770 2 0 -rescriptor%1:06:00:: 03172432 1 0 -rescue%1:04:00:: 00093483 1 3 -rescue%2:40:00:: 02206920 2 0 -rescue%2:41:00:: 02551144 1 11 -rescue_equipment%1:06:00:: 04077734 1 0 -rescue_operation%1:04:00:: 00409823 1 0 -rescue_party%1:14:00:: 08265614 1 0 -rescued%5:00:00:saved:00 01451937 1 0 -rescuer%1:18:00:: 10522759 2 0 -rescuer%1:18:01:: 10553805 1 0 -reseal%2:35:00:: 01354285 1 1 -research%1:04:00:: 00636921 1 46 -research%1:09:00:: 05797597 2 6 -research%2:31:00:: 00648224 2 0 -research%2:32:00:: 00877327 1 1 -research_center%1:06:00:: 04077889 1 0 -research_colloquium%1:14:00:: 08328563 1 0 -research_director%1:18:00:: 10522956 1 0 -research_facility%1:06:00:: 04077889 1 0 -research_lab%1:06:00:: 03629986 1 0 -research_laboratory%1:06:00:: 03629986 1 0 -research_project%1:04:00:: 00641820 1 0 -research_rocket%1:06:00:: 04415663 1 0 -research_staff%1:14:00:: 08352473 1 0 -research_worker%1:18:00:: 10523076 1 0 -researcher%1:18:00:: 10523076 1 3 -reseat%2:35:00:: 01544558 3 0 -reseat%2:40:00:: 02334173 2 0 -reseat%2:40:01:: 02334458 1 0 -reseau%1:06:00:: 04078002 2 0 -reseau%1:06:01:: 04078150 1 0 -resect%2:35:00:: 01255057 1 0 -resection%1:04:00:: 00691050 1 0 -reseda%1:20:00:: 12385429 1 0 -reseda_luteola%1:20:00:: 12385830 1 0 -reseda_odorata%1:20:00:: 12385566 1 0 -resedaceae%1:20:00:: 12385046 1 0 -reseed%2:34:00:: 01185148 2 0 -reseed%2:35:00:: 01501575 1 0 -resell%2:40:00:: 02243630 1 0 -resemblance%1:07:00:: 04747445 1 7 -resemble%2:42:00:: 02665282 1 24 -resent%2:37:00:: 01773346 1 14 -resent%2:37:01:: 01825125 2 0 -resentful%3:00:00:: 00116529 1 4 -resentfully%4:02:00:: 00441436 1 1 -resentment%1:12:00:: 07548978 1 6 -reserpine%1:06:00:: 04078236 1 1 -reservation%1:04:00:: 00820091 7 0 -reservation%1:04:01:: 01218327 4 1 -reservation%1:09:00:: 05698620 3 1 -reservation%1:09:01:: 05795460 6 0 -reservation%1:10:00:: 06762380 2 1 -reservation%1:10:01:: 07177772 5 0 -reservation%1:15:00:: 08587174 1 5 -reserve%1:07:00:: 04652438 7 0 -reserve%1:07:01:: 04900121 1 2 -reserve%1:14:00:: 08206460 6 0 -reserve%1:15:00:: 08587174 5 0 -reserve%1:18:00:: 10671042 3 1 -reserve%1:21:00:: 13368052 2 1 -reserve%1:23:00:: 13759773 4 0 -reserve%2:31:00:: 00724150 2 6 -reserve%2:32:00:: 00795632 3 1 -reserve%2:40:03:: 02214485 1 7 -reserve%2:41:00:: 02498320 4 0 -reserve_account%1:21:00:: 13370014 1 0 -reserve_assets%1:21:00:: 13330764 1 0 -reserve_bank%1:14:00:: 08350919 1 0 -reserve_clause%1:10:00:: 06394282 1 0 -reserve_fund%1:21:00:: 13370014 1 0 -reserve_officers_training_corps%1:14:00:: 08212920 1 0 -reserved%3:00:01:: 01987341 2 0 -reserved%3:00:02:: 01988324 1 0 -reservedly%4:02:00:: 00441649 1 0 -reserves%1:14:00:: 08390511 1 5 -reservist%1:18:00:: 10523341 1 0 -reservoir%1:06:00:: 04078574 3 1 -reservoir%1:06:01:: 04078747 2 1 -reservoir%1:17:00:: 09407867 4 0 -reservoir%1:23:00:: 13776854 1 2 -reset%1:06:00:: 04078955 1 0 -reset%2:30:00:: 00298773 2 0 -reset%2:30:01:: 00297669 3 0 -reset%2:32:00:: 00947591 1 1 -reset_button%1:06:00:: 04079106 1 0 -resettle%2:30:00:: 00415828 1 1 -resettled%5:00:00:settled:01 02126796 1 0 -resettlement%1:04:00:: 01252566 1 0 -resew%2:35:00:: 01329875 1 0 -resh%1:10:00:: 06838760 1 0 -reshape%2:31:00:: 00702065 1 1 -reshape%2:36:00:: 01660870 2 0 -reship%2:35:00:: 01497141 1 0 -reshipment%1:04:00:: 00061453 1 0 -reshoot%2:32:00:: 01003741 1 0 -resht%1:15:00:: 08912153 1 0 -reshuffle%1:04:00:: 00340662 2 0 -reshuffle%1:04:01:: 01084489 1 0 -reshuffle%2:30:01:: 00278710 2 0 -reshuffle%2:35:00:: 01418959 1 0 -reshuffling%1:04:00:: 00340662 1 0 -resid%1:27:00:: 14980784 1 0 -reside%2:42:00:: 02650552 1 10 -reside%2:42:01:: 02648639 2 1 -reside%2:42:12:: 02664664 3 0 -residence%1:04:00:: 01053920 3 2 -residence%1:06:00:: 04079244 2 2 -residence%1:06:01:: 03719053 4 1 -residence%1:15:00:: 08558963 1 11 -residence_hall%1:06:00:: 03224893 1 0 -residence_time%1:28:00:: 15134233 1 0 -residency%1:04:00:: 01053920 1 0 -residency%1:04:01:: 00599064 2 0 -resident%1:18:00:: 10523519 1 6 -resident%1:18:01:: 10189278 2 0 -resident%3:00:00:: 02125409 1 2 -resident%3:00:04:: 02129136 2 1 -resident_commissioner%1:18:00:: 10524076 1 0 -resident_physician%1:18:00:: 10189278 1 0 -residential%3:00:00:: 00485044 1 13 -residential%3:01:00:: 03109795 2 5 -residential_area%1:15:00:: 08553535 1 0 -residential_district%1:15:00:: 08553535 1 0 -residentially%4:02:00:: 00511205 1 0 -residual%1:21:00:: 13292989 2 0 -residual%1:24:00:: 13810818 1 0 -residual%3:01:00:: 02835654 1 1 -residual_clay%1:27:00:: 14695588 1 0 -residual_oil%1:27:00:: 14980784 1 0 -residual_soil%1:27:00:: 14695588 1 0 -residuary%3:01:00:: 02835654 2 0 -residuary%3:01:01:: 03109963 1 0 -residue%1:24:00:: 13810818 2 1 -residue%1:27:00:: 15004501 1 2 -residuum%1:24:00:: 13810818 1 0 -resift%2:35:00:: 01460712 1 1 -resign%2:31:00:: 00732394 4 0 -resign%2:40:04:: 02316304 3 0 -resign%2:41:00:: 02367032 1 9 -resign%2:41:05:: 02382367 2 0 -resignation%1:10:00:: 07254267 2 1 -resignation%1:10:01:: 06511560 3 1 -resignation%1:12:00:: 07542433 1 1 -resignedly%4:02:00:: 00441740 1 1 -resignedly%4:02:01:: 00264339 2 0 -resile%2:30:02:: 00387680 4 0 -resile%2:32:00:: 00798717 3 0 -resile%2:38:00:: 01892104 2 0 -resile%2:41:00:: 02381227 1 0 -resilience%1:07:00:: 05020697 1 1 -resilience%1:11:00:: 07350567 2 0 -resiliency%1:07:00:: 05020697 2 0 -resiliency%1:11:00:: 07350567 1 0 -resilient%5:00:00:elastic:00 00843595 2 0 -resilient%5:00:00:spirited:00 02280566 1 0 -resin%1:27:00:: 14894140 1 0 -resinate%2:39:00:: 02192383 1 0 -resinated%3:01:00:: 02853146 1 0 -resinlike%3:01:00:: 02788554 1 0 -resinoid%1:27:00:: 14695953 1 0 -resinous%5:00:00:adhesive:00 00054364 1 0 -resiny%5:00:00:adhesive:00 00054364 1 1 -resist%2:33:00:: 01116585 2 11 -resist%2:33:01:: 01115916 4 1 -resist%2:41:00:: 02583545 6 0 -resist%2:41:02:: 02521410 3 2 -resist%2:42:01:: 02707800 1 12 -resist%2:42:04:: 02755017 5 0 -resistance%1:04:00:: 01169317 11 0 -resistance%1:04:01:: 00955987 4 1 -resistance%1:04:02:: 00202284 1 6 -resistance%1:06:00:: 04079933 10 0 -resistance%1:07:00:: 05213894 8 0 -resistance%1:07:01:: 04646372 9 0 -resistance%1:14:00:: 08360672 7 0 -resistance%1:19:00:: 11503644 2 4 -resistance%1:19:01:: 11503968 3 2 -resistance%1:26:00:: 14527171 5 0 -resistance%1:26:01:: 14526954 6 0 -resistance_pyrometer%1:06:00:: 04079603 1 0 -resistance_thermometer%1:06:00:: 04079746 1 1 -resistance_unit%1:23:00:: 13635553 1 0 -resistant%5:00:00:defiant:00 00695938 4 0 -resistant%5:00:00:impervious:00 01774869 3 0 -resistant%5:00:00:nonabsorbent:00 00007990 5 0 -resistant%5:00:00:tolerable:00 02435383 2 0 -resistant%5:00:00:unsusceptible:00 02363614 1 1 -resister%1:18:00:: 10349243 1 0 -resister%1:18:01:: 09773245 2 0 -resistible%3:00:00:: 01989012 1 0 -resisting_arrest%1:04:00:: 00772550 1 0 -resistive%3:01:00:: 03110183 1 1 -resistive%5:00:00:defiant:00 00695938 2 0 -resistivity%1:19:00:: 11503968 1 0 -resistless%3:00:04:: 01989175 1 0 -resistless%5:00:00:passive:01 00040058 2 0 -resistor%1:06:00:: 04079933 1 7 -resize%2:30:00:: 00319629 1 0 -resmudge%2:35:00:: 01252130 1 1 -resole%2:30:00:: 00533403 1 0 -resolute%3:00:00:: 01989669 1 1 -resolute%5:00:00:decisive:01 00685924 2 0 -resolutely%4:02:00:: 00241550 1 2 -resolutely%4:02:01:: 00298765 2 0 -resoluteness%1:07:00:: 04861486 1 0 -resolution%1:04:00:: 00180228 11 0 -resolution%1:04:01:: 00153809 4 2 -resolution%1:07:00:: 04861486 3 2 -resolution%1:09:00:: 05782884 6 1 -resolution%1:09:01:: 05789089 5 1 -resolution%1:10:00:: 06743506 10 0 -resolution%1:10:01:: 06511874 1 12 -resolution%1:10:02:: 07028221 9 0 -resolution%1:11:00:: 07420217 8 0 -resolution%1:19:00:: 11505769 2 2 -resolution%1:19:01:: 11505952 7 0 -resolvable%5:00:00:reconcilable:00 01986759 2 0 -resolvable%5:00:00:soluble:02 02266451 1 0 -resolve%1:07:00:: 04861486 1 1 -resolve%1:10:00:: 06511874 2 0 -resolve%2:30:07:: 00447309 7 0 -resolve%2:31:01:: 00698855 1 8 -resolve%2:31:02:: 00699626 3 6 -resolve%2:31:03:: 00733044 6 1 -resolve%2:31:04:: 00635523 4 3 -resolve%2:32:00:: 01021420 2 6 -resolve%2:39:00:: 02193612 5 1 -resolved%3:00:04:: 02267012 2 0 -resolved%5:00:00:resolute:00 01991267 1 2 -resolvent%1:27:00:: 15047313 1 0 -resolving%1:09:00:: 05782884 1 0 -resolving_power%1:19:00:: 11505769 1 0 -resonance%1:07:00:: 04989657 3 1 -resonance%1:07:01:: 04988258 5 0 -resonance%1:19:00:: 11477921 2 3 -resonance%1:19:01:: 11478299 1 5 -resonance%1:24:00:: 13811740 4 0 -resonant%5:00:00:mindful:00 01977669 2 0 -resonant%5:00:00:reverberant:00 02010536 1 3 -resonant_circuit%1:06:00:: 04080237 1 0 -resonate%2:31:00:: 00592037 2 0 -resonate%2:39:00:: 02175958 1 0 -resonating%5:00:00:reverberant:00 02010536 1 0 -resonating_chamber%1:06:00:: 04080454 1 0 -resonator%1:06:00:: 04080138 3 0 -resonator%1:06:01:: 04080237 2 0 -resonator%1:06:02:: 04080454 1 0 -resorb%2:35:00:: 01539913 1 0 -resorcinol%1:27:00:: 15004715 1 2 -resorcinolphthalein%1:27:00:: 14987695 1 0 -resorption%1:22:00:: 13550504 1 0 -resort%1:04:00:: 01208597 4 0 -resort%1:07:00:: 05155123 3 0 -resort%1:15:00:: 08640531 1 1 -resort%1:15:01:: 08581503 2 0 -resort%2:38:00:: 01843497 2 0 -resort%2:41:11:: 02590072 1 7 -resort_area%1:15:00:: 08640739 1 0 -resort_hotel%1:06:00:: 04080705 2 0 -resort_hotel%1:15:00:: 08640531 1 0 -resound%2:39:00:: 02172888 2 0 -resound%2:39:01:: 02183787 1 1 -resounding%5:00:00:reverberant:00 02010536 1 1 -resoundingly%4:02:00:: 00441999 1 0 -resource%1:07:00:: 05154676 2 8 -resource%1:09:00:: 05633860 3 2 -resource%1:21:00:: 13331778 1 12 -resourceful%5:00:00:capable:00 00307182 1 0 -resourcefully%4:02:00:: 00442135 1 0 -resourcefulness%1:07:00:: 05155476 1 1 -resourcefulness%1:09:00:: 05633860 2 0 -resourceless%5:00:00:poor:02 02024658 1 0 -respect%1:04:02:: 01132864 5 1 -respect%1:04:03:: 01228877 4 1 -respect%1:07:00:: 04913839 7 0 -respect%1:09:00:: 05820170 1 15 -respect%1:09:01:: 06206800 3 5 -respect%1:12:00:: 07545415 6 0 -respect%1:26:00:: 14437552 2 5 -respect%2:31:00:: 00694068 1 12 -respect%2:41:00:: 02457233 2 4 -respectability%1:07:00:: 04871002 1 0 -respectable%3:00:00:: 01993140 1 5 -respectable%5:00:00:considerable:00 00624576 3 2 -respectable%5:00:00:reputable:00 01983162 2 5 -respectably%4:02:00:: 00442218 2 0 -respectably%4:02:01:: 00442384 1 0 -respected%5:00:00:reputable:00 01983548 1 2 -respecter%1:18:00:: 10524223 1 0 -respectful%3:00:00:: 01993940 1 3 -respectful%5:00:00:reverent:00 02012333 2 0 -respectfully%4:02:00:: 00319275 1 0 -respectfulness%1:07:00:: 04913839 1 0 -respective%5:00:00:individual:00 00494409 1 4 -respectively%4:02:00:: 00137915 1 18 -respects%1:10:00:: 06714552 1 3 -respighi%1:18:00:: 11258214 1 0 -respiration%1:04:00:: 00830811 1 1 -respiration%1:04:01:: 00831191 3 0 -respiration%1:04:02:: 00831782 2 0 -respirator%1:06:00:: 04080833 1 0 -respirator%1:06:01:: 03424325 2 0 -respiratory%3:01:00:: 03110322 1 13 -respiratory_acidosis%1:26:00:: 14020271 1 0 -respiratory_alkalosis%1:26:00:: 14021622 1 0 -respiratory_center%1:08:00:: 05605192 1 0 -respiratory_disease%1:26:00:: 14145095 1 0 -respiratory_disorder%1:26:00:: 14145095 1 0 -respiratory_distress_syndrome%1:26:00:: 14150740 1 0 -respiratory_distress_syndrome_of_the_newborn%1:26:00:: 14150740 1 0 -respiratory_illness%1:26:00:: 14145095 1 0 -respiratory_infection%1:26:00:: 14179104 1 0 -respiratory_organ%1:08:00:: 05528060 1 0 -respiratory_quotient%1:24:00:: 13825292 1 0 -respiratory_rate%1:28:00:: 15281653 1 0 -respiratory_syncytial_virus%1:05:00:: 01337329 1 0 -respiratory_system%1:08:00:: 05509889 1 0 -respiratory_tract%1:08:00:: 05510173 1 2 -respiratory_tract_infection%1:26:00:: 14179104 1 0 -respire%2:29:00:: 00001740 3 0 -respire%2:29:01:: 00002325 2 0 -respire%2:29:02:: 00002573 1 0 -respite%1:04:00:: 01062997 2 2 -respite%1:04:01:: 01259034 5 0 -respite%1:11:00:: 07368256 3 1 -respite%1:26:00:: 14446034 1 2 -respite%1:28:00:: 15274074 4 0 -respite%2:42:01:: 02644035 1 0 -resplend%2:42:00:: 02733453 1 0 -resplendence%1:07:00:: 04684358 1 0 -resplendency%1:07:00:: 04684358 1 0 -resplendent%5:00:00:beautiful:00 00219389 1 1 -resplendent_quetzel%1:05:00:: 01844746 1 0 -resplendent_trogon%1:05:00:: 01844746 1 0 -resplendently%4:02:00:: 00350163 1 0 -respond%2:31:00:: 00717358 1 33 -respond%2:31:01:: 00718737 3 1 -respond%2:32:00:: 00815686 2 7 -respondent%1:18:00:: 10524413 2 0 -respondent%1:18:01:: 10524711 1 0 -respondent%5:00:00:responsive:00 01999608 1 0 -responder%1:18:00:: 10524413 1 0 -response%1:04:01:: 00859001 2 11 -response%1:07:00:: 05212808 7 0 -response%1:10:00:: 07199565 6 0 -response%1:10:01:: 06746005 3 6 -response%1:10:02:: 06630852 4 4 -response%1:10:03:: 06385582 5 1 -response%1:19:00:: 11416988 1 11 -response_time%1:28:00:: 15273241 1 0 -responsibility%1:04:00:: 01129920 1 17 -responsibility%1:07:00:: 04669247 3 2 -responsibility%1:26:00:: 14515633 2 2 -responsible%3:00:00:: 01996377 1 9 -responsible%5:00:00:causative:00 00324878 2 1 -responsible%5:00:00:trustworthy:00 02465350 3 0 -responsible_for%5:00:00:causative:00 00324878 1 9 -responsibleness%1:07:00:: 04669247 1 0 -responsibly%4:02:00:: 00106503 1 1 -responsive%3:00:00:: 01999306 2 0 -responsive%3:01:00:: 03110741 1 0 -responsive%5:00:00:sensitive:01 02105176 3 0 -responsiveness%1:07:00:: 05212973 2 0 -responsiveness%1:09:00:: 05653575 1 2 -rest%1:04:00:: 01064148 2 6 -rest%1:06:00:: 04081044 6 1 -rest%1:10:00:: 06865177 7 0 -rest%1:24:00:: 13810818 1 44 -rest%1:26:00:: 14012501 4 1 -rest%1:26:01:: 13962765 5 1 -rest%1:28:00:: 15274074 3 3 -rest%2:29:00:: 00014405 5 4 -rest%2:30:00:: 00117985 6 2 -rest%2:32:00:: 00779360 2 8 -rest%2:32:01:: 00779601 3 6 -rest%2:35:00:: 01545883 1 20 -rest%2:35:01:: 01543731 9 1 -rest%2:35:02:: 01502946 10 1 -rest%2:35:04:: 01610101 8 1 -rest%2:41:00:: 02595840 11 0 -rest%2:42:00:: 02731390 4 4 -rest%2:42:12:: 02664664 7 1 -rest-cure%1:04:00:: 00711413 1 0 -rest-harrow%1:20:01:: 12552893 2 0 -rest-harrow%1:20:02:: 12553114 1 0 -rest_area%1:06:00:: 04020744 1 0 -rest_day%1:28:00:: 15137047 1 0 -rest_energy%1:19:00:: 11453210 1 0 -rest_home%1:06:00:: 03528100 1 0 -rest_house%1:06:00:: 04081699 1 0 -rest_mass%1:07:00:: 05024931 1 0 -rest_on%2:35:00:: 01590007 1 8 -rest_on%2:42:00:: 02663643 2 6 -rest_period%1:28:00:: 15274074 1 0 -rest_stop%1:06:00:: 04020744 1 0 -restart%2:30:00:: 00350104 2 0 -restart%2:38:00:: 01858686 1 0 -restate%2:32:00:: 00958334 1 2 -restatement%1:10:00:: 06768901 1 4 -restaurant%1:06:00:: 04081281 1 7 -restaurant_attendant%1:18:00:: 10013614 1 0 -restaurant_chain%1:14:00:: 08061801 1 0 -restauranter%1:18:00:: 10524869 1 0 -restaurateur%1:18:00:: 10524869 1 0 -rested%3:00:00:: 02434605 1 0 -rester%1:18:00:: 10524973 1 0 -restful%3:00:00:: 01922227 1 0 -restfully%4:02:00:: 00438146 1 0 -restfulness%1:07:00:: 04636250 1 0 -restharrow%1:20:01:: 12552893 2 0 -restharrow%1:20:02:: 12553114 1 0 -resting_potential%1:19:00:: 11494287 1 0 -resting_spore%1:20:00:: 11549487 1 0 -restitute%2:30:00:: 00164201 2 0 -restitute%2:40:00:: 02310482 1 0 -restitution%1:04:00:: 00089351 3 0 -restitution%1:04:01:: 00270275 2 0 -restitution%1:21:00:: 13290676 1 0 -restive%5:00:00:impatient:00 01737503 2 0 -restive%5:00:00:tense:03 02406370 1 2 -restively%4:02:00:: 00237529 1 1 -restiveness%1:07:00:: 04625716 2 0 -restiveness%1:12:00:: 07525760 1 0 -restless%3:00:00:: 01922562 3 0 -restless%5:00:00:discontented:00 00590271 1 2 -restless%5:00:00:moving:02 01563578 2 1 -restless_legs%1:26:00:: 14309394 1 0 -restless_legs_syndrome%1:26:00:: 14309394 1 0 -restlessly%4:02:00:: 00207012 1 2 -restlessness%1:07:00:: 04625284 4 0 -restlessness%1:07:01:: 04774743 1 1 -restlessness%1:12:00:: 07513795 3 0 -restlessness%1:26:00:: 14407283 2 0 -restock%2:40:00:: 02322924 1 1 -restoration%1:04:00:: 00268557 2 1 -restoration%1:04:01:: 00089351 3 1 -restoration%1:04:02:: 01307606 7 0 -restoration%1:06:00:: 04083468 5 0 -restoration%1:06:01:: 04062989 6 0 -restoration%1:26:00:: 14424517 4 0 -restoration%1:28:00:: 15261868 1 1 -restorative%1:06:00:: 03111899 2 0 -restorative%1:06:01:: 04451473 1 0 -restorative%5:00:00:healthful:00 01167540 2 0 -restorative%5:00:00:invigorating:00 01357742 1 0 -restore%2:30:00:: 00168588 2 4 -restore%2:30:01:: 00260648 4 1 -restore%2:40:00:: 02310482 3 2 -restore%2:41:00:: 02426799 5 0 -restore%2:41:01:: 02552449 1 10 -restorer%1:18:00:: 10514962 1 0 -restoril%1:06:00:: 04407007 1 0 -restrain%2:30:00:: 00233335 2 3 -restrain%2:35:00:: 01301410 3 1 -restrain%2:35:01:: 01301051 4 1 -restrain%2:37:00:: 01819554 5 0 -restrain%2:41:01:: 02422663 1 11 -restrained%3:00:00:: 02000118 2 1 -restrained%5:00:00:cautious:00 00326202 5 0 -restrained%5:00:00:temperate:00 02402078 3 0 -restrained%5:00:00:undemonstrative:00 00721050 1 2 -restrained%5:00:00:unostentatious:00 01849170 4 0 -restrainer%1:18:00:: 10525134 2 0 -restrainer%1:27:00:: 15004874 1 0 -restraint%1:04:00:: 01145359 1 5 -restraint%1:06:00:: 04081844 6 0 -restraint%1:07:00:: 04882968 2 2 -restraint%1:07:01:: 04697442 5 0 -restraint%1:09:00:: 06247701 4 0 -restraint%1:26:00:: 13998781 3 0 -restraint_of_trade%1:04:00:: 01148491 1 0 -restrengthen%2:30:00:: 00221607 1 0 -restrict%2:30:00:: 00233335 3 4 -restrict%2:30:01:: 00199309 4 2 -restrict%2:30:02:: 00236592 1 9 -restrict%2:41:00:: 02509287 2 5 -restricted%3:00:00:: 02002227 1 2 -restricted%5:00:00:classified:02 00415931 3 0 -restricted%5:00:00:modified:00 01540871 2 1 -restricting%5:00:00:restrictive:00 02004023 1 1 -restriction%1:04:00:: 00808182 2 1 -restriction%1:04:01:: 01148614 3 0 -restriction%1:09:00:: 05846355 1 5 -restriction_endonuclease%1:27:00:: 15005071 1 0 -restriction_enzyme%1:27:00:: 15005071 1 0 -restriction_fragment%1:17:00:: 09408105 1 0 -restriction_nuclease%1:27:00:: 15005071 1 0 -restriction_site%1:15:00:: 08623800 1 0 -restrictive%3:00:00:: 02003725 1 1 -restrictive%5:00:00:protective:00 01888941 2 1 -restrictive_clause%1:10:00:: 06315301 1 0 -restrictively%4:02:00:: 00442540 1 0 -restrictiveness%1:07:00:: 04639113 2 0 -restrictiveness%1:24:00:: 13801040 1 0 -restroom%1:06:00:: 04018667 1 0 -restructure%2:30:02:: 00404401 1 0 -resublime%2:30:00:: 00366741 1 0 -resubmit%2:40:00:: 02310157 1 0 -result%1:10:00:: 06743506 2 25 -result%1:10:01:: 06333285 4 0 -result%1:11:00:: 07292694 3 24 -result%1:19:00:: 11410625 1 83 -result%2:30:00:: 00340704 3 0 -result%2:42:00:: 02634265 1 45 -result%2:42:02:: 02635659 2 38 -resultant%1:09:00:: 05865034 3 0 -resultant%1:11:00:: 07292694 2 0 -resultant%1:26:00:: 13941337 1 0 -resultant%5:00:00:subsequent:00 00122844 1 5 -resultant_role%1:10:00:: 06333285 1 0 -resulting_trust%1:21:00:: 13362182 1 0 -resume%1:10:00:: 06469694 1 4 -resume%1:10:01:: 06468403 2 0 -resume%2:30:00:: 00350104 1 17 -resume%2:30:01:: 00350283 2 5 -resume%2:32:00:: 01007924 4 0 -resume%2:41:00:: 02381951 3 4 -resumption%1:04:00:: 00242003 1 1 -resupine%5:00:00:unerect:00 01239781 1 0 -resurface%2:30:00:: 00425691 3 0 -resurface%2:35:00:: 01265649 2 0 -resurface%2:38:00:: 01990848 1 0 -resurge%2:42:00:: 02624806 1 0 -resurgence%1:04:00:: 01047338 1 0 -resurgent%5:00:00:revived:00 02013864 1 0 -resurrect%2:29:00:: 00098517 1 1 -resurrect%2:29:01:: 00098770 3 0 -resurrect%2:30:00:: 00168910 2 0 -resurrection%1:04:00:: 01048059 2 0 -resurrection%1:11:00:: 07312018 1 0 -resurrection_fern%1:20:00:: 13173259 1 0 -resurrection_of_christ%1:11:00:: 07312018 1 0 -resurrection_plant%1:20:01:: 11871059 2 0 -resurrection_plant%1:20:02:: 13225365 1 0 -resurvey%1:04:00:: 00879531 1 0 -resuscitate%2:29:00:: 00098083 1 0 -resuscitate%2:29:01:: 00024047 2 0 -resuscitated%5:00:00:revived:00 02014048 1 0 -resuscitation%1:04:00:: 01048210 1 0 -resuscitator%1:06:00:: 04082344 1 0 -resuspend%2:30:00:: 00148967 1 3 -resuspension%1:27:00:: 14591481 1 1 -ret%2:30:00:: 00216991 1 0 -retail%1:04:00:: 01114458 1 1 -retail%2:40:00:: 02247028 2 0 -retail%2:42:00:: 02728570 1 1 -retail%4:02:00:: 00442669 1 0 -retail_chain%1:14:00:: 08062206 1 0 -retail_merchant%1:18:00:: 10525436 1 0 -retail_price_index%1:10:00:: 06641423 1 0 -retail_store%1:06:00:: 03748162 1 0 -retailer%1:18:00:: 10525436 1 5 -retailing%1:04:00:: 01115866 1 4 -retain%2:31:00:: 00610010 4 0 -retain%2:40:00:: 02283324 3 1 -retain%2:41:01:: 02410175 2 2 -retain%2:42:00:: 02701628 1 2 -retained%5:00:00:preserved:01 00737801 1 1 -retained_object%1:10:00:: 06310848 1 0 -retainer%1:06:00:: 04082562 3 0 -retainer%1:18:00:: 10582154 2 0 -retainer%1:21:00:: 13323313 1 0 -retaining_wall%1:06:00:: 04082710 1 0 -retake%1:04:00:: 00908292 1 0 -retake%2:32:00:: 01003588 3 0 -retake%2:35:00:: 01439604 2 0 -retake%2:40:00:: 02304013 1 0 -retaking%1:04:00:: 00096969 1 0 -retaliate%2:33:00:: 01153165 2 1 -retaliate%2:33:01:: 01153486 1 1 -retaliation%1:04:00:: 01235258 1 3 -retaliator%1:18:00:: 09826074 1 0 -retaliatory%5:00:00:punitive:00 01903160 1 0 -retaliatory_eviction%1:04:00:: 01195187 1 0 -retama%1:20:00:: 12567316 1 0 -retama_raetam%1:20:00:: 12567490 1 0 -retard%1:18:00:: 10197525 1 0 -retard%2:30:00:: 00439958 4 0 -retard%2:30:01:: 00438752 1 1 -retard%2:30:07:: 00440286 3 0 -retard%2:42:00:: 02752567 2 0 -retardant%1:17:00:: 09408250 1 0 -retardation%1:04:00:: 01067577 5 0 -retardation%1:07:00:: 05061345 1 1 -retardation%1:09:00:: 05646218 4 0 -retardation%1:17:00:: 09408250 3 0 -retardation%1:28:00:: 15275598 2 0 -retarded%1:14:00:: 07948971 1 0 -retarded%3:00:00:: 01840366 1 1 -retarded_depression%1:26:00:: 14391319 1 0 -retardent%1:17:00:: 09408250 1 0 -retarding_force%1:19:00:: 11504898 1 0 -retch%1:04:00:: 00226951 1 0 -retch%2:29:00:: 00076400 1 1 -retch%2:29:01:: 00077458 2 0 -rete%1:08:00:: 05236322 1 0 -rete_malpighii%1:08:00:: 05243704 1 0 -rete_testis%1:08:00:: 05525807 1 0 -retell%2:32:00:: 00958334 3 0 -retell%2:36:00:: 01703454 1 0 -retell%2:36:07:: 01635176 2 0 -retem%1:20:00:: 12567490 1 0 -retention%1:04:00:: 00810598 1 8 -retention%1:07:00:: 04942172 3 0 -retention%1:09:00:: 05651399 2 1 -retention_basin%1:15:00:: 08519444 1 0 -retentive%3:00:00:: 02005756 1 1 -retentive%3:01:00:: 03110952 2 0 -retentive%5:00:00:impermeable:00 01772914 3 0 -retentively%4:02:00:: 00442884 1 0 -retentiveness%1:07:00:: 04946400 2 0 -retentiveness%1:07:02:: 04942172 3 0 -retentiveness%1:09:00:: 05651399 1 1 -retentivity%1:07:00:: 04942172 3 0 -retentivity%1:07:01:: 04946400 2 0 -retentivity%1:09:00:: 05651399 1 0 -rethink%1:09:00:: 05790012 1 0 -rethink%2:31:00:: 00688768 1 2 -reticence%1:07:00:: 04652438 1 0 -reticent%5:00:00:taciturn:00 02383709 1 0 -reticent%5:00:00:unassertive:00 00157268 3 0 -reticent%5:00:00:undemonstrative:00 00721050 2 0 -reticently%4:02:00:: 00442963 1 0 -retick%2:35:00:: 01331689 1 0 -reticle%1:06:00:: 04082886 1 0 -reticular%3:00:00:: 02006228 1 0 -reticular_activating_system%1:08:00:: 05502375 1 0 -reticular_formation%1:08:00:: 05502090 1 0 -reticulate%2:35:00:: 01585142 3 0 -reticulate%2:41:00:: 02479853 2 0 -reticulate%2:42:00:: 02625659 1 0 -reticulate%3:00:00:: 02006228 1 3 -reticulated_python%1:05:00:: 01744100 1 0 -reticulation%1:06:00:: 04083113 2 0 -reticulation%1:22:00:: 13550755 1 0 -reticule%1:06:00:: 04083309 1 0 -reticule%1:06:01:: 04082886 2 0 -reticulitermes%1:05:00:: 02223694 1 0 -reticulitermes_flanipes%1:05:00:: 02223901 1 0 -reticulitermes_lucifugus%1:05:00:: 02224023 1 0 -reticulocyte%1:08:00:: 05454702 1 0 -reticuloendothelial_system%1:08:00:: 05461349 1 0 -reticulum%1:05:00:: 02399648 3 0 -reticulum%1:08:00:: 05501485 2 0 -reticulum%1:17:00:: 09408412 1 0 -retie%2:35:00:: 01285286 1 1 -retina%1:08:00:: 05426989 1 1 -retinal%1:27:00:: 15005386 1 0 -retinal%3:01:00:: 02979139 1 3 -retinal_cone%1:08:00:: 05456257 1 0 -retinal_detachment%1:26:00:: 14555962 1 0 -retinal_purple%1:27:00:: 15088869 1 0 -retinal_rod%1:08:00:: 05456456 1 0 -retinal_scanning%1:10:00:: 06645831 1 0 -retinene%1:27:00:: 15005386 1 0 -retinitis%1:26:00:: 14354960 1 0 -retinoblastoma%1:26:00:: 14250850 1 0 -retinol%1:27:00:: 15090065 1 0 -retinopathy%1:26:00:: 14257014 1 0 -retinue%1:14:00:: 08429167 1 0 -retire%2:29:00:: 00017865 11 0 -retire%2:33:00:: 01154175 10 0 -retire%2:35:00:: 01615457 9 0 -retire%2:37:00:: 01766952 8 0 -retire%2:38:00:: 01994442 3 2 -retire%2:40:00:: 02225342 7 1 -retire%2:41:00:: 02428487 5 1 -retire%2:41:01:: 02379753 1 18 -retire%2:41:02:: 02380009 2 7 -retire%2:41:03:: 02380251 6 1 -retire%2:41:04:: 02480448 4 1 -retired%5:00:00:inactive:08 00035368 1 11 -retired_person%1:18:00:: 10525617 1 1 -retiree%1:18:00:: 10525617 1 0 -retirement%1:04:00:: 00212205 2 1 -retirement%1:04:01:: 00054652 3 0 -retirement%1:26:00:: 13954118 1 9 -retirement_account%1:09:00:: 05911255 1 0 -retirement_benefit%1:21:00:: 13384341 1 0 -retirement_check%1:21:00:: 13384341 1 0 -retirement_community%1:15:00:: 08554040 1 0 -retirement_complex%1:15:00:: 08554040 1 0 -retirement_fund%1:21:00:: 13384341 1 0 -retirement_pension%1:21:00:: 13384341 1 0 -retirement_plan%1:09:00:: 05911255 1 0 -retirement_program%1:09:00:: 05911255 1 0 -retirement_savings_account%1:09:00:: 05911255 1 0 -retirement_savings_plan%1:09:00:: 05911255 1 0 -retiring%5:00:00:modest:02 01539444 1 0 -retiring%5:00:00:outgoing:00 01296091 2 0 -retiring%5:00:00:unassertive:00 00157268 3 0 -retool%2:40:00:: 02338109 2 0 -retool%2:41:00:: 02433549 1 0 -retort%1:06:00:: 04083649 2 0 -retort%1:10:00:: 07199922 1 1 -retort%2:32:00:: 00816353 1 4 -retouch%2:30:00:: 00230562 2 0 -retouch%2:30:01:: 00288563 1 0 -retrace%2:31:00:: 00634090 2 0 -retrace%2:38:00:: 02004352 1 6 -retract%2:32:00:: 00798717 1 3 -retract%2:35:00:: 01506583 4 0 -retract%2:35:02:: 01609773 3 0 -retract%2:38:00:: 02061366 2 0 -retractable%5:00:00:retractile:00 02007663 1 0 -retracted%5:00:00:backward:01 00202772 1 0 -retractile%3:00:00:: 02007508 1 0 -retraction%1:04:00:: 00341695 2 0 -retraction%1:10:00:: 07206096 1 0 -retractor%1:06:00:: 04083800 1 0 -retrain%2:31:00:: 00603179 2 0 -retrain%2:31:01:: 00603822 1 0 -retraining%1:04:00:: 00895879 1 1 -retral%5:00:00:backward:01 00202875 1 0 -retral%5:00:00:posterior:00 00132040 2 0 -retranslate%2:32:00:: 00960369 1 1 -retransmit%2:38:00:: 02080924 1 0 -retread%1:06:00:: 04083942 1 0 -retread%2:30:00:: 00164072 2 0 -retread%2:36:00:: 01669285 1 0 -retreat%1:04:00:: 00056912 1 3 -retreat%1:04:01:: 00054652 6 0 -retreat%1:04:02:: 00054483 7 0 -retreat%1:06:00:: 03517647 5 0 -retreat%1:10:00:: 06804847 4 0 -retreat%1:10:01:: 06804988 3 0 -retreat%1:15:00:: 08643015 2 0 -retreat%2:32:00:: 00799383 4 0 -retreat%2:38:00:: 01994442 1 10 -retreat%2:38:01:: 01994846 3 0 -retreat%2:38:02:: 02092476 2 0 -retreatant%1:18:00:: 10525785 1 0 -retreated%1:14:00:: 07950295 1 1 -retrench%2:30:00:: 00430099 2 0 -retrench%2:40:00:: 02269767 1 0 -retrenchment%1:04:00:: 00192910 2 0 -retrenchment%1:06:00:: 04084089 1 0 -retrial%1:04:00:: 01199365 1 0 -retribution%1:04:00:: 00259544 2 1 -retribution%1:04:01:: 01235463 3 0 -retribution%1:21:00:: 13300828 1 1 -retributive%5:00:00:just:00 01370305 2 0 -retributive%5:00:00:punitive:00 01903160 1 0 -retributory%5:00:00:just:00 01370305 2 0 -retributory%5:00:00:punitive:00 01903160 1 0 -retrievable%5:00:00:recoverable:00 01956370 1 0 -retrieval%1:04:00:: 00045907 3 0 -retrieval%1:09:00:: 05761380 2 0 -retrieval%1:22:00:: 13550940 1 0 -retrieve%2:31:00:: 00607780 4 0 -retrieve%2:35:00:: 01433809 3 0 -retrieve%2:35:02:: 01433991 2 0 -retrieve%2:40:00:: 02247977 1 10 -retriever%1:05:00:: 02099029 1 0 -retro%1:09:00:: 05751430 1 0 -retro%5:00:00:retrospective:00 01884744 1 0 -retroactive%3:00:00:: 02592396 1 0 -retroactive%5:00:00:retrospective:00 01884744 2 0 -retroactively%4:02:00:: 00212866 1 0 -retrobulbar_neuritis%1:26:00:: 14353479 1 0 -retrofit%1:04:00:: 00364053 2 0 -retrofit%1:06:00:: 04084234 1 0 -retrofit%2:30:00:: 00262348 3 0 -retrofit%2:35:00:: 01569896 2 0 -retrofit%2:40:00:: 02361329 1 0 -retroflection%1:04:00:: 00341890 3 0 -retroflection%1:10:00:: 07132226 2 0 -retroflection%1:26:00:: 14531598 1 0 -retroflex%2:32:00:: 00979411 2 0 -retroflex%2:38:00:: 02036498 1 0 -retroflex%5:00:00:backward:01 00203030 1 0 -retroflex%5:00:02:backward:01 00201802 2 0 -retroflexed%5:00:00:backward:01 00203030 1 0 -retroflexion%1:04:00:: 00341890 3 0 -retroflexion%1:10:00:: 07132226 2 0 -retroflexion%1:26:00:: 14531598 1 0 -retrograde%2:30:00:: 00249313 5 0 -retrograde%2:32:00:: 01009097 4 0 -retrograde%2:38:00:: 01994846 3 0 -retrograde%2:38:01:: 01994960 2 0 -retrograde%2:38:02:: 01995097 1 0 -retrograde%3:00:00:: 00130151 2 0 -retrograde%3:00:05:: 00770114 1 0 -retrograde%5:00:00:regressive:01 01877299 3 0 -retrograde%5:00:02:backward:01 00202875 4 0 -retrograde_amnesia%1:09:00:: 05673088 1 0 -retrogress%2:29:00:: 00093327 2 0 -retrogress%2:30:00:: 00249313 1 0 -retrogression%1:04:00:: 00235208 2 0 -retrogression%1:11:00:: 07426893 1 0 -retrogressive%5:00:00:regressive:01 01877299 1 1 -retromandibular_vein%1:08:00:: 05379438 1 0 -retronym%1:10:00:: 06303315 1 0 -retrophyllum%1:20:00:: 11658872 1 0 -retrorocket%1:06:00:: 04084363 1 0 -retrorse%3:00:00:: 00123804 1 0 -retrospect%1:09:00:: 05788029 1 1 -retrospect%2:31:00:: 00696414 1 0 -retrospection%1:09:00:: 05764973 2 0 -retrospection%1:10:00:: 06766654 1 0 -retrospective%1:14:00:: 08407969 1 1 -retrospective%3:00:00:: 01884539 1 0 -retrospectively%4:02:00:: 00443097 1 0 -retrousse%5:00:00:shapely:00 02140144 1 0 -retroversion%1:04:00:: 00235208 3 0 -retroversion%1:10:00:: 06347388 2 0 -retroversion%1:26:00:: 14531598 1 0 -retrovert%2:30:00:: 00387310 1 0 -retrovir%1:06:00:: 02765429 1 0 -retrovirus%1:05:00:: 01336282 1 0 -retrovision%1:09:00:: 05775919 1 1 -retry%2:41:06:: 02501159 1 0 -retsina%1:13:00:: 07897116 1 0 -return%1:04:00:: 00328015 5 2 -return%1:04:01:: 00051192 2 6 -return%1:04:02:: 00089351 4 3 -return%1:04:04:: 00566298 11 0 -return%1:04:05:: 00559724 12 0 -return%1:04:06:: 01234729 10 0 -return%1:04:07:: 00050887 13 0 -return%1:06:00:: 04084517 9 0 -return%1:10:01:: 06548671 1 32 -return%1:10:02:: 07199922 8 0 -return%1:11:01:: 07343363 7 0 -return%1:11:02:: 07447022 3 3 -return%1:21:00:: 13260190 6 1 -return%2:30:00:: 00387310 3 12 -return%2:30:01:: 00548153 9 2 -return%2:32:00:: 00959524 4 5 -return%2:32:01:: 00816353 8 2 -return%2:32:02:: 00879028 16 0 -return%2:32:03:: 01062253 11 1 -return%2:35:01:: 01433159 7 2 -return%2:36:00:: 01629000 15 0 -return%2:38:00:: 02004874 1 111 -return%2:38:01:: 02005617 14 0 -return%2:38:12:: 02078294 5 3 -return%2:40:00:: 02284951 10 1 -return%2:40:03:: 02357072 6 2 -return%2:40:08:: 02310007 2 14 -return%2:40:13:: 02229550 13 0 -return%2:41:00:: 02401296 12 0 -return_address%1:10:00:: 06787429 1 1 -return_key%1:06:00:: 04084517 1 0 -return_on_invested_capital%1:28:00:: 15281329 1 0 -return_on_investment%1:28:00:: 15281329 1 0 -return_ticket%1:10:00:: 06519936 1 0 -returnable%3:00:00:: 00776922 1 0 -returning%5:00:00:backward:01 00203123 2 0 -returning%5:00:00:regressive:01 01877416 1 0 -returning_officer%1:18:00:: 10525878 1 0 -reuben%1:13:00:: 07698543 2 0 -reuben%1:18:00:: 11258353 1 0 -reuben_lucius_goldberg%1:18:00:: 11004485 1 0 -reunification%1:04:00:: 00382474 1 0 -reunify%2:41:00:: 02470893 1 0 -reunion%1:04:00:: 00382474 2 1 -reunion%1:14:00:: 08478371 1 1 -reunite%2:41:00:: 02486822 1 2 -reunite%2:41:01:: 02470893 2 2 -reuptake%1:22:00:: 13551396 1 0 -reusable%5:00:00:useful:00 02496425 1 0 -reusable_program%1:10:00:: 06578203 1 0 -reusable_routine%1:10:00:: 06584256 1 0 -reuse%2:34:00:: 01162425 1 1 -rev%1:28:00:: 15281870 1 0 -rev%2:30:00:: 00439698 1 1 -rev_up%2:30:00:: 00439698 2 0 -rev_up%2:30:01:: 00439849 1 0 -revaluation%1:09:00:: 05747582 1 0 -revalue%2:30:00:: 00316195 1 0 -revalue%2:30:01:: 00315810 2 0 -revamp%2:30:00:: 00163915 1 3 -revamp%2:30:01:: 00533527 2 0 -reveal%2:32:00:: 00933821 2 17 -reveal%2:39:00:: 02143283 1 34 -reveal%2:39:04:: 02144243 3 0 -revealed_religion%1:09:00:: 05949472 1 0 -revealing%1:10:00:: 07213395 1 0 -revealing%3:00:00:: 02091165 2 0 -revealing%5:00:00:informative:00 01305344 1 1 -reveille%1:04:00:: 00243102 2 0 -reveille%1:10:00:: 06804728 1 0 -revel%1:04:00:: 00510189 1 1 -revel%2:34:00:: 01190948 1 3 -revel%2:41:00:: 02491383 2 0 -revelation%1:09:00:: 05808102 2 4 -revelation%1:10:00:: 06447897 4 0 -revelation%1:10:01:: 07213232 3 0 -revelation%1:10:02:: 07213395 1 4 -revelation_of_saint_john_the_divine%1:10:00:: 06447897 1 0 -revelatory%5:00:00:prophetic:00 01882292 2 0 -revelatory%5:00:00:revealing:00 02091300 1 0 -reveler%1:18:00:: 10526096 1 0 -reveller%1:18:00:: 10526096 1 1 -revelry%1:04:00:: 00510189 1 1 -revenant%1:18:00:: 10526441 2 0 -revenant%1:18:01:: 10526534 1 0 -revenant%3:01:00:: 02788651 1 0 -revenant%5:00:00:continual:00 00593276 2 0 -revenge%1:04:00:: 01235258 1 8 -revenge%2:33:00:: 01153486 1 1 -revengeful%5:00:00:unforgiving:00 01041634 1 0 -revengefully%4:02:00:: 00443248 1 0 -revenue%1:21:01:: 13256691 1 5 -revenue%1:21:02:: 13261916 2 0 -revenue_bond%1:21:00:: 13339542 1 0 -revenue_enhancement%1:21:00:: 13308999 1 0 -revenue_sharing%1:04:00:: 01085656 1 0 -revenue_stamp%1:10:00:: 06855817 1 0 -revenue_tariff%1:21:00:: 13317517 1 0 -revenuer%1:18:00:: 10526633 1 0 -reverberance%1:07:00:: 04989657 1 0 -reverberant%3:00:00:: 02009280 1 0 -reverberate%2:30:02:: 00516142 6 0 -reverberate%2:38:03:: 01892104 5 0 -reverberate%2:39:00:: 02183787 1 1 -reverberate%2:39:04:: 02136271 4 0 -reverberate%2:39:06:: 02136533 3 0 -reverberate%2:42:00:: 02647918 2 0 -reverberating%5:00:00:reverberant:00 02010536 1 0 -reverberation%1:07:00:: 05010801 1 2 -reverberation%1:19:00:: 11416722 2 0 -reverberative%5:00:00:reverberant:00 02010536 1 0 -reverberatory_furnace%1:06:00:: 04084682 1 0 -revere%1:06:00:: 04084889 2 0 -revere%1:18:00:: 11258501 1 0 -revere%2:37:00:: 01778568 2 1 -revere%2:37:01:: 01778017 1 2 -revered%5:00:00:honorable:00 01226660 1 1 -reverence%1:04:00:: 01228102 3 0 -reverence%1:09:00:: 06207561 2 0 -reverence%1:12:00:: 07521039 1 0 -reverence%2:37:00:: 01778568 1 1 -reverend%1:10:00:: 06341773 2 0 -reverend%1:18:00:: 09927451 1 1 -reverend%5:00:00:sacred:00 02056566 1 0 -reverend_dodgson%1:18:00:: 10884061 1 0 -reverent%3:00:00:: 02011810 1 0 -reverent%5:00:00:pious:00 01781882 2 0 -reverential%5:00:00:reverent:00 02012333 1 0 -reverentially%4:02:00:: 00443461 1 0 -reverently%4:02:00:: 00443461 1 0 -reverie%1:09:00:: 05700793 2 1 -reverie%1:09:01:: 05769471 1 1 -revers%1:06:00:: 04084889 1 0 -reversal%1:04:00:: 00234892 1 1 -reversal%1:04:03:: 00339776 7 0 -reversal%1:04:04:: 00346693 6 0 -reversal%1:04:05:: 00163406 8 0 -reversal%1:04:06:: 01185981 5 0 -reversal%1:09:00:: 05789808 4 0 -reversal%1:11:00:: 07411160 3 0 -reversal%1:11:02:: 07475870 2 0 -reverse%1:04:00:: 00559916 5 0 -reverse%1:04:01:: 00346693 6 0 -reverse%1:06:00:: 04085017 2 1 -reverse%1:06:02:: 04085181 4 0 -reverse%1:11:01:: 07475870 3 0 -reverse%1:24:00:: 13858604 1 1 -reverse%2:30:00:: 00138508 1 8 -reverse%2:30:01:: 00386715 2 7 -reverse%2:30:03:: 00386965 5 0 -reverse%2:31:00:: 00716130 3 2 -reverse%2:32:00:: 00799798 4 0 -reverse%3:00:00:: 00203917 2 0 -reverse%5:00:00:backward:01 00202250 1 1 -reverse%5:00:02:backward:01 00202095 3 0 -reverse_fault%1:17:00:: 09457507 1 0 -reverse_gear%1:06:00:: 04085017 1 0 -reverse_hang%1:04:00:: 00436953 1 0 -reverse_lightning%1:19:00:: 11475067 1 0 -reverse_osmosis%1:22:00:: 13528441 1 0 -reverse_polish_notation%1:10:00:: 06814655 1 0 -reverse_split%1:04:00:: 00439284 1 0 -reverse_stock_split%1:04:00:: 00439284 1 0 -reverse_transcriptase%1:27:00:: 14984799 1 0 -reverse_transcriptase_inhibitor%1:06:00:: 04085365 1 0 -reversed%5:00:00:backward:01 00201961 2 0 -reversed%5:00:00:turned:00 02467982 1 0 -reversely%4:02:00:: 00443646 1 0 -reversibility%1:07:00:: 04734551 1 1 -reversible%1:06:00:: 04085574 1 0 -reversible%3:00:00:: 01758934 1 2 -reversible%3:00:02:: 01759676 2 0 -reversible%5:00:00:changeable:00 00346626 4 0 -reversible%5:00:00:revocable:00 01760488 3 0 -reversible_process%1:22:00:: 13551617 1 0 -reversibly%4:02:00:: 00125763 1 0 -reversing_thermometer%1:06:00:: 04085746 1 0 -reversion%1:04:00:: 00068333 6 0 -reversion%1:04:01:: 00346693 4 0 -reversion%1:04:02:: 00235208 5 0 -reversion%1:11:00:: 07426573 2 0 -reversion%1:11:01:: 07343574 3 0 -reversion%1:21:00:: 13341350 1 0 -reversionary%3:01:00:: 03111065 1 0 -reversionary_annuity%1:21:00:: 13295183 1 0 -reversioner%1:18:00:: 10526795 1 0 -reversionist%1:18:00:: 10511239 1 0 -reversive%5:00:00:backward:01 00203123 1 0 -revert%2:30:00:: 00387310 1 3 -revert%2:30:13:: 00120217 2 0 -revertible%5:00:00:returnable:00 00777106 1 0 -reverting%1:04:00:: 00068333 1 0 -reverting%5:00:00:regressive:01 01877416 1 0 -revery%1:09:00:: 05700793 1 1 -revery%1:09:01:: 05769471 2 0 -revet%2:35:00:: 01271454 2 0 -revet%2:35:01:: 01271658 1 0 -revetement%1:06:00:: 04085873 1 0 -revetment%1:06:00:: 04085873 2 0 -revetment%1:06:01:: 04086066 1 1 -review%1:04:00:: 00143251 3 1 -review%1:04:01:: 00897811 9 0 -review%1:04:02:: 00879271 10 0 -review%1:04:03:: 01197258 8 0 -review%1:09:00:: 05747582 1 4 -review%1:10:00:: 06469377 7 0 -review%1:10:01:: 06410391 2 2 -review%1:10:02:: 07019866 5 0 -review%1:10:03:: 06597758 6 0 -review%1:21:00:: 13411533 4 0 -review%2:31:00:: 00696189 1 13 -review%2:31:01:: 00696414 5 0 -review%2:31:02:: 00696700 3 3 -review%2:31:04:: 00696852 4 0 -review%2:32:00:: 00855512 2 9 -review_article%1:10:00:: 06410391 1 0 -review_copy%1:10:00:: 06418006 1 0 -reviewer%1:18:00:: 09942431 2 0 -reviewer%1:18:01:: 10526927 1 1 -reviewing_stand%1:06:00:: 04086150 1 1 -revile%2:32:00:: 00847870 1 1 -revilement%1:10:00:: 06715223 1 0 -revisal%1:10:00:: 06428976 1 0 -revise%1:10:00:: 06428976 1 0 -revise%2:32:00:: 00996102 1 6 -revise%2:41:00:: 02433549 2 3 -revised%5:00:00:altered:00 00353101 1 3 -revised%5:00:00:amended:00 00354176 2 0 -revised_standard_version%1:10:00:: 06449620 1 0 -revised_version%1:10:00:: 06449254 1 0 -reviser%1:18:00:: 10513120 1 0 -revising%1:10:00:: 06428792 1 0 -revision%1:04:00:: 00399393 1 3 -revision%1:10:00:: 06364149 3 1 -revision%1:10:01:: 06428976 2 1 -revisionism%1:14:00:: 08368516 2 0 -revisionism%1:14:01:: 08368631 1 0 -revisionist%1:18:00:: 10527147 1 0 -revisit%2:38:00:: 01844319 1 0 -revitalisation%1:04:00:: 01047338 1 0 -revitalise%2:30:00:: 00164658 1 0 -revitalised%5:00:00:revived:00 02014140 1 0 -revitalising%5:00:00:invigorating:00 01357742 1 0 -revitalization%1:04:00:: 01047338 1 0 -revitalize%2:29:00:: 00097621 1 1 -revitalize%2:30:00:: 00164658 2 0 -revitalized%5:00:00:revived:00 02014140 1 0 -revitalizing%5:00:00:invigorating:00 01357742 1 0 -revival%1:04:01:: 01047338 1 1 -revival%1:14:00:: 08386143 2 0 -revival_meeting%1:14:00:: 08386143 1 0 -revivalism%1:09:00:: 06231191 1 0 -revivalist%1:18:00:: 10067011 1 0 -revivalistic%3:01:00:: 02955216 1 0 -revive%2:29:00:: 00024279 2 5 -revive%2:29:01:: 00098083 1 5 -revive%2:29:02:: 00024047 5 0 -revive%2:30:00:: 00169298 3 2 -revive%2:30:01:: 00168910 4 1 -revived%3:00:00:: 02013197 1 0 -revived%5:00:00:animated:00 00119279 2 0 -revivification%1:04:00:: 01047338 1 0 -revivify%2:29:00:: 00024279 1 0 -reviving%5:00:00:invigorating:00 01357742 1 0 -revocable%3:00:00:: 01760132 1 0 -revocation%1:04:00:: 01258852 2 0 -revocation%1:26:00:: 14564056 1 0 -revokable%3:00:00:: 01760132 1 0 -revoke%1:04:00:: 01259211 1 0 -revoke%2:32:00:: 00799798 2 0 -revoke%2:33:04:: 01074357 1 0 -revolt%1:04:00:: 00962129 1 4 -revolt%2:37:00:: 01808374 3 0 -revolt%2:39:00:: 02194913 2 0 -revolt%2:41:00:: 02583780 1 0 -revolting%5:00:00:offensive:01 01625893 1 0 -revoltingly%4:02:00:: 00314141 1 0 -revolution%1:04:00:: 00962722 2 6 -revolution%1:11:00:: 07440979 3 0 -revolution%1:11:01:: 07424109 1 6 -revolutionary%1:18:00:: 10527334 1 0 -revolutionary%3:00:00:: 02015238 4 0 -revolutionary%3:01:00:: 02835481 3 0 -revolutionary%3:01:02:: 02939919 2 0 -revolutionary%5:00:00:new:00 01642657 1 7 -revolutionary_armed_forces_of_colombia%1:14:00:: 08042183 1 0 -revolutionary_calendar%1:28:00:: 15175202 1 0 -revolutionary_calendar_month%1:28:00:: 15175640 1 0 -revolutionary_group%1:14:00:: 08360540 1 0 -revolutionary_justice_organization%1:14:00:: 08023374 1 0 -revolutionary_organization_17_november%1:14:00:: 08042536 1 0 -revolutionary_organization_of_socialist_muslims%1:14:00:: 08020242 1 0 -revolutionary_people's_liberation_front%1:14:00:: 08042856 1 0 -revolutionary_people's_liberation_party%1:14:00:: 08042856 1 0 -revolutionary_people's_struggle%1:14:00:: 08043169 1 0 -revolutionary_proletarian_army%1:14:00:: 08011266 1 0 -revolutionary_proletarian_initiative_nuclei%1:14:00:: 08043499 1 0 -revolutionary_proletarian_nucleus%1:14:00:: 08043499 1 0 -revolutionary_united_front%1:14:00:: 08043848 1 0 -revolutionise%2:30:00:: 00125633 2 0 -revolutionise%2:31:00:: 00605310 1 0 -revolutionism%1:09:00:: 05951692 1 0 -revolutionist%1:18:00:: 10527334 1 0 -revolutionize%2:30:00:: 00125633 1 1 -revolutionize%2:31:00:: 00605310 3 0 -revolutionize%2:41:00:: 02402695 2 0 -revolutions_per_minute%1:28:00:: 15281870 1 0 -revolve%2:38:00:: 02045043 1 1 -revolve%2:38:01:: 02043982 2 1 -revolve%2:38:02:: 01866610 3 0 -revolve_about%2:42:00:: 02676496 1 2 -revolve_around%2:38:00:: 02082355 2 0 -revolve_around%2:42:00:: 02676496 1 2 -revolved%5:00:00:turned:00 02468110 1 0 -revolver%1:06:00:: 04086273 1 4 -revolver%1:06:01:: 04086446 2 0 -revolving_charge_account%1:21:00:: 13375758 1 0 -revolving_credit%1:21:00:: 13375323 1 0 -revolving_door%1:06:00:: 04086446 2 0 -revolving_door%1:14:00:: 08240022 1 0 -revolving_fund%1:21:00:: 13359263 1 1 -revue%1:10:00:: 07019866 1 0 -revulsion%1:12:00:: 07503987 1 3 -rewa-rewa%1:20:00:: 12219668 1 0 -reward%1:04:01:: 01219551 3 2 -reward%1:07:00:: 05142863 5 0 -reward%1:10:00:: 07166281 4 1 -reward%1:11:00:: 07295629 1 4 -reward%1:21:00:: 13283764 2 2 -reward%2:32:00:: 00787660 2 1 -reward%2:40:00:: 02344381 3 0 -reward%2:41:01:: 02546075 1 1 -rewardful%5:00:00:rewarding:00 02015891 1 0 -rewarding%3:00:00:: 02015571 1 2 -rewardingly%4:02:00:: 00125906 1 0 -rewire%2:40:00:: 02354736 1 0 -reword%2:32:00:: 00961736 1 0 -rewording%1:10:00:: 06429145 1 0 -rework%2:36:00:: 01669285 1 0 -rewrite%1:10:00:: 06364149 1 0 -rewrite%2:32:00:: 00995838 1 3 -rewrite%2:36:00:: 01700934 2 0 -rewrite_man%1:18:00:: 10513120 1 0 -rewriter%1:18:00:: 10513120 1 0 -rewriting%1:10:00:: 06428792 1 0 -rex%1:18:00:: 10231515 1 0 -rex_begonia%1:20:00:: 12361946 1 0 -rex_harrison%1:18:00:: 11031995 1 0 -reye's_syndrome%1:26:00:: 14309653 1 0 -reyes%1:18:00:: 11203795 1 0 -reykjavik%1:15:00:: 08953596 1 0 -reynard%1:05:00:: 02118707 1 0 -reynolds%1:18:00:: 11258769 1 0 -rf%1:08:00:: 05502090 3 0 -rf%1:27:00:: 14653416 2 0 -rf%1:27:01:: 15023294 1 0 -rfd%1:10:00:: 06265142 1 0 -rg%1:27:00:: 14652824 1 0 -rh%1:08:00:: 05412242 3 0 -rh%1:27:00:: 14652623 2 0 -rh%1:27:01:: 15037877 1 2 -rh-negative%3:00:00:: 02592750 1 0 -rh-negative_blood%1:08:00:: 05401587 1 0 -rh-negative_blood_type%1:08:00:: 05401587 1 0 -rh-positive%3:00:00:: 02592611 1 0 -rh-positive_blood_type%1:08:00:: 05401411 1 0 -rh_antibody%1:27:00:: 15027970 1 4 -rh_factor%1:27:00:: 15037877 1 0 -rh_incompatibility%1:26:00:: 13975444 1 0 -rh_negative%1:08:00:: 05401587 1 0 -rh_positive%1:08:00:: 05401411 1 0 -rhabdomancer%1:18:00:: 10770891 1 0 -rhabdomancy%1:09:00:: 05776679 1 0 -rhabdomyoma%1:26:00:: 14249512 1 0 -rhabdomyosarcoma%1:26:00:: 14245405 1 0 -rhabdosarcoma%1:26:00:: 14245405 1 0 -rhabdoviridae%1:05:00:: 01333301 1 0 -rhabdovirus%1:05:00:: 01340648 1 0 -rhadamanthus%1:18:00:: 09570957 1 0 -rhaeto-romance%1:10:00:: 06967710 1 0 -rhaeto-romanic%1:10:00:: 06967710 1 0 -rhagades%1:26:00:: 14232034 1 0 -rhagoletis%1:05:00:: 02196761 1 0 -rhagoletis_pomonella%1:05:00:: 02196896 1 0 -rhamnaceae%1:20:00:: 13140699 1 0 -rhamnales%1:20:00:: 13140535 1 0 -rhamnus%1:20:00:: 13140993 1 0 -rhamnus_californicus%1:20:00:: 13142182 1 0 -rhamnus_carolinianus%1:20:00:: 13141972 1 0 -rhamnus_croceus%1:20:00:: 13142504 1 0 -rhamnus_frangula%1:20:00:: 13142380 1 0 -rhamnus_purshianus%1:20:00:: 13141564 1 0 -rhaphe%1:08:00:: 05276425 1 0 -rhapis%1:20:00:: 12595801 1 0 -rhapis_excelsa%1:20:00:: 12596148 1 0 -rhapis_humilis%1:20:00:: 12596345 1 0 -rhapsodic%5:00:00:joyous:00 01367008 1 0 -rhapsodically%4:02:00:: 00325139 1 0 -rhapsodise%2:32:00:: 00916783 2 0 -rhapsodise%2:32:01:: 00954137 1 0 -rhapsodize%2:32:00:: 00916783 2 0 -rhapsodize%2:32:01:: 00954137 1 0 -rhapsody%1:10:00:: 06382590 1 0 -rhd%1:14:00:: 08041840 1 0 -rhea%1:05:01:: 01521399 3 0 -rhea%1:05:02:: 01521756 2 0 -rhea%1:18:00:: 09576338 1 0 -rhea_americana%1:05:00:: 01521399 1 0 -rhea_silvia%1:18:00:: 09556121 1 0 -rheidae%1:05:00:: 01521014 1 0 -rheiformes%1:05:00:: 01520789 1 0 -rheims%1:15:00:: 08937594 1 0 -rheims-douay_bible%1:10:00:: 06448868 1 0 -rheims-douay_version%1:10:00:: 06448868 1 0 -rhein%1:17:00:: 09408540 1 0 -rheinland%1:15:00:: 08775297 1 0 -rhenish%1:13:00:: 07897200 1 0 -rhenish%3:01:00:: 03111283 1 0 -rhenium%1:27:00:: 14652390 1 0 -rheologic%3:01:00:: 02980247 1 0 -rheological%3:01:00:: 02980247 1 0 -rheology%1:09:00:: 06102316 1 0 -rheometer%1:06:00:: 04086663 1 0 -rheostat%1:06:00:: 04086794 1 0 -rhesus%1:05:00:: 02487547 1 0 -rhesus_factor%1:27:00:: 15037877 1 0 -rhesus_monkey%1:05:00:: 02487547 1 0 -rhetoric%1:09:00:: 06170498 4 0 -rhetoric%1:10:00:: 07072698 1 0 -rhetoric%1:10:02:: 07070429 2 0 -rhetoric%1:10:03:: 06609503 3 0 -rhetorical%3:00:00:: 02016535 2 0 -rhetorical%3:01:00:: 02938854 1 0 -rhetorical_device%1:10:00:: 07098193 1 0 -rhetorical_question%1:10:00:: 06768528 1 0 -rhetorically%4:02:00:: 00443724 1 0 -rhetorician%1:18:00:: 10380672 1 1 -rheum%1:20:00:: 12602850 2 0 -rheum%1:27:00:: 14853647 1 0 -rheum_australe%1:20:00:: 12603273 1 0 -rheum_cultorum%1:20:00:: 12603449 1 0 -rheum_emodi%1:20:00:: 12603273 1 0 -rheum_palmatum%1:20:00:: 12603672 1 0 -rheum_rhabarbarum%1:20:00:: 12603449 1 0 -rheum_rhaponticum%1:20:00:: 12603449 1 0 -rheumatic%1:18:00:: 10527915 1 0 -rheumatic%5:00:00:unhealthy:00 01173795 1 0 -rheumatic_aortitis%1:26:00:: 14258391 1 0 -rheumatic_fever%1:26:00:: 14142768 1 1 -rheumatic_heart_disease%1:26:00:: 14142983 1 0 -rheumatism%1:26:00:: 14080210 1 2 -rheumatism%1:26:01:: 14186738 2 0 -rheumatism_weed%1:20:01:: 11767630 2 0 -rheumatism_weed%1:20:02:: 11767877 1 0 -rheumatoid%5:00:00:unhealthy:00 01173795 1 0 -rheumatoid_arthritis%1:26:00:: 14186738 1 0 -rheumatoid_factor%1:26:00:: 14187229 1 0 -rheumatoid_spondylitis%1:26:00:: 14220474 1 0 -rheumatologist%1:18:00:: 10528023 1 0 -rheumatology%1:09:00:: 06062655 1 0 -rheumy%5:00:00:unhealthy:00 01173795 2 0 -rheumy%5:00:00:wet:01 02550023 1 0 -rhexia%1:20:00:: 12349916 1 0 -rhibhus%1:18:00:: 09528135 1 0 -rhinal%3:01:00:: 02978781 1 0 -rhincodon%1:05:00:: 01487914 1 0 -rhincodon_typus%1:05:00:: 01488038 1 0 -rhincodontidae%1:05:00:: 01487743 1 0 -rhine%1:17:00:: 09408540 2 0 -rhine%1:18:00:: 11258924 1 0 -rhine_river%1:17:00:: 09408540 1 0 -rhine_wine%1:13:00:: 07897200 1 0 -rhineland%1:15:00:: 08775297 1 0 -rhinencephalon%1:08:00:: 05477686 1 0 -rhinestone%1:27:00:: 14694453 1 0 -rhinion%1:08:00:: 05235217 1 0 -rhinitis%1:26:00:: 14355060 1 0 -rhino%1:05:00:: 02391994 1 2 -rhinobatidae%1:05:00:: 01497579 1 0 -rhinoceros%1:05:00:: 02391994 1 1 -rhinoceros_antiquitatis%1:05:00:: 02392555 1 0 -rhinoceros_beetle%1:05:00:: 02174001 1 0 -rhinoceros_family%1:05:00:: 02391782 1 0 -rhinoceros_unicornis%1:05:00:: 02392434 1 0 -rhinocerotidae%1:05:00:: 02391782 1 0 -rhinolaryngologist%1:18:00:: 10059323 1 0 -rhinolaryngology%1:09:00:: 06062842 1 0 -rhinolophidae%1:05:00:: 02143293 1 0 -rhinonicteris%1:05:00:: 02144110 1 0 -rhinonicteris_aurantius%1:05:00:: 02144251 1 0 -rhinopathy%1:26:00:: 14396890 1 0 -rhinophyma%1:26:00:: 14397040 1 0 -rhinoplasty%1:04:00:: 00689062 1 0 -rhinoptera%1:05:00:: 01499595 1 0 -rhinoptera_bonasus%1:05:00:: 01499732 1 0 -rhinorrhea%1:26:00:: 14567134 1 0 -rhinoscope%1:06:00:: 04086937 1 0 -rhinoscopy%1:04:00:: 00643772 1 0 -rhinosporidiosis%1:26:00:: 14567281 1 0 -rhinostenosis%1:26:00:: 14107249 1 0 -rhinotermitidae%1:05:00:: 02224141 1 0 -rhinotomy%1:04:00:: 00691190 1 0 -rhinotracheitis%1:26:00:: 14272023 1 2 -rhinovirus%1:05:00:: 01338537 1 0 -rhipsalis%1:20:00:: 11852814 1 0 -rhiptoglossa%1:05:00:: 01693472 1 0 -rhizobiaceae%1:05:00:: 01354149 1 0 -rhizobium%1:05:00:: 01354324 1 0 -rhizoctinia%1:20:00:: 13082568 1 0 -rhizoctinia_disease%1:26:00:: 14281397 1 0 -rhizoctinia_solani%1:20:00:: 13016076 1 0 -rhizoid%1:20:00:: 12974826 1 0 -rhizoidal%3:01:00:: 03111573 1 0 -rhizomatous%3:01:00:: 03111451 1 0 -rhizomatous_begonia%1:20:00:: 12360817 1 0 -rhizome%1:20:00:: 13128582 1 0 -rhizomorph%1:20:00:: 13231298 1 0 -rhizophora%1:20:00:: 12345709 1 0 -rhizophora_mangle%1:20:00:: 12345899 1 0 -rhizophoraceae%1:20:00:: 12345495 1 0 -rhizopod%1:05:00:: 01391391 1 0 -rhizopoda%1:05:00:: 01391174 1 0 -rhizopodan%1:05:00:: 01391391 1 0 -rhizopogon%1:20:00:: 12971624 1 0 -rhizopogon_idahoensis%1:20:00:: 12971804 1 0 -rhizopogonaceae%1:20:00:: 12971157 1 0 -rhizopus%1:20:00:: 12973791 1 0 -rhizopus_nigricans%1:20:00:: 12973937 1 0 -rhizopus_stolonifer%1:20:00:: 12974062 1 0 -rhizotomy%1:04:00:: 00691330 1 0 -rho%1:10:00:: 06835845 1 0 -rhodanthe%1:20:00:: 12007766 1 0 -rhodanthe_manglesii%1:20:00:: 12007766 1 0 -rhode_island%1:15:00:: 09137032 1 9 -rhode_island%1:15:01:: 09137334 2 0 -rhode_island_bent%1:20:00:: 12107002 1 0 -rhode_island_red%1:05:00:: 01793435 1 0 -rhode_islander%1:18:00:: 09745438 1 4 -rhodes%1:15:00:: 08783812 2 0 -rhodes%1:18:00:: 11259054 1 0 -rhodes_grass%1:20:00:: 12114590 1 0 -rhodes_scholar%1:18:00:: 10528295 1 0 -rhodesia%1:15:00:: 09167101 1 0 -rhodesian%3:01:00:: 02788779 1 0 -rhodesian_man%1:18:00:: 10528148 1 0 -rhodesian_ridgeback%1:05:00:: 02087394 1 0 -rhodium%1:27:00:: 14652623 1 0 -rhodochrosite%1:27:00:: 14696035 1 0 -rhododendron%1:20:00:: 12244153 1 0 -rhododendron_californicum%1:20:00:: 12244458 1 0 -rhododendron_maxima%1:20:00:: 12244650 1 0 -rhododendron_viscosum%1:20:00:: 12244819 1 0 -rhodolite%1:27:00:: 15001394 1 0 -rhodomontade%1:10:00:: 07230089 1 0 -rhodonite%1:27:00:: 14696180 1 0 -rhodope_mountains%1:17:00:: 09408795 1 0 -rhodophyceae%1:05:00:: 01413744 1 0 -rhodophyta%1:05:00:: 01413551 1 0 -rhodopsin%1:27:00:: 15088869 1 0 -rhodosphaera%1:20:00:: 12762245 1 0 -rhodosphaera_rhodanthema%1:20:00:: 12762405 1 0 -rhodymenia%1:05:00:: 01414986 1 0 -rhodymenia_palmata%1:05:00:: 01415139 1 0 -rhodymeniaceae%1:05:00:: 01414841 1 0 -rhoeadales%1:20:00:: 11864364 1 0 -rhomb%1:25:00:: 13882961 1 0 -rhombencephalon%1:08:00:: 05500594 1 0 -rhombic%3:01:00:: 02948892 1 0 -rhombohedral%5:00:00:symmetrical:00 02373467 1 0 -rhombohedron%1:25:00:: 13915417 1 0 -rhomboid%1:08:00:: 05575002 2 0 -rhomboid%1:25:00:: 13883133 1 0 -rhomboid%3:01:00:: 03111656 1 0 -rhomboid_minor_muscle%1:08:00:: 05575374 1 0 -rhomboid_muscle%1:08:00:: 05575002 1 0 -rhomboidal%3:01:00:: 03111656 1 0 -rhomboideus_major_muscle%1:08:00:: 05575185 1 0 -rhombus%1:25:00:: 13882961 1 0 -rhonchus%1:11:00:: 07391682 1 0 -rhone%1:17:00:: 09408977 1 0 -rhone-alpes%1:15:00:: 08944378 1 0 -rhone_river%1:17:00:: 09408977 1 0 -rhone_wine%1:13:00:: 07897750 1 0 -rhubarb%1:13:00:: 07713267 1 2 -rhubarb%1:20:00:: 12602980 2 0 -rhubarb_pie%1:13:00:: 07626501 1 0 -rhubarb_plant%1:20:00:: 12602980 1 0 -rhumb%1:15:00:: 08632678 1 0 -rhumb_line%1:15:00:: 08632678 1 0 -rhumba%1:04:00:: 00541779 2 0 -rhumba%1:04:01:: 00537085 3 0 -rhumba%1:10:00:: 07056764 1 0 -rhumba%2:38:00:: 01897779 1 0 -rhus%1:20:00:: 12762583 1 0 -rhus_aromatica%1:20:00:: 12763291 1 0 -rhus_copallina%1:20:00:: 12763762 1 0 -rhus_dermatitis%1:26:00:: 14223296 1 0 -rhus_diversiloba%1:20:00:: 12767208 1 0 -rhus_glabra%1:20:00:: 12763529 1 0 -rhus_laurina%1:20:00:: 12760875 1 0 -rhus_ovata%1:20:00:: 12764008 1 0 -rhus_quercifolia%1:20:00:: 12767423 1 0 -rhus_radicans%1:20:00:: 12766869 1 0 -rhus_rhodanthema%1:20:00:: 12762405 1 0 -rhus_toxicodenedron%1:20:00:: 12767423 1 0 -rhus_trilobata%1:20:00:: 12764507 1 0 -rhus_typhina%1:20:00:: 12764202 1 0 -rhus_verniciflua%1:20:00:: 12767648 1 0 -rhus_vernix%1:20:00:: 12766595 1 0 -rhyacotriton%1:05:00:: 01635343 1 0 -rhyacotriton_olympicus%1:05:00:: 01635480 1 0 -rhyme%1:10:00:: 07096661 1 1 -rhyme%1:10:01:: 06381869 2 1 -rhyme%2:36:00:: 01701858 1 1 -rhyme%2:42:00:: 02750432 2 0 -rhyme_royal%1:10:00:: 07097831 1 0 -rhymed%3:00:00:: 01965636 1 0 -rhymeless%3:00:00:: 01966315 1 0 -rhymer%1:18:00:: 10528493 1 0 -rhymester%1:18:00:: 10528493 1 0 -rhyming%3:00:04:: 01965636 1 0 -rhyming_slang%1:10:00:: 07159276 1 0 -rhynchocephalia%1:05:00:: 01672950 1 0 -rhynchoelaps%1:05:00:: 01747144 1 0 -rhynchoelaps_australis%1:05:00:: 01747285 1 0 -rhyncostylis%1:20:00:: 12081488 1 0 -rhynia%1:20:00:: 13218281 1 0 -rhyniaceae%1:20:00:: 13218114 1 0 -rhyolite%1:27:00:: 14933236 1 0 -rhythm%1:04:00:: 00853145 5 1 -rhythm%1:07:01:: 04768028 2 6 -rhythm%1:10:00:: 07086323 4 1 -rhythm%1:10:01:: 07086518 1 7 -rhythm%1:28:00:: 15287830 3 1 -rhythm_and_blues%1:10:00:: 07064315 1 0 -rhythm_and_blues_musician%1:18:00:: 10528816 1 0 -rhythm_method%1:04:00:: 00853145 1 1 -rhythm_method_of_birth_control%1:04:00:: 00853145 1 0 -rhythm_section%1:14:00:: 08217557 1 0 -rhythmic%3:00:00:: 02019021 1 3 -rhythmic_pattern%1:10:00:: 07093895 1 0 -rhythmical%3:00:00:: 02019021 1 1 -rhythmically%4:02:00:: 00401581 1 1 -rhythmicity%1:07:00:: 04991511 1 0 -rhytidectomy%1:04:00:: 00674158 1 0 -rhytidoplasty%1:04:00:: 00674158 1 0 -ri%1:15:00:: 09137032 1 0 -rial%1:23:00:: 13697505 1 0 -rial%1:23:01:: 13696777 3 0 -rial%1:23:02:: 13697134 2 0 -riant%5:00:00:happy:00 01149358 1 0 -riata%1:06:00:: 03644378 1 0 -rib%1:06:00:: 04087126 1 4 -rib%1:06:01:: 04087290 6 0 -rib%1:08:01:: 05279026 2 2 -rib%1:08:02:: 05235879 5 0 -rib%1:10:00:: 06767693 4 0 -rib%1:13:00:: 07656741 3 0 -rib%2:32:00:: 00851933 2 0 -rib%2:36:00:: 01671755 1 0 -rib_cage%1:08:00:: 05553768 1 2 -rib_joint_pliers%1:06:00:: 04088343 1 0 -rib_roast%1:13:00:: 07661950 1 0 -ribald%1:18:00:: 10528969 1 0 -ribald%5:00:00:dirty:02 00424787 1 0 -ribaldry%1:07:00:: 04902283 2 0 -ribaldry%1:10:00:: 06781811 1 0 -riband%1:06:00:: 04087432 1 0 -ribavirin%1:06:00:: 04087524 1 0 -ribband%1:06:00:: 04087432 1 0 -ribbed%3:00:00:: 02021540 1 0 -ribbed%5:00:00:rough:00 02240379 2 0 -ribbed_toad%1:05:00:: 01644900 1 0 -ribbed_vault%1:06:00:: 04087709 1 0 -ribbing%1:04:00:: 00425905 2 0 -ribbing%1:06:00:: 04087826 1 0 -ribbon%1:06:00:: 04087899 4 0 -ribbon%1:06:02:: 04088058 3 0 -ribbon%1:10:00:: 06706676 2 0 -ribbon%1:17:00:: 09409203 1 6 -ribbon-leaved_water_plantain%1:20:00:: 12612709 1 0 -ribbon-shaped%5:00:00:formed:00 02149412 1 0 -ribbon_development%1:06:00:: 04088229 1 0 -ribbon_fern%1:20:00:: 13214485 1 0 -ribbon_fern%1:20:01:: 12960552 3 0 -ribbon_fern%1:20:02:: 13179804 2 0 -ribbon_grass%1:20:00:: 12129738 1 0 -ribbon_snake%1:05:00:: 01735577 1 2 -ribbon_tree%1:20:00:: 12185254 1 0 -ribbon_worm%1:05:00:: 01928517 1 0 -ribbonfish%1:05:01:: 02546331 2 0 -ribbonfish%1:05:02:: 02547014 1 0 -ribbonlike%5:00:00:thin:01 02414749 1 0 -ribbonwood%1:20:01:: 12180885 2 0 -ribbonwood%1:20:02:: 12185254 1 0 -ribbony%5:00:00:thin:01 02414749 1 0 -ribes%1:20:00:: 12804866 1 1 -ribes_grossularia%1:20:00:: 12806015 1 0 -ribes_nigrum%1:20:00:: 12805561 1 0 -ribes_rubrum%1:20:00:: 12805373 1 0 -ribes_sanguineum%1:20:00:: 12805899 1 1 -ribes_sativum%1:20:00:: 12805762 1 0 -ribes_uva-crispa%1:20:00:: 12806015 1 0 -ribgrass%1:20:00:: 12599185 1 0 -ribhus%1:18:00:: 09528135 1 0 -ribier%1:13:00:: 07760297 1 0 -ribless%3:00:00:: 02021818 1 0 -riblike%5:00:00:ribbed:00 02021748 1 0 -riboflavin%1:27:00:: 15091473 1 1 -ribonuclease%1:27:00:: 14832046 1 0 -ribonucleic_acid%1:27:00:: 14832193 1 0 -ribonucleinase%1:27:00:: 14832046 1 0 -ribose%1:27:00:: 14696331 1 0 -ribosome%1:08:00:: 05446394 1 0 -ribwort%1:20:00:: 12599185 1 0 -ricardo%1:18:00:: 11259457 1 0 -rice%1:13:00:: 07804323 1 5 -rice%1:18:00:: 11259635 4 0 -rice%1:18:01:: 11259777 3 0 -rice%1:20:00:: 12125890 2 4 -rice%2:35:00:: 01460408 1 0 -rice-grain_fritillary%1:20:00:: 12452256 1 0 -rice_beer%1:13:00:: 07891433 1 0 -rice_grass%1:20:00:: 12126360 1 0 -rice_paddy%1:15:00:: 08614229 1 1 -rice_paper%1:27:00:: 14975872 1 0 -rice_rat%1:05:00:: 02340640 1 0 -rice_weevil%1:05:00:: 02182930 1 0 -ricebird%1:05:01:: 01573898 1 0 -ricebird%1:05:02:: 01543632 2 0 -ricegrass%1:20:00:: 12126360 1 0 -ricer%1:06:00:: 04088441 1 0 -rich%1:14:00:: 08179455 1 0 -rich%3:00:00:: 02021905 1 17 -rich%3:00:02:: 02024143 2 5 -rich%3:00:03:: 02024758 8 0 -rich%3:00:04:: 02026785 7 0 -rich%5:00:00:abundant:00 00014490 12 0 -rich%5:00:00:colorful:00 00403385 5 2 -rich%5:00:00:fruitful:00 01081340 4 2 -rich%5:00:00:full:01 01457369 11 0 -rich%5:00:00:tasty:00 02397234 10 0 -rich%5:00:00:unwholesome:00 02560402 9 0 -rich%5:00:00:valuable:00 02501693 3 2 -rich%5:00:02:productive:00 01866429 6 1 -rich_man%1:18:00:: 10292052 1 2 -rich_people%1:14:00:: 08179455 1 0 -rich_person%1:18:00:: 10529231 1 0 -richard_adolph_zsigmondy%1:18:00:: 11407865 1 0 -richard_august_carl_emil_erlenmeyer%1:18:00:: 10960439 1 0 -richard_brinsley_sheridan%1:18:00:: 11297595 1 0 -richard_buckminster_fuller%1:18:00:: 10985440 1 0 -richard_burbage%1:18:00:: 10871926 1 0 -richard_burdon_haldane%1:18:00:: 11022465 1 0 -richard_burton%1:18:00:: 10875107 2 0 -richard_burton%1:18:01:: 10875249 1 0 -richard_coeur_de_lion%1:18:00:: 11259950 1 0 -richard_d'oyly_carte%1:18:00:: 10942473 1 0 -richard_d._fosbury%1:18:00:: 10975583 1 0 -richard_e._byrd%1:18:00:: 10876798 1 0 -richard_e._smalley%1:18:00:: 11304912 1 0 -richard_errett_smalley%1:18:00:: 11304912 1 0 -richard_erskine_leakey%1:18:00:: 11122114 1 0 -richard_evelyn_byrd%1:18:00:: 10876798 1 0 -richard_feynman%1:18:00:: 10970279 1 0 -richard_haldane%1:18:00:: 11022465 1 0 -richard_henry_lee%1:18:00:: 11123894 1 0 -richard_henry_tawney%1:18:00:: 11333071 1 0 -richard_hooker%1:18:00:: 11058335 1 0 -richard_horatio_edgar_wallace%1:18:00:: 11371622 1 0 -richard_i%1:18:00:: 11259950 1 0 -richard_ii%1:18:00:: 11260325 1 0 -richard_iii%1:18:00:: 11260622 1 0 -richard_j._roberts%1:18:00:: 11264614 1 0 -richard_john_roberts%1:18:00:: 11264614 1 0 -richard_jordan_gatling%1:18:00:: 10992192 1 0 -richard_kuhn%1:18:00:: 11112488 1 0 -richard_leakey%1:18:00:: 11122114 1 0 -richard_lovelace%1:18:00:: 11141882 1 0 -richard_m._nixon%1:18:00:: 11208172 1 0 -richard_milhous_nixon%1:18:00:: 11208172 1 0 -richard_morris_hunt%1:18:00:: 11066938 1 0 -richard_neville%1:18:00:: 11375087 1 0 -richard_nixon%1:18:00:: 11208172 1 0 -richard_phillips_feynman%1:18:00:: 10970279 1 0 -richard_rodgers%1:18:00:: 11267745 1 0 -richard_roe%1:18:00:: 10529103 1 0 -richard_smalley%1:18:00:: 11304912 1 0 -richard_starkey%1:18:00:: 11313726 1 0 -richard_strauss%1:18:00:: 11321647 1 0 -richard_the_lion-hearted%1:18:00:: 11259950 1 0 -richard_the_lionheart%1:18:00:: 11259950 1 0 -richard_trevithick%1:18:00:: 11348946 1 0 -richard_upjohn%1:18:00:: 11356512 1 0 -richard_von_krafft-ebing%1:18:00:: 11110205 1 0 -richard_wagner%1:18:00:: 11369834 1 0 -richard_wright%1:18:00:: 11398955 1 0 -richards%1:18:00:: 11260945 1 0 -richardson%1:18:00:: 11261184 2 0 -richardson%1:18:01:: 11261364 1 0 -richardson's_geranium%1:20:00:: 12686496 1 0 -richardson_ground_squirrel%1:05:00:: 02358712 1 0 -richardson_vole%1:05:00:: 02341475 1 0 -richea%1:20:00:: 12254478 1 0 -richea_dracophylla%1:20:00:: 12254667 1 0 -richea_pandanifolia%1:20:00:: 12254891 1 0 -richelieu%1:18:00:: 11261483 1 0 -riches%1:21:00:: 13353280 1 0 -richler%1:18:00:: 11261698 1 0 -richly%4:02:00:: 00187617 3 0 -richly%4:02:01:: 00357251 2 0 -richly%4:02:02:: 00397016 1 1 -richmond%1:15:00:: 09150047 1 4 -richmondena%1:05:00:: 01541261 1 0 -richmondena_cardinalis%1:05:00:: 01541386 1 0 -richness%1:07:00:: 04958460 6 0 -richness%1:07:01:: 04989015 3 1 -richness%1:07:02:: 05147586 5 0 -richness%1:07:03:: 05115804 1 3 -richness%1:07:04:: 04729328 7 0 -richness%1:07:05:: 05164101 4 0 -richness%1:26:00:: 14491625 2 1 -richter_scale%1:24:00:: 13851865 1 0 -richweed%1:20:01:: 12395068 2 0 -richweed%1:20:02:: 12844409 1 0 -ricin%1:27:00:: 14696463 1 0 -ricin_toxin%1:27:00:: 14696463 1 0 -ricinoleic_acid%1:27:00:: 14742601 1 0 -ricinus%1:20:00:: 12924452 1 0 -ricinus_communis%1:20:00:: 12924623 1 0 -rick%1:14:00:: 07963208 2 0 -rick%1:26:00:: 14361182 1 0 -rick%2:29:00:: 00091124 2 0 -rick%2:35:00:: 01503736 1 0 -rickenbacker%1:18:00:: 11261804 1 0 -ricketiness%1:07:00:: 04775562 1 0 -rickets%1:26:00:: 14201311 1 0 -rickettsia%1:05:00:: 01371483 1 0 -rickettsiaceae%1:05:00:: 01371092 1 0 -rickettsial%3:01:00:: 02892277 1 0 -rickettsial_disease%1:26:00:: 14140781 1 0 -rickettsiales%1:05:00:: 01370913 1 0 -rickettsialpox%1:26:00:: 14141912 1 0 -rickettsiosis%1:26:00:: 14140781 1 0 -rickety%5:00:00:frail:00 02040233 3 0 -rickety%5:00:00:ill:01 02546316 2 0 -rickety%5:00:00:unstable:00 02292797 1 1 -rickey%1:13:00:: 07932614 1 0 -rickover%1:18:00:: 11261986 1 0 -rickrack%1:06:00:: 04088593 1 0 -ricksha%1:06:00:: 03599486 1 0 -rickshaw%1:06:00:: 03599486 1 0 -rico%1:10:00:: 06533039 1 0 -rico_act%1:10:00:: 06533039 1 0 -ricochet%1:11:00:: 07409475 1 0 -ricochet%2:38:00:: 01892104 1 1 -ricotta%1:13:00:: 07854614 1 0 -ricrac%1:06:00:: 04088593 1 0 -rictus%1:10:00:: 06877509 1 0 -rid%2:40:00:: 02350175 1 5 -rid_of%2:42:00:: 02629256 1 0 -riddance%1:04:00:: 00206927 2 0 -riddance%1:04:01:: 00395333 1 0 -riddle%1:06:00:: 04088696 2 0 -riddle%1:10:00:: 06785223 1 1 -riddle%2:31:00:: 00635714 6 0 -riddle%2:31:01:: 00623006 2 1 -riddle%2:32:00:: 00742051 5 0 -riddle%2:35:00:: 01275301 1 2 -riddle%2:35:01:: 01460785 3 0 -riddle%2:35:02:: 01229071 4 0 -riddle_canon%1:10:00:: 07043026 1 0 -riddled%5:00:00:damaged:00 00680791 1 1 -riddled%5:00:00:full:00 01085937 2 0 -ride%1:04:00:: 00307631 1 6 -ride%1:06:00:: 04088797 2 0 -ride%2:32:00:: 00850501 5 1 -ride%2:35:00:: 01511134 13 0 -ride%2:35:03:: 01429322 14 0 -ride%2:38:00:: 01955984 2 30 -ride%2:38:01:: 01957529 1 53 -ride%2:38:02:: 01839538 4 2 -ride%2:38:03:: 02095545 11 0 -ride%2:38:04:: 02102398 10 0 -ride%2:38:07:: 01847676 12 0 -ride%2:42:00:: 02684644 3 2 -ride%2:42:02:: 02692089 9 0 -ride%2:42:03:: 02742232 7 0 -ride%2:42:04:: 02750154 6 0 -ride%2:42:07:: 02711987 8 0 -ride_away%2:38:00:: 02011302 1 2 -ride_herd%2:38:00:: 01958103 1 1 -ride_horseback%2:38:00:: 01958615 1 0 -ride_off%2:38:00:: 02011302 1 1 -ride_out%2:42:00:: 02619122 1 0 -ride_roughshod%2:41:00:: 02515583 1 0 -ride_the_bench%2:41:00:: 02418029 1 1 -rider%1:10:00:: 06394564 2 2 -rider%1:18:00:: 10529965 1 11 -rider%1:18:01:: 10403876 4 0 -rider%1:18:02:: 10530150 3 0 -rider_haggard%1:18:00:: 11022001 1 0 -rider_plate%1:06:00:: 04088982 1 0 -ridge%1:06:00:: 04089152 6 0 -ridge%1:08:00:: 05603342 5 0 -ridge%1:17:00:: 09409512 1 6 -ridge%1:17:01:: 09409752 4 0 -ridge%1:17:02:: 09409898 3 0 -ridge%1:25:00:: 13902048 2 0 -ridge%2:30:00:: 00144446 5 0 -ridge%2:35:00:: 01310417 4 0 -ridge%2:35:01:: 01509933 3 0 -ridge%2:36:00:: 01742244 2 0 -ridge%2:42:00:: 02689730 1 0 -ridge_rope%1:06:00:: 04089376 1 0 -ridge_tile%1:27:00:: 15005577 1 0 -ridged%3:44:00:: 03153361 1 0 -ridgel%1:05:00:: 02377063 1 0 -ridgeline%1:17:00:: 09409752 1 0 -ridgeling%1:05:00:: 02377063 1 0 -ridgepole%1:06:00:: 04089152 1 0 -ridgil%1:05:00:: 02377063 1 0 -ridgling%1:05:00:: 02377063 1 0 -ridicule%1:04:00:: 01224517 2 0 -ridicule%1:10:00:: 06715786 1 2 -ridicule%2:32:00:: 00851933 1 3 -ridiculer%1:18:00:: 10552742 1 0 -ridiculous%5:00:00:foolish:00 02570643 2 3 -ridiculous%5:00:00:humorous:00 01266397 3 0 -ridiculous%5:00:00:undignified:00 00752847 1 4 -ridiculously%4:02:00:: 00387017 1 1 -ridiculousness%1:10:00:: 06607809 1 0 -riding%1:04:00:: 00299217 2 0 -riding%1:04:01:: 00450335 1 0 -riding_bitt%1:06:00:: 04089522 1 0 -riding_boot%1:06:00:: 04089666 1 2 -riding_breeches%1:06:00:: 03600285 1 0 -riding_crop%1:06:00:: 04089836 1 0 -riding_habit%1:06:00:: 03474167 1 0 -riding_horse%1:05:00:: 02377703 1 0 -riding_lamp%1:06:00:: 02709763 1 0 -riding_light%1:06:00:: 02709763 1 0 -riding_master%1:18:00:: 10530383 1 0 -riding_mower%1:06:00:: 04089976 1 0 -riding_school%1:14:00:: 08284370 1 0 -ridley%1:05:00:: 01664369 1 0 -riel%1:23:00:: 13697840 1 0 -riemann%1:18:00:: 11262168 1 0 -riemannian%3:01:00:: 03037799 1 0 -riemannian_geometry%1:09:00:: 06007381 1 0 -riesling%1:13:00:: 07897438 2 0 -riesling%1:20:00:: 13147270 1 0 -riesman%1:18:00:: 11262340 1 0 -rifadin%1:06:00:: 04090064 1 0 -rifampin%1:06:00:: 04090064 1 0 -rife%5:00:00:abundant:00 00015720 2 0 -rife%5:00:00:frequent:00 01066787 1 0 -riff%1:10:00:: 07045788 2 0 -riff%1:18:00:: 10530475 1 0 -riff%2:36:00:: 01649605 2 0 -riff%2:39:10:: 02153023 1 0 -riffian%1:18:00:: 10530475 1 0 -riffle%1:04:00:: 00340838 2 0 -riffle%1:11:00:: 07344663 1 0 -riffle%2:35:00:: 01419160 4 0 -riffle%2:35:01:: 01591357 1 1 -riffle%2:38:00:: 02040054 3 0 -riffle%2:39:10:: 02153023 2 0 -riffraff%1:14:00:: 08401819 1 0 -rifle%1:06:00:: 04090263 1 75 -rifle%2:35:13:: 01318849 2 0 -rifle%2:40:00:: 02344568 1 1 -rifle_ball%1:06:00:: 04090548 1 1 -rifle_butt%1:06:00:: 04090682 1 0 -rifle_grenade%1:06:00:: 04090781 1 0 -rifle_range%1:06:00:: 04090923 2 0 -rifle_range%1:15:00:: 08631945 1 0 -rifle_shot%1:15:00:: 08631945 1 0 -riflebird%1:05:00:: 01571410 1 0 -rifled%3:00:00:: 02248078 1 0 -rifleman%1:18:00:: 10530571 2 1 -rifleman%1:18:01:: 10530677 1 3 -rifleman_bird%1:05:00:: 01588996 1 0 -rifling%1:04:00:: 00926026 1 0 -rift%1:11:00:: 07313814 3 0 -rift%1:17:00:: 09410026 2 0 -rift%1:17:01:: 09410101 1 1 -rift_valley%1:17:00:: 09410224 1 0 -rift_valley_fever%1:26:00:: 14179569 1 0 -rig%1:04:00:: 00780148 7 0 -rig%1:06:00:: 04091097 1 2 -rig%1:06:01:: 04091247 3 0 -rig%1:06:02:: 03859958 4 0 -rig%1:06:03:: 02968473 6 0 -rig%1:06:04:: 04467665 2 0 -rig%1:06:05:: 03351434 5 0 -rig%2:30:00:: 00408085 4 0 -rig%2:35:00:: 01286151 3 1 -rig%2:40:00:: 02351239 2 1 -rig%2:41:00:: 02573127 1 1 -rig-veda%1:10:00:: 06465008 1 1 -rig_out%2:29:00:: 00044149 1 0 -rig_up%2:36:00:: 01661655 1 1 -riga%1:15:00:: 09013353 1 0 -rigamarole%1:04:00:: 01026316 2 0 -rigamarole%1:10:00:: 06609672 1 0 -rigatoni%1:13:00:: 07700348 1 0 -rigel%1:17:00:: 09410365 1 0 -rigged%3:00:00:: 01093323 1 0 -rigger%1:06:00:: 04091466 2 1 -rigger%1:06:01:: 04091584 4 0 -rigger%1:18:00:: 10530769 1 1 -rigger%1:18:01:: 10530862 3 0 -rigger_brush%1:06:00:: 04091466 1 0 -rigging%1:06:00:: 04091693 1 0 -rigging%1:06:01:: 04091247 2 0 -riggs'_disease%1:26:00:: 14080836 1 0 -right%1:04:00:: 00351000 6 2 -right%1:06:00:: 04091839 3 5 -right%1:07:00:: 05174653 1 41 -right%1:07:01:: 04850341 7 1 -right%1:08:00:: 05565337 5 2 -right%1:14:00:: 08416652 4 4 -right%1:15:00:: 08625073 2 27 -right%1:21:00:: 13341756 8 0 -right%2:30:00:: 00199659 4 0 -right%2:38:00:: 01984574 3 0 -right%2:38:03:: 01984734 2 0 -right%2:41:00:: 02519991 1 0 -right%3:00:00:: 02031986 1 20 -right%3:00:01:: 02034828 4 10 -right%3:00:02:: 00631391 2 20 -right%3:00:03:: 02030080 7 0 -right%3:00:04:: 00633410 5 2 -right%4:02:00:: 00150351 6 3 -right%4:02:01:: 00196203 5 3 -right%4:02:02:: 00203922 10 0 -right%4:02:03:: 00387828 4 4 -right%4:02:04:: 00205052 1 17 -right%4:02:05:: 00205226 9 1 -right%4:02:06:: 00032299 8 2 -right%4:02:07:: 00205125 7 2 -right%4:02:08:: 00105162 2 14 -right%4:02:09:: 00058033 3 11 -right%5:00:00:accurate:00 00023278 14 0 -right%5:00:00:appropriate:00 00135455 6 1 -right%5:00:00:opportune:00 01661289 13 0 -right%5:00:00:outside:00 01693585 12 0 -right%5:00:00:perpendicular:00 01720930 11 0 -right%5:00:00:right-handed:00 02029047 9 0 -right%5:00:00:satisfactory:00 02082081 8 0 -right%5:00:01:proper:00 01879261 3 16 -right%5:00:02:proper:00 01879464 10 0 -right-angled%5:00:00:square:00 02043587 1 0 -right-angled_triangle%1:25:00:: 13880551 1 0 -right-down%4:02:00:: 00443850 1 0 -right-down%5:00:00:complete:00 00520892 1 0 -right-eyed%5:00:00:eyed:00 00954678 1 0 -right-hand%5:00:00:helpful:00 01197634 3 0 -right-hand%5:00:00:right-handed:00 02029047 2 1 -right-hand%5:00:00:right:00 02032730 1 1 -right-hand_man%1:18:00:: 10531109 1 0 -right-handed%3:00:00:: 02028612 1 0 -right-handed%5:00:00:clockwise:00 00441927 2 0 -right-handed_pitcher%1:18:00:: 10387324 1 0 -right-handedness%1:07:00:: 05067514 1 0 -right-hander%1:18:00:: 10530959 2 0 -right-hander%1:18:01:: 10387324 1 2 -right-minded%5:00:00:right:04 00633581 1 0 -right-side-out%5:00:00:unturned:00 02468453 1 0 -right-side-up%5:00:00:unturned:00 02468538 1 0 -right-wing%5:00:00:right:03 02030793 1 0 -right-winger%1:18:00:: 10531227 1 0 -right_along%4:02:00:: 00068215 1 0 -right_angle%1:25:00:: 13892237 1 1 -right_ascension%1:15:00:: 08633191 1 0 -right_atrioventricular_valve%1:08:00:: 05393996 1 0 -right_atrium%1:08:00:: 05393429 1 0 -right_atrium_of_the_heart%1:08:00:: 05393429 1 0 -right_away%4:02:00:: 00048739 1 10 -right_away%4:02:03:: 00105467 2 0 -right_bank%1:15:00:: 08933940 1 0 -right_brain%1:08:00:: 05477510 1 0 -right_coronary_artery%1:08:00:: 05344073 1 1 -right_field%1:04:00:: 00724898 2 0 -right_field%1:06:00:: 04091839 1 0 -right_fielder%1:18:00:: 10387196 1 0 -right_gastric_artery%1:08:00:: 05345783 1 0 -right_gastric_vein%1:08:00:: 05378850 1 0 -right_hand%1:08:00:: 05565337 1 3 -right_hander%1:18:00:: 10530959 1 0 -right_hemisphere%1:08:00:: 05477510 1 0 -right_of_action%1:07:00:: 05187857 1 0 -right_of_election%1:07:00:: 05188801 1 0 -right_of_entry%1:07:00:: 05189057 1 2 -right_of_first_publication%1:10:00:: 06473168 1 0 -right_of_offset%1:07:00:: 05189396 1 0 -right_of_privacy%1:07:00:: 05189591 1 0 -right_of_re-entry%1:07:00:: 05189208 1 0 -right_of_search%1:07:00:: 05187941 1 0 -right_of_way%1:06:00:: 04092013 3 0 -right_of_way%1:07:00:: 05188095 2 0 -right_of_way%1:07:01:: 05189819 1 0 -right_on%4:02:01:: 00150351 1 0 -right_smart%4:02:00:: 00101752 1 0 -right_smart%5:00:00:considerable:00 00624913 1 0 -right_stage%1:15:00:: 08625297 1 0 -right_to_an_attorney%1:07:00:: 05185444 1 0 -right_to_confront_accusors%1:07:00:: 05185598 1 0 -right_to_due_process%1:07:00:: 05184620 1 0 -right_to_liberty%1:07:00:: 05182157 1 0 -right_to_life%1:07:00:: 05182080 1 0 -right_to_privacy%1:07:00:: 05181975 1 0 -right_to_speedy_and_public_trial_by_jury%1:07:00:: 05185270 1 0 -right_to_the_pursuit_of_happiness%1:07:00:: 05182240 1 0 -right_to_vote%1:07:00:: 05186306 1 2 -right_triangle%1:25:00:: 13880551 1 0 -right_ventricle%1:08:00:: 05392157 1 1 -right_whale%1:05:00:: 02063662 1 0 -right_wing%1:14:00:: 08416652 1 0 -righteous%3:00:00:: 02036578 1 1 -righteous%5:00:00:moral:00 01549087 2 0 -righteously%4:02:00:: 00443948 1 0 -righteousness%1:07:00:: 04826235 1 1 -righteye_flounder%1:05:00:: 02658079 1 0 -righteyed_flounder%1:05:00:: 02658079 1 0 -rightfield%1:04:00:: 00724898 2 0 -rightfield%1:06:00:: 04091839 1 3 -rightful%5:00:00:just:00 01370475 1 1 -rightful%5:00:00:legitimate:00 01407267 2 0 -rightfully%4:02:00:: 00223000 1 2 -rightfulness%1:07:00:: 04850341 1 0 -righthander%1:18:00:: 10530959 1 0 -rightish%5:00:00:right:03 02030704 1 0 -rightism%1:09:00:: 06220449 1 0 -rightist%1:18:00:: 10531227 1 0 -rightist%5:00:00:right:03 02030793 1 0 -rightly%4:02:00:: 00205375 1 4 -rightmost%5:00:00:right:00 02032617 1 0 -rightness%1:07:00:: 04847133 1 1 -rightness%1:07:01:: 04802198 3 0 -rightness%1:07:02:: 04899031 2 0 -rightness%1:07:03:: 04713853 4 0 -rights_issue%1:10:00:: 07166432 1 0 -rights_offering%1:10:00:: 07166432 1 0 -rigid%3:00:00:: 01026721 4 0 -rigid%5:00:00:inflexible:01 01023706 1 5 -rigid%5:00:00:intolerant:00 02436995 2 2 -rigid%5:00:00:nonmoving:00 01564603 5 0 -rigid%5:00:00:unadaptable:00 01029151 3 2 -rigidification%1:22:00:: 13561521 1 0 -rigidify%2:30:00:: 00418408 1 0 -rigidify%2:30:01:: 00418110 2 0 -rigidifying%1:22:00:: 13561521 1 0 -rigidity%1:07:00:: 05023741 1 0 -rigidity%1:07:01:: 04660261 2 0 -rigidly%4:02:00:: 00194578 1 3 -rigidness%1:07:00:: 05023741 1 0 -rigidness%1:07:01:: 04660261 2 0 -rigil%1:17:00:: 09193772 1 0 -rigil_kent%1:17:00:: 09193772 1 0 -rigmarole%1:04:00:: 01026316 2 0 -rigmarole%1:10:00:: 06609672 1 0 -rigor%1:07:00:: 04710127 1 2 -rigor%1:07:01:: 04783567 2 0 -rigor%1:07:02:: 04639732 3 0 -rigor_mortis%1:22:00:: 13551823 2 0 -rigor_mortis%1:26:00:: 14049420 1 0 -rigorous%5:00:00:demanding:01 00711059 2 1 -rigorous%5:00:00:exact:00 00915556 1 1 -rigorously%4:02:00:: 00225410 1 1 -rigorousness%1:07:00:: 04710127 1 0 -rigorousness%1:07:01:: 04639732 2 0 -rigour%1:07:00:: 04710127 2 0 -rigour%1:07:01:: 04783567 1 0 -rigour%1:07:02:: 04639732 3 0 -rigourousness%1:07:00:: 04710127 1 0 -rigourousness%1:07:01:: 04639732 2 0 -rigout%1:06:00:: 04092168 1 0 -rijstafel%1:13:00:: 07875267 1 0 -rijstaffel%1:13:00:: 07875267 1 0 -rijsttaffel%1:13:00:: 07875267 1 0 -riksmaal%1:10:00:: 06954640 1 0 -riksmal%1:10:00:: 06954640 1 0 -rile%2:35:00:: 01419729 2 0 -rile%2:37:00:: 01787955 1 0 -riled%5:00:00:displeased:00 01806106 1 0 -riley%1:18:00:: 11262468 1 0 -riley_b_king%1:18:00:: 11105298 1 0 -rilievo%1:06:00:: 04073669 1 0 -rilke%1:18:00:: 11262574 1 0 -rill%1:17:00:: 09415938 1 0 -rill%1:17:01:: 09410460 2 0 -rim%1:06:00:: 02902250 5 0 -rim%1:06:01:: 03356858 4 0 -rim%1:06:02:: 04092305 3 0 -rim%1:06:03:: 04092447 2 0 -rim%1:25:00:: 13902336 1 2 -rim%2:38:00:: 01866497 3 0 -rim%2:40:00:: 02329999 2 0 -rim%2:42:00:: 02687596 1 1 -rim_blight%1:26:00:: 14218637 1 0 -rima%1:08:00:: 05610008 1 0 -rima_glottidis%1:08:00:: 05610198 1 0 -rima_oris%1:08:00:: 05302499 1 0 -rima_pudendi%1:08:00:: 05522784 1 0 -rima_respiratoria%1:08:00:: 05610365 1 0 -rima_vestibuli%1:08:00:: 05610365 1 0 -rima_vocalis%1:08:00:: 05610198 1 0 -rima_vulvae%1:08:00:: 05522784 1 0 -rimactane%1:06:00:: 04090064 1 0 -rimbaud%1:18:00:: 11262765 1 0 -rime%1:10:00:: 07096661 2 0 -rime%1:27:00:: 14915622 1 0 -rime%2:36:00:: 01701858 2 0 -rime%2:42:00:: 02750432 1 0 -rimed%5:00:00:cold:01 01253254 1 0 -rimeless%3:00:00:: 01966315 1 0 -riming%3:00:00:: 01965636 1 0 -rimless%3:00:00:: 02027609 1 1 -rimmed%3:00:00:: 02027147 1 0 -rimose%5:00:00:rough:02 02247489 1 0 -rimski-korsakov%1:18:00:: 11262929 1 0 -rimsky-korsakov%1:18:00:: 11262929 1 0 -rimu%1:20:00:: 11654293 1 0 -rimy%5:00:00:cold:01 01253254 1 0 -rind%1:13:00:: 07670731 1 0 -rinderpest%1:26:00:: 14272141 1 0 -ring%1:06:00:: 04092609 8 0 -ring%1:06:01:: 02785191 9 0 -ring%1:06:02:: 03533972 3 2 -ring%1:06:03:: 04092959 7 0 -ring%1:07:00:: 04981658 1 4 -ring%1:11:00:: 07391863 6 0 -ring%1:14:00:: 08244062 5 0 -ring%1:17:00:: 09246883 4 0 -ring%1:25:00:: 13875392 2 2 -ring%2:32:00:: 00789448 4 1 -ring%2:35:00:: 01297401 6 0 -ring%2:35:03:: 01467370 5 0 -ring%2:39:00:: 02180898 1 15 -ring%2:39:01:: 02181538 3 5 -ring%2:39:04:: 02183787 2 7 -ring-a-rosy%1:04:00:: 00460344 1 0 -ring-around-a-rosy%1:04:00:: 00460344 1 1 -ring-around-the-rosy%1:04:00:: 00460344 1 0 -ring-binder%1:06:00:: 02840245 1 0 -ring-necked_parakeet%1:05:00:: 01822300 1 0 -ring-necked_pheasant%1:05:00:: 01803362 1 0 -ring-necked_snake%1:05:00:: 01728920 1 0 -ring-shaped%5:00:00:rounded:00 02044860 1 0 -ring-stalked_fungus%1:20:00:: 13010401 1 0 -ring-tailed_cat%1:05:00:: 02508742 1 0 -ring-tailed_lemur%1:05:00:: 02497673 1 0 -ring_armor%1:06:00:: 03000247 1 0 -ring_armour%1:06:00:: 03000247 1 0 -ring_blackbird%1:05:00:: 01558765 1 0 -ring_containment%1:04:00:: 01147676 1 0 -ring_dance%1:04:00:: 00539827 1 0 -ring_disease%1:26:00:: 14279235 1 0 -ring_finger%1:08:00:: 05567489 1 0 -ring_girl%1:18:00:: 10531694 1 0 -ring_lardner%1:18:00:: 11117744 1 0 -ring_mail%1:06:00:: 03000247 1 0 -ring_of_color%1:08:00:: 05554804 1 0 -ring_out%2:39:00:: 02175861 1 4 -ring_ouzel%1:05:00:: 01558765 1 0 -ring_road%1:06:00:: 02828648 1 0 -ring_rot%1:26:02:: 14279235 1 0 -ring_rot_bacteria%1:05:00:: 01361113 1 0 -ring_rot_fungus%1:20:00:: 12974062 1 0 -ring_snake%1:05:01:: 01737875 1 0 -ring_snake%1:05:02:: 01728920 2 0 -ring_thrush%1:05:00:: 01558765 1 0 -ring_up%2:32:00:: 01000058 1 1 -ring_vaccination%1:04:00:: 00824357 1 0 -ringdove%1:05:01:: 01813658 1 0 -ringdove%1:05:02:: 01813088 2 0 -ringed%5:00:00:married:00 01482020 3 0 -ringed%5:00:00:patterned:00 01790259 2 0 -ringed%5:00:00:rounded:00 02044860 1 0 -ringed_snake%1:05:00:: 01737875 1 0 -ringer%1:04:00:: 00106726 4 0 -ringer%1:18:00:: 10531445 3 0 -ringer%1:18:01:: 10531557 2 0 -ringer%1:18:02:: 10714851 1 0 -ringer's_solution%1:27:00:: 14589994 1 0 -ringer_solution%1:27:00:: 14589994 1 0 -ringgit%1:23:00:: 13698076 1 0 -ringgold_wilmer_lardner%1:18:00:: 11117744 1 0 -ringhals%1:05:00:: 01749244 1 0 -ringing%1:07:00:: 04989657 3 0 -ringing%1:10:00:: 07228531 2 1 -ringing%1:11:00:: 07391863 1 1 -ringleader%1:18:00:: 10531838 1 0 -ringlet%1:05:00:: 02277742 4 0 -ringlet%1:06:00:: 04093157 3 0 -ringlet%1:08:00:: 05257737 2 0 -ringlet%1:25:00:: 13875970 1 0 -ringlet_butterfly%1:05:00:: 02277742 1 0 -ringleted%5:00:00:curly:00 01030605 1 0 -ringlike%5:00:00:round:00 02042970 1 0 -ringling%1:18:00:: 11263180 1 0 -ringmaster%1:18:00:: 10531948 1 0 -ringneck_snake%1:05:00:: 01728920 1 0 -ringo_starr%1:18:00:: 11313726 1 0 -rings%1:06:00:: 04093223 1 0 -ringside%1:06:00:: 04093478 1 0 -ringside_seat%1:06:00:: 04093478 1 0 -ringtail%1:05:01:: 01614690 4 0 -ringtail%1:05:02:: 02508213 2 0 -ringtail%1:05:03:: 02508742 1 0 -ringtail%1:05:04:: 02492035 3 0 -ringway%1:06:00:: 02828648 1 0 -ringworm%1:26:00:: 14125466 1 0 -ringworm_bush%1:20:00:: 12499439 1 0 -ringworm_cassia%1:20:00:: 12499439 1 0 -ringworm_shrub%1:20:00:: 12499439 1 0 -rink%1:06:00:: 04093625 1 0 -rinkhals%1:05:00:: 01749244 1 0 -rinse%1:04:00:: 00256309 4 0 -rinse%1:04:01:: 00256407 3 0 -rinse%1:04:02:: 00396642 2 0 -rinse%1:27:00:: 14988854 1 0 -rinse%2:29:00:: 00037138 3 0 -rinse%2:35:00:: 01536168 1 1 -rinse%2:35:02:: 01270199 2 1 -rinse_off%2:35:00:: 01536168 1 0 -rinsing%1:04:00:: 00396642 1 0 -rio%1:15:00:: 08856266 1 0 -rio_bravo%1:17:00:: 09410724 1 0 -rio_de_janeiro%1:15:00:: 08856266 1 0 -rio_de_la_plata%1:17:00:: 09410558 1 0 -rio_grande%1:17:00:: 09410724 1 0 -rio_nunez_coffee%1:20:00:: 12663359 1 0 -rioja%1:13:00:: 07897865 1 0 -riot%1:04:00:: 01170502 1 1 -riot%1:04:01:: 00511212 4 0 -riot%1:10:00:: 06778925 3 0 -riot%1:26:00:: 13977043 2 0 -riot%2:41:00:: 02584661 1 0 -riot%2:41:01:: 02493260 2 0 -riot_act%1:10:00:: 06538895 2 0 -riot_act%1:10:01:: 06539076 1 0 -riot_control%1:04:00:: 00812154 1 0 -riot_control_operation%1:04:00:: 00812154 1 0 -riot_gun%1:06:00:: 04093775 1 0 -rioter%1:18:00:: 10532058 1 0 -rioting%1:26:00:: 13977043 1 0 -riotous%5:00:00:abundant:00 00015247 1 2 -riotous%5:00:00:immoral:00 01549568 3 0 -riotous%5:00:00:unquiet:00 01923720 2 1 -riotously%4:02:00:: 00335544 2 0 -riotously%4:02:01:: 00481933 1 0 -rip%1:04:00:: 00391407 4 0 -rip%1:11:00:: 07404584 3 0 -rip%1:17:00:: 09410928 2 0 -rip%1:18:00:: 10505942 1 0 -rip%2:32:00:: 00863277 4 0 -rip%2:35:00:: 01573276 1 8 -rip%2:35:01:: 01601147 3 2 -rip%2:38:00:: 02098041 2 2 -rip-off%1:04:00:: 00783063 1 0 -rip-roaring%5:00:00:noisy:00 01921466 1 0 -rip_current%1:11:00:: 07404443 1 0 -rip_off%2:41:00:: 02573275 1 0 -rip_out%2:32:00:: 00930194 1 0 -rip_up%2:35:00:: 01573891 1 0 -rip_van_winkle%1:18:00:: 10532393 2 0 -rip_van_winkle%1:18:01:: 10532479 1 0 -rip_van_winkle%1:18:02:: 09603471 3 0 -riparia%1:05:00:: 01596142 1 0 -riparia_riparia%1:05:00:: 01596273 1 0 -riparian%3:01:00:: 02939272 1 0 -riparian_forest%1:17:00:: 09411189 1 0 -riparian_right%1:07:00:: 05188547 1 0 -ripcord%1:06:00:: 04093915 2 0 -ripcord%1:06:01:: 04094060 1 0 -ripe%3:00:00:: 01493173 1 6 -ripe%5:00:00:late:00 00816839 5 0 -ripe%5:00:00:mature:02 01492257 4 0 -ripe%5:00:00:opportune:00 01661289 3 0 -ripe%5:00:00:ready:00 01931807 2 1 -ripe_olive%1:13:00:: 07767549 1 0 -ripely%4:02:00:: 00441911 1 0 -ripen%2:30:00:: 00249852 2 1 -ripen%2:30:01:: 00249969 1 1 -ripened%5:00:00:ripe:00 01493423 1 0 -ripeness%1:26:00:: 14425601 1 0 -ripening%1:22:00:: 13512238 1 1 -ripening%1:22:01:: 13551965 2 0 -riposte%1:04:00:: 01174825 2 0 -riposte%1:10:00:: 07199922 1 0 -riposte%2:32:00:: 00816353 2 0 -riposte%2:38:00:: 02062503 1 0 -ripper%1:18:00:: 10532252 1 0 -ripping%5:00:00:cacophonous:00 00300469 1 1 -ripping_bar%1:06:00:: 04094250 1 0 -ripping_chisel%1:06:00:: 04094438 1 0 -ripple%1:11:00:: 07344663 1 4 -ripple%1:11:01:: 07345441 2 1 -ripple%2:38:00:: 02040054 1 2 -ripple%2:39:00:: 02187922 2 1 -ripple-grass%1:20:00:: 12599185 1 0 -ripple_mark%1:17:00:: 09411295 1 0 -rippled%5:00:00:agitated:02 00088157 2 0 -rippled%5:00:00:uneven:00 00911762 1 0 -rippling%1:11:00:: 07344663 1 0 -ripsaw%1:06:00:: 04094608 1 0 -riptide%1:11:00:: 07404443 2 0 -riptide%1:11:01:: 07404584 1 0 -rira%1:14:00:: 08040762 1 0 -risc%1:07:00:: 04932875 1 0 -rise%1:04:00:: 00324384 2 3 -rise%1:04:01:: 00364260 10 0 -rise%1:07:01:: 05068918 6 1 -rise%1:07:02:: 05110185 5 1 -rise%1:07:03:: 05110408 9 0 -rise%1:11:00:: 07324917 1 8 -rise%1:11:01:: 07348399 7 0 -rise%1:11:02:: 07445480 4 1 -rise%1:11:03:: 07327288 8 0 -rise%1:17:00:: 09206985 3 1 -rise%2:29:00:: 00098770 17 0 -rise%2:29:08:: 00018158 10 4 -rise%2:30:00:: 00155143 2 23 -rise%2:30:02:: 00432436 9 4 -rise%2:30:03:: 00433232 8 4 -rise%2:30:09:: 00155547 11 3 -rise%2:33:00:: 01155545 13 2 -rise%2:37:00:: 01818116 12 2 -rise%2:38:00:: 01968569 1 26 -rise%2:38:02:: 01983134 15 1 -rise%2:38:04:: 01990281 5 5 -rise%2:38:05:: 01983264 3 20 -rise%2:38:06:: 01969779 7 4 -rise%2:38:08:: 01970348 16 1 -rise%2:41:00:: 02583139 14 1 -rise%2:42:00:: 02696801 4 8 -rise%2:42:01:: 02624263 6 4 -rise_to_power%1:04:00:: 00236581 1 0 -rise_up%2:38:00:: 01990281 1 4 -rise_up%2:38:01:: 01981623 3 0 -rise_up%2:41:00:: 02583139 2 0 -risen%5:00:00:up:00 02491308 1 0 -riser%1:06:00:: 04094720 3 0 -riser%1:06:01:: 04094859 2 0 -riser%1:18:00:: 10532576 1 0 -riser_main%1:06:00:: 04094859 1 0 -riser_pipe%1:06:00:: 04094859 1 0 -riser_pipeline%1:06:00:: 04094859 1 0 -risibility%1:07:00:: 04640830 1 0 -risible%5:00:00:humorous:00 01265308 1 0 -rising%1:04:00:: 00962129 2 0 -rising%1:11:00:: 07445480 1 0 -rising%3:00:00:: 02486932 1 3 -rising%5:00:00:ascending:00 02484530 2 0 -rising%5:00:00:future:00 01733082 3 0 -rising%5:00:00:new:00 01642843 4 0 -rising_prices%1:22:00:: 13498828 1 0 -rising_slope%1:07:00:: 05068918 1 0 -rising_tide%1:11:00:: 07403030 1 0 -rising_trot%1:04:00:: 00287762 1 0 -risk%1:04:00:: 00802238 2 2 -risk%1:07:01:: 05093293 4 0 -risk%1:07:02:: 05093418 3 0 -risk%1:26:00:: 14541852 1 4 -risk%2:41:00:: 02545578 1 8 -risk%2:41:01:: 02544348 2 2 -risk-free%5:00:00:safe:01 02058529 1 0 -risk_arbitrage%1:04:00:: 01094293 1 0 -risk_capital%1:21:00:: 13354260 1 0 -risk_of_exposure%1:07:00:: 05093293 1 0 -risk_of_infection%1:07:00:: 05093418 1 0 -risk_taker%1:18:00:: 10119200 1 0 -riskily%4:02:00:: 00444198 1 0 -riskiness%1:26:00:: 14543552 1 0 -riskless%5:00:00:safe:01 02058529 1 0 -risklessness%1:26:00:: 14538908 1 0 -risky%5:00:00:dangerous:00 02059811 1 1 -risky%5:00:00:unsound:00 02274537 2 0 -risky_venture%1:04:00:: 00796315 1 0 -risotto%1:13:00:: 07875436 1 0 -risque%5:00:00:sexy:00 02132224 1 0 -riss_glaciation%1:22:00:: 13487638 1 0 -rissa%1:05:00:: 02042637 1 0 -rissole%1:13:00:: 07866277 1 0 -rit.%5:00:00:decreasing:02 02538508 1 0 -ritalin%1:06:00:: 03756624 1 0 -ritardando%5:00:00:decreasing:02 02538508 1 0 -rite%1:04:00:: 01027859 2 2 -rite%1:04:01:: 01029406 1 2 -rite_of_passage%1:04:00:: 01037294 1 0 -ritenuto%5:00:00:decreasing:02 02538508 1 0 -ritonavir%1:06:00:: 04094983 1 0 -rittenhouse%1:18:00:: 11263337 1 0 -ritual%1:04:00:: 01027859 1 6 -ritual%1:04:01:: 01030820 2 4 -ritual%1:04:02:: 00414790 3 0 -ritual%3:01:00:: 02892389 2 0 -ritual%3:01:02:: 02892656 1 0 -ritual_dance%1:04:00:: 00541479 1 0 -ritual_dancing%1:04:00:: 00541479 1 0 -ritual_killing%1:04:00:: 00227595 1 0 -ritualise%2:30:00:: 00525446 1 0 -ritualism%1:04:00:: 01031023 2 0 -ritualism%1:09:00:: 06148002 1 0 -ritualist%1:18:00:: 10532886 1 0 -ritualist%1:18:01:: 10532751 2 0 -ritualistic%3:01:00:: 03111832 1 0 -ritualize%2:30:00:: 00525446 1 1 -ritually%4:02:00:: 00220669 1 0 -ritz%1:06:00:: 04095109 3 0 -ritz%1:10:00:: 06889875 2 0 -ritz%1:18:00:: 11263558 1 0 -ritzy%5:00:00:elegant:00 00850875 1 0 -rival%1:18:00:: 10533013 1 1 -rival%2:33:00:: 01122194 2 0 -rival%2:42:00:: 02672187 1 4 -rivalrous%5:00:00:competitive:00 00512941 1 0 -rivalry%1:04:00:: 01168569 1 0 -rive%2:35:00:: 01573276 1 1 -rive%2:35:01:: 01556572 2 0 -river%1:17:00:: 09411430 1 55 -river_acheron%1:17:00:: 09186709 1 0 -river_adige%1:17:00:: 09187743 1 0 -river_aire%1:17:00:: 09191707 1 0 -river_arno%1:17:00:: 09206693 1 0 -river_avon%1:17:00:: 09211944 2 0 -river_avon%1:17:01:: 09212151 1 0 -river_basin%1:15:00:: 08518940 1 0 -river_birch%1:20:00:: 12282933 1 0 -river_blindness%1:26:00:: 14454030 1 0 -river_boat%1:06:00:: 04095210 1 0 -river_bottom%1:17:00:: 09415671 1 0 -river_boulder%1:17:00:: 09415793 1 0 -river_cam%1:17:00:: 09231587 1 0 -river_cocytus%1:17:00:: 09248724 1 0 -river_cooter%1:05:00:: 01668892 1 0 -river_dolphin%1:05:00:: 02072040 1 0 -river_gum%1:20:00:: 12336333 1 0 -river_horse%1:05:00:: 02398521 1 0 -river_kasai%1:17:00:: 09324474 1 0 -river_lethe%1:17:00:: 09338453 1 0 -river_limpet%1:05:00:: 01949973 1 0 -river_otter%1:05:00:: 02445004 1 0 -river_pear%1:13:00:: 07753448 1 0 -river_prawn%1:05:00:: 01987727 2 0 -river_prawn%1:13:00:: 07794353 1 0 -river_red_gum%1:20:00:: 12336333 1 0 -river_severn%1:17:00:: 09430771 1 0 -river_shad%1:05:00:: 02530831 1 0 -river_styx%1:17:00:: 09449773 1 0 -river_thames%1:17:00:: 09457020 1 0 -river_trent%1:17:00:: 09461515 1 0 -river_tyne%1:17:00:: 09464805 1 0 -rivera%1:18:00:: 11263687 1 0 -riverbank%1:17:00:: 09415584 1 2 -riverbed%1:17:00:: 09415671 1 0 -riverside%1:15:00:: 09064861 2 0 -riverside%1:17:00:: 09415584 1 0 -rivet%1:06:00:: 04095342 2 0 -rivet%1:06:01:: 04343346 1 0 -rivet%2:31:00:: 00722232 1 2 -rivet%2:31:01:: 00722675 3 0 -rivet%2:35:00:: 01367266 2 0 -rivet_line%1:06:00:: 04095725 1 0 -riveter%1:06:00:: 04095577 2 0 -riveter%1:18:00:: 10533541 1 0 -riveting%5:00:00:interesting:00 01344171 1 0 -riveting_machine%1:06:00:: 04095577 1 0 -rivetter%1:06:00:: 04095577 2 0 -rivetter%1:18:00:: 10533541 1 0 -riviera%1:15:00:: 08939201 1 0 -rivina%1:20:00:: 11856389 1 0 -rivina_humilis%1:20:00:: 11856573 1 0 -rivulet%1:17:00:: 09415938 1 1 -rivulus%1:05:00:: 01447658 1 0 -riyadh%1:15:00:: 08993871 1 0 -riyal%1:23:02:: 13698327 2 0 -riyal%1:23:03:: 13698706 1 0 -riyal-omani%1:23:00:: 13697134 1 0 -rn%1:18:00:: 10516527 2 0 -rn%1:27:00:: 14652104 1 0 -rna%1:27:00:: 14832193 1 0 -rna_polymerase%1:27:00:: 14984687 1 0 -rnase%1:27:00:: 14832046 1 0 -ro%1:10:00:: 06897797 1 0 -roach%1:05:01:: 02233338 4 0 -roach%1:05:02:: 01442450 5 0 -roach%1:06:00:: 04095853 2 0 -roach%1:06:01:: 04036494 3 0 -roach%1:08:00:: 05261088 1 0 -roach%2:35:00:: 01299473 2 0 -roach%2:35:01:: 01299562 1 0 -roach_clip%1:06:00:: 04095938 1 0 -roach_holder%1:06:00:: 04095938 1 0 -road%1:04:00:: 00174003 2 2 -road%1:06:00:: 04096066 1 94 -road_agent%1:18:00:: 10175507 1 0 -road_builder%1:18:00:: 10533681 1 0 -road_construction%1:04:00:: 00912733 1 0 -road_game%1:04:00:: 00456690 1 1 -road_gang%1:14:00:: 08243492 1 0 -road_hog%1:18:00:: 10533780 1 0 -road_map%1:06:00:: 04097256 2 0 -road_map%1:09:00:: 05912552 1 0 -road_mender%1:18:00:: 10533874 1 0 -road_metal%1:27:00:: 14696690 1 0 -road_rage%1:04:00:: 01170406 1 0 -road_roller%1:06:00:: 04310157 1 0 -road_runner%1:18:00:: 10292969 1 0 -road_sense%1:09:00:: 05615258 1 0 -road_show%1:04:00:: 00523078 1 1 -road_surface%1:06:00:: 04097527 1 0 -road_test%1:09:00:: 05800153 1 0 -road_to_damascus%1:11:00:: 07418497 1 0 -roadbed%1:06:00:: 04096733 1 0 -roadblock%1:06:00:: 04096848 2 0 -roadblock%1:09:00:: 05690916 1 1 -roadbook%1:10:00:: 06423090 1 0 -roadhog%1:18:00:: 10533780 1 0 -roadhouse%1:06:00:: 04097085 1 0 -roadkill%1:05:00:: 01759009 1 0 -roadless%5:00:00:inaccessible:00 00020241 1 0 -roadman%1:18:00:: 10726786 1 0 -roadman%1:18:01:: 10533874 2 0 -roadrunner%1:05:00:: 01824035 1 0 -roads%1:15:00:: 08640300 1 0 -roadside%1:06:00:: 04565233 1 2 -roadstead%1:15:00:: 08640300 1 0 -roadster%1:06:00:: 02912557 2 0 -roadster%1:06:01:: 04097373 1 0 -roadway%1:06:00:: 04097622 1 11 -roadworthiness%1:07:00:: 04807626 1 0 -roald_amundsen%1:18:00:: 10816223 1 0 -roald_hoffmann%1:18:00:: 11054856 1 0 -roam%2:38:00:: 01881180 1 7 -roamer%1:18:00:: 10765679 1 0 -roan%1:05:00:: 02375302 2 0 -roan%1:27:00:: 15014845 1 0 -roan%5:00:00:colored:00 00400472 1 0 -roanoke%1:15:00:: 09151411 1 0 -roar%1:10:00:: 07121361 2 2 -roar%1:11:00:: 07377682 1 13 -roar%1:11:01:: 07392280 3 0 -roar%2:29:00:: 00029836 6 0 -roar%2:32:01:: 01046059 1 15 -roar%2:32:02:: 01046932 3 6 -roar%2:32:03:: 00915605 2 7 -roar%2:32:05:: 01048718 5 1 -roar%2:38:00:: 01996188 4 1 -roar_off%2:38:00:: 02014733 1 1 -roarer%1:18:00:: 10533983 1 1 -roaring%1:10:00:: 07121361 2 0 -roaring%1:11:00:: 07377682 1 2 -roaring%4:02:00:: 00444324 1 0 -roaring%5:00:00:successful:00 02331857 1 0 -roast%1:09:00:: 05734381 2 0 -roast%1:13:00:: 07580782 1 0 -roast%2:30:00:: 00324560 1 4 -roast%2:32:00:: 00851933 2 0 -roast%5:00:00:cooked:00 00618377 1 0 -roast_beef%1:13:00:: 07663796 1 0 -roast_beef_plant%1:20:00:: 12413642 1 0 -roast_lamb%1:13:00:: 07668215 1 0 -roast_pork%1:13:00:: 07669788 1 0 -roast_veal%1:13:00:: 07665844 1 0 -roasted%5:00:00:cooked:00 00618377 1 1 -roaster%1:06:00:: 04097760 4 0 -roaster%1:13:00:: 07645631 3 0 -roaster%1:18:00:: 10534277 2 0 -roaster%1:18:01:: 10534389 1 0 -roasting%1:04:00:: 00247442 1 0 -rob%2:40:00:: 02321391 1 5 -rob%2:40:01:: 02319050 2 5 -rob_roy%1:13:00:: 07915800 2 0 -rob_roy%1:18:00:: 11147348 1 0 -robalo%1:05:00:: 02559862 1 0 -robaxin%1:06:00:: 03755545 1 0 -robber%1:18:01:: 10534586 1 5 -robber_fly%1:05:00:: 02196119 1 0 -robber_frog%1:05:01:: 01643255 2 0 -robber_frog%1:05:02:: 01643507 1 0 -robbery%1:04:00:: 00781685 1 3 -robbery%1:04:01:: 00966599 2 0 -robbery_conviction%1:04:00:: 01194225 1 0 -robbery_suspect%1:18:00:: 10534748 1 0 -robbins%1:18:00:: 11263803 1 0 -robe%1:06:00:: 04097866 1 3 -robe%1:06:01:: 03450516 2 1 -robe%2:29:00:: 00052043 1 1 -robe%2:35:00:: 01617034 2 0 -robe-de-chambre%1:06:00:: 03237992 1 0 -robed%5:00:00:clothed:00 00454440 1 0 -robert%1:18:00:: 11264002 1 0 -robert's_rules_of_order%1:18:00:: 10534849 1 0 -robert_a._heinlein%1:18:00:: 11038505 1 0 -robert_abram_bartlett%1:18:00:: 10837023 1 0 -robert_adam%1:18:00:: 10808045 1 0 -robert_alexander_schumann%1:18:00:: 11287016 1 0 -robert_andrews_millikan%1:18:00:: 11180476 1 0 -robert_anson_heinlein%1:18:00:: 11038505 1 0 -robert_barany%1:18:00:: 10834176 1 0 -robert_bartlett%1:18:00:: 10837023 1 0 -robert_benchley%1:18:00:: 10843705 1 0 -robert_boyle%1:18:00:: 10860108 1 0 -robert_brown%1:18:00:: 10866385 1 0 -robert_browning%1:18:00:: 10867064 1 0 -robert_bruce_mathias%1:18:00:: 11164332 1 0 -robert_bunsen%1:18:00:: 10871424 1 0 -robert_burns%1:18:00:: 10873679 1 0 -robert_burns_woodward%1:18:00:: 11396338 1 0 -robert_charles_benchley%1:18:00:: 10843705 1 0 -robert_charles_venturi%1:18:00:: 11362885 1 0 -robert_clive%1:18:00:: 10902934 1 0 -robert_curl%1:18:00:: 10918119 1 0 -robert_de_niro%1:18:00:: 10930913 1 0 -robert_e._lee%1:18:00:: 11123590 1 0 -robert_e._peary%1:18:00:: 11227796 1 0 -robert_e_lee's_birthday%1:28:00:: 15182569 1 0 -robert_e_lee_day%1:28:00:: 15182569 1 0 -robert_edward_lee%1:18:00:: 11123590 1 0 -robert_edwin_peary%1:18:00:: 11227796 1 0 -robert_emmet_sherwood%1:18:00:: 11298403 1 0 -robert_f._curl%1:18:00:: 10918119 1 0 -robert_falcon_scott%1:18:00:: 11289491 1 0 -robert_floyd_curl_jr.%1:18:00:: 10918119 1 0 -robert_frost%1:18:00:: 10983931 1 0 -robert_fulton%1:18:00:: 10985838 1 0 -robert_graves%1:18:00:: 11012300 1 0 -robert_gray%1:18:00:: 11012676 1 0 -robert_herrick%1:18:00:: 11045796 1 0 -robert_hooke%1:18:00:: 11057925 1 0 -robert_hutchings_goddard%1:18:00:: 11002895 1 0 -robert_i%1:18:00:: 10867473 1 0 -robert_indiana%1:18:00:: 11071467 1 0 -robert_james_fischer%1:18:00:: 10971528 1 0 -robert_jemison_van_de_graaff%1:18:00:: 11359037 1 0 -robert_joffrey%1:18:00:: 11085813 1 0 -robert_king_merton%1:18:00:: 11176669 1 0 -robert_koch%1:18:00:: 11108400 1 0 -robert_lee_frost%1:18:00:: 10983931 1 0 -robert_louis_balfour_stevenson%1:18:00:: 11317897 1 0 -robert_louis_stevenson%1:18:00:: 11317897 1 0 -robert_lowell%1:18:00:: 11142788 1 0 -robert_m._yerkes%1:18:00:: 11402626 1 0 -robert_macgregor%1:18:00:: 11147348 1 0 -robert_maynard_hutchins%1:18:00:: 11068922 1 0 -robert_mearns_yerkes%1:18:00:: 11402626 1 0 -robert_merton%1:18:00:: 11176669 1 0 -robert_mills%1:18:00:: 11180643 1 0 -robert_mitchum%1:18:00:: 11182966 1 0 -robert_morris%1:18:00:: 11191848 1 0 -robert_motherwell%1:18:00:: 11193928 1 0 -robert_nesta_marley%1:18:00:: 11157580 1 0 -robert_oppenheimer%1:18:00:: 11215909 1 0 -robert_orr%1:18:00:: 11217072 1 0 -robert_owen%1:18:00:: 11219121 1 0 -robert_peary%1:18:00:: 11227796 1 0 -robert_peel%1:18:00:: 11228039 1 0 -robert_penn_warren%1:18:00:: 11374952 1 0 -robert_r._livingston%1:18:00:: 11135610 1 0 -robert_ranke_graves%1:18:00:: 11012300 1 0 -robert_redford%1:18:00:: 11256125 1 0 -robert_robinson%1:18:00:: 11266524 1 0 -robert_schumann%1:18:00:: 11287016 1 0 -robert_scott%1:18:00:: 11289491 1 0 -robert_southey%1:18:00:: 11309164 1 0 -robert_the_bruce%1:18:00:: 10867473 1 0 -robert_traill_spence_lowell_jr.%1:18:00:: 11142788 1 0 -robert_treat_paine%1:18:00:: 11221107 1 0 -robert_tyre_jones%1:18:00:: 11090512 1 0 -robert_van_de_graaff%1:18:00:: 11359037 1 0 -robert_venturi%1:18:00:: 11362885 1 0 -robert_walpole%1:18:00:: 11372372 1 0 -robert_wilhelm_bunsen%1:18:00:: 10871424 1 0 -robert_william_service%1:18:00:: 11293636 1 0 -robert_woodrow_wilson%1:18:00:: 11391915 1 0 -robert_woodward%1:18:00:: 11396338 1 0 -roberto_francesco_romolo_bellarmine%1:18:00:: 10842730 1 0 -roberts%1:18:00:: 11264193 4 0 -roberts%1:18:01:: 11264343 3 0 -roberts%1:18:02:: 11264508 2 0 -roberts%1:18:03:: 11264614 1 0 -robertson%1:18:00:: 11264828 1 0 -robeson%1:18:00:: 11264973 1 0 -robespierre%1:18:00:: 11265183 1 0 -robin%1:05:01:: 01558993 2 0 -robin%1:05:02:: 01562265 1 0 -robin's_plantain%1:20:00:: 11967142 1 0 -robin_goodfellow%1:18:00:: 09541809 1 0 -robin_hood%1:18:00:: 10535047 1 0 -robin_redbreast%1:05:02:: 01562265 1 0 -robinia%1:20:00:: 12567768 1 0 -robinia_hispida%1:20:00:: 12567950 1 0 -robinia_pseudoacacia%1:20:00:: 12568186 1 0 -robinia_viscosa%1:20:00:: 12568649 1 0 -robinson%1:18:00:: 11265416 7 0 -robinson%1:18:01:: 11265591 6 0 -robinson%1:18:02:: 11265731 5 0 -robinson%1:18:03:: 11265914 4 0 -robinson%1:18:04:: 11266117 3 0 -robinson%1:18:05:: 11266279 2 0 -robinson%1:18:06:: 11266524 1 0 -robinson_crusoe%1:18:00:: 10535196 1 0 -robinson_jeffers%1:18:00:: 11081673 1 0 -robitussin%1:06:00:: 04098032 1 0 -roble%1:20:01:: 12273939 2 0 -roble%1:20:02:: 12562785 1 0 -roble_beech%1:20:00:: 12267133 1 0 -robot%1:06:00:: 02761392 1 0 -robot_bomb%1:06:00:: 02929923 1 0 -robot_pilot%1:06:00:: 02762169 1 0 -robotic%3:01:00:: 02939781 1 0 -robotic%5:00:00:mechanical:00 01499999 2 0 -robotic_telesurgery%1:04:00:: 00685196 1 0 -robotics%1:09:00:: 06133654 1 0 -robotics_equipment%1:06:00:: 04098169 1 0 -robotlike%5:00:00:mechanical:00 01499999 1 0 -robust%3:00:00:: 02037708 1 1 -robust%5:00:00:strong:00 02323521 3 0 -robust%5:00:00:tasty:00 02397234 2 0 -robust%5:00:00:unrefined:01 01951112 4 0 -robusta_coffee%1:20:00:: 12663359 1 0 -robustious%5:00:00:disorderly:00 01666489 1 0 -robustly%4:02:00:: 00444386 1 0 -robustness%1:07:00:: 05031012 1 1 -robustness%1:07:01:: 04920000 2 0 -roc%1:18:00:: 09501322 1 0 -rocambole%1:20:00:: 12434985 1 0 -roccella%1:20:00:: 12989007 1 0 -roccella_tinctoria%1:20:00:: 12989007 1 0 -roccellaceae%1:20:00:: 12988703 1 0 -rocco_marciano%1:18:00:: 11155943 1 0 -roccus%1:05:00:: 02567960 1 0 -roccus_saxatilis%1:05:00:: 02568087 1 0 -rocephin%1:06:00:: 02989893 1 0 -rochambeau%1:18:00:: 11266703 1 0 -rochelle_powder%1:27:00:: 15009637 1 0 -rochelle_salt%1:27:00:: 15009474 1 0 -rochelle_salts%1:27:00:: 15009474 1 0 -rochester%1:15:00:: 09125203 1 0 -rochester%1:15:01:: 09103112 2 0 -rochon_prism%1:06:00:: 04098260 1 0 -rock%1:04:00:: 00348008 7 0 -rock%1:10:01:: 07064715 6 0 -rock%1:13:00:: 07609083 5 0 -rock%1:17:01:: 09416076 1 14 -rock%1:18:00:: 10535366 4 0 -rock%1:18:01:: 11266920 3 0 -rock%1:27:00:: 14696793 2 6 -rock%2:38:00:: 01875295 1 6 -rock%2:38:06:: 01876028 2 0 -rock'n'roll%1:10:00:: 07064715 1 0 -rock-and-roll%1:10:00:: 07064715 1 0 -rock-bottom%5:00:00:low:02 01213090 1 0 -rock-inhabiting%5:00:00:inhabited:00 01312466 1 0 -rock-loving%5:00:00:healthy:00 01172035 1 0 -rock-ribbed%5:00:00:inflexible:02 01025212 2 0 -rock-ribbed%5:00:00:rough:00 02241834 1 0 -rock-steady%5:00:00:steady:00 02301969 1 1 -rock_'n'_roll%1:10:00:: 07064715 1 0 -rock_'n'_roll_musician%1:18:00:: 10535881 1 0 -rock_and_roll%1:10:00:: 07064715 1 0 -rock_band%1:14:00:: 08250501 1 0 -rock_barnacle%1:05:00:: 01998741 1 0 -rock_bass%1:05:01:: 02564403 2 0 -rock_bass%1:05:02:: 02567633 1 0 -rock_beauty%1:05:00:: 02606052 1 0 -rock_bit%1:06:00:: 04098399 1 0 -rock_bottom%1:15:00:: 08512182 1 0 -rock_brake%1:20:01:: 13173697 3 0 -rock_brake%1:20:02:: 13210205 2 0 -rock_brake%1:20:03:: 13211790 1 0 -rock_cake%1:13:00:: 07642070 1 0 -rock_candy%1:13:01:: 07608980 2 0 -rock_candy%1:13:02:: 07609083 1 0 -rock_climber%1:18:00:: 10535604 1 0 -rock_climbing%1:04:00:: 00326094 1 0 -rock_concert%1:10:00:: 06892979 1 0 -rock_cornish%1:05:00:: 01790557 1 0 -rock_cornish_hen%1:13:00:: 07646163 1 0 -rock_crab%1:05:00:: 01978455 1 0 -rock_cress%1:20:00:: 11872146 1 0 -rock_crystal%1:27:00:: 14694293 1 0 -rock_dove%1:05:00:: 01812662 1 0 -rock_drill%1:06:00:: 02875436 1 0 -rock_elm%1:20:01:: 12408873 1 0 -rock_elm%1:20:02:: 12406488 2 0 -rock_fever%1:26:00:: 14128029 1 0 -rock_garden%1:06:00:: 04099854 1 0 -rock_geranium%1:20:00:: 12798466 1 0 -rock_group%1:14:00:: 08250501 1 0 -rock_gunnel%1:05:00:: 02615298 1 0 -rock_harlequin%1:20:00:: 11904477 1 0 -rock_hind%1:05:00:: 02569631 1 0 -rock_hopper%1:05:00:: 02057330 1 0 -rock_hyrax%1:05:00:: 02372952 1 0 -rock_island%1:15:00:: 09084298 1 0 -rock_kangaroo%1:05:00:: 01878929 1 0 -rock_lobster%1:05:00:: 01984695 2 0 -rock_lobster%1:13:00:: 07793260 1 0 -rock_maple%1:20:00:: 12753245 1 0 -rock_music%1:10:00:: 07064715 1 0 -rock_of_gibraltar%1:15:00:: 09028841 1 0 -rock_oil%1:27:00:: 14980579 1 0 -rock_opera%1:10:00:: 06592281 1 0 -rock_outcrop%1:17:00:: 09381242 1 1 -rock_partridge%1:05:00:: 01808291 1 0 -rock_penstemon%1:20:00:: 12887713 1 0 -rock_pigeon%1:05:00:: 01812662 1 0 -rock_pink%1:20:00:: 11863717 1 0 -rock_plant%1:20:00:: 13123681 1 0 -rock_polypody%1:20:00:: 13173697 1 0 -rock_purslane%1:20:00:: 11858703 1 0 -rock_python%1:05:00:: 01744401 1 2 -rock_rabbit%1:05:01:: 02328429 2 0 -rock_rabbit%1:05:02:: 02372952 1 0 -rock_rattlesnake%1:05:00:: 01756733 1 0 -rock_rose%1:20:01:: 12374418 2 0 -rock_rose%1:20:02:: 12376073 1 0 -rock_salmon%1:13:00:: 07795598 1 0 -rock_salt%1:27:00:: 14672224 1 0 -rock_sandwort%1:20:00:: 11806679 1 0 -rock_sea_bass%1:05:00:: 02567633 1 0 -rock_snake%1:05:00:: 01744401 1 0 -rock_spikemoss%1:20:00:: 13225075 1 0 -rock_springs%1:15:00:: 09160168 1 0 -rock_squirrel%1:05:00:: 02358890 1 0 -rock_star%1:18:00:: 10536416 1 0 -rock_sunfish%1:05:00:: 02564403 1 0 -rock_wallaby%1:05:00:: 01878929 1 0 -rock_wool%1:27:00:: 14769644 1 0 -rock_wren%1:05:01:: 01585715 2 0 -rock_wren%1:05:02:: 01588725 1 0 -rockabilly%1:10:00:: 07064537 1 0 -rockbound%5:00:00:rough:00 02241834 1 0 -rockchuck%1:05:00:: 02361850 1 0 -rockcress%1:20:00:: 11872146 2 0 -rockcress%1:20:02:: 11874081 1 0 -rockefeller%1:18:00:: 11267113 1 0 -rocker%1:06:00:: 04098513 7 0 -rocker%1:06:01:: 04099969 4 0 -rocker%1:06:02:: 04098710 6 0 -rocker%1:06:03:: 04098795 5 0 -rocker%1:18:00:: 10535706 3 0 -rocker%1:18:01:: 10535881 2 0 -rocker%1:18:02:: 10536021 1 0 -rocker_arm%1:06:00:: 04099003 1 0 -rockers%1:14:00:: 08370878 1 0 -rockery%1:06:00:: 04099854 1 0 -rocket%1:06:00:: 04099175 2 2 -rocket%1:06:01:: 04099429 1 2 -rocket%1:06:02:: 04232902 5 0 -rocket%1:10:02:: 07263053 4 0 -rocket%1:20:00:: 11886537 3 0 -rocket%2:35:00:: 01241753 2 0 -rocket%2:38:00:: 01944086 1 0 -rocket-propelled%3:01:00:: 02788916 1 0 -rocket_base%1:06:00:: 04099649 1 0 -rocket_cress%1:20:00:: 11874081 1 0 -rocket_engine%1:06:00:: 04099175 1 0 -rocket_engineer%1:18:00:: 10536134 1 0 -rocket_firing%1:04:00:: 00103419 1 0 -rocket_fuel%1:27:00:: 14692026 1 0 -rocket_larkspur%1:20:00:: 11732567 1 0 -rocket_launcher%1:06:00:: 03647520 1 0 -rocket_launching%1:04:00:: 00103419 1 0 -rocket_propellant%1:27:00:: 14692026 1 0 -rocket_propellent%1:27:00:: 14692026 1 0 -rocket_propulsion%1:19:00:: 11498679 1 0 -rocket_range%1:06:00:: 04099761 1 0 -rocket_salad%1:20:00:: 11886537 1 0 -rocket_scientist%1:18:00:: 10536134 2 0 -rocket_scientist%1:18:01:: 10536274 1 0 -rocketry%1:09:00:: 06135659 1 0 -rockfish%1:05:01:: 02644113 2 0 -rockfish%1:05:02:: 02568087 3 0 -rockfish%1:13:00:: 07792219 1 0 -rockfoil%1:20:00:: 12793015 1 0 -rockford%1:15:00:: 09084196 1 0 -rockies%1:17:00:: 09416570 1 0 -rockiness%1:07:00:: 04772191 1 0 -rocking_chair%1:06:00:: 04099969 1 0 -rocking_horse%1:06:00:: 03523633 1 0 -rockingham%1:18:00:: 11267343 1 0 -rockingham_podocarp%1:20:00:: 11652376 1 0 -rocklike%5:00:00:hard:01 01151951 1 2 -rockrose%1:20:01:: 12374418 2 0 -rockrose%1:20:02:: 12376073 1 0 -rockrose_family%1:20:00:: 12374002 1 0 -rockslide%1:11:00:: 07405817 1 0 -rockweed%1:05:00:: 01404628 1 0 -rockwell%1:18:00:: 11267568 1 0 -rockwell_kent%1:18:00:: 11101576 1 0 -rocky%3:00:00:: 02243567 2 0 -rocky%5:00:00:difficult:00 00747910 4 0 -rocky%5:00:00:rough:00 02241988 1 3 -rocky%5:00:00:unstable:00 02293141 3 0 -rocky-mountain_maple%1:20:00:: 12754174 1 0 -rocky_marciano%1:18:00:: 11155943 1 0 -rocky_mountain_bee_plant%1:20:00:: 11866706 1 0 -rocky_mountain_bighorn%1:05:00:: 02415577 1 0 -rocky_mountain_bristlecone_pine%1:20:00:: 11617272 1 0 -rocky_mountain_dogbane%1:20:00:: 11768108 1 0 -rocky_mountain_goat%1:05:00:: 02418465 1 0 -rocky_mountain_jay%1:05:00:: 01581434 1 0 -rocky_mountain_national_park%1:15:00:: 08608813 1 0 -rocky_mountain_pinon%1:20:00:: 11610047 1 0 -rocky_mountain_sheep%1:05:00:: 02415577 1 0 -rocky_mountain_spotted_fever%1:26:00:: 14141656 1 0 -rocky_mountain_whitefish%1:05:00:: 02540091 1 0 -rocky_mountains%1:17:00:: 09416570 1 0 -rocky_mountains_cherry%1:20:00:: 12642734 1 0 -rococo%1:07:00:: 04699767 1 0 -rococo%5:00:00:fancy:00 01796844 1 0 -rocroi%1:04:00:: 01292735 1 0 -rod%1:05:00:: 01377602 2 1 -rod%1:06:00:: 04100174 1 1 -rod%1:06:01:: 03427202 6 0 -rod%1:08:00:: 05456456 5 0 -rod%1:23:01:: 13650921 3 0 -rod%1:23:02:: 13614679 4 0 -rod-shaped%5:00:00:formed:00 02144988 1 0 -rod-shaped%5:00:00:rounded:00 02047413 2 0 -rod_cell%1:08:00:: 05456456 1 0 -rod_laver%1:18:00:: 11119634 1 0 -rodent%1:05:00:: 02329401 1 0 -rodentia%1:05:00:: 02329093 1 0 -rodeo%1:04:00:: 00522939 1 2 -rodeo%1:06:00:: 04100519 2 0 -rodeo_rider%1:18:00:: 09973072 1 0 -rodgers%1:18:00:: 11267745 1 0 -rodhos%1:15:00:: 08783812 1 0 -rodin%1:18:00:: 11267949 1 0 -rodlike%5:00:00:rounded:00 02047413 1 0 -rodney_george_laver%1:18:00:: 11119634 1 0 -rodolia%1:05:00:: 02166674 1 0 -rodolia_cardinalis%1:05:00:: 02166826 1 0 -rodomontade%1:10:00:: 07230089 1 0 -rodrigo_borgia%1:18:00:: 10813204 1 0 -rodya_raskolnikov%1:18:00:: 10507783 1 0 -roe%1:05:00:: 02322624 2 0 -roe%1:05:01:: 01461445 4 0 -roe%1:05:02:: 01461532 3 0 -roe%1:13:00:: 07799278 1 0 -roe_deer%1:05:00:: 02433546 1 0 -roebling%1:18:00:: 11268118 1 0 -roebuck%1:05:00:: 02433729 1 0 -roentgen%1:18:00:: 11268326 2 0 -roentgen%1:23:00:: 13646031 1 0 -roentgen_ray%1:19:00:: 11527177 1 0 -roentgenium%1:27:00:: 14652824 1 0 -roentgenogram%1:06:00:: 04100620 1 0 -roentgenographic%3:01:00:: 02998438 1 0 -roentgenography%1:04:00:: 00904623 1 0 -roentgenoscope%1:06:00:: 03370646 1 0 -rofecoxib%1:06:00:: 04100994 1 0 -rogaine%1:06:00:: 03771820 1 0 -rogation%1:10:00:: 07190474 1 0 -rogation_day%1:28:00:: 15192736 1 0 -roger_bacon%1:18:00:: 10830731 1 0 -roger_bannister%1:18:00:: 10833595 1 0 -roger_brooke_taney%1:18:00:: 11330692 1 0 -roger_de_mortimer%1:18:00:: 11192901 1 0 -roger_eliot_fry%1:18:00:: 10984257 1 0 -roger_fry%1:18:00:: 10984257 1 0 -roger_huntington_sessions%1:18:00:: 11293805 1 0 -roger_sessions%1:18:00:: 11293805 1 0 -roger_sherman%1:18:00:: 11297756 1 0 -roger_taney%1:18:00:: 11330692 1 0 -roger_williams%1:18:00:: 11389619 1 0 -rogers%1:18:00:: 11268523 3 0 -rogers%1:18:01:: 11268667 2 0 -rogers%1:18:02:: 11268883 1 0 -roget%1:18:00:: 11269085 1 0 -rogue%1:18:00:: 10536728 1 1 -rogue's_gallery%1:14:00:: 08406160 2 0 -rogue's_gallery%1:14:01:: 08406259 1 0 -rogue_elephant%1:05:00:: 02503756 1 0 -rogue_nation%1:14:00:: 08170374 1 0 -rogue_state%1:14:00:: 08170374 1 0 -roguery%1:04:00:: 00736375 1 0 -roguish%5:00:00:dishonest:00 01224964 2 0 -roguish%5:00:00:playful:00 02122379 1 0 -roguishly%4:02:00:: 00444484 2 0 -roguishly%4:02:01:: 00444599 1 0 -roguishness%1:04:00:: 00736375 2 0 -roguishness%1:07:00:: 04909721 1 0 -rohypnol%1:06:00:: 03370020 1 0 -roi%1:28:00:: 15281329 1 0 -roil%2:35:00:: 01419729 2 0 -roil%2:38:00:: 01885430 1 0 -roiled%5:00:00:agitated:02 00087597 2 0 -roiled%5:00:00:displeased:00 01806106 1 0 -roiling%5:00:00:agitated:02 00087597 1 2 -roily%5:00:00:agitated:02 00087597 1 0 -roister%2:41:00:: 02493260 1 0 -roisterer%1:18:00:: 10536897 1 0 -rolaids%1:27:00:: 14777856 1 0 -roland_de_lassus%1:18:00:: 11118362 1 0 -rolando's_area%1:08:00:: 05489640 1 0 -rolando's_fissure%1:08:00:: 05223823 1 0 -role%1:04:00:: 00720565 1 34 -role%1:04:01:: 00722061 4 6 -role%1:07:00:: 05149325 3 8 -role%1:09:00:: 05929008 2 10 -role_model%1:18:00:: 10324851 1 0 -role_player%1:18:00:: 09765278 2 0 -role_player%1:18:01:: 10201535 1 0 -roleplay%2:36:00:: 01719921 1 1 -roleplaying%1:04:00:: 00552097 1 16 -rolf%1:18:00:: 11269236 1 0 -roll%1:04:00:: 00170340 14 0 -roll%1:04:02:: 00104409 15 0 -roll%1:04:03:: 01245813 12 0 -roll%1:04:04:: 00289659 13 0 -roll%1:06:00:: 04101232 11 0 -roll%1:06:01:: 04101375 4 1 -roll%1:10:00:: 06495000 2 2 -roll%1:10:01:: 06407733 10 0 -roll%1:11:00:: 07389330 8 0 -roll%1:11:01:: 07349532 3 1 -roll%1:11:02:: 07441619 1 2 -roll%1:11:03:: 07388816 9 0 -roll%1:13:00:: 07680932 7 0 -roll%1:21:00:: 13356569 6 0 -roll%1:25:00:: 13875970 5 0 -roll%2:29:06:: 00100410 9 1 -roll%2:30:06:: 00125289 17 0 -roll%2:30:07:: 00125078 18 0 -roll%2:30:08:: 00324427 16 0 -roll%2:30:10:: 00143204 8 1 -roll%2:32:00:: 01055978 15 0 -roll%2:35:00:: 01522276 6 2 -roll%2:35:01:: 01526139 7 1 -roll%2:35:05:: 01391280 4 6 -roll%2:38:00:: 01866192 1 22 -roll%2:38:01:: 01887020 2 10 -roll%2:38:09:: 01881180 12 0 -roll%2:38:10:: 01901783 11 0 -roll%2:38:11:: 01866610 14 0 -roll%2:38:12:: 01875684 13 0 -roll%2:39:00:: 02198014 5 2 -roll%2:40:00:: 02322596 10 0 -roll%2:42:00:: 02687251 3 7 -roll-on%1:06:00:: 04103665 2 0 -roll-on%1:06:01:: 04103769 1 0 -roll-on_roll-off%1:06:00:: 04103918 1 0 -roll_around%2:30:00:: 00344042 1 0 -roll_call%1:04:00:: 01011883 1 0 -roll_down%2:38:00:: 01966706 1 0 -roll_film%1:06:00:: 04102872 1 0 -roll_in%2:30:00:: 00584604 1 0 -roll_in_the_hay%1:04:00:: 00846021 1 0 -roll_in_the_hay%2:35:00:: 01426397 1 0 -roll_of_tobacco%1:06:00:: 04103491 1 0 -roll_off%2:32:00:: 00945648 1 0 -roll_out%2:35:01:: 01391280 1 1 -roll_out%2:35:02:: 01487185 2 0 -roll_over%2:38:00:: 01867816 1 3 -roll_over%2:40:00:: 02271490 3 0 -roll_over%2:40:01:: 02271667 2 0 -roll_up%2:30:00:: 00435688 6 0 -roll_up%2:30:01:: 00435853 1 1 -roll_up%2:30:02:: 00125078 7 0 -roll_up%2:35:00:: 01487008 4 0 -roll_up%2:35:01:: 01345589 5 0 -roll_up%2:38:03:: 02006453 3 0 -roll_up%2:40:03:: 02304982 2 0 -rollback%1:04:00:: 00980779 1 0 -rollback%1:04:01:: 00362258 2 0 -rolled%5:00:00:bound:01 00253469 3 0 -rolled%5:00:00:coiled:00 02318057 1 0 -rolled%5:00:00:pronounceable:00 01878227 2 0 -rolled_biscuit%1:13:00:: 07694169 1 0 -rolled_into_one%5:00:00:combined:00 01330662 1 1 -rolled_oats%1:13:00:: 07568502 1 0 -roller%1:04:00:: 00129435 1 1 -roller%1:05:01:: 01826364 6 0 -roller%1:05:02:: 01814755 7 0 -roller%1:06:00:: 04101497 4 0 -roller%1:06:01:: 03150232 5 0 -roller%1:06:02:: 04101701 3 0 -roller%1:11:00:: 07349532 2 0 -roller-skater%1:18:00:: 10537107 1 0 -roller_bandage%1:06:00:: 04101860 1 0 -roller_bearing%1:06:00:: 02780315 1 0 -roller_bit%1:06:00:: 04098399 1 0 -roller_blind%1:06:00:: 04102285 1 0 -roller_coaster%1:06:00:: 04102406 2 0 -roller_coaster%1:26:00:: 13979786 1 0 -roller_skate%1:06:00:: 04102618 1 1 -roller_skate%2:38:00:: 01937534 1 0 -roller_skating%1:04:00:: 00448958 1 0 -roller_towel%1:06:00:: 04102760 1 0 -rollerblade%1:06:00:: 04102162 1 0 -rollerblade%2:38:00:: 01937992 1 0 -rollerblader%1:18:00:: 10537018 1 0 -rollerblading%1:04:00:: 00448872 1 0 -rollick%2:38:00:: 01883716 1 0 -rollicking%5:00:00:playful:00 02122132 1 0 -rollickingly%4:02:00:: 00221287 1 1 -rolling%1:04:00:: 00122530 3 0 -rolling%1:04:01:: 00783762 2 0 -rolling%1:11:00:: 07389330 1 0 -rolling%5:00:00:pronounceable:00 01878227 1 1 -rolling_hitch%1:06:00:: 04102962 1 0 -rolling_mill%1:06:00:: 04103094 1 0 -rolling_paper%1:27:00:: 14812566 1 0 -rolling_pin%1:06:00:: 04103206 1 0 -rolling_stock%1:06:00:: 04103364 1 1 -rolling_wave%1:11:00:: 07349532 1 0 -rollmops%1:13:00:: 07785487 1 0 -rollo%1:18:00:: 11269236 1 0 -rollover%1:04:00:: 01155722 1 0 -rolodex%1:06:00:: 04104147 1 0 -roly-poly%1:13:00:: 07620145 2 0 -roly-poly%1:18:00:: 10082146 1 0 -roly-poly%5:00:00:fat:01 00987510 1 0 -roly-poly_pudding%1:13:00:: 07620145 1 0 -rolypoliness%1:07:00:: 05001089 1 0 -rom%1:06:00:: 04058239 1 0 -roma%1:15:00:: 08806897 2 0 -roma%1:18:00:: 10154186 1 0 -romaic%1:10:00:: 06976833 1 0 -romaic%3:01:00:: 03112046 1 0 -romaine%1:13:00:: 07724492 1 0 -romaine_lettuce%1:13:00:: 07724492 2 0 -romaine_lettuce%1:20:00:: 11986729 1 0 -roman%1:10:01:: 06827503 3 0 -roman%1:18:00:: 09716933 1 3 -roman%1:18:01:: 09717047 2 0 -roman%3:01:00:: 02921753 4 0 -roman%3:01:01:: 02921325 2 2 -roman%3:01:02:: 02921569 1 2 -roman%3:01:03:: 02922086 3 0 -roman_a_clef%1:10:00:: 06369077 1 0 -roman_alphabet%1:10:00:: 06497872 1 0 -roman_arch%1:06:00:: 04104384 1 0 -roman_architecture%1:09:00:: 05842290 1 0 -roman_basilica%1:06:00:: 02801047 1 0 -roman_building%1:06:00:: 04104500 1 0 -roman_calendar%1:28:00:: 15173830 1 0 -roman_candle%1:06:00:: 04104641 1 1 -roman_catholic%1:14:00:: 08083599 2 4 -roman_catholic%1:18:00:: 09680504 1 8 -roman_catholic%3:01:00:: 02921753 1 0 -roman_catholic_church%1:14:00:: 08083599 1 7 -roman_catholic_pope%1:18:00:: 10453533 1 0 -roman_catholicism%1:09:00:: 06227562 1 1 -roman_church%1:14:00:: 08083599 1 2 -roman_collar%1:06:00:: 03041964 1 1 -roman_coriander%1:20:00:: 11737125 1 0 -roman_deity%1:18:00:: 09552681 1 0 -roman_emperor%1:18:00:: 10537240 1 0 -roman_empire%1:15:00:: 08800258 1 0 -roman_fleuve%1:10:00:: 06369690 1 0 -roman_hyacinth%1:20:00:: 12458713 1 0 -roman_inquisition%1:14:00:: 08333639 1 0 -roman_jakobson%1:18:00:: 11078774 1 0 -roman_law%1:10:00:: 06534659 1 0 -roman_legion%1:14:00:: 08183920 1 0 -roman_letters%1:10:00:: 06827503 1 0 -roman_mile%1:23:00:: 13655414 1 0 -roman_mythology%1:14:00:: 07983170 1 0 -roman_nettle%1:20:00:: 12392765 1 0 -roman_nose%1:08:00:: 05599501 1 1 -roman_numeral%1:10:00:: 06807657 1 0 -roman_osipovich_jakobson%1:18:00:: 11078774 1 0 -roman_pace%1:23:00:: 13655570 1 0 -roman_print%1:10:00:: 06827503 1 0 -roman_republic%1:15:00:: 08799958 1 0 -roman_times%1:28:00:: 15120715 1 0 -roman_type%1:10:00:: 06827503 1 0 -roman_wormwood%1:20:01:: 11904477 2 0 -roman_wormwood%1:20:02:: 11930994 1 0 -romanal%1:10:00:: 06897976 1 0 -romance%1:07:00:: 05208422 2 1 -romance%1:10:00:: 06963951 3 0 -romance%1:10:01:: 06369216 5 0 -romance%1:10:02:: 06371267 4 0 -romance%1:26:00:: 13931436 1 4 -romance%2:32:00:: 00834557 4 0 -romance%2:32:01:: 01037910 3 0 -romance%2:37:00:: 01775782 2 0 -romance%2:41:00:: 02534492 1 0 -romance%3:01:00:: 03080351 1 0 -romance_language%1:10:00:: 06963951 1 0 -romanesque%1:09:00:: 05842706 1 0 -romanesque_architecture%1:09:00:: 05842706 1 0 -romani%1:18:00:: 10154186 1 0 -romani%3:01:00:: 03112177 1 0 -romania%1:15:00:: 08813978 1 0 -romanian%1:10:00:: 06968343 2 0 -romanian%1:18:00:: 09728285 1 0 -romanian%3:01:00:: 02962272 1 0 -romanian_monetary_unit%1:23:00:: 13685346 1 0 -romanic%3:01:00:: 02921325 1 0 -romanise%2:32:00:: 00995525 1 0 -romanism%1:09:00:: 06227562 1 0 -romanist%3:01:00:: 02921753 1 0 -romanize%2:32:00:: 00995525 1 0 -romanoff%1:14:00:: 08157672 2 0 -romanoff%1:18:00:: 10537708 1 0 -romanov%1:14:00:: 08157672 2 0 -romanov%1:18:00:: 10537708 1 0 -romans%1:10:00:: 06443163 1 0 -romansh%1:10:00:: 06968174 1 0 -romansh%3:01:00:: 02789031 1 0 -romantic%1:18:00:: 10537822 1 2 -romantic%1:18:01:: 10537906 2 1 -romantic%3:01:00:: 02789151 1 6 -romantic%5:00:00:impractical:00 01837182 3 0 -romantic%5:00:01:loving:00 01465214 2 2 -romantic_movement%1:09:00:: 06155075 1 0 -romantic_realism%1:14:00:: 08468261 1 0 -romantically%4:02:01:: 00444720 2 0 -romantically%4:02:02:: 00470531 1 0 -romanticisation%1:04:00:: 01219306 1 0 -romanticise%2:30:00:: 00534680 2 0 -romanticise%2:31:00:: 00693172 1 0 -romanticism%1:07:00:: 05152902 1 1 -romanticism%1:07:01:: 05208422 3 0 -romanticism%1:09:00:: 06155075 2 0 -romanticist%1:18:00:: 10537906 2 0 -romanticist%1:18:01:: 10579676 1 0 -romanticist%3:01:00:: 02789151 1 0 -romanticistic%3:01:00:: 02789151 1 0 -romanticization%1:04:00:: 01219306 1 0 -romanticize%2:29:00:: 00012854 3 0 -romanticize%2:30:00:: 00534680 2 0 -romanticize%2:31:00:: 00693172 1 3 -romany%1:10:00:: 06969822 2 0 -romany%1:18:00:: 10154186 1 0 -romany%3:01:00:: 03112177 1 0 -romberg%1:18:00:: 11269367 1 0 -rome%1:14:00:: 08085535 2 2 -rome%1:15:00:: 08806897 1 4 -rome_beauty%1:13:00:: 07742605 1 0 -romeo%1:18:00:: 10538082 1 0 -romish%3:01:00:: 02921753 1 0 -rommany%1:18:00:: 10154186 1 0 -rommel%1:18:00:: 11269515 1 0 -romneya%1:20:00:: 11907554 1 0 -romneya_coulteri%1:20:00:: 11907689 1 0 -romp%1:04:00:: 00511817 3 0 -romp%1:11:00:: 07475107 1 1 -romp%1:18:00:: 10715030 2 0 -romp%2:33:00:: 01100567 3 0 -romp%2:38:00:: 01883716 1 2 -romp%2:38:01:: 01926878 2 0 -romper%1:06:00:: 04104770 2 0 -romper%1:18:00:: 10538154 1 0 -romper_suit%1:06:00:: 04104770 1 0 -romulus%1:18:00:: 09556305 1 0 -ron%1:10:00:: 06983114 1 0 -ronald_george_wreyford_norrish%1:18:00:: 11209675 1 0 -ronald_reagan%1:18:00:: 11255460 1 0 -ronald_wilson_reagan%1:18:00:: 11255460 1 0 -rondeau%1:10:00:: 06380879 2 0 -rondeau%1:10:01:: 07043968 1 0 -rondel%1:10:00:: 06380879 1 0 -rondelet%1:10:00:: 06381274 1 0 -rondo%1:10:00:: 07043968 1 0 -roneo%1:06:00:: 03767459 1 0 -roneo%2:36:00:: 01695459 1 0 -roneograph%1:06:00:: 03767459 1 0 -rontgen%1:18:00:: 11268326 1 0 -rood%1:06:00:: 03140292 1 0 -rood-tree%1:06:00:: 03140292 1 0 -rood_screen%1:06:00:: 04104925 1 0 -roof%1:06:00:: 04105068 1 34 -roof%1:06:01:: 04105438 2 1 -roof%1:10:00:: 06657646 4 0 -roof%1:17:00:: 09416890 3 0 -roof%2:35:00:: 01233993 1 1 -roof_garden%1:06:00:: 04105609 1 0 -roof_mushroom%1:20:00:: 13019202 1 0 -roof_of_the_mouth%1:08:00:: 05309725 1 1 -roof_peak%1:06:00:: 04105791 1 0 -roof_rack%1:06:00:: 03696301 1 0 -roof_rat%1:05:00:: 02333909 1 0 -roofed%3:00:00:: 01700075 1 0 -roofer%1:18:00:: 10538272 1 1 -roofing%1:04:00:: 00617989 2 0 -roofing%1:06:00:: 04105704 1 0 -roofing_material%1:27:00:: 15005716 1 0 -roofing_paper%1:27:00:: 14976001 1 0 -roofing_tile%1:27:00:: 15074568 1 0 -roofless%3:00:00:: 01700293 1 0 -roofless%5:00:00:unfortunate:00 01050603 2 0 -rooftop%1:15:00:: 08663774 1 2 -rooftree%1:06:00:: 04089152 1 1 -roofy%1:06:00:: 04036494 1 0 -rooibos%1:20:00:: 12507823 1 0 -rook%1:05:00:: 01579410 2 0 -rook%1:06:00:: 02980625 1 0 -rook%2:41:00:: 02572119 1 0 -rookery%1:15:00:: 08644426 1 0 -rookie%1:18:00:: 09981834 1 8 -room%1:06:00:: 04105893 1 116 -room%1:14:00:: 07985948 4 0 -room%1:23:00:: 13777764 2 10 -room%1:26:00:: 14485436 3 3 -room%2:42:00:: 02656763 1 1 -room_access%1:06:00:: 03224032 1 0 -room_clerk%1:18:00:: 10538398 1 1 -room_decorator%1:18:00:: 10210648 1 0 -room_light%1:06:00:: 04107743 1 0 -room_rate%1:21:00:: 13327136 1 0 -room_temperature%1:07:00:: 05014442 1 9 -roomer%1:18:00:: 10269458 1 0 -roomette%1:06:00:: 04107598 1 0 -roomful%1:23:00:: 13769123 1 1 -roomie%1:18:00:: 10538518 1 0 -roomily%4:02:00:: 00444832 1 0 -roominess%1:07:00:: 05105265 2 0 -roominess%1:09:00:: 05618607 1 0 -rooming_house%1:06:00:: 03685820 1 0 -roommate%1:18:00:: 10538518 1 0 -rooms%1:06:00:: 04351550 1 2 -roomy%1:18:00:: 10538518 1 0 -roomy%5:00:00:commodious:00 00476249 1 0 -roosevelt%1:18:01:: 11269697 3 0 -roosevelt%1:18:02:: 11270023 1 1 -roosevelt%1:18:03:: 11270380 2 0 -rooseveltian%3:01:00:: 03037924 1 0 -roost%1:06:00:: 04107870 2 0 -roost%1:06:01:: 04107984 1 0 -roost%2:30:00:: 00415635 2 0 -roost%2:35:00:: 01543731 1 1 -rooster%1:05:00:: 01792158 1 3 -root%1:08:00:: 05308310 8 0 -root%1:10:00:: 06300193 3 2 -root%1:10:01:: 06300445 7 0 -root%1:14:00:: 08005954 5 1 -root%1:15:00:: 08507558 2 2 -root%1:18:00:: 09792555 6 0 -root%1:20:00:: 13125117 1 11 -root%1:23:00:: 13731669 4 1 -root%2:30:00:: 00358135 1 2 -root%2:30:01:: 00358314 6 0 -root%2:30:02:: 00415398 5 0 -root%2:35:00:: 01282413 4 0 -root%2:35:04:: 01529194 3 0 -root%2:42:00:: 02623731 2 0 -root_beer%1:13:00:: 07928887 1 0 -root_beer_float%1:13:00:: 07923176 1 0 -root_canal%1:08:00:: 05308481 1 0 -root_cap%1:20:00:: 13126428 1 0 -root_celery%1:20:00:: 12933616 1 0 -root_cellar%1:06:00:: 04108137 1 1 -root_climber%1:20:00:: 13103023 1 0 -root_crop%1:20:00:: 13126308 1 0 -root_for%2:33:00:: 01148710 1 0 -root_hair%1:20:00:: 13126684 1 0 -root_on%2:32:00:: 00858781 1 0 -root_out%2:35:00:: 01566916 1 1 -root_out%2:36:00:: 01662118 2 0 -root_rot%1:26:00:: 14281992 1 0 -root_system%1:20:00:: 13125003 1 0 -root_vegetable%1:13:00:: 07710283 1 0 -root_word%1:10:00:: 06300193 1 0 -rootage%1:15:00:: 08507558 3 0 -rootage%1:20:00:: 13125003 2 0 -rootage%1:26:00:: 14006684 1 0 -rootbound%5:00:00:tangled:00 00256042 2 0 -rootbound%5:00:01:planted:00 01831942 1 0 -rooted%5:00:00:nonmoving:00 01564881 1 0 -rooter%1:18:00:: 10639925 1 0 -rooter_skunk%1:05:00:: 02446645 1 0 -rooting%1:22:00:: 13552124 1 2 -rooting_reflex%1:04:00:: 00867163 1 0 -rootle%2:35:00:: 01282413 1 0 -rootless%5:00:00:unsettled:01 02128736 1 0 -rootlet%1:20:00:: 13126580 1 0 -roots%1:26:00:: 14065412 1 0 -rootstalk%1:20:00:: 13128582 1 0 -rootstock%1:20:00:: 13127303 2 0 -rootstock%1:20:02:: 13128582 1 0 -rope%1:06:00:: 04108268 1 5 -rope%1:06:01:: 04036494 2 0 -rope%2:35:00:: 01289155 2 0 -rope%2:35:03:: 01604251 1 0 -rope-a-dope%1:04:00:: 00446632 1 0 -rope-maker%1:18:00:: 10538629 1 0 -rope_bridge%1:06:00:: 04108822 1 0 -rope_burn%1:26:00:: 14286995 1 0 -rope_down%2:38:00:: 01923058 1 0 -rope_in%2:32:00:: 00768630 2 0 -rope_in%2:35:00:: 01588297 1 0 -rope_ladder%1:06:00:: 04108908 1 0 -rope_off%2:35:00:: 01588297 1 0 -rope_tow%1:06:00:: 04108999 1 0 -rope_up%2:35:00:: 01289330 1 0 -rope_yard%1:06:00:: 04109104 1 0 -rope_yarn%1:06:00:: 04109240 1 0 -ropebark%1:20:00:: 12347639 1 0 -ropedancer%1:18:00:: 10539015 1 0 -ropemaker%1:18:00:: 10538629 1 0 -roper%1:18:00:: 10538629 3 0 -roper%1:18:01:: 10538733 2 0 -roper%1:18:02:: 10538853 1 0 -ropewalk%1:06:00:: 04109104 1 0 -ropewalker%1:18:00:: 10539015 1 0 -ropeway%1:06:00:: 04469813 1 0 -ropey%3:01:00:: 02789409 1 0 -ropey%5:00:00:inferior:02 02347742 3 0 -ropey%5:00:00:thick:02 02416765 2 0 -rophy%1:06:00:: 04036494 1 0 -ropiness%1:07:00:: 04935904 1 0 -roping%1:04:00:: 00299680 1 0 -ropy%3:01:00:: 02789409 1 0 -ropy%5:00:00:inferior:02 02347742 3 0 -ropy%5:00:00:thick:02 02416765 2 0 -roquefort%1:13:00:: 07852302 1 0 -roquefort_dressing%1:13:00:: 07833672 1 0 -roquette%1:20:00:: 11886537 1 0 -roridula%1:20:00:: 12784371 1 0 -roridulaceae%1:20:00:: 12783996 1 0 -rorippa%1:20:00:: 11895270 1 0 -rorippa_amphibia%1:20:00:: 11895714 1 0 -rorippa_islandica%1:20:00:: 11895472 1 0 -rorippa_nasturtium-aquaticum%1:20:00:: 11893131 1 0 -rorqual%1:05:00:: 02064338 1 0 -rorschach%1:04:00:: 01007907 1 0 -rorschach_test%1:04:00:: 01007907 1 0 -rosa%1:20:00:: 12620031 1 0 -rosa_banksia%1:20:00:: 12620969 1 0 -rosa_canina%1:20:00:: 12621110 1 0 -rosa_chinensis%1:20:00:: 12621260 1 0 -rosa_damascena%1:20:00:: 12621410 1 0 -rosa_eglanteria%1:20:00:: 12621619 1 0 -rosa_laevigata%1:20:00:: 12621945 1 0 -rosa_melba_ponselle%1:18:00:: 11242469 1 0 -rosa_moschata%1:20:00:: 12622297 1 0 -rosa_multiflora%1:20:00:: 12622072 1 0 -rosa_odorata%1:20:00:: 12622483 1 0 -rosa_parks%1:18:00:: 11223396 1 0 -rosa_pendulina%1:20:00:: 12620661 1 0 -rosa_ponselle%1:18:00:: 11242469 1 0 -rosa_spithamaea%1:20:00:: 12620779 1 0 -rosacea%1:26:00:: 14222352 1 0 -rosaceae%1:20:00:: 12619306 1 0 -rosaceous%3:01:00:: 03141878 1 0 -rosaceous%5:00:00:chromatic:00 00382173 2 0 -rosales%1:20:00:: 12618942 1 0 -rosario%1:15:00:: 08713405 1 0 -rosary%1:06:00:: 04109335 1 1 -rose%1:07:00:: 04971313 3 0 -rose%1:13:00:: 07893253 2 0 -rose%1:20:00:: 12620196 1 5 -rose%5:00:00:chromatic:00 00382173 1 1 -rose-apple_tree%1:20:00:: 12332218 1 0 -rose-cheeked%5:00:00:healthy:00 01170823 1 0 -rose-colored%5:00:00:colored:00 00400644 2 0 -rose-colored%5:00:00:optimistic:00 01664156 1 0 -rose-colored_pastor%1:05:00:: 01577458 1 0 -rose-colored_starling%1:05:00:: 01577458 1 0 -rose-lavender%5:00:00:chromatic:00 00382411 1 0 -rose-lilac%5:00:00:chromatic:00 00382411 1 0 -rose-mauve%5:00:00:chromatic:00 00382512 1 0 -rose-purple%5:00:00:chromatic:00 00382594 1 0 -rose-red%5:00:00:chromatic:00 00382321 1 0 -rose-root%1:20:00:: 12786273 1 0 -rose-tinged%5:00:00:chromatic:00 00382693 1 0 -rose-tinted%5:00:00:chromatic:00 00382693 1 0 -rose_acacia%1:20:00:: 12567950 1 0 -rose_apple%1:13:00:: 07770034 2 0 -rose_apple%1:20:00:: 12332218 1 0 -rose_bay%1:20:01:: 11773987 1 0 -rose_bed%1:06:00:: 04109471 1 0 -rose_beetle%1:05:00:: 02175569 1 0 -rose_bug%1:05:00:: 02175014 1 0 -rose_campion%1:20:00:: 11812094 1 0 -rose_chafer%1:05:00:: 02175014 2 0 -rose_chafer%1:05:02:: 02175569 1 0 -rose_chestnut%1:20:00:: 12370549 1 0 -rose_family%1:20:00:: 12619306 1 0 -rose_garden%1:06:00:: 04109599 1 0 -rose_geranium%1:20:00:: 12687462 1 0 -rose_globe_lily%1:20:00:: 12447346 1 0 -rose_gum%1:20:00:: 12337800 1 0 -rose_hip%1:20:00:: 12620546 1 0 -rose_leek%1:20:00:: 12432574 1 0 -rose_louise_hovick%1:18:00:: 11124472 1 0 -rose_mallow%1:20:01:: 12178896 1 0 -rose_mallow%1:20:02:: 12173912 2 0 -rose_moss%1:20:00:: 11857875 1 0 -rose_of_china%1:20:00:: 12179391 1 0 -rose_of_jericho%1:20:01:: 11871059 2 0 -rose_of_jericho%1:20:02:: 13225365 1 0 -rose_of_sharon%1:20:00:: 12179907 1 1 -rose_oil%1:27:00:: 14893128 1 0 -rose_periwinkle%1:20:00:: 11772408 1 0 -rose_pink%1:20:00:: 12298395 1 0 -rose_quartz%1:27:00:: 15005895 1 0 -rose_water%1:06:00:: 04110068 1 0 -rose_window%1:06:00:: 04110178 1 0 -rose_wine%1:13:00:: 07893253 1 0 -roseate%5:00:00:chromatic:00 00382173 1 0 -roseate_spoonbill%1:05:00:: 02007284 1 0 -roseau%1:15:00:: 08763387 1 0 -rosebay%1:20:00:: 12244650 1 0 -rosebay_willowherb%1:20:00:: 12342498 1 0 -rosebud%1:18:00:: 10539160 2 0 -rosebud%1:20:00:: 11675025 1 1 -rosebud_cherry%1:20:00:: 12650038 1 0 -rosebud_orchid%1:20:00:: 12051792 1 0 -rosebush%1:20:00:: 12620196 1 0 -rosefish%1:05:00:: 02644817 2 0 -rosefish%1:13:00:: 07792117 1 0 -rosehip%1:20:00:: 12620546 1 0 -roselle%1:20:00:: 12179632 1 0 -rosellinia%1:20:00:: 12967124 1 0 -rosemaling%1:06:00:: 04109702 1 0 -rosemary%1:13:00:: 07820145 2 0 -rosemary%1:20:00:: 12864160 1 0 -roseola%1:26:00:: 14321953 1 0 -roseola_infantilis%1:26:00:: 14123759 1 0 -roseola_infantum%1:26:00:: 14123759 1 0 -rosetta_stone%1:10:00:: 06405891 1 0 -rosette%1:06:00:: 04109899 1 1 -rosette%1:06:01:: 04110178 4 0 -rosette%1:20:00:: 13161998 3 0 -rosette%1:26:00:: 14281549 2 0 -rosewood%1:20:00:: 12522188 2 0 -rosewood%1:20:02:: 12522493 1 0 -rosewood_tree%1:20:00:: 12522188 1 0 -rosh_chodesh%1:28:00:: 15183085 1 0 -rosh_hashana%1:28:00:: 15182805 1 0 -rosh_hashanah%1:28:00:: 15182805 1 0 -rosh_hashona%1:28:00:: 15182805 1 0 -rosh_hashonah%1:28:00:: 15182805 1 0 -rosh_hodesh%1:28:00:: 15183085 1 0 -rosicrucian%1:18:00:: 10539278 2 0 -rosicrucian%1:18:01:: 10539462 1 0 -rosicrucian%3:01:00:: 03142022 1 0 -rosicrucianism%1:09:00:: 06191483 1 0 -rosid_dicot_family%1:20:00:: 11566682 1 0 -rosid_dicot_genus%1:20:00:: 11585340 1 0 -rosidae%1:20:00:: 12212810 1 0 -rosilla%1:20:00:: 11977887 1 0 -rosin%1:27:00:: 14894140 1 0 -rosin%2:35:00:: 01250676 1 0 -rosin_bag%1:06:00:: 04110281 1 0 -rosiness%1:07:00:: 04977412 2 0 -rosiness%1:07:01:: 04971313 3 0 -rosiness%1:26:00:: 14050871 1 0 -rosinweed%1:20:01:: 12015221 1 0 -rosinweed%1:20:02:: 11973341 2 0 -rosita%1:20:00:: 12290975 1 0 -rosmarinus%1:20:00:: 12864038 1 0 -rosmarinus_officinalis%1:20:00:: 12864160 1 0 -ross%1:18:00:: 11270577 5 0 -ross%1:18:01:: 11270772 4 0 -ross%1:18:02:: 11270948 3 0 -ross%1:18:03:: 11271094 2 0 -ross%1:18:04:: 11271349 1 0 -ross_sea%1:17:00:: 09417240 1 0 -rossbach%1:04:00:: 01292928 1 0 -rossetti%1:18:00:: 11271563 1 0 -rossini%1:18:00:: 11271720 1 0 -rostand%1:18:00:: 11271859 1 0 -roster%1:10:01:: 06495000 1 2 -rostock%1:15:00:: 08774704 1 0 -rostov%1:15:00:: 09009490 1 0 -rostov_na_donu%1:15:00:: 09009490 1 0 -rostov_on_don%1:15:00:: 09009490 1 0 -rostrate%5:00:00:beaked:00 00207034 1 0 -rostrum%1:05:00:: 02452813 2 0 -rostrum%1:06:00:: 03159640 1 1 -roswell%1:15:00:: 09116214 1 0 -rosy%5:00:00:auspicious:00 00176676 4 0 -rosy%5:00:00:chromatic:00 00371611 3 1 -rosy%5:00:00:healthy:00 01170823 2 1 -rosy%5:00:00:optimistic:00 01664156 1 1 -rosy-cheeked%5:00:00:healthy:00 01170823 1 0 -rosy-colored%5:00:00:colored:00 00400644 1 0 -rosy-purple%5:00:00:chromatic:00 00382594 1 0 -rosy_boa%1:05:00:: 01742821 1 0 -rot%1:10:00:: 06611681 3 0 -rot%1:22:00:: 13458019 2 1 -rot%1:26:00:: 14560926 1 1 -rot%2:29:00:: 00093775 2 0 -rot%2:30:00:: 00209837 1 3 -rot-resistant%5:00:00:impervious:00 01775200 1 0 -rota%1:10:00:: 06496862 2 0 -rota%1:14:00:: 08335414 1 0 -rotarian%1:18:00:: 10539616 1 0 -rotary%1:06:00:: 04465933 1 0 -rotary%1:06:01:: 04375405 2 0 -rotary%3:01:00:: 02998561 1 1 -rotary%5:00:00:cyclic:01 00676271 2 0 -rotary_actuator%1:06:00:: 04110439 1 0 -rotary_club%1:14:00:: 08236251 1 1 -rotary_converter%1:06:00:: 04375405 1 0 -rotary_engine%1:06:00:: 04110654 1 0 -rotary_engine%1:06:01:: 04040373 2 0 -rotary_international%1:14:00:: 08236251 1 0 -rotary_joint%1:08:00:: 05597188 1 0 -rotary_motion%1:04:00:: 00342028 1 0 -rotary_press%1:06:00:: 04110841 1 0 -rotary_wing%1:06:00:: 04112252 1 0 -rotatable%5:00:00:mobile:00 01524445 1 0 -rotate%2:30:04:: 00245913 6 0 -rotate%2:33:00:: 01096305 3 1 -rotate%2:38:00:: 02045790 4 0 -rotate%2:38:01:: 02045043 1 8 -rotate%2:38:07:: 02045415 5 0 -rotate%2:41:00:: 02393894 2 1 -rotated%5:00:00:turned:00 02468110 1 1 -rotating_mechanism%1:06:00:: 04110955 1 0 -rotating_shaft%1:06:00:: 04111190 1 0 -rotation%1:04:00:: 00342028 1 3 -rotation%1:07:00:: 05045381 4 0 -rotation%1:11:00:: 07440979 3 0 -rotation%1:24:00:: 13785557 2 0 -rotational%3:01:00:: 03112379 1 0 -rotational_latency%1:28:00:: 15297069 1 0 -rotational_nystagmus%1:04:00:: 00338088 1 0 -rotationally%4:02:00:: 00444975 1 0 -rotator_cuff%1:08:00:: 05604950 1 0 -rotatory%3:01:00:: 02939919 1 0 -rotatory_joint%1:08:00:: 05597188 1 0 -rotavirus%1:05:00:: 01341090 1 0 -rotc%1:14:00:: 08212920 1 1 -rote%1:09:00:: 05755393 1 0 -rote_learning%1:09:00:: 05755393 1 0 -rotenone%1:27:00:: 15012478 1 0 -rotgut%1:13:00:: 07922512 1 0 -roth%1:18:00:: 11272030 1 0 -rothko%1:18:00:: 11272198 1 0 -rothschild%1:18:00:: 11272415 1 0 -rotifer%1:05:00:: 01929186 1 0 -rotifera%1:05:00:: 01929047 1 0 -rotisserie%1:06:00:: 04111414 2 0 -rotisserie%1:06:01:: 04111531 1 0 -rotl%1:23:00:: 13718946 1 0 -rotogravure%1:04:00:: 01103492 3 0 -rotogravure%1:10:00:: 06679308 1 0 -rotogravure%1:10:01:: 06266973 2 0 -rotor%1:06:00:: 04111668 3 0 -rotor%1:06:01:: 04111962 1 6 -rotor%1:06:02:: 04112147 2 0 -rotor_blade%1:06:00:: 04112252 1 0 -rotor_coil%1:06:00:: 04111962 1 0 -rotor_head%1:06:00:: 04112430 1 0 -rotor_shaft%1:06:00:: 04112430 1 0 -rotted%5:00:00:unsound:01 02275892 1 0 -rotten%5:00:00:stale:00 01070538 3 0 -rotten%5:00:00:unsound:01 02275892 2 0 -rotten%5:00:03:bad:00 01127782 1 1 -rotten_borough%1:15:00:: 08540416 1 0 -rottenly%4:02:00:: 00055101 1 0 -rottenness%1:07:00:: 04791591 2 0 -rottenness%1:26:00:: 14561102 1 0 -rottenstone%1:27:00:: 14936474 1 0 -rotter%1:18:00:: 10539715 1 0 -rotterdam%1:15:00:: 08950907 1 0 -rotting%1:22:00:: 13458019 1 0 -rottweiler%1:05:00:: 02106550 1 0 -rotund%5:00:00:fat:01 00987180 3 0 -rotund%5:00:00:full:01 01457486 2 0 -rotund%5:00:00:rounded:00 02047496 1 0 -rotunda%1:06:00:: 04112579 2 0 -rotunda%1:06:01:: 04112654 1 0 -rotundity%1:07:00:: 05073131 1 1 -rotundity%1:10:00:: 07082972 2 0 -rotundly%4:02:00:: 00445187 1 0 -rotundness%1:07:00:: 05073131 1 0 -rouble%1:23:00:: 13699076 1 0 -roue%1:18:00:: 10505942 1 0 -rouge%1:06:00:: 04112752 1 0 -rouge%2:29:00:: 00041554 1 0 -rouge_et_noir%1:04:00:: 00495103 1 0 -rouge_plant%1:20:00:: 11856573 1 0 -rougeberry%1:20:00:: 11856573 1 0 -rouged%5:00:00:painted:01 01714633 1 0 -rough%1:15:00:: 08640962 1 0 -rough%2:36:01:: 01754452 1 1 -rough%3:00:00:: 02238462 1 13 -rough%3:00:02:: 02245403 8 0 -rough%3:00:04:: 02243567 9 0 -rough%3:00:05:: 00664167 10 0 -rough%4:02:00:: 00353916 2 0 -rough%4:02:03:: 00354033 1 1 -rough%5:00:00:aggressive:00 00084353 7 1 -rough%5:00:00:cacophonous:00 00299476 6 1 -rough%5:00:00:difficult:00 00747910 4 1 -rough%5:00:00:inexact:00 00915976 3 2 -rough%5:00:00:stormy:00 00304949 5 1 -rough%5:00:00:unkind:00 01374183 14 0 -rough%5:00:00:unpleasant:00 01803583 13 0 -rough%5:00:00:unpolished:00 01813183 12 0 -rough%5:00:00:unrefined:01 01951197 2 2 -rough%5:00:00:unskilled:00 02229584 11 0 -rough-and-ready%5:00:00:effective:00 00835504 1 0 -rough-and-tumble%1:04:00:: 01172441 1 0 -rough-and-tumble%5:00:00:disorderly:00 01667271 1 0 -rough-cut%5:00:00:unfinished:02 01006016 2 0 -rough-cut%5:00:00:unrefined:01 01950198 1 0 -rough-dry%2:30:00:: 00218888 1 0 -rough-haired%5:00:00:hairy:00 00215257 1 0 -rough-hew%2:35:00:: 01260850 1 0 -rough-house%2:41:00:: 02515828 1 0 -rough-leaved_aster%1:20:00:: 11936624 1 0 -rough-legged_hawk%1:05:00:: 01607600 1 0 -rough-sand%2:35:00:: 01386611 1 0 -rough-skinned_newt%1:05:00:: 01631354 1 0 -rough-spoken%5:00:00:unrefined:01 01951372 1 0 -rough-stemmed_goldenrod%1:20:00:: 12018271 1 0 -rough-textured%5:00:00:rough:00 02243086 1 0 -rough_bindweed%1:20:00:: 12470907 1 0 -rough_bristlegrass%1:20:00:: 12135049 1 0 -rough_cut%1:10:00:: 06617644 1 0 -rough_drawing%1:06:00:: 03230785 1 0 -rough_fish%1:05:00:: 02513248 1 0 -rough_green_snake%1:05:00:: 01730307 1 0 -rough_horsetail%1:20:00:: 13220122 1 0 -rough_in%2:36:00:: 01754452 1 0 -rough_out%2:36:00:: 01754452 1 1 -rough_pea%1:20:00:: 12539564 1 0 -rough_rider%1:18:01:: 10540252 1 0 -rough_sledding%1:26:00:: 14409880 1 0 -rough_up%2:35:00:: 01398323 1 0 -rough_water%1:26:00:: 14524029 1 0 -roughage%1:13:00:: 07568818 1 0 -roughcast%1:06:00:: 04112921 2 0 -roughcast%1:27:00:: 15006012 1 0 -roughcast%2:35:00:: 01260850 3 0 -roughcast%2:35:01:: 01361779 2 0 -roughcast%2:36:00:: 01660772 1 0 -roughdried%5:00:00:unironed:00 01360231 1 0 -roughen%2:35:00:: 01253621 1 1 -roughened%5:00:00:rough:00 02240129 1 0 -roughhewn%5:00:00:unfinished:02 01006016 1 1 -roughhouse%2:31:00:: 00604347 1 0 -roughish%5:00:00:rough:00 02242412 1 0 -roughleg%1:05:00:: 01607600 1 0 -roughly%4:02:00:: 00007015 1 9 -roughly%4:02:02:: 00353916 3 1 -roughly%4:02:03:: 00354033 2 1 -roughneck%1:18:00:: 09879297 1 1 -roughness%1:04:00:: 00374446 7 0 -roughness%1:07:00:: 04948241 1 2 -roughness%1:07:01:: 04988666 2 1 -roughness%1:07:02:: 04817564 3 1 -roughness%1:22:00:: 13537894 6 0 -roughness%1:26:01:: 14524029 4 0 -roughness%1:26:02:: 13977184 5 0 -roughrider%1:18:00:: 10540413 1 0 -roughshod%5:00:00:domineering:00 00788268 3 0 -roughshod%5:00:00:inhumane:00 01263013 2 0 -roughshod%5:00:00:shod:00 02156293 1 0 -roughtail_stingray%1:05:00:: 01498406 1 0 -roulade%1:10:00:: 06857591 2 0 -roulade%1:13:00:: 07875560 1 0 -rouleau%1:06:00:: 04113038 2 0 -rouleau%1:06:01:: 04113124 1 0 -roulette%1:04:00:: 00509399 3 0 -roulette%1:06:00:: 04113194 2 0 -roulette%1:25:00:: 13908580 1 0 -roulette_ball%1:06:00:: 04113316 1 1 -roulette_wheel%1:06:00:: 04113406 1 0 -roumania%1:15:00:: 08813978 1 0 -roumanian%3:01:00:: 02962272 1 0 -round%1:04:00:: 01055688 4 1 -round%1:04:01:: 00415098 6 1 -round%1:04:03:: 00466377 5 1 -round%1:06:00:: 03032811 14 0 -round%1:06:01:: 04113641 1 6 -round%1:06:03:: 04119892 13 0 -round%1:10:00:: 07053089 11 0 -round%1:10:01:: 06692464 12 0 -round%1:13:00:: 07662156 10 0 -round%1:13:01:: 07884266 9 0 -round%1:15:00:: 08507381 3 1 -round%1:17:00:: 09417097 8 0 -round%1:28:00:: 15256714 7 0 -round%1:28:01:: 15287830 2 2 -round%2:29:00:: 00046382 7 0 -round%2:30:00:: 00145147 2 1 -round%2:30:01:: 00473799 5 0 -round%2:30:03:: 00145623 6 0 -round%2:32:00:: 00980339 3 0 -round%2:32:11:: 00862683 4 0 -round%2:38:00:: 01858910 1 3 -round%3:00:00:: 02040652 1 12 -round%4:02:00:: 00071456 1 3 -round%5:00:00:full:01 01457486 2 1 -round%5:00:00:inexact:00 00916524 3 1 -round-arm%4:02:00:: 00445374 1 0 -round-arm%5:00:00:overhand:00 02470952 1 0 -round-backed%5:00:00:unerect:00 01239199 1 0 -round-bottom%5:00:00:bottomed:00 02442883 1 1 -round-bottom_flask%1:06:00:: 04113968 1 0 -round-bottomed%5:00:00:bottomed:00 02442883 1 0 -round-eyed%5:00:00:eyed:00 00954760 2 0 -round-eyed%5:00:00:naive:00 02272047 1 0 -round-faced%5:00:00:faced:00 00235823 1 1 -round-fruited%5:00:00:fruitful:00 01082377 1 0 -round-headed_leek%1:20:00:: 12435965 1 0 -round-leaved_rein_orchid%1:20:00:: 12067817 1 0 -round-shouldered%5:00:00:unerect:00 01239199 1 0 -round-spored_gyromitra%1:20:00:: 13037805 1 0 -round-table_conference%1:10:00:: 07145314 1 0 -round-tailed_muskrat%1:05:00:: 02338449 1 0 -round-the-clock%5:00:00:continuous:01 00595147 1 0 -round-the-clock_patrol%1:04:00:: 00825096 1 0 -round-trip_light_time%1:28:00:: 15130926 1 0 -round-trip_ticket%1:10:00:: 06519936 1 0 -round_angle%1:25:00:: 13892674 1 0 -round_arch%1:06:00:: 04113765 1 0 -round_bone%1:08:00:: 05279321 1 2 -round_clam%1:05:00:: 01958038 2 0 -round_clam%1:13:00:: 07786856 1 0 -round_dance%1:04:00:: 00539827 1 0 -round_dance%1:04:01:: 00537297 2 0 -round_dancing%1:04:00:: 00537297 1 0 -round_down%2:30:00:: 00145623 1 0 -round_file%1:06:00:: 04114301 1 0 -round_hand%1:10:00:: 06351086 1 0 -round_kumquat%1:20:00:: 12713358 1 0 -round_ligament_of_the_uterus%1:08:00:: 05295740 1 0 -round_of_drinks%1:13:00:: 07884266 1 0 -round_of_golf%1:04:00:: 00466377 1 0 -round_off%2:30:00:: 00145623 3 0 -round_off%2:30:01:: 00145147 1 1 -round_off%2:30:02:: 00473799 2 0 -round_out%2:30:00:: 00172381 2 3 -round_out%2:30:01:: 00145147 4 0 -round_out%2:30:02:: 00145623 3 0 -round_out%2:30:03:: 00485274 1 3 -round_robin%1:10:00:: 06625965 2 0 -round_robin%1:11:00:: 07467579 1 0 -round_scad%1:05:00:: 02581642 1 0 -round_shape%1:25:00:: 13865483 1 0 -round_shot%1:06:00:: 02950943 1 0 -round_steak%1:13:00:: 07662275 1 0 -round_table%1:06:00:: 04114554 2 0 -round_table%1:10:00:: 07145314 1 1 -round_the_bend%5:00:00:insane:00 02074929 1 0 -round_the_clock%4:02:00:: 00152559 1 0 -round_top%1:06:00:: 03035252 1 0 -round_trip%1:04:00:: 00308779 1 0 -round_up%2:35:00:: 01381913 1 4 -round_whitefish%1:05:00:: 02539894 1 0 -round_window%1:08:00:: 05325786 1 0 -roundabout%1:06:00:: 04465933 1 0 -roundabout%1:06:01:: 02966193 2 0 -roundabout%5:00:00:indirect:00 00763013 2 1 -roundabout%5:00:00:indirect:02 00767349 1 1 -roundabout_way%1:06:00:: 03182506 1 0 -rounded%3:00:00:: 02043898 1 3 -roundedness%1:07:00:: 05070453 1 0 -roundel%1:06:00:: 04114069 2 0 -roundel%1:06:01:: 02713992 3 0 -roundel%1:10:00:: 06381134 1 0 -roundelay%1:10:00:: 07053491 1 0 -rounder%1:06:00:: 04114193 2 0 -rounder%1:18:00:: 10257647 1 0 -rounders%1:04:00:: 00476140 1 0 -roundhead%1:18:00:: 10540656 1 0 -roundhead%1:18:01:: 10540526 2 0 -roundheaded%5:00:00:brachycephalic:00 00262328 1 0 -roundhouse%1:04:00:: 00136230 2 1 -roundhouse%1:06:00:: 04114428 1 1 -rounding%1:04:00:: 00073177 1 0 -rounding_error%1:04:00:: 00073177 1 0 -roundish%5:00:00:round:00 02043051 1 0 -roundly%4:02:00:: 00228815 1 1 -roundly%4:02:01:: 00279523 2 0 -roundness%1:07:00:: 05072911 3 0 -roundness%1:07:01:: 05000913 4 0 -roundness%1:07:02:: 05123206 2 0 -roundness%1:10:00:: 07082972 1 0 -roundsman%1:18:00:: 10540735 1 0 -roundtable%1:10:00:: 07145314 1 0 -roundup%1:04:00:: 00635544 3 0 -roundup%1:04:01:: 00921627 1 2 -roundup%1:10:00:: 06469597 2 0 -roundworm%1:05:00:: 01930112 2 0 -roundworm%1:26:00:: 14125466 1 0 -rous%1:18:00:: 11272523 1 0 -rouse%2:29:02:: 00018813 4 0 -rouse%2:37:04:: 01762528 3 0 -rouse%2:38:00:: 02056466 2 0 -rouse%2:38:01:: 02083806 1 2 -rouser%1:18:00:: 10763985 1 0 -rousing%1:04:00:: 00242808 1 0 -rousing%5:00:00:provocative:00 01897607 2 0 -rousing%5:00:00:stimulating:00 02307026 1 1 -rousseau%1:18:00:: 11272689 1 13 -rousseau%1:18:01:: 11272972 2 0 -rousseauan%3:01:00:: 02858539 1 1 -roustabout%1:18:00:: 09998788 1 0 -rout%1:11:00:: 07476404 2 0 -rout%1:14:00:: 08184600 1 0 -rout%2:33:00:: 01108951 1 1 -rout%2:33:01:: 01104248 4 0 -rout%2:35:00:: 01281782 3 0 -rout%2:35:01:: 01282413 2 0 -rout_out%2:33:00:: 01108951 3 0 -rout_out%2:38:00:: 02056466 2 1 -rout_out%2:40:00:: 02292265 1 1 -rout_up%2:40:00:: 02292265 1 0 -route%1:06:00:: 04096066 2 2 -route%1:15:00:: 08616311 1 11 -route%2:38:00:: 01952750 2 0 -route%2:38:01:: 01952564 3 0 -route%2:38:02:: 01955364 1 0 -routemarch%1:04:00:: 00291876 1 0 -router%1:06:00:: 04114719 3 0 -router%1:06:01:: 04114844 2 0 -router%1:18:00:: 10540872 1 0 -router_plane%1:06:00:: 04114996 1 0 -routine%1:04:00:: 01026482 1 10 -routine%1:10:00:: 06582403 3 1 -routine%1:10:01:: 06892016 2 2 -routine%5:00:00:ordinary:00 01674242 1 2 -routinely%4:02:00:: 00210935 1 1 -roux%1:13:00:: 07839478 1 0 -rove%2:38:00:: 01881180 1 2 -rove_beetle%1:05:00:: 02180875 1 0 -rover%1:18:00:: 10765679 1 0 -rover%1:18:01:: 10540984 2 0 -roving%1:04:00:: 00297062 1 0 -roving%5:00:00:unsettled:01 02128084 1 0 -row%1:04:00:: 00445351 7 0 -row%1:06:00:: 03120029 4 1 -row%1:07:00:: 05045680 6 0 -row%1:10:00:: 07184149 2 3 -row%1:14:00:: 08431437 1 23 -row%1:14:01:: 08433447 5 0 -row%1:17:00:: 09417365 3 1 -row%2:38:00:: 01946996 1 4 -row_house%1:06:00:: 04115256 1 1 -row_of_bricks%1:06:00:: 04115670 1 0 -rowan%1:20:00:: 12658308 1 0 -rowan_tree%1:20:00:: 12658308 1 0 -rowanberry%1:20:00:: 12658481 1 0 -rowboat%1:06:00:: 03199901 1 0 -rowdily%4:02:00:: 00445487 1 0 -rowdiness%1:26:00:: 13977184 1 0 -rowdy%1:18:00:: 09879297 1 1 -rowdy%5:00:00:disorderly:00 01667110 1 1 -rowdyism%1:26:00:: 13977184 1 0 -rowel%1:06:00:: 04115144 1 0 -rower%1:18:00:: 10368920 1 0 -rowing%1:04:00:: 00445351 1 0 -rowing_boat%1:06:00:: 04115456 1 0 -rowing_club%1:14:00:: 08230219 1 0 -rowlock%1:06:00:: 03905730 1 0 -rowlock_arch%1:06:00:: 04115542 1 0 -roy_chapman_andrews%1:18:00:: 10818312 1 0 -roy_lichtenstein%1:18:00:: 11131658 1 0 -roy_orbison%1:18:00:: 11216100 1 0 -roy_wilkins%1:18:00:: 11387692 1 0 -royal%1:05:00:: 02430643 2 0 -royal%1:06:00:: 04115802 1 0 -royal%3:01:00:: 02789579 1 4 -royal%3:01:01:: 02789798 2 1 -royal%5:00:00:crowned:00 00654685 5 0 -royal%5:00:00:noble:02 01592509 3 0 -royal%5:00:02:noble:02 01591394 4 0 -royal_academy%1:14:00:: 08281205 1 0 -royal_academy_of_arts%1:14:00:: 08281205 1 0 -royal_agaric%1:20:00:: 13002750 1 0 -royal_air_force%1:14:00:: 08195132 1 0 -royal_blue%1:07:00:: 04969952 1 0 -royal_brace%1:06:00:: 04115906 1 1 -royal_canadian_mounted_police%1:14:00:: 08210670 1 0 -royal_casino%1:04:00:: 00498828 1 0 -royal_charter%1:10:00:: 06477209 1 0 -royal_court%1:14:01:: 08051946 2 0 -royal_court%1:14:02:: 08329322 1 0 -royal_family%1:14:00:: 08153437 1 1 -royal_fern%1:20:00:: 12953484 1 0 -royal_flush%1:14:00:: 07957855 1 0 -royal_house%1:14:00:: 08153437 1 1 -royal_jelly%1:27:00:: 14774228 1 0 -royal_line%1:14:00:: 08153437 1 0 -royal_mast%1:06:00:: 04115996 1 0 -royal_national_eisteddfod%1:04:00:: 00517080 1 0 -royal_osmund%1:20:00:: 12953484 1 0 -royal_palm%1:20:00:: 12596709 1 0 -royal_poinciana%1:20:00:: 12494794 1 0 -royal_purple%1:07:00:: 04970631 1 0 -royal_road%1:04:00:: 00174127 1 0 -royal_society%1:14:00:: 08281409 1 0 -royal_society_of_london_for_improving_natural_knowledge%1:14:00:: 08281409 1 0 -royal_stag%1:05:00:: 02430643 1 0 -royal_tennis%1:04:00:: 00483705 1 0 -royal_velvet_plant%1:20:00:: 11975254 1 0 -royalism%1:04:00:: 01213548 1 0 -royalist%1:18:00:: 10327824 1 0 -royalist%1:18:01:: 09902128 2 0 -royally%4:02:00:: 00125985 1 0 -royalty%1:14:00:: 08153437 2 1 -royalty%1:21:00:: 13257982 1 5 -roystonea%1:20:00:: 12596525 1 0 -roystonea_oleracea%1:20:00:: 12596849 1 0 -roystonea_regia%1:20:00:: 12596709 1 0 -rozelle%1:20:00:: 12179632 1 0 -rpa-abb%1:14:00:: 08011266 1 0 -rpm%1:28:00:: 15281870 1 6 -rtlt%1:28:00:: 15130926 1 0 -ru%1:27:00:: 14653242 1 0 -ru_486%1:06:00:: 02668093 1 0 -ruanda%1:15:00:: 08815046 1 0 -ruandan%3:01:00:: 03112486 1 0 -rub%1:04:00:: 00125126 2 0 -rub%1:09:00:: 05691144 1 0 -rub%2:35:00:: 01249724 1 19 -rub%2:35:01:: 01250908 2 1 -rub%2:39:00:: 02119874 3 0 -rub-a-dub%1:11:00:: 07392373 1 0 -rub_al-khali%1:15:00:: 09172111 1 0 -rub_along%2:41:00:: 02588464 1 0 -rub_down%2:35:00:: 01254013 1 0 -rub_down%2:35:01:: 01232738 2 0 -rub_off%2:35:00:: 01254013 1 0 -rub_out%2:35:00:: 01548718 1 0 -rub_up%1:04:00:: 00897989 1 0 -rubato%1:28:00:: 15265423 1 0 -rubber%1:06:00:: 02735538 5 0 -rubber%1:06:01:: 03088164 4 0 -rubber%1:06:02:: 04116512 3 0 -rubber%1:27:00:: 15006258 1 4 -rubber%1:27:01:: 15006789 2 0 -rubber%2:30:00:: 00136254 1 0 -rubber%5:00:00:bad:00 01129021 1 0 -rubber-base_paint%1:06:00:: 03646020 1 0 -rubber-necking%1:04:00:: 00879607 1 0 -rubber_band%1:06:00:: 04116098 1 0 -rubber_boa%1:05:00:: 01742447 1 0 -rubber_boot%1:06:00:: 04116294 1 0 -rubber_bullet%1:06:00:: 04116389 1 0 -rubber_cement%1:27:00:: 14705386 1 0 -rubber_eraser%1:06:00:: 04116512 1 0 -rubber_plant%1:20:00:: 12402840 1 0 -rubber_stamp%1:04:00:: 01141482 2 0 -rubber_stamp%1:06:00:: 03488887 1 0 -rubber_tire%1:06:00:: 02971167 1 0 -rubber_tree%1:20:00:: 12925836 1 0 -rubberise%2:30:00:: 00136254 1 0 -rubberize%2:30:00:: 00136254 1 0 -rubberlike%5:00:00:elastic:00 00844869 1 1 -rubberneck%1:18:00:: 10541106 2 0 -rubberneck%1:18:01:: 10596689 1 0 -rubberneck%2:39:00:: 02150740 1 0 -rubbernecker%1:18:00:: 10541106 1 0 -rubberstamp%2:31:00:: 00674517 2 0 -rubberstamp%2:35:00:: 01273632 1 0 -rubbery%5:00:00:elastic:00 00844869 1 1 -rubbery%5:00:00:tough:01 02445863 2 0 -rubbing%1:04:00:: 00712031 3 0 -rubbing%1:06:00:: 04116744 2 0 -rubbing%1:19:00:: 11459538 1 0 -rubbing_alcohol%1:06:00:: 04116919 1 0 -rubbish%1:10:00:: 06611998 2 0 -rubbish%1:27:00:: 14857497 1 1 -rubbish%2:32:00:: 01062165 1 0 -rubbish_dump%1:15:00:: 08560027 1 0 -rubbish_heap%1:15:00:: 08573842 1 0 -rubbishy%5:00:00:worthless:00 02503656 1 0 -rubble%1:27:00:: 14857897 1 1 -rubdown%1:04:00:: 00258695 1 0 -rube%1:18:00:: 10804102 1 0 -rube_goldberg%1:18:00:: 11004485 1 0 -rubefacient%1:06:00:: 04117089 1 0 -rubel%1:23:00:: 13700056 1 0 -rubella%1:26:00:: 14123259 1 0 -rubella_panencephalitis%1:26:00:: 14344720 1 0 -rubens%1:18:00:: 11273104 1 0 -rubeola%1:26:00:: 14123044 1 0 -rubia%1:20:00:: 12660796 1 0 -rubia_cordifolia%1:20:00:: 12661045 1 0 -rubia_tinctorum%1:20:00:: 12661227 1 0 -rubiaceae%1:20:00:: 12660009 1 0 -rubiaceous_plant%1:20:00:: 12660601 1 0 -rubiales%1:20:00:: 12659730 1 0 -rubicelle%1:27:00:: 15051608 1 0 -rubicon%1:09:00:: 05749042 2 0 -rubicon%1:15:00:: 08644552 1 0 -rubicund%5:00:00:healthy:00 01172139 1 0 -rubidium%1:27:00:: 14652954 1 0 -rubidium-strontium_dating%1:04:00:: 00992995 1 0 -rubify%2:30:00:: 00535360 1 0 -rubin_test%1:09:00:: 05744976 1 0 -rubinstein%1:18:00:: 11273286 2 0 -rubinstein%1:18:01:: 11273479 1 0 -ruble%1:23:00:: 13699076 2 0 -ruble%1:23:01:: 13702531 1 0 -rubor%1:26:00:: 14336539 1 0 -rubric%1:09:00:: 05839776 6 0 -rubric%1:10:00:: 06344998 5 0 -rubric%1:10:01:: 06744000 2 0 -rubric%1:10:02:: 06652614 1 1 -rubric%1:10:03:: 06652712 3 0 -rubric%1:10:04:: 06345993 4 0 -rubric%2:30:00:: 00535481 1 0 -rubricate%2:32:00:: 00996810 4 0 -rubricate%2:36:00:: 01683957 3 0 -rubricate%2:36:01:: 01756875 2 0 -rubricate%2:41:03:: 02546710 1 0 -rubus%1:20:00:: 12653056 1 0 -rubus_australis%1:20:00:: 12653436 1 0 -rubus_caesius%1:20:00:: 12655726 1 0 -rubus_canadensis%1:20:00:: 12655245 1 0 -rubus_chamaemorus%1:20:00:: 12657294 1 0 -rubus_cissoides%1:20:00:: 12653436 1 0 -rubus_cuneifolius%1:20:00:: 12654227 1 0 -rubus_flagellaris%1:20:00:: 12655351 1 0 -rubus_fruticosus%1:20:00:: 12654012 1 0 -rubus_hispidus%1:20:00:: 12655605 1 0 -rubus_idaeus%1:20:00:: 12656369 1 0 -rubus_idaeus_strigosus%1:20:00:: 12656528 1 0 -rubus_loganobaccus%1:20:00:: 12655062 1 0 -rubus_occidentalis%1:20:00:: 12656685 1 0 -rubus_odoratus%1:20:00:: 12657509 1 0 -rubus_parviflorus%1:20:00:: 12657082 1 0 -rubus_phoenicolasius%1:20:00:: 12657755 1 0 -rubus_saxatilis%1:20:00:: 12653633 1 0 -rubus_spectabilis%1:20:00:: 12656909 1 0 -rubus_strigosus%1:20:00:: 12656528 1 0 -rubus_trivialis%1:20:00:: 12655498 1 0 -rubus_ursinus%1:20:00:: 12654659 1 0 -rubus_ursinus_loganobaccus%1:20:00:: 12655062 1 0 -ruby%1:07:00:: 04963588 3 0 -ruby%1:21:00:: 13372262 1 1 -ruby%1:27:00:: 15008142 2 0 -ruby%5:00:00:chromatic:00 00381097 1 0 -ruby-crowned_kinglet%1:05:00:: 01564217 1 0 -ruby-crowned_wren%1:05:00:: 01564217 1 0 -ruby-red%5:00:00:chromatic:00 00381097 1 0 -ruby_spinel%1:27:00:: 15051129 1 0 -ruby_wood%1:20:00:: 12566627 1 0 -ruck%1:14:00:: 08183046 1 1 -ruck%1:25:00:: 13907847 2 0 -ruck%2:35:00:: 01279015 1 0 -ruck_up%2:35:00:: 01279015 1 0 -ruckle%2:35:00:: 01278427 2 0 -ruckle%2:39:00:: 02175283 1 0 -rucksack%1:06:00:: 02769748 1 0 -ruckus%1:04:00:: 00553823 1 0 -ruction%1:04:00:: 00553823 1 0 -rudaceous_rock%1:27:00:: 14697708 1 0 -rudapithecus%1:05:00:: 02478239 1 0 -rudbeckia%1:20:00:: 12008017 1 0 -rudbeckia_hirta%1:20:00:: 12008487 1 0 -rudbeckia_laciniata%1:20:00:: 12008749 1 0 -rudbeckia_laciniata_hortensia%1:20:00:: 12009047 1 0 -rudbeckia_serotina%1:20:00:: 12008487 1 0 -rudd%1:05:00:: 01442710 1 0 -rudder%1:06:00:: 04117216 2 0 -rudder%1:06:01:: 04117464 1 1 -rudder-like%5:00:00:formed:00 02149502 1 0 -rudder_blade%1:06:00:: 04117639 1 0 -rudderfish%1:05:01:: 02579091 2 0 -rudderfish%1:05:02:: 02604480 1 0 -rudderless%5:00:00:purposeless:00 01910652 1 1 -rudderpost%1:06:00:: 04117747 1 0 -rudderstock%1:06:00:: 04117747 1 0 -ruddiness%1:07:00:: 04977412 1 0 -ruddle%1:27:00:: 15008287 1 0 -ruddle%2:30:00:: 00535570 2 0 -ruddle%2:35:00:: 01518552 1 0 -ruddles%1:20:00:: 11943660 1 0 -ruddy%5:00:00:chromatic:00 00381097 2 0 -ruddy%5:00:00:healthy:00 01172139 1 1 -ruddy_duck%1:05:00:: 01849863 1 0 -ruddy_turnstone%1:05:00:: 02025239 1 0 -rude%3:00:04:: 00642725 3 0 -rude%5:00:00:early:02 00818175 5 0 -rude%5:00:00:impolite:00 00641944 1 2 -rude%5:00:00:unprocessed:00 01952643 4 0 -rude%5:00:00:unrefined:01 01950857 2 1 -rudely%4:02:00:: 00218681 1 1 -rudeness%1:07:00:: 04914292 1 1 -rudeness%1:26:00:: 14472624 2 0 -rudiment%1:08:00:: 05604022 2 0 -rudiment%1:09:00:: 05872742 1 0 -rudimentary%5:00:00:basic:00 01856419 1 1 -rudimentary%5:00:00:incomplete:00 00524965 2 1 -rudimentary%5:00:00:undeveloped:00 00742714 3 0 -rudiments%1:10:00:: 06639563 1 0 -rudolf_bultmann%1:18:00:: 10871129 1 0 -rudolf_christian_karl_diesel%1:18:00:: 10935128 1 0 -rudolf_diesel%1:18:00:: 10935128 1 0 -rudolf_hess%1:18:00:: 11047701 1 0 -rudolf_karl_bultmann%1:18:00:: 10871129 1 0 -rudolf_karl_virchow%1:18:00:: 11367195 1 0 -rudolf_ludwig_mossbauer%1:18:00:: 11193814 1 0 -rudolf_nureyev%1:18:00:: 11210610 1 0 -rudolf_serkin%1:18:00:: 11293334 1 0 -rudolf_steiner%1:18:00:: 11315249 1 0 -rudolf_virchow%1:18:00:: 11367195 1 0 -rudolf_wurlitzer%1:18:00:: 11399274 1 0 -rudolph_laban%1:18:00:: 11113601 1 0 -rudra%1:18:00:: 09528237 1 0 -rudyard_kipling%1:18:00:: 11105778 1 0 -rue%1:06:00:: 04117917 4 0 -rue%1:12:00:: 07535670 3 0 -rue%1:13:00:: 07820297 2 0 -rue%1:20:00:: 12707199 1 0 -rue%2:37:00:: 01796582 1 0 -rue_anemone%1:20:00:: 11726707 1 0 -rue_family%1:20:00:: 12706644 1 0 -rueful%5:00:00:penitent:00 01743506 1 0 -ruefully%4:02:00:: 00217998 1 2 -ruefulness%1:12:00:: 07535670 1 0 -ruf%1:14:00:: 08043848 1 0 -ruff%1:04:00:: 01259380 4 0 -ruff%1:05:00:: 02030035 3 0 -ruff%1:06:00:: 03024746 2 0 -ruff%1:08:00:: 05546997 1 0 -ruff%2:33:00:: 01078235 1 0 -ruffed_grouse%1:05:00:: 01797886 1 0 -ruffian%1:18:00:: 09879297 1 1 -ruffianism%1:04:00:: 00736989 1 0 -ruffianly%5:00:00:violent:00 02512641 1 0 -ruffle%1:04:00:: 01176335 3 0 -ruffle%1:06:00:: 03024746 2 0 -ruffle%1:06:01:: 03397532 1 0 -ruffle%2:35:00:: 01387301 9 0 -ruffle%2:35:01:: 01391806 7 0 -ruffle%2:35:02:: 01387493 8 0 -ruffle%2:35:03:: 01591357 5 0 -ruffle%2:35:04:: 01418667 6 0 -ruffle%2:37:00:: 01789047 2 1 -ruffle%2:37:01:: 01790538 4 0 -ruffle%2:38:00:: 02040054 1 1 -ruffle%2:38:01:: 01916634 3 0 -ruffle_up%2:35:00:: 01387493 1 0 -ruffled%5:00:00:adorned:00 00058696 2 1 -ruffled%5:00:00:agitated:02 00088157 1 1 -rufous_rubber_cup%1:20:00:: 12984267 1 0 -rug%1:06:00:: 04118021 1 4 -rug_beater%1:06:00:: 02967407 1 0 -rug_merchant%1:18:00:: 10542054 1 0 -rug_pad%1:06:00:: 02967626 1 0 -ruga%1:08:00:: 05607271 1 0 -rugby%1:04:00:: 00470966 1 0 -rugby_ball%1:06:00:: 04118538 1 0 -rugby_football%1:04:00:: 00470966 1 0 -rugel's_plantain%1:20:00:: 12600095 1 0 -rugelach%1:13:00:: 07937786 1 0 -rugged%3:00:00:: 00707366 1 9 -rugged%3:00:02:: 02243806 2 0 -rugged%5:00:00:difficult:00 00748058 4 0 -rugged%5:00:00:rough:00 02239746 3 0 -rugged_individualism%1:09:00:: 05963299 1 0 -ruggedisation%1:04:00:: 00829721 1 0 -ruggedise%2:30:00:: 00165244 1 0 -ruggedization%1:04:00:: 00829721 1 0 -ruggedize%2:30:00:: 00165244 1 0 -ruggedly%4:02:00:: 00500990 1 0 -ruggedness%1:07:00:: 05031214 1 0 -ruggedness%1:07:01:: 04772388 2 0 -ruggedness%1:07:02:: 04710588 3 0 -ruggelach%1:13:00:: 07937786 1 0 -rugger%1:04:00:: 00470966 1 0 -rugose%5:00:00:rough:00 02242481 1 0 -rugulah%1:13:00:: 07937786 1 0 -ruholla_khomeini%1:18:00:: 11104008 1 0 -ruhr%1:15:00:: 08776138 2 0 -ruhr%1:17:00:: 09417560 1 0 -ruhr_river%1:17:00:: 09417560 1 0 -ruhr_valley%1:15:00:: 08776138 1 0 -ruin%1:04:00:: 00217773 6 0 -ruin%1:06:00:: 04118635 2 2 -ruin%1:11:00:: 07335243 4 0 -ruin%1:11:01:: 07318133 5 0 -ruin%1:22:00:: 13466312 3 0 -ruin%1:26:00:: 14562324 1 3 -ruin%2:30:00:: 00578993 6 0 -ruin%2:35:00:: 01564144 1 4 -ruin%2:35:01:: 01566490 4 0 -ruin%2:35:02:: 01428381 5 0 -ruin%2:40:00:: 02318165 3 0 -ruin%2:41:00:: 02558951 2 0 -ruination%1:04:00:: 00217773 4 0 -ruination%1:11:00:: 07335243 2 0 -ruination%1:11:01:: 07318133 3 0 -ruination%1:26:00:: 14562324 1 0 -ruined%5:00:00:lost:02 01451402 1 1 -ruined%5:00:00:unsuccessful:00 02334321 2 0 -ruined%5:00:02:destroyed:00 00736299 3 0 -ruiner%1:18:00:: 10008716 1 0 -ruining%1:04:00:: 00217773 1 0 -ruinous%5:00:00:destructive:00 00586883 2 0 -ruinous%5:00:00:harmful:00 01161635 1 1 -ruinously%4:02:00:: 00445641 1 0 -rule%1:06:00:: 04118776 12 0 -rule%1:09:00:: 05846054 1 15 -rule%1:09:01:: 05667613 2 15 -rule%1:09:02:: 05874232 10 0 -rule%1:09:03:: 05913538 5 3 -rule%1:09:04:: 05846932 11 0 -rule%1:10:00:: 06652242 3 10 -rule%1:10:01:: 07259772 4 7 -rule%1:10:02:: 06788897 8 0 -rule%1:10:03:: 06652064 9 0 -rule%1:26:00:: 14442933 7 0 -rule%1:28:00:: 15295416 6 0 -rule%2:30:00:: 00234857 7 0 -rule%2:31:00:: 00715868 2 9 -rule%2:32:00:: 00971999 4 1 -rule%2:36:00:: 01690020 6 0 -rule%2:41:00:: 02586619 1 12 -rule%2:42:00:: 02644234 3 2 -rule%2:42:01:: 02716995 5 0 -rule-governed%5:00:00:regular:00 01959807 1 0 -rule_book%1:14:00:: 07954211 1 0 -rule_in%2:33:00:: 01147562 1 1 -rule_of_cy_pres%1:09:00:: 05848691 1 0 -rule_of_evidence%1:10:00:: 06653363 1 0 -rule_of_grammar%1:10:00:: 07260175 1 0 -rule_of_law%1:26:00:: 13968973 1 0 -rule_of_morphology%1:10:00:: 07260493 1 0 -rule_of_thumb%1:09:00:: 05848541 1 0 -rule_out%2:31:00:: 00685419 3 1 -rule_out%2:33:00:: 01147562 2 1 -rule_out%2:42:00:: 02629390 1 6 -ruled%5:00:00:subordinate:02 02329765 1 1 -ruler%1:06:00:: 04118776 2 1 -ruler%1:18:00:: 10541229 1 4 -rulership%1:04:00:: 00599234 1 0 -rules_of_order%1:10:00:: 06652878 1 0 -ruling%1:04:00:: 01191158 1 4 -ruling%5:00:00:powerful:00 01827432 1 1 -ruling_class%1:14:00:: 08387806 1 1 -ruly%5:00:00:tidy:00 02423563 1 0 -rum%1:04:00:: 00495331 2 0 -rum%1:13:00:: 07905038 1 0 -rum%5:00:00:strange:00 00968010 1 0 -rum-blossom%1:26:00:: 14397040 1 0 -rum_baba%1:13:00:: 07629898 1 0 -rum_cherry%1:20:00:: 12648888 1 0 -rum_cocktail%1:13:00:: 07914413 1 0 -rum_nose%1:26:00:: 14397040 1 0 -rum_sling%1:13:00:: 07917951 1 0 -rumania%1:15:00:: 08813978 1 0 -rumanian%1:10:00:: 06968343 1 1 -rumanian%1:18:00:: 09728285 2 0 -rumanian%3:01:00:: 02962272 1 1 -rumansh%1:10:00:: 06968174 1 0 -rumansh%3:01:00:: 02789031 1 0 -rumba%1:04:00:: 00541779 2 0 -rumba%1:04:01:: 00537085 3 0 -rumba%1:10:00:: 07056764 1 0 -rumba%2:38:00:: 01897779 1 0 -rumble%1:04:00:: 01176649 3 0 -rumble%1:06:00:: 04119091 2 0 -rumble%1:11:00:: 07392483 1 4 -rumble%2:32:00:: 01045719 2 1 -rumble%2:39:00:: 02187320 1 3 -rumble_seat%1:06:00:: 04119230 1 0 -rumbling%1:11:00:: 07392483 1 0 -rumbling%5:00:00:full:01 01457079 1 0 -rumbustious%5:00:00:disorderly:00 01666489 1 0 -rumen%1:05:00:: 02399424 1 1 -rumex%1:20:00:: 12603784 1 0 -rumex_acetosa%1:20:00:: 12604228 1 0 -rumex_acetosella%1:20:00:: 12604460 1 0 -rumex_obtusifolius%1:20:00:: 12604639 1 0 -rumex_scutatus%1:20:00:: 12604845 1 0 -ruminant%1:05:00:: 02399000 1 0 -ruminant%3:01:00:: 02789920 1 0 -ruminantia%1:05:00:: 02398732 1 0 -ruminate%2:31:00:: 00630380 2 0 -ruminate%2:34:00:: 01174555 1 0 -rumination%1:04:00:: 00119079 3 0 -rumination%1:04:01:: 00279377 2 0 -rumination%1:09:00:: 05785508 1 0 -ruminative%5:00:00:thoughtful:00 02419434 1 0 -ruminator%1:18:00:: 10339504 1 0 -rummage%1:04:00:: 00946806 2 0 -rummage%1:26:00:: 14500819 1 0 -rummage%2:35:00:: 01319049 1 2 -rummage_sale%1:04:00:: 01119850 1 0 -rummer%1:06:00:: 04119360 1 0 -rummy%1:04:00:: 00495331 2 0 -rummy%1:18:00:: 10037385 1 0 -rummy%5:00:00:strange:00 00968010 1 0 -rumohra%1:20:00:: 13200806 1 0 -rumohra_adiantiformis%1:20:00:: 13200986 1 0 -rumor%1:10:00:: 07223450 1 14 -rumor%2:32:00:: 01042228 1 1 -rumormonger%1:18:00:: 10139347 1 0 -rumour%1:10:00:: 07223450 1 0 -rumour%2:32:00:: 01042228 1 0 -rumourmonger%1:18:00:: 10139347 1 0 -rump%1:05:00:: 02463611 1 1 -rump%1:08:00:: 05559256 3 0 -rump%1:13:00:: 07662833 2 0 -rump_roast%1:13:00:: 07662978 1 0 -rump_steak%1:13:00:: 07662618 1 0 -rumpelstiltskin%1:18:00:: 10542138 1 0 -rumple%2:30:10:: 00564857 3 0 -rumple%2:35:00:: 01387493 1 0 -rumple%2:35:01:: 01278817 2 0 -rumpled%5:00:00:untidy:00 02425220 1 0 -rumpus%1:04:00:: 00553823 1 1 -rumpus%2:41:00:: 02585259 1 0 -rumpus_room%1:06:00:: 04119478 1 0 -rumrunner%1:18:00:: 10542499 1 0 -run%1:04:00:: 00293916 7 1 -run%1:04:01:: 00189565 1 18 -run%1:04:02:: 00558883 5 1 -run%1:04:04:: 00308871 6 1 -run%1:04:05:: 00309011 16 0 -run%1:04:06:: 00791078 2 5 -run%1:07:00:: 05045841 15 0 -run%1:11:00:: 07407777 14 0 -run%1:11:01:: 07443010 13 0 -run%1:11:02:: 07460104 3 2 -run%1:11:03:: 07472929 12 0 -run%1:14:00:: 08460585 4 1 -run%1:17:00:: 09415938 11 0 -run%1:23:00:: 13760129 10 0 -run%1:26:00:: 13995935 9 0 -run%1:28:00:: 15262120 8 0 -run%2:30:00:: 00444629 39 0 -run%2:30:01:: 00334803 40 0 -run%2:30:02:: 00539110 38 0 -run%2:30:03:: 00549063 14 3 -run%2:30:04:: 00332672 41 0 -run%2:30:07:: 00517529 15 3 -run%2:33:01:: 01086103 37 0 -run%2:33:02:: 01143838 36 0 -run%2:33:06:: 01094086 9 7 -run%2:35:00:: 01525666 7 8 -run%2:35:01:: 01212230 22 2 -run%2:35:04:: 01526290 13 3 -run%2:36:00:: 01641545 21 2 -run%2:36:01:: 01717169 10 5 -run%2:36:02:: 01746359 20 2 -run%2:38:00:: 01926311 1 106 -run%2:38:01:: 02066939 6 9 -run%2:38:02:: 01927747 32 0 -run%2:38:03:: 01927903 28 1 -run%2:38:04:: 02075049 2 38 -run%2:38:05:: 01914947 29 1 -run%2:38:06:: 01927447 33 0 -run%2:38:08:: 02060792 27 1 -run%2:38:09:: 01864038 35 0 -run%2:38:10:: 02092309 26 1 -run%2:38:11:: 02099829 11 4 -run%2:38:13:: 01926984 34 0 -run%2:40:06:: 02242256 25 1 -run%2:41:00:: 02563327 19 2 -run%2:41:01:: 02525312 24 1 -run%2:41:02:: 02443849 4 20 -run%2:41:04:: 02421921 31 0 -run%2:42:00:: 02685951 3 21 -run%2:42:01:: 02719399 12 3 -run%2:42:02:: 02720904 16 2 -run%2:42:03:: 02647497 17 2 -run%2:42:04:: 02721284 5 10 -run%2:42:05:: 02648110 30 0 -run%2:42:06:: 02612234 18 2 -run%2:42:07:: 02727039 8 7 -run%2:42:08:: 02686625 23 1 -run-down%5:00:00:malfunctioning:00 01092889 2 1 -run-down%5:00:00:worn:00 02581530 1 1 -run-in%1:10:00:: 07184149 1 0 -run-of-the-mill%5:00:00:ordinary:00 01674926 1 0 -run-of-the-mine%5:00:00:ordinary:00 01674926 1 0 -run-on%3:00:00:: 00873502 1 0 -run-on_sentence%1:10:00:: 06601053 1 0 -run-resistant%5:00:00:impervious:00 01775280 1 0 -run-through%1:04:00:: 00897506 1 0 -run-time%1:28:00:: 15262360 2 0 -run-time%1:28:01:: 15262510 1 0 -run-time_error%1:11:00:: 07300316 1 0 -run-up%1:04:00:: 00476788 2 0 -run-up%1:11:00:: 07414370 1 0 -run_a_risk%2:41:00:: 02544348 1 7 -run_across%2:38:00:: 02023107 1 2 -run_afoul%2:41:11:: 02567147 1 0 -run_aground%2:38:01:: 02022486 1 0 -run_aground%2:38:03:: 02022359 2 0 -run_along%2:42:00:: 02703539 1 1 -run_around%2:38:00:: 01883716 1 3 -run_away%2:38:00:: 02075049 1 12 -run_away%2:38:04:: 02100476 2 1 -run_bases%2:38:00:: 01927211 1 1 -run_batted_in%1:04:00:: 00190180 1 1 -run_by%2:38:00:: 02052226 1 1 -run_down%2:29:00:: 00099517 4 2 -run_down%2:29:01:: 00106960 3 2 -run_down%2:38:00:: 02004227 7 0 -run_down%2:38:02:: 02068223 2 2 -run_down%2:39:00:: 02152278 5 1 -run_down%2:40:00:: 02280869 6 0 -run_down%2:41:00:: 02376833 1 2 -run_dry%2:43:00:: 02771756 1 0 -run_for%2:42:00:: 02648110 1 0 -run_into%2:35:00:: 01240308 2 1 -run_into%2:35:01:: 01236164 3 1 -run_into%2:38:01:: 02023107 4 0 -run_into%2:42:01:: 02730326 1 6 -run_low%2:34:00:: 01192773 1 0 -run_off%2:33:00:: 01081505 7 0 -run_off%2:36:00:: 01736299 6 0 -run_off%2:38:00:: 02002720 3 1 -run_off%2:38:01:: 02011040 2 1 -run_off%2:38:02:: 02073714 1 2 -run_off%2:38:03:: 02074186 4 0 -run_off%2:38:04:: 02067889 5 0 -run_on%2:32:00:: 00963872 1 1 -run_on%2:42:00:: 02684254 2 0 -run_out%2:29:00:: 00099517 8 0 -run_out%2:30:02:: 00560247 7 0 -run_out%2:30:03:: 00561714 6 0 -run_out%2:30:12:: 00561571 1 5 -run_out%2:38:00:: 02069888 5 0 -run_out%2:38:01:: 02071457 2 3 -run_out%2:38:02:: 02011040 3 3 -run_out%2:42:00:: 02684784 4 1 -run_over%2:29:00:: 00106960 1 3 -run_over%2:38:00:: 02072159 2 1 -run_roughshod%2:41:00:: 02515583 1 1 -run_short%2:34:00:: 01192773 1 0 -run_through%2:34:00:: 01157517 2 1 -run_through%2:34:01:: 01161947 1 4 -run_up%2:30:00:: 00159553 1 2 -run_up%2:35:00:: 01455754 2 1 -run_up%2:35:01:: 01329239 3 1 -run_up%2:36:00:: 01666604 5 0 -run_up%2:40:00:: 02321245 4 0 -runabout%1:06:00:: 04097373 1 0 -runaway%1:11:00:: 07475107 1 1 -runaway%1:18:00:: 10115082 2 0 -runaway%5:00:00:uncontrolled:00 00601150 1 3 -runaway_robin%1:20:00:: 12847374 1 0 -runch%1:20:00:: 11894558 1 0 -runcible_spoon%1:06:00:: 04119630 1 0 -runcinate%5:00:00:rough:02 02247637 1 0 -runcinate_leaf%1:20:00:: 13161254 1 0 -rundle%1:06:00:: 04119751 1 0 -rundown%1:10:00:: 06469874 1 1 -rundstedt%1:18:00:: 11273679 1 0 -rune%1:10:00:: 06840187 1 0 -rung%1:06:00:: 04119751 2 0 -rung%1:06:01:: 04119892 1 0 -runic%3:01:00:: 02938236 1 0 -runic_letter%1:10:00:: 06840187 1 0 -runnel%1:17:00:: 09415938 1 0 -runner%1:05:00:: 02577164 10 0 -runner%1:06:00:: 04120093 9 0 -runner%1:06:01:: 04120266 8 0 -runner%1:18:00:: 10542888 6 0 -runner%1:18:01:: 10615334 1 3 -runner%1:18:02:: 09841696 4 1 -runner%1:18:03:: 10542761 2 1 -runner%1:18:04:: 10542608 3 1 -runner%1:18:05:: 09834378 7 0 -runner%1:20:00:: 13127843 5 0 -runner-up%1:18:00:: 10543057 1 2 -runner-up_finish%1:11:00:: 07354504 1 0 -runner_bean%1:13:00:: 07728391 2 0 -runner_bean%1:20:00:: 12557681 1 0 -runniness%1:07:00:: 04937043 1 0 -running%1:04:00:: 00440039 5 0 -running%1:04:01:: 00293916 2 2 -running%1:04:02:: 01136985 4 0 -running%1:04:03:: 00558883 1 2 -running%1:26:00:: 14009481 3 0 -running%3:00:00:: 01241757 3 0 -running%3:00:01:: 01240413 4 0 -running%3:00:02:: 01240591 1 1 -running%5:00:00:continual:00 00592754 2 1 -running%5:00:00:functioning:00 01091728 6 0 -running%5:00:00:lengthwise:00 01445438 5 0 -running_away%1:04:00:: 00046177 1 0 -running_back%1:18:00:: 10543161 1 0 -running_blackberry%1:20:00:: 12654387 1 0 -running_board%1:06:00:: 04120339 1 1 -running_game%1:04:00:: 00558883 1 0 -running_hand%1:10:00:: 06350274 1 0 -running_head%1:10:00:: 06345131 1 0 -running_headline%1:10:00:: 06345131 1 0 -running_light%1:06:00:: 04214649 1 0 -running_mate%1:18:00:: 10543420 1 0 -running_noose%1:06:00:: 03829563 1 0 -running_pine%1:20:00:: 13223485 1 0 -running_play%1:04:00:: 00558883 1 0 -running_pop%1:20:00:: 12384839 1 0 -running_postman%1:20:00:: 12537253 1 0 -running_shoe%1:06:00:: 04120489 1 0 -running_start%1:11:00:: 07326262 2 0 -running_start%1:11:01:: 07329833 1 0 -running_stitch%1:06:00:: 04120593 1 0 -running_suit%1:06:00:: 04120695 1 0 -running_time%1:28:00:: 15295778 1 2 -running_title%1:10:00:: 06345441 1 0 -runny%5:00:00:liquid:00 02261746 1 0 -runoff%1:04:00:: 00183357 2 0 -runoff%1:11:00:: 07407272 1 2 -runproof%5:00:00:impervious:00 01775280 1 0 -runt%1:18:00:: 10543544 1 0 -runtime_error%1:11:00:: 07300316 1 0 -runtiness%1:07:00:: 05107495 1 0 -runty%5:00:00:short:03 02387790 1 0 -runty%5:00:00:small:00 01394558 2 0 -runup%1:11:00:: 07414370 1 0 -runway%1:06:00:: 04120842 4 0 -runway%1:06:01:: 04120998 3 0 -runway%1:06:02:: 04463679 1 0 -runway%1:06:03:: 04121142 2 0 -runyon%1:18:00:: 11273907 1 0 -rupee%1:23:01:: 13703804 6 0 -rupee%1:23:02:: 13704274 5 0 -rupee%1:23:03:: 13704643 4 0 -rupee%1:23:04:: 13704897 3 0 -rupee%1:23:05:: 13705153 2 0 -rupee%1:23:06:: 13705415 1 0 -rupert%1:18:00:: 11274103 1 0 -rupert_brooke%1:18:00:: 10865990 1 0 -rupert_murdoch%1:18:00:: 11196934 1 0 -rupestral%3:01:00:: 03133994 1 0 -rupestral_plant%1:20:00:: 13124019 1 0 -rupestrine_plant%1:20:00:: 13124019 1 0 -rupiah%1:23:00:: 13705674 1 0 -rupicapra%1:05:00:: 02419217 1 0 -rupicapra_rupicapra%1:05:00:: 02419336 1 0 -rupicola%1:05:00:: 01550953 1 0 -rupicola_peruviana%1:05:00:: 01551300 1 0 -rupicola_rupicola%1:05:00:: 01551080 1 0 -rupicolous%3:01:00:: 03133994 1 0 -rupicolous_plant%1:20:00:: 13124019 1 0 -ruptiliocarpon%1:20:00:: 12701901 1 0 -ruptiliocarpon_caracolito%1:20:00:: 12702124 1 0 -rupture%1:04:00:: 00376715 3 0 -rupture%1:11:00:: 07313814 2 0 -rupture%1:26:00:: 14295248 1 0 -rupture%2:35:00:: 01573515 1 1 -ruptured_intervertebral_disc%1:26:00:: 14296579 1 0 -rupturewort%1:20:00:: 11810728 1 0 -rural%3:00:00:: 02050452 1 18 -rural%3:01:01:: 02790726 2 7 -rural_area%1:15:00:: 08644722 1 3 -rural_free_delivery%1:10:00:: 06265142 1 0 -ruralism%1:07:00:: 04920237 2 0 -ruralism%1:10:00:: 07154666 1 0 -ruralist%1:18:00:: 10543713 1 0 -ruralist%1:18:01:: 09971135 2 0 -rurality%1:07:00:: 04920237 1 0 -rurally%4:02:00:: 00143550 1 0 -ruritania%1:09:00:: 05631681 1 0 -ruritanian%1:18:00:: 09603667 1 0 -ruritanian%3:01:00:: 02790900 1 0 -rus%1:15:00:: 09002630 1 0 -ruscaceae%1:20:00:: 12464903 1 0 -ruscus%1:20:00:: 12462951 1 0 -ruscus_aculeatus%1:20:00:: 12463134 1 0 -ruse%1:04:00:: 00172598 1 0 -rush%1:04:00:: 00555648 1 8 -rush%1:04:01:: 00560293 7 0 -rush%1:11:00:: 07440240 2 2 -rush%1:11:01:: 07436352 6 0 -rush%1:12:00:: 07528470 5 0 -rush%1:18:00:: 11274269 4 0 -rush%1:20:00:: 11743294 3 0 -rush%2:30:00:: 00459498 4 1 -rush%2:30:01:: 00459296 3 2 -rush%2:33:00:: 01119950 2 6 -rush%2:36:00:: 01644522 7 0 -rush%2:38:00:: 02058994 1 20 -rush%2:38:01:: 02059770 5 0 -rush%2:38:10:: 02059462 6 0 -rush%5:00:00:hurried:00 01271604 2 0 -rush%5:00:00:unreserved:02 01988829 1 0 -rush-grass%1:20:00:: 12140903 1 0 -rush_along%2:38:00:: 02058994 1 0 -rush_aster%1:20:00:: 11936707 1 0 -rush_away%2:38:00:: 02059675 1 0 -rush_candle%1:06:00:: 04121228 1 0 -rush_family%1:20:00:: 11743109 1 0 -rush_grass%1:20:00:: 12140903 1 0 -rush_hour%1:28:00:: 15229144 1 1 -rush_nut%1:20:00:: 12150969 1 0 -rush_off%2:38:00:: 02059675 1 2 -rush_out%2:38:00:: 01966501 1 2 -rush_rose%1:20:00:: 12376240 1 0 -rushdie%1:18:00:: 11274454 1 0 -rushed%5:00:00:hurried:00 01271604 1 0 -rusher%1:18:00:: 10543795 3 0 -rusher%1:18:01:: 10543937 2 0 -rusher%1:18:02:: 10544067 1 0 -rushing%1:04:00:: 00560293 1 5 -rushing%1:04:01:: 00555648 2 1 -rushlight%1:06:00:: 04121228 1 0 -rushlike%5:00:00:grassy:00 00209988 1 0 -rushmore%1:17:00:: 09417668 1 0 -rushy%5:00:00:wooded:00 02574188 1 0 -rusk%1:13:00:: 07689842 1 0 -ruskin%1:18:00:: 11274714 1 0 -russel_crouse%1:18:00:: 10916887 1 0 -russell%1:18:00:: 11274812 7 0 -russell%1:18:01:: 11275035 6 0 -russell%1:18:02:: 11275170 5 0 -russell%1:18:03:: 11275344 4 0 -russell%1:18:04:: 11275495 3 0 -russell%1:18:05:: 11275636 2 0 -russell%1:18:06:: 11275772 1 0 -russell's_body%1:17:00:: 09417926 1 0 -russet%1:06:00:: 04121342 1 1 -russet%5:00:00:chromatic:00 00382792 1 0 -russet_scab%1:26:00:: 14281549 1 0 -russia%1:15:00:: 09003284 1 8 -russia%1:15:01:: 09007723 2 1 -russia%1:15:02:: 09002814 3 1 -russia%1:15:04:: 09006413 4 0 -russia_leather%1:27:00:: 14760965 1 0 -russian%1:10:00:: 06944348 2 4 -russian%1:18:00:: 09728403 1 6 -russian%3:01:00:: 02957276 1 22 -russian-speaking%5:00:00:communicative:00 00499730 1 0 -russian_agency%1:14:00:: 08485830 1 0 -russian_almond%1:20:00:: 12650229 1 0 -russian_bank%1:04:00:: 00496760 1 0 -russian_cactus%1:20:00:: 11834890 1 0 -russian_capital%1:15:00:: 09004068 1 0 -russian_dandelion%1:20:00:: 12024805 1 0 -russian_dressing%1:13:00:: 07834872 1 0 -russian_federation%1:15:00:: 09006413 1 0 -russian_mayonnaise%1:13:00:: 07834872 1 0 -russian_monetary_unit%1:23:00:: 13698949 1 0 -russian_olive%1:20:00:: 12326369 1 0 -russian_orthodox%3:01:00:: 02953598 1 0 -russian_orthodox_church%1:14:00:: 08086821 1 0 -russian_revolution%1:04:01:: 01307754 2 0 -russian_revolution%1:04:02:: 01308008 1 0 -russian_river%1:17:00:: 09418059 1 0 -russian_roulette%1:04:00:: 00190931 1 0 -russian_soviet_federated_socialist_republic%1:15:00:: 09007723 1 0 -russian_thistle%1:20:00:: 11834890 1 0 -russian_tumbleweed%1:20:00:: 11834890 1 0 -russian_vine%1:20:00:: 12601106 1 0 -russian_wolfhound%1:05:00:: 02090622 1 0 -russo-japanese_war%1:04:00:: 01308260 1 0 -russula%1:20:00:: 13009780 1 0 -russulaceae%1:20:00:: 13010064 1 0 -rust%1:20:00:: 13063269 4 0 -rust%1:22:00:: 13552270 3 0 -rust%1:26:02:: 14277655 2 0 -rust%1:27:00:: 14889479 1 0 -rust%2:30:00:: 00273963 1 2 -rust%2:30:01:: 00274283 2 0 -rust%2:30:02:: 00239614 3 0 -rust%5:00:00:chromatic:00 00382874 1 0 -rust-brown%5:00:00:chromatic:00 00382874 1 0 -rust-colored%5:00:00:colored:00 00400737 1 0 -rust-free%5:00:00:rustless:00 02053392 1 0 -rust-red%5:00:00:chromatic:00 00382990 1 0 -rust-resistant%5:00:00:rustless:00 02053553 1 0 -rust_fungus%1:20:00:: 13063269 1 0 -rust_inhibitor%1:27:00:: 14724916 1 0 -rust_mite%1:05:00:: 01781875 1 0 -rustbelt%1:15:00:: 08565006 1 0 -rusted%3:00:00:: 02052983 1 1 -rustic%1:18:00:: 10544232 1 0 -rustic%5:00:00:provincial:00 00636891 2 1 -rustic%5:00:00:rural:00 02051013 3 0 -rustic%5:00:02:rural:00 02051616 1 1 -rusticate%2:30:00:: 00535669 5 0 -rusticate%2:35:00:: 01555326 4 0 -rusticate%2:41:00:: 02504416 2 0 -rusticate%2:41:01:: 02502232 3 0 -rusticate%2:42:00:: 02616542 1 0 -rustication%1:04:00:: 00212551 3 0 -rustication%1:04:01:: 00208694 5 0 -rustication%1:04:02:: 00913274 2 0 -rustication%1:04:03:: 00209301 4 0 -rustication%1:26:00:: 14579215 1 0 -rusticism%1:10:00:: 07154666 1 0 -rusticity%1:07:00:: 04816125 1 0 -rustiness%1:09:00:: 05648756 2 0 -rustiness%1:26:00:: 14579365 1 0 -rusting%1:22:00:: 13552270 1 0 -rustle%1:11:00:: 07392783 1 1 -rustle%2:39:00:: 02182662 1 7 -rustle%2:40:00:: 02277138 2 3 -rustle%2:40:02:: 02270090 3 0 -rustler%1:18:00:: 10544480 1 3 -rustless%3:00:00:: 02053253 1 0 -rustling%1:04:00:: 00966504 1 4 -rustling%1:11:00:: 07392783 2 1 -rustling%5:00:00:soft:04 01456221 1 0 -rustproof%5:00:00:rustless:00 02053460 1 0 -rustproofed%5:00:00:rustless:00 02053460 1 0 -rusty%5:00:00:chromatic:00 00382874 2 1 -rusty%5:00:00:old:01 01639891 4 0 -rusty%5:00:00:rusted:00 02053094 1 3 -rusty%5:00:00:unskilled:00 02230205 3 0 -rusty-brown%5:00:00:chromatic:00 00383088 1 0 -rusty-red%5:00:00:chromatic:00 00382990 1 0 -rusty_blackbird%1:05:00:: 01574801 1 0 -rusty_grackle%1:05:00:: 01574801 1 0 -rusty_rig%1:20:00:: 12403276 1 0 -rusty_woodsia%1:20:00:: 13202125 1 0 -rut%1:04:00:: 01026744 2 1 -rut%1:25:00:: 13894154 1 1 -rut%1:26:00:: 14038264 3 0 -rut%2:35:00:: 01277431 2 0 -rut%2:42:00:: 02724705 1 0 -ruta%1:20:00:: 12707040 1 0 -ruta_graveolens%1:20:00:: 12707199 1 0 -rutabaga%1:13:00:: 07736087 1 1 -rutabaga%1:20:00:: 11877860 2 0 -rutabaga_plant%1:20:00:: 11877860 1 0 -rutaceae%1:20:00:: 12706644 1 0 -ruth%1:10:00:: 06434368 4 0 -ruth%1:12:00:: 07553964 3 0 -ruth%1:18:00:: 11276100 1 0 -ruth%1:18:01:: 11275952 2 0 -ruth_benedict%1:18:00:: 10844401 1 0 -ruth_fulton%1:18:00:: 10844401 1 0 -ruth_saint_denis%1:18:00:: 11313911 1 0 -ruth_st._denis%1:18:00:: 11313911 1 0 -ruthenium%1:27:00:: 14653242 1 0 -rutherford%1:18:00:: 11276285 3 0 -rutherford%1:18:01:: 11276549 2 0 -rutherford%1:23:00:: 13646223 1 0 -rutherford_atom%1:09:00:: 06103746 1 0 -rutherford_b._hayes%1:18:00:: 11036140 1 0 -rutherford_birchard_hayes%1:18:00:: 11036140 1 0 -rutherfordium%1:27:00:: 14653416 1 0 -ruthful%5:00:00:penitent:00 01743506 1 0 -ruthfulness%1:12:00:: 07535209 1 0 -ruthless%5:00:00:merciless:00 01508086 1 1 -ruthlessly%4:02:00:: 00445763 1 0 -ruthlessness%1:07:00:: 04831264 1 1 -ruthlessness%1:12:00:: 07506382 2 0 -rutile%1:27:00:: 15008399 1 0 -rutilus%1:05:00:: 01442335 1 0 -rutilus_rutilus%1:05:00:: 01442450 1 0 -rutland%1:15:00:: 09148871 1 0 -rutledge%1:18:00:: 11276676 1 0 -rutted%5:00:00:furrowed:00 02244361 1 1 -ruttish%5:00:00:sexy:00 02131668 1 0 -rutty%5:00:00:furrowed:00 02244361 1 0 -ruvettus_pretiosus%1:05:00:: 02622712 1 0 -rv%1:06:00:: 04065272 1 0 -rwanda%1:15:00:: 08815046 1 0 -rwanda_franc%1:23:00:: 13678589 1 0 -rwandan%1:18:00:: 09749509 1 0 -rwandan%3:01:00:: 03112486 1 0 -rwandese_republic%1:15:00:: 08815046 1 0 -rya%1:06:00:: 04121426 1 0 -rya_rug%1:06:00:: 04121426 1 0 -rydberg%1:23:00:: 13643894 1 0 -rydberg's_penstemon%1:20:00:: 12888016 1 0 -rydberg_constant%1:23:00:: 13643894 1 0 -rydberg_unit%1:23:00:: 13643894 1 0 -rye%1:13:00:: 07907429 3 0 -rye%1:20:00:: 12134025 2 0 -rye%1:20:02:: 12157179 1 0 -rye_bread%1:13:00:: 07685730 1 0 -rye_ergot%1:20:00:: 12965951 1 0 -rye_grass%1:20:00:: 12124627 1 0 -rye_whiskey%1:13:00:: 07907429 1 0 -rye_whisky%1:13:00:: 07907429 1 0 -ryegrass%1:20:00:: 12124627 1 0 -rynchopidae%1:05:00:: 02043497 1 0 -rynchops%1:05:00:: 02043659 1 0 -rypticus%1:05:00:: 02570312 1 0 -ryukyu_islands%1:15:00:: 08924691 1 0 -ryukyuan%1:10:00:: 06929459 2 0 -ryukyuan%1:18:00:: 09718518 1 0 -s%1:07:00:: 05012585 6 0 -s%1:10:00:: 06833112 5 0 -s%1:23:00:: 13637240 4 0 -s%1:24:00:: 13833375 3 0 -s%1:27:00:: 14656219 2 0 -s%1:28:00:: 15235126 1 0 -s-shape%1:25:00:: 13868515 1 0 -s-shaped%5:00:00:formed:00 02150308 1 0 -s._s._van_dine%1:18:00:: 11399123 1 0 -s._smith_stevens%1:18:00:: 11317519 1 0 -s.t.p.%1:23:00:: 13780339 1 0 -s.u.v.%1:06:00:: 04285965 1 0 -s/n%1:24:00:: 13825664 1 0 -s_wrench%1:06:00:: 04374521 1 0 -sa%1:14:00:: 08212146 1 0 -sa_node%1:08:00:: 05389460 1 0 -saale%1:17:00:: 09418169 1 0 -saale_glaciation%1:22:00:: 13487791 1 0 -saale_river%1:17:00:: 09418169 1 0 -saame%1:10:00:: 06959427 2 0 -saame%1:18:00:: 09720033 1 0 -saami%1:10:00:: 06959427 2 0 -saami%1:18:00:: 09720033 1 0 -saarinen%1:18:01:: 11277096 1 0 -saarinen%1:18:02:: 11276971 2 0 -saba%1:15:00:: 08749167 1 0 -sabah%1:15:00:: 08964288 1 0 -sabahan%1:18:00:: 09722064 1 0 -sabahan%3:01:00:: 03112615 1 0 -sabal%1:20:00:: 12597006 1 0 -sabal_palmetto%1:20:00:: 12597134 1 0 -sabaoth%1:14:00:: 08184052 1 0 -sabaton%1:06:00:: 04259468 1 0 -sabayon%1:13:00:: 07621497 1 0 -sabbat%1:14:00:: 08398580 1 0 -sabbatarian%1:18:00:: 10544615 1 0 -sabbatarian%3:01:00:: 03112747 1 0 -sabbath%1:28:00:: 15164750 1 1 -sabbath_school%1:14:00:: 08412492 1 0 -sabbatia%1:20:00:: 12298165 1 0 -sabbatia_angularis%1:20:00:: 12298395 1 0 -sabbatia_campestris%1:20:00:: 12298637 1 0 -sabbatia_stellaris%1:20:00:: 12298395 1 0 -sabbatic%3:01:00:: 03112989 1 0 -sabbatical%1:28:00:: 15139849 1 0 -sabbatical%3:01:00:: 03112867 2 0 -sabbatical%3:01:01:: 03112989 1 0 -sabbatical_leave%1:28:00:: 15139849 1 0 -sabbatical_year%1:28:00:: 15139983 1 0 -sabbatum%1:28:00:: 15164570 1 0 -sabellian%1:10:00:: 06962454 1 0 -saber%1:06:00:: 02987492 2 0 -saber%1:06:01:: 04121511 1 0 -saber%2:35:00:: 01326730 2 0 -saber%2:35:01:: 01554622 1 0 -saber-toothed%5:00:00:toothed:00 02439076 1 0 -saber-toothed_tiger%1:05:00:: 02130545 1 0 -saber_rattling%1:04:00:: 00956172 1 0 -saber_saw%1:06:00:: 04121728 1 0 -sabertooth%1:05:00:: 02130545 1 0 -sabertoothed%5:00:00:toothed:00 02439076 1 0 -sabicu%1:20:01:: 11763142 2 0 -sabicu%1:20:02:: 11763340 1 0 -sabicu_wood%1:20:00:: 11763340 1 0 -sabin%1:18:00:: 11277279 2 0 -sabin%1:23:00:: 13610815 1 0 -sabin_vaccine%1:06:00:: 04122011 1 0 -sabine%1:17:00:: 09418331 1 1 -sabine%1:18:00:: 09717233 2 0 -sabine%3:01:00:: 02791058 1 0 -sabine_pine%1:20:00:: 11618525 1 0 -sabine_river%1:17:00:: 09418331 1 0 -sabinea%1:20:00:: 12568865 1 0 -sabinea_carinalis%1:20:00:: 12569037 1 0 -sable%1:05:00:: 02450426 5 0 -sable%1:06:00:: 04122262 4 0 -sable%1:06:01:: 04122349 1 2 -sable%1:07:00:: 04960582 3 0 -sable%1:27:00:: 14765946 2 0 -sable%5:00:00:achromatic:00 00391487 1 0 -sable's_hair_pencil%1:06:00:: 04122349 1 0 -sable_antelope%1:05:00:: 02425887 1 0 -sable_brush%1:06:00:: 04122349 1 0 -sable_coat%1:06:00:: 04122492 1 0 -sabot%1:06:00:: 03047690 2 0 -sabot%1:06:01:: 04122578 1 0 -sabotage%1:04:00:: 01244895 1 2 -sabotage%2:41:00:: 02543607 1 0 -saboteur%1:18:00:: 10544748 1 0 -saboteur%1:18:01:: 10087255 2 0 -sabra%1:18:00:: 09715974 1 0 -sabre%1:06:00:: 02987492 2 0 -sabre%1:06:01:: 04121511 1 0 -sabre%2:35:00:: 01326730 2 0 -sabre%2:35:01:: 01554622 1 0 -sabre-toothed%5:00:00:toothed:00 02439076 1 0 -sabre_rattling%1:04:00:: 00956172 1 0 -sac%1:08:00:: 05515670 4 0 -sac%1:18:00:: 09667715 3 0 -sac%1:20:00:: 13092722 2 0 -sac%1:25:00:: 13914473 1 0 -sac_fungus%1:20:00:: 13023134 1 0 -sacagawea%1:18:00:: 11277500 1 0 -sacajawea%1:18:00:: 11277500 1 0 -saccade%1:04:00:: 00338271 1 0 -saccade%1:04:01:: 00335988 2 0 -saccadic%3:01:00:: 02791161 1 0 -saccharase%1:27:00:: 14921622 1 0 -saccharic_acid%1:27:00:: 14739734 1 0 -saccharide%1:27:00:: 14792703 1 0 -saccharify%2:30:00:: 00564514 2 0 -saccharify%2:39:00:: 02195951 1 0 -saccharin%1:13:00:: 07859142 1 0 -saccharine%5:00:00:sweet:02 02368566 1 0 -saccharinity%1:07:00:: 04994614 1 0 -saccharomyces%1:20:00:: 13025421 1 0 -saccharomyces_cerevisiae%1:20:00:: 13025854 1 0 -saccharomyces_ellipsoides%1:20:00:: 13026015 1 0 -saccharomycetaceae%1:20:00:: 13025197 1 0 -saccharose%1:27:00:: 15062778 1 0 -saccharum%1:20:00:: 12132299 1 0 -saccharum_bengalense%1:20:00:: 12133151 1 0 -saccharum_munja%1:20:00:: 12133151 1 0 -saccharum_officinarum%1:20:00:: 12132502 1 0 -sacco%1:18:00:: 11277680 1 0 -sacculate%3:01:00:: 02791308 1 0 -sacculated%3:01:00:: 02791308 1 0 -saccule%1:08:00:: 05322570 1 0 -sacculus%1:08:00:: 05322570 1 0 -sacerdotal%3:01:00:: 02899666 2 0 -sacerdotal%3:01:02:: 02899912 1 0 -sacerdotalism%1:09:00:: 05951820 1 0 -saceur%1:14:00:: 08175700 1 0 -sachem%1:18:00:: 10544940 2 0 -sachem%1:18:01:: 10545087 1 0 -sachet%1:06:00:: 04122685 1 0 -sachs_disease%1:26:00:: 14169364 1 0 -sachsen%1:15:00:: 08769179 1 0 -sack%1:04:00:: 00216174 9 0 -sack%1:04:01:: 00967446 8 0 -sack%1:06:00:: 04122825 1 1 -sack%1:06:01:: 03013438 7 0 -sack%1:06:02:: 03482252 6 0 -sack%1:06:03:: 04123026 5 0 -sack%1:13:00:: 07897975 4 0 -sack%1:23:00:: 13769206 3 0 -sack%1:25:00:: 13914473 2 0 -sack%2:35:00:: 01486151 4 0 -sack%2:40:00:: 02345048 1 1 -sack%2:40:01:: 02291258 3 0 -sack%2:41:00:: 02402825 2 0 -sack_coat%1:06:00:: 04123448 1 0 -sack_out%2:29:00:: 00017865 1 0 -sack_race%1:11:00:: 07463470 1 0 -sack_up%2:40:00:: 02291258 1 0 -sackbut%1:06:00:: 04123123 1 0 -sackcloth%1:06:00:: 04123228 2 0 -sackcloth%1:06:01:: 04123317 1 0 -sackcloth_and_ashes%1:10:00:: 07214150 1 0 -sacked%5:00:00:destroyed:00 00735709 1 0 -sackful%1:23:00:: 13769206 1 0 -sacking%1:04:00:: 00216174 2 0 -sacking%1:06:00:: 04123567 1 0 -saclant%1:14:00:: 08175233 1 0 -saclike%5:00:00:concave:00 00536304 1 0 -sacque%1:06:00:: 04123026 1 0 -sacral%3:01:00:: 03113164 1 0 -sacral%5:00:00:sacred:00 02056663 2 0 -sacral_nerve%1:08:00:: 05569835 1 0 -sacral_plexus%1:08:00:: 05508534 1 0 -sacral_vein%1:08:00:: 05379635 1 0 -sacral_vertebra%1:08:00:: 05589596 1 0 -sacrament%1:04:00:: 01034925 1 1 -sacrament_of_the_eucharist%1:04:00:: 01035853 1 0 -sacramental%3:01:00:: 02931227 1 0 -sacramental_manduction%1:04:00:: 01036333 1 0 -sacramental_oil%1:06:00:: 03026350 1 0 -sacramental_wine%1:13:00:: 07893425 1 0 -sacramento%1:15:00:: 09064966 1 1 -sacramento_mountains%1:17:00:: 09418484 1 0 -sacramento_river%1:17:00:: 09418629 1 0 -sacramento_sturgeon%1:05:00:: 02640626 1 0 -sacred%3:00:00:: 02055062 1 4 -sacred%5:00:00:dedicated:00 00519823 5 0 -sacred%5:00:00:holy:00 02054310 3 1 -sacred%5:00:00:worthy:00 02587261 2 1 -sacred%5:00:02:holy:00 02054610 4 0 -sacred_college%1:14:00:: 08085824 1 0 -sacred_cow%1:18:00:: 10545187 1 0 -sacred_fig%1:20:00:: 12402596 1 0 -sacred_ibis%1:05:00:: 02006364 1 0 -sacred_lotus%1:20:00:: 11717399 1 0 -sacred_mushroom%1:20:00:: 11849467 1 0 -sacred_scripture%1:10:00:: 06430385 1 0 -sacred_text%1:10:00:: 06429590 1 0 -sacred_trinity%1:18:00:: 09536789 1 0 -sacred_writing%1:10:00:: 06429590 1 1 -sacredly%4:02:00:: 00178460 1 0 -sacredness%1:07:00:: 04855332 1 0 -sacrifice%1:04:00:: 00227595 4 0 -sacrifice%1:04:01:: 00205891 1 7 -sacrifice%1:04:02:: 00130846 5 0 -sacrifice%1:11:00:: 07340895 2 1 -sacrifice%1:21:00:: 13328073 3 0 -sacrifice%2:35:00:: 01326093 2 1 -sacrifice%2:40:00:: 02343595 1 10 -sacrifice%2:40:01:: 02325558 4 0 -sacrifice%2:40:02:: 02343961 3 0 -sacrifice_fly%1:04:00:: 00130987 1 1 -sacrifice_operation%1:04:00:: 00731756 1 0 -sacrificeable%5:00:00:expendable:00 00932918 1 0 -sacrificer%1:18:00:: 10545296 1 0 -sacrificial%3:01:00:: 03113271 1 0 -sacrilege%1:04:00:: 00746587 1 2 -sacrilegious%5:00:00:irreverent:00 02012748 1 0 -sacrilegiously%4:02:00:: 00126113 1 0 -sacrilegiousness%1:07:00:: 04856182 1 0 -sacristan%1:18:00:: 10585217 1 0 -sacristy%1:06:00:: 04532504 1 0 -sacrosanct%5:00:00:sacred:00 02055900 1 0 -sacrum%1:08:00:: 05279407 1 0 -sad%3:00:00:: 01361863 1 9 -sad%5:00:00:bad:00 01126841 3 0 -sad%5:00:00:sorrowful:00 01366277 2 0 -sad-faced%5:00:00:faced:00 00236086 1 0 -sad_sack%1:18:00:: 09879744 1 0 -sadat%1:18:00:: 11277900 1 0 -saddam%1:18:00:: 11068401 1 0 -saddam's_martyrs%1:14:00:: 08207672 1 0 -saddam_bin_hussein_at-takriti%1:18:00:: 11068401 1 0 -saddam_hussein%1:18:00:: 11068401 1 0 -sadden%2:37:00:: 01813393 2 0 -sadden%2:37:01:: 01813053 1 1 -saddhu%1:18:00:: 10545682 1 0 -saddle%1:05:00:: 01895219 6 0 -saddle%1:06:00:: 04123740 1 14 -saddle%1:06:02:: 02835915 5 0 -saddle%1:06:03:: 04123980 4 0 -saddle%1:13:00:: 07667636 3 0 -saddle%1:17:00:: 09418810 2 0 -saddle%2:32:00:: 00750532 3 1 -saddle%2:35:01:: 01492422 1 1 -saddle%2:35:10:: 01490814 2 1 -saddle-shaped%5:00:00:formed:00 02149597 1 0 -saddle-sore%5:00:00:painful:00 01712657 1 0 -saddle_blanket%1:06:00:: 04124202 1 0 -saddle_block_anaesthesia%1:26:00:: 14029686 1 0 -saddle_block_anesthesia%1:26:00:: 14029686 1 0 -saddle_feather%1:05:00:: 01898593 1 0 -saddle_hackle%1:05:00:: 01898593 1 1 -saddle_horn%1:06:00:: 03536931 1 0 -saddle_horse%1:05:00:: 02377703 1 0 -saddle_of_lamb%1:13:00:: 07667778 1 0 -saddle_oxford%1:06:00:: 04124370 1 0 -saddle_oyster%1:05:00:: 01962506 1 0 -saddle_roof%1:06:00:: 03409591 1 0 -saddle_seat%1:06:00:: 04124573 1 0 -saddle_shoe%1:06:00:: 04124370 1 0 -saddle_soap%1:06:00:: 04124764 1 0 -saddle_sore%1:26:00:: 14184506 2 0 -saddle_sore%1:26:01:: 14275240 1 0 -saddle_stitch%1:06:00:: 04124887 1 0 -saddleback%1:06:00:: 03409591 2 0 -saddleback%1:17:00:: 09418810 1 0 -saddleback_roof%1:06:00:: 03409591 1 0 -saddlebag%1:06:00:: 04124098 1 3 -saddlebill%1:05:00:: 02004131 1 0 -saddlebow%1:06:00:: 03980178 1 0 -saddlecloth%1:06:00:: 04124202 1 0 -saddled%3:00:00:: 00460386 1 0 -saddled%5:00:00:burdened:00 00870127 2 0 -saddled-shaped_false_morel%1:20:00:: 13038376 1 0 -saddler%1:18:00:: 10545415 1 0 -saddlery%1:06:00:: 04295081 1 0 -saddlery%1:06:01:: 04124488 2 0 -sadducean%3:01:00:: 02791630 1 0 -sadducee%1:18:00:: 10545524 1 0 -sade%1:18:00:: 11278120 1 0 -sadhe%1:10:00:: 06838543 1 0 -sadhu%1:18:00:: 10545682 1 0 -sadi_carnot%1:18:00:: 10883380 1 0 -sadism%1:12:00:: 07493830 1 2 -sadist%1:18:00:: 10545792 1 0 -sadistic%3:00:00:: 02057535 1 1 -sadleria%1:20:00:: 13185820 1 0 -sadly%4:02:00:: 00042614 1 7 -sadly%4:02:01:: 00093270 3 0 -sadly%4:02:03:: 00404501 2 2 -sadness%1:07:00:: 04631470 3 0 -sadness%1:12:00:: 07532440 1 2 -sadness%1:26:00:: 13989051 2 0 -sadomasochism%1:12:00:: 07494018 1 0 -sadomasochist%1:18:00:: 10545940 1 0 -sadomasochistic%3:01:00:: 02791483 1 0 -saek%1:10:00:: 06936540 1 0 -safaqis%1:15:00:: 09038272 1 0 -safar%1:28:00:: 15217443 1 0 -safari%1:04:00:: 00309906 1 0 -safari_park%1:15:00:: 08645420 1 0 -safe%1:06:00:: 04125021 1 6 -safe%1:06:01:: 03088164 3 0 -safe%1:06:02:: 04125116 2 0 -safe%3:00:01:: 02057829 1 25 -safe%3:00:02:: 02061307 3 0 -safe%5:00:00:sound:00 02273643 4 0 -safe%5:00:00:unadventurous:00 00066933 2 1 -safe-conduct%1:10:00:: 06691267 1 1 -safe-deposit%1:06:00:: 04125257 1 0 -safe-deposit_box%1:06:00:: 04125257 1 0 -safe_and_sound%5:00:00:safe:01 02058656 1 0 -safe_harbor%1:04:00:: 00176766 1 0 -safe_house%1:06:00:: 04125541 1 0 -safe_period%1:28:00:: 15296039 1 0 -safe_sex%1:04:00:: 00844048 1 0 -safebreaker%1:18:00:: 10546062 1 1 -safecracker%1:18:00:: 10546062 1 0 -safeguard%1:04:00:: 00822970 1 1 -safeguard%1:10:00:: 06691267 2 0 -safeguard%2:33:00:: 01138102 1 2 -safeguard%2:38:00:: 02026327 2 0 -safehold%1:06:00:: 04125466 1 0 -safekeeping%1:04:00:: 00818466 1 0 -safely%4:02:00:: 00154213 1 6 -safeness%1:07:00:: 04856308 1 0 -safety%1:04:00:: 00131090 4 1 -safety%1:04:01:: 00188620 6 0 -safety%1:06:00:: 03464467 3 1 -safety%1:06:01:: 03088164 5 0 -safety%1:15:00:: 08643933 2 4 -safety%1:26:00:: 14538472 1 13 -safety-deposit%1:06:00:: 04125257 1 0 -safety-related%5:00:00:protective:00 01889084 1 0 -safety_arch%1:06:00:: 04125692 1 0 -safety_belt%1:06:00:: 04125853 1 0 -safety_bicycle%1:06:00:: 04126066 1 0 -safety_bike%1:06:00:: 04126066 1 0 -safety_blitz%1:04:00:: 00976085 1 0 -safety_bolt%1:06:00:: 04126244 1 0 -safety_catch%1:06:00:: 04126373 1 0 -safety_curtain%1:06:00:: 04126541 1 0 -safety_deposit_box%1:06:00:: 04125257 1 0 -safety_device%1:06:00:: 03464467 1 0 -safety_factor%1:24:00:: 13825490 1 0 -safety_feature%1:09:00:: 05852430 1 0 -safety_fuse%1:06:00:: 04126659 1 0 -safety_fuse%1:06:01:: 03407369 2 0 -safety_glass%1:27:00:: 14882370 1 0 -safety_harness%1:06:00:: 04125853 1 0 -safety_hat%1:06:00:: 03492922 1 0 -safety_island%1:06:00:: 04466169 1 0 -safety_isle%1:06:00:: 04466169 1 0 -safety_lamp%1:06:00:: 04126852 1 0 -safety_lock%1:06:00:: 04126373 1 0 -safety_lock%1:06:01:: 04126244 2 0 -safety_margin%1:07:00:: 05120835 1 0 -safety_match%1:06:00:: 04126980 1 0 -safety_net%1:06:00:: 04127117 2 0 -safety_net%1:10:00:: 06686467 1 0 -safety_nut%1:06:00:: 03684338 1 0 -safety_pin%1:06:00:: 04127249 1 0 -safety_rail%1:06:00:: 04127395 1 0 -safety_razor%1:06:00:: 04127521 1 0 -safety_squeeze%1:04:00:: 00565051 1 0 -safety_squeeze_play%1:04:00:: 00565051 1 0 -safety_valve%1:06:00:: 04127633 1 0 -safety_zone%1:06:00:: 04466169 1 0 -safflower%1:20:00:: 11946051 1 0 -safflower_oil%1:13:00:: 07675040 2 0 -safflower_oil%1:20:00:: 11946433 1 0 -safflower_seed%1:20:00:: 11946313 1 0 -saffranine%1:27:00:: 15001500 1 0 -saffron%1:07:00:: 04966717 3 0 -saffron%1:13:00:: 07827284 2 0 -saffron%1:20:00:: 12416703 1 0 -saffron_crocus%1:20:00:: 12416703 1 0 -safranin%1:27:00:: 15001500 1 0 -safranine%1:27:00:: 15001500 1 0 -sag%1:25:00:: 13905572 1 0 -sag%2:38:00:: 01985524 1 5 -sag%2:38:01:: 01985757 2 1 -sag_down%2:38:00:: 01985757 1 1 -saga%1:10:00:: 06370522 1 2 -sagacious%5:00:00:politic:00 01813920 2 0 -sagacious%5:00:00:wise:00 02569558 1 1 -sagaciously%4:02:00:: 00272587 1 0 -sagaciousness%1:07:00:: 04890361 2 0 -sagaciousness%1:09:00:: 05614175 1 0 -sagacity%1:07:00:: 04890361 2 0 -sagacity%1:09:00:: 05614175 1 0 -sagamore%1:18:00:: 10544940 1 0 -sage%1:13:00:: 07820497 2 1 -sage%1:18:00:: 10546202 1 1 -sage%1:20:00:: 12864545 3 0 -sage%5:00:00:chromatic:00 00383189 2 0 -sage%5:00:00:wise:00 02570183 1 0 -sage-green%5:00:00:chromatic:00 00383189 1 0 -sage_brush%1:20:00:: 11929027 1 0 -sage_green%1:07:00:: 04967801 1 0 -sage_grouse%1:05:00:: 01797601 1 0 -sage_hen%1:05:00:: 01797601 1 0 -sage_willow%1:20:01:: 12728164 2 0 -sage_willow%1:20:02:: 12730544 1 0 -sagebrush%1:20:00:: 11929027 1 1 -sagebrush_buttercup%1:20:00:: 11721844 1 0 -sagebrush_lizard%1:05:00:: 01680983 1 0 -sagebrush_mariposa_tulip%1:20:00:: 12448361 1 0 -sagebrush_state%1:15:00:: 09110422 1 0 -sagely%4:02:00:: 00201570 1 0 -sagging%5:00:00:lax:01 02403944 1 1 -sagina%1:20:00:: 11814059 1 0 -saginaw%1:15:00:: 09101753 1 0 -sagitta%1:05:00:: 01924309 2 0 -sagitta%1:17:00:: 09418954 1 0 -sagittal%5:00:00:mesial:00 00779240 1 0 -sagittal_suture%1:08:00:: 05545047 1 0 -sagittaria%1:20:00:: 12612410 1 0 -sagittariidae%1:05:00:: 01618220 1 0 -sagittarius%1:05:00:: 01618356 4 0 -sagittarius%1:15:00:: 08687525 3 0 -sagittarius%1:17:00:: 09419112 2 0 -sagittarius%1:18:00:: 09753348 1 0 -sagittarius_serpentarius%1:05:00:: 01618503 1 0 -sagittarius_the_archer%1:15:00:: 08687525 1 0 -sagittate%5:00:00:simple:01 02170673 1 0 -sagittate-leaf%1:20:00:: 13159778 1 0 -sagittiform%5:00:00:simple:01 02170673 1 0 -sagittiform_leaf%1:20:00:: 13159778 1 0 -sago%1:27:00:: 15054607 1 0 -sago_fern%1:20:00:: 13187367 1 0 -sago_palm%1:20:01:: 12582665 1 0 -sago_palm%1:20:02:: 11601177 2 0 -saguaro%1:20:00:: 11844371 1 0 -sahaptin%1:10:00:: 06925305 2 0 -sahaptin%1:18:00:: 09668199 1 0 -sahaptino%1:18:00:: 09668199 1 0 -sahara%1:15:00:: 09172283 1 0 -sahara_desert%1:15:00:: 09172283 1 0 -saharan%1:10:00:: 06998530 1 0 -saharan%3:01:00:: 02791735 1 0 -sahib%1:18:00:: 09687775 1 0 -sahuaro%1:20:00:: 11844371 1 0 -said%5:00:00:same:02 02068730 1 2 -saida%1:15:00:: 08958212 1 0 -saiga%1:05:00:: 02426176 1 0 -saiga_tatarica%1:05:00:: 02426176 1 0 -saigon%1:15:00:: 09164241 1 0 -saigon_cinnamon%1:20:00:: 11705573 1 0 -sail%1:04:00:: 00312932 2 1 -sail%1:06:00:: 04127904 1 1 -sail%1:06:01:: 04128413 3 0 -sail%2:38:00:: 01945516 3 1 -sail%2:38:01:: 01869563 2 3 -sail%2:38:02:: 01846320 4 0 -sail%2:38:03:: 01846658 1 13 -sail_through%2:41:00:: 02522581 1 0 -sailboat%1:06:00:: 04128499 1 0 -sailcloth%1:06:00:: 04128710 1 0 -sailfish%1:05:00:: 02630281 2 0 -sailfish%1:13:00:: 07792383 1 0 -sailing%1:04:00:: 00313806 2 1 -sailing%1:04:01:: 00314469 1 2 -sailing%1:04:02:: 00057657 3 1 -sailing%1:04:03:: 00303495 4 0 -sailing-race%1:11:00:: 07459992 1 0 -sailing_boat%1:06:00:: 04128499 1 0 -sailing_master%1:18:00:: 10546428 1 0 -sailing_ship%1:06:00:: 04128837 1 0 -sailing_vessel%1:06:00:: 04128837 1 0 -sailing_warship%1:06:00:: 04129490 1 0 -sailmaker%1:18:00:: 10546561 1 0 -sailor%1:06:00:: 02859184 3 0 -sailor%1:18:00:: 10546633 1 3 -sailor%1:18:01:: 09861395 2 1 -sailor's-choice%1:05:01:: 02589316 2 0 -sailor's-choice%1:05:02:: 02592371 1 0 -sailor's_breastplate%1:06:00:: 04010057 1 0 -sailor_boy%1:18:00:: 09861395 1 0 -sailor_cap%1:06:00:: 04129688 1 0 -sailor_king%1:18:00:: 11389301 1 0 -sailor_suit%1:06:00:: 04129766 1 0 -sailors_choice%1:05:00:: 02589316 1 0 -sailplane%1:06:00:: 03439814 1 0 -sailplane%2:38:00:: 01942959 1 0 -sailplaning%1:04:00:: 00303495 1 0 -saimiri%1:05:00:: 02493974 1 0 -saimiri_sciureus%1:05:00:: 02494079 1 0 -sainfoin%1:20:00:: 12552309 1 0 -saint%1:18:00:: 10546850 2 2 -saint%1:18:01:: 10325243 3 1 -saint%1:18:03:: 10547145 1 3 -saint%2:32:00:: 00823129 2 0 -saint%2:37:00:: 01776383 1 0 -saint's_day%1:28:00:: 15221596 1 0 -saint-bernard's-lily%1:20:00:: 12439626 1 0 -saint-john's-bread%1:13:00:: 07598335 1 0 -saint-mihiel%1:04:00:: 01293167 1 0 -saint-saens%1:18:00:: 11278351 1 0 -saint_agnes's_eve%1:28:00:: 15185721 1 0 -saint_ambrose%1:18:00:: 10815648 1 0 -saint_andrew%1:18:00:: 10818088 1 0 -saint_andrew_the_apostle%1:18:00:: 10818088 1 0 -saint_anselm%1:18:00:: 10818860 1 0 -saint_anthony's_fire%1:26:00:: 14232157 1 0 -saint_athanasius%1:18:00:: 10827155 1 0 -saint_augustine%1:15:00:: 09074834 2 0 -saint_augustine%1:18:00:: 10828573 1 0 -saint_baeda%1:18:00:: 10840769 1 0 -saint_beda%1:18:00:: 10840769 1 0 -saint_bede%1:18:00:: 10840769 1 0 -saint_benedict%1:18:00:: 10843858 1 0 -saint_bernard%1:05:00:: 02109525 1 0 -saint_boniface%1:18:00:: 10856486 1 0 -saint_bride%1:18:00:: 10864204 1 0 -saint_bridget%1:18:00:: 10864204 1 0 -saint_brigid%1:18:00:: 10864204 1 0 -saint_bruno%1:18:00:: 10868980 1 0 -saint_christopher%1:15:00:: 08987879 2 0 -saint_christopher%1:18:00:: 10897154 1 0 -saint_christopher-nevis%1:15:00:: 08987423 1 0 -saint_cloud%1:15:00:: 09103217 1 0 -saint_crispin%1:18:00:: 10915373 1 0 -saint_cyril%1:18:00:: 10919886 1 0 -saint_david%1:18:00:: 10924231 1 0 -saint_denis%1:18:00:: 11313911 1 0 -saint_dominic%1:18:00:: 10938363 1 0 -saint_edward_the_confessor%1:18:00:: 10952143 1 0 -saint_edward_the_martyr%1:18:00:: 10952629 1 0 -saint_elizabeth_ann_bayley_seton%1:18:00:: 11293972 1 0 -saint_elmo's_fire%1:19:00:: 11440802 1 0 -saint_elmo's_light%1:19:00:: 11440802 1 0 -saint_emilion%1:13:00:: 07898117 1 0 -saint_eustatius%1:15:00:: 08749312 1 0 -saint_francis%1:17:00:: 09419281 2 0 -saint_francis%1:18:00:: 10978098 1 0 -saint_francis_of_assisi%1:18:00:: 10978098 1 0 -saint_francis_river%1:17:00:: 09419281 1 0 -saint_francis_xavier%1:18:00:: 11401009 1 0 -saint_george%1:18:00:: 10996285 1 0 -saint_gregory_i%1:18:00:: 11013876 1 0 -saint_ignatius%1:18:00:: 11070994 1 0 -saint_ignatius'_itch%1:26:00:: 14200873 1 0 -saint_ignatius_of_loyola%1:18:00:: 11071177 1 0 -saint_irenaeus%1:18:00:: 11073061 1 0 -saint_james%1:18:00:: 11078982 1 0 -saint_james_the_apostle%1:18:00:: 11078982 1 0 -saint_jerome%1:18:00:: 11083064 1 0 -saint_joan%1:18:00:: 11081353 1 0 -saint_john%1:15:00:: 08824771 3 0 -saint_john%1:17:00:: 09419536 2 0 -saint_john%1:18:00:: 11085924 1 0 -saint_john's%1:15:00:: 08825321 1 0 -saint_john's%1:15:01:: 08710325 2 0 -saint_john_river%1:17:00:: 09419536 1 0 -saint_john_the_apostle%1:18:00:: 11085924 1 0 -saint_johns%1:17:00:: 09419783 1 0 -saint_johns_river%1:17:00:: 09419783 1 0 -saint_joseph%1:15:00:: 09107412 2 0 -saint_joseph%1:28:00:: 15194739 1 0 -saint_jude%1:18:00:: 11094055 1 0 -saint_kitts%1:15:00:: 08987879 1 0 -saint_kitts_and_nevis%1:15:00:: 08987423 1 0 -saint_lawrence%1:17:00:: 09420030 2 0 -saint_lawrence%1:18:00:: 11121108 1 0 -saint_lawrence_river%1:17:00:: 09420030 1 0 -saint_lawrence_seaway%1:06:00:: 04129872 1 0 -saint_louis%1:15:00:: 09107626 2 0 -saint_louis%1:18:00:: 11140243 1 0 -saint_lucia%1:15:00:: 08988609 1 0 -saint_lucia%1:15:01:: 08988453 2 0 -saint_luke%1:18:00:: 11144604 1 0 -saint_maarten%1:15:00:: 08749650 1 0 -saint_mark%1:18:00:: 11156943 1 0 -saint_martin%1:15:00:: 08749650 1 0 -saint_martin's_summer%1:28:00:: 15185996 1 0 -saint_matthew%1:18:00:: 11164671 1 0 -saint_matthew_the_apostle%1:18:00:: 11164671 1 0 -saint_nicholas%1:18:00:: 11205797 1 0 -saint_nicholas%1:18:01:: 10550673 2 0 -saint_nick%1:18:00:: 10550673 1 0 -saint_olaf%1:18:00:: 11213552 1 0 -saint_olav%1:18:00:: 11213552 1 0 -saint_patrick%1:18:00:: 11225469 1 0 -saint_patrick's_day%1:28:00:: 15187988 1 0 -saint_paul%1:15:00:: 09103377 2 0 -saint_paul%1:18:00:: 11225661 1 0 -saint_peter%1:18:00:: 11231157 1 0 -saint_peter's_wreath%1:20:00:: 12659539 1 0 -saint_peter_the_apostle%1:18:00:: 11231157 1 0 -saint_petersburg%1:15:00:: 09008454 2 0 -saint_petersburg%1:15:01:: 09075007 1 0 -saint_polycarp%1:18:00:: 11241455 1 0 -saint_teresa_of_avila%1:18:00:: 11336176 1 0 -saint_thomas%1:18:00:: 10820790 2 0 -saint_thomas%1:18:01:: 11338796 1 0 -saint_thomas_a_becket%1:18:00:: 10840021 1 0 -saint_thomas_aquinas%1:18:00:: 10820790 1 0 -saint_ulmo's_fire%1:19:00:: 11440802 1 0 -saint_ulmo's_light%1:19:00:: 11440802 1 0 -saint_valentine's_day%1:28:00:: 15187250 1 0 -saint_vincent%1:15:00:: 08989324 1 0 -saint_vincent_and_the_grenadines%1:15:00:: 08989031 1 0 -saint_vitus_dance%1:26:00:: 14095568 1 0 -sainted%5:00:00:good:02 01130261 1 0 -sainthood%1:04:00:: 00599329 2 0 -sainthood%1:14:00:: 08152657 1 0 -saintlike%5:00:00:good:02 01130261 1 0 -saintliness%1:07:00:: 04848383 1 0 -saintly%5:00:00:good:02 01130261 1 0 -saintpaulia%1:20:00:: 12832976 1 0 -saintpaulia_ionantha%1:20:00:: 12833149 1 0 -saints_peter_and_paul%1:28:00:: 15193776 1 0 -saipan%1:04:00:: 01293438 2 0 -saipan%1:15:00:: 08838070 1 0 -sajama%1:17:00:: 09420273 1 0 -sakartvelo%1:15:00:: 09018848 1 0 -sake%1:07:00:: 05143077 1 10 -sake%1:09:00:: 05983347 3 0 -sake%1:13:00:: 07891433 2 0 -sakharov%1:18:00:: 11278498 1 0 -saki%1:05:00:: 02492948 3 0 -saki%1:13:00:: 07891433 2 0 -saki%1:18:00:: 11196627 1 0 -sakkara%1:15:00:: 08900047 1 0 -sakti%1:18:00:: 09528587 1 0 -saktism%1:09:00:: 06239076 2 0 -saktism%1:14:00:: 08097222 1 0 -sal_ammoniac%1:27:00:: 14744589 1 0 -sal_soda%1:27:00:: 15044844 1 0 -sal_volatile%1:27:00:: 15052063 1 0 -salaah%1:09:00:: 05914359 1 0 -salaam%1:10:00:: 07275713 1 0 -salaam%2:32:00:: 00899847 1 0 -salaat%1:09:00:: 05914359 1 0 -salability%1:07:00:: 04732237 1 0 -salable%3:00:00:: 02061799 1 1 -salableness%1:07:00:: 04732237 1 0 -salacious%5:00:00:dirty:02 00425740 2 1 -salacious%5:00:00:sexy:00 02133779 1 1 -salaciously%4:02:00:: 00386474 1 0 -salaciousness%1:07:00:: 04903368 1 0 -salacity%1:07:00:: 04903368 1 0 -salad%1:13:00:: 07806221 1 1 -salad_bar%1:06:00:: 04130143 1 0 -salad_bowl%1:06:00:: 04130257 2 0 -salad_bowl%1:06:01:: 04130447 1 0 -salad_burnet%1:13:00:: 07820036 2 0 -salad_burnet%1:20:00:: 12637485 1 0 -salad_cream%1:13:00:: 07835051 1 0 -salad_days%1:28:00:: 15151641 1 0 -salad_dressing%1:13:00:: 07832902 1 0 -salad_fork%1:06:00:: 04130357 1 0 -salad_green%1:13:00:: 07723330 1 0 -salad_greens%1:13:00:: 07723330 1 0 -salad_nicoise%1:13:00:: 07807171 1 0 -salad_oil%1:13:00:: 07674912 1 0 -salad_plate%1:06:00:: 04130447 1 0 -salade%1:06:00:: 04130907 1 0 -saladin%1:18:00:: 11278756 1 0 -salafast_group_for_call_and_combat%1:14:00:: 08044265 1 0 -salafi_movement%1:09:00:: 06235977 1 0 -salafism%1:09:00:: 06235977 1 0 -salafist_group%1:14:00:: 08044265 1 0 -salah%1:09:00:: 05914359 1 0 -salah-ad-din_yusuf_ibn-ayyub%1:18:00:: 11278756 1 0 -salah_al-din_battalions%1:14:00:: 08040257 1 0 -salai%1:20:00:: 12692160 1 0 -salal%1:20:00:: 12236160 1 0 -salamander%1:05:00:: 01629276 1 1 -salamander%1:06:00:: 03975926 3 0 -salamander%1:18:00:: 09501427 2 0 -salamandra%1:05:00:: 01629093 1 0 -salamandra_atra%1:05:00:: 01630148 1 0 -salamandra_maculosa%1:05:00:: 01629962 1 0 -salamandra_salamandra%1:05:00:: 01629819 1 0 -salamandridae%1:05:00:: 01628885 1 0 -salamandriform%3:01:00:: 03144356 1 0 -salami%1:13:00:: 07677747 1 0 -salaried%3:00:00:: 00863717 1 0 -salaried%5:00:01:paid:00 01708663 3 0 -salaried%5:00:02:paid:00 01708898 2 0 -salary%1:21:00:: 13279262 1 10 -salary_cut%1:04:00:: 00352683 1 0 -salary_increase%1:07:00:: 05110185 1 0 -salat%1:09:00:: 05914359 1 0 -sale%1:04:00:: 01114824 1 29 -sale%1:04:01:: 01117723 3 1 -sale%1:04:02:: 01117541 2 18 -sale%1:10:00:: 06527851 5 0 -sale%1:26:00:: 14564306 4 0 -sale_in_gross%1:10:00:: 06528403 1 0 -saleable%3:00:00:: 02061799 1 0 -salem%1:15:00:: 09134202 1 0 -salem%1:15:01:: 09099264 2 0 -salem%1:15:02:: 08904858 3 0 -saleratus%1:27:00:: 14775995 1 0 -salerno%1:04:00:: 01293650 1 0 -saleroom%1:06:00:: 04209811 1 0 -sales%1:21:00:: 13260936 1 0 -sales_agreement%1:10:00:: 06527851 1 0 -sales_booth%1:06:00:: 04299215 1 0 -sales_campaign%1:04:00:: 00801724 1 0 -sales_demonstrator%1:18:00:: 10002982 1 0 -sales_department%1:14:00:: 08119525 1 0 -sales_division%1:14:00:: 08119525 1 0 -sales_event%1:04:00:: 01117723 1 0 -sales_finance_company%1:14:00:: 08421644 1 0 -sales_force%1:14:00:: 08119525 1 4 -sales_incentive%1:21:00:: 13273949 1 0 -sales_outlet%1:06:00:: 03748162 1 0 -sales_pitch%1:10:00:: 07248653 1 0 -sales_promotion%1:10:00:: 07249817 1 0 -sales_rep%1:18:00:: 10548681 1 0 -sales_representative%1:18:00:: 10548681 1 0 -sales_resistance%1:04:00:: 01170047 1 0 -sales_staff%1:14:00:: 08352613 1 0 -sales_talk%1:10:00:: 07248653 1 0 -sales_tax%1:21:00:: 13316568 1 1 -salesclerk%1:18:00:: 10548227 1 0 -salesgirl%1:18:00:: 10548419 1 1 -saleslady%1:18:00:: 10548419 1 3 -salesman%1:18:00:: 10548537 1 20 -salesmanship%1:09:00:: 05639651 1 3 -salesperson%1:18:00:: 10548681 1 0 -salesroom%1:06:00:: 04209811 1 0 -saleswoman%1:18:00:: 10548419 1 0 -salian%1:18:00:: 09689000 1 0 -salian_frank%1:18:00:: 09689000 1 0 -salic_law%1:10:00:: 06534918 1 0 -salicaceae%1:20:00:: 12723985 1 0 -salicales%1:20:00:: 12723835 1 0 -salicornia%1:20:00:: 11834148 1 0 -salicornia_europaea%1:20:00:: 11834272 1 0 -salicylate%1:27:00:: 15009843 1 0 -salicylate_poisoning%1:26:00:: 14512674 1 0 -salicylic_acid%1:27:00:: 15010038 1 0 -salience%1:26:00:: 14434022 1 0 -saliency%1:26:00:: 14434022 1 0 -salient%1:15:00:: 08594886 1 0 -salient%3:00:00:: 02591896 2 0 -salient%5:00:00:conspicuous:00 00580805 1 3 -salient%5:00:00:inclined:01 01235439 3 0 -salient_angle%1:25:00:: 13890226 1 0 -salientia%1:05:00:: 01639369 1 0 -salientian%1:05:00:: 01639765 1 0 -salientian%3:01:00:: 02631238 1 0 -saliferous%5:00:00:salty:00 01074335 1 0 -salim%1:18:00:: 11201386 1 0 -salina%1:15:00:: 09088718 1 0 -salinate%2:30:00:: 00531769 1 0 -saline%1:27:00:: 14590293 1 27 -saline%5:00:00:salty:00 01074458 1 0 -saline_solution%1:27:00:: 14590293 1 0 -salinger%1:18:00:: 11278980 1 0 -salinity%1:07:00:: 04993604 2 0 -salinity%1:09:00:: 05717342 1 0 -salinometer%1:06:00:: 04130566 1 0 -salisbury%1:15:00:: 09167505 1 0 -salisbury_steak%1:13:00:: 07875926 1 0 -salish%1:10:00:: 06914167 1 1 -salish%1:18:00:: 09667358 2 0 -salishan%1:10:00:: 06914167 1 0 -saliva%1:08:00:: 05416198 1 2 -salivary%3:01:00:: 03012094 1 1 -salivary_calculus%1:17:00:: 09434125 1 0 -salivary_duct%1:08:00:: 05416545 1 0 -salivary_gland%1:08:00:: 05532944 1 0 -salivate%2:29:00:: 00102791 1 1 -salivate%2:37:00:: 01827425 2 0 -salivation%1:22:00:: 13552528 1 0 -salix%1:20:00:: 12724201 1 0 -salix_alba%1:20:00:: 12725738 1 0 -salix_alba_caerulea%1:20:00:: 12726357 1 0 -salix_alba_sericea%1:20:00:: 12725940 1 0 -salix_alba_vitellina%1:20:00:: 12726159 1 0 -salix_amygdalina%1:20:00:: 12727960 1 0 -salix_amygdaloides%1:20:00:: 12727729 1 0 -salix_arctica%1:20:00:: 12726528 1 0 -salix_babylonica%1:20:00:: 12726670 1 0 -salix_blanda%1:20:00:: 12726902 1 0 -salix_candida%1:20:00:: 12728164 1 0 -salix_caprea%1:20:00:: 12727518 1 0 -salix_cinerea%1:20:00:: 12728864 1 0 -salix_discolor%1:20:00:: 12727101 1 0 -salix_fragilis%1:20:00:: 12728322 1 0 -salix_herbacea%1:20:00:: 12728656 1 0 -salix_humilis%1:20:00:: 12728508 1 0 -salix_lasiolepis%1:20:00:: 12729023 1 0 -salix_lucida%1:20:00:: 12729164 1 0 -salix_nigra%1:20:00:: 12729315 1 0 -salix_pendulina%1:20:00:: 12726902 1 0 -salix_pendulina_blanda%1:20:00:: 12726902 1 0 -salix_pentandra%1:20:00:: 12729521 1 0 -salix_purpurea%1:20:00:: 12729729 1 0 -salix_pyrifolia%1:20:00:: 12729950 1 0 -salix_repens%1:20:00:: 12730143 1 0 -salix_sericea%1:20:00:: 12725940 1 0 -salix_sitchensis%1:20:00:: 12730370 1 0 -salix_triandra%1:20:00:: 12727960 1 0 -salix_tristis%1:20:00:: 12730544 1 0 -salix_uva-ursi%1:20:00:: 12730776 1 0 -salix_viminalis%1:20:00:: 12731029 1 0 -salix_vitellina%1:20:00:: 12726159 1 0 -salk%1:18:00:: 11279109 1 0 -salk_vaccine%1:06:00:: 04130715 1 0 -sallet%1:06:00:: 04130907 1 0 -sallow%1:20:00:: 12727301 1 0 -sallow%2:30:00:: 00281790 1 0 -sallow%5:00:00:unhealthy:00 01178134 1 1 -sallowness%1:07:00:: 04977946 1 0 -sally%1:04:00:: 00971309 2 0 -sally%1:04:01:: 00801966 3 0 -sally%1:10:00:: 06767777 1 1 -sally_forth%2:38:00:: 02015031 1 0 -sally_lunn%1:13:00:: 07635044 1 0 -sally_out%2:38:00:: 01966501 2 0 -sally_out%2:38:01:: 02015031 1 0 -sallying_forth%1:04:00:: 00801966 1 1 -salmacis%1:18:00:: 09551152 1 0 -salmagundi%1:13:00:: 07807002 2 0 -salmagundi%1:14:00:: 08398773 1 0 -salman_rushdie%1:18:00:: 11274454 1 0 -salmi%1:13:00:: 07592922 1 0 -salmo%1:05:00:: 02535349 1 0 -salmo_gairdneri%1:05:00:: 02537525 1 0 -salmo_salar%1:05:00:: 02535537 1 0 -salmo_trutta%1:05:00:: 02537319 1 0 -salmon%1:05:00:: 02534734 1 1 -salmon%1:07:00:: 04965371 4 0 -salmon%1:13:00:: 07795751 3 0 -salmon%1:17:00:: 09420423 2 0 -salmon%5:00:00:chromatic:00 00379804 1 0 -salmon_berry%1:20:00:: 12657082 1 0 -salmon_loaf%1:13:00:: 07875835 1 0 -salmon_oil%1:27:00:: 15010277 1 0 -salmon_p._chase%1:18:00:: 10893606 1 0 -salmon_pink%1:07:00:: 04971675 1 0 -salmon_portland_chase%1:18:00:: 10893606 1 0 -salmon_river%1:17:00:: 09420423 1 0 -salmon_trout%1:05:00:: 02538010 2 0 -salmon_trout%1:05:01:: 02537319 3 0 -salmon_trout%1:13:00:: 07794744 1 0 -salmonberry%1:20:01:: 12656909 3 0 -salmonberry%1:20:02:: 12657082 2 0 -salmonberry%1:20:03:: 12657294 1 0 -salmonella%1:05:00:: 01368973 1 0 -salmonella_enteritidis%1:05:00:: 01369210 1 0 -salmonella_typhi%1:05:00:: 01369484 1 0 -salmonella_typhimurium%1:05:00:: 01369358 1 0 -salmonella_typhosa%1:05:00:: 01369484 1 0 -salmonellosis%1:26:00:: 14069747 1 0 -salmonid%1:05:00:: 02534559 1 0 -salmonidae%1:05:00:: 02534352 1 0 -salmwood%1:20:00:: 12818346 1 0 -salol%1:27:00:: 15010430 1 0 -salome%1:18:00:: 11279300 1 0 -salomon%1:18:00:: 11279433 1 0 -salon%1:06:00:: 04131015 3 0 -salon%1:06:01:: 04131113 1 2 -salon%1:06:02:: 04131208 2 0 -salonica%1:15:00:: 08789605 1 0 -salonika%1:15:00:: 08789605 1 0 -saloon%1:06:00:: 02796995 1 5 -saloon%1:06:01:: 04018399 2 2 -saloon%1:06:02:: 04166281 3 0 -saloon_keeper%1:18:00:: 10548976 1 0 -salp%1:05:00:: 01469723 1 0 -salpa%1:05:00:: 01469723 1 0 -salpichroa%1:20:00:: 12912105 1 0 -salpichroa_organifolia%1:20:00:: 12912274 1 0 -salpichroa_rhomboidea%1:20:00:: 12912274 1 0 -salpidae%1:05:00:: 01469425 1 0 -salpiglossis%1:20:00:: 12912670 1 0 -salpiglossis_sinuata%1:20:00:: 12912801 1 0 -salpinctes%1:05:00:: 01585577 1 0 -salpinctes_obsoletus%1:05:00:: 01585715 1 0 -salpingectomy%1:04:00:: 00687365 1 0 -salpingitis%1:26:00:: 14355459 1 0 -salpinx%1:08:00:: 05247057 1 0 -salsa%1:13:00:: 07823460 1 0 -salsify%1:13:00:: 07735052 3 0 -salsify%1:20:00:: 12027222 2 0 -salsify%1:20:02:: 12027538 1 0 -salsilla%1:20:01:: 12419878 2 0 -salsilla%1:20:02:: 12420124 1 0 -salsola%1:20:00:: 11834521 1 0 -salsola_kali%1:20:00:: 11834654 1 0 -salsola_kali_tenuifolia%1:20:00:: 11834890 1 0 -salsola_soda%1:20:00:: 11834654 1 0 -salt%1:09:00:: 05717342 4 0 -salt%1:10:00:: 07149582 3 0 -salt%1:13:00:: 07813107 2 5 -salt%1:27:00:: 15010703 1 9 -salt%2:30:00:: 00213353 4 0 -salt%2:30:01:: 00560122 3 0 -salt%2:35:00:: 01375120 2 0 -salt%2:39:00:: 02196214 1 1 -salt%5:00:00:sharp:04 00803846 1 1 -salt-cured%5:00:00:preserved:02 01073311 1 0 -salt-free_diet%1:13:00:: 07564292 1 0 -salt-rising_bread%1:13:00:: 07686461 1 0 -salt_away%2:40:00:: 02281093 1 1 -salt_cod%1:13:00:: 07789911 1 0 -salt_depletion%1:26:00:: 14017451 1 0 -salt_flat%1:17:00:: 09420550 1 0 -salt_i%1:10:00:: 06775218 1 0 -salt_ii%1:10:00:: 06775409 1 0 -salt_lake_city%1:15:00:: 09147737 1 0 -salt_lick%1:17:00:: 09420689 1 0 -salt_marsh%1:17:00:: 09420794 1 0 -salt_marsh_mallow%1:20:00:: 12182276 1 0 -salt_merchant%1:18:00:: 10549062 1 0 -salt_mine%1:04:00:: 00606119 2 0 -salt_mine%1:06:00:: 04131610 1 0 -salt_plain%1:17:00:: 09420550 1 0 -salt_pork%1:13:00:: 07671107 1 0 -salt_reed_grass%1:20:00:: 12139793 1 0 -salt_rush%1:20:00:: 11744355 1 0 -salt_shaker%1:06:00:: 04131690 1 0 -salt_tree%1:20:00:: 12533730 1 0 -saltate%2:38:00:: 01965464 2 0 -saltate%2:38:01:: 01965654 1 0 -saltation%1:04:00:: 00120202 5 0 -saltation%1:04:01:: 00428270 4 0 -saltation%1:11:00:: 07426732 2 0 -saltation%1:11:01:: 07358985 3 0 -saltation%1:22:00:: 13552644 1 0 -saltbox%1:06:00:: 04131368 1 0 -saltbush%1:20:00:: 11830906 1 0 -saltcellar%1:06:00:: 04131499 1 0 -salted%5:00:00:preserved:02 01073311 1 0 -salter%1:18:00:: 10549062 2 0 -salter%1:18:01:: 10549165 1 0 -saltine%1:13:00:: 07695187 1 0 -saltiness%1:07:00:: 04993413 3 0 -saltiness%1:09:00:: 05717342 2 0 -saltiness%1:10:00:: 07072838 1 0 -salting%1:04:00:: 00248534 1 0 -saltire%1:06:00:: 04302598 1 0 -saltish%5:00:00:salty:00 01074582 1 0 -saltlike%5:00:00:alkaline:00 00026388 1 0 -salton_sea%1:17:00:: 09420911 1 0 -saltpan%1:17:00:: 09421031 1 0 -saltpeter%1:27:00:: 14861355 1 0 -saltpetre%1:27:00:: 14861355 1 0 -saltshaker%1:06:00:: 04131690 1 0 -saltwater%1:27:00:: 15008847 1 1 -saltwater_fish%1:13:00:: 07775905 1 0 -saltworks%1:06:00:: 04131811 1 0 -saltwort%1:20:01:: 11827541 2 0 -saltwort%1:20:02:: 11834654 1 0 -saltwort_family%1:20:00:: 11827169 1 0 -salty%3:00:00:: 01073822 2 0 -salty%5:00:00:stimulating:00 02306874 1 1 -salty%5:00:00:tasty:00 02398773 3 0 -salubrious%5:00:00:wholesome:00 02558184 1 1 -salubrious%5:00:02:wholesome:00 02558996 2 0 -salubriousness%1:07:00:: 04790238 1 0 -salubrity%1:07:00:: 04790238 1 0 -saluki%1:05:00:: 02091831 1 0 -salutary%5:00:00:healthful:00 01166413 1 1 -salutation%1:10:00:: 06630017 2 0 -salutation%1:10:01:: 06688913 1 0 -salutation%1:10:02:: 06397789 3 0 -salutatorian%1:18:00:: 10549315 1 0 -salutatory%1:10:00:: 07243382 1 0 -salutatory_address%1:10:00:: 07243382 1 0 -salutatory_oration%1:10:00:: 07243382 1 0 -salutatory_speaker%1:18:00:: 10549315 1 0 -salute%1:10:00:: 06688913 1 0 -salute%1:10:01:: 06633041 2 0 -salute%1:10:02:: 06632358 3 0 -salute%2:32:00:: 00899597 2 1 -salute%2:32:01:: 00899956 6 0 -salute%2:32:02:: 00900214 5 0 -salute%2:32:03:: 00857270 3 1 -salute%2:34:00:: 01175467 1 1 -salute%2:39:00:: 02124501 4 0 -saluter%1:18:00:: 10146927 1 0 -salvador%1:15:00:: 08738272 1 0 -salvador_dali%1:18:00:: 10921218 1 0 -salvadora%1:20:00:: 12299425 1 0 -salvadora_family%1:20:00:: 12299165 1 0 -salvadora_persica%1:20:00:: 12299640 1 0 -salvadoraceae%1:20:00:: 12299165 1 0 -salvadoran%1:18:00:: 09700823 1 0 -salvadoran%3:01:00:: 02969375 1 0 -salvadoran_capital%1:15:00:: 08738531 1 0 -salvadorean%1:18:00:: 09700823 1 0 -salvadorean%3:01:00:: 02969375 1 0 -salvadorian%1:18:00:: 09700823 1 0 -salvage%1:04:00:: 00096211 3 0 -salvage%1:04:01:: 00096343 2 0 -salvage%1:21:00:: 13247554 1 0 -salvage%2:35:00:: 01381357 2 0 -salvage%2:41:00:: 02550868 1 3 -salvageable%5:00:00:saved:00 01452138 1 0 -salvager%1:18:00:: 10549510 1 0 -salvation%1:04:00:: 00094001 1 10 -salvation%1:04:01:: 00179380 2 1 -salvation%1:04:02:: 00096513 4 0 -salvation%1:26:00:: 14539165 3 0 -salvation_army%1:14:00:: 08047890 1 0 -salve%1:04:00:: 00259392 2 1 -salve%1:06:00:: 03845550 1 1 -salve%2:29:00:: 00085907 2 0 -salve%2:41:00:: 02550868 1 0 -salvelinus%1:05:00:: 02537847 1 0 -salvelinus_alpinus%1:05:00:: 02538562 1 0 -salvelinus_fontinalis%1:05:00:: 02538216 1 0 -salvelinus_namaycush%1:05:00:: 02538010 1 0 -salver%1:06:00:: 04131929 1 0 -salverform%5:00:00:petalous:00 01776282 1 0 -salvia%1:20:00:: 12864545 1 0 -salvia_azurea%1:20:00:: 12864902 1 0 -salvia_clarea%1:20:00:: 12865037 1 0 -salvia_divinorum%1:20:00:: 12866459 1 0 -salvia_farinacea%1:20:00:: 12865239 1 0 -salvia_lancifolia%1:20:00:: 12865367 1 0 -salvia_leucophylla%1:20:00:: 12865562 1 0 -salvia_lyrata%1:20:00:: 12865708 1 0 -salvia_officinalis%1:20:00:: 12865824 1 0 -salvia_pratensis%1:20:00:: 12866002 1 0 -salvia_reflexa%1:20:00:: 12865367 1 0 -salvia_sclarea%1:20:00:: 12866162 1 0 -salvia_spathacea%1:20:00:: 12866333 1 0 -salvia_verbenaca%1:20:00:: 12866635 1 0 -salvific%3:01:00:: 03144441 1 0 -salving%5:00:00:soft:01 01153844 1 0 -salvinia%1:20:00:: 12958921 1 0 -salvinia_auriculata%1:20:00:: 12959074 1 0 -salvinia_rotundifolia%1:20:00:: 12959074 1 0 -salviniaceae%1:20:00:: 12958772 1 0 -salvinorin%1:06:00:: 04132056 1 0 -salvo%1:04:00:: 00988320 2 1 -salvo%1:10:00:: 06693086 3 0 -salvo%1:11:00:: 07435149 1 1 -salvor%1:18:00:: 10549510 1 0 -salwar%1:06:00:: 04132158 1 0 -salyut%1:06:00:: 04132354 1 0 -salzburg%1:15:00:: 08846885 1 0 -sam%1:06:00:: 04363210 1 0 -sam_adams%1:18:00:: 10808539 1 0 -sam_browne_belt%1:06:00:: 04132465 1 0 -sam_goldwyn%1:18:00:: 11005571 1 0 -sam_houston%1:18:00:: 11061853 1 0 -sam_shepard%1:18:00:: 11297457 1 0 -sam_snead%1:18:00:: 11306760 1 0 -sama-veda%1:10:00:: 06465139 1 0 -saman%1:20:00:: 11759853 1 0 -samanala%1:17:00:: 09187594 1 0 -samara%1:20:00:: 12036226 1 0 -samarang%1:15:00:: 08910230 1 0 -samarcand%1:15:00:: 09022667 1 0 -samaria%1:15:00:: 08799462 1 0 -samaritan%1:18:00:: 10549648 1 0 -samarium%1:27:00:: 14653596 1 0 -samarkand%1:15:00:: 09022667 1 0 -samarskite%1:27:00:: 15012668 1 0 -samba%1:04:00:: 00537192 3 0 -samba%1:04:01:: 00497425 4 0 -samba%1:10:00:: 07056895 2 0 -samba%1:20:00:: 12201938 1 0 -samba%2:38:00:: 01896881 1 0 -sambar%1:05:00:: 02431628 1 0 -sambre%1:17:00:: 09421191 1 0 -sambre_river%1:17:00:: 09421191 1 0 -sambuca%1:13:00:: 07911249 1 0 -sambucus%1:20:00:: 12678059 1 0 -sambucus_caerulea%1:20:00:: 12678794 1 0 -sambucus_canadensis%1:20:00:: 12678548 1 0 -sambucus_ebulus%1:20:00:: 12679023 1 0 -sambucus_nigra%1:20:00:: 12679201 1 0 -sambucus_pubens%1:20:00:: 12679432 1 0 -sambucus_racemosa%1:20:00:: 12679593 1 0 -sambur%1:05:00:: 02431628 1 0 -same%1:10:00:: 06959427 2 0 -same%1:18:00:: 09720033 1 0 -same%3:00:00:: 02062670 2 80 -same%3:00:02:: 02068476 1 129 -same%3:00:04:: 01411065 3 20 -same%5:00:00:unchanged:00 00355611 4 17 -same-sex_marriage%1:14:00:: 07989973 1 0 -samekh%1:10:00:: 06838219 1 0 -sameness%1:07:00:: 04742535 1 3 -sameness%1:07:02:: 04740326 2 0 -samhita%1:10:00:: 06464838 1 0 -sami%1:10:00:: 06959427 2 0 -sami%1:18:00:: 09720033 1 0 -samia%1:05:00:: 02303448 1 0 -samia_cynthia%1:05:01:: 02303585 2 0 -samia_cynthia%1:05:02:: 02303777 1 0 -samia_walkeri%1:05:00:: 02303585 1 0 -samian_ware%1:06:00:: 04414319 1 0 -samiel%1:19:00:: 11507655 1 0 -samisen%1:06:00:: 04132603 1 0 -samite%1:06:00:: 04132829 1 0 -samizdat%1:10:00:: 06271620 1 0 -samnite%1:18:00:: 09717917 1 0 -samoa%1:15:00:: 08991491 1 0 -samoa%1:15:01:: 08991182 2 0 -samoa_i_sisifo%1:15:00:: 08991491 1 0 -samoan%1:18:00:: 09729271 1 0 -samoan%3:01:00:: 03113404 1 0 -samoan_islands%1:15:00:: 08991182 1 0 -samolus%1:20:00:: 12096223 1 0 -samolus_floribundus%1:20:00:: 12096674 1 0 -samolus_parviflorus%1:20:00:: 12096674 1 0 -samolus_valerandii%1:20:00:: 12096563 1 0 -samosa%1:13:00:: 07625061 1 0 -samovar%1:06:00:: 04132985 1 0 -samoyed%1:05:00:: 02111889 3 0 -samoyed%1:10:00:: 06959584 2 0 -samoyed%1:18:00:: 09707887 1 0 -samoyede%1:05:00:: 02111889 1 0 -samoyedic%1:10:00:: 06959584 1 0 -samoyedic-speaking%5:00:00:communicative:00 00499823 1 0 -sampan%1:06:00:: 04133114 1 0 -samphire%1:20:00:: 11834272 1 0 -sample%1:09:00:: 05821775 1 48 -sample%1:09:01:: 06026635 2 13 -sample%1:17:00:: 09421425 3 0 -sample%2:34:00:: 01195299 1 7 -sample_distribution%1:09:00:: 06026635 1 0 -sampler%1:06:00:: 04133211 4 0 -sampler%1:06:01:: 04133346 1 1 -sampler%1:14:00:: 08463817 3 0 -sampler%1:18:00:: 10692482 2 0 -sampling%1:04:00:: 00161888 1 4 -sampling%1:04:01:: 01004775 3 0 -sampling%1:09:00:: 06026635 2 0 -sampling_frequency%1:28:00:: 15285279 1 0 -sampling_rate%1:28:00:: 15282032 1 0 -sampling_station%1:06:00:: 04133346 1 1 -samsara%1:11:00:: 07343017 1 0 -samson%1:18:00:: 11279648 1 0 -samson%1:18:01:: 09878702 2 0 -samuel%1:18:00:: 11279874 1 0 -samuel_adams%1:18:00:: 10808539 1 0 -samuel_barber%1:18:00:: 10834439 1 0 -samuel_beckett%1:18:00:: 10840354 1 0 -samuel_butler%1:18:00:: 10876419 2 0 -samuel_butler%1:18:02:: 10876513 1 0 -samuel_dashiell_hammett%1:18:00:: 11026816 1 0 -samuel_de_champlain%1:18:00:: 10890032 1 0 -samuel_f._b._morse%1:18:00:: 11192666 1 0 -samuel_finley_breese_morse%1:18:00:: 11192666 1 0 -samuel_goldwyn%1:18:00:: 11005571 1 0 -samuel_gompers%1:18:00:: 11006231 1 0 -samuel_houston%1:18:00:: 11061853 1 0 -samuel_huntington%1:18:00:: 11067396 1 0 -samuel_jackson_snead%1:18:00:: 11306760 1 0 -samuel_johnson%1:18:00:: 11088622 1 0 -samuel_langhorne_clemens%1:18:00:: 10900730 1 0 -samuel_morse%1:18:00:: 11192666 1 0 -samuel_pepys%1:18:00:: 11229323 1 0 -samuel_pierpoint_langley%1:18:00:: 11116642 1 0 -samuel_rawson_gardiner%1:18:00:: 10990212 1 0 -samuel_rosenstock%1:18:00:: 11355247 1 0 -samuel_taylor_coleridge%1:18:00:: 10904821 1 0 -samuel_wiesenthal%1:18:00:: 11386005 1 0 -samuel_wilder%1:18:00:: 11386503 1 0 -samurai%1:14:00:: 08388966 2 0 -samurai%1:18:00:: 10549763 1 0 -san_andreas_fault%1:17:00:: 09421604 1 0 -san_angelo%1:15:00:: 09145970 1 0 -san_antonio%1:15:00:: 09146111 1 0 -san_bernardino%1:15:00:: 09065191 1 0 -san_carlos_apache%1:10:00:: 06919630 1 0 -san_diego%1:15:00:: 09065328 1 0 -san_diego_bay%1:17:00:: 09422048 1 0 -san_fernando_valley%1:17:00:: 09422294 1 0 -san_francisco%1:15:00:: 09065557 1 10 -san_francisco_bay%1:17:00:: 09422486 1 0 -san_joaquin_river%1:17:00:: 09422751 1 0 -san_joaquin_valley%1:17:00:: 09422964 1 0 -san_jose%1:15:00:: 08736376 2 0 -san_jose%1:15:01:: 09066017 1 0 -san_jose_scale%1:05:00:: 02249809 1 0 -san_juan%1:15:00:: 08753294 1 0 -san_juan_hill%1:17:00:: 09423112 1 0 -san_juan_mountains%1:17:00:: 09423379 1 0 -san_luis_potosi%1:15:00:: 08745407 1 0 -san_marinese%1:18:00:: 09729945 1 0 -san_marinese%3:01:00:: 03113562 1 0 -san_marino%1:15:00:: 08992181 2 0 -san_marino%1:15:01:: 08992508 1 0 -san_mateo%1:15:00:: 09066249 1 0 -san_pablo%1:15:00:: 09066375 1 0 -san_pedro_sula%1:15:00:: 08738151 1 0 -san_salvador%1:15:00:: 08738531 1 0 -san_sebastian%1:15:00:: 09026911 1 0 -sana%1:15:00:: 09165464 1 0 -sana'a%1:15:00:: 09165464 1 0 -sanaa%1:15:00:: 09165464 1 0 -sanatarium%1:06:00:: 04133497 1 0 -sanative%5:00:00:healthful:00 01165943 1 0 -sanatorium%1:06:00:: 04133497 1 0 -sanatorium%1:06:01:: 02820798 2 0 -sanchez%1:18:00:: 11201386 1 0 -sanctification%1:04:00:: 01039925 1 0 -sanctified%5:00:00:holy:00 02054310 1 1 -sanctify%2:30:00:: 00475819 2 0 -sanctify%2:32:00:: 00866702 1 0 -sanctimonious%5:00:00:pious:00 01782100 1 0 -sanctimoniously%4:02:00:: 00446118 1 0 -sanctimoniousness%1:07:00:: 04868350 1 0 -sanctimony%1:07:00:: 04868350 1 0 -sanction%1:04:01:: 01139000 4 0 -sanction%1:04:02:: 01124246 2 1 -sanction%1:07:00:: 05176607 3 0 -sanction%1:10:00:: 06687358 1 2 -sanction%2:32:01:: 00806502 1 6 -sanction%2:32:02:: 00806891 3 0 -sanction%2:41:01:: 02479154 2 1 -sanctionative%5:00:00:enabling:00 01195128 1 0 -sanctioned%5:00:00:authorized:00 00179035 3 0 -sanctioned%5:00:00:legal:00 01401413 2 0 -sanctioned%5:00:00:orthodox:00 01690244 1 0 -sanctioning%5:00:00:enabling:00 01195128 1 0 -sanctitude%1:07:00:: 04855138 1 0 -sanctity%1:07:00:: 04855138 1 2 -sanctuary%1:06:00:: 03004824 3 0 -sanctuary%1:06:01:: 04071102 2 0 -sanctuary%1:06:02:: 04133648 1 0 -sanctum%1:15:00:: 08645571 1 0 -sanctum%1:15:01:: 08585056 2 0 -sanctum_sanctorum%1:06:00:: 03527675 2 0 -sanctum_sanctorum%1:15:00:: 08645571 1 0 -sand%1:07:00:: 05032351 3 0 -sand%1:18:00:: 11280013 2 0 -sand%1:27:00:: 15019030 1 10 -sand%2:35:00:: 01386433 1 2 -sand-blind%5:00:00:blind:00 02159969 1 0 -sand_badger%1:05:00:: 02448885 1 0 -sand_bar%1:17:00:: 09421951 1 0 -sand_berry%1:20:00:: 12231358 1 0 -sand_blackberry%1:20:00:: 12654227 1 0 -sand_cast%2:36:00:: 01663339 1 0 -sand_cat%1:05:00:: 02125010 1 0 -sand_cherry%1:20:00:: 12648424 1 0 -sand_crack%1:26:00:: 14275405 1 0 -sand_cricket%1:05:00:: 02229156 1 0 -sand_dab%1:05:00:: 02662559 2 0 -sand_dab%1:13:00:: 07791145 1 0 -sand_devil's_claw%1:20:00:: 12875697 1 0 -sand_dollar%1:05:00:: 02319555 1 0 -sand_dropseed%1:20:00:: 12140759 1 0 -sand_dune%1:17:00:: 09270735 1 2 -sand_eel%1:05:00:: 02618513 1 0 -sand_flea%1:05:00:: 01993214 1 0 -sand_fly%1:05:00:: 02204249 1 0 -sand_grouse%1:05:00:: 01815601 1 0 -sand_hopper%1:05:00:: 01993214 1 0 -sand_lance%1:05:00:: 02618513 1 0 -sand_launce%1:05:00:: 02618513 1 0 -sand_leek%1:20:00:: 12434985 1 0 -sand_lizard%1:05:01:: 01693175 1 0 -sand_lizard%1:05:02:: 01681328 2 0 -sand_martin%1:05:00:: 01596273 1 0 -sand_myrtle%1:20:00:: 12239240 1 0 -sand_painting%1:06:00:: 04134862 1 0 -sand_phlox%1:20:00:: 12810847 1 0 -sand_rat%1:05:01:: 02344408 2 0 -sand_rat%1:05:02:: 02369555 1 0 -sand_reed%1:20:00:: 12152031 1 0 -sand_sage%1:20:00:: 11930353 1 0 -sand_sedge%1:20:00:: 12152031 1 0 -sand_shark%1:05:00:: 01487506 1 0 -sand_snake%1:05:00:: 01738601 1 0 -sand_sole%1:05:00:: 02664960 1 0 -sand_spurry%1:20:00:: 11817501 1 0 -sand_stargazer%1:05:00:: 02612167 1 0 -sand_tiger%1:05:00:: 01487506 1 0 -sand_trap%1:06:00:: 02920369 1 0 -sand_tumor%1:26:00:: 14250622 1 0 -sand_verbena%1:20:00:: 11836722 1 0 -sand_viper%1:05:01:: 01753488 1 0 -sand_viper%1:05:02:: 01729322 2 0 -sand_wedge%1:06:00:: 04135024 1 0 -sandal%1:06:00:: 04133789 1 3 -sandaled%5:00:00:shod:00 02156421 1 0 -sandalled%5:00:00:shod:00 02156421 1 0 -sandalwood%1:20:00:: 12735452 1 1 -sandalwood_family%1:20:00:: 12734722 1 0 -sandalwood_tree%1:20:00:: 12735160 1 0 -sandarac%1:20:00:: 11643354 2 0 -sandarac%1:20:01:: 11643022 3 0 -sandarac%1:20:02:: 11643506 1 0 -sandarac_tree%1:20:00:: 11643022 1 0 -sandarach%1:20:00:: 11643354 1 0 -sandbag%1:06:00:: 04134008 1 0 -sandbag%2:30:00:: 00221964 5 0 -sandbag%2:32:02:: 00841394 4 0 -sandbag%2:35:00:: 01410079 3 0 -sandbag%2:41:00:: 02517112 1 0 -sandbag%2:41:02:: 02506181 2 0 -sandbagger%1:18:00:: 10549925 1 0 -sandbank%1:17:00:: 09421799 1 0 -sandbar%1:17:00:: 09421951 1 0 -sandbar_shark%1:05:01:: 01489709 2 0 -sandbar_shark%1:05:02:: 01489920 1 0 -sandberry%1:20:00:: 12231358 1 0 -sandblast%1:19:00:: 11465425 1 0 -sandblast%2:35:00:: 01386741 1 0 -sandblaster%1:06:00:: 04134170 1 0 -sandbox%1:06:00:: 04134339 2 0 -sandbox%1:06:01:: 04134523 1 0 -sandboy%1:18:00:: 10550090 1 0 -sandbur%1:20:00:: 12113790 1 0 -sandburg%1:18:00:: 11280213 1 0 -sander%1:06:00:: 03250588 1 0 -sanderling%1:05:00:: 02029378 1 0 -sandfish%1:05:01:: 02558560 1 0 -sandfish%1:05:02:: 02529293 2 0 -sandfly%1:05:00:: 02204249 1 0 -sandfly_fever%1:26:00:: 14219487 1 0 -sandglass%1:06:00:: 04134632 1 0 -sandgrouse%1:05:00:: 01815601 1 0 -sandhi%1:10:00:: 07132937 1 0 -sandhopper%1:05:00:: 01993214 1 0 -sandiness%1:07:00:: 04949453 1 0 -sandlike%3:00:00:: 00142040 1 0 -sandlot%1:15:00:: 08645749 1 0 -sandman%1:18:00:: 09541526 1 0 -sandor_kellner%1:18:00:: 11109424 1 0 -sandpaper%1:27:00:: 14849880 1 1 -sandpaper%2:35:00:: 01386433 1 0 -sandpapery%5:00:00:rough:00 02242582 1 0 -sandpile%1:06:00:: 04134339 1 0 -sandpiper%1:05:00:: 02026059 1 0 -sandpit%1:06:00:: 04134339 2 0 -sandpit%1:17:00:: 09422190 1 0 -sandril%1:06:00:: 04078236 1 0 -sandro_botticelli%1:18:00:: 10859012 1 0 -sands%1:15:00:: 08596076 1 0 -sandspur%1:20:00:: 12113790 1 0 -sandstone%1:27:00:: 14995541 1 0 -sandstorm%1:19:00:: 11448153 1 0 -sandwich%1:13:00:: 07695965 1 6 -sandwich%2:35:00:: 01529906 2 0 -sandwich%2:36:00:: 01665081 1 0 -sandwich_board%1:06:00:: 04135118 1 0 -sandwich_islands%1:15:00:: 09079153 1 0 -sandwich_plate%1:13:00:: 07696403 1 0 -sandwichman%1:18:00:: 10550252 1 0 -sandwort%1:20:01:: 11805956 3 0 -sandwort%1:20:02:: 11812910 2 0 -sandwort%1:20:03:: 11813077 1 0 -sandy%3:00:02:: 00142040 2 0 -sandy%5:00:00:blond:00 00244199 1 1 -sandy_mushroom%1:20:00:: 13017240 1 0 -sane%3:00:00:: 02073443 1 2 -sane%5:00:00:rational:00 01926229 2 0 -sanely%4:02:00:: 00215811 1 0 -sanely%4:02:01:: 00081194 2 0 -saneness%1:26:00:: 14379501 1 0 -sanfoin%1:20:00:: 12552309 1 0 -sang%1:20:00:: 11800020 1 0 -sang-froid%1:07:00:: 04904162 1 0 -sangapenum%1:27:00:: 15019267 1 0 -sangaree%1:13:00:: 07916970 1 0 -sangay%1:15:00:: 09177103 1 0 -sanger%1:18:00:: 11280405 2 0 -sanger%1:18:01:: 11280653 1 0 -sango%1:10:00:: 06906028 1 0 -sangoma%1:18:00:: 10550369 1 0 -sangraal%1:06:00:: 03451909 1 0 -sangria%1:13:00:: 07916970 1 0 -sanguification%1:22:00:: 13492453 1 0 -sanguinaria%1:20:00:: 11907939 1 0 -sanguinaria_canadensis%1:20:00:: 11908077 1 0 -sanguinary%5:00:00:bloody:00 00248251 2 0 -sanguinary%5:00:03:bloody:00 00249104 1 0 -sanguinary_ant%1:05:00:: 02222035 1 0 -sanguine%1:07:00:: 04963111 1 0 -sanguine%5:00:00:healthy:00 01172139 2 0 -sanguine%5:00:00:optimistic:00 01664455 1 0 -sanguineness%1:12:00:: 07541760 1 0 -sanguineous%5:00:00:bloody:00 00249104 1 1 -sanguinity%1:12:00:: 07541760 1 0 -sanhedrin%1:14:00:: 08094262 1 0 -sanicle%1:20:00:: 12943443 1 0 -sanicula%1:20:00:: 12943302 1 0 -sanicula_arctopoides%1:20:00:: 12943743 1 0 -sanicula_bipinnatifida%1:20:00:: 12943912 1 0 -sanicula_europaea%1:20:00:: 12944095 1 0 -sanies%1:08:00:: 05417472 1 0 -sanious%3:01:00:: 02851709 1 0 -sanitariness%1:26:00:: 14494893 1 0 -sanitarium%1:06:00:: 04133497 1 0 -sanitary%3:00:00:: 02112976 1 0 -sanitary_code%1:10:00:: 06669193 1 0 -sanitary_condition%1:26:00:: 14494716 1 0 -sanitary_landfill%1:17:00:: 09422631 1 0 -sanitary_napkin%1:06:00:: 04135315 1 0 -sanitary_towel%1:06:00:: 04135315 1 0 -sanitate%2:40:00:: 02361981 1 0 -sanitation%1:04:00:: 00254415 2 1 -sanitation%1:26:00:: 14495466 1 1 -sanitation_department%1:14:00:: 08121694 1 0 -sanitisation%1:04:00:: 00254415 1 0 -sanitise%2:30:00:: 00554468 2 0 -sanitise%2:35:00:: 01245052 1 0 -sanitised%3:44:00:: 03153554 1 0 -sanitization%1:04:00:: 00254415 1 0 -sanitize%2:30:00:: 00554468 2 0 -sanitize%2:35:00:: 01245052 1 0 -sanitized%3:44:00:: 03153554 1 0 -sanity%1:26:00:: 14379501 1 1 -sannup%1:18:00:: 10550468 1 0 -sannyasi%1:18:00:: 10550551 1 0 -sannyasin%1:18:00:: 10550551 1 0 -sans_serif%1:10:00:: 06827947 1 0 -sansevieria%1:20:00:: 12480895 1 0 -sansevieria_guineensis%1:20:00:: 12481150 1 0 -sansevieria_trifasciata%1:20:00:: 12481458 1 0 -sansevieria_zeylanica%1:20:00:: 12481289 1 0 -sanskrit%1:10:00:: 06969129 1 0 -sanskrit_literature%1:10:00:: 06463347 1 0 -sanskritic_language%1:10:00:: 06969129 1 0 -sanson-flamsteed_projection%1:06:00:: 04223915 1 0 -santa%1:18:00:: 10550673 1 0 -santa_ana%1:15:00:: 09066534 3 0 -santa_ana%1:15:01:: 08738715 4 0 -santa_ana%1:18:00:: 11280905 2 0 -santa_ana%1:19:00:: 11442894 1 0 -santa_anna%1:18:00:: 11280905 1 0 -santa_barbara%1:15:00:: 09066665 1 0 -santa_catalina%1:15:00:: 09066948 1 0 -santa_clara%1:15:00:: 09066799 1 0 -santa_claus%1:18:00:: 10550673 1 0 -santa_cruz%1:15:00:: 09067138 1 0 -santa_cruz%1:15:01:: 08853510 2 0 -santa_cruz_cypress%1:20:00:: 11631619 1 0 -santa_fe%1:15:00:: 09116318 1 0 -santa_fe_trail%1:06:00:: 04135516 1 0 -santa_gertrudis%1:05:00:: 02405799 1 0 -santa_lucia_fir%1:20:00:: 11622771 1 0 -santa_maria_de_belem%1:15:00:: 08854855 1 0 -santa_maria_del_tule%1:15:00:: 08745513 1 0 -santa_maria_tree%1:20:00:: 12364940 1 0 -santa_sofia%1:06:00:: 03475118 1 0 -santa_sophia%1:06:00:: 03475118 1 0 -santalaceae%1:20:00:: 12734722 1 0 -santalales%1:20:00:: 12734446 1 0 -santalum%1:20:00:: 12735009 1 0 -santalum_album%1:20:00:: 12735160 1 0 -santee%1:10:00:: 06912838 2 0 -santee%1:18:00:: 09667572 1 0 -santee_dakota%1:18:00:: 09667572 1 0 -santee_sioux%1:18:00:: 09667572 1 0 -santiago%1:04:00:: 01293832 4 0 -santiago%1:15:00:: 08721559 3 0 -santiago%1:15:01:: 08750822 2 0 -santiago%1:15:02:: 08752671 1 0 -santiago_de_chile%1:15:00:: 08721559 1 0 -santiago_de_cuba%1:04:00:: 01293832 2 0 -santiago_de_cuba%1:15:00:: 08750822 1 0 -santiago_de_los_caballeros%1:15:00:: 08752671 1 0 -santiago_ramon_y_cajal%1:18:00:: 11253455 1 0 -santims%1:23:00:: 13701394 1 0 -santo_domingo%1:15:00:: 08752293 1 0 -santolina%1:20:00:: 12009250 1 0 -santolina_chamaecyparissus%1:20:00:: 12009420 1 0 -santos%1:15:00:: 08856630 1 0 -sanvitalia%1:20:00:: 12009616 1 0 -sanvitalia_procumbens%1:20:00:: 12009792 1 0 -sanwa_millet%1:20:00:: 12117912 1 0 -sanyasi%1:18:00:: 10550551 1 0 -sao_bernardo_do_campo%1:15:00:: 08856793 1 0 -sao_francisco%1:17:00:: 09423617 1 0 -sao_goncalo%1:15:00:: 08856945 1 0 -sao_joao_de_meriti%1:15:00:: 08857099 1 0 -sao_jose_dos_campos%1:15:00:: 08857260 1 0 -sao_louis%1:15:00:: 08857405 1 0 -sao_paulo%1:15:00:: 08857529 1 0 -sao_thome_e_principe%1:15:00:: 08992648 1 0 -sao_thome_e_principe_monetary_unit%1:23:00:: 13675456 1 0 -sao_tiago_island%1:15:00:: 08718253 1 0 -sao_tome%1:15:00:: 08993037 1 0 -sao_tome_and_principe%1:15:00:: 08992648 1 0 -sao_tome_e_principe%1:15:00:: 08992648 1 0 -saone%1:17:00:: 09423754 1 0 -saone_river%1:17:00:: 09423754 1 0 -sap%1:06:00:: 02847461 3 0 -sap%1:18:00:: 10100761 2 0 -sap%1:27:00:: 15038127 1 0 -sap%2:35:00:: 01310555 2 0 -sap%2:40:00:: 02280869 1 1 -sapele_mahogany%1:20:00:: 12698027 1 0 -saphar%1:28:00:: 15217443 1 0 -saphead%1:18:00:: 10100761 1 0 -saphenous_nerve%1:08:00:: 05568349 1 0 -saphenous_vein%1:08:00:: 05379734 1 0 -sapid%5:00:00:tasty:00 02396911 1 0 -sapidity%1:07:00:: 04996113 2 0 -sapidity%1:09:00:: 05715864 1 0 -sapidness%1:07:00:: 04996113 1 0 -sapience%1:09:00:: 05617107 1 0 -sapiens%3:01:00:: 02791838 1 0 -sapient%5:00:00:wise:00 02569558 1 0 -sapiential%5:00:00:wise:00 02570046 1 0 -sapiential_book%1:10:00:: 06461077 1 0 -sapiently%4:02:00:: 00272587 1 0 -sapindaceae%1:20:00:: 12740514 1 0 -sapindales%1:20:00:: 12740196 1 0 -sapindus%1:20:00:: 12741409 1 0 -sapindus_drumondii%1:20:00:: 12741586 1 0 -sapindus_marginatus%1:20:00:: 12741586 1 0 -sapindus_saponaria%1:20:00:: 12741792 1 0 -sapir%1:18:00:: 11281174 1 0 -sapless%5:00:00:frail:00 02040233 1 0 -sapless%5:00:00:juiceless:00 01369491 2 0 -sapling%1:20:00:: 13108481 1 1 -sapodilla%1:13:00:: 07764315 2 0 -sapodilla%1:20:00:: 12774641 1 0 -sapodilla_family%1:20:00:: 12772081 1 0 -sapodilla_plum%1:13:00:: 07764315 1 0 -sapodilla_tree%1:20:00:: 12774641 1 0 -saponaceous%3:01:00:: 03026319 1 0 -saponaria%1:20:00:: 11814440 1 0 -saponaria_officinalis%1:20:00:: 11814584 1 0 -saponaria_vaccaria%1:20:00:: 11818636 1 0 -saponification%1:22:00:: 13552858 1 0 -saponified%3:44:00:: 03155193 1 0 -saponify%2:30:00:: 00538571 2 0 -saponify%2:30:01:: 00538852 1 0 -saponin%1:27:00:: 14887925 1 0 -saporous%5:00:00:tasty:00 02396911 1 0 -sapota%1:13:00:: 07764315 1 0 -sapotaceae%1:20:00:: 12772081 1 0 -sapote%1:13:00:: 07764486 2 0 -sapote%1:20:00:: 12775919 1 0 -sapper%1:18:00:: 10551751 1 0 -sapper%1:18:01:: 10551576 2 0 -sapphic%5:00:00:homosexual:00 01202212 2 0 -sapphic%5:00:00:rhythmical:00 02020495 1 0 -sapphic_ode%1:10:00:: 06383934 1 0 -sapphire%1:07:00:: 04969242 3 0 -sapphire%1:21:00:: 13372812 2 0 -sapphire%1:27:00:: 15019483 1 0 -sapphire%5:00:00:chromatic:00 00383291 1 1 -sapphire_berry%1:20:00:: 12776774 1 0 -sapphirine%1:27:00:: 15012810 1 0 -sapphirine%3:01:00:: 03020663 1 0 -sapphism%1:04:00:: 00857424 1 0 -sappho%1:18:00:: 11281345 1 0 -sapporo%1:15:00:: 08925552 1 0 -sappy%5:00:00:foolish:00 02571536 1 0 -sappy%5:00:00:juicy:00 01369274 2 0 -sapraemia%1:26:00:: 14190132 1 0 -sapremia%1:26:00:: 14190132 1 0 -saprobe%1:20:00:: 13124358 1 0 -saprobic%3:01:00:: 03020884 1 0 -saprolegnia%1:20:00:: 12979630 1 0 -saprolegnia_ferax%1:20:00:: 12979829 1 0 -saprolegniales%1:20:00:: 12979478 1 0 -saprolite%1:27:00:: 14844560 1 0 -sapropel%1:27:00:: 14956921 1 0 -saprophagous%5:00:00:herbivorous:00 00314794 1 0 -saprophyte%1:20:00:: 13124164 1 0 -saprophytic%3:01:00:: 03020750 1 0 -saprophytic%5:00:00:herbivorous:00 00314927 2 0 -saprophytic_organism%1:20:00:: 13124164 1 0 -saprozoic%5:00:00:herbivorous:00 00314794 1 0 -sapsago%1:13:00:: 07855188 1 0 -sapsucker%1:05:00:: 01841102 1 0 -sapwood%1:20:00:: 13097536 1 0 -saqqara%1:15:00:: 08900047 1 0 -saqqarah%1:15:00:: 08900047 1 0 -saquinavir%1:06:00:: 04293608 1 0 -sara_teasdale%1:18:00:: 11334215 1 0 -saraband%1:04:00:: 00527198 2 0 -saraband%1:10:00:: 07057001 1 0 -saracen%1:18:00:: 10552203 2 0 -saracen%1:18:01:: 10552019 1 1 -saracen%1:18:02:: 10551898 3 0 -sarafem%1:06:00:: 03370927 1 0 -saragossa%1:15:00:: 09027679 1 0 -sarah%1:18:00:: 11281555 1 0 -sarah_bernhardt%1:18:00:: 10847994 1 0 -sarah_kemble_siddons%1:18:00:: 11299501 1 0 -sarah_siddons%1:18:00:: 11299501 1 0 -sarah_vaughan%1:18:00:: 11361423 1 0 -sarajevo%1:15:00:: 08818247 1 0 -saran%1:27:00:: 14593545 1 0 -saran_wrap%1:06:00:: 04135710 1 0 -sarape%1:06:00:: 04173907 1 0 -sarasota%1:15:00:: 09074707 1 0 -sarasvati%1:18:00:: 09528380 1 0 -saratoga%1:04:00:: 01294127 2 0 -saratoga%1:05:00:: 02545153 1 0 -saratoga_chip%1:13:00:: 07712559 1 0 -saratoga_spittlebug%1:05:00:: 02258629 1 0 -saratoga_springs%1:15:00:: 09125727 1 0 -saratov%1:15:00:: 09009693 1 0 -sarawak%1:15:00:: 08964474 1 0 -sarawakian%1:18:00:: 09730077 1 0 -sarawakian%3:01:00:: 03113705 1 0 -sarazen%1:18:00:: 11281682 1 0 -sarcasm%1:10:00:: 06777164 1 2 -sarcastic%3:00:00:: 02079029 1 4 -sarcastically%4:02:00:: 00445935 1 0 -sarcenet%1:06:00:: 04135933 1 0 -sarcobatus%1:20:00:: 11835114 1 0 -sarcobatus_vermiculatus%1:20:00:: 11835251 1 0 -sarcocephalus%1:20:00:: 12670172 1 0 -sarcocephalus_diderrichii%1:20:00:: 12668917 1 0 -sarcocephalus_esculentus%1:20:00:: 12670334 1 0 -sarcocephalus_latifolius%1:20:00:: 12670334 1 0 -sarcochilus%1:20:00:: 12081851 1 0 -sarcochilus_falcatus%1:20:00:: 12082131 1 0 -sarcocystidean%1:05:00:: 01426314 1 0 -sarcocystieian%1:05:00:: 01426314 1 0 -sarcocystis%1:05:00:: 01426160 1 0 -sarcodes%1:20:00:: 12259615 1 0 -sarcodes_sanguinea%1:20:00:: 12259788 1 0 -sarcodina%1:05:00:: 01389875 1 0 -sarcodine%1:05:00:: 01390123 1 0 -sarcodinian%1:05:00:: 01390123 1 0 -sarcoid%3:01:00:: 02729339 1 0 -sarcoidosis%1:26:00:: 14564934 1 0 -sarcolemma%1:08:00:: 05427570 1 0 -sarcolemmal%3:01:00:: 03007718 1 1 -sarcolemmic%3:01:00:: 02791943 1 0 -sarcolemnous%3:01:00:: 02791943 1 0 -sarcoma%1:26:00:: 14246359 1 0 -sarcomere%1:08:00:: 05460163 1 0 -sarcophaga%1:05:00:: 02192388 1 0 -sarcophaga_carnaria%1:05:00:: 02192513 1 0 -sarcophagus%1:06:00:: 04136045 1 0 -sarcophilus%1:05:00:: 01884703 1 0 -sarcophilus_hariisi%1:05:00:: 01884834 1 0 -sarcoplasm%1:08:00:: 05446971 1 0 -sarcoptes%1:05:00:: 01781410 1 0 -sarcoptid%1:05:00:: 01781698 1 0 -sarcoptidae%1:05:00:: 01781274 1 0 -sarcorhamphus%1:05:00:: 01620575 1 0 -sarcorhamphus_papa%1:05:00:: 01620735 1 0 -sarcoscypha_coccinea%1:20:00:: 13029326 1 0 -sarcoscyphaceae%1:20:00:: 13034277 1 0 -sarcosine%1:27:00:: 15019645 1 0 -sarcosomal%3:01:00:: 03007826 1 0 -sarcosomataceae%1:20:00:: 12983961 1 0 -sarcosome%1:08:00:: 05445546 1 0 -sarcosporidia%1:05:00:: 01425983 1 0 -sarcosporidian%1:05:00:: 01426314 1 0 -sarcostemma%1:20:00:: 13237788 1 0 -sarcostemma_acidum%1:20:00:: 13237988 1 0 -sarcostyle%1:08:00:: 05459953 1 0 -sard%1:27:00:: 15019734 1 0 -sarda%1:05:00:: 02627686 1 0 -sarda_chiliensis%1:05:00:: 02628259 1 0 -sarda_sarda%1:05:00:: 02628062 1 0 -sardegna%1:15:00:: 08810786 1 0 -sardegna%1:15:01:: 08810631 2 0 -sardina%1:05:00:: 02533075 1 0 -sardina_pilchardus%1:05:00:: 02533209 1 0 -sardine%1:05:01:: 02532602 2 1 -sardine%1:05:02:: 02533209 4 0 -sardine%1:13:00:: 07794063 1 1 -sardine%1:27:00:: 15019734 3 0 -sardine_oil%1:27:00:: 15019844 1 0 -sardinia%1:15:00:: 08810786 1 0 -sardinia%1:15:01:: 08810631 2 0 -sardinian%1:10:00:: 06964600 2 0 -sardinian%1:18:00:: 10552285 1 0 -sardinian%3:01:00:: 03025403 1 0 -sardinops%1:05:00:: 02533424 1 0 -sardinops_caerulea%1:05:00:: 02533545 1 0 -sardis%1:15:00:: 09042675 1 0 -sardius%1:27:00:: 15019734 1 0 -sardonic%5:00:00:sarcastic:00 02079830 1 1 -sardonically%4:02:00:: 00445935 1 0 -sardonyx%1:27:00:: 15019972 1 0 -saree%1:06:00:: 04136161 1 0 -sargasso%1:05:00:: 01405858 1 0 -sargasso_sea%1:17:00:: 09423943 1 0 -sargassum%1:05:00:: 01405858 1 0 -sargassum_bacciferum%1:05:00:: 01405858 1 0 -sargassum_fish%1:05:00:: 02549376 1 0 -sargent%1:18:00:: 11281837 1 0 -sari%1:06:00:: 04136161 1 1 -sarin%1:27:00:: 14961375 1 0 -sarnoff%1:18:00:: 11281995 1 0 -sarong%1:06:00:: 04136333 1 0 -saronic_gulf%1:17:00:: 09424118 1 0 -saroyan%1:18:00:: 11282154 1 0 -sarpanitu%1:18:00:: 09521648 1 0 -sarpedon%1:18:00:: 09501527 1 0 -sarracenia%1:20:00:: 12779437 1 0 -sarracenia_flava%1:20:00:: 12780563 1 0 -sarracenia_minor%1:20:00:: 12780325 1 0 -sarracenia_purpurea%1:20:00:: 12779851 1 0 -sarraceniaceae%1:20:00:: 12779233 1 0 -sarraceniales%1:20:00:: 12778926 1 0 -sars%1:26:00:: 14179946 1 0 -sarsaparilla%1:13:00:: 07928998 2 0 -sarsaparilla%1:20:00:: 12470092 1 0 -sarsaparilla_root%1:20:00:: 12470329 1 0 -sarsenet%1:06:00:: 04135933 1 0 -sartor%1:18:00:: 10689564 1 0 -sartorial%3:01:00:: 02792080 2 0 -sartorial%3:01:01:: 02792214 1 0 -sartorius%1:08:00:: 05589896 1 0 -sartorius_muscle%1:08:00:: 05589896 1 0 -sartre%1:18:00:: 11282286 1 0 -sarvepalli_radhakrishnan%1:18:00:: 11251995 1 0 -sas%1:14:00:: 08346031 1 0 -sash%1:06:00:: 04136510 1 1 -sash%1:06:01:: 03438071 2 1 -sash_cord%1:06:00:: 04136676 1 0 -sash_fastener%1:06:00:: 04136800 1 0 -sash_line%1:06:00:: 04136676 1 0 -sash_lock%1:06:00:: 04136800 1 0 -sash_weight%1:06:00:: 04136997 1 0 -sash_window%1:06:00:: 04137089 1 0 -sashay%1:04:00:: 00534152 2 0 -sashay%1:04:01:: 00541035 1 0 -sashay%1:04:02:: 00311809 3 0 -sashay%2:38:00:: 01916634 2 0 -sashay%2:38:01:: 01869196 1 1 -sashay%2:38:02:: 01895027 3 0 -sashimi%1:13:00:: 07879350 1 0 -saskatchewan%1:15:00:: 08829775 1 0 -saskatoon%1:13:00:: 07745661 2 0 -saskatoon%1:15:00:: 08830116 1 0 -sasquatch%1:18:00:: 09487385 1 0 -sass%1:10:00:: 06721949 1 0 -sass%2:32:00:: 00816143 1 0 -sassaby%1:05:00:: 02422391 1 0 -sassafras%1:13:00:: 07816052 2 0 -sassafras%1:20:00:: 11707229 1 0 -sassafras_albidum%1:20:00:: 11707229 1 0 -sassafras_laurel%1:20:00:: 11707827 1 0 -sassafras_oil%1:20:00:: 11707511 1 0 -sassafras_tree%1:20:00:: 11707229 1 0 -sassenach%1:18:00:: 10552393 1 0 -sassing%1:10:00:: 06721949 1 1 -sassy%5:00:00:forward:02 00205295 1 0 -sat%1:28:00:: 15164570 1 0 -satan%1:18:00:: 09543353 1 0 -satang%1:23:00:: 13663933 1 0 -satanic%3:01:00:: 02930503 2 0 -satanic%5:00:00:evil:00 01132515 1 1 -satanism%1:09:00:: 05979595 1 0 -satanist%1:18:00:: 10552486 1 0 -satanophobia%1:26:00:: 14385734 1 0 -satchel%1:06:00:: 04137217 1 0 -satchel_paige%1:18:00:: 11220664 1 0 -satchmo%1:18:00:: 10823199 1 0 -sate%2:34:00:: 01193721 1 0 -sateen%1:06:00:: 04137355 1 0 -satellite%1:06:00:: 04137444 1 4 -satellite%1:17:00:: 09424270 3 0 -satellite%1:18:00:: 10552639 2 0 -satellite%2:32:00:: 00969137 1 0 -satellite%5:00:00:outer:00 00950119 1 0 -satellite_receiver%1:06:00:: 04137773 1 0 -satellite_television%1:06:00:: 04137897 1 0 -satellite_transmitter%1:06:00:: 04138131 1 0 -satellite_tv%1:06:00:: 04137897 1 0 -satiable%5:00:00:satiate:00 02078264 1 0 -satiate%2:34:00:: 01193721 1 1 -satiate%2:34:01:: 01193099 2 0 -satiate%3:00:00:: 02078011 1 0 -satiated%3:00:00:: 02078011 1 0 -satiation%1:04:00:: 01072984 2 0 -satiation%1:26:00:: 14452151 1 0 -satie%1:18:00:: 11282434 1 0 -satiety%1:26:00:: 14452151 1 1 -satin%1:06:00:: 04138261 1 1 -satin_bird%1:05:00:: 01601068 1 0 -satin_bowerbird%1:05:00:: 01601068 1 0 -satin_flower%1:20:00:: 11891541 1 0 -satin_leaf%1:20:00:: 12773917 1 0 -satin_stitch%1:06:00:: 04138560 1 0 -satin_walnut%1:20:00:: 12316982 1 0 -satin_weave%1:06:00:: 04138671 1 0 -satinet%1:06:00:: 04138398 1 0 -satinette%1:06:00:: 04138398 1 0 -satinleaf%1:20:00:: 12773917 1 0 -satinpod%1:20:00:: 11891541 1 0 -satinwood%1:20:00:: 12697514 3 0 -satinwood%1:20:01:: 12715408 1 0 -satinwood%1:20:02:: 12697709 2 0 -satinwood_tree%1:20:00:: 12697514 1 0 -satiny%5:00:00:bright:00 00282675 1 0 -satire%1:10:00:: 06777164 1 7 -satiric%5:00:00:sarcastic:00 02080110 1 1 -satirical%5:00:00:sarcastic:00 02080110 1 1 -satirically%4:02:00:: 00210342 1 1 -satirise%2:32:00:: 00852685 1 0 -satirist%1:18:00:: 10552742 1 1 -satirize%2:32:00:: 00852685 1 0 -satisfaction%1:04:00:: 01072565 5 0 -satisfaction%1:12:00:: 07531255 1 10 -satisfaction%1:21:00:: 13292787 3 1 -satisfaction%1:21:01:: 13349997 4 0 -satisfaction%1:26:00:: 13986679 2 4 -satisfactorily%4:02:00:: 00015368 1 7 -satisfactoriness%1:07:00:: 04792127 1 0 -satisfactory%3:00:00:: 02080577 1 14 -satisfactory%5:00:00:good:01 01124768 2 7 -satisfiable%5:00:00:satiate:00 02078264 1 0 -satisfice%2:41:00:: 02369123 1 0 -satisfied%5:00:00:contented:00 00589344 1 11 -satisfied%5:00:00:mitigated:00 01519673 2 0 -satisfier%1:17:00:: 09424489 1 0 -satisfise%2:41:00:: 02369123 1 0 -satisfy%2:34:01:: 01183573 3 8 -satisfy%2:37:00:: 01816431 2 8 -satisfy%2:42:00:: 02671880 1 13 -satisfying%5:00:00:satisfactory:00 02081563 2 0 -satisfying%5:00:00:wholesome:00 02558528 1 0 -satisfyingly%4:02:00:: 00183464 1 0 -satori%1:09:00:: 05987969 1 0 -satrap%1:18:00:: 10553140 1 0 -satsuma%1:13:00:: 07748276 2 0 -satsuma%1:20:00:: 12710577 1 0 -satsuma_tree%1:20:00:: 12710577 1 0 -saturate%2:30:01:: 00456357 1 1 -saturate%2:30:04:: 00497705 2 0 -saturated%3:00:00:: 00757236 2 0 -saturated%3:00:01:: 00757923 1 1 -saturated%3:00:03:: 00393508 3 0 -saturated_fatty_acid%1:27:00:: 14740587 1 0 -saturation%1:04:00:: 00402671 2 1 -saturation%1:07:00:: 04975340 4 0 -saturation%1:22:00:: 13496517 1 2 -saturation%1:26:00:: 13925188 3 0 -saturation_bombing%1:04:00:: 00978993 1 0 -saturation_point%1:26:00:: 13925340 1 0 -saturday%1:28:00:: 15164570 1 26 -saturday_night_special%1:06:00:: 04138869 1 0 -satureia%1:20:00:: 12866824 1 0 -satureia_hortensis%1:20:00:: 12867184 1 0 -satureia_montana%1:20:00:: 12867449 1 0 -satureja%1:20:00:: 12866824 1 0 -satureja_acinos%1:20:00:: 12839574 1 0 -satureja_calamintha_glandulosa%1:20:00:: 12843557 1 0 -satureja_calamintha_officinalis%1:20:00:: 12843144 1 0 -satureja_douglasii%1:20:00:: 12857204 1 0 -satureja_grandiflora%1:20:00:: 12843316 1 0 -satureja_hortensis%1:20:00:: 12867184 1 0 -satureja_montana%1:20:00:: 12867449 1 0 -satureja_nepeta%1:20:00:: 12843557 1 0 -satureja_vulgaris%1:20:00:: 12843970 1 0 -saturn%1:17:00:: 09424642 1 3 -saturn%1:18:00:: 09558388 2 0 -saturnalia%1:04:00:: 00518442 1 0 -saturnalia%1:04:01:: 00511212 2 0 -saturnia%1:05:00:: 02301782 1 0 -saturnia_pavonia%1:05:00:: 02301935 1 0 -saturniid%1:05:00:: 02301452 1 0 -saturniid_moth%1:05:00:: 02301452 1 0 -saturniidae%1:05:00:: 02301072 1 0 -saturnine%5:00:00:ill-natured:00 01137378 2 0 -saturnine%5:00:00:sarcastic:00 02080318 1 0 -saturnism%1:26:00:: 14069895 1 0 -satyagraha%1:04:00:: 01243262 1 0 -satyendra_n._bose%1:18:00:: 10858577 1 0 -satyendra_nath_bose%1:18:00:: 10858577 1 0 -satyr%1:18:00:: 09548111 2 0 -satyr%1:18:01:: 10552980 1 0 -satyr_orchid%1:20:00:: 12052267 1 0 -satyr_play%1:10:00:: 07018824 1 0 -satyriasis%1:12:00:: 07490042 1 0 -satyric%3:01:00:: 03113881 1 0 -satyrical%3:01:00:: 03113881 1 0 -satyridae%1:05:00:: 02277556 1 0 -sauce%1:13:00:: 07829412 1 1 -sauce%2:30:00:: 00535844 3 0 -sauce%2:35:00:: 01364357 2 0 -sauce%2:41:00:: 02518956 1 0 -sauce-alone%1:20:00:: 11870418 1 0 -sauce_albert%1:13:00:: 07830841 1 0 -sauce_chausseur%1:13:00:: 07838659 1 0 -sauce_espagnole%1:13:00:: 07836077 2 0 -sauce_espagnole%1:13:01:: 07836269 1 0 -sauce_louis%1:13:00:: 07833333 1 0 -sauce_verte%1:13:00:: 07834618 1 0 -sauce_vinaigrette%1:13:00:: 07833816 1 0 -sauceboat%1:06:00:: 03456024 1 0 -saucepan%1:06:00:: 04138977 1 0 -saucepot%1:06:00:: 04139140 1 0 -saucer%1:06:00:: 04139291 2 0 -saucer%1:06:01:: 03206602 4 0 -saucer%1:06:02:: 03207305 3 0 -saucer%1:25:00:: 13875185 1 0 -saucer-eyed%5:00:00:eyed:00 00954760 1 0 -saucer-shaped%5:00:00:concave:00 00537073 1 0 -saucer_magnolia%1:20:00:: 11711289 1 0 -saucily%4:02:01:: 00366490 1 0 -sauciness%1:07:00:: 04649651 1 0 -saucy%5:00:00:forward:02 00205295 2 0 -saucy%5:00:00:spirited:00 02280090 1 0 -saudi%1:18:00:: 09729387 1 0 -saudi%3:01:00:: 03114139 1 0 -saudi-arabian%3:01:00:: 03114139 1 0 -saudi_arabia%1:15:00:: 08993288 1 0 -saudi_arabian%1:18:00:: 09729387 1 0 -saudi_arabian_monetary_unit%1:23:00:: 13698567 1 0 -saudi_arabian_riyal%1:23:00:: 13698706 1 0 -sauerbraten%1:13:00:: 07876026 1 0 -sauerkraut%1:13:00:: 07876189 1 0 -sauk%1:18:00:: 09667715 1 0 -saul%1:18:00:: 11282613 1 0 -saul%1:18:01:: 11225661 2 0 -saul_bellow%1:18:00:: 10843228 1 0 -saul_of_tarsus%1:18:00:: 11225661 1 0 -saul_steinberg%1:18:00:: 11314969 1 0 -sault_sainte_marie%1:15:00:: 08828013 1 0 -sauna%1:06:00:: 04139395 1 0 -saunter%1:04:00:: 00284101 2 0 -saunter%1:04:01:: 00289737 1 0 -saunter%2:38:00:: 01917980 1 0 -saunterer%1:18:00:: 10553235 1 0 -saurel%1:05:01:: 02580830 1 0 -saurel%1:05:02:: 02580679 2 0 -sauria%1:05:00:: 01673668 1 0 -saurian%1:05:00:: 01674216 1 0 -saurian%3:01:00:: 02853740 1 0 -saurischia%1:05:00:: 01707895 1 0 -saurischian%1:05:00:: 01708106 1 0 -saurischian_dinosaur%1:05:00:: 01708106 1 0 -sauromalus%1:05:00:: 01678237 1 0 -sauromalus_obesus%1:05:00:: 01678343 1 0 -sauropod%1:05:00:: 01708998 1 0 -sauropod_dinosaur%1:05:00:: 01708998 1 0 -sauropoda%1:05:00:: 01708778 1 0 -sauropodomorpha%1:05:00:: 01708332 1 0 -sauropterygia%1:05:00:: 01725240 1 0 -saurosuchus%1:05:00:: 01696026 1 0 -saururaceae%1:20:00:: 13151568 1 0 -saururus%1:20:00:: 13151820 1 0 -saururus_cernuus%1:20:00:: 13151975 1 0 -saury%1:05:00:: 02551668 1 0 -sausage%1:06:00:: 02850950 2 0 -sausage%1:13:00:: 07675627 1 1 -sausage-shaped%5:00:00:rounded:00 02044642 1 0 -sausage_balloon%1:06:00:: 02850950 1 0 -sausage_curl%1:08:00:: 05257967 1 0 -sausage_dog%1:05:00:: 02089468 1 0 -sausage_hound%1:05:00:: 02089468 1 0 -sausage_meat%1:13:00:: 07675962 1 0 -sausage_pizza%1:13:00:: 07874063 1 0 -sausage_roll%1:13:00:: 07627380 1 0 -saussure%1:18:00:: 10931634 1 0 -saussurea%1:20:00:: 12010021 1 0 -saussurea_costus%1:20:00:: 12010188 1 0 -saussurea_lappa%1:20:00:: 12010188 1 0 -saute%1:13:00:: 07655263 1 0 -saute%2:30:00:: 00326619 1 1 -saute%5:00:00:cooked:00 00618493 1 0 -sauteed%5:00:00:cooked:00 00618493 1 0 -sauteing%1:04:00:: 00246940 1 0 -sauterne%1:13:00:: 07898443 1 0 -sauternes%1:13:00:: 07898443 1 0 -sauvignon_blanc%1:13:00:: 07895962 2 0 -sauvignon_blanc%1:20:00:: 13146928 1 0 -sauvignon_grape%1:20:00:: 13146583 1 0 -savage%1:18:00:: 10553402 1 2 -savage%1:18:01:: 09845589 2 0 -savage%2:32:00:: 00823827 2 0 -savage%2:33:00:: 01120900 1 0 -savage%5:00:00:inhumane:00 01263013 1 6 -savage%5:00:00:noncivilized:00 00412788 3 1 -savage%5:00:00:violent:00 02511528 4 0 -savage%5:00:00:wild:01 02389520 2 1 -savagely%4:02:00:: 00201195 1 7 -savagely%4:02:02:: 00201467 2 1 -savageness%1:07:00:: 05038251 1 1 -savagery%1:04:00:: 00424934 3 0 -savagery%1:07:00:: 04830689 2 0 -savagery%1:07:01:: 05038251 1 0 -savanna%1:15:00:: 08645847 1 0 -savannah%1:15:00:: 09077821 1 4 -savannah%1:15:01:: 08645847 3 0 -savannah%1:17:00:: 09424865 2 0 -savannah_river%1:17:00:: 09424865 1 0 -savant%1:18:00:: 10206887 1 0 -savara%1:10:00:: 06980837 2 0 -savara%1:18:00:: 09675283 1 0 -savarin%1:13:00:: 07633960 1 0 -save%1:04:00:: 01079396 1 0 -save%2:30:00:: 00549552 6 4 -save%2:32:04:: 00998886 11 0 -save%2:40:00:: 02225492 2 16 -save%2:40:01:: 02265979 5 4 -save%2:40:02:: 02266920 4 4 -save%2:40:03:: 02283716 10 1 -save%2:40:04:: 02357228 9 1 -save%2:41:00:: 02551832 3 4 -save%2:41:01:: 02550868 1 41 -save%2:41:02:: 02551602 7 2 -save%2:41:05:: 02464583 8 2 -save-all%1:06:00:: 04139534 3 0 -save-all%1:06:01:: 04139642 2 0 -save-all%1:06:02:: 04139748 1 0 -save_up%2:40:00:: 02265979 1 0 -saved%3:00:00:: 01451498 1 1 -saved%5:00:00:preserved:01 00737703 2 0 -saveloy%1:13:00:: 07678193 1 0 -saver%1:18:00:: 10553627 2 0 -saver%1:18:01:: 10522759 1 1 -savin%1:20:00:: 11637991 1 0 -saving%1:04:00:: 00192613 1 6 -saving%1:04:01:: 00819024 3 0 -saving%1:04:02:: 00093483 2 1 -saving%5:00:00:good:02 01130733 1 1 -saving%5:00:00:thrifty:00 02421919 2 0 -saving_grace%1:07:00:: 04732852 2 0 -saving_grace%1:26:00:: 14458181 1 0 -savings%1:21:00:: 13359572 1 3 -savings_account%1:21:00:: 13364212 1 0 -savings_account_trust%1:21:00:: 13363365 1 0 -savings_and_loan%1:14:00:: 08422714 1 0 -savings_and_loan_association%1:14:00:: 08422714 1 0 -savings_bank%1:06:00:: 04139859 2 0 -savings_bank%1:14:00:: 08423057 1 0 -savings_bank_trust%1:21:00:: 13363365 1 0 -savings_bond%1:21:00:: 13340751 1 0 -savinien_cyrano_de_bergerac%1:18:00:: 10919598 1 0 -savior%1:18:00:: 10553805 2 0 -savior%1:18:01:: 11083656 1 1 -saviour%1:18:00:: 10553805 2 0 -saviour%1:18:01:: 11083656 1 0 -savitar%1:18:00:: 09528475 1 0 -savoir-faire%1:07:00:: 04842232 1 0 -savonarola%1:18:00:: 11282802 1 0 -savor%1:09:00:: 05715864 1 0 -savor%2:37:00:: 01820302 1 4 -savor%2:39:00:: 02193974 3 1 -savor%2:39:01:: 02194138 4 0 -savor%2:39:02:: 02194286 2 1 -savoriness%1:07:00:: 04995940 1 0 -savoring%1:04:00:: 00841901 1 0 -savorless%5:00:01:tasteless:01 02399595 1 0 -savorlessness%1:07:00:: 04997032 1 0 -savory%1:13:00:: 07820814 3 0 -savory%1:13:01:: 07594840 4 0 -savory%1:20:01:: 12866968 1 0 -savory%1:20:02:: 12857456 2 0 -savory%3:00:00:: 01627836 1 1 -savory%5:00:00:appetizing:00 00133669 3 0 -savory%5:00:00:tasty:00 02398378 2 0 -savour%1:09:00:: 05715864 1 0 -savour%2:37:00:: 01820302 4 0 -savour%2:39:00:: 02193974 3 0 -savour%2:39:01:: 02194138 2 0 -savour%2:39:02:: 02194286 1 0 -savouring%1:04:00:: 00841901 1 0 -savourless%5:00:01:tasteless:01 02399595 1 0 -savourlessness%1:07:00:: 04997032 1 0 -savoury%1:13:00:: 07820814 1 0 -savoury%1:13:01:: 07594840 2 0 -savoury%3:00:04:: 01627836 1 0 -savoury%5:00:00:appetizing:00 00133669 3 0 -savoury%5:00:00:tasty:00 02398378 2 0 -savoy%1:13:00:: 07714895 2 0 -savoy%1:15:00:: 08945277 1 0 -savoy_cabbage%1:13:00:: 07714895 2 0 -savoy_cabbage%1:20:00:: 11876204 1 0 -savoyard%1:18:00:: 09709155 2 0 -savoyard%1:18:01:: 10554024 1 0 -savvy%1:09:00:: 05805475 1 0 -savvy%2:31:00:: 00588221 1 1 -saw%1:06:00:: 04140064 2 0 -saw%1:06:01:: 03996145 3 0 -saw%1:10:00:: 07153838 1 0 -saw%2:35:00:: 01559590 1 1 -saw-like%5:00:00:rough:00 02242697 1 0 -saw-toothed%5:00:00:rough:02 02247785 1 0 -saw_log%1:27:00:: 15020203 1 0 -saw_logs%2:29:00:: 00017031 1 0 -saw_palmetto%1:20:00:: 12597466 1 0 -saw_set%1:06:00:: 04140853 1 0 -saw_wood%2:29:00:: 00017031 1 0 -sawan%1:28:00:: 15220385 1 0 -sawbill%1:05:00:: 01854415 1 0 -sawbones%1:18:00:: 10679174 1 0 -sawbuck%1:06:00:: 04140631 1 0 -sawdust%1:27:00:: 15020107 1 1 -sawdust_doll%1:06:00:: 04140340 1 0 -sawdust_mushroom%1:20:00:: 13019643 1 0 -sawdust_saloon%1:06:00:: 04140434 1 1 -sawed-off%5:00:00:short:01 01436791 2 0 -sawed-off%5:00:00:short:03 02387790 1 0 -sawed-off_shotgun%1:06:00:: 04140539 1 0 -sawfish%1:05:00:: 01497118 1 0 -sawfly%1:05:00:: 02218713 1 0 -sawhorse%1:06:00:: 04140631 1 1 -sawing_machine%1:06:00:: 03996145 1 0 -sawm%1:09:00:: 05914591 1 0 -sawmill%1:06:00:: 03697007 2 0 -sawmill%1:06:01:: 04140777 1 0 -sawn-off%5:00:00:short:01 01436791 2 0 -sawn-off%5:00:00:short:03 02387790 1 0 -sawpit%1:17:00:: 09425019 1 0 -sawtooth%1:06:00:: 04140976 1 0 -sawtoothed-edged%5:00:00:bordered:00 00258899 1 0 -sawwort%1:20:00:: 12014923 1 0 -sawyer%1:05:00:: 02169023 2 0 -sawyer%1:18:00:: 10554141 1 0 -sawyer_beetle%1:05:00:: 02169023 1 0 -sax%1:06:00:: 04141076 2 0 -sax%1:18:00:: 11283158 1 0 -saxatile%3:01:00:: 03114359 1 0 -saxe%1:15:00:: 08769179 2 0 -saxe%1:18:00:: 11283300 1 0 -saxe-coburg-gotha%1:14:00:: 08157809 1 0 -saxe-gothea%1:20:00:: 11659068 1 0 -saxe-gothea_conspicua%1:20:00:: 11659248 1 0 -saxegothea%1:20:00:: 11659068 1 0 -saxhorn%1:06:00:: 04141198 1 0 -saxicola%1:05:00:: 01560511 1 0 -saxicola_rubetra%1:05:00:: 01560935 1 0 -saxicola_torquata%1:05:00:: 01560793 1 0 -saxicoline%3:01:00:: 03114359 1 0 -saxicolous%3:01:00:: 03114359 1 0 -saxicolous_plant%1:20:00:: 13124019 1 0 -saxifraga%1:20:00:: 12792638 1 0 -saxifraga_aizoides%1:20:00:: 12793284 1 0 -saxifraga_granulata%1:20:00:: 12793494 1 0 -saxifraga_hypnoides%1:20:00:: 12793695 1 0 -saxifraga_occidentalis%1:20:00:: 12793886 1 0 -saxifraga_oppositifolia%1:20:00:: 12794135 1 0 -saxifraga_sarmentosam%1:20:00:: 12794568 1 0 -saxifraga_stellaris%1:20:00:: 12794367 1 0 -saxifraga_stolonifera%1:20:00:: 12794568 1 0 -saxifragaceae%1:20:00:: 12792041 1 0 -saxifrage%1:20:00:: 12793015 1 0 -saxifrage_family%1:20:00:: 12792041 1 0 -saxist%1:18:00:: 10554243 1 0 -saxitoxin%1:27:00:: 15020297 1 0 -saxo_grammaticus%1:18:00:: 11283517 1 0 -saxon%1:18:00:: 09702836 1 0 -saxon%3:01:00:: 03114508 1 0 -saxony%1:15:00:: 08769179 1 0 -saxophone%1:06:00:: 04141076 1 0 -saxophonist%1:18:00:: 10554243 1 0 -say%1:26:00:: 14485526 1 0 -say%2:32:00:: 01009240 1 1861 -say%2:32:01:: 01016002 2 254 -say%2:32:02:: 00978549 6 4 -say%2:32:03:: 00917300 3 29 -say%2:32:04:: 00746718 5 8 -say%2:32:07:: 00928959 7 2 -say%2:32:08:: 00945499 10 0 -say%2:32:09:: 00923197 11 0 -say%2:32:13:: 01009821 9 0 -say%2:32:15:: 00979870 8 1 -say%2:42:00:: 02730813 4 8 -say-so%1:07:00:: 05196582 3 0 -say-so%1:10:00:: 06727616 2 0 -say-so%1:10:01:: 07203613 1 0 -say_farewell%2:32:00:: 00900961 1 0 -say_hey_kid%1:18:00:: 11167269 1 0 -sayan_mountains%1:17:00:: 09425159 1 0 -sayanci%1:10:00:: 06983416 1 0 -sayda%1:15:00:: 08958212 1 0 -sayeret%1:14:00:: 08345770 1 0 -sayeret_mat'kal%1:14:00:: 08345770 1 0 -sayeret_matkal%1:14:00:: 08345770 1 0 -sayers%1:18:00:: 11283682 1 0 -saying%1:10:00:: 07151380 1 0 -sayonara%1:10:00:: 06629610 1 0 -sayornis%1:05:00:: 01549769 1 0 -sayornis_phoebe%1:05:00:: 01549886 1 0 -sazerac%1:13:00:: 07917133 1 0 -sb%1:10:00:: 06699579 2 0 -sb%1:27:00:: 14628668 1 0 -sba%1:14:00:: 08352994 1 0 -sbe%1:24:00:: 13833256 1 0 -sbw%1:24:00:: 13833504 1 0 -sc%1:14:00:: 08296332 3 0 -sc%1:15:00:: 09137869 2 0 -sc%1:27:00:: 14653831 1 0 -scab%1:08:00:: 05264247 2 0 -scab%1:18:00:: 10554455 1 0 -scab%2:29:00:: 00098963 1 1 -scab%2:41:00:: 02412939 2 0 -scabbard%1:06:00:: 04141327 1 0 -scabby%5:00:00:rough:00 02242798 1 0 -scabicide%1:27:00:: 15038316 1 0 -scabies%1:26:00:: 14180327 1 0 -scabiosa%1:20:00:: 12683407 1 0 -scabiosa_arvensis%1:20:00:: 12683791 1 0 -scabiosa_atropurpurea%1:20:00:: 12683571 1 0 -scabious%1:20:00:: 12683407 1 0 -scablands%1:17:00:: 09425344 1 0 -scabrous%5:00:00:dirty:02 00426068 2 0 -scabrous%5:00:00:rough:00 02241247 1 0 -scad%1:05:00:: 02580336 1 0 -scads%1:23:00:: 13777509 1 0 -scaffold%1:06:00:: 04141423 2 0 -scaffold%1:06:01:: 04141573 1 2 -scaffold%2:35:00:: 01217617 1 0 -scaffolding%1:06:00:: 04141712 1 0 -scag%1:06:00:: 02837416 1 0 -scalability%1:07:00:: 05210116 1 0 -scalable%3:00:00:: 02083222 1 0 -scalage%1:04:00:: 01005814 2 0 -scalage%1:04:01:: 01005957 1 0 -scalar%1:09:00:: 05864351 1 0 -scalar%3:01:00:: 03134771 2 0 -scalar%3:01:01:: 03134979 1 0 -scalar_field%1:14:00:: 08005877 1 2 -scalar_matrix%1:14:00:: 08269114 1 0 -scalar_product%1:09:00:: 05864884 1 0 -scalawag%1:18:01:: 10200047 3 0 -scalawag%1:18:02:: 10536728 2 0 -scalawag%1:18:03:: 10554666 1 0 -scald%1:04:00:: 00404058 2 0 -scald%1:26:00:: 14290107 1 0 -scald%2:30:00:: 00196758 4 0 -scald%2:30:01:: 00371717 3 0 -scald%2:30:02:: 00371823 2 0 -scald%2:32:00:: 00863906 1 0 -scalded_milk%1:13:00:: 07845775 1 0 -scale%1:05:00:: 01902877 10 0 -scale%1:06:00:: 04141838 8 0 -scale%1:06:02:: 04141975 7 0 -scale%1:06:03:: 03959701 9 0 -scale%1:10:00:: 06856568 6 0 -scale%1:17:00:: 09425607 5 0 -scale%1:20:00:: 13155759 4 2 -scale%1:24:00:: 13815342 2 10 -scale%1:24:01:: 13816862 3 6 -scale%1:24:03:: 13850304 1 10 -scale%2:30:00:: 00490428 7 0 -scale%2:30:01:: 00319406 8 0 -scale%2:35:00:: 01264148 6 0 -scale%2:36:00:: 01744082 2 1 -scale%2:38:00:: 01922466 5 0 -scale%2:38:01:: 01999082 4 0 -scale%2:40:00:: 02207036 3 0 -scale%2:42:00:: 02728388 1 1 -scale_down%2:30:00:: 00428247 1 0 -scale_down%2:30:01:: 00240131 2 0 -scale_factor%1:23:00:: 13734085 1 0 -scale_fern%1:20:00:: 13183489 1 0 -scale_insect%1:05:00:: 02248510 1 0 -scale_leaf%1:20:00:: 13155759 1 0 -scale_moss%1:20:00:: 11543105 1 0 -scale_of_c_major%1:10:00:: 06866442 1 0 -scale_of_measurement%1:24:00:: 13850304 1 0 -scale_up%2:30:00:: 00428418 1 0 -scale_value%1:09:00:: 05856867 1 0 -scale_wax%1:27:00:: 15020528 1 0 -scaled%5:00:01:armored:01 00144598 2 0 -scaled%5:00:02:armored:02 00147160 1 1 -scaleless%5:00:00:unarmored:02 00147659 1 0 -scalelike%5:00:00:close:01 00450269 1 0 -scalene%3:01:01:: 02792326 2 0 -scalene%3:01:02:: 02792424 1 0 -scalene_muscle%1:08:00:: 05590144 1 0 -scalene_triangle%1:25:00:: 13880704 1 0 -scalenus%1:08:00:: 05590144 1 0 -scalenus_syndrome%1:26:00:: 14309938 1 0 -scaler%1:06:00:: 04142175 1 0 -scaley%5:00:00:armored:02 00147160 1 0 -scalic%3:01:00:: 03141756 1 0 -scaliness%1:07:00:: 04948603 1 0 -scaling%1:04:01:: 01005284 2 0 -scaling%1:04:02:: 01010334 1 0 -scaling%1:04:03:: 00325364 3 0 -scaling_ladder%1:06:00:: 04142327 1 0 -scallion%1:13:00:: 07722485 2 0 -scallion%1:20:02:: 12434239 1 0 -scallop%1:05:00:: 01965889 4 0 -scallop%1:13:00:: 07797641 2 0 -scallop%1:13:02:: 07654886 3 0 -scallop%1:25:00:: 13874558 1 0 -scallop%2:30:00:: 00145299 5 0 -scallop%2:33:00:: 01140315 4 0 -scallop%2:35:00:: 01281912 3 0 -scallop%2:36:00:: 01679106 1 0 -scallop%2:36:01:: 01664847 2 0 -scallop_shell%1:05:00:: 01904806 1 0 -scalloped%5:00:00:rough:02 02246296 1 1 -scallopine%1:13:00:: 07876281 1 0 -scallopini%1:13:00:: 07876281 1 0 -scallywag%1:18:01:: 10200047 3 0 -scallywag%1:18:02:: 10536728 2 0 -scallywag%1:18:03:: 10554666 1 0 -scalp%1:08:00:: 05539947 1 1 -scalp%2:30:00:: 00198477 2 0 -scalp%2:40:00:: 02241911 1 0 -scalp_lock%1:08:00:: 05261203 1 0 -scalpel%1:06:00:: 04142434 1 0 -scalper%1:18:00:: 10554846 1 0 -scaly%5:00:00:armored:02 00147160 2 0 -scaly%5:00:00:rough:00 02241247 1 0 -scaly-tailed%5:00:00:caudate:00 00320177 1 0 -scaly_anteater%1:05:00:: 02461830 1 0 -scaly_fern%1:20:00:: 13183489 1 0 -scaly_lentinus%1:20:00:: 13002209 1 0 -scaly_pholiota%1:20:00:: 13009429 1 0 -scaly_polypore%1:20:00:: 13052931 1 0 -scam%1:04:00:: 00754280 1 0 -scam%2:41:00:: 02572119 1 0 -scammer%1:18:00:: 09955015 1 0 -scammony%1:20:01:: 12824289 3 0 -scammony%1:20:02:: 12824482 2 0 -scammony%1:20:03:: 12828520 1 0 -scammonyroot%1:20:00:: 12827907 1 0 -scamp%1:18:00:: 10200047 1 0 -scamp%2:36:00:: 01713983 1 0 -scamper%1:04:00:: 00556142 1 1 -scamper%2:38:00:: 01902405 1 5 -scampi%1:13:00:: 07876550 1 0 -scampo%1:13:00:: 07793521 1 0 -scan%1:04:00:: 00643943 1 3 -scan%1:06:00:: 04142549 2 0 -scan%2:31:00:: 00627520 7 0 -scan%2:32:00:: 01051828 6 0 -scan%2:35:00:: 01318659 3 1 -scan%2:38:00:: 01855447 5 0 -scan%2:39:00:: 02152278 2 6 -scan%2:39:01:: 02152504 1 9 -scan%2:42:00:: 02661142 4 0 -scandal%1:10:00:: 07223811 1 3 -scandal%1:11:00:: 07306252 2 1 -scandalisation%1:04:00:: 01225397 2 0 -scandalisation%1:26:00:: 14579489 1 0 -scandalise%2:37:00:: 01810447 1 0 -scandalization%1:04:00:: 01225397 2 0 -scandalization%1:26:00:: 14579489 1 0 -scandalize%2:37:00:: 01810447 1 1 -scandalmonger%1:18:00:: 10555059 1 0 -scandalmongering%1:10:00:: 07135627 1 0 -scandalmongering%5:00:00:sensational:00 02101942 1 0 -scandalous%5:00:00:immoral:00 01549964 1 0 -scandalously%4:02:00:: 00446291 1 0 -scandalousness%1:07:00:: 04808516 1 0 -scandent%5:00:00:ascending:00 02485168 1 0 -scandentia%1:05:00:: 02494538 1 0 -scandinavia%1:15:00:: 08760510 2 0 -scandinavia%1:15:01:: 08760856 1 0 -scandinavian%1:10:00:: 06953731 2 0 -scandinavian%1:18:00:: 09730204 1 0 -scandinavian%3:01:02:: 02960130 1 1 -scandinavian_country%1:15:00:: 08697827 1 0 -scandinavian_language%1:10:00:: 06953731 1 0 -scandinavian_lox%1:13:00:: 07796877 1 0 -scandinavian_nation%1:15:00:: 08697827 1 0 -scandinavian_peninsula%1:15:00:: 08760856 1 0 -scandium%1:27:00:: 14653831 1 0 -scanner%1:06:00:: 04142731 4 0 -scanner%1:06:01:: 04142999 3 0 -scanner%1:06:02:: 04143140 2 0 -scanner%1:18:00:: 10555156 1 0 -scanning%1:04:00:: 00644156 2 0 -scanning%1:22:00:: 13553083 1 0 -scansion%1:10:00:: 07094508 1 0 -scant%2:40:00:: 02225739 3 0 -scant%2:41:00:: 02509820 2 0 -scant%2:41:01:: 02516437 1 0 -scant%5:00:00:insufficient:00 02337329 1 2 -scantily%4:02:00:: 00073763 1 0 -scantily_clad%5:00:00:unclothed:00 00459443 1 0 -scantiness%1:07:00:: 05113462 1 0 -scantling%1:06:00:: 04143365 1 0 -scantness%1:07:00:: 05113462 1 0 -scanty%1:06:00:: 03885028 1 0 -scanty%5:00:00:meager:00 00106821 1 1 -scape%1:06:00:: 04182708 2 0 -scape%1:20:00:: 13130726 1 0 -scapegoat%1:18:00:: 10555311 1 0 -scapegrace%1:18:00:: 10555430 1 0 -scaphiopus%1:05:00:: 01648993 1 0 -scaphiopus_bombifrons%1:05:00:: 01649726 1 0 -scaphiopus_hammondii%1:05:00:: 01649412 1 0 -scaphiopus_multiplicatus%1:05:00:: 01649556 1 0 -scaphocephaly%1:26:00:: 14468508 1 0 -scaphoid%5:00:00:formed:00 02148526 1 0 -scaphoid_bone%1:08:00:: 05272276 1 0 -scaphopod%1:05:00:: 01941223 1 0 -scaphopoda%1:05:00:: 01941030 1 0 -scaphosepalum%1:20:00:: 12082357 1 0 -scapose%5:00:00:leafless:00 01703797 1 0 -scapula%1:08:00:: 05279688 1 0 -scapular%1:05:00:: 02469248 1 1 -scapular%1:06:00:: 04143492 2 0 -scapular%3:01:00:: 02792550 1 0 -scapulary%1:06:00:: 04143492 1 0 -scapulohumeral%3:01:00:: 02792661 1 0 -scar%1:07:00:: 04693900 2 4 -scar%1:26:00:: 14363483 1 7 -scar%2:35:00:: 01551195 1 0 -scar_tissue%1:08:00:: 05583822 1 0 -scarab%1:05:00:: 02172518 1 0 -scarabaean%1:05:00:: 02171869 1 0 -scarabaeid%1:05:00:: 02171869 1 0 -scarabaeid_beetle%1:05:00:: 02171869 1 0 -scarabaeidae%1:05:00:: 02171633 1 0 -scarabaeus%1:05:00:: 02172518 1 0 -scarabaeus_sacer%1:05:00:: 02172518 1 0 -scaramouch%1:18:00:: 10555538 1 0 -scaramouche%1:18:00:: 10555538 1 0 -scarce%3:00:00:: 00016756 1 0 -scarce%4:02:00:: 00002621 1 1 -scarcely%4:02:00:: 00002621 1 10 -scarcely%4:02:02:: 00003093 2 0 -scarceness%1:07:00:: 05116953 1 0 -scarcity%1:07:00:: 05116953 1 1 -scardinius%1:05:00:: 01442591 1 0 -scardinius_erythrophthalmus%1:05:00:: 01442710 1 0 -scare%1:12:00:: 07521437 2 0 -scare%1:26:00:: 14405931 1 0 -scare%2:37:00:: 01779165 1 4 -scare%2:37:04:: 01785748 2 2 -scare_away%2:37:00:: 01785748 1 0 -scare_off%2:37:00:: 01785748 1 2 -scare_quote%1:10:00:: 06844594 1 0 -scarecrow%1:06:00:: 04143712 1 0 -scarecrowish%5:00:00:thin:03 00990053 1 1 -scared%5:00:00:afraid:00 00079629 1 9 -scaremonger%1:18:00:: 10555679 1 0 -scarer%1:06:00:: 04143712 1 0 -scarey%5:00:00:alarming:00 00194924 1 0 -scarf%1:06:00:: 04143897 1 2 -scarf%1:06:01:: 04144241 2 0 -scarf%2:29:00:: 00051060 3 0 -scarf%2:35:00:: 01431132 1 0 -scarf%2:35:01:: 01294889 2 0 -scarf_bandage%1:06:00:: 04239436 1 0 -scarf_joint%1:06:00:: 04144241 1 0 -scarf_out%2:34:00:: 01193099 1 0 -scarface%1:18:00:: 10881784 1 0 -scarfpin%1:06:00:: 04434670 1 0 -scaridae%1:05:00:: 02610541 1 0 -scarify%2:35:00:: 01274745 1 1 -scarify%2:35:01:: 01275427 3 0 -scarify%2:35:02:: 01275658 2 0 -scarily%4:02:00:: 00345791 1 0 -scarlatina%1:26:00:: 14124070 1 0 -scarlet%1:07:00:: 04964977 1 0 -scarlet%5:00:00:chromatic:00 00381097 1 0 -scarlet-crimson%5:00:00:chromatic:00 00383429 1 0 -scarlet-pink%5:00:00:chromatic:00 00383521 1 0 -scarlet_bugler%1:20:00:: 12885265 1 0 -scarlet_bush%1:20:00:: 12668131 1 0 -scarlet_clematis%1:20:00:: 11730602 1 0 -scarlet_cup%1:20:00:: 13029326 1 0 -scarlet_fever%1:26:00:: 14124070 1 0 -scarlet_fritillary%1:20:00:: 12453857 1 0 -scarlet_hamelia%1:20:00:: 12668131 1 0 -scarlet_haw%1:20:00:: 12626878 1 0 -scarlet_letter%1:10:00:: 06839737 1 0 -scarlet_lychnis%1:20:00:: 11811921 1 0 -scarlet_maple%1:20:00:: 12753573 1 0 -scarlet_musk_flower%1:20:00:: 11836327 1 0 -scarlet_oak%1:20:00:: 12271187 1 0 -scarlet_pimpernel%1:20:00:: 12092417 1 0 -scarlet_plume%1:20:00:: 12921499 1 0 -scarlet_runner%1:13:00:: 07728391 3 0 -scarlet_runner%1:20:01:: 12557681 1 0 -scarlet_runner%1:20:02:: 12537253 2 0 -scarlet_runner_bean%1:13:00:: 07728391 2 0 -scarlet_runner_bean%1:20:00:: 12557681 1 0 -scarlet_strawberry%1:20:00:: 12630999 1 0 -scarlet_sumac%1:20:00:: 12763529 1 0 -scarlet_tanager%1:05:00:: 01597737 1 0 -scarlet_wisteria_tree%1:20:00:: 12569851 1 0 -scarp%1:06:00:: 03296328 2 0 -scarp%1:17:00:: 09274152 1 0 -scarper%2:38:00:: 02075049 1 0 -scarred%5:00:00:blemished:00 00246727 2 1 -scarred%5:00:00:marked:00 01480684 1 1 -scartella%1:05:00:: 02613687 1 0 -scartella_cristata%1:05:00:: 02613820 1 0 -scary%5:00:00:alarming:00 00194924 1 0 -scat%1:04:00:: 00547244 1 0 -scat%2:38:00:: 02075049 1 0 -scat_singing%1:04:00:: 00547244 1 0 -scathe%1:04:00:: 00403092 1 0 -scathing%5:00:00:critical:01 00648614 1 1 -scathingly%4:02:00:: 00446437 1 1 -scatological%5:00:00:dirty:02 00426186 1 0 -scatology%1:04:00:: 00646504 2 0 -scatology%1:10:00:: 07124928 1 0 -scatophagy%1:04:00:: 00842597 1 0 -scatter%1:04:00:: 00369138 2 0 -scatter%1:07:00:: 05088324 1 0 -scatter%2:30:00:: 00330565 5 1 -scatter%2:35:00:: 01376245 3 2 -scatter%2:35:01:: 01501676 4 1 -scatter%2:38:00:: 02028994 2 4 -scatter%2:38:01:: 02030424 1 5 -scatter%2:38:02:: 02082690 6 0 -scatter_pin%1:06:00:: 04144434 1 0 -scatter_rug%1:06:00:: 04144539 1 0 -scatterbrain%1:18:00:: 10555825 1 0 -scatterbrained%5:00:00:foolish:00 02572420 1 0 -scatterbrained%5:00:00:frivolous:00 02121123 2 0 -scattered%5:00:00:distributed:00 00542099 1 7 -scattered%5:00:00:incoherent:00 00465221 2 0 -scattergood%1:18:00:: 10635460 1 0 -scattergun%1:06:00:: 04206356 1 0 -scattering%1:04:00:: 00369138 5 0 -scattering%1:11:00:: 07331759 4 0 -scattering%1:19:01:: 11506167 3 0 -scattering%1:22:00:: 13553251 2 0 -scattering%1:23:00:: 13761966 1 0 -scattershot%5:00:00:undiscriminating:00 00776192 1 0 -scatty%5:00:00:foolish:00 02572420 1 0 -scatty%5:00:00:inattentive:00 00165171 2 0 -scaup%1:05:00:: 01851375 1 0 -scaup_duck%1:05:00:: 01851375 1 0 -scauper%1:06:00:: 04144651 1 0 -scavenge%2:30:00:: 00180837 4 0 -scavenge%2:34:00:: 01177973 3 0 -scavenge%2:35:00:: 01534043 1 0 -scavenge%2:35:01:: 01381357 2 0 -scavenger%1:05:00:: 01316422 3 0 -scavenger%1:18:00:: 10281276 2 0 -scavenger%1:27:00:: 15020628 1 1 -scavenger_cell%1:08:00:: 05450888 1 0 -scd%1:10:00:: 06705787 1 0 -sceliphron%1:05:00:: 02215496 1 0 -sceloglaux%1:05:00:: 01624987 1 0 -sceloglaux_albifacies%1:05:00:: 01625121 1 0 -sceloporus%1:05:00:: 01680137 1 0 -sceloporus_graciosus%1:05:00:: 01680983 1 0 -sceloporus_occidentalis%1:05:00:: 01680655 1 0 -sceloporus_undulatus%1:05:00:: 01680813 1 0 -scenario%1:10:00:: 07012135 1 1 -scenario%1:10:01:: 06756111 3 0 -scenario%1:15:00:: 08568430 2 0 -scenarist%1:18:00:: 10555936 1 0 -scend%2:38:00:: 01885239 1 0 -scene%1:06:00:: 04145056 10 0 -scene%1:06:01:: 04144782 8 1 -scene%1:09:00:: 05933246 3 13 -scene%1:10:00:: 07009808 6 7 -scene%1:10:01:: 06614729 4 8 -scene%1:11:00:: 07360841 2 17 -scene%1:15:00:: 08645963 1 18 -scene%1:15:01:: 08568256 9 0 -scene%1:26:00:: 13937075 5 7 -scene%1:26:01:: 14406303 7 1 -scene-stealer%1:18:00:: 10556235 1 0 -scene_of_action%1:06:00:: 02736511 1 0 -scene_painter%1:18:00:: 10556033 2 0 -scene_painter%1:18:01:: 10556401 1 0 -scenery%1:06:00:: 04145056 1 3 -scenery%1:15:00:: 08646787 2 1 -sceneshifter%1:18:00:: 10556124 1 0 -scenic%3:01:00:: 02792789 2 0 -scenic%5:00:00:beautiful:00 00220600 1 5 -scenic_artist%1:18:00:: 10556401 1 0 -scenic_railway%1:06:00:: 04145322 1 0 -scenically%4:02:00:: 00126198 1 0 -scent%1:07:00:: 04980008 3 1 -scent%1:09:00:: 05714161 2 1 -scent%1:09:01:: 05714466 1 3 -scent%2:29:00:: 00043480 3 0 -scent%2:39:01:: 02125223 2 0 -scent%2:39:02:: 02125641 1 0 -scent_out%2:39:00:: 02125460 1 0 -scented%3:00:00:: 01058179 1 2 -scented%5:00:00:odorous:00 01057103 4 0 -scented%5:00:01:fragrant:00 01052611 3 1 -scented%5:00:02:fragrant:00 01052888 2 1 -scented_fern%1:20:01:: 13189428 1 0 -scented_fern%1:20:02:: 12023726 3 0 -scented_fern%1:20:03:: 12956922 2 0 -scented_penstemon%1:20:00:: 12887293 1 0 -scented_wattle%1:20:00:: 11757851 1 0 -scentless%3:00:00:: 01058281 1 0 -scentless%5:00:00:odorless:00 01058029 2 0 -scentless_camomile%1:20:00:: 12028424 1 0 -scentless_false_camomile%1:20:00:: 12028424 1 0 -scentless_hayweed%1:20:00:: 12028424 1 0 -scentless_mayweed%1:20:00:: 12028424 1 0 -scepter%1:10:00:: 07267573 2 0 -scepter%1:26:00:: 14443676 1 0 -sceptered%5:00:00:authorized:00 00179315 1 0 -sceptic%1:18:00:: 10604634 1 0 -sceptical%5:00:00:distrustful:00 02463847 1 0 -sceptical%5:00:00:incredulous:00 00647247 2 0 -sceptically%4:02:00:: 00446593 1 0 -scepticism%1:09:00:: 05980051 1 1 -sceptre%1:10:00:: 07267573 2 0 -sceptre%1:26:00:: 14443676 1 0 -sceptred%5:00:00:authorized:00 00179315 1 0 -scet%1:28:00:: 15131448 1 0 -schadenfreude%1:12:00:: 07491591 1 0 -schaffneria%1:20:00:: 13183874 1 0 -schaffneria_nigripes%1:20:00:: 13184001 1 0 -schedule%1:09:00:: 05910940 1 11 -schedule%1:10:00:: 06495328 2 6 -schedule%2:31:00:: 00678282 1 21 -schedule%2:32:00:: 00794981 2 6 -schedule_feeding%1:04:00:: 01059306 1 0 -scheduled%3:00:00:: 02366716 1 1 -scheduled_fire%1:04:00:: 00993377 1 0 -scheduled_maintenance%1:04:00:: 00270539 1 0 -scheduled_territories%1:14:00:: 08303097 1 0 -scheduler%1:06:00:: 04145417 1 0 -scheduling%1:04:00:: 01144355 1 0 -scheele%1:18:00:: 11283843 1 0 -scheelite%1:27:00:: 15020794 1 0 -schefflera%1:20:00:: 11800359 1 0 -schefflera_actinophylla%1:20:00:: 11800565 1 0 -scheldt%1:17:00:: 09425835 1 0 -scheldt_river%1:17:00:: 09425835 1 0 -schema%1:09:00:: 05891572 2 0 -schema%1:09:01:: 05927813 1 0 -schematic%1:06:00:: 04145578 1 0 -schematic%5:00:00:nonrepresentational:00 01980796 1 3 -schematic_drawing%1:06:00:: 04145578 1 0 -schematically%4:02:00:: 00446735 1 0 -schematisation%1:04:00:: 00900207 1 0 -schematisation%1:04:01:: 00192457 2 0 -schematise%2:30:01:: 00568234 1 0 -schematization%1:04:00:: 00900207 1 0 -schematization%1:04:01:: 00192457 2 0 -schematize%2:30:01:: 00568234 2 0 -schematize%2:36:00:: 01632103 1 0 -scheme%1:09:00:: 05905348 1 10 -scheme%1:09:01:: 05927813 4 0 -scheme%1:09:02:: 05891572 5 0 -scheme%1:10:00:: 06756680 2 1 -scheme%1:14:00:: 08435388 3 0 -scheme%2:31:00:: 00707956 1 1 -scheme%2:31:01:: 00708376 2 0 -scheme_arch%1:06:00:: 04226172 1 0 -schemer%1:18:00:: 10556518 1 0 -scheming%5:00:00:artful:00 00148852 2 0 -scheming%5:00:00:hard:02 01155603 1 0 -schemozzle%1:26:00:: 13976907 1 0 -schenectady%1:15:00:: 09125354 1 0 -scheol%1:09:00:: 05629381 1 0 -scherzo%1:10:00:: 07046917 1 1 -scheuchzeriaceae%1:20:00:: 12617140 1 0 -schiaparelli%1:18:00:: 11284024 2 0 -schiaparelli%1:18:01:: 11284216 1 0 -schick_test%1:09:00:: 05745648 1 0 -schiller%1:18:00:: 11284409 1 0 -schilling%1:23:00:: 13705929 1 0 -schinus%1:20:00:: 12764703 1 0 -schinus_chichita%1:20:00:: 12764978 1 0 -schinus_molle%1:20:00:: 12765115 1 0 -schinus_terebinthifolius%1:20:00:: 12765402 1 0 -schipperke%1:05:00:: 02104365 1 0 -schism%1:04:00:: 00386676 1 1 -schism%1:11:00:: 07314078 2 0 -schismatic%3:01:00:: 03115053 1 0 -schismatical%3:01:00:: 03115053 1 0 -schismatically%4:02:00:: 00511284 1 0 -schist%1:27:00:: 14889371 1 0 -schistorrhachis%1:26:00:: 14471224 1 0 -schistosoma%1:05:00:: 01926988 1 0 -schistosomatidae%1:05:00:: 01926840 1 0 -schistosome%1:05:00:: 01927159 1 0 -schistosome_dermatitis%1:26:00:: 14224547 1 0 -schistosomiasis%1:26:00:: 14180565 1 0 -schizachyrium%1:20:00:: 12133332 1 0 -schizachyrium_scoparium%1:20:00:: 12133462 1 0 -schizaea%1:20:00:: 12955191 1 0 -schizaea_pusilla%1:20:00:: 12955414 1 0 -schizaeaceae%1:20:00:: 12954978 1 0 -schizanthus%1:20:00:: 12913144 1 0 -schizocarp%1:20:00:: 13150592 1 0 -schizogony%1:22:00:: 13553418 1 0 -schizoid%1:26:00:: 14388758 1 0 -schizoid%3:01:00:: 03115277 1 0 -schizoid%5:00:00:neurotic:00 01585892 2 0 -schizomycetes%1:05:00:: 01358135 1 0 -schizopetalon%1:20:00:: 11896141 1 0 -schizopetalon_walkeri%1:20:00:: 11896141 1 0 -schizophragma%1:20:00:: 12791539 1 0 -schizophragma_hydrangeoides%1:20:00:: 12791790 1 0 -schizophrenia%1:26:00:: 14398523 1 0 -schizophrenic%1:18:00:: 10556704 1 1 -schizophrenic%3:01:00:: 03115277 2 1 -schizophrenic%5:00:01:insane:00 02077741 1 4 -schizophrenic_disorder%1:26:00:: 14398523 1 0 -schizophrenic_psychosis%1:26:00:: 14398523 1 0 -schizophyceae%1:05:00:: 01358904 1 0 -schizophyta%1:05:00:: 01357967 1 0 -schizopoda%1:05:00:: 01988319 1 0 -schizosaccharomyces%1:20:00:: 13026339 1 0 -schizosaccharomycetaceae%1:20:00:: 13026146 1 0 -schizothymia%1:26:00:: 14393033 1 0 -schizotypal_personality%1:26:00:: 14388758 1 0 -schleiden%1:18:00:: 11284541 1 0 -schlemiel%1:18:00:: 10556825 1 0 -schlemm's_canal%1:08:00:: 05251789 1 0 -schlep%1:04:00:: 00310425 2 0 -schlep%1:18:00:: 10556953 1 0 -schlep%2:35:00:: 01453718 1 0 -schlepper%1:18:00:: 10556953 1 0 -schlesien%1:15:00:: 09166534 1 0 -schlesinger%1:18:00:: 11284742 2 0 -schlesinger%1:18:01:: 11284884 1 0 -schliemann%1:18:00:: 11285091 1 0 -schlimazel%1:18:00:: 10557094 1 0 -schlock%1:06:00:: 04145735 1 0 -schlockmeister%1:18:00:: 10557246 1 0 -schlumbergera%1:20:00:: 11853191 1 0 -schlumbergera_baridgesii%1:20:00:: 11853356 1 0 -schlumbergera_buckleyi%1:20:00:: 11853356 1 0 -schlumbergera_gaertneri%1:20:00:: 11848009 1 0 -schlumbergera_truncatus%1:20:00:: 11854479 1 0 -schmaltz%1:07:00:: 04627936 1 0 -schmaltzy%5:00:00:emotional:00 00854413 1 0 -schmalz%1:07:00:: 04627936 1 0 -schmalzy%5:00:00:emotional:00 00854413 1 0 -schmear%1:14:00:: 08400605 1 0 -schmeer%1:14:00:: 08400605 1 0 -schmegegge%1:10:00:: 06609785 1 0 -schmidt%1:18:00:: 11285282 1 0 -schmidt_camera%1:06:00:: 04145863 1 0 -schmidt_telescope%1:06:00:: 04145863 1 0 -schmo%1:18:00:: 10557404 1 0 -schmoose%1:10:00:: 07134850 1 0 -schmoose%2:32:00:: 01039162 1 0 -schmooze%1:10:00:: 07134850 1 0 -schmooze%2:32:00:: 01039162 1 0 -schmoozer%1:18:00:: 09961999 1 0 -schmuck%1:18:00:: 10557404 1 0 -schnabel%1:18:00:: 11285456 1 0 -schnapps%1:13:00:: 07905474 1 0 -schnaps%1:13:00:: 07905474 1 0 -schnauzer%1:05:00:: 02096756 1 0 -schnecken%1:13:00:: 07693223 1 0 -schnittlaugh%1:20:00:: 12435152 1 0 -schnitzel%1:13:00:: 07880458 1 0 -schnook%1:18:00:: 10557517 1 0 -schnorchel%1:06:00:: 04250850 1 0 -schnorkel%1:06:00:: 04250850 1 0 -schnorr%2:40:00:: 02270165 1 0 -schnorrer%1:18:00:: 10557699 1 0 -schnoz%1:08:00:: 05598707 1 0 -schnozzle%1:08:00:: 05598707 1 0 -schoenberg%1:18:00:: 11285902 1 0 -schola_cantorum%1:14:00:: 08410092 1 0 -scholar%1:18:00:: 10557854 1 7 -scholar%1:18:01:: 10251779 2 1 -scholar%1:18:02:: 10558773 3 0 -scholarly%3:00:00:: 02083615 1 2 -scholarly_person%1:18:00:: 10557854 1 0 -scholarship%1:09:00:: 05985999 2 4 -scholarship%1:21:00:: 13266170 1 7 -scholastic%1:18:00:: 10411356 1 1 -scholastic%1:18:01:: 10558896 2 0 -scholastic%3:01:00:: 02792903 1 2 -scholastic%3:01:01:: 02793094 2 1 -scholastically%4:02:00:: 00126307 1 1 -scholasticism%1:07:00:: 04802079 2 0 -scholasticism%1:09:00:: 05976065 1 0 -scholia%1:10:00:: 06506037 1 0 -scholiast%1:18:00:: 10559009 1 0 -scholium%1:10:00:: 06506037 1 0 -schomburgkia%1:20:00:: 12082593 1 0 -schonbein%1:18:00:: 11285692 1 0 -schonberg%1:18:00:: 11285902 1 0 -school%1:06:00:: 04146050 2 12 -school%1:09:00:: 05757536 3 6 -school%1:14:00:: 08276720 1 125 -school%1:14:01:: 07995453 7 0 -school%1:14:02:: 08275185 4 4 -school%1:14:03:: 08277393 6 0 -school%1:28:00:: 15203229 5 1 -school%2:38:00:: 01961334 3 0 -school%2:41:01:: 02387910 1 2 -school%2:41:02:: 02388403 2 0 -school-age_child%1:18:00:: 10559288 1 0 -school_assignment%1:04:00:: 00728641 1 0 -school_bell%1:06:00:: 04146504 1 0 -school_board%1:14:00:: 08413408 1 2 -school_bus%1:06:00:: 04146614 1 0 -school_crossing%1:06:00:: 04146721 1 0 -school_day%1:28:00:: 15222540 1 0 -school_day%1:28:01:: 15203229 2 0 -school_dictionary%1:10:00:: 06419757 1 0 -school_district%1:15:00:: 08587709 1 0 -school_newspaper%1:10:00:: 06267758 1 0 -school_of_dentistry%1:14:00:: 08281963 1 0 -school_of_law%1:14:00:: 08283051 1 0 -school_of_medicine%1:14:00:: 08283507 1 0 -school_of_music%1:14:00:: 08283649 1 0 -school_of_nursing%1:14:00:: 08283757 1 0 -school_of_thought%1:09:00:: 05943300 1 0 -school_paper%1:10:00:: 06267758 1 0 -school_phobia%1:26:00:: 14385818 1 0 -school_principal%1:18:00:: 10474645 1 3 -school_ship%1:06:00:: 04146862 1 0 -school_superintendent%1:18:00:: 10560247 1 4 -school_system%1:06:00:: 04146976 1 3 -school_teacher%1:18:00:: 10560352 1 1 -school_term%1:28:00:: 15225249 1 1 -school_text%1:10:00:: 06414372 1 1 -school_year%1:28:00:: 15203565 1 2 -schoolbag%1:06:00:: 04146343 1 0 -schoolbook%1:10:00:: 06414372 1 0 -schoolboy%1:18:00:: 10559192 1 2 -schoolboyish%5:00:00:young:00 01648313 1 0 -schoolchild%1:18:00:: 10559288 1 0 -schoolcraft%1:18:00:: 11286117 1 0 -schooldays%1:28:00:: 15147598 1 2 -schoolfellow%1:18:00:: 10560106 1 0 -schoolfriend%1:18:00:: 10559508 1 0 -schoolgirl%1:18:00:: 10559603 1 2 -schoolgirlish%5:00:00:young:00 01648698 1 1 -schoolhouse%1:06:00:: 04146050 1 3 -schooling%1:04:00:: 00888693 1 1 -schooling%1:04:01:: 00895983 3 0 -schooling%1:09:00:: 05757536 2 0 -schoolma'am%1:18:00:: 10559840 1 0 -schoolman%1:18:00:: 09759311 2 0 -schoolman%1:18:01:: 10559683 1 0 -schoolmarm%1:18:00:: 10559840 1 1 -schoolmaster%1:05:00:: 02587618 3 0 -schoolmaster%1:18:00:: 10164233 1 1 -schoolmaster%1:18:01:: 10559996 2 0 -schoolmate%1:18:00:: 10560106 1 3 -schoolmistress%1:18:00:: 10559840 1 1 -schoolroom%1:06:00:: 03038685 1 3 -schoolteacher%1:18:00:: 10560352 1 0 -schooltime%1:28:00:: 15203229 1 0 -schooltime%1:28:02:: 15147598 2 0 -schoolwide%5:00:00:comprehensive:00 00528495 1 0 -schoolwork%1:04:00:: 00728641 1 0 -schoolyard%1:15:00:: 08647264 1 0 -schooner%1:06:00:: 04147183 2 0 -schooner%1:06:01:: 04147291 1 0 -schopenhauer%1:18:00:: 11286354 1 0 -schorl%1:27:00:: 15020905 1 0 -schottische%1:04:00:: 00538266 2 0 -schottische%1:10:00:: 07057095 1 0 -schreiber's_aster%1:20:00:: 11936782 1 0 -schrod%1:05:00:: 02523617 2 0 -schrod%1:13:00:: 07789382 1 0 -schrodinger%1:18:00:: 11286476 1 0 -schrodinger_equation%1:10:00:: 06671013 1 0 -schrodinger_wave_equation%1:10:00:: 06671013 1 0 -schtick%1:04:00:: 00550545 2 0 -schtick%1:04:01:: 00513597 3 0 -schtick%1:04:02:: 00171882 4 0 -schtick%1:23:00:: 13762836 1 0 -schtickl%1:23:00:: 13763058 1 0 -schtik%1:04:00:: 00550545 2 0 -schtik%1:04:01:: 00513597 3 0 -schtik%1:04:02:: 00171882 4 0 -schtik%1:23:00:: 13762836 1 0 -schtikl%1:23:00:: 13763058 1 0 -schubert%1:18:00:: 11286618 1 0 -schuller-christian_disease%1:26:00:: 14192376 1 0 -schulz%1:18:00:: 11286820 1 0 -schumann%1:18:00:: 11287016 2 0 -schumann%1:18:01:: 11287186 1 0 -schumann-heink%1:18:00:: 11287437 1 0 -schumpeter%1:18:00:: 11287570 1 0 -schuss%2:38:00:: 01938942 1 0 -schutzstaffel%1:14:00:: 08211924 1 0 -schwa%1:10:00:: 07114023 1 0 -schwann%1:18:00:: 11287734 1 0 -schwann_cell%1:08:00:: 05465071 1 0 -schwarzwald%1:17:00:: 09222742 1 0 -schweitzer%1:18:00:: 11287964 1 0 -schweiz%1:15:00:: 09031653 1 0 -sciadopityaceae%1:20:00:: 11659909 1 0 -sciadopitys%1:20:00:: 11660121 1 0 -sciadopitys_verticillata%1:20:00:: 11660300 1 0 -sciaena%1:05:00:: 02595902 1 0 -sciaena_antarctica%1:05:00:: 02596067 1 0 -sciaena_aquila%1:05:00:: 02596252 1 0 -sciaenid%1:05:00:: 02594250 1 0 -sciaenid_fish%1:05:00:: 02594250 1 0 -sciaenidae%1:05:00:: 02593863 1 0 -sciaenops%1:05:00:: 02595569 1 0 -sciaenops_ocellatus%1:05:00:: 02595702 1 0 -sciara%1:05:00:: 02204722 1 0 -sciarid%1:05:00:: 02204722 1 0 -sciaridae%1:05:00:: 02204460 1 0 -sciatic%3:01:00:: 02841776 2 0 -sciatic%3:01:01:: 02841919 1 0 -sciatic_nerve%1:08:00:: 05567875 1 0 -sciatica%1:26:00:: 14330727 1 2 -scid%1:26:00:: 14128812 1 0 -science%1:09:00:: 05999797 1 5 -science%1:09:02:: 05636887 2 1 -science_fiction%1:10:00:: 06368628 1 2 -science_lab%1:06:00:: 03629986 1 0 -science_laboratory%1:06:00:: 03629986 1 0 -science_museum%1:06:00:: 04147364 1 0 -science_teacher%1:18:00:: 10560548 1 0 -scienter%4:02:00:: 00238064 1 0 -scientific%3:00:00:: 02084804 2 12 -scientific%3:01:00:: 02793273 1 12 -scientific_agriculture%1:09:00:: 06065819 1 0 -scientific_discipline%1:09:00:: 05999797 1 0 -scientific_fact%1:09:00:: 05818978 1 0 -scientific_instrument%1:06:00:: 04147495 1 0 -scientific_knowledge%1:09:00:: 05999540 1 0 -scientific_method%1:09:00:: 05660631 1 0 -scientific_research%1:04:00:: 00641820 1 0 -scientific_theory%1:09:00:: 05993844 1 0 -scientifically%4:02:00:: 00109949 1 3 -scientist%1:18:00:: 10560637 1 7 -scientology%1:14:00:: 08100033 1 0 -scilla%1:20:00:: 12461466 1 0 -scilla_nonscripta%1:20:00:: 12459275 1 0 -scilla_verna%1:20:00:: 12461673 1 0 -scilly_islands%1:15:00:: 08887463 1 0 -scimitar%1:06:00:: 04147793 1 2 -scincella%1:05:00:: 01684012 1 0 -scincid%1:05:00:: 01684133 1 0 -scincid_lizard%1:05:00:: 01684133 1 0 -scincidae%1:05:00:: 01683724 1 0 -scincus%1:05:00:: 01683900 1 0 -scindapsus%1:20:00:: 11791819 1 0 -scindapsus_aureus%1:20:00:: 11788727 1 0 -scintilla%1:17:00:: 09426038 2 0 -scintilla%1:23:00:: 13773725 1 0 -scintillant%5:00:00:bright:00 00279618 1 0 -scintillate%2:30:00:: 00473003 5 0 -scintillate%2:39:00:: 02161330 4 0 -scintillate%2:43:00:: 02764765 3 0 -scintillate%2:43:01:: 02767760 1 0 -scintillate%2:43:03:: 02766390 2 0 -scintillating%5:00:00:bright:00 00279618 3 0 -scintillating%5:00:00:intelligent:00 01336231 1 0 -scintillating%5:00:00:lively:00 00805810 2 0 -scintillating_scotoma%1:26:00:: 14556879 1 0 -scintillation%1:07:00:: 04952944 4 0 -scintillation%1:07:01:: 04771128 5 0 -scintillation%1:09:00:: 05620190 3 0 -scintillation%1:11:00:: 07411645 2 0 -scintillation%1:19:00:: 11506349 1 0 -scintillation_counter%1:06:00:: 04147916 1 0 -sciolism%1:07:00:: 05095561 1 0 -sciolist%1:18:00:: 09987696 1 0 -sciolistic%5:00:00:superficial:00 01874331 1 0 -scion%1:18:00:: 10561222 1 0 -scipio%1:18:00:: 11288216 1 0 -scipio_africanus%1:18:00:: 11288216 1 0 -scipio_africanus_major%1:18:00:: 11288216 1 0 -scipio_the_elder%1:18:00:: 11288216 1 0 -scire_facias%1:10:00:: 06555341 1 0 -scirpus%1:20:00:: 12152869 1 0 -scirpus_acutus%1:20:00:: 12153033 1 0 -scirpus_cyperinus%1:20:00:: 12153224 1 0 -scission%1:04:00:: 00387326 1 0 -scissor%2:35:00:: 01248950 1 0 -scissor-tailed%5:00:00:caudate:00 00320255 1 0 -scissor_grip%1:04:00:: 00814665 1 0 -scissor_hold%1:04:00:: 00814665 1 0 -scissors%1:04:00:: 00814665 2 0 -scissors%1:04:01:: 00438725 3 0 -scissors%1:06:00:: 04148054 1 0 -scissors_grip%1:04:00:: 00814665 1 0 -scissors_hold%1:04:00:: 00814665 1 0 -scissors_kick%1:04:00:: 00574925 1 0 -scissortail%1:05:00:: 01555305 1 0 -scissortailed_flycatcher%1:05:00:: 01555305 1 0 -scissure%1:17:00:: 09258715 1 0 -sciuridae%1:05:00:: 02355711 1 0 -sciuromorpha%1:05:00:: 02354950 1 0 -sciurus%1:05:00:: 02356108 1 0 -sciurus_carolinensis%1:05:00:: 02356381 1 0 -sciurus_griseus%1:05:00:: 02356612 1 0 -sciurus_hudsonicus%1:05:00:: 02357401 1 0 -sciurus_niger%1:05:00:: 02356798 1 0 -sciurus_vulgaris%1:05:00:: 02357111 1 0 -sclaff%1:04:00:: 00573775 1 0 -sclaff%2:35:00:: 01417257 1 0 -sclaff%2:35:01:: 01410946 2 0 -sclera%1:08:00:: 05447218 1 0 -scleral_veins%1:08:00:: 05380252 1 0 -scleranthus%1:20:00:: 11814824 1 0 -scleranthus_annuus%1:20:00:: 11814996 1 0 -scleredema%1:26:00:: 14232460 1 0 -sclerite%1:05:00:: 01903498 1 0 -scleritis%1:26:00:: 14355643 1 0 -scleroderma%1:20:00:: 12968882 2 0 -scleroderma%1:26:00:: 14565196 1 0 -scleroderma_aurantium%1:20:00:: 12969425 1 0 -scleroderma_bovista%1:20:00:: 12969927 1 0 -scleroderma_citrinum%1:20:00:: 12969425 1 0 -scleroderma_flavidium%1:20:00:: 12969670 1 0 -sclerodermataceae%1:20:00:: 12968658 1 0 -sclerodermatales%1:20:00:: 12968408 1 0 -sclerometer%1:06:00:: 04148285 1 0 -scleropages%1:05:00:: 02544960 1 0 -scleropages_jardinii%1:05:00:: 02545387 1 0 -scleropages_leichardti%1:05:00:: 02545153 1 0 -scleroparei%1:05:00:: 02641608 1 0 -scleroprotein%1:27:00:: 15026716 1 0 -sclerosed%3:01:00:: 02793513 1 0 -sclerosing_leukoencephalitis%1:26:00:: 14344189 1 0 -sclerosis%1:26:00:: 14110411 1 0 -sclerotic%3:01:00:: 02793394 2 0 -sclerotic%3:01:01:: 02793513 1 1 -sclerotic_coat%1:08:00:: 05447218 1 0 -sclerotinia%1:20:00:: 12968136 1 0 -sclerotiniaceae%1:20:00:: 12967776 1 0 -sclerotium%1:20:00:: 13082829 1 0 -sclerotium%1:20:02:: 13022903 2 0 -sclerotium_disease%1:26:00:: 14282524 1 0 -sclerotium_rot%1:26:00:: 14282524 1 0 -sclerotomy%1:04:00:: 00691541 1 0 -sclk%1:28:00:: 15131598 1 0 -scnt%1:04:00:: 00638770 1 0 -scoff%1:10:00:: 06716234 1 0 -scoff%2:32:00:: 00850192 1 4 -scoff%2:32:01:: 00801782 2 0 -scoffer%1:18:00:: 10561320 2 0 -scoffer%1:18:01:: 10561613 1 0 -scoffing%1:10:00:: 06716234 1 2 -scoffingly%4:02:00:: 00301168 1 0 -scofflaw%1:18:00:: 10561736 1 0 -scoinson_arch%1:06:00:: 04148464 1 0 -scoke%1:20:00:: 11855553 1 0 -scold%1:18:01:: 10561861 1 0 -scold%2:32:00:: 00824767 1 3 -scold%2:32:01:: 00909573 2 1 -scolder%1:18:00:: 10561861 1 0 -scolding%1:10:00:: 06712833 1 0 -scolion%1:10:00:: 07053606 1 0 -scoliosis%1:26:00:: 14505364 1 0 -scollop%1:05:00:: 01965889 3 0 -scollop%1:13:00:: 07797641 1 0 -scollop%1:13:02:: 07654886 2 0 -scollop%2:30:00:: 00145299 3 0 -scollop%2:33:00:: 01140315 2 0 -scollop%2:35:00:: 01281912 1 0 -scolopacidae%1:05:00:: 02025530 1 0 -scolopax%1:05:00:: 02031143 1 0 -scolopax_rusticola%1:05:00:: 02031298 1 0 -scolopendrium%1:20:00:: 13184394 1 0 -scolopendrium_nigripes%1:20:00:: 13184001 1 0 -scolymus%1:20:00:: 12010458 1 0 -scolymus_hispanicus%1:20:00:: 12010815 1 0 -scolytidae%1:05:00:: 02179429 1 0 -scolytus%1:05:00:: 02179714 1 0 -scolytus_multistriatus%1:05:00:: 02179891 1 0 -scomber%1:05:00:: 02624377 1 0 -scomber_colias%1:05:00:: 02624807 1 0 -scomber_japonicus%1:05:00:: 02624987 1 0 -scomber_scombrus%1:05:00:: 02624551 1 0 -scomberesocidae%1:05:00:: 02551316 1 0 -scomberesox%1:05:00:: 02551494 1 0 -scomberesox_saurus%1:05:00:: 02551668 1 0 -scomberomorus%1:05:00:: 02625418 1 0 -scomberomorus_cavalla%1:05:00:: 02625851 1 0 -scomberomorus_maculatus%1:05:00:: 02626089 1 0 -scomberomorus_regalis%1:05:00:: 02626265 1 0 -scomberomorus_sierra%1:05:00:: 02626471 1 0 -scombresocidae%1:05:00:: 02551316 1 0 -scombresox%1:05:00:: 02551494 1 0 -scombridae%1:05:00:: 02623868 1 0 -scombroid%1:05:00:: 02623445 1 0 -scombroid_fish%1:05:00:: 02623445 1 0 -scombroidea%1:05:00:: 02623170 1 0 -sconce%1:06:00:: 04148579 4 0 -sconce%1:06:01:: 04148703 3 0 -sconce%1:06:02:: 04148801 2 0 -sconce%1:06:03:: 04148936 1 0 -sconcheon_arch%1:06:00:: 04148464 1 0 -scone%1:13:00:: 07690892 1 0 -scoop%1:06:00:: 04149083 6 0 -scoop%1:06:01:: 04149208 5 0 -scoop%1:06:02:: 04253751 4 0 -scoop%1:10:00:: 06683183 3 0 -scoop%1:23:00:: 13769317 1 1 -scoop%1:25:00:: 13894306 2 0 -scoop%2:33:00:: 01109259 2 0 -scoop%2:35:01:: 01312371 1 0 -scoop_out%2:35:00:: 01282294 1 1 -scoop_out%2:35:02:: 01312371 2 0 -scoop_shot%1:04:00:: 00112072 1 0 -scoop_shovel%1:06:00:: 04149208 1 0 -scoop_up%2:35:00:: 01312371 1 3 -scoopful%1:23:00:: 13769317 1 0 -scoot%2:38:00:: 02061495 1 3 -scooter%1:05:00:: 01853498 5 0 -scooter%1:06:00:: 04149374 2 0 -scooter%1:06:01:: 03791053 3 0 -scooter%1:06:02:: 03556811 4 0 -scooter%1:06:03:: 04562122 1 0 -scopal%3:01:00:: 02992070 1 0 -scope%1:06:01:: 03857828 4 0 -scope%1:06:02:: 04403638 3 0 -scope%1:07:00:: 05125377 1 15 -scope%1:26:00:: 14513259 2 0 -scopes%1:18:00:: 11288528 1 0 -scopes_trial%1:04:00:: 01196759 1 0 -scophthalmus%1:05:00:: 02662688 1 0 -scophthalmus_aquosus%1:05:00:: 02662825 1 0 -scophthalmus_rhombus%1:05:00:: 02662993 1 0 -scopolamine%1:06:00:: 04149490 1 0 -scopolia%1:20:00:: 12913352 1 0 -scopolia_carniolica%1:20:00:: 12913524 1 0 -scops_owl%1:05:00:: 01623706 1 0 -scorbutic%3:01:00:: 03115436 1 0 -scorbutus%1:26:00:: 14201520 1 0 -scorch%1:07:00:: 04695504 3 0 -scorch%1:26:00:: 14289942 1 0 -scorch%1:26:01:: 14282107 2 0 -scorch%2:30:02:: 00379440 4 0 -scorch%2:30:03:: 00377715 1 1 -scorch%2:30:04:: 00219597 5 0 -scorch%2:30:05:: 00582527 3 0 -scorch%2:30:07:: 00582743 2 0 -scorched%5:00:00:destroyed:00 00736511 2 0 -scorched%5:00:00:dry:01 02551946 1 1 -scorched-earth_policy%1:04:00:: 00176994 1 0 -scorcher%1:04:00:: 00131791 2 0 -scorcher%1:19:00:: 11466834 1 0 -scorching%4:02:00:: 00446842 1 0 -scorching%5:00:01:hot:01 01249843 1 1 -score%1:04:00:: 00186634 10 0 -score%1:04:01:: 00160688 11 0 -score%1:09:00:: 05737153 1 18 -score%1:09:01:: 05819338 6 1 -score%1:10:00:: 06815714 2 8 -score%1:12:00:: 07549536 9 0 -score%1:14:00:: 08272652 4 4 -score%1:16:00:: 09179382 5 1 -score%1:23:00:: 13594585 3 4 -score%1:25:00:: 13905405 8 0 -score%1:26:00:: 14491034 7 0 -score%2:31:05:: 00657728 7 0 -score%2:32:00:: 01004062 3 3 -score%2:33:00:: 01111816 1 18 -score%2:33:01:: 01112364 6 0 -score%2:35:00:: 01275762 2 12 -score%2:35:01:: 01428578 5 0 -score%2:36:00:: 01706488 4 0 -score_out%2:35:00:: 01548718 1 0 -score_paper%1:27:00:: 14957152 1 0 -scoreboard%1:06:00:: 04149813 1 1 -scorecard%1:10:00:: 06507941 1 0 -scorekeeper%1:18:00:: 10562135 1 0 -scoreless%5:00:00:unsuccessful:00 02335119 1 2 -scorer%1:18:00:: 10562391 1 0 -scorer%1:18:01:: 10562283 2 0 -scorer%1:18:02:: 10562135 3 0 -scores%1:23:00:: 13777509 1 2 -scoria%1:27:00:: 15042856 1 0 -scoring%1:04:00:: 00874977 1 0 -scoring_system%1:09:00:: 05733221 1 0 -scorn%1:10:00:: 06715927 2 1 -scorn%1:12:00:: 07502980 1 6 -scorn%2:32:00:: 00796976 2 1 -scorn%2:37:00:: 01774799 1 2 -scorned%5:00:00:unloved:00 01463537 1 0 -scorner%1:18:00:: 10616379 1 0 -scornful%5:00:00:disrespectful:00 01995288 1 2 -scornfully%4:02:00:: 00080534 1 2 -scorpaena%1:05:00:: 02642935 1 0 -scorpaena_grandicornis%1:05:00:: 02643316 1 0 -scorpaenid%1:05:00:: 02642644 1 0 -scorpaenid_fish%1:05:00:: 02642644 1 0 -scorpaenidae%1:05:00:: 02642430 1 0 -scorpaenoid%1:05:00:: 02642107 1 0 -scorpaenoid_fish%1:05:00:: 02642107 1 0 -scorpaenoidea%1:05:00:: 02641825 1 0 -scorper%1:06:00:: 04144651 1 0 -scorpio%1:15:00:: 08687345 3 0 -scorpio%1:17:00:: 09426143 2 0 -scorpio%1:18:00:: 09753204 1 0 -scorpio_the_scorpion%1:15:00:: 08687345 1 0 -scorpioid_cyme%1:20:00:: 13133316 1 0 -scorpion%1:05:00:: 01770393 3 0 -scorpion%1:15:00:: 08687345 2 0 -scorpion%1:18:00:: 09753204 1 0 -scorpion_fish%1:05:00:: 02643112 1 0 -scorpion_fly%1:05:00:: 02162561 1 0 -scorpion_shell%1:05:00:: 01943541 1 0 -scorpion_weed%1:20:00:: 12836862 1 0 -scorpionfish%1:05:00:: 02643112 1 0 -scorpionida%1:05:00:: 01770263 1 0 -scorpionweed%1:20:00:: 12836862 1 0 -scorpius%1:17:00:: 09426143 1 0 -scorsese%1:18:00:: 11288818 1 0 -scorzonera%1:13:00:: 07735294 2 0 -scorzonera%1:20:00:: 12013035 1 0 -scorzonera_hispanica%1:20:00:: 12013035 1 0 -scot%1:18:00:: 09730533 1 5 -scot_and_lot%1:26:00:: 14491171 1 0 -scot_free%4:02:00:: 00260835 1 1 -scotch%1:13:00:: 07907548 2 0 -scotch%1:25:00:: 13905405 1 0 -scotch%2:35:00:: 01276080 2 0 -scotch%2:41:00:: 02558172 1 0 -scotch%3:01:00:: 03024647 1 0 -scotch%5:00:00:thrifty:00 02421364 2 0 -scotch_and_soda%1:13:00:: 07917507 1 1 -scotch_asphodel%1:20:00:: 12462221 1 0 -scotch_broom%1:20:00:: 12521394 1 0 -scotch_broth%1:13:00:: 07588688 1 0 -scotch_egg%1:13:00:: 07876651 1 0 -scotch_fir%1:20:00:: 11616662 1 0 -scotch_gale%1:20:00:: 11741175 1 0 -scotch_kiss%1:13:00:: 07607280 1 0 -scotch_laburnum%1:20:00:: 12538209 1 0 -scotch_malt_whiskey%1:13:00:: 07907548 1 0 -scotch_malt_whisky%1:13:00:: 07907548 1 0 -scotch_marigold%1:20:00:: 11943660 1 0 -scotch_pancake%1:13:00:: 07691091 1 0 -scotch_pine%1:20:00:: 11616662 1 0 -scotch_tape%1:06:00:: 02992795 1 0 -scotch_tape%2:35:00:: 01331988 1 0 -scotch_terrier%1:05:00:: 02097298 1 0 -scotch_thistle%1:20:00:: 11998888 1 0 -scotch_whiskey%1:13:00:: 07907548 1 0 -scotch_whisky%1:13:00:: 07907548 1 0 -scotch_woodcock%1:13:00:: 07876775 1 0 -scotchman%1:18:00:: 09730533 1 1 -scotchwoman%1:18:00:: 09730732 1 0 -scoter%1:05:00:: 01853498 1 0 -scotland%1:15:00:: 08890097 1 2 -scotland_yard%1:14:00:: 08210835 1 2 -scotoma%1:26:00:: 14556203 1 0 -scotomatous%3:01:00:: 03115598 1 0 -scotopic_vision%1:09:00:: 05656997 1 0 -scots%1:10:00:: 06950209 1 0 -scots%3:01:00:: 03024647 1 0 -scots_english%1:10:00:: 06950209 1 0 -scots_gaelic%1:10:00:: 06961122 1 0 -scots_heather%1:20:00:: 12233529 1 0 -scots_pine%1:20:00:: 11616662 1 0 -scotsman%1:18:00:: 09730533 1 0 -scotswoman%1:18:00:: 09730732 1 0 -scott%1:18:00:: 11288930 5 0 -scott%1:18:01:: 11289161 4 0 -scott%1:18:02:: 11289307 3 0 -scott%1:18:03:: 11289491 2 0 -scott%1:18:04:: 11289709 1 0 -scott's_spleenwort%1:20:00:: 13181244 1 0 -scott_joplin%1:18:00:: 11091374 1 0 -scottie%1:05:00:: 02097298 1 0 -scottish%1:10:00:: 06950209 1 0 -scottish%3:01:00:: 03024647 1 0 -scottish_deerhound%1:05:00:: 02092002 1 0 -scottish_gaelic%1:10:00:: 06961122 1 0 -scottish_highlander%1:18:00:: 10174695 1 0 -scottish_lallans%1:10:00:: 06950400 1 0 -scottish_lowlander%1:18:00:: 10275249 1 0 -scottish_maple%1:20:00:: 12754981 1 0 -scottish_reel%1:04:00:: 00540211 1 0 -scottish_terrier%1:05:00:: 02097298 1 0 -scoundrel%1:18:00:: 10753546 1 1 -scoundrelly%5:00:00:dishonest:00 01224964 1 0 -scour%1:15:00:: 08647457 1 0 -scour%2:30:00:: 00455529 4 0 -scour%2:35:00:: 01251651 3 0 -scour%2:35:01:: 01251228 2 1 -scour%2:35:03:: 01317276 1 1 -scoured%5:00:00:worn:00 02582064 1 1 -scourer%1:18:00:: 10562645 1 0 -scourer%1:18:01:: 10562509 2 0 -scourge%1:06:00:: 04149968 1 1 -scourge%1:18:00:: 10702615 3 0 -scourge%1:26:00:: 14445226 2 0 -scourge%2:30:02:: 00388635 3 0 -scourge%2:35:00:: 01398443 2 0 -scourge%2:41:00:: 02500775 1 0 -scourge_of_god%1:18:00:: 10827678 1 0 -scourge_of_the_gods%1:18:00:: 10827678 1 0 -scourger%1:18:00:: 10096964 1 0 -scouring%1:04:00:: 00251780 2 1 -scouring%1:04:01:: 00993488 1 1 -scouring_pad%1:06:00:: 04150153 1 0 -scouring_rush%1:20:00:: 13220122 1 0 -scours%1:26:00:: 14272347 1 5 -scouse%1:13:00:: 07591330 1 0 -scouser%1:18:00:: 09704509 1 0 -scout%1:18:00:: 10562749 4 0 -scout%1:18:01:: 10271216 1 1 -scout%1:18:02:: 10562968 3 0 -scout%1:18:03:: 10563183 2 0 -scout%2:39:00:: 02167571 1 2 -scout_car%1:06:00:: 04062807 1 0 -scout_group%1:14:00:: 08274718 1 0 -scout_troop%1:14:00:: 08274718 1 0 -scouter%1:18:00:: 10540984 1 0 -scouting%1:04:00:: 00985106 1 1 -scouting_trip%1:04:00:: 00309802 1 0 -scoutmaster%1:18:00:: 10563314 1 0 -scow%1:06:00:: 04150273 2 0 -scow%1:06:01:: 04150371 1 0 -scowl%1:10:00:: 06877849 1 1 -scowl%2:29:00:: 00033852 1 3 -scowling%5:00:00:unfriendly:01 01077158 1 0 -scpo%1:18:00:: 10579176 1 0 -scrabble%1:04:00:: 00502161 2 0 -scrabble%1:06:00:: 04155310 1 0 -scrabble%2:32:00:: 01006239 2 0 -scrabble%2:35:13:: 01314440 1 0 -scrabbly%5:00:00:wooded:00 02574294 1 0 -scrag%1:13:01:: 07665713 3 0 -scrag%1:13:02:: 07666933 2 0 -scrag%1:18:00:: 10708797 1 0 -scrag%2:35:00:: 01571744 1 0 -scrag%2:35:01:: 01570744 2 0 -scrag_end%1:13:00:: 07665713 1 0 -scraggly%5:00:00:untidy:00 02426270 1 1 -scraggy%5:00:00:thin:03 00990192 1 0 -scraggy%5:00:00:uneven:00 00912288 2 0 -scram%2:38:00:: 02010864 1 0 -scramble%1:04:00:: 00556142 2 0 -scramble%1:04:01:: 00789391 1 1 -scramble%2:30:00:: 00537316 5 0 -scramble%2:35:00:: 01472807 3 0 -scramble%2:35:02:: 01418179 4 0 -scramble%2:38:00:: 01886334 1 9 -scramble%2:38:01:: 01921772 2 4 -scrambled%5:00:00:disorganized:00 01669774 1 1 -scrambled_eggs%1:13:00:: 07842308 1 0 -scrambler%1:06:00:: 04150474 3 0 -scrambler%1:06:01:: 04466871 2 0 -scrambler%1:18:00:: 10563403 1 0 -scranch%2:32:00:: 01058224 1 0 -scranton%1:15:00:: 09136929 1 0 -scrap%1:04:00:: 01170962 4 0 -scrap%1:06:00:: 04150668 3 0 -scrap%1:17:00:: 09222051 1 1 -scrap%1:27:00:: 14857497 2 0 -scrap%2:30:00:: 00569870 3 0 -scrap%2:32:00:: 00775156 2 0 -scrap%2:40:00:: 02223238 1 1 -scrap_iron%1:27:00:: 15020974 1 0 -scrap_metal%1:27:00:: 14857737 1 0 -scrapbook%1:06:00:: 04150860 1 0 -scrape%1:07:00:: 04693900 4 0 -scrape%1:10:00:: 07275489 3 0 -scrape%1:11:00:: 07392982 1 2 -scrape%1:26:00:: 14286549 2 0 -scrape%2:35:00:: 01308160 1 4 -scrape%2:35:01:: 01309478 6 0 -scrape%2:35:02:: 01309143 3 1 -scrape%2:35:03:: 01384752 5 0 -scrape%2:36:00:: 01750156 2 1 -scrape%2:38:00:: 02040709 4 0 -scrape_along%2:41:00:: 02588464 1 0 -scrape_by%2:41:00:: 02588464 1 0 -scrape_up%2:35:00:: 01384752 1 1 -scraper%1:06:00:: 04150980 1 0 -scrapheap%1:14:00:: 07962628 2 0 -scrapheap%1:15:00:: 08573842 1 1 -scrapie%1:26:00:: 14272421 1 0 -scraping%1:10:00:: 07275489 3 0 -scraping%1:11:00:: 07392982 2 1 -scraping%1:17:00:: 09426307 1 1 -scrapper%1:18:00:: 09939313 1 0 -scrappily%4:02:00:: 00287207 1 0 -scrappiness%1:07:00:: 04837814 1 0 -scrapple%1:13:00:: 07876893 1 0 -scrappy%5:00:00:aggressive:00 00084661 1 0 -scraps%1:27:00:: 14857151 1 0 -scratch%1:07:00:: 04693900 10 0 -scratch%1:07:01:: 05163401 9 0 -scratch%1:10:00:: 06404147 8 0 -scratch%1:11:00:: 07392982 7 0 -scratch%1:13:00:: 07805389 6 0 -scratch%1:15:00:: 08653873 5 0 -scratch%1:18:00:: 10563610 4 0 -scratch%1:21:00:: 13385216 3 0 -scratch%1:25:00:: 13904843 2 0 -scratch%1:26:00:: 14286549 1 1 -scratch%2:35:00:: 01309143 2 8 -scratch%2:35:03:: 01250908 1 9 -scratch%2:35:04:: 01321895 7 0 -scratch%2:35:05:: 01384752 6 0 -scratch%2:35:07:: 01549420 5 0 -scratch%2:39:00:: 02119874 3 1 -scratch%2:41:00:: 02477755 4 0 -scratch_along%2:41:00:: 02588464 1 0 -scratch_awl%1:06:00:: 04155457 1 0 -scratch_line%1:15:00:: 08653873 1 0 -scratch_off%2:36:00:: 01700655 1 0 -scratch_out%2:35:00:: 01549719 1 0 -scratch_pad%1:27:00:: 15021189 1 0 -scratch_paper%1:27:00:: 15021189 1 0 -scratch_race%1:11:00:: 07463607 1 0 -scratch_sheet%1:10:00:: 06596025 1 0 -scratch_test%1:09:00:: 05745744 1 0 -scratch_up%2:35:00:: 01309143 1 0 -scratcher%1:06:00:: 04151108 3 0 -scratcher%1:18:00:: 10563711 2 0 -scratcher%1:18:01:: 10563826 1 0 -scratchiness%1:07:00:: 04949066 1 1 -scratching%1:11:00:: 07392982 1 0 -scratchpad%1:06:00:: 04151228 1 0 -scratchy%5:00:00:cacophonous:00 00299476 4 0 -scratchy%5:00:00:ill-natured:00 01136541 2 0 -scratchy%5:00:00:inconsistent:00 00578662 3 0 -scratchy%5:00:00:rough:00 02239289 1 1 -scraunch%2:32:00:: 01058224 1 0 -scrawl%1:10:00:: 06404147 1 0 -scrawl%2:36:00:: 01747203 1 1 -scrawler%1:18:00:: 10563940 1 0 -scrawniness%1:07:00:: 05001724 1 0 -scrawniness%1:07:01:: 04730985 2 0 -scrawny%5:00:00:inferior:02 02347915 2 0 -scrawny%5:00:00:thin:03 00990192 1 2 -screak%2:32:00:: 01048939 2 0 -screak%2:39:00:: 02171664 1 0 -screakily%4:02:00:: 00303376 1 0 -screaky%5:00:00:high:03 01214606 2 0 -screaky%5:00:00:noisy:00 01921335 1 0 -scream%1:10:00:: 07123012 1 6 -scream%1:10:01:: 06778925 3 0 -scream%1:11:00:: 07393161 2 1 -scream%2:32:01:: 00913065 1 25 -scream%2:32:08:: 00912833 2 2 -scream%2:39:00:: 02173336 3 1 -screamer%1:04:00:: 00131791 4 0 -screamer%1:05:00:: 01860497 3 0 -screamer%1:10:00:: 06345773 2 0 -screamer%1:18:00:: 10533983 1 0 -screaming%1:10:00:: 07123012 1 1 -screaming%1:11:00:: 07393161 2 0 -screaming%5:00:00:humorous:00 01266841 3 0 -screaming%5:00:00:intense:00 01512909 1 1 -screaming%5:00:00:sensational:00 02102178 2 0 -screaming_meemies%1:26:00:: 14375761 1 0 -screamingly%4:02:00:: 00446946 1 0 -scree%1:17:00:: 09454153 1 0 -screech%1:10:00:: 07123012 2 1 -screech%1:11:00:: 07393161 1 1 -screech%2:32:01:: 01048939 2 0 -screech%2:39:00:: 02171664 1 5 -screech_owl%1:05:01:: 01623425 2 0 -screech_owl%1:05:02:: 01623615 1 0 -screecher%1:18:00:: 10533983 1 0 -screeching%1:10:00:: 07123012 2 0 -screeching%1:11:00:: 07393161 1 1 -screechy%5:00:00:high:03 01214606 1 1 -screed%1:06:00:: 04151405 3 0 -screed%1:10:00:: 06430309 2 0 -screed%1:10:02:: 07243114 1 0 -screen%1:06:00:: 04151581 5 1 -screen%1:06:01:: 04151940 4 2 -screen%1:06:02:: 04216634 7 0 -screen%1:06:03:: 04152387 9 0 -screen%1:06:04:: 02851099 2 3 -screen%1:06:05:: 04152593 3 2 -screen%1:06:06:: 04152829 1 4 -screen%1:06:07:: 04153025 8 0 -screen%1:14:00:: 08068457 6 0 -screen%2:31:00:: 00697419 2 2 -screen%2:33:00:: 01130169 7 0 -screen%2:35:00:: 01477538 5 0 -screen%2:35:01:: 01460785 6 0 -screen%2:39:00:: 02139883 4 0 -screen%2:41:00:: 02400378 3 0 -screen%2:41:01:: 02533109 1 2 -screen_actor%1:18:00:: 10564098 1 0 -screen_background%1:06:00:: 02769075 1 0 -screen_door%1:06:00:: 04153025 1 2 -screen_font%1:10:00:: 06827679 1 0 -screen_memory%1:09:00:: 05935717 1 0 -screen_off%2:30:00:: 00333426 1 0 -screen_out%2:41:00:: 02400378 1 0 -screen_pass%1:04:00:: 00561570 1 1 -screen_saver%1:06:00:: 04153436 1 0 -screen_test%1:04:00:: 00794772 1 0 -screener%1:18:00:: 10564224 1 0 -screening%1:04:00:: 01049685 3 0 -screening%1:04:01:: 00644967 4 0 -screening%1:06:00:: 04153330 2 0 -screening%1:10:00:: 06888345 1 0 -screenland%1:14:00:: 08068457 1 0 -screenplay%1:10:00:: 07012279 1 1 -screenwriter%1:18:00:: 10564400 1 0 -screw%1:04:00:: 00846021 5 0 -screw%1:06:00:: 04153751 4 0 -screw%1:06:01:: 04154152 3 0 -screw%1:06:02:: 04154340 2 0 -screw%1:18:00:: 10149867 1 0 -screw%2:33:00:: 01104624 5 0 -screw%2:35:01:: 01352806 4 0 -screw%2:35:02:: 01352996 3 0 -screw%2:35:03:: 01353169 2 0 -screw%2:35:04:: 01426397 1 0 -screw-loose%5:00:00:insane:00 02077904 1 1 -screw-pine_family%1:20:00:: 12154426 1 0 -screw-topped%5:00:00:topped:00 02441990 1 0 -screw_auger%1:06:00:: 02758490 1 0 -screw_augur%1:20:00:: 12083847 1 0 -screw_bean%1:20:01:: 11766189 2 0 -screw_bean%1:20:02:: 11766432 1 0 -screw_eye%1:06:00:: 04154753 1 0 -screw_jack%1:06:00:: 03591028 1 0 -screw_key%1:06:00:: 04154854 1 0 -screw_log%1:06:00:: 03898787 1 0 -screw_pine%1:20:00:: 12154773 1 0 -screw_propeller%1:06:00:: 04154152 1 0 -screw_thread%1:06:00:: 04154938 1 0 -screw_tree%1:20:00:: 12199266 1 0 -screw_up%2:29:00:: 00034634 4 0 -screw_up%2:30:00:: 00227667 1 1 -screw_up%2:35:00:: 01353311 3 0 -screw_up%2:41:00:: 02527651 2 0 -screw_wrench%1:06:00:: 04155177 1 0 -screwball%1:04:00:: 00108818 2 0 -screwball%1:18:00:: 09974496 1 0 -screwball%5:00:00:impractical:00 01836766 1 0 -screwballer%1:18:00:: 10564541 1 0 -screwbean%1:20:00:: 11766189 1 0 -screwbean_mesquite%1:20:00:: 11766189 1 0 -screwdriver%1:06:00:: 04154565 1 1 -screwdriver%1:13:00:: 07917272 2 0 -screwing%1:04:00:: 00846021 1 0 -screwtop%1:06:00:: 04155068 1 0 -screwup%1:04:00:: 01134699 1 0 -screwy%5:00:00:insane:00 02077904 1 0 -scriabin%1:18:00:: 11289830 1 0 -scribble%1:06:00:: 04155310 2 0 -scribble%1:10:00:: 06404147 1 0 -scribble%2:32:00:: 01006239 1 1 -scribble%2:36:00:: 01747203 2 0 -scribbler%1:18:00:: 10563940 2 0 -scribbler%1:18:01:: 10564660 1 0 -scribbling_block%1:27:00:: 15021189 1 0 -scribe%1:06:00:: 04155457 4 0 -scribe%1:18:00:: 10564660 2 0 -scribe%1:18:01:: 09964805 3 0 -scribe%1:18:02:: 11289999 1 0 -scribe%2:35:00:: 01276192 1 3 -scriber%1:06:00:: 04155457 1 0 -scribing_block%1:06:00:: 04362624 1 0 -scrim%1:06:00:: 04155625 1 0 -scrimmage%1:04:00:: 00554200 2 1 -scrimmage%1:04:01:: 00898127 1 1 -scrimmage%2:36:00:: 01723579 1 1 -scrimmage_line%1:15:00:: 08650677 1 0 -scrimp%2:40:00:: 02345498 1 0 -scrimpy%3:00:00:: 00106456 1 0 -scrimshank%2:41:00:: 02463990 1 0 -scrimshanker%1:18:00:: 10564800 1 0 -scrimshaw%1:06:00:: 04155735 1 0 -scrimy%5:00:00:offensive:01 01627166 1 0 -scrimy%5:00:00:stingy:00 01113636 2 0 -scrip%1:21:00:: 13416897 1 0 -scripps%1:18:00:: 11290107 2 0 -scripps%1:18:01:: 11290272 1 0 -script%1:10:00:: 07009946 1 6 -script%1:10:01:: 06351613 3 0 -script%1:10:02:: 06403393 2 0 -script%2:36:00:: 01756719 1 0 -scripted%3:00:00:: 02213270 1 0 -scriptorium%1:06:00:: 04155889 1 0 -scriptural%3:01:00:: 02854521 1 2 -scriptural%3:01:02:: 02938361 2 0 -scripture%1:10:00:: 06431740 1 5 -scripture%1:10:01:: 06430385 2 0 -scriptwriter%1:18:00:: 10564905 1 0 -scrivened%5:00:00:written:00 02285854 1 0 -scrivener%1:18:00:: 09964805 1 0 -scrod%1:05:00:: 02523617 2 0 -scrod%1:13:00:: 07789382 1 0 -scrofula%1:26:00:: 14144247 1 0 -scrofulous%5:00:00:ill:01 02546526 1 0 -scrofulous%5:00:00:immoral:00 01550304 2 0 -scrofulous%5:00:00:ugly:00 00222272 3 0 -scroll%1:10:00:: 06407733 2 0 -scroll%1:25:00:: 13875970 1 0 -scroll%2:30:00:: 00124854 1 0 -scroll_saw%1:06:00:: 03598783 1 0 -scrooge%1:18:00:: 10357737 1 0 -scrophularia%1:20:00:: 12876684 1 0 -scrophulariaceae%1:20:00:: 12876032 1 0 -scrophulariales%1:20:00:: 12808751 1 0 -scrotal%3:01:00:: 03098096 1 0 -scrotal_vein%1:08:00:: 05380404 1 0 -scrotum%1:08:00:: 05517406 1 0 -scrounge%2:40:00:: 02269894 1 1 -scrounge%2:40:01:: 02270165 2 0 -scrounger%1:18:00:: 10330189 1 0 -scrub%1:04:00:: 00251780 2 0 -scrub%1:14:00:: 08438223 1 0 -scrub%2:29:00:: 00036780 2 1 -scrub%2:35:00:: 01251228 1 4 -scrub%2:41:00:: 02477755 3 0 -scrub%5:00:00:unimproved:00 01289607 1 0 -scrub-bird%1:05:00:: 01546039 1 0 -scrub_beefwood%1:20:00:: 12223160 1 0 -scrub_bird%1:05:00:: 01546039 1 0 -scrub_brush%1:06:00:: 04156140 1 0 -scrub_fowl%1:05:00:: 01801088 1 0 -scrub_nurse%1:18:00:: 10565197 1 0 -scrub_oak%1:20:00:: 12274630 1 1 -scrub_palmetto%1:20:00:: 12597466 1 0 -scrub_pine%1:20:00:: 11616852 1 0 -scrub_plane%1:06:00:: 04156297 1 0 -scrub_typhus%1:26:00:: 14142326 1 0 -scrub_up%2:29:00:: 00036780 1 0 -scrubbed%5:00:00:clean:01 00418809 1 0 -scrubber%1:06:00:: 04156040 3 0 -scrubber%1:06:01:: 04156140 2 0 -scrubber%1:18:00:: 10565048 1 0 -scrubbiness%1:07:00:: 04730985 1 0 -scrubbing%1:04:00:: 00251780 1 1 -scrubbing_brush%1:06:00:: 04156140 1 0 -scrubbird%1:05:00:: 01546039 1 0 -scrubby%5:00:00:inferior:02 02347915 2 0 -scrubby%5:00:00:wooded:00 02574294 1 0 -scrubland%1:15:00:: 08645104 1 0 -scrubs%1:06:00:: 03450734 1 0 -scruff%1:08:00:: 05547396 1 0 -scruffy%5:00:00:worn:00 02583271 1 0 -scrum%1:04:00:: 00242146 1 0 -scrummage%1:04:00:: 00242146 1 0 -scrumptious%5:00:00:tasty:00 02396720 1 0 -scrumptiously%4:02:00:: 00393688 1 0 -scrumpy%1:13:00:: 07921834 1 0 -scrunch%1:11:00:: 07393500 1 0 -scrunch%2:35:00:: 01278427 3 0 -scrunch%2:35:02:: 01545314 2 0 -scrunch%2:39:00:: 02184797 1 0 -scrunch_up%2:35:00:: 01278427 2 0 -scrunch_up%2:35:01:: 01545314 1 0 -scruple%1:09:00:: 05957737 3 0 -scruple%1:12:00:: 07525555 2 0 -scruple%1:23:00:: 13722060 1 0 -scruple%2:32:00:: 00925372 3 0 -scruple%2:37:00:: 01794195 2 0 -scruple%2:42:00:: 02641298 1 0 -scruples%1:16:00:: 09184136 1 0 -scrupulous%3:00:00:: 02085449 1 0 -scrupulous%5:00:00:careful:00 00310138 2 0 -scrupulously%4:02:00:: 00178586 1 1 -scrupulousness%1:07:00:: 04869256 1 0 -scrupulousness%1:07:02:: 04672605 2 0 -scrutin_de_liste%1:09:00:: 05904616 1 0 -scrutin_de_liste_system%1:09:00:: 05904616 1 1 -scrutin_uninomial_system%1:09:00:: 05904313 1 0 -scrutin_uninominal_voting_system%1:09:00:: 05904313 1 1 -scrutineer%1:18:00:: 10565502 1 0 -scrutinise%2:31:00:: 00697062 2 0 -scrutinise%2:39:00:: 02153387 1 0 -scrutiniser%1:18:00:: 10565302 1 0 -scrutinize%2:31:00:: 00697062 2 0 -scrutinize%2:39:00:: 02153387 1 6 -scrutinizer%1:18:00:: 10565302 1 0 -scrutiny%1:04:00:: 00635850 1 3 -scrutiny%1:04:01:: 00878052 2 2 -scry%2:31:00:: 00627420 1 0 -scsi%1:06:00:: 04245218 1 0 -scuba%1:06:00:: 02731629 1 0 -scuba_diver%1:18:00:: 10565667 1 0 -scuba_diving%1:04:00:: 00444846 1 0 -scud%1:04:00:: 00330836 1 0 -scud%2:38:00:: 02061495 1 1 -scud%2:38:01:: 01946138 2 0 -scudding%1:04:00:: 00330836 1 0 -scuff%1:04:00:: 00125315 2 0 -scuff%1:06:00:: 03798061 1 0 -scuff%2:35:00:: 01370245 4 0 -scuff%2:35:01:: 01370336 3 0 -scuff%2:35:02:: 01370439 2 0 -scuff%2:38:00:: 01917845 1 1 -scuffer%1:06:00:: 04156411 1 0 -scuffle%1:04:00:: 01172441 1 3 -scuffle%1:04:01:: 00789391 3 0 -scuffle%1:06:00:: 04156591 2 0 -scuffle%2:35:00:: 01504480 2 0 -scuffle%2:38:00:: 01917549 1 0 -scuffle_hoe%1:06:00:: 04156591 1 0 -scull%1:06:00:: 04156720 3 0 -scull%1:06:01:: 04156814 2 0 -scull%1:06:02:: 04156946 1 0 -scull%2:38:00:: 01947352 1 0 -sculler%1:18:00:: 10565764 1 0 -scullery%1:06:00:: 04157099 1 0 -sculling%1:04:00:: 00445685 1 0 -scullion%1:18:00:: 10565951 1 0 -sculpin%1:05:00:: 02645304 1 0 -sculpt%2:35:00:: 01551871 2 0 -sculpt%2:36:00:: 01684337 1 0 -sculpted%5:00:00:carved:00 00317481 1 0 -sculptor%1:17:00:: 09426494 2 0 -sculptor%1:18:00:: 10566072 1 3 -sculptress%1:18:00:: 10566893 1 0 -sculptural%3:01:00:: 02924286 1 2 -sculptural%5:00:00:shapely:00 02139884 2 0 -sculptural_relief%1:06:00:: 04073669 1 0 -sculpture%1:04:00:: 00937656 2 3 -sculpture%1:06:00:: 04157320 1 9 -sculpture%2:35:00:: 01551871 2 0 -sculpture%2:36:00:: 01684337 1 2 -sculptured%5:00:00:carved:00 00317481 1 1 -sculptured%5:00:00:shapely:00 02139884 2 0 -sculpturer%1:18:00:: 10566072 1 0 -sculpturesque%5:00:00:shapely:00 02139884 1 0 -scum%1:06:00:: 04157703 2 0 -scum%1:14:01:: 08402147 1 0 -scum%2:40:00:: 02366351 1 0 -scum_bag%1:18:00:: 10539715 1 0 -scumble%1:04:00:: 00719148 1 0 -scummy%5:00:00:contemptible:00 00904745 1 0 -scummy%5:00:00:dirty:01 00422870 2 0 -scunner%1:12:00:: 07503849 1 0 -scup%1:05:01:: 02593679 3 0 -scup%1:05:02:: 02593453 4 0 -scup%1:13:01:: 07790081 2 0 -scup%1:13:02:: 07790246 1 0 -scupper%1:06:00:: 04157883 1 0 -scupper%2:32:00:: 01036319 2 0 -scupper%2:33:00:: 01138204 1 0 -scuppernong%1:13:00:: 07759576 1 0 -scurf%1:17:00:: 09426621 1 0 -scurf%1:17:01:: 09425607 2 0 -scurfy%3:01:00:: 02793681 1 0 -scurfy%5:00:00:rough:00 02241247 2 0 -scurrility%1:10:00:: 06721342 1 0 -scurrilous%5:00:00:offensive:02 01628531 1 0 -scurrilously%4:02:00:: 00447045 1 0 -scurry%1:04:00:: 00556142 1 0 -scurry%2:38:00:: 01902405 1 2 -scurrying%5:00:00:fast:01 00978581 1 2 -scurvily%4:02:00:: 00397720 1 0 -scurvy%1:26:00:: 14201520 1 0 -scurvy%5:00:00:contemptible:00 00904745 1 0 -scurvy_grass%1:20:01:: 11883945 1 0 -scurvy_grass%1:20:02:: 11873612 2 0 -scut%1:05:00:: 02158739 1 0 -scut_work%1:04:00:: 00732576 1 0 -scutch_grass%1:20:00:: 12115748 1 0 -scutcheon%1:06:00:: 03296478 2 0 -scutcheon%1:06:02:: 03342262 1 0 -scute%1:05:00:: 01903346 1 0 -scutellaria%1:20:00:: 12867679 1 0 -scutellaria_lateriflora%1:20:00:: 12868019 1 0 -scutigera%1:05:00:: 01785532 1 0 -scutigera_coleoptrata%1:05:00:: 01785667 1 0 -scutigerella%1:05:00:: 01783571 1 0 -scutigerella_immaculata%1:05:00:: 01783706 1 0 -scutigeridae%1:05:00:: 01785392 1 0 -scuttle%1:06:00:: 04158002 1 0 -scuttle%1:06:01:: 03499142 2 0 -scuttle%2:38:00:: 01902405 1 3 -scuttlebutt%1:10:00:: 07223170 1 0 -scyliorhinidae%1:05:00:: 01488234 1 0 -scylla%1:18:00:: 09491504 1 0 -scyphozoa%1:05:00:: 01910529 1 0 -scyphozoan%1:05:00:: 01911063 1 0 -scyphus%1:06:00:: 04158138 1 0 -scythe%1:06:00:: 04158250 1 0 -scythe%2:35:00:: 01319885 1 0 -scythia%1:15:00:: 09177647 1 0 -scythian%1:10:00:: 06975469 2 0 -scythian%1:18:00:: 10566966 1 0 -scythian%3:01:00:: 02793793 1 0 -scythian_lamb%1:20:00:: 13191148 1 0 -sd%1:15:00:: 09138935 1 0 -se%1:24:00:: 13832841 2 0 -se%1:27:00:: 14654175 1 0 -sea%1:17:00:: 09426788 1 37 -sea%1:19:00:: 11521404 3 0 -sea%1:23:00:: 13776971 2 3 -sea-coast%1:17:00:: 09428293 1 0 -sea-duty%1:04:00:: 00732369 1 0 -sea-ear%1:05:00:: 01943087 1 0 -sea-green%5:00:00:chromatic:00 00383607 1 0 -sea-lavender_family%1:20:00:: 12097927 1 0 -sea-lettuce_family%1:05:00:: 01408383 1 0 -sea-level%5:00:00:lowland:00 01219709 1 0 -sea-level_pressure%1:19:00:: 11496157 1 0 -sea-poose%1:11:00:: 07404261 1 0 -sea-purse%1:11:00:: 07404261 1 0 -sea-puss%1:11:00:: 07404261 1 0 -sea-rocket%1:20:00:: 11880411 1 0 -sea_anchor%1:06:00:: 04158457 1 0 -sea_anemone%1:05:00:: 01914609 1 0 -sea_animal%1:05:00:: 01319467 1 0 -sea_ash%1:20:00:: 12714949 1 0 -sea_aster%1:20:00:: 11935330 1 0 -sea_bass%1:05:00:: 02566834 2 0 -sea_bass%1:13:00:: 07777945 1 0 -sea_bathing%1:04:00:: 00442569 1 0 -sea_bird%1:05:00:: 02021795 1 1 -sea_biscuit%1:13:00:: 07694839 1 0 -sea_boat%1:06:00:: 04158807 1 0 -sea_bottom%1:17:00:: 09376526 1 1 -sea_bream%1:05:00:: 02590702 2 0 -sea_bream%1:13:00:: 07777189 1 0 -sea_breeze%1:19:00:: 11432155 1 0 -sea_captain%1:18:00:: 10298912 1 0 -sea_catfish%1:05:00:: 02520810 1 0 -sea_change%1:11:00:: 07360211 1 0 -sea_chantey%1:10:00:: 07050042 1 0 -sea_chest%1:06:00:: 04158956 1 0 -sea_chub%1:05:00:: 02604157 1 0 -sea_coal%1:27:00:: 14815423 1 0 -sea_cole%1:20:00:: 11884384 1 0 -sea_cow%1:05:00:: 02073250 1 0 -sea_cradle%1:05:00:: 01955084 1 0 -sea_crawfish%1:05:00:: 01984695 1 0 -sea_creature%1:05:00:: 01319467 1 0 -sea_cucumber%1:05:00:: 02321529 1 0 -sea_dahlia%1:20:00:: 11957514 1 0 -sea_dog%1:18:00:: 10294602 1 0 -sea_duck%1:05:00:: 01852861 1 0 -sea_eagle%1:05:01:: 01615121 2 0 -sea_eagle%1:05:02:: 01616086 1 0 -sea_elephant%1:05:00:: 02080415 1 0 -sea_eryngium%1:20:00:: 12938193 1 0 -sea_fan%1:05:00:: 01916481 1 0 -sea_feather%1:05:00:: 01916388 1 0 -sea_floor%1:17:00:: 09376526 1 0 -sea_god%1:18:00:: 09506830 1 0 -sea_gooseberry%1:05:00:: 01920438 1 0 -sea_green%1:07:00:: 04967674 1 0 -sea_gull%1:05:00:: 02041246 1 0 -sea_hare%1:05:00:: 01951274 1 0 -sea_holly%1:20:01:: 12938193 1 0 -sea_holly%1:20:02:: 12812478 2 0 -sea_holm%1:20:00:: 12938193 1 0 -sea_horse%1:05:00:: 01456756 2 0 -sea_horse%1:05:01:: 02081571 1 0 -sea_island_cotton%1:20:00:: 12176453 1 0 -sea_kale%1:20:00:: 11884384 1 0 -sea_king%1:18:00:: 10567096 1 0 -sea_ladder%1:06:00:: 04159676 1 0 -sea_lamprey%1:05:00:: 01477875 1 0 -sea_lane%1:06:00:: 04163364 1 0 -sea_lavender%1:20:00:: 12099342 1 0 -sea_lawyer%1:18:00:: 10567172 1 0 -sea_lettuce%1:05:00:: 01408743 1 0 -sea_level%1:07:00:: 05132340 1 0 -sea_lily%1:05:00:: 02320465 1 0 -sea_lion%1:05:00:: 02077923 1 0 -sea_louse%1:05:00:: 01992423 1 0 -sea_lyme_grass%1:20:00:: 12119539 1 0 -sea_mat%1:05:00:: 02313709 1 0 -sea_mew%1:05:00:: 02041678 1 0 -sea_mile%1:23:00:: 13660868 1 0 -sea_milkwort%1:20:00:: 12093885 1 0 -sea_moss%1:05:00:: 02313709 1 0 -sea_moss%1:05:02:: 01414216 2 0 -sea_mouse%1:05:00:: 01936858 1 0 -sea_nymph%1:18:00:: 09490352 1 0 -sea_of_azof%1:17:00:: 09427876 1 0 -sea_of_azoff%1:17:00:: 09427876 1 0 -sea_of_azov%1:17:00:: 09427876 1 0 -sea_of_cortes%1:17:00:: 09297584 1 0 -sea_of_japan%1:17:00:: 09428036 1 0 -sea_of_marmara%1:17:00:: 09347208 1 0 -sea_of_marmora%1:17:00:: 09347208 1 0 -sea_of_okhotsk%1:17:00:: 09428171 1 0 -sea_onion%1:20:01:: 12461673 2 0 -sea_onion%1:20:02:: 12462582 1 0 -sea_otter%1:05:00:: 02445394 1 0 -sea_pea%1:20:00:: 12540250 1 0 -sea_pen%1:05:00:: 01915700 1 0 -sea_pink%1:20:00:: 12099031 1 0 -sea_poacher%1:05:00:: 02647660 1 0 -sea_poker%1:05:00:: 02647660 1 0 -sea_poppy%1:20:00:: 11905749 1 0 -sea_power%1:07:00:: 05035264 1 1 -sea_power%1:14:00:: 08177487 2 0 -sea_purse%1:11:00:: 07404261 1 0 -sea_puss%1:11:00:: 07404261 1 0 -sea_raven%1:05:00:: 02645953 1 0 -sea_robber%1:18:00:: 10435367 1 0 -sea_robin%1:05:00:: 02650541 1 0 -sea_room%1:23:00:: 13778827 1 0 -sea_rover%1:18:00:: 10435367 1 0 -sea_scallop%1:05:00:: 01966586 2 0 -sea_scallop%1:13:00:: 07797913 1 0 -sea_scooter%1:06:00:: 04562122 1 0 -sea_scorpion%1:05:00:: 02643112 1 0 -sea_scout%1:18:00:: 10567613 1 0 -sea_serpent%1:18:00:: 09488006 1 0 -sea_slater%1:05:00:: 01992423 1 0 -sea_slug%1:05:00:: 01950731 1 0 -sea_snail%1:05:01:: 02647294 1 0 -sea_snake%1:05:00:: 01751748 1 0 -sea_spider%1:05:01:: 01787006 1 0 -sea_spray%1:27:00:: 15056749 1 1 -sea_spurry%1:20:00:: 11817501 1 0 -sea_squab%1:13:00:: 07781972 1 0 -sea_squill%1:20:00:: 12462582 1 0 -sea_squirt%1:05:00:: 01469103 1 0 -sea_star%1:05:00:: 02317335 1 0 -sea_starwort%1:20:00:: 11935330 1 0 -sea_steps%1:06:00:: 04159676 1 0 -sea_swallow%1:05:00:: 02043333 1 0 -sea_tang%1:05:00:: 01403713 1 0 -sea_tangle%1:05:00:: 01403595 1 0 -sea_trifoly%1:20:00:: 12093885 1 0 -sea_trout%1:05:01:: 02537716 3 0 -sea_trout%1:05:02:: 02599052 2 0 -sea_trout%1:13:00:: 07794744 1 0 -sea_turtle%1:05:00:: 01663401 1 0 -sea_urchin%1:05:00:: 02319095 1 0 -sea_wolf%1:05:00:: 02071294 1 0 -sea_wormwood%1:20:00:: 12014355 1 0 -sea_wrack%1:05:00:: 01398064 2 0 -sea_wrack%1:20:02:: 12618727 1 0 -seabag%1:06:00:: 04158672 1 0 -seabeach_sandwort%1:20:00:: 11806521 1 0 -seabed%1:17:00:: 09376526 1 0 -seabird%1:05:00:: 02021795 1 0 -seaboard%1:17:00:: 09428628 1 0 -seaborg%1:18:00:: 11290477 1 0 -seaborgium%1:27:00:: 14654058 1 0 -seaborne%5:00:00:mobile:00 01524562 1 0 -seacoast%1:17:00:: 09428293 1 1 -seafarer%1:18:00:: 10294602 1 1 -seafaring%1:04:00:: 00314469 1 0 -seafaring%1:04:01:: 00313647 2 0 -seafaring%5:00:00:marine:00 01381074 1 0 -seafood%1:13:00:: 07776866 1 0 -seafood_newburg%1:13:00:: 07870313 1 0 -seafood_sauce%1:13:00:: 07837110 1 0 -seafowl%1:05:00:: 02021795 1 0 -seafront%1:15:00:: 08633851 1 0 -seagirt%5:00:00:bordered:00 00259011 1 0 -seagoing%5:00:00:marine:00 01381074 1 0 -seagrass%1:05:00:: 01397871 1 0 -seagull%1:05:00:: 02041246 1 1 -seahorse%1:05:00:: 01456756 2 0 -seahorse%1:05:01:: 02081571 1 1 -seal%1:05:00:: 02076196 9 0 -seal%1:06:00:: 04159058 2 1 -seal%1:06:01:: 04160036 1 3 -seal%1:06:02:: 04159354 8 0 -seal%1:06:03:: 04159545 7 0 -seal%1:10:00:: 06705984 6 0 -seal%1:10:01:: 06855985 5 0 -seal%1:18:00:: 10348526 4 0 -seal%1:27:00:: 14766040 3 0 -seal%2:31:00:: 00698732 3 2 -seal%2:33:00:: 01143498 6 0 -seal%2:35:00:: 01353405 2 3 -seal%2:35:01:: 01356582 4 0 -seal%2:35:03:: 01354006 1 3 -seal%2:35:04:: 01269008 5 0 -seal_bomb%1:06:00:: 04159850 1 0 -seal_in%2:35:00:: 01348013 1 0 -seal_limbs%1:26:00:: 14466567 1 0 -seal_of_approval%1:10:00:: 06705984 1 1 -seal_off%2:33:00:: 01126846 2 1 -seal_off%2:35:00:: 01354006 1 3 -seal_oil%1:27:00:: 15021381 1 0 -seal_ring%1:06:00:: 04218271 1 0 -sealant%1:27:00:: 14705718 1 0 -sealed%3:00:01:: 02086667 2 0 -sealed%3:00:02:: 02087342 1 0 -sealed%5:00:00:concealed:00 02089943 3 0 -sealed%5:00:00:irrevocable:00 01760847 4 0 -sealed%5:00:00:paved:00 01739898 5 0 -sealed%5:00:01:covered:00 01697318 6 0 -sealed%5:00:02:covered:00 01697129 7 0 -sealed_instrument%1:10:00:: 06524278 1 0 -sealer%1:18:00:: 10567268 2 0 -sealer%1:27:00:: 14705718 1 0 -sealing%1:04:00:: 00830099 1 1 -sealing_material%1:27:00:: 14705533 1 0 -sealing_wax%1:06:00:: 04160036 1 0 -sealskin%1:06:00:: 04160261 2 0 -sealskin%1:27:00:: 14766040 1 0 -sealskin_tent%1:06:00:: 04498275 1 0 -sealyham%1:05:00:: 02095889 2 0 -sealyham%1:15:00:: 08895623 1 0 -sealyham_terrier%1:05:00:: 02095889 1 0 -seam%1:06:00:: 04160372 1 2 -seam%1:15:00:: 08659076 3 0 -seam%1:25:01:: 13905792 2 0 -seam%2:35:00:: 01296016 1 0 -seaman%1:18:00:: 10294602 1 2 -seaman%1:18:01:: 11290653 2 0 -seamanlike%3:00:00:: 01566476 1 0 -seamanly%3:00:00:: 01566476 1 0 -seamanship%1:09:00:: 05639832 1 0 -seamed%3:00:00:: 02253964 1 0 -seamed%5:00:00:rough:00 02241543 2 0 -seamless%3:00:00:: 02254264 1 0 -seamless%5:00:00:coherent:00 00464845 3 0 -seamless%5:00:00:smooth:00 02237978 2 0 -seamount%1:17:00:: 09427752 1 0 -seamster%1:18:00:: 10689564 1 0 -seamstress%1:18:00:: 10033412 1 0 -seamy%5:00:00:disreputable:00 01984806 2 0 -seamy%5:00:00:seamed:00 02254088 1 0 -sean_o'casey%1:18:00:: 11211419 1 0 -seanad%1:14:00:: 08319908 1 0 -seanad_eireann%1:14:00:: 08319908 1 0 -seance%1:14:00:: 08417920 1 0 -seaplane%1:06:00:: 04160586 1 0 -seaplane%2:38:00:: 01943153 1 0 -seaport%1:15:00:: 08639058 1 0 -seaquake%1:11:00:: 07429870 1 1 -sear%2:30:00:: 00377715 1 2 -sear%2:30:01:: 00379440 3 0 -sear%2:30:02:: 00218330 4 0 -sear%2:30:07:: 00582743 2 0 -sear%5:00:00:dry:01 02553234 1 0 -search%1:04:00:: 00945401 1 14 -search%1:04:01:: 00644366 5 0 -search%1:04:02:: 00637354 2 5 -search%1:09:00:: 05770058 4 0 -search%1:22:00:: 13553560 3 0 -search%2:31:00:: 00648224 3 3 -search%2:35:00:: 01315613 1 13 -search%2:35:01:: 01317723 4 2 -search%2:39:00:: 02153709 2 11 -search_and_destroy_mission%1:04:00:: 00971096 1 0 -search_and_rescue_mission%1:04:00:: 00096720 1 0 -search_engine%1:10:00:: 06578654 1 0 -search_language%1:10:00:: 06899446 1 0 -search_mission%1:04:00:: 00971004 1 0 -search_party%1:14:00:: 08265692 1 0 -search_warrant%1:10:00:: 06547321 1 1 -searcher%1:05:00:: 02167944 3 0 -searcher%1:18:00:: 10575787 1 0 -searcher%1:18:01:: 10567401 2 0 -searcher_beetle%1:05:00:: 02167944 1 0 -searching%5:00:00:exploratory:00 00878362 3 0 -searching%5:00:00:inquiring:00 00879918 1 2 -searching%5:00:00:intelligent:00 01336371 2 0 -searching_fire%1:04:00:: 00993651 1 0 -searchingly%4:02:00:: 00447237 1 0 -searchlight%1:06:00:: 04160847 1 3 -seared%5:00:00:cooked:00 00618584 1 0 -searing%5:00:00:critical:01 00648543 1 0 -searing_iron%1:06:00:: 04161010 1 0 -searobin%1:05:00:: 02650541 1 0 -sears_tower%1:06:00:: 04161102 1 0 -seascape%1:06:00:: 04161233 2 0 -seascape%1:15:00:: 08647049 1 0 -seashell%1:05:00:: 01956764 1 0 -seashore%1:17:00:: 09428293 1 0 -seashore_mallow%1:20:00:: 12182049 1 0 -seasick%5:00:00:ill:01 02542675 1 0 -seasickness%1:26:00:: 14203942 1 0 -seaside%1:17:00:: 09428628 1 0 -seaside_alder%1:20:00:: 12285195 1 0 -seaside_centaury%1:20:00:: 12291459 1 0 -seaside_daisy%1:20:00:: 11966617 1 0 -seaside_goldenrod%1:20:00:: 12017664 1 0 -seaside_mahoe%1:20:00:: 12188635 1 0 -seaside_scrub_oak%1:20:00:: 12275888 1 0 -seasnail%1:05:01:: 02647294 1 0 -seasnail%1:05:02:: 01945845 2 0 -season%1:28:00:: 15236475 2 14 -season%1:28:01:: 15239292 3 0 -season%1:28:02:: 15239579 1 40 -season%2:30:00:: 00295120 2 0 -season%2:30:01:: 00294884 3 0 -season%2:39:00:: 02191766 1 0 -season_ticket%1:10:00:: 06519077 1 0 -seasonable%3:00:00:: 01494586 1 0 -seasonable%5:00:00:opportune:00 01661529 2 0 -seasonableness%1:07:00:: 05049253 1 0 -seasonably%4:02:00:: 00273752 2 0 -seasonably%4:02:01:: 00273892 1 0 -seasonal%1:18:00:: 10567722 1 0 -seasonal%3:00:00:: 01494273 1 2 -seasonal_adjustment%1:21:00:: 13274892 1 0 -seasonal_worker%1:18:00:: 10567722 1 0 -seasonally%4:02:00:: 00447397 1 0 -seasoned%3:00:00:: 01494959 1 0 -seasoned%5:00:00:experienced:00 00936523 2 0 -seasoned_salt%1:13:00:: 07813579 1 0 -seasoner%1:13:00:: 07809368 2 0 -seasoner%1:18:00:: 10567848 1 0 -seasoning%1:04:00:: 00248368 2 0 -seasoning%1:13:00:: 07809368 1 0 -seat%1:06:00:: 04161358 4 2 -seat%1:06:01:: 04161981 3 2 -seat%1:06:02:: 04162433 9 0 -seat%1:06:03:: 04162599 8 0 -seat%1:07:00:: 05189946 7 0 -seat%1:08:00:: 05559256 2 4 -seat%1:15:00:: 08647945 5 1 -seat%1:15:01:: 08647616 1 9 -seat%1:15:02:: 08490039 6 0 -seat%2:35:00:: 01543998 1 9 -seat%2:35:01:: 01616901 6 0 -seat%2:35:02:: 01544285 7 0 -seat%2:40:00:: 02333979 5 0 -seat%2:40:01:: 02334302 4 0 -seat%2:41:00:: 02384275 3 2 -seat%2:42:00:: 02701962 2 2 -seat_belt%1:06:00:: 04162706 1 0 -seat_cushion%1:06:00:: 04162895 1 0 -seatbelt%1:06:00:: 04162706 1 0 -seated%3:00:00:: 01240029 1 7 -seating%1:04:00:: 01210699 2 0 -seating%1:06:00:: 04162998 1 0 -seating_area%1:06:00:: 04162998 1 0 -seating_capacity%1:07:00:: 05105879 1 0 -seating_room%1:06:00:: 04162998 1 0 -seats%1:06:00:: 04162998 1 0 -seattle%1:15:00:: 09154178 1 2 -seattle_slew%1:05:00:: 02384533 1 0 -seawall%1:06:00:: 02894605 1 0 -seaward%1:24:00:: 13830084 1 0 -seaward%3:00:00:: 00464399 1 0 -seaward%3:00:04:: 00464195 2 0 -seaward%4:02:00:: 00447578 1 0 -seaward%5:00:00:coastal:00 00463580 3 0 -seawards%4:02:00:: 00447578 1 0 -seawater%1:27:00:: 15008847 1 1 -seaway%1:06:00:: 04163364 1 0 -seaweed%1:05:00:: 01397497 1 1 -seaworthiness%1:26:00:: 14547036 1 0 -seaworthy%3:00:00:: 02087956 1 0 -seb%1:27:00:: 15050695 1 0 -sebaceous%5:00:00:fatty:00 00992432 1 0 -sebaceous_cyst%1:26:00:: 14202763 1 0 -sebaceous_follicle%1:08:00:: 05328232 1 0 -sebaceous_gland%1:08:00:: 05328232 1 0 -sebacic_acid%1:27:00:: 14739861 1 0 -sebastian_cabot%1:18:00:: 10877841 1 0 -sebastian_vizcaino%1:18:00:: 11368076 1 0 -sebastiana%1:20:00:: 12928690 1 0 -sebastodes%1:05:00:: 02643989 1 0 -sebastodes_caurinus%1:05:00:: 02644360 1 0 -sebastodes_marinus%1:05:00:: 02644817 1 0 -sebastodes_miniatus%1:05:00:: 02644501 1 0 -sebastodes_ruberrimus%1:05:00:: 02644665 1 0 -sebastopol%1:15:00:: 09017168 1 0 -sebe%1:24:00:: 13832717 1 0 -seborrhea%1:26:00:: 14232596 1 0 -seborrheic_dermatitis%1:26:00:: 14232740 1 0 -seborrheic_eczema%1:26:00:: 14232740 1 0 -seborrheic_keratosis%1:26:00:: 14229067 1 0 -sebs%1:24:00:: 13832993 1 0 -sebum%1:08:00:: 05416979 1 0 -sec%1:14:00:: 08424044 3 0 -sec%1:24:00:: 13788690 2 0 -sec%1:28:00:: 15235126 1 3 -sec%5:00:00:dry:03 02368247 1 0 -secale%1:20:00:: 12133870 1 0 -secale_cereale%1:20:00:: 12134025 1 0 -secant%1:24:00:: 13788690 2 0 -secant%1:25:00:: 13871338 1 0 -secateurs%1:06:00:: 04163530 1 0 -secede%2:41:00:: 02535457 1 13 -secern%2:31:01:: 00650353 1 0 -secernate%2:31:00:: 00650353 1 0 -secernment%1:09:00:: 05748054 2 0 -secernment%1:22:00:: 13553916 1 0 -secession%1:04:00:: 00384933 3 0 -secession%1:04:01:: 00385104 2 0 -secession%1:14:00:: 08470034 1 0 -secessionism%1:09:00:: 05968710 1 0 -secessionist%1:18:00:: 10567979 1 1 -sechuana%1:10:00:: 06995664 1 0 -seckel%1:13:00:: 07768318 1 0 -seckel_pear%1:13:00:: 07768318 1 0 -seclude%2:30:00:: 00495998 1 1 -secluded%5:00:00:private:00 01860580 1 1 -secluded%5:00:02:private:00 01859055 2 0 -seclusion%1:04:00:: 01201773 2 0 -seclusion%1:07:00:: 04622932 1 0 -secobarbital%1:06:00:: 04163740 1 0 -secobarbital_sodium%1:06:00:: 04163740 1 0 -seconal%1:06:00:: 04163740 1 0 -second%1:04:00:: 00723783 3 2 -second%1:06:00:: 04164529 9 0 -second%1:06:01:: 03587050 10 0 -second%1:10:00:: 07180372 8 0 -second%1:18:00:: 10568083 7 0 -second%1:23:00:: 13611395 6 0 -second%1:24:00:: 13846546 5 0 -second%1:28:00:: 15235126 1 24 -second%1:28:01:: 15246853 2 6 -second%1:28:02:: 15244650 4 0 -second%2:41:00:: 02556817 1 0 -second%2:41:01:: 02393304 2 0 -second%3:00:00:: 01016436 2 0 -second%4:02:00:: 00102881 1 9 -second%5:00:00:ordinal:00 02202146 1 108 -second-best%4:02:00:: 00447688 1 0 -second-best%5:00:00:best:00 00229130 1 0 -second-class%5:00:00:inferior:02 02348140 1 0 -second-degree_burn%1:26:00:: 14291295 1 0 -second-guess%2:32:00:: 00917537 2 0 -second-guess%2:32:01:: 00917651 1 0 -second-hand_speech%1:10:00:: 07141789 1 0 -second-hand_store%1:06:00:: 04428634 1 0 -second-in-command%1:18:00:: 10568915 1 0 -second-place_finish%1:11:00:: 07354504 1 0 -second-rate%5:00:00:inferior:02 02347564 1 1 -second-rater%1:18:00:: 10569179 1 0 -second-sighted%5:00:00:prophetic:00 01882474 1 0 -second-string%5:00:00:secondary:01 01854935 1 0 -second-stringer%1:18:00:: 10671042 1 0 -second-year%5:00:00:intermediate:00 01015599 1 0 -second_advent%1:11:00:: 07322550 1 0 -second_adventism%1:09:00:: 06226934 1 0 -second_adventist%1:18:00:: 09678747 1 0 -second_balcony%1:06:00:: 04164199 1 0 -second_banana%1:18:00:: 10660883 1 0 -second_banana%1:18:01:: 10568608 2 0 -second_base%1:04:00:: 00723783 2 0 -second_base%1:06:00:: 04164406 1 1 -second_baseman%1:18:00:: 10568200 1 1 -second_battle_of_ypres%1:04:00:: 01300782 1 0 -second_best%1:18:00:: 10543057 1 0 -second_childhood%1:28:00:: 15154190 1 0 -second_class%1:06:00:: 02932693 3 0 -second_class%1:07:00:: 04731207 2 0 -second_class%1:26:00:: 14430916 1 0 -second_class%4:02:00:: 00447770 1 0 -second_coming%1:11:00:: 07322550 1 1 -second_coming_of_christ%1:11:00:: 07322550 1 0 -second_council_of_constantinople%1:14:00:: 08314327 1 0 -second_council_of_lyons%1:14:00:: 08316564 1 0 -second_council_of_nicaea%1:14:00:: 08314715 1 0 -second_cousin%1:18:00:: 10568358 1 1 -second_cranial_nerve%1:08:00:: 05478336 1 0 -second_crusade%1:04:00:: 00969225 1 0 -second_deck%1:06:00:: 03711459 1 0 -second_earl_grey%1:18:00:: 11015650 1 0 -second_earl_of_chatham%1:18:00:: 11236497 1 0 -second_earl_of_guilford%1:18:00:: 11209790 1 0 -second_empire%1:14:00:: 08406036 1 0 -second_epistel_of_john%1:10:00:: 06447400 1 0 -second_epistle_of_paul_the_apostle_to_the_corinthians%1:10:00:: 06443658 1 0 -second_epistle_of_paul_the_apostle_to_the_thessalonians%1:10:00:: 06445214 1 0 -second_epistle_of_paul_the_apostle_to_timothy%1:10:00:: 06445729 1 0 -second_epistle_of_peter%1:10:00:: 06447039 1 0 -second_epistle_to_the_corinthians%1:10:00:: 06443658 1 0 -second_epistle_to_the_thessalonians%1:10:00:: 06445214 1 0 -second_epistle_to_timothy%1:10:00:: 06445729 1 0 -second_estate%1:14:00:: 08167953 1 0 -second_fiddle%1:04:00:: 00721929 2 0 -second_fiddle%1:18:00:: 10568608 1 0 -second_gear%1:06:00:: 04164529 1 0 -second_growth%1:20:00:: 13240203 1 0 -second_half%1:28:00:: 15258179 1 2 -second_hand%1:06:00:: 04164757 2 0 -second_hand%1:18:00:: 10568754 1 1 -second_hand%4:02:00:: 00504492 1 0 -second_joint%1:13:00:: 07648267 1 0 -second_lateran_council%1:14:00:: 08315682 1 0 -second_law_of_motion%1:09:00:: 05886039 1 0 -second_law_of_thermodynamics%1:09:00:: 05883035 1 0 -second_lieutenant%1:18:00:: 10569011 1 0 -second_marquis_of_rockingham%1:18:00:: 11267343 1 0 -second_moment%1:09:00:: 06024761 1 3 -second_mortgage%1:21:00:: 13352610 1 0 -second_nature%1:04:00:: 00414881 1 0 -second_period%1:28:00:: 15257553 1 0 -second_person%1:10:00:: 06327870 1 0 -second_power%1:23:00:: 13731021 1 0 -second_reading%1:10:00:: 07163381 1 0 -second_reich%1:14:00:: 08169919 1 0 -second_sacker%1:18:00:: 10568200 1 0 -second_sight%1:10:00:: 07256695 1 0 -second_stomach%1:05:00:: 02399648 1 0 -second_string%1:14:00:: 08080762 1 0 -second_thought%1:09:00:: 05790012 1 1 -second_trimester%1:28:00:: 15227133 1 0 -second_vatican_council%1:14:00:: 08318216 1 0 -second_wind%1:04:00:: 00836639 2 0 -second_wind%1:07:00:: 04836960 1 0 -second_world_war%1:04:00:: 01312096 1 0 -secondarily%4:02:00:: 00138291 1 2 -secondary%1:06:00:: 04164002 2 0 -secondary%1:14:00:: 08429899 1 0 -secondary%3:00:01:: 01853461 1 11 -secondary%5:00:00:incidental:00 01857956 3 0 -secondary%5:00:00:junior:00 02100968 2 0 -secondary%5:00:00:minor:06 01473558 4 0 -secondary%5:00:00:subordinate:01 00793592 5 0 -secondary_amenorrhea%1:26:00:: 14303743 1 0 -secondary_cell%1:06:00:: 04328580 1 0 -secondary_censorship%1:04:00:: 00822544 1 0 -secondary_coil%1:06:00:: 04164002 1 0 -secondary_dentition%1:08:00:: 05282339 1 0 -secondary_diagonal%1:14:00:: 08268807 1 0 -secondary_dysmenorrhea%1:26:00:: 14326458 1 0 -secondary_education%1:04:00:: 00886807 1 0 -secondary_emission%1:22:00:: 13553758 1 0 -secondary_hypertension%1:26:00:: 14105386 1 0 -secondary_modern_school%1:14:00:: 08413092 1 0 -secondary_school%1:14:00:: 08284481 1 2 -secondary_sex_character%1:07:00:: 05007800 1 0 -secondary_sex_characteristic%1:07:00:: 05007800 1 0 -secondary_sexual_characteristic%1:07:00:: 05007800 1 0 -secondary_storage%1:06:00:: 02763306 1 0 -secondary_syphilis%1:26:00:: 14134482 1 0 -secondary_winding%1:06:00:: 04164002 1 0 -seconder%1:18:00:: 10568443 1 0 -secondhand%4:02:00:: 00058823 1 1 -secondhand%5:00:00:old:01 01640482 2 1 -secondhand%5:00:00:secondary:01 01854702 1 1 -secondhand_car%1:06:00:: 04516354 1 0 -secondly%4:02:00:: 00102881 1 2 -secondment%1:04:00:: 00732201 2 0 -secondment%1:10:00:: 07180372 1 0 -secondo%1:10:00:: 07031401 1 0 -secotiaceae%1:20:00:: 13047385 1 0 -secotiales%1:20:00:: 13047216 1 0 -secpar%1:23:00:: 13657489 1 0 -secrecy%1:07:02:: 04652177 1 2 -secrecy%1:26:00:: 14416089 2 1 -secret%1:09:00:: 05685538 3 0 -secret%1:10:00:: 06673142 1 9 -secret%1:10:01:: 06672953 2 0 -secret%5:00:00:classified:02 00416045 11 0 -secret%5:00:00:concealed:00 02090069 1 10 -secret%5:00:00:esoteric:00 00900071 10 0 -secret%5:00:00:inward:00 00952181 5 1 -secret%5:00:00:private:00 01859571 8 0 -secret%5:00:00:unacknowledged:00 00028984 3 2 -secret%5:00:01:covert:00 01706465 2 2 -secret%5:00:02:concealed:00 02089514 6 0 -secret%5:00:02:covert:00 01706986 9 0 -secret%5:00:02:private:00 01860580 7 0 -secret%5:00:03:covert:00 01707404 4 1 -secret_agent%1:18:00:: 10569411 1 0 -secret_approval%1:10:00:: 06689125 1 0 -secret_ballot%1:04:00:: 00184362 1 0 -secret_code%1:10:00:: 06355307 1 0 -secret_intelligence_service%1:14:00:: 08346655 1 0 -secret_plan%1:09:00:: 05907682 1 0 -secret_police%1:14:00:: 08211584 1 0 -secret_service%1:14:00:: 08348400 1 0 -secret_society%1:14:00:: 08235343 1 0 -secret_writing%1:04:00:: 00614489 2 0 -secret_writing%1:10:00:: 06355183 1 0 -secretaire%1:06:00:: 04164868 1 0 -secretarial%3:01:00:: 02794123 1 0 -secretarial_assistant%1:18:00:: 10569744 1 0 -secretarial_school%1:14:00:: 08284847 1 1 -secretariat%1:05:00:: 02384428 2 0 -secretariat%1:14:00:: 08324274 1 0 -secretariate%1:14:00:: 08324274 1 0 -secretary%1:06:00:: 04164868 4 0 -secretary%1:18:00:: 10569744 2 14 -secretary%1:18:01:: 10570019 1 14 -secretary%1:18:02:: 10521928 3 0 -secretary_bird%1:05:00:: 01618503 1 0 -secretary_general%1:18:00:: 10573829 1 1 -secretary_of_agriculture%1:04:00:: 00600200 2 0 -secretary_of_agriculture%1:18:00:: 10570704 1 0 -secretary_of_commerce%1:04:00:: 00600435 2 0 -secretary_of_commerce%1:18:00:: 10570961 1 0 -secretary_of_commerce_and_labor%1:04:00:: 00603512 1 0 -secretary_of_defense%1:04:00:: 00600655 2 0 -secretary_of_defense%1:18:00:: 10571202 1 0 -secretary_of_education%1:04:00:: 00600871 2 0 -secretary_of_education%1:18:00:: 10571435 1 0 -secretary_of_energy%1:04:00:: 00601088 2 0 -secretary_of_energy%1:18:00:: 10571670 1 0 -secretary_of_health_and_human_services%1:04:00:: 00601296 2 0 -secretary_of_health_and_human_services%1:18:00:: 10571907 1 0 -secretary_of_health_education_and_welfare%1:04:00:: 00603684 1 0 -secretary_of_housing_and_urban_development%1:04:00:: 00601557 2 0 -secretary_of_housing_and_urban_development%1:18:00:: 10572185 1 0 -secretary_of_labor%1:04:00:: 00601822 2 0 -secretary_of_labor%1:18:00:: 10572469 1 0 -secretary_of_state%1:04:00:: 00602026 3 0 -secretary_of_state%1:18:00:: 10103794 2 2 -secretary_of_state%1:18:01:: 10572706 1 6 -secretary_of_state_for_the_home_department%1:18:00:: 10182628 1 0 -secretary_of_the_interior%1:04:00:: 00602220 1 18 -secretary_of_the_interior%1:18:00:: 10572889 2 0 -secretary_of_the_navy%1:04:00:: 00603319 1 0 -secretary_of_the_treasury%1:04:00:: 00602448 2 0 -secretary_of_the_treasury%1:18:00:: 10573129 1 13 -secretary_of_transportation%1:04:00:: 00602669 2 0 -secretary_of_transportation%1:18:00:: 10573349 1 0 -secretary_of_veterans_affairs%1:04:00:: 00602909 2 0 -secretary_of_veterans_affairs%1:18:00:: 10573596 1 0 -secretary_of_war%1:04:00:: 00603131 1 0 -secretaryship%1:04:00:: 00599472 1 0 -secretase%1:27:00:: 15021560 1 0 -secrete%2:29:00:: 00069295 1 1 -secrete%2:39:02:: 02145271 2 0 -secreter%1:08:00:: 05327767 1 0 -secretin%1:08:00:: 05409426 1 0 -secretion%1:08:00:: 05404728 2 1 -secretion%1:22:00:: 13553916 1 3 -secretive%5:00:00:uncommunicative:00 00501004 1 0 -secretively%4:02:00:: 00447865 1 0 -secretiveness%1:07:01:: 04657407 1 0 -secretiveness%1:07:02:: 04652177 2 0 -secretly%4:02:00:: 00166608 1 3 -secretly%4:02:02:: 00162473 2 1 -secretor%1:08:00:: 05327767 1 0 -secretory%3:01:00:: 02794253 1 0 -secretory_organ%1:08:00:: 05327767 1 0 -secretory_phase%1:28:00:: 15289208 1 0 -sect%1:14:00:: 08251877 2 0 -sect%1:14:01:: 08149781 1 1 -sectarian%1:18:00:: 10573957 1 0 -sectarian%3:00:00:: 02091574 2 0 -sectarian%3:01:01:: 02794372 1 0 -sectarianism%1:09:00:: 06206021 1 0 -sectarist%1:18:00:: 10573957 1 0 -sectary%1:18:00:: 10573957 1 0 -section%1:04:00:: 00678010 14 0 -section%1:06:00:: 04164989 4 10 -section%1:09:00:: 05867413 6 1 -section%1:10:00:: 06392001 1 43 -section%1:13:00:: 07747455 13 0 -section%1:14:00:: 08216795 11 0 -section%1:14:01:: 08216900 10 0 -section%1:14:02:: 08214832 5 1 -section%1:14:03:: 08114861 12 0 -section%1:14:04:: 08239152 9 0 -section%1:15:00:: 08648153 8 0 -section%1:15:01:: 08648322 3 11 -section%1:17:00:: 09428741 2 31 -section%1:23:00:: 13613504 7 0 -section%2:35:00:: 01563005 1 0 -section_eight%1:04:00:: 00234277 2 0 -section_eight%1:18:00:: 10574154 1 0 -section_gang%1:14:00:: 08243570 1 0 -section_hand%1:18:00:: 10574311 1 0 -section_man%1:18:00:: 10574425 1 0 -sectional%1:06:00:: 04165409 1 0 -sectional%3:01:00:: 02943771 1 0 -sectional%5:00:00:divided:00 02482644 2 0 -sectional%5:00:00:territorial:00 02409095 3 0 -sectionalisation%1:04:00:: 00397953 1 0 -sectionalise%2:41:00:: 02468261 1 0 -sectionalism%1:09:00:: 06202429 1 0 -sectionalization%1:04:00:: 00397953 1 0 -sectionalize%2:41:00:: 02468261 1 0 -sectioned%5:00:00:divided:00 02482644 1 1 -sector%1:06:00:: 04165551 6 0 -sector%1:09:00:: 05853100 3 3 -sector%1:14:00:: 07966719 2 4 -sector%1:15:00:: 08648658 5 0 -sector%1:23:00:: 13626240 4 0 -sector%1:25:00:: 13875027 1 5 -sectorial%3:01:00:: 02794543 1 0 -sectral%1:06:00:: 02673480 1 0 -secular%1:18:00:: 10250527 1 0 -secular%3:00:00:: 01782854 4 0 -secular%3:00:05:: 02056880 3 0 -secular%3:00:07:: 02577061 2 0 -secular%3:01:00:: 02793988 1 0 -secular%5:00:06:profane:00 02057226 5 0 -secular_games%1:04:00:: 00518770 1 0 -secular_humanism%1:09:00:: 05967191 1 0 -secularisation%1:04:00:: 01109311 2 0 -secularisation%1:04:01:: 01155465 1 0 -secularise%2:30:00:: 00136044 1 0 -secularism%1:09:00:: 05968835 1 1 -secularist%1:18:00:: 10574538 1 1 -secularization%1:04:00:: 01109311 2 0 -secularization%1:04:01:: 01155465 1 0 -secularize%2:30:00:: 00136044 1 1 -secularize%2:40:00:: 02221794 2 0 -secundigravida%1:18:00:: 10574723 1 0 -secure%2:32:00:: 00890590 4 1 -secure%2:35:01:: 01340439 2 4 -secure%2:35:02:: 01422886 5 0 -secure%2:35:03:: 01306425 6 0 -secure%2:40:00:: 02238770 1 20 -secure%2:40:01:: 02349706 3 2 -secure%3:00:01:: 02093305 1 3 -secure%3:00:02:: 02093888 2 2 -secure%3:00:03:: 02095311 3 0 -secure%5:00:00:invulnerable:00 02526124 4 0 -secure%5:00:00:sound:00 02273643 5 0 -secured_bond%1:21:00:: 13339734 1 0 -securely%4:02:00:: 00224700 1 1 -securely%4:02:01:: 00376883 4 0 -securely%4:02:02:: 00377097 3 0 -securely%4:02:03:: 00377522 2 0 -secureness%1:07:00:: 04777098 2 0 -secureness%1:26:00:: 14539693 1 0 -securer%1:18:00:: 10479328 1 0 -securities_analyst%1:18:00:: 09790865 1 0 -securities_and_exchange_commission%1:14:00:: 08424044 1 0 -securities_firm%1:14:00:: 08069878 1 0 -securities_industry%1:14:00:: 08072837 1 0 -securities_law%1:14:00:: 08456474 1 0 -securities_market%1:06:00:: 04323026 1 0 -security%1:04:00:: 00823316 9 0 -security%1:06:00:: 04165945 8 0 -security%1:10:00:: 06685754 7 0 -security%1:12:00:: 07526338 3 1 -security%1:14:00:: 08120910 6 0 -security%1:21:00:: 13349395 5 0 -security%1:21:01:: 13344071 2 5 -security%1:21:04:: 13416345 4 0 -security%1:26:00:: 14539268 1 17 -security_blanket%1:06:00:: 04165675 2 0 -security_blanket%1:06:01:: 04165811 1 0 -security_consultant%1:18:00:: 10574840 1 0 -security_council%1:14:00:: 08296332 1 0 -security_department%1:14:00:: 08120910 1 0 -security_deposit%1:21:00:: 13351278 1 0 -security_director%1:18:00:: 10574958 1 0 -security_force%1:14:00:: 08210982 1 0 -security_guard%1:18:00:: 10770059 1 0 -security_intelligence%1:04:00:: 00820845 1 0 -security_intelligence_review_committee%1:14:00:: 08346905 1 0 -security_interest%1:21:00:: 13287984 1 0 -security_measure%1:06:00:: 04165945 1 0 -security_measures%1:04:00:: 00823316 1 0 -security_review%1:04:00:: 00821083 1 0 -security_service%1:14:00:: 08347206 1 0 -security_staff%1:14:00:: 08352720 1 0 -security_system%1:06:00:: 04165945 2 0 -security_system%1:06:01:: 04166111 1 0 -sed_rate%1:28:00:: 15277462 1 0 -sedalia%1:15:00:: 09107950 1 0 -sedan%1:06:00:: 04166281 1 2 -sedan%1:06:01:: 04166436 2 0 -sedan_chair%1:06:00:: 04166436 1 0 -sedate%2:29:00:: 00022316 1 0 -sedate%5:00:00:decorous:00 00689336 1 1 -sedate%5:00:00:serious:00 02119213 2 0 -sedately%4:02:00:: 00448066 1 0 -sedateness%1:07:00:: 04647826 1 0 -sedation%1:04:00:: 00695300 2 0 -sedation%1:26:00:: 14290212 1 0 -sedative%1:06:00:: 04166553 1 0 -sedative%5:00:00:depressant:00 02308472 1 0 -sedative-hypnotic%1:06:00:: 04166841 1 0 -sedative-hypnotic_drug%1:06:00:: 04166841 1 0 -sedative_drug%1:06:00:: 04166553 1 0 -sedentary%5:00:00:inactive:01 00034572 1 1 -seder%1:04:00:: 01035667 1 0 -sedge%1:20:00:: 12150028 1 0 -sedge_bird%1:05:00:: 01565599 1 0 -sedge_family%1:20:00:: 12149751 1 0 -sedge_warbler%1:05:00:: 01565599 1 0 -sedge_wren%1:05:01:: 01565599 2 0 -sedge_wren%1:05:02:: 01585422 1 0 -sedgelike%5:00:00:grassy:00 00209988 1 0 -sedgy%5:00:00:grassy:00 00210079 1 0 -sediment%1:17:00:: 09428967 1 3 -sediment%2:38:00:: 01988645 2 0 -sediment%2:38:01:: 01988755 1 0 -sedimentary%3:00:00:: 01355089 2 0 -sedimentary%3:01:00:: 02952109 1 0 -sedimentary_clay%1:27:00:: 15021824 1 0 -sedimentary_rock%1:27:00:: 14698000 1 0 -sedimentation%1:19:00:: 11445395 1 2 -sedimentation_rate%1:28:00:: 15277462 1 0 -sedition%1:04:00:: 00772813 1 0 -seditious%5:00:00:disloyal:00 00963283 2 0 -seditious%5:00:00:provocative:00 01897378 1 0 -sedna%1:17:00:: 09429194 1 0 -seduce%2:32:00:: 00783246 2 0 -seduce%2:35:00:: 01428578 1 0 -seducer%1:18:00:: 10575089 2 0 -seducer%1:18:01:: 10575241 1 0 -seduction%1:04:00:: 00160415 1 1 -seduction%1:04:01:: 00160532 2 0 -seductive%3:00:00:: 02097268 1 1 -seductively%4:02:00:: 00448130 1 0 -seductress%1:18:00:: 10575387 1 0 -sedulity%1:07:00:: 04866078 1 0 -sedulous%5:00:00:diligent:00 00754393 1 0 -sedulously%4:02:00:: 00227558 1 1 -sedulousness%1:07:00:: 04866078 1 0 -sedum%1:20:00:: 12785724 1 0 -sedum_acre%1:20:00:: 12786097 1 0 -sedum_rosea%1:20:00:: 12786273 1 0 -sedum_telephium%1:20:00:: 12786464 1 0 -see%1:15:00:: 08586825 1 0 -see%2:31:00:: 00690614 5 47 -see%2:31:01:: 00591115 2 159 -see%2:31:02:: 00598954 6 40 -see%2:31:03:: 00662589 10 22 -see%2:31:08:: 00703708 18 1 -see%2:31:13:: 00623151 24 0 -see%2:32:00:: 00920336 9 27 -see%2:33:00:: 01156568 23 0 -see%2:35:09:: 01470670 15 4 -see%2:36:00:: 01635432 4 58 -see%2:38:00:: 02023107 8 27 -see%2:38:03:: 02026086 22 0 -see%2:39:00:: 02129289 1 613 -see%2:39:02:: 02128873 3 140 -see%2:39:03:: 02150948 7 29 -see%2:39:05:: 02129709 17 1 -see%2:39:11:: 02156225 19 0 -see%2:39:12:: 02110220 21 0 -see%2:39:13:: 02131279 20 0 -see%2:41:00:: 02486232 16 1 -see%2:41:10:: 02493030 13 10 -see%2:41:11:: 02488304 11 13 -see%2:41:12:: 02488488 12 12 -see%2:41:14:: 02549581 14 7 -see-through%5:00:00:thin:01 02413390 1 0 -see_double%2:39:00:: 02132579 1 0 -see_eye_to_eye%2:32:00:: 00805910 1 1 -see_red%2:37:00:: 01787106 1 0 -see_the_light%2:30:00:: 00167934 1 0 -see_through%2:30:00:: 00485147 3 0 -see_through%2:39:00:: 02198973 2 0 -see_through%2:40:00:: 02219732 1 0 -see_to_it%2:31:00:: 00662589 1 4 -seeable%3:00:00:: 02515341 1 0 -seed%1:08:00:: 05404336 5 0 -seed%1:09:00:: 05834758 4 0 -seed%1:18:00:: 10575463 3 0 -seed%1:20:00:: 13135832 1 12 -seed%1:20:02:: 11683989 2 5 -seed%2:30:00:: 00188375 7 0 -seed%2:30:01:: 00179718 8 0 -seed%2:30:02:: 00516425 6 0 -seed%2:31:00:: 00658913 5 0 -seed%2:35:00:: 01542056 1 1 -seed%2:35:01:: 01500873 4 0 -seed%2:36:00:: 01652429 3 0 -seed%2:40:00:: 02217546 2 0 -seed_beetle%1:05:00:: 02182045 1 0 -seed_cake%1:13:00:: 07634605 1 0 -seed_catalog%1:10:00:: 06488763 1 0 -seed_catalogue%1:10:00:: 06488763 1 0 -seed_coat%1:20:00:: 11682349 1 0 -seed_corn%1:21:00:: 13367913 1 0 -seed_fern%1:20:00:: 11605542 1 0 -seed_grain%1:21:00:: 13367913 1 2 -seed_lac%1:27:00:: 14702117 1 0 -seed_leaf%1:20:00:: 11686398 1 0 -seed_money%1:21:00:: 13356002 1 0 -seed_oyster%1:05:00:: 01960787 1 0 -seed_pearl%1:21:00:: 13372585 1 0 -seed_plant%1:20:00:: 11552386 1 0 -seed_shrimp%1:05:00:: 01997825 1 0 -seed_stock%1:21:00:: 13367787 1 0 -seed_vessel%1:20:00:: 11684264 1 0 -seed_weevil%1:05:00:: 02182045 1 0 -seedbed%1:06:00:: 04167122 1 2 -seedcake%1:13:00:: 07634605 1 0 -seedcase%1:20:00:: 13140049 1 0 -seeded%3:00:00:: 02254778 1 0 -seeded%5:00:00:planted:00 01832245 5 0 -seeded%5:00:01:seedy:00 02255487 4 0 -seeded%5:00:02:seedy:00 02255608 3 0 -seeded%5:00:03:seedless:00 02256209 2 0 -seeded_player%1:18:00:: 10575463 1 0 -seeded_raisin%1:13:00:: 07752874 1 0 -seeder%1:06:00:: 04167228 3 0 -seeder%1:06:01:: 04167346 2 0 -seeder%1:18:00:: 10575594 1 0 -seediness%1:07:00:: 04816761 1 0 -seedless%3:00:00:: 02256082 1 0 -seedless_raisin%1:13:00:: 07752782 1 0 -seedling%1:20:00:: 11552594 1 1 -seedman%1:18:00:: 10575705 1 0 -seedpod%1:20:00:: 13139055 1 1 -seedsman%1:18:00:: 10575705 1 0 -seedtime%1:28:00:: 15238271 2 0 -seedtime%1:28:01:: 15291416 1 0 -seedy%3:00:00:: 02255069 1 0 -seedy%5:00:00:disreputable:00 01984806 4 0 -seedy%5:00:00:ill:01 02542325 3 0 -seedy%5:00:00:worn:00 02583271 2 0 -seeger%1:18:00:: 11290864 2 0 -seeger%1:18:01:: 11290984 1 0 -seeing%1:09:01:: 05656537 2 0 -seeing%1:09:02:: 05710860 1 0 -seeing%5:00:00:sighted:00 02158731 1 0 -seeing_eye_dog%1:05:00:: 02109256 1 0 -seeing_red%1:26:00:: 14407070 1 0 -seek%1:11:00:: 07350893 1 0 -seek%2:32:00:: 01069989 5 0 -seek%2:35:00:: 01315613 2 41 -seek%2:38:00:: 01839170 4 0 -seek%2:40:00:: 02240481 1 44 -seek%2:41:00:: 02530167 3 32 -seek_out%2:35:00:: 01317424 1 14 -seek_time%1:28:00:: 15269128 1 0 -seeker%1:06:00:: 04167489 2 0 -seeker%1:18:00:: 10575787 1 1 -seeking%1:04:00:: 00946650 1 0 -seeking%1:04:01:: 00788362 2 0 -seel%2:39:00:: 02168710 1 0 -seeland%1:15:00:: 08761697 1 0 -seem%2:39:00:: 02133435 1 607 -seem%2:39:01:: 02134672 2 84 -seem%2:39:02:: 02198234 4 0 -seem%2:42:00:: 02745882 3 0 -seeming%5:00:00:superficial:00 01873985 1 6 -seemingly%4:02:00:: 00039941 1 9 -seemliness%1:07:00:: 04900357 1 0 -seemly%5:00:00:proper:00 01878870 1 0 -seep%2:38:00:: 02071974 1 4 -seepage%1:11:00:: 07432119 1 1 -seeping%5:00:00:leaky:00 01397892 1 1 -seer%1:18:00:: 10756433 1 1 -seer%1:18:01:: 10483530 3 0 -seer%1:18:02:: 10576071 2 0 -seersucker%1:06:00:: 04167661 1 0 -seesaw%1:06:00:: 04167759 1 0 -seesaw%2:38:00:: 01992251 2 0 -seesaw%2:38:01:: 01992375 1 0 -seesaw%2:38:02:: 01881034 3 0 -seethe%2:30:00:: 00324427 4 0 -seethe%2:30:03:: 00519751 3 0 -seethe%2:37:00:: 01767612 2 0 -seethe%2:42:00:: 02706605 1 0 -seething%5:00:00:agitated:02 00088328 1 1 -segal%1:18:00:: 11291179 1 0 -segment%1:06:00:: 04164989 1 4 -segment%1:17:00:: 09429387 2 0 -segment%2:35:00:: 01563005 1 0 -segment%2:35:01:: 01558440 2 0 -segmental%5:00:00:divided:00 02481951 2 1 -segmental%5:00:02:divided:00 02482790 1 1 -segmental_arch%1:06:00:: 04168084 1 0 -segmentation%1:04:00:: 00397953 2 0 -segmentation%1:22:00:: 13449156 1 0 -segmentation_cavity%1:05:00:: 01459242 1 0 -segmented%5:00:00:divided:00 02481951 1 0 -segmented_worm%1:05:00:: 01934440 1 0 -segno%1:10:00:: 06869271 1 0 -sego_lily%1:20:00:: 12448700 1 0 -segovia%1:18:00:: 11291284 1 0 -segregate%1:18:00:: 10576223 1 0 -segregate%2:30:00:: 00494613 3 0 -segregate%2:35:02:: 01558218 2 0 -segregate%2:41:00:: 02482139 1 5 -segregated%3:00:00:: 01326917 1 2 -segregation%1:04:00:: 01202184 3 0 -segregation%1:14:00:: 08380340 2 0 -segregation%1:22:00:: 13554121 1 0 -segregationism%1:09:00:: 06216805 1 0 -segregationist%1:18:00:: 10576316 1 1 -segregator%1:18:00:: 10576316 1 0 -segue%1:04:00:: 00201397 1 0 -segue%2:32:00:: 00781491 1 0 -segway%1:06:00:: 04168199 1 0 -segway_ht%1:06:00:: 04168199 1 0 -segway_human_transporter%1:06:00:: 04168199 1 0 -sei_whale%1:05:00:: 02065263 1 0 -seiche%1:11:00:: 07346195 1 0 -seidel%1:06:00:: 04168472 1 0 -seidlitz_powder%1:27:00:: 15009637 1 0 -seidlitz_powders%1:27:00:: 15009637 1 0 -seif_dune%1:17:00:: 09429630 1 0 -seigneur%1:18:00:: 10085736 1 0 -seigneur_de_bayard%1:18:00:: 10838802 1 0 -seigneury%1:04:00:: 00603866 2 0 -seigneury%1:21:00:: 13252293 1 0 -seignior%1:18:00:: 10085736 1 0 -seigniorage%1:21:00:: 13323648 1 0 -seigniory%1:04:00:: 00603866 2 0 -seigniory%1:21:00:: 13252293 1 0 -seiji_ozawa%1:18:00:: 11219502 1 0 -seine%1:06:00:: 04168541 2 0 -seine%1:17:00:: 09429752 1 0 -seine%2:33:00:: 01140184 1 0 -seine_river%1:17:00:: 09429752 1 0 -seism%1:11:00:: 07428954 1 0 -seismal%5:00:00:unstable:00 02293230 1 0 -seismic%5:00:00:unstable:00 02293230 1 1 -seismic_disturbance%1:11:00:: 07429276 1 0 -seismogram%1:06:00:: 04168716 1 0 -seismograph%1:06:00:: 04168840 1 2 -seismography%1:04:00:: 00603995 1 0 -seismologic%3:01:00:: 02908366 1 0 -seismological%3:01:00:: 02908366 1 0 -seismologist%1:18:00:: 10576513 1 0 -seismology%1:09:00:: 06120496 1 0 -seismosaur%1:05:00:: 01711496 1 0 -seismosaurus%1:05:00:: 01711297 1 0 -seiurus%1:05:00:: 01570112 1 0 -seiurus_aurocapillus%1:05:00:: 01570267 1 0 -seize%2:31:00:: 00737476 8 0 -seize%2:31:04:: 00737656 7 0 -seize%2:35:00:: 01212572 1 13 -seize%2:35:01:: 01213614 2 5 -seize%2:35:09:: 01365839 6 0 -seize%2:40:01:: 02272549 3 4 -seize%2:40:02:: 02273293 4 3 -seize%2:40:07:: 02274482 5 0 -seize_on%2:31:00:: 00602112 1 0 -seize_with_teeth%2:35:00:: 01445932 1 0 -seizer%1:18:00:: 10586265 1 0 -seizing%1:04:00:: 00812274 2 0 -seizing%1:06:00:: 04169035 1 0 -seizure%1:04:00:: 00085219 4 0 -seizure%1:04:01:: 00088481 2 1 -seizure%1:04:02:: 00775286 3 0 -seizure%1:26:00:: 14081941 1 3 -seizure-alert_dog%1:05:00:: 02109687 1 0 -sekhet%1:18:00:: 09513430 1 0 -selachian%1:05:00:: 01482071 1 0 -selachii%1:05:00:: 01481599 1 0 -selaginella%1:20:00:: 13224454 1 0 -selaginella_apoda%1:20:00:: 13224922 1 0 -selaginella_eatonii%1:20:00:: 13225617 1 0 -selaginella_eremophila%1:20:00:: 13225244 1 0 -selaginella_lepidophylla%1:20:00:: 13225365 1 0 -selaginella_rupestris%1:20:00:: 13225075 1 0 -selaginellaceae%1:20:00:: 13224256 1 0 -selaginellales%1:20:00:: 13224086 1 0 -selar%1:05:00:: 02580991 1 0 -selar_crumenophthalmus%1:05:00:: 02581108 1 0 -selcraig%1:18:00:: 11291824 1 0 -seldom%4:02:00:: 00035385 1 10 -select%2:31:00:: 00674607 1 58 -select%5:00:01:superior:02 02342309 2 0 -select%5:00:02:superior:02 02342899 1 2 -select_committee%1:14:00:: 08325851 1 0 -selected%3:00:00:: 02123475 1 2 -selection%1:04:00:: 00161243 1 13 -selection%1:09:00:: 05790242 3 1 -selection%1:10:00:: 06400510 5 0 -selection%1:14:00:: 08399818 2 2 -selection%1:22:00:: 13563746 4 0 -selective%5:00:00:discriminating:00 00775693 1 3 -selective%5:00:00:exclusive:00 01863246 2 0 -selective-serotonin_reuptake_inhibitor%1:06:00:: 04169152 1 0 -selective_amnesia%1:09:00:: 05673439 1 0 -selective_information%1:07:00:: 05091527 1 0 -selective_jamming%1:04:00:: 01251138 1 0 -selective_lipectomy%1:04:00:: 00682080 1 0 -selective_service%1:04:00:: 01157850 2 0 -selective_service%1:14:00:: 08353563 1 1 -selective_service_system%1:14:00:: 08353563 1 1 -selectively%4:02:00:: 00448282 1 0 -selectivity%1:07:00:: 05208988 1 0 -selectman%1:18:00:: 10576676 1 1 -selector%1:06:00:: 04169437 2 0 -selector%1:18:00:: 10431625 1 0 -selector_switch%1:06:00:: 04169437 1 0 -selectwoman%1:18:00:: 10576818 1 0 -selenarctos%1:05:00:: 02133512 1 0 -selenarctos_thibetanus%1:05:00:: 02133704 1 0 -selene%1:05:00:: 02578125 2 0 -selene%1:18:00:: 09571090 1 0 -selene_setapinnis%1:05:00:: 02578233 1 0 -selene_vomer%1:05:00:: 02578454 1 0 -selenic_acid%1:27:00:: 14616073 1 0 -selenicereus%1:20:00:: 11853644 1 0 -selenicereus_grandiflorus%1:20:00:: 11853979 1 0 -selenipedium%1:20:00:: 12082764 1 0 -selenium%1:27:00:: 14654175 1 0 -selenium_cell%1:06:00:: 04169597 1 0 -selenolatry%1:04:00:: 01046888 1 0 -selenology%1:09:00:: 06097983 1 0 -seles%1:18:00:: 11291451 1 0 -seleucus%1:18:00:: 11291575 1 0 -seleucus_i%1:18:00:: 11291575 1 0 -seleucus_i_nicator%1:18:00:: 11291575 1 0 -self%1:09:00:: 05675601 1 16 -self%1:18:00:: 09604981 2 7 -self%3:01:00:: 02794670 1 1 -self-abasement%1:04:00:: 01165537 1 0 -self-abnegating%5:00:00:nonindulgent:00 01301056 1 0 -self-abnegation%1:04:00:: 00205649 1 0 -self-absorbed%5:00:00:egoistic:00 00102079 1 0 -self-absorption%1:09:00:: 05837128 1 0 -self-abuse%1:04:00:: 00855936 1 0 -self-accusation%1:10:00:: 07216228 1 0 -self-acting%5:00:00:automatic:00 00182225 1 0 -self-activating%5:00:00:automatic:00 00182225 1 0 -self-adapting_program%1:10:00:: 06579452 1 0 -self-addressed%5:00:00:addressed:00 00050799 1 0 -self-aggrandisement%1:04:00:: 00373862 1 1 -self-aggrandising%3:01:00:: 02794853 1 0 -self-aggrandising%5:00:00:proud:00 01890752 2 0 -self-aggrandizement%1:04:00:: 00373862 1 0 -self-aggrandizing%3:01:00:: 02794853 1 0 -self-aggrandizing%5:00:00:proud:00 01890752 2 0 -self-analysis%1:04:00:: 00705433 2 0 -self-analysis%1:09:01:: 05786871 1 0 -self-annihilation%1:04:00:: 00222485 1 0 -self-appointed%5:00:00:unauthorized:00 00179676 1 0 -self-asserting%3:00:00:: 00156101 1 0 -self-assertion%1:04:00:: 01223143 2 0 -self-assertion%1:10:00:: 07230320 1 0 -self-assertive%3:00:00:: 00156101 1 0 -self-assertive%5:00:00:forward:02 00205033 2 0 -self-assertiveness%1:07:00:: 05167237 1 0 -self-assurance%1:09:00:: 05697363 1 0 -self-assured%5:00:00:confident:00 00339742 1 0 -self-aware%5:00:00:conscious:00 00570991 1 0 -self-awareness%1:09:00:: 05676605 1 1 -self-balancing%5:00:00:balanced:00 00894435 1 0 -self-centered%3:00:00:: 00101800 1 0 -self-centeredness%1:07:00:: 04835028 1 0 -self-centred%3:00:00:: 00101800 1 0 -self-collected%5:00:00:composed:00 00530354 1 0 -self-colored%5:00:00:homogeneous:00 01200491 1 0 -self-coloured%5:00:00:homogeneous:00 01200491 1 0 -self-command%1:07:00:: 04862005 1 0 -self-complacency%1:12:00:: 07531713 1 0 -self-complacent%5:00:00:contented:00 00589067 1 0 -self-conceited%5:00:00:proud:00 01891773 1 1 -self-conceitedly%4:02:00:: 00289421 1 0 -self-concern%1:07:00:: 04835028 1 0 -self-condemnation%1:10:00:: 07216228 1 0 -self-confessed%5:00:00:acknowledged:00 00027833 1 0 -self-confidence%1:09:00:: 05697363 1 3 -self-confident%5:00:00:confident:00 00339742 1 2 -self-conscious%5:00:00:conscious:00 00570991 1 1 -self-conscious%5:00:00:uncomfortable:01 00480965 2 0 -self-consciously%4:02:00:: 00448418 1 1 -self-consciousness%1:09:00:: 05676911 2 0 -self-consciousness%1:12:00:: 07507329 1 2 -self-consistent%5:00:00:consistent:00 00577698 1 1 -self-constituted%5:00:00:established:00 01636636 1 0 -self-contained%5:00:00:complete:00 00523587 1 2 -self-contained%5:00:00:composed:00 00530354 2 0 -self-contemplation%1:09:00:: 05786655 1 0 -self-contradiction%1:10:00:: 07206800 1 0 -self-contradictory%5:00:00:inconsistent:00 00578234 2 0 -self-contradictory%5:00:00:inexplicable:00 00939895 1 0 -self-control%1:04:00:: 01069578 1 1 -self-control%1:07:00:: 04862005 2 0 -self-criticism%1:09:00:: 05734477 1 0 -self-cultivation%1:09:00:: 05757423 1 0 -self-deceit%1:09:00:: 05895588 1 0 -self-deception%1:09:00:: 05895588 1 2 -self-defeating%5:00:00:unsuccessful:00 02335241 1 1 -self-defence%1:04:00:: 00825192 1 0 -self-defense%1:04:00:: 00825192 1 1 -self-denial%1:04:00:: 01069578 2 0 -self-denial%1:04:01:: 00205649 3 0 -self-denial%1:07:00:: 04881829 1 0 -self-denying%5:00:00:nonindulgent:00 01301056 2 0 -self-denying%5:00:00:unselfish:00 02099442 1 0 -self-deprecating%5:00:00:apologetic:00 01632314 1 0 -self-depreciation%1:12:00:: 07509474 1 0 -self-destroy%2:36:00:: 01620436 1 0 -self-destruct%2:36:00:: 01620436 1 0 -self-destruction%1:04:00:: 00222485 1 1 -self-destruction%1:04:01:: 00222766 2 0 -self-destructive%5:00:00:dangerous:00 02060912 1 1 -self-determination%1:07:00:: 05199151 2 0 -self-determination%1:26:00:: 13992738 1 3 -self-digestion%1:22:00:: 13435918 1 0 -self-directed%5:00:00:independent:00 00728225 1 0 -self-direction%1:26:00:: 14001031 1 0 -self-discipline%1:04:00:: 01069578 2 0 -self-discipline%1:07:00:: 04881829 1 1 -self-disciplined%5:00:00:nonindulgent:00 01301206 1 0 -self-discovery%1:04:00:: 00151314 1 0 -self-disgust%1:12:00:: 07506962 1 0 -self-distrust%1:12:00:: 07523286 1 0 -self-doubt%1:12:00:: 07523286 1 0 -self-drive%1:21:00:: 13248598 1 0 -self-educated%5:00:00:educated:00 00830508 1 0 -self-education%1:09:00:: 05757423 1 0 -self-effacement%1:04:00:: 00054328 1 1 -self-effacing%5:00:00:unassertive:00 00157268 1 1 -self-employed%3:00:00:: 00863823 1 0 -self-employed_person%1:18:00:: 10110421 1 0 -self-enclosed%5:00:00:enclosed:00 01658533 1 1 -self-established%5:00:00:established:00 01636636 1 0 -self-esteem%1:12:00:: 07508705 1 3 -self-evident%5:00:00:obvious:00 01618895 1 2 -self-evident_truth%1:09:00:: 05893512 1 0 -self-evidently%4:02:00:: 00448773 1 0 -self-examination%1:09:00:: 05786655 1 0 -self-examining%3:00:00:: 01350674 1 0 -self-explanatory%5:00:00:obvious:00 01619604 1 0 -self-expression%1:10:00:: 07073071 1 0 -self-feeder%1:06:00:: 04169707 1 0 -self-fertilisation%1:11:00:: 07437990 1 0 -self-fertilised%5:00:00:autogamous:00 00871690 1 0 -self-fertilization%1:11:00:: 07437990 1 0 -self-fertilized%5:00:00:autogamous:00 00871690 1 0 -self-flagellation%1:04:00:: 01162257 1 1 -self-forgetful%5:00:00:unselfish:00 02099561 1 0 -self-fulfillment%1:04:00:: 00062671 1 0 -self-generated%3:00:04:: 02282376 1 0 -self-generated%5:00:00:autogenous:00 00181162 2 0 -self-giving%5:00:00:unselfish:00 02099442 1 0 -self-governing%5:00:00:free:00 01062393 1 0 -self-government%1:26:00:: 13992738 1 2 -self-gratification%1:04:00:: 01073097 2 0 -self-gratification%1:07:00:: 04884817 1 0 -self-hatred%1:12:00:: 07506962 1 0 -self-heal%1:20:00:: 12863234 1 0 -self-help%1:04:00:: 00802111 1 1 -self-hypnosis%1:26:00:: 14026781 1 0 -self-importance%1:07:00:: 04887497 2 0 -self-importance%1:12:00:: 07508806 1 0 -self-important%5:00:00:proud:00 01889819 1 0 -self-imposed%5:00:00:voluntary:01 02520925 1 1 -self-improvement%1:04:00:: 00261258 1 0 -self-incrimination%1:10:00:: 07238589 1 0 -self-induced%3:01:00:: 02795013 1 0 -self-induced%5:00:00:autogenous:00 00181264 2 0 -self-inductance%1:23:00:: 13587525 1 0 -self-induction%1:19:00:: 11468578 1 0 -self-indulgence%1:04:00:: 00747671 2 0 -self-indulgence%1:07:00:: 04884627 1 1 -self-indulgent%5:00:00:indulgent:00 01299687 1 0 -self-indulgently%4:02:00:: 00116091 1 0 -self-insurance%1:21:00:: 13348792 1 0 -self-interest%1:07:00:: 04835028 2 0 -self-interest%1:07:01:: 04835488 1 1 -self-involved%5:00:00:egoistic:00 00102079 1 0 -self-justification%1:10:00:: 06741305 1 0 -self-knowledge%1:09:00:: 05806380 1 0 -self-limited%3:01:00:: 02795109 1 0 -self-loader%1:06:00:: 02759963 1 0 -self-loading%5:00:00:automatic:00 00181904 1 0 -self-locking%5:00:00:automatic:00 00182418 1 1 -self-love%1:07:00:: 04835260 2 0 -self-love%1:12:00:: 07508996 1 0 -self-loving%5:00:00:selfish:00 02098694 1 0 -self-luminous%5:00:00:bright:00 00283060 1 0 -self-made%5:00:00:successful:00 02332704 1 0 -self-mortification%1:04:00:: 01165537 1 0 -self-moving%5:00:00:automatic:00 00182225 1 0 -self-opinionated%5:00:00:narrow-minded:00 00288362 1 0 -self-organisation%1:04:00:: 01138399 1 0 -self-organization%1:04:00:: 01138399 1 0 -self-pity%1:12:00:: 07538272 1 0 -self-pollinated%5:00:00:autogamous:00 00871690 1 0 -self-pollinating%3:01:00:: 02795262 1 0 -self-pollination%1:11:00:: 07438983 1 0 -self-portrait%1:06:00:: 04169935 1 0 -self-possessed%5:00:00:composed:00 00530354 1 0 -self-possession%1:07:00:: 04862005 1 0 -self-praise%1:10:00:: 07229530 1 0 -self-preservation%1:04:00:: 00819958 1 1 -self-pride%1:12:00:: 07508705 1 1 -self-proclaimed%5:00:00:declared:00 00688413 1 0 -self-produced%5:00:00:autogenous:00 00181162 1 0 -self-propelled%5:00:00:dynamic:00 00810164 2 0 -self-propelled%5:00:00:moving:02 01562488 1 0 -self-propelled_vehicle%1:06:00:: 04170037 1 0 -self-propelling%5:00:00:dynamic:00 00810164 2 0 -self-propelling%5:00:00:moving:02 01562488 1 0 -self-protection%1:04:00:: 00825192 1 0 -self-punishment%1:04:00:: 01162672 1 0 -self-raising_flour%1:13:00:: 07594250 1 0 -self-realisation%1:04:00:: 00062671 1 0 -self-realization%1:04:00:: 00062671 1 0 -self-referent%5:00:00:backward:01 00202508 1 0 -self-reformation%1:04:00:: 00261258 1 0 -self-regard%1:07:00:: 04886881 1 0 -self-registering_thermometer%1:06:00:: 04170384 1 0 -self-regulating%5:00:00:automatic:00 00182225 1 0 -self-reliance%1:26:00:: 14001031 1 1 -self-reliant%5:00:00:independent:00 00728225 1 1 -self-renewal%1:04:00:: 01248961 1 0 -self-renewing%3:01:00:: 02795399 1 0 -self-renunciation%1:04:00:: 00205649 1 0 -self-report_inventory%1:10:00:: 06474603 1 0 -self-report_personality_inventory%1:10:00:: 06474603 1 0 -self-reproach%1:10:00:: 06713650 2 0 -self-reproach%1:12:00:: 07536074 1 0 -self-reproof%1:10:00:: 06713650 1 0 -self-respect%1:07:00:: 04886881 1 2 -self-respectful%5:00:00:proud:00 01890988 1 0 -self-respecting%5:00:00:proud:00 01890988 1 0 -self-restraining%5:00:00:nonindulgent:00 01301206 1 0 -self-restraint%1:07:00:: 04883243 1 0 -self-righteous%5:00:00:pious:00 01782100 1 0 -self-righteously%4:02:00:: 00446118 1 0 -self-rising_flour%1:13:00:: 07594250 1 0 -self-rule%1:26:00:: 13992738 1 0 -self-sacrifice%1:04:00:: 01205961 1 1 -self-sacrificing%5:00:00:unselfish:00 02099442 1 0 -self-satisfaction%1:12:00:: 07531713 1 4 -self-satisfied%5:00:00:contented:00 00589067 2 0 -self-satisfied%5:00:02:contented:00 00589448 1 0 -self-sealing%5:00:00:adhesive:00 00054541 2 0 -self-sealing%5:00:00:punctureless:00 01776845 1 0 -self-seeded%5:00:00:planted:00 01832341 1 0 -self-seeker%1:18:00:: 10379376 1 0 -self-seeking%1:07:00:: 04835488 1 0 -self-seeking%5:00:00:selfish:00 02098918 1 0 -self-service%1:04:00:: 00098939 1 0 -self-service%3:01:00:: 02795489 1 0 -self-serving%5:00:00:selfish:00 02098918 1 0 -self-sowed%5:00:00:planted:00 01832341 1 0 -self-sown%5:00:00:planted:00 01832341 1 0 -self-starter%1:06:00:: 04170515 2 0 -self-starter%1:18:00:: 10577182 1 0 -self-stimulation%1:04:00:: 00855936 1 0 -self-styled%5:00:00:questionable:00 01918001 1 0 -self-sufficiency%1:26:00:: 14001031 1 0 -self-sufficient%5:00:00:independent:00 00729439 1 2 -self-sufficing%5:00:00:independent:00 00729439 1 0 -self-suggestion%1:04:00:: 00158805 1 0 -self-supporting%5:00:00:independent:00 00729647 1 0 -self-sustained%5:00:00:unfueled:00 01099348 1 0 -self-sustaining%5:00:00:independent:00 00729439 1 4 -self-taught_art%1:06:00:: 03861959 1 0 -self-torment%1:12:00:: 07496924 1 0 -self-torture%1:12:00:: 07496924 1 0 -self-whispered%5:00:00:inward:00 00952307 1 1 -self-will%1:07:00:: 04863074 1 1 -self-will%1:07:01:: 04862005 2 1 -self-willed%5:00:00:disobedient:00 01614372 1 0 -self-winding%5:00:00:automatic:00 00182510 1 0 -self-worship%1:04:00:: 01044761 1 0 -self-worth%1:07:00:: 04886881 1 0 -self_acceptance%1:07:00:: 04638472 1 1 -selfish%3:00:00:: 02098325 1 3 -selfish_person%1:18:00:: 10576962 1 0 -selfishly%4:02:00:: 00327089 1 0 -selfishness%1:07:00:: 04834605 1 2 -selfless%3:00:00:: 00101609 1 0 -selflessly%4:02:00:: 00270974 1 0 -selflessness%1:04:00:: 01205961 2 0 -selflessness%1:07:00:: 04833276 1 0 -selfsame%5:00:00:same:02 02068946 1 0 -selfsameness%1:07:00:: 04743486 1 0 -seljuk%1:14:00:: 08158089 1 0 -seljuk%3:01:00:: 02970360 1 0 -selkirk%1:18:00:: 11291824 1 0 -selkirk_mountains%1:17:00:: 09429934 1 0 -selkup%1:10:00:: 06960180 2 0 -selkup%1:18:00:: 09707735 1 0 -sell%1:04:00:: 01115162 1 0 -sell%2:32:00:: 00767635 3 5 -sell%2:40:00:: 02242464 1 73 -sell%2:40:01:: 02244956 4 4 -sell%2:40:02:: 02235666 5 2 -sell%2:41:00:: 02537407 8 0 -sell%2:42:00:: 02727883 2 12 -sell%2:42:13:: 02748206 7 0 -sell%2:42:14:: 02748355 6 0 -sell-by_date%1:28:00:: 15160418 1 0 -sell_off%2:40:00:: 02244248 1 0 -sell_out%2:32:10:: 00936763 2 1 -sell_out%2:40:00:: 02247584 1 2 -sell_short%2:31:00:: 00671653 2 0 -sell_short%2:40:00:: 02243186 1 0 -sell_up%2:40:00:: 02247584 1 0 -sellable%5:00:00:salable:00 02062133 1 0 -seller%1:18:00:: 10577284 1 0 -seller's_market%1:04:00:: 01098265 1 0 -sellers%1:18:00:: 11292105 1 0 -sellers'_market%1:04:00:: 01098265 1 0 -selling%1:04:00:: 01113068 1 9 -selling_agent%1:18:00:: 10577710 1 0 -selling_point%1:07:00:: 04732386 1 0 -selling_price%1:21:00:: 13304009 1 0 -selling_race%1:11:00:: 07461831 1 0 -selloff%1:04:00:: 01119949 1 0 -sellotape%1:06:00:: 02992795 1 0 -sellotape%2:35:00:: 01331988 1 0 -sellout%1:04:00:: 00750216 1 0 -selma%1:15:00:: 09054616 1 0 -selsyn%1:06:00:: 04170694 1 0 -seltzer%1:13:01:: 07936979 1 0 -seltzer%1:13:02:: 07936548 2 0 -selva%1:14:00:: 08439369 1 0 -selvage%1:06:00:: 04170933 2 0 -selvage%1:06:01:: 04171066 1 0 -selvedge%1:06:00:: 04170933 2 0 -selvedge%1:06:01:: 04171066 1 0 -selznick%1:18:00:: 11292207 1 0 -semantic%3:01:00:: 02842042 1 3 -semantic_error%1:11:00:: 07300316 1 0 -semantic_memory%1:09:00:: 05761160 1 0 -semantic_relation%1:24:00:: 13807636 1 0 -semantic_role%1:10:00:: 06331803 1 0 -semantically%4:02:00:: 00130646 1 2 -semanticist%1:18:00:: 10577820 1 0 -semantics%1:09:00:: 06179792 1 0 -semantics%1:09:01:: 05920651 2 0 -semaphore%1:06:00:: 04171208 1 0 -semaphore%2:32:00:: 01040158 2 0 -semaphore%2:32:01:: 01040278 1 0 -semaphore_plant%1:20:00:: 12518013 1 0 -semarang%1:15:00:: 08910230 1 0 -semasiology%1:09:00:: 06180548 1 0 -semblance%1:06:00:: 03668642 3 0 -semblance%1:07:00:: 04677952 1 1 -semblance%1:09:00:: 05939636 2 0 -semen%1:08:00:: 05404336 1 0 -semester%1:28:01:: 15225797 1 0 -semester%1:28:02:: 15204485 2 0 -semester_hour%1:04:00:: 00066075 1 3 -semestral%5:00:00:periodic:00 01970136 1 0 -semestrial%5:00:00:periodic:00 01970136 1 0 -semi%1:06:00:: 04172342 3 0 -semi%1:06:01:: 04467665 2 0 -semi%1:11:00:: 07467393 1 0 -semi-abstraction%1:06:00:: 04171373 1 0 -semi-automatise%2:30:00:: 00480396 1 0 -semi-automatize%2:30:00:: 00480396 1 0 -semi-climber%1:20:00:: 11531334 1 0 -semi-climbing%5:00:00:erect:00 01237162 1 0 -semi-detached_house%1:06:00:: 04172107 1 0 -semi-dry%5:00:00:dry:01 02554019 1 0 -semi-erect%5:00:00:erect:00 01237254 1 0 -semi-evergreen%5:00:00:evergreen:00 00913889 1 0 -semi-formal%5:00:00:formal:01 01043746 1 0 -semi-processed%5:00:00:processed:00 01952301 1 1 -semi-prostrate%5:00:00:unerect:00 01239617 1 0 -semi-skimmed_milk%1:13:00:: 07846688 1 0 -semi-sweet_chocolate%1:13:00:: 07603722 1 0 -semi-tuberous%3:01:00:: 03026244 1 0 -semi-upright%5:00:00:erect:00 01237342 1 0 -semi-wild%5:00:00:wild:01 02389649 1 0 -semiabstract%5:00:00:nonrepresentational:00 01981583 1 0 -semiannual%5:00:00:periodic:00 01969348 1 0 -semiannually%4:02:00:: 00255315 1 0 -semiaquatic%5:00:01:aquatic:00 00124493 2 0 -semiaquatic%5:00:02:amphibious:00 00125553 1 0 -semiarid%5:00:00:dry:01 02553902 1 0 -semiautobiographical%3:01:00:: 02795640 1 0 -semiautomatic%1:06:00:: 04171629 1 0 -semiautomatic%5:00:00:automatic:00 00181904 2 0 -semiautomatic%5:00:01:automatic:00 00182639 1 0 -semiautomatic_firearm%1:06:00:: 04171459 1 0 -semiautomatic_pistol%1:06:00:: 04171629 1 0 -semibreve%1:10:00:: 06870576 1 0 -semicentenary%1:28:00:: 15251212 1 0 -semicentenary%3:01:00:: 02998844 1 0 -semicentennial%1:28:00:: 15251212 1 0 -semicentennial%3:01:00:: 02998844 1 0 -semicircle%1:25:00:: 13874251 1 0 -semicircular%5:00:00:curved:00 02316718 1 0 -semicircular_arch%1:06:00:: 04104384 1 0 -semicircular_canal%1:08:00:: 05323228 1 0 -semicolon%1:10:00:: 06844739 1 0 -semicoma%1:09:00:: 05680839 1 0 -semicomatose%5:00:00:unconscious:00 00573008 1 0 -semiconducting%5:00:00:conductive:00 00558019 1 0 -semiconducting_material%1:27:00:: 14821248 1 0 -semiconductive%5:00:00:conductive:00 00558019 1 0 -semiconductor%1:06:00:: 04171831 2 0 -semiconductor%1:27:00:: 14821248 1 0 -semiconductor_device%1:06:00:: 04171831 1 0 -semiconductor_diode%1:06:00:: 03202760 1 0 -semiconductor_unit%1:06:00:: 04171831 1 0 -semiconscious%5:00:00:conscious:00 00571291 1 0 -semiconsciousness%1:09:00:: 05679906 1 0 -semidark%5:00:00:dark:01 00276226 1 0 -semidarkness%1:26:00:: 13984285 1 0 -semidesert%1:15:00:: 08506347 1 0 -semidetached%5:00:00:detached:00 00160957 1 0 -semidetached_house%1:06:00:: 03257210 1 0 -semidiameter%1:07:00:: 05102300 1 0 -semiempirical%5:00:00:empirical:00 00860254 1 1 -semiepiphyte%1:20:00:: 13123309 1 0 -semifinal%1:11:00:: 07467393 1 0 -semifinalist%1:18:00:: 10578021 1 0 -semifluidity%1:07:00:: 04936585 1 0 -semiformal%5:00:00:formal:01 01043746 1 0 -semigloss%1:06:00:: 04172230 1 0 -semihard%5:00:00:hard:01 01152453 1 0 -semiliquid%5:00:00:liquid:00 02262293 1 0 -semiliterate%5:00:00:educated:00 00830630 1 2 -semiliterate%5:00:01:illiterate:00 01422354 2 1 -semiliterate%5:00:02:illiterate:00 01422468 3 0 -semilunar%5:00:00:rounded:00 02045473 1 0 -semilunar_bone%1:08:00:: 05272423 1 0 -semilunar_cartilage%1:08:00:: 05288396 1 0 -semilunar_valve%1:08:00:: 05394904 1 0 -semimajor_axis%1:09:00:: 06009685 1 0 -semiminor_axis%1:09:00:: 06009988 1 1 -semimonthly%1:10:00:: 06594376 1 0 -semimonthly%4:02:00:: 00255181 1 0 -semimonthly%5:00:00:periodic:00 01970014 1 0 -seminal%3:01:00:: 02795804 1 0 -seminal%5:00:00:original:00 01687363 2 0 -seminal_duct%1:08:00:: 05527216 1 0 -seminal_fluid%1:08:00:: 05404336 1 0 -seminal_vesicle%1:08:00:: 05527597 1 0 -seminar%1:04:00:: 00892145 2 0 -seminar%1:14:00:: 08327816 1 0 -seminarian%1:18:00:: 10578162 1 1 -seminarist%1:18:00:: 10578162 1 0 -seminary%1:14:00:: 08285109 2 0 -seminary%1:14:01:: 08284994 1 2 -seminiferous%3:01:00:: 02795925 1 0 -seminiferous_tubule%1:08:00:: 05524243 1 0 -seminole%1:10:00:: 06912931 2 0 -seminole%1:18:00:: 09667927 1 0 -seminole_bread%1:20:00:: 11602091 1 0 -seminoma%1:26:00:: 14252184 1 0 -seminude%5:00:00:unclothed:00 00459881 1 0 -semiofficial%5:00:00:official:00 01633490 1 0 -semiology%1:09:00:: 05976257 1 0 -semiopaque%5:00:00:opaque:00 00434524 1 0 -semiotic%3:01:00:: 02796042 1 0 -semiotical%3:01:00:: 02796042 1 0 -semiotician%1:18:00:: 10577820 1 0 -semiotics%1:09:00:: 05976257 1 0 -semiparasite%1:20:00:: 13120775 1 0 -semiparasitic%3:01:00:: 02796194 1 0 -semipermanent%5:00:00:long:02 01441000 1 0 -semipermeable%5:00:00:permeable:00 01772512 1 0 -semipermeable_membrane%1:08:00:: 05447423 1 0 -semipolitical%5:00:00:political:00 01815030 1 0 -semiprecious%5:00:00:valuable:00 02501820 1 1 -semiprivate%5:00:00:private:00 01860765 1 0 -semipro%1:18:00:: 10578349 1 0 -semiprofessional%1:18:00:: 10578349 1 0 -semipublic%5:00:00:public:00 01862055 1 1 -semiquaver%1:10:00:: 06871534 1 0 -semirigid%5:00:00:inflexible:01 01024002 2 0 -semirigid%5:00:00:rigid:00 01026911 1 0 -semiskilled%5:00:00:unskilled:00 02230324 1 1 -semisoft%5:00:00:soft:01 01154886 1 0 -semisolid%5:00:00:solid:01 02260847 1 0 -semisweet%5:00:00:tasty:00 02396354 1 0 -semisynthetic%5:00:00:artificial:00 01573568 1 0 -semite%1:18:00:: 09639919 1 0 -semite%3:01:00:: 03115693 1 0 -semiterrestrial%3:01:00:: 02810316 1 0 -semitic%1:10:00:: 06986894 1 0 -semitic%3:01:00:: 03115693 2 0 -semitic%3:01:01:: 03115874 1 0 -semitic-speaking%5:00:00:communicative:00 00499920 1 0 -semitic_deity%1:18:00:: 09513902 1 0 -semitone%1:10:00:: 06859175 1 0 -semitrailer%1:06:00:: 04172342 1 0 -semitrance%1:09:00:: 05681543 1 1 -semitransparency%1:07:00:: 04702351 1 0 -semitransparent%5:00:00:clear:02 00432626 1 0 -semitropic%3:01:00:: 02929216 1 0 -semitropical%3:01:00:: 02929216 1 0 -semitropics%1:15:00:: 08674344 1 0 -semivowel%1:10:00:: 07114409 1 0 -semiweekly%1:10:00:: 06594130 1 0 -semiweekly%4:02:00:: 00254851 1 0 -semiweekly%5:00:00:periodic:00 01968721 1 0 -semnopithecus_entellus%1:05:00:: 02488415 1 0 -semolina%1:13:00:: 07570021 1 0 -sempatch%1:04:00:: 01294330 1 0 -sempiternal%5:00:00:infinite:00 01007947 1 0 -sempiternity%1:07:00:: 05053527 1 0 -sempstress%1:18:00:: 10033412 1 0 -sen%1:23:00:: 13672555 1 0 -senate%1:14:00:: 08161477 1 6 -senate%1:14:01:: 08161591 2 4 -senate_campaign%1:11:00:: 07473332 1 0 -senate_race%1:11:00:: 07473332 1 0 -senator%1:18:00:: 10578471 1 6 -senatorial%3:01:00:: 02796301 1 1 -senatorship%1:04:00:: 00604131 1 0 -send%2:32:00:: 01031256 3 20 -send%2:32:02:: 01062555 6 5 -send%2:32:03:: 00973056 8 2 -send%2:33:00:: 01088923 5 5 -send%2:35:00:: 01437254 2 20 -send%2:38:00:: 01950798 4 14 -send%2:38:01:: 01951480 1 79 -send%2:40:00:: 02348568 7 3 -send-off%1:10:00:: 06629858 1 1 -send-off%1:11:00:: 07329568 2 0 -send_a_message%2:32:00:: 00742865 1 0 -send_around%2:38:00:: 02043501 1 0 -send_away%2:41:00:: 02402825 2 0 -send_away%2:41:01:: 02465939 1 1 -send_back%2:32:00:: 00949974 1 0 -send_down%2:41:00:: 02502232 1 0 -send_for%2:32:00:: 00792471 1 4 -send_in%2:35:00:: 01437597 1 1 -send_in%2:41:00:: 02488168 2 0 -send_off%2:32:00:: 01062555 3 0 -send_off%2:35:00:: 01515791 2 0 -send_off%2:38:00:: 01955127 1 0 -send_on%2:38:00:: 01955508 1 2 -send_out%2:35:00:: 01437254 1 10 -send_packing%2:41:00:: 02465939 1 0 -send_word%2:32:00:: 00873682 1 1 -sendee%1:18:00:: 10578656 1 0 -sender%1:06:00:: 04472726 2 0 -sender%1:18:00:: 10578762 1 0 -sendero_luminoso%1:14:00:: 08044676 1 0 -sending%1:04:00:: 00121166 1 4 -sendup%1:10:00:: 06780309 1 0 -sene%1:23:00:: 13708392 1 0 -seneca%1:10:00:: 06916409 3 0 -seneca%1:18:00:: 11292391 1 0 -seneca%1:18:01:: 09668058 2 0 -seneca_lake%1:17:00:: 09430100 1 0 -seneca_snakeroot%1:20:00:: 12705978 1 0 -senecan%3:01:00:: 03038065 1 0 -senecio%1:20:00:: 12011067 1 0 -senecio_aureus%1:20:00:: 12000356 1 0 -senecio_bigelovii%1:20:00:: 12011370 1 0 -senecio_cineraria%1:20:00:: 12011620 1 0 -senecio_cruentus%1:20:00:: 12001707 1 0 -senecio_doublasii%1:20:00:: 12011838 1 0 -senecio_glabellus%1:20:00:: 12012111 1 0 -senecio_jacobaea%1:20:00:: 12012253 1 0 -senecio_milkanioides%1:20:00:: 11960673 1 0 -senecio_triangularis%1:20:00:: 12012510 1 0 -senecio_vulgaris%1:20:00:: 12012755 1 0 -senefelder%1:18:00:: 11292662 1 0 -senega%1:20:01:: 12705220 2 0 -senega%1:20:02:: 12706240 1 0 -senega_root%1:20:00:: 12705978 1 0 -senega_snakeroot%1:20:00:: 12705978 1 0 -senegal%1:15:00:: 08995862 1 0 -senegal_gum%1:27:00:: 14901158 1 0 -senegalese%1:18:00:: 09730824 1 0 -senegalese%3:01:00:: 03116043 1 0 -senegalese_franc%1:23:00:: 13678700 1 0 -seneka_snakeroot%1:20:00:: 12705978 1 0 -senesce%2:30:00:: 00248026 1 0 -senescence%1:07:00:: 04927632 2 0 -senescence%1:22:00:: 13429006 1 0 -senescent%5:00:00:old:02 01644709 1 0 -seneschal%1:18:00:: 10283546 1 0 -senga_root%1:20:00:: 12705978 1 0 -senhor%1:18:00:: 10578952 1 0 -senile%5:00:00:old:02 01645296 1 1 -senile_dementia%1:26:00:: 14396707 1 0 -senile_psychosis%1:26:00:: 14396707 1 0 -senility%1:07:00:: 04927792 2 0 -senility%1:28:00:: 15154190 1 0 -senior%1:18:00:: 10579062 1 3 -senior%1:18:01:: 10048218 2 0 -senior%3:00:00:: 02099774 1 3 -senior%5:00:00:last:00 01013681 2 1 -senior%5:00:00:old:02 01644225 3 0 -senior_chief_petty_officer%1:18:00:: 10579176 1 0 -senior_citizen%1:18:00:: 10376523 1 0 -senior_class%1:14:00:: 08239383 1 1 -senior_high%1:14:00:: 08409617 1 1 -senior_high_school%1:14:00:: 08409617 1 2 -senior_master_sergeant%1:18:00:: 10579369 1 0 -senior_moment%1:09:00:: 05673323 1 0 -senior_pilot%1:18:00:: 09892693 1 0 -senior_status%1:26:00:: 13949576 1 0 -senior_vice_president%1:18:00:: 10579549 1 0 -seniority%1:07:00:: 04927890 2 0 -seniority%1:26:00:: 13949576 1 1 -seniti%1:23:00:: 13690214 1 0 -senna%1:20:00:: 12499163 1 0 -senna_alata%1:20:00:: 12499439 1 0 -senna_alexandrina%1:20:00:: 12499979 1 0 -senna_auriculata%1:20:00:: 12499757 1 0 -senna_marilandica%1:20:00:: 12500309 1 0 -senna_obtusifolia%1:20:00:: 12500518 1 0 -senna_occidentalis%1:20:00:: 12500751 1 0 -sennacherib%1:18:00:: 11292809 1 0 -sennenhunde%1:05:00:: 02107420 1 0 -sennett%1:18:00:: 11293008 1 0 -sennit%1:06:00:: 04172512 1 0 -senor%1:10:00:: 06341862 1 0 -senora%1:10:00:: 06342015 1 0 -senorita%1:10:00:: 06342182 1 0 -sens%1:06:00:: 03990834 1 0 -sensate%5:00:00:sentient:00 00117654 1 0 -sensation%1:09:00:: 05712076 1 14 -sensation%1:09:01:: 05651971 5 0 -sensation%1:12:00:: 07514782 3 1 -sensation%1:18:00:: 09762509 2 1 -sensation%1:26:00:: 14037480 4 0 -sensational%3:00:00:: 02101580 1 3 -sensational%3:01:00:: 02796425 3 0 -sensational%5:00:00:impressive:00 01282921 2 3 -sensationalism%1:09:00:: 05970311 4 0 -sensationalism%1:09:01:: 05976471 3 0 -sensationalism%1:10:00:: 07088053 2 0 -sensationalism%1:10:01:: 07247602 1 0 -sensationalist%1:18:00:: 10579835 1 0 -sensationalistic%5:00:00:sensational:00 02101942 1 0 -sensationally%4:02:00:: 00448858 1 0 -sense%1:09:02:: 05651971 3 16 -sense%1:09:04:: 05614657 4 8 -sense%1:09:05:: 05677504 1 37 -sense%1:09:06:: 05807012 5 1 -sense%1:10:00:: 06602472 2 23 -sense%2:31:02:: 00589309 4 0 -sense%2:31:03:: 00589469 3 0 -sense%2:39:00:: 02106006 1 26 -sense%2:39:02:: 02155248 2 0 -sense_datum%1:09:00:: 05712076 1 3 -sense_experience%1:09:00:: 05712076 1 0 -sense_impression%1:09:00:: 05712076 1 0 -sense_modality%1:09:00:: 05652396 1 0 -sense_of_balance%1:09:00:: 05659365 1 0 -sense_of_direction%1:09:00:: 05677744 1 1 -sense_of_duty%1:16:00:: 09184543 1 0 -sense_of_equilibrium%1:09:00:: 05659365 1 0 -sense_of_hearing%1:09:00:: 05657718 1 0 -sense_of_humor%1:07:00:: 04650201 1 2 -sense_of_humour%1:07:00:: 04650201 1 0 -sense_of_movement%1:09:00:: 05658985 1 0 -sense_of_purpose%1:07:00:: 05170400 1 2 -sense_of_responsibility%1:09:00:: 05677850 1 1 -sense_of_right_and_wrong%1:16:00:: 09184136 1 0 -sense_of_shame%1:16:00:: 09184543 1 0 -sense_of_smell%1:09:00:: 05658603 1 0 -sense_of_taste%1:09:00:: 05658226 1 0 -sense_of_the_meeting%1:26:00:: 13972180 1 0 -sense_of_touch%1:09:00:: 05655119 1 10 -sense_organ%1:08:00:: 05299178 1 1 -sense_tagger%1:10:00:: 06577781 1 0 -sensed%5:00:00:detected:00 01609501 1 0 -senseless%5:00:00:stupid:00 00441365 4 0 -senseless%5:00:00:unconscious:00 00572534 2 1 -senseless%5:00:00:unreasonable:00 01945139 1 2 -senseless%5:00:00:worthless:00 02503305 3 0 -senselessly%4:02:00:: 00401708 2 0 -senselessly%4:02:01:: 00449016 1 0 -senselessness%1:07:00:: 05174023 1 0 -sensibilise%2:30:00:: 00272391 1 0 -sensibility%1:09:00:: 05678148 1 4 -sensibility%1:09:01:: 05652926 3 0 -sensibility%1:12:00:: 07512848 2 2 -sensibilize%2:30:00:: 00272391 1 0 -sensible%3:00:00:: 02102484 2 0 -sensible%3:00:04:: 01943406 1 3 -sensible%5:00:00:aware:00 00191265 4 0 -sensible%5:00:00:perceptible:00 01748152 3 0 -sensible_horizon%1:15:00:: 08585657 1 0 -sensibleness%1:07:01:: 05151701 1 0 -sensibly%4:02:00:: 00215811 1 1 -sensify%2:30:00:: 00272391 1 0 -sensing%1:04:00:: 00876874 2 0 -sensing%1:09:00:: 05710687 1 3 -sensing_element%1:06:00:: 03180969 1 0 -sensitisation%1:04:00:: 00829170 3 0 -sensitisation%1:22:00:: 13554343 2 0 -sensitisation%1:26:00:: 14531983 1 0 -sensitise%2:30:00:: 00272391 4 0 -sensitise%2:30:01:: 00573671 3 0 -sensitise%2:30:02:: 00573932 2 0 -sensitise%2:39:00:: 02115778 1 0 -sensitised%5:00:00:susceptible:00 02360944 1 0 -sensitiser%1:27:00:: 14724025 1 0 -sensitising%1:04:00:: 00829170 1 0 -sensitising%3:00:00:: 02108198 1 0 -sensitive%1:18:00:: 10306279 1 0 -sensitive%3:00:01:: 02103481 1 13 -sensitive%3:00:02:: 02105990 2 7 -sensitive%3:00:04:: 02102484 3 0 -sensitive%5:00:00:classified:02 00416164 5 0 -sensitive%5:00:00:painful:00 01712753 4 0 -sensitive_fern%1:20:00:: 13198914 1 0 -sensitive_pea%1:20:00:: 12494358 1 0 -sensitive_plant%1:20:01:: 11755110 2 0 -sensitive_plant%1:20:02:: 11755319 1 0 -sensitively%4:02:00:: 00377864 1 0 -sensitiveness%1:07:00:: 05019661 3 0 -sensitiveness%1:07:02:: 04842993 4 0 -sensitiveness%1:09:00:: 05652926 2 0 -sensitiveness%1:12:00:: 07512465 1 0 -sensitivity%1:07:00:: 05019661 2 4 -sensitivity%1:07:02:: 04842993 5 0 -sensitivity%1:09:00:: 05652926 1 8 -sensitivity%1:12:00:: 07512465 3 3 -sensitivity%1:26:00:: 14531772 4 0 -sensitization%1:04:00:: 00829170 3 0 -sensitization%1:22:00:: 13554343 2 0 -sensitization%1:26:00:: 14531983 1 0 -sensitize%2:30:00:: 00272391 1 2 -sensitize%2:30:01:: 00573671 4 0 -sensitize%2:30:02:: 00573932 3 0 -sensitize%2:39:00:: 02115778 2 0 -sensitized%5:00:00:susceptible:00 02360944 1 0 -sensitizer%1:27:00:: 14724025 1 0 -sensitizing%1:04:00:: 00829170 1 0 -sensitizing%3:00:00:: 02108198 1 0 -sensitometer%1:06:00:: 04172607 1 0 -sensor%1:06:00:: 03180969 1 7 -sensorial%3:00:00:: 02108665 1 0 -sensorimotor%3:01:00:: 02894436 1 0 -sensorimotor_area%1:08:00:: 05489998 1 0 -sensorimotor_region%1:08:00:: 05489998 1 0 -sensorineural%3:01:00:: 02894327 1 0 -sensorineural_hearing_loss%1:26:00:: 14551565 1 0 -sensorium%1:08:00:: 05489810 1 0 -sensory%3:00:00:: 02108665 2 3 -sensory%3:01:00:: 02796425 3 0 -sensory%5:00:00:afferent:00 00333611 1 4 -sensory_activity%1:04:00:: 00876737 1 0 -sensory_aphasia%1:26:00:: 14099172 1 0 -sensory_deprivation%1:04:00:: 00424034 1 0 -sensory_epilepsy%1:26:00:: 14090416 1 0 -sensory_faculty%1:09:00:: 05651971 1 0 -sensory_fiber%1:08:00:: 05475397 1 0 -sensory_hair%1:05:00:: 01901828 1 0 -sensory_nerve%1:08:00:: 05475134 1 0 -sensory_neuron%1:08:00:: 05466892 1 0 -sensory_receptor%1:08:00:: 05299178 1 0 -sensory_system%1:08:00:: 05510702 2 0 -sensory_system%1:09:00:: 05652396 1 0 -sensual%5:00:00:hot:02 01257145 2 0 -sensual%5:00:00:physical:00 01778572 1 1 -sensualise%2:30:00:: 00133978 1 0 -sensualism%1:09:00:: 05976471 2 0 -sensualism%1:12:00:: 07488875 1 0 -sensualist%1:18:00:: 09629246 1 0 -sensuality%1:12:00:: 07488875 1 2 -sensualize%2:30:00:: 00133978 3 0 -sensualize%2:31:00:: 00727012 2 0 -sensualize%2:36:00:: 01680473 1 0 -sensually%4:02:00:: 00449441 1 0 -sensualness%1:12:00:: 07488875 1 0 -sensuous%5:00:00:aesthetic:00 00070427 1 1 -sensuously%4:02:00:: 00449166 1 0 -sensuousness%1:12:00:: 07513413 1 0 -sent%1:23:00:: 13700448 1 0 -sent%3:00:00:: 02109448 1 0 -sente%1:23:00:: 13687756 1 0 -sentence%1:04:00:: 01189282 2 5 -sentence%1:10:00:: 06285090 1 31 -sentence%1:28:00:: 15224692 3 3 -sentence%2:32:00:: 00906735 1 6 -sentence_stress%1:10:00:: 07086215 1 0 -sentence_structure%1:09:00:: 06176107 1 1 -sentential%3:01:00:: 02991690 1 0 -sentential_function%1:10:00:: 06286230 1 0 -sententious%5:00:00:concise:00 00548316 2 0 -sententious%5:00:00:pretentious:00 01851118 1 0 -sententiously%4:02:00:: 00424937 1 0 -sentience%1:07:00:: 05006020 3 0 -sentience%1:09:00:: 05651971 2 0 -sentience%1:09:01:: 05677952 1 0 -sentiency%1:09:00:: 05651971 1 0 -sentient%3:00:00:: 00117385 1 1 -sentient%5:00:00:conscious:00 00571424 2 0 -sentiment%1:09:00:: 05945642 2 6 -sentiment%1:12:00:: 07481951 1 7 -sentimental%5:00:00:emotional:00 00854413 2 1 -sentimental%5:00:00:tender:03 02449287 1 1 -sentimentalisation%1:04:00:: 01219306 1 0 -sentimentalise%2:29:00:: 00012944 3 0 -sentimentalise%2:30:00:: 00533185 2 0 -sentimentalise%2:30:03:: 00579105 1 0 -sentimentalism%1:07:00:: 04628080 2 0 -sentimentalism%1:10:00:: 06775812 1 0 -sentimentalist%1:18:00:: 10579676 1 1 -sentimentality%1:07:00:: 04627506 1 1 -sentimentality%1:12:00:: 07482128 2 0 -sentimentalization%1:04:00:: 01219306 1 0 -sentimentalize%2:29:00:: 00012944 3 0 -sentimentalize%2:30:00:: 00533185 1 1 -sentimentalize%2:30:03:: 00579105 2 0 -sentimentally%4:02:00:: 00449609 1 0 -sentimentise%2:29:00:: 00012944 1 0 -sentimentize%2:29:00:: 00012944 1 0 -sentinel%1:18:00:: 10271216 1 1 -sentry%1:18:00:: 10271216 1 1 -sentry_box%1:06:00:: 04172776 1 0 -sentry_duty%1:04:00:: 00730538 1 0 -sentry_go%1:04:00:: 00730538 1 0 -seoul%1:15:00:: 08955951 1 0 -sep%1:28:00:: 15212739 1 0 -sep_11%1:28:00:: 15300051 1 0 -sepal%1:20:00:: 11690612 1 0 -sepaline%3:01:00:: 02796588 1 0 -sepaloid%3:01:00:: 02796588 1 0 -separability%1:26:00:: 14417993 1 0 -separable%5:00:01:divisible:00 00785002 1 2 -separably%4:02:00:: 00449925 1 0 -separate%1:06:00:: 04172904 2 0 -separate%1:10:00:: 06269785 1 0 -separate%2:30:03:: 00334186 10 1 -separate%2:30:04:: 00328802 13 0 -separate%2:31:00:: 00654625 6 3 -separate%2:31:01:: 00650353 3 7 -separate%2:35:00:: 01557774 12 0 -separate%2:35:01:: 01556921 2 8 -separate%2:35:02:: 01458973 5 3 -separate%2:38:00:: 02030158 9 1 -separate%2:38:01:: 02031158 7 2 -separate%2:41:00:: 02512305 11 0 -separate%2:41:01:: 02467662 4 6 -separate%2:41:02:: 02431320 8 1 -separate%2:42:00:: 02621853 1 18 -separate%3:00:00:: 02109678 1 20 -separate%5:00:00:detached:00 00160768 2 2 -separate%5:00:02:segregated:00 01327371 3 0 -separate%5:00:02:unconnected:00 00568541 4 0 -separate_off%2:30:00:: 00333426 1 0 -separate_out%2:35:00:: 01458664 1 2 -separated%5:00:00:distributed:00 00542282 2 2 -separated%5:00:00:injured:00 01318510 3 0 -separated%5:00:00:separate:00 02110447 1 5 -separated%5:00:00:unconnected:00 00568304 4 0 -separately%4:02:02:: 00207668 1 4 -separateness%1:07:00:: 04742766 3 0 -separateness%1:26:01:: 14001213 2 0 -separateness%1:26:02:: 14414503 1 0 -separation%1:04:00:: 01201021 5 1 -separation%1:04:01:: 00383606 9 0 -separation%1:04:02:: 01201429 8 0 -separation%1:04:03:: 01254253 4 1 -separation%1:07:00:: 05089947 3 1 -separation%1:11:00:: 07331400 2 3 -separation%1:11:01:: 07295391 7 0 -separation%1:15:00:: 08647121 6 0 -separation%1:26:00:: 14414294 1 3 -separation_energy%1:19:00:: 11429057 1 0 -separationism%1:04:00:: 01202665 1 0 -separationist%1:18:00:: 10580030 1 0 -separatism%1:04:00:: 01202665 3 0 -separatism%1:07:00:: 04943704 2 0 -separatism%1:14:00:: 08380340 1 0 -separatist%1:18:00:: 10580030 1 0 -separatist%5:00:00:independent:00 00728619 1 0 -separative%5:00:00:distributive:00 00469170 3 0 -separative%5:00:01:disjunctive:00 00565289 2 0 -separative%5:00:02:disjunctive:00 00565565 1 0 -separator%1:06:00:: 02995998 1 0 -separatrix%1:10:00:: 06844903 1 0 -sephardi%1:18:00:: 10580304 1 0 -sephardic_jew%1:18:00:: 10580304 1 0 -sepia%1:05:00:: 01972411 3 0 -sepia%1:07:00:: 04973386 1 1 -sepia%1:27:00:: 15021927 2 0 -sepiidae%1:05:00:: 01972283 1 0 -sepiolite%1:27:00:: 14681445 1 0 -sepoy_mutiny%1:04:00:: 01281154 1 0 -seppuku%1:04:00:: 00223362 1 0 -sepsis%1:26:00:: 14180848 1 0 -sept%1:14:00:: 07970721 2 1 -sept%1:28:00:: 15212739 1 3 -sept._11%1:28:00:: 15300051 1 0 -septal%3:01:00:: 02796711 1 0 -septal_defect%1:26:00:: 14469154 1 0 -septate%3:01:00:: 02796711 1 0 -septation%1:04:00:: 00398585 1 1 -septectomy%1:04:00:: 00687472 1 0 -september%1:28:00:: 15212739 1 18 -september_11%1:28:00:: 15300051 1 0 -september_17%1:28:00:: 15190652 1 0 -september_29%1:28:00:: 15186412 1 0 -september_elm%1:20:00:: 12408717 1 0 -september_equinox%1:28:00:: 15223750 1 0 -septenary%1:23:00:: 13744916 1 0 -septet%1:10:00:: 07042023 5 0 -septet%1:14:00:: 07987794 4 0 -septet%1:14:01:: 07988490 3 0 -septet%1:14:02:: 08247935 2 0 -septet%1:23:00:: 13744916 1 0 -septette%1:10:00:: 07042023 4 0 -septette%1:14:00:: 07987794 3 0 -septette%1:14:01:: 07988490 2 0 -septette%1:14:02:: 08247935 1 0 -septic%3:00:00:: 02113827 1 3 -septic%3:01:00:: 02998669 2 0 -septic_sore_throat%1:26:00:: 14184986 1 0 -septic_tank%1:06:00:: 04173046 1 0 -septicaemia%1:26:00:: 14189837 1 0 -septicemia%1:26:00:: 14189837 1 0 -septicemic%5:00:00:septic:00 02115187 1 0 -septicemic_plague%1:26:00:: 14139959 1 0 -septillion%1:23:00:: 13753585 1 0 -septobasidiaceae%1:20:00:: 13069348 1 0 -septobasidium%1:20:00:: 13069535 1 0 -septobasidium_pseudopedicellatum%1:20:00:: 13069773 1 0 -septrional%5:00:00:northern:01 01604945 1 0 -septuagenarian%1:18:00:: 10580437 1 0 -septuagesima%1:28:00:: 15192272 1 0 -septuagesima_sunday%1:28:00:: 15192272 1 0 -septuagint%1:10:00:: 06448397 1 0 -septum%1:08:00:: 05222940 1 6 -septum%1:20:00:: 11683443 2 0 -septuple%5:00:00:multiple:00 02219876 1 0 -sepulcher%1:06:00:: 02921884 1 0 -sepulchral%3:01:00:: 02796854 1 0 -sepulchral%5:00:00:joyless:00 01368464 3 0 -sepulchral%5:00:00:offensive:01 01625492 2 0 -sepulchre%1:06:00:: 02921884 1 0 -sepulture%1:06:00:: 02921884 2 0 -sepulture%1:11:00:: 07451687 1 0 -sequel%1:10:00:: 06399503 2 0 -sequel%1:11:00:: 07295507 1 0 -sequela%1:26:00:: 14550614 1 0 -sequella%1:11:00:: 07294699 1 0 -sequenator%1:06:00:: 04173511 1 0 -sequence%1:04:00:: 01010458 4 3 -sequence%1:06:00:: 04173172 3 3 -sequence%1:07:00:: 05044822 2 3 -sequence%1:11:00:: 07342383 5 0 -sequence%1:14:00:: 08459252 1 13 -sequence%2:31:00:: 00660571 1 1 -sequence%2:32:00:: 00920125 2 0 -sequencer%1:06:00:: 04173344 2 0 -sequencer%1:06:01:: 04173511 1 0 -sequent%5:00:00:ordered:00 01667729 1 0 -sequent%5:00:01:subsequent:00 00122844 2 0 -sequential%5:00:00:ordered:00 01667729 1 1 -sequential_operation%1:22:00:: 13554800 1 0 -sequentially%4:02:00:: 00292349 1 0 -sequester%2:30:00:: 00495998 4 0 -sequester%2:30:01:: 00495808 5 0 -sequester%2:30:06:: 00579367 3 0 -sequester%2:40:00:: 02273293 2 0 -sequester%2:40:01:: 02273922 1 0 -sequestered%5:00:00:private:00 01859055 1 0 -sequestered%5:00:00:segregated:00 01327574 2 0 -sequestrate%2:30:00:: 00495808 2 0 -sequestrate%2:30:01:: 00495998 1 0 -sequestration%1:04:00:: 01202184 1 1 -sequestration%1:04:01:: 00087218 4 0 -sequestration%1:10:00:: 06555570 3 0 -sequestration%1:22:00:: 13554586 2 0 -sequin%1:06:00:: 04173698 1 0 -sequined%5:00:00:adorned:00 00056660 1 0 -sequoia%1:20:00:: 11640645 1 0 -sequoia_gigantea%1:20:00:: 11641494 1 0 -sequoia_national_park%1:15:00:: 08608986 1 0 -sequoia_sempervirens%1:20:00:: 11641034 1 0 -sequoia_wellingtonia%1:20:00:: 11641494 1 0 -sequoiadendron%1:20:00:: 11641275 1 0 -sequoiadendron_giganteum%1:20:00:: 11641494 1 0 -sequoya%1:18:00:: 11293157 1 0 -sequoyah%1:18:00:: 11293157 1 0 -seraglio%1:06:00:: 03494105 1 0 -serail%1:06:00:: 03494105 1 0 -serape%1:06:00:: 04173907 1 0 -seraph%1:18:00:: 09539872 1 0 -seraphic%3:01:00:: 02870846 1 0 -seraphic%5:00:00:lovable:00 01459949 2 0 -seraphical%3:01:00:: 02870846 1 0 -serax%1:06:00:: 03867675 1 0 -serb%1:18:00:: 09751076 1 0 -serbia%1:15:00:: 08816969 1 0 -serbia_and_montenegro%1:15:00:: 08816236 1 0 -serbian%1:18:00:: 09751076 1 0 -serbian%3:01:00:: 02963942 1 0 -serbo-croat%1:10:00:: 06945095 1 0 -serbo-croatian%1:10:00:: 06945095 1 0 -serdica%1:15:00:: 08714458 1 0 -sere%5:00:00:dry:01 02553234 1 0 -serenade%1:10:00:: 07053732 2 0 -serenade%1:10:01:: 07042586 1 1 -serenade%2:36:00:: 01703857 1 1 -serendipitous%5:00:00:lucky:00 01468552 1 0 -serendipity%1:19:00:: 11463895 1 0 -serene%5:00:00:clear:03 00461195 2 0 -serene%5:00:00:composed:00 00529657 1 0 -serenely%4:02:00:: 00450234 1 2 -sereness%1:26:00:: 14537472 1 0 -serengeti%1:15:00:: 09036098 1 0 -serengeti_national_park%1:15:00:: 09036295 1 0 -serengeti_plain%1:15:00:: 09036098 1 0 -serenity%1:07:00:: 04904352 1 2 -serenity%1:12:00:: 07515790 2 1 -serenoa%1:20:00:: 12597333 1 0 -serenoa_repens%1:20:00:: 12597466 1 0 -serer%1:10:00:: 06996755 1 0 -serf%1:18:00:: 10580535 1 0 -serfdom%1:26:00:: 13998263 1 0 -serfhood%1:26:00:: 13998263 1 0 -serflike%5:00:00:unfree:00 01065614 1 0 -serge%1:06:00:: 04174026 1 1 -serge_koussevitzky%1:18:00:: 11109970 1 0 -sergeant%1:18:00:: 10449521 2 3 -sergeant%1:18:01:: 10580772 1 6 -sergeant%1:18:02:: 10581890 3 0 -sergeant-at-law%1:18:00:: 10581890 1 0 -sergeant_at_arms%1:18:00:: 10581094 1 0 -sergeant_first_class%1:18:00:: 10093475 1 0 -sergeant_fish%1:05:00:: 02574271 1 0 -sergeant_major%1:05:00:: 02607470 2 0 -sergeant_major%1:18:00:: 10581278 1 0 -sergei_aleksandrovich_koussevitzky%1:18:00:: 11109970 1 0 -sergei_diaghilev%1:18:00:: 10933449 1 0 -sergei_eisenstein%1:18:00:: 10955483 1 0 -sergei_mikhailovich_eisenstein%1:18:00:: 10955483 1 0 -sergei_pavlovich_diaghilev%1:18:00:: 10933449 1 0 -sergei_rachmaninoff%1:18:00:: 11251531 1 0 -sergei_rachmaninov%1:18:00:: 11251531 1 0 -sergei_sergeyevich_prokofiev%1:18:00:: 11247002 1 0 -sergei_vasilievich_rachmaninoff%1:18:00:: 11251531 1 0 -sergei_vasilievich_rachmaninov%1:18:00:: 11251531 1 0 -serger%1:06:00:: 04174101 1 0 -serial%1:10:00:: 06621447 1 0 -serial%1:10:01:: 06593803 2 0 -serial%3:01:00:: 02797021 3 0 -serial%3:01:02:: 02797257 2 0 -serial%5:00:00:asynchronous:00 02380358 4 0 -serial%5:00:00:ordered:00 01667729 1 1 -serial_killer%1:18:00:: 10581464 1 0 -serial_monogamy%1:26:00:: 13966340 1 0 -serial_murderer%1:18:00:: 10581464 1 0 -serial_music%1:10:00:: 07057196 1 0 -serial_operation%1:22:00:: 13554800 1 0 -serial_port%1:06:00:: 04174234 1 0 -serial_printer%1:06:00:: 03007591 1 0 -serial_processing%1:22:00:: 13554984 1 0 -serial_publication%1:10:00:: 06593803 1 0 -serialisation%1:04:00:: 01102862 1 0 -serialise%2:30:00:: 00279075 1 0 -serialism%1:10:00:: 07057196 1 1 -serialization%1:04:00:: 01102862 1 0 -serialize%2:30:00:: 00279075 1 0 -serially%4:02:00:: 00126427 1 0 -seriatim%4:02:00:: 00235634 1 0 -sericea_lespedeza%1:20:00:: 12543826 1 0 -sericeous%5:00:00:hairy:00 00213610 1 0 -sericocarpus%1:20:00:: 12013323 1 0 -sericterium%1:05:00:: 02468178 1 0 -serictery%1:05:00:: 02468178 1 0 -sericultural%3:01:00:: 03116224 1 0 -sericulture%1:04:00:: 00923303 2 0 -sericulture%1:22:00:: 13555101 1 0 -sericulturist%1:18:00:: 10581772 1 0 -seriema%1:05:01:: 02014237 2 0 -seriema%1:05:02:: 02014524 1 0 -series%1:09:00:: 05862721 7 0 -series%1:10:00:: 06593803 3 3 -series%1:10:01:: 06621447 2 7 -series%1:11:00:: 07465448 4 2 -series%1:14:00:: 08457976 1 40 -series%1:14:01:: 08458504 6 0 -series%1:24:00:: 13791910 5 0 -series_circuit%1:06:00:: 04174394 1 0 -serif%1:10:00:: 06828061 1 0 -serigraph%1:06:00:: 04219718 1 0 -serigraphy%1:04:00:: 00939231 1 0 -serin%1:05:00:: 01533651 1 0 -serine%1:27:00:: 15022035 1 0 -serinus%1:05:00:: 01533169 1 0 -serinus_canaria%1:05:00:: 01533481 1 0 -seriocomedy%1:10:00:: 07016797 1 0 -seriocomic%5:00:00:humorous:00 01267480 1 0 -seriocomical%5:00:00:humorous:00 01267480 1 0 -seriola%1:05:00:: 02578604 1 0 -seriola_dorsalis%1:05:00:: 02578928 1 0 -seriola_grandis%1:05:00:: 02579303 1 0 -seriola_zonata%1:05:00:: 02579091 1 0 -serious%3:00:00:: 02118379 1 29 -serious%3:00:02:: 02123314 5 0 -serious%5:00:00:critical:03 00651039 3 4 -serious%5:00:00:difficult:00 00748359 6 0 -serious%5:00:00:important:00 01279611 2 10 -serious%5:00:00:intellectual:00 01333477 4 3 -serious-minded%5:00:00:serious:00 02119971 1 0 -serious-mindedness%1:07:00:: 04646548 1 0 -serious_music%1:10:00:: 07025900 1 1 -seriously%4:02:00:: 00165018 1 19 -seriously%4:02:01:: 00015953 2 2 -seriousness%1:07:00:: 04646548 3 0 -seriousness%1:07:01:: 05037197 2 1 -seriousness%1:12:00:: 07512315 1 2 -seriph%1:10:00:: 06828061 1 0 -seriphidium%1:20:00:: 12013811 1 0 -seriphidium_canum%1:20:00:: 12014085 1 0 -seriphidium_maritimum%1:20:00:: 12014355 1 0 -seriphidium_tridentatum%1:20:00:: 12014524 1 0 -seriphus%1:05:00:: 02598747 1 0 -seriphus_politus%1:05:00:: 02598878 1 0 -serjeant%1:18:00:: 10581890 1 0 -serjeant-at-arms%1:18:00:: 10581094 1 0 -serjeant-at-law%1:18:00:: 10581890 1 0 -serkin%1:18:00:: 11293334 1 0 -sermon%1:10:00:: 07243837 1 4 -sermon%1:10:01:: 06712325 2 0 -sermon_on_the_mount%1:10:00:: 07244433 1 0 -sermonise%2:32:00:: 00828374 1 0 -sermoniser%1:18:00:: 10464178 1 0 -sermonize%2:32:00:: 00828374 1 0 -sermonizer%1:18:00:: 10464178 1 0 -serologic%3:01:00:: 02987760 1 0 -serological%3:01:00:: 02987760 1 1 -serologist%1:18:00:: 10582032 1 0 -serology%1:09:00:: 06063072 1 0 -serosa%1:08:00:: 05605944 1 0 -serotine%1:05:00:: 02147328 1 0 -serotonin%1:27:00:: 14808273 1 0 -serous%3:01:00:: 03116391 1 0 -serous_membrane%1:08:00:: 05605944 1 0 -serow%1:05:00:: 02419056 1 0 -serpasil%1:06:00:: 04078236 1 0 -serpens%1:17:00:: 09430259 1 0 -serpent%1:05:00:: 01726692 1 5 -serpent%1:06:00:: 04174500 3 0 -serpent%1:06:01:: 04174596 2 0 -serpent-worship%1:04:00:: 01046792 1 0 -serpent_fern%1:20:00:: 13177048 1 0 -serpent_star%1:05:00:: 02317781 1 0 -serpentes%1:05:00:: 01726390 1 0 -serpentine%5:00:00:curved:00 02316820 1 0 -serra%1:18:00:: 11293470 1 0 -serranid%1:05:00:: 02566109 1 0 -serranid_fish%1:05:00:: 02566109 1 0 -serranidae%1:05:00:: 02565728 1 0 -serranus%1:05:00:: 02568636 1 0 -serranus_subligarius%1:05:00:: 02568807 1 0 -serrasalmus%1:05:00:: 02584325 1 0 -serrate%2:35:00:: 01255807 1 0 -serrate%5:00:00:rough:02 02247785 1 0 -serrate_leaf%1:20:00:: 13160695 1 0 -serrated%5:00:00:rough:02 02247785 1 0 -serrated_wrack%1:05:00:: 01405107 1 0 -serratia%1:05:00:: 01369633 1 0 -serratia_marcescens%1:05:00:: 01369819 1 0 -serration%1:06:01:: 04174705 3 0 -serration%1:14:00:: 08431600 2 0 -serration%1:26:00:: 14568621 1 0 -serratula%1:20:00:: 12014739 1 0 -serratula_tinctoria%1:20:00:: 12014923 1 0 -serratus%1:08:00:: 05550330 1 2 -serratus_anterior%1:08:00:: 05550494 1 0 -serratus_magnus%1:08:00:: 05550494 1 0 -serratus_muscles%1:08:00:: 05550330 1 0 -serratus_posterior%1:08:00:: 05550688 1 0 -serratus_posterior_inferior%1:08:00:: 05550908 1 0 -serratus_posterior_superior%1:08:00:: 05551142 1 0 -serried%5:00:00:compact:00 00503020 1 0 -serrulate%5:00:00:rough:02 02247938 1 0 -sertoli's_cell%1:08:00:: 05459590 1 0 -sertoli_cell%1:08:00:: 05459590 1 0 -sertraline%1:06:00:: 04174853 1 0 -sertularia%1:05:00:: 01913533 1 0 -sertularian%1:05:00:: 01913691 1 0 -serum%1:08:00:: 05403149 1 34 -serum_albumin%1:27:00:: 14731799 1 0 -serum_disease%1:26:00:: 14532458 1 0 -serum_globulin%1:27:00:: 14732116 1 0 -serum_hepatitis%1:26:00:: 14130942 1 0 -serum_sickness%1:26:00:: 14532458 1 0 -serval%1:05:00:: 02126139 1 0 -servant%1:18:00:: 10582154 1 9 -servant%1:26:00:: 13952171 2 0 -servant's_entrance%1:06:00:: 04175669 1 0 -servant_girl%1:18:00:: 10582507 1 0 -serve%1:04:00:: 00568430 1 0 -serve%2:33:00:: 01095218 2 36 -serve%2:33:01:: 01077568 15 0 -serve%2:34:00:: 01180351 6 20 -serve%2:34:01:: 01181295 5 21 -serve%2:35:00:: 01438681 11 3 -serve%2:35:01:: 01428011 14 0 -serve%2:41:00:: 02541251 4 23 -serve%2:41:01:: 02540670 10 3 -serve%2:41:02:: 02593107 7 19 -serve%2:41:13:: 02411621 13 0 -serve%2:42:00:: 02709107 9 3 -serve%2:42:01:: 02670398 3 24 -serve%2:42:02:: 02670578 8 7 -serve%2:42:03:: 02670890 1 55 -serve%2:42:12:: 02669789 12 0 -serve_up%2:34:00:: 01180351 1 1 -serve_well%2:42:00:: 02670578 1 0 -server%1:06:00:: 04175039 4 0 -server%1:06:01:: 04175147 3 0 -server%1:18:00:: 10763383 1 0 -server%1:18:01:: 10582604 2 0 -service%1:04:00:: 01209576 2 8 -service%1:04:01:: 01032040 3 5 -service%1:04:02:: 00568430 12 0 -service%1:04:03:: 00853649 10 0 -service%1:04:04:: 00318391 13 0 -service%1:04:05:: 00268112 14 0 -service%1:04:06:: 00098625 15 0 -service%1:04:07:: 00584891 5 3 -service%1:04:08:: 00577525 1 24 -service%1:04:09:: 00579564 11 0 -service%1:06:00:: 04175380 9 0 -service%1:07:00:: 05149832 8 0 -service%1:14:00:: 08198137 6 2 -service%1:14:05:: 08186047 4 4 -service%1:18:00:: 11293636 7 0 -service%2:30:00:: 00456937 2 1 -service%2:35:00:: 01428011 3 0 -service%2:41:00:: 02541251 1 3 -service_abroad%1:04:00:: 00732369 1 0 -service_agency%1:14:00:: 08355506 1 0 -service_area%1:15:00:: 08648781 1 0 -service_book%1:10:00:: 06457045 1 0 -service_break%1:11:00:: 07475242 1 0 -service_bureau%1:14:00:: 08355506 1 0 -service_call%1:04:00:: 01231296 1 0 -service_cap%1:06:00:: 03610682 1 0 -service_ceiling%1:07:00:: 05132962 1 0 -service_charge%1:21:00:: 13325847 1 0 -service_club%1:06:00:: 04175574 2 0 -service_club%1:14:00:: 08235828 1 0 -service_contract%1:10:00:: 06524454 1 0 -service_cutback%1:04:00:: 00353903 1 0 -service_department%1:06:00:: 03416640 2 0 -service_department%1:14:00:: 08119698 1 0 -service_door%1:06:00:: 04175669 1 0 -service_elevator%1:06:00:: 03394149 1 0 -service_entrance%1:06:00:: 04175669 1 1 -service_fee%1:21:00:: 13325847 1 0 -service_firm%1:14:00:: 08355506 1 0 -service_industry%1:14:00:: 08073700 1 0 -service_line%1:15:00:: 08650919 1 0 -service_man%1:18:01:: 10521100 1 0 -service_of_process%1:04:00:: 00318391 1 0 -service_program%1:10:00:: 06581410 1 0 -service_road%1:06:00:: 03398775 1 0 -service_routine%1:10:00:: 06584702 1 0 -service_staff%1:14:00:: 08352848 1 0 -service_station%1:06:00:: 04175859 1 0 -service_stripe%1:10:00:: 06884954 1 0 -service_tree%1:20:01:: 12658846 1 0 -service_tree%1:20:02:: 12623524 2 0 -serviceability%1:07:00:: 05150129 1 0 -serviceable%3:00:00:: 02123812 1 2 -serviceable%5:00:00:practical:00 01835843 3 0 -serviceable%5:00:00:useful:00 02496534 2 0 -serviceableness%1:07:00:: 05150129 1 0 -serviceberry%1:13:00:: 07745661 2 0 -serviceberry%1:20:00:: 12623524 1 0 -serviceman%1:18:00:: 10582746 1 0 -services%1:04:00:: 00585174 1 29 -servicing%1:04:00:: 00853649 1 0 -serviette%1:06:00:: 03807537 1 1 -servile%3:00:00:: 00790086 1 0 -servile%5:00:00:unfree:01 01066226 2 0 -servilely%4:02:00:: 00412409 1 0 -servility%1:07:00:: 04906712 1 0 -serving%1:04:00:: 00318391 2 0 -serving%1:13:00:: 07578363 1 0 -serving_cart%1:06:00:: 04176068 1 0 -serving_dish%1:06:00:: 04176190 1 0 -serving_girl%1:18:00:: 10582507 1 0 -servitor%1:18:00:: 10583250 1 0 -servitude%1:26:00:: 13998014 1 0 -servo%1:06:00:: 04176295 1 0 -servo%3:01:00:: 03137260 1 0 -servomechanical%3:01:00:: 03137260 1 0 -servomechanism%1:06:00:: 04176295 1 0 -servosystem%1:06:00:: 04176295 1 0 -serzone%1:06:00:: 03817062 1 0 -sesame%1:20:00:: 12874783 1 0 -sesame_family%1:20:00:: 12874429 1 0 -sesame_oil%1:13:00:: 07675156 1 0 -sesame_seed%1:13:00:: 07827410 1 0 -sesamoid%1:08:00:: 05280512 1 0 -sesamoid_bone%1:08:00:: 05280512 1 0 -sesamum%1:20:00:: 12874642 1 0 -sesamum_indicum%1:20:00:: 12874783 1 0 -sesbania%1:20:00:: 12569426 1 0 -sesbania_exaltata%1:20:00:: 12569616 1 0 -sesbania_grandiflora%1:20:00:: 12569851 1 0 -seseli%1:20:00:: 12944238 1 0 -sesotho%1:10:00:: 06995526 1 0 -sesquicentennial%1:28:00:: 15251489 1 0 -sesquipedalia%1:10:00:: 06305474 1 0 -sesquipedalian%1:10:00:: 06305474 1 0 -sesquipedalian%5:00:00:long:01 01435675 2 0 -sesquipedalian%5:00:00:pretentious:00 01851330 1 0 -sesquipedality%1:10:00:: 07087940 1 0 -sess%1:06:00:: 03990834 1 0 -sessile%3:00:00:: 00159498 2 0 -sessile%3:00:02:: 00159975 1 0 -sessile_polyp%1:26:00:: 14234867 1 0 -sessile_trillium%1:20:00:: 12469157 1 0 -session%1:04:00:: 01232091 3 4 -session%1:10:00:: 07145508 1 13 -session%1:14:00:: 08417920 4 0 -session%1:28:00:: 15225249 2 6 -session_cookie%1:10:00:: 06387727 1 0 -sessions%1:18:00:: 11293805 1 0 -sestet%1:10:00:: 07041902 4 0 -sestet%1:10:01:: 06383016 5 0 -sestet%1:14:01:: 07988369 3 0 -sestet%1:14:02:: 08247816 2 0 -sestet%1:23:00:: 13744722 1 0 -set%1:04:00:: 00625699 3 6 -set%1:04:01:: 01052853 7 1 -set%1:06:00:: 04297476 4 3 -set%1:06:01:: 04176528 13 0 -set%1:09:00:: 05674584 12 0 -set%1:09:01:: 06199702 6 1 -set%1:11:00:: 07363545 11 0 -set%1:14:00:: 07996689 1 23 -set%1:14:01:: 08240169 5 2 -set%1:14:02:: 07999699 2 14 -set%1:18:00:: 09513569 10 0 -set%1:22:00:: 13491060 9 0 -set%1:28:00:: 15256417 8 0 -set%2:29:05:: 00038849 25 0 -set%2:29:06:: 00056188 24 0 -set%2:30:00:: 00296178 23 0 -set%2:30:01:: 00298896 5 9 -set%2:30:02:: 00298556 8 5 -set%2:30:06:: 00408085 21 0 -set%2:30:07:: 00442669 14 1 -set%2:30:09:: 00406243 7 5 -set%2:30:12:: 00407848 22 0 -set%2:31:04:: 00699815 2 29 -set%2:31:13:: 00673448 20 0 -set%2:32:00:: 00947077 3 12 -set%2:32:01:: 01062395 4 10 -set%2:33:00:: 01115006 19 0 -set%2:35:00:: 01494310 1 30 -set%2:35:02:: 01607445 6 6 -set%2:35:04:: 01247322 18 0 -set%2:35:05:: 01530273 17 0 -set%2:35:09:: 01567275 12 2 -set%2:35:15:: 01613239 16 0 -set%2:36:00:: 01706129 11 2 -set%2:36:01:: 01711749 9 3 -set%2:36:11:: 01744888 15 0 -set%2:36:12:: 01628899 13 1 -set%2:38:00:: 01970646 10 2 -set%5:00:00:arranged:00 01681307 4 1 -set%5:00:00:down:00 02493300 5 0 -set%5:00:00:hard:01 01152091 7 0 -set%5:00:00:nonmoving:00 01564603 2 3 -set%5:00:00:ready:00 01931203 1 4 -set%5:00:00:settled:01 02126430 3 2 -set%5:00:00:settled:02 02129908 6 0 -set-apart%5:00:00:separate:00 02110447 1 1 -set-aside%5:00:00:reserved:02 01988468 1 0 -set-back%1:06:00:: 04176747 1 0 -set-to%1:04:00:: 01172173 1 0 -set_ablaze%2:43:00:: 02760139 1 1 -set_about%2:30:00:: 00345761 3 0 -set_about%2:36:00:: 01651293 2 1 -set_about%2:41:00:: 02439281 1 3 -set_afire%2:43:00:: 02760139 1 0 -set_aflame%2:43:00:: 02760139 1 0 -set_ahead%2:38:00:: 01994288 1 0 -set_apart%2:30:01:: 00495808 2 1 -set_apart%2:31:00:: 00677683 1 1 -set_ashore%2:38:00:: 01981436 1 0 -set_aside%2:30:00:: 00542668 2 2 -set_aside%2:31:00:: 00724150 1 6 -set_back%2:41:00:: 02452092 2 1 -set_back%2:42:00:: 02702674 3 0 -set_back%2:42:01:: 02642814 1 1 -set_chisel%1:06:00:: 03067212 1 0 -set_decoration%1:06:00:: 04176889 1 1 -set_down%2:32:00:: 01020356 1 2 -set_down%2:35:00:: 01489465 6 0 -set_down%2:35:01:: 01502122 3 1 -set_down%2:35:02:: 01500372 4 1 -set_down%2:38:00:: 01979241 5 0 -set_down%2:38:01:: 01979901 2 1 -set_forth%2:32:00:: 01001294 1 15 -set_forth%2:38:00:: 02014165 2 0 -set_free%2:41:02:: 02497062 1 0 -set_gun%1:06:00:: 04177041 1 0 -set_in%2:30:00:: 00415743 3 0 -set_in%2:42:00:: 02609439 1 1 -set_in%2:43:00:: 02769642 2 0 -set_in_motion%2:35:05:: 01515196 1 4 -set_in_stone%5:00:00:unchangeable:00 00347880 1 0 -set_off%2:30:00:: 00306723 4 2 -set_off%2:30:01:: 00349785 6 1 -set_off%2:30:02:: 00514463 3 2 -set_off%2:32:00:: 00851239 7 0 -set_off%2:36:00:: 01643657 1 4 -set_off%2:38:00:: 02014165 2 3 -set_off%2:42:00:: 02717831 5 1 -set_on%2:33:00:: 01120069 1 0 -set_on_fire%2:43:01:: 02760139 1 2 -set_out%2:30:00:: 00345761 1 9 -set_out%2:35:00:: 01474209 2 5 -set_out%2:38:00:: 02014165 3 3 -set_phrase%1:10:00:: 07154330 1 0 -set_piece%1:06:00:: 04177202 1 0 -set_point%1:23:00:: 13610540 1 0 -set_shot%1:04:00:: 00111962 1 0 -set_square%1:06:00:: 04177654 1 0 -set_theory%1:09:00:: 06016121 1 0 -set_to_music%2:36:00:: 01706014 1 0 -set_up%2:30:00:: 00407848 4 6 -set_up%2:30:02:: 00406243 15 0 -set_up%2:30:03:: 00408085 14 0 -set_up%2:31:00:: 00735571 13 0 -set_up%2:35:00:: 01463963 5 4 -set_up%2:35:01:: 01514126 12 0 -set_up%2:35:02:: 01569566 9 2 -set_up%2:35:04:: 01570108 10 1 -set_up%2:36:00:: 01656788 2 10 -set_up%2:36:01:: 01661243 3 8 -set_up%2:36:02:: 01661472 6 3 -set_up%2:36:03:: 01642924 8 2 -set_up%2:41:00:: 02578008 7 2 -set_up%2:41:01:: 02573127 11 0 -set_up%2:41:02:: 02427103 1 17 -set_upon%2:33:00:: 01126700 1 0 -seta%1:05:00:: 01902022 2 0 -seta%1:20:02:: 11534360 1 0 -setaceous%5:00:00:armed:02 00145083 1 0 -setaria%1:20:00:: 12134300 1 0 -setaria_glauca%1:20:00:: 12134836 1 0 -setaria_italica%1:20:00:: 12135270 1 0 -setaria_italica_rubrofructa%1:20:00:: 12135576 1 0 -setaria_italica_stramineofructa%1:20:00:: 12135729 1 0 -setaria_viridis%1:20:00:: 12135049 1 0 -setback%1:11:01:: 07475870 1 3 -sete_quedas%1:17:00:: 09430416 1 0 -seth%1:18:00:: 09587409 1 0 -seth%1:18:01:: 09513569 2 0 -seth_thomas%1:18:00:: 11339534 1 0 -setline%1:06:00:: 04475900 1 0 -setoff%1:06:00:: 04176747 1 0 -seton%1:18:00:: 11293972 1 0 -setophaga%1:05:00:: 01568019 1 0 -setophaga_ruticilla%1:05:00:: 01568294 1 0 -setose%5:00:00:armed:02 00145083 1 0 -setscrew%1:06:00:: 04177329 2 0 -setscrew%1:06:01:: 04177545 1 0 -setswana%1:10:00:: 06995664 1 0 -sett%1:06:00:: 03059528 1 0 -settee%1:06:00:: 04177755 2 0 -settee%1:06:01:: 04177820 1 0 -setter%1:05:00:: 02100399 2 0 -setter%1:18:00:: 09949946 1 0 -setterwort%1:20:00:: 11734093 1 0 -setting%1:06:00:: 03792526 7 0 -setting%1:06:01:: 03773268 3 1 -setting%1:06:02:: 03953743 6 0 -setting%1:15:00:: 08568256 1 7 -setting%1:15:02:: 08623927 5 0 -setting%1:26:00:: 14513259 2 2 -setting%1:26:01:: 14512817 4 0 -setting_hen%1:05:00:: 01792955 1 0 -settle%1:06:00:: 04177820 1 0 -settle%2:30:00:: 00413876 4 7 -settle%2:30:01:: 00415044 21 0 -settle%2:30:02:: 00415398 7 3 -settle%2:30:03:: 00539338 9 2 -settle%2:30:04:: 00481941 20 0 -settle%2:30:05:: 00558673 8 2 -settle%2:30:13:: 00342164 22 0 -settle%2:31:00:: 00698855 2 10 -settle%2:32:00:: 00763399 3 8 -settle%2:32:01:: 00764032 13 1 -settle%2:32:02:: 00764902 5 5 -settle%2:32:04:: 00798091 12 1 -settle%2:33:10:: 01092128 19 0 -settle%2:35:00:: 01493619 18 0 -settle%2:35:01:: 01465921 11 1 -settle%2:38:00:: 01987058 10 1 -settle%2:38:01:: 01988458 1 16 -settle%2:38:02:: 01986551 16 0 -settle%2:38:04:: 01986185 17 0 -settle%2:38:07:: 01989873 6 4 -settle%2:38:09:: 01986715 15 0 -settle%2:40:00:: 02254258 14 0 -settle_down%2:30:00:: 00415398 2 4 -settle_down%2:37:00:: 01763829 3 1 -settle_down%2:38:00:: 01988458 1 4 -settle_on%2:30:00:: 00486703 1 1 -settled%3:00:01:: 02125797 2 1 -settled%3:00:02:: 02129259 1 2 -settled%5:00:00:calm:00 00303480 4 0 -settled%5:00:00:inhabited:00 01311605 3 1 -settlement%1:04:00:: 00228535 7 0 -settlement%1:04:01:: 01252280 4 2 -settlement%1:09:00:: 05789089 5 1 -settlement%1:10:00:: 07177924 3 2 -settlement%1:14:00:: 08374049 1 7 -settlement%1:14:01:: 08226699 2 2 -settlement%1:15:00:: 08672562 6 0 -settlement_house%1:06:00:: 04177931 1 0 -settler%1:18:00:: 10583387 1 10 -settler%1:18:01:: 10583790 3 0 -settler%1:18:02:: 10583916 2 0 -settling%1:11:00:: 07362218 1 0 -settlings%1:17:00:: 09269972 1 0 -settlor%1:18:00:: 10584021 1 0 -setubal%1:15:00:: 08986526 1 0 -setup%1:04:00:: 00751398 3 0 -setup%1:06:00:: 02727825 1 2 -setup%1:07:00:: 04931267 2 1 -seurat%1:18:00:: 11294202 1 0 -sevastopol%1:15:00:: 09017168 1 0 -seven%1:06:00:: 04178062 2 0 -seven%1:23:00:: 13744916 1 3 -seven%5:00:00:cardinal:00 02186970 1 33 -seven-day%5:00:00:long:02 01441965 1 0 -seven-fold%5:00:00:multiple:00 02219876 1 0 -seven-membered%5:00:00:membered:00 01503375 1 0 -seven-sided%5:00:00:multilateral:00 00238636 1 0 -seven-spot%1:06:00:: 04178062 1 0 -seven-up%1:04:00:: 00498700 1 0 -seven_hills_of_rome%1:15:00:: 08797254 1 0 -seven_iron%1:06:00:: 03724623 1 0 -seven_seas%1:17:00:: 09430615 1 0 -seven_wonders_of_the_ancient_world%1:06:00:: 04178329 1 0 -seven_wonders_of_the_world%1:06:00:: 04178329 1 0 -seven_years'_war%1:04:00:: 01308438 1 0 -sevener%1:23:00:: 13744916 1 0 -sevenfold%4:02:00:: 00450382 1 0 -sevenfold%5:00:00:multiple:00 02219876 1 0 -sevens%1:04:00:: 00492497 1 0 -sevensome%1:14:00:: 07987794 1 0 -seventeen%1:23:00:: 13747725 1 0 -seventeen%5:00:00:cardinal:00 02187995 1 10 -seventeen-year_locust%1:05:00:: 02257284 1 0 -seventeenth%1:24:00:: 13848565 1 0 -seventeenth%5:00:00:ordinal:00 02204237 1 3 -seventh%1:10:00:: 06860049 3 0 -seventh%1:23:00:: 13738043 2 0 -seventh%1:24:00:: 13847498 1 0 -seventh%5:00:00:ordinal:00 02202979 1 4 -seventh-day_adventism%1:09:00:: 06227121 1 0 -seventh_avenue%1:15:00:: 09121101 1 0 -seventh_chord%1:10:00:: 06870349 1 0 -seventh_cranial_nerve%1:08:00:: 05479314 1 0 -seventh_crusade%1:04:00:: 00970331 1 0 -seventh_heaven%1:26:00:: 13987905 1 0 -seventhly%4:02:00:: 00450507 1 0 -seventies%1:28:00:: 15150493 2 0 -seventies%1:28:01:: 15150618 1 0 -seventieth%1:24:00:: 13849394 1 0 -seventieth%5:00:00:ordinal:00 02208723 1 0 -seventy%1:23:00:: 13749894 1 0 -seventy%5:00:00:cardinal:00 02193141 1 1 -seventy-eight%1:06:00:: 04178190 2 0 -seventy-eight%1:23:00:: 13750033 1 0 -seventy-eight%5:00:00:cardinal:00 02193947 1 0 -seventy-fifth%5:00:00:ordinal:00 02208852 1 0 -seventy-five%5:00:00:cardinal:00 02193647 1 0 -seventy-four%5:00:00:cardinal:00 02193547 1 0 -seventy-nine%5:00:00:cardinal:00 02194051 1 0 -seventy-one%5:00:00:cardinal:00 02193249 1 0 -seventy-seven%5:00:00:cardinal:00 02193844 1 0 -seventy-six%5:00:00:cardinal:00 02193746 1 0 -seventy-three%5:00:00:cardinal:00 02193444 1 0 -seventy-two%5:00:00:cardinal:00 02193346 1 0 -sever%2:35:00:: 01560731 2 3 -sever%2:35:01:: 01560984 1 5 -severable%5:00:00:divisible:00 00785002 1 0 -severable_contract%1:10:00:: 06524552 1 0 -several%5:00:00:different:00 02068174 3 10 -several%5:00:00:individual:00 00494409 2 16 -several%5:00:00:some:00 02268268 1 112 -several-seeded%5:00:00:seedy:00 02255394 1 0 -severalise%2:31:00:: 00650353 2 0 -severalise%2:31:01:: 00661480 1 0 -severalize%2:31:00:: 00650353 2 0 -severalize%2:31:01:: 00661480 1 0 -severally%4:02:00:: 00207668 2 0 -severally%4:02:01:: 00450647 1 0 -severally%4:02:03:: 00137915 3 0 -severalty%1:21:00:: 13240971 2 0 -severalty%1:26:00:: 14414503 1 1 -severance%1:04:00:: 00359492 2 0 -severance%1:11:00:: 07313814 1 0 -severance_agreement%1:10:00:: 07178698 1 0 -severe%5:00:00:critical:03 00651039 5 1 -severe%5:00:00:intense:00 01513050 1 8 -severe%5:00:00:plain:01 01792387 3 2 -severe%5:00:00:strong:00 02322512 2 3 -severe%5:00:01:bad:00 01129185 6 0 -severe%5:00:02:nonindulgent:00 01301316 4 1 -severe_acute_respiratory_syndrome%1:26:00:: 14179946 1 0 -severe_combined_immunodeficiency%1:26:00:: 14128812 1 0 -severe_combined_immunodeficiency_disease%1:26:00:: 14128812 1 0 -severed%5:00:00:cut:01 00662318 1 0 -severely%4:02:01:: 00015953 1 8 -severely%4:02:02:: 00241093 2 3 -severely%4:02:03:: 00091778 3 1 -severeness%1:07:00:: 04697666 3 0 -severeness%1:07:01:: 04639732 4 0 -severeness%1:07:02:: 04710127 2 0 -severeness%1:07:03:: 05036715 1 0 -severing%1:04:00:: 00359492 1 1 -severity%1:07:00:: 04639732 4 0 -severity%1:07:01:: 05036715 1 2 -severity%1:07:02:: 04710127 2 0 -severity%1:07:03:: 04697666 3 0 -severn%1:17:00:: 09430771 2 0 -severn%1:17:01:: 09430990 1 0 -severn_river%1:17:00:: 09430771 2 0 -severn_river%1:17:01:: 09430990 1 0 -severo_ochoa%1:18:00:: 11211696 1 0 -sevilla%1:15:00:: 09027089 1 0 -seville%1:15:00:: 09027089 1 0 -seville_orange%1:13:00:: 07748753 2 0 -seville_orange%1:20:00:: 12708654 1 0 -sew%2:35:00:: 01329239 1 5 -sew%2:36:00:: 01666327 2 0 -sew_together%2:35:00:: 01329239 1 0 -sewage%1:27:00:: 14856893 1 19 -sewage_disposal%1:04:00:: 00091893 1 2 -sewage_disposal_plant%1:06:00:: 04178668 1 0 -sewage_farm%1:06:00:: 04178784 1 0 -sewage_system%1:06:00:: 04178897 1 5 -sewage_works%1:06:00:: 04178897 1 0 -seward%1:18:00:: 11294349 1 0 -seward's_folly%1:04:00:: 01111569 1 0 -seward_peninsula%1:15:00:: 09056837 1 0 -sewed%5:00:00:seamed:00 02254172 1 0 -sewellel%1:05:00:: 02363996 1 0 -sewer%1:06:00:: 04179126 1 4 -sewer%1:18:00:: 10584318 2 1 -sewer%1:26:00:: 14475992 3 0 -sewer_gas%1:27:00:: 15038426 1 0 -sewer_line%1:06:00:: 04179271 1 1 -sewer_main%1:06:00:: 04179271 1 0 -sewer_rat%1:05:00:: 02333819 1 0 -sewer_system%1:06:00:: 04178897 1 0 -sewer_water%1:27:00:: 14857021 1 0 -sewerage%1:06:00:: 04179126 2 0 -sewerage%1:27:00:: 14856893 1 0 -sewing%1:04:00:: 00715674 1 1 -sewing%1:06:00:: 04179385 2 0 -sewing-machine_operator%1:18:00:: 10584501 1 0 -sewing-machine_stitch%1:06:00:: 03702067 1 0 -sewing_basket%1:06:00:: 04179712 1 0 -sewing_kit%1:06:00:: 04179824 1 0 -sewing_machine%1:06:00:: 04179913 1 0 -sewing_needle%1:05:00:: 02268443 2 0 -sewing_needle%1:06:00:: 04180063 1 0 -sewing_room%1:06:00:: 04180229 1 0 -sewing_stitch%1:06:00:: 04180314 1 0 -sewn%5:00:00:seamed:00 02254172 1 0 -sex%1:04:00:: 00844254 1 14 -sex%1:07:00:: 05006898 4 0 -sex%1:12:00:: 07487695 3 0 -sex%1:14:00:: 07999291 2 7 -sex%2:31:00:: 00651630 2 0 -sex%2:37:00:: 01762283 1 0 -sex-change_operation%1:04:00:: 00691648 1 0 -sex-limited%3:01:00:: 02887266 1 0 -sex-linked%3:01:00:: 02887399 1 0 -sex-linked_disorder%1:26:00:: 14565696 1 0 -sex-starved%5:00:00:sexy:00 02134896 1 0 -sex_act%1:04:00:: 00845523 1 3 -sex_activity%1:04:00:: 00844254 1 1 -sex_appeal%1:07:00:: 04686935 1 0 -sex_bomb%1:18:00:: 10584729 1 0 -sex_cell%1:08:00:: 05456732 1 0 -sex_change%1:11:00:: 07425427 1 0 -sex_character%1:07:00:: 05007280 1 0 -sex_characteristic%1:07:00:: 05007280 1 0 -sex_chromatin%1:08:00:: 05435855 1 0 -sex_chromosome%1:08:00:: 05443651 1 0 -sex_crime%1:04:00:: 00774107 1 0 -sex_drive%1:26:00:: 14041106 1 0 -sex_gland%1:08:00:: 05524430 1 0 -sex_hormone%1:27:00:: 14745635 1 0 -sex_kitten%1:18:00:: 10584729 1 0 -sex_linkage%1:19:00:: 11506549 1 0 -sex_manual%1:10:00:: 06422488 1 0 -sex_object%1:18:00:: 10584853 1 0 -sex_offender%1:18:00:: 10584973 1 0 -sex_offense%1:04:00:: 00774107 1 0 -sex_organ%1:08:00:: 05513302 1 0 -sex_segregation%1:14:00:: 08379882 1 0 -sex_symbol%1:18:00:: 10585077 1 0 -sex_up%2:30:00:: 00586241 1 0 -sexadecimal_notation%1:10:00:: 06811283 1 0 -sexadecimal_number_system%1:10:00:: 06811419 1 0 -sexagenarian%1:18:00:: 10584617 1 0 -sexagenarian%5:00:00:old:02 01646646 1 0 -sexagesimal%3:01:00:: 02887115 1 0 -sexcapade%1:04:00:: 00510383 1 0 -sexed%5:00:00:sexual:00 02135692 1 0 -sexed%5:00:00:sexy:00 02134802 2 0 -sexiness%1:12:00:: 07489059 1 0 -sexism%1:04:00:: 01155893 1 0 -sexist%1:18:00:: 09912431 1 0 -sexist%5:00:00:prejudiced:00 00286063 1 0 -sexless%5:00:01:unsexy:00 02135138 3 0 -sexless%5:00:02:asexual:00 02136522 1 0 -sexless%5:00:02:unsexy:00 02135213 2 0 -sexlessness%1:07:00:: 05008085 1 0 -sexploitation%1:04:00:: 00419464 1 0 -sexpot%1:18:00:: 10584729 1 0 -sext%1:28:00:: 15229974 1 0 -sextant%1:06:00:: 04180888 2 0 -sextant%1:23:00:: 13612550 1 0 -sextet%1:10:00:: 07041902 1 1 -sextet%1:14:00:: 07987689 5 0 -sextet%1:14:01:: 07988369 4 0 -sextet%1:14:02:: 08247816 3 0 -sextet%1:23:00:: 13744722 2 0 -sextette%1:10:00:: 07041902 4 0 -sextette%1:14:00:: 07987689 3 0 -sextette%1:14:01:: 07988369 2 0 -sextette%1:14:02:: 08247816 1 0 -sextillion%1:23:00:: 13753430 1 0 -sexton%1:18:00:: 10585217 2 0 -sexton%1:18:01:: 11294582 1 0 -sextuple%5:00:00:multiple:00 02219770 1 0 -sextuplet%1:23:00:: 13744722 1 0 -sexual%3:00:00:: 02135389 2 1 -sexual%3:01:01:: 02887578 1 16 -sexual%5:00:00:sexy:00 02132735 3 0 -sexual_abstention%1:04:00:: 01069125 1 0 -sexual_abuse%1:04:00:: 00774107 1 0 -sexual_activity%1:04:00:: 00844254 1 1 -sexual_arousal%1:26:00:: 14037619 1 1 -sexual_assault%1:04:00:: 00774107 1 0 -sexual_attraction%1:07:00:: 04689834 1 0 -sexual_characteristic%1:07:00:: 05007280 1 0 -sexual_climax%1:04:00:: 00062133 1 0 -sexual_congress%1:04:00:: 00845523 1 0 -sexual_conquest%1:04:00:: 00160688 1 0 -sexual_desire%1:12:00:: 07487955 1 0 -sexual_discrimination%1:04:00:: 01156262 1 0 -sexual_harassment%1:04:00:: 00425781 1 0 -sexual_immorality%1:04:00:: 00746375 1 0 -sexual_intercourse%1:04:00:: 00845523 1 0 -sexual_inversion%1:04:00:: 00857275 1 0 -sexual_love%1:04:00:: 00846515 2 0 -sexual_love%1:12:00:: 07488340 1 0 -sexual_morality%1:07:00:: 04849759 1 0 -sexual_perversion%1:04:00:: 00854717 1 0 -sexual_pleasure%1:12:00:: 07493527 1 0 -sexual_practice%1:04:00:: 00844254 1 0 -sexual_relation%1:04:00:: 00845523 1 1 -sexual_relationship%1:26:00:: 13931765 1 6 -sexual_reproduction%1:22:00:: 13555240 1 0 -sexual_union%1:04:00:: 00847340 1 1 -sexual_urge%1:12:00:: 07487695 1 0 -sexualise%2:30:00:: 00567971 1 0 -sexuality%1:07:00:: 05006898 1 0 -sexualize%2:30:00:: 00567971 1 0 -sexually%4:02:00:: 00136469 2 1 -sexually%4:02:01:: 00136561 1 4 -sexually_attractive%5:00:00:desirable:00 00733406 1 0 -sexually_transmitted_disease%1:26:00:: 14133159 1 0 -sexy%3:00:00:: 02131072 1 1 -sexy%3:00:04:: 02137538 2 0 -seychelles%1:15:00:: 08996483 1 0 -seychelles%1:15:01:: 08996284 2 0 -seychelles_islands%1:15:00:: 08996284 1 0 -seychelles_monetary_unit%1:23:00:: 13705037 1 0 -seychelles_rupee%1:23:00:: 13705153 1 0 -seychellois%1:18:00:: 09730951 1 0 -seychellois%3:01:00:: 03116517 1 0 -seyhan%1:15:00:: 09040475 2 0 -seyhan%1:17:00:: 09431133 1 0 -seyhan_river%1:17:00:: 09431133 1 0 -seymour%1:18:00:: 11294680 1 0 -sezession%1:14:00:: 08470034 1 0 -sfax%1:15:00:: 09038272 1 0 -sforzando%1:10:00:: 06869428 2 0 -sforzando%1:10:01:: 06869742 1 1 -sg%1:27:00:: 14654058 1 0 -sga_infant%1:18:00:: 10613198 1 0 -sgml%1:10:00:: 06788007 1 0 -sgraffito%1:06:00:: 04181083 1 0 -sha'ban%1:28:00:: 15218149 1 0 -shaaban%1:28:00:: 15218149 1 0 -shabbily%4:02:00:: 00450753 2 0 -shabbily%4:02:01:: 00450893 1 0 -shabbiness%1:04:00:: 00744616 2 0 -shabbiness%1:07:00:: 04816761 1 0 -shabby%5:00:00:dishonorable:00 01228159 2 0 -shabby%5:00:00:worn:00 02583043 1 4 -shabby-genteel%5:00:00:proud:00 01892830 1 0 -shabu%1:06:00:: 03754295 1 0 -shabuoth%1:28:00:: 15197042 1 0 -shack%1:06:00:: 03547054 1 1 -shack%2:38:00:: 02059916 2 0 -shack%2:42:00:: 02650552 1 0 -shack_up%2:42:00:: 02651193 1 1 -shackle%1:06:00:: 04181228 1 2 -shackle%1:06:01:: 04181561 2 0 -shackle%2:35:00:: 01288052 2 0 -shackle%2:35:01:: 01300565 1 0 -shackled%5:00:00:bound:01 00253361 1 2 -shad%1:05:00:: 02530421 2 0 -shad%1:13:00:: 07798357 1 0 -shad-flower%1:20:00:: 11886157 1 0 -shad_roe%1:13:00:: 07799874 1 0 -shadberry%1:13:00:: 07745661 1 0 -shadblow%1:20:00:: 12623524 1 0 -shadbush%1:20:00:: 12623524 1 0 -shaddock%1:13:00:: 07750146 2 0 -shaddock%1:20:00:: 12709103 1 0 -shade%1:06:00:: 04181718 3 3 -shade%1:06:01:: 04181983 8 0 -shade%1:07:00:: 04959230 2 5 -shade%1:09:01:: 05898171 7 0 -shade%1:10:00:: 06606191 4 2 -shade%1:23:00:: 13763185 6 0 -shade%1:26:00:: 13984613 1 9 -shade%1:26:01:: 13951794 5 0 -shade%2:30:00:: 00113420 5 0 -shade%2:30:01:: 00113605 4 0 -shade%2:35:00:: 01477704 3 1 -shade%2:36:00:: 01695567 2 1 -shade%2:43:00:: 02768702 1 2 -shade_off%2:43:00:: 02768702 1 0 -shade_tree%1:20:00:: 13108545 1 0 -shaded%3:00:01:: 00276472 1 4 -shaded%3:00:02:: 00277550 2 0 -shades%1:06:00:: 04356056 1 0 -shades_of%1:09:00:: 05814019 1 0 -shadflower%1:20:00:: 11886157 1 0 -shadfly%1:05:00:: 02262449 1 0 -shadiness%1:07:00:: 04811767 2 0 -shadiness%1:26:00:: 13984613 1 0 -shading%1:04:00:: 01003936 2 1 -shading%1:07:00:: 04682018 1 1 -shadow%1:07:00:: 05155349 6 1 -shadow%1:09:00:: 05897553 3 3 -shadow%1:10:00:: 06646628 5 1 -shadow%1:12:00:: 07522418 4 1 -shadow%1:15:00:: 08646306 2 8 -shadow%1:18:00:: 10689104 8 0 -shadow%1:18:01:: 10585359 9 0 -shadow%1:26:00:: 13959642 7 0 -shadow%1:26:01:: 13984944 1 17 -shadow%2:38:00:: 02001461 1 3 -shadow%2:42:00:: 02696306 3 0 -shadow%2:43:00:: 02768702 2 0 -shadow_box%1:06:00:: 04182152 1 0 -shadow_cabinet%1:14:00:: 08382297 1 0 -shadow_play%1:10:00:: 07019500 1 0 -shadow_show%1:10:00:: 07019500 1 0 -shadowbox%2:35:00:: 01420616 1 0 -shadowboxing%1:04:00:: 00898286 1 0 -shadowed%5:00:00:shaded:01 00276862 1 1 -shadower%1:18:00:: 10689104 1 0 -shadowgraph%1:06:00:: 04042358 1 0 -shadowiness%1:26:00:: 13984613 1 0 -shadowing%1:04:00:: 00320486 1 0 -shadowy%5:00:00:indistinct:00 00782216 2 0 -shadowy%5:00:00:insubstantial:00 00626483 3 0 -shadowy%5:00:02:shaded:01 00276862 1 1 -shady%5:00:00:disreputable:00 01984669 2 0 -shady%5:00:00:questionable:00 01917594 3 0 -shady%5:00:00:shaded:01 00276862 4 0 -shady%5:00:00:untrustworthy:00 02466566 1 0 -shaft%1:05:00:: 02468617 12 0 -shaft%1:06:00:: 04182322 3 1 -shaft%1:06:01:: 04111190 11 0 -shaft%1:06:02:: 04182514 10 0 -shaft%1:06:03:: 04182708 9 0 -shaft%1:06:04:: 04182890 8 0 -shaft%1:06:05:: 04270891 7 0 -shaft%1:08:00:: 05592733 5 0 -shaft%1:08:01:: 05526713 6 0 -shaft%1:10:00:: 06821770 1 3 -shaft%1:10:01:: 06767922 2 3 -shaft%1:19:00:: 11428023 4 0 -shaft%2:33:00:: 01104624 2 0 -shaft%2:40:00:: 02362601 1 0 -shaft_louse%1:05:00:: 02185814 1 0 -shaft_of_light%1:19:00:: 11428023 1 1 -shag%1:04:00:: 00533404 5 0 -shag%1:04:01:: 00846021 4 0 -shag%1:06:00:: 04183076 3 0 -shag%1:17:00:: 09431283 2 0 -shag%1:27:00:: 14715356 1 0 -shag%2:38:00:: 01896119 1 0 -shag_rug%1:06:00:: 04183217 1 0 -shagbark%1:20:00:: 12321873 1 0 -shagbark_hickory%1:20:00:: 12321873 1 0 -shagged%5:00:00:rough:00 02242887 1 0 -shaggily%4:02:00:: 00451024 1 0 -shagginess%1:07:00:: 04949560 2 0 -shagginess%1:26:00:: 14499953 1 0 -shaggy%5:00:00:rough:00 02242887 2 0 -shaggy%5:00:00:ungroomed:00 02428610 1 1 -shaggy-coated%5:00:00:ungroomed:00 02428610 1 0 -shaggy-haired%5:00:00:ungroomed:00 02428610 1 0 -shaggy_cap%1:20:00:: 13006171 1 0 -shaggy_dog_story%1:10:00:: 06779713 1 0 -shaggymane%1:20:00:: 13006171 1 0 -shaggymane_mushroom%1:20:00:: 13006171 1 0 -shah%1:18:00:: 10585496 1 0 -shah_jahan%1:18:00:: 11294834 1 0 -shah_of_iran%1:18:00:: 10585496 1 0 -shah_pahlavi%1:18:00:: 11220461 1 0 -shahadah%1:09:00:: 05914234 1 0 -shahaptian%1:10:00:: 06925305 2 0 -shahaptian%1:18:00:: 09668199 1 0 -shaheed%1:18:00:: 10585628 1 0 -shahn%1:18:00:: 11295033 1 0 -shaitan%1:18:00:: 09544746 1 0 -shakable%5:00:00:contestable:00 00590782 1 0 -shake%1:04:00:: 00867983 5 0 -shake%1:04:01:: 00347652 6 0 -shake%1:10:00:: 06632097 4 0 -shake%1:10:01:: 06860177 3 0 -shake%1:13:00:: 07923297 2 0 -shake%1:27:00:: 15039445 1 0 -shake%2:29:00:: 00014034 2 14 -shake%2:30:00:: 00167385 5 6 -shake%2:30:01:: 00559556 8 1 -shake%2:32:00:: 00992518 9 0 -shake%2:37:00:: 01761706 6 2 -shake%2:38:00:: 01889610 1 42 -shake%2:38:01:: 01891638 3 8 -shake%2:38:02:: 01875295 4 6 -shake%2:38:04:: 02073545 7 1 -shake-up%1:04:00:: 01137987 1 0 -shake_hands%2:32:00:: 00898019 1 2 -shake_off%2:35:00:: 01513430 2 2 -shake_off%2:38:00:: 02073545 1 3 -shake_up%2:35:00:: 01391946 6 0 -shake_up%2:35:01:: 01419473 5 0 -shake_up%2:37:00:: 01761706 4 0 -shake_up%2:38:00:: 01865051 1 1 -shake_up%2:38:07:: 01890351 3 0 -shake_up%2:41:00:: 02433123 2 0 -shakeable%5:00:00:contestable:00 00590782 1 0 -shakedown%1:04:00:: 00784934 3 0 -shakedown%1:04:01:: 00993787 2 0 -shakedown%1:11:00:: 07369922 1 0 -shakedown%3:01:00:: 03144546 1 0 -shaken%5:00:00:agitated:00 00086005 1 2 -shakeout%1:26:00:: 14494358 1 0 -shaker%1:06:00:: 04183329 3 0 -shaker%1:18:00:: 10585773 2 0 -shaker%1:18:01:: 10585976 1 0 -shakers%1:14:00:: 08150576 1 0 -shakespeare%1:18:00:: 11295196 1 11 -shakespearean%1:18:00:: 10586166 1 0 -shakespearean%3:01:00:: 03027335 1 0 -shakespearean_sonnet%1:10:00:: 06383107 1 0 -shakespearian%1:18:00:: 10586166 1 0 -shakespearian%3:01:00:: 03027335 1 0 -shakeup%1:04:00:: 01137987 1 0 -shakily%4:02:00:: 00451122 2 0 -shakily%4:02:01:: 00451291 1 0 -shakiness%1:07:00:: 04776021 2 0 -shakiness%1:26:00:: 14004572 1 0 -shaking%1:04:00:: 00347180 1 2 -shaking%1:26:00:: 14004572 2 0 -shaking_palsy%1:26:00:: 14094350 1 0 -shako%1:06:00:: 02817516 1 0 -shakspere%1:18:00:: 11295196 1 0 -shakti%1:18:00:: 09528587 1 0 -shaktism%1:09:00:: 06239076 2 0 -shaktism%1:14:00:: 08097222 1 0 -shaktist%1:18:00:: 09685398 1 0 -shaky%5:00:00:insecure:02 02095037 3 0 -shaky%5:00:00:unstable:00 02292797 1 1 -shaky%5:00:00:unsteady:00 02304565 2 0 -shale%1:27:00:: 15038520 1 0 -shale_oil%1:27:00:: 15038892 1 0 -shall-flower%1:20:02:: 12357485 1 0 -shallon%1:20:00:: 12236160 1 0 -shallot%1:13:00:: 07723177 3 0 -shallot%1:20:00:: 12433178 2 0 -shallot%1:20:02:: 12433429 1 0 -shallow%1:17:00:: 09433134 1 0 -shallow%2:30:00:: 00535988 2 0 -shallow%2:30:01:: 00536143 1 0 -shallow%3:00:01:: 00691696 1 6 -shallow%3:00:02:: 00693356 2 0 -shallow%5:00:00:superficial:00 01875227 3 0 -shallow-draft%3:01:00:: 03135608 1 0 -shallow-draught%3:01:00:: 03135608 1 0 -shallow_fording%1:04:00:: 00297863 1 0 -shallowly%4:02:00:: 00451438 1 0 -shallowness%1:07:00:: 05135725 2 0 -shallowness%1:07:01:: 05095111 1 1 -shallu%1:20:00:: 12138578 1 0 -shalom_asch%1:18:00:: 10825554 1 0 -shalwar%1:06:00:: 04132158 1 0 -sham%1:06:00:: 03318438 1 2 -sham%1:18:00:: 10201535 2 0 -sham%2:32:00:: 00838043 2 0 -sham%2:36:00:: 01721754 1 0 -sham%5:00:00:counterfeit:00 01116857 1 0 -shaman%1:18:00:: 10626194 1 0 -shamanise%2:41:00:: 02568884 1 0 -shamanism%1:09:01:: 06244852 2 0 -shamanism%1:09:02:: 06245084 1 0 -shamanist%3:01:00:: 03135786 1 0 -shamanistic%3:01:00:: 03135786 1 0 -shamanize%2:41:00:: 02568884 1 0 -shamash%1:18:00:: 09521763 1 0 -shamble%1:04:00:: 00292712 1 0 -shamble%2:38:00:: 01917549 1 2 -shambles%1:06:00:: 02666943 2 0 -shambles%1:26:00:: 14497679 1 0 -shambling%1:04:00:: 00292712 1 0 -shambolic%3:01:00:: 03135937 1 0 -shambolically%4:02:00:: 00451513 1 0 -shame%1:11:00:: 07305098 3 1 -shame%1:12:00:: 07506569 1 9 -shame%1:26:00:: 14440137 2 5 -shame%2:33:00:: 01108053 4 0 -shame%2:37:00:: 01792287 3 0 -shame%2:41:00:: 02547225 1 1 -shame%2:41:01:: 02508078 2 0 -shame_plant%1:20:00:: 11755319 1 0 -shamed%5:00:01:ashamed:00 00154163 2 0 -shamed%5:00:02:ashamed:00 00154583 1 0 -shamefaced%5:00:00:modest:01 01538690 1 0 -shamefaced%5:00:01:ashamed:00 00154837 2 0 -shamefaced%5:00:02:ashamed:00 00154583 3 0 -shamefacedly%4:02:00:: 00451594 1 1 -shamefacedness%1:12:00:: 07507560 1 0 -shameful%5:00:00:dishonorable:00 01227546 1 2 -shameful%5:00:00:immoral:00 01549964 2 0 -shamefully%4:02:00:: 00313633 1 0 -shamefulness%1:07:00:: 04808281 1 0 -shameless%5:00:00:unashamed:00 00155720 1 0 -shamelessly%4:02:00:: 00209518 1 0 -shamelessness%1:07:00:: 04859636 1 0 -shamisen%1:06:00:: 04132603 1 0 -shammer%1:18:00:: 10201535 2 0 -shammer%1:18:01:: 10286539 1 0 -shammy%1:27:00:: 14761806 1 0 -shammy_leather%1:27:00:: 14761806 1 0 -shampoo%1:04:00:: 00257115 2 0 -shampoo%1:06:00:: 04183516 1 0 -shampoo%2:29:00:: 00042017 1 0 -shamrock%1:20:01:: 11752937 3 0 -shamrock%1:20:02:: 11753700 1 1 -shamrock%1:20:03:: 12703190 2 0 -shamrock_pea%1:20:00:: 12555859 1 0 -shamus%1:18:00:: 10476671 1 0 -shan%1:10:00:: 06935223 1 0 -shandy%1:13:00:: 07912834 1 0 -shandygaff%1:13:00:: 07912834 1 0 -shang%1:14:00:: 08158314 1 0 -shang_dynasty%1:14:00:: 08158314 1 0 -shanghai%1:15:00:: 08728268 1 0 -shanghai%2:35:00:: 01471547 1 0 -shanghai_dialect%1:10:00:: 06930298 1 0 -shanghaier%1:18:00:: 10586265 1 0 -shangri-la%1:15:00:: 08565506 1 0 -shank%1:04:00:: 00573945 8 0 -shank%1:05:00:: 02462828 7 0 -shank%1:06:00:: 04183663 6 0 -shank%1:06:01:: 04183819 5 0 -shank%1:06:02:: 04183957 4 0 -shank%1:06:03:: 04184095 3 0 -shank%1:08:00:: 05562756 2 0 -shank%1:13:00:: 07657068 1 0 -shank%2:35:00:: 01402447 1 0 -shank's_mare%1:08:00:: 05562015 1 0 -shank's_pony%1:08:00:: 05562015 1 0 -shankar%1:18:00:: 11295464 1 0 -shanks'_mare%1:08:00:: 05562015 1 0 -shanks'_pony%1:08:00:: 05562015 1 0 -shannon%1:18:00:: 11295619 1 0 -shanny%1:05:00:: 02613572 1 0 -shantung%1:06:00:: 04184316 1 1 -shanty%1:06:00:: 03547054 1 1 -shanty%1:10:00:: 07050042 2 0 -shantytown%1:15:00:: 08652036 1 0 -shape%1:03:00:: 00027807 2 6 -shape%1:07:00:: 05064037 1 37 -shape%1:07:01:: 04677514 5 2 -shape%1:08:00:: 05217168 3 3 -shape%1:09:00:: 05930736 8 0 -shape%1:09:01:: 05941210 4 2 -shape%1:14:00:: 08174167 7 0 -shape%1:26:00:: 14546227 6 1 -shape%2:30:00:: 00142191 3 3 -shape%2:31:00:: 00701040 1 11 -shape%2:36:00:: 01659248 2 6 -shape-up%1:04:00:: 01218050 1 0 -shape_constancy%1:09:00:: 05709507 1 0 -shape_up%2:30:00:: 00248659 1 0 -shaped%3:01:00:: 03136057 2 0 -shaped%5:00:00:formed:00 02149787 1 4 -shapeless%5:00:00:unformed:00 02151837 1 3 -shapeless%5:00:00:unshapely:00 02142306 2 0 -shapelessly%4:02:00:: 00451806 1 0 -shapelessness%1:07:00:: 04691861 2 0 -shapelessness%1:25:00:: 13909889 1 0 -shapeliness%1:07:00:: 04686748 1 0 -shapely%3:00:00:: 02138659 1 1 -shaper%1:06:00:: 04184435 2 0 -shaper%1:18:00:: 10284064 1 0 -shaping%1:04:00:: 00925207 2 0 -shaping%1:22:00:: 13555446 1 1 -shaping%5:00:00:constructive:00 00585398 1 0 -shaping_machine%1:06:00:: 04184435 1 0 -shaping_tool%1:06:00:: 04184600 1 0 -shapley%1:18:00:: 11295828 1 0 -shard%1:06:00:: 04184701 1 1 -share%1:04:00:: 01085098 3 3 -share%1:04:01:: 00787465 4 3 -share%1:06:00:: 03967788 5 0 -share%1:21:00:: 13285176 1 29 -share%1:21:01:: 13342135 2 12 -share%2:32:00:: 01063930 5 1 -share%2:40:00:: 02294179 4 4 -share%2:40:01:: 02295208 3 15 -share%2:40:02:: 02295550 2 19 -share%2:42:00:: 02718309 1 23 -share-out%1:04:00:: 01085793 1 0 -sharecrop_farmer%1:18:00:: 10586444 1 1 -sharecropper%1:18:00:: 10586444 1 0 -shared%3:00:00:: 02152216 1 2 -shared%5:00:00:distributed:00 00541189 2 0 -shared_out%5:00:00:distributed:00 00541189 1 0 -shareholder%1:18:00:: 10657969 1 0 -shareholding%1:21:00:: 13247712 1 0 -shareowner%1:18:00:: 10657969 1 0 -sharer%1:18:00:: 10401639 1 1 -shareware%1:10:00:: 06587596 1 0 -shari%1:17:00:: 09431409 1 0 -shari_river%1:17:00:: 09431409 1 0 -sharia%1:14:00:: 08455829 1 0 -sharia_law%1:14:00:: 08455829 1 0 -shariah%1:14:00:: 08455829 1 0 -shariah_law%1:14:00:: 08455829 1 0 -sharing%1:04:00:: 01085793 4 0 -sharing%1:10:00:: 07134575 3 0 -sharing%1:24:00:: 13843786 2 0 -sharing%1:24:01:: 13843920 1 0 -sharing%5:00:00:unselfish:00 02099651 1 0 -shark%1:05:00:: 01482330 1 1 -shark%1:18:00:: 10586557 3 0 -shark%1:18:01:: 10586674 2 0 -shark%2:33:00:: 01143614 2 0 -shark%2:41:00:: 02573031 1 0 -shark-liver_oil%1:27:00:: 15038987 1 0 -shark_oil%1:27:00:: 15038987 1 0 -shark_repellent%1:04:00:: 00175605 1 0 -sharkskin%1:06:00:: 04184880 1 0 -sharksucker%1:05:00:: 02575325 1 0 -sharp%1:06:00:: 04184957 2 0 -sharp%1:10:00:: 06866599 1 0 -sharp%3:00:00:: 00800826 9 1 -sharp%3:00:03:: 01577973 10 0 -sharp%3:00:04:: 00803038 8 2 -sharp%4:02:00:: 00503102 1 1 -sharp%5:00:00:distinct:00 00780352 1 9 -sharp%5:00:00:forceful:00 00842810 12 0 -sharp%5:00:00:high:03 01214430 6 3 -sharp%5:00:00:perceptive:00 01744515 3 6 -sharp%5:00:00:pointed:00 01810189 2 6 -sharp%5:00:00:smart:00 00438909 4 6 -sharp%5:00:00:steep:00 01145151 7 3 -sharp%5:00:00:sudden:00 01144230 11 0 -sharp%5:00:00:unpleasant:00 01804728 5 3 -sharp-angled%5:00:00:angular:00 02049147 1 0 -sharp-cornered%5:00:00:angular:00 02049147 1 0 -sharp-eared%5:00:00:hearing:00 00682841 1 0 -sharp-eyed%5:00:00:eyed:00 00954064 3 0 -sharp-eyed%5:00:00:perceptive:00 01745653 2 0 -sharp-eyed%5:00:00:sighted:00 02158438 1 0 -sharp-limbed%5:00:00:limbed:00 01414740 1 1 -sharp-nosed%5:00:00:nosed:00 01607744 1 0 -sharp-pointed%3:01:00:: 03136162 1 0 -sharp-set%5:00:00:hungry:00 01269506 1 0 -sharp-sighted%5:00:00:perceptive:00 01745653 2 0 -sharp-sighted%5:00:00:sighted:00 02158438 1 0 -sharp-sightedness%1:07:00:: 04664628 2 0 -sharp-sightedness%1:09:00:: 05655567 1 0 -sharp-tailed_grouse%1:05:00:: 01798168 1 0 -sharp-tasting%5:00:00:tasty:00 02396267 1 0 -sharp-toothed%5:00:00:sharp:00 00802960 1 0 -sharp-worded%5:00:00:unpleasant:00 01804728 1 1 -sharp_tongue%1:10:00:: 07082346 1 1 -sharpen%2:30:00:: 00392314 3 1 -sharpen%2:30:01:: 00392426 2 1 -sharpen%2:30:02:: 00393398 6 0 -sharpen%2:30:03:: 00314272 4 1 -sharpen%2:30:05:: 00392588 8 0 -sharpen%2:30:08:: 00392960 7 0 -sharpen%2:35:00:: 01246601 1 1 -sharpen%2:39:00:: 02190786 5 0 -sharpened%5:00:00:pointed:00 01811172 1 0 -sharpened%5:00:00:sharp:00 00802844 2 0 -sharpener%1:06:00:: 04185071 1 0 -sharper%1:18:00:: 09894909 1 0 -sharpie%1:06:00:: 04185329 4 0 -sharpie%1:06:01:: 04185529 3 0 -sharpie%1:18:00:: 09894909 2 0 -sharpie%1:18:01:: 10040945 1 0 -sharply%4:02:00:: 00049947 1 14 -sharply%4:02:01:: 00211651 2 3 -sharply%4:02:02:: 00503102 3 2 -sharply%4:02:03:: 00429534 4 0 -sharpness%1:07:00:: 04643099 7 0 -sharpness%1:07:01:: 04705324 5 0 -sharpness%1:07:02:: 04992834 3 0 -sharpness%1:07:03:: 04702688 6 0 -sharpness%1:07:04:: 05171978 2 0 -sharpness%1:07:05:: 04720226 4 0 -sharpness%1:09:01:: 05620468 1 1 -sharpshoot%2:33:00:: 01135501 1 0 -sharpshooter%1:06:00:: 04185656 3 0 -sharpshooter%1:18:00:: 10294953 2 0 -sharpshooter%1:18:01:: 10586793 1 0 -sharptail_mola%1:05:00:: 02656969 1 0 -sharpy%1:18:00:: 09894909 2 0 -sharpy%1:18:01:: 10040945 1 0 -shasta%1:10:00:: 06921951 3 0 -shasta%1:17:00:: 09431569 2 0 -shasta%1:18:00:: 09668437 1 0 -shasta_daisy%1:20:00:: 11990313 1 0 -shasta_salamander%1:05:00:: 01638194 1 0 -shastan%1:10:00:: 06921593 1 0 -shatter%2:30:00:: 00333758 1 12 -shatter%2:30:01:: 00333907 3 0 -shatter%2:30:02:: 00334050 2 0 -shattered%5:00:00:destroyed:00 00736671 1 0 -shattering%1:04:00:: 00376825 1 0 -shattering%5:00:00:loud:00 01453984 1 1 -shatterproof%5:00:00:unbreakable:00 00710097 1 0 -shatterproof_glass%1:27:00:: 14882370 1 0 -shave%1:04:00:: 00254769 1 0 -shave%2:29:00:: 00037298 1 8 -shave%2:35:00:: 01248597 6 0 -shave%2:35:01:: 01248782 2 1 -shave%2:35:02:: 01249490 4 0 -shave%2:35:03:: 01249147 5 0 -shave%2:40:00:: 02349597 3 0 -shaved%3:00:00:: 02153472 1 2 -shaven%3:00:00:: 02153472 1 1 -shaver%1:06:00:: 04185804 3 0 -shaver%1:18:00:: 09917593 2 0 -shaver%1:18:01:: 10586903 1 0 -shavian%1:18:00:: 10586998 1 0 -shavian%3:01:00:: 03027213 1 0 -shaving%1:04:00:: 00254769 1 3 -shaving%1:04:01:: 00150762 3 0 -shaving%1:17:00:: 09385137 2 1 -shaving-brush_tree%1:20:00:: 12192132 1 0 -shaving_brush%1:06:00:: 04185946 1 0 -shaving_cream%1:06:00:: 04186051 1 0 -shaving_foam%1:06:00:: 04186268 1 0 -shaving_soap%1:06:00:: 04186051 1 0 -shavous%1:28:00:: 15197042 1 0 -shavuot%1:28:00:: 15197042 1 0 -shavuoth%1:28:00:: 15197042 1 0 -shaw%1:18:00:: 11295936 4 0 -shaw%1:18:01:: 11296139 3 0 -shaw%1:18:02:: 11296279 2 0 -shaw%1:18:03:: 11296429 1 0 -shawl%1:06:00:: 04186455 1 2 -shawm%1:06:00:: 04186624 1 0 -shawn%1:18:00:: 11296602 1 0 -shawnee%1:10:00:: 06912149 2 0 -shawnee%1:18:00:: 09668562 1 0 -shawnee_cake%1:13:00:: 07689217 1 0 -shawnee_salad%1:20:00:: 12834938 1 0 -shawny%1:20:00:: 12834938 1 0 -shawwal%1:28:00:: 15218551 1 0 -shay%1:06:00:: 03002555 1 0 -shaytan%1:18:00:: 09544746 1 0 -she-bop%2:35:00:: 01430633 1 0 -she-devil%1:18:00:: 10587536 1 0 -she-goat%1:05:00:: 02416964 1 0 -she-oak%1:20:00:: 12225222 1 0 -sheaf%1:06:00:: 02919414 1 1 -shear%1:06:00:: 04186709 2 0 -shear%1:19:00:: 11506738 1 21 -shear%2:30:02:: 00587124 4 0 -shear%2:35:00:: 01320513 1 3 -shear%2:35:01:: 01320816 3 0 -shear%2:35:02:: 01560369 2 0 -sheared%3:00:00:: 02154422 1 0 -sheared%5:00:00:cut:03 00663807 2 0 -shearer%1:18:00:: 10587089 3 0 -shearer%1:18:01:: 10587227 2 0 -shearer%1:18:02:: 11296775 1 0 -shearing%1:04:00:: 00360242 1 0 -shears%1:06:00:: 04186848 1 0 -shearwater%1:05:00:: 02060411 1 0 -sheatfish%1:05:00:: 02518324 1 0 -sheath%1:06:00:: 04187061 1 2 -sheath%1:06:01:: 03062015 3 1 -sheath%1:08:00:: 05238036 2 1 -sheath_knife%1:06:00:: 02976123 1 0 -sheath_pile%1:06:00:: 04189651 1 0 -sheathe%2:35:00:: 01581362 2 0 -sheathe%2:35:01:: 01581635 1 0 -sheathe%2:35:02:: 01578714 3 0 -sheathed%3:00:00:: 02154756 1 0 -sheathing%1:06:00:: 04187233 1 0 -shebang%1:14:00:: 08436452 1 0 -shebat%1:28:00:: 15215270 1 0 -shebeen%1:13:02:: 07888378 1 0 -shed%1:06:00:: 04187547 1 1 -shed%2:29:00:: 00009147 4 0 -shed%2:35:00:: 01541579 3 0 -shed%2:35:01:: 01513430 1 5 -shed%2:35:02:: 01541803 2 3 -shed%3:00:00:: 01758582 1 0 -shed_blood%2:29:00:: 00074834 2 0 -shed_blood%2:35:00:: 01616151 1 0 -shed_light_on%2:31:00:: 00621058 1 2 -shedder%1:18:00:: 10587378 1 0 -shedding%1:19:00:: 11445564 2 0 -shedding%1:22:00:: 13555599 1 0 -sheen%1:07:00:: 04954683 1 0 -sheeny%1:18:00:: 09682122 1 0 -sheeny%5:00:00:bright:00 00281657 1 0 -sheep%1:05:00:: 02411705 1 14 -sheep%1:18:00:: 10587894 3 0 -sheep%1:18:01:: 10588074 2 1 -sheep's_fescue%1:20:00:: 12121835 1 0 -sheep's_sorrel%1:20:00:: 12604460 1 0 -sheep-tick%1:05:01:: 02199170 1 0 -sheep-tick%1:05:02:: 01778217 2 0 -sheep_bell%1:06:00:: 04187751 1 0 -sheep_botfly%1:05:00:: 02194750 1 0 -sheep_dip%1:27:00:: 15039179 1 0 -sheep_dog%1:05:00:: 02104523 1 0 -sheep_fescue%1:20:00:: 12121835 1 0 -sheep_frog%1:05:00:: 01653509 1 0 -sheep_gadfly%1:05:00:: 02194750 1 0 -sheep_ked%1:05:00:: 02199170 1 0 -sheep_laurel%1:20:00:: 12238073 1 0 -sheep_pen%1:06:00:: 03376159 1 0 -sheep_plant%1:20:01:: 12006306 1 0 -sheep_plant%1:20:02:: 11975658 2 0 -sheep_polypore%1:20:00:: 13050940 1 0 -sheep_rot%1:26:00:: 14265006 1 1 -sheep_sorrel%1:20:00:: 12604460 1 0 -sheep_tick%1:05:01:: 02199170 1 0 -sheep_tick%1:05:02:: 01778217 2 0 -sheepcote%1:06:00:: 03376159 1 0 -sheepdog%1:05:00:: 02104523 1 0 -sheepfold%1:06:00:: 03376159 1 0 -sheepherder%1:18:00:: 10587605 1 0 -sheepish%5:00:00:ashamed:00 00154837 2 0 -sheepish%5:00:00:docile:00 02329075 1 0 -sheepishly%4:02:00:: 00451932 1 0 -sheepishness%1:12:00:: 07507560 1 0 -sheeplike%5:00:00:docile:00 02329075 1 2 -sheepman%1:18:00:: 10587806 1 1 -sheepman%1:18:01:: 10587605 2 0 -sheeprun%1:06:00:: 04188064 1 0 -sheepshank%1:06:00:: 04187885 1 0 -sheepshead%1:05:00:: 02592055 1 0 -sheepshead_porgy%1:05:00:: 02592734 1 0 -sheepshearing%1:04:00:: 00360404 3 0 -sheepshearing%1:04:02:: 00518555 2 0 -sheepshearing%1:28:00:: 15238371 1 0 -sheepskin%1:10:00:: 06478582 3 0 -sheepskin%1:27:00:: 14763508 1 1 -sheepskin%1:27:01:: 14759003 2 0 -sheepskin_coat%1:06:00:: 04187970 1 0 -sheepwalk%1:06:00:: 04188064 1 0 -sheer%2:38:00:: 02033295 1 1 -sheer%2:38:01:: 01841471 2 0 -sheer%4:02:00:: 00452052 2 0 -sheer%4:02:01:: 00452126 1 0 -sheer%5:00:00:complete:00 00520892 1 6 -sheer%5:00:00:pure:02 01907103 2 2 -sheer%5:00:00:steep:00 01145422 3 1 -sheer%5:00:00:thin:01 02413390 4 0 -sheesha%1:06:00:: 03533014 1 0 -sheet%1:06:00:: 04188179 3 3 -sheet%1:06:02:: 04188368 7 0 -sheet%1:06:03:: 04188643 6 0 -sheet%1:06:04:: 04127904 8 0 -sheet%1:10:00:: 06255777 2 11 -sheet%1:10:01:: 06267893 5 0 -sheet%1:17:00:: 09432060 1 12 -sheet%1:25:00:: 13861050 4 0 -sheet%2:35:00:: 01338501 2 0 -sheet%2:43:00:: 02758262 1 0 -sheet-metal_work%1:04:00:: 00618119 1 0 -sheet_anchor%1:06:00:: 04188985 1 0 -sheet_bend%1:06:00:: 04189092 1 0 -sheet_glass%1:06:00:: 03961070 1 0 -sheet_iron%1:06:00:: 04189392 1 0 -sheet_lighting%1:11:00:: 07413452 1 0 -sheet_metal%1:06:00:: 04189482 1 2 -sheet_music%1:10:00:: 06816106 1 1 -sheet_of_paper%1:10:00:: 06255777 1 3 -sheet_pile%1:06:00:: 04189651 1 0 -sheet_piling%1:06:00:: 04189651 1 0 -sheet_web%1:06:00:: 04189913 1 0 -sheeting%1:06:00:: 04189282 1 0 -sheetlike%5:00:00:stratified:00 00208872 1 0 -sheetrock%1:06:00:: 04189816 1 0 -sheffield%1:15:00:: 08880375 1 0 -shegetz%1:18:00:: 10588182 1 0 -sheik%1:18:00:: 10588357 1 0 -sheik%1:18:01:: 09991026 2 0 -sheika%1:18:00:: 10588519 1 0 -sheikdom%1:15:00:: 08558770 1 0 -sheikh%1:18:00:: 10588357 1 0 -sheikha%1:18:00:: 10588519 1 0 -sheikhdom%1:15:00:: 08558770 1 0 -shekel%1:23:00:: 13706310 1 0 -shekels%1:21:00:: 13385216 1 0 -shel_silverstein%1:18:00:: 11300465 1 0 -shelby_silverstein%1:18:00:: 11300465 1 0 -sheldrake%1:05:01:: 01849466 2 0 -sheldrake%1:05:02:: 01854415 1 0 -shelduck%1:05:00:: 01849676 1 0 -shelf%1:06:00:: 04190052 1 8 -shelf%1:17:00:: 09337253 2 0 -shelf_bracket%1:06:00:: 04190376 1 0 -shelf_fungus%1:20:00:: 13050397 1 0 -shelf_ice%1:17:00:: 09432163 1 0 -shelf_life%1:28:00:: 15141894 1 0 -shelfful%1:23:00:: 13769428 1 0 -shelflike%3:01:00:: 03136242 1 0 -shelfy%5:00:00:shallow:01 00692548 1 0 -shell%1:05:01:: 01904182 10 0 -shell%1:05:02:: 01903756 3 2 -shell%1:06:00:: 04190464 1 14 -shell%1:06:01:: 03959701 9 0 -shell%1:06:02:: 04190747 8 0 -shell%1:06:03:: 04190997 7 0 -shell%1:17:01:: 09432283 6 0 -shell%1:17:02:: 09432430 5 0 -shell%1:20:00:: 11683556 4 0 -shell%1:27:00:: 14758536 2 3 -shell%2:30:00:: 00197744 7 0 -shell%2:30:06:: 00181258 8 0 -shell%2:33:00:: 01135922 1 1 -shell%2:33:03:: 01101913 6 0 -shell%2:35:07:: 01406195 4 0 -shell%2:35:08:: 01316813 5 0 -shell%2:35:09:: 01513710 3 0 -shell%2:36:00:: 01759021 2 0 -shell-flower%1:20:01:: 12881105 1 0 -shell-less%3:00:00:: 02597007 1 0 -shell_bean%1:13:00:: 07728804 2 0 -shell_bean%1:20:00:: 12557995 1 0 -shell_bean_plant%1:20:00:: 12557995 1 0 -shell_collecting%1:04:00:: 01015689 1 0 -shell_corporation%1:14:00:: 08384201 1 0 -shell_entity%1:14:00:: 08384201 1 0 -shell_game%1:04:00:: 00780731 1 0 -shell_ginger%1:20:00:: 12357485 1 0 -shell_jacket%1:06:00:: 03751269 1 0 -shell_out%2:40:00:: 02294436 1 0 -shell_parakeet%1:05:00:: 01821869 1 0 -shell_plating%1:06:00:: 04191346 1 0 -shell_shock%1:26:00:: 14388596 1 0 -shell_stitch%1:06:00:: 04191502 1 0 -shell_stitch%2:36:00:: 01673007 1 0 -shellac%1:06:01:: 04191150 2 0 -shellac%1:27:00:: 14701628 1 0 -shellac%2:35:00:: 01270589 1 0 -shellac_varnish%1:06:00:: 04191150 1 0 -shellac_wax%1:27:00:: 15095639 1 0 -shellack%2:35:00:: 01270589 1 0 -shellbark%1:20:00:: 12321873 1 0 -shellbark_hickory%1:20:00:: 12321873 1 0 -shelled%3:00:00:: 02596462 1 0 -sheller%1:18:00:: 10588601 1 0 -shelley%1:18:00:: 11296914 2 0 -shelley%1:18:01:: 11297032 1 0 -shellfire%1:04:00:: 00124536 1 0 -shellfish%1:05:01:: 01940736 2 0 -shellfish%1:13:00:: 07783210 1 0 -shellflower%1:20:01:: 12881105 1 0 -shellflower%1:20:02:: 12357485 2 0 -shelling%1:04:00:: 00987863 1 0 -shellproof%5:00:00:invulnerable:00 02525732 1 0 -shelter%1:06:00:: 04191595 1 56 -shelter%1:06:01:: 04191943 2 3 -shelter%1:06:02:: 04192238 5 0 -shelter%1:21:00:: 13313733 4 0 -shelter%1:26:00:: 14539960 3 0 -shelter%2:40:00:: 02271817 2 0 -shelter%2:42:00:: 02656390 1 1 -shelter_deck%1:06:00:: 04566862 1 0 -shelter_tent%1:06:00:: 04025508 1 0 -shelterbelt%1:06:00:: 04586072 1 0 -sheltered%5:00:00:invulnerable:00 02526611 1 0 -sheltered_workshop%1:06:00:: 04192361 1 1 -shelton_jackson_lee%1:18:00:: 11124647 1 0 -shelve%2:35:10:: 01497750 2 0 -shelve%2:42:00:: 02642814 1 1 -shelver%1:18:00:: 10588724 1 0 -shelvy%5:00:00:shallow:01 00692548 1 0 -shem%1:18:00:: 10588860 1 0 -shema%1:10:00:: 07034035 1 0 -shemozzle%1:26:00:: 13976907 1 0 -shen-pao%1:18:00:: 09533910 1 0 -shenandoah_national_park%1:15:00:: 08609131 1 0 -shenandoah_river%1:17:00:: 09431744 1 0 -shenandoah_valley%1:17:00:: 09432549 1 0 -shenanigan%1:04:00:: 00736375 1 2 -shenanigan%1:04:01:: 00752954 2 1 -shenyang%1:15:00:: 08728462 1 0 -shepard%1:18:00:: 11297263 2 0 -shepard%1:18:01:: 11297457 1 0 -shepherd%1:18:00:: 10587605 2 1 -shepherd%1:18:01:: 10588965 1 1 -shepherd%2:41:00:: 02550044 2 0 -shepherd%2:41:01:: 02550168 1 1 -shepherd's_clock%1:20:00:: 12027658 1 0 -shepherd's_crook%1:06:00:: 03134118 1 0 -shepherd's_pie%1:13:00:: 07877062 1 0 -shepherd's_pipe%1:06:01:: 03355468 2 0 -shepherd's_pipe%1:06:02:: 03800371 1 0 -shepherd's_pouch%1:20:00:: 11881189 1 0 -shepherd's_purse%1:20:00:: 11881189 1 0 -shepherd_dog%1:05:00:: 02104523 1 0 -shepherdess%1:18:00:: 10589066 1 0 -sheraton%1:06:00:: 04192521 1 0 -sherbert%1:13:00:: 07615289 1 0 -sherbet%1:13:00:: 07615289 1 0 -sherd%1:06:00:: 04184701 1 0 -sheridan%1:18:00:: 11297595 1 0 -sheriff%1:18:00:: 10589140 1 7 -sheriff's_sale%1:10:00:: 06528557 1 0 -sherlock%1:18:00:: 10476671 1 0 -sherlock_holmes%1:18:00:: 09604451 1 6 -sherman%1:15:00:: 09146324 4 0 -sherman%1:17:00:: 09431902 3 0 -sherman%1:18:00:: 11297756 2 0 -sherman%1:18:01:: 11297983 1 0 -sherpa%1:18:00:: 09733028 1 0 -sherrington%1:18:00:: 11298240 1 0 -sherry%1:13:00:: 07900958 1 3 -sherwood%1:18:00:: 11298403 1 0 -sherwood_anderson%1:18:00:: 10817935 1 0 -sherwood_forest%1:17:00:: 09432785 1 0 -shetland%1:05:00:: 02105855 2 0 -shetland%1:15:00:: 08954057 1 0 -shetland_islands%1:15:00:: 08954057 1 0 -shetland_pony%1:05:00:: 02382635 1 0 -shetland_sheep_dog%1:05:00:: 02105855 1 0 -shetland_sheepdog%1:05:00:: 02105855 1 0 -shetland_wool%1:27:00:: 15039335 1 0 -shevat%1:28:00:: 15215270 1 0 -shevchenko%1:18:00:: 11298519 1 0 -shew%2:31:00:: 00664788 1 0 -shf%1:07:00:: 05057917 1 0 -shi'ite%1:18:00:: 09683306 1 0 -shi'ite_muslim%1:18:00:: 09683306 1 0 -shia%1:14:00:: 08096301 1 0 -shia_muslim%1:18:00:: 09683306 1 0 -shiah%1:14:00:: 08096301 1 0 -shiah_islam%1:14:00:: 08096301 1 0 -shiatsu%1:04:00:: 00710338 1 0 -shibah%1:28:00:: 15296489 1 0 -shibboleth%1:10:00:: 07082444 2 1 -shibboleth%1:10:01:: 07152259 1 1 -shield%1:05:00:: 01903756 3 0 -shield%1:06:01:: 04192698 2 2 -shield%1:06:02:: 04192858 1 3 -shield%2:33:00:: 01130169 1 5 -shield%2:39:00:: 02148604 2 0 -shield-shaped%5:00:00:simple:01 02170199 1 0 -shield_fern%1:20:00:: 13192625 1 0 -shield_of_david%1:10:00:: 06882333 1 0 -shielded%5:00:00:protected:00 01885866 1 2 -shielder%1:18:00:: 09614684 1 0 -shielding%1:04:00:: 00818362 1 3 -shielding%1:06:00:: 04193035 2 2 -shielding%1:06:01:: 04193179 3 0 -shift%1:04:00:: 00331655 5 2 -shift%1:04:01:: 00196084 4 3 -shift%1:06:00:: 03013438 10 0 -shift%1:06:01:: 03013580 9 0 -shift%1:06:02:: 04193377 8 0 -shift%1:11:00:: 07444668 1 5 -shift%1:11:01:: 07359599 2 5 -shift%1:14:00:: 08218393 7 0 -shift%1:17:00:: 09278537 6 0 -shift%1:28:00:: 15291801 3 3 -shift%2:30:00:: 00380159 1 13 -shift%2:30:01:: 00548913 7 1 -shift%2:30:02:: 00550117 13 0 -shift%2:30:03:: 00555447 5 2 -shift%2:30:04:: 00555654 6 1 -shift%2:30:11:: 00551065 12 0 -shift%2:30:12:: 00584410 11 0 -shift%2:32:04:: 01005049 10 0 -shift%2:38:00:: 01883344 2 12 -shift%2:38:01:: 01893988 4 2 -shift%2:38:02:: 02012344 3 5 -shift%2:38:03:: 01864634 9 0 -shift%2:38:04:: 01884974 8 0 -shift_key%1:06:00:: 04193377 1 0 -shift_register%1:06:00:: 04193552 1 0 -shifter%1:06:00:: 03432129 2 0 -shifter%1:18:00:: 10556124 1 0 -shiftily%4:02:00:: 00452213 1 0 -shiftiness%1:07:00:: 04875728 1 0 -shiftiness%1:07:01:: 04734698 2 0 -shifting%1:04:00:: 00331655 1 0 -shifting%5:00:00:loose:02 00503664 3 0 -shifting%5:00:00:unsteady:00 02305176 2 0 -shifting%5:00:00:variable:00 02505308 1 2 -shiftless%5:00:00:unambitious:00 00105197 1 0 -shiftlessness%1:07:00:: 04637571 1 0 -shifty%5:00:00:unsteady:00 02305176 2 0 -shifty%5:00:00:untrustworthy:00 02466382 1 0 -shiga_bacillus%1:05:00:: 01370465 1 0 -shigella%1:05:00:: 01370260 1 0 -shigella_dysentariae%1:05:00:: 01370465 1 0 -shigellosis%1:26:00:: 14184608 1 0 -shih-tzu%1:05:00:: 02086240 1 0 -shiism%1:09:00:: 06236309 1 0 -shiitake%1:20:00:: 13001930 1 0 -shiitake_mushroom%1:20:00:: 13001930 1 0 -shiite%1:18:00:: 09683306 1 0 -shiite_muslim%1:18:00:: 09683306 1 0 -shikoku%1:15:00:: 08921613 1 0 -shiksa%1:18:00:: 10589243 1 0 -shikse%1:18:00:: 10589243 1 0 -shill%1:18:00:: 10589402 1 0 -shill%2:41:00:: 02575536 1 0 -shillalah%1:06:00:: 04193742 1 0 -shillelagh%1:06:00:: 04193742 1 0 -shilling%1:21:00:: 13389763 6 0 -shilling%1:23:01:: 13686877 5 0 -shilling%1:23:02:: 13706628 4 0 -shilling%1:23:03:: 13706864 3 0 -shilling%1:23:04:: 13707106 2 0 -shilling%1:23:05:: 13707346 1 0 -shillyshally%1:04:00:: 01067362 1 0 -shillyshally%2:42:00:: 02706386 1 0 -shillyshally%2:42:02:: 02642238 2 0 -shiloh%1:04:00:: 01294502 1 0 -shim%1:06:00:: 04193883 1 1 -shimchath_torah%1:28:00:: 15197302 1 0 -shimmer%1:11:00:: 07411851 1 0 -shimmer%2:42:00:: 02706478 2 0 -shimmer%2:43:00:: 02763450 1 0 -shimmery%5:00:00:bright:00 00283167 1 0 -shimmy%1:04:00:: 00533535 3 0 -shimmy%1:06:00:: 03013580 2 0 -shimmy%1:11:00:: 07364851 1 0 -shimmy%2:36:00:: 01755389 2 1 -shimmy%2:38:00:: 01871546 1 1 -shin%1:08:00:: 05594367 4 0 -shin%1:08:01:: 05562902 1 2 -shin%1:10:00:: 06838975 3 0 -shin%1:13:00:: 07657440 2 0 -shin%2:38:00:: 01921772 1 0 -shin_bet%1:14:00:: 08347457 1 0 -shin_bone%1:08:00:: 05594367 2 0 -shin_bone%1:13:00:: 07657440 1 0 -shin_guard%1:06:00:: 04194127 1 0 -shin_splints%1:26:00:: 14568986 1 0 -shina%1:10:00:: 06972558 1 0 -shinbone%1:08:00:: 05594367 1 1 -shindig%1:14:00:: 08253045 1 0 -shindy%1:14:00:: 08253045 1 0 -shine%1:07:00:: 04953954 1 0 -shine%2:35:00:: 01245637 10 0 -shine%2:37:00:: 01829747 9 0 -shine%2:39:01:: 02162947 3 5 -shine%2:39:06:: 02161530 6 1 -shine%2:42:00:: 02611976 8 0 -shine%2:42:01:: 02733334 4 3 -shine%2:42:04:: 02655958 5 1 -shine%2:43:00:: 02763740 2 6 -shine%2:43:01:: 02765924 1 9 -shine%2:43:03:: 02763283 7 0 -shine_at%2:42:00:: 02674447 1 0 -shine_up%2:37:09:: 01804753 1 0 -shiner%1:05:00:: 01441425 4 0 -shiner%1:05:02:: 02624551 3 0 -shiner%1:17:00:: 09432990 2 0 -shiner%1:26:00:: 14289387 1 0 -shingle%1:06:01:: 04194009 3 0 -shingle%1:27:00:: 15039445 1 0 -shingle%1:27:02:: 14699574 2 0 -shingle%2:35:00:: 01234223 1 0 -shingle_oak%1:20:00:: 12272883 1 0 -shingle_tree%1:20:00:: 12490490 1 0 -shingler%1:18:00:: 10589566 1 0 -shingles%1:26:00:: 14132829 1 0 -shingling%1:04:00:: 00618264 2 0 -shingling%1:27:00:: 14700280 1 0 -shingly%5:00:00:rough:00 02242223 1 0 -shingon%1:09:00:: 06242237 1 0 -shininess%1:07:00:: 04954683 1 0 -shining%1:04:00:: 00578795 1 1 -shining%5:00:00:superior:02 02344241 1 2 -shining%5:00:01:bright:00 00281657 3 0 -shining%5:00:02:polished:00 01812237 2 0 -shining_clubmoss%1:20:00:: 13222877 1 0 -shining_path%1:14:00:: 08044676 1 0 -shining_sumac%1:20:00:: 12763762 1 0 -shining_willow%1:20:00:: 12729164 1 0 -shinleaf%1:20:02:: 12256708 1 0 -shinney%1:04:00:: 00468299 1 0 -shinny%1:04:00:: 00468299 1 0 -shinny%2:38:00:: 01921772 1 0 -shinpad%1:06:00:: 04194127 1 0 -shinplaster%1:21:00:: 13385466 1 0 -shinto%1:09:00:: 06243347 2 0 -shinto%1:14:00:: 08100320 1 0 -shinto%3:01:00:: 02924739 1 0 -shintoism%1:09:00:: 06243347 1 0 -shintoist%1:18:00:: 09685806 1 0 -shintoist%3:01:00:: 02924739 1 0 -shintoistic%3:01:00:: 02924739 1 0 -shiny%3:00:04:: 01119421 2 0 -shiny%5:00:00:bright:00 00281657 1 2 -shiny%5:00:00:polished:00 01812237 3 0 -shiny_lyonia%1:20:00:: 12241426 1 0 -ship%1:06:00:: 04194289 1 49 -ship%2:35:09:: 01496978 5 0 -ship%2:38:00:: 01950798 1 7 -ship%2:38:01:: 01979462 3 0 -ship%2:38:03:: 01847582 4 0 -ship%2:41:00:: 02409838 2 0 -ship's_bell%1:28:00:: 15227593 1 0 -ship's_boat%1:06:00:: 04409128 1 0 -ship's_chandler%1:18:00:: 10590638 1 0 -ship's_company%1:14:00:: 08219059 1 0 -ship's_galley%1:06:00:: 03412220 1 0 -ship's_officer%1:18:00:: 10371741 1 0 -ship's_papers%1:10:00:: 06501748 1 0 -ship-breaker%1:18:00:: 10589666 1 0 -ship-towed_long-range_acoustic_detection_system%1:06:00:: 04196925 1 0 -ship_biscuit%1:13:00:: 07694839 1 0 -ship_broker%1:18:00:: 10589785 1 0 -ship_builder%1:18:00:: 10589930 2 0 -ship_builder%1:18:01:: 10590764 1 0 -ship_building%1:04:00:: 00912822 1 0 -ship_canal%1:06:00:: 04196337 1 0 -ship_chandler%1:18:00:: 10590042 1 0 -ship_money%1:21:00:: 13317137 1 0 -ship_of_the_line%1:06:00:: 03718212 1 0 -ship_route%1:06:00:: 04163364 1 0 -shipboard%5:00:00:impermanent:00 01757782 1 0 -shipboard_duty%1:04:00:: 00732369 1 0 -shipboard_soldier%1:18:00:: 10294139 1 0 -shipboard_system%1:06:00:: 04196080 1 0 -shipbuilder%1:14:00:: 08073992 3 0 -shipbuilder%1:18:00:: 10589930 2 0 -shipbuilder%1:18:01:: 10590764 1 0 -shipbuilding%1:04:00:: 00912822 1 1 -shipbuilding_industry%1:14:00:: 08074109 1 0 -shipload%1:23:00:: 13775523 1 0 -shipmate%1:18:00:: 10590146 1 0 -shipment%1:04:00:: 00061290 2 3 -shipment%1:06:00:: 02964389 1 3 -shipowner%1:18:00:: 10590239 1 0 -shipper%1:14:00:: 08481715 2 0 -shipper%1:18:00:: 10590339 1 0 -shipping%1:04:00:: 01105259 1 4 -shipping%1:06:00:: 04196502 2 0 -shipping_agent%1:18:00:: 10590452 1 0 -shipping_articles%1:10:00:: 06526486 1 0 -shipping_clerk%1:18:00:: 10590537 1 0 -shipping_company%1:14:00:: 08003717 1 0 -shipping_fever%1:26:00:: 14272620 1 6 -shipping_office%1:06:00:: 04196677 1 0 -shipping_pneumonia%1:26:00:: 14272620 1 0 -shipping_room%1:06:00:: 04196803 1 0 -shipshape%5:00:00:tidy:00 02423649 1 1 -shipside%1:15:00:: 08650391 1 0 -shipway%1:06:00:: 04565039 1 0 -shipway%1:06:01:: 04196337 2 0 -shipworm%1:05:00:: 01967094 1 0 -shipwreck%1:06:00:: 04197110 1 1 -shipwreck%1:11:00:: 07353075 3 0 -shipwreck%1:11:01:: 07478718 2 0 -shipwreck%2:35:00:: 01566038 4 0 -shipwreck%2:39:00:: 02111625 3 0 -shipwreck%2:41:00:: 02559613 1 0 -shipwreck%2:41:01:: 02529162 2 0 -shipwreck_survivor%1:18:00:: 09899438 1 0 -shipwright%1:18:00:: 10590764 1 0 -shipyard%1:06:00:: 04197235 1 1 -shiraz%1:15:00:: 08912279 1 0 -shire%1:05:00:: 02387346 2 0 -shire%1:15:00:: 08587828 1 0 -shire_horse%1:05:00:: 02387346 1 0 -shire_town%1:15:00:: 08547300 1 0 -shirer%1:18:00:: 11298634 1 0 -shirk%2:32:00:: 00811881 2 0 -shirk%2:41:01:: 02463704 1 2 -shirker%1:18:00:: 10608385 1 0 -shirking%1:04:00:: 00741478 1 1 -shirley_temple%1:18:00:: 10851987 1 0 -shirley_temple_black%1:18:00:: 10851987 1 0 -shirodkar's_operation%1:04:00:: 00691879 1 0 -shirr%2:30:00:: 00322395 1 0 -shirred_egg%1:13:00:: 07842605 1 0 -shirring%1:04:00:: 00246460 1 0 -shirt%1:06:00:: 04197391 1 15 -shirt%2:29:00:: 00049007 1 1 -shirt_button%1:06:00:: 04197781 1 0 -shirtdress%1:06:00:: 04197878 1 0 -shirtfront%1:06:00:: 03191561 2 0 -shirtfront%1:06:01:: 04198015 1 1 -shirting%1:06:00:: 04198233 1 0 -shirtlifter%1:18:00:: 10122645 1 0 -shirtmaker%1:18:00:: 10590903 1 0 -shirtsleeve%1:06:00:: 04198355 1 1 -shirtsleeves%1:26:00:: 14457976 1 1 -shirttail%1:06:00:: 04198453 2 0 -shirttail%1:10:00:: 06399870 1 0 -shirtwaist%1:06:00:: 04198562 1 0 -shirtwaister%1:06:00:: 04198562 1 0 -shirty%5:00:00:ill-natured:00 01138450 1 0 -shish_kebab%1:13:00:: 07869775 1 0 -shisha%1:06:00:: 03533014 1 0 -shit%1:07:00:: 05140793 6 0 -shit%1:10:00:: 06611376 2 1 -shit%1:18:00:: 09815188 5 0 -shit%1:22:00:: 13555775 4 0 -shit%1:23:00:: 13773047 3 0 -shit%1:27:00:: 14854581 1 1 -shit%2:29:00:: 00074038 2 0 -shit%2:32:09:: 00841986 1 0 -shite%1:27:00:: 14854581 1 0 -shithead%1:18:00:: 10039663 1 0 -shitless%5:00:00:afraid:00 00080861 1 0 -shitlist%1:10:00:: 06487260 1 0 -shittah%1:20:00:: 11756329 1 0 -shittah_tree%1:20:00:: 11756329 1 0 -shitter%1:18:00:: 10000007 1 0 -shittim%1:20:00:: 12772908 1 0 -shittimwood%1:20:00:: 11756522 3 0 -shittimwood%1:20:01:: 12773142 1 0 -shittimwood%1:20:02:: 12772908 2 0 -shitting%1:22:00:: 13459088 1 0 -shitty%5:00:00:bad:00 01127782 1 0 -shitwork%1:04:00:: 00732576 1 0 -shiv%1:06:00:: 04198722 1 0 -shiva%1:18:00:: 09528727 2 0 -shiva%1:28:00:: 15296489 1 0 -shivah%1:28:00:: 15296489 1 0 -shivaism%1:09:00:: 06238931 2 0 -shivaism%1:14:00:: 08097072 1 0 -shivaist%1:18:00:: 09685564 1 0 -shivaree%1:10:00:: 07054122 1 0 -shiver%1:04:00:: 00867983 1 1 -shiver%1:12:00:: 07520112 2 0 -shiver%2:29:00:: 00014201 2 4 -shiver%2:38:00:: 01888946 1 5 -shivering%1:26:00:: 14340287 1 1 -shivering%5:00:00:unsteady:00 02304565 1 1 -shivery%5:00:00:alarming:00 00194924 2 0 -shivery%5:00:00:cold:01 01254026 1 1 -shlemiel%1:18:00:: 10556825 1 0 -shlep%1:04:00:: 00310425 2 0 -shlep%1:18:00:: 10556953 1 0 -shlep%2:35:00:: 01453718 2 0 -shlep%2:38:00:: 01910873 1 0 -shlepper%1:18:00:: 10556953 1 0 -shlimazel%1:18:00:: 10557094 1 0 -shlock%1:06:00:: 04145735 1 0 -shlockmeister%1:18:00:: 10557246 1 0 -shmaltz%1:07:00:: 04627936 1 0 -shmear%1:14:00:: 08400605 1 0 -shmegegge%1:10:00:: 06609785 1 0 -shmo%1:18:00:: 10557404 1 0 -shmoose%2:32:00:: 01039162 1 0 -shmooze%1:10:00:: 07136469 1 0 -shmooze%2:32:00:: 01039162 1 0 -shmuck%1:18:00:: 10557404 1 0 -shnook%1:18:00:: 10557517 1 0 -shnorr%2:40:00:: 02270165 1 0 -shnorrer%1:18:00:: 10557699 1 0 -shoal%1:14:00:: 07995453 3 0 -shoal%1:17:01:: 09433134 2 0 -shoal%1:17:02:: 09433312 1 0 -shoal%2:30:00:: 00535988 2 0 -shoal%2:30:01:: 00536143 1 0 -shoaly%5:00:00:shallow:01 00692548 1 0 -shoat%1:05:00:: 02395694 1 0 -shock%1:04:00:: 00839292 3 2 -shock%1:04:01:: 01172252 2 2 -shock%1:06:00:: 04198797 10 0 -shock%1:11:00:: 07429276 5 1 -shock%1:11:01:: 07298982 6 1 -shock%1:11:02:: 07339098 9 0 -shock%1:12:01:: 07510625 1 6 -shock%1:14:00:: 07962707 7 0 -shock%1:14:01:: 07962500 8 0 -shock%1:26:00:: 14067076 4 1 -shock%2:29:00:: 00090186 7 0 -shock%2:29:01:: 00090386 6 0 -shock%2:35:00:: 01386308 5 0 -shock%2:35:01:: 01561713 4 0 -shock%2:37:00:: 01783022 3 0 -shock%2:37:01:: 01809064 1 4 -shock%2:37:02:: 01810447 2 3 -shock-absorbent%5:00:00:absorbent:00 00007331 1 0 -shock-headed%5:00:00:hairy:00 00215344 1 0 -shock_absorber%1:06:00:: 04198797 1 1 -shock_therapy%1:04:00:: 00706371 1 1 -shock_treatment%1:04:00:: 00706371 1 0 -shock_troops%1:14:00:: 08274004 1 0 -shock_wave%1:11:00:: 07347846 1 0 -shockable%3:00:00:: 02155675 1 0 -shocked%5:00:00:afraid:00 00078576 1 1 -shocker%1:10:00:: 07247803 2 0 -shocker%1:18:00:: 10590977 1 0 -shocking%5:00:00:immoral:00 01549964 2 0 -shocking%5:00:00:sensational:00 02101757 1 1 -shockingly%4:02:00:: 00452412 1 1 -shockingly%4:02:01:: 00452328 2 0 -shockley%1:18:00:: 11298810 1 0 -shod%3:00:00:: 02155936 1 2 -shod%3:00:04:: 02156934 2 0 -shodden%3:00:00:: 02155936 1 0 -shoddily%4:02:00:: 00452498 1 0 -shoddiness%1:07:00:: 05041320 2 0 -shoddiness%1:07:01:: 05140593 1 0 -shoddy%1:27:00:: 15104860 1 0 -shoddy%5:00:00:dishonest:00 01224253 3 0 -shoddy%5:00:00:inferior:02 02346351 1 0 -shoddy%5:00:00:weak:00 02325642 2 0 -shoe%1:06:00:: 04199027 1 27 -shoe%1:06:01:: 03539433 3 0 -shoe%1:06:02:: 02890940 4 0 -shoe%1:06:03:: 04200000 2 0 -shoe%2:29:00:: 00049770 1 0 -shoe-shop%1:06:00:: 04200800 1 0 -shoe_black%1:20:00:: 12179391 1 0 -shoe_bomb%1:06:00:: 04200138 1 0 -shoe_collar%1:06:00:: 03068707 1 0 -shoe_industry%1:14:00:: 08074225 1 0 -shoe_lace%1:06:00:: 04200637 1 0 -shoe_leather%1:27:00:: 14763879 1 1 -shoe_polish%1:27:00:: 15039568 1 0 -shoe_repairing%1:04:00:: 00617865 1 1 -shoe_shop%1:06:00:: 04200800 1 0 -shoe_store%1:06:00:: 04200800 1 1 -shoe_string%1:06:00:: 04200637 2 0 -shoe_string%1:23:00:: 13762178 1 0 -shoebill%1:05:00:: 02005399 1 0 -shoebird%1:05:00:: 02005399 1 0 -shoeblack%1:18:00:: 09866817 1 0 -shoeblack_plant%1:20:00:: 12179391 1 0 -shoebox%1:06:00:: 04200258 2 0 -shoebox%1:06:01:: 04200390 1 0 -shoed%3:00:00:: 02155936 1 0 -shoeful%1:23:00:: 13769549 1 1 -shoehorn%1:06:00:: 04200537 1 0 -shoehorn%2:30:00:: 00301544 1 0 -shoelace%1:06:00:: 04200637 1 1 -shoeless%5:00:00:unshod:00 02156686 1 0 -shoemaker%1:18:00:: 09933098 1 0 -shoemaker's_last%1:06:00:: 03644532 1 0 -shoemaking%1:04:00:: 00617865 1 0 -shoes%1:26:00:: 13926786 1 1 -shoeshine%1:04:00:: 00579082 2 0 -shoeshine%1:07:00:: 04701267 1 0 -shoestring%1:06:00:: 04200637 1 1 -shoestring%1:23:00:: 13762178 2 0 -shoestring_catch%1:04:00:: 00140264 1 0 -shoestring_fungus%1:20:00:: 13231678 1 0 -shoetree%1:06:00:: 04200908 1 0 -shoetree%2:30:00:: 00319111 1 0 -shofar%1:06:00:: 04201064 1 0 -shogi%1:04:00:: 00505726 1 0 -shogun%1:18:00:: 10591072 1 0 -shogunate%1:14:00:: 08440630 1 0 -shoji%1:06:00:: 04201297 1 0 -sholem_asch%1:18:00:: 10825554 1 0 -sholom_asch%1:18:00:: 10825554 1 0 -shona%1:10:00:: 06995135 2 0 -shona%1:18:00:: 10591239 1 0 -shona%3:01:00:: 03136371 1 0 -shoo%2:38:00:: 02003480 1 0 -shoo-in%1:11:00:: 07475107 1 0 -shoo_away%2:38:00:: 02003480 1 1 -shoo_fly%1:20:00:: 12907057 1 0 -shoo_off%2:38:00:: 02003480 1 0 -shoofly%1:06:00:: 04201435 2 0 -shoofly%1:18:00:: 10591347 1 0 -shoofly_pie%1:13:00:: 07625977 1 0 -shook%1:06:00:: 04201618 1 0 -shoot%1:04:00:: 00122954 2 0 -shoot%1:20:00:: 13164763 1 0 -shoot%2:29:00:: 00086320 20 0 -shoot%2:30:00:: 00357332 19 0 -shoot%2:31:00:: 00647508 18 0 -shoot%2:32:00:: 01003249 9 1 -shoot%2:32:01:: 01002740 4 7 -shoot%2:32:05:: 00985219 17 0 -shoot%2:33:00:: 01134781 3 26 -shoot%2:33:01:: 01137138 1 28 -shoot%2:33:06:: 01084466 16 0 -shoot%2:34:00:: 01195804 15 0 -shoot%2:35:00:: 01585523 12 0 -shoot%2:35:01:: 01597286 8 1 -shoot%2:35:03:: 01437144 14 0 -shoot%2:35:10:: 01519184 13 0 -shoot%2:38:00:: 02061495 6 3 -shoot%2:38:01:: 02055267 7 1 -shoot%2:38:03:: 02096047 5 3 -shoot%2:39:00:: 02123175 11 0 -shoot%2:41:00:: 02484570 2 27 -shoot%2:43:00:: 02768259 10 0 -shoot-'em-up%1:10:00:: 06616216 1 0 -shoot-down%1:04:00:: 01250569 1 2 -shoot_a_line%2:32:00:: 00883226 1 0 -shoot_craps%2:33:00:: 01138822 1 0 -shoot_down%2:38:00:: 01981279 2 1 -shoot_down%2:38:01:: 02055267 1 1 -shoot_down%2:41:00:: 02473688 3 0 -shoot_for%2:31:00:: 00705517 1 0 -shoot_one's_mouth_off%2:32:00:: 00825776 1 0 -shoot_the_breeze%2:32:00:: 01038666 1 0 -shoot_up%2:30:00:: 00432572 1 2 -shooter%1:06:00:: 04396093 1 1 -shooter%1:18:00:: 10593115 2 0 -shooter%1:18:01:: 10152083 5 0 -shooter%1:18:02:: 10591481 4 0 -shooter%1:18:03:: 10591678 3 0 -shooting%1:04:00:: 00122661 1 21 -shooting%1:04:01:: 00225150 2 4 -shooting_box%1:06:00:: 04202142 1 0 -shooting_brake%1:06:00:: 04201733 1 0 -shooting_gallery%1:06:00:: 04201845 2 0 -shooting_gallery%1:06:01:: 04201992 1 0 -shooting_iron%1:06:00:: 03948459 1 0 -shooting_lodge%1:06:00:: 04202142 1 0 -shooting_preserve%1:15:00:: 08587571 1 5 -shooting_range%1:06:00:: 04201845 1 0 -shooting_script%1:10:00:: 07012414 1 0 -shooting_star%1:19:00:: 11483990 1 0 -shooting_stick%1:06:00:: 04202282 1 0 -shootout%1:04:00:: 00124617 1 0 -shop%1:04:00:: 00892254 3 0 -shop%1:06:00:: 04202417 1 9 -shop%1:06:01:: 04603081 2 1 -shop%2:32:09:: 00841986 4 0 -shop%2:40:00:: 02325968 1 7 -shop%2:40:01:: 02326355 3 0 -shop%2:41:00:: 02466134 2 1 -shop_assistant%1:18:00:: 10548227 1 0 -shop_at%2:41:00:: 02466134 1 1 -shop_bell%1:06:00:: 04203356 1 0 -shop_boy%1:18:00:: 10591949 1 0 -shop_class%1:04:00:: 00892254 1 0 -shop_clerk%1:18:00:: 10548227 1 0 -shop_floor%1:06:00:: 04203514 1 0 -shop_girl%1:18:00:: 10592049 1 0 -shop_mechanic%1:18:00:: 10279018 1 0 -shop_steward%1:18:00:: 10592811 1 0 -shop_talk%1:10:00:: 07136578 1 0 -shop_window%1:06:00:: 03211789 1 0 -shopaholic%1:18:00:: 10591811 1 0 -shopfront%1:06:00:: 04203705 1 0 -shophar%1:06:00:: 04201064 1 0 -shopkeeper%1:18:00:: 10592152 1 1 -shoplift%2:40:00:: 02277303 1 0 -shoplifter%1:18:00:: 09866661 1 0 -shoplifting%1:04:00:: 00781480 1 0 -shopper%1:18:00:: 10592397 1 1 -shopper%1:18:01:: 10592595 2 0 -shopping%1:04:00:: 00081836 1 8 -shopping%1:06:00:: 04203889 2 0 -shopping_bag%1:06:00:: 04204081 1 0 -shopping_basket%1:06:00:: 04204238 1 0 -shopping_cart%1:06:00:: 04204347 1 0 -shopping_center%1:06:00:: 03965456 1 8 -shopping_centre%1:06:00:: 03965456 1 0 -shopping_list%1:10:00:: 06495516 1 0 -shopping_list%1:10:01:: 06491371 2 0 -shopping_mall%1:06:00:: 03965456 1 0 -shopsoiled%5:00:00:worn:00 02583467 1 0 -shopwalker%1:18:00:: 10097262 1 0 -shopwindow%1:06:00:: 03211789 1 0 -shopworn%5:00:00:unoriginal:00 01688757 2 0 -shopworn%5:00:00:worn:00 02583467 1 0 -shore%1:06:00:: 04204468 2 0 -shore%1:17:00:: 09433442 1 18 -shore%2:35:03:: 01219004 3 0 -shore%2:38:00:: 01981436 2 0 -shore%2:42:00:: 02710981 1 0 -shore_bird%1:05:00:: 02022684 1 0 -shore_boulder%1:17:00:: 09433721 1 0 -shore_duty%1:04:00:: 00732492 1 0 -shore_leave%1:28:00:: 15140080 1 0 -shore_patrol%1:14:00:: 08211475 1 0 -shore_pine%1:20:00:: 11615026 1 0 -shore_station%1:06:00:: 03812119 1 0 -shore_up%2:35:00:: 01219004 1 2 -shorea%1:20:00:: 12377328 1 0 -shorea_teysmanniana%1:20:00:: 12377494 1 0 -shorebird%1:05:00:: 02022684 1 0 -shoreline%1:17:00:: 09433839 1 0 -shoreward%3:00:00:: 00464195 1 0 -shoring%1:04:00:: 01017550 2 0 -shoring%1:06:00:: 04204468 1 0 -shoring_up%1:04:00:: 01017550 1 0 -shorn%3:00:00:: 02154422 1 0 -short%1:04:00:: 00723984 3 0 -short%1:06:00:: 04204619 1 3 -short%1:06:01:: 04204755 2 0 -short%2:36:00:: 01618884 2 0 -short%2:41:00:: 02572667 1 0 -short%3:00:00:: 02006031 5 0 -short%3:00:01:: 01436003 2 21 -short%3:00:02:: 01442186 1 43 -short%3:00:03:: 02386612 3 7 -short%3:00:04:: 01444230 7 0 -short%3:00:05:: 01444620 6 0 -short%4:02:00:: 00297319 7 0 -short%4:02:02:: 00452624 6 0 -short%4:02:03:: 00452708 5 0 -short%4:02:04:: 00061528 1 1 -short%4:02:05:: 00452810 4 0 -short%4:02:06:: 00452931 3 0 -short%4:02:07:: 00453009 2 0 -short%5:00:00:breakable:00 00709021 10 0 -short%5:00:00:discourteous:00 00640660 11 0 -short%5:00:00:improvident:00 01896046 9 0 -short%5:00:00:insufficient:00 02336904 4 3 -short%5:00:02:insufficient:00 02337329 8 0 -short's_aster%1:20:00:: 11935187 1 0 -short-beaked%5:00:00:beaked:00 00207133 1 0 -short-billed%5:00:00:beaked:00 00207133 1 0 -short-billed_marsh_wren%1:05:00:: 01585422 1 0 -short-bodied%5:00:00:bodied:00 00628687 1 0 -short-change%2:41:00:: 02572667 1 1 -short-change%2:41:01:: 02572119 2 0 -short-circuit%2:32:00:: 00811171 3 0 -short-circuit%2:36:00:: 01618884 2 0 -short-circuit%2:41:00:: 02558811 1 0 -short-dated%5:00:00:short:02 01443581 1 0 -short-eared%5:00:00:eared:00 00812710 1 0 -short-grass%1:20:00:: 12103894 1 0 -short-haired%5:00:00:hairy:00 00215468 1 0 -short-handed%5:00:00:inadequate:00 00052431 1 0 -short-handled%3:01:00:: 03136487 1 0 -short-headed%5:00:00:brachycephalic:00 00262328 1 0 -short-horned_grasshopper%1:05:00:: 02226821 1 0 -short-leaf_pine%1:20:00:: 11616260 1 0 -short-lived%5:00:00:impermanent:00 01756292 1 2 -short-nosed%5:00:00:nosed:00 01607572 1 0 -short-order%3:01:00:: 03136568 1 0 -short-range%5:00:00:short:01 01437037 2 0 -short-range%5:00:00:short:02 01443733 1 1 -short-run%5:00:00:short:02 01443842 1 2 -short-snouted%5:00:00:short:01 01437165 1 0 -short-spurred%3:00:00:: 02596342 1 0 -short-spurred_fragrant_orchid%1:20:00:: 12064591 1 0 -short-staffed%5:00:00:inadequate:00 00052431 1 0 -short-stalked%5:00:00:short:03 02387970 1 0 -short-staple_cotton%1:27:00:: 14870424 1 0 -short-stemmed%5:00:00:caulescent:00 00321691 1 0 -short-stop%1:06:00:: 04327544 1 0 -short-stop_bath%1:06:00:: 04327544 1 0 -short-tailed%5:00:00:caudate:00 00320378 1 0 -short-tailed_shrew%1:05:00:: 01892385 1 0 -short-tempered%5:00:00:ill-natured:00 01135914 1 0 -short-term%5:00:00:short:02 01443842 1 5 -short-term_memory%1:09:00:: 05760611 1 0 -short-toed_eagle%1:05:00:: 01610552 1 0 -short-winded%5:00:00:breathless:00 00268748 1 0 -short-winged%5:00:00:winged:00 02567593 1 0 -short_account%1:10:00:: 06641818 2 0 -short_account%1:26:00:: 13929336 1 0 -short_and_sweet%5:00:00:short:02 01443402 1 1 -short_aria%1:10:00:: 07049634 1 0 -short_bone%1:08:00:: 05280698 1 5 -short_circuit%1:06:00:: 04204755 1 0 -short_covering%1:04:00:: 00080096 1 0 -short_division%1:04:00:: 00871263 1 0 -short_gastric_artery%1:08:00:: 05346191 1 0 -short_hundredweight%1:23:00:: 13721177 1 0 -short_iron%1:06:00:: 04205062 1 0 -short_letter%1:10:00:: 06626286 1 0 -short_line%1:06:00:: 04205192 1 0 -short_list%1:10:00:: 06495625 1 0 -short_order%1:10:00:: 07279968 1 0 -short_pants%1:06:00:: 04205318 1 0 -short_ribs%1:13:00:: 07661845 1 0 -short_sale%1:04:00:: 00079908 1 0 -short_saphenous_vein%1:08:00:: 05380122 1 0 -short_selling%1:04:00:: 00079908 1 0 -short_shrift%1:10:00:: 07208184 1 0 -short_sleep%1:04:00:: 00858377 1 0 -short_sleeve%1:06:00:: 04205505 1 0 -short_story%1:10:00:: 06371999 1 3 -short_subject%1:10:00:: 06616314 1 0 -short_temper%1:12:00:: 07552549 1 0 -short_ton%1:23:00:: 13721529 1 0 -short_wave%1:19:00:: 11507174 1 0 -short_whist%1:04:00:: 00496167 1 0 -shortage%1:07:00:: 05114371 1 4 -shortage%1:26:00:: 14449865 2 2 -shortbread%1:13:00:: 07636020 1 0 -shortbread_cookie%1:13:00:: 07636020 1 0 -shortcake%1:13:00:: 07694659 1 0 -shortcoming%1:07:00:: 05162642 1 0 -shortcut%1:06:00:: 04204953 1 1 -shorten%2:30:00:: 00316494 4 0 -shorten%2:30:01:: 00316768 1 6 -shorten%2:30:02:: 00243900 2 3 -shorten%2:30:07:: 00201034 5 0 -shorten%2:30:09:: 00560893 3 0 -shortened%5:00:00:abridged:00 00004615 4 0 -shortened%5:00:00:short:02 01442597 2 0 -shortened%5:00:01:short:01 01436791 1 1 -shortened%5:00:02:short:01 01437472 3 0 -shortener%1:17:00:: 09433952 1 0 -shortening%1:04:00:: 00358931 2 0 -shortening%1:13:00:: 07672687 1 0 -shortfall%1:07:00:: 05114371 1 0 -shortfin_mako%1:05:00:: 01484285 1 0 -shortgrass%1:20:00:: 12103894 1 0 -shorthand%1:10:00:: 06350127 1 0 -shorthand%5:00:00:written:00 02285969 1 0 -shorthand_typist%1:18:00:: 10654015 1 0 -shorthorn%1:05:00:: 02407071 1 0 -shortia%1:20:00:: 12252168 1 0 -shortia_galacifolia%1:20:00:: 12252383 1 0 -shortish%5:00:00:short:01 01436968 1 0 -shortleaf_pine%1:20:00:: 11616260 1 0 -shortleaf_yellow_pine%1:20:00:: 11616260 1 0 -shortlist%1:10:00:: 06495625 1 0 -shortlist%2:31:00:: 00658798 1 0 -shortly%4:02:00:: 00033922 2 3 -shortly%4:02:01:: 00034189 1 6 -shortly%4:02:02:: 00297319 3 2 -shortly%4:02:03:: 00034308 5 0 -shortly%4:02:04:: 00289860 4 0 -shortness%1:07:00:: 04915462 6 0 -shortness%1:07:01:: 05002680 5 0 -shortness%1:07:02:: 05052832 4 0 -shortness%1:07:03:: 05133944 1 1 -shortness%1:07:04:: 05137938 3 0 -shortness%1:26:00:: 14450339 2 0 -shortness_of_breath%1:26:00:: 14370122 1 0 -shorts%1:06:00:: 04205318 1 0 -shorts%1:06:01:: 03234164 2 0 -shortsighted%3:00:00:: 02157226 2 0 -shortsighted%5:00:00:improvident:00 01896046 1 4 -shortsighted%5:00:00:imprudent:00 01899742 3 0 -shortsightedness%1:07:00:: 04894552 2 0 -shortsightedness%1:26:00:: 14553290 1 0 -shortstop%1:04:00:: 00723984 2 0 -shortstop%1:18:00:: 10592986 1 4 -shorttail_weasel%1:05:00:: 02442172 1 0 -shortwave_diathermy_machine%1:06:00:: 04205613 1 0 -shoshone%1:10:00:: 06914802 2 0 -shoshone%1:18:00:: 09668729 1 0 -shoshonean%1:10:00:: 06915313 1 0 -shoshonean_language%1:10:00:: 06915313 1 0 -shoshoni%1:18:00:: 09668729 1 0 -shoshonian%1:10:00:: 06915313 1 0 -shoshonian_language%1:10:00:: 06915313 1 0 -shostakovich%1:18:00:: 11299030 1 0 -shot%1:04:00:: 00122661 1 24 -shot%1:04:03:: 00697365 7 1 -shot%1:04:04:: 00788473 16 0 -shot%1:04:06:: 00565302 3 6 -shot%1:04:07:: 00103590 17 0 -shot%1:04:08:: 00788632 15 0 -shot%1:04:09:: 01175633 14 0 -shot%1:06:00:: 04205759 2 20 -shot%1:06:01:: 04248607 11 0 -shot%1:06:02:: 04205983 13 0 -shot%1:06:03:: 04206070 12 0 -shot%1:09:00:: 05803938 10 0 -shot%1:10:00:: 06767922 9 0 -shot%1:10:01:: 06614729 6 1 -shot%1:18:00:: 10593115 5 1 -shot%1:23:00:: 13773250 8 0 -shot%1:26:00:: 14485673 4 1 -shot%5:00:00:colorful:00 00403072 1 0 -shot_glass%1:06:00:: 04206225 1 0 -shot_hole%1:06:00:: 04206695 1 0 -shot_metal%1:27:00:: 15039703 1 0 -shot_put%1:11:00:: 07469975 1 0 -shot_putter%1:18:00:: 10593521 1 0 -shot_tower%1:06:00:: 04206790 1 0 -shote%1:05:00:: 02395694 1 0 -shotgun%1:06:00:: 04206356 1 2 -shotgun_shell%1:06:00:: 04206570 1 0 -shoulder%1:06:00:: 04206948 5 0 -shoulder%1:06:01:: 04207151 4 0 -shoulder%1:08:00:: 05548840 1 65 -shoulder%1:08:02:: 05549061 3 0 -shoulder%1:13:00:: 07661583 2 0 -shoulder%2:35:00:: 01238907 2 2 -shoulder%2:35:01:: 01239054 3 0 -shoulder%2:35:02:: 01239359 1 2 -shoulder-to-shoulder%4:02:00:: 00034500 1 0 -shoulder_bag%1:06:00:: 04207343 1 1 -shoulder_blade%1:08:00:: 05279688 1 2 -shoulder_board%1:06:00:: 04207473 1 0 -shoulder_bone%1:08:00:: 05279688 1 0 -shoulder_flash%1:10:00:: 06884790 1 0 -shoulder_girdle%1:08:00:: 05586280 1 0 -shoulder_holster%1:06:00:: 04207763 1 0 -shoulder_in%2:38:00:: 01874071 1 1 -shoulder_joint%1:08:00:: 05549061 1 0 -shoulder_mark%1:06:00:: 04207473 1 0 -shoulder_pad%1:06:00:: 04207903 1 0 -shoulder_patch%1:06:00:: 04208065 1 0 -shoulder_strap%1:06:00:: 04333500 1 0 -shoulder_vise%1:06:00:: 04598416 1 0 -shouldered%3:01:00:: 03021693 1 1 -shouldered_arch%1:06:00:: 04207596 1 0 -shout%1:10:00:: 07120524 1 3 -shout%2:32:00:: 00912473 1 39 -shout%2:32:01:: 00913065 2 18 -shout%2:32:08:: 00912048 3 2 -shout%2:32:12:: 00845299 4 0 -shout_down%2:37:00:: 01809784 1 0 -shout_out%2:32:00:: 00913065 1 1 -shout_out%2:32:03:: 00915265 2 0 -shouted%5:00:00:loud:00 01454244 1 0 -shouter%1:18:00:: 10533983 1 0 -shouting%1:10:00:: 07251779 1 2 -shouting%1:10:01:: 07123552 2 2 -shove%1:04:00:: 00113726 1 0 -shove%2:35:00:: 01584701 2 5 -shove%2:38:00:: 01871680 1 6 -shove%2:38:01:: 02094569 3 0 -shove-ha'penny%1:04:00:: 00505871 1 0 -shove-halfpenny%1:04:00:: 00505871 1 0 -shove_along%2:38:00:: 01849054 1 1 -shove_off%2:38:00:: 01849054 1 0 -shovel%1:06:00:: 04208210 1 2 -shovel%1:06:01:: 04208427 3 0 -shovel%1:06:02:: 03996416 4 0 -shovel%1:23:00:: 13769870 2 0 -shovel%2:35:00:: 01312810 1 1 -shovel_board%1:04:00:: 00505871 1 0 -shovel_hat%1:06:00:: 04208582 1 0 -shovel_in%2:34:00:: 01174099 2 0 -shovel_in%2:40:00:: 02290029 1 0 -shovelboard%1:04:00:: 00467536 1 0 -shoveler%1:05:00:: 01848976 2 0 -shoveler%1:18:00:: 10593618 1 0 -shovelful%1:23:00:: 13769870 1 0 -shovelhead%1:05:00:: 01495006 1 0 -shoveller%1:05:00:: 01848976 2 0 -shoveller%1:18:00:: 10593618 1 0 -shovelnose_catfish%1:05:00:: 02520147 1 0 -shover%1:18:00:: 10495421 1 0 -show%1:04:00:: 00520257 1 18 -show%1:04:01:: 00755277 4 0 -show%1:10:00:: 06619065 3 0 -show%1:10:03:: 06879521 2 9 -show%2:31:00:: 00664788 2 63 -show%2:32:00:: 01015244 3 57 -show%2:32:01:: 00923793 7 24 -show%2:32:02:: 00943837 6 24 -show%2:32:03:: 00923307 10 6 -show%2:32:04:: 00922867 9 7 -show%2:33:00:: 01086549 12 0 -show%2:36:00:: 01686956 5 32 -show%2:38:00:: 02000547 11 2 -show%2:39:00:: 02137132 4 43 -show%2:39:01:: 02139544 8 11 -show%2:39:02:: 02148788 1 136 -show-off%1:18:00:: 10070711 1 0 -show-stopper%1:07:00:: 04689942 2 0 -show-stopper%1:10:00:: 06892358 1 0 -show_bill%1:10:00:: 06793817 1 0 -show_biz%1:14:00:: 08067951 1 0 -show_business%1:14:00:: 08067951 1 0 -show_card%1:10:00:: 06793817 1 0 -show_me_state%1:15:00:: 09105821 1 0 -show_off%2:39:00:: 02141973 1 4 -show_the_door%2:35:00:: 01468948 1 0 -show_time%1:28:01:: 15295884 1 0 -show_trial%1:04:00:: 01197119 1 0 -show_up%2:30:00:: 00423702 1 8 -show_up%2:39:00:: 02139544 2 4 -show_window%1:06:00:: 03211789 2 0 -show_window%1:26:00:: 14516082 1 0 -showboat%1:06:00:: 04208760 1 0 -showcase%1:06:00:: 02975212 2 0 -showcase%1:26:00:: 14516082 1 2 -showdown%1:10:00:: 07181043 1 2 -shower%1:04:00:: 00257580 2 4 -shower%1:06:00:: 04208936 1 5 -shower%1:11:00:: 07363668 4 1 -shower%1:14:00:: 08255795 6 0 -shower%1:18:00:: 10070563 5 0 -shower%1:19:00:: 11502497 3 1 -shower%2:29:00:: 00035259 3 2 -shower%2:34:12:: 01184333 5 0 -shower%2:35:00:: 01372994 2 2 -shower%2:40:00:: 02264601 1 2 -shower%2:43:00:: 02757651 4 0 -shower_bath%1:04:00:: 00257580 2 0 -shower_bath%1:06:00:: 04209613 1 0 -shower_cap%1:06:00:: 04209133 1 0 -shower_curtain%1:06:00:: 04209239 1 0 -shower_down%2:43:00:: 02757651 1 0 -shower_room%1:06:00:: 04209509 1 2 -shower_stall%1:06:00:: 04209613 1 0 -showerhead%1:06:00:: 04209383 1 1 -showery%5:00:00:wet:01 02550333 1 0 -showgirl%1:18:00:: 09920901 1 0 -showily%4:02:00:: 00415277 1 0 -showily%4:02:01:: 00341051 2 0 -showiness%1:07:00:: 04699936 1 0 -showing%1:04:00:: 00521209 2 1 -showing%1:10:01:: 06888345 1 1 -showjumping%1:04:00:: 00450998 1 0 -showman%1:18:00:: 10593745 2 0 -showman%1:18:01:: 10594043 1 0 -showmanship%1:09:00:: 05640040 1 0 -showpiece%1:06:00:: 03069567 1 1 -showplace%1:15:00:: 08648917 1 0 -showroom%1:06:00:: 04209811 1 1 -showstopper%1:07:00:: 04689942 2 0 -showstopper%1:10:00:: 06892358 1 0 -showtime%1:28:00:: 15265518 1 0 -showy%5:00:00:attractive:01 00168039 4 0 -showy%5:00:00:colorful:03 00407420 3 0 -showy%5:00:00:ostentatious:00 01848701 1 1 -showy%5:00:00:theatrical:00 00796591 2 0 -showy_daisy%1:20:00:: 11967315 1 0 -showy_goldenrod%1:20:00:: 12018363 1 0 -showy_lady's-slipper%1:20:00:: 12056758 1 0 -showy_lady_slipper%1:20:00:: 12056758 1 0 -showy_milkweed%1:20:00:: 13235159 1 0 -showy_orchis%1:20:00:: 12044041 1 0 -showy_sunflower%1:20:00:: 11979187 1 0 -shrapnel%1:06:00:: 04210012 1 2 -shred%1:06:00:: 04045941 2 0 -shred%1:23:00:: 13773725 1 3 -shred%2:35:00:: 01573891 1 1 -shredded%5:00:00:cut:01 00661640 1 0 -shredder%1:06:00:: 04210120 1 0 -shreveport%1:15:00:: 09092352 1 0 -shrew%1:05:00:: 01891633 2 0 -shrew%1:18:00:: 10594147 1 0 -shrew-sized%5:00:00:sized:00 02224266 1 0 -shrew_mole%1:05:00:: 01890860 1 0 -shrewd%5:00:00:hard:02 01155603 2 0 -shrewd%5:00:00:smart:00 00438909 1 2 -shrewdly%4:02:00:: 00272587 1 1 -shrewdness%1:09:00:: 05621439 1 0 -shrewish%5:00:00:ill-natured:00 01138610 1 1 -shrewishly%4:02:00:: 00501063 1 0 -shrewishness%1:07:00:: 04642866 1 0 -shrewmouse%1:05:00:: 01891633 1 0 -shriek%1:10:00:: 07123012 1 4 -shriek%1:11:00:: 07393161 2 1 -shriek%2:32:00:: 00914420 1 4 -shrieked%3:44:00:: 03153653 1 1 -shrieking%1:10:00:: 07123012 1 1 -shrieking%1:11:00:: 07393161 2 0 -shrift%1:04:00:: 01039560 1 0 -shrike%1:05:00:: 01598588 1 0 -shrill%2:32:00:: 00914420 1 2 -shrill%5:00:00:colorful:00 00403982 3 0 -shrill%5:00:00:high:03 01214430 1 9 -shrill%5:00:00:imperative:00 00713853 2 0 -shrilling%1:11:00:: 07393589 1 0 -shrillness%1:07:00:: 04990021 2 0 -shrillness%1:07:01:: 05193621 1 0 -shrilly%4:02:00:: 00050075 1 2 -shrimp%1:05:00:: 01986806 3 0 -shrimp%1:13:00:: 07794159 2 0 -shrimp%1:18:00:: 10543544 1 0 -shrimp%2:33:00:: 01142070 1 0 -shrimp-fish%1:05:00:: 01457407 1 0 -shrimp_butter%1:13:00:: 07855907 1 0 -shrimp_cocktail%1:13:00:: 07582152 1 0 -shrimp_newburg%1:13:00:: 07870620 1 0 -shrimp_sauce%1:13:00:: 07839055 1 0 -shrimper%1:06:00:: 04210288 1 0 -shrimpfish%1:05:00:: 01457407 1 0 -shrimpy%5:00:00:small:00 01394558 1 0 -shrine%1:06:00:: 04210390 1 1 -shrine%2:35:00:: 01482958 1 0 -shrink%1:18:00:: 10488016 1 0 -shrink%2:30:00:: 00240571 4 1 -shrink%2:30:01:: 00241038 3 2 -shrink%2:30:02:: 00241689 1 3 -shrink%2:30:11:: 00152558 5 0 -shrink%2:38:00:: 02061069 2 2 -shrink-wrap%1:06:00:: 04210591 1 0 -shrink-wrapped_software%1:10:00:: 06587790 1 0 -shrink_back%2:38:00:: 02061366 1 2 -shrink_from%2:41:00:: 02463704 1 2 -shrinkable%3:00:00:: 02158089 1 0 -shrinkage%1:04:00:: 00781480 3 0 -shrinkage%1:07:00:: 05112215 2 0 -shrinkage%1:11:00:: 07313004 1 0 -shrinking%1:04:00:: 00360485 2 0 -shrinking%1:11:00:: 07313004 1 0 -shrinking_violet%1:18:00:: 10594715 1 0 -shrinkwrap%2:35:00:: 01284002 1 0 -shrive%2:32:00:: 00903711 1 0 -shrivel%2:30:00:: 00241689 1 0 -shrivel%2:30:11:: 00152558 2 0 -shrivel_up%2:30:00:: 00241689 1 0 -shriveled%5:00:00:decreased:00 00883345 3 0 -shriveled%5:00:00:dry:01 02553234 1 1 -shriveled%5:00:00:thin:03 00990442 2 0 -shrivelled%5:00:00:decreased:00 00883345 3 0 -shrivelled%5:00:00:dry:01 02553234 1 0 -shrivelled%5:00:00:thin:03 00990442 2 0 -shroud%1:06:00:: 03879116 3 0 -shroud%1:06:01:: 04188368 2 0 -shroud%1:06:02:: 04210723 1 0 -shroud%2:35:00:: 01300437 3 0 -shroud%2:35:01:: 01582200 1 1 -shroud%2:42:02:: 02749768 2 0 -shrove_tuesday%1:28:00:: 15241898 1 0 -shrovetide%1:28:00:: 15241777 1 0 -shrub%1:20:00:: 13112664 1 3 -shrubbery%1:14:00:: 08439694 2 1 -shrubbery%1:15:00:: 08649067 1 1 -shrubby%3:01:00:: 03021866 1 0 -shrubby_bittersweet%1:20:00:: 12748248 1 0 -shrubby_penstemon%1:20:00:: 12886600 1 0 -shrubby_st_john's_wort%1:20:00:: 12369476 1 0 -shrublet%1:20:00:: 13118569 1 0 -shrug%1:10:00:: 07273924 1 3 -shrug%2:29:00:: 00033955 1 10 -shrug_off%2:32:00:: 00742149 1 1 -shrunken%5:00:00:decreased:00 00883345 2 0 -shrunken%5:00:00:thin:03 00990442 1 0 -shtick%1:04:00:: 00550545 2 0 -shtick%1:04:01:: 00513597 3 0 -shtick%1:04:02:: 00171882 4 0 -shtick%1:23:00:: 13762836 1 0 -shtickl%1:23:00:: 13763058 1 0 -shtik%1:04:00:: 00550545 2 0 -shtik%1:04:01:: 00513597 3 0 -shtik%1:04:02:: 00171882 4 0 -shtik%1:23:00:: 13762836 1 0 -shtikl%1:23:00:: 13763058 1 0 -shtup%1:04:00:: 00846021 1 0 -shua%1:14:00:: 08100656 1 0 -shuck%1:27:00:: 14805899 1 0 -shuck%2:30:00:: 00179959 2 0 -shuck%2:30:03:: 00197956 1 0 -shucks%1:07:00:: 05140793 1 1 -shucks%1:10:00:: 06605682 2 0 -shudder%1:04:00:: 00348801 2 0 -shudder%1:12:00:: 07520112 1 0 -shudder%2:29:00:: 00014201 1 5 -shudder%2:38:00:: 01888946 2 3 -shuddering%5:00:00:unsteady:00 02305394 1 1 -shudderingly%4:02:00:: 00453189 1 0 -shuddery%5:00:00:alarming:00 00194924 1 0 -shudra%1:14:00:: 08307440 2 0 -shudra%1:18:00:: 10594284 1 0 -shuffle%1:04:00:: 00340463 1 0 -shuffle%1:04:01:: 00292712 2 0 -shuffle%2:35:00:: 01418667 3 0 -shuffle%2:38:00:: 01917549 1 4 -shuffle%2:38:01:: 02012973 2 1 -shuffleboard%1:04:00:: 00467536 1 0 -shuffler%1:18:00:: 10594408 2 0 -shuffler%1:18:01:: 10594523 1 0 -shuffling%1:04:00:: 00340463 2 0 -shuffling%1:04:01:: 00292712 1 1 -shufti%1:04:00:: 00985921 1 0 -shuha%3:01:00:: 02925084 1 0 -shuha_shinto%1:14:00:: 08100656 1 0 -shumac%1:20:00:: 12762896 1 0 -shumard_oak%1:20:00:: 12278107 1 0 -shumard_red_oak%1:20:00:: 12278107 1 0 -shun%2:32:00:: 00812149 1 4 -shun%2:41:00:: 02504017 2 0 -shun_giku%1:20:00:: 11951052 1 0 -shunning%1:04:00:: 00203753 1 0 -shunt%1:06:00:: 04210858 3 0 -shunt%1:06:01:: 04211001 2 1 -shunt%1:08:00:: 05548521 1 5 -shunt%2:38:00:: 02012227 1 1 -shunt%2:38:01:: 02065885 2 0 -shunt_circuit%1:06:00:: 03888808 1 0 -shunter%1:06:00:: 04211219 1 0 -shush%2:30:00:: 00390741 1 0 -shut%2:35:00:: 01345109 1 10 -shut%2:35:06:: 01346978 2 2 -shut%2:41:00:: 02449340 3 1 -shut%3:00:00:: 01652782 1 7 -shut%3:00:02:: 01655162 2 2 -shut-in%1:18:00:: 10214230 1 0 -shut-in%5:00:00:confined:00 00558827 2 0 -shut-in%5:00:00:introversive:00 01351302 1 0 -shut_away%2:35:00:: 01347678 1 0 -shut_down%2:41:00:: 02426395 1 2 -shut_in%2:35:00:: 01587062 1 0 -shut_off%2:35:00:: 01477394 3 0 -shut_off%2:38:00:: 02031826 2 0 -shut_off%2:42:00:: 02680531 1 1 -shut_one's_mouth%2:32:00:: 00937619 1 0 -shut_out%2:41:00:: 02449340 1 3 -shut_up%2:30:00:: 00461493 3 1 -shut_up%2:32:00:: 01041061 1 6 -shut_up%2:35:00:: 01347678 2 1 -shut_up%5:00:00:confined:00 00558951 1 1 -shutdown%1:04:00:: 00229260 1 5 -shute%1:18:00:: 11299212 1 0 -shuteye%1:26:00:: 14026089 1 0 -shutout%1:11:00:: 07476495 1 0 -shutter%1:06:00:: 04211356 2 5 -shutter%1:06:01:: 04211528 1 5 -shutter%2:35:00:: 01242996 1 0 -shutterbug%1:18:00:: 10594634 1 0 -shuttered%3:00:00:: 02256437 1 0 -shutting%1:04:00:: 00344040 1 0 -shutting_post%1:06:00:: 04211755 1 0 -shuttle%1:06:00:: 04211857 3 0 -shuttle%1:06:01:: 04211970 2 0 -shuttle%1:06:02:: 04212282 1 0 -shuttle%2:38:00:: 02062081 1 2 -shuttle_bus%1:06:00:: 04212165 1 0 -shuttle_diplomacy%1:10:00:: 07149348 1 0 -shuttle_helicopter%1:06:00:: 04212467 1 0 -shuttlecock%1:06:00:: 04212282 1 0 -shuttlecock%2:33:00:: 01147432 1 0 -shuttlecock_fern%1:20:00:: 13198054 1 0 -shwa%1:10:00:: 07114023 1 0 -shy%1:04:00:: 00106888 1 0 -shy%2:35:00:: 01509492 2 0 -shy%2:38:00:: 01910680 1 1 -shy%3:00:00:: 00339941 1 0 -shy%5:00:00:insufficient:00 02337558 2 0 -shy%5:00:00:wary:00 00162863 3 0 -shy_away_from%2:32:00:: 00811995 1 4 -shy_person%1:18:00:: 10594715 1 0 -shylock%1:18:00:: 10542401 2 0 -shylock%1:18:01:: 10742384 1 0 -shyly%4:02:00:: 00228910 1 1 -shyness%1:12:00:: 07523180 1 0 -shyster%1:18:00:: 10594857 1 0 -si%1:10:00:: 06869129 3 0 -si%1:23:00:: 13578267 2 0 -si%1:27:00:: 14654541 1 0 -si_system%1:23:00:: 13578267 1 0 -si_unit%1:23:00:: 13578267 1 0 -sial%1:27:00:: 14698233 1 0 -sialadenitis%1:26:00:: 14355725 1 0 -sialia%1:05:00:: 01561884 1 0 -sialidae%1:05:00:: 02266580 1 0 -sialis%1:05:00:: 02266732 1 0 -sialis_lutaria%1:05:00:: 02266864 1 0 -sialolith%1:17:00:: 09434125 1 0 -siam%1:15:00:: 09036452 1 0 -siamang%1:05:00:: 02483708 1 0 -siamese%1:05:00:: 02123597 4 0 -siamese%1:06:00:: 04212573 3 0 -siamese%1:10:00:: 06936149 1 1 -siamese%1:18:00:: 09734294 2 0 -siamese%3:01:00:: 03116651 3 0 -siamese%3:01:01:: 03116809 2 0 -siamese%3:01:02:: 03117012 1 0 -siamese_cat%1:05:00:: 02123597 1 2 -siamese_connection%1:06:00:: 04212573 1 0 -siamese_twin%1:18:00:: 10595012 1 0 -sian%1:15:00:: 08729452 1 0 -sib%1:18:01:: 10236114 2 0 -sib%1:18:02:: 10595164 1 0 -sibelius%1:18:00:: 11299367 1 0 -siberia%1:15:00:: 09005712 1 3 -siberian%1:18:00:: 09731082 1 0 -siberian%3:01:00:: 03117272 1 0 -siberian_crab%1:20:00:: 12634734 1 0 -siberian_crab_apple%1:20:00:: 12634734 1 0 -siberian_elm%1:20:00:: 12408077 1 0 -siberian_husky%1:05:00:: 02110185 1 0 -siberian_larch%1:20:00:: 11620016 1 0 -siberian_millet%1:20:00:: 12135576 1 0 -siberian_pea_tree%1:20:00:: 12512095 1 0 -siberian_spruce%1:20:00:: 11626010 1 0 -siberian_wall_flower%1:20:00:: 11887476 1 0 -sibilant%1:10:00:: 07118747 1 0 -sibilant%5:00:00:soft:03 01157179 1 0 -sibilant_consonant%1:10:00:: 07118747 1 0 -sibilate%2:32:00:: 01053771 4 0 -sibilate%2:32:01:: 01054186 3 0 -sibilate%2:32:02:: 01054399 2 0 -sibilate%2:32:03:: 01055404 1 0 -sibilation%1:10:00:: 07129202 2 0 -sibilation%1:11:00:: 07384898 1 0 -sibine%1:10:00:: 06985310 1 0 -sibley_tent%1:06:00:: 04212810 1 0 -sibling%1:18:00:: 10595164 1 0 -sibyl%1:18:00:: 10595361 2 0 -sibyl%1:18:02:: 10595551 1 0 -sibyllic%5:00:00:prophetic:00 01882754 1 0 -sibylline%5:00:00:esoteric:00 00899738 2 0 -sibylline%5:00:00:prophetic:00 01882754 1 0 -sic%2:33:00:: 01115006 1 0 -sic%4:02:00:: 00146500 1 2 -siccative%1:27:00:: 14779796 1 0 -sichuan%1:15:00:: 08726305 1 0 -sicilia%1:15:00:: 08811215 1 0 -sicilia%1:15:01:: 08810999 2 0 -sicilian%1:18:00:: 09717566 1 2 -sicilian%3:01:00:: 02959224 1 2 -sicilian_mafia%1:14:00:: 08245549 1 0 -sicilian_pizza%1:13:00:: 07874441 1 0 -sicily%1:15:00:: 08811215 1 1 -sicily%1:15:01:: 08810999 2 0 -sick%1:14:00:: 07950418 1 1 -sick%2:29:00:: 00076400 1 0 -sick%3:00:01:: 02541302 1 8 -sick%5:00:00:alarming:00 00195684 7 0 -sick%5:00:00:displeased:00 01806677 4 1 -sick%5:00:00:insane:00 02075321 3 1 -sick%5:00:00:moved:00 01560165 6 0 -sick%5:00:00:weak:00 02325984 5 0 -sick%5:00:02:ill:01 02545689 2 7 -sick-abed%5:00:00:ill:01 02543034 1 0 -sick_bag%1:06:00:: 04212943 1 0 -sick_benefit%1:21:00:: 13297850 1 0 -sick_berth%1:06:00:: 04213105 1 0 -sick_call%1:14:00:: 08427453 1 0 -sick_headache%1:26:00:: 14327707 2 0 -sick_headache%1:26:01:: 14327878 1 0 -sick_joke%1:10:00:: 06779839 1 0 -sick_leave%1:28:00:: 15140190 1 0 -sick_list%1:10:00:: 06495824 1 0 -sick_of%5:00:00:displeased:00 01806677 1 0 -sick_parade%1:14:00:: 08427453 1 0 -sick_pay%1:21:00:: 13280795 1 2 -sick_person%1:18:00:: 10595647 1 0 -sickbag%1:06:00:: 04212943 1 0 -sickbay%1:06:00:: 04213105 1 0 -sickbed%1:06:00:: 04213264 1 0 -sicken%2:29:00:: 00087454 2 1 -sicken%2:29:01:: 00088209 4 0 -sicken%2:37:00:: 01808374 1 2 -sicken%2:39:00:: 02195191 3 0 -sickening%5:00:00:unwholesome:00 02560035 1 0 -sickeningly%4:02:00:: 00314141 1 0 -sickeningness%1:07:00:: 04996571 1 0 -sickish%5:00:00:ill:01 02545689 1 1 -sickle%1:06:00:: 04213353 1 0 -sickle-cell_anaemia%1:26:00:: 14168792 1 0 -sickle-cell_anemia%1:26:00:: 14168792 1 0 -sickle-cell_disease%1:26:00:: 14168792 1 0 -sickle-shaped%5:00:00:curved:00 02315914 1 0 -sickle_alfalfa%1:20:00:: 12548804 1 0 -sickle_cell%1:08:00:: 05454833 1 0 -sickle_feather%1:05:00:: 01897426 1 0 -sickle_lucerne%1:20:00:: 12548804 1 0 -sickle_medick%1:20:00:: 12548804 1 0 -sicklepod%1:20:01:: 11872324 2 0 -sicklepod%1:20:02:: 12500518 1 0 -sickleweed_golden_aster%1:20:00:: 11952058 1 0 -sickly%5:00:00:ill:01 02542325 2 0 -sickly%5:00:00:unhealthy:00 01178134 1 1 -sickness%1:26:00:: 14061805 1 4 -sickness%1:26:01:: 14359952 3 0 -sickness%1:26:02:: 14473054 2 0 -sickness_benefit%1:21:00:: 13297850 1 0 -sickroom%1:06:00:: 04213530 1 1 -sid_caesar%1:18:00:: 10878375 1 0 -sida%1:20:00:: 12186116 1 0 -sida_hermaphrodita%1:20:00:: 12186352 1 0 -sida_rhombifolia%1:20:00:: 12186554 1 0 -sida_spinosa%1:20:00:: 12186839 1 0 -sidalcea%1:20:00:: 12187030 1 0 -sidalcea_malviflora%1:20:00:: 12187247 1 0 -siddhartha%1:18:00:: 09532214 1 0 -siddons%1:18:00:: 11299501 1 0 -side%1:06:00:: 04213626 5 11 -side%1:08:00:: 05551318 3 18 -side%1:09:00:: 05852553 6 5 -side%1:10:00:: 06783265 10 1 -side%1:11:00:: 07442569 12 0 -side%1:13:00:: 07655626 9 1 -side%1:14:00:: 08408709 2 25 -side%1:14:01:: 08102282 8 1 -side%1:15:00:: 08510666 4 12 -side%1:15:01:: 08649167 7 3 -side%1:15:02:: 08649345 1 91 -side%1:17:01:: 09437454 11 0 -side%2:33:00:: 01148961 1 0 -side%3:00:00:: 02441215 1 6 -side-blotched_lizard%1:05:00:: 01681328 1 0 -side-glance%1:04:00:: 00877924 1 0 -side-look%1:04:00:: 00877924 1 0 -side-slip%2:38:00:: 01871042 1 0 -side-to-side%3:01:00:: 03136699 1 0 -side-wheeler%1:06:00:: 04215800 1 0 -side-whiskers%1:08:00:: 05262802 1 0 -side_arm%1:06:00:: 03948459 1 0 -side_by_side%5:00:00:close:01 00447472 1 2 -side_by_side%5:00:00:related:02 01974584 2 0 -side_chair%1:06:00:: 04331277 1 0 -side_chapel%1:06:00:: 04214413 1 0 -side_dish%1:13:00:: 07580053 1 0 -side_door%1:06:00:: 04214535 1 0 -side_drum%1:06:00:: 04249415 1 0 -side_effect%1:19:00:: 11417387 2 0 -side_effect%1:26:00:: 14311977 1 0 -side_entrance%1:06:00:: 04214535 1 1 -side_horse%1:06:00:: 03980478 1 0 -side_judge%1:18:00:: 10596272 1 0 -side_of_bacon%1:13:00:: 07669211 1 0 -side_of_beef%1:13:00:: 07655790 1 0 -side_of_meat%1:13:00:: 07655626 1 0 -side_of_pork%1:13:00:: 07669588 1 0 -side_order%1:13:00:: 07580053 1 0 -side_pocket%1:06:00:: 04214958 1 0 -side_road%1:06:00:: 04215056 1 0 -side_street%1:06:00:: 04215287 1 0 -side_view%1:09:00:: 05934673 1 0 -side_yard%1:06:00:: 04216013 1 1 -sidearm%3:01:00:: 03144729 1 0 -sidearm%4:02:00:: 00514968 1 0 -sidebar%1:10:00:: 07143450 1 0 -sidebar%1:10:01:: 06271403 2 0 -sideboard%1:06:00:: 02912065 3 0 -sideboard%1:06:01:: 04214046 2 0 -sideboard%1:06:02:: 04214154 1 1 -sideburn%1:08:00:: 05262802 1 0 -sidecar%1:06:00:: 04214282 2 0 -sidecar%1:13:00:: 07917392 1 0 -sidekick%1:18:00:: 09877951 1 0 -sidelight%1:06:00:: 04214649 1 0 -sideline%1:04:00:: 00432689 3 0 -sideline%1:06:00:: 04214871 2 0 -sideline%1:15:00:: 08651104 1 0 -sideline%2:41:00:: 02399679 1 0 -sidelong%4:02:00:: 00453580 3 0 -sidelong%4:02:01:: 00453720 2 0 -sidelong%4:02:02:: 00453852 1 0 -sidelong%5:00:00:inclined:01 01235568 3 0 -sidelong%5:00:00:indirect:00 00762721 1 2 -sidelong%5:00:00:side:00 02441469 2 0 -sidereal%3:00:00:: 00643116 2 0 -sidereal%3:01:00:: 02797408 1 0 -sidereal_day%1:28:00:: 15208333 1 0 -sidereal_hour%1:28:00:: 15209074 1 0 -sidereal_month%1:28:00:: 15209174 1 0 -sidereal_time%1:28:00:: 15208162 1 0 -sidereal_year%1:28:00:: 15208898 1 0 -siderite%1:17:00:: 09434237 2 0 -siderite%1:27:00:: 15039827 1 0 -sideritis%1:20:00:: 12868248 1 0 -sideroblast%1:08:00:: 05448827 1 0 -sideroblastic_anaemia%1:26:00:: 14168447 1 0 -sideroblastic_anemia%1:26:00:: 14168447 1 0 -siderochrestic_anaemia%1:26:00:: 14168447 1 0 -siderochrestic_anemia%1:26:00:: 14168447 1 0 -siderocyte%1:08:00:: 05454978 1 0 -sideropenia%1:26:00:: 14168653 1 0 -siderophilin%1:27:00:: 15077917 1 0 -siderosis%1:26:00:: 14150470 1 0 -sidesaddle%1:06:00:: 04215153 1 0 -sidesaddle%4:02:00:: 00453333 1 0 -sideshow%1:04:00:: 00523148 2 0 -sideshow%1:11:00:: 07360957 1 0 -sideslip%1:04:00:: 00329031 1 0 -sideslip%1:04:01:: 00170710 2 0 -sidesman%1:18:00:: 10596348 1 0 -sidesplitter%1:10:00:: 06778925 1 0 -sidesplitting%5:00:00:humorous:00 01267339 1 0 -sidesplittingly%4:02:00:: 00385216 1 0 -sidestep%1:04:00:: 00286360 1 0 -sidestep%2:32:00:: 00809654 1 3 -sidestroke%1:04:00:: 00570683 1 0 -sideswipe%1:11:00:: 07410613 1 0 -sideswipe%2:35:00:: 01274254 1 0 -sidetrack%1:06:00:: 04216106 1 0 -sidetrack%2:38:00:: 02066304 1 0 -sidewalk%1:06:00:: 04215402 1 16 -sidewall%1:06:00:: 04215588 2 0 -sidewall%1:06:01:: 04215684 1 0 -sideward%4:02:00:: 00453939 1 0 -sidewards%4:02:00:: 00453939 1 0 -sideway%4:02:00:: 00454210 2 0 -sideway%4:02:01:: 00454344 1 0 -sideway%4:02:02:: 00454031 3 0 -sideways%4:02:00:: 00453580 4 0 -sideways%4:02:01:: 00454210 2 0 -sideways%4:02:02:: 00454344 1 0 -sideways%4:02:03:: 00454031 3 0 -sideways%5:00:00:oblique:00 01719779 1 0 -sidewinder%1:05:00:: 01756291 1 1 -sidewinder%1:06:00:: 04215910 2 0 -sidewise%4:02:01:: 00454210 3 0 -sidewise%4:02:02:: 00454344 2 0 -sidewise%4:02:03:: 00454031 1 2 -siding%1:06:01:: 04216106 1 1 -siding%1:27:00:: 15041050 2 0 -sidle%2:38:00:: 01869196 2 2 -sidle%2:38:01:: 01869299 1 2 -sidle_up%2:37:09:: 01804753 1 0 -sidney%1:18:00:: 11299672 1 0 -sidney_caesar%1:18:00:: 10878375 1 0 -sidney_james_webb%1:18:00:: 11377851 1 0 -sidney_poitier%1:18:00:: 11240609 1 0 -sidney_webb%1:18:00:: 11377851 1 0 -sidon%1:15:00:: 08958212 1 0 -sidonie-gabrielle_claudine_colette%1:18:00:: 10904992 1 0 -sidonie-gabrielle_colette%1:18:00:: 10904992 1 0 -sids%1:26:00:: 14310292 1 0 -siege%1:04:00:: 01075117 1 2 -siege_of_orleans%1:04:00:: 01289830 1 0 -siege_of_syracuse%1:04:00:: 01296127 2 0 -siege_of_syracuse%1:04:01:: 01296296 1 0 -siege_of_vicksburg%1:04:00:: 01298797 1 0 -siege_of_yorktown%1:04:00:: 01300242 1 0 -siege_perilous%1:06:00:: 04216302 1 0 -siegfried%1:18:00:: 09501737 1 0 -siegfried_line%1:06:00:: 04216508 1 0 -siemens%1:18:00:: 11299770 3 0 -siemens%1:18:01:: 11299890 2 0 -siemens%1:23:00:: 13637240 1 0 -sienna%1:27:00:: 14843493 1 0 -sierra%1:05:00:: 02626471 2 0 -sierra%1:17:00:: 09434345 1 0 -sierra_leone%1:15:00:: 08996871 1 0 -sierra_leone_monetary_unit%1:23:00:: 13685096 1 0 -sierra_leonean%1:18:00:: 09731225 1 0 -sierra_leonean%3:01:00:: 03117503 1 0 -sierra_lodgepole_pine%1:20:00:: 11615259 1 0 -sierra_madre_occidental%1:17:00:: 09434469 1 0 -sierra_madre_oriental%1:17:00:: 09434661 1 0 -sierra_nevada%1:17:00:: 09434845 2 0 -sierra_nevada%1:17:01:: 09435065 1 0 -sierra_nevada_mountains%1:17:00:: 09434845 1 0 -sierra_plum%1:20:00:: 12649866 1 0 -sierra_redwood%1:20:00:: 11641494 1 0 -siesta%1:04:00:: 00858631 1 0 -sieur_de_lasalle%1:18:00:: 11118205 1 0 -sieva_bean%1:13:00:: 07729225 2 0 -sieva_bean%1:20:00:: 12558425 1 0 -sieve%1:06:00:: 04216634 1 1 -sieve%2:31:00:: 00675768 4 0 -sieve%2:35:00:: 01460029 3 0 -sieve%2:35:01:: 01460594 2 0 -sieve%2:41:00:: 02400378 1 0 -sieve_out%2:31:00:: 00677544 1 0 -sieve_tube%1:20:00:: 13099194 1 0 -sif%1:18:00:: 09583196 1 0 -sift%2:31:00:: 00675768 4 0 -sift%2:35:00:: 01460029 2 1 -sift%2:35:02:: 01460594 3 0 -sift%2:38:00:: 02098827 1 1 -sifter%1:06:00:: 04216860 1 0 -sifting%1:04:00:: 01254051 1 0 -sigeh%1:26:00:: 13967215 1 0 -sigh%1:10:00:: 07129602 1 6 -sigh%1:11:00:: 07393756 2 0 -sigh%2:29:00:: 00004032 1 24 -sigh%2:32:01:: 00985800 2 2 -sight%1:04:00:: 00881649 6 2 -sight%1:09:00:: 05654362 3 6 -sight%1:09:01:: 05933054 1 17 -sight%1:09:02:: 05623818 5 2 -sight%1:09:03:: 06210964 4 2 -sight%1:10:00:: 06888944 2 12 -sight%1:23:00:: 13774404 7 1 -sight%2:39:00:: 02163746 1 4 -sight%2:39:03:: 02199307 2 0 -sight-read%2:36:00:: 01715525 1 0 -sight-sing%2:36:00:: 01715784 1 0 -sight_bill%1:21:00:: 13422905 1 0 -sight_draft%1:21:00:: 13422905 1 0 -sight_gag%1:10:00:: 06779914 1 0 -sight_setting%1:06:00:: 04217200 1 0 -sighted%3:00:00:: 02158301 1 0 -sightedness%1:09:00:: 05656537 1 0 -sighting%1:04:00:: 00880269 1 0 -sightless%5:00:00:blind:00 02160135 1 0 -sightlessness%1:26:00:: 14126660 1 0 -sightly%5:00:00:beautiful:00 00218440 1 0 -sightread%2:36:00:: 01715525 1 0 -sightreader%1:18:00:: 10596517 1 0 -sights%1:06:00:: 04216963 1 0 -sightsee%2:38:00:: 01843904 1 0 -sightseeing%1:04:00:: 00879607 1 2 -sightseer%1:18:00:: 10596689 1 0 -sightsing%2:36:00:: 01715784 1 0 -sigint%1:04:00:: 00982852 1 0 -sigma%1:10:00:: 06835951 1 0 -sigmodon%1:05:00:: 02338592 1 0 -sigmodon_hispidus%1:05:00:: 02338722 1 0 -sigmoid%3:01:00:: 02841534 2 0 -sigmoid%3:01:01:: 02841678 1 0 -sigmoid_colon%1:08:00:: 05537417 1 0 -sigmoid_flexure%1:08:00:: 05537417 1 0 -sigmoid_sinus%1:08:00:: 05252567 1 0 -sigmoid_vein%1:08:00:: 05380532 1 0 -sigmoidal%3:01:00:: 02841534 1 0 -sigmoidectomy%1:04:00:: 00687619 1 0 -sigmoidoscope%1:06:00:: 04217387 1 0 -sigmoidoscopy%1:04:00:: 00643208 1 0 -sigmund_freud%1:18:00:: 10982127 1 0 -sigmund_romberg%1:18:00:: 11269367 1 0 -sign%1:06:01:: 04217882 4 3 -sign%1:10:00:: 06793231 2 5 -sign%1:10:01:: 06876144 9 1 -sign%1:10:03:: 06791372 3 4 -sign%1:10:04:: 06811625 11 0 -sign%1:10:05:: 06646243 1 18 -sign%1:10:06:: 07276018 10 0 -sign%1:11:00:: 07286014 8 1 -sign%1:15:00:: 08685677 5 2 -sign%1:24:00:: 13856574 7 1 -sign%1:26:00:: 14301785 6 1 -sign%2:32:00:: 00889229 3 8 -sign%2:32:01:: 01039330 5 1 -sign%2:32:02:: 00996485 1 16 -sign%2:32:03:: 00867231 8 0 -sign%2:32:04:: 00929160 7 0 -sign%2:35:02:: 01498319 6 0 -sign%2:41:00:: 02464866 2 13 -sign%2:41:01:: 02409941 4 2 -sign%5:00:00:communicative:00 00498161 1 0 -sign-language%5:00:00:communicative:00 00498161 1 0 -sign_away%2:40:00:: 02343816 1 0 -sign_in%2:32:00:: 00966152 1 0 -sign_industry%1:14:00:: 08074330 1 0 -sign_language%1:10:00:: 06875697 1 0 -sign_manual%1:10:00:: 06405589 1 0 -sign_of_the_cross%1:10:00:: 07274730 1 1 -sign_of_the_zodiac%1:15:00:: 08685677 1 0 -sign_off%2:32:00:: 00974031 1 0 -sign_on%2:41:00:: 02409941 1 0 -sign_over%2:40:00:: 02343816 1 0 -sign_painter%1:18:00:: 10597642 1 0 -sign_up%2:33:00:: 01097309 2 1 -sign_up%2:41:00:: 02409941 1 2 -signage%1:14:00:: 08074421 1 0 -signal%1:10:00:: 06791372 1 16 -signal%1:16:00:: 09185280 2 1 -signal%1:19:00:: 11447319 3 0 -signal%2:32:00:: 01039330 1 4 -signal%2:32:01:: 00921300 2 3 -signal%5:00:00:impressive:00 01286239 1 0 -signal-to-noise%1:24:00:: 13825664 1 1 -signal-to-noise_ratio%1:24:00:: 13825664 1 0 -signal/noise%1:24:00:: 13825664 1 0 -signal/noise_ratio%1:24:00:: 13825664 1 0 -signal_box%1:06:00:: 04217546 1 0 -signal_caller%1:04:00:: 00726567 2 0 -signal_caller%1:18:00:: 10498816 1 0 -signal_detection%1:10:00:: 06281175 1 0 -signal_fire%1:10:00:: 07264725 1 0 -signal_flag%1:10:00:: 06875094 1 0 -signal_level%1:07:00:: 05098520 1 0 -signal_light%1:10:00:: 07264725 1 0 -signal_tower%1:06:00:: 04217546 1 0 -signaler%1:18:00:: 10596899 1 0 -signaling%1:10:00:: 06791372 1 1 -signaling_device%1:06:00:: 04217718 1 0 -signalisation%1:10:00:: 06798336 1 0 -signalise%2:32:00:: 00922438 4 0 -signalise%2:32:01:: 01039330 2 0 -signalise%2:32:02:: 00924612 3 0 -signalise%2:40:00:: 02296984 1 0 -signalization%1:10:00:: 06798336 1 0 -signalize%2:32:00:: 00922438 4 0 -signalize%2:32:01:: 01039330 2 0 -signalize%2:32:02:: 00924612 3 0 -signalize%2:40:00:: 02296984 1 0 -signaller%1:18:00:: 10596899 1 0 -signally%4:02:00:: 00454512 2 0 -signally%4:02:01:: 00454647 1 0 -signalman%1:18:00:: 10597091 1 0 -signals_intelligence%1:04:00:: 00982852 1 0 -signatory%1:18:00:: 10597234 1 0 -signature%1:07:00:: 04931428 2 1 -signature%1:10:00:: 06404582 1 1 -signature%1:10:01:: 06256041 5 0 -signature%1:10:02:: 06863618 4 0 -signature%1:10:03:: 07029088 3 0 -signature_recognition%1:10:00:: 06645623 1 0 -signature_tune%1:10:00:: 07029088 1 0 -signboard%1:06:00:: 04217882 1 0 -signed%3:00:00:: 02160878 1 3 -signed%5:00:00:communicative:00 00498161 2 0 -signer%1:18:00:: 10597234 2 0 -signer%1:18:01:: 10597505 1 0 -signet%1:06:00:: 04218142 1 0 -signet_ring%1:06:00:: 04218271 1 0 -significance%1:07:00:: 05169813 1 21 -significance%1:09:01:: 05920791 2 7 -significance%1:10:00:: 06601327 3 2 -significant%3:00:00:: 02161432 1 18 -significant%3:00:01:: 02165655 3 3 -significant%5:00:00:considerable:00 00625055 2 9 -significant%5:00:00:meaningful:00 01497387 4 2 -significant_digit%1:23:00:: 13742011 1 0 -significant_figure%1:23:00:: 13742011 1 0 -significant_other%1:18:00:: 10024362 1 0 -significantly%4:02:02:: 00367868 3 0 -significantly%4:02:03:: 00006259 2 3 -significantly%4:02:04:: 00509970 1 6 -signification%1:10:00:: 06601327 1 0 -significative%5:00:00:revealing:00 02091300 1 0 -signified%1:10:00:: 06602472 1 0 -signifier%1:10:00:: 06290637 1 0 -signify%2:32:00:: 00932324 2 1 -signify%2:32:01:: 01039854 3 0 -signify%2:32:02:: 00931852 1 3 -signing%1:10:00:: 06875697 1 0 -signior%1:18:00:: 10597745 1 0 -signor%1:18:00:: 10597745 1 0 -signora%1:10:00:: 06342362 2 0 -signora%1:18:00:: 10597889 1 0 -signore%1:18:00:: 10598013 1 1 -signorina%1:10:00:: 06342490 2 0 -signorina%1:18:00:: 10598181 1 0 -signory%1:21:00:: 13252293 1 0 -signpost%1:10:00:: 06794374 1 1 -signpost%2:32:00:: 00922320 1 0 -sigrid_undset%1:18:00:: 11356183 1 0 -sigurd%1:18:00:: 09502080 1 0 -sigyn%1:18:00:: 09583321 1 0 -sihasapa%1:18:00:: 09668988 1 0 -sika%1:05:00:: 02431976 1 0 -sikh%1:18:00:: 10598349 1 0 -sikh%3:01:00:: 02797550 1 0 -sikhism%1:09:00:: 06239931 1 0 -sikkim%1:15:00:: 08902569 1 0 -sikorsky%1:18:00:: 11300089 1 0 -silage%1:13:00:: 07801342 1 0 -sild%1:05:00:: 02532786 1 0 -sildenafil%1:06:00:: 04218383 1 0 -sildenafil_citrate%1:06:00:: 04218383 1 0 -silence%1:07:00:: 04982207 2 10 -silence%1:07:01:: 04651974 3 8 -silence%1:07:02:: 04652177 4 1 -silence%1:26:00:: 13925550 1 12 -silence%2:30:00:: 00461493 1 4 -silence%2:30:02:: 00463007 2 0 -silenced%3:00:00:: 02166027 1 1 -silencer%1:06:00:: 04218564 2 0 -silencer%1:06:01:: 04218773 1 0 -silene%1:20:00:: 11815491 1 0 -silene_acaulis%1:20:00:: 11815721 1 0 -silene_caroliniana%1:20:00:: 11815918 1 0 -silene_dioica%1:20:00:: 11816121 1 0 -silene_latifolia%1:20:00:: 11816336 1 0 -silene_uniflora%1:20:00:: 11816829 1 0 -silene_virginica%1:20:00:: 11816649 1 0 -silene_vulgaris%1:20:00:: 11816829 1 0 -silent%5:00:00:implicit:00 00942163 3 0 -silent%5:00:00:inarticulate:00 00151855 6 0 -silent%5:00:00:inaudible:00 00174983 5 0 -silent%5:00:00:quiet:01 01919428 1 18 -silent%5:00:00:uncommunicative:00 00501820 2 10 -silent%5:00:02:inaudible:00 00175123 4 0 -silent_butler%1:06:00:: 04218921 1 0 -silent_movie%1:10:00:: 06617752 1 2 -silent_partner%1:18:00:: 10598459 1 0 -silent_person%1:18:00:: 10039569 1 0 -silent_picture%1:10:00:: 06617752 1 0 -silent_treatment%1:04:00:: 01226181 1 0 -silently%4:02:00:: 00112090 1 4 -silents%1:10:00:: 06617752 1 0 -silenus%1:18:00:: 09548316 2 0 -silenus%1:18:01:: 09548489 1 0 -silesia%1:06:00:: 04219067 2 0 -silesia%1:15:00:: 09166534 1 0 -silex%1:06:00:: 04219185 2 0 -silex%1:27:00:: 15041190 1 0 -silhouette%1:06:00:: 04219277 2 0 -silhouette%1:15:00:: 08613345 1 5 -silhouette%2:36:00:: 01680621 2 1 -silhouette%2:39:00:: 02138283 1 1 -silica%1:27:00:: 15041277 1 0 -silica_gel%1:27:00:: 15041688 1 0 -silicate%1:27:00:: 15040033 1 1 -siliceous%3:01:00:: 02797704 1 0 -silicic_acid%1:27:00:: 15039935 1 0 -silicide%1:27:00:: 15040129 1 0 -silicious%3:01:00:: 02797704 1 0 -silicle%1:20:00:: 11685766 1 0 -silicon%1:27:00:: 14654541 1 0 -silicon_bronze%1:27:00:: 15041793 1 0 -silicon_carbide%1:27:00:: 15040266 1 0 -silicon_chip%1:06:00:: 03020034 1 0 -silicon_dioxide%1:27:00:: 15041277 1 0 -silicon_oxide%1:27:00:: 15041277 1 0 -silicon_valley%1:15:00:: 09166902 1 0 -silicone%1:27:00:: 15040493 1 1 -silicone_polymer%1:27:00:: 15040493 1 0 -silicone_resin%1:27:00:: 15040809 1 0 -silicone_rubber%1:27:00:: 15007016 1 0 -silicosis%1:26:00:: 14150612 1 0 -siliqua%1:20:00:: 11685621 1 0 -silique%1:20:00:: 11685621 1 0 -silk%1:06:00:: 04219424 1 6 -silk%1:27:00:: 15041911 2 1 -silk-cotton_tree%1:20:00:: 12190410 1 0 -silk-lined%5:00:00:lined:00 01418104 1 0 -silk_cotton%1:27:00:: 14925776 1 0 -silk_gland%1:05:00:: 02468178 1 0 -silk_grass%1:20:00:: 12126516 1 0 -silk_hat%1:06:00:: 03237416 1 0 -silk_oak%1:20:00:: 12217586 1 0 -silk_road%1:15:00:: 08680363 1 0 -silk_screen_print%1:06:00:: 04219718 1 0 -silk_stocking%1:06:00:: 03836976 1 0 -silk_tree%1:20:00:: 11759404 1 0 -silk_vine%1:20:00:: 13237508 1 0 -silk_wood%1:20:00:: 12194147 1 0 -silken%5:00:00:bright:00 00282675 1 0 -silkgrass%1:20:00:: 12126516 1 0 -silkily%4:02:00:: 00454752 1 0 -silkiness%1:07:00:: 04947494 1 0 -silklike%5:00:00:bright:00 00282675 1 0 -silks%1:06:00:: 04219580 1 0 -silkscreen%1:06:00:: 04219718 1 0 -silkscreen%2:36:00:: 01749554 1 0 -silkweed%1:20:00:: 13233727 1 0 -silkwood%1:20:00:: 12194147 1 0 -silkworm%1:05:01:: 02300797 1 1 -silkworm%1:05:02:: 02302620 2 0 -silkworm_moth%1:05:01:: 02300173 2 0 -silkworm_moth%1:05:02:: 02302459 1 0 -silkworm_seed%1:05:00:: 01464766 1 0 -silky%5:00:00:bright:00 00282675 1 0 -silky-haired%5:00:00:hairy:00 00215564 1 0 -silky-leafed%5:00:00:leafy:00 01703012 1 0 -silky-leaved%5:00:00:leafy:00 01703012 1 0 -silky_anteater%1:05:00:: 02460817 1 0 -silky_cornel%1:20:00:: 12947895 1 0 -silky_dogwood%1:20:01:: 12947756 2 0 -silky_dogwood%1:20:02:: 12947895 1 0 -silky_elm%1:20:00:: 12199790 1 0 -silky_oak%1:20:00:: 12218274 1 0 -silky_pocket_mouse%1:05:00:: 02349205 1 0 -silky_tamarin%1:05:00:: 02491329 1 0 -silky_terrier%1:05:00:: 02097658 1 0 -silky_willow%1:20:01:: 12725940 2 0 -silky_willow%1:20:02:: 12730370 1 0 -silky_wisteria%1:20:00:: 12581110 1 0 -sill%1:06:00:: 04220036 1 2 -sill%1:17:00:: 09435232 2 0 -sillabub%1:13:01:: 07613158 2 0 -sillabub%1:13:02:: 07916872 1 0 -sillaginidae%1:05:00:: 02637637 1 0 -sillago%1:05:00:: 02637839 1 0 -silliness%1:07:00:: 04891683 1 0 -silliness%1:07:01:: 04648440 2 0 -sills%1:18:00:: 11300326 1 0 -silly%1:18:00:: 10598641 1 0 -silly%5:00:00:confused:00 00437223 4 0 -silly%5:00:00:foolish:00 02571536 1 7 -silly%5:00:00:frivolous:00 02120828 2 1 -silly%5:00:00:undignified:00 00752847 3 0 -silly_season%1:28:00:: 15230617 1 0 -silo%1:06:00:: 04220250 1 2 -silo%1:06:01:: 04220344 2 0 -siloxane%1:27:00:: 15040899 1 0 -silphium%1:20:00:: 12015076 1 0 -silphium_laciniatum%1:20:00:: 12015221 1 0 -silt%1:27:00:: 15042052 1 0 -silt%2:35:00:: 01479545 1 0 -silt_up%2:35:00:: 01479545 1 0 -siltstone%1:27:00:: 15042194 1 0 -silty%5:00:00:loose:02 00503780 1 0 -silurian%1:28:00:: 15128200 1 0 -silurian_period%1:28:00:: 15128200 1 0 -silurid%1:05:00:: 02517938 1 0 -silurid_fish%1:05:00:: 02517938 1 0 -siluridae%1:05:00:: 02517768 1 0 -siluriform_fish%1:05:00:: 02517442 1 0 -siluriformes%1:05:00:: 02517169 1 0 -silurus%1:05:00:: 02518178 1 0 -silurus_glanis%1:05:00:: 02518324 1 0 -silva%1:17:00:: 09435405 1 0 -silvan%1:18:00:: 10685480 1 0 -silvan%5:00:00:wooded:00 02574481 1 0 -silvanus%1:18:00:: 09576746 1 0 -silver%1:06:00:: 03361837 4 1 -silver%1:06:01:: 04220523 5 0 -silver%1:07:00:: 04962062 3 2 -silver%1:21:00:: 13371866 2 2 -silver%1:27:00:: 14654954 1 2 -silver%2:30:00:: 00289532 2 0 -silver%2:30:01:: 00282652 3 0 -silver%2:35:00:: 01395493 1 0 -silver%5:00:00:achromatic:00 00387392 3 1 -silver%5:00:00:articulate:00 00150505 4 0 -silver%5:00:00:bright:00 00283327 2 4 -silver%5:00:00:metallic:00 01529053 1 4 -silver-bell_tree%1:20:00:: 12778398 1 0 -silver-blue%5:00:00:chromatic:00 00383700 1 0 -silver-bodied%5:00:00:bodied:00 00628776 1 0 -silver-bush%1:20:01:: 12326178 2 0 -silver-bush%1:20:02:: 12506784 1 0 -silver-colored%5:00:00:colored:00 00400826 1 0 -silver-gray%5:00:00:achromatic:00 00391572 1 0 -silver-green%5:00:00:chromatic:00 00383827 1 0 -silver-grey%5:00:00:achromatic:00 00391572 1 0 -silver-haired%5:00:00:hairy:00 00215654 1 0 -silver-lace%1:20:01:: 12023407 1 0 -silver-leafed%5:00:00:leafy:00 01703106 1 0 -silver-leaved%5:00:00:leafy:00 01703106 1 0 -silver-leaved_nettle%1:20:00:: 12894930 1 0 -silver-leaved_nightshade%1:20:00:: 12894930 1 0 -silver-leaved_poplar%1:20:00:: 12732009 1 0 -silver-plate%2:35:00:: 01396328 1 0 -silver-scaled%5:00:00:armored:02 00147397 1 0 -silver-tip%1:05:00:: 02132580 1 0 -silver-tongued%5:00:00:articulate:00 00150505 1 0 -silver-white%5:00:00:achromatic:00 00391699 1 0 -silver-worker%1:18:00:: 10598749 1 0 -silver_age%1:28:00:: 15231031 1 0 -silver_ash%1:20:00:: 12698435 1 0 -silver_beech%1:20:00:: 12266984 1 0 -silver_bell%1:20:00:: 12778219 1 0 -silver_berry%1:20:01:: 12326178 2 0 -silver_berry%1:20:02:: 12326369 1 0 -silver_birch%1:20:00:: 12282527 1 0 -silver_bromide%1:27:00:: 15015192 1 0 -silver_bullet%1:09:00:: 05661825 1 0 -silver_certificate%1:21:00:: 13394179 1 0 -silver_chloride%1:27:00:: 15018318 1 2 -silver_city%1:15:00:: 09116488 1 0 -silver_cord%1:24:00:: 13792468 1 0 -silver_dollar%1:20:00:: 11891541 2 0 -silver_dollar%1:21:00:: 13392262 1 1 -silver_fern%1:20:01:: 13213066 2 0 -silver_fern%1:20:02:: 13213235 1 0 -silver_fir%1:20:00:: 11621029 1 0 -silver_fox%1:05:00:: 02119359 1 0 -silver_grass%1:20:00:: 12122018 1 0 -silver_gray%1:07:00:: 04962062 1 1 -silver_grey%1:07:00:: 04962062 1 0 -silver_hake%1:05:00:: 02524659 1 0 -silver_iodide%1:27:00:: 15015355 1 0 -silver_jenny%1:05:00:: 02637475 1 0 -silver_jubilee%1:28:00:: 15250580 1 0 -silver_lace%1:20:01:: 12023407 1 0 -silver_lace_vine%1:20:00:: 12601106 1 0 -silver_lime%1:20:00:: 12204175 1 0 -silver_linden%1:20:00:: 12204175 1 0 -silver_lining%1:12:00:: 07493095 1 0 -silver_maple%1:20:00:: 12753007 1 0 -silver_medal%1:06:00:: 04220523 1 0 -silver_mine%1:06:00:: 04220717 1 0 -silver_nitrate%1:27:00:: 15014170 1 0 -silver_oak%1:20:00:: 12218054 1 0 -silver_perch%1:05:01:: 02566489 2 0 -silver_perch%1:05:02:: 02595339 1 0 -silver_pine%1:20:01:: 11613459 2 0 -silver_pine%1:20:02:: 11655974 1 0 -silver_plate%1:06:00:: 04220805 2 0 -silver_plate%1:06:01:: 04220945 1 0 -silver_protein%1:06:00:: 04221241 1 0 -silver_quandong%1:20:00:: 12193205 1 0 -silver_quandong_tree%1:20:00:: 12192877 1 0 -silver_sage%1:20:00:: 12014085 1 0 -silver_sagebrush%1:20:00:: 12014085 1 0 -silver_salmon%1:05:00:: 02536864 2 0 -silver_salmon%1:13:00:: 07796468 1 0 -silver_screen%1:06:00:: 04152829 2 0 -silver_screen%1:10:00:: 06262943 1 0 -silver_solder%1:27:00:: 14718626 1 0 -silver_spoon%1:26:00:: 14492723 1 0 -silver_spruce%1:20:00:: 11626585 1 0 -silver_standard%1:21:00:: 13373584 1 0 -silver_star%1:10:00:: 06708167 1 0 -silver_star_medal%1:10:00:: 06708167 1 0 -silver_state%1:15:00:: 09110422 1 0 -silver_storm%1:19:00:: 11467650 1 0 -silver_thatch%1:20:01:: 12597798 2 0 -silver_thatch%1:20:02:: 12598027 1 0 -silver_tree%1:20:01:: 12201331 2 0 -silver_tree%1:20:02:: 12220496 1 0 -silver_tree_fern%1:20:00:: 13187367 1 0 -silver_vine%1:20:00:: 12371704 1 0 -silver_wattle%1:20:00:: 11757653 1 0 -silver_wedding_anniversary%1:28:00:: 15250890 1 0 -silver_whiting%1:05:00:: 02598252 1 0 -silver_willow%1:20:00:: 12725940 1 0 -silverback%1:05:00:: 02481500 1 0 -silverbell_tree%1:20:00:: 12778398 1 0 -silverberry%1:20:00:: 12326178 1 0 -silverbush%1:20:01:: 12326178 2 0 -silverbush%1:20:02:: 12506784 1 0 -silverfish%1:05:00:: 01443736 2 0 -silverfish%1:05:02:: 02270623 1 0 -silverish%5:00:00:achromatic:00 00387392 1 0 -silverleaf_nightshade%1:20:00:: 12894930 1 0 -silvern%5:00:00:bright:00 00283327 2 0 -silvern%5:00:00:euphonious:00 00301032 1 0 -silverplate%2:35:00:: 01396328 1 0 -silverpoint%1:06:00:: 04221076 1 0 -silverrod%1:20:00:: 12016434 1 0 -silverside%1:05:01:: 02602405 1 0 -silversides%1:05:01:: 02602405 1 0 -silversides%1:05:02:: 01441910 2 0 -silversmith%1:18:00:: 10598749 1 0 -silverspot%1:05:00:: 02278463 1 0 -silverstein%1:18:00:: 11300465 1 0 -silversword%1:20:00:: 11926365 1 0 -silvertip%1:05:00:: 02132580 1 0 -silvertop_palmetto%1:20:00:: 12598027 1 0 -silvervine%1:20:00:: 12371704 1 0 -silverware%1:06:00:: 04221424 1 0 -silverweed%1:20:00:: 12824735 1 0 -silverweed%1:20:02:: 12637123 2 0 -silverwork%1:06:00:: 04221586 1 0 -silverworker%1:18:00:: 10598749 1 0 -silvery%5:00:00:achromatic:00 00387392 3 0 -silvery%5:00:00:bright:00 00283327 2 1 -silvery%5:00:00:euphonious:00 00301032 1 1 -silvery-blue%5:00:00:chromatic:00 00383700 1 0 -silvery-bodied%5:00:00:bodied:00 00628776 1 0 -silvery-gray%5:00:00:achromatic:00 00391572 1 0 -silvery-green%5:00:00:chromatic:00 00383827 1 0 -silvery-grey%5:00:00:achromatic:00 00391572 1 0 -silvery-leafed%5:00:00:leafy:00 01703106 1 0 -silvery-leaved%5:00:00:leafy:00 01703106 1 0 -silvery-white%5:00:00:achromatic:00 00391699 1 0 -silvery_spleenwort%1:20:01:: 13194918 2 0 -silvery_spleenwort%1:20:02:: 13196738 1 0 -silvery_wormwood%1:20:00:: 11930353 1 0 -silvex%1:27:00:: 15042295 1 0 -silvia%1:05:00:: 01564630 1 0 -silvia_atricapilla%1:05:00:: 01564773 1 0 -silviculture%1:09:00:: 06072145 1 0 -silybum%1:20:00:: 12015384 1 0 -silybum_marianum%1:20:00:: 12015525 1 0 -sima%1:27:00:: 14698405 1 0 -simal%1:20:00:: 12189429 1 0 -simarouba%1:20:00:: 12716166 1 0 -simarouba_amara%1:20:00:: 12716400 1 0 -simarouba_glauca%1:20:00:: 12716594 1 0 -simaroubaceae%1:20:00:: 12715569 1 0 -simazine%1:27:00:: 15042429 1 0 -simchas_torah%1:28:00:: 15197302 1 0 -simchat_torah%1:28:00:: 15197302 1 0 -simenon%1:18:00:: 11300678 1 0 -simeon%1:18:00:: 10599068 1 0 -simhat_torah%1:28:00:: 15197302 1 0 -simhath_torah%1:28:00:: 15197302 1 0 -simian%1:05:00:: 02470238 1 0 -simian%3:01:00:: 02992241 1 0 -similar%3:00:00:: 02071420 1 61 -similar%3:00:02:: 01409581 3 0 -similar%3:00:04:: 01410606 2 6 -similar%5:00:00:replaceable:00 01978532 5 0 -similar%5:00:00:synonymous:00 02381495 4 0 -similarity%1:07:00:: 04743605 1 9 -similarity%1:09:00:: 06251033 2 0 -similarly%4:02:00:: 00138060 1 21 -simile%1:10:00:: 07108282 1 1 -similitude%1:06:00:: 03117939 2 0 -similitude%1:07:00:: 04744814 1 6 -simmer%1:07:00:: 05014556 1 0 -simmer%2:30:00:: 00324231 1 5 -simmer_down%2:37:00:: 01763829 1 0 -simmering%1:04:00:: 00247792 1 0 -simmpleness%1:07:03:: 04786490 1 0 -simnel%1:13:00:: 07686634 1 0 -simnel%1:13:01:: 07631672 2 0 -simoleons%1:21:00:: 13385216 1 0 -simon%1:18:00:: 11300893 4 0 -simon%1:18:01:: 11301129 3 0 -simon%1:18:02:: 11301279 2 0 -simon%1:18:04:: 11301414 1 0 -simon_bolivar%1:18:00:: 10855604 1 0 -simon_de_montfort%1:18:00:: 11187754 1 0 -simon_kuznets%1:18:00:: 11113266 1 0 -simon_legree%1:18:00:: 09604574 2 0 -simon_legree%1:18:01:: 10609960 1 0 -simon_marks%1:18:00:: 11157422 1 0 -simon_newcomb%1:18:00:: 11204855 1 0 -simon_peter%1:18:00:: 11231157 1 0 -simon_the_canaanite%1:18:00:: 11301414 1 0 -simon_the_zealot%1:18:00:: 11301414 1 0 -simon_zelotes%1:18:00:: 11301414 1 0 -simone_de_beauvoir%1:18:00:: 10839617 1 0 -simone_weil%1:18:00:: 11379812 1 0 -simonise%2:35:00:: 01245490 1 0 -simoniz%1:27:00:: 15042542 1 0 -simonize%2:35:00:: 01245490 1 0 -simony%1:04:00:: 01114172 1 0 -simoom%1:19:00:: 11507655 1 0 -simoon%1:19:00:: 11507655 1 0 -simper%1:10:00:: 06877990 1 0 -simper%2:29:00:: 00029336 1 0 -simperer%1:18:00:: 10599215 1 0 -simperingly%4:02:00:: 00454869 1 0 -simple%1:18:00:: 10599354 2 0 -simple%1:20:00:: 12212690 1 0 -simple%3:00:01:: 02166346 6 0 -simple%3:00:02:: 02174896 1 56 -simple%5:00:00:easy:01 00750296 2 10 -simple%5:00:00:naive:00 02272047 4 2 -simple%5:00:00:plain:01 01793812 7 0 -simple%5:00:00:retarded:00 01841390 5 1 -simple%5:00:02:plain:01 01792573 3 4 -simple-minded%5:00:00:naive:00 02272954 1 1 -simple-minded%5:00:00:retarded:00 01841390 2 0 -simple_absence%1:26:00:: 14088918 1 0 -simple_closed_curve%1:25:00:: 13868371 1 0 -simple_eye%1:08:00:: 05312306 1 0 -simple_fraction%1:23:00:: 13732295 1 0 -simple_fracture%1:26:00:: 14294117 1 0 -simple_fruit%1:20:00:: 13137951 1 0 -simple_harmonic_motion%1:11:00:: 07411011 1 0 -simple_interest%1:21:00:: 13318934 1 0 -simple_leaf%1:20:00:: 13156083 1 0 -simple_machine%1:06:00:: 03700963 1 0 -simple_mastectomy%1:04:00:: 00686027 1 0 -simple_microscope%1:06:00:: 03484931 1 0 -simple_mindedness%1:07:00:: 04881369 1 0 -simple_pendulum%1:06:00:: 04221673 1 0 -simple_phobia%1:26:00:: 14382238 1 0 -simple_pistil%1:20:00:: 11676963 1 0 -simple_protein%1:27:00:: 14736972 1 0 -simple_regression%1:09:00:: 06027264 1 0 -simple_sentence%1:10:00:: 06285435 1 0 -simple_sugar%1:27:00:: 14954284 1 0 -simpleness%1:07:00:: 04766059 2 0 -simpleness%1:07:01:: 04697442 4 0 -simpleness%1:07:02:: 04708113 3 0 -simpleness%1:07:04:: 04881369 1 0 -simpleton%1:18:00:: 10599354 1 0 -simplex%5:00:00:simple:02 02175267 2 0 -simplex%5:00:00:unidirectional:00 00234522 1 1 -simplicity%1:07:00:: 04708113 4 0 -simplicity%1:07:01:: 04697442 5 0 -simplicity%1:07:02:: 04766059 1 4 -simplicity%1:07:03:: 04786490 3 0 -simplicity%1:07:04:: 04881369 2 1 -simplification%1:04:00:: 01211888 2 0 -simplification%1:04:02:: 00192300 3 0 -simplification%1:10:00:: 06739180 1 0 -simplified%5:00:00:easy:01 00750843 1 2 -simplify%2:30:00:: 00400427 1 3 -simplism%1:04:00:: 01212037 2 0 -simplism%1:10:00:: 06739345 1 0 -simplistic%5:00:00:simple:02 02175487 1 2 -simply%4:02:00:: 00004722 1 46 -simply%4:02:01:: 00005055 4 3 -simply%4:02:02:: 00004967 3 7 -simply%4:02:03:: 00246296 2 9 -simpson%1:18:00:: 11301597 2 0 -simpson%1:18:01:: 11301809 1 0 -simpson_desert%1:15:00:: 09172634 1 0 -simulacrum%1:06:00:: 03265874 2 0 -simulacrum%1:07:00:: 04678712 1 0 -simulate%2:36:00:: 01721754 3 0 -simulate%2:36:02:: 01722980 2 0 -simulate%2:36:04:: 01742886 1 5 -simulated%5:00:00:artificial:00 01573238 1 5 -simulated%5:00:00:imitative:00 01217338 2 0 -simulated_military_operation%1:04:00:: 00959992 1 0 -simulation%1:04:00:: 00754956 4 0 -simulation%1:04:01:: 00899049 1 1 -simulation%1:06:00:: 03777283 3 0 -simulation%1:09:00:: 05666700 2 0 -simulative_electronic_deception%1:04:00:: 01251724 1 0 -simulator%1:06:00:: 04221823 1 0 -simulcast%1:10:00:: 06622449 1 0 -simuliidae%1:05:00:: 02205383 1 0 -simulium%1:05:00:: 02205523 1 0 -simultaneity%1:07:00:: 05048123 1 0 -simultaneous%5:00:00:synchronous:00 02378496 1 4 -simultaneous_equations%1:10:00:: 06671150 1 0 -simultaneous_operation%1:22:00:: 13532196 1 0 -simultaneously%4:02:00:: 00120095 1 20 -simultaneousness%1:07:00:: 05048123 1 0 -simvastatin%1:06:00:: 04221994 1 0 -sin%1:04:00:: 00757080 2 9 -sin%1:04:01:: 01260731 6 0 -sin%1:07:00:: 04827957 1 14 -sin%1:10:00:: 06838868 5 0 -sin%1:18:00:: 09521994 4 0 -sin%1:24:00:: 13787379 3 0 -sin%2:41:00:: 02565687 1 7 -sin%2:41:01:: 02566227 2 0 -sinai%1:15:00:: 08896645 3 0 -sinai%1:15:01:: 09172751 2 0 -sinai%1:17:00:: 09435512 1 0 -sinai_desert%1:15:00:: 09172751 1 0 -sinai_peninsula%1:15:00:: 08896645 1 0 -sinanthropus%1:05:00:: 02473983 1 0 -sinapis%1:20:00:: 11896365 1 0 -sinapis_alba%1:20:00:: 11896519 1 0 -sinapis_arvensis%1:20:00:: 11896722 1 0 -sinapism%1:06:00:: 03802800 1 0 -sinatra%1:18:00:: 11302062 1 0 -sinbad%1:18:00:: 09604706 1 0 -sinbad_the_sailor%1:18:00:: 09604706 1 0 -since_a_long_time_ago%4:02:00:: 00160177 1 0 -sincere%3:00:00:: 02179279 1 6 -sincere%5:00:00:serious:00 02118840 2 0 -sincerely%4:02:00:: 00378365 1 5 -sincerely%4:02:03:: 00160086 2 0 -sincerely_yours%4:02:00:: 00160086 1 0 -sincerity%1:07:00:: 04867130 2 2 -sincerity%1:07:01:: 04646548 4 0 -sincerity%1:07:02:: 04786595 3 1 -sincerity%1:12:00:: 07512315 1 2 -sinciput%1:08:00:: 05541097 1 0 -sinclair%1:18:00:: 11302224 2 0 -sinclair%1:18:01:: 11302449 1 0 -sinclair_lewis%1:18:00:: 11130474 1 0 -sind%1:15:00:: 08977845 1 0 -sindhi%1:10:00:: 06969705 2 0 -sindhi%1:18:00:: 09726037 1 0 -sine%1:24:00:: 13787379 1 0 -sine_curve%1:25:00:: 13909190 1 0 -sine_die%4:02:00:: 00257338 1 1 -sine_qua_non%1:09:00:: 05893261 1 1 -sine_wave%1:11:00:: 07345066 1 0 -sinecure%1:04:00:: 00604228 2 0 -sinecure%1:21:00:: 13248274 1 0 -sinequan%1:06:00:: 03229905 1 0 -sinew%1:07:00:: 05030418 2 0 -sinew%1:08:00:: 05296253 1 0 -sinewy%3:01:00:: 02811265 2 0 -sinewy%5:00:00:strong:00 02321809 3 0 -sinewy%5:00:00:tough:01 02446239 1 2 -sinful%5:00:00:immoderate:00 01534648 3 0 -sinful%5:00:00:unrighteous:00 02037531 2 0 -sinful%5:00:00:wicked:00 02514543 1 2 -sinfulness%1:07:00:: 04827957 1 3 -sing%2:32:00:: 01043887 4 1 -sing%2:32:01:: 00937208 5 1 -sing%2:32:08:: 01067816 3 3 -sing%2:36:00:: 01729431 2 35 -sing%2:36:01:: 01731031 1 46 -sing-kwa%1:20:00:: 12166929 1 0 -sing_along%2:36:00:: 01728613 1 0 -singable%5:00:00:musical:01 01505181 1 0 -singalong%1:04:00:: 01255648 1 0 -singan%1:15:00:: 08729452 1 0 -singapore%1:15:00:: 08997487 2 0 -singapore%1:15:01:: 08997310 3 0 -singapore%1:15:02:: 08997801 1 0 -singapore_dollar%1:23:00:: 13673946 1 0 -singapore_island%1:15:00:: 08997310 1 0 -singaporean%1:18:00:: 09749614 1 0 -singaporean%3:01:01:: 03117653 2 0 -singaporean%3:01:02:: 03117835 1 0 -singe%1:26:00:: 14289942 1 0 -singe%2:30:00:: 00378521 1 1 -singe%2:30:07:: 00582743 2 0 -singer%1:18:00:: 10599806 1 3 -singer%1:18:01:: 11302615 3 0 -singer%1:18:02:: 11302772 2 0 -singhalese%1:10:00:: 06971741 2 0 -singhalese%1:18:00:: 09732047 1 0 -singhalese%3:01:00:: 03118050 2 0 -singhalese%3:01:01:: 03118215 1 0 -singing%1:04:00:: 00545501 1 6 -singing%1:10:02:: 06805297 2 0 -singing%5:00:00:melodious:00 01501718 1 0 -singing_voice%1:10:00:: 06872122 1 0 -single%1:04:00:: 00132601 1 7 -single%1:23:00:: 13742573 2 0 -single%2:35:00:: 01409374 1 6 -single%3:00:00:: 00493460 1 74 -single%3:00:02:: 01482228 4 0 -single%3:00:04:: 02220571 2 0 -single%3:00:05:: 02213947 3 0 -single%5:00:00:concentrated:00 00539389 7 0 -single%5:00:00:uniform:00 01966740 6 0 -single%5:00:00:unshared:00 02153174 5 0 -single-barreled%3:00:00:: 00794146 1 0 -single-barrelled%3:00:00:: 00794146 1 0 -single-bedded%5:00:00:bedded:00 00207809 1 0 -single-breasted%3:00:00:: 00794650 1 0 -single-breasted_jacket%1:06:00:: 04222307 1 0 -single-breasted_suit%1:06:00:: 04222470 1 0 -single-celled%5:00:00:noncellular:00 00328401 1 0 -single-channel%5:00:00:monaural:00 00241079 1 0 -single-entry_bookkeeping%1:04:00:: 00619419 1 0 -single-foot%1:04:00:: 00287276 1 0 -single-foot%2:38:00:: 01960491 1 1 -single-handed%4:02:00:: 00455030 1 0 -single-handed%5:00:00:independent:00 00729776 2 0 -single-handed%5:00:00:unsupported:02 02353488 1 0 -single-handedly%4:02:00:: 00455030 1 0 -single-humped%3:01:00:: 02770951 1 0 -single-lane%3:00:00:: 02221173 1 0 -single-leaf%1:20:00:: 11610215 1 0 -single-leaf_pine%1:20:00:: 11610215 1 0 -single-leaf_pinyon%1:20:00:: 11610215 1 0 -single-member_system%1:09:00:: 05904313 1 0 -single-minded%5:00:00:resolute:00 01991267 1 0 -single-mindedly%4:02:00:: 00455146 1 0 -single-mindedness%1:07:00:: 04863675 1 0 -single-propeller_plane%1:06:00:: 04222723 1 0 -single-reed_instrument%1:06:00:: 04222847 1 0 -single-reed_woodwind%1:06:00:: 04222847 1 0 -single-rotor_helicopter%1:06:00:: 04223066 1 0 -single-seeded%5:00:00:seedy:00 02255736 1 0 -single-shelled%5:00:00:univalve:00 02483839 1 0 -single-spaced%5:00:00:spaced:00 01656253 1 1 -single-spacing%1:10:00:: 06402871 1 0 -single-stranded%3:01:00:: 02797907 1 0 -single-valued_function%1:24:00:: 13783816 1 0 -single_bed%1:06:00:: 04222210 1 0 -single_combat%1:04:00:: 01176757 1 0 -single_cream%1:13:00:: 07847917 1 0 -single_crochet%1:06:00:: 04222594 1 0 -single_crochet%2:36:00:: 01673305 1 0 -single_dwelling%1:06:00:: 03180865 1 0 -single_entry%1:04:00:: 00619419 1 0 -single_file%1:14:00:: 08428756 1 0 -single_nucleotide_polymorphism%1:19:00:: 11493452 1 0 -single_out%2:31:00:: 00679239 1 2 -single_out%2:41:00:: 02512305 2 1 -single_prop%1:06:00:: 04222723 1 0 -single_quote%1:10:00:: 06844427 1 0 -single_shell%1:06:00:: 04038338 1 0 -single_stitch%1:06:00:: 04222594 1 0 -single_stitch%2:36:00:: 01673305 1 0 -single_supplement%1:21:00:: 13325722 1 0 -single_tax%1:21:00:: 13310091 1 0 -singleness%1:07:01:: 04865921 2 0 -singleness%1:07:02:: 04867700 1 0 -singles%1:04:00:: 00483313 2 0 -singles%1:04:01:: 00483409 1 0 -singlestick%1:06:00:: 04223170 1 0 -singlet%1:06:00:: 04223299 1 0 -singletary_pea%1:20:00:: 12539564 1 0 -singleton%1:06:00:: 04223435 3 0 -singleton%1:14:00:: 07985135 2 0 -singleton%1:23:00:: 13742980 1 0 -singly%4:02:00:: 00083541 1 1 -singly%4:02:01:: 00207668 2 0 -singsong%1:04:00:: 01255648 2 0 -singsong%1:10:00:: 07084927 1 1 -singsong%2:32:00:: 01050165 1 1 -singsong%2:38:00:: 02095696 2 0 -singsong%5:00:00:rhythmical:00 02020609 1 0 -singular%1:10:00:: 06299916 1 0 -singular%3:00:00:: 02182862 5 0 -singular%3:00:01:: 02183421 4 0 -singular%5:00:00:extraordinary:00 01678417 1 3 -singular%5:00:00:individual:00 00494622 3 1 -singular%5:00:00:single:05 02215087 6 0 -singular%5:00:00:strange:00 00968010 2 1 -singular_form%1:10:00:: 06299916 1 0 -singular_matrix%1:14:00:: 08270169 1 0 -singularise%2:32:00:: 00922641 1 0 -singularity%1:07:01:: 04763650 1 1 -singularity%1:07:02:: 04798365 2 0 -singularize%2:32:00:: 00922641 1 0 -singularly%4:02:00:: 00455233 1 1 -singultus%1:26:00:: 14359459 1 0 -sinhala%1:10:00:: 06971741 1 0 -sinhala%3:01:00:: 03118215 1 0 -sinhalese%1:10:00:: 06971741 2 0 -sinhalese%1:18:00:: 09732047 1 0 -sinhalese%3:01:00:: 03118050 2 0 -sinhalese%3:01:01:: 03118215 1 0 -sinister%5:00:00:alarming:00 00194357 1 3 -sinister%5:00:00:evil:00 01131935 2 1 -sinister%5:00:00:sinistral:00 00743742 3 0 -sinistral%3:00:00:: 00743435 1 0 -sinistral%5:00:00:left-handed:00 02029568 2 0 -sinistrality%1:07:00:: 05067367 1 0 -sinistrorsal%5:00:00:sinistral:00 00743869 1 0 -sinistrorse%5:00:00:sinistral:00 00743869 1 0 -sinitic%1:10:00:: 06929618 1 0 -sinitic%3:01:00:: 02964904 1 0 -sinitic_language%1:10:00:: 06929618 1 0 -sink%1:06:00:: 04223580 1 4 -sink%1:06:01:: 02998563 4 0 -sink%1:17:00:: 09435739 3 0 -sink%1:22:00:: 13555915 2 0 -sink%2:30:00:: 00432839 7 2 -sink%2:35:00:: 01530098 9 1 -sink%2:38:00:: 01989873 4 3 -sink%2:38:01:: 01985923 1 8 -sink%2:38:02:: 01986869 2 5 -sink%2:38:03:: 01988886 8 1 -sink%2:38:04:: 02039679 6 2 -sink%2:38:06:: 01971929 5 3 -sink%2:38:07:: 01972131 3 4 -sink_in%2:31:00:: 00591755 1 2 -sink_in%2:35:00:: 01457954 2 0 -sinkable%3:00:00:: 02213748 1 0 -sinker%1:04:00:: 00108965 3 0 -sinker%1:06:00:: 04223778 2 0 -sinker%1:13:00:: 07639069 1 0 -sinkhole%1:17:00:: 09435739 1 0 -sinkiang%1:15:00:: 08729626 1 0 -sinking%1:11:00:: 07363883 1 1 -sinking%1:11:01:: 07356266 2 1 -sinking%1:12:00:: 07525367 3 0 -sinking_feeling%1:12:00:: 07525367 1 0 -sinking_fund%1:21:00:: 13359428 1 0 -sinking_spell%1:22:00:: 13556151 1 0 -sinless%5:00:00:virtuous:00 02513614 1 0 -sinlessness%1:26:00:: 13990064 1 0 -sinn_fein%1:14:00:: 08321218 1 0 -sinner%1:18:00:: 10601078 1 4 -sinning%1:04:00:: 00757080 1 1 -sinning%5:00:00:offending:00 01631217 1 0 -sinningia%1:20:00:: 12833341 1 0 -sinningia_speciosa%1:20:00:: 12833526 1 0 -sino-japanese_war%1:04:00:: 01275934 1 0 -sino-tibetan%1:10:00:: 06930934 1 0 -sino-tibetan_language%1:10:00:: 06930934 1 0 -sinoatrial_node%1:08:00:: 05389460 1 0 -sinologist%1:18:00:: 10601234 1 0 -sinology%1:09:00:: 06171524 1 0 -sinoper%1:27:00:: 14844169 1 0 -sinopia%1:27:00:: 14844169 1 0 -sinopis%1:27:00:: 14844169 1 0 -sinornis%1:05:00:: 01516609 1 0 -sinter%2:36:00:: 01661096 1 0 -sintered%3:44:00:: 03153755 1 1 -sinuate%5:00:00:curved:00 02316992 1 0 -sinuate%5:00:00:smooth:02 02245108 2 0 -sinuosity%1:25:00:: 13885207 1 0 -sinuous%5:00:00:curved:00 02316992 1 1 -sinuously%4:02:00:: 00515072 1 0 -sinuousness%1:25:00:: 13885207 1 0 -sinus%1:08:01:: 05252016 3 0 -sinus%1:08:02:: 05252970 2 0 -sinus%1:08:03:: 05548032 1 0 -sinus_cavernosus%1:08:00:: 05252259 1 0 -sinus_coronarius%1:08:00:: 05252402 1 0 -sinus_ethmoidales%1:08:00:: 05253165 1 0 -sinus_headache%1:26:00:: 14327970 1 0 -sinus_paranasales%1:08:00:: 05253561 1 0 -sinus_rectus%1:08:00:: 05252705 1 0 -sinus_sigmoideus%1:08:00:: 05252567 1 0 -sinus_transversus%1:08:00:: 05252834 1 0 -sinus_venosus_sclerae%1:08:00:: 05251789 1 0 -sinusitis%1:26:00:: 14355238 1 0 -sinusoid%1:08:00:: 05253829 1 2 -sinusoid%1:25:00:: 13909190 2 0 -sinusoidal%5:00:00:curved:00 02317145 1 1 -sinusoidal_projection%1:06:00:: 04223915 1 0 -sinusoidally%4:02:00:: 00515147 1 0 -sion%1:09:01:: 05632056 3 0 -sion%1:15:00:: 08792548 2 0 -sion%1:15:02:: 08796351 1 0 -siouan%1:10:00:: 06920129 2 0 -siouan%1:18:00:: 09669125 1 0 -siouan%3:01:00:: 02798014 1 0 -siouan-speaking%5:00:00:communicative:00 00500024 1 0 -siouan_language%1:10:00:: 06920129 1 0 -sioux%1:18:00:: 09669125 1 3 -sioux_city%1:15:00:: 09087450 1 0 -sioux_falls%1:15:00:: 09139849 1 0 -sip%1:04:01:: 00843494 1 2 -sip%2:34:00:: 01170687 1 7 -sipah-e-sahaba%1:14:00:: 08045140 1 0 -siphon%1:05:00:: 01468913 2 0 -siphon%1:06:00:: 04224155 1 0 -siphon%2:35:00:: 01613391 2 0 -siphon%2:38:00:: 01853542 1 0 -siphon_off%2:38:00:: 01853542 1 0 -siphonaptera%1:05:00:: 02185973 1 0 -siphonophora%1:05:00:: 01912272 1 0 -siphonophore%1:05:00:: 01912454 1 0 -sipper%1:18:00:: 10601362 1 1 -sipuncula%1:05:00:: 02315696 1 0 -sipunculid%1:05:00:: 02315821 1 0 -siqueiros%1:18:00:: 11302962 1 0 -sir%1:18:00:: 10601451 1 19 -sir%1:18:01:: 10601526 2 0 -sir_alan_hodgkin%1:18:00:: 11053559 1 0 -sir_alec_guinness%1:18:00:: 11019269 1 0 -sir_alexander_fleming%1:18:00:: 10972825 1 0 -sir_alexander_korda%1:18:00:: 11109424 1 0 -sir_alexander_mackenzie%1:18:00:: 11147924 1 0 -sir_alexander_robertus_todd%1:18:00:: 11344549 1 0 -sir_alfred_charles_bernard_lovell%1:18:00:: 11141981 1 0 -sir_alfred_hitchcock%1:18:00:: 11052299 1 0 -sir_angus_wilson%1:18:00:: 11392210 1 0 -sir_anthony_hopkins%1:18:00:: 11059438 1 0 -sir_anthony_philip_hopkins%1:18:00:: 11059438 1 0 -sir_anthony_vandyke%1:18:00:: 11359867 1 0 -sir_arthur_conan_doyle%1:18:00:: 10906462 1 0 -sir_arthur_john_evans%1:18:00:: 10963254 1 0 -sir_arthur_stanley_eddington%1:18:00:: 10948478 1 0 -sir_arthur_sullivan%1:18:00:: 11324212 1 0 -sir_arthur_travers_harris%1:18:00:: 11030395 1 0 -sir_barton%1:05:00:: 02383604 1 0 -sir_bernard_law_montgomery%1:18:00:: 11188316 1 0 -sir_bernard_lovell%1:18:00:: 11141981 1 0 -sir_bernard_williams%1:18:00:: 11390170 1 0 -sir_charles_leonard_woolley%1:18:00:: 11397094 1 0 -sir_charles_scott_sherrington%1:18:00:: 11298240 1 0 -sir_charles_spencer_chaplin%1:18:00:: 10890637 1 0 -sir_charles_wheatstone%1:18:00:: 11383100 1 0 -sir_charles_william_siemens%1:18:00:: 11299890 1 0 -sir_christopher_wren%1:18:00:: 11398195 1 0 -sir_clive_marles_sinclair%1:18:00:: 11302224 1 0 -sir_david_alexander_cecil_low%1:18:00:: 11142155 1 0 -sir_david_bruce%1:18:00:: 10867708 1 0 -sir_david_low%1:18:00:: 11142155 1 0 -sir_edmund_hillary%1:18:00:: 11050183 1 0 -sir_edmund_percival_hillary%1:18:00:: 11050183 1 0 -sir_edward_elgar%1:18:00:: 10956134 1 0 -sir_edward_victor_appleton%1:18:00:: 10820613 1 0 -sir_edward_william_elgar%1:18:00:: 10956134 1 0 -sir_edwin_landseer_luytens%1:18:00:: 11145563 1 0 -sir_edwin_lutyens%1:18:00:: 11145563 1 0 -sir_ernst_boris_chain%1:18:00:: 10891029 1 0 -sir_francis_bacon%1:18:00:: 10830456 1 0 -sir_francis_drake%1:18:00:: 10942866 1 0 -sir_francis_galton%1:18:00:: 10988570 1 0 -sir_frank_whittle%1:18:00:: 11385442 1 0 -sir_fred_hoyle%1:18:00:: 11063309 1 0 -sir_frederick_ashton%1:18:00:: 10825923 1 0 -sir_frederick_gowland_hopkins%1:18:00:: 11059593 1 0 -sir_frederick_grant_banting%1:18:00:: 10833805 1 0 -sir_frederick_handley_page%1:18:00:: 11220149 1 0 -sir_frederick_william_herschel%1:18:00:: 11045898 1 0 -sir_galahad%1:18:00:: 10987176 1 0 -sir_gawain%1:18:00:: 10992933 1 0 -sir_geoffrey_wilkinson%1:18:00:: 11387806 1 0 -sir_george_otto_trevelyan%1:18:00:: 11348356 1 0 -sir_george_paget_thomson%1:18:00:: 11340411 1 0 -sir_geraint%1:18:00:: 10996533 1 0 -sir_hans_adolf_krebs%1:18:00:: 11110617 1 0 -sir_harold_george_nicolson%1:18:00:: 11206544 1 0 -sir_harold_walter_kroto%1:18:00:: 11111335 1 0 -sir_harry_maclennan_lauder%1:18:00:: 11118886 1 0 -sir_henry_bessemer%1:18:00:: 10849873 1 0 -sir_henry_joseph_wood%1:18:00:: 11395773 1 0 -sir_henry_maxmilian_beerbohm%1:18:00:: 10841241 1 0 -sir_henry_morgan%1:18:00:: 11190774 1 0 -sir_henry_morton_stanley%1:18:00:: 11313011 1 0 -sir_henry_percy%1:18:00:: 11229499 1 0 -sir_henry_rider_haggard%1:18:00:: 11022001 1 0 -sir_henry_wood%1:18:00:: 11395773 1 0 -sir_herbert_beerbohm_tree%1:18:00:: 11348160 1 0 -sir_hiram_stevens_maxim%1:18:00:: 11166060 1 0 -sir_howard_walter_florey%1:18:00:: 10973497 1 0 -sir_humphrey_davy%1:18:00:: 10925132 1 0 -sir_humphrey_gilbert%1:18:00:: 10999202 1 0 -sir_isaac_newton%1:18:00:: 11205375 1 0 -sir_isaac_pitman%1:18:00:: 11236043 1 0 -sir_jack_hobbs%1:18:00:: 11053218 1 0 -sir_jacob_epstein%1:18:00:: 10959664 1 0 -sir_james_augustus_henry_murray%1:18:00:: 11197099 1 0 -sir_james_augustus_murray%1:18:00:: 11197099 1 0 -sir_james_clark_ross%1:18:00:: 11271094 1 0 -sir_james_dewar%1:18:00:: 10932696 1 0 -sir_james_george_frazer%1:18:00:: 10979694 1 0 -sir_james_matthew_barrie%1:18:00:: 10835022 1 0 -sir_james_murray%1:18:00:: 11197099 1 0 -sir_james_paget%1:18:00:: 11220319 1 0 -sir_james_paul_mccartney%1:18:00:: 11167952 1 0 -sir_james_young_simpson%1:18:00:: 11301597 1 0 -sir_john_carew_eccles%1:18:00:: 10947922 1 0 -sir_john_cockcroft%1:18:00:: 10903918 1 0 -sir_john_cowdery_kendrew%1:18:00:: 11100619 1 0 -sir_john_douglas_cockcroft%1:18:00:: 10903918 1 0 -sir_john_everett_millais%1:18:00:: 11179666 1 0 -sir_john_falstaff%1:18:00:: 09598750 1 0 -sir_john_frederick_william_herschel%1:18:00:: 11046169 1 0 -sir_john_gielgud%1:18:00:: 10998860 1 0 -sir_john_hawkins%1:18:00:: 11035132 1 0 -sir_john_hawkyns%1:18:00:: 11035132 1 0 -sir_john_herschel%1:18:00:: 11046169 1 0 -sir_john_ross%1:18:00:: 11271349 1 0 -sir_john_suckling%1:18:00:: 11323448 1 0 -sir_john_tenniel%1:18:00:: 11335226 1 0 -sir_john_vanbrigh%1:18:00:: 11358598 1 0 -sir_joseph_banks%1:18:00:: 10833425 1 0 -sir_joseph_john_thomson%1:18:00:: 11340146 1 0 -sir_joseph_paxton%1:18:00:: 11227499 1 0 -sir_joshua_reynolds%1:18:00:: 11258769 1 0 -sir_karl_raimund_popper%1:18:00:: 11242849 1 0 -sir_lancelot%1:18:00:: 11115293 1 0 -sir_laurence_kerr_olivier%1:18:00:: 11214320 1 0 -sir_leonard_hutton%1:18:00:: 11069430 1 0 -sir_leonard_woolley%1:18:00:: 11397094 1 0 -sir_leslie_stephen%1:18:00:: 11316567 1 0 -sir_martin_frobisher%1:18:00:: 10983503 1 0 -sir_matthew_flinders%1:18:00:: 10973339 1 0 -sir_mortimer_wheeler%1:18:00:: 11383278 1 0 -sir_noel_pierce_coward%1:18:00:: 10913641 1 0 -sir_oliver_joseph_lodge%1:18:00:: 11136973 1 0 -sir_oliver_lodge%1:18:00:: 11136973 1 0 -sir_patrick_manson%1:18:00:: 11154646 1 0 -sir_paul_gavrilovich_vinogradoff%1:18:00:: 11366895 1 0 -sir_peter_brian_medawar%1:18:00:: 11170913 1 0 -sir_peter_paul_rubens%1:18:00:: 11273104 1 0 -sir_peter_ustinov%1:18:00:: 11358065 1 0 -sir_philip_sidney%1:18:00:: 11299672 1 0 -sir_rabindranath_tagore%1:18:00:: 11329030 1 0 -sir_ralph_david_richardson%1:18:00:: 11261184 1 0 -sir_rex_harrison%1:18:00:: 11031995 1 0 -sir_richard_burton%1:18:00:: 10875249 1 0 -sir_richard_francis_burton%1:18:00:: 10875249 1 0 -sir_richard_owen%1:18:00:: 11218938 1 0 -sir_richrd_steele%1:18:00:: 11314119 1 0 -sir_robert_eric_mortimer_wheeler%1:18:00:: 11383278 1 0 -sir_robert_peel%1:18:00:: 11228039 1 0 -sir_robert_robinson%1:18:00:: 11266524 1 0 -sir_robert_walpole%1:18:00:: 11372372 1 0 -sir_roger_gilbert_bannister%1:18:00:: 10833595 1 0 -sir_ronald_ross%1:18:00:: 11270948 1 0 -sir_sarvepalli_radhakrishnan%1:18:00:: 11251995 1 0 -sir_seretse_khama%1:18:00:: 11103864 1 0 -sir_stephen_harold_spender%1:18:00:: 11310523 1 0 -sir_terence_mervyn_rattigan%1:18:00:: 11254950 1 0 -sir_thomas_gresham%1:18:00:: 11015420 1 0 -sir_thomas_lawrence%1:18:00:: 11120633 1 0 -sir_thomas_malory%1:18:00:: 11152331 1 0 -sir_thomas_more%1:18:00:: 11190183 1 0 -sir_thomas_raffles%1:18:00:: 11252222 1 0 -sir_thomas_stamford_raffles%1:18:00:: 11252222 1 0 -sir_thomas_wyat%1:18:00:: 11399446 1 0 -sir_thomas_wyatt%1:18:00:: 11399446 1 0 -sir_tim_rice%1:18:00:: 11259777 1 0 -sir_tom_stoppard%1:18:00:: 11320245 1 0 -sir_walter_norman_haworth%1:18:00:: 11035363 1 0 -sir_walter_ralegh%1:18:00:: 11252627 1 0 -sir_walter_raleigh%1:18:00:: 11252627 1 0 -sir_walter_scott%1:18:00:: 11289161 1 0 -sir_william_alexander_craigie%1:18:00:: 10914134 1 0 -sir_william_chambers%1:18:00:: 10889905 1 0 -sir_william_crookes%1:18:00:: 10916505 1 0 -sir_william_gerald_golding%1:18:00:: 11004731 1 0 -sir_william_gilbert%1:18:00:: 10999584 1 0 -sir_william_herschel%1:18:00:: 11045898 1 0 -sir_william_huggins%1:18:00:: 11064472 1 0 -sir_william_rowan_hamilton%1:18:00:: 11026231 1 0 -sir_william_turner_walton%1:18:00:: 11373231 1 0 -sir_william_wallace%1:18:00:: 11371778 1 0 -sir_william_walton%1:18:00:: 11373231 1 0 -sir_winston_leonard_spenser_churchill%1:18:00:: 10897312 1 0 -sir_yehudi_menuhin%1:18:00:: 11175040 1 0 -sirach%1:10:00:: 06460295 1 0 -siracusa%1:15:00:: 08810051 1 0 -siraj-ud-daula%1:18:00:: 11303132 1 0 -sirc%1:14:00:: 08346905 1 0 -sirdar%1:18:00:: 10601644 1 0 -sire%1:05:00:: 01323355 3 0 -sire%1:18:00:: 10102800 2 0 -sire%1:18:01:: 10601725 1 0 -sire%2:29:00:: 00054628 1 3 -siren%1:05:00:: 01639187 5 0 -siren%1:06:00:: 04224395 4 0 -siren%1:10:00:: 07265789 3 0 -siren%1:18:00:: 10055410 2 0 -siren%1:18:01:: 10601840 1 0 -siren_call%1:07:00:: 04687633 1 0 -siren_song%1:07:00:: 04687633 1 0 -sirenia%1:05:00:: 02073041 1 0 -sirenian%1:05:00:: 02073250 1 0 -sirenian_mammal%1:05:00:: 02073250 1 0 -sirenidae%1:05:00:: 01638952 1 0 -siriasis%1:26:00:: 14204586 1 0 -siris%1:20:00:: 11759609 1 0 -siris_tree%1:20:00:: 11759609 1 0 -sirius%1:17:00:: 09435965 1 0 -sirloin%1:13:00:: 07658958 1 1 -sirloin_steak%1:13:00:: 07659684 1 0 -sirloin_tip%1:13:00:: 07659560 1 0 -sirocco%1:19:00:: 11448153 1 0 -sirrah%1:18:00:: 10602119 1 0 -sirup%1:13:00:: 07859583 1 0 -sis%1:18:00:: 10602985 1 1 -sisal%1:20:00:: 12477401 2 0 -sisal%1:27:00:: 15042654 1 0 -sisal_family%1:20:00:: 12476036 1 0 -sisal_hemp%1:27:00:: 15042654 1 0 -sise%1:23:00:: 13744722 1 0 -sisham%1:20:00:: 12522894 1 0 -siskin%1:05:00:: 01531512 1 0 -siskiyou_lewisia%1:20:00:: 11860208 1 0 -sison%1:20:00:: 12944590 1 0 -sison_amomum%1:20:00:: 12944723 1 0 -siss%2:32:00:: 01053771 2 0 -siss%2:32:01:: 01054186 1 0 -sissified%5:00:00:unmanly:00 01476325 1 0 -sissiness%1:07:00:: 04668139 1 0 -sissoo%1:20:00:: 12522894 1 0 -sissu%1:20:00:: 12522894 1 0 -sissy%1:18:00:: 10603378 1 0 -sissy%5:00:00:unmanly:00 01476325 1 0 -sissyish%5:00:00:unmanly:00 01476325 1 0 -sister%1:18:00:: 10602985 1 20 -sister%1:18:01:: 10602470 2 0 -sister%1:18:02:: 10602258 3 0 -sister%1:18:03:: 09827363 4 0 -sister-in-law%1:18:00:: 10603766 1 1 -sister_ship%1:06:00:: 04224543 1 0 -sisterhood%1:14:00:: 08075647 3 0 -sisterhood%1:14:01:: 08407449 2 0 -sisterhood%1:24:00:: 13814184 1 0 -sisterlike%3:00:00:: 00291665 1 0 -sisterly%3:00:00:: 00291665 1 0 -sistership%1:14:00:: 08407449 2 0 -sistership%1:24:00:: 13814184 1 0 -sistine_chapel%1:06:00:: 04224671 1 0 -sistrurus%1:05:00:: 01757547 1 0 -sistrurus_catenatus%1:05:00:: 01757677 1 0 -sistrurus_miliaris%1:05:00:: 01757901 1 0 -sisymbrium_barbarea%1:20:00:: 11874081 1 0 -sisymbrium_officinale%1:20:00:: 11897116 1 0 -sisymbrium_tanacetifolia%1:20:00:: 11889205 1 0 -sisyphean%3:01:00:: 02798167 1 0 -sisyphean%5:00:00:effortful:00 00837868 2 0 -sisyphus%1:18:00:: 09498697 1 0 -sisyridae%1:05:00:: 02267644 1 0 -sisyrinchium%1:20:00:: 12418065 1 0 -sit%2:33:00:: 01095581 10 0 -sit%2:35:00:: 01543123 1 134 -sit%2:35:01:: 01543998 9 0 -sit%2:38:00:: 01984902 3 10 -sit%2:38:01:: 02024874 4 6 -sit%2:38:03:: 01957529 6 1 -sit%2:39:00:: 02142775 5 1 -sit%2:41:05:: 02456270 8 0 -sit%2:42:00:: 02692882 2 33 -sit%2:42:05:: 02691214 7 0 -sit-down%1:04:00:: 01243969 1 1 -sit-down_strike%1:04:00:: 01243969 1 0 -sit-in%1:04:00:: 01178850 1 0 -sit-up%1:04:00:: 00630786 1 0 -sit_around%2:42:00:: 02692882 1 0 -sit_back%2:29:00:: 00026941 1 3 -sit_back%2:41:00:: 02374099 2 1 -sit_by%2:41:00:: 02374099 1 1 -sit_down%2:35:00:: 01543998 2 1 -sit_down%2:35:03:: 01543123 3 1 -sit_down%2:38:00:: 01984902 1 38 -sit_in%2:41:00:: 02543482 2 0 -sit_in%2:42:00:: 02613140 1 0 -sit_out%2:31:00:: 00670179 2 0 -sit_out%2:42:00:: 02726543 1 1 -sit_tight%2:30:00:: 00118922 1 0 -sit_up%2:29:00:: 00020259 1 3 -sit_up%2:38:01:: 02098680 2 1 -sita%1:18:00:: 09531296 1 0 -sitar%1:06:00:: 04224842 1 0 -sitar_player%1:18:00:: 10603851 1 0 -sitcom%1:10:00:: 07017379 2 0 -sitcom%1:10:01:: 07017733 1 0 -site%1:10:00:: 06359193 3 0 -site%1:15:00:: 08651247 1 51 -site%1:15:02:: 08622950 2 1 -site%2:40:00:: 02333689 1 0 -site_visit%1:04:00:: 00652311 1 0 -sitka%1:15:00:: 09056278 1 0 -sitka_spruce%1:20:00:: 11626152 1 0 -sitka_willow%1:20:00:: 12730370 1 0 -sitophylus%1:05:00:: 02182796 1 0 -sitophylus_oryzae%1:05:00:: 02182930 1 0 -sitotroga%1:05:00:: 02293974 1 0 -sitotroga_cerealella%1:05:00:: 02294097 1 0 -sitsang%1:15:00:: 08906952 1 0 -sitta%1:05:00:: 01590837 1 0 -sitta_canadensis%1:05:00:: 01591123 1 0 -sitta_carolinensis%1:05:00:: 01591301 1 0 -sitta_europaea%1:05:00:: 01591005 1 0 -sitter%1:05:00:: 01792955 5 0 -sitter%1:18:00:: 09829305 3 0 -sitter%1:18:01:: 10603959 2 0 -sitter%1:18:02:: 09813219 4 0 -sitter%1:18:03:: 11303522 1 0 -sittidae%1:05:00:: 01590443 1 0 -sitting%1:04:00:: 00344259 2 1 -sitting%1:04:01:: 00344421 1 1 -sitting%1:10:00:: 07146190 4 0 -sitting%1:14:00:: 08417920 3 0 -sitting%3:00:02:: 01240029 1 1 -sitting%5:00:00:nonmoving:00 01565139 2 0 -sitting_bull%1:18:00:: 11303698 1 0 -sitting_duck%1:18:00:: 10604089 1 0 -sitting_room%1:06:00:: 03679712 1 2 -sitting_trot%1:04:00:: 00287889 1 0 -situate%2:35:00:: 01575675 2 1 -situate%2:42:00:: 02694933 1 3 -situated%5:00:00:settled:01 02126430 1 2 -situation%1:04:00:: 00586262 5 0 -situation%1:15:00:: 08622950 4 0 -situation%1:26:00:: 13927383 1 66 -situation%1:26:01:: 13925752 2 18 -situation%1:26:02:: 14411243 3 0 -situation_comedy%1:10:00:: 07017379 2 0 -situation_comedy%1:10:01:: 07017733 1 0 -sitwell%1:18:00:: 11304011 1 0 -sitz_bath%1:06:00:: 04225031 1 0 -sium%1:20:00:: 12944960 1 0 -sium_latifolium%1:20:00:: 12945366 1 0 -sium_sisarum%1:20:00:: 12945549 1 0 -sium_suave%1:20:00:: 12945177 1 0 -siva%1:18:00:: 09528727 1 0 -sivaism%1:09:00:: 06238931 2 0 -sivaism%1:14:00:: 08097072 1 0 -sivan%1:28:00:: 15216189 1 0 -sivapithecus%1:05:00:: 02477782 1 0 -siwan%1:28:00:: 15216189 1 0 -six%1:06:00:: 04225417 2 0 -six%1:23:00:: 13744722 1 6 -six%5:00:00:cardinal:00 02186833 1 77 -six-day_war%1:04:00:: 01302449 1 0 -six-fold%5:00:00:multiple:00 02219770 1 0 -six-footer%1:18:00:: 10604180 1 0 -six-gilled_shark%1:05:00:: 01483021 1 0 -six-gun%1:06:00:: 04086273 1 0 -six-lined_racerunner%1:05:00:: 01686044 1 0 -six-membered%5:00:00:membered:00 01503179 1 0 -six-pack%1:06:00:: 04225222 1 0 -six-pointed%5:00:00:pointed:00 01811277 1 0 -six-shooter%1:06:00:: 04086273 1 0 -six-sided%5:00:00:multilateral:00 00238564 1 0 -six-spot%1:06:00:: 04225417 1 0 -six_day_war%1:04:00:: 01302449 1 0 -six_nations%1:14:00:: 08305277 1 0 -six_pack%1:06:00:: 04225222 1 0 -six_times%4:02:00:: 00455508 1 0 -sixer%1:23:00:: 13744722 1 0 -sixfold%4:02:00:: 00455508 1 0 -sixfold%5:00:00:multiple:00 02219770 1 0 -sixpack%1:06:00:: 04225222 1 0 -sixpence%1:21:00:: 13391452 1 0 -sixpenny%5:00:00:cheap:00 00935359 1 0 -sixpenny_nail%1:06:00:: 04225337 1 0 -sixsome%1:14:00:: 07987689 1 0 -sixteen%1:23:00:: 13747606 1 0 -sixteen%5:00:00:cardinal:00 02187903 1 5 -sixteen_personality_factor_questionnaire%1:10:00:: 06475933 1 0 -sixteenth%1:23:00:: 13738585 2 0 -sixteenth%1:24:00:: 13848466 1 0 -sixteenth%5:00:00:ordinal:00 02204131 1 2 -sixteenth_note%1:10:00:: 06871534 1 0 -sixteenth_part%1:23:00:: 13738585 1 0 -sixth%1:10:00:: 06859925 3 0 -sixth%1:23:00:: 13737952 2 0 -sixth%1:24:00:: 13847402 1 0 -sixth%5:00:00:ordinal:00 02202854 1 12 -sixth-former%1:18:00:: 10604275 1 0 -sixth_baron_byron_of_rochdale%1:18:00:: 10877253 1 0 -sixth_cranial_nerve%1:08:00:: 05479108 1 0 -sixth_crusade%1:04:00:: 00970079 1 0 -sixth_sense%1:09:00:: 05708207 1 0 -sixthly%4:02:00:: 00455668 1 0 -sixties%1:28:00:: 15150013 2 1 -sixties%1:28:01:: 15150134 1 6 -sixtieth%1:23:00:: 13738840 2 0 -sixtieth%1:24:00:: 13849296 1 0 -sixtieth%5:00:00:ordinal:00 02208385 1 0 -sixtus_iv%1:18:00:: 11304139 1 0 -sixty%1:23:00:: 13749778 1 0 -sixty%5:00:00:cardinal:00 02192184 1 7 -sixty-eight%5:00:00:cardinal:00 02192947 1 0 -sixty-fifth%5:00:00:ordinal:00 02208608 1 0 -sixty-five%5:00:00:cardinal:00 02192662 1 0 -sixty-four%5:00:00:cardinal:00 02192567 1 0 -sixty-fourth%1:23:00:: 13738939 1 0 -sixty-fourth%5:00:00:ordinal:00 02208492 1 0 -sixty-fourth_note%1:10:00:: 06871828 1 0 -sixty-nine%1:04:00:: 00855407 1 0 -sixty-nine%5:00:00:cardinal:00 02193046 1 0 -sixty-one%5:00:00:cardinal:00 02192284 1 0 -sixty-seven%5:00:00:cardinal:00 02192849 1 0 -sixty-six%5:00:00:cardinal:00 02192756 1 0 -sixty-three%5:00:00:cardinal:00 02192469 1 0 -sixty-two%5:00:00:cardinal:00 02192376 1 0 -sizable%5:00:00:considerable:00 00624576 2 0 -sizable%5:00:00:large:00 01383394 1 2 -size%1:07:00:: 05098942 1 70 -size%1:07:01:: 05095691 2 3 -size%1:07:02:: 05099231 5 0 -size%1:26:00:: 13937727 4 0 -size%1:27:00:: 14706372 3 0 -size%2:30:00:: 00319214 3 0 -size%2:31:00:: 00655987 2 0 -size%2:35:00:: 01610278 1 0 -size%5:00:00:sized:00 02224362 1 2 -size_constancy%1:09:00:: 05709766 1 0 -size_of_it%1:26:00:: 13937727 1 1 -size_stick%1:06:00:: 04225578 1 0 -size_up%2:39:00:: 02153387 1 2 -sizeable%5:00:00:considerable:00 00624576 2 0 -sizeable%5:00:00:large:00 01383394 1 0 -sizeableness%1:07:00:: 05104548 1 0 -sized%3:00:00:: 02222053 1 2 -sized%3:00:01:: 02225287 2 0 -sizing%1:27:00:: 14706372 1 0 -sizz%2:32:00:: 01053771 2 0 -sizz%2:32:01:: 01054186 1 0 -sizzle%1:11:00:: 07393919 1 0 -sizzle%2:30:00:: 00377906 3 0 -sizzle%2:32:00:: 00862591 1 1 -sizzle%2:37:00:: 01767818 2 0 -sizzling%5:00:00:hot:01 01249962 1 2 -sizzling%5:00:02:hot:02 01256973 2 0 -sjaelland%1:15:00:: 08761697 1 0 -sk-ampicillin%1:06:00:: 02705651 1 0 -skag%1:06:00:: 02837416 1 0 -skagens_odde%1:17:00:: 09436132 1 0 -skagerak%1:17:00:: 09436299 1 0 -skagerrak%1:17:00:: 09436299 1 0 -skagit%1:10:00:: 06914331 2 0 -skagit%1:18:00:: 09669942 1 0 -skagway%1:15:00:: 09056476 1 0 -skanda%1:18:00:: 09529013 1 0 -skank%1:04:00:: 00527319 2 0 -skank%1:27:00:: 14856752 1 0 -skank%2:38:00:: 02048586 1 0 -skanky%5:00:00:offensive:01 01625893 1 0 -skate%1:05:00:: 01501160 2 0 -skate%1:06:00:: 04225729 1 0 -skate%2:38:00:: 01936753 1 0 -skate_over%2:41:00:: 02516255 1 1 -skateboard%1:06:00:: 04225987 1 0 -skateboard%2:38:00:: 01937795 1 0 -skateboarder%1:18:00:: 10604380 1 0 -skateboarding%1:04:00:: 00449054 1 0 -skater%1:18:00:: 10604491 1 0 -skating%1:04:00:: 00448466 1 0 -skating_rink%1:06:00:: 04093625 1 0 -skaw%1:17:00:: 09436132 1 0 -skeat%1:18:00:: 11304354 1 0 -skedaddle%1:04:00:: 00060747 1 0 -skedaddle%2:38:00:: 02075764 1 3 -skeen_arch%1:06:00:: 04226172 1 0 -skeet%1:04:00:: 00124342 1 1 -skeet_shooting%1:04:00:: 00124342 1 0 -skeeter_hawk%1:05:00:: 02268443 1 0 -skeg%1:06:00:: 04226322 1 0 -skein%1:06:00:: 04226464 1 0 -skeletal%3:01:00:: 02935725 1 13 -skeletal%5:00:00:thin:03 00988988 2 0 -skeletal_frame%1:06:00:: 04226537 1 0 -skeletal_muscle%1:08:00:: 05289861 1 0 -skeletal_structure%1:08:00:: 05585665 1 0 -skeletal_system%1:08:00:: 05585383 1 0 -skeleton%1:06:00:: 04226537 4 0 -skeleton%1:08:00:: 05585383 3 0 -skeleton%1:11:00:: 07306481 2 0 -skeleton%1:23:00:: 13763626 1 0 -skeleton_fork_fern%1:20:00:: 13217005 1 0 -skeleton_in_the_closet%1:11:00:: 07306481 1 0 -skeleton_in_the_cupboard%1:11:00:: 07306481 1 0 -skeleton_key%1:06:00:: 04226826 1 0 -skeleton_shrimp%1:05:00:: 01993525 1 0 -skene_arch%1:06:00:: 04226172 1 0 -skep%1:06:00:: 04226962 2 0 -skep%1:06:01:: 04227050 1 0 -skepful%1:23:00:: 13769994 1 0 -skeptic%1:18:00:: 10604634 1 3 -skeptical%5:00:00:distrustful:00 02463847 2 2 -skeptical%5:00:00:incredulous:00 00647247 1 3 -skeptically%4:02:00:: 00446593 1 0 -skepticism%1:09:00:: 05698982 1 1 -skepticism%1:09:01:: 05980051 2 0 -sketch%1:06:00:: 04227144 1 15 -sketch%1:10:00:: 06469694 3 2 -sketch%1:10:02:: 06780678 4 0 -sketch%1:10:03:: 07203016 2 6 -sketch%2:32:00:: 01006421 2 1 -sketch%2:36:00:: 01697628 1 4 -sketch_block%1:06:00:: 04227370 1 0 -sketch_map%1:06:00:: 04227618 1 1 -sketch_pad%1:06:00:: 04227370 1 1 -sketchbook%1:06:00:: 04227370 1 0 -sketcher%1:06:00:: 04227519 2 0 -sketcher%1:18:00:: 10604880 1 0 -sketchily%4:02:00:: 00455780 1 0 -sketchiness%1:26:00:: 14462565 1 0 -sketchy%5:00:00:incomplete:00 00525105 1 0 -skew%2:30:00:: 00466484 1 0 -skew%5:00:00:inclined:01 01235706 1 0 -skew-eyed%5:00:00:eyed:00 00954864 1 0 -skew-whiff%4:02:00:: 00272169 1 0 -skew-whiff%5:00:00:crooked:01 02312450 1 0 -skew_arch%1:06:00:: 04227787 1 0 -skew_correlation%1:09:00:: 06031657 1 0 -skewed%5:00:00:inclined:01 01235706 1 0 -skewer%1:06:00:: 04227900 1 0 -skewer%2:35:00:: 01444563 1 0 -skewness%1:07:00:: 05066195 1 0 -ski%1:06:00:: 04228054 1 0 -ski%2:38:00:: 01938426 1 0 -ski-plane%1:06:00:: 04230487 1 0 -ski_binding%1:06:00:: 04228215 1 0 -ski_boot%1:06:00:: 04228581 1 0 -ski_cap%1:06:00:: 04228693 1 0 -ski_conditions%1:26:00:: 13926068 1 0 -ski_jacket%1:06:00:: 04230387 1 0 -ski_jump%1:06:00:: 04229620 1 0 -ski_jump%2:38:00:: 01965331 1 0 -ski_jumper%1:18:00:: 10605375 1 0 -ski_jumping%1:04:00:: 00441073 1 0 -ski_lift%1:06:00:: 04231693 1 0 -ski_lodge%1:06:00:: 04229737 1 0 -ski_mask%1:06:00:: 04229816 1 0 -ski_parka%1:06:00:: 04230387 1 0 -ski_pole%1:06:00:: 04230603 1 0 -ski_race%1:11:00:: 07463733 1 0 -ski_rack%1:06:00:: 04230707 1 0 -ski_resort%1:15:00:: 08652376 1 0 -ski_run%1:06:00:: 04231575 1 0 -ski_slope%1:17:00:: 09436444 1 0 -ski_tow%1:06:00:: 04231693 1 0 -ski_trail%1:06:00:: 04231575 1 0 -ski_wax%1:27:00:: 15042772 1 0 -skiagram%1:06:00:: 04042358 1 0 -skiagraph%1:06:00:: 04042358 1 0 -skiagraphy%1:22:00:: 13545382 1 0 -skibob%1:06:00:: 04228422 1 0 -skid%1:04:00:: 00329031 3 0 -skid%1:06:00:: 04228844 1 0 -skid%1:06:01:: 02890940 2 0 -skid%2:38:00:: 01870275 4 0 -skid%2:38:01:: 01871217 3 0 -skid%2:38:02:: 01975121 2 0 -skid%2:38:03:: 01870867 1 3 -skid_lid%1:06:00:: 04229107 1 0 -skid_road%1:06:00:: 04229363 2 0 -skid_road%1:15:00:: 08652156 1 0 -skid_row%1:15:00:: 08652256 1 0 -skidder%1:06:00:: 04229007 3 0 -skidder%1:18:00:: 10604979 2 0 -skidder%1:18:01:: 10605088 1 0 -skidpan%1:06:00:: 04229195 1 0 -skier%1:18:00:: 10605253 1 0 -skiff%1:06:00:: 04229480 1 7 -skiffle%1:10:00:: 07066459 1 0 -skiffle_group%1:14:00:: 08250635 1 0 -skiing%1:04:00:: 00440747 1 0 -skiing_race%1:11:00:: 07463733 1 0 -skilful%5:00:00:skilled:00 02226162 1 0 -skilfully%4:02:00:: 00455933 1 0 -skill%1:09:00:: 05636887 2 10 -skill%1:09:01:: 05637558 1 39 -skilled%3:00:00:: 02225510 1 11 -skilled_worker%1:18:00:: 10605985 1 5 -skilled_workman%1:18:00:: 10605985 1 0 -skillet%1:06:00:: 03400231 1 0 -skillet_bread%1:13:00:: 07685546 1 0 -skillet_cake%1:13:00:: 07634141 1 0 -skillet_corn_bread%1:13:00:: 07688130 1 0 -skillet_fish%1:05:00:: 02635781 1 0 -skilletfish%1:05:00:: 02635781 1 0 -skillful%5:00:00:precise:00 01838916 2 0 -skillful%5:00:00:skilled:00 02226162 1 3 -skillfully%4:02:00:: 00455933 1 3 -skillfulness%1:09:00:: 05640433 1 0 -skilly%1:13:00:: 07704305 1 0 -skim%1:10:00:: 06598746 2 0 -skim%1:17:00:: 09436531 1 0 -skim%2:31:00:: 00627824 7 0 -skim%2:35:00:: 01247550 2 1 -skim%2:35:01:: 01261018 6 0 -skim%2:35:02:: 01515924 4 0 -skim%2:35:03:: 01261263 5 0 -skim%2:38:00:: 01942718 1 1 -skim%2:39:00:: 02152278 3 0 -skim%5:00:00:nonfat:00 00993316 1 0 -skim_milk%1:13:00:: 07846557 1 0 -skim_off%2:31:00:: 00677445 2 0 -skim_off%2:35:00:: 01261018 1 2 -skim_over%2:31:00:: 00627824 1 1 -skim_over%2:35:00:: 01247550 2 0 -skimcoat%2:35:00:: 01362136 1 0 -skimmed%5:00:00:nonfat:00 00993316 1 0 -skimmed_milk%1:13:00:: 07846557 1 0 -skimmer%1:05:00:: 02043808 4 0 -skimmer%1:06:00:: 02859184 3 0 -skimmer%1:06:01:: 04229959 2 0 -skimmer%1:18:00:: 10605510 1 0 -skimming%1:04:00:: 01262574 1 1 -skimming%1:04:01:: 00784271 3 0 -skimming%1:04:02:: 00150762 4 0 -skimming%1:10:00:: 06598746 2 0 -skimp%2:40:00:: 02345498 3 0 -skimp%2:40:01:: 02225739 4 0 -skimp%2:41:00:: 02516437 1 0 -skimp%2:41:01:: 02509820 2 0 -skimp_over%2:41:00:: 02516255 1 0 -skimpily%4:02:00:: 00456103 1 0 -skimpy%5:00:00:insufficient:00 02337188 1 0 -skin%1:05:01:: 01895735 3 3 -skin%1:06:01:: 04230093 2 3 -skin%1:06:02:: 04230221 6 0 -skin%1:08:00:: 05238282 1 11 -skin%1:13:00:: 07738353 5 0 -skin%1:26:00:: 13962048 4 2 -skin%2:35:00:: 01262936 4 0 -skin%2:35:01:: 01263784 3 0 -skin%2:35:02:: 01309478 2 0 -skin%2:38:00:: 01921772 1 0 -skin-deep%5:00:00:superficial:00 01875437 1 0 -skin-dive%1:04:00:: 00444651 1 0 -skin-dive%2:38:00:: 01963130 1 0 -skin-diver%1:18:00:: 10607291 1 0 -skin-tight%5:00:00:tight:01 01448058 1 0 -skin_and_bones%1:18:00:: 10708797 1 0 -skin_cancer%1:26:00:: 14252320 1 0 -skin_care%1:04:00:: 00665679 1 0 -skin_cell%1:08:00:: 05241072 1 0 -skin_color%1:07:00:: 04976952 1 0 -skin_colour%1:07:00:: 04976952 1 0 -skin_disease%1:26:00:: 14219661 1 0 -skin_disorder%1:26:00:: 14219661 1 0 -skin_diving%1:04:00:: 00444651 1 0 -skin_doctor%1:18:00:: 10006177 1 0 -skin_effect%1:19:00:: 11507797 1 0 -skin_eruption%1:26:00:: 14321814 1 0 -skin_flick%1:10:00:: 06617413 1 0 -skin_graft%1:08:00:: 05239437 1 0 -skin_over%2:29:00:: 00099089 1 0 -skin_patch%1:06:00:: 04470741 1 0 -skin_perceptiveness%1:09:00:: 05721990 1 1 -skin_pop%2:34:00:: 01199661 1 0 -skin_rash%1:26:00:: 14321953 1 0 -skin_sensation%1:09:00:: 05723210 1 0 -skin_senses%1:09:00:: 05655119 1 0 -skin_test%1:09:00:: 05745098 1 0 -skin_tumor%1:26:00:: 14235667 1 0 -skincare%1:04:00:: 00665679 1 0 -skinflint%1:18:00:: 10357737 1 0 -skinful%1:23:00:: 13769672 1 0 -skinhead%1:18:00:: 10607478 1 0 -skinheads%1:14:00:: 08371200 1 0 -skink%1:05:00:: 01684133 1 0 -skinless%3:00:00:: 02597781 1 0 -skinned%3:00:00:: 02597496 1 0 -skinner%1:18:00:: 11304461 3 0 -skinner%1:18:01:: 11304669 2 0 -skinner%1:18:02:: 11304811 1 0 -skinner%1:18:03:: 10607706 4 0 -skinner%1:18:04:: 10338094 5 0 -skinnerian%1:18:00:: 10605608 1 0 -skinnerian%3:01:00:: 03027538 1 0 -skinniness%1:07:00:: 05001724 1 0 -skinny%1:10:00:: 07218853 1 0 -skinny%3:01:00:: 02935913 2 0 -skinny%5:00:00:stingy:00 01113225 4 0 -skinny%5:00:00:thin:03 00990192 1 2 -skinny%5:00:00:tight:01 01448178 3 0 -skinny-dip%1:04:00:: 00442654 1 0 -skinny-dip%2:38:00:: 01962498 1 0 -skinny-dipper%1:18:00:: 10605737 1 0 -skint%5:00:00:poor:00 02023287 1 0 -skintight%5:00:00:tight:01 01448058 1 0 -skip%1:04:00:: 00074624 2 0 -skip%1:04:01:: 00289906 1 0 -skip%2:31:01:: 00616498 1 7 -skip%2:35:00:: 01515924 6 0 -skip%2:38:00:: 01966861 3 1 -skip%2:38:02:: 02010698 4 0 -skip%2:38:03:: 01892734 5 0 -skip%2:42:00:: 02613860 2 1 -skip-bomb%2:33:00:: 01132880 1 0 -skip_distance%1:07:00:: 05130402 1 0 -skip_over%2:31:00:: 00616498 1 0 -skip_rope%1:06:00:: 03605233 1 0 -skip_town%2:30:00:: 00427558 1 0 -skipjack%1:05:01:: 02628600 1 0 -skipjack%1:05:02:: 02628062 2 0 -skipjack%1:05:03:: 02176439 3 0 -skipjack_tuna%1:05:00:: 02628600 1 0 -skipper%1:18:00:: 09892831 3 0 -skipper%1:18:01:: 10298912 2 0 -skipper%1:18:02:: 10607824 1 0 -skipper%2:41:00:: 02447001 1 0 -skipping_rope%1:06:00:: 03605233 1 0 -skirl%1:11:00:: 07393988 1 0 -skirl%2:36:00:: 01726762 2 0 -skirl%2:39:00:: 02177846 1 0 -skirmish%1:04:00:: 00959376 1 3 -skirmish%2:33:00:: 01123765 1 1 -skirmisher%1:18:00:: 10605848 1 7 -skirret%1:20:00:: 12945549 1 0 -skirt%1:06:00:: 04230808 2 2 -skirt%1:06:01:: 04231272 1 4 -skirt%1:18:00:: 09989045 4 0 -skirt%1:20:00:: 13095348 3 0 -skirt%2:32:00:: 00809654 1 2 -skirt%2:35:00:: 01467370 4 0 -skirt%2:38:00:: 02052090 2 1 -skirt%2:42:00:: 02703711 3 0 -skirt_chaser%1:18:00:: 10787197 1 0 -skirt_of_tasses%1:06:00:: 04231444 1 0 -skirting%5:00:00:peripheral:00 00332091 1 0 -skirting_board%1:06:00:: 02800354 1 0 -skit%1:04:00:: 00551508 1 1 -skitter%2:35:00:: 01448917 4 0 -skitter%2:35:01:: 01515924 3 0 -skitter%2:38:00:: 01902405 1 0 -skitter%2:38:01:: 01888048 2 0 -skittish%5:00:00:excitable:00 00919155 1 0 -skittishly%4:02:00:: 00456204 1 0 -skittishness%1:07:00:: 04625716 1 0 -skittle%1:06:00:: 03825271 1 0 -skittle%2:33:00:: 01146697 1 0 -skittle_alley%1:06:00:: 02882014 1 0 -skittle_ball%1:06:00:: 03825442 1 0 -skittle_pin%1:06:00:: 03825271 1 0 -skittles%1:04:00:: 00462383 1 0 -skive%2:35:00:: 01249046 1 0 -skivvies%1:06:00:: 04231905 1 0 -skivvy%1:18:00:: 10607933 1 0 -skopje%1:15:00:: 08961852 1 0 -skoplje%1:15:00:: 08961852 1 0 -skreak%2:32:00:: 01048939 2 0 -skreak%2:39:00:: 02171664 1 0 -skreigh%2:32:00:: 01048939 1 0 -skua%1:05:00:: 02044778 1 0 -skuld%1:18:00:: 09582845 1 0 -skulduggery%1:10:00:: 06760722 1 0 -skulk%2:38:00:: 01918521 3 0 -skulk%2:41:00:: 02464132 2 0 -skulk%2:42:00:: 02640053 1 1 -skulker%1:18:00:: 10277352 2 0 -skulker%1:18:01:: 10286539 1 0 -skulking%1:04:00:: 00741272 1 1 -skull%1:08:00:: 05540121 1 5 -skull_and_crossbones%1:06:00:: 04232034 1 0 -skull_practice%1:04:00:: 00896114 1 0 -skull_session%1:04:00:: 00896114 2 0 -skull_session%1:10:00:: 07147733 1 0 -skullcap%1:06:00:: 04232153 1 1 -skullcap%1:08:00:: 05540407 3 0 -skullcap%1:20:00:: 12867826 2 0 -skullduggery%1:10:00:: 06760722 1 0 -skunk%1:05:00:: 02445715 4 0 -skunk%1:06:00:: 03990834 3 0 -skunk%1:11:00:: 07476495 2 0 -skunk%1:18:00:: 10539715 1 1 -skunk%2:33:00:: 01103693 1 0 -skunk-weed%1:20:00:: 12810151 1 0 -skunk_bear%1:05:00:: 02449183 1 0 -skunk_cabbage%1:20:01:: 11792742 1 0 -skunk_cabbage%1:20:02:: 11789066 2 0 -skunkbush%1:20:00:: 12764507 1 0 -skunkweed%1:20:00:: 12810151 1 0 -sky%1:17:00:: 09436708 1 49 -sky%2:35:00:: 01512625 1 0 -sky-blue%1:07:00:: 04969242 1 0 -sky-blue%5:00:00:chromatic:00 00370267 1 0 -sky-high%4:02:00:: 00456320 3 0 -sky-high%4:02:01:: 00456484 2 0 -sky-high%4:02:02:: 00456610 1 0 -sky_burial%1:11:00:: 07451903 1 0 -sky_dive%2:38:00:: 01968045 1 0 -sky_glow%1:19:00:: 11463647 1 0 -sky_marshal%1:18:00:: 09781171 1 0 -sky_pilot%1:18:00:: 10316527 1 0 -sky_wave%1:19:00:: 11500122 1 0 -skybox%1:06:00:: 04232312 1 0 -skycap%1:18:00:: 10608073 1 0 -skydive%2:38:00:: 01968045 1 0 -skydiver%1:18:00:: 10608188 1 0 -skydiving%1:04:00:: 00304040 1 0 -skye_terrier%1:05:00:: 02097786 1 0 -skyhook%1:06:00:: 04232437 2 0 -skyhook%1:06:01:: 04232543 1 0 -skyjack%2:35:00:: 01472251 1 0 -skylab%1:06:00:: 04232691 1 0 -skylark%1:05:00:: 01527917 1 0 -skylark%2:38:00:: 01883716 1 1 -skylight%1:06:00:: 04232800 1 3 -skyline%1:15:00:: 08585657 2 0 -skyline%1:15:01:: 08651735 1 0 -skyrocket%1:06:00:: 04232902 2 0 -skyrocket%1:10:00:: 07263053 1 0 -skyrocket%2:38:00:: 01944086 1 0 -skysail%1:06:00:: 04233027 1 0 -skyscraper%1:06:00:: 04233124 1 1 -skywalk%1:06:00:: 04233295 1 0 -skyward%4:02:00:: 00260919 1 0 -skyward%5:00:00:up:00 02491171 1 0 -skywards%4:02:00:: 00260919 1 0 -skyway%1:15:00:: 08492546 1 0 -skywriting%1:10:00:: 06403852 1 0 -sl%1:14:00:: 08044676 1 0 -slab%1:06:00:: 04233405 1 3 -slabber%2:29:00:: 00102974 1 0 -slack%1:06:00:: 04233556 6 0 -slack%1:07:00:: 04775357 5 0 -slack%1:17:00:: 09436906 3 0 -slack%1:17:01:: 09355850 4 0 -slack%1:22:00:: 13556509 2 0 -slack%1:27:00:: 14858099 1 0 -slack%2:30:00:: 00536535 3 0 -slack%2:30:03:: 00441212 4 0 -slack%2:30:04:: 00245289 6 0 -slack%2:30:05:: 00440580 5 0 -slack%2:30:06:: 00214624 8 0 -slack%2:30:07:: 00245059 7 0 -slack%2:31:00:: 00616361 2 0 -slack%2:41:00:: 02464342 1 0 -slack%5:00:00:lax:01 02404421 1 5 -slack%5:00:00:negligent:00 00755482 3 0 -slack%5:00:00:standing:02 01241455 2 0 -slack_off%2:30:01:: 00245059 1 0 -slack_suit%1:06:00:: 04233832 1 0 -slack_tide%1:11:00:: 07403779 1 0 -slack_up%2:30:00:: 00441212 1 0 -slack_water%1:11:00:: 07403779 2 0 -slack_water%1:17:00:: 09436906 1 0 -slacken%2:30:00:: 00421408 3 0 -slacken%2:30:01:: 00421125 4 0 -slacken%2:30:02:: 00440580 1 4 -slacken%2:30:03:: 00441212 2 1 -slacken_off%2:30:00:: 00156485 1 0 -slackening%1:11:00:: 07443210 1 0 -slacker%1:18:00:: 10608385 1 0 -slacking%1:04:00:: 00741478 1 0 -slackly%4:02:00:: 00179442 1 0 -slackness%1:07:00:: 04775357 2 0 -slackness%1:07:01:: 04666416 3 0 -slackness%1:07:02:: 05042138 1 0 -slacks%1:06:00:: 04233715 1 4 -slag%1:27:00:: 15042856 1 0 -slag%2:30:00:: 00585907 1 0 -slag_code%1:10:00:: 06585203 1 0 -slagheap%1:14:00:: 07962991 1 0 -slain%1:14:00:: 07950592 1 1 -slain%5:00:01:dead:01 00098147 1 0 -slake%2:30:00:: 00245289 2 0 -slake%2:30:03:: 00214624 3 0 -slake%2:34:00:: 01204021 1 0 -slaked%5:00:00:mitigated:00 01519673 1 0 -slaked_lime%1:27:00:: 14936010 1 0 -slalom%1:11:00:: 07463950 1 0 -slalom%2:38:00:: 01939037 1 0 -slam%1:10:00:: 06767922 4 0 -slam%1:11:00:: 07474645 1 0 -slam%1:11:01:: 07338970 3 0 -slam%1:11:02:: 07394115 2 0 -slam%2:35:00:: 01242391 2 8 -slam%2:35:01:: 01242832 1 8 -slam%2:35:02:: 01242689 4 0 -slam%2:38:00:: 01897885 3 0 -slam-bang%4:02:00:: 00457288 3 0 -slam-bang%4:02:01:: 00457428 2 0 -slam-bang%4:02:02:: 00457545 1 0 -slam-bang%5:00:00:violent:00 02512794 1 0 -slam-dunk%2:35:00:: 01597832 2 0 -slam-dunk%2:41:00:: 02602685 1 0 -slam_dance%1:04:00:: 00527498 1 0 -slam_dance%2:38:00:: 01897885 1 0 -slam_dancing%1:04:00:: 00527498 1 0 -slam_dunk%1:04:00:: 00110745 2 0 -slam_dunk%1:07:00:: 04757350 1 0 -slam_on%2:35:00:: 01364997 1 1 -slammer%1:06:00:: 03592245 2 0 -slammer%1:18:00:: 10608658 1 0 -slander%1:04:01:: 01220336 2 0 -slander%1:10:00:: 06720600 1 0 -slander%2:32:00:: 00846509 1 0 -slanderer%1:18:00:: 09999135 1 0 -slanderous%5:00:00:harmful:00 01161233 1 0 -slanderously%4:02:00:: 00456790 1 0 -slang%1:10:00:: 07157273 2 0 -slang%1:10:01:: 07159467 1 0 -slang%2:32:00:: 00845658 3 0 -slang%2:32:01:: 00854904 2 0 -slang%2:32:02:: 00964110 1 0 -slang_expression%1:10:00:: 07159467 1 0 -slang_term%1:10:00:: 07159467 1 0 -slangily%4:02:00:: 00456954 1 0 -slanginess%1:07:00:: 04912506 1 0 -slanguage%1:10:00:: 07281523 1 0 -slangy%5:00:00:informal:02 01046784 1 0 -slant%1:07:00:: 05069199 2 1 -slant%1:09:00:: 06211078 1 1 -slant%2:31:00:: 00680485 2 1 -slant%2:38:00:: 02038357 3 0 -slant%2:38:01:: 01884577 4 0 -slant%2:42:00:: 02692558 1 1 -slant-eye%1:18:00:: 09643799 1 0 -slanted%5:00:00:inclined:01 01234747 1 1 -slanted%5:00:00:partial:01 01723091 2 0 -slanting%5:00:00:inclined:01 01234747 1 3 -slantingly%4:02:00:: 00457072 1 1 -slantways%4:02:00:: 00457171 1 0 -slantwise%4:02:00:: 00457171 1 1 -slap%1:04:00:: 00133668 2 0 -slap%1:11:00:: 07410745 1 0 -slap%2:35:00:: 01416871 1 15 -slap%4:02:00:: 00277585 1 0 -slap-bang%4:02:00:: 00457288 2 0 -slap-bang%4:02:01:: 00457662 1 0 -slap-up%5:00:00:good:01 01123879 1 0 -slap_on%2:35:00:: 01364997 1 0 -slap_together%2:36:00:: 01623365 1 0 -slapdash%4:02:00:: 00457545 1 0 -slapdash%4:02:01:: 00277585 2 0 -slapdash%5:00:00:careless:00 00312519 1 0 -slaphappy%5:00:00:confused:00 00437223 2 0 -slaphappy%5:00:00:irresponsible:00 01998260 1 0 -slapper%1:18:00:: 10608803 1 0 -slapshot%1:04:00:: 01264795 1 0 -slapstick%1:06:00:: 04233960 2 0 -slapstick%1:10:00:: 07017877 1 1 -slapstick%5:00:00:humorous:00 01267632 1 0 -slash%1:04:00:: 00388065 4 0 -slash%1:10:00:: 06844903 3 0 -slash%1:17:00:: 09437098 2 0 -slash%1:26:00:: 14287113 1 0 -slash%2:30:00:: 00430261 4 2 -slash%2:35:00:: 01322509 3 3 -slash%2:35:01:: 01322675 1 7 -slash%2:35:02:: 01411085 2 3 -slash%2:38:00:: 01890792 5 0 -slash_pocket%1:06:00:: 04234260 1 0 -slashed%5:00:00:cut:03 00663981 2 1 -slashed%5:00:00:decreased:00 00882742 3 0 -slashed%5:00:00:patterned:00 01790348 1 1 -slasher%1:06:00:: 04234160 2 0 -slasher%1:18:00:: 10609092 1 0 -slashing%5:00:00:dynamic:00 00810355 1 1 -slask%1:15:00:: 09166534 1 0 -slat%1:06:00:: 04234455 1 2 -slat%2:35:01:: 01220528 2 0 -slat%2:40:00:: 02336684 1 0 -slate%1:06:00:: 04234670 1 1 -slate%1:10:02:: 06495948 4 0 -slate%1:27:00:: 14700162 3 0 -slate%1:27:01:: 15043002 2 0 -slate%2:31:00:: 00709844 1 2 -slate%2:35:00:: 01338368 3 0 -slate%2:41:00:: 02397106 2 0 -slate-black%5:00:00:achromatic:00 00391806 1 0 -slate-colored_junco%1:05:00:: 01534582 1 0 -slate-gray%5:00:00:achromatic:00 00391897 1 0 -slate-grey%5:00:00:achromatic:00 00391897 1 0 -slate_club%1:14:00:: 08230294 1 0 -slate_pencil%1:06:00:: 04234763 1 0 -slate_roof%1:06:00:: 04234887 1 2 -slater%1:05:01:: 01991028 1 0 -slatey%5:00:00:achromatic:00 00391897 1 0 -slather%2:35:00:: 01379449 1 0 -slating%1:04:00:: 01105152 3 0 -slating%1:10:00:: 06712498 2 0 -slating%1:27:00:: 15043002 1 0 -slattern%1:18:00:: 10609198 2 0 -slattern%1:18:01:: 10663315 1 0 -slatternliness%1:07:00:: 04896995 1 0 -slatternly%5:00:00:untidy:00 02424716 1 0 -slaty%5:00:00:achromatic:00 00391897 1 0 -slaty-gray%5:00:00:achromatic:00 00391897 1 0 -slaty-grey%5:00:00:achromatic:00 00391897 1 0 -slaughter%1:04:00:: 00223854 1 3 -slaughter%1:04:01:: 00223983 3 0 -slaughter%1:11:00:: 07476623 2 1 -slaughter%2:30:00:: 00479176 2 2 -slaughter%2:35:00:: 01322854 1 3 -slaughterer%1:18:00:: 09884133 1 0 -slaughterhouse%1:06:00:: 02666943 1 0 -slaughterous%5:00:00:bloody:00 00249104 1 0 -slav%1:18:00:: 09676884 1 0 -slav%3:01:00:: 03118661 1 0 -slave%1:18:00:: 10609325 1 18 -slave%1:18:01:: 10609556 2 1 -slave%1:18:02:: 10609686 3 0 -slave%2:41:00:: 02421199 1 0 -slave-maker%1:05:00:: 02221820 1 0 -slave-making_ant%1:05:00:: 02221820 1 0 -slave_ant%1:05:00:: 02221571 1 0 -slave_dealer%1:18:00:: 10610201 1 1 -slave_driver%1:18:00:: 10609871 2 0 -slave_driver%1:18:01:: 10609960 1 0 -slave_market%1:06:00:: 04234969 1 0 -slave_owner%1:18:00:: 10610096 1 0 -slave_ship%1:06:00:: 04235165 1 0 -slave_state%1:15:00:: 09049909 1 0 -slave_trade%1:04:00:: 01114284 1 1 -slave_trader%1:18:00:: 10610201 1 0 -slave_traffic%1:04:00:: 01114284 1 0 -slaveholder%1:18:00:: 10610096 1 0 -slaveholding%1:04:00:: 00415442 1 0 -slaveholding%5:00:00:unfree:01 01066441 1 0 -slaveless%5:00:00:free:01 01065941 1 0 -slavelike%5:00:00:servile:00 00791044 1 0 -slaver%1:18:00:: 10610201 1 0 -slaver%1:18:01:: 10610096 2 0 -slaver%2:29:00:: 00102974 1 1 -slavery%1:04:00:: 00623545 3 0 -slavery%1:04:01:: 00415442 2 1 -slavery%1:26:00:: 13997253 1 9 -slavey%1:18:00:: 10607933 1 0 -slavic%1:10:00:: 06943771 1 2 -slavic%3:01:00:: 03118790 1 0 -slavic_language%1:10:00:: 06943771 1 0 -slavic_people%1:18:00:: 09676746 1 0 -slavic_race%1:18:00:: 09676746 1 0 -slavish%5:00:00:servile:00 00790691 2 0 -slavish%5:00:00:unoriginal:00 01689775 1 0 -slavishly%4:02:00:: 00457757 1 0 -slavonic%1:10:00:: 06943771 1 0 -slavonic%3:01:00:: 03118790 1 0 -slavonic_language%1:10:00:: 06943771 1 0 -slaw%1:13:00:: 07808587 1 0 -slay%2:41:00:: 02482425 1 0 -slayer%1:18:00:: 10231087 1 0 -slaying%1:04:00:: 00220522 1 0 -sle%1:26:00:: 14221311 1 0 -sleaze%1:07:00:: 04818460 1 0 -sleaziness%1:07:00:: 04816761 2 0 -sleaziness%1:07:01:: 04874223 1 0 -sleazy%5:00:00:disreputable:00 01984806 3 0 -sleazy%5:00:00:inferior:02 02346013 2 0 -sleazy%5:00:00:thin:01 02414908 1 0 -sled%1:06:00:: 04235291 1 0 -sled%2:38:00:: 01939174 1 0 -sled_dog%1:05:00:: 02109811 1 0 -sledder%1:18:00:: 10610333 1 0 -sledding%1:04:00:: 00447073 1 0 -sledding%1:04:01:: 00048051 2 0 -sledge%1:06:00:: 03731695 2 0 -sledge%1:06:01:: 04235291 1 0 -sledge%2:35:00:: 01416732 3 0 -sledge%2:38:01:: 01954741 1 0 -sledge%2:38:02:: 01846099 2 0 -sledge_dog%1:05:00:: 02109811 1 0 -sledgehammer%1:06:00:: 03731695 1 0 -sledgehammer%2:35:00:: 01416732 1 0 -sleek%2:35:00:: 01245986 1 0 -sleek%5:00:00:bright:00 00282675 3 0 -sleek%5:00:00:groomed:00 02427981 1 0 -sleek%5:00:01:smooth:00 02238128 2 0 -sleek_down%2:29:00:: 00038687 1 0 -sleek_over%2:39:00:: 02148109 1 0 -sleekly%4:02:00:: 00457884 1 0 -sleekness%1:07:00:: 04947494 2 0 -sleekness%1:07:01:: 04950336 1 0 -sleep%1:26:00:: 14024882 1 23 -sleep%1:26:01:: 13962765 4 0 -sleep%1:26:02:: 14025993 2 1 -sleep%1:28:00:: 15273626 3 0 -sleep%2:29:00:: 00014742 1 58 -sleep%2:42:00:: 02701445 2 0 -sleep-learning%1:04:00:: 00892538 1 0 -sleep_apnea%1:26:00:: 14370267 1 0 -sleep_around%2:38:00:: 02095390 1 0 -sleep_deprivation%1:04:00:: 00424186 1 0 -sleep_disorder%1:26:00:: 14297696 1 0 -sleep_in%2:29:00:: 00015806 1 1 -sleep_in%2:34:00:: 01177314 2 0 -sleep_late%2:29:00:: 00015806 1 0 -sleep_off%2:40:00:: 02288042 1 1 -sleep_out%2:34:00:: 01177505 1 0 -sleep_over%2:42:00:: 02652729 1 0 -sleep_talking%1:04:00:: 00285387 1 0 -sleep_terror_disorder%1:26:00:: 14025258 1 0 -sleep_together%2:35:00:: 01426397 1 0 -sleep_with%2:35:00:: 01426397 1 1 -sleeper%1:04:00:: 00064370 9 0 -sleeper%1:05:00:: 02619861 8 0 -sleeper%1:06:00:: 04236001 5 0 -sleeper%1:06:01:: 04433585 4 0 -sleeper%1:06:02:: 04235646 7 0 -sleeper%1:06:03:: 04235771 6 0 -sleeper%1:18:00:: 10610465 1 1 -sleeper%1:18:01:: 10610699 3 0 -sleeper%1:18:02:: 10610850 2 0 -sleeper_cell%1:14:00:: 08358824 1 0 -sleeper_goby%1:05:00:: 02619861 1 0 -sleeper_nest%1:14:00:: 08244532 1 0 -sleepily%4:02:00:: 00457998 1 1 -sleepiness%1:26:00:: 14030435 1 0 -sleeping%1:04:00:: 00858188 3 0 -sleeping%1:04:01:: 01064863 2 0 -sleeping%1:09:00:: 05681117 1 1 -sleeping%5:00:00:unerect:00 01238914 1 0 -sleeping_accommodation%1:06:00:: 02821627 1 0 -sleeping_around%1:04:00:: 00856342 1 0 -sleeping_bag%1:06:00:: 04235860 1 1 -sleeping_beauty%1:14:00:: 08076455 3 0 -sleeping_beauty%1:18:00:: 10611117 1 1 -sleeping_beauty%1:18:01:: 10611267 2 0 -sleeping_capsule%1:06:00:: 04236182 1 1 -sleeping_car%1:06:00:: 04236001 1 0 -sleeping_draught%1:06:00:: 04236182 1 0 -sleeping_hibiscus%1:20:00:: 12184095 1 0 -sleeping_partner%1:18:00:: 10598459 1 0 -sleeping_pill%1:06:00:: 04236182 1 1 -sleeping_room%1:06:00:: 02821627 1 0 -sleeping_sickness%1:26:00:: 14343735 1 0 -sleeping_tablet%1:06:00:: 04236182 1 0 -sleepless%5:00:00:alert:00 00092391 2 0 -sleepless%5:00:00:awake:00 00187176 1 0 -sleepless_person%1:18:00:: 10208748 1 0 -sleeplessly%4:02:00:: 00458141 1 0 -sleeplessness%1:26:00:: 14022959 1 0 -sleepover%1:11:00:: 07455984 1 0 -sleepwalk%2:38:00:: 01916960 1 0 -sleepwalker%1:18:00:: 10611361 1 1 -sleepwalking%1:04:00:: 00285141 1 0 -sleepwear%1:06:00:: 03825080 1 0 -sleepy%5:00:00:asleep:00 00189017 1 6 -sleepy-eyed%5:00:00:asleep:00 00189017 1 1 -sleepy_dick%1:20:00:: 12459882 1 0 -sleepy_sickness%1:26:00:: 14343735 1 0 -sleepyhead%1:18:00:: 10611541 1 0 -sleepyheaded%5:00:00:asleep:00 00189017 1 0 -sleet%1:19:00:: 11507951 1 0 -sleet%2:43:00:: 02759254 1 0 -sleety%5:00:00:frozen:00 01079396 1 0 -sleeve%1:06:00:: 04236377 1 5 -sleeve%1:06:02:: 04236702 2 0 -sleeved%3:00:00:: 02256868 1 0 -sleeveless%3:00:00:: 02257038 1 0 -sleeveless%5:00:00:unproductive:00 01866812 2 0 -sleigh%1:06:00:: 04235291 1 0 -sleigh%2:38:00:: 01939174 1 0 -sleigh_bed%1:06:00:: 04236809 1 0 -sleigh_bell%1:06:00:: 04236935 1 0 -sleight%1:09:00:: 05642815 1 0 -sleight_of_hand%1:04:00:: 00552312 1 0 -slender%5:00:00:graceful:00 01140290 5 1 -slender%5:00:00:narrow:00 02562566 2 3 -slender%5:00:00:small:00 01394744 4 1 -slender%5:00:00:thin:01 02415025 3 1 -slender%5:00:00:thin:03 00990855 1 6 -slender-bodied%5:00:00:bodied:00 00628881 1 0 -slender-tailed_meerkat%1:05:00:: 02138647 1 0 -slender-waisted%5:00:00:thin:03 00991189 1 1 -slender-winged%5:00:00:winged:00 02567918 1 0 -slender_centaury%1:20:00:: 12291671 1 0 -slender_knapweed%1:20:00:: 11941094 1 0 -slender_lady_palm%1:20:00:: 12596345 1 0 -slender_loris%1:05:00:: 02498743 1 0 -slender_rush%1:20:00:: 11744471 1 0 -slender_salamander%1:05:00:: 01637615 1 0 -slender_spike_rush%1:20:00:: 12153914 1 0 -slender_wheatgrass%1:20:00:: 12106323 1 0 -slender_wild_oat%1:20:00:: 12110352 1 0 -slenderise%2:30:00:: 00326170 1 0 -slenderize%2:29:00:: 00045817 2 0 -slenderize%2:30:00:: 00326170 1 0 -slenderly%4:02:00:: 00458270 1 0 -slenderly%4:02:01:: 00396699 2 0 -slenderness%1:07:00:: 05117406 1 0 -slenderness%1:07:01:: 05002155 3 0 -slenderness%1:07:02:: 05103648 2 0 -sleuth%1:18:00:: 10611613 1 0 -sleuth%2:32:00:: 00785690 1 0 -sleuthhound%1:05:00:: 02088466 2 0 -sleuthhound%1:18:00:: 10611613 1 0 -sleuthing%1:04:00:: 00635205 1 0 -slew%1:23:00:: 13774404 1 0 -slew%2:38:00:: 02033295 1 0 -slew%2:38:01:: 01870275 2 0 -slews%1:23:00:: 13777509 1 0 -slezsko%1:15:00:: 09166534 1 0 -slice%1:04:00:: 00572043 4 1 -slice%1:06:00:: 04237086 6 0 -slice%1:13:00:: 07654667 2 2 -slice%1:17:00:: 09437241 5 0 -slice%1:21:00:: 13286524 1 3 -slice%1:26:00:: 14287113 3 1 -slice%2:33:00:: 01124389 4 1 -slice%2:35:00:: 01254477 3 1 -slice%2:35:01:: 01559055 1 2 -slice%2:35:02:: 01408958 2 1 -slice_bar%1:06:00:: 04237174 1 0 -slice_into%2:38:00:: 01916033 1 0 -slice_through%2:38:00:: 01916033 1 0 -slice_up%2:35:00:: 01254477 1 1 -sliced%5:00:00:carved:00 00317727 2 0 -sliced%5:00:00:cut:01 00661640 1 0 -slicer%1:06:01:: 04237287 3 0 -slicer%1:06:02:: 04237423 2 0 -slicer%1:18:00:: 10611729 1 0 -slicing%1:04:00:: 00387424 2 0 -slicing%1:04:01:: 00572043 1 0 -slick%1:06:00:: 04237565 4 0 -slick%1:06:01:: 04237654 3 0 -slick%1:07:00:: 04947628 1 1 -slick%1:10:00:: 06596727 2 0 -slick%2:29:00:: 00038687 2 0 -slick%2:35:00:: 01245986 1 0 -slick%5:00:00:artful:00 00148078 4 0 -slick%5:00:00:bright:00 00282675 3 0 -slick%5:00:00:plausible:00 01799781 2 0 -slick%5:00:00:slippery:00 02235520 1 0 -slick_down%2:29:00:: 00038687 1 0 -slick_magazine%1:10:00:: 06596727 1 0 -slick_up%2:29:00:: 00043278 2 0 -slick_up%2:30:00:: 00293977 1 0 -slicked%5:00:00:groomed:00 02427718 1 0 -slicked_up%5:00:00:tidy:00 02423865 1 0 -slicker%1:06:00:: 03844815 1 2 -slicker%1:18:00:: 09998101 3 0 -slicker%1:18:01:: 10611869 2 0 -slickly%4:02:00:: 00238417 1 0 -slickness%1:07:01:: 04947628 3 0 -slickness%1:07:02:: 05095324 2 0 -slickness%1:10:00:: 06760722 1 0 -slide%1:04:00:: 00328502 5 1 -slide%1:06:00:: 03029603 7 0 -slide%1:06:01:: 04237773 6 0 -slide%1:06:02:: 04237924 1 2 -slide%1:06:03:: 04238128 4 1 -slide%1:10:00:: 06857264 3 1 -slide%1:11:00:: 07404944 2 1 -slide%2:38:00:: 01886488 2 14 -slide%2:38:01:: 01870275 1 18 -slide%2:38:02:: 02090990 3 3 -slide_action%1:06:00:: 04022434 1 1 -slide_by%2:38:00:: 02072849 1 0 -slide_down%2:38:00:: 01988886 1 0 -slide_fastener%1:06:00:: 04238321 1 0 -slide_projector%1:06:00:: 04238617 1 0 -slide_rule%1:06:00:: 04238763 1 0 -slide_valve%1:06:00:: 04238953 1 0 -slider%1:04:00:: 00109081 4 0 -slider%1:05:00:: 01668665 3 0 -slider%1:18:00:: 10275940 2 0 -slider%1:18:01:: 10605088 1 0 -slideway%1:06:00:: 03029603 1 0 -sliding%5:00:00:slippery:00 02235740 1 1 -sliding_board%1:06:00:: 04238128 1 0 -sliding_door%1:06:00:: 04239074 1 0 -sliding_keel%1:06:00:: 02994012 1 0 -sliding_scale%1:24:00:: 13853680 1 0 -sliding_seat%1:06:00:: 04239218 1 0 -sliding_window%1:06:00:: 04239333 1 0 -slight%1:04:00:: 01225783 1 2 -slight%2:31:00:: 00617413 1 0 -slight%3:00:00:: 01554510 1 0 -slight%5:00:00:insignificant:00 02164913 2 0 -slight%5:00:00:thin:03 00990855 3 0 -slight_care%1:04:00:: 01132472 1 0 -slighting%5:00:00:uncomplimentary:00 00906655 1 0 -slightingly%4:02:00:: 00317562 1 0 -slightly%4:02:01:: 00036291 1 26 -slightly%4:02:02:: 00458270 2 0 -slightness%1:07:00:: 05107216 2 0 -slightness%1:07:01:: 05002155 3 0 -slightness%1:07:02:: 05173205 1 0 -slim%2:29:00:: 00045817 1 0 -slim%5:00:00:small:00 01394744 2 0 -slim%5:00:00:thin:03 00990855 1 4 -slim-bodied%5:00:00:bodied:00 00628881 1 0 -slim-waisted%5:00:00:thin:03 00991189 1 1 -slim_chance%1:07:00:: 05093080 1 0 -slim_down%2:29:00:: 00045817 1 0 -slime%1:27:00:: 14956661 1 0 -slime%2:35:00:: 01252730 1 1 -slime_bacteria%1:05:00:: 01378545 1 0 -slime_eels%1:05:00:: 01478511 1 0 -slime_mold%1:20:00:: 12974987 1 0 -slime_mould%1:20:00:: 12974987 1 0 -slime_mushroom%1:20:00:: 13003846 1 0 -slimed%5:00:00:slippery:00 02235826 1 0 -sliminess%1:07:01:: 04935405 1 0 -sliminess%1:07:02:: 04781349 2 0 -slimly%4:02:00:: 00458270 1 0 -slimness%1:07:00:: 05002155 2 0 -slimness%1:07:01:: 05121095 1 0 -slimy%5:00:00:evil:00 01133017 2 0 -slimy%5:00:00:slippery:00 02235826 1 0 -sling%1:06:00:: 04239436 5 0 -sling%1:06:01:: 04240097 2 0 -sling%1:06:02:: 04239639 4 0 -sling%1:06:03:: 04239786 3 0 -sling%1:13:00:: 07917618 1 0 -sling%2:35:00:: 01514348 1 2 -sling%2:35:01:: 01601547 4 0 -sling%2:38:01:: 02105340 3 0 -sling%2:38:02:: 02105453 2 0 -slingback%1:06:00:: 04239786 1 0 -slinger%1:18:00:: 10611988 1 0 -slinger_ring%1:06:00:: 04239900 1 0 -slinging%1:04:00:: 00107016 1 1 -slingshot%1:06:00:: 04240097 1 1 -slink%2:38:00:: 01917123 1 2 -slip%1:04:00:: 00170710 14 0 -slip%1:04:02:: 00076196 1 4 -slip%1:04:03:: 00059376 15 0 -slip%1:04:04:: 00329031 13 0 -slip%1:04:05:: 00073828 2 1 -slip%1:06:00:: 03013580 11 0 -slip%1:06:02:: 02975412 12 0 -slip%1:06:03:: 04339291 9 0 -slip%1:06:04:: 04240327 10 0 -slip%1:07:00:: 04947628 8 0 -slip%1:11:00:: 07317519 7 0 -slip%1:15:00:: 08640111 6 0 -slip%1:18:00:: 10612104 5 0 -slip%1:20:00:: 13127473 4 0 -slip%1:27:00:: 14814295 3 0 -slip%2:30:00:: 00204391 4 4 -slip%2:30:03:: 00465762 11 0 -slip%2:30:04:: 00189669 2 7 -slip%2:31:00:: 00617748 6 1 -slip%2:31:01:: 00608978 10 0 -slip%2:38:00:: 01870275 3 6 -slip%2:38:01:: 01888295 1 11 -slip%2:38:02:: 02105549 8 0 -slip%2:38:05:: 02076280 5 2 -slip%2:38:12:: 02076501 9 0 -slip%2:40:10:: 02231328 7 0 -slip-joint_pliers%1:06:00:: 04240867 1 0 -slip-on%1:06:00:: 04241249 1 0 -slip-up%1:04:01:: 00073828 1 0 -slip_away%2:38:00:: 02072849 2 1 -slip_away%2:38:01:: 02076027 1 1 -slip_by%2:38:00:: 02072849 1 0 -slip_carriage%1:06:00:: 04240576 1 0 -slip_clutch%1:06:00:: 04240434 1 0 -slip_coach%1:06:00:: 04240576 1 0 -slip_friction_clutch%1:06:00:: 04240434 1 0 -slip_in%2:32:00:: 01025602 1 1 -slip_noose%1:06:00:: 03829563 1 0 -slip_of_paper%1:06:00:: 04240327 1 1 -slip_of_the_tongue%1:10:00:: 06770028 1 0 -slip_off%2:29:00:: 00051370 1 0 -slip_on%2:29:00:: 00051170 1 1 -slip_one's_mind%2:31:00:: 00608978 1 0 -slip_ring%1:06:00:: 04241573 1 0 -slip_road%1:06:00:: 02671988 1 0 -slip_stitch%1:06:00:: 04241782 1 0 -slip_up%2:31:00:: 00618057 1 0 -slipcover%1:06:00:: 04240752 1 0 -slipknot%1:06:00:: 04241042 1 0 -slipover%1:06:00:: 04021028 1 0 -slippage%1:04:00:: 00328885 3 0 -slippage%1:22:00:: 13556249 1 1 -slippage%1:22:01:: 13556377 2 0 -slipped_disc%1:26:00:: 14296579 1 0 -slipper%1:06:00:: 04241394 1 5 -slipper%1:18:00:: 10605088 2 0 -slipper-shaped%5:00:00:formed:00 02149695 1 0 -slipper_orchid%1:20:00:: 12056217 1 0 -slipper_plant%1:20:00:: 12928071 1 0 -slipper_spurge%1:20:00:: 12928071 1 0 -slippered%5:00:00:shod:00 02156505 1 1 -slipperiness%1:07:00:: 04947628 1 0 -slipperiness%1:07:01:: 04875728 2 0 -slipperwort%1:20:00:: 12879527 1 0 -slippery%3:00:00:: 02234781 1 3 -slippery%5:00:00:untrustworthy:00 02466734 2 0 -slippery_dick%1:05:00:: 02608860 1 0 -slippery_elm%1:20:00:: 12408280 1 0 -slipping%5:00:00:slippery:00 02235994 1 1 -slippy%3:00:00:: 02234781 1 0 -slipshod%5:00:00:careless:00 00312519 1 0 -slipskin_grape%1:13:00:: 07759691 1 0 -slipstick%1:06:00:: 04238763 1 0 -slipstream%1:19:00:: 11423197 1 0 -slipway%1:06:00:: 04565039 1 0 -slit%1:06:00:: 04241940 1 5 -slit%1:08:00:: 05521514 2 1 -slit%1:17:00:: 09437369 4 0 -slit%1:25:00:: 13904843 3 0 -slit%2:35:00:: 01558883 2 1 -slit%2:35:01:: 01559055 1 1 -slit_lamp%1:06:00:: 04242084 1 0 -slit_trench%1:06:00:: 04242315 1 0 -slither%2:38:00:: 01886488 1 0 -slithering%5:00:00:slippery:00 02235994 1 0 -slithery%5:00:00:slippery:00 02236146 1 0 -sliver%1:17:00:: 09385137 2 0 -sliver%1:17:01:: 09442838 1 0 -sliver%2:30:00:: 00337903 2 0 -sliver%2:30:01:: 00144314 3 0 -sliver%2:41:00:: 02469274 1 0 -slivery%3:01:00:: 02801349 1 1 -slivovitz%1:13:00:: 07904293 1 0 -slo-bid%1:06:00:: 04419315 1 0 -sloanea%1:20:00:: 12194466 1 0 -sloanea_jamaicensis%1:20:00:: 12194613 1 0 -slob%1:18:00:: 10612210 1 2 -slobber%1:08:00:: 05416678 1 0 -slobber%2:29:00:: 00102974 1 0 -slobber_over%2:37:00:: 01827745 1 0 -slobberer%1:18:00:: 10033663 1 0 -sloe%1:13:00:: 07752109 3 0 -sloe%1:20:01:: 12649723 2 0 -sloe%1:20:02:: 12638753 1 2 -sloe_gin%1:13:00:: 07904637 1 0 -slog%2:35:00:: 01415585 3 0 -slog%2:38:00:: 01921204 2 0 -slog%2:41:00:: 02415573 1 0 -slogan%1:10:00:: 07152259 1 1 -sloganeer%1:18:00:: 10612373 1 0 -sloganeer%2:36:00:: 01698152 1 0 -sloganeering%1:10:00:: 07246469 1 1 -slogger%1:18:00:: 09871095 3 0 -slogger%1:18:01:: 10442417 2 0 -slogger%1:18:02:: 10731848 1 0 -sloop%1:06:00:: 04242408 1 1 -sloop_of_war%1:06:00:: 04242587 1 0 -slop%1:10:00:: 06775969 5 0 -slop%1:13:00:: 07805006 1 1 -slop%1:13:01:: 07938427 4 0 -slop%1:27:00:: 14956523 2 0 -slop%1:27:01:: 14858451 3 0 -slop%2:34:00:: 01178220 4 0 -slop%2:35:00:: 01542207 1 2 -slop%2:35:01:: 01579488 3 0 -slop%2:38:00:: 01921591 2 1 -slop-seller%1:18:00:: 10612518 1 0 -slop_basin%1:06:00:: 04242704 1 0 -slop_bowl%1:06:00:: 04242704 1 0 -slop_chest%1:06:00:: 04242871 1 0 -slop_jar%1:06:00:: 04243003 1 0 -slop_pail%1:06:00:: 04243003 1 0 -slope%1:07:00:: 05068461 2 4 -slope%1:17:00:: 09437454 1 11 -slope%2:38:00:: 02037090 1 0 -sloped%5:00:00:inclined:01 01234747 1 0 -sloping%5:00:00:gradual:02 01144730 2 1 -sloping%5:00:00:inclined:01 01234747 1 2 -sloping_trough%1:06:00:: 03029603 1 0 -slopingly%4:02:00:: 00457072 1 0 -slopped%5:00:00:intoxicated:00 00798103 1 0 -sloppily%4:02:00:: 00458610 1 0 -sloppiness%1:07:00:: 04664964 3 0 -sloppiness%1:07:01:: 04627506 4 0 -sloppiness%1:26:00:: 14499734 2 0 -sloppiness%1:26:01:: 14535056 1 0 -sloppy%5:00:00:careless:00 00312519 6 0 -sloppy%5:00:00:emotional:00 00856511 5 0 -sloppy%5:00:00:loose:01 01446991 4 0 -sloppy%5:00:00:untidy:00 02426420 1 2 -sloppy%5:00:00:wet:01 02548066 3 0 -sloppy%5:00:01:wet:01 02550170 2 0 -sloppy_joe%1:13:00:: 07697699 1 0 -slops%1:06:00:: 04243142 2 0 -slops%1:13:00:: 07805006 1 0 -slopseller%1:18:00:: 10612518 1 0 -slopseller's_shop%1:06:00:: 04243251 1 0 -slopshop%1:06:00:: 04243251 1 0 -slosh%2:35:00:: 01374587 3 0 -slosh%2:38:00:: 01921591 2 0 -slosh%2:39:00:: 02186868 1 0 -slosh_around%2:35:00:: 01374587 1 0 -sloshed%5:00:00:intoxicated:00 00798103 1 0 -slot%1:06:00:: 04243370 2 1 -slot%1:06:01:: 04243546 7 0 -slot%1:06:02:: 04243727 6 0 -slot%1:10:00:: 06284573 1 3 -slot%1:17:00:: 09437887 5 0 -slot%1:26:00:: 14579623 4 0 -slot%1:28:00:: 15270245 3 0 -slot%2:31:00:: 00679112 1 1 -slot_machine%1:06:00:: 04243941 1 0 -sloth%1:04:00:: 00758795 3 0 -sloth%1:05:00:: 02456962 2 0 -sloth%1:07:01:: 04637444 1 0 -sloth_bear%1:05:00:: 02134418 1 0 -slothful%5:00:00:idle:00 00294579 1 0 -slothfulness%1:07:01:: 04637444 1 0 -slouch%1:07:00:: 05003273 2 0 -slouch%1:18:00:: 10612645 1 0 -slouch%2:38:00:: 01929824 2 0 -slouch%2:38:01:: 01989720 1 0 -slouch_hat%1:06:00:: 02987379 1 0 -sloucher%1:18:00:: 10612803 1 0 -slouchily%4:02:00:: 00458836 1 0 -slouchingly%4:02:00:: 00458721 1 0 -slouchy%5:00:00:untidy:00 02426550 1 0 -slough%1:17:00:: 09438055 4 0 -slough%1:17:01:: 09438212 3 0 -slough%1:17:02:: 09438313 2 0 -slough%1:26:00:: 14313440 1 0 -slough%2:29:00:: 00009147 1 0 -slough_grass%1:20:00:: 12139921 1 0 -slough_of_despond%1:26:00:: 14404831 1 0 -slough_off%2:35:00:: 01254912 2 0 -slough_off%2:40:00:: 02222846 1 0 -sloughing%1:22:00:: 13555599 1 0 -sloughy%5:00:00:wet:01 02548066 1 0 -slovak%1:10:00:: 06944820 2 0 -slovak%1:18:00:: 09699536 1 0 -slovak_republic%1:15:00:: 08759013 1 0 -slovakia%1:15:00:: 08759013 1 0 -slovakian%3:01:00:: 02964482 1 0 -slovakian_monetary_unit%1:23:00:: 13681530 1 0 -sloven%1:18:00:: 10612210 1 0 -slovene%1:10:00:: 06945010 2 0 -slovene%1:18:00:: 09731343 1 0 -slovenia%1:15:00:: 08818444 1 0 -slovenian%1:18:00:: 09749753 1 0 -slovenian%3:01:00:: 02964291 1 0 -slovenija%1:15:00:: 08818444 1 0 -slovenliness%1:07:00:: 04896878 2 0 -slovenliness%1:26:00:: 14499734 1 1 -slovenly%5:00:00:untidy:00 02425749 1 3 -slovenly_person%1:18:00:: 10612210 1 0 -slovenly_woman%1:18:00:: 10609198 1 0 -slow%2:30:00:: 00439958 1 9 -slow%2:30:01:: 00440580 2 2 -slow%2:30:05:: 00440786 3 1 -slow%3:00:01:: 00980527 1 23 -slow%3:00:02:: 00982602 2 3 -slow%3:00:03:: 00983722 4 0 -slow%4:02:00:: 00161630 1 2 -slow%4:02:01:: 00222879 2 0 -slow%5:00:00:inactive:03 00036998 6 0 -slow%5:00:00:stupid:00 00440579 3 1 -slow%5:00:00:uninteresting:00 01345307 5 0 -slow-moving%5:00:00:slow:01 00981612 1 1 -slow-witted%5:00:00:retarded:00 01840673 1 0 -slow-wittedness%1:09:00:: 05645854 1 0 -slow_down%2:29:00:: 00026385 5 0 -slow_down%2:30:00:: 00439958 1 5 -slow_down%2:30:01:: 00440580 2 2 -slow_down%2:30:02:: 00438495 4 0 -slow_down%2:30:04:: 00440786 3 1 -slow_lane%1:06:00:: 04244152 1 0 -slow_loris%1:05:00:: 02499022 1 0 -slow_match%1:06:00:: 04244278 1 0 -slow_motion%1:10:00:: 06617866 1 0 -slow_time_scale%1:28:00:: 15135057 1 0 -slow_up%2:30:01:: 00439958 3 0 -slow_up%2:30:02:: 00440786 2 0 -slow_up%2:30:03:: 00440580 1 1 -slow_virus%1:05:00:: 01341410 1 0 -slowcoach%1:18:00:: 10442232 1 0 -slowdown%1:04:00:: 01067577 1 0 -slower%4:02:00:: 00086621 1 0 -slowest%4:02:00:: 00086780 1 0 -slowgoing%5:00:00:unenterprising:00 00885594 1 0 -slowing%1:07:00:: 05061345 1 3 -slowly%4:02:01:: 00388494 2 0 -slowly%4:02:02:: 00161630 1 78 -slowness%1:07:00:: 05061977 2 1 -slowness%1:09:01:: 05646218 3 0 -slowness%1:09:02:: 05648459 1 2 -slowpoke%1:18:00:: 10442232 1 0 -slowworm%1:05:00:: 01690149 1 0 -sls%1:27:00:: 15045782 1 0 -slub%1:07:00:: 04948905 1 0 -slubbed%5:00:00:rough:00 02240795 1 0 -sludge%1:27:00:: 14956661 2 0 -sludge%1:27:01:: 14591804 1 4 -slue%2:38:00:: 02033295 1 0 -slue%2:38:01:: 01870275 2 0 -slug%1:04:00:: 00134780 8 0 -slug%1:05:00:: 01945685 7 0 -slug%1:06:00:: 02916350 1 4 -slug%1:06:01:: 04504935 6 0 -slug%1:13:00:: 07922607 5 0 -slug%1:18:00:: 10612931 4 0 -slug%1:21:00:: 13390788 3 0 -slug%1:23:00:: 13719102 2 0 -slug%2:35:00:: 01415585 1 7 -slug%2:41:00:: 02417504 2 0 -slugabed%1:18:00:: 10258896 1 0 -slugfest%1:04:00:: 01173826 1 0 -sluggard%1:18:00:: 10612931 1 0 -slugger%1:18:00:: 09843956 1 3 -slugger%1:18:01:: 09871095 2 0 -sluggish%5:00:00:inactive:01 00034322 3 0 -sluggish%5:00:00:inactive:03 00036998 2 0 -sluggish%5:00:01:slow:01 00981703 1 2 -sluggishly%4:02:00:: 00205929 1 1 -sluggishness%1:07:00:: 04635953 3 0 -sluggishness%1:07:01:: 05062518 2 0 -sluggishness%1:26:00:: 14014990 1 0 -sluice%1:06:00:: 04244379 1 1 -sluice%2:30:01:: 00455368 2 1 -sluice%2:38:00:: 01853882 4 0 -sluice%2:38:01:: 01854001 3 0 -sluice%2:43:00:: 02758399 1 1 -sluice_down%2:43:00:: 02758399 1 0 -sluice_valve%1:06:00:: 04244615 1 0 -sluicegate%1:06:00:: 04244615 1 0 -sluiceway%1:06:00:: 04244379 1 0 -sluicing%3:44:00:: 03153849 1 1 -slum%1:15:00:: 08651832 1 3 -slum%2:41:00:: 02492694 1 0 -slum_area%1:15:00:: 08651832 1 2 -slumber%1:26:00:: 14015148 2 0 -slumber%1:26:01:: 14024882 1 1 -slumber%2:29:00:: 00014742 1 2 -slumber_party%1:14:00:: 08256229 1 0 -slumberer%1:18:00:: 10610465 1 0 -slumberous%5:00:00:asleep:00 00189253 2 0 -slumberous%5:00:00:restful:00 01922410 1 0 -slumbery%5:00:00:asleep:00 00189253 1 0 -slumbrous%5:00:00:asleep:00 00189253 2 0 -slumbrous%5:00:00:restful:00 01922410 1 0 -slumgullion%1:13:00:: 07593107 1 0 -slummy%5:00:00:poor:03 02025885 1 0 -slump%1:22:00:: 13556509 1 2 -slump%1:26:00:: 14489113 2 0 -slump%2:30:00:: 00432839 3 1 -slump%2:38:00:: 01988886 2 1 -slump%2:38:01:: 01989720 1 4 -slump%2:38:03:: 01971603 4 0 -slur%1:07:00:: 04694441 3 0 -slur%1:10:00:: 06718543 2 0 -slur%1:10:01:: 06865953 1 0 -slur%2:30:00:: 00311113 4 0 -slur%2:32:00:: 01044811 3 0 -slur%2:32:01:: 01044891 2 0 -slur%2:36:00:: 01727866 1 0 -slur_over%2:41:00:: 02516255 1 0 -slurp%2:34:00:: 01169328 1 1 -slurred%5:00:00:unintelligible:00 01337314 1 1 -slurry%1:27:00:: 14591333 1 0 -slush%1:27:00:: 15043308 1 0 -slush%2:35:00:: 01374587 2 0 -slush%2:39:00:: 02186868 1 0 -slush_around%2:35:00:: 01374587 1 0 -slush_fund%1:21:00:: 13360390 1 0 -slushy%5:00:00:emotional:00 00854413 2 0 -slushy%5:00:00:unfrozen:00 01080060 1 0 -slut%1:18:00:: 09772930 2 0 -slut%1:18:01:: 10609198 1 0 -sluttish%5:00:00:unchaste:00 00361837 2 0 -sluttish%5:00:00:untidy:00 02424716 1 0 -sluttishness%1:07:00:: 04896995 1 0 -sluzhba_vneshney_razvedki%1:14:00:: 08343905 1 0 -sly%5:00:00:artful:00 00148078 1 1 -slyboots%1:18:00:: 10022759 1 0 -slyly%4:02:00:: 00293926 1 0 -slyness%1:09:00:: 05621178 1 0 -sm%1:10:00:: 06702139 2 0 -sm%1:27:00:: 14653596 1 0 -smack%1:04:00:: 00133668 6 0 -smack%1:04:01:: 00138599 5 0 -smack%1:06:00:: 02837416 4 0 -smack%1:06:01:: 04244847 3 0 -smack%1:09:00:: 05715864 2 0 -smack%1:11:00:: 07410745 1 0 -smack%2:34:00:: 01197208 5 0 -smack%2:35:01:: 01431879 4 0 -smack%2:35:02:: 01414916 1 2 -smack%2:39:12:: 02194495 3 0 -smack%2:39:13:: 02194723 2 1 -smack%4:02:00:: 00277585 1 0 -smacker%1:04:00:: 00138734 1 0 -smacker%1:04:01:: 00133875 2 0 -smacking%1:04:00:: 00133668 1 0 -small%1:07:00:: 05097081 2 0 -small%1:08:00:: 05559023 1 1 -small%3:00:00:: 01391351 1 213 -small%4:02:00:: 00225971 1 0 -small%5:00:00:decreased:00 00882580 10 0 -small%5:00:00:fine:00 02233680 8 0 -small%5:00:00:inferior:01 02340458 5 1 -small%5:00:00:limited:00 01415219 2 13 -small%5:00:00:little:03 01554940 4 2 -small%5:00:00:lowercase:00 01467534 6 1 -small%5:00:00:moderate:00 01532912 9 0 -small%5:00:00:soft:04 01455732 7 1 -small%5:00:00:young:00 01649031 3 8 -small-arm%1:06:00:: 03343853 1 2 -small-cap%3:01:00:: 03118960 1 0 -small-capitalisation%3:01:00:: 03118960 1 0 -small-capitalization%3:01:00:: 03118960 1 0 -small-eared%5:00:00:eared:00 00812785 1 0 -small-for-gestational-age_infant%1:18:00:: 10613198 1 0 -small-fruited%5:00:00:fruitful:00 01082456 1 0 -small-grained%5:00:00:fine:00 02233390 1 0 -small-leaved_lime%1:20:00:: 12203699 1 0 -small-leaved_linden%1:20:00:: 12203699 1 0 -small-minded%5:00:00:narrow-minded:00 00288498 1 0 -small-mindedly%4:02:00:: 00406638 1 0 -small-particle_pollution%1:26:00:: 14518219 1 0 -small-scale%5:00:00:limited:00 01415219 2 0 -small-scale%5:00:00:small:00 01395095 1 1 -small-seeded%5:00:00:seedy:00 02255840 1 0 -small-time%5:00:00:unimportant:00 01281695 1 1 -small-toothed%5:00:00:toothed:00 02439225 1 0 -small-winged%5:00:00:winged:00 02567999 1 0 -small_beer%1:06:00:: 04486445 1 0 -small_boat%1:06:00:: 04244997 1 0 -small_business_administration%1:14:00:: 08352994 1 0 -small_businessman%1:18:00:: 10613052 1 1 -small_calorie%1:23:00:: 13726296 1 0 -small_cane%1:20:00:: 12148439 1 0 -small_cap%1:10:00:: 06824955 2 0 -small_cap%1:14:00:: 08059250 1 0 -small_capital%1:10:00:: 06824955 1 0 -small_cell_carcinoma%1:26:00:: 14251616 1 0 -small_change%1:21:00:: 13388000 1 0 -small_civet%1:05:00:: 02135844 1 0 -small_computer_system_interface%1:06:00:: 04245218 1 0 -small_cranberry%1:20:00:: 12246037 1 0 -small_farmer%1:18:00:: 10613738 1 0 -small_fortune%1:23:00:: 13777211 1 1 -small_fry%1:18:00:: 10435251 1 0 -small_fry%1:18:01:: 09917593 2 0 -small_hours%1:28:00:: 15168369 1 0 -small_indefinite_amount%1:23:00:: 13760316 1 0 -small_indefinite_quantity%1:23:00:: 13760316 1 0 -small_intestine%1:08:00:: 05534712 1 2 -small_letter%1:10:00:: 06824757 1 0 -small_loan_company%1:14:00:: 08421100 1 0 -small_magellanic_cloud%1:17:00:: 09438408 1 0 -small_person%1:18:00:: 10613505 1 0 -small_print%1:10:00:: 06678506 2 0 -small_print%1:10:01:: 06761994 1 0 -small_ship%1:06:00:: 04245412 1 0 -small_slam%1:11:00:: 07474911 1 0 -small_stores%1:06:00:: 04245508 1 0 -small_stuff%1:06:00:: 04245703 1 0 -small_talk%1:10:00:: 07135080 1 0 -small_town%1:14:00:: 08226699 1 4 -small_voice%1:16:00:: 09184405 1 1 -small_white%1:05:00:: 02281015 1 0 -small_white_aster%1:20:00:: 11936864 1 0 -smaller%5:00:00:small:00 01394922 1 33 -smaller_pectoral_muscle%1:08:00:: 05552106 1 0 -smalley%1:18:00:: 11304912 1 0 -smalleye_hammerhead%1:05:00:: 01494882 1 0 -smallholder%1:18:00:: 10613387 1 0 -smallholding%1:21:00:: 13249245 1 0 -smallish%5:00:00:small:00 01395028 1 1 -smallmouth%1:05:00:: 02565072 1 0 -smallmouth_bass%1:05:00:: 02565072 2 0 -smallmouth_bass%1:13:00:: 07777840 1 0 -smallmouth_black_bass%1:05:00:: 02565072 1 0 -smallmouthed_bass%1:05:00:: 02565072 1 0 -smallmouthed_black_bass%1:05:00:: 02565072 1 0 -smallness%1:07:00:: 05106633 1 2 -smallness%1:07:01:: 04834073 4 0 -smallness%1:07:02:: 05110583 2 0 -smallness%1:07:03:: 05031367 3 0 -smallpox%1:26:00:: 14124423 1 1 -smallpox_virus%1:05:00:: 01334036 1 0 -smalltooth_sawfish%1:05:00:: 01497413 1 0 -smaltite%1:27:00:: 15043118 1 0 -smarm%1:10:00:: 06696308 1 0 -smarmily%4:02:00:: 00485765 1 0 -smarminess%1:07:00:: 04868505 1 0 -smarmy%5:00:00:insincere:00 02181432 1 0 -smart%1:26:00:: 14331873 1 0 -smart%2:39:00:: 02122164 1 1 -smart%3:00:00:: 00438707 1 8 -smart%5:00:00:automatic:00 00182718 7 0 -smart%5:00:00:fast:01 00980144 6 0 -smart%5:00:00:forward:02 00205295 4 2 -smart%5:00:00:intelligent:00 01335458 3 2 -smart%5:00:00:intense:00 01513376 5 0 -smart%5:00:00:stylish:00 00975487 2 3 -smart_aleck%1:18:00:: 10784113 1 0 -smart_as_a_whip%5:00:00:intelligent:00 01335156 1 1 -smart_bomb%1:06:00:: 04245847 1 0 -smart_card%1:21:00:: 13377003 1 0 -smart_money%1:14:00:: 08401970 3 0 -smart_money%1:21:00:: 13343123 1 0 -smart_money%1:21:01:: 13291831 2 0 -smart_set%1:14:00:: 08387930 1 0 -smarta%1:18:00:: 10613839 1 0 -smarten_up%2:29:00:: 00043278 2 0 -smarten_up%2:30:00:: 00293977 1 0 -smarting%1:26:00:: 14331873 1 0 -smartly%4:02:00:: 00006858 3 0 -smartly%4:02:01:: 00181748 2 0 -smartly%4:02:02:: 00187455 1 0 -smartness%1:07:00:: 04813712 3 0 -smartness%1:07:01:: 04632963 4 0 -smartness%1:09:01:: 05620955 2 0 -smartness%1:26:00:: 14331873 1 0 -smash%1:04:00:: 00126236 4 0 -smash%1:04:01:: 00064504 5 0 -smash%1:04:02:: 00569474 3 0 -smash%1:11:00:: 07317369 2 0 -smash%1:11:01:: 07410207 1 2 -smash%2:30:00:: 00335923 2 5 -smash%2:30:10:: 00334649 10 0 -smash%2:33:00:: 01083576 9 0 -smash%2:35:00:: 01401772 1 6 -smash%2:35:05:: 01561408 8 0 -smash%2:35:06:: 01561583 7 0 -smash%2:35:08:: 01566705 6 0 -smash%2:37:00:: 01800195 5 0 -smash%2:38:02:: 02104373 4 0 -smash%2:40:00:: 02318165 3 0 -smash%4:02:00:: 00458932 1 0 -smash-up%1:11:00:: 07317369 1 0 -smash_hit%1:04:00:: 00064151 1 0 -smash_up%2:35:00:: 01566705 1 0 -smashed%5:00:00:intoxicated:00 00798103 1 0 -smasher%1:04:00:: 00064504 3 0 -smasher%1:18:00:: 10613996 2 0 -smasher%1:18:01:: 10614225 1 0 -smashing%1:04:00:: 00376825 1 0 -smashing%5:00:00:good:01 01123879 1 0 -smashingly%4:02:00:: 00458932 1 0 -smatter%2:32:00:: 00963961 3 0 -smatter%2:32:01:: 01037650 2 0 -smatter%2:41:00:: 02416030 1 0 -smattering%1:09:00:: 05806498 2 0 -smattering%1:23:00:: 13771154 1 0 -smear%1:04:00:: 00072261 4 0 -smear%1:07:00:: 04694441 3 0 -smear%1:08:00:: 05265139 2 0 -smear%1:10:00:: 06720216 1 0 -smear%2:32:00:: 00846509 4 0 -smear%2:35:01:: 01251928 2 0 -smear%2:35:02:: 01252425 1 0 -smear%2:35:03:: 01233387 3 0 -smear_test%1:09:00:: 05743296 1 0 -smear_word%1:10:00:: 06721081 1 0 -smegma%1:08:00:: 05417162 1 0 -smell%1:04:00:: 00882961 5 0 -smell%1:07:00:: 04980008 2 5 -smell%1:09:01:: 05658603 4 0 -smell%1:09:02:: 05713737 1 8 -smell%1:26:00:: 14526182 3 1 -smell%2:31:00:: 00589469 5 0 -smell%2:39:00:: 02123672 2 12 -smell%2:39:01:: 02124748 1 14 -smell%2:39:02:: 02124332 3 3 -smell%2:39:03:: 02194723 4 0 -smell_out%2:31:00:: 00589469 2 0 -smell_out%2:39:00:: 02125460 1 0 -smell_up%2:39:00:: 02126022 1 0 -smelling%1:04:00:: 00882961 1 0 -smelling%5:00:00:odorous:00 01056897 1 0 -smelling_bottle%1:06:00:: 04246060 1 0 -smelling_salts%1:27:00:: 15043399 1 0 -smelly%5:00:00:malodorous:00 01053634 1 0 -smelt%1:05:00:: 02540412 2 0 -smelt%1:13:00:: 07798554 1 0 -smelt%2:36:00:: 01681913 1 0 -smelter%1:06:00:: 04246156 1 0 -smeltery%1:06:00:: 04246156 1 0 -smetana%1:18:00:: 11305159 1 0 -smew%1:05:00:: 01855188 1 0 -smidge%1:23:00:: 13773725 1 0 -smidgen%1:23:00:: 13773725 1 0 -smidgeon%1:23:00:: 13773725 1 0 -smidgin%1:23:00:: 13773725 1 0 -smilacaceae%1:20:00:: 12469725 1 0 -smilax%1:20:01:: 12469936 1 0 -smilax%1:20:02:: 12441552 2 0 -smilax_aspera%1:20:00:: 12470907 1 0 -smilax_rotundifolia%1:20:00:: 12470512 1 0 -smile%1:10:00:: 06878071 1 29 -smile%2:29:00:: 00028565 1 79 -smile%2:32:00:: 01067512 2 0 -smiledon%1:05:00:: 02130795 1 0 -smiledon_californicus%1:05:00:: 02130925 1 0 -smiler%1:08:00:: 05601357 2 0 -smiler%1:18:00:: 10614363 1 0 -smiley%1:10:00:: 06280162 1 0 -smiling%1:10:00:: 06878071 1 1 -smiling%5:00:00:cheerful:00 00363031 1 2 -smilingly%4:02:00:: 00459036 1 1 -smilo%1:20:00:: 12126736 1 0 -smilo_grass%1:20:00:: 12126736 1 0 -smirch%1:04:00:: 00072261 2 0 -smirch%1:07:00:: 04694441 1 0 -smirch%2:32:00:: 00846509 2 0 -smirch%2:35:01:: 01252601 1 0 -smirk%1:10:00:: 06878580 1 0 -smirk%2:29:00:: 00029336 1 1 -smirker%1:18:00:: 10614507 1 0 -smitane%1:13:00:: 07839593 1 0 -smite%2:30:00:: 00259927 3 0 -smite%2:35:00:: 01396644 1 2 -smite%2:37:00:: 01769413 2 0 -smith%1:18:00:: 10614629 10 0 -smith%1:18:01:: 10614812 9 0 -smith%1:18:02:: 11305258 8 0 -smith%1:18:03:: 11305402 7 0 -smith%1:18:04:: 11305611 6 0 -smith%1:18:05:: 11305745 5 0 -smith%1:18:06:: 11305851 4 0 -smith%1:18:07:: 11306008 3 0 -smith%1:18:08:: 11306175 2 0 -smith%1:18:09:: 11306297 1 0 -smithereens%1:14:00:: 08482866 1 0 -smithy%1:06:00:: 03383646 1 0 -smitten%5:00:00:affected:00 00071242 1 2 -smitten%5:00:00:loving:00 01465668 2 0 -smitty_stevens%1:18:00:: 11317519 1 0 -smock%1:06:00:: 03258730 1 0 -smock%2:36:00:: 01677509 1 0 -smocking%1:06:00:: 04246271 1 0 -smog%1:26:00:: 14518377 1 0 -smogginess%1:26:00:: 14518377 1 0 -smoggy%5:00:00:cloudy:00 00462741 1 0 -smoke%1:04:00:: 00834636 7 0 -smoke%1:04:02:: 00108181 8 0 -smoke%1:06:00:: 04103491 5 0 -smoke%1:06:01:: 03990834 6 0 -smoke%1:07:00:: 04761960 4 0 -smoke%1:10:00:: 06802880 3 0 -smoke%1:19:00:: 11508092 1 65 -smoke%1:22:00:: 13556893 2 4 -smoke%2:34:00:: 01198101 1 12 -smoke%2:43:00:: 02767922 2 0 -smoke-cured%5:00:00:preserved:02 01073435 1 0 -smoke-dried%5:00:00:preserved:02 01073435 1 0 -smoke-filled%5:00:00:smoky:00 02234388 1 0 -smoke-free%5:00:00:smokeless:00 02234673 1 0 -smoke_alarm%1:06:00:: 03343737 1 0 -smoke_bomb%1:06:00:: 04246459 1 0 -smoke_bush%1:20:00:: 12760132 1 0 -smoke_bush%1:20:02:: 12216215 2 0 -smoke_grenade%1:06:00:: 04246459 1 0 -smoke_hole%1:06:00:: 04246633 1 0 -smoke_out%2:38:00:: 02056854 1 0 -smoke_screen%1:04:00:: 01050872 2 0 -smoke_screen%1:06:00:: 04247011 1 0 -smoke_tree%1:20:01:: 12760132 1 0 -smoke_tree%1:20:02:: 12524633 2 0 -smoked%5:00:00:preserved:02 01073435 1 0 -smoked_eel%1:13:00:: 07784197 1 0 -smoked_haddock%1:13:00:: 07789745 1 0 -smoked_herring%1:13:00:: 07798233 1 0 -smoked_mackerel%1:13:00:: 07800004 1 0 -smoked_salmon%1:13:00:: 07796649 1 0 -smokehouse%1:06:00:: 04246731 1 2 -smokeless%3:00:00:: 02234485 1 0 -smokeless_powder%1:27:00:: 15016503 1 0 -smoker%1:06:00:: 04246855 3 0 -smoker%1:14:00:: 08256005 2 0 -smoker%1:18:00:: 10614976 1 0 -smokescreen%1:04:00:: 01050872 2 0 -smokescreen%1:06:00:: 04247011 1 0 -smokestack%1:06:00:: 04247175 1 0 -smoking%1:04:00:: 00834636 1 1 -smoking%1:22:00:: 13556893 2 0 -smoking%5:00:00:smoky:00 02234281 1 0 -smoking_car%1:06:00:: 04246855 1 0 -smoking_carriage%1:06:00:: 04246855 1 0 -smoking_compartment%1:06:00:: 04246855 1 0 -smoking_gun%1:10:00:: 06280244 1 0 -smoking_jacket%1:06:00:: 03692136 1 1 -smoking_mixture%1:06:00:: 04247336 1 0 -smoking_room%1:06:00:: 04247440 1 0 -smoky%3:00:00:: 02233927 1 0 -smoky%5:00:00:tasty:00 02398928 2 0 -smoky_quartz%1:27:00:: 14694571 1 0 -smolder%1:11:00:: 07304096 1 0 -smolder%2:30:00:: 00377569 1 3 -smolder%2:37:00:: 01772699 2 0 -smoldering%5:00:00:angry:00 00116058 1 0 -smolderingly%4:02:00:: 00503504 1 1 -smolensk%1:15:00:: 09009816 1 0 -smollett%1:18:00:: 11306473 1 0 -smooch%1:04:00:: 00138599 1 0 -smooch%2:35:00:: 01425709 1 0 -smooching%1:04:00:: 00854000 1 0 -smooth%1:04:00:: 01263924 1 0 -smooth%2:35:00:: 01252971 1 7 -smooth%2:35:01:: 01245637 2 1 -smooth%2:40:00:: 02313098 3 0 -smooth%3:00:00:: 02236842 1 11 -smooth%3:00:02:: 02244619 3 1 -smooth%3:00:03:: 02294263 5 0 -smooth%3:00:04:: 02243411 6 0 -smooth%5:00:00:calm:00 00302951 8 0 -smooth%5:00:00:diplomatic:00 00758800 2 3 -smooth%5:00:00:easy:01 00750926 7 0 -smooth%5:00:00:graceful:00 01139832 4 1 -smooth-bodied%5:00:00:bodied:00 00628988 1 0 -smooth-faced%5:00:00:hairless:00 00211092 1 0 -smooth-haired%5:00:00:hairy:00 00215745 1 0 -smooth-haired_fox_terrier%1:05:00:: 02095212 1 0 -smooth-leaved_elm%1:20:00:: 12406715 1 0 -smooth-shaven%5:00:00:shaven:00 02153705 1 0 -smooth-shelled%5:00:00:shelled:00 02596728 1 0 -smooth-skinned%5:00:00:skinned:00 02597617 1 0 -smooth-spoken%5:00:00:articulate:00 00150505 1 0 -smooth-textured%5:00:00:smooth:00 02237644 1 0 -smooth-tongued%5:00:00:persuasive:00 01770726 1 0 -smooth_alder%1:20:00:: 12285900 1 0 -smooth_aster%1:20:00:: 11936946 1 0 -smooth_bark_kauri%1:20:00:: 11648039 1 0 -smooth_crabgrass%1:20:00:: 12117235 1 0 -smooth_darling_pea%1:20:00:: 11751974 1 0 -smooth_dogfish%1:05:00:: 01492357 1 0 -smooth_earthball%1:20:00:: 12969927 1 0 -smooth_green_snake%1:05:00:: 01730185 1 0 -smooth_hammerhead%1:05:00:: 01494757 1 0 -smooth_lip_fern%1:20:00:: 13208965 1 0 -smooth_muscle%1:08:00:: 05460473 1 0 -smooth_muscle%1:08:01:: 05460291 2 0 -smooth_muscle_cell%1:08:00:: 05460759 1 0 -smooth_out%2:40:00:: 02313098 1 1 -smooth_over%2:41:00:: 02516255 1 2 -smooth_plane%1:06:00:: 04247630 1 0 -smooth_softshell%1:05:00:: 01672611 1 0 -smooth_sumac%1:20:00:: 12763529 1 0 -smooth_winterberry_holly%1:20:00:: 12758555 1 0 -smooth_woodsia%1:20:00:: 13202602 1 0 -smoothbark%1:20:00:: 12335937 1 0 -smoothbore%1:06:00:: 04247544 1 0 -smoothbore%3:00:00:: 02248204 1 0 -smoothed%5:00:00:ironed:00 01359771 1 0 -smoothen%2:30:00:: 00547221 3 0 -smoothen%2:35:00:: 01252971 1 0 -smoothen%2:35:01:: 01245637 2 0 -smoothened%5:00:00:ironed:00 01359771 1 0 -smoother%1:06:00:: 03250588 1 0 -smoothhound%1:05:00:: 01492569 1 0 -smoothhound_shark%1:05:00:: 01492569 1 0 -smoothie%1:13:00:: 07914271 2 0 -smoothie%1:18:00:: 10615179 1 0 -smoothing_iron%1:06:00:: 03584829 1 0 -smoothing_plane%1:06:00:: 04247630 1 0 -smoothly%4:02:00:: 00210446 1 3 -smoothly%4:02:01:: 00458454 2 0 -smoothness%1:07:00:: 04947186 1 3 -smoothness%1:07:01:: 04769716 4 0 -smoothness%1:07:02:: 04709011 5 0 -smoothness%1:07:03:: 04913322 3 0 -smoothness%1:10:00:: 07069210 2 0 -smoothy%1:18:00:: 10615179 1 0 -smorgasbord%1:13:00:: 07593199 2 0 -smorgasbord%1:14:00:: 08398773 1 0 -smother%1:19:00:: 11508303 2 0 -smother%1:26:00:: 14500567 1 0 -smother%2:35:00:: 01569181 2 1 -smother%2:35:01:: 01568630 3 1 -smother%2:35:02:: 01568886 1 2 -smother%2:35:03:: 01569017 5 0 -smother%2:42:00:: 02749633 4 0 -smothered%5:00:00:covered:00 01697425 2 0 -smothered%5:00:00:inhibited:00 01316808 1 1 -smotherer%1:18:00:: 10656223 1 0 -smothering%5:00:00:breathless:00 00268383 1 1 -smoulder%1:11:00:: 07304096 1 0 -smoulder%2:30:00:: 00377569 2 0 -smoulder%2:37:00:: 01772699 1 0 -smouldering%5:00:00:angry:00 00116058 1 0 -smoulderingly%4:02:00:: 00503504 1 0 -smsgt%1:18:00:: 10579369 1 0 -smudge%1:07:00:: 04694441 2 0 -smudge%1:11:00:: 07304266 1 0 -smudge%2:35:00:: 01251928 1 0 -smudgy%5:00:00:dirty:01 00423001 1 0 -smug%5:00:00:contented:00 00589448 1 3 -smuggle%2:40:00:: 02345856 1 3 -smuggled%5:00:00:illegal:00 01402580 1 0 -smuggler%1:18:00:: 10615334 1 2 -smuggling%1:04:00:: 01112132 1 0 -smugly%4:02:00:: 00459345 1 0 -smugness%1:12:00:: 07531998 1 0 -smut%1:04:00:: 00747215 5 0 -smut%1:10:00:: 07124340 4 0 -smut%1:20:00:: 13066129 3 0 -smut%1:26:00:: 14283632 2 0 -smut%1:27:00:: 14793533 1 0 -smut%2:29:00:: 00089154 4 0 -smut%2:30:00:: 00286798 2 0 -smut%2:30:01:: 00210481 3 0 -smut%2:30:02:: 00583759 1 0 -smut_fungus%1:20:00:: 13066129 1 0 -smut_grass%1:20:00:: 12140511 1 0 -smutch%2:35:00:: 01251928 1 0 -smuts%1:18:00:: 11306619 1 0 -smuttily%4:02:00:: 00459521 1 0 -smuttiness%1:07:00:: 04903678 2 0 -smuttiness%1:26:00:: 14498972 1 0 -smutty%5:00:00:dirty:01 00421002 2 0 -smutty%5:00:00:dirty:02 00425313 1 0 -smyrna%1:15:00:: 09042322 1 0 -smyrnium%1:20:00:: 12945708 1 0 -smyrnium_olusatrum%1:20:00:: 12945828 1 0 -sn%1:27:00:: 14658855 1 0 -snack%1:13:00:: 07577374 1 1 -snack%2:34:00:: 01173405 1 0 -snack_bar%1:06:00:: 04247736 1 0 -snack_counter%1:06:00:: 04247736 1 0 -snack_food%1:13:00:: 07712382 1 0 -snacker%1:18:00:: 10362765 1 0 -snaffle%1:06:00:: 04247876 1 0 -snaffle%2:35:00:: 01300805 2 0 -snaffle%2:40:00:: 02304648 1 0 -snaffle_bit%1:06:00:: 04247876 1 0 -snafu%1:04:00:: 00075283 1 0 -snafu%2:30:00:: 00403016 1 0 -snafu%5:00:00:disorganized:00 01669617 1 0 -snag%1:09:00:: 05691144 4 0 -snag%1:17:00:: 09410928 3 0 -snag%1:20:00:: 13103877 2 0 -snag%1:25:00:: 13895745 1 0 -snag%2:35:00:: 01328212 1 2 -snag%2:35:01:: 01260593 3 0 -snag%2:40:00:: 02353088 2 0 -snail%1:05:00:: 01944390 1 3 -snail%1:13:00:: 07782475 2 0 -snail%2:35:00:: 01382917 1 0 -snail-flower%1:20:00:: 12577895 1 0 -snail_bean%1:20:00:: 12577895 1 0 -snail_butter%1:13:00:: 07857598 1 0 -snail_darter%1:05:00:: 02558206 1 0 -snail_flower%1:20:00:: 12577895 1 0 -snail_mail%1:10:00:: 06264932 1 0 -snailfish%1:05:00:: 02647294 1 0 -snailflower%1:20:00:: 12577895 1 0 -snake%1:05:00:: 01726692 1 20 -snake%1:06:00:: 04248010 5 0 -snake%1:17:00:: 09438554 3 0 -snake%1:17:01:: 09307552 4 0 -snake%1:18:00:: 10615702 2 0 -snake%2:38:00:: 01883210 3 0 -snake%2:38:01:: 01888165 1 3 -snake%2:42:00:: 02738976 2 0 -snake's_head_fritillary%1:20:00:: 12453186 1 0 -snake-fish%1:05:00:: 02543565 1 0 -snake-haired%5:00:00:hairy:00 00215834 1 0 -snake-head%1:20:00:: 12881105 1 0 -snake-rail_fence%1:06:00:: 04604644 1 1 -snake_charmer%1:18:00:: 10615584 1 0 -snake_dance%1:04:00:: 00542841 2 0 -snake_dance%1:14:00:: 08428944 1 0 -snake_doctor%1:05:00:: 02268443 1 0 -snake_eyes%1:23:00:: 13743460 1 0 -snake_feeder%1:05:00:: 02268443 1 0 -snake_fence%1:06:00:: 04604644 1 0 -snake_fern%1:20:00:: 12956588 1 0 -snake_god%1:18:00:: 10805783 1 0 -snake_in_the_grass%1:18:00:: 10615702 1 0 -snake_mackerel%1:05:00:: 02622249 1 0 -snake_muishond%1:05:00:: 02443959 1 0 -snake_oil%1:10:00:: 06610779 2 0 -snake_oil%1:27:00:: 15043579 1 1 -snake_palm%1:20:00:: 11783162 1 0 -snake_pit%1:06:00:: 02820798 2 0 -snake_pit%1:15:00:: 08582837 1 0 -snake_plant%1:20:00:: 12481458 1 0 -snake_polypody%1:20:00:: 13176363 1 0 -snake_river%1:17:00:: 09438554 1 0 -snake_venom%1:27:00:: 15037249 1 0 -snake_wood%1:20:00:: 12404729 1 0 -snakeberry%1:20:00:: 11724109 1 0 -snakebird%1:05:00:: 02054502 1 0 -snakebite%1:26:00:: 14287647 1 0 -snakeblenny%1:05:00:: 02615980 1 0 -snakefish%1:05:00:: 02543565 1 0 -snakefly%1:05:00:: 02267208 1 0 -snakehead%1:20:00:: 12881105 1 0 -snakelike%5:00:00:curved:00 02316820 1 0 -snakeroot%1:20:01:: 12943443 1 0 -snakeroot%1:20:02:: 11991263 2 0 -snakes_and_ladders%1:04:00:: 00506060 1 0 -snakeweed%1:20:00:: 11974557 1 0 -snakewood%1:20:00:: 11775626 1 0 -snaky%5:00:00:curved:00 02316820 1 0 -snap%1:04:00:: 00138956 1 1 -snap%1:04:01:: 00120943 13 0 -snap%1:04:02:: 00575365 11 0 -snap%1:04:03:: 00344699 12 0 -snap%1:06:00:: 04248209 10 0 -snap%1:06:01:: 04248607 9 0 -snap%1:07:00:: 05020358 8 0 -snap%1:11:00:: 07381423 6 0 -snap%1:11:01:: 07367708 7 0 -snap%1:11:02:: 07394236 5 0 -snap%1:13:00:: 07636384 4 0 -snap%1:13:01:: 07728053 3 0 -snap%1:28:00:: 15299097 2 0 -snap%2:30:00:: 00337065 3 3 -snap%2:30:01:: 00355670 5 2 -snap%2:32:00:: 00916274 1 7 -snap%2:32:01:: 01003249 13 0 -snap%2:35:00:: 01439745 8 1 -snap%2:35:01:: 01573515 2 3 -snap%2:35:02:: 01242208 10 1 -snap%2:35:03:: 01402872 9 1 -snap%2:35:04:: 01446301 12 0 -snap%2:37:00:: 01784295 11 0 -snap%2:38:00:: 01893771 4 2 -snap%2:38:01:: 02088949 7 1 -snap%2:39:00:: 02182851 6 1 -snap-brim_hat%1:06:00:: 04248507 1 0 -snap_at%2:35:00:: 01445756 1 1 -snap_back%2:29:00:: 00093020 1 0 -snap_bean%1:13:00:: 07728053 1 0 -snap_brim%1:06:00:: 04248396 1 0 -snap_fastener%1:06:00:: 04248209 1 0 -snap_line%1:06:00:: 03003378 1 0 -snap_off%2:35:00:: 01298931 1 0 -snap_pea%1:20:00:: 12561169 1 0 -snap_ring%1:06:00:: 02960690 1 0 -snap_roll%1:04:00:: 00170643 1 0 -snap_up%2:40:00:: 02304648 1 1 -snap_willow%1:20:00:: 12728322 1 0 -snapdragon%1:20:00:: 12877244 1 1 -snapline%1:06:00:: 03003378 1 0 -snapper%1:05:00:: 01666228 6 0 -snapper%1:05:01:: 02586543 5 0 -snapper%1:05:02:: 02593019 4 0 -snapper%1:06:00:: 03125352 3 0 -snapper%1:13:00:: 07797189 2 0 -snapper%1:18:00:: 09904321 1 0 -snapping_beetle%1:05:00:: 02176439 1 0 -snapping_shrimp%1:05:00:: 01987076 1 0 -snapping_turtle%1:05:00:: 01665932 1 0 -snappish%5:00:00:ill-natured:00 01138770 1 0 -snappishly%4:02:00:: 00459623 1 0 -snappishness%1:07:00:: 04642258 1 0 -snappy%5:00:00:cold:01 01252714 3 0 -snappy%5:00:00:energetic:00 00874226 5 0 -snappy%5:00:00:fashionable:00 00971933 4 0 -snappy%5:00:00:ill-natured:00 01138770 1 1 -snappy%5:00:00:spirited:00 02280680 2 0 -snapshot%1:06:00:: 04248607 1 1 -snapshot_program%1:10:00:: 06579592 1 0 -snare%1:06:00:: 04248851 5 0 -snare%1:06:01:: 04249029 4 0 -snare%1:06:02:: 04249415 2 0 -snare%1:06:03:: 04249204 3 0 -snare%1:09:00:: 05837370 1 1 -snare%2:32:00:: 00783042 2 0 -snare%2:35:00:: 01480770 1 1 -snare_drum%1:06:00:: 04249415 1 0 -snarer%1:18:00:: 10615808 1 0 -snarf%2:40:00:: 02276866 1 0 -snarl%1:09:00:: 05685879 3 0 -snarl%1:10:00:: 07129758 1 1 -snarl%1:10:01:: 06878706 2 1 -snarl%2:30:00:: 00402831 4 0 -snarl%2:32:00:: 00916274 1 6 -snarl%2:32:01:: 00916520 2 1 -snarl%2:35:00:: 01462928 3 0 -snarl-up%1:14:00:: 08183541 1 0 -snarl_up%2:30:00:: 00402831 1 0 -snarled%5:00:00:tangled:00 00255720 1 0 -snarly%5:00:00:tangled:00 00255720 1 0 -snatch%1:04:00:: 00138956 5 0 -snatch%1:04:01:: 00627196 4 0 -snatch%1:04:02:: 00775702 3 0 -snatch%1:08:00:: 05521514 2 0 -snatch%1:10:00:: 07009042 1 0 -snatch%2:35:00:: 01439745 1 13 -snatch%2:35:01:: 01471043 3 0 -snatch%2:35:02:: 01213146 2 1 -snatch_block%1:06:00:: 04249582 1 0 -snatch_up%2:35:00:: 01439745 1 1 -snatcher%1:18:00:: 10230801 2 0 -snatcher%1:18:01:: 10615929 1 0 -snazzy%5:00:00:stylish:00 00976016 1 0 -snead%1:18:00:: 11306760 1 0 -sneak%1:18:00:: 10091012 3 0 -sneak%1:18:01:: 10486679 2 0 -sneak%1:18:02:: 10616048 1 0 -sneak%2:38:00:: 01911888 1 2 -sneak%2:40:00:: 02276866 3 0 -sneak%2:40:10:: 02231328 4 0 -sneak%2:41:00:: 02597449 2 1 -sneak%5:00:00:concealed:00 02088974 1 0 -sneak_away%2:38:00:: 02076027 1 0 -sneak_in%2:32:00:: 01025602 2 0 -sneak_in%2:35:00:: 01228866 1 0 -sneak_off%2:38:00:: 02076027 1 2 -sneak_out%2:38:00:: 02076027 1 1 -sneak_preview%1:10:00:: 06888848 1 0 -sneak_thief%1:18:00:: 10616204 1 0 -sneak_up%2:38:00:: 01993212 1 1 -sneaker%1:06:00:: 03472535 1 2 -sneaker%1:18:00:: 10091012 2 0 -sneakily%4:02:00:: 00471757 1 0 -sneakiness%1:07:00:: 04657631 1 0 -sneaking%5:00:00:concealed:00 02090228 1 0 -sneakingly%4:02:00:: 00459764 1 0 -sneaky%5:00:00:concealed:00 02088974 2 0 -sneaky%5:00:00:crooked:02 02319346 1 0 -sneer%1:10:00:: 06716483 1 2 -sneer%1:10:01:: 06716675 2 0 -sneer%2:29:00:: 00032539 2 1 -sneer%2:29:01:: 00032778 1 2 -sneerer%1:18:00:: 10616379 1 0 -sneering%5:00:00:uncomplimentary:00 00907400 1 0 -sneeringly%4:02:00:: 00459905 1 0 -sneeze%1:26:00:: 14314850 1 0 -sneeze%2:29:00:: 00004819 1 0 -sneezer%1:18:00:: 10616578 1 0 -sneezeweed%1:20:00:: 11977303 1 0 -sneezeweed_yarrow%1:20:00:: 11916965 1 0 -sneezewort%1:20:00:: 11916965 1 0 -sneezing%1:26:00:: 14314850 1 0 -sneezy%5:00:00:ill:01 02546624 1 0 -snellen%1:18:00:: 11306920 1 0 -snellen_chart%1:06:00:: 04249705 1 0 -snellen_test%1:09:00:: 05747056 1 0 -snick%1:04:00:: 00387897 1 0 -snick%1:04:01:: 00128324 2 0 -snick%2:35:00:: 01259141 2 0 -snick%2:35:02:: 01408489 1 0 -snicker%1:10:00:: 07128060 1 0 -snicker%2:29:00:: 00030010 1 2 -snickersnee%1:04:00:: 01176540 1 0 -snide%5:00:00:uncomplimentary:00 00907400 1 0 -snidely%4:02:00:: 00459905 1 0 -sniff%1:04:00:: 00883139 1 0 -sniff%2:29:00:: 00007549 2 1 -sniff%2:39:00:: 02125032 1 5 -sniff_out%2:39:00:: 02125460 1 0 -sniffer%1:18:00:: 10616670 1 0 -sniffle%1:04:00:: 00836149 1 0 -sniffle%2:29:00:: 00007549 2 0 -sniffle%2:29:01:: 00067274 1 0 -sniffler%1:18:00:: 10616779 1 0 -sniffly%5:00:00:tearful:00 02473757 1 0 -sniffy%5:00:00:proud:00 01891109 1 0 -snifter%1:06:00:: 04249882 1 0 -snigger%1:10:00:: 07128060 1 0 -snigger%2:29:00:: 00030010 1 1 -snip%1:04:00:: 00359614 2 0 -snip%1:06:00:: 04250026 1 1 -snip%2:35:00:: 01321002 2 0 -snip%2:35:07:: 01456463 1 0 -snip_off%2:35:00:: 01456463 1 0 -snipe%1:04:00:: 00124151 2 0 -snipe%1:05:00:: 02031934 1 0 -snipe%2:32:11:: 00862683 3 0 -snipe%2:33:00:: 01135501 2 0 -snipe%2:33:01:: 01135683 1 0 -snipe_hunt%1:04:00:: 00514787 1 0 -snipefish%1:05:00:: 01457082 1 0 -sniper%1:18:00:: 10616899 1 2 -sniper_rifle%1:06:00:: 04250224 1 0 -snippet%1:06:00:: 04250026 1 0 -snipping%1:06:00:: 04250026 1 0 -snips%1:06:00:: 04250473 1 0 -snit%1:26:00:: 14407435 1 0 -snitch%1:18:00:: 10091012 1 0 -snitch%2:32:09:: 00841986 2 0 -snitch%2:40:00:: 02322230 1 0 -snitcher%1:18:00:: 10091012 2 0 -snitcher%1:18:01:: 10616204 1 0 -snivel%1:04:00:: 00868523 1 0 -snivel%1:04:01:: 00836149 2 0 -snivel%2:29:00:: 00101779 2 0 -snivel%2:29:01:: 00067274 3 0 -snivel%2:32:00:: 01042531 1 0 -sniveler%1:18:01:: 10616779 1 0 -sniveling%1:04:00:: 00868523 1 1 -sniveller%1:18:00:: 10776339 1 0 -sno-cat%1:06:00:: 04250599 1 0 -snob%1:18:00:: 10617024 1 0 -snobbery%1:07:00:: 04889162 1 0 -snobbish%5:00:00:private:00 01858740 1 1 -snobbishly%4:02:00:: 00460134 1 0 -snobbishness%1:07:00:: 04889162 1 0 -snobbism%1:07:00:: 04889162 1 0 -snobby%5:00:00:private:00 01858740 1 0 -snoek%1:05:00:: 02514041 1 0 -snog%2:35:00:: 01431230 1 0 -snogging%1:04:00:: 00854393 1 0 -snood%1:06:00:: 04250692 1 0 -snook%1:05:00:: 02560110 1 0 -snooker%1:04:00:: 00501304 1 0 -snooker%2:33:00:: 01074206 2 0 -snooker%2:41:00:: 02578384 1 0 -snooker_table%1:06:00:: 03982430 1 0 -snoop%1:18:00:: 10617193 1 0 -snoop%2:32:00:: 00785690 1 1 -snooper%1:18:00:: 10617193 1 0 -snoopiness%1:09:00:: 05683390 1 0 -snoopy%1:18:00:: 09604868 1 0 -snoopy%5:00:00:curious:00 00665156 1 0 -snoot%1:08:00:: 05598707 2 0 -snoot%1:18:00:: 10617024 1 0 -snootily%4:02:00:: 00460134 1 0 -snootiness%1:07:00:: 05214851 1 0 -snooty%5:00:00:proud:00 01890382 1 0 -snooze%1:04:00:: 00858377 1 0 -snooze%2:29:00:: 00015303 1 0 -snore%1:04:00:: 00835976 2 0 -snore%1:11:00:: 07394478 1 0 -snore%2:29:00:: 00017031 1 4 -snorer%1:18:00:: 10617397 1 0 -snoring%1:04:00:: 00835976 1 2 -snorkel%1:06:00:: 04250850 2 0 -snorkel%1:06:01:: 04251144 1 0 -snorkel%2:38:00:: 01963795 1 0 -snorkel_breather%1:06:00:: 04250850 1 0 -snorkel_diving%1:04:00:: 00444937 1 0 -snorkeling%1:04:00:: 00444937 1 0 -snort%1:10:00:: 07123870 2 0 -snort%1:10:01:: 07128060 1 0 -snort%2:29:00:: 00006523 2 3 -snort%2:32:00:: 01045073 1 3 -snort%2:34:01:: 01199755 4 0 -snort%2:34:02:: 01200245 3 1 -snorter%1:06:00:: 04251377 3 0 -snorter%1:09:00:: 05689109 2 0 -snorter%1:18:00:: 10617501 1 0 -snorting%1:04:00:: 00834460 1 0 -snorty%5:00:00:ill-natured:00 01138450 1 0 -snot%1:08:00:: 05416048 2 0 -snot%1:18:00:: 10617024 1 0 -snot-nosed%5:00:00:dirty:01 00423269 2 0 -snot-nosed%5:00:00:proud:00 01890382 1 0 -snotty%5:00:00:dirty:01 00423269 2 0 -snotty%5:00:00:proud:00 01890382 1 0 -snotty-nosed%5:00:00:disrespectful:00 01996051 1 0 -snout%1:05:00:: 02452637 1 1 -snout%1:05:02:: 02452813 3 0 -snout%1:08:01:: 05598707 2 0 -snout_beetle%1:05:00:: 02178411 1 0 -snow%1:06:00:: 03066743 4 0 -snow%1:18:00:: 11307082 3 0 -snow%1:19:00:: 11508382 1 13 -snow%1:27:00:: 15043763 2 11 -snow%2:32:00:: 00839194 2 0 -snow%2:43:00:: 02758977 1 10 -snow-blind%2:39:00:: 02168830 1 0 -snow-blind%5:00:00:blind:00 02160465 1 0 -snow-blinded%5:00:00:blind:00 02160465 1 0 -snow-blindness%1:26:00:: 14555790 1 0 -snow-capped%3:01:00:: 02798267 1 0 -snow-clad%5:00:00:covered:00 01697592 1 0 -snow-covered%5:00:00:covered:00 01697592 1 0 -snow-in-summer%1:20:01:: 11807525 2 0 -snow-in-summer%1:20:02:: 12919403 1 0 -snow-on-the-mountain%1:20:00:: 12919403 1 0 -snow-white%5:00:00:achromatic:00 00392093 1 0 -snow_bank%1:06:00:: 04251701 1 0 -snow_blower%1:06:00:: 04252653 1 0 -snow_bunting%1:05:00:: 01538630 1 0 -snow_chain%1:06:00:: 04440963 1 0 -snow_eater%1:19:00:: 11438612 1 0 -snow_flurry%1:19:00:: 11508578 1 0 -snow_goose%1:05:00:: 01857079 1 0 -snow_gum%1:20:00:: 12336727 1 0 -snow_job%1:10:00:: 06759256 1 0 -snow_leopard%1:05:00:: 02128757 1 0 -snow_lily%1:20:00:: 12451399 1 0 -snow_line%1:15:00:: 08547816 1 0 -snow_mist%1:19:00:: 11509377 1 0 -snow_mushroom%1:20:00:: 13061172 1 0 -snow_orchid%1:20:00:: 12060546 1 0 -snow_pea%1:13:00:: 07725789 2 0 -snow_pea%1:20:00:: 12561038 1 0 -snow_plant%1:20:00:: 12259788 1 0 -snow_thrower%1:06:00:: 04252653 1 0 -snow_tire%1:06:00:: 04252814 1 0 -snow_trillium%1:20:00:: 12468719 1 0 -snowball%1:06:00:: 04251560 4 0 -snowball%1:13:01:: 07616174 3 0 -snowball%1:13:02:: 07616265 2 0 -snowball%1:20:00:: 11837020 1 2 -snowball%2:30:00:: 00158384 1 1 -snowball%2:35:00:: 01508166 2 0 -snowbank%1:06:00:: 04251701 1 0 -snowbell%1:20:00:: 12777680 1 0 -snowberry%1:20:02:: 12677612 1 0 -snowbird%1:05:01:: 01538630 2 0 -snowbird%1:05:02:: 01534433 3 0 -snowbird%1:05:03:: 01558307 1 0 -snowblindness%1:26:00:: 14555790 1 0 -snowboard%1:06:00:: 04251791 1 0 -snowboard%2:38:00:: 02104860 1 0 -snowboarder%1:18:00:: 10617665 1 0 -snowboarding%1:04:00:: 00329468 1 0 -snowbound%5:00:00:confined:00 00559031 1 0 -snowcap%1:17:00:: 09438844 1 0 -snowdrift%1:17:00:: 09438940 1 0 -snowdrop%1:20:02:: 11725973 1 0 -snowdrop_anemone%1:20:00:: 11726269 1 0 -snowdrop_tree%1:20:00:: 12778398 1 0 -snowdrop_windflower%1:20:00:: 11726269 1 0 -snowfall%1:19:00:: 11508382 1 1 -snowfield%1:17:00:: 09439032 1 0 -snowflake%1:05:00:: 01538630 2 0 -snowflake%1:19:00:: 11509066 1 0 -snowman%1:06:00:: 04251983 1 0 -snowmobile%1:06:00:: 04252077 1 0 -snowmobile%2:38:00:: 01957273 1 0 -snowplough%1:06:00:: 04252225 1 0 -snowplow%1:06:00:: 04252225 1 0 -snowshoe%1:06:00:: 04252331 1 0 -snowshoe%2:38:00:: 02103451 1 0 -snowshoe_hare%1:05:00:: 02327842 1 0 -snowshoe_rabbit%1:05:00:: 02327842 1 0 -snowstorm%1:19:00:: 11509570 1 0 -snowsuit%1:06:00:: 04252560 1 0 -snowy%5:00:00:achromatic:00 00392093 3 0 -snowy%5:00:00:covered:00 01697592 2 0 -snowy%5:00:02:covered:00 01698231 1 0 -snowy_egret%1:05:00:: 02009380 1 0 -snowy_heron%1:05:00:: 02009380 1 0 -snowy_orchid%1:20:00:: 12067672 1 0 -snowy_tree_cricket%1:05:00:: 02230634 1 0 -snp%1:19:00:: 11493452 1 0 -snub%1:04:00:: 01225997 2 0 -snub%1:10:00:: 07208000 1 0 -snub%2:32:00:: 00798539 2 1 -snub%2:32:01:: 01059564 1 3 -snub%5:00:00:short:01 01437268 1 0 -snub-nosed%5:00:00:nosed:00 01607572 1 0 -snuff%1:04:00:: 00883139 4 0 -snuff%1:06:01:: 04252939 3 0 -snuff%1:23:00:: 13774010 2 0 -snuff%1:27:00:: 15044016 1 0 -snuff%2:29:02:: 00109263 2 0 -snuff%2:39:00:: 02126152 1 0 -snuff%5:00:00:chromatic:00 00383957 1 0 -snuff-brown%5:00:00:chromatic:00 00383957 1 0 -snuff-color%1:07:00:: 04974681 1 0 -snuff-colour%1:07:00:: 04974681 1 0 -snuff_it%2:30:00:: 00358431 1 0 -snuff_out%2:30:00:: 00478217 1 1 -snuff_out%2:43:00:: 02761897 2 0 -snuff_user%1:18:00:: 10617814 1 0 -snuffbox%1:06:00:: 04253057 1 1 -snuffbox_fern%1:20:00:: 13228017 1 0 -snuffer%1:06:01:: 04253168 1 1 -snuffer%1:18:00:: 10617814 3 0 -snuffer%1:18:01:: 10617904 2 0 -snuffers%1:06:00:: 04253304 1 0 -snuffle%1:04:00:: 00836149 1 0 -snuffle%2:29:00:: 00101779 2 0 -snuffle%2:29:01:: 00067274 3 0 -snuffle%2:39:00:: 02126152 1 0 -snuffler%1:18:00:: 10618007 1 0 -snuffling%5:00:00:tearful:00 02473757 1 0 -snuffly%5:00:00:tearful:00 02473757 1 0 -snug%1:06:00:: 03144365 1 0 -snug%5:00:00:comfortable:00 00477284 4 0 -snug%5:00:00:protected:00 01885991 1 1 -snug%5:00:00:tight:01 01447937 2 0 -snug%5:00:00:tight:02 01399096 3 0 -snuggery%1:06:00:: 03144365 1 0 -snuggle%1:04:00:: 00417643 1 0 -snuggle%2:35:00:: 01424948 1 3 -snuggle%2:35:01:: 01425348 2 0 -snuggled%5:00:00:close:01 00449889 1 1 -snuggling%1:04:00:: 00854000 1 0 -snugly%4:02:00:: 00193316 1 2 -snugly%4:02:01:: 00193407 2 1 -snugly%4:02:02:: 00193511 3 0 -snugness%1:26:00:: 14446298 1 0 -so%1:10:00:: 06868844 1 0 -so%4:02:00:: 00037641 10 0 -so%4:02:02:: 00146594 1 322 -so%4:02:03:: 00146763 7 1 -so%4:02:04:: 00121135 6 2 -so%4:02:05:: 00146926 3 73 -so%4:02:06:: 00118363 2 79 -so%4:02:07:: 00147126 4 7 -so%4:02:08:: 00147272 5 6 -so%4:02:09:: 00117620 8 1 -so%4:02:10:: 00043003 9 0 -so-and-so%1:18:00:: 10539715 1 0 -so-called%5:00:00:questionable:00 01916555 1 13 -so-so%4:02:00:: 00055312 1 0 -so-so%5:00:00:ordinary:00 01674604 1 3 -so_far%4:02:00:: 00027918 1 7 -so_far%4:02:01:: 00028198 3 0 -so_far%4:02:02:: 00098959 2 0 -so_long%1:10:00:: 06629610 1 0 -so_to_speak%4:02:00:: 00152776 1 2 -so_to_speak%4:02:01:: 00152882 2 1 -soak%1:04:01:: 00256501 2 0 -soak%1:22:00:: 13557158 1 0 -soak%2:30:00:: 00456151 8 0 -soak%2:30:01:: 00216216 3 1 -soak%2:30:02:: 00372157 9 0 -soak%2:34:00:: 01190277 7 0 -soak%2:34:01:: 01190494 6 0 -soak%2:35:00:: 01397870 5 0 -soak%2:35:01:: 01578513 1 4 -soak%2:40:00:: 02319050 2 1 -soak%2:40:03:: 02347220 4 0 -soak_through%2:35:00:: 01605692 1 0 -soak_up%2:31:00:: 00601043 2 0 -soak_up%2:35:00:: 01539063 1 0 -soakage%1:22:00:: 13557158 1 0 -soaked%5:00:00:intoxicated:00 00798103 1 0 -soaker%1:18:00:: 09782167 2 0 -soaker%1:19:00:: 11502102 1 0 -soaking%1:04:00:: 00256501 3 0 -soaking%1:04:01:: 00277811 2 0 -soaking%1:22:00:: 13557158 1 1 -soaking%4:02:00:: 00461405 1 0 -soaking_up%1:22:00:: 13423922 1 0 -soap%1:06:00:: 04253437 1 9 -soap%1:06:01:: 04253751 3 0 -soap%1:21:00:: 13285101 2 0 -soap%2:29:00:: 00036932 1 0 -soap-rock%1:27:00:: 15044327 1 0 -soap-weed%1:20:00:: 12483282 1 0 -soap_bubble%1:17:00:: 09439120 1 0 -soap_dish%1:06:00:: 04254009 1 0 -soap_dispenser%1:06:00:: 04254120 1 0 -soap_film%1:06:00:: 04254205 1 0 -soap_flakes%1:06:00:: 04254319 1 1 -soap_opera%1:10:00:: 06622020 1 0 -soap_pad%1:06:00:: 04254450 1 0 -soap_powder%1:06:00:: 04254535 1 1 -soap_tree%1:20:00:: 12483282 1 0 -soapberry%1:20:00:: 12741222 1 0 -soapberry_family%1:20:00:: 12740514 1 0 -soapberry_tree%1:20:00:: 12741222 1 0 -soapberry_vine%1:20:00:: 12742741 1 0 -soapbox%1:06:00:: 03159640 2 0 -soapbox%1:06:01:: 04253931 1 0 -soapfish%1:05:00:: 02570484 1 0 -soapiness%1:07:00:: 04947888 1 0 -soaprock%1:27:00:: 15044327 1 0 -soapstone%1:27:00:: 15044327 1 0 -soapsuds%1:17:00:: 09439213 1 1 -soapweed%1:20:00:: 12483282 1 0 -soapwort%1:20:00:: 11814584 1 0 -soapwort_gentian%1:20:00:: 12295237 1 0 -soapy%3:01:00:: 03026319 1 0 -soapy%5:00:00:insincere:00 02181432 2 0 -soar%1:04:00:: 00326291 1 0 -soar%2:30:00:: 00155406 4 1 -soar%2:38:00:: 01943338 3 1 -soar%2:38:01:: 01943718 1 4 -soar%2:38:02:: 01942959 5 0 -soar%2:38:03:: 01955808 2 1 -soar_up%2:38:00:: 01943718 1 0 -soar_upwards%2:38:00:: 01943718 1 0 -soaring%1:04:00:: 00303495 1 0 -soaring%5:00:00:high:01 01205473 2 0 -soaring%5:00:00:high:02 01212346 1 2 -soave%1:13:00:: 07898247 1 0 -sob%1:04:00:: 00868669 3 0 -sob%1:18:00:: 09815188 2 0 -sob%1:26:00:: 14370122 1 0 -sob%2:29:00:: 00067129 1 2 -sob_sister%1:18:00:: 10618234 1 0 -sob_story%1:10:00:: 07222433 1 0 -sob_stuff%1:10:00:: 07222433 1 0 -sobbing%1:04:00:: 00868669 1 0 -sobbingly%4:02:00:: 00460339 1 0 -sober%2:30:00:: 00149118 3 0 -sober%2:30:01:: 00149296 2 0 -sober%2:30:02:: 00149469 1 0 -sober%3:00:01:: 00799517 1 5 -sober%3:00:02:: 02123314 4 0 -sober%5:00:00:colorless:02 00405179 3 1 -sober%5:00:00:serious:00 02119213 2 5 -sober_up%2:30:00:: 00149118 1 3 -sober_up%2:30:01:: 00149296 2 0 -sobering%5:00:00:serious:00 02120150 1 1 -soberly%4:02:00:: 00183823 1 3 -soberness%1:07:00:: 04647478 2 0 -soberness%1:26:00:: 14019138 1 0 -sobersided%5:00:00:humorless:00 01268636 1 0 -sobersides%1:18:00:: 10618146 1 0 -sobralia%1:20:00:: 12083113 1 0 -sobriety%1:04:00:: 01069777 4 0 -sobriety%1:07:01:: 04647478 3 0 -sobriety%1:07:02:: 04883804 2 0 -sobriety%1:26:00:: 14019138 1 1 -sobriquet%1:10:00:: 06337693 1 0 -socage%1:04:00:: 00579834 1 0 -soccer%1:04:00:: 00478262 1 0 -soccer_ball%1:06:00:: 04254680 1 0 -soccer_player%1:18:00:: 10618342 1 0 -sociability%1:07:00:: 04652930 1 1 -sociable%1:14:00:: 08256369 1 0 -sociable%3:00:00:: 02257141 1 0 -sociable%5:00:00:congenial:00 00560900 2 0 -sociableness%1:07:00:: 04652930 1 0 -sociably%4:02:00:: 00460439 2 0 -sociably%4:02:01:: 00350930 1 1 -social%1:14:00:: 08256369 1 1 -social%3:00:00:: 02248349 2 7 -social%3:01:00:: 02798370 1 81 -social%3:01:02:: 02798597 3 2 -social%5:00:00:friendly:01 01076634 6 0 -social%5:00:00:gregarious:00 02252877 5 0 -social%5:00:00:sociable:00 02258360 4 2 -social_action%1:10:00:: 06659530 1 0 -social_activity%1:04:00:: 01081197 1 0 -social_affair%1:14:00:: 08252211 1 0 -social_anthropologist%1:18:00:: 10618465 1 0 -social_anthropology%1:09:00:: 06147522 1 0 -social_assistance%1:04:00:: 01087740 1 0 -social_class%1:14:00:: 07974025 1 5 -social_climber%1:18:00:: 10618685 1 0 -social_club%1:14:00:: 08227214 1 0 -social_contract%1:26:00:: 13972601 1 2 -social_control%1:04:00:: 01123598 1 1 -social_dancer%1:18:00:: 09990415 1 0 -social_dancing%1:04:00:: 00532110 1 0 -social_democracy%1:09:00:: 06217318 1 0 -social_democratic_party%1:14:00:: 08263303 1 0 -social_development_commission%1:14:00:: 08298918 1 0 -social_disease%1:26:00:: 14133159 1 0 -social_drinker%1:18:00:: 10712690 1 0 -social_event%1:11:00:: 07288639 1 1 -social_function%1:11:00:: 07447261 1 0 -social_gathering%1:14:00:: 08252211 1 0 -social_group%1:14:00:: 07950920 1 0 -social_insect%1:05:00:: 02160947 1 0 -social_insurance%1:04:00:: 01087178 1 0 -social_intercourse%1:10:00:: 07134445 1 0 -social_lion%1:18:00:: 10265070 1 0 -social_movement%1:14:00:: 08464601 1 0 -social_occasion%1:11:00:: 07447261 1 0 -social_organisation%1:14:00:: 08378819 1 0 -social_organization%1:14:00:: 08378819 1 2 -social_phobia%1:26:00:: 14385403 1 0 -social_policy%1:10:00:: 06658994 1 0 -social_process%1:22:00:: 13557451 1 0 -social_psychology%1:09:00:: 06141561 1 0 -social_rank%1:26:00:: 13947415 1 0 -social_reformer%1:18:00:: 10515194 1 0 -social_relation%1:03:00:: 00032823 1 1 -social_science%1:09:00:: 06143154 1 3 -social_scientist%1:18:00:: 10619642 1 0 -social_season%1:28:00:: 15241311 1 0 -social_secretary%1:18:00:: 10619888 1 0 -social_security%1:04:00:: 01087939 1 2 -social_security_administration%1:14:00:: 08134649 1 0 -social_security_number%1:10:00:: 06425960 1 0 -social_service%1:04:00:: 00582195 1 0 -social_station%1:26:00:: 13947415 1 0 -social_status%1:26:00:: 13947415 1 1 -social_stratification%1:26:00:: 13939158 1 0 -social_structure%1:14:00:: 08378819 1 2 -social_system%1:14:00:: 08378819 1 2 -social_unit%1:14:00:: 08189659 1 0 -social_welfare%1:04:00:: 01086945 1 2 -social_work%1:04:00:: 01208924 1 0 -social_worker%1:18:00:: 10620027 1 0 -socialisation%1:04:00:: 01128984 3 0 -socialisation%1:04:01:: 01232412 2 0 -socialisation%1:04:02:: 01266745 1 0 -socialise%2:30:00:: 00405853 4 0 -socialise%2:30:01:: 00406053 3 0 -socialise%2:41:00:: 02386845 2 0 -socialise%2:41:01:: 02388950 1 0 -socialised%5:00:00:liberal:00 00576423 1 0 -socialiser%1:18:00:: 10619492 1 0 -socialising%1:04:00:: 01232412 1 0 -socialism%1:09:00:: 06220616 1 11 -socialism%1:14:00:: 08366202 2 0 -socialist%1:18:00:: 10618848 1 1 -socialist%3:00:04:: 00298041 1 0 -socialist_economy%1:14:00:: 08366202 1 0 -socialist_labor_party%1:14:00:: 08263560 1 0 -socialist_party%1:14:00:: 08263733 1 0 -socialist_people's_libyan_arab_jamahiriya%1:15:00:: 08959683 1 0 -socialist_republic_of_vietnam%1:15:00:: 09163192 1 0 -socialistic%3:00:00:: 00298041 1 3 -socialite%1:18:00:: 10619409 1 0 -sociality%1:07:00:: 04652635 1 1 -socialization%1:04:00:: 01128984 3 0 -socialization%1:04:01:: 01232412 2 0 -socialization%1:04:02:: 01266745 1 0 -socialize%2:30:00:: 00405853 4 0 -socialize%2:30:01:: 00406053 3 0 -socialize%2:41:00:: 02386845 2 0 -socialize%2:41:01:: 02388950 1 1 -socialized%5:00:00:liberal:00 00576423 1 1 -socializer%1:18:00:: 10619492 1 0 -socializing%1:04:00:: 01232412 1 0 -socially%4:02:00:: 00126527 1 3 -socially%4:02:01:: 00126638 2 0 -societal%3:01:00:: 02798370 1 1 -society%1:14:00:: 07966140 1 88 -society%1:14:01:: 08227214 2 6 -society%1:14:02:: 08387930 4 0 -society%1:26:00:: 13929588 3 0 -society_islands%1:15:00:: 08990344 1 0 -society_of_friends%1:14:00:: 08150377 1 0 -society_of_jesus%1:14:00:: 08149473 1 0 -socinian%1:18:00:: 10620212 1 0 -socinus%1:18:00:: 11307262 1 0 -socio-economic_class%1:14:00:: 07974025 1 0 -sociobiologic%3:01:00:: 02666132 1 0 -sociobiological%3:01:00:: 02666132 1 0 -sociobiologically%4:02:00:: 00133719 1 0 -sociobiologist%1:18:00:: 10620437 1 0 -sociobiology%1:09:00:: 06082972 1 0 -sociocultural%3:01:00:: 02872654 1 0 -socioeconomic%3:01:00:: 02717021 1 2 -socioeconomically%4:02:00:: 00203526 1 0 -sociolinguist%1:18:00:: 10620586 1 0 -sociolinguistic%3:01:00:: 02842981 1 0 -sociolinguistically%4:02:00:: 00131018 1 0 -sociolinguistics%1:09:00:: 06181123 1 0 -sociological%3:01:00:: 02906206 1 2 -sociologically%4:02:00:: 00460747 1 0 -sociologist%1:18:00:: 10620758 1 1 -sociology%1:09:00:: 06151693 1 0 -sociology_department%1:14:00:: 08117872 1 0 -sociometry%1:09:00:: 06152631 1 0 -sociopath%1:18:00:: 10489564 1 0 -sociopathic%3:01:00:: 02799173 1 0 -sociopathic_personality%1:26:00:: 14388139 1 0 -sock%1:06:00:: 04254777 1 3 -sock%1:10:01:: 07257582 2 0 -sock%2:35:00:: 01397088 1 2 -socket%1:06:00:: 04255034 3 0 -socket%1:06:01:: 04255163 2 0 -socket%1:08:00:: 05280831 1 0 -socket_wrench%1:06:00:: 04255346 1 0 -sockeye%1:05:00:: 02536165 2 0 -sockeye%1:13:00:: 07796165 1 0 -sockeye_salmon%1:05:00:: 02536165 2 0 -sockeye_salmon%1:13:00:: 07796165 1 0 -socle%1:06:00:: 04255499 1 0 -socotra_begonia%1:20:00:: 12362514 1 0 -socrates%1:18:00:: 11307422 1 0 -socratic%3:01:00:: 03033636 1 0 -socratic_irony%1:07:00:: 04715308 1 0 -socratic_method%1:09:00:: 05661118 1 0 -sod%1:17:00:: 09463919 1 4 -sod%1:18:00:: 10621514 3 0 -sod%1:18:01:: 10621140 4 0 -sod%1:27:00:: 15065025 2 0 -sod%2:35:00:: 01335711 1 0 -sod's_law%1:10:00:: 07153502 1 0 -sod_house%1:06:00:: 04255899 1 0 -soda%1:13:00:: 07927512 2 0 -soda%1:27:00:: 15044844 1 0 -soda_ash%1:27:00:: 15044844 1 0 -soda_biscuit%1:13:00:: 07694516 1 0 -soda_bottle%1:06:00:: 03983396 1 0 -soda_can%1:06:00:: 04255586 1 0 -soda_cracker%1:13:00:: 07695284 1 0 -soda_fountain%1:06:00:: 04255670 2 0 -soda_fountain%1:06:01:: 04255768 1 0 -soda_jerk%1:18:01:: 10621294 1 0 -soda_jerker%1:18:00:: 10621294 1 0 -soda_lime%1:27:00:: 15044523 1 0 -soda_niter%1:27:00:: 14860603 1 0 -soda_pop%1:13:00:: 07927512 1 0 -soda_water%1:13:00:: 07936548 1 0 -soda_water%1:13:02:: 07927512 2 0 -sodalist%1:18:00:: 10621400 1 0 -sodalite%1:27:00:: 15044648 1 0 -sodality%1:14:00:: 08075388 1 0 -sodbuster%1:18:00:: 10078806 1 0 -sodden%5:00:00:wet:01 02549032 1 2 -sodding%5:00:00:unmitigated:00 01520091 1 0 -soddy%1:06:00:: 04255899 1 1 -soddy%1:18:00:: 11307587 2 0 -sodium%1:27:00:: 14655371 1 1 -sodium-vapor_lamp%1:06:00:: 04256318 1 0 -sodium-vapour_lamp%1:06:00:: 04256318 1 0 -sodium_benzoate%1:27:00:: 14775173 1 0 -sodium_bicarbonate%1:27:00:: 14775995 1 0 -sodium_bichromate%1:27:00:: 15013875 1 0 -sodium_carbonate%1:27:00:: 15044844 1 0 -sodium_carboxymethyl_cellulose%1:27:00:: 15045030 1 0 -sodium_chlorate%1:27:00:: 15013450 1 0 -sodium_chloride%1:27:00:: 14672023 1 0 -sodium_cyanide%1:27:00:: 14826904 1 0 -sodium_dichromate%1:27:00:: 15013875 1 0 -sodium_ethylmercurithiosalicylate%1:06:00:: 04424003 1 0 -sodium_fluoride%1:27:00:: 15045216 1 0 -sodium_hydride%1:27:00:: 15045379 1 0 -sodium_hydrogen_carbonate%1:27:00:: 14775995 1 0 -sodium_hydroxide%1:27:00:: 15014990 1 0 -sodium_hypochlorite%1:27:00:: 15045490 1 0 -sodium_iodide%1:27:00:: 15045677 1 2 -sodium_lauryl_sulfate%1:27:00:: 15045782 1 0 -sodium_lauryl_sulphate%1:27:00:: 15045782 1 0 -sodium_nitrate%1:27:00:: 14860603 1 3 -sodium_nitrite%1:27:00:: 15016123 1 0 -sodium_orthophosphate%1:27:00:: 15046568 1 0 -sodium_phosphate%1:27:00:: 15046568 1 0 -sodium_pyrophosphate%1:27:00:: 15046077 1 0 -sodium_salicylate%1:06:00:: 04256033 1 0 -sodium_silicate%1:27:00:: 14882578 1 0 -sodium_sulfate%1:27:00:: 15046250 1 0 -sodium_sulphate%1:27:00:: 15046250 1 0 -sodium_thiopental%1:06:00:: 04256152 1 0 -sodium_thiosulfate%1:27:00:: 14913860 1 0 -sodium_thiosulphate%1:27:00:: 14913860 1 0 -sodium_tripolyphosphate%1:27:00:: 15046421 1 2 -sodoku%1:26:00:: 14567690 1 0 -sodom%1:15:00:: 08795654 2 0 -sodom%1:15:01:: 08795880 1 0 -sodomise%2:41:00:: 02568392 2 0 -sodomise%2:41:01:: 02568572 1 0 -sodomist%1:18:00:: 10621514 1 0 -sodomite%1:18:00:: 10621514 1 0 -sodomize%2:41:00:: 02568392 2 0 -sodomize%2:41:01:: 02568572 1 0 -sodomy%1:04:00:: 00849294 1 0 -sofa%1:06:00:: 04256520 1 5 -sofa_bed%1:06:00:: 03100346 1 0 -soffit%1:06:00:: 04256758 1 0 -sofia%1:15:00:: 08714458 1 0 -sofia_scicolone%1:18:00:: 11138180 1 0 -soft%3:00:00:: 02286083 5 0 -soft%3:00:01:: 01152746 1 18 -soft%3:00:02:: 01156112 2 13 -soft%3:00:03:: 01156925 9 0 -soft%3:00:04:: 01454636 3 4 -soft%3:00:05:: 01157887 8 0 -soft%3:00:06:: 01459295 6 0 -soft%3:00:07:: 01458303 7 0 -soft%4:02:00:: 00148139 1 1 -soft%5:00:00:clement:02 00438332 18 0 -soft%5:00:00:conciliatory:00 00760473 16 0 -soft%5:00:00:dull:02 00284400 19 0 -soft%5:00:00:easy:01 00750054 17 0 -soft%5:00:00:falling:00 02487540 10 0 -soft%5:00:00:light:08 01192035 14 0 -soft%5:00:00:mild:00 01509066 13 0 -soft%5:00:00:permissive:01 01763159 12 0 -soft%5:00:00:qualitative:00 01914767 11 0 -soft%5:00:00:tender:02 02448324 4 2 -soft%5:00:00:unfit:01 01019713 15 0 -soft-boiled%3:00:00:: 01158453 1 0 -soft-boiled%5:00:00:cooked:00 00618752 2 0 -soft-cast_steel%1:27:00:: 14952878 1 0 -soft-coated_wheaten_terrier%1:05:00:: 02098105 1 0 -soft-cover%1:06:00:: 03886432 1 0 -soft-cover_book%1:06:00:: 03886432 1 0 -soft-finned%3:01:00:: 02798806 1 0 -soft-finned_fish%1:05:00:: 01428580 1 0 -soft-footed%5:00:00:soft:04 01456487 1 0 -soft-haired%5:00:00:hairy:00 00215929 1 0 -soft-nosed%3:01:00:: 02798901 1 0 -soft-pedal%2:32:00:: 00840264 1 0 -soft-shell_clam%1:05:00:: 01957335 2 0 -soft-shell_clam%1:13:00:: 07787429 1 0 -soft-shell_crab%1:05:00:: 01978136 2 0 -soft-shell_crab%1:13:00:: 07788198 1 0 -soft-shelled_crab%1:05:00:: 01978136 2 0 -soft-shelled_crab%1:13:00:: 07788198 1 0 -soft-shelled_turtle%1:05:00:: 01672032 1 0 -soft-shoe%1:04:00:: 00528156 1 1 -soft-shoe_dancing%1:04:00:: 00528156 1 0 -soft-shoe_shuffle%1:04:00:: 00528156 1 0 -soft-soap%2:32:00:: 00769355 2 0 -soft-soap%2:32:01:: 00769453 1 0 -soft-solder%2:35:00:: 01595605 1 0 -soft-spoken%5:00:00:soft:04 01456572 1 1 -soft-witted%5:00:00:stupid:00 00441365 1 0 -soft_coal%1:27:00:: 14815086 1 0 -soft_copy%1:10:00:: 06391347 1 0 -soft_corn%1:20:00:: 12145325 1 0 -soft_diet%1:13:00:: 07564796 1 0 -soft_drink%1:13:00:: 07927197 1 2 -soft_drug%1:06:00:: 04256993 1 0 -soft_flag%1:20:00:: 12156117 1 0 -soft_glass%1:27:00:: 14881759 1 1 -soft_goods%1:06:00:: 03252064 1 0 -soft_ice_cream%1:13:00:: 07617051 1 0 -soft_market%1:04:00:: 01097920 1 0 -soft_money%1:21:00:: 13271094 1 0 -soft_news%1:10:00:: 06684153 1 0 -soft_on%5:00:00:loving:00 01465668 1 0 -soft_option%1:09:00:: 05792691 1 0 -soft_palate%1:08:00:: 05309392 1 0 -soft_pedal%1:06:00:: 04257223 1 0 -soft_pretzel%1:13:00:: 07695878 1 0 -soft_roe%1:13:00:: 07799447 1 0 -soft_roll%1:13:00:: 07691863 1 0 -soft_rot%1:26:00:: 14284450 1 0 -soft_rush%1:20:00:: 11743772 1 0 -soft_scale%1:05:00:: 02248887 1 0 -soft_sell%1:04:00:: 01101661 1 0 -soft_shield_fern%1:20:00:: 13200651 1 0 -soft_soap%1:06:00:: 04257385 2 0 -soft_soap%1:10:00:: 06696025 1 0 -soft_solder%1:27:00:: 14718715 1 0 -soft_spot%1:07:00:: 05042283 1 1 -soft_spot%1:08:00:: 05545212 3 0 -soft_spot%1:12:00:: 07545594 2 0 -soft_tick%1:05:00:: 01779463 1 0 -soft_touch%1:18:00:: 09921409 1 0 -soft_tree_fern%1:20:00:: 13190747 1 0 -soft_water%1:27:00:: 15046716 1 0 -soft_wheat%1:20:00:: 12142750 1 0 -softback%1:06:00:: 03886432 1 0 -softback_book%1:06:00:: 03886432 1 0 -softball%1:04:00:: 00475787 2 0 -softball%1:06:00:: 04256891 1 0 -softball_game%1:04:00:: 00475787 1 0 -soften%2:30:00:: 00254867 7 0 -soften%2:30:01:: 00255389 6 0 -soften%2:30:02:: 00390215 2 1 -soften%2:32:00:: 01058036 5 0 -soften%2:35:00:: 01576917 4 0 -soften%2:39:00:: 02190632 1 4 -soften%2:42:00:: 02703289 3 0 -softened%5:00:00:modulated:00 01541567 1 1 -softened%5:00:00:soft:04 01454985 2 0 -softener%1:27:00:: 15055936 1 0 -softening%1:22:00:: 13557766 1 1 -softening%5:00:00:soft:01 01153844 1 1 -softheaded%5:00:00:impractical:00 01836766 1 0 -softhearted%3:00:00:: 01158453 1 0 -softheartedness%1:12:00:: 07505347 1 0 -softie%1:18:00:: 10621738 1 0 -softish%5:00:00:soft:01 01154886 1 0 -softly%4:02:00:: 00070166 1 18 -softly%4:02:02:: 00180279 3 3 -softly%4:02:03:: 00343660 4 0 -softly%4:02:04:: 00503945 2 3 -softness%1:07:00:: 04938228 1 2 -softness%1:07:01:: 04990877 5 0 -softness%1:07:02:: 04638857 10 0 -softness%1:07:03:: 04910973 7 0 -softness%1:07:04:: 04668139 9 0 -softness%1:07:05:: 04704346 8 0 -softness%1:07:06:: 04956419 6 0 -softness%1:26:00:: 14489859 4 0 -softness%1:26:01:: 14547369 2 0 -softness%1:26:02:: 14522570 3 0 -software%1:10:00:: 06566077 1 0 -software_documentation%1:10:00:: 06588326 1 0 -software_engineer%1:18:00:: 10481268 1 0 -software_error%1:11:00:: 07300092 1 0 -software_package%1:06:00:: 04257533 2 0 -software_package%1:10:00:: 06566077 1 0 -software_product%1:06:00:: 04257533 1 0 -software_program%1:10:00:: 06566077 1 0 -software_system%1:10:00:: 06566077 1 0 -softwood%1:27:00:: 15100257 1 0 -softy%1:18:00:: 10621738 1 0 -sogginess%1:26:00:: 14536331 1 0 -soggy%5:00:00:heavy:01 01185417 2 0 -soggy%5:00:00:inactive:01 00034322 3 0 -soggy%5:00:00:wet:01 02548066 1 0 -soh%1:10:00:: 06868844 1 0 -soho%1:15:00:: 08875057 2 0 -soho%1:15:01:: 09121619 1 0 -soi-disant%5:00:00:questionable:00 01918001 1 0 -soigne%5:00:00:elegant:00 00850983 1 0 -soignee%5:00:00:elegant:00 00850983 1 0 -soil%1:15:00:: 08493064 4 0 -soil%1:17:00:: 09335240 3 3 -soil%1:26:00:: 14498096 1 24 -soil%1:27:01:: 14844693 2 12 -soil%2:35:00:: 01534147 1 1 -soil-building%5:00:00:planted:00 01832491 1 0 -soil_bank%1:21:00:: 13369282 1 0 -soil_conditioner%1:27:00:: 14845383 1 0 -soil_conservation%1:04:00:: 00819641 1 0 -soil_erosion%1:22:00:: 13558003 1 0 -soil_horizon%1:15:00:: 08658309 1 0 -soil_pipe%1:06:00:: 04257684 1 0 -soil_profile%1:15:00:: 08548605 1 0 -soiled%3:00:04:: 00419289 1 10 -soiling%1:04:00:: 00276620 1 0 -soilure%1:04:00:: 00276620 1 0 -soiree%1:14:00:: 08255231 1 0 -soiree_musicale%1:14:00:: 08255373 1 1 -soissons%1:04:00:: 01294791 1 0 -soixante-neuf%1:04:00:: 00855407 1 0 -soja%1:20:00:: 12532168 1 0 -soja_bean%1:20:00:: 12532168 1 0 -sojourn%1:04:00:: 01055360 1 1 -sojourn%2:42:00:: 02709422 1 0 -sojourner%1:18:00:: 10621847 1 0 -sojourner_truth%1:18:00:: 11350705 1 0 -sokoro%1:10:00:: 06985807 1 0 -sol%1:10:00:: 06868844 3 0 -sol%1:18:00:: 09561593 2 0 -sol%1:27:00:: 14590795 1 0 -sol_hurok%1:18:00:: 11067745 1 0 -sol_rojo%1:14:00:: 08040008 1 0 -solace%1:04:00:: 01211667 3 0 -solace%1:12:00:: 07492655 1 2 -solace%1:26:00:: 14446161 2 0 -solace%2:37:00:: 01814815 1 2 -solacement%1:12:00:: 07492655 2 0 -solacement%1:26:00:: 14446161 1 0 -solan%1:05:00:: 02053425 1 0 -solan_goose%1:05:00:: 02053425 1 0 -solanaceae%1:20:00:: 12892226 1 0 -solanaceous%3:01:00:: 02799301 1 0 -solanaceous_vegetable%1:13:00:: 07710007 1 0 -solandra%1:20:00:: 12913645 1 0 -solandra_guttata%1:20:00:: 12913791 1 0 -solanopteris%1:20:00:: 13178500 1 0 -solanopteris_bifrons%1:20:00:: 13178707 1 0 -solant_goose%1:05:00:: 02053425 1 0 -solanum%1:20:00:: 12893094 1 0 -solanum_aviculare%1:20:00:: 12893794 1 0 -solanum_burbankii%1:20:00:: 12896615 1 0 -solanum_carolinense%1:20:00:: 12893993 1 0 -solanum_commersonii%1:20:00:: 12894438 1 0 -solanum_crispum%1:20:00:: 12894247 1 0 -solanum_dulcamara%1:20:00:: 12894607 1 0 -solanum_elaeagnifolium%1:20:00:: 12894930 1 0 -solanum_giganteum%1:20:00:: 12895298 1 0 -solanum_jamesii%1:20:00:: 12895578 1 0 -solanum_jasmoides%1:20:00:: 12895811 1 0 -solanum_macranthum%1:20:00:: 12897999 1 0 -solanum_melanocerasum%1:20:00:: 12896615 1 0 -solanum_melongena%1:20:00:: 12896000 1 0 -solanum_nigrum%1:20:00:: 12896307 1 0 -solanum_nigrum_guineese%1:20:00:: 12896615 1 0 -solanum_pseudocapsicum%1:20:00:: 12896862 1 0 -solanum_quitoense%1:20:00:: 12897118 1 0 -solanum_rostratum%1:20:00:: 12897341 1 0 -solanum_tuberosum%1:20:00:: 12897493 1 0 -solanum_wendlandii%1:20:00:: 12897788 1 0 -solanum_wrightii%1:20:00:: 12897999 1 0 -solar%3:01:00:: 02799016 1 4 -solar_apex%1:15:00:: 08494987 1 0 -solar_array%1:06:00:: 04257790 1 0 -solar_battery%1:06:00:: 04257790 1 0 -solar_calendar%1:28:00:: 15178694 1 0 -solar_cell%1:06:00:: 04257986 1 0 -solar_collector%1:06:00:: 04258138 1 0 -solar_constant%1:28:00:: 15282378 1 0 -solar_day%1:28:00:: 15155220 1 0 -solar_dish%1:06:00:: 04258138 1 0 -solar_eclipse%1:11:00:: 07368877 1 0 -solar_energy%1:19:00:: 11509697 1 0 -solar_flare%1:19:00:: 11510223 1 0 -solar_furnace%1:06:00:: 04258138 1 0 -solar_gravity%1:19:00:: 11464784 1 0 -solar_halo%1:19:00:: 11487533 1 0 -solar_heater%1:06:00:: 04258333 1 0 -solar_house%1:06:00:: 04258438 1 0 -solar_magnetic_field%1:19:00:: 11477269 1 0 -solar_month%1:28:00:: 15209316 1 0 -solar_panel%1:06:00:: 04257790 1 0 -solar_parallax%1:19:00:: 11529441 1 0 -solar_physics%1:09:00:: 06098088 1 0 -solar_plexus%1:08:00:: 05508735 1 0 -solar_power%1:19:00:: 11509697 1 0 -solar_prominence%1:19:00:: 11510411 1 0 -solar_radiation%1:19:00:: 11510067 1 6 -solar_system%1:17:00:: 09439433 1 4 -solar_telescope%1:06:00:: 04258618 1 0 -solar_thermal_system%1:06:00:: 04258732 1 0 -solar_trap%1:06:00:: 04357639 1 0 -solar_wind%1:19:00:: 11510571 1 1 -solar_year%1:28:00:: 15202806 1 0 -solarisation%1:07:00:: 05044387 1 0 -solarise%2:39:00:: 02112546 4 0 -solarise%2:39:01:: 02113850 3 0 -solarise%2:39:02:: 02114056 2 0 -solarise%2:39:03:: 02114433 1 0 -solarium%1:06:00:: 04356925 1 0 -solarization%1:07:00:: 05044387 1 0 -solarize%2:39:00:: 02112546 4 0 -solarize%2:39:01:: 02113850 3 0 -solarize%2:39:02:: 02114056 2 0 -solarize%2:39:03:: 02114433 1 0 -sold%3:00:00:: 02259239 1 0 -sold-out%5:00:00:corrupt:00 00622468 1 1 -sold-out%5:00:00:sold:00 02259540 2 0 -solder%1:27:00:: 14718822 1 0 -solder%2:35:00:: 01595260 1 7 -solderer%1:18:00:: 10621941 1 0 -soldering%1:04:00:: 00148653 1 0 -soldering_flux%1:27:00:: 14860280 1 0 -soldering_iron%1:06:00:: 04258859 1 0 -soldier%1:05:00:: 02207647 2 0 -soldier%1:18:00:: 10622053 1 166 -soldier%2:33:00:: 01097031 1 0 -soldier-fish%1:05:00:: 01451426 1 0 -soldier_grainy_club%1:20:00:: 12962059 1 0 -soldier_of_fortune%1:18:00:: 10309614 1 0 -soldierfish%1:05:00:: 01451426 1 0 -soldiering%1:04:00:: 00741478 2 0 -soldiering%1:09:00:: 05640184 1 1 -soldierlike%5:00:00:military:02 01518694 1 0 -soldierly%5:00:00:military:02 01518694 1 0 -soldiers_of_god%1:14:00:: 08028148 1 0 -soldiership%1:09:00:: 05640184 1 0 -soldiery%1:14:00:: 08397255 1 2 -sole%1:05:00:: 02663849 4 0 -sole%1:06:00:: 04258982 1 3 -sole%1:08:00:: 05577190 3 0 -sole%1:13:00:: 07791274 2 0 -sole%2:30:00:: 00533403 1 0 -sole%5:00:00:single:05 02214736 2 0 -sole%5:00:00:unshared:00 02152985 1 2 -solea%1:05:00:: 02664136 1 0 -solea_lascaris%1:05:00:: 02664399 1 0 -solea_solea%1:05:00:: 02664285 1 0 -solecism%1:04:00:: 00076196 1 0 -soled%3:00:00:: 02259817 1 1 -soledad%1:15:00:: 08733563 1 0 -soledad_pine%1:20:00:: 11618525 1 0 -soleidae%1:05:00:: 02663657 1 0 -soleirolia%1:20:00:: 12393527 1 0 -soleirolia_soleirolii%1:20:00:: 12393723 1 0 -soleless%3:00:00:: 02259966 1 0 -solely%4:02:00:: 00008600 1 9 -solemn%5:00:00:serious:00 02119213 1 2 -solemn%5:00:01:serious:00 02118840 2 0 -solemness%1:07:00:: 04647826 1 0 -solemnisation%1:04:00:: 00516086 1 0 -solemnise%2:30:00:: 00579565 3 0 -solemnise%2:41:00:: 02579247 1 0 -solemnise%2:41:01:: 02489748 2 0 -solemnity%1:07:00:: 04647826 1 1 -solemnity%1:12:01:: 07512147 2 0 -solemnity_of_mary%1:28:00:: 15192890 1 0 -solemnization%1:04:00:: 00516086 1 0 -solemnize%2:30:00:: 00579565 3 0 -solemnize%2:41:00:: 02579247 1 0 -solemnize%2:41:01:: 02489748 2 0 -solemnly%4:02:00:: 00189960 1 4 -solenichthyes%1:05:00:: 01453852 1 0 -solenidae%1:05:00:: 01958790 1 0 -solenogaster%1:05:00:: 01954516 1 0 -solenogastres%1:05:00:: 01954340 1 0 -solenoid%1:06:00:: 04259202 1 0 -solenopsis%1:05:00:: 02220960 1 0 -solenostemon%1:20:00:: 12868418 1 0 -solenostemon_blumei%1:20:00:: 12845413 1 0 -solenostemon_scutellarioides%1:20:00:: 12845413 1 0 -solent%1:17:00:: 09439879 1 0 -soleus%1:08:00:: 05575582 1 0 -soleus_muscle%1:08:00:: 05575582 1 0 -solfa%1:10:00:: 06867880 1 0 -solfa_syllable%1:10:00:: 06868043 1 0 -solfege%1:04:00:: 01255808 2 0 -solfege%1:04:01:: 01255935 1 0 -solfeggio%1:04:00:: 01255808 2 0 -solfeggio%1:04:01:: 01255935 1 0 -solferino%1:04:00:: 01295153 2 0 -solferino%1:07:00:: 04971522 1 0 -solicit%2:32:00:: 00782057 1 4 -solicit%2:32:01:: 00781652 3 0 -solicit%2:32:04:: 00771133 4 0 -solicit%2:32:05:: 00753734 5 0 -solicit%2:41:00:: 02534492 2 0 -solicitation%1:04:01:: 00161044 3 0 -solicitation%1:10:00:: 07187773 1 0 -solicitation%1:10:01:: 06513764 2 0 -solicitor%1:18:00:: 10623175 2 0 -solicitor%1:18:01:: 10623354 1 0 -solicitor_general%1:18:00:: 10623533 1 0 -solicitorship%1:04:00:: 00604321 1 0 -solicitous%5:00:00:attentive:00 00164681 2 0 -solicitous%5:00:00:concerned:00 00544860 1 0 -solicitously%4:02:00:: 00460894 1 0 -solicitousness%1:12:00:: 07505207 1 0 -solicitude%1:12:00:: 07505207 1 2 -solid%1:25:00:: 13860793 3 0 -solid%1:26:00:: 14480772 2 1 -solid%1:27:04:: 15046900 1 14 -solid%3:00:01:: 02260035 2 6 -solid%3:00:02:: 02263680 3 5 -solid%5:00:00:cubic:00 00658166 9 1 -solid%5:00:00:good:01 01125006 1 8 -solid%5:00:00:hard:01 01151740 8 1 -solid%5:00:00:homogeneous:00 01200339 4 4 -solid%5:00:00:opaque:00 00434597 10 1 -solid%5:00:00:respectable:00 01993693 13 0 -solid%5:00:00:serious:00 02120276 12 0 -solid%5:00:00:sound:00 02273952 11 0 -solid%5:00:00:sound:01 02275412 7 1 -solid%5:00:00:unbroken:02 00291181 5 4 -solid%5:00:00:undiversified:00 00784215 15 0 -solid%5:00:00:wholesome:00 02558528 6 1 -solid%5:00:03:homogeneous:00 01200491 14 0 -solid-colored%5:00:00:plain:02 01786026 1 0 -solid-coloured%5:00:00:plain:02 01786026 1 0 -solid-hoofed%5:00:00:ungulate:00 02489667 1 0 -solid-state%5:00:01:solid:01 02261013 2 0 -solid-state%5:00:02:solid:01 02261162 1 2 -solid-state_physics%1:09:00:: 06111479 1 0 -solid_angle%1:25:00:: 13889461 1 2 -solid_body_substance%1:08:00:: 05264081 1 0 -solid_figure%1:25:00:: 13863473 1 0 -solid_food%1:13:00:: 07555863 1 0 -solid_geometry%1:09:00:: 06012225 1 0 -solid_ground%1:17:00:: 09334396 1 0 -solid_solution%1:27:00:: 15051705 1 0 -solid_state%1:26:00:: 14480772 1 0 -solidago%1:20:00:: 12015840 1 0 -solidago_bicolor%1:20:00:: 12016434 1 0 -solidago_canadensis%1:20:00:: 12016567 1 0 -solidago_missouriensis%1:20:00:: 12016777 1 0 -solidago_multiradiata%1:20:00:: 12016914 1 0 -solidago_nemoralis%1:20:00:: 12017127 1 0 -solidago_odora%1:20:00:: 12017326 1 0 -solidago_rugosa%1:20:00:: 12017511 1 0 -solidago_sempervirens%1:20:00:: 12017664 1 0 -solidago_spathulata%1:20:00:: 12017853 1 0 -solidarity%1:07:00:: 04765038 1 5 -solidification%1:22:00:: 13491060 1 0 -solidified%5:00:00:solid:01 02260382 1 0 -solidify%2:30:00:: 00445169 2 0 -solidify%2:30:01:: 00445467 1 0 -solidifying%1:22:00:: 13491060 1 0 -solidity%1:07:00:: 04671075 3 0 -solidity%1:07:02:: 04941124 1 2 -solidity%1:26:00:: 14452442 2 0 -solidly%4:02:00:: 00231138 2 1 -solidly%4:02:02:: 00231336 1 1 -solidness%1:07:00:: 04761212 3 0 -solidness%1:07:01:: 04671075 4 0 -solidness%1:07:02:: 04941124 2 0 -solidness%1:26:00:: 14480772 1 0 -solidus%1:10:00:: 06844903 2 0 -solidus%1:21:00:: 13389194 1 0 -soliloquise%2:32:00:: 00964478 1 0 -soliloquize%2:32:00:: 00964478 1 0 -soliloquy%1:10:00:: 07160752 1 0 -soliloquy%1:10:01:: 07011529 2 0 -solingen%1:15:00:: 08771277 1 0 -solipsism%1:09:00:: 05976649 1 1 -solitaire%1:04:00:: 00495524 4 0 -solitaire%1:05:01:: 01561181 3 0 -solitaire%1:05:02:: 01811542 2 0 -solitaire%1:06:00:: 04259364 1 0 -solitarily%4:02:00:: 00461045 1 0 -solitariness%1:07:00:: 04622415 2 0 -solitariness%1:26:00:: 14415163 1 0 -solitary%1:18:00:: 10172448 2 0 -solitary%1:26:00:: 13999941 1 0 -solitary%5:00:00:single:05 02214736 4 0 -solitary%5:00:00:unaccompanied:00 02251212 3 0 -solitary%5:00:00:ungregarious:00 02253205 2 1 -solitary%5:00:00:uninhabited:00 01313649 5 0 -solitary%5:00:01:unsocial:00 02250430 1 3 -solitary_confinement%1:26:00:: 13999941 1 0 -solitary_pussytoes%1:20:00:: 11922839 1 0 -solitary_vireo%1:05:00:: 01603000 1 0 -solitary_wave%1:11:00:: 07346344 1 0 -soliton%1:11:00:: 07346344 1 0 -soliton_wave%1:11:00:: 07346344 1 0 -solitude%1:15:00:: 08652480 3 0 -solitude%1:26:00:: 14415072 1 1 -solitude%1:26:01:: 14414980 2 0 -solitudinarian%1:18:00:: 10172448 1 0 -solleret%1:06:00:: 04259468 1 0 -solmisation%1:10:00:: 06867675 1 0 -solmizate%2:36:00:: 01730384 2 0 -solmizate%2:36:01:: 01731353 1 0 -solmization%1:04:00:: 01255935 2 0 -solmization%1:10:00:: 06867675 1 0 -solo%1:04:00:: 00304729 3 0 -solo%1:04:01:: 01257418 1 1 -solo%1:10:00:: 07040939 2 0 -solo%2:36:00:: 01715040 2 0 -solo%2:38:00:: 01941987 1 0 -solo%4:02:00:: 00157967 1 0 -solo%5:00:00:unaccompanied:01 02252480 1 0 -solo_blast%1:04:00:: 00132497 1 1 -solo_homer%1:04:00:: 00132497 1 0 -solo_man%1:05:00:: 02474431 1 0 -soloist%1:18:00:: 10623650 1 5 -solomon%1:18:00:: 11307759 1 0 -solomon's-seal%1:20:00:: 12474167 1 0 -solomon's_seal%1:10:00:: 06882333 1 0 -solomon_bellow%1:18:00:: 10843228 1 0 -solomon_guggenheim%1:18:00:: 11019073 1 0 -solomon_hurok%1:18:00:: 11067745 1 0 -solomon_islands%1:15:00:: 08998233 1 0 -solomon_islands%1:15:01:: 08997976 2 0 -solomonic%3:01:00:: 02799446 1 0 -solomons%1:15:00:: 08997976 1 0 -solon%1:18:00:: 10650162 1 0 -solresol%1:10:00:: 06898052 1 0 -solstice%1:28:00:: 15221818 1 0 -solubility%1:07:00:: 05210221 3 0 -solubility%1:07:01:: 05215483 2 0 -solubility%1:23:00:: 13583272 1 0 -soluble%3:00:01:: 02265015 1 1 -soluble%3:00:02:: 02266145 2 0 -soluble_glass%1:27:00:: 14882578 1 0 -soluble_rna%1:27:00:: 14833143 1 0 -solubleness%1:07:00:: 05010314 1 0 -solute%1:27:00:: 15047849 1 0 -solution%1:04:00:: 00190783 5 0 -solution%1:09:00:: 05661668 3 8 -solution%1:10:00:: 06743506 2 8 -solution%1:14:00:: 08005954 4 6 -solution%1:27:00:: 14589223 1 12 -solvability%1:07:00:: 05215483 1 0 -solvable%5:00:00:soluble:02 02266451 1 0 -solvate%1:27:00:: 15047988 1 0 -solvate%2:30:00:: 00446514 2 0 -solvate%2:30:01:: 00446695 1 0 -solvating_agent%1:27:00:: 15048184 1 1 -solvation%1:22:00:: 13558125 1 0 -solvay%1:18:00:: 11307937 1 0 -solvay_process%1:22:00:: 13558325 1 0 -solve%2:31:00:: 00634906 1 30 -solve%2:31:01:: 00733044 2 5 -solve%2:32:10:: 00761454 3 0 -solved%3:00:00:: 02267012 1 1 -solvency%1:26:00:: 14478143 1 0 -solvent%1:10:00:: 06743506 2 0 -solvent%1:27:00:: 15047313 1 1 -solvent%3:00:00:: 02026312 1 0 -solver%1:18:00:: 10458111 1 0 -solving%1:04:00:: 00153809 1 0 -solway_firth%1:17:00:: 09440036 1 0 -solzhenitsyn%1:18:00:: 11308120 1 0 -som%1:23:00:: 13701928 2 0 -som%1:23:01:: 13703505 1 0 -soma%1:08:00:: 05217168 3 0 -soma%1:18:00:: 09529083 2 0 -soma%1:20:00:: 13237988 1 0 -somaesthesia%1:09:00:: 05659856 2 0 -somaesthesia%1:09:01:: 05721180 1 0 -somaesthesis%1:09:00:: 05659856 1 0 -somali%1:10:00:: 06991004 2 0 -somali%1:18:00:: 09749880 1 0 -somali%3:01:00:: 03119182 1 0 -somali_peninsula%1:15:00:: 08999154 1 0 -somalia%1:15:00:: 08998560 1 0 -somalian%1:18:00:: 09749880 1 0 -somalian%3:01:00:: 03119182 1 0 -somalian_monetary_unit%1:23:00:: 13706753 1 0 -somalian_shilling%1:23:00:: 13706864 1 0 -soman%1:27:00:: 15056372 1 0 -somataesthesis%1:09:00:: 05659856 1 0 -somateria%1:05:00:: 01853072 1 0 -somatesthesia%1:09:00:: 05659856 2 0 -somatesthesia%1:09:01:: 05721180 1 0 -somatic%5:00:00:physical:00 01778935 1 4 -somatic_cell%1:08:00:: 05430628 1 0 -somatic_cell_nuclear_transfer%1:04:00:: 00638770 1 0 -somatic_cell_nuclear_transplantation%1:04:00:: 00638770 1 0 -somatic_chromosome%1:08:00:: 05443966 1 0 -somatic_delusion%1:26:00:: 14378897 1 0 -somatic_sensation%1:09:00:: 05721180 1 0 -somatic_sense%1:09:00:: 05659856 1 0 -somatic_sensory_system%1:09:00:: 05659856 1 0 -somatogenetic%5:00:00:physical:00 01779792 1 0 -somatogenic%5:00:00:physical:00 01779792 1 0 -somatosense%1:09:00:: 05654873 1 0 -somatosensory%3:01:00:: 02799595 1 0 -somatosensory_system%1:09:00:: 05659856 1 0 -somatotrophic_hormone%1:08:00:: 05412649 1 0 -somatotrophin%1:08:00:: 05412649 1 0 -somatotropic_hormone%1:08:00:: 05412649 1 0 -somatotropin%1:08:00:: 05412649 1 0 -somatotype%1:07:00:: 04998966 1 0 -somber%5:00:00:colorless:02 00405179 1 1 -somber%5:00:00:depressing:00 00365261 2 0 -somberly%4:02:00:: 00461152 1 0 -somberness%1:07:00:: 04647478 3 0 -somberness%1:12:00:: 07533257 2 0 -somberness%1:26:00:: 13985462 1 0 -sombre%5:00:00:colorless:02 00405179 1 0 -sombre%5:00:00:depressing:00 00365261 2 0 -sombrely%4:02:00:: 00461152 1 0 -sombreness%1:07:00:: 04647478 3 0 -sombreness%1:12:00:: 07533257 2 0 -sombreness%1:26:00:: 13985462 1 0 -sombrero%1:06:00:: 04259630 2 0 -sombrero%1:15:00:: 08988333 1 0 -some%3:00:00:: 02267308 1 130 -some%4:02:00:: 00007015 1 2 -some%5:00:00:extraordinary:00 01678586 4 0 -some%5:00:00:many:00 01552634 3 7 -some%5:00:00:much:00 01554063 2 7 -some_other%5:00:00:other:00 02070188 1 2 -somebody%1:03:00:: 00007846 1 0 -someday%4:02:00:: 00189401 1 10 -somehow%4:02:00:: 00026137 1 16 -somehow%4:02:01:: 00026416 2 7 -someone%1:03:00:: 00007846 1 17 -someplace%4:02:00:: 00025559 1 1 -somersault%1:04:00:: 00439484 1 4 -somersault%2:38:00:: 01867697 1 0 -somersaulting%1:04:00:: 00439484 1 1 -somerset%1:04:00:: 00439484 2 0 -somerset%1:15:00:: 08883179 1 0 -somerset_maugham%1:18:00:: 11164970 1 0 -somesthesia%1:09:00:: 05659856 2 0 -somesthesia%1:09:01:: 05721180 1 0 -somesthesis%1:09:00:: 05659856 1 0 -sometime%4:02:00:: 00021702 1 6 -sometime%5:00:00:past:00 01729566 1 0 -sometimes%4:02:01:: 00021878 1 99 -someway%4:02:00:: 00026137 1 0 -someways%4:02:00:: 00026137 1 0 -somewhat%4:02:00:: 00035718 2 5 -somewhat%4:02:01:: 00036291 1 50 -somewhere%1:15:00:: 08489765 1 0 -somewhere%4:02:00:: 00025559 1 30 -somite%1:05:00:: 02665812 1 0 -somme%1:04:01:: 01295373 2 0 -somme%1:04:02:: 01295528 1 0 -somme_river%1:04:01:: 01295373 2 0 -somme_river%1:04:02:: 01295528 1 0 -sommelier%1:18:00:: 10623806 1 0 -somnambulate%2:38:00:: 01916960 1 0 -somnambulation%1:04:00:: 00285141 1 0 -somnambulism%1:04:00:: 00285141 1 0 -somnambulist%1:18:00:: 10611361 1 0 -somniferous%5:00:00:depressant:00 02309187 1 0 -somnific%5:00:00:depressant:00 02309187 1 0 -somniloquism%1:04:00:: 00285387 1 0 -somniloquist%1:18:00:: 10623949 1 0 -somniloquy%1:04:00:: 00285387 1 0 -somnolence%1:26:00:: 14030435 1 0 -somnolent%5:00:00:asleep:00 00189253 1 2 -somnolently%4:02:00:: 00323049 1 0 -somrai%1:10:00:: 06985310 1 0 -son%1:18:00:: 10624074 1 48 -son%1:18:01:: 09537144 2 2 -son-in-law%1:18:00:: 10624915 1 0 -son_of_a_bitch%1:18:00:: 09815188 1 7 -sonant%1:10:00:: 07120364 1 0 -sonant%3:00:00:: 02286083 1 0 -sonar%1:06:00:: 04259771 1 6 -sonata%1:10:00:: 07044088 1 0 -sonata_form%1:09:00:: 05932282 1 0 -sonatina%1:10:00:: 07044680 1 0 -sonchus%1:20:00:: 12018640 1 0 -sonchus_oleraceus%1:20:00:: 12019035 1 0 -sondheim%1:18:00:: 11308396 1 0 -sone%1:23:00:: 13713817 1 0 -song%1:04:00:: 00546389 3 3 -song%1:10:00:: 07048000 1 46 -song%1:10:02:: 06796642 4 1 -song%1:11:00:: 07394588 2 3 -song%1:14:00:: 08158741 6 0 -song%1:21:00:: 13254011 5 0 -song_and_dance%1:10:01:: 06893772 1 0 -song_and_dance%1:10:02:: 06757289 2 0 -song_dynasty%1:14:00:: 08158741 1 0 -song_of_solomon%1:10:00:: 06437824 1 0 -song_of_songs%1:10:00:: 06437824 1 0 -song_sparrow%1:05:00:: 01536644 1 0 -song_thrush%1:05:00:: 01558149 1 0 -songbird%1:05:00:: 01526521 1 0 -songbook%1:10:00:: 06418146 1 0 -songful%5:00:00:melodious:00 01501619 1 0 -songfulness%1:07:00:: 04983688 1 0 -songhai%1:10:00:: 06998631 1 0 -songlike%5:00:00:melodious:00 01501505 1 0 -songster%1:05:00:: 01526521 3 0 -songster%1:18:00:: 10624310 2 0 -songster%1:18:01:: 10624540 1 0 -songstress%1:18:00:: 10624437 1 0 -songwriter%1:18:00:: 10624540 1 2 -sonic%3:00:00:: 00175528 1 0 -sonic%5:00:00:audible:00 00174150 2 0 -sonic_barrier%1:19:00:: 11505057 1 0 -sonic_boom%1:11:00:: 07348041 1 0 -sonic_delay_line%1:06:00:: 02676097 1 0 -sonic_depth_finder%1:06:00:: 04260192 1 0 -sonnet%1:10:00:: 06381372 1 1 -sonnet%2:36:00:: 01703613 2 0 -sonnet%2:36:01:: 01703730 1 0 -sonneteer%1:18:00:: 10625000 1 0 -sonny%1:18:00:: 09871229 1 3 -sonny_boy%1:18:00:: 09871229 1 1 -sonny_liston%1:18:00:: 11135044 1 0 -sonogram%1:06:00:: 04260364 1 1 -sonograph%1:06:00:: 04260589 1 0 -sonography%1:04:00:: 00901789 1 0 -sonometer%1:06:00:: 02757337 1 0 -sonora%1:05:00:: 01736256 1 0 -sonora_gum%1:20:00:: 12723330 1 0 -sonora_lac%1:27:00:: 14702256 1 0 -sonora_semiannulata%1:05:00:: 01736375 1 0 -sonoran_desert%1:15:00:: 09172910 1 0 -sonoran_lyre_snake%1:05:00:: 01739871 1 0 -sonoran_whipsnake%1:05:00:: 01732093 1 0 -sonority%1:07:00:: 04989657 1 1 -sonorous%5:00:00:full:01 01457692 1 1 -sonorously%4:02:00:: 00445187 1 0 -sonorousness%1:07:00:: 04989657 1 0 -sonsie%5:00:00:shapely:00 02138989 1 0 -sonsy%5:00:00:shapely:00 02138989 1 0 -sontag%1:18:00:: 11308520 1 0 -soochong%1:13:00:: 07935043 1 0 -soon%4:02:00:: 00033922 1 60 -soon_enough%4:02:00:: 00167816 1 2 -sooner%1:18:00:: 09745132 1 0 -sooner%4:02:00:: 00259096 1 2 -sooner%4:02:01:: 00115554 2 0 -sooner_state%1:15:00:: 09131654 1 0 -soonest%4:02:00:: 00034641 1 0 -soot%1:27:00:: 14793533 1 0 -soot%2:35:00:: 01262470 1 0 -soot-black%5:00:00:achromatic:00 00392184 1 0 -soot_black%1:07:00:: 04960582 1 0 -sooth%1:07:00:: 04867440 1 0 -soothe%2:29:00:: 00063916 2 1 -soothe%2:37:00:: 01814815 1 1 -soothing%5:00:00:comfortable:00 00477896 1 0 -soothing%5:00:00:reassuring:00 00197151 2 0 -soothing_syrup%1:06:00:: 04260816 1 0 -soothingly%4:02:00:: 00461283 1 2 -soothsayer%1:18:00:: 10102506 1 1 -soothsaying%1:09:00:: 05776212 1 0 -sootiness%1:26:00:: 14498972 1 0 -sooty%5:00:00:achromatic:00 00388849 1 1 -sooty%5:00:00:dirty:01 00423431 2 0 -sooty-black%5:00:00:achromatic:00 00392184 1 0 -sop%1:04:00:: 01024968 3 0 -sop%1:10:00:: 07216615 2 0 -sop%1:13:00:: 07861421 1 0 -sop%2:30:01:: 00216216 4 0 -sop%2:35:00:: 01577513 3 0 -sop%2:35:02:: 01605692 2 0 -sop%2:40:00:: 02284429 1 0 -sop_up%2:34:00:: 01197980 2 0 -sop_up%2:35:00:: 01539063 1 0 -soph%1:18:00:: 10625438 1 0 -sophia_loren%1:18:00:: 11138180 1 0 -sophie_tucker%1:18:00:: 11351347 1 0 -sophism%1:09:00:: 05895138 1 0 -sophist%1:18:00:: 09899929 2 0 -sophist%1:18:01:: 10625099 1 0 -sophistic%3:01:00:: 02999616 1 0 -sophistic%5:00:00:invalid:00 02500736 2 0 -sophistical%5:00:00:invalid:00 02500736 1 0 -sophisticate%1:18:00:: 10625285 1 1 -sophisticate%2:30:00:: 00402389 4 0 -sophisticate%2:30:01:: 00488430 3 0 -sophisticate%2:32:00:: 00932798 2 0 -sophisticate%2:41:00:: 02388764 1 0 -sophisticated%3:00:00:: 02270342 1 9 -sophisticated%5:00:00:high-tech:00 01208738 2 1 -sophisticated%5:00:00:intellectual:00 01333609 3 0 -sophistication%1:04:00:: 00753472 5 0 -sophistication%1:07:00:: 04880273 4 0 -sophistication%1:09:00:: 05987835 1 2 -sophistication%1:09:01:: 05641205 3 0 -sophistication%1:09:02:: 05895138 2 0 -sophistry%1:09:00:: 05895138 1 0 -sophocles%1:18:00:: 11308624 1 0 -sophomore%1:18:00:: 10625438 1 4 -sophomore%5:00:00:intermediate:00 01015599 1 0 -sophomore_class%1:14:00:: 08239590 1 0 -sophonias%1:10:00:: 06440663 2 0 -sophonias%1:18:00:: 11406023 1 0 -sophora%1:20:00:: 12570126 1 0 -sophora_japonica%1:20:00:: 12570394 1 0 -sophora_secundiflora%1:20:00:: 12570703 1 0 -sophora_sinensis%1:20:00:: 12570394 1 0 -sophora_tetraptera%1:20:00:: 12570972 1 0 -sopor%1:26:00:: 14025993 1 0 -soporiferous%5:00:00:depressant:00 02309187 1 0 -soporiferous%5:00:00:uninteresting:00 01346198 2 0 -soporific%1:06:00:: 04260934 1 0 -soporific%5:00:00:depressant:00 02309187 1 0 -soporific%5:00:00:uninteresting:00 01346198 2 0 -sopping%4:02:00:: 00461405 1 0 -soppy%5:00:00:emotional:00 00854413 2 0 -soppy%5:00:00:wet:01 02549032 1 0 -sopranino%5:00:00:high:03 01215028 1 0 -soprano%1:07:00:: 04985930 3 0 -soprano%1:10:00:: 06873139 2 0 -soprano%1:18:00:: 10625546 1 2 -soprano%5:00:00:high:03 01214842 1 0 -soprano_clef%1:10:00:: 06863326 1 0 -sops%1:13:00:: 07861421 1 0 -sorb%1:13:00:: 07770180 1 0 -sorb%2:35:00:: 01540449 1 6 -sorb_apple%1:13:00:: 07770180 2 0 -sorb_apple%1:20:00:: 12658846 1 0 -sorb_apple_tree%1:20:00:: 12658846 1 0 -sorbate%1:27:00:: 14596956 1 0 -sorbed%5:00:00:combined:00 01330307 1 2 -sorbefacient%5:00:00:absorbent:00 00006777 1 0 -sorbent%1:27:00:: 14597158 1 0 -sorbent_material%1:27:00:: 14597158 1 0 -sorbet%1:13:00:: 07614348 1 0 -sorbian%1:10:00:: 06945344 2 0 -sorbian%1:18:00:: 09751403 1 0 -sorbic_acid%1:27:00:: 14739978 1 0 -sorbonne%1:06:00:: 03890713 1 0 -sorbus%1:20:00:: 12657940 1 0 -sorbus_americana%1:20:00:: 12658603 1 0 -sorbus_aucuparia%1:20:00:: 12658308 1 0 -sorbus_domestica%1:20:00:: 12658846 1 0 -sorbus_sitchensis%1:20:00:: 12658715 1 0 -sorbus_torminalis%1:20:00:: 12659064 1 0 -sorcerer%1:18:00:: 10625860 1 0 -sorceress%1:18:00:: 10626540 1 0 -sorcerise%2:30:00:: 00383275 1 0 -sorcerize%2:30:00:: 00383275 1 0 -sorcerous%5:00:00:supernatural:00 01576071 1 0 -sorcery%1:09:00:: 05978812 1 0 -sordid%5:00:00:acquisitive:00 00031384 4 0 -sordid%5:00:00:corrupt:00 00621857 2 0 -sordid%5:00:00:dirty:01 00421875 3 0 -sordid%5:00:00:disreputable:00 01984806 1 2 -sordidly%4:02:00:: 00461506 1 0 -sordidness%1:07:00:: 04807971 2 0 -sordidness%1:26:00:: 14499111 1 0 -sordino%1:06:00:: 04264050 1 0 -sore%1:26:00:: 14183065 1 1 -sore%5:00:00:angry:00 00115193 3 1 -sore%5:00:00:painful:00 01712753 1 8 -sore%5:00:00:unpleasant:00 01804175 2 1 -sore-eyed%5:00:00:unhealthy:00 01178231 1 1 -sore_throat%1:26:00:: 14173484 1 0 -sorehead%1:18:00:: 10626630 1 0 -sorely%4:02:01:: 00461617 1 2 -sorely%4:02:02:: 00509533 2 0 -soren_aabye_kierkegaard%1:18:00:: 11104676 1 0 -soren_kierkegaard%1:18:00:: 11104676 1 0 -soren_peter_lauritz_sorensen%1:18:00:: 11308739 1 0 -soreness%1:12:00:: 07495973 2 0 -soreness%1:26:00:: 14332617 1 0 -sorensen%1:18:00:: 11308739 1 0 -sorex%1:05:00:: 01891865 1 0 -sorex_araneus%1:05:00:: 01892030 1 0 -sorex_cinereus%1:05:00:: 01892145 1 0 -sorex_palustris%1:05:00:: 01892744 1 0 -sorgho%1:20:00:: 12138757 1 0 -sorghum%1:13:00:: 07860103 3 0 -sorghum%1:20:00:: 12137120 1 0 -sorghum%1:20:01:: 12136944 2 0 -sorghum_bicolor%1:20:00:: 12137337 1 0 -sorghum_halepense%1:20:00:: 12138905 1 0 -sorghum_molasses%1:13:00:: 07860103 1 0 -sorghum_vulgare_caudatum%1:20:00:: 12137954 1 0 -sorghum_vulgare_rosburghii%1:20:00:: 12138578 1 0 -sorghum_vulgare_technicum%1:20:00:: 12139196 1 0 -sorgo%1:20:00:: 12138757 1 0 -soricidae%1:05:00:: 01891438 1 0 -sororal%3:00:02:: 00291665 1 0 -sorority%1:14:00:: 08230477 1 2 -sorption%1:22:00:: 13558490 1 2 -sorrel%1:05:00:: 02389026 5 0 -sorrel%1:13:00:: 07736371 4 0 -sorrel%1:20:01:: 12603959 2 0 -sorrel%1:20:02:: 12702948 1 0 -sorrel%1:20:03:: 12179632 3 0 -sorrel%5:00:00:chromatic:00 00384099 1 1 -sorrel_tree%1:20:01:: 12178780 2 0 -sorrel_tree%1:20:02:: 12242409 1 0 -sorriness%1:07:00:: 05140278 1 0 -sorrow%1:09:00:: 05833683 3 1 -sorrow%1:12:00:: 07534430 1 3 -sorrow%1:12:01:: 07535670 2 1 -sorrow%1:26:00:: 13989051 4 0 -sorrow%2:37:00:: 01797347 1 0 -sorrower%1:18:00:: 10335246 1 0 -sorrowful%3:00:00:: 01364008 1 2 -sorrowfully%4:02:00:: 00321165 2 0 -sorrowfully%4:02:01:: 00461755 1 0 -sorrowfulness%1:12:00:: 07535209 2 0 -sorrowfulness%1:26:00:: 13989051 1 0 -sorrowing%5:00:00:sorrowful:00 01364817 1 0 -sorry%3:00:02:: 01150475 1 1 -sorry%5:00:00:bad:00 01126841 2 1 -sorry%5:00:00:depressing:00 00364881 4 0 -sorry%5:00:00:worthless:00 02502578 3 0 -sort%1:07:00:: 04746262 2 2 -sort%1:09:00:: 05839024 1 65 -sort%1:18:00:: 10626722 3 1 -sort%1:22:00:: 13558696 4 0 -sort%2:31:00:: 00654625 2 0 -sort%2:41:00:: 02400378 1 0 -sort_of%4:02:00:: 00018302 1 10 -sort_out%2:31:00:: 00654625 1 3 -sort_out%2:31:01:: 00621058 2 2 -sort_out%2:41:00:: 02553428 3 0 -sort_program%1:10:00:: 06580103 1 0 -sorted%5:00:00:classified:01 00414919 2 0 -sorted%5:00:00:sized:00 02224509 1 0 -sorter%1:06:00:: 04261116 2 0 -sorter%1:18:00:: 10626867 1 0 -sortie%1:04:00:: 00971309 1 0 -sortie%1:04:01:: 00304851 2 0 -sorting%1:04:00:: 01016832 3 0 -sorting%1:09:00:: 05732756 2 0 -sorting%1:22:00:: 13558696 1 0 -sorting_algorithm%1:09:00:: 05847658 1 0 -sorting_program%1:10:00:: 06580103 1 0 -sortition%1:04:00:: 00180054 1 0 -sorus%1:20:01:: 13094145 2 0 -sorus%1:20:02:: 13094273 1 0 -sos%1:10:00:: 06803845 1 0 -sot%1:18:00:: 10037385 1 0 -soteriological%3:01:00:: 02799689 1 0 -soteriology%1:09:00:: 06191687 1 0 -sothis%1:17:00:: 09435965 1 0 -sotho%1:10:00:: 06995222 2 0 -sotho%1:18:00:: 09693372 1 0 -sotho%3:01:00:: 03119441 1 0 -sottish%5:00:00:intoxicated:00 00798491 1 0 -sottishly%4:02:00:: 00461941 1 0 -sottishness%1:07:00:: 04885990 2 0 -sottishness%1:26:00:: 14019039 1 0 -sotto_voce%4:02:00:: 00257418 1 0 -sou%1:21:00:: 13393265 1 0 -sou'-east%1:24:00:: 13832841 1 0 -sou'-east%4:02:00:: 00462016 1 0 -sou'-sou'-east%1:24:00:: 13833119 1 0 -sou'-sou'-east%4:02:00:: 00462203 1 0 -sou'-sou'-west%1:24:00:: 13833623 1 0 -sou'-sou'-west%4:02:00:: 00462301 1 0 -sou'-west%1:24:00:: 13833886 1 0 -sou'easter%1:19:00:: 11448714 1 0 -sou'west%4:02:00:: 00462110 1 0 -sou'wester%1:06:00:: 04264361 2 0 -sou'wester%1:19:00:: 11448593 1 0 -souari%1:20:00:: 12373739 1 0 -souari_nut%1:13:00:: 07772026 2 0 -souari_nut%1:20:00:: 12373739 1 0 -souari_tree%1:20:00:: 12373739 1 0 -soubise%1:13:00:: 07839730 1 0 -soubrette%1:09:00:: 05929461 2 0 -soubrette%1:18:00:: 10626994 1 0 -soubriquet%1:10:00:: 06337693 1 0 -souchong%1:13:00:: 07935043 1 0 -soudan%1:15:00:: 09029457 1 0 -soudan%1:15:01:: 09029242 2 0 -souffle%1:13:00:: 07843464 1 0 -souffle-like%5:00:00:cooked:00 00618865 1 0 -soufflot%1:18:00:: 11308877 1 0 -sough%2:32:03:: 01046815 1 0 -soughing%5:00:00:soft:04 01456221 1 0 -soughingly%4:02:00:: 00510495 1 1 -sought%3:44:00:: 03154886 1 1 -sought%5:00:00:wanted:00 02527588 2 0 -sought-after%5:00:00:wanted:00 02527588 1 0 -sought_after%5:00:00:desirable:00 00733297 1 0 -souk%1:06:00:: 04261281 1 0 -soul%1:03:00:: 00007846 2 6 -soul%1:04:00:: 00933154 4 1 -soul%1:10:00:: 07061968 5 0 -soul%1:12:00:: 07480790 3 3 -soul%1:18:00:: 10627082 1 20 -soul-destroying%5:00:00:destructive:00 00588535 1 0 -soul-searching%1:09:00:: 05786871 1 0 -soul-stirring%5:00:00:moving:01 01561429 1 0 -soul_brother%1:18:00:: 09637435 1 0 -soul_food%1:13:00:: 07938313 1 0 -soul_kiss%1:04:00:: 00138799 1 0 -soul_mate%1:18:00:: 10627252 1 0 -soul_patch%1:08:00:: 05263448 1 0 -soulful%5:00:00:emotional:00 00856651 1 0 -soulfully%4:02:00:: 00210237 1 1 -soulfulness%1:12:00:: 07480790 1 0 -soulless%5:00:00:insensitive:02 02107991 1 0 -soullessly%4:02:00:: 00462399 1 0 -sound%1:07:00:: 04981139 1 36 -sound%1:09:00:: 05718254 2 16 -sound%1:10:00:: 06278136 5 6 -sound%1:10:01:: 07111047 6 1 -sound%1:11:00:: 07371293 4 11 -sound%1:17:00:: 09440186 8 0 -sound%1:17:01:: 09446115 7 0 -sound%1:19:00:: 11480930 3 11 -sound%2:30:00:: 00491689 7 0 -sound%2:32:00:: 00952182 5 1 -sound%2:39:00:: 02176268 2 14 -sound%2:39:01:: 02179518 6 0 -sound%2:39:02:: 02180529 4 1 -sound%2:39:03:: 02135048 3 9 -sound%2:39:06:: 02134927 1 38 -sound%3:00:00:: 02273326 1 8 -sound%3:00:01:: 02275209 3 1 -sound%5:00:00:complete:00 00523786 9 0 -sound%5:00:00:deep:02 00693020 8 0 -sound%5:00:00:healthy:00 01171213 4 1 -sound%5:00:00:reasonable:00 01944088 2 3 -sound%5:00:00:righteous:00 02037152 7 0 -sound%5:00:01:valid:00 02499148 6 0 -sound%5:00:02:valid:00 02499511 5 0 -sound_alphabet%1:10:00:: 06500448 1 0 -sound_asleep%5:00:00:asleep:00 00188738 1 0 -sound_barrier%1:19:00:: 11505057 1 0 -sound_bite%1:10:00:: 07152151 1 0 -sound_bow%1:06:00:: 04261369 1 0 -sound_camera%1:06:00:: 04261638 1 0 -sound_effect%1:09:00:: 05917869 1 1 -sound_film%1:06:00:: 04261868 1 0 -sound_hole%1:06:00:: 04262010 1 0 -sound_judgement%1:07:00:: 04892084 1 0 -sound_judgment%1:07:00:: 04892084 1 0 -sound_law%1:09:00:: 06180720 1 0 -sound_off%2:32:00:: 00907147 3 0 -sound_off%2:32:01:: 01027668 1 1 -sound_off%2:36:00:: 01651110 2 0 -sound_out%2:32:00:: 00809071 2 0 -sound_out%2:32:01:: 00978549 1 0 -sound_perception%1:09:00:: 05711503 1 0 -sound_pollution%1:26:00:: 14518539 1 0 -sound_pressure%1:19:00:: 11497378 1 0 -sound_pressure_level%1:07:00:: 05100866 1 0 -sound_projection%1:19:00:: 11512331 1 0 -sound_property%1:07:00:: 04983122 1 0 -sound_ranging%1:04:00:: 01005100 1 0 -sound_recording%1:06:00:: 04262678 1 0 -sound_reflection%1:07:00:: 05010801 1 0 -sound_reproduction%1:04:00:: 01020362 1 0 -sound_spectrograph%1:06:00:: 04262869 1 0 -sound_spectrum%1:19:00:: 11510714 1 0 -sound_structure%1:09:00:: 06177729 1 0 -sound_system%1:06:00:: 02757462 1 0 -sound_truck%1:06:00:: 04263139 1 0 -sound_unit%1:23:00:: 13608319 1 0 -sound_wave%1:11:00:: 07347224 1 3 -soundable%3:00:00:: 00994744 1 0 -soundboard%1:06:00:: 04262161 1 0 -soundbox%1:06:01:: 04261506 1 0 -sounder%1:06:00:: 04261767 1 0 -sounding%1:04:00:: 01004961 2 0 -sounding%1:07:00:: 05135451 1 0 -sounding%5:00:00:audible:00 00174243 3 0 -sounding%5:00:00:full:01 01457871 2 0 -sounding%5:00:00:superficial:00 01874886 1 2 -sounding_board%1:06:00:: 04262161 2 0 -sounding_board%1:18:00:: 10627349 1 0 -sounding_lead%1:06:00:: 04262410 1 0 -sounding_line%1:06:00:: 03651947 1 0 -sounding_rocket%1:06:00:: 04262530 1 0 -soundless%5:00:00:quiet:01 01919428 1 0 -soundlessly%4:02:00:: 00462520 1 0 -soundlessness%1:07:00:: 04982856 1 0 -soundly%4:02:00:: 00057388 2 0 -soundly%4:02:01:: 00057892 1 0 -soundman%1:18:00:: 10627557 1 0 -soundness%1:07:00:: 05031849 3 0 -soundness%1:07:01:: 05159948 2 0 -soundness%1:26:00:: 14546844 1 0 -soundproof%2:30:00:: 00495505 1 0 -soundproof%5:00:00:impervious:00 01775420 1 1 -soundtrack%1:06:00:: 04262969 1 2 -soup%1:13:00:: 07583197 1 2 -soup%1:26:00:: 13927112 3 0 -soup%1:27:00:: 15048623 2 0 -soup%2:29:00:: 00085246 1 0 -soup-fin%1:05:00:: 01491661 1 0 -soup-strainer%1:08:00:: 05262422 1 0 -soup_bowl%1:06:00:: 04263257 1 1 -soup_du_jour%1:13:00:: 07583865 1 0 -soup_kitchen%1:14:00:: 08056128 1 0 -soup_ladle%1:06:00:: 04263336 1 0 -soup_plate%1:06:00:: 04263417 1 0 -soup_spoon%1:06:00:: 04263502 1 0 -soup_up%2:30:00:: 00170997 1 0 -soupcon%1:23:00:: 13774115 1 0 -soupfin%1:05:00:: 01491661 1 0 -soupfin_shark%1:05:00:: 01491661 1 0 -soupiness%1:07:00:: 04936690 1 0 -soupiness%1:07:01:: 04627506 2 0 -soupspoon%1:06:00:: 04263502 1 0 -soupy%5:00:00:emotional:00 00854413 2 0 -soupy%5:00:00:thick:02 02416898 1 0 -sour%1:07:00:: 04993882 3 0 -sour%1:09:00:: 05716744 2 0 -sour%1:13:00:: 07918028 1 0 -sour%2:30:01:: 00458471 1 2 -sour%2:39:00:: 02196690 2 1 -sour%3:00:00:: 02368787 2 0 -sour%5:00:00:ill-natured:00 01137378 6 0 -sour%5:00:00:inharmonious:00 01164420 5 0 -sour%5:00:00:malodorous:00 01054922 1 1 -sour%5:00:00:soured:00 02369869 4 0 -sour%5:00:00:tasty:00 02399014 3 0 -sour-gum_family%1:20:00:: 12339972 1 0 -sour-tasting%5:00:00:tasty:00 02395810 1 0 -sour_bread%1:13:00:: 07686720 1 0 -sour_cherry%1:13:00:: 07757990 3 0 -sour_cherry%1:20:01:: 12643473 1 0 -sour_cherry%1:20:02:: 12331655 2 0 -sour_cherry_tree%1:20:01:: 12643473 1 0 -sour_cream%1:13:00:: 07848093 1 0 -sour_dock%1:20:00:: 12604228 1 0 -sour_fig%1:20:00:: 11819509 1 0 -sour_gourd%1:13:01:: 07770289 3 0 -sour_gourd%1:13:02:: 07770439 2 0 -sour_gourd%1:20:00:: 12189779 1 0 -sour_grapes%1:10:00:: 06719299 1 0 -sour_grass%1:20:00:: 12603959 1 0 -sour_gum%1:20:00:: 12340755 1 0 -sour_mash%1:13:00:: 07907831 2 0 -sour_mash%1:27:00:: 14948812 1 0 -sour_mash_whiskey%1:13:00:: 07907831 1 0 -sour_milk%1:13:00:: 07844786 1 0 -sour_orange%1:13:00:: 07748753 2 0 -sour_orange%1:20:00:: 12708654 1 0 -sour_salt%1:13:00:: 07813717 1 0 -sourball%1:13:00:: 07599383 1 0 -source%1:06:00:: 04263614 4 8 -source%1:09:00:: 05834758 3 12 -source%1:10:00:: 06675122 2 12 -source%1:10:01:: 07258664 9 0 -source%1:15:00:: 08507558 1 34 -source%1:17:00:: 09407867 8 0 -source%1:18:00:: 10126177 6 1 -source%1:18:01:: 10205985 5 3 -source%1:22:00:: 13558953 7 0 -source%2:31:00:: 00666722 2 0 -source%2:40:00:: 02238536 1 0 -source_book%1:10:00:: 06418558 1 0 -source_code%1:10:00:: 06358513 1 0 -source_language%1:10:00:: 06283912 1 0 -source_materials%1:10:00:: 06675581 1 0 -source_of_illumination%1:06:00:: 04263760 1 0 -source_program%1:10:00:: 06577063 1 0 -sourdine%1:06:00:: 04263950 2 0 -sourdine%1:06:01:: 04264050 1 0 -sourdough%1:18:00:: 10627714 2 0 -sourdough%1:27:00:: 15048748 1 1 -sourdough_bread%1:13:00:: 07686720 1 0 -soured%3:00:00:: 02369763 1 0 -soured_cream%1:13:00:: 07848093 1 0 -souring%1:22:00:: 13559409 1 0 -sourish%5:00:00:sour:00 02369460 1 0 -sourly%4:02:00:: 00462718 1 1 -sourness%1:07:00:: 04993882 2 0 -sourness%1:07:01:: 04642057 3 0 -sourness%1:09:00:: 05716744 1 0 -sourpuss%1:18:00:: 10627899 1 0 -soursop%1:13:00:: 07761309 2 0 -soursop%1:20:00:: 11694664 1 0 -soursop_tree%1:20:00:: 11694664 1 0 -sourwood%1:20:00:: 12242409 1 0 -sousa%1:18:00:: 11308988 1 0 -sousaphone%1:06:00:: 02804252 1 0 -souse%1:04:00:: 00277811 3 0 -souse%1:13:00:: 07678313 2 0 -souse%1:18:00:: 09782167 1 0 -souse%2:30:00:: 00321801 4 0 -souse%2:30:01:: 00216216 1 1 -souse%2:34:00:: 01190277 3 0 -souse%2:35:00:: 01577093 2 0 -soused%5:00:00:intoxicated:00 00798103 1 0 -sousing%1:04:00:: 00277811 1 0 -souslik%1:05:00:: 02358584 1 0 -sousse%1:15:00:: 09038439 1 0 -soutache%1:06:00:: 04264134 1 0 -soutane%1:06:00:: 04264233 1 1 -south%1:15:00:: 09050244 2 5 -south%1:15:01:: 09050730 1 37 -south%1:15:02:: 08561583 4 2 -south%1:24:00:: 13833375 3 2 -south%1:24:02:: 13835899 5 0 -south%3:00:00:: 01602330 1 13 -south%4:02:00:: 00243938 1 8 -south-african_yellowwood%1:20:00:: 11652753 1 0 -south-central%5:00:00:south:00 01602797 1 1 -south-central%5:00:00:southern:01 01605569 2 0 -south-central_dravidian%1:10:00:: 06980465 1 0 -south-east%4:02:00:: 00462016 1 0 -south-polar%5:00:00:polar:00 02444627 1 0 -south-seeking_pole%1:06:00:: 03817331 1 0 -south-southeast%4:02:00:: 00462203 1 0 -south-southwest%4:02:00:: 00462301 1 0 -south-west%4:02:00:: 00462110 1 0 -south_africa%1:15:00:: 08999482 1 1 -south_african%1:18:00:: 09731436 1 0 -south_african%3:01:00:: 02928926 1 0 -south_african_dutch%1:10:00:: 06952861 1 0 -south_african_monetary_unit%1:23:00:: 13696402 1 0 -south_america%1:14:00:: 08173289 2 0 -south_america%1:17:00:: 09440400 1 3 -south_american%1:18:00:: 09731571 1 0 -south_american%3:01:00:: 02928728 1 0 -south_american_bullfrog%1:05:00:: 01643896 1 0 -south_american_country%1:15:00:: 08702402 1 0 -south_american_indian%1:18:00:: 09726621 1 0 -south_american_nation%1:15:00:: 08702402 1 0 -south_american_poison_toad%1:05:00:: 01654863 1 0 -south_american_sea_lion%1:05:00:: 02078292 1 0 -south_american_staghorn%1:20:00:: 13177768 1 0 -south_atlantic%1:17:00:: 09440948 1 0 -south_australia%1:15:00:: 08834408 1 0 -south_bend%1:15:00:: 09086070 1 0 -south_by_east%1:24:00:: 13833256 1 0 -south_by_west%1:24:00:: 13833504 1 0 -south_carolina%1:15:00:: 09137869 2 1 -south_carolina%1:15:01:: 09138239 1 1 -south_carolinian%1:18:00:: 09745535 1 1 -south_celestial_pole%1:15:00:: 08652854 1 0 -south_china_sea%1:17:00:: 09441107 1 0 -south_dakota%1:15:00:: 09138935 1 1 -south_dakotan%1:18:00:: 09745636 1 0 -south_dravidian%1:10:00:: 06979249 1 0 -south_equatorial_current%1:19:00:: 11489383 1 0 -south_frigid_zone%1:15:00:: 08494459 1 0 -south_island%1:15:00:: 08972335 1 0 -south_korea%1:15:00:: 08955626 1 0 -south_korean%1:18:00:: 09719207 1 0 -south_korean%3:01:00:: 02968166 1 0 -south_korean_monetary_unit%1:23:00:: 13709223 1 0 -south_korean_won%1:23:00:: 13709360 1 0 -south_of_houston%1:15:00:: 09121619 1 0 -south_pacific%1:17:00:: 09441587 1 0 -south_platte%1:17:00:: 09441725 1 0 -south_platte_river%1:17:00:: 09441725 1 0 -south_pole%1:15:00:: 08652717 1 0 -south_sea%1:17:00:: 09441875 1 1 -south_sea_islands%1:17:00:: 09442001 1 0 -south_side%1:15:00:: 08650507 1 2 -south_southeast%1:24:00:: 13833119 1 0 -south_southwest%1:24:00:: 13833623 1 0 -south_temperate_zone%1:15:00:: 08662288 1 0 -south_vietnam%1:15:00:: 09163844 1 0 -south_west_africa%1:15:00:: 08699654 1 0 -south_wind%1:19:00:: 11511405 1 0 -south_yorkshire%1:15:00:: 08885631 1 0 -southbound%5:00:00:south:00 01602683 1 1 -southeast%1:15:00:: 08563478 2 1 -southeast%1:15:01:: 08561462 4 0 -southeast%1:24:00:: 13832841 1 1 -southeast%1:24:02:: 13835781 3 0 -southeast%4:02:00:: 00462016 1 2 -southeast%5:00:01:south:00 01603518 2 0 -southeast%5:00:02:south:00 01603649 1 0 -southeast_asia%1:15:00:: 08715110 1 0 -southeast_by_east%1:24:00:: 13832717 1 0 -southeast_by_south%1:24:00:: 13832993 1 0 -southeaster%1:19:00:: 11448714 1 0 -southeasterly%5:00:01:south:00 01603518 2 0 -southeasterly%5:00:02:south:00 01603649 1 0 -southeastern%5:00:00:eastern:02 00827743 2 0 -southeastern%5:00:00:south:00 01603518 1 1 -southeastern_pocket_gopher%1:05:00:: 02354320 1 0 -southeastern_united_states%1:15:00:: 08563478 1 0 -southeastward%1:24:00:: 13832841 1 0 -southeastward%4:02:00:: 00512210 1 0 -southeastward%5:00:00:south:00 01603789 1 0 -southeastwardly%4:02:00:: 00512210 1 0 -souther%1:19:00:: 11511405 1 0 -southerly%1:19:00:: 11511405 1 0 -southerly%4:02:00:: 00462859 2 0 -southerly%4:02:01:: 00462954 1 0 -southerly%5:00:01:south:00 01602966 2 0 -southerly%5:00:02:south:00 01603179 1 0 -southern%3:00:01:: 01605081 3 3 -southern%3:00:02:: 01606648 1 30 -southern%5:00:01:south:00 01602966 4 1 -southern%5:00:02:south:00 01603179 2 7 -southern_arrow_wood%1:20:00:: 12681141 1 0 -southern_aster%1:20:00:: 11937023 1 0 -southern_baptist%1:18:00:: 10628097 1 0 -southern_baptist_convention%1:14:00:: 08089955 1 0 -southern_beech%1:20:00:: 12266217 1 0 -southern_beech_fern%1:20:00:: 13230843 1 0 -southern_blue_flag%1:20:00:: 12415272 1 0 -southern_bog_lemming%1:05:00:: 02345997 1 0 -southern_buckthorn%1:20:00:: 12772908 1 0 -southern_cabbage_butterfly%1:05:00:: 02281267 1 0 -southern_crab_apple%1:20:00:: 12635532 1 0 -southern_cross%1:17:00:: 09441352 1 0 -southern_cypress%1:20:00:: 11641963 1 0 -southern_dewberry%1:20:00:: 12655498 1 0 -southern_flounder%1:05:00:: 02661473 1 0 -southern_flying_squirrel%1:05:00:: 02360933 1 0 -southern_harebell%1:20:00:: 12037864 1 0 -southern_hemisphere%1:15:00:: 08652551 1 1 -southern_lights%1:19:00:: 11427501 1 0 -southern_live_oak%1:20:00:: 12279772 1 0 -southern_magnolia%1:20:00:: 11710136 1 0 -southern_maidenhair%1:20:00:: 13207094 1 0 -southern_porgy%1:05:00:: 02593679 1 0 -southern_red_cedar%1:20:00:: 11637810 1 0 -southern_red_oak%1:20:00:: 12271933 1 0 -southern_rhodesia%1:15:00:: 09167101 1 0 -southern_scup%1:05:00:: 02593679 1 0 -southern_spadefoot%1:05:00:: 01649556 1 0 -southern_spatterdock%1:20:00:: 11716698 1 0 -southern_tai%1:10:00:: 06935823 1 0 -southern_triangle%1:17:00:: 09461864 1 0 -southern_white_cedar%1:20:00:: 11635152 1 0 -southern_yellow_pine%1:20:00:: 11615967 1 0 -southerner%1:18:00:: 10628222 1 19 -southernism%1:09:00:: 06195698 2 0 -southernism%1:10:00:: 07152027 1 1 -southernmost%5:00:00:south:00 01603354 1 0 -southernness%1:07:00:: 05079309 1 0 -southernwood%1:20:00:: 11929291 1 0 -southey%1:18:00:: 11309164 1 0 -southland%1:15:00:: 08563085 1 0 -southmost%5:00:00:south:00 01603354 1 0 -southpaw%1:18:00:: 10253122 2 0 -southpaw%1:18:01:: 10252921 1 5 -southward%1:24:00:: 13833375 1 0 -southward%4:02:00:: 00462954 1 3 -southward%5:00:00:south:00 01602683 1 0 -southwards%4:02:00:: 00462954 1 0 -southwest%1:15:00:: 08563627 2 1 -southwest%1:15:01:: 08561714 4 0 -southwest%1:24:00:: 13833886 1 1 -southwest%1:24:02:: 13836018 3 0 -southwest%4:02:00:: 00462110 1 0 -southwest%5:00:01:south:00 01603869 2 0 -southwest%5:00:02:south:00 01604000 1 0 -southwest_by_south%1:24:00:: 13833760 1 0 -southwest_by_west%1:24:00:: 13834038 1 0 -southwester%1:19:00:: 11448593 1 0 -southwesterly%5:00:01:south:00 01603869 2 0 -southwesterly%5:00:02:south:00 01604000 1 0 -southwestern%1:10:00:: 06949407 1 0 -southwestern%5:00:00:south:00 01603869 1 0 -southwestern%5:00:00:western:02 00826215 2 0 -southwestern_lip_fern%1:20:00:: 13209460 1 0 -southwestern_toad%1:05:00:: 01647466 1 0 -southwestern_united_states%1:15:00:: 08563627 1 0 -southwestern_white_pine%1:20:00:: 11613692 1 0 -southwestward%1:24:00:: 13833886 1 0 -southwestward%4:02:00:: 00512379 1 0 -southwestward%5:00:00:south:00 01604146 1 0 -southwestwardly%4:02:00:: 00512379 1 0 -soutine%1:18:00:: 11309318 1 0 -souvenir%1:06:00:: 03610270 1 1 -souvenir%1:09:00:: 05813822 2 0 -souvlaki%1:13:00:: 07870069 1 0 -souvlakia%1:13:00:: 07870069 1 0 -sovereign%1:18:00:: 10628644 1 5 -sovereign%5:00:00:dominant:01 00792641 2 2 -sovereign%5:00:00:free:00 01062393 1 4 -sovereign_immunity%1:04:00:: 00214526 1 0 -sovereignty%1:07:00:: 05198321 3 0 -sovereignty%1:26:00:: 13992935 1 1 -sovereignty%1:26:02:: 14443532 2 0 -soviet%1:14:00:: 08320201 1 0 -soviet%3:01:00:: 02959406 1 25 -soviet_kgb%1:14:00:: 08485434 1 0 -soviet_russia%1:15:00:: 09007723 1 0 -soviet_socialist_republic%1:15:00:: 09006205 1 0 -soviet_union%1:15:00:: 09003284 1 5 -sovietise%2:36:00:: 01744266 2 0 -sovietise%2:41:00:: 02434119 1 0 -sovietism%1:14:00:: 08368308 1 0 -sovietize%2:36:00:: 01744266 2 0 -sovietize%2:41:00:: 02434119 1 0 -soviets%1:14:00:: 08053407 1 3 -sow%1:05:00:: 02396088 1 0 -sow%2:32:00:: 00969370 2 1 -sow%2:35:00:: 01500873 1 5 -sow%2:35:02:: 01501347 3 0 -sow_bug%1:05:00:: 01992262 1 0 -sow_in%2:35:00:: 01501347 1 0 -sow_one's_oats%2:34:00:: 01192179 1 1 -sow_one's_wild_oats%2:34:00:: 01192179 1 0 -sow_thistle%1:20:00:: 12018760 1 0 -sowbane%1:20:00:: 11829922 1 0 -sowbelly%1:13:00:: 07671363 1 1 -sowbread%1:20:00:: 12093600 1 0 -sower%1:18:00:: 10629020 1 0 -soweto%1:15:00:: 09002433 1 0 -sown%5:00:00:planted:00 01832245 1 0 -soy%1:13:00:: 07729485 4 0 -soy%1:13:01:: 07825972 3 0 -soy%1:20:00:: 12532168 2 0 -soy%1:20:02:: 12532564 1 0 -soy_flour%1:13:00:: 07569873 1 0 -soy_sauce%1:13:00:: 07825972 1 0 -soya%1:13:00:: 07729485 2 0 -soya%1:20:00:: 12532168 1 0 -soya_bean%1:13:00:: 07729485 3 0 -soya_bean%1:20:00:: 12532168 2 0 -soya_bean%1:20:02:: 12532564 1 0 -soya_milk%1:13:00:: 07844867 1 0 -soyabean_oil%1:13:00:: 07675262 1 0 -soybean%1:13:00:: 07729485 3 0 -soybean%1:20:00:: 12532168 2 0 -soybean%1:20:02:: 12532564 1 0 -soybean_flour%1:13:00:: 07569873 1 0 -soybean_future%1:06:00:: 04264485 1 0 -soybean_meal%1:13:00:: 07569873 1 0 -soybean_milk%1:13:00:: 07844867 1 0 -soybean_oil%1:13:00:: 07675262 1 0 -soybean_plant%1:20:00:: 12532168 1 0 -soymilk%1:13:00:: 07844867 1 0 -sozzled%5:00:00:intoxicated:00 00798103 1 0 -spa%1:06:00:: 04080705 2 0 -spa%1:06:01:: 03506370 3 0 -spa%1:15:00:: 08678615 1 0 -space%1:03:00:: 00028651 1 24 -space%1:06:00:: 04030655 9 0 -space%1:10:00:: 06839190 5 2 -space%1:10:01:: 06389553 7 1 -space%1:10:02:: 06862202 8 0 -space%1:15:00:: 08652970 3 12 -space%1:15:01:: 08500433 4 4 -space%1:25:00:: 13910384 2 16 -space%1:28:00:: 15172212 6 1 -space%2:38:00:: 01988080 1 3 -space-reflection_symmetry%1:09:00:: 06105314 1 0 -space-time%1:09:00:: 06010737 1 0 -space-time_continuum%1:09:00:: 06010737 1 0 -space_age%1:28:00:: 15262794 1 0 -space_bar%1:06:00:: 04264628 1 0 -space_biology%1:09:00:: 06071722 1 0 -space_cadet%1:18:00:: 10629142 1 0 -space_capsule%1:06:00:: 04264765 1 0 -space_heater%1:06:00:: 04265275 1 0 -space_helmet%1:06:00:: 04265428 1 0 -space_laboratory%1:06:00:: 04266162 1 0 -space_lattice%1:09:00:: 05732086 1 0 -space_medicine%1:09:00:: 06063275 1 0 -space_needle%1:06:00:: 04265535 1 0 -space_platform%1:06:00:: 04266162 1 0 -space_probe%1:06:00:: 04265668 1 3 -space_program%1:09:00:: 05900716 1 0 -space_rocket%1:06:00:: 04265904 1 0 -space_shuttle%1:06:00:: 04266014 1 0 -space_station%1:06:00:: 04266162 1 0 -space_travel%1:04:00:: 00313502 1 0 -space_vehicle%1:06:00:: 04264914 1 0 -space_walk%1:04:00:: 00292981 1 0 -space_writer%1:18:00:: 10629449 1 0 -spacecraft%1:06:00:: 04264914 1 0 -spacecraft_clock_time%1:28:00:: 15131598 1 0 -spacecraft_event_time%1:28:00:: 15131448 1 0 -spaced%3:00:00:: 01655783 2 0 -spaced%5:00:00:distributed:00 00542282 1 3 -spaced-out%5:00:00:confused:00 00437419 2 0 -spaced-out%5:00:00:unconventional:01 00609938 1 0 -spacefaring%1:04:00:: 00313502 1 0 -spaceflight%1:04:00:: 00313502 1 0 -spaceman%1:18:00:: 09818022 1 0 -spaceship%1:06:00:: 04304215 1 0 -spacesuit%1:06:00:: 04266375 1 0 -spacewalk%2:38:00:: 01906202 1 0 -spacewalker%1:18:00:: 10629329 1 0 -spaceward%4:02:00:: 00515228 1 0 -spacewards%4:02:00:: 00515228 1 0 -spacey%5:00:00:unconventional:01 00609938 1 0 -spacial%3:01:00:: 02841066 1 0 -spacing%1:07:00:: 05083328 2 1 -spacing%1:28:00:: 15282534 1 1 -spaciotemporal%5:00:00:comprehensive:00 00528333 1 0 -spacious%5:00:00:commodious:00 00476249 2 0 -spacious%5:00:00:large:00 01384212 1 2 -spaciously%4:02:00:: 00444832 1 0 -spaciousness%1:07:00:: 05105265 1 2 -spackle%1:27:00:: 15048888 1 0 -spackling_compound%1:27:00:: 15048888 1 0 -spacy%5:00:00:unconventional:01 00609938 1 0 -spade%1:06:00:: 04266486 2 1 -spade%1:06:01:: 04266660 1 2 -spade%1:18:00:: 09638009 3 0 -spade%2:35:00:: 01310249 1 1 -spade-like%5:00:00:formed:00 02150029 1 0 -spade-shaped%5:00:00:formed:00 02150029 1 0 -spade_bit%1:06:00:: 04266849 1 0 -spade_casino%1:04:00:: 00498947 1 0 -spadefish%1:05:00:: 02604954 1 0 -spadefoot%1:05:00:: 01649170 1 0 -spadefoot_toad%1:05:00:: 01649170 1 0 -spadeful%1:23:00:: 13769870 1 0 -spadework%1:04:00:: 00795508 1 0 -spadix%1:20:00:: 13133932 1 0 -spaghetti%1:13:00:: 07699914 2 0 -spaghetti%1:13:01:: 07700003 1 0 -spaghetti_and_meatballs%1:13:00:: 07877187 1 0 -spaghetti_junction%1:06:00:: 04266968 1 0 -spaghetti_sauce%1:13:00:: 07838233 1 0 -spaghetti_squash%1:13:00:: 07716906 2 0 -spaghetti_squash%1:20:00:: 12160303 1 0 -spaghetti_western%1:10:00:: 06618653 1 0 -spaghettini%1:13:00:: 07700095 1 0 -spain%1:15:00:: 09023321 1 2 -spalacidae%1:05:00:: 02368563 1 0 -spalax%1:05:00:: 02368687 1 0 -spall%1:17:00:: 09442146 1 0 -spallanzani%1:18:00:: 11309449 1 0 -spallation%1:22:00:: 13559509 1 0 -spam%1:10:00:: 06280347 2 0 -spam%1:13:00:: 07573347 1 0 -spam%2:32:00:: 01032715 1 0 -spammer%1:18:00:: 10629545 1 0 -span%1:04:00:: 00349213 6 0 -span%1:06:00:: 02898711 5 0 -span%1:07:00:: 05087061 2 1 -span%1:23:01:: 13656204 4 0 -span%1:23:02:: 13743605 3 0 -span%1:28:00:: 15134340 1 6 -span%2:42:00:: 02685390 1 8 -span_loading%1:24:00:: 13826732 1 0 -spandau%1:06:00:: 04267091 1 0 -spandex%1:06:00:: 04267165 1 0 -spandrel%1:06:00:: 04267246 1 0 -spandril%1:06:00:: 04267246 1 0 -spang%2:35:00:: 01236941 1 1 -spangle%1:06:00:: 04173698 1 0 -spangle%2:36:00:: 01669906 2 0 -spangle%2:39:00:: 02163183 1 0 -spangled%5:00:00:adorned:00 00056660 1 0 -spangly%5:00:00:adorned:00 00056660 1 0 -spaniard%1:18:00:: 09731906 1 0 -spaniel%1:05:00:: 02101108 1 1 -spanish%1:10:00:: 06966825 1 6 -spanish%1:18:00:: 09733243 2 1 -spanish%3:01:00:: 02958576 1 3 -spanish-american_war%1:04:00:: 01308668 1 2 -spanish-speaking%5:00:00:communicative:00 00500126 1 0 -spanish_american%1:18:01:: 10629647 1 0 -spanish_armada%1:14:00:: 08293088 1 0 -spanish_bayonet%1:20:01:: 12482437 2 0 -spanish_bayonet%1:20:02:: 12482668 1 0 -spanish_broom%1:20:01:: 12530629 2 0 -spanish_broom%1:20:02:: 12571330 1 0 -spanish_burgoo%1:13:00:: 07589967 1 0 -spanish_capital%1:15:00:: 09024467 1 0 -spanish_cedar%1:20:00:: 12697152 1 0 -spanish_cedar_tree%1:20:00:: 12697152 1 0 -spanish_chestnut%1:20:00:: 12263204 1 0 -spanish_civil_war%1:04:00:: 01308837 1 0 -spanish_dagger%1:20:01:: 12483091 2 0 -spanish_dagger%1:20:02:: 12483841 1 0 -spanish_elm%1:20:01:: 12818601 1 0 -spanish_elm%1:20:02:: 12818346 2 0 -spanish_fly%1:05:00:: 02179340 1 0 -spanish_garlic%1:20:00:: 12434985 1 0 -spanish_gorse%1:20:00:: 12530629 1 0 -spanish_grunt%1:05:00:: 02588945 1 0 -spanish_guinea%1:15:00:: 08763500 1 0 -spanish_heath%1:20:00:: 12228886 1 0 -spanish_inquisition%1:14:00:: 08333224 1 0 -spanish_iris%1:20:00:: 12415595 1 0 -spanish_lime%1:13:00:: 07763290 2 0 -spanish_lime%1:20:00:: 12744850 1 0 -spanish_lime_tree%1:20:00:: 12744850 1 0 -spanish_mackerel%1:05:00:: 02625612 2 0 -spanish_mackerel%1:05:02:: 02624807 3 0 -spanish_mackerel%1:05:03:: 02580679 4 0 -spanish_mackerel%1:13:00:: 07781497 1 0 -spanish_monetary_unit%1:23:00:: 13690650 1 0 -spanish_moss%1:20:00:: 12608127 1 0 -spanish_needles%1:20:01:: 11940349 2 0 -spanish_needles%1:20:02:: 11940478 1 0 -spanish_oak%1:20:00:: 12278865 1 0 -spanish_onion%1:13:00:: 07722763 1 0 -spanish_oyster_plant%1:20:00:: 12010815 1 0 -spanish_paprika%1:13:00:: 07824863 1 0 -spanish_people%1:18:00:: 09733243 1 0 -spanish_peseta%1:23:00:: 13690758 1 0 -spanish_pointer%1:05:00:: 02099997 1 0 -spanish_psyllium%1:20:00:: 12599874 1 0 -spanish_rice%1:13:00:: 07877299 1 0 -spanish_sahara%1:15:00:: 08970833 1 0 -spanish_tamarind%1:20:00:: 12670962 1 0 -spanish_tea%1:20:00:: 11828804 1 0 -spanish_war%1:04:00:: 01308668 1 0 -spank%1:04:00:: 00134472 1 0 -spank%2:35:00:: 01420928 1 0 -spanker%1:06:00:: 04267435 2 0 -spanker%1:18:00:: 10608803 1 0 -spanking%1:04:00:: 01162784 1 0 -spanking%5:00:00:energetic:00 00874226 1 0 -spanner%1:06:00:: 04606574 1 0 -spar%1:04:00:: 00446804 3 0 -spar%1:06:00:: 04267577 2 0 -spar%1:27:00:: 15049096 1 0 -spar%2:32:00:: 00773922 4 0 -spar%2:35:00:: 01420194 3 0 -spar%2:35:01:: 01420304 2 0 -spar%2:40:00:: 02362700 1 0 -spar_buoy%1:10:00:: 07266979 1 0 -sparaxis%1:20:00:: 12418356 1 0 -sparaxis_tricolor%1:20:00:: 12418507 1 0 -spare%1:04:00:: 00187890 3 0 -spare%1:06:00:: 03334912 2 0 -spare%1:06:01:: 04267870 1 0 -spare%2:34:00:: 01158484 4 0 -spare%2:40:00:: 02345647 3 5 -spare%2:41:00:: 02464583 1 7 -spare%2:41:01:: 02564674 2 5 -spare%5:00:00:meager:00 00106821 5 0 -spare%5:00:00:thin:03 00991301 1 3 -spare%5:00:00:unadorned:00 00060605 6 0 -spare%5:00:00:unoccupied:00 01624115 3 0 -spare%5:00:01:unnecessary:00 01581305 2 1 -spare%5:00:02:unnecessary:00 01582306 4 0 -spare-time_activity%1:04:00:: 00432689 1 0 -spare_part%1:06:00:: 04267870 1 0 -spare_time%1:04:00:: 01065687 2 0 -spare_time%1:28:00:: 15137425 1 4 -spare_tire%1:08:00:: 05556204 1 0 -sparely%4:02:00:: 00463080 1 0 -spareness%1:07:00:: 05114781 1 0 -spareness%1:07:01:: 05001482 2 0 -sparer%1:18:00:: 10629820 1 0 -sparerib%1:13:00:: 07656961 1 0 -spareribs%1:13:01:: 07671459 2 0 -spareribs%1:13:02:: 07862348 1 0 -sparganiaceae%1:20:00:: 12156308 1 0 -sparganium%1:20:00:: 12156484 1 0 -sparge%1:04:00:: 00278555 1 0 -sparge%2:30:00:: 00228655 2 0 -sparge%2:38:00:: 01890223 1 0 -sparge_pipe%1:06:00:: 04267985 1 0 -sparid%1:05:00:: 02590495 1 0 -sparid_fish%1:05:00:: 02590495 1 0 -sparidae%1:05:00:: 02590237 1 0 -sparing%5:00:00:thrifty:00 02421364 1 0 -sparingly%4:02:00:: 00396699 1 0 -spark%1:07:00:: 04953380 2 4 -spark%1:11:01:: 07412310 1 4 -spark%1:17:00:: 09442341 6 0 -spark%1:18:00:: 11309613 5 0 -spark%1:19:00:: 11511523 3 2 -spark%1:23:00:: 13773539 4 0 -spark%2:36:00:: 01643657 1 5 -spark%2:43:00:: 02766687 2 1 -spark_advance%1:07:00:: 05051088 1 0 -spark_arrester%1:06:00:: 04268142 2 0 -spark_arrester%1:06:01:: 04268275 1 0 -spark_chamber%1:06:00:: 04268418 1 0 -spark_coil%1:06:00:: 04268565 1 0 -spark_counter%1:06:00:: 04268418 1 0 -spark_gap%1:06:00:: 04268680 2 0 -spark_gap%1:06:01:: 04268799 1 0 -spark_lever%1:06:00:: 04269086 1 0 -spark_off%2:36:00:: 01643657 1 0 -spark_plug%1:06:00:: 04269270 1 0 -spark_transmitter%1:06:00:: 04269668 1 0 -sparker%1:06:00:: 04268142 1 0 -sparking_plug%1:06:00:: 04269270 1 0 -sparkle%1:07:00:: 04952944 3 0 -sparkle%1:07:01:: 04953380 1 2 -sparkle%1:11:00:: 07412668 2 0 -sparkle%2:30:00:: 00519363 4 0 -sparkle%2:30:01:: 00473003 2 1 -sparkle%2:43:00:: 02766390 1 1 -sparkle%2:43:02:: 02766687 3 0 -sparkle_metal%1:27:00:: 15049309 1 0 -sparkleberry%1:20:00:: 12246773 1 0 -sparkler%1:06:00:: 04268969 2 0 -sparkler%1:21:00:: 13372123 1 0 -sparkling%1:11:00:: 07411645 1 0 -sparkling%3:00:00:: 02277279 2 0 -sparkling%5:00:00:starry:00 02299748 1 2 -sparkling_water%1:13:00:: 07936548 1 0 -sparkling_wine%1:13:00:: 07893528 1 0 -sparkly%5:00:00:bright:00 00279618 2 0 -sparkly%5:00:00:lively:00 00805810 1 0 -sparkplug_wrench%1:06:00:: 04269502 1 0 -sparling%1:05:00:: 02540983 2 0 -sparling%1:13:00:: 07798872 1 0 -sparmannia%1:20:00:: 12205308 1 0 -sparmannia_africana%1:20:00:: 12205460 1 0 -sparring%1:04:00:: 00446804 2 0 -sparring%1:10:00:: 07182744 1 0 -sparring_match%1:11:00:: 07471708 1 0 -sparring_mate%1:18:00:: 10629939 1 0 -sparring_partner%1:18:00:: 10629939 1 0 -sparrow%1:05:00:: 01539573 1 1 -sparrow%1:05:03:: 01527347 2 0 -sparrow-sized%5:00:00:sized:00 02224588 1 0 -sparrow_hawk%1:05:01:: 01612122 1 0 -sparrow_hawk%1:05:02:: 01606672 2 0 -sparrow_unit%1:14:00:: 08209386 1 0 -sparse%5:00:00:distributed:00 00542359 1 3 -sparsely%4:02:00:: 00463245 1 1 -sparseness%1:07:00:: 05114781 1 0 -sparsity%1:07:00:: 05114781 1 0 -sparta%1:15:00:: 08787240 1 0 -spartan%1:18:00:: 09711661 1 0 -spartan%3:01:00:: 02972690 1 0 -spartan%5:00:00:abstemious:00 00009618 4 0 -spartan%5:00:00:nonindulgent:00 01301316 3 0 -spartan%5:00:00:resolute:00 01991462 2 0 -spartina%1:20:00:: 12139367 1 0 -spartina_cynosuroides%1:20:00:: 12139793 1 0 -spartina_pectinmata%1:20:00:: 12139921 1 0 -spartium%1:20:00:: 12571194 1 0 -spartium_junceum%1:20:00:: 12571330 1 0 -spasm%1:04:00:: 00226107 2 0 -spasm%1:26:00:: 14360459 1 1 -spasmodic%5:00:00:sporadic:00 00593664 2 0 -spasmodic%5:00:00:unsteady:00 02303754 1 1 -spasmodic_laryngitis%1:26:00:: 14174011 1 0 -spasmodically%4:02:00:: 00463340 2 0 -spasmodically%4:02:01:: 00463471 1 0 -spasmolysis%1:04:00:: 00354785 1 0 -spasmolytic%1:06:00:: 02724533 1 0 -spassky%1:18:00:: 11309772 1 0 -spastic%1:18:00:: 10630093 1 0 -spastic%3:01:00:: 03119608 1 0 -spastic%5:00:00:ill:01 02546713 2 0 -spastic%5:00:00:unsteady:00 02303754 3 0 -spastic_abasia%1:26:00:: 14549823 1 0 -spastic_bladder%1:26:00:: 14401644 1 0 -spastic_colon%1:26:00:: 14306245 1 0 -spastic_paralysis%1:26:00:: 14094653 1 0 -spasticity%1:07:00:: 04771738 1 0 -spat%1:05:00:: 01956344 3 0 -spat%1:06:00:: 04269822 2 0 -spat%1:10:00:: 07184735 1 0 -spat%2:29:00:: 00034115 7 0 -spat%2:29:01:: 00056829 6 0 -spat%2:32:00:: 00774817 5 0 -spat%2:32:01:: 00861929 4 0 -spat%2:35:00:: 01238061 3 0 -spat%2:35:01:: 01538785 2 0 -spat%2:43:00:: 02757182 1 0 -spatangoida%1:05:00:: 02319689 1 0 -spatchcock%1:13:00:: 07645886 1 0 -spatchcock%2:36:00:: 01639592 2 0 -spatchcock%2:36:01:: 01665332 1 0 -spate%1:11:00:: 07407137 3 0 -spate%1:11:02:: 07440240 2 0 -spate%1:23:00:: 13774404 1 0 -spathe%1:20:00:: 13155175 1 0 -spathe_flower%1:20:00:: 11792341 1 0 -spathiphyllum%1:20:00:: 11792341 1 0 -spatial%3:01:00:: 02841066 1 8 -spatial_arrangement%1:07:00:: 05083328 1 0 -spatial_property%1:07:00:: 05062748 1 0 -spatial_relation%1:07:00:: 05074774 1 0 -spatiality%1:07:00:: 05062748 1 1 -spatially%4:02:00:: 00130549 1 2 -spatiotemporal%3:01:00:: 02811081 1 0 -spatiotemporal%5:00:00:comprehensive:00 00528333 2 0 -spatter%1:04:00:: 00717748 2 1 -spatter%1:11:00:: 07394814 1 1 -spatter%2:35:00:: 01374020 1 1 -spatter%2:35:01:: 01538629 3 0 -spatter%2:43:00:: 02757828 2 0 -spatterdock%1:20:00:: 11716422 1 0 -spattered%5:00:00:covered:00 01695891 1 0 -spattering%1:04:00:: 00717748 2 0 -spattering%1:11:00:: 07394814 1 0 -spatula%1:06:00:: 04269944 2 0 -spatula%1:06:01:: 04270147 1 0 -spatula-shaped%5:00:00:simple:01 02170821 1 0 -spatulate%5:00:00:simple:01 02170821 1 0 -spatulate_leaf%1:20:00:: 13159890 1 0 -spavin%1:26:00:: 14272915 1 0 -spavined%5:00:00:unfit:01 01020007 1 0 -spawl%1:17:00:: 09442146 1 0 -spawn%1:05:00:: 01461315 1 0 -spawn%2:29:00:: 00056683 2 0 -spawn%2:36:00:: 01649024 1 0 -spawner%1:05:00:: 02513939 1 0 -spay%2:29:00:: 00060477 1 0 -spayed%5:00:00:castrated:00 02137205 1 0 -spaying%1:04:00:: 00692726 1 0 -speak%2:32:00:: 00941990 1 86 -speak%2:32:01:: 00962447 2 53 -speak%2:32:02:: 00963570 3 23 -speak%2:32:03:: 00989201 4 11 -speak%2:39:00:: 02135607 5 3 -speak_for%2:41:00:: 02542141 1 6 -speak_in_tongues%2:32:00:: 00933239 1 0 -speak_of_the_devil%2:32:00:: 00882682 1 0 -speak_out%2:32:00:: 01027668 1 0 -speak_up%2:32:00:: 01027668 1 1 -speak_up%2:32:03:: 00916123 2 0 -speakable%5:00:00:expressible:00 00943831 1 0 -speakeasy%1:06:00:: 04270276 1 1 -speaker%1:06:00:: 03691459 2 2 -speaker%1:18:00:: 10630188 1 9 -speaker%1:18:01:: 10631309 3 1 -speaker_identification%1:09:00:: 05763767 1 0 -speaker_system%1:06:00:: 03691459 1 0 -speaker_unit%1:06:00:: 03691459 1 0 -speakerphone%1:06:00:: 04270371 1 0 -speakership%1:04:00:: 00604424 1 0 -speaking%1:10:00:: 07241837 2 0 -speaking%1:10:01:: 07129867 1 1 -speaking%3:00:00:: 00152896 1 0 -speaking_trumpet%1:06:00:: 04270576 1 0 -speaking_tube%1:06:00:: 04270765 1 0 -spear%1:06:00:: 04270891 1 1 -spear%1:06:01:: 04271148 2 0 -spear%2:35:00:: 01444887 1 3 -spear%2:42:00:: 02714200 2 0 -spear-point%1:06:00:: 04271371 1 0 -spear_carrier%1:18:00:: 10676569 1 0 -spear_thistle%1:20:00:: 11955153 1 0 -spear_thrower%1:06:00:: 04430158 1 0 -spear_up%2:42:00:: 02714200 1 0 -spearfish%1:05:01:: 02632039 1 0 -spearhead%1:06:00:: 04271371 3 0 -spearhead%1:14:00:: 08415661 2 0 -spearhead%1:18:00:: 10631512 1 0 -spearhead%2:41:00:: 02440608 1 1 -spearhead-shaped%5:00:00:simple:01 02168400 1 0 -spearmint%1:20:00:: 12856287 1 0 -spearmint_oil%1:13:00:: 07812662 1 0 -spearnose_bat%1:05:00:: 02142734 1 0 -spearpoint%1:06:00:: 04271371 1 0 -spec%1:10:00:: 06725067 1 0 -special%1:10:00:: 07166851 1 1 -special%1:10:01:: 07017534 3 0 -special%1:13:00:: 07580253 2 0 -special%5:00:00:extraordinary:00 01678729 2 20 -special%5:00:00:primary:00 01853228 6 2 -special%5:00:00:specialized:00 02278011 4 6 -special%5:00:00:specific:00 01103844 5 3 -special%5:00:00:uncommon:00 00488187 3 7 -special%5:00:00:unscheduled:00 02367319 7 0 -special%5:00:01:specific:00 01104026 1 30 -special_act%1:10:00:: 06565919 1 0 -special_agent%1:18:00:: 10631765 1 0 -special_air_service%1:14:00:: 08346031 1 0 -special_assessment%1:21:00:: 13315827 1 0 -special_branch%1:14:00:: 08121867 1 0 -special_contract%1:10:00:: 06524278 1 0 -special_court-martial%1:14:00:: 08331762 1 0 -special_delivery%1:10:00:: 06623481 1 0 -special_drawing_rights%1:21:00:: 13330941 1 0 -special_education%1:09:00:: 05757731 1 0 -special_effect%1:09:00:: 05917994 1 0 -special_forces%1:14:00:: 08213424 1 0 -special_interest%1:14:00:: 07968974 1 0 -special_jury%1:14:00:: 08415469 1 0 -special_k%1:06:00:: 03606572 1 0 -special_olympics%1:11:00:: 07457311 1 0 -special_pleading%1:10:00:: 06563478 2 0 -special_pleading%1:10:01:: 07182888 1 0 -special_relativity%1:09:00:: 06107083 1 0 -special_relativity_theory%1:09:00:: 06107083 1 0 -special_session%1:10:00:: 07147902 1 0 -special_theory_of_relativity%1:09:00:: 06107083 1 0 -special_verdict%1:04:00:: 01193672 1 0 -special_weapons_and_tactics_squad%1:14:00:: 08274126 1 0 -special_weapons_and_tactics_team%1:14:00:: 08274126 1 0 -specialisation%1:04:00:: 00583461 3 0 -specialisation%1:04:01:: 00583747 2 0 -specialisation%1:22:00:: 13559782 1 0 -specialise%2:30:00:: 00437449 4 0 -specialise%2:30:01:: 00437732 3 0 -specialise%2:30:07:: 00119266 5 0 -specialise%2:32:00:: 01021973 2 0 -specialise%2:41:00:: 02446164 1 0 -specialised%3:00:00:: 02277607 1 0 -specialiser%1:18:00:: 10631941 1 0 -specialism%1:04:00:: 00583461 2 0 -specialism%1:09:00:: 05705184 1 0 -specialist%1:18:00:: 10631941 1 19 -specialist%1:18:01:: 10632576 2 1 -specialistic%3:01:00:: 02799988 1 0 -specialistic%5:00:00:specialized:00 02278195 2 0 -speciality%1:04:00:: 00583461 3 0 -speciality%1:07:01:: 04763925 2 0 -speciality%1:07:02:: 05159225 1 0 -specialization%1:04:00:: 00583461 2 2 -specialization%1:04:01:: 00583747 1 2 -specialization%1:22:00:: 13559782 3 0 -specialize%2:30:00:: 00437449 1 3 -specialize%2:30:01:: 00437732 3 2 -specialize%2:30:07:: 00119266 5 0 -specialize%2:32:00:: 01021973 2 2 -specialize%2:41:00:: 02446164 4 0 -specialized%3:00:00:: 02277607 1 6 -specializer%1:18:00:: 10631941 1 0 -specially%4:02:00:: 00084223 2 2 -specially%4:02:01:: 00502710 1 3 -specialness%1:07:00:: 04763925 1 0 -specialness%1:07:01:: 04762633 2 0 -specialty%1:04:00:: 00583461 3 0 -specialty%1:07:01:: 04763925 2 0 -specialty%1:07:02:: 05159225 1 2 -specialty_store%1:06:00:: 04271531 1 0 -speciate%2:30:00:: 00119266 1 0 -speciation%1:22:00:: 13560079 1 0 -specie%1:21:00:: 13387877 1 0 -species%1:09:00:: 05844881 2 5 -species%1:14:00:: 08110373 1 27 -specifiable%5:00:00:identifiable:00 01273033 1 0 -specific%1:06:00:: 04271640 2 0 -specific%1:09:00:: 05818182 1 0 -specific%3:00:00:: 01103021 1 39 -specific%3:00:02:: 01105233 4 0 -specific%3:01:00:: 02989316 3 0 -specific%5:00:00:specified:00 01099951 2 5 -specific_gravity%1:07:00:: 04941687 1 0 -specific_heat%1:19:00:: 11472352 1 1 -specific_performance%1:04:00:: 00097923 1 0 -specifically%4:02:00:: 00041758 1 13 -specification%1:04:01:: 01149303 4 0 -specification%1:10:00:: 06725067 1 1 -specification%1:10:01:: 07231199 2 0 -specification%1:10:02:: 06675338 3 0 -specificity%1:07:01:: 04762915 1 7 -specificity%1:07:02:: 04763147 2 1 -specified%3:00:00:: 01099536 1 6 -specifier%1:18:00:: 10633298 1 0 -specify%2:31:00:: 00709379 6 0 -specify%2:31:02:: 00715541 5 1 -specify%2:31:05:: 00677683 7 0 -specify%2:32:00:: 01021973 4 2 -specify%2:32:02:: 00947077 2 4 -specify%2:32:03:: 01018928 1 6 -specify%2:42:00:: 02611630 3 3 -specimen%1:08:00:: 05266879 2 3 -specimen%1:09:00:: 05822239 1 5 -specimen_bottle%1:06:00:: 04271793 1 0 -specious%5:00:00:false:00 02462210 1 0 -specious%5:00:00:insincere:00 02182302 2 0 -specious_argument%1:10:00:: 06755156 1 0 -speciously%4:02:00:: 00463655 1 0 -speciousness%1:07:00:: 04875113 1 0 -speck%1:07:00:: 04681230 1 2 -speck%1:23:00:: 13774115 3 1 -speck%1:27:00:: 14585519 2 1 -speck%2:35:00:: 01273406 1 0 -specked%5:00:00:patterned:00 01788445 1 0 -speckle%1:07:00:: 04682462 1 0 -speckle%2:35:00:: 01538310 2 0 -speckle%2:35:01:: 01538469 1 0 -speckled%5:00:00:patterned:00 01788445 1 1 -speckled_alder%1:20:00:: 12285705 1 0 -speckled_rattlesnake%1:05:00:: 01757343 1 0 -speckled_trout%1:05:00:: 02538216 2 0 -speckled_trout%1:13:00:: 07794893 1 0 -speckless%5:00:00:clean:01 00418364 1 0 -specs%1:06:00:: 04272054 1 0 -spectacle%1:04:00:: 00075471 3 0 -spectacle%1:06:00:: 04271891 2 2 -spectacle%1:10:00:: 06889138 1 8 -spectacled%5:00:00:adorned:00 00056943 1 0 -spectacled_caiman%1:05:00:: 01699254 1 0 -spectacles%1:06:00:: 04272054 1 1 -spectacular%1:10:00:: 06894243 1 0 -spectacular%5:00:00:conspicuous:00 00580805 3 0 -spectacular%5:00:00:dramatic:00 00795246 2 1 -spectacular%5:00:00:impressive:00 01284212 1 4 -spectacularly%4:02:00:: 00209976 1 2 -spectate%2:39:00:: 02151700 1 0 -spectator%1:06:00:: 04272389 2 1 -spectator%1:18:00:: 10633450 1 12 -spectator_pump%1:06:00:: 04272389 1 1 -spectator_sport%1:04:00:: 00886968 1 0 -specter%1:09:00:: 05898171 1 5 -specter%1:18:00:: 09547111 2 1 -spectinomycin%1:06:00:: 04272541 1 0 -spectral%3:01:00:: 02800132 1 4 -spectral%5:00:00:supernatural:00 01574925 2 2 -spectral_color%1:07:00:: 04959672 1 0 -spectral_colour%1:07:00:: 04959672 1 0 -spectre%1:09:00:: 05898171 2 0 -spectre%1:18:00:: 09547111 1 0 -spectrogram%1:06:00:: 04272638 1 0 -spectrograph%1:06:00:: 04272782 1 0 -spectrograph%1:06:01:: 04272638 2 0 -spectrographic%3:01:00:: 02800291 1 0 -spectrographic_analysis%1:04:00:: 00649482 1 0 -spectrographically%4:02:00:: 00463732 1 0 -spectrometer%1:06:00:: 03726516 1 2 -spectrometric%3:01:00:: 02918132 1 0 -spectrometry%1:04:00:: 00649482 1 0 -spectrophotometer%1:06:00:: 04272928 1 1 -spectroscope%1:06:00:: 04273064 1 0 -spectroscopic%3:01:00:: 02918271 1 0 -spectroscopic_analysis%1:04:00:: 00649482 1 0 -spectroscopical%3:01:00:: 02918271 1 0 -spectroscopy%1:04:00:: 00649482 1 3 -spectrum%1:07:00:: 05128219 2 2 -spectrum%1:19:00:: 11420831 1 18 -spectrum_analysis%1:04:00:: 00649482 1 0 -spectrum_line%1:10:00:: 06801138 1 0 -specular%5:00:00:reflective:00 02008082 1 1 -speculate%2:31:00:: 00630380 3 1 -speculate%2:31:01:: 00633443 1 5 -speculate%2:32:00:: 00927049 2 4 -speculate%2:40:00:: 02272090 4 0 -speculation%1:09:00:: 05891783 2 2 -speculation%1:09:01:: 05785885 4 0 -speculation%1:10:03:: 06782680 1 2 -speculation%1:21:00:: 13342692 3 1 -speculative%5:00:00:curious:00 00664879 3 0 -speculative%5:00:00:theoretical:00 00861818 2 1 -speculative%5:00:00:unsound:00 02274537 1 1 -speculatively%4:02:00:: 00241871 1 1 -speculativeness%1:07:00:: 04759134 2 0 -speculativeness%1:26:00:: 14543756 1 0 -speculator%1:18:00:: 10634075 2 0 -speculator%1:18:01:: 10634316 1 0 -speculum%1:06:00:: 04273285 2 0 -speculum%1:06:01:: 04273433 1 0 -speech%1:09:00:: 05650820 8 0 -speech%1:10:00:: 07109196 2 7 -speech%1:10:01:: 07238694 1 16 -speech%1:10:02:: 07010821 7 0 -speech%1:10:03:: 06713930 6 1 -speech%1:10:04:: 07110457 4 1 -speech%1:10:05:: 07071483 5 1 -speech%1:10:06:: 07130050 3 4 -speech-endowed%5:00:00:articulate:00 00150835 1 0 -speech-read%2:31:00:: 00627970 1 0 -speech_act%1:10:00:: 07160883 1 0 -speech_communication%1:10:00:: 07109196 1 0 -speech_community%1:14:00:: 08224985 1 0 -speech_day%1:28:00:: 15222686 1 0 -speech_defect%1:26:00:: 14400677 1 0 -speech_disorder%1:26:00:: 14400677 1 0 -speech_intelligibility%1:07:00:: 04820102 1 0 -speech_organ%1:08:00:: 05305614 1 0 -speech_pattern%1:10:00:: 07131511 1 0 -speech_perception%1:09:00:: 05711674 1 0 -speech_production%1:10:00:: 07129867 1 0 -speech_rhythm%1:10:00:: 07086323 1 0 -speech_sound%1:10:00:: 07111047 1 0 -speech_spectrum%1:19:00:: 11510896 1 0 -speech_therapist%1:18:00:: 10634464 1 0 -speech_therapy%1:04:00:: 00707213 1 0 -speechifier%1:18:00:: 10380672 1 0 -speechify%2:32:00:: 00990008 1 0 -speechless%5:00:00:inarticulate:00 00152629 1 0 -speechlessly%4:02:00:: 00463876 1 0 -speechlessness%1:07:00:: 04982745 1 1 -speechmaker%1:18:00:: 10380672 1 0 -speechmaking%1:10:00:: 07241837 1 0 -speechwriter%1:18:00:: 10631654 1 0 -speed%1:04:00:: 00330160 3 4 -speed%1:06:00:: 02704153 5 0 -speed%1:07:00:: 05058140 2 9 -speed%1:24:00:: 13821408 4 0 -speed%1:28:00:: 15282696 1 25 -speed%2:30:00:: 00438178 2 5 -speed%2:30:02:: 00439343 5 1 -speed%2:38:00:: 02055649 3 3 -speed%2:38:01:: 02055975 4 2 -speed%2:38:03:: 02058994 1 7 -speed-reading%1:09:00:: 05809082 1 0 -speed_bump%1:06:00:: 04273659 1 0 -speed_cop%1:18:00:: 10333838 1 0 -speed_demon%1:18:00:: 10634596 1 0 -speed_freak%1:18:00:: 10634723 1 0 -speed_indicator%1:06:00:: 04273796 1 0 -speed_limit%1:10:00:: 06664473 1 1 -speed_of_light%1:28:00:: 15284285 1 1 -speed_skate%1:06:00:: 04273972 1 0 -speed_skate%2:38:00:: 01938288 1 0 -speed_skater%1:18:00:: 10634849 1 0 -speed_skating%1:04:00:: 00449168 1 0 -speed_trap%1:09:00:: 05837743 1 0 -speed_up%2:30:00:: 00438178 1 3 -speed_up%2:30:01:: 00439343 2 0 -speedboat%1:06:00:: 04273569 1 0 -speeder%1:18:00:: 10634596 1 0 -speedily%4:02:00:: 00085811 1 2 -speediness%1:07:00:: 05059132 1 0 -speeding%1:04:00:: 00330160 1 0 -speeding_ticket%1:10:00:: 06558893 1 0 -speedometer%1:06:00:: 04273796 1 0 -speedskater%1:18:00:: 10634849 1 0 -speedup%1:04:00:: 00330457 1 0 -speedway%1:06:00:: 04274110 2 0 -speedway%1:06:01:: 04274214 1 0 -speedwell%1:20:00:: 12890265 1 0 -speedy%5:00:00:fast:01 00979862 1 2 -speedy%5:00:03:fast:01 00979366 2 1 -speer%1:18:00:: 11309958 1 0 -speke%1:18:00:: 11310081 1 0 -spelaeologist%1:18:00:: 10460286 1 0 -spelaeology%1:04:00:: 00798108 2 0 -spelaeology%1:09:00:: 06121554 1 0 -speleologist%1:18:00:: 10460286 1 0 -speleology%1:04:00:: 00798108 2 0 -speleology%1:09:00:: 06121554 1 0 -spell%1:10:00:: 07159791 4 0 -spell%1:26:00:: 14407536 1 4 -spell%1:28:00:: 15292069 2 1 -spell%1:28:01:: 15246353 3 1 -spell%2:30:00:: 00121387 6 0 -spell%2:32:00:: 00937879 1 2 -spell%2:32:01:: 00932636 2 2 -spell%2:32:02:: 01064560 5 0 -spell%2:36:00:: 01699896 3 1 -spell%2:41:00:: 02412366 4 0 -spell-bound%5:00:00:enchanted:00 00865848 1 0 -spell-checker%1:10:00:: 06420053 1 0 -spell_out%2:32:00:: 01005904 1 8 -spell_out%2:32:01:: 00937879 3 0 -spell_out%2:36:00:: 01700149 2 0 -spellbind%2:29:00:: 00020926 3 0 -spellbind%2:32:00:: 00777522 2 0 -spellbind%2:37:00:: 01821132 1 0 -spellbinder%1:18:00:: 10634990 1 0 -spellbinding%5:00:00:attractive:01 00168188 1 1 -spellbound%5:00:00:enchanted:00 00865848 1 3 -spelldown%1:11:00:: 07477066 1 0 -speller%1:10:00:: 06415323 2 0 -speller%1:18:00:: 10635149 1 0 -spelling%1:10:00:: 06353445 1 2 -spelling_bee%1:11:00:: 07477066 1 0 -spelling_checker%1:10:00:: 06420053 1 0 -spelling_contest%1:11:00:: 07477066 1 0 -spelt%1:20:00:: 12143065 1 0 -spelter%1:27:00:: 15049745 1 0 -spelunk%2:31:00:: 00649887 1 0 -spelunker%1:18:00:: 10460286 1 0 -spencer%1:18:00:: 11310321 1 0 -spencer_tracy%1:18:00:: 11347519 1 0 -spend%2:40:00:: 02267060 2 36 -spend%2:40:01:: 02267529 3 3 -spend%2:42:00:: 02708420 1 98 -spend-all%1:18:00:: 10635460 1 0 -spend_a_penny%2:29:00:: 00072012 1 0 -spendable%5:00:00:disposable:02 00777891 1 0 -spender%1:18:00:: 11310523 1 0 -spender%1:18:01:: 10635275 3 0 -spender%1:18:02:: 10635460 2 0 -spending%1:04:00:: 01122149 1 1 -spending%1:21:00:: 13275288 2 0 -spending_cut%1:04:00:: 00353013 1 0 -spending_money%1:21:00:: 13422545 1 0 -spending_spree%1:04:00:: 00510624 1 0 -spendthrift%1:18:00:: 10635460 1 0 -spendthrift%5:00:00:wasteful:00 02422242 1 0 -spendthrift_trust%1:21:00:: 13363056 1 0 -spengler%1:18:00:: 11310679 1 0 -spenser%1:18:00:: 11310833 1 0 -spenserian_sonnet%1:10:00:: 06383334 1 0 -spenserian_stanza%1:10:00:: 06386440 1 0 -spent%3:00:00:: 00926141 1 0 -spent%5:00:00:tired:00 02433451 2 0 -spergula%1:20:00:: 11817000 1 0 -spergula_arvensis%1:20:00:: 11817160 1 0 -spergularia%1:20:00:: 11817329 1 0 -spergularia_rubra%1:20:00:: 11817501 1 0 -sperm%1:08:00:: 05457469 1 0 -sperm-filled%5:00:00:full:00 01086042 1 0 -sperm_bank%1:06:00:: 04274309 1 0 -sperm_cell%1:08:00:: 05457469 1 0 -sperm_count%1:04:00:: 00654113 2 0 -sperm_count%1:23:00:: 13593065 1 0 -sperm_oil%1:27:00:: 15049902 1 0 -sperm_whale%1:05:00:: 02067240 1 0 -spermaceti%1:27:00:: 15095389 1 0 -spermatic%3:01:00:: 02800529 1 0 -spermatic_cord%1:08:00:: 05527848 1 0 -spermatid%1:08:00:: 05459101 1 0 -spermatocele%1:08:00:: 05458859 1 0 -spermatocide%1:06:00:: 04274396 1 0 -spermatocyte%1:08:00:: 05458990 1 0 -spermatogenesis%1:22:00:: 13560329 1 0 -spermatophyta%1:20:00:: 11551211 1 0 -spermatophyte%1:20:00:: 11552386 1 0 -spermatozoan%1:08:00:: 05457469 1 0 -spermatozoid%1:20:00:: 13095543 1 0 -spermatozoon%1:08:00:: 05457469 1 0 -spermicidal%3:01:00:: 02800427 1 0 -spermicide%1:06:00:: 04274396 1 0 -spermophile%1:05:00:: 02358091 1 0 -spermophilus%1:05:00:: 02357741 1 0 -spermous%3:01:00:: 02800529 1 0 -sperry%1:18:00:: 11311011 1 0 -spew%2:29:00:: 00076400 3 0 -spew%2:29:01:: 00101956 1 0 -spew%2:29:02:: 00077071 2 0 -spew_out%2:29:00:: 00077071 1 0 -spewer%1:18:00:: 10759702 1 0 -spf%1:07:00:: 05118707 1 0 -sphacelate%2:29:00:: 00097394 1 0 -sphacele%1:20:00:: 12851673 1 0 -sphacele_calycina%1:20:00:: 12851860 1 0 -sphacelotheca%1:20:00:: 13067532 1 0 -sphacelotheca_reiliana%1:20:00:: 13067672 1 0 -sphacelus%1:19:00:: 11486708 2 0 -sphacelus%1:26:00:: 14313440 1 0 -sphaeralcea%1:20:00:: 12187450 1 0 -sphaeralcea_coccinea%1:20:00:: 12187891 1 0 -sphaeralcea_fasciculata%1:20:00:: 12183026 1 0 -sphaeralcea_remota%1:20:00:: 12181352 1 0 -sphaeriaceae%1:20:00:: 12964130 1 0 -sphaeriales%1:20:00:: 12963796 1 0 -sphaerobolaceae%1:20:00:: 13047011 1 0 -sphaerocarpaceae%1:20:00:: 11544314 1 0 -sphaerocarpales%1:20:00:: 11544131 1 0 -sphaerocarpos%1:20:00:: 11544540 1 0 -sphaerocarpus%1:20:00:: 11544540 1 0 -sphagnales%1:20:00:: 11541713 1 0 -sphagnum%1:20:00:: 11542137 1 0 -sphagnum_moss%1:20:00:: 11542137 1 0 -sphalerite%1:27:00:: 15107876 1 0 -sphecidae%1:05:00:: 02215334 1 0 -sphecius%1:05:00:: 02216066 1 0 -sphecius_speciosis%1:05:00:: 02216211 1 0 -sphecoid%1:05:00:: 02215161 1 0 -sphecoid_wasp%1:05:00:: 02215161 1 0 -sphecoidea%1:05:00:: 02214972 1 0 -sphecotheres%1:05:00:: 01576212 1 0 -sphenion%1:08:00:: 05235350 1 0 -spheniscidae%1:05:00:: 02055431 1 0 -sphenisciform_seabird%1:05:00:: 02055658 1 0 -sphenisciformes%1:05:00:: 02055280 1 0 -spheniscus%1:05:00:: 02056873 1 0 -spheniscus_demersus%1:05:00:: 02057035 1 0 -sphenodon%1:05:00:: 01673118 1 0 -sphenodon_punctatum%1:05:00:: 01673282 1 0 -sphenoid%1:08:00:: 05280998 1 0 -sphenoid_bone%1:08:00:: 05280998 1 0 -sphenoid_fontanel%1:08:00:: 05543541 1 0 -sphenoid_fontanelle%1:08:00:: 05543541 1 0 -sphenoidal_fontanel%1:08:00:: 05543541 1 0 -sphenoidal_fontanelle%1:08:00:: 05543541 1 0 -sphenopsida%1:20:00:: 13218722 1 0 -sphere%1:06:00:: 04274530 2 5 -sphere%1:09:00:: 05853100 4 2 -sphere%1:15:00:: 08653570 3 2 -sphere%1:15:01:: 08521267 7 0 -sphere%1:25:00:: 13899200 5 0 -sphere%1:25:01:: 13898899 6 0 -sphere%1:26:00:: 14514039 1 5 -sphere_of_influence%1:15:00:: 08653570 1 0 -spheric%5:00:00:round:00 02041229 1 0 -spherical%3:01:00:: 02800689 1 5 -spherical%5:00:00:round:00 02041229 2 1 -spherical_aberration%1:19:00:: 11513761 1 0 -spherical_angle%1:25:00:: 13889331 1 0 -spherical_geometry%1:09:00:: 06007859 1 0 -spherical_polygon%1:25:00:: 13883603 1 0 -spherical_triangle%1:25:00:: 13883763 1 0 -spherical_trigonometry%1:09:00:: 06008007 1 0 -spherically%4:02:00:: 00143621 1 0 -sphericalness%1:07:00:: 05073131 1 0 -sphericity%1:07:00:: 05073131 1 0 -spherocyte%1:08:00:: 05455113 1 0 -spheroid%1:25:00:: 13898645 1 0 -spheroid_joint%1:08:00:: 05595531 1 0 -spheroidal%5:00:00:rounded:00 02046446 1 0 -spherometer%1:06:00:: 04274686 1 0 -spherule%1:25:00:: 13899735 1 1 -sphincter%1:08:00:: 05570839 1 0 -sphincter_ani%1:08:00:: 05571713 1 0 -sphincter_muscle%1:08:00:: 05570839 1 0 -sphingid%1:05:00:: 02298541 1 0 -sphingidae%1:05:00:: 02298379 1 0 -sphingine%3:01:00:: 02800941 1 0 -sphinx%1:06:00:: 04274807 3 0 -sphinx%1:18:00:: 09502298 2 0 -sphinx%1:18:02:: 10635788 1 0 -sphinx_moth%1:05:00:: 02298541 1 0 -sphygmomanometer%1:06:00:: 04274985 1 0 -sphyraena%1:05:00:: 02603174 1 0 -sphyraena_barracuda%1:05:00:: 02603540 1 0 -sphyraenidae%1:05:00:: 02602970 1 0 -sphyrapicus%1:05:00:: 01840968 1 0 -sphyrapicus_varius%1:05:00:: 01841288 1 0 -sphyrapicus_varius_ruber%1:05:00:: 01841441 1 0 -sphyrna%1:05:00:: 01494339 1 0 -sphyrna_tiburo%1:05:00:: 01495006 1 0 -sphyrna_tudes%1:05:00:: 01494882 1 0 -sphyrna_zygaena%1:05:00:: 01494757 1 0 -sphyrnidae%1:05:00:: 01494188 1 0 -spic%1:18:00:: 09720406 1 0 -spic%5:00:00:clean:01 00418364 1 1 -spic-and-span%5:00:00:clean:01 00418364 2 0 -spic-and-span%5:00:00:new:00 01641460 1 0 -spica%1:17:00:: 09442496 1 0 -spicate%3:01:00:: 03119811 1 0 -spiccato%1:04:00:: 00101570 1 0 -spiccato_bowing%1:04:00:: 00101570 1 0 -spice%1:07:00:: 04992570 3 0 -spice%1:13:00:: 07812184 2 0 -spice%1:27:00:: 15050011 1 1 -spice%2:30:00:: 00559919 1 1 -spice%2:39:00:: 02192570 2 0 -spice-scented%5:00:00:odorous:00 01057270 1 0 -spice_bush%1:20:00:: 11706325 1 0 -spice_cake%1:13:00:: 07633064 1 0 -spice_cookie%1:13:00:: 07635934 1 0 -spice_islands%1:15:00:: 08909233 1 0 -spice_rack%1:06:00:: 04275175 1 0 -spice_tree%1:20:00:: 13111174 1 0 -spice_tree%1:20:02:: 11707827 2 0 -spice_up%2:30:00:: 00559919 2 0 -spice_up%2:39:00:: 02192570 1 1 -spiceberry%1:13:01:: 07743723 2 0 -spiceberry%1:20:00:: 12097396 1 0 -spicebush%1:20:01:: 11706325 1 0 -spicebush%1:20:02:: 11701302 2 0 -spicemill%1:06:00:: 04275093 1 0 -spicery%1:07:00:: 04992570 1 0 -spicily%4:02:00:: 00422944 1 0 -spiciness%1:07:00:: 04992570 1 0 -spiciness%1:07:02:: 04902283 2 0 -spick%1:18:00:: 09720406 1 0 -spick%5:00:00:clean:01 00418364 1 0 -spick-and-span%5:00:00:clean:01 00418364 2 0 -spick-and-span%5:00:00:new:00 01641460 1 0 -spicule%1:08:00:: 05473318 1 0 -spiculum%1:08:00:: 05473318 1 0 -spicy%5:00:00:sexy:00 02132224 3 0 -spicy%5:00:00:tasty:00 02398378 1 0 -spicy%5:00:01:tasty:00 02397732 2 0 -spider%1:05:00:: 01772222 1 1 -spider%1:06:00:: 04275283 3 0 -spider%1:10:00:: 06579715 2 0 -spider's_web%1:06:00:: 04275363 2 0 -spider's_web%1:06:01:: 04275548 1 0 -spider-shaped%5:00:00:formed:00 02150130 1 0 -spider_angioma%1:26:00:: 14248069 1 0 -spider_brake%1:20:00:: 13214340 1 0 -spider_crab%1:05:00:: 01981702 1 0 -spider_fern%1:20:01:: 13214340 2 0 -spider_fern%1:20:02:: 13214485 1 0 -spider_flower%1:20:00:: 11866469 1 0 -spider_mite%1:05:00:: 01782209 1 0 -spider_monkey%1:05:00:: 02493793 1 0 -spider_nevus%1:26:00:: 14248069 1 0 -spider_orchid%1:20:00:: 12075151 1 0 -spider_orchid%1:20:01:: 12047884 3 0 -spider_orchid%1:20:02:: 12048056 2 0 -spider_plant%1:20:00:: 11866469 1 0 -spider_web%1:06:00:: 04275363 2 0 -spider_web%1:06:01:: 04275548 1 0 -spiderflower%1:20:00:: 11866248 1 0 -spiderlike%3:01:00:: 02636811 1 0 -spiderly%3:01:00:: 02636811 1 0 -spiderwort%1:20:00:: 12606545 1 0 -spiderwort_family%1:20:00:: 12605965 1 0 -spidery%3:01:00:: 02636811 1 1 -spiegel%1:27:00:: 15049401 1 0 -spiegel_iron%1:27:00:: 15049401 1 0 -spiegeleisen%1:27:00:: 15049401 1 0 -spiel%1:10:00:: 07013400 1 0 -spiel%2:32:00:: 00963155 2 0 -spiel%2:36:00:: 01724459 1 0 -spiel_off%2:32:00:: 00945648 1 0 -spielberg%1:18:00:: 11311173 1 0 -spielmeyer-vogt_disease%1:26:00:: 14169128 1 0 -spiff%1:07:00:: 04687822 1 0 -spiff_up%2:30:00:: 00293977 1 0 -spiffed_up%5:00:00:clothed:00 00455824 1 0 -spiffing%5:00:00:superior:02 02344381 1 0 -spiffy%5:00:00:fashionable:00 00971933 1 0 -spigot%1:06:00:: 03325088 2 0 -spigot%1:06:01:: 04390977 1 0 -spik%1:18:00:: 09720406 1 0 -spike%1:06:00:: 04275661 2 1 -spike%1:06:01:: 04275904 11 0 -spike%1:06:02:: 04276050 10 0 -spike%1:06:03:: 04276249 9 0 -spike%1:06:04:: 04276404 8 0 -spike%1:06:05:: 04276808 6 0 -spike%1:06:06:: 04276531 7 0 -spike%1:11:00:: 07308450 1 2 -spike%1:11:01:: 07479366 5 0 -spike%1:20:00:: 13133438 4 0 -spike%1:20:02:: 13133613 3 0 -spike%2:30:00:: 00222135 5 0 -spike%2:30:01:: 00294718 4 0 -spike%2:30:04:: 00157219 6 0 -spike%2:35:00:: 01444326 2 0 -spike%2:35:01:: 01306175 3 0 -spike%2:41:00:: 02558090 1 0 -spike_arrester%1:06:00:: 04364160 1 0 -spike_heath%1:20:00:: 12232851 1 0 -spike_heel%1:06:00:: 04276808 1 0 -spike_lavender%1:20:00:: 12850336 1 0 -spike_lavender_oil%1:20:00:: 12850531 1 0 -spike_lee%1:18:00:: 11124647 1 0 -spike_mike%1:06:00:: 04276929 1 0 -spike_moss%1:20:00:: 13224673 1 0 -spike_oil%1:20:00:: 12850531 1 0 -spike_out%2:30:00:: 00294718 1 1 -spike_rush%1:20:00:: 12153580 1 0 -spike_suppressor%1:06:00:: 04364160 1 0 -spiked%5:00:01:pointed:00 01811352 1 0 -spiked_loosestrife%1:20:00:: 12328567 1 0 -spikelet%1:20:00:: 13089631 1 0 -spikelike%5:00:00:pointed:00 01811430 1 0 -spikemoss%1:20:00:: 13224673 1 0 -spikenard%1:06:00:: 03809211 1 0 -spiky%5:00:00:high:03 01214255 1 0 -spile%1:06:00:: 02919648 2 0 -spile%1:06:01:: 03936269 1 0 -spill%1:04:00:: 00329619 3 0 -spill%1:04:01:: 00076884 4 0 -spill%1:06:00:: 04277034 2 0 -spill%1:27:00:: 15049594 1 0 -spill%2:30:04:: 00429642 6 0 -spill%2:32:00:: 00952841 5 0 -spill%2:35:00:: 01541579 3 1 -spill%2:35:01:: 01541803 4 0 -spill%2:35:04:: 01542207 1 2 -spill%2:38:00:: 02069888 2 1 -spill_out%2:38:00:: 02070150 1 3 -spill_over%2:37:00:: 01763101 1 1 -spill_over%2:38:01:: 02070150 2 0 -spill_the_beans%2:32:00:: 00937208 1 0 -spillage%1:04:00:: 00329619 2 0 -spillage%1:23:00:: 13763806 1 0 -spillane%1:18:00:: 11311287 1 0 -spiller%1:06:00:: 04475900 2 0 -spiller%1:18:00:: 10587378 1 0 -spillikin%1:06:00:: 03591465 1 0 -spillikins%1:04:00:: 00485450 1 0 -spillover%1:19:00:: 11513880 1 0 -spillway%1:06:00:: 04277034 1 0 -spilogale%1:05:00:: 02446888 1 0 -spilogale_putorius%1:05:00:: 02447021 1 0 -spin%1:04:00:: 00343249 2 0 -spin%1:04:01:: 00309540 3 0 -spin%1:04:02:: 00306210 4 0 -spin%1:04:03:: 00101003 5 0 -spin%1:11:00:: 07442288 1 0 -spin%2:30:00:: 00318706 8 0 -spin%2:32:00:: 00953700 7 0 -spin%2:35:00:: 01518772 6 0 -spin%2:36:00:: 01639364 5 0 -spin%2:36:01:: 01639500 4 0 -spin%2:38:00:: 02068062 2 5 -spin%2:38:01:: 02046755 1 11 -spin%2:38:02:: 02048051 3 0 -spin-dry%2:30:00:: 00215363 1 0 -spin-off%1:06:00:: 02930492 1 0 -spin_around%2:38:00:: 02046755 1 3 -spin_doctor%1:18:00:: 10636014 1 0 -spin_drier%1:06:00:: 04277826 1 0 -spin_dryer%1:06:00:: 04277826 1 0 -spin_off%2:30:00:: 00345184 1 0 -spin_out%2:30:00:: 00318706 1 0 -spin_the_bottle%1:04:00:: 00487453 1 0 -spin_the_plate%1:04:00:: 00487617 1 0 -spin_the_platter%1:04:00:: 00487617 1 0 -spina_bifida%1:26:00:: 14471224 1 0 -spinach%1:13:00:: 07736692 2 0 -spinach%1:20:00:: 11835568 1 0 -spinach_beet%1:13:00:: 07720277 2 0 -spinach_beet%1:20:00:: 11832671 1 0 -spinach_blight%1:26:00:: 14218717 1 0 -spinach_mustard%1:20:00:: 11879291 1 0 -spinach_plant%1:20:00:: 11835568 1 0 -spinacia%1:20:00:: 11835451 1 0 -spinacia_oleracea%1:20:00:: 11835568 1 0 -spinal%1:26:00:: 14029405 1 0 -spinal%3:01:00:: 02884456 1 0 -spinal_accessory%1:08:00:: 05480401 1 0 -spinal_anaesthesia%1:26:00:: 14029405 1 0 -spinal_anaesthetic%1:06:00:: 04277204 1 0 -spinal_anesthesia%1:26:00:: 14029405 1 0 -spinal_anesthetic%1:06:00:: 04277204 1 0 -spinal_canal%1:08:00:: 05249232 1 0 -spinal_column%1:08:00:: 05588174 1 0 -spinal_cord%1:08:00:: 05503705 1 0 -spinal_curvature%1:26:00:: 14504889 1 0 -spinal_fluid%1:08:00:: 05504107 1 0 -spinal_fusion%1:04:00:: 00699517 1 0 -spinal_nerve%1:08:00:: 05569053 1 0 -spinal_puncture%1:04:00:: 00944068 1 0 -spinal_tap%1:04:00:: 00944068 1 0 -spinal_vein%1:08:00:: 05380697 1 0 -spinally%4:02:00:: 00136377 1 0 -spindle%1:06:00:: 04277352 4 0 -spindle%1:06:01:: 04277493 3 0 -spindle%1:06:02:: 04277669 2 0 -spindle%1:06:03:: 04276050 5 0 -spindle%1:08:00:: 05605498 1 0 -spindle-legged%5:00:00:thin:03 00991481 1 0 -spindle-shanked%5:00:00:thin:03 00991481 1 0 -spindle-shaped%5:00:00:pointed:00 01810613 1 0 -spindle-tree_family%1:20:00:: 12747563 1 0 -spindle_horn%1:05:00:: 02428842 1 0 -spindle_tree%1:20:00:: 12749049 1 0 -spindleberry%1:20:00:: 12749049 1 0 -spindleberry_tree%1:20:00:: 12749049 1 0 -spindlelegs%1:08:00:: 05562161 2 0 -spindlelegs%1:18:00:: 10635907 1 0 -spindleshanks%1:08:00:: 05562161 2 0 -spindleshanks%1:18:00:: 10635907 1 0 -spindly%5:00:00:thin:03 00989647 1 0 -spindrift%1:27:00:: 15056827 1 0 -spine%1:05:00:: 01900488 5 0 -spine%1:06:00:: 04277980 4 0 -spine%1:08:00:: 05588174 1 3 -spine%1:20:00:: 13089631 3 0 -spine%1:25:00:: 13912839 2 0 -spine-tipped%5:00:00:tipped:00 02431351 1 0 -spinel%1:27:00:: 15050898 1 0 -spinel_ruby%1:27:00:: 15051129 1 0 -spineless%3:00:00:: 02278842 3 0 -spineless%3:00:01:: 02510273 2 0 -spineless%5:00:00:unarmed:02 00146128 4 0 -spineless%5:00:00:weak:00 02325816 1 1 -spinelessness%1:07:00:: 04889966 1 0 -spinet%1:06:00:: 04278247 2 0 -spinet%1:06:01:: 04278353 1 0 -spininess%1:07:00:: 04949799 1 0 -spinmeister%1:18:00:: 10636014 1 0 -spinnability%1:07:00:: 04720685 1 1 -spinnable%5:00:00:flexible:01 01023010 2 0 -spinnable%5:00:00:impressionable:00 02364834 1 0 -spinnaker%1:06:00:: 04278447 1 0 -spinnbar%5:00:00:flexible:01 01023010 1 0 -spinnbarkeit%1:07:00:: 04720879 1 0 -spinner%1:06:00:: 04278605 3 0 -spinner%1:06:01:: 04278751 2 0 -spinner%1:18:00:: 10636340 1 0 -spinney%1:14:00:: 08437968 1 0 -spinning%1:04:00:: 00909193 1 0 -spinning_frame%1:06:00:: 04278932 1 0 -spinning_jenny%1:06:00:: 04279063 1 0 -spinning_machine%1:06:00:: 04279172 1 0 -spinning_rod%1:06:00:: 04279353 1 0 -spinning_top%1:06:00:: 04454240 1 0 -spinning_wheel%1:06:00:: 04279462 1 0 -spinocerebellar_disorder%1:26:00:: 14471507 1 0 -spinose%5:00:00:rough:02 02248011 1 0 -spinous%3:00:00:: 02278738 1 0 -spinous%5:00:00:pointed:00 01810011 2 0 -spinoza%1:18:00:: 11311450 1 0 -spinster%1:18:00:: 10636488 1 0 -spinster%1:18:01:: 10636340 2 0 -spinsterhood%1:26:00:: 13967827 1 0 -spinus%1:05:00:: 01532107 1 0 -spinus_pinus%1:05:00:: 01532511 1 0 -spinus_tristis%1:05:00:: 01532325 1 0 -spiny%3:00:00:: 02278738 1 0 -spiny%5:00:00:armed:02 00145083 2 0 -spiny-backed%5:00:00:backed:00 00200760 1 0 -spiny-edged%5:00:00:bordered:00 00259098 1 0 -spiny-finned%3:01:00:: 03119937 1 0 -spiny-finned_fish%1:05:00:: 02552171 1 0 -spiny-headed_worm%1:05:00:: 01923404 1 0 -spiny-leafed%5:00:00:leafy:00 01703237 1 0 -spiny-leaved%5:00:00:leafy:00 01703237 1 0 -spiny-stemmed%5:00:00:caulescent:00 00321770 1 0 -spiny_anteater%1:05:01:: 01872401 2 0 -spiny_anteater%1:05:02:: 01872772 1 0 -spiny_dogfish%1:05:00:: 01493541 1 0 -spiny_lizard%1:05:01:: 01680264 2 0 -spiny_lizard%1:05:02:: 01689081 1 0 -spiny_lobster%1:05:00:: 01984695 2 0 -spiny_lobster%1:13:00:: 07793260 1 0 -spiny_puffer%1:05:00:: 02655523 1 0 -spiny_softshell%1:05:00:: 01672432 1 0 -spiny_talinum%1:20:00:: 11864114 1 0 -spipistrellus_hesperus%1:05:00:: 02148245 1 0 -spiracle%1:08:00:: 05250310 1 0 -spiraea%1:20:00:: 12659203 3 0 -spiraea%1:20:01:: 12659356 2 0 -spiraea%1:20:02:: 12795555 1 0 -spiraea_prunifolia%1:20:00:: 12659539 1 0 -spiral%1:04:00:: 00343606 6 0 -spiral%1:06:00:: 03065424 5 0 -spiral%1:06:01:: 04279666 4 0 -spiral%1:22:00:: 13560191 3 0 -spiral%1:25:00:: 13876371 1 7 -spiral%1:25:01:: 13876561 2 0 -spiral%2:38:00:: 02049190 1 2 -spiral%2:38:01:: 02049561 3 0 -spiral%2:42:00:: 02738544 2 0 -spiral%5:00:00:coiled:00 02317598 1 0 -spiral-shelled%5:00:00:shelled:00 02596810 1 0 -spiral_bandage%1:06:00:: 04279858 1 0 -spiral_galaxy%1:14:00:: 08271457 1 0 -spiral_nebula%1:14:00:: 08271457 1 0 -spiral_ratchet_screwdriver%1:06:00:: 04279987 1 0 -spiral_spring%1:06:00:: 04280259 1 0 -spiraling%5:00:00:coiled:00 02317598 1 0 -spirally%4:02:00:: 00464044 1 0 -spirant%1:10:00:: 07118554 1 0 -spirant%5:00:00:soft:03 01157179 1 0 -spiranthes%1:20:00:: 12083339 1 0 -spiranthes_cernua%1:20:00:: 12083847 1 0 -spiranthes_porrifolia%1:20:00:: 12084400 1 0 -spiranthes_romanzoffiana%1:20:00:: 12084158 1 0 -spiranthes_spiralis%1:20:00:: 12084555 1 0 -spire%1:06:00:: 04312432 1 4 -spirea%1:20:01:: 12659356 2 0 -spirea%1:20:02:: 12795555 1 0 -spirilla%1:05:00:: 01351315 1 0 -spirillaceae%1:05:00:: 01363423 1 0 -spirillum%1:05:01:: 01351315 2 0 -spirillum%1:05:02:: 01363719 1 0 -spirillum_fever%1:26:00:: 14567690 1 0 -spirillum_minus%1:05:00:: 01363887 1 0 -spirit%1:07:00:: 04620558 3 13 -spirit%1:07:02:: 04632157 7 3 -spirit%1:07:03:: 04624826 8 2 -spirit%1:10:00:: 06605897 6 3 -spirit%1:18:00:: 09545324 4 7 -spirit%1:18:01:: 10636598 1 45 -spirit%1:26:00:: 14526182 2 37 -spirit%1:26:01:: 13985818 5 6 -spirit%2:30:00:: 00193130 1 0 -spirit_away%2:35:00:: 01432914 2 0 -spirit_away%2:35:01:: 01435000 1 0 -spirit_gum%1:27:00:: 14704328 1 0 -spirit_lamp%1:06:00:: 04280373 1 0 -spirit_level%1:06:00:: 03658858 1 0 -spirit_of_turpentine%1:27:00:: 14893652 1 0 -spirit_off%2:35:00:: 01435000 1 0 -spirit_rapper%1:18:00:: 10488513 1 0 -spirit_rapping%1:10:00:: 07257227 1 0 -spirit_stove%1:06:00:: 04280487 1 0 -spirit_up%2:30:00:: 00193130 1 0 -spirit_world%1:09:00:: 05631841 1 0 -spirited%3:00:00:: 02278939 1 3 -spirited%5:00:00:animated:00 00118844 4 0 -spirited%5:00:00:brave:00 00263994 3 0 -spirited%5:00:00:lively:00 00805309 2 0 -spiritedly%4:02:00:: 00034746 1 0 -spiritedness%1:07:00:: 04631700 1 0 -spiritise%2:35:00:: 01229631 1 0 -spiritism%1:07:00:: 04621314 1 0 -spiritize%2:35:00:: 01229631 1 0 -spiritless%3:00:00:: 02281325 1 0 -spiritless%5:00:00:submissive:00 00789494 2 0 -spiritlessness%1:07:00:: 04636610 1 0 -spiritous%5:00:00:alcoholic:00 01159217 1 0 -spirits%1:13:00:: 07901587 1 1 -spirits_of_ammonia%1:27:00:: 15052063 1 0 -spirits_of_wine%1:27:00:: 14709706 1 0 -spiritual%1:10:00:: 07035598 1 2 -spiritual%5:00:00:incorporeal:00 00631193 3 1 -spiritual%5:00:00:sacred:00 02056265 1 7 -spiritual%5:00:00:supernatural:00 01574925 4 0 -spiritual%5:00:00:unworldly:00 02579136 2 1 -spiritual_being%1:18:00:: 09504135 1 1 -spiritual_bouquet%1:10:00:: 06628663 1 0 -spiritual_domain%1:09:00:: 05952199 1 0 -spiritual_jewel%1:18:00:: 09533910 1 0 -spiritual_leader%1:18:00:: 09505153 1 0 -spiritual_rebirth%1:04:00:: 00094788 1 0 -spiritual_world%1:09:00:: 05952199 1 0 -spiritualisation%1:04:00:: 00583933 1 0 -spiritualise%2:30:00:: 00476313 2 0 -spiritualise%2:31:00:: 00623947 1 0 -spiritualism%1:07:00:: 04621314 3 0 -spiritualism%1:09:00:: 05951969 2 0 -spiritualism%1:09:01:: 05976805 1 0 -spiritualist%1:18:00:: 10306279 1 0 -spiritualist%3:01:00:: 02911876 1 0 -spiritualistic%3:01:00:: 02911876 1 0 -spirituality%1:07:00:: 04621314 2 0 -spirituality%1:21:00:: 13247818 1 0 -spiritualization%1:04:00:: 00583933 1 0 -spiritualize%2:30:00:: 00476313 3 0 -spiritualize%2:30:03:: 00580512 2 0 -spiritualize%2:31:00:: 00623947 1 0 -spiritually%4:02:00:: 00211517 1 3 -spiritualty%1:21:00:: 13247818 1 0 -spirituous%5:00:00:alcoholic:00 01159217 1 0 -spirochaeta%1:05:00:: 01381829 1 0 -spirochaetaceae%1:05:00:: 01381604 1 0 -spirochaetales%1:05:00:: 01381399 1 0 -spirochaete%1:05:00:: 01382033 1 0 -spirochete%1:05:00:: 01382033 1 0 -spirodela%1:20:00:: 11795366 1 0 -spirodela_polyrrhiza%1:20:00:: 11795580 1 0 -spirogram%1:06:00:: 04280603 1 0 -spirograph%1:06:00:: 04280706 1 0 -spirogyra%1:05:00:: 01410689 1 0 -spirometer%1:06:00:: 04280845 1 0 -spirometry%1:04:00:: 01005473 1 0 -spironolactone%1:27:00:: 14754192 1 0 -spirt%1:11:00:: 07436100 1 0 -spirt%2:38:00:: 01884126 2 0 -spirt%2:38:01:: 02068413 1 0 -spirula%1:05:00:: 01973148 1 0 -spirula_peronii%1:05:00:: 01973148 1 0 -spirulidae%1:05:00:: 01972733 1 0 -spit%1:04:00:: 00118552 4 0 -spit%1:06:00:: 04280970 3 0 -spit%1:08:00:: 05416198 2 0 -spit%1:17:00:: 09442595 1 0 -spit%2:29:00:: 00101956 1 11 -spit%2:32:00:: 01045318 2 1 -spit%2:35:00:: 01444563 4 0 -spit%2:43:00:: 02757828 3 0 -spit_and_polish%1:26:00:: 14496977 1 0 -spit_curl%1:08:00:: 05258627 1 0 -spit_out%2:29:00:: 00102303 1 2 -spit_out%2:29:01:: 00006238 3 0 -spit_out%2:32:00:: 01045318 2 1 -spit_up%2:29:00:: 00006238 2 0 -spit_up%2:40:00:: 02200341 1 0 -spitball%1:04:00:: 00109227 2 0 -spitball%1:06:00:: 04281131 1 0 -spite%1:07:00:: 04842515 2 0 -spite%1:12:00:: 07550666 1 1 -spite%2:37:00:: 01793177 1 0 -spiteful%5:00:00:malicious:00 00225099 1 1 -spitefully%4:02:00:: 00201339 2 0 -spitefully%4:02:02:: 00309351 1 0 -spitefulness%1:07:00:: 04842515 2 0 -spitefulness%1:12:00:: 07550666 1 0 -spitfire%1:18:00:: 10636746 1 0 -spitsbergen%1:15:00:: 08764717 1 0 -spitter%1:04:00:: 00109227 2 0 -spitter%1:18:00:: 10636874 1 0 -spitting%1:04:00:: 00118552 1 0 -spitting_cobra%1:05:00:: 01748686 1 0 -spitting_image%1:07:00:: 04747616 1 0 -spitting_snake%1:05:00:: 01749244 1 0 -spittle%1:08:00:: 05416198 1 0 -spittle_insect%1:05:00:: 02257715 1 0 -spittlebug%1:05:00:: 02257715 1 0 -spittoon%1:06:00:: 04281260 1 0 -spitz%1:05:00:: 02111626 1 0 -spitzbergen%1:15:00:: 08764717 1 0 -spiv%1:18:00:: 10637038 1 0 -spizella%1:05:00:: 01535842 1 0 -spizella_arborea%1:05:00:: 01536334 1 0 -spizella_passerina%1:05:00:: 01536035 1 0 -spizella_pusilla%1:05:00:: 01536186 1 0 -splanchnic%3:01:00:: 02862964 1 0 -splanchnic_nerve%1:08:00:: 05505479 1 0 -splash%1:04:00:: 00717748 5 0 -splash%1:04:01:: 00278221 6 0 -splash%1:07:00:: 04682319 4 0 -splash%1:11:00:: 07395104 1 1 -splash%1:23:00:: 13761171 3 0 -splash%1:26:00:: 13978166 2 0 -splash%2:35:00:: 01374020 3 1 -splash%2:35:01:: 01374767 1 2 -splash%2:35:02:: 01375295 7 0 -splash%2:35:04:: 01534609 6 0 -splash%2:35:06:: 01336864 4 1 -splash%2:38:00:: 01921591 2 1 -splash%2:39:00:: 02186868 5 0 -splash-guard%1:06:00:: 03796605 1 0 -splash_around%2:41:00:: 02419613 1 0 -splash_guard%1:06:00:: 03796605 1 0 -splashboard%1:06:00:: 04554211 1 0 -splashboard%1:06:01:: 04281375 2 0 -splashdown%1:04:00:: 00305980 1 0 -splashed%5:00:00:covered:00 01695891 2 0 -splashed%5:00:00:distributed:00 00542501 1 1 -splasher%1:06:00:: 04281571 1 0 -splasher%1:06:01:: 04281375 2 0 -splashiness%1:07:00:: 04817923 1 0 -splashing%1:04:00:: 00717748 1 0 -splashing%1:04:01:: 00278221 2 0 -splashy%3:01:00:: 02801037 1 0 -splashy%5:00:00:covered:00 01697770 3 0 -splashy%5:00:00:ostentatious:00 01848701 2 0 -splat%1:06:00:: 04281749 2 0 -splat%1:11:00:: 07395303 1 0 -splat%2:30:00:: 00464173 2 0 -splat%2:30:01:: 00463633 3 0 -splat%2:39:00:: 02173513 1 0 -splatter%1:11:00:: 07394814 1 1 -splatter%1:23:00:: 13761171 2 0 -splatter%2:35:00:: 01542207 1 0 -splatter%2:35:01:: 01374020 2 0 -splattered%5:00:00:covered:00 01695891 1 2 -splattering%1:04:00:: 00717748 2 0 -splattering%1:11:00:: 07394814 1 0 -splay%1:06:00:: 04281880 1 0 -splay%2:30:00:: 00465762 3 0 -splay%2:38:00:: 02045415 2 0 -splay%2:38:01:: 02045655 1 0 -splay%5:00:00:splayfooted:00 01032978 1 0 -splayfoot%1:08:00:: 05576421 1 0 -splayfoot%3:00:00:: 01032710 1 0 -splayfooted%3:00:00:: 01032710 1 0 -spleen%1:08:00:: 05333467 1 3 -spleen%1:12:00:: 07552549 2 0 -spleenwort%1:20:00:: 13180534 1 0 -splendid%5:00:00:beautiful:00 00219389 1 7 -splendid%5:00:00:impressive:00 01285376 3 0 -splendid%5:00:00:superior:02 02343110 2 0 -splendidly%4:02:00:: 00182316 1 1 -splendidly%4:02:01:: 00350163 2 0 -splendiferous%5:00:00:beautiful:00 00219389 1 0 -splendor%1:07:00:: 04954920 1 2 -splendor%1:07:01:: 04814238 2 2 -splendour%1:07:00:: 04954920 1 0 -splendour%1:07:01:: 04814238 2 0 -splenectomy%1:04:00:: 00687769 1 0 -splenetic%3:01:00:: 02801156 1 0 -splenetic%5:00:00:ill-natured:00 01135420 2 0 -splenic%3:01:00:: 02801156 1 0 -splenic_artery%1:08:00:: 05350061 1 0 -splenic_fever%1:26:00:: 14260182 1 0 -splenic_vein%1:08:00:: 05380822 1 0 -splenitis%1:26:00:: 14355819 1 0 -splenius%1:08:00:: 05575743 1 0 -splenius_muscle%1:08:00:: 05575743 1 0 -splenomegaly%1:26:00:: 14368192 1 1 -splice%1:06:00:: 03642573 2 0 -splice%1:06:01:: 04281998 1 0 -splice%2:35:00:: 01559868 4 0 -splice%2:35:01:: 01560184 1 1 -splice%2:35:02:: 01560034 3 0 -splice%2:41:00:: 02489456 2 0 -splicer%1:06:00:: 04282231 3 0 -splicer%1:18:00:: 10637229 2 0 -splicer%1:18:01:: 10637360 1 0 -splicing%1:06:00:: 04281998 1 1 -spliff%1:06:00:: 03600806 1 0 -spline%1:06:00:: 04234455 2 0 -spline%1:06:01:: 04282379 1 0 -splint%1:06:00:: 04282494 2 0 -splint%1:17:00:: 09442723 1 0 -splint%2:29:00:: 00083661 1 0 -splint_bone%1:05:00:: 02322817 1 0 -splinter%1:17:00:: 09442838 1 3 -splinter%2:30:00:: 00337903 3 1 -splinter%2:41:00:: 02535457 1 1 -splinter%2:41:01:: 02469274 2 1 -splinter_group%1:14:00:: 08252083 1 0 -splintering%1:04:00:: 00377169 1 0 -splinterless%5:00:00:unbreakable:00 00710097 1 0 -splinterproof%5:00:00:unbreakable:00 00710097 1 0 -splinters%1:27:00:: 14949075 1 1 -splintery%3:01:00:: 02801349 2 0 -splintery%5:00:00:breakable:00 00709625 1 1 -split%1:04:00:: 00386676 11 0 -split%1:04:01:: 00391407 10 0 -split%1:04:02:: 00437929 1 5 -split%1:04:03:: 00439043 9 0 -split%1:06:00:: 04282664 8 0 -split%1:13:00:: 07616590 7 0 -split%1:15:00:: 08819016 6 0 -split%1:17:00:: 09410928 5 0 -split%1:17:01:: 09443136 4 0 -split%1:21:00:: 13286640 3 0 -split%1:23:00:: 13770076 2 0 -split%2:30:01:: 00309310 5 2 -split%2:35:00:: 01556572 2 3 -split%2:38:00:: 02030158 4 2 -split%2:41:00:: 02431320 3 2 -split%2:41:03:: 02467662 1 4 -split%5:00:00:cut:01 00662529 2 0 -split%5:00:00:divided:00 02481012 1 1 -split-brain_technique%1:04:00:: 00667612 1 0 -split-half_correlation%1:09:00:: 06035674 1 0 -split-pea%1:13:00:: 07726009 1 0 -split-pea_soup%1:13:00:: 07588299 1 0 -split_decision%1:11:00:: 07293903 1 0 -split_down%1:04:00:: 00439284 1 0 -split_end%1:18:00:: 10637483 1 1 -split_infinitive%1:10:00:: 06317107 1 0 -split_personality%1:26:00:: 14394783 1 0 -split_rail%1:06:00:: 04282872 1 0 -split_run%1:28:00:: 15262624 1 0 -split_second%1:28:00:: 15247110 1 1 -split_shift%1:28:00:: 15293091 1 0 -split_ticket%1:04:00:: 00184501 1 0 -split_up%1:04:00:: 00439043 1 0 -split_up%2:30:00:: 00334186 4 0 -split_up%2:41:00:: 02490634 1 0 -split_up%2:41:01:: 02431320 3 0 -split_up%2:41:02:: 02467662 2 0 -splitsaw%1:06:00:: 04094608 1 0 -splitsville%1:04:00:: 00215534 1 0 -splitter%1:18:00:: 10637635 2 0 -splitter%1:18:01:: 10637839 1 0 -splitter%1:18:02:: 10505206 3 0 -splitting%5:00:00:cacophonous:00 00300469 1 1 -splitworm%1:05:00:: 02294407 1 0 -splodge%1:07:00:: 04694809 1 0 -splosh%2:35:00:: 01374020 4 0 -splosh%2:35:01:: 01374767 3 0 -splosh%2:38:00:: 01921591 2 0 -splosh%2:39:00:: 02186868 1 0 -splotch%1:07:00:: 04694809 1 0 -splotch%2:35:00:: 01532329 1 0 -splotched%5:00:00:patterned:00 01787408 1 0 -splurge%1:04:00:: 01073824 2 0 -splurge%1:10:00:: 06890000 1 0 -splurge%2:39:00:: 02142413 2 0 -splurge%2:40:00:: 02269003 1 0 -splutter%1:10:00:: 07130183 2 0 -splutter%1:11:00:: 07394814 1 1 -splutter%2:29:00:: 00102303 2 0 -splutter%2:32:00:: 00986897 1 0 -spock%1:18:00:: 11311623 1 0 -spode%1:06:00:: 04282992 2 0 -spode%1:18:00:: 11311817 1 0 -spodoptera%1:05:00:: 02297635 1 0 -spodoptera_exigua%1:05:01:: 02297819 2 0 -spodoptera_exigua%1:05:02:: 02297938 1 0 -spodoptera_frugiperda%1:05:00:: 02298218 1 0 -spodoptera_frugiperda%1:05:01:: 02298095 2 0 -spodumene%1:27:00:: 15052223 1 0 -spoil%1:04:00:: 00966869 3 0 -spoil%1:04:01:: 01263018 2 0 -spoil%1:21:00:: 13262462 1 0 -spoil%2:30:00:: 00210259 2 1 -spoil%2:30:01:: 00203081 3 1 -spoil%2:30:02:: 00477941 8 0 -spoil%2:35:00:: 01565472 7 0 -spoil%2:37:00:: 01825761 6 0 -spoil%2:41:00:: 02558172 5 0 -spoil%2:41:01:: 02570267 4 0 -spoil%2:41:02:: 02527651 1 2 -spoilable%1:13:00:: 07937344 1 0 -spoilable%5:00:00:perishable:00 01753785 1 0 -spoilage%1:04:00:: 01263018 3 0 -spoilage%1:22:00:: 13560417 2 0 -spoilage%1:23:00:: 13763888 1 0 -spoilation%1:04:00:: 00966869 1 0 -spoiled%5:00:00:ill-natured:00 01138902 1 1 -spoiled%5:00:00:stale:00 01069283 2 0 -spoiler%1:06:00:: 04283096 5 0 -spoiler%1:06:01:: 04283255 4 0 -spoiler%1:18:00:: 10443170 2 0 -spoiler%1:18:01:: 10637961 1 0 -spoiler%1:18:02:: 10395390 3 0 -spoiling%1:04:00:: 01263018 2 0 -spoiling%1:22:00:: 13560417 1 0 -spoils_system%1:09:00:: 05664803 1 0 -spoilsport%1:18:00:: 10638136 1 0 -spoilt%5:00:00:destroyed:00 00734906 3 0 -spoilt%5:00:00:ill-natured:00 01138902 1 0 -spoilt%5:00:00:stale:00 01069283 2 0 -spokane%1:15:00:: 09154607 1 0 -spoke%1:06:00:: 04283378 1 2 -spoke%1:06:01:: 04119751 2 0 -spoken%3:00:00:: 02283703 1 2 -spoken_communication%1:10:00:: 07109196 1 0 -spoken_language%1:10:00:: 07109196 1 2 -spoken_word%1:10:00:: 06304576 1 1 -spokeshave%1:06:00:: 04283585 1 0 -spokesman%1:18:00:: 10638310 1 1 -spokesperson%1:18:00:: 10638385 1 0 -spokeswoman%1:18:00:: 10638734 1 0 -spoliation%1:04:00:: 00966869 2 0 -spoliation%1:04:01:: 01249616 1 0 -spondaic%3:01:00:: 03120034 1 0 -spondaise%2:36:00:: 01703195 1 0 -spondaize%2:36:00:: 01703195 1 0 -spondee%1:10:00:: 07095775 1 0 -spondias%1:20:00:: 12765679 1 0 -spondias_mombin%1:20:00:: 12765846 1 0 -spondias_purpurea%1:20:00:: 12766043 1 0 -spondylarthritis%1:26:00:: 14189065 1 0 -spondylitis%1:26:00:: 14355901 1 0 -spondylolisthesis%1:26:00:: 14294517 1 0 -sponge%1:05:00:: 01906749 4 0 -sponge%1:18:00:: 10252674 3 0 -sponge%1:18:01:: 10501453 2 0 -sponge%1:27:00:: 14597758 1 1 -sponge%2:35:00:: 01392663 1 2 -sponge%2:35:01:: 01549057 3 0 -sponge%2:35:02:: 01393611 4 0 -sponge%2:35:03:: 01383646 5 0 -sponge%2:40:00:: 02270404 2 0 -sponge_bag%1:06:00:: 04446844 1 0 -sponge_bath%1:04:00:: 00258403 1 0 -sponge_cake%1:13:00:: 07632037 1 0 -sponge_cloth%1:06:00:: 04283784 1 0 -sponge_down%2:29:00:: 00036685 2 0 -sponge_down%2:35:00:: 01250795 1 0 -sponge_genus%1:05:00:: 01907034 1 0 -sponge_gourd%1:20:00:: 12166424 1 0 -sponge_mop%1:06:00:: 04283905 1 0 -sponge_morel%1:20:00:: 13032381 1 0 -sponge_mushroom%1:20:00:: 13032381 1 0 -sponge_off%2:35:00:: 01250795 1 2 -sponge_on%2:35:00:: 01364874 1 0 -sponge_up%2:35:00:: 01539487 1 0 -spongefly%1:05:00:: 02267826 1 0 -spongelike%5:00:00:absorbent:00 00007516 2 0 -spongelike%5:00:00:soft:01 01154964 1 0 -sponger%1:18:00:: 10252674 2 0 -sponger%1:18:01:: 10638813 1 0 -spongillafly%1:05:00:: 02267826 1 0 -sponginess%1:07:00:: 04940379 1 0 -sponginess%1:07:01:: 04938474 2 0 -spongioblast%1:08:00:: 05242239 1 0 -spongioblastoma%1:26:00:: 14236872 1 0 -spongy%5:00:00:absorbent:00 00007516 2 0 -spongy%5:00:00:soft:01 01154964 1 2 -sponsor%1:18:00:: 10407954 1 4 -sponsor%1:18:01:: 10466198 2 0 -sponsor%2:40:00:: 02219940 1 26 -sponsor%2:40:01:: 02220148 2 7 -sponsor%2:41:00:: 02466134 3 0 -sponsorship%1:04:01:: 01215036 1 3 -spontaneity%1:07:00:: 04786763 1 3 -spontaneous%3:00:00:: 02282376 1 8 -spontaneous%5:00:00:unscripted:00 02213557 2 0 -spontaneous_abortion%1:04:00:: 00230475 1 0 -spontaneous_combustion%1:22:00:: 13560586 1 0 -spontaneous_generation%1:19:00:: 11420376 1 0 -spontaneously%4:02:00:: 00191889 1 2 -spontaneously%4:02:01:: 00088655 2 0 -spontaneousness%1:07:00:: 04786763 1 0 -spoof%1:10:00:: 06780309 1 0 -spoof%2:32:00:: 00849939 1 0 -spook%1:09:00:: 05898171 2 0 -spook%1:18:01:: 09976917 1 0 -spook%2:37:00:: 01830965 1 0 -spookily%4:02:00:: 00325802 1 0 -spooky%5:00:00:excitable:00 00919155 1 0 -spool%1:06:00:: 02860415 1 0 -spool%2:35:00:: 01522878 2 0 -spool%2:40:00:: 02233533 1 0 -spoon%1:06:00:: 04284002 1 1 -spoon%1:06:01:: 04284341 3 0 -spoon%1:23:00:: 13770169 2 0 -spoon%2:35:00:: 01579622 1 0 -spoon%2:35:01:: 01425709 2 0 -spoon-shaped%5:00:00:formed:00 02150220 1 0 -spoon_bread%1:13:00:: 07689313 1 0 -spoon_food%1:13:00:: 07564796 1 0 -spoonbill%1:05:00:: 02006656 1 0 -spoonbill_catfish%1:05:00:: 02520147 1 0 -spoondrift%1:27:00:: 15056827 1 0 -spoonerism%1:10:00:: 06770164 1 0 -spoonfeed%2:32:00:: 00787876 2 0 -spoonfeed%2:34:00:: 01179638 1 0 -spoonfeeding%1:04:00:: 01059189 1 0 -spoonfeeding%1:04:01:: 00892711 2 0 -spoonflower%1:20:00:: 11793403 1 0 -spoonful%1:23:00:: 13770169 1 1 -spoonleaf_yucca%1:20:00:: 12483427 1 0 -spoor%1:17:00:: 09443281 1 0 -sporadic%3:00:00:: 00593374 1 3 -sporadically%4:02:00:: 00212974 1 0 -sporangiophore%1:20:00:: 13091982 1 0 -sporangium%1:20:00:: 13091774 1 0 -sporanox%1:06:00:: 03588668 1 0 -spore%1:20:00:: 11547855 1 2 -spore-bearing%5:00:00:flowerless:00 02598110 1 0 -spore_case%1:20:00:: 13091774 1 0 -spore_case%1:20:02:: 11550725 2 0 -spore_mother_cell%1:20:00:: 11688958 1 0 -spore_sac%1:20:00:: 13091774 1 0 -spork%1:06:00:: 04284438 1 0 -sporobolus%1:20:00:: 12140137 1 0 -sporobolus_cryptandrus%1:20:00:: 12140759 1 0 -sporobolus_poiretii%1:20:00:: 12140511 1 0 -sporocarp%1:20:00:: 11550725 1 0 -sporogenous%3:01:00:: 02801641 1 0 -sporophore%1:20:00:: 13093380 1 0 -sporophyl%1:20:00:: 13091620 1 0 -sporophyll%1:20:00:: 13091620 1 0 -sporophyte%1:20:00:: 11686912 1 0 -sporotrichosis%1:26:00:: 14182453 1 0 -sporozoa%1:05:00:: 01421496 1 0 -sporozoan%1:05:00:: 01421807 1 0 -sporozoite%1:05:00:: 01422185 1 0 -sporran%1:06:00:: 04284572 1 0 -sport%1:04:00:: 00523513 1 11 -sport%1:04:01:: 00433216 2 6 -sport%1:10:00:: 06780882 7 0 -sport%1:18:00:: 10638922 5 0 -sport%1:18:01:: 10341660 6 0 -sport%1:18:02:: 10639047 4 0 -sport%1:18:03:: 10639238 3 0 -sport%2:38:00:: 01883716 2 0 -sport%2:42:00:: 02631659 1 1 -sport_car%1:06:00:: 04285008 1 0 -sport_coat%1:06:00:: 02850358 1 0 -sport_fish%1:05:00:: 02512830 1 0 -sport_jacket%1:06:00:: 02850358 1 0 -sport_kite%1:06:00:: 04284869 1 0 -sport_shirt%1:06:00:: 03978966 1 1 -sport_utility%1:06:00:: 04285965 1 0 -sport_utility_vehicle%1:06:00:: 04285965 1 0 -sportfishing%1:04:00:: 00453935 1 0 -sporting%3:01:00:: 02801839 2 3 -sporting%5:00:00:adventurous:00 00066565 3 1 -sporting%5:00:00:fair:03 00956733 1 5 -sporting%5:00:00:indulgent:00 01297946 4 0 -sporting_chance%1:07:00:: 05092969 1 0 -sporting_dog%1:05:00:: 02098550 1 0 -sporting_goods%1:06:00:: 04284735 1 0 -sporting_house%1:06:00:: 04581595 1 0 -sporting_lady%1:18:00:: 10485440 1 0 -sporting_life%1:04:00:: 00506554 1 0 -sporting_man%1:18:00:: 10639359 2 0 -sporting_man%1:18:01:: 10639469 1 0 -sportingly%4:02:00:: 00464138 1 0 -sportive%3:01:00:: 02801749 1 0 -sportive%5:00:00:playful:00 02122132 2 0 -sportively%4:02:00:: 00034862 1 0 -sportiveness%1:07:00:: 04649835 1 0 -sports_announcer%1:18:00:: 10639637 1 0 -sports_arena%1:06:00:: 03333610 1 1 -sports_car%1:06:00:: 04285008 1 1 -sports_coat%1:06:00:: 02850358 1 0 -sports_commentator%1:18:00:: 10639637 1 0 -sports_desk%1:14:00:: 08118725 1 0 -sports_editor%1:18:00:: 10639817 1 2 -sports_equipment%1:06:00:: 04285146 1 0 -sports_fan%1:18:00:: 10639925 1 0 -sports_implement%1:06:00:: 04285622 1 0 -sports_jacket%1:06:00:: 02850358 1 1 -sports_medicine%1:09:00:: 06063417 1 0 -sports_meeting%1:11:00:: 07467846 1 0 -sports_page%1:10:00:: 06257909 1 0 -sports_section%1:10:00:: 06392787 1 0 -sports_stadium%1:06:00:: 04295881 1 0 -sports_writer%1:18:00:: 10640084 1 1 -sportscast%1:10:00:: 06683595 1 0 -sportscast%2:32:00:: 00969260 1 0 -sportscaster%1:18:00:: 10639637 1 0 -sportsman%1:18:00:: 10638922 1 6 -sportsmanlike%5:00:00:fair:03 00956733 1 0 -sportsmanship%1:07:00:: 04839555 1 0 -sportswear%1:06:00:: 04285803 1 0 -sportswoman%1:18:00:: 10638922 1 1 -sportswriter%1:18:00:: 10640084 1 0 -sporty%5:00:00:active:01 00033475 3 0 -sporty%5:00:00:colorful:03 00407420 2 0 -sporty%5:00:00:fair:03 00956733 1 0 -sporulate%2:30:00:: 00116496 2 0 -sporulate%2:36:00:: 01752728 1 0 -sporulation%1:22:00:: 13517199 1 0 -spot%1:04:00:: 00072261 14 0 -spot%1:04:01:: 00586262 8 1 -spot%1:06:00:: 04286128 7 1 -spot%1:06:01:: 04286575 12 0 -spot%1:06:02:: 04286307 13 0 -spot%1:07:00:: 04694441 4 2 -spot%1:07:01:: 04682462 5 2 -spot%1:07:02:: 04731925 3 2 -spot%1:10:00:: 06396468 6 1 -spot%1:10:01:: 06396644 2 2 -spot%1:10:02:: 07271942 11 0 -spot%1:15:01:: 08664443 1 23 -spot%1:23:00:: 13761407 10 0 -spot%1:26:00:: 14082186 9 0 -spot%2:30:00:: 00509607 6 0 -spot%2:30:01:: 00509958 5 0 -spot%2:35:00:: 01531998 4 0 -spot%2:35:01:: 01538161 3 0 -spot%2:39:00:: 02154312 1 18 -spot%2:39:02:: 02193194 2 0 -spot-check%2:31:00:: 00664111 1 0 -spot-weld%1:06:00:: 04286960 1 0 -spot-weld%2:35:00:: 01596056 1 0 -spot-welder%1:18:00:: 10640446 1 0 -spot-welding%1:04:00:: 00149895 1 0 -spot_check%1:04:00:: 00142140 1 0 -spot_jam%2:32:00:: 01057709 1 0 -spot_jamming%1:04:00:: 01251138 1 0 -spot_market%1:06:00:: 04286796 1 0 -spot_pass%1:04:00:: 00561820 1 0 -spot_price%1:21:00:: 13305373 1 0 -spot_promote%2:41:00:: 02398314 1 1 -spot_weld%1:06:00:: 04286960 1 0 -spot_welder%1:18:00:: 10640446 1 0 -spot_welding%1:04:00:: 00149895 1 0 -spotless%5:00:00:clean:01 00418364 1 3 -spotlessly%4:02:00:: 00464523 1 0 -spotlessness%1:26:00:: 14496563 1 0 -spotlight%1:06:00:: 04286575 2 0 -spotlight%1:26:00:: 14433769 1 1 -spotlight%2:30:00:: 00292368 2 0 -spotlight%2:30:01:: 00514069 1 1 -spots%1:26:00:: 14365119 1 0 -spotsylvania%1:04:00:: 01295918 2 0 -spotsylvania%1:15:00:: 09152401 1 0 -spotted%5:00:00:patterned:00 01789481 1 0 -spotted_antbird%1:05:00:: 01554017 1 0 -spotted_barramundi%1:05:00:: 02545153 1 0 -spotted_bat%1:05:00:: 02148512 1 0 -spotted_black_bass%1:05:00:: 02564935 1 0 -spotted_bonytongue%1:05:00:: 02545153 1 0 -spotted_coral_root%1:20:00:: 12053690 1 0 -spotted_cowbane%1:20:00:: 12935166 1 0 -spotted_crake%1:05:00:: 02016066 1 0 -spotted_cranesbill%1:20:00:: 12686077 1 0 -spotted_dick%1:13:00:: 07620485 1 0 -spotted_eagle_ray%1:05:00:: 01499396 1 0 -spotted_fever%1:26:00:: 14141490 1 0 -spotted_flycatcher%1:05:00:: 01556182 1 0 -spotted_gum%1:20:00:: 12338146 1 0 -spotted_hemlock%1:20:00:: 12935166 1 0 -spotted_hyena%1:05:00:: 02117900 1 0 -spotted_joe-pye_weed%1:20:00:: 11968704 1 0 -spotted_lynx%1:05:00:: 02127586 1 0 -spotted_owl%1:05:00:: 01623880 1 0 -spotted_ray%1:05:00:: 01499396 1 0 -spotted_salamander%1:05:01:: 01629962 2 0 -spotted_salamander%1:05:02:: 01632458 1 0 -spotted_sandpiper%1:05:00:: 02027075 1 0 -spotted_sea_trout%1:05:00:: 02599557 1 0 -spotted_skunk%1:05:00:: 02447021 1 0 -spotted_squeateague%1:05:00:: 02599557 1 0 -spotted_sunfish%1:05:00:: 02563949 1 0 -spotted_water_hemlock%1:20:00:: 12935166 1 0 -spotted_weakfish%1:05:00:: 02599557 1 0 -spotter%1:18:00:: 10090498 4 0 -spotter%1:18:01:: 10640195 2 0 -spotter%1:18:02:: 10640327 1 0 -spotter%1:18:03:: 10271216 3 0 -spotting%1:04:00:: 00151087 2 0 -spotting%1:04:01:: 00276813 1 0 -spotty%5:00:00:inconsistent:00 00578662 2 0 -spotty%5:00:00:patterned:00 01789481 1 0 -spotweld%2:35:00:: 01596056 1 0 -spousal%3:01:00:: 02801964 2 0 -spousal%3:01:01:: 02843495 1 0 -spousal_equivalent%1:18:00:: 10024362 1 0 -spousal_relationship%1:26:00:: 13963970 1 0 -spouse%1:18:00:: 10640620 1 3 -spouse_equivalent%1:18:00:: 10024362 1 0 -spout%1:06:00:: 04287153 1 0 -spout%2:32:00:: 01051956 2 1 -spout%2:38:00:: 02068413 1 1 -spouter%1:05:00:: 02072953 3 0 -spouter%1:06:00:: 04287351 2 0 -spouter%1:18:00:: 09911570 1 0 -spouting%5:00:00:running:02 01240931 1 0 -sprachgefuhl%1:09:00:: 05707885 1 0 -sprag%1:06:00:: 04287451 1 0 -sprag%1:06:01:: 03951690 2 0 -spraguea%1:20:00:: 11862089 1 0 -spraguea_umbellatum%1:20:00:: 11862300 1 0 -sprain%1:26:00:: 14299336 1 0 -sprain%2:29:00:: 00091124 1 1 -sprat%1:05:00:: 02532918 2 0 -sprat%1:13:00:: 07798985 1 0 -sprawl%1:07:00:: 05082337 2 0 -sprawl%1:15:00:: 08539717 1 0 -sprawl%2:35:00:: 01543426 1 8 -sprawl%2:38:00:: 02032227 2 2 -sprawler%1:18:00:: 10640968 1 0 -sprawling%1:07:00:: 05082337 1 1 -sprawling%5:00:00:untidy:00 02426679 1 0 -sprawly%5:00:00:extended:00 01432202 1 0 -spray%1:06:00:: 02754103 4 1 -spray%1:06:01:: 04287610 3 1 -spray%1:11:00:: 07446533 6 0 -spray%1:23:00:: 13762305 2 1 -spray%1:27:00:: 15056541 5 0 -spray%1:27:01:: 15052555 1 3 -spray%2:35:00:: 01372682 2 2 -spray%2:35:01:: 01373844 1 3 -spray%2:35:03:: 01373551 3 0 -spray-dried%3:44:00:: 03153960 1 1 -spray-dry%2:30:00:: 00215661 1 0 -spray_can%1:06:00:: 02682922 1 0 -spray_gun%1:06:00:: 04287747 1 0 -spray_paint%1:06:00:: 04287898 1 0 -spray_painting%1:04:00:: 00717640 1 0 -sprayer%1:06:00:: 02754103 2 0 -sprayer%1:18:00:: 10641112 1 0 -spraying%1:04:02:: 00717468 3 0 -spraying%1:04:03:: 00368939 1 3 -spraying%1:23:00:: 13762305 2 0 -spread%1:04:00:: 00367976 10 0 -spread%1:06:00:: 02822220 9 0 -spread%1:06:01:: 04052442 3 2 -spread%1:07:00:: 05088324 4 1 -spread%1:07:01:: 05101512 8 0 -spread%1:07:02:: 04752859 2 3 -spread%1:10:00:: 06258031 7 0 -spread%1:11:00:: 07445896 1 3 -spread%1:13:00:: 07856270 5 0 -spread%1:13:01:: 07578093 6 0 -spread%2:32:00:: 00968211 5 5 -spread%2:32:02:: 00969873 6 4 -spread%2:35:00:: 01378556 1 24 -spread%2:35:03:: 01579813 4 5 -spread%2:35:07:: 01380122 2 6 -spread%2:35:12:: 01611901 9 0 -spread%2:35:13:: 01611746 10 0 -spread%2:38:00:: 02082690 7 3 -spread%2:38:02:: 02060141 8 3 -spread%2:42:00:: 02689299 3 5 -spread%5:00:00:distributed:00 00540977 1 4 -spread%5:00:00:extended:00 01431938 3 1 -spread%5:00:00:prepared:00 01844858 2 1 -spread-eagle%2:29:00:: 00027570 1 1 -spread-eagle%2:33:00:: 01104248 5 0 -spread-eagle%2:35:00:: 01543626 4 0 -spread-eagle%2:38:00:: 01937067 3 0 -spread-eagle%2:42:00:: 02690577 2 0 -spread-eagle%5:00:00:extended:00 01432318 1 0 -spread-out%5:00:00:distributed:00 00541460 1 2 -spread_eagle%1:04:00:: 00557287 2 0 -spread_eagle%1:10:00:: 06883565 1 0 -spread_head%1:10:00:: 06258031 1 0 -spread_out%2:35:00:: 01360715 2 2 -spread_out%2:35:03:: 01579813 7 0 -spread_out%2:38:00:: 02060141 1 6 -spread_out%2:38:01:: 02077148 4 0 -spread_out%2:38:02:: 02028994 6 0 -spread_out%2:38:03:: 02045415 5 0 -spread_out%2:38:04:: 02082690 3 0 -spread_over%2:35:00:: 01207951 1 3 -spreadeagle%2:33:00:: 01104248 1 0 -spreader%1:06:00:: 04287986 1 0 -spreader%1:06:01:: 02903204 2 0 -spreadhead%1:10:00:: 06258031 1 0 -spreading%1:04:00:: 00367976 3 0 -spreading%1:10:00:: 06253140 2 0 -spreading%1:11:00:: 07445896 1 0 -spreading_bellflower%1:20:00:: 12039317 1 0 -spreading_dogbane%1:20:00:: 11767630 1 0 -spreading_factor%1:27:00:: 14910165 1 0 -spreading_fleabane%1:20:00:: 11966385 1 0 -spreading_pogonia%1:20:00:: 12051514 1 0 -spreadsheet%1:10:00:: 06579952 1 0 -sprechgesang%1:10:00:: 07281871 1 0 -sprechstimme%1:10:00:: 07281871 1 0 -spree%1:04:00:: 00510475 1 4 -spree%2:34:00:: 01182559 1 0 -spree_killer%1:18:00:: 10581648 1 0 -sprig%1:06:00:: 04288165 2 0 -sprig%1:20:00:: 13163991 1 0 -sprig_tail%1:05:00:: 01798168 1 0 -sprigged%5:00:00:patterned:00 01790507 1 0 -sprigger%1:18:00:: 10664656 1 0 -sprightliness%1:07:00:: 04632157 1 0 -sprightly%5:00:00:spirited:00 02280821 1 1 -sprigtail%1:05:00:: 01798168 1 0 -spring%1:04:00:: 00120202 6 1 -spring%1:06:00:: 04288272 2 4 -spring%1:07:00:: 05021151 5 1 -spring%1:15:00:: 08508361 4 1 -spring%1:17:00:: 09443453 3 3 -spring%1:28:00:: 15237044 1 25 -spring%2:29:00:: 00095271 4 1 -spring%2:32:00:: 00935827 5 0 -spring%2:38:00:: 01892104 3 2 -spring%2:38:01:: 01963942 1 15 -spring%2:42:00:: 02623906 2 5 -spring-blooming%5:00:00:vernal:00 01254607 1 0 -spring-clean%2:35:00:: 01533851 1 0 -spring-cleaning%1:04:00:: 00251636 1 0 -spring-flowering%5:00:00:vernal:00 01254607 1 0 -spring-loaded%3:01:00:: 02802092 1 0 -spring_balance%1:06:00:: 04288533 1 0 -spring_beauty%1:20:00:: 11859472 1 0 -spring_break%1:04:00:: 01063234 1 0 -spring_cankerworm%1:05:02:: 02287987 1 0 -spring_chicken%1:05:00:: 01793340 2 0 -spring_chicken%1:18:00:: 10804406 1 0 -spring_cleavers%1:20:00:: 12666159 1 0 -spring_cress%1:20:00:: 11882821 1 0 -spring_equinox%1:28:00:: 15223574 1 0 -spring_frog%1:05:01:: 01641391 2 0 -spring_frog%1:05:02:: 01641739 1 0 -spring_gun%1:06:00:: 04177041 1 0 -spring_heath%1:20:00:: 12228229 1 0 -spring_mattress%1:06:00:: 04288919 1 0 -spring_onion%1:13:00:: 07722485 1 0 -spring_peeper%1:05:00:: 01650690 1 0 -spring_roll%1:13:00:: 07866723 1 0 -spring_scale%1:06:00:: 04288533 1 0 -spring_squill%1:20:00:: 12461673 1 0 -spring_to_mind%2:31:00:: 00609352 1 0 -spring_training%1:28:00:: 15240291 1 3 -spring_up%2:42:00:: 02624263 1 8 -spring_vetch%1:20:01:: 12576555 1 0 -spring_vetch%1:20:02:: 12542466 2 0 -spring_vetchling%1:20:00:: 12542466 1 0 -spring_water%1:13:00:: 07936015 2 0 -spring_water%1:27:00:: 14847503 1 0 -springboard%1:04:00:: 00236194 2 0 -springboard%1:06:00:: 04288673 1 1 -springbok%1:05:00:: 02423589 1 0 -springbuck%1:05:00:: 02423589 1 0 -springer%1:05:00:: 02403644 2 0 -springer%1:05:01:: 02101861 3 0 -springer%1:06:00:: 04288784 1 0 -springer_spaniel%1:05:00:: 02101861 1 0 -springfield%1:15:00:: 09084483 1 2 -springfield%1:15:01:: 09097707 3 0 -springfield%1:15:02:: 09108055 2 0 -springiness%1:07:00:: 05021151 1 0 -springing_cow%1:05:00:: 02403644 1 0 -springless%5:00:00:inelastic:00 00845928 1 0 -springlike%5:00:00:elastic:00 00845025 1 0 -springtail%1:05:00:: 02163297 1 0 -springtide%1:11:00:: 07403459 2 0 -springtide%1:11:01:: 07440852 1 0 -springtime%1:28:00:: 15237044 1 4 -springy%5:00:00:active:06 00036346 2 0 -springy%5:00:00:elastic:00 00843595 1 0 -sprinkle%1:04:00:: 00278555 2 0 -sprinkle%1:19:00:: 11506167 1 0 -sprinkle%2:30:00:: 00228655 4 0 -sprinkle%2:35:00:: 01374767 2 1 -sprinkle%2:35:01:: 01376245 1 5 -sprinkle%2:43:00:: 02757828 3 0 -sprinkler%1:06:00:: 04289027 1 0 -sprinkler_system%1:06:00:: 04289195 1 0 -sprinkles%1:13:00:: 07604182 1 0 -sprinkling%1:04:00:: 01038261 3 0 -sprinkling%1:04:02:: 00278555 4 0 -sprinkling%1:19:00:: 11506167 2 0 -sprinkling%1:23:00:: 13761966 1 2 -sprint%1:04:00:: 00294452 1 0 -sprint%2:38:00:: 01928579 1 1 -sprinter%1:18:00:: 10641413 1 2 -sprit%1:06:00:: 04289449 1 0 -sprite%1:18:00:: 09540430 1 0 -sprites%1:19:00:: 11475992 1 0 -spritsail%1:06:00:: 04289576 1 0 -spritz%1:11:00:: 07446599 1 0 -spritz%2:35:00:: 01313592 2 0 -spritz%2:35:02:: 01313780 1 0 -spritzer%1:13:00:: 07914777 1 0 -sprocket%1:06:00:: 04289690 2 0 -sprocket%1:06:01:: 03064935 3 0 -sprocket%1:06:02:: 04289827 1 0 -sprocket_wheel%1:06:00:: 04289690 1 0 -sprog%1:18:00:: 10641223 2 0 -sprog%1:18:01:: 10641301 1 0 -sprout%1:13:00:: 07719437 2 0 -sprout%1:20:00:: 13164583 1 0 -sprout%2:29:01:: 00095377 2 0 -sprout%2:30:00:: 00357332 1 4 -sprouted%5:00:00:up:00 02491421 1 0 -sprouting%1:22:00:: 13487207 1 0 -spruce%1:20:00:: 11624531 2 0 -spruce%1:20:02:: 11624840 1 0 -spruce%2:29:00:: 00043278 2 0 -spruce%2:30:00:: 00293977 1 0 -spruce%5:00:00:fashionable:00 00971933 1 0 -spruce_bark_beetle%1:05:00:: 02180427 1 0 -spruce_beer%1:13:00:: 07932454 1 0 -spruce_gall_aphid%1:05:00:: 02255023 1 0 -spruce_grouse%1:05:00:: 01797307 1 0 -spruce_pine%1:20:00:: 11611087 4 0 -spruce_pine%1:20:02:: 11615026 3 0 -spruce_pine%1:20:03:: 11625804 2 0 -spruce_pine%1:20:04:: 11627512 1 0 -spruce_squirrel%1:05:00:: 02357401 1 0 -spruce_up%2:29:00:: 00043278 2 0 -spruce_up%2:30:00:: 00293977 1 0 -spruced_up%5:00:00:clothed:00 00455824 1 0 -sprucely%4:02:00:: 00006858 1 0 -spruceness%1:26:00:: 14497365 1 0 -sprue%1:26:00:: 14400979 1 1 -sprung_rhythm%1:10:00:: 07094621 1 0 -spry%5:00:00:active:01 00032733 1 0 -spud%1:06:00:: 04289964 2 0 -spud%1:13:00:: 07710616 1 0 -spud%2:30:00:: 00357332 2 0 -spud%2:35:00:: 01443490 1 0 -spue%2:29:00:: 00076400 2 0 -spue%2:29:01:: 00101956 1 0 -spume%1:17:00:: 09443641 1 1 -spume%2:30:00:: 00511855 1 0 -spumy%5:00:00:effervescent:00 02276305 1 0 -spun_sugar%1:13:00:: 07605040 1 0 -spun_yarn%1:06:00:: 04290079 1 0 -spunk%1:07:00:: 04857490 2 0 -spunk%1:27:00:: 15101586 1 0 -spunky%5:00:00:brave:00 00263994 2 0 -spunky%5:00:00:spirited:00 02279900 1 0 -spur%1:06:00:: 04290259 4 1 -spur%1:06:01:: 02891430 5 1 -spur%1:10:00:: 07252378 1 3 -spur%1:20:00:: 13089135 3 1 -spur%1:25:00:: 13912839 2 1 -spur%2:35:00:: 01241253 4 1 -spur%2:35:01:: 01241379 5 0 -spur%2:35:02:: 01241490 3 1 -spur%2:37:00:: 01818835 2 2 -spur%2:41:00:: 02554647 1 2 -spur-of-the-moment%5:00:00:unprepared:00 01845921 1 0 -spur_blight%1:26:00:: 14218805 1 0 -spur_gear%1:06:00:: 04290507 1 0 -spur_track%1:06:00:: 02891430 1 0 -spur_wheel%1:06:00:: 04290507 1 0 -spurge%1:20:00:: 12917901 1 0 -spurge_family%1:20:00:: 12916935 1 0 -spurge_laurel%1:20:00:: 12346986 1 0 -spurge_nettle%1:20:00:: 12925179 1 0 -spurious%5:00:00:counterfeit:00 01117677 3 0 -spurious%5:00:00:false:00 02462210 1 0 -spurious%5:00:00:illegitimate:00 01407909 2 0 -spurious_correlation%1:09:00:: 06036157 1 0 -spurious_wing%1:05:00:: 01897667 1 0 -spuriously%4:02:00:: 00464714 1 0 -spuriousness%1:26:00:: 13960833 1 0 -spurn%2:32:00:: 00796976 1 2 -spurned%5:00:00:unloved:00 01463735 1 0 -spurner%1:18:00:: 10641551 1 0 -spurred_gentian%1:20:00:: 12297846 1 0 -spurring%1:10:00:: 07252378 1 0 -spurt%1:11:00:: 07436100 1 0 -spurt%2:38:00:: 01884126 2 0 -spurt%2:38:01:: 02068413 1 0 -spurting%5:00:00:running:02 01240931 1 0 -sputnik%1:06:00:: 04290615 1 2 -sputter%1:10:00:: 07130183 2 0 -sputter%1:11:00:: 07394814 1 0 -sputter%2:29:00:: 00102303 5 0 -sputter%2:30:00:: 00556001 2 1 -sputter%2:32:00:: 00986897 4 0 -sputter%2:38:00:: 01921772 3 0 -sputter%2:39:00:: 02186360 1 1 -sputtering%1:11:00:: 07394814 1 1 -sputum%1:08:00:: 05415815 1 0 -sputum_smear%1:08:00:: 05266486 1 0 -spy%1:18:00:: 10641755 1 3 -spy%1:18:01:: 10642151 2 0 -spy%2:32:00:: 00785470 4 0 -spy%2:32:01:: 00785690 2 2 -spy%2:39:00:: 02154312 1 2 -spy%2:39:01:: 02163746 3 0 -spy_satellite%1:06:00:: 04290762 1 0 -spyeria%1:05:00:: 02278343 1 0 -spyglass%1:06:00:: 03333129 1 0 -spyhole%1:06:00:: 03905208 1 0 -spying%1:04:00:: 00654234 2 0 -spying%1:04:01:: 00881441 1 0 -spying%1:04:02:: 00151087 3 0 -spymaster%1:18:00:: 10642388 1 0 -spyware%1:10:00:: 06587980 1 0 -sq_ft%1:23:00:: 13613060 1 0 -sq_in%1:23:00:: 13612943 1 0 -sq_yd%1:23:00:: 13613177 1 0 -squab%1:05:00:: 01814549 3 0 -squab%1:06:00:: 04290875 2 0 -squab%1:13:00:: 07646403 1 0 -squab%5:00:00:short:03 02388070 1 0 -squabble%1:10:00:: 07184735 1 1 -squabble%2:32:00:: 00774056 1 0 -squabbler%1:18:00:: 10642499 1 0 -squabby%5:00:00:short:03 02388070 1 0 -squad%1:14:00:: 08208560 2 4 -squad%1:14:01:: 08218122 1 8 -squad%1:14:02:: 08080947 3 0 -squad_car%1:06:00:: 03141065 1 1 -squad_room%1:06:01:: 04290945 2 0 -squad_room%1:06:02:: 04291069 1 0 -squadron%1:14:00:: 08219768 2 1 -squadron%1:14:01:: 08220089 1 1 -squadron%1:14:02:: 08220228 3 0 -squalid%5:00:00:dirty:01 00421875 2 0 -squalid%5:00:00:disreputable:00 01984806 1 0 -squalidae%1:05:00:: 01493366 1 0 -squalidly%4:02:00:: 00461506 1 0 -squalidness%1:26:00:: 14499111 1 0 -squall%1:19:00:: 11514008 1 0 -squall%2:32:00:: 00913065 2 1 -squall%2:32:01:: 01047263 1 1 -squall%2:43:00:: 02770019 3 0 -squall_line%1:19:00:: 11460962 1 0 -squalling%5:00:00:unquiet:00 01924148 1 1 -squally%5:00:00:stormy:00 00305882 2 0 -squally%5:00:00:unquiet:00 01924148 1 0 -squalor%1:26:00:: 14499111 1 0 -squalus%1:05:00:: 01493687 1 0 -squalus_acanthias%1:05:00:: 01493829 1 0 -squalus_suckleyi%1:05:00:: 01494041 1 0 -squama%1:05:00:: 01903234 1 0 -squamata%1:05:00:: 01673503 1 0 -squamous_cell%1:08:00:: 05242928 1 0 -squamous_cell_carcinoma%1:26:00:: 14242788 1 0 -squamule%1:20:00:: 13155899 1 0 -squamulose%5:00:00:rough:00 02241443 1 0 -squander%2:34:00:: 01158181 2 0 -squander%2:40:01:: 02268351 1 0 -squandered%5:00:00:lost:01 01450293 1 0 -squanderer%1:18:00:: 10479561 1 0 -squandering%1:04:00:: 00743822 1 0 -squandermania%1:04:00:: 00744004 1 0 -square%1:06:00:: 04291242 8 0 -square%1:06:01:: 04291511 7 0 -square%1:15:00:: 08619620 3 2 -square%1:18:00:: 10642845 6 0 -square%1:18:01:: 10642988 5 0 -square%1:23:00:: 13731021 2 2 -square%1:25:00:: 13878634 1 23 -square%1:25:01:: 13878951 4 0 -square%2:30:00:: 00145448 1 4 -square%2:31:00:: 00640136 2 2 -square%2:33:00:: 01124828 8 0 -square%2:33:01:: 01124964 7 0 -square%2:38:00:: 01987493 4 1 -square%2:40:00:: 02253341 6 0 -square%2:42:00:: 02659541 5 0 -square%2:42:01:: 02659656 3 1 -square%3:00:00:: 02043217 1 7 -square%3:00:04:: 02318464 2 0 -square%4:02:00:: 00052026 1 2 -square%4:02:01:: 00051268 3 0 -square%4:02:02:: 00051440 2 0 -square%5:00:00:conventional:01 00607857 6 0 -square%5:00:00:direct:02 00766102 5 0 -square%5:00:00:paid:00 01709681 4 0 -square%5:00:00:wholesome:00 02558528 3 0 -square-bashing%1:04:00:: 00896688 1 0 -square-built%5:00:00:robust:00 02039763 1 0 -square-dance_music%1:10:00:: 07062451 1 0 -square-jawed%5:00:00:jawed:00 02597329 1 0 -square-rigged%5:00:00:rigged:00 01093850 1 0 -square-rigger%1:06:00:: 04291992 1 0 -square-shaped%5:00:00:angular:00 02049243 1 0 -square-shouldered%5:00:00:robust:00 02038735 1 0 -square-tailed%5:00:00:caudate:00 00320456 1 0 -square-toed%5:00:00:proper:00 01880163 1 0 -square-toed%5:00:00:toed:00 01032339 2 0 -square_and_rabbet%1:06:00:: 02713835 1 0 -square_away%2:30:00:: 00275843 1 1 -square_block%1:06:00:: 03144592 1 1 -square_bracket%1:10:00:: 06842290 1 0 -square_dance%1:04:00:: 00539951 1 0 -square_dance%2:38:00:: 01898893 1 0 -square_dancer%1:18:00:: 10642596 1 0 -square_dancing%1:04:00:: 00539951 1 0 -square_deal%1:11:00:: 07293391 1 0 -square_foot%1:23:00:: 13613060 1 0 -square_inch%1:23:00:: 13612943 1 0 -square_knot%1:06:00:: 04291759 1 0 -square_matrix%1:14:00:: 08268085 1 0 -square_meal%1:13:00:: 07573563 1 0 -square_measure%1:23:00:: 13600404 1 0 -square_meter%1:23:00:: 13613294 1 0 -square_metre%1:23:00:: 13613294 1 0 -square_mile%1:23:00:: 13613408 1 5 -square_nut%1:06:00:: 04291912 1 0 -square_off%2:32:00:: 00763399 1 0 -square_one%1:26:00:: 13937918 1 0 -square_root%1:23:00:: 13731840 1 1 -square_sail%1:06:00:: 04292080 1 0 -square_shooter%1:18:00:: 10642705 1 0 -square_toes%1:18:00:: 10642845 1 0 -square_up%2:30:00:: 00145448 1 2 -square_up%2:32:00:: 00763399 3 0 -square_up%2:38:00:: 01987648 2 0 -square_yard%1:23:00:: 13613177 1 0 -squared%5:00:00:square:00 02043729 1 3 -squared-toe%5:00:00:toed:00 01032339 1 0 -squareflipper_square_flipper%1:05:00:: 02080713 1 0 -squarely%4:02:00:: 00051017 5 0 -squarely%4:02:01:: 00051268 3 1 -squarely%4:02:02:: 00051440 4 0 -squarely%4:02:03:: 00051590 1 3 -squarely%4:02:05:: 00052026 2 1 -squareness%1:07:00:: 05072406 1 0 -squaretail%1:05:00:: 02634858 1 0 -squarish%5:00:00:square:00 02043806 1 0 -squark%1:17:00:: 09447917 1 0 -squash%1:04:00:: 00479887 3 0 -squash%1:13:00:: 07715561 2 0 -squash%1:20:00:: 12158798 1 0 -squash%2:35:00:: 01593937 1 1 -squash_ball%1:06:00:: 04292221 1 0 -squash_bug%1:05:00:: 02239774 1 0 -squash_court%1:06:00:: 04292313 1 0 -squash_pie%1:13:00:: 07626833 1 0 -squash_racket%1:06:00:: 04292414 1 0 -squash_rackets%1:04:00:: 00479887 1 0 -squash_racquet%1:06:00:: 04292414 1 0 -squash_racquets%1:04:00:: 00479887 1 0 -squash_vine%1:20:00:: 12158798 1 0 -squashed%3:44:00:: 03154143 1 1 -squashy%5:00:00:nonwoody:00 02576918 1 0 -squashy%5:00:00:soft:01 01154964 3 0 -squashy%5:00:00:wet:01 02548066 2 0 -squat%1:04:00:: 00344942 3 0 -squat%1:04:01:: 00630071 1 1 -squat%1:23:00:: 13773047 2 0 -squat%2:35:00:: 01545314 1 8 -squat%2:42:00:: 02649712 3 0 -squat%2:42:01:: 02725562 2 2 -squat%5:00:00:low:01 01207697 2 2 -squat%5:00:00:short:03 02386962 1 3 -squatina%1:05:00:: 01495340 1 0 -squatina_squatina%1:05:00:: 01495493 1 0 -squatinidae%1:05:00:: 01495192 1 0 -squatness%1:07:00:: 05137778 1 0 -squatter%1:18:01:: 10643095 2 0 -squatter%1:18:02:: 10643218 1 0 -squattiness%1:07:00:: 04998816 1 0 -squatting%1:04:00:: 00344942 2 1 -squatting%1:04:01:: 00630071 1 1 -squatty%5:00:00:short:03 02386962 1 0 -squaw%1:18:00:: 10643400 1 0 -squaw-bush%1:20:00:: 12764507 1 0 -squaw_corn%1:20:00:: 12145325 1 0 -squaw_grass%1:20:00:: 12465557 1 0 -squaw_huckleberry%1:20:00:: 12249294 1 0 -squaw_man%1:18:00:: 10643476 1 0 -squaw_root%1:20:00:: 11698562 1 0 -squawbush%1:20:00:: 12764507 1 0 -squawk%1:10:00:: 07209965 2 0 -squawk%1:11:00:: 07395446 1 0 -squawk%2:32:00:: 00910973 2 0 -squawk%2:32:01:: 01048939 1 3 -squawk_box%1:06:00:: 04292572 1 0 -squawker%1:06:00:: 04292572 2 0 -squawker%1:18:00:: 10776339 1 0 -squawky%5:00:00:cacophonous:00 00299144 1 0 -squawroot%1:20:00:: 11698562 1 0 -squeak%1:04:00:: 00061014 2 0 -squeak%1:11:00:: 07395623 1 1 -squeak%2:39:00:: 02171664 1 3 -squeak_by%2:35:00:: 01247684 2 0 -squeak_by%2:41:00:: 02588464 1 0 -squeak_through%2:35:00:: 01247684 1 0 -squeaker%1:04:00:: 00061014 2 0 -squeaker%1:06:00:: 04292733 1 0 -squeaking%5:00:00:high:03 01214606 1 0 -squeaky%5:00:00:high:03 01214606 1 1 -squeal%1:11:00:: 07395777 1 1 -squeal%2:32:00:: 00819508 2 0 -squeal%2:32:01:: 01054694 1 2 -squealer%1:05:00:: 02395406 2 0 -squealer%1:18:00:: 10206173 1 0 -squealing%5:00:00:high:03 01214606 1 0 -squeamish%5:00:00:fastidious:00 00984333 1 0 -squeamishly%4:02:00:: 00464878 1 0 -squeamishness%1:07:00:: 04897152 2 0 -squeamishness%1:26:00:: 14360320 1 0 -squeegee%1:06:00:: 04292921 1 0 -squeegee%2:35:00:: 01392790 1 0 -squeezability%1:07:00:: 04938474 1 0 -squeezable%5:00:00:soft:01 01153435 1 0 -squeeze%1:04:00:: 00357023 1 1 -squeeze%1:04:01:: 00788097 6 0 -squeeze%1:04:02:: 00417859 7 0 -squeeze%1:04:03:: 00226319 8 0 -squeeze%1:11:00:: 07351031 5 0 -squeeze%1:18:00:: 10643584 4 0 -squeeze%1:21:00:: 13327503 3 0 -squeeze%1:26:00:: 14488912 2 0 -squeeze%2:35:00:: 01447868 2 6 -squeeze%2:35:01:: 01387786 9 0 -squeeze%2:35:02:: 01456771 7 0 -squeeze%2:35:03:: 01527271 3 4 -squeeze%2:35:04:: 01424456 8 0 -squeeze%2:35:05:: 01593937 1 9 -squeeze%2:38:00:: 02094569 6 0 -squeeze%2:40:03:: 02241107 5 0 -squeeze%2:41:01:: 02504562 4 0 -squeeze_box%1:06:00:: 02672831 1 0 -squeeze_by%2:41:00:: 02588464 1 0 -squeeze_for%2:41:00:: 02506068 1 0 -squeeze_out%2:35:00:: 01349318 3 1 -squeeze_out%2:35:01:: 01375637 6 0 -squeeze_out%2:36:00:: 01675780 5 0 -squeeze_out%2:40:00:: 02239846 4 0 -squeeze_out%2:40:01:: 02239997 2 1 -squeeze_out%2:41:00:: 02404076 1 1 -squeeze_play%1:04:00:: 00564710 2 0 -squeeze_play%1:04:01:: 00788097 1 0 -squeezer%1:06:00:: 04293119 1 0 -squeezing%1:04:00:: 00357023 1 0 -squelch%1:06:00:: 04293258 2 0 -squelch%1:10:00:: 06716796 1 0 -squelch%2:30:00:: 00463234 1 1 -squelch%2:35:00:: 01593937 4 0 -squelch%2:38:00:: 01921591 3 0 -squelch%2:39:00:: 02179279 2 0 -squelch_circuit%1:06:00:: 04293258 1 0 -squelched%5:00:00:suppressed:00 00470528 1 0 -squelcher%1:06:00:: 04293258 2 0 -squelcher%1:10:00:: 06716796 1 0 -squib%1:06:00:: 04293450 1 0 -squid%1:05:00:: 01971280 2 0 -squid%1:13:00:: 07781801 1 0 -squiffy%5:00:00:intoxicated:00 00798103 1 0 -squiggle%1:10:00:: 06801033 1 0 -squiggle%1:10:01:: 06404416 2 0 -squiggly%5:00:00:crooked:01 02313676 1 0 -squill%1:20:00:: 12461466 3 0 -squill%1:20:02:: 12462582 2 0 -squill%1:20:03:: 12462805 1 0 -squilla%1:05:00:: 01990516 1 0 -squillidae%1:05:00:: 01990186 1 0 -squinch%1:06:00:: 04293744 1 0 -squinch%2:29:00:: 00008602 3 0 -squinch%2:38:00:: 02061069 2 0 -squinch%2:38:01:: 02063225 1 0 -squinched%5:00:00:closed:03 01655651 1 0 -squint%1:04:00:: 00878328 2 0 -squint%1:26:00:: 14557415 1 0 -squint%2:29:00:: 00008602 1 3 -squint%2:29:02:: 00008799 3 0 -squint%2:39:00:: 02168070 2 0 -squint%5:00:00:indirect:00 00762721 1 0 -squint-eye%1:18:00:: 10643727 1 0 -squint-eyed%3:01:00:: 02799797 1 0 -squint-eyed%5:00:00:indirect:00 00762721 2 0 -squinter%1:18:00:: 10643727 1 0 -squinting%5:00:00:closed:03 01655651 1 0 -squinty%3:01:00:: 02799877 1 0 -squinty%5:00:00:indirect:00 00762721 2 0 -squire%1:18:00:: 10643837 2 1 -squire%1:18:01:: 10643937 1 2 -squire%1:18:02:: 10644062 3 0 -squire%2:38:00:: 02026203 1 0 -squirearchy%1:14:00:: 08387685 1 0 -squirm%1:04:00:: 00349705 1 0 -squirm%2:38:00:: 01868370 1 3 -squirmer%1:18:00:: 10781236 1 0 -squirrel%1:05:00:: 02355227 1 3 -squirrel%1:27:00:: 14766189 2 0 -squirrel's-foot_fern%1:20:00:: 13188767 1 0 -squirrel-sized%5:00:00:sized:00 02224688 1 0 -squirrel_away%2:40:00:: 02305856 1 0 -squirrel_cage%1:06:00:: 04293902 1 0 -squirrel_corn%1:20:00:: 11910666 1 0 -squirrel_monkey%1:05:00:: 02494079 1 0 -squirrelfish%1:05:00:: 01450661 2 0 -squirrelfish%1:05:02:: 02592371 1 0 -squirreltail_barley%1:20:00:: 12123932 1 0 -squirreltail_grass%1:20:00:: 12123932 1 0 -squirt%1:11:00:: 07436100 2 0 -squirt%1:18:00:: 10435251 1 0 -squirt%2:35:00:: 01375637 1 1 -squirt%2:35:10:: 01313411 2 0 -squirt_gun%1:06:00:: 04561548 1 0 -squirter%1:06:00:: 04561548 1 0 -squirting%5:00:00:running:02 01240931 1 0 -squirting_cucumber%1:20:00:: 12165758 1 0 -squish%1:11:00:: 07395867 1 0 -squish%2:35:00:: 01613589 2 0 -squish%2:38:00:: 01921591 1 0 -squishy%5:00:00:soft:01 01154964 1 0 -sr%1:23:00:: 13612791 2 0 -sr%1:27:00:: 14655731 1 0 -sr.%5:00:00:senior:00 02100031 1 0 -sravana%1:28:00:: 15220385 1 0 -srbija%1:15:00:: 08816969 1 0 -sri_lanka%1:15:00:: 08719100 1 0 -sri_lanka_rupee%1:23:00:: 13705415 1 0 -sri_lankan%1:18:00:: 09750046 1 0 -sri_lankan%3:01:00:: 03118413 1 0 -sri_lankan_monetary_unit%1:23:00:: 13705300 1 0 -ss%1:14:00:: 08211924 2 0 -ss%1:14:01:: 08348400 1 0 -ssa%1:14:00:: 08134649 1 0 -sse%1:24:00:: 13833119 1 0 -sspe%1:26:00:: 14344189 1 0 -ssri%1:06:00:: 04169152 1 0 -sss%1:14:00:: 08353563 1 0 -ssw%1:24:00:: 13833623 1 0 -st.-bruno's-lily%1:20:00:: 12606688 1 0 -st._ambrose%1:18:00:: 10815648 1 0 -st._andrew%1:18:00:: 10818088 1 0 -st._andrew's_cross%1:06:00:: 04302598 1 0 -st._anselm%1:18:00:: 10818860 1 0 -st._anthony's_cross%1:06:00:: 04395760 1 0 -st._athanasius%1:18:00:: 10827155 1 0 -st._augustine%1:15:00:: 09074834 2 0 -st._augustine%1:18:00:: 10828573 1 0 -st._augustine_grass%1:20:00:: 12141167 1 0 -st._baeda%1:18:00:: 10840769 1 0 -st._barbara's_herb%1:20:00:: 11873612 1 0 -st._basil%1:18:00:: 10837918 1 0 -st._basil_the_great%1:18:00:: 10837918 1 0 -st._beda%1:18:00:: 10840769 1 0 -st._bede%1:18:00:: 10840769 1 0 -st._benedict%1:18:00:: 10843858 1 0 -st._boniface%1:18:00:: 10856486 1 0 -st._bride%1:18:00:: 10864204 1 0 -st._bridget%1:18:00:: 10864204 1 0 -st._brigid%1:18:00:: 10864204 1 0 -st._bruno%1:18:00:: 10868980 1 0 -st._christopher%1:15:00:: 08987879 2 0 -st._christopher%1:18:00:: 10897154 1 0 -st._christopher-nevis%1:15:00:: 08987423 1 0 -st._cloud%1:15:00:: 09103217 1 0 -st._crispin%1:18:00:: 10915373 1 0 -st._cyril%1:18:00:: 10919886 1 0 -st._dabeoc's_heath%1:20:00:: 12234669 1 0 -st._david%1:18:00:: 10924231 1 0 -st._denis%1:18:00:: 11313911 1 0 -st._dominic%1:18:00:: 10938363 1 0 -st._edward_the_confessor%1:18:00:: 10952143 1 0 -st._edward_the_martyr%1:18:00:: 10952629 1 0 -st._elias_mountains%1:17:00:: 09445088 1 0 -st._elias_range%1:17:00:: 09445088 1 0 -st._elmo's_fire%1:19:00:: 11440802 1 0 -st._eustatius%1:15:00:: 08749312 1 0 -st._francis%1:17:00:: 09419281 2 0 -st._francis%1:18:00:: 10978098 1 0 -st._francis_of_assisi%1:18:00:: 10978098 1 0 -st._francis_river%1:17:00:: 09419281 1 0 -st._george%1:18:00:: 10996285 1 0 -st._george's%1:15:00:: 08947180 1 0 -st._gregory_i%1:18:00:: 11013876 1 0 -st._gregory_of_nazianzen%1:18:00:: 11015080 1 0 -st._ignatius%1:18:00:: 11070994 1 0 -st._ignatius_of_loyola%1:18:00:: 11071177 1 0 -st._irenaeus%1:18:00:: 11073061 1 0 -st._james%1:18:00:: 11078982 1 0 -st._james_the_apostle%1:18:00:: 11078982 1 0 -st._jerome%1:18:00:: 11083064 1 0 -st._john%1:15:00:: 08824771 3 0 -st._john%1:17:00:: 09419536 2 0 -st._john%1:18:00:: 11085924 1 0 -st._john's%1:15:00:: 08825321 1 0 -st._john's%1:15:01:: 08710325 2 0 -st._john_chrysostom%1:18:00:: 11086774 1 0 -st._john_river%1:17:00:: 09419536 1 0 -st._john_the_apostle%1:18:00:: 11085924 1 0 -st._john_the_baptist%1:18:00:: 11087359 1 0 -st._johns%1:17:00:: 09419783 1 0 -st._johns_river%1:17:00:: 09419783 1 0 -st._joseph%1:06:00:: 02748618 2 0 -st._joseph%1:15:00:: 09107412 1 0 -st._jude%1:18:00:: 11094055 1 0 -st._kitts%1:15:00:: 08987879 1 0 -st._kitts_and_nevis%1:15:00:: 08987423 1 0 -st._lawrence%1:17:00:: 09420030 2 0 -st._lawrence%1:18:00:: 11121108 1 0 -st._lawrence_river%1:17:00:: 09420030 1 0 -st._lawrence_seaway%1:06:00:: 04129872 1 0 -st._leo_i%1:18:00:: 11127188 1 0 -st._louis%1:15:00:: 09107626 1 9 -st._louis%1:18:00:: 11140243 2 0 -st._lucia%1:15:00:: 08988609 1 0 -st._lucia%1:15:01:: 08988453 2 0 -st._luke%1:18:00:: 11144604 1 0 -st._maarten%1:15:00:: 08749650 1 0 -st._mark%1:18:00:: 11156943 1 0 -st._martin%1:15:00:: 08749650 2 0 -st._martin%1:18:00:: 11160055 1 0 -st._mary_magdalen%1:18:00:: 11162582 1 0 -st._mary_magdalene%1:18:00:: 11162582 1 0 -st._mary_of_bethlehem%1:15:00:: 08854855 1 0 -st._matthew%1:18:00:: 11164671 1 0 -st._matthew_the_apostle%1:18:00:: 11164671 1 0 -st._nicholas%1:18:00:: 11205797 1 0 -st._nick%1:18:00:: 10550673 1 0 -st._olaf%1:18:00:: 11213552 1 0 -st._olav%1:18:00:: 11213552 1 0 -st._patrick%1:18:00:: 11225469 1 0 -st._paul%1:15:00:: 09103377 1 3 -st._paul%1:18:00:: 11225661 2 0 -st._peter%1:18:00:: 11231157 1 0 -st._peter's_wreath%1:20:00:: 12659539 1 0 -st._peter_the_apostle%1:18:00:: 11231157 1 0 -st._petersburg%1:15:00:: 09008454 2 0 -st._petersburg%1:15:01:: 09075007 1 1 -st._polycarp%1:18:00:: 11241455 1 0 -st._simon%1:18:00:: 11301414 1 0 -st._thomas%1:18:00:: 10820790 2 0 -st._thomas%1:18:01:: 11338796 1 0 -st._thomas_a_becket%1:18:00:: 10840021 1 0 -st._thomas_and_principe%1:15:00:: 08992648 1 0 -st._thomas_aquinas%1:18:00:: 10820790 1 0 -st._vincent%1:15:00:: 08989324 1 0 -st._vincent_and_the_grenadines%1:15:00:: 08989031 1 0 -st._vitus%1:18:00:: 11367725 1 0 -st._vitus_dance%1:26:00:: 14095568 1 0 -st_andrews's_cross%1:20:00:: 12368847 1 0 -st_bernard%1:05:00:: 02109525 1 0 -st_john's_day%1:28:00:: 15222202 1 0 -st_john's_eve%1:28:00:: 15222369 1 0 -st_john's_night%1:28:00:: 15222369 1 0 -st_john's_wort%1:20:00:: 12367611 1 0 -st_john's_wort_family%1:20:00:: 12363988 1 0 -st_joseph%1:28:00:: 15194739 1 0 -st_martin's_day%1:28:00:: 15185837 1 0 -st_mihiel%1:04:00:: 01293167 1 0 -st_patrick's_day%1:28:00:: 15187988 1 0 -st_peter's_wort%1:20:00:: 12369665 1 0 -st_valentine's_day%1:28:00:: 15187250 1 0 -stab%1:04:00:: 01173965 2 0 -stab%1:04:01:: 00788473 3 0 -stab%1:12:00:: 07494972 1 0 -stab%2:35:00:: 01230350 2 0 -stab%2:35:01:: 01229976 3 0 -stab%2:35:02:: 01231652 1 1 -stabber%1:18:00:: 10644179 1 0 -stabbing%5:00:00:harmful:00 01162901 1 0 -stabbing%5:00:00:sharp:04 00803432 2 0 -stabile%1:06:00:: 04294041 1 0 -stabile%5:00:00:immobile:00 01525320 2 0 -stabile%5:00:00:stable:00 02291632 1 0 -stabilisation%1:04:00:: 01159025 2 0 -stabilisation%1:04:01:: 01266945 1 0 -stabilise%2:30:00:: 00271946 2 0 -stabilise%2:30:01:: 00270826 3 0 -stabilise%2:35:02:: 01219993 1 0 -stabilised%5:00:00:stable:00 02291754 1 0 -stabiliser%1:06:00:: 04294212 1 0 -stabilising%5:00:00:helpful:00 01197737 1 0 -stability%1:07:00:: 04778401 1 6 -stability%1:07:01:: 04738641 3 0 -stability%1:26:00:: 13970124 2 0 -stabilization%1:04:00:: 01159025 1 2 -stabilization%1:04:01:: 01266945 2 0 -stabilize%2:30:00:: 00271946 3 0 -stabilize%2:30:01:: 00270826 1 2 -stabilize%2:35:02:: 01219993 2 0 -stabilized%5:00:00:stable:00 02291754 1 1 -stabilizer%1:06:00:: 04294212 3 0 -stabilizer%1:06:01:: 04294426 2 0 -stabilizer%1:27:00:: 15052667 1 0 -stabilizer_bar%1:06:00:: 04294614 1 0 -stabilizing%5:00:00:helpful:00 01197737 1 1 -stable%1:06:00:: 04294879 1 3 -stable%2:41:00:: 02459915 1 1 -stable%3:00:00:: 02290998 1 6 -stable%5:00:00:balanced:00 00894551 4 0 -stable%5:00:00:sound:00 02274089 2 2 -stable%5:00:00:unchangeable:00 00348018 5 0 -stable%5:00:00:unreactive:00 01930417 3 0 -stable_companion%1:05:00:: 02375438 1 0 -stable_factor%1:27:00:: 15071503 1 0 -stable_gear%1:06:00:: 04295081 1 0 -stableboy%1:18:00:: 10644301 1 0 -stableman%1:18:00:: 10644301 1 0 -stablemate%1:05:00:: 02375438 1 0 -stableness%1:07:00:: 04778401 1 0 -stabling%1:06:00:: 04295353 1 0 -stably%4:02:00:: 00515298 2 0 -stably%4:02:01:: 00515429 1 0 -stabroek%1:15:00:: 08948704 1 0 -staccato%3:00:00:: 02293856 1 1 -staccato%4:02:00:: 00388094 1 0 -stachyose%1:27:00:: 15052852 1 0 -stachys%1:20:00:: 12868634 1 0 -stachys_palustris%1:20:00:: 12869061 1 0 -stachys_sylvatica%1:20:00:: 12868880 1 0 -stack%1:06:00:: 04247175 4 0 -stack%1:06:01:: 04027504 5 0 -stack%1:10:00:: 06494646 3 0 -stack%1:14:00:: 07963087 1 2 -stack%1:23:00:: 13774404 2 0 -stack%2:35:00:: 01503404 2 0 -stack%2:35:01:: 01503952 1 2 -stack%2:35:06:: 01464781 3 0 -stack_away%2:40:00:: 02281093 1 0 -stack_up%2:35:00:: 01504298 1 0 -stacked%3:44:00:: 03154289 1 1 -stacked%5:00:00:shapely:00 02138989 2 0 -stacked_heel%1:06:00:: 04295475 1 1 -stacker%1:18:00:: 10644469 1 0 -stacks%1:06:00:: 04295571 2 0 -stacks%1:23:00:: 13777509 1 0 -stacte%1:27:00:: 15050161 1 0 -staddle%1:06:00:: 04295777 1 0 -stadium%1:06:00:: 04295881 1 2 -stadium_jumping%1:04:00:: 00450998 1 0 -stael%1:18:00:: 11311959 1 0 -staff%1:06:00:: 04296261 2 2 -staff%1:10:00:: 06861860 6 0 -staff%1:10:01:: 07267160 5 0 -staff%1:14:00:: 08287586 3 1 -staff%1:14:01:: 08439955 1 17 -staff%1:27:00:: 15050320 4 0 -staff%2:33:00:: 01088749 1 4 -staff%2:33:01:: 01095739 2 0 -staff-tree_family%1:20:00:: 12747563 1 0 -staff_line%1:10:00:: 06862059 1 0 -staff_member%1:18:00:: 10644598 1 0 -staff_of_life%1:13:00:: 07679356 1 0 -staff_office%1:14:00:: 08118991 1 0 -staff_officer%1:18:00:: 10644839 1 0 -staff_sergeant%1:18:00:: 10645017 1 0 -staff_tree%1:20:00:: 12747831 1 0 -staff_vine%1:20:00:: 12748248 1 0 -staffa%1:15:00:: 08894133 1 0 -staffer%1:18:00:: 10644598 1 0 -staffordshire_bull_terrier%1:05:00:: 02093256 1 0 -staffordshire_bullterrier%1:05:00:: 02093256 1 0 -staffordshire_terrier%1:05:00:: 02093428 1 0 -stag%1:05:00:: 02430559 2 0 -stag%1:05:02:: 02431337 1 0 -stag%2:32:01:: 00785690 3 0 -stag%2:32:09:: 00841986 2 0 -stag%2:41:00:: 02596275 1 0 -stag's-horn_coral%1:05:00:: 01917611 1 0 -stag's_garlic%1:20:00:: 12435486 1 0 -stag_beetle%1:05:00:: 02175916 1 0 -stag_party%1:14:00:: 08256005 1 0 -stage%1:04:00:: 00306900 6 2 -stage%1:06:00:: 04296562 3 15 -stage%1:06:01:: 04297098 5 2 -stage%1:06:02:: 04296949 8 0 -stage%1:10:00:: 07006712 4 6 -stage%1:15:00:: 08646566 7 1 -stage%1:26:00:: 13939892 2 18 -stage%1:28:00:: 15290337 1 25 -stage%2:36:00:: 01711445 1 9 -stage%2:36:01:: 01648126 2 5 -stage-struck%5:00:00:affected:00 00071427 1 0 -stage_business%1:04:00:: 00550341 1 0 -stage_crew%1:14:00:: 08243695 1 0 -stage_dancing%1:04:00:: 00528397 1 0 -stage_direct%2:36:00:: 01711336 1 0 -stage_direction%1:10:00:: 06789080 1 1 -stage_director%1:18:00:: 10645223 1 0 -stage_door%1:06:00:: 04297327 1 2 -stage_effect%1:09:00:: 05918171 1 0 -stage_fright%1:12:00:: 07521563 1 0 -stage_left%1:15:00:: 08625684 1 1 -stage_manager%1:18:00:: 10645611 1 0 -stage_name%1:10:00:: 06338571 1 0 -stage_right%1:15:00:: 08625297 1 1 -stage_set%1:06:00:: 04297476 1 0 -stage_setting%1:06:00:: 03773268 1 0 -stage_technician%1:18:00:: 10645392 1 0 -stage_whisper%1:10:00:: 07130580 1 0 -stagecoach%1:06:00:: 04297098 1 0 -stagecraft%1:09:00:: 05643908 1 0 -staged%3:00:00:: 02294440 1 0 -staged%5:00:00:artificial:00 01571869 2 0 -stagehand%1:18:00:: 10645392 1 0 -stager%1:18:00:: 10645611 1 1 -stager%1:18:01:: 10749123 2 0 -stagey%5:00:00:theatrical:00 00796715 1 0 -stagflation%1:22:00:: 13560738 1 0 -stagflationary%3:01:00:: 02802220 1 0 -stagger%1:04:00:: 00289388 1 0 -stagger%2:35:00:: 01504130 3 1 -stagger%2:37:00:: 01810126 4 0 -stagger%2:38:00:: 01924882 1 10 -stagger%2:38:01:: 01925170 2 6 -stagger_bush%1:20:00:: 12240965 1 0 -stagger_head%1:10:00:: 06345566 1 0 -staggerbush%1:20:00:: 12240965 1 0 -staggered_board_of_directors%1:14:00:: 08380975 1 0 -staggered_head%1:10:00:: 06345566 1 0 -staggerer%1:18:00:: 10645854 1 0 -staggering%5:00:00:impressive:00 01283155 1 1 -staggeringly%4:02:00:: 00196540 1 2 -staggers%1:26:00:: 14275764 1 0 -staghead%1:20:00:: 12521624 1 0 -staghorn_coral%1:05:00:: 01917611 1 0 -staghorn_fern%1:20:00:: 13177529 1 0 -staghorn_moss%1:20:00:: 13223588 1 0 -staghorn_sumac%1:20:01:: 12764202 1 0 -staghound%1:05:00:: 02092173 1 0 -stagily%4:02:00:: 00465008 1 0 -staginess%1:07:00:: 04788693 1 1 -staging%1:04:00:: 00307102 3 0 -staging%1:04:01:: 00091404 4 0 -staging%1:06:00:: 04141712 2 0 -staging%1:10:00:: 07007171 1 0 -staging_area%1:15:00:: 08632258 1 0 -stagira%1:15:00:: 08789835 1 0 -stagirus%1:15:00:: 08789835 1 0 -stagnancy%1:26:00:: 14012667 2 0 -stagnancy%1:26:01:: 14013005 1 0 -stagnant%5:00:00:standing:02 01241248 1 2 -stagnant%5:00:00:undynamic:00 00810764 2 0 -stagnant_anoxia%1:26:00:: 14043708 1 0 -stagnant_hypoxia%1:26:00:: 14041763 1 0 -stagnate%2:41:00:: 02417504 4 0 -stagnate%2:42:00:: 02724835 3 0 -stagnate%2:42:01:: 02725286 1 0 -stagnate%2:42:02:: 02725067 2 0 -stagnation%1:26:00:: 14012667 1 1 -stagnation%1:26:01:: 14013005 2 0 -stagy%5:00:00:theatrical:00 00796715 1 0 -staid%5:00:00:decorous:00 00689336 1 0 -staidly%4:02:00:: 00183823 1 0 -staidness%1:07:00:: 04647826 1 0 -stain%1:04:00:: 00072261 5 0 -stain%1:07:00:: 04695176 1 5 -stain%1:10:00:: 06794666 4 0 -stain%1:26:00:: 14498096 3 1 -stain%1:27:00:: 15052970 2 2 -stain%2:30:00:: 00286605 2 2 -stain%2:30:01:: 00286008 1 19 -stain%2:30:04:: 00283415 4 0 -stain%2:35:05:: 01537409 3 0 -stainability%1:07:00:: 04944710 1 0 -stainable%3:01:00:: 02802341 1 0 -stained%3:00:00:: 00402004 1 9 -stained%5:00:00:painted:00 01713713 2 1 -stained-glass_window%1:06:00:: 04297750 1 1 -stained_glass%1:27:00:: 14882793 1 0 -stainer%1:18:00:: 10646032 1 0 -staining%1:04:00:: 00275572 1 23 -staining%1:04:01:: 00276813 2 10 -stainless%1:27:00:: 14802921 1 0 -stainless%5:00:00:unblemished:00 00247247 1 0 -stainless_steel%1:27:00:: 14802921 1 1 -stair%1:06:00:: 04314914 1 1 -stair-carpet%1:06:00:: 04297847 1 0 -stair-rod%1:06:00:: 04298053 1 0 -staircase%1:06:00:: 04298308 1 3 -stairhead%1:06:00:: 04297944 1 0 -stairs%1:06:00:: 04298171 1 15 -stairway%1:06:00:: 04298308 1 3 -stairwell%1:06:00:: 04298661 1 1 -stake%1:06:00:: 04298765 5 0 -stake%1:06:01:: 04298906 3 1 -stake%1:10:00:: 07257815 2 1 -stake%1:21:00:: 13343526 4 0 -stake%1:21:02:: 13286801 1 2 -stake%2:33:00:: 01139104 2 2 -stake%2:35:00:: 01591476 3 1 -stake%2:35:01:: 01591940 4 0 -stake%2:35:02:: 01572003 5 0 -stake%2:41:00:: 02545272 1 2 -stake_driver%1:05:00:: 02011805 1 0 -stake_race%1:11:00:: 07462547 1 0 -stakeholder%1:18:00:: 10646140 1 0 -stakeout%1:04:00:: 00880893 1 0 -stakes%1:21:00:: 13343526 1 0 -stalactite%1:17:00:: 09443753 1 0 -stalagmite%1:17:00:: 09443921 1 0 -stale%2:29:00:: 00072897 1 0 -stale%3:00:00:: 01068726 1 1 -stale%5:00:00:unoriginal:00 01689580 2 0 -stalemate%1:11:00:: 07354080 2 0 -stalemate%1:26:02:: 14015361 1 0 -stalemate%2:33:00:: 01077203 1 0 -stalemated%5:00:00:obstructed:00 01621424 1 0 -staleness%1:07:01:: 04928008 2 0 -staleness%1:09:00:: 05649785 1 0 -stalin%1:18:00:: 11312120 1 1 -stalin_peak%1:17:00:: 09251832 1 0 -stalinabad%1:15:00:: 09021313 1 0 -stalingrad%1:15:00:: 09010085 1 0 -stalinisation%1:22:00:: 13560911 1 0 -stalinise%2:30:00:: 00569087 1 0 -stalinism%1:14:00:: 08440630 1 0 -stalinist%1:18:00:: 10646325 1 0 -stalinist%3:01:00:: 02802476 1 0 -stalinization%1:22:00:: 13560911 1 0 -stalinize%2:30:00:: 00569087 1 0 -stalino%1:15:00:: 09016099 1 0 -stalk%1:04:00:: 00290015 5 0 -stalk%1:04:01:: 00320625 4 0 -stalk%1:04:02:: 00711523 3 0 -stalk%1:20:00:: 13129165 2 0 -stalk%1:27:00:: 14805899 1 0 -stalk%2:38:00:: 01924148 1 4 -stalk%2:38:01:: 02004009 2 1 -stalk%2:38:03:: 02001252 3 0 -stalked%3:00:00:: 00159735 1 1 -stalked_puffball%1:20:00:: 12970733 1 0 -stalked_puffball%1:20:02:: 12970293 2 0 -stalker%1:18:00:: 10646433 2 0 -stalker%1:18:01:: 10646528 1 0 -stalker%1:18:02:: 10486679 3 0 -stalking%1:04:01:: 00320625 2 0 -stalking%1:04:02:: 00711523 1 0 -stalking-horse%1:05:00:: 02385898 4 0 -stalking-horse%1:06:00:: 04299066 3 0 -stalking-horse%1:10:00:: 06759776 2 0 -stalking-horse%1:18:00:: 10646641 1 0 -stalkless%3:00:00:: 00159498 1 0 -stall%1:04:00:: 01075725 7 0 -stall%1:06:00:: 02873839 2 3 -stall%1:06:01:: 04299215 3 2 -stall%1:06:02:: 02968333 6 0 -stall%1:06:03:: 04299370 1 10 -stall%1:06:04:: 04299699 5 0 -stall%1:11:00:: 07318824 4 0 -stall%2:30:00:: 00460555 3 1 -stall%2:38:00:: 01862340 2 1 -stall%2:38:01:: 01862496 7 0 -stall%2:38:02:: 01862640 6 0 -stall%2:38:04:: 01862776 5 0 -stall%2:41:00:: 02460070 4 0 -stall%2:42:00:: 02642238 1 2 -stall-fed%5:00:00:nourished:00 02300786 1 0 -stall_bar%1:06:00:: 04299526 1 0 -stalling%1:04:00:: 01075725 1 0 -stallion%1:05:00:: 02377181 1 0 -stalls%1:06:00:: 04294879 1 0 -stalwart%1:18:00:: 10275395 1 0 -stalwart%5:00:00:brave:00 00264262 3 0 -stalwart%5:00:00:resolute:00 01991586 2 0 -stalwart%5:00:00:robust:00 02038994 1 0 -stalwartness%1:07:00:: 05031560 1 0 -stamboul%1:15:00:: 09041785 1 0 -stambul%1:15:00:: 09041785 1 0 -stamen%1:20:00:: 11675096 1 1 -stamina%1:07:00:: 05032918 1 0 -staminate%5:00:00:male:00 01477251 1 2 -stammel%1:06:00:: 04299828 1 0 -stammer%1:26:00:: 14402922 1 0 -stammer%2:32:00:: 00981544 1 6 -stammerer%1:18:00:: 10646780 1 0 -stamp%1:06:00:: 04159058 9 0 -stamp%1:06:02:: 04299963 8 0 -stamp%1:06:03:: 04300080 7 0 -stamp%1:10:00:: 06855207 3 1 -stamp%1:10:01:: 06796119 4 1 -stamp%1:10:02:: 06855817 6 0 -stamp%1:14:00:: 07998573 2 1 -stamp%1:21:00:: 13374008 5 0 -stamp%1:25:00:: 13913566 1 1 -stamp%2:30:00:: 00478488 6 1 -stamp%2:31:00:: 00656292 5 1 -stamp%2:35:01:: 01273016 2 3 -stamp%2:35:02:: 01273814 4 1 -stamp%2:35:03:: 01531265 9 0 -stamp%2:35:04:: 01594362 8 0 -stamp%2:36:00:: 01624568 7 0 -stamp%2:38:00:: 01925338 1 3 -stamp%2:39:00:: 02144644 3 1 -stamp_act%1:10:00:: 06564887 1 0 -stamp_album%1:06:00:: 04300281 1 0 -stamp_battery%1:06:00:: 02810782 1 0 -stamp_collecting%1:04:00:: 01016420 1 0 -stamp_collection%1:04:00:: 01016420 2 0 -stamp_collection%1:14:00:: 07958642 1 0 -stamp_collector%1:18:00:: 10422405 1 0 -stamp_dealer%1:18:00:: 10647359 1 0 -stamp_down%2:30:00:: 00462092 1 1 -stamp_duty%1:21:00:: 13315191 1 0 -stamp_mill%1:06:00:: 04300358 1 0 -stamp_out%2:30:00:: 00355038 1 2 -stamp_pad%1:06:00:: 03872885 1 0 -stamp_tax%1:21:00:: 13315191 1 0 -stampede%1:04:00:: 01123420 1 1 -stampede%1:11:00:: 07446270 2 0 -stampede%2:38:00:: 02056300 4 0 -stampede%2:38:01:: 02086805 1 2 -stampede%2:41:00:: 02594290 3 0 -stampede%2:41:01:: 02594469 2 0 -stamper%1:06:00:: 04300509 3 0 -stamper%1:18:00:: 10646942 2 0 -stamper%1:18:01:: 10647168 1 0 -stamping_ground%1:15:00:: 08581503 1 0 -stamping_machine%1:06:00:: 04300509 1 0 -stamping_mill%1:06:00:: 04300358 1 0 -stan_laurel%1:18:00:: 11119190 1 0 -stan_musial%1:18:00:: 11197944 1 0 -stan_the_man%1:18:00:: 11197944 1 0 -stance%1:07:00:: 05082507 1 1 -stance%1:09:00:: 06196284 2 0 -stanch%2:30:00:: 00354452 1 0 -stanchion%1:06:00:: 04300643 1 0 -stanchly%4:02:00:: 00466005 1 0 -stand%1:04:00:: 00960851 12 0 -stand%1:04:01:: 01057053 9 1 -stand%1:06:00:: 02797692 1 4 -stand%1:06:01:: 04300741 10 0 -stand%1:06:02:: 02786984 11 0 -stand%1:06:03:: 04038440 5 2 -stand%1:06:04:: 04301000 4 2 -stand%1:06:05:: 04299215 8 1 -stand%1:09:00:: 06210363 7 1 -stand%1:11:00:: 07366145 6 1 -stand%1:14:00:: 08438384 3 2 -stand%1:15:00:: 08653706 2 2 -stand%2:31:00:: 00668099 5 9 -stand%2:31:01:: 00670991 6 8 -stand%2:33:00:: 01115916 11 1 -stand%2:35:00:: 01546111 1 169 -stand%2:35:01:: 01546768 10 1 -stand%2:35:10:: 01428203 12 0 -stand%2:42:00:: 02702120 4 18 -stand%2:42:01:: 02702368 9 2 -stand%2:42:02:: 02703018 8 3 -stand%2:42:03:: 02734488 3 38 -stand%2:42:04:: 02611373 2 53 -stand%2:42:06:: 02707125 7 5 -stand-alone%5:00:00:complete:00 00523867 1 0 -stand-down%1:04:00:: 00057162 2 0 -stand-down%1:26:00:: 14013841 1 0 -stand-in%1:18:00:: 10648237 1 0 -stand-up%5:00:00:erect:00 01237534 1 0 -stand_back%2:35:00:: 01546633 2 1 -stand_back%2:42:00:: 02655698 1 1 -stand_by%2:42:00:: 02726385 1 4 -stand_by%2:42:01:: 02638630 3 0 -stand_by%2:42:02:: 02638444 2 2 -stand_fast%2:32:00:: 00819163 1 0 -stand_firm%2:32:00:: 00819163 2 0 -stand_firm%2:33:00:: 01116585 1 0 -stand_for%2:31:00:: 00669099 4 1 -stand_for%2:32:00:: 00931852 2 2 -stand_for%2:32:01:: 00836236 1 5 -stand_for%2:42:00:: 02699497 3 1 -stand_guard%2:41:00:: 02455159 1 2 -stand_in%2:40:00:: 02258617 1 1 -stand_oil%1:27:00:: 14967893 1 0 -stand_out%2:33:01:: 01116980 4 0 -stand_out%2:38:00:: 01932834 3 1 -stand_out%2:42:00:: 02673965 2 4 -stand_out%2:42:02:: 02674564 1 4 -stand_pat%2:32:00:: 00819163 1 0 -stand_sentinel%2:41:00:: 02455159 1 1 -stand_still%2:38:00:: 01834485 1 7 -stand_up%2:32:00:: 00895641 5 2 -stand_up%2:33:00:: 01117086 2 5 -stand_up%2:35:00:: 01546111 4 2 -stand_up%2:35:03:: 01546768 3 2 -stand_up%2:38:00:: 01983264 1 23 -stand_up%2:38:06:: 01983597 7 0 -stand_up%2:42:00:: 02618688 6 0 -stand_watch%2:41:00:: 02455159 1 1 -standard%1:06:01:: 04301140 6 0 -standard%1:06:02:: 04301242 5 0 -standard%1:09:00:: 05924920 2 11 -standard%1:10:00:: 07260623 1 11 -standard%1:21:00:: 13373214 4 0 -standard%1:23:00:: 13617952 3 0 -standard%3:00:01:: 02294777 3 2 -standard%3:00:02:: 02295998 1 12 -standard%3:00:03:: 02297664 4 0 -standard%5:00:00:common:01 00487525 2 5 -standard%5:00:00:regular:00 01960076 5 0 -standard-bearer%1:18:00:: 10647475 1 0 -standard-bearer%1:18:01:: 09938272 2 0 -standard_and_poor's%1:10:00:: 06640848 1 0 -standard_and_poor's_index%1:10:00:: 06640848 1 0 -standard_atmosphere%1:23:00:: 13711060 1 0 -standard_candle%1:23:00:: 13641534 1 0 -standard_cell%1:06:00:: 04301474 1 0 -standard_deviation%1:09:00:: 06025172 1 8 -standard_gauge%1:06:00:: 04301626 1 0 -standard_generalized_markup_language%1:10:00:: 06788007 1 0 -standard_of_life%1:26:00:: 13941469 1 0 -standard_of_living%1:26:00:: 13941469 1 2 -standard_of_measurement%1:24:00:: 13854101 1 1 -standard_operating_procedure%1:04:00:: 01024968 1 0 -standard_poodle%1:05:00:: 02113799 1 0 -standard_pressure%1:23:00:: 13711060 1 0 -standard_procedure%1:04:00:: 01024968 1 0 -standard_schnauzer%1:05:00:: 02097209 1 0 -standard_temperature%1:23:00:: 13715124 1 0 -standard_time%1:28:00:: 15116910 1 0 -standard_transmission%1:06:00:: 04301760 1 0 -standardisation%1:04:00:: 00999245 3 0 -standardisation%1:04:01:: 01158690 2 0 -standardisation%1:26:00:: 13938440 1 0 -standardise%2:30:00:: 00467717 2 0 -standardise%2:31:00:: 00682436 1 0 -standardised%5:00:00:replaceable:00 01978532 2 0 -standardised%5:00:00:standard:02 02296950 1 0 -standardiser%1:18:00:: 10647582 1 0 -standardization%1:04:00:: 00999245 3 0 -standardization%1:04:01:: 01158690 2 0 -standardization%1:26:00:: 13938440 1 0 -standardize%2:30:00:: 00467717 1 1 -standardize%2:31:00:: 00682436 2 0 -standardized%5:00:00:replaceable:00 01978532 2 0 -standardized%5:00:00:standard:02 02296950 1 2 -standardizer%1:18:00:: 10647582 1 0 -standby%1:06:00:: 04301919 1 1 -standby%1:18:00:: 10737103 2 0 -standby%5:00:00:secondary:01 01855086 1 0 -standdown%1:04:00:: 00057162 2 0 -standdown%1:26:00:: 14013841 1 0 -standee%1:06:00:: 04302034 2 0 -standee%1:18:00:: 10647745 1 0 -stander%1:18:00:: 10648033 1 0 -standing%1:04:00:: 00349080 3 0 -standing%1:10:00:: 06496116 2 0 -standing%1:26:00:: 13948136 1 3 -standing%3:00:00:: 01239862 5 0 -standing%3:00:01:: 01240235 4 0 -standing%3:00:02:: 01241065 3 0 -standing%5:00:00:erect:00 01237433 1 2 -standing%5:00:00:permanent:00 01755508 2 1 -standing%5:00:00:regular:02 01970963 6 0 -standing_army%1:14:00:: 08394423 1 0 -standing_committee%1:14:00:: 08326383 1 0 -standing_operating_procedure%1:04:00:: 01024968 1 0 -standing_order%1:10:00:: 06654977 1 0 -standing_ovation%1:10:00:: 06688751 1 1 -standing_press%1:06:00:: 04302200 1 0 -standing_rib_roast%1:13:00:: 07661950 1 0 -standing_room%1:06:00:: 04302334 1 0 -standing_stone%1:06:00:: 03745571 1 0 -standing_wave%1:11:00:: 07346772 1 0 -standish%1:18:00:: 11312362 1 0 -standoff%1:04:01:: 00961001 2 0 -standoff%1:11:00:: 07353716 1 0 -standoffish%5:00:00:unapproachable:00 00134562 1 0 -standoffishly%4:02:00:: 00465193 1 0 -standoffishness%1:07:00:: 04656996 1 0 -standpat%5:00:00:conservative:00 00574884 1 0 -standpipe%1:06:00:: 04302527 1 0 -standpoint%1:09:00:: 06210363 1 6 -standstill%1:11:00:: 07366145 2 0 -standstill%1:26:00:: 14015361 1 1 -standup_comedian%1:18:00:: 10117415 1 0 -stanford%1:06:00:: 04302740 2 0 -stanford%1:18:00:: 11312556 1 0 -stanford-binet_test%1:04:00:: 01007273 1 0 -stanford_university%1:06:00:: 04302740 1 0 -stanford_white%1:18:00:: 11383917 1 0 -stanhope%1:06:00:: 04302863 1 0 -stanhopea%1:20:00:: 12084890 1 0 -stanislavsky%1:18:00:: 11312709 1 0 -stanley%1:18:00:: 11313011 2 0 -stanley%1:18:01:: 11313357 1 0 -stanley_baldwin%1:18:00:: 10832085 1 0 -stanley_frank_musial%1:18:00:: 11197944 1 0 -stanley_kubrick%1:18:00:: 11112377 1 0 -stanley_smith_stevens%1:18:00:: 11317519 1 0 -stanley_steamer%1:06:00:: 04302988 1 0 -stanleya%1:20:00:: 11897342 1 0 -stanleya_pinnata%1:20:00:: 11897466 1 0 -stannic%3:01:00:: 02802576 1 0 -stannic_chloride%1:27:00:: 15018448 1 0 -stannic_sulfide%1:27:00:: 14701826 1 0 -stannite%1:27:00:: 15053568 1 0 -stannous%3:01:00:: 02802576 1 0 -stannous_fluoride%1:27:00:: 15018572 1 0 -stanton%1:18:00:: 11313507 1 0 -stanza%1:10:00:: 07052291 1 0 -stapedectomy%1:04:00:: 00687857 1 0 -stapelia%1:20:00:: 13238375 1 0 -stapelias_asterias%1:20:00:: 13238654 1 0 -stapes%1:08:00:: 05326465 1 0 -staph%1:05:00:: 01379389 1 0 -staphylaceae%1:20:00:: 12769430 1 0 -staphylea%1:20:00:: 12769663 1 0 -staphylinidae%1:05:00:: 02180742 1 0 -staphylococcal%3:01:00:: 02802694 1 0 -staphylococcal_enterotoxin%1:27:00:: 15050516 1 0 -staphylococcal_enterotoxin_b%1:27:00:: 15050695 1 0 -staphylococcal_infection%1:26:00:: 14184801 1 0 -staphylococci%1:05:00:: 01379389 1 0 -staphylococcus%1:05:00:: 01379389 1 0 -staple%1:06:00:: 02800793 1 1 -staple%1:06:02:: 04303095 5 0 -staple%1:06:03:: 04303258 4 0 -staple%1:27:00:: 14596700 3 0 -staple%1:27:01:: 15018688 2 0 -staple%2:35:00:: 01367069 1 0 -staple%5:00:00:essential:00 00901826 1 0 -staple_fiber%1:27:00:: 15018688 1 0 -staple_fibre%1:27:00:: 15018688 1 0 -staple_gun%1:06:00:: 04303357 1 0 -staplegun%1:06:00:: 04303357 1 0 -stapler%1:06:00:: 04303497 1 0 -stapling_machine%1:06:00:: 04303497 1 0 -star%1:09:00:: 05730930 8 0 -star%1:10:00:: 06828389 7 0 -star%1:17:00:: 09444100 1 8 -star%1:17:01:: 09444783 3 3 -star%1:18:00:: 10648696 4 1 -star%1:18:01:: 09762509 2 3 -star%1:18:02:: 10163723 6 0 -star%1:25:00:: 13881644 5 0 -star%2:30:00:: 00510869 3 0 -star%2:36:00:: 01720980 2 0 -star%2:42:00:: 02631349 1 3 -star%5:00:00:major:06 01472790 1 1 -star-duckweed%1:20:00:: 11795216 1 0 -star-glory%1:20:00:: 12827270 1 0 -star-leaf_begonia%1:20:00:: 12361754 1 0 -star-nosed_mole%1:05:00:: 01889849 1 0 -star-of-bethlehem%1:20:00:: 12459629 1 0 -star-shaped%5:00:00:angular:00 02048344 1 0 -star-spangled_banner%1:06:00:: 02701566 1 0 -star-thistle%1:20:00:: 11948044 1 0 -star_anise%1:13:00:: 07826930 3 0 -star_anise%1:20:00:: 11709205 1 0 -star_anise%1:20:01:: 11709045 2 0 -star_aniseed%1:13:00:: 07826930 1 0 -star_apple%1:20:00:: 12773651 1 0 -star_begonia%1:20:00:: 12361754 1 0 -star_chamber%1:14:00:: 08335599 1 0 -star_chart%1:10:00:: 07002459 1 0 -star_divination%1:09:00:: 05778131 1 0 -star_drill%1:06:00:: 04303852 1 0 -star_earthball%1:20:00:: 12969670 1 0 -star_fruit%1:13:00:: 07746551 1 0 -star_grass%1:20:00:: 12423211 2 0 -star_grass%1:20:01:: 12115748 3 0 -star_grass%1:20:02:: 12114770 4 0 -star_grass%1:20:03:: 12430198 1 0 -star_ipomoea%1:20:00:: 12828220 1 0 -star_jasmine%1:20:00:: 11777552 1 0 -star_magnolia%1:20:00:: 11711537 1 0 -star_of_david%1:10:00:: 06882333 1 2 -star_of_the_veldt%1:20:00:: 11961446 1 0 -star_sapphire%1:27:00:: 15053703 1 0 -star_saxifrage%1:20:00:: 12794367 1 0 -star_shell%1:10:00:: 07264384 1 0 -star_sign%1:15:00:: 08685677 1 0 -star_topology%1:09:00:: 05730930 1 0 -star_tulip%1:20:00:: 12447581 1 0 -starboard%1:06:00:: 04303672 1 1 -starboard%2:38:00:: 01932951 1 0 -starboard%5:00:00:right:00 02032850 1 0 -starch%1:27:00:: 15053867 1 0 -starch%1:27:01:: 15018889 2 0 -starch%2:30:00:: 00417856 1 0 -starch_wheat%1:20:00:: 12143215 1 0 -starches%1:13:00:: 07566863 1 0 -starchless%3:00:00:: 02299366 1 0 -starchlike%5:00:00:starchy:00 02299189 1 0 -starchy%3:00:00:: 02299048 1 0 -starchy%5:00:00:formal:01 01043924 2 0 -stardom%1:26:00:: 13948766 1 1 -stardust%1:07:00:: 05208595 1 0 -stare%1:04:00:: 00878456 1 9 -stare%2:29:00:: 00033406 2 4 -stare%2:39:00:: 02132745 1 82 -stare_down%2:39:00:: 02132989 1 0 -starer%1:18:00:: 10648909 1 0 -starets%1:18:00:: 10649047 1 0 -starfish%1:05:00:: 02317335 1 0 -starfish_flower%1:20:00:: 13238375 1 0 -starflower%1:20:00:: 12459882 1 0 -stargaze%2:36:00:: 01637633 2 0 -stargaze%2:39:00:: 02133297 1 0 -stargazer%1:05:00:: 02611898 3 0 -stargazer%1:18:00:: 09818343 2 0 -stargazer%1:18:01:: 09994119 1 0 -stargazing%1:04:00:: 00880563 1 0 -staring%5:00:00:open:08 01654769 1 0 -staring%5:00:00:unmitigated:00 01520091 2 0 -stark%4:02:00:: 00465341 1 0 -stark%5:00:00:immoderate:00 01535583 3 0 -stark%5:00:00:inhospitable:00 01242750 5 0 -stark%5:00:00:plain:01 01792387 2 0 -stark%5:00:00:unconditional:00 00556881 1 1 -stark%5:00:00:unmitigated:00 01520091 4 0 -stark_naked%5:00:00:unclothed:00 00458266 1 0 -starkers%5:00:00:unclothed:00 00459953 1 0 -starkey%1:18:00:: 11313726 1 0 -starkly%4:02:00:: 00465418 3 0 -starkly%4:02:01:: 00465519 2 0 -starkly%4:02:02:: 00465647 1 0 -starkness%1:07:00:: 04697819 2 0 -starkness%1:07:01:: 05124534 1 0 -starless%3:00:00:: 02300101 1 0 -starlet%1:17:00:: 09444942 2 0 -starlet%1:18:00:: 10649197 1 1 -starlight%1:19:00:: 11485186 1 1 -starlike%5:00:00:starry:00 02299889 1 0 -starling%1:05:00:: 01576695 1 0 -starlit%5:00:00:starry:00 02300002 1 0 -starnose_mole%1:05:00:: 01889849 1 0 -starr%1:18:00:: 11313726 1 0 -starred%5:00:00:marked:00 01480492 1 0 -starring%5:00:00:major:06 01472790 1 0 -starry%3:00:00:: 02299437 1 0 -starry-eyed%5:00:00:optimistic:00 01664310 1 0 -starry_saxifrage%1:20:00:: 12794367 1 0 -stars_and_bars%1:06:00:: 04304084 1 0 -stars_and_stripes%1:06:00:: 02701566 1 0 -starship%1:06:00:: 04304215 1 0 -start%1:04:00:: 00235435 5 1 -start%1:04:01:: 00867357 4 1 -start%1:04:02:: 00241699 3 2 -start%1:07:00:: 05157406 8 0 -start%1:10:00:: 06792188 7 0 -start%1:11:00:: 07325190 1 11 -start%1:15:00:: 08653873 6 0 -start%1:28:00:: 15265518 2 5 -start%2:30:00:: 00345761 1 159 -start%2:30:01:: 00348746 2 45 -start%2:33:00:: 01075164 11 1 -start%2:36:00:: 01628449 5 16 -start%2:36:01:: 01650610 6 11 -start%2:38:00:: 01864230 9 5 -start%2:38:01:: 01857717 8 7 -start%2:38:02:: 02014165 3 29 -start%2:38:03:: 02081946 14 0 -start%2:38:04:: 01910373 7 7 -start%2:41:00:: 02379528 10 2 -start%2:41:04:: 02600948 13 0 -start%2:42:00:: 02608347 4 17 -start%2:42:03:: 02608823 12 0 -start-off%1:11:00:: 07329568 1 0 -start_out%2:30:00:: 00345761 1 7 -start_out%2:38:00:: 02014165 2 2 -start_up%2:36:00:: 01650610 2 0 -start_up%2:38:00:: 01857717 1 2 -starter%1:04:00:: 00920727 7 0 -starter%1:06:01:: 03127024 6 0 -starter%1:06:02:: 04304375 1 1 -starter%1:13:00:: 07581346 5 0 -starter%1:18:01:: 10355449 4 0 -starter%1:18:02:: 10649308 3 0 -starter%1:18:03:: 10649438 2 0 -starter_motor%1:06:00:: 04304375 1 0 -starting%1:04:00:: 00241699 1 3 -starting%5:00:00:opening:00 01009865 2 1 -starting%5:00:00:protrusive:00 01354430 1 1 -starting_block%1:06:00:: 04304557 1 0 -starting_buffer%1:27:00:: 14786257 1 6 -starting_gate%1:06:00:: 04304680 1 0 -starting_handle%1:06:00:: 03127302 1 0 -starting_line%1:15:00:: 08653873 1 0 -starting_motor%1:06:00:: 04304375 1 0 -starting_pitcher%1:18:00:: 10649574 1 1 -starting_point%1:28:00:: 15266164 1 2 -starting_post%1:10:00:: 07258109 1 0 -starting_signal%1:10:00:: 06792188 1 0 -starting_stall%1:06:00:: 04304680 1 0 -starting_time%1:28:00:: 15265518 1 0 -startle%1:04:00:: 00867357 1 0 -startle%2:37:00:: 01821634 1 9 -startle%2:38:00:: 01910373 2 0 -startle_reaction%1:04:00:: 00865031 1 0 -startle_reflex%1:04:00:: 00865284 1 0 -startle_response%1:04:00:: 00865031 1 0 -startled%5:00:00:surprised:00 02359051 1 6 -startling%5:00:00:surprising:00 02359958 1 11 -startlingly%4:02:00:: 00465764 1 0 -startup%1:04:00:: 00239910 2 0 -startup%1:04:01:: 00242431 1 1 -starvation%1:04:00:: 01150662 2 1 -starvation%1:26:00:: 14040310 1 2 -starvation_acidosis%1:26:00:: 14020558 1 0 -starve%2:34:00:: 01188144 1 4 -starve%2:34:01:: 01188485 4 0 -starve%2:34:02:: 01187537 2 3 -starve%2:34:03:: 01187740 3 1 -starve%2:34:04:: 01187948 5 0 -starved%5:00:00:hungry:00 01269506 2 0 -starved%5:00:00:malnourished:00 02301338 1 1 -starved_aster%1:20:00:: 11937102 1 0 -starveling%1:18:00:: 10649724 1 0 -starving%1:04:00:: 01150662 1 0 -starving%5:00:00:malnourished:00 02301338 1 1 -starwort%1:20:00:: 11818271 1 0 -stash%1:21:00:: 13366912 1 0 -stash%2:40:00:: 02305856 1 0 -stash_away%2:40:00:: 02281093 1 0 -stash_house%1:06:00:: 04304812 1 0 -stasis%1:26:00:: 14013249 2 0 -stasis%1:26:01:: 14567812 1 0 -stassano_furnace%1:06:00:: 04305016 1 0 -stat_mi%1:23:00:: 13651218 1 0 -statant%5:00:00:erect:00 01237656 1 0 -state%1:03:00:: 00024720 2 39 -state%1:14:00:: 08168978 4 21 -state%1:14:01:: 08178547 3 24 -state%1:14:02:: 08137738 8 0 -state%1:15:00:: 08544813 7 0 -state%1:15:01:: 08654360 1 108 -state%1:26:01:: 13988498 6 0 -state%1:26:02:: 14479615 5 0 -state%2:32:00:: 01009240 1 73 -state%2:32:01:: 00878136 2 15 -state%2:32:02:: 01061481 3 2 -state's_attorney%1:18:00:: 10649962 1 0 -state's_evidence%1:10:00:: 06736083 1 0 -state-controlled%5:00:00:socialistic:00 00298507 1 0 -state-of-the-art%5:00:00:progressive:01 01876780 1 0 -state-sponsored_terrorism%1:04:00:: 00764891 1 0 -state-supported%5:00:00:public:00 01862161 1 1 -state_attorney%1:18:00:: 10649962 1 0 -state_bank%1:14:00:: 08418763 1 0 -state_boundary%1:15:00:: 08515457 1 0 -state_capital%1:15:00:: 08695539 1 0 -state_capitalism%1:14:00:: 08365484 1 0 -state_change%1:22:00:: 13536016 1 0 -state_department%1:14:00:: 08137738 1 4 -state_department%1:14:01:: 08122009 2 1 -state_government%1:14:00:: 08226018 1 5 -state_highway%1:06:00:: 03306610 1 0 -state_line%1:15:00:: 08515457 1 0 -state_of_affairs%1:26:00:: 13927383 1 1 -state_of_bahrain%1:15:00:: 08848094 1 0 -state_of_eritrea%1:15:00:: 08777544 1 0 -state_of_flux%1:26:00:: 14033917 1 0 -state_of_grace%1:26:00:: 14458181 1 0 -state_of_israel%1:15:00:: 08792548 1 0 -state_of_katar%1:15:00:: 08986905 1 0 -state_of_kuwait%1:15:00:: 08929243 1 0 -state_of_matter%1:26:00:: 14479615 1 1 -state_of_mind%1:09:01:: 05669934 2 0 -state_of_mind%1:26:02:: 14016114 1 0 -state_of_nature%1:26:00:: 13939353 1 0 -state_of_qatar%1:15:00:: 08986905 1 0 -state_of_the_art%1:26:00:: 13941924 1 0 -state_of_the_vatican_city%1:15:00:: 09161090 1 0 -state_of_war%1:26:00:: 13981403 1 0 -state_prison%1:06:00:: 04305471 1 1 -state_senator%1:18:00:: 10650076 1 0 -state_socialism%1:14:00:: 08365672 1 0 -state_supreme_court%1:14:00:: 08336188 1 0 -state_tax_lien%1:21:00:: 13402529 1 0 -state_treasurer%1:18:00:: 10652605 1 1 -state_trooper%1:18:00:: 10730728 1 0 -statecraft%1:07:00:: 04890865 1 0 -stated%5:00:00:explicit:00 00940870 1 0 -statehouse%1:06:00:: 04305210 1 0 -stateless%5:00:00:unsettled:01 02127693 1 0 -stateless_person%1:18:00:: 10017890 1 0 -stateliness%1:07:01:: 04911894 1 0 -stateliness%1:07:02:: 04729984 2 0 -stately%5:00:00:dignified:00 00751838 3 0 -stately%5:00:00:impressive:00 01283508 1 1 -stately%5:00:00:tall:00 02386418 2 0 -stately_home%1:06:00:: 04305323 1 0 -statement%1:10:00:: 06722453 1 58 -statement%1:10:01:: 06516595 7 0 -statement%1:10:02:: 06648724 2 10 -statement%1:10:03:: 06584891 6 0 -statement%1:10:04:: 07029819 3 1 -statement%1:10:05:: 06723452 4 1 -statement%1:10:06:: 07203126 5 0 -staten_island%1:15:00:: 09123281 1 1 -stater%1:18:00:: 10649823 2 0 -stater%1:21:00:: 13393155 1 0 -stateroom%1:06:00:: 04305572 1 0 -states'_rights%1:07:00:: 05188220 2 0 -states'_rights%1:09:00:: 06185581 1 0 -states'_rights_democratic_party%1:14:00:: 08263870 1 0 -states_general%1:14:00:: 08164261 1 0 -statesman%1:18:00:: 10650162 1 4 -statesmanlike%3:00:00:: 00753093 1 1 -statesmanly%3:00:00:: 00753093 1 0 -statesmanship%1:07:00:: 04890865 1 1 -stateswoman%1:18:00:: 10652511 1 0 -statewide%5:00:00:comprehensive:00 00528629 1 0 -static%1:10:00:: 06712625 2 0 -static%1:11:00:: 07431683 1 0 -static%3:01:00:: 02719009 2 0 -static%5:00:00:nonmoving:00 01564315 1 1 -static%5:00:00:unchangeable:00 00348018 3 0 -static_electricity%1:19:00:: 11514462 1 0 -static_line%1:06:00:: 04305641 1 0 -static_magnet%1:06:00:: 03917622 1 0 -static_tube%1:06:00:: 04305947 1 0 -statice%1:20:00:: 12099342 1 0 -statics%1:09:00:: 06113301 1 0 -statin%1:06:00:: 03676175 1 0 -statin_drug%1:06:00:: 03676175 1 0 -station%1:06:00:: 04306080 1 23 -station%1:07:00:: 05057061 5 0 -station%1:15:00:: 08624385 4 0 -station%1:15:01:: 08656590 3 0 -station%1:26:00:: 13947645 2 0 -station%2:33:00:: 01088923 1 4 -station_agent%1:18:00:: 10652837 1 0 -station_house%1:06:00:: 03977678 1 1 -station_keeper%1:18:00:: 10008254 1 3 -station_of_the_cross%1:06:00:: 04306454 1 0 -station_waggon%1:06:00:: 02814533 1 0 -station_wagon%1:06:00:: 02814533 1 3 -stationariness%1:26:00:: 14006490 1 0 -stationary%5:00:00:fixed:00 01060445 2 0 -stationary%5:00:00:nonmoving:00 01565252 1 0 -stationary_stochastic_process%1:22:00:: 13561198 1 0 -stationary_wave%1:11:00:: 07346772 1 0 -stationer%1:18:00:: 10652703 1 0 -stationery%1:10:00:: 06258852 1 2 -stationery_seller%1:18:00:: 10652703 1 0 -stationmaster%1:18:00:: 10652837 1 0 -stations%1:04:00:: 01043333 1 0 -stations_of_the_cross%1:04:00:: 01043333 1 0 -statistic%1:09:00:: 06021499 1 7 -statistical%3:01:00:: 02911627 1 5 -statistical_commission%1:14:00:: 08299107 1 0 -statistical_distribution%1:09:00:: 05729036 1 0 -statistical_mechanics%1:09:00:: 06111728 1 0 -statistical_method%1:09:00:: 06020737 1 0 -statistical_procedure%1:09:00:: 06020737 1 0 -statistical_regression%1:09:00:: 06027264 1 0 -statistical_table%1:14:00:: 08266542 1 0 -statistically%4:02:00:: 00079232 1 2 -statistician%1:18:00:: 10652954 2 0 -statistician%1:18:01:: 10653238 1 1 -statistics%1:09:00:: 06018465 1 0 -stative%3:00:00:: 00041841 1 0 -stator%1:06:00:: 04306592 1 0 -stator_coil%1:06:00:: 04306592 1 0 -statuary%1:14:00:: 07958727 1 1 -statuary%3:01:00:: 02896383 1 0 -statue%1:06:00:: 04306847 1 5 -statue_maker%1:18:00:: 10566072 1 0 -statue_of_liberty%1:06:00:: 04307106 1 0 -statuesque%5:00:00:shapely:00 02139793 2 0 -statuesque%5:00:00:tall:00 02386418 1 0 -statuette%1:06:00:: 03336459 1 1 -stature%1:07:02:: 05002352 2 0 -stature%1:26:00:: 14437976 1 8 -status%1:26:00:: 13945919 1 20 -status%1:26:01:: 13920835 2 1 -status_asthmaticus%1:26:00:: 14146128 1 0 -status_epilepticus%1:26:00:: 14090530 1 0 -status_quo%1:26:00:: 13938210 1 3 -status_seeking%1:07:00:: 04836583 1 0 -statute%1:10:00:: 06564387 1 5 -statute%5:00:00:written:02 02286790 1 0 -statute_book%1:10:00:: 06536227 1 0 -statute_law%1:10:00:: 06535222 1 0 -statute_mile%1:23:00:: 13651218 1 0 -statute_of_limitations%1:10:00:: 06533484 1 0 -statute_title%1:10:00:: 06345993 1 0 -statutorily%4:02:00:: 00465873 1 0 -statutory%3:01:00:: 02802848 1 4 -statutory%5:00:00:legal:00 01401532 2 0 -statutory_law%1:14:00:: 08456347 1 0 -statutory_offence%1:04:00:: 00774796 1 0 -statutory_offense%1:04:00:: 00774796 1 0 -statutory_rape%1:04:00:: 00846961 1 0 -staunch%2:30:00:: 00354452 1 0 -staunch%5:00:00:constant:00 00583581 1 2 -staunchly%4:02:00:: 00466005 1 0 -staunchness%1:07:00:: 04877783 1 0 -staurikosaur%1:05:00:: 01701205 1 0 -staurikosaurus%1:05:00:: 01701205 1 0 -stavanger%1:15:00:: 08765460 1 0 -stave%1:06:00:: 04307269 2 0 -stave%1:06:02:: 04119892 3 0 -stave%1:10:00:: 06861860 1 0 -stave%2:30:00:: 00310274 2 0 -stave%2:40:00:: 02362798 1 0 -stave_in%2:30:00:: 00310274 2 0 -stave_in%2:30:01:: 00335697 1 0 -stave_off%2:41:00:: 02453321 1 3 -stave_wood%1:20:00:: 12199790 1 0 -stay%1:04:00:: 01053617 1 2 -stay%1:06:00:: 04307419 5 0 -stay%1:06:01:: 04307619 4 0 -stay%1:10:00:: 06542267 3 0 -stay%1:26:00:: 14010927 2 0 -stay%2:30:00:: 00117985 1 43 -stay%2:30:01:: 00460900 6 3 -stay%2:34:00:: 01194114 11 0 -stay%2:35:00:: 01344643 10 0 -stay%2:38:00:: 01857392 2 32 -stay%2:38:01:: 02009200 5 7 -stay%2:41:00:: 02560021 9 0 -stay%2:42:01:: 02637202 3 22 -stay%2:42:02:: 02727462 4 17 -stay%2:42:03:: 02619122 8 0 -stay%2:42:04:: 02731024 7 0 -stay-at-home%1:18:00:: 10653388 1 0 -stay-at-home%5:00:00:provincial:00 00637645 1 0 -stay_at%2:42:01:: 02649600 1 3 -stay_away%2:42:00:: 02655698 1 0 -stay_fresh%2:42:00:: 02734800 1 0 -stay_in_place%2:38:00:: 01848355 1 1 -stay_of_execution%1:10:00:: 06542569 1 0 -stay_off%2:32:00:: 00811720 1 0 -stay_on%2:42:00:: 02727462 1 5 -stay_over%2:42:00:: 02652729 1 0 -stay_put%2:38:00:: 01857392 1 2 -stay_together%2:41:00:: 02487368 1 1 -stay_up%2:29:00:: 00020259 1 0 -stayer%1:05:00:: 01319001 1 0 -staying_power%1:07:00:: 05032918 1 0 -stayman%1:13:00:: 07741706 1 0 -stayman_winesap%1:13:00:: 07741888 1 0 -stays%1:06:00:: 03112869 1 0 -staysail%1:06:00:: 04307767 1 0 -std%1:10:00:: 06704582 2 0 -std%1:26:00:: 14133159 1 0 -stead%1:04:00:: 00721431 1 2 -steadfast%5:00:00:constant:00 00583581 2 0 -steadfast%5:00:00:resolute:00 01990653 1 0 -steadfastly%4:02:00:: 00050817 1 2 -steadfastness%1:07:01:: 04877783 1 0 -steadfastness%1:07:02:: 04865016 2 0 -steadied%5:00:00:steady:00 02302705 1 1 -steadily%4:02:00:: 00174491 2 0 -steadily%4:02:01:: 00050186 1 6 -steadiness%1:07:00:: 04777852 2 0 -steadiness%1:07:01:: 04770068 3 0 -steadiness%1:07:02:: 04862382 1 0 -steady%1:18:00:: 10682953 1 0 -steady%2:30:00:: 00416571 1 2 -steady%2:35:00:: 01219993 2 1 -steady%3:00:00:: 02301560 1 11 -steady%4:02:00:: 00174491 1 0 -steady%5:00:00:frequent:00 01067003 5 0 -steady%5:00:00:resolute:00 01990653 4 0 -steady%5:00:00:secure:03 02095542 3 0 -steady%5:00:00:stable:00 02291336 2 0 -steady%5:00:00:unexcitable:00 00919445 6 0 -steady-going%5:00:00:steady:00 02301969 1 0 -steady_down%2:30:00:: 00415398 1 0 -steady_state_theory%1:09:00:: 05888572 1 0 -steadying%5:00:00:helpful:00 01197899 1 0 -steak%1:13:00:: 07657903 1 2 -steak_and_kidney_pie%1:13:00:: 07877411 1 0 -steak_au_poivre%1:13:00:: 07877961 1 0 -steak_knife%1:06:00:: 04307986 1 0 -steak_sauce%1:13:00:: 07823280 1 0 -steak_tartare%1:13:00:: 07877675 1 0 -steakhouse%1:06:00:: 04307878 1 1 -steal%1:04:00:: 00725152 2 0 -steal%1:21:00:: 13253751 1 0 -steal%2:33:00:: 01111458 3 3 -steal%2:38:00:: 01888295 2 4 -steal%2:40:00:: 02321757 1 23 -steal_away%2:38:00:: 02076027 1 1 -stealer%1:18:00:: 10707804 1 0 -stealing%1:04:00:: 00780889 1 1 -stealing%1:04:01:: 01051082 2 0 -stealth%1:04:00:: 01051082 1 1 -stealth_aircraft%1:06:00:: 04308084 1 0 -stealth_bomber%1:06:00:: 04308273 1 0 -stealth_fighter%1:06:00:: 04308397 1 0 -stealthily%4:02:00:: 00192986 1 3 -stealthiness%1:07:00:: 04657631 1 0 -stealthy%5:00:00:concealed:00 02088974 1 1 -steam%1:27:00:: 15055181 1 0 -steam%2:30:00:: 00327145 6 0 -steam%2:35:00:: 01245325 5 0 -steam%2:37:00:: 01787319 4 0 -steam%2:38:01:: 01970272 3 0 -steam%2:38:02:: 01944976 1 2 -steam%2:43:00:: 02768579 2 1 -steam-heat%2:40:00:: 02333599 1 0 -steam-powered%5:00:00:powered:00 01829254 1 0 -steam_bath%1:04:00:: 00258530 2 0 -steam_bath%1:06:00:: 04308583 1 1 -steam_boiler%1:06:00:: 02863750 1 0 -steam_chest%1:06:00:: 04308915 1 0 -steam_clean%2:35:00:: 01245325 1 0 -steam_coal%1:27:00:: 14815530 1 0 -steam_engine%1:06:00:: 04309049 1 0 -steam_fitting%1:04:00:: 00270648 1 0 -steam_heat%1:06:00:: 04309682 1 0 -steam_heating%1:06:00:: 04309682 1 0 -steam_iron%1:06:00:: 04309833 1 0 -steam_line%1:06:00:: 04309925 1 0 -steam_locomotive%1:06:00:: 04310018 1 0 -steam_organ%1:06:00:: 02940706 1 0 -steam_pipe%1:06:00:: 04309925 1 0 -steam_room%1:06:00:: 04308583 1 0 -steam_shovel%1:06:00:: 04310507 1 1 -steam_turbine%1:06:00:: 04310604 1 1 -steam_whistle%1:06:00:: 04310721 1 0 -steamboat%1:06:00:: 04308807 1 1 -steamed%5:00:00:cooked:00 00618944 1 1 -steamed%5:00:00:displeased:00 01806106 2 0 -steamed_pudding%1:13:00:: 07618029 1 0 -steamer%1:05:00:: 01957335 4 0 -steamer%1:06:00:: 04309348 3 0 -steamer%1:06:01:: 04309548 2 0 -steamer%1:13:00:: 07787429 1 0 -steamer%2:38:00:: 01944976 1 0 -steamer_clam%1:05:00:: 01957335 2 0 -steamer_clam%1:13:00:: 07787429 1 0 -steamfitter%1:18:00:: 10653529 1 0 -steaminess%1:07:00:: 04704116 1 0 -steaming%4:02:00:: 00422842 1 0 -steaming%5:00:00:wet:01 02550517 1 1 -steamroll%2:30:00:: 00464006 4 0 -steamroll%2:33:00:: 01110661 3 0 -steamroll%2:41:00:: 02373578 2 0 -steamroll%2:41:01:: 02505807 1 0 -steamroller%1:06:00:: 04310157 2 0 -steamroller%1:18:00:: 10226556 1 0 -steamroller%2:30:00:: 00464006 5 0 -steamroller%2:33:00:: 01110661 4 0 -steamroller%2:35:00:: 01594514 3 0 -steamroller%2:41:00:: 02373578 2 0 -steamroller%2:41:01:: 02505807 1 0 -steamship%1:06:00:: 04309348 1 1 -steamship_company%1:06:00:: 04310347 1 0 -steamship_line%1:06:00:: 04310347 1 0 -steamy%5:00:00:sexy:00 02131668 3 0 -steamy%5:00:00:wet:01 02549691 2 0 -steamy%5:00:01:wet:01 02550517 1 0 -stearic%3:01:00:: 02853905 1 0 -stearic_acid%1:27:00:: 15056938 1 0 -stearin%1:27:00:: 15057103 1 0 -steatite%1:27:00:: 15044327 1 0 -steatocystoma%1:26:00:: 14202763 1 0 -steatopygia%1:07:00:: 05000809 1 0 -steatornis%1:05:00:: 01837363 1 0 -steatornis_caripensis%1:05:00:: 01837526 1 0 -steatornithidae%1:05:00:: 01837230 1 0 -steatorrhea%1:26:00:: 14567956 1 0 -steed%1:05:00:: 02378755 1 1 -steel%1:06:00:: 04310904 3 0 -steel%1:06:01:: 04373894 2 1 -steel%1:27:00:: 14802450 1 20 -steel%2:35:00:: 01614907 2 0 -steel%2:37:00:: 01806271 1 1 -steel-plated%5:00:00:armored:01 00143854 1 0 -steel-wool_pad%1:06:00:: 04312020 1 0 -steel_arch_bridge%1:06:00:: 04311004 1 0 -steel_band%1:14:00:: 08250750 1 0 -steel_blue%1:07:00:: 04969540 1 1 -steel_company%1:14:00:: 08003839 1 0 -steel_drum%1:06:00:: 04311174 1 0 -steel_engraving%1:04:00:: 00938992 3 0 -steel_engraving%1:06:00:: 04311397 2 0 -steel_engraving%1:06:01:: 04311485 1 0 -steel_factory%1:06:00:: 04311595 1 0 -steel_gray%1:27:00:: 14923060 1 0 -steel_grey%1:27:00:: 14923060 1 0 -steel_guitar%1:06:00:: 03499907 1 0 -steel_industry%1:14:00:: 08074582 1 0 -steel_mill%1:06:00:: 04311595 1 0 -steel_oneself_against%2:30:00:: 00273257 1 0 -steel_onself_for%2:30:00:: 00273257 1 0 -steel_plant%1:06:00:: 04311595 1 0 -steel_plate%1:06:00:: 04311799 1 0 -steel_production%1:22:00:: 13561396 1 0 -steel_trap%1:06:00:: 04311873 2 0 -steel_trap%1:09:00:: 05620754 1 1 -steel_wool%1:27:00:: 14803578 1 0 -steele%1:18:00:: 11314119 1 0 -steelmaker%1:18:00:: 10653679 1 0 -steelman%1:18:00:: 10653679 1 0 -steelworker%1:18:00:: 10653679 1 0 -steelworks%1:06:00:: 04311595 1 0 -steely%5:00:00:hard:01 01152521 2 0 -steely%5:00:00:hard:02 01155968 1 0 -steelyard%1:06:00:: 04312154 1 0 -steen%1:18:00:: 11314219 1 0 -steenbok%1:05:00:: 02426481 1 0 -steep%1:17:00:: 09445008 1 0 -steep%2:30:00:: 00327362 2 0 -steep%2:31:00:: 00601043 1 2 -steep%3:00:00:: 01144887 1 5 -steep%5:00:00:high:01 01206164 3 0 -steep%5:00:00:immoderate:00 01534282 2 0 -steep-sided%5:00:00:steep:00 01145931 1 0 -steepen%2:30:00:: 00536678 2 0 -steepen%2:30:01:: 00536807 1 0 -steeper%1:06:00:: 04312311 1 0 -steepish%5:00:00:steep:00 01145862 1 0 -steeple%1:06:00:: 04312432 1 12 -steeplechase%1:11:01:: 07462693 2 0 -steeplechase%1:11:02:: 07463029 1 0 -steeplechaser%1:05:00:: 02384741 1 0 -steeplejack%1:18:00:: 10653793 1 0 -steeply%4:02:00:: 00466131 1 1 -steepness%1:07:00:: 05069624 1 0 -steer%1:05:00:: 02403231 2 0 -steer%1:10:00:: 06651577 1 0 -steer%2:38:00:: 01931768 1 4 -steer%2:38:01:: 01935104 2 3 -steer%2:41:00:: 02439732 3 1 -steer_roping%1:04:00:: 00300333 1 0 -steerable%5:00:00:manageable:00 01475160 1 0 -steerage%1:04:00:: 00815173 2 0 -steerage%1:06:00:: 04312654 1 0 -steerageway%1:28:00:: 15284553 1 0 -steerer%1:18:00:: 09995573 2 0 -steerer%1:18:01:: 10169796 1 0 -steering%1:04:00:: 00815320 2 0 -steering%1:04:01:: 01144876 1 0 -steering%1:04:02:: 00815173 3 0 -steering_committee%1:14:00:: 08326706 1 0 -steering_gear%1:06:00:: 04312756 1 0 -steering_linkage%1:06:00:: 04312916 1 0 -steering_mechanism%1:06:00:: 04313220 1 0 -steering_system%1:06:00:: 04313220 1 0 -steering_wheel%1:06:00:: 04313503 1 1 -steersman%1:18:00:: 10169796 1 0 -stefan_wyszynski%1:18:00:: 11400837 1 0 -stefan_zweig%1:18:00:: 11408148 1 0 -steffens%1:18:00:: 11314315 1 0 -steffi_graf%1:18:00:: 11010019 1 0 -steganography%1:04:00:: 00614489 1 0 -steganopus%1:05:00:: 02038329 1 0 -steganopus_tricolor%1:05:00:: 02038466 1 0 -stegocephalia%1:05:00:: 01656340 1 0 -stegosaur%1:05:00:: 01701859 1 0 -stegosaur_stenops%1:05:00:: 01701859 1 0 -stegosaurus%1:05:00:: 01701859 1 0 -steichen%1:18:00:: 11314514 1 0 -stein%1:06:00:: 02824058 1 1 -stein%1:18:00:: 11314666 2 0 -steinbeck%1:18:00:: 11314792 1 0 -steinberg%1:18:00:: 11314969 1 0 -steinbok%1:05:00:: 02426481 1 0 -steinem%1:18:00:: 11315140 1 0 -steiner%1:18:00:: 11315249 1 0 -steinert's_disease%1:26:00:: 14163182 1 0 -steinman%1:18:00:: 11315379 1 0 -steinmetz%1:18:00:: 11315580 1 0 -steinway%1:18:00:: 11315760 1 0 -stela%1:06:00:: 04313628 1 0 -stele%1:06:00:: 04313628 2 0 -stele%1:20:00:: 13097187 1 0 -stelis%1:20:00:: 12085267 1 0 -stella%1:18:00:: 11316003 1 0 -stellar%3:01:00:: 02802976 2 0 -stellar%5:00:00:major:06 01472790 1 1 -stellar's_sea_eagle%1:05:00:: 01615303 1 0 -stellar_parallax%1:19:00:: 11528841 1 0 -stellaria%1:20:00:: 11817774 1 0 -stellaria_holostea%1:20:00:: 11818271 1 0 -stellaria_media%1:20:00:: 11818069 1 0 -stellate%5:00:00:symmetrical:00 02373055 1 0 -stellate_venule%1:08:00:: 05381036 1 0 -steller%1:18:00:: 11316141 1 0 -steller's_sea_cow%1:05:00:: 02074726 1 0 -steller's_sea_lion%1:05:00:: 02079005 1 0 -steller_sea_lion%1:05:00:: 02079005 1 0 -stellite%1:27:00:: 15057212 1 0 -stem%1:04:00:: 00441501 6 0 -stem%1:06:00:: 02880008 5 0 -stem%1:06:01:: 04313771 4 0 -stem%1:06:02:: 04184095 3 1 -stem%1:10:01:: 06300193 1 23 -stem%1:20:00:: 13129165 2 10 -stem%2:30:00:: 00354452 3 0 -stem%2:30:01:: 00176137 4 0 -stem%2:42:00:: 02627753 1 19 -stem%2:42:03:: 02713065 2 0 -stem-cell_research%1:04:00:: 00639267 1 0 -stem-winder%1:06:00:: 04314107 1 0 -stem_blight%1:26:00:: 14218887 1 0 -stem_canker%1:26:00:: 14281549 1 0 -stem_cell%1:08:00:: 05607863 1 0 -stem_ginger%1:20:00:: 12356023 1 0 -stem_lettuce%1:20:00:: 11987349 1 0 -stem_turn%1:04:00:: 00441501 1 0 -stem_vowel%1:10:00:: 07114284 1 0 -stemless%3:00:00:: 02306080 1 0 -stemless%3:00:04:: 00322321 2 0 -stemless_carline_thistle%1:20:00:: 11945514 1 0 -stemless_daisy%1:20:00:: 12026476 1 0 -stemless_golden_weed%1:20:00:: 12019375 1 0 -stemless_hymenoxys%1:20:00:: 12025220 1 0 -stemma%1:08:00:: 05312306 3 0 -stemma%1:14:00:: 08101937 2 0 -stemma%1:25:00:: 13912540 1 0 -stemmatic%3:01:00:: 02803299 1 0 -stemmatics%1:09:00:: 06171650 1 0 -stemmatology%1:09:00:: 06171650 1 0 -stemmed%3:00:00:: 02305906 1 1 -stemmed%3:00:04:: 00321094 2 0 -stemmed%5:00:02:stemless:00 02306192 3 0 -stemmer%1:06:00:: 04313867 5 0 -stemmer%1:06:01:: 04313986 4 0 -stemmer%1:09:00:: 05847753 3 0 -stemmer%1:18:00:: 10653903 2 0 -stemmer%1:18:01:: 10664656 1 0 -stemming_algorithm%1:09:00:: 05847753 1 0 -sten_gun%1:06:00:: 04314522 1 0 -stench%1:09:00:: 05714894 1 0 -stench_bomb%1:06:00:: 04320598 1 0 -stencil%1:06:00:: 04314216 1 0 -stencil%2:36:00:: 01749660 1 0 -stendhal%1:18:00:: 11316249 1 0 -stengel%1:18:00:: 11316429 1 0 -stenocarpus%1:20:00:: 12222715 1 0 -stenocarpus_salignus%1:20:00:: 12223160 1 0 -stenocarpus_sinuatus%1:20:00:: 12222900 1 0 -stenochlaena%1:20:00:: 13185998 1 0 -stenograph%1:06:00:: 04314632 2 0 -stenograph%1:10:00:: 06841287 1 0 -stenograph%2:36:00:: 01691506 1 0 -stenographer%1:18:00:: 10654015 1 0 -stenographic%3:01:00:: 02803389 1 0 -stenographical%3:01:00:: 02803389 1 0 -stenography%1:04:00:: 00615462 2 0 -stenography%1:10:00:: 06350127 1 1 -stenopelmatidae%1:05:00:: 02228874 1 0 -stenopelmatus%1:05:00:: 02229023 1 0 -stenopelmatus_fuscus%1:05:00:: 02229156 1 0 -stenopterygius%1:05:00:: 01725086 1 0 -stenopterygius_quadrisicissus%1:05:00:: 01725086 1 0 -stenosed%5:00:00:constricted:00 01449007 1 0 -stenosis%1:26:00:: 14107374 1 0 -stenotaphrum%1:20:00:: 12141037 1 0 -stenotaphrum_secundatum%1:20:00:: 12141167 1 0 -stenotic%5:00:00:constricted:00 01449007 1 0 -stenotomus%1:05:00:: 02593353 1 0 -stenotomus_aculeatus%1:05:00:: 02593679 1 0 -stenotomus_chrysops%1:05:00:: 02593453 1 0 -stenotus%1:20:00:: 12019190 1 0 -stenotus_acaulis%1:20:00:: 12019375 1 0 -stent%1:06:00:: 04314735 1 0 -stentor%1:05:00:: 01396617 3 0 -stentor%1:18:00:: 10654211 1 0 -stentor%1:18:01:: 09491784 2 0 -stentorian%5:00:00:full:01 01456977 1 1 -step%1:04:00:: 00285557 3 7 -step%1:04:02:: 00174412 1 36 -step%1:04:03:: 00533922 11 0 -step%1:06:00:: 04314914 4 2 -step%1:06:01:: 04315185 10 0 -step%1:10:00:: 06859056 8 0 -step%1:10:02:: 06645039 9 0 -step%1:11:00:: 07383823 7 0 -step%1:23:00:: 13757249 2 13 -step%1:23:01:: 13762579 6 0 -step%1:26:00:: 14429608 5 1 -step%2:30:00:: 00490722 9 0 -step%2:30:01:: 00124659 10 0 -step%2:35:00:: 01256487 8 0 -step%2:38:00:: 01928838 1 23 -step%2:38:01:: 02091410 2 7 -step%2:38:03:: 02091689 7 0 -step%2:38:04:: 02091885 6 0 -step%2:40:00:: 02330247 5 0 -step%2:41:00:: 02516594 4 0 -step%2:41:01:: 02563616 3 0 -step-by-step%5:00:00:gradual:01 01143006 1 1 -step-down%1:04:00:: 00351638 1 0 -step-down_transformer%1:06:00:: 04315342 1 0 -step-in%1:06:00:: 03885028 1 0 -step-up%1:04:00:: 00363260 1 0 -step-up_transformer%1:06:00:: 04315828 1 0 -step_by_step%4:02:00:: 00107987 1 3 -step_by_step%4:02:01:: 00216278 2 0 -step_dancing%1:04:00:: 00527695 1 0 -step_down%2:30:04:: 00290740 2 0 -step_down%2:41:00:: 02382367 1 1 -step_forward%2:38:00:: 02089174 1 1 -step_in%2:41:00:: 02538765 1 2 -step_in%2:41:09:: 02394662 2 0 -step_ladder%1:06:00:: 04315599 1 0 -step_on%2:38:00:: 02092039 1 3 -step_on_it%2:38:00:: 02058994 1 0 -step_out%2:38:00:: 02016401 1 6 -step_rocket%1:06:00:: 03799375 1 0 -step_stool%1:06:00:: 04315713 1 0 -step_to_the_fore%2:38:00:: 02089174 1 1 -step_up%2:30:00:: 00290302 1 3 -step_up%2:30:01:: 00439849 2 2 -step_up%2:38:00:: 02089174 3 0 -stepbrother%1:18:00:: 10654321 1 0 -stepchild%1:18:00:: 10654461 1 1 -stepdaughter%1:18:00:: 10654596 1 0 -stepfather%1:18:00:: 10654701 1 0 -stephane_grappelli%1:18:00:: 11012042 1 0 -stephane_mallarme%1:18:00:: 11151798 1 0 -stephanie_graf%1:18:00:: 11010019 1 0 -stephanion%1:08:00:: 05235461 1 0 -stephanomeria%1:20:00:: 11897760 1 0 -stephanomeria_malheurensis%1:20:00:: 11897900 1 0 -stephanotis%1:20:00:: 13238988 1 0 -stephanotis_floribunda%1:20:00:: 13239177 1 0 -stephanus_johannes_paulus_kruger%1:18:00:: 11111577 1 0 -stephead%1:10:00:: 06345566 1 0 -stephen%1:18:00:: 11316567 1 0 -stephen_a._douglas%1:18:00:: 10941206 1 0 -stephen_arnold_douglas%1:18:00:: 10941206 1 0 -stephen_butler_leacock%1:18:00:: 11121451 1 0 -stephen_collins_foster%1:18:00:: 10975796 1 0 -stephen_crane%1:18:00:: 10914447 1 0 -stephen_decatur%1:18:00:: 10926773 1 0 -stephen_foster%1:18:00:: 10975796 1 0 -stephen_girard%1:18:00:: 11001053 1 0 -stephen_grover_cleveland%1:18:00:: 10902051 1 0 -stephen_hawking%1:18:00:: 11034874 1 0 -stephen_jay_gould%1:18:00:: 11009495 1 0 -stephen_leacock%1:18:00:: 11121451 1 0 -stephen_michael_reich%1:18:00:: 11257031 1 0 -stephen_samuel_wise%1:18:00:: 11393315 1 0 -stephen_sondheim%1:18:00:: 11308396 1 0 -stephen_spender%1:18:00:: 11310523 1 0 -stephen_vincent_benet%1:18:00:: 10844667 1 0 -stephen_william_hawking%1:18:00:: 11034874 1 0 -stephenson%1:18:00:: 11316669 1 0 -stepladder%1:06:00:: 04315599 1 0 -stepmother%1:18:00:: 10654827 1 4 -stepparent%1:18:00:: 10654932 1 0 -steppe%1:17:00:: 09445289 1 1 -stepped_line%1:10:00:: 06345566 1 0 -stepper%1:05:00:: 02388588 3 0 -stepper%1:06:00:: 04315444 2 0 -stepper%1:18:00:: 10184403 1 0 -stepping_down%1:10:00:: 07254456 1 0 -stepping_down%1:10:01:: 06511762 2 0 -stepping_motor%1:06:00:: 04315444 1 0 -stepping_stone%1:04:00:: 00174260 2 0 -stepping_stone%1:17:00:: 09445435 1 1 -steprelationship%1:24:00:: 13813483 1 1 -steps%1:06:00:: 04298171 1 27 -steps%1:17:00:: 09445566 2 2 -stepsister%1:18:00:: 10603242 1 0 -stepson%1:18:00:: 10655075 1 0 -stepwise%4:02:00:: 00216278 1 0 -stepwise%5:00:00:gradual:01 01143006 1 2 -steradian%1:23:00:: 13612791 1 0 -stercobilinogen%1:27:00:: 14756754 1 0 -stercolith%1:17:00:: 09256360 1 0 -stercorariidae%1:05:00:: 02043999 1 0 -stercorarius%1:05:00:: 02044358 1 0 -stercorarius_parasiticus%1:05:00:: 02044517 1 0 -sterculia%1:20:00:: 12195391 1 0 -sterculia_acerifolia%1:20:00:: 12196336 1 0 -sterculia_apetala%1:20:00:: 12195533 1 0 -sterculia_family%1:20:00:: 12194776 1 0 -sterculia_foetida%1:20:00:: 12195734 1 0 -sterculia_gum%1:27:00:: 14901793 1 0 -sterculia_rupestris%1:20:00:: 12196954 1 0 -sterculiaceae%1:20:00:: 12194776 1 0 -stereo%1:06:00:: 04315948 1 5 -stereo%1:06:01:: 04316275 2 0 -stereo%5:00:00:binaural:00 00240655 1 1 -stereo_system%1:06:00:: 04315948 1 0 -stereophonic%5:00:00:binaural:00 00240655 1 1 -stereophonic_system%1:06:00:: 04315948 1 0 -stereophony%1:06:00:: 04315948 1 0 -stereoscope%1:06:00:: 04316498 1 0 -stereoscopic%3:01:00:: 03120176 2 0 -stereoscopic%3:01:01:: 03120323 1 0 -stereoscopic_photograph%1:06:00:: 04316275 1 0 -stereoscopic_picture%1:06:00:: 04316275 1 0 -stereoscopic_vision%1:09:00:: 05657515 1 0 -stereoscopy%1:09:00:: 05657515 1 0 -stereospondyli%1:05:00:: 01656078 1 0 -stereotype%1:09:00:: 05927586 1 6 -stereotype%2:31:00:: 00656292 1 0 -stereotyped%5:00:00:conventional:01 00607977 1 5 -stereotypic%5:00:00:conventional:01 00607977 1 0 -stereotypical%5:00:00:conventional:01 00607977 1 0 -stereotypically%4:02:00:: 00466246 1 0 -sterile%3:00:00:: 01002377 1 0 -sterile%5:00:00:antiseptic:00 02115759 2 0 -sterile%5:00:02:uncreative:00 00644560 3 0 -sterileness%1:26:00:: 14495230 1 0 -sterilisation%1:04:00:: 00692130 1 0 -sterilisation%1:04:01:: 00253919 2 0 -sterilise%2:29:00:: 00061595 2 0 -sterilise%2:29:01:: 00062582 1 0 -sterilised%5:00:00:sterile:00 01002827 1 0 -steriliser%1:06:00:: 02758960 1 0 -sterility%1:26:00:: 14045507 2 0 -sterility%1:26:01:: 14495230 1 0 -sterilization%1:04:00:: 00692130 1 0 -sterilization%1:04:01:: 00253919 2 0 -sterilize%2:29:00:: 00061595 2 0 -sterilize%2:29:01:: 00062582 1 2 -sterilized%5:00:00:sterile:00 01002827 1 0 -sterilizer%1:06:00:: 02758960 1 0 -sterling%1:21:00:: 13385080 1 0 -sterling%5:00:00:superior:02 02343517 1 1 -sterling_area%1:14:00:: 08303097 1 0 -sterling_bloc%1:14:00:: 08303097 1 0 -sterling_silver%1:27:00:: 15057433 1 0 -stern%1:06:00:: 04316646 1 2 -stern%1:08:00:: 05559256 3 0 -stern%1:18:00:: 11316828 2 0 -stern%5:00:00:demanding:01 00711308 3 2 -stern%5:00:00:implacable:00 01785341 2 2 -stern%5:00:00:nonindulgent:00 01300187 1 5 -stern%5:00:00:plain:01 01792387 4 0 -stern_chaser%1:06:00:: 04316815 1 0 -sterna%1:05:00:: 02043207 1 0 -sterna_hirundo%1:05:00:: 02043333 1 0 -sternal%3:01:00:: 03007245 1 1 -sterne%1:18:00:: 11316970 1 0 -sterninae%1:05:00:: 02042923 1 0 -sternly%4:02:00:: 00241093 1 1 -sternness%1:07:00:: 04639371 2 0 -sternness%1:07:01:: 04710390 1 0 -sternocleido_mastoideus%1:08:00:: 05590366 1 1 -sternocleidomastoid%1:08:00:: 05590366 1 0 -sternocleidomastoid_muscle%1:08:00:: 05590366 1 0 -sternocleidomastoid_vein%1:08:00:: 05381148 1 0 -sternotherus%1:05:00:: 01667302 1 0 -sternpost%1:06:00:: 04316924 1 0 -sternum%1:08:00:: 05281189 1 1 -sternutation%1:26:00:: 14314850 1 0 -sternutative%5:00:00:causative:00 00325069 1 0 -sternutator%1:27:00:: 15057558 1 0 -sternutatory%1:27:00:: 15057558 1 0 -sternutatory%3:01:00:: 03007929 1 0 -sternutatory%5:00:00:causative:00 00325069 2 0 -sternwheeler%1:06:00:: 04317063 1 0 -steroid%1:27:00:: 15057744 1 4 -steroid%1:27:02:: 14745635 2 0 -steroid_alcohol%1:27:00:: 15058310 1 0 -steroid_hormone%1:27:00:: 14745635 1 0 -steroidal%3:01:00:: 02803579 1 0 -sterol%1:27:00:: 15058310 1 0 -sterope%1:17:00:: 09445780 2 0 -sterope%1:18:00:: 09549983 1 0 -stertor%1:04:00:: 00835976 1 0 -stertorous%5:00:00:noisy:00 01921752 1 0 -stertorously%4:02:00:: 00466333 1 0 -stet%2:32:00:: 01070968 2 0 -stet%2:41:00:: 02601680 1 0 -stethoscope%1:06:00:: 04317175 1 2 -stetson%1:06:00:: 03325941 1 1 -steuben%1:18:00:: 11317086 1 0 -steve_martin%1:18:00:: 11159920 1 0 -steve_reich%1:18:00:: 11257031 1 0 -stevedore%1:18:00:: 10655169 1 0 -steven_spielberg%1:18:00:: 11311173 1 0 -steven_weinberg%1:18:00:: 11380035 1 0 -stevens%1:18:00:: 11317309 3 0 -stevens%1:18:01:: 11317416 2 0 -stevens%1:18:02:: 11317519 1 0 -stevens'_law%1:09:00:: 05996110 1 0 -stevens'_power_law%1:09:00:: 05996110 1 0 -stevenson%1:18:00:: 11317749 2 0 -stevenson%1:18:01:: 11317897 1 0 -stevia%1:20:01:: 12019827 1 0 -stevia%1:20:02:: 12004547 2 0 -stew%1:13:00:: 07588947 2 0 -stew%1:26:00:: 14403560 1 0 -stew%2:30:00:: 00323856 3 0 -stew%2:37:00:: 01774005 2 0 -stew%2:37:01:: 01805384 1 0 -stew_meat%1:13:00:: 07592558 1 0 -steward%1:18:00:: 10655442 1 1 -steward%1:18:01:: 10592811 4 0 -steward%1:18:02:: 09984298 5 0 -steward%1:18:03:: 10655594 3 0 -steward%1:18:04:: 10655730 2 0 -stewardess%1:18:00:: 10655875 1 0 -stewardship%1:04:00:: 00604523 1 0 -stewart%1:18:00:: 11318039 2 0 -stewart%1:18:01:: 11318171 1 0 -stewed%5:00:00:cooked:00 00616822 1 0 -stewing%1:04:00:: 00247792 2 0 -stewing%1:12:00:: 07514189 1 1 -stewing_pan%1:06:00:: 04317325 1 0 -stewpan%1:06:00:: 04317325 1 0 -sth%1:08:00:: 05412649 1 0 -sthene%1:23:00:: 13647888 1 0 -stheno%1:18:00:: 09498072 1 0 -stibnite%1:27:00:: 15060449 1 0 -stichaeidae%1:05:00:: 02615494 1 0 -sticherus%1:20:00:: 13171041 1 0 -sticherus_flabellatus%1:20:00:: 13171210 1 0 -stick%1:04:00:: 01162928 9 0 -stick%1:06:00:: 04317420 1 7 -stick%1:06:01:: 04317833 7 0 -stick%1:06:02:: 03600806 8 0 -stick%1:06:03:: 04317976 3 5 -stick%1:06:04:: 04318131 6 0 -stick%1:08:00:: 05561707 5 0 -stick%1:13:00:: 07848645 4 0 -stick%1:20:00:: 13165646 2 6 -stick%2:31:00:: 00622384 16 0 -stick%2:32:00:: 00748084 15 0 -stick%2:35:00:: 01356750 3 2 -stick%2:35:01:: 01220885 14 0 -stick%2:35:02:: 01528069 1 5 -stick%2:35:03:: 01441793 13 0 -stick%2:35:04:: 01441993 12 0 -stick%2:35:08:: 01614581 9 0 -stick%2:35:09:: 01614426 10 0 -stick%2:35:10:: 01614235 11 0 -stick%2:36:03:: 01667969 8 0 -stick%2:38:00:: 01857392 2 2 -stick%2:42:00:: 02638630 7 0 -stick%2:42:04:: 02647798 5 0 -stick%2:42:05:: 02638845 6 0 -stick%2:42:07:: 02754032 4 0 -stick-in-the-mud%1:18:00:: 10442232 1 0 -stick-in-the-mud%5:00:00:unfashionable:00 00974697 1 0 -stick-on%5:00:00:adhesive:00 00054667 1 0 -stick_about%2:42:00:: 02638444 1 0 -stick_around%2:38:00:: 01857392 2 0 -stick_around%2:42:00:: 02638444 1 0 -stick_by%2:42:00:: 02638630 1 0 -stick_cinnamon%1:13:00:: 07814390 1 0 -stick_figure%1:06:00:: 04318384 1 0 -stick_horse%1:06:00:: 04318551 1 0 -stick_in%2:30:00:: 00187526 2 1 -stick_in%2:32:00:: 01025602 1 1 -stick_insect%1:05:00:: 02231487 1 0 -stick_lac%1:27:00:: 14701949 1 0 -stick_on%2:35:00:: 01356370 2 0 -stick_on%2:35:01:: 01362430 1 0 -stick_out%2:31:00:: 00668099 3 0 -stick_out%2:42:01:: 02713372 1 1 -stick_out%2:42:02:: 02674564 2 0 -stick_shift%1:06:00:: 04301760 1 0 -stick_to%2:30:00:: 00351406 2 3 -stick_to%2:35:03:: 01356750 1 4 -stick_together%2:41:00:: 02487368 1 1 -stick_up%2:32:00:: 00895641 2 0 -stick_up%2:40:00:: 02277448 1 0 -stick_with%2:30:00:: 00351406 1 0 -stickball%1:04:00:: 00476235 1 0 -stickball_game%1:04:00:: 00476235 1 0 -sticker%1:06:00:: 03158885 4 0 -sticker%1:10:00:: 07272545 2 0 -sticker%1:10:01:: 06785367 3 0 -sticker%1:20:00:: 13089631 1 0 -stickily%4:02:00:: 00466457 1 0 -stickiness%1:07:00:: 04935239 1 0 -sticking%5:00:00:protrusive:00 01353982 1 2 -sticking_out%5:00:00:protrusive:00 01353982 1 0 -sticking_plaster%1:06:00:: 03957420 1 0 -sticking_point%1:09:00:: 05820325 1 0 -stickle%2:32:00:: 00773786 1 0 -stickleback%1:05:00:: 01454856 1 0 -stickler%1:18:00:: 10655986 1 0 -stickpin%1:06:00:: 04318690 1 1 -sticks_and_stone%1:27:00:: 15060569 1 0 -sticktight%1:05:00:: 02187900 2 0 -sticktight%1:20:00:: 11940006 1 0 -sticktight_flea%1:05:00:: 02187900 1 0 -stickup%1:04:00:: 00781912 1 0 -stickup_man%1:18:00:: 10180923 1 0 -stickweed%1:20:00:: 12820292 1 0 -sticky%5:00:00:adhesive:00 00053691 1 4 -sticky%5:00:00:difficult:00 00746047 4 0 -sticky%5:00:01:adhesive:00 00054804 5 0 -sticky%5:00:01:wet:01 02549691 3 0 -sticky%5:00:02:wet:01 02550704 2 2 -sticky_aster%1:20:00:: 11993444 1 0 -sticky_bun%1:13:00:: 07693223 1 0 -sticky_end%1:27:00:: 14831665 1 0 -sticky_geranium%1:20:00:: 12686877 1 0 -stictomys%1:05:00:: 02366453 1 0 -stictopelia%1:05:00:: 01813811 1 0 -stictopelia_cuneata%1:05:00:: 01813948 1 0 -stieglitz%1:18:00:: 11318348 1 0 -stiff%1:08:00:: 05218119 2 0 -stiff%1:18:00:: 10656120 1 2 -stiff%3:00:00:: 01824244 4 0 -stiff%4:02:00:: 00186142 2 0 -stiff%4:02:01:: 00466652 1 0 -stiff%5:00:00:formal:01 01043924 3 1 -stiff%5:00:00:immobile:00 01525659 1 2 -stiff%5:00:00:intoxicated:00 00798103 7 0 -stiff%5:00:00:resolute:00 01990653 5 0 -stiff%5:00:00:strong:00 02323726 2 1 -stiff%5:00:01:inflexible:01 01023706 6 0 -stiff-backed%5:00:00:backed:00 00200854 1 1 -stiff-branched%5:00:00:branchy:00 00614436 1 0 -stiff-haired%5:00:00:hairy:00 00216003 1 0 -stiff-necked%5:00:00:stubborn:00 02328445 1 0 -stiff-tailed%5:00:00:caudate:00 00320536 1 0 -stiff_aster%1:20:00:: 11934041 1 0 -stiff_gentian%1:20:00:: 12295796 1 0 -stiff_upper_lip%1:07:00:: 04883436 1 0 -stiffen%2:30:00:: 00418563 1 11 -stiffen%2:30:01:: 00417596 2 2 -stiffen%2:30:02:: 00418765 3 0 -stiffener%1:27:00:: 15060825 1 0 -stiffening%1:04:00:: 01025411 1 1 -stiffening%1:22:00:: 13561521 2 0 -stiffly%4:02:00:: 00186142 1 5 -stiffly%4:02:01:: 00194578 2 2 -stiffness%1:07:00:: 05023591 1 1 -stiffness%1:07:01:: 05004895 2 1 -stiffness%1:07:02:: 04815624 4 0 -stiffness%1:07:03:: 04639732 5 0 -stiffness%1:07:04:: 04862888 3 0 -stifle%1:05:00:: 02464065 1 0 -stifle%2:30:00:: 00390842 2 1 -stifle%2:30:03:: 00359511 4 0 -stifle%2:35:00:: 01568630 1 2 -stifle%2:35:03:: 01476180 3 0 -stifled%5:00:00:inhibited:00 01316808 1 0 -stifler%1:18:00:: 10656223 1 0 -stifling%1:04:00:: 01079604 1 0 -stifling%5:00:00:hot:01 01250121 1 0 -stigma%1:07:00:: 04696085 4 0 -stigma%1:08:00:: 05250550 3 0 -stigma%1:10:00:: 06794666 2 0 -stigma%1:20:00:: 11677603 1 0 -stigmata%1:26:00:: 14286435 1 0 -stigmatic%1:18:00:: 10656488 1 0 -stigmatic%3:00:00:: 00108595 3 0 -stigmatic%3:01:00:: 02621609 2 0 -stigmatic%3:01:01:: 03120454 1 0 -stigmatisation%1:04:00:: 01223488 1 0 -stigmatise%2:30:00:: 00508645 2 0 -stigmatise%2:41:00:: 02508245 1 0 -stigmatism%1:09:00:: 05654783 3 0 -stigmatism%1:26:00:: 13938663 2 0 -stigmatism%1:26:01:: 14571930 1 0 -stigmatist%1:18:00:: 10656488 1 0 -stigmatization%1:04:00:: 01223488 1 0 -stigmatize%2:30:00:: 00508645 2 0 -stigmatize%2:41:00:: 02508245 1 0 -stilbesterol%1:06:00:: 03193882 1 0 -stilbestrol%1:27:00:: 14750122 1 0 -stilboestrol%1:27:00:: 14750122 1 0 -stile%1:06:00:: 04318787 1 0 -stiletto%1:06:00:: 04318892 1 0 -stiletto_heel%1:06:00:: 04276808 1 0 -still%1:06:00:: 04318982 3 0 -still%1:06:01:: 04319248 1 2 -still%1:06:02:: 03212811 4 0 -still%1:07:00:: 04982478 2 0 -still%2:30:00:: 00461493 2 1 -still%2:30:05:: 00583905 4 0 -still%2:37:00:: 01764800 1 1 -still%2:37:01:: 01815185 3 0 -still%3:00:00:: 02277485 5 0 -still%3:00:03:: 01565751 4 2 -still%4:02:00:: 00017639 3 26 -still%4:02:01:: 00031304 1 233 -still%4:02:02:: 00467269 4 3 -still%4:02:04:: 00027384 2 51 -still%5:00:00:calm:00 00302951 3 3 -still%5:00:00:quiet:01 01919428 2 9 -still%5:00:01:nonmoving:00 01564315 1 16 -still%5:00:02:standing:02 01241600 6 0 -still's_disease%1:26:00:: 14188030 1 0 -still-fish%2:33:00:: 01145468 1 0 -still-hunt%2:33:00:: 01142203 1 0 -still_hunt%1:04:00:: 00711523 1 0 -still_life%1:06:00:: 04319432 1 0 -still_room%1:06:00:: 04319545 1 0 -stillbirth%1:04:00:: 00230475 1 0 -stillborn%5:00:00:dead:01 00098307 2 0 -stillborn%5:00:00:unfruitful:00 01082714 1 0 -stillborn_infant%1:18:00:: 10656706 1 0 -stillness%1:07:00:: 04982478 1 6 -stillness%1:26:00:: 14522809 2 1 -stillness%1:26:01:: 14006179 3 0 -stillroom%1:06:00:: 04319545 1 0 -stillson_wrench%1:06:00:: 04319774 1 0 -stilly%5:00:00:quiet:01 01919676 1 0 -stilt%1:05:01:: 02034661 4 0 -stilt%1:05:02:: 02036053 3 0 -stilt%1:06:00:: 04319937 2 0 -stilt%1:06:01:: 03936269 1 1 -stilt_plover%1:05:00:: 02034661 1 0 -stiltbird%1:05:01:: 02034661 1 0 -stilted%5:00:00:affected:01 00073465 1 1 -stiltedly%4:02:00:: 00466730 1 0 -stilton%1:13:00:: 07852229 1 0 -stilwell%1:18:00:: 11318462 1 0 -stimulant%1:06:00:: 04320126 2 1 -stimulant%1:09:00:: 05827684 1 1 -stimulant%5:00:00:stimulative:00 02310371 1 0 -stimulant_drug%1:06:00:: 04320126 1 0 -stimulate%2:29:00:: 00022686 4 3 -stimulate%2:30:00:: 00503164 1 6 -stimulate%2:32:00:: 00794079 7 0 -stimulate%2:32:01:: 00770437 2 5 -stimulate%2:36:00:: 01644522 5 2 -stimulate%2:37:00:: 01761706 3 3 -stimulate%2:39:00:: 02116118 6 1 -stimulated%5:00:00:excited:00 00920494 1 0 -stimulating%3:00:00:: 02306288 1 1 -stimulating%5:00:00:invigorating:00 01357342 3 0 -stimulating%5:00:00:stimulative:00 02310371 2 0 -stimulation%1:04:00:: 01261974 1 5 -stimulation%1:04:01:: 00853835 4 0 -stimulation%1:09:00:: 05827684 2 3 -stimulation%1:22:00:: 13561719 3 0 -stimulative%3:00:00:: 02309341 1 0 -stimulus%1:09:00:: 05827684 1 10 -stimulus_generalisation%1:09:00:: 05756414 1 0 -stimulus_generalization%1:09:00:: 05756414 1 0 -sting%1:04:00:: 00779248 4 0 -sting%1:26:00:: 14332085 1 2 -sting%1:26:01:: 14297870 3 0 -sting%1:26:02:: 14329762 2 0 -sting%2:32:00:: 00748084 3 1 -sting%2:35:01:: 01445407 2 1 -sting%2:37:00:: 01793742 5 0 -sting%2:39:00:: 02123424 4 0 -sting%2:39:02:: 02120451 1 1 -sting_operation%1:04:00:: 00779599 1 0 -stingaree-bush%1:20:00:: 12559044 1 0 -stinger%1:04:00:: 01174988 5 0 -stinger%1:05:00:: 02465693 4 0 -stinger%1:06:00:: 04320405 3 0 -stinger%1:10:00:: 06721461 2 0 -stinger%1:13:00:: 07918309 1 0 -stingily%4:02:00:: 00466835 1 0 -stinginess%1:07:00:: 04833458 1 0 -stinging%1:26:00:: 14332085 1 0 -stinging%5:00:00:unkind:00 01374004 1 0 -stinging_hair%1:20:00:: 13090248 1 0 -stinging_nettle%1:20:00:: 12392549 1 0 -stingless%3:01:00:: 03120610 1 0 -stingray%1:05:00:: 01498041 1 0 -stingy%3:00:00:: 01112573 1 0 -stingy%3:00:02:: 00106456 2 0 -stink%1:09:00:: 05714894 1 0 -stink%2:39:00:: 02124106 2 0 -stink%2:42:00:: 02674173 1 2 -stink_bell%1:20:00:: 12452673 1 0 -stink_bomb%1:06:00:: 04320598 1 0 -stink_fly%1:05:00:: 02264885 1 0 -stink_out%2:39:00:: 02126022 1 0 -stink_up%2:39:00:: 02126022 1 0 -stinkbird%1:05:00:: 01809752 1 0 -stinker%1:06:00:: 03655838 3 0 -stinker%1:06:01:: 04320731 2 0 -stinker%1:18:00:: 10539715 1 0 -stinkhorn%1:20:00:: 13040303 1 0 -stinkiness%1:07:00:: 04980656 1 0 -stinking%5:00:00:bad:00 01127782 1 1 -stinking%5:00:00:malodorous:00 01053634 2 0 -stinking_bean_trefoil%1:20:00:: 12505752 1 0 -stinking_cedar%1:20:00:: 11649359 1 0 -stinking_chamomile%1:20:00:: 11923174 1 0 -stinking_clover%1:20:00:: 11866706 1 0 -stinking_elder%1:20:00:: 12679432 1 0 -stinking_gladwyn%1:20:00:: 12413642 1 0 -stinking_goosefoot%1:20:00:: 11830400 1 0 -stinking_hellebore%1:20:00:: 11734093 1 0 -stinking_horehound%1:20:00:: 12841872 1 0 -stinking_iris%1:20:00:: 12413642 1 0 -stinking_mayweed%1:20:00:: 11923174 1 0 -stinking_nightshade%1:20:00:: 12904314 1 0 -stinking_smut%1:20:00:: 13068434 2 0 -stinking_smut%1:26:00:: 14284026 1 0 -stinking_wattle%1:20:00:: 11757017 1 0 -stinking_weed%1:20:00:: 12500751 1 0 -stinking_yew%1:20:00:: 11649359 1 0 -stinkpot%1:05:00:: 01667432 2 0 -stinkpot%1:18:00:: 10539715 1 0 -stinkweed%1:20:00:: 11898775 1 0 -stinky%3:00:00:: 01053144 1 0 -stinky%5:00:00:bad:00 01127782 2 0 -stinky_squid%1:20:00:: 13042982 1 0 -stint%1:04:00:: 00720431 3 0 -stint%1:05:00:: 02027357 2 0 -stint%1:28:00:: 15134490 1 0 -stint%2:40:00:: 02345498 1 0 -stint%2:40:01:: 02225739 2 0 -stinter%1:18:00:: 10656832 1 0 -stinting%5:00:00:thrifty:00 02421364 1 0 -stipe%1:20:00:: 13130569 1 0 -stipend%1:21:00:: 13294135 1 0 -stipendiary%1:18:00:: 10656969 1 0 -stipendiary%3:01:00:: 03120681 1 0 -stipendiary%5:00:01:paid:00 01708663 3 0 -stipendiary%5:00:02:paid:00 01708898 2 0 -stipendiary_magistrate%1:18:00:: 10656969 1 0 -stipple%2:35:00:: 01538469 4 0 -stipple%2:36:00:: 01750302 1 0 -stipple%2:36:01:: 01695773 2 0 -stipple%2:36:02:: 01681212 3 0 -stippled%5:00:00:patterned:00 01788445 1 0 -stippler%1:18:00:: 10657165 1 0 -stipulate%2:32:00:: 01018928 1 4 -stipulate%2:32:01:: 01019472 2 0 -stipulate%2:32:06:: 00889026 3 0 -stipulation%1:04:00:: 01149303 3 0 -stipulation%1:10:00:: 06755568 2 0 -stipulation%1:10:01:: 07216761 1 0 -stipulative_definition%1:10:00:: 06745861 1 0 -stipulatory%5:00:00:uncontroversial:00 00603194 1 0 -stipule%1:20:00:: 11550890 1 0 -stir%1:04:00:: 00555138 3 0 -stir%1:12:00:: 07514345 2 0 -stir%1:26:01:: 13978166 1 0 -stir%2:35:04:: 01541467 8 0 -stir%2:36:00:: 01629958 6 1 -stir%2:37:00:: 01770802 5 1 -stir%2:37:01:: 01761706 4 4 -stir%2:38:00:: 01893988 2 5 -stir%2:38:01:: 01894320 1 7 -stir%2:38:04:: 01894164 7 0 -stir%2:39:00:: 02116118 3 4 -stir_fry%2:30:00:: 00326459 1 0 -stir_up%2:32:00:: 00851239 4 0 -stir_up%2:35:00:: 01419473 3 1 -stir_up%2:37:00:: 01761120 2 1 -stir_up%2:41:00:: 02585050 1 1 -stirk%1:05:00:: 02403153 1 0 -stirred%3:00:00:: 01559903 1 0 -stirred%5:00:00:agitated:02 00088545 3 0 -stirred%5:00:00:excited:00 00920494 2 0 -stirred_up%5:00:00:excited:00 00920494 1 0 -stirrer%1:06:00:: 04320871 2 0 -stirrer%1:18:00:: 10555679 1 0 -stirring%1:04:00:: 00347490 1 1 -stirring%1:04:01:: 01261845 2 0 -stirring%5:00:00:moving:01 01561429 2 0 -stirring%5:00:00:stimulating:00 02307026 1 0 -stirringly%4:02:00:: 00467016 1 0 -stirrup%1:06:00:: 04320973 1 3 -stirrup%1:08:00:: 05326465 2 0 -stirrup-shaped%5:00:00:formed:00 02150397 1 0 -stirrup_cup%1:13:00:: 07912933 1 0 -stirrup_iron%1:06:00:: 04320973 1 0 -stirrup_pump%1:06:00:: 04321121 1 0 -stitch%1:06:00:: 04321238 1 1 -stitch%1:26:00:: 14332339 2 0 -stitch%2:35:00:: 01329239 1 1 -stitched%5:00:00:seamed:00 02254172 1 0 -stitcher%1:18:00:: 10657306 1 0 -stitchery%1:06:00:: 04179385 1 0 -stitching%1:04:00:: 00715674 1 0 -stitchwort%1:20:00:: 11818271 1 0 -stizidae%1:05:00:: 02215941 1 0 -stizolobium%1:20:00:: 12549976 1 0 -stizolobium_deeringiana%1:20:00:: 12550408 1 0 -stizostedion%1:05:00:: 02557461 1 0 -stizostedion_vitreum%1:05:00:: 02557749 1 0 -stm%1:09:00:: 05760611 1 0 -stoat%1:05:00:: 02442336 1 0 -stob%1:06:00:: 04321453 1 0 -stochastic%5:00:00:random:00 01925000 1 0 -stochastic_process%1:22:00:: 13561896 1 0 -stochastic_variable%1:09:00:: 05864177 1 0 -stochastically%4:02:00:: 00467147 1 0 -stochasticity%1:07:00:: 04771332 1 0 -stock%1:05:00:: 01887474 17 0 -stock%1:06:00:: 04321534 2 3 -stock%1:06:01:: 04321804 15 0 -stock%1:06:02:: 04322026 3 2 -stock%1:06:03:: 03814727 16 0 -stock%1:06:04:: 04322387 14 0 -stock%1:13:01:: 07585208 8 1 -stock%1:14:00:: 08101410 7 1 -stock%1:14:01:: 08101937 6 1 -stock%1:20:00:: 13130305 10 0 -stock%1:20:01:: 11892637 12 0 -stock%1:20:02:: 11892029 13 0 -stock%1:20:03:: 13127091 11 0 -stock%1:21:00:: 13333833 1 28 -stock%1:21:01:: 13367070 5 1 -stock%1:21:02:: 13417071 4 1 -stock%1:26:00:: 14438541 9 0 -stock%2:29:03:: 00095377 7 0 -stock%2:40:00:: 02285392 1 2 -stock%2:40:01:: 02323286 5 0 -stock%2:40:02:: 02323059 6 0 -stock%2:40:05:: 02329578 4 0 -stock%2:40:06:: 02329733 3 0 -stock%2:40:07:: 02329883 2 0 -stock%5:00:00:regular:00 01960076 3 0 -stock%5:00:00:standard:02 02297089 2 0 -stock%5:00:00:unoriginal:00 01688757 1 1 -stock-in-trade%1:06:00:: 04324120 1 0 -stock-index_futures%1:10:00:: 06480991 1 0 -stock-purchase_warrant%1:21:00:: 13418219 1 0 -stock-still%4:02:00:: 00467269 1 0 -stock-still%5:00:00:nonmoving:00 01564881 1 0 -stock-take%1:04:00:: 01011720 1 0 -stock-take%2:41:00:: 02472495 1 0 -stock-taker%1:18:00:: 10657681 1 0 -stock-taking%1:04:00:: 01011425 2 0 -stock-taking%1:09:00:: 05747815 1 0 -stock_breeder%1:18:00:: 09873899 1 0 -stock_buyback%1:21:00:: 13243466 1 0 -stock_car%1:06:00:: 04322801 2 0 -stock_car%1:06:01:: 04322924 1 0 -stock_certificate%1:21:00:: 13417071 1 0 -stock_company%1:14:00:: 08383310 1 0 -stock_company%1:14:01:: 08187569 2 0 -stock_cube%1:13:00:: 07585474 1 0 -stock_dividend%1:21:00:: 13408256 1 0 -stock_exchange%1:06:00:: 04323026 1 0 -stock_farmer%1:18:00:: 10658501 1 0 -stock_index%1:10:00:: 06641924 1 0 -stock_issue%1:04:00:: 01060530 1 0 -stock_list%1:10:00:: 06492664 1 0 -stock_market%1:06:00:: 04323026 1 5 -stock_market_index%1:10:00:: 06641924 1 0 -stock_of_record%1:21:00:: 13335521 1 0 -stock_option%1:21:00:: 13242239 1 0 -stock_option%1:21:01:: 13241940 2 0 -stock_power%1:10:00:: 06530976 1 0 -stock_purchase_plan%1:09:00:: 05912814 1 0 -stock_raiser%1:18:00:: 10658501 1 0 -stock_room%1:06:00:: 04324387 1 0 -stock_saddle%1:06:00:: 04325041 1 0 -stock_split%1:04:00:: 00439043 1 0 -stock_symbol%1:10:00:: 06531327 1 0 -stock_ticker%1:06:00:: 04432393 1 0 -stock_trader%1:18:00:: 10657835 1 0 -stock_up%2:40:00:: 02323286 1 0 -stock_warrant%1:10:00:: 06685975 2 0 -stock_warrant%1:21:00:: 13418219 1 0 -stockade%1:06:00:: 03086183 2 0 -stockade%1:06:01:: 04322531 1 1 -stockade%2:33:00:: 01130930 1 0 -stockbroker%1:18:00:: 10657444 1 1 -stockbroker_belt%1:15:00:: 08555333 1 0 -stockcar%1:06:00:: 04322692 1 0 -stocked%5:00:00:furnished:00 01097690 1 0 -stocked_with%5:00:00:furnished:00 01097690 1 0 -stocker%1:05:00:: 01318053 1 0 -stockfish%1:13:00:: 07783102 1 0 -stockholder%1:18:00:: 10657969 1 18 -stockholder_of_record%1:18:00:: 10658122 1 0 -stockholders_meeting%1:14:00:: 08310168 1 0 -stockholding%1:21:01:: 13334307 2 0 -stockholding%1:21:02:: 13334492 1 0 -stockholdings%1:21:00:: 13334492 1 0 -stockholm%1:15:00:: 08766236 1 0 -stockhorn%1:06:00:: 03537550 1 0 -stockily%4:02:00:: 00468739 1 0 -stockinet%1:06:00:: 04323519 1 0 -stockinette%1:06:00:: 04323519 1 0 -stockinette_stitch%1:06:00:: 04323645 1 0 -stocking%1:04:00:: 01061029 2 1 -stocking%1:06:00:: 04323819 1 4 -stocking_cap%1:06:00:: 04228693 1 0 -stocking_filler%1:21:00:: 13269318 1 0 -stocking_stuffer%1:21:00:: 13269318 1 0 -stockinged%5:00:00:unshod:00 02156822 1 0 -stockist%1:18:00:: 10658304 1 0 -stockjobber%1:18:00:: 10657556 1 0 -stockman%1:18:00:: 10658501 1 0 -stockpile%1:14:00:: 08462205 2 0 -stockpile%1:21:00:: 13368052 1 0 -stockpile%2:40:00:: 02285392 1 0 -stockpiling%1:04:00:: 00372977 1 0 -stockpot%1:06:00:: 04324297 1 0 -stockroom%1:06:00:: 04324387 1 0 -stocks%1:06:00:: 04324515 3 0 -stocks%1:06:01:: 04324741 2 0 -stocks%1:06:02:: 04324910 1 0 -stocktake%1:04:00:: 01011720 1 0 -stocktaker%1:18:00:: 10657681 1 0 -stocktaking%1:04:00:: 01011425 2 0 -stocktaking%1:09:00:: 05747815 1 0 -stockton%1:18:00:: 11318692 1 0 -stocky%5:00:00:short:03 02387413 1 0 -stockyard%1:06:00:: 04325208 1 0 -stodge%1:13:00:: 07803895 1 0 -stodgily%4:02:00:: 00469473 1 0 -stodginess%1:07:00:: 04648059 1 0 -stodgy%5:00:00:conventional:00 00606347 3 0 -stodgy%5:00:00:indigestible:00 01183436 1 0 -stodgy%5:00:00:unfashionable:00 00974697 2 0 -stoep%1:06:00:: 04327204 1 0 -stogie%1:06:00:: 04325335 1 0 -stogy%1:06:00:: 04325335 1 0 -stoic%1:18:00:: 10658867 2 1 -stoic%1:18:01:: 10658676 1 2 -stoic%3:01:00:: 03020354 2 0 -stoic%5:00:00:unemotional:00 00858558 1 3 -stoical%5:00:00:unemotional:00 00858558 1 1 -stoically%4:02:00:: 00468837 1 0 -stoichiometric%3:01:00:: 02803876 1 0 -stoichiometry%1:24:00:: 13825840 1 0 -stoicism%1:07:00:: 04630378 1 3 -stoicism%1:09:00:: 05976948 2 2 -stoke%2:41:00:: 02439156 1 1 -stokehold%1:06:00:: 04325409 1 0 -stokehole%1:06:00:: 04325409 1 0 -stoker%1:06:00:: 04325592 3 0 -stoker%1:18:00:: 10659042 2 0 -stoker%1:18:01:: 11318824 1 0 -stokes'_aster%1:20:00:: 12020184 1 0 -stokes-adams_syndrome%1:26:00:: 14362593 1 0 -stokesia%1:20:00:: 12020048 1 0 -stokesia_laevis%1:20:00:: 12020184 1 0 -stokowski%1:18:00:: 11318967 1 0 -stole%1:06:00:: 04325704 1 0 -stolen_property%1:21:00:: 13262335 1 0 -stolid%5:00:00:unemotional:00 00857560 1 7 -stolidity%1:07:00:: 04630378 2 0 -stolidity%1:12:00:: 07483782 1 0 -stolidly%4:02:00:: 00216387 1 4 -stolidness%1:07:00:: 04630378 1 0 -stolon%1:20:00:: 13127843 1 0 -stoloniferous%3:01:00:: 02645417 1 0 -stoma%1:08:00:: 05246215 2 0 -stoma%1:20:01:: 11680032 1 0 -stomach%1:08:00:: 05395690 1 23 -stomach%1:08:01:: 05556943 2 5 -stomach%1:12:00:: 07485916 4 0 -stomach%1:12:01:: 07499276 3 0 -stomach%2:31:00:: 00668099 2 0 -stomach%2:34:00:: 01197626 1 0 -stomach_ache%1:26:00:: 14327266 1 0 -stomach_exercise%1:04:00:: 00630634 1 0 -stomach_flu%1:26:00:: 14172005 1 0 -stomach_pump%1:06:00:: 04325968 1 0 -stomach_sweetbread%1:13:00:: 07652788 1 0 -stomach_upset%1:26:00:: 14336317 1 0 -stomachache%1:26:00:: 14327266 1 0 -stomachal%3:01:00:: 02733187 1 0 -stomacher%1:06:00:: 04325804 1 0 -stomachic%3:01:00:: 02733187 1 0 -stomatal%3:01:01:: 02645494 2 0 -stomatal%3:01:02:: 02645677 1 0 -stomate%1:20:00:: 11680032 1 0 -stomatitis%1:26:00:: 14356044 1 0 -stomatopod%1:05:00:: 01989869 1 0 -stomatopod_crustacean%1:05:00:: 01989869 1 0 -stomatopoda%1:05:00:: 01989701 1 0 -stomatous%3:00:00:: 02310533 3 0 -stomatous%3:01:01:: 02645494 2 0 -stomatous%3:01:02:: 02645677 1 0 -stomp%1:04:00:: 00533691 1 0 -stomp%2:38:00:: 01925338 1 2 -stomper%1:18:00:: 10646942 1 0 -stone%1:06:00:: 04326084 2 9 -stone%1:07:00:: 04629958 13 0 -stone%1:17:00:: 09416076 1 16 -stone%1:18:00:: 11319134 12 0 -stone%1:18:01:: 11319244 11 0 -stone%1:18:02:: 11319413 10 0 -stone%1:18:03:: 11319570 9 0 -stone%1:18:04:: 11319704 8 0 -stone%1:18:05:: 11319810 7 0 -stone%1:20:00:: 11684739 6 0 -stone%1:23:00:: 13720600 5 0 -stone%1:27:00:: 14696793 3 8 -stone%1:27:01:: 14699752 4 0 -stone%2:30:00:: 00179567 2 0 -stone%2:35:00:: 01323518 1 1 -stone%5:00:00:chromatic:00 00384195 1 0 -stone's_throw%1:23:00:: 13762579 1 0 -stone-blind%5:00:00:blind:00 02160622 1 0 -stone-broke%5:00:00:poor:00 02023287 1 0 -stone-cold%5:00:00:cold:01 01254165 1 0 -stone-dead%5:00:00:dead:01 00098450 1 1 -stone-deaf%5:00:00:deaf:00 00682521 1 0 -stone-face%1:20:00:: 11820463 1 0 -stone-gray%5:00:00:achromatic:00 00391897 1 1 -stone-grey%5:00:00:achromatic:00 00391897 1 0 -stone-root%1:20:00:: 12844409 1 0 -stone-sober%5:00:00:sober:01 00799716 1 0 -stone-wash%2:35:00:: 01536776 1 0 -stone_age%1:28:00:: 15231964 1 0 -stone_bass%1:05:00:: 02568447 1 0 -stone_bramble%1:20:00:: 12653633 1 0 -stone_breaker%1:18:00:: 10659188 1 0 -stone_crab%1:05:00:: 01977485 2 0 -stone_crab%1:13:00:: 07788730 1 0 -stone_cress%1:20:00:: 11870044 1 0 -stone_curlew%1:05:00:: 02040266 1 0 -stone_drill%1:06:00:: 02875436 1 0 -stone_facing%1:06:00:: 04085873 1 0 -stone_fly%1:05:00:: 02262803 1 0 -stone_fruit%1:20:00:: 13138308 1 0 -stone_life_face%1:20:00:: 11820463 1 0 -stone_marten%1:05:00:: 02450677 1 0 -stone_mimicry_plant%1:20:00:: 11821929 1 0 -stone_parsley%1:20:01:: 12944723 1 0 -stone_parsley%1:20:02:: 12944390 2 0 -stone_pine%1:20:00:: 11611758 1 0 -stone_pit%1:06:00:: 03949442 1 0 -stone_plant%1:20:00:: 11820463 1 0 -stone_root%1:20:00:: 12844409 1 0 -stone_wall%1:06:00:: 04326547 1 2 -stonechat%1:05:00:: 01560793 1 0 -stonecress%1:20:00:: 11870044 1 0 -stonecrop%1:20:00:: 12785889 1 0 -stonecrop_family%1:20:00:: 12785110 1 0 -stonecutter%1:18:00:: 10659294 1 0 -stoned%5:00:00:intoxicated:00 00799401 1 0 -stoneface%1:20:00:: 11820463 1 0 -stonefish%1:05:00:: 02643836 1 0 -stonefly%1:05:00:: 02262803 1 0 -stonehenge%1:15:00:: 08656750 1 0 -stoneless%5:00:00:seedless:00 02256306 1 0 -stonelike%5:00:00:hard:01 01152320 1 0 -stonemason%1:18:00:: 10297531 1 0 -stoner%1:18:00:: 10659393 1 0 -stoneroot%1:20:00:: 12844409 1 0 -stonewall%2:30:00:: 00460132 2 0 -stonewall%2:32:00:: 01034932 1 0 -stonewall_jackson%1:18:00:: 11076079 1 0 -stonewaller%1:18:00:: 10659571 1 0 -stonewalling%1:04:00:: 01075893 1 0 -stoneware%1:06:00:: 04326676 1 0 -stonewash%2:35:00:: 01536776 1 0 -stonework%1:06:00:: 04326799 1 0 -stonewort%1:05:00:: 01412694 1 0 -stonily%4:02:00:: 00468966 1 1 -stoning%1:04:00:: 01164394 1 0 -stony%5:00:00:hard:01 01151951 3 0 -stony%5:00:00:hardhearted:00 01158180 2 0 -stony%5:00:00:rough:00 02241988 1 0 -stony-broke%5:00:00:poor:00 02023287 1 0 -stony_coral%1:05:00:: 01916925 1 0 -stony_tunguska%1:17:00:: 09463547 1 0 -stonyhearted%5:00:00:uncompassionate:00 00507292 1 0 -stooge%1:18:00:: 10098092 1 0 -stooge%1:18:01:: 09884666 2 0 -stooge%2:29:00:: 00013858 3 0 -stooge%2:36:00:: 01720491 2 0 -stooge%2:38:00:: 01845105 1 0 -stool%1:06:00:: 04326896 1 3 -stool%1:06:01:: 04446521 4 0 -stool%1:20:00:: 13111700 3 0 -stool%1:27:00:: 14854262 2 0 -stool%2:29:00:: 00074038 4 0 -stool%2:29:01:: 00095595 3 0 -stool%2:31:00:: 00718645 2 0 -stool%2:32:00:: 00783859 1 0 -stool_pigeon%1:06:00:: 04327110 2 0 -stool_pigeon%1:18:00:: 10091012 1 0 -stool_test%1:09:00:: 05741340 1 0 -stoolie%1:18:00:: 10091012 1 0 -stoolpigeon%1:18:00:: 10091012 1 0 -stoop%1:04:00:: 00336654 1 1 -stoop%1:06:01:: 04327204 3 0 -stoop%1:06:02:: 04330109 2 0 -stoop%2:35:02:: 01601685 5 0 -stoop%2:38:00:: 02062632 1 7 -stoop%2:38:04:: 02064612 3 0 -stoop%2:38:05:: 02037683 4 0 -stoop%2:41:12:: 02517827 2 0 -stoop_to%2:32:00:: 00909134 1 1 -stooped%5:00:00:unerect:00 01239199 1 3 -stooper%1:18:00:: 10659762 2 0 -stooper%1:18:01:: 10659961 1 0 -stooping%5:00:00:unerect:00 01239199 1 0 -stop%1:04:00:: 01076046 2 3 -stop%1:04:02:: 01056411 3 3 -stop%1:06:00:: 02982790 10 0 -stop%1:06:01:: 02853449 11 0 -stop%1:06:02:: 03189083 9 0 -stop%1:06:03:: 04327324 8 0 -stop%1:10:00:: 07115914 6 0 -stop%1:10:01:: 06843520 7 0 -stop%1:11:00:: 07365849 1 3 -stop%1:15:00:: 08656893 5 1 -stop%1:26:00:: 14010927 4 1 -stop%2:30:05:: 00362348 6 4 -stop%2:30:12:: 00362610 11 0 -stop%2:33:00:: 01131473 7 3 -stop%2:35:00:: 01440378 8 2 -stop%2:35:12:: 01478002 10 0 -stop%2:38:00:: 01860795 1 57 -stop%2:38:01:: 01859221 5 7 -stop%2:38:02:: 01862918 4 7 -stop%2:41:00:: 02559752 3 25 -stop%2:42:00:: 02680814 2 56 -stop%2:42:13:: 02609764 9 1 -stop-loss_order%1:10:00:: 06530412 1 0 -stop_bath%1:06:00:: 04327544 1 0 -stop_consonant%1:10:00:: 07115914 1 0 -stop_dead%2:38:00:: 01834730 1 1 -stop_number%1:24:00:: 13821408 1 0 -stop_order%1:10:00:: 06530412 1 0 -stop_over%2:38:00:: 01862918 2 0 -stop_over%2:42:00:: 02652922 1 0 -stop_payment%1:10:00:: 06530586 1 0 -stop_press%1:10:00:: 06684262 1 0 -stop_up%2:35:00:: 01422886 1 0 -stop_watch%1:06:00:: 04328186 1 0 -stopcock%1:06:00:: 04327682 1 0 -stopes%1:18:00:: 11320044 1 0 -stopgap%1:04:00:: 00178551 1 0 -stoplight%1:10:00:: 06874185 2 0 -stoplight%1:10:01:: 07265990 1 0 -stopover%1:04:00:: 01056411 2 0 -stopover%1:15:00:: 08657100 1 0 -stoppable%3:00:00:: 02287878 1 0 -stoppage%1:04:00:: 01076046 3 0 -stoppage%1:06:00:: 02853449 2 0 -stoppage%1:26:00:: 14010927 1 0 -stoppard%1:18:00:: 11320245 1 0 -stopped%5:00:00:obstructed:00 01621894 1 0 -stopped-up%5:00:00:caulked:00 01399469 2 0 -stopped-up%5:00:00:obstructed:00 01621894 1 0 -stopped_up%5:00:00:obstructed:00 01621894 1 0 -stopper%1:06:00:: 03967942 4 0 -stopper%1:06:01:: 04327825 3 0 -stopper%1:10:00:: 06892358 1 0 -stopper%1:10:01:: 06768394 2 0 -stopper%2:35:00:: 01220636 1 0 -stopper_knot%1:06:00:: 04328054 1 0 -stoppered%5:00:00:closed:01 01654162 1 0 -stopping%1:04:00:: 00101809 2 0 -stopping%1:06:00:: 03338143 1 0 -stopping_point%1:28:00:: 15267536 1 1 -stopple%1:06:00:: 03967942 1 0 -stopple%2:35:00:: 01220636 1 0 -stops%1:04:00:: 00493308 1 0 -stopwatch%1:06:00:: 04328186 1 0 -storage%1:04:00:: 00811661 3 1 -storage%1:04:01:: 00811355 1 7 -storage%1:04:02:: 00372607 6 0 -storage%1:06:00:: 04329190 2 1 -storage%1:06:01:: 03744276 5 0 -storage%1:22:00:: 13562133 4 0 -storage-battery_grid%1:06:00:: 03458753 1 0 -storage_allocation%1:04:00:: 00164579 1 0 -storage_area%1:06:00:: 02964634 1 0 -storage_battery%1:06:00:: 04328329 1 0 -storage_cell%1:06:00:: 04328580 1 0 -storage_device%1:06:00:: 03744840 1 0 -storage_locker%1:06:00:: 02933462 1 0 -storage_medium%1:10:00:: 06263762 1 0 -storage_ring%1:06:00:: 04328703 1 0 -storage_room%1:06:00:: 04329477 1 0 -storage_space%1:06:00:: 04328946 1 0 -storage_tank%1:06:00:: 04388743 1 0 -storage_warehouse%1:06:00:: 04551055 1 0 -storax%1:20:00:: 12777179 1 0 -storax_family%1:20:00:: 12776946 1 0 -store%1:06:00:: 04202417 1 25 -store%1:06:01:: 04329190 4 0 -store%1:06:03:: 03744276 3 1 -store%1:21:00:: 13367070 2 5 -store%2:40:00:: 02281093 1 16 -store%2:40:02:: 02282506 2 11 -store-bought%5:00:00:factory-made:00 00675228 1 0 -store_cheese%1:13:00:: 07853125 1 0 -store_detective%1:18:00:: 10660128 1 0 -stored-program%3:01:00:: 02645950 1 0 -stored_program%1:10:00:: 06580219 1 0 -storefront%1:06:00:: 04203705 1 2 -storehouse%1:06:00:: 04329190 1 3 -storekeeper%1:18:00:: 10592152 1 1 -storeria%1:05:00:: 01738175 1 1 -storeria_occipitamaculata%1:05:00:: 01738306 1 0 -storeroom%1:06:00:: 04329477 1 1 -storey%1:06:00:: 03365991 1 0 -storeyed%5:00:00:high-rise:00 01218660 1 0 -storied%5:00:00:glorious:00 01121402 1 1 -storied%5:00:00:high-rise:00 01218660 2 0 -stork%1:05:00:: 02002075 1 0 -storksbill%1:20:00:: 12688716 1 0 -storm%1:04:00:: 00974630 3 0 -storm%1:19:00:: 11462526 1 8 -storm%1:26:00:: 13978344 2 3 -storm%2:33:00:: 01126051 5 0 -storm%2:35:00:: 01586600 2 1 -storm%2:42:00:: 02723016 1 2 -storm%2:43:00:: 02769900 4 0 -storm%2:43:01:: 02770170 3 0 -storm-beaten%5:00:00:damaged:00 00681019 1 0 -storm-tossed%5:00:00:troubled:00 02456530 1 0 -storm_cellar%1:06:00:: 04329681 1 0 -storm_center%1:15:00:: 08524572 2 0 -storm_center%1:26:00:: 13978601 1 0 -storm_centre%1:15:00:: 08524572 2 0 -storm_centre%1:26:00:: 13978601 1 0 -storm_cloud%1:17:00:: 09445910 1 1 -storm_cone%1:10:00:: 06792526 1 0 -storm_door%1:06:00:: 04329834 1 0 -storm_lamp%1:06:00:: 03549897 1 0 -storm_lantern%1:06:00:: 03549897 1 0 -storm_petrel%1:05:00:: 02060889 1 0 -storm_sash%1:06:00:: 04329958 1 0 -storm_signal%1:10:00:: 06792364 1 0 -storm_trooper%1:18:00:: 10660250 1 0 -storm_troops%1:14:00:: 08212146 1 0 -storm_window%1:06:00:: 04329958 1 0 -stormbound%5:00:00:confined:00 00559120 1 0 -stormily%4:02:00:: 00034945 1 0 -storminess%1:12:00:: 07481625 2 0 -storminess%1:26:00:: 14523436 1 0 -stormproof%5:00:00:protected:00 01886139 1 0 -stormy%3:00:00:: 00303727 1 2 -stormy%5:00:00:unpeaceful:00 01742912 2 1 -stormy_petrel%1:05:00:: 02061217 1 0 -story%1:06:00:: 03365991 3 7 -story%1:10:00:: 06369829 2 14 -story%1:10:01:: 06681551 5 2 -story%1:10:02:: 06757057 6 1 -story%1:10:03:: 07221094 1 36 -story%1:10:04:: 06514093 4 3 -storybook%1:10:00:: 06413459 1 0 -storyline%1:10:00:: 06373645 1 3 -storyteller%1:18:00:: 10345804 1 2 -storyteller%1:18:01:: 10660333 2 0 -stotinka%1:23:00:: 13685913 1 0 -stoup%1:06:01:: 04330109 2 0 -stoup%1:06:02:: 04330189 1 0 -stout%1:07:00:: 05097166 2 0 -stout%1:13:00:: 07890352 1 0 -stout%5:00:00:fat:01 00988077 2 2 -stout%5:00:00:resolute:00 01991586 1 3 -stout%5:00:00:robust:00 02038994 3 1 -stout-billed%5:00:00:beaked:00 00207226 1 0 -stout-stemmed%5:00:00:caulescent:00 00321849 1 0 -stouthearted%5:00:00:brave:00 00264262 1 0 -stoutheartedness%1:07:00:: 04858317 1 0 -stoutly%4:02:00:: 00203667 1 4 -stoutness%1:07:01:: 05000537 2 0 -stoutness%1:07:02:: 05031560 1 0 -stove%1:06:00:: 04330267 2 1 -stove%1:06:01:: 04330340 1 5 -stove_bolt%1:06:00:: 04330669 1 0 -stove_poker%1:06:00:: 03975926 1 0 -stovepipe%1:06:00:: 04330746 1 0 -stovepipe%1:06:01:: 03237416 2 0 -stovepipe_iron%1:06:00:: 04330896 1 0 -stovepiped%3:01:00:: 02803986 1 0 -stovepiping%1:22:00:: 13551117 1 0 -stover%1:13:00:: 07802246 1 0 -stow%2:35:01:: 01493234 1 1 -stow_away%2:39:00:: 02146175 1 0 -stowage%1:04:00:: 00811921 3 0 -stowage%1:06:00:: 04329477 2 0 -stowage%1:21:00:: 13326021 1 0 -stowaway%1:18:00:: 10660471 1 0 -stowe%1:18:00:: 11320405 1 0 -stowing%1:04:00:: 00811921 1 0 -stp%1:23:00:: 13780339 1 0 -strabismus%1:26:00:: 14557415 1 0 -strabotomy%1:04:00:: 00692840 1 0 -strachey%1:18:00:: 11320631 1 0 -strad%1:06:00:: 04330998 1 0 -stradavarius%1:06:00:: 04330998 1 0 -straddle%1:04:00:: 00349213 3 0 -straddle%1:04:01:: 00081174 4 0 -straddle%1:04:02:: 00438893 2 0 -straddle%1:09:00:: 06211702 1 0 -straddle%2:42:00:: 02705832 3 0 -straddle%2:42:01:: 02705913 1 4 -straddle%2:42:02:: 02690384 2 1 -stradivari%1:18:00:: 11320821 1 0 -stradivarius%1:18:00:: 11320821 1 0 -strafe%1:04:00:: 01246334 1 0 -strafe%2:33:00:: 01136142 1 1 -strafer%1:18:00:: 10660621 1 0 -straggle%1:14:00:: 07939159 1 0 -straggle%2:38:00:: 02066304 1 2 -straggle%2:38:01:: 02032227 2 1 -straggler%1:18:00:: 10660729 1 3 -straggling%5:00:00:untidy:00 02426679 1 1 -stragglingly%4:02:00:: 00438995 1 0 -straggly%5:00:00:distributed:00 00542660 2 0 -straggly%5:00:00:untidy:00 02426679 1 0 -straight%1:06:00:: 04331126 3 0 -straight%1:14:00:: 07958294 2 0 -straight%1:18:00:: 10173895 1 0 -straight%3:00:01:: 02310895 2 6 -straight%3:00:02:: 02318272 7 0 -straight%3:00:03:: 01030826 3 5 -straight%3:00:04:: 02318464 6 0 -straight%3:00:05:: 02314584 8 0 -straight%4:02:00:: 00509432 3 1 -straight%4:02:04:: 00058128 2 7 -straight%4:02:05:: 00051848 1 14 -straight%5:00:00:accurate:00 00022962 5 1 -straight%5:00:00:continuous:01 00596511 1 10 -straight%5:00:00:conventional:01 00607857 15 0 -straight%5:00:00:correct:00 00632306 14 0 -straight%5:00:00:direct:02 00766102 12 0 -straight%5:00:00:erect:00 01237754 4 2 -straight%5:00:00:heterosexual:00 01201298 10 0 -straight%5:00:00:tidy:00 02423981 9 0 -straight%5:00:00:undiluted:00 00757120 13 0 -straight%5:00:02:even:01 00911204 11 0 -straight-arm%1:04:00:: 00171050 1 0 -straight-backed%4:02:00:: 00330203 1 0 -straight-backed%5:00:00:backed:00 00200979 1 0 -straight-billed%5:00:00:beaked:00 00207305 1 0 -straight-fluted_drill%1:06:00:: 04331765 1 0 -straight-from-the-shoulder%5:00:00:direct:02 00764484 1 0 -straight-grained%5:00:00:even:01 00910983 1 0 -straight-laced%5:00:00:proper:00 01880163 1 0 -straight-legged%5:00:00:legged:00 01429788 1 0 -straight-line_method%1:21:00:: 13328578 1 0 -straight-line_method_of_depreciation%1:21:00:: 13328578 1 0 -straight-out%5:00:00:unqualified:02 01914407 1 1 -straight_and_narrow%1:04:00:: 00416216 1 0 -straight_angle%1:23:00:: 13612688 1 0 -straight_arch%1:06:00:: 03360133 1 0 -straight_arrow%1:18:00:: 10642705 1 0 -straight_chain%1:17:00:: 09446012 1 0 -straight_chair%1:06:00:: 04331277 1 0 -straight_face%1:10:00:: 06878803 1 2 -straight_flush%1:14:00:: 07957986 1 0 -straight_flute%1:06:00:: 04331765 1 0 -straight_hang%1:04:00:: 00437067 1 0 -straight_life_insurance%1:21:00:: 13347947 1 0 -straight_line%1:25:00:: 13869991 1 7 -straight_man%1:18:00:: 10660883 1 0 -straight_off%4:02:00:: 00048739 1 0 -straight_person%1:18:00:: 10173895 1 0 -straight_pin%1:06:00:: 04331892 1 0 -straight_poker%1:04:00:: 00497924 1 0 -straight_razor%1:06:00:: 04332074 1 0 -straight_shooter%1:18:00:: 10642705 1 0 -straight_sinus%1:08:00:: 05252705 1 0 -straight_thrust%1:04:00:: 01174251 1 0 -straight_ticket%1:04:00:: 00184652 1 0 -straightarrow%5:00:00:straight:04 02319034 1 0 -straightaway%1:06:00:: 04331126 1 1 -straightaway%4:02:00:: 00048739 1 1 -straightaway%5:00:00:fast:01 00978754 1 0 -straightedge%1:06:00:: 04331443 1 0 -straighten%2:30:00:: 00275843 4 1 -straighten%2:30:02:: 00277935 6 0 -straighten%2:35:00:: 01368597 2 6 -straighten%2:35:03:: 01487185 5 0 -straighten%2:38:00:: 02035781 1 7 -straighten%2:38:01:: 01982044 3 3 -straighten_out%2:30:00:: 00275843 6 0 -straighten_out%2:30:01:: 00208055 1 2 -straighten_out%2:30:02:: 00167934 3 1 -straighten_out%2:31:00:: 00621058 5 0 -straighten_out%2:35:00:: 01368597 4 0 -straighten_out%2:35:01:: 01463520 2 1 -straighten_up%2:38:01:: 01982686 1 4 -straightener%1:06:00:: 04331639 1 0 -straightforward%5:00:00:direct:00 00761734 4 0 -straightforward%5:00:00:direct:02 00766102 2 2 -straightforward%5:00:00:straight:04 02318728 3 0 -straightforward%5:00:00:unequivocal:00 00897223 1 2 -straightforwardly%4:02:01:: 00051017 1 0 -straightforwardness%1:07:01:: 04918498 1 0 -straightforwardness%1:07:02:: 04867700 2 0 -straightjacket%1:06:00:: 04332580 1 0 -straightlaced%5:00:00:proper:00 01880163 1 0 -straightness%1:04:00:: 00857664 5 0 -straightness%1:07:00:: 05074057 2 0 -straightness%1:07:01:: 05074559 1 0 -straightness%1:07:02:: 04872016 4 0 -straightness%1:07:03:: 04918210 3 0 -straightway%4:02:00:: 00467496 2 0 -straightway%4:02:01:: 00467596 1 0 -strain%1:04:00:: 00788766 9 0 -strain%1:04:01:: 00546389 11 0 -strain%1:04:02:: 00624553 10 0 -strain%1:09:00:: 05922450 8 0 -strain%1:10:00:: 07028373 3 3 -strain%1:14:00:: 08101410 5 2 -strain%1:14:01:: 08111157 6 1 -strain%1:19:00:: 11515325 1 5 -strain%1:26:00:: 14298102 7 0 -strain%1:26:01:: 14375890 4 2 -strain%1:26:02:: 14410089 2 3 -strain%2:29:00:: 00025203 5 1 -strain%2:30:00:: 00476744 9 0 -strain%2:33:00:: 01146051 1 6 -strain%2:34:00:: 01165579 3 3 -strain%2:35:00:: 01458664 7 0 -strain%2:35:01:: 01460029 4 1 -strain%2:35:02:: 01572728 6 0 -strain%2:35:10:: 01250474 8 0 -strain%2:37:00:: 01798452 2 3 -strain_gage%1:06:00:: 04332466 1 0 -strain_gauge%1:06:00:: 04332466 1 0 -strained%5:00:00:affected:01 00073358 4 0 -strained%5:00:00:awkward:00 01141468 1 3 -strained%5:00:00:tense:03 02407041 2 2 -strained%5:00:02:affected:01 00073761 3 0 -strainer%1:06:00:: 04332243 1 0 -strainer_vine%1:20:00:: 12166424 1 0 -straining%1:04:00:: 00751529 2 0 -straining%1:04:01:: 00624553 1 1 -straining%5:00:00:effortful:00 00837977 1 1 -strait%1:17:00:: 09446115 1 3 -strait%1:26:00:: 13936939 2 0 -strait%5:00:00:narrow:00 02562705 1 0 -strait-laced%5:00:00:proper:00 01880163 1 0 -strait_and_narrow%1:04:00:: 00416216 1 0 -strait_of_calais%1:17:00:: 09447450 1 0 -strait_of_dover%1:17:00:: 09447450 1 0 -strait_of_georgia%1:17:00:: 09446617 1 0 -strait_of_gibraltar%1:17:00:: 09446747 1 0 -strait_of_hormuz%1:17:00:: 09446868 1 0 -strait_of_magellan%1:17:00:: 09447047 1 0 -strait_of_messina%1:17:00:: 09447335 1 0 -strait_of_ormuz%1:17:00:: 09446868 1 0 -straiten%2:35:02:: 01388571 2 0 -straiten%2:41:00:: 02603424 1 0 -straitjacket%1:06:00:: 04332580 2 0 -straitjacket%1:09:00:: 05690684 1 0 -straitlaced%5:00:00:proper:00 01880163 1 1 -straits%1:11:00:: 07418822 2 0 -straits%1:26:00:: 13936939 1 0 -strake%1:06:00:: 04544805 1 0 -strand%1:06:01:: 02999757 3 1 -strand%1:06:02:: 04332783 2 1 -strand%1:09:00:: 05932062 1 1 -strand%1:15:00:: 08657748 6 0 -strand%1:17:00:: 09447666 5 0 -strand%1:27:00:: 14867858 4 0 -strand%2:38:02:: 02022486 3 0 -strand%2:38:03:: 02087377 2 0 -strand%2:40:00:: 02228355 1 2 -strand_wolf%1:05:00:: 02117646 1 0 -stranded%5:00:00:unaccompanied:00 02251576 1 1 -strange%3:00:00:: 00967129 1 41 -strange%3:00:01:: 01034457 3 0 -strange%5:00:01:unfamiliar:00 00966753 2 15 -strange_attractor%1:09:00:: 05866489 1 0 -strange_particle%1:17:00:: 09447806 1 0 -strange_quark%1:17:00:: 09447917 1 0 -strangely%4:02:01:: 00437381 1 0 -strangeness%1:07:00:: 04797482 1 1 -strangeness%1:07:02:: 04799344 3 0 -strangeness%1:09:00:: 05844545 2 0 -stranger%1:18:00:: 10661002 1 15 -stranger%1:18:01:: 10661216 2 0 -strangle%2:29:02:: 00077950 5 0 -strangle%2:29:03:: 00077698 6 0 -strangle%2:30:00:: 00236289 4 0 -strangle%2:30:06:: 00359405 3 0 -strangle%2:35:00:: 01570935 1 4 -strangle%2:35:01:: 01568630 2 0 -strangled%5:00:00:inhibited:00 01316808 1 1 -stranglehold%1:04:00:: 00814899 2 0 -stranglehold%1:07:00:: 05193781 1 0 -strangler%1:18:00:: 10121246 2 0 -strangler%1:20:00:: 13123431 1 0 -strangler_fig%1:20:01:: 12366313 2 0 -strangler_fig%1:20:02:: 12402051 1 0 -strangler_tree%1:20:00:: 13123431 1 0 -strangles%1:26:00:: 14264352 1 0 -strangling%1:04:00:: 00225786 1 0 -strangulate%2:30:00:: 00304828 3 0 -strangulate%2:35:00:: 01570935 1 0 -strangulate%2:35:01:: 01388653 2 0 -strangulation%1:04:01:: 00225786 1 1 -strangulation%1:04:02:: 00227264 3 0 -strangulation%1:26:00:: 14298247 2 0 -strap%1:06:00:: 04332987 4 0 -strap%1:06:01:: 04333129 1 2 -strap%1:06:02:: 04333500 3 0 -strap%1:06:03:: 04333709 2 0 -strap%2:29:00:: 00083523 4 0 -strap%2:30:00:: 00392860 3 0 -strap%2:35:00:: 01289492 1 1 -strap%2:35:01:: 01411085 2 0 -strap_fern%1:20:00:: 13174670 1 0 -strap_hinge%1:06:00:: 04333869 1 0 -strapado%1:04:00:: 00424324 1 0 -straphanger%1:18:01:: 10661334 2 0 -straphanger%1:18:02:: 10661464 1 0 -strapless%1:06:00:: 04334105 1 0 -strapless%5:00:00:unsupported:00 02352472 1 0 -straplike%5:00:00:narrow:00 02562805 1 0 -strappado%1:04:00:: 00424324 1 0 -strapper%1:18:00:: 09878702 1 0 -strapping%5:00:00:robust:00 02038126 1 0 -strasberg%1:18:00:: 11321051 1 0 -strasbourg%1:15:00:: 08937850 1 0 -strassburg%1:15:00:: 08937850 1 0 -stratagem%1:04:00:: 00172490 1 1 -stratagem%1:09:00:: 05905802 2 0 -strategian%1:18:00:: 10661563 1 0 -strategic%3:01:00:: 02950711 1 3 -strategic%5:00:00:important:00 01279735 2 1 -strategic_arms_limitation_talks%1:10:00:: 07149582 1 0 -strategic_buyout%1:04:00:: 00789735 1 0 -strategic_intelligence%1:04:00:: 00982679 1 0 -strategic_warning%1:10:00:: 07225696 1 0 -strategical%3:01:00:: 02950711 1 0 -strategically%4:02:00:: 00469068 1 0 -strategics%1:09:00:: 06152734 1 0 -strategist%1:18:00:: 10661563 1 1 -strategy%1:09:00:: 05905348 1 12 -strategy%1:09:01:: 06249177 2 0 -stratford-on-avon%1:15:00:: 08880529 1 0 -stratford-upon-avon%1:15:00:: 08880529 1 0 -stratification%1:04:00:: 01013604 1 1 -stratification%1:04:01:: 00919877 5 0 -stratification%1:07:00:: 05074690 4 0 -stratification%1:22:00:: 13562328 3 0 -stratification%1:26:00:: 13939158 2 0 -stratified%3:00:00:: 00208229 2 0 -stratified%5:00:00:hierarchical:00 01203703 3 0 -stratified%5:00:02:hierarchical:00 01203986 1 1 -stratified_language%1:10:00:: 06901333 1 0 -stratified_sample%1:09:00:: 06027051 1 0 -stratified_sampling%1:04:00:: 00162417 1 0 -stratify%2:29:00:: 00052845 5 0 -stratify%2:30:00:: 00506952 2 1 -stratify%2:35:00:: 01308681 4 0 -stratify%2:41:00:: 02512808 1 1 -stratify%2:41:01:: 02513048 3 0 -stratigraphy%1:09:00:: 06118236 1 0 -stratocracy%1:14:00:: 08053003 1 0 -stratosphere%1:17:00:: 09448090 1 0 -stratum%1:09:00:: 06246896 3 0 -stratum%1:14:00:: 07974025 2 0 -stratum%1:15:00:: 08657249 1 3 -stratum_basale%1:08:00:: 05243704 1 0 -stratum_corneum%1:08:00:: 05243077 1 0 -stratum_germinativum%1:08:00:: 05243704 1 0 -stratum_granulosum%1:08:00:: 05243435 1 0 -stratum_lucidum%1:08:00:: 05243259 1 0 -stratus%1:17:00:: 09448251 1 0 -stratus_cloud%1:17:00:: 09448251 1 0 -strauss%1:18:00:: 11321296 3 0 -strauss%1:18:01:: 11321428 2 0 -strauss%1:18:02:: 11321647 1 0 -strauss_the_elder%1:18:00:: 11321296 1 0 -strauss_the_younger%1:18:00:: 11321428 1 0 -stravinskian%3:01:00:: 03038199 1 0 -stravinsky%1:10:00:: 07278775 2 0 -stravinsky%1:18:00:: 11321841 1 6 -stravinskyan%3:01:00:: 03038199 1 0 -straw%1:06:00:: 04334232 4 0 -straw%1:07:00:: 04966941 3 0 -straw%1:27:00:: 14959939 1 10 -straw%1:27:01:: 14805899 2 2 -straw%2:35:00:: 01378123 2 0 -straw%2:35:01:: 01608340 1 0 -straw%5:00:00:chromatic:00 00384292 1 1 -straw-colored%5:00:00:colored:00 00400922 1 0 -straw-coloured%5:00:00:colored:00 00400922 1 0 -straw_boss%1:18:00:: 10661732 1 0 -straw_foxglove%1:20:00:: 12883265 1 0 -straw_hat%1:06:00:: 02859184 1 2 -straw_man%1:06:00:: 04143712 3 0 -straw_man%1:10:00:: 07182367 2 0 -straw_man%1:18:00:: 10113583 1 0 -straw_mushroom%1:20:00:: 13020191 1 0 -straw_poll%1:09:00:: 05801465 1 0 -straw_vote%1:09:00:: 05801465 1 0 -straw_wine%1:13:00:: 07898617 1 0 -strawberry%1:07:00:: 04696316 3 0 -strawberry%1:13:00:: 07745940 1 1 -strawberry%1:20:00:: 12630144 2 0 -strawberry-shrub_family%1:20:00:: 11700401 1 0 -strawberry_blite%1:20:00:: 11829435 1 0 -strawberry_bush%1:20:01:: 12749852 1 0 -strawberry_bush%1:20:02:: 11701066 2 0 -strawberry_daiquiri%1:13:00:: 07914586 1 0 -strawberry_geranium%1:20:00:: 12794568 1 0 -strawberry_guava%1:20:00:: 12333771 1 0 -strawberry_haemangioma%1:26:00:: 14247743 1 0 -strawberry_hemangioma%1:26:00:: 14247743 1 0 -strawberry_ice_cream%1:13:00:: 07615460 1 0 -strawberry_jam%1:13:00:: 07643200 1 0 -strawberry_mark%1:07:00:: 04696316 1 0 -strawberry_pigweed%1:20:00:: 11829435 1 0 -strawberry_preserves%1:13:00:: 07643200 1 0 -strawberry_saxifrage%1:20:00:: 12794568 1 0 -strawberry_shrub%1:20:00:: 11701066 1 0 -strawberry_tomato%1:20:01:: 12910676 2 0 -strawberry_tomato%1:20:02:: 12911264 1 0 -strawberry_tree%1:20:00:: 12230794 1 0 -strawboard%1:27:00:: 14801493 1 0 -strawflower%1:20:01:: 11980318 3 0 -strawflower%1:20:02:: 11981192 2 0 -strawflower%1:20:03:: 12475242 1 0 -strawman%1:06:00:: 04143712 3 0 -strawman%1:10:00:: 07182367 2 0 -strawman%1:18:00:: 10113583 1 0 -strawworm%1:05:01:: 02217839 2 0 -strawworm%1:05:02:: 02269657 1 0 -stray%1:05:00:: 02122580 1 1 -stray%2:32:00:: 00780575 3 0 -stray%2:38:00:: 01925694 2 1 -stray%2:38:01:: 01881180 1 2 -stray%5:00:00:lost:01 01450443 2 0 -stray%5:00:00:sporadic:00 00594267 1 2 -strayer%1:18:00:: 10660729 1 0 -straying%5:00:00:lost:01 01450607 1 0 -streak%1:07:00:: 04683136 3 1 -streak%1:07:01:: 04920435 2 1 -streak%1:11:00:: 07413629 4 0 -streak%1:14:00:: 08460585 1 1 -streak%2:36:00:: 01696135 3 0 -streak%2:38:00:: 02087605 1 2 -streak%2:38:01:: 01927330 2 0 -streaked%5:00:00:patterned:00 01790613 1 2 -streaker%1:18:00:: 10662306 1 0 -streaky%5:00:00:patterned:00 01790613 1 0 -stream%1:04:00:: 00329227 3 3 -stream%1:11:00:: 07406765 5 2 -stream%1:14:00:: 08461595 2 4 -stream%1:17:00:: 09448361 1 20 -stream%1:26:00:: 14005892 4 2 -stream%2:29:00:: 00069012 2 3 -stream%2:38:00:: 02070466 5 0 -stream%2:38:01:: 02070679 1 4 -stream%2:38:03:: 02028366 3 2 -stream%2:43:00:: 02758033 4 0 -stream_of_consciousness%1:09:00:: 05675437 2 0 -stream_of_consciousness%1:10:00:: 06374408 1 1 -stream_orchid%1:20:00:: 12062781 1 0 -streambed%1:17:00:: 09448690 1 0 -streamer%1:06:00:: 02788021 4 0 -streamer%1:06:01:: 03911866 3 0 -streamer%1:10:00:: 06345878 2 0 -streamer%1:19:00:: 11515734 1 0 -streamer_fly%1:06:00:: 04334365 1 0 -streaming%1:19:00:: 11443929 1 0 -streaming%3:44:00:: 03149478 1 2 -streaming%5:00:00:unprocessed:00 01952907 2 0 -streamlet%1:17:00:: 09415938 1 0 -streamline%2:36:00:: 01689899 1 0 -streamline_flow%1:19:00:: 11521665 1 0 -streamlined%5:00:00:efficient:00 00840737 1 2 -streamlined%5:00:00:smooth:00 02238128 2 0 -streamliner%1:06:00:: 04334504 1 1 -streep%1:18:00:: 11322068 1 0 -street%1:06:00:: 04334599 1 86 -street%1:06:01:: 04335209 2 3 -street%1:14:00:: 08225426 5 0 -street%1:26:00:: 14516256 3 2 -street%1:26:01:: 14485811 4 0 -street-walk%2:41:00:: 02554235 1 0 -street_address%1:15:00:: 08491710 1 0 -street_arab%1:18:00:: 10663137 1 0 -street_child%1:18:00:: 10763075 1 0 -street_cleaner%1:18:00:: 10662474 1 1 -street_clothes%1:06:00:: 04335693 1 1 -street_corner%1:06:00:: 03109486 1 2 -street_cred%1:07:00:: 04784525 1 0 -street_credibility%1:07:00:: 04784525 1 0 -street_drug%1:06:00:: 03248958 1 0 -street_fighter%1:18:00:: 10662819 1 0 -street_fighter%1:18:01:: 10662649 2 0 -street_girl%1:18:00:: 10663315 1 0 -street_lamp%1:06:00:: 04335886 1 0 -street_name%1:10:00:: 06336285 4 0 -street_name%1:10:01:: 06336363 3 0 -street_name%1:10:02:: 06336537 2 0 -street_name%1:10:03:: 06336723 1 0 -street_organ%1:06:00:: 02795978 1 0 -street_person%1:18:00:: 10026976 1 0 -street_sign%1:10:00:: 06794110 1 0 -street_smart%5:00:00:smart:00 00439431 1 0 -street_smarts%1:09:00:: 05622076 1 0 -street_sweeper%1:18:00:: 10662474 1 0 -street_theater%1:04:00:: 00899501 1 0 -street_urchin%1:18:00:: 10662952 1 0 -streetcar%1:06:00:: 04335435 1 3 -streetcar_track%1:06:00:: 04469003 1 0 -streetlight%1:06:00:: 04335886 1 2 -streetwalk%2:41:00:: 02554235 1 0 -streetwalker%1:18:00:: 10663315 1 0 -streetwise%5:00:00:smart:00 00439431 1 0 -streisand%1:18:00:: 11322178 1 0 -strekelia%1:20:00:: 12422399 1 0 -strekelia_formosissima%1:20:00:: 12422559 1 0 -strelitzia%1:20:00:: 12354374 1 0 -strelitzia_family%1:20:00:: 12354068 1 0 -strelitzia_reginae%1:20:00:: 12354619 1 0 -strelitziaceae%1:20:00:: 12354068 1 0 -strength%1:07:00:: 05029706 1 42 -strength%1:07:01:: 05159225 4 2 -strength%1:07:02:: 05053688 9 0 -strength%1:07:04:: 05099796 6 1 -strength%1:07:05:: 05203649 2 10 -strength%1:07:06:: 05035353 3 4 -strength%1:07:08:: 05034225 7 1 -strength%1:07:09:: 05191832 5 1 -strength%1:26:01:: 14474556 8 0 -strengthen%2:29:00:: 00101277 3 0 -strengthen%2:30:00:: 00220461 2 1 -strengthen%2:30:01:: 00220869 1 24 -strengthened%5:00:00:strong:00 02323358 1 0 -strengthener%1:06:00:: 04336034 1 0 -strengthening%1:04:00:: 00374063 2 0 -strengthening%1:11:00:: 07427224 1 0 -strenuosity%1:07:00:: 05036237 1 0 -strenuous%5:00:00:effortful:00 00837977 2 0 -strenuous%5:00:00:energetic:00 00875235 1 1 -strenuously%4:02:01:: 00090733 1 1 -strenuousness%1:07:00:: 04709759 1 0 -strep%1:05:00:: 01381044 1 0 -strep%3:01:00:: 03142114 1 0 -strep_throat%1:26:00:: 14184986 1 0 -strepera%1:05:00:: 01583373 1 0 -strepsiceros%1:05:00:: 02423787 1 0 -strepsirhini%1:05:00:: 02497214 1 0 -streptobacillus%1:05:00:: 01377694 1 0 -streptocarpus%1:20:00:: 12833985 1 0 -streptococcal%3:01:00:: 03142114 1 0 -streptococcal_sore_throat%1:26:00:: 14184986 1 0 -streptococci%1:05:00:: 01381044 1 0 -streptococcic%3:01:00:: 03142114 1 0 -streptococcus%1:05:00:: 01381044 1 0 -streptococcus_anhemolyticus%1:05:00:: 01381285 1 1 -streptococcus_tonsilitis%1:26:00:: 14184986 1 0 -streptodornase%1:27:00:: 15060937 1 0 -streptokinase%1:27:00:: 15061171 1 0 -streptolysin%1:27:00:: 15061428 1 0 -streptomyces%1:05:00:: 01376237 1 0 -streptomyces_erythreus%1:05:00:: 01376437 1 0 -streptomyces_griseus%1:05:00:: 01376543 1 0 -streptomyces_scabies%1:05:00:: 01376647 1 0 -streptomycetaceae%1:05:00:: 01375913 1 0 -streptomycin%1:06:00:: 04336380 1 0 -streptopelia%1:05:00:: 01813256 1 0 -streptopelia_risoria%1:05:00:: 01813658 1 0 -streptopelia_turtur%1:05:00:: 01813532 1 0 -streptosolen%1:20:00:: 12914048 1 0 -streptosolen_jamesonii%1:20:00:: 12914193 1 0 -streptothricin%1:06:00:: 04336533 1 0 -stress%1:10:01:: 07085375 1 67 -stress%1:19:00:: 11514805 5 2 -stress%1:26:01:: 14376188 2 5 -stress%1:26:02:: 14410089 4 2 -stress%1:26:03:: 14435187 3 3 -stress%2:32:00:: 01013367 1 29 -stress%2:32:01:: 00983333 2 4 -stress%2:37:00:: 01798452 3 0 -stress_fracture%1:26:00:: 14293352 1 0 -stress_incontinence%1:22:00:: 13562474 1 0 -stress_mark%1:10:00:: 06822476 1 0 -stress_test%1:09:00:: 05747160 1 0 -stressed%3:00:00:: 02319538 2 0 -stressed%5:00:00:troubled:00 02458497 1 1 -stressful%5:00:00:disagreeable:00 00090408 1 0 -stressor%1:17:00:: 09448829 1 0 -stretch%1:04:00:: 00628692 4 2 -stretch%1:04:01:: 00341243 2 3 -stretch%1:04:02:: 00371059 5 1 -stretch%1:06:00:: 04336645 3 2 -stretch%1:07:00:: 05021345 7 0 -stretch%1:17:00:: 09448945 1 3 -stretch%1:28:00:: 15134490 6 0 -stretch%2:29:01:: 00027268 2 11 -stretch%2:29:02:: 00101434 11 0 -stretch%2:30:00:: 00240810 4 4 -stretch%2:30:04:: 00318816 5 3 -stretch%2:30:05:: 00541746 8 1 -stretch%2:30:13:: 00154141 10 0 -stretch%2:30:15:: 00487748 9 0 -stretch%2:35:00:: 01449591 7 1 -stretch%2:38:00:: 02054989 3 4 -stretch%2:38:02:: 01985271 6 1 -stretch%2:42:00:: 02607830 1 16 -stretch%5:00:00:elastic:00 00845127 2 0 -stretch%5:00:00:long:01 01435891 1 0 -stretch_along%2:42:00:: 02607830 1 0 -stretch_forth%2:29:00:: 00027705 1 2 -stretch_mark%1:07:00:: 04680893 1 0 -stretch_out%2:29:00:: 00028167 5 0 -stretch_out%2:29:01:: 00027705 3 1 -stretch_out%2:29:02:: 00101434 4 0 -stretch_out%2:38:00:: 02054989 1 2 -stretch_out%2:38:02:: 01985271 2 1 -stretch_pants%1:06:00:: 04337287 1 1 -stretch_receptor%1:08:00:: 05323454 1 0 -stretch_reflex%1:04:00:: 00867606 1 0 -stretchability%1:07:00:: 05021345 1 0 -stretchable%5:00:00:elastic:00 00845216 1 0 -stretched%5:00:00:flexible:01 01023128 1 3 -stretched%5:00:02:extended:00 01432452 2 1 -stretcher%1:06:00:: 04336792 3 0 -stretcher%1:06:01:: 02957427 4 0 -stretcher%1:06:02:: 04336996 2 0 -stretcher%1:06:03:: 04337157 1 0 -stretcher-bearer%1:18:00:: 10663549 1 0 -stretcher_party%1:14:00:: 08265790 1 0 -stretchiness%1:07:00:: 05021345 1 0 -stretching%1:04:00:: 00628692 2 0 -stretching%1:04:02:: 00366521 1 1 -stretchy%5:00:00:elastic:00 00845216 1 0 -streusel%1:13:00:: 07621976 2 0 -streusel%1:13:01:: 07623576 1 0 -strew%2:35:00:: 01378123 1 4 -strew%2:35:04:: 01208896 2 1 -strewing%1:04:00:: 00369138 1 0 -stria%1:07:00:: 04680465 2 0 -stria%1:25:00:: 13908348 1 0 -striate%2:30:00:: 00508933 1 0 -striate%3:01:00:: 03136855 1 0 -striate_area%1:08:00:: 05494617 1 0 -striate_body%1:08:00:: 05499542 1 0 -striate_cortex%1:08:00:: 05494617 1 0 -striate_vein%1:08:00:: 05383348 1 0 -striated_muscle%1:08:00:: 05289861 1 0 -striated_muscle_cell%1:08:00:: 05459769 1 0 -striated_muscle_fiber%1:08:00:: 05459769 1 0 -striated_muscle_tissue%1:08:00:: 05289743 1 0 -striation%1:07:00:: 04680465 2 0 -striation%1:25:00:: 13908348 1 2 -striatum%1:08:00:: 05499542 1 0 -stricken%5:00:00:affected:00 00071242 2 1 -stricken%5:00:01:ill:01 02542148 1 3 -stricken%5:00:02:ill:01 02545385 3 0 -strickland%1:18:00:: 11322344 1 0 -strickle%1:06:00:: 04337400 3 0 -strickle%1:06:01:: 04337503 2 0 -strickle%1:06:02:: 04337650 1 0 -strickle%2:35:00:: 01308008 2 0 -strickle%2:35:01:: 01585390 1 0 -strict%3:00:00:: 01299888 3 0 -strict%5:00:00:demanding:01 00711308 5 0 -strict%5:00:00:exact:00 00915556 1 3 -strict%5:00:00:intolerant:00 02436995 4 0 -strict%5:00:00:invariable:00 02506267 2 2 -strictly%4:02:00:: 00179112 1 7 -strictly%4:02:01:: 00225410 3 0 -strictly%4:02:02:: 00469302 2 2 -strictly_speaking%4:02:00:: 00227023 1 2 -strictness%1:07:01:: 04639371 2 0 -strictness%1:07:02:: 04673173 1 0 -stricture%1:10:00:: 06712761 2 0 -stricture%1:26:00:: 14107374 1 0 -stride%1:04:00:: 00285889 1 6 -stride%1:04:01:: 00249987 3 1 -stride%1:23:00:: 13757249 2 2 -stride%2:38:00:: 01919711 1 0 -stride%2:38:03:: 01912709 2 0 -stridence%1:07:00:: 04990021 1 0 -stridency%1:07:00:: 04990021 1 0 -strident%5:00:00:cacophonous:00 00300359 4 0 -strident%5:00:00:imperative:00 00713853 3 0 -strident%5:00:00:noisy:00 01920367 1 0 -strident%5:00:00:soft:03 01157179 2 0 -stridently%4:02:00:: 00469188 1 0 -strider%1:18:00:: 10661865 1 0 -stridor%1:26:00:: 14568194 1 0 -stridulate%2:39:00:: 02172296 1 0 -stridulation%1:11:00:: 07395957 1 0 -strife%1:04:00:: 01167710 2 2 -strife%1:26:00:: 13979064 1 2 -strigidae%1:05:00:: 01621714 1 0 -strigiformes%1:05:00:: 01620967 1 0 -strike%1:04:00:: 01243674 1 7 -strike%1:04:01:: 00187710 4 0 -strike%1:04:02:: 00977301 2 2 -strike%1:04:03:: 00064504 6 0 -strike%1:04:05:: 00109414 5 0 -strike%1:11:00:: 07410021 3 0 -strike%2:30:00:: 00143540 11 2 -strike%2:31:00:: 00635904 21 0 -strike%2:32:00:: 00923622 5 5 -strike%2:33:00:: 01123887 4 7 -strike%2:35:00:: 01410223 1 18 -strike%2:35:01:: 01236164 3 14 -strike%2:35:02:: 01209135 6 4 -strike%2:35:03:: 01209426 10 2 -strike%2:35:08:: 01549420 14 1 -strike%2:35:09:: 01228235 20 0 -strike%2:35:10:: 01308008 19 0 -strike%2:36:00:: 01675073 13 1 -strike%2:36:02:: 01639105 18 0 -strike%2:37:00:: 01767949 2 16 -strike%2:38:02:: 02104161 16 0 -strike%2:38:08:: 01982395 17 0 -strike%2:39:00:: 02108791 15 0 -strike%2:40:00:: 02286687 12 1 -strike%2:41:00:: 02412647 7 3 -strike%2:41:02:: 02526811 9 2 -strike%2:42:00:: 02611976 8 2 -strike-slip_fault%1:17:00:: 09449127 1 0 -strike_a_blow%2:30:00:: 00137791 1 0 -strike_a_chord%2:31:00:: 00592186 1 1 -strike_a_chord%2:37:00:: 01769220 2 0 -strike_a_chord%2:37:01:: 01759926 3 0 -strike_a_note%2:37:00:: 01769220 1 0 -strike_back%2:33:04:: 01153165 1 0 -strike_down%2:35:00:: 01258302 3 0 -strike_down%2:35:02:: 01325934 2 0 -strike_down%2:41:00:: 02477334 1 0 -strike_dumb%2:37:00:: 01768764 1 0 -strike_hard%2:35:00:: 01238640 1 0 -strike_home%2:37:00:: 01769220 1 1 -strike_leader%1:18:00:: 10663659 1 0 -strike_off%2:32:00:: 00800750 1 0 -strike_out%2:30:03:: 00346714 6 0 -strike_out%2:32:00:: 00800750 1 2 -strike_out%2:33:00:: 01154175 5 0 -strike_out%2:35:00:: 01509280 2 1 -strike_out%2:38:00:: 01936361 4 0 -strike_out%2:41:00:: 02528833 3 0 -strike_pay%1:21:00:: 13280896 1 0 -strike_up%2:36:00:: 01642311 2 0 -strike_up%2:36:01:: 01651110 1 4 -strike_zone%1:15:00:: 08690974 1 0 -strikebound%5:00:00:inactive:03 00037341 1 0 -strikebreaker%1:18:00:: 10554455 1 0 -strikebreaking%1:04:00:: 00621198 1 0 -strikeout%1:04:00:: 00130347 1 0 -striker%1:06:00:: 04337740 5 0 -striker%1:18:00:: 10663745 3 0 -striker%1:18:01:: 10663858 2 0 -striker%1:18:02:: 10663996 1 0 -striker%1:18:03:: 10178216 4 0 -striking%1:04:00:: 00125629 2 0 -striking%1:11:00:: 07339329 1 0 -striking%5:00:00:conspicuous:00 00580805 2 0 -striking%5:00:00:impressive:00 01284212 1 14 -strikingly%4:02:00:: 00193886 1 3 -strikingness%1:07:00:: 04707252 2 0 -strikingness%1:26:00:: 14434022 1 0 -strindberg%1:18:00:: 11322481 1 0 -string%1:06:00:: 04337974 1 5 -string%1:06:01:: 03235560 6 1 -string%1:06:02:: 02999757 10 0 -string%1:06:03:: 04338143 3 2 -string%1:06:04:: 04338359 9 0 -string%1:06:05:: 02880546 2 3 -string%1:10:00:: 07013549 5 1 -string%1:14:00:: 08459648 4 1 -string%1:17:00:: 09449282 8 0 -string%1:27:00:: 14867365 7 0 -string%2:30:00:: 00190389 2 1 -string%2:35:00:: 01359145 7 0 -string%2:35:02:: 01359432 1 2 -string%2:35:03:: 01360316 6 0 -string%2:35:04:: 01360423 5 0 -string%2:35:05:: 01360571 4 0 -string%2:38:00:: 01993805 3 0 -string_along%2:38:00:: 01993805 1 0 -string_bass%1:06:00:: 02803934 1 0 -string_bean%1:13:00:: 07728181 1 0 -string_cheese%1:13:00:: 07854707 1 0 -string_line%1:15:00:: 08516260 1 0 -string_of_beads%1:06:00:: 02815600 1 0 -string_of_words%1:10:00:: 07013736 1 0 -string_orchestra%1:14:00:: 08248747 1 0 -string_out%2:35:00:: 01360715 1 1 -string_quartet%1:14:00:: 08247561 1 0 -string_quartette%1:14:00:: 08247561 1 0 -string_section%1:14:00:: 08217302 1 0 -string_theory%1:09:00:: 05891232 1 0 -string_tie%1:06:00:: 04339191 1 0 -string_up%2:30:00:: 00190389 2 0 -string_up%2:41:00:: 02485451 1 0 -stringed_instrument%1:06:00:: 04338517 1 0 -stringency%1:07:00:: 04673173 2 0 -stringency%1:26:00:: 14450540 1 0 -stringent%5:00:00:demanding:01 00711059 1 0 -stringently%4:02:00:: 00469302 1 0 -stringer%1:06:00:: 04338963 4 0 -stringer%1:06:01:: 04339062 3 0 -stringer%1:18:00:: 10662046 2 0 -stringer%1:18:01:: 10662162 1 0 -strings%1:14:00:: 08217302 1 0 -stringy%5:00:00:insubstantial:00 00626701 4 0 -stringy%5:00:00:thick:02 02416765 3 0 -stringy%5:00:00:thin:03 00991584 1 1 -stringy%5:00:00:tough:01 02446239 2 0 -stringybark%1:20:00:: 12335800 1 0 -stringybark_pine%1:20:00:: 11634393 1 0 -strip%1:04:00:: 00531490 6 0 -strip%1:06:00:: 04339291 2 6 -strip%1:06:02:: 02693070 3 4 -strip%1:06:03:: 04339638 5 0 -strip%1:10:00:: 07003352 4 1 -strip%1:17:00:: 09449510 1 8 -strip%2:29:01:: 00049900 2 2 -strip%2:30:01:: 00194079 12 0 -strip%2:30:02:: 00194534 11 0 -strip%2:30:03:: 00194696 10 0 -strip%2:30:04:: 00194812 9 0 -strip%2:30:05:: 00194912 5 1 -strip%2:30:06:: 00488617 4 1 -strip%2:30:12:: 00177243 13 0 -strip%2:35:00:: 01263479 3 1 -strip%2:35:01:: 01263659 8 0 -strip%2:35:04:: 01608706 7 0 -strip%2:40:00:: 02344568 6 0 -strip%2:40:03:: 02314275 1 7 -strip-jack-naked%1:04:00:: 00490155 1 0 -strip-mined%5:00:00:mined:00 01504430 1 0 -strip-search%2:35:00:: 01318470 1 0 -strip_alert%1:26:00:: 14032293 1 0 -strip_cropping%1:04:00:: 00920211 1 0 -strip_down%2:29:00:: 00049900 1 0 -strip_lighting%1:06:00:: 04339879 1 0 -strip_mall%1:06:00:: 04340019 1 0 -strip_mine%1:06:00:: 04340231 1 0 -strip_mine%2:34:00:: 01164081 1 0 -strip_miner%1:18:00:: 10664235 1 0 -strip_mining%1:04:00:: 00922848 1 0 -strip_poker%1:04:00:: 00498086 1 0 -strip_search%1:04:00:: 00946281 1 0 -strip_show%1:04:00:: 00531490 1 0 -strip_steak%1:13:00:: 07662719 1 0 -stripe%1:06:00:: 02784732 1 1 -stripe%1:07:00:: 04683136 5 0 -stripe%1:09:00:: 05845749 4 0 -stripe%1:10:00:: 07269552 3 0 -stripe%1:10:01:: 07269758 2 0 -stripe%2:35:00:: 01273263 1 0 -stripe_blight%1:26:00:: 14218991 1 0 -striped%5:00:00:patterned:00 01790807 1 1 -striped_bass%1:05:00:: 02568087 2 0 -striped_bass%1:13:00:: 07778103 1 0 -striped_button_quail%1:05:00:: 02020219 1 0 -striped_coral_root%1:20:00:: 12053962 1 0 -striped_dogwood%1:20:00:: 12753762 1 0 -striped_drum%1:05:00:: 02594942 1 0 -striped_gentian%1:20:00:: 12295429 1 0 -striped_hyena%1:05:00:: 02117512 1 0 -striped_killifish%1:05:00:: 01447331 1 0 -striped_maple%1:20:00:: 12753762 1 0 -striped_marlin%1:05:00:: 02631628 1 0 -striped_muishond%1:05:00:: 02444251 1 0 -striped_mullet%1:05:00:: 02601767 1 0 -striped_racer%1:05:00:: 01731941 1 0 -striped_skunk%1:05:00:: 02446206 1 0 -striped_squirrel%1:05:00:: 02359915 1 0 -striped_violet%1:20:00:: 12390099 1 0 -striper%1:05:00:: 02568087 3 0 -striper%1:13:00:: 07778103 2 0 -striper%1:18:00:: 10664076 1 0 -stripes%1:10:00:: 07269552 1 0 -striping%1:04:00:: 00264088 1 0 -stripling%1:18:00:: 09772029 1 0 -stripped%5:00:00:empty:00 01086915 2 0 -stripped%5:00:00:minimal:00 01496816 1 0 -stripped%5:00:00:unclothed:00 00460076 3 0 -stripped-down%5:00:00:minimal:00 01496816 1 0 -stripper%1:06:00:: 04340378 4 0 -stripper%1:18:00:: 10664340 3 0 -stripper%1:18:01:: 10664656 2 0 -stripper%1:27:00:: 15061550 1 0 -stripper_well%1:06:00:: 04340378 1 0 -stripping%1:04:00:: 00394803 1 0 -striptease%1:04:00:: 00531490 2 0 -striptease%1:18:00:: 10664340 1 0 -striptease_artist%1:18:00:: 10664340 1 0 -stripteaser%1:18:00:: 10664340 1 0 -stripy%5:00:00:patterned:00 01790807 1 0 -strive%2:33:00:: 01146051 2 6 -strive%2:41:00:: 02531199 1 13 -striver%1:18:00:: 10609556 1 0 -striving%1:04:00:: 00788766 1 3 -strix%1:05:00:: 01622596 1 0 -strix_aluco%1:05:00:: 01622959 1 0 -strix_nebulosa%1:05:00:: 01622779 1 0 -strix_occidentalis%1:05:00:: 01623880 1 0 -strix_varia%1:05:00:: 01623110 1 0 -strizostedion_vitreum_glaucum%1:05:00:: 02557909 1 0 -strobe%1:06:00:: 04340521 1 0 -strobe_light%1:06:00:: 04340521 1 0 -strobile%1:20:00:: 11682842 1 0 -strobilomyces%1:20:00:: 13059485 1 0 -strobilomyces_floccopus%1:20:00:: 13059657 1 0 -strobilus%1:20:00:: 11682842 1 0 -stroboscope%1:06:00:: 04340521 1 0 -stroheim%1:18:00:: 11322627 1 0 -stroke%1:04:00:: 00565302 1 3 -stroke%1:04:01:: 00144632 5 1 -stroke%1:04:03:: 00349369 12 0 -stroke%1:04:04:: 00569898 11 0 -stroke%1:10:00:: 06844903 9 0 -stroke%1:10:01:: 06799260 10 0 -stroke%1:11:00:: 07351195 2 2 -stroke%1:11:01:: 07413815 4 1 -stroke%1:11:02:: 07300960 8 0 -stroke%1:18:00:: 10664850 7 0 -stroke%1:23:00:: 13595094 6 0 -stroke%1:26:00:: 14082303 3 1 -stroke%2:32:00:: 00880658 4 0 -stroke%2:33:00:: 01124608 2 1 -stroke%2:33:01:: 01124722 3 0 -stroke%2:35:00:: 01225970 1 4 -stroke_play%1:04:00:: 00466524 1 0 -stroking%1:04:00:: 00144632 1 0 -stroll%1:04:00:: 00284101 1 1 -stroll%2:38:00:: 01917980 1 1 -stroller%1:06:00:: 02766534 2 0 -stroller%1:18:00:: 10553235 1 0 -stroma%1:08:00:: 05584152 3 0 -stroma%1:20:00:: 12962389 2 0 -stroma%1:20:01:: 12962488 1 0 -stromateid%1:05:00:: 02632989 1 0 -stromateid_fish%1:05:00:: 02632989 1 0 -stromateidae%1:05:00:: 02632694 1 0 -strombidae%1:05:00:: 01943213 1 0 -strombus%1:05:00:: 01943754 1 0 -strombus_gigas%1:05:00:: 01944118 1 0 -strong%3:00:00:: 02321009 1 58 -strong%3:00:04:: 01824244 4 0 -strong%5:00:00:alcoholic:00 01158974 8 0 -strong%5:00:00:forceful:00 00842199 10 0 -strong%5:00:00:fresh:01 01068609 9 0 -strong%5:00:00:intense:00 01513512 2 9 -strong%5:00:00:invulnerable:00 02526124 5 0 -strong%5:00:00:irregular:00 01961786 7 0 -strong%5:00:00:powerful:00 01826979 3 3 -strong%5:00:00:sound:01 02275412 6 0 -strong-arm%2:35:00:: 01397707 3 0 -strong-arm%2:37:00:: 01781520 2 0 -strong-arm%2:41:00:: 02515443 1 0 -strong-arm%5:00:00:forceful:00 00842324 1 0 -strong-armer%1:18:00:: 10184081 1 0 -strong-boned%5:00:00:bony:00 00296276 1 0 -strong-flavored%5:00:00:tasty:00 02399176 1 0 -strong-growing%5:00:00:invasive:00 01356143 1 0 -strong-minded%5:00:00:independent:00 00729894 2 0 -strong-minded%5:00:00:stubborn:00 02328559 1 0 -strong-scented%5:00:00:odorous:00 01057348 1 0 -strong-smelling%5:00:00:odorous:00 01057348 1 0 -strong-willed%5:00:00:stubborn:00 02328559 1 0 -strong_belief%1:09:00:: 05942888 1 0 -strong_breeze%1:19:00:: 11433013 1 0 -strong_drink%1:13:00:: 07901587 1 0 -strong_force%1:19:00:: 11516819 1 0 -strong_gale%1:19:00:: 11462276 1 0 -strong_interaction%1:19:00:: 11516819 1 0 -strong_point%1:07:00:: 05159225 1 1 -strong_suit%1:07:00:: 05159225 2 0 -strong_suit%1:14:00:: 07957546 1 0 -strongbox%1:06:00:: 04340750 1 0 -stronghold%1:06:00:: 04340935 1 0 -strongly%4:02:00:: 00177289 1 18 -strongly%4:02:01:: 00428245 2 0 -strongman%1:18:00:: 10665006 2 0 -strongman%1:18:01:: 10665190 1 0 -strongroom%1:06:00:: 04341133 1 0 -strongylodon%1:20:00:: 12571606 1 0 -strongylodon_macrobotrys%1:20:00:: 12571781 1 0 -strontianite%1:27:00:: 15061936 1 0 -strontium%1:27:00:: 14655731 1 0 -strontium_90%1:27:00:: 14656001 1 0 -strop%1:06:00:: 04341288 1 0 -strop%2:35:00:: 01246959 1 2 -strophanthin%1:27:00:: 15061674 1 0 -strophanthus%1:20:00:: 11775959 1 0 -strophanthus_kombe%1:20:00:: 11776234 1 0 -stropharia%1:20:00:: 13010401 1 0 -stropharia_ambigua%1:20:00:: 13010694 1 0 -stropharia_hornemannii%1:20:00:: 13010951 1 0 -stropharia_rugoso-annulata%1:20:00:: 13011221 1 0 -strophariaceae%1:20:00:: 13010219 1 0 -strophe%1:10:00:: 06386693 1 0 -stroppy%5:00:00:stubborn:00 02327315 1 0 -struck%5:00:00:affected:00 00071242 1 0 -structural%3:01:00:: 02897158 2 2 -structural%3:01:01:: 02897335 1 6 -structural%3:01:02:: 02949275 6 0 -structural%3:01:03:: 02949511 5 0 -structural%5:00:00:constructive:00 00586060 4 1 -structural%5:00:00:functional:00 01090593 3 1 -structural_anthropology%1:09:00:: 06168334 1 0 -structural_formula%1:10:00:: 06817312 1 0 -structural_gene%1:08:00:: 05441338 1 0 -structural_genomics%1:09:00:: 06075378 1 0 -structural_iron%1:27:00:: 15063108 1 0 -structural_linguistics%1:09:00:: 06181284 1 0 -structural_member%1:06:00:: 04341414 1 0 -structural_sociology%1:09:00:: 06168152 1 0 -structural_steel%1:27:00:: 15063224 1 0 -structuralism%1:09:01:: 06181284 1 0 -structuralism%1:09:02:: 06168334 2 0 -structuralism%1:09:03:: 06168152 3 0 -structurally%4:02:00:: 00243809 1 2 -structure%1:06:00:: 04341686 1 24 -structure%1:07:00:: 04931965 2 13 -structure%1:08:00:: 05225602 4 3 -structure%1:09:00:: 05726345 3 7 -structure%1:14:00:: 08378819 5 0 -structure%2:30:00:: 00404222 1 1 -structured%3:00:00:: 01671732 1 12 -structured%5:00:00:organic:02 01679744 2 0 -strudel%1:13:00:: 07627693 1 0 -struggle%1:04:00:: 00622068 3 1 -struggle%1:04:01:: 00788973 1 16 -struggle%1:04:02:: 00958896 2 11 -struggle%2:33:00:: 01090335 4 2 -struggle%2:35:00:: 01505058 2 7 -struggle%2:38:00:: 01921772 3 3 -struggle%2:41:00:: 02407338 1 13 -struggler%1:18:00:: 10665302 1 0 -struggling%5:00:00:troubled:00 02458691 1 3 -strum%1:11:00:: 07396120 1 0 -strum%2:39:00:: 02180362 1 2 -struma%1:26:00:: 14199477 1 0 -struma%1:26:01:: 14144247 2 0 -strumpet%1:18:00:: 09772930 1 0 -strung%3:44:00:: 03154362 1 1 -strung-out%5:00:00:addicted:00 00047406 1 0 -strut%1:04:00:: 00290125 1 2 -strut%1:06:00:: 04343148 2 0 -strut%2:38:00:: 01916634 1 2 -struthio%1:05:00:: 01518718 1 0 -struthio_camelus%1:05:00:: 01518878 1 0 -struthiomimus%1:05:00:: 01716298 1 0 -struthionidae%1:05:00:: 01518564 1 0 -struthioniformes%1:05:00:: 01518347 1 0 -strychnine%1:27:00:: 14715008 1 4 -strymon%1:05:00:: 02282716 1 0 -strymon_melinus%1:05:00:: 02283077 1 0 -stuart%1:14:00:: 08158460 3 0 -stuart%1:18:00:: 11322758 1 0 -stuart%1:18:01:: 10665455 2 0 -stuart_davis%1:18:00:: 10924987 1 0 -stub%1:06:00:: 02927399 5 0 -stub%1:10:00:: 06520429 3 0 -stub%1:10:01:: 06507815 4 0 -stub%1:17:00:: 09449657 1 1 -stub%1:17:01:: 09374646 2 0 -stub%2:29:00:: 00102420 4 0 -stub%2:30:00:: 00313354 3 0 -stub%2:35:00:: 01210622 2 0 -stub%2:35:01:: 01567183 1 0 -stub_nail%1:06:00:: 04343272 1 0 -stub_out%2:30:00:: 00478682 1 1 -stubbiness%1:07:00:: 05137778 1 0 -stubble%1:08:00:: 05263183 2 0 -stubble%1:27:00:: 14805899 1 0 -stubbled%5:00:00:unshaven:00 02154118 1 0 -stubbly%5:00:00:unshaven:00 02154118 1 0 -stubborn%3:00:00:: 02326695 1 5 -stubborn%5:00:00:intractable:00 02452562 2 0 -stubbornly%4:02:00:: 00198845 1 6 -stubbornness%1:07:00:: 04908835 1 1 -stubbornness%1:07:01:: 04863074 2 1 -stubbs%1:18:00:: 11322937 1 0 -stubby%5:00:00:short:01 01437349 1 0 -stucco%1:27:00:: 15062057 1 2 -stucco%2:35:00:: 01261371 2 0 -stucco%2:36:00:: 01678279 1 0 -stuck%3:00:00:: 00161065 1 0 -stuck%5:00:00:perplexed:00 01766958 2 0 -stuck-up%5:00:00:proud:00 01890382 1 1 -stuck_with%5:00:00:cursed:00 00670418 1 1 -stud%1:04:00:: 00498220 5 0 -stud%1:05:00:: 02377291 4 0 -stud%1:06:00:: 04143365 3 0 -stud%1:06:01:: 04343346 2 0 -stud%1:18:00:: 10665587 1 0 -stud%2:35:00:: 01358023 2 0 -stud%2:42:00:: 02689882 1 3 -stud_farm%1:06:00:: 04343919 1 0 -stud_finder%1:06:00:: 04344003 1 0 -stud_mare%1:05:00:: 02377603 1 0 -stud_poker%1:04:00:: 00498220 1 0 -studbook%1:10:00:: 06507330 1 0 -studded%5:00:00:adorned:00 00059782 1 1 -student%1:18:00:: 10665698 1 67 -student%1:18:01:: 10557854 2 14 -student_center%1:06:00:: 04343511 1 0 -student_lamp%1:06:00:: 04343630 1 0 -student_lodging%1:06:00:: 03541537 1 0 -student_nurse%1:18:00:: 10477713 1 0 -student_residence%1:06:00:: 03224893 1 0 -student_teacher%1:18:00:: 10666259 1 0 -student_union%1:06:00:: 04343740 1 0 -studentship%1:04:00:: 00604694 1 0 -studhorse%1:05:00:: 02377291 1 0 -studied%3:00:00:: 01798828 1 0 -studio%1:06:00:: 04344246 1 15 -studio%1:06:01:: 04344734 2 0 -studio%1:06:02:: 04344544 3 0 -studio_apartment%1:06:00:: 04344734 1 0 -studio_couch%1:06:00:: 04344873 1 0 -studious%5:00:00:careful:00 00311354 1 1 -studious%5:00:00:scholarly:00 02084101 2 0 -studiously%4:02:00:: 00187342 1 2 -studiousness%1:07:00:: 04866238 1 0 -study%1:04:00:: 00644503 1 90 -study%1:06:00:: 04345028 5 6 -study%1:06:01:: 04227144 7 2 -study%1:09:01:: 05784242 8 1 -study%1:09:02:: 05996646 6 3 -study%1:09:03:: 05755883 2 17 -study%1:09:04:: 05705355 4 6 -study%1:10:00:: 07218470 3 6 -study%1:10:01:: 07048627 10 0 -study%1:18:00:: 10666464 9 0 -study%2:31:00:: 00599992 4 13 -study%2:31:01:: 00607114 5 5 -study%2:31:02:: 00644583 1 73 -study%2:31:03:: 00607405 2 17 -study%2:31:04:: 00704388 6 2 -study%2:39:00:: 02166460 3 15 -study_hall%1:06:00:: 04345201 2 0 -study_hall%1:28:00:: 15299225 1 0 -studying%1:10:01:: 06598445 1 0 -stuff%1:06:00:: 04345288 2 5 -stuff%1:07:00:: 05210534 5 1 -stuff%1:09:00:: 05922305 7 0 -stuff%1:10:00:: 06609909 4 1 -stuff%1:10:01:: 07219004 6 0 -stuff%1:21:00:: 13251154 3 1 -stuff%1:27:00:: 14580897 1 5 -stuff%2:30:00:: 00320681 7 0 -stuff%2:30:02:: 00321148 6 0 -stuff%2:30:12:: 00497555 5 0 -stuff%2:34:00:: 01193099 4 0 -stuff%2:35:00:: 01524871 1 5 -stuff%2:35:01:: 01479333 3 0 -stuff%2:38:00:: 02094569 2 4 -stuff_and_nonsense%1:10:00:: 06609909 1 0 -stuff_shot%1:04:00:: 00110554 1 0 -stuffed%5:00:01:full:00 01086118 1 1 -stuffed%5:00:02:full:00 01086213 2 0 -stuffed_cabbage%1:13:00:: 07878283 1 0 -stuffed_derma%1:13:00:: 07878479 1 0 -stuffed_egg%1:13:00:: 07842433 1 0 -stuffed_grape_leaves%1:13:00:: 07866409 1 0 -stuffed_mushroom%1:13:00:: 07734879 1 0 -stuffed_peppers%1:13:00:: 07878647 1 0 -stuffed_shirt%1:18:00:: 10666615 1 0 -stuffed_tomato%1:13:01:: 07878785 2 0 -stuffed_tomato%1:13:02:: 07878926 1 0 -stuffer%1:10:00:: 07250727 2 0 -stuffer%1:18:00:: 10693459 1 0 -stuffily%4:02:00:: 00469473 1 0 -stuffiness%1:07:00:: 04648059 3 0 -stuffiness%1:07:01:: 05112474 2 0 -stuffiness%1:26:00:: 14321333 1 0 -stuffing%1:06:00:: 04345458 2 0 -stuffing%1:13:00:: 07678729 1 0 -stuffing_box%1:06:00:: 04345595 1 0 -stuffing_nut%1:06:00:: 04345787 1 0 -stuffy%5:00:00:conventional:00 00606347 2 1 -stuffy%5:00:00:obstructed:00 01622033 3 0 -stuffy%5:00:00:unventilated:00 02509484 1 1 -stultification%1:04:00:: 00272878 2 0 -stultification%1:10:00:: 06716992 1 0 -stultify%2:30:00:: 00225832 3 0 -stultify%2:32:00:: 00853445 2 0 -stultify%2:37:00:: 01801080 1 0 -stumble%1:04:00:: 00289388 1 0 -stumble%1:04:01:: 00076563 2 0 -stumble%2:31:00:: 00618057 4 0 -stumble%2:38:00:: 01900408 2 9 -stumble%2:38:01:: 01901133 1 11 -stumble%2:40:10:: 02206462 3 2 -stumblebum%1:18:00:: 10274639 2 0 -stumblebum%1:18:01:: 10666752 1 0 -stumbler%1:18:00:: 10667041 1 0 -stumbler%1:18:01:: 09879744 2 0 -stumbling_block%1:06:00:: 04345915 1 1 -stump%1:06:00:: 04346003 3 0 -stump%1:06:01:: 03159640 4 0 -stump%1:08:00:: 05560631 2 1 -stump%1:20:00:: 13111504 1 5 -stump%2:30:00:: 00195221 4 0 -stump%2:31:00:: 00620379 1 1 -stump%2:33:00:: 01094384 3 0 -stump%2:38:00:: 01925338 2 0 -stump_speech%1:10:00:: 07243306 1 0 -stump_spud%1:06:00:: 04289964 1 0 -stumper%1:10:00:: 06785367 1 0 -stumping%1:04:00:: 00801598 1 1 -stumpknocker%1:05:00:: 02563949 1 0 -stumpy%5:00:00:short:03 02386962 1 0 -stun%2:30:00:: 00268968 1 2 -stun%2:35:00:: 01410079 2 1 -stun%2:39:00:: 02115430 3 0 -stun_baton%1:06:00:: 04346157 1 0 -stun_gun%1:06:00:: 04346157 1 0 -stung%5:00:00:displeased:00 01806106 1 1 -stunned%5:00:00:confused:00 00436645 3 0 -stunned%5:00:00:surprised:00 02357810 1 2 -stunned%5:00:00:unconscious:00 00572714 2 0 -stunner%1:11:00:: 07299439 2 0 -stunner%1:18:00:: 10613996 1 0 -stunning%5:00:00:beautiful:00 00220739 4 0 -stunning%5:00:00:disorienting:00 01686036 3 0 -stunning%5:00:00:impressive:00 01282921 1 1 -stunning%5:00:00:surprising:00 02360171 2 0 -stunningly%4:02:00:: 00209976 1 0 -stunt%1:04:00:: 00046344 1 2 -stunt%1:05:00:: 01319187 2 0 -stunt%2:36:00:: 01713348 2 0 -stunt%2:41:00:: 02452413 1 1 -stunt_flier%1:18:00:: 09839860 1 0 -stunt_flying%1:04:00:: 00302861 1 0 -stunt_kite%1:06:00:: 04284869 1 0 -stunt_man%1:18:00:: 10666846 1 0 -stunt_pilot%1:18:00:: 09839860 1 0 -stunt_woman%1:18:00:: 10666846 1 0 -stunted%5:00:00:inferior:02 02347915 1 0 -stuntedness%1:07:00:: 05107495 1 0 -stunting%1:04:00:: 00302861 1 0 -stupa%1:06:00:: 04346328 1 0 -stupe%1:18:00:: 10667187 1 0 -stupefaction%1:04:00:: 01267135 3 0 -stupefaction%1:09:00:: 05679906 2 0 -stupefaction%1:12:00:: 07510495 1 0 -stupefied%5:00:00:confused:00 00436645 2 0 -stupefied%5:00:00:surprised:00 02358277 1 0 -stupefy%2:30:00:: 00268968 3 0 -stupefy%2:31:00:: 00622384 2 0 -stupefy%2:39:00:: 02115618 1 0 -stupefying%5:00:00:alarming:00 00196312 3 0 -stupefying%5:00:00:disorienting:00 01686269 2 0 -stupefying%5:00:01:impressive:00 01283155 1 1 -stupendous%5:00:00:large:00 01384730 1 2 -stupendously%4:02:00:: 00469613 1 0 -stupid%1:18:00:: 10667187 1 1 -stupid%3:00:00:: 00439588 1 10 -stupid%3:00:02:: 01336587 3 0 -stupid%5:00:00:confused:00 00436645 2 1 -stupid_person%1:18:01:: 10667187 1 0 -stupidity%1:04:00:: 01248075 2 1 -stupidity%1:09:00:: 05645597 1 5 -stupidly%4:02:00:: 00175344 1 3 -stupor%1:09:00:: 05679906 2 1 -stupor%1:12:00:: 07510625 1 1 -stuporous%5:00:00:lethargic:00 00875962 1 0 -sturdily%4:02:00:: 00469726 1 0 -sturdiness%1:07:00:: 05031726 2 0 -sturdiness%1:07:01:: 04862592 3 0 -sturdiness%1:26:00:: 14051381 1 0 -sturdy%3:00:00:: 01025913 2 0 -sturdy%5:00:00:robust:00 02038994 1 9 -sturdy%5:00:00:rugged:00 00707795 3 0 -sturgeon%1:05:00:: 02640242 1 0 -sturm_und_drang%1:26:00:: 13979173 1 0 -sturmabteilung%1:14:00:: 08212146 1 0 -sturnella%1:05:00:: 01572910 1 0 -sturnella_magna%1:05:00:: 01573240 1 0 -sturnella_neglecta%1:05:00:: 01573360 1 0 -sturnidae%1:05:00:: 01576506 1 0 -sturnus%1:05:00:: 01576863 1 0 -sturnus_vulgaris%1:05:00:: 01577035 1 0 -sturt's_desert_pea%1:20:00:: 12516828 1 0 -sturt_pea%1:20:00:: 12516828 1 0 -stutter%1:26:00:: 14402922 1 0 -stutter%2:32:00:: 00981544 1 2 -stutterer%1:18:00:: 10646780 1 0 -stuttgart%1:15:00:: 08774912 1 0 -stuyvesant%1:18:00:: 11323094 1 0 -sty%1:06:00:: 04346428 2 0 -sty%1:26:00:: 14185219 1 0 -stye%1:26:00:: 14185219 1 0 -stygian%5:00:00:dark:01 00273652 2 0 -stygian%5:00:00:infernal:00 01304250 1 0 -style%1:05:00:: 01901213 9 0 -style%1:06:00:: 04346511 8 0 -style%1:07:00:: 04928903 1 28 -style%1:07:01:: 04812871 7 0 -style%1:09:00:: 05750163 4 2 -style%1:09:01:: 05844105 3 7 -style%1:10:00:: 07066659 2 7 -style%1:10:01:: 06789215 6 0 -style%1:20:00:: 11677259 5 0 -style%2:32:00:: 01028466 1 1 -style%2:32:04:: 00993608 3 0 -style%2:36:00:: 01666894 2 0 -style_of_architecture%1:09:00:: 05841351 1 0 -style_sheet%1:10:00:: 06259584 1 0 -styleless%3:00:00:: 00976123 1 0 -stylemark%1:07:00:: 04732543 1 1 -styler%1:18:00:: 10155849 1 0 -stylet%1:05:00:: 01901348 1 0 -stylisation%1:04:00:: 01159776 1 0 -stylise%2:36:00:: 01687569 1 0 -stylised%5:00:00:artificial:00 01572604 1 0 -stylish%3:00:00:: 00975171 1 0 -stylish%3:00:02:: 00971075 2 0 -stylishly%4:02:00:: 00469822 1 0 -stylishness%1:07:00:: 04813712 1 0 -stylist%1:18:00:: 10667477 1 1 -stylist%1:18:01:: 10155849 2 0 -stylistic%5:00:00:rhetorical:00 02018296 1 1 -stylistically%4:02:00:: 00469931 1 0 -stylite%1:18:00:: 10667596 1 0 -stylization%1:04:00:: 01159776 1 2 -stylize%2:36:00:: 01687569 1 0 -stylized%5:00:00:artificial:00 01572604 1 1 -styloid_process%1:08:00:: 05542416 1 0 -stylomastoid_vein%1:08:00:: 05381325 1 0 -stylomecon%1:20:00:: 11908431 1 0 -stylomecon_heterophyllum%1:20:00:: 11908549 1 0 -stylophorum%1:20:00:: 11908718 1 0 -stylophorum_diphyllum%1:20:00:: 11908846 1 0 -stylopodium%1:20:00:: 11677485 1 0 -stylostixis%1:04:00:: 00710155 1 0 -stylus%1:06:00:: 04346511 2 0 -stylus%1:06:01:: 04346679 1 0 -stylus_printer%1:06:00:: 04595285 1 0 -stymie%1:09:00:: 05691376 2 0 -stymie%1:26:00:: 13927231 1 0 -stymie%2:41:00:: 02557199 1 0 -stymy%1:09:00:: 05691376 2 0 -stymy%1:26:00:: 13927231 1 0 -stymy%2:41:00:: 02557199 1 0 -styphelia%1:20:00:: 12255086 1 0 -styphelia_humifusum%1:20:00:: 12254168 1 0 -styphelia_triflora%1:20:00:: 12255225 1 0 -stypsis%1:07:00:: 05202034 1 0 -styptic%1:06:00:: 02750835 1 0 -styptic%5:00:00:astringent:00 00189833 1 0 -styptic_weed%1:20:00:: 12500751 1 0 -styracaceae%1:20:00:: 12776946 1 0 -styracosaur%1:05:00:: 01704626 1 0 -styracosaurus%1:05:00:: 01704626 1 0 -styrax%1:20:00:: 12777436 1 0 -styrax_family%1:20:00:: 12776946 1 0 -styrax_japonicum%1:20:00:: 12777778 1 0 -styrax_obassia%1:20:00:: 12777680 1 0 -styrax_texana%1:20:00:: 12777892 1 0 -styrene%1:27:00:: 14595543 1 0 -styrofoam%1:27:00:: 14595933 1 0 -styron%1:18:00:: 11323316 1 0 -styx%1:17:00:: 09449773 1 0 -suasible%5:00:00:susceptible:00 02361848 1 0 -suasion%1:10:00:: 07245125 1 0 -suave%5:00:00:diplomatic:00 00758800 2 1 -suave%5:00:00:refined:01 01948231 1 1 -suavely%4:02:00:: 00470050 1 0 -suaveness%1:07:00:: 04913322 1 0 -suavity%1:07:00:: 04913322 1 0 -sub%1:06:00:: 04347754 2 0 -sub%1:13:00:: 07697825 1 0 -sub%2:40:00:: 02258617 1 1 -sub-assembly%1:06:00:: 04346855 1 0 -sub-interval%1:09:00:: 06016746 1 3 -sub-rosa%5:00:00:covert:00 01707531 1 0 -sub-saharan%3:01:00:: 02804777 1 0 -sub-saharan_africa%1:15:00:: 09172480 1 0 -sub-test%1:04:00:: 01008271 1 2 -sub_judice%5:00:00:legal:00 01401734 1 0 -sub_rosa%4:02:00:: 00257522 1 0 -subacid%5:00:00:sour:00 02369683 1 0 -subacute%5:00:00:acute:00 00044987 1 0 -subacute_bacterial_endocarditis%1:26:00:: 14339219 1 0 -subacute_inclusion_body_encephalitis%1:26:00:: 14344189 1 0 -subacute_sclerosing_leukoencephalitis%1:26:00:: 14344189 1 0 -subacute_sclerosing_panencephalitis%1:26:00:: 14344189 1 0 -subalpine%5:00:00:upland:00 01219279 1 0 -subalpine_fir%1:20:00:: 11622591 1 0 -subalpine_larch%1:20:00:: 11619687 1 0 -subaltern%1:18:00:: 10667709 1 0 -subaltern%5:00:00:junior:00 02100968 1 0 -subaquatic%5:00:01:aquatic:00 00124493 2 0 -subaquatic%5:00:02:aquatic:00 00124685 1 0 -subaqueous%5:00:00:aquatic:00 00124685 1 0 -subarachnoid_space%1:08:00:: 05482922 1 0 -subarctic%3:01:00:: 02804139 1 0 -subartesian%3:00:00:: 00099097 1 0 -subatomic%3:01:00:: 02885192 1 0 -subatomic%5:00:00:small:00 01392160 2 0 -subatomic_particle%1:17:00:: 09386422 1 0 -subbase%1:06:00:: 04347004 1 0 -subbing%1:04:00:: 00623670 1 0 -subclass%1:14:00:: 08106661 1 0 -subclass_acnidosporidia%1:05:00:: 01425817 1 0 -subclass_actinopoda%1:05:00:: 01390287 1 0 -subclass_alismatidae%1:20:00:: 11668340 1 0 -subclass_amphineura%1:05:00:: 01954202 1 0 -subclass_anapsida%1:05:00:: 01661404 1 0 -subclass_archaeornithes%1:05:00:: 01515811 1 0 -subclass_archosauria%1:05:00:: 01695259 1 0 -subclass_arecidae%1:20:00:: 11668573 1 0 -subclass_asteridae%1:20:00:: 11910835 1 0 -subclass_branchiopoda%1:05:00:: 01994176 1 0 -subclass_caryophyllidae%1:20:00:: 11803475 1 0 -subclass_cirripedia%1:05:00:: 01998019 1 0 -subclass_cnidosporidia%1:05:00:: 01426784 1 0 -subclass_commelinidae%1:20:00:: 11668952 1 0 -subclass_copepoda%1:05:00:: 01996392 1 0 -subclass_crossopterygii%1:05:00:: 02514988 1 0 -subclass_diapsida%1:05:00:: 01662060 1 0 -subclass_dibranchia%1:05:00:: 01969103 1 0 -subclass_dibranchiata%1:05:00:: 01969103 1 0 -subclass_dilleniidae%1:20:00:: 12358485 1 0 -subclass_dipnoi%1:05:00:: 02515914 1 0 -subclass_discomycetes%1:20:00:: 13028337 1 0 -subclass_elasmobranchii%1:05:00:: 01481599 1 0 -subclass_entomostraca%1:05:00:: 01993949 1 0 -subclass_euascomycetes%1:20:00:: 13024348 1 0 -subclass_euryalida%1:05:00:: 02317983 1 0 -subclass_eutheria%1:05:00:: 01886220 1 0 -subclass_exopterygota%1:05:00:: 02232408 1 0 -subclass_hamamelidae%1:20:00:: 12313005 1 0 -subclass_heterobasidiomycetes%1:20:00:: 12997432 1 0 -subclass_holocephali%1:05:00:: 01480715 1 0 -subclass_homobasidiomycetes%1:20:00:: 12997128 1 0 -subclass_infusoria%1:05:00:: 01395531 1 0 -subclass_lepidosauria%1:05:00:: 01672767 1 0 -subclass_liliidae%1:20:00:: 12410381 1 0 -subclass_magnoliidae%1:20:00:: 11667112 1 0 -subclass_malacostraca%1:05:00:: 01975312 1 0 -subclass_metatheria%1:05:00:: 01873850 1 0 -subclass_ophiurida%1:05:00:: 02317653 1 0 -subclass_opisthobranchia%1:05:00:: 01950195 1 0 -subclass_ostracoda%1:05:00:: 01997698 1 0 -subclass_pantotheria%1:05:00:: 01873622 1 0 -subclass_phytomastigina%1:05:00:: 01420655 1 0 -subclass_prototheria%1:05:00:: 01871406 1 0 -subclass_rhizopoda%1:05:00:: 01391174 1 0 -subclass_rosidae%1:20:00:: 12212810 1 0 -subclass_selachii%1:05:00:: 01481599 1 0 -subclass_synapsida%1:05:00:: 01719175 1 0 -subclass_teleostei%1:05:00:: 02527813 1 0 -subclass_telosporidia%1:05:00:: 01422594 1 0 -subclass_zoomastigina%1:05:00:: 01418237 1 0 -subclavian%3:01:00:: 03142313 1 0 -subclavian_artery%1:08:00:: 05354580 1 0 -subclavian_vein%1:08:00:: 05381491 1 0 -subclinical%3:01:00:: 02885790 1 0 -subclinical_absence%1:26:00:: 14089080 1 0 -subcommittee%1:14:00:: 08325993 1 1 -subcompact%1:06:00:: 04347119 1 0 -subcompact_car%1:06:00:: 04347119 1 0 -subconscious%1:09:00:: 05613478 1 0 -subconscious%5:00:00:unconscious:00 00573093 1 1 -subconscious_mind%1:09:00:: 05613478 1 1 -subconsciously%4:02:00:: 00245716 1 1 -subconsciousness%1:09:00:: 05682431 1 0 -subcontinent%1:17:00:: 09449949 1 1 -subcontract%1:10:00:: 06524767 1 0 -subcontract%2:41:00:: 02460883 2 0 -subcontract%2:41:01:: 02461063 1 1 -subcontractor%1:18:00:: 10667863 1 0 -subcortical%3:01:00:: 02804254 1 0 -subculture%1:14:00:: 08288753 1 0 -subcutaneous%3:01:00:: 02876936 1 0 -subcutaneous_injection%1:04:00:: 00323436 1 0 -subcutaneous_test%1:09:00:: 05746708 1 0 -subcutaneously%4:02:00:: 00136088 1 0 -subdata_base%1:10:00:: 06638739 1 0 -subdeacon%1:18:00:: 10668024 1 0 -subdirectory%1:10:00:: 06490743 1 0 -subdivide%2:30:00:: 00333066 2 0 -subdivide%2:30:01:: 00333277 1 0 -subdivider%1:18:00:: 10668280 1 0 -subdivision%1:04:00:: 00398427 2 2 -subdivision%1:06:00:: 04348548 5 0 -subdivision%1:10:00:: 06392001 4 0 -subdivision%1:14:01:: 08401248 3 1 -subdivision%1:15:00:: 08674251 1 2 -subdivision_ascomycota%1:20:00:: 13023292 1 0 -subdivision_ascomycotina%1:20:00:: 13023292 1 0 -subdivision_basidiomycota%1:20:00:: 12996225 1 0 -subdivision_basidiomycotina%1:20:00:: 12996225 1 0 -subdivision_coniferophytina%1:20:00:: 11605708 1 0 -subdivision_cycadophyta%1:20:00:: 11599694 1 0 -subdivision_cycadophytina%1:20:00:: 11599694 1 0 -subdivision_deuteromycota%1:20:00:: 12995724 1 0 -subdivision_deuteromycotina%1:20:00:: 12995724 1 0 -subdivision_ginkgophyta%1:20:00:: 11663449 1 0 -subdivision_ginkgophytina%1:20:00:: 11663449 1 0 -subdivision_gnetophytina%1:20:00:: 11596486 1 0 -subdivision_mastigomycota%1:20:00:: 12976985 1 0 -subdivision_mastigomycotina%1:20:00:: 12976985 1 0 -subdivision_pinophytina%1:20:00:: 11607071 1 0 -subdivision_pteropsida%1:20:00:: 11664677 1 0 -subdivision_taxophytina%1:20:00:: 11660537 1 0 -subdivision_zygomycota%1:20:00:: 12972414 1 0 -subdivision_zygomycotina%1:20:00:: 12972414 1 0 -subdominant%1:10:00:: 06858144 1 0 -subduable%5:00:00:conquerable:00 00569468 1 0 -subduction%1:22:00:: 13562680 1 0 -subdue%2:30:00:: 00202445 6 0 -subdue%2:30:01:: 00462092 2 2 -subdue%2:30:03:: 00579712 5 0 -subdue%2:33:00:: 01108627 4 0 -subdue%2:37:00:: 01801847 3 0 -subdue%2:41:00:: 02424128 1 2 -subdued%5:00:00:dark:01 00275290 5 0 -subdued%5:00:00:dull:02 00284400 4 0 -subdued%5:00:00:restrained:00 02000406 2 2 -subdued%5:00:00:soft:04 01455540 1 3 -subdued%5:00:00:tame:02 02390194 3 0 -subduedness%1:07:00:: 04955907 1 0 -subduedness%1:07:01:: 04889779 2 0 -subduer%1:18:00:: 10668450 1 0 -subdural%3:01:00:: 02804391 1 0 -subedit%2:31:00:: 00628125 1 0 -subeditor%1:18:00:: 10045361 1 0 -suberic_acid%1:27:00:: 14616181 1 0 -subfamily%1:14:00:: 08108627 1 0 -subfamily_acoraceae%1:20:00:: 11780747 1 0 -subfamily_anserinae%1:05:00:: 01858023 1 0 -subfamily_bassariscidae%1:05:00:: 02508458 1 0 -subfamily_bovinae%1:05:00:: 02401305 1 0 -subfamily_cabombaceae%1:20:00:: 11717820 1 0 -subfamily_caesalpinioideae%1:20:00:: 12487647 1 0 -subfamily_carduelinae%1:05:00:: 01530691 1 0 -subfamily_carpinaceae%1:20:00:: 12286372 1 0 -subfamily_cetoniidae%1:05:00:: 02175263 1 0 -subfamily_corylaceae%1:20:00:: 12288422 1 0 -subfamily_dorylinae%1:05:00:: 02220393 1 0 -subfamily_dracaenaceae%1:20:00:: 12479066 1 0 -subfamily_dracenaceae%1:20:00:: 12479066 1 0 -subfamily_emberizidae%1:05:00:: 01536916 1 0 -subfamily_emberizinae%1:05:00:: 01536916 1 0 -subfamily_garrulinae%1:05:00:: 01579868 1 0 -subfamily_gerbillinae%1:05:00:: 02343487 1 0 -subfamily_hydromyinae%1:05:00:: 02334849 1 0 -subfamily_loriinae%1:05:00:: 01820190 1 0 -subfamily_lutrinae%1:05:00:: 02444500 1 0 -subfamily_malaconotinae%1:05:00:: 01599919 1 0 -subfamily_melinae%1:05:00:: 02447220 1 0 -subfamily_melolonthidae%1:05:00:: 02174153 1 0 -subfamily_mephitinae%1:05:00:: 02445564 1 0 -subfamily_merginae%1:05:00:: 01854047 1 0 -subfamily_mimosoideae%1:20:00:: 11754188 1 0 -subfamily_nelumbonaceae%1:20:00:: 11717007 1 0 -subfamily_numididae%1:05:00:: 01808785 1 0 -subfamily_numidinae%1:05:00:: 01808785 1 0 -subfamily_papilionoideae%1:20:00:: 12501745 1 0 -subfamily_perdicidae%1:05:00:: 01807265 1 0 -subfamily_perdicinae%1:05:00:: 01807265 1 0 -subfamily_peristediinae%1:05:00:: 02651215 1 0 -subfamily_petauristidae%1:05:00:: 02362025 1 0 -subfamily_philadelphaceae%1:20:00:: 12790656 1 0 -subfamily_potoroinae%1:05:00:: 01879983 1 0 -subfamily_pythoninae%1:05:00:: 01743223 1 0 -subfamily_smilacaceae%1:20:00:: 12469725 1 0 -subfamily_sterninae%1:05:00:: 02042923 1 0 -subfamily_sylviinae%1:05:00:: 01562978 1 0 -subfamily_taxodiaceae%1:20:00:: 11639609 1 0 -subfamily_triglinae%1:05:00:: 02650696 1 0 -subfamily_turdinae%1:05:00:: 01557028 1 0 -subfamily_uvulariaceae%1:20:00:: 12474620 1 0 -subfigure%1:25:00:: 13863602 1 1 -subfusc%5:00:00:unattractive:00 00169692 1 0 -subgenus%1:14:00:: 08109624 1 0 -subgenus_azalea%1:20:00:: 12245067 1 0 -subgenus_azaleastrum%1:20:00:: 12245067 1 0 -subgenus_calliopsis%1:20:00:: 11957162 1 0 -subgenus_chen%1:05:00:: 01856748 1 0 -subgenus_pastor%1:05:00:: 01577265 1 0 -subgenus_poinciana%1:20:00:: 12498739 1 0 -subgross%5:00:00:visible:00 02516690 1 0 -subgroup%1:09:00:: 06017053 2 0 -subgroup%1:14:00:: 08001083 1 1 -subhead%1:10:01:: 06345320 1 0 -subheading%1:10:00:: 06345320 1 0 -subhuman%3:00:00:: 01261528 1 1 -subhuman%5:00:00:unfit:02 01021499 2 0 -subjacent%3:00:00:: 02349477 1 0 -subject%1:06:00:: 04347225 2 14 -subject%1:09:00:: 05996646 3 11 -subject%1:09:01:: 05814291 4 9 -subject%1:10:00:: 06599788 1 20 -subject%1:10:01:: 06309931 5 4 -subject%1:10:02:: 06310125 8 0 -subject%1:18:00:: 09625401 7 2 -subject%1:18:01:: 10668666 6 2 -subject%2:32:04:: 00878636 4 0 -subject%2:33:00:: 01118292 2 6 -subject%2:39:03:: 02110927 1 10 -subject%2:41:00:: 02496816 3 1 -subject%5:00:00:affected:00 00071559 3 0 -subject%5:00:00:subordinate:02 02329864 2 0 -subject%5:00:00:susceptible:00 02361540 1 0 -subject_area%1:09:00:: 05996646 1 0 -subject_case%1:10:00:: 06311160 1 0 -subject_field%1:09:00:: 05996646 1 0 -subject_matter%1:10:00:: 06598915 1 3 -subjection%1:04:00:: 00089027 2 0 -subjection%1:26:00:: 13996300 1 0 -subjective%3:00:00:: 01615925 1 10 -subjective%3:00:01:: 01273910 2 0 -subjectively%4:02:00:: 00412178 1 0 -subjectiveness%1:07:00:: 04892544 1 0 -subjectivism%1:07:00:: 05214121 2 0 -subjectivism%1:09:00:: 05977135 1 0 -subjectivist%1:18:00:: 10669009 1 3 -subjectivity%1:07:00:: 04892544 1 0 -subjoin%2:35:00:: 01329026 1 0 -subjoining%1:04:00:: 00371846 1 0 -subjugable%5:00:00:conquerable:00 00569468 1 0 -subjugate%2:41:00:: 02496816 2 0 -subjugate%2:41:01:: 02424128 1 1 -subjugated%5:00:00:defeated:00 00694924 1 0 -subjugation%1:04:00:: 00089027 3 0 -subjugation%1:04:01:: 00421047 2 0 -subjugation%1:26:00:: 13996300 1 1 -subjugator%1:18:00:: 10669125 1 0 -subjunction%1:04:00:: 00371846 1 0 -subjunctive%1:24:00:: 13801937 1 0 -subjunctive%3:01:00:: 03094107 1 0 -subjunctive_mood%1:24:00:: 13801937 1 0 -subkingdom%1:14:00:: 07940865 1 0 -subkingdom_metazoa%1:05:00:: 01908703 1 0 -subkingdom_parazoa%1:05:00:: 01906328 1 0 -sublease%1:21:00:: 13248928 1 0 -sublease%2:40:00:: 02209261 1 0 -sublet%1:21:00:: 13248928 1 0 -sublet%2:40:00:: 02209261 1 0 -sublieutenant%1:18:00:: 10669236 1 0 -sublimate%1:27:00:: 15062284 1 0 -sublimate%2:30:00:: 00365810 5 0 -sublimate%2:30:01:: 00475183 3 0 -sublimate%2:30:02:: 00552138 2 0 -sublimate%2:30:05:: 00366020 4 0 -sublimate%2:38:00:: 01953527 1 0 -sublimate%5:00:00:pure:02 01907416 1 0 -sublimated%3:44:00:: 03154463 1 0 -sublimation%1:11:01:: 07297927 2 0 -sublimation%1:11:02:: 07360293 1 0 -sublimaze%1:06:00:: 03328650 1 0 -sublime%2:30:00:: 00365810 1 1 -sublime%2:30:05:: 00366020 2 0 -sublime%5:00:00:elated:00 00705616 3 1 -sublime%5:00:00:glorious:00 01121757 1 4 -sublime%5:00:00:noble:01 01588619 4 0 -sublime%5:00:00:sacred:00 02056566 2 1 -sublime_porte%1:14:00:: 08052227 1 0 -sublimed%3:44:00:: 03154463 1 0 -sublimely%4:02:00:: 00470189 1 0 -subliminal%5:00:00:imperceptible:00 01749125 1 0 -sublimity%1:07:00:: 04870889 1 0 -sublingual%3:01:00:: 02804515 1 0 -sublingual_gland%1:08:00:: 05533392 1 0 -sublingual_salivary_gland%1:08:00:: 05533392 1 0 -sublingual_vein%1:08:00:: 05381666 1 0 -subliterary%5:00:00:informal:02 01046994 1 1 -sublittoral%3:01:00:: 02888757 1 0 -sublunar%3:01:00:: 02757446 1 0 -sublunar%5:00:00:earthly:00 01181661 2 0 -sublunary%3:01:00:: 02757446 1 0 -sublunary%5:00:00:earthly:00 01181661 2 0 -subluxate%2:29:00:: 00091513 1 0 -subluxation%1:11:00:: 07445149 1 0 -submachine_gun%1:06:00:: 04347519 1 2 -submandibular_gland%1:08:00:: 05533635 1 0 -submandibular_salivary_gland%1:08:00:: 05533635 1 0 -submarine%1:06:00:: 04347754 1 7 -submarine%1:13:00:: 07697825 2 0 -submarine%2:33:00:: 01119803 5 0 -submarine%2:35:00:: 01240188 3 0 -submarine%2:35:01:: 01512921 2 0 -submarine%2:35:02:: 01225357 4 0 -submarine%2:38:00:: 01870674 1 0 -submarine%5:00:00:subsurface:00 02472137 1 0 -submarine_ball%1:04:00:: 00109771 1 1 -submarine_earthquake%1:11:00:: 07429870 1 0 -submarine_pitch%1:04:00:: 00109771 1 0 -submarine_sandwich%1:13:00:: 07697825 1 0 -submarine_torpedo%1:06:00:: 04348070 1 0 -submariner%1:18:00:: 10669357 1 0 -submaxilla%1:08:00:: 05275905 1 0 -submaxillary_gland%1:08:00:: 05533635 1 0 -submaxillary_salivary_gland%1:08:00:: 05533635 1 0 -submediant%1:10:00:: 06858384 1 0 -submenu%1:10:00:: 06493721 1 0 -submerge%2:30:02:: 00217700 4 0 -submerge%2:35:00:: 01339294 2 1 -submerge%2:35:01:: 01578254 3 0 -submerge%2:38:00:: 01991472 1 2 -submerged%5:00:01:subsurface:00 02472252 1 0 -submerged%5:00:02:aquatic:00 00124685 2 0 -submergence%1:11:00:: 07364115 1 0 -submergible%3:00:00:: 02472693 1 0 -submerging%1:11:00:: 07364115 1 0 -submerse%2:35:00:: 01578254 2 0 -submerse%2:38:00:: 01991472 1 0 -submersed%5:00:01:subsurface:00 02472252 1 0 -submersed%5:00:02:aquatic:00 00124685 2 0 -submersible%1:06:00:: 04348184 2 0 -submersible%1:06:01:: 04348359 1 0 -submersible%3:00:00:: 02472693 1 0 -submersible_warship%1:06:00:: 04348184 1 0 -submersion%1:04:00:: 00277569 2 0 -submersion%1:11:00:: 07364115 1 0 -submission%1:04:01:: 01166926 2 2 -submission%1:10:00:: 07167578 1 3 -submission%1:10:01:: 06771957 6 0 -submission%1:10:02:: 06772094 5 0 -submission%1:10:03:: 06731510 7 0 -submission%1:12:00:: 07509325 4 0 -submission%1:26:00:: 14580090 3 0 -submissive%3:00:00:: 00788821 1 4 -submissive%5:00:00:servile:00 00790691 2 0 -submissively%4:02:00:: 00308031 1 0 -submissiveness%1:07:00:: 04906471 1 0 -submit%2:31:00:: 00732394 10 0 -submit%2:31:12:: 00669762 7 2 -submit%2:32:00:: 00878136 2 8 -submit%2:32:01:: 00878636 1 12 -submit%2:32:02:: 00878348 6 2 -submit%2:33:00:: 01118081 3 6 -submit%2:33:02:: 01072641 8 1 -submit%2:40:00:: 02262752 4 4 -submit%2:40:01:: 02310328 9 0 -submit%2:41:00:: 02589013 5 2 -submitter%1:18:00:: 10669486 2 0 -submitter%1:18:01:: 10669727 1 0 -submucosa%1:08:00:: 05429994 1 2 -subnormal%1:18:00:: 10669876 1 0 -subnormal%5:00:00:abnormal:00 01597702 1 0 -subnormality%1:09:00:: 05646218 2 0 -subnormality%1:26:00:: 14505667 1 0 -subocean%5:00:00:marine:00 01381615 1 0 -suboceanic%5:00:00:marine:00 01381615 1 0 -subocular%3:01:00:: 02870315 1 0 -suborbital%3:01:00:: 02979443 1 0 -suborbital%3:01:02:: 02870315 2 0 -suborder%1:14:00:: 08107191 1 0 -suborder_alcyonacea%1:05:00:: 01915290 1 0 -suborder_anisoptera%1:05:00:: 02268334 1 0 -suborder_anseres%1:05:00:: 01846156 1 0 -suborder_anthropoidea%1:05:00:: 02470451 1 0 -suborder_blattaria%1:05:00:: 02233096 1 0 -suborder_blattodea%1:05:00:: 02233096 1 0 -suborder_blennioidea%1:05:00:: 02612393 1 0 -suborder_brachyura%1:05:00:: 01976477 1 0 -suborder_carnosaura%1:05:00:: 01713310 1 0 -suborder_cephalaspida%1:05:00:: 01475421 1 0 -suborder_ceratopsia%1:05:00:: 01703341 1 0 -suborder_ceratosaura%1:05:00:: 01712432 1 0 -suborder_charadrii%1:05:00:: 02022135 1 0 -suborder_clamatores%1:05:00:: 01547143 1 0 -suborder_euronithopoda%1:05:00:: 01705247 1 0 -suborder_eurylaimi%1:05:00:: 01546223 1 0 -suborder_gorgonacea%1:05:00:: 01916010 1 0 -suborder_gorgoniacea%1:05:00:: 01916010 1 0 -suborder_heteroptera%1:05:00:: 02241184 1 0 -suborder_heterostraci%1:05:00:: 01475025 1 0 -suborder_homoptera%1:05:00:: 02245592 1 0 -suborder_hyperoartia%1:05:00:: 01477184 1 0 -suborder_hyperotreta%1:05:00:: 01478073 1 0 -suborder_hystricomorpha%1:05:00:: 02346315 1 0 -suborder_lacertilia%1:05:00:: 01673668 1 0 -suborder_lari%1:05:00:: 02040698 1 0 -suborder_lemuroidea%1:05:00:: 02496576 1 0 -suborder_limicolae%1:05:00:: 02022498 1 0 -suborder_lipotyphla%1:05:00:: 01888821 1 0 -suborder_maniraptora%1:05:00:: 01716732 1 0 -suborder_manteodea%1:05:00:: 02235575 1 0 -suborder_marginocephalia%1:05:00:: 01702623 1 0 -suborder_megachiroptera%1:05:00:: 02139479 1 0 -suborder_megaloptera%1:05:00:: 02265471 1 0 -suborder_menotyphla%1:05:00:: 01888948 1 0 -suborder_menurae%1:05:00:: 01545149 1 0 -suborder_microchiroptera%1:05:00:: 02140970 1 0 -suborder_mugiloidea%1:05:00:: 02600953 1 0 -suborder_myomorpha%1:05:00:: 02330582 1 0 -suborder_mysticeti%1:05:00:: 02062991 1 0 -suborder_myxiniformes%1:05:00:: 01478073 1 0 -suborder_myxinoidei%1:05:00:: 01478073 1 0 -suborder_natantia%1:05:00:: 01986367 1 0 -suborder_nematocera%1:05:00:: 02199712 1 0 -suborder_nothosauria%1:05:00:: 01725933 1 0 -suborder_odontoceti%1:05:00:: 02066450 1 0 -suborder_ophidia%1:05:00:: 01726390 1 0 -suborder_ornithomimida%1:05:00:: 01715692 1 0 -suborder_ornithopoda%1:05:00:: 01705247 1 0 -suborder_oscines%1:05:00:: 01524885 1 0 -suborder_osteostraci%1:05:00:: 01475421 1 0 -suborder_otides%1:05:00:: 02018485 1 0 -suborder_pachycephalosaurus%1:05:00:: 01702862 1 0 -suborder_passeres%1:05:00:: 01524885 1 0 -suborder_percoidea%1:05:00:: 02554512 1 0 -suborder_petromyzoniformes%1:05:00:: 01477184 1 0 -suborder_pinnipedia%1:05:00:: 02075727 1 0 -suborder_plesiosauria%1:05:00:: 01725427 1 0 -suborder_prosauropoda%1:05:00:: 01708648 1 0 -suborder_prosimii%1:05:00:: 02495789 1 0 -suborder_reptantia%1:05:00:: 01982482 1 0 -suborder_ruminantia%1:05:00:: 02398732 1 0 -suborder_sauria%1:05:00:: 01673668 1 0 -suborder_sauropoda%1:05:00:: 01708778 1 0 -suborder_sauropodomorpha%1:05:00:: 01708332 1 0 -suborder_sciuromorpha%1:05:00:: 02354950 1 0 -suborder_scombroidea%1:05:00:: 02623170 1 0 -suborder_scorpaenoidea%1:05:00:: 02641825 1 0 -suborder_serpentes%1:05:00:: 01726390 1 0 -suborder_strepsirhini%1:05:00:: 02497214 1 0 -suborder_tarsioidea%1:05:00:: 02501101 1 0 -suborder_theropoda%1:05:00:: 01711662 1 0 -suborder_thyreophora%1:05:00:: 01701334 1 0 -suborder_tyranni%1:05:00:: 01546660 1 0 -suborder_xenarthra%1:05:00:: 02453890 1 0 -suborder_zygoptera%1:05:00:: 02268746 1 0 -subordinate%1:10:00:: 06292973 2 0 -subordinate%1:18:00:: 10669991 1 3 -subordinate%2:30:03:: 00579712 2 0 -subordinate%2:31:00:: 00659535 1 1 -subordinate%3:00:01:: 00792991 1 2 -subordinate%3:00:02:: 02329355 2 0 -subordinate%3:00:03:: 00730470 3 0 -subordinate_clause%1:10:00:: 06314808 1 0 -subordinate_conjunction%1:10:00:: 06326226 1 0 -subordinate_word%1:10:00:: 06292973 1 0 -subordinateness%1:26:00:: 13951984 1 0 -subordinating%3:00:00:: 00552618 1 0 -subordinating_conjunction%1:10:00:: 06326226 2 0 -subordinating_conjunction%1:24:00:: 13799796 1 0 -subordination%1:04:00:: 01128655 5 0 -subordination%1:07:00:: 04907153 4 0 -subordination%1:24:01:: 13800675 3 0 -subordination%1:24:02:: 13807853 2 0 -subordination%1:26:00:: 14001852 1 0 -subordinative%3:00:00:: 00552618 1 0 -suborn%2:32:00:: 00834943 3 0 -suborn%2:32:01:: 00835158 2 0 -suborn%2:41:00:: 02581276 1 0 -subornation%1:10:00:: 07252967 1 0 -subornation%1:10:01:: 06736946 2 0 -subornation_of_perjury%1:10:00:: 07253142 1 0 -suborner%1:18:00:: 09874260 1 0 -subpart%1:24:00:: 13811340 1 1 -subphylum%1:14:00:: 08103299 1 0 -subphylum_cephalochordata%1:05:00:: 01467180 1 0 -subphylum_craniata%1:05:00:: 01471070 1 0 -subphylum_pentastomida%1:05:00:: 01788730 1 0 -subphylum_tunicata%1:05:00:: 01467986 1 0 -subphylum_urochorda%1:05:00:: 01467986 1 0 -subphylum_urochordata%1:05:00:: 01467986 1 0 -subphylum_vertebrata%1:05:00:: 01471070 1 0 -subpoena%1:10:00:: 06557047 1 0 -subpoena%2:32:00:: 00793418 1 1 -subpoena_ad_testificandum%1:10:00:: 06557047 1 0 -subpoena_duces_tecum%1:10:00:: 06557317 1 1 -subpopulation%1:09:00:: 06026508 1 0 -subprogram%1:10:00:: 06582403 1 0 -subrogate%2:40:00:: 02360882 1 0 -subrogation%1:04:00:: 00198118 1 0 -subroutine%1:10:00:: 06582403 1 0 -subroutine_library%1:14:00:: 07977592 1 0 -subscribe%2:32:02:: 00996485 2 1 -subscribe%2:32:03:: 00806314 3 1 -subscribe%2:40:00:: 02209745 5 0 -subscribe%2:40:01:: 02299110 1 2 -subscribe%2:40:04:: 02299269 4 0 -subscribe_to%2:40:00:: 02209745 1 1 -subscribed%5:00:00:signed:00 02161136 1 0 -subscriber%1:18:00:: 10670310 3 0 -subscriber%1:18:01:: 10670483 2 0 -subscriber%1:18:02:: 10670668 1 0 -subscriber_line%1:06:00:: 04402057 1 0 -subscript%1:10:00:: 06820212 1 0 -subscript%3:00:00:: 02349852 1 0 -subscription%1:04:00:: 01090018 3 0 -subscription%1:04:01:: 00615659 4 0 -subscription%1:10:00:: 07179820 2 1 -subscription%1:21:00:: 13281130 1 1 -subscription_right%1:21:00:: 13241407 1 1 -subscription_warrant%1:21:00:: 13418713 1 0 -subsection%1:06:00:: 04348548 1 12 -subsequence%1:07:00:: 05047617 2 0 -subsequence%1:11:00:: 07295507 1 0 -subsequent%3:00:00:: 00122626 1 5 -subsequently%4:02:00:: 00061203 1 4 -subsequentness%1:07:00:: 05047617 1 0 -subserve%2:41:00:: 02548588 1 0 -subservience%1:07:00:: 04906712 3 0 -subservience%1:26:00:: 14529835 1 0 -subservience%1:26:01:: 13952466 2 0 -subservient%5:00:00:helpful:00 01196775 2 0 -subservient%5:00:00:servile:00 00790691 3 0 -subservient%5:00:00:subordinate:02 02330064 1 1 -subserviently%4:02:00:: 00412409 1 0 -subservientness%1:26:00:: 13952466 1 0 -subset%1:14:00:: 08001209 1 0 -subshrub%1:20:00:: 13118707 1 0 -subside%2:30:00:: 00232956 1 4 -subside%2:38:00:: 01986185 3 0 -subside%2:38:02:: 01986367 2 0 -subside%2:38:03:: 01971929 4 0 -subsidence%1:11:00:: 07362218 2 0 -subsidence%1:11:01:: 07361416 3 0 -subsidence%1:11:02:: 07419960 1 0 -subsidiarity%1:26:00:: 13951984 1 0 -subsidiary%1:14:00:: 08003935 2 0 -subsidiary%1:18:00:: 10669991 1 0 -subsidiary%5:00:00:secondary:01 01854129 1 0 -subsidiary_company%1:14:00:: 08003935 1 0 -subsidiary_ledger%1:21:00:: 13404879 1 0 -subsiding%1:11:00:: 07362218 1 0 -subsidisation%1:04:00:: 00087423 2 0 -subsidisation%1:21:00:: 13385583 1 0 -subsidise%2:40:00:: 02216710 2 0 -subsidise%2:40:01:: 02217011 1 0 -subsidised%5:00:00:supported:02 02352868 1 0 -subsidiser%1:18:00:: 10670885 1 0 -subsidization%1:04:00:: 00087423 2 0 -subsidization%1:21:00:: 13385583 1 0 -subsidize%2:40:00:: 02216710 1 6 -subsidize%2:40:01:: 02217011 2 0 -subsidized%5:00:00:supported:02 02352868 1 1 -subsidizer%1:18:00:: 10670885 1 0 -subsidy%1:21:00:: 13267014 1 1 -subsist%2:42:00:: 02616713 1 1 -subsistence%1:21:00:: 13366537 1 3 -subsistence%1:26:00:: 13957493 3 0 -subsistence%1:26:01:: 13962360 2 1 -subsistence_farming%1:04:00:: 00920357 1 0 -subsister%1:18:00:: 10681194 1 0 -subsoil%1:27:00:: 14695838 1 1 -subsonic%3:00:00:: 00175719 1 0 -subspace%1:14:00:: 08004342 1 8 -subspecies%1:14:00:: 08110648 1 3 -substance%1:03:00:: 00019613 1 17 -substance%1:03:01:: 00020090 7 0 -substance%1:09:00:: 05919866 3 2 -substance%1:09:01:: 05921123 2 2 -substance%1:10:00:: 06598915 6 0 -substance%1:21:00:: 13353858 5 0 -substance%1:27:00:: 14580597 4 0 -substance_abuse%1:04:00:: 00947923 1 0 -substance_abuser%1:18:00:: 10036266 1 0 -substandard%5:00:00:nonstandard:02 02297409 1 0 -substantia_alba%1:08:00:: 05483677 1 0 -substantia_grisea%1:08:00:: 05483388 1 0 -substantia_nigra%1:08:00:: 05500006 1 0 -substantial%3:00:00:: 00625393 3 0 -substantial%5:00:00:considerable:00 00625055 1 22 -substantial%5:00:00:essential:00 00901969 2 1 -substantial%5:00:00:sound:01 02275412 5 0 -substantial%5:00:00:wholesome:00 02558528 4 0 -substantiality%1:07:00:: 04761212 1 0 -substantially%4:02:01:: 00014285 1 9 -substantially%4:02:02:: 00379432 2 1 -substantialness%1:07:00:: 04761212 1 0 -substantiate%2:30:02:: 00221413 4 0 -substantiate%2:31:00:: 00665886 1 2 -substantiate%2:36:04:: 01644746 3 0 -substantiate%2:42:00:: 02698443 2 0 -substantiating%5:00:00:supportive:00 02355521 1 0 -substantiation%1:04:00:: 00153961 2 0 -substantiation%1:09:00:: 05825245 1 0 -substantiative%5:00:00:supportive:00 02355521 1 0 -substantival%3:01:00:: 03120834 1 0 -substantive%1:10:00:: 06303540 1 0 -substantive%3:00:00:: 00055539 2 0 -substantive%5:00:00:essential:00 00901969 1 1 -substantive%5:00:00:meaningful:00 01497245 3 0 -substantive_dye%1:27:00:: 14987341 1 0 -substation%1:06:00:: 04348702 1 1 -substitutability%1:07:00:: 04737234 1 0 -substitutable%5:00:00:exchangeable:00 00917768 2 0 -substitutable%5:00:00:synonymous:00 02381613 1 0 -substitute%1:09:00:: 05696425 1 9 -substitute%1:18:00:: 10648237 3 0 -substitute%1:18:01:: 10671042 2 0 -substitute%2:40:00:: 02257767 1 13 -substitute%2:40:01:: 02258617 2 5 -substitute%2:41:09:: 02394662 3 0 -substitute%5:00:00:artificial:00 01572974 3 0 -substitute%5:00:00:secondary:01 01853934 2 0 -substitute%5:00:02:secondary:01 01855446 1 0 -substituting%1:04:00:: 00623670 1 0 -substitution%1:04:00:: 00196485 2 0 -substitution%1:11:00:: 07443761 1 1 -substitution_class%1:10:00:: 06309684 1 0 -substrate%1:10:00:: 06903699 4 0 -substrate%1:15:00:: 08657887 3 0 -substrate%1:15:01:: 08660146 2 0 -substrate%1:27:00:: 14738892 1 2 -substratum%1:10:00:: 06903699 3 0 -substratum%1:15:00:: 08657887 2 0 -substratum%1:15:01:: 08660146 1 0 -substring%1:10:00:: 07013933 1 0 -substructure%1:06:00:: 03387016 2 0 -substructure%1:06:01:: 03570372 1 0 -subsume%2:31:01:: 00685224 2 0 -subsume%2:42:00:: 02634667 1 0 -subsumption%1:09:00:: 05736002 2 0 -subsumption%1:10:00:: 06754415 1 0 -subsurface%3:00:00:: 02471782 1 1 -subsystem%1:14:00:: 08435937 1 4 -subtend%2:42:00:: 02693842 1 2 -subterfuge%1:10:00:: 06760508 1 1 -subterminal%5:00:00:intermediate:00 01015798 1 0 -subterranean%5:00:00:covert:00 01707733 2 0 -subterranean%5:00:00:subsurface:00 02472384 1 0 -subterraneous%5:00:00:covert:00 01707733 2 0 -subterraneous%5:00:00:subsurface:00 02472384 1 0 -subthalamic_nucleus%1:08:00:: 05498581 1 0 -subthalamus%1:08:00:: 05499044 1 0 -subtilin%1:06:00:: 04348854 1 0 -subtilise%2:30:01:: 00392758 1 0 -subtilize%2:30:00:: 00552138 2 0 -subtilize%2:30:01:: 00392758 3 0 -subtilize%2:31:00:: 00650233 1 0 -subtitle%1:10:00:: 06347037 2 0 -subtitle%1:10:01:: 06347588 1 0 -subtitle%2:40:00:: 02332311 1 1 -subtle%5:00:00:harmful:00 01162406 3 0 -subtle%5:00:00:impalpable:00 01717901 1 9 -subtle%5:00:00:perceptive:00 01745846 2 0 -subtlety%1:07:00:: 04711256 2 1 -subtlety%1:10:00:: 06606191 1 1 -subtly%4:02:00:: 00470354 1 1 -subtonic%1:10:00:: 06858539 1 0 -subtopia%1:15:00:: 08539893 1 0 -subtotal%1:09:00:: 05860975 1 0 -subtract%2:30:00:: 00586973 2 0 -subtract%2:31:00:: 00641252 1 9 -subtracter%1:06:00:: 04348988 2 0 -subtracter%1:18:00:: 10671300 1 0 -subtraction%1:04:00:: 00360757 2 0 -subtraction%1:04:01:: 00871862 1 0 -subtractive%3:00:00:: 00050083 1 0 -subtrahend%1:23:00:: 13729135 1 0 -subtreasury%1:21:00:: 13358260 1 0 -subtropic%3:01:00:: 02929216 1 0 -subtropical%3:01:00:: 02929216 1 0 -subtropics%1:15:00:: 08674344 1 0 -subularia%1:20:00:: 11898079 1 0 -subularia_aquatica%1:20:00:: 11898271 1 0 -subunit%1:23:00:: 13662703 1 0 -suburb%1:15:00:: 08554440 1 16 -suburban%3:01:00:: 02804590 1 22 -suburban_area%1:15:00:: 08554440 1 0 -suburbanise%2:30:00:: 00122853 2 0 -suburbanise%2:30:01:: 00123018 1 0 -suburbanised%5:00:00:decentralized:00 01108586 1 0 -suburbanite%1:18:00:: 10671387 1 2 -suburbanize%2:30:00:: 00122853 2 0 -suburbanize%2:30:01:: 00123018 1 0 -suburbanized%5:00:00:decentralized:00 01108586 1 1 -suburbia%1:14:00:: 08288977 2 0 -suburbia%1:15:00:: 08554440 1 0 -subvent%2:32:00:: 00889740 1 0 -subvention%1:04:00:: 01061203 2 0 -subvention%1:21:00:: 13267263 1 0 -subvention%2:32:00:: 00889740 1 0 -subversion%1:04:00:: 00272448 1 0 -subversion%1:04:01:: 00215838 2 0 -subversive%1:18:00:: 10527334 1 0 -subversive%5:00:00:disloyal:00 00963283 1 0 -subversive_activity%1:04:00:: 00215838 1 0 -subversiveness%1:07:00:: 04879658 1 0 -subvert%2:35:00:: 01565028 4 0 -subvert%2:41:00:: 02402409 1 1 -subvert%2:41:01:: 02543607 3 0 -subvert%2:41:03:: 02579447 2 0 -subverter%1:18:00:: 10527334 1 0 -subvocalise%2:32:00:: 00979667 1 0 -subvocaliser%1:18:00:: 10671467 1 0 -subvocalize%2:32:00:: 00979667 1 0 -subvocalizer%1:18:00:: 10671467 1 0 -subway%1:06:00:: 03757138 1 3 -subway%1:06:01:: 04508804 2 0 -subway_fare%1:21:00:: 13308650 1 0 -subway_station%1:06:00:: 04349077 1 0 -subway_system%1:06:00:: 03757138 1 0 -subway_token%1:06:00:: 04349189 1 0 -subway_train%1:06:00:: 04349306 1 0 -subwoofer%1:06:00:: 04349401 1 0 -succade%1:13:00:: 07600506 1 0 -succedaneum%1:09:00:: 05696941 1 0 -succeed%2:41:00:: 02524171 1 28 -succeed%2:41:01:: 02406585 2 12 -succeeder%1:18:00:: 09762821 1 0 -succeeding%3:00:00:: 00127296 1 3 -succeeding%5:00:00:incoming:00 01294975 2 0 -success%1:04:00:: 00063652 2 23 -success%1:11:00:: 07319103 1 36 -success%1:18:00:: 09762821 4 3 -success%1:26:00:: 14474894 3 10 -successful%3:00:00:: 02331262 1 42 -successfully%4:02:00:: 00119940 1 15 -successfulness%1:26:00:: 14474052 1 0 -succession%1:04:00:: 01010458 3 1 -succession%1:04:01:: 00082754 5 0 -succession%1:07:00:: 05044822 1 3 -succession%1:14:00:: 08459908 2 1 -succession%1:22:00:: 13562862 4 0 -successive%5:00:00:ordered:00 01667729 1 5 -successively%4:02:00:: 00180420 1 1 -successiveness%1:07:00:: 05044822 1 0 -successor%1:09:00:: 05696803 2 2 -successor%1:18:00:: 10671613 3 0 -successor%1:18:01:: 10671736 1 4 -succinct%5:00:00:concise:00 00547317 1 0 -succinctly%4:02:01:: 00290308 1 1 -succinctness%1:10:00:: 07089024 1 0 -succinic%3:01:00:: 02840840 1 0 -succinic_acid%1:27:00:: 14616292 1 0 -succinylcholine%1:06:00:: 04349526 1 0 -succor%1:04:00:: 01209220 1 2 -succor%2:41:00:: 02548710 1 0 -succorer%1:18:00:: 10671898 1 0 -succory%1:20:00:: 11953038 1 0 -succos%1:28:00:: 15161872 1 0 -succotash%1:13:00:: 07879072 1 0 -succoth%1:28:00:: 15161872 1 0 -succour%1:04:00:: 01209220 1 0 -succour%2:41:00:: 02548710 1 0 -succourer%1:18:00:: 10671898 1 0 -succuba%1:18:00:: 09543021 1 0 -succubus%1:18:00:: 09543021 1 0 -succulence%1:07:00:: 04996215 1 0 -succulency%1:07:00:: 04996215 1 0 -succulent%1:20:00:: 13084184 1 0 -succulent%5:00:00:juicy:00 01369078 1 0 -succumb%2:32:00:: 00804476 1 4 -succumb%2:42:00:: 02620466 2 0 -succus%1:08:00:: 05398609 1 0 -succuss%2:38:00:: 01890351 1 0 -succussion%1:04:00:: 00876377 1 0 -such%4:02:00:: 00147386 1 28 -such%5:00:00:much:00 01554230 1 22 -suchlike%5:00:00:like:00 01410222 1 0 -suck%1:04:00:: 00842692 1 1 -suck%2:34:02:: 01186428 7 0 -suck%2:34:04:: 01169704 1 4 -suck%2:35:00:: 01539063 6 0 -suck%2:38:00:: 01854888 2 2 -suck%2:39:00:: 02117170 5 0 -suck%2:42:00:: 02674340 4 0 -suck%2:43:00:: 02765692 3 0 -suck_in%2:34:00:: 01197980 1 2 -suck_in%2:35:01:: 01282142 3 1 -suck_in%2:43:00:: 02765692 2 1 -suck_out%2:35:00:: 01540693 1 0 -suck_up%2:32:00:: 00880978 3 0 -suck_up%2:35:00:: 01539063 1 1 -suck_up%2:37:09:: 01804753 2 0 -sucker%1:05:01:: 01444922 7 0 -sucker%1:05:02:: 02465414 6 0 -sucker%1:13:01:: 07607605 5 0 -sucker%1:13:02:: 07779895 4 0 -sucker%1:18:00:: 10672066 3 0 -sucker%1:18:01:: 09921409 1 1 -sucker%1:20:00:: 13164881 2 0 -sucker_punch%1:04:00:: 00136152 1 0 -suckerfish%1:05:00:: 02574910 1 0 -sucking%1:04:00:: 00842692 1 0 -sucking_fish%1:05:00:: 02574910 1 0 -sucking_louse%1:05:00:: 02183857 1 0 -sucking_pig%1:05:00:: 02395855 1 0 -suckle%2:34:00:: 01186428 2 0 -suckle%2:34:01:: 01187385 1 0 -suckled%5:00:00:breast-fed:00 00267268 1 0 -suckling%1:04:00:: 00842997 4 0 -suckling%1:05:00:: 01323261 3 0 -suckling%1:18:00:: 10368291 2 0 -suckling%1:18:01:: 11323448 1 0 -suckling_pig%1:13:00:: 07669098 1 0 -suckling_reflex%1:04:00:: 00867790 1 0 -sucralfate%1:06:00:: 04349701 1 0 -sucrase%1:27:00:: 14921622 1 0 -sucre%1:15:00:: 08853612 2 0 -sucre%1:23:00:: 13707585 1 0 -sucrose%1:27:00:: 15062778 1 0 -suction%1:04:00:: 00842692 2 0 -suction%1:19:00:: 11517494 1 1 -suction%2:29:00:: 00073584 2 0 -suction%2:38:00:: 01854679 1 0 -suction_cup%1:06:00:: 04349913 1 0 -suction_curettage%1:04:00:: 00669687 1 0 -suction_lipectomy%1:04:00:: 00682243 1 0 -suction_pump%1:06:00:: 04350104 1 0 -suction_stop%1:10:00:: 07118210 1 0 -suctorial%3:01:00:: 02804905 1 0 -sudafed%1:06:00:: 03807052 1 0 -sudan%1:15:00:: 09029457 1 0 -sudan%1:15:01:: 09029242 2 0 -sudanese%1:18:00:: 09732170 1 1 -sudanese%3:01:00:: 03121212 1 0 -sudanese_monetary_unit%1:23:00:: 13695307 1 0 -sudanese_pound%1:23:00:: 13695420 1 0 -sudate%2:29:00:: 00067545 1 0 -sudation%1:22:00:: 13535261 1 0 -sudatorium%1:06:00:: 04350235 1 0 -sudatory%1:06:00:: 04350235 2 0 -sudatory%1:06:01:: 04350347 1 0 -sudbury%1:15:00:: 08828151 1 0 -sudden%3:00:00:: 01143279 1 33 -sudden_death%1:28:00:: 15234587 1 0 -sudden_infant_death_syndrome%1:26:00:: 14310292 1 0 -suddenly%4:02:00:: 00061528 2 42 -suddenly%4:02:02:: 00061677 1 64 -suddenly%4:02:04:: 00171135 3 3 -suddenness%1:07:00:: 05060476 1 1 -sudoku%1:10:00:: 06786012 1 0 -sudor%1:08:00:: 05405751 1 0 -sudoriferous_gland%1:08:00:: 05330659 1 0 -sudorific%1:06:00:: 04350347 1 0 -sudorific%3:01:00:: 02712125 1 0 -sudra%1:14:00:: 08307440 2 0 -sudra%1:18:00:: 10594284 1 0 -suds%1:13:00:: 07887192 2 0 -suds%1:17:00:: 09439213 1 3 -suds%2:30:00:: 00511855 2 0 -suds%2:35:00:: 01536076 1 0 -sudsy%3:01:00:: 02754839 1 0 -sue%1:18:00:: 11323580 1 0 -sue%2:41:00:: 02582042 1 8 -suede%1:06:00:: 04350458 2 0 -suede%1:27:00:: 14763964 1 0 -suede_cloth%1:06:00:: 04350458 1 0 -suede_glove%1:06:00:: 03616979 1 0 -suede_leather%1:27:00:: 14763964 1 0 -suer%1:18:00:: 10672192 2 0 -suer%1:18:01:: 10674130 1 0 -suet%1:13:00:: 07672790 1 0 -suet_pudding%1:13:00:: 07620327 1 0 -suety%5:00:00:fatty:00 00992716 1 0 -suez%1:15:00:: 08900204 1 0 -suez_canal%1:15:00:: 08900377 1 0 -suffer%2:29:00:: 00065070 6 4 -suffer%2:29:01:: 00065639 2 17 -suffer%2:29:03:: 00078401 8 1 -suffer%2:30:00:: 00204750 5 7 -suffer%2:30:02:: 00204872 11 0 -suffer%2:31:00:: 00668099 4 8 -suffer%2:37:00:: 01794668 3 12 -suffer%2:39:00:: 02121511 7 1 -suffer%2:39:01:: 02109190 1 17 -suffer%2:39:02:: 02110082 10 0 -suffer%2:42:04:: 02719807 9 0 -sufferable%5:00:00:tolerable:00 02435206 1 0 -sufferance%1:07:00:: 05032795 1 0 -sufferance%1:07:02:: 04638175 2 0 -sufferer%1:18:00:: 10595647 1 2 -sufferer%1:18:01:: 10296618 2 0 -suffering%1:12:01:: 07495327 4 2 -suffering%1:12:02:: 07496463 3 7 -suffering%1:26:00:: 14324274 1 11 -suffering%1:26:01:: 14448910 2 8 -suffering%5:00:00:troubled:00 02458871 1 1 -suffering%5:00:00:unhappy:00 01150205 2 1 -suffice%2:42:00:: 02669789 1 3 -sufficiency%1:07:00:: 05112609 3 0 -sufficiency%1:23:00:: 13580415 2 0 -sufficiency%1:26:00:: 14492953 1 0 -sufficient%3:00:00:: 02335828 1 30 -sufficiently%4:02:00:: 00145571 1 23 -suffix%1:10:00:: 06308987 1 2 -suffix%2:35:00:: 01298123 1 0 -suffix_notation%1:10:00:: 06814655 1 0 -suffixation%1:04:00:: 00927961 1 0 -suffocate%2:29:01:: 00077698 7 0 -suffocate%2:29:03:: 00106412 6 0 -suffocate%2:30:02:: 00359511 5 0 -suffocate%2:30:03:: 00391021 4 0 -suffocate%2:30:08:: 00391203 3 0 -suffocate%2:35:00:: 01569181 1 3 -suffocate%2:35:01:: 01476180 2 0 -suffocating%5:00:00:breathless:00 00268383 1 1 -suffocation%1:04:00:: 00225593 1 1 -suffocation%1:26:00:: 14043882 2 0 -suffocative%5:00:00:breathless:00 00268383 1 0 -suffragan%1:18:00:: 10672540 1 0 -suffragan_bishop%1:18:00:: 10672540 1 0 -suffrage%1:07:00:: 05186306 1 1 -suffragette%1:18:00:: 10672662 1 0 -suffragism%1:09:00:: 05952367 1 0 -suffragist%1:18:00:: 10672908 1 0 -suffrutescent%5:00:00:woody:00 02576365 1 0 -suffrutex%1:20:00:: 13118707 1 0 -suffuse%2:30:00:: 00454651 2 0 -suffuse%2:30:01:: 00454251 1 3 -suffusion%1:22:00:: 13534954 1 0 -suffusive%5:00:00:distributive:00 00469468 1 0 -sufi%1:18:00:: 10672371 1 0 -sufi%3:01:00:: 02805039 1 0 -sufism%1:09:00:: 05949266 1 0 -sugar%1:13:00:: 07859284 1 5 -sugar%1:21:00:: 13385216 3 0 -sugar%1:27:00:: 14792703 2 0 -sugar%2:39:00:: 02195951 1 1 -sugar-bush%1:20:00:: 12764008 1 0 -sugar-coated%5:00:00:sugary:00 02337912 1 0 -sugar_apple%1:13:00:: 07761611 1 0 -sugar_beet%1:13:00:: 07720084 2 0 -sugar_beet%1:20:00:: 11833073 1 0 -sugar_bowl%1:06:00:: 04350581 1 1 -sugar_candy%1:13:00:: 07609215 1 0 -sugar_cane%1:20:00:: 12132502 2 0 -sugar_cane%1:20:02:: 12132754 1 0 -sugar_cookie%1:13:00:: 07638128 1 0 -sugar_corn%1:20:00:: 12144742 1 0 -sugar_daddy%1:18:00:: 10673296 1 0 -sugar_loaf%1:13:00:: 07595499 1 0 -sugar_maple%1:20:00:: 12753245 1 1 -sugar_of_lead%1:27:00:: 14989243 1 0 -sugar_palm%1:20:00:: 12584715 1 0 -sugar_pea%1:13:00:: 07725789 2 0 -sugar_pea%1:20:00:: 12561038 1 0 -sugar_ray_robinson%1:18:00:: 11266279 1 0 -sugar_refinery%1:06:00:: 04350688 1 0 -sugar_shell%1:06:00:: 04350769 1 0 -sugar_snap_pea%1:13:00:: 07725888 2 0 -sugar_snap_pea%1:20:00:: 12561169 1 0 -sugar_sorghum%1:20:00:: 12138757 1 0 -sugar_spoon%1:06:00:: 04350769 1 0 -sugar_sumac%1:20:00:: 12764008 1 0 -sugar_syrup%1:13:00:: 07859796 1 0 -sugar_water%1:13:00:: 07936093 1 0 -sugarberry%1:13:00:: 07746038 2 0 -sugarberry%1:20:00:: 12409840 1 0 -sugarcane%1:20:00:: 12132502 2 0 -sugarcane%1:20:02:: 12132754 1 0 -sugarcoat%2:32:00:: 01033942 2 0 -sugarcoat%2:39:00:: 02196378 1 0 -sugared%5:00:00:sugary:00 02338197 1 0 -sugariness%1:07:00:: 04994727 2 0 -sugariness%1:09:00:: 05716577 1 0 -sugarless%3:00:00:: 02338327 1 0 -sugarloaf%1:13:00:: 07595499 1 0 -sugarplum%1:13:00:: 07609316 1 0 -sugary%3:00:00:: 02337667 1 0 -suggest%2:32:00:: 00875394 1 57 -suggest%2:32:01:: 00930368 5 12 -suggest%2:32:02:: 00930806 3 19 -suggest%2:32:03:: 00928232 4 14 -suggest%2:32:04:: 00927430 2 21 -suggester%1:18:00:: 10673451 1 0 -suggestibility%1:26:00:: 14534571 1 0 -suggestible%5:00:00:susceptible:00 02362708 1 0 -suggestion%1:04:02:: 00158996 6 0 -suggestion%1:09:00:: 05916155 1 13 -suggestion%1:09:01:: 05771679 5 0 -suggestion%1:10:00:: 07162680 2 9 -suggestion%1:10:01:: 07246582 4 1 -suggestion%1:23:00:: 13773361 3 1 -suggestive%5:00:00:connotative:00 00723542 1 1 -suggestive%5:00:00:indecent:00 00684334 3 0 -suggestive%5:00:00:revealing:00 02091300 2 0 -suggestively%4:02:00:: 00515573 1 0 -sugi%1:20:00:: 11636204 1 0 -suharto%1:18:00:: 11323721 1 0 -sui_generis%5:00:00:single:05 02215382 1 0 -suicidal%5:00:00:dangerous:00 02060912 1 0 -suicide%1:04:00:: 00222485 1 3 -suicide%1:18:00:: 10673669 2 0 -suicide_bomber%1:18:00:: 10673776 1 0 -suicide_bombing%1:04:00:: 00979902 1 0 -suicide_mission%1:04:00:: 00731756 1 0 -suicide_pact%1:10:00:: 07178992 1 0 -suicide_pill%1:04:00:: 00176609 1 0 -suicide_squeeze%1:04:00:: 00564897 1 0 -suicide_squeeze_play%1:04:00:: 00564897 1 0 -suidae%1:05:00:: 02394822 1 0 -suillus%1:20:00:: 13059139 1 0 -suillus_albivelatus%1:20:00:: 13059298 1 0 -suisse%1:15:00:: 09031653 1 0 -suit%1:04:00:: 01182654 2 3 -suit%1:06:00:: 04350905 1 13 -suit%1:06:01:: 04351233 6 0 -suit%1:10:00:: 07188570 5 0 -suit%1:10:01:: 07188685 4 0 -suit%1:18:00:: 10673946 3 0 -suit%2:42:00:: 02699941 3 1 -suit%2:42:01:: 02724258 4 0 -suit%2:42:02:: 02735282 2 1 -suit%2:42:05:: 02702830 1 7 -suit_of_armor%1:06:00:: 02862048 1 0 -suit_of_armour%1:06:00:: 02862048 1 0 -suit_of_clothes%1:06:00:: 04350905 1 0 -suitability%1:07:00:: 04715487 1 1 -suitable%5:00:00:eligible:00 00852197 2 0 -suitable%5:00:00:fit:02 01020885 1 3 -suitableness%1:07:00:: 04715487 1 0 -suitably%4:02:00:: 00139508 1 2 -suitcase%1:06:00:: 02773838 1 11 -suite%1:06:00:: 04351550 2 2 -suite%1:10:00:: 07047011 1 2 -suite%1:14:00:: 08429167 3 1 -suite%1:14:01:: 08007534 4 0 -suited%5:00:00:clothed:00 00456739 2 1 -suited%5:00:00:fit:02 01020885 1 5 -suiting%1:06:00:: 04351699 1 0 -suitor%1:18:00:: 10674130 1 1 -sukarno%1:18:00:: 11323849 1 0 -sukiyaki%1:13:00:: 07879174 1 0 -sukkoth%1:28:00:: 15161872 1 0 -suksdorfia%1:20:00:: 12802442 1 0 -suksdorfia_violaceae%1:20:00:: 12802707 1 0 -sukur%1:10:00:: 06984351 1 0 -sula%1:05:00:: 02053279 1 0 -sula_bassana%1:05:00:: 02053425 1 0 -sulamyd%1:06:00:: 04351776 1 0 -sulawesi%1:15:00:: 08909107 1 0 -sulcate%3:01:00:: 03136940 1 0 -sulcus%1:08:00:: 05223550 1 0 -sulcus_centralis%1:08:00:: 05223823 1 0 -sulcus_lateralis_cerebri%1:08:00:: 05224080 1 0 -sulfa%1:06:00:: 04352070 1 0 -sulfa_drug%1:06:00:: 04352070 1 0 -sulfacetamide%1:06:00:: 04351776 1 0 -sulfadiazine%1:06:00:: 04351936 1 0 -sulfamethazine%1:06:00:: 04352435 1 0 -sulfamethoxazole%1:06:00:: 04352580 1 0 -sulfamezathine%1:06:00:: 04352435 1 0 -sulfanilamide%1:06:00:: 04352759 1 0 -sulfanilic_acid%1:27:00:: 15063358 1 0 -sulfapyridine%1:06:00:: 04352906 1 0 -sulfate%1:27:00:: 15063493 1 0 -sulfate%2:30:00:: 00585986 1 0 -sulfide%1:27:00:: 15063699 1 0 -sulfisoxazole%1:06:00:: 04353016 1 0 -sulfonamide%1:06:00:: 04352070 1 0 -sulfonate%1:27:00:: 14616410 1 0 -sulfonic_acid%1:27:00:: 14616508 1 0 -sulfonylurea%1:06:00:: 04353189 1 0 -sulfur%1:27:00:: 14656219 1 1 -sulfur%2:30:00:: 00516747 1 0 -sulfur-yellow%5:00:00:chromatic:00 00384410 1 0 -sulfur_bacteria%1:05:00:: 01363288 1 0 -sulfur_bottom%1:05:00:: 02064816 1 0 -sulfur_butterfly%1:05:00:: 02281406 1 0 -sulfur_dioxide%1:27:00:: 15064053 1 0 -sulfur_hexafluoride%1:27:00:: 15064327 1 0 -sulfur_mine%1:06:00:: 04353687 1 0 -sulfur_mustard%1:27:00:: 14957270 1 0 -sulfur_oxide%1:27:00:: 15063946 1 0 -sulfur_paintbrush%1:20:00:: 12880799 1 0 -sulfurette%2:35:00:: 01461885 1 0 -sulfuretted%3:01:00:: 02853254 1 0 -sulfuric%3:01:00:: 03121394 1 0 -sulfuric_acid%1:27:00:: 15093482 1 0 -sulfurized%3:01:01:: 02853254 1 0 -sulfurous%3:01:00:: 02805148 1 0 -sulfurous%5:00:00:hot:01 01250121 3 0 -sulfurous%5:00:00:unpleasant:00 01802165 2 0 -sulidae%1:05:00:: 02052936 1 0 -sulindac%1:06:00:: 04353410 1 0 -sulk%1:12:00:: 07551498 1 0 -sulk%2:42:00:: 02719016 1 0 -sulkily%4:02:00:: 00470870 1 2 -sulkiness%1:07:00:: 04642057 3 0 -sulkiness%1:12:00:: 07549401 2 0 -sulkiness%1:12:01:: 07551498 1 0 -sulky%1:06:00:: 04353573 1 2 -sulky%5:00:00:dark:01 00275764 3 0 -sulky%5:00:00:ill-natured:00 01137994 1 1 -sulky%5:00:00:slow:01 00981703 2 0 -sulla%1:18:00:: 11324090 2 0 -sulla%1:20:00:: 12534862 1 0 -sullen%5:00:00:cloudy:00 00462409 2 1 -sullen%5:00:00:ill-natured:00 01137378 1 9 -sullenly%4:02:00:: 00242321 1 2 -sullenness%1:07:00:: 04642057 2 0 -sullenness%1:12:00:: 07552367 1 0 -sullivan%1:18:00:: 11324212 5 0 -sullivan%1:18:01:: 11324428 4 0 -sullivan%1:18:02:: 11324619 3 0 -sullivan%1:18:03:: 11324785 2 0 -sullivan%1:18:04:: 11324902 1 0 -sully%1:18:00:: 11325146 2 0 -sully%1:18:01:: 11325265 1 0 -sully%2:32:00:: 00846509 3 0 -sully%2:35:00:: 01537409 2 0 -sully%2:35:01:: 01537959 1 0 -sulpha%1:06:00:: 04352070 1 0 -sulphanilic_acid%1:27:00:: 15063358 1 0 -sulphate%1:27:00:: 15063493 1 0 -sulphide%1:27:00:: 15063699 1 0 -sulphonic_acid%1:27:00:: 14616508 1 0 -sulphur%1:27:00:: 14656219 1 0 -sulphur%2:30:00:: 00516747 1 1 -sulphur-crested_cockatoo%1:05:00:: 01819313 1 0 -sulphur-yellow%5:00:00:chromatic:00 00384410 1 0 -sulphur_bacteria%1:05:00:: 01363288 1 0 -sulphur_butterfly%1:05:00:: 02281406 1 0 -sulphur_dioxide%1:27:00:: 15064053 1 0 -sulphur_hexafluoride%1:27:00:: 15064327 1 0 -sulphur_mine%1:06:00:: 04353687 1 0 -sulphur_oxide%1:27:00:: 15063946 1 0 -sulphurette%2:35:00:: 01461885 1 0 -sulphuretted%3:01:00:: 02853254 1 0 -sulphuric%3:01:00:: 03121394 1 0 -sulphuric_acid%1:27:00:: 15093482 1 0 -sulphurous%3:01:00:: 02805148 1 0 -sulphurous%5:00:00:hot:01 01250121 3 0 -sulphurous%5:00:00:unpleasant:00 01802165 2 0 -sultan%1:18:00:: 10674315 1 1 -sultan_of_swat%1:18:00:: 11276100 1 0 -sultana%1:13:01:: 07752782 2 0 -sultana%1:13:02:: 07760395 1 0 -sultanate%1:15:00:: 08896327 1 0 -sultanate_of_oman%1:15:00:: 08975106 1 0 -sultrily%4:02:00:: 00449441 1 0 -sultriness%1:07:00:: 04687119 2 0 -sultriness%1:19:00:: 11466909 1 0 -sultry%5:00:00:hot:01 01250121 2 1 -sultry%5:00:00:hot:02 01257145 1 1 -sum%1:06:00:: 04353803 5 1 -sum%1:09:00:: 05921123 4 1 -sum%1:09:01:: 05861067 2 4 -sum%1:14:00:: 07959016 3 1 -sum%1:14:01:: 07998712 6 0 -sum%1:21:00:: 13331198 1 12 -sum%2:32:00:: 00949288 2 0 -sum%2:42:00:: 02752695 1 0 -sum-up%1:10:00:: 06467007 1 0 -sum_of_money%1:21:00:: 13331198 1 1 -sum_total%1:14:00:: 07959016 1 0 -sum_up%2:32:00:: 01007924 1 5 -sum_up%2:32:03:: 00949288 3 0 -sum_up%2:42:00:: 02752695 2 0 -sumac%1:20:00:: 12762896 2 0 -sumac%1:20:02:: 12763205 1 0 -sumac_family%1:20:00:: 12758639 1 0 -sumach%1:20:00:: 12762896 1 0 -sumatra%1:15:00:: 08908954 1 1 -sumatran%1:18:00:: 09750157 1 0 -sumatran%3:01:00:: 03121573 1 0 -sumer%1:15:00:: 08918248 1 0 -sumerian%1:18:00:: 10674471 1 0 -sumerian%3:01:00:: 02805331 1 0 -sumerology%1:09:00:: 06144970 1 0 -summa_cum_laude%4:02:00:: 00291477 1 0 -summa_cum_laude%5:00:00:worthy:00 02587407 1 0 -summarily%4:02:00:: 00470988 1 0 -summarisation%1:10:01:: 06467445 1 0 -summarise%2:32:00:: 01007924 2 0 -summarise%2:42:00:: 02752695 1 0 -summarization%1:10:01:: 06467445 1 0 -summarize%2:32:00:: 01007924 1 9 -summarize%2:42:00:: 02752695 2 0 -summary%1:10:00:: 06467007 1 5 -summary%5:00:00:concise:00 00547317 2 0 -summary%5:00:00:unofficial:00 01633880 1 0 -summary_judgement%1:04:00:: 01190561 1 0 -summary_judgment%1:04:00:: 01190561 1 0 -summary_treatment%1:10:00:: 07208184 1 0 -summate%2:32:00:: 00949288 1 1 -summate%2:41:00:: 02378183 2 0 -summation%1:04:01:: 00872107 4 0 -summation%1:10:00:: 06469874 1 1 -summation%1:14:00:: 07959016 3 0 -summation%1:22:00:: 13563139 2 0 -summational%5:00:00:additive:00 00049683 1 0 -summative%5:00:00:additive:00 00049683 1 0 -summer%1:28:00:: 15237250 1 58 -summer%1:28:01:: 15145012 2 0 -summer%2:42:00:: 02709774 1 0 -summer-blooming%5:00:00:summery:00 01255177 1 0 -summer-flowering%5:00:00:summery:00 01255177 1 0 -summer_camp%1:06:00:: 02945594 1 0 -summer_cohosh%1:20:00:: 11728769 1 0 -summer_crookneck%1:13:00:: 07716203 1 0 -summer_cypress%1:20:00:: 11831874 1 0 -summer_damask_rose%1:20:00:: 12621410 1 0 -summer_duck%1:05:00:: 01852142 1 0 -summer_flounder%1:05:00:: 02661618 1 0 -summer_haw%1:20:00:: 12627526 1 0 -summer_house%1:06:00:: 04354026 1 0 -summer_hyacinth%1:20:00:: 12458874 1 0 -summer_redbird%1:05:00:: 01598074 1 0 -summer_savory%1:13:00:: 07820960 2 0 -summer_savory%1:20:00:: 12867184 1 0 -summer_savoury%1:13:00:: 07820960 1 0 -summer_school%1:28:00:: 15225526 1 0 -summer_snowflake%1:20:00:: 12459882 1 0 -summer_solstice%1:28:00:: 15222012 1 0 -summer_squash%1:13:00:: 07715721 2 0 -summer_squash%1:20:00:: 12159055 1 0 -summer_squash_vine%1:20:00:: 12159055 1 0 -summer_stock%1:10:00:: 07007556 1 0 -summer_sweet%1:20:00:: 12250180 1 0 -summer_tanager%1:05:00:: 01598074 1 0 -summercater%1:18:00:: 10639238 1 0 -summercaters%1:18:00:: 10674592 1 0 -summerhouse%1:06:00:: 03430418 1 0 -summerise%2:30:00:: 00408448 1 0 -summerize%2:30:00:: 00408448 1 0 -summersault%1:04:00:: 00439484 1 0 -summerset%1:04:00:: 00439484 1 0 -summertime%1:28:00:: 15237250 1 0 -summery%3:00:00:: 01254784 1 0 -summing_up%1:10:00:: 06469874 1 0 -summit%1:14:00:: 08312359 3 0 -summit%1:15:00:: 08617963 2 0 -summit%1:26:00:: 13940456 1 0 -summit%2:38:00:: 02021149 1 0 -summit_meeting%1:14:00:: 08312359 1 0 -summon%2:30:00:: 00270215 4 0 -summon%2:32:00:: 00791134 1 8 -summon%2:32:05:: 01041762 2 2 -summon%2:35:02:: 01381549 3 0 -summoning%1:09:00:: 05978623 1 0 -summons%1:10:00:: 06556692 3 0 -summons%1:10:01:: 07186528 1 0 -summons%1:10:02:: 07169098 2 0 -summons%2:32:00:: 00791134 1 0 -summum_bonum%1:07:00:: 04849614 1 0 -sumner%1:18:00:: 11325419 1 0 -sumo%1:04:00:: 00448232 1 0 -sumo_ring%1:06:00:: 04354182 1 0 -sumo_wrestler%1:18:00:: 10674713 1 0 -sump%1:06:00:: 04354287 2 0 -sump%1:06:01:: 04354387 1 0 -sump%1:06:02:: 02998563 3 0 -sump_pump%1:06:00:: 04354487 1 0 -sumpsimus%1:10:00:: 07154868 1 0 -sumpter%1:05:00:: 01317391 1 0 -sumptuary%5:00:00:restrictive:00 02004838 1 0 -sumptuosity%1:07:00:: 05146471 1 0 -sumptuous%5:00:00:rich:03 02024928 1 2 -sumptuously%4:02:00:: 00414884 1 0 -sumptuousness%1:07:01:: 05146471 2 0 -sumptuousness%1:26:00:: 14492373 1 0 -sun%1:17:00:: 09450163 1 42 -sun%1:17:01:: 09450454 4 1 -sun%1:18:00:: 10674896 3 1 -sun%1:19:00:: 11485367 2 13 -sun%1:28:00:: 15163797 5 0 -sun%2:29:00:: 00104147 1 1 -sun%2:39:00:: 02112546 2 0 -sun-drenched%5:00:00:covered:00 01697878 1 0 -sun-dried%5:00:00:preserved:02 01073592 1 1 -sun-loving%5:00:00:healthy:00 01172394 1 0 -sun-ray%1:19:01:: 11522206 1 0 -sun-ray_lamp%1:06:00:: 04356772 1 0 -sun-worship%1:04:00:: 01046348 1 0 -sun_bathing%1:04:00:: 00442759 1 0 -sun_blocker%1:06:00:: 04357314 1 0 -sun_city%1:15:00:: 09058735 1 0 -sun_dance%1:04:00:: 00542992 1 0 -sun_deck%1:06:00:: 04355267 1 0 -sun_gear%1:06:00:: 04355821 1 0 -sun_god%1:18:00:: 09506973 1 0 -sun_hat%1:06:00:: 04356595 1 0 -sun_helmet%1:06:00:: 03950899 1 0 -sun_king%1:18:00:: 11141019 1 0 -sun_lamp%1:06:00:: 04356772 1 0 -sun_lounge%1:06:00:: 04356925 1 0 -sun_marigold%1:20:00:: 11961446 1 0 -sun_myung_moon%1:18:00:: 11189054 1 0 -sun_parlor%1:06:00:: 04356925 1 0 -sun_parlour%1:06:00:: 04356925 1 0 -sun_pitcher%1:20:00:: 12781421 1 0 -sun_plant%1:20:00:: 11857875 1 0 -sun_porch%1:06:00:: 04356925 1 0 -sun_protection_factor%1:07:00:: 05118707 1 0 -sun_river%1:17:00:: 09450553 1 0 -sun_rose%1:20:00:: 12375518 1 0 -sun_spurge%1:20:00:: 12918609 1 0 -sun_tea%1:13:00:: 07934373 1 0 -sun_valley%1:15:00:: 09082273 1 0 -sun_visor%1:06:00:: 04357795 1 0 -sun_worshiper%1:18:00:: 10675258 1 0 -sun_yat-sen%1:18:00:: 11325663 1 0 -sun_yixian%1:18:00:: 11325663 1 0 -sunbaked%5:00:00:dry:01 02551946 1 1 -sunbaked%5:00:00:tempered:02 01521905 2 0 -sunbathe%2:29:00:: 00104147 1 0 -sunbather%1:18:00:: 10675010 1 0 -sunbeam%1:19:00:: 11485582 1 0 -sunbelt%1:15:00:: 09051726 1 0 -sunberry%1:20:00:: 12896615 1 0 -sunblind%1:06:01:: 02763901 1 0 -sunblock%1:06:00:: 04357314 1 0 -sunbonnet%1:06:00:: 04354589 1 0 -sunburn%1:26:00:: 14290365 2 0 -sunburn%1:26:01:: 14290534 1 0 -sunburn%2:29:00:: 00104299 1 0 -sunburned%5:00:00:unhealthy:00 01178345 1 0 -sunburnt%5:00:00:unhealthy:00 01178345 1 1 -sunburst%1:06:00:: 04354723 3 0 -sunburst%1:06:01:: 04354828 2 0 -sunburst%1:19:00:: 11485264 1 0 -sunburst_pleat%1:06:00:: 04354966 1 0 -sunchoke%1:13:00:: 07719058 1 0 -sunda_islands%1:15:00:: 08842258 1 0 -sundacarpus%1:20:00:: 11659500 1 0 -sundacarpus_amara%1:20:00:: 11659627 1 0 -sundae%1:13:00:: 07616487 1 0 -sundanese%1:10:00:: 06939542 1 0 -sunday%1:18:00:: 11325534 2 0 -sunday%1:28:00:: 15163797 1 33 -sunday-go-to-meeting%5:00:00:best:00 00228485 1 0 -sunday_best%1:06:00:: 04355115 1 0 -sunday_clothes%1:06:00:: 04355115 1 0 -sunday_punch%1:04:00:: 00135637 1 0 -sunday_school%1:14:00:: 08412492 1 1 -sunder%2:30:00:: 00335814 1 1 -sunderland%1:15:00:: 08880713 1 0 -sundew%1:20:00:: 12782530 1 0 -sundew_family%1:20:00:: 12782108 1 0 -sundew_plant%1:20:00:: 12782530 1 0 -sundial%1:06:00:: 04355338 1 1 -sundial_lupine%1:20:00:: 12546962 1 0 -sundog%1:19:00:: 11487732 1 0 -sundown%1:28:00:: 15169248 1 5 -sundowner%1:13:00:: 07913081 2 0 -sundowner%1:18:00:: 10675142 1 0 -sundress%1:06:00:: 04355511 1 0 -sundried%5:00:00:preserved:02 01073592 1 0 -sundries%1:06:00:: 04355684 1 0 -sundrops%1:20:00:: 12344700 1 0 -sundry%5:00:00:heterogeneous:00 01199083 1 4 -sunfish%1:05:01:: 02562315 3 0 -sunfish%1:05:02:: 02656670 2 0 -sunfish%1:13:00:: 07780307 1 0 -sunflower%1:20:00:: 11978233 1 0 -sunflower-seed_oil%1:13:00:: 07675411 1 0 -sunflower_oil%1:13:00:: 07675411 1 0 -sunflower_seed%1:13:00:: 07775197 1 0 -sunflower_state%1:15:00:: 09087599 1 0 -sung%1:14:00:: 08158741 1 0 -sung_dynasty%1:14:00:: 08158741 1 0 -sunglass%1:06:00:: 04355933 1 0 -sunglasses%1:06:00:: 04356056 1 0 -sunhat%1:06:00:: 04356595 1 0 -sunk%5:00:00:unsuccessful:00 02334321 1 0 -sunk_fence%1:06:00:: 04356423 1 0 -sunken%5:00:00:hollow:00 02264521 1 2 -sunken-eyed%5:00:00:thin:03 00989416 1 0 -sunken_arch%1:08:00:: 05577060 1 0 -sunken_garden%1:06:00:: 04356306 1 0 -sunlamp%1:06:00:: 04356772 1 0 -sunless%5:00:00:cloudy:00 00461971 1 0 -sunlight%1:19:00:: 11485367 1 8 -sunlit%5:00:00:light:06 00272771 1 0 -sunna%1:04:00:: 00416409 1 0 -sunnah%1:04:00:: 00416409 1 0 -sunni%1:14:00:: 08096474 2 0 -sunni%1:18:02:: 09683559 1 0 -sunni_islam%1:14:00:: 08096474 1 0 -sunni_muslim%1:18:00:: 09683559 1 0 -sunnily%4:02:00:: 00219325 1 0 -sunniness%1:07:00:: 04951875 1 0 -sunniness%1:07:01:: 04630689 2 0 -sunnite%1:18:00:: 09683559 1 0 -sunny%5:00:00:cheerful:00 00363938 1 2 -sunny-side_up%5:00:00:cooked:00 00619030 1 0 -sunporch%1:06:00:: 04356925 1 0 -sunray%1:19:00:: 11485582 1 3 -sunray%1:19:01:: 11522206 3 0 -sunray%1:20:00:: 11964446 2 0 -sunray_lamp%1:06:00:: 04356772 1 0 -sunray_pleat%1:06:00:: 04354966 1 0 -sunrise%1:11:00:: 07343910 3 0 -sunrise%1:19:00:: 11517656 2 0 -sunrise%1:28:00:: 15168790 1 0 -sunrise%5:00:00:new:00 01642951 1 0 -sunrise_industry%1:14:00:: 08074691 1 0 -sunroof%1:06:00:: 04357121 1 0 -sunroom%1:06:00:: 04356925 1 0 -sunrose%1:20:00:: 12375518 1 0 -sunscreen%1:06:00:: 04357314 1 0 -sunset%1:11:00:: 07344015 3 0 -sunset%1:19:00:: 11517776 2 0 -sunset%1:28:00:: 15169248 1 0 -sunset%5:00:00:last:00 01013843 2 0 -sunset%5:00:00:old:01 01640618 1 0 -sunshade%1:06:00:: 02763901 1 2 -sunshade%1:06:01:: 03889871 2 0 -sunshine%1:07:00:: 04630689 3 0 -sunshine%1:19:00:: 11485367 1 1 -sunshine%1:19:01:: 11456462 2 0 -sunshine-roof%1:06:00:: 04357121 1 0 -sunshine_state%1:15:00:: 09071690 1 0 -sunspot%1:19:00:: 11511004 1 0 -sunstone%1:27:00:: 15064560 1 0 -sunstroke%1:26:00:: 14204586 1 0 -sunstruck%5:00:00:light:06 00272771 1 1 -sunsuit%1:06:00:: 04357531 1 0 -suntan%1:26:00:: 14290534 1 0 -suntan%2:29:00:: 00104026 1 0 -suntanned%5:00:00:brunet:00 00244958 1 1 -suntrap%1:06:00:: 04357639 1 0 -sunup%1:28:00:: 15168790 1 0 -suomi%1:10:00:: 06958255 2 0 -suomi%1:15:00:: 08779504 1 0 -sup%1:13:00:: 07579276 1 0 -sup%2:34:02:: 01205459 1 0 -super%1:18:00:: 10675721 1 0 -super%4:02:00:: 00046299 1 2 -super%5:00:00:comprehensive:00 00528761 2 1 -super%5:00:00:large:00 01390588 3 0 -super%5:00:00:superior:02 02341864 1 3 -super_acid%1:06:00:: 03606572 1 0 -super_c%1:06:00:: 03606572 1 0 -super_heavyweight%1:18:00:: 10675609 1 0 -superable%5:00:00:surmountable:00 02357006 1 0 -superabundance%1:07:00:: 05119367 1 0 -superabundant%5:00:00:abundant:00 00016247 1 0 -superannuate%2:30:00:: 00536921 4 0 -superannuate%2:30:01:: 00537050 3 0 -superannuate%2:32:00:: 00818135 2 0 -superannuate%2:41:00:: 02380418 1 0 -superannuated%5:00:00:noncurrent:00 00669138 2 0 -superannuated%5:00:01:old:02 01646435 1 0 -superannuation%1:04:00:: 00197229 3 0 -superannuation%1:07:00:: 04925577 2 0 -superannuation%1:21:00:: 13384341 1 0 -superannuation_fund%1:21:00:: 13360103 1 0 -superb%5:00:00:good:01 01125154 2 0 -superb%5:00:00:superior:02 02342608 1 6 -superbia%1:04:00:: 00758175 1 0 -superbly%4:02:00:: 00183090 1 2 -superbug%1:05:00:: 02247950 1 0 -superbug%1:05:01:: 02247655 2 0 -supercargo%1:18:00:: 10675346 1 0 -supercede%2:41:00:: 02405390 1 0 -supercharge%2:30:00:: 00403609 2 0 -supercharge%2:30:03:: 00497061 1 0 -supercharged%5:00:00:emotional:00 00854989 2 0 -supercharged%5:00:00:powered:00 01829369 1 0 -supercharger%1:06:00:: 04357930 1 0 -superciliary_arch%1:08:00:: 05603475 1 0 -superciliary_ridge%1:08:00:: 05603475 1 0 -supercilious%5:00:00:proud:00 01891109 1 1 -supercilious%5:00:00:uncomplimentary:00 00907400 2 0 -superciliously%4:02:00:: 00459905 1 0 -superciliousness%1:07:00:: 04888268 1 0 -supercilium%1:08:00:: 05313535 1 0 -superclass%1:14:00:: 08106798 1 0 -superclass_agnatha%1:05:00:: 01473990 1 0 -superclass_chelicerata%1:05:00:: 01768402 1 0 -superclass_gnathostomata%1:05:00:: 01479643 1 0 -superclass_myriapoda%1:05:00:: 01782675 1 0 -supercomputer%1:06:00:: 04358117 1 0 -superconducting_supercollider%1:06:00:: 04358256 1 0 -superconductivity%1:19:00:: 11409892 1 0 -supercritical%5:00:00:critical:04 00652351 1 0 -superego%1:09:00:: 05613625 1 0 -supererogation%1:04:00:: 00633613 1 0 -supererogatory%5:00:00:unnecessary:00 01581305 1 0 -superfamily%1:14:00:: 08108304 1 0 -superfamily_aphidoidea%1:05:00:: 02252039 1 0 -superfamily_apoidea%1:05:00:: 02206624 1 0 -superfamily_coccoidea%1:05:00:: 02248147 1 0 -superfamily_hominoidea%1:05:00:: 02471072 1 0 -superfamily_lamellicornia%1:05:00:: 02171254 1 0 -superfamily_muroidea%1:05:00:: 02330830 1 0 -superfamily_muscoidea%1:05:00:: 02189822 1 0 -superfamily_platyrrhini%1:05:00:: 02489288 1 0 -superfamily_sphecoidea%1:05:00:: 02214972 1 0 -superfamily_tineoidea%1:05:00:: 02291024 1 0 -superfamily_tyrannidae%1:05:00:: 01547459 1 0 -superfatted%5:00:00:fatty:00 00992826 1 0 -superfecta%1:04:00:: 00507539 1 0 -superfecundation%1:11:00:: 07438190 1 0 -superfetate%2:29:00:: 00067850 1 0 -superfetation%1:11:00:: 07438396 1 0 -superficial%3:00:00:: 01873406 1 4 -superficial%3:01:00:: 02805490 2 0 -superficial%5:00:00:insignificant:00 02165432 3 0 -superficial_epigastric_vein%1:08:00:: 05366341 1 0 -superficial_middle_cerebral_vein%1:08:00:: 05362912 1 0 -superficial_temporal_vein%1:08:00:: 05382589 1 0 -superficiality%1:07:01:: 05095111 1 1 -superficiality%1:07:02:: 05135951 2 0 -superficially%4:02:00:: 00143722 1 1 -superficies%1:06:00:: 04358381 2 0 -superficies%1:07:00:: 04677113 1 0 -superfine%5:00:00:best:00 00229227 3 0 -superfine%5:00:00:fine:00 02233799 1 0 -superfine%5:00:00:refined:01 01948958 2 0 -superfluity%1:07:00:: 05120116 1 0 -superfluous%5:00:00:unnecessary:00 01581305 2 0 -superfluous%5:00:00:worthless:00 02503305 1 0 -superfluously%4:02:00:: 00471122 1 0 -superfund%1:09:00:: 05900888 1 0 -superfund_program%1:09:00:: 05900888 1 0 -superfund_site%1:15:00:: 08661467 1 0 -supergiant%1:17:00:: 09450708 1 0 -supergrass%1:18:00:: 10675481 1 0 -superhet%1:06:00:: 03516996 1 0 -superheterodyne_receiver%1:06:00:: 03516996 1 0 -superhigh_frequency%1:07:00:: 05057917 1 0 -superhighway%1:06:00:: 03306610 1 1 -superhighway%1:06:01:: 04358491 2 0 -superhuman%3:00:00:: 01260873 1 0 -superimpose%2:35:00:: 01469263 1 4 -superimposed%5:00:00:stratified:00 00208749 2 0 -superimposed%5:00:00:superjacent:00 02349149 1 0 -superincumbent%5:00:00:superjacent:00 02349274 1 0 -superinfect%2:29:00:: 00088972 1 0 -superinfection%1:26:00:: 14185353 1 0 -superintend%2:41:00:: 02443049 1 1 -superintendence%1:04:00:: 01135529 1 0 -superintendent%1:18:00:: 10388732 1 4 -superintendent%1:18:01:: 10675721 2 0 -superior%1:10:00:: 06820023 6 0 -superior%1:15:00:: 09158649 5 0 -superior%1:17:00:: 09333171 4 0 -superior%1:18:01:: 10676018 1 1 -superior%1:18:02:: 10675876 2 1 -superior%1:18:03:: 10752930 3 0 -superior%3:00:00:: 02349685 4 0 -superior%3:00:01:: 02338615 2 4 -superior%3:00:02:: 02341266 1 16 -superior%3:00:03:: 02348482 5 0 -superior%5:00:00:dominant:01 00792769 3 1 -superior%5:00:00:senior:00 02100566 6 0 -superior%5:00:00:unaffected:00 00072436 7 0 -superior_alveolar_artery%1:08:00:: 05335700 1 0 -superior_cerebellar_artery%1:08:00:: 05341089 1 0 -superior_cerebral_vein%1:08:00:: 05363064 1 0 -superior_colliculus%1:08:00:: 05500312 1 0 -superior_conjunction%1:11:00:: 07415561 1 0 -superior_court%1:14:00:: 08335751 1 0 -superior_epigastric_veins%1:08:00:: 05366485 1 0 -superior_general%1:18:00:: 10125561 1 0 -superior_labial_artery%1:08:00:: 05349273 1 0 -superior_labial_vein%1:08:00:: 05371977 1 0 -superior_mesenteric_artery%1:08:00:: 05352112 1 0 -superior_ophthalmic_vein%1:08:00:: 05375322 1 0 -superior_planet%1:17:00:: 09450866 1 0 -superior_pulmonary_vein%1:08:00:: 05378654 1 0 -superior_rectus%1:08:00:: 05317013 1 0 -superior_rectus_muscle%1:08:00:: 05317013 1 0 -superior_skill%1:09:00:: 05638882 1 0 -superior_thalamostriate_vein%1:08:00:: 05383216 1 0 -superior_thyroid_vein%1:08:00:: 05384128 1 0 -superior_vena_cava%1:08:00:: 05423095 1 0 -superior_vocal_cord%1:08:00:: 05530657 1 0 -superiority%1:07:00:: 04728376 1 3 -superiority%1:07:01:: 05158619 2 1 -superiority%1:07:02:: 04889000 3 1 -superiority%1:26:00:: 13950440 4 0 -superiority_complex%1:07:00:: 04887790 1 0 -superjacent%3:00:00:: 02348847 1 0 -superlative%1:10:00:: 06693870 1 1 -superlative%1:10:01:: 06323284 3 0 -superlative%1:26:00:: 13940456 2 0 -superlative%5:00:00:superior:02 02343517 1 1 -superlative_degree%1:10:00:: 06323284 1 0 -superlatively%4:02:00:: 00471269 1 0 -superload%1:06:00:: 03679037 1 0 -superlunar%3:01:00:: 02757599 1 0 -superlunar%5:00:00:heavenly:00 01180549 2 0 -superlunary%3:01:00:: 02757599 1 0 -superlunary%5:00:00:heavenly:00 01180549 2 0 -superman%1:06:00:: 02675657 2 0 -superman%1:18:00:: 10001764 1 0 -supermarket%1:06:00:: 04358707 1 1 -supermarketeer%1:18:00:: 10676214 1 0 -supermarketer%1:18:00:: 10676214 1 0 -supermex%1:18:00:: 11348812 1 0 -supermodel%1:18:00:: 10676319 1 0 -supermolecule%1:27:00:: 14944888 1 0 -supermom%1:18:00:: 10676434 1 0 -supernal%3:00:00:: 01304374 1 0 -supernal%5:00:00:heavenly:00 01179345 2 0 -supernatant%1:17:00:: 09451103 1 0 -supernatant%5:00:00:supported:00 02351490 1 1 -supernatural%1:18:00:: 09503877 1 2 -supernatural%3:00:00:: 01574446 1 3 -supernatural_being%1:18:00:: 09504135 1 0 -supernatural_virtue%1:07:00:: 04847991 1 0 -supernaturalism%1:07:00:: 04789406 2 0 -supernaturalism%1:09:00:: 05952490 1 2 -supernaturalist%3:01:00:: 02912054 1 0 -supernaturalistic%3:01:00:: 02912054 1 0 -supernaturally%4:02:00:: 00431238 1 0 -supernaturalness%1:07:00:: 04789406 1 0 -supernormal%5:00:00:abnormal:00 01597928 2 0 -supernormal%5:00:00:paranormal:00 01600174 1 0 -supernova%1:17:00:: 09451237 1 0 -supernumerary%1:18:00:: 10676569 2 0 -supernumerary%1:18:01:: 10676682 1 0 -supernumerary%5:00:00:unnecessary:00 01581305 1 0 -superorder%1:14:00:: 08107343 1 0 -superorder_acanthopterygii%1:05:00:: 02551824 1 0 -superorder_labyrinthodonta%1:05:00:: 01655577 1 0 -superorder_labyrinthodontia%1:05:00:: 01655577 1 0 -superorder_malacopterygii%1:05:00:: 01428155 1 0 -superorder_ratitae%1:05:00:: 01518170 1 0 -superordinate%1:10:00:: 06292836 2 0 -superordinate%1:18:00:: 10676018 1 0 -superordinate%2:31:00:: 00658619 1 0 -superordinate%5:00:00:superior:01 02340003 1 0 -superordinate_word%1:10:00:: 06292836 1 0 -superordination%1:24:00:: 13808004 1 0 -superoxide%1:27:00:: 15064729 2 0 -superoxide%1:27:01:: 15064917 1 0 -superoxide_anion%1:27:00:: 15064729 1 0 -superoxide_dismutase%1:27:00:: 15065025 1 0 -superpatriotic%5:00:00:patriotic:00 01740358 1 0 -superpatriotism%1:07:00:: 04878646 1 0 -superphylum%1:14:00:: 08103457 1 0 -superposable%5:00:00:congruent:00 00561896 1 0 -superpose%2:35:00:: 01469445 1 0 -superpose%2:35:01:: 01469263 2 0 -superposition%1:04:00:: 01053067 4 0 -superposition%1:04:01:: 01053404 3 0 -superposition%1:09:00:: 05991776 2 0 -superposition%1:22:00:: 13563382 1 0 -superposition_principle%1:09:01:: 05991776 1 0 -superpower%1:14:00:: 08177592 1 0 -supersaturated%5:00:00:saturated:01 00758150 1 0 -superscribe%2:36:00:: 01691927 2 0 -superscribe%2:36:01:: 01692096 1 0 -superscript%1:10:00:: 06820023 1 0 -superscript%3:00:00:: 02349685 1 0 -superscription%1:04:00:: 00615336 2 0 -superscription%1:10:00:: 06406177 1 0 -supersede%2:41:00:: 02405390 1 4 -supersedure%1:04:00:: 00197419 1 0 -supersensitised%5:00:00:susceptible:00 02360944 1 0 -supersensitive%5:00:00:susceptible:00 02360944 1 0 -supersensitized%5:00:00:susceptible:00 02360944 1 0 -supersession%1:04:00:: 00197419 1 0 -superslasher%1:05:00:: 01718414 1 0 -supersonic%3:00:00:: 00175887 1 2 -supersonic%5:00:00:inaudible:00 00175300 2 0 -superstar%1:18:00:: 09762509 1 0 -superstition%1:09:00:: 05952678 1 9 -superstitious%5:00:00:irrational:00 01927061 1 1 -superstitious_notion%1:09:00:: 05952678 1 0 -superstitiously%4:02:00:: 00471352 1 0 -superstrate%1:10:00:: 06903972 2 0 -superstrate%1:15:00:: 08658001 1 0 -superstratum%1:10:00:: 06903972 2 0 -superstratum%1:15:00:: 08658001 1 0 -superstring%1:17:00:: 09451378 1 0 -superstructure%1:06:00:: 04358874 1 0 -supersymmetry%1:09:00:: 06107436 1 0 -supertanker%1:06:00:: 04359034 1 0 -supertax%1:21:00:: 13315364 1 0 -supertitle%1:10:00:: 06347811 1 0 -supertonic%1:10:00:: 06857867 1 0 -supertwister%1:19:00:: 11517041 1 0 -supervene%2:30:00:: 00341422 1 0 -supervene_upon%2:41:00:: 02405390 1 0 -supervention%1:11:00:: 07479525 1 0 -supervise%2:39:00:: 02163301 2 0 -supervise%2:41:00:: 02443049 1 11 -supervised%3:00:00:: 02350205 1 0 -supervising%1:04:00:: 01135529 1 0 -supervision%1:04:00:: 01135529 1 6 -supervisor%1:10:00:: 06580351 2 0 -supervisor%1:18:00:: 10676877 1 3 -supervisor_call_instruction%1:10:00:: 06587217 1 0 -supervisory%3:01:00:: 02904372 1 0 -supervisory_program%1:10:00:: 06580351 1 0 -supervisory_routine%1:10:00:: 06584376 1 0 -supervisory_software%1:10:00:: 06588139 1 0 -supinate%2:38:00:: 02090243 1 0 -supination%1:04:00:: 00345297 1 0 -supinator%1:08:00:: 05292587 1 0 -supine%5:00:00:passive:01 00040058 2 0 -supine%5:00:00:unerect:00 01239781 1 1 -supinely%4:02:00:: 00471498 2 0 -supinely%4:02:01:: 00471640 1 0 -supper%1:13:00:: 07575984 1 14 -supper%1:14:00:: 08256567 2 0 -supper_club%1:06:00:: 04359124 1 0 -supperless%5:00:00:hungry:00 01269907 1 0 -suppertime%1:28:00:: 15166070 1 0 -supping%1:04:00:: 00841777 1 0 -supplant%2:41:00:: 02405390 1 3 -supplanter%1:18:00:: 10742546 1 0 -supplanting%1:04:00:: 00197610 1 0 -supple%2:30:00:: 00582917 1 0 -supple%5:00:00:flexible:02 01024228 2 0 -supple%5:00:00:graceful:00 01140290 1 0 -supple%5:00:01:flexible:01 01022785 3 0 -supplejack%1:06:00:: 04359217 1 0 -supplement%1:06:00:: 02671421 3 4 -supplement%1:07:00:: 05110772 2 4 -supplement%1:10:00:: 06399631 1 4 -supplement%2:35:00:: 01328705 3 0 -supplement%2:40:00:: 02342132 1 10 -supplement%2:42:00:: 02752931 2 0 -supplemental%5:00:00:additive:00 00049879 2 0 -supplemental%5:00:00:secondary:01 01854129 1 1 -supplementary%5:00:00:additive:00 00049879 2 0 -supplementary%5:00:00:secondary:01 01854129 1 1 -supplementary_benefit%1:04:00:: 01087740 1 0 -supplementation%1:04:00:: 00371846 2 0 -supplementation%1:07:00:: 05110772 1 0 -suppleness%1:07:00:: 05004091 1 1 -suppleness%1:07:01:: 05023022 2 0 -suppleness%1:07:02:: 04659730 3 0 -suppliant%1:18:00:: 10420031 1 0 -suppliant%5:00:00:beseeching:00 00714889 1 0 -supplicant%1:18:00:: 10420031 2 0 -supplicant%1:18:01:: 10464052 1 0 -supplicant%5:00:00:beseeching:00 00714889 1 0 -supplicate%2:32:00:: 00758627 1 2 -supplicate%2:32:01:: 00758887 3 0 -supplicate%2:32:02:: 00759087 2 0 -supplication%1:04:01:: 01041968 3 0 -supplication%1:10:00:: 07190290 1 0 -supplication%1:10:01:: 07187638 2 0 -supplicatory%5:00:00:beseeching:00 00714889 1 0 -supplier%1:18:00:: 10677271 1 2 -supply%1:04:00:: 01057200 3 2 -supply%1:22:00:: 13563522 2 4 -supply%1:23:00:: 13777344 1 21 -supply%2:32:00:: 01027174 4 1 -supply%2:34:00:: 01182709 3 3 -supply%2:40:00:: 02327200 1 44 -supply%2:41:00:: 02479323 2 8 -supply-side_economics%1:09:00:: 06151282 1 0 -supply_chamber%1:06:01:: 04359335 1 0 -supply_closet%1:06:00:: 04359500 1 1 -supply_line%1:15:00:: 08617399 1 0 -supply_officer%1:18:00:: 10677604 1 0 -supply_route%1:15:00:: 08617399 1 0 -supply_ship%1:06:00:: 04409011 1 0 -supplying%1:04:00:: 01057200 1 0 -support%1:04:00:: 01212519 2 9 -support%1:04:01:: 01017320 8 2 -support%1:04:02:: 00154433 5 3 -support%1:04:03:: 00971463 4 4 -support%1:04:04:: 01215902 1 15 -support%1:06:00:: 04359589 10 1 -support%1:06:01:: 04360501 7 2 -support%1:09:00:: 05693919 3 4 -support%1:10:01:: 07031752 9 1 -support%1:21:00:: 13365286 6 2 -support%1:21:01:: 13365698 11 0 -support%2:31:00:: 00665886 5 6 -support%2:31:04:: 00668099 11 0 -support%2:32:00:: 00806314 6 3 -support%2:32:01:: 00895304 8 2 -support%2:32:02:: 00908621 10 0 -support%2:35:00:: 01217043 4 14 -support%2:36:00:: 01720773 9 0 -support%2:40:00:: 02219094 2 16 -support%2:41:00:: 02556126 1 26 -support%2:41:01:: 02453889 3 14 -support%2:42:00:: 02663340 7 2 -support_column%1:06:00:: 04360798 1 0 -support_hose%1:06:00:: 04360914 1 0 -support_level%1:21:00:: 13305510 1 0 -support_payment%1:21:00:: 13283314 1 0 -support_stocking%1:06:00:: 04360914 1 0 -support_system%1:14:00:: 08435024 1 0 -supportable%5:00:00:tolerable:00 02435206 1 0 -supported%3:00:00:: 02350729 2 0 -supported%3:00:02:: 02352650 1 0 -supporter%1:06:00:: 03421117 4 0 -supporter%1:06:01:: 02752615 5 0 -supporter%1:18:00:: 10677713 1 1 -supporter%1:18:01:: 09815790 3 0 -supporter%1:18:02:: 10407954 2 0 -supporters_of_islam%1:14:00:: 08015321 1 0 -supporting%1:04:00:: 01017320 1 1 -supporting%5:00:00:bearing:00 00217428 2 0 -supporting%5:00:00:supportive:00 02356244 1 2 -supporting_fire%1:04:00:: 00993956 1 0 -supporting_players%1:14:00:: 08238048 1 0 -supporting_structure%1:06:00:: 04361095 1 0 -supporting_tower%1:06:00:: 04361260 1 0 -supportive%3:00:00:: 02354537 1 5 -supposable%5:00:00:thinkable:00 02418412 1 0 -supposal%1:09:00:: 05892096 1 0 -supposal%1:09:01:: 05779712 2 0 -suppose%2:31:00:: 00631737 2 31 -suppose%2:31:01:: 00633443 3 17 -suppose%2:31:05:: 00716345 5 0 -suppose%2:31:06:: 00716531 4 0 -suppose%2:32:00:: 00917300 1 34 -supposed%5:00:00:obligated:00 01617255 1 4 -supposed%5:00:00:questionable:00 01916555 3 0 -supposed%5:00:00:theoretical:00 00861216 4 0 -supposed%5:00:02:improbable:00 01414137 2 2 -supposedly%4:02:00:: 00154449 1 4 -supposition%1:09:00:: 05892096 2 0 -supposition%1:09:01:: 05779712 3 0 -supposition%1:10:00:: 06782680 1 0 -suppositional%5:00:00:theoretical:00 00861216 1 0 -suppositious%5:00:00:theoretical:00 00861216 1 0 -supposititious%5:00:00:theoretical:00 00861216 1 0 -suppository%1:06:00:: 04361381 1 0 -suppress%2:30:00:: 00462092 1 4 -suppress%2:30:12:: 00153964 5 0 -suppress%2:31:00:: 00612841 4 0 -suppress%2:41:00:: 02423762 3 1 -suppress%2:41:01:: 02424652 2 1 -suppressant%1:06:00:: 04361529 1 0 -suppressed%3:00:00:: 00470111 1 0 -suppressed%5:00:00:silenced:00 02166159 2 0 -suppressed%5:00:01:inhibited:00 01316808 3 0 -suppresser%1:06:00:: 04361641 3 0 -suppresser%1:08:00:: 05441468 2 0 -suppresser%1:18:00:: 10678472 1 0 -suppresser_gene%1:08:00:: 05441468 1 0 -suppression%1:04:01:: 01147950 2 0 -suppression%1:04:02:: 01079604 3 0 -suppression%1:04:03:: 01070892 4 0 -suppression%1:22:00:: 13563647 1 0 -suppressive%5:00:00:restrictive:00 02005065 1 0 -suppressive_fire%1:04:00:: 00994144 1 0 -suppressor%1:06:00:: 04361641 3 0 -suppressor%1:08:00:: 05441468 2 0 -suppressor%1:18:00:: 10678472 1 0 -suppressor_gene%1:08:00:: 05441468 1 0 -suppurate%2:29:00:: 00096766 2 0 -suppurate%2:29:01:: 00097179 1 0 -suppurating_sore%1:26:00:: 14184254 1 0 -suppuration%1:08:00:: 05417472 2 0 -suppuration%1:22:00:: 13479889 1 0 -suppurative%3:01:00:: 02805735 1 0 -supra%4:02:00:: 00079947 1 3 -supra_expressionism%1:14:00:: 08467757 1 1 -suprainfection%1:26:00:: 14185503 1 0 -supranational%5:00:00:international:00 01569366 1 0 -supranormal%5:00:00:paranormal:00 01600174 1 0 -supraocular%3:01:00:: 02805966 1 0 -supraorbital%3:01:00:: 02805966 1 0 -supraorbital_ridge%1:08:00:: 05603475 1 0 -supraorbital_torus%1:08:00:: 05603475 1 0 -supraorbital_vein%1:08:00:: 05381779 1 0 -suprarenal_gland%1:08:00:: 05331171 1 0 -suprarenalectomy%1:04:00:: 00666107 1 0 -suprasegmental%5:00:00:united:00 02478052 1 0 -supratrochlear_vein%1:08:00:: 05381956 1 0 -supremacism%1:09:00:: 05952829 1 0 -supremacist%1:18:00:: 10678662 1 0 -supremacy%1:26:00:: 14442530 1 4 -suprematism%1:14:00:: 08466010 1 0 -suprematist%1:18:00:: 10678841 1 0 -supreme%5:00:00:dominant:01 00792641 2 3 -supreme%5:00:00:maximal:00 01495912 4 1 -supreme%5:00:00:superior:02 02344512 3 1 -supreme%5:00:00:ultimate:00 01579467 1 6 -supreme_allied_commander_atlantic%1:14:00:: 08175233 1 0 -supreme_allied_commander_europe%1:14:00:: 08175700 1 0 -supreme_authority%1:18:00:: 09804053 1 0 -supreme_being%1:18:00:: 09536058 1 0 -supreme_court%1:14:00:: 08335886 1 2 -supreme_court%1:14:01:: 08336188 2 0 -supreme_court_of_the_united_states%1:14:00:: 08335886 1 0 -supreme_headquarters%1:14:00:: 08405267 1 0 -supreme_headquarters_allied_powers_europe%1:14:00:: 08174167 1 0 -supreme_truth%1:14:00:: 08017614 1 0 -supremely%4:02:00:: 00216485 1 1 -supremo%1:18:00:: 10678937 1 0 -sur%1:15:00:: 08958334 1 0 -sura%1:08:00:: 05574332 2 0 -sura%1:10:00:: 06461830 1 0 -surbase%1:06:00:: 04361801 1 0 -surcease%1:11:00:: 07362075 1 0 -surcharge%1:21:00:: 13325505 1 0 -surcharge%2:32:00:: 00923481 7 0 -surcharge%2:35:00:: 01488714 5 0 -surcharge%2:35:02:: 01488555 6 0 -surcharge%2:36:00:: 01748462 4 0 -surcharge%2:38:00:: 02028034 3 0 -surcharge%2:40:00:: 02319050 2 0 -surcharge%2:40:01:: 02320773 1 0 -surcoat%1:06:00:: 04361937 2 0 -surcoat%1:06:01:: 04363777 1 0 -surd%1:10:00:: 07119897 1 0 -surd%3:00:00:: 02286294 1 0 -sure%3:00:00:: 00336831 1 51 -sure%3:00:04:: 00340239 3 4 -sure%4:02:00:: 00144722 1 18 -sure%5:00:00:careful:00 00309740 2 23 -sure%5:00:00:reliable:00 00724397 5 1 -sure%5:00:00:secure:02 02094633 4 1 -sure%5:00:00:steady:00 02302822 8 0 -sure%5:00:00:true:00 02461586 7 0 -sure%5:00:00:trustworthy:00 02465978 6 0 -sure%5:00:02:certain:01 00335895 9 0 -sure-enough%5:00:00:genuine:00 01116118 1 1 -sure-fire%5:00:00:successful:00 02332845 1 0 -sure-footed%5:00:00:capable:00 00306909 2 0 -sure-footed%5:00:00:steady:00 02302941 1 0 -sure-handed%5:00:00:skilled:00 02227772 1 0 -sure_as_shooting%4:02:00:: 00144722 1 1 -sure_as_shooting%5:00:00:certain:01 00336041 1 0 -sure_enough%4:02:00:: 00150243 1 3 -sure_enough%4:02:02:: 00144722 2 3 -sure_thing%1:07:00:: 04753455 1 0 -surefooted%5:00:00:capable:00 00306909 2 0 -surefooted%5:00:00:steady:00 02302941 1 0 -surely%4:02:00:: 00144722 1 17 -sureness%1:07:02:: 04778267 2 0 -sureness%1:09:00:: 05697363 1 0 -surety%1:07:00:: 04754780 1 1 -surety%1:10:00:: 06685754 5 0 -surety%1:18:00:: 10149527 4 0 -surety%1:18:01:: 10187557 3 0 -surety%1:21:00:: 13349395 2 0 -surety_bond%1:21:00:: 13338960 1 0 -surf%1:11:00:: 07344233 1 1 -surf%2:30:00:: 00551611 3 0 -surf%2:35:03:: 01315333 2 0 -surf%2:38:00:: 01948077 1 0 -surf_casting%1:04:00:: 00455173 1 0 -surf_fish%1:05:01:: 02570838 2 0 -surf_fish%1:05:02:: 02597004 1 0 -surf_fishing%1:04:00:: 00455173 1 0 -surface%1:06:00:: 04362025 1 90 -surface%1:06:01:: 02688443 6 0 -surface%1:09:00:: 05853449 4 4 -surface%1:09:01:: 05612809 5 1 -surface%1:15:00:: 08660339 2 36 -surface%1:17:00:: 09451517 3 11 -surface%2:30:00:: 00423702 3 0 -surface%2:35:00:: 01264283 2 0 -surface%2:38:00:: 01990281 1 1 -surface%3:00:00:: 02471091 1 2 -surface-active%5:00:00:active:07 00042982 1 0 -surface-active_agent%1:27:00:: 15096783 1 6 -surface-assimilative%3:00:00:: 00008206 1 0 -surface-mine%2:34:00:: 01164081 1 0 -surface-to-air%3:00:00:: 00091121 1 0 -surface-to-air_missile%1:06:00:: 04363210 1 0 -surface-to-air_missile_system%1:06:00:: 04363412 1 0 -surface_area%1:07:00:: 05128519 1 2 -surface_assimilation%1:22:00:: 13427789 1 0 -surface_chemistry%1:09:00:: 06090678 1 0 -surface_fire%1:11:00:: 07304630 1 0 -surface_gage%1:06:00:: 04362624 1 0 -surface_gauge%1:06:00:: 04362624 1 0 -surface_lift%1:06:00:: 04362821 1 0 -surface_mail%1:10:00:: 06623207 1 0 -surface_mine%2:34:00:: 01164081 1 0 -surface_noise%1:11:00:: 07430964 1 1 -surface_search_radar%1:06:00:: 04362972 1 0 -surface_ship%1:06:00:: 04363082 1 0 -surface_soil%1:27:00:: 14695737 1 0 -surface_tension%1:19:00:: 11517999 1 4 -surfacing%1:04:00:: 00061171 1 0 -surfactant%1:27:00:: 15096783 1 3 -surfbird%1:05:00:: 02026629 1 0 -surfboard%1:06:00:: 04363559 1 0 -surfboard%2:38:00:: 01948077 1 0 -surfboarder%1:18:00:: 10679054 1 0 -surfboarding%1:04:00:: 00445055 1 0 -surfboat%1:06:00:: 04363671 1 0 -surfeit%1:04:00:: 00841628 3 0 -surfeit%1:07:00:: 05119837 2 0 -surfeit%1:26:01:: 14452294 1 0 -surfeit%2:34:00:: 01191838 2 0 -surfeit%2:40:00:: 02333225 1 1 -surfer%1:18:00:: 10679054 1 0 -surffish%1:05:01:: 02570838 2 0 -surffish%1:05:02:: 02597004 1 0 -surficial%3:01:00:: 02806098 1 0 -surfing%1:04:00:: 00445055 1 0 -surfperch%1:05:00:: 02570838 1 0 -surfriding%1:04:00:: 00445055 1 0 -surge%1:04:00:: 00364787 2 2 -surge%1:11:00:: 07440240 1 4 -surge%1:11:01:: 07348545 3 0 -surge%2:30:03:: 00168217 5 0 -surge%2:38:00:: 01943718 2 1 -surge%2:38:01:: 02041206 1 8 -surge%2:38:03:: 01903756 3 1 -surge%2:38:04:: 01885239 4 1 -surge_protector%1:06:00:: 04364160 1 0 -surge_suppressor%1:06:00:: 04364160 1 0 -surgeon%1:18:00:: 10679174 1 9 -surgeon's_knot%1:06:00:: 04363874 1 0 -surgeon_general%1:18:00:: 10679503 2 0 -surgeon_general%1:18:01:: 10679610 1 0 -surgeonfish%1:05:00:: 02621258 1 0 -surgery%1:04:01:: 00671351 4 0 -surgery%1:06:00:: 03850245 3 0 -surgery%1:06:01:: 04363991 2 0 -surgery%1:09:00:: 06063588 1 0 -surgical%3:00:00:: 01169194 2 0 -surgical%3:01:00:: 02888968 1 0 -surgical%5:00:00:accurate:00 00022852 3 0 -surgical_contraception%1:04:00:: 00853487 1 0 -surgical_dressing%1:06:00:: 04364397 1 0 -surgical_gown%1:06:00:: 03450734 1 0 -surgical_incision%1:04:00:: 00678010 1 0 -surgical_instrument%1:06:00:: 04364545 1 0 -surgical_knife%1:06:00:: 04364827 1 0 -surgical_operation%1:04:00:: 00671351 1 0 -surgical_procedure%1:04:00:: 00671351 1 0 -surgical_process%1:04:00:: 00671351 1 0 -surgical_seam%1:06:00:: 04367371 1 0 -surgical_spirit%1:27:00:: 15065280 1 0 -surgical_strike%1:04:00:: 00977857 1 0 -surgically%4:02:00:: 00137142 1 0 -surging%5:00:00:stormy:00 00304455 1 1 -suricata%1:05:00:: 02138323 1 0 -suricata_suricatta%1:05:00:: 02138647 1 0 -suricata_tetradactyla%1:05:00:: 02138777 1 0 -suricate%1:05:00:: 02138777 1 0 -surinam%1:15:00:: 09030752 1 0 -surinam_cherry%1:13:00:: 07746334 3 0 -surinam_cherry%1:20:01:: 12332030 2 0 -surinam_cherry%1:20:02:: 12694486 1 0 -surinam_river%1:17:00:: 09451864 1 0 -surinam_toad%1:05:00:: 01654083 1 0 -suriname%1:15:00:: 09030752 1 0 -suriname_river%1:17:00:: 09451864 1 0 -surinamese_monetary_unit%1:23:00:: 13680032 1 0 -surlily%4:02:00:: 00284656 1 0 -surliness%1:07:00:: 04642258 1 0 -surly%5:00:00:ill-natured:00 01139067 1 1 -surmisable%5:00:00:thinkable:00 02418412 1 0 -surmisal%1:10:00:: 06782680 1 0 -surmise%1:10:00:: 06782680 1 1 -surmise%2:31:00:: 00689205 1 2 -surmise%2:32:00:: 00921072 2 1 -surmontil%1:06:00:: 04483399 1 0 -surmount%2:33:00:: 01108627 1 2 -surmount%2:33:01:: 01105639 4 0 -surmount%2:38:00:: 01999082 3 0 -surmount%2:42:00:: 02694548 2 1 -surmountable%3:00:00:: 02356820 1 0 -surmountable%5:00:00:passable:00 01725031 2 0 -surmounted%3:44:00:: 03149619 1 1 -surmounter%1:18:00:: 10668450 1 0 -surmullet%1:05:00:: 02600298 1 0 -surname%1:10:00:: 06336904 1 0 -surnia%1:05:00:: 01624406 1 0 -surnia_ulula%1:05:00:: 01624537 1 0 -surpass%2:33:00:: 01105639 2 2 -surpass%2:38:00:: 02051694 3 1 -surpass%2:42:00:: 02673965 1 2 -surpass%2:42:01:: 02669477 4 0 -surpassing%5:00:00:extraordinary:00 01676026 2 0 -surpassing%5:00:00:superior:02 02344793 1 0 -surpassingly%4:02:00:: 00471945 1 0 -surplice%1:06:00:: 04364994 1 0 -surpliced%5:00:00:clothed:00 00456855 1 0 -surplus%1:07:00:: 05119714 1 8 -surplus%5:00:00:unnecessary:00 01581305 1 7 -surplusage%1:07:00:: 05119714 1 0 -surprint%1:06:00:: 03865704 1 0 -surprisal%1:04:00:: 00553655 1 0 -surprise%1:04:00:: 00553655 3 0 -surprise%1:11:00:: 07298154 2 5 -surprise%1:12:00:: 07510348 1 16 -surprise%2:31:00:: 00725274 1 22 -surprise%2:33:00:: 01126051 3 0 -surprise%2:41:00:: 02596493 2 1 -surprise_attack%1:04:00:: 01246541 1 0 -surprised%3:00:00:: 02357479 1 15 -surprisedly%4:02:00:: 00472068 1 0 -surpriser%1:18:00:: 10679723 1 0 -surprising%3:00:00:: 02359464 1 11 -surprisingly%4:02:00:: 00145228 1 5 -surprisingly%4:02:01:: 00213301 2 2 -surprisingness%1:07:00:: 04796725 1 0 -surreal%5:00:00:unreal:02 01939226 2 0 -surreal%5:00:00:unrealistic:00 01943067 1 0 -surrealism%1:14:00:: 08470210 1 0 -surrealist%1:18:00:: 10679845 1 0 -surrealistic%5:00:00:unrealistic:00 01943067 1 0 -surrebuttal%1:10:00:: 06563640 1 0 -surrebutter%1:10:00:: 06563640 1 0 -surrejoinder%1:10:00:: 06563801 1 0 -surrender%1:04:00:: 00067707 4 0 -surrender%1:04:01:: 00213343 3 0 -surrender%1:10:00:: 07255027 2 1 -surrender%1:12:00:: 07542433 1 1 -surrender%2:33:00:: 01115585 1 5 -surrender%2:40:00:: 02235229 2 2 -surrenderer%1:18:00:: 10679998 1 0 -surreptitious%5:00:00:concealed:00 02088974 1 0 -surreptitious%5:00:00:covert:00 01706465 2 0 -surreptitiously%4:02:00:: 00471757 1 1 -surrey%1:06:00:: 04365112 2 0 -surrey%1:15:00:: 08884961 1 0 -surrogate%1:18:00:: 10005721 2 0 -surrogate%1:18:01:: 10680153 1 0 -surrogate%5:00:00:adoptive:00 01406418 1 0 -surrogate_mother%1:18:00:: 10680370 1 0 -surround%1:15:00:: 08567235 1 0 -surround%2:33:00:: 01127411 3 1 -surround%2:33:01:: 01130607 4 0 -surround%2:35:00:: 01467370 1 6 -surround%2:35:01:: 01568886 2 2 -surrounded%5:00:00:enclosed:00 01658666 1 3 -surrounding%5:00:00:close:01 00449332 1 11 -surroundings%1:15:00:: 08567235 2 1 -surroundings%1:26:00:: 14513944 1 5 -sursum_corda%1:10:00:: 06385434 1 0 -surtax%1:21:00:: 13315364 1 0 -surtax%2:40:00:: 02308115 1 0 -surtitle%1:10:00:: 06347811 1 0 -surtout%1:06:00:: 04365229 1 0 -surveil%2:39:00:: 02198602 1 0 -surveillance%1:04:01:: 00652466 1 2 -surveillance_of_disease%1:04:00:: 00881035 1 0 -surveillance_system%1:06:00:: 04365328 1 0 -survey%1:04:01:: 00881649 3 1 -survey%1:04:02:: 00644503 1 5 -survey%1:10:00:: 06469694 2 4 -survey%2:31:00:: 00646542 1 6 -survey%2:31:01:: 00646738 6 0 -survey%2:31:02:: 00647929 5 0 -survey%2:31:03:: 00696700 4 0 -survey%2:39:00:: 02150328 2 5 -survey%2:39:13:: 02198602 3 0 -survey_mile%1:23:00:: 13656345 1 0 -surveying%1:04:00:: 01005579 1 1 -surveying_instrument%1:06:00:: 04365484 1 0 -surveyor%1:18:00:: 10680609 1 2 -surveyor%1:18:01:: 10680796 2 0 -surveyor's_instrument%1:06:00:: 04365484 1 0 -surveyor's_level%1:06:00:: 04365751 1 0 -survival%1:04:00:: 01022178 3 0 -survival%1:22:00:: 13563746 2 0 -survival%1:26:00:: 13962166 1 10 -survival_of_the_fittest%1:22:00:: 13563746 1 0 -survivalist%1:18:00:: 10680910 1 0 -survive%2:42:00:: 02616713 3 5 -survive%2:42:01:: 02618149 1 20 -survive%2:42:02:: 02619924 2 8 -survive%2:42:03:: 02619739 4 0 -surviving%5:00:00:extant:00 00928874 1 2 -survivor%1:05:00:: 01324142 3 1 -survivor%1:18:02:: 10681060 2 1 -survivor%1:18:03:: 10681194 1 3 -survivor_guilt%1:12:00:: 07536437 1 0 -survivors_insurance%1:04:00:: 01088656 1 0 -survivorship_annuity%1:21:00:: 13295183 1 0 -surya%1:18:00:: 09529201 1 0 -sus%1:05:00:: 02395244 1 0 -sus_scrofa%1:05:01:: 02396427 1 0 -sus_scrofa%1:05:02:: 02395406 2 0 -susa%1:15:00:: 09038439 1 0 -susah%1:15:00:: 09038439 1 0 -susan_anthony%1:18:00:: 10819134 1 0 -susan_b._anthony%1:18:00:: 10819134 1 0 -susan_b_anthony_dollar%1:21:00:: 13392156 1 0 -susan_brownell_anthony%1:18:00:: 10819134 1 0 -susan_sontag%1:18:00:: 11308520 1 0 -susanna%1:10:00:: 06459016 1 0 -susceptibility%1:26:00:: 14530061 1 2 -susceptible%3:00:00:: 02360448 1 2 -susceptible%5:00:00:impressionable:00 02365142 2 0 -susceptibleness%1:26:00:: 14530061 1 0 -sushi%1:13:00:: 07879450 1 1 -sushi_bar%1:06:00:: 04366033 1 0 -susian%1:10:00:: 06968454 1 0 -susiana%1:15:00:: 08913242 1 0 -suslik%1:05:00:: 02358584 1 0 -suspect%1:18:00:: 10681383 1 1 -suspect%1:18:01:: 09762101 2 0 -suspect%2:31:00:: 00687926 2 2 -suspect%2:32:00:: 00921072 1 6 -suspect%2:32:02:: 00924873 3 1 -suspect%5:00:00:questionable:00 01917594 1 2 -suspected%3:00:00:: 02370212 1 0 -suspend%2:30:00:: 00363493 4 2 -suspend%2:30:01:: 00148763 2 4 -suspend%2:30:02:: 00542668 5 1 -suspend%2:35:00:: 01481154 1 8 -suspend%2:41:00:: 02502037 3 2 -suspend%2:42:00:: 02643740 6 0 -suspended%5:00:01:supported:00 02351692 1 7 -suspended_animation%1:26:00:: 14063089 1 2 -suspender%1:06:00:: 02887489 1 0 -suspender_belt%1:06:00:: 03421324 1 0 -suspense%1:09:00:: 05699770 2 2 -suspense%1:12:01:: 07511238 3 0 -suspense%1:12:02:: 07522632 1 2 -suspense_account%1:21:00:: 13408776 1 0 -suspenseful%5:00:00:tense:03 02405805 1 0 -suspension%1:04:00:: 01017701 6 0 -suspension%1:04:01:: 00209132 7 0 -suspension%1:06:00:: 04366116 5 0 -suspension%1:11:00:: 07368256 4 0 -suspension%1:26:00:: 14010636 3 0 -suspension%1:27:00:: 14591091 1 6 -suspension%1:28:00:: 15271008 2 0 -suspension_bridge%1:06:00:: 04366367 1 1 -suspension_point%1:10:00:: 06843838 1 0 -suspension_system%1:06:00:: 04366116 1 0 -suspensive%5:00:00:indecisive:01 00686789 2 0 -suspensive%5:00:00:tense:03 02405805 1 0 -suspensor%1:06:00:: 02752615 1 0 -suspensory%1:06:00:: 04366832 1 0 -suspensory_bandage%1:06:00:: 04366832 1 0 -suspicion%1:07:00:: 04895979 4 0 -suspicion%1:09:00:: 05698791 2 2 -suspicion%1:09:01:: 05919034 1 11 -suspicion%1:26:00:: 13982839 3 0 -suspicious%5:00:00:distrustful:00 02464277 1 3 -suspicious%5:00:00:questionable:00 01917594 2 1 -suspiciously%4:02:00:: 00241272 1 2 -suspiciousness%1:07:00:: 04895979 1 0 -suspiration%1:10:00:: 07129602 1 0 -suspire%2:29:03:: 00001740 2 0 -suspire%2:29:04:: 00004032 1 0 -susquehanna%1:17:00:: 09452017 1 0 -susquehanna_river%1:17:00:: 09452017 1 0 -suss_out%2:31:00:: 00661824 1 0 -sussex%1:15:00:: 08886432 1 0 -sussex_spaniel%1:05:00:: 02102480 1 0 -sussex_university%1:06:00:: 04512783 1 0 -sustain%2:29:00:: 00065639 2 3 -sustain%2:31:00:: 00665886 7 0 -sustain%2:32:00:: 00818422 6 1 -sustain%2:34:00:: 01184625 4 2 -sustain%2:34:01:: 01202728 3 2 -sustain%2:35:00:: 01217043 5 1 -sustain%2:42:01:: 02679530 1 8 -sustainability%1:07:00:: 05029594 1 0 -sustainable%3:01:00:: 02806261 1 0 -sustained%5:00:00:continuous:01 00596639 1 0 -sustained%5:00:02:continuous:01 00596358 2 0 -sustainer%1:18:00:: 10740219 1 0 -sustaining_pedal%1:06:00:: 04367011 1 0 -sustaining_program%1:10:00:: 06621917 1 0 -sustainment%1:04:00:: 01216191 1 0 -sustenance%1:04:00:: 01216191 3 0 -sustenance%1:13:00:: 07570720 1 2 -sustenance%1:21:00:: 13365286 2 0 -sustentacular%3:01:00:: 02806435 1 0 -sustentation%1:04:00:: 01216191 1 0 -susurrant%5:00:00:soft:04 01456038 1 0 -susurrate%2:32:00:: 01044377 1 0 -susurration%1:10:00:: 07130341 2 0 -susurration%1:11:00:: 07396233 1 0 -susurrous%5:00:00:soft:04 01456221 1 0 -susurrus%1:11:00:: 07396233 1 0 -sutherland%1:18:00:: 11325867 1 0 -sutler%1:18:00:: 10681557 1 0 -sutra%1:10:00:: 06623997 1 0 -suttee%1:04:00:: 00223575 1 0 -sutura%1:08:00:: 05542893 1 0 -sutura_coronalis%1:08:00:: 05543917 1 0 -sutura_frontalis%1:08:00:: 05544078 1 0 -sutura_intermaxillaris%1:08:00:: 05544264 1 0 -sutura_internasalis%1:08:00:: 05544432 1 0 -sutura_lamboidea%1:08:00:: 05544575 1 0 -sutura_sagittalis%1:08:00:: 05545047 1 0 -sutural_bone%1:08:00:: 05610919 1 0 -suture%1:06:00:: 04367205 3 0 -suture%1:06:01:: 04367371 2 0 -suture%1:08:00:: 05542893 1 0 -suture%2:35:00:: 01296154 1 0 -suturing%1:04:00:: 00716055 1 0 -suv%1:06:00:: 04285965 1 0 -suva%1:15:00:: 08779375 1 0 -suzerain%1:14:00:: 08170535 1 0 -suzerainty%1:15:00:: 08558882 2 0 -suzerainty%1:26:00:: 14443786 1 0 -svalbard%1:15:00:: 08764561 1 0 -svante_august_arrhenius%1:18:00:: 10824352 1 0 -svedberg%1:18:00:: 11326591 1 0 -svelte%5:00:00:graceful:00 01140290 2 0 -svelte%5:00:00:sophisticated:00 02271177 1 0 -svelte%5:00:00:thin:03 00990855 3 0 -svengali%1:18:00:: 10681748 2 0 -svengali%1:18:01:: 10681891 1 0 -sverdrup%1:18:00:: 11326008 1 0 -sverige%1:15:00:: 08765890 1 0 -svizzera%1:15:00:: 09031653 1 0 -svoboda%1:26:00:: 13996211 1 0 -svr%1:14:00:: 08343905 1 0 -sw%1:24:00:: 13833886 1 0 -swab%1:06:00:: 04367480 2 0 -swab%1:06:01:: 04367746 1 0 -swab%2:35:00:: 01244178 1 1 -swab%2:35:01:: 01233194 2 0 -swabbing%1:04:00:: 00252020 1 0 -swad%1:14:00:: 07960666 1 1 -swaddle%2:35:00:: 01300271 1 0 -swaddling_bands%1:06:00:: 04367950 1 0 -swaddling_clothes%1:04:00:: 01149793 2 0 -swaddling_clothes%1:06:00:: 04367950 1 0 -swag%1:06:00:: 04368109 3 0 -swag%1:21:00:: 13262663 2 0 -swag%1:21:01:: 13371190 1 0 -swag%2:38:00:: 01876434 3 0 -swag%2:38:01:: 01924882 2 0 -swag%2:38:02:: 01985524 1 0 -swage%1:06:00:: 04515444 1 0 -swage%2:35:00:: 01256374 1 0 -swage_block%1:06:00:: 04368235 1 0 -swagger%1:04:00:: 00290125 2 0 -swagger%1:18:00:: 10682169 1 0 -swagger%2:29:00:: 00012434 3 0 -swagger%2:32:01:: 01035199 2 0 -swagger%2:38:00:: 01916634 1 2 -swagger%5:00:00:fashionable:00 00972354 1 0 -swagger_stick%1:06:00:: 04368365 1 0 -swaggerer%1:18:00:: 10682038 1 0 -swaggering%5:00:00:adventurous:00 00066703 2 0 -swaggering%5:00:00:proud:00 01891109 1 2 -swaggie%1:18:00:: 10682169 1 0 -swagman%1:18:00:: 10682169 1 0 -swahili%1:10:00:: 06995792 1 1 -swain%1:18:00:: 09871364 1 0 -swainsona%1:20:00:: 11751598 1 0 -swainsona_galegifolia%1:20:00:: 11751974 1 0 -swainsona_grandiflora%1:20:00:: 11752168 1 0 -swainsona_greyana%1:20:00:: 11752168 1 0 -swale%1:17:00:: 09452291 1 0 -swallow%1:04:00:: 00839778 2 1 -swallow%1:05:00:: 01594372 3 0 -swallow%1:13:00:: 07579276 1 3 -swallow%2:31:00:: 00601659 8 0 -swallow%2:31:01:: 00737352 6 0 -swallow%2:31:03:: 00668805 7 0 -swallow%2:32:00:: 00799076 5 0 -swallow%2:32:01:: 00941037 4 0 -swallow%2:33:00:: 01083769 2 4 -swallow%2:34:00:: 01201856 1 12 -swallow%2:35:00:: 01582409 3 2 -swallow-tailed%5:00:00:caudate:00 00320614 1 0 -swallow-tailed_coat%1:06:00:: 04368496 1 0 -swallow-tailed_hawk%1:05:00:: 01609062 1 0 -swallow-tailed_kite%1:05:00:: 01609062 1 0 -swallow_dive%1:04:00:: 00444490 1 0 -swallow_hole%1:17:00:: 09435739 1 0 -swallow_shrike%1:05:00:: 01597022 1 0 -swallow_up%2:35:00:: 01582409 1 2 -swallow_wort%1:20:00:: 11903671 1 0 -swallowtail%1:06:00:: 04368496 1 0 -swallowwort%1:20:01:: 11903671 2 0 -swallowwort%1:20:02:: 13234293 1 0 -swami%1:18:00:: 09684901 1 1 -swammerdam%1:18:00:: 11326154 1 0 -swamp%1:17:00:: 09452395 1 4 -swamp%1:26:00:: 13938296 2 0 -swamp%2:35:00:: 01524523 2 1 -swamp%2:43:00:: 02771564 1 1 -swamp_ash%1:20:00:: 12304286 1 0 -swamp_azalea%1:20:00:: 12244819 1 0 -swamp_bay%1:20:00:: 11711764 1 0 -swamp_birch%1:20:00:: 12283542 1 0 -swamp_blackberry%1:20:00:: 12655605 1 0 -swamp_blueberry%1:20:00:: 12247664 1 0 -swamp_buggy%1:06:00:: 04368695 1 0 -swamp_candleberry%1:20:00:: 11741797 1 0 -swamp_candles%1:20:00:: 12095934 1 0 -swamp_chestnut_oak%1:20:00:: 12275131 1 0 -swamp_cottonwood%1:20:00:: 12733428 1 0 -swamp_cypress%1:20:00:: 11641963 1 0 -swamp_dewberry%1:20:00:: 12655605 1 0 -swamp_fever%1:26:00:: 14273365 1 0 -swamp_fly_honeysuckle%1:20:00:: 12677331 1 0 -swamp_gum%1:20:00:: 12338034 1 0 -swamp_hare%1:05:00:: 02325884 1 0 -swamp_hickory%1:20:00:: 12320806 1 0 -swamp_honeysuckle%1:20:00:: 12244819 1 0 -swamp_horsetail%1:20:00:: 13219976 1 0 -swamp_laurel%1:20:01:: 12237855 1 0 -swamp_laurel%1:20:02:: 11711764 2 0 -swamp_lily%1:20:00:: 13151975 1 0 -swamp_locust%1:20:00:: 12495670 1 0 -swamp_mallow%1:20:00:: 12178896 1 0 -swamp_maple%1:20:00:: 12753573 1 0 -swamp_milkweed%1:20:00:: 13234678 1 0 -swamp_oak%1:20:00:: 12579404 1 0 -swamp_oak%1:20:01:: 12270460 3 0 -swamp_oak%1:20:02:: 12276872 2 0 -swamp_pine%1:20:00:: 11615812 1 0 -swamp_plant%1:20:00:: 13122364 1 0 -swamp_poplar%1:20:00:: 12733428 1 0 -swamp_rabbit%1:05:01:: 02325884 2 0 -swamp_rabbit%1:05:02:: 02326074 1 0 -swamp_red_oak%1:20:00:: 12271933 1 0 -swamp_rose_mallow%1:20:00:: 12178896 1 0 -swamp_sparrow%1:05:00:: 01536780 1 0 -swamp_sunflower%1:20:00:: 11978551 1 0 -swamp_white_oak%1:20:00:: 12270460 1 0 -swamp_willow%1:20:00:: 12729315 1 0 -swamphen%1:05:00:: 02016358 1 0 -swampland%1:17:00:: 09452395 1 0 -swampy%5:00:00:wet:01 02548066 1 0 -swampy_beggar-ticks%1:20:00:: 11940915 1 0 -swan%1:05:00:: 01858441 1 1 -swan%2:32:00:: 01011031 1 1 -swan%2:38:00:: 01881180 2 0 -swan%2:38:01:: 01869893 3 0 -swan's_down%1:05:00:: 01897053 2 0 -swan's_down%1:06:00:: 04368840 1 0 -swan-flower%1:20:00:: 12055073 1 0 -swan-neck%1:20:00:: 12055073 1 0 -swan_dive%1:04:00:: 00444490 1 0 -swan_orchid%1:20:00:: 12055073 1 0 -swan_river_daisy%1:20:00:: 11941924 1 0 -swan_river_everlasting%1:20:00:: 12007766 1 0 -swan_song%1:04:00:: 00212678 1 0 -swanflower%1:20:00:: 12055073 1 0 -swank%1:07:00:: 04813712 1 0 -swank%2:39:00:: 02141973 1 0 -swank%5:00:00:fashionable:00 00973434 1 0 -swanky%5:00:00:fashionable:00 00973434 1 0 -swanneck%1:20:00:: 12055073 1 0 -swansea%1:15:00:: 08895771 1 0 -swanson%1:18:00:: 11326433 1 0 -swap%1:04:00:: 01109687 1 0 -swap%2:38:00:: 01839030 2 0 -swap%2:40:00:: 02259005 1 1 -swap_file%1:15:00:: 08556266 1 0 -swap_space%1:15:00:: 08556266 1 0 -sward%1:17:00:: 09463919 1 2 -swarm%1:14:00:: 07996149 2 1 -swarm%1:14:01:: 08184217 1 1 -swarm%2:38:00:: 02028366 2 3 -swarm%2:42:00:: 02714974 1 3 -swart%5:00:00:brunet:00 00245458 1 1 -swarthiness%1:07:00:: 04978216 1 0 -swarthy%5:00:00:brunet:00 00245458 1 1 -swash%1:11:00:: 07344528 1 1 -swash%2:29:00:: 00012434 4 0 -swash%2:32:00:: 00883226 3 0 -swash%2:35:00:: 01374020 2 0 -swash%2:38:00:: 02089082 1 0 -swashbuckler%1:18:00:: 09991530 1 1 -swashbuckling%1:07:00:: 04898334 1 0 -swashbuckling%5:00:00:adventurous:00 00066703 1 0 -swastika%1:10:00:: 06883725 1 0 -swat%1:04:00:: 00134391 1 0 -swat%2:35:00:: 01396937 1 0 -swat_squad%1:14:00:: 08274126 1 0 -swat_team%1:14:00:: 08274126 1 0 -swatch%1:06:00:: 04368949 1 2 -swath%1:17:00:: 09452653 2 0 -swath%1:23:00:: 13778907 1 0 -swathe%1:06:00:: 04369025 1 0 -swathe%2:35:00:: 01300271 1 1 -swathing%1:06:00:: 04369146 1 1 -swatter%1:06:00:: 04369282 1 0 -swatter%2:35:01:: 01375458 1 0 -sway%1:04:01:: 00348008 2 0 -sway%1:07:00:: 05194043 1 1 -sway%2:38:00:: 01875295 1 5 -sway%2:38:01:: 01877355 2 4 -sway%2:38:06:: 01876028 4 0 -sway%2:41:00:: 02586121 3 3 -swayback%5:00:00:unfit:01 01020117 1 0 -swaybacked%5:00:00:unfit:01 01020117 1 1 -swayer%1:18:00:: 10541229 1 0 -swazi%1:10:00:: 06994608 2 0 -swazi%1:18:00:: 09732293 1 0 -swazi%3:01:02:: 03121723 1 0 -swaziland%1:15:00:: 09031233 1 0 -swaziland_monetary_unit%1:23:00:: 13686023 1 0 -swbs%1:24:00:: 13833760 1 0 -swbw%1:24:00:: 13834038 1 0 -swear%2:31:10:: 00688377 5 0 -swear%2:32:00:: 01013040 4 1 -swear%2:32:01:: 00865387 1 20 -swear%2:32:02:: 00889947 3 2 -swear%2:32:03:: 01011031 2 8 -swear_in%2:32:00:: 01017501 1 1 -swear_off%2:32:00:: 00884814 1 2 -swear_out%2:35:00:: 01438681 1 1 -swearer%1:18:00:: 10682380 2 0 -swearer%1:18:01:: 10682501 1 0 -swearing%1:10:01:: 06684572 2 0 -swearing%1:10:02:: 07125096 1 1 -swearword%1:10:00:: 07125096 1 0 -sweat%1:04:00:: 00621627 4 0 -sweat%1:08:00:: 05405751 1 11 -sweat%1:19:00:: 11446459 3 0 -sweat%1:26:01:: 14403560 2 0 -sweat%2:29:00:: 00067545 1 5 -sweat_bag%1:06:00:: 04369485 1 1 -sweat_duct%1:08:00:: 05330518 1 0 -sweat_equity%1:21:00:: 13333546 1 0 -sweat_gland%1:08:00:: 05330659 1 1 -sweat_off%2:29:00:: 00046022 1 0 -sweat_pants%1:06:00:: 04370288 1 0 -sweat_room%1:06:00:: 04139395 1 0 -sweat_sock%1:06:00:: 02752496 1 0 -sweat_suit%1:06:00:: 04370774 1 1 -sweatband%1:06:01:: 04369618 1 1 -sweatband%1:06:02:: 04369732 2 0 -sweatbox%1:06:00:: 04369856 2 0 -sweatbox%1:06:01:: 04369973 1 0 -sweater%1:06:00:: 04370048 1 1 -sweater%1:18:00:: 10418735 2 0 -sweater_girl%1:18:00:: 10682599 1 0 -sweating%1:22:00:: 13535261 1 0 -sweating_sickness%1:26:00:: 14143239 2 0 -sweating_sickness%1:26:02:: 14275978 1 0 -sweatpants%1:06:00:: 04370288 1 0 -sweats%1:06:00:: 04370774 1 0 -sweatshirt%1:06:00:: 04370456 1 2 -sweatshop%1:06:00:: 04370600 1 0 -sweatsuit%1:06:00:: 04370774 1 0 -swede%1:13:00:: 07736087 3 0 -swede%1:18:00:: 09732441 1 1 -swede%1:20:00:: 11877860 2 0 -sweden%1:15:00:: 08765890 1 9 -swedenborg%1:18:00:: 11326591 1 0 -swedish%1:10:00:: 06954925 1 0 -swedish%3:01:00:: 02959720 1 6 -swedish_iron%1:27:00:: 15065483 1 0 -swedish_krona%1:23:00:: 13682330 1 0 -swedish_massage%1:04:00:: 00660173 1 0 -swedish_meatball%1:13:00:: 07871720 1 0 -swedish_mile%1:23:00:: 13655262 1 0 -swedish_monetary_unit%1:23:00:: 13682221 1 0 -swedish_nightingale%1:18:00:: 11132768 1 0 -swedish_rye%1:13:00:: 07686299 1 0 -swedish_rye_bread%1:13:00:: 07686299 1 0 -swedish_turnip%1:13:00:: 07736087 2 0 -swedish_turnip%1:20:00:: 11877860 1 0 -sweeney_todd%1:18:00:: 10714317 1 0 -sweep%1:04:00:: 00559555 5 0 -sweep%1:04:01:: 00345149 6 0 -sweep%1:06:00:: 04370955 4 0 -sweep%1:07:00:: 05127959 1 3 -sweep%1:11:00:: 07474645 3 0 -sweep%1:18:00:: 09919061 2 0 -sweep%2:33:00:: 01100952 7 1 -sweep%2:35:00:: 01393714 3 5 -sweep%2:35:01:: 01393996 6 1 -sweep%2:35:03:: 01593763 9 0 -sweep%2:38:00:: 01869563 2 12 -sweep%2:38:01:: 01870043 1 13 -sweep%2:42:00:: 02677797 4 3 -sweep%2:42:03:: 02685390 5 2 -sweep%2:42:10:: 02688403 8 0 -sweep-second%1:06:00:: 04371050 1 0 -sweep_away%2:36:00:: 01621219 1 2 -sweep_away%2:37:00:: 01770370 2 1 -sweep_hand%1:06:00:: 04371050 1 0 -sweep_oar%1:06:00:: 04370955 1 0 -sweep_off%2:37:00:: 01770370 1 0 -sweep_over%2:37:00:: 01809321 1 3 -sweep_through%2:41:00:: 02522581 1 1 -sweep_under_the_rug%2:41:00:: 02371469 1 1 -sweep_up%2:31:00:: 00601822 2 1 -sweep_up%2:42:00:: 02677797 1 1 -sweeper%1:05:00:: 02603862 3 0 -sweeper%1:06:00:: 02967782 2 0 -sweeper%1:18:00:: 10682713 1 0 -sweeping%1:04:00:: 00252307 1 1 -sweeping%5:00:00:indiscriminate:00 00774182 2 0 -sweeping%5:00:00:wide:00 02561560 1 2 -sweepingly%4:02:00:: 00472163 1 0 -sweepstakes%1:04:00:: 00508800 1 0 -sweet%1:07:00:: 04994413 5 0 -sweet%1:09:00:: 05716577 4 0 -sweet%1:13:00:: 07596684 3 0 -sweet%1:13:01:: 07609840 2 0 -sweet%1:18:00:: 11326730 1 0 -sweet%3:00:00:: 01073707 8 0 -sweet%3:00:01:: 02367604 7 1 -sweet%3:00:02:: 02368336 1 9 -sweet%4:02:00:: 00472323 1 1 -sweet%5:00:00:fragrant:00 01052611 6 2 -sweet%5:00:00:lovable:00 01459949 2 4 -sweet%5:00:00:melodious:00 01501821 3 3 -sweet%5:00:00:sugary:00 02338197 10 0 -sweet%5:00:00:unsoured:00 02370083 9 0 -sweet%5:00:01:pleasing:00 01808413 5 2 -sweet%5:00:02:pleasing:00 01808671 4 2 -sweet-birch_oil%1:27:00:: 14952441 1 0 -sweet-breathed%5:00:00:breathing:00 00267774 1 0 -sweet-faced%5:00:00:faced:00 00236200 1 1 -sweet-flavored%5:00:00:sugary:00 02338197 1 0 -sweet-potato_ring_rot%1:26:00:: 14282384 1 0 -sweet-potato_whitefly%1:05:00:: 02247511 1 0 -sweet-scented%5:00:00:fragrant:00 01052611 1 0 -sweet-scented_geranium%1:20:00:: 12687462 1 0 -sweet-smelling%5:00:00:fragrant:00 01052611 1 1 -sweet-talk%2:32:00:: 00768778 1 0 -sweet_acacia%1:20:00:: 11757851 1 0 -sweet_alison%1:20:00:: 11891175 1 0 -sweet_almond%1:20:00:: 12645174 1 0 -sweet_almond_oil%1:20:00:: 12645754 1 0 -sweet_alyssum%1:20:00:: 11891175 1 0 -sweet_balm%1:20:00:: 12854600 1 0 -sweet_basil%1:13:00:: 07816164 2 0 -sweet_basil%1:20:00:: 12860542 1 0 -sweet_bay%1:20:00:: 11711764 1 0 -sweet_bells%1:20:00:: 12240150 1 0 -sweet_birch%1:20:00:: 12283147 1 0 -sweet_buckeye%1:20:00:: 12768809 1 0 -sweet_calabash%1:13:00:: 07754155 2 0 -sweet_calabash%1:20:00:: 12384680 1 0 -sweet_calamus%1:20:00:: 11780930 1 0 -sweet_cassava%1:20:00:: 12927194 1 0 -sweet_cherry%1:13:00:: 07757312 2 0 -sweet_cherry%1:20:00:: 12642200 1 0 -sweet_chestnut%1:20:00:: 12263204 1 0 -sweet_cicely%1:13:00:: 07821404 3 0 -sweet_cicely%1:20:00:: 12940609 1 0 -sweet_cicely%1:20:01:: 12692875 2 0 -sweet_cider%1:13:00:: 07921948 1 0 -sweet_clover%1:20:00:: 11750989 1 17 -sweet_coltsfoot%1:20:01:: 12002651 2 0 -sweet_coltsfoot%1:20:02:: 12002826 1 0 -sweet_corn%1:13:00:: 07732168 2 0 -sweet_corn%1:20:00:: 12144742 1 0 -sweet_corn_plant%1:20:00:: 12144742 1 0 -sweet_cup%1:13:00:: 07754279 1 0 -sweet_elder%1:20:00:: 12678548 1 0 -sweet_false_chamomile%1:20:00:: 11995092 1 0 -sweet_fanny_adams%1:23:00:: 13740765 1 0 -sweet_fern%1:20:00:: 11742310 2 0 -sweet_fern%1:20:02:: 13173882 1 0 -sweet_flag%1:20:00:: 11780930 1 0 -sweet_four_o'clock%1:20:00:: 11840246 1 0 -sweet_gale%1:20:00:: 11741175 1 0 -sweet_goldenrod%1:20:00:: 12017326 1 0 -sweet_granadilla%1:20:00:: 12383894 1 0 -sweet_grass%1:20:00:: 12122245 1 0 -sweet_gum%1:20:01:: 12316572 3 0 -sweet_gum%1:20:02:: 12316853 2 0 -sweet_gum%1:20:03:: 12316982 1 0 -sweet_gum_tree%1:20:00:: 12316572 1 0 -sweet_lemon%1:20:00:: 12711817 1 0 -sweet_lime%1:20:00:: 12711817 1 0 -sweet_marjoram%1:20:00:: 12853482 1 0 -sweet_melon%1:13:00:: 07755707 2 0 -sweet_melon%1:20:00:: 12164363 1 0 -sweet_melon_vine%1:20:00:: 12164363 1 0 -sweet_nothings%1:10:00:: 07137461 1 1 -sweet_oil%1:13:00:: 07673872 1 0 -sweet_orange%1:13:00:: 07748912 1 1 -sweet_orange%1:20:00:: 12710693 2 0 -sweet_orange_tree%1:20:00:: 12710693 1 0 -sweet_pea%1:20:00:: 12540800 1 0 -sweet_pepper%1:13:00:: 07720615 2 0 -sweet_pepper%1:20:00:: 12901264 1 0 -sweet_pepper_plant%1:20:00:: 12901264 1 0 -sweet_pepperbush%1:20:00:: 12250180 1 0 -sweet_pickle%1:13:00:: 07825717 1 0 -sweet_potato%1:06:00:: 03840681 3 0 -sweet_potato%1:13:00:: 07712063 2 0 -sweet_potato%1:20:00:: 12827684 1 0 -sweet_potato_vine%1:20:00:: 12827684 1 0 -sweet_reseda%1:20:00:: 12385566 1 0 -sweet_rocket%1:20:00:: 11888800 1 0 -sweet_roll%1:13:00:: 07692614 1 1 -sweet_sand_verbena%1:20:01:: 11837020 2 0 -sweet_sand_verbena%1:20:02:: 11837204 1 0 -sweet_scabious%1:20:00:: 12683571 1 0 -sweet_shrub%1:20:00:: 11701066 1 1 -sweet_sorghum%1:20:00:: 12138757 1 0 -sweet_sultan%1:20:01:: 11918808 3 0 -sweet_sultan%1:20:02:: 11948469 2 0 -sweet_sultan%1:20:03:: 11955532 1 0 -sweet_talk%1:10:00:: 06696025 1 0 -sweet_talker%1:18:00:: 10615179 1 0 -sweet_tooth%1:12:00:: 07486055 1 0 -sweet_unicorn_plant%1:20:00:: 12875861 1 0 -sweet_vermouth%1:13:00:: 07899292 1 0 -sweet_vetch%1:20:00:: 12534625 1 0 -sweet_violet%1:20:00:: 12389317 1 0 -sweet_wattle%1:20:00:: 11757851 1 0 -sweet_white_violet%1:20:00:: 12388444 1 0 -sweet_william%1:20:00:: 11808299 1 0 -sweet_woodruff%1:13:00:: 07821260 2 0 -sweet_woodruff%1:20:00:: 12665271 1 0 -sweet_wormwood%1:20:00:: 11929743 1 0 -sweetbread%1:13:00:: 07652488 1 0 -sweetbreads%1:13:00:: 07652488 1 0 -sweetbriar%1:20:00:: 12621619 1 0 -sweetbrier%1:20:00:: 12621619 1 0 -sweeten%2:30:00:: 00519854 2 0 -sweeten%2:39:00:: 02195470 1 0 -sweetened%5:00:00:sugary:00 02338197 1 0 -sweetener%1:09:00:: 05695232 2 0 -sweetener%1:13:00:: 07858595 1 0 -sweetening%1:04:00:: 00248636 3 0 -sweetening%1:04:02:: 00265992 2 0 -sweetening%1:13:00:: 07858595 1 0 -sweetheart%1:18:00:: 10682953 1 3 -sweetheart%1:18:01:: 10613996 3 0 -sweetheart%1:18:02:: 10682850 2 3 -sweetheart%5:00:00:privileged:00 01864279 1 0 -sweetie%1:18:00:: 10682953 1 0 -sweetish%5:00:00:sweet:02 02368718 1 0 -sweetleaf%1:20:00:: 12776558 1 0 -sweetleaf_family%1:20:00:: 12776212 1 0 -sweetly%4:02:00:: 00472323 1 1 -sweetmeat%1:13:00:: 07597263 1 0 -sweetness%1:07:00:: 04994413 2 0 -sweetness%1:07:01:: 04980463 3 0 -sweetness%1:07:03:: 04778630 4 0 -sweetness%1:09:00:: 05716577 1 1 -sweetness_and_light%1:07:00:: 04656598 1 0 -sweetpea%1:20:00:: 12540800 1 0 -sweetsop%1:13:00:: 07761611 2 0 -sweetsop%1:20:00:: 11695085 1 0 -sweetsop_tree%1:20:00:: 11695085 1 0 -sweetwood_bark%1:20:00:: 12923257 1 0 -swell%1:07:00:: 04990692 3 1 -swell%1:11:00:: 07348258 1 3 -swell%1:17:00:: 09452760 2 2 -swell%1:18:00:: 09991026 4 0 -swell%2:30:00:: 00256507 3 4 -swell%2:30:01:: 00257650 6 0 -swell%2:30:02:: 00555084 1 5 -swell%2:38:07:: 01991204 5 1 -swell%2:41:00:: 02596908 2 4 -swell%2:42:03:: 02626405 4 1 -swell%5:00:00:good:01 01123879 1 1 -swell_up%2:30:00:: 00256507 1 0 -swelled%5:00:00:proud:00 01890187 1 1 -swelled_head%1:07:00:: 04887497 1 0 -swellhead%1:18:00:: 10047459 1 0 -swelling%1:22:00:: 13501548 3 0 -swelling%1:25:00:: 13894434 2 0 -swelling%1:26:00:: 14315192 1 2 -swelter%2:29:00:: 00069747 2 0 -swelter%2:29:01:: 00078316 1 0 -sweltering%5:00:00:hot:01 01250393 1 1 -sweltry%5:00:00:hot:01 01250393 1 0 -swept%3:00:00:: 02370752 1 0 -sweptback%5:00:00:backward:01 00201722 2 0 -sweptback%5:00:00:swept:00 02370894 1 0 -sweptwing%5:00:00:swept:00 02371077 1 0 -swertia%1:20:00:: 12298783 1 0 -swertia_perennia%1:20:00:: 12298958 1 0 -swertia_speciosa%1:20:00:: 12293180 1 0 -swerve%1:04:00:: 01263257 1 1 -swerve%1:11:00:: 07411350 2 0 -swerve%2:38:00:: 02033295 1 4 -swerving%1:04:00:: 01263257 1 0 -swietinia%1:20:00:: 12699778 1 0 -swietinia_macrophylla%1:20:00:: 12700088 1 0 -swietinia_mahogani%1:20:00:: 12699922 1 0 -swift%1:05:00:: 01832167 3 0 -swift%1:05:02:: 01680655 4 0 -swift%1:18:00:: 11326869 2 0 -swift%1:18:01:: 11326999 1 0 -swift%5:00:00:fast:01 00978199 1 15 -swift-footed%5:00:00:footed:00 01031602 1 0 -swiftlet%1:05:00:: 01833112 1 0 -swiftly%4:02:00:: 00053274 1 18 -swiftness%1:07:00:: 05058140 1 0 -swig%1:04:00:: 00840189 1 1 -swig%2:34:00:: 01202068 2 0 -swig%2:35:00:: 01415585 1 0 -swill%1:13:00:: 07805006 1 0 -swill%2:34:00:: 01169433 2 0 -swill%2:34:01:: 01178220 1 0 -swill_down%2:34:00:: 01169433 1 0 -swilling%1:04:00:: 00843325 1 0 -swim%1:04:00:: 00442115 1 0 -swim%2:38:00:: 01960911 1 12 -swim%2:38:01:: 01904293 2 1 -swim%2:38:02:: 01904649 5 0 -swim%2:42:00:: 02755911 4 0 -swim%2:42:02:: 02756063 3 0 -swim_bladder%1:05:00:: 02467581 1 0 -swim_meet%1:11:00:: 07468534 1 0 -swimmer%1:18:00:: 10683349 1 0 -swimmer%1:18:01:: 10683126 2 0 -swimmer's_itch%1:26:00:: 14224547 1 0 -swimmeret%1:05:00:: 02585446 1 0 -swimming%1:04:00:: 00442115 1 1 -swimming%5:00:00:horizontal:00 01233225 2 0 -swimming%5:00:00:tearful:00 02473371 1 0 -swimming_bath%1:06:00:: 04371225 1 0 -swimming_cap%1:06:00:: 02807133 1 0 -swimming_costume%1:06:00:: 04371563 1 0 -swimming_crab%1:05:00:: 01978930 1 0 -swimming_event%1:11:00:: 07470545 1 0 -swimming_hole%1:17:00:: 09452866 1 1 -swimming_kick%1:04:00:: 00574227 1 0 -swimming_meet%1:11:00:: 07468534 1 0 -swimming_pool%1:06:00:: 04371225 1 3 -swimming_stroke%1:04:00:: 00570066 1 0 -swimming_trunks%1:06:00:: 04371430 1 1 -swimmingly%4:02:00:: 00210446 1 0 -swimsuit%1:06:00:: 04371563 1 1 -swimwear%1:06:00:: 04371563 1 0 -swinburne%1:18:00:: 11327163 1 0 -swindle%1:04:00:: 00780148 1 0 -swindle%2:41:00:: 02572119 1 2 -swindler%1:18:00:: 09955015 1 0 -swine%1:05:00:: 02395003 1 0 -swine_flu%1:26:00:: 14122813 1 0 -swine_influenza%1:26:00:: 14122813 1 0 -swineherd%1:18:00:: 10683593 1 0 -swing%1:04:00:: 00327824 4 1 -swing%1:04:02:: 00571444 8 0 -swing%1:04:03:: 00571609 7 0 -swing%1:04:04:: 00541178 9 0 -swing%1:04:06:: 01173660 3 1 -swing%1:06:00:: 04371774 2 1 -swing%1:07:00:: 04992008 6 0 -swing%1:10:01:: 07066042 5 0 -swing%1:26:01:: 14009946 1 1 -swing%2:30:08:: 00557216 8 2 -swing%2:33:00:: 01152040 7 2 -swing%2:35:00:: 01593763 5 4 -swing%2:35:08:: 01427483 13 0 -swing%2:36:03:: 01725375 12 0 -swing%2:38:00:: 01877355 2 15 -swing%2:38:02:: 02087745 1 35 -swing%2:38:03:: 01877620 3 6 -swing%2:41:00:: 02389815 11 0 -swing%2:41:01:: 02537238 4 4 -swing%2:42:00:: 02717472 6 2 -swing%2:42:01:: 02615140 9 1 -swing%2:42:10:: 02752277 10 0 -swing_about%2:38:00:: 01878949 1 0 -swing_around%2:38:00:: 01878949 1 2 -swing_door%1:06:00:: 04371979 1 0 -swing_music%1:10:00:: 07066042 1 0 -swing_out%2:35:00:: 01593763 1 0 -swing_over%2:41:00:: 02537238 1 0 -swing_shift%1:28:00:: 15292829 1 0 -swing_voter%1:18:00:: 10683927 1 0 -swinge%2:30:00:: 00378521 1 0 -swingeing%5:00:00:bad:00 01129371 1 0 -swinger%1:18:00:: 10683675 2 0 -swinger%1:18:01:: 10683801 1 0 -swinging%1:04:00:: 00327824 1 0 -swinging%5:00:00:rhythmical:00 02020011 1 0 -swinging_chad%1:27:00:: 15065584 1 0 -swinging_door%1:06:00:: 04371979 1 1 -swinging_post%1:06:00:: 03521431 1 0 -swingletree%1:06:00:: 04577567 1 0 -swingy%5:00:00:rhythmical:00 02020011 1 1 -swinish%5:00:00:gluttonous:00 00011327 2 0 -swinish%5:00:00:unrefined:01 01949859 1 0 -swipe%1:04:00:: 00566040 1 0 -swipe%2:35:00:: 01394200 1 1 -swipe%2:40:00:: 02276866 2 0 -swirl%1:25:00:: 13878112 1 2 -swirl%2:38:00:: 02047650 2 3 -swirl%2:38:01:: 02048891 1 3 -swish%1:11:00:: 07396414 1 0 -swish%2:39:00:: 02188198 1 1 -swish%5:00:00:stylish:00 00975778 1 0 -swishy%5:00:00:noisy:00 01921868 1 0 -swiss%1:18:00:: 09733333 1 5 -swiss%3:01:00:: 02960975 1 3 -swiss_canton%1:15:00:: 09032191 1 0 -swiss_chard%1:13:00:: 07720277 2 0 -swiss_chard%1:20:00:: 11832671 1 0 -swiss_cheese%1:13:00:: 07854813 1 0 -swiss_confederation%1:15:00:: 09031653 1 0 -swiss_franc%1:23:00:: 13678816 1 0 -swiss_mountain_pine%1:20:00:: 11612349 1 0 -swiss_people%1:18:00:: 09733333 1 0 -swiss_pine%1:20:00:: 11612018 1 0 -swiss_roll%1:13:00:: 07632357 1 0 -swiss_steak%1:13:00:: 07879560 1 0 -swiss_stone_pine%1:20:00:: 11612018 1 0 -switch%1:04:00:: 00196084 7 0 -switch%1:04:01:: 00563823 6 0 -switch%1:06:00:: 04372171 5 0 -switch%1:06:01:: 04372370 1 4 -switch%1:06:02:: 04372756 4 0 -switch%1:06:03:: 04372948 3 0 -switch%1:11:00:: 07443761 2 1 -switch%2:30:00:: 00121678 7 0 -switch%2:30:01:: 00380159 4 1 -switch%2:30:02:: 00550117 3 2 -switch%2:30:03:: 00140751 1 5 -switch%2:35:00:: 01510173 5 0 -switch%2:35:03:: 01411630 6 0 -switch%2:40:00:: 02259005 2 3 -switch-hit%2:35:00:: 01413719 1 0 -switch-hitter%1:18:00:: 10684311 1 1 -switch-hitter%1:18:01:: 10684446 2 0 -switch-ivy%1:20:00:: 12239880 1 0 -switch_cane%1:20:00:: 12148439 1 0 -switch_engine%1:06:00:: 04373428 1 0 -switch_grass%1:20:00:: 12127460 1 0 -switch_off%2:35:00:: 01510576 1 2 -switch_on%2:35:00:: 01510399 1 5 -switch_over%2:30:00:: 00140751 1 0 -switchblade%1:06:00:: 04373089 1 0 -switchblade_knife%1:06:00:: 04373089 1 0 -switchboard%1:06:00:: 04373264 1 1 -switchboard_operator%1:18:00:: 10698064 1 0 -switcher%1:18:00:: 10684146 1 0 -switcheroo%1:04:00:: 00196402 1 0 -switching%1:04:00:: 00196084 1 1 -switchman%1:18:00:: 10684538 1 0 -swither%1:26:00:: 14403560 1 0 -switzerland%1:15:00:: 09031653 1 1 -swivel%1:06:00:: 04373563 1 0 -swivel%2:38:00:: 02046572 1 2 -swivel_chair%1:06:00:: 04373704 1 2 -swivel_pin%1:06:00:: 03618546 1 0 -swivet%1:12:00:: 07520925 1 0 -swiz%1:04:00:: 00780615 1 0 -swizzle%1:13:00:: 07918706 1 0 -swizzle_stick%1:06:00:: 04373795 1 0 -swob%1:06:00:: 04367480 1 0 -swob%2:35:00:: 01244178 1 0 -swob%2:35:01:: 01233194 2 0 -swollen%5:00:00:proud:00 01891773 1 0 -swollen-headed%5:00:00:proud:00 01891773 1 0 -swoon%1:11:00:: 07478318 1 0 -swoon%2:29:00:: 00023646 1 1 -swooning%5:00:00:ill:01 02544525 1 0 -swoop%1:04:00:: 00327033 3 0 -swoop%1:04:01:: 00977214 2 0 -swoop%1:10:00:: 06857264 1 1 -swoop%2:35:00:: 01440010 3 0 -swoop%2:38:00:: 02064358 1 8 -swoop%2:38:01:: 02064759 2 0 -swoop_up%2:35:00:: 01440010 1 1 -swoosh%1:11:00:: 07396530 1 0 -swoosh%2:39:00:: 02188198 1 0 -swop%1:04:00:: 01109687 1 0 -swop%2:40:00:: 02259005 1 0 -sword%1:06:00:: 04373894 1 9 -sword-cut%1:26:00:: 14364217 1 0 -sword-shaped%5:00:00:simple:01 02168248 1 0 -sword_bean%1:20:00:: 12511488 1 0 -sword_cane%1:06:00:: 04374315 1 0 -sword_dance%1:04:00:: 00538510 1 0 -sword_dancing%1:04:00:: 00538510 1 0 -sword_fern%1:20:00:: 13204826 1 0 -sword_grass%1:20:00:: 12104104 1 0 -sword_knot%1:06:00:: 04374421 1 0 -sword_lily%1:20:01:: 12411922 2 0 -sword_lily%1:20:02:: 12417382 1 0 -sword_of_damocles%1:26:00:: 14542983 1 0 -sword_stick%1:06:00:: 04374315 1 0 -swordfish%1:05:00:: 02629716 2 0 -swordfish%1:13:00:: 07785887 1 0 -swordlike%5:00:00:simple:01 02168248 1 0 -swordplay%1:04:00:: 00041468 1 0 -swordsman%1:18:00:: 10085217 1 0 -swordsmanship%1:09:00:: 05640339 1 0 -swordtail%1:05:00:: 01448291 1 0 -sworn%3:00:00:: 02371343 2 0 -sworn%5:00:00:committed:00 00518549 1 1 -swosh%2:39:00:: 02188198 1 0 -swot%1:18:00:: 10684630 1 0 -swot%2:31:00:: 00605783 1 0 -swot_up%2:31:00:: 00605783 1 0 -swung_dash%1:10:00:: 06845076 1 0 -sybarite%1:18:00:: 10759543 1 0 -sybaritic%5:00:00:indulgent:00 01298239 1 0 -sycamore%1:20:00:: 12806732 2 0 -sycamore%1:20:02:: 12807082 1 0 -sycamore%1:20:03:: 12754981 3 0 -sycamore%1:20:04:: 12403513 4 0 -sycamore_fig%1:20:00:: 12403513 1 0 -syconium%1:20:00:: 13137225 1 0 -sycophancy%1:07:00:: 04906923 1 0 -sycophant%1:18:00:: 10684827 1 0 -sycophantic%5:00:00:insincere:00 02181231 1 0 -sycophantic%5:00:00:servile:00 00790394 2 0 -sydenham%1:18:00:: 11327273 1 0 -sydenham's_chorea%1:26:00:: 14095568 1 0 -sydney%1:15:00:: 08833295 1 0 -sydney_harbor_bridge%1:06:00:: 04374608 1 0 -sydney_pollack%1:18:00:: 11240996 1 0 -sydney_silky%1:05:00:: 02097658 1 0 -syllabary%1:10:00:: 06361770 1 0 -syllabic%3:00:00:: 02288668 4 0 -syllabic%3:00:01:: 02290265 3 0 -syllabic%3:00:02:: 02288350 5 0 -syllabic%3:01:00:: 02806565 2 0 -syllabic%3:01:01:: 02806721 1 0 -syllabic_script%1:10:00:: 06361770 1 0 -syllabically%4:02:00:: 00143840 1 0 -syllabicate%2:35:00:: 01563336 1 0 -syllabication%1:04:00:: 00390581 1 0 -syllabicity%1:10:00:: 07113491 1 1 -syllabification%1:04:00:: 00390581 1 0 -syllabify%2:35:00:: 01563336 1 0 -syllabise%2:32:00:: 00979988 2 0 -syllabise%2:35:00:: 01563336 1 0 -syllabize%2:32:00:: 00979988 2 0 -syllabize%2:35:00:: 01563336 1 0 -syllable%1:10:00:: 06304671 1 11 -syllable_structure%1:09:00:: 06177729 1 0 -syllabled%5:00:00:syllabic:00 02289659 1 0 -syllabub%1:13:01:: 07613158 2 0 -syllabub%1:13:02:: 07916872 1 0 -syllabus%1:10:00:: 06676416 1 0 -syllepsis%1:10:00:: 07108657 1 0 -syllogise%2:31:00:: 00653449 1 0 -syllogiser%1:18:00:: 10685123 1 0 -syllogism%1:09:00:: 05779116 1 0 -syllogist%1:18:00:: 10685123 1 0 -syllogistic%3:01:00:: 02910644 1 0 -syllogize%2:31:00:: 00653449 1 0 -syllogizer%1:18:00:: 10685123 1 0 -sylph%1:18:01:: 10685300 2 0 -sylph%1:18:02:: 10685398 1 0 -sylphlike%5:00:00:graceful:00 01140290 1 0 -sylva%1:17:00:: 09435405 1 0 -sylvan%1:18:00:: 10685480 1 0 -sylvan%5:00:00:wooded:00 02574481 1 0 -sylvanite%1:27:00:: 15065713 1 0 -sylvanus%1:18:00:: 09576746 1 0 -sylvester_ii%1:18:00:: 11327398 1 0 -sylvia_communis%1:05:00:: 01564914 1 0 -sylvia_curruca%1:05:00:: 01565078 1 0 -sylvia_plath%1:18:00:: 11239143 1 0 -sylvian_aqueduct%1:08:00:: 05503401 1 0 -sylvian_fissure%1:08:00:: 05224080 1 0 -sylviidae%1:05:00:: 01562584 1 0 -sylviinae%1:05:00:: 01562978 1 0 -sylvilagus%1:05:00:: 02325211 1 0 -sylvilagus_aquaticus%1:05:00:: 02325884 1 0 -sylvilagus_floridanus%1:05:00:: 02325722 1 0 -sylvilagus_palustris%1:05:00:: 02326074 1 0 -sylvine%1:27:00:: 15065928 1 0 -sylvite%1:27:00:: 15065928 1 0 -symbion_pandora%1:05:00:: 02315024 1 0 -symbiosis%1:24:00:: 13842622 1 0 -symbiotic%5:00:00:dependent:00 00727268 1 0 -symbiotically%4:02:00:: 00116180 1 0 -symbol%1:09:00:: 05765415 2 2 -symbol%1:10:00:: 06806469 1 18 -symbol-worship%1:04:00:: 01045091 1 0 -symbolatry%1:04:00:: 01045091 1 0 -symbolic%3:01:00:: 02806907 1 2 -symbolic%3:01:01:: 02807163 3 1 -symbolic%5:00:00:representative:00 01982186 2 2 -symbolic_logic%1:09:00:: 06164665 1 0 -symbolic_logician%1:18:00:: 10685587 1 0 -symbolic_representation%1:09:00:: 05765415 1 0 -symbolical%3:01:00:: 02806907 1 0 -symbolical%5:00:00:representative:00 01982186 2 0 -symbolically%4:02:00:: 00116280 1 2 -symbolically%4:02:01:: 00126733 2 0 -symbolisation%1:04:00:: 00412271 3 0 -symbolisation%1:09:00:: 05765415 2 0 -symbolisation%1:10:00:: 06602324 1 0 -symbolise%2:32:00:: 00836236 2 0 -symbolise%2:32:01:: 00987597 1 0 -symboliser%1:18:00:: 10685853 1 0 -symbolising%1:04:00:: 00900070 1 0 -symbolism%1:04:00:: 00412271 2 1 -symbolism%1:10:00:: 06807849 1 1 -symbolism%1:14:00:: 08470507 3 0 -symbolist%1:18:00:: 10685685 1 1 -symbolist%1:18:01:: 10685853 2 0 -symbolization%1:04:00:: 00412271 3 0 -symbolization%1:09:00:: 05765415 2 0 -symbolization%1:10:00:: 06602324 1 0 -symbolize%2:32:00:: 00836236 1 16 -symbolize%2:32:01:: 00987597 2 0 -symbolizer%1:18:00:: 10685853 1 0 -symbolizing%1:04:00:: 00900070 1 0 -symbology%1:09:00:: 05998893 1 0 -symbololatry%1:04:00:: 01045091 1 0 -symmetric%3:00:00:: 02371718 1 7 -symmetrical%3:00:00:: 02371718 1 1 -symmetrical%5:00:00:balanced:00 00894029 2 1 -symmetrically%4:02:00:: 00175641 1 1 -symmetricalness%1:07:00:: 05064827 1 0 -symmetrise%2:30:00:: 00552619 1 0 -symmetrize%2:30:00:: 00552619 1 0 -symmetry%1:07:00:: 05064827 1 5 -symmetry%1:07:01:: 04917439 3 0 -symmetry%1:25:00:: 13898315 2 1 -symonds%1:18:00:: 11327544 1 0 -symons%1:18:00:: 11327650 1 0 -sympathectomy%1:04:00:: 00687964 1 0 -sympathetic%3:00:00:: 02374914 2 8 -sympathetic%3:00:02:: 02376277 4 0 -sympathetic%3:01:00:: 03008013 1 13 -sympathetic%5:00:00:harmonious:00 01163589 6 0 -sympathetic%5:00:00:kind:00 01372948 3 1 -sympathetic%5:00:00:similar:00 02072923 5 0 -sympathetic_nervous_system%1:08:00:: 05505131 1 0 -sympathetic_strike%1:04:00:: 01244127 1 0 -sympathetic_vibration%1:19:00:: 11478171 1 0 -sympathetically%4:02:00:: 00192007 1 1 -sympathetically%4:02:01:: 00192153 2 0 -sympathise%2:31:00:: 00594058 3 0 -sympathise%2:37:00:: 01822248 2 0 -sympathise%2:37:01:: 01822724 1 0 -sympathiser%1:18:00:: 10686073 2 0 -sympathiser%1:18:01:: 10686313 1 0 -sympathize%2:31:00:: 00594058 2 1 -sympathize%2:37:00:: 01822248 3 0 -sympathize%2:37:01:: 01822724 1 2 -sympathize_with%2:37:00:: 01821996 1 3 -sympathizer%1:18:00:: 10686073 2 0 -sympathizer%1:18:01:: 10686313 1 0 -sympathomimetic%3:01:00:: 02604543 1 0 -sympathy%1:09:00:: 06199142 1 10 -sympathy%1:12:00:: 07553301 2 7 -sympathy%1:24:00:: 13811900 3 4 -sympathy_card%1:10:00:: 06628328 1 0 -sympathy_strike%1:04:00:: 01244127 1 0 -sympatric%3:00:00:: 02376809 1 0 -sympatry%1:26:00:: 13959463 1 0 -sympetalous%5:00:00:petalous:00 01775980 1 0 -symphalangus%1:05:00:: 02483564 1 0 -symphalangus_syndactylus%1:05:00:: 02483708 1 0 -symphilid%1:05:00:: 01783706 1 0 -symphonic%3:01:00:: 03002040 1 5 -symphonic%5:00:00:harmonious:00 01163941 2 0 -symphonic_music%1:10:00:: 07044760 1 0 -symphonic_poem%1:10:00:: 07047373 1 0 -symphonious%5:00:00:harmonious:00 01163941 1 0 -symphonise%2:36:00:: 01727052 1 0 -symphonist%1:18:00:: 10686517 1 0 -symphonize%2:36:00:: 01727052 1 0 -symphony%1:10:00:: 07044760 1 4 -symphony%1:14:00:: 08248856 2 1 -symphony_orchestra%1:14:00:: 08248856 1 1 -symphoricarpos%1:20:00:: 12677427 1 0 -symphoricarpos_alba%1:20:00:: 12677612 1 0 -symphoricarpos_orbiculatus%1:20:00:: 12677841 1 0 -symphyla%1:05:00:: 01783384 1 0 -symphysion%1:08:00:: 05235607 1 0 -symphysis%1:22:00:: 13563948 2 0 -symphysis%1:26:00:: 14206375 1 0 -symphytum%1:20:00:: 12822650 1 0 -symphytum_officinale%1:20:00:: 12822955 1 0 -symplocaceae%1:20:00:: 12776212 1 0 -symplocarpus%1:20:00:: 11792598 1 0 -symplocarpus_foetidus%1:20:00:: 11792742 1 0 -symploce%1:10:00:: 07100942 1 0 -symplocus%1:20:00:: 12776391 1 0 -symplocus_paniculata%1:20:00:: 12776774 1 0 -symplocus_tinctoria%1:20:00:: 12776558 1 0 -symposiarch%1:18:00:: 10713686 1 0 -symposiast%1:18:00:: 10686598 1 0 -symposium%1:14:00:: 08327616 1 2 -symptom%1:10:00:: 06798187 2 6 -symptom%1:26:00:: 14299637 1 8 -symptomatic%3:01:00:: 02807249 2 0 -symptomatic%5:00:00:characteristic:00 00357254 1 1 -symptomatically%4:02:00:: 00144120 1 0 -symptomless%5:00:00:well:01 02540899 1 0 -synaeresis%1:22:00:: 13564639 2 0 -synaeresis%1:22:01:: 13564795 1 0 -synaesthesia%1:09:00:: 05720602 1 0 -synaesthetic%3:01:00:: 02808126 1 0 -synagogue%1:06:00:: 04374735 1 2 -synagrops%1:05:00:: 02567201 1 0 -synagrops_bellus%1:05:00:: 02567334 1 0 -synanceja%1:05:00:: 02643713 1 0 -synanceja_verrucosa%1:05:00:: 02643836 1 0 -synapse%1:08:00:: 05473928 1 0 -synapsid%1:05:00:: 01719403 1 0 -synapsid_reptile%1:05:00:: 01719403 1 0 -synapsida%1:05:00:: 01719175 1 0 -synapsis%1:22:00:: 13564045 1 0 -synaptic%3:01:00:: 02933954 1 0 -synaptomys%1:05:00:: 02345890 1 0 -synaptomys_borealis%1:05:00:: 02346170 1 0 -synaptomys_cooperi%1:05:00:: 02345997 1 0 -sync%2:30:00:: 00393953 1 0 -syncarp%1:20:00:: 13137672 1 0 -syncarpous%3:00:00:: 00113663 1 0 -syncategorem%1:10:00:: 06752695 1 0 -syncategorematic%3:00:00:: 02593269 1 0 -syncategoreme%1:10:00:: 06752695 1 0 -synchro%1:06:00:: 04170694 1 0 -synchrocyclotron%1:06:00:: 04374907 1 0 -synchroflash%1:06:00:: 04375080 1 0 -synchromesh%1:06:00:: 04375241 1 0 -synchronal%3:00:00:: 02377651 1 0 -synchroneity%1:24:00:: 13845239 1 0 -synchronic%3:00:00:: 02377186 2 0 -synchronic%3:00:04:: 02377651 1 0 -synchronic%5:00:02:synchronous:00 02379323 3 0 -synchronic_linguistics%1:09:00:: 06181448 1 0 -synchronicity%1:24:00:: 13845239 1 0 -synchronisation%1:04:00:: 00807500 3 0 -synchronisation%1:04:01:: 01001097 2 0 -synchronisation%1:24:00:: 13845239 1 0 -synchronise%2:30:00:: 00393953 6 0 -synchronise%2:30:01:: 00464996 4 0 -synchronise%2:30:03:: 00464828 5 0 -synchronise%2:31:00:: 00735866 3 0 -synchronise%2:32:00:: 00960734 2 0 -synchronise%2:42:00:: 02739254 1 0 -synchronised%5:00:00:synchronous:00 02379455 1 0 -synchroniser%1:06:00:: 04375926 1 0 -synchronising%1:04:01:: 01001097 1 0 -synchronism%1:24:00:: 13845239 1 1 -synchronization%1:04:00:: 00807500 3 0 -synchronization%1:04:01:: 01001097 2 0 -synchronization%1:24:00:: 13845239 1 0 -synchronize%2:30:00:: 00393953 1 1 -synchronize%2:30:01:: 00464996 5 0 -synchronize%2:30:03:: 00464828 6 0 -synchronize%2:31:00:: 00735866 4 0 -synchronize%2:32:00:: 00960734 3 0 -synchronize%2:42:00:: 02739254 2 0 -synchronized%5:00:00:synchronous:00 02379455 1 0 -synchronizer%1:06:00:: 04375926 1 0 -synchronizing%1:04:00:: 00807500 3 0 -synchronizing%1:04:01:: 01001097 2 0 -synchronizing%1:24:00:: 13845239 1 0 -synchronoscope%1:06:00:: 04375926 1 0 -synchronous%3:00:00:: 02377651 1 1 -synchronous%3:00:01:: 02380565 2 0 -synchronous_converter%1:06:00:: 04375405 1 0 -synchronous_motor%1:06:00:: 04375615 1 1 -synchronous_operation%1:22:00:: 13564501 1 0 -synchronously%4:02:00:: 00472668 1 0 -synchrony%1:24:00:: 13845239 1 2 -synchroscope%1:06:00:: 04375926 1 0 -synchrotron%1:06:00:: 04375775 1 0 -synchytriaceae%1:20:00:: 12978969 1 0 -synchytrium%1:20:00:: 12979129 1 0 -synchytrium_endobioticum%1:20:00:: 12979316 1 0 -synclinal%3:00:00:: 00109133 1 0 -syncopate%2:30:00:: 00170500 2 0 -syncopate%2:30:01:: 00317086 1 0 -syncopated%5:00:00:rhythmical:00 02020810 1 0 -syncopation%1:10:00:: 07087223 2 0 -syncopation%1:10:01:: 07132729 1 0 -syncopation%1:10:02:: 07057385 3 0 -syncopator%1:18:00:: 10686694 1 0 -syncope%1:10:00:: 07132729 2 0 -syncope%1:11:00:: 07478318 1 0 -syncretic%3:01:00:: 02807478 2 0 -syncretic%3:01:01:: 02807775 1 0 -syncretical%3:01:00:: 02807478 2 0 -syncretical%3:01:01:: 02807775 1 0 -syncretise%2:30:00:: 00553616 1 0 -syncretise%2:30:01:: 00368522 2 0 -syncretism%1:22:00:: 13564215 2 0 -syncretism%1:26:00:: 14421724 1 0 -syncretistic%3:01:00:: 02807478 2 0 -syncretistic%3:01:01:: 02807775 1 0 -syncretistical%3:01:00:: 02807478 2 0 -syncretistical%3:01:01:: 02807775 1 0 -syncretize%2:30:00:: 00553616 1 0 -syncretize%2:30:01:: 00368522 2 0 -syncytium%1:08:00:: 05605762 1 0 -syndactylism%1:26:00:: 14471926 1 0 -syndactyly%1:26:00:: 14471926 1 0 -syndetic%3:00:00:: 02381089 1 0 -syndic%1:18:00:: 10686885 1 0 -syndicalism%1:14:00:: 08321621 1 0 -syndicalist%1:18:00:: 09791816 1 0 -syndicate%1:14:00:: 08236438 2 1 -syndicate%1:14:01:: 08246302 1 1 -syndicate%1:14:02:: 08355324 3 0 -syndicate%2:40:00:: 02243758 3 0 -syndicate%2:41:00:: 02449011 2 0 -syndicate%2:41:01:: 02449183 1 0 -syndication%1:04:00:: 01138547 1 0 -syndication%1:04:01:: 01115348 2 0 -syndicator%1:18:00:: 10687025 1 0 -syndrome%1:09:00:: 05870790 1 1 -syndrome%1:26:00:: 14304060 2 0 -synecdoche%1:10:00:: 07108453 1 0 -synecdochic%5:00:00:figurative:00 01420488 1 0 -synecdochical%5:00:00:figurative:00 01420488 1 0 -synechia%1:26:00:: 14206477 1 0 -synentognathi%1:05:00:: 02549533 1 0 -synercus%1:05:00:: 02409369 1 0 -synercus_caffer%1:05:00:: 02409508 1 0 -syneresis%1:22:00:: 13564639 2 0 -syneresis%1:22:01:: 13564795 1 0 -synergetic%5:00:00:cooperative:00 00620341 1 0 -synergism%1:09:00:: 06191854 2 0 -synergism%1:22:00:: 13564910 1 1 -synergist%1:06:00:: 04376259 1 0 -synergistic%3:00:00:: 00623356 1 1 -synergistic%3:01:00:: 02946888 2 0 -synergistic%5:00:00:cooperative:00 00620341 3 0 -synergistically%4:02:00:: 00515681 2 0 -synergistically%4:02:01:: 00515803 1 0 -synergy%1:22:00:: 13564910 1 0 -synesthesia%1:09:00:: 05720602 1 0 -synesthetic%3:01:00:: 02808126 1 0 -synesthetic_metaphor%1:10:00:: 07107522 1 0 -synezesis%1:22:00:: 13565201 1 0 -synge%1:18:00:: 11327744 1 0 -syngnathidae%1:05:00:: 01455592 1 0 -syngnathus%1:05:00:: 01455986 1 0 -syngnathus_hildebrandi%1:05:00:: 01456137 1 0 -syngonium%1:20:00:: 11793032 1 0 -synizesis%1:22:00:: 13565201 1 0 -synod%1:14:00:: 08322520 1 0 -synodic_month%1:28:00:: 15207872 1 0 -synodontidae%1:05:00:: 02543412 1 0 -synoecious%5:00:00:monoecious:00 01543361 1 0 -synoicous%5:00:00:monoecious:00 01543361 1 0 -synonym%1:10:00:: 06303682 1 2 -synonym_finder%1:10:00:: 06421016 1 0 -synonymist%1:18:00:: 10687135 1 0 -synonymity%1:24:00:: 13808161 1 0 -synonymous%3:00:00:: 02381302 1 1 -synonymously%4:02:00:: 00515914 1 0 -synonymousness%1:24:00:: 13808161 1 0 -synonymy%1:24:00:: 13808161 1 0 -synopsis%1:10:00:: 06468951 1 0 -synoptic%3:01:00:: 02808380 1 0 -synoptic%5:00:00:same:00 02064537 2 0 -synoptic_gospels%1:10:00:: 06455497 1 0 -synoptical%5:00:00:same:00 02064537 1 0 -synoptics%1:10:00:: 06455497 1 0 -synovia%1:08:00:: 05415200 1 0 -synovial%3:01:00:: 02808548 1 0 -synovial_fluid%1:08:00:: 05415200 1 0 -synovial_joint%1:08:00:: 05543177 1 0 -synovial_membrane%1:08:00:: 05606247 1 0 -synovitis%1:26:00:: 14356328 1 0 -synovium%1:08:00:: 05606247 1 0 -synsemantic%5:00:00:syncategorematic:00 02593578 1 0 -synset%1:14:00:: 08272860 1 0 -syntactic%3:01:00:: 02880557 1 1 -syntactic_category%1:10:00:: 06309383 1 0 -syntactical%3:01:00:: 02880557 1 0 -syntactically%4:02:00:: 00136267 1 1 -syntactician%1:18:00:: 10141364 1 0 -syntagm%1:10:00:: 06313457 1 0 -syntagma%1:10:00:: 06313457 1 0 -syntagmatic%3:01:00:: 02808653 1 0 -syntax%1:09:00:: 06176322 3 0 -syntax%1:09:01:: 06176107 1 2 -syntax%1:14:00:: 08436203 2 1 -syntax_checker%1:10:00:: 06580543 1 0 -syntax_error%1:11:00:: 07300494 1 0 -syntax_language%1:10:00:: 06901471 1 0 -synthesis%1:09:00:: 05783940 2 2 -synthesis%1:09:01:: 05774129 3 0 -synthesis%1:22:00:: 13565379 1 6 -synthesise%2:31:00:: 00644066 1 1 -synthesiser%1:06:00:: 04376400 2 0 -synthesiser%1:18:00:: 10687231 1 0 -synthesist%1:18:00:: 10687231 1 0 -synthesize%2:31:00:: 00644066 1 3 -synthesize%2:31:01:: 00644430 2 0 -synthesizer%1:06:00:: 04376400 2 0 -synthesizer%1:18:00:: 10687231 1 0 -synthetic%1:27:00:: 14901959 1 0 -synthetic%3:00:01:: 00111129 4 0 -synthetic%3:00:02:: 00111856 3 0 -synthetic%3:00:03:: 00112628 2 0 -synthetic%5:00:00:artificial:00 01573568 1 7 -synthetic%5:00:00:counterfeit:00 01118409 6 0 -synthetic%5:00:01:artificial:00 01572458 5 0 -synthetic_cubism%1:14:00:: 08477077 1 2 -synthetic_fiber%1:27:00:: 14959058 1 0 -synthetic_heroin%1:06:00:: 03754014 1 0 -synthetic_resin%1:27:00:: 14902141 1 0 -synthetic_rubber%1:27:00:: 15006789 1 0 -synthetic_substance%1:27:00:: 14901959 1 0 -synthetic_thinking%1:09:00:: 05783940 1 0 -synthetical%3:00:03:: 00112628 1 0 -synthetical%3:00:04:: 00111129 2 0 -synthetically%4:02:00:: 00472830 1 0 -synthetism%1:06:00:: 04376715 1 0 -syph%1:26:00:: 14133985 1 0 -syphilis%1:26:00:: 14133985 1 0 -syphilitic%1:18:00:: 10687427 1 0 -syphilitic%3:01:00:: 03121855 1 0 -syphon%1:05:00:: 01468913 2 0 -syphon%1:06:00:: 04224155 1 0 -syphon%2:38:00:: 01853542 1 0 -syracuse%1:04:00:: 01296127 4 0 -syracuse%1:04:01:: 01296296 3 0 -syracuse%1:15:00:: 08810051 2 0 -syracuse%1:15:01:: 09125528 1 0 -syria%1:15:00:: 09033333 1 1 -syrian%1:18:00:: 09733459 1 0 -syrian%3:01:00:: 03016519 1 1 -syrian_arab_republic%1:15:00:: 09033333 1 0 -syrian_bean_caper%1:20:00:: 12721122 1 0 -syrian_bear%1:05:00:: 02132466 1 0 -syrian_desert%1:15:00:: 09173023 1 0 -syrian_hamster%1:05:00:: 02343320 1 0 -syrian_monetary_unit%1:23:00:: 13695567 1 0 -syrian_pound%1:23:00:: 13695674 1 0 -syringa%1:20:01:: 12310153 2 0 -syringa%1:20:02:: 12791329 1 1 -syringa_amurensis_japonica%1:20:00:: 12311224 1 0 -syringa_emodi%1:20:00:: 12310638 1 0 -syringa_josikaea%1:20:00:: 12310840 1 0 -syringa_josikea%1:20:00:: 12310840 1 0 -syringa_persica%1:20:00:: 12311045 1 0 -syringa_reticulata%1:20:00:: 12311224 1 0 -syringa_villosa%1:20:00:: 12311413 1 0 -syringa_vulgaris%1:20:00:: 12311579 1 0 -syringe%1:06:00:: 04376876 1 0 -syringe%2:35:00:: 01373422 1 0 -syrinx%1:05:00:: 02511633 2 0 -syrinx%1:06:00:: 03884397 1 0 -syrrhaptes%1:05:00:: 01816336 1 0 -syrrhaptes_paradoxus%1:05:00:: 01816474 1 0 -syrup%1:13:00:: 07859583 1 0 -syrupy%5:00:00:sugary:00 02338037 3 0 -syrupy%5:00:00:sweet:02 02368566 1 1 -syrupy%5:00:00:thick:02 02417028 2 0 -system%1:06:00:: 04377057 1 43 -system%1:07:00:: 04768657 9 0 -system%1:08:00:: 05237227 6 7 -system%1:08:01:: 05219097 8 1 -system%1:09:00:: 05661996 4 10 -system%1:09:01:: 05902872 7 6 -system%1:09:02:: 05726596 5 8 -system%1:14:00:: 08435388 2 23 -system%1:27:00:: 14981183 3 14 -system_administrator%1:18:00:: 10687516 1 0 -system_call%1:10:00:: 06587217 1 0 -system_clock%1:06:00:: 04377842 2 0 -system_clock%1:06:01:: 04378024 1 0 -system_command%1:10:00:: 07276242 1 0 -system_error%1:10:00:: 06587048 1 0 -system_of_logic%1:09:00:: 05664069 1 0 -system_of_macrophages%1:08:00:: 05461610 1 0 -system_of_measurement%1:23:00:: 13577171 1 0 -system_of_numeration%1:10:00:: 06809074 1 0 -system_of_rules%1:09:00:: 05661996 1 0 -system_of_weights%1:23:00:: 13715755 1 0 -system_of_weights_and_measures%1:23:00:: 13577544 1 0 -system_program%1:10:00:: 06580646 1 0 -systema_alimentarium%1:08:00:: 05329215 1 0 -systema_digestorium%1:08:00:: 05329215 1 0 -systema_lymphaticum%1:08:00:: 05396366 1 0 -systema_nervosum%1:08:00:: 05462315 1 0 -systema_nervosum_centrale%1:08:00:: 05480794 1 0 -systema_nervosum_periphericum%1:08:00:: 05504336 1 0 -systema_respiratorium%1:08:00:: 05509889 1 0 -systema_skeletale%1:08:00:: 05585383 1 0 -systema_urogenitale%1:08:00:: 05509452 1 0 -systematic%3:00:00:: 02382934 1 2 -systematic%3:01:00:: 03018498 2 0 -systematic_desensitisation%1:04:00:: 00701755 1 0 -systematic_desensitization%1:04:00:: 00701755 1 0 -systematically%4:02:00:: 00120474 1 2 -systematics%1:09:00:: 06152821 1 0 -systematisation%1:04:00:: 01009190 1 0 -systematise%2:30:00:: 00480969 1 0 -systematiser%1:18:00:: 10381369 1 0 -systematism%1:04:00:: 01031705 1 0 -systematist%1:18:00:: 10693824 1 0 -systematist%1:18:01:: 10381369 2 0 -systematization%1:04:00:: 01009190 1 2 -systematize%2:30:00:: 00480969 1 4 -systematizer%1:18:00:: 10381369 1 0 -systeme_international%1:23:00:: 13578267 1 0 -systeme_international_d'unites%1:23:00:: 13578267 1 0 -systemic%5:00:00:general:02 01426273 1 0 -systemic_circulation%1:19:00:: 11439312 1 0 -systemic_lupus_erythematosus%1:26:00:: 14221311 1 0 -systemise%2:30:00:: 00480969 1 0 -systemiser%1:18:00:: 10381369 1 0 -systemize%2:30:00:: 00480969 1 0 -systemizer%1:18:00:: 10381369 1 0 -systems_analysis%1:09:00:: 05782713 1 0 -systems_analyst%1:18:00:: 10687728 1 0 -systems_program%1:10:00:: 06580646 1 0 -systems_software%1:10:00:: 06580646 1 0 -systole%1:11:00:: 07401409 1 0 -systolic%3:01:00:: 03121996 1 0 -systolic_murmur%1:26:00:: 14335006 1 0 -systolic_pressure%1:19:00:: 11430483 1 0 -syzygium%1:20:00:: 12339319 1 0 -syzygium_aromaticum%1:20:00:: 12339526 1 0 -syzygy%1:19:00:: 11518330 1 0 -szechuan%1:15:00:: 08726305 1 0 -szechwan%1:15:00:: 08726305 1 0 -szechwan_province%1:15:00:: 08726305 1 0 -szell%1:18:00:: 11327964 1 0 -szent-gyorgyi%1:18:00:: 11328085 1 0 -szilard%1:18:00:: 11328289 1 0 -t%1:08:03:: 05413873 5 0 -t%1:08:04:: 05413647 6 0 -t%1:10:00:: 06833220 4 0 -t%1:23:01:: 13725588 3 0 -t%1:27:00:: 14830164 2 0 -t%1:27:01:: 15072857 1 0 -t'ai_chi%1:04:00:: 00826789 1 0 -t'ai_chi_chuan%1:04:00:: 00826789 1 0 -t'ien-ching%1:15:00:: 08728882 1 0 -t-bar%1:06:00:: 04396650 1 0 -t-bar_lift%1:06:00:: 04396650 1 0 -t-bill%1:21:00:: 13394592 1 0 -t-bone_steak%1:13:00:: 07661002 1 0 -t-junction%1:06:00:: 04441902 1 0 -t-man%1:18:00:: 10713254 1 0 -t-network%1:06:00:: 04442016 1 0 -t-scope%1:06:00:: 04382537 1 0 -t-shaped%5:00:00:formed:00 02150569 1 0 -t-shirt%1:06:00:: 03595614 1 0 -t-square%1:06:00:: 04493259 1 1 -t._e._lawrence%1:18:00:: 11120834 1 0 -t._h._white%1:18:00:: 11384022 1 0 -t._s._eliot%1:18:00:: 10957072 1 0 -t.b.%1:26:00:: 14143415 1 1 -t_cell%1:08:00:: 05451981 1 0 -t_hinge%1:06:00:: 04399846 1 0 -t_lymphocyte%1:08:00:: 05451981 1 0 -ta%1:27:00:: 14656666 1 0 -ta'ziyeh%1:10:00:: 07281635 1 0 -taal%1:10:00:: 06952861 1 0 -tab%1:06:00:: 03936568 5 0 -tab%1:06:01:: 04378123 4 0 -tab%1:06:02:: 04379096 3 0 -tab%1:10:00:: 06517942 1 0 -tab%1:10:01:: 06267991 2 0 -tab_key%1:06:00:: 04379096 1 0 -tabanidae%1:05:00:: 02195403 1 0 -tabard%1:06:00:: 04378489 1 0 -tabasco%1:13:01:: 07826091 2 0 -tabasco%1:13:02:: 07722052 3 0 -tabasco%1:15:00:: 08745687 1 0 -tabasco_pepper%1:20:00:: 12902021 1 0 -tabasco_plant%1:20:00:: 12902021 1 0 -tabasco_sauce%1:13:00:: 07826091 1 0 -tabbouleh%1:13:00:: 07808904 1 0 -tabby%1:05:01:: 02123045 1 0 -tabby%1:05:02:: 02122878 2 0 -tabby%5:00:00:patterned:00 01787548 1 0 -tabby_cat%1:05:00:: 02123045 1 0 -tabernacle%1:06:00:: 04378651 2 0 -tabernacle%1:06:01:: 04374735 3 0 -tabernacle%1:06:02:: 04378842 1 0 -tabernacles%1:28:00:: 15161872 1 0 -tabernaemontana%1:20:00:: 11776337 1 0 -tabernaemontana_divaricate%1:20:00:: 11776511 1 0 -tabes%1:26:00:: 14135181 1 0 -tabes_dorsalis%1:26:00:: 14134819 1 0 -tabi%1:06:00:: 04378956 1 0 -tabis%1:06:00:: 04378956 1 0 -tablature%1:10:00:: 06816335 1 0 -table%1:06:01:: 04379243 2 25 -table%1:06:02:: 04379964 3 5 -table%1:13:01:: 07565259 6 0 -table%1:14:00:: 08266235 1 52 -table%1:14:01:: 08480135 5 0 -table%1:17:00:: 09351905 4 0 -table%2:36:00:: 01745536 2 0 -table%2:42:00:: 02642814 1 0 -table-mountain_pine%1:20:00:: 11617631 1 0 -table-tennis_bat%1:06:00:: 04381724 1 0 -table-tennis_racquet%1:06:00:: 04381724 1 0 -table-tennis_table%1:06:00:: 04381587 1 0 -table_d'hote%1:10:00:: 06497331 1 0 -table_d'hote%3:00:00:: 02453035 1 0 -table_game%1:04:00:: 00499066 1 0 -table_knife%1:06:00:: 04380346 1 0 -table_lamp%1:06:00:: 04380533 1 0 -table_lifting%1:10:00:: 07257393 1 0 -table_linen%1:06:00:: 04380617 1 0 -table_mat%1:06:00:: 04380801 1 0 -table_mustard%1:13:00:: 07819480 1 0 -table_napkin%1:06:00:: 03807537 1 0 -table_of_contents%1:10:00:: 06489659 1 0 -table_rapping%1:10:00:: 07257227 1 0 -table_salt%1:13:00:: 07813107 1 0 -table_saw%1:06:00:: 04380916 1 0 -table_service%1:06:00:: 04175380 1 0 -table_talk%1:10:00:: 07141922 1 0 -table_tapping%1:10:00:: 07257227 1 0 -table_tennis%1:04:00:: 00499263 1 1 -table_tilting%1:10:00:: 07257393 1 0 -table_tipping%1:10:00:: 07257393 1 0 -table_turning%1:10:00:: 07257393 1 0 -table_wine%1:13:00:: 07898745 1 0 -tableau%1:09:00:: 05934780 2 1 -tableau%1:14:00:: 08372715 1 1 -tableau_vivant%1:14:00:: 08372715 1 0 -tablecloth%1:06:00:: 04380143 1 0 -tablefork%1:06:00:: 04380255 1 0 -tableland%1:17:00:: 09453008 1 0 -tablemate%1:18:00:: 10687826 1 0 -tablespoon%1:06:00:: 04381073 2 0 -tablespoon%1:23:01:: 13770310 1 0 -tablespoonful%1:23:01:: 13770310 1 0 -tablet%1:06:00:: 03936568 4 0 -tablet%1:06:01:: 04381183 3 0 -tablet%1:06:02:: 04381302 1 1 -tablet%1:27:00:: 14973133 2 0 -tablet-armed_chair%1:06:00:: 04381450 1 0 -tabletop%1:06:00:: 04381860 1 1 -tableware%1:06:00:: 04381994 1 0 -tabloid%1:10:00:: 06267893 2 0 -tabloid%1:10:01:: 06267991 1 0 -taboo%1:07:00:: 04884302 2 0 -taboo%1:09:00:: 05950234 1 0 -taboo%2:41:00:: 02508977 1 0 -taboo%5:00:00:impermissible:00 01761375 1 1 -taboo%5:00:00:sacred:00 02056761 2 0 -tabooli%1:13:00:: 07808904 1 0 -tabor%1:06:00:: 04382334 1 0 -tabor_pipe%1:06:00:: 03945459 1 0 -tabora%1:15:00:: 09035852 1 0 -taboret%1:06:00:: 04382438 1 0 -tabour%1:06:00:: 04382334 1 0 -tabouret%1:06:00:: 04382438 1 0 -tabriz%1:15:00:: 08912427 1 0 -tabu%1:07:00:: 04884302 2 0 -tabu%1:09:00:: 05950234 1 0 -tabu%5:00:00:impermissible:00 01761375 2 0 -tabu%5:00:00:sacred:00 02056761 1 0 -tabuk%1:15:00:: 08995013 1 0 -tabula_rasa%1:09:00:: 05613043 1 2 -tabula_rasa%1:26:00:: 14484646 2 0 -tabular%3:01:00:: 03122633 1 0 -tabular%5:00:00:planar:00 00659617 2 0 -tabular_array%1:14:00:: 08266235 1 0 -tabular_matter%1:10:00:: 07002992 1 0 -tabularise%2:36:00:: 01745536 1 0 -tabularize%2:36:00:: 01745536 1 0 -tabulate%2:30:01:: 00142967 2 0 -tabulate%2:36:00:: 01745536 1 4 -tabulation%1:04:00:: 00652659 2 0 -tabulation%1:10:00:: 07002992 1 1 -tabulator%1:06:00:: 03116767 1 0 -tabun%1:27:00:: 15066125 1 0 -tacamahac%1:20:00:: 12731835 1 0 -tacca%1:20:00:: 12475593 1 0 -tacca_leontopetaloides%1:20:00:: 12475774 1 0 -tacca_pinnatifida%1:20:00:: 12475774 1 0 -taccaceae%1:20:00:: 12475450 1 0 -tach%1:06:00:: 04382880 1 0 -tacheometer%1:06:00:: 04383015 1 0 -tachina_fly%1:05:00:: 02192814 1 0 -tachinidae%1:05:00:: 02192673 1 0 -tachistoscope%1:06:00:: 04382537 1 0 -tachogram%1:10:00:: 07005897 1 0 -tachograph%1:06:00:: 04382695 1 0 -tachometer%1:06:00:: 04382880 1 0 -tachycardia%1:26:00:: 14363027 1 0 -tachyglossidae%1:05:00:: 01872094 1 0 -tachyglossus%1:05:00:: 01872244 1 0 -tachygraphy%1:10:00:: 06350127 1 0 -tachylite%1:27:00:: 14881224 1 0 -tachymeter%1:06:00:: 04383015 1 0 -tachypleus%1:05:00:: 01788157 1 0 -tacit%5:00:00:implicit:00 00942163 1 0 -tacit_consent%1:10:00:: 06689125 1 0 -tacitly%4:02:00:: 00473021 1 0 -taciturn%3:00:00:: 02383380 1 0 -taciturnity%1:07:00:: 04652438 1 0 -taciturnly%4:02:00:: 00112090 1 0 -tacitus%1:18:00:: 11328524 1 0 -tack%1:04:00:: 00314395 6 0 -tack%1:04:01:: 00351334 5 0 -tack%1:06:00:: 04383130 2 0 -tack%1:06:01:: 04295081 3 0 -tack%1:06:02:: 04188368 4 0 -tack%1:15:00:: 08681084 1 0 -tack%2:30:02:: 00121678 6 0 -tack%2:35:00:: 01357429 1 3 -tack%2:35:05:: 01331348 4 0 -tack%2:35:06:: 01328513 5 0 -tack%2:36:05:: 01656788 3 0 -tack%2:38:00:: 01946408 2 1 -tack_hammer%1:06:00:: 04383301 1 3 -tack_on%2:35:00:: 01328513 1 1 -tack_together%2:36:00:: 01656788 1 0 -tacker%1:06:00:: 04303357 3 0 -tacker%1:18:00:: 09843048 2 0 -tacker%1:18:01:: 10687922 1 0 -tackiness%1:07:00:: 04818460 2 0 -tackiness%1:07:01:: 04935904 1 0 -tacking%1:04:00:: 00351334 2 0 -tacking%1:06:00:: 02805111 1 0 -tackle%1:04:00:: 00561985 5 0 -tackle%1:04:02:: 00727901 4 0 -tackle%1:06:00:: 04091693 2 0 -tackle%1:06:01:: 03351434 3 0 -tackle%1:18:00:: 10688070 1 1 -tackle%2:33:01:: 01150164 3 0 -tackle%2:35:05:: 01491697 2 0 -tackle%2:41:00:: 02569630 1 3 -tackler%1:18:00:: 10688238 1 0 -tacky%5:00:00:tasteless:02 02393791 2 0 -tacky%5:00:00:wet:01 02550891 1 0 -taco%1:13:00:: 07880751 2 0 -taco%1:18:00:: 09722898 1 0 -taco_sauce%1:13:00:: 07823369 1 0 -tacoma%1:15:00:: 09154731 1 0 -tacoma_narrows_bridge%1:06:00:: 04383401 1 0 -taconic_mountains%1:17:00:: 09453288 1 0 -taconite%1:27:00:: 14870665 1 0 -tact%1:07:00:: 04841810 1 2 -tactful%3:00:00:: 02384383 1 0 -tactful%5:00:00:diplomatic:00 00759169 2 0 -tactfully%4:02:00:: 00473170 1 0 -tactfulness%1:07:00:: 04841810 1 0 -tactic%1:09:00:: 05905152 1 4 -tactical%3:01:00:: 02951000 1 0 -tactical_intelligence%1:04:00:: 00982347 1 0 -tactical_maneuver%1:04:00:: 00168237 1 0 -tactical_manoeuvre%1:04:00:: 00168237 1 0 -tactical_warning%1:10:00:: 07225857 1 0 -tactically%4:02:00:: 00473548 1 1 -tactician%1:18:00:: 10688356 1 0 -tactics%1:09:00:: 05905152 2 0 -tactics%1:09:01:: 06248968 1 2 -tactile%3:01:00:: 02869097 1 2 -tactile%5:00:00:tangible:00 02391683 2 0 -tactile_agnosia%1:26:00:: 14056143 1 0 -tactile_property%1:07:00:: 04946553 1 0 -tactile_sensation%1:09:00:: 05722427 1 0 -tactility%1:09:00:: 05721990 1 0 -tactless%3:00:00:: 02384843 1 0 -tactless%5:00:00:maladroit:00 00063953 2 0 -tactlessly%4:02:00:: 00473338 1 0 -tactlessness%1:07:00:: 04846243 1 0 -tactual%3:01:00:: 02869097 1 7 -tactual%5:00:00:tangible:00 02391683 2 0 -tactual_exploration%1:04:00:: 00143885 1 0 -tactual_sensation%1:09:00:: 05722427 1 1 -tactual_sensation%1:09:01:: 05721990 2 0 -tactually%4:02:00:: 00198403 1 1 -tad%1:23:00:: 13763185 1 0 -tadalafil%1:06:00:: 04383537 1 0 -tadarida%1:05:00:: 02149297 1 0 -tadarida_brasiliensis%1:05:00:: 02149653 1 0 -tadeus_reichstein%1:18:00:: 11257395 1 0 -tadeusz_andrzej_bonawentura_kosciuszko%1:18:00:: 11109728 1 0 -tadirida_femorosacca%1:05:00:: 02149861 1 0 -tadjik%1:15:00:: 09020961 1 0 -tadorna%1:05:00:: 01849348 1 0 -tadpole%1:05:00:: 02469472 1 1 -tadpole-shaped%5:00:00:formed:00 02150658 1 0 -tadpole_shrimp%1:05:00:: 01996280 1 0 -tadzhik%1:10:00:: 06974390 4 0 -tadzhik%1:14:00:: 08484810 3 0 -tadzhik%1:15:00:: 09020961 2 0 -tadzhik%1:18:00:: 09734006 1 0 -tadzhikistan%1:15:00:: 09020961 1 0 -tae_kwon_do%1:04:00:: 00826681 1 0 -taegu%1:15:00:: 08956461 1 0 -taekwondo%1:04:00:: 00826681 1 0 -tael%1:23:00:: 13719291 1 0 -taenia%1:05:00:: 01928215 2 0 -taenia%1:06:00:: 04383696 1 0 -taeniidae%1:05:00:: 01927665 1 0 -taffeta%1:06:00:: 04383839 1 0 -taffeta_weave%1:06:00:: 03954012 1 0 -taffrail%1:06:00:: 04383923 1 0 -taffrail_log%1:06:00:: 03898787 1 0 -taffy%1:13:00:: 07609407 1 2 -taffy_apple%1:13:00:: 07600696 1 0 -taft%1:18:00:: 11328714 2 0 -taft%1:18:01:: 11328930 1 0 -tag%1:04:00:: 00145024 5 0 -tag%1:04:01:: 00487874 4 0 -tag%1:06:01:: 04045941 3 0 -tag%1:10:00:: 07273136 1 4 -tag%1:10:01:: 07273416 2 0 -tag%2:32:00:: 01029760 3 1 -tag%2:35:00:: 01588493 1 3 -tag%2:35:01:: 01600600 2 1 -tag%2:36:00:: 01702033 5 0 -tag%2:38:00:: 02001858 4 0 -tag_along%2:38:00:: 02027030 1 0 -tag_end%1:06:00:: 04045941 1 0 -tag_line%1:10:00:: 06778777 1 0 -tag_on%2:35:00:: 01328513 1 0 -tagalog%1:10:00:: 06940001 2 0 -tagalog%1:18:00:: 10688491 1 0 -tagalong%1:18:00:: 10688671 1 0 -tagamet%1:06:00:: 03031553 1 0 -tagasaste%1:20:00:: 12514592 1 0 -tagetes_erecta%1:20:00:: 12020736 1 0 -tagetes_patula%1:20:00:: 12020941 1 0 -tageteste%1:20:00:: 12020388 1 0 -tagged%3:00:00:: 01379705 1 1 -tagger%1:10:00:: 06577585 3 0 -tagger%1:18:00:: 10688811 2 0 -tagger%1:18:01:: 10688975 1 0 -tagging_program%1:10:00:: 06577585 1 0 -tagliatelle%1:13:00:: 07701372 1 0 -tagore%1:18:00:: 11329030 1 0 -taguan%1:05:00:: 02362569 1 0 -tagus%1:17:00:: 09453566 1 0 -tagus_river%1:17:00:: 09453566 1 0 -tahini%1:13:00:: 07858484 1 0 -tahiti%1:15:00:: 08989941 1 1 -tahitian%1:10:00:: 06938294 2 0 -tahitian%1:18:00:: 09733793 1 0 -tahitian%3:01:00:: 03122221 1 0 -tahoka_daisy%1:20:00:: 11993203 1 0 -tai%1:10:00:: 06934389 2 0 -tai%1:18:00:: 09734294 1 0 -tai%3:01:00:: 03116651 3 0 -tai%3:01:01:: 03116809 2 0 -tai%3:01:02:: 03117012 1 0 -tai_chi%1:04:00:: 00826789 1 0 -tai_chi_chuan%1:04:00:: 00826789 1 0 -tai_dam%1:10:00:: 06935016 1 0 -tai_long%1:10:00:: 06935223 1 0 -tai_lue%1:10:00:: 06935314 1 0 -tai_nuea%1:10:00:: 06935111 1 0 -tai_yuan%1:10:00:: 06935417 1 0 -taichi%1:04:00:: 00826789 1 0 -taichichuan%1:04:00:: 00826789 1 0 -taichung%1:15:00:: 08731057 1 0 -taif%1:15:00:: 08995120 1 0 -tail%1:05:00:: 02157557 1 6 -tail%1:06:00:: 04316646 8 0 -tail%1:06:01:: 04384016 7 0 -tail%1:06:02:: 04384199 6 0 -tail%1:08:01:: 05559256 4 1 -tail%1:18:00:: 10689104 5 0 -tail%1:25:00:: 13918274 3 1 -tail%1:28:00:: 15268367 2 2 -tail%2:35:00:: 01556178 2 0 -tail%2:35:01:: 01321796 3 0 -tail%2:38:00:: 02001858 1 0 -tail-flower%1:20:00:: 11783920 1 0 -tail-shaped%5:00:00:caudate:00 00320756 1 0 -tail_assembly%1:06:00:: 04384016 1 0 -tail_bone%1:08:00:: 05274247 1 0 -tail_coat%1:06:00:: 03239054 1 0 -tail_end%1:08:00:: 05559256 3 0 -tail_end%1:25:00:: 13918274 2 0 -tail_end%1:28:00:: 15268367 1 0 -tail_feather%1:05:00:: 02469344 1 0 -tail_fin%1:05:00:: 02466957 3 0 -tail_fin%1:06:00:: 04529962 1 0 -tail_fin%1:06:01:: 04384406 2 0 -tail_gate%1:06:01:: 04384757 1 0 -tail_lamp%1:06:00:: 04384910 1 0 -tail_rotor%1:06:00:: 04385799 1 0 -tailback%1:04:00:: 00727137 2 0 -tailback%1:18:00:: 10689306 1 1 -tailboard%1:06:00:: 04384593 1 0 -tailcoat%1:06:00:: 03239054 1 0 -tailed%5:00:00:caudate:00 00320064 1 0 -tailed_frog%1:05:00:: 01644900 1 0 -tailed_toad%1:05:00:: 01644900 1 0 -tailfin%1:06:00:: 04529962 1 0 -tailfin%1:06:01:: 04384406 2 0 -tailflower%1:20:00:: 11783920 1 0 -tailgate%1:06:00:: 04384593 1 1 -tailgate%2:38:00:: 01998125 1 0 -tailgater%1:18:00:: 10689429 1 0 -tailing%1:04:00:: 00320486 1 0 -tailless%5:00:00:acaudate:00 00320985 1 0 -tailless_tenrec%1:05:00:: 01894522 1 0 -taillight%1:06:00:: 04384910 1 0 -taillike%5:00:00:caudate:00 00319965 1 0 -tailor%1:18:00:: 10689564 1 0 -tailor%2:30:00:: 00301662 1 5 -tailor%2:36:00:: 01666327 3 0 -tailor%2:36:01:: 01666717 2 1 -tailor's_chalk%1:06:00:: 04385157 1 0 -tailor's_tack%1:06:00:: 04385272 1 0 -tailor-made%1:06:00:: 04385079 1 0 -tailor-made%5:00:00:custom-made:00 00672382 1 0 -tailor-make%2:36:00:: 01666327 1 1 -tailor-make%2:36:01:: 01623489 2 0 -tailorbird%1:05:00:: 01566207 1 0 -tailored%5:00:00:custom-made:00 00672382 2 0 -tailored%5:00:00:plain:01 01793985 1 3 -tailoring%1:04:00:: 00618436 1 0 -tailpiece%1:06:00:: 04385431 1 0 -tailpipe%1:06:00:: 04385536 1 0 -tailplane%1:06:00:: 03536122 1 0 -tailrace%1:06:00:: 04385669 1 0 -tails%1:06:01:: 03239054 1 0 -tailspin%1:04:00:: 00306210 2 0 -tailspin%1:26:00:: 14404042 1 0 -tailstock%1:06:00:: 04386051 1 0 -tailwind%1:19:00:: 11443409 1 0 -tailwort%1:20:00:: 12816508 1 0 -taimyr_peninsula%1:15:00:: 09022132 1 0 -taint%1:26:00:: 14487731 1 1 -taint%2:29:00:: 00088713 2 0 -taint%2:35:00:: 01537959 1 0 -tainted%5:00:00:stale:00 01070716 1 0 -taipan%1:05:00:: 01751472 1 0 -taipeh%1:15:00:: 08730895 1 0 -taipei%1:15:00:: 08730895 1 0 -taira%1:05:00:: 02451415 1 0 -taiwan%1:15:00:: 08730550 1 1 -taiwan%1:15:01:: 08730354 2 0 -taiwan_dollar%1:23:00:: 13674045 1 0 -taiwanese%1:10:00:: 06930633 2 0 -taiwanese%1:18:00:: 09733899 1 0 -taiwanese%3:01:00:: 03122400 1 0 -taiyuan%1:15:00:: 08728595 1 0 -taj_mahal%1:06:00:: 04386283 1 0 -tajik%1:10:00:: 06974390 4 0 -tajik%1:14:00:: 08484810 3 0 -tajik%1:15:00:: 09020961 2 0 -tajik%1:18:00:: 09734006 1 0 -tajiki%1:10:00:: 06974390 1 0 -tajikistan%1:15:00:: 09020961 1 0 -tajikistani%3:01:00:: 02963404 1 0 -tajikistani_monetary_unit%1:23:00:: 13702396 1 0 -taka%1:23:00:: 13708014 1 0 -takahe%1:05:00:: 02017725 1 0 -takakkaw%1:17:00:: 09453718 1 0 -takayasu's_arteritis%1:26:00:: 14258957 1 0 -take%1:04:00:: 00908133 2 0 -take%1:21:00:: 13260190 1 0 -take%2:29:08:: 00087736 42 0 -take%2:30:00:: 00173338 17 16 -take%2:30:01:: 00524682 5 38 -take%2:30:08:: 00523095 24 7 -take%2:30:09:: 00557404 29 4 -take%2:31:01:: 00674607 10 26 -take%2:31:02:: 00599992 25 6 -take%2:31:03:: 00734054 13 22 -take%2:31:07:: 00624476 6 36 -take%2:31:09:: 00669762 19 15 -take%2:32:00:: 00756076 26 5 -take%2:32:02:: 01002740 16 16 -take%2:32:09:: 00758333 36 1 -take%2:33:08:: 01100830 41 0 -take%2:33:09:: 01151110 28 4 -take%2:34:00:: 01156834 18 15 -take%2:35:00:: 01214265 4 50 -take%2:35:14:: 01427127 35 1 -take%2:38:00:: 01982395 22 10 -take%2:38:02:: 01842690 9 26 -take%2:38:05:: 02075857 27 4 -take%2:38:09:: 01999798 3 73 -take%2:38:10:: 02077656 7 32 -take%2:38:11:: 01930482 40 0 -take%2:39:00:: 02109045 15 21 -take%2:40:00:: 02205272 8 28 -take%2:40:01:: 02206619 21 13 -take%2:40:02:: 02208118 33 1 -take%2:40:03:: 02208537 31 2 -take%2:40:04:: 02209745 32 1 -take%2:40:05:: 02236124 11 25 -take%2:40:06:: 02267989 2 74 -take%2:40:07:: 02236624 23 8 -take%2:40:08:: 02201138 34 1 -take%2:40:15:: 02209936 20 14 -take%2:41:00:: 02394183 12 22 -take%2:41:04:: 02599636 1 92 -take%2:41:13:: 02590253 39 0 -take%2:42:00:: 02627934 14 21 -take%2:42:03:: 02741546 37 0 -take%2:42:10:: 02717102 30 2 -take%2:42:15:: 02701210 38 0 -take-away%5:00:00:portable:00 01526262 1 0 -take-home%5:00:00:net:00 01582698 1 0 -take-home_pay%1:21:00:: 13280992 1 0 -take-in%1:04:00:: 00756780 1 0 -take-up%1:04:00:: 00194005 2 0 -take-up%1:06:00:: 04386456 1 0 -take_a_bow%2:32:00:: 00899041 2 0 -take_a_bow%2:32:01:: 00899204 1 0 -take_a_breath%2:29:00:: 00001740 1 3 -take_a_breather%2:32:00:: 00779360 1 1 -take_a_chance%2:41:00:: 02544348 1 6 -take_a_crap%2:29:00:: 00074038 1 0 -take_a_dare%2:32:00:: 00950206 2 0 -take_a_dare%2:32:01:: 00950337 1 0 -take_a_dive%2:32:00:: 00839085 1 0 -take_a_firm_stand%2:32:00:: 00818974 1 0 -take_a_hit%2:34:12:: 01199755 1 0 -take_a_hop%2:38:00:: 01892104 1 0 -take_a_joke%2:31:00:: 00669630 1 0 -take_a_leak%2:29:00:: 00072012 1 0 -take_a_look%2:39:00:: 02131777 1 7 -take_a_powder%2:30:00:: 00427558 1 0 -take_a_shit%2:29:00:: 00074038 1 0 -take_aback%2:37:00:: 01809064 1 1 -take_account%2:31:12:: 00592341 1 2 -take_advantage%2:40:00:: 02279772 1 11 -take_advantage%2:41:12:: 02570062 2 1 -take_after%2:36:00:: 01744450 2 0 -take_after%2:42:00:: 02665937 1 0 -take_aim%2:33:00:: 01151110 1 1 -take_apart%2:31:00:: 00643473 3 0 -take_apart%2:35:00:: 01572510 2 1 -take_apart%2:36:00:: 01657977 1 1 -take_arms%2:33:00:: 01093465 1 0 -take_away%2:30:00:: 00179311 3 4 -take_away%2:30:01:: 00173338 2 5 -take_away%2:30:02:: 00571061 6 0 -take_away%2:30:03:: 00532115 7 0 -take_away%2:34:00:: 01166940 5 0 -take_away%2:35:00:: 01434278 1 5 -take_away%2:40:01:: 02205719 4 2 -take_back%2:31:00:: 00610770 6 0 -take_back%2:32:00:: 00799076 5 0 -take_back%2:38:00:: 01852591 4 0 -take_back%2:38:03:: 02078294 1 5 -take_back%2:40:00:: 02205887 2 1 -take_back%2:41:00:: 02458405 3 0 -take_care%2:41:00:: 02591597 1 9 -take_care%2:41:11:: 02549581 3 6 -take_care%2:41:12:: 02437707 2 8 -take_chances%2:41:00:: 02544348 1 1 -take_charge%2:41:00:: 02440770 1 4 -take_control%2:41:00:: 02440770 1 0 -take_down%2:32:00:: 01020934 4 0 -take_down%2:36:00:: 01661804 3 0 -take_down%2:37:00:: 01800422 2 0 -take_down%2:38:00:: 01973125 1 3 -take_effect%2:30:00:: 00522282 1 0 -take_exception%2:32:03:: 00808162 1 1 -take_fire%2:43:00:: 02760622 1 0 -take_five%2:32:00:: 00779908 1 0 -take_flight%2:38:00:: 02075462 1 0 -take_for%2:31:00:: 00693780 1 2 -take_for_granted%2:31:00:: 00632236 1 3 -take_form%2:42:00:: 02623906 1 5 -take_heart%2:37:00:: 01806407 1 1 -take_heed%2:39:00:: 02171039 1 0 -take_hold%2:35:00:: 01216670 2 2 -take_hold%2:41:00:: 02440770 1 3 -take_hold_of%2:35:01:: 01439190 1 1 -take_home%2:40:00:: 02289854 1 0 -take_in%2:30:00:: 00304100 17 0 -take_in%2:30:03:: 00413195 16 0 -take_in%2:31:00:: 00602255 9 1 -take_in%2:32:00:: 00854904 2 2 -take_in%2:34:00:: 01156834 15 0 -take_in%2:34:01:: 01197980 14 0 -take_in%2:35:00:: 01214786 8 1 -take_in%2:35:01:: 01470225 7 1 -take_in%2:35:02:: 01540844 12 0 -take_in%2:35:04:: 01539063 13 0 -take_in%2:39:00:: 02189168 11 0 -take_in%2:39:06:: 02150948 6 1 -take_in%2:40:00:: 02289295 10 0 -take_in%2:40:09:: 02218173 5 1 -take_in%2:41:00:: 02492584 4 1 -take_in%2:42:00:: 02656995 1 3 -take_in%2:43:00:: 02765464 3 1 -take_in_charge%2:41:00:: 02539686 1 0 -take_in_vain%2:34:00:: 01161830 1 0 -take_in_water%2:30:00:: 00257947 1 0 -take_into_account%2:31:00:: 00723545 1 12 -take_issue%2:32:00:: 00804802 1 1 -take_it_easy%2:29:00:: 00026941 1 3 -take_it_on_the_chin%2:31:00:: 00669528 1 0 -take_kindly_to%2:42:00:: 02719246 1 1 -take_leave%2:38:00:: 02008396 1 2 -take_lying_down%2:31:00:: 00669366 1 0 -take_note%2:39:00:: 02118933 1 2 -take_notice%2:39:00:: 02118793 1 2 -take_off%2:29:03:: 00050454 6 1 -take_off%2:30:00:: 00179060 2 6 -take_off%2:31:00:: 00641252 9 0 -take_off%2:35:00:: 01326323 8 0 -take_off%2:36:00:: 01743313 5 1 -take_off%2:38:00:: 02014165 1 15 -take_off%2:38:01:: 01864438 7 0 -take_off%2:38:02:: 02014553 3 4 -take_off%2:41:00:: 02411950 4 2 -take_office%2:41:00:: 02383842 1 0 -take_on%2:30:00:: 00524682 1 10 -take_on%2:33:01:: 01079480 5 1 -take_on%2:40:00:: 02236624 4 1 -take_on%2:41:00:: 02569630 3 2 -take_on%2:41:01:: 02381726 2 6 -take_one's_lumps%2:31:00:: 00738159 1 0 -take_orders%2:41:00:: 02543023 1 0 -take_orders%2:41:01:: 02386266 2 0 -take_out%2:30:00:: 00179311 3 4 -take_out%2:31:00:: 00615774 14 0 -take_out%2:31:01:: 00677021 13 0 -take_out%2:34:00:: 01166940 12 0 -take_out%2:35:00:: 01352390 6 1 -take_out%2:35:01:: 01485513 2 6 -take_out%2:35:09:: 01351170 11 0 -take_out%2:38:00:: 01854132 10 0 -take_out%2:38:10:: 01995211 9 0 -take_out%2:40:00:: 02311387 8 0 -take_out%2:40:01:: 02326955 7 0 -take_out%2:40:02:: 02239261 4 2 -take_out%2:41:00:: 02486693 5 1 -take_out%2:41:01:: 02404904 1 7 -take_over%2:40:00:: 02216560 8 0 -take_over%2:40:03:: 02274299 5 3 -take_over%2:40:05:: 02346724 7 1 -take_over%2:40:06:: 02301825 4 5 -take_over%2:40:07:: 02274482 1 12 -take_over%2:41:00:: 02412175 3 5 -take_over%2:41:01:: 02381726 2 8 -take_over%2:41:02:: 02595662 6 1 -take_pains%2:41:00:: 02531088 1 3 -take_part%2:41:00:: 02450256 1 12 -take_place%2:30:00:: 00339934 1 54 -take_pride%2:37:09:: 01828993 1 0 -take_root%2:30:01:: 00415398 1 4 -take_shape%2:42:00:: 02623906 1 5 -take_stage%2:41:00:: 02535360 1 0 -take_stock%2:39:00:: 02153387 1 1 -take_stock%2:41:00:: 02472495 2 0 -take_ten%2:32:00:: 00780052 1 0 -take_the_air%2:38:00:: 01882170 1 0 -take_the_bull_by_the_horns%2:33:00:: 01079339 1 0 -take_the_cake%2:33:00:: 01107895 1 0 -take_the_count%2:33:00:: 01125209 1 0 -take_the_field%2:33:00:: 01154554 2 0 -take_the_field%2:33:01:: 01093786 1 1 -take_the_fifth%2:32:00:: 00894499 1 0 -take_the_fifth_amendment%2:32:00:: 00894499 1 0 -take_the_floor%2:32:00:: 00989490 2 0 -take_the_floor%2:38:00:: 01983508 1 2 -take_the_road%2:38:00:: 01845587 1 0 -take_the_stage%2:41:00:: 02535360 1 0 -take_the_stand%2:32:00:: 01014821 1 1 -take_the_veil%2:32:00:: 00888519 1 0 -take_time_by_the_forelock%2:41:00:: 02402271 1 0 -take_time_off%2:41:00:: 02411950 1 1 -take_to%2:37:00:: 01776468 1 4 -take_to%2:41:01:: 02600779 2 1 -take_to_be%2:31:00:: 00689950 1 2 -take_to_heart%2:31:00:: 00616670 1 1 -take_to_task%2:32:00:: 00824767 1 0 -take_to_the_woods%2:38:00:: 02075049 1 0 -take_turns%2:30:00:: 00121214 1 2 -take_up%2:30:00:: 00348422 1 9 -take_up%2:30:01:: 00350283 13 0 -take_up%2:31:00:: 00602112 2 5 -take_up%2:34:00:: 01197980 12 0 -take_up%2:35:00:: 01312371 9 1 -take_up%2:35:01:: 01540844 10 0 -take_up%2:35:03:: 01539063 11 0 -take_up%2:35:04:: 01540449 8 1 -take_up%2:38:03:: 01982395 7 1 -take_up%2:40:00:: 02346724 6 1 -take_up%2:41:00:: 02379528 5 2 -take_up%2:41:01:: 02591171 3 4 -take_up%2:42:00:: 02649493 4 3 -take_up_arms%2:33:00:: 01093465 1 1 -take_water%2:38:00:: 02017663 1 0 -takeaway%1:04:00:: 00556834 3 0 -takeaway%1:10:00:: 07217117 2 0 -takeaway%1:13:00:: 07594511 1 0 -takedown%1:10:00:: 06716796 2 0 -takedown%1:11:01:: 07471514 1 0 -takelma%1:10:00:: 06925538 2 0 -takelma%1:18:00:: 09670051 1 0 -taken%5:00:00:affected:00 00071739 2 0 -taken%5:00:00:understood:00 01378671 1 1 -taken_for_granted%5:00:00:obvious:00 01618895 1 1 -taken_up%5:00:00:concerned:00 00544478 1 1 -taken_with%5:00:00:loving:00 01465668 1 0 -takeoff%1:04:00:: 00306102 1 1 -takeoff%1:04:01:: 00549610 4 0 -takeoff%1:10:00:: 06780309 3 0 -takeoff%1:11:00:: 07375635 2 0 -takeoff_booster%1:06:00:: 02872333 1 0 -takeoff_rocket%1:06:00:: 02872333 1 0 -takeout%1:10:00:: 06737628 2 0 -takeout%1:13:00:: 07594511 1 0 -takeout%5:00:00:portable:00 01526262 1 0 -takeout_food%1:13:00:: 07594511 1 0 -takeover%1:04:01:: 00789906 2 0 -takeover%1:04:02:: 01145015 1 1 -takeover_arbitrage%1:04:00:: 01094293 1 0 -takeover_attempt%1:04:00:: 00790205 1 0 -takeover_bid%1:04:00:: 00790347 1 0 -takeover_target%1:14:00:: 08076075 1 0 -taker%1:18:01:: 09852081 2 0 -taker%1:18:02:: 10689784 1 0 -takilman%1:10:00:: 06925538 1 0 -takin%1:05:00:: 02419634 1 0 -taking%1:04:00:: 00714477 1 0 -taking%5:00:00:attractive:01 00167829 1 0 -taking_apart%1:11:00:: 07433510 1 0 -taking_hold%1:04:00:: 00812274 1 0 -taking_into_custody%1:04:00:: 00088725 1 0 -taking_over%1:04:00:: 00082754 1 0 -takings%1:21:00:: 13260190 1 1 -taklamakan_desert%1:15:00:: 09173288 1 0 -taklimakan_desert%1:15:00:: 09173288 1 0 -tala%1:23:00:: 13708282 1 0 -talapoin%1:05:00:: 02485225 1 0 -talaria%1:06:00:: 04386664 1 0 -talbot%1:18:00:: 11329281 1 0 -talc%1:27:00:: 15066367 1 0 -talc%2:29:00:: 00042364 1 0 -talcott_parsons%1:18:00:: 11224309 1 0 -talcum%1:06:00:: 04386792 2 0 -talcum%1:27:00:: 15066367 1 0 -talcum_powder%1:06:00:: 04386792 1 0 -tale%1:10:00:: 07221094 1 26 -tale%1:10:01:: 06757057 2 6 -taleban%1:14:00:: 08476165 1 0 -talebearer%1:18:00:: 10692696 1 0 -talebearing%5:00:00:communicative:00 00496259 1 0 -talent%1:09:00:: 05624042 1 14 -talent%1:18:00:: 10689878 2 4 -talent_agent%1:18:00:: 10690002 1 0 -talent_scout%1:18:00:: 10562968 1 0 -talented%3:00:00:: 01119192 1 0 -talentless%3:00:00:: 01119305 1 0 -talentlessness%1:09:00:: 05647772 1 0 -taleteller%1:18:00:: 10692696 1 0 -taliban%1:14:00:: 08476165 1 0 -talien%1:15:00:: 08727003 1 0 -talinum%1:20:00:: 11862598 1 0 -talinum_augustissimum%1:20:00:: 11863242 1 0 -talinum_aurantiacum%1:20:00:: 11862835 1 0 -talinum_brevifolium%1:20:00:: 11863467 1 0 -talinum_calycinum%1:20:00:: 11863717 1 0 -talinum_paniculatum%1:20:00:: 11863877 1 0 -talinum_spinescens%1:20:00:: 11864114 1 0 -taliped%5:00:00:unshapely:00 02141209 1 0 -talipes%1:26:00:: 14214584 1 0 -talipes_calcaneus%1:26:00:: 14215046 1 0 -talipes_equinus%1:26:00:: 14214938 1 0 -talipes_valgus%1:26:00:: 14214819 1 0 -talipot%1:20:00:: 12589841 1 0 -talipot_palm%1:20:00:: 12589841 1 0 -talisman%1:06:00:: 02706586 1 0 -talismanic%5:00:00:supernatural:00 01577327 1 1 -talk%1:04:02:: 00893243 3 1 -talk%1:10:00:: 07135734 1 12 -talk%1:10:01:: 07223985 5 0 -talk%1:10:02:: 07240549 4 0 -talk%1:10:03:: 07139316 2 1 -talk%2:32:00:: 00941990 2 26 -talk%2:32:01:: 00962447 1 108 -talk%2:32:02:: 00952841 4 4 -talk%2:32:03:: 00963570 3 8 -talk%2:32:05:: 00830761 6 0 -talk%2:32:06:: 00937208 5 2 -talk_about%2:32:00:: 01034312 1 40 -talk_about%2:32:01:: 00943563 2 10 -talk_down%2:32:00:: 00864814 1 1 -talk_down%2:32:01:: 00963015 2 0 -talk_down%2:32:02:: 00749584 3 0 -talk_into%2:32:00:: 00768512 1 7 -talk_of%2:32:00:: 00943563 1 3 -talk_of_the_town%1:10:00:: 07223985 1 0 -talk_out_of%2:32:00:: 00768389 1 0 -talk_over%2:32:00:: 00813978 1 1 -talk_shop%2:32:00:: 01034766 1 1 -talk_show%1:10:00:: 06620227 1 0 -talk_terms%2:32:00:: 00761713 1 1 -talk_through_one's_hat%2:32:00:: 00839526 1 0 -talk_turkey%2:32:00:: 00964365 1 0 -talkative%5:00:00:communicative:00 00496938 3 0 -talkative%5:00:00:indiscreet:00 00773299 2 0 -talkative%5:00:00:voluble:00 02384077 1 1 -talkatively%4:02:00:: 00392875 1 0 -talkativeness%1:07:00:: 04651382 1 0 -talker%1:18:00:: 10630188 1 0 -talker_identification%1:09:00:: 05763767 1 0 -talkie%1:10:00:: 06618822 1 0 -talkily%4:02:00:: 00392875 1 0 -talking%1:10:00:: 07135734 1 1 -talking_book%1:06:00:: 04386962 1 0 -talking_head%1:18:00:: 10690095 1 0 -talking_picture%1:10:00:: 06618822 1 0 -talking_point%1:10:00:: 06607204 1 0 -talking_to%1:10:00:: 06713930 1 0 -talks%1:10:00:: 07148192 1 1 -talky%5:00:00:voluble:00 02384077 1 1 -tall%1:07:00:: 05097278 1 0 -tall%3:00:00:: 02385102 1 73 -tall%5:00:00:difficult:00 00748563 3 0 -tall%5:00:00:incredible:00 00646117 4 0 -tall%5:00:00:rhetorical:00 02017721 2 0 -tall-grass%1:20:00:: 12104238 1 0 -tall-growing%5:00:00:tall:00 02386002 1 1 -tall-stalked%5:00:00:tall:00 02386305 1 0 -tall_bellflower%1:20:00:: 12038038 1 0 -tall_bilberry%1:20:00:: 12247664 1 0 -tall_buttercup%1:20:00:: 11720643 1 0 -tall_crowfoot%1:20:00:: 11720643 1 0 -tall_cupflower%1:20:00:: 12909068 1 0 -tall_field_buttercup%1:20:00:: 11720643 1 0 -tall_gallberry_holly%1:20:00:: 12758014 1 0 -tall_goldenrod%1:20:00:: 12018447 1 0 -tall_mallow%1:20:00:: 12171503 1 0 -tall_meadow_grass%1:20:00:: 12108871 1 0 -tall_oat_grass%1:20:00:: 12108871 1 0 -tall_oil%1:27:00:: 14968185 1 0 -tall_order%1:04:00:: 00797723 1 0 -tall_sunflower%1:20:00:: 11978961 1 0 -tall_tale%1:10:00:: 07221939 1 2 -tall_white_violet%1:20:00:: 12388652 1 0 -tall_yellow-eye%1:20:00:: 12605872 1 0 -tallahassee%1:15:00:: 09075170 1 0 -tallapoosa%1:17:00:: 09453887 1 0 -tallapoosa_river%1:17:00:: 09453887 1 0 -tallboy%1:06:00:: 03518305 1 0 -tallchief%1:18:00:: 11329507 1 0 -talleyrand%1:18:00:: 11329690 1 0 -tallgrass%1:20:00:: 12104238 1 0 -tallin%1:15:00:: 09012530 1 0 -tallinn%1:15:00:: 09012530 1 0 -tallis%1:06:00:: 03998333 2 0 -tallis%1:18:00:: 11329808 1 0 -tallish%5:00:00:tall:00 02386545 1 0 -tallith%1:06:00:: 03998333 1 0 -tallness%1:07:00:: 05137165 1 0 -tallness%1:07:01:: 05002540 2 0 -tallow%1:27:00:: 15062468 1 1 -tallow_oil%1:27:00:: 15066906 1 0 -tallulah_bankhead%1:18:00:: 10833304 1 0 -tally%1:04:00:: 00634586 3 0 -tally%1:04:01:: 00189565 1 4 -tally%1:10:00:: 06517779 2 0 -tally%2:32:00:: 00949288 4 0 -tally%2:32:01:: 00949841 3 0 -tally%2:33:00:: 01111816 2 0 -tally%2:42:00:: 02657219 1 0 -tally_clerk%1:18:00:: 10690268 1 0 -tallyman%1:18:01:: 10690268 2 0 -tallyman%1:18:02:: 10690421 1 0 -talmud%1:10:00:: 06462396 1 0 -talmudic_literature%1:10:00:: 06462219 1 0 -talon%1:05:00:: 02156413 1 0 -taloned%5:00:00:armed:02 00145883 1 0 -talpidae%1:05:00:: 01889328 1 0 -talus%1:08:00:: 05271383 2 0 -talus%1:17:00:: 09454153 1 0 -talwin%1:06:00:: 03912664 1 0 -tam%1:06:00:: 04387095 1 0 -tam-o'-shanter%1:06:00:: 04387095 1 0 -tam-tam%1:06:00:: 03447721 1 0 -tamable%5:00:00:tractable:00 02451828 1 0 -tamale%1:13:00:: 07879659 2 0 -tamale%1:15:00:: 08946812 1 0 -tamale_pie%1:13:00:: 07879821 1 0 -tamandu%1:05:00:: 02461128 1 0 -tamandua%1:05:00:: 02461128 1 0 -tamandua_tetradactyla%1:05:00:: 02461128 1 0 -tamanoir%1:05:00:: 02460451 1 0 -tamara_karsavina%1:18:00:: 11097208 1 0 -tamarack%1:20:00:: 11619227 1 0 -tamarao%1:05:00:: 02409202 1 0 -tamarau%1:05:00:: 02409202 1 0 -tamaricaceae%1:20:00:: 12386039 1 0 -tamarillo%1:20:00:: 12903014 1 0 -tamarin%1:05:00:: 02491107 1 0 -tamarind%1:13:00:: 07764630 2 0 -tamarind%1:20:00:: 12501202 1 0 -tamarind_tree%1:20:00:: 12501202 1 0 -tamarindo%1:13:00:: 07764630 2 0 -tamarindo%1:20:00:: 12501202 1 0 -tamarindus%1:20:00:: 12501035 1 0 -tamarindus_indica%1:20:00:: 12501202 1 0 -tamarisk%1:20:00:: 12386462 1 0 -tamarisk_family%1:20:00:: 12386039 1 0 -tamarisk_gerbil%1:05:00:: 02344270 1 0 -tamarix%1:20:00:: 12386263 1 0 -tambac%1:27:00:: 15075691 1 0 -tambala%1:23:00:: 13683342 1 0 -tambocor%1:06:00:: 03362393 1 0 -tambour%1:06:00:: 04387201 2 0 -tambour%1:06:01:: 04387261 1 0 -tambourine%1:06:00:: 04387400 1 0 -tamburlaine%1:18:00:: 11330026 1 0 -tame%2:30:00:: 00202445 1 1 -tame%2:30:01:: 00302464 3 0 -tame%2:30:02:: 00301856 5 0 -tame%2:30:04:: 00302130 4 0 -tame%2:32:00:: 00933566 2 0 -tame%3:00:01:: 02388145 3 0 -tame%3:00:02:: 02389946 2 0 -tame%5:00:00:docile:00 02328916 4 0 -tame%5:00:00:unexciting:00 00923232 1 1 -tameable%5:00:00:tractable:00 02451828 1 0 -tamed%3:00:04:: 02388145 1 0 -tamed%5:00:00:tame:01 02389099 2 0 -tamely%4:02:00:: 00473698 1 0 -tameness%1:07:01:: 04905842 2 0 -tameness%1:07:02:: 05206573 1 0 -tamer%1:18:00:: 10690538 1 0 -tamerlane%1:18:00:: 11330026 1 0 -tamias%1:05:00:: 02359775 1 0 -tamias_striatus%1:05:00:: 02359915 1 0 -tamiasciurus%1:05:00:: 02357280 1 0 -tamiasciurus_douglasi%1:05:00:: 02357585 1 0 -tamiasciurus_hudsonicus%1:05:00:: 02357401 1 0 -tamil%1:10:00:: 06980315 2 0 -tamil%1:18:00:: 09675393 1 0 -tamil%3:01:00:: 03122750 1 0 -tamil_eelam%1:15:00:: 08719892 1 0 -tamil_nadu%1:15:00:: 08905467 1 0 -tamil_tigers%1:14:00:: 08032023 1 0 -tamm%1:18:00:: 11330228 1 0 -tammany%1:14:00:: 08048042 1 0 -tammany_hall%1:14:00:: 08048042 1 0 -tammany_society%1:14:00:: 08048042 1 0 -tammerfors%1:15:00:: 08780380 1 0 -tammuz%1:18:00:: 09517492 2 0 -tammuz%1:28:00:: 15216386 1 0 -tammy%1:06:00:: 04387531 1 0 -tammy%1:06:02:: 04387095 2 0 -tammy_wynette%1:18:00:: 11400704 1 0 -tammy_wynetter_pugh%1:18:00:: 11400704 1 0 -tamoxifen%1:06:00:: 03298565 1 0 -tamp%1:06:00:: 04387706 1 0 -tamp%2:35:00:: 01574571 1 0 -tamp_down%2:35:00:: 01574571 1 0 -tampa%1:15:00:: 09075329 1 0 -tampa_bay%1:17:00:: 09454265 1 0 -tampax%1:06:00:: 04387932 1 0 -tamper%1:06:00:: 04387706 1 0 -tamper%2:35:12:: 01586018 1 1 -tamper%2:41:00:: 02539101 2 0 -tampere%1:15:00:: 08780380 1 0 -tampering%1:04:00:: 00201516 1 1 -tampico%1:15:00:: 08745901 1 0 -tamping_bar%1:06:00:: 04387706 1 0 -tampion%1:06:00:: 04388040 1 0 -tampon%1:06:00:: 04388162 1 0 -tampon%2:35:00:: 01423167 1 0 -tamponade%1:26:00:: 14508368 1 0 -tamponage%1:26:00:: 14508368 1 0 -tamus%1:20:00:: 12089625 1 0 -tamus_communis%1:20:00:: 12089846 1 0 -tan%1:07:00:: 04973020 2 1 -tan%1:24:00:: 13788035 3 0 -tan%1:26:00:: 14290534 1 1 -tan%2:29:00:: 00103875 2 0 -tan%2:30:00:: 00511430 1 0 -tan%5:00:00:chromatic:00 00384533 1 0 -tanacetum%1:20:00:: 12021120 1 0 -tanacetum_balsamita%1:20:00:: 12021499 1 0 -tanacetum_camphoratum%1:20:00:: 12021882 1 0 -tanacetum_cinerariifolium%1:20:00:: 12022382 1 0 -tanacetum_coccineum%1:20:00:: 12022054 1 0 -tanacetum_douglasii%1:20:00:: 12022821 1 0 -tanacetum_parthenium%1:20:00:: 12023108 1 0 -tanacetum_ptarmiciflorum%1:20:00:: 12023407 1 0 -tanacetum_vulgare%1:20:00:: 12023726 1 0 -tanach%1:10:00:: 06452363 1 0 -tanager%1:05:00:: 01597336 1 0 -tanakh%1:10:00:: 06452363 1 0 -tanbark%1:20:00:: 12265740 1 0 -tanbark_oak%1:20:00:: 12265394 1 0 -tancred%1:18:00:: 11330346 1 0 -tandearil%1:06:00:: 03869044 1 0 -tandem%1:06:00:: 02835271 2 0 -tandem%1:07:00:: 05083567 1 0 -tandem%4:02:00:: 00257634 1 0 -tandem_bicycle%1:06:00:: 02835271 1 0 -tandem_trailer%1:06:00:: 04388372 1 0 -tandoor%1:06:00:: 04388473 1 0 -tandy%1:18:00:: 11330504 1 0 -tanekaha%1:20:00:: 11650307 1 0 -taney%1:18:00:: 11330692 1 0 -tang%1:05:01:: 01403595 7 0 -tang%1:05:02:: 01403713 6 0 -tang%1:05:03:: 01405107 5 0 -tang%1:05:04:: 01405250 4 0 -tang%1:07:00:: 04993108 1 1 -tang%1:09:00:: 05715864 3 0 -tang%1:14:00:: 08158920 2 0 -tang_dynasty%1:14:00:: 08158920 1 0 -tanga%1:15:00:: 09035951 2 0 -tanga%1:23:00:: 13702620 1 0 -tanganyika%1:15:00:: 09035305 2 0 -tanganyika%1:17:00:: 09333512 1 0 -tange%1:18:00:: 11330963 1 0 -tangelo%1:13:00:: 07748574 2 0 -tangelo%1:20:00:: 12711182 1 0 -tangelo_tree%1:20:00:: 12711182 1 0 -tangency%1:06:00:: 03093792 2 0 -tangency%1:26:00:: 14420074 1 0 -tangent%1:24:00:: 13788035 2 0 -tangent%1:25:00:: 13871134 1 18 -tangent_plane%1:25:00:: 13862144 1 0 -tangential%3:01:00:: 02808830 2 0 -tangential%5:00:00:irrelevant:00 01976360 1 1 -tangentially%4:02:00:: 00144193 1 0 -tangerine%1:07:00:: 04965574 3 0 -tangerine%1:13:00:: 07748416 2 0 -tangerine%1:20:00:: 12710295 1 0 -tangerine%5:00:00:chromatic:00 00384694 1 0 -tangerine_tree%1:20:00:: 12710295 1 0 -tangibility%1:07:00:: 04760024 1 0 -tangible%3:00:00:: 02391455 1 1 -tangible%3:00:02:: 02392134 3 0 -tangible%3:00:04:: 01717117 4 0 -tangible%5:00:00:concrete:00 00013662 2 1 -tangible_possession%1:21:00:: 13244753 1 0 -tangibleness%1:07:00:: 04760024 1 0 -tangibly%4:02:00:: 00473835 1 1 -tangier%1:15:00:: 08970611 1 0 -tangier_pea%1:20:00:: 12542043 1 0 -tangier_peavine%1:20:00:: 12542043 1 0 -tangiers%1:15:00:: 08970611 1 0 -tanginess%1:07:00:: 04993108 1 0 -tangle%1:09:00:: 05685879 2 1 -tangle%1:17:00:: 09454412 1 2 -tangle%2:35:00:: 01462928 4 0 -tangle%2:35:01:: 01474034 3 0 -tangle%2:35:03:: 01521124 2 0 -tangle%2:42:00:: 02677797 1 0 -tangle_orchid%1:20:00:: 12078747 1 0 -tangle_with%2:42:00:: 02636810 1 2 -tanglebush%1:20:00:: 12302692 1 0 -tangled%3:00:00:: 00255057 1 5 -tangled%5:00:00:complex:00 02176841 2 2 -tango%1:04:00:: 00537423 1 2 -tango%1:10:00:: 07057829 2 0 -tango%2:38:00:: 01896007 1 0 -tangor%1:20:00:: 12710917 1 0 -tangram%1:06:00:: 04388574 1 0 -tangshan%1:15:00:: 08728749 1 0 -tanguy%1:18:00:: 11331063 1 0 -tangy%5:00:00:sour:00 02369460 1 0 -tank%1:06:00:: 04388743 2 3 -tank%1:06:01:: 04389033 1 7 -tank%1:06:02:: 04389521 4 0 -tank%1:06:03:: 03102771 5 0 -tank%1:23:00:: 13770529 3 0 -tank%2:30:00:: 00185348 3 0 -tank%2:34:00:: 01171563 2 0 -tank%2:40:00:: 02282082 1 0 -tank_car%1:06:00:: 04389521 1 0 -tank_circuit%1:06:00:: 04389637 1 0 -tank_destroyer%1:06:00:: 04389718 1 0 -tank_driver%1:18:00:: 10690648 1 0 -tank_engine%1:06:00:: 04389854 1 0 -tank_farm%1:15:00:: 08660817 1 0 -tank_farming%1:04:00:: 00918976 1 0 -tank_furnace%1:06:00:: 04390156 1 0 -tank_iron%1:06:00:: 04390338 1 0 -tank_locomotive%1:06:00:: 04389854 1 0 -tank_shell%1:06:00:: 04390483 1 0 -tank_ship%1:06:00:: 03845190 1 0 -tank_suit%1:06:00:: 03710721 1 0 -tank_top%1:06:00:: 04390577 1 0 -tanka%1:06:00:: 04389340 2 0 -tanka%1:10:00:: 06381594 1 0 -tankage%1:04:00:: 00812055 3 0 -tankage%1:21:00:: 13326103 2 0 -tankage%1:23:00:: 13763970 1 0 -tankard%1:06:00:: 04389430 1 0 -tanker%1:06:00:: 03845190 1 1 -tanker%1:18:00:: 10690648 2 0 -tanker_plane%1:06:00:: 04389999 1 0 -tankful%1:23:00:: 13770529 1 0 -tanned%3:00:00:: 01659355 2 0 -tanned%5:00:00:brunet:00 00244958 1 1 -tannenberg%1:04:00:: 01296505 1 0 -tanner%1:18:00:: 10690742 2 0 -tanner%1:21:00:: 13391452 1 0 -tanner's_cassia%1:20:00:: 12499757 1 0 -tannery%1:06:00:: 04390759 1 0 -tannia%1:20:00:: 11793403 1 0 -tannic%3:01:00:: 03122923 1 0 -tannic_acid%1:27:00:: 15067025 1 0 -tannin%1:27:00:: 15067025 1 0 -tanning%1:04:00:: 00927062 3 0 -tanning%1:04:01:: 01163047 2 0 -tanning%1:22:00:: 13565622 1 0 -tannish%5:00:00:chromatic:00 00384615 1 0 -tannoy%1:06:00:: 04390873 1 0 -tanoan%1:10:00:: 06920497 1 0 -tanoan_language%1:10:00:: 06920497 1 0 -tansy%1:20:00:: 12023726 1 0 -tansy-leaved_rocket%1:20:00:: 11889205 1 0 -tansy-scented%5:00:00:odorous:00 01057447 1 0 -tansy-smelling%5:00:00:odorous:00 01057447 1 0 -tansy_leaf_aster%1:20:00:: 11993203 1 0 -tansy_mustard%1:20:00:: 11884967 1 0 -tansy_ragwort%1:20:00:: 12012253 1 0 -tantalise%2:32:00:: 00850501 1 0 -tantaliser%1:18:00:: 10690849 1 0 -tantalising%5:00:01:inviting:00 01358695 2 0 -tantalising%5:00:02:inviting:00 01358846 1 0 -tantalite%1:27:00:: 15067375 1 0 -tantalization%1:04:00:: 00425905 1 0 -tantalize%2:32:00:: 00850501 1 1 -tantalizer%1:18:00:: 10690849 1 0 -tantalizing%5:00:01:inviting:00 01358695 2 1 -tantalizing%5:00:02:inviting:00 01358846 1 1 -tantalizingly%4:02:00:: 00195907 1 1 -tantalum%1:27:00:: 14656666 1 0 -tantalus%1:18:00:: 09593651 1 0 -tantamount%5:00:00:equal:00 00890351 1 0 -tantilla%1:05:00:: 01738965 1 0 -tantra%1:09:00:: 06242427 2 0 -tantra%1:10:00:: 06464241 1 0 -tantric%3:01:00:: 02926025 1 0 -tantrik%3:01:00:: 02926025 1 0 -tantrism%1:09:00:: 06242427 2 0 -tantrism%1:14:00:: 08099647 1 0 -tantrist%1:18:00:: 09684476 1 0 -tantrum%1:26:00:: 14406303 1 1 -tanzania%1:15:00:: 09034550 1 0 -tanzanian%1:18:00:: 09734185 1 0 -tanzanian%3:01:00:: 03123013 1 0 -tanzanian_monetary_unit%1:23:00:: 13706993 1 0 -tanzanian_shilling%1:23:00:: 13707106 1 0 -tanzim%1:14:00:: 08020785 1 0 -tanzimul_fuqra%1:14:00:: 08026539 1 0 -tao%1:09:00:: 06242970 2 0 -tao%1:18:00:: 09848285 1 0 -taoiseach%1:18:00:: 10691052 1 0 -taoism%1:09:01:: 05977340 4 0 -taoism%1:09:02:: 06243096 3 0 -taoism%1:14:00:: 08098346 2 0 -taoism%1:14:02:: 08098499 1 0 -taoist%1:18:00:: 09848285 1 0 -taoist%3:01:01:: 02925492 2 0 -taoist%3:01:02:: 02925655 1 0 -taoist_trinity%1:18:00:: 09533498 1 0 -taos%1:15:00:: 09116599 2 0 -taos%1:18:00:: 09670170 1 0 -tap%1:04:00:: 00125436 8 0 -tap%1:04:01:: 00654400 7 0 -tap%1:06:00:: 04559451 3 0 -tap%1:06:01:: 04390977 6 0 -tap%1:06:02:: 04391158 5 0 -tap%1:06:03:: 04391276 4 0 -tap%1:11:00:: 07388987 1 3 -tap%1:11:01:: 07410021 2 0 -tap%2:32:00:: 00782057 12 0 -tap%2:34:00:: 01164273 4 3 -tap%2:35:00:: 01247804 3 3 -tap%2:35:02:: 01403314 1 6 -tap%2:35:04:: 01613732 11 0 -tap%2:38:00:: 01901021 8 0 -tap%2:38:01:: 01895757 9 0 -tap%2:38:04:: 01854519 10 0 -tap%2:39:00:: 02188848 5 1 -tap%2:39:01:: 02185373 7 0 -tap%2:40:00:: 02312318 2 3 -tap%2:40:04:: 02360274 6 0 -tap-off%1:04:00:: 00481666 1 0 -tap_dance%1:04:00:: 00527872 1 0 -tap_dance%2:36:00:: 01710048 1 0 -tap_dancer%1:18:00:: 10691148 1 0 -tap_dancing%1:04:00:: 00527872 1 0 -tap_house%1:06:00:: 04395875 1 0 -tap_out%2:38:00:: 01880560 1 0 -tap_water%1:13:00:: 07936177 1 0 -tap_wrench%1:06:00:: 04393913 1 0 -tapa%1:06:00:: 04391445 2 0 -tapa%1:20:00:: 13162945 1 0 -tapa_bark%1:20:00:: 13162945 1 0 -tapdance%2:38:00:: 01895757 1 0 -tape%1:06:00:: 04391569 1 10 -tape%1:06:01:: 04391838 2 2 -tape%1:06:03:: 04392113 4 0 -tape%1:06:04:: 03708036 5 0 -tape%1:15:00:: 08683986 3 0 -tape%2:32:00:: 00998399 3 0 -tape%2:32:03:: 01003049 2 0 -tape%2:35:00:: 01331818 1 0 -tape-recorded%5:00:00:recorded:00 01423592 1 0 -tape_cartridge%1:06:00:: 04392370 1 0 -tape_deck%1:06:00:: 04392526 1 0 -tape_drive%1:06:00:: 04392764 1 0 -tape_grass%1:20:00:: 12615232 1 0 -tape_machine%1:06:00:: 04393095 1 0 -tape_measure%1:06:00:: 04392113 1 0 -tape_player%1:06:00:: 04392985 1 0 -tape_record%2:32:00:: 00999270 1 0 -tape_recorder%1:06:00:: 04393095 1 1 -tape_recording%1:06:00:: 04391838 1 0 -tape_transport%1:06:00:: 04392764 1 0 -taped%5:00:00:fixed:00 01060570 1 1 -taped%5:00:00:recorded:00 01423592 2 0 -tapeline%1:06:00:: 04392113 1 0 -tapenade%1:13:00:: 07858336 1 0 -taper%1:06:00:: 02948072 4 0 -taper%1:06:01:: 04581829 3 0 -taper%1:07:00:: 05071368 2 0 -taper%1:25:00:: 13902793 1 0 -taper%2:30:00:: 00392960 2 0 -taper%2:30:02:: 00152762 1 1 -taper_file%1:06:00:: 04393301 1 0 -taper_off%2:30:00:: 00305417 2 0 -taper_off%2:42:00:: 02683671 1 1 -tapered%5:00:00:narrow:00 02562909 1 0 -tapering%1:04:00:: 00353611 1 0 -tapering%5:00:00:decreasing:00 02537513 2 0 -tapering%5:00:00:narrow:00 02562909 1 0 -tapering_off%5:00:00:decreasing:00 02537513 1 0 -tapestried%5:00:00:adorned:00 00059965 1 0 -tapestry%1:06:00:: 04393404 3 0 -tapestry%1:06:01:: 04393549 2 0 -tapestry%1:07:00:: 04767023 1 1 -tapestry_moth%1:05:00:: 02292692 1 0 -tapeworm%1:05:00:: 01927456 1 0 -tapeworm_infection%1:26:00:: 14185620 1 0 -taphephobia%1:26:00:: 14384509 1 0 -taphouse%1:06:00:: 04018399 1 0 -taping%1:06:00:: 04391838 1 0 -tapioca%1:13:00:: 07619881 1 0 -tapioca_plant%1:20:00:: 12926689 1 0 -tapioca_pudding%1:13:00:: 07620047 1 0 -tapir%1:05:00:: 02393580 1 0 -tapiridae%1:05:00:: 02393300 1 0 -tapirus%1:05:00:: 02393445 1 0 -tapirus_indicus%1:05:00:: 02393940 1 0 -tapirus_terrestris%1:05:00:: 02393807 1 0 -tapis%1:06:00:: 04393549 1 0 -tapotement%1:04:00:: 00660324 1 0 -tappa%1:06:00:: 04391445 2 0 -tappa%1:20:00:: 13162945 1 0 -tappa_bark%1:20:00:: 13162945 1 0 -tappan%1:18:00:: 11331192 1 0 -tappan_zee_bridge%1:06:00:: 04393681 1 0 -tapped%3:00:00:: 01659577 1 0 -tapper%1:18:00:: 10691318 4 0 -tapper%1:18:01:: 10691764 1 0 -tapper%1:18:02:: 10691485 3 0 -tapper%1:18:03:: 10691148 5 0 -tapper%1:18:04:: 10691600 2 0 -tappet%1:06:00:: 04393808 1 0 -tappet_wrench%1:06:00:: 03848168 1 0 -tapping%1:11:00:: 07396658 1 2 -taproom%1:06:00:: 02796995 1 0 -taproot%1:09:00:: 05834946 2 0 -taproot%1:20:00:: 13126050 1 0 -taps%1:10:00:: 06804483 1 0 -tapster%1:18:00:: 10691764 1 0 -tar%1:18:00:: 10294602 2 0 -tar%1:27:00:: 14911704 1 1 -tar%2:35:00:: 01272457 1 0 -tar-and-feather%2:35:00:: 01272582 1 0 -tar-wood%1:20:01:: 11655592 1 0 -tar-wood%1:20:02:: 11654438 2 0 -tar_heel_state%1:15:00:: 09126305 1 0 -tar_paper%1:27:00:: 14976001 1 0 -tar_pit%1:17:00:: 09454744 1 0 -tara%1:15:00:: 08889784 1 0 -tara_vine%1:20:00:: 12371202 1 0 -tarabulus%1:15:00:: 08957993 1 0 -tarabulus_al-gharb%1:15:00:: 08960099 1 0 -tarabulus_ash-sham%1:15:00:: 08957993 1 0 -taracahitian%1:18:00:: 09670280 1 0 -taradiddle%1:10:00:: 06757057 1 0 -taradiddle%1:10:02:: 06611147 2 0 -tarahumara%1:18:00:: 09670521 1 0 -tarahumara_frog%1:05:00:: 01642391 1 0 -taraktagenos%1:20:00:: 12379278 1 0 -taraktagenos_kurzii%1:20:00:: 12379531 1 0 -taraktogenos%1:20:00:: 12379278 1 0 -taraktogenos_kurzii%1:20:00:: 12379531 1 0 -tarantella%1:04:00:: 00533805 2 0 -tarantella%1:10:00:: 07057948 1 0 -tarantelle%1:04:00:: 00533805 1 0 -tarantino%1:18:00:: 11331300 1 0 -tarantism%1:26:00:: 14095742 1 0 -tarantula%1:05:01:: 01774750 2 0 -tarantula%1:05:02:: 01775370 1 0 -taras_grigoryevich_shevchenko%1:18:00:: 11298519 1 0 -tarawa%1:04:00:: 01296697 2 0 -tarawa%1:15:00:: 08840964 1 0 -tarawa-makin%1:04:00:: 01296697 1 0 -taraxacum%1:20:00:: 12023996 1 0 -taraxacum_kok-saghyz%1:20:00:: 12024805 1 0 -taraxacum_officinale%1:20:00:: 12024445 1 0 -taraxacum_ruderalia%1:20:00:: 12024445 1 0 -tarbell%1:18:00:: 11331442 1 0 -tarboosh%1:06:00:: 03331077 1 0 -tarchanoff_phenomenon%1:04:00:: 00860011 1 0 -tardigrada%1:05:00:: 01783936 1 0 -tardigrade%1:05:00:: 01784293 1 0 -tardily%4:02:00:: 00161630 1 0 -tardily%4:02:01:: 00100267 2 0 -tardiness%1:07:00:: 05047956 1 0 -tardive%5:00:00:late:02 00819709 1 0 -tardive_dyskinesia%1:26:00:: 14092704 1 0 -tardy%5:00:00:unpunctual:00 01901186 1 0 -tare%1:06:00:: 04394031 5 0 -tare%1:07:00:: 05028429 4 0 -tare%1:20:01:: 12575679 2 0 -tare%1:20:02:: 12125183 3 0 -tare%1:21:00:: 13275137 1 0 -tareekh_e_kasas%1:14:00:: 08045428 1 0 -taret_organ%1:08:01:: 05516230 1 0 -target%1:06:00:: 04394261 4 3 -target%1:09:00:: 05981230 5 2 -target%1:10:00:: 07262108 1 6 -target%1:15:00:: 08660934 3 4 -target%1:18:00:: 10470460 2 4 -target%2:33:00:: 01150559 1 0 -target-hunting%5:00:00:guided:00 01429260 1 1 -target_acquisition_system%1:06:00:: 04394421 1 0 -target_area%1:15:00:: 08660934 1 2 -target_cell%1:08:00:: 05455206 2 0 -target_cell%1:08:01:: 05608206 1 0 -target_company%1:14:00:: 08076075 1 0 -target_language%1:10:01:: 06284067 1 1 -target_language%1:10:02:: 06900507 2 0 -target_organ%1:08:00:: 05516067 1 0 -target_practice%1:04:00:: 00898425 1 1 -target_program%1:10:00:: 06576893 1 0 -target_range%1:06:00:: 03349150 1 0 -tarheel%1:18:00:: 09744834 1 0 -taricha%1:05:00:: 01631035 1 0 -taricha_granulosa%1:05:00:: 01631354 1 0 -taricha_torosa%1:05:00:: 01631512 1 0 -tariff%1:21:00:: 13315999 1 2 -tariff%2:40:00:: 02307993 1 0 -tarkovsky%1:18:00:: 11331669 1 0 -tarmac%1:06:00:: 04394630 2 0 -tarmac%1:27:00:: 14977188 1 0 -tarmac%2:35:00:: 01603418 1 0 -tarmacadam%1:06:00:: 04394630 2 0 -tarmacadam%1:27:00:: 14977188 1 0 -tarn%1:17:00:: 09454642 1 0 -tarnish%1:07:00:: 04695963 1 0 -tarnish%2:35:00:: 01537409 1 1 -tarnished_plant_bug%1:05:00:: 02238358 1 0 -taro%1:13:00:: 07736813 3 0 -taro%1:20:00:: 11786539 2 0 -taro%1:20:02:: 11786843 1 0 -taro_plant%1:20:00:: 11786539 1 0 -taro_root%1:13:00:: 07736813 1 0 -tarot%1:06:00:: 04394821 1 0 -tarot_card%1:06:00:: 04394821 1 0 -tarp%1:06:00:: 04395024 1 0 -tarpan%1:05:00:: 02381609 1 0 -tarpaulin%1:06:00:: 04395024 1 2 -tarpon%1:05:00:: 02541687 1 0 -tarpon_atlanticus%1:05:00:: 02541687 1 0 -tarquin%1:18:00:: 11331804 1 0 -tarquin_the_proud%1:18:00:: 11331804 1 0 -tarquinius%1:18:00:: 11331804 1 0 -tarquinius_superbus%1:18:00:: 11331804 1 0 -tarradiddle%1:10:00:: 06757057 1 0 -tarradiddle%1:10:02:: 06611147 2 0 -tarragon%1:13:00:: 07821610 2 0 -tarragon%1:20:00:: 11930203 1 0 -tarred-and-feathered%5:00:00:punished:00 01902003 1 1 -tarriance%1:04:00:: 01068423 1 0 -tarrietia%1:20:00:: 12201166 1 0 -tarrietia_argyrodendron%1:20:00:: 12201331 1 0 -tarry%2:38:00:: 02011560 2 0 -tarry%2:42:00:: 02639075 1 1 -tarry%5:00:00:adhesive:00 00054364 1 0 -tarsal%1:08:00:: 05281874 1 0 -tarsal%3:01:00:: 03123143 1 0 -tarsal_bone%1:08:00:: 05281874 1 0 -tarsal_gland%1:08:00:: 05328508 1 0 -tarsier%1:05:00:: 02501583 1 0 -tarsiidae%1:05:00:: 02501275 1 0 -tarsioidea%1:05:00:: 02501101 1 0 -tarsitis%1:26:00:: 14356497 1 0 -tarsius%1:05:00:: 02501432 1 0 -tarsius_glis%1:05:00:: 02502006 1 0 -tarsius_syrichta%1:05:00:: 02501923 1 0 -tarsus%1:08:00:: 05594822 1 0 -tart%1:13:00:: 07623933 2 0 -tart%1:13:01:: 07623664 3 0 -tart%1:18:00:: 10485440 1 0 -tart%5:00:00:sour:00 02369460 1 1 -tart%5:00:00:unpleasant:00 01804728 2 0 -tart_up%2:29:00:: 00044037 2 0 -tart_up%2:36:00:: 01678140 1 0 -tartan%1:06:00:: 04395106 1 0 -tartar%1:17:00:: 09454925 4 0 -tartar%1:18:00:: 10029729 2 0 -tartar%1:18:01:: 09644657 3 0 -tartar%1:27:00:: 15013269 1 0 -tartar_emetic%1:27:00:: 14955391 1 0 -tartar_sauce%1:13:00:: 07831450 1 0 -tartar_steak%1:13:00:: 07877675 1 0 -tartare_sauce%1:13:00:: 07831450 1 0 -tartarean%5:00:00:infernal:00 01304081 1 0 -tartarian_honeysuckle%1:20:00:: 12676940 1 0 -tartaric%3:01:00:: 03123296 1 0 -tartaric_acid%1:27:00:: 15067576 1 0 -tartarus%1:09:00:: 05630277 1 0 -tartary%1:15:00:: 08968390 1 0 -tartlet%1:13:00:: 07624339 1 0 -tartly%4:02:00:: 00473941 1 1 -tartness%1:07:00:: 04994126 2 0 -tartness%1:07:01:: 04643397 3 0 -tartness%1:09:00:: 05716744 1 0 -tartrate%1:27:00:: 14955559 1 0 -tartu%1:15:00:: 09012735 1 0 -tartufe%1:18:00:: 10691937 1 0 -tartuffe%1:18:00:: 10691937 1 0 -tarweed%1:20:01:: 11994150 1 0 -tarweed%1:20:02:: 11973341 2 0 -tarwood%1:20:01:: 11655592 1 0 -tarwood%1:20:02:: 11654438 2 0 -tarzan%1:18:00:: 09603761 2 0 -tarzan%1:18:01:: 10692090 1 0 -tarzan_of_the_apes%1:18:00:: 09603761 1 0 -tashkent%1:15:00:: 09022538 1 0 -tashmit%1:18:00:: 09522121 1 0 -tashmitum%1:18:00:: 09522121 1 0 -tashunca-uitco%1:18:00:: 10914779 1 0 -task%1:04:00:: 00719705 2 15 -task%1:04:01:: 00795720 1 18 -task%2:34:00:: 01166237 2 0 -task%2:41:00:: 02392600 1 0 -task_force%1:14:00:: 08190609 1 3 -task_force%1:14:01:: 08208444 2 0 -taskent%1:15:00:: 09022538 1 0 -taskmaster%1:18:00:: 10692269 1 0 -taskmistress%1:18:00:: 10692405 1 0 -tasman%1:18:00:: 11332068 1 0 -tasman_dwarf_pine%1:20:00:: 11657153 1 0 -tasman_sea%1:17:00:: 09455046 1 0 -tasmania%1:15:00:: 08833981 2 0 -tasmania%1:15:01:: 08834123 1 0 -tasmanian%3:01:00:: 02809010 1 0 -tasmanian_devil%1:05:00:: 01884834 1 0 -tasmanian_tiger%1:05:00:: 01884476 1 0 -tasmanian_wolf%1:05:00:: 01884476 1 0 -tasse%1:06:00:: 04395332 1 0 -tassel%1:06:00:: 04395201 1 0 -tassel-shaped%5:00:00:formed:00 02150489 1 0 -tassel_flower%1:20:01:: 11823572 3 0 -tassel_flower%1:20:02:: 11963305 2 0 -tassel_flower%1:20:03:: 11963572 1 0 -tassel_hyacinth%1:20:00:: 12461109 1 0 -tasseled%5:00:00:adorned:00 00060053 1 0 -tasselled%5:00:00:adorned:00 00060053 1 0 -tasset%1:06:00:: 04395332 1 0 -tasso%1:18:00:: 11332250 1 0 -taste%1:04:00:: 00882702 7 0 -taste%1:09:01:: 05749619 3 3 -taste%1:09:02:: 05715283 1 8 -taste%1:09:04:: 05658226 6 0 -taste%1:11:00:: 07288024 4 1 -taste%1:12:02:: 07498210 2 7 -taste%1:13:00:: 07578879 5 0 -taste%2:31:05:: 00597061 6 0 -taste%2:34:00:: 01195299 3 3 -taste%2:39:00:: 02191546 2 3 -taste%2:39:01:: 02192992 5 0 -taste%2:39:02:: 02194286 1 10 -taste%2:39:12:: 02194495 4 0 -taste-maker%1:18:00:: 10728233 1 0 -taste-tester%1:18:00:: 10692482 1 0 -taste_bud%1:08:00:: 05305136 1 0 -taste_cell%1:08:00:: 05305389 1 0 -taste_perception%1:09:00:: 05715283 1 0 -taste_property%1:07:00:: 04992163 1 0 -taste_sensation%1:09:00:: 05715283 1 0 -taste_tester%1:18:00:: 10692482 1 0 -tastebud%1:08:00:: 05305136 1 0 -tasteful%3:00:02:: 02392878 1 1 -tasteful%5:00:00:elegant:00 00850648 2 0 -tastefully%4:02:00:: 00474062 1 0 -tastefulness%1:07:00:: 04813395 1 0 -tasteless%3:00:01:: 02399399 1 0 -tasteless%3:00:02:: 02393401 2 0 -tastelessly%4:02:00:: 00474217 1 0 -tastelessness%1:07:01:: 04818284 2 0 -tastelessness%1:07:02:: 04997032 1 0 -taster%1:18:00:: 10692482 1 0 -tastily%4:02:00:: 00474385 1 0 -tastily%4:02:01:: 00474062 2 0 -tastiness%1:07:00:: 04995421 1 0 -tasting%1:04:00:: 00882702 2 0 -tasting%1:04:02:: 00841901 3 0 -tasting%1:09:00:: 05822612 1 0 -tasty%3:00:00:: 02395115 1 0 -tat%1:04:00:: 01008097 2 0 -tat%1:07:00:: 04818460 1 0 -tat%2:36:00:: 01674544 1 1 -tatahumara%1:10:00:: 06919023 1 0 -tatar%1:10:00:: 06927228 3 0 -tatar%1:18:00:: 09644332 2 0 -tatar%1:18:01:: 09644657 1 0 -tatary%1:15:00:: 08968390 1 0 -tate%1:18:00:: 11332423 1 0 -tater%1:13:00:: 07710616 1 0 -tati%1:18:00:: 11332572 1 0 -tatou%1:05:00:: 02456008 1 0 -tatouay%1:05:00:: 02455428 1 0 -tatter%1:06:00:: 04045941 1 0 -tatterdemalion%1:18:00:: 10504664 1 0 -tatterdemalion%5:00:00:worn:00 02583619 1 0 -tatterdemalion%5:00:01:damaged:00 00679717 2 0 -tattered%5:00:00:destroyed:00 00736671 2 0 -tattered%5:00:01:worn:00 02583619 1 35 -tattily%4:02:00:: 00334210 1 0 -tatting%1:04:00:: 00909672 2 0 -tatting%1:06:00:: 04395495 1 0 -tattle%1:10:00:: 06805297 1 0 -tattle%2:32:00:: 01036804 1 0 -tattle%2:32:01:: 00937208 2 0 -tattler%1:05:00:: 02030287 2 0 -tattler%1:18:00:: 10692696 1 0 -tattletale%1:18:00:: 10692696 1 0 -tattletale_gray%1:07:00:: 04962689 1 0 -tattletale_grey%1:07:00:: 04962689 1 1 -tattling%5:00:00:communicative:00 00496259 1 0 -tattoo%1:04:00:: 00263353 3 0 -tattoo%1:06:00:: 04395651 2 0 -tattoo%1:10:00:: 06805497 1 0 -tattoo%2:36:00:: 01681333 1 0 -tatty%5:00:00:tasteless:02 02393791 2 0 -tatty%5:00:00:worn:00 02583043 1 0 -tatu%1:05:00:: 02456008 1 0 -tatum%1:18:00:: 11332688 2 0 -tatum%1:18:01:: 11332892 1 0 -tau%1:10:00:: 06836059 1 0 -tau-minus_particle%1:17:00:: 09455206 1 0 -tau-plus_particle%1:17:00:: 09200419 1 0 -tau_coefficient_of_correlation%1:09:00:: 06035213 1 0 -tau_cross%1:06:00:: 04395760 1 0 -taunt%1:04:00:: 01222859 1 3 -taunt%2:32:00:: 00850501 1 5 -taunting%1:04:00:: 01222859 1 0 -taunting%5:00:00:disrespectful:00 01995596 1 1 -tauntingly%4:02:00:: 00474487 1 0 -tauon%1:17:00:: 09455206 1 0 -taupe%1:07:00:: 04974774 1 0 -taupe%5:00:00:chromatic:00 00375090 1 0 -taurine%1:27:00:: 14656926 1 0 -taurine%3:01:00:: 02809128 1 0 -tauromachy%1:04:00:: 00452034 1 0 -taurotragus%1:05:00:: 02426634 1 0 -taurotragus_derbianus%1:05:00:: 02427183 1 0 -taurotragus_oryx%1:05:00:: 02427032 1 0 -taurus%1:15:00:: 08686332 4 0 -taurus%1:17:00:: 09455306 3 0 -taurus%1:18:00:: 09752381 2 0 -taurus%1:18:01:: 11201386 1 0 -taurus_the_bull%1:15:00:: 08686332 1 0 -taut%5:00:00:tense:01 02403505 1 4 -taut%5:00:00:tense:03 02405959 2 1 -tauten%2:30:00:: 00420549 1 0 -tauten%2:30:01:: 00420434 2 0 -tautly%4:02:00:: 00474656 1 0 -tautness%1:07:00:: 04776940 2 0 -tautness%1:26:00:: 14544335 1 0 -tautog%1:05:00:: 02610066 1 0 -tautoga%1:05:00:: 02609951 1 0 -tautoga_onitis%1:05:00:: 02610066 1 0 -tautogolabrus%1:05:00:: 02610234 1 0 -tautogolabrus_adspersus%1:05:00:: 02610373 1 0 -tautologic%5:00:00:prolix:00 00549826 1 0 -tautological%5:00:00:prolix:00 00549826 1 0 -tautology%1:10:00:: 07091214 2 0 -tautology%1:10:01:: 07091385 1 0 -tavern%1:06:00:: 04395875 1 2 -tavern_keeper%1:18:00:: 10490421 1 0 -taw%1:06:00:: 04396093 2 0 -taw%1:10:00:: 06839083 1 0 -tawdrily%4:02:00:: 00347009 1 0 -tawdriness%1:07:00:: 04818700 1 0 -tawdry%5:00:00:inferior:02 02346351 2 0 -tawdry%5:00:00:tasteless:02 02393791 1 1 -tawney%1:18:00:: 11333071 1 0 -tawniness%1:07:00:: 04978050 1 0 -tawny%5:00:00:chromatic:00 00384782 1 1 -tawny-brown%5:00:00:chromatic:00 00384782 1 0 -tawny-colored%5:00:00:colored:00 00401028 1 0 -tawny-coloured%5:00:00:colored:00 00401028 1 0 -tawny_eagle%1:05:00:: 01614556 1 0 -tawny_owl%1:05:00:: 01622959 1 0 -tawse%1:06:00:: 04396226 1 0 -tax%1:21:00:: 13308999 1 44 -tax%2:32:00:: 00844161 4 0 -tax%2:34:00:: 01166237 3 0 -tax%2:40:00:: 02307547 1 16 -tax%2:40:01:: 02308389 2 0 -tax-exempt%1:21:00:: 13417289 1 0 -tax-exempt%5:00:00:nontaxable:00 02401288 1 1 -tax-exempt_security%1:21:00:: 13417289 1 0 -tax-free%5:00:00:nontaxable:00 02401288 1 0 -tax-increase%1:07:00:: 05110988 1 0 -tax_advantage%1:21:00:: 13313591 1 1 -tax_assessment%1:07:00:: 05146178 1 0 -tax_assessor%1:18:00:: 10692883 1 0 -tax_avoidance%1:04:00:: 01079951 1 0 -tax_base%1:21:00:: 13309776 1 0 -tax_benefit%1:21:00:: 13298537 1 0 -tax_bill%1:10:00:: 06517867 1 0 -tax_boost%1:07:00:: 05110988 1 0 -tax_bracket%1:14:00:: 08006250 1 0 -tax_break%1:21:00:: 13298537 1 0 -tax_collection%1:04:00:: 01016748 1 0 -tax_collector%1:18:00:: 10693052 1 0 -tax_credit%1:21:00:: 13378968 1 0 -tax_cut%1:04:00:: 00353100 1 0 -tax_deduction%1:21:00:: 13329047 1 0 -tax_evasion%1:04:00:: 00741797 1 0 -tax_form%1:10:00:: 06476384 1 0 -tax_haven%1:15:00:: 08661170 1 0 -tax_hike%1:07:00:: 05110988 1 0 -tax_income%1:21:00:: 13261916 1 0 -tax_law%1:14:00:: 08456619 1 0 -tax_liability%1:21:00:: 13309956 1 0 -tax_lien%1:21:00:: 13402690 1 0 -tax_policy%1:09:00:: 05901410 1 0 -tax_program%1:09:00:: 05901410 1 0 -tax_rate%1:21:00:: 13309865 1 0 -tax_return%1:10:00:: 06548671 1 2 -tax_revenue%1:21:00:: 13261916 1 0 -tax_shelter%1:21:00:: 13313733 1 0 -tax_system%1:09:00:: 05904010 1 0 -tax_write-off%1:21:00:: 13329047 1 0 -taxability%1:26:00:: 14530563 1 0 -taxable%3:00:00:: 02400218 1 1 -taxaceae%1:20:00:: 11660979 1 0 -taxales%1:20:00:: 11660848 1 0 -taxation%1:04:00:: 01160170 3 0 -taxation%1:21:00:: 13308999 1 0 -taxation%1:21:01:: 13261916 2 0 -taxer%1:18:00:: 10693235 1 0 -taxi%1:06:00:: 02930766 1 5 -taxi%2:38:00:: 01949007 2 0 -taxi%2:38:01:: 01948872 1 2 -taxi_dancer%1:18:00:: 10693334 1 0 -taxi_fare%1:21:00:: 13308543 1 0 -taxi_rank%1:15:00:: 08517966 1 0 -taxi_strip%1:06:00:: 04396466 1 1 -taxicab%1:06:00:: 02930766 1 0 -taxidea%1:05:00:: 02447591 1 0 -taxidea_taxus%1:05:00:: 02447762 1 0 -taxidermist%1:18:00:: 10693459 1 0 -taxidermy%1:09:00:: 05636402 1 0 -taxidriver%1:18:00:: 10693646 1 1 -taximan%1:18:00:: 10693646 1 0 -taximeter%1:06:00:: 04396335 1 0 -taxing%5:00:00:heavy:02 01189109 1 1 -taxis%1:04:00:: 00862686 1 0 -taxis%1:04:01:: 00692991 2 0 -taxistand%1:15:00:: 08517966 1 0 -taxiway%1:06:00:: 04396466 1 0 -taxman%1:18:00:: 10693052 1 0 -taxodiaceae%1:20:00:: 11639609 1 0 -taxodium%1:20:00:: 11641788 1 0 -taxodium_ascendens%1:20:00:: 11642243 1 0 -taxodium_distichum%1:20:00:: 11641963 1 0 -taxodium_mucronatum%1:20:00:: 11642430 1 0 -taxon%1:14:00:: 07992450 1 0 -taxonomer%1:18:00:: 10693824 1 0 -taxonomic%3:01:00:: 03018498 1 0 -taxonomic_category%1:14:00:: 07992450 1 0 -taxonomic_group%1:14:00:: 07992450 1 0 -taxonomical%3:01:00:: 03018498 1 0 -taxonomically%4:02:00:: 00516034 1 0 -taxonomist%1:18:00:: 10693824 1 0 -taxonomy%1:04:00:: 01013770 3 0 -taxonomy%1:09:00:: 06153186 2 0 -taxonomy%1:14:00:: 08378356 1 0 -taxophytina%1:20:00:: 11660537 1 0 -taxopsida%1:20:00:: 11660537 1 0 -taxpayer%1:18:00:: 10694163 1 10 -taxpaying%5:00:00:nonexempt:00 02366474 1 1 -taxus%1:20:00:: 11661207 1 0 -taxus_baccata%1:20:00:: 11661909 1 0 -taxus_brevifolia%1:20:00:: 11662128 1 0 -taxus_cuspidata%1:20:00:: 11662371 1 0 -taxus_floridana%1:20:00:: 11662585 1 0 -tay%1:10:00:: 06935911 1 0 -tay-sachs%1:26:00:: 14169364 1 0 -tay-sachs_disease%1:26:00:: 14169364 1 0 -tayalic%1:10:00:: 06940854 1 0 -tayassu%1:05:00:: 02397377 1 0 -tayassu_angulatus%1:05:00:: 02397744 1 0 -tayassu_pecari%1:05:00:: 02397987 1 0 -tayassu_tajacu%1:05:00:: 02397744 1 0 -tayassuidae%1:05:00:: 02397251 1 0 -taylor%1:18:00:: 11333237 3 0 -taylor%1:18:01:: 11333390 2 0 -taylor%1:18:02:: 11333601 1 0 -taymyr_peninsula%1:15:00:: 09022132 1 0 -tayra%1:05:00:: 02451415 1 0 -tazicef%1:06:00:: 02989685 1 0 -tazir_crime%1:04:00:: 00774506 1 0 -tb%1:23:00:: 13629482 5 0 -tb%1:23:01:: 13629676 4 0 -tb%1:23:02:: 13629854 3 0 -tb%1:26:00:: 14143415 2 0 -tb%1:27:00:: 14657566 1 0 -tbilisi%1:15:00:: 09019194 1 0 -tbit%1:23:00:: 13629854 1 0 -tc%1:14:00:: 08296500 2 0 -tc%1:27:00:: 14657047 1 0 -tce%1:27:00:: 14851414 1 0 -tchad%1:15:00:: 08720037 1 0 -tchaikovsky%1:18:00:: 11333762 1 0 -tchotchke%1:06:00:: 02998696 2 0 -tchotchke%1:18:00:: 09905530 1 0 -tchotchkeleh%1:18:00:: 09905530 1 0 -tcp%1:10:00:: 06666210 1 0 -tcp/ip%1:10:00:: 06666486 1 0 -tdt%1:28:00:: 15156746 1 0 -te%1:10:00:: 06869129 2 0 -te%1:27:00:: 14657228 1 0 -te_deum%1:10:00:: 07037384 1 0 -te_kanawa%1:18:00:: 11334773 1 0 -tea%1:13:00:: 07933274 1 5 -tea%1:13:01:: 07575510 2 1 -tea%1:13:02:: 07932841 5 0 -tea%1:14:00:: 08254741 4 0 -tea%1:20:00:: 12929783 3 0 -tea-like_drink%1:13:00:: 07933530 1 0 -tea-scented%5:00:00:odorous:00 01057541 1 0 -tea-strainer%1:06:00:: 04398834 1 0 -tea_bag%1:06:00:: 04396808 2 0 -tea_bag%1:13:00:: 07933154 1 0 -tea_ball%1:06:00:: 04396902 1 0 -tea_biscuit%1:13:00:: 07634901 1 0 -tea_bread%1:13:00:: 07681264 1 0 -tea_break%1:13:00:: 07577918 1 0 -tea_caddy%1:06:00:: 02935387 1 0 -tea_cart%1:06:00:: 04397027 1 0 -tea_ceremony%1:04:00:: 01027231 1 0 -tea_chest%1:06:00:: 04397168 1 0 -tea_cloth%1:06:00:: 04397378 1 0 -tea_cosy%1:06:00:: 03114379 1 0 -tea_cozy%1:06:00:: 03114379 1 0 -tea_family%1:20:00:: 12929061 1 0 -tea_garden%1:06:00:: 04397553 1 0 -tea_gown%1:06:00:: 04397645 1 0 -tea_leaf%1:13:00:: 07932841 1 0 -tea_maker%1:06:00:: 04397860 1 0 -tea_napkin%1:06:00:: 04397949 1 0 -tea_parlor%1:06:00:: 04398497 1 0 -tea_parlour%1:06:00:: 04398497 1 0 -tea_party%1:11:00:: 07450463 1 1 -tea_rose%1:20:00:: 12622483 1 0 -tea_service%1:06:00:: 04398309 1 1 -tea_set%1:06:00:: 04398309 1 0 -tea_table%1:06:00:: 04398951 1 0 -tea_tortrix%1:05:00:: 02284611 1 0 -tea_towel%1:06:00:: 03207835 1 0 -tea_tray%1:06:00:: 04399046 1 0 -tea_trolley%1:06:00:: 04397027 1 0 -tea_urn%1:06:00:: 04399158 1 0 -tea_wagon%1:06:00:: 04397027 1 0 -teaberry%1:13:00:: 07743723 2 0 -teaberry%1:20:00:: 12235765 1 0 -teacake%1:13:01:: 07634751 2 0 -teacake%1:13:02:: 07634901 1 0 -teacart%1:06:00:: 04397027 1 2 -teach%1:18:00:: 11334003 1 0 -teach%2:30:00:: 00273734 2 2 -teach%2:32:00:: 00829107 1 86 -teach-in%1:10:00:: 07145783 1 0 -teachable%5:00:00:tractable:00 02451634 1 0 -teacher%1:09:00:: 05854812 2 1 -teacher%1:18:00:: 10694258 1 41 -teacher's_certificate%1:10:00:: 06479494 1 0 -teacher's_pet%1:18:00:: 10694849 1 0 -teacher-student_relation%1:24:00:: 13840553 1 0 -teachers_college%1:14:00:: 08412620 1 0 -teachership%1:04:00:: 00604811 1 0 -teaching%1:04:00:: 00887081 1 9 -teaching%1:04:01:: 00883297 3 1 -teaching%1:09:00:: 06185955 2 3 -teaching_aid%1:06:00:: 04397261 1 0 -teaching_certificate%1:10:00:: 06479494 1 1 -teaching_fellow%1:18:00:: 10694939 1 0 -teaching_method%1:09:00:: 05660937 1 4 -teaching_reading%1:04:00:: 00888284 1 0 -teacup%1:06:00:: 04397452 2 0 -teacup%1:23:00:: 13770635 1 0 -teacupful%1:23:00:: 13770635 1 0 -teahouse%1:06:00:: 04398497 1 0 -teak%1:20:00:: 12916511 2 0 -teak%1:20:02:: 12916723 1 0 -teakettle%1:06:00:: 04397768 1 1 -teakwood%1:20:00:: 12916723 1 1 -teal%1:05:00:: 01848123 2 0 -teal%1:07:00:: 04968426 1 0 -teal%5:00:00:chromatic:00 00371163 1 0 -team%1:14:00:: 08208560 1 43 -team%1:14:01:: 07985384 2 8 -team%2:33:00:: 01089285 1 0 -team_spirit%1:07:00:: 04625129 1 1 -team_sport%1:04:00:: 00887544 1 0 -team_teaching%1:04:00:: 00887702 1 0 -team_up%2:33:00:: 01089285 1 2 -teammate%1:18:00:: 10695050 1 2 -teamster%1:18:00:: 10695192 2 0 -teamster%1:18:02:: 10695333 1 5 -teamsters_union%1:14:00:: 08233627 1 0 -teamwork%1:04:00:: 01203494 1 0 -teapot%1:06:00:: 04398044 1 0 -teapot_dome%1:11:00:: 07306680 1 0 -teapot_dome_scandal%1:11:00:: 07306680 1 0 -tear%1:04:00:: 00391086 4 0 -tear%1:04:01:: 00510723 3 0 -tear%1:08:01:: 05405324 1 6 -tear%1:17:00:: 09410928 2 1 -tear%2:29:00:: 00066977 5 0 -tear%2:35:00:: 01573515 1 19 -tear%2:35:01:: 01556346 2 7 -tear%2:35:06:: 01384275 4 1 -tear%2:38:00:: 02055267 3 2 -tear_apart%2:32:00:: 00846344 1 1 -tear_away%2:30:00:: 00178898 1 2 -tear_down%2:36:00:: 01661804 1 5 -tear_duct%1:08:00:: 05331812 1 0 -tear_gas%1:27:00:: 15067877 1 0 -tear_gland%1:08:00:: 05331653 1 0 -tear_into%2:35:00:: 01242537 1 0 -tear_off%2:30:00:: 00178898 1 0 -tear_sac%1:08:00:: 05331988 1 0 -tear_sheet%1:10:00:: 06257141 1 0 -tear_up%2:35:00:: 01573891 1 0 -tearaway%1:18:00:: 10695450 1 0 -tearaway%5:00:00:incautious:00 00326608 1 0 -teardrop%1:08:00:: 05405324 2 0 -teardrop%1:25:00:: 13901925 1 0 -tearful%3:00:00:: 02473141 1 0 -tearful%5:00:00:sorrowful:00 01365239 2 0 -tearfully%4:02:00:: 00474758 1 1 -tearfulness%1:12:00:: 07534278 1 0 -teargas%1:27:00:: 15067877 1 0 -teargas%2:33:00:: 01125558 1 0 -tearing%1:22:00:: 13505843 1 0 -tearing%5:00:00:intense:00 01511854 1 0 -tearing_down%1:04:00:: 00218045 1 0 -tearjerker%1:10:00:: 06374148 1 0 -tearless%3:00:00:: 02473977 1 0 -tearoom%1:06:00:: 04398497 1 0 -tears%1:04:00:: 00868196 1 7 -teary%5:00:00:tearful:00 02473655 1 0 -teary-eyed%5:00:00:tearful:00 02473655 1 0 -teasdale%1:18:00:: 11334215 1 0 -tease%1:04:00:: 00425905 3 0 -tease%1:18:00:: 10695555 1 1 -tease%1:18:01:: 09965134 2 0 -tease%2:29:00:: 00040188 9 0 -tease%2:32:00:: 00850501 2 1 -tease%2:32:09:: 00852506 8 0 -tease%2:35:00:: 01356256 7 0 -tease%2:35:01:: 01463792 6 0 -tease%2:35:02:: 01531635 5 0 -tease%2:35:03:: 01572386 4 0 -tease%2:37:00:: 01803380 1 2 -tease%2:37:01:: 01803641 3 0 -tease_apart%2:35:00:: 01463792 1 0 -teased%5:00:00:excited:00 00920603 1 0 -teasel%1:20:00:: 12682411 1 0 -teaser%1:06:00:: 04456276 6 0 -teaser%1:06:01:: 04398167 7 0 -teaser%1:10:00:: 06784639 4 0 -teaser%1:10:01:: 07250868 3 0 -teaser%1:10:02:: 06397645 5 0 -teaser%1:18:00:: 10695555 2 0 -teaser%1:18:01:: 10695822 1 0 -teashop%1:06:00:: 04398497 1 0 -teasing%1:04:00:: 00425905 1 1 -teasing%1:04:01:: 00513841 2 0 -teasing%1:04:02:: 00256961 3 0 -teasing%5:00:00:disagreeable:00 00089550 3 0 -teasing%5:00:00:playful:00 02123118 1 0 -teasing%5:00:00:seductive:00 02098002 2 0 -teasingly%4:02:00:: 00474487 1 0 -teasle%1:20:00:: 12682411 1 0 -teaspoon%1:06:00:: 04398688 2 0 -teaspoon%1:23:01:: 13770729 1 0 -teaspoonful%1:23:01:: 13770729 1 1 -teat%1:08:00:: 05554653 1 2 -teatime%1:13:00:: 07575510 1 0 -teazel%1:20:00:: 12682411 1 0 -tebaldi%1:18:00:: 11334317 1 0 -tebet%1:28:00:: 15215068 1 0 -tebibit%1:23:00:: 13630036 1 0 -tebibyte%1:23:00:: 13629482 1 0 -tec%1:18:00:: 10009276 1 0 -tech%1:14:00:: 08285246 1 0 -techie%1:18:00:: 10695917 1 0 -technetium%1:27:00:: 14657047 1 0 -technical%1:04:00:: 00771356 2 0 -technical%1:06:00:: 04399269 1 0 -technical%3:00:00:: 01108716 2 11 -technical%3:01:00:: 02809220 1 16 -technical%3:01:03:: 02809692 3 5 -technical%5:00:01:skilled:00 02227946 4 0 -technical%5:00:02:commercial:00 00484070 5 0 -technical-grade%5:00:00:impure:02 01908341 1 0 -technical_analysis%1:04:00:: 00649266 1 0 -technical_analysis_of_stock_trends%1:04:00:: 00649266 1 0 -technical_analyst%1:18:00:: 09910840 1 0 -technical_foul%1:04:00:: 00771356 1 0 -technical_grade%5:00:00:impure:02 01908341 1 0 -technical_knockout%1:04:00:: 00134246 1 0 -technical_school%1:14:00:: 08285246 1 1 -technical_sergeant%1:18:00:: 10696101 1 0 -technicality%1:09:00:: 05820462 1 0 -technically%4:02:00:: 00126837 2 1 -technically%4:02:01:: 00126972 1 1 -technically%4:02:02:: 00127130 3 0 -technician%1:18:00:: 10696251 1 3 -technician%1:18:01:: 10696508 2 0 -technicolor%1:09:00:: 05667086 1 0 -technique%1:09:00:: 05665146 1 58 -technique%1:09:01:: 05643190 2 4 -techno%1:10:00:: 07058064 1 0 -technobabble%1:10:00:: 07088319 1 0 -technocracy%1:14:00:: 08363106 1 0 -technocrat%1:18:00:: 10696672 2 0 -technocrat%1:18:01:: 10696755 1 0 -technological%3:01:00:: 02809692 2 3 -technological%5:00:00:scientific:00 02084979 1 6 -technological_revolution%1:28:00:: 15260277 1 1 -technologically%4:02:00:: 00145341 1 1 -technologist%1:18:00:: 09615807 1 0 -technology%1:04:00:: 00949619 1 12 -technology%1:09:00:: 06125041 2 2 -technology_administration%1:14:00:: 08130712 1 0 -technophile%1:18:00:: 10696888 1 0 -technophilia%1:12:00:: 07555775 1 0 -technophilic%3:01:00:: 02809492 1 0 -technophobe%1:18:00:: 10697013 1 0 -technophobia%1:12:00:: 07504258 1 0 -technophobic%3:01:00:: 02809592 1 0 -techy%5:00:00:ill-natured:00 01136541 1 0 -tecophilaeacea%1:20:00:: 12465107 1 0 -tectaria%1:20:00:: 13201239 1 0 -tectaria_cicutaria%1:20:00:: 13201423 1 0 -tectaria_macrodonta%1:20:00:: 13201566 1 0 -tectona%1:20:00:: 12916356 1 0 -tectona_grandis%1:20:00:: 12916511 1 0 -tectonic%3:01:00:: 02939099 1 0 -tectonic%3:01:01:: 02898121 2 0 -tectonic_movement%1:11:00:: 07310338 1 0 -tectonics%1:09:00:: 06118370 2 0 -tectonics%1:09:01:: 06124395 1 0 -tecumseh%1:18:00:: 11334428 1 0 -tecumtha%1:18:00:: 11334428 1 0 -ted%1:18:00:: 10697135 1 0 -ted_hughes%1:18:00:: 11065229 1 0 -ted_shawn%1:18:00:: 11296602 1 0 -ted_williams%1:18:00:: 11389901 1 0 -teddy%1:06:00:: 03013580 2 0 -teddy%1:06:01:: 04399382 1 0 -teddy_bear%1:06:00:: 04399382 1 0 -teddy_boy%1:18:00:: 10697135 1 0 -teddy_boys%1:14:00:: 08370204 1 0 -tedious%5:00:00:prolix:00 00549236 2 0 -tedious%5:00:00:uninteresting:00 01345307 1 2 -tediously%4:02:00:: 00215048 1 0 -tediousness%1:07:00:: 05206237 1 0 -tedium%1:07:00:: 05206237 2 0 -tedium%1:12:00:: 07539790 1 0 -tee%1:06:00:: 04399537 3 0 -tee%1:06:01:: 04399700 2 0 -tee%1:15:00:: 08661277 1 1 -tee%2:35:00:: 01499692 1 0 -tee%2:35:01:: 01355810 2 0 -tee_hinge%1:06:00:: 04399846 1 0 -tee_off%2:33:00:: 01084170 1 0 -tee_shirt%1:06:00:: 03595614 1 0 -tee_up%2:35:00:: 01499692 2 0 -tee_up%2:36:00:: 01648684 1 0 -teeing_ground%1:15:00:: 08661277 1 0 -teem%2:38:00:: 02028366 2 0 -teem%2:42:00:: 02714974 1 1 -teem_in%2:42:00:: 02715923 1 0 -teeming%5:00:00:abundant:00 00016350 1 0 -teemingness%1:07:00:: 05115040 1 0 -teen%1:18:00:: 09772029 1 0 -teen%5:00:00:young:00 01647983 1 6 -teenage%5:00:00:young:00 01647983 1 4 -teenaged%5:00:00:young:00 01647983 1 0 -teenager%1:18:00:: 09772029 1 12 -teens%1:23:00:: 13747114 2 0 -teens%1:28:00:: 15148467 1 3 -teensy%5:00:00:small:00 01392633 1 1 -teensy-weensy%5:00:00:small:00 01392633 1 0 -teentsy%5:00:00:small:00 01392633 1 0 -teeny%5:00:00:small:00 01392633 1 0 -teeny-weeny%5:00:00:small:00 01392633 1 0 -teeoff%1:04:00:: 00574077 1 0 -teepee%1:06:00:: 04412416 1 0 -teeter%1:06:00:: 04167759 1 0 -teeter%2:38:00:: 01881034 1 2 -teeter-totter%1:06:00:: 04167759 1 0 -teeter-totter%2:38:00:: 01992375 1 0 -teeterboard%1:06:00:: 04167759 1 0 -teetertotter%1:06:00:: 04167759 1 0 -teetertotter%2:38:00:: 01992375 1 0 -teeth%1:08:00:: 05282433 1 0 -teethe%2:29:00:: 00095990 1 0 -teething%1:22:00:: 13565781 1 0 -teething_ring%1:06:00:: 03075768 1 0 -teetotal%2:34:00:: 01196364 1 0 -teetotal%5:00:00:sober:01 00799953 1 0 -teetotaler%1:18:00:: 10697282 1 1 -teetotaling%1:04:00:: 01069867 1 0 -teetotalism%1:04:00:: 01069867 1 0 -teetotalist%1:18:00:: 10697282 1 0 -teetotaller%1:18:00:: 10697282 1 0 -teetotum%1:06:00:: 04454240 1 0 -teff%1:20:00:: 12120347 1 0 -teff_grass%1:20:00:: 12120347 1 0 -tefillin%1:10:00:: 06856189 1 0 -teflon%1:27:00:: 14596398 1 0 -teg%1:05:00:: 02412909 1 0 -tegu%1:15:00:: 08956461 1 0 -tegucigalpa%1:15:00:: 08738014 1 0 -tegular%3:01:00:: 02854154 1 0 -tegument%1:08:00:: 05238282 1 0 -teheran%1:15:00:: 08911421 1 0 -tehran%1:15:00:: 08911421 1 0 -teiid%1:05:00:: 01685439 1 0 -teiid_lizard%1:05:00:: 01685439 1 0 -teiidae%1:05:00:: 01685277 1 0 -teilhard_de_chardin%1:18:00:: 11334609 1 0 -teju%1:05:00:: 01687128 1 0 -tekki%1:18:00:: 10695917 1 0 -tektite%1:27:00:: 14880690 1 0 -tel_aviv%1:15:00:: 08797840 1 1 -tel_aviv-jaffa%1:15:00:: 08797840 1 0 -tel_aviv-yalo%1:15:00:: 08797840 1 0 -telamon%1:06:00:: 02752810 1 0 -telanthera%1:20:00:: 11826999 1 0 -telco%1:14:00:: 08186221 1 0 -telco_building%1:06:00:: 04400109 1 0 -telecast%1:10:00:: 06622595 1 0 -telecast%2:32:00:: 00969506 1 0 -telecaster%1:18:00:: 10697420 1 0 -telecasting%1:10:00:: 06277280 1 0 -telecom%1:10:00:: 06271778 1 0 -telecom_equipment%1:06:00:: 04400289 1 0 -telecom_hotel%1:06:00:: 04400109 1 0 -telecom_system%1:06:00:: 04400289 1 0 -telecommerce%1:04:00:: 01116026 1 0 -telecommunicate%2:32:00:: 00790703 1 0 -telecommunication%1:09:00:: 06128307 2 0 -telecommunication%1:10:00:: 06271778 1 0 -telecommunication_equipment%1:06:00:: 04400289 1 0 -telecommunication_system%1:06:00:: 04400289 1 0 -telecommuting%1:04:00:: 00585018 1 0 -teleconference%1:10:00:: 07145958 1 0 -teleconferencing%1:10:00:: 07145958 1 0 -telefax%2:32:00:: 01007676 1 0 -telefilm%1:10:00:: 06614628 1 0 -telegnosis%1:10:00:: 07256230 1 0 -telegnostic%5:00:00:extrasensory:00 02109162 1 0 -telegram%1:10:00:: 06622709 1 2 -telegraph%1:06:00:: 04400499 1 3 -telegraph%2:32:00:: 01007222 1 2 -telegraph_form%1:10:00:: 06476475 1 1 -telegraph_key%1:06:00:: 04400737 1 0 -telegraph_line%1:06:00:: 04402984 1 0 -telegraph_operator%1:18:00:: 10697519 1 1 -telegraph_plant%1:20:00:: 12518013 1 0 -telegraph_pole%1:06:00:: 04402449 1 0 -telegraph_post%1:06:00:: 04402449 1 0 -telegraph_wire%1:06:00:: 04402984 1 0 -telegrapher%1:18:00:: 10697519 1 5 -telegraphese%1:10:00:: 07157000 1 0 -telegraphic%3:01:00:: 02910074 1 2 -telegraphic%5:00:00:concise:00 00548579 2 0 -telegraphic_signal%1:10:00:: 06805665 1 0 -telegraphically%4:02:00:: 00474902 1 0 -telegraphist%1:18:00:: 10697519 1 0 -telegraphy%1:06:00:: 04400499 2 0 -telegraphy%1:10:00:: 06274921 1 1 -telekinesis%1:10:00:: 07257045 1 0 -telemann%1:18:00:: 11334925 1 0 -telemark%1:04:00:: 00441686 1 0 -telemarketing%1:04:00:: 01116026 1 0 -telemeter%1:06:00:: 04400899 1 0 -telemetered%3:01:00:: 02809958 1 0 -telemetry%1:04:00:: 01116206 1 0 -telemetry_intelligence%1:04:00:: 00983482 1 0 -telencephalon%1:08:00:: 05496802 1 0 -teleological%3:01:00:: 02991586 1 0 -teleologist%1:18:00:: 10697782 1 0 -teleology%1:09:00:: 05977619 1 0 -teleost%1:05:00:: 02528163 1 0 -teleost_fish%1:05:00:: 02528163 1 0 -teleostan%1:05:00:: 02528163 1 0 -teleostei%1:05:00:: 02527813 1 0 -telepathic%5:00:00:extrasensory:00 02109326 1 0 -telepathise%2:32:00:: 00992804 1 0 -telepathist%1:18:00:: 10697879 1 0 -telepathist%1:18:01:: 10319580 2 0 -telepathize%2:32:00:: 00992804 1 0 -telepathy%1:10:00:: 07255998 1 1 -telephone%1:06:00:: 04401088 1 18 -telephone%1:10:00:: 06272290 2 1 -telephone%2:32:00:: 00789448 1 12 -telephone_bell%1:06:00:: 04401578 1 0 -telephone_bill%1:10:00:: 06517663 1 0 -telephone_book%1:10:00:: 06423754 1 0 -telephone_booth%1:06:00:: 04401680 1 2 -telephone_box%1:06:00:: 04401680 1 0 -telephone_call%1:10:00:: 06272803 1 2 -telephone_circuit%1:06:00:: 04402057 1 0 -telephone_company%1:14:00:: 08186221 1 1 -telephone_conversation%1:10:00:: 07142005 1 0 -telephone_cord%1:06:00:: 04401828 1 0 -telephone_dial%1:06:00:: 03186818 1 0 -telephone_directory%1:10:00:: 06423754 1 1 -telephone_exchange%1:06:00:: 02994858 1 0 -telephone_extension%1:06:00:: 03306869 1 0 -telephone_interview%1:10:00:: 07196575 1 0 -telephone_jack%1:06:00:: 04401949 1 0 -telephone_kiosk%1:06:00:: 04401680 1 0 -telephone_line%1:06:00:: 04402057 2 0 -telephone_line%1:06:01:: 04402984 1 3 -telephone_message%1:10:00:: 06276287 1 0 -telephone_number%1:10:00:: 06426111 1 1 -telephone_operator%1:18:00:: 10698064 1 2 -telephone_order%1:04:00:: 01116876 1 1 -telephone_plug%1:06:00:: 04402342 1 0 -telephone_pole%1:06:00:: 04402449 1 2 -telephone_receiver%1:06:00:: 04402580 1 0 -telephone_service%1:14:00:: 08186221 1 0 -telephone_set%1:06:00:: 04401088 1 0 -telephone_system%1:06:00:: 04402746 1 0 -telephone_unit%1:23:00:: 13608480 1 0 -telephone_wire%1:06:00:: 04402984 1 1 -telephoner%1:18:00:: 09888017 1 0 -telephonic%3:01:00:: 03123434 1 0 -telephonist%1:18:00:: 10698064 1 0 -telephony%1:10:00:: 06272290 1 0 -telephoto%1:06:00:: 04403167 1 0 -telephoto_lens%1:06:00:: 04403413 1 0 -telephotograph%1:06:01:: 04403167 2 0 -telephotograph%1:06:02:: 04403279 1 0 -telephotography%1:04:01:: 00906975 2 0 -telephotography%1:04:02:: 00907071 1 0 -teleport%2:38:00:: 02104690 1 0 -teleportation%1:04:00:: 01254473 1 0 -teleprinter%1:06:00:: 04404200 1 0 -teleprocessing%1:22:00:: 13468542 1 0 -teleprompter%1:06:00:: 04403524 1 0 -telerobotics%1:09:00:: 06133935 1 0 -telescope%1:06:00:: 04403638 1 0 -telescope%2:30:03:: 00244923 2 0 -telescope%2:35:00:: 01594782 1 1 -telescope_sight%1:06:00:: 04403925 1 0 -telescoped%5:00:00:short:01 01437472 1 0 -telescopic%5:00:00:collapsible:00 00466077 3 0 -telescopic%5:00:00:farsighted:00 02157936 2 0 -telescopic%5:00:00:visible:00 02517002 1 0 -telescopic_sight%1:06:00:: 04403925 1 1 -telescopically%4:02:00:: 00475094 1 0 -telescopium%1:17:00:: 09455524 1 0 -telescopy%1:09:00:: 05636554 1 0 -teleselling%1:04:00:: 01116026 1 0 -telethermometer%1:06:00:: 04404072 1 0 -teletype_machine%1:06:00:: 04404200 1 0 -teletypewriter%1:06:00:: 04404200 1 0 -televangelism%1:10:00:: 07244822 1 0 -televangelist%1:18:00:: 10698241 1 0 -televise%2:32:00:: 00969506 1 3 -television%1:06:00:: 04404412 2 2 -television%1:06:01:: 04405907 3 1 -television%1:10:00:: 06277280 1 12 -television-camera_tube%1:06:00:: 04405309 1 0 -television_announcer%1:18:00:: 10733891 1 0 -television_antenna%1:06:00:: 04404817 1 0 -television_camera%1:06:00:: 04404997 1 1 -television_channel%1:06:00:: 03006398 1 0 -television_equipment%1:06:00:: 04405540 1 0 -television_monitor%1:06:00:: 04405762 1 0 -television_news%1:10:00:: 06683692 1 0 -television_newscaster%1:18:00:: 10698368 1 0 -television_pickup_tube%1:06:00:: 04405309 1 0 -television_program%1:10:00:: 06620579 1 2 -television_receiver%1:06:00:: 04405907 1 0 -television_reporter%1:18:00:: 10698368 1 0 -television_room%1:06:00:: 04406239 1 0 -television_set%1:06:00:: 04405907 1 2 -television_show%1:10:00:: 06620579 1 0 -television_star%1:18:00:: 10698550 1 0 -television_station%1:06:00:: 04406350 1 0 -television_system%1:06:00:: 04404412 1 1 -television_transmitter%1:06:00:: 04406552 1 0 -television_tube%1:06:00:: 03617594 1 0 -teleworking%1:04:00:: 00585018 1 0 -telex%1:06:00:: 04404200 1 0 -telex%2:32:00:: 00790965 1 0 -telex_machine%1:06:00:: 04404200 1 0 -telfer%1:06:00:: 04406687 1 0 -telferage%1:06:00:: 04406817 1 0 -telingo_potato%1:20:00:: 11782878 1 0 -telint%1:04:00:: 00983482 1 0 -teliospore%1:20:00:: 11549638 1 0 -tell%1:18:00:: 10698649 1 0 -tell%2:31:00:: 00720961 5 27 -tell%2:31:01:: 00650353 8 3 -tell%2:32:00:: 00952524 2 189 -tell%2:32:01:: 00953216 3 75 -tell%2:32:02:: 00746718 4 60 -tell%2:32:03:: 00954422 7 4 -tell%2:32:04:: 01009240 1 196 -tell%2:32:08:: 01019643 6 6 -tell_apart%2:31:00:: 00650353 2 0 -tell_apart%2:39:00:: 02193194 1 1 -tell_off%2:32:00:: 00825648 1 0 -tell_on%2:30:00:: 00138069 2 1 -tell_on%2:32:00:: 00841986 1 1 -teller%1:18:00:: 10698970 3 0 -teller%1:18:01:: 10699099 2 0 -teller%1:18:02:: 11335041 1 0 -teller%1:18:03:: 10345804 4 0 -tellima%1:20:00:: 12802987 1 0 -tellima_affinis%1:20:00:: 12799776 1 0 -tellima_grandiflora%1:20:00:: 12803226 1 0 -telling%1:10:00:: 07212424 2 0 -telling%1:10:01:: 07222823 1 0 -telling%1:10:03:: 06805297 3 0 -telling%5:00:00:effective:00 00835292 3 0 -telling%5:00:00:informative:00 01305344 1 1 -telling%5:00:00:persuasive:00 01770392 2 0 -tellingly%4:02:00:: 00475305 1 0 -telltale%1:18:00:: 10692696 1 0 -telltale%5:00:00:informative:00 01305344 1 1 -tellurian%1:18:00:: 10699262 1 0 -tellurian%3:01:00:: 02810102 1 0 -telluric%3:01:00:: 02810102 2 0 -telluric%3:01:01:: 02810417 1 0 -telluride%1:27:00:: 15068134 1 0 -tellurium%1:27:00:: 14657228 1 0 -tellus%1:18:00:: 09572249 1 0 -telly%1:06:00:: 04405907 1 0 -telocentric%3:01:00:: 03140707 1 0 -telocentric_chromosome%1:08:00:: 05445247 1 0 -telomerase%1:27:00:: 15068282 1 0 -telomere%1:08:00:: 05610520 1 0 -telopea%1:20:00:: 12223405 1 0 -telopea_oreades%1:20:00:: 12223569 1 0 -telopea_speciosissima%1:20:00:: 12223764 1 0 -telophase%1:22:01:: 13565940 2 0 -telophase%1:22:02:: 13566041 1 0 -telosporidia%1:05:00:: 01422594 1 0 -telpher%1:06:00:: 04406687 1 0 -telpherage%1:06:00:: 04406817 1 0 -telsontail%1:05:00:: 02163763 1 0 -telugu%1:10:00:: 06980721 2 0 -telugu%1:18:00:: 09675529 1 0 -temazepam%1:06:00:: 04407007 1 0 -temblor%1:11:00:: 07428954 1 0 -temerarious%5:00:00:bold:00 00250483 1 0 -temerity%1:07:00:: 04859449 1 2 -temnospondyli%1:05:00:: 01656576 1 0 -temp%1:18:00:: 10699415 1 0 -temper%1:07:01:: 05021535 4 0 -temper%1:07:02:: 04642258 3 2 -temper%1:12:00:: 07551052 2 2 -temper%1:12:01:: 07518468 1 3 -temper%2:30:00:: 00294884 4 0 -temper%2:30:01:: 00295254 3 0 -temper%2:30:02:: 00302875 2 0 -temper%2:30:03:: 00202934 5 0 -temper%2:30:04:: 00303056 1 0 -tempera%1:06:00:: 04407257 1 0 -temperament%1:04:00:: 01000411 3 0 -temperament%1:07:00:: 04623612 1 1 -temperament%1:07:02:: 04628466 2 0 -temperamental%3:01:00:: 02810552 1 0 -temperamental%5:00:00:emotional:00 00856325 2 0 -temperamental%5:00:00:unreliable:00 00725227 3 0 -temperamentally%4:02:00:: 00145455 1 0 -temperance%1:04:00:: 01069777 2 0 -temperance%1:04:01:: 00381567 3 0 -temperance%1:07:00:: 04883614 1 0 -temperate%3:00:00:: 02401590 2 0 -temperate%3:00:01:: 02402559 1 0 -temperate%5:00:00:mild:00 01509367 3 0 -temperate_rain_forest%1:14:00:: 08439268 1 0 -temperate_zone%1:15:00:: 08661878 1 0 -temperately%4:02:00:: 00475469 2 0 -temperately%4:02:01:: 00475591 1 0 -temperately%4:02:02:: 00264555 3 0 -temperateness%1:07:00:: 04883243 2 0 -temperateness%1:19:00:: 11456462 1 0 -temperature%1:07:00:: 05011790 1 91 -temperature%1:09:00:: 05725378 2 1 -temperature_change%1:22:00:: 13566212 1 1 -temperature_gradient%1:24:00:: 13860145 1 3 -temperature_reduction%1:22:00:: 13453160 1 0 -temperature_scale%1:24:00:: 13852395 1 0 -temperature_unit%1:23:00:: 13608598 1 0 -tempered%3:00:01:: 01521139 2 0 -tempered%3:00:02:: 01521542 1 0 -tempering%1:04:00:: 00402951 1 0 -tempering%5:00:00:moderating:00 01341731 1 0 -tempest%1:19:00:: 11518494 2 0 -tempest%1:26:00:: 13978344 1 1 -tempest-swept%5:00:00:troubled:00 02456530 1 0 -tempest-tossed%5:00:00:troubled:00 02456530 1 0 -tempest-tost%5:00:00:troubled:00 02456530 1 0 -tempestuous%5:00:00:stormy:00 00304144 2 0 -tempestuous%5:00:00:unpeaceful:00 01742912 1 0 -tempestuousness%1:26:00:: 14523923 1 0 -tempestuousness%1:26:01:: 13979503 2 0 -templar%1:18:00:: 10239329 1 0 -template%1:09:00:: 05938976 1 0 -template_rna%1:27:00:: 14832770 1 0 -temple%1:06:00:: 04407435 1 6 -temple%1:06:01:: 04407686 3 1 -temple%1:06:02:: 04374735 4 0 -temple%1:08:00:: 05602683 2 1 -temple_of_apollo%1:06:00:: 04407844 1 0 -temple_of_artemis%1:06:00:: 04408174 1 0 -temple_of_jerusalem%1:06:00:: 04408330 1 0 -temple_of_solomon%1:06:00:: 04408330 1 0 -temple_orange%1:13:00:: 07747811 2 0 -temple_orange%1:20:00:: 12710917 1 0 -temple_orange_tree%1:20:00:: 12710917 1 0 -temple_tree%1:20:00:: 11774795 1 0 -templet%1:09:00:: 05938976 1 0 -templetonia%1:20:00:: 12572021 1 0 -templetonia_retusa%1:20:00:: 12572188 1 0 -tempo%1:28:00:: 15283097 2 1 -tempo%1:28:01:: 15264363 1 2 -temporal%1:10:00:: 06333478 1 0 -temporal%3:00:00:: 02577061 4 0 -temporal%3:01:00:: 02810739 3 0 -temporal%3:01:01:: 02810882 2 0 -temporal%5:00:00:earthly:00 01181904 5 0 -temporal%5:00:00:impermanent:00 01757914 1 3 -temporal_arrangement%1:07:00:: 05044673 1 0 -temporal_arteritis%1:26:00:: 14259133 1 0 -temporal_artery%1:08:00:: 05354744 1 0 -temporal_bone%1:08:00:: 05282000 1 0 -temporal_canthus%1:08:00:: 05314549 1 0 -temporal_ccortex%1:08:00:: 05494933 1 0 -temporal_gyrus%1:08:00:: 05488909 1 0 -temporal_lobe%1:08:00:: 05494933 1 0 -temporal_lobe_epilepsy%1:26:00:: 14089974 1 0 -temporal_muscle%1:08:00:: 05602304 1 0 -temporal_order%1:07:00:: 05044673 1 0 -temporal_property%1:07:00:: 05044528 1 0 -temporal_relation%1:24:00:: 13844690 1 0 -temporal_role%1:10:00:: 06333478 1 0 -temporal_vein%1:08:00:: 05382135 1 0 -temporalis%1:08:00:: 05602304 1 0 -temporalis_muscle%1:08:00:: 05602304 1 0 -temporality%1:21:00:: 13247981 1 0 -temporally%4:02:00:: 00127339 1 0 -temporalty%1:14:00:: 08153102 2 0 -temporalty%1:21:00:: 13247981 1 0 -temporarily%4:02:00:: 00088303 1 5 -temporariness%1:07:00:: 05055141 1 0 -temporary%1:18:00:: 10699415 1 0 -temporary%3:00:00:: 01755627 1 6 -temporary%5:00:00:part-time:00 01089775 2 0 -temporary_expedient%1:04:00:: 00178832 1 0 -temporary_hookup%1:06:00:: 04408871 1 0 -temporary_injunction%1:10:00:: 06543536 1 0 -temporary_removal%1:04:00:: 00209132 1 0 -temporary_state%1:26:00:: 14015731 1 0 -temporary_worker%1:18:00:: 10699415 1 0 -temporise%2:30:00:: 00318484 1 0 -temporiser%1:18:00:: 10699558 1 0 -temporize%2:30:00:: 00318484 1 0 -temporizer%1:18:00:: 10699558 1 0 -temporomandibular_joint%1:08:00:: 05276668 1 0 -tempra%1:06:00:: 02674482 1 0 -tempt%2:32:00:: 00776523 4 1 -tempt%2:32:01:: 00793785 1 4 -tempt%2:32:03:: 00784184 6 0 -tempt%2:32:04:: 00782527 2 4 -tempt%2:37:00:: 01807529 3 1 -tempt%2:37:01:: 01807770 5 0 -temptable%5:00:00:susceptible:00 02362904 1 0 -temptation%1:04:00:: 00159620 3 0 -temptation%1:09:00:: 05694791 1 8 -temptation%1:12:00:: 07485281 2 0 -tempter%1:18:00:: 10699752 1 0 -tempting%5:00:00:inviting:00 01358695 2 0 -tempting%5:00:00:seductive:00 02097480 1 0 -temptingly%4:02:00:: 00448130 1 0 -temptingness%1:07:00:: 04688842 1 0 -temptress%1:18:00:: 10055410 1 0 -tempura%1:13:00:: 07879953 1 0 -temuco%1:15:00:: 08721961 1 0 -temujin%1:18:00:: 10994308 1 0 -ten%1:06:00:: 04411142 2 0 -ten%1:23:00:: 13746512 1 8 -ten%5:00:00:cardinal:00 02187296 1 71 -ten-day_fern%1:20:00:: 13200986 1 0 -ten-fold%5:00:00:multiple:00 02220207 1 0 -ten-gallon_hat%1:06:00:: 03124170 1 1 -ten-membered%5:00:00:membered:00 01503760 1 0 -ten-sided%5:00:00:multilateral:00 00238862 1 0 -ten-spined_stickleback%1:05:00:: 01455461 1 0 -ten-spot%1:06:00:: 04411142 1 0 -ten-strike%1:04:00:: 00187710 1 0 -ten-thousandth%1:23:00:: 13739278 1 0 -ten_commandments%1:10:00:: 07169970 1 0 -ten_dollar_bill%1:21:00:: 13395407 1 0 -ten_percent%1:23:00:: 13738327 1 0 -ten_thousand%1:23:00:: 13751265 1 8 -ten_thousand%5:00:00:cardinal:00 02198891 1 0 -tenability%1:07:00:: 04783888 1 0 -tenable%5:00:00:reasonable:00 01944492 1 1 -tenableness%1:07:00:: 04783888 1 0 -tenacious%3:00:00:: 02005756 1 0 -tenacious%5:00:00:adhesive:00 00053384 3 0 -tenacious%5:00:00:stubborn:00 02327569 2 0 -tenaciously%4:02:00:: 00235701 1 1 -tenaciousness%1:07:00:: 04864515 1 0 -tenacity%1:07:00:: 04864515 1 1 -tenancy%1:04:00:: 01054335 1 2 -tenant%1:18:00:: 10700201 1 4 -tenant%1:18:01:: 10700517 3 0 -tenant%1:18:02:: 10700640 2 0 -tenant%2:41:00:: 02460483 1 0 -tenant_farmer%1:18:00:: 10700840 1 0 -tenanted%5:00:00:inhabited:00 01311814 1 0 -tenantry%1:14:00:: 07955726 1 0 -tench%1:05:00:: 01440764 1 0 -tend%2:41:00:: 02549847 2 3 -tend%2:41:01:: 02439047 3 1 -tend%2:42:01:: 02719399 1 59 -tended_to%5:00:00:cared-for:00 00308488 1 0 -tendencious%5:00:00:partisan:00 00730985 1 0 -tendency%1:07:00:: 04944048 3 5 -tendency%1:09:00:: 06196584 1 11 -tendency%1:12:00:: 07499113 2 6 -tendency%1:15:00:: 08681777 4 0 -tendentious%5:00:00:partisan:00 00730985 1 0 -tendentiously%4:02:00:: 00475697 1 0 -tendentiousness%1:09:00:: 06204289 1 0 -tender%1:06:00:: 04409011 6 0 -tender%1:06:01:: 04409128 5 0 -tender%1:06:02:: 04409279 4 0 -tender%1:10:00:: 07165086 3 0 -tender%1:18:00:: 09821831 2 0 -tender%1:21:00:: 13374008 1 0 -tender%2:30:00:: 00514871 4 0 -tender%2:40:00:: 02296495 3 0 -tender%2:40:01:: 02296615 1 1 -tender%2:40:02:: 02298632 2 0 -tender%3:00:01:: 02446651 5 1 -tender%3:00:02:: 02448166 6 0 -tender%3:00:03:: 02448889 1 2 -tender%5:00:00:delicate:00 00707206 8 0 -tender%5:00:00:loving:00 01464700 4 2 -tender%5:00:00:painful:00 01712753 2 2 -tender%5:00:00:unstable:00 02292421 7 0 -tender%5:00:00:young:00 01649561 3 2 -tender_loving_care%1:04:00:: 00665221 1 0 -tender_offer%1:10:00:: 07166101 1 0 -tenderfoot%1:18:00:: 10700963 1 0 -tendergreen%1:20:00:: 11879291 1 0 -tenderhearted%5:00:00:compassionate:00 00506852 2 0 -tenderhearted%5:00:00:loving:00 01466207 1 0 -tenderheartedness%1:12:00:: 07554342 1 0 -tenderisation%1:04:00:: 00248063 1 0 -tenderise%2:30:00:: 00514871 1 0 -tenderised%5:00:00:tender:01 02447215 1 0 -tenderiser%1:27:00:: 15068436 1 0 -tenderization%1:04:00:: 00248063 1 0 -tenderize%2:30:00:: 00514871 1 0 -tenderized%5:00:00:tender:01 02447215 1 0 -tenderizer%1:27:00:: 15068436 1 0 -tenderloin%1:13:00:: 07659793 2 0 -tenderloin%1:15:00:: 08689646 1 0 -tenderly%4:02:00:: 00475845 1 2 -tenderness%1:07:00:: 04627241 1 3 -tenderness%1:12:00:: 07505347 5 0 -tenderness%1:12:01:: 07544647 4 0 -tenderness%1:12:03:: 07554342 3 0 -tenderness%1:26:00:: 14332617 2 0 -tending%1:04:00:: 00654885 1 1 -tending%5:00:00:inclined:02 01292411 1 0 -tendinitis%1:26:00:: 14356578 1 0 -tendinous%3:01:00:: 02811265 1 0 -tendon%1:08:00:: 05296253 1 3 -tendon_of_achilles%1:08:00:: 05578740 1 0 -tendonitis%1:26:00:: 14356578 1 0 -tendonous_synovitis%1:26:00:: 14356993 1 0 -tendosynovitis%1:26:00:: 14356993 1 0 -tendrac%1:05:00:: 01894207 1 0 -tendril%1:20:00:: 13102775 1 0 -tendril-climbing%3:01:00:: 02811428 1 0 -tenebrific%5:00:00:dark:01 00276355 1 0 -tenebrionid%1:05:00:: 02181235 1 0 -tenebrionidae%1:05:00:: 02181013 1 0 -tenebrious%5:00:00:dark:01 00276355 1 0 -tenebrous%5:00:00:dark:01 00276355 1 1 -tenement%1:06:00:: 04409384 1 4 -tenement_district%1:15:00:: 08555443 1 0 -tenement_house%1:06:00:: 04409384 1 1 -tenerife%1:15:00:: 09028643 1 0 -tenesmus%1:26:00:: 14571714 1 0 -tenet%1:10:00:: 06790042 1 1 -tenfold%4:02:00:: 00246455 1 1 -tenfold%5:00:00:multiple:00 02220207 1 0 -teng_hsiao-ping%1:18:00:: 10930778 1 0 -teng_hsiaoping%1:18:00:: 10930778 1 0 -tenge%1:23:00:: 13701005 2 0 -tenge%1:23:01:: 13702931 1 0 -tenia%1:06:00:: 04383696 1 0 -tenner%1:21:00:: 13395407 2 0 -tenner%1:23:00:: 13746512 1 0 -tennessean%1:18:00:: 09745732 1 0 -tennessee%1:15:00:: 09140148 1 1 -tennessee%1:17:00:: 09455640 2 0 -tennessee_river%1:17:00:: 09455640 1 0 -tennessee_walker%1:05:00:: 02379430 1 0 -tennessee_walking_horse%1:05:00:: 02379430 1 0 -tennessee_williams%1:18:00:: 11389481 1 0 -tenniel%1:18:00:: 11335226 1 0 -tennis%1:04:00:: 00482298 1 1 -tennis_ball%1:06:00:: 04409515 1 0 -tennis_camp%1:06:00:: 04409625 1 0 -tennis_club%1:14:00:: 08230590 1 0 -tennis_coach%1:18:00:: 10701096 1 0 -tennis_court%1:06:00:: 04409712 1 1 -tennis_elbow%1:26:00:: 14356720 1 0 -tennis_lesson%1:04:00:: 00890059 1 0 -tennis_match%1:11:00:: 07471037 1 0 -tennis_player%1:18:00:: 10701180 1 0 -tennis_pro%1:18:00:: 10701644 1 0 -tennis_racket%1:06:00:: 04409806 1 1 -tennis_racquet%1:06:00:: 04409806 1 0 -tennis_shoe%1:06:00:: 03472535 1 0 -tennis_shot%1:04:00:: 00566135 1 0 -tennis_stroke%1:04:00:: 00566135 1 0 -tenno%1:18:00:: 10315217 1 0 -tennyson%1:18:00:: 11335330 1 0 -tenon%1:06:00:: 04409911 1 0 -tenonitis%1:26:00:: 14356578 1 0 -tenor%1:07:00:: 04986054 2 1 -tenor%1:09:00:: 05922450 5 0 -tenor%1:09:01:: 06197503 4 0 -tenor%1:10:00:: 06872676 1 1 -tenor%1:18:00:: 10701783 3 0 -tenor%5:00:00:high:03 01215136 2 0 -tenor%5:00:02:high:03 01215263 1 0 -tenor_clef%1:10:00:: 06863442 1 0 -tenor_drum%1:06:00:: 04410086 1 0 -tenor_saxophonist%1:18:00:: 10701962 1 0 -tenor_voice%1:10:00:: 06872676 1 0 -tenoretic%1:06:00:: 04410190 1 0 -tenorist%1:18:00:: 10701962 1 0 -tenormin%1:06:00:: 02751782 1 0 -tenoroon%1:06:00:: 04410365 1 0 -tenosynovitis%1:26:00:: 14356993 1 0 -tenpence%1:21:00:: 13390857 1 0 -tenpenny_nail%1:06:00:: 04410485 1 0 -tenpin%1:06:00:: 04410565 1 0 -tenpin_bowling%1:04:00:: 00462241 1 0 -tenpins%1:04:00:: 00462241 1 0 -tenpounder%1:05:00:: 02542017 1 0 -tenrec%1:05:00:: 01894207 1 0 -tenrec_ecaudatus%1:05:00:: 01894522 1 0 -tenrecidae%1:05:00:: 01894040 1 0 -tense%1:10:00:: 06329506 1 2 -tense%2:29:00:: 00025203 4 0 -tense%2:29:01:: 00026153 3 0 -tense%2:30:00:: 00536304 2 0 -tense%2:35:00:: 01572728 1 0 -tense%3:00:01:: 02403206 3 0 -tense%3:00:02:: 02404868 2 0 -tense%3:00:03:: 02405326 1 0 -tense_system%1:10:00:: 07113625 1 1 -tense_up%2:29:00:: 00025203 2 0 -tense_up%2:29:01:: 00026153 1 0 -tensed%5:00:00:finite:02 01008656 1 0 -tensely%4:02:00:: 00173790 1 2 -tenseness%1:26:01:: 14544335 1 0 -tenseness%1:26:02:: 14376188 2 0 -tensile%3:01:00:: 02811547 1 0 -tensile%5:00:00:formed:00 02144436 2 0 -tensile_strength%1:07:00:: 05030251 1 0 -tensimeter%1:06:00:: 04410663 1 0 -tensiometer%1:06:00:: 04410760 3 0 -tensiometer%1:06:01:: 04410886 2 0 -tensiometer%1:06:02:: 04411019 1 0 -tension%1:04:00:: 00366675 6 0 -tension%1:19:00:: 11515051 4 3 -tension%1:26:00:: 13980596 5 0 -tension%1:26:01:: 14544335 2 4 -tension%1:26:02:: 14002481 3 3 -tension%1:26:03:: 14376188 1 9 -tension_headache%1:26:00:: 14328105 1 0 -tensional%3:01:00:: 02811660 1 1 -tensionless%5:00:00:lax:01 02404793 1 1 -tensity%1:26:01:: 14544335 1 0 -tensor%1:08:00:: 05573306 2 0 -tensor%1:09:00:: 05864481 1 0 -tensor_tympani%1:08:00:: 05573474 1 0 -tent%1:06:00:: 04411264 1 17 -tent%1:17:00:: 09455910 2 0 -tent%2:42:00:: 02653996 1 0 -tent-caterpillar_moth%1:05:01:: 02307176 2 0 -tent-caterpillar_moth%1:05:02:: 02307515 1 0 -tent-fly%1:06:00:: 04412097 1 0 -tent_caterpillar%1:05:00:: 02307325 1 0 -tent_flap%1:06:00:: 04412097 1 0 -tent_peg%1:06:00:: 04412300 1 0 -tent_stitch%1:06:00:: 03920181 1 0 -tentacle%1:05:00:: 02584643 2 0 -tentacle%1:07:00:: 05195175 1 1 -tentacled%3:01:00:: 02811908 1 0 -tentacular%3:01:00:: 02811774 1 0 -tentaculata%1:05:00:: 01919504 1 0 -tentative%5:00:00:conditional:00 00556318 1 7 -tentative%5:00:00:unsettled:02 02130672 2 0 -tentatively%4:02:00:: 00179212 1 3 -tenter%1:06:00:: 04411835 1 0 -tenterhook%1:06:00:: 04411966 1 0 -tenth%1:23:00:: 13738327 1 2 -tenth%1:24:00:: 13847858 2 0 -tenth%5:00:00:ordinal:00 02203373 1 4 -tenth_cranial_nerve%1:08:00:: 05480076 1 0 -tenth_part%1:23:00:: 13738327 1 0 -tenthly%4:02:00:: 00475977 1 0 -tenthredinidae%1:05:00:: 02218563 1 0 -tenting%1:04:00:: 01055165 1 1 -tentmaker%1:18:00:: 10702077 1 0 -tentorial_sinus%1:08:00:: 05252705 1 0 -tentorium%1:08:00:: 05607402 1 0 -tenuity%1:07:01:: 05089612 2 0 -tenuity%1:07:02:: 05040939 3 0 -tenuity%1:07:03:: 05103648 1 0 -tenuous%5:00:00:insignificant:00 02164913 3 0 -tenuous%5:00:00:thin:01 02415172 2 0 -tenuous%5:00:00:thin:02 02417611 1 0 -tenuously%4:02:00:: 00227681 1 1 -tenure%1:21:00:: 13242719 2 0 -tenure%1:28:00:: 15291498 1 2 -tenure%2:41:00:: 02397460 1 0 -tenured%5:00:00:irremovable:00 01527245 1 0 -tenzing_norgay%1:18:00:: 11335491 1 0 -teodor_josef_konrad_korzeniowski%1:18:00:: 10907647 1 0 -tepal%1:20:00:: 11551044 1 0 -tepary_bean%1:20:00:: 12558680 1 0 -tepee%1:06:00:: 04412416 1 0 -tephrosia%1:20:00:: 12572373 1 0 -tephrosia_purpurea%1:20:00:: 12572759 1 0 -tephrosia_virginiana%1:20:00:: 12572858 1 0 -tepic%1:15:00:: 08745800 1 0 -tepid%5:00:00:unenthusiastic:00 00887472 2 0 -tepid%5:00:00:warm:01 02529581 1 1 -tepidity%1:07:00:: 05016936 1 0 -tepidly%4:02:00:: 00389804 1 0 -tepidness%1:07:00:: 05016936 1 0 -tepidness%1:07:01:: 04630547 2 0 -tequila%1:13:00:: 07905979 1 0 -tera%1:10:00:: 06983795 1 0 -terabit%1:23:00:: 13629854 1 0 -terabyte%1:23:00:: 13629482 2 0 -terabyte%1:23:01:: 13629676 1 0 -teraflop%1:23:00:: 13607405 1 0 -terahertz%1:28:00:: 15280108 1 0 -teras%1:05:00:: 01460108 1 0 -teratogen%1:17:00:: 09455998 1 0 -teratogenesis%1:22:00:: 13566436 1 0 -teratogenic%3:01:00:: 02811980 1 0 -teratology%1:09:00:: 06079439 1 0 -teratoma%1:26:00:: 14251045 1 0 -terazosin%1:06:00:: 04412550 1 0 -terbinafine%1:06:00:: 04412727 1 0 -terbium%1:27:00:: 14657566 1 0 -terbium_metal%1:27:00:: 14624944 1 0 -terce%1:28:00:: 15229875 1 0 -tercel%1:05:00:: 01606177 1 0 -tercelet%1:05:00:: 01606177 1 0 -tercentenary%1:28:00:: 15251757 1 0 -tercentennial%1:28:00:: 15251757 1 0 -tercet%1:23:00:: 13744044 1 0 -terebella%1:05:00:: 01937234 1 0 -terebellidae%1:05:00:: 01937015 1 0 -terebinth%1:20:00:: 12761905 1 0 -teredinid%1:05:00:: 01967094 1 0 -teredinidae%1:05:00:: 01966797 1 0 -teredo%1:05:00:: 01967308 1 0 -terefah%5:00:00:unclean:00 00428121 1 0 -terence%1:18:00:: 11335695 1 0 -terence_rattigan%1:18:00:: 11254950 1 0 -teres%1:08:00:: 05590740 1 0 -teres_major%1:08:00:: 05590939 1 0 -teres_major_muscle%1:08:00:: 05590939 1 0 -teres_minor%1:08:00:: 05591096 1 0 -teres_minor_muscle%1:08:00:: 05591096 1 0 -teres_muscle%1:08:00:: 05590740 1 0 -teresa%1:18:00:: 11335878 1 0 -teresa_of_avila%1:18:00:: 11336176 1 0 -tereshkova%1:18:00:: 11336364 1 0 -terete%5:00:00:rounded:00 02047603 1 0 -tergiversate%2:32:00:: 00757856 2 0 -tergiversate%2:32:01:: 00835506 1 0 -tergiversation%1:04:00:: 00751779 1 0 -tergiversation%1:04:01:: 00204814 2 0 -tergiversator%1:18:00:: 10168012 1 0 -teriyaki%1:13:00:: 07880080 1 0 -term%1:06:00:: 04413723 7 0 -term%1:09:00:: 05855904 4 3 -term%1:10:00:: 06303888 1 37 -term%1:10:01:: 06751974 5 1 -term%1:10:02:: 06770875 3 6 -term%1:28:00:: 15224486 2 8 -term%1:28:01:: 15226451 6 0 -term%2:32:00:: 01029642 1 15 -term_infant%1:18:00:: 10699981 1 0 -term_insurance%1:21:00:: 13348964 1 0 -term_of_a_contract%1:28:00:: 15274863 1 0 -term_of_enlistment%1:28:00:: 15293590 1 0 -term_of_office%1:28:00:: 15291498 1 1 -term_paper%1:10:00:: 06409937 1 0 -termagant%1:18:00:: 10594147 1 0 -termer%1:18:00:: 10702167 1 0 -termes%1:05:00:: 02223151 1 0 -terminable%5:00:00:impermanent:00 01758038 1 0 -terminable_interest%1:21:00:: 13288206 1 0 -terminal%1:06:00:: 04412901 1 2 -terminal%1:06:01:: 04413151 2 1 -terminal%1:06:02:: 04413419 4 0 -terminal%1:15:00:: 08566028 3 0 -terminal%3:00:00:: 01016035 3 0 -terminal%3:01:00:: 02812147 2 0 -terminal%3:01:01:: 02812306 1 0 -terminal%5:00:00:closing:00 01010271 4 0 -terminal%5:00:00:fatal:00 00994073 5 0 -terminal_emulation%1:09:00:: 05666176 1 0 -terminal_figure%1:06:00:: 04413723 1 0 -terminal_leave%1:28:00:: 15140294 1 0 -terminal_point%1:28:00:: 15268857 1 0 -terminal_velocity%1:28:00:: 15284704 1 1 -terminally%4:02:00:: 00127449 1 0 -terminate%2:30:01:: 00352826 1 8 -terminate%2:41:01:: 02402825 4 0 -terminate%2:42:00:: 02609764 2 2 -terminate%2:42:05:: 02735418 3 0 -terminated%5:00:00:expired:00 00938305 2 0 -terminated%5:00:00:finished:01 01003277 1 0 -termination%1:04:00:: 00209943 5 0 -termination%1:10:00:: 06308765 4 0 -termination%1:11:00:: 07292694 3 0 -termination%1:15:00:: 08566554 2 0 -termination%1:28:00:: 15268682 1 3 -terminative%5:00:00:closing:00 01010569 1 0 -terminator%1:18:00:: 10074339 1 0 -terminological%3:01:00:: 03123561 1 0 -terminology%1:10:00:: 06304059 1 2 -terminus%1:06:00:: 04413631 4 0 -terminus%1:06:01:: 04412901 5 0 -terminus%1:06:02:: 04413723 3 0 -terminus%1:09:00:: 05981768 2 0 -terminus%1:15:00:: 08566554 1 0 -terminus_a_quo%1:28:00:: 15266164 1 0 -terminus_ad_quem%1:28:00:: 15268857 1 0 -termite%1:05:00:: 02223266 1 0 -termitidae%1:05:00:: 02223009 1 0 -terms%1:21:00:: 13303315 2 1 -terms%1:26:00:: 13953936 1 2 -tern%1:05:00:: 02043063 1 0 -ternary%1:23:00:: 13744044 1 0 -ternary%5:00:00:multiple:00 02218547 1 0 -ternate%5:00:00:compound:00 02174305 1 0 -ternion%1:23:00:: 13744044 1 0 -terpene%1:27:00:: 15068635 1 0 -terpsichore%1:04:00:: 00428270 2 0 -terpsichore%1:18:00:: 09567044 1 0 -terpsichorean%1:18:00:: 09989502 1 0 -terpsichorean%3:01:00:: 03123695 1 0 -terra_alba%1:27:01:: 14903942 1 0 -terra_alba%1:27:02:: 14670639 3 0 -terra_alba%1:27:03:: 14813560 2 0 -terra_cotta%1:06:00:: 04414101 1 0 -terra_firma%1:17:00:: 09334396 1 1 -terra_incognita%1:15:00:: 08632096 1 0 -terra_sigillata%1:06:00:: 04414319 1 0 -terrace%1:06:00:: 03899768 1 2 -terrace%1:14:00:: 08431721 3 0 -terrace%1:17:00:: 09456207 2 0 -terrace%2:30:00:: 00141749 2 0 -terrace%2:40:00:: 02226380 1 0 -terraced_house%1:06:00:: 04413969 1 0 -terrain%1:15:00:: 08674563 1 2 -terrain_flight%1:04:00:: 00306318 1 0 -terrain_intelligence%1:04:00:: 00982536 1 0 -terramycin%1:06:00:: 03869389 1 0 -terrapene%1:05:00:: 01669068 1 0 -terrapene_ornata%1:05:00:: 01669372 1 0 -terrapin%1:05:00:: 01667778 1 0 -terrarium%1:06:00:: 04414199 1 0 -terrasse%2:40:00:: 02226380 1 0 -terre_adelie%1:15:00:: 08494782 1 0 -terrene%3:01:00:: 02810102 1 0 -terrene%5:00:00:earthly:00 01181446 2 0 -terreplein%1:15:00:: 08662427 1 0 -terrestrial%3:00:00:: 00124918 3 0 -terrestrial%3:01:00:: 02810102 1 1 -terrestrial%3:01:02:: 02780093 2 1 -terrestrial%5:00:00:earthly:00 01181661 5 0 -terrestrial%5:00:00:worldly:00 02578035 4 0 -terrestrial_dynamical_time%1:28:00:: 15156746 1 0 -terrestrial_guidance%1:04:00:: 00817191 1 0 -terrestrial_planet%1:17:00:: 09456369 1 0 -terrestrial_time%1:28:00:: 15156746 1 0 -terrestrially%4:02:00:: 00127534 2 0 -terrestrially%4:02:01:: 00404879 1 0 -terrible%5:00:00:alarming:00 00193799 1 11 -terrible%5:00:00:extraordinary:00 01677200 4 0 -terrible%5:00:00:intense:00 01513050 3 1 -terrible%5:00:01:bad:00 01126291 2 2 -terribleness%1:07:00:: 04782116 1 0 -terribly%4:02:00:: 00054950 1 8 -terribly%4:02:01:: 00055101 2 0 -terrier%1:05:00:: 02092468 1 2 -terrietia%1:20:00:: 12199564 1 0 -terrietia_trifoliolata%1:20:00:: 12199790 1 0 -terrific%5:00:00:alarming:00 00196449 3 0 -terrific%5:00:00:extraordinary:00 01676517 2 2 -terrific%5:00:00:intense:00 01513619 1 3 -terrifically%4:02:00:: 00183090 1 0 -terrified%5:00:00:afraid:00 00080357 1 4 -terrify%2:37:00:: 01780941 1 1 -terrifying%5:00:00:alarming:00 00196449 1 3 -terrine%1:13:00:: 07880213 1 0 -territorial%1:14:00:: 08391206 2 0 -territorial%1:18:00:: 10702307 1 0 -territorial%3:00:00:: 02408611 3 0 -territorial%3:00:01:: 02409500 2 0 -territorial%3:01:00:: 02812482 1 2 -territorial_army%1:14:00:: 08391953 1 0 -territorial_division%1:15:00:: 08491826 1 0 -territorial_dominion%1:15:00:: 08552138 1 0 -territorial_reserve%1:14:00:: 08391206 1 0 -territorial_waters%1:17:00:: 09456614 1 0 -territorialisation%1:04:00:: 01016973 1 0 -territorialise%2:30:00:: 00540624 3 0 -territorialise%2:30:01:: 00579952 2 0 -territorialise%2:41:00:: 02432975 1 0 -territoriality%1:04:00:: 01221464 1 0 -territorialization%1:04:00:: 01016973 1 0 -territorialize%2:30:00:: 00540624 3 0 -territorialize%2:30:01:: 00579952 2 0 -territorialize%2:41:00:: 02432975 1 0 -territorially%4:02:00:: 00127640 1 0 -territory%1:09:00:: 05999134 2 2 -territory%1:15:00:: 08552138 1 6 -territory%1:15:01:: 08493064 3 0 -terror%1:04:00:: 00759500 4 0 -terror%1:12:00:: 07520612 1 11 -terror%1:18:00:: 10702483 3 0 -terror%1:18:01:: 10702615 2 1 -terror-stricken%5:00:00:afraid:00 00080981 1 1 -terror-struck%5:00:00:afraid:00 00080981 1 1 -terrorisation%1:04:00:: 01222666 1 0 -terrorisation%1:04:01:: 00765193 2 0 -terrorise%2:37:00:: 01780941 2 0 -terrorise%2:41:00:: 02506361 1 0 -terrorism%1:04:00:: 00759694 1 0 -terrorist%1:18:00:: 10702781 1 1 -terrorist_act%1:04:00:: 00759694 1 0 -terrorist_attack%1:04:00:: 01246697 1 0 -terrorist_cell%1:14:00:: 08358963 1 0 -terrorist_group%1:14:00:: 08392137 1 0 -terrorist_organization%1:14:00:: 08392137 1 0 -terrorization%1:04:00:: 01222666 1 0 -terrorization%1:04:01:: 00765193 2 0 -terrorize%2:37:00:: 01780941 2 0 -terrorize%2:41:00:: 02506361 1 1 -terry%1:06:00:: 04414476 2 0 -terry%1:18:00:: 11336544 1 0 -terry_cloth%1:06:00:: 04414476 1 0 -terry_towel%1:06:00:: 04499446 1 0 -terrycloth%1:06:00:: 04414476 1 1 -terse%5:00:00:concise:00 00547641 1 1 -tersely%4:02:00:: 00474902 1 1 -terseness%1:10:00:: 07088438 1 0 -tertian%3:01:00:: 03123964 1 0 -tertian%3:01:01:: 03123830 2 0 -tertiary%1:28:00:: 15125097 1 0 -tertiary%5:00:00:ordinal:00 02202307 1 0 -tertiary_period%1:28:00:: 15125097 1 0 -tertiary_syphilis%1:26:00:: 14134623 1 0 -tertigravida%1:18:00:: 10703221 1 0 -tertium_quid%1:24:00:: 13858481 1 0 -tertry%1:04:00:: 01296946 1 0 -tertullian%1:18:00:: 11336668 1 0 -terylene%1:06:00:: 03158414 1 0 -terza_rima%1:10:00:: 06381761 1 0 -terzetto%1:23:00:: 13744044 1 0 -tesla%1:18:00:: 11336850 2 0 -tesla%1:23:00:: 13639009 1 0 -tesla_coil%1:06:00:: 04414675 1 0 -tessella%1:06:00:: 04414821 1 0 -tessellate%2:35:00:: 01338878 2 0 -tessellate%2:42:00:: 02660014 1 0 -tessellated%5:00:00:adorned:00 00059326 2 0 -tessellated%5:00:00:patterned:00 01790938 1 0 -tessellation%1:04:00:: 00263164 2 0 -tessellation%1:04:01:: 01052078 1 0 -tessera%1:06:00:: 04414909 1 0 -tesseract%1:25:00:: 13916927 1 0 -tessin%1:15:00:: 08801546 1 0 -test%1:04:00:: 00791078 5 2 -test%1:04:02:: 01006675 2 7 -test%1:04:03:: 00794367 4 2 -test%1:05:00:: 01904699 6 0 -test%1:09:02:: 05799212 1 19 -test%1:10:00:: 07197021 3 2 -test%2:31:06:: 00669970 7 0 -test%2:32:00:: 00786458 3 4 -test%2:32:08:: 00920778 6 0 -test%2:33:00:: 01112584 5 0 -test%2:41:00:: 02531625 1 32 -test%2:41:01:: 02533109 2 9 -test%2:42:00:: 02745713 4 0 -test-cross%1:04:00:: 00851316 1 0 -test-tube_baby%1:18:00:: 10704238 1 0 -test_ban%1:10:00:: 07255628 1 0 -test_bed%1:06:00:: 04415078 1 0 -test_case%1:04:00:: 01198588 1 0 -test_copy%1:10:00:: 06590885 1 0 -test_drive%1:09:00:: 05800387 1 0 -test_drive%2:38:00:: 01931375 1 0 -test_driver%1:18:00:: 10703553 1 0 -test_equipment%1:06:00:: 04415257 1 0 -test_fly%2:38:00:: 01942137 1 0 -test_instrument_vehicle%1:06:00:: 04415663 1 0 -test_match%1:11:00:: 07471126 1 0 -test_paper%1:06:00:: 04415460 2 0 -test_paper%1:10:00:: 07199328 1 0 -test_period%1:28:00:: 15115926 1 0 -test_pilot%1:18:00:: 10704098 1 0 -test_range%1:06:00:: 04415578 1 0 -test_rocket%1:06:00:: 04415663 1 0 -test_room%1:06:00:: 04415815 1 0 -test_suit%1:04:00:: 01198588 1 1 -test_tube%1:06:00:: 04415921 1 1 -testa%1:20:00:: 11682349 1 0 -testacea%1:05:00:: 01393873 1 0 -testacean%1:05:00:: 01394040 1 0 -testaceous%3:01:00:: 02812697 1 0 -testament%1:09:00:: 05800272 1 2 -testament%1:10:00:: 06544142 2 1 -testament%1:10:01:: 06453723 4 0 -testament%1:10:02:: 06648590 3 0 -testamentary%3:01:00:: 02812838 1 0 -testamentary_trust%1:21:00:: 13363217 1 0 -testate%1:18:00:: 10703336 1 0 -testate%3:00:00:: 02444758 1 0 -testator%1:18:00:: 10703336 1 0 -testatrix%1:18:00:: 10703480 1 0 -testcross%1:04:00:: 00851316 1 0 -tested%5:00:00:proved:00 01894196 1 2 -tested%5:00:00:reliable:00 00724596 2 1 -testee%1:18:00:: 10703692 1 0 -tester%1:06:00:: 04415354 2 0 -tester%1:18:00:: 10068234 1 0 -testicle%1:08:00:: 05524615 1 2 -testicular%3:01:00:: 02933304 1 0 -testicular_artery%1:08:00:: 05355527 1 0 -testicular_cancer%1:26:00:: 14252184 1 0 -testicular_vein%1:08:00:: 05382729 1 0 -testiere%1:06:00:: 03005619 1 0 -testifier%1:18:00:: 10703905 1 0 -testify%2:32:01:: 01014821 1 13 -testify%2:32:02:: 01015244 2 1 -testily%4:02:00:: 00216592 1 1 -testimonial%1:10:00:: 06694540 3 0 -testimonial%1:10:01:: 06697195 2 1 -testimonial%1:10:02:: 06648207 1 2 -testimonial%3:01:00:: 02812989 2 0 -testimonial%3:01:01:: 02813162 1 0 -testimonial_immunity%1:04:00:: 00215013 1 0 -testimony%1:10:00:: 06734467 1 5 -testimony%1:10:01:: 06732710 2 4 -testimony%1:10:02:: 06648207 3 2 -testiness%1:12:00:: 07553016 1 0 -testing%1:04:00:: 00639975 1 5 -testing%1:04:02:: 00636461 3 2 -testing%1:04:03:: 00644702 2 4 -testing_ground%1:15:00:: 08662570 1 0 -testing_room%1:06:00:: 04415815 1 3 -testis%1:08:00:: 05524615 1 0 -testosterone%1:27:00:: 14748577 1 0 -testudinata%1:05:00:: 01662274 1 0 -testudines%1:05:00:: 01662274 1 0 -testudinidae%1:05:00:: 01669883 1 0 -testudo%1:05:00:: 01670378 2 0 -testudo%1:06:00:: 04416005 1 0 -testudo_graeca%1:05:00:: 01670535 1 0 -testy%5:00:00:ill-natured:00 01136541 1 0 -tet%1:28:00:: 15183266 1 0 -tetanic%3:01:00:: 03124111 2 0 -tetanic%3:01:01:: 03124201 1 0 -tetanilla%1:26:00:: 14310504 1 0 -tetanus%1:04:00:: 00370127 2 0 -tetanus%1:26:00:: 14185803 1 0 -tetanus_antitoxin%1:27:00:: 15028378 1 0 -tetanus_immune_globulin%1:27:00:: 15032071 1 0 -tetanus_immunoglobulin%1:27:00:: 15032071 1 0 -tetany%1:26:00:: 14310504 1 0 -tetartanopia%1:26:00:: 14154832 1 0 -tetchily%4:02:00:: 00476116 1 0 -tetchiness%1:12:00:: 07553016 1 0 -tetchy%5:00:00:ill-natured:00 01136541 1 0 -tete-a-tete%1:06:00:: 03693474 2 0 -tete-a-tete%1:10:00:: 07142107 1 0 -tete-a-tete%5:00:00:private:00 01860890 1 0 -tete_a_tete%4:02:00:: 00045254 1 0 -teth%1:10:00:: 06837572 1 0 -tether%1:06:00:: 03652932 1 0 -tether%2:35:00:: 01290009 1 1 -tetherball%1:04:00:: 00464277 1 0 -tethered%5:00:00:bound:01 00253757 1 0 -tethyidae%1:05:00:: 01950952 1 0 -tethys%1:05:00:: 01951107 2 0 -tethys%1:18:00:: 09577467 1 0 -teton%1:18:00:: 09669631 1 0 -teton_dakota%1:18:00:: 09669631 1 0 -teton_range%1:17:00:: 09456860 1 0 -teton_sioux%1:18:00:: 09669631 1 0 -tetra%1:05:00:: 02583890 1 0 -tetrabasic_acid%1:27:00:: 14611679 1 0 -tetrabromo-phenolsulfonephthalein%1:27:00:: 14986719 1 0 -tetracaine%1:06:00:: 04416201 1 0 -tetrachlorethylene%1:06:00:: 04416338 1 0 -tetrachloride%1:27:00:: 15068754 1 0 -tetrachloroethylene%1:06:00:: 04416338 1 0 -tetrachloromethane%1:27:00:: 14798039 1 0 -tetrachoric_correlation%1:09:00:: 06035918 1 0 -tetrachoric_correlation_coefficient%1:09:00:: 06035918 1 0 -tetraclinis%1:20:00:: 11642912 1 0 -tetraclinis_articulata%1:20:00:: 11643022 1 0 -tetracycline%1:06:00:: 04416530 1 0 -tetrad%1:23:00:: 13744304 1 0 -tetradecanoic_acid%1:27:00:: 14958102 1 0 -tetraethyl_lead%1:27:00:: 14600357 1 0 -tetrafluoroethylene%1:27:00:: 15068891 1 0 -tetragon%1:25:00:: 13879126 1 0 -tetragonal%3:01:00:: 02834480 1 0 -tetragonia%1:20:00:: 11822167 1 0 -tetragonia_expansa%1:20:00:: 11822300 1 0 -tetragonia_tetragonioides%1:20:00:: 11822300 1 0 -tetragoniaceae%1:20:00:: 11818945 1 0 -tetragonurus%1:05:00:: 02634717 1 0 -tetragram%1:10:00:: 06360850 1 0 -tetragrammaton%1:10:00:: 06360996 1 0 -tetrahalide%1:27:00:: 15069046 1 0 -tetrahedron%1:25:00:: 13915113 1 0 -tetrahydrocannabinol%1:06:00:: 04416785 1 0 -tetrahymena%1:05:00:: 01396322 1 0 -tetraiodothyronine%1:08:00:: 05413647 1 0 -tetralogy%1:10:00:: 06622252 1 0 -tetralogy_of_fallot%1:26:00:: 14469766 1 0 -tetramerous%5:00:00:multilateral:00 00239185 1 0 -tetrameter%1:10:00:: 07096029 1 0 -tetramethyldiarsine%1:27:00:: 14788875 1 0 -tetrametric%3:01:00:: 02834603 1 0 -tetraneuris%1:20:00:: 12025019 1 0 -tetraneuris_acaulis%1:20:00:: 12025220 1 0 -tetraneuris_grandiflora%1:20:00:: 12025507 1 0 -tetranychid%1:05:00:: 01782209 1 0 -tetranychidae%1:05:00:: 01782050 1 0 -tetrao%1:05:00:: 01796870 1 0 -tetrao_urogallus%1:05:00:: 01797020 1 0 -tetraodontidae%1:05:00:: 02654890 1 0 -tetraonidae%1:05:00:: 01794813 1 0 -tetrapod%1:05:00:: 02156732 1 0 -tetrapturus%1:05:00:: 02631899 1 0 -tetrasaccharide%1:27:00:: 15069161 1 0 -tetraskele%1:06:00:: 04416901 1 0 -tetraskelion%1:06:00:: 04416901 1 0 -tetrasodium_pyrophosphate%1:27:00:: 15046077 1 1 -tetrasporangium%1:20:00:: 13093275 1 0 -tetraspore%1:20:00:: 11549779 1 0 -tetravalent%3:01:00:: 03124290 1 0 -tetrazzini%1:13:00:: 07864638 1 0 -tetri%1:23:00:: 13700766 1 0 -tetrode%1:06:00:: 04417086 1 0 -tetrodotoxin%1:27:00:: 15069338 1 0 -tetrose%1:27:00:: 14689940 1 0 -tetroxide%1:27:00:: 15069472 1 0 -tetryl%1:27:00:: 15069584 1 0 -tetterwort%1:20:00:: 11908077 1 0 -tettigoniid%1:05:00:: 02227966 1 0 -tettigoniidae%1:05:00:: 02227773 1 0 -teucrium%1:20:00:: 12869248 1 0 -teucrium_canadense%1:20:00:: 12869668 1 0 -teucrium_chamaedrys%1:20:00:: 12869874 1 0 -teucrium_marum%1:20:00:: 12870048 1 0 -teucrium_scorodonia%1:20:00:: 12870225 1 0 -teutoburger_wald%1:04:00:: 01297095 1 0 -teuton%1:18:00:: 09689152 2 0 -teuton%1:18:01:: 09747969 1 0 -teutonic%3:01:00:: 02958126 1 1 -teutonic_deity%1:18:00:: 09585434 1 0 -teutonist%1:18:00:: 10704516 1 0 -tevere%1:17:00:: 09457851 1 0 -tevet%1:28:00:: 15215068 1 0 -tewkesbury%1:04:00:: 01297291 1 0 -texan%1:18:00:: 09745834 1 2 -texan%3:01:00:: 03124392 1 0 -texarkana%1:15:00:: 09060615 2 0 -texarkana%1:15:01:: 09146451 1 0 -texas%1:15:00:: 09141526 1 14 -texas_armadillo%1:05:00:: 02454794 1 0 -texas_bluebonnet%1:20:01:: 12547215 2 0 -texas_bluebonnet%1:20:02:: 12547503 1 0 -texas_chachalaca%1:05:00:: 01800633 1 0 -texas_fever%1:26:00:: 14276081 1 0 -texas_horned_lizard%1:05:00:: 01682172 1 0 -texas_independence_day%1:28:00:: 15187800 1 0 -texas_leaguer%1:04:00:: 00150228 1 0 -texas_longhorn%1:05:00:: 02404432 1 0 -texas_millet%1:20:00:: 12127768 1 0 -texas_purple_spike%1:20:00:: 12069217 1 0 -texas_ranger%1:18:00:: 10704712 1 0 -texas_snowbell%1:20:00:: 12777892 1 0 -texas_snowbells%1:20:00:: 12777892 1 0 -texas_star%1:20:01:: 11992479 2 0 -texas_star%1:20:02:: 12298637 1 0 -texas_storksbill%1:20:00:: 12689491 1 0 -texas_toad%1:05:00:: 01647303 1 0 -texas_tortoise%1:05:00:: 01671705 1 0 -text%1:10:00:: 06387980 1 53 -text%1:10:01:: 06388579 4 0 -text%1:10:02:: 06414372 3 0 -text%1:10:03:: 07172557 2 0 -text-matching%1:10:00:: 06581068 1 0 -text_edition%1:10:00:: 06414372 1 0 -text_editor%1:10:00:: 06576727 2 0 -text_editor%1:18:00:: 09964659 1 0 -text_file%1:10:00:: 06510977 1 0 -textbook%1:10:00:: 06414372 1 0 -textbook%5:00:00:standard:01 02295511 1 0 -textile%1:06:00:: 03309808 1 7 -textile%3:01:00:: 03124541 1 0 -textile_machine%1:06:00:: 04417180 1 0 -textile_mill%1:06:00:: 04417361 1 0 -textile_screw_pine%1:20:00:: 12155009 1 0 -textual%3:01:00:: 02925879 1 0 -textual_criticism%1:10:00:: 06375008 1 0 -textual_matter%1:10:00:: 06387980 1 0 -texture%1:07:00:: 04946877 1 13 -texture%1:07:01:: 04950537 4 0 -texture%1:07:02:: 04984007 3 1 -texture%1:07:03:: 04934220 5 0 -texture%1:09:00:: 05849667 2 3 -textured%5:00:00:rough:00 02243086 1 1 -th%1:27:00:: 14658109 2 0 -th%1:28:00:: 15164354 1 0 -thackeray%1:18:00:: 11337202 1 0 -thaddaeus%1:18:00:: 11094055 1 0 -thaddeus_kosciusko%1:18:00:: 11109728 1 0 -thai%1:10:00:: 06936149 2 0 -thai%1:18:00:: 09734294 1 0 -thai%3:01:00:: 03116651 3 0 -thai%3:01:01:: 03116809 2 0 -thai%3:01:02:: 03117012 1 0 -thai_monetary_unit%1:23:00:: 13663694 1 0 -thailand%1:15:00:: 09036452 1 1 -thalamocortical%3:01:00:: 02982956 1 0 -thalamostriate_vein%1:08:00:: 05382855 1 0 -thalamus%1:08:00:: 05499172 1 0 -thalarctos%1:05:00:: 02133902 1 0 -thalarctos_maritimus%1:05:00:: 02134084 1 0 -thalassaemia%1:26:00:: 14195715 1 0 -thalassaemia_major%1:26:00:: 14195939 1 0 -thalassemia%1:26:00:: 14195715 1 0 -thalassemia_major%1:26:00:: 14195939 1 0 -thalassic%3:01:00:: 02889978 1 0 -thalassoma%1:05:00:: 02609169 1 0 -thalassoma_bifasciatum%1:05:00:: 02609302 1 0 -thales%1:18:00:: 11337331 1 0 -thales_of_miletus%1:18:00:: 11337331 1 0 -thalia%1:18:00:: 09567180 1 0 -thalia%1:18:01:: 09495849 2 0 -thaliacea%1:05:00:: 01469222 1 0 -thalictrum%1:20:00:: 11738378 1 0 -thalidomide%1:06:00:: 04417467 1 0 -thalidone%1:06:00:: 03023623 1 0 -thallium%1:27:00:: 14657818 1 0 -thalloid%3:01:00:: 03142399 1 0 -thallophyta%1:20:00:: 11531457 1 0 -thallophyte%1:20:00:: 11531701 1 0 -thallophytic%3:01:00:: 03142512 1 0 -thallus%1:20:00:: 11532017 1 0 -thalmencephalon%1:08:00:: 05496990 1 0 -thalweg%1:10:00:: 06801865 2 0 -thalweg%1:25:00:: 13912686 1 0 -thames%1:17:00:: 09457020 1 0 -thames_river%1:17:00:: 09457020 1 0 -thammuz%1:28:00:: 15216386 1 0 -thamnophilus%1:05:00:: 01553620 1 0 -thamnophis%1:05:00:: 01735062 1 1 -thamnophis_proximus%1:05:00:: 01735728 1 0 -thamnophis_sauritus%1:05:00:: 01735577 1 0 -thamnophis_sirtalis%1:05:00:: 01735439 1 0 -thanatology%1:09:00:: 06153698 1 0 -thanatophobia%1:26:00:: 14384602 1 0 -thanatopsis%1:10:00:: 06410283 1 0 -thanatos%1:16:00:: 09180967 2 0 -thanatos%1:18:00:: 09555514 1 0 -thane%1:18:01:: 10704886 2 0 -thane%1:18:02:: 10705100 1 0 -thaneship%1:04:00:: 00604910 1 0 -thank%2:32:00:: 00892315 1 17 -thank_offering%1:21:00:: 13273050 1 0 -thank_you%1:10:00:: 07229245 1 3 -thankful%3:00:00:: 01146493 1 0 -thankfully%4:02:00:: 00199882 2 0 -thankfully%4:02:01:: 00199986 1 0 -thankfulness%1:12:00:: 07504529 1 1 -thankless%3:00:00:: 01147044 1 0 -thankless%5:00:00:unrewarding:00 02016145 2 0 -thankless_wretch%1:18:00:: 10206763 1 0 -thanks%1:04:00:: 01208797 2 2 -thanks%1:10:00:: 07228971 1 7 -thanksgiving%1:10:00:: 07190039 2 0 -thanksgiving%1:28:00:: 15201116 1 2 -thanksgiving_cactus%1:20:00:: 11854479 1 0 -thanksgiving_day%1:28:00:: 15201116 1 0 -thar_desert%1:15:00:: 09173417 1 0 -tharp%1:18:00:: 11337629 1 0 -that_is_to_say%4:02:00:: 00188510 1 4 -that_much%4:02:00:: 00023074 1 4 -thatch%1:06:00:: 04417672 4 0 -thatch%1:08:00:: 05261310 1 1 -thatch%1:18:00:: 11334003 3 0 -thatch%1:27:00:: 15069712 2 0 -thatch%2:35:00:: 01233838 1 0 -thatch_palm%1:20:00:: 12597798 1 0 -thatch_tree%1:20:00:: 12597798 1 0 -thatched_roof%1:06:00:: 04417672 1 0 -thatcher%1:18:00:: 10705211 2 0 -thatcher%1:18:01:: 11337779 1 0 -thatcherism%1:09:00:: 05987522 1 0 -thatcherite%1:18:00:: 10705345 1 0 -thaumatolatry%1:04:00:: 01045520 1 0 -thaumaturge%1:18:00:: 10625860 1 0 -thaumaturgist%1:18:00:: 10625860 1 0 -thaumaturgy%1:04:00:: 00099951 2 0 -thaumaturgy%1:09:00:: 05967977 1 0 -thaw%1:11:00:: 07443539 3 0 -thaw%1:19:00:: 11482140 2 1 -thaw%1:22:00:: 13566535 1 1 -thaw%2:30:00:: 00376106 1 5 -thawed%5:00:00:melted:00 01506661 1 0 -thawed%5:00:00:unfrozen:00 01080197 2 0 -thawing%1:19:00:: 11482140 2 0 -thawing%1:22:00:: 13566535 1 1 -thb%1:10:00:: 06699926 1 0 -thc%1:06:00:: 04416785 1 0 -thd%1:10:00:: 06704482 1 0 -the_absurd%1:26:00:: 13928191 1 0 -the_admirable_crichton%1:18:00:: 10915025 1 0 -the_alps%1:17:00:: 09194357 1 0 -the_boot%1:06:00:: 02873363 1 0 -the_city%1:14:00:: 08073355 2 0 -the_city%1:15:00:: 08874273 1 0 -the_devil%1:04:00:: 00624147 1 0 -the_flood%1:19:00:: 11455386 1 0 -the_gambia%1:15:00:: 08945821 1 0 -the_great_calamity%1:11:00:: 07315965 1 0 -the_great_charter%1:10:00:: 06477003 1 0 -the_great_compromiser%1:18:00:: 10899951 1 0 -the_great_hunger%1:11:00:: 07315965 1 0 -the_great_starvation%1:11:00:: 07315965 1 0 -the_great_unwashed%1:14:00:: 08180190 1 0 -the_hague%1:15:00:: 08950407 1 0 -the_halt%1:14:00:: 07946516 1 0 -the_hill%1:15:00:: 09071349 1 0 -the_holy_see%1:15:00:: 09161090 1 0 -the_hots%1:12:00:: 07490138 1 0 -the_indies%1:15:00:: 08747054 1 1 -the_irish_famine%1:11:00:: 07315965 1 0 -the_least_bit%4:02:00:: 00056729 1 2 -the_like%1:09:00:: 05845888 1 4 -the_likes_of%1:09:00:: 05845888 1 0 -the_nazarene%1:18:00:: 11083656 1 0 -the_netherlands%1:15:00:: 08949093 1 2 -the_other_way_around%4:02:00:: 00177686 1 0 -the_pamirs%1:17:00:: 09384223 1 0 -the_pits%1:15:00:: 08582837 1 0 -the_right_way%4:02:00:: 00196203 1 0 -the_shits%1:26:00:: 14372286 1 2 -the_skinny%1:10:00:: 06636113 1 0 -the_star-spangled_banner%1:10:01:: 07049291 1 0 -the_states%1:15:00:: 09044862 1 0 -the_street%1:14:00:: 08073468 1 0 -the_tempter%1:18:00:: 09543353 1 0 -the_three_estates%1:14:00:: 08167365 1 0 -the_trots%1:26:00:: 14372286 1 0 -the_true%1:26:00:: 13956488 1 0 -the_venerable_bede%1:18:00:: 10840769 1 0 -the_virgin%1:18:00:: 11161412 1 1 -the_way_of_the_world%1:04:00:: 01226289 1 0 -the_ways_of_the_world%1:04:00:: 01226289 1 0 -the_whole_way%4:02:00:: 00152066 1 0 -thea%1:18:00:: 09576164 1 0 -theaceae%1:20:00:: 12929061 1 0 -theanthropism%1:09:00:: 05767580 1 0 -theanthropism%1:09:01:: 05767386 2 0 -theater%1:06:00:: 04417809 1 7 -theater%1:10:00:: 07006119 2 3 -theater%1:15:00:: 08551628 3 0 -theater_company%1:14:00:: 08187460 1 0 -theater_critic%1:18:00:: 10030147 1 0 -theater_curtain%1:06:00:: 04418357 1 0 -theater_director%1:18:00:: 10015215 1 0 -theater_in_the_round%1:06:00:: 02736645 1 0 -theater_light%1:06:00:: 04418644 1 0 -theater_of_operations%1:15:00:: 08551628 1 0 -theater_of_the_absurd%1:10:00:: 07009161 1 0 -theater_of_war%1:15:00:: 08551420 1 0 -theater_prompter%1:18:00:: 10482414 1 0 -theater_stage%1:06:00:: 04418818 1 0 -theater_ticket%1:10:00:: 06519728 1 0 -theatergoer%1:18:00:: 10440717 1 0 -theatre%1:06:00:: 04417809 1 9 -theatre%1:10:00:: 07006119 2 2 -theatre%1:15:00:: 08551628 3 0 -theatre_curtain%1:06:00:: 04418357 1 0 -theatre_director%1:18:00:: 10015215 1 0 -theatre_of_operations%1:15:00:: 08551628 1 0 -theatre_of_war%1:15:00:: 08551420 1 0 -theatre_stage%1:06:00:: 04418818 1 0 -theatre_ticket%1:10:00:: 06519728 1 0 -theatregoer%1:18:00:: 10440717 1 1 -theatrical%1:10:00:: 06893885 1 0 -theatrical%3:00:00:: 00796047 2 1 -theatrical%3:01:00:: 02813315 1 1 -theatrical_agent%1:18:00:: 09767592 1 0 -theatrical_performance%1:10:00:: 06893885 1 0 -theatrical_poster%1:10:00:: 06793817 1 0 -theatrical_producer%1:18:00:: 10705448 1 0 -theatrical_production%1:10:00:: 07007171 1 0 -theatrical_role%1:09:00:: 05929008 1 0 -theatrical_season%1:28:00:: 15241405 1 0 -theatricality%1:07:00:: 04788693 1 0 -theatrically%4:02:00:: 00465008 1 2 -theatrically%4:02:01:: 00188248 2 0 -theban%1:18:00:: 09711870 2 0 -theban%1:18:01:: 09711978 1 0 -theban%3:01:00:: 02813437 2 0 -theban%3:01:01:: 02813557 1 0 -thebe%1:23:00:: 13696050 1 0 -thebes%1:15:00:: 08789076 2 0 -thebes%1:15:01:: 08899776 1 0 -theca%1:05:02:: 01905321 2 0 -theca%1:20:00:: 13092722 1 0 -thecodont%1:05:00:: 01723883 1 0 -thecodont_reptile%1:05:00:: 01723883 1 0 -thecodontia%1:05:00:: 01723678 1 0 -theelin%1:27:00:: 14750782 1 0 -theft%1:04:00:: 00780889 1 0 -theia%1:18:00:: 09576164 1 0 -theism%1:09:00:: 06223669 1 0 -theist%1:18:00:: 09848110 1 0 -theist%3:01:00:: 02931345 1 0 -theistic%3:01:00:: 02931345 1 1 -theistical%3:01:00:: 02931345 1 0 -thelarche%1:11:00:: 07325864 1 0 -thelephoraceae%1:20:00:: 13015040 1 0 -thelonious_monk%1:18:00:: 11185500 1 0 -thelonious_sphere_monk%1:18:00:: 11185500 1 0 -thelypteridaceae%1:20:00:: 13227235 1 0 -thelypteris%1:20:00:: 13227557 1 0 -thelypteris_dryopteris%1:20:00:: 13197274 1 0 -thelypteris_hexagonoptera%1:20:00:: 13230843 1 0 -thelypteris_palustris%1:20:00:: 13227778 1 0 -thelypteris_palustris_pubescens%1:20:00:: 13228017 1 0 -thelypteris_phegopteris%1:20:00:: 13231078 1 0 -thelypteris_simulata%1:20:00:: 13230190 1 0 -thematic%3:01:00:: 02813680 1 1 -thematic%3:01:01:: 02813978 2 0 -thematic_apperception_test%1:04:00:: 01008097 1 0 -thematic_vowel%1:10:00:: 07114284 1 0 -thematically%4:02:00:: 00127752 1 0 -theme%1:09:01:: 05920272 2 5 -theme%1:10:00:: 06599788 1 9 -theme%1:10:01:: 06409752 4 0 -theme%1:10:02:: 07029247 3 0 -theme%1:10:03:: 06300193 5 0 -theme%2:40:00:: 02363597 1 0 -theme_park%1:15:00:: 08662914 1 0 -theme_song%1:10:00:: 07028964 2 0 -theme_song%1:10:01:: 07029088 1 0 -themis%1:18:00:: 09577004 1 0 -themistocles%1:18:00:: 11337999 1 0 -then%1:28:00:: 15296354 1 6 -then%4:02:00:: 00117620 1 333 -then%4:02:01:: 00117903 3 87 -then%4:02:02:: 00118032 2 117 -then%5:00:00:past:00 01731108 1 1 -then_again%4:02:00:: 00119578 1 4 -thenal%3:01:00:: 02814104 1 0 -thenar%1:08:00:: 05565696 2 0 -thenar%1:08:01:: 05565937 1 0 -thenar%3:01:00:: 02814104 1 0 -thence%4:02:00:: 00043003 3 0 -thence%4:02:01:: 00043608 1 2 -thence%4:02:02:: 00043794 2 0 -thenceforth%4:02:01:: 00146281 1 1 -theobid%1:06:00:: 04419315 1 0 -theobroma%1:20:00:: 12201456 1 0 -theobroma_cacao%1:20:00:: 12201580 1 0 -theocracy%1:09:00:: 06221224 2 0 -theocracy%1:14:00:: 08363428 1 0 -theocratic%3:01:00:: 02990819 1 0 -theodicy%1:09:00:: 06183745 1 0 -theodolite%1:06:00:: 04419073 1 0 -theodor_mommsen%1:18:00:: 11185044 1 0 -theodor_schwann%1:18:00:: 11287734 1 0 -theodor_seuss_geisel%1:18:00:: 10993636 1 0 -theodore_dreiser%1:18:00:: 10943115 1 0 -theodore_dwight_weld%1:18:00:: 11380655 1 0 -theodore_francis_powys%1:18:00:: 11245744 1 0 -theodore_harold_white%1:18:00:: 11384022 1 0 -theodore_herman_albert_dreiser%1:18:00:: 10943115 1 0 -theodore_roosevelt%1:18:00:: 11269697 1 0 -theodore_roosevelt_memorial_national_park%1:15:00:: 08609278 1 0 -theodore_samuel_williams%1:18:00:: 11389901 1 0 -theodosius%1:18:00:: 11338172 1 0 -theodosius_i%1:18:00:: 11338172 1 0 -theodosius_the_great%1:18:00:: 11338172 1 0 -theogony%1:09:00:: 06248863 1 0 -theologian%1:18:00:: 10705615 1 9 -theological%3:01:00:: 02907000 1 15 -theological_doctrine%1:09:00:: 06186301 1 0 -theological_system%1:09:00:: 06183899 1 0 -theological_virtue%1:07:00:: 04847991 1 0 -theologically%4:02:00:: 00476247 2 0 -theologically%4:02:01:: 00476402 1 0 -theologise%2:31:00:: 00631398 2 0 -theologise%2:32:00:: 01034118 1 0 -theologiser%1:18:00:: 10705615 1 0 -theologist%1:18:00:: 10705615 1 0 -theologize%2:31:00:: 00631398 2 0 -theologize%2:32:00:: 01034118 1 0 -theologizer%1:18:00:: 10705615 1 0 -theology%1:04:00:: 00613973 3 1 -theology%1:09:00:: 06183899 2 6 -theology%1:09:01:: 06182144 1 11 -theophany%1:11:00:: 07323682 1 0 -theophrastaceae%1:20:00:: 12099556 1 0 -theophrastus%1:18:00:: 11338484 1 0 -theophrastus_philippus_aureolus_bombastus_von_hohenheim%1:18:00:: 11222054 1 0 -theophylline%1:06:00:: 04419315 1 0 -theorem%1:09:00:: 05918267 2 0 -theorem%1:10:00:: 06752293 1 14 -theoretic%3:00:00:: 00860611 1 0 -theoretical%3:00:00:: 00860611 1 8 -theoretical%3:00:01:: 00862327 2 0 -theoretical_account%1:09:00:: 05890249 1 0 -theoretically%4:02:00:: 00170045 1 2 -theoretically%4:02:01:: 00170188 2 1 -theoretician%1:18:00:: 10706812 1 0 -theorisation%1:09:00:: 05779371 1 0 -theorise%2:31:00:: 00633443 1 0 -theoriser%1:18:00:: 10706812 1 0 -theorist%1:18:00:: 10706812 1 1 -theorization%1:09:00:: 05779371 1 0 -theorize%2:31:00:: 00633443 1 2 -theorize%2:31:01:: 00632931 3 0 -theorize%2:31:02:: 00633094 2 0 -theorizer%1:18:00:: 10706812 1 0 -theory%1:09:00:: 05989479 1 49 -theory%1:09:01:: 05888929 2 18 -theory%1:09:02:: 05952979 3 5 -theory-based%5:00:00:theoretical:00 00862190 1 0 -theory_of_dissociation%1:09:00:: 06108850 1 0 -theory_of_electrolytic_dissociation%1:09:00:: 06108850 1 0 -theory_of_evolution%1:09:00:: 06109227 1 0 -theory_of_games%1:09:00:: 06150222 1 0 -theory_of_gravitation%1:09:00:: 05990089 1 0 -theory_of_gravity%1:09:00:: 05990089 1 0 -theory_of_indicators%1:09:00:: 06109487 1 0 -theory_of_inheritance%1:09:00:: 06109771 1 0 -theory_of_organic_evolution%1:09:00:: 06109227 1 0 -theory_of_preformation%1:09:00:: 05992949 1 0 -theory_of_probability%1:09:00:: 06037108 1 0 -theory_of_punctuated_equilibrium%1:09:00:: 06111003 1 0 -theory_of_relativity%1:09:00:: 06106502 1 0 -theosophical%3:01:00:: 03124657 1 0 -theosophism%1:09:00:: 05953804 1 0 -theosophist%1:18:00:: 10707134 1 0 -theosophy%1:09:00:: 05953614 1 0 -theoterrorism%1:04:00:: 00765081 1 0 -therapeutic%1:06:00:: 04074482 1 0 -therapeutic%3:01:00:: 02914213 2 4 -therapeutic%5:00:00:healthful:00 01165943 1 5 -therapeutic_abortion%1:04:00:: 00231412 1 0 -therapeutic_cloning%1:04:00:: 00639007 1 0 -therapeutic_rehabilitation%1:04:00:: 00400995 1 0 -therapeutical%3:01:00:: 02914213 1 0 -therapeutically%4:02:00:: 00127866 1 0 -therapeutics%1:09:00:: 06064345 1 0 -theraphosidae%1:05:00:: 01774595 1 0 -therapist%1:18:00:: 10707233 1 9 -therapsid%1:05:00:: 01719914 1 0 -therapsida%1:05:00:: 01719645 1 0 -therapy%1:04:00:: 00661091 1 7 -theravada%1:09:00:: 06241156 1 0 -theravada_buddhism%1:09:00:: 06241156 1 0 -there%1:15:00:: 08489627 1 0 -there%4:02:00:: 00109151 1 181 -there%4:02:01:: 00109328 3 2 -there%4:02:02:: 00109461 2 6 -thereabout%4:02:00:: 00467686 2 0 -thereabout%4:02:01:: 00467810 1 0 -thereabouts%4:02:00:: 00467686 2 0 -thereabouts%4:02:01:: 00467810 1 0 -thereafter%4:02:00:: 00146281 1 8 -thereby%4:02:00:: 00121002 1 15 -therefor%4:02:00:: 00044076 1 1 -therefore%4:02:00:: 00043003 1 88 -therefore%4:02:01:: 00294459 2 0 -therefrom%4:02:01:: 00043608 2 1 -therefrom%4:02:02:: 00043794 1 3 -therein%4:02:00:: 00240707 1 6 -thereinafter%4:02:00:: 00467916 1 0 -theremin%1:06:00:: 04419642 1 0 -thereness%1:26:00:: 13958800 2 0 -thereness%1:26:01:: 13958921 1 0 -thereof%4:02:00:: 00468024 1 9 -thereof%4:02:02:: 00043794 2 0 -thereon%4:02:00:: 00468127 1 1 -theresa%1:18:00:: 11335878 1 0 -thereto%4:02:00:: 00468219 1 6 -theretofore%4:02:00:: 00502228 1 2 -thereunder%4:02:00:: 00468326 1 1 -therewith%4:02:00:: 00468447 1 2 -therewithal%4:02:00:: 00468587 1 0 -theridiid%1:05:00:: 01774097 1 0 -theridiidae%1:05:00:: 01773930 1 0 -therm%1:23:00:: 13727209 1 0 -thermal%1:19:00:: 11518645 1 0 -thermal%3:01:00:: 02814453 1 27 -thermal%3:01:01:: 02814352 2 0 -thermal%5:00:00:hot:01 01250565 3 0 -thermal_barrier%1:07:00:: 05124792 1 0 -thermal_emission%1:22:00:: 13566928 1 1 -thermal_equilibrium%1:26:00:: 14004017 1 0 -thermal_pollution%1:26:00:: 14518671 1 0 -thermal_printer%1:06:00:: 04419868 1 0 -thermal_reactor%1:06:00:: 04420024 1 0 -thermal_resistor%1:06:00:: 04420206 1 0 -thermal_spring%1:17:00:: 09305898 1 0 -thermalgesia%1:26:00:: 14333058 1 0 -thermally%4:02:00:: 00128058 1 1 -thermel%1:06:00:: 04421083 1 0 -thermic%3:01:00:: 02814453 1 0 -thermic_fever%1:26:00:: 14204586 1 0 -thermidor%1:28:00:: 15177549 1 0 -thermion%1:17:00:: 09457199 1 0 -thermionic%3:01:00:: 03124786 1 0 -thermionic_current%1:19:00:: 11518743 1 0 -thermionic_emission%1:22:00:: 13566928 1 0 -thermionic_tube%1:06:00:: 04494204 1 0 -thermionic_vacuum_tube%1:06:00:: 04494204 1 0 -thermionic_valve%1:06:00:: 04494204 1 0 -thermionics%1:09:00:: 06115322 1 0 -thermistor%1:06:00:: 04420206 1 1 -thermoacidophile%1:05:00:: 01348388 1 0 -thermobaric_bomb%1:06:00:: 04420461 1 0 -thermobia%1:05:00:: 02270810 1 0 -thermobia_domestica%1:05:00:: 02270945 1 0 -thermocautery%1:04:00:: 00697887 1 0 -thermochemistry%1:09:00:: 06110823 1 0 -thermocoagulation%1:22:00:: 13567063 1 0 -thermocouple%1:06:00:: 04420720 1 6 -thermocouple_junction%1:06:00:: 04420720 1 0 -thermodynamic%3:01:00:: 02908041 1 2 -thermodynamical%3:01:00:: 02908041 1 0 -thermodynamically%4:02:00:: 00079354 1 2 -thermodynamics%1:09:00:: 06114578 1 1 -thermodynamics_of_equilibrium%1:09:00:: 06114849 1 1 -thermoelectric%3:01:00:: 02814878 1 0 -thermoelectric_thermometer%1:06:00:: 04421083 1 0 -thermoelectrical%3:01:00:: 02814878 1 0 -thermoelectricity%1:19:00:: 11514672 1 0 -thermogram%1:10:00:: 07006018 1 0 -thermograph%1:06:00:: 04421258 2 0 -thermograph%1:06:01:: 04421417 1 0 -thermography%1:04:00:: 01006313 1 0 -thermogravimeter%1:06:00:: 04421582 1 0 -thermogravimetric%3:01:00:: 03003031 1 1 -thermogravimetry%1:04:00:: 01116466 1 0 -thermohydrometer%1:06:00:: 04421582 1 0 -thermohydrometric%3:01:00:: 03003031 1 0 -thermojunction%1:06:00:: 04421740 1 0 -thermolabile%5:00:00:reactive:00 01929312 1 0 -thermometer%1:06:00:: 04421872 1 10 -thermometric%3:01:00:: 03124931 1 1 -thermometrograph%1:06:00:: 04421258 1 0 -thermometry%1:04:00:: 01116360 1 2 -thermonuclear%5:00:00:nuclear:00 00610734 1 0 -thermonuclear_bomb%1:06:00:: 03553248 1 0 -thermonuclear_reaction%1:22:00:: 13567177 1 0 -thermonuclear_reactor%1:06:00:: 04422409 1 0 -thermonuclear_warhead%1:06:00:: 02753881 1 0 -thermopile%1:06:00:: 04422566 1 1 -thermoplastic%1:27:00:: 14593344 1 0 -thermoplastic%3:00:00:: 02409849 1 0 -thermoplastic_resin%1:27:00:: 14593344 1 0 -thermopsis%1:20:00:: 12573078 1 0 -thermopsis_macrophylla%1:20:00:: 12573474 1 0 -thermopsis_villosa%1:20:00:: 12573647 1 0 -thermopylae%1:04:00:: 01297484 1 0 -thermoreceptor%1:08:00:: 05300397 1 0 -thermoregulator%1:06:00:: 04422875 1 0 -thermos%1:06:00:: 04422727 1 0 -thermos_bottle%1:06:00:: 04422727 1 0 -thermos_flask%1:06:00:: 04422727 1 0 -thermoset%3:00:00:: 02410156 1 0 -thermosetting%3:00:00:: 02410156 1 0 -thermosetting_compositions%1:27:00:: 14596063 1 0 -thermosetting_resin%1:27:00:: 14596063 1 0 -thermosphere%1:17:00:: 09457367 1 0 -thermostat%1:06:00:: 04422875 1 1 -thermostat%2:41:00:: 02511424 1 0 -thermostatic%3:01:00:: 03125096 1 0 -thermostatically%4:02:00:: 00476528 1 0 -thermostatics%1:09:00:: 06114849 1 1 -thermotherapy%1:04:00:: 00707537 1 0 -thermotropism%1:04:00:: 00862595 1 0 -theropod%1:05:00:: 01712008 1 0 -theropod_dinosaur%1:05:00:: 01712008 1 0 -theropoda%1:05:00:: 01711662 1 0 -thesaurus%1:10:00:: 06421016 1 0 -theseus%1:18:00:: 09593416 1 0 -thesis%1:10:00:: 06755454 1 3 -thesis%1:10:01:: 06409085 2 0 -thespesia%1:20:00:: 12188120 1 0 -thespesia_populnea%1:20:00:: 12188635 1 0 -thespian%1:18:00:: 09765278 1 0 -thespian%3:01:00:: 03125227 1 0 -thespis%1:18:00:: 11338667 1 0 -thessalia%1:15:00:: 08789970 1 0 -thessalian%1:18:00:: 10707616 1 0 -thessalonian%1:18:00:: 10707707 1 0 -thessalonica%1:15:00:: 08789605 1 0 -thessaloniki%1:15:00:: 08789605 1 0 -thessaly%1:15:00:: 08789970 1 0 -theta%1:10:00:: 06834885 1 0 -theta_rhythm%1:19:00:: 11518915 1 0 -theta_wave%1:19:00:: 11518915 1 0 -thetis%1:18:00:: 09550758 1 0 -theurgy%1:09:00:: 05979198 2 0 -theurgy%1:18:00:: 09504464 1 0 -thevetia%1:20:00:: 11776861 1 0 -thevetia_neriifolia%1:20:00:: 11777080 1 0 -thevetia_peruviana%1:20:00:: 11777080 1 0 -thiabendazole%1:06:00:: 04423174 1 0 -thiamin%1:27:00:: 15091129 1 1 -thiamine%1:27:00:: 15091129 1 0 -thiamine_pyrophosphate%1:27:00:: 14800138 1 0 -thiazide%1:06:00:: 04423288 1 0 -thiazine%1:27:00:: 14771088 1 0 -thibet%1:15:00:: 08906952 1 0 -thick%1:15:00:: 08588699 1 1 -thick%3:00:01:: 02410393 1 25 -thick%3:00:02:: 02415390 3 6 -thick%4:02:00:: 00476962 2 0 -thick%4:02:01:: 00478040 1 0 -thick%5:00:00:abundant:00 00015480 10 0 -thick%5:00:00:close:02 00452114 8 0 -thick%5:00:00:concentrated:00 00539009 2 7 -thick%5:00:00:impenetrable:00 01771839 6 0 -thick%5:00:00:intense:00 01513776 7 0 -thick%5:00:00:short:03 02387413 5 0 -thick%5:00:00:stupid:00 00440292 9 0 -thick%5:00:00:unintelligible:00 01337314 4 2 -thick-billed%5:00:00:beaked:00 00207389 1 0 -thick-billed_murre%1:05:00:: 02047517 1 0 -thick-bodied%5:00:00:bodied:00 00629068 1 0 -thick-branched%5:00:00:branchy:00 00614518 1 0 -thick-footed_morel%1:20:00:: 13033879 1 0 -thick-haired%5:00:00:hairy:00 00216079 1 0 -thick-knee%1:05:00:: 02040266 1 0 -thick-lipped%5:00:00:lipped:00 01704523 1 0 -thick-skinned%5:00:00:insensitive:02 02108098 1 0 -thick-skulled%5:00:00:stupid:00 00440292 1 1 -thick-stemmed%5:00:00:caulescent:00 00321928 1 0 -thick_skin%1:05:00:: 02665413 1 0 -thicken%2:30:00:: 00431117 2 2 -thicken%2:30:01:: 00431327 1 2 -thicken%2:30:02:: 00431610 3 0 -thickened%5:00:00:thick:01 02411798 1 1 -thickened%5:00:00:thick:02 02417170 3 0 -thickened%5:00:00:tough:02 02447569 2 0 -thickener%1:27:00:: 15069820 1 0 -thickening%1:04:00:: 00357906 3 0 -thickening%1:25:00:: 13895986 2 0 -thickening%1:27:00:: 15069820 1 0 -thickening%5:00:00:complex:00 02179167 2 0 -thickening%5:00:00:intensifying:00 01340691 1 1 -thicket%1:14:00:: 08437515 1 11 -thicket-forming%5:00:00:wooded:00 02574614 1 0 -thickhead%1:05:00:: 01556514 1 0 -thickheaded%5:00:00:stupid:00 00440292 1 0 -thickly%4:02:00:: 00476962 5 0 -thickly%4:02:01:: 00299753 2 1 -thickly%4:02:02:: 00477194 1 1 -thickly%4:02:03:: 00477359 4 0 -thickly%4:02:04:: 00478040 3 0 -thickly_settled%5:00:00:inhabited:00 01312376 1 1 -thickness%1:07:01:: 05103072 1 4 -thickness%1:07:02:: 04936403 4 0 -thickness%1:07:03:: 05136662 3 0 -thickness%1:10:00:: 07133143 2 0 -thickset%5:00:00:concentrated:00 00539687 2 0 -thickset%5:00:00:short:03 02387413 1 0 -thickspread%5:00:00:covered:00 01698000 1 2 -thief%1:18:00:: 10707804 1 10 -thielavia%1:20:00:: 13027670 1 0 -thielavia_basicola%1:20:00:: 13027879 1 0 -thieve%2:40:00:: 02322230 1 0 -thievery%1:04:00:: 00780889 1 0 -thieving%1:04:00:: 00780889 1 2 -thieving%5:00:00:dishonest:00 01225294 1 4 -thievish%5:00:00:dishonest:00 01225294 1 0 -thievishly%4:02:00:: 00193100 1 0 -thievishness%1:07:00:: 04875935 1 0 -thigh%1:08:00:: 05562249 1 9 -thigh%1:13:00:: 07648267 2 0 -thigh-slapper%1:10:00:: 06778925 1 0 -thigh_boot%1:06:00:: 03521544 1 0 -thigh_pad%1:06:00:: 04423552 1 0 -thighbone%1:08:00:: 05573895 1 1 -thill%1:06:00:: 04423687 1 1 -thimble%1:06:00:: 04423845 2 0 -thimble%1:23:00:: 13770829 1 0 -thimble-shaped%5:00:00:formed:00 02150750 1 0 -thimbleberry%1:20:01:: 12656685 3 0 -thimbleberry%1:20:02:: 12657082 2 0 -thimbleberry%1:20:03:: 12657509 1 0 -thimbleful%1:23:00:: 13770829 1 0 -thimblerig%1:04:00:: 00780731 1 0 -thimbleweed%1:20:00:: 11725623 1 0 -thimerosal%1:06:00:: 04424003 1 0 -thin%2:29:00:: 00045817 4 0 -thin%2:30:00:: 00430999 1 2 -thin%2:30:01:: 00430625 2 0 -thin%2:30:02:: 00226071 3 0 -thin%3:00:01:: 02412164 1 16 -thin%3:00:02:: 02417301 5 1 -thin%3:00:03:: 00988232 2 15 -thin%3:00:04:: 01458054 6 0 -thin%4:02:00:: 00477814 1 0 -thin%5:00:00:distributed:00 00542359 4 2 -thin%5:00:00:narrow:00 02562566 3 7 -thin%5:00:00:spiritless:00 02282277 7 0 -thin%5:00:01:insignificant:00 02164913 8 0 -thin-bodied%5:00:00:bodied:00 00628881 1 0 -thin-leaved_bilberry%1:20:00:: 12248359 1 0 -thin-leaved_stringybark%1:20:00:: 12337246 1 0 -thin-shelled%5:00:00:shelled:00 02596905 1 0 -thin-shelled_mussel%1:05:00:: 01965252 1 0 -thin-skinned%5:00:00:sensitive:02 02106509 1 0 -thin_air%1:26:00:: 14455847 1 0 -thin_out%2:30:00:: 00430370 1 1 -thin_out%2:30:01:: 00430494 2 0 -thin_out%2:30:02:: 00226071 3 0 -thin_person%1:18:00:: 10708797 1 0 -thing%1:03:00:: 00002452 12 0 -thing%1:04:00:: 00034479 2 52 -thing%1:06:00:: 04424218 4 36 -thing%1:06:01:: 04424418 8 26 -thing%1:07:00:: 04617289 9 20 -thing%1:09:00:: 05855004 3 36 -thing%1:09:01:: 05984182 10 4 -thing%1:09:02:: 05671325 6 32 -thing%1:10:00:: 06723908 7 26 -thing%1:11:00:: 07289831 5 32 -thing%1:12:00:: 07480356 11 0 -thing%1:26:00:: 13943968 1 72 -thing-in-itself%1:09:00:: 05813457 1 0 -thingamabob%1:06:00:: 03218545 1 0 -thingamajig%1:06:00:: 03218545 1 0 -thingmabob%1:06:00:: 03218545 1 0 -thingmajig%1:06:00:: 03218545 1 0 -things%1:21:00:: 13246332 1 7 -thingumabob%1:06:00:: 03218545 1 0 -thingumajig%1:06:00:: 03218545 1 0 -thingummy%1:06:00:: 03218545 1 0 -think%1:09:00:: 05786372 1 0 -think%2:30:00:: 00561887 13 0 -think%2:31:00:: 00628491 3 111 -think%2:31:01:: 00689344 1 274 -think%2:31:02:: 00607780 4 8 -think%2:31:03:: 00631737 2 188 -think%2:31:06:: 00708538 7 2 -think%2:31:08:: 00608808 12 0 -think%2:31:09:: 00723056 6 3 -think%2:31:12:: 00739340 8 0 -think%2:31:13:: 00739082 9 0 -think%2:31:14:: 00629738 11 0 -think%2:31:15:: 00689809 10 0 -think%2:36:00:: 01637166 5 4 -think_about%2:31:03:: 00711715 2 8 -think_about%2:31:05:: 00734348 1 21 -think_back%2:31:00:: 00611256 1 2 -think_factory%1:14:00:: 08478702 1 1 -think_of%2:31:00:: 00609683 1 53 -think_of%2:31:01:: 00689950 3 26 -think_of%2:31:02:: 00730052 4 20 -think_of%2:31:03:: 00711715 2 26 -think_of%2:31:04:: 00723222 6 0 -think_of%2:36:00:: 01634142 5 16 -think_out%2:31:00:: 00629889 1 2 -think_over%2:31:00:: 00630380 1 3 -think_piece%1:10:00:: 06270129 1 0 -think_tank%1:14:00:: 08478702 1 0 -think_the_world_of%2:31:00:: 00694508 1 1 -think_twice%2:32:00:: 01066292 1 1 -think_up%2:36:00:: 01634142 1 2 -thinkable%3:00:00:: 02417895 1 0 -thinker%1:18:00:: 10708292 1 1 -thinker%1:18:01:: 10708454 2 0 -thinking%1:09:00:: 05770926 1 11 -thinking%5:00:00:rational:00 01926089 1 0 -thinking_cap%1:26:00:: 14016275 1 0 -thinly%4:02:00:: 00477814 2 0 -thinly%4:02:01:: 00477636 3 0 -thinly%4:02:02:: 00477060 4 0 -thinly%4:02:03:: 00477939 1 1 -thinned%5:00:00:diluted:00 00756327 1 0 -thinner%1:27:00:: 14835333 1 0 -thinness%1:07:00:: 05001482 2 1 -thinness%1:07:01:: 05103648 1 1 -thinness%1:07:02:: 04936846 5 0 -thinness%1:07:03:: 05136978 3 0 -thinness%1:07:04:: 05114781 4 0 -thinning%1:04:00:: 00363052 1 0 -thinning_shears%1:06:00:: 04424692 1 0 -thiobacillus%1:05:00:: 01363121 1 0 -thiobacteria%1:05:00:: 01363288 1 0 -thiobacteriaceae%1:05:00:: 01362769 1 0 -thiocyanate%1:27:00:: 15070098 1 1 -thiocyanic_acid%1:27:00:: 15070234 1 0 -thiodiphenylamine%1:27:00:: 14771643 1 0 -thioguanine%1:06:00:: 04424826 1 0 -thiopental%1:06:00:: 04424936 1 0 -thiopental_sodium%1:06:00:: 04424936 1 0 -thiopentobarbital_sodium%1:06:00:: 04424936 1 0 -thioridazine%1:06:00:: 04425262 1 0 -thiosulfil%1:06:00:: 04425445 1 0 -thiotepa%1:06:00:: 04425544 1 0 -thiothixene%1:06:00:: 04425656 1 0 -thiouracil%1:27:00:: 15069998 1 3 -third%1:04:00:: 00724168 2 4 -third%1:06:00:: 04425977 5 0 -third%1:06:01:: 04425804 6 0 -third%1:10:00:: 06859504 4 0 -third%1:23:00:: 13737190 1 6 -third%1:24:00:: 13846900 3 3 -third%4:02:00:: 00102986 1 3 -third%5:00:00:ordinal:00 02202307 1 73 -third-class_mail%1:10:00:: 06275977 1 0 -third-degree_burn%1:26:00:: 14291435 1 0 -third-dimensional%5:00:00:multidimensional:00 00660809 1 2 -third-dimensionality%1:07:00:: 05063564 1 1 -third-place_finish%1:11:00:: 07354628 1 0 -third-rate%5:00:00:inferior:02 02348285 1 0 -third-rater%1:18:00:: 10709256 1 0 -third-year%5:00:00:intermediate:00 01015185 1 0 -third_baron_rayleigh%1:18:00:: 11255211 1 0 -third_base%1:04:00:: 00724168 2 0 -third_base%1:06:00:: 04425804 1 5 -third_baseman%1:18:00:: 10708976 1 0 -third_battle_of_ypres%1:04:00:: 01301080 1 0 -third_class%1:06:00:: 04459243 2 0 -third_class%1:10:00:: 06275977 1 0 -third_council_of_constantinople%1:14:00:: 08314501 1 0 -third_cranial_nerve%1:08:00:: 05478526 1 0 -third_crusade%1:04:00:: 00969421 1 0 -third_deck%1:06:00:: 03694098 1 0 -third_degree%1:10:00:: 07194811 1 0 -third_dimension%1:07:00:: 05138065 1 0 -third_epistel_of_john%1:10:00:: 06447582 1 0 -third_estate%1:14:00:: 08168117 1 0 -third_eye%1:08:00:: 05299927 1 0 -third_eyelid%1:08:00:: 05314639 1 0 -third_gear%1:06:00:: 04425977 1 0 -third_house%1:14:00:: 08375526 1 0 -third_lateran_council%1:14:00:: 08315860 1 0 -third_law_of_motion%1:09:00:: 05886266 1 0 -third_law_of_thermodynamics%1:09:00:: 05883296 1 0 -third_party%1:14:00:: 08264441 2 0 -third_party%1:18:00:: 10709131 1 0 -third_person%1:10:00:: 06328022 1 1 -third_power%1:23:00:: 13731241 1 0 -third_rail%1:06:00:: 04426184 1 0 -third_reich%1:14:00:: 08170255 1 1 -third_sacker%1:18:00:: 10708976 1 1 -third_stomach%1:05:00:: 02399791 1 0 -third_tonsil%1:08:00:: 05529286 1 0 -third_trimester%1:28:00:: 15227261 1 0 -third_ventricle%1:08:00:: 05503009 1 0 -third_world%1:14:00:: 08168831 1 0 -thirdhand%4:02:00:: 00058978 1 0 -thirdhand%5:00:00:secondary:01 01855204 1 0 -thirdly%4:02:00:: 00102986 1 0 -thirst%1:07:00:: 04945254 2 1 -thirst%1:26:00:: 14040660 1 2 -thirst%2:34:00:: 01188485 2 0 -thirst%2:39:00:: 02122060 1 0 -thirst_for_knowledge%1:09:00:: 05682798 1 0 -thirster%1:18:00:: 10270878 1 0 -thirstily%4:02:00:: 00478175 1 0 -thirstily%4:02:01:: 00200777 2 0 -thirstiness%1:07:00:: 04945254 3 0 -thirstiness%1:26:00:: 14040660 2 0 -thirstiness%1:26:01:: 14537250 1 0 -thirsty%3:00:00:: 01270004 2 0 -thirsty%5:00:00:absorbent:00 00007697 4 0 -thirsty%5:00:00:desirous:00 00888200 3 0 -thirsty%5:00:00:dry:01 02554140 1 1 -thirteen%1:23:00:: 13747199 1 1 -thirteen%5:00:00:cardinal:00 02187606 1 5 -thirteenth%1:24:00:: 13848149 1 0 -thirteenth%5:00:00:ordinal:00 02203763 1 1 -thirties%1:28:00:: 15149038 1 1 -thirties%1:28:01:: 15149180 2 0 -thirtieth%1:24:00:: 13848983 1 0 -thirtieth%5:00:00:ordinal:00 02205838 1 1 -thirty%1:23:00:: 13749407 1 2 -thirty%5:00:00:cardinal:00 02189306 1 17 -thirty-eight%5:00:00:cardinal:00 02190080 1 0 -thirty-eighth%5:00:00:ordinal:00 02206762 1 0 -thirty-fifth%5:00:00:ordinal:00 02206409 1 0 -thirty-first%5:00:00:ordinal:00 02205947 1 0 -thirty-five%5:00:00:cardinal:00 02189786 1 0 -thirty-four%5:00:00:cardinal:00 02189688 1 0 -thirty-fourth%5:00:00:ordinal:00 02206291 1 0 -thirty-nine%5:00:00:cardinal:00 02190182 1 0 -thirty-ninth%5:00:00:ordinal:00 02206881 1 0 -thirty-one%5:00:00:cardinal:00 02189396 1 0 -thirty-second%1:23:00:: 13738705 1 0 -thirty-second%5:00:00:ordinal:00 02206056 1 0 -thirty-second_note%1:10:00:: 06871675 1 0 -thirty-second_part%1:23:00:: 13738705 1 0 -thirty-seven%5:00:00:cardinal:00 02189979 1 0 -thirty-seventh%5:00:00:ordinal:00 02206642 1 0 -thirty-six%5:00:00:cardinal:00 02189883 1 0 -thirty-sixth%5:00:00:ordinal:00 02206526 1 0 -thirty-something%1:28:00:: 15149038 1 0 -thirty-third%5:00:00:ordinal:00 02206173 1 0 -thirty-three%5:00:00:cardinal:00 02189587 1 0 -thirty-two%5:00:00:cardinal:00 02189491 1 0 -thirty_years'_war%1:04:00:: 01309109 1 0 -this_evening%4:02:00:: 00079499 1 2 -this_night%4:02:00:: 00079499 1 0 -thistle%1:20:00:: 11944196 1 0 -thistledown%1:20:00:: 11692792 1 0 -thistlelike%5:00:00:armed:02 00145805 1 0 -thither%4:02:00:: 00109328 1 6 -thlaspi%1:20:00:: 11898474 1 0 -thlaspi_arvense%1:20:00:: 11898775 1 0 -thm%1:10:00:: 06702358 1 0 -tho%1:10:00:: 06936070 1 0 -thole%1:06:00:: 03905730 1 0 -tholepin%1:06:00:: 03905730 1 0 -thomas%1:18:00:: 11338796 5 0 -thomas%1:18:01:: 11339041 4 0 -thomas%1:18:02:: 11339155 3 0 -thomas%1:18:03:: 11339361 2 0 -thomas%1:18:04:: 11339534 1 0 -thomas_a_becket%1:18:00:: 10840021 1 0 -thomas_a_kempis%1:18:00:: 10810818 1 0 -thomas_alva_edison%1:18:00:: 10949192 1 0 -thomas_aquinas%1:18:00:: 10820790 1 0 -thomas_augustus_watson%1:18:00:: 11376565 1 0 -thomas_babington_macaulay%1:18:00:: 11146914 1 0 -thomas_bayes%1:18:00:: 10838997 1 0 -thomas_bowdler%1:18:00:: 10859669 1 0 -thomas_bradley%1:18:00:: 10860999 1 0 -thomas_carew%1:18:00:: 10882436 1 0 -thomas_carlyle%1:18:00:: 10882706 1 0 -thomas_chippendale%1:18:00:: 10896046 1 0 -thomas_clayton_wolfe%1:18:00:: 11394491 1 0 -thomas_crawford%1:18:00:: 10914658 1 0 -thomas_de_quincey%1:18:00:: 10931167 1 0 -thomas_decker%1:18:00:: 10928140 1 0 -thomas_dekker%1:18:00:: 10928140 1 0 -thomas_edison%1:18:00:: 10949192 1 0 -thomas_edward_lawrence%1:18:00:: 11120834 1 0 -thomas_gainsborough%1:18:00:: 10987044 1 0 -thomas_gray%1:18:00:: 11012846 1 0 -thomas_hardy%1:18:00:: 11028675 1 0 -thomas_hart_benton%1:18:00:: 10845763 2 0 -thomas_hart_benton%1:18:01:: 10845926 1 0 -thomas_hastings%1:18:00:: 11034307 1 0 -thomas_henry_huxley%1:18:00:: 11069534 1 0 -thomas_higginson%1:18:00:: 11049608 1 0 -thomas_hobbes%1:18:00:: 11052955 1 0 -thomas_hodgkin%1:18:00:: 11054034 1 0 -thomas_hopkins_gallaudet%1:18:00:: 10988059 1 0 -thomas_hunt_morgan%1:18:00:: 11190954 1 0 -thomas_huxley%1:18:00:: 11069534 1 0 -thomas_j._hanks%1:18:00:: 11028074 1 0 -thomas_j._jackson%1:18:00:: 11076079 1 0 -thomas_jackson%1:18:00:: 11076079 1 0 -thomas_jefferson%1:18:00:: 11081828 1 0 -thomas_jonathan_jackson%1:18:00:: 11076079 1 0 -thomas_kennerly_wolfe_jr.%1:18:00:: 11394657 1 0 -thomas_kid%1:18:00:: 11113489 1 0 -thomas_kyd%1:18:00:: 11113489 1 0 -thomas_lanier_williams%1:18:00:: 11389481 1 0 -thomas_malory%1:18:00:: 11152331 1 0 -thomas_malthus%1:18:00:: 11152856 1 0 -thomas_mann%1:18:00:: 11154023 1 0 -thomas_merton%1:18:00:: 11176797 1 0 -thomas_middleton%1:18:00:: 11178781 1 0 -thomas_moore%1:18:00:: 11189579 1 0 -thomas_more%1:18:00:: 11190183 1 0 -thomas_nast%1:18:00:: 11200949 1 0 -thomas_nelson_page%1:18:00:: 11219992 1 0 -thomas_paine%1:18:00:: 11220836 1 0 -thomas_pynchon%1:18:00:: 11249712 1 0 -thomas_reid%1:18:00:: 11257547 1 0 -thomas_robert_malthus%1:18:00:: 11152856 1 0 -thomas_stearns_eliot%1:18:00:: 10957072 1 0 -thomas_straussler%1:18:00:: 11320245 1 0 -thomas_sully%1:18:00:: 11325265 1 0 -thomas_sydenham%1:18:00:: 11327273 1 0 -thomas_tallis%1:18:00:: 11329808 1 0 -thomas_the_doubting_apostle%1:18:00:: 11338796 1 0 -thomas_wentworth_storrow_higginson%1:18:00:: 11049608 1 0 -thomas_willis%1:18:00:: 11390549 1 0 -thomas_wolfe%1:18:00:: 11394491 2 0 -thomas_wolfe%1:18:01:: 11394657 1 0 -thomas_woodrow_wilson%1:18:00:: 11390855 1 0 -thomas_wright_waller%1:18:00:: 11372242 1 0 -thomas_young%1:18:00:: 11403828 1 0 -thomism%1:09:00:: 06187350 1 0 -thomomys%1:05:00:: 02354470 1 0 -thomomys_bottae%1:05:00:: 02354621 1 0 -thomomys_talpoides%1:05:00:: 02354781 1 0 -thompson%1:18:00:: 11339669 2 0 -thompson%1:18:01:: 11339905 1 0 -thompson_seedless%1:13:00:: 07760755 1 0 -thompson_submachine_gun%1:06:00:: 04450133 1 0 -thomsen's_disease%1:26:00:: 14545685 1 0 -thomson%1:18:00:: 11340146 4 0 -thomson%1:18:01:: 11340411 3 0 -thomson%1:18:02:: 11340642 2 0 -thomson%1:18:03:: 11340824 1 0 -thomson's_gazelle%1:05:00:: 02423218 1 0 -thong%1:06:00:: 03643907 1 1 -thong%1:06:01:: 04426316 3 0 -thong%1:06:02:: 03364008 5 0 -thong%1:06:03:: 03464053 4 0 -thong%1:06:04:: 04426427 2 0 -thor%1:18:00:: 09583506 1 0 -thor_hyerdahl%1:18:00:: 11048586 1 0 -thoracentesis%1:04:00:: 00944296 1 0 -thoracic%3:01:00:: 02860389 1 0 -thoracic_actinomycosis%1:26:00:: 14259616 1 0 -thoracic_aorta%1:08:00:: 05336748 1 0 -thoracic_cavity%1:08:00:: 05553049 1 0 -thoracic_duct%1:08:00:: 05396690 1 0 -thoracic_medicine%1:09:00:: 06064683 1 0 -thoracic_nerve%1:08:00:: 05569979 1 0 -thoracic_outlet_syndrome%1:26:00:: 14310830 1 0 -thoracic_vein%1:08:00:: 05383467 1 0 -thoracic_vertebra%1:08:00:: 05589132 1 0 -thoracocentesis%1:04:00:: 00944296 1 0 -thoracoepigastric_vein%1:08:00:: 05383004 1 0 -thoracotomy%1:04:00:: 00698348 1 0 -thorax%1:05:01:: 02665543 3 0 -thorax%1:08:01:: 05552607 2 0 -thorax%1:08:02:: 05553618 1 0 -thorazine%1:06:00:: 03023175 1 0 -thoreau%1:18:00:: 11340992 1 1 -thoreauvian%3:01:00:: 03038401 1 0 -thoriate%2:30:00:: 00497391 1 0 -thoriated%3:44:00:: 03154649 1 1 -thorite%1:27:00:: 15070366 1 0 -thorium%1:27:00:: 14658109 1 0 -thorium-228%1:27:00:: 14658422 1 0 -thorn%1:09:00:: 05831784 1 1 -thorn%1:10:00:: 06840442 3 0 -thorn%1:20:00:: 13089631 2 0 -thorn-tipped%5:00:00:tipped:00 02431440 1 0 -thorn_apple%1:20:00:: 12903367 1 0 -thornbill%1:05:01:: 01834540 1 0 -thorndike%1:18:00:: 11341137 2 0 -thorndike%1:18:01:: 11341267 1 0 -thorniness%1:07:00:: 04949799 1 0 -thorniness%1:07:01:: 04643397 2 0 -thornless%5:00:00:unarmed:02 00146128 1 0 -thornton%1:18:00:: 11341374 1 0 -thornton_niven_wilder%1:18:00:: 11386692 1 0 -thornton_wilder%1:18:00:: 11386692 1 0 -thorny%5:00:00:armed:02 00145083 2 0 -thorny%5:00:00:difficult:00 00748674 1 0 -thorny_amaranth%1:20:00:: 11824344 1 0 -thorny_skate%1:05:00:: 01501948 1 0 -thorough%5:00:00:careful:00 00311505 1 4 -thorough%5:00:00:complete:00 00522463 2 3 -thorough_bass%1:10:00:: 07032556 1 0 -thoroughbred%1:05:00:: 01323599 3 0 -thoroughbred%1:05:01:: 02383231 2 0 -thoroughbred%1:18:00:: 10709358 1 0 -thoroughbred%5:00:00:purebred:00 01903965 1 0 -thoroughbred_race%1:11:00:: 07463171 1 0 -thoroughbred_racing%1:04:00:: 00450230 1 0 -thoroughfare%1:06:00:: 04426618 1 2 -thoroughgoing%5:00:00:complete:00 00522463 1 2 -thoroughgoing%5:00:00:unmitigated:00 01520091 2 0 -thoroughly%4:02:00:: 00057257 1 8 -thoroughly%4:02:01:: 00057388 2 7 -thoroughness%1:07:00:: 04672858 1 1 -thoroughwort%1:20:00:: 11968931 1 0 -thorpe%1:18:00:: 11341479 1 0 -thorshavn%1:15:00:: 08953029 1 0 -thorstein_bunde_veblen%1:18:00:: 11362022 1 0 -thorstein_veblen%1:18:00:: 11362022 1 0 -thortveitite%1:27:00:: 15070550 1 0 -thoth%1:18:00:: 09513744 1 0 -thou%1:23:00:: 13750844 1 0 -though%4:02:01:: 00119139 1 11 -thought%1:09:00:: 05770926 2 21 -thought%1:09:01:: 05833840 1 70 -thought%1:09:02:: 05954481 3 11 -thought%1:09:03:: 05945642 4 0 -thought-image%1:09:00:: 05928391 1 1 -thought-provoking%5:00:00:stimulating:00 02306598 1 0 -thought-reader%1:18:00:: 10697879 1 0 -thought-reader%1:18:01:: 10319580 2 0 -thought_process%1:09:00:: 05770926 1 0 -thought_transference%1:10:00:: 07255998 1 0 -thoughtful%3:00:00:: 02418872 2 1 -thoughtful%3:00:04:: 01194483 4 0 -thoughtful%5:00:00:considerate:00 00639230 5 0 -thoughtful%5:00:00:profound:00 01873295 1 2 -thoughtful%5:00:00:serious:00 02119971 3 1 -thoughtfully%4:02:00:: 00216788 2 3 -thoughtfully%4:02:01:: 00217105 1 8 -thoughtfulness%1:04:00:: 01229793 4 0 -thoughtfulness%1:07:00:: 04660536 3 0 -thoughtfulness%1:07:01:: 04841358 2 0 -thoughtfulness%1:09:00:: 05785508 1 0 -thoughtless%3:00:00:: 02420530 1 2 -thoughtless%5:00:00:inconsiderate:00 00639594 2 1 -thoughtlessly%4:02:00:: 00216964 2 0 -thoughtlessly%4:02:01:: 00217245 1 0 -thoughtlessness%1:07:00:: 04661706 2 0 -thoughtlessness%1:07:01:: 04845967 1 0 -thousand%1:23:00:: 13750844 1 24 -thousand%5:00:00:cardinal:00 02198752 1 14 -thousand-fold%4:02:00:: 00140271 1 1 -thousand_and_one_nights%1:10:00:: 07222230 1 0 -thousand_island_dressing%1:13:00:: 07835173 1 0 -thousand_times%4:02:00:: 00140271 1 0 -thousandth%1:23:00:: 13739170 2 0 -thousandth%1:24:00:: 13849810 1 0 -thousandth%5:00:00:ordinal:00 02212473 1 0 -thrace%1:15:00:: 08915784 1 0 -thracian%1:10:00:: 06943221 2 0 -thracian%1:18:00:: 09712090 1 0 -thracian%3:01:00:: 02972821 1 0 -thraco-phrygian%1:10:00:: 06943027 1 0 -thraldom%1:26:00:: 13997253 1 0 -thrall%1:18:00:: 10709435 2 0 -thrall%1:26:00:: 13997253 1 0 -thralldom%1:26:00:: 13997253 1 0 -thrash%1:04:00:: 00575083 1 0 -thrash%2:35:00:: 01416193 1 2 -thrash%2:35:01:: 01416364 6 0 -thrash%2:35:02:: 01412912 7 0 -thrash%2:38:00:: 01897885 3 0 -thrash%2:38:01:: 01890792 2 1 -thrash%2:38:10:: 01880390 4 0 -thrash%2:38:11:: 01838860 5 0 -thrash_about%2:38:00:: 01890792 1 1 -thrash_out%2:32:00:: 01064151 1 1 -thrasher%1:05:00:: 01587834 2 0 -thrasher%1:05:01:: 01486010 3 0 -thrasher%1:06:00:: 04428191 1 0 -thrashing%1:04:00:: 01160729 2 0 -thrashing%1:11:00:: 07476623 1 0 -thraupidae%1:05:00:: 01597194 1 0 -thread%1:06:00:: 04426788 1 4 -thread%1:06:01:: 04154938 4 0 -thread%1:09:00:: 05773548 3 0 -thread%1:17:00:: 09409203 2 0 -thread%2:35:00:: 01521912 2 3 -thread%2:35:01:: 01359432 5 0 -thread%2:35:07:: 01359917 3 0 -thread%2:35:08:: 01359803 4 0 -thread%2:38:00:: 01882814 1 3 -thread-fish%1:05:00:: 02577952 1 0 -thread_blight%1:26:00:: 14219068 1 0 -thread_maker%1:18:00:: 10636340 1 0 -threadbare%5:00:00:unoriginal:00 01688757 1 1 -threadbare%5:00:01:worn:00 02583898 2 0 -threaded%3:01:00:: 02815039 1 0 -threader%1:06:00:: 02861509 1 0 -threadfin%1:05:00:: 02610980 1 0 -threadfish%1:05:00:: 02577952 1 0 -threadleaf_groundsel%1:20:00:: 12011838 1 0 -threadlike%5:00:00:thin:01 02413851 1 0 -threads%1:06:00:: 04446162 1 0 -threadworm%1:05:00:: 01931520 1 0 -thready%5:00:00:thick:02 02416765 1 0 -thready%5:00:00:thin:01 02413851 2 0 -threat%1:10:00:: 07226015 2 4 -threat%1:10:01:: 06733476 3 4 -threat%1:18:00:: 10702615 4 0 -threat%1:26:00:: 14543231 1 16 -threaten%2:32:00:: 00871405 2 21 -threaten%2:32:01:: 00871781 3 10 -threaten%2:42:00:: 02697120 1 23 -threatened%5:00:00:vulnerable:00 02524688 1 1 -threatened_abortion%1:04:00:: 00230824 1 0 -threatening%5:00:00:alarming:00 00194357 1 2 -threatening%5:00:00:cloudy:00 00462409 2 0 -threateningly%4:02:00:: 00399802 1 0 -three%1:06:00:: 04480415 2 0 -three%1:23:00:: 13744044 1 19 -three%5:00:00:cardinal:00 02186580 1 221 -three-bagger%1:04:00:: 00132982 1 0 -three-banded_armadillo%1:05:00:: 02455135 1 0 -three-base_hit%1:04:00:: 00132982 1 0 -three-card_monte%1:04:00:: 00493031 1 0 -three-centered_arch%1:06:00:: 04427216 1 0 -three-cornered%5:00:00:angular:00 02049323 1 0 -three-cornered%5:00:00:multilateral:00 00239325 2 0 -three-cornered_leek%1:20:00:: 12436090 1 0 -three-d%1:09:00:: 05939948 2 0 -three-d%1:10:00:: 06618937 1 0 -three-d%5:00:00:multidimensional:00 00660809 1 0 -three-day_event%1:11:00:: 07461050 1 0 -three-day_measles%1:26:00:: 14123259 1 0 -three-decker%1:06:00:: 04427376 3 0 -three-decker%1:06:01:: 04427473 2 0 -three-decker%1:13:00:: 07696839 1 0 -three-dimensional%3:00:02:: 00657198 2 0 -three-dimensional%5:00:00:multidimensional:00 00660809 1 5 -three-dimensional_figure%1:25:00:: 13863473 1 2 -three-dimensional_radar%1:06:00:: 04427559 1 0 -three-dimensionality%1:07:00:: 05063564 1 2 -three-figure%5:00:00:quantitative:00 01915849 1 0 -three-fold%5:00:01:multiple:00 02218834 1 0 -three-fold%5:00:02:multiple:00 02217799 2 0 -three-fourths%1:23:00:: 13737700 1 0 -three-hitter%1:04:00:: 00475403 1 0 -three-hundredth%5:00:00:ordinal:00 02212108 1 0 -three-lane%5:00:00:multilane:00 02221821 1 0 -three-legged%5:00:00:legged:00 01429870 1 0 -three-lipped%5:00:00:lipped:00 01704599 1 0 -three-lobed%5:00:00:compound:00 02174542 1 0 -three-lobed%5:00:00:multilateral:00 00239444 2 0 -three-membered%5:00:00:membered:00 01502796 1 0 -three-mile_limit%1:15:00:: 08663051 1 0 -three-needled%5:00:00:simple:01 02169081 1 0 -three-party%5:00:00:multilateral:00 00240008 1 0 -three-petaled%5:00:00:petalous:00 01776423 1 0 -three-petalled%5:00:00:petalous:00 01776423 1 0 -three-piece%3:00:00:: 01650193 1 0 -three-piece_suit%1:06:00:: 04427715 1 0 -three-ply%5:00:00:thick:01 02411913 1 0 -three-point_landing%1:04:00:: 00305707 1 0 -three-point_switch%1:06:00:: 04428008 1 0 -three-point_turn%1:04:00:: 01263418 1 0 -three-pronged%5:00:00:divided:00 02482932 1 0 -three-quarter_binding%1:06:00:: 04427857 1 0 -three-quarters%1:23:00:: 13737700 1 0 -three-ring_circus%1:04:00:: 00519941 1 0 -three-seeded%5:00:00:seedy:00 02255928 1 0 -three-seeded_mercury%1:20:00:: 12922458 1 0 -three-sided%5:00:00:multilateral:00 00239847 1 0 -three-spined_stickleback%1:05:00:: 01455317 1 0 -three-toed_sloth%1:05:00:: 02457408 1 0 -three-way%5:00:00:multilateral:00 00240008 1 1 -three-way_calling%1:10:00:: 06274760 1 0 -three-way_switch%1:06:00:: 04428008 1 0 -three-wheel%3:01:00:: 02731174 1 0 -three-wheeled%3:01:00:: 02731174 1 0 -three-year-old%5:00:00:young:00 01647750 1 0 -three-year-old_horse%1:05:00:: 02385461 1 0 -three_hundred%5:00:00:cardinal:00 02198409 1 0 -three_kings'_day%1:28:00:: 15194506 1 0 -three_times%4:02:01:: 00476680 1 3 -three_year_old%1:05:00:: 02385461 1 0 -threefold%4:02:00:: 00476680 1 0 -threefold%5:00:01:multiple:00 02218834 1 0 -threefold%5:00:02:multiple:00 02217799 2 0 -threepence%1:21:00:: 13391118 1 0 -threepenny%5:00:00:cheap:00 00935359 2 0 -threepenny%5:00:00:sized:00 02224790 1 0 -threescore%1:14:00:: 08272774 1 0 -threescore%5:00:00:cardinal:00 02192184 1 0 -threesome%1:14:00:: 07986066 2 0 -threesome%1:23:00:: 13744044 1 0 -threnody%1:10:00:: 07050619 1 0 -threonine%1:27:00:: 15070699 1 0 -thresh%2:35:00:: 01416193 4 0 -thresh%2:35:01:: 01416364 3 0 -thresh%2:38:00:: 01890792 1 1 -thresh%2:38:04:: 02093920 2 0 -thresh_about%2:38:00:: 01890792 1 0 -thresher%1:05:00:: 01486010 2 0 -thresher%1:06:00:: 04428191 1 0 -thresher's_lung%1:26:00:: 14259865 1 0 -thresher_shark%1:05:00:: 01486010 1 0 -threshing%1:04:00:: 00393161 1 1 -threshing_floor%1:06:00:: 04428382 1 0 -threshing_machine%1:06:00:: 04428191 1 0 -threshold%1:06:01:: 03223686 4 1 -threshold%1:06:02:: 03224032 3 1 -threshold%1:09:00:: 05712426 2 1 -threshold%1:25:00:: 13903738 5 0 -threshold%1:28:00:: 15268993 1 7 -threshold_element%1:06:00:: 04428502 1 0 -threshold_function%1:24:00:: 13789281 1 0 -threshold_gate%1:06:00:: 04428502 1 0 -threshold_level%1:07:00:: 05100156 1 0 -threshold_operation%1:22:00:: 13567344 1 0 -threskiornis%1:05:00:: 02006211 1 0 -threskiornis_aethiopica%1:05:00:: 02006364 1 0 -threskiornithidae%1:05:00:: 02005598 1 0 -thrice%4:02:00:: 00257784 1 1 -thrift%1:07:00:: 04893525 2 0 -thrift%1:20:00:: 12098827 1 0 -thrift_institution%1:14:00:: 08422524 1 0 -thriftily%4:02:00:: 00478311 1 0 -thriftiness%1:07:00:: 04893787 1 0 -thriftless%5:00:00:improvident:00 01896299 1 0 -thriftlessly%4:02:00:: 00478512 1 0 -thriftlessness%1:07:00:: 04894964 1 0 -thriftshop%1:06:00:: 04428634 1 0 -thrifty%3:00:00:: 02421158 1 2 -thrifty%5:00:00:provident:00 01895099 2 0 -thrill%1:04:00:: 01261293 3 1 -thrill%1:12:00:: 07528470 1 5 -thrill%1:12:02:: 07520112 2 2 -thrill%2:37:01:: 01812324 4 0 -thrill%2:37:02:: 01796346 2 1 -thrill%2:38:00:: 01888946 3 0 -thrill%2:39:00:: 02117333 1 2 -thrilled%5:00:00:excited:00 00920704 1 0 -thriller%1:10:00:: 06370403 1 1 -thrillful%5:00:00:excited:00 00920797 1 1 -thrilling%5:00:00:exciting:00 00921866 1 2 -thrilling%5:00:00:stimulating:00 02307199 2 0 -thrinax%1:20:00:: 12597640 1 0 -thrinax_keyensis%1:20:00:: 12598027 1 0 -thrinax_microcarpa%1:20:00:: 12598027 1 0 -thrinax_morrisii%1:20:00:: 12598027 1 0 -thrinax_parviflora%1:20:00:: 12597798 1 0 -thrip%1:05:00:: 02271897 1 0 -thripid%1:05:00:: 02271897 1 0 -thripidae%1:05:00:: 02271740 1 0 -thrips%1:05:00:: 02271897 1 0 -thrips_tobaci%1:05:00:: 02272552 1 0 -thrive%2:30:00:: 00310386 1 3 -thrive%2:40:00:: 02342800 2 1 -thriving%5:00:00:successful:00 02331857 1 2 -throat%1:05:00:: 01514549 4 0 -throat%1:06:00:: 04428763 3 2 -throat%1:06:01:: 04428920 2 2 -throat%1:08:00:: 05547508 1 34 -throat_infection%1:26:00:: 14184986 1 0 -throat_protector%1:06:00:: 04429038 1 0 -throat_sweetbread%1:13:00:: 07652881 1 0 -throated%5:00:00:necked:00 01209542 1 0 -throatwort%1:20:00:: 12039122 1 0 -throaty%5:00:00:low:03 01216317 1 0 -throb%1:11:00:: 07401726 2 0 -throb%1:26:00:: 14333334 1 0 -throb%2:38:00:: 01888946 3 0 -throb%2:38:01:: 01879251 2 2 -throb%2:39:00:: 02122665 1 2 -throbbing%1:11:00:: 07401726 1 1 -throbbing%1:11:01:: 07396822 2 0 -throbbing%5:00:00:rhythmical:00 02020897 1 1 -throe%1:26:01:: 14324672 1 1 -throe%1:26:02:: 14477207 2 0 -throes%1:12:00:: 07495878 1 0 -thrombasthenia%1:26:00:: 14169717 1 0 -thrombectomy%1:04:00:: 00688098 1 0 -thrombin%1:27:00:: 14737249 1 0 -thrombocyte%1:27:00:: 15023959 1 0 -thrombocytopenia%1:26:00:: 14198019 1 0 -thrombocytopenic_purpura%1:26:00:: 14565417 1 0 -thrombocytosis%1:26:00:: 14268221 1 0 -thromboembolism%1:26:00:: 14101935 1 0 -thrombokinase%1:27:00:: 15071035 1 0 -thrombolysis%1:22:00:: 13567515 1 0 -thrombolytic%1:06:00:: 04429169 1 0 -thrombolytic_agent%1:06:00:: 04429169 1 0 -thrombolytic_therapy%1:04:00:: 00707785 1 0 -thrombopenia%1:26:00:: 14198019 1 0 -thrombophlebitis%1:26:00:: 14353862 1 0 -thromboplastin%1:27:00:: 15071035 1 0 -thrombose%2:30:00:: 00521748 1 0 -thrombosed%5:00:00:obstructed:00 01622188 1 1 -thrombosis%1:26:00:: 14102075 1 1 -thrombus%1:26:00:: 14373246 1 1 -throne%1:04:00:: 00605023 3 0 -throne%1:06:00:: 04429376 1 1 -throne%1:06:01:: 04446521 2 0 -throne%2:41:00:: 02391193 2 0 -throne%2:41:01:: 02564546 1 0 -throng%1:14:00:: 08182716 1 3 -throng%2:38:00:: 02064131 1 1 -thronged%5:00:00:crowded:00 00560284 1 1 -throstle%1:05:00:: 01558149 2 0 -throstle%1:06:00:: 04429613 1 0 -throttle%1:06:00:: 02670186 1 4 -throttle%1:06:01:: 02670683 2 0 -throttle%2:30:00:: 00173159 3 0 -throttle%2:30:01:: 00233335 1 2 -throttle%2:35:00:: 01570935 2 1 -throttle_valve%1:06:00:: 02670186 1 0 -throttlehold%1:07:00:: 05193781 1 0 -throttler%1:18:00:: 10121246 1 0 -throttling%1:04:00:: 00225786 1 0 -through%4:02:01:: 00478634 2 2 -through%4:02:02:: 00478730 4 0 -through%4:02:03:: 00478821 1 5 -through%4:02:04:: 00478904 3 1 -through%4:02:05:: 00057626 5 0 -through%5:00:00:direct:00 00762168 2 0 -through%5:00:00:finished:01 01003536 1 4 -through_an_experiment%4:02:00:: 00085339 1 0 -through_and_through%4:02:00:: 00057626 1 0 -through_empirical_observation%4:02:00:: 00084038 1 0 -through_with%5:00:01:finished:01 01003822 2 0 -through_with%5:00:02:finished:01 01003536 1 1 -throughout%4:02:00:: 00103087 1 3 -throughout%4:02:02:: 00257106 2 0 -throughput%1:06:00:: 04429756 1 0 -throughway%1:06:00:: 03306610 1 0 -throw%1:04:00:: 00104539 1 4 -throw%1:04:01:: 01245618 5 0 -throw%1:06:00:: 04429971 4 0 -throw%1:11:00:: 07351195 3 0 -throw%1:26:00:: 14485990 2 1 -throw%2:31:00:: 00621734 15 0 -throw%2:32:00:: 01060317 5 6 -throw%2:32:03:: 01067664 10 2 -throw%2:35:00:: 01508368 1 53 -throw%2:35:01:: 01510173 6 5 -throw%2:35:02:: 01499265 4 7 -throw%2:35:06:: 01527754 13 0 -throw%2:35:07:: 01513430 3 7 -throw%2:35:08:: 01437011 14 0 -throw%2:36:00:: 01663443 12 0 -throw%2:36:02:: 01632897 7 4 -throw%2:36:08:: 01733477 11 1 -throw%2:37:00:: 01791232 9 2 -throw%2:38:00:: 02097204 2 9 -throw%2:38:03:: 02097341 8 2 -throw-in%1:04:00:: 00107137 1 0 -throw-weight%1:07:00:: 05028562 1 0 -throw_a_fit%2:37:00:: 01795428 1 0 -throw_away%2:35:00:: 01513430 2 0 -throw_away%2:40:00:: 02222318 1 5 -throw_back%2:35:00:: 01513145 1 1 -throw_cold_water_on%2:37:00:: 01819772 1 0 -throw_in%2:32:00:: 00914769 3 1 -throw_in%2:33:00:: 01083044 2 1 -throw_in%2:40:00:: 02356974 1 2 -throw_in_the_towel%2:33:00:: 01083044 1 1 -throw_off%2:35:00:: 01513430 1 2 -throw_off%2:38:00:: 02073545 2 0 -throw_out%2:32:00:: 00875806 4 1 -throw_out%2:32:01:: 00801626 5 1 -throw_out%2:40:00:: 02222318 2 3 -throw_out%2:41:00:: 02401809 3 1 -throw_out%2:41:01:: 02501738 1 3 -throw_out_of_kilter%2:30:00:: 00276601 1 0 -throw_overboard%2:35:01:: 01509824 2 0 -throw_overboard%2:40:00:: 02303331 1 0 -throw_pillow%1:06:00:: 04430364 1 0 -throw_rug%1:06:00:: 04144539 1 0 -throw_stick%1:06:00:: 02871963 1 0 -throw_together%2:35:01:: 01472807 2 0 -throw_together%2:36:00:: 01739675 1 0 -throw_up%2:29:00:: 00076400 1 1 -throwaway%1:10:01:: 07250339 2 0 -throwaway%1:10:02:: 07011689 3 0 -throwaway%1:18:00:: 10663137 1 0 -throwaway%5:00:00:disposable:01 00776706 2 0 -throwaway%5:00:00:unwanted:00 02528206 1 0 -throwback%1:11:00:: 07343574 2 0 -throwback%1:18:00:: 09819860 1 0 -throwback%5:00:00:regressive:01 01877182 1 0 -thrower%1:18:00:: 10709529 2 0 -thrower%1:18:01:: 10460806 3 0 -thrower%1:18:02:: 10709745 1 0 -throwing_away%1:04:00:: 00091234 1 0 -throwing_board%1:06:00:: 04430158 1 0 -throwing_stick%1:06:00:: 02871963 2 0 -throwing_stick%1:06:01:: 04430158 1 0 -thrown%5:00:00:down:00 02493395 1 0 -thrown%5:00:00:tangled:00 00256237 2 0 -thrown-away%5:00:00:unwanted:00 02528206 1 0 -thrown_and_twisted%5:00:00:tangled:00 00256237 1 1 -throwster%1:18:00:: 10709745 1 0 -thrum%1:11:00:: 07397230 1 0 -thrum%2:39:00:: 02174830 3 0 -thrum%2:39:01:: 02187041 1 0 -thrum%2:39:02:: 02180362 2 0 -thrush%1:05:00:: 01557185 3 0 -thrush%1:18:00:: 10709876 2 0 -thrush%1:26:00:: 14182568 1 0 -thrush_nightingale%1:05:00:: 01560280 1 0 -thrust%1:04:00:: 00103834 3 1 -thrust%1:04:01:: 01173965 2 1 -thrust%1:04:02:: 00334935 5 0 -thrust%1:10:00:: 06711404 4 0 -thrust%1:19:00:: 11498203 1 2 -thrust%2:32:00:: 00747418 4 3 -thrust%2:35:01:: 01441510 5 1 -thrust%2:35:08:: 01499265 8 0 -thrust%2:38:00:: 01899262 1 11 -thrust%2:38:01:: 02062212 3 4 -thrust%2:38:02:: 02094569 2 7 -thrust%2:42:00:: 02713852 7 0 -thrust%2:42:01:: 02714057 6 0 -thrust_ahead%2:38:00:: 01996574 1 0 -thrust_bearing%1:06:00:: 04430475 1 0 -thrust_fault%1:17:00:: 09457507 1 0 -thrust_out%2:38:00:: 01873157 1 1 -thrust_stage%1:06:00:: 04430738 1 0 -thruster%1:06:00:: 04430605 2 0 -thruster%1:18:00:: 10495756 1 0 -thrusting%1:04:00:: 00334935 1 0 -thruway%1:06:00:: 03306610 1 1 -thryothorus%1:05:00:: 01585890 1 0 -thryothorus_ludovicianus%1:05:00:: 01586020 1 0 -thucydides%1:18:00:: 11341614 1 0 -thud%1:11:00:: 07396945 1 1 -thud%2:35:00:: 01238204 2 1 -thud%2:39:00:: 02184610 1 1 -thud%2:39:01:: 02184797 3 0 -thudding%5:00:00:unreverberant:00 02011622 1 1 -thug%1:18:00:: 10184081 1 0 -thuggee%1:04:00:: 01250745 1 1 -thuggery%1:04:00:: 00775006 1 0 -thuja%1:20:00:: 11643684 1 0 -thuja_occidentalis%1:20:00:: 11644226 1 0 -thuja_orientalis%1:20:00:: 11644462 1 0 -thuja_plicata%1:20:00:: 11644046 1 0 -thujopsis%1:20:00:: 11644712 1 0 -thujopsis_dolobrata%1:20:00:: 11644872 1 0 -thule%1:15:00:: 08954269 2 0 -thule%1:15:01:: 08954443 1 0 -thulium%1:27:00:: 14658546 1 0 -thumb%1:06:00:: 04430896 2 0 -thumb%1:06:01:: 03866721 3 0 -thumb%1:08:00:: 05567217 1 5 -thumb%2:35:00:: 01209953 3 0 -thumb%2:38:00:: 01956955 1 2 -thumb%2:39:10:: 02153023 2 0 -thumb_index%1:06:00:: 04431296 1 0 -thumbed%5:00:00:worn:00 02584031 1 0 -thumbhole%1:06:00:: 04431025 2 0 -thumbhole%1:06:01:: 04431158 1 0 -thumbnail%1:08:00:: 05584390 1 1 -thumbnut%1:06:00:: 04593185 1 0 -thumbprint%1:10:00:: 06644916 1 0 -thumbscrew%1:06:01:: 04431436 2 0 -thumbscrew%1:06:02:: 04431547 1 0 -thumbstall%1:06:00:: 04431648 1 0 -thumbtack%1:06:00:: 04431745 1 0 -thumbtack%2:35:00:: 01357656 1 0 -thump%1:04:00:: 01175099 2 0 -thump%1:11:01:: 07396945 1 0 -thump%2:35:00:: 01414626 3 1 -thump%2:38:00:: 01880113 1 3 -thump%2:39:00:: 02184610 2 1 -thump_out%2:38:00:: 01880560 1 0 -thumping%1:11:00:: 07396945 1 2 -thumping%5:00:00:large:00 01388062 1 0 -thunbergia%1:20:00:: 12813024 1 0 -thunbergia_alata%1:20:00:: 12813189 1 0 -thunder%1:06:00:: 02837416 3 0 -thunder%1:11:00:: 07377682 1 8 -thunder%1:11:01:: 07397355 2 5 -thunder%2:32:00:: 00915605 2 1 -thunder%2:32:01:: 01046587 4 0 -thunder%2:38:00:: 02088792 1 2 -thunder%2:43:00:: 02770535 3 0 -thunder_bay%1:15:00:: 08828296 1 0 -thunder_lizard%1:05:00:: 01709484 1 0 -thunder_mug%1:06:00:: 03004275 1 0 -thunder_snake%1:05:00:: 01728572 1 0 -thunderbird%1:18:00:: 10709979 1 0 -thunderbolt%1:11:00:: 07298396 2 0 -thunderbolt%1:19:00:: 11519121 1 0 -thunderclap%1:11:00:: 07397552 1 0 -thunderclap%1:11:01:: 07298396 2 0 -thundercloud%1:17:00:: 09261772 1 0 -thunderer%1:06:00:: 04431925 2 0 -thunderer%1:18:00:: 09574350 1 0 -thunderhead%1:17:00:: 09457693 1 0 -thundering%5:00:00:impressive:00 01286375 2 1 -thundering%5:00:00:noisy:00 01922030 1 1 -thunderous%5:00:00:loud:00 01453467 1 3 -thunderous%5:00:00:unpropitious:00 00178464 2 0 -thundershower%1:19:00:: 11501988 1 0 -thunderstorm%1:19:00:: 11519253 1 0 -thunderstruck%5:00:00:surprised:00 02358277 1 0 -thundery%5:00:00:loud:00 01453467 1 0 -thundery%5:00:00:stormy:00 00306034 2 0 -thunk%1:11:00:: 07397641 1 0 -thunnus%1:05:00:: 02626590 1 0 -thunnus_alalunga%1:05:00:: 02627037 1 0 -thunnus_albacares%1:05:00:: 02627532 1 0 -thunnus_thynnus%1:05:00:: 02627292 1 0 -thurber%1:18:00:: 11341760 1 0 -thurible%1:06:00:: 02993368 1 0 -thurifer%1:18:00:: 10710171 1 0 -thurify%2:39:00:: 02126686 1 0 -thuringia%1:15:00:: 08776320 1 0 -thursday%1:28:00:: 15164354 1 13 -thus%1:27:00:: 14873951 1 0 -thus%4:02:00:: 00043003 1 90 -thus%4:02:01:: 00121135 2 55 -thus_far%4:02:00:: 00027918 1 3 -thusly%4:02:00:: 00121135 1 0 -thwack%1:04:00:: 00133567 1 1 -thwack%2:35:00:: 01414916 1 0 -thwart%1:06:00:: 04432043 1 1 -thwart%2:41:00:: 02558172 1 5 -thwarted%5:00:00:unsuccessful:00 02333976 1 0 -thwarter%1:18:00:: 10349243 1 0 -thwarting%1:04:00:: 00067990 1 0 -thwarting%5:00:00:preventive:00 01764745 1 0 -thwartwise%5:00:00:crosswise:00 01445917 1 0 -thylacine%1:05:00:: 01884476 1 0 -thylacinus%1:05:00:: 01884348 1 0 -thylacinus_cynocephalus%1:05:00:: 01884476 1 0 -thylogale%1:05:00:: 01879095 1 0 -thyme%1:13:00:: 07821758 2 0 -thyme%1:20:00:: 12870535 1 0 -thyme-leaved_sandwort%1:20:00:: 11806814 1 0 -thyme-leaved_speedwell%1:20:00:: 12892013 1 0 -thyme_camphor%1:27:00:: 15073563 1 0 -thymelaeaceae%1:20:00:: 12346179 1 0 -thymelaeales%1:20:00:: 12322887 1 0 -thymic_acid%1:27:00:: 15073563 1 0 -thymidine%1:27:00:: 15073424 1 0 -thymine%1:27:00:: 15072857 1 0 -thymol%1:27:00:: 15073563 1 0 -thymosin%1:08:00:: 05413102 1 0 -thymus%1:08:00:: 05332569 2 0 -thymus%1:20:00:: 12870392 1 0 -thymus_gland%1:08:00:: 05332569 1 0 -thymus_serpyllum%1:20:00:: 12870891 1 0 -thymus_vulgaris%1:20:00:: 12870682 1 0 -thyreophora%1:05:00:: 01701334 1 0 -thyreophoran%1:05:00:: 01701334 1 0 -thyrocalcitonin%1:08:00:: 05413465 1 0 -thyroglobulin%1:27:00:: 14922779 1 16 -thyroid%1:08:00:: 05330244 1 29 -thyroid%3:01:00:: 02981115 2 0 -thyroid%3:01:01:: 02981329 1 0 -thyroid-stimulating_hormone%1:27:00:: 15073973 1 1 -thyroid_cartilage%1:08:00:: 05530296 1 0 -thyroid_gland%1:08:00:: 05330244 1 6 -thyroid_hormone%1:08:00:: 05413241 1 4 -thyroid_vein%1:08:00:: 05383598 1 0 -thyroidal%3:01:00:: 02981329 1 1 -thyroidectomy%1:04:00:: 00688220 1 0 -thyroiditis%1:26:00:: 14357160 1 0 -thyromegaly%1:26:00:: 14199477 1 0 -thyronine%1:27:00:: 15074456 1 1 -thyroprotein%1:27:00:: 14922637 1 0 -thyrotoxic%3:01:00:: 02981224 1 1 -thyrotoxicosis%1:26:00:: 14120767 1 0 -thyrotrophic_hormone%1:27:00:: 15073973 1 1 -thyrotrophin%1:27:00:: 15073973 1 1 -thyrotropic_hormone%1:27:00:: 15073973 1 0 -thyrotropin%1:27:00:: 15073973 1 0 -thyrotropin-releasing_factor%1:27:00:: 15074203 1 0 -thyrotropin-releasing_hormone%1:27:00:: 15074203 1 0 -thyroxin%1:08:00:: 05413647 1 0 -thyroxine%1:08:00:: 05413647 1 9 -thyrse%1:20:00:: 13132756 1 0 -thyrsopteris%1:20:00:: 13191884 1 0 -thyrsopteris_elegans%1:20:00:: 13191884 1 0 -thyrsus%1:20:00:: 13132756 1 0 -thysanocarpus%1:20:00:: 11899027 1 0 -thysanopter%1:05:00:: 02271570 1 0 -thysanoptera%1:05:00:: 02271427 1 0 -thysanopteron%1:05:00:: 02271570 1 0 -thysanopterous_insect%1:05:00:: 02271570 1 0 -thysanura%1:05:00:: 02269829 1 0 -thysanuran_insect%1:05:00:: 02270011 1 0 -thysanuron%1:05:00:: 02270011 1 0 -thz%1:28:00:: 15280108 1 0 -ti%1:10:00:: 06869129 3 0 -ti%1:20:00:: 12478506 2 0 -ti%1:27:00:: 14659211 1 0 -tia%1:26:00:: 14166589 1 0 -tiamat%1:18:00:: 09522222 1 0 -tianjin%1:15:00:: 08728882 1 0 -tiara%1:06:00:: 04432203 1 0 -tiarella%1:20:00:: 12803517 1 0 -tiarella_cordifolia%1:20:00:: 12803754 1 0 -tiarella_unifoliata%1:20:00:: 12803958 1 0 -tib%1:23:00:: 13629482 1 0 -tiber%1:17:00:: 09457851 1 0 -tiberius%1:18:00:: 11341970 1 0 -tiberius_claudius_drusus_nero_germanicus%1:18:00:: 10899414 1 0 -tiberius_claudius_nero_caesar_augustus%1:18:00:: 11341970 1 0 -tibet%1:15:00:: 08906952 1 2 -tibetan%1:10:00:: 06933931 1 1 -tibetan%1:18:00:: 09734450 2 0 -tibetan%3:01:00:: 02965696 1 1 -tibetan_buddhism%1:09:00:: 06241825 1 0 -tibetan_mastiff%1:05:00:: 02108551 1 0 -tibetan_terrier%1:05:00:: 02097474 1 0 -tibeto-burman%1:10:00:: 06931199 1 0 -tibeto-burman_language%1:10:00:: 06931199 1 0 -tibia%1:08:00:: 05594367 1 0 -tibia_valga%1:26:00:: 14559983 1 0 -tibia_vara%1:08:00:: 05561834 1 0 -tibial%3:01:00:: 02815135 1 0 -tibial_vein%1:08:00:: 05384300 1 0 -tibialis%1:08:00:: 05591256 1 0 -tibialis_anterior%1:08:00:: 05591503 1 0 -tibialis_anticus%1:08:00:: 05591503 1 1 -tibialis_muscle%1:08:00:: 05591256 1 0 -tibialis_posterior%1:08:00:: 05591661 1 0 -tibialis_posticus%1:08:00:: 05591661 1 0 -tibicen%1:05:00:: 02256882 1 0 -tibit%1:23:00:: 13630036 1 0 -tibur%1:15:00:: 08808077 1 0 -tic%1:26:00:: 14361972 1 0 -tic-tac-toe%1:04:00:: 00506207 1 0 -tic_douloureux%1:26:00:: 14330588 1 0 -tical%1:23:00:: 13663820 1 0 -tichodroma%1:05:00:: 01590042 1 0 -tichodroma_muriaria%1:05:00:: 01590220 1 0 -tichodrome%1:05:00:: 01590220 1 0 -ticino%1:15:00:: 08801546 1 0 -tick%1:05:00:: 01776313 2 1 -tick%1:06:00:: 04432308 4 0 -tick%1:10:00:: 06818747 3 0 -tick%1:11:00:: 07397761 1 2 -tick%2:31:00:: 00662182 4 0 -tick%2:35:00:: 01331689 3 0 -tick%2:39:00:: 02185664 1 2 -tick%2:39:01:: 02175578 2 1 -tick-tack-toe%1:04:00:: 00506207 1 0 -tick-weed%1:20:00:: 11956850 1 0 -tick_fever%1:26:00:: 14141656 1 0 -tick_off%2:31:00:: 00662182 1 0 -tick_over%2:35:00:: 01526483 1 0 -tick_trefoil%1:20:00:: 12526516 1 0 -ticker%1:06:00:: 04432393 3 0 -ticker%1:06:01:: 04555897 2 0 -ticker%1:08:00:: 05388805 1 0 -ticker_tape%1:27:00:: 14976323 1 0 -ticket%1:07:00:: 04716703 5 0 -ticket%1:10:00:: 06558678 3 0 -ticket%1:10:01:: 06518719 1 3 -ticket%1:10:02:: 06495948 4 0 -ticket%1:10:03:: 07273136 2 0 -ticket%2:40:01:: 02329413 2 0 -ticket%2:41:00:: 02498716 1 0 -ticket-of-leave%1:10:00:: 06690928 1 0 -ticket_agent%1:18:00:: 09629477 1 0 -ticket_book%1:10:00:: 06414267 1 0 -ticket_booth%1:06:00:: 02885882 1 0 -ticket_collector%1:18:00:: 10710259 1 0 -ticket_holder%1:18:00:: 09629643 1 0 -ticket_line%1:14:00:: 08433245 1 0 -ticket_office%1:06:00:: 02885882 1 0 -ticket_stub%1:10:00:: 06520429 1 0 -ticket_taker%1:18:00:: 10710259 1 0 -ticket_tout%1:18:00:: 10718509 1 0 -ticket_window%1:06:00:: 04432538 1 0 -ticking%1:06:00:: 04432662 2 0 -ticking%1:11:00:: 07397761 1 0 -ticking_bomb%1:26:00:: 13944096 1 0 -tickle%1:04:00:: 00144445 2 0 -tickle%1:09:00:: 05723417 1 0 -tickle%2:35:00:: 01431987 3 0 -tickle%2:37:01:: 01796346 2 0 -tickle%2:39:00:: 02120140 1 0 -tickle_pink%2:37:00:: 01812324 1 0 -tickler%1:10:00:: 06792818 1 0 -tickler_coil%1:06:00:: 04432785 1 0 -tickler_file%1:10:00:: 06792818 1 0 -tickling%1:04:00:: 00144445 1 0 -tickling%5:00:00:exciting:00 00922439 1 0 -ticklish%5:00:00:difficult:00 00746994 1 0 -tickseed%1:20:00:: 11956850 1 0 -tickseed_sunflower%1:20:00:: 11940599 1 0 -ticktack%1:10:00:: 06792950 1 0 -ticktack%2:39:00:: 02175578 1 0 -ticktacktoe%1:04:00:: 00506207 1 0 -ticktacktoo%1:04:00:: 00506207 1 0 -ticktock%1:11:00:: 07397955 1 0 -ticktock%2:39:00:: 02175578 1 0 -tickweed%1:20:00:: 11956850 1 0 -ticonderoga%1:04:00:: 01279120 1 0 -tictac%1:11:00:: 07397955 1 0 -tidal%3:01:00:: 02815241 1 0 -tidal_basin%1:17:00:: 09457979 1 0 -tidal_bore%1:11:00:: 07403920 1 0 -tidal_current%1:11:00:: 07404114 1 0 -tidal_flow%1:11:00:: 07404114 1 0 -tidal_river%1:17:00:: 09458079 1 0 -tidal_stream%1:17:00:: 09458079 1 0 -tidal_wave%1:11:00:: 07348694 3 0 -tidal_wave%1:11:01:: 07348870 2 0 -tidal_wave%1:11:02:: 07349069 1 0 -tidal_zone%1:15:00:: 08691188 1 0 -tidbit%1:13:00:: 07594737 1 1 -tiddler%1:18:00:: 09917593 1 0 -tiddly%5:00:00:intoxicated:00 00798384 1 0 -tiddlywinks%1:04:00:: 00488051 1 0 -tide%1:11:00:: 07402519 1 5 -tide%1:11:01:: 07444495 2 1 -tide%1:28:00:: 15275727 3 0 -tide%2:38:01:: 01903756 1 0 -tide%2:38:02:: 01874320 3 0 -tide%2:38:03:: 01874424 2 0 -tide_over%2:42:00:: 02623346 1 0 -tide_rip%1:11:00:: 07404584 1 0 -tideland%1:17:00:: 09458269 1 0 -tidemark%1:06:00:: 04432942 1 0 -tidewater%1:15:00:: 09051898 2 1 -tidewater%1:17:00:: 09458372 1 1 -tidewater_region%1:15:00:: 09051898 1 0 -tidewater_river%1:17:00:: 09458079 1 0 -tidewater_stream%1:17:00:: 09458079 1 0 -tideway%1:17:00:: 09458494 1 0 -tidily%4:02:00:: 00401183 1 0 -tidiness%1:07:00:: 04896515 2 0 -tidiness%1:26:00:: 14497233 1 0 -tidings%1:10:00:: 06642138 1 3 -tidy%1:06:00:: 04433077 1 0 -tidy%2:30:00:: 00275843 1 0 -tidy%3:00:00:: 02422685 1 0 -tidy%5:00:00:considerable:00 00624576 3 0 -tidy%5:00:00:groomed:00 02427594 2 0 -tidy_sum%1:23:00:: 13774404 1 0 -tidy_tips%1:20:00:: 11988596 1 0 -tidy_up%2:30:00:: 00275843 1 1 -tidytips%1:20:00:: 11988596 1 0 -tie%1:06:00:: 04433185 9 0 -tie%1:06:01:: 03815615 1 5 -tie%1:06:02:: 04433377 4 1 -tie%1:06:03:: 04433585 8 0 -tie%1:06:04:: 03673971 5 1 -tie%1:10:00:: 06866124 7 0 -tie%1:11:00:: 07353716 6 0 -tie%1:26:00:: 13947174 3 3 -tie%1:26:01:: 13930385 2 4 -tie%2:30:00:: 00141632 5 1 -tie%2:30:01:: 00234217 3 4 -tie%2:33:00:: 01115190 2 5 -tie%2:35:00:: 01285440 1 13 -tie%2:35:01:: 01354673 4 2 -tie%2:35:02:: 01355411 9 0 -tie%2:36:00:: 01658444 8 0 -tie%2:41:00:: 02489456 7 0 -tie%2:41:01:: 02538086 6 0 -tie-dye%2:30:00:: 00288391 1 0 -tie-in%1:06:00:: 03673971 1 1 -tie-on%5:00:00:attachable:00 00161993 1 0 -tie-up%1:11:00:: 07366145 2 0 -tie-up%1:26:00:: 13930385 1 0 -tie_beam%1:06:00:: 04433377 1 0 -tie_clip%1:06:00:: 04433800 1 0 -tie_down%2:32:00:: 00885768 2 0 -tie_down%2:35:00:: 01286913 1 0 -tie_in%2:31:00:: 00713167 2 0 -tie_in%2:42:00:: 02736106 1 2 -tie_rack%1:06:00:: 04434207 1 0 -tie_rod%1:06:00:: 04434531 1 0 -tie_tack%1:06:00:: 04434670 1 0 -tie_up%2:35:00:: 01286913 1 3 -tie_up%2:35:01:: 01286038 5 0 -tie_up%2:35:04:: 01477014 3 0 -tie_up%2:35:05:: 01305542 4 0 -tie_up%2:40:00:: 02271923 2 0 -tieback%1:06:00:: 04019881 1 0 -tiebreaker%1:28:00:: 15234469 1 0 -tied%3:00:00:: 00254746 3 0 -tied%3:00:02:: 00254516 4 0 -tied%5:00:00:bound:01 00253869 1 2 -tied%5:00:00:equal:00 00892243 5 0 -tied%5:00:00:united:00 02478215 2 1 -tied_up%5:00:00:busy:00 00293882 1 1 -tien-pao%1:18:00:: 09533668 1 0 -tien_shan%1:17:00:: 09458587 1 0 -tientsin%1:15:00:: 08728882 1 0 -tiepin%1:06:00:: 04434670 1 0 -tiepolo%1:18:00:: 11342191 1 0 -tier%1:06:00:: 04433905 5 0 -tier%1:06:01:: 04434059 4 0 -tier%1:18:00:: 10710403 3 0 -tier%1:18:01:: 10710509 2 0 -tier%1:26:00:: 14428160 1 0 -tier_up%1:18:00:: 10710403 1 0 -tierce%1:23:00:: 13737190 3 0 -tierce%1:23:01:: 13744044 2 0 -tierce%1:28:00:: 15229875 1 0 -tiercel%1:05:00:: 01606177 1 0 -tiered%3:01:00:: 02815361 1 0 -tiered_seat%1:06:00:: 04434285 1 0 -tierra_del_fuego%1:15:00:: 08722394 1 0 -tietze's_syndrome%1:26:00:: 14310987 1 0 -tiff%1:10:00:: 07184735 1 0 -tiffany%1:18:00:: 11342301 1 0 -tiffany_glass%1:27:00:: 14882935 1 0 -tiffin%1:13:00:: 07575076 1 0 -tiflis%1:15:00:: 09019194 1 0 -tiger%1:05:00:: 02129604 2 1 -tiger%1:18:00:: 10710632 1 1 -tiger-striped%5:00:00:patterned:00 01791036 1 0 -tiger_beetle%1:05:00:: 02165105 1 0 -tiger_cat%1:05:01:: 02126465 1 0 -tiger_cat%1:05:02:: 02123159 2 0 -tiger_cowrie%1:05:00:: 01953762 1 0 -tiger_cub%1:05:00:: 01323068 1 0 -tiger_lily%1:20:01:: 12427184 2 0 -tiger_lily%1:20:02:: 12427566 1 0 -tiger_moth%1:05:00:: 02305636 1 0 -tiger_rattlesnake%1:05:00:: 01756916 1 0 -tiger_salamander%1:05:00:: 01632601 1 0 -tiger_shark%1:05:00:: 01491361 1 0 -tiger_snake%1:05:00:: 01750437 1 0 -tigerish%5:00:00:merciless:00 01508320 1 0 -tigers%1:14:00:: 08032023 1 0 -tight%3:00:01:: 01447302 1 10 -tight%3:00:02:: 01398199 7 0 -tight%4:02:00:: 00086404 1 3 -tight%4:02:02:: 00505226 2 1 -tight%5:00:00:closed:03 01655538 4 1 -tight%5:00:00:compact:00 00503157 14 0 -tight%5:00:00:demanding:01 00711059 13 0 -tight%5:00:00:difficult:00 00747727 12 0 -tight%5:00:00:equal:00 00890622 10 0 -tight%5:00:00:fine:00 02232739 8 0 -tight%5:00:00:intoxicated:00 00798103 11 0 -tight%5:00:00:invulnerable:00 02526441 3 1 -tight%5:00:00:scarce:00 00017186 6 1 -tight%5:00:00:secure:03 02095670 9 0 -tight%5:00:00:stingy:00 01113807 5 1 -tight%5:00:00:tense:01 02403505 2 2 -tight-fitting%5:00:00:tight:01 01448178 1 0 -tight-knit%5:00:00:integrated:02 01328877 1 0 -tight-laced%5:00:00:proper:00 01880163 1 0 -tight_end%1:18:00:: 10710778 1 0 -tight_fitting%5:00:00:tight:01 01448178 1 0 -tight_money%1:21:00:: 13256434 1 0 -tighten%2:30:00:: 00419950 2 1 -tighten%2:30:01:: 00420132 1 8 -tighten%2:30:02:: 00418765 3 1 -tighten%2:30:03:: 00233203 4 0 -tighten_one's_belt%2:40:00:: 02268704 1 0 -tighten_up%2:30:00:: 00418765 1 1 -tightening%1:04:00:: 00148057 1 1 -tightfisted%5:00:00:stingy:00 01113505 1 0 -tightfistedness%1:07:00:: 04833687 1 0 -tightfitting%5:00:00:tight:01 01448178 1 0 -tightlipped%5:00:00:uncommunicative:00 00501004 1 0 -tightly%4:02:01:: 00092569 2 1 -tightly%4:02:02:: 00300137 1 3 -tightly_fitting%5:00:00:tight:01 01448178 1 1 -tightly_knit%5:00:00:integrated:02 01328877 1 1 -tightness%1:07:00:: 04776940 5 0 -tightness%1:07:01:: 04833687 4 0 -tightness%1:07:02:: 05088804 3 0 -tightness%1:09:00:: 05721728 2 0 -tightness%1:26:00:: 14450540 1 0 -tightrope%1:06:00:: 04434780 1 0 -tightrope_walker%1:18:00:: 10115946 1 0 -tightrope_walking%1:04:00:: 00324978 1 0 -tights%1:06:00:: 04434932 1 0 -tightwad%1:18:00:: 09912681 1 0 -tiglon%1:05:00:: 02130086 1 0 -tigon%1:05:00:: 02130086 1 0 -tigress%1:05:00:: 02129923 1 0 -tigris%1:17:00:: 09458791 1 0 -tigris_river%1:17:00:: 09458791 1 0 -tijuana%1:15:00:: 08746147 1 0 -tike%1:18:01:: 09917593 2 0 -tike%1:18:02:: 10410815 1 0 -til_now%4:02:00:: 00027918 1 0 -tilapia%1:05:00:: 02586129 1 0 -tilapia_nilotica%1:05:00:: 02586238 1 0 -tilde%1:10:00:: 06823561 1 0 -tilden%1:18:00:: 11342440 1 0 -tile%1:06:00:: 04435180 1 1 -tile%1:06:01:: 04435378 3 0 -tile%1:27:00:: 15074568 2 0 -tile%2:35:00:: 01338663 1 0 -tile_cutter%1:06:00:: 04435552 1 0 -tile_roof%1:06:00:: 04435653 1 0 -tiled%5:00:00:covered:00 01698103 1 1 -tilefish%1:05:01:: 02573249 2 0 -tilefish%1:05:02:: 02583096 1 0 -tiler%1:18:00:: 10710913 1 0 -tilia%1:20:00:: 12202712 1 0 -tilia_americana%1:20:00:: 12203529 1 0 -tilia_cordata%1:20:00:: 12203699 1 0 -tilia_heterophylla%1:20:00:: 12203896 1 0 -tilia_japonica%1:20:00:: 12204032 1 0 -tilia_tomentosa%1:20:00:: 12204175 1 0 -tiliaceae%1:20:00:: 12202352 1 0 -tiling%1:04:00:: 00719274 1 0 -tiliomycetes%1:20:00:: 13065702 1 0 -till%1:06:00:: 02976939 3 0 -till%1:21:00:: 13357891 2 0 -till%1:27:00:: 15074772 1 0 -till%2:36:00:: 01740608 1 0 -tillable%5:00:00:productive:00 01865807 1 0 -tillage%1:04:00:: 00918176 2 0 -tillage%1:17:00:: 09260907 1 0 -tillandsia%1:20:00:: 12607896 1 0 -tillandsia_usneoides%1:20:00:: 12608127 1 0 -tilled%5:00:00:plowed:00 01833092 1 1 -tilled_land%1:17:00:: 09260907 1 0 -tiller%1:06:00:: 04435759 3 0 -tiller%1:06:01:: 03146846 4 0 -tiller%1:18:00:: 10711005 2 0 -tiller%1:20:00:: 13164970 1 0 -tiller%2:29:00:: 00095595 1 0 -tilletia%1:20:00:: 13068073 1 0 -tilletia_caries%1:20:00:: 13068255 1 0 -tilletia_foetida%1:20:00:: 13068434 1 0 -tilletiaceae%1:20:00:: 13067845 1 0 -tillich%1:18:00:: 11342618 1 0 -tilling%1:04:00:: 00918820 1 0 -tilt%1:04:01:: 00348008 5 0 -tilt%1:07:00:: 05068080 4 0 -tilt%1:09:00:: 06202296 3 0 -tilt%1:10:00:: 07183151 2 0 -tilt%1:11:01:: 07472460 1 0 -tilt%2:33:00:: 01122906 4 0 -tilt%2:38:00:: 02038357 1 9 -tilt%2:38:01:: 01884577 2 1 -tilt%2:38:02:: 01884974 3 0 -tilt-top_table%1:06:00:: 04436012 1 1 -tilt_angle%1:25:00:: 13918584 1 0 -tilted%5:00:00:inclined:01 01234527 1 2 -tilter%1:06:00:: 04435870 2 0 -tilter%1:18:00:: 10711144 1 0 -tilth%1:17:00:: 09260907 2 0 -tilth%1:26:00:: 14496063 1 1 -tilting_board%1:06:00:: 04167759 1 0 -tiltyard%1:15:00:: 08684572 1 0 -tim_leary%1:18:00:: 11122579 1 0 -timalia%1:05:00:: 01566509 1 0 -timaliidae%1:05:00:: 01566386 1 0 -timbale%1:13:00:: 07625324 1 0 -timbale%1:13:01:: 07625201 2 0 -timbale_case%1:13:00:: 07625201 1 0 -timber%1:06:00:: 04436185 2 2 -timber%1:06:01:: 04436329 3 1 -timber%1:07:00:: 04987620 5 0 -timber%1:17:00:: 09284015 4 0 -timber%1:27:00:: 14943580 1 3 -timber-framed%5:00:00:timbered:00 02429880 1 0 -timber_hitch%1:06:00:: 04436401 1 0 -timber_line%1:15:00:: 08547655 1 0 -timber_rattlesnake%1:05:00:: 01755740 1 0 -timber_tree%1:20:00:: 13107694 1 0 -timber_wolf%1:05:00:: 02114367 1 0 -timbered%3:00:00:: 02429571 1 1 -timbered%5:00:00:wooded:00 02574706 2 1 -timberland%1:17:00:: 09284015 1 0 -timberline%1:15:00:: 08547655 1 0 -timberman%1:18:00:: 10711253 1 0 -timbre%1:07:00:: 04987620 1 2 -timbrel%1:06:00:: 04436542 1 0 -timbuktu%1:15:00:: 08966085 1 0 -time%1:03:00:: 00028270 5 36 -time%1:07:01:: 04991738 9 1 -time%1:11:00:: 07309599 1 219 -time%1:11:01:: 07288215 6 10 -time%1:28:00:: 15122231 3 114 -time%1:28:01:: 15224692 10 0 -time%1:28:03:: 15129927 7 7 -time%1:28:04:: 15135822 8 5 -time%1:28:05:: 15270431 2 160 -time%1:28:06:: 15245515 4 43 -time%2:30:00:: 00490968 1 4 -time%2:30:01:: 00297906 4 0 -time%2:30:06:: 00296973 5 0 -time%2:31:00:: 00678547 2 3 -time%2:31:01:: 00702226 3 1 -time-and-motion_study%1:04:00:: 00645365 1 0 -time-ball%1:06:00:: 04436675 1 0 -time-consuming%5:00:00:long:02 01441866 1 0 -time-delay_measuring_instrument%1:06:00:: 04437380 1 0 -time-delay_measuring_system%1:06:00:: 04437380 1 1 -time-fuse%1:06:00:: 04437670 1 0 -time-honored%5:00:00:honorable:00 01226997 2 0 -time-honored%5:00:00:reputable:00 01983672 1 0 -time-honoured%5:00:00:honorable:00 01226997 2 0 -time-honoured%5:00:00:reputable:00 01983672 1 0 -time-motion_study%1:04:00:: 00645365 1 0 -time-out%1:28:00:: 15274305 1 0 -time-release%3:01:00:: 02815459 1 0 -time-scale_factor%1:23:00:: 13734202 1 0 -time-switch%1:06:00:: 04438643 1 0 -time-tested%5:00:00:reliable:00 00724596 1 0 -time_and_a_half%1:21:00:: 13281641 1 0 -time_and_again%4:02:00:: 00176981 1 2 -time_and_motion_study%1:04:00:: 00645365 1 0 -time_and_time_again%4:02:00:: 00176981 1 2 -time_being%1:28:00:: 15135434 1 0 -time_bill%1:21:00:: 13423007 1 0 -time_bomb%1:06:00:: 04436832 2 0 -time_bomb%1:26:00:: 13944096 1 0 -time_capsule%1:06:00:: 04436992 1 0 -time_clock%1:06:00:: 04437276 1 1 -time_constant%1:24:00:: 13826084 2 0 -time_constant%1:28:00:: 15269996 1 0 -time_deposit%1:21:00:: 13381428 1 0 -time_deposit_account%1:21:00:: 13364368 1 0 -time_draft%1:21:00:: 13423007 1 0 -time_exposure%1:04:00:: 00907788 2 0 -time_exposure%1:06:00:: 04437552 1 0 -time_frame%1:28:00:: 15116095 1 0 -time_immemorial%1:28:00:: 15252524 1 0 -time_interval%1:28:00:: 15269513 1 0 -time_lag%1:28:00:: 15272029 1 0 -time_limit%1:28:00:: 15224156 1 0 -time_loan%1:21:00:: 13400472 1 0 -time_machine%1:06:00:: 04437793 1 2 -time_note%1:21:00:: 13415271 1 0 -time_of_arrival%1:28:00:: 15180934 1 1 -time_of_day%1:28:00:: 15228378 1 0 -time_of_departure%1:28:00:: 15181094 1 0 -time_of_life%1:28:00:: 15144371 1 2 -time_of_origin%1:07:00:: 04926217 1 0 -time_of_year%1:28:00:: 15236475 1 1 -time_off%1:28:00:: 15118453 1 4 -time_out%1:04:00:: 01062997 1 0 -time_out_of_mind%1:28:00:: 15252524 1 0 -time_period%1:28:00:: 15113229 1 4 -time_plan%1:21:00:: 13296593 1 1 -time_scale%1:28:00:: 15134691 1 0 -time_series%1:09:00:: 06029547 1 0 -time_sharing%1:24:00:: 13844057 1 0 -time_sheet%1:10:00:: 06505154 1 0 -time_signal%1:10:00:: 06793091 1 0 -time_signature%1:10:00:: 06864524 1 0 -time_slot%1:28:00:: 15270245 1 0 -time_study%1:04:00:: 00645365 1 0 -time_to_come%1:28:00:: 15121625 1 0 -time_unit%1:28:00:: 15154774 1 0 -time_value%1:28:00:: 15134913 1 0 -time_zone%1:15:00:: 08691276 1 0 -timecard%1:06:00:: 04437131 2 0 -timecard%1:10:00:: 06504838 1 0 -timed%5:00:00:regular:00 01960207 1 1 -timekeeper%1:06:00:: 04437953 3 0 -timekeeper%1:18:00:: 10711370 2 0 -timekeeper%1:18:01:: 10711483 1 0 -timekeeping%1:28:00:: 15173712 1 0 -timeless%5:00:00:unaltered:00 00353431 1 0 -timeless_existence%1:26:00:: 13956905 1 0 -timelessness%1:26:00:: 13956905 1 0 -timeline%1:10:00:: 06504965 1 0 -timeliness%1:07:00:: 04718826 2 0 -timeliness%1:07:01:: 05049253 1 1 -timely%4:02:00:: 00273752 1 1 -timely%5:00:00:opportune:00 01661529 2 1 -timely%5:00:01:punctual:00 01900771 1 3 -timepiece%1:06:00:: 04437953 1 1 -timer%1:06:00:: 04438304 1 1 -timer%1:06:01:: 04438507 3 0 -timer%1:18:00:: 10711483 2 0 -times%1:04:00:: 00871576 2 1 -times%1:28:01:: 15120346 1 12 -times_square%1:15:00:: 09122542 1 0 -timeserver%1:18:00:: 10711641 1 0 -timeserving%5:00:00:expedient:00 00931974 1 0 -timetable%1:10:00:: 06496397 2 0 -timetable%1:10:01:: 06496499 1 1 -timework%1:04:00:: 00795625 1 0 -timeworn%5:00:00:unoriginal:00 01688757 1 1 -timgad%1:15:00:: 08707431 1 0 -timid%1:14:00:: 07944900 1 0 -timid%3:00:00:: 00251809 1 3 -timid%3:00:09:: 00339941 2 0 -timid%5:00:00:cowardly:00 00265989 3 0 -timidity%1:07:00:: 04860759 2 0 -timidity%1:12:00:: 07522729 1 1 -timidly%4:02:00:: 00228910 1 2 -timidness%1:12:00:: 07522729 1 0 -timimoun%1:15:00:: 08707587 1 0 -timing%1:04:00:: 00807078 2 0 -timing%1:07:00:: 05046009 1 6 -timolol%1:06:00:: 04438742 1 0 -timor%1:15:00:: 08908739 1 0 -timor_sea%1:17:00:: 09458967 1 0 -timorese%1:18:00:: 10711766 1 0 -timorese%3:01:00:: 02815635 1 0 -timorous%5:00:00:timid:00 00252498 1 0 -timorously%4:02:00:: 00478991 1 0 -timorousness%1:07:00:: 04860759 2 0 -timorousness%1:12:00:: 07522729 1 0 -timothy%1:13:00:: 07802152 3 0 -timothy%1:18:00:: 11342766 2 0 -timothy%1:20:00:: 12130549 1 0 -timothy_francis_leary%1:18:00:: 11122579 1 0 -timothy_leary%1:18:00:: 11122579 1 0 -timothy_miles_bindon_rice%1:18:00:: 11259777 1 0 -timpani%1:06:00:: 03612965 1 0 -timpanist%1:18:00:: 10734963 1 0 -timucu%1:05:00:: 02550203 1 0 -timur%1:18:00:: 11330026 1 0 -timur_lenk%1:18:00:: 11330026 1 0 -tin%1:06:00:: 02946921 4 0 -tin%1:06:01:: 02949542 3 0 -tin%1:06:03:: 04438897 2 0 -tin%1:27:00:: 14658855 1 5 -tin%2:30:00:: 00213794 2 0 -tin%2:30:02:: 00213034 3 0 -tin%2:35:00:: 01395382 1 0 -tin-plating%1:04:00:: 00718195 1 0 -tin_can%1:06:00:: 02946921 2 0 -tin_can%1:06:01:: 04439039 1 0 -tin_disease%1:11:00:: 07360477 1 0 -tin_ear%1:07:00:: 04844478 2 0 -tin_ear%1:26:00:: 14551704 1 0 -tin_foil%1:06:00:: 04439712 1 0 -tin_foil%1:06:01:: 02700767 2 0 -tin_hat%1:06:00:: 03492922 1 0 -tin_opener%1:06:00:: 02951585 1 0 -tin_pan_alley%1:15:00:: 08539557 1 0 -tin_pest%1:11:00:: 07360477 1 0 -tin_plague%1:11:00:: 07360477 1 0 -tin_plate%1:06:00:: 04439840 1 0 -tin_pyrites%1:27:00:: 15053568 1 0 -tin_whistle%1:06:00:: 03912218 1 0 -tinamidae%1:05:00:: 01810132 1 0 -tinamiformes%1:05:00:: 01809977 1 0 -tinamou%1:05:00:: 01810268 1 0 -tinbergen%1:18:00:: 11342905 2 0 -tinbergen%1:18:01:: 11343040 1 0 -tinca%1:05:00:: 01440655 1 0 -tinca_tinca%1:05:00:: 01440764 1 0 -tinct%2:30:00:: 00286928 1 0 -tincture%1:06:00:: 04439122 4 0 -tincture%1:07:00:: 04959230 3 0 -tincture%1:10:00:: 06646628 2 0 -tincture%1:27:00:: 14986004 1 0 -tincture%2:30:00:: 00287560 2 0 -tincture%2:30:01:: 00498299 1 0 -tincture_of_iodine%1:06:00:: 04439305 1 0 -tincture_of_opium%1:06:00:: 03647108 1 0 -tindal%1:18:00:: 11354333 1 0 -tindale%1:18:00:: 11354333 1 0 -tinder%1:27:00:: 15101586 1 0 -tinderbox%1:06:00:: 04439505 2 0 -tinderbox%1:26:00:: 13944337 1 0 -tine%1:06:00:: 04439585 1 2 -tine_test%1:09:00:: 05746424 1 0 -tinea%1:05:00:: 02291940 2 0 -tinea%1:26:00:: 14125466 1 0 -tinea_barbae%1:26:00:: 14126181 1 0 -tinea_capitis%1:26:00:: 14126293 1 0 -tinea_corporis%1:26:00:: 14126412 1 0 -tinea_cruris%1:26:00:: 14126519 1 0 -tinea_pedis%1:26:00:: 14126078 1 0 -tinea_pellionella%1:05:00:: 02292085 1 0 -tinea_unguium%1:26:00:: 14127100 1 0 -tined%5:00:00:divided:00 02482509 1 0 -tineid%1:05:00:: 02291572 1 0 -tineid_moth%1:05:00:: 02291572 1 0 -tineidae%1:05:00:: 02291391 1 0 -tineoid%1:05:00:: 02291220 1 0 -tineoid_moth%1:05:00:: 02291220 1 0 -tineoidea%1:05:00:: 02291024 1 0 -tineola%1:05:00:: 02292272 1 0 -tineola_bisselliella%1:05:00:: 02292401 1 0 -tinfoil%1:06:00:: 04439712 1 0 -ting%1:11:00:: 07398097 1 0 -ting%2:39:00:: 02136019 2 0 -ting%2:39:01:: 02180262 1 0 -tinge%1:07:00:: 04959567 2 0 -tinge%1:23:00:: 13774115 1 0 -tinge%2:30:00:: 00286928 2 0 -tinge%2:32:13:: 00836926 1 0 -tingidae%1:05:00:: 02238474 1 0 -tingle%1:09:00:: 05722868 2 0 -tingle%1:12:00:: 07520112 1 0 -tingle%2:39:00:: 02122983 1 3 -tingling%1:09:00:: 05722868 1 0 -tingling%5:00:00:exciting:00 00922439 1 2 -tininess%1:07:00:: 05106928 1 0 -tink%2:39:00:: 02186506 1 0 -tinker%1:05:00:: 02624987 3 0 -tinker%1:18:01:: 10711852 2 0 -tinker%1:18:02:: 10712055 1 0 -tinker%2:30:00:: 00261314 3 0 -tinker%2:35:00:: 01473346 1 1 -tinker%2:41:00:: 02411529 2 0 -tinker's_dam%1:07:00:: 05140793 1 0 -tinker's_damn%1:07:00:: 05140793 1 0 -tinker's_root%1:20:00:: 12679876 1 0 -tinkerer%1:18:00:: 10712229 1 0 -tinkerer%1:18:02:: 10712055 2 0 -tinkle%1:11:00:: 07398097 1 1 -tinkle%2:39:00:: 02186506 1 2 -tinkling%5:00:00:reverberant:00 02010831 1 0 -tinkly%5:00:00:reverberant:00 02010831 1 0 -tinned%5:00:00:preserved:02 01072112 1 0 -tinned_goods%1:13:00:: 07572957 1 0 -tinned_meat%1:13:00:: 07573103 1 0 -tinner%1:18:00:: 10712374 1 0 -tinnevelly_senna%1:20:00:: 12499979 1 0 -tinning%1:04:00:: 00718195 2 0 -tinning%1:04:01:: 00718325 1 0 -tinnitus%1:26:00:: 14568359 1 0 -tinny%3:01:00:: 02815753 1 0 -tinny%5:00:00:inferior:02 02346013 2 0 -tinny%5:00:00:metallic:00 01529167 3 0 -tinplate%1:06:00:: 04439840 1 0 -tinpot%5:00:00:worthless:00 02503900 1 0 -tinsel%1:06:00:: 04440059 2 0 -tinsel%1:06:01:: 04440210 1 0 -tinsel%2:35:00:: 01519446 3 0 -tinsel%2:36:00:: 01677989 2 0 -tinsel%2:40:00:: 02325405 1 0 -tinseled%5:00:00:adorned:00 00057737 1 0 -tinselly%5:00:00:adorned:00 00057737 1 0 -tinsmith%1:18:00:: 10712374 1 0 -tinsnips%1:06:00:: 04250473 1 0 -tint%1:07:00:: 04959230 1 1 -tint%2:30:00:: 00286928 1 1 -tintack%1:06:00:: 04440399 1 0 -tinter%1:18:00:: 10712474 1 0 -tinting%1:04:00:: 00275151 1 0 -tintinnabulate%2:39:00:: 02181281 1 0 -tintinnabulation%1:11:00:: 07391863 1 0 -tintometer%1:06:00:: 03071552 1 0 -tintoretto%1:18:00:: 11343208 1 0 -tinware%1:06:00:: 04440486 1 0 -tiny%5:00:00:small:00 01392249 1 19 -tip%1:10:00:: 06651577 3 3 -tip%1:15:00:: 08663156 1 9 -tip%1:15:01:: 08617963 5 0 -tip%1:21:00:: 13298701 2 3 -tip%1:25:00:: 13902482 4 0 -tip%2:30:00:: 00511178 2 1 -tip%2:30:04:: 00176021 9 0 -tip%2:32:04:: 00873469 8 0 -tip%2:35:04:: 01247804 7 0 -tip%2:38:00:: 01924023 6 0 -tip%2:38:01:: 02038357 5 0 -tip%2:38:02:: 02039544 1 5 -tip%2:38:04:: 02097047 4 0 -tip%2:40:00:: 02202133 3 0 -tip-and-run%5:00:00:offensive:03 01629493 1 0 -tip-off%1:04:00:: 00481666 2 0 -tip-off%1:09:01:: 05827129 1 0 -tip-tilted%5:00:00:shapely:00 02140144 1 0 -tip-top%4:02:00:: 00479108 1 0 -tip-top_table%1:06:00:: 04436012 1 0 -tip-up%5:00:00:collapsible:00 00466229 1 0 -tip_in%1:04:00:: 00112185 1 0 -tip_off%2:32:01:: 00873469 1 0 -tip_over%2:38:00:: 01909397 2 0 -tip_over%2:38:01:: 01909978 1 0 -tip_sheet%1:10:00:: 06595797 1 0 -tip_table%1:06:00:: 04436012 1 0 -tip_truck%1:06:00:: 03256166 1 0 -tipi%1:06:00:: 04412416 1 0 -tipped%3:00:00:: 02430756 1 1 -tipped%5:00:00:inclined:01 01234527 2 0 -tipper%1:06:00:: 03256166 2 0 -tipper%1:18:00:: 10712573 1 0 -tipper_lorry%1:06:00:: 03256166 1 0 -tipper_truck%1:06:00:: 03256166 1 0 -tippet%1:06:00:: 04440597 1 0 -tipple%1:13:00:: 07883980 1 0 -tipple%2:34:00:: 01172114 1 0 -tippler%1:18:00:: 10712690 1 0 -tippy%5:00:00:unstable:00 02292421 1 0 -tippytoe%2:38:00:: 01924023 1 0 -tipsiness%1:26:00:: 14018567 1 0 -tipstaff%1:10:00:: 07267795 1 0 -tipster%1:18:00:: 10712835 1 0 -tipsy%5:00:00:intoxicated:00 00798384 1 1 -tipsy%5:00:00:unstable:00 02293386 2 0 -tipsy_cake%1:13:00:: 07613671 1 0 -tiptoe%1:08:00:: 05577304 1 0 -tiptoe%2:38:00:: 01924023 1 1 -tiptoe%4:02:00:: 00479193 1 1 -tiptoe%5:00:00:quiet:01 01919793 1 0 -tiptop%1:15:00:: 08664365 2 0 -tiptop%1:26:00:: 13940456 1 0 -tiptop%5:00:00:superior:02 02341864 1 0 -tipu%1:20:00:: 12573911 1 0 -tipu_tree%1:20:00:: 12573911 1 0 -tipuana%1:20:00:: 12573760 1 0 -tipulidae%1:05:00:: 02205095 1 0 -tirade%1:10:00:: 07233415 1 0 -tiramisu%1:13:00:: 07613266 1 0 -tirana%1:15:00:: 08705091 1 0 -tire%1:06:00:: 04440749 1 8 -tire%2:29:00:: 00076114 1 3 -tire%2:29:01:: 00075021 2 3 -tire%2:37:01:: 01821884 4 0 -tire%2:40:00:: 02280869 3 0 -tire_chain%1:06:00:: 04440963 1 0 -tire_iron%1:06:00:: 04441093 1 0 -tire_out%2:29:00:: 00075021 1 2 -tire_tool%1:06:00:: 04441093 1 1 -tired%3:00:00:: 02431728 1 9 -tired%5:00:00:unoriginal:00 01688757 2 0 -tired_of%5:00:00:displeased:00 01806677 1 7 -tiredly%4:02:00:: 00090424 1 1 -tiredness%1:26:00:: 14016361 1 0 -tireless%5:00:00:diligent:00 00754682 2 0 -tireless%5:00:00:energetic:00 00874920 1 1 -tirelessly%4:02:00:: 00052489 1 0 -tirelessness%1:07:00:: 04864824 1 0 -tiresias%1:18:00:: 09598066 1 0 -tiresome%5:00:00:uninteresting:00 01345307 1 1 -tiresomely%4:02:00:: 00215048 1 0 -tiresomeness%1:07:00:: 05206237 1 0 -tirich_mir%1:17:00:: 09459114 1 0 -tiring%5:00:00:effortful:00 00837249 1 1 -tiro%1:18:00:: 10363913 1 0 -tirol%1:15:00:: 08846135 1 0 -tirolean%1:06:00:: 04505888 1 0 -tirso_de_molina%1:18:00:: 11343333 1 0 -tisane%1:13:00:: 07934032 1 0 -tisha_b'ab%1:28:00:: 15197658 1 0 -tisha_b'av%1:28:00:: 15197658 1 0 -tishah_b'ab%1:28:00:: 15197658 1 0 -tishah_b'av%1:28:00:: 15197658 1 0 -tishri%1:28:00:: 15214419 1 0 -tisiphone%1:18:00:: 09506751 1 0 -tissue%1:08:00:: 05267345 1 37 -tissue%1:27:02:: 15074962 2 4 -tissue%2:36:00:: 01673891 1 0 -tissue_layer%1:08:00:: 05426243 1 0 -tissue_paper%1:27:00:: 15074962 1 2 -tissue_plasminogen_activator%1:06:00:: 04441282 1 0 -tissue_typing%1:09:00:: 05746868 1 0 -tit%1:05:00:: 01591697 3 0 -tit%1:08:01:: 05554405 1 2 -tit%1:08:02:: 05554653 2 0 -tit-tat-toe%1:04:00:: 00506207 1 0 -tit_for_tat%1:04:00:: 01237080 1 0 -titan%1:17:00:: 09459269 3 0 -titan%1:18:00:: 09572425 2 0 -titan%1:18:01:: 09938991 1 0 -titan_arum%1:20:00:: 11783488 1 0 -titaness%1:18:00:: 09572825 1 0 -titania%1:18:00:: 09546453 2 0 -titania%1:27:00:: 14616740 1 0 -titanic%5:00:00:large:00 01390683 1 1 -titanic_acid%1:27:00:: 14616620 1 0 -titanic_oxide%1:27:00:: 14616740 1 0 -titanium%1:27:00:: 14659211 1 0 -titanium_dioxide%1:27:00:: 14616740 1 0 -titanium_oxide%1:27:00:: 14616740 1 0 -titanosaur%1:05:00:: 01710747 1 0 -titanosaurian%1:05:00:: 01710747 1 0 -titanosauridae%1:05:00:: 01710348 1 0 -titanosaurus%1:05:00:: 01710529 1 0 -titbit%1:13:00:: 07594737 1 0 -titer%1:07:00:: 05038823 1 8 -titfer%1:06:00:: 04441528 1 0 -tithe%1:21:01:: 13270545 2 0 -tithe%1:21:02:: 13315743 1 0 -tithe%2:40:00:: 02306869 2 0 -tithe%2:40:01:: 02307008 1 0 -tithe%2:40:02:: 02252542 4 0 -tithe%2:40:03:: 02252755 3 0 -tithe_barn%1:06:00:: 04441662 1 0 -tither%1:18:00:: 10713012 1 0 -tithonia%1:20:00:: 12026018 1 0 -titi%1:05:00:: 02493509 3 0 -titi%1:20:01:: 12751172 1 0 -titi%1:20:02:: 12242409 2 0 -titi_family%1:20:00:: 12750306 1 0 -titi_monkey%1:05:00:: 02493509 1 0 -titian%1:18:00:: 11343507 1 0 -titillate%2:37:00:: 01816219 2 0 -titillate%2:39:00:: 02120140 1 0 -titillated%5:00:00:excited:00 00920603 1 0 -titillating%5:00:00:sexy:00 02132080 2 0 -titillating%5:00:01:exciting:00 00922344 1 1 -titillating%5:00:02:exciting:00 00922439 3 0 -titillation%1:04:00:: 00144445 3 0 -titillation%1:04:01:: 01262345 2 0 -titillation%1:12:00:: 07528976 1 0 -titivate%2:30:00:: 00293977 1 0 -titivation%1:04:00:: 00263492 1 0 -titlark%1:05:00:: 01528654 1 0 -title%1:07:00:: 05181199 7 1 -title%1:07:02:: 05175904 10 0 -title%1:10:00:: 06343520 2 8 -title%1:10:01:: 06346461 3 3 -title%1:10:02:: 06339416 6 1 -title%1:10:03:: 06343117 9 0 -title%1:10:04:: 06545137 5 2 -title%1:10:05:: 06345993 1 26 -title%1:10:06:: 06346220 8 0 -title%1:26:00:: 13948912 4 2 -title%2:32:00:: 01029500 1 3 -title%2:32:02:: 01028466 2 0 -title-holder%1:18:00:: 09906704 1 1 -title_bar%1:10:00:: 07273616 1 0 -title_deed%1:10:00:: 06546261 1 0 -title_of_respect%1:10:00:: 06339416 1 0 -title_page%1:10:00:: 06257653 1 1 -title_role%1:09:00:: 05929887 1 0 -titled%5:00:00:noble:02 01591227 1 1 -titmouse%1:05:00:: 01591697 1 0 -tito%1:18:00:: 11343625 1 0 -titrate%2:30:00:: 00491910 1 0 -titration%1:04:00:: 00648237 1 1 -titrator%1:06:00:: 04441790 1 0 -titre%1:07:00:: 05038823 1 0 -titter%1:10:00:: 07128225 1 0 -titter%2:29:00:: 00030142 1 2 -titterer%1:18:00:: 10713124 1 0 -tittering%3:44:00:: 03154649 1 1 -tittivate%2:30:00:: 00293977 1 0 -tittivation%1:04:00:: 00263492 1 0 -tittle%1:23:00:: 13773725 1 0 -tittle-tattle%1:10:00:: 07135080 1 0 -tittle-tattle%2:32:00:: 01036804 1 0 -tittup%2:38:00:: 01916634 1 0 -titty%1:08:00:: 05554405 1 0 -titular%3:01:00:: 02815843 4 0 -titular%3:01:01:: 02815998 3 0 -titular%3:01:02:: 02816198 2 0 -titular%3:01:03:: 02816340 1 0 -titular%5:00:00:formal:01 01043374 5 0 -titulary%3:01:00:: 02816340 1 0 -titus%1:10:00:: 06445989 3 0 -titus%1:18:00:: 11343847 2 0 -titus%1:18:01:: 11343998 1 0 -titus_flavius_domitianus%1:18:00:: 10938821 1 0 -titus_flavius_sabinus_vespasianus%1:18:00:: 11364799 1 0 -titus_flavius_vespasianus%1:18:00:: 11343847 1 0 -titus_livius%1:18:00:: 11135991 1 0 -titus_lucretius_carus%1:18:00:: 11144068 1 0 -titus_maccius_plautus%1:18:00:: 11239443 1 0 -titus_oates%1:18:00:: 11211071 1 0 -titus_vespasianus_augustus%1:18:00:: 11343847 1 0 -tiu%1:18:00:: 09586231 1 0 -tivoli%1:15:00:: 08808077 1 0 -tiyin%1:23:00:: 13701094 2 0 -tiyin%1:23:01:: 13703592 1 0 -tiziano_vecellio%1:18:00:: 11343507 1 0 -tizzy%1:26:00:: 14403772 1 0 -tjalling_charles_koopmans%1:18:00:: 11109027 1 0 -tjalling_koopmans%1:18:00:: 11109027 1 0 -tko%1:04:00:: 00134246 1 0 -tl%1:27:00:: 14657818 1 0 -tlc%1:04:00:: 00665221 1 0 -tlingit%1:10:00:: 06913025 2 0 -tlingit%1:18:00:: 09670637 1 0 -tm%1:27:00:: 14658546 1 0 -tmv%1:05:00:: 01334518 1 0 -tn%1:15:00:: 09140148 1 0 -tnf%1:27:00:: 14737365 1 0 -tnt%1:06:00:: 04442143 1 0 -to-do%1:26:00:: 13977366 1 0 -to_a_fault%4:02:00:: 00047392 1 0 -to_a_great_extent%4:02:00:: 00176383 1 0 -to_a_greater_extent%4:02:01:: 00099341 1 1 -to_a_higher_place%4:02:00:: 00080169 1 0 -to_a_lesser_extent%4:02:00:: 00099527 1 0 -to_a_lower_place%4:02:01:: 00080039 1 0 -to_a_man%4:02:00:: 00171931 1 0 -to_a_t%4:02:00:: 00172020 1 0 -to_advantage%4:02:00:: 00171781 1 0 -to_all_intents_and_purposes%4:02:01:: 00060300 1 0 -to_and_fro%4:02:00:: 00076193 1 11 -to_be_precise%4:02:00:: 00227023 1 0 -to_be_sure%4:02:00:: 00150134 1 11 -to_begin_with%4:02:00:: 00167286 1 3 -to_boot%4:02:00:: 00046167 1 1 -to_both_ears%4:02:00:: 00207945 1 0 -to_date%4:02:00:: 00172151 1 0 -to_each_one%4:02:00:: 00239908 1 0 -to_it%4:02:00:: 00468219 1 4 -to_leeward%1:24:00:: 13829980 1 0 -to_no_degree%4:02:00:: 00411570 1 0 -to_one_ear%4:02:00:: 00208111 1 0 -to_order%4:02:00:: 00172261 1 0 -to_perfection%4:02:00:: 00172020 1 0 -to_that%4:02:00:: 00468219 1 0 -to_that_degree%4:02:00:: 00098959 1 0 -to_that_effect%4:02:00:: 00172443 1 0 -to_that_extent%4:02:00:: 00098959 1 1 -to_the_contrary%4:02:00:: 00170412 1 3 -to_the_full%4:02:00:: 00010466 1 0 -to_the_highest_degree%4:02:00:: 00111609 1 0 -to_the_hilt%4:02:00:: 00172548 1 1 -to_the_letter%4:02:00:: 00172020 1 0 -to_the_limit%4:02:00:: 00172548 1 0 -to_the_lowest_degree%4:02:00:: 00111758 1 0 -to_the_south%4:02:00:: 00243938 1 0 -to_windward%1:24:00:: 13829720 1 0 -to_wit%4:02:00:: 00188510 1 0 -toad%1:05:00:: 01639765 1 4 -toad-in-the-hole%1:13:00:: 07627478 1 0 -toad_frog%1:05:00:: 01639765 1 0 -toad_lily%1:20:00:: 11861641 1 0 -toad_rush%1:20:00:: 11744108 1 0 -toadfish%1:05:00:: 02548689 1 0 -toadflax%1:20:00:: 12884260 1 0 -toadshade%1:20:00:: 12469157 1 0 -toadstool%1:20:00:: 13001206 1 0 -toady%1:18:00:: 10684827 1 0 -toady%2:32:00:: 00880978 1 0 -toadyish%5:00:00:insincere:00 02181231 1 0 -toadyish%5:00:00:servile:00 00790394 2 0 -toast%1:13:00:: 07686873 1 5 -toast%1:13:01:: 07884413 4 0 -toast%1:18:00:: 10713367 2 0 -toast%1:18:01:: 10137936 3 0 -toast%2:30:00:: 00322151 1 5 -toast%2:34:00:: 01175467 2 1 -toast_mistress%1:18:00:: 10713843 1 0 -toasted%5:00:00:cooked:00 00619119 1 0 -toaster%1:06:00:: 04442312 2 0 -toaster%1:18:00:: 10713502 1 0 -toaster_oven%1:06:00:: 04442441 1 0 -toasting%1:04:00:: 00246552 1 0 -toasting_fork%1:06:00:: 04442582 1 0 -toastmaster%1:18:00:: 10713686 1 0 -toastrack%1:06:00:: 04442741 1 0 -tobacco%1:06:00:: 04442831 1 4 -tobacco%1:20:00:: 12907465 2 0 -tobacco_budworm%1:05:00:: 02310334 1 0 -tobacco_hornworm%1:05:00:: 02299157 1 0 -tobacco_industry%1:14:00:: 08074879 1 0 -tobacco_juice%1:08:00:: 05416861 1 0 -tobacco_mildew%1:20:00:: 12981443 1 0 -tobacco_mosaic%1:26:00:: 14281086 1 0 -tobacco_mosaic_virus%1:05:00:: 01334518 1 1 -tobacco_moth%1:05:00:: 02290340 1 0 -tobacco_pipe%1:06:00:: 03945167 1 0 -tobacco_plant%1:20:00:: 12907465 1 0 -tobacco_pouch%1:06:00:: 04443164 1 0 -tobacco_shop%1:06:00:: 04443257 1 0 -tobacco_thrips%1:05:00:: 02272286 1 0 -tobacco_user%1:18:00:: 10614976 1 0 -tobacco_wilt%1:26:00:: 14279235 1 0 -tobacconist%1:06:00:: 04443257 2 0 -tobacconist%1:18:00:: 10713923 1 0 -tobacconist_shop%1:06:00:: 04443257 1 0 -tobago%1:15:00:: 08756052 1 0 -tobagonian%1:18:00:: 10714054 1 0 -tobagonian%3:01:00:: 03125370 1 0 -tobey%1:18:00:: 11344092 1 0 -tobias_george_smollett%1:18:00:: 11306473 1 0 -tobias_smollett%1:18:00:: 11306473 1 0 -tobin%1:18:00:: 11344235 1 0 -tobin_bronze%1:27:00:: 14960261 1 0 -tobit%1:10:00:: 06459681 1 0 -toboggan%1:06:00:: 04443433 1 0 -toboggan%2:38:00:: 01940034 1 0 -toboggan_cap%1:06:00:: 04228693 1 0 -tobogganing%1:04:00:: 00447221 1 0 -tobogganist%1:18:00:: 10714195 1 0 -tobramycin%1:06:00:: 04443588 1 0 -toby%1:06:00:: 04443766 1 0 -toby_fillpot_jug%1:06:00:: 04443766 1 0 -toby_jug%1:06:00:: 04443766 1 0 -tocainide%1:06:00:: 04443918 1 0 -tocantins%1:17:00:: 09459393 1 0 -tocantins_river%1:17:00:: 09459393 1 0 -toccata%1:10:00:: 07044353 1 0 -tocharian%1:10:00:: 06968707 1 0 -tocktact%1:11:00:: 07397955 1 0 -tocology%1:09:00:: 06053439 1 0 -tocopherol%1:27:00:: 15092409 1 0 -tocqueville%1:18:00:: 11344337 1 0 -tocsin%1:06:00:: 04444121 2 0 -tocsin%1:10:00:: 07265886 1 0 -tod%1:23:00:: 13719410 1 0 -tod%5:00:00:unaccompanied:00 02251773 1 0 -toda%1:10:00:: 06979743 2 0 -toda%1:18:00:: 09675673 1 0 -today%1:28:00:: 15262921 1 69 -today%1:28:01:: 15156001 2 13 -today%4:02:00:: 00207366 2 11 -today%4:02:01:: 00048475 1 19 -todd%1:18:00:: 11344549 1 0 -todd%1:18:01:: 10714317 2 0 -toddle%2:38:00:: 01918803 1 0 -toddler%1:18:00:: 10714465 1 0 -toddy%1:13:00:: 07918879 1 1 -toddy_palm%1:20:00:: 12585629 2 0 -toddy_palm%1:20:01:: 12587132 1 0 -todea%1:20:00:: 12954634 1 0 -todea_barbara%1:20:00:: 12954799 1 0 -todea_superba%1:20:00:: 12954353 1 0 -todidae%1:05:00:: 01831078 1 0 -todus%1:05:00:: 01831231 1 0 -tody%1:05:00:: 01831360 1 0 -toe%1:06:00:: 04444218 2 2 -toe%1:06:01:: 04444345 4 0 -toe%1:08:01:: 05577410 1 13 -toe%1:08:02:: 05577654 3 0 -toe%2:35:00:: 01207044 5 0 -toe%2:35:01:: 01404138 3 0 -toe%2:35:02:: 01516865 2 0 -toe%2:35:03:: 01402305 4 0 -toe%2:38:00:: 01906525 1 0 -toe-in%1:04:00:: 01001489 1 0 -toe-to-toe%4:02:00:: 00116390 1 0 -toe_box%1:06:00:: 04444522 1 0 -toe_crack%1:26:00:: 14275560 1 0 -toe_dance%1:04:00:: 00528059 1 0 -toe_dancing%1:04:00:: 00528059 1 0 -toe_the_line%2:41:00:: 02542706 1 2 -toe_toe%1:20:00:: 12115383 1 0 -toea%1:23:00:: 13680712 1 0 -toecap%1:06:00:: 04444749 1 0 -toed%3:00:00:: 01032029 1 0 -toehold%1:04:00:: 00815036 3 0 -toehold%1:06:00:: 04444953 2 0 -toehold%1:26:00:: 14579827 1 0 -toeless%3:00:00:: 01032531 1 0 -toenail%1:08:00:: 05584486 1 0 -toenail%2:35:00:: 01516865 1 0 -toetoe%1:20:01:: 12109365 2 0 -toetoe%1:20:02:: 12115383 1 0 -toff%1:18:00:: 10714577 1 0 -toffee%1:13:00:: 07599783 1 1 -toffee-nosed%5:00:00:private:00 01861095 1 0 -toffee_apple%1:13:00:: 07600696 1 0 -toffy%1:13:00:: 07599783 1 0 -tofieldia%1:20:00:: 12461809 1 0 -tofieldia_pusilla%1:20:00:: 12462221 1 0 -tofranil%1:06:00:: 03561889 1 0 -tofu%1:13:00:: 07709881 1 0 -tog%2:29:00:: 00047945 1 0 -tog_out%2:29:00:: 00044149 1 0 -tog_up%2:29:00:: 00044149 1 0 -toga%1:06:00:: 04445040 1 0 -toga_virilis%1:06:00:: 04445154 1 0 -togaviridae%1:05:00:: 01332347 1 0 -together%4:02:00:: 00116510 4 9 -together%4:02:01:: 00116588 5 7 -together%4:02:02:: 00116791 1 22 -together%4:02:03:: 00116994 2 18 -together%4:02:05:: 00116705 6 1 -together%4:02:10:: 00507927 3 12 -together%5:00:00:unneurotic:00 01586194 1 2 -together_with%4:02:00:: 00117082 1 0 -togetherness%1:12:00:: 07530322 1 0 -togged%5:00:00:clothed:00 00456929 1 0 -togged_up%5:00:00:clothed:00 00455824 1 0 -toggle%1:06:00:: 04445327 3 0 -toggle%1:06:01:: 04445952 2 0 -toggle%1:10:00:: 06587399 1 0 -toggle%2:35:00:: 01608004 2 0 -toggle%2:35:01:: 01475075 3 0 -toggle%2:40:00:: 02357561 1 0 -toggle_bolt%1:06:00:: 04445610 1 0 -toggle_joint%1:06:00:: 04445782 1 0 -toggle_switch%1:06:00:: 04445952 1 0 -togo%1:15:00:: 08759986 1 0 -togo_franc%1:23:00:: 13678931 1 0 -togolese%1:18:00:: 09734535 1 0 -togolese%3:01:00:: 03125505 1 0 -togolese_republic%1:15:00:: 08759986 1 0 -togs%1:06:00:: 04446162 1 0 -toil%1:04:00:: 00620752 1 0 -toil%2:41:00:: 02419773 1 2 -toiler%1:18:00:: 10700105 1 0 -toilet%1:04:00:: 00828704 4 0 -toilet%1:06:00:: 04446276 1 3 -toilet%1:06:01:: 04446521 2 2 -toilet%1:26:00:: 14475992 3 0 -toilet-train%2:31:00:: 00604449 1 0 -toilet-trained%5:00:00:trained:00 01912483 1 0 -toilet_articles%1:06:00:: 04447443 1 0 -toilet_bag%1:06:00:: 04446844 1 0 -toilet_bowl%1:06:00:: 04447028 1 0 -toilet_facility%1:06:00:: 04018667 1 0 -toilet_kit%1:06:00:: 04447156 1 0 -toilet_paper%1:27:00:: 15075141 1 0 -toilet_powder%1:06:00:: 04447276 1 0 -toilet_roll%1:27:00:: 15075298 1 0 -toilet_seat%1:06:00:: 04447861 1 0 -toilet_soap%1:06:00:: 04447965 1 0 -toilet_table%1:06:00:: 03238586 1 0 -toilet_tissue%1:27:00:: 15075141 1 0 -toilet_training%1:04:00:: 00896228 1 0 -toilet_water%1:06:00:: 04448070 1 0 -toiletry%1:06:00:: 04447443 1 0 -toilette%1:04:00:: 00828704 1 0 -toiling%5:00:00:busy:00 00293376 1 1 -toilsome%5:00:00:effortful:00 00836544 1 0 -toilsomeness%1:07:00:: 04709944 1 0 -toitoi%1:20:00:: 12109365 1 0 -tojo%1:18:00:: 11344733 1 0 -tojo_eiki%1:18:00:: 11344733 1 0 -tojo_hideki%1:18:00:: 11344733 1 0 -tokamak%1:06:00:: 04448185 1 0 -tokay%1:13:01:: 07760501 2 0 -tokay%1:13:02:: 07898895 1 0 -toke%1:04:00:: 00837965 1 0 -token%1:06:00:: 04448361 3 0 -token%1:06:01:: 03610270 4 0 -token%1:10:00:: 06795746 1 2 -token%1:10:01:: 06646531 2 0 -token%5:00:00:minimal:00 01496592 1 0 -token_economy%1:04:00:: 00702992 1 0 -token_money%1:21:00:: 13385778 1 0 -token_payment%1:21:00:: 13300025 1 0 -tokenish%5:00:00:minimal:00 01496592 1 1 -tokio%1:15:00:: 08923348 1 0 -toklas%1:18:00:: 11345017 1 0 -tokyo%1:15:00:: 08923348 1 3 -tolazamide%1:06:00:: 04448511 1 0 -tolazoline%1:06:00:: 04448680 1 0 -tolbooth%1:06:00:: 04449290 1 0 -tolbukhin%1:15:00:: 08714624 1 0 -tolbutamide%1:06:00:: 04448826 1 0 -tole%1:06:00:: 04449046 1 0 -tolectin%1:06:00:: 04449796 1 0 -toledo%1:15:00:: 09131428 1 0 -toledo%1:15:01:: 09027292 2 0 -tolerable%3:00:00:: 02435026 1 0 -tolerable%5:00:00:satisfactory:00 02080937 2 0 -tolerably%4:02:01:: 00055312 1 0 -tolerance%1:04:00:: 01071090 3 1 -tolerance%1:07:02:: 04749991 5 0 -tolerance%1:07:03:: 05033410 1 1 -tolerance%1:07:04:: 04637923 2 1 -tolerance%1:09:00:: 06204406 4 0 -tolerant%3:00:00:: 02436341 1 3 -tolerant%5:00:00:broad-minded:00 00286837 3 1 -tolerant%5:00:00:forgiving:00 01041209 2 1 -tolerant%5:00:00:patient:00 01736883 5 0 -tolerant%5:00:00:tolerable:00 02435383 4 0 -tolerantly%4:02:00:: 00380833 1 0 -tolerate%2:31:00:: 00668099 1 7 -tolerate%2:32:01:: 00802946 4 0 -tolerate%2:39:00:: 02109404 3 0 -tolerate%2:41:01:: 02457585 2 0 -toleration%1:04:00:: 01142324 2 0 -toleration%1:07:00:: 04638175 1 0 -tolinase%1:06:00:: 04448511 1 0 -tolkien%1:18:00:: 11345181 1 0 -toll%1:07:01:: 05163807 2 1 -toll%1:11:00:: 07377244 3 0 -toll%1:21:00:: 13323749 1 1 -toll%2:39:00:: 02181973 1 1 -toll%2:40:00:: 02306728 2 0 -toll-free%3:01:00:: 02816522 1 0 -toll_agent%1:18:00:: 10714684 1 0 -toll_bridge%1:06:00:: 04449449 1 0 -toll_call%1:10:00:: 06274292 1 1 -toll_collector%1:18:00:: 10714684 1 0 -toll_house_cookie%1:13:00:: 07638317 1 0 -toll_line%1:06:00:: 04449700 1 0 -toll_plaza%1:15:00:: 08619949 1 0 -toll_road%1:06:00:: 04501018 1 0 -toll_taker%1:18:00:: 10714684 1 0 -tollbar%1:06:00:: 04449550 1 0 -tollbooth%1:06:00:: 04449290 1 0 -toller%1:18:00:: 10714684 2 0 -toller%1:18:01:: 10714851 1 0 -tollgate%1:06:00:: 04449550 1 1 -tollgatherer%1:18:00:: 10714684 1 0 -tollhouse%1:06:00:: 04449290 1 1 -tollkeeper%1:18:00:: 10714684 1 0 -tollman%1:18:00:: 10714684 1 0 -tollon%1:20:00:: 12633061 1 0 -tolmetin_sodium%1:06:00:: 04449796 1 0 -tolmiea%1:20:00:: 12804216 1 0 -tolmiea_menziesii%1:20:00:: 12804352 1 0 -tolstoy%1:18:00:: 11345378 1 0 -toltec%1:18:00:: 09649249 1 0 -tolu%1:20:00:: 12551669 1 0 -tolu_balsam%1:20:00:: 12551669 1 0 -tolu_balsam_tree%1:20:00:: 12551173 1 0 -tolu_tree%1:20:00:: 12551173 1 0 -toluene%1:27:00:: 15075378 1 0 -toluic_acid%1:27:00:: 15075596 1 0 -tolypeutes%1:05:00:: 02454999 1 0 -tolypeutes_tricinctus%1:05:00:: 02455135 1 0 -tom%1:05:01:: 02122725 2 0 -tom%1:05:02:: 01794344 3 0 -tom%1:18:00:: 09638245 1 0 -tom-tom%1:06:00:: 04410086 1 0 -tom_and_jerry%1:13:00:: 07919055 1 0 -tom_bradley%1:18:00:: 10860999 1 0 -tom_collins%1:13:00:: 07913882 1 0 -tom_hanks%1:18:00:: 11028074 1 0 -tom_paine%1:18:00:: 11220836 1 0 -tom_sawyer%1:18:00:: 09603919 1 0 -tom_stoppard%1:18:00:: 11320245 1 0 -tom_thumb%1:18:00:: 10715136 2 0 -tom_thumb%1:18:01:: 10715211 1 0 -tom_turkey%1:05:00:: 01794344 1 0 -tom_wolfe%1:18:00:: 11394657 1 0 -tomahawk%1:06:00:: 04449966 1 0 -tomahawk%2:35:00:: 01554519 1 0 -tomahawk%2:35:01:: 01326424 2 0 -tomalley%1:13:00:: 07793946 1 0 -tomas_de_torquemada%1:18:00:: 11345878 1 0 -tomasso_parentucelli%1:18:00:: 11202322 1 0 -tomatillo%1:13:00:: 07734555 3 0 -tomatillo%1:20:01:: 12911440 2 0 -tomatillo%1:20:02:: 12911673 1 0 -tomato%1:13:00:: 07734017 1 2 -tomato%1:20:00:: 12905817 2 0 -tomato_blight%1:26:00:: 14219187 1 0 -tomato_concentrate%1:13:00:: 07567611 1 0 -tomato_fruitworm%1:05:00:: 02310334 1 0 -tomato_hornworm%1:05:00:: 02299505 1 0 -tomato_juice%1:13:00:: 07925500 1 0 -tomato_ketchup%1:13:00:: 07822197 1 0 -tomato_paste%1:13:00:: 07826250 1 1 -tomato_plant%1:20:00:: 12905817 1 0 -tomato_sauce%1:13:00:: 07831267 1 0 -tomato_streak%1:26:00:: 14281216 1 0 -tomato_worm%1:05:00:: 02299157 1 0 -tomato_yellows%1:26:00:: 14219187 1 0 -tomb%1:06:00:: 03455033 1 6 -tombac%1:27:00:: 15075691 1 0 -tombak%1:27:00:: 15075691 1 0 -tombaugh%1:18:00:: 11345539 1 0 -tombigbee%1:17:00:: 09459557 1 0 -tombigbee_river%1:17:00:: 09459557 1 0 -tombola%1:04:00:: 00504844 1 0 -tomboy%1:18:00:: 10715030 1 0 -tomboyish%5:00:00:unwomanly:00 01485708 1 0 -tomboyishness%1:07:00:: 04667258 1 0 -tombstone%1:06:00:: 03455488 1 0 -tomcat%1:05:00:: 02122725 1 0 -tome%1:10:00:: 06413579 1 0 -tomentose%3:01:00:: 03021347 1 0 -tomentose%5:00:00:hairy:00 00216155 2 0 -tomentous%5:00:00:hairy:00 00216155 1 0 -tomentum%1:08:00:: 05248006 2 0 -tomentum%1:20:00:: 13090091 1 0 -tomentum_cerebri%1:08:00:: 05248006 1 0 -tomfool%1:18:00:: 10100761 1 0 -tomfoolery%1:04:00:: 00512843 1 0 -tomistoma%1:05:00:: 01697837 1 0 -tomistoma_schlegeli%1:05:00:: 01697978 1 0 -tommy_gun%1:06:00:: 04450133 1 0 -tommyrot%1:10:00:: 06611147 1 0 -tomograph%1:06:00:: 04450243 1 0 -tomography%1:04:00:: 00901083 1 0 -tomorrow%1:28:00:: 15263795 2 9 -tomorrow%1:28:01:: 15155891 1 15 -tomorrow%4:02:00:: 00479275 1 3 -tompion%1:06:00:: 04388040 1 0 -tomtate%1:05:00:: 02589062 1 0 -tomtit%1:05:00:: 01592694 1 0 -ton%1:23:01:: 13721387 2 0 -ton%1:23:02:: 13721529 1 10 -tonal%3:00:00:: 02437148 2 1 -tonal%3:01:00:: 02816663 1 6 -tonal_language%1:10:00:: 06904943 1 0 -tonal_pattern%1:09:00:: 05711915 1 0 -tonal_system%1:10:00:: 07113732 1 0 -tonality%1:10:00:: 06863751 1 0 -tone%1:07:00:: 04959230 5 2 -tone%1:07:01:: 04987620 3 11 -tone%1:07:02:: 04986883 2 22 -tone%1:07:03:: 05211451 10 0 -tone%1:09:00:: 05719605 7 1 -tone%1:10:00:: 06859056 9 0 -tone%1:10:01:: 07082573 1 24 -tone%1:10:02:: 06865345 6 1 -tone%1:26:01:: 14526182 4 5 -tone%1:26:02:: 14544672 8 0 -tone%2:29:00:: 00101277 5 0 -tone%2:30:01:: 00289974 4 0 -tone%2:30:02:: 00290132 3 0 -tone%2:32:00:: 01066775 1 0 -tone%2:32:02:: 00982293 2 0 -tone-beginning%1:04:00:: 00236953 1 0 -tone-deaf%5:00:00:deaf:00 00682662 1 0 -tone_arm%1:06:00:: 04450465 1 0 -tone_deafness%1:26:00:: 14551704 1 0 -tone_down%2:32:00:: 00933566 2 0 -tone_down%2:39:00:: 02191311 1 0 -tone_ending%1:04:00:: 00210940 1 0 -tone_language%1:10:00:: 06904943 1 3 -tone_of_voice%1:10:00:: 07082573 1 0 -tone_poem%1:10:00:: 07047373 1 0 -tone_system%1:10:00:: 07113732 1 4 -tone_up%2:29:00:: 00101277 1 0 -toned%3:00:00:: 02430096 2 0 -toned%5:00:00:tonal:00 02437853 1 1 -tonegawa_susumu%1:18:00:: 11345705 1 0 -toneless%3:00:00:: 02430238 1 0 -tonelessly%4:02:00:: 00479366 1 0 -toner%1:06:00:: 04450640 3 0 -toner%1:27:00:: 15075867 2 0 -toner%1:27:01:: 15076011 1 0 -tong_ho%1:20:00:: 11951052 1 0 -tonga%1:10:00:: 06996029 2 0 -tonga%1:15:00:: 09037133 1 0 -tongan%1:10:00:: 06938190 2 0 -tongan%1:18:00:: 09750410 1 0 -tongan%3:01:01:: 03125643 1 0 -tongan_monetary_unit%1:23:00:: 13689984 1 0 -tongs%1:06:00:: 04450749 1 0 -tongue%1:06:00:: 04450994 7 0 -tongue%1:06:01:: 03037228 8 0 -tongue%1:08:00:: 05301072 1 13 -tongue%1:10:00:: 06904171 2 4 -tongue%1:10:01:: 07082198 4 1 -tongue%1:13:00:: 07652995 6 0 -tongue%1:17:00:: 09442595 5 0 -tongue%1:25:00:: 13918387 3 2 -tongue%2:35:00:: 01432353 2 0 -tongue%2:36:00:: 01734300 1 0 -tongue-fish%1:05:00:: 02663485 1 0 -tongue-flower%1:20:00:: 12063211 1 0 -tongue-in-cheek%4:02:00:: 00085667 2 0 -tongue-in-cheek%4:02:02:: 00277728 1 0 -tongue-in-cheek%5:00:00:humorous:00 01264913 1 2 -tongue-lashing%1:10:00:: 06712833 1 0 -tongue-shaped%5:00:00:rounded:00 02046736 1 0 -tongue-tie%2:40:00:: 02313542 1 0 -tongue-tied%5:00:00:inarticulate:00 00152104 1 0 -tongue_and_groove_joint%1:06:00:: 04451139 1 0 -tongue_depressor%1:06:00:: 04451318 1 1 -tongue_fern%1:20:00:: 13178284 1 0 -tongue_tie%1:26:00:: 14472111 1 0 -tongue_twister%1:10:00:: 07133313 1 1 -tongue_worm%1:05:00:: 01788864 1 0 -tongued%3:00:00:: 02430355 1 1 -tongued%5:00:00:speaking:00 00153083 2 0 -tonguefish%1:05:00:: 02663485 1 0 -tongueflower%1:20:00:: 12063211 1 0 -tongueless%3:00:00:: 02430659 1 0 -tongueless%5:00:00:inarticulate:00 00152285 2 0 -tongueless_frog%1:05:00:: 01653773 1 0 -tonguelike%5:00:00:tongued:00 02430563 1 0 -tonguing_and_grooving_plane%1:06:00:: 03729647 1 0 -toni_morrison%1:18:00:: 11192349 1 0 -tonic%1:06:00:: 04451473 4 0 -tonic%1:10:00:: 06857726 3 0 -tonic%1:13:01:: 07927512 2 0 -tonic%1:13:02:: 07929172 1 0 -tonic%3:00:00:: 02320751 3 0 -tonic%3:01:01:: 02816663 2 0 -tonic%3:01:02:: 02816888 1 0 -tonic%5:00:00:invigorating:00 01357027 5 0 -tonic%5:00:00:tonal:00 02438043 4 0 -tonic_accent%1:10:00:: 07085961 1 0 -tonic_epilepsy%1:26:00:: 14090727 1 0 -tonic_key%1:10:00:: 06864407 1 0 -tonic_solfa%1:10:00:: 06867880 1 0 -tonic_water%1:13:00:: 07929172 1 0 -tonicity%1:26:00:: 14544672 1 0 -tonight%1:28:00:: 15263045 1 3 -tonight%4:02:00:: 00079499 1 22 -tonka_bean%1:20:01:: 11749920 2 0 -tonka_bean%1:20:02:: 11750173 1 0 -tonka_bean_tree%1:20:00:: 11749920 1 0 -tonnage%1:21:00:: 13317269 1 0 -tonnage_duty%1:21:00:: 13317269 1 0 -tonne%1:23:00:: 13725588 1 0 -tonocard%1:06:00:: 04443918 1 0 -tonometer%1:06:00:: 04451636 1 0 -tonometry%1:04:00:: 01116696 1 0 -tons%1:23:00:: 13777509 1 2 -tonsil%1:08:00:: 05309050 1 0 -tonsilla%1:08:00:: 05309050 1 0 -tonsilla_adenoidea%1:08:00:: 05529286 1 0 -tonsilla_pharyngealis%1:08:00:: 05529286 1 0 -tonsillectomy%1:04:00:: 00688317 1 0 -tonsillitis%1:26:00:: 14357251 1 0 -tonsorial%3:01:00:: 03125792 1 0 -tonsure%1:04:00:: 00254922 2 0 -tonsure%1:08:00:: 05539717 1 0 -tonsure%2:29:00:: 00037779 1 0 -tonsured%5:00:00:hairless:00 00212057 1 0 -tontine%1:21:00:: 13295360 2 0 -tontine%1:21:02:: 13347750 1 0 -tontine_insurance%1:21:00:: 13347750 1 0 -tonus%1:26:00:: 14544672 1 0 -tony_blair%1:18:00:: 10852506 1 0 -too%4:02:00:: 00047392 1 180 -too%4:02:01:: 00047534 2 117 -too-careful%5:00:00:careful:00 00310943 1 1 -too-generous%5:00:00:generous:01 01111965 1 0 -too-greedy%5:00:00:gluttonous:00 00011665 1 0 -too_bad%5:00:00:unfortunate:00 01052038 1 5 -too_big_for_one's_breeches%5:00:00:proud:00 01890382 1 0 -too_large%5:00:00:large:00 01390130 1 2 -too_much%4:02:00:: 00415963 1 29 -too_soon%4:02:00:: 00100082 1 1 -tool%1:04:00:: 00173761 2 5 -tool%1:06:00:: 04451818 1 15 -tool%1:08:00:: 05526713 4 0 -tool%1:18:00:: 09976551 3 0 -tool%2:36:00:: 01669547 4 0 -tool%2:38:00:: 01956708 2 1 -tool%2:38:01:: 02100341 1 1 -tool%2:40:00:: 02338003 3 0 -tool-and-die_work%1:04:00:: 00618536 1 2 -tool_around%2:38:00:: 01956708 1 1 -tool_bag%1:06:00:: 04452528 1 0 -tool_cabinet%1:06:00:: 04452615 1 0 -tool_case%1:06:00:: 04452615 1 0 -tool_chest%1:06:00:: 04452615 1 0 -tool_kit%1:06:00:: 02966687 1 0 -tool_steel%1:27:00:: 15076180 1 0 -toolbox%1:06:00:: 04452615 1 0 -toolhouse%1:06:00:: 04452757 1 0 -toolmaker%1:18:00:: 10715347 1 0 -toolshed%1:06:00:: 04452757 1 0 -toon%1:10:00:: 06616464 1 0 -toona%1:20:00:: 12700219 1 0 -toona_calantas%1:20:00:: 12700357 1 0 -tooshie%1:08:00:: 05559256 1 0 -toot%1:04:00:: 00511041 2 0 -toot%1:11:00:: 07398276 1 0 -toot%2:39:00:: 02183175 1 0 -tooth%1:04:00:: 00179576 4 1 -tooth%1:05:02:: 02155872 3 1 -tooth%1:06:01:: 04452848 2 2 -tooth%1:06:02:: 04453037 5 0 -tooth%1:08:00:: 05282746 1 38 -tooth_and_nail%4:02:00:: 00172348 1 0 -tooth_decay%1:22:00:: 13444513 1 0 -tooth_doctor%1:18:00:: 10004282 1 0 -tooth_enamel%1:08:00:: 05308655 1 0 -tooth_fairy%1:18:00:: 09546604 1 0 -tooth_fungus%1:20:00:: 12986227 1 0 -tooth_powder%1:06:00:: 04453557 1 0 -tooth_root%1:08:00:: 05308310 1 0 -tooth_shell%1:05:00:: 01941340 1 0 -tooth_socket%1:08:00:: 05285480 1 0 -toothache%1:26:00:: 14323974 1 0 -toothache_tree%1:20:00:: 12714949 1 0 -toothbrush%1:06:00:: 04453156 1 1 -toothbrush%1:08:00:: 05262422 2 0 -toothbrush_tree%1:20:00:: 12299640 1 0 -toothed%3:00:00:: 02438346 1 0 -toothed%5:00:01:rough:02 02246903 3 0 -toothed%5:00:02:rough:02 02247785 2 0 -toothed_spurge%1:20:00:: 12922119 1 0 -toothed_sword_fern%1:20:00:: 13205249 1 0 -toothed_whale%1:05:00:: 02066707 1 0 -toothed_wheel%1:06:00:: 04113194 1 0 -toothless%3:00:00:: 02439582 1 0 -toothless%5:00:00:ineffective:00 00835978 2 0 -toothlike%5:00:00:toothed:00 02439303 1 0 -toothpaste%1:06:00:: 04453298 1 1 -toothpick%1:06:00:: 04453390 1 0 -toothpowder%1:06:00:: 04453557 1 0 -toothsome%3:00:00:: 01716227 1 0 -toothsome%5:00:00:sexy:00 02132967 3 0 -toothsome%5:00:00:tasty:00 02396720 2 0 -toothsomeness%1:07:00:: 04995793 1 0 -toothwort%1:20:00:: 11882426 1 0 -toothy%5:00:00:toothed:00 02439377 1 0 -tootle%1:11:00:: 07398362 1 0 -tootle%2:39:00:: 02183442 1 0 -toowomba_canary_grass%1:20:00:: 12130160 1 0 -top%1:06:00:: 04453666 10 0 -top%1:06:01:: 04453910 9 0 -top%1:06:02:: 03035252 11 0 -top%1:06:03:: 04454240 8 0 -top%1:06:04:: 04454540 7 0 -top%1:07:02:: 05037617 6 1 -top%1:15:00:: 08663354 2 15 -top%1:15:01:: 08663860 1 23 -top%1:15:02:: 08617963 3 8 -top%1:26:00:: 13940456 5 3 -top%1:28:00:: 15256022 4 3 -top%2:30:01:: 00485891 9 0 -top%2:30:03:: 00484712 10 0 -top%2:35:00:: 01321509 8 0 -top%2:35:02:: 01406897 7 0 -top%2:38:00:: 02081178 2 1 -top%2:38:04:: 02021376 6 0 -top%2:40:00:: 02360497 5 0 -top%2:42:00:: 02669081 1 2 -top%2:42:02:: 02691722 3 0 -top%2:42:11:: 02687385 4 0 -top%3:00:00:: 02439949 1 11 -top-down%3:00:00:: 02443155 1 0 -top-flight%5:00:00:superior:02 02344672 1 0 -top-grade%5:00:00:best:00 00228173 1 1 -top-heavy%5:00:00:unstable:00 02293497 1 0 -top-hole%5:00:00:superior:02 02344672 1 0 -top-notch%5:00:00:superior:02 02341864 1 0 -top-quality%5:00:00:best:00 00228173 1 1 -top-secret%5:00:00:classified:02 00416301 1 0 -top-up%1:23:00:: 13764213 1 0 -top_banana%1:18:00:: 10715447 1 0 -top_banana%1:18:01:: 10235142 2 0 -top_billing%1:10:00:: 07251003 1 0 -top_boot%1:06:00:: 02925666 1 0 -top_brass%1:14:00:: 08165353 1 0 -top_dog%1:18:00:: 10162991 1 3 -top_dressing%1:11:00:: 07434678 1 0 -top_executive%1:18:00:: 09840217 1 1 -top_fermentation%1:22:00:: 13567627 1 0 -top_fermenting_yeast%1:27:00:: 14784952 1 0 -top_hat%1:06:00:: 03237416 1 0 -top_lift%1:06:00:: 04455169 1 0 -top_of_the_inning%1:28:00:: 15256022 1 0 -top_of_the_line%1:06:00:: 04455442 1 0 -top_off%2:30:03:: 00484712 1 0 -top_off%2:30:12:: 00453294 2 0 -top_onion%1:20:00:: 12433540 1 0 -top_out%2:38:00:: 02008066 3 0 -top_out%2:40:00:: 02360497 2 0 -top_out%2:41:00:: 02382742 1 0 -top_quark%1:17:00:: 09459812 1 0 -top_round%1:13:00:: 07662406 1 0 -top_side%1:15:00:: 08663354 1 0 -topaz%1:07:00:: 04973020 3 0 -topaz%1:27:00:: 15076349 2 0 -topaz%1:27:01:: 15076523 1 0 -topcoat%1:06:00:: 03456665 1 0 -topdress%2:30:00:: 00503058 1 0 -tope%1:06:00:: 04346328 1 0 -tope%2:34:00:: 01172275 1 0 -topee%1:06:00:: 03950899 1 0 -topeka%1:15:00:: 09088815 1 0 -toper%1:18:00:: 10034201 1 0 -toper's_nose%1:26:00:: 14397040 1 0 -topgallant%1:06:01:: 04454654 2 0 -topgallant%1:06:02:: 04454792 1 0 -topgallant_mast%1:06:00:: 04454654 1 2 -topgallant_sail%1:06:00:: 04454792 1 0 -tophus%1:17:00:: 09454925 2 0 -tophus%1:27:00:: 15085925 1 0 -topi%1:05:00:: 02422391 2 0 -topi%1:06:00:: 03950899 1 0 -topiary%1:04:00:: 00938134 2 0 -topiary%1:06:00:: 04454908 1 0 -topic%1:09:00:: 05814291 2 2 -topic%1:10:00:: 06599788 1 5 -topic_sentence%1:10:00:: 06601217 1 0 -topical%3:01:00:: 02817339 2 0 -topical%5:00:00:current:00 00668053 3 0 -topical%5:00:00:local:02 01425895 1 2 -topical_anaesthesia%1:26:00:: 14028087 1 0 -topical_anaesthetic%1:06:00:: 03681148 1 0 -topical_anesthesia%1:26:00:: 14028087 1 0 -topical_anesthetic%1:06:00:: 03681148 1 0 -topical_prostaglandin_eyedrop%1:04:00:: 00657420 1 0 -topicality%1:07:00:: 05193160 1 0 -topicalization%1:10:01:: 06484279 1 0 -topicalize%2:32:00:: 01013856 1 0 -topically%4:02:00:: 00135418 1 0 -topknot%1:05:00:: 01326198 2 0 -topknot%1:06:00:: 04455048 1 0 -topknotted%5:00:00:adorned:00 00057992 1 0 -topless%3:00:00:: 02442082 1 0 -topless%5:00:00:unclothed:00 00458488 2 0 -topmast%1:06:00:: 04455250 1 0 -topminnow%1:05:01:: 01448951 1 0 -topminnow%1:05:02:: 01448291 2 0 -topmost%5:00:00:top:00 02440461 1 0 -topnotch%5:00:00:superior:02 02341864 1 1 -topognosia%1:09:00:: 05724234 1 0 -topognosis%1:09:00:: 05724234 1 0 -topographic%3:01:00:: 03018112 1 0 -topographic_anatomy%1:09:00:: 06060463 1 0 -topographic_point%1:15:00:: 08664443 1 0 -topographical%3:01:00:: 03018112 1 1 -topographically%4:02:00:: 00479470 1 0 -topography%1:07:00:: 05064541 1 3 -topography%1:09:00:: 06122578 2 0 -topolatry%1:04:00:: 01045621 1 0 -topologic%3:01:00:: 02817533 1 0 -topological%3:01:00:: 02817533 1 0 -topological_space%1:14:00:: 08001685 1 0 -topologically%4:02:00:: 00516150 1 0 -topology%1:09:00:: 06017594 3 0 -topology%1:09:01:: 06060463 2 0 -topology%1:09:02:: 06122747 1 0 -topology%1:09:03:: 05730365 4 0 -toponomy%1:09:00:: 06179145 2 0 -toponomy%1:10:00:: 06788463 1 0 -toponym%1:10:00:: 06343838 1 0 -toponymy%1:09:00:: 06179145 2 0 -toponymy%1:10:00:: 06788463 1 0 -topos%1:09:00:: 05920482 1 0 -topped%3:00:00:: 02441642 1 1 -topper%1:06:00:: 03237416 6 0 -topper%1:06:01:: 04455579 5 0 -topper%1:10:00:: 06781878 4 0 -topper%1:18:00:: 10715544 2 0 -topper%1:18:01:: 10715671 1 0 -topper%1:18:02:: 09851165 3 0 -topping%1:13:00:: 07621776 1 0 -topping%5:00:00:superior:02 02344672 1 0 -toppingly%4:02:00:: 00183090 1 0 -topple%2:38:00:: 01976488 1 4 -topple%2:38:01:: 02097047 2 0 -tops%5:00:00:superior:02 02341864 1 0 -topsail%1:06:00:: 04455652 1 0 -topside%1:06:00:: 04455835 1 0 -topsoil%1:27:00:: 14695737 1 1 -topspin%1:11:00:: 07442744 1 0 -topsy-turvily%4:02:00:: 00163704 1 0 -topsy-turvy%4:02:00:: 00163704 2 0 -topsy-turvy%4:02:01:: 00255854 1 0 -topsy-turvy%5:00:00:untidy:00 02425529 1 1 -topsy-turvydom%1:26:00:: 13976322 1 0 -topsy-turvyness%1:26:00:: 13976322 1 0 -topv%1:06:00:: 04122011 1 0 -toque%1:06:00:: 03937835 2 0 -toque%1:06:01:: 04456011 1 0 -tor%1:17:01:: 09459979 2 0 -tor%1:17:02:: 09460046 1 0 -toradol%1:06:00:: 03612559 1 0 -torah%1:10:00:: 06451891 2 0 -torah%1:10:01:: 06452223 1 0 -torah%1:10:02:: 06408442 3 0 -torch%1:06:00:: 03359137 3 0 -torch%1:06:01:: 02855390 4 0 -torch%1:06:02:: 04456115 1 2 -torch%1:20:00:: 12889713 2 0 -torch%2:30:00:: 00379280 1 0 -torch_race%1:11:00:: 07464402 1 0 -torch_singer%1:18:00:: 10715881 1 0 -torch_song%1:10:00:: 07053884 1 0 -torchbearer%1:18:00:: 10715789 1 0 -torchlight%1:19:00:: 11515849 1 0 -torchwood_family%1:20:00:: 12690388 1 0 -tore%1:06:00:: 04458299 1 0 -toreador%1:18:00:: 09836160 1 0 -toreador_pants%1:06:00:: 03903733 1 0 -torero%1:18:00:: 09836976 1 0 -torino%1:15:00:: 08810220 1 0 -torment%1:04:00:: 00425278 6 0 -torment%1:11:00:: 07420354 5 0 -torment%1:12:01:: 07495551 3 1 -torment%1:12:02:: 07496755 2 1 -torment%1:12:03:: 07519040 4 0 -torment%1:26:00:: 14333433 1 1 -torment%2:29:00:: 00071178 3 0 -torment%2:37:00:: 01802689 1 1 -torment%2:37:01:: 01803003 2 0 -tormented%5:00:00:sorrowful:00 01364585 1 1 -tormented%5:00:00:troubled:00 02458046 2 0 -tormenter%1:06:00:: 04456276 2 0 -tormenter%1:18:00:: 10716005 1 0 -tormentor%1:06:00:: 04456276 2 0 -tormentor%1:18:00:: 10716005 1 2 -torn%5:00:00:divided:00 02483011 2 2 -torn%5:00:00:injured:00 01318937 1 5 -tornado%1:06:00:: 03125184 2 0 -tornado%1:19:00:: 11519450 1 1 -tornado_cellar%1:06:00:: 04329681 1 0 -tornado_lantern%1:06:00:: 03549897 1 0 -tornillo%1:20:00:: 11766189 1 0 -torodal%1:06:01:: 03612378 1 0 -toroid%1:25:00:: 13900088 2 0 -toroid%1:25:01:: 13900287 1 0 -toroidal%3:01:00:: 02817647 1 0 -toronto%1:15:00:: 08828432 1 1 -torpedinidae%1:05:00:: 01496199 1 0 -torpediniformes%1:05:00:: 01496037 1 0 -torpedo%1:05:00:: 01496331 7 0 -torpedo%1:06:00:: 04456472 6 0 -torpedo%1:06:01:: 04456734 5 0 -torpedo%1:06:02:: 04456964 4 0 -torpedo%1:06:03:: 04457157 3 0 -torpedo%1:13:00:: 07697825 2 0 -torpedo%1:18:00:: 10152083 1 0 -torpedo%2:33:00:: 01137983 1 0 -torpedo-boat_destroyer%1:06:00:: 04457474 1 0 -torpedo_boat%1:06:00:: 04457326 1 0 -torpedo_tube%1:06:00:: 04457638 1 0 -torpid%5:00:00:asleep:00 00188155 2 0 -torpid%5:00:00:inactive:01 00034322 1 1 -torpidity%1:07:00:: 04636881 2 0 -torpidity%1:26:00:: 14014621 1 0 -torpidly%4:02:00:: 00298062 1 0 -torpidness%1:07:00:: 04636881 1 0 -torpor%1:07:00:: 04636881 2 0 -torpor%1:26:00:: 14014621 1 1 -torquato_tasso%1:18:00:: 11332250 1 0 -torque%1:19:00:: 11519702 1 0 -torque_converter%1:06:00:: 04457767 1 0 -torque_wrench%1:06:00:: 04457910 1 0 -torquemada%1:18:00:: 11345878 1 0 -torr%1:23:00:: 13711416 1 0 -torrent%1:11:00:: 07407593 2 1 -torrent%1:19:01:: 11502102 1 1 -torrent%1:23:00:: 13775706 3 0 -torrential%3:01:00:: 02817796 1 0 -torrential%5:00:00:abundant:00 00016532 3 0 -torrential%5:00:00:uncontrolled:00 00601250 2 0 -torreon%1:15:00:: 08746023 1 0 -torres_strait%1:17:00:: 09460139 1 0 -torrey's_pine%1:20:00:: 11618525 1 0 -torrey_pine%1:20:00:: 11618525 1 0 -torrey_tree%1:20:00:: 11649359 1 0 -torreya%1:20:00:: 11649012 1 0 -torreya_californica%1:20:00:: 11649150 1 0 -torreya_taxifolia%1:20:00:: 11649359 1 0 -torricelli%1:18:00:: 11346110 1 0 -torrid%5:00:00:hot:01 01250694 3 0 -torrid%5:00:00:hot:02 01257330 2 0 -torrid%5:00:00:passionate:00 01726235 1 0 -torrid_zone%1:15:00:: 08665281 1 0 -torridity%1:07:00:: 05016667 1 0 -torsion%1:19:00:: 11519702 2 0 -torsion%1:25:00:: 13885370 1 0 -torsion_balance%1:06:00:: 04458045 1 0 -torsk%1:05:00:: 02525382 1 0 -torso%1:08:00:: 05549830 1 6 -tort%1:04:00:: 00733883 1 0 -tort-feasor%1:18:00:: 10716286 1 0 -torte%1:13:00:: 07633511 1 0 -tortellini%1:13:00:: 07700167 1 0 -tortfeasor%1:18:00:: 10716286 1 0 -torticollis%1:26:00:: 14557719 1 0 -tortilla%1:13:00:: 07880583 1 0 -tortilla_chip%1:13:00:: 07712856 1 0 -tortious%3:01:00:: 02817999 1 0 -tortoise%1:05:00:: 01670092 1 0 -tortoise_plant%1:20:00:: 12088909 1 0 -tortoiseshell%1:05:01:: 02123242 3 0 -tortoiseshell%1:05:02:: 02275773 2 0 -tortoiseshell%1:27:00:: 14758420 1 0 -tortoiseshell-cat%1:05:00:: 02123242 1 0 -tortoiseshell_butterfly%1:05:00:: 02275773 1 0 -tortoiseshell_turtle%1:05:00:: 01664990 1 0 -tortricid%1:05:00:: 02283951 1 0 -tortricid_moth%1:05:00:: 02283951 1 0 -tortricidae%1:05:00:: 02283728 1 0 -tortrix%1:05:01:: 02284611 2 0 -tortrix%1:05:02:: 02284884 1 0 -tortuosity%1:25:00:: 13885370 1 0 -tortuous%5:00:00:complex:00 02176841 1 2 -tortuous%5:00:00:crooked:01 02313784 2 0 -tortuous%5:00:00:indirect:02 00769121 3 0 -tortuously%4:02:00:: 00479693 2 0 -tortuously%4:02:01:: 00479790 1 0 -tortuousness%1:07:00:: 04766620 2 0 -tortuousness%1:25:00:: 13885370 1 0 -torture%1:04:00:: 00421437 5 0 -torture%1:04:01:: 00751529 4 0 -torture%1:12:01:: 07495551 3 0 -torture%1:12:02:: 07496755 1 1 -torture%1:26:00:: 14333433 2 0 -torture%2:29:00:: 00071178 2 1 -torture%2:37:00:: 01802689 1 3 -torture_chamber%1:06:00:: 04458201 1 0 -tortured%5:00:00:sorrowful:00 01364585 1 1 -torturer%1:18:00:: 10716389 1 0 -torturesome%5:00:00:painful:00 01711724 1 0 -torturing%1:04:00:: 00421437 1 0 -torturing%5:00:00:painful:00 01711724 1 1 -torturous%5:00:00:painful:00 01711724 1 0 -torturously%4:02:00:: 00261389 1 0 -torulose%5:00:00:unshapely:00 02142446 1 0 -torus%1:06:00:: 04458299 2 0 -torus%1:25:00:: 13900088 1 0 -tory%1:18:00:: 10716698 3 0 -tory%1:18:01:: 10716576 1 2 -tory%1:18:02:: 10716864 2 0 -toscana%1:15:00:: 08811982 1 0 -toscanini%1:18:00:: 11346257 1 0 -tosh%1:10:00:: 06611147 1 0 -tosk%1:10:00:: 06942550 1 0 -tosk_dialect%1:10:00:: 06942550 1 0 -toss%1:04:00:: 00105820 2 2 -toss%1:04:01:: 01246086 1 3 -toss%1:04:02:: 00345817 3 0 -toss%2:35:00:: 01418536 6 1 -toss%2:35:04:: 01512625 1 13 -toss%2:35:05:: 01514525 3 5 -toss%2:38:00:: 01893079 2 10 -toss%2:38:01:: 01890792 4 4 -toss%2:40:00:: 02222318 5 1 -toss-up%1:19:00:: 11519799 1 0 -toss_away%2:40:00:: 02222318 1 2 -toss_back%2:35:00:: 01513145 1 1 -toss_bombing%1:04:00:: 00979348 1 0 -toss_in%2:32:00:: 01027361 1 0 -toss_off%2:34:00:: 01202374 2 0 -toss_off%2:36:00:: 01700655 1 0 -toss_out%2:40:00:: 02222318 1 0 -tossed_salad%1:13:00:: 07806633 1 0 -tosser%1:18:00:: 10717055 2 0 -tosser%1:18:01:: 10717196 1 0 -tossup%1:19:00:: 11519799 1 0 -tostada%1:13:00:: 07881404 1 0 -tostada%1:13:01:: 07881310 2 0 -tot%1:18:00:: 10714465 2 0 -tot%1:23:00:: 13773906 1 0 -tot%2:32:00:: 00949288 1 0 -tot_up%2:32:00:: 00949288 1 1 -total%1:06:00:: 04353803 1 13 -total%1:09:00:: 05861067 2 6 -total%2:30:00:: 00259382 3 0 -total%2:32:00:: 00949288 2 2 -total%2:42:00:: 02645007 1 16 -total%5:00:00:whole:00 00515380 1 31 -total%5:00:02:complete:00 00522885 2 2 -total_aphasia%1:26:00:: 14098347 1 0 -total_darkness%1:26:00:: 13983807 1 1 -total_depravity%1:09:00:: 06192027 1 0 -total_eclipse%1:11:00:: 07369206 1 0 -total_heat%1:07:00:: 05012272 1 0 -total_hysterectomy%1:04:00:: 00677613 1 0 -total_parenteral_nutrition%1:04:00:: 01059445 1 0 -totaled%5:00:00:destroyed:00 00736879 1 0 -totalisator%1:06:00:: 03890514 1 0 -totalise%2:30:00:: 00193790 1 0 -totaliser%1:06:00:: 02679257 2 0 -totaliser%1:06:01:: 03890514 1 0 -totalism%1:09:00:: 06213688 1 0 -totalistic%3:01:00:: 02818111 1 1 -totalitarian%1:18:00:: 10717337 1 0 -totalitarian%3:01:00:: 02818111 2 0 -totalitarian%5:00:00:undemocratic:00 00718635 1 1 -totalitarian_state%1:14:00:: 08226127 1 0 -totalitarianism%1:09:00:: 06213688 2 0 -totalitarianism%1:14:00:: 08440630 1 0 -totalitation_regime%1:14:00:: 08226127 1 0 -totality%1:06:00:: 04353803 3 0 -totality%1:07:00:: 04765851 2 0 -totality%1:26:00:: 14461231 1 1 -totalizator%1:06:00:: 03890514 1 0 -totalize%2:30:00:: 00193790 1 0 -totalizer%1:06:00:: 02679257 2 0 -totalizer%1:06:01:: 03890514 1 0 -totally%4:02:00:: 00008007 1 8 -totara%1:20:00:: 11653126 1 0 -tote%1:06:00:: 02970408 1 0 -tote%2:35:00:: 01454246 1 0 -tote_bag%1:06:00:: 02970408 1 0 -tote_up%2:32:00:: 00949288 1 0 -totem%1:06:00:: 04458409 2 0 -totem%1:14:00:: 08372574 1 0 -totem_pole%1:06:00:: 04458633 1 0 -totemic%3:01:00:: 02954331 1 1 -totemism%1:09:00:: 05954672 1 0 -totemist%1:18:00:: 10717461 1 0 -toter%1:18:00:: 09897696 1 1 -totipotence%1:07:00:: 05214976 1 0 -totipotency%1:07:00:: 05214976 1 0 -totipotent%3:01:00:: 02818402 1 0 -totten_trust%1:21:00:: 13363365 1 0 -totter%2:38:00:: 01881034 3 0 -totter%2:38:01:: 01918803 2 0 -totter%2:38:02:: 01919042 1 4 -totterer%1:18:00:: 10645854 1 0 -tottering%5:00:00:unstable:00 02293592 2 0 -tottering%5:00:00:unsteady:00 02305484 1 3 -tottery%5:00:00:unsteady:00 02305484 1 0 -toucan%1:05:00:: 01843383 1 0 -toucanet%1:05:00:: 01843719 1 0 -touch%1:04:00:: 00046522 5 2 -touch%1:07:00:: 04946760 12 0 -touch%1:07:01:: 04931428 4 2 -touch%1:09:01:: 05655119 2 3 -touch%1:09:02:: 05722427 10 0 -touch%1:09:03:: 05642553 11 0 -touch%1:10:00:: 07188238 9 0 -touch%1:10:01:: 07164163 3 2 -touch%1:10:02:: 07279285 7 1 -touch%1:11:00:: 07409592 1 8 -touch%1:23:00:: 13774115 6 1 -touch%1:26:00:: 14082186 8 0 -touch%2:30:00:: 00137313 6 3 -touch%2:30:01:: 00286928 15 0 -touch%2:31:00:: 00590642 13 1 -touch%2:32:09:: 01026728 12 1 -touch%2:34:00:: 01172701 14 0 -touch%2:35:00:: 01206218 1 33 -touch%2:35:01:: 01205696 5 3 -touch%2:35:03:: 01207527 11 1 -touch%2:35:04:: 01206849 8 2 -touch%2:37:00:: 01770802 3 4 -touch%2:39:00:: 02127358 2 5 -touch%2:41:00:: 02599325 7 2 -touch%2:42:00:: 02676054 4 3 -touch%2:42:01:: 02685665 9 1 -touch%2:42:02:: 02672187 10 1 -touch-and-go%5:00:00:dangerous:00 02060496 1 0 -touch-me-not%1:20:01:: 12684379 1 0 -touch-me-not%1:20:02:: 12165758 2 0 -touch-me-not%1:20:03:: 11755319 3 0 -touch-type%2:32:00:: 01005782 1 0 -touch-typist%1:18:00:: 10717772 1 0 -touch_a_chord%2:37:00:: 01759926 1 0 -touch_base%2:41:00:: 02389346 1 0 -touch_down%2:38:00:: 01979702 1 1 -touch_football%1:04:00:: 00470682 1 0 -touch_modality%1:09:00:: 05655119 1 0 -touch_off%2:36:00:: 01643657 1 3 -touch_on%2:30:00:: 00260648 3 0 -touch_on%2:30:01:: 00137313 4 0 -touch_on%2:32:01:: 01024763 1 4 -touch_on%2:42:00:: 02676054 2 1 -touch_perception%1:09:00:: 05721990 1 0 -touch_screen%1:06:00:: 04458843 1 0 -touch_sensation%1:09:00:: 05722427 1 0 -touch_system%1:10:00:: 06403107 1 0 -touch_typing%1:10:00:: 06403107 1 0 -touch_up%2:30:00:: 00230562 1 1 -touchable%3:00:00:: 02391455 1 0 -touchback%1:04:00:: 00188449 1 0 -touchdown%1:04:00:: 00188766 1 4 -touchdown%1:04:01:: 00305005 2 0 -touched%3:00:00:: 02445093 1 0 -touched%3:00:01:: 01559903 2 0 -touched%5:00:00:insane:00 02075938 3 0 -toucher%1:18:00:: 10717589 1 0 -touchily%4:02:00:: 00479850 1 0 -touchiness%1:12:01:: 07553016 1 0 -touching%1:04:00:: 00046522 2 0 -touching%1:11:00:: 07409592 1 0 -touching%5:00:00:moving:01 01560821 1 3 -touchingly%4:02:00:: 00066605 1 0 -touchline%1:15:00:: 08654029 1 0 -touchscreen%1:06:00:: 04458843 1 0 -touchstone%1:10:00:: 07260623 1 1 -touchwood%1:27:00:: 15101586 1 0 -touchy%5:00:00:difficult:00 00746994 2 0 -touchy%5:00:00:sensitive:02 02106509 1 0 -touchy-feely%5:00:00:loving:00 01466305 1 0 -tough%1:18:00:: 10184081 2 0 -tough%1:18:01:: 09879297 3 0 -tough%1:18:02:: 10662649 1 0 -tough%3:00:01:: 02445636 7 0 -tough%3:00:02:: 02447344 3 2 -tough%3:00:03:: 02448437 1 9 -tough%5:00:00:bad:00 01127302 8 0 -tough%5:00:00:rugged:00 00707795 4 2 -tough%5:00:00:uncomfortable:00 00478311 6 1 -tough%5:00:00:violent:00 02512641 5 1 -tough%5:00:01:difficult:00 00748058 2 5 -tough%5:00:02:difficult:00 00746451 9 0 -tough-minded%5:00:00:tough:03 02448749 1 0 -tough-skinned%5:00:00:insensitive:02 02108098 2 0 -tough-skinned%5:00:00:tough:01 02446551 1 0 -tough_guy%1:18:00:: 10717921 1 0 -tough_luck%1:26:00:: 14475405 1 0 -toughen%2:30:00:: 00303309 1 0 -toughened%3:00:02:: 02447344 1 0 -toughened%3:00:04:: 01521542 2 0 -toughie%1:10:00:: 06785367 2 0 -toughie%1:18:00:: 10184081 1 0 -toughly%4:02:00:: 00479965 1 0 -toughness%1:07:00:: 05031214 2 0 -toughness%1:07:01:: 05032918 1 1 -toughness%1:07:02:: 04710866 4 0 -toughness%1:07:03:: 05021535 3 0 -toulon%1:15:00:: 08937995 1 0 -toulouse%1:15:00:: 08938163 1 0 -toulouse-lautrec%1:18:00:: 11346391 1 0 -toupe%1:06:00:: 04459018 1 0 -toupee%1:06:00:: 04459018 1 0 -toupeed%5:00:00:wigged:00 02564810 1 0 -tour%1:04:00:: 00310666 1 3 -tour%1:28:00:: 15292069 2 1 -tour%1:28:01:: 15293590 3 0 -tour%2:38:00:: 01845229 1 3 -tour_de_force%1:04:00:: 00047018 1 1 -tour_de_france%1:11:00:: 07459363 1 0 -tour_guide%1:18:00:: 10718040 1 0 -tour_of_duty%1:28:00:: 15293590 1 0 -touraco%1:05:00:: 01825278 1 0 -tourer%1:06:00:: 04459122 2 0 -tourer%1:18:00:: 10718131 1 0 -tourette%1:18:00:: 11346568 1 0 -tourette's_syndrome%1:26:00:: 14311117 1 0 -touring_car%1:06:00:: 04459122 1 0 -tourism%1:04:00:: 00298161 1 0 -tourist%1:18:00:: 10718131 1 3 -tourist_attraction%1:09:00:: 05853820 1 0 -tourist_class%1:06:00:: 04459243 1 0 -tourist_court%1:06:00:: 03790755 1 1 -touristed%5:00:00:popular:00 01816696 1 0 -touristry%1:04:00:: 00298161 1 0 -touristy%5:00:00:popular:00 01816696 1 0 -tourmaline%1:27:00:: 15076619 1 0 -tournament%1:11:00:: 07464725 1 6 -tournament%1:11:01:: 07472327 2 0 -tournedos%1:13:00:: 07660590 1 0 -tourney%1:11:00:: 07464725 1 0 -tourney%2:33:00:: 01123159 1 0 -tourniquet%1:06:00:: 03082656 1 0 -tours%1:15:00:: 08938351 1 0 -tourtiere%1:13:00:: 07872381 1 0 -tousle%2:35:00:: 01474034 1 0 -tousled%5:00:00:untidy:00 02425220 1 3 -tout%1:18:00:: 10718349 2 0 -tout%1:18:01:: 10712835 3 0 -tout%1:18:02:: 10718509 1 0 -tout%2:32:00:: 00883226 2 0 -tout%2:32:02:: 00971460 1 0 -tout_ensemble%1:07:00:: 04676830 2 0 -tout_ensemble%1:14:00:: 07955280 1 0 -tout_ensemble%4:02:00:: 00151755 1 0 -touter%1:18:00:: 10718349 1 0 -tovarich%1:18:00:: 10718665 1 0 -tovarisch%1:18:00:: 10718665 1 0 -tow%1:04:00:: 00115292 1 1 -tow%2:35:00:: 01454431 1 0 -tow-headed_snake%1:05:00:: 01742447 1 0 -tow_car%1:06:00:: 04461696 1 0 -tow_truck%1:06:00:: 04461696 1 0 -towage%1:04:00:: 00115292 1 0 -towboat%1:06:00:: 04495843 1 1 -towel%1:06:00:: 04459362 1 6 -towel%2:35:00:: 01394335 1 0 -towel_bar%1:06:00:: 04459909 1 0 -towel_horse%1:06:00:: 04459773 1 0 -towel_rack%1:06:00:: 04459773 1 1 -towel_rail%1:06:00:: 04459909 1 0 -towel_ring%1:06:00:: 04460038 1 0 -toweling%1:06:00:: 04459610 1 1 -towelling%1:06:00:: 04459610 1 0 -tower%1:06:00:: 04460130 1 4 -tower%1:06:01:: 04495843 3 0 -tower%1:25:00:: 13900422 2 1 -tower%2:42:00:: 02696503 1 2 -tower_block%1:06:00:: 03519387 1 0 -tower_cress%1:20:01:: 11872473 2 0 -tower_cress%1:20:02:: 11872658 1 0 -tower_mustard%1:20:01:: 11872658 1 0 -tower_mustard%1:20:02:: 11872473 2 0 -tower_of_babel%1:06:00:: 04460634 1 0 -tower_of_london%1:06:00:: 04460947 1 0 -tower_of_pharos%1:06:00:: 04461148 1 0 -tower_of_strength%1:18:00:: 10718794 1 0 -towering%5:00:00:high:01 01205473 1 0 -towhead%1:18:00:: 10718952 1 0 -towheaded%5:00:00:blond:00 00243945 1 0 -towhee%1:05:00:: 01541922 1 0 -towing_line%1:06:00:: 04461294 1 0 -towing_path%1:06:00:: 04461570 1 0 -towing_rope%1:06:00:: 04461294 1 0 -towline%1:06:00:: 04461294 1 0 -town%1:14:00:: 08226514 2 8 -town%1:15:00:: 08665504 1 67 -town%1:15:01:: 08672199 3 4 -town%1:18:00:: 11346710 4 0 -town_clerk%1:18:00:: 10719036 1 1 -town_crier%1:18:00:: 10719132 1 0 -town_gas%1:27:00:: 14685641 1 0 -town_hall%1:06:00:: 04461437 1 0 -town_house%1:06:01:: 04115256 1 1 -town_meeting%1:14:00:: 08312241 1 4 -town_meeting%1:14:01:: 08312462 2 1 -town_planning%1:04:00:: 00928542 1 0 -townee%1:18:00:: 10719395 1 0 -towner%1:18:00:: 10719267 1 0 -townes%1:18:00:: 11346873 1 0 -townie%1:18:00:: 10719573 1 0 -townsend%1:18:00:: 11347080 1 0 -townsend_harris%1:18:00:: 11030855 1 0 -townsendia%1:20:00:: 12026306 1 0 -townsendia_exscapa%1:20:00:: 12026476 1 0 -townsfolk%1:14:00:: 08226514 1 0 -township%1:15:00:: 08672199 1 0 -townsman%1:18:00:: 10719692 1 1 -townsman%1:18:01:: 10719267 2 0 -townspeople%1:14:00:: 08226514 1 0 -towny%1:18:00:: 10719573 1 0 -towpath%1:06:00:: 04461570 1 0 -towrope%1:06:00:: 04461294 1 0 -toxaemia%1:26:00:: 14190907 2 0 -toxaemia%1:26:01:: 14191037 1 0 -toxaemia_of_pregnancy%1:26:00:: 14191037 1 0 -toxemia%1:26:00:: 14190907 2 0 -toxemia%1:26:01:: 14191037 1 0 -toxemia_of_pregnancy%1:26:00:: 14191037 1 0 -toxic%3:00:00:: 02449430 1 3 -toxic_condition%1:26:00:: 14509712 1 0 -toxic_dumpsite%1:15:00:: 08574038 1 0 -toxic_industrial_waste%1:27:00:: 14858637 1 0 -toxic_shock%1:26:00:: 14470144 1 0 -toxic_shock_syndrome%1:26:00:: 14470144 1 0 -toxic_site%1:15:00:: 08661467 1 0 -toxic_waste%1:27:00:: 14858637 1 0 -toxic_waste_area%1:15:00:: 08661467 1 0 -toxic_waste_dump%1:15:00:: 08574038 1 0 -toxic_waste_site%1:15:00:: 08574038 1 0 -toxicant%1:27:00:: 15032376 1 0 -toxicant%5:00:00:toxic:00 02450512 1 0 -toxicity%1:07:00:: 04790942 2 0 -toxicity%1:23:00:: 13583478 1 0 -toxicodendron%1:20:00:: 12766241 1 0 -toxicodendron_diversilobum%1:20:00:: 12767208 1 0 -toxicodendron_quercifolium%1:20:00:: 12767423 1 0 -toxicodendron_radicans%1:20:00:: 12766869 1 0 -toxicodendron_vernicifluum%1:20:00:: 12767648 1 0 -toxicodendron_vernix%1:20:00:: 12766595 1 0 -toxicognath%1:05:00:: 01785092 1 0 -toxicologic%3:01:00:: 02912848 1 0 -toxicological%3:01:00:: 02912848 1 0 -toxicologist%1:18:00:: 10719807 1 0 -toxicology%1:09:00:: 06064462 1 0 -toxin%1:27:00:: 15034074 1 1 -toxin_antitoxin%1:27:00:: 15028555 1 0 -toxoid%1:27:00:: 15034454 1 0 -toxoplasmosis%1:26:00:: 14186046 1 0 -toxostoma%1:05:00:: 01587713 1 0 -toxostoma_rufums%1:05:00:: 01588002 1 0 -toxotes%1:05:00:: 02620443 1 0 -toxotes_jaculatrix%1:05:00:: 02620578 1 0 -toxotidae%1:05:00:: 02620318 1 0 -toy%1:05:00:: 02085374 5 0 -toy%1:06:00:: 03964744 1 4 -toy%1:06:01:: 03769235 4 0 -toy%1:06:02:: 04462102 2 0 -toy%1:06:03:: 04461879 3 0 -toy%2:29:00:: 00013328 3 0 -toy%2:35:00:: 01586278 2 0 -toy%2:41:00:: 02437465 1 0 -toy_box%1:06:00:: 04462011 1 0 -toy_business%1:14:00:: 08075009 1 0 -toy_chest%1:06:00:: 04462011 1 0 -toy_dog%1:05:00:: 02085374 1 0 -toy_industry%1:14:00:: 08075009 1 0 -toy_manchester%1:05:00:: 02094931 1 0 -toy_manchester_terrier%1:05:00:: 02094931 1 0 -toy_poodle%1:05:00:: 02113624 1 0 -toy_soldier%1:06:00:: 04462318 1 0 -toy_spaniel%1:05:00:: 02086346 1 0 -toy_terrier%1:05:00:: 02087046 1 0 -toy_with%2:31:00:: 00711715 1 1 -toying%1:04:00:: 00512522 1 0 -toynbee%1:18:00:: 11347317 1 0 -toyohashi%1:15:00:: 08926231 1 0 -toyon%1:20:00:: 12633061 1 0 -toyonaki%1:15:00:: 08926381 1 0 -toyota%1:15:00:: 08926543 1 0 -toyshop%1:06:00:: 04462240 1 0 -tpn%1:04:00:: 01059445 1 0 -tra-la%1:10:00:: 07050379 1 0 -tra-la-la%1:10:00:: 07050379 1 0 -trabeate%5:00:00:straight:05 02314756 1 0 -trabeated%5:00:00:straight:05 02314756 1 0 -trabecula%1:08:00:: 05295160 1 0 -trabecular%3:01:00:: 02943954 1 0 -trabeculate%3:01:00:: 02943954 1 0 -trablous%1:15:00:: 08957993 1 0 -trace%1:06:00:: 04463273 4 1 -trace%1:06:01:: 04462407 5 1 -trace%1:10:00:: 06646628 2 2 -trace%1:10:01:: 07164163 3 1 -trace%1:10:02:: 06647036 6 0 -trace%1:23:00:: 13773361 1 5 -trace%2:31:00:: 00729109 1 9 -trace%2:31:04:: 00626130 8 0 -trace%2:35:00:: 01582645 2 5 -trace%2:36:00:: 01694376 7 0 -trace%2:38:00:: 02003601 4 2 -trace%2:38:01:: 02004352 3 2 -trace%2:38:03:: 01995949 6 0 -trace%2:39:00:: 02156063 5 0 -trace_detector%1:06:00:: 04462576 1 0 -trace_element%1:27:00:: 15076931 1 0 -trace_program%1:10:00:: 06580866 1 0 -traceable%3:00:00:: 02453323 2 0 -traceable%5:00:00:attributable:00 00172308 1 1 -tracer%1:06:00:: 04462707 4 0 -tracer%1:06:01:: 04462835 3 0 -tracer%1:06:02:: 04463017 2 0 -tracer%1:18:00:: 10719972 1 0 -tracer_bullet%1:06:00:: 04462707 1 0 -tracery%1:06:00:: 04463141 1 0 -trachea%1:08:01:: 05531814 1 2 -trachea%1:08:02:: 05532050 2 0 -tracheal%3:01:00:: 02944089 1 0 -tracheal_vein%1:08:00:: 05384446 1 0 -tracheid%1:20:00:: 13098853 1 0 -tracheitis%1:26:00:: 14357370 1 0 -trachelospermum%1:20:00:: 11777365 1 0 -trachelospermum_jasminoides%1:20:00:: 11777552 1 0 -tracheobronchitis%1:26:00:: 14357454 1 0 -tracheophyta%1:20:00:: 11534434 1 0 -tracheophyte%1:20:00:: 13083586 1 0 -tracheostomy%1:04:00:: 00693399 1 0 -tracheotomy%1:04:00:: 00693399 1 0 -trachinotus%1:05:00:: 02579420 1 0 -trachinotus_carolinus%1:05:00:: 02579762 1 0 -trachinotus_falcatus%1:05:00:: 02579928 1 0 -trachipteridae%1:05:00:: 02546177 1 0 -trachipterus%1:05:00:: 02546477 1 0 -trachipterus_arcticus%1:05:00:: 02546627 1 0 -trachodon%1:05:00:: 01707294 1 0 -trachodont%1:05:00:: 01707294 1 0 -trachoma%1:26:00:: 14257377 1 0 -trachurus%1:05:00:: 02580546 1 0 -trachurus_symmetricus%1:05:00:: 02580679 1 0 -trachurus_trachurus%1:05:00:: 02580830 1 0 -tracing%1:04:00:: 00938419 1 9 -tracing%1:04:01:: 00150932 3 0 -tracing%1:06:00:: 04463273 2 0 -tracing_paper%1:27:00:: 15077109 1 0 -tracing_routine%1:10:00:: 06584536 1 0 -track%1:04:00:: 00440039 11 0 -track%1:06:00:: 04463510 10 0 -track%1:06:01:: 04463679 9 0 -track%1:06:02:: 04463983 3 1 -track%1:06:03:: 04464125 8 0 -track%1:06:04:: 04464211 7 0 -track%1:06:05:: 04037625 4 1 -track%1:06:06:: 04464418 6 0 -track%1:09:00:: 05826914 2 1 -track%1:10:00:: 06612865 5 0 -track%1:17:00:: 09387222 1 6 -track%2:36:00:: 01618468 5 0 -track%2:38:00:: 02001858 3 1 -track%2:38:01:: 01912159 4 0 -track%2:38:02:: 02078453 1 2 -track%2:39:00:: 02197629 2 1 -track-to-track_seek_time%1:28:00:: 15269331 1 0 -track_and_field%1:04:00:: 00439826 1 0 -track_down%2:33:00:: 01143838 1 3 -track_event%1:11:00:: 07468861 1 0 -track_meet%1:11:00:: 07468692 1 1 -track_record%1:04:00:: 00063310 1 0 -track_record%1:04:01:: 00047745 2 0 -track_star%1:18:00:: 10720197 1 0 -trackable%3:00:00:: 02453323 1 0 -trackball%1:06:00:: 04464615 1 0 -tracked%3:00:00:: 02453616 1 0 -tracked_vehicle%1:06:00:: 04464852 1 0 -tracker%1:18:00:: 10720097 1 0 -tracking%1:04:00:: 00320284 1 0 -tracklayer%1:18:00:: 10439087 1 0 -trackless%3:00:00:: 02454081 1 0 -trackless%5:00:00:inaccessible:00 00020241 2 0 -trackless_trolley%1:06:00:: 04487081 1 0 -tract%1:08:00:: 05475878 4 0 -tract%1:08:01:: 05510907 2 3 -tract%1:10:00:: 06409290 3 1 -tract%1:15:00:: 08673395 1 3 -tract_house%1:06:00:: 04465050 1 0 -tract_housing%1:06:00:: 04465203 1 0 -tractability%1:07:00:: 04905188 1 0 -tractable%3:00:00:: 02451113 1 0 -tractable%5:00:00:susceptible:00 02362499 2 0 -tractableness%1:07:00:: 04905188 1 0 -tractarian%1:18:00:: 10720267 1 1 -tractarianism%1:09:00:: 06229410 1 0 -tractile%5:00:00:formed:00 02144436 1 0 -traction%1:04:00:: 00116122 2 0 -traction%1:19:00:: 11460281 1 0 -traction_engine%1:06:00:: 04465358 1 0 -tractive%3:01:00:: 02944235 1 0 -tractor%1:06:00:: 04465501 1 3 -tractor%1:06:01:: 04465666 2 0 -tractor_trailer%1:06:00:: 04467665 1 0 -tracy%1:18:00:: 11347519 1 0 -trad%1:10:00:: 07065932 1 0 -trade%1:04:00:: 00606370 2 16 -trade%1:04:01:: 01096454 3 6 -trade%1:04:02:: 01110274 4 3 -trade%1:04:03:: 01109687 7 0 -trade%1:04:05:: 01091905 1 16 -trade%1:14:00:: 08436562 5 2 -trade%1:19:00:: 11519949 6 0 -trade%2:40:00:: 02260085 2 6 -trade%2:40:01:: 02260362 1 6 -trade%2:40:02:: 02259005 4 2 -trade%2:40:11:: 02244956 5 0 -trade%2:42:00:: 02728784 3 2 -trade-in%1:21:00:: 13248792 1 0 -trade-last%1:10:00:: 06695424 1 0 -trade-off%1:04:00:: 01166760 1 0 -trade_acceptance%1:21:00:: 13378174 1 0 -trade_balance%1:21:00:: 13409363 1 0 -trade_barrier%1:10:00:: 06660224 1 0 -trade_bill%1:10:00:: 06537832 1 0 -trade_book%1:10:00:: 06412350 1 0 -trade_cycle%1:11:00:: 07444100 1 0 -trade_deficit%1:21:00:: 13396768 1 0 -trade_discount%1:21:00:: 13274732 1 0 -trade_edition%1:10:00:: 06412350 1 0 -trade_embargo%1:10:00:: 06660520 1 0 -trade_expense%1:21:00:: 13276330 1 0 -trade_gap%1:21:00:: 13409363 1 0 -trade_good%1:06:00:: 03076708 1 0 -trade_in%2:40:00:: 02260085 1 1 -trade_magazine%1:10:00:: 06596845 1 0 -trade_name%1:10:00:: 06845599 1 3 -trade_policy%1:10:00:: 06663018 1 1 -trade_protection%1:04:00:: 01127874 1 0 -trade_rat%1:05:00:: 02339922 1 0 -trade_route%1:06:00:: 04163364 1 1 -trade_route%1:15:00:: 08680237 2 0 -trade_school%1:14:00:: 08285594 1 1 -trade_secret%1:10:00:: 06674385 1 0 -trade_stoppage%1:10:00:: 06660520 1 0 -trade_union%1:14:00:: 08233056 1 0 -trade_union_movement%1:14:00:: 08472890 1 0 -trade_unionism%1:14:00:: 08473482 1 0 -trade_unionist%1:18:00:: 10720964 1 0 -trade_wind%1:19:00:: 11519949 1 0 -tradecraft%1:09:00:: 05644016 1 0 -trademark%1:07:00:: 04732543 1 3 -trademark%1:10:00:: 06851742 2 1 -trademark%2:32:00:: 01002161 2 0 -trademark%2:35:00:: 01588876 1 0 -trademarked%5:00:00:proprietary:00 01110819 1 0 -tradeoff%1:04:00:: 01166760 1 0 -trader%1:18:00:: 10720453 1 5 -trades_union%1:14:00:: 08233056 1 0 -tradescant%1:18:00:: 11347674 1 0 -tradescant's_aster%1:20:00:: 11937195 1 0 -tradescantia%1:20:00:: 12606797 1 0 -tradesman%1:18:00:: 10592152 1 1 -tradespeople%1:14:00:: 07950685 1 0 -trading%1:04:00:: 00079398 1 2 -trading_card%1:06:00:: 04465795 1 0 -trading_floor%1:06:00:: 03366301 1 0 -trading_operations%1:04:00:: 01107726 1 0 -trading_post%1:06:00:: 03119203 1 1 -trading_stamp%1:10:00:: 06796333 1 0 -tradition%1:09:01:: 05809745 1 28 -tradition%1:09:02:: 05667404 2 15 -traditional%3:00:00:: 00611047 1 23 -traditional%5:00:00:orthodox:00 01690767 2 3 -traditional_knowledge%1:09:00:: 05985381 1 0 -traditionalism%1:04:00:: 01213702 2 1 -traditionalism%1:07:00:: 04801877 1 1 -traditionalism%1:09:00:: 05977800 3 0 -traditionalist%1:18:00:: 10721124 1 5 -traditionalist%5:00:00:conservative:00 00575012 1 0 -traditionalistic%5:00:00:traditional:00 00611754 1 0 -traditionality%1:07:00:: 04801877 1 0 -traditionally%4:02:00:: 00476807 1 1 -traduce%2:32:00:: 00848169 1 0 -traducement%1:10:00:: 06719579 1 0 -traducer%1:18:00:: 09999135 1 0 -trafalgar%1:04:00:: 01297706 1 0 -trafalgar_square%1:15:00:: 08597023 1 0 -traffic%1:04:01:: 01113867 2 1 -traffic%1:04:02:: 00040804 4 0 -traffic%1:10:00:: 07279453 3 0 -traffic%1:14:00:: 08425303 1 13 -traffic%2:40:00:: 02261123 1 0 -traffic%2:40:01:: 02260770 2 0 -traffic_circle%1:06:00:: 04465933 1 0 -traffic_control%1:04:00:: 01070432 1 0 -traffic_cop%1:18:00:: 10721321 1 0 -traffic_court%1:14:00:: 08336355 1 0 -traffic_island%1:06:00:: 04466169 1 0 -traffic_jam%1:14:00:: 08183541 1 0 -traffic_lane%1:06:00:: 04466386 1 0 -traffic_light%1:10:00:: 06874185 1 1 -traffic_pattern%1:15:00:: 08492747 1 0 -traffic_signal%1:10:00:: 06874185 1 0 -trafficator%1:10:00:: 07262704 1 0 -trafficker%1:18:00:: 10577284 1 0 -tragacanth%1:27:00:: 15077226 1 0 -tragedian%1:18:01:: 10721612 2 0 -tragedian%1:18:02:: 10721708 1 1 -tragedienne%1:18:00:: 10721819 1 0 -tragedy%1:10:00:: 07016948 2 1 -tragedy%1:11:00:: 07314838 1 8 -tragelaphus%1:05:00:: 02423787 1 0 -tragelaphus_angasi%1:05:00:: 02424909 1 0 -tragelaphus_buxtoni%1:05:00:: 02425086 1 0 -tragelaphus_eurycerus%1:05:00:: 02424085 1 0 -tragelaphus_imberbis%1:05:00:: 02424589 1 0 -tragelaphus_scriptus%1:05:00:: 02425228 1 0 -tragelaphus_strepsiceros%1:05:00:: 02424486 1 0 -tragic%3:01:00:: 02973241 2 3 -tragic%5:00:00:sad:00 01363153 1 7 -tragic_flaw%1:26:00:: 14463331 1 0 -tragical%5:00:00:sad:00 01363153 1 0 -tragically%4:02:00:: 00236982 1 1 -tragicomedy%1:10:00:: 07017161 1 0 -tragicomedy%1:10:02:: 07016797 2 0 -tragicomic%3:01:00:: 02973540 1 2 -tragicomic%5:00:00:humorous:00 01267762 3 0 -tragicomic%5:00:00:sad:00 01363370 2 0 -tragicomical%5:00:00:humorous:00 01267762 2 0 -tragicomical%5:00:00:sad:00 01363370 1 0 -tragopan%1:05:00:: 01807105 1 0 -tragopogon%1:20:00:: 12026764 1 0 -tragopogon_dubius%1:20:00:: 12026981 1 0 -tragopogon_porrifolius%1:20:00:: 12027222 1 0 -tragopogon_pratensis%1:20:00:: 12027658 1 0 -tragulidae%1:05:00:: 02435689 1 0 -tragulus%1:05:00:: 02436067 1 0 -tragulus_javanicus%1:05:00:: 02436353 1 0 -tragulus_kanchil%1:05:00:: 02436224 1 0 -tragus%1:08:00:: 05324134 1 0 -trail%1:06:00:: 04466613 2 4 -trail%1:09:00:: 05826914 3 1 -trail%1:17:01:: 09460312 1 5 -trail%2:35:03:: 01453969 5 0 -trail%2:35:05:: 01542842 4 0 -trail%2:38:00:: 02001858 2 3 -trail%2:38:01:: 02059916 3 0 -trail%2:38:02:: 02058756 1 8 -trail_bike%1:06:00:: 04466871 1 0 -trail_boss%1:18:00:: 10722029 1 0 -trail_head%1:15:00:: 08585447 1 0 -trail_riding%1:04:00:: 00300113 1 0 -trailblazer%1:18:00:: 10721919 1 0 -trailblazer%1:18:01:: 10434725 2 0 -trailer%1:06:00:: 04467099 4 0 -trailer%1:06:01:: 04467307 3 0 -trailer%1:10:00:: 06888674 2 0 -trailer%1:18:00:: 09993252 1 0 -trailer_camp%1:06:00:: 04467506 1 0 -trailer_park%1:06:00:: 04467506 1 0 -trailer_truck%1:06:00:: 04467665 1 0 -trailhead%1:15:00:: 08585447 1 0 -trailing%1:04:00:: 00320284 1 0 -trailing_arbutus%1:20:00:: 12235051 1 0 -trailing_edge%1:06:00:: 04467899 1 0 -trailing_four_o'clock%1:20:00:: 11838413 1 0 -trailing_windmills%1:20:00:: 11838413 1 0 -train%1:06:00:: 04468005 1 24 -train%1:06:01:: 03431745 6 0 -train%1:06:02:: 04468476 5 0 -train%1:11:00:: 07294777 4 0 -train%1:14:00:: 08427629 3 0 -train%1:14:02:: 08459648 2 1 -train%2:29:00:: 00100044 8 1 -train%2:31:00:: 00602805 2 9 -train%2:31:01:: 00603298 1 14 -train%2:32:00:: 00833702 7 1 -train%2:33:00:: 01151110 6 1 -train%2:35:04:: 01453969 11 0 -train%2:38:00:: 01936537 10 0 -train%2:41:00:: 02387034 4 5 -train%2:41:01:: 02388403 5 1 -train%2:41:02:: 02553697 3 5 -train%2:41:03:: 02509552 9 0 -train_depot%1:06:00:: 04049098 1 0 -train_dispatcher%1:18:00:: 10803031 1 0 -train_fare%1:21:00:: 13308750 1 0 -train_of_thought%1:09:00:: 05773548 1 0 -train_oil%1:27:00:: 15097430 1 0 -train_set%1:06:00:: 04468707 1 0 -train_station%1:06:00:: 04049098 1 0 -train_ticket%1:10:00:: 06519607 1 0 -trainband%1:14:00:: 08285719 1 0 -trainbandsman%1:18:00:: 10722137 1 0 -trainbearer%1:18:00:: 10722239 1 0 -trained%3:00:00:: 01911683 1 8 -trained_nurse%1:18:00:: 10140929 1 0 -trained_worker%1:18:00:: 10605985 1 1 -trainee%1:18:00:: 10722385 1 0 -traineeship%1:21:00:: 13267816 1 1 -trainer%1:06:00:: 03363363 2 0 -trainer%1:18:00:: 10722575 1 0 -training%1:04:00:: 00893955 1 71 -training%1:07:00:: 04921900 2 0 -training_college%1:14:00:: 08285896 1 0 -training_program%1:09:00:: 05909921 1 10 -training_school%1:06:00:: 04069777 2 0 -training_school%1:14:01:: 08286039 1 1 -training_ship%1:06:00:: 04146862 1 1 -training_table%1:13:00:: 07565458 1 0 -trainload%1:23:00:: 13772876 1 0 -trainman%1:18:00:: 10722758 1 1 -trainmaster%1:18:00:: 10803031 1 0 -traipse%2:38:00:: 01910873 1 0 -trait%1:07:00:: 04616059 1 3 -traitor%1:18:00:: 10722965 1 4 -traitor%1:18:01:: 10027590 2 0 -traitorous%5:00:00:disloyal:00 00962939 1 1 -traitorously%4:02:00:: 00335809 1 0 -traitorousness%1:07:00:: 04879658 1 0 -traitress%1:18:00:: 10723230 1 0 -trajan%1:18:00:: 11347834 1 0 -trajectory%1:19:00:: 11481334 1 0 -tralatitious%5:00:00:traditional:00 00611527 1 0 -tram%1:06:00:: 04468847 2 0 -tram%1:06:01:: 04335435 3 0 -tram%1:06:02:: 04469813 1 0 -tram%2:38:00:: 01945183 1 0 -tramcar%1:06:00:: 04468847 1 0 -tramcar%1:06:01:: 04335435 2 0 -tramline%1:06:00:: 04469003 1 0 -trammel%1:06:00:: 04181228 4 0 -trammel%1:06:01:: 04469147 3 0 -trammel%1:06:02:: 04469251 2 0 -trammel%1:06:03:: 04469345 1 0 -trammel%2:30:00:: 00233335 2 0 -trammel%2:35:00:: 01480770 1 0 -trammel_net%1:06:00:: 04469345 1 0 -tramontana%1:19:00:: 11520271 1 0 -tramontane%1:19:00:: 11520271 1 0 -tramontane%3:00:00:: 00410449 1 0 -tramontane%5:00:00:foreign:01 01035858 2 0 -tramp%1:04:00:: 00288970 6 0 -tramp%1:06:00:: 04469684 5 0 -tramp%1:11:00:: 07398560 4 0 -tramp%1:18:00:: 10723300 1 1 -tramp%1:18:01:: 10683675 2 0 -tramp%1:18:02:: 10176111 3 0 -tramp%2:38:00:: 01920698 1 7 -tramp%2:38:01:: 01921204 2 0 -tramp%2:38:02:: 01881180 4 0 -tramp%2:38:03:: 01881957 3 0 -tramp's_spurge%1:20:00:: 12919195 1 0 -tramp_down%2:38:00:: 01867504 1 0 -tramp_steamer%1:06:00:: 04469684 1 0 -tramper%1:18:00:: 10646942 1 0 -tramper%1:18:01:: 10176111 2 0 -trample%1:11:00:: 07398659 1 0 -trample%2:29:00:: 00070439 2 1 -trample%2:38:00:: 01929467 1 5 -trample%2:38:04:: 01867504 3 0 -trampler%1:18:00:: 10646942 2 0 -trampler%1:18:01:: 10723474 1 0 -trampling%1:11:00:: 07398659 1 1 -trampoline%1:06:00:: 04469514 1 0 -tramway%1:06:00:: 04469003 2 0 -tramway%1:06:01:: 04469813 1 0 -trance%1:09:00:: 05681334 2 1 -trance%1:26:00:: 14407536 1 6 -trance%2:37:00:: 01806505 1 0 -trancelike%5:00:00:confused:00 00437149 1 0 -tranche%1:21:00:: 13285619 1 0 -trandate%1:06:00:: 03630544 1 0 -trandolapril%1:06:00:: 04470037 1 0 -tranquil%5:00:00:calm:00 00302951 1 1 -tranquil%5:00:00:composed:00 00529657 2 0 -tranquilising%5:00:00:depressant:00 02308472 1 0 -tranquility%1:07:00:: 04904352 1 1 -tranquility%1:12:00:: 07515560 3 0 -tranquility%1:26:00:: 13969101 2 0 -tranquilize%2:29:00:: 00022316 2 0 -tranquilize%2:37:00:: 01764800 1 0 -tranquilizer%1:06:00:: 04470232 1 3 -tranquilizing%5:00:00:depressant:00 02308472 1 0 -tranquillise%2:29:00:: 00022316 2 0 -tranquillise%2:37:00:: 01764800 1 0 -tranquilliser%1:06:00:: 04470232 1 0 -tranquillising%5:00:00:depressant:00 02308472 1 0 -tranquillity%1:07:00:: 04904352 3 0 -tranquillity%1:12:00:: 07515560 2 0 -tranquillity%1:26:00:: 13969101 1 0 -tranquillize%2:29:00:: 00022316 2 0 -tranquillize%2:37:00:: 01764800 1 0 -tranquillizer%1:06:00:: 04470232 1 0 -tranquillizing%5:00:00:depressant:00 02308472 1 0 -tranquilly%4:02:01:: 00186904 1 3 -trans-alaska_pipeline%1:06:00:: 02694776 1 0 -trans_fatty_acid%1:27:00:: 14741124 1 0 -transact%2:40:14:: 02245765 1 2 -transactinide%1:27:00:: 14627373 1 0 -transactinide%3:01:00:: 02873213 1 0 -transaction%1:04:00:: 01106808 1 2 -transaction_file%1:10:00:: 06510271 1 0 -transactional_immunity%1:04:00:: 00214794 1 0 -transactions%1:10:00:: 06508112 1 0 -transactor%1:18:00:: 10723597 1 0 -transalpine%1:18:00:: 10723731 1 0 -transalpine%5:00:00:tramontane:00 00410668 1 0 -transaminase%1:27:00:: 15077338 1 0 -transaminate%2:30:00:: 00580142 2 0 -transaminate%2:30:01:: 00580345 1 0 -transamination%1:22:00:: 13567960 2 0 -transamination%1:22:01:: 13568109 1 0 -transatlantic%3:01:00:: 02946777 1 0 -transcaucasia%1:15:00:: 08519916 1 0 -transcend%2:42:00:: 02669477 1 3 -transcend%2:42:01:: 02669081 2 1 -transcendence%1:26:01:: 13963565 1 0 -transcendence%1:26:02:: 13950440 2 0 -transcendency%1:26:01:: 13963565 1 0 -transcendency%1:26:02:: 13950440 2 0 -transcendent%5:00:00:superior:02 02344793 1 0 -transcendent%5:00:00:unknowable:00 01374912 2 0 -transcendental%3:01:00:: 02873359 2 1 -transcendental%5:00:00:supernatural:00 01577086 1 2 -transcendental_number%1:23:00:: 13730756 1 0 -transcendental_philosophy%1:09:00:: 06192186 1 0 -transcendentalism%1:09:00:: 06192186 1 0 -transcendentalist%1:18:00:: 10723873 1 0 -transcendentally%4:02:00:: 00480079 1 0 -transcontinental%5:00:00:continental:00 01567294 1 0 -transcortical_aphasia%1:26:00:: 14098864 1 0 -transcribe%2:30:00:: 00556389 5 0 -transcribe%2:32:00:: 00994682 2 1 -transcribe%2:32:01:: 00995103 1 1 -transcribe%2:32:02:: 00994895 4 0 -transcribe%2:36:00:: 01708113 3 0 -transcribed%5:00:00:recorded:00 01423187 1 0 -transcriber%1:18:00:: 10723984 4 0 -transcriber%1:18:01:: 10724132 3 0 -transcriber%1:18:02:: 09809925 5 0 -transcriber%1:18:03:: 10725280 1 0 -transcriber%1:18:04:: 10724272 2 0 -transcript%1:10:00:: 06505517 2 0 -transcript%1:10:01:: 07277384 1 0 -transcriptase%1:27:00:: 14984687 1 0 -transcription%1:04:00:: 00910203 5 0 -transcription%1:04:01:: 00939628 4 0 -transcription%1:06:00:: 04470605 3 0 -transcription%1:10:00:: 06349597 1 1 -transcription%1:22:00:: 13568238 2 0 -transcultural%3:01:00:: 02873042 1 1 -transcutaneous%3:01:00:: 02944327 1 0 -transdermal%3:01:00:: 02944327 1 0 -transdermal_patch%1:06:00:: 04470741 1 0 -transdermic%3:01:00:: 02944327 1 0 -transduce%2:30:00:: 00162549 1 0 -transducer%1:06:00:: 04470953 1 11 -transducing_vector%1:17:00:: 09460516 1 0 -transduction%1:22:00:: 13568524 2 0 -transduction%1:22:01:: 13568796 1 0 -transect%2:35:00:: 01550949 1 0 -transept%1:06:00:: 04471148 1 0 -transeunt%3:00:00:: 01274125 1 0 -transexual%1:18:00:: 10725734 2 0 -transexual%1:18:02:: 10725893 1 0 -transfer%1:04:00:: 00315986 1 20 -transfer%1:04:02:: 01107932 6 0 -transfer%1:04:03:: 00201671 3 1 -transfer%1:09:02:: 05756203 5 0 -transfer%1:10:01:: 06519480 4 0 -transfer%1:18:00:: 10724372 2 1 -transfer%2:30:00:: 00555240 9 0 -transfer%2:35:00:: 01435380 7 1 -transfer%2:38:00:: 02012344 4 5 -transfer%2:38:01:: 02086458 8 0 -transfer%2:38:02:: 02088241 6 1 -transfer%2:38:05:: 01855155 3 6 -transfer%2:40:00:: 02220461 5 1 -transfer%2:40:01:: 02232190 2 6 -transfer%2:41:00:: 02393086 1 6 -transfer_agent%1:14:00:: 08419774 1 0 -transfer_of_training%1:09:00:: 05756203 1 0 -transfer_paper%1:27:00:: 15077752 1 0 -transfer_payment%1:21:00:: 13278100 1 0 -transfer_rna%1:27:00:: 14833143 1 0 -transfer_tax%1:21:00:: 13315616 1 0 -transferability%1:07:00:: 04736516 1 0 -transferable%5:00:00:alienable:00 00093556 2 0 -transferable%5:00:00:mobile:00 01523724 1 0 -transferase%1:27:00:: 15077571 1 0 -transferee%1:18:00:: 10724372 2 0 -transferee%1:18:01:: 10724570 1 0 -transference%1:04:00:: 01107932 2 0 -transference%1:04:01:: 00201671 3 0 -transference%1:09:00:: 06247181 1 0 -transferer%1:18:00:: 10724699 1 0 -transferor%1:18:00:: 10724999 1 0 -transferrable%5:00:00:alienable:00 00093556 2 0 -transferrable%5:00:00:mobile:00 01523724 1 0 -transferral%1:04:00:: 00315986 1 0 -transferred_possession%1:21:00:: 13252973 1 0 -transferred_property%1:21:00:: 13252973 1 0 -transferrer%1:18:00:: 10724699 1 0 -transferrin%1:27:00:: 15077917 1 0 -transfiguration%1:04:00:: 00399717 4 0 -transfiguration%1:04:02:: 00402308 3 0 -transfiguration%1:11:00:: 07358377 2 0 -transfiguration%1:28:00:: 15299367 1 0 -transfiguration_day%1:28:00:: 15299367 1 0 -transfiguration_of_jesus%1:11:00:: 07358377 1 0 -transfigure%2:30:00:: 00384055 2 0 -transfigure%2:30:02:: 00580512 1 0 -transfix%2:35:00:: 01444326 2 0 -transfix%2:37:00:: 01821132 1 1 -transfixed%5:00:00:enchanted:00 00865848 1 0 -transform%2:30:00:: 00382635 2 10 -transform%2:30:01:: 00383542 4 0 -transform%2:30:02:: 00544011 1 14 -transform%2:30:03:: 00381601 3 3 -transform%2:30:04:: 00381850 7 0 -transform%2:30:05:: 00382010 6 0 -transform%2:30:06:: 00382256 5 0 -transformable%5:00:00:commutable:00 00348537 1 0 -transformation%1:04:00:: 00398704 5 0 -transformation%1:04:01:: 00399030 4 0 -transformation%1:10:00:: 07260332 3 0 -transformation%1:11:00:: 07359599 1 3 -transformation%1:24:00:: 13785136 2 0 -transformed%5:00:00:changed:00 00354934 1 1 -transformer%1:06:00:: 04471315 1 1 -transforming_gene%1:08:00:: 05440410 1 0 -transfuse%2:29:00:: 00087290 3 0 -transfuse%2:29:01:: 00081367 4 0 -transfuse%2:38:00:: 01853440 2 0 -transfuse%2:40:00:: 02325042 1 0 -transfusion%1:04:00:: 00324056 1 1 -transfusion%1:04:01:: 00323923 2 0 -transfusion_reaction%1:04:00:: 01267344 1 0 -transgender%5:00:00:homosexual:00 01202514 1 0 -transgendered%5:00:00:homosexual:00 01202514 1 0 -transgene%1:08:00:: 05441686 1 0 -transgress%2:38:00:: 02019574 4 0 -transgress%2:41:00:: 02566528 1 1 -transgress%2:41:02:: 02565687 3 0 -transgress%2:42:00:: 02689529 2 0 -transgression%1:04:00:: 00745005 1 1 -transgression%1:04:01:: 00744862 3 0 -transgression%1:19:00:: 11520435 2 0 -transgressor%1:18:00:: 10285762 1 0 -transience%1:07:00:: 05055278 1 1 -transience%1:07:01:: 05053042 2 0 -transiency%1:07:00:: 05055278 1 0 -transient%1:11:00:: 07347468 2 0 -transient%1:18:00:: 10725149 1 0 -transient%3:00:00:: 01274125 1 0 -transient%5:00:00:impermanent:00 01756292 2 0 -transient_global_amnesia%1:09:00:: 05674319 1 0 -transient_ischemic_attack%1:26:00:: 14166589 1 0 -transiently%4:02:00:: 00480195 1 0 -transistor%1:06:00:: 04471632 1 1 -transistorise%2:40:00:: 02340736 1 0 -transistorised%5:00:00:equipped:00 01095277 1 0 -transistorize%2:40:00:: 02340736 1 0 -transistorized%5:00:00:equipped:00 01095277 1 0 -transit%1:04:00:: 00309115 3 0 -transit%1:06:00:: 04419073 1 2 -transit%1:06:01:: 04473432 2 0 -transit%2:38:00:: 01915365 1 0 -transit%2:38:01:: 01853696 4 0 -transit%2:38:02:: 01866872 3 0 -transit%2:38:03:: 01867072 2 0 -transit_declinometer%1:06:00:: 03168933 1 0 -transit_instrument%1:06:00:: 04471912 1 0 -transit_line%1:06:00:: 04472098 1 1 -transit_zone%1:15:00:: 08691445 1 0 -transition%1:04:00:: 00201058 1 10 -transition%1:10:00:: 06401328 5 0 -transition%1:10:01:: 07087641 4 0 -transition%1:11:00:: 07415730 2 3 -transition%1:11:01:: 07358576 3 1 -transition%2:30:00:: 00550546 2 0 -transition%2:30:01:: 00550823 1 0 -transitional%3:01:00:: 02944694 1 3 -transitionally%4:02:00:: 00480393 1 0 -transitive%1:10:00:: 06331281 1 0 -transitive%3:00:00:: 02488705 1 0 -transitive_verb%1:10:00:: 06331281 1 0 -transitive_verb_form%1:10:00:: 06331281 1 0 -transitively%4:02:00:: 00381094 1 0 -transitiveness%1:24:00:: 13798118 1 0 -transitivise%2:30:00:: 00420716 1 0 -transitivity%1:24:00:: 13798118 2 0 -transitivity%1:24:01:: 13798491 1 0 -transitivize%2:30:00:: 00420716 1 0 -transitorily%4:02:00:: 00480504 1 0 -transitoriness%1:07:00:: 05055278 1 0 -transitory%5:00:00:impermanent:00 01756292 1 0 -translatable%3:00:00:: 02489092 1 0 -translatable%5:00:00:commutable:00 00348537 2 0 -translate%2:30:00:: 00522441 5 2 -translate%2:30:01:: 00383542 2 7 -translate%2:31:00:: 00593852 3 4 -translate%2:32:00:: 00959827 1 10 -translate%2:32:05:: 00919608 10 0 -translate%2:32:06:: 00961947 9 0 -translate%2:35:00:: 01436290 4 2 -translate%2:38:04:: 02103925 8 0 -translate%2:42:00:: 02728142 7 0 -translate%2:42:03:: 02753100 6 0 -translating_program%1:10:00:: 06581268 1 0 -translation%1:04:01:: 00330984 7 0 -translation%1:04:02:: 00398704 3 2 -translation%1:10:00:: 06536389 1 4 -translation%1:10:01:: 06429483 6 0 -translation%1:11:00:: 07446404 2 2 -translation%1:22:00:: 13568983 5 0 -translation%1:24:00:: 13785736 4 0 -translational%3:01:00:: 03125925 1 0 -translator%1:10:00:: 06581268 3 0 -translator%1:18:00:: 10212501 2 0 -translator%1:18:01:: 10725280 1 0 -transliterate%2:32:00:: 00994682 1 0 -transliteration%1:10:00:: 06349828 1 0 -translocate%2:40:00:: 02362130 2 0 -translocate%2:40:01:: 02362323 1 0 -translocation%1:22:00:: 13569464 2 0 -translocation%1:22:01:: 13569664 1 0 -translucence%1:07:00:: 04702351 1 1 -translucency%1:07:00:: 04702351 1 0 -translucent%5:00:00:clear:02 00432626 1 2 -translucent_substance%1:27:00:: 15078550 1 0 -translunar%3:01:00:: 02757599 1 0 -translunar%5:00:00:heavenly:00 01180549 2 0 -translunary%3:01:00:: 02757599 1 0 -translunary%5:00:00:heavenly:00 01180549 2 0 -transmigrante%1:18:00:: 10725438 1 0 -transmigrate%2:38:00:: 01856626 2 0 -transmigrate%2:42:00:: 02698726 1 0 -transmigration%1:11:00:: 07321387 1 0 -transmissible%5:00:00:infectious:00 01303042 1 1 -transmissible%5:00:01:inheritable:00 01314537 2 0 -transmissible%5:00:02:inheritable:00 01314197 3 0 -transmission%1:04:01:: 00121366 1 4 -transmission%1:06:01:: 04472243 5 0 -transmission%1:10:00:: 06251781 2 2 -transmission%1:11:00:: 07360647 4 0 -transmission%1:23:00:: 13589003 3 0 -transmission_channel%1:10:00:: 06259898 1 0 -transmission_control_protocol%1:10:00:: 06666210 1 0 -transmission_control_protocol/internet_protocol%1:10:00:: 06666486 1 0 -transmission_density%1:07:00:: 05089367 1 0 -transmission_line%1:06:00:: 02934168 1 0 -transmission_mechanism%1:17:00:: 09460680 1 0 -transmission_shaft%1:06:00:: 04472563 1 0 -transmission_system%1:06:00:: 04472243 1 0 -transmission_time%1:28:00:: 15131269 1 0 -transmit%2:32:00:: 00973056 3 2 -transmit%2:35:00:: 01435380 4 1 -transmit%2:38:00:: 02079933 2 2 -transmit%2:40:10:: 02231661 1 4 -transmittable%5:00:00:infectious:00 01303042 1 0 -transmittal%1:04:00:: 00121366 1 0 -transmittance%1:23:00:: 13589003 1 0 -transmitted%5:00:01:inheritable:00 01314537 1 0 -transmitter%1:06:00:: 04472726 3 0 -transmitter%1:17:00:: 09469285 2 0 -transmitter%1:18:00:: 10578762 1 0 -transmitting%1:04:00:: 00121366 1 1 -transmitting_aerial%1:06:00:: 02715229 1 0 -transmogrification%1:04:00:: 00399846 1 0 -transmogrify%2:30:00:: 00384055 1 0 -transmontane%3:00:00:: 00410449 1 0 -transmundane%5:00:00:supernatural:00 01577498 1 0 -transmutability%1:07:00:: 04734145 1 0 -transmutable%5:00:00:commutable:00 00348537 1 0 -transmutation%1:04:00:: 01250826 1 2 -transmutation%1:11:00:: 07359599 2 1 -transmutation%1:11:01:: 07416441 3 0 -transmute%2:30:00:: 00381601 1 2 -transmute%2:30:01:: 00382493 3 0 -transmute%2:30:02:: 00382635 2 1 -transnational%5:00:00:international:00 01569166 1 0 -transoceanic%3:01:00:: 02890492 1 0 -transom%1:06:00:: 04472961 2 0 -transom%1:06:01:: 04473108 1 0 -transom_window%1:06:00:: 04473108 1 0 -transonic%3:00:00:: 00175528 1 0 -transorbital_lobotomy%1:04:00:: 00684450 1 0 -transparence%1:07:00:: 04702127 2 0 -transparence%1:19:00:: 11520619 1 0 -transparency%1:06:01:: 03375956 3 0 -transparency%1:07:00:: 04702127 2 0 -transparency%1:19:00:: 11520619 1 0 -transparent%5:00:00:clear:02 00431774 1 5 -transparent%5:00:00:obvious:00 01619689 4 0 -transparent%5:00:00:straight:04 02318950 3 0 -transparent%5:00:00:thin:01 02413390 2 2 -transparent_gem%1:27:00:: 15078050 1 0 -transparent_quartz%1:27:00:: 14694293 1 0 -transparent_substance%1:27:00:: 15078550 1 0 -transparently%4:02:00:: 00480584 2 0 -transparently%4:02:01:: 00480751 1 0 -transparentness%1:07:00:: 04702127 1 0 -transpirate%2:38:00:: 02066757 1 1 -transpiration%1:22:00:: 13569774 3 0 -transpiration%1:22:01:: 13569905 1 3 -transpiration%1:22:02:: 13570072 2 0 -transpire%2:29:00:: 00068740 5 0 -transpire%2:30:01:: 00343180 3 0 -transpire%2:30:02:: 00367563 2 0 -transpire%2:30:09:: 00341040 4 0 -transpire%2:38:00:: 02066757 1 0 -transpiring%3:44:00:: 03154786 1 4 -transplacental%5:00:00:placental:00 01831203 1 0 -transplant%1:04:01:: 00331102 3 0 -transplant%1:04:02:: 00693679 2 0 -transplant%1:08:00:: 05582859 1 0 -transplant%2:30:00:: 00555240 4 0 -transplant%2:35:00:: 01530431 3 0 -transplant%2:38:00:: 01855155 1 3 -transplant%2:42:00:: 02753255 2 0 -transplantable%5:00:00:mobile:00 01524632 1 1 -transplantation%1:04:00:: 00331102 2 0 -transplantation%1:04:02:: 00693679 1 0 -transplanter%1:18:00:: 10725613 1 0 -transplanting%1:04:00:: 00331102 1 0 -transpolar%3:01:00:: 02838470 1 0 -transponder%1:06:00:: 04473275 1 0 -transport%1:04:00:: 01105259 3 1 -transport%1:04:01:: 00315986 6 0 -transport%1:06:00:: 03100490 1 3 -transport%1:06:01:: 04392764 5 0 -transport%1:22:00:: 13570236 2 1 -transport%1:26:00:: 13986372 4 0 -transport%2:35:00:: 01449974 2 2 -transport%2:35:01:: 01435380 5 0 -transport%2:37:00:: 01817314 3 1 -transport%2:38:00:: 01953810 1 4 -transport%2:38:01:: 01950798 4 0 -transport_ship%1:06:00:: 04474187 1 0 -transportable%5:00:00:mobile:00 01523724 1 0 -transportation%1:04:00:: 00315986 2 5 -transportation%1:04:01:: 01105259 5 0 -transportation%1:04:02:: 00207761 6 0 -transportation%1:06:00:: 04473432 1 7 -transportation%1:14:00:: 08143653 4 0 -transportation%1:21:00:: 13308147 3 0 -transportation_company%1:14:00:: 08004089 1 0 -transportation_secretary%1:04:00:: 00602669 2 0 -transportation_secretary%1:18:00:: 10573349 1 0 -transportation_security_administration%1:14:00:: 08144308 1 0 -transportation_system%1:06:00:: 04473432 1 0 -transporter%1:06:01:: 03100897 3 0 -transporter%1:06:02:: 04473884 2 0 -transporter%1:06:03:: 04474035 1 0 -transposability%1:07:00:: 04737568 1 0 -transposable%5:00:00:exchangeable:00 00918200 1 0 -transpose%1:14:00:: 08270290 1 0 -transpose%2:30:00:: 00380424 1 2 -transpose%2:30:01:: 00380872 7 0 -transpose%2:30:02:: 00121926 3 1 -transpose%2:30:03:: 00553407 6 0 -transpose%2:30:05:: 00555240 2 1 -transpose%2:36:00:: 01706631 5 0 -transpose%2:38:00:: 01867303 4 0 -transposed%5:00:00:backward:01 00201961 1 0 -transposition%1:04:00:: 00339776 6 0 -transposition%1:04:01:: 00102162 7 0 -transposition%1:04:02:: 00869260 4 0 -transposition%1:04:03:: 00339907 5 0 -transposition%1:11:00:: 07425903 3 0 -transposition%1:11:01:: 07443761 2 0 -transposition%1:26:00:: 14103998 1 0 -transposon%1:27:00:: 14831812 1 0 -transsexual%1:18:00:: 10725734 2 0 -transsexual%1:18:02:: 10725893 1 0 -transsexual%5:00:00:homosexual:00 01202634 1 0 -transsexual_surgery%1:04:00:: 00691648 1 0 -transsexualism%1:26:00:: 14572074 1 0 -transship%2:38:00:: 02013163 1 0 -transshipment%1:04:00:: 00316460 1 0 -transshipment_center%1:15:00:: 08637771 1 0 -transubstantiate%2:30:00:: 00382635 2 0 -transubstantiate%2:30:01:: 00383093 1 0 -transubstantiation%1:04:00:: 01250826 2 0 -transubstantiation%1:09:00:: 06192411 1 0 -transudate%1:27:00:: 14853112 1 0 -transudation%1:11:00:: 07432337 2 0 -transudation%1:27:00:: 14853112 1 0 -transude%2:29:00:: 00067999 1 0 -transuranic%3:01:00:: 02873557 1 0 -transuranic_element%1:27:00:: 14624191 1 0 -transurethral_resection_of_the_prostate%1:04:00:: 00694088 1 0 -transvaal%1:15:00:: 09001373 1 0 -transvaal_daisy%1:20:00:: 11971927 1 0 -transvaal_kafferboom%1:20:00:: 12528768 1 0 -transversal%5:00:00:crosswise:00 01445917 1 0 -transversally%4:02:00:: 00137770 1 1 -transverse%5:00:00:crosswise:00 01445917 1 4 -transverse_colon%1:08:00:: 05536858 1 0 -transverse_flute%1:06:00:: 03372029 1 0 -transverse_muscle_of_abdomen%1:08:00:: 05558078 1 0 -transverse_process%1:08:00:: 05587628 1 0 -transverse_sinus%1:08:00:: 05252834 1 0 -transversely%4:02:00:: 00137770 1 1 -transversus_abdominis%1:08:00:: 05558078 1 1 -transversus_abdominis_muscle%1:08:00:: 05558078 1 0 -transvestic%5:00:00:homosexual:00 01202813 1 0 -transvestism%1:04:00:: 01031858 1 0 -transvestite%1:18:00:: 10726031 1 0 -transvestite%5:00:00:homosexual:00 01202813 1 0 -transvestitism%1:04:00:: 01031858 1 1 -transylvania%1:15:00:: 08814781 1 0 -transylvanian_alps%1:17:00:: 09460888 1 0 -tranylcypromine%1:06:00:: 04474317 1 0 -trap%1:04:00:: 01246926 5 1 -trap%1:06:00:: 04474466 1 4 -trap%1:06:01:: 04474843 7 0 -trap%1:06:02:: 02920369 8 0 -trap%1:06:03:: 04474922 4 1 -trap%1:06:04:: 04475032 2 2 -trap%1:08:00:: 05302307 6 0 -trap%1:09:00:: 05837370 3 1 -trap%2:35:00:: 01480770 2 2 -trap%2:35:01:: 01606931 3 1 -trap%2:35:02:: 01207149 4 0 -trap%2:41:00:: 02496185 1 2 -trap-and-drain_auger%1:06:00:: 04475195 1 0 -trap-door_spider%1:05:00:: 01775730 1 0 -trap_block%1:04:00:: 00562823 1 0 -trap_door%1:06:00:: 04475309 1 0 -trap_line%1:14:00:: 08432264 1 0 -trap_play%1:04:00:: 00976270 1 0 -trapa%1:20:00:: 12348127 1 0 -trapa_bicornis%1:20:00:: 12348635 1 0 -trapa_natans%1:20:00:: 12348518 1 0 -trapaceae%1:20:00:: 12347892 1 0 -trapeze%1:06:00:: 04475411 1 0 -trapezium%1:08:00:: 05272891 3 0 -trapezium%1:17:00:: 09461069 2 0 -trapezium%1:25:00:: 13881381 1 0 -trapezium_bone%1:08:00:: 05272891 1 0 -trapezius%1:08:00:: 05591770 1 0 -trapezius_muscle%1:08:00:: 05591770 1 0 -trapezohedron%1:25:00:: 13918717 1 0 -trapezoid%1:08:00:: 05273073 2 0 -trapezoid%1:25:00:: 13881512 1 0 -trapezoid_bone%1:08:00:: 05273073 1 0 -trapezoidal%3:01:00:: 02948984 1 0 -trapped%5:00:00:unfree:00 01064913 1 1 -trapper%1:18:00:: 10726233 1 3 -trapper's_tea%1:20:00:: 12238756 1 0 -trapping%1:06:01:: 02955540 1 1 -trappings%1:06:00:: 03405595 1 0 -trappist%1:18:00:: 10726388 1 0 -trapshooter%1:18:00:: 10726524 1 0 -trapshooting%1:04:00:: 00124342 1 0 -trash%1:06:00:: 03754295 4 0 -trash%1:10:00:: 06611998 3 0 -trash%1:14:01:: 08402147 2 0 -trash%1:27:00:: 14857497 1 0 -trash%2:32:00:: 00846344 2 0 -trash%2:40:00:: 02223238 1 0 -trash_barrel%1:06:00:: 02747177 1 0 -trash_bin%1:06:00:: 02747177 1 0 -trash_can%1:06:00:: 02747177 1 0 -trash_collection%1:04:00:: 01015843 1 0 -trash_dump%1:15:00:: 08560027 1 1 -trash_heap%1:15:00:: 08573842 1 0 -trash_pickup%1:04:00:: 01015843 1 0 -trash_pile%1:15:00:: 08573842 1 0 -trashiness%1:07:00:: 05140593 1 0 -trashy%5:00:00:tasteless:02 02393791 2 0 -trashy%5:00:00:worthless:00 02503656 1 0 -trasimeno%1:04:00:: 01297978 1 0 -traubel%1:18:00:: 11348047 1 0 -trauma%1:26:01:: 14285276 2 0 -trauma%1:26:02:: 14285662 1 0 -traumatic%3:01:00:: 02944872 1 0 -traumatic%5:00:00:painful:00 01712940 2 0 -traumatic_epilepsy%1:26:00:: 14089450 1 0 -traumatise%2:29:00:: 00090186 1 0 -traumatize%2:29:00:: 00090186 1 0 -traumatology%1:09:00:: 06064838 1 0 -traumatophobia%1:26:00:: 14385919 1 0 -trautvetteria%1:20:00:: 11738832 1 0 -trautvetteria_carolinensis%1:20:00:: 11738997 1 0 -travail%1:04:00:: 00621627 2 0 -travail%1:26:00:: 14048441 1 0 -travail%2:41:00:: 02419773 1 0 -trave%1:06:00:: 04475496 1 0 -travel%1:04:00:: 00295701 1 7 -travel%1:04:01:: 00283127 3 0 -travel%1:11:00:: 07311115 2 1 -travel%2:38:00:: 01835496 1 34 -travel%2:38:01:: 01843055 3 3 -travel%2:38:02:: 01846916 4 2 -travel%2:38:03:: 01841079 5 1 -travel%2:38:04:: 01845720 2 9 -travel%2:38:05:: 02102002 6 0 -travel-soiled%5:00:00:dirty:01 00423569 1 0 -travel-stained%5:00:00:dirty:01 00423569 1 0 -travel-worn%5:00:00:tired:00 02434307 1 0 -travel_agency%1:14:00:: 08355692 1 0 -travel_agent%1:18:00:: 10726669 1 0 -travel_allowance%1:21:00:: 13293901 1 0 -travel_along%2:38:00:: 01991931 1 1 -travel_and_entertainment_account%1:21:00:: 13411943 1 0 -travel_bargain%1:21:00:: 13254105 1 0 -travel_by%2:38:01:: 02051694 1 0 -travel_expense%1:21:00:: 13306669 1 0 -travel_guidebook%1:10:00:: 06423378 1 0 -travel_iron%1:06:00:: 04475631 1 0 -travel_kit%1:06:00:: 04447156 1 0 -travel_plan%1:09:00:: 05905706 1 0 -travel_purposefully%2:38:00:: 01875144 1 0 -travel_rapidly%2:38:00:: 02055649 1 0 -travel_reimbursement%1:21:00:: 13293901 1 0 -travel_time%1:28:00:: 15119374 1 0 -travel_to%2:38:00:: 01843689 1 2 -travelable%5:00:00:passable:00 01725129 1 0 -traveled%3:00:00:: 02454206 1 1 -traveled%5:00:00:cosmopolitan:02 00636391 2 1 -traveler%1:18:00:: 09629752 1 3 -traveler's_check%1:21:00:: 13380309 1 0 -traveler's_joy%1:20:00:: 11731411 1 0 -traveler's_letter_of_credit%1:21:00:: 13380148 1 0 -traveler's_tree%1:20:00:: 12355023 1 0 -traveling%1:04:00:: 00295701 1 0 -traveling_bag%1:06:00:: 02773838 1 0 -traveling_salesman%1:18:00:: 10726786 1 0 -traveling_wave%1:11:00:: 07347051 1 0 -travelled%5:00:00:cosmopolitan:02 00636391 1 0 -traveller%1:18:00:: 09629752 1 1 -traveller's_check%1:21:00:: 13380309 1 0 -traveller's_joy%1:20:00:: 11731411 1 0 -traveller's_letter_of_credit%1:21:00:: 13380148 1 0 -traveller's_tree%1:20:00:: 12355023 1 0 -travelling%1:04:00:: 00295701 1 0 -travelling_bag%1:06:00:: 02773838 1 0 -travelling_salesman%1:18:00:: 10726786 1 0 -travelling_wave%1:11:00:: 07347051 1 0 -travelog%1:10:00:: 06615348 1 0 -travelogue%1:10:00:: 06615348 1 1 -traversable%5:00:00:passable:00 01725129 1 0 -traversal%1:04:00:: 00298047 1 0 -traversal%1:04:01:: 00296946 2 0 -traverse%1:04:00:: 00298047 3 0 -traverse%1:04:01:: 00296946 4 0 -traverse%1:06:00:: 04472961 2 0 -traverse%1:06:01:: 04475496 1 0 -traverse%2:32:00:: 01068380 3 1 -traverse%2:38:00:: 01912159 1 4 -traverse%2:42:00:: 02685390 2 1 -traverse_city%1:15:00:: 09101882 1 0 -traverser%1:18:00:: 10727016 1 0 -travesty%1:10:00:: 07016250 1 0 -travesty%1:10:01:: 06780309 2 0 -travesty%2:36:00:: 01724083 1 0 -trawl%1:06:00:: 04475749 2 0 -trawl%1:06:01:: 04475900 1 0 -trawl%2:33:00:: 01143713 1 0 -trawl_line%1:06:00:: 04475900 1 0 -trawl_net%1:06:00:: 04475749 1 0 -trawler%1:06:00:: 04476116 2 0 -trawler%1:18:00:: 10727171 1 0 -tray%1:06:00:: 04476259 1 12 -tray_cloth%1:06:00:: 04476526 1 0 -trazodone%1:06:00:: 04476633 1 0 -trazodone_hydrochloride%1:06:00:: 04476633 1 0 -treacherous%5:00:00:dangerous:00 02061126 1 1 -treacherous%5:00:00:unfaithful:00 00960094 2 0 -treacherously%4:02:00:: 00335809 1 0 -treachery%1:04:00:: 00749767 2 0 -treachery%1:07:00:: 04879964 1 1 -treacle%1:10:00:: 06775969 2 0 -treacle%1:13:00:: 07860208 1 0 -treacly%5:00:00:sweet:02 02368566 1 0 -tread%1:04:00:: 00285889 1 2 -tread%1:06:00:: 04476831 4 0 -tread%1:06:01:: 04476972 3 0 -tread%1:06:02:: 04477091 2 0 -tread%2:35:00:: 01594664 3 1 -tread%2:35:01:: 01219867 4 1 -tread%2:35:02:: 01427907 6 0 -tread%2:38:00:: 01929467 2 3 -tread%2:38:01:: 02091410 1 3 -tread%2:40:00:: 02309513 5 0 -tread-softly%1:20:00:: 12925179 1 0 -tread-wheel%1:06:00:: 04477219 1 0 -tread_down%2:38:00:: 01867504 1 0 -tread_on%2:38:00:: 02092039 1 3 -treading_water%1:04:00:: 00575214 1 0 -treadle%1:06:00:: 03903424 1 0 -treadle%2:35:00:: 01225461 2 0 -treadle%2:38:00:: 01929688 1 0 -treadmill%1:04:00:: 00606119 3 0 -treadmill%1:06:00:: 04477219 2 0 -treadmill%1:06:01:: 04477387 1 1 -treadmill_test%1:09:00:: 05747322 1 0 -treadwheel%1:06:00:: 04477219 1 0 -treason%1:04:00:: 00782072 1 4 -treason%1:04:01:: 00749767 3 0 -treason%1:07:00:: 04879658 2 0 -treasonable%5:00:00:disloyal:00 00962939 1 0 -treasonably%4:02:00:: 00335809 1 0 -treasonist%1:18:00:: 10722965 1 0 -treasonous%5:00:00:disloyal:00 00962939 1 0 -treasure%1:06:00:: 03432972 2 2 -treasure%1:14:00:: 08463969 4 1 -treasure%1:21:00:: 13370669 1 2 -treasure%1:21:01:: 13370448 3 1 -treasure%2:37:00:: 01776214 2 0 -treasure%2:40:00:: 02256109 1 1 -treasure_chest%1:06:00:: 04477548 1 0 -treasure_flower%1:20:00:: 11971406 1 0 -treasure_house%1:06:00:: 04477638 1 0 -treasure_hunt%1:04:00:: 00460706 1 0 -treasure_ship%1:06:00:: 04477725 1 0 -treasure_state%1:15:00:: 09108164 1 0 -treasure_trove%1:14:00:: 08464098 2 0 -treasure_trove%1:21:00:: 13371355 1 0 -treasured%5:00:00:loved:00 01462625 1 1 -treasurer%1:18:00:: 10727256 1 3 -treasurer's_check%1:21:00:: 13383439 1 0 -treasurer's_cheque%1:21:00:: 13383439 1 0 -treasurership%1:04:00:: 00605246 1 0 -treasury%1:06:00:: 04477825 6 0 -treasury%1:14:00:: 08120235 2 2 -treasury%1:14:01:: 08139795 5 0 -treasury%1:18:00:: 10727458 4 0 -treasury%1:21:00:: 13356985 1 7 -treasury%1:21:01:: 13394326 3 0 -treasury_bill%1:21:00:: 13394592 1 0 -treasury_bond%1:21:00:: 13394792 1 0 -treasury_department%1:14:00:: 08139795 1 0 -treasury_note%1:21:00:: 13394907 1 0 -treasury_obligations%1:21:00:: 13394326 1 0 -treasury_secretary%1:04:00:: 00602448 2 0 -treasury_secretary%1:18:00:: 10573129 1 0 -treasury_shares%1:21:00:: 13419951 1 0 -treasury_stock%1:21:00:: 13419951 1 0 -treat%1:11:00:: 07289358 2 0 -treat%1:13:00:: 07557165 1 0 -treat%2:29:00:: 00078760 3 17 -treat%2:30:01:: 00515154 2 23 -treat%2:31:00:: 00651145 8 0 -treat%2:32:00:: 01033527 4 10 -treat%2:32:03:: 00762720 7 0 -treat%2:34:00:: 01176232 6 0 -treat%2:40:00:: 02261642 5 3 -treat%2:41:00:: 02514187 1 30 -treated%3:00:00:: 01953635 1 2 -treated%3:00:02:: 01955272 2 0 -treated%3:00:04:: 01521542 3 0 -treater%1:18:00:: 10351874 1 0 -treatise%1:10:00:: 06408651 1 0 -treatment%1:04:00:: 00658082 1 28 -treatment%1:04:01:: 01134861 2 25 -treatment%1:07:00:: 04929976 3 4 -treatment%1:10:00:: 07138085 4 2 -treaty%1:10:00:: 06773434 1 3 -treaty_of_versailles%1:10:00:: 06775602 1 0 -treaty_port%1:15:00:: 08639951 1 0 -treble%1:07:00:: 04985930 1 0 -treble%2:30:00:: 00246746 2 0 -treble%2:32:00:: 01051271 1 0 -treble%5:00:00:high:03 01214842 1 1 -treble%5:00:00:multiple:00 02218834 2 0 -treble%5:00:01:multiple:00 02218547 3 0 -treble%5:00:03:multiple:00 02217799 4 0 -treble_clef%1:10:00:: 06862805 1 0 -treble_damages%1:21:00:: 13292244 1 0 -treble_recorder%1:06:00:: 03355468 1 0 -treble_staff%1:10:00:: 06862805 1 0 -trebuchet%1:06:00:: 02981911 1 0 -trebucket%1:06:00:: 02981911 1 0 -tree%1:18:00:: 11348160 3 0 -tree%1:20:00:: 13104059 1 107 -tree%1:25:00:: 13912260 2 0 -tree%2:30:00:: 00319111 4 0 -tree%2:33:00:: 01145163 3 0 -tree%2:35:01:: 01616293 2 0 -tree%2:38:00:: 01934205 1 0 -tree-frog%1:05:01:: 01644373 2 0 -tree-frog%1:05:02:: 01650167 1 0 -tree-living%3:00:00:: 00141818 1 0 -tree-shaped%5:00:00:branchy:00 00613382 1 0 -tree-worship%1:04:00:: 01045714 1 0 -tree_branch%1:20:00:: 13163803 1 1 -tree_celandine%1:20:00:: 11903333 1 0 -tree_clubmoss%1:20:00:: 13223710 1 0 -tree_cotton%1:20:01:: 12176278 2 0 -tree_cotton%1:20:02:: 12176453 1 0 -tree_creeper%1:05:01:: 01589286 1 0 -tree_creeper%1:05:02:: 01554448 2 0 -tree_cricket%1:05:00:: 02230480 1 0 -tree_diagram%1:25:00:: 13912260 1 0 -tree_farm%1:17:00:: 09461170 1 0 -tree_farmer%1:18:00:: 10104756 1 0 -tree_farming%1:04:00:: 00917614 1 0 -tree_fern%1:20:00:: 13186654 1 0 -tree_frog%1:05:01:: 01644373 2 0 -tree_frog%1:05:02:: 01650167 1 0 -tree_fuchsia%1:20:00:: 12343951 1 0 -tree_heath%1:20:01:: 12227658 2 0 -tree_heath%1:20:02:: 12254891 1 0 -tree_house%1:06:00:: 04477966 1 0 -tree_hugger%1:18:00:: 10727623 1 0 -tree_kangaroo%1:05:00:: 01879509 1 0 -tree_line%1:15:00:: 08547655 1 0 -tree_lizard%1:05:00:: 01681653 1 0 -tree_lupine%1:20:00:: 12546617 1 0 -tree_mallow%1:20:00:: 12182615 1 0 -tree_martin%1:05:00:: 01595168 1 0 -tree_of_heaven%1:20:00:: 12717224 1 0 -tree_of_knowledge%1:20:00:: 13240362 1 0 -tree_of_the_gods%1:20:00:: 12717224 1 0 -tree_onion%1:20:00:: 12433540 1 0 -tree_poppy%1:20:00:: 11905035 1 0 -tree_shrew%1:05:00:: 02495242 1 0 -tree_sloth%1:05:00:: 02456962 1 0 -tree_sparrow%1:05:01:: 01540090 1 0 -tree_sparrow%1:05:02:: 01536334 2 0 -tree_squirrel%1:05:00:: 02355477 1 0 -tree_stump%1:20:00:: 13111504 1 0 -tree_surgeon%1:18:00:: 10727818 1 0 -tree_surgery%1:04:00:: 00921530 1 0 -tree_swallow%1:05:01:: 01595168 2 0 -tree_swallow%1:05:02:: 01595450 1 0 -tree_swift%1:05:00:: 01833415 1 0 -tree_toad%1:05:00:: 01650167 1 0 -tree_tobacco%1:20:00:: 12908230 1 0 -tree_tomato%1:20:00:: 12903014 1 0 -tree_trunk%1:20:00:: 13165815 1 2 -tree_wallaby%1:05:00:: 01879509 1 0 -treed%5:00:00:unfree:00 01064913 1 0 -treehopper%1:05:00:: 02259708 1 0 -treeless%3:00:00:: 02575008 1 0 -treelet%1:20:00:: 13107807 1 0 -treelike%5:00:00:branchy:00 00613382 1 0 -treenail%1:06:00:: 04478066 1 0 -treetop%1:20:00:: 13128003 1 5 -tref%5:00:00:unclean:00 00428121 1 0 -trefoil%1:06:00:: 04478257 3 0 -trefoil%1:20:01:: 11752578 2 0 -trefoil%1:20:02:: 12548280 1 0 -trefoil_arch%1:06:00:: 04478383 1 0 -treillage%1:06:00:: 04478512 1 0 -trek%1:04:00:: 00310347 2 0 -trek%1:04:01:: 00310516 1 0 -trek%2:38:00:: 01847220 2 0 -trek%2:38:01:: 01847392 1 0 -trekker%1:18:00:: 10727944 1 0 -trellis%1:06:00:: 04478512 1 0 -trellis%2:41:00:: 02509705 1 0 -trema%1:20:00:: 12410205 1 0 -trematoda%1:05:00:: 01925469 1 0 -trematode%1:05:00:: 01925695 1 0 -trematode_worm%1:05:00:: 01925695 1 0 -tremble%1:04:00:: 00867983 1 0 -tremble%2:38:00:: 01888511 1 4 -trembler%1:18:00:: 10498046 1 0 -trembles%1:26:00:: 14276201 1 0 -trembling%1:26:00:: 14004572 1 1 -trembling%5:00:00:unsteady:00 02304565 1 7 -tremella%1:20:00:: 13060912 1 0 -tremella_foliacea%1:20:00:: 13061471 1 0 -tremella_fuciformis%1:20:00:: 13061172 1 0 -tremella_lutescens%1:20:00:: 13061348 1 0 -tremella_reticulata%1:20:00:: 13061704 1 0 -tremellaceae%1:20:00:: 13060689 1 0 -tremellales%1:20:00:: 13060451 1 0 -tremendous%5:00:00:extraordinary:00 01676517 2 10 -tremendous%5:00:00:large:00 01385255 1 19 -tremendous%5:00:01:extraordinary:00 01677200 3 0 -tremendously%4:02:00:: 00196540 1 5 -tremolite%1:27:00:: 14725941 1 0 -tremolo%1:11:00:: 07399336 2 0 -tremolo%1:26:00:: 14004958 1 0 -tremor%1:04:00:: 00348801 1 2 -tremor%1:11:00:: 07429484 2 1 -tremor%1:26:00:: 14005137 3 0 -tremor%2:38:00:: 01888784 1 0 -tremulous%5:00:00:unsteady:00 02304987 1 0 -tremulously%4:02:00:: 00480929 1 0 -trenail%1:06:00:: 04478066 1 0 -trench%1:06:00:: 04478657 1 2 -trench%1:06:01:: 04478889 3 0 -trench%1:17:00:: 09461315 2 0 -trench%2:35:00:: 01556037 3 0 -trench%2:35:01:: 01311722 6 0 -trench%2:35:03:: 01311896 5 0 -trench%2:35:05:: 01606423 2 0 -trench%2:35:06:: 01497458 4 0 -trench%2:41:10:: 02569790 1 0 -trench_coat%1:06:00:: 04479046 1 0 -trench_fever%1:26:00:: 14142207 1 0 -trench_foot%1:26:00:: 14299480 1 0 -trench_knife%1:06:00:: 04479287 1 0 -trench_mortar%1:06:00:: 03786715 1 0 -trench_mouth%1:26:00:: 14124931 1 0 -trench_warfare%1:04:00:: 00964952 2 0 -trench_warfare%1:04:01:: 01236633 1 0 -trenchancy%1:07:00:: 05199680 1 0 -trenchant%5:00:00:clear:00 00429016 3 0 -trenchant%5:00:00:effective:00 00834959 2 0 -trenchant%5:00:00:intelligent:00 01336371 1 0 -trenchantly%4:02:00:: 00481054 1 0 -trencher%1:06:00:: 04479155 2 0 -trencher%1:18:00:: 10728117 1 0 -trencherman%1:18:00:: 10132988 1 0 -trenching_spade%1:06:00:: 03291413 1 0 -trend%1:09:00:: 06197664 3 1 -trend%1:09:02:: 05750163 4 0 -trend%1:15:01:: 08681222 2 1 -trend%1:15:02:: 08681777 1 18 -trend%2:38:00:: 02033295 1 0 -trend-setter%1:18:00:: 10728233 1 0 -trend-setting%5:00:00:fashionable:00 00973568 1 0 -trend_analysis%1:09:00:: 05784152 1 0 -trend_line%1:10:00:: 06801313 1 0 -trend_setting%1:04:00:: 01257033 1 0 -trendsetting%5:00:00:fashionable:00 00973568 1 0 -trendy%5:00:00:fashionable:00 00973677 1 0 -trent%1:15:00:: 08812552 2 0 -trent%1:17:00:: 09461515 1 0 -trent_river%1:17:00:: 09461515 1 0 -trental%1:06:00:: 03913437 1 0 -trente-et-quarante%1:04:00:: 00495103 1 0 -trentino-alto_adige%1:15:00:: 08812399 1 0 -trento%1:15:00:: 08812552 1 0 -trenton%1:15:00:: 09113022 1 0 -trepan%1:06:00:: 04479405 2 0 -trepan%1:06:01:: 04479526 1 0 -trepan%2:35:00:: 01443871 1 0 -trepang%1:05:00:: 02322047 1 0 -trephination%1:04:00:: 00694276 1 0 -trephine%1:06:00:: 04479526 1 0 -trephine%2:29:00:: 00062067 1 0 -trephritidae%1:05:00:: 02196542 1 0 -trepid%5:00:00:timid:00 00252498 1 0 -trepidation%1:12:00:: 07522043 1 1 -trepidly%4:02:00:: 00478991 1 0 -treponema%1:05:00:: 01382699 1 0 -treponemataceae%1:05:00:: 01382273 1 0 -trespass%1:04:00:: 00733483 2 0 -trespass%1:04:01:: 00734482 1 0 -trespass%2:38:00:: 02019574 5 0 -trespass%2:41:00:: 02567422 3 0 -trespass%2:41:01:: 02571251 1 2 -trespass%2:41:02:: 02565687 4 0 -trespass%2:41:12:: 02570062 2 0 -trespass_de_bonis_asportatis%1:04:00:: 00735017 1 0 -trespass_on_the_case%1:04:00:: 00735198 1 0 -trespass_quare_clausum_fregit%1:04:00:: 00735553 1 0 -trespass_viet_armis%1:04:00:: 00735686 1 0 -trespasser%1:18:00:: 10213652 1 0 -trespassing%5:00:00:intrusive:01 01352320 1 0 -tress%1:08:00:: 05259512 1 0 -trestle%1:06:00:: 04479694 2 0 -trestle%1:06:01:: 04479823 1 1 -trestle_bridge%1:06:00:: 04479939 1 0 -trestle_table%1:06:00:: 04480033 1 0 -trestlework%1:06:00:: 04480141 1 0 -trevelyan%1:18:00:: 11348356 2 0 -trevelyan%1:18:01:: 11348584 1 0 -trevino%1:18:00:: 11348812 1 0 -trevithick%1:18:00:: 11348946 1 0 -trews%1:06:00:: 04480303 1 0 -trey%1:06:00:: 04480415 2 0 -trey%1:23:00:: 13744044 1 0 -trf%1:27:00:: 15074203 1 0 -trh%1:27:00:: 15074203 1 0 -tri-chad%1:27:00:: 15079184 1 0 -tri-iodomethane%1:27:00:: 14620781 1 0 -tri-iodothyronine%1:27:00:: 14835230 1 4 -triacetate%1:27:00:: 14965321 1 0 -triad%1:10:00:: 06870211 4 0 -triad%1:14:00:: 07986066 3 0 -triad%1:14:01:: 07986198 2 0 -triad%1:23:00:: 13744044 1 0 -triaenodon%1:05:00:: 01493012 1 0 -triaenodon_obseus%1:05:00:: 01493146 1 0 -triage%1:04:00:: 01017167 1 0 -triakidae%1:05:00:: 01491991 1 0 -trial%1:04:00:: 00791078 1 44 -trial%1:04:02:: 01195867 4 1 -trial%1:04:03:: 00794367 3 2 -trial%1:09:00:: 05799212 2 3 -trial%1:11:00:: 07372959 6 0 -trial%1:11:01:: 07477231 5 0 -trial-and-error%5:00:00:empirical:00 00860365 1 0 -trial-and-error%5:00:00:heuristic:00 00093108 2 0 -trial_and_error%1:04:00:: 00641421 1 2 -trial_attorney%1:18:00:: 10728361 1 0 -trial_balance%1:21:00:: 13411005 1 0 -trial_balloon%1:06:00:: 04480527 2 0 -trial_balloon%1:09:00:: 05800527 1 1 -trial_by_ordeal%1:04:00:: 01196477 1 0 -trial_court%1:14:00:: 08336490 1 1 -trial_impression%1:10:00:: 06590885 1 0 -trial_judge%1:18:00:: 10728523 1 1 -trial_lawyer%1:18:00:: 10728361 1 0 -trial_period%1:28:00:: 15115926 1 0 -trial_run%1:09:00:: 05799212 1 0 -trialeurodes%1:05:00:: 02247076 1 0 -trialeurodes_vaporariorum%1:05:00:: 02247216 1 0 -triamcinolone%1:27:00:: 15078768 1 4 -triangle%1:06:00:: 04480853 5 0 -triangle%1:06:01:: 04480995 4 0 -triangle%1:17:00:: 09461724 3 0 -triangle%1:25:00:: 13879320 1 2 -triangle%1:25:01:: 13879634 2 0 -triangular%5:00:00:angular:00 02049428 1 1 -triangular%5:00:00:multilateral:00 00239847 2 0 -triangular_bandage%1:06:00:: 04239436 1 0 -triangular_prism%1:25:00:: 13885111 1 0 -triangularity%1:07:00:: 05072523 1 0 -triangulate%2:31:00:: 00646912 3 0 -triangulate%2:31:01:: 00647629 2 0 -triangulate%2:41:00:: 02468618 1 0 -triangulate%3:01:00:: 02834246 1 0 -triangulation%1:04:00:: 00617337 2 0 -triangulation%1:09:00:: 06008148 1 0 -triangulum%1:17:00:: 09461724 1 0 -triangulum_australe%1:17:00:: 09461864 1 0 -triassic%1:28:00:: 15126750 1 0 -triassic%3:01:00:: 03126054 1 0 -triassic_period%1:28:00:: 15126750 1 0 -triatoma%1:05:00:: 02244396 1 0 -triavil%1:06:00:: 03918297 1 0 -triazine%1:27:00:: 15079030 1 0 -triazolam%1:06:00:: 04480625 1 0 -tribade%1:18:00:: 10254965 1 0 -tribadism%1:04:00:: 00857530 1 0 -tribadistic%5:00:00:homosexual:00 01202994 1 0 -tribal%3:01:00:: 03074922 1 2 -tribal_chief%1:18:00:: 10164025 1 0 -tribal_sheik%1:18:00:: 10588357 1 0 -tribal_sheikh%1:18:00:: 10588357 1 0 -tribal_society%1:14:00:: 08288390 1 0 -tribalisation%1:04:00:: 00382739 1 0 -tribalism%1:09:00:: 05954807 2 0 -tribalism%1:26:00:: 13928943 1 0 -tribalization%1:04:00:: 00382739 1 0 -tribasic_acid%1:27:00:: 14611397 1 0 -tribasic_sodium_phosphate%1:27:00:: 15080747 1 0 -tribe%1:14:00:: 08372411 1 0 -tribe%1:14:01:: 08168531 2 0 -tribe%1:14:02:: 07969695 4 0 -tribe%1:14:03:: 08108784 3 0 -tribe_bambuseae%1:20:00:: 12147031 1 0 -tribe_bovini%1:05:00:: 02401509 1 0 -tribe_bubalus%1:05:00:: 02408217 1 0 -tribe_synercus%1:05:00:: 02409369 1 0 -tribes_of_israel%1:14:00:: 08372847 1 0 -tribesman%1:18:00:: 10728624 1 0 -tribolium%1:05:00:: 02181599 1 0 -tribologist%1:18:00:: 10728727 1 0 -tribology%1:09:00:: 06135095 1 0 -tribonema%1:05:00:: 01401686 1 0 -tribonemaceae%1:05:00:: 01401517 1 0 -tribromoethanol%1:06:00:: 04481144 1 0 -tribromoethyl_alcohol%1:06:00:: 04481144 1 0 -tribromomethane%1:27:00:: 14620549 1 0 -tribulate%2:37:00:: 01797989 1 0 -tribulation%1:11:00:: 07372959 1 0 -tribulus%1:20:00:: 12723446 1 0 -tribulus_terestris%1:20:00:: 12723610 1 0 -tribunal%1:14:00:: 08329453 1 1 -tribune%1:06:00:: 04481255 2 0 -tribune%1:18:00:: 10728828 1 0 -tribuneship%1:04:00:: 00605349 1 0 -tributary%1:17:00:: 09278997 1 0 -tributary%5:00:00:causative:00 00323426 3 0 -tributary%5:00:00:obligated:00 01617410 2 0 -tributary%5:00:00:secondary:01 01855348 1 0 -tribute%1:04:01:: 01122387 2 0 -tribute%1:04:02:: 00784755 3 0 -tribute%1:10:01:: 06697195 1 5 -tribute_album%1:10:00:: 06592421 1 0 -tributyrin%1:27:00:: 14788596 1 0 -tricarboxylic_acid_cycle%1:22:00:: 13505467 1 0 -trice%1:28:00:: 15247110 1 0 -trice%2:35:00:: 01455506 2 0 -trice%2:35:01:: 01455639 1 0 -trice_up%2:35:00:: 01455506 2 0 -trice_up%2:35:01:: 01455639 1 0 -tricentenary%3:01:00:: 02999398 1 0 -tricentennial%3:01:00:: 02999398 1 0 -triceps%1:08:00:: 05579604 1 0 -triceps_brachii%1:08:00:: 05579753 1 0 -triceratops%1:05:00:: 01704323 1 0 -trichechidae%1:05:00:: 02073532 1 0 -trichechus%1:05:00:: 02073679 1 0 -trichechus_manatus%1:05:00:: 02073831 1 0 -trichina%1:05:00:: 01932936 1 0 -trichinella_spiralis%1:05:00:: 01932936 1 0 -trichiniasis%1:26:00:: 14350536 1 0 -trichinosis%1:26:00:: 14350536 1 0 -trichion%1:15:00:: 08523340 1 0 -trichiuridae%1:05:00:: 02622823 1 0 -trichloracetic_acid%1:27:00:: 15079310 1 0 -trichloride%1:27:00:: 15016984 1 0 -trichlormethiazide%1:06:00:: 04481373 1 0 -trichloroacetic_acid%1:27:00:: 15079310 1 1 -trichloroethane%1:27:00:: 14851414 1 0 -trichloroethylene%1:27:00:: 14851414 1 0 -trichloromethane%1:06:00:: 03022406 1 0 -trichobezoar%1:17:00:: 09301044 1 0 -trichoceros%1:20:00:: 12085469 1 0 -trichodesmium%1:05:00:: 01359762 1 0 -trichodontidae%1:05:00:: 02558350 1 0 -trichoglossus%1:05:00:: 01820937 1 0 -trichoglossus_moluccanus%1:05:00:: 01821076 1 0 -tricholoma%1:20:00:: 13016749 1 0 -tricholoma_aurantium%1:20:00:: 13018407 1 0 -tricholoma_flavovirens%1:20:00:: 13017789 1 0 -tricholoma_irinum%1:20:00:: 13021689 1 0 -tricholoma_pardinum%1:20:00:: 13018088 1 0 -tricholoma_pessundatum%1:20:00:: 13017439 1 0 -tricholoma_populinum%1:20:00:: 13017240 1 0 -tricholoma_sejunctum%1:20:00:: 13017610 1 0 -tricholoma_vaccinum%1:20:00:: 13018232 1 0 -tricholoma_venenata%1:20:00:: 13017979 1 0 -tricholomataceae%1:20:00:: 13016457 1 0 -trichomanes%1:20:00:: 12952022 1 0 -trichomanes_boschianum%1:20:00:: 12952469 1 0 -trichomanes_reniforme%1:20:00:: 12952717 1 0 -trichomanes_speciosum%1:20:00:: 12952590 1 0 -trichomonad%1:05:00:: 01420525 1 0 -trichomoniasis%1:26:00:: 14186256 1 0 -trichophaga%1:05:00:: 02292564 1 0 -trichophaga_tapetzella%1:05:00:: 02292692 1 0 -trichophyton%1:20:00:: 13078483 1 0 -trichoptera%1:05:00:: 02269015 1 0 -trichopteran%1:05:00:: 02269196 1 0 -trichopteron%1:05:00:: 02269196 1 0 -trichopterous_insect%1:05:00:: 02269196 1 0 -trichostema%1:20:00:: 12871074 1 0 -trichostema_dichotomum%1:20:00:: 12871859 1 0 -trichostema_lanatum%1:20:00:: 12871484 1 0 -trichostema_lanceolatum%1:20:00:: 12871696 1 0 -trichostigma%1:20:00:: 11856815 1 0 -trichosurus%1:05:00:: 01881717 1 0 -trichosurus_vulpecula%1:05:00:: 01881857 1 0 -trichotillomania%1:16:00:: 09183031 1 0 -trichotomy%1:14:00:: 07940121 1 0 -trichroism%1:19:00:: 11520821 1 0 -trichromacy%1:09:00:: 05656294 1 0 -trichromatic%5:00:00:colored:00 00401125 1 0 -trichrome%5:00:00:colored:00 00401125 1 1 -trichuriasis%1:26:00:: 14455074 1 0 -trichys%1:05:00:: 02347443 1 0 -trichys_lipura%1:05:00:: 02347573 1 0 -trick%1:04:00:: 00427580 4 1 -trick%1:04:01:: 01259594 7 0 -trick%1:04:02:: 00099951 5 1 -trick%1:04:04:: 00750730 3 1 -trick%1:04:05:: 00171618 1 2 -trick%1:18:00:: 10779995 6 0 -trick%1:28:00:: 15292260 2 1 -trick%2:41:00:: 02575723 1 1 -trick_or_treat%1:10:00:: 07192990 1 0 -trick_out%2:29:00:: 00044149 1 1 -trick_up%2:29:00:: 00044149 1 0 -tricked-out%5:00:00:adorned:00 00060151 1 0 -tricker%1:18:00:: 10463714 1 0 -trickery%1:04:01:: 00752954 2 0 -trickery%1:10:00:: 06760722 1 0 -trickily%4:02:00:: 00293926 1 0 -trickiness%1:07:00:: 04875728 1 0 -trickiness%1:07:01:: 04767182 2 0 -trickle%1:11:00:: 07432559 1 0 -trickle%2:38:00:: 02070874 1 1 -trickster%1:18:00:: 10463714 1 0 -trickster%1:18:01:: 09998101 2 0 -trickster%1:18:02:: 09545755 3 0 -tricksy%5:00:00:artful:00 00148078 1 0 -tricky%5:00:00:artful:00 00148078 3 0 -tricky%5:00:00:difficult:00 00746819 2 0 -tricky%5:00:00:untrustworthy:00 02466734 1 0 -triclinic%3:00:00:: 00366185 1 0 -triclinium%1:06:00:: 04481524 2 0 -triclinium%1:06:01:: 04481642 1 0 -tricolor%1:06:00:: 04481796 1 0 -tricolor%5:00:00:colored:00 00401125 1 1 -tricolor_television_tube%1:06:00:: 04481946 1 0 -tricolor_tube%1:06:00:: 04481946 1 0 -tricolour%1:06:00:: 04481796 1 0 -tricolour_television_tube%1:06:00:: 04481946 1 0 -tricolour_tube%1:06:00:: 04481946 1 0 -tricorn%1:06:00:: 04482177 1 0 -tricorne%1:06:00:: 04482177 1 0 -tricot%1:06:00:: 04482297 1 0 -tricuspid%5:00:00:angular:00 02049648 1 0 -tricuspid_valve%1:08:00:: 05393996 1 0 -tricuspidate%5:00:00:angular:00 02049648 1 0 -tricycle%1:06:00:: 04482393 1 0 -tricyclic%1:06:00:: 04482543 1 0 -tricyclic_antidepressant%1:06:00:: 04482543 1 0 -tricyclic_antidepressant_drug%1:06:00:: 04482543 1 0 -tridacna%1:05:00:: 01959333 1 0 -tridacna_gigas%1:05:00:: 01959492 1 0 -tridacnidae%1:05:00:: 01959187 1 0 -trident%1:06:00:: 04482975 1 0 -tridymite%1:27:00:: 15079557 1 0 -tried%5:00:00:proved:00 01894196 1 0 -tried%5:00:00:reliable:00 00724596 2 0 -tried_and_true%5:00:00:reliable:00 00724596 1 0 -triennial%1:28:00:: 15251757 1 0 -triennial%5:00:00:periodic:00 01969606 1 0 -trier%1:18:01:: 10728998 2 0 -trier%1:18:02:: 10729175 1 0 -trifid%5:00:00:divided:00 02483198 1 0 -trifid_beggar-ticks%1:20:00:: 11940750 1 0 -trifid_bur_marigold%1:20:00:: 11940750 1 0 -trifle%1:06:00:: 04486445 3 0 -trifle%1:09:00:: 05820462 2 0 -trifle%1:13:00:: 07613480 1 0 -trifle%2:31:01:: 00711932 3 0 -trifle%2:41:00:: 02592895 2 0 -trifle%2:42:00:: 02708123 1 0 -trifle_away%2:40:00:: 02266422 1 0 -trifler%1:18:00:: 10729330 1 0 -trifling%1:04:00:: 01067819 1 0 -trifling%5:00:00:worthless:00 02502994 1 0 -trifluoromethane%1:27:00:: 14620654 1 0 -trifoliata%1:20:00:: 12714254 1 0 -trifoliate%5:00:00:compound:00 02174417 1 0 -trifoliate_orange%1:20:00:: 12714254 1 0 -trifoliated%5:00:00:compound:00 02174417 1 0 -trifoliolate%5:00:00:compound:00 02174417 1 0 -trifoliolate_leaf%1:20:00:: 13156799 1 0 -trifolium%1:20:00:: 11752404 1 0 -trifolium_alpinum%1:20:00:: 11752798 1 0 -trifolium_dubium%1:20:00:: 11752937 1 0 -trifolium_incarnatum%1:20:00:: 11753143 1 0 -trifolium_pratense%1:20:00:: 11753355 1 0 -trifolium_reflexum%1:20:00:: 11753562 1 0 -trifolium_repens%1:20:00:: 11753700 1 0 -trifolium_stoloniferum%1:20:00:: 11753562 1 0 -trifurcate%2:30:00:: 00330003 1 0 -trifurcation%1:04:00:: 00388842 1 0 -trig%1:09:00:: 06012513 1 0 -trig%5:00:00:tidy:00 02423073 1 0 -triga%1:05:00:: 02650282 1 0 -trigeminal%1:08:00:: 05478896 1 0 -trigeminal_nerve%1:08:00:: 05478896 1 0 -trigeminal_neuralgia%1:26:00:: 14330588 1 0 -trigeminus%1:08:00:: 05478896 1 0 -trigger%1:04:00:: 00156390 3 0 -trigger%1:06:00:: 03470629 1 5 -trigger%1:06:01:: 04483073 2 0 -trigger%2:33:00:: 01135371 2 1 -trigger%2:36:00:: 01643657 1 4 -trigger-happy%5:00:00:intense:00 01511854 2 0 -trigger-happy%5:00:00:irresponsible:00 01998989 1 2 -trigger_off%2:36:00:: 01643657 1 0 -triggerfish%1:05:00:: 02653145 1 0 -triggerman%1:18:00:: 10152083 1 0 -trigla_lucerna%1:05:00:: 02650413 1 0 -triglidae%1:05:00:: 02649689 1 0 -triglinae%1:05:00:: 02650696 1 0 -triglochin%1:20:00:: 12617384 1 0 -triglochin_maritima%1:20:00:: 12617559 1 0 -triglyceride%1:27:00:: 14885369 1 0 -trigon%1:06:00:: 04483210 3 0 -trigon%1:14:00:: 07986771 2 0 -trigon%1:25:00:: 13879320 1 0 -trigonal%5:00:00:symmetrical:00 02373467 1 1 -trigonella%1:20:00:: 12574143 1 0 -trigonella_foenumgraecum%1:20:00:: 12574470 1 0 -trigonella_ornithopodioides%1:20:00:: 12574320 1 0 -trigonometric%3:01:00:: 02912518 1 0 -trigonometric_function%1:24:00:: 13786960 1 0 -trigonometrician%1:18:00:: 10729442 1 0 -trigonometry%1:09:00:: 06012513 1 0 -trigonum_cerebrale%1:08:00:: 05227572 1 0 -trigram%1:10:00:: 06360723 1 0 -trihydroxy%3:01:00:: 03126310 1 0 -triiodomethane%1:06:00:: 03583252 1 0 -triiodothyronine%1:08:00:: 05413873 1 0 -trike%1:06:00:: 04482393 1 0 -trilateral%1:25:00:: 13879320 1 0 -trilateral%5:00:00:multilateral:00 00239847 2 0 -trilateral%5:00:00:reciprocal:00 01946167 1 0 -trilby%1:06:00:: 03325941 2 0 -trilby%1:18:00:: 10729567 1 0 -trilingual%5:00:00:multilingual:00 01546110 1 0 -trilisa%1:20:00:: 12027864 1 0 -trilisa_odoratissima%1:20:00:: 12028012 1 0 -trill%1:10:00:: 06860177 1 3 -trill%1:10:01:: 07133477 2 0 -trill%2:32:00:: 01050896 2 0 -trill%2:32:01:: 01055266 1 0 -trilled%5:00:00:pronounceable:00 01878227 1 0 -trilliaceae%1:20:00:: 12467811 1 0 -trilling%1:18:00:: 11349092 1 0 -trillion%1:23:00:: 13752443 3 0 -trillion%1:23:01:: 13752679 2 0 -trillion%1:23:02:: 13776432 1 0 -trillion%5:00:00:cardinal:00 02199699 2 0 -trillion%5:00:01:cardinal:00 02199813 1 0 -trillion_floating_point_operations_per_second%1:23:00:: 13607405 1 0 -trillionth%1:23:00:: 13739826 1 0 -trillionth%5:00:00:ordinal:00 02212805 1 0 -trillium%1:20:00:: 12468243 1 0 -trillium_erectum%1:20:00:: 12468900 1 0 -trillium_family%1:20:00:: 12467811 1 0 -trillium_recurvatum%1:20:00:: 12468545 1 0 -trillium_sessile%1:20:00:: 12469157 1 0 -trilobate%5:00:00:compound:00 02174542 1 0 -trilobated%5:00:00:compound:00 02174542 1 0 -trilobed%5:00:00:compound:00 02174542 1 0 -trilobite%1:05:00:: 01768244 1 0 -trilogy%1:14:00:: 07985825 1 0 -trim%1:04:00:: 00359903 4 0 -trim%1:06:00:: 04484160 2 1 -trim%1:24:00:: 13828520 3 0 -trim%1:26:00:: 14497511 1 1 -trim%2:30:00:: 00429060 3 1 -trim%2:30:04:: 00297193 9 0 -trim%2:35:01:: 01248782 8 0 -trim%2:35:02:: 01321002 7 0 -trim%2:35:03:: 01262564 1 8 -trim%2:36:00:: 01679433 6 0 -trim%2:36:01:: 01679806 2 1 -trim%2:42:05:: 02751952 5 0 -trim%2:42:06:: 02752107 4 0 -trim%5:00:00:plain:01 01793985 4 0 -trim%5:00:00:thin:03 00991301 1 1 -trim%5:00:01:tidy:00 02423649 2 0 -trim%5:00:02:tidy:00 02423073 3 0 -trim_back%2:30:00:: 00429060 1 0 -trim_down%2:30:00:: 00429060 1 1 -trimaran%1:06:00:: 04483307 1 0 -trimer%1:27:00:: 15079795 1 0 -trimester%1:28:00:: 15226732 1 0 -trimester%1:28:01:: 15225929 2 0 -trimipramine%1:06:00:: 04483399 1 0 -trimly%4:02:00:: 00464620 1 0 -trimmed%3:00:00:: 02454750 1 0 -trimmer%1:06:00:: 04483584 4 0 -trimmer%1:06:01:: 04483779 3 0 -trimmer%1:06:02:: 04483925 2 0 -trimmer%1:18:00:: 10487182 1 0 -trimmer_arch%1:06:00:: 04484024 1 0 -trimmer_joist%1:06:00:: 04483584 1 0 -trimming%1:04:00:: 00263000 1 1 -trimming%1:04:01:: 00359903 3 0 -trimming%1:06:00:: 04484160 2 0 -trimming_capacitor%1:06:00:: 04483779 1 0 -trimmings%1:06:00:: 03354350 1 0 -trimness%1:26:00:: 14497511 1 0 -trimorphodon%1:05:00:: 01739518 1 0 -trimorphodon_lambda%1:05:00:: 01739871 1 0 -trimotored%5:00:00:motorized:00 01559728 1 0 -trimox%1:06:00:: 02703894 1 0 -trimurti%1:14:00:: 07986617 1 0 -trine%1:23:00:: 13744044 1 0 -trine_immersion%1:04:00:: 01038629 1 0 -trinectes%1:05:00:: 02665119 1 0 -trinectes_maculatus%1:05:00:: 02665250 1 0 -tringa%1:05:00:: 02027730 1 0 -tringa_flavipes%1:05:00:: 02028451 1 0 -tringa_melanoleuca%1:05:00:: 02028342 1 0 -tringa_nebularia%1:05:00:: 02027897 1 0 -tringa_totanus%1:05:00:: 02028035 1 0 -trinidad%1:15:00:: 08755852 1 0 -trinidad_and_tobago%1:15:00:: 08756202 1 0 -trinidad_and_tobago_dollar%1:23:00:: 13674138 1 0 -trinidadian%1:18:00:: 10729711 1 0 -trinidadian%3:01:00:: 03126175 1 0 -trinil_man%1:05:00:: 02473720 1 0 -trinitarian%1:18:00:: 10738787 1 0 -trinitarianism%1:09:00:: 06230502 1 0 -trinitroglycerin%1:27:00:: 14886579 1 0 -trinitrotoluene%1:06:00:: 04442143 1 0 -trinity%1:14:00:: 07986066 3 0 -trinity%1:18:00:: 09536789 2 0 -trinity%1:23:00:: 13744044 1 0 -trinity_river%1:17:00:: 09462049 1 0 -trinity_sunday%1:28:00:: 15192649 1 0 -trinket%1:06:00:: 02787435 1 1 -trinketry%1:14:00:: 08464324 1 0 -trinuclear%3:00:00:: 00241530 1 0 -trinucleate%3:00:00:: 00241530 1 0 -trinucleated%3:00:00:: 00241530 1 0 -trio%1:10:00:: 07041595 2 1 -trio%1:14:00:: 07986066 5 0 -trio%1:14:01:: 07986198 4 0 -trio%1:14:02:: 08247152 3 0 -trio%1:23:00:: 13744044 1 1 -triode%1:06:00:: 04484432 1 0 -triolein%1:27:00:: 15079656 1 0 -trionychidae%1:05:00:: 01671874 1 0 -trionyx%1:05:00:: 01672275 1 0 -trionyx_muticus%1:05:00:: 01672611 1 0 -trionyx_spiniferus%1:05:00:: 01672432 1 0 -triopidae%1:05:00:: 01995975 1 0 -triops%1:05:00:: 01996091 1 0 -triose%1:27:00:: 14689817 1 0 -triostium%1:20:00:: 12679712 1 0 -triostium_perfoliatum%1:20:00:: 12679876 1 0 -trioxide%1:27:00:: 15079925 1 0 -trip%1:04:00:: 00308370 1 31 -trip%1:04:01:: 00076563 7 0 -trip%1:04:02:: 00286240 6 0 -trip%1:06:00:: 04485226 5 0 -trip%1:11:00:: 07317519 3 0 -trip%1:11:01:: 07288385 4 0 -trip%1:26:00:: 14378311 2 0 -trip%2:34:00:: 01200934 5 0 -trip%2:36:00:: 01643657 4 0 -trip%2:38:00:: 01900408 1 2 -trip%2:38:01:: 01900760 2 0 -trip%2:38:02:: 01843055 3 0 -trip-up%1:04:00:: 00076563 1 0 -trip_line%1:06:00:: 04484952 1 0 -trip_out%2:34:00:: 01200934 1 0 -trip_the_light_fantastic%2:36:00:: 01708676 1 0 -trip_the_light_fantastic_toe%2:36:00:: 01708676 1 0 -trip_up%2:31:00:: 00599835 1 1 -trip_up%2:31:01:: 00618057 3 0 -trip_up%2:38:00:: 01900760 2 0 -trip_wire%1:06:00:: 04485586 2 0 -trip_wire%1:14:00:: 07986381 1 0 -tripalmitin%1:27:00:: 15080055 1 0 -tripartite%5:00:00:multilateral:00 00240008 1 0 -tripe%1:10:00:: 06611998 2 0 -tripe%1:13:00:: 07663220 1 0 -triphammer%1:06:00:: 04484647 1 1 -triphosphopyridine%1:27:00:: 15080168 1 0 -triphosphopyridine_nucleotide%1:27:00:: 15080277 1 1 -triphosphoric_acid%1:27:00:: 15080382 1 0 -tripinnate%5:00:00:compound:00 02174678 1 0 -tripinnated%5:00:00:compound:00 02174678 1 0 -tripinnatifid%5:00:00:compound:00 02174781 1 0 -triple%1:04:00:: 00132982 1 3 -triple%1:09:00:: 05860377 3 0 -triple%1:14:00:: 07986198 2 0 -triple%2:30:00:: 00246746 1 3 -triple%2:35:00:: 01409642 2 1 -triple%5:00:00:multiple:00 02218547 1 2 -triple%5:00:01:multiple:00 02218834 2 0 -triple-crown%5:00:00:successful:00 02332956 2 0 -triple-crown%5:00:01:successful:00 02333147 1 0 -triple-crown_season%1:28:00:: 15240503 1 1 -triple-decker%1:13:00:: 07696839 1 0 -triple-space%2:32:00:: 01005654 1 0 -triple-spacing%1:10:00:: 06402970 1 0 -triple-tongue%2:36:00:: 01734131 1 0 -triple_cream%1:13:00:: 07851641 1 0 -triple_creme%1:13:00:: 07851641 1 0 -triple_crown%1:26:00:: 13949080 2 0 -triple_crown%1:26:01:: 13949275 1 0 -triple_frontier%1:15:00:: 08711655 1 0 -triple_jump%1:11:00:: 07471972 1 0 -triple_play%1:04:00:: 00564477 1 0 -triple_sec%1:13:00:: 07910048 1 0 -triple_time%1:28:00:: 15264264 1 0 -triplet%1:14:01:: 07986198 3 0 -triplet%1:18:00:: 10729801 2 0 -triplet%1:23:00:: 13744044 1 0 -triplet_code%1:14:00:: 08457789 1 0 -tripletail%1:05:00:: 02636170 1 0 -tripleurospermum%1:20:00:: 12028196 1 0 -tripleurospermum_inodorum%1:20:00:: 12028424 1 0 -tripleurospermum_oreades_tchihatchewii%1:20:00:: 12028818 1 0 -tripleurospermum_tchihatchewii%1:20:00:: 12029039 1 0 -triplex%5:00:00:multiple:00 02218547 1 0 -triplicate%1:06:00:: 04484780 1 0 -triplicate%2:36:00:: 01735799 1 0 -triplicity%1:07:00:: 05098857 2 0 -triplicity%1:14:00:: 07986771 1 0 -tripling%1:22:00:: 13570472 1 0 -triplochiton%1:20:00:: 12201761 1 0 -triplochiton_scleroxcylon%1:20:00:: 12201938 1 0 -triploid%5:00:00:polyploid:00 01148086 1 0 -tripod%1:06:00:: 04485082 1 1 -tripoli%1:15:00:: 08957993 3 0 -tripoli%1:15:01:: 08960099 2 0 -tripoli%1:27:00:: 14936474 1 0 -tripos%1:10:00:: 07199456 1 0 -tripper%1:06:00:: 04485226 4 0 -tripper%1:18:00:: 10596689 3 0 -tripper%1:18:01:: 10667041 2 0 -tripper%1:18:02:: 10729923 1 0 -tripping%5:00:00:light-footed:00 01192393 2 0 -tripping%5:00:00:rhythmical:00 02020011 1 0 -trippingly%4:02:00:: 00391308 1 0 -triptych%1:06:00:: 04485423 1 0 -triquetral%1:08:00:: 05272545 1 0 -triquetral_bone%1:08:00:: 05272545 1 0 -triquetrous_leek%1:20:00:: 12436090 1 0 -trireme%1:06:00:: 04485750 1 0 -trisaccharide%1:27:00:: 15080571 1 0 -trisect%2:35:00:: 01551092 1 0 -triskaidekaphobia%1:26:00:: 14384684 1 0 -triskaidekaphobic%5:00:00:afraid:00 00081087 1 0 -triskele%1:06:00:: 04485884 1 0 -triskelion%1:06:00:: 04485884 1 0 -trismus%1:26:00:: 14572265 1 0 -trisodium_orthophosphate%1:27:00:: 15080747 1 1 -trisodium_phosphate%1:27:00:: 15080747 1 0 -trisomy%1:26:00:: 14504558 1 0 -trisomy_21%1:26:00:: 14159623 1 0 -tristan%1:18:00:: 10550951 1 0 -tristan_tzara%1:18:00:: 11355247 1 0 -tristearin%1:27:00:: 15080942 1 0 -tristram%1:18:00:: 10550951 1 0 -trisyllable%1:10:00:: 06304338 1 0 -tritanopia%1:26:00:: 14155031 1 0 -tritanopic%5:00:00:blind:00 02160696 1 0 -trite%5:00:00:unoriginal:00 01688757 1 1 -tritely%4:02:00:: 00481199 1 0 -triteness%1:09:00:: 05649785 1 0 -tritheism%1:09:00:: 06224439 1 0 -tritheist%1:18:00:: 10730077 1 0 -triticum%1:20:00:: 12141890 1 0 -triticum_aestivum%1:20:00:: 12142874 1 0 -triticum_aestivum_spelta%1:20:00:: 12143065 1 0 -triticum_dicoccum%1:20:00:: 12143215 1 0 -triticum_dicoccum_dicoccoides%1:20:00:: 12143405 1 0 -triticum_durum%1:20:00:: 12142450 1 0 -triticum_spelta%1:20:00:: 12143065 1 0 -triticum_turgidum%1:20:00:: 12142450 1 0 -tritium%1:27:00:: 14611521 1 0 -tritoma%1:20:00:: 12437513 1 0 -triton%1:05:01:: 01630284 4 0 -triton%1:05:02:: 01947735 3 0 -triton%1:17:00:: 09462231 2 0 -triton%1:18:00:: 09573145 1 0 -triturus%1:05:00:: 01630533 1 0 -triturus_vulgaris%1:05:00:: 01630670 1 0 -triumph%1:11:00:: 07473441 1 6 -triumph%1:12:00:: 07528097 2 5 -triumph%2:32:00:: 00883635 3 0 -triumph%2:32:01:: 00857923 4 0 -triumph%2:33:00:: 01101734 1 1 -triumph%2:37:00:: 01823370 2 0 -triumphal%3:01:00:: 03013412 1 0 -triumphal%5:00:00:elated:00 00704898 2 0 -triumphal_arch%1:06:00:: 04486054 1 0 -triumphant%5:00:00:elated:00 00704898 1 3 -triumphant%5:00:00:undefeated:00 00695209 2 1 -triumphantly%4:02:00:: 00194915 1 4 -triumvir%1:18:00:: 10730262 1 0 -triumvirate%1:14:00:: 07986982 1 0 -triune%5:00:00:multiple:00 02219015 1 0 -trivalent%3:01:00:: 03126399 1 0 -trivalent_live_oral_poliomyelitis_vaccine%1:06:00:: 04122011 1 0 -trivet%1:06:01:: 04486213 2 0 -trivet%1:06:02:: 04486322 1 0 -trivia%1:06:00:: 04486445 1 0 -trivial%5:00:00:frivolous:00 02121735 3 0 -trivial%5:00:00:insignificant:00 02165432 2 0 -trivial%5:00:00:unimportant:00 01280908 1 4 -trivialise%2:32:00:: 00840413 1 0 -triviality%1:06:00:: 04486445 3 0 -triviality%1:07:00:: 05173205 1 1 -triviality%1:09:00:: 05820462 2 0 -trivialize%2:32:00:: 00840413 1 0 -trivially%4:02:00:: 00481300 2 0 -trivially%4:02:01:: 00481419 1 0 -trivium%1:09:00:: 06172071 1 0 -trm%1:28:00:: 15131269 1 0 -trna%1:27:00:: 14833143 1 0 -troat%2:32:00:: 00985923 1 0 -trochaic%3:01:00:: 03126499 1 0 -trochanter%1:08:00:: 05574151 1 0 -troche%1:13:00:: 07607967 1 0 -trochee%1:10:00:: 07095653 1 0 -trochilidae%1:05:00:: 01833619 1 0 -trochlear%1:08:00:: 05478684 1 0 -trochlear_nerve%1:08:00:: 05478684 1 0 -trochlearis%1:08:00:: 05478684 1 0 -trofim_denisovich_lysenko%1:18:00:: 11146010 1 0 -trogium%1:05:00:: 02261630 1 0 -trogium_pulsatorium%1:05:00:: 02261757 1 0 -troglodyte%1:18:00:: 09902731 2 0 -troglodyte%1:18:01:: 10172448 1 0 -troglodytes%1:05:00:: 01584529 1 0 -troglodytes_aedon%1:05:00:: 01584853 1 0 -troglodytes_troglodytes%1:05:00:: 01584695 1 0 -troglodytidae%1:05:00:: 01584004 1 0 -trogon%1:05:00:: 01844231 1 0 -trogonidae%1:05:00:: 01843932 1 0 -trogoniformes%1:05:00:: 01843805 1 0 -troika%1:06:00:: 04486616 1 1 -troika%1:14:00:: 07987135 3 0 -troika%1:23:00:: 13744044 2 0 -trojan%1:10:00:: 06585552 2 0 -trojan%1:18:00:: 09750524 1 0 -trojan%3:01:00:: 03126638 1 0 -trojan_horse%1:06:00:: 04486718 3 0 -trojan_horse%1:10:00:: 06585552 2 0 -trojan_horse%1:14:00:: 08359753 1 0 -trojan_war%1:04:00:: 01309395 1 0 -troll%1:04:00:: 00454493 4 0 -troll%1:06:00:: 04486934 3 0 -troll%1:10:00:: 07053089 2 0 -troll%1:18:00:: 09502481 1 1 -troll%2:32:00:: 01049373 5 0 -troll%2:32:01:: 00827601 6 0 -troll%2:32:02:: 00745383 7 0 -troll%2:33:00:: 01141763 4 0 -troll%2:36:00:: 01731577 3 0 -troll%2:38:00:: 01887454 2 0 -troll%2:38:01:: 02044503 1 0 -troller%1:18:00:: 09793946 1 0 -trolley%1:06:00:: 04335435 1 0 -trolley_car%1:06:00:: 04335435 1 1 -trolley_coach%1:06:00:: 04487081 1 0 -trolley_line%1:06:00:: 04487268 1 1 -trolleybus%1:06:00:: 04487081 1 0 -trolling%1:04:00:: 00454493 1 0 -trollius%1:20:00:: 11739199 1 0 -trollop%1:18:00:: 09772930 2 0 -trollop%1:18:01:: 10609198 1 0 -trollope%1:18:00:: 11349207 1 0 -trombicula%1:05:00:: 01780919 1 0 -trombiculiasis%1:26:00:: 14454988 1 0 -trombiculid%1:05:00:: 01780696 1 0 -trombiculidae%1:05:00:: 01780551 1 0 -trombidiid%1:05:00:: 01780426 1 0 -trombidiidae%1:05:00:: 01780302 1 0 -trombone%1:06:00:: 04487394 1 0 -trombone_player%1:18:00:: 10730416 1 0 -trombonist%1:18:00:: 10730416 1 0 -trompe-l'oeil%5:00:00:unreal:00 01935581 1 0 -trompe_l'oeil%1:06:00:: 04487576 1 1 -trompillo%1:20:00:: 12894930 1 0 -trondheim%1:15:00:: 08765623 1 0 -trondheim_fiord%1:17:00:: 09462312 1 0 -trondheim_fjord%1:17:00:: 09462312 1 0 -troop%1:14:00:: 08274354 1 10 -troop%1:14:01:: 08274565 4 0 -troop%1:14:02:: 08274718 3 0 -troop%1:14:03:: 08274443 2 5 -troop%2:38:00:: 01919898 2 0 -troop%2:38:01:: 01924505 1 0 -troop_carrier%1:06:00:: 04487724 1 0 -troop_movement%1:04:00:: 00331531 1 0 -troop_transport%1:06:00:: 04487724 1 0 -trooper%1:18:00:: 10730542 2 1 -trooper%1:18:01:: 09902611 1 9 -trooper%1:18:02:: 10730728 3 0 -trooper%1:18:03:: 09902353 4 0 -troops%1:14:00:: 08397255 1 27 -troopship%1:06:00:: 04487894 1 0 -tropaeolaceae%1:20:00:: 12719277 1 0 -tropaeolum%1:20:00:: 12719455 1 0 -tropaeolum_majus%1:20:00:: 12719944 1 0 -tropaeolum_minus%1:20:00:: 12720200 1 0 -tropaeolum_peregrinum%1:20:00:: 12720354 1 0 -trope%1:10:00:: 07105475 1 0 -trophic%3:01:00:: 02945002 1 0 -trophobiosis%1:24:00:: 13842841 1 0 -trophoblast%1:05:00:: 01462209 1 0 -trophoblastic%3:01:00:: 03126787 1 0 -trophoblastic_cancer%1:26:00:: 14252722 1 0 -trophotropic%3:01:00:: 03126922 1 1 -trophotropism%1:04:00:: 00862488 1 0 -trophozoite%1:05:00:: 01422335 1 0 -trophy%1:06:00:: 04487996 2 0 -trophy%1:10:00:: 06709442 1 0 -trophy_case%1:06:00:: 04488202 1 0 -trophy_wife%1:18:00:: 10730820 1 0 -tropic%1:15:00:: 08675145 1 0 -tropic%5:00:00:equatorial:00 02443907 1 0 -tropic%5:00:00:hot:01 01250835 2 0 -tropic_bird%1:05:00:: 02055107 1 0 -tropic_of_cancer%1:15:00:: 08675538 1 0 -tropic_of_capricorn%1:15:00:: 08675665 1 0 -tropical%3:01:00:: 02929500 2 1 -tropical%5:00:00:equatorial:00 02443907 1 3 -tropical%5:00:00:figurative:00 01420899 3 0 -tropical%5:00:00:hot:01 01250835 4 0 -tropical_medicine%1:09:00:: 06065020 1 0 -tropical_pitcher_plant%1:20:00:: 12781940 1 0 -tropical_prawn%1:05:00:: 01988203 1 0 -tropical_rain_forest%1:14:00:: 08439369 1 0 -tropical_sore%1:26:00:: 14181187 1 0 -tropical_sprue%1:26:00:: 14400979 1 0 -tropical_year%1:28:00:: 15202806 1 0 -tropical_zone%1:15:00:: 08665281 1 0 -tropically%4:02:00:: 00481528 1 0 -tropicbird%1:05:00:: 02055107 1 0 -tropics%1:15:00:: 08665281 1 0 -tropidoclonion%1:05:00:: 01735898 1 1 -tropidoclonion_lineatum%1:05:00:: 01736032 1 0 -tropism%1:04:00:: 00861611 1 0 -troponomy%1:14:00:: 08464449 1 0 -troponym%1:10:00:: 06304425 1 0 -troponymy%1:14:00:: 08464449 2 0 -troponymy%1:24:00:: 13808868 1 0 -tropopause%1:17:00:: 09462452 1 0 -troposphere%1:17:00:: 09462600 1 0 -trot%1:04:00:: 00294190 1 1 -trot%1:04:02:: 00287561 4 0 -trot%1:10:00:: 06347225 3 0 -trot%1:18:00:: 10731013 2 0 -trot%2:38:00:: 01901447 1 10 -trot%2:38:01:: 01960779 2 2 -trot%2:38:02:: 01901660 3 0 -trot_out%2:39:00:: 02143906 1 1 -troth%1:10:01:: 07228105 2 0 -troth%1:10:02:: 07228211 1 0 -trotline%1:06:00:: 04475900 1 0 -trotsky%1:18:00:: 11349318 1 0 -trotskyism%1:09:00:: 06215977 1 0 -trotskyist%1:18:00:: 10731013 1 0 -trotskyite%1:18:00:: 10731013 1 0 -trotter%1:05:00:: 02388276 2 0 -trotter%1:05:01:: 02439568 1 0 -trotting_horse%1:05:00:: 02388276 1 0 -trou-de-loup%1:06:00:: 04488295 1 0 -troubadour%1:18:00:: 10099093 1 0 -trouble%1:04:02:: 00623862 4 8 -trouble%1:09:00:: 05687338 1 21 -trouble%1:11:00:: 07289014 3 11 -trouble%1:11:01:: 07372565 2 16 -trouble%1:12:03:: 07524242 5 1 -trouble%1:26:02:: 14046751 6 0 -trouble%2:29:00:: 00070816 5 1 -trouble%2:37:00:: 01764171 3 3 -trouble%2:37:01:: 01770501 1 6 -trouble%2:41:00:: 02507736 2 3 -trouble%2:41:01:: 02507464 4 1 -trouble-free%5:00:00:untroubled:00 02459969 1 0 -trouble-shoot%2:30:00:: 00262549 1 0 -trouble_maker%1:18:00:: 10731244 1 0 -trouble_oneself%2:41:00:: 02507464 1 1 -trouble_shooter%1:18:00:: 10731560 1 0 -troubled%3:00:00:: 02455297 1 1 -troubled%5:00:00:unquiet:00 01923720 2 1 -troublemaker%1:18:00:: 10731244 1 0 -troubler%1:18:00:: 10731244 1 0 -troubleshoot%2:30:00:: 00262549 1 0 -troubleshooter%1:18:00:: 10731560 1 1 -troublesome%5:00:00:difficult:00 00748795 1 3 -troublesomeness%1:07:00:: 04711435 1 0 -troubling%5:00:00:heavy:02 01189386 1 0 -troublous%5:00:00:troubled:00 02458973 1 0 -trough%1:06:00:: 03471473 2 1 -trough%1:06:01:: 03717131 6 0 -trough%1:06:02:: 04488427 5 0 -trough%1:17:00:: 09462773 1 4 -trough%1:21:00:: 13357891 4 0 -trough%1:25:00:: 13893694 3 0 -trounce%2:32:00:: 00824767 3 0 -trounce%2:33:00:: 01101913 2 0 -trounce%2:35:00:: 01411085 1 0 -trouncing%1:04:01:: 01160729 2 0 -trouncing%1:11:00:: 07476623 1 0 -troupe%1:14:00:: 08187033 1 2 -trouper%1:18:00:: 09840050 2 0 -trouper%1:18:01:: 10730615 1 0 -trouser%1:06:00:: 04489008 1 3 -trouser%1:06:01:: 04488530 2 0 -trouser_clip%1:06:00:: 02835551 1 0 -trouser_cuff%1:06:00:: 04488742 1 1 -trouser_leg%1:06:00:: 03885293 1 0 -trouser_press%1:06:00:: 04488857 1 0 -trousered%5:00:00:clothed:00 00454984 1 0 -trousering%1:06:00:: 03885194 1 0 -trousseau%1:06:00:: 04489695 1 0 -trout%1:05:00:: 02537085 2 0 -trout%1:13:00:: 07794452 1 0 -trout_lily%1:20:00:: 12450840 1 0 -trove%1:21:00:: 13371355 1 0 -trowel%1:06:00:: 04489817 1 0 -trowel%2:35:00:: 01313113 1 0 -troy%1:15:00:: 08788887 2 0 -troy%1:23:00:: 13716490 1 0 -troy_ounce%1:23:00:: 13722522 1 0 -troy_pound%1:23:00:: 13722757 1 0 -troy_unit%1:23:00:: 13716686 1 0 -troy_weight%1:23:00:: 13716490 1 0 -truancy%1:04:00:: 01234612 1 0 -truant%1:18:00:: 10731732 1 0 -truant%1:18:01:: 10362917 2 0 -truant%5:00:00:absent:00 01848171 1 0 -truce%1:26:00:: 13970912 1 0 -truck%1:06:00:: 04490091 1 20 -truck%1:06:01:: 03490119 2 0 -truck%2:38:00:: 01954341 1 1 -truck_bed%1:06:00:: 04490490 1 2 -truck_dealer%1:14:00:: 08063947 1 0 -truck_driver%1:18:00:: 10695192 1 0 -truck_farm%1:06:00:: 04490614 1 0 -truck_farming%1:04:00:: 01104544 1 0 -truck_garden%1:06:00:: 04490614 1 0 -truck_stop%1:06:00:: 04490730 1 0 -truck_traffic%1:14:00:: 08426378 1 0 -truckage%1:04:00:: 01105909 2 0 -truckage%1:21:00:: 13323885 1 0 -trucker%1:18:00:: 10695192 1 0 -trucking%1:04:00:: 01105909 1 1 -trucking_company%1:14:00:: 08004210 1 0 -trucking_industry%1:14:00:: 08075140 1 0 -trucking_rig%1:06:00:: 04467665 1 0 -truckle%1:06:02:: 04491638 1 0 -truckle%2:32:00:: 00880978 2 0 -truckle%2:42:00:: 02703432 1 0 -truckle_bed%1:06:00:: 04491638 1 0 -truckler%1:18:00:: 09800631 1 0 -truckling%1:04:00:: 01167385 1 0 -truculence%1:07:00:: 04644161 1 1 -truculency%1:07:00:: 04644161 1 0 -truculent%5:00:00:aggressive:00 00084795 1 1 -truculently%4:02:00:: 00481648 2 0 -truculently%4:02:01:: 00481785 1 0 -trudge%1:04:00:: 00289175 1 0 -trudge%2:38:01:: 01921204 1 6 -trudger%1:18:00:: 10731848 1 0 -true%1:07:00:: 05077348 1 0 -true%2:30:00:: 00465291 1 0 -true%3:00:00:: 02460502 1 83 -true%3:00:04:: 01225398 4 0 -true%4:02:00:: 00184284 1 2 -true%5:00:00:accurate:00 00023120 2 3 -true%5:00:00:even:01 00911204 12 0 -true%5:00:00:geographic:00 01470649 9 0 -true%5:00:00:harmonious:00 01163759 11 0 -true%5:00:00:legitimate:00 01407267 10 0 -true%5:00:00:real:02 01938508 8 0 -true%5:00:00:sincere:00 02180277 7 0 -true%5:00:00:trustworthy:00 02465519 6 0 -true%5:00:00:typical:00 02469756 5 0 -true%5:00:02:faithful:00 00959530 3 2 -true-blue%5:00:00:loyal:00 00962476 1 0 -true-false%3:00:00:: 02221017 1 0 -true-to-life%5:00:00:realistic:00 01941383 1 0 -true_anomaly%1:25:00:: 13889066 1 0 -true_bacteria%1:05:00:: 01355326 1 0 -true_bill%1:10:00:: 07235696 1 0 -true_blackberry%1:20:00:: 12654012 1 0 -true_bug%1:05:00:: 02241426 1 0 -true_cat%1:05:00:: 02121620 1 0 -true_cedar%1:20:00:: 11623105 1 0 -true_dwarf%1:18:00:: 10472447 1 0 -true_fir%1:20:00:: 11620673 1 0 -true_flycatcher%1:05:00:: 01555809 1 0 -true_frog%1:05:00:: 01640846 1 0 -true_fungus%1:20:00:: 12995601 1 0 -true_glottis%1:08:00:: 05610198 1 0 -true_guava%1:20:00:: 12333530 1 0 -true_heath%1:20:00:: 12227420 1 0 -true_jasmine%1:20:00:: 12307240 1 0 -true_laurel%1:20:00:: 11704093 1 0 -true_lobster%1:05:00:: 01983048 1 0 -true_lover's_knot%1:06:00:: 03693293 1 0 -true_lover's_knot%1:06:01:: 03350456 2 0 -true_lovers'_knot%1:06:00:: 03693293 1 0 -true_mahogany%1:20:00:: 12699922 1 0 -true_marmoset%1:05:00:: 02490597 1 0 -true_pepper%1:20:00:: 13149296 1 0 -true_pine%1:20:00:: 11608250 1 0 -true_puffball%1:20:00:: 13043926 1 0 -true_rib%1:08:00:: 05591999 1 0 -true_sago_palm%1:20:00:: 12591702 1 0 -true_sandalwood%1:20:00:: 12735160 1 0 -true_seal%1:05:00:: 02079389 1 0 -true_senna%1:20:00:: 12499979 1 0 -true_slime_mold%1:20:00:: 12975804 1 0 -true_sparrow%1:05:00:: 01539573 1 0 -true_statement%1:10:00:: 06724066 1 0 -true_to%5:00:00:faithful:01 00960856 1 0 -true_to_life%5:00:00:realistic:00 01941383 1 0 -true_toad%1:05:00:: 01645776 1 0 -true_tulipwood%1:20:00:: 11712621 1 0 -true_up%2:30:00:: 00465291 1 0 -true_vampire_bat%1:05:00:: 02150482 1 0 -true_vocal_cord%1:08:00:: 05530871 1 0 -true_vocal_fold%1:08:00:: 05530871 1 0 -true_warbler%1:05:00:: 01564394 1 0 -truehearted%5:00:00:faithful:00 00959244 1 0 -truelove%1:18:00:: 10682953 1 0 -truelove_knot%1:06:00:: 03350456 1 0 -trueness%1:07:00:: 04804169 3 0 -trueness%1:07:01:: 04877530 2 0 -trueness%1:26:00:: 13956488 1 0 -truffaut%1:18:00:: 11349635 1 0 -truffle%1:13:00:: 07736971 2 0 -truffle%1:13:02:: 07609632 3 0 -truffle%1:20:00:: 12985420 1 0 -truism%1:10:00:: 07154243 1 0 -truly%4:02:00:: 00037226 1 20 -truly%4:02:01:: 00223000 2 1 -truly%4:02:03:: 00378365 3 0 -truly%4:02:04:: 00038013 4 0 -truman%1:18:00:: 11349739 1 0 -truman_doctrine%1:10:00:: 06662522 1 0 -trumbo%1:18:00:: 11350059 1 0 -trumbull%1:18:00:: 11350286 3 0 -trumbull%1:18:01:: 11350393 2 0 -trumbull%1:18:02:: 11350514 1 0 -trump%1:06:00:: 04491135 1 0 -trump%1:06:01:: 03110669 3 0 -trump%1:06:02:: 04490859 2 0 -trump%2:32:00:: 00975202 4 0 -trump%2:33:00:: 01109259 2 0 -trump%2:33:01:: 01078235 3 0 -trump%2:39:00:: 02179154 1 0 -trump_card%1:06:00:: 04491135 1 0 -trump_out%2:32:00:: 00975202 1 0 -trump_up%2:36:00:: 01635056 1 1 -trumped-up%5:00:00:false:00 02462375 1 0 -trumpery%1:06:00:: 03376438 2 0 -trumpery%1:10:00:: 06611998 1 0 -trumpet%1:06:00:: 03110669 1 1 -trumpet%2:32:00:: 00977871 1 1 -trumpet%2:32:02:: 00857784 3 0 -trumpet%2:36:00:: 01733829 2 0 -trumpet-like%5:00:00:loud:00 01454402 1 0 -trumpet-shaped%5:00:00:formed:00 02150842 1 0 -trumpet-wood%1:20:00:: 12404729 1 0 -trumpet_arch%1:06:00:: 04491312 1 0 -trumpet_creeper%1:20:00:: 12814235 1 0 -trumpet_flower%1:20:01:: 12814003 2 0 -trumpet_flower%1:20:02:: 12913791 1 0 -trumpet_flower%1:20:03:: 12676703 3 0 -trumpet_honeysuckle%1:20:00:: 12676703 1 0 -trumpet_section%1:14:00:: 08217738 1 0 -trumpet_tree%1:20:00:: 12404729 1 0 -trumpet_vine%1:20:01:: 12814235 1 2 -trumpet_vine%1:20:02:: 12676703 2 0 -trumpet_weed%1:20:00:: 11969166 1 0 -trumpeter%1:05:01:: 02021050 3 0 -trumpeter%1:05:02:: 01860002 4 0 -trumpeter%1:18:00:: 10732010 1 1 -trumpeter%1:18:01:: 10171219 2 0 -trumpeter_swan%1:05:00:: 01860002 1 0 -trumpetfish%1:05:00:: 01457852 1 0 -trumpets%1:20:00:: 12780563 1 0 -trumpetwood%1:20:00:: 12404729 1 0 -trumping%1:04:00:: 01259380 1 0 -truncate%2:30:00:: 00317241 3 0 -truncate%2:31:00:: 00740290 2 0 -truncate%2:40:00:: 02258487 1 0 -truncate%5:00:01:short:01 01437752 1 0 -truncated%5:00:00:short:01 01437752 2 0 -truncated%5:00:00:short:02 01442597 1 0 -truncated_cone%1:25:00:: 13917785 1 0 -truncated_pyramid%1:25:00:: 13917690 1 0 -truncation%1:04:00:: 00370261 3 0 -truncation%1:04:01:: 00942574 2 0 -truncation%1:07:00:: 05137938 1 0 -truncation_error%1:04:00:: 00073525 1 0 -truncheon%1:06:00:: 04491388 1 0 -truncocolumella%1:20:00:: 12971956 1 0 -truncocolumella_citrina%1:20:00:: 12972136 1 0 -truncus_atrioventricularis%1:08:00:: 05390479 1 0 -truncus_celiacus%1:08:00:: 05340317 1 0 -truncus_pulmonalis%1:08:00:: 05354026 1 0 -trundle%1:06:00:: 04491545 2 0 -trundle%1:06:02:: 04491638 1 0 -trundle%2:38:00:: 01868139 1 3 -trundle_bed%1:06:00:: 04491638 1 0 -trunk%1:05:01:: 02452967 5 0 -trunk%1:06:00:: 04491769 2 3 -trunk%1:06:01:: 03696065 4 0 -trunk%1:08:00:: 05549830 3 0 -trunk%1:20:00:: 13165815 1 3 -trunk_call%1:10:00:: 06274092 1 0 -trunk_hose%1:06:00:: 04491934 1 0 -trunk_lid%1:06:00:: 04492060 1 0 -trunk_line%1:06:00:: 04492157 2 0 -trunk_line%1:06:01:: 04492264 1 0 -trunk_road%1:06:00:: 03519578 1 0 -trunk_route%1:06:00:: 04492264 1 0 -trunkfish%1:05:00:: 02654425 1 0 -trunks%1:06:00:: 04205318 1 0 -trunnel%1:06:00:: 04478066 1 0 -truss%1:06:00:: 04492375 2 0 -truss%1:06:01:: 04492585 1 0 -truss%1:06:02:: 03105467 3 0 -truss%2:35:00:: 01219397 3 0 -truss%2:35:01:: 01287797 1 0 -truss%2:35:02:: 01286913 2 0 -truss_bridge%1:06:00:: 04492749 1 0 -trussed%5:00:00:bound:01 00253869 1 0 -trust%1:07:00:: 04895246 3 3 -trust%1:09:00:: 05697976 2 3 -trust%1:09:01:: 05943066 5 1 -trust%1:14:00:: 08236621 4 1 -trust%1:21:03:: 13360498 1 4 -trust%1:26:00:: 13929852 6 0 -trust%2:31:00:: 00688377 1 16 -trust%2:31:02:: 00721098 3 4 -trust%2:37:00:: 01826723 4 2 -trust%2:40:00:: 02349212 5 1 -trust%2:40:01:: 02265726 6 0 -trust%2:41:00:: 02481819 2 5 -trust_account%1:21:00:: 13363365 1 0 -trust_busting%1:04:00:: 01126335 1 0 -trust_company%1:14:00:: 08424222 1 0 -trust_corporation%1:14:00:: 08424222 1 0 -trust_deed%1:10:00:: 06546408 1 0 -trust_fund%1:21:00:: 13363893 1 0 -trust_territory%1:15:00:: 08675795 1 0 -trustbuster%1:18:00:: 10732212 1 0 -trusted%5:00:00:trustworthy:00 02465978 1 1 -trustee%1:18:00:: 10732314 1 6 -trustee%1:18:01:: 10516294 2 1 -trustee-beneficiary_relation%1:24:00:: 13840231 1 0 -trustee_account%1:21:00:: 13363365 1 0 -trusteeship%1:04:00:: 00605430 2 0 -trusteeship%1:15:00:: 08675795 1 0 -trusteeship_council%1:14:00:: 08296500 1 0 -truster%1:18:00:: 09848489 1 0 -trustful%3:00:00:: 02462619 1 0 -trustfully%4:02:00:: 00320568 1 1 -trustfully%4:02:02:: 00206035 2 0 -trustfulness%1:07:00:: 04895246 1 0 -trustiness%1:07:00:: 04668819 1 0 -trusting%3:00:02:: 02462619 1 0 -trustingly%4:02:00:: 00320568 1 0 -trustingness%1:07:00:: 04895246 1 0 -trustor%1:18:00:: 10584021 1 0 -trustworthiness%1:07:00:: 04668819 1 0 -trustworthy%3:00:00:: 02464693 1 1 -trustworthy%5:00:00:responsible:00 01997748 2 1 -trusty%1:18:00:: 10732521 1 0 -trusty%3:00:00:: 02464693 1 0 -truth%1:07:01:: 04802907 4 3 -truth%1:09:00:: 05819453 1 17 -truth%1:10:00:: 06724066 3 6 -truth%1:18:00:: 11350705 5 0 -truth%1:26:00:: 13956488 2 7 -truth_drug%1:06:00:: 04492856 1 0 -truth_quark%1:17:00:: 09459812 1 0 -truth_serum%1:06:00:: 04492856 1 0 -truthful%3:00:00:: 01225398 1 1 -truthful%5:00:00:true:00 02461438 2 1 -truthfully%4:02:01:: 00400192 1 0 -truthfulness%1:07:00:: 04872236 1 1 -try%1:04:00:: 00786195 1 5 -try%2:29:00:: 00047317 9 0 -try%2:30:00:: 00444975 8 0 -try%2:34:00:: 01195299 4 2 -try%2:37:00:: 01798452 7 0 -try%2:37:01:: 01798782 6 0 -try%2:41:00:: 02530167 1 342 -try%2:41:01:: 02531625 2 16 -try%2:41:05:: 02500902 5 0 -try%2:41:06:: 02501278 3 4 -try-on%1:04:00:: 00795008 1 0 -try_for%2:33:00:: 01072807 1 1 -try_on%2:29:00:: 00047317 1 1 -try_out%2:34:00:: 01195299 4 0 -try_out%2:36:00:: 01718535 3 0 -try_out%2:41:00:: 02531625 1 8 -try_out%2:41:05:: 02532886 2 0 -try_square%1:06:00:: 04493109 1 0 -trygve_halvden_lie%1:18:00:: 11131808 1 0 -trygve_lie%1:18:00:: 11131808 1 0 -trying%5:00:00:difficult:00 00748947 1 2 -trying%5:00:00:disagreeable:00 00090408 2 0 -trying_on%1:04:00:: 00795008 1 0 -tryout%1:04:00:: 00794614 2 0 -tryout%1:09:00:: 05799212 1 0 -trypetidae%1:05:00:: 02196542 1 0 -trypsin%1:27:00:: 15081052 1 0 -trypsinogen%1:27:00:: 15081221 1 0 -tryptophan%1:27:00:: 15081417 1 0 -tryptophane%1:27:00:: 15081417 1 0 -tryst%1:04:00:: 01231435 2 0 -tryst%1:14:00:: 08385717 1 0 -tsa%1:14:00:: 08144308 1 0 -tsar%1:18:00:: 09987239 1 0 -tsarina%1:18:00:: 09987573 1 0 -tsarist%3:01:00:: 02710043 1 0 -tsaristic%3:01:00:: 02710043 1 0 -tsaritsa%1:18:00:: 09987573 1 0 -tsaritsyn%1:15:00:: 09010085 1 0 -tsatske%1:06:00:: 02998696 2 0 -tsatske%1:18:00:: 09905530 1 0 -tsetse%1:05:00:: 02191273 1 0 -tsetse_fly%1:05:00:: 02191273 1 0 -tsh%1:27:00:: 15073973 1 19 -tshatshke%1:06:00:: 02998696 2 0 -tshatshke%1:18:00:: 09905530 1 0 -tshiluba%1:10:00:: 06993870 1 0 -tsimshian%1:10:00:: 06925644 2 0 -tsimshian%1:18:00:: 09670772 1 0 -tsine%1:05:00:: 02405440 1 0 -tsk%2:32:00:: 00951911 1 0 -tsoris%1:12:00:: 07497019 1 0 -tsouic%1:10:00:: 06940969 1 0 -tss%1:26:00:: 14470144 1 0 -tsuga%1:20:00:: 11627028 1 0 -tsuga_canadensis%1:20:00:: 11627512 1 0 -tsuga_caroliniana%1:20:00:: 11627714 1 0 -tsuga_heterophylla%1:20:00:: 11628087 1 0 -tsuga_mertensiana%1:20:00:: 11627908 1 0 -tsunami%1:11:00:: 07349299 1 22 -tsung_dao_lee%1:18:00:: 11124088 1 0 -tsuris%1:04:00:: 00624285 1 0 -tsushima%1:04:00:: 01298162 1 0 -tsutsugamushi_disease%1:26:00:: 14142326 1 0 -tswana%1:10:00:: 06995664 2 0 -tswana%1:18:00:: 09693618 1 0 -tt%1:15:00:: 08837048 3 0 -tt%1:15:01:: 08978161 2 0 -tt%1:28:00:: 15156746 1 0 -tuamotu_archipelago%1:15:00:: 08990522 1 0 -tuareg%1:10:00:: 06990741 2 0 -tuareg%1:18:00:: 09734639 1 0 -tuatara%1:05:00:: 01673282 1 0 -tuatha_de%1:18:00:: 09510746 1 0 -tuatha_de_danann%1:18:00:: 09510746 1 0 -tub%1:06:00:: 04493381 2 1 -tub%1:06:01:: 02808440 1 7 -tub%1:23:00:: 13770926 3 0 -tub-cart%1:06:00:: 03981924 1 0 -tub-thumper%1:18:00:: 10732644 1 0 -tub_gurnard%1:05:00:: 02650413 1 0 -tuba%1:06:00:: 02804252 1 0 -tuba_root%1:20:00:: 12525753 1 0 -tubal%3:01:00:: 02896497 1 0 -tubal_ligation%1:04:00:: 00148446 1 0 -tubal_pregnancy%1:26:00:: 14047641 1 0 -tubbiness%1:07:00:: 05001089 1 0 -tubby%5:00:00:fat:01 00987510 1 0 -tube%1:06:00:: 04493505 1 26 -tube%1:06:01:: 03757138 5 0 -tube%1:06:02:: 04494204 2 7 -tube%1:08:00:: 05246511 4 0 -tube%1:25:00:: 13901321 3 1 -tube%2:35:00:: 01580928 4 0 -tube%2:38:00:: 02079525 2 0 -tube%2:38:02:: 01840929 3 0 -tube%2:40:00:: 02329292 1 0 -tube-nosed%5:00:00:nosed:00 01607831 1 0 -tube-nosed_bat%1:05:00:: 02140491 1 0 -tube-nosed_fruit_bat%1:05:00:: 02140491 1 1 -tube-shaped%5:00:00:hollow:00 02264807 1 0 -tube-shaped_structure%1:08:00:: 05246511 1 0 -tube_foot%1:05:00:: 02322387 1 0 -tube_well%1:06:00:: 03243903 1 0 -tube_wrench%1:06:00:: 03947466 1 0 -tubed%3:00:00:: 02466916 1 0 -tubeless%1:06:00:: 04494762 1 0 -tubeless%3:00:00:: 02466999 1 0 -tubeless_tire%1:06:00:: 04494762 1 0 -tubelike%5:00:00:hollow:00 02264807 1 0 -tuber%1:20:00:: 13128365 1 0 -tuber%1:20:01:: 12985236 2 0 -tuber_root%1:20:00:: 13235503 1 0 -tuberaceae%1:20:00:: 12985010 1 0 -tuberales%1:20:00:: 12984802 1 0 -tubercle%1:08:02:: 05542686 3 0 -tubercle%1:20:00:: 13088989 2 0 -tubercle%1:26:00:: 14211440 1 0 -tubercle_bacillus%1:05:00:: 01377278 1 0 -tubercular%1:18:00:: 09960001 1 0 -tubercular%3:01:00:: 02818600 3 0 -tubercular%3:01:01:: 02818751 2 0 -tubercular%3:01:02:: 02818958 1 0 -tubercular%5:00:00:ill:01 02546854 4 0 -tubercularia%1:20:00:: 13081565 1 0 -tuberculariaceae%1:20:00:: 13081369 1 0 -tuberculate%3:01:00:: 02819139 1 0 -tuberculin%1:27:00:: 15111903 1 0 -tuberculin_skin_test%1:09:00:: 05745907 1 0 -tuberculin_test%1:09:00:: 05745907 1 0 -tuberculoid%3:01:00:: 02819219 1 0 -tuberculoid_leprosy%1:26:00:: 14136544 1 0 -tuberculosis%1:26:00:: 14143415 1 4 -tuberculous%5:00:00:ill:01 02546854 1 0 -tuberose%1:20:00:: 12480456 1 0 -tuberosity%1:08:00:: 05542686 1 0 -tuberous%3:01:00:: 03026095 1 0 -tuberous_begonia%1:20:00:: 12360684 1 0 -tuberous_plant%1:20:00:: 13128278 1 0 -tuberous_vetch%1:20:00:: 12542240 1 0 -tubful%1:23:00:: 13770926 1 0 -tubing%1:06:00:: 04493505 1 4 -tubman%1:18:00:: 11350959 1 0 -tubocurarine%1:27:00:: 15111609 1 0 -tubuai_islands%1:15:00:: 08990701 1 0 -tubular%5:00:00:hollow:00 02264807 1 1 -tubular_cavity%1:08:00:: 05548726 1 0 -tubule%1:08:00:: 05246796 1 1 -tubulidentata%1:05:00:: 02082358 1 0 -tucana%1:17:00:: 09462924 1 0 -tuchman%1:18:00:: 11351212 1 0 -tuck%1:06:00:: 04494906 3 0 -tuck%1:06:01:: 04054361 4 0 -tuck%1:07:00:: 05083687 2 0 -tuck%1:13:00:: 07556872 1 0 -tuck%2:35:00:: 01389776 1 8 -tuck%2:35:01:: 01390327 2 0 -tuck%2:35:03:: 01330822 3 0 -tuck_away%2:34:00:: 01173208 1 0 -tuck_box%1:06:00:: 04495051 1 0 -tuck_in%2:34:00:: 01173208 1 0 -tuck_shop%1:06:00:: 04495450 1 0 -tuckahoe%1:20:00:: 11790936 1 0 -tucked%3:00:00:: 02467108 1 0 -tucker%1:06:00:: 04495183 4 0 -tucker%1:18:00:: 10732748 3 0 -tucker%1:18:01:: 11351347 2 0 -tucker%1:18:02:: 11351529 1 0 -tucker%2:29:00:: 00075421 1 0 -tucker-bag%1:06:00:: 04495310 1 0 -tucker_out%2:29:00:: 00075421 1 0 -tucket%1:10:00:: 06856884 1 0 -tucson%1:15:00:: 09058841 1 0 -tudor%1:14:00:: 08159031 1 2 -tudor%1:18:00:: 11351677 2 0 -tudor%1:18:01:: 10732854 3 0 -tudor%3:01:00:: 03027040 1 1 -tudor_arch%1:06:00:: 04495555 1 0 -tudor_architecture%1:09:00:: 05843513 1 0 -tudung%1:06:00:: 04495698 1 0 -tues%1:28:00:: 15164105 1 0 -tuesday%1:28:00:: 15164105 1 12 -tufa%1:27:00:: 14931323 1 0 -tufa%1:27:01:: 14931212 2 0 -tuff%1:27:00:: 14931212 1 0 -tuffet%1:06:00:: 03380724 1 0 -tuft%1:05:00:: 01325775 2 0 -tuft%1:14:00:: 07960769 1 1 -tufted%5:00:00:adorned:00 00060294 2 0 -tufted%5:00:00:ungregarious:01 02253817 1 0 -tufted%5:00:01:adorned:00 00057992 3 0 -tufted_centaury%1:20:00:: 12291292 1 0 -tufted_gentian%1:20:00:: 12297507 1 0 -tufted_pansy%1:20:00:: 12388989 1 0 -tufted_puffin%1:05:00:: 02048353 1 0 -tufted_titmouse%1:05:00:: 01592387 1 0 -tufted_vetch%1:20:00:: 12575812 1 0 -tug%1:04:00:: 00115500 1 1 -tug%1:06:00:: 04495843 2 0 -tug%2:33:00:: 01091298 7 0 -tug%2:35:00:: 01452918 1 7 -tug%2:35:01:: 01453109 6 0 -tug%2:35:02:: 01453256 5 0 -tug%2:35:03:: 01454246 4 0 -tug%2:35:04:: 01454636 3 0 -tug%2:41:00:: 02406916 2 0 -tug-of-war%1:04:00:: 01167847 1 2 -tug-of-war%1:11:00:: 07472168 2 0 -tugboat%1:06:00:: 04495843 1 0 -tugela%1:17:00:: 09463078 1 0 -tugela_falls%1:17:00:: 09463078 1 0 -tugger%1:18:00:: 10492202 1 0 -tughrik%1:23:00:: 13708631 1 0 -tugrik%1:23:00:: 13708631 1 0 -tuileries%1:06:00:: 04496035 2 0 -tuileries%1:06:01:: 04496173 1 0 -tuileries_gardens%1:06:00:: 04496035 1 0 -tuileries_palace%1:06:00:: 04496173 1 0 -tuille%1:06:00:: 04496404 1 0 -tuition%1:04:00:: 00889294 2 0 -tuition%1:21:00:: 13323988 1 2 -tuition_fee%1:21:00:: 13323988 1 0 -tularaemia%1:26:00:: 14276360 1 0 -tularemia%1:26:00:: 14276360 1 2 -tule_tree%1:20:00:: 11642622 1 0 -tulestoma%1:20:00:: 12970560 1 0 -tulip%1:20:00:: 12454159 1 1 -tulip_bed%1:06:00:: 04496519 1 0 -tulip_gentian%1:20:00:: 12291959 1 0 -tulip_orchid%1:20:00:: 12061104 1 0 -tulip_poplar%1:20:00:: 11712282 1 0 -tulip_tree%1:20:00:: 11712282 1 1 -tulipa%1:20:00:: 12454021 1 0 -tulipa_armena%1:20:00:: 12454436 1 0 -tulipa_clusiana%1:20:00:: 12454556 1 0 -tulipa_gesneriana%1:20:00:: 12454705 1 0 -tulipa_suaveolens%1:20:00:: 12454436 1 0 -tulipwood%1:20:00:: 11712621 2 0 -tulipwood%1:20:02:: 12188484 1 0 -tulipwood_tree%1:20:00:: 12188289 1 0 -tulle%1:06:00:: 04496614 1 0 -tully%1:18:00:: 10897946 1 0 -tulostoma%1:20:00:: 12970560 1 0 -tulostomaceae%1:20:00:: 12970379 1 0 -tulostomataceae%1:20:00:: 12970379 1 0 -tulostomatales%1:20:00:: 13041548 1 0 -tulsa%1:15:00:: 09132778 1 0 -tulu%1:10:00:: 06980085 2 0 -tulu%1:18:00:: 09675799 1 0 -tum%1:08:00:: 05395690 1 0 -tumble%1:04:00:: 00437788 1 1 -tumble%1:04:01:: 00076884 2 0 -tumble%2:29:00:: 00100235 11 0 -tumble%2:30:00:: 00433069 8 0 -tumble%2:30:01:: 00204281 10 0 -tumble%2:30:03:: 00211642 9 0 -tumble%2:31:00:: 00590366 7 0 -tumble%2:35:00:: 01473020 6 0 -tumble%2:38:00:: 01976488 1 10 -tumble%2:38:03:: 02041877 5 1 -tumble%2:38:04:: 01867997 3 2 -tumble%2:38:06:: 02097047 2 2 -tumble%2:38:07:: 02047857 4 1 -tumble-down%5:00:00:damaged:00 00679717 1 0 -tumble-dryer%1:06:00:: 04496726 1 0 -tumble_drier%1:06:00:: 04496726 1 0 -tumble_dry%2:30:00:: 00215491 1 0 -tumble_grass%1:20:00:: 12127237 1 0 -tumblebug%1:05:00:: 02172678 1 0 -tumbler%1:05:00:: 01814755 4 0 -tumbler%1:06:00:: 04496872 2 1 -tumbler%1:06:01:: 04497005 3 0 -tumbler%1:18:00:: 10732967 1 1 -tumbler_pigeon%1:05:00:: 01814755 1 0 -tumbleweed%1:20:00:: 12554911 1 0 -tumbleweed%1:20:01:: 11833373 3 0 -tumbleweed%1:20:02:: 11823436 4 0 -tumbleweed%1:20:03:: 11834890 2 0 -tumbling%1:04:00:: 00434075 1 1 -tumbrel%1:06:00:: 04497249 1 0 -tumbril%1:06:00:: 04497249 1 0 -tumefaction%1:22:00:: 13570574 1 0 -tumefy%2:30:00:: 00256507 2 0 -tumefy%2:30:01:: 00257837 1 0 -tumesce%2:30:00:: 00256507 1 0 -tumescence%1:26:00:: 14318210 1 0 -tumescent%5:00:00:unhealthy:00 01174565 1 0 -tumid%5:00:00:hard:01 01151592 3 0 -tumid%5:00:00:rhetorical:00 02016881 1 0 -tumid%5:00:00:unhealthy:00 01174565 2 0 -tumidity%1:26:00:: 14318360 1 0 -tumidness%1:26:00:: 14318360 1 0 -tummy%1:08:00:: 05395690 2 0 -tummy%1:08:01:: 05556071 1 0 -tummy_crunch%1:04:00:: 00630634 1 0 -tummy_tuck%1:04:00:: 00034777 1 0 -tumor%1:26:00:: 14235200 1 18 -tumor_necrosis_factor%1:27:00:: 14737365 1 0 -tumor_suppressor_gene%1:08:00:: 05441806 1 0 -tumor_virus%1:05:00:: 01371777 1 0 -tumour%1:26:00:: 14235200 1 1 -tumour_necrosis_factor%1:27:00:: 14737365 1 0 -tump_over%2:38:00:: 01909978 1 0 -tump_over%2:38:01:: 01909397 2 0 -tums%1:27:00:: 14777939 1 0 -tumult%1:04:00:: 00553823 3 0 -tumult%1:12:00:: 07514520 2 0 -tumult%1:26:00:: 13978709 1 3 -tumultuous%5:00:00:unquiet:00 01923720 1 1 -tumultuous_disturbance%1:04:00:: 00554433 1 0 -tumultuously%4:02:00:: 00481933 1 0 -tumultuousness%1:26:00:: 13978709 1 0 -tumulus%1:06:00:: 02922292 1 0 -tun%1:06:00:: 04497442 1 0 -tuna%1:05:01:: 02626762 3 0 -tuna%1:05:03:: 02527057 4 0 -tuna%1:13:00:: 07780627 2 0 -tuna%1:20:00:: 11852148 1 0 -tuna_fish%1:13:00:: 07780627 1 0 -tuna_fish_salad%1:13:00:: 07808352 1 0 -tuna_oil%1:27:00:: 15081595 1 0 -tuna_salad%1:13:00:: 07808352 1 0 -tunaburger%1:13:00:: 07697408 1 0 -tundra%1:17:00:: 09463226 1 0 -tundra_soil%1:27:00:: 15081675 1 0 -tundra_swan%1:05:00:: 01859496 1 0 -tune%1:04:00:: 01000843 3 0 -tune%1:07:00:: 04987169 2 0 -tune%1:10:00:: 07028373 1 12 -tune%2:30:00:: 00295346 2 0 -tune%2:30:01:: 00295966 1 1 -tune-up%1:04:00:: 01000969 2 0 -tune-up%1:04:01:: 01144716 1 0 -tune_in%2:39:00:: 02171514 1 1 -tune_up%2:30:00:: 00295346 2 0 -tune_up%2:30:01:: 00295966 1 0 -tuneful%3:00:00:: 01502195 1 1 -tunefully%4:02:00:: 00398955 1 0 -tunefulness%1:07:00:: 04983848 1 0 -tuneless%3:00:00:: 01502383 1 0 -tunelessly%4:02:00:: 00507219 1 1 -tuner%1:06:00:: 04043733 2 0 -tuner%1:18:00:: 10733117 1 0 -tung%1:20:00:: 12927758 1 0 -tung-oil_tree%1:20:00:: 12927758 1 0 -tung_oil%1:27:00:: 15086545 1 0 -tung_tree%1:20:00:: 12927758 1 0 -tunga%1:05:00:: 02187427 1 0 -tunga_penetrans%1:05:00:: 02187554 1 0 -tungstate%1:27:00:: 15081957 1 0 -tungsten%1:27:00:: 14659512 1 2 -tungsten_steel%1:27:00:: 15081828 1 0 -tungstic_acid%1:27:00:: 15082036 1 0 -tungus%1:10:00:: 06928610 2 0 -tungus%1:18:00:: 09737453 1 0 -tungusic%1:10:00:: 06928430 2 0 -tungusic%1:18:00:: 09737297 1 0 -tungusic_language%1:10:00:: 06928430 1 0 -tunguska%1:17:00:: 09197432 3 0 -tunguska%1:17:01:: 09463362 2 0 -tunguska%1:17:02:: 09463547 1 0 -tunguz%1:10:00:: 06928610 1 0 -tunic%1:06:00:: 04497570 2 0 -tunic%1:08:00:: 05606633 1 0 -tunica%1:08:00:: 05606633 1 0 -tunica_albuginea_testes%1:08:00:: 05606429 1 0 -tunica_conjunctiva_bulbi%1:08:00:: 05315382 1 0 -tunica_conjunctiva_palpebrarum%1:08:00:: 05315612 1 0 -tunicata%1:05:00:: 01467986 1 0 -tunicate%1:05:00:: 01468238 1 0 -tuning%1:04:00:: 00999588 1 3 -tuning_fork%1:06:00:: 04497801 1 0 -tunis%1:15:00:: 09037838 1 0 -tunisia%1:15:00:: 09037394 1 1 -tunisian%1:18:00:: 09734760 1 0 -tunisian%3:01:01:: 03127030 2 0 -tunisian%3:01:02:: 03127197 1 0 -tunisian_dinar%1:23:00:: 13670668 1 0 -tunisian_dirham%1:23:00:: 13670790 1 0 -tunisian_monetary_unit%1:23:00:: 13670521 1 0 -tunker%1:18:00:: 09677830 1 0 -tunnage%1:21:00:: 13317269 1 0 -tunnel%1:06:00:: 04497962 1 1 -tunnel%1:17:00:: 09230041 2 0 -tunnel%2:35:00:: 01444037 2 1 -tunnel%2:38:00:: 02042067 1 1 -tunnel_vision%1:26:00:: 14557091 1 0 -tunney%1:18:00:: 11351832 1 0 -tunny%1:05:00:: 02626762 2 0 -tunny%1:13:00:: 07780627 1 0 -tup%1:05:00:: 02412080 1 0 -tupac_amaru_revolutionary_movement%1:14:00:: 08045681 1 0 -tupac_katari_guerrilla_army%1:14:00:: 08046032 1 0 -tupaia%1:05:00:: 02495099 1 0 -tupaiidae%1:05:00:: 02494866 1 0 -tupek%1:06:00:: 04498275 1 0 -tupelo%1:15:00:: 09105390 3 0 -tupelo%1:20:00:: 12340383 2 0 -tupelo%1:20:02:: 12340998 1 0 -tupelo_family%1:20:00:: 12339972 1 0 -tupelo_tree%1:20:00:: 12340383 1 0 -tupi%1:10:00:: 06917497 2 0 -tupi%1:18:00:: 09695132 1 0 -tupi-guarani%1:10:00:: 06917602 1 0 -tupi-guarani_language%1:10:00:: 06917602 1 0 -tupik%1:06:00:: 04498275 1 0 -tupinambis%1:05:00:: 01687009 1 0 -tuppence%1:21:00:: 13390963 1 0 -tuppeny%5:00:00:cheap:00 00935359 1 0 -tupungatito%1:15:00:: 09177249 1 0 -tupungato%1:17:00:: 09463721 1 0 -turaco%1:05:00:: 01825278 1 0 -turacou%1:05:00:: 01825278 1 0 -turakoo%1:05:00:: 01825278 1 0 -turban%1:06:00:: 04498389 1 2 -turban%1:06:01:: 03937835 2 0 -turban_squash%1:13:00:: 07717858 2 0 -turban_squash%1:20:00:: 12161285 1 0 -turbaned%5:00:00:hatted:00 01428767 1 0 -turbatrix%1:05:00:: 01931984 1 0 -turbatrix_aceti%1:05:00:: 01932151 1 0 -turbellaria%1:05:00:: 01925133 1 0 -turbid%5:00:00:opaque:00 00433529 1 0 -turbidity%1:07:00:: 04703932 1 0 -turbidness%1:07:00:: 04703932 1 0 -turbinal%1:08:00:: 05283816 1 0 -turbinate%1:08:00:: 05283816 1 1 -turbinate%3:01:00:: 02819346 1 0 -turbinate%5:00:00:coiled:00 02317598 2 0 -turbinate_bone%1:08:00:: 05283816 1 0 -turbine%1:06:00:: 04498523 1 3 -turbo-propeller_plane%1:06:00:: 04012482 1 0 -turbofan%1:06:00:: 03321103 2 0 -turbofan%1:06:01:: 03321419 1 0 -turbofan_engine%1:06:00:: 03321103 1 1 -turbogenerator%1:06:00:: 04498873 1 0 -turbojet%1:06:00:: 03321103 2 0 -turbojet%1:06:01:: 03321419 1 0 -turbojet_engine%1:06:00:: 03321103 1 0 -turboprop%1:06:00:: 04012482 1 0 -turbot%1:05:00:: 02663211 2 0 -turbot%1:13:00:: 07791039 1 0 -turbulence%1:19:00:: 11520989 1 1 -turbulence%1:26:00:: 13979173 3 0 -turbulence%1:26:01:: 14524383 2 0 -turbulency%1:19:00:: 11520989 1 0 -turbulent%5:00:00:agitated:02 00087597 2 1 -turbulent%5:00:00:unquiet:00 01923720 1 1 -turbulent_flow%1:19:00:: 11521267 1 0 -turbulently%4:02:00:: 00482100 1 0 -turbulently%4:02:01:: 00034945 2 0 -turcoman%1:10:00:: 06926889 2 0 -turcoman%1:18:00:: 09736485 1 0 -turd%1:27:00:: 14854581 1 0 -turdidae%1:05:00:: 01556671 1 0 -turdinae%1:05:00:: 01557028 1 0 -turdus%1:05:00:: 01557697 1 0 -turdus_greyi%1:05:00:: 01559160 1 0 -turdus_iliacus%1:05:00:: 01558461 1 0 -turdus_merula%1:05:00:: 01558594 1 0 -turdus_migratorius%1:05:00:: 01558993 1 0 -turdus_philomelos%1:05:00:: 01558149 1 0 -turdus_pilaris%1:05:00:: 01558307 1 0 -turdus_torquatus%1:05:00:: 01558765 1 0 -turdus_viscivorus%1:05:00:: 01557962 1 0 -tureen%1:06:00:: 04499062 1 0 -turf%1:15:01:: 08590719 3 0 -turf%1:15:02:: 08689771 2 0 -turf%1:17:00:: 09463919 1 1 -turf%2:35:00:: 01234500 1 0 -turf_out%2:35:00:: 01468576 1 0 -turf_war%1:04:00:: 01167952 1 0 -turfan%1:10:00:: 06968909 1 0 -turfan_dialect%1:10:00:: 06968909 1 0 -turfing_daisy%1:20:01:: 12028818 2 0 -turfing_daisy%1:20:02:: 12029039 1 0 -turgenev%1:18:00:: 11352035 1 0 -turgid%5:00:00:rhetorical:00 02016881 1 0 -turgid%5:00:00:unhealthy:00 01174565 2 0 -turgidity%1:10:00:: 07090573 1 0 -turgidly%4:02:00:: 00269726 1 0 -turgidness%1:10:00:: 07090573 1 0 -turgor%1:26:00:: 14568762 1 0 -turgot%1:18:00:: 11352192 1 0 -turin%1:15:00:: 08810220 1 0 -turing%1:18:00:: 11352498 1 0 -turing_machine%1:06:00:: 04499180 1 0 -turk%1:18:00:: 09734885 1 0 -turk's-cap%1:20:01:: 12428747 1 0 -turk's-cap%1:20:02:: 12428076 2 0 -turk's_cap-lily%1:20:00:: 12428747 1 0 -turk's_head%1:06:00:: 04499554 1 0 -turkestan%1:15:00:: 08724545 1 0 -turkestan_desert%1:15:00:: 09170475 1 0 -turkey%1:05:00:: 01794158 1 2 -turkey%1:11:00:: 07365193 5 0 -turkey%1:13:00:: 07647731 4 0 -turkey%1:15:00:: 09039411 2 1 -turkey%1:18:00:: 10224295 3 0 -turkey-sized%5:00:00:sized:00 02224879 1 0 -turkey_buzzard%1:05:00:: 01619310 1 0 -turkey_cock%1:05:00:: 01794344 1 1 -turkey_drumstick%1:13:00:: 07648036 1 0 -turkey_leg%1:13:00:: 07648036 1 0 -turkey_oak%1:20:01:: 12271933 3 0 -turkey_oak%1:20:02:: 12273515 1 0 -turkey_oak%1:20:03:: 12273114 2 0 -turkey_oak%1:20:04:: 12270741 4 0 -turkey_red%1:07:00:: 04963307 1 0 -turkey_stew%1:13:00:: 07592400 1 0 -turkey_stuffing%1:13:00:: 07678953 1 0 -turkey_trot%1:04:00:: 00535873 1 0 -turkey_vulture%1:05:00:: 01619310 1 0 -turkey_wing%1:13:00:: 07648717 1 0 -turki%1:10:00:: 06926458 2 0 -turki%1:18:00:: 09735258 1 0 -turkic%1:10:00:: 06926458 1 0 -turkic%3:01:00:: 03127324 1 0 -turkic-speaking%5:00:00:communicative:00 00500219 1 0 -turkic_language%1:10:00:: 06926458 1 0 -turkish%1:10:00:: 06926798 1 0 -turkish%3:01:00:: 03023852 1 1 -turkish_bath%1:04:00:: 00258530 2 0 -turkish_bath%1:06:00:: 04499300 1 0 -turkish_boxwood%1:20:00:: 12746474 1 0 -turkish_capital%1:15:00:: 09040601 1 0 -turkish_coffee%1:13:00:: 07921239 1 0 -turkish_delight%1:13:00:: 07609728 1 0 -turkish_empire%1:15:00:: 09038597 1 0 -turkish_hizballah%1:14:00:: 08046346 1 0 -turkish_lira%1:23:00:: 13687160 1 0 -turkish_monetary_unit%1:23:00:: 13687015 1 0 -turkish_tobacco%1:27:00:: 14715453 1 0 -turkish_towel%1:06:00:: 04499446 1 0 -turkistan%1:15:00:: 08724545 1 0 -turkmen%1:10:00:: 06926889 3 0 -turkmen%1:15:00:: 09021503 2 0 -turkmen%1:18:00:: 09736485 1 0 -turkmen%3:01:00:: 02963535 1 0 -turkmen_monetary_unit%1:23:00:: 13702707 1 0 -turkmenia%1:15:00:: 09021503 1 0 -turkmenistan%1:15:00:: 09021503 1 0 -turko-tatar%1:10:00:: 06926458 1 0 -turkoman%1:10:00:: 06926889 2 0 -turkoman%1:18:00:: 09736485 1 0 -turkomen%1:15:00:: 09021503 1 0 -turmeric%1:13:00:: 07821919 2 0 -turmeric%1:20:00:: 12356395 1 0 -turmeric_root%1:20:00:: 11735570 1 0 -turmoil%1:04:00:: 00554300 3 0 -turmoil%1:12:00:: 07514520 2 1 -turmoil%1:26:00:: 13977732 1 5 -turn%1:04:01:: 00350030 2 6 -turn%1:04:02:: 00346532 6 1 -turn%1:04:03:: 00292599 12 0 -turn%1:04:04:: 01227083 11 0 -turn%1:04:06:: 00457382 3 4 -turn%1:04:07:: 00345454 7 1 -turn%1:10:00:: 06892016 10 0 -turn%1:11:00:: 07351612 5 1 -turn%1:11:01:: 07423365 4 2 -turn%1:25:00:: 13869327 1 7 -turn%1:28:00:: 15256714 9 0 -turn%1:28:01:: 15292069 8 0 -turn%2:29:00:: 00091124 15 1 -turn%2:30:00:: 00138508 5 7 -turn%2:30:01:: 00458471 25 0 -turn%2:30:03:: 00125841 7 5 -turn%2:30:04:: 00146138 2 21 -turn%2:30:09:: 00282523 14 1 -turn%2:30:14:: 00248387 26 0 -turn%2:32:14:: 00794640 24 0 -turn%2:33:13:: 01151889 23 0 -turn%2:35:06:: 01584450 13 1 -turn%2:35:08:: 01436518 8 2 -turn%2:35:10:: 01225215 22 0 -turn%2:35:11:: 01280014 21 0 -turn%2:36:00:: 01741864 12 1 -turn%2:38:00:: 01907258 1 187 -turn%2:38:01:: 02089420 10 1 -turn%2:38:02:: 02089984 4 8 -turn%2:38:03:: 01909812 6 5 -turn%2:38:04:: 02096167 9 1 -turn%2:38:06:: 01952208 11 1 -turn%2:38:13:: 02090435 19 0 -turn%2:38:14:: 01951937 20 0 -turn%2:40:13:: 02211948 18 0 -turn%2:41:10:: 02562425 17 0 -turn%2:42:00:: 02626604 3 12 -turn%2:42:13:: 02626934 16 0 -turn-on%1:09:00:: 05828102 1 0 -turn_a_blind_eye%2:32:02:: 00801977 1 0 -turn_a_loss%2:40:00:: 02288828 1 0 -turn_a_nice_dime%2:40:00:: 02279113 1 0 -turn_a_nice_dollar%2:40:00:: 02279113 1 0 -turn_a_nice_penny%2:40:00:: 02279113 1 0 -turn_a_profit%2:40:00:: 02278830 1 0 -turn_a_trick%2:41:00:: 02464481 1 0 -turn_around%1:11:00:: 07411160 1 0 -turn_around%2:30:00:: 00205598 3 0 -turn_around%2:30:12:: 00206797 2 0 -turn_around%2:38:00:: 01878949 1 10 -turn_away%2:38:00:: 02034300 2 4 -turn_away%2:38:01:: 02034511 4 1 -turn_away%2:38:02:: 01908809 1 13 -turn_away%2:41:00:: 02502916 3 1 -turn_back%2:30:00:: 00387310 2 4 -turn_back%2:30:09:: 00386715 5 0 -turn_back%2:33:00:: 01131473 4 1 -turn_back%2:38:00:: 02004528 1 7 -turn_back%2:38:02:: 02002720 3 1 -turn_down%2:30:00:: 00267855 5 0 -turn_down%2:30:03:: 00572940 4 0 -turn_down%2:32:00:: 00796976 3 0 -turn_down%2:40:00:: 02237338 1 5 -turn_down%2:41:00:: 02502916 2 0 -turn_in%2:29:00:: 00017865 4 0 -turn_in%2:36:00:: 01649809 3 1 -turn_in%2:38:00:: 02017775 1 2 -turn_in%2:40:00:: 02293321 2 1 -turn_indicator%1:10:00:: 07262704 1 0 -turn_of_events%1:11:00:: 07423365 1 0 -turn_of_expression%1:10:00:: 07088645 1 0 -turn_of_phrase%1:10:00:: 07088645 1 0 -turn_of_the_century%1:28:00:: 15261169 1 2 -turn_off%2:35:00:: 01510576 1 8 -turn_off%2:37:00:: 01808626 3 1 -turn_off%2:38:00:: 01908658 2 1 -turn_on%2:30:00:: 00548479 4 1 -turn_on%2:34:00:: 01200934 7 0 -turn_on%2:35:00:: 01510399 1 12 -turn_on%2:37:00:: 01762283 6 0 -turn_on%2:37:02:: 01762528 5 0 -turn_on%2:39:00:: 02141414 3 1 -turn_on%2:42:00:: 02711987 2 2 -turn_on_a_dime%2:38:00:: 01861927 1 0 -turn_one's_stomach%2:39:00:: 02195191 1 0 -turn_out%2:29:00:: 00018158 12 0 -turn_out%2:30:00:: 00425522 5 2 -turn_out%2:35:00:: 01468576 7 1 -turn_out%2:35:01:: 01510576 11 0 -turn_out%2:36:00:: 01652139 6 1 -turn_out%2:36:01:: 01623792 3 10 -turn_out%2:38:00:: 02045415 10 0 -turn_out%2:40:03:: 02340360 9 0 -turn_out%2:41:03:: 02429475 8 0 -turn_out%2:42:00:: 02633881 1 32 -turn_out%2:42:01:: 02634133 2 10 -turn_out%2:42:02:: 02610845 4 6 -turn_over%2:32:00:: 00813044 9 0 -turn_over%2:35:00:: 01309701 4 1 -turn_over%2:35:01:: 01222958 8 0 -turn_over%2:38:00:: 01909397 7 0 -turn_over%2:38:02:: 01909978 2 2 -turn_over%2:38:03:: 01866192 3 1 -turn_over%2:38:09:: 02089420 6 0 -turn_over%2:40:00:: 02230772 1 5 -turn_over%2:40:01:: 02261256 5 0 -turn_signal%1:10:00:: 07262704 1 0 -turn_tail%2:38:00:: 02075049 1 0 -turn_the_tables%2:30:00:: 00139160 1 1 -turn_the_tide%2:30:00:: 00139160 1 0 -turn_thumbs_down%2:41:00:: 02462030 1 0 -turn_to%2:30:00:: 00549771 2 9 -turn_to%2:32:01:: 00897564 1 12 -turn_turtle%2:38:00:: 01893313 1 0 -turn_up%2:30:00:: 00423702 1 8 -turn_up%2:35:00:: 01277974 2 3 -turn_up%2:35:03:: 01313923 5 0 -turn_up%2:40:00:: 02286204 3 2 -turn_up%2:42:03:: 02633881 4 0 -turn_up_the_heat%2:41:00:: 02505141 1 0 -turn_up_the_pressure%2:41:00:: 02505141 1 0 -turnabout%1:04:00:: 00346693 2 0 -turnabout%1:09:00:: 05789808 1 0 -turnaround%1:04:00:: 00346693 5 0 -turnaround%1:04:02:: 01144555 4 0 -turnaround%1:06:00:: 04499660 3 0 -turnaround%1:09:00:: 05789808 2 0 -turnaround%1:28:00:: 15137295 1 0 -turnaround_time%1:28:00:: 15137295 1 0 -turnbuckle%1:06:00:: 04499810 1 0 -turncoat%1:18:00:: 10007109 1 0 -turncock%1:06:00:: 04327682 2 0 -turncock%1:18:00:: 10733225 1 0 -turndown%1:04:00:: 00205349 1 0 -turned%3:00:00:: 02467386 1 5 -turned%5:00:00:soured:00 02369869 2 0 -turned_on%5:00:00:sexy:00 02131668 1 0 -turned_out%5:00:00:clothed:00 00457036 1 0 -turner%1:06:00:: 04500060 8 0 -turner%1:18:00:: 10733350 7 0 -turner%1:18:01:: 10733487 6 0 -turner%1:18:02:: 10733574 5 0 -turner%1:18:03:: 11352701 4 0 -turner%1:18:04:: 11352883 3 0 -turner%1:18:05:: 11353078 2 0 -turner%1:18:06:: 11353195 1 0 -turner's_syndrome%1:26:00:: 14565927 1 0 -turnery%1:06:00:: 04500294 2 0 -turnery%1:06:01:: 04500390 1 0 -turnicidae%1:05:00:: 02019566 1 0 -turning%1:04:00:: 00350030 1 2 -turning%1:04:01:: 00195415 2 2 -turning%1:04:02:: 00926179 6 0 -turning%1:06:00:: 04500504 5 0 -turning%1:11:00:: 07351612 4 0 -turning%1:17:00:: 09464098 3 0 -turning_away%1:04:00:: 00203753 1 0 -turning_point%1:06:00:: 03109486 2 0 -turning_point%1:11:00:: 07417851 1 1 -turnip%1:13:00:: 07735803 2 0 -turnip%1:20:00:: 11877646 1 0 -turnip-rooted_celery%1:20:00:: 12933616 1 0 -turnip-rooted_parsley%1:20:00:: 12942729 1 0 -turnip-shaped%5:00:00:formed:00 02150960 1 0 -turnip_bed%1:06:00:: 04500613 1 0 -turnip_cabbage%1:13:00:: 07733567 2 0 -turnip_cabbage%1:20:02:: 11877860 1 0 -turnip_greens%1:13:00:: 07736256 1 0 -turnip_plant%1:20:00:: 11877473 1 0 -turnix%1:05:00:: 02019762 1 0 -turnix_sylvatica%1:05:00:: 02020219 1 0 -turnkey%1:18:00:: 10149867 1 0 -turnoff%1:06:00:: 04500704 2 0 -turnoff%1:09:00:: 05828263 1 0 -turnout%1:04:00:: 01233917 6 0 -turnout%1:04:01:: 00534480 7 0 -turnout%1:06:00:: 03860882 4 0 -turnout%1:06:01:: 04500866 2 0 -turnout%1:06:02:: 03859958 5 0 -turnout%1:06:03:: 04216106 3 0 -turnout%1:14:00:: 07987216 1 0 -turnover%1:04:00:: 00348312 4 0 -turnover%1:07:00:: 05112308 3 0 -turnover%1:13:00:: 07624466 2 0 -turnover%1:24:00:: 13826221 1 2 -turnover_rate%1:24:00:: 13826221 1 0 -turnpike%1:06:00:: 04501018 2 0 -turnpike%1:06:01:: 04501127 1 1 -turnround%1:04:00:: 01144555 1 0 -turnspit%1:06:00:: 04501281 1 0 -turnstile%1:06:00:: 04501370 1 0 -turnstone%1:05:00:: 02025043 1 0 -turntable%1:06:00:: 04501550 1 1 -turntable%1:06:01:: 04501713 3 0 -turntable%1:06:02:: 04501837 2 0 -turnup%1:06:00:: 03145843 1 0 -turnverein%1:14:00:: 08230679 1 0 -turp%1:04:00:: 00694088 1 0 -turpentine%1:27:00:: 14897369 1 0 -turpentine%1:27:01:: 14893652 2 0 -turpentine_camphor_weed%1:20:00:: 12871696 1 0 -turpentine_weed%1:20:00:: 11974557 1 0 -turpin%1:18:00:: 11353412 1 0 -turpitude%1:04:00:: 00746866 1 0 -turps%1:27:00:: 14893652 1 0 -turquoise%1:07:00:: 04969798 2 0 -turquoise%1:27:00:: 15082198 1 0 -turreae%1:20:00:: 12700996 1 0 -turret%1:06:00:: 04501947 1 0 -turret%1:06:01:: 03469175 2 0 -turret_clock%1:06:00:: 04502059 1 0 -turritis%1:20:00:: 11899432 1 0 -turritis_glabra%1:20:00:: 11872658 1 0 -tursiops%1:05:00:: 02069569 1 0 -tursiops_gilli%1:05:00:: 02070174 1 0 -tursiops_truncatus%1:05:00:: 02069974 1 0 -turtle%1:05:00:: 01662784 2 0 -turtle%1:06:00:: 04502197 1 0 -turtle%2:33:00:: 01142363 2 0 -turtle%2:38:00:: 01893313 1 0 -turtle_bean%1:13:00:: 07727458 1 0 -turtle_soup%1:13:00:: 07587206 1 0 -turtledove%1:05:00:: 01813385 2 0 -turtledove%1:05:02:: 01813948 1 0 -turtlehead%1:20:00:: 12881105 1 0 -turtleneck%1:06:00:: 04502197 1 0 -turtleneck_collar%1:06:00:: 04502364 1 0 -turtler%1:18:00:: 10733705 1 0 -tuscaloosa%1:15:00:: 09054797 1 0 -tuscan%1:10:00:: 06964788 2 0 -tuscan%1:18:00:: 09717696 1 0 -tuscan%3:01:00:: 02970689 1 0 -tuscan_order%1:07:00:: 04699637 1 0 -tuscany%1:15:00:: 08811982 1 0 -tuscarora%1:10:00:: 06916701 2 0 -tuscarora%1:18:00:: 09670909 1 0 -tush%1:08:00:: 05559256 1 0 -tushery%1:10:00:: 06387204 1 0 -tusk%1:05:00:: 01465713 2 0 -tusk%1:27:00:: 14757547 1 0 -tusk%2:30:00:: 00198213 2 0 -tusk%2:35:00:: 01445027 1 0 -tusk_shell%1:05:00:: 01941340 1 0 -tusked%5:00:00:toothed:00 02439499 1 0 -tuskegee%1:15:00:: 09054915 1 0 -tusker%1:05:00:: 01871265 1 0 -tussah%1:05:00:: 02304797 1 0 -tussaud%1:18:00:: 11353510 1 0 -tusseh%1:05:00:: 02304797 1 0 -tusser%1:05:00:: 02304797 1 0 -tussilago%1:20:00:: 12029326 1 0 -tussilago_alpina%1:20:00:: 11982939 1 0 -tussilago_farfara%1:20:00:: 12029635 1 0 -tussle%1:04:00:: 01172441 1 0 -tussle%2:35:00:: 01473886 2 0 -tussle%2:35:01:: 01504480 1 0 -tussock%1:14:00:: 07960769 1 0 -tussock_bellflower%1:20:00:: 12039317 1 0 -tussock_caterpillar%1:05:00:: 02285801 1 0 -tussock_moth%1:05:00:: 02285548 1 0 -tussore%1:05:00:: 02304797 1 0 -tussur%1:05:00:: 02304797 1 0 -tut%2:32:00:: 00951911 1 0 -tut-tut%2:32:00:: 00951911 1 0 -tutankhamen%1:18:00:: 11353847 1 0 -tutee%1:18:00:: 10733820 1 0 -tutelage%1:04:00:: 00889294 1 0 -tutelage%1:04:01:: 00829378 2 0 -tutelar%5:00:00:protective:00 01888017 1 0 -tutelary%5:00:00:protective:00 01888017 1 0 -tutelo%1:10:00:: 06913121 2 0 -tutelo%1:18:00:: 09671089 1 0 -tutor%1:18:00:: 09931418 1 1 -tutor%2:32:00:: 00830188 1 1 -tutor%2:41:00:: 02592667 2 0 -tutorial%1:10:00:: 07148022 1 1 -tutorial%3:01:00:: 03127435 1 0 -tutorially%4:02:00:: 00482235 1 0 -tutorship%1:04:00:: 00889294 1 0 -tutsan%1:20:00:: 12368028 1 0 -tutsi%1:18:00:: 09693809 1 0 -tutti-frutti%1:13:00:: 07615569 1 0 -tutu%1:06:00:: 02780815 2 0 -tutu%1:18:00:: 11354001 1 0 -tuvalu%1:15:00:: 08840374 1 0 -tuvalu%1:15:01:: 08840200 2 0 -tuvalu_dollar%1:23:00:: 13674257 1 0 -tux%1:06:00:: 03201776 1 0 -tuxedo%1:06:00:: 03201776 1 0 -tuxedoed%5:00:00:clothed:00 00457160 1 1 -tuxtla_gutierrez%1:15:00:: 08746363 1 0 -tv%1:06:00:: 04405907 2 1 -tv%1:10:00:: 06277280 1 9 -tv-antenna%1:06:00:: 04404817 1 0 -tv_announcer%1:18:00:: 10733891 1 0 -tv_audience%1:14:00:: 08222750 1 1 -tv_camera%1:06:00:: 04404997 1 0 -tv_channel%1:06:00:: 03006398 1 0 -tv_dinner%1:13:00:: 07576311 1 0 -tv_monitor%1:06:00:: 04405762 1 0 -tv_newsman%1:18:00:: 10698368 1 0 -tv_program%1:10:00:: 06620579 1 0 -tv_reporter%1:18:00:: 10698368 1 0 -tv_room%1:06:00:: 04406239 1 1 -tv_set%1:06:00:: 04405907 1 0 -tv_show%1:10:00:: 06620579 1 0 -tv_star%1:18:00:: 10698550 1 0 -tv_station%1:06:00:: 04406350 1 0 -twaddle%1:10:00:: 06611147 1 0 -twaddle%2:32:00:: 01036804 1 0 -twaddler%1:18:00:: 10733999 1 0 -twain%1:23:00:: 13743605 1 0 -twang%1:07:00:: 04989512 2 0 -twang%1:11:00:: 07398873 1 0 -twang%2:32:00:: 00745078 5 0 -twang%2:35:00:: 01452783 4 0 -twang%2:39:00:: 02173838 2 0 -twang%2:39:01:: 02173967 1 0 -twang%2:39:02:: 02122895 3 0 -twat%1:08:00:: 05521514 2 0 -twat%1:18:00:: 10157744 1 0 -twayblade%1:20:01:: 12071744 1 0 -twayblade%1:20:02:: 12070583 2 0 -tweak%1:04:00:: 00357275 1 0 -tweak%2:30:00:: 00302763 3 0 -tweak%2:35:00:: 01592456 2 0 -tweak%2:35:01:: 01592669 1 0 -twee%5:00:00:refined:01 01948092 1 0 -tweed%1:06:00:: 04502502 1 3 -tweed%1:06:03:: 03357081 2 0 -tweediness%1:07:00:: 04948722 1 0 -tweediness%1:07:01:: 04817020 2 0 -tweedle%2:32:00:: 00784080 3 0 -tweedle%2:36:00:: 01727230 2 0 -tweedle%2:36:01:: 01730663 1 0 -tweedledee_and_tweedledum%1:14:00:: 07988716 1 0 -tweedledum_and_tweedledee%1:14:00:: 07988716 1 0 -tweedy%5:00:00:rough:00 02240795 1 1 -tweedy%5:00:00:upper-class:00 00261885 2 0 -tweet%1:11:00:: 07399027 1 0 -tweet%2:35:00:: 01456771 2 0 -tweet%2:39:00:: 02177661 1 0 -tweeter%1:06:00:: 04502670 1 0 -tweeze%2:35:00:: 01593011 1 1 -tweezer%1:06:00:: 03941684 1 0 -twelfth%1:23:00:: 13738459 2 0 -twelfth%1:24:00:: 13848052 1 0 -twelfth%5:00:00:ordinal:00 02203629 1 2 -twelfth_cranial_nerve%1:08:00:: 05480607 1 0 -twelfth_day%1:28:00:: 15194506 1 0 -twelfth_night%1:28:00:: 15194940 1 0 -twelfth_part%1:23:00:: 13738459 1 0 -twelfthtide%1:28:00:: 15194860 1 0 -twelve%1:23:00:: 13746785 1 1 -twelve%5:00:00:cardinal:00 02187465 1 20 -twelve-sided%5:00:00:multilateral:00 00239012 1 0 -twelve-tone_music%1:10:00:: 07057539 1 0 -twelve-tone_system%1:10:00:: 07057539 1 0 -twelve_noon%1:28:00:: 15165490 1 0 -twelve_tribes_of_israel%1:14:00:: 08372847 1 0 -twelvemonth%1:28:00:: 15203791 1 0 -twenties%1:28:00:: 15148584 1 3 -twenties%1:28:01:: 15148867 2 2 -twentieth%1:24:00:: 13848884 1 1 -twentieth%5:00:00:ordinal:00 02204716 1 11 -twentieth_century%1:28:00:: 15206004 1 0 -twenty%1:21:00:: 13395296 2 0 -twenty%1:23:00:: 13748128 1 1 -twenty%5:00:00:cardinal:00 02188317 1 19 -twenty-eight%1:23:00:: 13749146 1 1 -twenty-eight%5:00:00:cardinal:00 02189108 1 0 -twenty-eighth%5:00:00:ordinal:00 02205610 1 2 -twenty-fifth%5:00:00:ordinal:00 02205271 1 3 -twenty-first%5:00:00:ordinal:00 02204823 1 3 -twenty-five%1:23:00:: 13748763 1 0 -twenty-five%5:00:00:cardinal:00 02188817 1 11 -twenty-five_percent%1:23:00:: 13737480 1 0 -twenty-four%1:23:00:: 13748622 1 0 -twenty-four%5:00:00:cardinal:00 02188720 1 2 -twenty-four_hour_period%1:28:00:: 15155220 1 0 -twenty-four_hours%1:28:00:: 15155220 1 3 -twenty-fourth%5:00:00:ordinal:00 02205158 1 0 -twenty-nine%1:23:00:: 13749278 1 0 -twenty-nine%5:00:00:cardinal:00 02189209 1 0 -twenty-ninth%5:00:00:ordinal:00 02205725 1 0 -twenty-one%1:04:00:: 00490350 2 0 -twenty-one%1:23:00:: 13748246 1 1 -twenty-one%5:00:00:cardinal:00 02188431 1 3 -twenty-second%5:00:00:ordinal:00 02204932 1 0 -twenty-seven%1:23:00:: 13749017 1 0 -twenty-seven%5:00:00:cardinal:00 02189008 1 0 -twenty-seventh%5:00:00:ordinal:00 02205496 1 0 -twenty-six%1:23:00:: 13748890 1 0 -twenty-six%5:00:00:cardinal:00 02188913 1 1 -twenty-sixth%5:00:00:ordinal:00 02205384 1 0 -twenty-third%5:00:00:ordinal:00 02205045 1 0 -twenty-three%1:23:00:: 13748493 1 1 -twenty-three%5:00:00:cardinal:00 02188620 1 3 -twenty-twenty%1:09:00:: 05655810 1 0 -twenty-two%1:06:00:: 04502851 2 0 -twenty-two%1:23:00:: 13748367 1 1 -twenty-two%5:00:00:cardinal:00 02188525 1 0 -twenty-two_pistol%1:06:00:: 04502989 1 0 -twenty-two_rifle%1:06:00:: 04503073 1 1 -twenty_dollar_bill%1:21:00:: 13395296 1 0 -twenty_percent%1:23:00:: 13737830 1 0 -twerp%1:18:00:: 10734129 1 0 -twice%4:02:00:: 00065294 1 21 -twice%4:02:01:: 00083393 2 4 -twice-baked_bread%1:13:00:: 07689842 1 0 -twice-pinnate%1:20:00:: 13157346 1 0 -twiddle%1:04:00:: 00340989 1 0 -twiddle%2:35:00:: 01224211 2 0 -twiddle%2:38:00:: 02048891 1 1 -twiddler%1:18:00:: 10734235 1 0 -twig%1:20:00:: 13163991 1 1 -twig%2:30:00:: 00329654 1 1 -twig%2:31:00:: 00590366 2 0 -twig_blight%1:26:00:: 14219290 1 0 -twiggy%5:00:00:thin:03 00989957 1 0 -twiglike%5:00:00:thin:03 00989957 1 0 -twilight%1:19:00:: 11515935 2 1 -twilight%1:26:01:: 14423740 3 0 -twilight%1:28:00:: 15169421 1 1 -twilight%5:00:00:dark:01 00275486 1 0 -twilight_of_the_gods%1:10:00:: 06372925 1 0 -twilight_sleep%1:26:00:: 14030084 1 0 -twilight_vision%1:09:00:: 05656997 1 0 -twilight_zone%1:07:00:: 04825815 2 0 -twilight_zone%1:17:00:: 09464221 1 0 -twilit%5:00:00:dark:01 00275486 1 0 -twill%1:06:00:: 04503155 2 0 -twill%1:06:01:: 04503269 1 0 -twill%2:36:00:: 01674938 1 0 -twill_weave%1:06:00:: 04503269 1 0 -twilled%5:00:00:rough:00 02240275 1 0 -twin%1:06:00:: 03117939 4 0 -twin%1:17:00:: 09464335 3 0 -twin%1:18:00:: 10734394 1 1 -twin%1:18:01:: 09752519 2 0 -twin%2:29:00:: 00057665 4 0 -twin%2:30:00:: 00246125 3 0 -twin%2:35:00:: 01292885 2 0 -twin%2:42:00:: 02659358 1 0 -twin%5:00:00:matched:00 01486854 1 1 -twin-aisle_airplane%1:06:00:: 04583620 1 0 -twin-bedded%5:00:00:bedded:00 00207887 1 0 -twin-prop%1:06:00:: 03227505 1 0 -twin-propeller-plane%1:06:00:: 03227505 1 0 -twin_bed%1:06:00:: 04503413 1 0 -twin_bill%1:04:00:: 00460951 1 0 -twin_cities%1:15:00:: 09103648 1 0 -twin_falls%1:15:00:: 09082395 2 0 -twin_falls%1:17:00:: 09464335 1 0 -twin_towers%1:06:00:: 04604009 1 0 -twinberry%1:20:01:: 12675716 1 0 -twinberry%1:20:02:: 12668517 2 0 -twine%1:06:00:: 04337974 1 0 -twine%2:35:00:: 01517662 1 5 -twine%2:35:01:: 01518047 3 0 -twine%2:35:03:: 01522276 2 0 -twine%2:35:04:: 01223182 4 0 -twiner%1:18:00:: 10734568 1 0 -twinflower%1:20:00:: 12673328 1 0 -twinge%1:09:00:: 05725269 2 0 -twinge%1:12:00:: 07494972 1 2 -twinge%2:35:00:: 01456771 3 0 -twinge%2:39:00:: 02123424 1 0 -twinge%2:39:01:: 02121845 2 0 -twinjet%1:06:00:: 04503499 1 0 -twinkie%1:13:00:: 07632679 1 0 -twinkle%1:07:00:: 04953380 2 0 -twinkle%1:11:00:: 07411645 1 0 -twinkle%2:39:00:: 02159890 1 1 -twinkle%2:43:00:: 02764765 2 0 -twinkler%1:17:00:: 09464486 1 0 -twinkling%1:28:00:: 15247110 1 1 -twinkling%5:00:00:bright:00 00283580 1 1 -twinkly%5:00:00:cheerful:00 00363031 1 0 -twinned%5:00:00:matched:00 01486854 1 0 -twinning%5:00:00:multiparous:00 02475430 1 0 -twins%1:15:00:: 08686495 2 0 -twins%1:27:00:: 14883517 1 0 -twirl%1:04:00:: 00343249 2 0 -twirl%1:25:00:: 13877918 1 0 -twirl%2:38:00:: 02048891 1 2 -twirl%2:38:01:: 02048051 2 1 -twirler%1:18:00:: 10435988 2 0 -twirler%1:18:01:: 09843824 1 2 -twirlingly%4:02:00:: 00221887 1 1 -twirp%1:18:00:: 10734129 1 0 -twirp%2:39:00:: 02177661 1 0 -twist%1:04:00:: 00534631 11 0 -twist%1:04:01:: 00171249 3 2 -twist%1:04:02:: 00343249 4 1 -twist%1:04:03:: 00345454 13 0 -twist%1:04:04:: 00345641 12 0 -twist%1:08:00:: 05259512 10 0 -twist%1:10:00:: 07173959 2 2 -twist%1:11:00:: 07423365 1 2 -twist%1:11:01:: 07432973 8 0 -twist%1:11:02:: 07351909 9 0 -twist%1:25:00:: 13877918 6 0 -twist%1:25:01:: 13869327 7 0 -twist%1:26:00:: 14299070 5 0 -twist%2:29:00:: 00091124 10 0 -twist%2:30:00:: 00143914 5 1 -twist%2:32:00:: 00932798 9 0 -twist%2:35:00:: 01222645 3 2 -twist%2:35:01:: 01223182 4 1 -twist%2:35:02:: 01280014 2 5 -twist%2:35:06:: 01349493 8 0 -twist%2:38:01:: 01868370 1 13 -twist%2:38:02:: 01895519 7 0 -twist%2:42:00:: 02738701 6 0 -twist_around%2:32:00:: 00932798 1 0 -twist_bit%1:06:00:: 04503593 1 0 -twist_drill%1:06:00:: 04503593 1 0 -twist_wood%1:20:00:: 12680652 1 0 -twisted%5:00:00:disingenuous:00 01311067 1 1 -twister%1:13:00:: 07639577 2 0 -twister%1:19:00:: 11519450 1 0 -twisting%1:04:00:: 00751529 1 1 -twisting%1:04:01:: 00343249 2 0 -twisting%5:00:00:crooked:01 02313784 1 0 -twistwood%1:20:00:: 12680652 1 0 -twisty%5:00:00:crooked:01 02313784 1 0 -twit%1:04:00:: 01222859 2 0 -twit%1:18:00:: 10734129 1 0 -twit%2:32:00:: 00850501 1 0 -twitch%1:26:00:: 14361664 1 0 -twitch%2:29:00:: 00009631 1 4 -twitch%2:35:00:: 01456771 4 0 -twitch%2:35:02:: 01448778 5 0 -twitch%2:38:00:: 01893601 3 0 -twitch%2:38:01:: 01891817 2 2 -twitching%1:26:00:: 14361664 1 0 -twitter%1:11:00:: 07379577 1 0 -twitter%2:32:00:: 01053623 1 0 -twitterer%1:05:00:: 02511730 1 0 -two%1:06:00:: 03182795 2 0 -two%1:23:00:: 13743269 1 33 -two%5:00:00:cardinal:00 02186470 1 508 -two-a-penny%5:00:00:cheap:00 00935359 1 0 -two-bagger%1:04:00:: 00132756 1 0 -two-base_hit%1:04:00:: 00132756 1 0 -two-baser%1:04:00:: 00132756 1 1 -two-by-four%1:06:00:: 04503705 1 2 -two-chambered%5:00:00:divided:00 02479361 1 0 -two-channel%5:00:00:binaural:00 00240655 1 0 -two-dimensional%3:00:02:: 00658942 1 0 -two-dimensional%5:00:00:multidimensional:00 00660551 2 0 -two-dimensional_figure%1:25:00:: 13863186 1 0 -two-dimensionality%1:07:00:: 05063349 1 0 -two-eared%5:00:00:binaural:00 00240584 1 0 -two-eyed_violet%1:20:00:: 12389130 1 0 -two-faced%5:00:00:dishonest:00 01223271 1 0 -two-faced%5:00:00:faced:00 00235571 2 0 -two-fold%5:00:01:multiple:00 02217241 2 0 -two-fold%5:00:02:multiple:00 02217799 1 0 -two-footed%3:00:00:: 00241672 1 0 -two-grain_spelt%1:20:00:: 12143215 1 0 -two-handed%3:00:04:: 02029752 1 0 -two-handed%5:00:00:handed:00 02028046 2 0 -two-handed_backhand%1:04:00:: 00568166 1 0 -two-handed_saw%1:06:00:: 04503836 1 0 -two-hitter%1:04:00:: 00475273 1 0 -two-humped%3:01:00:: 02819475 1 0 -two-hundredth%5:00:00:ordinal:00 02211989 1 0 -two-lane%5:00:00:multilane:00 02221723 1 0 -two-leafed%5:00:00:leafy:00 01703330 1 0 -two-leaved%5:00:00:leafy:00 01703330 1 0 -two-lipped%5:00:00:lipped:00 01704273 1 0 -two-lobed%5:00:00:multilateral:00 00237965 1 0 -two-man_saw%1:06:00:: 04503836 1 0 -two-man_tent%1:06:00:: 04504038 1 0 -two-needled%5:00:00:simple:01 02168991 1 0 -two-note_call%1:10:00:: 06797047 1 0 -two-part%5:00:00:multilateral:00 00238037 1 0 -two-party%5:00:00:nonpartisan:00 00731471 1 0 -two-piece%1:06:01:: 02837789 2 0 -two-piece%1:06:02:: 04504141 1 0 -two-piece%3:00:00:: 01650037 1 0 -two-piece_suit%1:06:00:: 04504141 1 0 -two-ply%5:00:00:thick:01 02412059 1 0 -two-pronged%5:00:00:divided:00 02483311 1 0 -two-seater%1:06:00:: 04097373 1 0 -two-sided%3:00:02:: 01759676 1 0 -two-sided%5:00:04:multilateral:00 00237788 2 0 -two-spotted_ladybug%1:05:00:: 02165877 1 0 -two-step%1:04:00:: 00536120 1 0 -two-step%2:38:00:: 01896995 1 0 -two-thirds%1:23:00:: 13737378 1 3 -two-tier_bid%1:04:00:: 00790498 1 0 -two-time%2:41:00:: 02576790 1 0 -two-timer%1:18:00:: 10027590 2 0 -two-timer%1:18:01:: 10734741 1 0 -two-timing%5:00:00:unfaithful:01 00961195 1 0 -two-toe%5:00:00:toed:00 01032451 1 0 -two-toed%5:00:00:toed:00 01032451 1 0 -two-toed_anteater%1:05:00:: 02460817 1 0 -two-toed_sloth%1:05:01:: 02457945 2 0 -two-toed_sloth%1:05:02:: 02458135 1 0 -two-way%5:00:00:bidirectional:00 00233925 3 0 -two-way%5:00:00:multilateral:00 00238037 2 0 -two-way%5:00:00:nonpartisan:00 00731471 1 1 -two-way_street%1:06:00:: 04504297 1 0 -two-wheel%3:01:00:: 02819582 1 0 -two-wheeled%3:01:00:: 02819582 1 0 -two-wing_flying_fish%1:05:00:: 02550655 1 0 -two-winged_insects%1:05:00:: 02188699 1 0 -two-year%3:00:04:: 00678221 1 0 -two-year-old%5:00:00:young:00 01647675 1 0 -two-year-old_horse%1:05:00:: 02385348 1 0 -two_dollar_bill%1:21:00:: 13395799 1 0 -two_dozen%1:23:00:: 13748622 1 0 -two_hundred%5:00:00:cardinal:00 02198302 1 0 -two_iron%1:06:00:: 03762332 1 0 -two_kettle%1:18:00:: 09671202 1 0 -two_times%4:02:01:: 00482373 1 0 -two_weeks%1:28:00:: 15170331 1 10 -two_year_old%1:05:00:: 02385348 1 0 -twofer%1:10:00:: 07167326 1 0 -twofer%1:10:01:: 06518565 2 0 -twofold%4:02:00:: 00482373 1 0 -twofold%5:00:01:multiple:00 02217241 2 1 -twofold%5:00:02:multiple:00 02217799 1 2 -twopence%1:21:00:: 13390963 1 0 -twopenny%5:00:00:cheap:00 00935359 1 0 -twopenny-halfpenny%5:00:00:cheap:00 00935359 1 0 -twoscore%5:00:00:cardinal:00 02190278 1 1 -twosome%1:14:00:: 07985628 2 0 -twosome%1:23:00:: 13743605 1 0 -twyla_tharp%1:18:00:: 11337629 1 0 -tx%1:15:00:: 09141526 1 0 -tyan_shan%1:17:00:: 09458587 1 0 -tyche%1:18:00:: 09573262 1 0 -tycho_brahe%1:18:00:: 10861926 1 0 -tycoon%1:18:00:: 09840217 1 0 -tying%1:04:00:: 00149084 1 0 -tying_up%1:04:00:: 00052146 1 0 -tyiyn%1:23:00:: 13702015 1 0 -tyke%1:18:00:: 10734891 1 0 -tyke%1:18:01:: 09917593 3 0 -tyke%1:18:02:: 10410815 2 0 -tylenchidae%1:05:00:: 01932358 1 0 -tylenchus%1:05:00:: 01932495 1 0 -tylenchus_tritici%1:05:00:: 01932643 1 0 -tylenol%1:06:00:: 02674482 1 0 -tyler%1:15:00:: 09146584 2 0 -tyler%1:18:00:: 11354145 1 0 -tympan%1:06:00:: 03249569 1 0 -tympani%1:06:00:: 03612965 1 0 -tympanic%3:01:00:: 02945120 2 0 -tympanic%3:01:01:: 02945202 1 0 -tympanic_bone%1:08:00:: 05284020 1 0 -tympanic_cavity%1:08:00:: 05324888 1 0 -tympanic_membrane%1:08:00:: 05318831 1 0 -tympanic_vein%1:08:00:: 05384560 1 0 -tympanist%1:18:00:: 10734963 1 0 -tympanites%1:26:00:: 14063877 1 0 -tympanitic%3:01:00:: 02945292 1 0 -tympanitis%1:26:00:: 14357607 1 0 -tympanoplasty%1:04:00:: 00694420 1 0 -tympanuchus%1:05:00:: 01798352 1 0 -tympanuchus_cupido%1:05:00:: 01798706 1 0 -tympanuchus_cupido_cupido%1:05:00:: 01798979 1 0 -tympanuchus_pallidicinctus%1:05:00:: 01798839 1 0 -tympanum%1:06:00:: 03612965 3 0 -tympanum%1:08:00:: 05318831 2 0 -tympanum%1:08:01:: 05324888 1 0 -tyndale%1:18:00:: 11354333 1 0 -tyndall%1:18:00:: 11354743 1 0 -tyndall_effect%1:19:00:: 11528427 1 0 -tyne%1:17:00:: 09464805 1 0 -tyne_river%1:17:00:: 09464805 1 0 -type%1:06:00:: 04504486 6 0 -type%1:09:00:: 05840188 1 136 -type%1:10:00:: 06795967 5 0 -type%1:10:01:: 06825120 4 0 -type%1:14:01:: 08111419 3 0 -type%1:18:00:: 09909060 2 7 -type%2:31:00:: 00618682 2 1 -type%2:32:00:: 01004692 1 2 -type_a%1:08:00:: 05400860 1 0 -type_ab%1:08:00:: 05401096 1 0 -type_b%1:08:00:: 05400978 1 0 -type_family%1:10:00:: 06825273 1 0 -type_genus%1:14:00:: 08109940 1 0 -type_i_allergic_reaction%1:26:00:: 14532250 1 0 -type_i_diabetes%1:26:00:: 14118423 1 0 -type_ii_diabetes%1:26:00:: 14118936 1 0 -type_iv_allergic_reaction%1:26:00:: 14532659 1 0 -type_metal%1:27:00:: 14719458 1 0 -type_o%1:08:00:: 05401229 1 0 -type_of_architecture%1:09:00:: 05841351 1 0 -type_slug%1:06:00:: 04504935 1 0 -type_species%1:14:00:: 08111599 1 0 -type_specimen%1:09:00:: 05938170 1 0 -typecast%2:31:00:: 00618682 2 0 -typecast%2:36:00:: 01711211 1 0 -typeface%1:10:00:: 06825399 1 0 -typescript%1:10:00:: 06389109 1 0 -typeset%2:36:00:: 01744888 1 0 -typesetter%1:18:00:: 09949946 1 0 -typesetter's_case%1:06:00:: 02975589 1 0 -typesetting_machine%1:06:00:: 04504770 1 0 -typewrite%2:32:00:: 01004692 1 0 -typewriter%1:06:00:: 04505036 1 2 -typewriter_carriage%1:06:00:: 04505345 1 0 -typewriter_font%1:10:00:: 06825996 1 0 -typewriter_keyboard%1:06:00:: 04505470 1 0 -typewriter_paper%1:27:00:: 15082382 1 0 -typewriter_ribbon%1:06:00:: 04088058 1 0 -typewriting%1:10:00:: 06402565 1 1 -typha%1:20:00:: 12155459 1 0 -typha_angustifolia%1:20:00:: 12156117 1 0 -typha_latifolia%1:20:00:: 12155773 1 0 -typhaceae%1:20:00:: 12155259 1 0 -typhlopidae%1:05:00:: 01740283 1 0 -typhoeus%1:18:00:: 09502700 1 0 -typhoid%1:26:00:: 14144416 1 1 -typhoid_bacillus%1:05:00:: 01369484 1 0 -typhoid_bacteriophage%1:05:00:: 01335333 1 0 -typhoid_fever%1:26:00:: 14144416 1 0 -typhoid_mary%1:18:00:: 11151932 1 0 -typhon%1:18:00:: 09502906 1 0 -typhoon%1:19:00:: 11521145 1 0 -typhus%1:26:00:: 14141062 1 2 -typhus_fever%1:26:00:: 14141062 1 1 -typic%5:00:00:typical:00 02469119 1 0 -typical%3:00:00:: 02468635 1 26 -typical%5:00:00:characteristic:00 00357556 2 2 -typical%5:00:00:normal:01 01595440 3 0 -typical_jerboa%1:05:00:: 02352002 1 0 -typicality%1:26:00:: 14501545 1 0 -typically%4:02:00:: 00128168 1 7 -typification%1:04:00:: 00900581 2 0 -typification%1:09:00:: 05765901 1 0 -typify%2:32:00:: 00836236 2 0 -typify%2:42:00:: 02699141 1 2 -typing%1:10:00:: 06402565 1 2 -typing_paper%1:27:00:: 15082382 1 0 -typing_pool%1:14:00:: 08481604 1 0 -typist%1:18:00:: 10735173 1 0 -typo%1:10:00:: 06769670 1 0 -typographer%1:18:00:: 09949946 1 0 -typographic%3:01:00:: 02910248 1 1 -typographical%3:01:00:: 02910248 1 0 -typographical_error%1:10:00:: 06769670 1 0 -typographically%4:02:00:: 00482480 1 0 -typography%1:04:00:: 01103000 1 2 -typography%1:10:00:: 06677974 2 1 -typology%1:04:00:: 01013971 1 0 -tyr%1:18:00:: 09583723 1 0 -tyramine%1:27:00:: 15082524 1 0 -tyranni%1:05:00:: 01546660 1 0 -tyrannic%5:00:00:undemocratic:00 00717684 1 0 -tyrannical%5:00:00:domineering:00 00788474 1 0 -tyrannical%5:00:00:undemocratic:00 00717684 2 0 -tyrannicide%1:04:00:: 01250671 1 0 -tyrannid%1:05:00:: 01546921 1 0 -tyrannidae%1:05:00:: 01547459 1 0 -tyrannise%2:37:00:: 01781757 2 0 -tyrannise%2:41:00:: 02587239 1 0 -tyrannize%2:37:00:: 01781757 2 0 -tyrannize%2:41:00:: 02587239 1 0 -tyrannosaur%1:05:00:: 01713764 1 0 -tyrannosaurus%1:05:00:: 01713764 1 0 -tyrannosaurus_rex%1:05:00:: 01713764 1 0 -tyrannous%5:00:00:domineering:00 00788474 1 0 -tyrannus%1:05:00:: 01548143 1 0 -tyrannus_domenicensis_domenicensis%1:05:00:: 01549053 1 0 -tyrannus_tyrannus%1:05:00:: 01548301 1 0 -tyrannus_vociferans%1:05:00:: 01548694 1 0 -tyranny%1:14:00:: 08440630 1 3 -tyranny%1:26:00:: 14443912 2 0 -tyrant%1:18:00:: 10735298 1 1 -tyrant%1:18:01:: 10735564 3 0 -tyrant%1:18:02:: 10735707 2 0 -tyrant_bird%1:05:00:: 01547832 1 0 -tyrant_flycatcher%1:05:00:: 01547832 1 0 -tyre%1:06:00:: 04440749 2 0 -tyre%1:15:00:: 08958334 1 0 -tyrian_purple%1:07:00:: 04970312 2 0 -tyrian_purple%1:27:00:: 15001753 1 0 -tyro%1:18:00:: 10363913 1 0 -tyrocidin%1:06:00:: 04505706 1 0 -tyrocidine%1:06:00:: 04505706 1 0 -tyrol%1:15:00:: 08846135 1 0 -tyrolean%1:06:00:: 04505888 2 0 -tyrolean%1:18:00:: 09735023 1 0 -tyrolean%3:01:00:: 02971007 1 0 -tyrolean_alps%1:17:00:: 09464652 1 0 -tyrolese%3:01:00:: 02971007 1 0 -tyrosine%1:27:00:: 15082766 1 3 -tyrosine_kinase_inhibitor%1:06:00:: 04506005 1 0 -tyrosinemia%1:26:00:: 14169897 1 0 -tyrothricin%1:06:00:: 04506125 1 0 -tyrr%1:18:00:: 09583723 1 0 -tyrrhenian_sea%1:17:00:: 09464962 1 0 -tyson%1:18:00:: 11355082 1 0 -tyto%1:05:00:: 01625417 1 0 -tyto_alba%1:05:00:: 01625562 1 0 -tytonidae%1:05:00:: 01625275 1 0 -tzar%1:18:00:: 09987239 1 0 -tzara%1:18:00:: 11355247 1 0 -tzarina%1:18:00:: 09987573 1 0 -tzarist%3:01:00:: 02710043 1 0 -tzetze%1:05:00:: 02191273 1 0 -tzetze_fly%1:05:00:: 02191273 1 0 -u%1:10:00:: 06833328 3 0 -u%1:27:00:: 14660443 2 0 -u%1:27:01:: 15084357 1 0 -u%5:00:00:upper-class:00 00261735 1 0 -u-boat%1:06:00:: 04347754 1 0 -u-drive%1:21:00:: 13248598 1 0 -u-shaped%5:00:00:formed:00 02151145 1 0 -u-turn%1:04:00:: 00347087 1 0 -u._s._air_force%1:14:00:: 08196230 1 0 -u._s._army%1:14:00:: 08394922 1 0 -u._s._army_special_forces%1:14:00:: 08213424 1 0 -u._s._coast_guard%1:14:00:: 08192557 1 0 -u._s._code%1:10:00:: 06668147 1 0 -u.k.%1:15:00:: 08860123 1 0 -u.s.%1:14:00:: 08355791 1 18 -u.s.%1:15:00:: 09044862 2 6 -u.s._army_criminal_investigation_laboratory%1:06:00:: 04510090 1 0 -u.s._congress%1:14:00:: 08161757 1 0 -u.s._constitution%1:10:00:: 06534132 1 0 -u.s._government%1:14:00:: 08355791 1 1 -u.s._house%1:14:00:: 08161971 1 0 -u.s._house_of_representatives%1:14:00:: 08161971 1 0 -u.s._mint%1:06:00:: 04510456 1 0 -u.s._national_library_of_medicine%1:06:00:: 03810741 1 0 -u.s._senate%1:14:00:: 08161591 1 0 -u.s._waters%1:17:00:: 09465984 1 0 -u.s.a.%1:15:00:: 09044862 1 0 -u308%1:27:00:: 15106529 1 0 -uakari%1:05:00:: 02493224 1 0 -ubermensch%1:18:00:: 10001764 1 1 -ubiety%1:26:00:: 13958353 1 0 -ubiquinone%1:27:00:: 15082890 1 0 -ubiquitous%5:00:00:present:02 01847515 1 1 -ubiquitousness%1:26:00:: 13958456 1 0 -ubiquity%1:26:00:: 13958456 1 0 -ubykh%1:10:00:: 06978904 1 0 -uca%1:05:00:: 01980053 1 0 -uda%1:14:00:: 08046759 1 0 -udder%1:05:00:: 02370360 1 0 -udmurt%1:10:00:: 06956794 2 0 -udmurt%1:18:00:: 09644518 1 0 -udometer%1:06:00:: 04049585 1 0 -ufa%1:15:00:: 09009978 1 0 -ufo%1:09:00:: 05897825 1 0 -uganda%1:15:00:: 09043052 1 0 -ugandan%1:18:00:: 09736945 1 0 -ugandan%3:01:00:: 03127583 1 0 -ugandan_monetary_unit%1:23:00:: 13707237 1 0 -ugandan_shilling%1:23:00:: 13707346 1 0 -ugaritic%1:10:00:: 06989769 1 0 -ugli%1:13:00:: 07748574 1 0 -ugli_fruit%1:13:00:: 07748574 2 0 -ugli_fruit%1:20:00:: 12711182 1 0 -uglify%2:30:00:: 00293429 1 0 -ugliness%1:07:00:: 04690196 1 1 -ugliness%1:07:01:: 04852750 2 0 -ugly%3:00:00:: 00220956 1 3 -ugly%5:00:00:evil:00 01133017 3 0 -ugly%5:00:00:ill-natured:00 01139067 2 0 -ugly%5:00:02:alarming:00 00193480 4 0 -ugly_duckling%1:18:00:: 10735852 1 0 -ugo_buoncompagni%1:18:00:: 11014652 1 0 -ugrian%1:10:00:: 06958615 1 0 -ugric%1:10:00:: 06958615 1 0 -uhf%1:07:00:: 05057805 1 0 -uhland%1:18:00:: 11355428 1 0 -uighur%1:10:00:: 06927486 2 0 -uighur%1:10:01:: 06353089 3 0 -uighur%1:18:00:: 09736633 1 0 -uigur%1:10:00:: 06927486 2 0 -uigur%1:10:01:: 06353089 3 0 -uigur%1:18:00:: 09736633 1 0 -uintathere%1:05:00:: 02372140 1 0 -uintatheriidae%1:05:00:: 02371647 1 0 -uintatherium%1:05:00:: 02371801 1 0 -uk%1:15:00:: 08860123 1 0 -ukase%1:10:00:: 06541301 1 0 -uke%1:06:00:: 04506289 1 0 -ukraine%1:15:00:: 09014979 1 0 -ukrainian%1:10:00:: 06944623 1 1 -ukrainian%3:01:00:: 02963665 1 0 -ukranian%1:18:00:: 09737050 1 0 -ukranian_monetary_unit%1:23:00:: 13703022 1 0 -ukrayina%1:15:00:: 09014979 1 0 -ukulele%1:06:00:: 04506289 1 0 -ulaanbaatar%1:15:00:: 08969123 1 0 -ulalgia%1:26:00:: 14333575 1 0 -ulama%1:14:00:: 08380017 1 0 -ulan_bator%1:15:00:: 08969123 1 0 -ulanova%1:18:00:: 11355537 1 0 -ulatrophia%1:26:00:: 14081297 1 0 -ulcer%1:26:00:: 14211609 1 4 -ulcer_diet%1:13:00:: 07562017 1 0 -ulcerate%2:29:00:: 00019982 2 0 -ulcerate%2:30:00:: 00537153 1 0 -ulcerated%5:00:00:unhealthy:00 01175158 1 1 -ulceration%1:22:00:: 13570783 2 0 -ulceration%1:26:00:: 14211609 1 1 -ulcerative%3:01:00:: 03142636 1 0 -ulcerative_colitis%1:26:00:: 14306802 1 0 -ulcerous%5:00:00:unhealthy:00 01175158 1 0 -ulema%1:14:00:: 08380017 1 0 -ulemorrhagia%1:26:00:: 14371082 1 0 -ulex%1:20:00:: 12574727 1 0 -ulex_europaeus%1:20:00:: 12574866 1 0 -ulfila%1:18:00:: 11355669 1 0 -ulfilas%1:18:00:: 11355669 1 0 -ulitis%1:26:00:: 14357693 1 0 -ull%1:18:00:: 09583888 1 0 -ullage%1:23:00:: 13764086 1 0 -ullr%1:18:00:: 09583888 1 0 -ulmaceae%1:20:00:: 12404943 1 0 -ulmus%1:20:00:: 12405209 1 0 -ulmus_alata%1:20:00:: 12406304 1 0 -ulmus_americana%1:20:00:: 12406488 1 0 -ulmus_campestris_sarniensis%1:20:00:: 12408466 1 0 -ulmus_campestris_wheatleyi%1:20:00:: 12408466 1 0 -ulmus_carpinifolia%1:20:00:: 12406715 1 0 -ulmus_crassifolia%1:20:00:: 12406902 1 0 -ulmus_glabra%1:20:00:: 12407079 1 0 -ulmus_hollandica%1:20:00:: 12407222 1 0 -ulmus_hollandica_vegetata%1:20:00:: 12407396 1 0 -ulmus_laevis%1:20:00:: 12407545 1 0 -ulmus_parvifolia%1:20:00:: 12407715 1 0 -ulmus_procera%1:20:00:: 12407890 1 0 -ulmus_pumila%1:20:00:: 12408077 1 0 -ulmus_rubra%1:20:00:: 12408280 1 0 -ulmus_sarniensis%1:20:00:: 12408466 1 0 -ulmus_serotina%1:20:00:: 12408717 1 0 -ulmus_thomasii%1:20:00:: 12408873 1 0 -ulna%1:08:00:: 05593476 1 0 -ulnar%3:01:00:: 02837047 1 0 -ulnar_artery%1:08:00:: 05355706 1 0 -ulnar_nerve%1:08:00:: 05568767 1 0 -ulnar_vein%1:08:00:: 05384691 1 0 -ulrich_zwingli%1:18:00:: 11408243 1 0 -ulster%1:06:00:: 04506402 2 0 -ulster%1:15:00:: 08888181 1 0 -ulster_defence_association%1:14:00:: 08046759 1 0 -ult%5:00:00:past:00 01731208 1 0 -ulterior%5:00:00:covert:00 01707733 1 0 -ulterior%5:00:00:distant:02 00451291 2 0 -ulterior%5:00:00:subsequent:00 00123485 3 0 -ulteriority%1:07:00:: 05215257 1 0 -ulteriorly%4:02:00:: 00516244 1 0 -ultima%1:10:00:: 06305029 1 0 -ultima_thule%1:15:00:: 08954269 1 0 -ultimacy%1:26:00:: 13942104 1 0 -ultimate%1:07:00:: 04728999 1 0 -ultimate%3:00:00:: 01578312 1 18 -ultimate%5:00:00:last:00 01013961 2 5 -ultimate_frisbee%1:04:00:: 00477986 1 0 -ultimately%4:02:01:: 00047903 1 5 -ultimateness%1:26:00:: 13942104 1 0 -ultimatum%1:10:00:: 07191696 1 1 -ultimo%5:00:00:past:00 01731208 1 0 -ultra%5:00:00:immoderate:00 01535270 1 1 -ultra_vires%3:00:00:: 01348083 1 0 -ultra_vires%4:02:00:: 00482562 1 0 -ultracef%1:06:00:: 02989178 1 0 -ultracentrifugation%1:22:00:: 13570923 1 4 -ultracentrifuge%1:06:00:: 04506506 1 3 -ultracentrifuge%2:38:00:: 02047500 1 0 -ultraconservative%1:18:00:: 10508475 1 0 -ultraconservative%5:00:00:conservative:00 00575126 1 0 -ultrahigh_frequency%1:07:00:: 05057805 1 0 -ultramarine%1:07:00:: 04974859 2 0 -ultramarine%1:27:00:: 15083146 1 0 -ultramarine%5:00:00:chromatic:00 00384936 1 0 -ultramarine_blue%1:27:00:: 15083146 1 0 -ultramicroscope%1:06:00:: 04506688 1 0 -ultramicroscopic%3:01:00:: 03142799 1 0 -ultramodern%5:00:00:modern:00 01536641 1 1 -ultramontane%1:18:00:: 11356018 1 0 -ultramontane%3:01:00:: 03142927 1 0 -ultramontane%5:00:01:cismontane:00 00410268 3 0 -ultramontane%5:00:02:tramontane:00 00410668 2 0 -ultramontanism%1:09:00:: 05987650 1 0 -ultranationalism%1:07:00:: 04878646 1 0 -ultranationalistic%5:00:00:patriotic:00 01740358 1 0 -ultrasonic%5:00:00:inaudible:00 00175300 1 8 -ultrasonically%4:02:00:: 00006729 1 1 -ultrasonography%1:04:00:: 00901789 1 0 -ultrasound%1:04:00:: 00901789 2 0 -ultrasound%1:19:00:: 11481209 1 0 -ultrasuede%1:06:00:: 04506895 1 0 -ultraviolet%1:19:00:: 11521940 1 3 -ultraviolet%5:00:00:invisible:00 02518601 1 2 -ultraviolet_illumination%1:19:00:: 11521940 1 1 -ultraviolet_lamp%1:06:00:: 04506994 1 0 -ultraviolet_light%1:19:00:: 11521940 1 3 -ultraviolet_radiation%1:19:00:: 11521940 1 2 -ultraviolet_source%1:06:00:: 04506994 1 0 -ultraviolet_spectrum%1:19:00:: 11522325 1 2 -ulugh_muz_tagh%1:17:00:: 09465135 1 0 -ulugh_muztagh%1:17:00:: 09465135 1 0 -ululate%2:32:00:: 01046932 1 0 -ululation%1:10:00:: 07126734 1 0 -ulva%1:05:00:: 01408547 1 0 -ulvaceae%1:05:00:: 01408383 1 0 -ulvales%1:05:00:: 01408253 1 0 -ulvophyceae%1:05:00:: 01408088 1 0 -ulysses%1:18:00:: 09593044 1 0 -ulysses_grant%1:18:00:: 11011123 1 0 -ulysses_s._grant%1:18:00:: 11011123 1 0 -ulysses_simpson_grant%1:18:00:: 11011123 1 0 -uma%1:05:00:: 01678887 2 0 -uma%1:18:00:: 09529364 1 0 -uma_notata%1:05:00:: 01679005 1 0 -umar_al-mukhtar_forces%1:14:00:: 08021785 1 0 -umayyad%1:14:00:: 08159331 1 0 -umbel%1:20:00:: 13131028 1 0 -umbel-like%5:00:00:convex:00 00538469 1 0 -umbellales%1:20:00:: 12213197 1 0 -umbellar%3:01:00:: 03026504 1 0 -umbellate%3:01:00:: 03026504 1 0 -umbellate%5:00:00:convex:00 00538469 2 0 -umbellifer%1:20:00:: 12930778 1 0 -umbelliferae%1:20:00:: 12930044 1 0 -umbelliferous%3:01:00:: 02819848 1 0 -umbelliferous_plant%1:20:00:: 12930778 1 0 -umbelliform%3:01:00:: 02819734 1 0 -umbellularia%1:20:00:: 11707668 1 0 -umbellularia_californica%1:20:00:: 11707827 1 0 -umber%1:07:00:: 04972451 2 0 -umber%1:27:00:: 15083429 1 0 -umber%5:00:00:chromatic:00 00385059 1 0 -umbilical%1:08:00:: 05520479 1 0 -umbilical%3:01:00:: 02840935 1 0 -umbilical_cord%1:08:00:: 05520479 1 0 -umbilical_hernia%1:26:00:: 14297489 1 0 -umbilical_vein%1:08:00:: 05384817 1 0 -umbilical_vesicle%1:05:00:: 01465243 1 0 -umbilicate%5:00:00:concave:00 00537169 1 0 -umbilicus%1:08:00:: 05556595 1 0 -umbo%1:08:00:: 05324553 1 0 -umbra%1:26:00:: 13985098 1 0 -umbrage%1:12:00:: 07517550 1 0 -umbrageous%5:00:00:angry:00 00115494 2 0 -umbrageous%5:00:00:shaded:01 00276862 1 0 -umbrella%1:04:00:: 00829918 2 0 -umbrella%1:04:01:: 00383071 3 0 -umbrella%1:06:00:: 04507155 1 2 -umbrella%5:00:00:comprehensive:00 00528875 1 0 -umbrella-shaped%5:00:00:formed:00 02151050 1 0 -umbrella_arum%1:20:00:: 11783162 1 0 -umbrella_bird%1:05:00:: 01552333 1 0 -umbrella_fern%1:20:00:: 13171210 1 0 -umbrella_magnolia%1:20:00:: 11710393 1 0 -umbrella_pine%1:20:01:: 11611758 1 0 -umbrella_plant%1:20:00:: 12797368 1 0 -umbrella_plant%1:20:01:: 12150722 3 0 -umbrella_plant%1:20:02:: 12602434 2 0 -umbrella_sedge%1:20:00:: 12150722 1 0 -umbrella_tent%1:06:00:: 04507326 1 1 -umbrella_tree%1:20:01:: 11710393 2 0 -umbrella_tree%1:20:02:: 11800565 1 0 -umbrellalike%5:00:00:rounded:00 02047726 1 0 -umbrellawort%1:20:00:: 11839460 1 0 -umbria%1:15:00:: 08812732 1 0 -umbrian%1:10:00:: 06962244 1 0 -umbrina%1:05:00:: 02596888 1 0 -umbrina_roncador%1:05:00:: 02597004 1 0 -umbundu%1:10:00:: 06995439 1 0 -umlaut%1:10:00:: 06823760 1 0 -umma%1:14:00:: 08224684 1 0 -umma_tameer-e-nau%1:14:00:: 08048300 1 0 -ummah%1:14:00:: 08224684 1 0 -ump%1:18:00:: 10735984 1 0 -umpirage%1:04:00:: 01191755 2 0 -umpirage%1:10:00:: 07151285 1 0 -umpire%1:18:00:: 10735984 1 0 -umpire%1:18:01:: 09803429 2 0 -umpire%2:33:00:: 01085237 1 0 -umpteen%5:00:00:many:00 01552802 1 0 -umpteenth%5:00:00:ordinal:00 02204580 1 0 -umptieth%5:00:00:ordinal:00 02204580 1 0 -umteen%5:00:00:many:00 01552802 1 0 -umteenth%5:00:00:ordinal:00 02204580 1 0 -un%1:14:00:: 08295580 1 1 -un-american%5:00:00:unpatriotic:00 01740772 1 0 -un-come-at-able%5:00:00:inaccessible:00 00020647 1 0 -un-get-at-able%5:00:00:inaccessible:00 00020647 1 0 -un_agency%1:14:00:: 08299493 1 0 -unabashed%5:00:00:unashamed:00 00155886 1 0 -unabashedly%4:02:00:: 00005453 1 0 -unabated%5:00:00:intense:00 01513951 1 1 -unable%3:00:00:: 00002098 1 20 -unable%5:00:00:impotent:00 01825080 3 0 -unable%5:00:00:incapable:00 00307794 2 5 -unable_to_help%4:02:00:: 00208773 1 0 -unabridged%1:10:00:: 06420219 1 0 -unabridged%3:00:00:: 00004980 1 0 -unabridged_dictionary%1:10:00:: 06420219 1 0 -unabused%3:00:01:: 00017688 1 0 -unaccented%3:00:04:: 02320886 1 0 -unaccented%5:00:00:unstressed:00 02320442 2 0 -unacceptability%1:07:00:: 04793925 1 0 -unacceptable%3:00:00:: 00018584 2 0 -unacceptable%5:00:00:intolerable:00 02436025 3 0 -unacceptable%5:00:00:nonstandard:03 02298766 4 0 -unacceptable%5:00:00:unsatisfactory:00 02083053 1 1 -unacceptableness%1:07:00:: 04793925 1 0 -unacceptably%4:02:00:: 00055518 1 0 -unaccepted%5:00:00:nonstandard:03 02298766 1 0 -unaccessible%3:00:00:: 00019874 1 0 -unaccommodating%3:00:00:: 00021403 1 0 -unaccommodating%5:00:00:unhelpful:00 01198188 2 0 -unaccompanied%3:00:00:: 02251057 1 2 -unaccompanied%3:00:01:: 02252182 2 0 -unaccompanied%4:02:00:: 00157967 1 0 -unaccompanied%5:00:00:separate:00 02111486 3 0 -unaccountable%5:00:00:inexplicable:00 00940108 1 1 -unaccountable%5:00:00:irresponsible:00 01999085 2 0 -unaccountably%4:02:00:: 00482659 1 0 -unaccredited%5:00:00:unauthorized:00 00179815 1 0 -unaccustomed%3:00:00:: 00024834 1 0 -unaccustomed%5:00:00:unusual:00 00491320 2 0 -unachievable%5:00:00:impossible:00 01824081 1 1 -unachievably%4:02:00:: 00483461 1 0 -unacknowledged%3:00:00:: 00028672 1 0 -unacknowledged%5:00:00:undeclared:00 00688740 2 0 -unacquainted%5:00:00:unfamiliar:00 00966960 2 0 -unacquainted%5:00:00:uninformed:00 01309220 1 0 -unacquainted_with%5:00:00:unfamiliar:00 00966960 1 0 -unacquisitive%3:00:00:: 00031533 1 0 -unactable%3:00:00:: 00795959 1 0 -unadaptability%1:07:00:: 04660080 1 0 -unadaptable%3:00:00:: 01029044 1 0 -unadapted%5:00:00:maladjusted:00 00351991 2 0 -unadapted%5:00:00:unmodified:00 01541156 1 0 -unaddicted%3:00:00:: 00047566 1 0 -unaddressed%3:00:00:: 00050947 1 0 -unadjustable%5:00:00:fixed:00 01060712 1 0 -unadjusted%3:00:00:: 00351226 1 12 -unadjusted%5:00:00:maladjusted:00 00351991 2 0 -unadoptable%3:00:00:: 00055906 1 0 -unadorned%3:00:00:: 00060397 1 0 -unadulterated%5:00:00:pure:02 01907481 1 0 -unadulterated%5:00:00:unmitigated:00 01520091 2 0 -unadventurous%3:00:00:: 00066800 1 0 -unadvisable%3:00:00:: 00067767 1 0 -unadvised%3:00:02:: 00068278 1 0 -unadvised%5:00:00:uninformed:00 01309526 2 0 -unadvisedly%4:02:02:: 00354781 1 0 -unaerated%5:00:00:unventilated:00 02509854 1 0 -unaesthetic%3:00:00:: 00070583 1 0 -unaffected%3:00:00:: 00071992 1 1 -unaffected%3:00:01:: 00074346 4 0 -unaffected%3:00:02:: 01560320 3 0 -unaffected%5:00:01:insensitive:02 02107827 2 1 -unaffectedness%1:07:00:: 04786326 1 0 -unaffecting%5:00:00:unmoving:00 01561694 1 0 -unaffectionate%5:00:00:unloving:00 01467046 1 0 -unaffiliated%5:00:00:independent:00 00730009 1 0 -unaffixed%3:00:00:: 00159381 1 0 -unafraid%3:00:00:: 00081671 1 1 -unafraid%3:00:02:: 02093305 2 0 -unaged%5:00:00:green:00 01494146 1 0 -unaggressive%3:00:00:: 00084956 1 0 -unagitated%3:00:00:: 00087152 2 0 -unagitated%3:00:02:: 00088658 1 0 -unagitated%5:00:00:composed:00 00529657 3 0 -unai%1:05:01:: 02457945 2 0 -unai%1:05:02:: 02458135 1 0 -unaided%5:00:00:unassisted:00 02354403 1 0 -unaired%5:00:00:unventilated:00 02509484 1 0 -unairworthy%3:00:00:: 02088314 1 0 -unalarming%3:00:00:: 00196560 1 0 -unalert%3:00:00:: 00092551 1 0 -unalienable%3:00:00:: 00093810 1 0 -unalike%3:00:00:: 01410905 1 0 -unalloyed%5:00:00:pure:02 01907595 1 0 -unalterability%1:07:00:: 04742084 1 0 -unalterability%1:07:01:: 04740655 2 0 -unalterable%3:00:00:: 00349523 1 1 -unalterable%5:00:00:incommutable:00 00349148 2 0 -unalterable%5:00:00:unchangeable:00 00347400 3 0 -unalterably%4:02:00:: 00482810 1 0 -unaltered%3:00:00:: 00353206 1 0 -unambiguity%1:07:00:: 04821802 1 1 -unambiguous%3:00:00:: 00103696 1 2 -unambiguous%3:00:04:: 00896555 2 1 -unambiguously%4:02:00:: 00175490 2 0 -unambiguously%4:02:01:: 00220490 1 2 -unambitious%3:00:00:: 00105023 1 0 -unambitiously%4:02:00:: 00262403 1 0 -unamended%3:00:00:: 00354330 1 0 -unanalyzable%5:00:00:simple:02 02175684 1 0 -unanalyzed%3:00:00:: 00417032 1 0 -unangry%3:00:00:: 00116463 1 0 -unanimated%3:00:00:: 00119409 1 0 -unanimity%1:26:00:: 13972387 1 0 -unanimous%5:00:00:accordant:00 00553732 1 3 -unanimous%5:00:00:undiversified:00 00784215 2 0 -unanimously%4:02:00:: 00106316 1 5 -unannealed%5:00:00:untempered:02 01522214 1 0 -unannounced%5:00:00:unexpected:00 00930540 1 0 -unanswerable%5:00:00:incontestable:00 00591710 1 0 -unanswered%5:00:00:nonreciprocal:00 01947127 1 1 -unanticipated%5:00:00:unexpected:00 00930765 1 0 -unapologetic%3:00:00:: 01632411 1 0 -unappareled%5:00:00:unclothed:00 00460157 1 0 -unapparent%5:00:00:unobvious:00 01620286 1 0 -unappealable%3:00:00:: 00133065 1 0 -unappealing%3:00:00:: 00171044 2 0 -unappealing%3:00:02:: 02376562 1 0 -unappealingly%4:02:00:: 00261825 1 0 -unappeasable%5:00:00:implacable:00 01785341 1 0 -unappendaged%3:00:00:: 00133335 1 0 -unappetising%3:00:00:: 00133851 1 0 -unappetisingness%1:07:00:: 04996823 1 0 -unappetizing%3:00:00:: 00133851 1 0 -unappetizingness%1:07:00:: 04996823 1 0 -unappreciated%5:00:00:unacknowledged:00 00028867 2 0 -unappreciated%5:00:00:unrewarding:00 02016145 1 0 -unappreciative%5:00:00:ungrateful:00 01147300 1 0 -unappreciatively%4:02:00:: 00271470 1 0 -unapprehensive%5:00:00:unafraid:00 00081930 1 0 -unapproachability%1:07:00:: 04657244 1 0 -unapproachable%3:00:00:: 00134401 1 0 -unapproachable%5:00:00:inaccessible:00 00020410 2 0 -unarbitrary%3:00:00:: 00720082 1 0 -unarguable%5:00:00:incontestable:00 00591406 1 0 -unarguably%4:02:00:: 00483042 1 0 -unargumentative%3:00:00:: 00604399 1 0 -unarm%2:33:00:: 01088005 1 0 -unarmed%3:00:01:: 00142917 1 1 -unarmed%3:00:02:: 00145995 2 0 -unarmored%3:00:01:: 00144728 2 0 -unarmored%3:00:02:: 00147528 1 0 -unarmoured%3:00:01:: 00144728 2 0 -unarmoured%3:00:02:: 00147528 1 0 -unarticulate%3:00:00:: 00151105 1 0 -unarticulated%3:00:00:: 00153652 1 0 -unarticulated%5:00:00:inarticulate:00 00152784 2 0 -unartistic%5:00:00:inaesthetic:00 00070839 1 0 -unary%5:00:00:single:05 02215567 1 0 -unary_operation%1:22:00:: 13517080 1 0 -unascertainable%5:00:00:indeterminable:00 00739663 1 0 -unascribable%3:00:00:: 00172452 1 0 -unashamed%3:00:00:: 00154965 1 0 -unashamedly%4:02:00:: 00209518 1 1 -unasked%5:00:00:unrequested:00 01965512 1 2 -unassailable%5:00:00:incontestable:00 00591513 3 0 -unassailable%5:00:00:inviolable:00 02510786 2 0 -unassailable%5:00:00:invulnerable:00 02526124 1 0 -unassailably%4:02:00:: 00482810 1 0 -unassertive%3:00:00:: 00156839 1 0 -unassertively%4:02:00:: 00266647 1 0 -unassertiveness%1:12:00:: 07523649 1 0 -unassignable%5:00:00:inalienable:00 00094324 1 0 -unassigned%3:00:00:: 00847306 1 0 -unassisted%3:00:00:: 02354129 2 0 -unassisted%5:00:00:unsupported:02 02353488 1 2 -unassuming%5:00:00:modest:02 01539444 1 0 -unassumingly%4:02:00:: 00483330 1 0 -unassumingness%1:07:00:: 04786595 1 0 -unassured%5:00:00:insecure:01 02093802 1 0 -unasterisked%5:00:00:unmarked:00 01481282 1 1 -unattached%3:00:00:: 00158407 2 0 -unattached%5:00:00:unconnected:00 00568881 1 1 -unattached%5:00:00:vagile:00 00160288 3 0 -unattackable%5:00:00:invulnerable:00 02526124 1 0 -unattainable%5:00:00:impossible:00 01824081 1 0 -unattainableness%1:26:00:: 14483508 1 0 -unattainably%4:02:00:: 00483461 1 0 -unattended%5:00:00:unaccompanied:00 02251899 2 0 -unattended%5:00:00:uncared-for:00 00308720 3 0 -unattended%5:00:00:unsupervised:00 02350590 1 0 -unattired%5:00:00:unclothed:00 00460157 1 0 -unattractive%3:00:00:: 00169164 1 1 -unattractive%5:00:00:unappealing:00 00171447 2 1 -unattractive%5:00:00:uninviting:00 01359159 3 0 -unattractively%4:02:00:: 00242172 1 0 -unattractiveness%1:07:00:: 04691476 1 0 -unattributable%3:00:00:: 00172452 1 0 -unau%1:05:01:: 02457945 2 0 -unau%1:05:02:: 02458135 1 0 -unauthentic%5:00:00:counterfeit:00 01117677 1 1 -unauthorised%3:00:00:: 00179486 1 0 -unauthorised%5:00:00:unofficial:00 01634199 2 0 -unauthorized%3:00:00:: 00179486 1 1 -unauthorized%5:00:00:unofficial:00 01634199 2 0 -unauthorized_absence%1:04:00:: 00055793 1 0 -unavailability%1:07:00:: 04722910 1 0 -unavailable%3:00:00:: 00185921 1 4 -unavailing%5:00:00:useless:00 02497471 1 1 -unavenged%3:44:00:: 03147408 1 0 -unavoidability%1:07:00:: 04753929 1 0 -unavoidable%5:00:00:inevitable:00 00343360 1 5 -unavoidable_casualty%1:11:00:: 07315350 1 0 -unavoidably%4:02:00:: 00208557 1 1 -unavowed%5:00:00:concealed:00 02090228 1 0 -unavowed%5:00:00:unacknowledged:00 00028984 3 0 -unavowed%5:00:00:undeclared:00 00688855 2 0 -unawakened%3:00:00:: 02014611 1 0 -unawakened%5:00:00:asleep:00 00189511 2 0 -unaware%3:00:00:: 00191603 1 8 -unawareness%1:09:00:: 05679611 1 2 -unawares%4:02:00:: 00483647 2 0 -unawares%4:02:01:: 00483850 1 1 -unawares%4:02:02:: 00452624 3 0 -unawed%3:00:00:: 02015055 1 0 -unbacked%5:00:00:unsupported:02 02353488 1 0 -unbaffled%5:00:00:unperplexed:00 01767207 1 0 -unbalance%1:26:00:: 14004149 1 1 -unbalance%1:26:01:: 14397714 2 0 -unbalance%2:37:00:: 01764586 2 0 -unbalance%2:42:00:: 02673630 1 0 -unbalanced%3:00:00:: 00894757 1 0 -unbalanced%5:00:00:insane:00 02075321 2 0 -unbalanced%5:00:00:unequal:00 00893239 3 0 -unbalconied%3:00:00:: 00206127 1 0 -unbanded%3:00:00:: 00223119 1 0 -unbaptised%3:00:00:: 02594443 1 0 -unbaptized%3:00:00:: 02594443 1 0 -unbar%2:35:00:: 01343079 1 0 -unbarred%5:00:00:unfastened:00 02096382 1 0 -unbarreled%3:00:00:: 00206317 1 0 -unbarrelled%3:00:00:: 00206317 1 0 -unbearable%3:00:00:: 02435671 1 0 -unbearably%4:02:00:: 00483963 1 0 -unbeatable%5:00:00:unconquerable:00 00570322 2 0 -unbeatable%5:00:00:unstoppable:00 02288252 1 0 -unbeaten%5:00:00:undefeated:00 00695335 1 0 -unbecoming%5:00:00:improper:00 01880918 1 0 -unbecomingly%4:02:00:: 00305153 1 0 -unbecomingness%1:07:00:: 04902797 1 0 -unbefitting%5:00:00:inappropriate:00 00136081 1 0 -unbeholden%5:00:00:unobligated:00 01617591 1 0 -unbeknown%4:02:00:: 00484062 1 0 -unbeknown%5:00:00:unknown:00 01377488 1 0 -unbeknownst%4:02:00:: 00484062 1 0 -unbeknownst%5:00:00:unknown:00 01377488 1 0 -unbelief%1:09:00:: 05979909 1 0 -unbelievable%3:00:04:: 00645493 1 1 -unbelievable%5:00:00:implausible:00 01800169 2 0 -unbelievably%4:02:00:: 00244787 2 0 -unbelievably%4:02:03:: 00295825 1 0 -unbeliever%1:18:00:: 10015897 1 0 -unbelieving%5:00:00:agnostic:00 01306087 2 0 -unbelieving%5:00:00:incredulous:00 00647247 3 0 -unbelieving%5:00:00:irreligious:00 01784217 1 0 -unbelievingly%4:02:00:: 00296425 1 0 -unbeloved%5:00:00:unloved:00 01463414 1 0 -unbelt%2:35:00:: 01366199 1 0 -unbelted%3:00:00:: 00223683 1 0 -unbend%2:29:00:: 00025985 6 0 -unbend%2:29:01:: 00026385 5 0 -unbend%2:30:00:: 00419685 4 0 -unbend%2:35:00:: 01281069 3 0 -unbend%2:35:01:: 01344537 2 0 -unbend%2:38:00:: 02035781 1 0 -unbendable%5:00:00:resolute:00 01990653 1 0 -unbending%5:00:00:unadaptable:00 01029151 1 0 -unbeneficed%3:00:00:: 00208150 1 0 -unbent%5:00:00:erect:00 01237754 2 0 -unbent%5:00:00:straight:01 02311293 1 0 -unbiased%5:00:00:impartial:00 01723856 1 0 -unbiased%5:00:00:nonpartisan:00 00731725 2 0 -unbiassed%5:00:00:impartial:00 01723856 1 0 -unbiassed%5:00:00:nonpartisan:00 00731725 2 0 -unbigoted%5:00:00:tolerant:00 02436551 1 0 -unbind%2:35:00:: 01304197 1 0 -unbitter%5:00:00:unresentful:00 00117235 1 0 -unbleached%5:00:00:natural:02 01571181 1 0 -unblemished%3:00:00:: 00247013 1 0 -unblended%3:00:00:: 01329616 1 0 -unblessed%5:00:00:unendowed:00 00671683 1 0 -unblinking%5:00:00:unafraid:00 00082034 2 0 -unblinking%5:00:00:unemotional:00 00858780 1 0 -unblinkingly%4:02:00:: 00508367 1 1 -unblock%2:30:00:: 00269682 3 0 -unblock%2:33:00:: 01075612 2 0 -unblock%2:35:02:: 01616460 1 0 -unbloody%5:00:00:bloodless:00 00249576 1 0 -unblushing%5:00:00:unashamed:00 00155720 1 0 -unblushingly%4:02:00:: 00484193 1 0 -unbodied%3:00:00:: 00629146 1 0 -unbodied%5:00:00:incorporeal:00 00631040 2 0 -unbolt%2:35:00:: 01348987 1 0 -unbolted%5:00:00:unfastened:00 02096382 1 0 -unbooked%5:00:00:unreserved:02 01988934 1 0 -unbordered%3:00:00:: 00259256 1 0 -unborn%3:00:00:: 01733661 1 1 -unbosom%2:32:00:: 00936648 1 0 -unbound%3:00:01:: 00254152 2 0 -unbound%3:00:02:: 00257462 1 0 -unbound%5:00:00:free:02 01058756 3 0 -unbounded%5:00:00:infinite:00 01007657 1 1 -unbounded_interval%1:09:00:: 06016600 1 0 -unboundedness%1:07:00:: 05209324 1 0 -unbowed%5:00:00:erect:00 01237754 1 0 -unbowed%5:00:00:undefeated:00 00695432 2 0 -unbox%2:35:00:: 01485393 1 0 -unbrace%2:30:00:: 00225580 3 0 -unbrace%2:30:01:: 00419866 2 0 -unbrace%2:35:00:: 01284461 1 0 -unbraced%5:00:00:unsupported:00 02352572 1 0 -unbraid%2:35:00:: 01519857 1 0 -unbrainwashed%3:00:00:: 00629808 1 0 -unbranched%5:00:00:branchless:00 00614868 1 0 -unbranching%5:00:00:branchless:00 00614868 1 0 -unbranded%3:00:00:: 01481513 1 0 -unbreakable%3:00:00:: 00709744 1 1 -unbreakableness%1:07:00:: 04939987 1 0 -unbridgeable%3:00:00:: 00278418 1 0 -unbridle%2:40:00:: 02366451 1 0 -unbridled%5:00:00:unrestrained:00 02001596 1 0 -unbroken%3:00:01:: 00289365 5 0 -unbroken%3:00:02:: 00290923 1 3 -unbroken%3:00:03:: 00289799 4 0 -unbroken%3:00:04:: 01833226 3 0 -unbroken%5:00:00:wild:01 02389719 2 1 -unbrushed%5:00:00:ungroomed:00 02428884 1 0 -unbuckle%2:35:00:: 01548447 1 0 -unburden%2:35:00:: 01487927 2 0 -unburden%2:40:00:: 02360171 1 0 -unburdened%3:00:00:: 00870303 1 0 -unburdened%5:00:00:unencumbered:00 00869138 2 0 -unburied%3:00:00:: 00292872 1 0 -unburnished%5:00:00:unpolished:00 01813289 1 0 -unbutton%2:35:00:: 01368001 1 0 -unbuttoned%3:00:00:: 00297097 1 1 -unbuttoned%5:00:00:unrestrained:00 02001776 2 0 -uncalled-for%5:00:00:unnecessary:00 01582049 2 0 -uncalled-for%5:00:00:unwanted:00 02528809 1 0 -uncamphorated%3:00:00:: 00306232 1 0 -uncannily%4:02:00:: 00484360 1 0 -uncanny%5:00:00:extraordinary:00 01677733 2 0 -uncanny%5:00:00:supernatural:00 01575424 1 1 -uncapped%5:00:00:uncrowned:02 00655668 1 0 -uncarbonated%5:00:00:noneffervescent:00 02277182 1 0 -uncared-for%3:00:00:: 00308593 1 0 -uncaring%5:00:00:inconsiderate:00 00639594 2 0 -uncaring%5:00:00:unloving:00 01467046 1 0 -uncarpeted%3:00:00:: 00316477 1 0 -uncarved%3:00:00:: 00317821 1 0 -uncase%2:29:00:: 00049900 1 0 -uncastrated%3:00:00:: 02137305 1 0 -uncategorised%5:00:00:unclassified:01 00415116 1 0 -uncategorized%5:00:00:unclassified:01 00415116 1 0 -uncaulked%3:00:00:: 01399671 1 0 -uncaused%5:00:00:unintended:00 01339203 1 1 -unceasing%5:00:00:continuous:01 00595299 2 0 -unceasing%5:00:00:permanent:00 01755024 1 0 -unceasingly%4:02:00:: 00282858 1 1 -uncensored%3:00:00:: 00319262 1 0 -unceremonial%5:00:00:informal:01 01045067 1 0 -unceremonious%5:00:00:discourteous:00 00641036 2 0 -unceremonious%5:00:00:informal:01 01045067 1 0 -unceremoniously%4:02:00:: 00220824 1 0 -unceremoniousness%1:07:00:: 04912610 1 0 -uncertain%3:00:01:: 00336168 2 3 -uncertain%3:00:02:: 00337404 1 6 -uncertain%3:00:03:: 00341405 4 0 -uncertain%3:00:05:: 02087450 3 0 -uncertain%5:00:00:ambiguous:00 00103567 7 0 -uncertain%5:00:00:unreliable:00 00725522 6 0 -uncertain%5:00:00:variable:00 02504558 5 0 -uncertainly%4:02:00:: 00484462 2 0 -uncertainly%4:02:01:: 00174232 1 2 -uncertainness%1:07:00:: 04756887 1 0 -uncertainty%1:07:00:: 04756887 1 6 -uncertainty%1:09:00:: 05698247 2 4 -uncertainty_principle%1:09:00:: 06108079 1 0 -uncertified%3:00:00:: 00342902 1 1 -unchain%2:35:00:: 01288808 1 0 -unchain%2:35:01:: 01288554 2 0 -unchained%5:00:00:unbound:01 00254296 1 0 -unchallengeable%5:00:00:uncontroversial:00 00602888 1 0 -unchallenged%5:00:00:uncontroversial:00 00603039 1 0 -unchangeability%1:07:00:: 04737934 1 0 -unchangeable%3:00:00:: 00346991 1 1 -unchangeableness%1:07:00:: 04737934 1 0 -unchangeably%4:02:00:: 00482810 1 0 -unchanged%3:00:00:: 00355258 1 2 -unchanged%3:00:04:: 00353206 2 1 -unchanging%5:00:00:consistent:00 00577782 1 0 -unchanging%5:00:00:unchangeable:00 00348018 2 0 -unchangingness%1:07:00:: 04737934 1 0 -uncharacteristic%3:00:00:: 00357983 1 0 -uncharacteristically%4:02:00:: 00247712 1 0 -uncharged%3:00:00:: 00358951 1 4 -uncharitable%3:00:00:: 00359862 1 0 -uncharted%5:00:00:unknown:00 01377257 1 0 -unchartered%3:00:00:: 00360235 1 0 -unchaste%3:00:00:: 00361509 1 0 -uncheckable%5:00:00:unmanageable:00 01475733 1 1 -unchecked%5:00:00:unrestrained:00 02001596 1 0 -uncheerful%3:00:04:: 00364479 1 0 -uncheerfulness%1:07:00:: 04631298 2 0 -uncheerfulness%1:12:00:: 07537068 1 0 -unchewable%5:00:01:tough:01 02446239 1 0 -unchivalrous%5:00:00:discourteous:00 00640931 1 0 -unchivalrously%4:02:00:: 00484570 1 0 -unchristian%3:00:00:: 00411481 1 0 -unchristianly%5:00:00:unchristian:00 00411694 1 0 -unchristlike%5:00:00:unchristian:00 00411694 1 0 -unchurch%2:32:00:: 01030397 1 0 -uncial%1:10:00:: 06353225 1 0 -uncial%3:01:00:: 02819988 1 0 -unciform_bone%1:08:00:: 05273408 1 0 -uncivil%3:00:00:: 00642725 1 0 -uncivilised%5:00:00:noncivilized:00 00412788 1 0 -uncivilized%5:00:00:noncivilized:00 00412788 1 0 -uncivilly%4:02:00:: 00338018 1 0 -unclad%5:00:00:unclothed:00 00460157 1 0 -unclaimed%5:00:00:unwanted:00 02528921 1 1 -unclasp%2:35:00:: 01222485 1 1 -unclassifiable%5:00:00:unidentifiable:00 01273604 1 0 -unclassified%3:00:01:: 00415002 2 0 -unclassified%3:00:02:: 00416415 1 0 -uncle%1:18:00:: 10736091 1 6 -uncle%1:18:01:: 10736259 2 1 -uncle_joe%1:18:00:: 11318462 1 0 -uncle_remus%1:18:00:: 09604014 1 0 -uncle_sam%1:18:00:: 09604345 1 3 -uncle_tom%1:18:00:: 09638245 1 0 -uncle_tom%1:18:01:: 09604227 2 0 -unclean%3:00:00:: 00427786 2 0 -unclean%3:00:04:: 00419289 1 2 -uncleanliness%1:07:00:: 04896724 1 0 -uncleanly%5:00:00:dirty:01 00423689 1 0 -uncleanness%1:26:00:: 14497763 1 0 -unclear%3:00:00:: 00430191 2 0 -unclear%3:00:04:: 00698088 1 0 -unclear%5:00:00:illegible:00 01405523 3 0 -uncleared%3:00:00:: 01290333 1 0 -unclearly%4:02:00:: 00039217 1 0 -unclearness%1:07:00:: 04823866 1 0 -unclimbable%3:00:00:: 02083516 1 0 -unclimbable%5:00:00:impassable:00 01725422 2 0 -unclip%2:35:00:: 01367760 1 0 -unclipped%5:00:00:untrimmed:00 02455188 1 0 -uncloak%2:30:00:: 00179227 2 0 -uncloak%2:32:00:: 00935631 1 0 -unclog%2:35:00:: 01479138 1 0 -unclogged%5:00:00:unobstructed:00 01623088 1 0 -unclothe%2:29:00:: 00049900 3 0 -unclothe%2:35:00:: 01339903 2 0 -unclothe%2:40:00:: 02314946 1 0 -unclothed%3:00:00:: 00457598 1 0 -unclouded%5:00:00:clear:02 00432861 4 0 -unclouded%5:00:00:clearheaded:00 00435374 3 0 -unclouded%5:00:00:pure:02 01906464 1 1 -unclouded%5:00:01:clear:03 00460946 2 0 -uncloudedness%1:07:00:: 04701460 1 0 -unclutter%2:30:00:: 00181664 1 0 -uncluttered%5:00:00:tidy:00 02424095 1 0 -unco%4:02:00:: 00107230 1 0 -uncoated%3:00:00:: 01699982 1 0 -uncoerced%5:00:00:voluntary:01 02521036 1 0 -uncoil%2:35:00:: 01524199 1 0 -uncoiled%3:00:00:: 02318272 1 0 -uncollected%3:44:00:: 03148137 1 0 -uncollectible%5:00:00:invalid:00 02500050 1 0 -uncolored%3:00:00:: 00401650 1 0 -uncolored%5:00:00:natural:02 01571181 2 0 -uncoloured%3:00:00:: 00401650 1 0 -uncolumned%3:00:00:: 00141522 1 0 -uncombable%5:00:00:uncombed:00 02429377 1 1 -uncombed%3:00:00:: 02429182 1 0 -uncombined%3:00:00:: 01330786 1 0 -uncomely%5:00:00:improper:00 01880918 1 0 -uncomfortable%3:00:00:: 00478015 2 2 -uncomfortable%3:00:01:: 00479933 1 2 -uncomfortableness%1:12:00:: 07507329 2 0 -uncomfortableness%1:26:00:: 14446652 1 0 -uncomfortably%4:02:00:: 00155187 1 1 -uncommercial%5:00:00:noncommercial:00 00484782 1 0 -uncommercialised%5:00:00:noncommercial:00 00484932 1 0 -uncommercialized%5:00:00:noncommercial:00 00484932 1 0 -uncommitted%3:00:00:: 00518716 1 0 -uncommitted%3:00:04:: 00158407 2 0 -uncommitted%5:00:00:free:00 01062631 3 0 -uncommon%3:00:00:: 00487653 1 4 -uncommon%5:00:00:extraordinary:00 01678112 2 0 -uncommonly%4:02:00:: 00484801 1 0 -uncommonness%1:07:00:: 04796946 2 0 -uncommonness%1:07:01:: 04797130 1 0 -uncommunicative%3:00:00:: 00500569 1 0 -uncommunicativeness%1:07:00:: 04651784 1 0 -uncompahgre_peak%1:17:00:: 09465290 1 0 -uncomparable%3:00:00:: 00504592 1 0 -uncomparably%4:02:00:: 00370421 1 0 -uncompartmented%3:00:00:: 00329268 1 0 -uncompassionate%3:00:00:: 00507053 1 0 -uncompensated%5:00:00:unpaid:00 01710946 1 0 -uncompetitive%5:00:00:noncompetitive:00 00513716 1 0 -uncomplaining%3:00:00:: 00514278 1 0 -uncomplainingly%4:02:00:: 00288091 1 0 -uncomplete%3:00:00:: 00523978 1 0 -uncompleted%5:00:00:incomplete:00 00525315 2 0 -uncompleted%5:00:00:unfinished:01 01004541 1 0 -uncomplicated%5:00:00:easy:01 00750296 2 0 -uncomplicated%5:00:00:simple:02 02175980 1 0 -uncomplimentary%3:00:00:: 00906455 2 0 -uncomplimentary%3:00:01:: 00908315 1 0 -uncompounded%5:00:00:uncombined:00 01330890 1 0 -uncomprehended%5:00:00:ununderstood:00 01379251 1 0 -uncomprehending%5:00:00:undiscerning:00 00772776 1 0 -uncomprehensible%3:00:00:: 00533851 1 0 -uncompress%2:35:00:: 01389607 1 0 -uncompromising%3:00:00:: 01025913 1 1 -uncompromisingly%4:02:00:: 00484922 1 0 -unconcealed%3:00:00:: 02090341 1 0 -unconcern%1:07:01:: 04673470 1 1 -unconcern%1:12:00:: 07505538 2 0 -unconcerned%3:00:00:: 00545015 1 3 -unconcerned%5:00:00:uninvolved:00 01516961 3 0 -unconcerned%5:00:00:untroubled:00 02460099 2 1 -unconcernedly%4:02:00:: 00485341 1 2 -unconditional%3:00:00:: 00556709 1 1 -unconditional%5:00:00:independent:00 00730082 3 0 -unconditional%5:00:00:unqualified:02 01913931 2 0 -unconditionally%4:02:00:: 00087188 2 0 -unconditionally%4:02:02:: 00292805 1 1 -unconditioned%3:00:00:: 01637184 1 0 -unconditioned%3:00:01:: 00556709 2 0 -unconditioned_reflex%1:04:00:: 00863513 1 0 -unconfessed%1:14:00:: 08477164 1 1 -unconfessed%5:00:00:unacknowledged:00 00029108 1 0 -unconfined%3:00:00:: 00559425 1 0 -unconfined%5:00:00:free:00 01063638 2 0 -unconfirmed%3:00:00:: 01634851 1 0 -unconformable%5:00:00:inconsistent:00 00578831 1 0 -unconformist%3:00:00:: 00610249 1 0 -unconfused%5:00:00:unperplexed:00 01767207 1 0 -uncongenial%3:00:00:: 00561036 1 0 -uncongenial%5:00:00:incompatible:01 00508924 3 0 -uncongenial%5:00:00:inhospitable:00 01243373 2 0 -uncongeniality%1:07:00:: 04658686 1 0 -unconnected%3:00:00:: 00567593 1 0 -unconnected%5:00:00:incoherent:00 00465221 3 0 -unconnected%5:00:00:unrelated:01 01972712 2 0 -unconnectedness%1:24:00:: 13794226 1 0 -unconquerable%3:00:00:: 00569568 1 1 -unconquerable%5:00:00:insurmountable:00 02357322 2 0 -unconquered%5:00:00:undefeated:00 00695335 1 1 -unconscientious%3:00:00:: 02086356 1 0 -unconscientiousness%1:07:00:: 04849074 1 0 -unconscientiousness%1:07:01:: 04673341 2 0 -unconscionable%5:00:00:immoderate:00 01534282 2 0 -unconscionable%5:00:00:unconscientious:00 02086472 1 0 -unconscious%1:09:00:: 05613274 1 1 -unconscious%3:00:00:: 00571643 1 5 -unconscious%5:00:00:involuntary:01 02521998 2 1 -unconscious%5:00:01:unaware:00 00192332 3 1 -unconscious_mind%1:09:00:: 05613274 1 0 -unconscious_process%1:09:00:: 05701738 1 0 -unconsciously%4:02:00:: 00242810 1 5 -unconsciousness%1:09:00:: 05678932 1 0 -unconsecrated%5:00:00:unholy:00 02054926 1 0 -unconsidered%5:00:00:thoughtless:00 02420757 1 0 -unconsolable%3:00:00:: 01232298 1 0 -unconsolidated%5:00:00:loose:02 00503876 1 0 -unconstipated%3:00:00:: 00638501 1 0 -unconstitutional%3:00:00:: 00180211 1 1 -unconstitutionally%4:02:00:: 00122273 1 0 -unconstrained%5:00:00:free:00 01063753 1 0 -unconstraint%1:07:00:: 04885398 1 0 -unconstricted%3:00:00:: 01449184 1 0 -unconstructive%5:00:00:unhelpful:00 01198356 1 0 -unconsumed%5:00:00:unexhausted:00 00926802 1 0 -unconsummated%3:00:00:: 00552168 1 0 -uncontaminated%3:00:00:: 01909718 1 0 -uncontaminated%5:00:01:pure:02 01907711 2 0 -uncontaminating%3:00:02:: 00426347 1 0 -uncontested%3:44:00:: 03148487 1 0 -uncontrived%3:00:00:: 01799035 1 0 -uncontrollable%5:00:00:incorrigible:00 00635752 3 0 -uncontrollable%5:00:00:intractable:00 02452789 1 1 -uncontrollable%5:00:00:uncontrolled:00 00600540 4 0 -uncontrollable%5:00:00:unmanageable:00 01475526 2 0 -uncontrollably%4:02:00:: 00485504 1 1 -uncontrolled%3:00:00:: 00599821 1 0 -uncontroversial%3:00:00:: 00602721 1 0 -uncontroversially%4:02:00:: 00302791 1 0 -unconventional%3:00:00:: 00606602 1 1 -unconventional%3:00:01:: 00608421 2 0 -unconventional%5:00:00:irregular:00 01961410 3 0 -unconventionality%1:07:00:: 04800885 2 0 -unconventionality%1:09:00:: 05634910 1 0 -unconventionally%4:02:00:: 00023721 1 0 -unconverted%5:00:00:unregenerate:00 01957942 1 0 -unconvertible%3:00:00:: 00917207 1 0 -unconvinced%3:00:00:: 00338551 1 0 -unconvincing%3:00:00:: 00615457 1 2 -unconvincing%5:00:00:implausible:00 01800169 2 0 -unconvincingly%4:02:00:: 00192636 1 0 -uncooked%5:00:00:raw:00 00619808 1 0 -uncool%5:00:00:bad:00 01129533 1 0 -uncooperative%3:00:00:: 00620585 1 2 -uncooperative%5:00:00:unaccommodating:00 00021592 2 0 -uncoordinated%5:00:00:maladroit:00 00064176 2 0 -uncoordinated%5:00:00:unorganized:00 01671336 1 0 -uncordial%5:00:00:unfriendly:01 01077362 1 0 -uncork%2:35:00:: 01423793 2 0 -uncork%2:35:01:: 01475737 1 1 -uncorrectable%5:00:00:incorrigible:00 00635752 1 0 -uncorrected%3:00:00:: 00634636 1 0 -uncorrected%5:00:00:unpunished:00 01902313 2 0 -uncorrelated%5:00:00:unrelated:02 01975059 1 0 -uncorroborated%5:00:00:unsupported:02 02353599 1 0 -uncorrupted%5:00:00:perfect:00 01751940 1 0 -uncorrupted%5:00:01:incorrupt:00 00623105 3 0 -uncorrupted%5:00:02:incorrupt:00 00623261 2 0 -uncounted%5:00:00:incalculable:00 00301951 1 0 -uncouple%2:35:00:: 01297813 1 0 -uncoupled%5:00:00:unconnected:00 00568959 1 0 -uncousinly%3:00:00:: 00453647 1 1 -uncouth%5:00:00:unrefined:01 01950198 1 0 -uncouthly%4:02:00:: 00485620 1 0 -uncouthness%1:07:00:: 04817788 1 0 -uncover%2:35:00:: 01339505 2 1 -uncover%2:39:00:: 02143283 1 4 -uncovered%5:00:00:unclothed:00 00459330 1 0 -uncovering%1:04:00:: 00043195 2 0 -uncovering%1:04:01:: 00394803 1 0 -uncrannied%3:00:00:: 00466725 1 0 -uncrate%2:35:00:: 01486870 1 0 -uncreased%5:00:00:smooth:00 02237303 1 0 -uncreative%3:00:00:: 00644372 1 0 -uncreativeness%1:09:00:: 05649385 1 0 -uncritical%3:00:01:: 00648816 2 0 -uncritical%3:00:02:: 00650351 1 1 -uncritically%4:02:00:: 00184909 1 0 -uncropped%5:00:00:unplanted:00 01832707 1 0 -uncross%2:38:00:: 01914792 1 0 -uncrossed%3:00:01:: 00653190 2 0 -uncrossed%3:00:02:: 00653434 1 0 -uncrowded%3:00:00:: 00560453 1 0 -uncrowned%3:00:00:: 00654829 2 0 -uncrowned%3:00:02:: 00655445 1 0 -uncrystallised%3:00:00:: 00657064 1 0 -uncrystallised%5:00:00:noncrystalline:00 00269580 2 0 -uncrystallized%3:00:00:: 00657064 1 0 -uncrystallized%5:00:00:noncrystalline:00 00269580 2 0 -unction%1:04:00:: 01041674 4 0 -unction%1:06:00:: 03845550 3 0 -unction%1:07:00:: 04868505 2 0 -unction%1:10:00:: 06696308 1 0 -unctuous%5:00:00:insincere:00 02181432 1 0 -unctuously%4:02:00:: 00485765 1 0 -unctuousness%1:07:00:: 04868505 1 0 -uncultivable%5:00:00:uncultivated:00 01833939 1 0 -uncultivatable%5:00:00:uncultivated:00 01833939 1 0 -uncultivated%3:00:00:: 01833791 1 0 -uncultivated%5:00:00:nonintellectual:00 01334075 3 0 -uncultivated%5:00:00:unrefined:01 01949740 2 0 -uncultured%5:00:00:unrefined:01 01949740 1 0 -uncurbed%5:00:00:unrestrained:00 02001596 1 0 -uncured%5:00:00:unseasoned:00 01495298 1 0 -uncurl%2:38:00:: 02063486 1 1 -uncurled%5:00:00:straight:03 01031038 2 0 -uncurled%5:00:00:uncoiled:00 02318372 1 0 -uncurtained%3:00:00:: 00672079 1 0 -uncurved%5:00:00:straight:05 02314919 1 0 -uncurving%5:00:00:straight:05 02314919 1 0 -uncus%1:25:00:: 13869676 1 0 -uncut%3:00:01:: 00662687 5 0 -uncut%3:00:02:: 00663104 4 0 -uncut%3:00:03:: 00664167 3 0 -uncut%3:00:04:: 01566288 2 0 -uncut%3:00:05:: 02455069 1 0 -uncut%5:00:00:unabridged:00 00005107 7 0 -uncut%5:00:00:uninjured:00 01319583 6 0 -undamaged%3:00:00:: 00681094 1 1 -undatable%3:00:00:: 00681548 1 0 -undated%5:00:00:undatable:00 00681673 1 0 -undaunted%5:00:00:brave:00 00264459 2 2 -undaunted%5:00:00:resolute:00 01991783 1 2 -undecagon%1:25:00:: 13882804 1 0 -undeceive%2:32:00:: 00854788 1 0 -undeceived%5:00:00:disenchanted:00 00866182 1 0 -undecided%5:00:00:indecisive:01 00686356 2 0 -undecided%5:00:00:uncommitted:00 00519103 3 0 -undecided%5:00:00:unsettled:02 02130821 1 0 -undecipherable%5:00:00:illegible:00 01405523 1 0 -undecipherably%4:02:00:: 00362455 1 0 -undeciphered%3:00:00:: 01405797 1 0 -undeclared%3:00:00:: 00688581 1 1 -undecomposable%5:00:00:simple:02 02175684 1 0 -undecomposed%5:00:00:fresh:01 01068306 1 0 -undecorated%3:00:04:: 00060397 1 0 -undecylenic_acid%1:27:00:: 15083713 1 0 -undedicated%3:00:00:: 00520081 1 0 -undefeated%3:00:00:: 00695024 1 0 -undefendable%5:00:00:vulnerable:00 02523664 1 0 -undefended%5:00:00:vulnerable:00 02523664 1 0 -undeferential%5:00:00:disrespectful:00 01996288 1 0 -undefiled%5:00:00:perfect:00 01751940 2 0 -undefiled%5:00:00:pure:01 01905140 1 0 -undefinable%5:00:00:undefined:00 00697691 1 0 -undefined%3:00:00:: 00697389 1 0 -undelineated%3:00:00:: 01715574 1 0 -undemanding%3:00:01:: 00711528 1 0 -undemocratic%3:00:00:: 00717417 1 0 -undemocratically%4:02:00:: 00122630 1 0 -undemonstrative%3:00:00:: 00720913 1 0 -undeniable%3:00:00:: 00721505 1 2 -undeniably%4:02:00:: 00485902 1 0 -undenominational%5:00:00:nonsectarian:00 02093134 1 0 -undependability%1:07:00:: 04671394 1 0 -undependable%3:00:00:: 00724861 1 0 -undependable%5:00:00:fallible:00 00964590 2 0 -undependableness%1:07:00:: 04671394 1 0 -undependably%4:02:00:: 00223635 1 0 -undepicted%5:00:00:undelineated:00 01715708 1 4 -under%4:02:00:: 00486067 8 0 -under%4:02:01:: 00486157 7 0 -under%4:02:02:: 00486223 6 0 -under%4:02:03:: 00486296 5 0 -under%4:02:04:: 00486384 4 0 -under%4:02:05:: 00486509 1 2 -under%4:02:06:: 00486605 3 0 -under%4:02:07:: 00486694 2 0 -under%5:00:00:low:01 01207546 1 2 -under%5:00:00:subordinate:01 00793682 2 1 -under-the-counter%5:00:00:illegal:00 01404482 1 0 -under-the-table%5:00:00:covert:00 01707531 1 0 -under_arms%4:02:00:: 00387455 1 1 -under_attack%5:00:00:vulnerable:00 02524900 1 0 -under_fire%5:00:00:vulnerable:00 02524900 1 4 -under_it%4:02:00:: 00468326 1 0 -under_that%4:02:00:: 00468326 1 1 -under_the_circumstances%4:02:00:: 00172641 1 2 -under_the_weather%5:00:00:ill:01 02542325 1 0 -under_way%4:02:00:: 00238958 1 0 -under_wraps%5:00:00:covert:00 01708049 1 0 -underachieve%2:41:00:: 02562585 1 0 -underachievement%1:04:00:: 00047550 1 3 -underachiever%1:18:00:: 10736394 1 2 -underact%2:36:00:: 01751389 1 0 -underactive%5:00:00:inactive:01 00034232 1 0 -underage%3:00:00:: 01471954 1 0 -underage%5:00:00:dependent:00 00727481 2 0 -underarm%3:00:00:: 02470531 1 0 -underarm%4:02:00:: 00486800 1 0 -underbelly%1:07:00:: 05042720 3 0 -underbelly%1:08:00:: 05557723 2 0 -underbelly%1:15:00:: 08511473 1 0 -underbid%2:40:00:: 02299687 3 0 -underbid%2:40:01:: 02299924 2 0 -underbid%2:40:02:: 02300866 1 0 -underbodice%1:06:00:: 02944146 1 0 -underbody%1:08:00:: 05557723 1 0 -underboss%1:18:00:: 10273438 1 0 -underbred%5:00:00:crossbred:00 01904596 2 0 -underbred%5:00:00:unrefined:01 01950857 1 0 -underbrush%1:14:00:: 08439476 1 2 -undercarriage%1:06:00:: 04507453 1 0 -undercharge%1:06:00:: 04507609 2 0 -undercharge%1:21:00:: 13307685 1 0 -undercharge%2:40:00:: 02319290 1 0 -underclass%1:14:00:: 08181540 1 0 -underclass%5:00:00:underprivileged:00 01865043 1 0 -underclassman%1:18:00:: 10274815 1 0 -underclothed%5:00:00:unclothed:00 00459443 1 0 -underclothes%1:06:00:: 04508949 1 0 -underclothing%1:06:00:: 04508949 1 0 -undercoat%1:05:00:: 01899238 3 0 -undercoat%1:06:01:: 03360845 2 0 -undercoat%1:06:02:: 04507689 1 0 -undercoat%2:35:00:: 01365355 1 0 -undercoated%5:00:00:rustless:00 02053631 1 0 -undercover%5:00:00:covert:00 01706465 1 1 -undercover_agent%1:18:00:: 10641755 1 0 -undercover_operation%1:04:00:: 00409943 1 0 -undercover_work%1:04:00:: 00654234 1 0 -undercurrent%1:09:00:: 05922809 1 1 -undercurrent%1:11:00:: 07404798 2 0 -undercut%1:04:00:: 00565809 4 0 -undercut%1:04:01:: 00387526 5 0 -undercut%1:06:00:: 04507891 3 0 -undercut%1:13:00:: 07659793 2 0 -undercut%1:27:00:: 15083974 1 0 -undercut%2:35:00:: 01403117 4 0 -undercut%2:35:01:: 01554165 3 0 -undercut%2:35:02:: 01554318 2 0 -undercut%2:35:03:: 01257621 5 0 -undercut%2:40:00:: 02351467 1 0 -underdevelop%2:39:00:: 02139063 1 0 -underdeveloped%5:00:00:immature:01 01491691 2 0 -underdeveloped%5:00:00:nonindustrial:00 01302544 1 2 -underdevelopment%1:22:00:: 13571041 2 0 -underdevelopment%1:26:00:: 14423268 1 0 -underdog%1:18:00:: 10273572 1 0 -underdone%5:00:01:raw:00 00619601 1 0 -underdrawers%1:06:00:: 03234164 1 0 -underdress%2:29:00:: 00045346 2 0 -underdress%2:29:01:: 00049483 1 0 -underdressed%5:00:00:clothed:00 00457258 1 0 -undereducated%5:00:00:uneducated:00 00831603 1 1 -underemployed%5:00:00:part-time:00 01090061 1 0 -underestimate%1:09:00:: 05804491 1 0 -underestimate%2:31:00:: 00673766 2 1 -underestimate%2:31:01:: 00671335 3 1 -underestimate%2:31:02:: 00695761 1 1 -underestimation%1:09:00:: 05804491 1 0 -underevaluation%1:09:00:: 05747937 1 0 -underexpose%2:39:00:: 02113253 2 0 -underexpose%2:39:01:: 02114228 1 0 -underexposure%1:04:00:: 00907642 1 0 -underexposure%1:04:01:: 00157877 2 0 -underfed%5:00:00:malnourished:00 02301180 1 0 -underfelt%1:06:00:: 04508062 1 0 -underfoot%4:02:00:: 00244918 1 3 -underfoot%4:02:01:: 00245035 2 0 -underframe%1:06:00:: 04226537 1 0 -underfur%1:05:00:: 01899238 1 0 -undergarment%1:06:00:: 04508163 1 0 -undergird%2:30:00:: 00221718 2 0 -undergird%2:41:00:: 02556729 1 0 -undergo%2:39:04:: 02108377 1 0 -undergrad%1:18:00:: 10736602 1 0 -undergraduate%1:18:00:: 10736602 1 1 -underground%1:06:00:: 03757138 2 0 -underground%1:14:00:: 08360672 1 0 -underground%4:02:00:: 00486917 2 0 -underground%4:02:01:: 00487018 1 0 -underground%5:00:00:covert:00 01706465 2 0 -underground%5:00:00:subsurface:00 02471984 1 7 -underground_press%1:10:00:: 06271620 1 0 -underground_railroad%1:04:00:: 00060817 1 0 -underground_railway%1:04:00:: 00060817 1 0 -undergrow%2:30:00:: 00231976 1 0 -undergrowth%1:14:00:: 08439476 1 0 -underhand%3:00:00:: 02470531 1 0 -underhand%4:02:00:: 00486800 2 0 -underhand%4:02:01:: 00487138 1 0 -underhand%5:00:00:crooked:02 02319346 2 0 -underhanded%3:00:00:: 02470531 2 0 -underhanded%5:00:00:crooked:02 02319346 1 1 -underhandedly%4:02:00:: 00487138 1 0 -underhung%5:00:00:protrusive:00 01354581 2 0 -underhung%5:00:00:supported:00 02351988 1 0 -underivative%5:00:00:original:00 01688154 1 0 -underived%3:00:00:: 00699085 1 0 -underlay%1:06:00:: 02967626 1 0 -underlay%2:34:00:: 01183424 3 0 -underlay%2:35:00:: 01497292 2 0 -underlay%2:38:00:: 01974916 1 0 -underlayment%1:06:00:: 02967626 1 0 -underlie%2:42:00:: 02664575 1 8 -underlie%2:42:01:: 02693088 2 0 -underline%1:10:00:: 06801418 1 0 -underline%2:32:00:: 01014609 1 6 -underline%2:32:03:: 01004235 2 0 -underling%1:18:00:: 10669991 1 1 -underlip%1:08:00:: 05306122 1 0 -underlying%5:00:00:basic:00 01856419 3 0 -underlying%5:00:00:implicit:00 00941940 1 7 -underlying%5:00:00:subjacent:00 02349604 2 0 -undermanned%5:00:00:inadequate:00 00052431 1 0 -undermentioned%5:00:00:succeeding:00 00127815 1 0 -undermine%2:35:00:: 01283033 2 0 -undermine%2:41:00:: 02543607 1 7 -underneath%4:02:00:: 00487408 2 0 -underneath%4:02:01:: 00487623 1 0 -undernourish%2:34:00:: 01179276 1 0 -undernourished%5:00:00:malnourished:00 02301180 1 0 -undernourishment%1:26:00:: 14040490 1 0 -underpants%1:06:00:: 04508489 1 0 -underpart%1:05:00:: 01899367 1 0 -underpass%1:06:00:: 04508804 1 0 -underpay%2:40:00:: 02250216 1 0 -underpayment%1:04:00:: 01122488 2 0 -underpayment%1:21:00:: 13279162 1 0 -underperform%2:36:00:: 01715357 2 0 -underperform%2:41:00:: 02562585 1 0 -underperformer%1:14:00:: 08076578 2 0 -underperformer%1:18:00:: 10736394 1 0 -underpin%2:35:00:: 01218918 1 1 -underpin%2:42:00:: 02663340 2 0 -underplay%2:33:00:: 01139496 2 0 -underplay%2:36:00:: 01751389 1 0 -underpopulated%5:00:00:inhabited:00 01312567 1 0 -underprice%2:40:00:: 02350878 1 0 -underprivileged%3:00:00:: 01864471 1 2 -underproduce%2:36:00:: 01622595 1 0 -underproduction%1:04:00:: 00914509 1 0 -underquote%2:32:00:: 01024066 2 0 -underquote%2:40:00:: 02351616 1 0 -underrate%2:31:00:: 00671335 1 1 -underrating%1:09:00:: 05804491 1 0 -underreckoning%1:09:00:: 05804491 1 0 -underscore%1:10:00:: 06801418 1 0 -underscore%2:32:00:: 01014609 1 3 -underscore%2:32:03:: 01004235 2 0 -undersea%5:00:00:subsurface:00 02472137 1 1 -underseal%1:06:00:: 04507689 1 0 -undersealed%5:00:00:rustless:00 02053631 1 0 -undersecretary%1:18:00:: 10736788 1 1 -undersell%2:40:00:: 02351467 1 0 -underseller%1:18:00:: 10736926 1 0 -undersexed%5:00:00:unsexy:00 02135290 1 0 -undershirt%1:06:00:: 04223299 1 3 -undershoot%2:33:00:: 01152532 2 0 -undershoot%2:38:00:: 01980476 1 0 -undershot%5:00:00:protrusive:00 01354581 1 0 -undershrub%1:20:00:: 13118330 1 0 -underside%1:15:00:: 08511241 1 1 -undersign%2:32:00:: 00996919 1 0 -undersize%5:00:00:small:00 01395229 1 0 -undersized%5:00:00:small:00 01395229 1 0 -underskirt%1:06:00:: 03920737 1 0 -underslung%5:00:00:low:01 01207697 3 0 -underslung%5:00:00:protrusive:00 01354581 2 0 -underslung%5:00:00:supported:00 02352153 1 0 -undersoil%1:27:00:: 14695838 1 0 -underspend%2:40:00:: 02266557 2 0 -underspend%2:40:01:: 02267851 1 0 -understaffed%5:00:00:inadequate:00 00052431 1 0 -understand%2:31:00:: 00588888 1 110 -understand%2:31:01:: 00591115 2 29 -understand%2:31:02:: 00593522 4 4 -understand%2:31:03:: 00593852 3 9 -understand%2:31:04:: 00594058 5 1 -understandability%1:07:00:: 04819026 1 0 -understandable%5:00:00:comprehensible:00 00533452 1 6 -understandably%4:02:00:: 00202341 1 0 -understanding%1:09:00:: 05651680 4 1 -understanding%1:09:01:: 05805475 1 38 -understanding%1:09:03:: 06199142 3 1 -understanding%1:10:00:: 06770275 2 2 -understanding%5:00:00:perceptive:00 01745946 1 1 -understandingly%4:02:00:: 00210127 1 2 -understate%2:32:00:: 00841125 1 2 -understated%5:00:00:tasteful:02 02393220 1 0 -understatement%1:10:00:: 06759063 1 1 -understock%2:40:00:: 02323714 1 0 -understood%3:00:00:: 01378219 1 1 -understood%5:00:00:implicit:00 00942163 2 1 -understructure%1:06:00:: 03387016 1 0 -understudy%1:18:00:: 10737103 1 0 -understudy%2:31:00:: 00604930 1 0 -undersurface%1:15:00:: 08511241 1 0 -undertake%2:32:00:: 00889555 3 2 -undertake%2:32:01:: 00888786 4 2 -undertake%2:36:00:: 01651293 1 26 -undertake%2:41:00:: 02539686 5 0 -undertake%2:41:01:: 02569630 2 2 -undertaker%1:18:00:: 10331841 1 1 -undertaking%1:04:00:: 00795720 1 1 -undertaking%1:04:01:: 01120259 2 0 -undertide%1:11:00:: 07404798 1 0 -undertone%1:07:00:: 04959567 3 0 -undertone%1:09:00:: 05922809 2 0 -undertone%1:10:00:: 07083136 1 0 -undertow%1:11:00:: 07404261 2 0 -undertow%1:12:00:: 07499449 1 0 -undervaluation%1:09:00:: 05736593 1 0 -undervalue%2:30:00:: 00315020 3 0 -undervalue%2:31:00:: 00695761 1 0 -undervalue%2:31:01:: 00694866 2 0 -underwater%5:00:00:aquatic:00 00124685 2 0 -underwater%5:00:00:subsurface:00 02472252 1 2 -underwater_archaeology%1:09:00:: 06145158 1 0 -underwater_archeology%1:09:00:: 06145158 1 0 -underwater_diver%1:18:00:: 10019552 1 0 -underway%5:00:00:current:00 00666784 1 9 -underwear%1:06:00:: 04508949 1 1 -underweight%5:00:00:thin:03 00990192 1 0 -underwing%1:05:00:: 02295870 1 0 -underwood%1:14:00:: 08439476 1 0 -underworld%1:09:00:: 05629381 2 0 -underworld%1:14:00:: 08245059 1 1 -underwrite%2:32:00:: 00891216 2 1 -underwrite%2:32:01:: 00889740 1 2 -underwriter%1:14:00:: 08070465 3 0 -underwriter%1:18:00:: 10215953 1 0 -underwriter%1:18:01:: 10209731 2 0 -undescended%3:01:00:: 03143018 1 0 -undescended_testicle%1:08:00:: 05525391 1 0 -undescended_testis%1:08:00:: 05525391 1 0 -undescriptive%3:00:00:: 00732872 1 0 -undeserved%5:00:00:unmerited:00 01371646 1 0 -undeservedly%4:02:00:: 00301654 1 0 -undeserving%5:00:00:unworthy:00 02588421 1 0 -undesigned%3:00:00:: 01340147 1 0 -undesirability%1:07:00:: 05142008 1 0 -undesirable%1:18:00:: 10737264 1 0 -undesirable%3:00:00:: 00733905 1 2 -undesirable%5:00:00:ineligible:00 00853473 2 0 -undesirably%4:02:00:: 00485012 1 0 -undesired%5:00:00:unwanted:00 02529047 1 0 -undesiring%3:00:00:: 00889334 1 0 -undesirous%3:00:00:: 00889334 1 0 -undestroyable%5:00:00:imperishable:00 01754049 1 0 -undestroyable%5:00:00:indestructible:00 00738503 2 0 -undetectable%5:00:00:imperceptible:00 01748936 2 0 -undetectable%5:00:00:invisible:00 02518852 1 0 -undetected%3:00:00:: 01609900 1 0 -undeterminable%3:00:00:: 00739273 1 0 -undetermined%3:00:00:: 01610803 1 0 -undetermined%3:00:04:: 00740336 2 0 -undetermined%5:00:00:unsettled:02 02130821 3 0 -undeterred%5:00:00:resolute:00 01991961 1 0 -undeveloped%3:00:00:: 00742425 1 2 -undeveloped%3:00:04:: 00942871 2 0 -undeviating%5:00:00:direct:00 00761844 1 0 -undeviating%5:00:00:reliable:00 00724720 2 0 -undiagnosable%5:00:00:unidentifiable:00 01273689 1 0 -undiagnosed%5:00:00:unknown:00 01377721 1 0 -undies%1:06:00:: 04509171 1 0 -undifferentiated%3:00:00:: 00744506 1 1 -undigested%5:00:00:indigestible:00 01183348 2 0 -undigested%5:00:00:ununderstood:00 01379361 1 1 -undignified%3:00:00:: 00752392 1 0 -undiluted%3:00:00:: 00756728 1 1 -undiminished%5:00:00:unmitigated:00 01521017 1 3 -undimmed%3:00:00:: 00284930 1 0 -undine%1:18:00:: 09541346 1 0 -undiplomatic%3:00:00:: 00759458 1 0 -undiplomatically%4:02:00:: 00203353 1 0 -undirected%5:00:00:purposeless:00 01910652 1 0 -undiscerning%3:00:00:: 00772360 1 0 -undischarged%5:00:00:loaded:00 01424706 2 0 -undischarged%5:00:00:unpaid:00 01710543 1 0 -undiscipline%1:07:00:: 04884450 1 0 -undisciplined%5:00:00:uncontrolled:00 00601499 3 0 -undisciplined%5:00:00:unpunished:00 01902313 2 0 -undisciplined%5:00:00:untrained:00 01913089 1 0 -undisclosed%5:00:00:covert:00 01708164 1 0 -undiscouraged%5:00:00:resolute:00 01991961 1 0 -undiscoverable%5:00:00:indeterminable:00 00739663 1 0 -undiscovered%5:00:00:undetected:00 01610126 1 0 -undiscovered%5:00:00:unknown:00 01377819 2 0 -undiscriminating%3:00:00:: 00775900 1 0 -undisguised%5:00:00:overt:00 01705418 1 1 -undismayed%5:00:00:resolute:00 01991783 1 0 -undisputable%5:00:00:undeniable:00 00721636 1 0 -undisputed%5:00:00:uncontroversial:00 00603039 1 1 -undisputedly%4:02:00:: 00483042 1 0 -undissolved%5:00:00:unmelted:00 01507008 1 0 -undistinguishable%3:00:00:: 00582876 1 0 -undistinguished%5:00:00:unnoticeable:00 01288298 1 0 -undistorted%5:00:00:ingenuous:00 01310545 1 0 -undistributed%5:00:00:undiversified:00 00784411 1 0 -undisturbed%5:00:00:untroubled:00 02460262 1 0 -undiversified%3:00:00:: 00783675 1 0 -undividable%5:00:00:indivisible:00 00786031 1 0 -undivided%5:00:00:concentrated:00 00539389 3 0 -undivided%5:00:00:united:00 02478383 1 0 -undivided%5:00:00:unshared:00 02153359 2 0 -undivided%5:00:00:whole:00 00516360 4 0 -undivided_interest%1:21:00:: 13288337 1 0 -undivided_right%1:21:00:: 13288337 1 0 -undo%2:35:00:: 01519977 1 3 -undo%2:35:01:: 01284908 4 0 -undo%2:35:03:: 01284271 5 0 -undo%2:36:00:: 01619231 2 1 -undo%2:41:00:: 02559199 3 0 -undoable%5:00:00:impossible:00 01824081 1 0 -undock%2:35:00:: 01306047 2 0 -undock%2:38:00:: 02085971 1 0 -undocumented%3:00:00:: 00786790 1 0 -undoer%1:18:00:: 10008716 3 0 -undoer%1:18:01:: 10737431 2 0 -undoer%1:18:02:: 10737717 1 0 -undogmatic%5:00:00:broad-minded:00 00287275 1 0 -undogmatical%5:00:00:broad-minded:00 00287275 1 0 -undoing%1:04:00:: 00235074 1 1 -undoing%1:04:01:: 00149262 2 0 -undomestic%3:00:00:: 01039843 1 0 -undomesticated%5:00:00:undomestic:00 01040087 2 0 -undomesticated%5:00:00:wild:01 02389833 1 0 -undone%5:00:00:disorganized:00 01670037 4 0 -undone%5:00:00:unfastened:00 02096604 3 0 -undone%5:00:00:unfinished:01 01004818 1 1 -undone%5:00:00:unsuccessful:00 02334321 2 0 -undoubtedly%4:02:00:: 00079107 1 9 -undrained%3:00:00:: 01089027 1 0 -undramatic%3:00:00:: 00795495 1 0 -undramatically%4:02:00:: 00139071 1 0 -undrape%2:35:00:: 01339812 1 0 -undraped%5:00:00:bare:00 01698903 2 0 -undraped%5:00:00:unveiled:00 02508669 1 0 -undrawn%5:00:00:undelineated:00 01715790 1 0 -undreamed%5:00:00:incredible:00 00646276 1 0 -undreamed_of%5:00:00:incredible:00 00646276 1 0 -undreamt%5:00:00:incredible:00 00646276 1 0 -undreamt_of%5:00:00:incredible:00 00646276 1 0 -undress%1:26:00:: 14456752 1 0 -undress%2:29:00:: 00049900 1 2 -undress%2:30:00:: 00177243 2 0 -undressed%5:00:00:unclothed:00 00460157 2 0 -undressed%5:00:00:unfinished:02 01006136 1 0 -undried%5:00:00:wet:01 02551069 1 0 -undrinkable%3:00:00:: 00797218 1 1 -undset%1:18:00:: 11356183 1 0 -undue%3:00:00:: 00137641 1 2 -undue%3:00:02:: 00137943 2 1 -undue%5:00:00:immoderate:00 01533974 4 0 -undue%5:00:00:unreasonable:00 01945350 3 0 -undulant%3:01:00:: 03143155 1 0 -undulant_fever%1:26:00:: 14128029 1 0 -undulate%2:30:00:: 00581355 4 0 -undulate%2:38:00:: 01901783 3 0 -undulate%2:38:01:: 02040054 1 1 -undulate%2:42:00:: 02687251 2 0 -undulate%5:00:00:smooth:02 02245223 1 0 -undulation%1:11:00:: 07345593 3 0 -undulation%1:11:01:: 07352048 2 0 -undulation%1:25:00:: 13868944 1 0 -undulatory%3:01:00:: 03143155 1 0 -undulatory_theory%1:09:00:: 06105873 1 0 -unduly%4:02:00:: 00487759 1 1 -undutiful%5:00:00:disrespectful:00 01995863 1 0 -undutifulness%1:07:00:: 04828485 1 0 -undyed%5:00:00:natural:02 01571181 1 0 -undying%5:00:00:immortal:00 01558194 1 0 -undynamic%3:00:00:: 00810481 1 0 -uneager%3:00:00:: 00811820 1 0 -unearned%3:00:00:: 00821723 1 0 -unearned_income%1:21:00:: 13261380 2 0 -unearned_income%1:21:01:: 13261597 1 0 -unearned_increment%1:21:00:: 13311679 1 0 -unearned_revenue%1:21:00:: 13261380 2 0 -unearned_revenue%1:21:01:: 13261597 1 0 -unearned_run%1:04:00:: 00190040 1 1 -unearth%2:39:00:: 02143539 2 0 -unearth%2:40:01:: 02286550 1 2 -unearthly%5:00:00:supernatural:00 01575424 2 0 -unearthly%5:00:00:unworldly:00 02579136 1 0 -unease%1:07:00:: 04904851 2 0 -unease%1:26:00:: 14447019 1 0 -uneasily%4:02:00:: 00185970 1 3 -uneasiness%1:07:00:: 04625284 5 0 -uneasiness%1:07:02:: 04904851 4 0 -uneasiness%1:12:01:: 07507329 3 0 -uneasiness%1:12:02:: 07525057 1 2 -uneasiness%1:26:00:: 14447019 2 0 -uneasy%3:00:00:: 00822449 1 15 -uneasy%3:00:05:: 01922562 2 0 -uneasy%5:00:00:troubled:00 02456157 3 0 -uneasy%5:00:00:uncomfortable:00 00479073 5 0 -uneasy%5:00:00:uncomfortable:01 00480439 4 0 -uneatable%3:00:00:: 00829496 1 0 -uneconomic%5:00:00:wasteful:00 02422592 1 0 -uneconomical%5:00:00:inefficient:00 00841159 1 2 -uneconomical%5:00:00:wasteful:00 02422592 2 0 -unedifying%3:00:00:: 01325691 1 0 -unedited%5:00:00:unaltered:00 00353812 1 0 -uneducated%3:00:00:: 00830717 1 0 -uneducated_person%1:18:00:: 10198958 1 0 -uneffective%3:00:00:: 00835609 1 0 -unelaborate%5:00:00:plain:01 01793557 1 0 -unelaborated%5:00:00:incomplete:00 00525105 1 0 -unembarrassed%5:00:00:unashamed:00 00155886 1 0 -unembellished%5:00:00:unadorned:00 00060605 1 0 -unembodied%5:00:00:incorporeal:00 00631040 1 0 -unemotional%3:00:00:: 00856860 1 0 -unemotional%5:00:00:undemonstrative:00 00721050 2 0 -unemotional_person%1:18:00:: 10658867 1 0 -unemotionality%1:07:00:: 04629194 2 0 -unemotionality%1:12:00:: 07483782 1 0 -unemotionally%4:02:00:: 00185807 1 0 -unemphatic%5:00:00:unstressed:00 02320680 1 0 -unemployable%3:00:00:: 00865331 1 0 -unemployed%1:14:00:: 08477307 1 0 -unemployed%3:00:00:: 00864693 1 2 -unemployed_people%1:14:00:: 08477307 1 0 -unemployed_person%1:18:00:: 10737860 1 0 -unemployment%1:26:00:: 13968308 1 3 -unemployment_compensation%1:04:00:: 01088437 1 1 -unemployment_line%1:14:00:: 08433343 1 0 -unemployment_rate%1:24:00:: 13819074 1 0 -unenclosed%3:00:00:: 01658814 1 0 -unencouraging%5:00:00:discouraging:00 00867841 1 0 -unencumbered%3:00:00:: 00868988 1 0 -unencumbered%5:00:00:unburdened:00 00870481 2 0 -unended%5:00:00:unfinished:01 01004932 1 0 -unending%5:00:00:permanent:00 01755024 1 1 -unendingly%4:02:00:: 00282858 1 0 -unendowed%3:00:00:: 00671441 1 0 -unendurable%3:00:00:: 02435671 1 0 -unenergetic%5:00:00:unenterprising:00 00885594 1 0 -unenergetically%4:02:00:: 00388590 1 0 -unenforceable%3:00:00:: 00557304 1 0 -unenforced%3:00:00:: 00557637 1 0 -unengaged%5:00:00:idle:00 00295507 1 0 -unengaged%5:00:00:unattached:00 00158546 2 0 -unenlightened%3:00:00:: 00884286 1 0 -unenlightened%5:00:00:uninformed:00 01309657 2 0 -unenlightening%3:00:00:: 01326013 1 0 -unenlightening%3:00:04:: 01325691 2 0 -unenlightenment%1:09:00:: 05989265 1 0 -unenlivened%3:00:00:: 00120132 1 0 -unenrgetic%3:00:04:: 00875712 1 0 -unenterprising%3:00:00:: 00885415 1 0 -unenthusiastic%3:00:00:: 00887062 1 1 -unenthusiastically%4:02:00:: 00188950 1 0 -unentitled%5:00:00:ineligible:00 00853631 1 0 -unenviable%5:00:00:difficult:00 00746047 1 0 -unenviable%5:00:00:undesirable:00 00734187 2 0 -unequal%3:00:00:: 00892379 1 0 -unequal%3:00:03:: 00051696 2 0 -unequal_to%5:00:00:inadequate:00 00052246 1 0 -unequaled%5:00:00:incomparable:00 00505853 1 0 -unequalised%5:00:00:unequal:00 00893347 1 0 -unequalized%5:00:00:unequal:00 00893347 1 0 -unequalled%5:00:00:incomparable:00 00505853 1 0 -unequally%4:02:02:: 00332365 1 2 -unequipped%3:00:00:: 01095555 1 0 -unequivocal%3:00:00:: 00896555 1 0 -unequivocal%5:00:00:explicit:00 00940969 2 0 -unequivocally%4:02:01:: 00220490 1 3 -unequivocalness%1:07:00:: 04821802 1 0 -unerasable%5:00:00:ineradicable:00 00898488 1 0 -unerect%3:00:00:: 01237897 1 0 -unerring%5:00:00:infallible:00 00965359 1 1 -unerringly%4:02:00:: 00232057 1 1 -unesco%1:14:00:: 08302052 1 0 -unessential%3:00:00:: 00902652 1 0 -unestablished%3:00:00:: 01636757 1 0 -unethical%3:00:00:: 00905728 1 0 -unethically%4:02:00:: 00330709 1 0 -uneven%3:00:00:: 00911327 1 4 -uneven%3:00:04:: 00913454 3 0 -uneven%5:00:00:inconsistent:00 00578662 5 0 -uneven%5:00:00:unequal:00 00892773 2 1 -uneven%5:00:05:unsteady:00 02305651 4 0 -uneven_bars%1:06:00:: 04509260 1 0 -uneven_parallel_bars%1:06:00:: 04509260 1 0 -unevenly%4:02:00:: 00331594 1 1 -unevenly%4:02:01:: 00332365 3 0 -unevenly%4:02:02:: 00439125 2 0 -unevenness%1:07:00:: 04771890 1 0 -unevenness%1:07:02:: 04753331 2 0 -uneventful%3:00:00:: 00804502 1 0 -uneventfully%4:02:00:: 00487877 1 0 -unexacting%5:00:00:undemanding:01 00712314 1 0 -unexampled%5:00:00:unprecedented:00 00128733 1 0 -unexceeded%5:00:00:best:00 00229371 1 0 -unexcelled%5:00:00:best:00 00229371 1 0 -unexceptionable%5:00:00:acceptable:00 00018222 1 0 -unexceptional%5:00:00:ordinary:00 01674926 1 0 -unexchangeability%1:07:00:: 04740864 1 0 -unexchangeable%3:00:00:: 00918491 1 0 -unexchangeable%3:00:04:: 00917207 2 0 -unexcitable%3:00:00:: 00919321 1 0 -unexcited%3:00:00:: 00920881 1 0 -unexciting%3:00:00:: 00922594 2 0 -unexciting%3:00:04:: 02307367 1 0 -unexcitingly%4:02:00:: 00332906 1 0 -unexclusive%5:00:00:public:00 01862296 1 0 -unexcused%5:00:00:nonexempt:00 02366618 1 0 -unexhausted%3:00:00:: 00926348 1 0 -unexpansive%3:00:00:: 00947680 1 0 -unexpansive%5:00:00:restrained:00 02000559 2 0 -unexpected%3:00:00:: 00930290 1 7 -unexpectedly%4:02:00:: 00040547 2 2 -unexpectedly%4:02:01:: 00040719 1 5 -unexpectedness%1:07:00:: 04796725 1 0 -unexpendable%3:00:00:: 00933032 1 0 -unexpended%5:00:00:unexhausted:00 00926505 2 0 -unexpended%5:00:02:unexhausted:00 00926871 1 0 -unexpired%3:00:00:: 00938441 1 0 -unexplainable%5:00:00:inexplicable:00 00940108 1 1 -unexplained%5:00:00:inexplicable:00 00940314 2 1 -unexplained%5:00:00:undetermined:00 01610952 1 2 -unexploded%5:00:00:loaded:00 01424706 1 0 -unexploited%3:00:00:: 00942871 1 0 -unexplorative%3:00:00:: 00878704 1 0 -unexploratory%3:00:00:: 00878704 1 0 -unexplored%5:00:00:unknown:00 01377819 1 3 -unexportable%3:00:00:: 00877263 1 0 -unexpressed%5:00:00:implicit:00 00942380 1 0 -unexpressible%3:00:00:: 00943999 1 0 -unexpressive%5:00:00:uncommunicative:00 00501313 1 0 -unexpurgated%5:00:00:uncensored:00 00319389 1 0 -unextended%3:00:00:: 01432605 1 0 -unfaceted%3:00:00:: 02591594 1 0 -unfading%5:00:00:immortal:00 01558086 1 0 -unfailing%5:00:00:constant:00 00583842 3 0 -unfailing%5:00:00:inexhaustible:00 00925985 2 0 -unfailing%5:00:00:infallible:00 00965176 1 0 -unfailingly%4:02:00:: 00113834 1 0 -unfair%3:00:00:: 00957176 1 1 -unfairly%4:02:00:: 00285266 1 0 -unfairness%1:04:00:: 00744616 3 0 -unfairness%1:07:00:: 04839676 2 0 -unfairness%1:09:00:: 06202553 1 0 -unfaithful%3:00:00:: 00959731 1 1 -unfaithful%3:00:01:: 00960971 2 0 -unfaithful%5:00:00:disloyal:00 00962939 3 0 -unfaithful%5:00:00:inaccurate:00 00024139 4 0 -unfaithfully%4:02:00:: 00223635 1 0 -unfaithfulness%1:07:00:: 04878861 1 0 -unfaltering%5:00:00:resolute:00 01990653 1 1 -unfalteringly%4:02:00:: 00212208 1 1 -unfamiliar%3:00:00:: 00966477 1 4 -unfamiliar_with%5:00:00:unfamiliar:00 00966960 1 0 -unfamiliarity%1:07:00:: 04797482 1 0 -unfashionable%3:00:00:: 00973844 1 0 -unfashionably%4:02:00:: 00337516 1 0 -unfasten%2:35:00:: 01344140 2 0 -unfasten%2:35:01:: 01344293 1 1 -unfastened%3:00:00:: 02096213 1 1 -unfastened%3:00:02:: 00297097 3 0 -unfastened%3:00:03:: 00254983 4 0 -unfastened%3:00:04:: 01652380 2 0 -unfastener%1:18:00:: 10737431 1 0 -unfastening%1:04:00:: 00149262 1 0 -unfastidious%3:00:00:: 00985387 2 0 -unfastidious%3:00:02:: 00985909 1 0 -unfathomable%3:00:00:: 00994882 1 0 -unfathomable%5:00:00:deep:01 00690683 2 0 -unfathomable%5:00:00:incomprehensible:00 00534827 3 0 -unfathomed%5:00:00:deep:01 00691141 1 0 -unfattened%5:00:00:unfinished:02 01006284 1 0 -unfavorable%3:00:01:: 00995468 2 0 -unfavorable%3:00:02:: 00996448 1 2 -unfavorable%5:00:00:bad:00 01129644 3 0 -unfavorable_judgment%1:10:00:: 06710546 1 0 -unfavorable_position%1:07:00:: 05165175 1 0 -unfavorableness%1:07:00:: 05161967 1 0 -unfavorably%4:02:00:: 00230581 1 0 -unfavourable%3:00:01:: 00995468 2 0 -unfavourable%3:00:02:: 00996448 1 0 -unfavourable%5:00:00:bad:00 01129644 3 0 -unfavourableness%1:07:00:: 05161967 1 0 -unfavourably%4:02:00:: 00230581 1 0 -unfearing%5:00:00:bold:00 00250119 1 0 -unfeasibility%1:07:00:: 05153359 1 0 -unfeasible%5:00:00:impossible:00 01823574 1 0 -unfeathered%3:00:00:: 00999330 1 0 -unfeathered%5:00:00:unfledged:00 01096648 2 0 -unfed%5:00:00:malnourished:00 02301430 1 0 -unfed%5:00:00:unfueled:00 01099435 2 0 -unfeeling%5:00:00:insentient:00 00117961 2 0 -unfeeling%5:00:00:uncompassionate:00 00507292 1 0 -unfeelingly%4:02:00:: 00339149 1 0 -unfeelingly%4:02:01:: 00238529 2 0 -unfeelingness%1:07:00:: 04844625 1 0 -unfeigned%5:00:00:sincere:00 02180277 1 0 -unfeignedly%4:02:00:: 00378365 1 0 -unfeminine%5:00:00:unwomanly:00 01485971 1 0 -unfenced%5:00:00:unenclosed:00 01659277 1 0 -unfermented%5:00:00:unsoured:00 02370083 1 0 -unfertile%3:00:00:: 01002377 1 1 -unfertilised%5:00:00:sterile:00 01002911 1 0 -unfertilized%5:00:00:sterile:00 01002911 1 0 -unfettered%5:00:00:unbound:01 00254296 1 1 -unfilled%3:44:00:: 03149843 1 0 -unfilmed%5:00:00:live:02 01422863 1 0 -unfinished%3:00:01:: 01004318 2 0 -unfinished%3:00:02:: 01005675 1 0 -unfinished%5:00:00:unpainted:00 01714157 3 0 -unfinished_business%1:04:00:: 00581885 1 0 -unfirm%5:00:00:loose:02 00503664 2 0 -unfirm%5:00:00:unfixed:00 01061310 1 0 -unfit%2:30:00:: 00301338 1 0 -unfit%3:00:01:: 01017738 2 0 -unfit%3:00:02:: 01021301 1 1 -unfit%5:00:00:unhealthy:00 01174222 3 0 -unfitness%1:07:00:: 04722373 3 0 -unfitness%1:07:01:: 05207130 2 0 -unfitness%1:26:00:: 14547369 1 0 -unfitting%5:00:00:incongruous:00 00562909 1 3 -unfixed%3:00:00:: 01060785 1 1 -unfixed%5:00:00:indefinite:00 00702245 2 0 -unflagging%5:00:00:constant:00 00583842 2 0 -unflagging%5:00:00:energetic:00 00874920 1 0 -unflappable%5:00:00:composed:00 00530047 1 0 -unflattering%3:00:00:: 00908315 1 0 -unflavored%5:00:00:tasteless:01 02400002 1 0 -unflavoured%5:00:00:tasteless:01 02400002 1 0 -unflawed%5:00:00:perfect:00 01751080 1 0 -unfledged%3:00:00:: 01096471 1 0 -unfledged%5:00:00:inexperienced:00 00936998 3 0 -unfledged%5:00:00:unfeathered:00 00999671 2 0 -unflinching%5:00:00:unafraid:00 00082034 1 0 -unfluctuating%5:00:00:stable:00 02291336 1 0 -unflurried%5:00:00:composed:00 00531087 1 0 -unflustered%5:00:00:composed:00 00531087 1 0 -unfocused%3:00:00:: 00782957 1 0 -unfocused%5:00:00:distributed:00 00542775 2 0 -unfocussed%3:00:04:: 00782957 1 0 -unfocussed%5:00:00:distributed:00 00542775 2 0 -unfold%2:30:00:: 00293760 1 5 -unfold%2:35:00:: 01579813 4 0 -unfold%2:38:00:: 02054989 3 1 -unfold%2:39:00:: 02144101 2 1 -unfolding%1:22:00:: 13571217 1 1 -unforbearing%5:00:00:impatient:00 01737698 1 0 -unforced%5:00:00:effortless:00 00838659 2 0 -unforced%5:00:00:voluntary:01 02521036 1 0 -unforceful%3:00:00:: 00842914 1 0 -unforeseeable%5:00:00:unpredictable:00 01842643 1 0 -unforeseen%5:00:00:unexpected:00 00930765 1 1 -unforesightful%5:00:00:improvident:00 01896046 1 0 -unforested%5:00:00:unwooded:00 02575138 1 0 -unforethoughtful%5:00:00:improvident:00 01896396 1 0 -unforfeitable%5:00:00:indefeasible:00 00694483 1 0 -unforgettable%3:00:00:: 01040410 1 3 -unforgettably%4:02:00:: 00399533 1 0 -unforgivable%5:00:00:unpardonable:00 01721867 1 0 -unforgivably%4:02:00:: 00333341 1 0 -unforgiving%3:00:00:: 01041481 1 0 -unforgiving%5:00:00:implacable:00 01785341 2 0 -unforgivingly%4:02:00:: 00343057 1 0 -unformatted_capacity%1:23:00:: 13755627 1 0 -unformed%3:00:00:: 02151705 1 0 -unformed%5:00:00:unorganized:00 01671509 2 0 -unfortunate%1:18:00:: 09630641 1 1 -unfortunate%3:00:00:: 01049462 1 7 -unfortunate%3:00:04:: 00176838 2 3 -unfortunate%5:00:00:infelicitous:00 01001547 3 0 -unfortunate_person%1:18:00:: 09630641 1 0 -unfortunately%4:02:00:: 00042769 1 12 -unfounded%5:00:00:unsupported:02 02353211 1 0 -unframed%3:00:00:: 01096889 1 0 -unfree%3:00:00:: 01064286 2 0 -unfree%3:00:01:: 01066070 1 0 -unfreeze%2:30:00:: 00376106 1 0 -unfreeze%2:30:01:: 00269682 2 0 -unfrequented%5:00:00:uninhabited:00 01313649 1 0 -unfretted%3:01:00:: 02731953 1 0 -unfriendliness%1:07:00:: 04657876 2 0 -unfriendliness%1:12:00:: 07502241 1 0 -unfriendly%3:00:01:: 01076793 2 0 -unfriendly%3:00:02:: 01078178 1 0 -unfriendly%5:00:00:inhospitable:00 01243373 4 0 -unfriendly%5:00:01:hostile:01 01246388 3 0 -unfrightened%5:00:00:unafraid:00 00082160 1 0 -unfrock%2:41:00:: 02476731 1 0 -unfrosted%5:00:00:clear:02 00432998 1 1 -unfrozen%3:00:00:: 01079683 1 2 -unfruitful%3:00:00:: 01082535 1 0 -unfueled%3:00:00:: 01099235 1 0 -unfulfilled%5:00:00:unsuccessful:00 02335393 1 0 -unfunctional%5:00:00:impractical:00 01837487 1 0 -unfunded%3:00:00:: 01098390 1 0 -unfunny%5:00:00:humorless:00 01268937 1 0 -unfurl%2:30:00:: 00435481 1 0 -unfurnished%3:00:00:: 01098154 1 0 -unfurrowed%3:00:00:: 02244472 1 0 -ungainliness%1:07:00:: 05004700 1 0 -ungainly%5:00:00:awkward:00 01140896 1 4 -ungainly%5:00:00:unwieldy:00 02564023 2 0 -ungallant%5:00:00:discourteous:00 00640931 1 0 -ungarbed%5:00:00:unclothed:00 00460157 1 0 -ungarmented%5:00:00:unclothed:00 00460157 1 0 -ungathered%3:44:00:: 03148137 1 0 -ungeared%3:00:00:: 01101118 1 0 -ungenerous%3:00:00:: 01115081 1 0 -ungenerous%3:00:04:: 01112573 2 0 -ungentle%5:00:00:lowborn:00 01593480 1 0 -ungentlemanlike%5:00:00:unrefined:01 01951456 1 0 -ungentlemanly%5:00:00:unrefined:01 01951456 1 0 -ungetatable%5:00:00:inaccessible:00 00020647 1 0 -unglamorous%5:00:00:unexciting:00 00922840 1 0 -unglamourous%5:00:00:unexciting:00 00922840 1 0 -unglazed%3:00:00:: 01120398 2 0 -unglazed%3:00:01:: 01120766 1 0 -ungodliness%1:07:00:: 04828754 1 0 -ungodly%5:00:00:wicked:00 02514543 1 2 -ungovernable%5:00:00:unmanageable:00 01475526 1 0 -ungoverned%5:00:00:uncontrolled:00 00601499 2 0 -ungoverned%5:00:00:unrestrained:00 02001596 1 0 -ungraceful%5:00:00:awkward:00 01141242 1 0 -ungracefully%4:02:01:: 00194362 1 0 -ungracefulness%1:07:00:: 05004532 1 0 -ungracious%3:00:00:: 01142349 1 0 -ungracious%5:00:00:impolite:00 00642152 2 0 -ungraciously%4:02:00:: 00194362 1 0 -ungraciousness%1:07:00:: 04914991 1 0 -ungradable_opposition%1:24:00:: 13857159 1 0 -ungraded%5:00:00:nonhierarchical:00 01204443 2 0 -ungraded%5:00:00:unimproved:00 01289480 1 0 -ungrammatical%3:00:00:: 01146207 1 0 -ungrammatically%4:02:00:: 00488000 1 0 -ungrasped%5:00:00:ununderstood:00 01379562 1 0 -ungrateful%3:00:00:: 01147044 1 1 -ungrateful%5:00:00:unpleasant:00 01804906 2 0 -ungrateful_person%1:18:00:: 10206763 1 0 -ungratefully%4:02:00:: 00271470 1 0 -ungratefulness%1:12:00:: 07504711 1 0 -ungratified%5:00:00:discontented:00 00590271 1 0 -ungratifying%5:00:00:unrewarding:00 02016145 1 0 -ungreased%3:00:00:: 02236757 1 0 -ungregarious%3:00:00:: 02253065 2 0 -ungregarious%3:00:01:: 02253655 1 0 -ungregarious%5:00:00:unsociable:00 02259120 3 0 -ungroomed%3:00:00:: 02428377 1 0 -ungrudging%5:00:00:generous:02 01114973 1 0 -ungrudgingly%4:02:00:: 00351918 1 0 -ungual%3:01:01:: 02840711 1 0 -unguaranteed%5:00:00:insecure:02 02095193 1 0 -unguarded%5:00:00:unwary:00 00163480 2 0 -unguarded%5:00:00:vulnerable:00 02525058 1 0 -unguent%1:06:00:: 03845550 1 0 -unguiculata%1:05:00:: 02371125 1 0 -unguiculate%1:05:00:: 02371344 1 0 -unguiculate%3:00:00:: 02489745 1 0 -unguiculate_mammal%1:05:00:: 02371344 1 0 -unguiculated%3:00:00:: 02489745 1 0 -unguided%3:00:00:: 01429359 1 0 -unguis%1:08:00:: 05581514 1 0 -ungulata%1:05:00:: 02370525 1 0 -ungulate%1:05:00:: 02370806 1 0 -ungulate%3:00:00:: 02489485 1 0 -ungulated%3:00:00:: 02489485 1 0 -ungummed%5:00:00:nonadhesive:00 00055256 1 0 -ungusseted%3:00:00:: 00210371 1 0 -unhallow%2:32:00:: 00867062 1 0 -unhallowed%3:00:00:: 02054779 1 0 -unhampered%5:00:00:free:00 01063958 2 0 -unhampered%5:00:00:unrestrained:00 02001984 1 0 -unhand%2:35:00:: 01475217 1 0 -unhappily%4:02:00:: 00050556 1 0 -unhappily%4:02:01:: 00042614 2 0 -unhappiness%1:12:00:: 07532440 1 1 -unhappiness%1:26:00:: 13988663 2 0 -unhappy%3:00:00:: 01149494 1 6 -unhappy%3:00:04:: 00909363 2 1 -unhappy%5:00:00:unfortunate:00 01051814 4 0 -unhappy%5:00:00:unpleasant:00 01805064 3 0 -unhardened%3:00:04:: 01522038 1 0 -unharmed%5:00:00:uninjured:00 01319712 1 0 -unharmonious%3:00:02:: 01164072 1 0 -unharmoniously%4:02:00:: 00236164 1 0 -unharness%2:35:00:: 01491886 1 0 -unhatched%5:00:00:unborn:00 01733784 1 0 -unhazardous%5:00:00:safe:01 02058529 1 0 -unheaded%3:00:00:: 01184825 1 0 -unhealed%5:00:00:ill:01 02547131 1 0 -unhealthful%3:00:00:: 01167817 2 0 -unhealthful%3:00:02:: 02113449 1 0 -unhealthful%5:00:00:unwholesome:00 02559534 3 0 -unhealthfulness%1:07:00:: 04791740 1 0 -unhealthiness%1:26:00:: 14052046 1 0 -unhealthy%3:00:00:: 01172889 1 1 -unhealthy%5:00:00:unhealthful:00 01168845 3 0 -unhealthy%5:00:00:unwholesome:00 02559534 2 0 -unhearable%3:00:00:: 00174379 1 0 -unheard%5:00:00:inaudible:00 00175435 1 0 -unheard-of%5:00:00:unknown:00 01377933 1 0 -unhearing%5:00:00:deaf:00 00682521 1 0 -unheated%5:00:00:cold:01 01254296 1 1 -unheeded%5:00:00:unnoticed:00 01608656 1 1 -unheeding%3:00:00:: 01193714 1 2 -unhelpful%3:00:00:: 01198019 1 0 -unhelpfully%4:02:00:: 00184131 1 0 -unhelpfulness%1:07:00:: 04845863 1 0 -unheralded%5:00:00:unexpected:00 00930540 1 0 -unhesitating%5:00:00:decisive:01 00685924 1 0 -unhesitatingly%4:02:00:: 00145992 1 2 -unhewn%5:00:00:unfinished:02 01006386 1 0 -unhindered%5:00:00:unrestrained:00 02001984 1 0 -unhinge%2:30:00:: 00179852 2 0 -unhinge%2:37:00:: 01764171 1 0 -unhinged%5:00:00:insane:00 02075321 1 0 -unhitch%2:35:00:: 01328340 1 2 -unholiness%1:07:00:: 04855840 1 0 -unholy%3:00:00:: 02054779 1 1 -unholy%5:00:00:evil:00 01132515 2 1 -unholy%5:00:00:unrighteous:00 02037531 3 0 -unhomogenised%5:00:00:unblended:00 01329719 1 0 -unhomogenized%5:00:00:unblended:00 01329719 1 0 -unhook%2:35:00:: 01366321 1 0 -unhoped%5:00:00:unexpected:00 00931070 1 0 -unhoped-for%5:00:00:unexpected:00 00931070 1 0 -unhopeful%5:00:00:hopeless:00 01229435 1 0 -unhorse%2:38:00:: 01958452 1 0 -unhuman%5:00:00:nonhuman:00 01260584 1 0 -unhumorous%3:00:00:: 01268426 1 0 -unhurried%3:00:00:: 01271700 1 1 -unhurried%5:00:00:patient:00 01737084 2 0 -unhurriedly%4:02:00:: 00206749 1 2 -unhurriedness%1:07:00:: 05061977 1 0 -unhurt%5:00:00:safe:01 02058656 2 0 -unhurt%5:00:00:uninjured:00 01319712 1 1 -unhygienic%5:00:00:unsanitary:00 02113672 1 0 -unhygienically%4:02:00:: 00360551 1 0 -uniat%1:18:00:: 09681107 1 0 -uniat_church%1:14:00:: 08086987 1 0 -uniate%1:18:00:: 09681107 1 0 -uniate%3:01:00:: 02820153 1 0 -uniate_christian%1:18:00:: 09681107 1 0 -uniate_church%1:14:00:: 08086987 1 0 -unicameral%3:00:00:: 00233353 1 0 -unicameral_script%1:10:00:: 06825736 1 0 -unicef%1:14:00:: 08299911 1 0 -unicellular%3:01:00:: 02820395 1 0 -unicorn%1:18:00:: 10737964 1 0 -unicorn_root%1:20:00:: 12430198 1 0 -unicuspid%5:00:00:angular:00 02049812 1 0 -unicycle%1:06:00:: 04509417 1 0 -unicycle%2:38:00:: 01935846 1 0 -unicyclist%1:18:00:: 10738111 1 0 -unidentifiable%3:00:00:: 01273143 1 0 -unidentified%5:00:00:anonymous:00 00120784 2 0 -unidentified%5:00:00:unknown:00 01378088 1 0 -unidentified_flying_object%1:09:00:: 05897825 1 0 -unidimensional%3:00:00:: 00659715 1 0 -unidirectional%3:00:00:: 00234106 1 0 -unifacial%5:00:00:unidirectional:00 00234733 1 0 -unification%1:04:00:: 00381680 3 0 -unification%1:11:00:: 07373602 1 1 -unification%1:26:00:: 14418395 2 0 -unification_church%1:14:00:: 08093421 1 0 -unified%5:00:00:integrated:02 01328229 2 0 -unified%5:00:00:united:00 02477557 1 5 -unifilar%3:01:00:: 02728444 1 0 -unifoliate%5:00:00:leafy:00 01703417 1 0 -uniform%1:06:00:: 04509592 1 18 -uniform%2:40:00:: 02331786 1 0 -uniform%3:00:00:: 01966488 1 4 -uniform%3:00:04:: 00744506 3 0 -uniform%5:00:00:homogeneous:00 01200095 2 2 -uniform%5:00:00:regular:00 01960310 4 0 -uniform_resource_locator%1:10:00:: 06358747 1 0 -uniformed%5:00:00:clothed:00 00457355 1 3 -uniformise%2:30:00:: 00552458 1 0 -uniformity%1:07:00:: 04745370 2 0 -uniformity%1:07:01:: 04769049 1 2 -uniformize%2:30:00:: 00552458 1 0 -uniformly%4:02:00:: 00250153 1 3 -uniformness%1:07:00:: 04745370 1 0 -unify%2:30:00:: 00367685 1 5 -unify%2:30:01:: 00243124 5 0 -unify%2:35:00:: 01462005 2 2 -unify%2:41:00:: 02469835 4 0 -unify%2:41:04:: 02603056 3 0 -unifying%5:00:00:centralizing:00 00334852 2 0 -unifying%5:00:00:integrative:00 01331540 1 0 -unilateral%3:00:00:: 00236989 1 1 -unilateral%5:00:00:lineal:00 01417105 2 0 -unilateral_contract%1:10:00:: 06525813 1 0 -unilateral_descent%1:24:00:: 13814601 1 0 -unilateral_paralysis%1:26:00:: 14559644 1 0 -unilateralism%1:09:00:: 05963744 1 0 -unilateralist%1:18:00:: 10738215 1 0 -unilaterally%4:02:00:: 00253117 1 0 -unilluminated%5:00:00:dark:01 00275985 1 0 -unilluminating%3:00:00:: 01326013 1 0 -unimaginable%5:00:00:unthinkable:00 02418692 1 1 -unimaginably%4:02:00:: 00488287 1 0 -unimaginative%5:00:00:conventional:01 00607977 3 0 -unimaginative%5:00:00:practical:00 01836025 2 0 -unimaginative%5:00:00:uncreative:00 00644560 1 1 -unimaginatively%4:02:00:: 00209073 2 0 -unimaginatively%4:02:02:: 00433637 1 0 -unimagined%5:00:00:incredible:00 00646276 1 0 -unimodal%3:00:00:: 00240323 1 0 -unimpaired%3:00:00:: 01275395 1 1 -unimpassioned%5:00:00:passionless:00 01727741 1 1 -unimpeachable%5:00:00:acceptable:00 00018222 3 0 -unimpeachable%5:00:00:innocent:00 01320705 2 0 -unimpeachable%5:00:00:unquestionable:00 01918873 1 1 -unimpeachably%4:02:00:: 00437576 1 1 -unimpeded%5:00:00:unobstructed:00 01622908 1 0 -unimportance%1:07:00:: 05172596 2 0 -unimportance%1:26:00:: 14436438 1 0 -unimportant%3:00:00:: 01279978 1 2 -unimportant%3:00:04:: 02164402 2 0 -unimposing%5:00:00:unimpressive:00 01286659 1 1 -unimpregnated%5:00:00:sterile:00 01002911 1 0 -unimpressed%5:00:00:unaffected:00 00072673 1 3 -unimpressionable%3:00:00:: 02365264 1 0 -unimpressive%3:00:00:: 01286539 1 1 -unimpressively%4:02:00:: 00213700 1 0 -unimprisoned%5:00:00:free:00 01063638 1 0 -unimproved%3:00:00:: 01289229 1 1 -unimproved%5:00:01:uncleared:00 01290547 2 0 -unincorporated%5:00:00:unorganized:00 01671620 1 0 -unindustrialised%5:00:00:nonindustrial:00 01302699 1 0 -unindustrialized%5:00:00:nonindustrial:00 01302699 1 0 -uninebriated%5:00:00:sober:01 00800159 1 0 -uninfected%5:00:00:antiseptic:00 02116473 1 0 -uninflected%3:00:00:: 00700312 1 0 -uninflected%3:00:01:: 00699876 2 0 -uninflected%3:00:04:: 00111415 3 0 -uninfluenced%5:00:00:unaffected:00 00072790 1 0 -uninfluential%3:00:00:: 01830871 1 0 -uninformative%3:00:00:: 01305607 1 0 -uninformatively%4:02:00:: 00374277 1 0 -uninformed%3:00:00:: 01308425 1 0 -uninhabitable%5:00:00:unlivable:00 01424156 1 0 -uninhabited%3:00:00:: 01312739 1 0 -uninhibited%3:00:00:: 01317012 1 0 -uninitiate%1:14:00:: 07948754 1 1 -uninitiate%5:00:00:inexperienced:00 00937341 1 0 -uninitiated%5:00:00:inexperienced:00 00937341 1 1 -uninjectable%3:00:00:: 01317831 1 1 -uninjured%3:00:00:: 01319182 1 0 -uninominal%5:00:00:single:05 02215769 1 0 -uninominal_system%1:09:00:: 05904313 1 0 -uninominal_voting_system%1:09:00:: 05904313 1 0 -uninquiring%3:00:00:: 00880120 1 0 -uninquiring%5:00:00:incurious:00 00665962 2 0 -uninquisitive%3:00:00:: 00880120 1 0 -uninquisitive%5:00:00:incurious:00 00665962 2 0 -uninspired%5:00:00:uncreative:00 00644560 2 0 -uninspired%5:00:00:unexciting:00 00923066 1 0 -uninspiring%3:00:00:: 01323334 1 0 -uninstructed%5:00:00:uninformed:00 01309657 1 0 -uninstructive%3:00:00:: 01325372 1 0 -uninstructively%4:02:00:: 00374277 1 0 -uninsurability%1:07:00:: 04718306 1 0 -uninsurable%5:00:00:uninsured:00 02097152 1 0 -uninsured%3:00:00:: 02097029 1 0 -unintegrated%3:00:01:: 01326917 2 0 -unintegrated%3:00:02:: 01329007 1 0 -unintelligent%3:00:00:: 01336587 1 1 -unintelligently%4:02:00:: 00202185 1 0 -unintelligibility%1:07:00:: 04823706 2 0 -unintelligibility%1:10:00:: 06608977 1 0 -unintelligible%3:00:00:: 01337121 1 0 -unintelligible%5:00:00:incomprehensible:00 00535293 2 0 -unintelligibly%4:02:00:: 00202554 1 0 -unintended%3:00:00:: 01338730 1 1 -unintentional%5:00:00:unintended:00 01339492 2 0 -unintentional%5:00:00:unwilling:00 02566644 1 0 -unintentionally%4:02:00:: 00062650 1 1 -uninterested%3:00:00:: 01342759 1 0 -uninterested%5:00:00:incurious:00 00665829 2 0 -uninteresting%3:00:00:: 01344963 1 0 -uninteresting%5:00:00:institutional:00 01231638 2 0 -uninterestingly%4:02:00:: 00214942 1 0 -uninterestingness%1:07:00:: 05205340 1 0 -uninterrupted%3:00:00:: 00594413 2 0 -uninterrupted%5:00:00:unbroken:02 00291338 1 2 -uninterruptedly%4:02:00:: 00488403 1 1 -unintimidated%5:00:00:unafraid:00 00082034 1 0 -unintoxicated%5:00:00:sober:01 00800159 1 0 -unintrusive%3:00:00:: 01352895 1 0 -uninucleate%3:01:00:: 02882373 1 0 -uninventive%5:00:00:uncreative:00 00644560 1 0 -uninvited%5:00:00:unwelcome:00 02540458 1 1 -uninvitedly%4:02:00:: 00485155 1 0 -uninviting%3:00:00:: 01359035 1 0 -uninviting%5:00:00:unseductive:00 02098243 2 0 -uninvolved%3:00:00:: 01516832 1 1 -uninvolved%5:00:00:unconcerned:00 00546155 2 0 -unio%1:05:00:: 01964821 1 0 -uniocular_dichromat%1:18:00:: 10738321 1 0 -union%1:04:00:: 00381680 11 0 -union%1:04:02:: 00847340 3 1 -union%1:06:01:: 04509815 10 0 -union%1:11:00:: 07373277 9 0 -union%1:14:01:: 08233056 1 27 -union%1:14:02:: 08304895 7 0 -union%1:14:03:: 07998712 8 0 -union%1:15:00:: 09052314 2 2 -union%1:22:00:: 13571365 6 0 -union%1:26:00:: 14418395 4 0 -union%1:26:02:: 13963970 5 0 -union%3:00:00:: 02474191 2 0 -union%5:00:00:northern:02 01606214 1 4 -union_army%1:14:00:: 08394535 1 0 -union_card%1:10:00:: 06478097 1 0 -union_flag%1:06:00:: 04509985 1 0 -union_jack%1:06:00:: 04509985 1 0 -union_member%1:18:00:: 10720964 1 0 -union_of_burma%1:15:00:: 08715390 1 0 -union_of_serbia_and_montenegro%1:15:00:: 08816236 1 0 -union_of_soviet_socialist_republics%1:15:00:: 09003284 1 2 -union_representative%1:18:00:: 10738515 1 0 -union_shop%1:14:00:: 08235173 1 0 -union_soldier%1:18:00:: 10373639 1 0 -union_suit%1:06:00:: 03688707 1 0 -unionidae%1:05:00:: 01964636 1 0 -unionisation%1:04:00:: 00242583 1 0 -unionise%2:41:00:: 02434238 2 0 -unionise%2:41:01:: 02435867 1 0 -unionised%3:00:00:: 00356211 1 0 -unionised%5:00:00:union:00 02474476 2 0 -unionism%1:14:00:: 08473482 1 0 -unionist%1:18:00:: 10720964 1 0 -unionization%1:04:00:: 00242583 1 0 -unionize%2:41:00:: 02434238 2 0 -unionize%2:41:01:: 02435867 1 0 -unionized%3:00:00:: 00356211 1 0 -unionized%5:00:00:union:00 02474476 2 0 -uniovular%3:01:00:: 02820490 1 0 -uniovulate%3:01:00:: 02820490 1 0 -uniparous%3:00:00:: 02475179 1 0 -unipolar%3:00:00:: 02475529 1 0 -unipolar_depression%1:26:00:: 14391480 1 0 -unique%5:00:00:incomparable:00 00505853 1 10 -unique%5:00:00:single:05 02215087 3 0 -unique%5:00:00:specific:00 01105042 2 2 -unique%5:00:00:unusual:00 00491511 4 0 -uniquely%4:02:00:: 00175490 1 4 -uniqueness%1:07:00:: 04763650 1 3 -unironed%3:00:00:: 01359861 1 0 -unisex%5:00:00:androgynous:00 01479715 1 0 -unisexual%5:00:00:sexual:00 02135773 1 0 -unison%1:07:01:: 04981781 3 0 -unison%1:07:02:: 05049137 2 0 -unison%1:26:00:: 13972505 1 0 -unit%1:03:00:: 00003553 6 0 -unit%1:09:00:: 05869857 4 6 -unit%1:14:00:: 08189659 3 9 -unit%1:17:00:: 09465459 5 2 -unit%1:23:00:: 13583724 1 14 -unit%1:24:00:: 13810323 2 13 -unit_cell%1:17:00:: 09465795 1 3 -unit_character%1:07:00:: 04617106 1 0 -unit_cost%1:21:00:: 13303214 1 2 -unit_investment_trust%1:14:00:: 08072536 1 0 -unit_matrix%1:14:00:: 08269257 1 0 -unit_of_ammunition%1:06:00:: 04113641 1 0 -unit_of_measurement%1:23:00:: 13583724 1 0 -unit_of_time%1:28:00:: 15154774 1 0 -unit_of_viscosity%1:23:00:: 13609390 1 0 -unit_trust%1:14:00:: 08072536 1 0 -unitard%1:06:00:: 03657511 1 0 -unitarian%1:18:00:: 10738670 1 1 -unitarian%3:01:00:: 02955996 1 0 -unitarian_church%1:14:00:: 08092040 1 0 -unitarianism%1:09:00:: 06230358 1 0 -unitary%3:00:00:: 01107521 3 0 -unitary%3:01:01:: 02820598 2 0 -unitary%3:01:02:: 02820808 1 0 -unitary%5:00:00:united:00 02477885 4 0 -unite%2:30:00:: 00367685 2 7 -unite%2:30:02:: 00243124 6 0 -unite%2:41:00:: 02469835 1 7 -unite%2:41:04:: 02603056 5 0 -unite%2:42:01:: 02631163 3 0 -unite%2:42:02:: 02622234 4 0 -united%3:00:00:: 02475855 1 3 -united%5:00:00:married:00 01481812 2 0 -united_arab_emirate_dirham%1:23:00:: 13671813 1 0 -united_arab_emirate_monetary_unit%1:23:00:: 13671674 1 0 -united_arab_emirates%1:15:00:: 09044190 1 0 -united_arab_emirates's_capital%1:15:00:: 09044536 1 0 -united_arab_republic%1:15:00:: 08897065 1 0 -united_church_of_christ%1:14:00:: 08091412 1 0 -united_front%1:14:00:: 08476425 1 0 -united_kingdom%1:15:00:: 08860123 1 2 -united_kingdom_of_great_britain_and_northern_ireland%1:15:00:: 08860123 1 0 -united_methodist_church%1:14:00:: 08092960 1 0 -united_mexican_states%1:15:00:: 08740875 1 0 -united_mine_workers%1:14:00:: 08233762 1 0 -united_mine_workers_of_america%1:14:00:: 08233762 1 0 -united_nations%1:14:00:: 08295580 1 4 -united_nations_agency%1:14:00:: 08299493 1 0 -united_nations_children's_fund%1:14:00:: 08299911 1 0 -united_nations_crime_prevention_and_criminal_justice%1:14:00:: 08302468 1 0 -united_nations_day%1:28:00:: 15191080 1 0 -united_nations_educational_scientific_and_cultural_organization%1:14:00:: 08302052 1 0 -united_nations_international_children's_emergency_fund%1:14:00:: 08299911 1 0 -united_nations_office_for_drug_control_and_crime_prevention%1:14:00:: 08302257 1 0 -united_nations_secretariat%1:14:00:: 08296196 1 0 -united_republic_of_tanzania%1:15:00:: 09034550 1 0 -united_self-defense_force_of_colombia%1:14:00:: 08047032 1 0 -united_self-defense_group_of_colombia%1:14:00:: 08047032 1 0 -united_society_of_believers_in_christ's_second_appearing%1:14:00:: 08150576 1 0 -united_states%1:14:00:: 08355791 2 29 -united_states%1:15:00:: 09044862 1 71 -united_states_air_force%1:14:00:: 08196230 1 0 -united_states_air_force_academy%1:14:00:: 08194927 1 0 -united_states_army%1:14:00:: 08394922 1 0 -united_states_army_criminal_investigation_laboratory%1:06:00:: 04510090 1 0 -united_states_army_rangers%1:14:00:: 08395298 1 0 -united_states_army_special_forces%1:14:00:: 08213424 1 0 -united_states_attorney_general%1:18:00:: 10570429 1 0 -united_states_border_patrol%1:14:00:: 08136767 1 0 -united_states_cabinet%1:14:00:: 08382570 1 0 -united_states_civil_war%1:04:00:: 01301630 1 0 -united_states_coast_guard%1:14:00:: 08192557 1 0 -united_states_code%1:10:00:: 06668147 1 0 -united_states_congress%1:14:00:: 08161757 1 0 -united_states_constitution%1:10:00:: 06534132 1 0 -united_states_customary_system%1:23:00:: 13578830 1 0 -united_states_department_of_defense%1:14:00:: 08131530 1 0 -united_states_department_of_state%1:14:00:: 08137738 1 0 -united_states_dollar%1:23:00:: 13674350 1 1 -united_states_dry_unit%1:23:00:: 13620154 1 0 -united_states_fish_and_wildlife_service%1:14:00:: 08139270 1 0 -united_states_government%1:14:00:: 08355791 1 0 -united_states_government_accounting_office%1:14:00:: 08162245 1 0 -united_states_government_printing_office%1:14:00:: 08356573 1 0 -united_states_house_of_representatives%1:14:00:: 08161971 1 0 -united_states_intelligence_agency%1:14:00:: 08339939 1 0 -united_states_intelligence_community%1:14:00:: 08340153 1 0 -united_states_liquid_unit%1:23:00:: 13615235 1 0 -united_states_marine_corps%1:14:00:: 08192970 1 0 -united_states_marines%1:14:00:: 08192970 1 0 -united_states_marshals_service%1:14:00:: 08142370 1 0 -united_states_military_academy%1:14:00:: 08395465 1 0 -united_states_mint%1:06:00:: 04510456 1 0 -united_states_national_library_of_medicine%1:06:00:: 03810741 1 0 -united_states_naval_academy%1:14:00:: 08194074 1 0 -united_states_navy%1:14:00:: 08191987 1 0 -united_states_of_america%1:15:00:: 09044862 1 4 -united_states_post_office%1:14:00:: 08145277 1 0 -united_states_postal_inspection_service%1:14:00:: 08127557 1 0 -united_states_postal_service%1:14:00:: 08127304 1 0 -united_states_president%1:18:00:: 10467395 1 0 -united_states_public_health_service%1:14:00:: 08133855 1 0 -united_states_secret_service%1:14:00:: 08348400 1 0 -united_states_senate%1:14:00:: 08161591 1 0 -united_states_supreme_court%1:14:00:: 08335886 1 0 -united_states_trade_representative%1:14:00:: 08128645 1 0 -united_states_treasury%1:14:00:: 08139795 1 0 -united_states_virgin_islands%1:15:00:: 08755003 1 0 -united_states_waters%1:17:00:: 09465984 1 0 -unitedly%4:02:00:: 00116588 1 0 -uniting%1:04:00:: 00381680 2 0 -uniting%1:04:01:: 01238424 1 0 -unitisation%1:04:00:: 01093532 3 0 -unitisation%1:04:01:: 00952787 4 0 -unitisation%1:04:02:: 01104174 2 0 -unitisation%1:09:00:: 05731568 1 0 -unitise%2:30:00:: 00368109 3 0 -unitise%2:35:00:: 01385458 2 0 -unitise%2:41:00:: 02468793 1 0 -unitization%1:04:00:: 01093532 3 0 -unitization%1:04:01:: 00952787 4 0 -unitization%1:04:02:: 01104174 2 0 -unitization%1:09:00:: 05731568 1 0 -unitize%2:30:00:: 00368109 3 0 -unitize%2:35:00:: 01385458 2 0 -unitize%2:41:00:: 02468793 1 0 -unity%1:07:00:: 04743370 3 2 -unity%1:23:00:: 13742573 2 3 -unity%1:26:00:: 14460565 1 19 -univalent%3:00:02:: 01546593 1 1 -univalent%3:00:04:: 01546222 2 0 -univalve%1:05:00:: 01942177 1 0 -univalve%3:00:00:: 02483692 1 0 -universal%1:06:00:: 04510706 4 0 -universal%1:09:00:: 05668359 3 0 -universal%1:10:00:: 06751367 2 0 -universal%1:10:01:: 07259984 1 0 -universal%5:00:00:adaptable:00 01028623 3 0 -universal%5:00:00:comprehensive:00 00527188 1 21 -universal%5:00:00:general:00 01102674 2 0 -universal_agent%1:18:00:: 10738968 1 0 -universal_donor%1:18:00:: 10739135 1 0 -universal_gas_constant%1:23:00:: 13590079 1 0 -universal_gravitational_constant%1:23:00:: 13590327 1 0 -universal_joint%1:06:00:: 04510706 1 0 -universal_product_code%1:10:00:: 06354774 1 0 -universal_proposition%1:10:00:: 06751367 1 0 -universal_quantifier%1:10:00:: 06302967 1 0 -universal_resource_locator%1:10:00:: 06358747 1 0 -universal_set%1:14:00:: 08000644 1 0 -universal_solvent%1:27:00:: 15048463 1 0 -universal_suffrage%1:07:00:: 05186626 1 0 -universal_time%1:28:00:: 15130205 1 0 -universal_veil%1:20:00:: 13094732 1 0 -universalise%2:32:00:: 01022740 1 0 -universalism%1:09:00:: 06192665 1 0 -universalist%3:01:00:: 02952814 1 0 -universalistic%3:01:00:: 02952814 1 1 -universalistic%3:01:01:: 03143286 2 0 -universality%1:07:00:: 04765691 1 3 -universalize%2:32:00:: 01022740 1 1 -universally%4:02:00:: 00195342 1 5 -universe%1:09:00:: 05814162 3 0 -universe%1:09:01:: 06026276 2 0 -universe%1:17:00:: 09466280 1 12 -universe_of_discourse%1:09:00:: 05814162 1 0 -university%1:06:00:: 04511002 2 14 -university%1:14:00:: 08286163 1 20 -university%1:14:01:: 08286569 3 0 -university_extension%1:04:00:: 00886039 1 0 -university_of_california_at_berkeley%1:06:00:: 04511832 1 0 -university_of_chicago%1:06:00:: 04511971 1 0 -university_of_michigan%1:06:00:: 04512092 1 0 -university_of_nebraska%1:06:00:: 04512216 1 0 -university_of_north_carolina%1:06:00:: 04512338 1 0 -university_of_paris%1:06:00:: 03890713 1 0 -university_of_pennsylvania%1:06:00:: 04512476 1 0 -university_of_pittsburgh%1:06:00:: 04512652 1 0 -university_of_sussex%1:06:00:: 04512783 1 0 -university_of_texas%1:06:00:: 04512933 1 0 -university_of_vermont%1:06:00:: 04513048 1 0 -university_of_washington%1:06:00:: 04513171 1 0 -university_of_west_virginia%1:06:00:: 04513297 1 0 -university_of_wisconsin%1:06:00:: 04513432 1 0 -university_student%1:18:00:: 09936892 1 1 -univocal%3:00:00:: 00896555 1 0 -unix%1:10:00:: 06568706 1 0 -unix_guru%1:18:00:: 10739297 1 0 -unix_operating_system%1:10:00:: 06568706 1 0 -unix_system%1:10:00:: 06568706 1 0 -unjointed%5:00:00:unarticulated:00 00153789 1 0 -unjust%3:00:00:: 01370590 2 0 -unjust%3:00:02:: 00958712 3 0 -unjust%3:00:04:: 00957176 1 1 -unjustifiable%5:00:00:inexcusable:00 01722367 1 0 -unjustifiably%4:02:00:: 00238794 1 0 -unjustified%5:00:00:unreasonable:00 01945350 1 0 -unjustly%4:02:00:: 00205561 1 0 -unjustness%1:07:00:: 04854389 1 0 -unkempt%5:00:00:uncombed:00 02429461 1 0 -unkempt%5:00:02:untidy:00 02426890 2 0 -unkemptness%1:26:00:: 14499734 1 0 -unkept%3:00:00:: 00289594 1 0 -unkeyed%3:00:00:: 02438188 1 0 -unkind%3:00:00:: 01373728 1 1 -unkind%5:00:00:inhumane:00 01264179 2 0 -unkind_person%1:18:00:: 10304278 1 0 -unkindled%5:00:00:unlighted:00 00475927 1 0 -unkindly%4:02:00:: 00004567 1 0 -unkindly%5:00:00:unkind:00 01374461 1 0 -unkindness%1:07:00:: 04845312 1 0 -unknot%2:35:00:: 01520844 1 0 -unknowable%3:00:00:: 01374789 1 0 -unknowing%1:09:00:: 05988743 1 0 -unknowing%5:00:00:uninformed:00 01308894 1 0 -unknowingly%4:02:00:: 00237833 1 0 -unknowingness%1:09:00:: 05679611 2 0 -unknowingness%1:09:01:: 05988743 1 0 -unknowledgeable%5:00:00:uninformed:00 01308894 1 0 -unknown%1:10:00:: 07271648 3 0 -unknown%1:15:00:: 08632096 1 5 -unknown%1:18:00:: 10661002 2 0 -unknown%3:00:00:: 01376894 1 13 -unknown%5:00:00:anonymous:00 00120784 2 2 -unknown%5:00:00:inglorious:00 01122595 4 1 -unknown%5:00:00:unfamiliar:00 00966753 5 0 -unknown%5:00:00:unsuspected:00 02370625 3 1 -unknown_quantity%1:10:00:: 07271648 2 0 -unknown_quantity%1:11:00:: 07328436 1 1 -unknown_region%1:15:00:: 08632096 1 0 -unknown_soldier%1:18:00:: 10739391 1 0 -unlabeled%3:00:00:: 01379844 1 0 -unlabelled%3:00:00:: 01379844 1 0 -unlace%2:35:00:: 01284461 1 1 -unlaced%3:00:00:: 00254615 1 0 -unlaced%5:00:00:unrestrained:00 02001776 2 0 -unlade%2:35:00:: 01488123 1 0 -unladylike%5:00:00:unrefined:01 01951559 1 0 -unlamented%3:00:00:: 01380127 1 0 -unlash%2:35:00:: 01303954 1 1 -unlatched%5:00:00:unfastened:00 02096382 1 0 -unlaureled%3:00:00:: 01381907 1 0 -unlaurelled%3:00:00:: 01381907 1 0 -unlawful%3:00:00:: 01396047 2 0 -unlawful%5:00:00:illegal:00 01403760 5 0 -unlawful%5:00:00:illegitimate:00 01408421 4 0 -unlawful%5:00:00:illicit:00 01551026 3 0 -unlawful%5:00:00:irregular:00 01961410 1 1 -unlawful_carnal_knowledge%1:04:00:: 00848098 1 0 -unlawfully%4:02:00:: 00251990 1 0 -unlawfulness%1:07:00:: 04810865 1 0 -unlax%2:29:01:: 00025654 1 0 -unleaded%3:00:00:: 01397125 1 0 -unleaded%5:00:00:unspaced:00 01656520 2 0 -unleaded_gasoline%1:27:00:: 15083819 1 0 -unleaded_petrol%1:27:00:: 15083819 1 0 -unlearn%2:31:00:: 00598502 2 0 -unlearn%2:31:01:: 00598629 1 0 -unlearned%3:00:02:: 01637184 1 0 -unlearned%5:00:00:uneducated:00 00831225 3 0 -unlearned%5:00:00:unscholarly:00 02084663 2 0 -unleash%2:35:00:: 01475415 1 2 -unleash%2:35:01:: 01475828 2 1 -unleash%2:35:02:: 01475536 3 1 -unleavened%3:00:00:: 01399949 1 0 -unleavened_bread%1:13:00:: 07684164 1 2 -unlettered%5:00:00:illiterate:00 01421887 1 0 -unlettered%5:00:00:uneducated:00 00831225 2 0 -unlicenced%5:00:00:unauthorized:00 00179815 1 0 -unlicensed%5:00:00:unauthorized:00 00179815 1 0 -unlifelike%5:00:00:artificial:00 01572325 1 0 -unlighted%3:00:00:: 00475749 1 0 -unlighted%5:00:00:dark:01 00275985 2 0 -unlikable%3:00:02:: 02376562 1 0 -unlikable%5:00:00:disliked:00 01461680 2 0 -unlike%3:00:00:: 01410363 1 6 -unlike%3:00:02:: 01411291 2 0 -unlikeable%3:00:02:: 02376562 1 0 -unlikeable%5:00:00:disliked:00 01461680 2 0 -unlikelihood%1:07:00:: 04758776 1 0 -unlikeliness%1:07:00:: 04758776 1 0 -unlikely%3:00:00:: 01412415 2 5 -unlikely%3:00:04:: 01413871 1 5 -unlikely%5:00:00:implausible:00 01800169 3 0 -unlikeness%1:07:00:: 04750764 1 0 -unlimited%3:00:00:: 01415605 1 3 -unlimited%5:00:00:infinite:00 01008289 3 0 -unlimited%5:00:00:unqualified:02 01914407 2 0 -unlined%3:00:00:: 01418181 1 2 -unlined%5:00:00:smooth:00 02237978 2 1 -unlipped%3:00:00:: 01704675 1 0 -unlisted%3:00:00:: 01418350 1 0 -unlisted%5:00:00:unregistered:00 01958777 2 0 -unlisted_security%1:21:00:: 13421095 1 0 -unlisted_stock%1:21:00:: 13421286 1 0 -unlit%3:00:02:: 00475749 1 0 -unlit%5:00:00:dark:01 00275985 2 0 -unliterary%5:00:00:informal:02 01047144 1 1 -unlittered%5:00:00:tidy:00 02424095 1 0 -unlivable%3:00:00:: 01423998 1 0 -unlive%2:42:00:: 02615300 1 0 -unliveable%3:00:00:: 01423998 1 0 -unliveried%3:00:00:: 01424353 1 0 -unload%2:35:00:: 01488123 2 0 -unload%2:35:02:: 01489465 1 3 -unloaded%3:00:00:: 01424868 1 1 -unloading%1:04:00:: 00714173 1 2 -unlobed%5:00:00:simple:01 02170957 1 0 -unlocated%5:00:00:unsettled:01 02128922 1 0 -unlock%2:30:00:: 00219963 3 1 -unlock%2:35:00:: 01348705 1 4 -unlock%2:35:01:: 01511289 2 1 -unlocked%5:00:00:unfastened:00 02096382 1 2 -unlogical%3:00:04:: 01430847 1 0 -unlooked-for%5:00:00:unexpected:00 00930765 1 0 -unloose%2:35:00:: 01285159 2 0 -unloose%2:41:00:: 02421374 1 0 -unloosen%2:35:00:: 01285159 2 0 -unloosen%2:41:00:: 02421374 1 0 -unlovable%5:00:00:hateful:00 01460982 1 0 -unloved%3:00:00:: 01463137 1 0 -unlovely%5:00:00:ugly:00 00222449 1 1 -unloving%3:00:00:: 01466593 1 0 -unlubricated%3:00:00:: 02236757 1 0 -unluckily%4:02:00:: 00042769 1 1 -unlucky%3:00:00:: 01468682 1 1 -unlucky%5:00:00:unfortunate:00 01051410 2 0 -unmade%3:00:00:: 01469516 1 0 -unmake%2:36:00:: 01619231 1 0 -unmalicious%3:00:00:: 00226535 1 1 -unmalleability%1:07:00:: 05023974 1 0 -unmalleable%5:00:00:intractable:00 02452919 1 0 -unmalted%3:44:00:: 03150431 1 0 -unman%2:37:00:: 01784025 1 0 -unmanageable%3:00:00:: 01475282 2 0 -unmanageable%3:00:04:: 02563727 1 0 -unmanageable%5:00:00:incorrigible:00 00635752 4 0 -unmanageable%5:00:00:intractable:00 02452789 3 0 -unmanageableness%1:07:00:: 04907575 1 0 -unmanageably%4:02:00:: 00390421 1 1 -unmanful%3:00:00:: 01476154 1 0 -unmanfully%4:02:00:: 00390816 1 0 -unmanlike%3:00:00:: 01476154 1 0 -unmanliness%1:07:00:: 04668139 1 0 -unmanly%3:00:00:: 01476154 1 0 -unmanly%4:02:00:: 00390816 1 0 -unmanly%5:00:00:cowardly:00 00266420 2 0 -unmanned%3:00:00:: 01479940 1 0 -unmannered%5:00:00:impolite:00 00641944 1 0 -unmannered%5:00:00:unaffected:01 00074741 2 0 -unmannerly%5:00:00:impolite:00 00641944 1 0 -unmapped%5:00:00:unknown:00 01377257 1 0 -unmarked%3:00:00:: 01481135 1 0 -unmarked%5:00:00:unnoticed:00 01608848 2 0 -unmarketable%5:00:01:unsalable:00 02062481 2 0 -unmarketable%5:00:02:unsalable:00 02062565 1 0 -unmarred%3:00:00:: 00247013 1 0 -unmarried%3:00:00:: 01482228 1 2 -unmarried_man%1:18:00:: 09829923 1 0 -unmarried_woman%1:18:00:: 10739512 1 0 -unmask%2:32:00:: 00935631 1 1 -unmask%2:35:00:: 01358573 2 0 -unmasking%1:10:00:: 07215568 1 0 -unmatchable%5:00:00:incomparable:00 00505410 1 0 -unmatched%5:00:00:incomparable:00 00505410 2 0 -unmatched%5:00:00:mismatched:00 01487496 1 0 -unmated%3:00:00:: 01483143 1 1 -unmated%5:00:00:mismatched:00 01487496 2 0 -unmeasurable%3:00:00:: 01498957 1 0 -unmeasured%3:00:00:: 01498957 1 0 -unmeasured%5:00:00:unrhythmical:00 02021415 2 0 -unmechanical%5:00:00:maladroit:00 00064365 1 0 -unmechanised%5:00:00:nonmechanical:00 01500952 1 0 -unmechanized%5:00:00:nonmechanical:00 01500952 1 0 -unmediated%5:00:00:immediate:00 00770480 1 0 -unmedical%5:00:00:unhealthful:00 01168632 1 0 -unmedicative%5:00:00:unhealthful:00 01168632 1 0 -unmedicinal%5:00:00:unhealthful:00 01168632 1 0 -unmelodic%3:00:04:: 01502099 1 0 -unmelodious%3:00:00:: 01502099 2 0 -unmelodious%3:00:04:: 01502383 1 0 -unmelodiously%4:02:00:: 00399106 1 0 -unmelted%3:00:00:: 01506770 1 0 -unmemorable%5:00:00:forgettable:00 01040331 1 0 -unmemorably%4:02:00:: 00399702 1 0 -unmentionable%1:06:00:: 04508163 1 0 -unmentionable%5:00:00:impermissible:00 01761609 1 0 -unmercenary%5:00:00:unworldly:00 02579363 1 0 -unmerchantable%5:00:00:unsalable:00 02062565 1 0 -unmerciful%3:00:04:: 01507402 1 0 -unmercifully%4:02:00:: 00400471 1 0 -unmercifulness%1:07:00:: 04831031 1 0 -unmerited%3:00:00:: 01371397 1 0 -unmerited%5:00:00:unworthy:00 02588527 2 0 -unmeritorious%5:00:00:unworthy:00 02588647 1 1 -unmethodical%5:00:00:disorganized:00 01669899 1 0 -unmilitary%3:00:00:: 01518955 1 0 -unmindful%3:00:00:: 01978003 1 0 -unmindful%5:00:01:unaware:00 00192026 2 0 -unmindfully%4:02:00:: 00153865 1 0 -unmindfulness%1:07:00:: 04665543 1 0 -unmined%3:00:00:: 01504531 1 0 -unmingled%5:00:00:pure:02 01907103 1 0 -unmistakable%5:00:00:clear:00 00429909 1 3 -unmistakable%5:00:00:obvious:00 01618376 2 0 -unmistakably%4:02:00:: 00212062 1 2 -unmistakably%4:02:01:: 00454512 2 0 -unmitigable%5:00:00:implacable:00 01785783 1 0 -unmitigated%3:00:00:: 01519803 1 0 -unmixable%3:00:00:: 00509735 1 0 -unmixed%5:00:00:pure:02 01907103 1 0 -unmixed%5:00:00:uncombined:00 01330890 2 0 -unmoderated%5:00:00:untempered:01 01521427 1 0 -unmodernised%5:00:00:regressive:01 01877521 1 0 -unmodernized%5:00:00:regressive:01 01877521 1 0 -unmodifiable%3:00:00:: 00350384 1 0 -unmodified%3:00:00:: 01541013 1 0 -unmodulated%3:00:00:: 01541632 1 0 -unmolested%5:00:00:untroubled:00 02460404 1 8 -unmortgaged%5:00:00:unencumbered:00 00869253 1 0 -unmotivated%3:00:00:: 01558912 1 0 -unmotorised%3:00:00:: 01559804 1 0 -unmotorized%3:00:00:: 01559804 1 0 -unmourned%3:00:00:: 01380127 1 0 -unmovable%5:00:00:immobile:00 01525320 1 0 -unmoved%3:00:00:: 01560320 1 2 -unmoved%5:00:00:unaltered:00 00353604 2 0 -unmoving%3:00:00:: 01561564 2 0 -unmoving%3:00:02:: 01564073 1 0 -unmown%3:00:00:: 01566288 1 0 -unmusical%3:00:01:: 01505318 2 0 -unmusical%3:00:02:: 01505786 1 0 -unmusical%3:00:04:: 01502099 3 0 -unmusically%4:02:00:: 00405389 1 0 -unmutilated%3:00:00:: 00247013 1 0 -unmuzzle%2:40:00:: 02341086 1 0 -unmyelinated%3:01:00:: 02766848 1 0 -unnameable%5:00:00:sacred:00 02055617 1 0 -unnamed%5:00:00:anonymous:00 00120784 1 0 -unnatural%3:00:00:: 01570470 1 4 -unnatural%3:00:03:: 01595596 2 0 -unnatural%3:00:04:: 00073048 3 0 -unnaturalised%5:00:00:foreign:01 01035976 1 0 -unnaturalized%5:00:00:foreign:01 01035976 1 0 -unnaturally%4:02:00:: 00140566 2 0 -unnaturally%4:02:02:: 00488579 1 0 -unnaturally%4:02:03:: 00038767 3 0 -unnaturalness%1:07:00:: 04787530 1 0 -unnavigable%5:00:00:impassable:00 01725537 1 0 -unnecessarily%4:02:00:: 00408498 1 2 -unnecessarily%4:02:01:: 00179677 2 0 -unnecessary%3:00:00:: 01581115 1 5 -unneeded%3:00:00:: 01581115 1 1 -unneighborliness%1:07:00:: 04658816 1 0 -unneighborly%5:00:00:unfriendly:01 01077485 1 0 -unneighbourly%5:00:00:unfriendly:01 01077485 1 0 -unnerve%2:37:00:: 01783881 1 0 -unnerved%5:00:00:afraid:00 00081234 1 0 -unnerving%5:00:00:alarming:00 00195383 1 0 -unneurotic%3:00:00:: 01586009 1 0 -unnilquadium%1:27:00:: 14653416 1 0 -unnotched%5:00:00:smooth:02 02245318 1 0 -unnoted%5:00:00:unnoticed:00 01608848 1 0 -unnoticeable%3:00:00:: 01288091 2 0 -unnoticeable%3:00:04:: 01614988 1 0 -unnoticeable%5:00:00:inconspicuous:00 00581637 3 0 -unnoticeableness%1:07:00:: 04707808 1 0 -unnoticeably%4:02:00:: 00365414 1 0 -unnoticed%3:00:00:: 01608264 1 1 -unnourished%5:00:00:malnourished:00 02301489 1 0 -unnumberable%5:00:00:incalculable:00 00301951 1 0 -unnumbered%5:00:00:incalculable:00 00301951 1 1 -unnumerable%5:00:00:incalculable:00 00301951 1 0 -unobjectionable%3:00:02:: 00424008 1 0 -unobjectionable%5:00:00:acceptable:00 00018435 3 0 -unobjectionable%5:00:00:inoffensive:01 01627635 2 0 -unobjective%5:00:00:subjective:00 01616350 1 0 -unobligated%3:00:00:: 01617502 1 0 -unobliging%3:00:00:: 00021403 1 0 -unobservable%5:00:00:imperceptible:00 01749225 1 0 -unobservant%5:00:00:unperceptive:00 01746464 1 0 -unobserved%5:00:00:undetected:00 01610261 1 0 -unobserved%5:00:00:unnoticed:00 01608997 2 0 -unobserved_fire%1:04:00:: 00994321 1 0 -unobstructed%3:00:00:: 01622302 1 0 -unobtainable%5:00:00:unavailable:00 00186193 1 2 -unobtrusive%3:00:00:: 01614988 1 0 -unobtrusively%4:02:00:: 00412987 1 1 -unobtrusiveness%1:07:00:: 04707964 1 0 -unobvious%3:00:00:: 01620052 1 0 -unoccupied%3:00:00:: 01623836 1 2 -unoccupied%3:00:02:: 01624403 2 0 -unoccupied%5:00:00:uninhabited:00 01313346 3 0 -unoffending%3:00:00:: 01631703 1 0 -unoffending%3:00:02:: 01628677 2 0 -unofficial%3:00:00:: 01633591 1 3 -unofficial%5:00:00:unconfirmed:00 01635018 2 0 -unofficially%4:02:00:: 00114461 2 0 -unofficially%4:02:01:: 00244201 1 0 -unoiled%3:00:00:: 01955147 1 0 -unoiled%5:00:00:unpainted:00 01714314 2 0 -unopen%3:00:04:: 01652782 1 0 -unopened%5:00:00:sealed:01 02086879 1 0 -unopposable%3:00:00:: 01662685 1 0 -unopposed%3:00:00:: 01663049 1 1 -unordered%3:00:00:: 01668250 1 0 -unordered%5:00:00:nonhierarchical:00 01204443 2 0 -unorganised%3:00:00:: 01671095 1 0 -unorganised%5:00:00:nonunion:00 02475001 2 0 -unorganized%3:00:00:: 01671095 1 0 -unorganized%5:00:00:nonunion:00 02475001 2 0 -unoriented%3:00:00:: 01683667 1 0 -unoriginal%3:00:00:: 01688271 1 0 -unoriginality%1:07:00:: 04801168 2 0 -unoriginality%1:09:00:: 05649628 1 0 -unoriginally%4:02:00:: 00154803 1 0 -unornamented%5:00:00:unadorned:00 00060605 1 0 -unorthodox%3:00:00:: 01691073 2 1 -unorthodox%5:00:00:unconventional:00 00607202 1 2 -unorthodoxy%1:07:00:: 04800729 3 0 -unorthodoxy%1:09:00:: 06212422 1 0 -unorthodoxy%1:09:01:: 05980412 2 0 -unostentatious%3:00:00:: 01848970 1 0 -unostentatious%5:00:00:tasteful:02 02393220 2 0 -unowned%3:00:00:: 00360569 1 0 -unoxygenated%5:00:00:unventilated:00 02509854 1 0 -unpack%2:35:00:: 01485513 1 1 -unpackaged%3:00:00:: 01739456 1 0 -unpaid%3:00:00:: 01709815 1 5 -unpaid%5:00:00:nonprofessional:00 01869634 3 0 -unpaid%5:00:00:voluntary:01 02521183 2 0 -unpaid_worker%1:18:00:: 10759151 1 0 -unpainful%5:00:00:painless:00 01713250 1 0 -unpaintable%3:00:00:: 01716034 1 1 -unpainted%3:00:00:: 01713925 2 0 -unpainted%3:00:01:: 01714774 1 0 -unpaired%5:00:00:mismatched:00 01487496 1 4 -unpalatability%1:07:00:: 04996355 1 0 -unpalatability%1:07:01:: 04780396 2 0 -unpalatable%3:00:00:: 01716491 1 0 -unpalatableness%1:07:00:: 04996355 1 0 -unpalatableness%1:07:01:: 04780396 2 0 -unpalatably%4:02:00:: 00416855 1 0 -unparallel%5:00:00:uneven:00 00913306 1 0 -unparalleled%5:00:00:incomparable:00 00505853 1 1 -unpardonable%3:00:00:: 01721530 1 0 -unpardonably%4:02:00:: 00333341 1 0 -unparented%3:00:00:: 01733982 1 0 -unparliamentary%5:00:00:impolite:00 00642263 1 0 -unpartitioned%5:00:00:united:00 02478504 1 0 -unpassable%3:00:00:: 01725273 1 0 -unpasteurised%3:44:00:: 03151582 1 0 -unpasteurized%3:44:00:: 03151582 1 0 -unpatented%5:00:00:nonproprietary:00 01109782 1 0 -unpatriotic%3:00:00:: 01740630 1 1 -unpatriotically%4:02:00:: 00418541 1 0 -unpatronised%3:00:00:: 01738895 1 0 -unpatronized%3:00:00:: 01738895 1 0 -unpatterned%3:00:04:: 01785906 1 0 -unpaved%3:00:00:: 01739987 1 1 -unpeaceable%5:00:00:unpeaceful:00 01743138 1 0 -unpeaceful%3:00:00:: 01742296 1 0 -unpeopled%5:00:00:uninhabited:00 01313525 1 0 -unperceivable%3:00:04:: 01748318 1 0 -unperceived%5:00:00:unnoticed:00 01609101 1 0 -unperceiving%3:00:00:: 01746114 1 0 -unperceptive%3:00:00:: 01746114 1 0 -unperceptive%5:00:00:undiscriminating:00 00776290 2 0 -unperceptiveness%1:07:00:: 04845146 1 0 -unperformed%5:00:00:unstaged:00 02294662 1 1 -unpermed%5:00:00:straight:03 01031115 1 0 -unpermissive%3:00:00:: 01763445 1 0 -unpermissiveness%1:07:00:: 04639113 1 0 -unperplexed%3:00:00:: 01767076 1 0 -unperson%1:18:00:: 10361525 1 0 -unpersuadable%5:00:00:unsusceptible:00 02364245 1 0 -unpersuaded%5:00:00:unregenerate:00 01957942 1 0 -unpersuasive%5:00:00:unconvincing:00 00615655 1 0 -unpersuasiveness%1:07:00:: 05205220 1 0 -unperturbed%5:00:00:composed:00 00531087 1 0 -unpick%2:35:00:: 01520844 1 0 -unpick%2:35:01:: 01329987 2 0 -unpictured%5:00:00:undelineated:00 01715708 1 0 -unpicturesque%5:00:00:ugly:00 00222449 1 1 -unpierced%5:00:00:uncut:01 00662873 1 0 -unpigmented%3:01:00:: 02820991 1 0 -unpillared%5:00:00:noncolumned:00 00141746 1 0 -unpin%2:35:00:: 01368474 1 0 -unpitying%5:00:00:merciless:00 01508086 1 0 -unplaced%5:00:00:unsuccessful:00 02335602 1 0 -unplanned%3:00:00:: 01797862 1 0 -unplanned%5:00:00:unintended:00 01339492 2 0 -unplanted%3:00:00:: 01832604 1 0 -unplayable%3:00:00:: 00955405 1 0 -unplayful%3:00:00:: 02123314 1 0 -unpleasant%3:00:00:: 01801600 1 6 -unpleasant-smelling%3:00:00:: 01053144 1 0 -unpleasant_person%1:18:00:: 09631463 1 0 -unpleasant_woman%1:18:00:: 10739636 1 0 -unpleasantly%4:02:00:: 00219503 1 1 -unpleasantness%1:07:00:: 04779649 2 0 -unpleasantness%1:12:00:: 07494787 1 0 -unpleasing%5:00:00:ungracious:00 01142666 1 0 -unpleasingness%1:07:00:: 04690933 1 0 -unpledged%5:00:00:unattached:00 00158546 1 0 -unploughed%3:00:00:: 01833226 1 0 -unplowed%3:00:00:: 01833226 1 1 -unplug%2:35:00:: 01421417 1 0 -unplumbed%5:00:00:deep:01 00691141 1 1 -unpointed%3:00:00:: 01811504 1 0 -unpointedness%1:07:00:: 05071726 1 0 -unpolished%3:00:00:: 01812846 1 0 -unpolished%5:00:00:inelegant:00 00851329 2 0 -unpolitical%5:00:00:nonpolitical:00 01815219 1 0 -unpolluted%5:00:00:pure:02 01907711 1 0 -unpompous%5:00:00:unpretentious:00 01852107 1 0 -unpopular%3:00:00:: 01816956 1 4 -unpopularity%1:07:00:: 04809089 1 0 -unpopulated%5:00:00:uninhabited:00 01313525 1 0 -unportable%3:00:00:: 01526480 1 0 -unposed%3:44:00:: 03152350 1 0 -unpotted%3:00:00:: 01834230 1 0 -unpowered%3:00:00:: 01829505 1 0 -unpracticed%5:00:00:inexperienced:00 00937616 1 0 -unpractised%5:00:00:inexperienced:00 00937616 1 0 -unprecedented%3:00:00:: 00128572 1 5 -unprecedentedly%4:02:00:: 00488980 1 0 -unpredictability%1:07:00:: 04758313 3 0 -unpredictability%1:07:01:: 04866671 2 0 -unpredictability%1:07:02:: 04735075 1 1 -unpredictable%3:00:00:: 01842001 1 2 -unpredictable%5:00:00:indeterminable:00 00739789 2 0 -unpredictable%5:00:00:sporadic:00 00594146 3 0 -unpredictably%4:02:00:: 00107722 1 1 -unpredicted%5:00:00:unexpected:00 00930540 1 0 -unpredictive%5:00:00:unprophetic:00 01883813 1 0 -unprejudiced%3:00:00:: 00286214 1 0 -unpremeditated%3:00:00:: 01843092 2 0 -unpremeditated%5:00:00:unplanned:00 01798697 1 1 -unprepared%3:00:00:: 01845160 1 2 -unprepossessing%5:00:00:unattractive:00 00169826 1 0 -unpresentable%5:00:00:unattractive:00 00169826 1 0 -unpresidential%3:00:00:: 00753659 1 0 -unpressed%5:00:00:unironed:00 01360321 1 0 -unpretending%3:00:00:: 01848970 1 0 -unpretentious%3:00:00:: 01851523 1 1 -unpretentious%3:00:04:: 01848970 2 0 -unpretentious%5:00:00:tasteful:02 02393220 3 0 -unpretentiously%4:02:00:: 00431058 1 0 -unpretentiousness%1:07:00:: 04787154 1 0 -unpreventable%3:00:00:: 00344024 1 0 -unpriestly%3:00:00:: 00574308 1 0 -unprincipled%3:00:00:: 01551461 1 0 -unprincipled%5:00:00:dishonorable:00 01228282 2 0 -unprintable%3:00:00:: 01965096 1 0 -unproblematic%5:00:00:easy:01 00750296 1 1 -unprocessed%3:00:00:: 01952405 2 0 -unprocessed%3:00:02:: 01953467 1 0 -unprocessed%5:00:00:fresh:02 01071321 3 0 -unprocurable%5:00:00:unavailable:00 00186193 1 1 -unproductive%3:00:00:: 01866535 1 0 -unproductive%5:00:00:ineffective:00 00836111 2 0 -unproductively%4:02:00:: 00214084 1 0 -unproductiveness%1:07:00:: 05148539 1 0 -unprofessional%3:00:00:: 01870321 1 0 -unprofitability%1:07:00:: 05165533 1 0 -unprofitable%3:00:00:: 01871949 1 0 -unprofitableness%1:07:00:: 05165533 1 0 -unprofitably%4:02:00:: 00214084 2 0 -unprofitably%4:02:01:: 00433120 1 0 -unprogressive%5:00:00:conservative:00 00574884 1 0 -unpromised%5:00:00:unattached:00 00158546 1 0 -unpromising%5:00:00:inauspicious:00 00176991 1 1 -unprompted%5:00:00:spontaneous:00 02282651 1 0 -unpronounceable%3:00:00:: 01878358 1 0 -unpronounceable%5:00:00:uncommunicative:00 00501998 2 0 -unprophetic%3:00:00:: 01883586 1 0 -unpropitious%3:00:00:: 00177963 1 0 -unpropitiously%4:02:00:: 00217640 1 0 -unpropitiousness%1:07:00:: 05162217 1 0 -unprotected%3:00:00:: 01886407 1 1 -unprotectedness%1:07:00:: 05043091 1 0 -unprotective%3:00:00:: 01889173 1 0 -unprovable%5:00:00:unobvious:00 01620401 1 0 -unproved%3:00:00:: 01894416 1 0 -unproven%3:00:00:: 01894416 1 0 -unprovided_for%5:00:00:poor:00 02024022 1 0 -unprovided_for%5:00:00:unexpected:00 00931306 2 0 -unprovocative%3:00:00:: 01897787 1 0 -unprovoked%5:00:00:unmotivated:00 01559270 1 0 -unprovoking%3:00:04:: 01897787 1 0 -unpublishable%3:00:00:: 00471260 1 0 -unpublished%3:00:00:: 00471072 1 1 -unpunctual%3:00:00:: 01900915 1 0 -unpunished%3:00:00:: 01902171 1 1 -unpurified%5:00:00:impure:02 01909421 1 0 -unq%1:27:00:: 14653416 1 0 -unqualified%3:00:01:: 01911415 2 0 -unqualified%3:00:02:: 01913715 1 2 -unqualified%3:00:03:: 00512261 3 0 -unqualified%5:00:00:ineligible:00 00853631 4 0 -unqualifiedly%4:02:00:: 00229963 1 1 -unquenchable%5:00:00:insatiate:00 02078673 1 0 -unquestionability%1:07:00:: 04754862 1 0 -unquestionable%3:00:00:: 01918184 1 0 -unquestionable%5:00:00:genuine:00 01115635 2 0 -unquestionable%5:00:00:unequivocal:00 00897363 3 0 -unquestionableness%1:07:00:: 04754862 1 0 -unquestionably%4:02:00:: 00437576 1 3 -unquestionably%4:02:01:: 00036935 2 0 -unquestioned%5:00:00:uncontroversial:00 00603039 1 0 -unquestioning%5:00:00:absolute:00 00005599 2 0 -unquestioning%5:00:00:credulous:00 00646981 1 0 -unquestioningly%4:02:00:: 00502098 1 1 -unquiet%3:00:00:: 01923391 1 0 -unquiet%5:00:00:troubled:00 02456157 2 0 -unquietly%4:02:00:: 00229861 1 0 -unquotable%3:00:00:: 01964196 1 0 -unraised%3:00:00:: 01399949 1 0 -unranked%5:00:00:nonhierarchical:00 01204443 1 0 -unratable%5:00:00:nontaxable:00 02401445 1 0 -unratified%5:00:00:illegal:00 01404582 1 0 -unravel%2:30:01:: 00332672 3 0 -unravel%2:35:00:: 01520844 1 1 -unravel%2:35:01:: 01521367 2 0 -unraveler%1:18:00:: 10016954 1 0 -unraveller%1:18:00:: 10016954 1 0 -unreachable%5:00:00:inaccessible:00 00020410 1 0 -unreached%5:00:00:inaccessible:00 00020410 1 0 -unreactive%3:00:00:: 01929600 1 0 -unreactive%5:00:00:insensitive:01 02105898 2 0 -unread%5:00:00:uninformed:00 01309835 1 0 -unreadable%5:00:00:illegible:00 01405523 1 0 -unreadably%4:02:00:: 00362455 1 0 -unready%3:00:00:: 01932234 1 1 -unreal%3:00:00:: 01934554 1 1 -unreal%3:00:02:: 01938659 2 0 -unreal%3:00:03:: 00625774 4 0 -unreal%3:00:04:: 01571363 3 0 -unrealised%5:00:00:unsuccessful:00 02335393 1 0 -unrealism%1:09:00:: 05940869 1 1 -unrealistic%3:00:00:: 01941999 1 2 -unrealistically%4:02:00:: 00215661 1 1 -unreality%1:07:00:: 04762492 1 1 -unreality%1:26:00:: 13960117 2 0 -unrealizable%5:00:00:impossible:00 01824081 1 0 -unrealized%5:00:00:unsuccessful:00 02335393 1 0 -unreason%1:26:00:: 14397563 1 1 -unreasonable%3:00:00:: 01944660 1 0 -unreasonable%5:00:00:immoderate:00 01533974 2 0 -unreasonably%4:02:00:: 00036068 2 0 -unreasonably%4:02:01:: 00216100 1 0 -unreasoning%5:00:00:irrational:00 01926654 1 1 -unreasoningly%4:02:00:: 00511375 1 0 -unreassuring%3:00:00:: 00197447 1 0 -unreceptive%3:00:00:: 01986260 1 0 -unreciprocated%5:00:00:nonreciprocal:00 01947127 1 0 -unrecognisable%4:02:00:: 00424140 1 0 -unrecognisable%5:00:00:unidentifiable:00 01273773 1 0 -unrecognised%5:00:00:unacknowledged:00 00029216 2 0 -unrecognised%5:00:00:unestablished:00 01636887 1 0 -unrecognizable%5:00:00:unidentifiable:00 01273773 1 1 -unrecognizably%4:02:00:: 00424140 1 0 -unrecognized%5:00:00:unacknowledged:00 00029216 1 1 -unrecognized%5:00:00:unestablished:00 01636887 2 0 -unreconcilable%3:00:00:: 01986926 1 0 -unreconciled%5:00:00:inconsistent:00 00578960 1 0 -unreconstructed%3:00:00:: 00288809 1 5 -unrecorded%3:00:04:: 01422556 1 0 -unrecoverable%3:00:00:: 01956523 1 0 -unredeemable%5:00:00:wicked:00 02514819 1 0 -unredeemed%5:00:00:lost:02 01451225 1 1 -unreduced%5:00:00:unaltered:00 00353889 1 0 -unreel%2:35:00:: 01523520 1 0 -unrefined%3:00:01:: 01949149 2 0 -unrefined%3:00:02:: 01953467 1 0 -unreflected%3:00:00:: 02009012 1 0 -unreflective%5:00:00:thoughtless:00 02421003 1 1 -unreformable%5:00:00:incorrigible:00 00635607 2 0 -unreformable%5:00:00:wicked:00 02514819 1 0 -unreformed%5:00:00:orthodox:00 01690987 1 0 -unrefreshed%5:00:00:tired:00 02434380 1 0 -unregenerate%3:00:00:: 01957454 2 0 -unregenerate%3:00:01:: 02326695 1 0 -unregenerate%5:00:00:incorrigible:00 00635607 3 0 -unregenerated%3:00:00:: 01957454 1 0 -unregistered%3:00:00:: 01958659 2 0 -unregistered%3:00:02:: 01959111 1 0 -unregistered%5:00:00:undocumented:00 00787002 3 0 -unregretful%3:00:00:: 01150771 1 0 -unregretting%3:00:00:: 01150771 1 1 -unregularity%1:07:00:: 04770211 1 0 -unregulated%3:00:00:: 01962492 1 0 -unregulated%5:00:00:unstructured:00 01672487 2 0 -unrehearsed%5:00:00:unprepared:00 01845451 1 0 -unrelated%3:00:01:: 01972596 2 0 -unrelated%3:00:02:: 01974740 1 2 -unrelatedness%1:24:00:: 13796403 1 0 -unrelaxed%5:00:00:tense:03 02407193 1 0 -unreleased%5:00:00:suppressed:00 00470719 1 1 -unrelenting%5:00:00:continual:00 00593071 3 0 -unrelenting%5:00:00:implacable:00 01785341 1 0 -unrelenting%5:00:00:intense:00 01510798 2 0 -unrelentingly%4:02:00:: 00217857 1 0 -unreliability%1:07:00:: 04671394 1 0 -unreliable%3:00:00:: 00724861 2 0 -unreliable%5:00:00:dangerous:00 02061126 3 0 -unreliable%5:00:00:fallible:00 00964590 1 2 -unreliable%5:00:00:irresponsible:00 01999180 4 0 -unreliableness%1:07:00:: 04671394 1 0 -unreliably%4:02:00:: 00223635 1 0 -unrelieved%5:00:00:unmitigated:00 01521017 1 0 -unremarkable%5:00:00:ordinary:00 01674242 1 1 -unremarkably%4:02:00:: 00106921 1 0 -unremarked%5:00:00:unnoticed:00 01609101 1 0 -unremedied%5:00:00:uncorrected:00 00634759 1 0 -unremitting%5:00:00:continuous:01 00595299 1 0 -unremorseful%3:00:00:: 01743909 1 0 -unremunerative%5:00:00:unprofitable:00 01872619 1 0 -unrenewable%3:00:00:: 01963117 1 0 -unrenewed%3:00:00:: 02014308 1 0 -unrentable%3:00:00:: 01963378 1 0 -unrepaired%5:00:00:unserviceable:00 02125294 1 0 -unrepeatable%3:00:00:: 01964196 1 0 -unrepeatable%5:00:00:unreproducible:00 01868578 2 0 -unrepentant%3:00:00:: 01743909 1 0 -unrepentant%5:00:00:unregenerate:00 01957712 2 0 -unrepentantly%4:02:00:: 00364916 1 0 -unreplaceable%3:00:00:: 01978894 1 0 -unreportable%3:00:00:: 00472177 1 0 -unreported%3:00:00:: 00471966 1 0 -unrepresentative%5:00:00:atypical:00 02470316 1 0 -unrepressed%5:00:00:uninhibited:00 01317462 1 0 -unreproducible%3:00:00:: 01868302 1 0 -unreproducibly%4:02:00:: 00375356 1 0 -unrequested%3:00:00:: 01965388 1 0 -unrequited%5:00:00:nonreciprocal:00 01947127 1 1 -unresentful%3:00:00:: 00117106 1 0 -unreserved%3:00:01:: 01988166 2 0 -unreserved%3:00:02:: 01988724 1 0 -unreservedly%4:02:00:: 00489086 1 1 -unresistant%5:00:00:susceptible:00 02362178 1 0 -unresisting%5:00:00:passive:01 00040058 1 0 -unresolvable%5:00:00:inextricable:00 00945399 2 0 -unresolvable%5:00:00:insoluble:02 02266771 1 0 -unresolved%3:00:04:: 02267164 1 0 -unresolved%5:00:00:inharmonious:00 01164561 3 0 -unresolved%5:00:00:unsettled:02 02130821 2 0 -unrespectability%1:07:00:: 04874409 1 0 -unrespectable%3:00:00:: 01993843 1 0 -unresponsive%3:00:00:: 01999766 1 1 -unresponsive%5:00:00:cool:02 02531775 2 0 -unresponsive%5:00:00:unsusceptible:00 02364347 3 0 -unresponsiveness%1:07:00:: 05213201 1 0 -unrest%1:12:00:: 07513711 2 0 -unrest%1:26:00:: 13979503 1 1 -unrested%5:00:00:tired:00 02434380 1 0 -unrestrained%3:00:00:: 02000680 1 0 -unrestrained%5:00:00:wild:02 02390724 2 0 -unrestrainedly%4:02:00:: 00489195 1 0 -unrestraint%1:07:00:: 04885091 1 0 -unrestricted%3:00:00:: 02002814 1 1 -unrestricted%5:00:00:free:00 01064167 2 1 -unrestricted%5:00:00:public:00 01862296 3 0 -unrestricted%5:00:00:unclassified:02 00416651 5 0 -unrestricted%5:00:00:unmodified:00 01541258 4 0 -unrestrictive%3:00:00:: 02005245 1 0 -unretentive%3:00:00:: 02006031 1 0 -unretrievable%5:00:00:unrecoverable:00 01956675 1 0 -unrevealed%5:00:00:covert:00 01708164 1 0 -unreverberant%3:00:00:: 02011142 1 0 -unrevised%5:00:00:unaltered:00 00353969 1 0 -unrevived%3:00:00:: 02014308 1 0 -unrewarded%5:00:00:unsuccessful:00 02334561 1 0 -unrewarding%3:00:00:: 02016001 1 0 -unrhetorical%3:00:00:: 02018486 1 0 -unrhymed%3:00:00:: 01966315 1 0 -unrhythmic%3:00:00:: 02021050 1 0 -unrhythmical%3:00:00:: 02021050 1 0 -unrifled%3:00:00:: 02248204 1 0 -unrigged%3:00:00:: 01093956 1 0 -unrighteous%3:00:00:: 02037272 1 0 -unrighteously%4:02:00:: 00444070 1 0 -unrighteousness%1:07:00:: 04827652 1 0 -unrimed%3:00:00:: 01966315 1 0 -unripe%3:00:00:: 01493897 1 0 -unripe%5:00:00:unready:00 01932902 2 0 -unripened%3:00:00:: 01493897 1 0 -unrivaled%5:00:00:incomparable:00 00505410 1 0 -unrivalled%5:00:00:incomparable:00 00505410 1 0 -unroll%2:30:00:: 00435481 2 0 -unroll%2:35:00:: 01523654 1 0 -unromantic%5:00:00:unloving:00 01467184 1 0 -unromantically%4:02:00:: 00470692 1 0 -unroofed%5:00:00:bare:00 01699006 1 0 -unrouged%5:00:00:unpainted:01 01714896 1 0 -unruffled%5:00:00:calm:00 00302951 2 0 -unruffled%5:00:00:composed:00 00531087 1 0 -unruliness%1:07:00:: 04908396 1 0 -unruly%5:00:00:disorderly:00 01666489 1 1 -unruly%5:00:00:insubordinate:00 02330762 2 0 -unruly%5:00:00:unmanageable:00 01475526 3 0 -unsaddle%2:35:00:: 01492576 1 0 -unsaddled%3:00:00:: 00460536 1 0 -unsafe%3:00:00:: 02058794 2 0 -unsafe%3:00:02:: 02094755 1 0 -unsafe%5:00:00:vulnerable:00 02524443 3 0 -unsaid%5:00:00:implicit:00 00942380 1 1 -unsalable%3:00:00:: 02062358 1 0 -unsalaried%5:00:00:unpaid:00 01710946 1 0 -unsaleable%3:00:00:: 02062358 1 0 -unsalted%5:00:00:tasteless:01 02400125 1 0 -unsanctification%1:07:00:: 04856014 1 0 -unsanctified%5:00:00:unholy:00 02054926 1 0 -unsanctify%2:30:00:: 00580720 1 0 -unsanctioned%5:00:00:unofficial:00 01634364 1 0 -unsanded%5:00:00:unfinished:02 01005914 1 0 -unsanitariness%1:26:00:: 14495589 1 0 -unsanitary%3:00:00:: 02113449 1 0 -unsaponified%3:44:00:: 03155306 1 0 -unsarcastic%3:00:00:: 02080488 1 0 -unsated%5:00:00:insatiate:00 02078788 1 0 -unsatiable%3:00:00:: 02078399 1 0 -unsatiably%4:02:00:: 00376573 2 0 -unsatiably%4:02:01:: 00376761 1 0 -unsatiated%5:00:00:insatiate:00 02078788 1 0 -unsatisfactorily%4:02:00:: 00015706 1 0 -unsatisfactoriness%1:07:00:: 04793355 1 0 -unsatisfactory%3:00:00:: 02082218 1 6 -unsatisfiable%5:00:00:insatiate:00 02078894 1 0 -unsatisfied%5:00:00:discontented:00 00590271 2 0 -unsatisfied%5:00:00:insatiate:00 02078788 1 0 -unsatisfying%5:00:00:unsatisfactory:00 02082611 1 0 -unsaturated%3:00:00:: 00757408 2 0 -unsaturated%3:00:01:: 00758290 1 2 -unsaturated%3:00:03:: 00393852 3 0 -unsaturated_fatty_acid%1:27:00:: 14740915 1 0 -unsaved%5:00:00:lost:02 01451225 1 0 -unsavoriness%1:07:00:: 04996571 1 0 -unsavoriness%1:07:01:: 04780605 2 0 -unsavory%3:00:00:: 01627965 1 0 -unsavory%5:00:00:unpalatable:00 01716971 2 0 -unsavoury%3:00:04:: 01627965 1 0 -unsavoury%5:00:00:unpalatable:00 01716971 2 0 -unsay%2:32:00:: 00799076 1 0 -unscalable%3:00:00:: 02083516 1 0 -unscathed%5:00:00:uninjured:00 01319712 1 1 -unscheduled%3:00:00:: 02367095 1 0 -unscholarly%3:00:00:: 02084538 1 0 -unschooled%5:00:00:uneducated:00 00831696 1 0 -unscientific%3:00:00:: 02085132 1 2 -unscientifically%4:02:00:: 00110092 1 0 -unscramble%2:30:00:: 00537494 1 1 -unscramble%2:35:00:: 01520844 2 0 -unscrew%2:35:00:: 01352528 1 2 -unscrew%2:35:01:: 01352680 2 1 -unscripted%3:00:00:: 02213377 1 0 -unscrupulous%3:00:00:: 02085898 1 2 -unscrupulously%4:02:00:: 00489281 1 0 -unscrupulousness%1:07:00:: 04874086 1 0 -unseal%2:35:00:: 01353873 1 0 -unsealed%3:00:01:: 02086991 2 0 -unsealed%3:00:02:: 02087450 1 0 -unseamanlike%3:00:00:: 01566634 1 0 -unseamed%5:00:00:seamless:00 02254669 1 0 -unseamed%5:00:00:smooth:00 02237978 2 0 -unseasonable%3:00:00:: 01494740 1 0 -unseasonable%5:00:00:inopportune:00 01662119 2 0 -unseasonableness%1:07:00:: 05049458 1 0 -unseasonably%4:02:00:: 00274022 1 0 -unseasoned%3:00:00:: 01495181 1 0 -unseasoned%5:00:00:inexperienced:00 00937732 3 0 -unseasoned%5:00:00:tasteless:01 02400125 2 0 -unseat%2:35:00:: 01544445 2 0 -unseat%2:41:00:: 02391650 1 0 -unseaworthy%3:00:00:: 02088086 1 0 -unsectarian%3:00:00:: 02092129 1 0 -unsecured%5:00:00:insecure:02 02095193 2 0 -unsecured%5:00:00:unfastened:00 02096382 1 0 -unsecured_bond%1:21:00:: 13339844 1 0 -unseductive%3:00:00:: 02098136 1 0 -unseeable%3:00:00:: 02517265 1 0 -unseeded%3:00:00:: 02254971 1 0 -unseeded%5:00:00:unplanted:00 01832807 2 0 -unseeing%5:00:00:blind:00 02160135 2 0 -unseeing%5:00:00:unperceptive:00 01746464 1 1 -unseemliness%1:07:00:: 04902668 1 0 -unseemly%5:00:00:improper:00 01880918 1 0 -unseen%1:09:00:: 05952199 1 0 -unseen%5:00:00:undetected:00 01610261 1 2 -unseeyn%5:00:00:invisible:00 02518926 1 0 -unsegmented%5:00:00:united:00 02478589 1 0 -unsegregated%5:00:00:integrated:00 01326516 1 0 -unselected%3:00:00:: 02123743 1 0 -unselective%5:00:00:undiscriminating:00 00776406 1 0 -unselfconscious%5:00:00:unaffected:01 00074867 1 1 -unselfconsciously%4:02:00:: 00448593 1 0 -unselfconsciousness%1:09:00:: 05677097 1 1 -unselfish%3:00:00:: 02099019 1 1 -unselfish%5:00:00:generous:01 01112471 2 0 -unselfishly%4:02:00:: 00327249 1 0 -unselfishness%1:04:00:: 01085937 2 0 -unselfishness%1:07:00:: 04832951 1 1 -unsensational%3:00:00:: 02102321 1 0 -unsent%3:00:00:: 02109552 1 0 -unsentimental%5:00:00:tough:03 02448749 1 0 -unsentimentally%4:02:00:: 00449765 1 0 -unserviceable%3:00:00:: 02124654 1 0 -unserviceable%5:00:00:useless:00 02497830 2 0 -unservile%3:00:00:: 00791131 1 1 -unsettle%2:37:00:: 01783881 1 0 -unsettled%3:00:01:: 02126889 2 0 -unsettled%3:00:02:: 02130514 1 1 -unsettled%5:00:00:uninhabited:00 01313835 4 0 -unsettled%5:00:00:variable:00 02504558 3 0 -unsex%2:29:00:: 00061595 3 0 -unsex%2:30:00:: 00537632 2 0 -unsex%2:40:00:: 02315175 1 0 -unsexed%3:00:00:: 02136802 1 0 -unsexy%3:00:00:: 02134999 1 0 -unshackled%5:00:00:unbound:01 00254296 1 0 -unshaded%3:00:01:: 00277183 2 0 -unshaded%3:00:02:: 00277867 1 0 -unshadowed%5:00:00:unshaded:01 00277339 1 0 -unshakable%5:00:00:incontestable:00 00591513 2 0 -unshakable%5:00:00:resolute:00 01990653 1 1 -unshakably%4:02:00:: 00212208 1 0 -unshaken%5:00:00:resolute:00 01991783 1 0 -unshaped%5:00:00:unformed:00 02152078 1 0 -unshapely%3:00:00:: 02140492 1 0 -unshapen%5:00:00:unformed:00 02152078 1 0 -unshared%3:00:00:: 02152848 1 0 -unsharpened%5:00:00:dull:01 00800755 1 1 -unshaved%3:00:00:: 02153817 1 1 -unshaven%3:00:00:: 02153817 1 1 -unsheared%3:00:00:: 02154635 1 0 -unsheared%5:00:00:uncut:03 00664317 2 0 -unsheathe%2:35:00:: 01581485 1 1 -unsheathed%3:00:00:: 02155524 1 0 -unshelled%3:00:00:: 02597007 1 0 -unshielded%5:00:00:unprotected:00 01886963 1 1 -unshockable%3:00:00:: 02155771 1 0 -unshod%3:00:00:: 02156579 2 0 -unshod%3:00:04:: 02157041 1 0 -unshoed%3:00:00:: 02156579 1 0 -unshorn%3:00:00:: 02154635 1 0 -unshrinkable%3:00:00:: 02158192 1 0 -unshrinking%5:00:00:unafraid:00 00082034 1 0 -unshuttered%3:00:00:: 02256732 1 0 -unsighted%3:00:04:: 02158826 1 0 -unsightliness%1:07:00:: 04690476 1 0 -unsightly%5:00:00:ugly:00 00222543 1 0 -unsigned%3:00:00:: 02161314 1 1 -unsilenced%3:00:00:: 02166277 1 0 -unsimilarity%1:07:00:: 04750164 1 0 -unsinkable%3:00:00:: 02213824 1 0 -unsized%3:00:00:: 02225071 2 0 -unsized%3:00:01:: 02225387 1 0 -unskilled%3:00:00:: 02228335 1 0 -unskilled%5:00:00:bad:00 01128103 3 0 -unskilled%5:00:00:unprofessional:00 01870636 2 0 -unskilled_person%1:18:00:: 09632274 1 0 -unskillful%5:00:00:unskilled:00 02229000 1 0 -unskillfulness%1:09:00:: 05648247 1 0 -unslaked_lime%1:27:00:: 14789885 1 0 -unsleeping%5:00:00:awake:00 00187443 1 0 -unsloped%5:00:00:vertical:00 01234030 1 1 -unsmiling%5:00:00:joyless:00 01368726 1 2 -unsmilingly%4:02:00:: 00459193 1 1 -unsmooth%3:00:00:: 02238462 1 0 -unsmoothed%5:00:00:wrinkled:00 01360571 1 0 -unsnarl%2:35:00:: 01463520 1 0 -unsnarled%5:00:00:untangled:00 00256538 1 0 -unsnarling%1:04:00:: 01244593 1 0 -unsociability%1:07:00:: 04656748 1 0 -unsociable%3:00:00:: 02258600 1 0 -unsociableness%1:07:00:: 04656748 1 0 -unsociably%4:02:00:: 00460604 1 0 -unsocial%3:00:00:: 02249441 1 0 -unsoiled%5:00:00:clean:01 00418950 1 0 -unsold%3:00:00:: 02259667 1 1 -unsolder%2:35:00:: 01299667 1 1 -unsoldierly%5:00:00:unmilitary:00 01519167 1 0 -unsolicited%5:00:00:unrequested:00 01965512 1 0 -unsoluble%5:00:00:insoluble:02 02266771 1 0 -unsolvability%1:07:00:: 05215699 1 0 -unsolvable%5:00:00:insoluble:02 02266771 1 0 -unsolved%3:00:00:: 02267164 1 3 -unsophisticated%5:00:00:naive:00 02273088 1 0 -unsophisticated%5:00:00:provincial:00 00636891 3 0 -unsophisticated%5:00:00:simple:02 02175980 2 0 -unsorted%5:00:00:unclassified:01 00415116 2 0 -unsorted%5:00:00:unsized:00 02225202 1 0 -unsought%5:00:00:unwanted:00 02529047 1 0 -unsound%3:00:00:: 02274253 2 0 -unsound%3:00:01:: 02275629 1 0 -unsound%5:00:00:insane:00 02076817 4 0 -unsound%5:00:00:invalid:00 02500179 3 0 -unsound%5:00:00:unhealthy:00 01174222 5 0 -unsound%5:00:00:unreliable:00 00725704 6 0 -unsoundable%5:00:00:unfathomable:00 00995027 1 0 -unsounded%5:00:00:deep:01 00691141 1 0 -unsounded%5:00:00:inaudible:00 00175123 2 0 -unsoundness%1:07:00:: 05160173 3 0 -unsoundness%1:09:00:: 05940688 2 0 -unsoundness%1:26:00:: 14560360 1 0 -unsoured%3:00:00:: 02369989 1 0 -unsown%5:00:00:unplanted:00 01832807 1 0 -unspaced%3:00:00:: 01656416 1 0 -unsparing%5:00:00:generous:01 01111965 1 0 -unsparing%5:00:00:inclement:01 00438063 2 0 -unsparingly%4:02:00:: 00446437 1 0 -unspeakable%5:00:00:bad:00 01126291 2 3 -unspeakable%5:00:00:inexpressible:00 00944111 1 6 -unspeakable%5:00:00:sacred:00 02055617 3 0 -unspeakably%4:02:00:: 00371853 1 0 -unspecialised%3:00:00:: 02278337 1 0 -unspecialized%3:00:00:: 02278337 1 0 -unspecific%5:00:00:general:00 01101891 1 0 -unspecified%3:00:00:: 01100082 1 0 -unspectacular%5:00:00:undramatic:00 00795671 1 0 -unspell%2:32:00:: 01064696 1 0 -unspent%5:00:00:unexhausted:00 00926871 1 0 -unspoiled%5:00:00:fresh:01 01068306 1 0 -unspoiled%5:00:00:incorrupt:00 00623261 2 0 -unspoilt%5:00:00:fresh:01 01068306 1 0 -unspoken%5:00:00:implicit:00 00942380 2 0 -unspoken%5:00:00:inarticulate:00 00152285 1 1 -unspoken_accusation%1:10:00:: 07238308 1 0 -unsporting%5:00:00:unfair:00 00957743 1 0 -unsportingly%4:02:00:: 00464255 1 0 -unsportsmanlike%5:00:00:unfair:00 00957743 1 0 -unspotted%5:00:00:clean:01 00418950 1 0 -unstable%3:00:00:: 02291843 1 5 -unstable%5:00:00:changeable:00 00345494 6 0 -unstable%5:00:00:insane:00 02076817 4 0 -unstable%5:00:00:irresolute:00 01992712 5 0 -unstable%5:00:00:reactive:00 01929456 2 1 -unstable%5:00:00:uneasy:00 00823192 3 1 -unstableness%1:07:00:: 04775747 1 0 -unstaged%3:00:00:: 02294563 1 0 -unstained%3:00:00:: 00402159 1 2 -unstained%5:00:00:clean:01 00418950 3 0 -unstained%5:00:00:unblemished:00 00247247 4 0 -unstained%5:00:00:unpainted:00 01714406 2 1 -unstaple%2:35:00:: 01367456 1 0 -unstarred%5:00:00:unmarked:00 01481282 1 0 -unstated%5:00:00:implicit:00 00942380 1 0 -unstatesmanlike%3:00:00:: 00753378 1 0 -unsteadily%4:02:00:: 00174232 1 3 -unsteadiness%1:07:00:: 04775562 1 0 -unsteadiness%1:07:01:: 04773182 2 0 -unsteady%3:00:00:: 02303077 1 0 -unsteady%5:00:00:unfixed:00 01061310 2 0 -unsterilised%5:00:00:germy:00 02117144 1 0 -unsterilized%5:00:00:germy:00 02117144 1 0 -unstilted%5:00:00:unaffected:01 00075019 1 1 -unstimulating%3:00:00:: 02307367 1 0 -unstinted%5:00:00:generous:01 01111965 1 0 -unstinting%5:00:00:generous:01 01111965 1 0 -unstintingly%4:02:00:: 00489425 1 0 -unstirred%5:00:00:unagitated:02 00088899 1 0 -unstoppable%3:00:00:: 02288118 1 0 -unstoppered%5:00:00:open:02 01653231 1 0 -unstrain%2:29:00:: 00025654 1 0 -unstrained%5:00:00:effortless:00 00838659 2 0 -unstrained%5:00:00:relaxed:00 02408140 1 0 -unstrap%2:35:00:: 01289871 1 0 -unstratified%3:00:00:: 00208946 1 0 -unstratified_language%1:10:00:: 06901591 1 0 -unstressed%3:00:00:: 02320117 1 4 -unstring%2:35:00:: 01359303 1 0 -unstructured%3:00:00:: 01671881 1 12 -unstructured%5:00:00:inorganic:02 01680283 2 0 -unstrung%5:00:00:discomposed:00 00532753 1 1 -unstuck%3:00:00:: 00161276 1 0 -unstuck%5:00:00:disorganized:00 01670037 2 0 -unstudied%3:00:00:: 01799035 1 0 -unstudied%5:00:00:uneducated:00 00831903 2 0 -unstudious%5:00:00:unscholarly:00 02084735 1 0 -unstuff%2:35:00:: 01479682 1 0 -unstylish%3:00:00:: 00976123 1 0 -unstylish%3:00:02:: 00973844 2 0 -unsuasible%5:00:00:unsusceptible:00 02364245 1 0 -unsubdivided%3:00:00:: 02166346 1 0 -unsubduable%5:00:00:unconquerable:00 00570099 1 0 -unsubdued%5:00:00:wild:02 02391342 1 0 -unsubmissive%3:00:04:: 00791131 1 0 -unsubstantial%3:00:00:: 00625774 1 0 -unsubstantialise%2:30:00:: 00547802 1 0 -unsubstantialize%2:30:00:: 00547802 1 0 -unsubstantiated%5:00:00:unsupported:02 02353599 1 0 -unsubtle%5:00:00:clear:00 00428878 1 0 -unsuccessful%3:00:00:: 02333453 1 2 -unsuccessful%5:00:00:unfruitful:00 01082714 2 2 -unsuccessful_person%1:18:00:: 10273064 1 0 -unsuccessfully%4:02:00:: 00168075 1 0 -unsufferable%5:00:00:intolerable:00 02436025 1 0 -unsugared%5:00:00:sugarless:00 02338468 1 0 -unsuitability%1:07:00:: 04721058 1 0 -unsuitable%5:00:00:bad:00 01129823 3 0 -unsuitable%5:00:00:ineligible:00 00853473 4 0 -unsuitable%5:00:00:unfit:02 01021607 1 1 -unsuitable%5:00:02:irrelevant:00 01976851 2 0 -unsuitableness%1:07:00:: 04721058 1 0 -unsuitably%4:02:00:: 00139759 1 1 -unsuited%5:00:00:mismatched:00 01487352 1 1 -unsullied%5:00:00:clean:01 00419058 1 0 -unsullied%5:00:00:unblemished:00 00247247 2 0 -unsung%5:00:00:inglorious:00 01122595 1 1 -unsung%5:00:00:unacknowledged:00 00028867 2 0 -unsupervised%3:00:00:: 02350353 1 0 -unsupportable%5:00:00:intolerable:00 02436245 1 0 -unsupported%3:00:00:: 02352301 2 0 -unsupported%3:00:02:: 02353026 1 0 -unsupportive%3:00:00:: 02356430 1 0 -unsuppressed%5:00:00:uninhibited:00 01317560 1 0 -unsure%3:00:00:: 00337404 2 0 -unsure%3:00:07:: 00339941 1 0 -unsurmountable%3:00:00:: 02357115 1 0 -unsurmountable%5:00:00:impassable:00 01725422 2 0 -unsurpassable%5:00:00:best:00 00229487 1 0 -unsurpassed%5:00:00:best:00 00229371 1 0 -unsurprised%3:00:00:: 02359308 1 0 -unsurprising%3:00:00:: 02360351 1 0 -unsusceptibility%1:26:00:: 14526764 1 0 -unsusceptible%3:00:00:: 02363358 1 0 -unsuspected%3:00:00:: 02370329 1 0 -unsuspecting%5:00:00:trustful:00 02463029 1 0 -unsuspecting%5:00:00:unaware:00 00192523 2 0 -unsuspectingly%4:02:00:: 00464360 1 0 -unsuspicious%5:00:00:trustful:00 02463029 1 0 -unswayed%5:00:00:unaffected:00 00072790 1 0 -unsweet%5:00:00:disagreeable:00 00090628 2 0 -unsweet%5:00:00:dry:03 02368247 1 0 -unsweetened%5:00:00:sugarless:00 02338543 1 0 -unswept%3:00:00:: 02371215 1 0 -unswept%5:00:00:dirty:01 00423781 2 0 -unswerving%5:00:00:constant:00 00583581 2 0 -unswerving%5:00:00:direct:00 00761844 1 0 -unswervingly%4:02:00:: 00489507 2 0 -unswervingly%4:02:01:: 00489670 1 0 -unsworn%3:00:00:: 02371583 1 0 -unsyllabic%3:00:00:: 02289738 1 0 -unsyllabled%5:00:00:nonsyllabic:00 02290179 1 0 -unsymbolic%3:00:00:: 01982538 1 0 -unsymmetric%5:00:00:asymmetrical:00 02374259 1 0 -unsymmetrical%5:00:00:asymmetrical:00 02374259 1 0 -unsymmetrical%5:00:00:unequal:00 00892635 2 0 -unsymmetrically%4:02:00:: 00175778 1 0 -unsympathetic%3:00:00:: 02375828 1 2 -unsympathetic%3:00:02:: 02376562 2 0 -unsympathetic%5:00:00:uncongenial:00 00561359 5 0 -unsympathetic%5:00:00:unkind:00 01374461 4 0 -unsympathetic%5:00:00:unreceptive:00 01986349 3 0 -unsympathetically%4:02:00:: 00192330 1 0 -unsympathising%5:00:00:unsympathetic:00 02376118 1 0 -unsympathizing%5:00:00:unsympathetic:00 02376118 1 0 -unsynchronised%5:00:00:asynchronous:00 02380225 1 0 -unsynchronized%5:00:00:asynchronous:00 02380225 1 0 -unsynchronous%5:00:00:asynchronous:00 02380225 1 0 -unsystematic%3:00:00:: 02383151 1 0 -unsystematically%4:02:00:: 00120678 1 0 -untactful%3:00:00:: 02384843 1 0 -untagged%3:00:00:: 01379844 1 0 -untainted%5:00:00:unblemished:00 00247247 1 0 -untalented%3:00:00:: 01119305 1 0 -untalkative%5:00:00:taciturn:00 02383709 1 0 -untamed%3:00:04:: 02389220 1 0 -untangle%2:35:00:: 01520844 2 0 -untangle%2:35:01:: 01585759 1 0 -untangled%3:00:00:: 00256453 1 0 -untangling%1:04:00:: 01244593 1 0 -untanned%3:00:00:: 01659447 1 0 -untaped%5:00:00:live:02 01422863 1 0 -untapped%3:00:00:: 01659874 1 0 -untapped%5:00:00:unexploited:00 00943203 2 0 -untarnished%5:00:00:unblemished:00 00247247 1 0 -untasted%5:00:00:full:00 01086339 1 0 -untaught%5:00:00:uneducated:00 00831696 1 0 -untaxed%5:00:00:nontaxable:00 02401288 1 0 -unteach%2:32:00:: 00830348 1 1 -unteach%2:32:01:: 00830498 2 0 -untechnical%3:00:00:: 01109096 1 0 -untellable%5:00:00:inexpressible:00 00944111 1 1 -untempered%3:00:01:: 01521293 2 0 -untempered%3:00:02:: 01522038 1 0 -untempting%5:00:00:uninviting:00 01359159 2 0 -untempting%5:00:00:unseductive:00 02098243 1 0 -untenable%5:00:00:unreasonable:00 01945010 1 1 -untenanted%5:00:00:uninhabited:00 01313346 1 0 -untended%5:00:00:uncared-for:00 00308870 1 0 -untermeyer%1:18:00:: 11356283 1 0 -untested%5:00:00:inexperienced:00 00937732 1 1 -untested%5:00:00:new:00 01643094 2 0 -untethered%5:00:00:unbound:01 00254419 1 0 -unthankful%3:00:00:: 01147044 1 0 -unthaw%2:30:00:: 00376106 1 1 -unthawed%5:00:00:frozen:00 01079532 1 0 -untheatrical%3:00:00:: 00796928 1 0 -unthematic%3:01:00:: 02813819 1 1 -unthinkable%3:00:00:: 02418538 1 0 -unthinkably%4:02:00:: 00488287 1 0 -unthinking%4:02:00:: 00217245 1 0 -unthinking%5:00:00:inconsiderate:00 00639594 2 0 -unthinking%5:00:00:stupid:00 00441272 3 0 -unthinking%5:00:00:thoughtless:00 02421003 1 1 -unthinkingly%4:02:00:: 00217245 1 0 -unthought%5:00:00:unexpected:00 00931070 1 0 -unthought-of%5:00:00:unexpected:00 00931070 1 0 -unthoughtful%5:00:00:thoughtless:00 02421003 1 0 -unthoughtfulness%1:07:00:: 04661706 1 0 -unthreatening%5:00:00:amicable:00 01247025 1 0 -untidily%4:02:00:: 00400998 1 0 -untidiness%1:07:00:: 04897428 2 0 -untidiness%1:26:00:: 14499594 1 0 -untidy%3:00:00:: 02424254 1 0 -untie%2:35:00:: 01284461 1 3 -untie%2:35:01:: 01284908 2 0 -untied%3:00:00:: 00254983 1 0 -untied%3:00:02:: 00254615 2 0 -untied%5:00:00:unbound:01 00254296 3 0 -untier%1:18:00:: 10737431 1 0 -until_now%4:02:00:: 00027918 1 0 -untilled%5:00:00:unplowed:00 01833541 1 0 -untimbered%3:00:00:: 02430002 1 0 -untimbered%5:00:00:unwooded:00 02575238 2 0 -untimeliness%1:07:00:: 04723107 2 0 -untimeliness%1:07:01:: 05049458 1 0 -untimely%4:02:00:: 00429964 1 0 -untimely%5:00:00:early:00 00815000 2 0 -untimely%5:00:00:inopportune:00 01662119 1 0 -untipped%3:00:00:: 02431619 1 0 -untired%5:00:00:rested:00 02434929 1 0 -untiring%5:00:00:diligent:00 00754682 1 0 -untitled%5:00:00:lowborn:00 01593480 1 0 -untoasted%5:00:00:raw:00 00619873 1 0 -untold%5:00:00:much:00 01554412 1 1 -untoothed%5:00:00:smooth:02 02245318 1 0 -untouchable%1:18:00:: 10739881 1 0 -untouchable%5:00:00:impermissible:00 01761742 3 0 -untouchable%5:00:00:inviolable:00 02510786 2 0 -untouchable%5:00:00:invulnerable:00 02526725 1 0 -untouchable%5:00:00:unavailable:00 00186193 5 0 -untouchable%5:00:00:unclean:00 00428243 4 0 -untouched%3:00:00:: 02445554 3 0 -untouched%3:00:01:: 01560320 4 0 -untouched%5:00:00:full:00 01086339 1 1 -untouched%5:00:00:unaffected:00 00072790 2 1 -untoughened%3:00:02:: 02448166 1 0 -untoward%5:00:00:improper:00 01880918 1 1 -untoward%5:00:00:unfavorable:02 00997036 2 0 -untraceable%3:00:00:: 02453492 1 0 -untracked%5:00:00:inaccessible:00 00020241 1 0 -untraditional%3:00:00:: 00611938 1 1 -untrained%3:00:00:: 01912613 1 0 -untrammeled%5:00:00:unlimited:00 01416255 1 1 -untrammelled%5:00:00:unlimited:00 01416255 1 0 -untransferable%5:00:00:inalienable:00 00094324 1 0 -untranslatable%3:00:00:: 02489312 1 0 -untransmutable%5:00:00:incommutable:00 00348938 1 0 -untraveled%3:00:00:: 02454482 1 0 -untravelled%3:00:00:: 02454482 1 0 -untraversable%5:00:00:impassable:00 01725624 1 0 -untraversed%5:00:00:untraveled:00 02454619 1 0 -untreated%3:00:00:: 01954781 2 0 -untreated%3:00:02:: 01955898 1 0 -untreated%5:00:00:unstained:00 00402285 3 0 -untried%5:00:00:inexperienced:00 00937732 1 1 -untried%5:00:00:new:00 01643094 2 0 -untrimmed%3:00:00:: 02455069 1 0 -untrod%5:00:00:inaccessible:00 00020241 1 0 -untrodden%5:00:00:inaccessible:00 00020241 1 0 -untroubled%3:00:00:: 02459109 1 0 -untroubled%3:00:02:: 02093305 2 0 -untroubled%5:00:00:quiet:02 01923286 3 0 -untrue%5:00:00:false:00 02462489 1 1 -untrue%5:00:00:inconstant:00 00584403 4 0 -untrue%5:00:00:uneven:00 00912637 3 0 -untrue%5:00:00:unfaithful:00 00960481 2 0 -untruly%4:02:00:: 00489792 1 0 -untrustiness%1:07:00:: 04670531 1 0 -untrusting%5:00:00:distrustful:00 02464277 1 0 -untrustworthiness%1:07:00:: 04670531 1 0 -untrustworthy%3:00:00:: 02466111 1 0 -untrusty%3:00:00:: 02466111 1 0 -untruth%1:10:00:: 06756407 1 1 -untruthful%3:00:00:: 01225898 1 0 -untruthfully%4:02:00:: 00399974 1 0 -untruthfulness%1:07:00:: 04876053 1 0 -untucked%3:00:00:: 02467241 1 0 -untufted%5:00:00:unadorned:00 00060875 1 0 -untune%2:30:00:: 00295563 2 0 -untune%2:37:00:: 01790020 1 0 -untuneful%3:00:00:: 01502383 1 0 -unturned%3:00:00:: 02468326 1 0 -untutored%5:00:00:uneducated:00 00831696 1 0 -untwine%2:35:00:: 01518203 1 0 -untwist%2:35:00:: 01223508 1 0 -untwisted%5:00:00:straight:01 02311442 1 0 -untying%1:04:00:: 00149262 1 0 -untypical%3:00:00:: 02469928 1 0 -untypicality%1:26:00:: 14503060 1 0 -untypically%4:02:00:: 00128290 1 0 -ununbium%1:27:00:: 14659794 1 0 -ununderstandably%4:02:00:: 00202554 1 0 -ununderstood%3:00:00:: 01378878 1 0 -ununhexium%1:27:00:: 14659922 1 0 -ununpentium%1:27:00:: 14660052 1 0 -ununquadium%1:27:00:: 14660183 1 0 -ununtrium%1:27:00:: 14660314 1 0 -unusable%5:00:00:useless:00 02497830 1 0 -unuseable%5:00:00:useless:00 02497830 1 0 -unused%5:00:00:clean:01 00418198 1 1 -unused%5:00:00:inactive:03 00037188 3 0 -unused%5:00:00:new:00 01643260 2 0 -unused%5:00:00:unaccustomed:00 00025138 4 0 -unusefulness%1:07:00:: 05150588 1 0 -unusual%3:00:00:: 00490035 1 24 -unusual%3:00:02:: 00967129 2 1 -unusual%5:00:00:uncommon:00 00488857 3 1 -unusual_person%1:18:00:: 09606527 1 0 -unusually%4:02:00:: 00107230 1 3 -unusualness%1:07:00:: 04797295 1 0 -unutterable%5:00:00:inexpressible:00 00944111 2 0 -unutterable%5:00:00:sacred:00 02055617 1 0 -unutterable%5:00:00:uncommunicative:00 00501998 3 0 -unutterably%4:02:00:: 00371853 1 1 -unuttered%5:00:00:implicit:00 00942380 1 0 -unvaccinated%5:00:00:susceptible:00 02363093 1 0 -unvalued%5:00:00:unacknowledged:00 00028867 1 0 -unvaned%5:00:00:unfeathered:00 00999671 1 0 -unvanquishable%5:00:00:unconquerable:00 00570322 1 0 -unvanquished%5:00:00:undefeated:00 00695335 1 0 -unvaried%3:00:00:: 02507968 1 0 -unvariedness%1:07:00:: 04740173 1 0 -unvarnished%5:00:00:direct:02 00765666 2 0 -unvarnished%5:00:00:unpainted:00 01714406 1 0 -unvarying%3:00:00:: 02507968 2 0 -unvarying%3:00:04:: 01966488 3 0 -unvarying%5:00:00:invariable:00 02506029 1 1 -unveil%2:35:00:: 01483478 1 1 -unveil%2:35:01:: 01483655 3 0 -unveil%2:39:00:: 02143283 2 0 -unveiled%3:00:00:: 02508277 1 0 -unveiling%1:04:00:: 00238022 2 0 -unveiling%1:10:00:: 06891339 1 0 -unvendible%5:00:00:unsalable:00 02062565 1 0 -unvented%5:00:00:unventilated:00 02509984 1 0 -unventilated%3:00:00:: 02509292 1 1 -unverbalised%5:00:00:implicit:00 00942380 1 0 -unverbalized%5:00:00:implicit:00 00942380 1 0 -unverifiable%5:00:00:subjective:00 01616350 1 0 -unverified%5:00:00:unproved:00 01894670 1 0 -unversed%5:00:00:inexperienced:00 00937616 1 0 -unvigilant%3:00:00:: 00092551 1 0 -unvindictive%5:00:00:forgiving:00 01041408 1 0 -unvitrified%5:00:00:unglazed:00 01120515 1 0 -unvoiced%3:00:00:: 02286294 1 0 -unvoiced%5:00:00:implicit:00 00942380 2 0 -unvoluntary%3:00:00:: 02521353 1 0 -unvulcanised%5:00:00:unprocessed:00 01953161 1 0 -unvulcanized%5:00:00:unprocessed:00 01953161 1 0 -unwanted%3:00:00:: 02527734 1 2 -unwanted%3:00:01:: 00733905 2 0 -unwantedly%4:02:00:: 00485012 1 0 -unwarily%4:02:00:: 00226257 1 0 -unwariness%1:07:00:: 04665406 1 0 -unwarmed%5:00:00:cold:01 01254296 1 0 -unwarrantable%5:00:00:inexcusable:00 01722367 1 0 -unwarrantably%4:02:00:: 00489972 1 0 -unwarranted%5:00:00:inexcusable:00 01722367 1 1 -unwarranted%5:00:00:unreasonable:00 01945350 3 0 -unwarranted%5:00:00:unsupported:02 02353211 2 0 -unwary%3:00:00:: 00162990 1 0 -unwashed%5:00:00:dirty:01 00423874 2 0 -unwashed%5:00:00:lowborn:00 01593079 1 0 -unwatchful%3:00:00:: 00092551 1 0 -unwavering%5:00:00:resolute:00 01990653 1 1 -unwavering%5:00:00:steady:00 02302537 2 0 -unwaveringly%4:02:00:: 00050817 1 0 -unwaxed%3:00:00:: 02534417 1 0 -unweaned%3:00:00:: 02539223 1 0 -unwearable%3:00:00:: 02539576 1 0 -unwearied%5:00:00:rested:00 02434929 1 0 -unweary%5:00:00:rested:00 02434929 1 0 -unwearying%5:00:00:energetic:00 00874920 1 0 -unweathered%5:00:00:new:09 02584817 1 0 -unweave%2:35:00:: 01519321 1 0 -unwebbed%3:00:00:: 02591372 1 0 -unwed%5:00:00:unmarried:00 01482751 1 1 -unwedded%5:00:00:unmarried:00 01482751 1 0 -unwelcome%3:00:00:: 02540236 1 2 -unwelcome%5:00:00:unwanted:00 02529148 2 0 -unwelcome_guest%1:18:00:: 10121952 1 0 -unwelcome_person%1:18:00:: 09631129 1 0 -unwell%5:00:01:ill:01 02542325 1 0 -unwellness%1:26:00:: 14061805 1 0 -unwholesome%3:00:00:: 02559180 1 0 -unwholesomeness%1:07:00:: 04790449 1 0 -unwieldiness%1:07:00:: 04711665 2 0 -unwieldiness%1:07:01:: 04712130 1 0 -unwieldy%3:00:00:: 02563727 1 0 -unwieldy%5:00:00:awkward:00 01140896 3 0 -unwieldy%5:00:00:impractical:00 01837605 2 0 -unwilled%5:00:00:involuntary:01 02522082 2 0 -unwilled%5:00:00:unwilling:00 02566644 1 0 -unwilling%3:00:00:: 02566015 1 1 -unwilling%5:00:00:involuntary:01 02522164 2 0 -unwillingly%4:02:00:: 00305431 1 0 -unwillingness%1:07:00:: 04645599 1 3 -unwind%2:29:00:: 00026385 3 0 -unwind%2:29:01:: 00025654 4 0 -unwind%2:35:00:: 01523823 2 0 -unwind%2:35:06:: 01523654 1 1 -unwire%2:35:00:: 01599225 1 2 -unwise%5:00:00:foolish:00 02572657 1 2 -unwise%5:00:00:impolitic:00 01814252 2 0 -unwisely%4:02:00:: 00201733 1 1 -unwiseness%1:07:00:: 04891333 1 0 -unwished%5:00:00:unwanted:00 02529148 1 0 -unwished-for%5:00:00:unwanted:00 02529148 1 0 -unwitting%3:00:00:: 00192880 2 0 -unwitting%5:00:00:uninformed:00 01308894 3 0 -unwitting%5:00:00:unintended:00 01339492 1 1 -unwittingly%4:02:00:: 00237833 1 2 -unwomanly%3:00:00:: 01485502 1 1 -unwonted%5:00:00:uncommon:00 00488998 1 0 -unwontedly%4:02:00:: 00485264 1 0 -unwooded%3:00:00:: 02575008 1 0 -unworkable%5:00:00:impossible:00 01823574 1 0 -unworkmanlike%5:00:00:incompetent:00 00511966 1 0 -unworldly%3:00:00:: 02578235 1 0 -unworldly%5:00:00:naive:00 02273088 2 0 -unworried%5:00:00:untroubled:00 02459465 1 0 -unworthily%4:02:00:: 00490226 1 0 -unworthiness%1:07:00:: 04807776 1 0 -unworthiness%1:07:01:: 04721650 2 0 -unworthy%3:00:00:: 02588099 1 1 -unworthy%5:00:00:evil:00 01133017 3 0 -unworthy%5:00:01:unworthy:00 02588421 2 0 -unwounded%5:00:00:uninjured:00 01319807 1 0 -unwoven%3:00:00:: 02579952 1 0 -unwrap%2:32:00:: 00933821 2 0 -unwrap%2:35:00:: 01284271 1 0 -unwrapped%3:00:00:: 02087723 1 0 -unwrinkled%3:00:00:: 01360692 1 1 -unwritten%3:00:00:: 02286927 1 1 -unwritten%5:00:00:spoken:00 02284169 2 0 -unwritten%5:00:00:unscripted:00 02213557 3 0 -unwritten_law%1:04:00:: 00416914 1 0 -unyielding%5:00:00:hard:01 01152620 2 0 -unyielding%5:00:00:stubborn:00 02327569 1 0 -unyieldingness%1:07:00:: 04863793 1 0 -unyoke%2:35:00:: 01491360 1 0 -unzip%2:35:00:: 01342224 1 0 -up%2:30:00:: 00154966 1 2 -up%3:00:00:: 02490170 1 8 -up%4:02:00:: 00096333 1 79 -up%4:02:01:: 00096636 5 0 -up%4:02:02:: 00096760 4 0 -up%4:02:03:: 00096921 3 0 -up%4:02:05:: 00097011 2 0 -up%5:00:00:ascending:00 02485488 4 1 -up%5:00:00:awake:00 00186925 2 5 -up%5:00:00:finished:01 01004245 8 0 -up%5:00:00:functioning:00 01091995 7 0 -up%5:00:00:prepared:00 01845002 5 0 -up%5:00:00:raised:00 01208146 6 0 -up%5:00:00:rising:00 02487108 3 1 -up-and-coming%5:00:00:enterprising:00 00885099 1 0 -up-bow%1:04:00:: 00548068 1 0 -up-country%4:02:00:: 00490304 1 0 -up-tick%1:07:00:: 05111141 1 0 -up-to-date%5:00:00:current:00 00668208 1 3 -up-to-date%5:00:00:fashionable:00 00972642 2 0 -up-to-dateness%1:07:00:: 05050379 1 0 -up-to-the-minute%5:00:00:current:00 00668366 1 0 -up_and_down%4:02:01:: 00076512 1 6 -up_and_down%4:02:03:: 00224602 2 3 -up_here%4:02:00:: 00260998 1 4 -up_in_the_air%5:00:00:uncertain:01 00336724 1 1 -up_in_the_air%5:00:00:uncertain:03 00342139 2 0 -up_on%5:00:00:informed:00 01306645 1 0 -up_quark%1:17:00:: 09467043 1 0 -up_the_stairs%4:02:00:: 00094545 1 6 -up_to%5:00:00:adequate:00 00051373 2 2 -up_to%5:00:00:busy:00 00294056 1 3 -up_to_her_neck%5:00:00:involved:00 01516605 1 0 -up_to_his_neck%5:00:00:involved:00 01516605 1 0 -up_to_my_neck%5:00:00:involved:00 01516605 1 0 -up_to_now%4:02:00:: 00027918 1 2 -up_to_now%4:02:01:: 00172151 2 0 -up_to_our_necks%5:00:00:involved:00 01516605 1 0 -up_to_their_necks%5:00:00:involved:00 01516605 1 0 -up_to_your_neck%5:00:00:involved:00 01516605 1 0 -upanishad%1:10:00:: 06466253 1 0 -upbeat%1:10:00:: 07087102 2 0 -upbeat%1:26:00:: 14447525 1 0 -upbeat%5:00:00:optimistic:00 01664015 1 1 -upbound%5:00:00:up:00 02491578 1 0 -upbraid%2:32:00:: 00825975 1 0 -upbraider%1:18:00:: 10740017 1 0 -upbraiding%1:10:00:: 06713187 1 0 -upbringing%1:04:00:: 01129532 2 0 -upbringing%1:07:00:: 04921754 1 0 -upcast%1:06:00:: 04513556 1 0 -upchuck%2:29:00:: 00076400 1 0 -upcoming%5:00:00:future:00 01732601 1 1 -upcountry%5:00:00:inland:00 00463917 1 0 -upcurved%5:00:00:curved:00 02317258 1 0 -update%1:10:00:: 06643303 1 0 -update%2:30:00:: 00170695 1 2 -update%2:30:01:: 00170857 3 0 -update%2:32:00:: 00833546 2 1 -updating%1:04:00:: 00404170 1 0 -updike%1:18:00:: 11356392 1 0 -updraft%1:19:00:: 11522649 1 0 -upend%2:35:00:: 01517515 2 0 -upend%2:38:00:: 01909679 1 0 -upended%5:00:00:vertical:00 01233960 1 0 -upending%1:04:00:: 00335814 1 0 -upfield%5:00:00:up:00 02491708 1 0 -upfront%5:00:00:direct:02 00766348 1 0 -upgrade%1:04:00:: 01267588 6 0 -upgrade%1:06:00:: 04513686 5 0 -upgrade%1:07:00:: 05068918 4 0 -upgrade%1:09:00:: 05795654 3 0 -upgrade%1:10:00:: 06903255 2 0 -upgrade%1:17:00:: 09206985 1 0 -upgrade%2:30:00:: 00207184 2 1 -upgrade%2:30:04:: 00583991 5 0 -upgrade%2:30:05:: 00584220 4 0 -upgrade%2:31:00:: 00660851 1 2 -upgrade%2:41:00:: 02397637 3 0 -upheaval%1:04:00:: 00554300 4 0 -upheaval%1:11:00:: 07375781 3 0 -upheaval%1:26:00:: 13979173 1 2 -upheaval%1:26:01:: 13977732 2 0 -upheave%2:35:00:: 01456088 1 0 -uphill%1:17:00:: 09466678 1 0 -uphill%4:02:00:: 00490410 2 0 -uphill%4:02:01:: 00490498 1 0 -uphill%5:00:00:ascending:00 02484530 1 0 -uphold%2:32:00:: 00896017 2 5 -uphold%2:32:02:: 00896497 3 4 -uphold%2:42:00:: 02679899 1 7 -upholder%1:18:00:: 10740219 1 0 -upholster%2:40:00:: 02341816 1 1 -upholsterer%1:18:00:: 10740482 1 0 -upholstery%1:04:00:: 01120348 2 0 -upholstery%1:06:00:: 04513827 1 0 -upholstery_material%1:06:00:: 04513998 1 0 -upholstery_needle%1:06:00:: 04514095 1 0 -upjohn%1:18:00:: 11356512 1 0 -upkeep%1:04:00:: 00267522 1 2 -upkeep%1:04:01:: 01216191 2 0 -upland%1:17:00:: 09302616 1 0 -upland%3:00:00:: 01219111 1 1 -upland_cotton%1:20:00:: 12176953 1 0 -upland_plover%1:05:00:: 02029706 1 0 -upland_sandpiper%1:05:00:: 02029706 1 0 -upland_white_aster%1:20:00:: 11935027 1 0 -uplift%1:06:00:: 04514241 2 0 -uplift%1:11:00:: 07375781 1 0 -uplift%2:37:00:: 01811736 1 1 -uplift%2:38:00:: 01873666 3 0 -uplift%2:38:02:: 01969601 2 0 -uplifted%5:00:00:elated:00 00705776 1 1 -uplifting%1:11:00:: 07376008 1 2 -uplink%1:10:00:: 07280295 1 0 -upload%2:40:00:: 02233898 1 0 -upmarket%3:00:00:: 02488118 1 0 -upmost%5:00:00:top:00 02440461 1 0 -upon_one's_guard%5:00:00:wary:00 00162661 1 1 -upper%1:06:00:: 04514359 2 0 -upper%1:06:01:: 02704153 3 0 -upper%1:06:02:: 04514648 1 0 -upper%5:00:00:high:01 01206318 2 14 -upper%5:00:00:superior:01 02340096 3 0 -upper%5:00:00:top:00 02440617 1 18 -upper-case_letter%1:10:00:: 06824227 1 0 -upper-class%3:00:00:: 00261245 1 0 -upper-level%5:00:00:superior:01 02339577 1 1 -upper-lower-class%5:00:00:lower-class:00 00260323 1 1 -upper-middle-class%5:00:00:middle-class:00 00261109 1 1 -upper-normandy%1:15:00:: 08942508 1 0 -upper_avon%1:17:00:: 09211944 1 0 -upper_avon_river%1:17:00:: 09211944 1 0 -upper_balcony%1:06:00:: 04164199 1 0 -upper_berth%1:06:00:: 04514648 1 0 -upper_bound%1:25:00:: 13903855 1 0 -upper_cannon%1:06:00:: 04077594 1 0 -upper_carboniferous%1:28:00:: 15127507 1 0 -upper_carboniferous_period%1:28:00:: 15127507 1 0 -upper_class%1:14:00:: 08386365 1 0 -upper_crust%1:14:00:: 08386365 1 0 -upper_deck%1:06:00:: 04514738 1 0 -upper_egypt%1:15:00:: 08898002 1 0 -upper_hand%1:07:00:: 05159123 1 1 -upper_jaw%1:08:00:: 05284132 1 0 -upper_jawbone%1:08:00:: 05284132 1 0 -upper_limit%1:15:00:: 08592898 2 1 -upper_limit%1:23:00:: 13776137 1 2 -upper_mantle%1:17:00:: 09466757 1 0 -upper_paleolithic%1:28:00:: 15233047 1 0 -upper_peninsula%1:17:00:: 09466863 1 0 -upper_respiratory_infection%1:26:00:: 14180213 1 0 -upper_respiratory_tract%1:08:00:: 05510506 1 0 -upper_side%1:15:00:: 08663354 1 0 -upper_surface%1:06:00:: 04514899 1 0 -upper_tunguska%1:17:00:: 09197432 1 0 -upper_volta%1:15:00:: 08896440 1 0 -uppercase%1:10:00:: 06824227 1 0 -uppercase%3:00:00:: 01467700 1 0 -uppercut%1:04:00:: 01175195 1 1 -uppermost%4:02:00:: 00490579 2 0 -uppermost%4:02:01:: 00490678 1 0 -uppermost%5:00:00:top:00 02440461 1 1 -uppish%5:00:00:proud:00 01890382 1 0 -uppishly%4:02:00:: 00460134 1 0 -uppishness%1:07:00:: 04839009 1 0 -uppity%5:00:00:immodest:02 01540102 1 0 -uppityness%1:07:00:: 04839009 1 0 -uppp%1:04:00:: 00689729 1 0 -uppsala%1:15:00:: 08766846 1 0 -upraise%2:29:00:: 00098517 1 1 -upraised%5:00:00:raised:00 01208221 1 2 -upright%1:06:00:: 04515003 2 0 -upright%1:06:01:: 04515129 1 0 -upright%3:00:02:: 01235859 3 0 -upright%5:00:00:righteous:00 02036934 2 1 -upright%5:00:00:vertical:00 01234030 1 5 -upright_piano%1:06:00:: 04515003 1 0 -uprightly%4:02:00:: 00490798 2 0 -uprightly%4:02:01:: 00490876 1 0 -uprightness%1:07:01:: 04826623 3 0 -uprightness%1:07:02:: 05079638 2 0 -uprightness%1:07:03:: 05083054 1 0 -uprise%2:29:00:: 00018158 8 0 -uprise%2:29:05:: 00098770 7 0 -uprise%2:38:01:: 01968569 6 0 -uprise%2:38:02:: 01970348 5 0 -uprise%2:38:03:: 01983264 4 0 -uprise%2:38:04:: 01983597 3 0 -uprise%2:38:06:: 01990562 2 0 -uprise%2:42:02:: 02624263 1 0 -uprising%1:04:00:: 00962129 1 1 -upriver%4:02:00:: 00097108 1 0 -uproar%1:11:00:: 07385660 2 1 -uproar%1:26:00:: 13978709 1 4 -uproarious%5:00:00:humorous:00 01266841 2 0 -uproarious%5:00:00:noisy:00 01921466 1 0 -uproariously%4:02:00:: 00182642 1 0 -uproot%2:35:00:: 01566916 3 0 -uproot%2:36:00:: 01662118 2 0 -uproot%2:41:00:: 02538553 1 1 -uprooter%1:18:00:: 10008716 1 0 -upsala%1:15:00:: 08766846 1 0 -upscale%5:00:00:upmarket:00 02488304 1 0 -upset%1:04:00:: 00068170 6 0 -upset%1:04:01:: 00554850 2 1 -upset%1:04:02:: 00348312 5 0 -upset%1:06:00:: 04515444 4 0 -upset%1:26:00:: 14403282 1 1 -upset%1:26:03:: 14052403 3 0 -upset%2:30:00:: 00521296 1 4 -upset%2:33:00:: 01109087 6 0 -upset%2:35:00:: 01256374 5 0 -upset%2:37:00:: 01770501 3 2 -upset%2:37:01:: 01790020 2 2 -upset%2:38:00:: 01909978 4 0 -upset%5:00:00:disorganized:00 01669246 2 1 -upset%5:00:00:ill:01 02547217 4 0 -upset%5:00:00:troubled:00 02457167 1 1 -upset%5:00:00:turned:00 02467766 5 0 -upset%5:00:00:unexpected:00 00931395 3 1 -upset_price%1:21:00:: 13304665 1 0 -upset_stomach%1:26:00:: 14336317 1 0 -upsetter%1:18:00:: 10740594 1 0 -upsetting%5:00:00:displeasing:00 01809019 1 0 -upshot%1:19:00:: 11410625 1 1 -upside%1:15:00:: 08663354 1 0 -upside-down%5:00:00:turned:00 02467559 1 1 -upside-down_cake%1:13:00:: 07634141 1 0 -upside_down%4:02:00:: 00219641 1 3 -upsilon%1:10:00:: 06836165 1 0 -upstage%1:06:00:: 04515630 1 0 -upstage%2:33:00:: 01107024 3 0 -upstage%2:38:00:: 02086100 2 0 -upstage%2:41:00:: 02515727 1 0 -upstage%3:00:00:: 02493700 1 0 -upstage%4:02:00:: 00264027 1 0 -upstage%5:00:00:reserved:01 01987646 2 0 -upstager%1:18:00:: 10740732 1 0 -upstair%3:00:00:: 02493951 1 0 -upstairs%1:06:00:: 04515729 1 0 -upstairs%3:00:00:: 02493951 1 5 -upstairs%4:02:00:: 00094545 1 13 -upstairs%4:02:01:: 00094675 2 0 -upstanding%5:00:00:respectable:00 01993693 1 0 -upstart%1:04:00:: 00438338 3 0 -upstart%1:18:00:: 10740868 2 0 -upstart%1:18:01:: 10741152 1 0 -upstart%5:00:00:pretentious:00 01850862 1 0 -upstate%4:02:00:: 00173246 1 1 -upstream%3:00:00:: 02494401 1 1 -upstream%4:02:00:: 00097108 1 2 -upstroke%1:10:00:: 06799588 1 0 -upsurge%1:04:00:: 00364787 2 0 -upsurge%1:11:00:: 07440240 1 0 -uptake%1:04:00:: 00838098 1 5 -uptake%1:22:00:: 13571580 2 0 -upthrow%1:11:00:: 07375781 1 0 -upthrust%1:11:00:: 07375781 1 0 -uptick%1:04:00:: 01110973 1 0 -uptight%5:00:00:tense:03 02406370 1 0 -uptime%1:28:00:: 15117809 1 0 -upton_beall_sinclair%1:18:00:: 11302449 1 0 -upton_sinclair%1:18:00:: 11302449 1 0 -uptown%1:15:00:: 08554206 1 2 -uptown%3:00:00:: 02494594 1 0 -uptown%4:02:00:: 00187764 1 0 -upturn%1:04:00:: 00266149 1 0 -upturned%5:00:00:shapely:00 02140144 2 0 -upturned%5:00:00:turned:00 02467766 1 0 -upupa%1:05:00:: 01829739 1 0 -upupa_epops%1:05:00:: 01830042 1 0 -upupidae%1:05:00:: 01829602 1 0 -upward%4:02:00:: 00096333 1 6 -upward%4:02:01:: 00096636 2 0 -upward%5:00:00:ascending:00 02485488 2 1 -upward%5:00:00:up:00 02491836 1 2 -upwardly%4:02:00:: 00096333 1 0 -upwards%4:02:00:: 00096333 1 3 -upwards%4:02:01:: 00096636 2 0 -upwind%4:02:00:: 00094893 2 0 -upwind%4:02:01:: 00095195 1 0 -upwind%5:00:00:windward:00 01400464 1 0 -ur%1:15:00:: 08918800 1 0 -uracil%1:27:00:: 15084357 1 0 -uraemia%1:26:00:: 14210971 1 0 -uraemic%3:01:00:: 02656218 1 0 -ural-altaic%1:10:00:: 06955931 1 0 -ural_mountains%1:17:00:: 09467185 1 0 -uralic%1:10:00:: 06956129 1 0 -uralic_language%1:10:00:: 06956129 1 0 -urals%1:17:00:: 09467185 1 0 -uranalysis%1:04:00:: 00646332 1 0 -urania%1:18:00:: 09567309 1 0 -urania%1:18:01:: 09555127 2 0 -uraninite%1:27:00:: 15084545 1 0 -uranium%1:27:00:: 14660443 1 0 -uranium_235%1:27:00:: 14660700 1 0 -uranium_238%1:27:00:: 14660835 1 0 -uranium_ore%1:27:00:: 15084824 1 0 -uranologist%1:18:00:: 09818343 1 0 -uranology%1:09:00:: 06095022 1 0 -uranoplasty%1:04:00:: 00694578 1 0 -uranoscopidae%1:05:00:: 02611767 1 0 -uranus%1:17:00:: 09467417 2 0 -uranus%1:18:00:: 09568051 1 0 -uranyl%1:27:00:: 15084999 1 0 -uranyl_group%1:27:00:: 15084999 1 0 -uranyl_nitrate%1:27:00:: 15085175 1 0 -uranyl_oxalate%1:27:00:: 15085327 1 2 -uranyl_radical%1:27:00:: 15084999 1 0 -urarthritis%1:26:00:: 14188804 1 0 -urate%1:27:00:: 15085836 1 0 -uratemia%1:26:00:: 14572353 1 0 -uraturia%1:26:00:: 14572503 1 0 -urban%3:00:00:: 02052333 2 2 -urban%3:01:00:: 02821071 1 5 -urban_area%1:15:00:: 08675967 1 3 -urban_center%1:15:00:: 08524735 1 2 -urban_guerrilla%1:18:00:: 10741258 1 0 -urban_ii%1:18:00:: 11356636 1 0 -urban_legend%1:10:00:: 06682952 1 0 -urban_planning%1:04:00:: 00928542 2 0 -urban_planning%1:09:00:: 06124706 1 0 -urban_renewal%1:04:00:: 00401194 1 0 -urban_sprawl%1:15:00:: 08539717 1 0 -urban_typhus%1:26:00:: 14141238 1 0 -urban_v%1:18:00:: 11356822 1 0 -urban_vi%1:18:00:: 11357086 1 0 -urban_viii%1:18:00:: 11357332 1 0 -urbana%1:15:00:: 09084615 1 0 -urbane%5:00:00:sophisticated:00 02271177 1 0 -urbanely%4:02:00:: 00491150 1 0 -urbanisation%1:22:00:: 13571763 2 0 -urbanisation%1:26:00:: 14580334 1 0 -urbanise%2:30:00:: 00499812 2 0 -urbanise%2:30:01:: 00500055 1 0 -urbanised%5:00:00:urban:00 02052830 1 0 -urbanity%1:07:00:: 04913212 1 0 -urbanity%1:07:01:: 04816302 2 0 -urbanization%1:22:00:: 13571763 2 0 -urbanization%1:26:00:: 14580334 1 0 -urbanize%2:30:00:: 00499812 1 1 -urbanize%2:30:01:: 00500055 2 0 -urbanized%5:00:00:urban:00 02052830 1 2 -urceolate%3:01:00:: 02821243 1 0 -urceole%1:06:00:: 04515890 1 0 -urchin%1:18:00:: 10741367 1 1 -urd%1:18:00:: 09582616 1 0 -urdu%1:10:00:: 06969916 1 0 -urea%1:27:00:: 15085472 1 0 -urea-formaldehyde_resin%1:27:00:: 14895003 1 0 -urease%1:27:00:: 15084110 1 0 -uredinales%1:20:00:: 13063046 1 0 -uremia%1:26:00:: 14210971 1 0 -uremic%3:01:00:: 02656218 1 0 -ureter%1:08:00:: 05512835 1 0 -ureteritis%1:26:00:: 14357770 1 0 -ureterocele%1:26:00:: 14572637 1 0 -ureterorenal_reflux%1:26:00:: 14335761 1 0 -ureterostenosis%1:26:00:: 14572770 1 0 -urethane%1:27:00:: 15084277 1 0 -urethra%1:08:00:: 05513020 1 0 -urethral%3:01:00:: 02821373 1 0 -urethral_orifice%1:08:00:: 05512670 1 0 -urethral_sphincter%1:08:00:: 05572227 1 0 -urethritis%1:26:00:: 14567421 1 0 -urethrocele%1:26:00:: 14572854 1 0 -urex%1:06:00:: 03755140 1 0 -urey%1:18:00:: 11357514 1 0 -urga%1:15:00:: 08969123 1 0 -urge%1:12:00:: 07490451 2 2 -urge%1:16:00:: 09180431 1 2 -urge%2:32:00:: 00765649 1 36 -urge%2:32:01:: 00858781 3 1 -urge%2:32:03:: 00875141 2 11 -urge_incontinence%1:22:00:: 13571943 1 0 -urge_on%2:32:00:: 00765649 2 0 -urge_on%2:32:01:: 00858781 1 0 -urgency%1:07:00:: 05171800 2 1 -urgency%1:10:00:: 07188385 4 0 -urgency%1:26:00:: 14451020 1 2 -urgency%1:26:01:: 13944516 3 0 -urgent%5:00:00:imperative:00 00713558 1 6 -urgently%4:02:00:: 00072849 1 1 -urginea%1:20:00:: 12462401 1 0 -urginea_maritima%1:20:00:: 12462582 1 0 -urging%1:04:00:: 01214746 2 1 -urging%1:10:00:: 07252378 1 1 -urging%1:10:01:: 07188385 3 0 -uria%1:05:00:: 02047152 1 0 -uria_aalge%1:05:00:: 02047411 1 0 -uria_lomvia%1:05:00:: 02047517 1 0 -uriah%1:18:00:: 11357660 1 0 -urial%1:05:00:: 02415130 1 0 -uric%3:01:00:: 03127718 1 0 -uric_acid%1:27:00:: 15085682 1 0 -uricaciduria%1:26:00:: 14572951 1 0 -uricosuric%3:01:00:: 03127822 1 0 -urim_and_thummim%1:10:00:: 07200692 1 0 -urinal%1:06:00:: 04515991 1 0 -urinalysis%1:04:00:: 00646332 1 0 -urinary%3:01:00:: 03008207 1 1 -urinary%3:01:01:: 03008345 2 0 -urinary_apparatus%1:08:00:: 05509452 1 0 -urinary_bladder%1:08:00:: 05512337 1 0 -urinary_calculus%1:17:00:: 09325824 1 0 -urinary_hesitancy%1:26:00:: 14564519 1 0 -urinary_incontinence%1:22:00:: 13474858 1 0 -urinary_organ%1:08:00:: 05333259 1 0 -urinary_retention%1:07:00:: 04942373 1 0 -urinary_system%1:08:00:: 05509452 1 0 -urinary_tract%1:08:00:: 05511061 1 0 -urinary_tract_infection%1:26:00:: 14566129 1 0 -urinate%2:29:00:: 00072012 2 0 -urinate%2:29:01:: 00072586 1 0 -urination%1:22:00:: 13515958 1 0 -urinator%1:18:00:: 10435716 1 0 -urine%1:27:00:: 14855724 1 1 -uriniferous_tubule%1:08:00:: 05247178 1 0 -url%1:10:00:: 06358747 1 0 -urmia%1:15:00:: 08912559 2 0 -urmia%1:17:00:: 09333706 1 0 -urn%1:06:00:: 04516116 1 1 -urn%1:06:01:: 04516214 2 0 -urn-shaped%5:00:00:concave:00 00537248 1 0 -urn_fungus%1:20:00:: 13031193 1 0 -urnula_craterium%1:20:00:: 13031193 1 0 -urobilin%1:27:00:: 14756606 1 0 -urobilinogen%1:27:00:: 14756754 1 0 -urocele%1:26:00:: 14573099 1 0 -urochesia%1:22:00:: 13572226 1 0 -urochezia%1:22:00:: 13572226 1 0 -urochord%1:05:00:: 01466701 2 0 -urochord%1:05:02:: 01468238 1 0 -urochorda%1:05:00:: 01467986 1 0 -urochordata%1:05:00:: 01467986 1 0 -urochordate%1:05:00:: 01468238 1 0 -urocyon%1:05:00:: 02120387 1 0 -urocyon_cinereoargenteus%1:05:00:: 02120505 1 0 -urocystis%1:20:00:: 13068565 1 0 -urocystis_cepulae%1:20:00:: 13068735 1 0 -urocystis_tritici%1:20:00:: 13069224 1 0 -urodele%1:05:00:: 01628770 1 0 -urodella%1:05:00:: 01628450 1 0 -urodynia%1:26:00:: 14333645 1 0 -urogenital%3:01:00:: 02821475 1 0 -urogenital_apparatus%1:08:00:: 05509452 1 0 -urogenital_cleft%1:08:00:: 05522784 1 0 -urogenital_medicine%1:09:00:: 06065208 1 0 -urogenital_system%1:08:00:: 05509452 1 0 -urokinase%1:27:00:: 14984066 1 0 -urolith%1:17:00:: 09467696 1 0 -urologist%1:18:00:: 10741493 1 0 -urology%1:09:00:: 06065208 1 0 -uropathy%1:26:00:: 14573196 1 0 -urophycis%1:05:00:: 02524811 1 0 -uropsilus%1:05:00:: 01890718 1 0 -uropsilus_soricipes%1:05:00:: 01891013 1 0 -uropygi%1:05:00:: 01771246 1 0 -uropygial_gland%1:05:00:: 02468017 1 0 -uropygium%1:05:00:: 02158354 1 0 -urosaurus%1:05:00:: 01681513 1 0 -urosaurus_ornatus%1:05:00:: 01681653 1 0 -ursa_major%1:17:00:: 09292189 1 0 -ursa_minor%1:17:00:: 09340024 1 0 -ursidae%1:05:00:: 02131418 1 0 -ursine%3:01:00:: 02890613 1 0 -ursine_dasyure%1:05:00:: 01884834 1 0 -ursinia%1:20:00:: 12030092 1 0 -ursus%1:05:00:: 02131942 1 0 -ursus_americanus%1:05:00:: 02133161 1 0 -ursus_arctos%1:05:00:: 02132136 1 0 -ursus_arctos_horribilis%1:05:00:: 02132580 1 0 -ursus_arctos_middendorffi%1:05:00:: 02132788 1 0 -ursus_arctos_syriacus%1:05:00:: 02132466 1 0 -ursus_horribilis%1:05:00:: 02132580 1 0 -ursus_maritimus%1:05:00:: 02134084 1 0 -ursus_middendorffi%1:05:00:: 02132788 1 0 -ursus_thibetanus%1:05:00:: 02133704 1 0 -ursus_ursinus%1:05:00:: 02134418 1 0 -urth%1:18:00:: 09582616 1 0 -urtica%1:20:00:: 12392385 1 0 -urtica_dioica%1:20:00:: 12392549 1 0 -urtica_pipulifera%1:20:00:: 12392765 1 0 -urticaceae%1:20:00:: 12391745 1 0 -urticales%1:20:00:: 12391477 1 0 -urticaria%1:26:00:: 14322248 1 0 -urticate%2:39:00:: 02120715 2 0 -urticate%2:39:01:: 02120912 1 0 -urtication%1:09:00:: 05724357 2 0 -urtication%1:26:00:: 14322248 1 0 -urubupunga%1:17:00:: 09467765 1 0 -urubupunga_falls%1:17:00:: 09467765 1 0 -uruguay%1:15:00:: 09160295 1 0 -uruguay_potato%1:13:00:: 07711799 2 0 -uruguay_potato%1:20:01:: 12894438 1 0 -uruguay_potato_vine%1:20:00:: 12894438 1 0 -uruguay_river%1:17:00:: 09467921 1 0 -uruguayan%1:18:00:: 09746936 1 0 -uruguayan%3:01:00:: 02967333 1 0 -uruguayan_monetary_unit%1:23:00:: 13693237 1 0 -uruguayan_peso%1:23:00:: 13693349 1 0 -urus%1:05:00:: 02405101 1 0 -us%1:15:00:: 09044862 1 1 -us_air_force%1:14:00:: 08196230 1 0 -us_air_force_academy%1:14:00:: 08194927 1 0 -us_army%1:14:00:: 08394922 1 0 -us_army_criminal_investigation_laboratory%1:06:00:: 04510090 1 0 -us_attorney_general%1:18:00:: 10570429 1 0 -us_border_patrol%1:14:00:: 08136767 1 0 -us_cabinet%1:14:00:: 08382570 1 0 -us_coast_guard%1:14:00:: 08192557 1 0 -us_congress%1:14:00:: 08161757 1 0 -us_constitution%1:10:00:: 06534132 1 0 -us_fish_and_wildlife_service%1:14:00:: 08139270 1 0 -us_government%1:14:00:: 08355791 1 0 -us_government_printing_office%1:14:00:: 08356573 1 0 -us_house%1:14:00:: 08161971 1 0 -us_house_of_representatives%1:14:00:: 08161971 1 0 -us_marine_corps%1:14:00:: 08192970 1 0 -us_marshals_service%1:14:00:: 08142370 1 0 -us_military_academy%1:14:00:: 08395465 1 0 -us_mint%1:06:00:: 04510456 1 0 -us_naval_academy%1:14:00:: 08194074 1 0 -us_navy%1:14:00:: 08191987 1 2 -us_post_office%1:14:00:: 08145277 1 0 -us_postal_inspection_service%1:14:00:: 08127557 1 0 -us_postal_service%1:14:00:: 08127304 1 0 -us_secret_service%1:14:00:: 08348400 1 0 -us_senate%1:14:00:: 08161591 1 0 -us_trade_representative%1:14:00:: 08128645 1 0 -usa%1:14:00:: 08394922 2 0 -usa%1:15:00:: 09044862 1 0 -usability%1:07:00:: 05150129 1 0 -usable%5:00:00:disposable:02 00777650 3 0 -usable%5:00:00:serviceable:00 02124253 2 0 -usable%5:00:00:useful:00 02496674 1 3 -usableness%1:07:00:: 05150129 1 0 -usacil%1:06:00:: 04510090 1 0 -usaf%1:14:00:: 08196230 1 0 -usage%1:04:00:: 00947128 1 9 -usage%1:04:01:: 00413239 2 1 -usage%1:10:00:: 06283459 3 0 -usama_bin_laden%1:18:00:: 10851452 1 0 -usance%1:04:00:: 00413239 3 0 -usance%1:22:00:: 13451804 2 0 -usance%1:28:00:: 15299585 1 0 -usbeg%1:10:00:: 06927363 2 0 -usbeg%1:18:00:: 09736798 1 0 -usbek%1:10:00:: 06927363 2 0 -usbek%1:18:00:: 09736798 1 0 -uscb%1:14:00:: 08142972 1 0 -usda%1:14:00:: 08128964 1 0 -use%1:04:00:: 00947128 1 90 -use%1:04:01:: 00414179 5 1 -use%1:04:02:: 00158185 6 1 -use%1:07:00:: 05149325 2 18 -use%1:07:02:: 05149978 3 7 -use%1:07:03:: 05190106 7 0 -use%1:22:00:: 13451804 4 1 -use%2:34:00:: 01158572 3 8 -use%2:34:01:: 01158872 1 603 -use%2:34:02:: 01165043 2 12 -use%2:41:03:: 02370131 6 0 -use%2:41:04:: 02561332 5 0 -use%2:41:14:: 02600490 4 0 -use_immunity%1:04:00:: 00215013 1 0 -use_of_goods_and_services%1:22:00:: 13451804 1 0 -use_up%2:34:00:: 01157517 1 3 -use_up%2:40:02:: 02267989 2 0 -useable%5:00:00:disposable:02 00777650 3 0 -useable%5:00:00:serviceable:00 02124253 1 1 -useable%5:00:00:useful:00 02496674 2 0 -useableness%1:07:00:: 05150129 1 0 -used%3:00:00:: 02494923 1 4 -used%5:00:00:old:01 01640482 3 1 -used%5:00:02:misused:00 02495687 2 1 -used-car%1:06:00:: 04516354 1 0 -used-car_lot%1:15:00:: 08676499 1 0 -used_to%5:00:00:accustomed:00 00024619 1 13 -useful%3:00:00:: 02495922 1 16 -useful%5:00:00:functional:00 01090820 2 0 -usefully%4:02:00:: 00491292 1 0 -usefulness%1:07:00:: 05148699 1 5 -useless%3:00:00:: 02497141 1 7 -uselessly%4:02:00:: 00491438 1 1 -uselessness%1:07:00:: 05150588 1 1 -user%1:18:00:: 10741590 1 3 -user%1:18:01:: 10072546 2 1 -user%1:18:02:: 10036266 3 0 -user-friendly%5:00:00:easy:01 00751099 1 0 -user_interface%1:10:00:: 06575227 1 0 -ushas%1:18:00:: 09529454 1 0 -usher%1:18:00:: 10741821 3 0 -usher%1:18:01:: 11357879 1 0 -usher%1:18:02:: 10742111 2 0 -usher%2:38:00:: 02000547 1 2 -usher_in%2:30:00:: 00349592 1 1 -usher_out%2:32:00:: 00900728 1 0 -usherette%1:18:00:: 10742005 1 0 -ushering_in%1:04:00:: 00243237 1 0 -using%1:04:00:: 00418903 1 0 -using_up%1:04:00:: 00356367 1 0 -uskub%1:15:00:: 08961852 1 0 -usmc%1:14:00:: 08192970 1 0 -usn%1:14:00:: 08191987 1 0 -usnea%1:20:00:: 12989739 1 0 -usnea_barbata%1:20:00:: 12989938 1 0 -usneaceae%1:20:00:: 12989462 1 0 -usps%1:14:00:: 08127304 1 0 -uss_cole%1:06:00:: 04516477 1 0 -ussher%1:18:00:: 11357879 1 0 -ussr%1:15:00:: 09003284 1 2 -usss%1:14:00:: 08348400 1 0 -ustilaginaceae%1:20:00:: 13066631 1 0 -ustilaginales%1:20:00:: 13065902 1 0 -ustilaginoidea%1:20:00:: 13081050 1 0 -ustilaginoidea_virens%1:20:00:: 13081229 1 0 -ustilago%1:20:00:: 13066803 1 0 -ustilago_maydis%1:20:00:: 13067330 1 0 -ustinov%1:18:00:: 11358065 1 0 -usual%3:00:00:: 00489108 1 29 -usual%5:00:00:familiar:02 00970610 2 2 -usually%4:02:00:: 00106921 1 96 -usualness%1:07:00:: 04796086 1 0 -usufruct%1:07:00:: 05190356 1 0 -usufructuary%1:18:00:: 10742269 1 0 -usufructuary%3:01:00:: 02821586 1 0 -usuli%1:14:00:: 08474341 1 0 -usumbura%1:15:00:: 08716517 1 0 -usurer%1:18:00:: 10742384 1 0 -usurious%5:00:00:immoderate:00 01534282 1 0 -usuriously%4:02:00:: 00333613 1 0 -usurp%2:40:00:: 02274482 1 2 -usurp%2:41:00:: 02406287 2 0 -usurpation%1:04:00:: 00085432 2 0 -usurpation%1:04:01:: 00733483 1 0 -usurper%1:18:00:: 10742546 1 0 -usury%1:04:00:: 01093855 2 0 -usury%1:21:01:: 13320045 1 0 -ut%1:10:00:: 06868309 3 0 -ut%1:15:00:: 09147046 2 0 -ut%1:28:00:: 15130205 1 0 -ut1%1:28:00:: 15130205 1 0 -uta%1:05:00:: 01681200 1 0 -uta_stansburiana%1:05:00:: 01681328 1 0 -utah%1:15:00:: 09147046 1 2 -utahan%1:18:00:: 09745933 1 0 -utahraptor%1:05:00:: 01718414 1 0 -utc%1:28:00:: 15130434 1 0 -ute%1:10:00:: 06915221 2 0 -ute%1:18:00:: 09671334 1 0 -utensil%1:06:00:: 04516672 1 2 -uterine%3:01:00:: 02933132 1 0 -uterine_artery%1:08:00:: 05355890 1 0 -uterine_cavity%1:08:00:: 05519401 1 0 -uterine_cervix%1:08:00:: 05303232 1 0 -uterine_contraction%1:04:00:: 00370458 1 0 -uterine_tube%1:08:00:: 05518870 1 0 -uterine_vein%1:08:00:: 05384999 1 0 -uterus%1:08:00:: 05519085 1 0 -utica%1:15:00:: 08920207 2 0 -utica%1:15:01:: 09125629 1 0 -utile%3:00:02:: 02495922 1 0 -utilisation%1:04:00:: 00947128 1 0 -utilise%2:34:00:: 01158872 1 0 -utilised%5:00:00:used:00 02495270 1 0 -utiliser%1:18:00:: 10743124 1 0 -utilitarian%1:18:00:: 10742736 1 0 -utilitarian%5:00:00:functional:00 01090820 1 1 -utilitarian%5:00:00:useful:00 02496857 2 0 -utilitarianism%1:09:00:: 06187529 1 0 -utility%1:04:00:: 00579334 3 1 -utility%1:06:00:: 04516874 6 0 -utility%1:07:00:: 05148699 2 1 -utility%1:10:00:: 06581410 5 0 -utility%1:14:00:: 08185758 1 6 -utility%1:23:00:: 13580058 4 0 -utility%5:00:00:inferior:02 02348376 1 0 -utility%5:00:00:secondary:01 01855446 2 0 -utility-grade%5:00:00:inferior:02 02348376 1 0 -utility_bond%1:21:00:: 13340902 1 0 -utility_man%1:18:00:: 10742881 2 0 -utility_man%1:18:01:: 10742997 1 0 -utility_program%1:10:00:: 06581410 1 0 -utility_revenue_bond%1:21:00:: 13340902 1 0 -utility_routine%1:10:00:: 06584702 1 0 -utilizable%5:00:00:useful:00 02497013 1 0 -utilization%1:04:00:: 00947128 1 3 -utilization%1:26:00:: 14580476 2 0 -utilize%2:30:12:: 00161872 2 0 -utilize%2:34:00:: 01158872 1 15 -utilized%5:00:00:used:00 02495270 1 0 -utilizer%1:18:00:: 10743124 1 0 -utmost%1:07:00:: 05124928 1 1 -utmost%5:00:00:far:00 00443618 3 0 -utmost%5:00:00:high:02 01212095 2 1 -utmost%5:00:00:intense:00 01511520 1 3 -utn%1:14:00:: 08048300 1 0 -utnapishtim%1:18:00:: 09522344 1 0 -uto-aztecan%1:10:00:: 06918396 1 2 -uto-aztecan_language%1:10:00:: 06918396 1 0 -utopia%1:09:00:: 05632056 4 0 -utopia%1:10:00:: 07283198 1 15 -utopia%1:10:01:: 06370178 3 0 -utopia%1:26:00:: 13932045 2 0 -utopian%1:18:00:: 10743356 1 4 -utopian%3:00:00:: 02497938 2 0 -utopian%3:01:00:: 03020193 1 13 -utopian_socialism%1:09:00:: 06221119 1 0 -utopianism%1:09:00:: 06221323 1 1 -utrecht%1:15:00:: 08951278 1 0 -utricle%1:08:00:: 05322432 1 0 -utricularia%1:20:00:: 12872257 1 0 -utriculus%1:08:00:: 05322432 1 0 -utrillo%1:18:00:: 11358225 1 0 -uttar_pradesh%1:15:00:: 08905646 1 0 -utter%2:32:00:: 00941990 3 1 -utter%2:32:01:: 00940384 1 6 -utter%2:32:02:: 00983824 2 3 -utter%2:38:00:: 02043851 4 0 -utter%5:00:00:complete:00 00522349 2 0 -utter%5:00:00:unmitigated:00 01520091 1 3 -utterable%5:00:00:expressible:00 00943831 1 0 -utterance%1:10:00:: 07109847 1 1 -uttered%5:00:00:spoken:00 02284023 1 0 -utterer%1:18:00:: 10630188 3 0 -utterer%1:18:01:: 10743543 2 0 -utterer%1:18:02:: 10743675 1 0 -utterly%4:02:00:: 00008997 1 8 -uttermost%1:07:00:: 05124928 1 0 -uttermost%5:00:00:far:00 00443618 2 0 -uttermost%5:00:00:intense:00 01511520 1 0 -utterness%1:07:00:: 05124534 1 0 -utu%1:18:00:: 09522498 1 0 -utug%1:18:00:: 09522498 1 0 -uub%1:27:00:: 14659794 1 0 -uuh%1:27:00:: 14659922 1 0 -uup%1:27:00:: 14660052 1 0 -uuq%1:27:00:: 14660183 1 0 -uut%1:27:00:: 14660314 1 0 -uv%1:19:00:: 11521940 1 0 -uvea%1:08:00:: 05317960 1 0 -uveal%3:01:00:: 02821723 1 0 -uveitis%1:26:00:: 14357853 1 0 -uveoscleral_pathway%1:08:00:: 05318137 1 0 -uveous%3:01:00:: 02821723 1 0 -uvula%1:08:00:: 05309245 1 0 -uvular%3:01:00:: 03127937 1 0 -uvularia%1:20:00:: 12474828 1 0 -uvularia_grandiflora%1:20:00:: 12475242 1 0 -uvulariaceae%1:20:00:: 12474620 1 0 -uvulitis%1:26:00:: 14357942 1 0 -uvulopalatopharyngoplasty%1:04:00:: 00689729 1 0 -ux.%1:18:00:: 10743941 1 0 -uxor%1:18:00:: 10743941 1 0 -uxorial%3:00:00:: 01735475 1 0 -uxoricide%1:04:00:: 00222064 2 0 -uxoricide%1:18:00:: 10744078 1 0 -uxorious%5:00:00:loving:00 01466476 1 0 -uxoriously%4:02:00:: 00491577 1 0 -uxoriousness%1:07:00:: 04627367 1 0 -uygur%1:10:00:: 06927486 2 0 -uygur%1:10:01:: 06353089 3 0 -uygur%1:18:00:: 09736633 1 0 -uzbak%1:10:00:: 06927363 2 0 -uzbak%1:18:00:: 09736798 1 0 -uzbeg%1:10:00:: 06927363 2 0 -uzbeg%1:18:00:: 09736798 1 0 -uzbek%1:10:00:: 06927363 3 0 -uzbek%1:15:00:: 09022265 2 0 -uzbek%1:18:00:: 09736798 1 0 -uzbekistan%1:15:00:: 09022265 1 0 -uzbekistani%3:01:00:: 02963810 1 0 -uzbekistani_monetary_unit%1:23:00:: 13703370 1 0 -uzi%1:06:00:: 04517211 1 0 -v%1:10:00:: 06833436 4 0 -v%1:23:00:: 13643276 1 1 -v%1:23:02:: 13744521 3 0 -v%1:27:00:: 14661020 2 0 -v%5:00:00:cardinal:00 02186750 1 0 -v-1%1:06:00:: 02929923 1 0 -v-8_juice%1:13:00:: 07925708 1 0 -v-day%1:28:00:: 15162640 1 0 -v-e_day%1:28:00:: 15162764 1 0 -v-j_day%1:28:00:: 15162882 1 0 -v-shaped%5:00:00:formed:00 02151438 1 0 -v.p.%1:18:00:: 10751265 1 0 -v_neck%1:06:00:: 04539535 1 0 -v_sign%1:10:00:: 07274197 1 0 -va%1:14:00:: 08144122 2 0 -va%1:15:00:: 09148970 1 0 -vac%1:28:00:: 15138401 1 0 -vacancy%1:25:00:: 13910116 2 1 -vacancy%1:26:00:: 14455966 1 3 -vacancy_rate%1:24:00:: 13818916 1 0 -vacant%5:00:01:empty:00 01087977 2 1 -vacant%5:00:02:empty:00 01088164 1 2 -vacant_lot%1:15:00:: 08676622 1 0 -vacantly%4:02:00:: 00491705 1 1 -vacate%2:32:00:: 00799798 3 0 -vacate%2:38:00:: 02076676 2 1 -vacate%2:41:00:: 02367032 1 2 -vacation%1:04:01:: 01253665 2 0 -vacation%1:28:00:: 15137890 1 23 -vacation%2:42:00:: 02708707 1 2 -vacation_home%1:06:00:: 04517408 1 0 -vacation_spot%1:15:00:: 08640739 1 0 -vacationer%1:18:00:: 10744164 1 0 -vacationing%1:04:00:: 01065805 1 1 -vacationist%1:18:00:: 10744164 1 0 -vaccaria%1:20:00:: 11818515 1 0 -vaccaria_hispanica%1:20:00:: 11818636 1 0 -vaccaria_pyramidata%1:20:00:: 11818636 1 0 -vaccina%1:26:00:: 14358022 1 0 -vaccinate%2:29:00:: 00086835 1 0 -vaccinated%5:00:00:unsusceptible:00 02363811 1 0 -vaccinating%1:04:00:: 00824054 1 1 -vaccination%1:04:00:: 00823884 1 1 -vaccination%1:26:00:: 14364306 2 0 -vaccinator%1:18:00:: 10207514 1 0 -vaccine%1:06:00:: 04517535 1 1 -vaccinee%1:18:00:: 10744456 1 0 -vaccinia%1:26:00:: 14262882 2 0 -vaccinia%1:26:01:: 14358022 1 0 -vaccinia_gangrenosa%1:26:00:: 14089719 1 0 -vaccinium%1:20:00:: 12245472 1 0 -vaccinium_angustifolium%1:20:00:: 12246941 1 0 -vaccinium_arboreum%1:20:00:: 12246773 1 0 -vaccinium_ashei%1:20:00:: 12247202 1 0 -vaccinium_caespitosum%1:20:00:: 12247407 1 0 -vaccinium_corymbosum%1:20:00:: 12247664 1 0 -vaccinium_macrocarpon%1:20:00:: 12245885 1 0 -vaccinium_myrsinites%1:20:00:: 12247963 1 0 -vaccinium_ovatum%1:20:00:: 12248141 1 0 -vaccinium_oxycoccus%1:20:00:: 12246037 1 0 -vaccinium_pallidum%1:20:00:: 12248941 1 0 -vaccinium_pennsylvanicum%1:20:00:: 12246941 1 0 -vaccinium_scoparium%1:20:00:: 12249122 1 0 -vaccinium_stamineum%1:20:00:: 12249294 1 0 -vaccinium_uliginosum_alpinum%1:20:00:: 12248780 1 0 -vaccinium_vitis-idaea%1:20:00:: 12249542 1 0 -vaccinum%1:06:00:: 04517535 1 0 -vachel_lindsay%1:18:00:: 11133197 1 0 -vacillant%5:00:00:irresolute:00 01992867 1 0 -vacillate%2:38:00:: 01876907 2 0 -vacillate%2:42:00:: 02706046 1 0 -vacillating%5:00:00:irresolute:00 01992867 1 0 -vacillation%1:04:00:: 00327824 2 0 -vacillation%1:09:00:: 05699434 1 0 -vacillator%1:18:00:: 10603528 1 0 -vaclav_havel%1:18:00:: 11034596 1 0 -vacuity%1:07:00:: 05174023 3 0 -vacuity%1:15:00:: 08653474 2 0 -vacuity%1:26:02:: 14456054 1 0 -vacuolate%3:01:00:: 02821875 1 0 -vacuolated%3:01:00:: 02821875 1 1 -vacuolation%1:26:00:: 14077693 1 0 -vacuole%1:08:00:: 05447087 1 0 -vacuolisation%1:26:00:: 14077693 1 0 -vacuolization%1:26:00:: 14077693 1 2 -vacuous%5:00:00:empty:00 01088262 3 0 -vacuous%5:00:00:foolish:00 02571277 1 0 -vacuous%5:00:00:meaningless:00 01498084 2 0 -vacuous%5:00:00:uncommunicative:00 00500889 4 0 -vacuously%4:02:00:: 00491820 1 0 -vacuousness%1:09:00:: 05647451 1 0 -vacuum%1:06:00:: 04517823 4 0 -vacuum%1:15:00:: 08653474 3 0 -vacuum%1:25:00:: 13910116 2 0 -vacuum%1:26:00:: 14456054 1 12 -vacuum%2:35:00:: 01244853 1 2 -vacuum-clean%2:35:00:: 01244853 1 0 -vacuum_aspiration%1:04:00:: 00669687 1 0 -vacuum_bag%1:06:00:: 03258192 1 0 -vacuum_bomb%1:06:00:: 04420461 1 0 -vacuum_bottle%1:06:00:: 04518132 1 0 -vacuum_chamber%1:06:00:: 04517999 1 0 -vacuum_cleaner%1:06:00:: 04517823 1 1 -vacuum_flask%1:06:00:: 04518132 1 0 -vacuum_gage%1:06:00:: 04518343 1 0 -vacuum_gauge%1:06:00:: 04518343 1 0 -vacuum_pump%1:06:00:: 02692513 1 0 -vacuum_tube%1:06:00:: 04494204 1 0 -vade_mecum%1:10:00:: 06421301 1 0 -vaduz%1:15:00:: 08960843 1 0 -vagabond%1:17:00:: 09468237 1 1 -vagabond%1:18:01:: 10744544 2 0 -vagabond%2:38:00:: 01881180 1 0 -vagabond%5:00:01:unsettled:01 02127159 2 0 -vagabond%5:00:02:unsettled:01 02128736 1 0 -vagabondage%1:04:00:: 00297062 1 0 -vagal%3:01:00:: 02822055 1 0 -vagary%1:11:00:: 07337096 1 0 -vagile%3:00:00:: 00160144 1 0 -vagina%1:08:00:: 05521111 1 0 -vaginal%3:01:00:: 03128070 1 0 -vaginal_artery%1:08:00:: 05356083 1 0 -vaginal_birth%1:22:00:: 13448334 1 0 -vaginal_discharge%1:27:00:: 14853796 1 0 -vaginal_smear%1:08:00:: 05266759 1 0 -vaginismus%1:04:00:: 00370885 1 0 -vaginitis%1:26:00:: 14358335 1 0 -vaginocele%1:26:00:: 14295691 1 0 -vagn_walfrid_ekman%1:18:00:: 10955748 1 0 -vagrancy%1:26:00:: 13943236 1 0 -vagrant%1:18:00:: 10744544 1 0 -vagrant%5:00:00:unsettled:01 02127159 1 0 -vague%3:00:04:: 00697389 2 8 -vague%5:00:00:indistinct:00 00782216 3 1 -vague%5:00:00:unclear:00 00431004 1 18 -vaguely%4:02:00:: 00232600 1 14 -vagueness%1:07:00:: 04824350 1 1 -vagueness%1:07:01:: 04704839 2 0 -vagus%1:08:00:: 05480076 1 0 -vagus_nerve%1:08:00:: 05480076 1 0 -vain%5:00:00:proud:00 01891773 1 3 -vain%5:00:00:unproductive:00 01866812 2 2 -vainglorious%5:00:00:proud:00 01890187 1 0 -vainglory%1:07:00:: 04887373 1 0 -vainly%4:02:00:: 00167920 1 0 -vaisakha%1:28:00:: 15220027 1 0 -vaishnava%1:18:00:: 09685711 1 0 -vaishnavism%1:09:00:: 06239215 2 0 -vaishnavism%1:14:00:: 08097391 1 0 -vaisnavism%1:09:00:: 06239215 2 0 -vaisnavism%1:14:00:: 08097391 1 0 -vaisya%1:14:00:: 08307267 2 0 -vaisya%1:18:00:: 10744844 1 0 -vajra%1:18:00:: 09529573 1 0 -valance%1:06:00:: 03111296 1 0 -valance_board%1:06:00:: 03111296 1 0 -valdecoxib%1:06:00:: 04518468 1 0 -valdez%1:15:00:: 09056677 1 0 -valdosta%1:15:00:: 09077977 1 0 -vale%1:17:00:: 09468604 1 0 -valediction%1:04:00:: 00053525 2 0 -valediction%1:10:00:: 07243565 1 0 -valedictorian%1:18:00:: 10745006 1 0 -valedictory%1:10:00:: 07243565 1 0 -valedictory%3:01:00:: 02822229 1 0 -valedictory%5:00:00:exaugural:00 01291098 2 0 -valedictory_address%1:10:00:: 07243565 1 0 -valedictory_oration%1:10:00:: 07243565 1 0 -valedictory_speaker%1:18:00:: 10745006 1 0 -valence%1:07:01:: 05034473 2 0 -valence%1:07:02:: 05034989 1 0 -valence_electron%1:17:00:: 09468447 1 0 -valencia%1:15:00:: 09028477 2 0 -valencia%1:15:01:: 09163077 1 0 -valencia_orange%1:13:00:: 07749312 1 0 -valenciennes%1:06:00:: 04518643 2 0 -valenciennes%1:15:00:: 08938478 1 0 -valenciennes_lace%1:06:00:: 04518643 1 0 -valency%1:07:01:: 05034473 3 0 -valency%1:07:02:: 05034989 2 0 -valency%1:19:00:: 11436491 1 0 -valent%3:01:00:: 02822601 1 0 -valentina_tereshkova%1:18:00:: 11336364 1 0 -valentina_vladmirovna_tereshkova%1:18:00:: 11336364 1 0 -valentine%1:10:00:: 06627816 2 0 -valentine%1:18:00:: 10745181 1 0 -valentine's_day%1:28:00:: 15187250 1 0 -valentine_day%1:28:00:: 15187250 1 0 -valerian%1:20:00:: 12950126 1 0 -valerian_family%1:20:00:: 12949722 1 0 -valeriana%1:20:00:: 12949955 1 0 -valeriana_officinalis%1:20:00:: 12950314 1 0 -valerianaceae%1:20:00:: 12949722 1 0 -valerianella%1:20:00:: 12950501 1 0 -valerianella_locusta%1:20:00:: 12950796 1 0 -valerianella_olitoria%1:20:00:: 12950796 1 0 -valeric_acid%1:27:00:: 14740094 1 0 -valet%1:18:00:: 10745332 1 2 -valet%2:41:00:: 02541138 1 0 -valet_de_chambre%1:18:00:: 10745332 1 0 -valet_parking%1:04:00:: 00099061 1 0 -valetta%1:15:00:: 08966647 1 0 -valetudinarian%1:18:00:: 10745613 1 0 -valetudinarian%3:01:00:: 02822746 1 0 -valetudinarianism%1:26:00:: 14547643 1 0 -valetudinary%3:01:00:: 02822746 1 0 -valgus%1:26:00:: 14468693 1 0 -valhalla%1:09:00:: 05629204 1 0 -vali%1:18:00:: 09584079 1 0 -valiance%1:07:00:: 04857738 1 0 -valiancy%1:07:00:: 04857738 1 0 -valiant%5:00:00:brave:00 00264570 1 3 -valiantly%4:02:00:: 00491895 1 0 -valid%3:00:00:: 02498708 1 5 -valid%5:00:00:unexpired:00 00938659 2 0 -validate%2:30:00:: 00448290 4 0 -validate%2:31:00:: 00667224 2 2 -validate%2:32:00:: 01012561 3 0 -validate%2:41:00:: 02478701 1 2 -validated%5:00:00:valid:00 02499643 1 0 -validating%5:00:00:supportive:00 02355521 1 0 -validation%1:04:00:: 00153961 1 1 -validation%1:09:00:: 05826291 2 0 -validatory%5:00:00:supportive:00 02355521 1 0 -validity%1:07:00:: 04809453 2 1 -validity%1:07:01:: 04783567 1 4 -validity%1:07:02:: 05031012 3 0 -validly%4:02:00:: 00492050 1 0 -validness%1:07:00:: 04809453 1 0 -valine%1:27:00:: 15086088 1 0 -valise%1:06:00:: 04518764 1 0 -valium%1:06:00:: 03189995 1 0 -valkyrie%1:18:00:: 09590772 1 0 -valle_d'aosta%1:15:00:: 08812842 1 0 -vallecula%1:08:00:: 05222591 1 0 -valletta%1:15:00:: 08966647 1 0 -valley%1:17:00:: 09468604 1 27 -valley_fever%1:26:00:: 14147014 1 0 -valley_girl%1:18:00:: 10745770 1 0 -valley_oak%1:20:00:: 12273939 1 0 -valley_pocket_gopher%1:05:00:: 02354621 1 0 -valley_white_oak%1:20:00:: 12273939 1 0 -vallisneria%1:20:00:: 12615097 1 0 -vallisneria_spiralis%1:20:00:: 12615232 1 0 -valmy%1:04:00:: 01298371 1 0 -valois%1:14:00:: 08159464 1 0 -valor%1:07:00:: 04857738 1 7 -valorous%5:00:00:brave:00 00264570 1 0 -valorously%4:02:00:: 00491895 1 0 -valorousness%1:07:00:: 04857738 1 0 -valour%1:07:00:: 04857738 1 0 -valparaiso%1:15:00:: 08722084 1 0 -valproic_acid%1:06:00:: 04518854 1 0 -valsartan%1:06:00:: 04519019 1 0 -valse%1:04:00:: 00537534 1 0 -valuable%1:21:00:: 13371030 1 0 -valuable%3:00:00:: 02500884 1 16 -valuable%5:00:00:worthy:00 02587738 2 5 -valuableness%1:07:00:: 05141222 1 0 -valuate%2:31:00:: 00681429 1 0 -valuation%1:09:00:: 05736149 1 2 -valuation%1:21:00:: 13305673 2 0 -valuation_account%1:21:00:: 13370215 1 0 -valuation_reserve%1:21:00:: 13370215 1 0 -valuator%1:18:00:: 09802050 1 0 -value%1:07:00:: 05138488 2 52 -value%1:07:01:: 04979425 4 2 -value%1:09:00:: 05856388 1 65 -value%1:09:01:: 05923983 6 0 -value%1:21:00:: 13413493 3 13 -value%1:28:00:: 15134913 5 0 -value%2:31:00:: 00681429 4 0 -value%2:31:01:: 00694068 3 1 -value%2:31:02:: 00660971 5 0 -value%2:31:03:: 00695226 1 2 -value%2:40:00:: 02256109 2 1 -value-added_tax%1:21:00:: 13316722 1 0 -value-system%1:09:00:: 05956019 1 4 -value_judgement%1:04:00:: 00875838 1 0 -value_judgment%1:04:00:: 00875838 1 0 -value_orientation%1:09:00:: 05956019 1 1 -value_statement%1:10:00:: 06739676 1 1 -valued%5:00:00:quantitative:00 01915991 1 13 -valued%5:00:00:worthy:00 02587556 2 0 -valueless%5:00:00:worthless:00 02504046 1 1 -valuelessness%1:07:00:: 05140454 1 0 -valuer%1:18:00:: 10745894 1 0 -values%1:09:00:: 05954894 1 21 -valve%1:05:00:: 01904461 5 0 -valve%1:05:01:: 01904583 4 0 -valve%1:06:00:: 04519153 3 0 -valve%1:06:01:: 04519536 2 1 -valve%1:08:00:: 05395286 1 2 -valve-in-head_engine%1:06:00:: 04519728 1 0 -valve_rocker%1:06:00:: 04099003 1 0 -valved%3:01:00:: 02822929 1 0 -valvelet%1:08:00:: 05395548 1 0 -valvotomy%1:04:00:: 00698474 1 0 -valvula%1:08:00:: 05395548 1 0 -valvular%3:01:00:: 03128193 1 0 -valvular_heart_disease%1:26:00:: 14112466 1 0 -valvular_incompetence%1:26:00:: 14076011 1 0 -valvule%1:08:00:: 05395548 1 0 -valvulitis%1:26:00:: 14358474 1 0 -valvulotomy%1:04:00:: 00698474 1 0 -vambrace%1:06:00:: 04519887 1 0 -vamoose%2:38:00:: 02010698 1 0 -vamp%1:06:00:: 04520020 3 0 -vamp%1:10:00:: 07032206 2 0 -vamp%1:18:00:: 09965134 1 0 -vamp%2:30:00:: 00533527 4 0 -vamp%2:32:00:: 01038538 3 0 -vamp%2:35:00:: 01590389 2 0 -vamp%2:36:00:: 01739545 1 0 -vamp_up%2:35:00:: 01590389 2 0 -vamp_up%2:36:00:: 01739545 1 0 -vamper%1:18:00:: 09965134 1 0 -vampire%1:18:00:: 09544109 1 0 -vampire_bat%1:05:00:: 02150482 1 0 -vampirism%1:04:00:: 01267808 2 0 -vampirism%1:09:00:: 05955095 1 0 -van%1:06:00:: 04520170 5 0 -van%1:06:01:: 04520382 4 0 -van%1:06:02:: 04520480 3 0 -van%1:14:00:: 08215495 2 0 -van%1:14:01:: 08465558 1 0 -van_allen%1:18:00:: 11358374 1 0 -van_allen_belt%1:15:00:: 08676760 1 0 -van_beethoven%1:18:00:: 10841405 1 0 -van_bogaert_encephalitis%1:26:00:: 14344189 1 0 -van_buren%1:18:00:: 11358719 1 0 -van_de_graaff%1:18:00:: 11359037 1 0 -van_de_graaff_generator%1:06:00:: 03280394 1 0 -van_de_velde%1:18:00:: 11359558 1 0 -van_der_waal's_forces%1:19:00:: 11522815 1 1 -van_der_waals%1:18:00:: 11359412 1 0 -van_doren%1:18:00:: 11359697 1 0 -van_dyck%1:18:00:: 11359867 1 0 -van_eyck%1:18:00:: 10964052 1 0 -van_gogh%1:18:00:: 11360022 1 0 -van_vleck%1:18:00:: 11360175 1 0 -van_wyck_brooks%1:18:00:: 10866090 1 0 -vanadate%1:27:00:: 15086811 1 0 -vanadic_acid%1:27:00:: 15087090 1 0 -vanadinite%1:27:00:: 15086939 1 0 -vanadium%1:27:00:: 14661020 1 0 -vanadium_pentoxide%1:27:00:: 15087090 1 0 -vanadium_steel%1:27:00:: 15087244 1 0 -vanbrugh%1:18:00:: 11358598 1 0 -vancocin%1:06:00:: 04520618 1 0 -vancomycin%1:06:00:: 04520618 1 0 -vancouver%1:15:00:: 08823480 3 0 -vancouver%1:15:01:: 09154905 2 0 -vancouver%1:18:00:: 11358863 1 0 -vancouver_island%1:15:00:: 08823728 1 0 -vanda%1:20:00:: 12086012 1 0 -vanda_caerulea%1:20:00:: 12086192 1 0 -vandal%1:18:00:: 10746056 1 1 -vandal%1:18:01:: 10746195 2 0 -vandalise%2:35:00:: 01520454 1 0 -vandalism%1:04:00:: 01249816 1 1 -vandalize%2:35:00:: 01520454 1 0 -vanderbilt%1:18:00:: 11359187 1 0 -vandyke%1:08:00:: 05263316 2 0 -vandyke%1:18:00:: 11359867 1 0 -vandyke_beard%1:08:00:: 05263316 1 0 -vandyke_brown%1:07:00:: 04972268 1 0 -vane%1:05:00:: 01897991 4 0 -vane%1:06:00:: 04568069 1 0 -vane%1:06:01:: 02848523 3 0 -vane%1:06:02:: 04520784 2 0 -vaned%5:00:00:feathered:00 00998381 1 0 -vanellus%1:05:00:: 02024636 1 0 -vanern%1:17:00:: 09333905 1 0 -vanessa%1:05:00:: 02275921 1 0 -vanessa_atalanta%1:05:00:: 02276355 1 0 -vanessa_bell%1:18:00:: 10842376 1 0 -vanessa_stephen%1:18:00:: 10842376 1 0 -vanessa_virginiensis%1:05:00:: 02276078 1 0 -vanguard%1:09:00:: 06209419 3 0 -vanguard%1:14:00:: 08215495 1 1 -vanguard%1:14:01:: 08465558 2 0 -vanguards_of_conquest%1:14:00:: 08012765 1 0 -vangueria%1:20:00:: 12670558 1 0 -vangueria_infausta%1:20:00:: 12670758 1 0 -vangueria_madagascariensis%1:20:00:: 12670962 1 0 -vanilla%1:09:00:: 05716462 3 0 -vanilla%1:13:00:: 07828807 2 0 -vanilla%1:20:00:: 12086539 1 0 -vanilla%3:01:00:: 02823018 1 0 -vanilla%5:00:00:plain:01 01794125 2 0 -vanilla-scented%5:00:00:odorous:00 01057614 1 0 -vanilla_bean%1:13:00:: 07828642 1 0 -vanilla_extract%1:13:00:: 07828807 1 0 -vanilla_ice_cream%1:13:00:: 07615671 1 0 -vanilla_orchid%1:20:00:: 12086778 1 0 -vanilla_planifolia%1:20:00:: 12086778 1 0 -vanilla_pudding%1:13:00:: 07618281 1 0 -vanillin%1:20:00:: 12087032 1 0 -vanir%1:18:00:: 09579345 1 0 -vanish%2:30:00:: 00426958 1 11 -vanish%2:30:01:: 00153061 5 0 -vanish%2:30:02:: 00427397 4 0 -vanish%2:38:05:: 02073065 3 0 -vanish%2:39:00:: 02156546 2 6 -vanished%5:00:00:nonexistent:00 00928414 1 2 -vanisher%1:18:00:: 10746346 1 0 -vanishing%1:04:00:: 00053806 2 0 -vanishing%1:11:00:: 07336104 1 0 -vanishing_cream%1:06:00:: 03067339 1 0 -vanishing_point%1:07:00:: 04676959 2 0 -vanishing_point%1:15:00:: 08676951 1 1 -vanishingly%4:02:00:: 00501750 1 0 -vanity%1:06:00:: 03238586 4 0 -vanity%1:07:00:: 04887129 3 0 -vanity%1:07:01:: 05141040 2 0 -vanity%1:12:00:: 07508996 1 4 -vanity_fair%1:07:00:: 04931152 1 0 -vannevar_bush%1:18:00:: 10875681 1 0 -vanquish%2:33:00:: 01101913 1 1 -vanquishable%5:00:00:conquerable:00 00569304 1 0 -vanquisher%1:18:00:: 09956578 1 0 -vantage%1:07:00:: 05155821 2 0 -vantage%1:15:00:: 08677075 1 0 -vantage_point%1:15:00:: 08677250 1 1 -vanua_levu%1:15:00:: 08779042 1 0 -vanuatu%1:15:00:: 09160775 1 0 -vanzetti%1:18:00:: 11360311 1 0 -vapid%5:00:00:tasteless:01 02399595 1 0 -vapid%5:00:00:unstimulating:00 02308001 2 0 -vapidity%1:07:00:: 05206573 1 0 -vapidly%4:02:00:: 00492168 1 0 -vapidness%1:07:00:: 05206573 1 0 -vapor%1:22:00:: 13572436 2 1 -vapor%1:27:01:: 15055633 1 5 -vapor_bath%1:04:00:: 00258530 2 0 -vapor_bath%1:06:00:: 04308583 1 0 -vapor_density%1:07:00:: 04941809 1 0 -vapor_lock%1:06:00:: 04521125 1 0 -vapor_pressure%1:19:00:: 11523031 1 10 -vaporific%5:00:00:gaseous:00 02263491 2 0 -vaporific%5:00:00:volatile:00 02519813 1 0 -vaporing%1:10:00:: 07229747 1 0 -vaporisation%1:04:00:: 00218902 2 0 -vaporisation%1:22:00:: 13572436 1 0 -vaporise%2:30:00:: 00442267 3 0 -vaporise%2:30:01:: 00366858 4 0 -vaporise%2:30:04:: 00575720 2 0 -vaporise%2:30:05:: 00575970 1 0 -vaporiser%1:06:00:: 04520962 1 0 -vaporish%5:00:00:gaseous:00 02263491 1 0 -vaporizable%5:00:00:volatile:00 02519813 1 0 -vaporization%1:04:00:: 00218902 1 1 -vaporization%1:22:00:: 13572436 2 0 -vaporize%2:30:00:: 00442267 2 0 -vaporize%2:30:01:: 00366858 3 0 -vaporize%2:30:04:: 00153061 4 0 -vaporize%2:35:04:: 01325288 1 0 -vaporized%5:00:00:gaseous:00 02263270 1 0 -vaporizer%1:06:00:: 04520962 1 0 -vaporous%5:00:00:cloudy:00 00462546 3 0 -vaporous%5:00:00:gaseous:00 02263491 2 0 -vaporous%5:00:00:thin:01 02413390 1 0 -vaporousness%1:07:00:: 04704116 1 0 -vapors%1:26:00:: 14404460 1 0 -vapour%1:22:00:: 13572436 2 0 -vapour%1:27:01:: 15055633 1 0 -vapour_bath%1:04:00:: 00258530 2 0 -vapour_bath%1:06:00:: 04308583 1 0 -vapour_density%1:07:00:: 04941809 1 0 -vapour_lock%1:06:00:: 04521125 1 0 -vapour_pressure%1:19:00:: 11523031 1 0 -vapourific%5:00:00:gaseous:00 02263491 2 0 -vapourific%5:00:00:volatile:00 02519813 1 0 -vapourisable%5:00:00:volatile:00 02519813 1 0 -vapourised%5:00:00:gaseous:00 02263270 1 0 -vapourish%5:00:00:gaseous:00 02263491 1 0 -vapourous%5:00:00:cloudy:00 00462546 3 0 -vapourous%5:00:00:gaseous:00 02263491 2 0 -vapourous%5:00:00:thin:01 02413390 1 0 -vapourousness%1:07:00:: 04704116 1 0 -vapours%1:26:00:: 14404460 1 0 -vaquero%1:18:00:: 09973209 1 1 -vaquita%1:05:00:: 02070776 1 0 -var%1:23:00:: 13645132 1 0 -var.%1:14:00:: 08111157 1 1 -vara%1:23:00:: 13652661 1 0 -varan%1:05:00:: 01694709 1 0 -varanidae%1:05:00:: 01694430 1 0 -varanus%1:05:00:: 01694558 1 0 -varanus_komodoensis%1:05:00:: 01695060 1 0 -varanus_niloticus%1:05:00:: 01694955 1 0 -vardenafil%1:06:00:: 04521428 1 0 -varese%1:18:00:: 11360534 1 0 -vargas%1:18:00:: 11360744 1 0 -vargas_llosa%1:18:00:: 11360895 1 0 -variability%1:07:00:: 04735233 1 2 -variability%1:07:01:: 04771890 2 0 -variable%1:09:00:: 05857459 2 2 -variable%1:10:00:: 07271280 4 0 -variable%1:17:00:: 09468959 1 4 -variable%1:17:01:: 09469152 3 0 -variable%3:00:00:: 02504131 1 6 -variable%5:00:00:adaptable:00 01028796 3 1 -variable%5:00:00:varied:00 02507515 2 2 -variable-pitch_propeller%1:06:00:: 04521571 1 0 -variable_quantity%1:09:00:: 05857459 1 0 -variable_resistor%1:06:00:: 04086794 1 1 -variable_star%1:17:00:: 09469152 1 0 -variableness%1:07:00:: 04735233 1 0 -variably%4:02:00:: 00492269 1 0 -variance%1:04:00:: 00194969 7 0 -variance%1:04:01:: 01142150 6 0 -variance%1:07:00:: 04749709 4 0 -variance%1:07:01:: 04735233 5 0 -variance%1:09:00:: 06024936 3 0 -variance%1:10:00:: 07181842 2 0 -variance%1:11:00:: 07366627 1 0 -variant%1:09:00:: 05864177 3 0 -variant%1:09:01:: 05840650 4 0 -variant%1:11:00:: 07366627 1 1 -variant%1:14:00:: 08111157 2 0 -variant%5:00:00:different:00 02068277 1 1 -variant%5:00:00:variable:00 02505415 2 0 -variate%1:09:00:: 05864177 1 0 -variation%1:04:00:: 00194969 2 9 -variation%1:04:01:: 00195194 11 0 -variation%1:04:02:: 00529101 10 0 -variation%1:06:00:: 04521699 5 1 -variation%1:09:01:: 05840650 4 1 -variation%1:10:00:: 07030012 3 2 -variation%1:11:01:: 07337390 1 24 -variation%1:18:00:: 10341660 9 0 -variation%1:19:00:: 11415084 8 0 -variation%1:22:00:: 13572324 7 0 -variation%1:25:00:: 13893310 6 0 -varicella%1:26:00:: 14132975 1 0 -varicella_zoster_virus%1:05:00:: 01340014 1 0 -varicelliform%3:01:00:: 03144862 1 0 -varicocele%1:26:00:: 14573303 1 0 -varicolored%5:00:00:colored:00 00398978 2 0 -varicolored%5:00:00:varied:00 02507324 1 0 -varicoloured%5:00:00:colored:00 00398978 2 0 -varicoloured%5:00:00:varied:00 02507324 1 0 -varicose%5:00:00:unhealthy:00 01178458 1 0 -varicose_vein%1:08:00:: 05421586 1 0 -varicosis%1:26:00:: 14573432 1 0 -varicosity%1:26:00:: 14573553 1 0 -varied%3:00:00:: 02506555 1 11 -varied%5:00:00:changed:00 00355083 3 0 -varied%5:00:00:diversified:00 00783469 2 0 -varied_lorikeet%1:05:00:: 01820801 1 0 -variedness%1:07:00:: 04735556 1 0 -variegate%2:30:00:: 00436879 2 0 -variegate%2:30:01:: 00581509 1 0 -variegated%5:00:00:varied:00 02507324 1 1 -variegated_horsetail%1:20:00:: 13220663 1 0 -variegated_scouring_rush%1:20:00:: 13220663 1 0 -variegation%1:04:00:: 00195569 2 0 -variegation%1:07:00:: 04735828 1 0 -varietal%1:13:00:: 07900225 1 0 -varietal_wine%1:13:00:: 07900225 1 0 -variety%1:07:00:: 04751305 2 7 -variety%1:07:01:: 04752034 6 0 -variety%1:09:01:: 05839024 5 0 -variety%1:10:00:: 07020239 4 0 -variety%1:14:00:: 08101085 3 1 -variety%1:14:01:: 08398773 1 22 -variety_meat%1:13:00:: 07651454 1 0 -variety_show%1:10:00:: 07020239 1 0 -variform%5:00:00:varied:00 02507436 1 0 -variola%1:26:00:: 14124423 1 0 -variola_major%1:05:00:: 01334217 2 0 -variola_major%1:26:00:: 14124423 1 0 -variola_major_virus%1:05:00:: 01334217 1 0 -variola_minor%1:05:00:: 01334368 2 0 -variola_minor%1:26:00:: 14124688 1 0 -variola_minor_virus%1:05:00:: 01334368 1 0 -variola_vaccina%1:26:00:: 14358022 1 0 -variola_vaccine%1:26:00:: 14358022 1 0 -variola_vaccinia%1:26:00:: 14358022 1 0 -variola_virus%1:05:00:: 01334036 1 0 -variolar%3:01:00:: 02823131 1 0 -variolation%1:04:00:: 00824614 1 0 -variolic%3:01:00:: 02823131 1 0 -variolization%1:04:00:: 00824614 1 0 -variolous%3:01:00:: 02823131 1 0 -variometer%1:06:00:: 04521863 1 0 -variorum%1:10:00:: 06590723 1 0 -variorum_edition%1:10:00:: 06590723 1 0 -various%5:00:00:different:00 02067491 3 3 -various%5:00:00:individual:00 00494409 2 36 -various%5:00:02:different:00 02065665 1 46 -various%5:00:02:varied:00 02507772 4 2 -variously%4:02:00:: 00052231 1 2 -variously-leaved_pondweed%1:20:00:: 12616442 1 0 -varix%1:26:00:: 14573713 1 0 -varlet%1:18:01:: 10391086 2 0 -varlet%1:18:02:: 10536728 1 0 -varment%1:05:00:: 01316288 1 0 -varmint%1:05:00:: 01316288 2 0 -varmint%1:18:00:: 10748506 1 0 -varna%1:14:00:: 08306665 2 0 -varna%1:15:00:: 08714966 1 0 -varnish%1:06:00:: 04521987 1 0 -varnish%2:35:00:: 01269008 1 0 -varnish_tree%1:20:01:: 12927494 1 0 -varnish_tree%1:20:02:: 12767648 2 0 -varnished%5:00:00:painted:00 01713713 1 0 -varnisher%1:18:00:: 10746460 1 0 -varro%1:18:00:: 11361039 1 0 -varsity%1:14:00:: 08287182 1 0 -varsity%1:14:01:: 08080652 2 0 -varsity_letter%1:10:00:: 06706504 1 0 -varsity_sock%1:06:00:: 02752496 1 0 -varuna%1:18:00:: 09529644 1 0 -varus%1:26:00:: 14468870 1 0 -vary%2:30:01:: 00123170 1 26 -vary%2:30:04:: 00436879 4 5 -vary%2:42:00:: 02661252 2 20 -vary%2:42:01:: 02662297 3 7 -varying%5:00:00:varied:00 02507515 1 6 -varying_hare%1:05:00:: 02327842 1 0 -vas%1:08:00:: 05397333 1 0 -vas_deferens%1:08:00:: 05526175 1 0 -vasa_brevis%1:08:00:: 05346191 1 0 -vasa_efferentia%1:08:00:: 05525970 1 0 -vasa_vasorum%1:08:00:: 05418585 1 2 -vasarely%1:18:00:: 11361142 1 0 -vasari%1:18:00:: 11361288 1 0 -vasco_da_gamma%1:18:00:: 10920582 1 0 -vasco_nunez_de_balboa%1:18:00:: 10831860 1 0 -vascular%3:01:00:: 02873811 1 3 -vascular_bundle%1:20:00:: 13097949 1 0 -vascular_hemophilia%1:26:00:: 14171176 1 0 -vascular_plant%1:20:00:: 13083586 1 0 -vascular_ray%1:20:00:: 13098515 1 0 -vascular_spider%1:26:00:: 14248069 1 0 -vascular_strand%1:20:00:: 13097949 1 0 -vascular_structure%1:08:00:: 05397178 1 0 -vascular_system%1:08:00:: 05511286 1 0 -vascular_tissue%1:20:00:: 13096863 1 0 -vascularisation%1:22:00:: 13572860 1 0 -vascularise%2:30:00:: 00122097 2 0 -vascularise%2:30:01:: 00581671 1 0 -vascularity%1:07:00:: 05214469 1 0 -vascularization%1:22:00:: 13572860 1 0 -vascularize%2:30:00:: 00122097 2 0 -vascularize%2:30:01:: 00581671 1 0 -vasculitis%1:26:00:: 14358622 1 0 -vase%1:06:00:: 04522168 1 12 -vase-fine%1:20:00:: 11730933 1 0 -vase-shaped%5:00:00:formed:00 02151234 1 0 -vase_vine%1:20:00:: 11730933 1 0 -vasectomise%2:29:00:: 00061401 1 0 -vasectomize%2:29:00:: 00061401 1 0 -vasectomy%1:04:00:: 00716179 1 0 -vaseline%1:06:00:: 04522309 1 0 -vasiform%5:00:00:hollow:00 02264807 1 0 -vaslav_nijinsky%1:18:00:: 11207585 1 0 -vasoconstriction%1:04:00:: 01150096 1 0 -vasoconstrictive%1:06:00:: 04522421 1 0 -vasoconstrictor%1:06:00:: 04522421 1 0 -vasodilation%1:04:00:: 00366207 1 0 -vasodilative%1:06:00:: 04522904 1 0 -vasodilator%1:06:00:: 04522904 1 0 -vasomax%1:06:00:: 03922561 1 0 -vasomotor%3:01:00:: 03143502 1 0 -vasopressin%1:08:00:: 05414147 1 0 -vasopressor%1:06:00:: 04523201 1 0 -vasosection%1:04:00:: 00716397 1 0 -vasotec%1:06:00:: 03285106 1 0 -vasotomy%1:04:00:: 00716397 1 0 -vasovasostomy%1:04:00:: 00716520 1 0 -vasovesiculitis%1:26:00:: 14358709 1 0 -vassal%1:18:00:: 10746581 1 0 -vassalage%1:26:00:: 13998263 1 0 -vast%5:00:00:large:00 01387319 1 30 -vastly%4:02:00:: 00005779 1 6 -vastness%1:07:00:: 05104548 1 0 -vat%1:06:00:: 04493381 2 0 -vat%1:21:00:: 13316722 1 0 -vat_color%1:27:00:: 15001887 1 0 -vat_dye%1:27:00:: 15001887 1 0 -vatic%5:00:00:prophetic:00 01882754 1 0 -vatical%5:00:00:prophetic:00 01882754 1 0 -vatican%1:06:00:: 04523380 1 2 -vatican_city%1:15:00:: 09161452 1 0 -vatican_council%1:14:00:: 08317885 1 0 -vatican_i%1:14:00:: 08318032 1 0 -vatican_ii%1:14:00:: 08318216 1 0 -vatican_palace%1:06:00:: 04523380 1 0 -vaticinate%2:32:00:: 00926702 1 0 -vaticinate%2:32:01:: 00918312 2 0 -vaticination%1:09:00:: 05775407 1 0 -vaticinator%1:18:00:: 10483530 1 0 -vaudeville%1:10:00:: 07020423 1 4 -vaudeville_theater%1:06:00:: 03801533 1 0 -vaudeville_theatre%1:06:00:: 03801533 1 0 -vaudevillian%1:18:00:: 10746799 1 0 -vaudois%1:14:00:: 08150892 1 0 -vaughan%1:18:00:: 11361423 1 0 -vaughan_williams%1:18:00:: 11361585 1 0 -vault%1:04:00:: 00120515 4 0 -vault%1:06:00:: 04523525 3 0 -vault%1:06:01:: 04523690 1 1 -vault%1:06:02:: 04523831 2 0 -vault%2:38:00:: 01965806 2 0 -vault%2:38:01:: 01966168 1 0 -vault_of_heaven%1:15:00:: 08521267 1 0 -vaulted%5:00:00:rounded:00 02046017 1 0 -vaulter%1:18:00:: 10746931 1 0 -vaulting%1:04:00:: 00288190 2 0 -vaulting%1:06:00:: 04523993 1 0 -vaulting%5:00:00:bold:00 00251529 1 0 -vaulting_horse%1:06:00:: 04524142 1 0 -vaunt%1:10:00:: 07230227 1 0 -vaunt%2:32:00:: 00883226 1 0 -vaunter%1:18:00:: 09872066 1 0 -vauntingly%4:02:00:: 00225672 1 0 -vaux%1:18:00:: 11361757 1 0 -vayu%1:18:00:: 09529933 1 0 -vcr%1:06:00:: 04533802 1 0 -vd%1:26:00:: 14133159 1 0 -vdu%1:06:00:: 04539053 1 0 -veadar%1:28:00:: 15215693 1 0 -veal%1:13:00:: 07665308 1 0 -veal_cordon_bleu%1:13:00:: 07666176 1 0 -veal_parmesan%1:13:00:: 07665438 1 0 -veal_parmigiana%1:13:00:: 07665438 1 0 -veal_roast%1:13:00:: 07665844 1 0 -veal_scallopini%1:13:00:: 07876460 1 0 -veau%1:13:00:: 07665308 1 0 -veblen%1:18:00:: 11361913 2 0 -veblen%1:18:01:: 11362022 1 0 -vector%1:05:00:: 01372038 4 0 -vector%1:09:00:: 05864577 1 13 -vector%1:17:00:: 09469285 3 0 -vector%1:25:00:: 13913263 2 0 -vector-borne_transmission%1:17:00:: 09469744 1 0 -vector_algebra%1:09:00:: 06013298 1 0 -vector_decomposition%1:09:00:: 06013471 1 0 -vector_product%1:09:00:: 05864758 1 0 -vector_sum%1:09:00:: 05865034 1 0 -veda%1:10:00:: 06464419 1 0 -vedalia%1:05:00:: 02166826 1 0 -vedanga%1:10:00:: 06465780 1 0 -vedanta%1:09:00:: 06238574 1 0 -vedic%3:01:00:: 02823266 1 0 -vedic_literature%1:10:00:: 06464419 1 0 -vedism%1:09:00:: 06245286 1 0 -vedist%1:18:00:: 10747294 1 0 -veer%2:30:03:: 00560764 2 0 -veer%2:38:00:: 02033295 1 8 -veering%1:04:00:: 01263257 1 0 -veery%1:05:00:: 01559639 1 0 -veg%1:13:00:: 07707451 1 0 -vega%1:17:00:: 09469912 2 0 -vega%1:18:00:: 11362195 1 0 -vegan%1:18:00:: 10747424 1 0 -vege_out%2:29:00:: 00026734 1 0 -vegetable%1:13:00:: 07707451 1 5 -vegetable%1:20:00:: 12212361 2 0 -vegetable_garden%1:06:00:: 03620443 1 0 -vegetable_hummingbird%1:20:00:: 12569851 1 0 -vegetable_ivory%1:20:00:: 12594533 1 0 -vegetable_marrow%1:13:00:: 07716504 2 0 -vegetable_marrow%1:20:00:: 12159555 1 0 -vegetable_matter%1:27:00:: 15110956 1 0 -vegetable_oil%1:13:00:: 07673397 1 0 -vegetable_oyster%1:13:00:: 07735179 2 0 -vegetable_oyster%1:20:00:: 12027222 1 0 -vegetable_patch%1:06:00:: 03620443 1 1 -vegetable_sheep%1:20:01:: 12006306 1 0 -vegetable_sheep%1:20:02:: 11975658 2 0 -vegetable_silk%1:27:00:: 14925776 1 0 -vegetable_soup%1:13:00:: 07586894 1 0 -vegetable_sponge%1:20:00:: 12166793 1 0 -vegetable_tallow%1:27:00:: 15062641 1 0 -vegetable_wax%1:27:00:: 15095496 1 0 -vegetal%3:00:00:: 02598211 1 0 -vegetal%5:00:00:asexual:00 02136665 2 0 -vegetarian%1:18:00:: 10747119 1 0 -vegetarianism%1:13:00:: 07564971 1 0 -vegetate%2:29:00:: 00026734 7 0 -vegetate%2:29:01:: 00055709 6 0 -vegetate%2:30:00:: 00232225 4 0 -vegetate%2:30:01:: 00232388 3 0 -vegetate%2:30:02:: 00232542 2 0 -vegetate%2:30:04:: 00231288 5 0 -vegetate%2:42:00:: 02615580 1 0 -vegetation%1:04:00:: 01065057 4 0 -vegetation%1:08:00:: 05603854 3 0 -vegetation%1:14:00:: 08436759 1 2 -vegetation%1:22:00:: 13573057 2 0 -vegetational%3:00:00:: 02598211 1 0 -vegetative%3:00:00:: 02598211 2 0 -vegetative%3:01:01:: 02833331 1 0 -vegetative%5:00:00:asexual:00 02136665 4 0 -vegetative%5:00:00:involuntary:02 02523092 3 0 -vegetative_cell%1:08:00:: 05430628 1 0 -vegetive%3:01:01:: 02833331 1 0 -veggie%1:13:00:: 07707451 1 0 -vehemence%1:07:00:: 05037813 2 0 -vehemence%1:07:01:: 05037394 1 1 -vehement%5:00:00:intense:00 01511854 1 2 -vehement%5:00:00:strong:00 02323823 2 0 -vehemently%4:02:00:: 00492414 1 0 -vehicle%1:06:00:: 04524313 1 9 -vehicle%1:10:00:: 06255081 2 6 -vehicle%1:17:00:: 09283193 4 0 -vehicle%1:27:00:: 15112086 3 0 -vehicle-borne_transmission%1:17:00:: 09470027 1 0 -vehicle_traffic%1:14:00:: 08425888 1 0 -vehicular%3:01:00:: 03128327 1 0 -vehicular_traffic%1:14:00:: 08425888 1 0 -veil%1:06:00:: 03502331 1 2 -veil%1:06:01:: 03548930 4 0 -veil%1:08:00:: 05310596 3 0 -veil%1:20:00:: 13094556 2 0 -veil%2:30:00:: 00313987 2 0 -veil%2:35:00:: 01483247 1 5 -veiled%3:00:00:: 02508104 1 3 -veiled%5:00:00:indistinct:00 00782738 2 0 -veiled_accusation%1:10:00:: 07238308 1 0 -veiling%1:06:00:: 03429914 1 0 -vein%1:05:00:: 02468735 5 0 -vein%1:08:00:: 05418717 1 8 -vein%1:10:00:: 07089622 2 5 -vein%1:17:00:: 09470222 4 0 -vein%1:20:00:: 13098186 3 0 -vein%2:36:00:: 01696350 1 1 -vein_of_penis%1:08:00:: 05421997 1 0 -veinal%3:01:00:: 02951425 1 0 -veined%5:00:00:patterned:00 01791138 1 1 -veinlike%5:00:00:patterned:00 01791138 1 0 -vela%1:17:00:: 09470343 1 0 -velar%1:10:00:: 07120025 1 0 -velar%3:01:00:: 02896692 1 0 -velar%5:00:00:hard:03 01156750 2 0 -velar_consonant%1:10:00:: 07120025 1 0 -velazquez%1:18:00:: 11362329 1 0 -velban%1:06:00:: 04535634 1 0 -velcro%1:06:00:: 04524594 1 0 -velcro%2:35:00:: 01343773 1 0 -veld%1:15:00:: 08677424 1 0 -veldt%1:15:00:: 08677424 1 0 -velleity%1:09:00:: 05652843 2 0 -velleity%1:12:00:: 07486527 1 0 -vellicate%2:30:00:: 00504019 2 0 -vellicate%2:39:00:: 02120140 1 0 -vellication%1:26:00:: 14361664 1 0 -vellum%1:27:00:: 14759147 2 0 -vellum%1:27:01:: 15087384 1 1 -velocipede%1:06:01:: 04482393 2 0 -velocipede%1:06:02:: 04524716 1 0 -velociraptor%1:05:00:: 01717467 1 0 -velocity%1:28:00:: 15282696 1 21 -velodrome%1:06:00:: 04524833 1 0 -velour%1:06:00:: 04524941 1 1 -velours%1:06:00:: 04524941 1 1 -veloute%1:13:00:: 07840027 1 0 -velum%1:08:00:: 05309392 2 0 -velum%1:20:00:: 13094556 1 0 -velveeta%1:13:00:: 07855317 1 0 -velvet%1:06:00:: 04525038 1 2 -velvet%5:00:00:smooth:00 02238310 1 0 -velvet%5:00:00:soft:01 01155206 2 0 -velvet-leaf%1:20:01:: 12173069 2 0 -velvet-leaf%1:20:02:: 12182615 1 0 -velvet-textured%5:00:00:smooth:00 02238310 1 0 -velvet_ant%1:05:00:: 02214773 1 0 -velvet_bean%1:20:00:: 12550408 1 0 -velvet_bent%1:20:00:: 12107002 1 0 -velvet_bent_grass%1:20:00:: 12107002 1 0 -velvet_flower%1:20:00:: 11823572 1 0 -velvet_grass%1:20:00:: 12122725 1 0 -velvet_osier%1:20:00:: 12731029 1 0 -velvet_plant%1:20:01:: 11975254 2 0 -velvet_plant%1:20:02:: 12888906 1 0 -velvet_sumac%1:20:00:: 12764202 1 0 -velvet_worm%1:05:00:: 01999767 1 0 -velveteen%1:06:00:: 04525191 1 0 -velvetleaf%1:20:01:: 12173069 2 0 -velvetleaf%1:20:02:: 12182615 1 0 -velvetweed%1:20:00:: 12173069 1 0 -velvety%5:00:00:smooth:00 02238310 1 3 -velvety%5:00:00:soft:01 01155206 2 0 -velvety-furred%5:00:00:hairy:00 00216308 1 0 -velvety-haired%5:00:00:hairy:00 00216308 1 0 -velvety-plumaged%5:00:00:feathered:00 00999242 1 0 -velvety-skinned%5:00:00:skinned:00 02597696 1 0 -vena%1:08:00:: 05418717 1 0 -vena_anastomotica%1:08:00:: 05357366 1 0 -vena_angularis%1:08:00:: 05357500 1 0 -vena_appendicularis%1:08:00:: 05357867 1 0 -vena_arcuata_renis%1:08:00:: 05358036 1 0 -vena_auricularis%1:08:00:: 05358226 1 0 -vena_axillaris%1:08:00:: 05358345 1 0 -vena_azygos%1:08:00:: 05358507 1 0 -vena_basalis%1:08:00:: 05358764 1 0 -vena_basilica%1:08:00:: 05358944 1 0 -vena_basivertebralis%1:08:00:: 05359124 1 0 -vena_brachialis%1:08:00:: 05359347 1 0 -vena_brachiocephalica%1:08:00:: 05359516 1 0 -vena_bronchialis%1:08:00:: 05359695 1 0 -vena_bulbi_penis%1:08:00:: 05421723 1 0 -vena_bulbi_vestibuli%1:08:00:: 05422574 1 0 -vena_canaliculi_cochleae%1:08:00:: 05421900 1 0 -vena_cava%1:08:00:: 05422668 1 0 -vena_centrales_retinae%1:08:00:: 05360678 1 0 -vena_centralis_glandulae_suprarenalis%1:08:00:: 05360880 1 0 -vena_cephalica%1:08:00:: 05361123 1 0 -vena_cephalica_accessoria%1:08:00:: 05356442 1 0 -vena_cerebellum%1:08:00:: 05361278 1 0 -vena_cerebri%1:08:00:: 05361391 1 0 -vena_cerebri_anterior%1:08:00:: 05361640 1 0 -vena_cerebri_magna%1:08:00:: 05362016 1 0 -vena_cerebri_media%1:08:00:: 05362593 1 0 -vena_cerebrum_internus%1:08:00:: 05362405 1 0 -vena_cerebrum_superior%1:08:00:: 05363064 1 0 -vena_cervicalis_profunda%1:08:00:: 05363270 1 0 -vena_choroidea%1:08:00:: 05363428 1 0 -vena_circumflexa%1:08:00:: 05363676 1 0 -vena_circumflexa_ilium%1:08:00:: 05363868 1 0 -vena_circumflexus_femoris%1:08:00:: 05364000 1 0 -vena_clitoridis%1:08:00:: 05364184 1 0 -vena_colica%1:08:00:: 05364345 1 0 -vena_comitans%1:08:00:: 05357160 1 0 -vena_cutanea%1:08:00:: 05364905 1 0 -vena_cystica%1:08:00:: 05365059 1 0 -vena_digitalis%1:08:00:: 05365164 1 0 -vena_diploica%1:08:00:: 05365284 1 0 -vena_dorsalis_clitoridis_profunda%1:08:00:: 05423443 1 0 -vena_emissaria%1:08:00:: 05365838 1 0 -vena_epigastrica_inferior%1:08:00:: 05366206 1 0 -vena_epigastrica_superficialis%1:08:00:: 05366341 1 0 -vena_ethmoidalis%1:08:00:: 05367003 1 0 -vena_facialis%1:08:00:: 05367341 1 0 -vena_facialis_anterior%1:08:00:: 05361805 1 0 -vena_femoralis%1:08:00:: 05367508 1 0 -vena_gastrica%1:08:00:: 05367735 1 0 -vena_gastrica-dextra%1:08:00:: 05378850 1 0 -vena_gastrica_sinistra%1:08:00:: 05372725 1 0 -vena_gastroomentalis%1:08:00:: 05367912 1 0 -vena_genus%1:08:00:: 05368100 1 0 -vena_gluteus%1:08:00:: 05368739 1 0 -vena_hemiazygos_accessoria%1:08:00:: 05356657 1 0 -vena_hemizygos%1:08:00:: 05368874 1 0 -vena_hepatica%1:08:00:: 05369254 1 0 -vena_ileocolica%1:08:00:: 05369566 1 0 -vena_iliaca%1:08:00:: 05370125 1 0 -vena_iliolumbalis%1:08:00:: 05370293 1 0 -vena_intercapitalis%1:08:00:: 05370410 1 0 -vena_intercostalis%1:08:00:: 05370636 1 0 -vena_intervertebralis%1:08:00:: 05370781 1 0 -vena_jugularis%1:08:00:: 05370918 1 0 -vena_labialis%1:08:00:: 05371663 2 0 -vena_labialis%1:08:01:: 05372125 1 0 -vena_labialis_inferior%1:08:00:: 05371829 1 0 -vena_labialis_superior%1:08:00:: 05371977 1 0 -vena_lacrimalis%1:08:00:: 05372428 1 0 -vena_laryngea%1:08:00:: 05372593 1 0 -vena_lienalis%1:08:00:: 05380822 1 0 -vena_lingualis%1:08:00:: 05372924 1 0 -vena_lumbalis%1:08:00:: 05373145 1 0 -vena_maxillaris%1:08:00:: 05373300 1 0 -vena_mesenterica%1:08:00:: 05373616 1 0 -vena_metacarpus%1:08:00:: 05373790 1 0 -vena_metatarsus%1:08:00:: 05373924 1 0 -vena_musculophrenica%1:08:00:: 05374101 1 0 -vena_nasalis_externa%1:08:00:: 05367165 1 0 -vena_nasofrontalis%1:08:00:: 05374280 1 0 -vena_obliqua_atrii_sinistri%1:08:00:: 05374475 1 0 -vena_obturatoria%1:08:00:: 05374658 1 0 -vena_occipitalis%1:08:00:: 05374861 1 0 -vena_ophthalmica%1:08:00:: 05374980 1 0 -vena_ovarica%1:08:00:: 05375530 1 0 -vena_palatina%1:08:00:: 05375729 1 0 -vena_paraumbilicalis%1:08:00:: 05376050 1 0 -vena_pectoralis%1:08:00:: 05376391 1 0 -vena_perforantis%1:08:00:: 05376541 1 0 -vena_pericardiaca%1:08:00:: 05376721 1 0 -vena_peroneus%1:08:00:: 05376844 1 0 -vena_pharyngeus%1:08:00:: 05377098 1 0 -vena_phrenica%1:08:00:: 05377252 1 0 -vena_poplitea%1:08:00:: 05377371 1 0 -vena_portae%1:08:00:: 05377665 1 0 -vena_posterior_ventriculi_sinistri%1:08:00:: 05377833 1 0 -vena_profunda_penis%1:08:00:: 05422457 1 0 -vena_pulmanalis_inferior%1:08:00:: 05378458 1 0 -vena_pulmonalis%1:08:00:: 05378234 1 0 -vena_pulmonalis_superior%1:08:00:: 05378654 1 0 -vena_pylorica%1:08:00:: 05378022 1 0 -vena_radialis%1:08:00:: 05379039 1 0 -vena_rectalis%1:08:00:: 05369092 1 0 -vena_renalis%1:08:00:: 05379247 1 0 -vena_retromandibularis%1:08:00:: 05379438 1 0 -vena_sacralis%1:08:00:: 05379635 1 0 -vena_saphena%1:08:00:: 05379734 1 0 -vena_scapularis_dorsalis%1:08:00:: 05365420 1 0 -vena_scrotalis%1:08:00:: 05380404 1 0 -vena_sigmoideus%1:08:00:: 05380532 1 0 -vena_spinalis%1:08:00:: 05380697 1 0 -vena_sternocleidomastoidea%1:08:00:: 05381148 1 0 -vena_stylomastoidea%1:08:00:: 05381325 1 0 -vena_subclavia%1:08:00:: 05381491 1 0 -vena_sublingualis%1:08:00:: 05381666 1 0 -vena_supraorbitalis%1:08:00:: 05381779 1 0 -vena_supratrochlearis%1:08:00:: 05381956 1 0 -vena_temporalis%1:08:00:: 05382135 1 0 -vena_testicularis%1:08:00:: 05382729 1 0 -vena_thoracica%1:08:00:: 05383467 1 0 -vena_thoracoepigastrica%1:08:00:: 05383004 1 0 -vena_thyroidea%1:08:00:: 05383598 1 0 -vena_tibialis%1:08:00:: 05384300 1 0 -vena_trachealis%1:08:00:: 05384446 1 0 -vena_ulnaris%1:08:00:: 05384691 1 0 -vena_umbilicalis%1:08:00:: 05384817 1 0 -vena_vertebralis%1:08:00:: 05425207 1 0 -vena_vertebralis_accessoria%1:08:00:: 05356889 1 0 -vena_vertebralis_anterior%1:08:00:: 05357682 1 0 -vena_vesicalis%1:08:00:: 05425436 1 0 -vena_vestibularis%1:08:00:: 05425581 1 0 -vena_vorticosum%1:08:00:: 05425703 1 0 -venae_centrales_hepatis%1:08:00:: 05360470 1 0 -venae_cerebrum_inferior%1:08:00:: 05362197 1 0 -venae_ciliares%1:08:00:: 05363559 1 0 -venae_conjunctivales%1:08:00:: 05364612 1 0 -venae_dorsales_clitoridis_superficiales%1:08:00:: 05423595 1 0 -venae_dorsales_penis_profunda%1:08:00:: 05422317 1 0 -venae_dorsales_penis_superficiales%1:08:00:: 05422135 1 0 -venae_epigastricae_superiores%1:08:00:: 05366485 1 0 -venae_episclerales%1:08:00:: 05366640 1 0 -venae_esophageae%1:08:00:: 05366812 1 0 -venae_interlobulares_hepatis%1:08:00:: 05424074 1 0 -venae_interlobulares_renis%1:08:00:: 05423882 1 0 -venae_labiales_anteriores%1:08:00:: 05424351 1 0 -venae_labiales_posteriores%1:08:00:: 05424504 1 0 -venae_meningeae%1:08:00:: 05373495 1 0 -venae_palpebrales%1:08:00:: 05423779 1 0 -venae_pancreatica%1:08:00:: 05375881 1 0 -venae_profundae_clitoridis%1:08:00:: 05423319 1 0 -venae_pudendum%1:08:00:: 05378137 1 0 -venae_renis%1:08:00:: 05424199 1 0 -venae_sclerales%1:08:00:: 05380252 1 0 -venal%5:00:00:corrupt:00 00621207 1 0 -venality%1:07:00:: 04854259 1 0 -venally%4:02:00:: 00314597 1 0 -venation%1:08:00:: 05421414 2 0 -venation%1:14:00:: 08373244 1 0 -vend%2:40:00:: 02302817 1 0 -vendable%5:00:00:salable:00 02062133 1 0 -vendee%1:18:00:: 09885145 1 0 -vendemiaire%1:28:00:: 15175987 1 0 -vender%1:18:00:: 10577284 1 0 -vendetta%1:04:00:: 01236947 1 0 -vendible%5:00:00:salable:00 02062133 1 0 -vending%1:04:00:: 01116968 1 1 -vending_machine%1:06:00:: 04525305 1 4 -vendition%1:04:00:: 01116968 1 0 -vendor%1:18:00:: 10577284 1 2 -vendue%1:04:00:: 00092366 1 0 -veneer%1:06:00:: 03315990 2 0 -veneer%1:06:01:: 04525417 1 0 -veneer%2:35:00:: 01269224 1 0 -veneering%1:04:00:: 00927161 2 0 -veneering%1:06:00:: 04525417 1 0 -venerability%1:07:00:: 04869405 1 0 -venerable%5:00:00:honorable:00 01226660 2 1 -venerable%5:00:00:old:02 01646794 1 1 -venerableness%1:07:00:: 04869405 1 0 -venerate%2:37:00:: 01778568 1 1 -venerating%5:00:00:reverent:00 02012333 1 0 -veneration%1:04:00:: 01044448 2 0 -veneration%1:12:00:: 07521039 1 0 -venerator%1:18:00:: 10747548 1 0 -venereal%3:01:00:: 02881567 1 0 -venereal_disease%1:26:00:: 14133159 1 0 -venereal_infection%1:26:00:: 14133159 1 0 -venereal_wart%1:07:00:: 04696797 1 0 -veneridae%1:05:00:: 01957591 1 0 -venesect%2:29:00:: 00084107 1 0 -venesection%1:04:00:: 00698609 1 0 -venetia%1:15:00:: 08812952 1 0 -venetian%1:18:00:: 09717454 1 0 -venetian%3:01:00:: 02970820 1 0 -venetian_blind%1:06:00:: 04525584 1 2 -venetian_glass%1:06:00:: 04525729 1 0 -venetian_red%1:07:00:: 04973386 1 0 -venetian_sumac%1:20:00:: 12760539 1 0 -veneto%1:15:00:: 08812952 1 0 -venezia%1:15:00:: 08813264 1 0 -venezia-euganea%1:15:00:: 08812952 1 0 -venezuela%1:15:00:: 09161803 1 1 -venezuelan%1:18:00:: 09747062 1 0 -venezuelan%3:01:00:: 02966656 1 0 -venezuelan_monetary_unit%1:23:00:: 13666675 1 0 -vengeance%1:04:00:: 01235463 1 3 -vengeful%5:00:00:unforgiving:00 01041634 1 0 -vengefully%4:02:00:: 00443248 1 0 -vengefulness%1:12:00:: 07550891 1 0 -venial%5:00:01:pardonable:00 01721197 2 0 -venial%5:00:02:pardonable:00 01721401 1 0 -venial_sin%1:04:00:: 00758033 1 0 -venice%1:15:00:: 08813264 1 1 -venipuncture%1:04:00:: 00944965 1 0 -venire%1:14:00:: 08414608 1 0 -venire_facias%1:10:00:: 06554531 1 0 -venison%1:13:00:: 07653311 1 0 -venn%1:18:00:: 11362452 1 0 -venn's_diagram%1:06:00:: 04525821 1 0 -venn_diagram%1:06:00:: 04525821 1 0 -venogram%1:06:00:: 04526112 1 0 -venography%1:04:00:: 00906046 1 0 -venom%1:12:00:: 07550666 2 0 -venom%1:27:00:: 15036916 1 0 -venomed%5:00:00:malicious:00 00226339 1 0 -venomous%5:00:00:malicious:00 00226105 2 0 -venomous%5:00:00:toxic:00 02449952 1 0 -venomous_lizard%1:05:00:: 01691951 1 0 -venomously%4:02:00:: 00426761 1 0 -venose%5:00:00:patterned:00 01791138 1 0 -venous%3:01:00:: 02642034 1 0 -venous_blood%1:08:00:: 05402788 1 0 -venous_blood_system%1:08:00:: 05421414 1 0 -venous_blood_vessel%1:08:00:: 05418717 1 0 -venous_pressure%1:19:00:: 11431058 1 0 -venous_sinus%1:08:00:: 05252016 1 0 -venous_thrombosis%1:26:00:: 14353008 1 0 -vent%1:04:00:: 01264447 5 0 -vent%1:05:00:: 01323901 2 1 -vent%1:06:00:: 04526241 1 2 -vent%1:06:01:: 04526416 4 0 -vent%1:17:00:: 09470550 3 0 -vent%2:30:00:: 00488770 2 0 -vent%2:32:00:: 00944548 1 3 -vent-hole%1:06:00:: 04526241 1 0 -ventail%1:06:00:: 02941845 1 0 -vented%5:00:00:ventilated:00 02509170 1 0 -venter%1:08:00:: 05556943 2 0 -venter%1:08:01:: 05424679 4 0 -venter%1:08:02:: 05424796 3 0 -venter%1:18:00:: 10747672 1 0 -venthole%1:06:00:: 04526241 1 0 -ventilate%2:30:00:: 00488770 1 1 -ventilate%2:30:01:: 00581891 5 0 -ventilate%2:32:00:: 00944548 4 0 -ventilate%2:38:00:: 02042672 3 0 -ventilate%2:39:00:: 02112345 2 0 -ventilated%3:00:00:: 02508766 1 0 -ventilating_system%1:06:00:: 04526520 1 1 -ventilation%1:04:00:: 00266645 1 3 -ventilation%1:04:01:: 00831191 4 0 -ventilation%1:06:00:: 04526520 2 1 -ventilation%1:10:00:: 07144190 3 0 -ventilation_shaft%1:06:00:: 04526800 1 0 -ventilation_system%1:06:00:: 04526520 1 0 -ventilator%1:06:00:: 04526964 1 0 -ventilator%1:06:01:: 02895606 2 0 -ventilatory%3:01:00:: 02823423 1 0 -venting%1:04:00:: 01253277 1 0 -ventner%1:18:00:: 11362573 1 0 -ventolin%1:06:00:: 02695321 1 0 -ventose%1:28:00:: 15176785 1 0 -ventral%3:00:00:: 00132385 1 0 -ventral%3:00:04:: 00002527 2 0 -ventral_fin%1:05:00:: 02466731 1 0 -ventral_horn%1:08:00:: 05424963 1 0 -ventral_placentation%1:20:00:: 11682003 1 0 -ventral_root%1:08:00:: 05424963 1 0 -ventrally%4:02:00:: 00083303 1 0 -ventricle%1:08:01:: 05391763 2 0 -ventricle%1:08:02:: 05502556 1 0 -ventricose%5:00:00:protrusive:00 01354750 1 0 -ventricous%5:00:00:protrusive:00 01354750 1 0 -ventricular%3:01:01:: 02823559 1 0 -ventricular_aneurysm%1:26:00:: 14107849 1 0 -ventricular_fibrillation%1:26:00:: 14363139 1 0 -ventricular_fold%1:08:00:: 05530657 1 0 -ventricular_septal_defect%1:26:00:: 14469466 1 0 -ventriculus%1:05:00:: 01974229 1 0 -ventriloquism%1:09:00:: 05636666 1 0 -ventriloquist%1:18:00:: 10747815 1 0 -ventriloquist's_dummy%1:06:00:: 04527182 1 0 -ventriloquy%1:09:00:: 05636666 1 0 -venture%1:04:00:: 00797878 1 3 -venture%1:04:01:: 01117164 3 1 -venture%1:21:00:: 13342692 2 2 -venture%2:32:00:: 00916909 2 4 -venture%2:41:00:: 02545272 3 0 -venture%2:41:01:: 02373336 1 5 -venture_capital%1:21:00:: 13354260 1 0 -venture_capitalism%1:14:00:: 08364367 1 0 -venture_capitalist%1:18:00:: 10747965 1 0 -venturer%1:18:00:: 09606009 2 0 -venturer%1:18:01:: 10748142 1 0 -venturesome%5:00:00:adventurous:00 00066146 1 0 -venturesomeness%1:07:00:: 04859177 1 0 -venturi%1:06:01:: 04527310 2 0 -venturi%1:18:00:: 11362885 1 0 -venturi_tube%1:06:00:: 04527475 1 0 -venturous%5:00:00:adventurous:00 00066146 1 0 -venue%1:15:00:: 08677525 2 0 -venue%1:15:01:: 08677628 1 0 -venula%1:08:00:: 05426087 1 0 -venule%1:08:00:: 05426087 1 0 -venus%1:05:00:: 01957739 3 0 -venus%1:17:00:: 09470762 1 5 -venus%1:18:00:: 09555127 2 1 -venus'-hair_fern%1:20:00:: 13207094 1 0 -venus'_slipper%1:20:00:: 12075830 1 0 -venus's_curse%1:26:00:: 14133159 1 0 -venus's_flower_basket%1:05:00:: 01908042 1 0 -venus's_flytrap%1:20:00:: 12782915 1 0 -venus's_flytraps%1:20:00:: 12782915 1 0 -venus's_girdle%1:05:00:: 01921059 1 0 -venus's_shoe%1:20:00:: 12075830 1 0 -venus's_slipper%1:20:00:: 12075830 1 0 -venus_maidenhair%1:20:00:: 13207094 1 0 -venus_mercenaria%1:05:00:: 01958038 1 0 -venushair%1:20:00:: 13207094 1 0 -veps%1:10:00:: 06958417 2 0 -veps%1:18:00:: 09707992 1 0 -vepse%1:10:00:: 06958417 2 0 -vepse%1:18:00:: 09707992 1 0 -vepsian%1:10:00:: 06958417 2 0 -vepsian%1:18:00:: 09707992 1 0 -veracious%5:00:00:accurate:00 00023278 2 0 -veracious%5:00:00:truthful:00 01225772 1 0 -veracity%1:07:00:: 04872414 1 1 -veracruz%1:15:00:: 08746475 1 0 -veranda%1:06:00:: 04527648 1 4 -verandah%1:06:00:: 04527648 1 1 -verapamil%1:06:00:: 04527808 1 0 -veratrum%1:20:00:: 12464278 1 0 -veratrum_viride%1:20:00:: 12464649 1 0 -verb%1:10:00:: 06320569 2 5 -verb%1:10:01:: 06318062 1 6 -verb_phrase%1:10:00:: 06316626 1 0 -verbal%3:00:00:: 02230581 4 0 -verbal%3:01:00:: 02823724 3 0 -verbal%3:01:01:: 02823920 2 3 -verbal%5:00:00:communicative:00 00500310 1 5 -verbal%5:00:00:prolix:00 00549675 6 0 -verbal%5:00:00:spoken:00 02284324 5 0 -verbal_creation%1:04:00:: 00929586 1 0 -verbal_description%1:10:00:: 06724763 1 0 -verbal_expression%1:10:00:: 07139873 1 0 -verbal_intelligence%1:09:00:: 05619226 1 0 -verbal_noun%1:10:00:: 06320314 1 0 -verbalisation%1:10:00:: 07080868 2 0 -verbalisation%1:10:01:: 07081043 1 0 -verbalise%2:30:00:: 00116203 4 0 -verbalise%2:32:00:: 00941990 2 0 -verbalise%2:32:01:: 00943281 1 0 -verbalise%2:32:03:: 00940384 3 0 -verbalised%5:00:00:spoken:00 02284023 1 0 -verbaliser%1:18:00:: 10630188 1 0 -verbalism%1:10:00:: 07139873 1 0 -verbalism%1:10:01:: 07090019 2 0 -verbalization%1:10:00:: 07080868 2 0 -verbalization%1:10:01:: 07081043 1 0 -verbalize%2:30:00:: 00116203 4 0 -verbalize%2:32:00:: 00941990 2 0 -verbalize%2:32:01:: 00943281 1 0 -verbalize%2:32:03:: 00940384 3 0 -verbalized%5:00:00:spoken:00 02284023 1 0 -verbalizer%1:18:00:: 10630188 1 0 -verbally%4:02:00:: 00128554 1 0 -verbally%4:02:01:: 00128456 2 0 -verbascum%1:20:00:: 12888733 1 0 -verbascum_blattaria%1:20:00:: 12889219 1 0 -verbascum_lychnitis%1:20:00:: 12889412 1 0 -verbascum_phoeniceum%1:20:00:: 12889579 1 0 -verbascum_thapsus%1:20:00:: 12889713 1 0 -verbatim%4:02:00:: 00257864 1 0 -verbatim%5:00:00:exact:00 00914808 1 0 -verbena%1:20:00:: 12914923 1 3 -verbena_family%1:20:00:: 12914433 1 0 -verbenaceae%1:20:00:: 12914433 1 0 -verbesina%1:20:00:: 12030265 1 0 -verbesina_alternifolia%1:20:00:: 12030908 1 0 -verbesina_encelioides%1:20:00:: 12031139 1 0 -verbesina_helianthoides%1:20:00:: 12031388 1 0 -verbesina_virginica%1:20:00:: 12031547 1 0 -verbiage%1:10:00:: 07081739 2 0 -verbiage%1:10:02:: 07090019 1 0 -verbify%2:30:00:: 00554729 1 0 -verbolatry%1:04:00:: 01044983 1 0 -verbose%5:00:00:prolix:00 00549236 1 0 -verbosely%4:02:00:: 00492543 1 0 -verboseness%1:10:00:: 07089751 1 0 -verbosity%1:10:00:: 07089751 1 0 -verboten%5:00:00:impermissible:00 01761375 1 0 -verd_antique%1:27:00:: 14948055 1 0 -verdancy%1:07:00:: 05116590 1 0 -verdandi%1:18:00:: 09582726 1 0 -verdant%5:00:00:abundant:00 00016647 1 0 -verde_antique%1:27:00:: 14948055 1 0 -verdi%1:18:00:: 11363020 1 0 -verdicchio%1:13:00:: 07899660 2 0 -verdicchio%1:20:00:: 13147918 1 0 -verdict%1:04:00:: 01192150 1 1 -verdigris%1:06:00:: 04528079 2 0 -verdigris%1:27:00:: 15096524 1 0 -verdigris%2:30:00:: 00285314 1 0 -verdin%1:05:00:: 01593553 1 0 -verdolagas%1:20:00:: 11858077 1 0 -verdun%1:04:00:: 01298573 1 0 -verdure%1:07:00:: 05116590 2 0 -verdure%1:20:00:: 13153633 1 0 -verey_pistol%1:06:00:: 04530456 1 0 -verge%1:06:00:: 04528256 4 0 -verge%1:07:00:: 05125193 2 1 -verge%1:10:00:: 07267573 3 0 -verge%1:25:00:: 13903738 1 1 -verge%2:42:01:: 02703790 1 0 -verger%1:18:00:: 10748309 1 0 -vergil%1:18:00:: 11367436 1 0 -veridical%5:00:00:realistic:00 01941604 1 1 -verifiable%5:00:00:empirical:00 00859453 2 0 -verifiable%5:00:00:objective:00 01615785 1 0 -verification%1:09:00:: 05825245 1 1 -verification%1:10:00:: 06736769 2 0 -verificatory%5:00:00:supportive:00 02355521 1 0 -verified%5:00:00:proved:00 01894324 1 0 -verifier%1:18:00:: 10760763 1 0 -verify%2:31:01:: 00664483 1 7 -verify%2:32:03:: 01011031 4 0 -verify%2:32:04:: 01012395 3 0 -verify%2:41:00:: 02520997 2 2 -verifying%5:00:00:supportive:00 02355521 1 0 -verily%4:02:00:: 00492745 1 0 -verisimilar%5:00:00:probable:00 01413763 1 0 -verisimilitude%1:07:00:: 04679300 1 1 -veritable%5:00:00:genuine:00 01115635 2 1 -veritable%5:00:00:typical:00 02469577 1 1 -verity%1:09:00:: 05819773 2 0 -verity%1:26:00:: 13956488 1 0 -verlaine%1:18:00:: 11363164 1 0 -vermeer%1:18:00:: 11363269 1 0 -vermicelli%1:13:00:: 07700868 1 0 -vermicide%1:06:00:: 04528354 1 0 -vermicular%5:00:00:fancy:00 01796977 1 0 -vermiculate%2:36:00:: 01677387 1 0 -vermiculate%5:00:00:fancy:00 01796977 2 0 -vermiculate%5:00:00:worn:00 02584203 1 0 -vermiculated%5:00:00:fancy:00 01796977 1 0 -vermiculation%1:06:00:: 04528490 2 0 -vermiculation%1:22:00:: 13534773 1 0 -vermiculite%1:27:00:: 15087486 1 0 -vermiform%5:00:00:formed:00 02151320 1 0 -vermiform_appendix%1:08:00:: 05537576 1 0 -vermiform_process%1:08:00:: 05537576 1 0 -vermifuge%1:06:00:: 04528630 1 0 -vermilion%1:07:00:: 04964977 1 0 -vermilion%2:30:00:: 00535148 1 0 -vermilion%5:00:00:chromatic:00 00385188 1 1 -vermillion%5:00:00:chromatic:00 00385188 1 0 -vermillion_flycatcher%1:05:00:: 01550172 1 0 -vermillion_rockfish%1:05:00:: 02644501 1 0 -vermin%1:05:00:: 01315980 2 0 -vermin%1:18:00:: 10748506 1 0 -verminous%5:00:00:offensive:01 01627315 1 0 -vermis%1:08:00:: 05486159 1 0 -vermis_cerebelli%1:08:00:: 05486159 1 0 -vermont%1:15:00:: 09147964 1 3 -vermonter%1:18:00:: 09746014 1 0 -vermouth%1:13:00:: 07899108 1 1 -vernacular%1:10:00:: 07157123 2 0 -vernacular%1:10:01:: 07157273 1 0 -vernacular%5:00:00:informal:02 01046226 1 0 -vernacular_art%1:06:00:: 03861959 1 0 -vernal%3:00:00:: 01254432 2 0 -vernal%5:00:00:young:00 01649720 1 1 -vernal_equinox%1:15:00:: 08520958 2 0 -vernal_equinox%1:28:00:: 15223574 1 0 -vernal_iris%1:20:00:: 12414932 1 0 -vernal_witch_hazel%1:20:00:: 12315245 1 0 -vernation%1:14:00:: 08373380 1 0 -verne%1:18:00:: 11363412 1 0 -verner%1:18:00:: 11363552 1 0 -verner's_law%1:09:00:: 06181034 1 0 -vernier%1:06:00:: 04529108 2 0 -vernier%1:18:00:: 11363657 1 0 -vernier_caliper%1:06:00:: 04528968 1 0 -vernier_micrometer%1:06:00:: 04528968 1 0 -vernier_scale%1:06:00:: 04529108 1 0 -vernix%1:27:00:: 15112425 1 0 -vernix_caseosa%1:27:00:: 15112425 1 0 -vernonia%1:20:00:: 12031927 1 0 -verona%1:15:00:: 08813699 1 0 -veronal%1:06:00:: 02791894 1 0 -veronese%1:18:00:: 11363791 1 0 -veronica%1:20:00:: 12890265 1 0 -veronica_agrestis%1:20:00:: 12890490 1 0 -veronica_americana%1:20:00:: 12890685 1 0 -veronica_anagallis-aquatica%1:20:00:: 12891469 1 0 -veronica_arvensis%1:20:00:: 12890928 1 0 -veronica_beccabunga%1:20:00:: 12891093 1 0 -veronica_chamaedrys%1:20:00:: 12891305 1 0 -veronica_michauxii%1:20:00:: 12891469 1 0 -veronica_officinalis%1:20:00:: 12891643 1 0 -veronica_peregrina%1:20:00:: 12891824 1 0 -veronica_serpyllifolia%1:20:00:: 12892013 1 0 -veronicastrum_virginicum%1:20:00:: 12882321 1 0 -verpa%1:20:00:: 13032923 1 0 -verpa_bohemica%1:20:00:: 13033134 1 0 -verpa_conica%1:20:00:: 13033396 1 0 -verrazano%1:18:00:: 11363930 1 0 -verrazano-narrows_bridge%1:06:00:: 04529312 1 0 -verrazano_narrows%1:15:00:: 09123662 1 0 -verrazzano%1:18:00:: 11363930 1 0 -verruca%1:07:00:: 04696432 1 0 -verruca_acuminata%1:07:00:: 04696797 1 0 -verrucose%5:00:00:rough:00 02243255 1 0 -vers_libre%1:10:00:: 06380373 1 0 -versace%1:18:00:: 11364135 1 0 -versailles%1:06:00:: 04529486 2 0 -versailles%1:15:00:: 08938619 1 0 -versant%1:17:00:: 09361517 1 0 -versatile%5:00:00:mobile:00 01524722 4 0 -versatile%5:00:00:skilled:00 02228163 3 0 -versatile%5:00:00:variable:00 02505617 2 0 -versatile%5:00:00:varied:00 02507772 1 0 -versatility%1:09:00:: 05641834 1 1 -verse%1:10:00:: 06381869 2 2 -verse%1:10:01:: 06384708 3 1 -verse%1:10:02:: 07092592 1 2 -verse%2:32:00:: 00874714 2 0 -verse%2:36:00:: 01702514 1 0 -verse_form%1:10:00:: 06377442 1 0 -verse_line%1:10:00:: 06384708 1 0 -versed%1:06:00:: 03761845 1 0 -versed%5:00:00:experienced:00 00936038 1 0 -versicle%1:10:00:: 06385244 1 0 -versification%1:10:00:: 07093489 3 0 -versification%1:10:01:: 07093603 2 0 -versification%1:10:02:: 07093759 1 0 -versifier%1:18:00:: 10528493 1 0 -versify%2:36:00:: 01702514 1 0 -version%1:04:00:: 01267901 6 0 -version%1:09:00:: 05928513 5 0 -version%1:09:01:: 05840650 2 7 -version%1:10:00:: 06536389 4 0 -version%1:10:01:: 07173585 1 7 -version%1:10:02:: 06408779 3 1 -verso%1:06:00:: 04085181 2 0 -verso%1:10:00:: 06257569 1 0 -verst%1:23:00:: 13652799 1 0 -vertebra%1:08:00:: 05284333 1 0 -vertebral%3:01:00:: 03010664 1 2 -vertebral_arch%1:08:00:: 05587997 1 0 -vertebral_artery%1:08:00:: 05356291 1 0 -vertebral_canal%1:08:00:: 05249232 1 0 -vertebral_column%1:08:00:: 05588174 1 1 -vertebral_vein%1:08:00:: 05425207 1 0 -vertebrata%1:05:00:: 01471070 1 0 -vertebrate%1:05:00:: 01471682 1 1 -vertebrate%3:00:00:: 02510062 1 0 -vertebrate_foot%1:08:00:: 05563034 1 0 -vertebrate_paleontology%1:09:00:: 06192789 1 0 -vertex%1:09:00:: 05867283 1 13 -vertex%1:15:00:: 08677801 2 0 -verthandi%1:18:00:: 09582726 1 0 -vertical%1:06:00:: 04515129 2 0 -vertical%1:24:00:: 13828795 1 0 -vertical%3:00:00:: 01233347 1 9 -vertical%3:00:02:: 01235859 3 0 -vertical%3:01:00:: 02824040 2 0 -vertical%5:00:00:hierarchical:00 01204142 4 0 -vertical_angle%1:25:00:: 13918816 1 0 -vertical_bank%1:04:00:: 00169522 1 0 -vertical_circle%1:15:00:: 08677991 1 0 -vertical_combination%1:04:00:: 01238607 1 0 -vertical_file%1:06:00:: 04529681 1 0 -vertical_fin%1:06:00:: 04529962 1 0 -vertical_flute%1:06:00:: 03343354 1 0 -vertical_integration%1:04:00:: 01238607 1 0 -vertical_section%1:06:00:: 04529795 1 0 -vertical_stabiliser%1:06:00:: 04529962 1 0 -vertical_stabilizer%1:06:00:: 04529962 1 0 -vertical_surface%1:06:00:: 04530176 1 0 -vertical_tail%1:06:00:: 04530283 1 0 -vertical_union%1:14:00:: 08233426 1 0 -verticality%1:07:00:: 05079638 1 0 -vertically%4:02:00:: 00358516 1 0 -verticalness%1:07:00:: 05079638 1 0 -verticil%1:25:00:: 13918965 1 0 -verticillate%5:00:00:cyclic:03 00677721 1 0 -verticillated%5:00:00:cyclic:03 00677721 1 0 -verticilliosis%1:26:00:: 14283525 1 0 -verticillium%1:20:00:: 13078021 1 0 -vertiginous%5:00:00:ill:01 02544048 1 0 -vertigo%1:26:00:: 14372513 1 1 -vertu%1:07:00:: 04789613 2 0 -vertu%1:09:00:: 05750027 1 0 -vervain%1:20:00:: 12914923 1 0 -vervain_family%1:20:00:: 12914433 1 0 -vervain_sage%1:20:00:: 12866635 1 0 -verve%1:07:00:: 04633453 1 2 -vervet%1:05:00:: 02485536 1 0 -vervet_monkey%1:05:00:: 02485536 1 0 -verwoerd%1:18:00:: 11364243 1 0 -very%4:02:00:: 00031899 1 260 -very%4:02:01:: 00510749 2 11 -very%5:00:00:precise:00 01839317 1 19 -very%5:00:00:same:02 02068946 2 14 -very-light%1:10:00:: 07264615 1 0 -very_fast%4:02:00:: 00165906 1 0 -very_high_frequency%1:07:00:: 05057695 1 0 -very_important_person%1:18:00:: 10748620 1 0 -very_light%1:10:00:: 07264615 1 0 -very_loudly%4:02:00:: 00344073 1 1 -very_low_density_lipoprotein%1:27:00:: 15087632 1 0 -very_low_frequency%1:07:00:: 05057275 1 0 -very_much%4:02:01:: 00059171 1 14 -very_much_like%4:02:00:: 00188600 1 1 -very_pistol%1:06:00:: 04530456 1 0 -very_reverend%1:10:00:: 06342623 1 0 -very_softly%4:02:00:: 00343938 1 0 -very_well%4:02:00:: 00340523 1 3 -very_well%4:02:01:: 00053004 2 2 -vesalius%1:18:00:: 11364419 1 0 -vesey%1:18:00:: 11364570 1 0 -vesica%1:08:00:: 05512139 1 0 -vesical%3:01:00:: 03143662 1 0 -vesical_vein%1:08:00:: 05425436 1 0 -vesicant%1:27:00:: 15112239 1 0 -vesicant%5:00:00:noxious:00 01611683 1 0 -vesicaria%1:20:00:: 11899595 1 0 -vesicate%2:30:00:: 00379774 1 0 -vesication%1:22:00:: 13573181 1 0 -vesicatory%1:27:00:: 15112239 1 0 -vesicatory%5:00:00:noxious:00 01611683 1 0 -vesicle%1:08:00:: 05517578 1 0 -vesicopapule%1:26:00:: 14334011 1 0 -vesicoureteral_reflux%1:26:00:: 14335884 1 0 -vesicula_umbilicus%1:05:00:: 01465243 1 0 -vesicular%3:01:00:: 03010428 1 1 -vesicular_stomatitis%1:26:00:: 14356167 1 0 -vesiculate%2:30:00:: 00580865 2 0 -vesiculate%2:30:01:: 00581038 1 0 -vesiculation%1:22:00:: 13573181 1 0 -vesiculitis%1:26:00:: 14358860 1 0 -vesiculovirus%1:05:00:: 01333483 1 0 -vespa%1:05:00:: 02212811 1 0 -vespa_crabro%1:05:00:: 02213239 1 0 -vespasian%1:18:00:: 11364799 1 0 -vesper%1:04:00:: 01034571 2 0 -vesper%1:17:00:: 09276872 1 0 -vesper_mouse%1:05:00:: 02336826 1 0 -vesper_sparrow%1:05:00:: 01535140 1 0 -vespers%1:28:00:: 15230180 1 0 -vespertilian_bat%1:05:00:: 02145424 1 0 -vespertilio%1:05:00:: 02145767 1 0 -vespertilio_murinus%1:05:00:: 02145910 1 0 -vespertilionid%1:05:00:: 02145424 1 0 -vespertilionidae%1:05:00:: 02145084 1 0 -vespid%1:05:00:: 02212602 1 0 -vespid_wasp%1:05:00:: 02212602 1 0 -vespidae%1:05:00:: 02212323 1 0 -vespucci%1:18:00:: 11365100 1 0 -vespula%1:05:00:: 02213362 1 0 -vespula_maculata%1:05:00:: 02213663 1 0 -vespula_maculifrons%1:05:00:: 02213788 1 0 -vespula_vulgaris%1:05:00:: 02213543 1 0 -vessel%1:06:00:: 04530566 2 6 -vessel%1:06:01:: 04531098 3 0 -vessel%1:08:00:: 05397333 1 6 -vest%1:06:00:: 04223299 2 0 -vest%1:06:01:: 04531873 1 2 -vest%2:29:00:: 00052043 5 0 -vest%2:29:01:: 00052253 4 0 -vest%2:40:02:: 02362916 2 0 -vest%2:40:03:: 02222179 3 0 -vest%2:41:00:: 02386388 1 3 -vest_pocket%1:06:00:: 04532398 1 1 -vesta%1:17:00:: 09471224 2 0 -vesta%1:18:00:: 09564177 1 0 -vestal%1:18:00:: 10748804 1 0 -vestal%3:01:00:: 03128472 1 0 -vestal%5:00:00:chaste:00 00361125 2 0 -vestal_virgin%1:18:00:: 09575316 1 0 -vested%5:00:00:unconditional:00 00557108 1 0 -vested_interest%1:14:00:: 07969192 2 0 -vested_interest%1:21:00:: 13287787 1 0 -vestiary%3:01:00:: 03128583 1 0 -vestibular%3:01:00:: 03010553 1 0 -vestibular_apparatus%1:08:00:: 05323036 1 0 -vestibular_fold%1:08:00:: 05530657 1 0 -vestibular_gland%1:08:00:: 05555294 1 0 -vestibular_sense%1:09:00:: 05659365 1 0 -vestibular_system%1:08:00:: 05323036 1 0 -vestibular_vein%1:08:00:: 05425581 1 0 -vestibule%1:06:00:: 02715513 1 2 -vestibule%1:08:00:: 05304603 2 0 -vestibule_of_the_ear%1:08:00:: 05304795 1 0 -vestibule_of_the_vagina%1:08:00:: 05523108 1 0 -vestibulocochlear_nerve%1:08:00:: 05479503 1 0 -vestige%1:10:00:: 06646628 1 1 -vestigial%5:00:00:undeveloped:00 00742714 1 0 -vestiture%1:06:00:: 04532022 1 0 -vestment%1:06:00:: 04532106 1 0 -vestmental%3:01:00:: 03128699 1 0 -vestmented%5:00:00:clothed:00 00457482 1 0 -vestris%1:18:00:: 11365300 1 0 -vestry%1:06:00:: 04532504 2 0 -vestry%1:14:00:: 08478851 1 0 -vestryman%1:18:00:: 10748889 1 0 -vestrywoman%1:18:00:: 10749004 1 0 -vesture%1:06:00:: 03051540 2 0 -vesture%1:17:00:: 09471349 1 0 -vesture%2:29:00:: 00049197 1 0 -vesuvian%1:27:00:: 15087904 1 0 -vesuvianite%1:27:00:: 15087904 1 0 -vesuvius%1:15:00:: 09177883 1 0 -vet%1:18:00:: 10749715 1 1 -vet%1:18:01:: 10749353 2 0 -vet%2:29:00:: 00080456 4 0 -vet%2:29:01:: 00080589 3 0 -vet%2:39:00:: 02166117 2 0 -vet%2:41:00:: 02446504 1 0 -vetch%1:20:00:: 12575322 1 0 -vetchling%1:20:00:: 12539074 1 0 -vetchworm%1:05:00:: 02310334 1 0 -veteran%1:18:00:: 10749123 3 5 -veteran%1:18:01:: 10749353 2 5 -veteran%1:18:02:: 10749528 1 7 -veteran%5:00:00:experienced:00 00936523 1 11 -veteran_soldier%1:18:00:: 10749528 1 0 -veterans'_day%1:28:00:: 15200896 1 0 -veterans_day%1:28:00:: 15200896 1 0 -veterans_of_foreign_wars%1:14:00:: 08229134 1 0 -veterinarian%1:18:00:: 10749715 1 0 -veterinary%1:18:00:: 10749715 1 0 -veterinary%3:01:00:: 03128816 1 1 -veterinary_medicine%1:09:00:: 06065423 1 0 -veterinary_school%1:14:00:: 08287335 1 0 -veterinary_surgeon%1:18:00:: 10749715 1 0 -vetluga%1:17:00:: 09471481 1 0 -vetluga_river%1:17:00:: 09471481 1 0 -veto%1:04:00:: 00209546 1 2 -veto%1:07:00:: 05198928 2 0 -veto%2:32:00:: 00795863 2 1 -veto%2:41:00:: 02473431 1 1 -vex%2:31:02:: 00622384 5 0 -vex%2:32:04:: 00812882 4 0 -vex%2:35:00:: 01419473 3 0 -vex%2:37:00:: 01787955 1 1 -vex%2:37:02:: 01765908 2 0 -vexation%1:04:00:: 00418394 4 0 -vexation%1:09:00:: 05832264 3 0 -vexation%1:12:00:: 07518261 1 1 -vexation%1:26:00:: 14406573 2 0 -vexatious%5:00:00:disagreeable:00 00089550 1 0 -vexatious_litigation%1:04:00:: 01187230 1 0 -vexatiously%4:02:00:: 00516322 1 0 -vexed%5:00:00:difficult:00 00749040 2 0 -vexed%5:00:01:troubled:00 02455845 1 0 -vexer%1:18:00:: 10695555 1 0 -vexing%5:00:00:disagreeable:00 00089550 2 0 -vexing%5:00:00:displeasing:00 01809245 1 0 -vfw%1:14:00:: 08229134 1 0 -vhf%1:07:00:: 05057695 2 0 -vhf%1:26:00:: 14177423 1 0 -vi%1:15:00:: 08755003 2 0 -vi%1:23:00:: 13744722 1 0 -vi%5:00:00:cardinal:00 02186833 1 0 -via_media%1:04:00:: 01205564 1 0 -viability%1:07:00:: 05056234 1 1 -viability%1:07:01:: 05151576 2 0 -viable%5:00:00:alive:01 00094941 2 0 -viable%5:00:00:possible:00 01822563 1 1 -viaduct%1:06:00:: 04532670 1 0 -viagra%1:06:00:: 04218383 1 0 -vial%1:06:00:: 03923379 1 0 -viand%1:13:02:: 07593471 1 1 -viands%1:13:01:: 07572353 1 0 -viatical%3:01:00:: 02824194 1 0 -viatical_settlement%1:04:00:: 00228762 2 0 -viatical_settlement%1:21:02:: 13297595 1 0 -viatication%1:04:00:: 00082347 1 0 -viaticus%1:04:00:: 00082347 1 0 -viaticus_settlement%1:04:00:: 00228762 1 0 -vibe%1:07:00:: 04727883 1 0 -vibes%1:06:00:: 04532831 1 0 -vibist%1:18:00:: 10749928 1 0 -viborg%1:15:00:: 08762380 1 0 -vibraharp%1:06:00:: 04532831 1 0 -vibramycin%1:06:00:: 03230247 1 0 -vibrancy%1:07:00:: 04989657 1 1 -vibrant%5:00:00:colorful:00 00404110 3 0 -vibrant%5:00:00:reverberant:00 02011002 2 0 -vibrant%5:00:00:spirited:00 02280969 1 2 -vibraphone%1:06:00:: 04532831 1 0 -vibraphonist%1:18:00:: 10749928 1 0 -vibrate%2:37:02:: 01796346 5 0 -vibrate%2:38:00:: 01891249 1 1 -vibrate%2:38:01:: 01878063 2 1 -vibrate%2:39:00:: 02175958 4 0 -vibrate%2:42:03:: 02706046 3 0 -vibrating_reed%1:06:00:: 04066888 1 0 -vibration%1:04:00:: 00345926 1 1 -vibration%1:07:00:: 04727883 4 0 -vibration%1:11:00:: 07345166 3 0 -vibration%1:26:01:: 14004572 2 0 -vibrational%3:01:00:: 02824444 1 0 -vibrato%1:11:00:: 07399137 1 0 -vibrator%1:06:00:: 04533042 2 0 -vibrator%1:06:01:: 04533199 1 0 -vibratory%5:00:00:moving:02 01563923 1 0 -vibrio%1:05:00:: 01364162 1 0 -vibrio_comma%1:05:00:: 01364329 1 0 -vibrio_fetus%1:05:00:: 01364472 1 0 -vibrion%1:05:00:: 01364162 1 0 -vibrionic%3:01:00:: 03128963 1 1 -vibrissa%1:05:00:: 01901828 1 0 -viburnum%1:20:00:: 12680125 1 0 -viburnum_dentatum%1:20:00:: 12681141 1 0 -viburnum_lantana%1:20:00:: 12680652 1 0 -viburnum_opulus%1:20:00:: 12680864 1 0 -viburnum_prunifolium%1:20:00:: 12681579 1 0 -viburnum_recognitum%1:20:00:: 12681376 1 0 -viburnum_trilobum%1:20:00:: 12680402 1 0 -vicar%1:18:00:: 10750031 1 1 -vicar%1:18:01:: 10750188 3 0 -vicar%1:18:02:: 10750365 2 0 -vicar-general%1:18:00:: 10750640 1 0 -vicar_apostolic%1:18:00:: 10750524 1 0 -vicar_of_christ%1:18:00:: 10453533 1 0 -vicarage%1:06:00:: 03892557 1 0 -vicarial%3:01:00:: 02824585 1 0 -vicariate%1:14:00:: 08100907 1 0 -vicarious%5:00:00:abnormal:00 01598125 2 0 -vicarious%5:00:00:exchangeable:00 00918354 3 0 -vicarious%5:00:00:secondary:01 01855621 1 1 -vicariously%4:02:00:: 00492900 1 0 -vicarship%1:14:00:: 08100907 1 0 -viccinium_membranaceum%1:20:00:: 12248359 1 0 -viccinium_myrtillus%1:20:00:: 12248574 1 0 -vice%1:04:00:: 00747029 2 0 -vice%1:07:00:: 04853873 1 3 -vice-presidency%1:04:00:: 00605511 2 0 -vice-presidency%1:28:00:: 15266568 1 0 -vice-presidential%3:01:00:: 02984333 1 0 -vice-presidential_term%1:28:00:: 15266568 1 0 -vice-regent%1:18:00:: 10751710 1 0 -vice_admiral%1:18:00:: 10750788 1 0 -vice_chairman%1:18:00:: 10750911 1 0 -vice_chancellor%1:18:00:: 10751026 1 0 -vice_crime%1:04:00:: 00782241 1 0 -vice_president%1:18:00:: 10751265 1 10 -vice_president_of_the_united_states%1:18:00:: 10751527 1 0 -vice_squad%1:14:00:: 08211169 1 0 -vice_versa%4:02:00:: 00177686 1 2 -vicegerent%1:18:00:: 10751152 1 0 -vicenary%5:00:00:quantitative:00 01916142 1 0 -vicennial%3:01:00:: 02824740 1 0 -vicente_lopez%1:15:00:: 08713539 1 0 -viceregal%3:01:00:: 03129098 1 0 -vicereine%1:18:00:: 10751785 2 0 -vicereine%1:18:02:: 10752020 1 0 -viceroy%1:05:00:: 02277268 2 0 -viceroy%1:18:00:: 10751785 1 0 -viceroyalty%1:15:00:: 08678151 1 0 -viceroyship%1:04:00:: 00605616 1 0 -vichy%1:15:00:: 08938819 1 0 -vichy_water%1:13:01:: 07937069 1 0 -vichyssoise%1:13:00:: 07588817 1 0 -vicia%1:20:00:: 12575089 1 0 -vicia_cracca%1:20:00:: 12575812 1 0 -vicia_faba%1:20:00:: 12576029 1 0 -vicia_orobus%1:20:00:: 12576451 1 0 -vicia_sativa%1:20:00:: 12576555 1 0 -vicia_sepium%1:20:00:: 12576695 1 0 -vicia_villosa%1:20:00:: 12576838 1 0 -vicinal%3:01:00:: 02871957 1 0 -vicinity%1:15:00:: 08641113 1 4 -vicious%5:00:00:inhumane:00 01263013 1 4 -vicious%5:00:00:malicious:00 00226105 4 0 -vicious%5:00:00:wicked:00 02514099 2 2 -vicious%5:00:00:wrong:01 02035765 3 0 -vicious_circle%1:10:00:: 06755342 2 0 -vicious_circle%1:22:00:: 13573368 1 3 -vicious_cycle%1:22:00:: 13573368 1 1 -viciously%4:02:00:: 00201195 1 0 -viciousness%1:07:00:: 04830689 1 0 -vicissitude%1:07:00:: 04741655 2 0 -vicissitude%1:11:00:: 07337694 1 0 -vicksburg%1:04:00:: 01298797 2 0 -vicksburg%1:15:00:: 09105494 1 0 -vicomte_de_chateaubriand%1:18:00:: 10893830 1 0 -vicomte_ferdinand_marie_de_lesseps%1:18:00:: 11129286 1 0 -victim%1:18:00:: 10752093 1 8 -victim%1:18:01:: 10752480 2 4 -victimisation%1:04:00:: 00418903 1 0 -victimise%2:41:00:: 02500619 2 0 -victimise%2:41:01:: 02574205 1 0 -victimised%5:00:00:misused:00 02495687 1 0 -victimiser%1:18:00:: 10752719 1 0 -victimization%1:04:00:: 00418903 2 0 -victimization%1:26:00:: 14477509 1 0 -victimize%2:41:00:: 02500619 2 1 -victimize%2:41:01:: 02574205 1 2 -victimize%2:41:03:: 02572119 3 0 -victimized%5:00:00:misused:00 02495687 1 0 -victimizer%1:18:00:: 10752719 1 0 -victimless_crime%1:04:00:: 00782338 1 0 -victor%1:18:00:: 10782940 2 0 -victor%1:18:01:: 10752930 1 1 -victor-marie_hugo%1:18:00:: 11065345 1 0 -victor_emanuel_ii%1:18:00:: 11365516 1 0 -victor_emanuel_iii%1:18:00:: 11365674 1 0 -victor_franz_hess%1:18:00:: 11047521 1 0 -victor_herbert%1:18:00:: 11044629 1 0 -victor_hess%1:18:00:: 11047521 1 0 -victor_horta%1:18:00:: 11061089 1 0 -victor_hugo%1:18:00:: 11065345 1 0 -victoria%1:15:00:: 08823314 7 0 -victoria%1:15:01:: 08833682 6 0 -victoria%1:15:02:: 08996714 5 0 -victoria%1:15:03:: 09146681 4 0 -victoria%1:17:00:: 09471638 3 0 -victoria%1:18:00:: 11365857 1 0 -victoria%1:18:02:: 09567913 2 0 -victoria_clafin_woodhull%1:18:00:: 11396128 1 0 -victoria_cross%1:10:00:: 06708866 1 0 -victoria_day%1:28:00:: 15201384 1 0 -victoria_de_durango%1:15:00:: 08743229 1 0 -victoria_falls%1:17:00:: 09471638 1 0 -victoria_falls%1:17:01:: 09309456 2 0 -victoria_land%1:15:00:: 08678253 1 0 -victoria_nyanza%1:17:00:: 09334049 1 0 -victoria_plum%1:13:00:: 07752264 1 0 -victoria_sandwich%1:13:00:: 07642182 1 0 -victoria_sponge%1:13:00:: 07642182 1 0 -victorian%1:18:00:: 10753061 1 0 -victorian%3:01:00:: 03027793 1 3 -victorian%5:00:00:nonmodern:00 01537759 3 0 -victorian%5:00:00:proper:00 01880163 2 0 -victorian_age%1:28:00:: 15122853 1 0 -victorian_architecture%1:09:00:: 05843895 1 0 -victoriana%1:14:00:: 07997581 1 0 -victorious%5:00:00:successful:00 02333314 1 0 -victorious%5:00:00:undefeated:00 00695209 2 0 -victoriously%4:02:00:: 00199437 1 1 -victory%1:11:00:: 07473441 1 42 -victory_celebration%1:04:00:: 00519118 1 0 -victory_day%1:28:00:: 15162640 1 0 -victory_garden%1:06:00:: 04533373 1 0 -victory_lap%1:04:00:: 00295563 1 0 -victrola%1:06:00:: 04533499 1 1 -victual%1:13:00:: 07556637 1 0 -victual%2:34:00:: 01167188 3 0 -victual%2:40:00:: 02281485 2 0 -victual%2:40:02:: 02332999 1 0 -victualer%1:18:01:: 10681557 2 0 -victualer%1:18:02:: 10753182 1 0 -victualler%1:18:01:: 10681557 2 0 -victualler%1:18:02:: 10753182 1 0 -victuals%1:13:00:: 07556637 3 0 -victuals%1:13:01:: 07570720 2 0 -victuals%1:13:02:: 07572353 1 0 -vicugna%1:05:00:: 02438452 1 0 -vicugna_vicugna%1:05:00:: 02438580 1 0 -vicuna%1:05:00:: 02438580 3 0 -vicuna%1:06:00:: 04533594 2 0 -vicuna%1:27:00:: 15104933 1 0 -vidal%1:18:00:: 11366109 1 0 -vidalia%1:15:00:: 09078102 1 0 -vidalia_onion%1:13:00:: 07722666 1 0 -vidar%1:18:00:: 09584218 1 0 -videlicet%4:02:00:: 00188510 1 0 -video%1:06:00:: 04534127 2 1 -video%1:10:00:: 06277803 1 1 -video%1:10:01:: 06277280 4 0 -video%1:10:02:: 06277992 3 0 -video_digitizing%1:22:00:: 13573499 1 0 -video_display%1:06:00:: 03211117 1 0 -video_equipment%1:06:00:: 04405540 1 0 -video_game%1:04:00:: 00458890 1 0 -video_ipod%1:06:00:: 03584400 1 0 -video_recording%1:06:00:: 04534127 1 0 -videocassette%1:06:00:: 04533700 1 0 -videocassette_recorder%1:06:00:: 04533802 1 0 -videodisc%1:06:00:: 04533946 1 0 -videodisk%1:06:00:: 04533946 1 0 -videotape%1:06:00:: 04534359 2 0 -videotape%1:06:01:: 04534520 1 0 -videotape%2:32:00:: 01003049 1 0 -vidua%1:05:00:: 01543272 1 0 -vie%2:33:00:: 01072262 1 4 -vienna%1:15:00:: 08846324 1 1 -vienna_roll%1:13:00:: 07691758 1 0 -vienna_sausage%1:13:00:: 07676855 1 0 -vienne%1:14:00:: 08316748 2 0 -vienne%1:15:00:: 08939028 1 0 -viennese%3:01:00:: 02971192 1 1 -vientiane%1:15:00:: 08957064 1 6 -vieques%1:15:00:: 08753561 1 0 -viet_nam%1:15:00:: 09163192 1 1 -vietnam%1:04:00:: 01309807 2 0 -vietnam%1:15:00:: 09163192 1 0 -vietnam_war%1:04:00:: 01309807 1 0 -vietnamese%1:10:00:: 06937229 2 0 -vietnamese%1:18:00:: 09747191 1 0 -vietnamese%3:01:00:: 03129222 1 0 -vietnamese_monetary_unit%1:23:00:: 13674759 1 0 -view%1:04:00:: 00881649 3 9 -view%1:06:00:: 04144782 8 2 -view%1:07:00:: 05127782 9 0 -view%1:07:01:: 04674861 10 0 -view%1:09:00:: 05983463 7 4 -view%1:09:01:: 05933246 2 12 -view%1:09:02:: 06208751 1 36 -view%1:09:04:: 05945642 5 6 -view%1:10:00:: 06782019 6 4 -view%1:15:00:: 08560952 4 7 -view%2:31:00:: 00690614 1 19 -view%2:39:00:: 02130300 2 12 -view%2:39:02:: 02150948 3 2 -view_angle%1:25:00:: 13919059 1 0 -view_as%2:31:00:: 00693780 1 13 -view_finder%1:06:00:: 03340723 1 0 -viewable%5:00:00:visible:00 02517169 1 0 -viewer%1:06:00:: 04534651 2 0 -viewer%1:18:01:: 10633450 1 1 -viewers%1:14:00:: 08222750 1 1 -viewfinder%1:06:00:: 03340723 1 0 -viewgraph%1:06:00:: 04534779 1 0 -viewing%1:04:00:: 01029883 2 0 -viewing%1:10:00:: 06888345 1 0 -viewing_audience%1:14:00:: 08222750 1 0 -viewless%5:00:00:neutral:02 01819293 1 0 -viewpoint%1:09:00:: 06210363 1 14 -viewpoint%1:15:00:: 08677250 2 0 -vigdis_finnbogadottir%1:18:00:: 10971080 1 0 -vigee-lebrun%1:18:00:: 11366232 1 0 -vigesimal%3:01:00:: 02824825 1 0 -vigil%1:04:01:: 00880662 3 0 -vigil%1:04:02:: 01029671 2 0 -vigil%1:09:00:: 05678855 1 0 -vigil_candle%1:06:00:: 04534895 1 0 -vigil_light%1:06:00:: 04534895 1 0 -vigilance%1:07:00:: 04664778 2 0 -vigilance%1:09:00:: 05705722 1 2 -vigilance_committee%1:14:00:: 08326114 1 0 -vigilance_man%1:18:00:: 10753339 1 0 -vigilant%5:00:00:alert:00 00091764 1 0 -vigilante%1:18:00:: 10753339 1 0 -vigilantism%1:04:00:: 01128266 1 1 -vigilantly%4:02:00:: 00493040 1 0 -vigna%1:20:00:: 12577000 1 0 -vigna_aconitifolia%1:20:00:: 12577362 1 0 -vigna_angularis%1:20:00:: 12577686 1 0 -vigna_caracalla%1:20:00:: 12577895 1 0 -vigna_radiata%1:20:00:: 12578255 1 0 -vigna_sesquipedalis%1:20:00:: 12579038 1 0 -vigna_sinensis%1:20:00:: 12578626 1 0 -vigna_unguiculata%1:20:00:: 12578626 1 0 -vigna_unguiculata_sesquipedalis%1:20:00:: 12579038 1 0 -vignette%1:06:00:: 04535011 3 0 -vignette%1:06:01:: 04535153 2 0 -vignette%1:10:00:: 07203016 1 1 -vigor%1:07:00:: 05030806 2 0 -vigor%1:07:01:: 04633197 3 0 -vigor%1:07:02:: 05035961 1 1 -vigorish%1:21:00:: 13320045 1 0 -vigorish%1:21:01:: 13289306 2 0 -vigorous%5:00:00:energetic:00 00875422 1 13 -vigorous%5:00:00:robust:00 02039845 2 1 -vigorously%4:02:00:: 00181748 1 5 -vigour%1:07:00:: 05030806 2 0 -vigour%1:07:01:: 04633197 3 0 -vigour%1:07:02:: 05035961 1 0 -vii%1:23:00:: 13744916 1 0 -vii%5:00:00:cardinal:00 02186970 1 0 -viii%1:23:00:: 13745086 1 0 -viii%5:00:00:cardinal:00 02187073 1 0 -viking%1:18:00:: 09730383 1 0 -viktor_korchnoi%1:18:00:: 11109289 1 0 -viktor_lvovich_korchnoi%1:18:00:: 11109289 1 0 -viktor_vasarely%1:18:00:: 11361142 1 0 -vila%1:15:00:: 09160968 1 0 -vile%5:00:00:evil:00 01133017 1 1 -vile%5:00:00:unwholesome:00 02560035 2 0 -vilely%4:02:00:: 00493148 1 0 -vileness%1:07:01:: 04781349 2 0 -vileness%1:07:02:: 04852750 1 0 -vilfredo_pareto%1:18:00:: 11222457 1 0 -vilification%1:10:00:: 06720216 1 0 -vilification%1:10:01:: 06715223 2 0 -vilifier%1:18:00:: 09999135 1 0 -vilify%2:32:00:: 00847870 1 0 -vilipend%2:32:00:: 00855933 1 0 -villa%1:06:01:: 04535252 4 0 -villa%1:06:02:: 04535370 3 0 -villa%1:06:03:: 04535524 2 0 -villa%1:18:00:: 11366405 1 0 -villa-lobos%1:18:00:: 11366548 1 0 -villa_hermosa%1:15:00:: 08746636 1 0 -village%1:14:00:: 08226699 1 29 -village%1:15:00:: 08672738 2 6 -village%1:15:01:: 09122968 3 1 -village_green%1:15:00:: 08678405 1 0 -villager%1:18:00:: 10753442 1 2 -villahermosa%1:15:00:: 08746636 1 0 -villain%1:18:00:: 10753546 1 2 -villain%1:18:01:: 10753779 2 1 -villainage%1:26:00:: 13953057 1 0 -villainess%1:18:00:: 10753917 1 0 -villainous%5:00:00:wicked:00 02515001 1 1 -villainousness%1:07:00:: 04853361 1 0 -villainy%1:04:00:: 00745863 2 0 -villainy%1:07:00:: 04853361 1 0 -villard%1:18:00:: 11366658 1 0 -villein%1:18:00:: 10580535 1 0 -villeinage%1:21:00:: 13243374 2 0 -villeinage%1:26:00:: 13953057 1 0 -villoma%1:26:00:: 14250081 1 0 -villon%1:18:00:: 11366787 1 0 -villus%1:05:00:: 01901492 1 0 -vilna%1:15:00:: 09014273 1 0 -vilnius%1:15:00:: 09014273 1 0 -vilno%1:15:00:: 09014273 1 0 -vim%1:07:00:: 04633197 2 0 -vim%1:26:00:: 14050143 1 0 -viminaria%1:20:00:: 12579242 1 0 -viminaria_denudata%1:20:00:: 12579404 1 0 -viminaria_juncea%1:20:00:: 12579404 1 0 -vin_ordinaire%1:13:00:: 07899003 1 0 -vina_del_mar%1:15:00:: 08722270 1 0 -vinaceous%3:01:00:: 02854013 1 0 -vinaceous%5:00:00:chromatic:00 00385338 2 0 -vinaigrette%1:13:00:: 07833816 1 0 -vinblastine%1:06:00:: 04535634 1 0 -vinca%1:20:00:: 11777779 1 0 -vinca_major%1:20:00:: 11778257 1 0 -vinca_minor%1:20:00:: 11778092 1 0 -vinca_rosea%1:20:00:: 11772408 1 0 -vincent's_angina%1:26:00:: 14124931 1 0 -vincent's_infection%1:26:00:: 14124931 1 0 -vincent_van_gogh%1:18:00:: 11360022 1 0 -vincenzo_bellini%1:18:00:: 10842923 1 0 -vincetoxicum%1:20:00:: 13239471 1 0 -vincetoxicum_hirsutum%1:20:00:: 13239736 1 0 -vincetoxicum_negrum%1:20:00:: 13239736 1 0 -vincible%5:00:00:conquerable:00 00569304 1 0 -vincristine%1:06:00:: 04535826 1 0 -vindicate%2:32:00:: 00896141 1 1 -vindicate%2:32:01:: 00904494 3 0 -vindicate%2:32:02:: 00904690 2 0 -vindicated%5:00:00:innocent:00 01320184 1 0 -vindication%1:04:01:: 01241331 1 6 -vindication%1:10:00:: 06740644 2 0 -vindicator%1:18:00:: 09798534 1 0 -vindicatory%5:00:00:exculpatory:00 00923790 3 0 -vindicatory%5:00:00:just:00 01370305 2 0 -vindicatory%5:00:00:punitive:00 01903160 1 0 -vindictive%5:00:00:malicious:00 00225099 2 1 -vindictive%5:00:00:unforgiving:00 01041634 1 2 -vindictively%4:02:00:: 00443248 1 0 -vindictiveness%1:12:00:: 07550891 1 0 -vine%1:20:00:: 13100677 1 7 -vine_cactus%1:20:00:: 12381931 1 0 -vine_maple%1:20:00:: 12754468 1 0 -vine_snake%1:05:00:: 01739381 1 0 -vinegar%1:13:00:: 07828987 1 1 -vinegar%1:27:00:: 15088111 2 0 -vinegar_eel%1:05:00:: 01932151 1 0 -vinegar_fly%1:05:00:: 02197877 1 0 -vinegar_joe_stilwell%1:18:00:: 11318462 1 0 -vinegar_tree%1:20:00:: 12763529 2 0 -vinegar_tree%1:20:02:: 12764202 1 0 -vinegar_worm%1:05:00:: 01932151 1 0 -vinegariness%1:07:00:: 04994264 1 0 -vinegarish%5:00:00:ill-natured:00 01139245 2 0 -vinegarish%5:00:00:sour:00 02369179 1 0 -vinegarishness%1:07:00:: 04994264 1 0 -vinegarroon%1:05:00:: 01771766 1 0 -vinegarweed%1:20:00:: 12871696 1 0 -vinegary%5:00:00:ill-natured:00 01139245 2 0 -vinegary%5:00:00:sour:00 02369179 1 0 -vinery%1:06:00:: 04536038 1 0 -vineyard%1:06:00:: 04536038 1 1 -vingt-et-un%1:04:00:: 00490350 1 0 -viniculture%1:04:00:: 01126709 1 0 -vinifera%1:20:00:: 13145444 1 0 -vinifera_grape%1:13:00:: 07759816 2 0 -vinifera_grape%1:20:00:: 13145444 1 0 -vinification%1:22:00:: 13573666 1 0 -vinify%2:30:00:: 00459114 1 0 -vino%1:13:00:: 07891726 1 0 -vinogradoff%1:18:00:: 11366895 1 0 -vinous%3:01:00:: 02854013 1 0 -vinson%1:18:00:: 11367035 1 0 -vintage%1:07:00:: 04926217 2 0 -vintage%1:13:00:: 07892418 1 1 -vintager%1:18:00:: 10753989 1 0 -vintner%1:18:00:: 10754088 2 0 -vintner%1:18:01:: 10754189 1 0 -vinyl%1:27:00:: 15088308 1 1 -vinyl%1:27:01:: 15088183 2 0 -vinyl_cyanide%1:27:00:: 14998677 1 0 -vinyl_ether%1:06:00:: 03299929 1 0 -vinyl_group%1:27:00:: 15088308 1 0 -vinyl_polymer%1:27:00:: 15088440 1 0 -vinyl_radical%1:27:00:: 15088308 1 0 -vinyl_resin%1:27:00:: 15088440 1 0 -vinylbenzene%1:27:00:: 14595543 1 0 -vinylite%1:27:00:: 14596599 1 0 -viocin%1:06:00:: 04537235 1 0 -viol%1:06:00:: 04536153 1 0 -viola%1:06:00:: 04536335 3 0 -viola%1:20:00:: 12387633 1 0 -viola%1:20:01:: 12387478 2 0 -viola_arvensis%1:20:00:: 12388143 1 0 -viola_blanda%1:20:00:: 12388444 1 0 -viola_canadensis%1:20:00:: 12388652 1 0 -viola_canina%1:20:00:: 12388858 1 0 -viola_clef%1:10:00:: 06863086 1 0 -viola_conspersa%1:20:00:: 12388293 1 0 -viola_cornuta%1:20:00:: 12388989 1 0 -viola_d'amore%1:06:00:: 04536765 1 0 -viola_da_braccio%1:06:00:: 04536465 1 0 -viola_da_gamba%1:06:00:: 04536595 1 0 -viola_ocellata%1:20:00:: 12389130 1 0 -viola_odorata%1:20:00:: 12389317 1 0 -viola_pedata%1:20:00:: 12389501 1 0 -viola_pubescens%1:20:00:: 12389727 1 0 -viola_reichenbachiana%1:20:00:: 12390314 1 0 -viola_rostrata%1:20:00:: 12389932 1 0 -viola_striata%1:20:00:: 12390099 1 0 -viola_sylvatica%1:20:00:: 12390314 1 0 -viola_tricolor%1:20:00:: 12390681 1 0 -viola_tricolor_hortensis%1:20:00:: 12390485 1 0 -violable%3:00:00:: 02510446 1 0 -violaceae%1:20:00:: 12387201 1 0 -violate%2:35:00:: 01207688 3 1 -violate%2:35:01:: 01565472 6 0 -violate%2:41:00:: 02566528 2 5 -violate%2:41:01:: 02567519 5 0 -violate%2:41:02:: 02568065 4 0 -violate%2:42:00:: 02668523 1 7 -violated%5:00:00:desecrated:00 00574010 1 0 -violation%1:04:00:: 00770270 1 6 -violation%1:04:01:: 00733483 3 2 -violation%1:04:02:: 00773402 5 0 -violation%1:04:03:: 00746232 4 1 -violation%1:04:04:: 00770543 2 2 -violative%5:00:00:offending:00 01631386 1 0 -violator%1:18:00:: 10754281 2 0 -violator%1:18:01:: 10754449 1 0 -violence%1:04:01:: 00965404 1 13 -violence%1:07:00:: 05037813 2 3 -violence%1:26:00:: 13979977 3 2 -violent%3:00:00:: 02510879 1 8 -violent%5:00:00:bloody:00 00248560 5 0 -violent%5:00:00:unnatural:00 01570747 2 1 -violent%5:00:01:intense:00 01511854 4 0 -violent%5:00:03:intense:00 01514141 3 1 -violent_death%1:11:00:: 07361576 1 0 -violent_disorder%1:04:01:: 00554541 1 0 -violent_storm%1:19:00:: 11462526 1 0 -violent_stream%1:11:00:: 07407593 1 0 -violently%4:02:00:: 00223859 1 5 -violet%1:07:00:: 04970758 2 1 -violet%1:20:00:: 12387839 1 1 -violet%5:00:00:chromatic:00 00380312 1 0 -violet-black%5:00:00:achromatic:00 00392281 1 0 -violet-blue%5:00:00:chromatic:00 00377224 1 0 -violet-colored%5:00:00:colored:00 00401444 1 0 -violet-coloured%5:00:00:colored:00 00401444 1 0 -violet-flowered%5:00:00:colored:00 00401444 1 0 -violet-flowered_petunia%1:20:00:: 12909759 1 0 -violet-pink%5:00:00:chromatic:00 00377323 1 0 -violet-purple%5:00:00:colored:00 00401562 1 0 -violet-scented%5:00:00:odorous:00 01057695 1 0 -violet-streaked%5:00:00:patterned:00 01791257 1 0 -violet-tinged%5:00:00:chromatic:00 00385432 1 0 -violet-tinted%5:00:00:chromatic:00 00385432 1 0 -violet_family%1:20:00:: 12387201 1 0 -violet_suksdorfia%1:20:00:: 12802707 1 0 -violet_wood_sorrel%1:20:00:: 12703856 1 0 -violin%1:06:00:: 04536866 1 3 -violin_bow%1:06:00:: 03332271 1 0 -violin_family%1:14:00:: 07998323 1 0 -violin_lesson%1:04:00:: 00889971 1 0 -violin_maker%1:18:00:: 10754920 1 0 -violin_section%1:14:00:: 08217450 1 0 -violinist%1:18:00:: 10754578 1 2 -violist%1:18:00:: 10755080 1 0 -violoncellist%1:18:00:: 09903501 1 0 -violoncello%1:06:00:: 02992211 1 0 -viomycin%1:06:00:: 04537235 1 0 -viorna_baldwinii%1:20:00:: 11729860 1 0 -viosterol%1:27:00:: 15092227 1 0 -vioxx%1:06:00:: 04100994 1 0 -vip%1:18:00:: 10748620 1 0 -viper%1:05:00:: 01752165 1 0 -viper's_bugloss%1:20:00:: 12819728 1 0 -viper's_grass%1:20:00:: 12013035 1 0 -vipera%1:05:00:: 01752433 1 0 -vipera_aspis%1:05:00:: 01752736 1 0 -vipera_berus%1:05:00:: 01752585 1 0 -viperidae%1:05:00:: 01751979 1 0 -viperine_grass_snake%1:05:00:: 01738065 1 0 -viracept%1:06:00:: 03817830 1 0 -viraemia%1:26:00:: 14573846 1 0 -virago%1:18:01:: 10755164 1 0 -virago%1:18:02:: 09787293 2 0 -viral%3:01:00:: 02880201 1 0 -viral_delivery_vector%1:17:00:: 09471865 1 0 -viral_haemorrhagic_fever%1:26:00:: 14177423 1 0 -viral_hemorrhagic_fever%1:26:00:: 14177423 1 0 -viral_hepatitis%1:26:00:: 14130518 1 0 -viral_infection%1:26:00:: 14186340 1 0 -viral_pneumonia%1:26:00:: 14179839 1 0 -viramune%1:06:00:: 03821259 1 0 -virazole%1:06:00:: 04087524 1 0 -virchow%1:18:00:: 11367195 1 0 -viremia%1:26:00:: 14573846 1 0 -vireo%1:05:00:: 01602630 1 0 -vireo_olivaceous%1:05:00:: 01602832 1 0 -vireo_solitarius%1:05:00:: 01603000 1 0 -vireo_solitarius_solitarius%1:05:00:: 01603152 1 0 -vireonidae%1:05:00:: 01602353 1 0 -virga%1:19:00:: 11509204 1 0 -virgil%1:18:00:: 11367436 1 0 -virgil_garnett_thomson%1:18:00:: 11340824 1 0 -virgil_thomson%1:18:00:: 11340824 1 0 -virgilia%1:20:00:: 12579593 1 0 -virgilia_capensis%1:20:00:: 12579822 1 0 -virgilia_divaricata%1:20:00:: 12580012 1 0 -virgilia_oroboides%1:20:00:: 12579822 1 0 -virgin%1:15:00:: 08686979 3 0 -virgin%1:18:00:: 10755257 1 5 -virgin%1:18:01:: 09752927 2 0 -virgin%5:00:00:chaste:00 00361125 2 0 -virgin%5:00:00:new:00 01643373 1 2 -virgin's_bower%1:20:00:: 11731157 1 0 -virgin_birth%1:09:00:: 06192908 2 0 -virgin_birth%1:22:00:: 13532747 1 0 -virgin_forest%1:20:00:: 13240025 1 0 -virgin_islands%1:15:00:: 08754529 1 12 -virgin_islands_national_park%1:15:00:: 08609487 1 0 -virgin_mary%1:13:00:: 07913537 2 0 -virgin_mary%1:18:00:: 11161412 1 2 -virgin_wool%1:27:00:: 15105008 1 0 -virginal%1:06:00:: 04537436 1 0 -virginal%3:01:00:: 02824922 1 0 -virginal%5:00:00:chaste:00 00361125 3 0 -virginal%5:00:00:pure:02 01907878 2 0 -virginal_membrane%1:08:00:: 05521934 1 0 -virginia%1:15:00:: 09148970 1 23 -virginia%1:15:01:: 09149934 2 0 -virginia%1:15:02:: 09103803 3 0 -virginia_beach%1:15:00:: 09151516 1 0 -virginia_bluebell%1:20:00:: 12821505 1 0 -virginia_chain_fern%1:20:00:: 13186546 1 0 -virginia_cowslip%1:20:00:: 12821505 1 0 -virginia_creeper%1:20:00:: 13148384 1 1 -virginia_crownbeard%1:20:00:: 12031547 1 0 -virginia_deer%1:05:00:: 02432291 1 0 -virginia_fence%1:06:00:: 04604644 1 0 -virginia_ham%1:13:00:: 07670044 1 0 -virginia_katherine_mcmath%1:18:00:: 11268667 1 0 -virginia_mallow%1:20:00:: 12186352 1 0 -virginia_mcmath%1:18:00:: 11268667 1 0 -virginia_oyster%1:05:00:: 01961600 1 0 -virginia_pine%1:20:00:: 11616852 1 0 -virginia_reel%1:04:00:: 00539674 1 0 -virginia_serpentaria%1:20:00:: 11801891 1 0 -virginia_serpentary%1:20:00:: 11801891 1 0 -virginia_snakeroot%1:20:00:: 11801891 1 0 -virginia_spring_beauty%1:20:00:: 11859737 1 0 -virginia_stock%1:20:00:: 11892181 1 0 -virginia_strawberry%1:20:00:: 12630999 1 0 -virginia_thimbleweed%1:20:00:: 11726433 1 0 -virginia_wade%1:18:00:: 11369676 1 0 -virginia_waterleaf%1:20:00:: 12834938 1 0 -virginia_woolf%1:18:00:: 11396667 1 0 -virginian%1:18:00:: 09746101 1 1 -virginian_stock%1:20:00:: 11892181 1 0 -virginian_sumac%1:20:00:: 12764202 1 0 -virginian_witch_hazel%1:20:00:: 12315060 1 0 -virginity%1:26:00:: 13967581 1 1 -virgo%1:15:00:: 08686979 3 0 -virgo%1:17:00:: 09471976 2 0 -virgo%1:18:00:: 09752927 1 0 -virgo_the_virgin%1:15:00:: 08686979 1 0 -virgule%1:10:00:: 06844903 1 0 -viricidal%3:01:00:: 03144004 1 0 -viricide%1:27:00:: 15048293 1 0 -viridity%1:07:00:: 04967191 1 0 -virile%3:00:00:: 01825419 3 0 -virile%5:00:00:masculine:01 01483677 2 1 -virile%5:00:00:strong:00 02324005 1 1 -virilisation%1:22:00:: 13511755 1 0 -virilise%2:30:00:: 00566569 1 0 -virilism%1:07:00:: 05008591 1 0 -virility%1:07:00:: 04666837 2 0 -virility%1:07:01:: 05008449 1 0 -virility_drug%1:06:00:: 04537602 1 0 -virilization%1:22:00:: 13511755 1 0 -virilize%2:30:00:: 00566569 1 0 -virino%1:17:00:: 09399198 1 0 -virion%1:05:00:: 01329935 1 0 -viroid%1:05:00:: 01334690 1 0 -virological%3:01:00:: 02914599 1 0 -virologist%1:18:00:: 10755394 1 0 -virology%1:09:00:: 06065640 1 0 -virtu%1:06:00:: 04537816 3 0 -virtu%1:07:00:: 04789613 2 0 -virtu%1:09:00:: 05750027 1 0 -virtual%5:00:00:essential:00 00902157 2 0 -virtual%5:00:00:realistic:00 01941814 1 1 -virtual_image%1:19:00:: 11523256 1 0 -virtual_memory%1:06:00:: 04537919 1 0 -virtual_reality%1:04:00:: 00459013 1 0 -virtual_storage%1:06:00:: 04537919 1 0 -virtually%4:02:01:: 00111451 1 4 -virtually%4:02:02:: 00073033 2 4 -virtue%1:07:01:: 04847298 1 6 -virtue%1:07:02:: 04849759 3 0 -virtue%1:07:03:: 05138958 2 3 -virtue%1:07:04:: 04847482 4 0 -virtuosity%1:09:00:: 05637222 1 0 -virtuoso%1:18:00:: 09762509 1 1 -virtuoso%1:18:01:: 10755512 2 0 -virtuoso%5:00:00:skilled:00 02226979 1 1 -virtuous%3:00:00:: 02513269 1 0 -virtuous%5:00:00:chaste:00 00361125 2 0 -virtuously%4:02:00:: 00283873 2 0 -virtuously%4:02:01:: 00364477 1 0 -virtuousness%1:07:00:: 04847298 1 0 -virucidal%3:01:00:: 03144004 1 0 -virucide%1:27:00:: 15048293 1 0 -virulence%1:07:00:: 05166560 1 2 -virulence%1:07:01:: 04658361 2 0 -virulency%1:07:00:: 05166560 1 0 -virulency%1:07:01:: 04658361 2 0 -virulent%3:00:00:: 00045561 2 0 -virulent%5:00:00:toxic:00 02449952 1 1 -virulent%5:00:00:unpleasant:00 01802165 3 0 -virulently%4:02:00:: 00493260 1 0 -virus%1:05:00:: 01328702 1 4 -virus%1:10:00:: 06585816 3 0 -virus%1:26:00:: 14007864 2 0 -virus_infection%1:26:00:: 14186340 1 0 -virusoid%1:05:00:: 01334690 1 0 -vis-a-vis%1:06:00:: 03693474 2 0 -vis-a-vis%1:09:00:: 05695806 1 0 -vis-a-vis%4:02:00:: 00045092 1 1 -vis_major%1:11:00:: 07315350 1 0 -visa%1:10:00:: 06687883 1 0 -visa%2:32:00:: 00998182 1 0 -visa%2:32:01:: 00807059 2 0 -visage%1:07:00:: 04679549 2 1 -visage%1:08:00:: 05601357 1 1 -visaged%5:00:00:faced:00 00236338 1 0 -visayan%1:18:00:: 10755648 1 0 -visayan_islands%1:15:00:: 08982452 1 0 -viscaceae%1:20:00:: 12738859 1 0 -viscacha%1:05:00:: 02368116 1 0 -viscera%1:08:00:: 05298988 1 0 -visceral%3:01:00:: 02862964 1 1 -visceral%5:00:00:illogical:00 01431471 2 0 -visceral_brain%1:08:00:: 05498773 1 3 -visceral_leishmaniasis%1:26:00:: 14181049 1 0 -visceral_pericardium%1:08:00:: 05428645 1 0 -visceral_pleura%1:08:00:: 05388437 1 0 -viscerally%4:02:00:: 00133221 2 0 -viscerally%4:02:01:: 00511375 1 0 -viscid%5:00:00:adhesive:00 00053691 1 0 -viscid_mushroom%1:20:00:: 13009085 1 0 -viscidity%1:07:00:: 04935904 1 0 -viscidly%4:02:00:: 00466457 1 0 -viscidness%1:07:00:: 04935904 1 0 -viscoelastic%5:00:00:elastic:00 00845406 1 2 -viscometer%1:06:00:: 04538249 1 1 -viscometric%3:01:00:: 03143794 1 0 -viscometry%1:04:00:: 01117318 1 0 -visconti%1:18:00:: 11367581 1 0 -viscose%1:06:01:: 04538403 2 0 -viscose%1:27:00:: 14965780 1 0 -viscose_rayon%1:06:00:: 04538403 1 0 -viscosimeter%1:06:00:: 04538249 1 0 -viscosimetric%3:01:00:: 03143794 1 0 -viscosimetry%1:04:00:: 01117318 1 0 -viscosity%1:07:00:: 04935003 1 9 -viscount%1:18:00:: 10755815 2 0 -viscount%1:18:01:: 10756148 1 0 -viscount_nelson%1:18:00:: 11203059 1 0 -viscount_northcliffe%1:18:00:: 11029298 1 0 -viscount_st._albans%1:18:00:: 10830456 1 0 -viscountcy%1:10:00:: 06343440 2 0 -viscountcy%1:26:00:: 14433232 1 0 -viscountess%1:18:00:: 10755926 2 0 -viscountess%1:18:01:: 10756061 1 0 -viscountess_astor%1:18:00:: 10826717 1 0 -viscounty%1:15:00:: 08557976 2 0 -viscounty%1:26:00:: 14433232 1 0 -viscous%5:00:00:adhesive:00 00053691 2 0 -viscous%5:00:00:thick:02 02417028 1 0 -viscousness%1:07:00:: 04935003 1 0 -viscum%1:20:00:: 12739072 1 0 -viscum_album%1:20:00:: 12739332 1 0 -viscus%1:08:00:: 05298729 1 0 -vise%1:06:00:: 04538552 1 0 -viselike%5:00:00:tight:01 01448362 1 1 -vishnu%1:18:00:: 09529999 1 0 -vishnuism%1:09:00:: 06239215 1 0 -visibility%1:07:00:: 05017458 1 1 -visibility%1:07:03:: 04702545 3 0 -visibility%1:26:00:: 14434329 2 0 -visible%3:00:00:: 02515341 1 14 -visible%5:00:00:available:00 00184792 3 0 -visible%5:00:00:overt:00 01705513 2 2 -visible_balance%1:21:00:: 13409363 1 0 -visible_horizon%1:15:00:: 08585657 1 0 -visible_light%1:19:00:: 11473954 1 4 -visible_radiation%1:19:00:: 11473954 1 0 -visible_spectrum%1:19:00:: 11523369 1 0 -visible_speech%1:06:00:: 04538759 2 0 -visible_speech%1:10:00:: 06500639 1 0 -visibleness%1:07:00:: 05017458 1 0 -visibly%4:02:00:: 00382287 1 3 -visibly%4:02:01:: 00193652 2 1 -visigoth%1:18:00:: 10756261 1 0 -vision%1:09:01:: 05654362 2 8 -vision%1:09:02:: 05713524 3 7 -vision%1:09:03:: 05768252 1 13 -vision%1:09:04:: 05625465 4 2 -vision%1:11:00:: 07288485 5 1 -vision_defect%1:26:00:: 14552802 1 0 -visionary%1:18:00:: 10756433 2 0 -visionary%1:18:01:: 10756641 1 0 -visionary%5:00:00:utopian:00 02498213 1 0 -visit%1:04:00:: 01232684 4 0 -visit%1:04:01:: 01232842 3 4 -visit%1:04:02:: 01233156 1 11 -visit%1:04:03:: 01055360 5 0 -visit%1:14:00:: 08385280 2 7 -visit%2:30:00:: 00260142 8 0 -visit%2:32:00:: 01038666 6 1 -visit%2:32:01:: 00748282 5 3 -visit%2:38:00:: 01843689 2 24 -visit%2:38:01:: 01844048 4 6 -visit%2:41:00:: 02487573 3 15 -visit%2:41:02:: 02493030 1 29 -visit%2:42:04:: 02619424 7 0 -visitant%1:18:00:: 10757193 1 0 -visitation%1:04:00:: 00652069 3 0 -visitation%1:11:00:: 07372959 1 0 -visitation%1:11:01:: 07316724 2 0 -visitation_right%1:07:00:: 05190586 1 0 -visiting%1:04:00:: 01056236 1 0 -visiting_card%1:10:00:: 06633205 1 0 -visiting_fireman%1:18:00:: 10756837 1 0 -visiting_nurse%1:18:00:: 10756937 1 0 -visiting_professor%1:18:00:: 10757050 1 0 -visitor%1:18:00:: 10757193 1 8 -visken%1:06:00:: 03942244 1 0 -visor%1:06:00:: 02838728 2 0 -visor%1:06:01:: 04538878 1 0 -visored%5:00:00:equipped:00 01095406 1 1 -vista%1:09:00:: 05933246 1 1 -vistaril%1:06:00:: 03554131 1 0 -vistula%1:17:00:: 09472135 1 0 -vistula_river%1:17:00:: 09472135 1 0 -visual%3:01:04:: 02869563 1 27 -visual%5:00:00:visible:00 02516148 2 0 -visual_acuity%1:09:00:: 05655567 1 0 -visual_agnosia%1:26:00:: 14100370 1 0 -visual_aphasia%1:26:00:: 14099050 1 0 -visual_area%1:08:00:: 05490204 1 0 -visual_aspect%1:07:00:: 04673965 1 0 -visual_cell%1:08:00:: 05455912 1 0 -visual_communication%1:10:00:: 06873252 1 0 -visual_cortex%1:08:00:: 05490204 1 0 -visual_defect%1:26:00:: 14552802 1 0 -visual_disorder%1:26:00:: 14552802 1 0 -visual_display_unit%1:06:00:: 04539053 1 0 -visual_field%1:09:00:: 05933638 1 0 -visual_hallucination%1:26:00:: 14378439 1 0 -visual_image%1:09:00:: 05932477 2 0 -visual_image%1:09:01:: 05936381 1 0 -visual_impairment%1:26:00:: 14552802 1 0 -visual_joke%1:10:00:: 06779914 1 0 -visual_modality%1:09:00:: 05654362 1 0 -visual_percept%1:09:00:: 05932477 1 0 -visual_perception%1:09:00:: 05710860 1 0 -visual_property%1:07:00:: 04950126 1 0 -visual_purple%1:27:00:: 15088869 1 0 -visual_range%1:07:00:: 05017757 1 0 -visual_sensation%1:09:00:: 05713524 1 0 -visual_sense%1:09:00:: 05654362 1 0 -visual_signal%1:10:00:: 06873571 1 0 -visual_space%1:09:00:: 05711414 1 1 -visual_system%1:08:00:: 05300926 1 0 -visualisation%1:09:00:: 05936381 1 0 -visualise%2:30:00:: 00581205 4 0 -visualise%2:36:00:: 01635432 3 0 -visualise%2:36:02:: 01636008 2 0 -visualise%2:39:00:: 02151394 1 0 -visualised%5:00:00:unreal:00 01935301 1 0 -visualiser%1:18:00:: 10757492 1 0 -visualization%1:09:00:: 05936381 1 1 -visualize%2:30:00:: 00581205 4 0 -visualize%2:36:00:: 01635432 1 4 -visualize%2:36:02:: 01636008 3 0 -visualize%2:39:00:: 02151394 2 0 -visualized%5:00:00:unreal:00 01935301 1 0 -visualizer%1:18:00:: 10757492 1 0 -visually%4:02:00:: 00133140 1 3 -visually_challenged%5:00:00:blind:00 02159969 1 0 -visually_impaired%5:00:00:blind:00 02159969 1 0 -visually_impaired_person%1:18:00:: 10757625 1 0 -vitaceae%1:20:00:: 13144303 1 0 -vital%5:00:00:alive:01 00095094 4 0 -vital%5:00:00:animated:00 00119006 3 0 -vital%5:00:00:essential:00 00902347 2 0 -vital%5:00:00:indispensable:00 00903894 1 6 -vital_capacity%1:23:00:: 13779570 1 0 -vital_force%1:19:00:: 11523839 1 0 -vital_organ%1:08:00:: 05298313 1 0 -vital_principle%1:18:00:: 10757918 1 0 -vital_sign%1:26:00:: 14302005 1 0 -vital_statistics%1:09:00:: 06029676 1 0 -vitalisation%1:26:00:: 14049552 1 0 -vitalise%2:30:00:: 00164816 2 0 -vitalise%2:30:01:: 00165103 1 0 -vitaliser%1:18:00:: 10056103 1 0 -vitalism%1:09:00:: 05977977 1 0 -vitalist%1:18:00:: 10757817 1 0 -vitality%1:07:00:: 05005809 4 0 -vitality%1:07:01:: 04633453 1 8 -vitality%1:19:00:: 11523839 3 0 -vitality%1:26:00:: 14050143 2 1 -vitalization%1:26:00:: 14049552 1 0 -vitalize%2:30:00:: 00164816 2 0 -vitalize%2:30:01:: 00165103 1 0 -vitalizer%1:18:00:: 10056103 1 0 -vitalizing%5:00:00:invigorating:00 01357484 1 0 -vitally%4:02:00:: 00090551 1 5 -vitalness%1:07:00:: 05171352 2 0 -vitalness%1:07:01:: 05171491 1 0 -vitals%1:08:00:: 05298313 1 2 -vitamin%1:27:00:: 15089258 1 3 -vitamin-deficiency_diet%1:13:00:: 07563366 1 0 -vitamin_a%1:27:00:: 15089803 1 0 -vitamin_a1%1:27:00:: 15090065 1 0 -vitamin_a2%1:27:00:: 15090238 1 0 -vitamin_b%1:27:00:: 15090742 1 0 -vitamin_b1%1:27:00:: 15091129 1 0 -vitamin_b12%1:27:00:: 15091304 1 0 -vitamin_b2%1:27:00:: 15091473 1 0 -vitamin_b6%1:27:00:: 15091669 1 0 -vitamin_b_complex%1:27:00:: 15090742 1 0 -vitamin_bc%1:27:00:: 15091846 1 0 -vitamin_c%1:27:00:: 15093298 1 1 -vitamin_d%1:27:00:: 15092227 1 0 -vitamin_e%1:27:00:: 15092409 1 1 -vitamin_g%1:27:00:: 15091473 1 0 -vitamin_h%1:27:00:: 15092650 1 0 -vitamin_k%1:27:00:: 15092751 1 0 -vitamin_k1%1:27:00:: 15092942 1 0 -vitamin_k3%1:27:00:: 15093049 1 0 -vitamin_m%1:27:00:: 15091846 1 0 -vitamin_p%1:27:00:: 15093137 1 0 -vitamin_pill%1:13:00:: 07938149 1 0 -vitaminise%2:40:00:: 02342422 1 0 -vitaminize%2:40:00:: 02342422 1 0 -vitelline_circulation%1:19:00:: 11439566 1 0 -vitelline_sac%1:05:00:: 01465243 1 0 -vitellus%1:05:00:: 01464844 1 0 -vithar%1:18:00:: 09584218 1 0 -vitharr%1:18:00:: 09584218 1 0 -viti_levu%1:15:00:: 08778936 1 0 -vitiate%2:30:00:: 00448440 3 0 -vitiate%2:30:01:: 00477941 2 0 -vitiate%2:41:00:: 02579447 1 0 -vitiated%5:00:00:corrupt:00 00621100 2 0 -vitiated%5:00:00:impaired:00 01274945 1 0 -vitiation%1:04:00:: 00233212 1 0 -viticulture%1:04:00:: 01126709 1 0 -viticulturist%1:18:00:: 10758121 1 0 -vitidaceae%1:20:00:: 13144303 1 0 -vitiliginous%3:01:00:: 03144152 1 0 -vitiligo%1:26:00:: 14232945 1 0 -vitis%1:20:00:: 13144511 1 0 -vitis_labrusca%1:20:00:: 13145040 1 0 -vitis_rotundifolia%1:20:00:: 13145250 1 0 -vitis_vinifera%1:20:00:: 13145444 1 0 -vitrectomy%1:04:00:: 00680658 1 0 -vitreous%3:01:00:: 02825060 2 0 -vitreous%3:01:01:: 02825213 1 0 -vitreous%5:00:00:glazed:00 01119661 3 0 -vitreous_body%1:08:00:: 05318407 1 0 -vitreous_humor%1:08:00:: 05318407 1 0 -vitreous_humour%1:08:00:: 05318407 1 0 -vitreous_silica%1:27:00:: 14879750 1 0 -vitrification%1:22:00:: 13573805 2 0 -vitrification%1:27:00:: 15112565 1 0 -vitrified%5:00:00:glazed:00 01119661 1 0 -vitrify%2:30:00:: 00537759 2 0 -vitrify%2:30:01:: 00537892 1 0 -vitrine%1:06:00:: 02975212 1 0 -vitriol%1:10:00:: 06721604 2 0 -vitriol%1:27:00:: 15093482 1 0 -vitriol%2:32:00:: 00863174 2 0 -vitriol%2:39:00:: 02111371 1 0 -vitriolic%5:00:00:destructive:00 00587376 2 0 -vitriolic%5:00:00:unpleasant:00 01802165 1 0 -vitriolically%4:02:00:: 00281950 1 0 -vittaria%1:20:00:: 13179648 1 0 -vittaria_lineata%1:20:00:: 13179804 1 0 -vittariaceae%1:20:00:: 13179410 1 0 -vittorio_de_sica%1:18:00:: 10932140 1 0 -vituperate%2:32:00:: 00847870 1 0 -vituperation%1:10:00:: 06721604 1 0 -vituperative%5:00:00:critical:01 00648614 1 0 -vitus%1:18:00:: 11367725 1 0 -vitus_behring%1:18:00:: 10846913 1 0 -vitus_bering%1:18:00:: 10846913 1 0 -viva%1:10:00:: 07198846 1 0 -viva-voce%5:00:00:spoken:00 02284423 1 0 -viva_voce%1:10:00:: 07198846 1 0 -viva_voce%4:02:00:: 00258088 1 0 -vivace%4:02:00:: 00493414 1 0 -vivace%5:00:00:fast:02 00982518 1 0 -vivacious%5:00:00:spirited:00 02280969 1 2 -vivaciously%4:02:00:: 00493494 1 0 -vivacity%1:07:00:: 04634299 1 0 -vivaldi%1:18:00:: 11367910 1 0 -vivarium%1:06:00:: 04539203 1 0 -viverra%1:05:00:: 02135486 1 0 -viverra_zibetha%1:05:00:: 02135610 1 0 -viverricula%1:05:00:: 02135726 1 0 -viverricula_indica%1:05:00:: 02135844 1 0 -viverricula_malaccensis%1:05:00:: 02135844 1 0 -viverridae%1:05:00:: 02134589 1 0 -viverrinae%1:05:00:: 02134589 1 0 -viverrine%1:05:00:: 02134971 1 0 -viverrine_mammal%1:05:00:: 02134971 1 0 -vivid%5:00:00:clear:00 00430041 2 4 -vivid%5:00:00:colorful:00 00402855 3 0 -vivid%5:00:00:realistic:00 01941026 1 10 -vivid%5:00:00:saturated:03 00393683 4 0 -vividly%4:02:00:: 00245843 1 4 -vividness%1:07:00:: 04975340 2 0 -vividness%1:07:01:: 05193338 1 1 -vivien_leigh%1:18:00:: 11125546 1 0 -vivification%1:04:00:: 01048466 2 0 -vivification%1:07:00:: 04631700 1 0 -vivify%2:29:00:: 00024279 1 2 -vivify%2:30:01:: 00582145 2 0 -viviparous%3:00:00:: 02519029 1 0 -viviparous_eelpout%1:05:00:: 02617537 1 0 -vivisect%2:35:00:: 01550403 1 0 -vivisection%1:04:00:: 00716777 1 0 -vivisectionist%1:18:00:: 10758207 1 0 -vixen%1:05:00:: 02118643 2 0 -vixen%1:18:00:: 10758337 1 0 -vixenish%5:00:00:malicious:00 00226434 1 0 -viyella%1:06:00:: 04539407 1 1 -viz.%4:02:00:: 00188510 1 0 -vizcaino%1:18:00:: 11368076 1 0 -vizier%1:18:00:: 10758445 1 0 -viziership%1:04:00:: 00605715 1 0 -vizor%1:06:00:: 02838728 2 0 -vizor%1:06:01:: 04538878 1 0 -vizsla%1:05:00:: 02100583 1 0 -vladimir_horowitz%1:18:00:: 11060937 1 0 -vladimir_ilich_lenin%1:18:00:: 11126490 1 0 -vladimir_ilich_ulyanov%1:18:00:: 11126490 1 0 -vladimir_ilyich_lenin%1:18:00:: 11126490 1 0 -vladimir_ilyich_ulyanov%1:18:00:: 11126490 1 0 -vladimir_kosma_zworykin%1:18:00:: 11408414 1 0 -vladimir_lenin%1:18:00:: 11126490 1 0 -vladimir_nabokov%1:18:00:: 11198981 1 0 -vladimir_putin%1:18:00:: 11249322 1 0 -vladimir_vladimirovich_mayakovski%1:18:00:: 11166732 1 0 -vladimir_vladimirovich_nabokov%1:18:00:: 11198981 1 0 -vladimir_vladimirovich_putin%1:18:00:: 11249322 1 0 -vladivostok%1:15:00:: 09010670 1 0 -vlaminck%1:18:00:: 11368240 1 0 -vldl%1:27:00:: 15087632 1 0 -vlf%1:07:00:: 05057275 1 0 -vocable%1:10:00:: 06304576 1 0 -vocabulary%1:09:00:: 05651242 2 3 -vocabulary%1:09:01:: 05663275 3 1 -vocabulary%1:10:00:: 06420678 1 6 -vocal%1:10:00:: 07282006 1 0 -vocal%1:10:01:: 07048000 2 0 -vocal%3:01:00:: 02825355 2 1 -vocal%3:01:02:: 02825533 1 1 -vocal%5:00:00:communicative:00 00499530 3 1 -vocal%5:00:00:loud:00 01454494 4 0 -vocal_band%1:08:00:: 05530429 1 0 -vocal_cord%1:08:00:: 05530429 1 1 -vocal_fold%1:08:00:: 05530429 1 0 -vocal_music%1:04:00:: 00545344 2 0 -vocal_music%1:10:00:: 07282006 1 0 -vocal_organ%1:08:00:: 05305614 1 0 -vocalic%3:00:02:: 02287276 1 1 -vocalic%3:01:00:: 02825985 2 0 -vocalisation%1:10:00:: 07110615 1 0 -vocalise%2:32:00:: 00983635 2 0 -vocalise%2:32:01:: 00978369 3 0 -vocalise%2:32:02:: 00952182 4 0 -vocalise%2:32:05:: 00745187 5 0 -vocalise%2:36:00:: 01704236 1 0 -vocaliser%1:18:00:: 10599806 2 0 -vocaliser%1:18:01:: 10743675 1 0 -vocalism%1:10:00:: 07110615 2 0 -vocalism%1:10:01:: 07113903 1 0 -vocalist%1:18:00:: 10599806 1 1 -vocalization%1:10:00:: 07110615 1 0 -vocalization%1:10:01:: 07109847 2 0 -vocalize%2:32:00:: 00983635 3 0 -vocalize%2:32:01:: 00978369 4 0 -vocalize%2:32:02:: 00952182 1 1 -vocalize%2:32:04:: 00745187 5 0 -vocalize%2:36:00:: 01704236 2 0 -vocalizer%1:18:00:: 10599806 2 0 -vocalizer%1:18:01:: 10743675 1 0 -vocalizing%1:04:00:: 00545501 1 0 -vocally%4:02:00:: 00128660 1 0 -vocation%1:04:00:: 00583246 1 2 -vocation%1:14:00:: 08403631 2 0 -vocational%3:01:00:: 02840478 1 49 -vocational_education%1:09:00:: 05757902 1 0 -vocational_program%1:09:00:: 05910712 1 6 -vocational_rehabilitation%1:04:00:: 00401314 1 3 -vocational_rehabilitation_program%1:09:00:: 05901248 1 1 -vocational_school%1:14:00:: 08285594 1 4 -vocational_training%1:09:00:: 05757902 1 1 -vocationally%4:02:00:: 00044262 1 1 -vocative%1:10:00:: 06312237 1 0 -vocative%3:01:00:: 03129490 1 0 -vocative_case%1:10:00:: 06312237 1 0 -vociferate%2:32:01:: 00915265 1 0 -vociferation%1:10:00:: 07120524 1 0 -vociferator%1:18:00:: 10758589 1 0 -vociferous%5:00:00:noisy:00 01920367 1 2 -vociferously%4:02:00:: 00154102 1 1 -vodka%1:13:00:: 07906111 1 0 -vodka_martini%1:13:00:: 07916319 1 0 -vodoun%1:09:00:: 06245816 1 0 -vogue%1:09:00:: 05750163 1 2 -vogue%1:26:00:: 14411884 2 0 -voguish%5:00:00:fashionable:00 00973677 2 0 -voguish%5:00:00:stylish:00 00975487 1 0 -vogul%1:10:00:: 06959140 2 0 -vogul%1:18:00:: 09708118 1 0 -voice%1:04:00:: 00179683 5 4 -voice%1:07:00:: 04981941 1 78 -voice%1:07:01:: 05202284 9 2 -voice%1:10:00:: 07110615 2 69 -voice%1:10:01:: 07073208 4 5 -voice%1:10:02:: 07030718 11 0 -voice%1:10:03:: 07277697 6 3 -voice%1:11:00:: 07399452 3 5 -voice%1:18:00:: 10638385 8 2 -voice%1:18:01:: 10758713 7 2 -voice%1:24:00:: 13802920 10 0 -voice%2:32:00:: 00933403 1 4 -voice%2:32:01:: 00952182 2 0 -voice_box%1:08:00:: 05529729 1 0 -voice_communication%1:10:00:: 07109196 1 0 -voice_mail%1:10:00:: 06272612 1 0 -voice_of_conscience%1:16:00:: 09184405 1 0 -voice_over%1:10:00:: 07282166 1 0 -voice_part%1:10:00:: 07031534 1 0 -voiced%3:00:00:: 02286083 1 1 -voiced_sound%1:10:00:: 07120364 1 0 -voiceless%3:00:00:: 00876735 2 0 -voiceless%3:00:04:: 02286294 1 0 -voiceless%5:00:00:inarticulate:00 00151661 4 0 -voiceless%5:00:00:inaudible:00 00174719 3 0 -voiceless_consonant%1:10:00:: 07119897 1 0 -voicelessness%1:07:00:: 05205537 3 0 -voicelessness%1:10:00:: 07130341 2 0 -voicelessness%1:26:00:: 14400507 1 0 -voicemail%1:10:00:: 06272612 1 0 -voiceprint%1:10:00:: 06646022 1 0 -voicer%1:18:00:: 10758847 2 0 -voicer%1:18:01:: 10758949 1 0 -voicing%1:04:00:: 01001640 1 0 -void%1:25:00:: 13910116 2 0 -void%1:26:00:: 14455700 1 0 -void%2:29:00:: 00073343 4 0 -void%2:30:00:: 00448440 3 0 -void%2:30:04:: 00450303 2 0 -void%2:41:00:: 02478059 1 0 -void%5:00:00:empty:00 01088351 2 0 -void%5:00:00:invalid:00 02500590 1 1 -voidable%5:00:00:revocable:00 01760293 1 0 -voidance%1:04:00:: 00395797 1 0 -voider%1:06:00:: 03050864 4 0 -voider%1:06:01:: 04539648 3 0 -voider%1:18:00:: 10214390 1 0 -voider%1:18:01:: 10000007 2 0 -voiding%1:22:00:: 13473097 1 0 -voile%1:06:00:: 04539794 1 0 -voix_celeste%1:06:00:: 04542474 1 0 -vol-au-vent%1:13:00:: 07627564 1 0 -volaille%1:13:00:: 07644967 1 0 -volans%1:17:00:: 09472268 1 0 -volant%5:00:00:winged:00 02568076 1 0 -volapuk%1:10:00:: 06898129 1 0 -volar%3:01:00:: 02773062 1 0 -volary%1:06:00:: 02763604 1 0 -volatile%1:27:00:: 15093735 1 0 -volatile%3:00:00:: 02519555 1 2 -volatile%5:00:00:changeable:00 00346847 4 0 -volatile%5:00:00:inconstant:00 00584626 3 0 -volatile%5:00:00:unstable:00 02292573 2 0 -volatile_oil%1:27:00:: 14892655 1 0 -volatile_storage%1:06:00:: 04539876 1 0 -volatilisable%5:00:00:volatile:00 02519813 1 0 -volatilise%2:30:00:: 00552253 1 0 -volatilised%5:00:00:gaseous:00 02263270 1 0 -volatility%1:07:00:: 04628850 3 0 -volatility%1:07:01:: 04866671 2 0 -volatility%1:07:02:: 05009921 1 0 -volatilizable%5:00:00:volatile:00 02519813 1 0 -volatilize%2:30:00:: 00552253 1 0 -volatilized%5:00:00:gaseous:00 02263270 1 0 -volcan_de_colima%1:15:00:: 09174015 1 0 -volcanic%3:01:00:: 02826169 1 0 -volcanic%5:00:00:extrusive:00 01355746 3 0 -volcanic%5:00:00:unstable:00 02293760 2 0 -volcanic_crater%1:17:00:: 09472413 1 0 -volcanic_eruption%1:11:00:: 07436475 1 1 -volcanic_glass%1:27:00:: 14880777 1 0 -volcanic_rock%1:27:00:: 14933314 1 0 -volcanically%4:02:00:: 00144292 1 0 -volcanism%1:19:00:: 11524110 1 0 -volcano%1:17:00:: 09472597 2 0 -volcano%1:17:01:: 09470550 1 1 -volcano_islands%1:15:00:: 08926877 1 0 -volcanology%1:09:00:: 06120653 1 0 -vole%1:05:00:: 02339376 1 0 -volga%1:17:00:: 09473239 1 0 -volga_river%1:17:00:: 09473239 1 0 -volgaic%1:10:00:: 06957140 1 0 -volgograd%1:15:00:: 09010085 1 0 -volition%1:04:00:: 00163047 2 0 -volition%1:09:00:: 05652593 1 1 -volitional%5:00:00:willing:00 02565801 1 0 -volitionally%4:02:00:: 00305283 1 0 -volkhov%1:17:00:: 09473397 1 0 -volkhov_river%1:17:00:: 09473397 1 0 -volley%1:04:00:: 00988320 1 9 -volley%1:04:01:: 00569733 2 1 -volley%2:32:00:: 00986311 5 0 -volley%2:33:00:: 01075498 4 0 -volley%2:35:00:: 01377571 3 0 -volley%2:35:01:: 01598255 2 0 -volley%2:38:01:: 02029492 1 0 -volleyball%1:04:00:: 00480211 1 1 -volleyball%1:06:00:: 04540053 2 0 -volleyball_court%1:06:00:: 04540153 1 0 -volleyball_game%1:04:00:: 00480211 1 0 -volleyball_net%1:06:00:: 04540255 1 0 -volleyball_player%1:18:00:: 10759047 1 0 -volt%1:23:00:: 13643276 1 0 -volt-ampere%1:23:00:: 13645132 1 0 -volta%1:17:00:: 09473558 2 0 -volta%1:18:00:: 11368368 1 0 -voltage%1:19:01:: 11493827 2 2 -voltage%1:19:02:: 11523538 1 8 -voltage_divider%1:06:00:: 03991443 1 0 -voltage_drop%1:07:00:: 05111704 1 0 -voltage_regulator%1:06:00:: 04540397 1 0 -voltaic%1:10:00:: 06996160 1 0 -voltaic%3:01:00:: 02827160 1 2 -voltaic_battery%1:06:00:: 04540547 1 2 -voltaic_cell%1:06:00:: 04540761 1 1 -voltaic_pile%1:06:00:: 04541136 1 2 -voltaire%1:18:00:: 11368638 1 8 -voltarean%3:01:00:: 03038536 1 0 -voltaren%1:06:00:: 03192142 1 0 -voltarian%3:01:00:: 03038536 1 0 -volte-face%1:04:00:: 00163406 1 0 -voltmeter%1:06:00:: 04541320 1 1 -volubility%1:07:00:: 04651195 1 0 -voluble%3:00:00:: 02383831 1 0 -volubly%4:02:00:: 00284012 1 0 -volume%1:06:00:: 02870092 3 8 -volume%1:07:02:: 04990220 6 1 -volume%1:07:03:: 05099389 2 11 -volume%1:10:00:: 06413666 4 4 -volume%1:23:00:: 13779032 1 25 -volume%1:23:01:: 13779244 5 2 -volume-detonation_bomb%1:06:00:: 04420461 1 0 -volume_unit%1:23:00:: 13600822 1 0 -volumed%3:01:00:: 02985206 1 0 -volumed%5:00:00:furnished:00 01097847 3 0 -volumed%5:00:00:large:00 01390778 2 0 -volumeter%1:06:00:: 04541475 1 0 -volumetric%3:01:00:: 02985474 1 1 -volumetric_analysis%1:04:00:: 00647713 2 0 -volumetric_analysis%1:04:01:: 00648542 1 0 -volumetrical%3:01:00:: 02985474 1 0 -volumetrically%4:02:00:: 00118253 1 1 -voluminosity%1:07:00:: 05106024 1 0 -voluminous%5:00:00:abundant:00 00014858 3 0 -voluminous%5:00:00:crooked:01 02313784 2 0 -voluminous%5:00:00:large:00 01390900 1 3 -voluminousness%1:07:00:: 05106024 1 0 -volund%1:18:00:: 09584559 1 0 -voluntarily%4:02:00:: 00231765 1 2 -voluntary%1:10:00:: 07041125 2 0 -voluntary%1:18:00:: 10759331 1 0 -voluntary%3:00:01:: 02520219 1 1 -voluntary%3:00:02:: 02522267 2 0 -voluntary_muscle%1:08:00:: 05290897 1 0 -volunteer%1:18:00:: 10759151 2 1 -volunteer%1:18:01:: 10759331 1 3 -volunteer%1:18:02:: 09745732 3 0 -volunteer%2:32:00:: 00880102 1 4 -volunteer%2:41:00:: 02424984 3 2 -volunteer%2:41:01:: 02425112 2 2 -volunteer%5:00:00:voluntary:01 02521183 1 0 -volunteer_state%1:15:00:: 09140148 1 0 -voluptuary%1:18:00:: 10759543 1 0 -voluptuary%5:00:00:indulgent:00 01298239 1 0 -voluptuous%5:00:00:indulgent:00 01298239 3 0 -voluptuous%5:00:00:sexy:00 02132967 1 3 -voluptuous%5:00:00:shapely:00 02138989 2 0 -voluptuously%4:02:00:: 00449308 2 0 -voluptuously%4:02:01:: 00493608 1 0 -voluptuousness%1:07:00:: 04686748 3 0 -voluptuousness%1:07:01:: 05116243 2 0 -voluptuousness%1:07:02:: 05210820 1 0 -volute%1:06:00:: 03065424 2 0 -volute%1:06:01:: 04279666 1 0 -volute%5:00:00:coiled:00 02317598 1 0 -volute_spring%1:06:00:: 03066359 1 0 -voluted%5:00:00:coiled:00 02317598 1 0 -volution%1:11:00:: 07447177 1 0 -volva%1:20:00:: 11532682 1 0 -volvaria%1:20:00:: 13018749 1 0 -volvaria_bombycina%1:20:00:: 13018906 1 0 -volvariaceae%1:20:00:: 13018579 1 0 -volvariella%1:20:00:: 13020011 1 0 -volvariella_bombycina%1:20:00:: 13020481 1 0 -volvariella_volvacea%1:20:00:: 13020191 1 0 -volvocaceae%1:05:00:: 01409065 1 0 -volvocales%1:05:00:: 01408880 1 0 -volvox%1:05:00:: 01409244 1 0 -volvulus%1:26:00:: 14574014 1 0 -vombatidae%1:05:00:: 01882948 1 0 -vomer%1:08:00:: 05610734 1 0 -vomit%1:04:00:: 00118733 3 0 -vomit%1:06:00:: 03283519 2 0 -vomit%1:27:00:: 14855992 1 0 -vomit%2:29:00:: 00076400 1 1 -vomit_up%2:29:00:: 00076400 1 0 -vomiter%1:18:00:: 10759702 1 0 -vomiting%1:04:00:: 00118733 1 1 -vomitive%1:06:00:: 03283519 1 0 -vomitory%1:06:00:: 04541662 1 0 -vomitus%1:27:00:: 14855992 1 0 -von_bismarck%1:18:00:: 10851599 1 0 -von_blucher%1:18:00:: 10853932 1 0 -von_braun%1:18:00:: 10863124 1 0 -von_mauser%1:18:00:: 11165854 1 0 -von_neumann%1:18:00:: 11369035 1 0 -von_neumann_machine%1:06:00:: 04541777 1 0 -von_recklinghausen's_disease%1:26:00:: 14158179 1 0 -von_rundstedt%1:18:00:: 11273679 1 0 -von_sternberg%1:18:00:: 11369251 1 0 -von_willebrand%1:18:00:: 11388321 1 0 -von_willebrand's_disease%1:26:00:: 14171176 1 0 -vonnegut%1:18:00:: 11368841 1 0 -voodoo%1:06:00:: 03603958 1 1 -voodoo%1:09:00:: 06245816 3 0 -voodoo%1:14:00:: 08152507 2 0 -voodoo%2:32:00:: 00777391 1 0 -voodooism%1:09:00:: 06245816 1 0 -voracious%5:00:00:acquisitive:00 00031138 1 0 -voracious%5:00:00:gluttonous:00 00010726 2 0 -voraciously%4:02:00:: 00493732 1 0 -voraciousness%1:07:00:: 04886402 2 0 -voraciousness%1:07:01:: 04834817 3 0 -voraciousness%1:26:00:: 14040071 1 0 -voracity%1:07:00:: 04886402 2 0 -voracity%1:26:00:: 14040071 1 0 -vortex%1:11:00:: 07433145 2 0 -vortex%1:25:00:: 13878112 1 0 -vortex_vein%1:08:00:: 05425703 1 0 -vorticella%1:05:00:: 01396951 1 0 -vorticose_vein%1:08:00:: 05425703 1 0 -votary%1:18:00:: 10760199 1 0 -votary%1:18:01:: 10759982 2 0 -votary%1:18:02:: 10759820 3 0 -vote%1:04:00:: 00183505 1 13 -vote%1:04:01:: 00182213 2 3 -vote%1:07:00:: 05186306 3 1 -vote%1:09:00:: 05857165 5 0 -vote%1:14:00:: 08480662 4 0 -vote%2:41:09:: 02473890 4 0 -vote%2:41:10:: 02462580 2 10 -vote%2:41:11:: 02462386 3 1 -vote%2:41:12:: 02462201 5 0 -vote%2:41:13:: 02461314 1 30 -vote_counter%1:18:00:: 10699099 1 0 -vote_down%2:41:00:: 02473688 1 1 -vote_down%2:41:02:: 02462030 2 0 -vote_in%2:41:00:: 02400637 1 1 -vote_of_confidence%1:10:00:: 07253482 1 1 -vote_out%2:41:00:: 02473688 1 0 -voteless%3:00:00:: 00876735 1 0 -voter%1:18:00:: 10760340 1 7 -voter_turnout%1:09:00:: 05857165 1 0 -voting%1:04:00:: 00183505 1 9 -voting_age%1:28:00:: 15152674 1 0 -voting_booth%1:06:00:: 04541987 1 0 -voting_machine%1:06:00:: 04542095 1 0 -voting_precinct%1:15:00:: 08538730 1 1 -voting_right%1:07:00:: 05188367 1 1 -voting_stock%1:21:00:: 13420221 1 0 -voting_system%1:09:00:: 05904135 1 1 -voting_trust%1:21:00:: 13363704 1 1 -votive%5:00:00:consecrated:00 00573666 1 1 -votyak%1:10:00:: 06956794 2 0 -votyak%1:18:00:: 09644518 1 0 -vouch%2:30:00:: 00223250 4 0 -vouch%2:32:00:: 00792165 3 0 -vouch%2:32:01:: 01015104 1 1 -vouch%2:32:12:: 00890100 2 0 -vouchee%1:18:00:: 10760622 1 0 -voucher%1:10:00:: 06518068 3 0 -voucher%1:10:01:: 06675691 2 0 -voucher%1:18:00:: 10760763 1 0 -vouchsafe%2:40:00:: 02255715 1 1 -vouge%1:06:00:: 04542221 1 0 -voussoir%1:06:00:: 04542329 1 0 -vouvray%1:13:00:: 07899769 1 0 -vow%1:10:00:: 07228751 1 0 -vow%2:32:00:: 00886759 1 4 -vow%2:32:01:: 00886978 2 0 -vowel%1:10:00:: 07112550 1 3 -vowel%1:10:01:: 07114712 2 0 -vowel_point%1:10:00:: 07114870 1 0 -vowel_rhyme%1:10:00:: 07097346 1 0 -vowel_sound%1:10:00:: 07112550 1 1 -vowel_system%1:10:00:: 07113903 1 3 -vowelise%2:32:00:: 00983635 1 0 -vowelize%2:32:00:: 00983635 1 0 -vowellike%5:00:00:vocalic:02 02287510 1 0 -vower%1:18:00:: 10760951 1 0 -vox%1:10:00:: 07110615 1 0 -vox_angelica%1:06:00:: 04542474 1 0 -vox_humana%1:06:00:: 04542595 1 0 -vox_populi%1:09:00:: 05949726 1 0 -voyage%1:04:00:: 00312553 2 2 -voyage%1:04:01:: 00312784 1 11 -voyage%2:38:00:: 01846320 1 0 -voyager%1:18:00:: 10761190 1 1 -voyageurs_national_park%1:15:00:: 08609685 1 0 -voyeur%1:18:00:: 10761326 1 0 -voyeurism%1:04:00:: 00738372 1 0 -voyeuristic%3:01:00:: 03129648 1 0 -voyeuristical%3:01:00:: 03129648 1 0 -voyeuristically%4:02:00:: 00493845 1 0 -voznesenski%1:18:00:: 11369444 1 0 -vroom%1:11:00:: 07399620 1 0 -vroom%2:32:00:: 01046357 1 0 -vt%1:15:00:: 09147964 1 0 -vuillard%1:18:00:: 11369551 1 0 -vulcan%1:18:00:: 09562166 1 0 -vulcanisation%1:22:00:: 13573915 1 0 -vulcanise%2:30:00:: 00538043 1 0 -vulcanise%2:30:01:: 00516932 2 0 -vulcanised%5:00:00:processed:00 01951943 1 0 -vulcaniser%1:18:00:: 10761519 1 0 -vulcanite%1:27:00:: 15007534 1 0 -vulcanization%1:22:00:: 13573915 1 0 -vulcanize%2:30:00:: 00538043 1 0 -vulcanize%2:30:01:: 00516932 2 0 -vulcanized%5:00:00:processed:00 01951943 1 0 -vulcanized_fiber%1:06:00:: 03331244 1 0 -vulcanizer%1:18:00:: 10761519 1 0 -vulcanology%1:09:00:: 06120653 1 0 -vulgar%5:00:00:indecent:00 00683531 4 0 -vulgar%5:00:00:lowborn:00 01593079 2 0 -vulgar%5:00:00:unrefined:01 01950198 1 2 -vulgar%5:00:01:informal:02 01046226 3 0 -vulgar_latin%1:10:00:: 06963429 1 0 -vulgarian%1:18:00:: 10761693 1 0 -vulgarisation%1:04:00:: 00273077 2 0 -vulgarisation%1:04:01:: 01268020 1 0 -vulgarise%2:29:00:: 00011698 3 0 -vulgarise%2:30:01:: 00582318 2 0 -vulgarise%2:32:00:: 00970215 1 0 -vulgariser%1:18:00:: 10761858 1 0 -vulgariser%1:18:01:: 10454752 2 0 -vulgarism%1:07:00:: 04817280 2 0 -vulgarism%1:10:00:: 07124340 1 0 -vulgarity%1:07:01:: 04817280 1 0 -vulgarization%1:04:00:: 00273077 2 0 -vulgarization%1:04:01:: 01268020 1 0 -vulgarize%2:29:00:: 00011698 3 0 -vulgarize%2:30:01:: 00582318 2 0 -vulgarize%2:32:00:: 00970215 1 0 -vulgarizer%1:18:00:: 10761858 1 0 -vulgarizer%1:18:01:: 10454752 2 0 -vulgarly%4:02:00:: 00459521 1 0 -vulgate%1:10:00:: 06448594 1 0 -vulnerability%1:07:00:: 05042871 2 0 -vulnerability%1:26:00:: 14543931 1 3 -vulnerable%3:00:00:: 02523275 1 8 -vulnerable%5:00:00:susceptible:00 02363166 2 0 -vulnerable%5:00:00:weak:00 02326482 3 0 -vulnerably%4:02:00:: 00493974 1 0 -vulpecula%1:17:00:: 09473685 1 0 -vulpecular%3:01:00:: 02839865 1 0 -vulpes%1:05:00:: 02118854 1 0 -vulpes_fulva%1:05:00:: 02119477 1 0 -vulpes_macrotis%1:05:00:: 02119789 1 0 -vulpes_velox%1:05:00:: 02119634 1 0 -vulpes_vulpes%1:05:00:: 02119022 1 0 -vulpine%3:01:00:: 02839865 1 1 -vultur%1:05:00:: 01619675 1 0 -vultur_gryphus%1:05:00:: 01619835 1 0 -vulture%1:05:00:: 01616318 1 4 -vulture%1:18:00:: 10293172 2 0 -vulturine%5:00:00:aggressive:00 00084022 1 0 -vulturous%5:00:00:aggressive:00 00084022 1 0 -vulva%1:08:00:: 05521636 1 0 -vulval%3:01:00:: 02840203 1 0 -vulvar%3:01:00:: 02840203 1 0 -vulvar_slit%1:08:00:: 05522784 1 0 -vulvectomy%1:04:00:: 00716676 1 0 -vulvitis%1:26:00:: 14358993 1 0 -vulvovaginitis%1:26:00:: 14359073 1 0 -vx_gas%1:27:00:: 14960963 1 0 -vyacheslav_mikhailovich_molotov%1:18:00:: 11184927 1 0 -w%1:10:00:: 06833544 4 0 -w%1:23:00:: 13644522 3 0 -w%1:24:00:: 13834399 2 0 -w%1:27:00:: 14659512 1 0 -w-shaped%5:00:00:formed:00 02151527 1 0 -w._b._yeats%1:18:00:: 11402463 1 0 -w._c._fields%1:18:00:: 10970718 1 0 -w._c._handy%1:18:00:: 11027885 1 0 -w._e._b._du_bois%1:18:00:: 10944013 1 0 -w._h._auden%1:18:00:: 10828233 1 0 -w._h._hudson%1:18:00:: 11064330 1 0 -w._k._kellogg%1:18:00:: 11099438 1 0 -w._somerset_maugham%1:18:00:: 11164970 1 0 -w._v._quine%1:18:00:: 11250991 1 0 -w._w._jacobs%1:18:00:: 11078059 1 0 -w.c.%1:06:00:: 04558478 1 0 -w.m.d.%1:06:00:: 04565963 1 0 -wa%1:15:00:: 09152944 1 0 -wabash%1:17:00:: 09473808 1 0 -wabash_river%1:17:00:: 09473808 1 0 -wac%1:14:00:: 08212740 2 0 -wac%1:18:00:: 10761962 1 0 -wackily%4:02:00:: 00303930 1 0 -wacko%1:18:00:: 10368414 1 0 -wacky%5:00:00:foolish:00 02571536 1 1 -wacky%5:00:00:insane:00 02074929 2 0 -waco%1:15:00:: 09146813 1 0 -wad%1:13:00:: 07579399 3 0 -wad%1:23:00:: 13774404 2 0 -wad%1:27:00:: 15112702 1 0 -wad%2:35:00:: 01524298 2 0 -wad%2:35:01:: 01483779 1 1 -wadding%1:27:00:: 14976448 1 0 -waddle%1:04:00:: 00290406 1 0 -waddle%2:38:00:: 01918803 1 0 -waddler%1:18:00:: 10762064 1 0 -wade%1:18:00:: 11369676 1 0 -wade%2:38:00:: 01916214 1 4 -wader%1:05:01:: 02000954 1 0 -waders%1:06:00:: 04542715 1 0 -wadi%1:17:00:: 09474010 1 0 -wading%1:04:00:: 00293307 1 0 -wading_bird%1:05:00:: 02000954 1 0 -wading_pool%1:06:00:: 04542858 1 0 -wads%1:23:00:: 13777509 1 1 -wafer%1:13:01:: 07695012 2 0 -wafer%1:13:02:: 07687053 3 0 -wafer%1:27:00:: 14705183 1 1 -wafer-like%5:00:00:cooked:00 00619238 1 0 -wafer-thin%4:02:00:: 00516401 1 0 -wafer-thin%5:00:00:thin:01 02415294 1 0 -waffle%1:13:00:: 07641699 1 1 -waffle%2:42:00:: 02640440 1 0 -waffle_iron%1:06:00:: 04542943 1 0 -waffler%1:18:00:: 10762212 1 0 -waft%1:06:00:: 03911866 1 0 -waft%2:38:00:: 01874178 1 1 -waft%2:43:00:: 02769783 2 0 -wafture%1:10:00:: 07274027 1 0 -wag%1:04:00:: 00347652 2 0 -wag%1:18:00:: 10762342 1 1 -wag%2:38:00:: 01898592 1 3 -wage%1:21:00:: 13279262 1 70 -wage%2:41:00:: 02376089 1 9 -wage-earning%5:00:00:blue-collar:00 02557145 1 0 -wage-earning%5:00:00:lower-class:00 00260100 2 0 -wage_claim%1:10:00:: 07192845 1 0 -wage_concession%1:10:00:: 07217260 1 0 -wage_earner%1:18:00:: 10041887 1 0 -wage_floor%1:10:00:: 06658441 1 0 -wage_freeze%1:04:00:: 00809373 1 0 -wage_hike%1:07:00:: 05110185 1 0 -wage_increase%1:07:00:: 05110185 1 0 -wage_scale%1:24:00:: 13853546 1 0 -wage_schedule%1:24:00:: 13853546 1 0 -wage_setter%1:26:00:: 14494594 1 1 -wager%1:04:00:: 00506658 1 1 -wager%1:21:00:: 13343526 2 0 -wager%2:32:00:: 00918580 2 0 -wager%2:33:00:: 01155687 1 0 -wagerer%1:18:00:: 09851876 1 0 -wages%1:11:00:: 07295629 1 2 -wagga_wagga%1:15:00:: 08833524 1 0 -waggery%1:04:00:: 00515069 2 0 -waggery%1:10:00:: 06781281 1 0 -waggish%5:00:00:humorous:00 01268002 1 0 -waggishly%4:02:00:: 00494053 1 0 -waggishness%1:10:00:: 06781281 1 0 -waggle%1:04:00:: 00347652 1 0 -waggle%2:38:00:: 01898592 1 1 -waggle%2:38:01:: 01871321 2 0 -waggon%1:06:00:: 04543158 1 0 -waggon%1:06:01:: 02814533 2 0 -waggoner%1:18:00:: 10762607 1 0 -waggonwright%1:18:00:: 10762693 1 0 -wagner%1:10:00:: 07278925 3 0 -wagner%1:18:00:: 11369834 2 0 -wagner%1:18:01:: 11370068 1 0 -wagnerian%1:18:00:: 10762480 1 0 -wagnerian%3:01:00:: 03036974 1 0 -wagon%1:06:00:: 04543158 1 24 -wagon%1:06:01:: 02814533 5 0 -wagon%1:06:02:: 03977966 2 1 -wagon%1:06:04:: 04543509 4 0 -wagon%1:17:00:: 09219858 3 0 -wagon-lit%1:06:00:: 04236001 1 0 -wagon_tire%1:06:00:: 04543636 1 0 -wagon_train%1:14:00:: 08427629 1 0 -wagon_wheel%1:06:00:: 04543772 1 1 -wagoner%1:18:00:: 10762607 1 0 -wagonwright%1:18:00:: 10762693 1 0 -wagram%1:04:00:: 01299037 2 0 -wagram%1:15:00:: 08847165 1 0 -wagtail%1:05:00:: 01528396 1 0 -wahabi%1:18:00:: 10762792 1 0 -wahabism%1:09:00:: 06236602 1 0 -wahhabi%1:18:00:: 10762792 1 0 -wahhabism%1:09:00:: 06236602 1 0 -wahoo%1:05:00:: 02625258 3 0 -wahoo%1:20:01:: 12749679 2 0 -wahoo%1:20:02:: 12749852 1 0 -wahunsonacock%1:18:00:: 11245382 1 0 -wahvey%1:18:00:: 09538318 1 0 -waif%1:18:00:: 10763075 1 0 -waikiki%1:15:00:: 09079001 1 0 -wail%1:10:00:: 07211950 1 2 -wail%2:29:00:: 00066025 2 2 -wail%2:32:00:: 01046932 1 7 -wailer%1:18:00:: 10763245 1 0 -wailful%5:00:00:sorrowful:00 01365785 1 1 -wailing%1:04:01:: 00868799 1 1 -wailing%5:00:00:sorrowful:00 01365785 1 0 -wailing_wall%1:15:00:: 08797619 1 0 -wain%1:06:00:: 04543924 3 0 -wain%1:17:00:: 09219858 2 0 -wain%1:18:00:: 11370201 1 0 -wainscot%1:06:00:: 04543996 2 0 -wainscot%1:06:01:: 04544138 1 0 -wainscoted%5:00:00:adorned:00 00059669 1 1 -wainscoting%1:06:00:: 04543996 2 0 -wainscoting%1:06:01:: 04544325 1 0 -wainscotting%1:06:00:: 04543996 2 0 -wainscotting%1:06:01:: 04544325 1 0 -wainwright%1:18:00:: 10762693 1 0 -waist%1:06:00:: 04183663 2 0 -waist%1:08:00:: 05555688 1 4 -waist-deep%4:02:00:: 00494128 1 0 -waist-high%4:02:00:: 00494128 1 0 -waist-length%5:00:00:fractional:00 00517816 1 0 -waist_anchor%1:06:00:: 04188985 1 0 -waist_pack%1:06:00:: 04544450 1 0 -waistband%1:06:00:: 03438071 1 0 -waistcloth%1:06:00:: 03438071 1 0 -waistcoat%1:06:00:: 04531873 1 0 -waistline%1:08:00:: 05555688 1 0 -wait%1:04:00:: 01063939 2 2 -wait%1:28:00:: 15272029 1 2 -wait%2:31:00:: 00720063 3 33 -wait%2:41:00:: 02413290 4 2 -wait%2:42:00:: 02637938 1 100 -wait%2:42:01:: 02641463 2 49 -wait_on%2:41:00:: 02540670 1 1 -waite%1:18:00:: 11370314 1 0 -waiter%1:18:00:: 10763383 1 4 -waiter%1:18:01:: 10763725 2 0 -waiter's_assistant%1:18:00:: 09881358 1 0 -waiting%1:04:00:: 01063939 1 2 -waiting%5:00:00:ready:00 01931926 1 2 -waiting_area%1:06:00:: 03691817 1 0 -waiting_game%1:09:00:: 05909306 1 0 -waiting_line%1:14:00:: 08432345 1 0 -waiting_list%1:10:00:: 06497013 1 1 -waiting_room%1:06:00:: 03691817 1 0 -waitress%1:18:00:: 10763620 1 1 -waitress%2:41:00:: 02413290 1 0 -waive%2:40:00:: 02303331 2 0 -waive%2:41:00:: 02534062 1 1 -waiver%1:04:00:: 00213694 1 0 -wajda%1:18:00:: 11370554 1 0 -wakashan%1:10:00:: 06914423 2 0 -wakashan%1:18:00:: 09671453 1 0 -wakashan_language%1:10:00:: 06914423 1 0 -wake%1:04:00:: 01029883 4 0 -wake%1:11:00:: 07344368 3 0 -wake%1:15:00:: 08838556 2 0 -wake%1:19:00:: 11411610 1 4 -wake%2:29:00:: 00020133 1 7 -wake%2:29:01:: 00018526 2 3 -wake%2:29:02:: 00018813 5 0 -wake%2:32:02:: 00872747 4 0 -wake%2:37:00:: 01761120 3 0 -wake-robin%1:20:00:: 12468243 1 0 -wake-robin%1:20:02:: 11784497 2 0 -wake-up_call%1:10:00:: 06274546 2 0 -wake-up_call%1:10:01:: 07224481 1 0 -wake-up_signal%1:10:00:: 06804728 1 0 -wake_board%1:06:00:: 04544626 1 0 -wake_island%1:15:00:: 08838556 1 0 -wake_up%2:29:00:: 00018526 2 7 -wake_up%2:29:01:: 00018813 1 8 -wakeboard%1:06:00:: 04544626 1 0 -wakeful%5:00:00:alert:00 00091764 1 5 -wakeful%5:00:00:awake:00 00187590 3 0 -wakeful%5:00:00:shallow:02 00693570 2 0 -wakefulness%1:09:00:: 05678474 1 4 -wakefulness%1:09:01:: 05705722 3 0 -wakefulness%1:26:00:: 14022959 2 0 -wakeless%5:00:00:deep:02 00693020 1 0 -waken%2:29:00:: 00018526 2 0 -waken%2:29:01:: 00018813 1 0 -wakening%1:04:00:: 01259773 1 0 -waker%1:18:00:: 10763878 2 0 -waker%1:18:01:: 10763985 1 0 -waking%1:09:00:: 05678300 1 0 -waking%5:00:00:awake:00 00187590 1 0 -waking_up%1:04:00:: 01259773 1 1 -walapai%1:10:00:: 06923283 2 0 -walapai%1:18:00:: 09671808 1 0 -walbiri%1:10:00:: 06940601 1 0 -waldenses%1:14:00:: 08150892 1 0 -waldheim%1:18:00:: 11370654 1 0 -waldmeister%1:13:00:: 07821260 2 0 -waldmeister%1:20:00:: 12665271 1 0 -waldorf_salad%1:13:00:: 07808022 1 0 -wale%1:06:00:: 04544805 2 0 -wale%1:26:00:: 14298620 1 0 -wales%1:15:00:: 08894456 1 0 -walesa%1:18:00:: 11370990 1 0 -walhalla%1:09:00:: 05629204 1 0 -walk%1:04:00:: 00283568 1 4 -walk%1:04:01:: 00127286 2 4 -walk%1:04:02:: 00287142 6 1 -walk%1:04:03:: 00284798 4 2 -walk%1:04:04:: 00584248 7 0 -walk%1:06:00:: 04544979 5 1 -walk%1:07:00:: 05003090 3 3 -walk%2:33:00:: 01113473 3 3 -walk%2:33:01:: 01140654 5 1 -walk%2:38:00:: 01904930 1 184 -walk%2:38:01:: 01907076 2 3 -walk%2:38:02:: 01959776 8 0 -walk%2:38:03:: 01912893 4 1 -walk%2:38:04:: 01882170 10 0 -walk%2:38:05:: 01906823 9 0 -walk%2:41:00:: 02518839 6 0 -walk%2:41:01:: 02470518 7 0 -walk-in%1:06:00:: 04545984 4 0 -walk-in%1:11:00:: 07475762 3 0 -walk-in%1:18:00:: 10764128 2 0 -walk-in%1:18:01:: 10764296 1 0 -walk-in%5:00:00:deep:01 00691497 1 0 -walk-on%1:18:00:: 10764622 1 0 -walk-on%3:00:00:: 00153239 1 0 -walk-through%1:04:00:: 00897608 3 0 -walk-through%1:04:01:: 00293753 4 0 -walk-through%1:06:00:: 04546734 2 0 -walk-through%1:10:00:: 07282289 1 0 -walk-to%5:00:00:close:01 00450402 1 1 -walk-up%1:06:00:: 04546481 2 1 -walk-up%1:06:01:: 04546595 1 1 -walk-up%5:00:00:low-rise:00 01219007 1 0 -walk-up_apartment%1:06:00:: 04546595 1 0 -walk_about%2:38:00:: 01910965 1 1 -walk_around%2:38:00:: 01910965 1 6 -walk_around%2:38:01:: 01911232 2 3 -walk_around%2:41:00:: 02518625 3 0 -walk_around%2:41:01:: 02419438 4 0 -walk_away%2:38:00:: 02010082 1 0 -walk_in%2:38:00:: 02017149 1 0 -walk_of_life%1:04:00:: 00584248 1 1 -walk_off%2:38:01:: 02010082 2 0 -walk_off%2:40:00:: 02322433 1 1 -walk_on_air%2:37:00:: 01813668 1 1 -walk_out%2:31:03:: 00614664 3 0 -walk_out%2:38:00:: 02010400 2 1 -walk_out%2:41:00:: 02412647 1 2 -walk_out_of%2:38:00:: 02008863 1 2 -walk_over%2:33:00:: 01102667 1 0 -walk_through%2:36:00:: 01723437 1 0 -walkabout%1:04:01:: 00293417 3 0 -walkabout%1:04:02:: 00293545 2 0 -walkabout%1:04:03:: 00293657 1 0 -walkaway%1:11:00:: 07475107 1 0 -walker%1:06:00:: 04545305 6 0 -walker%1:06:01:: 04545471 5 0 -walker%1:06:02:: 04545748 4 0 -walker%1:18:00:: 10412055 3 0 -walker%1:18:01:: 11371125 2 0 -walker%1:18:02:: 11371254 1 0 -walker_foxhound%1:05:00:: 02089867 1 0 -walker_hound%1:05:00:: 02089867 1 0 -walker_percy%1:18:00:: 11229662 1 0 -walker_smith%1:18:00:: 11266279 1 0 -walkie-talkie%1:06:00:: 04545858 1 0 -walking%1:04:00:: 00283568 1 0 -walking%5:00:00:close:01 00450402 1 1 -walking_delegate%1:18:00:: 10764465 1 0 -walking_fern%1:20:00:: 13181811 1 0 -walking_horse%1:05:00:: 02379430 1 0 -walking_leaf%1:05:00:: 02232223 2 0 -walking_leaf%1:20:00:: 13181811 1 0 -walking_on_air%1:26:00:: 13987905 1 0 -walking_papers%1:10:00:: 07276414 1 0 -walking_shoe%1:06:00:: 04546081 1 0 -walking_stick%1:05:00:: 02231487 2 0 -walking_stick%1:06:00:: 04546194 1 1 -walkingstick%1:05:00:: 02231487 1 0 -walkman%1:06:00:: 04546340 1 0 -walkout%1:04:00:: 01244341 1 1 -walkout%1:04:01:: 01178195 2 0 -walkover%1:04:00:: 00575365 2 0 -walkover%1:04:01:: 00434568 1 1 -walkway%1:06:00:: 04544979 1 0 -walky-talky%1:06:00:: 04545858 1 0 -wall%1:06:00:: 04546855 1 82 -wall%1:06:01:: 04051825 8 0 -wall%1:06:02:: 04547592 7 0 -wall%1:06:03:: 04547821 6 0 -wall%1:08:00:: 05604254 3 1 -wall%1:17:00:: 09474162 2 15 -wall%1:17:01:: 09474412 5 0 -wall%1:26:00:: 14564779 4 0 -wall%2:33:00:: 01130607 1 0 -wall-paperer%1:18:00:: 10765189 1 0 -wall_barley%1:20:00:: 12123741 1 0 -wall_bracket%1:06:00:: 02888569 1 0 -wall_clock%1:06:00:: 04548280 1 0 -wall_creeper%1:05:00:: 01590220 1 0 -wall_fern%1:20:00:: 13173882 1 0 -wall_germander%1:20:00:: 12869874 1 0 -wall_hanging%1:06:00:: 03491178 1 0 -wall_in%2:35:00:: 01389942 1 0 -wall_of_silence%1:04:00:: 01050356 1 0 -wall_painting%1:06:00:: 03799710 1 0 -wall_panel%1:06:00:: 04548503 1 0 -wall_pellitory%1:20:00:: 12394638 1 0 -wall_pepper%1:20:00:: 12786097 1 0 -wall_plate%1:06:00:: 04548613 1 0 -wall_plug%1:06:00:: 04548771 1 1 -wall_rock%1:17:00:: 09474663 1 0 -wall_rocket%1:20:00:: 11885292 1 0 -wall_rue%1:20:00:: 13182462 1 0 -wall_rue_spleenwort%1:20:00:: 13182462 1 0 -wall_socket%1:06:00:: 04548771 1 0 -wall_st.%1:15:00:: 09122779 1 0 -wall_street%1:14:00:: 08073468 2 0 -wall_street%1:15:00:: 09122779 1 2 -wall_tent%1:06:00:: 04549028 1 1 -wall_unit%1:06:00:: 04549122 1 0 -wall_up%2:35:00:: 01389942 1 1 -walla_walla%1:15:00:: 09155065 1 0 -wallaby%1:05:00:: 01877812 1 0 -wallace%1:18:00:: 11371443 3 0 -wallace%1:18:01:: 11371622 2 0 -wallace%1:18:02:: 11371778 1 0 -wallace_carothers%1:18:00:: 10883533 1 0 -wallace_hume_carothers%1:18:00:: 10883533 1 0 -wallace_stevens%1:18:00:: 11317416 1 0 -wallah%1:18:00:: 10764719 1 0 -wallboard%1:06:00:: 04547991 1 0 -wallenstein%1:18:00:: 11372054 1 0 -waller%1:18:00:: 11372242 1 0 -wallet%1:06:00:: 04548362 1 2 -walleye%1:05:00:: 02557749 2 0 -walleye%1:26:00:: 14557573 1 0 -walleyed%3:00:00:: 00653740 1 0 -walleyed_pike%1:05:00:: 02557749 1 0 -wallflower%1:18:00:: 10764907 3 0 -wallflower%1:20:01:: 11883328 2 0 -wallflower%1:20:02:: 11887119 1 1 -wallis_warfield_simpson%1:18:00:: 11301809 1 0 -wallis_warfield_windsor%1:18:00:: 11301809 1 0 -walloon%1:10:00:: 06966070 2 0 -walloon%1:18:00:: 09750641 1 0 -walloons%1:14:00:: 08484986 1 0 -wallop%1:04:00:: 01176031 2 0 -wallop%1:19:00:: 11414411 1 0 -wallop%2:33:00:: 01103180 2 3 -wallop%2:35:00:: 01415807 1 3 -walloper%1:10:00:: 06757676 3 0 -walloper%1:18:00:: 10765000 2 0 -walloper%1:18:01:: 10765098 1 0 -walloping%1:11:00:: 07476623 1 0 -walloping%5:00:00:large:00 01388062 1 1 -wallow%1:11:00:: 07442874 2 0 -wallow%1:17:00:: 09474557 1 0 -wallow%2:34:00:: 01191403 5 0 -wallow%2:34:01:: 01191974 1 3 -wallow%2:37:00:: 01823370 4 0 -wallow%2:38:00:: 01866030 2 2 -wallow%2:38:02:: 02041422 3 1 -wallpaper%1:27:00:: 15093938 1 3 -wallpaper%2:35:00:: 01268112 1 0 -wallpaperer%1:18:00:: 10765189 1 0 -wally%1:18:00:: 10765305 1 0 -walnut%1:13:00:: 07771212 1 1 -walnut%1:20:00:: 12318378 3 0 -walnut%1:20:02:: 12318615 2 0 -walnut_blight%1:26:00:: 14219394 1 0 -walnut_family%1:20:00:: 12317919 1 0 -walnut_oil%1:13:00:: 07675535 1 0 -walnut_tree%1:20:00:: 12318378 1 1 -walpole%1:18:00:: 11372372 2 0 -walpole%1:18:01:: 11372599 1 0 -walpurgis_night%1:28:00:: 15181977 1 0 -walrus%1:05:00:: 02081571 1 1 -walrus_moustache%1:08:00:: 05262698 1 0 -walrus_mustache%1:08:00:: 05262698 1 0 -walt_disney%1:18:00:: 10937126 1 0 -walt_disney_world%1:15:00:: 09075688 1 0 -walt_whitman%1:18:00:: 11384986 1 0 -walt_whitman_bridge%1:06:00:: 04549276 1 0 -walter%1:18:00:: 11372799 1 0 -walter_de_la_mare%1:18:00:: 10928645 1 0 -walter_elias_disney%1:18:00:: 10937126 1 0 -walter_gropius%1:18:00:: 11017295 1 0 -walter_hess%1:18:00:: 11047961 1 0 -walter_john_de_la_mare%1:18:00:: 10928645 1 0 -walter_lippmann%1:18:00:: 11134620 1 0 -walter_mitty%1:18:00:: 10765435 1 0 -walter_piston%1:18:00:: 11235926 1 0 -walter_ralegh%1:18:00:: 11252627 1 0 -walter_raleigh%1:18:00:: 11252627 1 0 -walter_reed%1:18:00:: 11256335 1 0 -walter_rudolf_hess%1:18:00:: 11047961 1 0 -walter_scott%1:18:00:: 11289161 1 0 -walter_william_skeat%1:18:00:: 11304354 1 0 -walther_hermann_nernst%1:18:00:: 11203287 1 0 -walther_richard_rudolf_hess%1:18:00:: 11047701 1 0 -walton%1:18:00:: 11372896 3 0 -walton%1:18:01:: 11373099 2 0 -walton%1:18:02:: 11373231 1 0 -waltz%1:04:00:: 00537534 3 0 -waltz%1:10:00:: 07058184 2 0 -waltz%1:11:00:: 07475762 1 0 -waltz%2:38:00:: 01895612 1 0 -waltz_around%2:38:00:: 01895612 1 0 -waltzer%1:18:00:: 10765587 1 0 -wamble%2:38:00:: 01871321 1 0 -wampanoag%1:18:00:: 09671641 1 0 -wampee%1:20:00:: 12609968 1 0 -wampum%1:06:00:: 04549407 2 0 -wampum%1:21:00:: 13385216 1 0 -wampumpeag%1:06:00:: 04549407 1 0 -wan%1:06:00:: 04583477 1 0 -wan%2:29:00:: 00087653 1 0 -wan%5:00:00:colorless:02 00405879 2 0 -wan%5:00:00:weak:00 02325984 1 1 -wan%5:00:02:unanimated:00 00119750 3 0 -wanamaker%1:18:00:: 11373379 1 0 -wand%1:06:00:: 04549629 1 1 -wand%1:06:01:: 02809364 4 0 -wand%1:10:01:: 07267573 3 0 -wand%1:20:00:: 13164285 2 0 -wanda_landowska%1:18:00:: 11115929 1 0 -wandala%1:10:00:: 06984101 1 0 -wander%2:32:00:: 00780575 5 0 -wander%2:38:00:: 01881180 1 18 -wander%2:38:01:: 01882814 4 0 -wander%2:38:02:: 02102840 3 0 -wander%2:41:00:: 02576503 2 1 -wanderer%1:10:00:: 06579715 2 0 -wanderer%1:18:00:: 10765679 1 1 -wandering%1:04:00:: 00297062 1 0 -wandering%5:00:00:indirect:00 00763407 2 2 -wandering%5:00:01:unsettled:01 02127509 3 0 -wandering%5:00:02:unsettled:01 02128084 1 2 -wandering_albatross%1:05:00:: 02058594 1 0 -wandering_jew%1:18:00:: 10765885 1 0 -wandering_nerve%1:08:00:: 05480076 1 0 -wanderlust%1:16:00:: 09183140 1 0 -wandflower%1:20:01:: 12251278 2 0 -wandflower%1:20:02:: 12418507 1 0 -wane%1:22:00:: 13470491 1 0 -wane%2:30:00:: 00433933 2 1 -wane%2:30:01:: 00433778 3 0 -wane%2:30:02:: 00431826 1 2 -wangle%1:09:00:: 05906554 1 0 -wangle%2:41:00:: 02527431 1 1 -wangle%2:41:01:: 02576921 2 0 -wangler%1:18:00:: 10089615 1 0 -wangling%1:09:00:: 05906554 1 0 -waning%1:11:00:: 07423001 1 1 -waning%3:00:00:: 02534690 1 0 -wank%1:04:00:: 00856193 1 0 -wank%2:35:00:: 01430633 1 0 -wankel_engine%1:06:00:: 04549721 1 0 -wankel_rotary_engine%1:06:00:: 04549721 1 0 -wanker%1:18:00:: 10717196 1 0 -wanly%4:02:00:: 00494224 1 0 -wannabe%1:18:00:: 09801533 1 0 -wannabee%1:18:00:: 09801533 1 0 -wanness%1:07:00:: 04977561 1 0 -want%1:12:00:: 07486229 4 1 -want%1:17:00:: 09367991 3 1 -want%1:26:00:: 14493426 1 3 -want%1:26:01:: 14449405 2 1 -want%2:31:01:: 00709205 4 2 -want%2:34:00:: 01188725 2 15 -want%2:35:00:: 01317064 3 3 -want%2:37:00:: 01825237 1 389 -want%2:42:01:: 02632567 5 0 -want_ad%1:10:00:: 07249932 1 0 -wanted%3:00:00:: 02526925 1 0 -wanted%5:00:00:loved:00 01462625 2 0 -wanted_notice%1:10:00:: 07276538 1 0 -wanted_poster%1:10:00:: 07276538 1 0 -wanter%1:18:00:: 10766025 1 0 -wanting%5:00:00:inadequate:00 00052012 2 0 -wanting%5:00:00:nonexistent:00 00927832 1 0 -wanton%1:18:00:: 10766260 1 0 -wanton%2:29:00:: 00012753 6 0 -wanton%2:32:00:: 01038434 5 0 -wanton%2:34:00:: 01204803 4 0 -wanton%2:40:01:: 02266422 3 0 -wanton%2:42:00:: 02708123 1 0 -wanton%2:42:01:: 02615451 2 0 -wanton%5:00:00:unchaste:00 00361837 2 0 -wanton%5:00:00:unmotivated:00 01559270 1 0 -wanton_away%2:40:00:: 02266422 2 0 -wanton_away%2:42:00:: 02708123 1 0 -wantonly%4:02:00:: 00388944 2 0 -wantonly%4:02:01:: 00494336 1 0 -wantonness%1:07:00:: 04885398 1 0 -wantonness%1:07:01:: 04851715 2 0 -wapiti%1:05:00:: 02431785 1 0 -wapiti%1:05:01:: 02431122 2 0 -war%1:04:00:: 00973077 1 78 -war%1:04:01:: 00801125 4 0 -war%1:04:02:: 01236296 3 1 -war%1:26:00:: 13981403 2 27 -war%2:33:00:: 01093172 1 0 -war-ridden%5:00:00:unpeaceful:00 01742537 1 1 -war-torn%5:00:00:destroyed:00 00737033 1 0 -war-worn%5:00:00:destroyed:00 00737033 1 0 -war_admiral%1:05:00:: 02383912 1 0 -war_advocacy%1:09:00:: 06222236 1 0 -war_baby%1:18:00:: 10766409 1 0 -war_between_the_states%1:04:00:: 01301630 1 0 -war_bride%1:18:00:: 10766626 1 0 -war_chest%1:21:00:: 13360254 1 0 -war_cloud%1:11:00:: 07286278 1 0 -war_correspondent%1:18:00:: 10766718 1 0 -war_crime%1:04:00:: 00782518 1 1 -war_criminal%1:18:00:: 10766899 1 0 -war_cry%1:10:00:: 07123404 2 0 -war_cry%1:10:01:: 07152752 1 0 -war_dance%1:04:00:: 00543114 1 0 -war_department%1:14:00:: 08145092 1 1 -war_game%1:04:00:: 00461402 1 0 -war_god%1:18:00:: 10767654 1 1 -war_hawk%1:18:01:: 10162644 1 0 -war_machine%1:14:00:: 08199025 1 0 -war_of_1812%1:04:00:: 01311344 1 0 -war_of_american_independence%1:04:00:: 01302086 1 0 -war_of_greek_independence%1:04:00:: 01310074 1 0 -war_of_nerves%1:04:00:: 00953410 1 0 -war_of_the_austrian_succession%1:04:00:: 01310347 1 0 -war_of_the_grand_alliance%1:04:00:: 01310536 1 0 -war_of_the_league_of_augsburg%1:04:00:: 01310536 1 0 -war_of_the_roses%1:04:00:: 01311045 1 0 -war_of_the_spanish_succession%1:04:00:: 01310789 1 0 -war_paint%1:06:00:: 04552097 2 0 -war_paint%1:06:01:: 04552195 1 0 -war_paint%1:06:02:: 03714235 3 0 -war_party%1:14:00:: 08265912 1 0 -war_party%1:14:01:: 08264110 2 0 -war_power%1:26:00:: 13945682 1 0 -war_room%1:06:00:: 04552551 1 0 -war_secretary%1:04:00:: 00603131 1 0 -war_to_end_war%1:04:00:: 01311520 1 0 -war_vessel%1:06:00:: 04552696 1 0 -war_whoop%1:10:00:: 07123404 1 0 -war_widow%1:18:00:: 10768810 1 0 -war_zone%1:15:00:: 08688779 1 0 -waratah%1:20:01:: 12223569 2 0 -waratah%1:20:02:: 12223764 1 0 -warble%1:05:00:: 02195257 1 0 -warble%2:32:00:: 01050896 1 1 -warble%2:32:01:: 01050651 2 0 -warble_fly%1:05:00:: 02195091 1 0 -warbler%1:05:00:: 01563128 2 0 -warbler%1:18:00:: 10766492 1 0 -warburg%1:18:00:: 11373550 2 0 -warburg%1:18:01:: 11373672 1 0 -ward%1:06:00:: 04549919 3 1 -ward%1:06:01:: 02992032 7 0 -ward%1:15:00:: 08672397 2 2 -ward%1:18:00:: 10767020 1 3 -ward%1:18:01:: 11373897 6 0 -ward%1:18:02:: 11374085 5 0 -ward%1:18:03:: 11374281 4 0 -ward%2:33:00:: 01129337 1 0 -ward-heeler%1:18:00:: 10278805 1 2 -ward_off%2:33:00:: 01129591 2 0 -ward_off%2:41:00:: 02453321 1 0 -warden%1:18:00:: 10767154 1 0 -wardenship%1:04:00:: 00605812 1 0 -warder%1:18:00:: 10767265 1 0 -wardership%1:04:00:: 00605909 1 0 -wardress%1:18:00:: 10767432 1 0 -wardrobe%1:06:00:: 04550184 1 3 -wardrobe%1:06:01:: 04550426 2 1 -wardrobe%1:06:02:: 04550546 3 0 -wardroom%1:06:00:: 04550676 1 1 -ware%1:06:00:: 04550840 1 0 -ware%1:06:01:: 03748886 2 0 -ware%2:34:00:: 01158181 1 0 -warehouse%1:06:00:: 04551055 1 5 -warehouse%2:40:00:: 02282365 1 0 -warehouseman%1:18:00:: 10767519 1 0 -warehouseman's_lien%1:21:00:: 13402879 1 0 -warehouser%1:18:00:: 10767519 1 0 -warehousing%1:04:00:: 00372607 1 1 -warfare%1:04:00:: 00973077 1 9 -warfare%1:04:02:: 01236296 2 1 -warfarin%1:06:00:: 04551205 1 0 -warhead%1:06:00:: 04551375 1 0 -warhol%1:18:00:: 11374448 1 0 -warhorse%1:05:00:: 02378415 3 0 -warhorse%1:06:00:: 04551638 1 1 -warhorse%1:18:00:: 10749123 2 0 -warily%4:02:00:: 00226133 1 2 -wariness%1:07:00:: 04664413 1 0 -warji%1:10:00:: 06983320 1 0 -warlike%5:00:00:military:02 01518860 2 0 -warlike%5:00:00:unpeaceful:00 01742715 1 2 -warlock%1:18:00:: 10767762 1 0 -warlord%1:18:00:: 10767837 1 0 -warlpiri%1:10:00:: 06940601 1 0 -warm%2:30:00:: 00373250 1 2 -warm%2:30:01:: 00372958 2 1 -warm%3:00:01:: 02529264 1 27 -warm%3:00:02:: 02530861 2 8 -warm%3:00:03:: 02531919 3 3 -warm%4:02:00:: 00432314 1 0 -warm%5:00:00:enthusiastic:00 00886117 7 0 -warm%5:00:00:excitable:00 00919018 6 0 -warm%5:00:00:fresh:01 01068609 5 0 -warm%5:00:00:lively:00 00806387 8 0 -warm%5:00:00:loving:00 01464700 4 1 -warm%5:00:00:near:00 00445308 10 0 -warm%5:00:00:uncomfortable:00 00479192 9 0 -warm-blooded%3:00:00:: 02532508 1 0 -warm-toned%5:00:00:emotional:00 00856790 1 1 -warm-up%1:04:00:: 01144716 1 1 -warm_front%1:19:00:: 11460728 1 0 -warm_the_bench%2:41:00:: 02418029 1 0 -warm_to%2:37:00:: 01805113 1 2 -warm_up%2:29:00:: 00027064 5 1 -warm_up%2:29:01:: 00100905 4 1 -warm_up%2:30:00:: 00373250 3 1 -warm_up%2:30:01:: 00373112 2 2 -warm_up%2:41:00:: 02444397 1 2 -warmed%5:00:00:warm:01 02529761 1 1 -warmer%1:06:00:: 03508101 1 0 -warmhearted%3:00:00:: 02533313 1 0 -warmheartedness%1:12:00:: 07544647 2 0 -warmheartedness%1:12:01:: 07546279 1 0 -warming%1:19:00:: 11482140 2 0 -warming%1:22:00:: 13491876 1 0 -warming%5:00:00:hot:01 01248198 2 0 -warming%5:00:00:warm:01 02529859 1 1 -warming_pan%1:06:00:: 04551833 1 0 -warmly%4:02:00:: 00219855 1 1 -warmly%4:02:01:: 00432314 2 0 -warmness%1:07:00:: 05016753 2 0 -warmness%1:12:00:: 07544647 1 0 -warmonger%1:18:00:: 10316013 1 0 -warmongering%1:09:00:: 06222236 1 1 -warmth%1:07:00:: 04627000 5 0 -warmth%1:07:01:: 05016753 3 1 -warmth%1:07:02:: 04628192 4 0 -warmth%1:09:00:: 05725527 1 4 -warmth%1:12:00:: 07546279 2 1 -warn%2:32:00:: 00870213 1 22 -warn%2:32:01:: 00870577 2 5 -warn%2:32:02:: 00832907 4 0 -warn%2:32:03:: 00833071 3 0 -warner%1:18:00:: 10768022 2 0 -warner%1:18:01:: 11374589 1 0 -warning%1:10:00:: 07224151 1 13 -warning%1:10:01:: 06672297 2 9 -warning%1:10:02:: 07212874 3 0 -warning%5:00:00:dissuasive:00 01771124 1 0 -warning_bell%1:06:00:: 04444121 1 0 -warning_coloration%1:07:00:: 04979002 1 0 -warning_device%1:06:00:: 02694426 1 0 -warning_light%1:10:00:: 06874571 1 0 -warning_of_attack%1:10:00:: 07226151 1 0 -warning_of_war%1:10:00:: 07226330 1 0 -warning_signal%1:10:00:: 06803157 1 0 -warp%1:06:00:: 04551950 4 0 -warp%1:11:00:: 07434102 3 0 -warp%1:25:00:: 13885700 2 0 -warp%1:26:00:: 14504726 1 0 -warp%2:30:00:: 00356954 2 1 -warp%2:32:00:: 00835903 1 2 -warpath%1:04:00:: 00416646 2 0 -warpath%1:12:00:: 07548860 1 0 -warped%5:00:00:crooked:01 02314070 1 1 -warping%1:11:00:: 07434102 1 0 -warplane%1:06:00:: 04552348 1 0 -warragal%1:05:01:: 02115641 2 0 -warragal%1:05:02:: 02381744 1 0 -warrant%1:10:00:: 06547059 1 2 -warrant%1:10:01:: 06685456 4 0 -warrant%1:10:02:: 06687358 3 0 -warrant%1:21:00:: 13418219 2 0 -warrant%2:32:00:: 00896803 1 12 -warrant%2:32:01:: 00891936 2 0 -warrant_officer%1:18:00:: 10768391 1 0 -warrantee%1:10:00:: 06685456 3 0 -warrantee%1:18:00:: 10768148 2 0 -warrantee%1:18:01:: 10768272 1 0 -warranter%1:18:00:: 10149527 1 0 -warrantor%1:18:00:: 10149527 1 0 -warranty%1:10:00:: 06685456 1 0 -warren%1:14:00:: 07996598 5 0 -warren%1:15:00:: 08678515 4 0 -warren%1:17:00:: 09474765 3 0 -warren%1:18:00:: 11374789 2 0 -warren%1:18:01:: 11374952 1 0 -warren_burger%1:18:00:: 10872287 1 0 -warren_e._burger%1:18:00:: 10872287 1 0 -warren_earl_burger%1:18:00:: 10872287 1 0 -warren_gamaliel_harding%1:18:00:: 11028446 1 0 -warren_harding%1:18:00:: 11028446 1 0 -warrener%1:18:00:: 10768505 1 0 -warrigal%1:05:01:: 02115641 2 0 -warrigal%1:05:02:: 02381744 1 0 -warring%5:00:00:unpeaceful:00 01742537 1 0 -warrior%1:18:00:: 10768585 1 3 -warriorlike%5:00:00:military:02 01518694 1 0 -wars_of_the_roses%1:04:00:: 01311045 1 0 -warsaw%1:15:00:: 08983105 1 8 -warship%1:06:00:: 04552696 1 0 -warszawa%1:15:00:: 08983105 1 0 -wart%1:07:00:: 04696432 3 0 -wart%1:25:00:: 13895852 1 1 -wart%1:26:00:: 14464883 2 0 -warthog%1:05:00:: 02397096 1 0 -wartime%1:28:00:: 15293328 1 0 -wartlike%5:00:00:rough:00 02243255 1 0 -wartweed%1:20:00:: 12918609 1 0 -wartwort%1:20:00:: 12918609 1 0 -warty%5:00:00:rough:00 02243255 1 0 -warwick%1:18:00:: 11375087 1 0 -wary%3:00:00:: 00162386 1 2 -wary%5:00:00:distrustful:00 02464277 2 0 -wasabi%1:13:00:: 07857356 2 0 -wasabi%1:20:00:: 11899921 1 0 -wash%1:04:00:: 01096674 8 0 -wash%1:04:01:: 00255710 2 3 -wash%1:06:00:: 03648219 7 0 -wash%1:06:01:: 04553245 6 0 -wash%1:06:02:: 04553389 1 6 -wash%1:17:00:: 09474895 3 2 -wash%1:19:00:: 11423197 5 0 -wash%1:22:00:: 13574193 4 0 -wash%2:29:00:: 00036362 2 9 -wash%2:29:02:: 00036178 13 0 -wash%2:30:05:: 00557686 9 0 -wash%2:30:06:: 00217956 11 0 -wash%2:30:08:: 00217576 12 0 -wash%2:30:09:: 00274942 10 0 -wash%2:35:00:: 01535246 3 7 -wash%2:35:01:: 01536344 7 0 -wash%2:35:02:: 01270199 1 13 -wash%2:35:10:: 01269844 8 0 -wash%2:38:01:: 02098179 4 2 -wash%2:42:00:: 02742842 5 0 -wash%2:42:12:: 02703153 6 0 -wash-and-wear%1:06:00:: 04553561 1 0 -wash-and-wear%5:00:00:washable:00 02534042 1 0 -wash-hand_basin%1:06:00:: 04553703 1 0 -wash-hand_stand%1:06:00:: 04555400 1 0 -wash_away%2:30:00:: 00557686 2 0 -wash_away%2:30:01:: 00571273 1 0 -wash_down%2:30:00:: 00455079 2 1 -wash_down%2:34:00:: 01167290 1 2 -wash_drawing%1:06:00:: 04553245 1 0 -wash_leather%1:27:00:: 14762038 1 0 -wash_off%2:30:00:: 00557686 1 0 -wash_one's_hands%2:32:00:: 00902654 1 0 -wash_out%2:30:00:: 00542533 5 0 -wash_out%2:30:02:: 00280112 7 0 -wash_out%2:30:03:: 00282343 6 0 -wash_out%2:30:04:: 00557686 4 0 -wash_out%2:35:00:: 01605851 3 0 -wash_out%2:35:01:: 01535742 2 1 -wash_out%2:41:00:: 02594833 1 1 -wash_room%1:06:00:: 04018667 1 0 -wash_up%2:29:00:: 00025034 1 1 -wash_up%2:29:01:: 00075421 5 0 -wash_up%2:30:00:: 00423257 4 0 -wash_up%2:35:02:: 01533166 3 0 -wash_up%2:38:00:: 02080482 2 0 -washable%3:00:00:: 02533810 1 0 -washables%1:06:00:: 03648219 1 0 -washbasin%1:06:00:: 04553703 2 0 -washbasin%1:06:02:: 04553920 1 1 -washboard%1:06:00:: 04554211 2 0 -washboard%1:06:01:: 04554406 1 0 -washbowl%1:06:00:: 04553703 2 0 -washbowl%1:06:02:: 04553920 1 1 -washcloth%1:06:00:: 04554523 1 0 -washday%1:28:00:: 15222840 1 0 -washed%5:00:00:clean:01 00419175 1 2 -washed%5:00:00:wet:01 02551141 2 0 -washed-out%5:00:00:colorless:02 00404961 2 0 -washed-out%5:00:00:tired:00 02433451 1 0 -washed-up%5:00:00:unsuccessful:00 02334321 1 0 -washer%1:06:00:: 04554684 3 0 -washer%1:06:01:: 04554871 2 0 -washer%1:18:00:: 10768903 1 0 -washerman%1:18:00:: 10769084 1 0 -washerwoman%1:18:00:: 10769188 1 0 -washhouse%1:06:00:: 04554998 1 0 -washing%1:04:00:: 00255710 1 14 -washing%1:06:00:: 03648219 2 0 -washing-up%1:04:00:: 00256122 1 0 -washing_day%1:28:00:: 15222840 1 0 -washing_machine%1:06:00:: 04554684 1 0 -washing_powder%1:06:00:: 04254535 1 0 -washing_soda%1:27:00:: 15044844 1 0 -washington%1:14:00:: 08357129 3 2 -washington%1:15:00:: 09152944 2 3 -washington%1:15:01:: 09070793 1 27 -washington%1:18:00:: 11375418 4 1 -washington%1:18:01:: 11375677 5 0 -washington's_birthday%1:28:00:: 15187451 1 0 -washington_d.c.%1:15:00:: 09070793 1 0 -washington_irving%1:18:00:: 11073453 1 0 -washington_monument%1:06:00:: 04555101 1 0 -washingtonian%1:18:00:: 09746189 2 0 -washingtonian%1:18:01:: 09746314 1 0 -washingtonian%3:01:00:: 03037093 4 0 -washingtonian%3:01:01:: 03037236 3 0 -washingtonian%3:01:02:: 03037407 2 0 -washingtonian%3:01:03:: 03037579 1 0 -washout%1:18:00:: 10097477 3 0 -washout%1:22:00:: 13574193 2 0 -washout%1:25:00:: 13919173 1 0 -washrag%1:06:00:: 04554523 1 0 -washroom%1:06:00:: 04555291 1 0 -washstand%1:06:01:: 04555400 1 0 -washstand%1:06:02:: 04553920 2 0 -washtub%1:06:00:: 04555600 1 0 -washup%1:04:00:: 00255214 1 1 -washup%1:04:01:: 00255600 2 0 -washwoman%1:18:00:: 10769188 1 0 -washy%5:00:00:colorless:02 00404961 2 0 -washy%5:00:00:diluted:00 00756459 1 0 -waslaw_nijinsky%1:18:00:: 11207585 1 0 -wasp%1:05:00:: 02212062 2 0 -wasp%1:18:00:: 09641578 1 0 -wasp's_nest%1:17:00:: 09475044 1 0 -wasp-waisted%5:00:00:thin:03 00991189 1 0 -wasp_waist%1:08:00:: 05555840 1 0 -waspish%5:00:00:ill-natured:00 01135420 1 0 -wasps'_nest%1:17:00:: 09475044 1 0 -wassail%1:13:00:: 07931280 1 0 -wassail%2:34:00:: 01175467 2 0 -wassail%2:41:00:: 02491383 1 0 -wassailer%1:18:00:: 10769321 1 0 -wassailer%1:18:01:: 10713502 2 0 -wasserman_reaction%1:09:00:: 05742241 1 0 -wassermann%1:09:00:: 05742241 2 0 -wassermann%1:18:00:: 11375909 1 0 -wassermann_test%1:09:00:: 05742241 1 0 -wassily_kandinski%1:18:00:: 11096338 1 0 -wassily_kandinsky%1:18:00:: 11096338 1 0 -wassily_leontief%1:18:00:: 11128834 1 0 -wastage%1:21:00:: 13328273 2 0 -wastage%1:22:00:: 13574452 1 0 -waste%1:04:00:: 00742645 2 4 -waste%1:04:01:: 01252124 5 0 -waste%1:07:00:: 04894964 3 1 -waste%1:15:00:: 08504594 4 0 -waste%1:27:00:: 14856263 1 5 -waste%2:29:00:: 00093775 10 0 -waste%2:30:00:: 00388635 9 0 -waste%2:30:01:: 00389406 8 0 -waste%2:30:02:: 00389992 7 0 -waste%2:34:00:: 01158181 6 0 -waste%2:34:05:: 01161087 2 8 -waste%2:35:00:: 01327301 5 0 -waste%2:38:00:: 02067889 4 0 -waste%2:40:00:: 02268351 1 10 -waste%2:40:01:: 02223479 3 0 -waste%5:00:00:inhospitable:00 01243102 1 0 -waste-paper_basket%1:06:00:: 04555700 1 0 -waste-yard%1:15:00:: 08560027 1 0 -waste_basket%1:06:00:: 04555700 1 0 -waste_material%1:27:00:: 14856263 1 1 -waste_matter%1:27:00:: 14856263 1 0 -waste_of_effort%1:04:00:: 00743155 1 0 -waste_of_energy%1:04:00:: 00743155 1 0 -waste_of_material%1:04:00:: 00743251 1 0 -waste_of_money%1:04:00:: 00743348 1 0 -waste_of_time%1:04:00:: 00743500 1 1 -waste_one's_time%2:42:00:: 02639606 1 0 -waste_paper%1:27:00:: 15094053 1 0 -waste_pipe%1:06:00:: 03231912 1 0 -waste_product%1:27:00:: 14856263 1 0 -wastebasket%1:06:00:: 04555700 1 3 -wastebin%1:06:00:: 02747177 1 0 -wasted%3:00:04:: 00554879 3 0 -wasted%5:00:00:lost:01 01450293 2 1 -wasted%5:00:00:thin:03 00988988 4 0 -wasted%5:00:00:worthless:00 02503305 1 1 -wasteful%3:00:00:: 02422068 2 0 -wasteful%5:00:00:destructive:00 00588655 3 0 -wasteful%5:00:00:inefficient:00 00841159 1 2 -wastefully%4:02:00:: 00432446 1 0 -wastefulness%1:04:03:: 00742645 2 0 -wastefulness%1:07:00:: 04894964 1 0 -wasteland%1:15:00:: 08504594 1 2 -wastepaper_basket%1:06:00:: 04555700 1 0 -waster%1:18:00:: 10769459 1 0 -waster%1:18:01:: 10008716 2 0 -wastewater%1:27:00:: 14857021 1 2 -wasteweir%1:06:00:: 04277034 1 0 -wasteyard%1:15:00:: 08560027 1 0 -wasting%1:26:00:: 14365741 2 0 -wasting%1:26:01:: 14548105 1 0 -wasting_away%1:26:00:: 14365741 1 0 -wasting_disease%1:26:00:: 14144064 1 0 -wastrel%1:18:00:: 10769459 1 0 -watch%1:04:00:: 00880662 3 3 -watch%1:04:02:: 01029671 6 0 -watch%1:06:00:: 04555897 1 9 -watch%1:18:00:: 10271216 5 0 -watch%1:28:00:: 15292336 2 3 -watch%1:28:01:: 15292502 4 2 -watch%2:32:09:: 00920336 7 0 -watch%2:39:00:: 02150510 1 77 -watch%2:39:01:: 02151966 5 1 -watch%2:39:02:: 02128653 4 10 -watch%2:39:03:: 02131963 6 0 -watch%2:39:05:: 02150948 3 24 -watch%2:41:00:: 02455407 2 64 -watch_bracelet%1:06:00:: 04556204 1 0 -watch_cap%1:06:00:: 04556408 1 0 -watch_case%1:06:00:: 04556533 1 0 -watch_chain%1:06:00:: 03374838 1 0 -watch_crystal%1:06:00:: 03142679 1 0 -watch_fire%1:10:00:: 06873927 1 0 -watch_glass%1:06:00:: 03142679 2 0 -watch_glass%1:06:01:: 04556664 1 0 -watch_guard%1:06:00:: 03374838 1 0 -watch_key%1:06:00:: 04556816 1 0 -watch_night%1:04:00:: 01034816 1 0 -watch_out%2:39:00:: 02151966 1 5 -watch_over%2:41:00:: 02455407 1 1 -watch_pocket%1:06:00:: 03375070 1 0 -watchband%1:06:00:: 04556204 1 0 -watchdog%1:05:00:: 02103841 2 0 -watchdog%1:18:00:: 10769607 1 0 -watcher%1:18:01:: 10770059 2 0 -watcher%1:18:02:: 10633450 1 1 -watcher%1:18:03:: 10769782 3 0 -watchful%3:00:00:: 00091311 1 0 -watchful%5:00:00:awake:00 00187176 2 0 -watchfully%4:02:00:: 00493040 1 1 -watchfulness%1:07:00:: 04664778 2 0 -watchfulness%1:09:00:: 05705722 1 0 -watching%1:04:00:: 00879759 1 2 -watchmaker%1:18:00:: 10769905 1 1 -watchman%1:18:00:: 10770059 1 1 -watchstrap%1:06:00:: 04556204 1 0 -watchtower%1:06:00:: 04556948 1 0 -watchword%1:10:00:: 06674188 2 0 -watchword%1:10:01:: 07152752 1 0 -water%1:06:00:: 04562658 4 2 -water%1:13:00:: 07935504 6 0 -water%1:17:00:: 09225146 2 41 -water%1:27:00:: 14845743 1 136 -water%1:27:01:: 14855724 5 0 -water%1:27:02:: 14847357 3 2 -water%2:29:00:: 00069570 3 2 -water%2:30:00:: 00228236 1 3 -water%2:30:04:: 00452098 4 0 -water%2:40:00:: 02357873 2 2 -water-base_paint%1:06:00:: 04557308 1 0 -water-color%1:04:00:: 00938642 4 0 -water-color%1:06:00:: 04558578 3 0 -water-color%1:06:01:: 04558804 2 0 -water-color%1:27:00:: 14991319 1 0 -water-colour%1:04:00:: 00938642 4 0 -water-colour%1:06:00:: 04558578 3 0 -water-colour%1:06:01:: 04558804 2 0 -water-colour%1:27:00:: 14991319 1 0 -water-cooled%5:00:00:cool:01 02530693 1 3 -water-cooled_reactor%1:06:00:: 04559023 1 0 -water-insoluble%5:00:00:insoluble:01 02266043 1 0 -water-lily_family%1:20:00:: 11714618 1 0 -water-loving%5:00:00:healthy:00 01172493 1 0 -water-milfoil_family%1:20:00:: 12326604 1 0 -water-mint%1:20:00:: 12855494 1 0 -water-plantain_family%1:20:00:: 12611815 1 0 -water-rate%1:21:00:: 13325382 1 0 -water-repellent%5:00:00:impermeable:00 01773094 1 0 -water-resistant%5:00:00:impermeable:00 01773094 1 0 -water-shield%1:20:01:: 11718296 2 0 -water-shield%1:20:02:: 11718681 1 0 -water-shield_family%1:20:00:: 11717820 1 0 -water-skiing%1:04:00:: 00445226 1 1 -water-soluble%5:00:00:soluble:01 02265815 1 0 -water-soluble_vitamin%1:27:00:: 15089645 1 0 -water-target%1:20:00:: 11718681 1 0 -water-wash%2:35:00:: 01270116 1 1 -water-washed%5:00:00:clean:01 00419175 2 0 -water-washed%5:00:00:inhospitable:00 01243609 1 0 -water_arum%1:20:00:: 11786131 1 0 -water_avens%1:20:00:: 12632072 1 0 -water_back%1:06:00:: 04557111 1 0 -water_bearer%1:15:00:: 08687884 2 0 -water_bearer%1:18:00:: 09753642 1 0 -water_bed%1:06:00:: 04557522 1 0 -water_beetle%1:05:00:: 02177196 1 0 -water_birch%1:20:00:: 12283542 1 0 -water_bird%1:05:00:: 01845132 1 0 -water_biscuit%1:13:00:: 07695504 1 0 -water_bitternut%1:20:00:: 12320414 1 0 -water_blister%1:26:00:: 14312776 1 0 -water_boatman%1:05:00:: 02243209 1 0 -water_bottle%1:06:00:: 04557648 1 0 -water_boy%1:18:00:: 10770309 1 0 -water_buffalo%1:05:00:: 02408429 1 1 -water_bug%1:05:00:: 02241799 1 0 -water_bug%1:05:02:: 02234848 2 0 -water_butt%1:06:00:: 04557751 1 0 -water_buttercup%1:20:00:: 11720891 1 0 -water_cabbage%1:20:00:: 11791569 1 0 -water_caltrop%1:20:00:: 12348518 1 0 -water_cannon%1:06:00:: 04557872 1 0 -water_carpet%1:20:00:: 12797025 1 0 -water_cart%1:06:00:: 04558059 1 0 -water_chestnut%1:13:00:: 07737980 3 0 -water_chestnut%1:20:01:: 12153741 2 0 -water_chestnut%1:20:02:: 12348294 1 0 -water_chestnut_plant%1:20:00:: 12348294 1 0 -water_chevrotain%1:05:00:: 02436645 1 0 -water_chickweed%1:20:00:: 11861487 1 0 -water_chinquapin%1:13:00:: 07772631 2 0 -water_chinquapin%1:20:01:: 11717577 1 0 -water_chute%1:06:00:: 04558199 1 0 -water_clock%1:06:00:: 04558347 1 0 -water_closet%1:06:00:: 04558478 1 0 -water_clover%1:20:00:: 12957924 1 0 -water_company%1:14:00:: 08186546 1 0 -water_conservation%1:04:00:: 00819858 1 0 -water_cooler%1:06:00:: 04559166 1 0 -water_crowfoot%1:20:00:: 11720891 1 0 -water_deer%1:05:00:: 02436645 1 0 -water_development%1:04:00:: 00948737 1 1 -water_dog%1:05:00:: 02098906 2 0 -water_dog%1:18:00:: 10770433 1 0 -water_down%2:30:00:: 00488301 1 1 -water_down%2:30:04:: 00488175 2 0 -water_dragon%1:20:01:: 11728099 2 0 -water_dragon%1:20:02:: 13151975 1 0 -water_dropwort%1:20:00:: 12940939 1 0 -water_elm%1:20:01:: 12406488 2 0 -water_elm%1:20:02:: 12407545 1 0 -water_faucet%1:06:00:: 04559451 1 0 -water_fennel%1:20:00:: 12941220 1 0 -water_fern%1:20:00:: 12957076 1 0 -water_filter%1:06:00:: 04559620 1 0 -water_finder%1:06:00:: 03216199 1 0 -water_flaxseed%1:20:00:: 11795580 1 0 -water_flea%1:05:01:: 01994910 2 0 -water_flea%1:05:02:: 01997119 1 0 -water_fountain%1:06:00:: 03241335 1 1 -water_gage%1:06:00:: 04559730 1 0 -water_gap%1:17:00:: 09475716 1 0 -water_gas%1:27:00:: 14878650 1 0 -water_gate%1:06:00:: 04244615 1 0 -water_gauge%1:06:00:: 04559730 1 0 -water_gillyflower%1:20:00:: 12094401 1 0 -water_glass%1:06:00:: 04559910 2 0 -water_glass%1:06:01:: 04559730 3 0 -water_glass%1:06:02:: 04558347 4 0 -water_glass%1:27:00:: 14882578 1 0 -water_gum%1:20:00:: 12340581 1 0 -water_gun%1:06:00:: 04561548 1 0 -water_hammer%1:11:00:: 07399735 1 0 -water_hazard%1:06:00:: 04559994 1 0 -water_heater%1:06:00:: 04560113 1 0 -water_hemlock%1:20:00:: 12934985 1 0 -water_hen%1:05:01:: 02016358 2 0 -water_hen%1:05:02:: 02018207 1 0 -water_hickory%1:20:00:: 12320414 1 0 -water_hole%1:17:00:: 09475827 1 0 -water_horehound%1:20:00:: 12852428 1 0 -water_horsetail%1:20:00:: 13219976 1 0 -water_hyacinth%1:20:00:: 12610328 1 0 -water_ice%1:13:00:: 07614348 2 0 -water_ice%1:27:00:: 14915184 1 0 -water_jacket%1:06:00:: 04560619 1 0 -water_jug%1:06:00:: 04560804 1 0 -water_jump%1:06:00:: 04560882 1 0 -water_lemon%1:13:00:: 07754279 1 0 -water_lettuce%1:20:00:: 11791569 1 0 -water_level%1:06:00:: 04561010 4 0 -water_level%1:07:00:: 05132221 1 1 -water_level%1:15:00:: 08678783 3 0 -water_level%1:17:00:: 09476123 2 0 -water_lily%1:20:00:: 11714853 1 0 -water_line%1:15:00:: 08678783 1 1 -water_line%1:15:01:: 08679011 2 0 -water_lobelia%1:20:00:: 12169099 1 0 -water_locust%1:20:00:: 12495670 1 0 -water_main%1:06:00:: 04561167 1 1 -water_mat%1:20:00:: 12797025 1 0 -water_meter%1:06:00:: 04561287 1 0 -water_milfoil%1:20:00:: 12327022 1 0 -water_mill%1:06:00:: 04561422 1 0 -water_mint%1:20:00:: 12855494 1 0 -water_moccasin%1:05:01:: 01754533 1 0 -water_moccasin%1:05:02:: 01737728 2 0 -water_mold%1:20:00:: 12980080 1 0 -water_nymph%1:18:00:: 09550125 3 0 -water_nymph%1:18:02:: 09546772 4 0 -water_nymph%1:20:01:: 12611640 1 0 -water_nymph%1:20:02:: 11715430 2 0 -water_oak%1:20:00:: 12276110 1 0 -water_of_crystallisation%1:27:00:: 15094136 1 0 -water_of_crystallization%1:27:00:: 15094136 1 0 -water_of_hydration%1:27:00:: 15094136 1 0 -water_on_the_knee%1:26:00:: 14193325 1 0 -water_orchid%1:20:00:: 12610328 1 0 -water_ouzel%1:05:00:: 01601694 1 0 -water_ox%1:05:00:: 02408429 1 0 -water_parsnip%1:20:00:: 12945177 1 0 -water_parting%1:15:00:: 08679369 1 0 -water_pill%1:06:00:: 03214670 1 0 -water_pimpernel%1:20:00:: 12096395 1 0 -water_pipe%1:06:00:: 03533014 1 0 -water_pistol%1:06:00:: 04561548 1 0 -water_plant%1:20:00:: 13121544 1 0 -water_plantain%1:20:00:: 12612170 1 0 -water_pollution%1:26:00:: 14518820 1 0 -water_polo%1:04:00:: 00464478 1 0 -water_pore%1:20:00:: 13153729 1 0 -water_program%1:04:00:: 00948737 1 1 -water_project%1:04:00:: 00948737 1 1 -water_pump%1:06:00:: 04561965 1 0 -water_rat%1:05:00:: 02335127 3 0 -water_rat%1:05:02:: 02341974 2 0 -water_rat%1:18:00:: 10770433 1 0 -water_right%1:07:00:: 05188547 1 1 -water_sapphire%1:27:00:: 15019357 1 0 -water_scooter%1:06:00:: 04562122 1 0 -water_scorpion%1:05:00:: 02242455 1 0 -water_shamrock%1:20:00:: 12484784 1 0 -water_shrew%1:05:00:: 01892551 1 0 -water_skater%1:05:00:: 02243562 1 0 -water_ski%1:06:00:: 04562262 1 0 -water_ski%2:38:00:: 01940248 1 1 -water_skin%1:06:00:: 04562390 1 0 -water_snake%1:05:00:: 01737021 1 0 -water_softener%1:27:00:: 15056112 1 0 -water_spaniel%1:05:00:: 02102605 1 0 -water_speedwell%1:20:00:: 12891469 1 0 -water_spirit%1:18:00:: 09546772 1 0 -water_sport%1:04:00:: 00441824 1 1 -water_sprite%1:18:00:: 09546772 2 0 -water_sprite%1:20:00:: 13171797 1 0 -water_star_grass%1:20:00:: 12610740 1 0 -water_starwort%1:20:00:: 12693865 1 0 -water_stoma%1:20:00:: 13153729 1 0 -water_strider%1:05:00:: 02243562 1 0 -water_supply%1:06:00:: 04562658 1 0 -water_system%1:06:00:: 04562658 2 0 -water_system%1:17:00:: 09476011 1 0 -water_table%1:17:00:: 09476123 1 0 -water_tank%1:06:00:: 03035715 1 0 -water_tap%1:06:00:: 04559451 1 0 -water_thrush%1:05:00:: 01570421 1 0 -water_tower%1:06:00:: 04562935 1 1 -water_travel%1:04:00:: 00313647 1 0 -water_trumpet%1:20:00:: 11787190 1 0 -water_turkey%1:05:00:: 02054711 1 0 -water_under_the_bridge%1:28:00:: 15121153 1 0 -water_vapor%1:27:00:: 15055442 1 1 -water_vapour%1:27:00:: 15055442 1 0 -water_vascular_system%1:05:00:: 02151448 1 0 -water_violet%1:20:00:: 12094612 1 0 -water_vole%1:05:01:: 02341974 1 0 -water_vole%1:05:02:: 02341475 2 0 -water_waggon%1:06:00:: 04563020 1 0 -water_wagon%1:06:00:: 04563020 1 0 -water_wheel%1:06:00:: 04563204 2 0 -water_wheel%1:06:01:: 04563413 1 0 -water_wings%1:06:00:: 04563560 1 0 -water_witch%1:18:00:: 10770891 1 0 -water_yam%1:20:00:: 12088327 1 0 -waterbird%1:05:00:: 01845132 1 0 -waterborne%5:00:00:afloat:00 00077354 2 0 -waterborne%5:00:00:mobile:00 01525017 1 0 -waterbuck%1:05:00:: 02427724 1 0 -waterbury%1:15:00:: 09069752 1 0 -watercannon%1:06:00:: 04557872 1 0 -watercolor%1:04:00:: 00938642 4 0 -watercolor%1:06:00:: 04558578 1 9 -watercolor%1:06:01:: 04558804 2 3 -watercolor%1:27:00:: 14991319 3 0 -watercolor%2:36:00:: 01696435 1 0 -watercolorist%1:18:00:: 10770545 1 4 -watercolour%1:04:00:: 00938642 4 0 -watercolour%1:06:00:: 04558578 3 0 -watercolour%1:06:01:: 04558804 2 0 -watercolour%1:27:00:: 14991319 1 0 -watercolour%2:36:00:: 01696435 1 0 -watercolourist%1:18:00:: 10770545 1 0 -watercourse%1:06:00:: 04559275 3 0 -watercourse%1:17:01:: 09448361 2 0 -watercourse%1:17:02:: 09475179 1 0 -watercraft%1:06:00:: 04530566 2 0 -watercraft%1:09:00:: 05644334 1 0 -watercress%1:13:00:: 07732904 2 0 -watercress%1:20:00:: 11869689 1 0 -watercress%5:00:00:chromatic:00 00374001 1 0 -waterdog%1:05:00:: 01632952 1 0 -watered%5:00:00:patterned:00 01789359 1 0 -watered-silk%1:06:00:: 03779246 1 0 -watered_stock%1:21:00:: 13420359 1 0 -waterer%1:18:00:: 10770309 2 0 -waterer%1:18:01:: 10770767 1 0 -waterfall%1:17:00:: 09475292 1 3 -waterfinder%1:06:00:: 03216199 1 0 -waterford%1:15:00:: 08889944 1 0 -waterfowl%1:05:00:: 01845132 1 0 -waterfront%1:15:00:: 08633683 1 1 -watergate%1:11:00:: 07306963 1 0 -watergate_scandal%1:11:00:: 07306963 1 0 -waterhouse-friderichsen_syndrome%1:26:00:: 14470496 1 0 -wateriness%1:07:00:: 04937427 3 0 -wateriness%1:07:01:: 05113929 2 0 -wateriness%1:26:00:: 14535056 1 0 -watering%1:04:00:: 00278403 2 0 -watering%1:22:00:: 13505843 1 0 -watering_can%1:06:00:: 04560292 1 0 -watering_cart%1:06:00:: 04560502 1 0 -watering_hole%1:15:00:: 08678615 1 0 -watering_place%1:15:00:: 08678615 1 1 -watering_pot%1:06:00:: 04560292 1 0 -waterleaf%1:20:00:: 12834798 1 0 -waterleaf_family%1:20:00:: 12834408 1 0 -waterless%5:00:00:dry:01 02552415 1 0 -waterlessness%1:26:00:: 14536438 1 0 -waterline%1:15:00:: 08678783 1 0 -waterlogged%5:00:00:wet:01 02548066 1 0 -waterloo%1:04:00:: 01299476 3 0 -waterloo%1:11:00:: 07476851 2 0 -waterloo%1:15:00:: 08852065 1 0 -waterman%1:18:00:: 09861946 1 0 -watermark%1:10:00:: 07270893 2 0 -watermark%1:15:00:: 08679011 1 1 -watermeal%1:20:00:: 11796005 1 0 -watermelon%1:13:00:: 07756951 2 0 -watermelon%1:20:00:: 12164065 1 0 -watermelon-shaped%3:00:00:: 02050116 1 0 -watermelon_begonia%1:20:00:: 13151082 1 0 -watermelon_vine%1:20:00:: 12164065 1 0 -waterpower%1:19:00:: 11524213 1 0 -waterproof%1:06:01:: 04049405 2 0 -waterproof%1:06:02:: 04561734 1 0 -waterproof%2:35:00:: 01354405 1 0 -waterproof%5:00:00:tight:02 01398941 1 1 -waterproofed%5:00:00:tight:02 01398941 1 0 -waterproofing%1:04:00:: 00830099 1 1 -waterproofing%1:06:00:: 04561857 2 0 -waters%1:08:00:: 05399627 2 0 -waters%1:18:00:: 11376069 1 0 -waterscape%1:06:00:: 04161233 1 0 -watershed%1:11:00:: 07417851 3 0 -watershed%1:15:00:: 08679369 1 1 -watershed%1:15:01:: 08518940 2 0 -waterside%1:17:00:: 09475925 1 0 -waterskin%1:06:00:: 04562390 1 0 -waterspout%1:06:00:: 04562496 3 0 -waterspout%1:19:00:: 11524324 1 0 -waterspout%1:19:01:: 11502102 2 0 -watertight%5:00:00:incontestable:00 00591513 2 0 -watertight%5:00:00:tight:02 01399235 1 0 -watertown%1:15:00:: 09125881 2 0 -watertown%1:15:01:: 09158789 1 0 -waterway%1:06:00:: 04559275 2 0 -waterway%1:17:00:: 09476331 1 1 -waterweed%1:20:00:: 12614477 1 0 -waterwheel%1:06:00:: 04563204 2 0 -waterwheel%1:06:01:: 04563413 1 0 -waterwheel_plant%1:20:00:: 12783316 1 0 -waterworks%1:06:00:: 04563790 2 0 -waterworks%1:14:00:: 08186546 1 0 -waterworn%5:00:00:worn:00 02584347 1 0 -watery%5:00:00:diluted:00 00756459 4 0 -watery%5:00:00:liquid:00 02262365 3 0 -watery%5:00:01:wet:01 02549857 2 1 -watery%5:00:02:wet:01 02551259 1 1 -watery-eyed%5:00:00:tearful:00 02473655 1 0 -wats%1:06:00:: 04563942 1 0 -wats_line%1:06:00:: 04563942 1 0 -watson%1:18:00:: 11376201 3 0 -watson%1:18:01:: 11376400 2 0 -watson%1:18:02:: 11376565 1 0 -watt%1:18:00:: 11376742 2 0 -watt%1:23:00:: 13644522 1 2 -watt-hour%1:23:00:: 13727333 1 0 -watt_second%1:23:00:: 13726074 1 0 -wattage%1:19:00:: 11449419 1 0 -watteau%1:18:00:: 11376939 1 0 -wattle%1:06:00:: 04564118 2 1 -wattle%1:08:00:: 05471427 1 1 -wattle%1:20:00:: 11756669 3 0 -wattle%2:35:00:: 01518343 2 0 -wattle%2:36:00:: 01655639 1 0 -wattle_and_daub%1:27:00:: 15060688 1 0 -wattmeter%1:06:00:: 04564278 1 0 -watts%1:18:00:: 11377043 1 0 -watusi%1:18:00:: 09693809 1 0 -watutsi%1:18:00:: 09693809 1 0 -waugh%1:18:00:: 11377168 1 0 -waul%2:32:00:: 01047263 1 0 -wausau%1:15:00:: 09158897 1 0 -wave%1:04:02:: 00346095 2 9 -wave%1:08:00:: 05259240 6 1 -wave%1:10:01:: 07274027 5 1 -wave%1:11:00:: 07345593 3 7 -wave%1:11:01:: 07352190 1 40 -wave%1:11:02:: 07352835 4 2 -wave%1:18:00:: 10771066 9 0 -wave%1:19:00:: 11524451 8 0 -wave%1:25:00:: 13868944 7 0 -wave%2:29:00:: 00039488 5 0 -wave%2:32:00:: 01041415 1 21 -wave%2:35:00:: 01446901 2 5 -wave%2:35:01:: 01223616 4 0 -wave%2:38:00:: 01901783 3 4 -wave-off%1:04:00:: 00281898 1 0 -wave-particle_duality%1:07:00:: 04920568 1 0 -wave_angle%1:25:00:: 13919394 1 0 -wave_equation%1:10:00:: 06671339 1 0 -wave_form%1:11:00:: 07347664 1 0 -wave_front%1:15:00:: 08681966 2 0 -wave_front%1:19:00:: 11513631 1 0 -wave_guide%1:06:00:: 04564413 1 0 -wave_mechanics%1:09:00:: 06107850 1 0 -wave_number%1:23:00:: 13644047 1 0 -wave_off%2:30:00:: 00513936 1 1 -wave_shape%1:11:00:: 07347664 1 0 -wave_theory%1:09:00:: 06105873 1 0 -wave_theory_of_light%1:09:00:: 06105873 1 0 -wave_train%1:14:00:: 08461875 1 0 -waveband%1:10:00:: 06260628 1 0 -waveform%1:11:00:: 07347664 1 0 -wavefront%1:15:00:: 08681966 1 0 -waveguide%1:06:00:: 04564413 1 0 -wavelength%1:07:00:: 05086269 1 25 -wavelength%1:09:00:: 06208265 2 1 -wavelet%1:11:00:: 07344663 1 0 -wavelike%5:00:00:uneven:00 00911762 1 0 -wavell%1:18:00:: 11377315 1 0 -waver%1:04:00:: 00348571 3 0 -waver%1:04:01:: 01063350 2 0 -waver%1:18:00:: 10771270 1 0 -waver%2:32:00:: 01051118 7 0 -waver%2:38:00:: 01868258 6 0 -waver%2:38:01:: 01876907 4 1 -waver%2:38:02:: 01878719 5 0 -waver%2:38:03:: 01901289 3 1 -waver%2:42:00:: 02640440 1 2 -waver%2:42:02:: 02740204 2 1 -waverer%1:18:00:: 10603528 1 0 -wavering%1:07:00:: 04770911 2 0 -wavering%1:09:00:: 05699434 1 0 -wavering%5:00:00:irresolute:00 01992867 1 0 -waviness%1:07:00:: 05074374 1 0 -waviness%1:07:01:: 04772955 2 0 -waving%1:10:00:: 07274027 1 0 -wavy%5:00:00:curly:00 01030691 1 2 -wavy%5:00:00:uneven:00 00911762 2 1 -wavy-grained%5:00:00:uneven:00 00911935 1 0 -wavy-leaved_aster%1:20:00:: 11937278 1 0 -waw%1:10:00:: 06837251 1 0 -wawl%2:32:00:: 01047263 1 0 -wax%1:27:00:: 15094294 1 7 -wax%2:30:00:: 00433232 2 1 -wax%2:30:01:: 00433525 3 0 -wax%2:35:00:: 01268726 1 2 -wax-chandler%1:18:00:: 09907717 1 0 -wax-myrtle_family%1:20:00:: 11740824 1 0 -wax_bean%1:13:00:: 07728708 2 0 -wax_bean%1:20:00:: 12557556 1 0 -wax_begonia%1:20:00:: 12362274 1 0 -wax_crayon%1:06:00:: 03128248 1 0 -wax_figure%1:06:00:: 04564581 1 0 -wax_insect%1:05:00:: 02249256 1 0 -wax_light%1:06:00:: 02948072 1 0 -wax_mallow%1:20:00:: 12184095 1 0 -wax_moth%1:05:00:: 02289307 1 0 -wax_myrtle%1:20:00:: 11741350 1 0 -wax_palm%1:20:01:: 12587487 3 0 -wax_palm%1:20:02:: 12588320 2 0 -wax_palm%1:20:03:: 12588780 1 0 -wax_paper%1:27:00:: 15096661 1 0 -wax_plant%1:20:00:: 13237188 1 0 -waxberry%1:20:01:: 11741797 2 0 -waxberry%1:20:02:: 12677612 1 0 -waxed%3:00:00:: 02534315 1 1 -waxen%3:01:00:: 03004852 1 1 -waxen%5:00:00:colorless:02 00406495 2 0 -waxflower%1:20:01:: 12258885 3 0 -waxflower%1:20:02:: 12366186 2 0 -waxflower%1:20:03:: 13239177 1 0 -waxiness%1:07:00:: 05216240 1 0 -waxing%1:04:00:: 00719388 1 1 -waxing%1:11:00:: 07414566 2 0 -waxing%3:00:00:: 02534501 1 0 -waxlike%5:00:00:colorless:02 00406495 1 1 -waxmallow%1:20:00:: 12184095 1 0 -waxwing%1:05:00:: 01603600 1 0 -waxwork%1:06:00:: 04564581 2 0 -waxwork%1:20:00:: 12748248 1 0 -waxy%3:00:00:: 02364448 2 0 -waxy%3:01:00:: 03004852 1 0 -waxy%5:00:00:colorless:02 00406495 4 0 -waxy%5:00:00:flexible:01 01022367 3 0 -waxycap%1:20:00:: 13070308 1 0 -way%1:04:00:: 00415676 5 19 -way%1:04:01:: 00172710 2 61 -way%1:04:02:: 00312691 7 12 -way%1:06:00:: 04564698 6 16 -way%1:07:01:: 04928903 1 183 -way%1:07:02:: 05084733 9 7 -way%1:09:00:: 05791764 10 3 -way%1:09:01:: 05839910 11 1 -way%1:15:00:: 08679972 3 40 -way%1:21:00:: 13285973 12 0 -way%1:23:00:: 13777764 8 10 -way%1:26:00:: 13939604 4 28 -way%4:02:00:: 00101752 1 7 -way-out%5:00:00:unconventional:01 00609564 1 0 -way_of_life%1:04:00:: 00415676 1 11 -way_out%1:06:00:: 03303965 1 2 -way_station%1:06:00:: 04579795 2 0 -way_station%1:15:00:: 08657100 1 0 -waybill%1:10:00:: 06520742 1 0 -wayfarer%1:18:00:: 10771392 2 0 -wayfarer%1:18:01:: 10771539 1 0 -wayfaring%1:04:00:: 00297318 1 0 -wayfaring%5:00:00:unsettled:01 02128388 1 0 -wayfaring_tree%1:20:00:: 12680652 1 0 -wayland%1:18:00:: 09585218 1 0 -wayland_the_smith%1:18:00:: 09585218 1 0 -waylay%2:33:00:: 01138204 1 1 -wayne%1:18:00:: 11377564 2 0 -wayne%1:18:01:: 11377712 1 0 -wayne_gretzky%1:18:00:: 11015525 1 0 -ways%1:06:00:: 04565039 1 1 -ways_and_means%1:21:00:: 13365978 1 0 -ways_and_means_committee%1:14:00:: 08326487 1 0 -wayside%1:06:00:: 04565233 1 1 -wayward%5:00:00:disobedient:00 01613839 1 2 -wb%1:23:00:: 13638577 1 0 -wbc%1:08:00:: 05449959 1 0 -wbn%1:24:00:: 13834524 1 0 -wbs%1:24:00:: 13834280 1 0 -weak%3:00:00:: 02324397 1 13 -weak%5:00:00:diluted:00 00756459 2 3 -weak%5:00:00:down:00 02493574 5 0 -weak%5:00:00:fallible:00 00964768 11 0 -weak%5:00:00:frail:00 02040233 7 0 -weak%5:00:00:human:00 01259391 4 1 -weak%5:00:00:perceptible:00 01747364 10 0 -weak%5:00:00:powerless:00 01828242 9 0 -weak%5:00:00:regular:00 01960432 8 0 -weak%5:00:00:stupid:00 00441523 12 0 -weak%5:00:00:unskilled:00 02230471 6 0 -weak%5:00:00:unstressed:00 02320442 3 1 -weak-kneed%5:00:00:irresolute:00 01992996 1 0 -weak-stemmed%5:00:00:caulescent:00 00322007 1 0 -weak_force%1:19:00:: 11517210 1 0 -weak_interaction%1:19:00:: 11517210 1 0 -weak_part%1:07:00:: 05042283 1 1 -weak_point%1:07:00:: 05159606 1 1 -weak_spot%1:07:00:: 05042283 1 0 -weaken%2:30:00:: 00223500 2 2 -weaken%2:30:01:: 00224901 1 6 -weaken%2:30:03:: 00290740 4 1 -weaken%2:30:04:: 00390215 5 0 -weaken%2:41:00:: 02543607 3 1 -weakened%5:00:00:damaged:00 00680532 5 0 -weakened%5:00:00:decreased:00 00882166 3 0 -weakened%5:00:00:diluted:00 00756327 4 0 -weakened%5:00:00:impaired:00 01274945 1 1 -weakened%5:00:00:weak:00 02326621 2 0 -weakener%1:17:00:: 09476521 1 0 -weakening%1:04:00:: 00362355 2 0 -weakening%1:11:00:: 07427337 1 1 -weakening%5:00:00:debilitating:00 01358096 1 0 -weakening%5:00:00:moderating:00 01341822 2 0 -weakfish%1:05:00:: 02599347 2 0 -weakfish%1:13:00:: 07792470 1 0 -weakling%1:18:00:: 10771636 1 0 -weakly%4:02:01:: 00177483 1 2 -weakly%5:00:00:frail:00 02040233 1 0 -weakly_interacting_massive_particle%1:17:00:: 09476717 1 0 -weakness%1:07:00:: 05040275 3 2 -weakness%1:07:01:: 05204982 2 2 -weakness%1:12:00:: 07498614 5 0 -weakness%1:26:00:: 14462946 1 24 -weakness%1:26:01:: 14474718 4 0 -weal%1:26:00:: 14298620 1 0 -weald%1:15:00:: 08645212 1 0 -wealth%1:07:00:: 05116128 2 5 -wealth%1:21:00:: 13250398 4 1 -wealth%1:21:02:: 13353280 3 1 -wealth%1:26:00:: 14491271 1 6 -wealthily%4:02:00:: 00494455 1 0 -wealthiness%1:26:00:: 14491271 1 0 -wealthy%5:00:00:rich:00 02022167 1 3 -wealthy_man%1:18:00:: 10292052 1 0 -wealthy_person%1:18:00:: 10529231 1 0 -wean%2:34:00:: 01186958 1 1 -wean%2:37:00:: 01824253 2 0 -weaned%3:00:00:: 02539034 1 0 -weaning%1:04:00:: 00198270 1 1 -weapon%1:06:00:: 04565375 1 29 -weapon%1:10:00:: 07246932 2 2 -weapon-grade_plutonium%1:27:00:: 14650366 1 0 -weapon_of_mass_destruction%1:06:00:: 04565963 1 0 -weapon_system%1:06:00:: 04565375 1 4 -weaponed%5:00:00:armed:01 00142622 1 0 -weaponize%2:30:00:: 00584954 1 0 -weaponless%5:00:00:unarmed:01 00143516 1 0 -weaponry%1:06:00:: 04566257 1 0 -weapons-grade%5:00:00:strong:00 02322704 2 0 -weapons-grade%5:00:00:superior:02 02344998 1 0 -weapons_carrier%1:06:00:: 04566561 1 1 -weapons_emplacement%1:06:00:: 03469031 1 0 -weapons_platform%1:06:00:: 03962525 1 0 -weapons_plutonium%1:27:00:: 14650366 1 0 -weapons_system%1:06:00:: 04566257 1 4 -wear%1:04:00:: 00830257 3 0 -wear%1:06:00:: 03051540 2 0 -wear%1:26:00:: 14562683 1 0 -wear%2:29:00:: 00052374 1 83 -wear%2:29:01:: 00050652 9 0 -wear%2:29:02:: 00047610 5 2 -wear%2:29:03:: 00075021 8 0 -wear%2:29:04:: 00047745 2 22 -wear%2:30:00:: 00469382 4 2 -wear%2:35:00:: 01369346 7 0 -wear%2:42:00:: 02705132 6 1 -wear%2:42:01:: 02740034 3 6 -wear_and_tear%1:21:00:: 13328357 1 0 -wear_away%2:30:00:: 00275253 3 0 -wear_away%2:35:00:: 01254324 2 0 -wear_away%2:35:02:: 01552390 1 0 -wear_down%2:29:00:: 00075021 1 1 -wear_down%2:30:00:: 00469382 2 0 -wear_off%2:30:00:: 00469382 1 1 -wear_off%2:35:00:: 01254324 2 0 -wear_on%2:30:00:: 00432176 1 2 -wear_out%2:29:00:: 00075021 1 2 -wear_out%2:30:00:: 00469382 3 1 -wear_out%2:35:00:: 01369346 2 1 -wear_round%2:38:00:: 01946408 1 0 -wear_ship%2:38:00:: 01946660 1 0 -wear_the_trousers%2:41:00:: 02601271 1 0 -wear_thin%2:30:00:: 00469382 1 1 -wear_upon%2:29:00:: 00075021 1 0 -wearable%1:06:00:: 03051540 1 0 -wearable%3:00:00:: 02539359 1 0 -wearer%1:18:00:: 10771809 1 1 -wearied%5:00:00:tired:00 02433975 1 1 -wearily%4:02:00:: 00090424 1 4 -weariness%1:26:00:: 14016361 1 2 -wearing%1:04:00:: 00830257 2 0 -wearing%1:22:00:: 13475538 1 0 -wearing%5:00:00:effortful:00 00837249 1 0 -wearing_apparel%1:06:00:: 02728440 1 0 -wearing_away%1:22:00:: 13475538 1 0 -wearisome%5:00:00:uninteresting:00 01345307 1 1 -weary%2:29:00:: 00075021 1 1 -weary%2:29:01:: 00076114 2 0 -weary%5:00:00:tired:00 02432428 1 11 -weary_willie%1:18:00:: 11100139 1 0 -wearying%5:00:00:effortful:00 00837249 1 1 -weasel%1:05:00:: 02441942 2 0 -weasel%1:18:00:: 10771990 1 0 -weasel-worded%5:00:00:qualified:02 01913514 1 0 -weasel_word%1:10:00:: 06762245 1 0 -weather%1:19:00:: 11524662 1 20 -weather%2:30:00:: 00275088 4 0 -weather%2:38:00:: 02038278 2 0 -weather%2:38:01:: 01928283 3 0 -weather%2:42:00:: 02707251 1 0 -weather%5:00:00:windward:00 01400464 1 1 -weather-beaten%5:00:00:tough:02 02448040 1 1 -weather-beaten%5:00:00:worn:00 02584459 2 0 -weather-bound%5:00:00:confined:00 00559271 1 0 -weather-stripped%5:00:00:caulked:00 01399564 1 0 -weather_bureau%1:14:00:: 08353734 1 0 -weather_chart%1:06:00:: 04567222 1 0 -weather_condition%1:19:00:: 11524662 1 0 -weather_deck%1:06:00:: 04566862 1 0 -weather_eye%1:07:00:: 04664778 1 0 -weather_forecast%1:10:00:: 06750698 1 0 -weather_forecaster%1:18:00:: 10772092 1 0 -weather_forecasting%1:10:00:: 06749729 1 0 -weather_map%1:06:00:: 04567222 1 0 -weather_outlook%1:10:00:: 06750698 1 0 -weather_radar%1:06:00:: 04567480 1 0 -weather_satellite%1:06:00:: 04567593 1 0 -weather_sheet%1:06:00:: 04188368 1 0 -weather_ship%1:06:00:: 04567746 1 0 -weather_side%1:24:00:: 13829720 1 0 -weather_station%1:15:00:: 08599976 1 0 -weather_strip%1:06:00:: 04567870 1 0 -weather_stripping%1:06:00:: 04567870 1 0 -weather_vane%1:06:00:: 04568069 1 0 -weatherboard%1:24:00:: 13829720 2 0 -weatherboard%1:27:00:: 15103007 1 0 -weatherboarding%1:27:00:: 15103007 1 0 -weathercock%1:06:00:: 04566756 1 0 -weathered%5:00:00:worn:00 02584459 1 0 -weatherglass%1:06:00:: 04567098 1 0 -weatherliness%1:07:00:: 04774901 1 0 -weatherly%3:01:00:: 03129915 1 0 -weatherman%1:18:00:: 10772092 1 0 -weatherproof%2:30:00:: 00166845 1 0 -weatherproof%5:00:00:protected:00 01886241 1 0 -weatherstrip%1:06:00:: 04567870 1 0 -weatherstrip%2:30:00:: 00495336 1 1 -weatherstripping%1:06:00:: 04567870 1 0 -weathervane%1:06:00:: 04568069 1 0 -weatherworn%5:00:00:worn:00 02584459 1 0 -weave%1:06:00:: 04568298 1 2 -weave%2:35:00:: 01518924 1 3 -weave%2:36:00:: 01673891 2 2 -weave%2:38:00:: 01882814 4 0 -weave%2:38:01:: 01868258 3 1 -weaver%1:05:00:: 01542786 2 0 -weaver%1:18:00:: 10772190 1 0 -weaver's_broom%1:20:00:: 12571330 1 0 -weaver's_hitch%1:06:00:: 04189092 1 0 -weaver's_knot%1:06:00:: 04189092 1 0 -weaver_finch%1:05:00:: 01542786 1 0 -weaverbird%1:05:00:: 01542786 1 0 -weaving%1:04:00:: 00909281 1 0 -web%1:05:01:: 01897991 3 1 -web%1:05:02:: 01898328 7 0 -web%1:06:00:: 04568557 2 1 -web%1:06:01:: 04568713 6 0 -web%1:06:02:: 04604276 5 0 -web%1:14:00:: 08434259 4 0 -web%1:17:00:: 09477037 1 1 -web%2:36:00:: 01672168 1 0 -web-footed%5:00:00:footed:00 01031701 1 0 -web-spinning_mite%1:05:00:: 01779939 1 0 -web-toed%5:00:00:footed:00 01031701 1 0 -web-toed_salamander%1:05:00:: 01637932 1 0 -web_browser%1:10:00:: 06571301 1 0 -web_log%1:10:00:: 06402202 1 0 -web_map_server%1:10:00:: 06578323 1 0 -web_map_service%1:10:00:: 06578323 1 0 -web_page%1:10:00:: 06358900 1 0 -web_site%1:10:00:: 06359193 1 0 -web_spinner%1:05:00:: 02183507 1 0 -webb%1:18:00:: 11377851 2 0 -webb%1:18:01:: 11378087 1 0 -webbed%3:00:00:: 02591088 1 0 -webbed%5:00:00:reticulate:00 02007067 2 0 -webbed_foot%1:05:00:: 02155206 1 0 -webbing%1:06:00:: 04568841 3 0 -webbing%1:06:01:: 04568944 2 0 -webbing%1:17:00:: 09477319 1 0 -webbing_clothes_moth%1:05:00:: 02292401 1 0 -webbing_moth%1:05:00:: 02292401 1 0 -webby%5:00:00:reticulate:00 02007067 1 0 -webcam%1:06:00:: 04569063 1 0 -weber%1:18:00:: 11378254 6 0 -weber%1:18:01:: 11378462 5 0 -weber%1:18:02:: 11378662 4 0 -weber%1:18:03:: 11378805 3 0 -weber%1:18:04:: 11378929 2 0 -weber%1:23:00:: 13638577 1 0 -weber's_law%1:09:00:: 05996353 1 0 -weber-fechner_law%1:09:00:: 05877718 1 0 -webfoot%1:05:00:: 02154620 1 0 -weblike%5:00:00:reticulate:00 02007067 1 0 -webmaster%1:18:00:: 10772289 1 0 -webpage%1:10:00:: 06358900 1 0 -website%1:10:00:: 06359193 1 0 -webster%1:18:00:: 11379108 3 0 -webster%1:18:01:: 11379217 2 0 -webster%1:18:02:: 11379336 1 0 -webworm%1:05:00:: 02308139 1 0 -webworm_moth%1:05:00:: 02308471 1 0 -wed%1:28:00:: 15164233 1 0 -wed%2:41:00:: 02488834 1 3 -wed%2:41:01:: 02489456 2 0 -wed%5:00:00:married:00 01482140 1 0 -wedded%5:00:00:married:00 01482140 1 0 -weddell_sea%1:17:00:: 09477427 1 0 -wedding%1:04:00:: 01036996 2 1 -wedding%1:11:00:: 07452074 1 3 -wedding%1:14:00:: 08256735 3 0 -wedding_anniversary%1:28:00:: 15250691 1 0 -wedding_band%1:06:00:: 04569338 1 0 -wedding_cake%1:13:00:: 07632802 1 0 -wedding_ceremony%1:11:00:: 07452074 1 1 -wedding_chest%1:06:00:: 03535024 1 0 -wedding_day%1:28:00:: 15222951 1 2 -wedding_dress%1:06:00:: 02898585 1 0 -wedding_gift%1:21:00:: 13269459 1 0 -wedding_gown%1:06:00:: 02898585 1 0 -wedding_guest%1:18:00:: 10772392 1 0 -wedding_licence%1:10:00:: 06551339 1 0 -wedding_license%1:10:00:: 06551339 1 0 -wedding_march%1:10:00:: 07059150 1 0 -wedding_night%1:28:00:: 15223048 1 1 -wedding_party%1:14:00:: 08256735 1 0 -wedding_picture%1:06:00:: 04569205 1 0 -wedding_present%1:21:00:: 13269459 1 0 -wedding_reception%1:14:00:: 08254876 1 0 -wedding_ring%1:06:00:: 04569338 1 0 -wedel%2:38:00:: 01938739 1 0 -wedge%1:06:00:: 04569520 6 0 -wedge%1:06:02:: 03023878 7 0 -wedge%1:06:03:: 04569983 4 0 -wedge%1:06:04:: 04569822 5 0 -wedge%1:10:00:: 06823259 3 0 -wedge%1:13:00:: 07697825 2 0 -wedge%1:25:00:: 13919547 1 1 -wedge%2:35:00:: 01527271 2 0 -wedge%2:35:01:: 01528069 1 1 -wedge-shaped%3:01:00:: 03144955 2 0 -wedge-shaped%5:00:00:simple:01 02167740 1 1 -wedge_bone%1:13:00:: 07659196 1 0 -wedge_heel%1:06:00:: 04569983 1 1 -wedge_shape%1:25:00:: 13919547 1 0 -wedged%5:00:00:compact:00 00502809 1 0 -wedgie%1:06:00:: 04570118 1 0 -wedgwood%1:06:00:: 04570214 2 0 -wedgwood%1:18:00:: 11379436 1 0 -wedlock%1:26:00:: 13963970 1 0 -wednesday%1:28:00:: 15164233 1 12 -wee%1:28:00:: 15246258 1 0 -wee%2:29:00:: 00072012 1 0 -wee%5:00:00:early:00 00815849 2 0 -wee%5:00:00:small:00 01392633 1 3 -wee-wee%2:29:00:: 00072012 1 0 -wee_small_voice%1:16:00:: 09184405 1 0 -weed%1:06:00:: 03990834 3 0 -weed%1:06:01:: 04570680 2 0 -weed%1:20:00:: 13085113 1 3 -weed%2:30:00:: 00313171 1 0 -weed-whacker%1:06:00:: 04570416 1 0 -weed_killer%1:27:00:: 14906850 1 0 -weed_out%2:40:00:: 02223630 1 2 -weeder%1:06:00:: 04570416 2 0 -weeder%1:18:00:: 10772937 1 0 -weedkiller%1:27:00:: 14906850 1 0 -weedless%3:00:00:: 02539877 1 0 -weeds%1:06:00:: 04570532 1 1 -weedy%3:00:00:: 02539717 1 0 -weedy%5:00:00:thin:03 00990192 2 0 -week%1:28:00:: 15169873 1 103 -week%1:28:01:: 15135996 2 3 -week%1:28:02:: 15136147 3 1 -week_after_week%4:02:00:: 00178028 1 1 -week_by_week%4:02:00:: 00178116 1 1 -week_from_monday%1:28:00:: 15170178 1 1 -weekday%1:28:00:: 15163157 1 1 -weekend%1:28:00:: 15170504 1 13 -weekend%2:42:00:: 02707987 1 0 -weekend_warrior%1:18:00:: 10772580 2 0 -weekend_warrior%1:18:01:: 10772721 1 0 -weekender%1:06:00:: 04570815 2 0 -weekender%1:18:00:: 10772472 1 0 -weeklong%5:00:00:long:02 01441965 1 0 -weekly%1:10:00:: 06594258 1 2 -weekly%4:02:00:: 00081591 1 0 -weekly%5:00:00:periodic:00 01968503 1 0 -weeknight%1:28:00:: 15167675 1 0 -weeness%1:07:00:: 05106928 1 0 -weenie%1:13:00:: 07676602 1 0 -weenie_roast%1:13:00:: 07577244 1 0 -weensy%5:00:00:small:00 01392633 1 0 -weeny%5:00:00:small:00 01392633 1 0 -weep%2:29:00:: 00066191 1 20 -weeper%1:18:00:: 10773126 1 0 -weeper%1:18:01:: 10773040 2 0 -weepiness%1:12:00:: 07534278 1 0 -weeping%1:04:00:: 00868196 1 1 -weeping%5:00:00:sorrowful:00 01365239 1 1 -weeping%5:00:00:unerect:00 01238486 2 0 -weeping_beech%1:20:00:: 12262018 1 0 -weeping_love_grass%1:20:00:: 12120578 1 0 -weeping_spruce%1:20:00:: 11625223 1 0 -weeping_tree_broom%1:20:00:: 12514992 1 0 -weeping_willow%1:20:00:: 12726670 1 0 -weepy%5:00:00:tearful:00 02473886 1 0 -weevil%1:05:00:: 02177972 1 0 -weewee%1:27:00:: 14855724 1 0 -weft%1:06:00:: 04598965 1 0 -wegener%1:18:00:: 11379536 1 0 -wei%1:14:00:: 08159591 1 0 -wei_dynasty%1:14:00:: 08159591 1 0 -weigela%1:20:00:: 12681893 1 0 -weigela_florida%1:20:00:: 12681893 1 0 -weigh%2:32:00:: 00950431 2 4 -weigh%2:42:00:: 02704617 3 2 -weigh%2:42:01:: 02704818 1 17 -weigh%2:42:03:: 02645839 4 1 -weigh%2:42:04:: 02646064 5 0 -weigh_anchor%2:35:00:: 01456199 1 1 -weigh_down%2:35:00:: 01597096 2 0 -weigh_down%2:37:00:: 01814266 1 0 -weigh_on%2:37:00:: 01814266 1 0 -weigh_the_anchor%2:35:00:: 01456199 1 0 -weighbridge%1:06:00:: 04570958 1 0 -weighed_down%5:00:00:burdened:00 00869690 2 0 -weighed_down%5:00:00:full:00 01085268 1 0 -weigher%1:18:00:: 10773277 1 0 -weighing%1:09:00:: 05785067 1 0 -weighing_machine%1:06:00:: 04141975 1 0 -weight%1:06:00:: 04571088 4 3 -weight%1:06:01:: 04571292 2 5 -weight%1:07:00:: 05026843 1 26 -weight%1:07:01:: 05172322 3 4 -weight%1:12:00:: 07538812 5 2 -weight%1:23:00:: 13608788 7 0 -weight%1:23:01:: 13715755 6 0 -weight%1:23:02:: 13589321 8 0 -weight%2:31:00:: 00680485 2 1 -weight%2:35:00:: 01487311 1 1 -weight-lift%2:33:00:: 01150370 1 0 -weight_down%2:35:00:: 01487311 1 1 -weight_gainer%1:18:00:: 10117739 1 0 -weight_gaining%1:04:00:: 00627321 1 1 -weight_unit%1:23:00:: 13608788 2 0 -weight_unit%1:23:02:: 13717155 1 0 -weighted%5:00:00:adjusted:00 00351012 2 0 -weighted%5:00:00:heavy:02 01189853 1 1 -weightily%4:02:00:: 00494522 2 0 -weightily%4:02:01:: 00494624 1 0 -weightiness%1:07:00:: 05027529 2 0 -weightiness%1:07:01:: 05172322 1 0 -weighting%1:23:00:: 13589321 1 1 -weightless%3:00:00:: 01187777 1 0 -weightlessness%1:07:00:: 05028700 1 2 -weightlift%1:04:00:: 00626188 1 0 -weightlift%2:33:00:: 01150370 1 0 -weightlifter%1:18:00:: 10773394 1 0 -weightlifting%1:04:00:: 00626188 1 0 -weighty%3:00:00:: 01187611 1 0 -weighty%5:00:00:fat:01 00987180 5 0 -weighty%5:00:00:heavy:02 01190168 4 0 -weighty%5:00:00:important:00 01278423 3 0 -weighty%5:00:00:persuasive:00 01770392 2 0 -weil%1:18:00:: 11379691 2 0 -weil%1:18:01:: 11379812 1 0 -weil's_disease%1:26:00:: 14273753 1 0 -weill%1:18:00:: 11379908 1 0 -weimar%1:15:00:: 08771400 1 0 -weimar_republic%1:14:00:: 08170070 1 0 -weimaraner%1:05:00:: 02092339 1 0 -weinberg%1:18:00:: 11380035 1 0 -weir%1:06:00:: 04571566 1 3 -weir%1:06:01:: 04571686 2 0 -weird%1:18:00:: 09586442 1 0 -weird%5:00:00:strange:00 00970081 2 0 -weird%5:00:00:supernatural:00 01575424 1 8 -weird_sister%1:18:00:: 09582343 1 0 -weirdie%1:18:00:: 09976917 1 0 -weirdly%4:02:00:: 00192768 1 1 -weirdness%1:07:00:: 04798511 1 0 -weirdo%1:18:01:: 09976917 1 0 -weirdo%1:18:02:: 09976283 2 0 -weirdy%1:18:00:: 09976917 1 0 -weisenheimer%1:18:00:: 10784113 1 0 -weismann%1:18:00:: 11380159 1 0 -weissbier%1:13:00:: 07888465 1 0 -weisshorn%1:17:00:: 09477567 1 0 -weizenbier%1:13:00:: 07888709 1 0 -weizenbock%1:13:00:: 07888816 1 0 -weizmann%1:18:00:: 11380429 1 0 -weka%1:05:00:: 02015357 1 0 -welch%2:41:00:: 02574072 1 0 -welcher%1:18:00:: 10773527 1 0 -welcome%1:10:00:: 06631322 2 0 -welcome%1:26:00:: 14413265 1 1 -welcome%2:32:00:: 00900583 2 4 -welcome%2:35:00:: 01470098 3 2 -welcome%2:40:00:: 02237206 1 15 -welcome%3:00:00:: 02539968 1 4 -welcome_mat%1:06:00:: 03223299 1 0 -welcome_wagon%1:06:00:: 04571800 1 0 -welcomer%1:18:00:: 10146927 1 0 -welcoming%5:00:01:hospitable:02 01244106 1 1 -welcoming_committee%1:14:00:: 08326266 1 0 -weld%1:06:00:: 04571958 3 0 -weld%1:18:00:: 11380655 2 0 -weld%1:20:00:: 12385830 1 0 -weld%2:30:00:: 00242976 2 1 -weld%2:35:00:: 01595830 1 1 -welder%1:18:00:: 10773665 1 0 -welder's_mask%1:06:00:: 04572121 1 0 -welding%1:04:00:: 00149508 1 0 -weldment%1:06:00:: 04572235 1 0 -welfare%1:04:00:: 01086945 1 3 -welfare%1:07:00:: 05142641 2 1 -welfare%1:26:00:: 14447525 3 0 -welfare-statist%5:00:00:liberal:00 00576573 1 0 -welfare_case%1:18:00:: 10773800 1 1 -welfare_state%1:14:00:: 08178085 1 2 -welfare_work%1:04:00:: 00582195 1 0 -welfare_worker%1:18:00:: 10620027 1 0 -welfarist%5:00:00:liberal:00 00576573 1 0 -welkin%1:15:00:: 08521267 1 0 -well%1:06:00:: 04572344 1 8 -well%1:06:01:: 04572559 5 0 -well%1:06:02:: 04572800 4 0 -well%1:06:03:: 04572935 2 1 -well%1:10:00:: 06675979 3 0 -well%2:38:00:: 01991204 1 3 -well%3:00:01:: 02540578 1 4 -well%4:02:00:: 00011093 1 76 -well%4:02:01:: 00012129 13 0 -well%4:02:03:: 00012531 3 16 -well%4:02:05:: 00012779 2 30 -well%4:02:07:: 00013092 6 4 -well%4:02:08:: 00013429 5 4 -well%4:02:09:: 00013626 12 0 -well%4:02:10:: 00013793 11 0 -well%4:02:11:: 00014285 7 2 -well%4:02:12:: 00014616 10 0 -well%4:02:13:: 00014882 9 0 -well%4:02:14:: 00015007 8 1 -well%4:02:15:: 00015135 4 6 -well%5:00:00:advisable:00 00067638 3 3 -well%5:00:00:fortunate:00 01048762 2 3 -well-adjusted%5:00:00:adjusted:02 00351679 1 0 -well-advised%3:00:00:: 00067966 1 0 -well-appointed%5:00:00:furnished:00 01097966 1 0 -well-balanced%5:00:00:adjusted:02 00351679 2 0 -well-balanced%5:00:00:balanced:00 00894627 1 1 -well-behaved%5:00:00:good:01 01125241 1 0 -well-being%1:26:00:: 14447525 1 2 -well-bound%5:00:00:bound:02 00257356 1 1 -well-branched%5:00:00:branchy:00 00614600 1 0 -well-bred%5:00:00:refined:01 01949059 1 0 -well-chosen%5:00:00:felicitous:00 01000442 1 1 -well-conducted%5:00:00:organized:01 01668723 1 0 -well-connected%5:00:00:connected:00 00567414 1 0 -well-defined%3:00:00:: 00697923 2 0 -well-defined%5:00:00:distinct:00 00779819 1 1 -well-disposed%5:00:00:amicable:00 01246801 1 0 -well-done%5:00:00:cooked:00 00619324 1 0 -well-dressed%5:00:00:groomed:00 02428251 1 0 -well-educated%5:00:00:educated:00 00830051 1 3 -well-endowed%5:00:00:shapely:00 02138989 1 0 -well-favored%5:00:00:beautiful:00 00218950 1 0 -well-favoured%5:00:00:beautiful:00 00218950 1 0 -well-fed%5:00:00:nourished:00 02300624 1 2 -well-fixed%5:00:00:rich:00 02022556 1 0 -well-formed%3:00:04:: 01146012 1 0 -well-found%5:00:00:furnished:00 01097966 1 0 -well-founded%5:00:00:reasonable:00 01944492 1 0 -well-groomed%5:00:00:groomed:00 02428150 2 0 -well-groomed%5:00:01:groomed:00 02428251 1 0 -well-grooved%5:00:00:established:00 01636090 1 0 -well-grounded%5:00:00:valid:00 02499511 1 0 -well-heeled%5:00:00:rich:00 02022556 1 0 -well-informed%5:00:00:sophisticated:00 02271052 1 3 -well-intentioned%5:00:00:intended:00 01338363 1 0 -well-kept%5:00:00:preserved:01 00737515 1 2 -well-kept%5:00:00:tidy:00 02423649 2 1 -well-knit%5:00:00:strong:00 02324165 1 0 -well-known%5:00:00:familiar:00 00966167 2 1 -well-known%5:00:00:known:00 01376705 1 6 -well-lighted%5:00:00:light:06 00271580 1 0 -well-lined%5:00:00:full:00 01086453 1 0 -well-made%5:00:00:superior:02 02345194 1 1 -well-mannered%5:00:00:polite:00 00641343 2 0 -well-mannered%5:00:00:refined:01 01949059 1 0 -well-marked%5:00:00:marked:00 01480916 1 0 -well-meaning%5:00:00:amicable:00 01247025 1 1 -well-meaning%5:00:00:intended:00 01338363 2 0 -well-meant%5:00:00:intended:00 01338363 1 0 -well-mined%5:00:00:mined:00 01504282 1 0 -well-nigh%4:02:00:: 00073033 1 1 -well-nourished%5:00:00:nourished:00 02300624 1 0 -well-off%5:00:00:fortunate:00 01049352 2 0 -well-off%5:00:00:rich:00 02022556 1 0 -well-ordered%5:00:00:regular:00 01960557 1 0 -well-preserved%5:00:00:healthy:00 01172594 1 0 -well-proportioned%5:00:00:shapely:00 02140305 1 0 -well-qualified%5:00:00:qualified:01 01911296 1 0 -well-read%5:00:00:educated:00 00830051 2 0 -well-read%5:00:00:informed:00 01308259 1 1 -well-rounded%5:00:00:comprehensive:00 00526541 1 1 -well-set%5:00:00:strong:00 02324165 1 0 -well-shaven%5:00:00:shaven:00 02153705 1 0 -well-situated%5:00:00:rich:00 02022556 1 0 -well-spoken%5:00:00:articulate:00 00150936 1 0 -well-thought-of%5:00:00:reputable:00 01983548 1 0 -well-timed%4:02:00:: 00273752 1 0 -well-timed%5:00:00:opportune:00 01661529 1 0 -well-to-do%5:00:00:rich:00 02022556 1 0 -well-tried%5:00:00:proved:00 01894196 1 0 -well-turned%5:00:00:felicitous:00 01000592 2 0 -well-turned%5:00:00:shapely:00 02140392 1 0 -well-wisher%1:18:00:: 10686073 1 0 -well-wishing%1:10:00:: 06630459 1 1 -well-wishing%5:00:00:felicitous:00 01000737 1 0 -well-worn%5:00:00:unoriginal:00 01688757 2 0 -well-worn%5:00:00:worn:00 02584610 1 0 -well_behaved%5:00:00:good:01 01125241 1 0 -well_out%2:38:00:: 02070466 1 0 -well_over%2:38:00:: 02072159 1 0 -well_point%1:06:00:: 04573129 1 0 -well_thought_out%5:00:00:thoughtful:00 02420085 1 0 -well_timed%5:00:00:opportune:00 01661529 1 0 -well_up%2:42:00:: 02626405 1 3 -well_water%1:27:00:: 14847503 1 0 -wellbeing%1:26:00:: 14447525 1 0 -wellborn%5:00:00:upper-class:00 00262008 1 0 -wellerism%1:10:00:: 07105342 1 0 -welles%1:18:00:: 11380768 1 0 -wellhead%1:06:00:: 04573045 2 0 -wellhead%1:15:00:: 08508736 1 0 -wellington%1:06:00:: 03516844 3 0 -wellington%1:15:00:: 08973202 2 0 -wellington%1:18:00:: 11380923 1 0 -wellington_boot%1:06:00:: 03516844 1 0 -wellness%1:26:00:: 14447908 1 0 -wellpoint%1:06:00:: 04573129 1 0 -wells%1:18:00:: 11381193 1 0 -wellspring%1:10:00:: 06675979 2 0 -wellspring%1:15:00:: 08508736 1 0 -welsh%1:05:00:: 02405577 3 0 -welsh%1:10:00:: 06961557 2 0 -welsh%1:18:00:: 09747329 1 0 -welsh%2:41:00:: 02574072 1 0 -welsh%3:01:00:: 03130073 1 0 -welsh_black%1:05:00:: 02405577 1 0 -welsh_corgi%1:05:00:: 02112826 1 0 -welsh_onion%1:20:00:: 12433952 1 0 -welsh_pony%1:05:00:: 02382750 1 0 -welsh_poppy%1:20:00:: 11907100 1 0 -welsh_rabbit%1:13:00:: 07880325 1 0 -welsh_rarebit%1:13:00:: 07880325 1 0 -welsh_springer_spaniel%1:05:00:: 02102177 1 0 -welsh_terrier%1:05:00:: 02095727 1 0 -welsher%1:18:00:: 10773527 1 0 -welshman%1:18:00:: 09747329 1 0 -welt%1:06:00:: 04573281 2 0 -welt%1:26:00:: 14298620 1 0 -welt%2:30:00:: 00187415 2 0 -welt%2:35:00:: 01411085 1 0 -weltanschauung%1:09:00:: 06211389 1 1 -welted_thistle%1:20:00:: 11944751 1 0 -welter%1:26:00:: 14500567 1 2 -welter%2:31:00:: 00601581 3 0 -welter%2:38:00:: 01866030 2 0 -welter%2:38:01:: 02086260 1 0 -welterweight%1:18:00:: 10773901 4 0 -welterweight%1:18:01:: 10774018 3 0 -welterweight%1:18:02:: 10774113 2 0 -welterweight%1:23:00:: 13719529 1 0 -weltschmerz%1:12:00:: 07533735 1 0 -welty%1:18:00:: 11381457 1 0 -welwitschia%1:20:00:: 11599324 1 0 -welwitschia_mirabilis%1:20:00:: 11599324 1 0 -welwitschiaceae%1:20:00:: 11598991 1 0 -wembley%1:15:00:: 08875202 1 0 -wen%1:26:00:: 14202763 1 0 -wen-ti%1:18:00:: 09533406 1 0 -wen_ch'ang%1:18:00:: 09533406 1 0 -wench%1:18:00:: 09989045 1 0 -wench%2:35:00:: 01427806 1 0 -wencher%1:18:00:: 10774223 1 0 -wend%2:38:00:: 01841347 1 2 -wendy_house%1:06:00:: 03963813 1 0 -werdnig-hoffman_disease%1:26:00:: 14170070 1 0 -werewolf%1:18:00:: 09503121 1 0 -werfel%1:18:00:: 11381583 1 0 -werlhof's_disease%1:26:00:: 14565417 1 0 -werner_karl_heisenberg%1:18:00:: 11038810 1 0 -wernher_magnus_maximilian_von_braun%1:18:00:: 10863124 1 0 -wernher_von_braun%1:18:00:: 10863124 1 0 -wernicke%1:18:00:: 11381684 1 0 -wernicke's_aphasia%1:26:00:: 14099172 1 0 -wernicke's_area%1:08:00:: 05490370 1 0 -wernicke's_center%1:08:00:: 05490370 1 0 -wernicke's_encephalopathy%1:26:00:: 14397372 1 0 -weser%1:17:00:: 09477718 1 0 -weser_river%1:17:00:: 09477718 1 0 -wesley%1:18:00:: 11381824 2 0 -wesley%1:18:01:: 11381964 1 0 -wesleyan%1:18:00:: 10312773 1 0 -wesleyan%3:01:00:: 02955562 1 0 -wesleyan_methodist_church%1:14:00:: 08092713 1 0 -wesleyan_methodists%1:14:00:: 08092713 1 0 -wesleyanism%1:09:00:: 06231680 1 0 -wesleyism%1:09:00:: 06231680 1 0 -wessex%1:15:00:: 08886636 1 0 -west%1:15:00:: 08682575 1 19 -west%1:15:01:: 08682819 3 6 -west%1:15:02:: 08561835 8 0 -west%1:18:00:: 11382112 7 0 -west%1:18:01:: 11382278 6 0 -west%1:18:02:: 11382398 5 0 -west%1:24:00:: 13834399 2 10 -west%1:24:02:: 13836136 4 0 -west%3:00:00:: 00824321 1 8 -west%4:02:00:: 00323908 1 3 -west-central%5:00:00:western:02 00826827 1 0 -west-sider%1:18:00:: 10774756 1 0 -west_africa%1:15:00:: 09178310 1 0 -west_african%1:10:00:: 06996309 1 0 -west_african%3:01:00:: 03042249 1 0 -west_bank%1:15:00:: 08793489 1 0 -west_bengal%1:15:00:: 08906272 1 0 -west_berlin%1:15:00:: 08769836 1 0 -west_berliner%1:18:00:: 09748541 1 1 -west_by_north%1:24:00:: 13834524 1 0 -west_by_south%1:24:00:: 13834280 1 0 -west_chadic%1:10:00:: 06983521 1 0 -west_coast%1:15:00:: 09048303 1 0 -west_coast_hemlock%1:20:00:: 11628087 1 0 -west_country%1:15:00:: 08886277 1 0 -west_end%1:15:00:: 08875369 1 0 -west_germanic%1:10:00:: 06946823 1 0 -west_germanic_language%1:10:00:: 06946823 1 0 -west_germany%1:15:00:: 08768881 1 0 -west_highland_white_terrier%1:05:00:: 02098286 1 0 -west_indian%1:18:00:: 10774440 1 0 -west_indian_cherry%1:13:00:: 07746334 2 0 -west_indian_cherry%1:20:00:: 12694486 1 0 -west_indian_jasmine%1:20:00:: 11774972 1 0 -west_indian_satinwood%1:20:00:: 12715408 1 0 -west_indian_smallpox%1:26:00:: 14124688 1 0 -west_indian_snowberry%1:20:00:: 12662379 1 0 -west_indies%1:15:00:: 08747054 1 1 -west_malaysia%1:15:00:: 08964647 1 0 -west_midland%1:10:00:: 06949121 1 0 -west_nile_encephalitis%1:26:00:: 14344033 1 0 -west_nile_encephalitis_virus%1:05:00:: 01332940 1 0 -west_nile_virus%1:05:00:: 01332940 1 0 -west_northwest%1:24:00:: 13834643 1 0 -west_pakistan%1:15:00:: 08975902 1 0 -west_palm_beach%1:15:00:: 09075496 1 0 -west_point%1:15:00:: 09123809 1 0 -west_saxon%1:10:00:: 06949762 2 0 -west_saxon%1:10:01:: 06949407 3 0 -west_saxon%1:18:00:: 09703101 1 0 -west_side%1:15:00:: 08650593 1 1 -west_southwest%1:24:00:: 13834162 1 0 -west_sussex%1:15:00:: 08883643 1 0 -west_tocharian%1:10:00:: 06969018 1 0 -west_virginia%1:15:00:: 09155306 1 0 -west_virginian%1:18:00:: 09746438 1 0 -west_wind%1:19:00:: 11525480 1 0 -west_yorkshire%1:15:00:: 08885490 1 0 -westbound%5:00:00:west:00 00824509 1 0 -wester%1:19:00:: 11525480 1 0 -westerly%1:19:00:: 11525614 1 0 -westerly%4:02:00:: 00324470 1 1 -westerly%4:02:02:: 00324358 2 0 -westerly%5:00:01:west:00 00824753 1 0 -westerly%5:00:03:west:00 00824509 2 0 -western%1:10:00:: 06616035 1 1 -western%1:13:00:: 07698672 2 0 -western%3:00:01:: 00825089 1 21 -western%3:00:02:: 00825970 2 3 -western%5:00:00:west:00 00824631 3 1 -western%5:00:01:west:00 00824753 4 0 -western_australia%1:15:00:: 08834654 1 0 -western_australia_coral_pea%1:20:00:: 12534208 1 0 -western_ax%1:06:00:: 03226090 1 0 -western_axe%1:06:00:: 03226090 1 0 -western_balsam_poplar%1:20:00:: 12733218 1 0 -western_big-eared_bat%1:05:00:: 02148991 1 0 -western_birch%1:20:00:: 12283542 1 0 -western_black-legged_tick%1:05:00:: 01777649 1 0 -western_blackberry%1:20:00:: 12654659 1 0 -western_blind_snake%1:05:00:: 01740885 1 0 -western_box_turtle%1:05:00:: 01669372 1 0 -western_buttercup%1:20:00:: 11722342 1 0 -western_chimpanzee%1:05:00:: 02482060 1 0 -western_chokecherry%1:20:00:: 12650915 1 0 -western_church%1:14:00:: 08083599 1 0 -western_civilization%1:14:00:: 08292051 1 0 -western_coral_snake%1:05:00:: 01746191 1 0 -western_crab_apple%1:20:00:: 12635744 1 0 -western_culture%1:14:00:: 08292051 1 0 -western_dewberry%1:20:00:: 12654659 1 0 -western_diamondback%1:05:00:: 01756508 1 0 -western_diamondback_rattlesnake%1:05:00:: 01756508 1 0 -western_empire%1:15:00:: 08800911 1 0 -western_fence_lizard%1:05:00:: 01680655 1 0 -western_gray_squirrel%1:05:00:: 02356612 1 0 -western_grey_squirrel%1:05:00:: 02356612 1 0 -western_hemisphere%1:15:00:: 08682389 1 3 -western_hemlock%1:20:00:: 11628087 1 0 -western_holly_fern%1:20:00:: 13200542 1 0 -western_honey_mesquite%1:20:00:: 11765568 1 0 -western_islands%1:15:00:: 08893223 1 0 -western_isles%1:15:00:: 08893223 1 0 -western_kingbird%1:05:00:: 01548492 1 0 -western_ladies'_tresses%1:20:00:: 12084400 1 0 -western_larch%1:20:00:: 11619455 1 0 -western_lowland_gorilla%1:05:00:: 02481103 1 0 -western_malayo-polynesian%1:10:00:: 06938729 1 0 -western_meadowlark%1:05:00:: 01573360 1 0 -western_mountain_ash%1:20:00:: 12658715 1 0 -western_mugwort%1:20:00:: 11930788 1 0 -western_narrow-mouthed_toad%1:05:00:: 01653026 1 0 -western_omelet%1:13:00:: 07843348 1 0 -western_paper_birch%1:20:00:: 12283542 1 0 -western_pasqueflower%1:20:00:: 11738063 1 0 -western_pipistrel%1:05:00:: 02148245 1 0 -western_poison_oak%1:20:00:: 12767208 1 0 -western_poppy%1:20:00:: 11901452 1 0 -western_prince's_pine%1:20:00:: 12257725 1 0 -western_ragweed%1:20:00:: 11920133 1 0 -western_rattlesnake%1:05:00:: 01756089 1 0 -western_red-backed_salamander%1:05:00:: 01636510 1 0 -western_red_cedar%1:20:00:: 11644046 1 0 -western_redbud%1:20:00:: 12514138 1 0 -western_ribbon_snake%1:05:00:: 01735728 1 0 -western_roman_empire%1:15:00:: 08800911 1 0 -western_saddle%1:06:00:: 04325041 1 0 -western_sahara%1:15:00:: 08970833 1 0 -western_samoa%1:15:00:: 08991491 1 0 -western_samoan_monetary_unit%1:23:00:: 13708141 1 0 -western_sand_cherry%1:20:00:: 12642734 1 0 -western_sandwich%1:13:00:: 07698672 1 0 -western_saxifrage%1:20:00:: 12793886 1 0 -western_silvery_aster%1:20:00:: 11937360 1 0 -western_skink%1:05:00:: 01684578 1 0 -western_spadefoot%1:05:00:: 01649412 1 0 -western_tamarack%1:20:00:: 11619455 1 0 -western_tanager%1:05:00:: 01597906 1 0 -western_toad%1:05:00:: 01647640 1 0 -western_united_states%1:15:00:: 08682819 1 0 -western_wall_flower%1:20:00:: 11887750 1 0 -western_wheatgrass%1:20:00:: 12105981 1 0 -western_whiptail%1:05:00:: 01686609 1 0 -western_white_pine%1:20:00:: 11613459 1 0 -western_wood_pewee%1:05:00:: 01549641 1 0 -western_yellow_pine%1:20:00:: 11614420 1 0 -western_yew%1:20:00:: 11662128 1 0 -westerner%1:18:00:: 10774329 1 1 -westernisation%1:22:00:: 13574582 1 0 -westernise%2:30:00:: 00523645 1 0 -westernization%1:22:00:: 13574582 1 0 -westernize%2:30:00:: 00523645 1 0 -westernmost%5:00:00:west:00 00824876 1 0 -westinghouse%1:18:00:: 11382555 1 0 -westland_pine%1:20:00:: 11655974 1 0 -westminster%1:15:00:: 08875547 1 0 -westminster_abbey%1:15:00:: 08876435 1 0 -westmost%5:00:00:west:00 00824876 1 0 -weston%1:18:00:: 11382688 1 0 -weston_cell%1:06:00:: 04573379 1 0 -westside%5:00:00:west:00 00824965 1 0 -westward%1:24:00:: 13834399 1 0 -westward%4:02:00:: 00324022 1 3 -westward%5:00:00:west:00 00824509 1 0 -westwards%4:02:00:: 00324022 1 1 -wet%1:26:00:: 14535431 1 1 -wet%2:29:00:: 00072730 2 0 -wet%2:30:00:: 00214951 1 4 -wet%3:00:01:: 02547317 1 23 -wet%3:00:02:: 02554267 4 0 -wet%3:00:04:: 02554752 3 0 -wet%3:00:05:: 02555126 2 0 -wet%5:00:00:alcoholic:00 01159405 5 0 -wet%5:00:00:intoxicated:00 00798103 6 0 -wet-bulb_thermometer%1:06:00:: 04573625 1 0 -wet-nurse%1:18:00:: 10774870 1 0 -wet-nurse%2:34:00:: 01186428 1 0 -wet_bar%1:06:00:: 04573513 1 0 -wet_blanket%1:18:00:: 10638136 1 0 -wet_cell%1:06:00:: 04573832 1 0 -wet_dream%1:09:00:: 05769156 1 0 -wet_fly%1:06:00:: 04573937 1 0 -wet_lung%1:26:00:: 14055052 1 0 -wet_nurse%1:18:00:: 10774870 1 0 -wet_suit%1:06:00:: 04574067 1 0 -wetback%1:18:00:: 09722898 1 0 -wether%1:05:00:: 02412210 1 0 -wetland%1:17:00:: 09477890 1 0 -wetness%1:26:00:: 14534696 1 1 -wetnurse%1:18:00:: 10774870 1 0 -wetter%1:18:00:: 10775003 2 0 -wetter%1:18:01:: 09846586 3 0 -wetter%1:27:00:: 15096783 1 0 -wetting%1:04:00:: 00277376 1 1 -wetting%1:22:00:: 13506727 2 0 -wetting_agent%1:27:00:: 15096783 1 0 -weymouth_pine%1:20:00:: 11613219 1 0 -whack%1:04:00:: 00133338 2 0 -whack%1:11:00:: 07399829 1 0 -whack%2:35:00:: 01415807 1 2 -whacked%5:00:00:tired:00 02434473 1 0 -whacker%1:06:00:: 04574234 1 0 -whacking%1:04:00:: 01160729 1 0 -whacking%4:02:00:: 00494756 1 0 -whacking%5:00:00:large:00 01391074 1 0 -whacko%1:18:00:: 10368414 1 0 -whacky%5:00:00:foolish:00 02571536 1 0 -whacky%5:00:00:insane:00 02074929 2 0 -whale%1:05:00:: 02062744 2 0 -whale%1:18:00:: 10129133 1 1 -whale%2:33:00:: 01141938 1 0 -whale_louse%1:05:00:: 01993830 1 0 -whale_oil%1:27:00:: 15097430 1 0 -whale_shark%1:05:00:: 01488038 1 0 -whale_sucker%1:05:00:: 02575590 1 0 -whaleboat%1:06:00:: 04574348 1 0 -whalebone%1:27:00:: 14758252 1 0 -whalebone_whale%1:05:00:: 02063224 1 0 -whaler%1:06:00:: 04574471 2 0 -whaler%1:18:00:: 10775128 1 0 -whalesucker%1:05:00:: 02575590 1 0 -whaling_gun%1:06:00:: 04574606 1 0 -whaling_ship%1:06:00:: 04574471 1 0 -wham%2:35:00:: 01415807 1 0 -whammy%1:10:00:: 07160424 2 0 -whammy%1:11:00:: 07476092 1 0 -whang%1:04:00:: 00133338 1 0 -whang%2:32:00:: 00863433 3 0 -whang%2:35:00:: 01403012 2 0 -whang%2:35:01:: 01412548 1 0 -whap%2:35:00:: 01397088 1 0 -wharf%1:06:00:: 03933529 1 1 -wharf%2:35:00:: 01305241 5 0 -wharf%2:35:02:: 01489734 3 0 -wharf%2:35:03:: 01305361 4 0 -wharf%2:40:00:: 02281960 2 0 -wharf%2:40:01:: 02331175 1 0 -wharf_rat%1:05:00:: 02333733 2 0 -wharf_rat%1:18:00:: 10775245 1 0 -wharfage%1:06:00:: 03933529 2 0 -wharfage%1:21:00:: 13324188 1 0 -wharton%1:18:00:: 11382795 1 0 -what_for%1:10:00:: 06713026 1 0 -what_is_more%4:02:00:: 00029367 1 1 -whatchamacallit%1:06:00:: 03218545 1 0 -whatchamacallum%1:06:00:: 03218545 1 0 -whatever%5:00:00:some:00 02267686 1 0 -whatever_may_come%4:02:00:: 00156833 1 0 -whatnot%1:06:00:: 02897692 1 0 -whatsis%1:06:00:: 03218545 1 0 -whatsoever%5:00:00:some:00 02267686 1 0 -wheal%1:26:00:: 14298620 1 0 -wheat%1:07:00:: 04966941 3 0 -wheat%1:13:00:: 07803545 2 0 -wheat%1:20:00:: 12142085 1 1 -wheat-grass%1:20:00:: 12105125 1 0 -wheat_beer%1:13:00:: 07888465 1 0 -wheat_berry%1:13:00:: 07803545 2 0 -wheat_berry%1:20:00:: 12142357 1 0 -wheat_eel%1:05:00:: 01932643 1 0 -wheat_eelworm%1:05:00:: 01932643 1 0 -wheat_field%1:15:00:: 08683286 1 0 -wheat_flag_smut%1:20:00:: 13069224 1 0 -wheat_flour%1:13:00:: 07569543 1 0 -wheat_future%1:06:00:: 04574861 1 0 -wheat_germ%1:13:00:: 07803992 1 0 -wheat_gluten%1:13:00:: 07570635 1 0 -wheat_rust%1:20:00:: 13065089 1 0 -wheat_scab%1:26:00:: 14217581 1 0 -wheatear%1:05:00:: 01561732 1 0 -wheately_elm%1:20:00:: 12408466 1 0 -wheaten%3:01:00:: 03130337 1 0 -wheatfield%1:15:00:: 08683286 1 0 -wheatflake%1:13:00:: 07705473 1 0 -wheatgrass%1:20:00:: 12105125 1 0 -wheatley%1:18:00:: 11382930 1 0 -wheatstone%1:18:00:: 11383100 1 0 -wheatstone_bridge%1:06:00:: 04574761 1 0 -wheatworm%1:05:00:: 01932643 1 0 -wheedle%2:32:00:: 00768778 1 1 -wheedler%1:18:00:: 10775379 1 0 -wheedling%1:04:00:: 00159899 1 0 -wheel%1:06:00:: 04574999 1 12 -wheel%1:06:01:: 04575723 4 0 -wheel%1:06:02:: 04039041 6 0 -wheel%1:06:03:: 04113406 5 0 -wheel%1:06:05:: 04313503 2 5 -wheel%1:06:06:: 02834778 7 0 -wheel%1:07:00:: 05195920 3 0 -wheel%2:38:00:: 02046075 1 7 -wheel%2:38:02:: 01887020 3 3 -wheel%2:38:04:: 02046441 2 3 -wheel%2:38:06:: 01935476 4 0 -wheel-like%5:00:00:round:00 02043142 1 0 -wheel_and_axle%1:06:00:: 04575824 1 0 -wheel_around%2:38:00:: 02046075 2 0 -wheel_around%2:38:01:: 02046441 1 0 -wheel_bug%1:05:00:: 02244797 1 0 -wheel_horse%1:05:00:: 02387581 1 0 -wheel_lock%1:06:00:: 04576861 1 0 -wheel_spoke%1:06:00:: 04283378 1 0 -wheel_tree%1:20:00:: 12222900 1 0 -wheelbarrow%1:06:00:: 02797295 1 0 -wheelbarrow%2:38:00:: 01949579 1 0 -wheelbase%1:07:00:: 05087173 1 0 -wheelchair%1:06:00:: 04576002 1 1 -wheeled%3:00:00:: 02555683 1 0 -wheeled_vehicle%1:06:00:: 04576211 1 0 -wheeler%1:05:00:: 02387581 5 0 -wheeler%1:18:00:: 10775660 2 0 -wheeler%1:18:01:: 09986189 4 0 -wheeler%1:18:02:: 10775536 3 0 -wheeler%1:18:03:: 11383278 1 0 -wheeler_dealer%1:18:00:: 10194566 1 0 -wheeler_peak%1:17:00:: 09478047 1 0 -wheelhouse%1:06:00:: 03939677 1 0 -wheeling%1:04:00:: 00122530 2 0 -wheeling%1:15:00:: 09157021 1 0 -wheelless%3:00:00:: 02555777 1 0 -wheelwork%1:06:00:: 04576971 1 0 -wheelwright%1:18:00:: 10775660 1 0 -wheeze%1:04:00:: 00836407 1 1 -wheeze%1:09:00:: 05909384 2 0 -wheeze%2:29:00:: 00006697 1 2 -wheezily%4:02:00:: 00494827 1 0 -wheeziness%1:26:00:: 14372855 1 0 -wheezing%5:00:00:unhealthy:00 01174048 1 1 -wheezingly%4:02:00:: 00494827 1 0 -wheezy%5:00:00:noisy:00 01921639 1 0 -wheezy%5:00:00:unhealthy:00 01174048 2 0 -whelk%1:05:00:: 01947396 2 0 -whelk%1:13:00:: 07782804 1 0 -whelk%2:33:00:: 01143147 1 0 -whelm%2:37:00:: 01809321 1 0 -whelp%1:05:00:: 01322343 1 0 -whelp%2:29:00:: 00058516 1 0 -when_first_seen%4:02:00:: 00103426 1 0 -when_the_time_comes%4:02:00:: 00165269 1 0 -whence%4:02:00:: 00495309 1 1 -whereabouts%1:15:00:: 08683383 1 3 -wherefore%1:16:00:: 09179606 1 0 -wheresoever%4:02:00:: 00495377 1 0 -wherever%4:02:00:: 00495377 1 0 -wherewithal%1:21:00:: 13354154 1 0 -wherry%1:06:01:: 04577139 2 0 -wherry%1:06:02:: 04577293 1 0 -whet%2:35:00:: 01247074 2 0 -whet%2:39:00:: 02117534 1 1 -whetstone%1:06:00:: 04577426 1 0 -whey%1:13:00:: 07849733 2 0 -whey%1:27:00:: 15097578 1 0 -whicker%1:11:00:: 07387316 1 0 -whicker%2:32:00:: 01059743 1 0 -whidah%1:05:00:: 01543383 1 0 -whiff%1:04:00:: 00130512 3 0 -whiff%1:05:00:: 02662239 2 0 -whiff%1:19:00:: 11497888 1 1 -whiff%2:32:00:: 00943436 5 0 -whiff%2:34:02:: 01198616 4 0 -whiff%2:35:00:: 01409888 3 0 -whiff%2:38:00:: 02100861 2 0 -whiff%2:39:00:: 02125032 1 0 -whiffer%1:18:00:: 10775771 1 0 -whiffletree%1:06:00:: 04577567 1 0 -whig%1:18:00:: 10776141 1 1 -whig%1:18:01:: 10776052 2 0 -whig%1:18:02:: 10775911 3 0 -whig_party%1:14:00:: 08264203 1 0 -while%1:28:00:: 15246353 1 23 -while_away%2:42:00:: 02709277 1 1 -whim%1:09:00:: 05919549 2 0 -whim%1:12:00:: 07490579 1 1 -whimper%1:10:00:: 07211752 1 0 -whimper%2:29:00:: 00066025 1 1 -whimsey%1:07:00:: 04671841 2 0 -whimsey%1:09:00:: 05919549 1 0 -whimsical%5:00:00:arbitrary:00 00719442 1 0 -whimsicality%1:07:00:: 04650010 2 0 -whimsicality%1:07:01:: 04671841 1 0 -whimsically%4:02:00:: 00337068 1 0 -whimsy%1:07:00:: 04671841 2 0 -whimsy%1:09:00:: 05919549 1 0 -whin%1:17:00:: 09478210 3 0 -whin%1:20:01:: 12530818 2 0 -whin%1:20:02:: 12574866 1 0 -whinberry%1:20:00:: 12248574 1 0 -whinchat%1:05:00:: 01560935 1 0 -whine%1:10:00:: 07211752 1 0 -whine%2:32:00:: 00907930 4 0 -whine%2:32:01:: 01042531 2 1 -whine%2:38:00:: 01839280 1 1 -whine%2:39:00:: 02171664 3 0 -whiner%1:18:00:: 10776339 1 0 -whiney%5:00:00:complaining:00 00513981 1 0 -whinny%1:11:00:: 07387316 1 0 -whinny%2:32:00:: 01059743 1 2 -whinstone%1:17:00:: 09478210 1 0 -whiny%5:00:00:complaining:00 00513981 1 0 -whip%1:04:00:: 00134574 5 0 -whip%1:06:00:: 04577769 1 3 -whip%1:07:00:: 05022902 4 0 -whip%1:13:00:: 07612367 3 0 -whip%1:18:00:: 10776766 2 0 -whip%2:32:00:: 00863906 6 0 -whip%2:33:00:: 01102997 2 4 -whip%2:35:00:: 01411085 1 8 -whip%2:35:01:: 01417868 5 0 -whip%2:35:02:: 01398032 4 3 -whip%2:38:00:: 01891092 3 3 -whip-round%1:10:00:: 06513953 1 0 -whip-scorpion%1:05:00:: 01771417 1 0 -whip-snake%1:05:00:: 01731545 1 0 -whip_hand%1:07:00:: 05159123 1 1 -whip_scorpion%1:05:00:: 01771417 1 0 -whip_snake%1:05:00:: 01731545 1 0 -whip_through%2:41:00:: 02374282 1 1 -whip_top%1:06:00:: 04578459 1 0 -whip_up%2:36:00:: 01666002 1 0 -whipcord%1:06:01:: 04578112 2 0 -whipcord%1:06:02:: 04578220 1 0 -whiplash%1:04:00:: 00134574 2 0 -whiplash%1:26:00:: 14298420 1 0 -whiplash_injury%1:26:00:: 14298420 1 0 -whiplike%3:01:00:: 03015113 1 0 -whipped_cream%1:13:00:: 07621388 1 0 -whipper%1:18:00:: 10684146 1 0 -whipper-in%1:18:00:: 10776887 1 0 -whippersnapper%1:18:00:: 10776987 1 0 -whippet%1:05:00:: 02091134 1 0 -whipping%1:04:00:: 01163047 1 1 -whipping%1:04:02:: 01176219 4 0 -whipping%1:06:00:: 04578559 3 0 -whipping%1:11:00:: 07476623 2 0 -whipping%5:00:00:spirited:00 02280680 1 1 -whipping_boy%1:18:00:: 10555311 1 0 -whipping_cream%1:13:00:: 07848196 1 0 -whipping_post%1:06:00:: 04578329 1 0 -whipping_top%1:06:00:: 04578459 1 0 -whipple's_penstemon%1:20:00:: 12888457 1 0 -whippletree%1:06:00:: 04577567 1 0 -whippoorwill%1:05:00:: 01836087 1 0 -whippy%5:00:00:elastic:00 00844719 1 0 -whipsaw%1:06:00:: 04503836 1 0 -whipsaw%2:35:00:: 01559767 2 0 -whipsaw%2:41:00:: 02573958 1 0 -whipsnake%1:05:00:: 01731545 1 0 -whipstitch%1:06:00:: 04578559 1 0 -whipstitching%1:06:00:: 04578559 1 0 -whiptail%1:05:00:: 01685808 1 0 -whiptail_lizard%1:05:00:: 01685808 1 0 -whir%1:11:00:: 07399917 1 1 -whir%2:39:00:: 02188587 1 1 -whirl%1:04:00:: 00787061 3 0 -whirl%1:04:02:: 00343249 4 0 -whirl%1:11:00:: 07442068 1 1 -whirl%1:25:00:: 13878112 2 0 -whirl%2:38:00:: 02047650 3 1 -whirl%2:38:01:: 02048891 1 6 -whirl%2:38:02:: 02048051 2 2 -whirl%2:38:03:: 02047857 5 0 -whirl%2:38:04:: 02046755 4 1 -whirl_around%2:38:00:: 02047857 1 0 -whirlaway%1:05:00:: 02384017 1 0 -whirler%1:06:00:: 04578708 2 0 -whirler%1:18:00:: 10777147 1 0 -whirligig%1:06:00:: 02966193 2 0 -whirligig%1:06:01:: 04454240 1 0 -whirligig%2:38:00:: 02047148 1 0 -whirligig_beetle%1:05:00:: 02177506 1 0 -whirling%1:04:00:: 00342755 1 0 -whirling_dervish%1:18:00:: 10777147 1 0 -whirlpool%1:11:00:: 07433145 1 0 -whirlpool%2:38:00:: 02047650 1 0 -whirlwind%1:19:00:: 11525779 1 0 -whirlybird%1:06:00:: 03512147 1 0 -whirr%1:11:00:: 07399917 1 0 -whirr%2:32:00:: 01052562 2 0 -whirr%2:39:00:: 02188587 1 0 -whirring%1:11:00:: 07399917 1 2 -whirring%5:00:00:noisy:00 01922131 1 0 -whish%2:38:00:: 01834360 2 0 -whish%2:39:00:: 02178484 1 0 -whisk%1:06:00:: 04578801 2 0 -whisk%1:06:01:: 04578934 1 0 -whisk%2:35:00:: 01417868 4 0 -whisk%2:35:01:: 01435254 3 0 -whisk%2:38:00:: 02079679 1 1 -whisk%2:38:01:: 02079818 2 0 -whisk_away%2:35:00:: 01435128 1 1 -whisk_broom%1:06:00:: 04578801 1 0 -whisk_by%2:38:00:: 02053829 1 1 -whisk_fern%1:20:00:: 13216812 1 0 -whisk_off%2:35:00:: 01435128 2 0 -whisk_off%2:35:01:: 01435254 1 0 -whisker%1:05:00:: 01901828 2 0 -whisker%1:23:00:: 13761603 1 0 -whisker%2:40:00:: 02332173 1 0 -whisker_jack%1:05:00:: 01581166 1 0 -whiskered%5:00:00:unshaven:00 02153965 1 1 -whiskerless%5:00:00:shaven:00 02153620 1 0 -whiskers%1:08:00:: 05261566 1 1 -whiskery%5:00:00:unshaven:00 02153965 1 0 -whiskey%1:13:00:: 07906284 1 6 -whiskey_bottle%1:06:00:: 04579056 1 0 -whiskey_jug%1:06:00:: 04579145 1 0 -whiskey_neat%1:13:00:: 07918454 1 0 -whiskey_on_the_rocks%1:13:00:: 07918601 1 0 -whiskey_sour%1:13:00:: 07918193 1 0 -whisky%1:13:00:: 07906284 1 19 -whisky_neat%1:13:00:: 07918454 1 0 -whisky_on_the_rocks%1:13:00:: 07918601 1 1 -whisky_sour%1:13:00:: 07918193 1 0 -whisper%1:10:00:: 07130341 1 6 -whisper%1:11:00:: 07392783 2 0 -whisper%2:32:00:: 00915830 1 22 -whispered%5:00:00:unvoiced:00 02286507 1 0 -whisperer%1:18:00:: 10777299 1 0 -whispering%1:10:00:: 07130341 2 0 -whispering%1:11:00:: 07392783 1 0 -whispering%5:00:00:soft:04 01456038 1 0 -whispering_bells%1:20:00:: 12835331 1 0 -whispering_campaign%1:04:00:: 00801450 1 0 -whispering_dome%1:06:00:: 04579230 1 0 -whispering_gallery%1:06:00:: 04579230 1 0 -whist%1:04:00:: 00496167 1 0 -whist_drive%1:11:00:: 07450549 1 0 -whistle%1:06:00:: 03912218 5 0 -whistle%1:06:01:: 04579432 4 0 -whistle%1:06:02:: 04579667 3 0 -whistle%1:10:00:: 06806098 2 0 -whistle%1:11:00:: 07400156 1 0 -whistle%2:32:00:: 01043441 3 2 -whistle%2:32:01:: 01043887 5 1 -whistle%2:32:02:: 01043612 6 0 -whistle%2:38:00:: 02093088 2 2 -whistle%2:38:01:: 02093234 4 1 -whistle%2:39:00:: 02183626 1 3 -whistle-blower%1:18:00:: 10777400 1 0 -whistle-stop_tour%1:04:00:: 00749232 1 0 -whistle_blower%1:18:00:: 10777400 1 0 -whistle_buoy%1:10:00:: 07266665 1 0 -whistle_stop%1:06:00:: 04579795 1 0 -whistleblower%1:18:00:: 10777400 1 0 -whistler%1:05:01:: 01556514 5 0 -whistler%1:05:02:: 01850373 4 0 -whistler%1:05:03:: 02361706 3 0 -whistler%1:18:00:: 10777768 2 0 -whistler%1:18:01:: 11383425 1 0 -whistlestop%2:33:00:: 01095083 1 0 -whistling%1:04:00:: 00547454 2 1 -whistling%1:10:00:: 06806098 3 0 -whistling%1:11:00:: 07400156 1 1 -whistling_buoy%1:10:00:: 07266665 1 0 -whistling_marmot%1:05:00:: 02361706 1 0 -whistling_swan%1:05:00:: 01859689 1 0 -whit%1:23:00:: 13773725 1 1 -whit-tuesday%1:28:00:: 15242599 1 0 -whit_leather%1:27:00:: 14761450 1 0 -white%1:06:01:: 04579986 11 0 -white%1:06:03:: 03357081 12 0 -white%1:07:00:: 04960729 2 6 -white%1:13:00:: 07841037 10 0 -white%1:17:00:: 09478355 9 0 -white%1:18:00:: 09638875 1 10 -white%1:18:01:: 11383546 8 0 -white%1:18:02:: 11383767 7 0 -white%1:18:03:: 11383917 6 0 -white%1:18:04:: 11384022 5 0 -white%1:18:05:: 11384159 4 0 -white%1:18:06:: 11384291 3 0 -white%2:30:00:: 00280301 1 0 -white%3:00:01:: 00393105 1 61 -white%3:00:02:: 00243180 2 15 -white%5:00:00:colorless:02 00404568 11 0 -white%5:00:00:covered:00 01698231 4 0 -white%5:00:00:diluted:00 00756638 9 0 -white%5:00:00:empty:00 01087093 8 0 -white%5:00:00:good:02 01130932 7 0 -white%5:00:00:hot:01 01250991 6 0 -white%5:00:00:light:06 00272950 12 0 -white%5:00:00:pure:01 01905235 3 0 -white%5:00:00:segregated:00 01327680 5 0 -white%5:00:02:colorless:02 00406743 10 0 -white-alder_family%1:20:00:: 12249821 1 0 -white-bellied_swallow%1:05:00:: 01595450 1 0 -white-berry_yew%1:20:00:: 11663263 1 0 -white-blotched%5:00:00:patterned:00 01791349 1 0 -white-bread%5:00:00:conventional:01 00608245 1 0 -white-breasted_nuthatch%1:05:00:: 01591301 1 0 -white-chinned_petrel%1:05:00:: 02059541 1 0 -white-coat_hypertension%1:26:00:: 14105504 1 0 -white-collar%3:00:00:: 02555954 1 2 -white-crowned_sparrow%1:05:00:: 01535690 1 0 -white-edged%5:00:00:bordered:00 00259177 1 0 -white-faced_hornet%1:05:00:: 02213663 1 0 -white-flowered%5:00:00:achromatic:00 00392367 1 0 -white-footed_mouse%1:05:00:: 02336826 1 0 -white-haired%5:00:00:loved:00 01462461 2 0 -white-haired%5:00:00:old:02 01645678 1 0 -white-headed_stilt%1:05:00:: 02035402 1 0 -white-heart_hickory%1:20:00:: 12322099 1 0 -white-hot%5:00:00:hot:01 01250991 2 0 -white-hot%5:00:00:hot:02 01257501 1 0 -white-leaved_rockrose%1:20:00:: 12374705 1 0 -white-lipped%5:00:00:afraid:00 00081417 1 0 -white-lipped_peccary%1:05:00:: 02397987 1 0 -white-livered%5:00:00:cowardly:00 00265314 1 0 -white-man's_foot%1:20:00:: 12599435 1 0 -white-out%2:30:01:: 00546398 1 0 -white-pine_rust%1:26:00:: 14277833 1 0 -white-pink%5:00:00:chromatic:00 00385547 1 0 -white-rayed_mule's_ears%1:20:00:: 12032686 1 0 -white-ribbed%5:00:00:patterned:00 01791434 1 0 -white-rumped_shrike%1:05:00:: 01599388 1 0 -white-seeded%5:00:00:seedy:00 02256005 1 0 -white-shoe%5:00:00:exclusive:00 01863442 1 0 -white-stemmed_filaree%1:20:00:: 12689305 1 0 -white-streaked%5:00:00:patterned:00 01791510 1 0 -white-tailed_deer%1:05:00:: 02432291 1 0 -white-tailed_jackrabbit%1:05:00:: 02327175 1 0 -white-tailed_kite%1:05:00:: 01609391 1 0 -white-tailed_sea_eagle%1:05:00:: 01615458 1 0 -white-throated_sparrow%1:05:00:: 01535469 1 0 -white-tie%5:00:00:formal:01 01044118 1 0 -white-tipped_shark%1:05:00:: 01490112 1 0 -white-topped_aster%1:20:00:: 12013511 1 0 -white_admiral%1:05:01:: 02276749 2 0 -white_admiral%1:05:02:: 02276902 1 0 -white_alder%1:20:01:: 12285369 1 0 -white_alder%1:20:02:: 12250180 2 0 -white_anglo-saxon_protestant%1:18:00:: 09641578 1 0 -white_ant%1:05:00:: 02223266 1 0 -white_arsenic%1:27:00:: 14768201 1 0 -white_ash%1:20:01:: 12304115 2 0 -white_ash%1:20:02:: 12336727 1 0 -white_aspen%1:20:00:: 12732009 1 0 -white_avens%1:20:01:: 12631813 2 0 -white_avens%1:20:02:: 12632733 1 0 -white_backlash%1:04:00:: 00203208 1 0 -white_baneberry%1:20:00:: 11724363 1 0 -white_basswood%1:20:00:: 12203896 1 0 -white_bead%1:20:00:: 11724363 1 0 -white_bean%1:13:00:: 07727140 1 0 -white_bedstraw%1:20:00:: 12666369 1 0 -white_beech%1:20:00:: 12261808 1 0 -white_beer%1:13:00:: 07888465 1 0 -white_birch%1:20:00:: 12282737 1 0 -white_blood_cell%1:08:00:: 05449959 1 0 -white_blood_corpuscle%1:08:00:: 05449959 1 0 -white_book%1:10:00:: 07219530 1 0 -white_bread%1:13:00:: 07687211 1 0 -white_broom%1:20:00:: 12521186 1 0 -white_bryony%1:20:00:: 12163279 1 0 -white_burgundy%1:13:00:: 07894551 1 0 -white_cake%1:13:00:: 07632980 1 0 -white_camas%1:20:00:: 12467197 1 0 -white_campion%1:20:00:: 11816336 1 0 -white_cedar%1:20:01:: 11635152 2 0 -white_cedar%1:20:02:: 11644226 1 0 -white_cell%1:08:00:: 05449959 1 0 -white_chocolate%1:13:00:: 07604587 1 0 -white_cinnamon%1:20:00:: 12372520 1 0 -white_cinnamon_tree%1:20:00:: 12372233 1 0 -white_clover%1:20:00:: 11753700 1 0 -white_cockle%1:20:00:: 11816336 1 0 -white_cohosh%1:20:00:: 11724363 1 0 -white_corpuscle%1:08:00:: 05449959 1 0 -white_crappie%1:05:00:: 02563079 1 0 -white_croaker%1:05:01:: 02598573 2 0 -white_croaker%1:05:02:: 02598878 1 0 -white_currant%1:20:00:: 12805762 1 0 -white_cypress%1:20:00:: 11635152 1 0 -white_cypress_pine%1:20:00:: 11634243 1 0 -white_daisy%1:20:00:: 11989869 1 0 -white_dead_nettle%1:20:00:: 12849279 1 0 -white_dipladenia%1:20:00:: 11773408 1 0 -white_dog's-tooth_violet%1:20:00:: 12450607 1 0 -white_dogtooth_violet%1:20:00:: 12450607 1 0 -white_dwarf%1:17:00:: 09478569 1 0 -white_dwarf_star%1:17:00:: 09478569 1 0 -white_elephant%1:05:00:: 02504196 2 0 -white_elephant%1:21:00:: 13252853 1 0 -white_elm%1:20:00:: 12406488 1 0 -white_fairy_lantern%1:20:00:: 12446908 1 0 -white_false_indigo%1:20:00:: 12509821 1 0 -white_feather%1:10:00:: 06856487 1 0 -white_feldspar%1:27:00:: 14865533 1 0 -white_fir%1:20:01:: 11621281 2 0 -white_fir%1:20:02:: 11621727 1 0 -white_flag%1:06:00:: 04580126 1 1 -white_fox%1:05:00:: 02120079 1 0 -white_friar%1:18:00:: 10778148 1 0 -white_fringed_orchid%1:20:00:: 12066261 1 0 -white_fringed_orchis%1:20:00:: 12066261 1 0 -white_fritillary%1:20:00:: 12453018 1 0 -white_fungus%1:20:00:: 12979829 1 0 -white_globe_lily%1:20:00:: 12446908 1 0 -white_gold%1:27:00:: 14719169 1 0 -white_goods%1:06:00:: 04580298 2 0 -white_goods%1:06:01:: 04580493 1 0 -white_heat%1:07:00:: 05017121 1 1 -white_heather%1:20:00:: 12233998 1 0 -white_hellebore%1:20:00:: 12464649 1 0 -white_honeysuckle%1:20:01:: 12674484 1 0 -white_honeysuckle%1:20:02:: 12244819 2 0 -white_hope%1:18:00:: 10778999 1 0 -white_horehound%1:20:00:: 12854193 1 0 -white_horse%1:11:00:: 07352693 1 0 -white_horse_nettle%1:20:00:: 12894930 1 0 -white_house%1:06:00:: 04580777 2 0 -white_house%1:14:00:: 08128837 1 1 -white_knight%1:14:00:: 08076705 1 0 -white_lead%1:27:00:: 15097722 1 0 -white_lead_ore%1:27:00:: 14670178 1 0 -white_leather%1:27:00:: 14761450 1 0 -white_leg%1:26:00:: 14103018 1 0 -white_lettuce%1:20:00:: 11997160 1 0 -white_lie%1:10:00:: 06757771 1 0 -white_lily%1:20:01:: 12426978 1 0 -white_lily%1:20:02:: 11715810 2 0 -white_line%1:10:00:: 07262462 1 0 -white_lotus%1:20:00:: 11715810 1 0 -white_lung%1:26:00:: 14055052 1 0 -white_lupine%1:20:00:: 12546420 1 0 -white_madder%1:20:00:: 12666369 1 0 -white_magic%1:09:00:: 05979800 1 0 -white_maire%1:20:00:: 12301766 1 0 -white_mallee%1:20:00:: 12337131 1 0 -white_mallow%1:20:00:: 12174521 1 0 -white_man%1:18:00:: 09641002 1 4 -white_man's_burden%1:04:00:: 01132709 1 0 -white_mangrove%1:20:01:: 12915811 1 0 -white_mangrove%1:20:02:: 12325234 2 0 -white_marlin%1:05:00:: 02631775 1 0 -white_matsutake%1:20:00:: 13232106 1 0 -white_matter%1:08:00:: 05483677 1 0 -white_meat%1:13:00:: 07648408 1 0 -white_melilot%1:20:00:: 11751213 1 0 -white_metal%1:27:00:: 14719597 1 0 -white_milkweed%1:20:00:: 13234114 1 0 -white_mountain_ash%1:20:00:: 12337391 1 0 -white_mulberry%1:20:00:: 12399384 1 0 -white_mullein%1:20:00:: 12889412 1 0 -white_mullet%1:05:00:: 02601921 1 0 -white_mustard%1:20:00:: 11896519 1 0 -white_nile%1:17:00:: 09478678 1 0 -white_noise%1:11:00:: 07431852 1 0 -white_oak%1:20:00:: 12269652 1 0 -white_onion_sauce%1:13:00:: 07839730 1 0 -white_out%2:30:00:: 00303806 2 0 -white_out%2:35:00:: 01335322 1 0 -white_pages%1:10:00:: 07251148 1 0 -white_paper%1:10:00:: 07219530 1 0 -white_pelican%1:05:00:: 02052204 1 0 -white_people%1:18:00:: 09639237 1 0 -white_pepper%1:13:00:: 07815956 2 0 -white_pepper%1:20:00:: 13149506 1 0 -white_perch%1:05:00:: 02566489 1 0 -white_person%1:18:00:: 09638875 1 0 -white_pine%1:20:00:: 11612923 1 0 -white_pine%1:20:02:: 11609251 2 0 -white_pine_blister_rust%1:26:00:: 14277833 1 0 -white_plague%1:26:00:: 14144064 1 0 -white_plague%1:26:01:: 14064408 2 0 -white_popinac%1:20:00:: 11762433 1 0 -white_poplar%1:20:00:: 12732009 1 0 -white_poplar%1:20:02:: 11712621 2 0 -white_potato%1:13:00:: 07710616 2 0 -white_potato%1:20:00:: 12897493 1 0 -white_potato_vine%1:20:00:: 12897493 1 0 -white_pox%1:26:00:: 14124688 1 0 -white_prairie_aster%1:20:00:: 11933903 1 0 -white_race%1:18:00:: 09639237 1 0 -white_rhinoceros%1:05:00:: 02392824 1 0 -white_rice%1:13:00:: 07804657 1 0 -white_river%1:17:00:: 09478355 1 0 -white_rocket%1:20:00:: 11885524 1 0 -white_room%1:06:00:: 03040376 1 0 -white_russia%1:15:00:: 09011151 1 0 -white_russian%1:10:00:: 06944480 3 0 -white_russian%1:13:00:: 07931612 2 0 -white_russian%1:18:00:: 09695979 1 0 -white_rust%1:20:00:: 12981954 1 0 -white_sage%1:20:00:: 11930788 1 0 -white_sale%1:04:00:: 01120176 1 0 -white_sanicle%1:20:00:: 11917835 1 0 -white_sauce%1:13:00:: 07837362 1 0 -white_sea%1:17:00:: 09478810 1 0 -white_seabass%1:05:00:: 02560546 1 0 -white_separatism%1:14:00:: 08380606 1 0 -white_separatist%1:18:00:: 10779238 1 0 -white_shark%1:05:00:: 01484850 1 0 -white_sheep%1:05:00:: 02415253 1 0 -white_silk-cotton_tree%1:20:00:: 12190410 1 0 -white_slave%1:18:00:: 10779416 1 0 -white_slaver%1:18:00:: 10779504 1 0 -white_slime_mushroom%1:20:00:: 13003974 1 0 -white_snakeroot%1:20:00:: 11917835 1 0 -white_snapdragon%1:20:00:: 12877493 1 0 -white_spanish_broom%1:20:00:: 12521186 1 0 -white_spruce%1:20:00:: 11625632 1 0 -white_squire%1:14:00:: 08076833 1 0 -white_stork%1:05:00:: 02002556 1 0 -white_stringybark%1:20:00:: 12337246 1 0 -white_sturgeon%1:05:01:: 02640626 2 0 -white_sturgeon%1:05:02:: 02640857 1 0 -white_supremacist%1:18:00:: 10779610 1 0 -white_supremacy%1:09:00:: 06204126 1 0 -white_sweet_clover%1:20:00:: 11751213 1 0 -white_tai%1:10:00:: 06934848 1 0 -white_tail%1:05:00:: 02432291 1 0 -white_thistle%1:20:01:: 11831521 2 0 -white_thistle%1:20:02:: 11902709 1 0 -white_tie%1:06:00:: 04580994 1 0 -white_tie%1:06:01:: 03239054 2 0 -white_tie_and_tails%1:06:00:: 03239054 1 0 -white_titi%1:20:00:: 12750767 1 0 -white_trash%1:18:00:: 09641226 1 0 -white_trumpet_lily%1:20:00:: 12427757 1 0 -white_turnip%1:13:00:: 07735981 2 0 -white_turnip%1:20:00:: 11877646 1 0 -white_violet%1:20:00:: 12388444 1 1 -white_violet%1:20:02:: 12388652 2 0 -white_vitriol%1:27:00:: 15108324 1 0 -white_walnut%1:20:00:: 12318965 1 0 -white_water%1:17:00:: 09478962 1 0 -white_wax_tree%1:20:00:: 12308664 1 0 -white_whale%1:05:00:: 02072798 1 0 -white_willow%1:20:00:: 12725738 1 0 -white_wine%1:13:00:: 07892813 1 0 -white_wolf%1:05:00:: 02114548 1 0 -white_woman%1:18:00:: 09641130 1 0 -white_wood_aster%1:20:00:: 11933387 1 0 -white_yam%1:20:00:: 12088327 1 0 -white_zinnia%1:20:00:: 12034384 1 0 -whitebait%1:05:00:: 02530052 2 0 -whitebait%1:13:00:: 07799132 1 0 -whitebark_pine%1:20:00:: 11614039 1 0 -whitebarked_pine%1:20:00:: 11614039 1 0 -whitecap%1:11:00:: 07352693 1 0 -whitecup%1:20:00:: 12908854 1 0 -whited_sepulcher%1:18:00:: 10777894 1 0 -whited_sepulchre%1:18:00:: 10777894 1 0 -whiteface%1:05:00:: 02407625 1 2 -whiteface%1:18:00:: 10778044 2 0 -whitefish%1:05:01:: 02538985 3 0 -whitefish%1:13:01:: 07795133 2 0 -whitefish%1:13:02:: 07795317 1 0 -whitefly%1:05:00:: 02246628 1 0 -whitehall%1:14:00:: 08357448 2 0 -whitehall%1:15:00:: 08596830 1 0 -whitehead%1:08:00:: 05245626 2 0 -whitehead%1:18:00:: 11384566 1 0 -whitehorse%1:15:00:: 08830882 1 0 -whitelash%1:04:00:: 00203208 1 0 -whiteman's_foot%1:20:00:: 12599435 1 0 -whiten%2:30:00:: 00280301 1 1 -whitened%5:00:02:colorless:02 00406743 1 0 -whitener%1:27:00:: 14779205 1 0 -whiteness%1:07:00:: 04960729 1 1 -whiteness%1:07:01:: 04978371 3 0 -whiteness%1:26:00:: 13990064 2 0 -whitening%1:04:00:: 00273877 1 0 -whiteout%1:19:00:: 11508808 1 0 -whiteout%2:30:00:: 00546398 2 0 -whiteout%2:35:00:: 01335322 1 0 -whitetail%1:05:00:: 02432291 1 0 -whitetail_antelope_squirrel%1:05:00:: 02357911 1 0 -whitetail_deer%1:05:00:: 02432291 1 0 -whitetail_jackrabbit%1:05:00:: 02327175 1 0 -whitetail_prairie_dog%1:05:00:: 02359667 1 0 -whitethorn%1:20:00:: 12627750 1 0 -whitethroat%1:05:00:: 01535469 3 0 -whitethroat%1:05:01:: 01564914 2 0 -whitethroat%1:05:02:: 01565078 1 0 -whitetip_shark%1:05:01:: 01490112 2 0 -whitetip_shark%1:05:02:: 01493146 1 0 -whitewash%1:04:00:: 01241594 3 0 -whitewash%1:06:00:: 04581102 2 0 -whitewash%1:11:00:: 07476952 1 0 -whitewash%2:32:00:: 00904878 3 0 -whitewash%2:35:00:: 01269702 2 0 -whitewash%2:39:00:: 02148109 1 0 -whitewashed%5:00:00:painted:00 01713815 1 1 -whitewater%1:17:00:: 09478962 1 0 -whitewood%1:20:00:: 11712621 1 0 -whitey%1:18:00:: 09641422 1 0 -whiting%1:05:00:: 02523110 6 0 -whiting%1:05:01:: 02597367 4 0 -whiting%1:05:02:: 02524659 5 0 -whiting%1:05:03:: 02637977 3 0 -whiting%1:13:00:: 07778494 2 0 -whiting%1:13:02:: 07778680 1 0 -whitish%5:00:00:achromatic:00 00392460 2 0 -whitish%5:00:00:opaque:00 00434384 1 0 -whitlavia%1:20:00:: 12837259 1 0 -whitlow%1:26:00:: 14176570 1 0 -whitlow_grass%1:20:00:: 11886157 1 0 -whitlowwort%1:20:00:: 11813490 1 0 -whitman%1:18:00:: 11384755 2 0 -whitman%1:18:01:: 11384986 1 0 -whitmonday%1:28:00:: 15242432 1 0 -whitney%1:17:00:: 09479072 2 0 -whitney%1:18:00:: 11385126 1 0 -whitney_moore_young_jr.%1:18:00:: 11404140 1 0 -whitney_young%1:18:00:: 11404140 1 0 -whitsun%1:28:00:: 15242719 1 0 -whitsun_monday%1:28:00:: 15242432 1 0 -whitsun_tuesday%1:28:00:: 15242599 1 0 -whitsunday%1:28:00:: 15242209 1 0 -whitsuntide%1:28:00:: 15242719 1 0 -whittier%1:18:00:: 11385277 1 0 -whittle%1:18:00:: 11385442 1 0 -whittle%2:35:00:: 01552219 1 0 -whittle_away%2:35:00:: 01552390 1 0 -whittle_down%2:35:00:: 01552390 1 0 -whittler%1:18:00:: 10779775 1 0 -whitweek%1:28:00:: 15242719 1 0 -whiz%1:11:00:: 07400361 2 0 -whiz%1:18:00:: 09762509 1 1 -whiz%2:39:00:: 02188587 1 2 -whiz-kid%1:18:00:: 10135709 1 0 -whizbang%1:06:00:: 04581262 2 0 -whizbang%1:06:01:: 04581425 1 0 -whizbang_shell%1:06:00:: 04581425 1 0 -whizz%1:18:00:: 09762509 1 0 -whizz%2:38:00:: 02055521 2 0 -whizz%2:39:00:: 02188587 1 0 -whizz-kid%1:18:00:: 10135709 1 0 -whizz_along%2:38:00:: 02055521 1 0 -whizzbang%1:06:00:: 04581262 2 0 -whizzbang%1:06:01:: 04581425 1 0 -who%1:14:00:: 08302724 1 0 -whodunit%1:10:00:: 06370792 1 1 -whole%1:03:00:: 00003553 2 0 -whole%1:09:00:: 05869584 1 8 -whole%3:00:00:: 00514884 1 109 -whole%3:00:02:: 00517916 2 0 -whole%4:02:00:: 00008007 1 1 -whole%5:00:00:healthy:00 01171396 4 0 -whole%5:00:00:undiversified:00 00784215 5 0 -whole%5:00:00:uninjured:00 01319712 3 0 -whole-souled%5:00:00:sincere:00 02180486 1 1 -whole-wheat%3:01:00:: 03130337 1 0 -whole-word_method%1:04:00:: 00888546 1 1 -whole_blood%1:08:00:: 05402961 1 0 -whole_caboodle%1:26:00:: 14461679 1 0 -whole_gale%1:19:00:: 11462401 1 0 -whole_kit%1:26:00:: 14461679 1 0 -whole_kit_and_boodle%1:26:00:: 14461679 1 0 -whole_kit_and_caboodle%1:26:00:: 14461679 1 0 -whole_life_insurance%1:21:00:: 13347947 1 0 -whole_meal_bread%1:13:00:: 07682316 1 0 -whole_meal_flour%1:13:00:: 07569644 1 0 -whole_milk%1:13:00:: 07846802 1 0 -whole_name%1:10:00:: 06292478 1 0 -whole_note%1:10:00:: 06870576 1 0 -whole_number%1:23:00:: 13728499 1 1 -whole_rest%1:10:00:: 06870726 1 0 -whole_shebang%1:26:00:: 14461679 1 0 -whole_snipe%1:05:00:: 02032222 1 0 -whole_step%1:10:00:: 06859056 1 0 -whole_to_part_relation%1:24:00:: 13808566 1 0 -whole_tone%1:10:00:: 06859056 1 0 -whole_wheat_bread%1:13:00:: 07682316 1 0 -whole_wheat_flour%1:13:00:: 07569644 1 0 -whole_works%1:26:00:: 14461679 1 0 -wholehearted%5:00:00:sincere:00 02180486 1 0 -wholeheartedly%4:02:00:: 00494948 1 0 -wholeheartedness%1:07:01:: 04867539 1 0 -wholeheartedness%1:07:02:: 04645473 2 0 -wholemeal%3:01:00:: 03130337 1 0 -wholeness%1:26:00:: 14460565 1 0 -wholeness%1:26:01:: 14050011 2 0 -wholesale%1:04:00:: 01114646 1 0 -wholesale%2:40:00:: 02247226 1 0 -wholesale%4:02:00:: 00442774 1 0 -wholesale%4:02:01:: 00260704 2 0 -wholesale%5:00:00:indiscriminate:00 00774182 1 0 -wholesale_house%1:06:00:: 03206405 1 0 -wholesale_price_index%1:10:00:: 06641524 1 0 -wholesaler%1:18:00:: 10222497 1 1 -wholesome%3:00:00:: 02557357 1 2 -wholesome%5:00:00:healthy:00 01172692 2 0 -wholesomely%4:02:00:: 00495129 1 0 -wholesomeness%1:07:00:: 04789689 1 0 -wholly%4:02:00:: 00008007 1 11 -whomp%2:33:00:: 01103603 2 0 -whomp%2:35:00:: 01417162 1 0 -whomp_up%2:36:00:: 01666002 1 0 -whoop%1:10:00:: 07123288 1 0 -whoop%2:29:00:: 00006100 2 0 -whoop%2:32:00:: 00914215 1 3 -whoop_it_up%2:41:00:: 02491383 1 1 -whoopee%1:04:00:: 00519251 1 0 -whooper%1:05:00:: 01859325 2 0 -whooper%1:05:01:: 02013177 1 0 -whooper_swan%1:05:00:: 01859325 1 0 -whooping_cough%1:26:00:: 14144626 1 0 -whooping_crane%1:05:00:: 02013177 1 0 -whoosh%1:11:00:: 07396530 1 0 -whoosh%2:38:00:: 02068877 3 0 -whoosh%2:38:01:: 02069014 2 0 -whoosh%2:38:02:: 02069120 1 0 -whop%2:35:00:: 01415807 1 0 -whop%2:35:01:: 01397088 2 0 -whopper%1:06:00:: 04574234 2 0 -whopper%1:10:00:: 06757676 1 0 -whopping%4:02:00:: 00495446 1 0 -whopping%5:00:00:large:00 01388062 1 0 -whore%1:18:00:: 10485440 1 3 -whore%2:32:01:: 01036047 3 0 -whore%2:35:00:: 01427695 2 0 -whore%2:41:00:: 02580577 1 0 -whoredom%1:04:00:: 00748155 1 0 -whorehouse%1:06:00:: 04581595 1 0 -whoremaster%1:18:01:: 10779897 2 0 -whoremaster%1:18:02:: 10779995 1 0 -whoremonger%1:18:01:: 10779897 2 0 -whoremonger%1:18:02:: 10779995 1 0 -whoreson%1:18:00:: 09842823 1 0 -whoreson%1:18:01:: 09815188 2 0 -whorl%1:06:00:: 03065424 3 0 -whorl%1:08:00:: 05257737 2 0 -whorl%1:25:00:: 13875970 1 1 -whorled%5:00:00:cyclic:03 00677721 2 0 -whorled%5:00:01:coiled:00 02317598 1 0 -whorled_aster%1:20:00:: 11932927 1 0 -whorled_caraway%1:20:00:: 12934685 1 0 -whorled_loosestrife%1:20:00:: 12096089 1 0 -whorled_milkweed%1:20:00:: 13235766 1 0 -whorlywort%1:20:00:: 12882321 1 0 -whortleberry%1:13:00:: 07743224 2 0 -whortleberry%1:20:00:: 12248574 1 0 -why%1:16:00:: 09179606 1 0 -whydah%1:05:00:: 01543383 1 0 -wi%1:15:00:: 09157163 1 0 -wicca%1:09:00:: 06245462 2 0 -wicca%1:14:00:: 08485977 1 0 -wiccan%1:18:00:: 10780105 1 0 -wiccan%3:01:00:: 03130509 1 0 -wichita%1:10:00:: 06916021 3 0 -wichita%1:15:00:: 09088989 2 0 -wichita%1:18:00:: 09671974 1 0 -wichita_falls%1:15:00:: 09146912 1 0 -wick%1:06:00:: 04581829 2 0 -wick%1:06:01:: 04582044 1 0 -wicked%3:00:00:: 02513740 1 2 -wicked%5:00:00:intense:00 01513050 3 1 -wicked%5:00:00:offensive:01 01625893 5 0 -wicked%5:00:00:playful:00 02122715 4 0 -wicked%5:00:00:unrighteous:00 02037531 2 1 -wickedly%4:02:00:: 00144586 1 1 -wickedness%1:04:00:: 00745637 1 1 -wickedness%1:07:00:: 04852750 3 0 -wickedness%1:07:01:: 04827957 4 0 -wickedness%1:07:02:: 04781349 5 0 -wickedness%1:26:00:: 14563564 2 0 -wicker%1:06:00:: 04582205 2 0 -wicker%1:27:00:: 15097849 1 2 -wicker_basket%1:06:00:: 04582349 1 0 -wickerwork%1:06:00:: 04582205 1 0 -wicket%1:06:00:: 04582454 4 0 -wicket%1:06:01:: 04582625 3 0 -wicket%1:06:02:: 04582771 2 0 -wicket%1:06:03:: 04582869 1 0 -wicket-keeper%1:18:00:: 10780185 1 0 -wicket_door%1:06:00:: 04582625 1 0 -wicket_gate%1:06:00:: 04582625 1 0 -wickiup%1:06:00:: 04583022 1 0 -wickliffe%1:18:00:: 11399866 1 0 -wickup%1:20:00:: 12342498 1 0 -wiclif%1:18:00:: 11399866 1 0 -wicopy%1:20:00:: 12347639 1 0 -widal's_test%1:09:00:: 05740162 1 0 -widal_test%1:09:00:: 05740162 1 0 -wide%3:00:00:: 02560548 1 45 -wide%3:00:02:: 02563068 5 0 -wide%4:02:00:: 00495524 4 0 -wide%4:02:01:: 00495743 1 4 -wide%4:02:02:: 00495858 3 0 -wide%4:02:03:: 00496010 2 1 -wide%5:00:00:ample:00 00106277 6 0 -wide%5:00:00:comprehensive:00 00526062 2 12 -wide%5:00:00:inaccurate:00 00024241 7 0 -wide%5:00:00:large:00 01384212 4 1 -wide%5:00:00:open:08 01654900 3 4 -wide-angle%3:01:00:: 02728812 1 0 -wide-angle_lens%1:06:00:: 04583212 1 0 -wide-awake%5:00:00:alert:00 00092275 2 0 -wide-awake%5:00:00:awake:00 00187443 1 0 -wide-body%1:06:00:: 04583620 1 0 -wide-body_aircraft%1:06:00:: 04583620 1 0 -wide-cut%5:00:00:ample:00 00106277 1 1 -wide-eyed%5:00:00:naive:00 02272047 1 0 -wide-eyed%5:00:00:open:08 01654900 2 0 -wide-open%5:00:00:open:01 01652689 1 1 -wide-open%5:00:00:unlawful:00 01396503 2 0 -wide-ranging%5:00:00:diversified:00 00783469 2 0 -wide-ranging%5:00:00:large:00 01391237 1 1 -wide-screen%5:00:00:wide:00 02561752 1 1 -wide_area_network%1:06:00:: 04583477 1 0 -wide_of_the_mark%5:00:00:inaccurate:00 00024241 1 0 -wide_screen%1:06:00:: 04583776 1 1 -wide_wale%1:06:00:: 04583888 1 0 -wideband%3:01:00:: 02671038 1 0 -widebody_aircraft%1:06:00:: 04583620 1 0 -widegrip_pushup%1:04:00:: 00629496 1 0 -widely%4:02:00:: 00495663 1 17 -widely%4:02:01:: 00495524 2 2 -widely%4:02:02:: 00506342 3 1 -widely_distributed%3:00:02:: 01106614 1 0 -widen%2:30:00:: 00303465 1 7 -widen%2:30:01:: 00540235 4 0 -widen%2:30:03:: 00303661 3 1 -widen%2:30:05:: 00303940 2 1 -wideness%1:07:00:: 05136343 1 0 -wideness%1:07:01:: 05104548 2 0 -widening%1:04:00:: 00407270 3 0 -widening%1:06:00:: 04500866 2 0 -widening%1:22:00:: 13574804 1 0 -widespread%5:00:00:distributed:00 00541614 2 3 -widespread%5:00:00:general:00 01102876 1 9 -widgeon%1:05:00:: 01848648 1 0 -widget%1:06:00:: 02729965 2 0 -widget%1:06:01:: 03218545 1 0 -widow%1:18:00:: 10780284 1 4 -widow%2:30:00:: 00360337 1 0 -widow's_peak%1:08:00:: 05256562 1 0 -widow's_walk%1:06:00:: 04583967 1 0 -widow's_weeds%1:06:00:: 04570532 1 0 -widow_bird%1:05:00:: 01543383 1 0 -widow_woman%1:18:00:: 10780284 1 0 -widowed%5:00:00:unmarried:00 01482865 1 2 -widower%1:18:00:: 10780506 1 1 -widowhood%1:26:00:: 13967970 2 0 -widowhood%1:28:00:: 15153667 1 1 -widowman%1:18:00:: 10780506 1 0 -width%1:07:00:: 05136150 1 4 -wieland%1:18:00:: 09585218 1 0 -wield%2:35:00:: 01224415 2 2 -wield%2:40:00:: 02204564 1 3 -wieldy%3:00:00:: 02563616 1 0 -wiener%1:13:00:: 07676602 2 0 -wiener%1:18:00:: 11385611 1 0 -wiener_roast%1:13:00:: 07577244 1 0 -wiener_schnitzel%1:13:00:: 07880458 1 0 -wienerwurst%1:13:00:: 07676602 1 0 -wiesbaden%1:15:00:: 08775053 1 0 -wiesel%1:18:00:: 11385748 1 0 -wiesenboden%1:27:00:: 15097994 1 0 -wiesenthal%1:18:00:: 11386005 1 0 -wife%1:18:00:: 10780632 1 120 -wifelike%3:00:00:: 01735475 1 0 -wifely%3:00:00:: 01735475 1 1 -wiffle%1:06:00:: 04584056 1 0 -wiffle_ball%1:06:00:: 04584056 1 0 -wifi%1:06:00:: 04595028 1 0 -wig%1:06:00:: 04584207 1 1 -wig%1:10:00:: 06713099 2 0 -wig_tree%1:20:00:: 12760539 1 0 -wigeon%1:05:00:: 01848648 1 0 -wigged%3:00:00:: 02564546 1 0 -wigging%1:10:00:: 06713099 1 0 -wiggle%1:04:00:: 00349705 1 0 -wiggle%2:38:00:: 01898282 1 5 -wiggle_nail%1:06:00:: 03112240 1 0 -wiggle_room%1:07:00:: 04659567 1 0 -wiggler%1:05:01:: 01935395 3 0 -wiggler%1:05:02:: 02200509 2 0 -wiggler%1:18:00:: 10781236 1 0 -wiggliness%1:07:00:: 04775185 1 0 -wiggly%5:00:00:curved:00 02316992 1 0 -wiggly%5:00:00:moving:02 01563713 2 0 -wight%1:17:00:: 09479238 2 0 -wight%1:18:00:: 09976429 1 0 -wigless%3:00:00:: 02564915 1 0 -wigmaker%1:18:00:: 10781460 1 2 -wigner%1:18:00:: 11386138 1 0 -wigwag%2:32:00:: 01040031 2 0 -wigwag%2:35:00:: 01447124 1 0 -wigwam%1:06:00:: 04584373 1 0 -wikiup%1:06:00:: 04583022 1 0 -wilbur_wright%1:18:00:: 11398783 1 0 -wild%1:15:00:: 08683548 2 0 -wild%1:26:00:: 13939353 1 0 -wild%3:00:01:: 02389220 2 5 -wild%3:00:02:: 02390335 1 29 -wild%4:02:01:: 00174870 2 0 -wild%4:02:02:: 00439257 1 1 -wild%5:00:00:dangerous:00 02059811 8 0 -wild%5:00:00:enthusiastic:00 00886448 11 0 -wild%5:00:00:inhospitable:00 01243102 10 0 -wild%5:00:00:insane:00 02077625 7 0 -wild%5:00:00:intense:00 01514141 5 1 -wild%5:00:00:noncivilized:00 00412788 12 0 -wild%5:00:00:passionate:00 01727303 3 5 -wild%5:00:00:stormy:00 00304144 13 0 -wild%5:00:00:unrealistic:00 01942732 9 0 -wild%5:00:00:unsupported:02 02353211 6 0 -wild%5:00:01:uncontrolled:00 00601650 4 2 -wild-eyed%5:00:00:agitated:00 00087022 1 2 -wild-eyed%5:00:00:impractical:00 01837182 2 0 -wild-goose_chase%1:04:00:: 00320742 1 0 -wild_angelica%1:20:00:: 12932365 1 0 -wild_apple%1:20:00:: 12634211 1 0 -wild_ass%1:05:00:: 02390454 1 0 -wild_basil%1:20:00:: 12843970 1 0 -wild_bean%1:13:00:: 07774032 2 0 -wild_bean%1:20:00:: 12507379 1 0 -wild_bergamot%1:20:00:: 12858150 1 0 -wild_bill_hickock%1:18:00:: 11049443 1 0 -wild_blue_yonder%1:17:00:: 09224566 1 0 -wild_boar%1:05:00:: 02396427 1 0 -wild_buckwheat%1:20:00:: 12602612 1 0 -wild_cabbage%1:20:00:: 11875523 1 0 -wild_calla%1:20:00:: 11786131 1 0 -wild_card%1:06:00:: 04584512 2 0 -wild_card%1:11:00:: 07328646 1 0 -wild_carrot%1:20:00:: 12937130 1 0 -wild_cavy%1:05:00:: 02364840 1 0 -wild_celery%1:20:01:: 12615232 2 0 -wild_celery%1:20:02:: 12933274 1 0 -wild_chamomile%1:20:00:: 11995092 1 0 -wild_cherry%1:20:00:: 12641931 2 0 -wild_cherry%1:20:02:: 12642090 1 0 -wild_cherry_tree%1:20:00:: 12641931 1 0 -wild_chervil%1:20:00:: 12932966 1 0 -wild_china_tree%1:20:00:: 12741586 1 0 -wild_cinnamon%1:20:01:: 12372233 1 0 -wild_cinnamon%1:20:02:: 12330891 2 0 -wild_clary%1:20:00:: 12866635 1 0 -wild_climbing_hempweed%1:20:00:: 11996251 1 0 -wild_coffee%1:20:00:: 12679876 1 0 -wild_cotton%1:20:00:: 12177455 1 0 -wild_crab%1:20:00:: 12634986 1 0 -wild_cranberry%1:20:00:: 12231358 1 0 -wild_crocus%1:20:00:: 11737752 1 0 -wild_dog%1:05:00:: 02115335 1 1 -wild_duck%1:05:00:: 01851895 1 0 -wild_emmer%1:20:00:: 12143405 1 0 -wild_fig%1:20:00:: 12366053 2 0 -wild_fig%1:20:02:: 12402051 1 0 -wild_flower%1:20:00:: 11672400 1 0 -wild_garlic%1:20:01:: 12435649 1 0 -wild_garlic%1:20:02:: 12435486 2 0 -wild_geranium%1:20:00:: 12686077 1 0 -wild_ginger%1:20:00:: 11802212 1 0 -wild_goat%1:05:00:: 02417534 1 0 -wild_hollyhock%1:20:01:: 12181352 2 0 -wild_hollyhock%1:20:02:: 12187247 1 0 -wild_hop%1:20:00:: 12163456 1 0 -wild_horse%1:05:00:: 02381460 1 1 -wild_hyacinth%1:20:01:: 12459275 1 0 -wild_hyacinth%1:20:02:: 12449934 2 0 -wild_hydrangea%1:20:00:: 12788678 1 0 -wild_indigo%1:20:00:: 12509476 1 0 -wild_leek%1:20:01:: 12432356 2 0 -wild_leek%1:20:02:: 12435338 1 0 -wild_licorice%1:20:01:: 12533190 2 0 -wild_licorice%1:20:02:: 12508497 3 0 -wild_licorice%1:20:03:: 12666050 1 0 -wild_lily_of_the_valley%1:20:01:: 12256708 2 0 -wild_lily_of_the_valley%1:20:02:: 12256920 1 0 -wild_liquorice%1:20:01:: 12533190 1 0 -wild_liquorice%1:20:02:: 12508497 2 0 -wild_lupine%1:20:00:: 12546962 1 0 -wild_madder%1:20:01:: 12666369 1 0 -wild_man%1:18:00:: 10781684 1 1 -wild_mandrake%1:20:00:: 11700058 1 0 -wild_mango%1:20:00:: 12717644 1 0 -wild_mango_tree%1:20:00:: 12717644 1 0 -wild_marjoram%1:20:00:: 12853287 1 0 -wild_meadow_lily%1:20:00:: 12426749 1 0 -wild_medlar%1:20:00:: 12670758 1 0 -wild_medlar_tree%1:20:00:: 12670758 1 0 -wild_morning-glory%1:20:01:: 12824053 2 0 -wild_morning-glory%1:20:02:: 12825061 1 0 -wild_mustard%1:20:00:: 11896722 1 0 -wild_oat%1:20:00:: 12110236 1 0 -wild_oat_grass%1:20:00:: 12110236 1 0 -wild_oats%1:20:00:: 12475035 1 0 -wild_olive%1:20:00:: 12326033 1 0 -wild_onion%1:20:00:: 12431861 1 0 -wild_orange%1:20:01:: 12643113 2 0 -wild_orange%1:20:02:: 12714254 1 0 -wild_ox%1:05:00:: 02402175 1 0 -wild_pansy%1:20:00:: 12390681 1 0 -wild_parsley%1:20:00:: 12930951 1 0 -wild_parsnip%1:20:00:: 12942025 1 0 -wild_pea%1:20:00:: 12539306 1 0 -wild_peach%1:20:00:: 12380761 1 0 -wild_peanut%1:20:00:: 12505253 1 0 -wild_pink%1:20:01:: 11815918 2 0 -wild_pink%1:20:02:: 12046028 1 0 -wild_pitch%1:04:00:: 00109892 1 2 -wild_plum%1:13:00:: 07765728 2 0 -wild_plum%1:20:00:: 12638556 1 0 -wild_plum_tree%1:20:00:: 12638556 1 0 -wild_potato%1:20:00:: 12895578 1 0 -wild_potato_vine%1:20:00:: 12827907 1 0 -wild_pumpkin%1:20:00:: 12162425 1 0 -wild_quinine%1:20:00:: 12001294 1 0 -wild_radish%1:20:00:: 11894558 1 0 -wild_rape%1:20:00:: 11894558 1 0 -wild_raspberry%1:20:00:: 12656369 1 0 -wild_red_oat%1:20:00:: 12110475 1 0 -wild_rice%1:13:00:: 07804771 2 0 -wild_rice%1:20:00:: 12145919 1 0 -wild_rosemary%1:20:00:: 12238913 1 0 -wild_rye%1:20:00:: 12119238 1 0 -wild_sage%1:20:00:: 12866635 1 0 -wild_sarsaparilla%1:20:00:: 11797722 1 0 -wild_sarsparilla%1:20:00:: 11797722 1 0 -wild_senna%1:20:00:: 12500309 1 0 -wild_sensitive_plant%1:20:00:: 12494358 1 0 -wild_service_tree%1:20:00:: 12659064 1 0 -wild_sheep%1:05:00:: 02414578 1 0 -wild_snapdragon%1:20:00:: 12884260 1 0 -wild_spinach%1:13:01:: 07733712 4 0 -wild_spinach%1:13:02:: 07733847 3 0 -wild_spinach%1:20:01:: 11828577 2 0 -wild_spinach%1:20:02:: 11828973 1 0 -wild_spurge%1:20:00:: 12919195 1 0 -wild_strawberry%1:20:00:: 12630641 1 0 -wild_sweet_pea%1:20:00:: 12572858 1 0 -wild_sweet_potato_vine%1:20:00:: 12827907 1 0 -wild_tamarind%1:20:01:: 11762927 2 0 -wild_tamarind%1:20:02:: 11764478 1 0 -wild_teasel%1:20:00:: 12683096 1 0 -wild_thyme%1:20:00:: 12870891 1 0 -wild_tobacco%1:20:00:: 12908093 1 0 -wild_vanilla%1:20:00:: 12028012 1 0 -wild_water_lemon%1:20:00:: 12384839 1 0 -wild_west%1:15:00:: 08683177 1 0 -wild_west_show%1:04:00:: 00523263 1 0 -wild_wheat%1:20:00:: 12143405 1 0 -wild_wilkworm%1:05:00:: 02302620 1 0 -wild_winterpea%1:20:00:: 12539564 1 0 -wild_yam%1:20:00:: 12089320 1 0 -wild_yellow_lily%1:20:00:: 12426749 1 0 -wildcat%1:05:00:: 02124623 3 1 -wildcat%1:06:00:: 04584639 1 2 -wildcat%1:18:00:: 09845589 2 1 -wildcat%5:00:00:exploratory:00 00878438 3 0 -wildcat%5:00:00:unofficial:00 01634199 2 0 -wildcat%5:00:00:unsound:00 02274959 1 0 -wildcat_strike%1:04:00:: 01244451 1 0 -wildcat_well%1:06:00:: 04584639 1 0 -wildcatter%1:18:00:: 10781547 1 1 -wilde%1:18:00:: 11386346 1 0 -wilde_dagga%1:20:00:: 12850906 1 0 -wildebeest%1:05:00:: 02421449 1 0 -wilder%1:18:00:: 11386503 2 0 -wilder%1:18:01:: 11386692 1 0 -wilderness%1:07:00:: 05116730 4 0 -wilderness%1:15:00:: 08683548 3 0 -wilderness%1:17:00:: 09479424 2 0 -wilderness%1:26:00:: 14413831 1 0 -wilderness_campaign%1:04:00:: 01299735 1 0 -wildfire%1:11:00:: 07304753 1 0 -wildflower%1:20:00:: 11672400 1 0 -wildfowl%1:13:00:: 07646927 1 0 -wilding%1:04:00:: 00554726 2 0 -wilding%1:20:00:: 11531193 1 0 -wildlife%1:14:00:: 07993776 1 3 -wildly%4:02:00:: 00174735 1 11 -wildly%4:02:01:: 00174987 3 0 -wildly%4:02:02:: 00175135 2 4 -wildness%1:07:00:: 04907826 4 0 -wildness%1:07:01:: 04909887 3 0 -wildness%1:07:02:: 05037813 2 1 -wildness%1:12:00:: 07481223 1 1 -wile%1:04:00:: 00752954 1 1 -wiley_post%1:18:00:: 11243907 1 0 -wilful%5:00:00:disobedient:00 01614372 2 0 -wilful%5:00:00:voluntary:01 02520693 1 0 -wilfully%4:02:00:: 00496127 1 1 -wilfulness%1:07:00:: 04908396 1 0 -wilhelm_apollinaris_de_kostrowitzki%1:18:00:: 10820444 1 0 -wilhelm_eduard_weber%1:18:00:: 11378929 1 0 -wilhelm_grimm%1:18:00:: 11016841 1 0 -wilhelm_ii%1:18:00:: 11386853 1 0 -wilhelm_karl_grimm%1:18:00:: 11016841 1 0 -wilhelm_konrad_roentgen%1:18:00:: 11268326 1 0 -wilhelm_konrad_rontgen%1:18:00:: 11268326 1 0 -wilhelm_ostwald%1:18:00:: 11218054 1 0 -wilhelm_reich%1:18:00:: 11257159 1 0 -wilhelm_richard_wagner%1:18:00:: 11369834 1 0 -wilhelm_von_opel%1:18:00:: 11215724 1 0 -wiliness%1:09:00:: 05621178 1 0 -wilkes%1:18:00:: 11387060 2 0 -wilkes%1:18:01:: 11387179 1 0 -wilkes_land%1:15:00:: 08682188 1 0 -wilkie_collins%1:18:00:: 10905159 1 0 -wilkins%1:18:00:: 11387362 3 0 -wilkins%1:18:01:: 11387539 2 0 -wilkins%1:18:02:: 11387692 1 0 -wilkins_micawber%1:18:00:: 09601906 1 0 -wilkinson%1:18:00:: 11387806 1 0 -will%1:09:00:: 05652593 1 11 -will%1:09:01:: 05983654 2 9 -will%1:10:00:: 06544142 3 6 -will%2:31:01:: 00698398 2 2 -will%2:32:00:: 00746366 1 3 -will%2:40:00:: 02229055 3 0 -will-o'-the-wisp%1:09:00:: 05896515 2 0 -will-o'-the-wisp%1:19:00:: 11459369 1 0 -will_durant%1:18:00:: 10945699 1 0 -will_hays%1:18:00:: 11036668 1 0 -will_keith_kellog%1:18:00:: 11099438 1 0 -will_power%1:07:00:: 04862005 1 0 -will_rogers%1:18:00:: 11268883 1 0 -willa_cather%1:18:00:: 10887137 1 0 -willa_sibert_cather%1:18:00:: 10887137 1 0 -willamette%1:17:00:: 09479635 1 0 -willamette_river%1:17:00:: 09479635 1 0 -willard%1:18:00:: 11387973 2 0 -willard%1:18:01:: 11388141 1 0 -willard_frank_libby%1:18:00:: 11131505 1 0 -willard_huntington_wright%1:18:00:: 11399123 1 0 -willard_van_orman_quine%1:18:00:: 11250991 1 0 -willebrand%1:18:00:: 11388321 1 0 -willem_de_kooning%1:18:00:: 10928299 1 0 -willem_de_sitter%1:18:00:: 11303522 1 0 -willem_einthoven%1:18:00:: 10954819 1 0 -willet%1:05:00:: 02030837 1 0 -willful%5:00:00:disobedient:00 01614372 2 0 -willful%5:00:00:voluntary:01 02520693 1 1 -willful_neglect%1:07:00:: 04666083 1 0 -willfully%4:02:00:: 00496127 1 0 -willfulness%1:07:00:: 04908396 1 0 -william_a._craigie%1:18:00:: 10914134 1 0 -william_and_mary%1:14:00:: 08486075 1 0 -william_ashley_sunday%1:18:00:: 11325534 1 0 -william_augustus%1:18:00:: 10917164 1 0 -william_averell_harriman%1:18:00:: 11030025 1 0 -william_beaumont%1:18:00:: 10839469 1 0 -william_benjamin_hogan%1:18:00:: 11055454 1 0 -william_blake%1:18:00:: 10852669 1 0 -william_bligh%1:18:00:: 10852961 1 0 -william_bradford%1:18:00:: 10860589 1 0 -william_bradford_shockley%1:18:00:: 11298810 1 0 -william_burroughs%1:18:00:: 10874706 1 0 -william_butler_yeats%1:18:00:: 11402463 1 0 -william_butterfield%1:18:00:: 10876661 1 0 -william_byrd%1:18:00:: 10877015 1 0 -william_carlos_williams%1:18:00:: 11390058 1 0 -william_caxton%1:18:00:: 10888644 1 0 -william_chambers%1:18:00:: 10889905 1 0 -william_christopher_handy%1:18:00:: 11027885 1 0 -william_claire_menninger%1:18:00:: 11174730 1 0 -william_clark%1:18:00:: 10899164 1 0 -william_clark_gable%1:18:00:: 10986437 1 0 -william_claude_dukenfield%1:18:00:: 10970718 1 0 -william_congreve%1:18:00:: 10907103 1 0 -william_cowper%1:18:00:: 10913871 2 0 -william_cowper%1:18:01:: 10914006 1 0 -william_crawford_gorgas%1:18:00:: 11008462 1 0 -william_crookes%1:18:00:: 10916505 1 0 -william_curtis%1:18:00:: 10918558 1 0 -william_cuthbert_faulkner%1:18:00:: 10967633 1 0 -william_dawes%1:18:00:: 10925584 1 0 -william_dean_howells%1:18:00:: 11063061 1 0 -william_dudley_haywood%1:18:00:: 11036911 1 0 -william_edward_burghardt_du_bois%1:18:00:: 10944013 1 0 -william_ewart_gladstone%1:18:00:: 11001668 1 0 -william_f._cody%1:18:00:: 10904270 1 0 -william_falkner%1:18:00:: 10967633 1 0 -william_faulkner%1:18:00:: 10967633 1 0 -william_felton_russell%1:18:00:: 11275495 1 0 -william_franklin_graham%1:18:00:: 11010385 1 0 -william_frederick_cody%1:18:00:: 10904270 1 0 -william_fulbright%1:18:00:: 10985160 1 0 -william_gilbert%1:18:00:: 10999410 2 0 -william_gilbert%1:18:01:: 10999584 1 0 -william_gladstone%1:18:00:: 11001668 1 0 -william_golding%1:18:00:: 11004731 1 0 -william_graham_sumner%1:18:00:: 11325419 1 0 -william_green%1:18:00:: 11013324 1 0 -william_h._bonney%1:18:00:: 10857001 1 0 -william_harrison_dempsey%1:18:00:: 10930591 1 0 -william_harrison_hays%1:18:00:: 11036668 1 0 -william_harvey%1:18:00:: 11033358 1 0 -william_hazlitt%1:18:00:: 11037157 1 0 -william_henry%1:18:00:: 11040596 1 0 -william_henry_beveridge%1:18:00:: 10850667 1 0 -william_henry_fox_talbot%1:18:00:: 11329281 1 0 -william_henry_gates%1:18:00:: 10991936 1 0 -william_henry_harrison%1:18:00:: 11031420 1 0 -william_henry_hoover%1:18:00:: 11059079 1 0 -william_henry_hudson%1:18:00:: 11064330 1 0 -william_henry_mauldin%1:18:00:: 11165164 1 0 -william_henry_pratt%1:18:00:: 11096801 1 0 -william_henry_seward%1:18:00:: 11294349 1 0 -william_herschel%1:18:00:: 11045898 1 0 -william_hogarth%1:18:00:: 11055612 1 0 -william_holman_hunt%1:18:00:: 11067047 1 0 -william_holmes_mcguffey%1:18:00:: 11169135 1 0 -william_hoover%1:18:00:: 11059079 1 0 -william_howard_taft%1:18:00:: 11328714 1 0 -william_hubbs_rehnquist%1:18:00:: 11256765 1 0 -william_hyde_wollaston%1:18:00:: 11394954 1 0 -william_i%1:18:00:: 11388538 1 0 -william_ii%1:18:00:: 11388841 1 0 -william_iii%1:18:00:: 11389003 1 0 -william_inge%1:18:00:: 11071574 1 0 -william_iv%1:18:00:: 11389301 1 0 -william_james%1:18:00:: 11079392 1 1 -william_james_durant%1:18:00:: 10945699 1 0 -william_jefferson_clinton%1:18:00:: 10902591 1 0 -william_jennings_bryan%1:18:00:: 10869385 1 0 -william_john_clifton_haley_jr.%1:18:00:: 11024226 1 0 -william_kidd%1:18:00:: 11104458 1 0 -william_lawrence_shirer%1:18:00:: 11298634 1 0 -william_le_baron_jenny%1:18:00:: 11082353 1 0 -william_lloyd_garrison%1:18:00:: 10991583 1 0 -william_makepeace_thackeray%1:18:00:: 11337202 1 0 -william_maxwell_aitken%1:18:00:: 10839791 1 0 -william_mckinley%1:18:00:: 11169418 1 0 -william_menninger%1:18:00:: 11174730 1 0 -william_mitchell%1:18:00:: 11182621 1 0 -william_morris%1:18:00:: 11192067 1 0 -william_nunn_lipscom_jr.%1:18:00:: 11134730 1 0 -william_of_occam%1:18:00:: 11211517 1 0 -william_of_ockham%1:18:00:: 11211517 1 0 -william_of_orange%1:18:00:: 11389003 1 0 -william_of_wykeham%1:18:00:: 11400230 1 0 -william_patterson%1:18:00:: 11225165 1 0 -william_penn%1:18:00:: 11228956 1 0 -william_penn_adair_rogers%1:18:00:: 11268883 1 0 -william_pitt%1:18:00:: 11236317 2 0 -william_pitt%1:18:01:: 11236497 1 0 -william_ralph_inge%1:18:00:: 11071677 1 0 -william_randolph_hearst%1:18:00:: 11037278 1 0 -william_rehnquist%1:18:00:: 11256765 1 0 -william_richard_morris%1:18:00:: 11210383 1 0 -william_rose_benet%1:18:00:: 10844527 1 0 -william_rowan_hamilton%1:18:00:: 11026231 1 0 -william_rufus%1:18:00:: 11388841 1 0 -william_s._burroughs%1:18:00:: 10874706 1 0 -william_s._gilbert%1:18:00:: 10999584 1 0 -william_saroyan%1:18:00:: 11282154 1 0 -william_schwenk_gilbert%1:18:00:: 10999584 1 0 -william_seward_burroughs%1:18:00:: 10874540 2 0 -william_seward_burroughs%1:18:02:: 10874706 1 0 -william_shakespeare%1:18:00:: 11295196 1 0 -william_shakspere%1:18:00:: 11295196 1 0 -william_shockley%1:18:00:: 11298810 1 0 -william_somerset_maugham%1:18:00:: 11164970 1 0 -william_stanley_jevons%1:18:00:: 11084200 1 0 -william_strickland%1:18:00:: 11322344 1 0 -william_stubbs%1:18:00:: 11322937 1 0 -william_styron%1:18:00:: 11323316 1 0 -william_sydney_porter%1:18:00:: 11243102 1 0 -william_tatem_tilden_jr.%1:18:00:: 11342440 1 0 -william_tecumseh_sherman%1:18:00:: 11297983 1 0 -william_tell%1:18:00:: 10698649 1 0 -william_the_conqueror%1:18:00:: 11388538 1 0 -william_thompson%1:18:00:: 11100260 1 0 -william_thornton%1:18:00:: 11341374 1 0 -william_tindal%1:18:00:: 11354333 1 0 -william_tindale%1:18:00:: 11354333 1 0 -william_tyndale%1:18:00:: 11354333 1 0 -william_walton%1:18:00:: 11373231 1 0 -william_wilkie_collins%1:18:00:: 10905159 1 0 -william_wordsworth%1:18:00:: 11397657 1 0 -william_wycherley%1:18:00:: 11399716 1 0 -william_wyler%1:18:00:: 11400490 1 0 -william_wymark_jacobs%1:18:00:: 11078059 1 0 -williams%1:18:00:: 11389481 6 0 -williams%1:18:01:: 11389619 5 0 -williams%1:18:02:: 11389901 4 0 -williams%1:18:03:: 11390058 3 0 -williams%1:18:04:: 11390170 2 0 -williams%1:18:05:: 11390364 1 0 -williams_syndrome%1:26:00:: 14470754 1 0 -williamstown%1:15:00:: 09099411 1 0 -willie_howard_mays_jr.%1:18:00:: 11167269 1 0 -willie_mays%1:18:00:: 11167269 1 0 -willies%1:12:00:: 07525259 1 0 -willing%1:04:00:: 00163047 1 1 -willing%3:00:00:: 02564986 1 22 -willing%5:00:00:voluntary:01 02521036 2 0 -willing_and_able%5:00:00:willing:00 02565939 1 0 -willingly%4:02:00:: 00305283 1 0 -willingness%1:07:00:: 04644512 1 8 -willis%1:18:00:: 11390549 1 0 -willow%1:06:00:: 04584794 2 0 -willow%1:20:00:: 12724942 1 8 -willow-pattern%1:06:00:: 04584944 1 0 -willow_aster%1:20:00:: 11937446 1 0 -willow_bell%1:20:00:: 12038585 1 0 -willow_family%1:20:00:: 12723985 1 0 -willow_oak%1:20:00:: 12277150 1 0 -willow_tree%1:20:00:: 12724942 1 0 -willowherb%1:20:00:: 12342299 1 0 -willowware%1:06:00:: 04584944 1 0 -willowy%5:00:00:graceful:00 01140188 1 0 -willpower%1:07:00:: 04862005 1 1 -willy-nilly%4:02:00:: 00070765 1 2 -willy-nilly%4:02:01:: 00244578 2 1 -willy_brandt%1:18:00:: 10862822 1 0 -wilmington%1:15:00:: 09070363 2 0 -wilmington%1:15:01:: 09129187 1 0 -wilms'_tumor%1:26:00:: 14246097 1 0 -wilms_tumour%1:26:00:: 14246097 1 0 -wilmut%1:18:00:: 11390692 1 0 -wilno%1:15:00:: 09014273 1 0 -wilson%1:17:00:: 09479811 11 0 -wilson%1:18:00:: 11390855 10 0 -wilson%1:18:01:: 11391123 9 0 -wilson%1:18:02:: 11391234 8 0 -wilson%1:18:03:: 11391379 7 0 -wilson%1:18:04:: 11391587 6 0 -wilson%1:18:05:: 11391759 5 0 -wilson%1:18:06:: 11391915 4 0 -wilson%1:18:07:: 11392082 3 0 -wilson%1:18:08:: 11392210 2 0 -wilson%1:18:09:: 11392368 1 0 -wilson's_blackcap%1:05:00:: 01567879 1 0 -wilson's_disease%1:26:00:: 14569121 1 0 -wilson's_phalarope%1:05:00:: 02038466 1 0 -wilson's_snipe%1:05:00:: 02032355 1 0 -wilson's_thrush%1:05:00:: 01559639 1 0 -wilson's_warbler%1:05:00:: 01567879 1 0 -wilson_cloud_chamber%1:06:00:: 03052628 1 0 -wilsonia_pusilla%1:05:00:: 01567879 1 0 -wilsonian%3:01:00:: 02696515 1 1 -wilt%1:04:00:: 00362546 2 0 -wilt%1:26:00:: 14283178 1 0 -wilt%2:30:00:: 00469637 2 0 -wilt%2:30:01:: 00469794 1 1 -wilt_disease%1:26:00:: 14283178 1 0 -wilted%5:00:00:stale:00 01070002 1 0 -wilting%1:04:00:: 00362546 1 0 -wilton%1:06:00:: 04585128 1 0 -wilton_carpet%1:06:00:: 04585128 1 0 -wily%5:00:00:artful:00 00148078 1 1 -wimble%1:06:00:: 02758490 1 0 -wimbledon%1:15:00:: 08876773 1 0 -wimp%1:17:00:: 09476717 2 0 -wimp%1:18:00:: 10781817 1 0 -wimpish%5:00:00:forceless:00 00843046 1 0 -wimple%1:06:00:: 04585318 1 0 -wimpy%5:00:00:forceless:00 00843046 1 0 -wimshurst_machine%1:06:00:: 03280394 1 0 -win%1:11:00:: 07354731 1 2 -win%1:21:00:: 13259917 2 0 -win%2:33:00:: 01100145 1 71 -win%2:33:01:: 01111028 3 2 -win%2:40:00:: 02288295 2 42 -win%2:41:04:: 02524171 4 0 -win_back%2:33:00:: 01111570 1 2 -win_over%2:32:00:: 00769553 1 0 -wince%1:04:00:: 00865471 2 0 -wince%1:10:00:: 06879056 1 0 -wince%2:29:00:: 00008977 2 1 -wince%2:38:00:: 02061069 1 2 -wincey%1:06:00:: 04585456 1 0 -winceyette%1:06:00:: 04585626 1 0 -winch%1:06:00:: 04585745 1 0 -winch%2:35:00:: 01592306 1 0 -winchester%1:06:00:: 04585980 2 0 -winchester%1:15:00:: 08880859 1 0 -winchester_college%1:14:00:: 08411031 1 0 -winchester_drive%1:06:00:: 03209666 1 0 -winckelmann%1:18:00:: 11392539 1 0 -wind%1:04:00:: 00345641 8 0 -wind%1:04:01:: 00836537 3 1 -wind%1:04:02:: 00839597 7 0 -wind%1:06:00:: 04586932 6 0 -wind%1:10:00:: 06651577 5 0 -wind%1:10:01:: 07136711 4 0 -wind%1:19:00:: 11525955 1 28 -wind%1:19:01:: 11415492 2 1 -wind%2:35:00:: 01522052 5 0 -wind%2:35:02:: 01516965 6 0 -wind%2:35:03:: 01455184 7 0 -wind%2:35:06:: 01522276 3 2 -wind%2:38:00:: 01882814 1 3 -wind%2:39:00:: 02125223 4 0 -wind%2:42:00:: 02738701 2 2 -wind_bell%1:06:00:: 04586225 1 0 -wind_cave_national_park%1:15:00:: 08609858 1 0 -wind_chime%1:06:00:: 04586225 1 0 -wind_cone%1:10:00:: 07257582 1 0 -wind_deflection%1:07:00:: 05011431 1 0 -wind_energy_facility%1:06:00:: 04586761 1 0 -wind_exposure%1:07:00:: 05044215 1 0 -wind_farm%1:06:00:: 04586761 1 0 -wind_gage%1:06:00:: 02710429 1 0 -wind_gap%1:17:00:: 09479962 1 0 -wind_gauge%1:06:00:: 02710429 1 0 -wind_generation%1:19:00:: 11526894 1 0 -wind_generator%1:06:00:: 04587404 1 0 -wind_harp%1:06:00:: 02682407 1 0 -wind_instrument%1:06:00:: 04586932 1 0 -wind_off%2:35:00:: 01523654 1 0 -wind_park%1:06:00:: 04586761 1 0 -wind_poppy%1:20:00:: 11908549 1 0 -wind_power%1:19:00:: 11526894 1 0 -wind_rose%1:06:00:: 04590416 1 0 -wind_scale%1:24:00:: 13850674 1 0 -wind_sleeve%1:10:00:: 07257582 1 0 -wind_sock%1:10:00:: 07257582 1 0 -wind_tee%1:06:00:: 04591249 1 0 -wind_tunnel%1:06:00:: 04591359 1 0 -wind_turbine%1:06:00:: 04591517 1 0 -wind_up%2:30:02:: 00352558 1 4 -wind_up%2:35:00:: 01522052 4 0 -wind_up%2:37:00:: 01762283 3 1 -wind_up%2:38:00:: 02087979 2 1 -wind_vane%1:06:00:: 04568069 1 0 -windage%1:07:01:: 05011431 4 0 -windage%1:07:02:: 05044215 3 0 -windage%1:07:03:: 05103503 2 0 -windage%1:19:00:: 11505210 1 0 -windaus%1:18:00:: 11392754 1 0 -windbag%1:18:00:: 10121467 1 1 -windblown%5:00:00:crooked:01 02314236 1 1 -windbreak%1:06:00:: 04586072 1 1 -windbreaker%1:06:00:: 03891051 1 0 -windburn%1:26:00:: 14290751 1 0 -windburned%5:00:00:unhealthy:00 01178577 1 0 -windburnt%5:00:00:unhealthy:00 01178577 1 0 -windcheater%1:06:00:: 03891051 1 0 -winded%5:00:00:breathless:00 00268748 1 0 -winder%1:06:00:: 04586421 3 0 -winder%1:06:01:: 04586581 2 0 -winder%1:18:00:: 10781984 1 0 -windfall%1:11:00:: 07477587 2 0 -windfall%1:13:00:: 07739035 1 0 -windfall_profit%1:21:00:: 13259630 1 0 -windflower%1:20:00:: 11725015 1 0 -windhoek%1:15:00:: 08700133 1 0 -windily%4:02:00:: 00492543 1 0 -windiness%1:10:00:: 07090108 2 0 -windiness%1:26:00:: 14523787 1 0 -winding%1:04:00:: 00345641 1 0 -winding%5:00:00:crooked:01 02313784 1 1 -winding%5:00:00:indirect:00 00763407 2 1 -winding-clothes%1:06:00:: 03879116 1 1 -winding-sheet%1:06:00:: 03879116 1 0 -windjammer%1:06:00:: 04587327 1 0 -windlass%1:06:00:: 04585745 1 0 -windless%5:00:00:calm:00 00303579 1 0 -windlessness%1:26:00:: 14522809 1 0 -windmill%1:06:00:: 04587404 2 0 -windmill%1:06:01:: 04587559 1 1 -windmill_grass%1:20:00:: 12114770 1 0 -window%1:06:00:: 04587648 1 72 -window%1:06:01:: 04588365 2 6 -window%1:06:02:: 04588587 3 3 -window%1:06:03:: 04588739 8 0 -window%1:06:04:: 04589745 6 0 -window%1:06:05:: 04588986 7 0 -window%1:17:00:: 09480077 4 1 -window%1:28:00:: 15299783 5 0 -window-dress%2:30:00:: 00293528 1 0 -window-shop%2:40:00:: 02327074 1 0 -window-washing%1:04:00:: 00256217 1 1 -window_blind%1:06:00:: 04589190 1 0 -window_box%1:06:00:: 04589325 1 1 -window_cleaner%1:18:00:: 10783145 1 0 -window_dresser%1:18:00:: 10783240 1 0 -window_dressing%1:04:00:: 00262908 2 0 -window_dressing%1:10:00:: 06758698 1 0 -window_envelope%1:06:00:: 04589434 1 0 -window_frame%1:06:00:: 04589593 1 0 -window_glass%1:06:00:: 03881893 1 0 -window_lock%1:06:00:: 04136800 1 0 -window_oyster%1:05:00:: 01962788 1 0 -window_pane%1:06:00:: 02675657 1 0 -window_sash%1:06:00:: 04136510 1 0 -window_screen%1:06:00:: 04589890 1 0 -window_seat%1:06:00:: 04590021 1 0 -window_shade%1:06:00:: 04590129 1 1 -window_trimmer%1:18:00:: 10783240 1 0 -window_washer%1:18:00:: 10783352 1 0 -windowpane%1:05:00:: 02662825 2 0 -windowpane%1:06:00:: 04589745 1 2 -windowpane_oyster%1:05:00:: 01962788 1 0 -windows%1:10:00:: 06581823 1 0 -windowsill%1:06:00:: 04590263 1 1 -windpipe%1:08:00:: 05531814 1 0 -windscreen%1:06:00:: 04590553 1 0 -windscreen_wiper%1:06:00:: 04590746 1 0 -windshield%1:06:00:: 04590553 1 3 -windshield_wiper%1:06:00:: 04590746 1 0 -windsock%1:10:00:: 07257582 1 0 -windsor%1:14:00:: 08159740 2 0 -windsor%1:15:00:: 08828627 1 0 -windsor_chair%1:06:00:: 04590933 1 0 -windsor_green%1:27:00:: 14811347 1 1 -windsor_knot%1:06:00:: 04591056 1 0 -windsor_tie%1:06:00:: 04591157 1 0 -windstorm%1:19:00:: 11527014 1 0 -windsurf%2:38:00:: 01948450 1 0 -windswept%5:00:00:inhospitable:00 01243722 1 0 -windtalker%1:18:00:: 09933613 1 0 -windup%1:04:00:: 00211110 1 0 -windup%5:00:00:mechanical:00 01500672 1 0 -windward%1:15:00:: 08610023 2 0 -windward%1:24:00:: 13829586 1 0 -windward%3:00:00:: 01400336 1 0 -windward%4:02:00:: 00095063 1 0 -windward_islands%1:15:00:: 08749864 1 0 -windward_isles%1:15:00:: 08749864 1 0 -windward_passage%1:17:00:: 09480241 1 0 -windward_side%1:24:00:: 13829720 1 0 -windy%5:00:00:fast:01 00980385 3 0 -windy%5:00:00:prolix:00 00549236 4 0 -windy%5:00:00:stormy:00 00305225 1 2 -windy%5:00:00:utopian:00 02498213 2 0 -windy_city%1:15:00:: 09083390 1 0 -wine%1:07:00:: 04964162 2 2 -wine%1:13:00:: 07891726 1 9 -wine%2:34:00:: 01190840 1 0 -wine%2:34:01:: 01176567 2 0 -wine-colored%1:07:00:: 04964162 1 0 -wine-coloured%1:07:00:: 04964162 1 0 -wine-maker's_yeast%1:20:00:: 13026015 1 0 -wine-red%5:00:00:chromatic:00 00385651 1 0 -wine_and_dine%2:34:00:: 01194777 1 0 -wine_and_dine%2:34:01:: 01194661 2 0 -wine_bar%1:06:00:: 04591631 1 0 -wine_barrel%1:06:00:: 04592005 1 0 -wine_bottle%1:06:00:: 04591713 1 0 -wine_bucket%1:06:00:: 04591887 1 0 -wine_cask%1:06:00:: 04592005 1 0 -wine_cellar%1:06:00:: 02991847 1 0 -wine_cooler%1:06:00:: 04591887 1 0 -wine_lover%1:18:00:: 10370955 1 0 -wine_maker%1:06:00:: 04592465 2 0 -wine_maker%1:18:00:: 10754088 1 0 -wine_making%1:04:00:: 01126564 1 0 -wine_merchant%1:18:00:: 10754189 1 0 -wine_palm%1:20:01:: 12585629 2 0 -wine_palm%1:20:02:: 12587132 1 0 -wine_sauce%1:13:00:: 07831663 1 0 -wine_steward%1:18:00:: 10623806 1 0 -wine_taster%1:18:00:: 10783438 1 0 -wine_tasting%1:14:00:: 08486189 1 0 -wine_vinegar%1:13:00:: 07829331 1 0 -wine_waiter%1:18:00:: 10623806 1 0 -wineberry%1:20:01:: 12657755 1 0 -wineberry%1:20:02:: 12193665 2 0 -wineglass%1:06:00:: 04592099 1 1 -wineglass_heel%1:06:00:: 04592243 1 0 -winemaker%1:18:00:: 10754088 1 0 -winemaking%1:04:00:: 01126564 1 0 -winepress%1:06:00:: 04592356 1 0 -winery%1:06:00:: 04592465 1 0 -winesap%1:13:00:: 07741804 1 0 -wineskin%1:06:00:: 04592596 1 0 -winey%5:00:00:tasty:00 02399259 1 0 -winfield_scott%1:18:00:: 11289307 1 0 -winfred%1:18:00:: 10856486 1 0 -wing%1:05:00:: 02151625 1 8 -wing%1:06:00:: 04592741 2 6 -wing%1:06:01:: 02713594 11 0 -wing%1:06:02:: 03327841 10 0 -wing%1:06:03:: 04592962 3 5 -wing%1:13:00:: 07648549 9 0 -wing%1:14:00:: 08219493 4 2 -wing%1:14:01:: 08482113 5 1 -wing%1:14:02:: 08486306 8 0 -wing%1:15:00:: 08493825 7 0 -wing%1:18:00:: 10782135 6 0 -wing%2:38:00:: 01940403 1 5 -wing-nut%1:06:00:: 04593185 2 0 -wing-nut%1:20:00:: 12322501 1 0 -wing-shaped%5:00:00:winged:00 02567117 1 0 -wing_case%1:05:00:: 02152559 1 0 -wing_chair%1:06:00:: 04593077 1 0 -wing_commander%1:18:00:: 10782362 1 0 -wing_elm%1:20:00:: 12406304 1 0 -wing_flat%1:06:00:: 03116435 1 0 -wing_loading%1:24:00:: 13826845 1 0 -wing_nut%1:06:00:: 04593185 2 0 -wing_nut%1:20:00:: 12322501 1 0 -wing_screw%1:06:00:: 04593185 1 0 -wing_shooting%1:04:00:: 00225484 1 0 -wing_tip%1:06:00:: 04593376 2 0 -wing_tip%1:06:01:: 04593524 1 0 -wingback%1:04:00:: 00727333 2 0 -wingback%1:18:00:: 10782248 1 1 -winged%3:00:00:: 02566799 1 0 -winged%5:00:00:fast:01 00980287 2 0 -winged_bean%1:20:00:: 12564083 1 0 -winged_elm%1:20:00:: 12406304 1 0 -winged_everlasting%1:20:00:: 11920663 1 0 -winged_pea%1:20:01:: 12545865 2 0 -winged_pea%1:20:02:: 12564083 1 0 -winged_pigweed%1:20:00:: 11833373 1 0 -winged_spindle_tree%1:20:00:: 12749456 1 0 -winger%1:18:00:: 10782471 1 0 -wingless%3:00:00:: 02568285 1 0 -winglike%5:00:00:winged:00 02568192 1 0 -wingman%1:18:00:: 10782632 1 2 -wings%1:04:00:: 00179916 1 2 -wings%1:10:00:: 07268035 2 0 -wingspan%1:07:00:: 05130614 1 0 -wingspread%1:07:01:: 05130735 1 0 -wingspread%1:07:02:: 05130614 2 0 -wingstem%1:20:00:: 12030908 1 0 -wink%1:04:00:: 00117959 3 0 -wink%1:10:00:: 06878934 2 0 -wink%1:28:00:: 15247110 1 1 -wink%2:29:00:: 00007739 3 1 -wink%2:29:01:: 00008435 4 0 -wink%2:29:02:: 00008299 1 10 -wink%2:39:00:: 02159890 2 3 -wink_at%2:41:00:: 02417389 1 0 -winker%1:06:00:: 04593629 2 0 -winker%1:18:00:: 10783539 1 0 -winking%1:04:00:: 00117959 1 0 -winking%5:00:00:closed:03 01655386 1 0 -winkle%1:05:00:: 01948446 2 0 -winkle%1:13:00:: 07782668 1 0 -winkle%2:35:00:: 01352154 3 0 -winkle%2:39:00:: 02159890 2 0 -winkle%2:43:00:: 02764765 1 0 -winkle_out%2:35:00:: 01352154 2 0 -winkle_out%2:41:00:: 02404622 1 0 -winless%5:00:00:unsuccessful:00 02335708 1 2 -winnebago%1:10:00:: 06913214 2 0 -winnebago%1:18:00:: 09672105 1 0 -winner%1:18:00:: 10782940 1 2 -winner%1:18:01:: 10782791 2 0 -winner%1:18:02:: 09762821 3 0 -winner's_circle%1:15:00:: 08683841 1 0 -winning%1:04:00:: 00064018 1 1 -winning%5:00:00:attractive:01 00167829 2 0 -winning%5:00:01:successful:00 02333314 1 2 -winning_post%1:10:00:: 07258238 1 0 -winning_streak%1:14:00:: 08460847 1 0 -winnings%1:21:00:: 13259917 1 0 -winnipeg%1:15:00:: 08824152 1 1 -winnipeg%1:17:00:: 09480428 2 0 -winnow%1:04:00:: 01254051 1 0 -winnow%2:30:00:: 00177984 4 0 -winnow%2:31:00:: 00677203 3 0 -winnow%2:35:05:: 01460937 1 1 -winnow%2:38:00:: 01885708 2 0 -winnow_out%2:31:00:: 00685419 1 0 -winnowing%1:04:00:: 01254051 1 0 -wino%1:18:00:: 10037385 1 0 -winslow%1:18:00:: 11392913 1 0 -winslow_homer%1:18:00:: 11057548 1 0 -winsome%5:00:00:attractive:01 00169056 1 0 -winsomely%4:02:00:: 00236840 1 0 -winsomeness%1:07:00:: 04687957 1 0 -winston-salem%1:15:00:: 09129324 1 0 -winston_churchill%1:18:00:: 10897312 1 0 -winston_s._churchill%1:18:00:: 10897312 1 0 -winter%1:28:00:: 15237782 1 24 -winter%2:42:00:: 02709573 1 2 -winter's_bark%1:20:01:: 11739978 2 0 -winter's_bark%1:20:02:: 13162815 1 0 -winter's_bark_family%1:20:00:: 11739530 1 0 -winter's_bark_tree%1:20:00:: 11739978 1 0 -winter-blooming%5:00:00:wintry:00 01256213 1 0 -winter-flowering%5:00:00:wintry:00 01256213 1 0 -winter_aconite%1:20:00:: 11733548 1 0 -winter_cherry%1:20:01:: 12896862 2 0 -winter_cherry%1:20:02:: 12910875 1 0 -winter_cress%1:13:00:: 07733124 2 0 -winter_cress%1:20:00:: 11873612 1 0 -winter_crookneck%1:20:00:: 12161969 1 0 -winter_crookneck_squash%1:13:00:: 07718329 2 0 -winter_crookneck_squash%1:20:00:: 12161969 1 0 -winter_currant%1:20:00:: 12805899 1 0 -winter_fern%1:20:00:: 12935609 1 0 -winter_flounder%1:05:00:: 02659478 2 0 -winter_flounder%1:13:00:: 07791663 1 0 -winter_flowering_cherry%1:20:00:: 12650038 1 0 -winter_hazel%1:20:00:: 12315598 1 0 -winter_heath%1:20:00:: 12228229 1 0 -winter_heliotrope%1:20:00:: 12002651 1 0 -winter_jasmine%1:20:00:: 12307076 1 0 -winter_melon%1:13:00:: 07756096 2 0 -winter_melon%1:20:00:: 12164881 1 0 -winter_melon_vine%1:20:00:: 12164881 1 0 -winter_mushroom%1:20:00:: 13022210 1 0 -winter_olympic_games%1:11:00:: 07457485 1 0 -winter_olympics%1:11:00:: 07457485 1 0 -winter_purslane%1:20:00:: 11861853 1 0 -winter_rose%1:20:00:: 11734300 1 0 -winter_savory%1:13:00:: 07821107 2 0 -winter_savory%1:20:00:: 12867449 1 0 -winter_savoury%1:13:00:: 07821107 1 0 -winter_solstice%1:28:00:: 15223190 1 1 -winter_squash%1:13:00:: 07717070 2 0 -winter_squash%1:20:00:: 12160490 1 0 -winter_squash_plant%1:20:00:: 12160490 1 0 -winter_sweet%1:20:01:: 11701698 4 0 -winter_sweet%1:20:02:: 12853287 2 0 -winter_sweet%1:20:03:: 12853706 1 0 -winter_sweet%1:20:04:: 11768505 3 0 -winter_urn%1:20:00:: 12984699 1 0 -winter_wren%1:05:00:: 01584695 1 0 -wintera%1:20:00:: 11740208 1 0 -wintera_colorata%1:20:00:: 11740414 1 0 -winteraceae%1:20:00:: 11739530 1 0 -winterberry%1:20:00:: 12757303 1 0 -wintergreen%1:13:00:: 07743723 3 0 -wintergreen%1:20:00:: 12256112 1 0 -wintergreen%1:20:02:: 12235765 2 0 -wintergreen_family%1:20:00:: 12255659 1 0 -wintergreen_oil%1:13:00:: 07812913 1 0 -winterise%2:30:00:: 00408272 1 0 -winterize%2:30:00:: 00408272 1 0 -wintertime%1:28:00:: 15237782 1 1 -wintery%3:00:00:: 01255807 1 0 -wintry%3:00:00:: 01255807 1 1 -wintry%5:00:00:cold:02 01258264 2 0 -wintun%1:10:00:: 06924468 2 0 -wintun%1:18:00:: 09672314 1 0 -winy%5:00:00:tasty:00 02399259 1 0 -wipe%1:04:00:: 00125126 1 0 -wipe%2:35:00:: 01392237 1 17 -wipe_away%2:35:00:: 01392918 1 0 -wipe_off%2:35:00:: 01392918 1 3 -wipe_off%2:35:01:: 01548718 2 0 -wipe_out%2:30:00:: 00470701 2 1 -wipe_out%2:30:02:: 00478830 5 0 -wipe_out%2:30:03:: 00479391 4 0 -wipe_out%2:30:04:: 00471196 6 0 -wipe_out%2:34:00:: 01157517 1 1 -wipe_out%2:36:00:: 01621219 3 0 -wipe_up%2:35:00:: 01393339 1 1 -wiped_out%5:00:00:destroyed:00 00734798 1 2 -wiped_out%5:00:02:destroyed:00 00735195 2 0 -wipeout%1:04:00:: 00077249 2 0 -wipeout%1:11:00:: 07334490 1 0 -wiper%1:06:00:: 04590746 3 0 -wiper%1:06:01:: 04593866 2 0 -wiper%1:18:00:: 10783646 1 0 -wiper_arm%1:06:00:: 04593866 1 0 -wiper_blade%1:06:00:: 04590746 1 0 -wiper_motor%1:06:00:: 04594114 1 0 -wire%1:06:00:: 04594218 1 15 -wire%1:06:01:: 04594489 2 5 -wire%1:10:00:: 06622709 4 1 -wire%1:15:00:: 08684107 3 1 -wire%2:30:00:: 00505802 5 0 -wire%2:32:00:: 01007222 2 2 -wire%2:35:00:: 01599052 3 1 -wire%2:35:01:: 01599325 4 0 -wire%2:40:00:: 02354536 1 3 -wire-haired%5:00:00:hairy:00 00216420 1 0 -wire-haired_fox_terrier%1:05:00:: 02095314 1 0 -wire-haired_pointing_griffon%1:05:00:: 02103181 1 0 -wire-haired_terrier%1:05:00:: 02095412 1 0 -wire-puller%1:18:00:: 10783881 1 0 -wire_cloth%1:06:00:: 04594742 1 0 -wire_cutter%1:06:00:: 04594828 1 0 -wire_gage%1:06:00:: 04594919 1 0 -wire_gauge%1:06:00:: 04594919 1 0 -wire_glass%1:27:00:: 14883098 1 0 -wire_grass%1:20:01:: 12118414 2 0 -wire_grass%1:20:02:: 12133462 1 0 -wire_matrix_printer%1:06:00:: 04595285 1 0 -wire_printer%1:06:00:: 04595285 1 0 -wire_recorder%1:06:00:: 04595501 1 0 -wire_service%1:14:00:: 08355075 1 0 -wire_stripper%1:06:00:: 04595611 1 0 -wire_wool%1:27:00:: 14803578 1 0 -wired%3:00:00:: 02568556 1 1 -wired%5:00:00:bound:01 00254046 3 0 -wired%5:00:00:tense:03 02407346 2 0 -wirehair%1:05:00:: 02095412 1 0 -wirehaired_terrier%1:05:00:: 02095412 1 0 -wireless%1:06:00:: 04041544 4 0 -wireless%1:06:01:: 04043733 3 0 -wireless%1:10:00:: 06275353 2 0 -wireless%1:10:01:: 06277135 1 0 -wireless%3:00:00:: 02569030 1 0 -wireless_fidelity%1:06:00:: 04595028 1 0 -wireless_local_area_network%1:06:00:: 04595028 1 0 -wireless_telegraph%1:06:00:: 04044307 1 0 -wireless_telegraphy%1:06:00:: 04044307 2 0 -wireless_telegraphy%1:10:00:: 06275471 1 0 -wireless_telephone%1:06:00:: 04044498 2 0 -wireless_telephone%1:10:00:: 06276501 1 0 -wireman%1:18:00:: 10783734 1 0 -wirer%1:18:00:: 10783734 2 0 -wirer%1:18:01:: 10784015 1 0 -wiretap%1:04:00:: 00654400 1 0 -wiretap%2:39:00:: 02188848 1 0 -wiretapper%1:18:00:: 10691318 1 0 -wirework%1:06:00:: 04595762 1 0 -wireworm%1:05:00:: 02176916 1 0 -wiriness%1:07:00:: 05033171 1 0 -wiring%1:04:01:: 00714806 2 0 -wiring%1:06:00:: 04595855 1 0 -wiring_diagram%1:06:00:: 04595998 1 0 -wiry%3:01:00:: 03145054 2 0 -wiry%5:00:00:hairy:00 00216560 3 0 -wiry%5:00:00:thin:03 00991584 1 4 -wiry-coated%5:00:00:hairy:00 00216420 1 0 -wiry-stemmed%5:00:00:caulescent:00 00322084 1 0 -wisconsin%1:15:00:: 09157163 2 0 -wisconsin%1:17:00:: 09480556 1 0 -wisconsin_river%1:17:00:: 09480556 1 0 -wisconsin_weeping_willow%1:20:00:: 12726902 1 0 -wisconsinite%1:18:00:: 09746536 1 0 -wisdom%1:07:00:: 04890112 2 3 -wisdom%1:07:01:: 05159948 4 1 -wisdom%1:09:01:: 05617107 3 2 -wisdom%1:09:02:: 05926236 1 5 -wisdom%1:10:00:: 06460524 5 0 -wisdom_book%1:10:00:: 06461077 1 0 -wisdom_literature%1:10:00:: 06461077 1 0 -wisdom_of_jesus_the_son_of_sirach%1:10:00:: 06460295 1 0 -wisdom_of_solomon%1:10:00:: 06460524 1 0 -wisdom_tooth%1:08:00:: 05307952 1 0 -wise%1:07:00:: 04931733 1 2 -wise%1:18:00:: 11393124 3 0 -wise%1:18:01:: 11393315 2 0 -wise%3:00:00:: 02569130 1 13 -wise%5:00:00:forward:02 00205295 4 0 -wise%5:00:00:informed:00 01307690 3 0 -wise%5:00:00:prudent:00 01898722 2 2 -wise_guy%1:18:00:: 10784113 1 1 -wise_man%1:18:00:: 10309496 1 1 -wise_men%1:14:00:: 08486538 1 0 -wise_to%5:00:00:informed:00 01307690 1 0 -wise_up%2:31:00:: 00599613 1 1 -wise_up%2:31:01:: 00599720 2 0 -wiseacre%1:18:00:: 10784113 1 0 -wisecrack%1:10:00:: 06767777 1 0 -wisecrack%2:32:00:: 01058880 1 2 -wisely%4:02:00:: 00201570 1 2 -wiseness%1:07:00:: 04890112 2 0 -wiseness%1:07:01:: 05159948 1 0 -wisenheimer%1:18:00:: 10784113 1 1 -wisent%1:05:00:: 02410900 1 0 -wish%1:09:00:: 05791602 4 0 -wish%1:10:00:: 07185870 2 2 -wish%1:10:01:: 06630627 3 0 -wish%1:12:00:: 07486229 1 6 -wish%2:32:00:: 00902932 6 2 -wish%2:32:01:: 00903098 5 2 -wish%2:32:02:: 00903212 3 12 -wish%2:37:00:: 01824339 1 48 -wish%2:37:01:: 01824532 4 5 -wish%2:37:02:: 01824736 2 31 -wish-wash%1:10:00:: 06611998 2 0 -wish-wash%1:13:00:: 07882420 1 0 -wish_list%1:10:00:: 06496299 1 0 -wish_well%2:37:00:: 01824532 1 0 -wishbone%1:05:00:: 01895511 1 0 -wished-for%5:00:00:wanted:00 02527489 1 0 -wishful%3:00:00:: 00887719 1 0 -wishful%5:00:00:ambitious:00 00104533 2 0 -wishful_thinker%1:18:00:: 10062996 1 0 -wishful_thinking%1:09:00:: 05896618 1 2 -wishfully%4:02:00:: 00496264 1 0 -wishfulness%1:12:00:: 07487177 1 0 -wishing%1:12:00:: 07486229 1 1 -wishing_bone%1:05:00:: 01895511 1 0 -wishing_cap%1:06:00:: 04596116 1 0 -wishy-washy%5:00:00:weak:00 02325816 1 0 -wisp%1:14:00:: 07992222 4 0 -wisp%1:14:01:: 07960928 1 1 -wisp%1:14:02:: 08008254 3 0 -wisp%1:18:00:: 10784436 2 0 -wisplike%5:00:00:thin:03 00991678 1 0 -wispy%5:00:00:indistinct:00 00782216 2 0 -wispy%5:00:00:thin:03 00991678 1 0 -wistaria%1:20:00:: 12580457 1 0 -wister%1:18:00:: 11393446 1 0 -wisteria%1:20:00:: 12580457 1 0 -wisteria_chinensis%1:20:00:: 12580786 1 0 -wisteria_floribunda%1:20:00:: 12580654 1 0 -wisteria_frutescens%1:20:00:: 12580896 1 0 -wisteria_venusta%1:20:00:: 12581110 1 0 -wistful%5:00:01:sad:00 01362950 1 0 -wistfully%4:02:00:: 00496382 1 0 -wistfulness%1:12:00:: 07487276 1 0 -wit%1:09:00:: 05618056 2 3 -wit%1:10:00:: 06776138 1 9 -wit%1:18:00:: 10762342 3 0 -witch%1:18:00:: 10055297 1 3 -witch%1:18:01:: 09503282 2 2 -witch%1:18:02:: 10155485 4 0 -witch%1:18:03:: 10780105 3 0 -witch%2:32:00:: 00776988 1 0 -witch's_brew%1:14:00:: 08399378 1 0 -witch-hazel_family%1:20:00:: 12314315 1 0 -witch-hunt%1:04:00:: 00426275 1 0 -witch-hunter%1:18:00:: 10784675 1 0 -witch_alder%1:20:00:: 12315999 1 0 -witch_broom%1:20:00:: 12521624 1 0 -witch_doctor%1:18:00:: 10784544 1 2 -witch_elm%1:20:00:: 12407079 1 0 -witch_grass%1:20:01:: 12127237 1 0 -witch_grass%1:20:02:: 12105578 2 0 -witch_hazel%1:06:00:: 04596224 2 0 -witch_hazel%1:20:00:: 12314808 1 0 -witch_hazel_plant%1:20:00:: 12314808 1 0 -witchcraft%1:09:00:: 05979350 1 0 -witchery%1:09:00:: 05979350 1 0 -witches'_brew%1:14:00:: 08399378 1 0 -witches'_broom%1:20:00:: 12521624 1 0 -witches'_broth%1:14:00:: 08399378 1 0 -witches'_butter%1:20:00:: 13061348 1 0 -witches'_sabbath%1:14:00:: 08398580 1 0 -witchgrass%1:20:01:: 12127237 1 0 -witchgrass%1:20:02:: 12105578 2 0 -witching%1:04:00:: 01268183 1 0 -witching%5:00:00:supernatural:00 01576071 1 0 -witchlike%5:00:00:supernatural:00 01577672 1 0 -with-it%5:00:00:fashionable:00 00972642 1 0 -with-it%5:00:00:smart:00 00439431 2 0 -with_child%5:00:00:pregnant:00 00173391 1 0 -withal%4:02:00:: 00040494 2 0 -withal%4:02:01:: 00027384 1 1 -withdraw%2:30:00:: 00495998 6 1 -withdraw%2:30:01:: 00173338 12 0 -withdraw%2:32:00:: 00799383 11 0 -withdraw%2:32:01:: 00799076 5 1 -withdraw%2:35:00:: 01511380 3 4 -withdraw%2:37:00:: 01766952 10 0 -withdraw%2:38:00:: 01994442 1 9 -withdraw%2:40:00:: 02311387 9 0 -withdraw%2:40:01:: 02312478 4 2 -withdraw%2:41:00:: 02428487 7 0 -withdraw%2:41:01:: 02380009 2 4 -withdraw%2:41:03:: 02380760 8 0 -withdrawal%1:04:00:: 00053913 3 1 -withdrawal%1:04:01:: 00384933 8 0 -withdrawal%1:04:02:: 00228911 9 0 -withdrawal%1:04:03:: 01262713 2 1 -withdrawal%1:04:04:: 00849059 7 0 -withdrawal%1:04:05:: 01262868 5 0 -withdrawal%1:04:06:: 01202799 6 0 -withdrawal%1:10:00:: 07206302 1 1 -withdrawal%1:12:00:: 07506031 4 0 -withdrawal_method%1:04:00:: 00849059 1 0 -withdrawal_symptom%1:26:00:: 14373057 1 0 -withdrawer%1:18:00:: 10784795 6 0 -withdrawer%1:18:01:: 10784922 5 0 -withdrawer%1:18:02:: 10785085 4 0 -withdrawer%1:18:03:: 10785203 3 0 -withdrawer%1:18:04:: 10785333 2 0 -withdrawer%1:18:05:: 10785480 1 0 -withdrawing_room%1:06:00:: 03235042 1 0 -withdrawn%5:00:00:reserved:01 01988024 2 0 -withdrawn%5:00:00:unsocial:00 02250691 1 0 -withdrawnness%1:07:00:: 04656996 1 0 -withe%1:06:00:: 04596397 1 1 -withe%1:20:00:: 13164403 2 0 -wither%2:30:00:: 00241689 1 1 -wither%2:30:01:: 00421917 2 0 -withered%5:00:00:dry:01 02553234 2 0 -withered%5:00:00:thin:03 00990442 1 1 -withering%1:11:00:: 07427060 1 0 -withering%5:00:00:destructive:00 00586617 1 1 -withering%5:00:00:disrespectful:00 01995047 2 0 -witheringly%4:02:00:: 00496555 1 0 -withers%1:05:00:: 02462602 1 0 -witherspoon%1:18:00:: 11393546 1 0 -withhold%2:40:00:: 02213690 1 8 -withhold%2:40:01:: 02215001 2 1 -withholder%1:18:00:: 10785574 2 0 -withholder%1:18:01:: 10785695 1 0 -withholding%1:04:00:: 00361192 1 3 -withholding%1:04:01:: 00810794 3 1 -withholding%1:21:00:: 13311368 2 1 -withholding_tax%1:21:00:: 13311368 1 0 -within%4:02:00:: 00110815 1 6 -without_a_stitch%5:00:00:unclothed:00 00460296 1 0 -without_doubt%4:02:02:: 00150134 1 0 -withstand%2:33:00:: 01116585 2 0 -withstand%2:42:00:: 02706816 1 6 -withstander%1:18:00:: 10785869 1 0 -withstander%1:18:01:: 09615211 2 0 -withy%1:20:00:: 13164403 1 0 -witless%5:00:00:stupid:00 00441365 1 0 -witloof%1:13:00:: 07731767 2 0 -witloof%1:20:00:: 11953339 1 0 -witness%1:10:00:: 06734702 3 2 -witness%1:18:00:: 10786033 1 7 -witness%1:18:01:: 10633450 2 3 -witness%1:18:02:: 10786270 4 1 -witness%1:18:03:: 10786517 5 0 -witness%2:39:00:: 02128286 1 17 -witness%2:39:01:: 02128873 2 7 -witness_box%1:06:00:: 04596492 1 0 -witness_stand%1:06:00:: 04596492 1 0 -witnesser%1:18:00:: 10786033 1 0 -witold_gombrowicz%1:18:00:: 11006128 1 0 -wits%1:09:00:: 05622196 1 0 -wittgenstein%1:18:00:: 11393828 1 0 -wittgensteinian%3:01:00:: 03038796 1 0 -witticism%1:10:00:: 06776138 1 0 -wittily%4:02:00:: 00496681 1 0 -wittiness%1:10:00:: 06776138 1 0 -witting%3:00:00:: 00192756 1 0 -witting%5:00:00:intended:00 01337767 2 0 -wittingly%4:02:00:: 00237636 1 1 -wittol%1:18:00:: 10786755 1 0 -witty%5:00:00:humorous:00 01268194 1 5 -witwatersrand%1:15:00:: 09001881 1 0 -wive%2:40:00:: 02332891 3 0 -wive%2:41:00:: 02489916 2 0 -wive%2:41:01:: 02490004 1 0 -wivern%1:18:00:: 09503486 1 0 -wiz%1:18:00:: 09762509 1 0 -wizard%1:18:00:: 10625860 2 0 -wizard%1:18:01:: 09762509 1 2 -wizard%5:00:00:supernatural:00 01576071 1 0 -wizardly%5:00:00:supernatural:00 01576071 1 0 -wizardry%1:09:00:: 05625373 1 0 -wizen%5:00:00:thin:03 00990442 1 0 -wizened%5:00:00:thin:03 00990442 1 0 -wlan%1:06:00:: 04595028 1 0 -wmd%1:06:00:: 04565963 1 0 -wmo%1:14:00:: 08302919 1 0 -wnw%1:24:00:: 13834643 1 0 -woad%1:20:00:: 11890022 2 0 -woad%1:27:00:: 15002138 1 0 -woadwaxen%1:20:00:: 12530818 1 0 -wobble%1:11:00:: 07364700 1 0 -wobble%2:38:00:: 01869003 1 5 -wobble%2:38:01:: 01871546 3 0 -wobble%2:38:02:: 01884974 2 0 -wobbler%1:06:00:: 04596630 1 0 -wobbling%5:00:00:unsteady:00 02305786 1 1 -wobbly%1:18:00:: 10786892 1 0 -wobbly%5:00:00:unstable:00 02292797 1 1 -wodan%1:18:00:: 09586326 1 0 -wodehouse%1:18:00:: 11394042 1 0 -woden%1:18:00:: 09586326 1 0 -woe%1:12:00:: 07533877 2 0 -woe%1:26:00:: 14448910 1 3 -woebegone%5:00:00:sorrowful:00 01366525 2 0 -woebegone%5:00:00:worn:00 02581530 1 0 -woeful%5:00:00:inferior:02 02347086 2 0 -woeful%5:00:00:sorrowful:00 01366525 1 2 -woefully%4:02:00:: 00093270 1 1 -woefulness%1:12:00:: 07533877 1 0 -wog%1:18:00:: 10786992 1 0 -wok%1:06:00:: 04596742 1 0 -wold%1:15:00:: 08645318 1 0 -wolf%1:05:00:: 02114100 1 1 -wolf%1:18:00:: 10787197 4 0 -wolf%1:18:01:: 09845589 5 0 -wolf%1:18:02:: 11394214 3 0 -wolf%1:18:03:: 11394398 2 0 -wolf%2:34:00:: 01169205 1 0 -wolf's_bane%1:20:00:: 11723452 1 0 -wolf's_milk%1:20:00:: 12919847 1 0 -wolf-sized%5:00:00:sized:00 02224977 1 0 -wolf-whistle%2:32:00:: 01043768 1 0 -wolf_bean%1:20:00:: 12546420 1 0 -wolf_boy%1:18:00:: 10787364 1 0 -wolf_cub%1:05:00:: 01322508 1 0 -wolf_down%2:34:00:: 01169205 1 0 -wolf_fish%1:05:01:: 02616851 1 0 -wolf_pack%1:14:00:: 07995074 2 0 -wolf_pack%1:14:01:: 08477511 1 0 -wolf_pup%1:05:00:: 01322508 1 0 -wolf_spider%1:05:00:: 01775062 1 0 -wolfbane%1:20:00:: 11723452 1 0 -wolfe%1:18:00:: 11394491 2 0 -wolfe%1:18:01:: 11394657 1 0 -wolff%1:18:00:: 11394848 1 0 -wolffia%1:20:00:: 11795774 1 0 -wolffia_columbiana%1:20:00:: 11796188 1 0 -wolffiella%1:20:00:: 11796318 1 0 -wolffiella_gladiata%1:20:00:: 11796573 1 0 -wolffish%1:05:01:: 02616851 1 0 -wolffish%1:05:02:: 02544274 2 0 -wolfgang_amadeus_mozart%1:18:00:: 11194355 1 0 -wolfgang_pauli%1:18:00:: 11226713 1 0 -wolfhound%1:05:00:: 02090475 1 0 -wolfish%3:01:00:: 02840006 1 0 -wolfish%5:00:00:gluttonous:00 00010726 2 0 -wolfishly%4:02:00:: 00496800 1 0 -wolflike%3:01:00:: 02840006 1 1 -wolfman%1:18:01:: 09503121 1 0 -wolfram%1:27:00:: 14659512 1 0 -wolfram_steel%1:27:00:: 15081828 1 0 -wolframite%1:27:00:: 15103226 1 0 -wolfsbane%1:20:00:: 11723452 1 0 -wollaston%1:18:00:: 11394954 1 0 -wollaston_prism%1:06:00:: 04098260 1 0 -wollastonite%1:27:00:: 15103485 1 0 -wollemi_pine%1:20:00:: 11645590 1 0 -wollstonecraft%1:18:00:: 11395199 1 0 -wolof%1:10:00:: 06996894 1 0 -wolstonian_glaciation%1:22:00:: 13487952 1 0 -wolverine%1:05:01:: 02449183 3 0 -wolverine%1:05:02:: 02449350 2 0 -wolverine%1:18:00:: 09743690 1 0 -wolverine_state%1:15:00:: 09099526 1 0 -woman%1:14:00:: 08477634 4 0 -woman%1:18:00:: 10787470 1 143 -woman%1:18:01:: 10788852 2 1 -woman%1:18:02:: 09911226 3 0 -woman's_body%1:08:00:: 05220126 1 0 -woman's_clothing%1:06:00:: 04596852 1 0 -woman's_doctor%1:18:00:: 10154013 1 0 -woman's_hat%1:06:00:: 03766322 1 0 -woman-worship%1:04:00:: 01045306 1 0 -woman_chaser%1:18:00:: 10787197 1 0 -woman_hater%1:18:00:: 10322648 1 0 -woman_of_the_house%1:18:00:: 10189776 1 0 -woman_of_the_street%1:18:00:: 10485440 1 0 -womanhood%1:04:00:: 00606006 3 0 -womanhood%1:14:00:: 08477634 2 0 -womanhood%1:26:00:: 14425715 1 0 -womanise%2:41:00:: 02590910 1 0 -womaniser%1:18:00:: 10789118 1 0 -womanish%5:00:00:unmanly:00 01476516 1 0 -womanishness%1:07:00:: 04668139 1 0 -womanize%2:30:00:: 00566322 2 0 -womanize%2:41:00:: 02590910 1 0 -womanizer%1:18:00:: 10789118 1 0 -womankind%1:14:00:: 08477912 1 0 -womanlike%1:07:00:: 04667660 1 0 -womanlike%5:00:00:womanly:00 01485401 1 0 -womanliness%1:07:00:: 04667660 1 0 -womanly%3:00:00:: 01484987 1 0 -womb%1:08:00:: 05519085 1 1 -womb-to-tomb%5:00:00:long:02 01440159 1 1 -wombat%1:05:00:: 01883070 1 0 -women's_army_corps%1:14:00:: 08212740 1 0 -women's_lib%1:04:00:: 00800421 1 0 -women's_liberation_movement%1:04:00:: 00800421 1 0 -women's_liberationist%1:18:00:: 10084635 1 0 -women's_rightist%1:18:00:: 10084635 1 0 -won%1:23:01:: 13708992 2 0 -won%1:23:02:: 13709360 1 0 -won%3:00:00:: 01452488 1 0 -won-lost_record%1:10:00:: 06507592 1 1 -won_ton%1:13:00:: 07702057 1 0 -won_ton%1:13:01:: 07588193 2 0 -wonder%1:09:00:: 05682570 3 4 -wonder%1:11:00:: 07289588 2 4 -wonder%1:12:00:: 07509996 1 5 -wonder%2:31:00:: 00729378 1 58 -wonder%2:32:01:: 00925110 2 41 -wonder%2:32:12:: 00925490 3 2 -wonder-struck%5:00:00:affected:00 00071897 1 0 -wonder_bean%1:20:00:: 12511239 1 0 -wonder_boy%1:18:00:: 10789415 1 0 -wonder_child%1:18:00:: 09918867 1 0 -wonder_flower%1:20:00:: 12460308 1 0 -wonder_woman%1:18:00:: 10789820 1 0 -wonderberry%1:20:00:: 12896615 1 0 -wonderer%1:18:00:: 10789534 2 0 -wonderer%1:18:01:: 10789709 1 0 -wonderful%5:00:00:extraordinary:00 01676517 1 14 -wonderfully%4:02:00:: 00183090 1 3 -wonderfulness%1:07:00:: 04729127 1 1 -wondering%5:00:00:curious:00 00664879 1 0 -wonderingly%4:02:00:: 00357692 1 0 -wonderland%1:09:00:: 05632175 2 0 -wonderland%1:17:00:: 09480699 1 0 -wonderment%1:12:00:: 07509996 1 0 -wonderworking%5:00:00:extraordinary:00 01678946 1 1 -wondrous%4:02:00:: 00183090 1 0 -wondrous%5:00:00:extraordinary:00 01676517 1 2 -wondrously%4:02:00:: 00183090 1 4 -wonk%1:18:00:: 10684630 1 0 -wonky%5:00:00:crooked:01 02312450 1 0 -wonky%5:00:00:unstable:00 02292797 2 0 -wont%1:09:00:: 05669034 1 0 -wont_to%5:00:00:accustomed:00 00024619 1 0 -wonted%5:00:00:usual:00 00489491 1 0 -wonton%1:13:00:: 07702057 1 0 -wonton%1:13:01:: 07588193 2 0 -wonton_soup%1:13:00:: 07588193 1 0 -woo%2:41:00:: 02534492 2 1 -woo%2:41:01:: 02534936 1 2 -wood%1:06:01:: 04598582 7 0 -wood%1:06:02:: 04597066 8 0 -wood%1:14:00:: 08438533 2 10 -wood%1:18:00:: 11395466 6 0 -wood%1:18:01:: 11395609 5 0 -wood%1:18:02:: 11395773 4 0 -wood%1:18:03:: 11395895 3 0 -wood%1:27:00:: 15098161 1 14 -wood's_alloy%1:27:00:: 15103911 1 0 -wood's_metal%1:27:00:: 15103911 1 0 -wood-burning%5:00:00:fueled:00 01098941 1 0 -wood-creeper%1:05:00:: 01554448 1 0 -wood-fern%1:20:00:: 13193642 1 0 -wood-fired%5:00:00:fueled:00 01098941 1 0 -wood-frog%1:05:00:: 01641206 1 0 -wood-rat%1:05:00:: 02338901 1 0 -wood-sorrel_family%1:20:00:: 12702443 1 0 -wood_alcohol%1:27:00:: 14687818 1 0 -wood_anemone%1:20:01:: 11725821 2 0 -wood_anemone%1:20:02:: 11725973 1 0 -wood_ant%1:05:00:: 02221414 1 0 -wood_aster%1:20:00:: 11932745 1 0 -wood_avens%1:20:00:: 12632526 1 0 -wood_block%1:06:00:: 04597536 1 0 -wood_chisel%1:06:00:: 04597400 1 0 -wood_coal%1:27:00:: 14815263 1 0 -wood_coal%1:27:01:: 14685296 2 0 -wood_cudweed%1:20:00:: 11972959 1 0 -wood_drake%1:05:00:: 01852329 1 0 -wood_duck%1:05:00:: 01852142 1 0 -wood_engraving%1:06:00:: 04597536 2 0 -wood_engraving%1:06:01:: 04597706 1 0 -wood_fern%1:20:00:: 13193642 1 0 -wood_file%1:06:00:: 04054670 1 0 -wood_frog%1:05:00:: 01641206 1 0 -wood_garlic%1:20:00:: 12435649 1 0 -wood_grain%1:07:00:: 04950952 1 0 -wood_hen%1:05:00:: 02015357 1 0 -wood_hoopoe%1:05:00:: 01830479 1 0 -wood_horsetail%1:20:00:: 13220525 1 0 -wood_hyacinth%1:20:00:: 12459275 1 0 -wood_ibis%1:05:01:: 02004855 2 0 -wood_ibis%1:05:02:: 02006063 1 0 -wood_laurel%1:20:01:: 12346986 1 0 -wood_laurel%1:20:02:: 12237641 2 0 -wood_lily%1:20:01:: 12428587 2 0 -wood_lily%1:20:02:: 12468243 1 0 -wood_meadowgrass%1:20:00:: 12132092 1 0 -wood_mint%1:20:00:: 12842302 1 0 -wood_mouse%1:05:00:: 02336641 1 0 -wood_nettle%1:20:00:: 12394118 1 0 -wood_nymph%1:18:00:: 09551040 1 0 -wood_pewee%1:05:00:: 01549430 1 0 -wood_pigeon%1:05:00:: 01813088 1 0 -wood_poppy%1:20:00:: 11908846 1 0 -wood_pulp%1:27:00:: 15103634 1 0 -wood_pussy%1:05:00:: 02445715 1 0 -wood_rabbit%1:05:00:: 02325366 1 0 -wood_rat%1:05:00:: 02338901 1 0 -wood_sage%1:20:01:: 12870225 1 0 -wood_sage%1:20:02:: 12869668 2 0 -wood_shavings%1:27:00:: 14976634 1 0 -wood_sorrel%1:20:00:: 12702948 1 0 -wood_spirit%1:27:00:: 14687818 1 0 -wood_spurge%1:20:00:: 12920955 1 0 -wood_stork%1:05:01:: 02004855 2 0 -wood_stork%1:05:02:: 02006063 1 0 -wood_strawberry%1:20:00:: 12630641 1 0 -wood_sugar%1:27:00:: 15103780 1 0 -wood_swallow%1:05:00:: 01597022 1 0 -wood_tar%1:27:00:: 15104088 1 0 -wood_thrush%1:05:00:: 01559804 1 0 -wood_tick%1:05:00:: 01779148 1 0 -wood_vinegar%1:27:00:: 14863326 1 0 -wood_violet%1:20:01:: 12389501 2 0 -wood_violet%1:20:02:: 12390314 1 0 -wood_vise%1:06:00:: 04598416 1 0 -wood_warbler%1:05:01:: 01567133 1 0 -wood_warbler%1:05:02:: 01565345 2 0 -wood_widgeon%1:05:00:: 01852142 1 0 -woodbine%1:20:01:: 12676534 2 0 -woodbine%1:20:02:: 13148384 1 0 -woodborer%1:05:00:: 01923025 1 0 -woodbury%1:18:00:: 11396000 1 0 -woodcarver%1:18:00:: 10789963 1 1 -woodcarving%1:06:00:: 04597309 1 0 -woodchuck%1:05:00:: 02361587 1 0 -woodcock%1:05:00:: 02030996 1 0 -woodcock_snipe%1:05:01:: 02031585 2 0 -woodcock_snipe%1:05:02:: 02032480 1 0 -woodcraft%1:09:00:: 05644423 2 0 -woodcraft%1:09:02:: 05758548 1 0 -woodcreeper%1:05:00:: 01554448 1 0 -woodcut%1:06:00:: 04597536 2 0 -woodcut%1:06:01:: 04597706 1 0 -woodcutter%1:18:00:: 10790077 1 0 -wooded%3:00:00:: 02572823 1 1 -wooden%5:00:00:awkward:00 01141595 2 0 -wooden%5:00:00:woody:00 02576489 1 16 -wooden-headed%5:00:00:stupid:00 00440292 1 0 -wooden_horse%1:06:00:: 04486718 1 0 -wooden_leg%1:06:00:: 03906106 1 2 -wooden_shoe%1:06:00:: 04122578 1 0 -wooden_spoon%1:06:00:: 04597913 2 0 -wooden_spoon%1:06:01:: 04598010 1 0 -woodenly%4:02:00:: 00194362 1 2 -woodenness%1:07:00:: 04815916 1 0 -woodenware%1:06:00:: 04597804 1 0 -woodfern%1:20:00:: 13193642 1 0 -woodgrain%1:07:00:: 04950952 1 1 -woodgraining%1:07:00:: 04951071 1 1 -woodhewer%1:05:00:: 01554448 1 0 -woodhull%1:18:00:: 11396128 1 0 -woodiness%1:07:00:: 05216102 1 0 -woodiness%1:07:01:: 04950952 2 0 -woodland%1:17:00:: 09284015 1 0 -woodland_caribou%1:05:00:: 02434190 1 0 -woodland_oxeye%1:20:00:: 11942659 1 0 -woodland_star%1:20:00:: 12799776 1 0 -woodland_white_violet%1:20:00:: 12388444 1 0 -woodlet%1:06:00:: 03463832 1 0 -woodlouse%1:05:01:: 01991028 1 0 -woodman%1:18:00:: 10790384 1 0 -woodman%1:18:01:: 10790192 2 0 -woodpecker%1:05:00:: 01838598 1 2 -woodpile%1:14:00:: 07963613 1 0 -woodrow_charles_herman%1:18:00:: 11044939 1 0 -woodrow_wilson%1:18:00:: 11390855 1 0 -woodrow_wilson_guthrie%1:18:00:: 11020721 1 0 -woodruff%1:20:01:: 12661538 2 0 -woodruff%1:20:02:: 12665271 1 0 -woods%1:14:00:: 08438533 1 43 -woodscrew%1:06:00:: 04598136 1 0 -woodshed%1:06:00:: 04598318 1 1 -woodsia%1:20:00:: 13201969 1 0 -woodsia_alpina%1:20:00:: 13202355 1 0 -woodsia_glabella%1:20:00:: 13202602 1 0 -woodsia_ilvensis%1:20:00:: 13202125 1 0 -woodsiness%1:07:00:: 05216102 1 0 -woodsman%1:18:00:: 10790384 1 0 -woodsman%1:18:01:: 10790192 2 0 -woodsy%5:00:00:wooded:00 02574890 1 0 -woodsy%5:00:01:wooded:00 02573192 2 0 -woodward%1:18:00:: 11396338 2 0 -woodward%1:18:01:: 11396535 1 0 -woodwardia%1:20:00:: 13186200 1 0 -woodwardia_virginica%1:20:00:: 13186546 1 0 -woodwaxen%1:20:00:: 12530818 1 0 -woodwind%1:06:00:: 04598582 1 0 -woodwind_family%1:14:00:: 07998450 1 0 -woodwind_instrument%1:06:00:: 04598582 1 0 -woodwork%1:04:00:: 00607775 2 0 -woodwork%1:06:00:: 04598792 1 3 -woodworker%1:18:00:: 10790192 1 0 -woodworking%1:04:00:: 00607775 1 0 -woodworking_plane%1:06:00:: 03954731 1 0 -woodworking_vise%1:06:00:: 04598416 1 0 -woodworm%1:05:00:: 01922948 1 0 -woody%3:00:00:: 02575330 1 0 -woody%5:00:00:hard:01 01152189 3 0 -woody%5:00:00:wooded:00 02573192 2 0 -woody-stemmed%5:00:00:caulescent:00 00322242 1 0 -woody_allen%1:18:00:: 10814953 1 0 -woody_guthrie%1:18:00:: 11020721 1 0 -woody_herman%1:18:00:: 11044939 1 0 -woody_nightshade%1:20:00:: 12894607 1 0 -woody_pear%1:20:00:: 12224140 1 0 -woody_plant%1:20:00:: 13103136 1 0 -wooer%1:18:00:: 10674130 1 0 -woof%1:06:00:: 04598965 1 0 -woofer%1:06:00:: 04599124 1 0 -wooing%1:10:00:: 07188685 1 0 -wool%1:05:00:: 01899593 3 0 -wool%1:06:00:: 04599235 1 3 -wool%1:27:00:: 15104217 2 0 -wool_fat%1:27:00:: 14816181 1 0 -wool_grass%1:20:01:: 12121187 2 0 -wool_grass%1:20:02:: 12153224 1 0 -wool_grease%1:27:00:: 14816181 1 0 -wool_oil%1:27:00:: 15105638 1 0 -wool_stapler%1:18:00:: 10790479 2 0 -wool_stapler%1:18:01:: 10790596 1 0 -woolen%1:06:00:: 04599235 1 1 -woolen%3:01:00:: 03130689 1 1 -woolf%1:18:00:: 11396667 1 0 -woolgather%2:36:00:: 01637633 1 1 -woolgatherer%1:18:00:: 09993901 1 0 -woolgathering%1:09:00:: 05769726 1 0 -woolgathering%5:00:00:inattentive:00 00165585 1 0 -woollcott%1:18:00:: 11396943 1 0 -woollen%1:06:00:: 04599235 1 0 -woollen%3:01:00:: 03130689 1 0 -woolley%1:18:00:: 11397094 1 0 -woolly%5:00:00:confused:00 00436115 2 1 -woolly%5:00:00:hairy:00 00216668 3 0 -woolly%5:00:00:soft:01 01154351 1 1 -woolly%5:00:02:hairy:00 00214640 4 0 -woolly-haired%5:00:00:hairy:00 00216668 1 0 -woolly-headed%5:00:00:confused:00 00436115 1 0 -woolly-stemmed%5:00:00:caulescent:00 00322161 1 0 -woolly_adelgid%1:05:00:: 02255391 1 0 -woolly_alder_aphid%1:05:00:: 02254246 1 0 -woolly_aphid%1:05:00:: 02253715 1 0 -woolly_apple_aphid%1:05:00:: 02253913 1 0 -woolly_bear%1:05:00:: 02310717 1 0 -woolly_bear_caterpillar%1:05:00:: 02310717 1 0 -woolly_bear_moth%1:05:00:: 02310941 1 0 -woolly_daisy%1:20:00:: 11924014 1 0 -woolly_indris%1:05:00:: 02500596 1 0 -woolly_mammoth%1:05:00:: 02505063 1 0 -woolly_manzanita%1:20:00:: 12232503 1 0 -woolly_monkey%1:05:00:: 02494383 1 0 -woolly_mullein%1:20:00:: 12889713 1 0 -woolly_plant_louse%1:05:00:: 02253715 1 0 -woolly_rhinoceros%1:05:00:: 02392555 1 0 -woolly_sunflower%1:20:00:: 11967744 1 0 -woolly_thistle%1:20:01:: 11954484 2 0 -woolly_thistle%1:20:02:: 11998888 1 0 -woolsorter%1:18:00:: 10790479 1 0 -woolsorter's_disease%1:26:00:: 14072934 1 0 -woolsorter's_pneumonia%1:26:00:: 14072934 1 0 -woolworth%1:18:00:: 11397271 1 0 -wooly%5:00:00:confused:00 00436115 2 0 -wooly%5:00:00:hairy:00 00216668 3 0 -wooly%5:00:00:soft:01 01154351 1 0 -wooly-haired%5:00:00:hairy:00 00216668 1 0 -wooly-minded%5:00:00:confused:00 00436115 1 0 -wooly_blue_curls%1:20:00:: 12871484 1 0 -wooly_lip_fern%1:20:00:: 13209270 1 0 -woosh%2:38:00:: 02069120 1 0 -woozy%5:00:00:ill:01 02544048 1 0 -wop%1:18:00:: 09716439 1 0 -worcester%1:15:00:: 08881017 3 0 -worcester%1:15:01:: 09097871 2 0 -worcester%1:18:00:: 11397488 1 0 -worcester_sauce%1:13:00:: 07840520 1 0 -worcestershire%1:13:00:: 07840520 1 0 -worcestershire_sauce%1:13:00:: 07840520 1 0 -word%1:10:00:: 06286395 1 117 -word%1:10:01:: 07227301 6 1 -word%1:10:02:: 06642138 3 5 -word%1:10:03:: 06738162 2 18 -word%1:10:04:: 07140659 5 3 -word%1:10:05:: 06674188 9 0 -word%1:10:06:: 07169242 4 3 -word%1:10:07:: 06431740 10 0 -word%1:18:00:: 09537144 8 0 -word%1:23:00:: 13627327 7 0 -word%2:32:00:: 00980453 1 2 -word-blind%3:01:00:: 03040264 1 0 -word-of-mouth%5:00:00:spoken:00 02284423 1 0 -word-painter%1:18:00:: 10790813 1 0 -word-painting%1:10:00:: 07201804 1 0 -word-perfect%5:00:00:correct:00 00632071 1 0 -word-splitting%1:09:00:: 05749210 1 0 -word-worship%1:04:00:: 01044983 1 0 -word_accent%1:10:00:: 07086088 1 0 -word_blindness%1:26:00:: 14099050 1 0 -word_class%1:10:00:: 06317464 1 3 -word_deafness%1:26:00:: 14097893 1 0 -word_division%1:04:00:: 00390735 1 0 -word_finder%1:10:00:: 06421154 1 0 -word_for_word%4:02:00:: 00257864 1 0 -word_form%1:10:00:: 06290637 1 0 -word_game%1:04:00:: 00501870 1 0 -word_meaning%1:10:00:: 06602801 1 0 -word_of_advice%1:10:00:: 06672297 1 1 -word_of_farewell%1:10:00:: 06629392 1 1 -word_of_god%1:10:00:: 06431740 2 1 -word_of_god%1:10:01:: 06455682 3 0 -word_of_god%1:11:00:: 07323821 1 2 -word_of_honor%1:10:00:: 07227301 1 0 -word_of_mouth%1:10:00:: 07223635 1 0 -word_order%1:10:00:: 06389947 1 0 -word_picture%1:10:00:: 07201804 1 0 -word_play%1:04:00:: 00513952 1 0 -word_processing%1:22:00:: 13574928 1 0 -word_processing_system%1:10:00:: 06572654 1 0 -word_processor%1:10:00:: 06572654 1 0 -word_salad%1:10:00:: 06609176 1 0 -word_sense%1:10:00:: 06602801 1 0 -word_square%1:10:00:: 06786209 1 0 -word_stress%1:10:00:: 07086088 1 0 -word_string%1:10:00:: 07013736 1 0 -word_structure%1:09:00:: 06177729 1 0 -wordbook%1:10:00:: 06418693 1 0 -wordfinder%1:10:00:: 06421154 1 0 -wordily%4:02:00:: 00492543 1 0 -wordiness%1:10:00:: 07090108 1 0 -wording%1:10:00:: 07081739 1 1 -wordless%5:00:00:inarticulate:00 00152285 1 0 -wordlessly%4:02:00:: 00112090 1 1 -wordmonger%1:18:00:: 10790671 1 0 -wordnet%1:10:00:: 06639204 2 0 -wordnet%1:10:01:: 06639428 1 0 -wordplay%1:10:00:: 06781581 1 0 -words%1:10:00:: 07010821 5 0 -words%1:10:01:: 07184149 4 0 -words%1:10:02:: 07051975 2 8 -words%1:10:03:: 07109730 1 55 -words%1:10:04:: 06283764 3 2 -words_per_minute%1:28:00:: 15285910 1 0 -wordsmith%1:18:00:: 10790918 1 0 -wordsworth%1:18:00:: 11397657 1 2 -wordsworthian%3:01:00:: 03038683 1 0 -wordy%5:00:01:prolix:00 00549236 1 0 -work%1:04:00:: 00575741 1 90 -work%1:04:01:: 00584367 3 27 -work%1:06:00:: 04599396 2 76 -work%1:06:01:: 04602044 6 3 -work%1:06:02:: 03841417 7 0 -work%1:09:00:: 05755883 4 11 -work%1:19:00:: 11453420 5 5 -work%2:29:00:: 00100551 6 9 -work%2:30:10:: 00150096 27 0 -work%2:30:13:: 00458471 26 0 -work%2:30:14:: 00458754 25 0 -work%2:31:13:: 00634906 24 0 -work%2:34:10:: 01162754 23 0 -work%2:35:00:: 01235355 22 0 -work%2:35:02:: 01525666 4 20 -work%2:35:14:: 01541231 21 0 -work%2:36:00:: 01668603 5 9 -work%2:36:01:: 01629589 11 3 -work%2:36:09:: 01741446 13 2 -work%2:36:12:: 01659248 20 0 -work%2:37:10:: 01817574 19 0 -work%2:38:00:: 02051031 7 5 -work%2:38:02:: 01852468 10 3 -work%2:39:10:: 02116980 18 0 -work%2:41:00:: 02410855 2 62 -work%2:41:01:: 02407987 12 2 -work%2:41:02:: 02413480 1 74 -work%2:41:03:: 02525447 3 32 -work%2:41:04:: 02594979 8 4 -work%2:41:05:: 02373015 9 3 -work%2:41:10:: 02536557 15 0 -work%2:41:11:: 02444159 16 0 -work%2:41:12:: 02436963 17 0 -work%2:42:10:: 02751271 14 0 -work-board%1:06:00:: 04600627 1 0 -work-clothes%1:06:00:: 04600912 1 0 -work-clothing%1:06:00:: 04600912 1 0 -work-in%1:04:00:: 01179004 1 0 -work-shirt%1:06:00:: 04602956 1 0 -work-shy%5:00:00:idle:00 00294579 1 0 -work-study_program%1:04:00:: 00891071 1 1 -work_animal%1:05:00:: 01316949 1 0 -work_at%2:41:01:: 02415039 1 6 -work_bench%1:06:00:: 04600486 1 0 -work_camp%1:06:00:: 04600764 1 1 -work_day%1:28:01:: 15136923 1 0 -work_flow%1:04:00:: 00250143 1 0 -work_force%1:14:00:: 08212347 1 1 -work_in%2:30:00:: 00183506 1 0 -work_in_progress%1:06:00:: 04601587 1 1 -work_load%1:04:00:: 00581241 1 0 -work_of_art%1:06:00:: 04601690 1 3 -work_off%2:40:00:: 02223858 1 0 -work_on%2:36:00:: 01668603 2 5 -work_on%2:41:00:: 02415039 1 21 -work_out%2:29:00:: 00099721 4 5 -work_out%2:29:01:: 00100551 8 0 -work_out%2:30:00:: 00251270 1 16 -work_out%2:30:01:: 00251463 3 6 -work_out%2:31:04:: 00634906 7 0 -work_out%2:31:06:: 00637259 6 0 -work_out%2:31:07:: 00638585 5 0 -work_out%2:42:00:: 02611106 2 8 -work_over%2:35:00:: 01397210 1 0 -work_papers%1:10:00:: 06531908 1 1 -work_party%1:14:00:: 08242799 1 0 -work_permit%1:10:00:: 06531908 1 0 -work_shift%1:28:00:: 15291801 1 0 -work_shoe%1:06:00:: 02904927 1 0 -work_song%1:10:00:: 07053993 1 0 -work_stoppage%1:04:00:: 01243674 1 0 -work_study%1:04:00:: 00645365 1 0 -work_surface%1:06:00:: 04603558 1 0 -work_table%1:06:00:: 04603729 1 1 -work_through%2:34:00:: 01161947 1 1 -work_time%1:28:00:: 15118228 1 0 -work_to_rule%1:04:00:: 01242539 1 0 -work_unit%1:23:00:: 13609507 1 0 -work_up%2:29:00:: 00096648 2 1 -work_up%2:30:00:: 00252990 1 4 -work_up%2:30:03:: 00251270 4 0 -work_up%2:30:06:: 00253277 3 0 -workable%5:00:00:possible:00 01822563 1 4 -workaday%5:00:00:ordinary:00 01674242 1 0 -workaholic%1:18:00:: 10791002 1 0 -workaholism%1:07:00:: 04626194 1 0 -workbag%1:06:00:: 04600312 1 0 -workbasket%1:06:00:: 04600312 1 0 -workbench%1:06:00:: 04600486 1 8 -workboard%1:06:00:: 04600627 1 1 -workbook%1:10:00:: 06415791 1 0 -workbox%1:06:00:: 04600312 1 0 -workday%1:28:00:: 15136723 2 0 -workday%1:28:01:: 15136923 1 0 -worked_up%5:00:00:agitated:00 00085630 1 0 -worker%1:05:01:: 02207449 3 4 -worker%1:18:00:: 09632518 1 29 -worker%1:18:01:: 10481711 2 4 -worker%1:18:02:: 09767197 4 0 -worker_bee%1:05:00:: 02207805 1 2 -workfellow%1:18:00:: 09936215 1 0 -workflow%1:04:00:: 00250143 1 0 -workforce%1:14:00:: 08212347 1 0 -workhorse%1:05:00:: 02386310 2 0 -workhorse%1:06:00:: 04601291 1 0 -workhouse%1:06:01:: 04601041 2 0 -workhouse%1:06:02:: 04601159 1 0 -working%1:06:00:: 04601473 1 0 -working%5:00:00:employed:00 00864461 1 7 -working%5:00:00:functioning:00 01091728 4 1 -working%5:00:00:impermanent:00 01758194 3 1 -working%5:00:00:practical:00 01836117 2 2 -working%5:00:02:operative:00 00833334 5 1 -working-class%5:00:00:blue-collar:00 02557145 2 0 -working-class%5:00:00:lower-class:00 00260100 1 1 -working_agreement%1:10:00:: 06771424 1 0 -working_capital%1:21:00:: 13354420 1 2 -working_class%1:14:00:: 08180639 1 0 -working_day%1:28:00:: 15136723 2 0 -working_day%1:28:01:: 15136923 1 0 -working_dog%1:05:00:: 02103406 1 0 -working_girl%1:18:00:: 10791115 1 1 -working_girl%1:18:01:: 10485440 2 0 -working_group%1:14:00:: 08408900 1 0 -working_man%1:18:00:: 10791221 1 0 -working_memory%1:09:00:: 05760751 1 0 -working_out%1:04:00:: 00250710 1 0 -working_papers%1:10:00:: 06531908 2 0 -working_papers%1:10:01:: 06675799 1 0 -working_party%1:14:00:: 08408900 1 0 -working_person%1:18:00:: 10791221 1 0 -working_principle%1:09:00:: 05848912 1 0 -working_rule%1:09:00:: 05848912 1 0 -workingman%1:18:00:: 10791221 1 0 -workings%1:06:01:: 04602840 1 1 -workings%1:06:02:: 04601473 2 0 -workload%1:04:00:: 00581241 1 0 -workman%1:18:00:: 10791221 1 3 -workmanlike%5:00:00:competent:00 00511037 1 1 -workmanship%1:09:00:: 05638063 1 0 -workmate%1:18:00:: 10791820 1 0 -workmen's_compensation%1:21:00:: 13283033 1 0 -workout%1:04:00:: 00624738 1 6 -workout_suit%1:06:00:: 04370774 1 0 -workpiece%1:06:00:: 04601938 1 0 -workplace%1:06:00:: 04602044 1 0 -workroom%1:06:00:: 04602762 1 0 -works%1:04:00:: 00577357 3 1 -works%1:06:00:: 04602840 4 0 -works%1:06:02:: 03956922 1 5 -works%1:26:00:: 14461679 2 1 -works_council%1:14:00:: 08311933 1 0 -works_program%1:09:00:: 05910810 1 1 -worksheet%1:10:00:: 06259736 1 1 -worksheet%1:10:01:: 06536737 2 0 -workshop%1:04:00:: 00892413 2 2 -workshop%1:06:00:: 04603081 1 6 -workspace%1:15:00:: 08684191 1 0 -workstation%1:06:00:: 04603399 1 0 -worktable%1:06:00:: 04603729 1 1 -workwear%1:06:00:: 04603872 1 0 -workweek%1:28:00:: 15135996 1 1 -world%1:05:00:: 02472987 8 0 -world%1:09:00:: 05809878 3 31 -world%1:09:01:: 05670972 7 5 -world%1:14:01:: 07965937 2 34 -world%1:14:02:: 08179689 5 16 -world%1:17:00:: 09270894 4 26 -world%1:17:01:: 09466280 1 49 -world%1:17:02:: 09480809 6 6 -world%5:00:00:international:00 01568684 1 1 -world-beater%1:18:00:: 10235024 1 0 -world-class%5:00:00:best:00 00228294 1 0 -world-shaking%5:00:00:significant:00 02162458 1 1 -world-shattering%5:00:00:significant:00 02162458 1 1 -world-weariness%1:12:00:: 07533735 1 0 -world-weary%5:00:00:tired:00 02432682 1 0 -world-wide%5:00:00:comprehensive:00 00527188 3 0 -world-wide%5:00:00:intercontinental:00 01567694 2 0 -world-wide%5:00:00:international:00 01568684 1 0 -world_affairs%1:04:00:: 01107549 1 1 -world_bank%1:14:00:: 08300783 1 0 -world_council%1:14:00:: 08322625 1 1 -world_council_of_churches%1:14:00:: 08480303 1 0 -world_court%1:14:00:: 08299307 1 1 -world_cup%1:11:00:: 07464568 1 0 -world_health_organization%1:14:00:: 08302724 1 0 -world_meteorological_organization%1:14:00:: 08302919 1 0 -world_organisation%1:14:00:: 08294696 1 0 -world_organization%1:14:00:: 08294696 1 1 -world_power%1:14:00:: 08177592 1 0 -world_premiere%1:10:00:: 06894371 1 1 -world_record%1:04:00:: 00063559 1 2 -world_series%1:11:00:: 07465781 1 5 -world_tamil_association%1:14:00:: 08032023 1 0 -world_tamil_movement%1:14:00:: 08032023 1 0 -world_trade_center%1:06:00:: 04604009 1 0 -world_trade_organization%1:14:00:: 08486971 1 0 -world_traveler%1:18:00:: 10132775 1 0 -world_view%1:09:00:: 06211389 1 0 -world_war%1:04:00:: 00996817 1 2 -world_war_1%1:04:00:: 01311520 1 0 -world_war_2%1:04:00:: 01312096 1 0 -world_war_i%1:04:00:: 01311520 1 2 -world_war_ii%1:04:00:: 01312096 1 2 -world_wide_web%1:06:00:: 04604276 1 0 -worldliness%1:07:00:: 04880273 1 0 -worldliness%1:07:01:: 04621524 2 0 -worldling%1:18:00:: 10791890 1 0 -worldling%1:18:01:: 10699262 2 0 -worldly%3:00:00:: 02577061 1 1 -worldly%5:00:00:sophisticated:00 02270782 2 0 -worldly-minded%5:00:00:worldly:00 02577907 1 0 -worldly-wise%5:00:00:sophisticated:00 02271437 1 0 -worldly_belongings%1:21:00:: 13244881 1 1 -worldly_concern%1:09:00:: 05670972 1 0 -worldly_good%1:06:00:: 04600131 1 0 -worldly_goods%1:21:00:: 13244881 1 0 -worldly_possession%1:06:00:: 04600131 1 0 -worldly_possessions%1:21:00:: 13244881 1 0 -worldwide%5:00:00:comprehensive:00 00527188 3 0 -worldwide%5:00:00:intercontinental:00 01567694 1 1 -worldwide%5:00:00:international:00 01568684 2 0 -worm%1:05:00:: 01922303 1 3 -worm%1:06:00:: 04604513 4 0 -worm%1:10:00:: 06586098 3 0 -worm%1:18:00:: 10792028 2 2 -worm%2:38:00:: 01868370 1 0 -worm-eaten%5:00:00:worn:00 02584203 1 0 -worm-shaped%5:00:00:formed:00 02151320 1 0 -worm_family%1:05:00:: 01921559 1 0 -worm_fence%1:06:00:: 04604644 1 0 -worm_fish%1:05:00:: 02620956 1 0 -worm_gear%1:06:00:: 04604806 1 0 -worm_genus%1:05:00:: 01921887 1 0 -worm_lizard%1:05:00:: 01683201 1 0 -worm_salamander%1:05:00:: 01637615 1 0 -worm_snake%1:05:01:: 01740551 1 0 -worm_snake%1:05:02:: 01728572 2 0 -worm_wheel%1:06:00:: 04605057 1 0 -wormcast%1:17:00:: 09480959 2 0 -wormcast%1:27:00:: 14855512 1 0 -wormhole%1:17:00:: 09481036 1 0 -wormian_bone%1:08:00:: 05610919 1 0 -wormlike%5:00:00:submissive:00 00789871 1 0 -wormseed%1:20:00:: 11828804 1 0 -wormseed_mustard%1:20:00:: 11888061 1 0 -wormwood%1:20:00:: 11928549 1 0 -wormwood_oil%1:27:00:: 14893881 1 0 -wormwood_sage%1:20:00:: 11930571 1 0 -wormy%5:00:00:submissive:00 00789871 2 0 -wormy%5:00:00:worn:00 02584203 1 0 -worn%3:00:00:: 02580449 1 2 -worn%5:00:00:tired:00 02433000 2 2 -worn-out%5:00:00:tired:00 02433451 2 0 -worn-out%5:00:00:worn:00 02582873 1 0 -worn_out%5:00:00:tired:00 02433451 1 0 -worn_spot%1:07:00:: 04683002 1 0 -worried%5:00:00:troubled:00 02457167 1 7 -worried%5:00:00:uneasy:00 00822907 2 0 -worriedly%4:02:00:: 00496962 1 1 -worrier%1:18:00:: 10792178 1 0 -worriment%1:07:00:: 04711435 1 1 -worrisome%3:00:04:: 00197447 1 0 -worrisome%5:00:00:heavy:02 01189386 2 0 -worry%1:09:00:: 05832264 1 8 -worry%1:12:00:: 07524242 2 6 -worry%2:35:00:: 01559473 5 0 -worry%2:35:01:: 01251109 6 0 -worry%2:37:00:: 01767163 1 32 -worry%2:37:01:: 01765908 3 9 -worry%2:37:12:: 01766748 2 9 -worry%2:42:00:: 02678438 4 0 -worrying%1:04:00:: 00425278 1 0 -worrying%1:04:01:: 00347853 2 0 -worrying%5:00:00:heavy:02 01189386 1 0 -worryingly%4:02:00:: 00496879 1 0 -worrywart%1:18:00:: 10792178 1 0 -worse%1:07:00:: 05144453 1 1 -worse%3:00:00:: 00231252 1 15 -worse%3:00:02:: 00232068 2 0 -worse%4:02:00:: 00017077 1 4 -worsen%2:30:00:: 00203866 1 1 -worsen%2:30:01:: 00208210 2 0 -worsened%3:00:00:: 00232068 1 0 -worsened%5:00:00:worse:00 00231591 2 0 -worsening%1:04:00:: 00266253 2 0 -worsening%1:22:00:: 13464204 1 0 -worsening%3:00:00:: 00233151 1 0 -worship%1:04:00:: 01028655 1 12 -worship%1:12:01:: 07501420 2 0 -worship%2:37:00:: 01778017 1 5 -worship%2:37:01:: 01778990 2 2 -worship%2:42:00:: 02613275 3 1 -worship_of_heavenly_bodies%1:04:00:: 01045807 1 0 -worship_of_man%1:04:00:: 01045202 1 0 -worshiper%1:18:00:: 09847727 2 0 -worshiper%1:18:01:: 10792335 1 0 -worshipful%5:00:00:pious:00 01781882 2 0 -worshipful%5:00:00:reverent:00 02012073 1 0 -worshipped%5:00:00:loved:00 01462124 1 0 -worshipper%1:18:00:: 09847727 1 1 -worshipper%1:18:01:: 10792335 2 0 -worst%1:04:00:: 00127672 3 0 -worst%1:07:00:: 04852534 2 0 -worst%1:11:00:: 07295955 1 2 -worst%2:33:00:: 01102997 1 0 -worst%3:00:00:: 00229630 1 9 -worst%4:02:00:: 00017241 1 0 -worsted%1:06:00:: 04605163 1 1 -worsted%1:06:01:: 04605321 2 0 -worsted_yarn%1:06:00:: 04605321 1 0 -wort%1:13:00:: 07889193 2 0 -wort%1:20:00:: 13085747 1 0 -worth%1:07:00:: 05138208 2 4 -worth%1:18:00:: 11397885 3 0 -worth%1:23:00:: 13764342 1 5 -worth%5:00:00:valuable:00 02502016 2 8 -worth%5:00:00:worthy:00 02586206 1 13 -worthful%5:00:00:worthy:00 02587738 1 0 -worthily%4:02:00:: 00497129 1 0 -worthiness%1:07:00:: 04806804 1 0 -worthless%3:00:00:: 02502163 1 1 -worthless%5:00:00:evil:00 01133017 2 0 -worthlessly%4:02:00:: 00497219 1 0 -worthlessness%1:07:00:: 05139561 1 1 -worthlessness%1:07:01:: 05150986 2 0 -worthwhile%5:00:00:worthy:00 02587936 1 3 -worthwhileness%1:07:00:: 05139436 1 0 -worthy%1:18:00:: 10792506 1 0 -worthy%3:00:00:: 02584981 1 13 -worthy%5:00:00:eligible:00 00852197 2 1 -worthy%5:00:00:fit:02 01021120 3 0 -wotan%1:18:00:: 09585889 1 0 -wouk%1:18:00:: 11398094 1 0 -would-be%5:00:00:ambitious:00 00104825 1 0 -wound%1:04:00:: 00403783 4 0 -wound%1:11:00:: 07340249 2 2 -wound%1:12:00:: 07497122 3 0 -wound%1:26:00:: 14298815 1 22 -wound%2:29:00:: 00069879 1 5 -wound%2:37:00:: 01793177 2 0 -wound%5:00:00:coiled:00 02318207 1 0 -wound_tumor_virus%1:05:00:: 01371928 1 1 -wound_up%5:00:00:tense:03 02405677 1 1 -wounded%1:14:00:: 07950786 1 1 -wounded%5:00:01:injured:00 01318741 1 19 -wounding%1:04:00:: 00403783 1 0 -wounding%5:00:00:harmful:00 01162901 1 0 -wove_paper%1:27:00:: 14934655 1 0 -woven%3:00:00:: 02579469 1 1 -wow%1:10:00:: 06778925 1 0 -wow%2:37:00:: 01770252 1 0 -wpm%1:28:00:: 15285910 1 0 -wrack%1:05:01:: 01397778 1 1 -wrack%1:05:02:: 01398064 3 0 -wrack%1:11:00:: 07335581 2 0 -wrack%2:35:00:: 01566185 1 1 -wraith%1:09:00:: 05898171 1 0 -wraithlike%5:00:00:insubstantial:00 00626483 1 2 -wrangell-st._elias_national_park%1:15:00:: 08610141 1 0 -wrangle%1:10:00:: 07150138 2 0 -wrangle%1:10:01:: 07184149 1 2 -wrangle%2:32:00:: 00774344 1 3 -wrangle%2:42:00:: 02652376 2 0 -wrangler%1:18:00:: 10186216 2 0 -wrangler%1:18:01:: 10792746 1 0 -wrangling%1:10:00:: 07150138 1 0 -wrap%1:06:00:: 04605446 1 1 -wrap%1:06:01:: 04605726 3 0 -wrap%1:13:00:: 07698782 2 0 -wrap%2:35:00:: 01283208 1 5 -wrap%2:35:01:: 01580467 3 1 -wrap%2:35:02:: 01522276 2 4 -wrap%2:35:03:: 01562478 4 0 -wrap_up%2:29:00:: 00048633 4 0 -wrap_up%2:30:00:: 00435688 3 0 -wrap_up%2:30:04:: 00484892 2 0 -wrap_up%2:35:00:: 01283208 1 1 -wraparound%1:06:00:: 04605572 1 0 -wrapped%3:00:00:: 02087594 3 0 -wrapped%5:00:00:attentive:00 00163948 2 1 -wrapped%5:00:00:covered:00 01695505 1 2 -wrapped_up%5:00:00:committed:00 00518405 1 1 -wrapper%1:06:00:: 04605446 3 0 -wrapper%1:06:01:: 03817647 1 1 -wrapper%1:06:02:: 04605726 2 0 -wrapping%1:06:00:: 04605726 1 0 -wrapping%1:06:02:: 04369025 2 0 -wrapping_paper%1:27:00:: 15105122 1 0 -wrasse%1:05:00:: 02607862 1 0 -wrath%1:04:00:: 00758972 2 0 -wrath%1:12:00:: 07516905 1 8 -wrathful%5:00:00:angry:00 00116245 1 2 -wrathfully%4:02:00:: 00497298 1 1 -wrawl%2:32:00:: 01047381 1 0 -wreak%2:36:00:: 01629589 1 1 -wreath%1:06:00:: 04606014 1 2 -wreathe%2:35:00:: 01516965 3 0 -wreathe%2:35:01:: 01517055 2 0 -wreathe%2:38:00:: 01868899 1 1 -wreck%1:06:00:: 04606251 4 0 -wreck%1:11:00:: 07301950 3 0 -wreck%1:11:01:: 07353075 2 0 -wreck%1:26:00:: 14423870 1 1 -wreck%2:35:00:: 01566185 1 10 -wreckage%1:06:00:: 04606358 1 1 -wrecked%5:00:01:destroyed:00 00737116 1 0 -wrecker%1:06:00:: 04461696 3 0 -wrecker%1:18:00:: 10544748 2 0 -wrecker%1:18:02:: 10792856 1 0 -wreckfish%1:05:00:: 02568447 1 0 -wrecking%1:04:00:: 00217773 2 0 -wrecking%1:11:00:: 07335097 1 0 -wrecking_bar%1:06:00:: 03138344 1 0 -wren%1:05:00:: 01584225 2 0 -wren%1:18:00:: 11398195 1 0 -wren-tit%1:05:00:: 01593282 1 0 -wren_warbler%1:05:00:: 01565930 1 0 -wrench%1:06:00:: 04606574 3 0 -wrench%1:11:00:: 07351909 2 0 -wrench%1:26:00:: 14299070 1 0 -wrench%2:29:00:: 00091124 4 0 -wrench%2:35:00:: 01349493 1 5 -wrench%2:35:01:: 01349130 3 0 -wrench%2:38:00:: 01868780 2 2 -wrenching%5:00:00:painful:00 01712529 1 1 -wrest%2:35:01:: 01213998 1 0 -wrester%1:18:00:: 10793019 1 0 -wrestle%1:04:00:: 00622266 1 0 -wrestle%2:32:00:: 00813495 2 1 -wrestle%2:33:01:: 01092981 1 2 -wrestle%2:35:00:: 01504699 4 0 -wrestle%2:38:00:: 01868370 3 0 -wrestler%1:18:00:: 10793168 1 1 -wrestling%1:04:00:: 00447540 2 1 -wrestling%1:04:01:: 00622266 1 1 -wrestling_hold%1:04:00:: 00812977 1 0 -wrestling_mat%1:06:00:: 04607035 1 0 -wrestling_match%1:11:00:: 07471246 1 0 -wrestling_ring%1:06:00:: 04607141 1 0 -wretch%1:18:00:: 10453265 2 1 -wretch%1:18:01:: 10793492 1 1 -wretched%5:00:00:evil:00 01133017 4 0 -wretched%5:00:00:inferior:02 02347086 1 2 -wretched%5:00:00:uncomfortable:00 00478872 2 2 -wretched%5:00:00:unfortunate:00 01050890 5 0 -wretched%5:00:00:unhappy:00 01150205 3 0 -wretchedly%4:02:00:: 00497432 1 0 -wretchedness%1:07:00:: 04731309 3 0 -wretchedness%1:26:00:: 14448333 1 1 -wretchedness%1:26:01:: 14447303 2 0 -wrick%1:26:00:: 14361182 1 0 -wrick%2:29:00:: 00091124 1 0 -wriggle%1:04:00:: 00349705 1 0 -wriggle%2:38:00:: 01868370 1 2 -wriggler%1:05:00:: 02200509 2 0 -wriggler%1:18:00:: 10781236 1 0 -wriggling%5:00:00:moving:02 01563713 1 0 -wriggly%5:00:00:moving:02 01563713 1 0 -wright%1:18:00:: 10793570 7 0 -wright%1:18:01:: 11398344 6 0 -wright%1:18:02:: 11398489 5 0 -wright%1:18:03:: 11398611 4 0 -wright%1:18:04:: 11398783 3 0 -wright%1:18:05:: 11398955 2 0 -wright%1:18:06:: 11399123 1 0 -wring%1:11:00:: 07351031 1 0 -wring%2:35:00:: 01349130 2 1 -wring%2:35:01:: 01350699 1 1 -wring%2:35:02:: 01350971 4 0 -wring%2:40:00:: 02241107 3 0 -wring_from%2:36:00:: 01630751 1 0 -wring_out%2:35:00:: 01349318 1 0 -wringer%1:06:00:: 04607242 1 0 -wrinkle%1:09:00:: 06251295 3 0 -wrinkle%1:09:01:: 06251424 2 0 -wrinkle%1:25:00:: 13905792 1 4 -wrinkle%2:30:10:: 00564857 4 0 -wrinkle%2:35:00:: 01278427 2 1 -wrinkle%2:35:01:: 01279305 1 2 -wrinkle%2:35:02:: 01277784 3 0 -wrinkle-resistant%3:01:00:: 03056871 1 0 -wrinkled%3:00:00:: 01360413 1 0 -wrinkled%3:00:02:: 01359861 2 0 -wrinkleless%3:00:00:: 01360692 1 0 -wrinkleproof%3:01:00:: 03056871 1 0 -wrinkly%3:00:00:: 01360413 1 0 -wrist%1:08:00:: 05584928 1 9 -wrist_band%1:06:00:: 04607532 1 0 -wrist_bone%1:08:00:: 05271814 1 0 -wrist_joint%1:08:00:: 05584928 1 0 -wrist_pad%1:06:00:: 04607640 1 0 -wrist_pin%1:06:00:: 04607759 1 0 -wrist_watch%1:06:00:: 04607869 1 1 -wristband%1:06:00:: 04607398 1 0 -wristband%1:06:01:: 04556204 2 0 -wristlet%1:06:00:: 04607532 1 0 -wristwatch%1:06:00:: 04607869 1 0 -writ%1:10:00:: 06552984 1 2 -writ_large%5:00:00:obvious:00 01619880 1 1 -writ_of_certiorari%1:10:00:: 06553631 1 0 -writ_of_detinue%1:10:00:: 06555695 1 0 -writ_of_election%1:10:00:: 06555847 1 0 -writ_of_error%1:10:00:: 06555971 1 0 -writ_of_execution%1:10:00:: 06553846 1 0 -writ_of_habeas_corpus%1:10:00:: 06554373 1 0 -writ_of_mandamus%1:10:00:: 06554675 1 0 -writ_of_prohibition%1:10:00:: 06556150 1 0 -writ_of_right%1:10:00:: 06556343 1 0 -write%2:32:00:: 00993014 2 94 -write%2:32:01:: 01031966 5 10 -write%2:32:03:: 00998886 8 4 -write%2:32:08:: 01007027 4 15 -write%2:36:00:: 01698271 1 112 -write%2:36:01:: 01691057 7 8 -write%2:36:02:: 01744611 3 33 -write%2:36:03:: 01699896 9 1 -write%2:36:04:: 01705494 6 9 -write%2:36:10:: 01692834 10 0 -write-down%1:21:00:: 13328853 1 0 -write-in%1:04:00:: 00209789 2 0 -write-in%1:18:00:: 10793799 1 0 -write-in_candidate%1:18:00:: 10793799 1 0 -write-off%1:04:00:: 00232604 2 0 -write-off%1:21:00:: 13328853 1 0 -write_about%2:36:00:: 01699172 1 4 -write_copy%2:36:00:: 01701152 1 0 -write_down%2:30:10:: 00315956 2 0 -write_down%2:32:01:: 01020356 1 4 -write_in%2:32:00:: 00993453 2 0 -write_in%2:41:00:: 02461807 1 0 -write_in_code%2:32:00:: 00994076 1 0 -write_of%2:36:00:: 01699172 1 4 -write_off%2:30:00:: 00315956 4 0 -write_off%2:31:00:: 00593363 1 2 -write_off%2:36:00:: 01700540 2 1 -write_off%2:41:00:: 02477655 3 0 -write_on%2:36:00:: 01699172 1 3 -write_out%2:32:00:: 01064799 2 0 -write_out%2:36:00:: 01754576 1 2 -write_up%1:10:00:: 06681551 1 0 -write_up%2:32:02:: 01068134 1 1 -write_up%2:36:00:: 01754576 2 0 -writer%1:18:00:: 10794014 1 36 -writer%1:18:01:: 10801291 2 5 -writer's_block%1:09:00:: 05645465 1 0 -writer's_cramp%1:26:00:: 14360915 1 0 -writer's_name%1:10:00:: 06338744 1 0 -writhe%2:38:00:: 01868370 1 7 -writhed%5:00:00:crooked:01 02312719 1 1 -writhen%5:00:00:crooked:01 02312719 1 0 -writhing%5:00:00:moving:02 01563713 1 2 -writing%1:04:01:: 00614224 5 2 -writing%1:04:02:: 00929718 1 8 -writing%1:10:00:: 06362953 2 6 -writing%1:10:01:: 06359877 4 2 -writing%1:10:02:: 06363778 3 4 -writing_arm%1:06:00:: 04607982 1 0 -writing_assignment%1:04:00:: 00796197 1 0 -writing_board%1:06:00:: 04608127 1 0 -writing_desk%1:06:00:: 04608329 2 0 -writing_desk%1:06:01:: 04608435 1 1 -writing_implement%1:06:00:: 04608567 1 0 -writing_ink%1:27:00:: 14918162 1 0 -writing_pad%1:27:00:: 14951110 1 0 -writing_paper%1:27:00:: 15105268 1 1 -writing_style%1:10:00:: 07092158 1 0 -writing_system%1:10:00:: 06351202 1 0 -writing_table%1:06:00:: 04164868 1 0 -writings%1:10:01:: 06453324 1 1 -written%3:00:00:: 02284578 1 9 -written%3:00:02:: 02286661 2 0 -written%3:00:04:: 02213270 3 0 -written_account%1:10:00:: 06502378 1 0 -written_agreement%1:10:00:: 06771653 1 0 -written_assignment%1:04:00:: 00796197 1 0 -written_communication%1:10:00:: 06349220 1 0 -written_document%1:10:00:: 06470073 1 0 -written_language%1:10:00:: 06349220 1 4 -written_material%1:10:00:: 06362953 1 0 -written_matter%1:10:00:: 06390512 1 0 -written_record%1:10:00:: 06502378 1 0 -written_report%1:10:00:: 07218470 1 0 -written_symbol%1:10:00:: 06817623 1 0 -written_text%1:10:00:: 06349597 1 0 -written_word%1:10:00:: 06360314 1 0 -wroclaw%1:15:00:: 08984332 1 0 -wrong%1:04:00:: 00744131 2 2 -wrong%1:07:01:: 04854604 1 3 -wrong%2:41:00:: 02513989 1 1 -wrong%3:00:01:: 02035337 2 12 -wrong%3:00:02:: 00632438 1 15 -wrong%3:00:04:: 00633778 5 0 -wrong%4:02:00:: 00204125 1 1 -wrong%5:00:00:inaccurate:00 00023854 9 0 -wrong%5:00:00:inappropriate:00 00136185 3 9 -wrong%5:00:00:inopportune:00 01662119 8 0 -wrong%5:00:00:inside:00 01694081 7 0 -wrong%5:00:00:malfunctioning:00 01092371 4 5 -wrong%5:00:02:improper:00 01881478 6 0 -wrong-side-out%5:00:00:turned:00 02468208 1 0 -wrong-site_surgery%1:04:00:: 00673109 1 0 -wrong_'un%1:04:00:: 00477097 1 0 -wrongdoer%1:18:00:: 09633969 1 0 -wrongdoing%1:04:00:: 00732746 2 0 -wrongdoing%1:07:00:: 04853765 1 1 -wrongful%5:00:00:illegitimate:00 01408421 1 0 -wrongful%5:00:00:unjust:00 01371009 3 0 -wrongful%5:00:00:unlawful:00 01396628 2 0 -wrongful_conduct%1:04:00:: 00732746 1 0 -wrongful_death%1:11:00:: 07333971 1 0 -wrongfully%4:02:00:: 00516492 1 0 -wrongfulness%1:07:01:: 04854604 1 0 -wrongheaded%5:00:00:wrong:04 00633937 1 0 -wrongheadedly%4:02:00:: 00199137 1 0 -wrongly%4:02:00:: 00204125 2 1 -wrongly%4:02:03:: 00204906 1 1 -wrongness%1:07:00:: 04851962 2 0 -wrongness%1:07:01:: 04802403 3 0 -wrongness%1:07:02:: 04901996 1 0 -wroth%5:00:00:angry:00 00116245 1 0 -wrothful%5:00:00:angry:00 00116245 1 0 -wrought%5:00:00:formed:00 02149787 1 0 -wrought_iron%1:27:00:: 14802262 1 1 -wry%5:00:00:crooked:01 02314371 2 0 -wry%5:00:00:humorous:00 01266092 1 1 -wry_face%1:10:00:: 06877742 1 0 -wryly%4:02:00:: 00224843 1 2 -wrymouth%1:05:00:: 02616397 1 0 -wryneck%1:05:00:: 01841679 2 0 -wryneck%1:26:00:: 14557719 1 0 -wsw%1:24:00:: 13834162 1 0 -wtc%1:06:00:: 04604009 1 0 -wto%1:14:00:: 08486971 1 0 -wtv%1:05:00:: 01371928 1 0 -wu%1:10:00:: 06930298 1 0 -wu_dialect%1:10:00:: 06930298 1 0 -wuerzburg%1:15:00:: 08775179 1 0 -wuhan%1:15:00:: 08729283 1 0 -wulfenite%1:27:00:: 15105733 1 0 -wulfila%1:18:00:: 11355669 1 0 -wurlitzer%1:18:00:: 11399274 1 0 -wurtzite%1:27:00:: 15105849 1 0 -wurzburg%1:15:00:: 08775179 1 0 -wuss%1:18:00:: 10771636 1 0 -wv%1:15:00:: 09155306 1 0 -www%1:06:00:: 04604276 1 0 -wy%1:15:00:: 09159003 1 0 -wyat%1:18:00:: 11399446 1 0 -wyatt%1:18:00:: 11399446 2 0 -wyatt%1:18:01:: 11399620 1 0 -wych_elm%1:20:00:: 12407079 1 0 -wych_hazel%1:06:00:: 04596224 2 0 -wych_hazel%1:20:00:: 12314808 1 0 -wych_hazel_plant%1:20:00:: 12314808 1 0 -wycherley%1:18:00:: 11399716 1 0 -wyclif%1:18:00:: 11399866 1 0 -wycliffe%1:18:00:: 11399866 1 0 -wye%1:10:00:: 06833776 1 0 -wyeth%1:18:00:: 11400126 1 0 -wyethia_amplexicaulis%1:20:00:: 12032429 1 0 -wyethia_helianthoides%1:20:00:: 12032686 1 0 -wykeham%1:18:00:: 11400230 1 0 -wykehamist%1:18:00:: 10801561 1 0 -wyler%1:18:00:: 11400490 1 0 -wylie%1:18:00:: 11400594 1 0 -wynette%1:18:00:: 11400704 1 0 -wynfrith%1:18:00:: 10856486 1 0 -wynnea%1:20:00:: 13034431 1 0 -wynnea_americana%1:20:00:: 13034555 1 0 -wynnea_sparassoides%1:20:00:: 13034788 1 0 -wyoming%1:15:00:: 09159003 1 3 -wyomingite%1:18:00:: 09746637 1 0 -wyrd%1:18:00:: 09586442 1 0 -wysiwyg%3:01:00:: 03145145 1 0 -wystan_hugh_auden%1:18:00:: 10828233 1 0 -wyszynski%1:18:00:: 11400837 1 0 -wytensin%1:06:00:: 03464266 1 0 -wyvern%1:18:00:: 09503486 1 0 -x%1:06:00:: 02678738 3 0 -x%1:10:00:: 06833663 2 0 -x%1:23:00:: 13746512 1 0 -x%5:00:00:cardinal:00 02187296 1 0 -x-axis%1:09:00:: 06009233 1 0 -x-linked%3:01:00:: 03145310 1 0 -x-linked_dominant_inheritance%1:07:00:: 04923299 1 0 -x-linked_gene%1:08:00:: 05441929 1 0 -x-linked_recessive_inheritance%1:07:00:: 04923496 1 0 -x-linked_scid%1:26:00:: 14129351 1 0 -x-or_circuit%1:06:00:: 04609354 1 0 -x-radiation%1:04:00:: 00901316 2 0 -x-radiation%1:19:00:: 11527177 1 0 -x-ray%1:06:00:: 04100620 2 0 -x-ray%1:19:00:: 11527177 1 0 -x-ray%2:32:00:: 01003885 2 0 -x-ray%2:39:00:: 02149786 1 0 -x-ray_diffraction%1:19:00:: 11527386 1 3 -x-ray_film%1:06:00:: 04609531 1 1 -x-ray_machine%1:06:00:: 04609651 1 1 -x-ray_photograph%1:06:00:: 04100620 1 0 -x-ray_photography%1:04:00:: 00904623 1 0 -x-ray_picture%1:06:00:: 04100620 1 0 -x-ray_therapy%1:04:00:: 00706133 1 0 -x-ray_tube%1:06:00:: 04609811 1 0 -x-raying%1:04:00:: 00901316 1 0 -x-scid%1:26:00:: 14129351 1 0 -x_chromosome%1:08:00:: 05442594 1 0 -x_ray%1:06:00:: 04100620 2 0 -x_ray%1:19:00:: 11527177 1 6 -xanax%1:06:00:: 02699343 1 0 -xanthate%1:27:00:: 15112828 1 0 -xanthelasma%1:26:00:: 14233155 1 0 -xanthemia%1:26:00:: 14566606 1 0 -xanthic_acid%1:27:00:: 15112932 1 0 -xanthine%1:27:00:: 15113050 1 0 -xanthium%1:20:00:: 12032939 1 0 -xanthoma%1:26:00:: 14233267 1 0 -xanthoma_disseminatum%1:26:00:: 14233545 1 0 -xanthoma_multiplex%1:26:00:: 14233717 1 0 -xanthomatosis%1:26:00:: 14233717 1 0 -xanthomonad%1:05:00:: 01361683 1 0 -xanthomonas%1:05:00:: 01361465 1 0 -xanthophyceae%1:05:00:: 01400772 1 0 -xanthophyl%1:27:00:: 14721635 1 0 -xanthophyll%1:27:00:: 14721635 1 0 -xanthopsia%1:26:00:: 14574192 1 0 -xanthorrhoeaceae%1:20:00:: 12465796 1 0 -xanthorroea%1:20:00:: 12466034 1 0 -xanthosis%1:26:00:: 14233974 1 0 -xanthosoma%1:20:00:: 11793252 1 0 -xanthosoma_atrovirens%1:20:00:: 11793403 1 0 -xanthosoma_sagittifolium%1:20:00:: 11793403 1 0 -xanthous%5:00:00:chromatic:00 00385756 1 0 -xantusiidae%1:05:00:: 01683428 1 0 -xavier%1:18:00:: 11401009 1 0 -xc%1:23:00:: 13750297 1 0 -xc%5:00:00:cardinal:00 02195145 1 0 -xci%5:00:00:cardinal:00 02195234 1 0 -xcii%5:00:00:cardinal:00 02195328 1 0 -xciii%5:00:00:cardinal:00 02195423 1 0 -xciv%5:00:00:cardinal:00 02195523 1 0 -xcl%5:00:00:cardinal:00 02198187 1 0 -xcv%5:00:00:cardinal:00 02195620 1 0 -xcvi%5:00:00:cardinal:00 02195716 1 0 -xcvii%5:00:00:cardinal:00 02195811 1 0 -xcviii%5:00:00:cardinal:00 02195911 1 0 -xe%1:27:00:: 14661274 1 0 -xenarthra%1:05:00:: 02453890 1 0 -xenicidae%1:05:00:: 01588172 1 0 -xenicus%1:05:00:: 01588589 1 0 -xenicus_gilviventris%1:05:00:: 01588725 1 0 -xenogeneic%3:00:00:: 02596059 1 0 -xenogenesis%1:19:00:: 11424194 1 0 -xenograft%1:08:00:: 05583624 1 0 -xenolith%1:17:00:: 09481120 1 0 -xenon%1:27:00:: 14661274 1 1 -xenophanes%1:18:00:: 11401194 1 0 -xenophobia%1:26:00:: 14386022 1 0 -xenophobic%5:00:00:afraid:00 00081513 1 0 -xenophon%1:18:00:: 11401282 1 0 -xenopodidae%1:05:00:: 01654245 1 0 -xenopus%1:05:00:: 01654429 1 0 -xenopus_laevis%1:05:00:: 01654637 1 0 -xenorhyncus%1:05:00:: 02004343 1 0 -xenorhyncus_asiaticus%1:05:00:: 02004492 1 0 -xenosauridae%1:05:00:: 01690703 1 0 -xenosaurus%1:05:00:: 01690857 1 0 -xenotime%1:27:00:: 15105955 1 0 -xenotransplant%1:04:00:: 01268271 1 0 -xenotransplantation%1:04:00:: 01268271 1 0 -xeranthemum%1:20:00:: 12033504 1 0 -xeranthemum_annuum%1:20:00:: 12033709 1 0 -xeric%3:00:00:: 02588762 1 0 -xerobates%1:05:00:: 01671312 1 0 -xeroderma%1:26:00:: 14537563 1 0 -xeroderma_pigmentosum%1:26:00:: 14537735 1 0 -xerodermia%1:26:00:: 14537563 1 0 -xerographic%3:01:00:: 03130858 1 0 -xerographic_copier%1:06:00:: 04608923 1 0 -xerographic_printer%1:06:00:: 04608809 1 0 -xerography%1:04:00:: 00904904 1 0 -xeroma%1:26:00:: 14538113 1 0 -xerophile%1:20:00:: 13121104 1 0 -xerophilous_plant%1:20:00:: 13121104 1 0 -xerophthalmia%1:26:00:: 14538113 1 0 -xerophthalmus%1:26:00:: 14538113 1 0 -xerophyllum%1:20:00:: 12465321 1 0 -xerophyllum_tenax%1:20:00:: 12465557 1 0 -xerophyte%1:20:00:: 13121104 1 0 -xerophytic%5:00:00:xeric:00 02588915 1 0 -xerophytic_plant%1:20:00:: 13121104 1 0 -xeroradiography%1:04:00:: 00905192 1 0 -xerostomia%1:26:00:: 14538329 1 0 -xerotes%1:26:00:: 14536438 1 0 -xerox%1:06:00:: 04608923 2 0 -xerox%1:06:01:: 04609235 1 0 -xerox%2:36:00:: 01736299 1 0 -xerox_copy%1:06:00:: 04609235 1 0 -xerox_machine%1:06:00:: 04608923 1 0 -xerxes_i%1:18:00:: 11401418 1 0 -xerxes_the_great%1:18:00:: 11401418 1 0 -xestobium_rufovillosum%1:05:00:: 02177775 1 0 -xhosa%1:10:00:: 06994700 3 0 -xhosa%1:14:00:: 08489285 2 0 -xhosa%1:18:00:: 09751496 1 0 -xi%1:10:00:: 06835525 2 0 -xi%1:23:00:: 13746672 1 0 -xi%5:00:00:cardinal:00 02187379 1 0 -xian%1:15:00:: 08729452 1 0 -xii%1:23:00:: 13746785 1 0 -xii%5:00:00:cardinal:00 02187465 1 0 -xiii%1:23:00:: 13747199 1 0 -xiii%5:00:00:cardinal:00 02187606 1 0 -ximenesia_encelioides%1:20:00:: 12031139 1 0 -xinjiang%1:15:00:: 08729626 1 0 -xinjiang_uighur_autonomous_region%1:15:00:: 08729626 1 0 -xiphias%1:05:00:: 02629581 1 0 -xiphias_gladius%1:05:00:: 02629716 1 0 -xiphiidae%1:05:00:: 02629435 1 0 -xiphium_iris%1:20:00:: 12415595 1 0 -xiphoid_process%1:08:00:: 05281691 1 0 -xiphosura%1:05:00:: 01787401 1 0 -xiphosurus_polyphemus%1:05:00:: 01787835 1 0 -xishuangbanna_dai%1:10:00:: 06935314 1 0 -xiv%1:23:00:: 13747348 1 0 -xiv%5:00:00:cardinal:00 02187699 1 0 -xix%1:23:00:: 13747989 1 0 -xix%5:00:00:cardinal:00 02188205 1 0 -xizang%1:15:00:: 08906952 1 0 -xl%1:23:00:: 13749527 1 0 -xl%5:00:00:cardinal:00 02190278 1 0 -xli%5:00:00:cardinal:00 02190377 1 0 -xlii%5:00:00:cardinal:00 02190469 1 0 -xliii%5:00:00:cardinal:00 02190562 1 0 -xliv%5:00:00:cardinal:00 02190660 1 0 -xlv%5:00:00:cardinal:00 02190755 1 0 -xlvi%5:00:00:cardinal:00 02190849 1 0 -xlvii%5:00:00:cardinal:00 02190942 1 0 -xlviii%5:00:00:cardinal:00 02191040 1 0 -xmas%1:28:00:: 15196186 1 0 -xor_circuit%1:06:00:: 04609354 1 0 -xor_gate%1:06:00:: 04609354 1 0 -xt%1:11:00:: 07431247 1 0 -xtc%1:06:00:: 02678738 1 0 -xv%1:23:00:: 13747469 1 0 -xv%5:00:00:cardinal:00 02187793 1 0 -xvi%1:23:00:: 13747606 1 0 -xvi%5:00:00:cardinal:00 02187903 1 0 -xvii%1:23:00:: 13747725 1 0 -xvii%5:00:00:cardinal:00 02187995 1 0 -xviii%1:23:00:: 13747865 1 0 -xviii%5:00:00:cardinal:00 02188108 1 0 -xx%1:08:00:: 05442789 2 0 -xx%1:23:00:: 13748128 1 0 -xx%5:00:00:cardinal:00 02188317 1 0 -xxi%1:23:00:: 13748246 1 0 -xxi%5:00:00:cardinal:00 02188431 1 0 -xxii%1:23:00:: 13748367 1 0 -xxii%5:00:00:cardinal:00 02188525 1 0 -xxiii%1:23:00:: 13748493 1 0 -xxiii%5:00:00:cardinal:00 02188620 1 0 -xxiv%1:23:00:: 13748622 1 0 -xxiv%5:00:00:cardinal:00 02188720 1 0 -xxix%1:23:00:: 13749278 1 0 -xxix%5:00:00:cardinal:00 02189209 1 0 -xxv%1:23:00:: 13748763 1 0 -xxv%5:00:00:cardinal:00 02188817 1 0 -xxvi%1:23:00:: 13748890 1 0 -xxvi%5:00:00:cardinal:00 02188913 1 0 -xxvii%1:23:00:: 13749017 1 0 -xxvii%5:00:00:cardinal:00 02189008 1 0 -xxviii%1:23:00:: 13749146 1 0 -xxviii%5:00:00:cardinal:00 02189108 1 0 -xxx%1:08:00:: 05442916 2 0 -xxx%1:23:00:: 13749407 1 0 -xxx%5:00:00:cardinal:00 02189306 1 0 -xxxi%5:00:00:cardinal:00 02189396 1 0 -xxxii%5:00:00:cardinal:00 02189491 1 0 -xxxiii%5:00:00:cardinal:00 02189587 1 0 -xxxiv%5:00:00:cardinal:00 02189688 1 0 -xxxv%5:00:00:cardinal:00 02189786 1 0 -xxxvi%5:00:00:cardinal:00 02189883 1 0 -xxxvii%5:00:00:cardinal:00 02189979 1 0 -xxxviii%5:00:00:cardinal:00 02190080 1 0 -xxy%1:08:00:: 05443050 1 0 -xxy-syndrome%1:26:00:: 14306475 1 0 -xy%1:08:00:: 05443211 1 0 -xylaria%1:20:00:: 12966581 1 0 -xylaria_mali%1:20:00:: 12966804 1 0 -xylaria_polymorpha%1:20:00:: 12966945 1 0 -xylariaceae%1:20:00:: 12966386 1 0 -xylem%1:20:00:: 13098648 1 4 -xylene%1:27:00:: 15106143 1 0 -xylocaine%1:06:00:: 03662016 1 0 -xylocopa%1:05:00:: 02209230 1 0 -xylol%1:27:00:: 15106143 1 0 -xylomelum%1:20:00:: 12223950 1 0 -xylomelum_pyriforme%1:20:00:: 12224140 1 0 -xylophone%1:06:00:: 03721384 1 1 -xylophonist%1:18:00:: 10801697 1 0 -xylopia%1:20:00:: 11696776 1 0 -xylopia_aethiopica%1:20:00:: 11696935 1 0 -xylose%1:27:00:: 15103780 1 0 -xylosma%1:20:00:: 12381095 1 0 -xylosma_congestum%1:20:00:: 12381095 1 0 -xyphophorus%1:05:00:: 01448165 1 0 -xyphophorus_helleri%1:05:00:: 01448291 1 0 -xyridaceae%1:20:00:: 12605315 1 0 -xyridales%1:20:00:: 12605019 1 0 -xyris%1:20:00:: 12605519 1 0 -xyris_operculata%1:20:00:: 12605872 1 0 -xyy%1:08:00:: 05443333 1 0 -y%1:10:00:: 06833776 2 0 -y%1:27:00:: 14661740 1 0 -y-axis%1:09:00:: 06009334 1 0 -y-linked_gene%1:08:00:: 05442022 1 0 -y-shaped%5:00:00:formed:00 02151616 1 0 -y2k%1:28:00:: 15249547 1 0 -y2k_compliant%5:00:00:obedient:00 01613309 1 0 -y_chromosome%1:08:00:: 05443484 1 0 -yacca%1:20:00:: 11652217 1 0 -yacca_podocarp%1:20:00:: 11652217 1 0 -yacht%1:06:00:: 04610013 1 1 -yacht%2:38:00:: 01945381 1 0 -yacht_chair%1:06:00:: 04610176 1 0 -yacht_club%1:14:00:: 08230785 1 0 -yacht_race%1:11:00:: 07459992 1 0 -yachting%1:04:00:: 00315390 1 0 -yachting_cap%1:06:00:: 03610682 1 0 -yachtsman%1:18:00:: 10802043 1 0 -yachtswoman%1:18:00:: 10802043 1 0 -yack%1:10:00:: 07136940 1 0 -yack%2:32:00:: 01037498 1 0 -yack_away%2:32:00:: 01037498 1 0 -yafo%1:15:00:: 08798195 1 0 -yagi%1:06:00:: 04610274 1 0 -yagi_aerial%1:06:00:: 04610274 1 0 -yahi%1:10:00:: 06923704 2 0 -yahi%1:18:00:: 09672455 1 0 -yahoo%1:10:00:: 06579127 3 0 -yahoo%1:18:00:: 10801893 2 0 -yahoo%1:18:01:: 10804102 1 0 -yahve%1:18:00:: 09538318 1 0 -yahveh%1:18:00:: 09538318 1 0 -yahwe%1:18:00:: 09538318 1 0 -yahweh%1:18:00:: 09538318 1 0 -yajur-veda%1:10:00:: 06465351 1 0 -yak%1:05:00:: 02405302 2 0 -yak%1:10:00:: 07136940 1 0 -yak%2:32:00:: 00741573 1 0 -yak's_milk%1:13:00:: 07845421 1 0 -yak_butter%1:13:00:: 07856186 1 0 -yakety-yak%1:10:00:: 07136940 1 0 -yakima%1:15:00:: 09155199 1 0 -yakut%1:10:00:: 06927645 2 0 -yakut%1:18:00:: 09737161 1 0 -yakuza%1:14:00:: 08230906 2 0 -yakuza%1:18:00:: 10801802 1 0 -yale%1:06:00:: 04610368 1 2 -yale%1:18:00:: 11401617 2 0 -yale_university%1:06:00:: 04610368 1 0 -yalta%1:15:00:: 09017301 1 0 -yalta_conference%1:14:00:: 08328327 1 0 -yaltopya%1:15:00:: 08778061 1 0 -yalu%1:17:00:: 09481285 1 0 -yalu_river%1:04:00:: 01299994 2 0 -yalu_river%1:17:00:: 09481285 1 0 -yam%1:13:00:: 07712267 3 0 -yam%1:13:02:: 07711907 4 0 -yam%1:20:00:: 12087961 2 0 -yam%1:20:02:: 12088223 1 0 -yam_bean%1:20:01:: 12555255 2 0 -yam_bean%1:20:02:: 12555553 1 0 -yam_family%1:20:00:: 12087650 1 0 -yam_plant%1:20:00:: 12087961 1 0 -yama%1:18:00:: 09530141 1 0 -yamaltu%1:10:00:: 06983795 1 0 -yamamoto%1:18:00:: 11401797 1 0 -yamani%1:18:00:: 11401947 1 0 -yammer%2:32:00:: 00907930 2 0 -yammer%2:32:01:: 01047381 1 0 -yamoussukro%1:15:00:: 08736956 1 0 -yana%1:10:00:: 06923792 2 0 -yana%1:18:00:: 09672590 1 0 -yanan%1:10:00:: 06923580 1 0 -yang%1:09:00:: 05915356 1 0 -yang_chen_ning%1:18:00:: 11402120 1 0 -yangon%1:15:00:: 08715777 1 0 -yangtze%1:17:00:: 09481523 1 0 -yangtze_kiang%1:17:00:: 09481523 1 0 -yangtze_river%1:17:00:: 09481523 1 0 -yank%1:18:00:: 09746819 2 0 -yank%1:18:02:: 10802283 1 7 -yank%2:35:00:: 01592072 1 5 -yankee%1:18:00:: 09746819 3 0 -yankee%1:18:01:: 10355942 2 0 -yankee%1:18:02:: 10802283 1 5 -yankee%5:00:00:northern:02 01606470 1 3 -yankee-doodle%1:18:00:: 09746819 1 0 -yankee_corn%1:20:00:: 12145148 1 0 -yanker%1:18:00:: 10802147 1 0 -yanquapin%1:20:00:: 11717577 1 0 -yaounde%1:15:00:: 08717510 1 0 -yap%1:08:00:: 05302307 1 0 -yap%2:32:00:: 01048171 1 1 -yap_away%2:32:00:: 01037498 1 0 -yard%1:06:00:: 04610503 9 0 -yard%1:06:01:: 04610676 8 0 -yard%1:06:02:: 04610879 2 12 -yard%1:06:03:: 04611154 7 0 -yard%1:15:00:: 08684294 3 1 -yard%1:15:01:: 08684676 6 0 -yard%1:23:00:: 13650447 1 34 -yard%1:23:01:: 13618076 5 0 -yard%1:23:02:: 13750844 4 0 -yard-long_bean%1:20:00:: 12579038 1 0 -yard_bird%1:18:00:: 10802507 1 0 -yard_bird%1:18:01:: 09962966 2 0 -yard_donkey%1:06:00:: 04611470 1 0 -yard_goods%1:06:00:: 04611654 1 0 -yard_grass%1:20:00:: 12118414 1 0 -yard_line%1:15:00:: 08654127 1 0 -yard_marker%1:06:00:: 04611795 1 0 -yard_measure%1:06:00:: 04611916 1 0 -yard_sale%1:04:00:: 01119250 1 0 -yardage%1:07:00:: 05130875 1 2 -yardarm%1:06:00:: 04611351 1 0 -yardbird%1:18:00:: 10802507 1 0 -yardbird%1:18:01:: 09962966 2 0 -yardbird_parker%1:18:00:: 11222914 1 0 -yarder%1:06:00:: 04611470 2 0 -yarder%1:23:00:: 13650735 1 0 -yardgrass%1:20:00:: 12118414 1 0 -yardie%1:18:00:: 10802621 1 0 -yardman%1:18:00:: 10802842 2 0 -yardman%1:18:01:: 10802953 1 0 -yardmaster%1:18:00:: 10803031 1 0 -yardstick%1:06:00:: 04611916 2 0 -yardstick%1:10:00:: 07261955 1 1 -yarmelke%1:06:00:: 04612026 1 0 -yarmulka%1:06:00:: 04612026 1 0 -yarmulke%1:06:00:: 04612026 1 0 -yarn%1:06:00:: 04426788 2 0 -yarn%1:10:00:: 07220773 1 0 -yarn%2:32:00:: 00954038 1 0 -yarn-dye%2:30:00:: 00283805 1 0 -yarn-spinning%5:00:00:communicative:00 00500434 1 0 -yarrow%1:20:00:: 11916696 1 0 -yashmac%1:06:00:: 04612159 1 0 -yashmak%1:06:00:: 04612159 1 0 -yasser_arafat%1:18:00:: 10821218 1 0 -yastrzemski%1:18:00:: 11402341 1 0 -yataghan%1:06:00:: 04612257 1 0 -yatobyo%1:26:00:: 14276360 1 0 -yaup%2:32:00:: 01046932 1 0 -yaupon_holly%1:20:00:: 12758099 1 0 -yautia%1:20:00:: 11793403 1 0 -yavapai%1:10:00:: 06923398 2 0 -yavapai%1:18:00:: 09672725 1 0 -yaw%1:11:00:: 07411350 1 0 -yaw%2:38:00:: 02066028 2 0 -yaw%2:38:01:: 02034004 3 0 -yaw%2:42:00:: 02718750 1 0 -yawl%1:06:00:: 04612373 2 0 -yawl%1:06:01:: 04612504 1 0 -yawl%2:32:00:: 01046932 1 0 -yawn%1:04:00:: 00837293 1 1 -yawn%2:29:00:: 00007328 1 3 -yawn%2:42:00:: 02718750 2 0 -yawner%1:18:00:: 10803193 1 0 -yawning%1:04:00:: 00837293 1 0 -yawning%5:00:00:inattentive:00 00165766 3 0 -yawning%5:00:00:open:02 01653379 1 1 -yawning%5:00:01:open:08 01655025 2 0 -yawp%2:32:00:: 00907930 2 0 -yawp%2:32:01:: 01046480 1 0 -yaws%1:26:00:: 14144761 1 1 -yay%1:10:00:: 06936461 1 0 -yazoo%1:17:00:: 09481754 1 0 -yazoo_river%1:17:00:: 09481754 1 0 -yb%1:23:00:: 13632164 4 0 -yb%1:23:01:: 13632320 3 0 -yb%1:23:02:: 13632461 2 0 -yb%1:27:00:: 14661482 1 0 -ybit%1:23:00:: 13632461 1 0 -yea%1:10:00:: 07204008 1 0 -yea%4:02:00:: 00497560 1 0 -yeah%4:02:00:: 00497560 1 0 -year%1:14:00:: 08238660 4 1 -year%1:28:00:: 15201505 3 5 -year%1:28:01:: 15203791 1 426 -year%1:28:02:: 15204297 2 18 -year-around%3:00:00:: 01494429 1 0 -year-end%1:28:00:: 15201994 1 1 -year-end%5:00:00:closing:00 01010747 1 0 -year-round%3:00:00:: 01494429 1 1 -year_dot%1:28:00:: 15244351 1 0 -year_of_grace%1:28:00:: 15249458 1 0 -yearbook%1:10:00:: 06426468 2 0 -yearbook%1:10:01:: 07282497 1 0 -yearling%1:05:01:: 01888181 3 0 -yearling%1:05:02:: 02385214 2 0 -yearling%1:18:00:: 10714465 1 0 -yearlong%5:00:00:long:02 01442079 1 0 -yearly%1:10:00:: 06426468 1 0 -yearly%4:02:00:: 00081737 1 0 -yearly%5:00:00:periodic:00 01969150 1 0 -yearn%2:37:00:: 01828405 1 4 -yearn%2:37:01:: 01805684 2 0 -yearn%2:37:10:: 01777605 3 0 -yearned-for%5:00:00:wanted:00 02527489 1 0 -yearner%1:18:00:: 10270878 1 0 -yearning%1:12:00:: 07486628 1 5 -yearningly%4:02:00:: 00389421 1 1 -years%1:28:00:: 15153787 1 19 -years%1:28:01:: 15242955 2 6 -years%1:28:02:: 15141059 3 0 -yeast%1:20:00:: 13025647 2 0 -yeast%1:27:00:: 15106271 1 0 -yeast_cake%1:13:00:: 07640560 1 0 -yeastlike%3:01:00:: 03145467 1 0 -yeasty%3:01:00:: 03145467 1 0 -yeasty%5:00:00:creative:00 00644299 3 0 -yeasty%5:00:00:spirited:00 02281182 2 0 -yeats%1:18:00:: 11402463 1 0 -yeatsian%3:01:00:: 03038894 1 0 -yeddo%1:15:00:: 08923348 1 0 -yedo%1:15:00:: 08923348 1 0 -yehudi_menuhin%1:18:00:: 11175040 1 0 -yekaterinoslav%1:15:00:: 09016698 1 0 -yell%1:10:00:: 07120524 1 7 -yell%1:10:01:: 07121157 2 4 -yell%2:32:00:: 00912833 2 6 -yell%2:32:01:: 00913065 1 18 -yelled%5:00:00:loud:00 01454244 1 1 -yeller%1:18:00:: 10533983 1 0 -yelling%1:10:00:: 07123552 1 1 -yellow%1:07:00:: 04965661 1 8 -yellow%2:30:00:: 00289840 1 2 -yellow%5:00:00:chromatic:00 00385756 1 26 -yellow%5:00:00:cowardly:00 00265314 2 2 -yellow%5:00:00:dishonorable:00 01228370 5 0 -yellow%5:00:00:old:01 01640729 3 1 -yellow%5:00:00:sensational:00 02101942 4 0 -yellow%5:00:00:unhealthy:00 01177556 6 0 -yellow-banded%5:00:00:patterned:00 01791591 1 0 -yellow-beige%5:00:00:chromatic:00 00385990 1 0 -yellow-bellied%5:00:00:cowardly:00 00265314 1 0 -yellow-bellied_sapsucker%1:05:00:: 01841288 1 0 -yellow-bellied_terrapin%1:05:00:: 01668665 1 0 -yellow-blindness%1:26:00:: 14154832 1 0 -yellow-blue_color_blindness%1:26:00:: 14154669 1 0 -yellow-blue_dichromacy%1:26:00:: 14154669 1 0 -yellow-breasted_bunting%1:05:00:: 01538362 1 0 -yellow-breasted_chat%1:05:00:: 01569971 1 0 -yellow-brown%5:00:00:chromatic:00 00369504 1 1 -yellow-crowned_night_heron%1:05:00:: 02011016 1 0 -yellow-dog_contract%1:10:00:: 06527170 1 0 -yellow-eyed_grass%1:20:00:: 12605683 1 0 -yellow-eyed_grass_family%1:20:00:: 12605315 1 0 -yellow-fever_mosquito%1:05:00:: 02200850 1 0 -yellow-gray%5:00:00:achromatic:00 00392574 1 0 -yellow-green%5:00:00:chromatic:00 00386095 1 2 -yellow-green_algae%1:05:00:: 01400391 1 0 -yellow-grey%5:00:00:achromatic:00 00392574 1 0 -yellow-leaf_sickle_pine%1:20:00:: 11655152 1 0 -yellow-marked%5:00:00:patterned:00 01791670 1 0 -yellow-orange%5:00:00:chromatic:00 00386196 1 0 -yellow-shafted_flicker%1:05:00:: 01839750 1 0 -yellow-spotted%5:00:00:patterned:00 01791749 1 0 -yellow-striped%5:00:00:patterned:00 01791829 1 0 -yellow-throated_marten%1:05:00:: 02451125 1 0 -yellow-tinged%5:00:00:chromatic:00 00386303 1 0 -yellow-tipped%5:00:00:tipped:00 02431529 1 0 -yellow-white%5:00:00:achromatic:00 00392706 1 0 -yellow_adder's_tongue%1:20:00:: 12450840 1 0 -yellow_ageratum%1:20:00:: 11992806 1 0 -yellow_asphodel%1:20:00:: 12442697 1 0 -yellow_avens%1:20:01:: 12631637 2 0 -yellow_avens%1:20:02:: 12631932 1 0 -yellow_bachelor's_button%1:20:00:: 12705458 1 0 -yellow_bass%1:05:00:: 02566665 1 0 -yellow_bean%1:13:00:: 07728708 1 0 -yellow_bedstraw%1:20:00:: 12665857 1 0 -yellow_bells%1:20:00:: 12835331 1 0 -yellow_berry%1:20:00:: 13141415 1 0 -yellow_bile%1:08:00:: 05406958 1 0 -yellow_birch%1:20:00:: 12281788 1 0 -yellow_bone_marrow%1:08:00:: 05286008 1 0 -yellow_bristle_grass%1:20:00:: 12134836 1 0 -yellow_bristlegrass%1:20:00:: 12134836 1 0 -yellow_bugle%1:20:00:: 12841472 1 0 -yellow_bunting%1:05:00:: 01538200 1 0 -yellow_cattley_guava%1:20:00:: 12333771 1 0 -yellow_cedar%1:20:00:: 11635830 1 0 -yellow_chamomile%1:20:00:: 11923397 1 0 -yellow_chestnut_oak%1:20:00:: 12275675 1 0 -yellow_cleavers%1:20:00:: 12665857 1 0 -yellow_clintonia%1:20:00:: 12472559 1 0 -yellow_colicroot%1:20:00:: 12430675 1 0 -yellow_cypress%1:20:00:: 11635830 1 0 -yellow_delicious%1:13:00:: 07740342 1 0 -yellow_dock%1:20:00:: 12604639 1 0 -yellow_dwarf%1:26:00:: 14284688 1 0 -yellow_dwarf_of_potato%1:26:00:: 14284876 1 0 -yellow_fever%1:26:00:: 14144960 1 0 -yellow_flag%1:20:00:: 12414602 1 0 -yellow_foxglove%1:20:01:: 12883265 1 0 -yellow_foxtail%1:20:00:: 12134836 1 0 -yellow_giant_hyssop%1:20:00:: 12840168 1 0 -yellow_globe_lily%1:20:00:: 12447121 1 0 -yellow_goatfish%1:05:00:: 02600798 1 0 -yellow_granadilla%1:13:00:: 07754279 2 0 -yellow_granadilla%1:20:00:: 12384375 1 0 -yellow_green%1:07:00:: 04968257 1 0 -yellow_gurnard%1:05:00:: 02650413 1 0 -yellow_hawkweed%1:20:00:: 11982342 1 0 -yellow_henbane%1:20:00:: 12911914 1 0 -yellow_honeysuckle%1:20:01:: 12675100 2 0 -yellow_honeysuckle%1:20:02:: 12675299 1 0 -yellow_horned_poppy%1:20:00:: 11905749 1 0 -yellow_hornet%1:05:00:: 02213788 1 0 -yellow_iris%1:20:00:: 12414602 1 0 -yellow_ironweed%1:20:00:: 12030908 1 0 -yellow_jacaranda%1:20:00:: 12573911 1 0 -yellow_jack%1:05:00:: 02577041 3 0 -yellow_jack%1:06:00:: 04612623 2 0 -yellow_jack%1:26:00:: 14144960 1 0 -yellow_jacket%1:05:00:: 02213788 2 0 -yellow_jacket%1:06:00:: 03913129 1 0 -yellow_jasmine%1:20:00:: 12485981 1 0 -yellow_jessamine%1:20:00:: 12485981 1 0 -yellow_journalism%1:10:00:: 06267991 1 0 -yellow_lady's_slipper%1:20:00:: 12057211 1 0 -yellow_lady-slipper%1:20:00:: 12057211 1 0 -yellow_light%1:10:00:: 06874837 1 0 -yellow_locust%1:20:00:: 12568186 1 0 -yellow_loosestrife%1:20:00:: 12095781 1 0 -yellow_lupine%1:20:00:: 12546832 1 0 -yellow_man%1:18:00:: 09643545 1 0 -yellow_mariposa_tulip%1:20:00:: 12448136 1 0 -yellow_marrow%1:08:00:: 05286008 1 0 -yellow_metal%1:27:00:: 14720238 1 0 -yellow_milkwort%1:20:00:: 12705458 1 0 -yellow_mombin%1:13:00:: 07765612 2 0 -yellow_mombin%1:20:00:: 12765846 1 0 -yellow_mombin_tree%1:20:00:: 12765846 1 0 -yellow_mountain_saxifrage%1:20:00:: 12793284 1 0 -yellow_nutgrass%1:20:00:: 12150969 1 0 -yellow_oak%1:20:00:: 12279458 1 0 -yellow_ocher%1:27:00:: 14844281 1 0 -yellow_ochre%1:27:00:: 14844281 1 1 -yellow_oleander%1:20:00:: 11777080 1 0 -yellow_pages%1:10:00:: 07251373 1 0 -yellow_paper_daisy%1:20:00:: 11980318 1 0 -yellow_parilla%1:20:00:: 11713370 1 0 -yellow_pea%1:20:00:: 12573474 1 0 -yellow_perch%1:05:00:: 02557182 1 0 -yellow_peril%1:26:00:: 14543411 1 0 -yellow_pimpernel%1:20:00:: 12095412 1 0 -yellow_pine%1:20:00:: 11614250 1 1 -yellow_pine%1:20:02:: 11609362 2 0 -yellow_pitcher_plant%1:20:00:: 12780563 1 0 -yellow_pond_lily%1:20:00:: 11716422 1 0 -yellow_poplar%1:20:00:: 11712282 2 0 -yellow_poplar%1:20:02:: 11712621 1 0 -yellow_prussiate_of_potash%1:27:00:: 14995061 1 0 -yellow_race%1:18:00:: 09643421 1 0 -yellow_river%1:17:00:: 09306257 1 0 -yellow_rocket%1:20:00:: 11874081 1 0 -yellow_root%1:20:00:: 11735570 1 0 -yellow_salsify%1:20:00:: 12026981 1 0 -yellow_sand_verbena%1:20:00:: 11837351 1 0 -yellow_sea%1:17:00:: 09481958 1 0 -yellow_spiny_daisy%1:20:00:: 11976511 1 0 -yellow_spot%1:08:00:: 05455690 2 0 -yellow_spot%1:26:00:: 14285113 1 0 -yellow_spot_fungus%1:20:00:: 13080866 1 0 -yellow_spruce%1:20:00:: 11626826 1 0 -yellow_squash%1:13:00:: 07716034 2 0 -yellow_squash%1:20:00:: 12159388 1 0 -yellow_star-thistle%1:20:00:: 11949015 1 0 -yellow_sweet_clover%1:20:00:: 11751347 1 0 -yellow_trefoil%1:20:00:: 12549192 1 0 -yellow_trumpet%1:20:00:: 12780563 1 0 -yellow_turnip%1:13:00:: 07736087 1 0 -yellow_twining_snapdragon%1:20:00:: 12877637 1 0 -yellow_vetchling%1:20:00:: 12541157 1 0 -yellow_warbler%1:05:00:: 01568892 1 0 -yellow_water_flag%1:20:00:: 12414602 1 0 -yellow_water_lily%1:20:00:: 11716877 1 0 -yellow_watercress%1:20:00:: 11895472 1 0 -yellow_woman%1:18:00:: 09643670 1 0 -yellowbelly_marmot%1:05:00:: 02361850 1 0 -yellowbird%1:05:01:: 01532325 2 0 -yellowbird%1:05:02:: 01568892 1 0 -yellowcake%1:27:00:: 15106529 1 0 -yellowed%5:00:00:old:01 01640729 1 0 -yellowfin%1:05:00:: 02627532 1 0 -yellowfin_croaker%1:05:00:: 02597004 1 0 -yellowfin_mojarra%1:05:00:: 02637179 1 0 -yellowfin_tuna%1:05:00:: 02627532 1 0 -yellowhammer%1:05:01:: 01538200 2 0 -yellowhammer%1:05:02:: 01839750 1 0 -yellowish%5:00:00:chromatic:00 00385756 1 0 -yellowish-beige%5:00:00:chromatic:00 00385990 1 0 -yellowish-gray%5:00:00:achromatic:00 00392574 1 0 -yellowish-grey%5:00:00:achromatic:00 00392574 1 0 -yellowish-orange%5:00:00:chromatic:00 00386196 1 0 -yellowish-white%5:00:00:achromatic:00 00392706 1 0 -yellowish_brown%1:07:00:: 04973957 1 1 -yellowish_green%1:07:00:: 04968257 1 0 -yellowish_pink%1:07:00:: 04971675 1 0 -yellowknife%1:15:00:: 08826150 1 0 -yellowlegs%1:05:00:: 02028175 1 0 -yellowness%1:07:00:: 04965661 1 0 -yellowstone%1:17:00:: 09482131 1 0 -yellowstone_national_park%1:15:00:: 08610305 1 0 -yellowstone_river%1:17:00:: 09482131 1 0 -yellowtail%1:05:02:: 02587877 1 0 -yellowtail%1:05:03:: 02578928 2 0 -yellowtail_flounder%1:05:00:: 02659176 2 0 -yellowtail_flounder%1:13:00:: 07790800 1 0 -yellowtail_snapper%1:05:00:: 02587877 1 0 -yellowthroat%1:05:00:: 01570676 1 0 -yellowwood%1:20:00:: 11650558 2 0 -yellowwood%1:20:02:: 11651133 1 0 -yellowwood_tree%1:20:00:: 11650558 1 0 -yelp%1:11:00:: 07400552 1 1 -yelp%2:32:00:: 01048171 1 3 -yelping%1:11:00:: 07400552 1 1 -yemen%1:15:00:: 09164561 1 0 -yemeni%1:18:00:: 09750770 1 0 -yemeni%3:01:00:: 03130962 1 0 -yemeni_fils%1:23:00:: 13697621 1 0 -yemeni_monetary_unit%1:23:00:: 13697380 1 0 -yemeni_rial%1:23:00:: 13697505 1 0 -yen%1:12:00:: 07486922 1 1 -yen%1:23:00:: 13709700 2 0 -yen%2:37:00:: 01805684 1 0 -yenisei%1:10:00:: 06959932 2 0 -yenisei%1:17:00:: 09482330 1 0 -yenisei-samoyed%1:10:00:: 06959932 1 0 -yenisei_river%1:17:00:: 09482330 1 0 -yeniseian%1:10:00:: 06959932 2 0 -yeniseian%1:18:00:: 09708247 1 0 -yenisey%1:17:00:: 09482330 1 0 -yenisey_river%1:17:00:: 09482330 1 0 -yenta%1:18:00:: 10803282 2 0 -yenta%1:18:01:: 10803463 1 0 -yeoman%1:18:00:: 10803586 2 0 -yeoman%1:18:01:: 10803691 1 0 -yeoman_of_the_guard%1:18:00:: 10803691 1 0 -yeomanry%1:14:00:: 08246502 1 0 -yeomanry%1:14:02:: 08215989 2 0 -yerba_buena%1:20:00:: 12857204 1 0 -yerba_mansa%1:20:00:: 13152339 1 0 -yerba_santa%1:20:00:: 12835766 1 0 -yerevan%1:15:00:: 09018030 1 0 -yerkes%1:18:00:: 11402626 1 0 -yersin%1:18:00:: 11402801 1 0 -yersinia_pestis%1:05:00:: 01350701 1 0 -yerupaja%1:17:00:: 09482566 1 0 -yerwa-maiduguri%1:15:00:: 08974818 1 0 -yes%1:10:00:: 07203900 1 15 -yes-man%1:18:00:: 10098092 1 0 -yes-no_question%1:10:00:: 07195969 1 0 -yeshiva%1:14:00:: 08278032 1 0 -yeshivah%1:14:00:: 08278032 1 0 -yesterday%1:28:00:: 15263138 2 0 -yesterday%1:28:01:: 15156187 1 16 -yesterday%4:02:00:: 00507716 1 10 -yesterday%4:02:01:: 00507819 2 0 -yesteryear%1:28:00:: 15120823 1 1 -yet%4:02:00:: 00047641 4 0 -yet%4:02:02:: 00027795 1 22 -yet%4:02:03:: 00017639 3 6 -yet%4:02:04:: 00027918 2 15 -yet%4:02:05:: 00028198 5 0 -yet%4:02:06:: 00027384 6 0 -yeti%1:18:00:: 09487252 1 0 -yevgeni_aleksandrovich_yevtushenko%1:18:00:: 11403015 1 0 -yevgeni_yevtushenko%1:18:00:: 11403015 1 0 -yevtushenko%1:18:00:: 11403015 1 0 -yew%1:20:00:: 11661372 2 0 -yew%1:20:02:: 11661707 1 0 -yew_family%1:20:00:: 11660979 1 0 -yezo%1:15:00:: 08920722 1 0 -ygdrasil%1:18:00:: 09584725 1 0 -yggdrasil%1:18:00:: 09584725 1 0 -yhvh%1:18:00:: 09538318 1 0 -yhwh%1:18:00:: 09538318 1 0 -yi%1:10:00:: 06932948 1 0 -yib%1:23:00:: 13632164 1 0 -yibit%1:23:00:: 13632606 1 0 -yid%1:18:00:: 09682122 1 0 -yiddish%1:10:00:: 06951067 1 0 -yield%1:04:00:: 00914632 1 4 -yield%1:06:00:: 04612722 3 1 -yield%1:21:00:: 13260190 2 1 -yield%1:23:00:: 13758745 4 0 -yield%2:30:00:: 00435103 2 5 -yield%2:32:00:: 00804476 13 0 -yield%2:32:01:: 00806049 8 1 -yield%2:33:00:: 01116447 12 0 -yield%2:35:00:: 01449796 11 0 -yield%2:36:00:: 01629000 3 4 -yield%2:36:01:: 01629403 7 1 -yield%2:38:00:: 01848465 6 1 -yield%2:40:00:: 02291708 10 0 -yield%2:40:01:: 02316649 4 3 -yield%2:40:02:: 02339171 1 6 -yield%2:42:00:: 02703289 5 2 -yield%2:42:05:: 02620466 9 0 -yield_up%2:40:00:: 02235549 1 1 -yielder%1:18:00:: 10679998 1 0 -yielding%1:10:00:: 07176243 2 0 -yielding%1:10:01:: 07255027 1 0 -yielding%5:00:00:compromising:00 01026552 3 0 -yielding%5:00:00:docile:00 02329220 1 3 -yielding%5:00:00:soft:01 01154500 2 0 -yieldingly%4:02:00:: 00317020 1 0 -yin%1:09:00:: 05915584 1 0 -yip%1:11:00:: 07400552 1 0 -yip%2:32:00:: 01048171 1 0 -yips%1:26:00:: 14376497 1 0 -yisrael%1:15:00:: 08792548 1 0 -ylang-ylang%1:20:00:: 11695974 1 0 -ylem%1:27:00:: 14582025 1 0 -ymir%1:18:00:: 09584933 1 0 -yo-yo%1:06:00:: 04613555 1 0 -yob%1:18:00:: 09879297 1 0 -yobbo%1:18:00:: 09879297 1 0 -yobibit%1:23:00:: 13632606 1 0 -yobibyte%1:23:00:: 13632164 1 0 -yobo%1:18:00:: 09879297 1 0 -yodel%1:10:00:: 07123710 1 0 -yodel%2:32:00:: 01050651 1 0 -yodeling%1:04:00:: 01256124 1 0 -yodeller%1:18:00:: 10803838 1 0 -yodh%1:10:00:: 06837679 1 0 -yoga%1:04:00:: 00630960 2 0 -yoga%1:09:00:: 06239361 1 1 -yogacara%1:09:00:: 06242780 1 0 -yoghourt%1:13:00:: 07849336 1 0 -yoghurt%1:13:00:: 07849336 1 0 -yogi%1:18:00:: 10803978 2 0 -yogi%1:18:01:: 10848946 1 0 -yogi_berra%1:18:00:: 10848946 1 0 -yogic%3:01:00:: 02985904 1 0 -yogistic%3:01:00:: 02985904 1 0 -yogurt%1:13:00:: 07849336 1 0 -yoke%1:06:00:: 04612840 7 0 -yoke%1:06:01:: 04613015 1 1 -yoke%1:06:02:: 04613158 6 0 -yoke%1:06:03:: 04613350 5 0 -yoke%1:14:00:: 08231065 4 0 -yoke%1:23:00:: 13743605 3 0 -yoke%1:26:00:: 13996909 2 0 -yoke%2:35:00:: 01490958 3 0 -yoke%2:35:01:: 01492052 2 0 -yoke%2:35:02:: 01492283 1 0 -yokel%1:18:00:: 10804102 1 2 -yokel-like%5:00:00:stupid:00 00441630 1 1 -yokelish%5:00:00:unrefined:01 01950857 1 0 -yoko_ono%1:18:00:: 11215205 1 0 -yokohama%1:15:00:: 08924238 1 0 -yokuts%1:10:00:: 06924659 1 8 -yokuts%1:18:00:: 09672840 2 0 -yolk%1:05:00:: 01464844 2 0 -yolk%1:13:00:: 07841345 1 0 -yolk_sac%1:05:01:: 01465046 2 0 -yolk_sac%1:05:02:: 01465243 1 0 -yom_kippur%1:28:00:: 15185471 1 0 -yom_kippur_war%1:04:00:: 01302683 1 0 -yon%4:02:00:: 00082308 1 0 -yon%5:00:00:distant:01 00446758 1 0 -yonder%4:02:00:: 00082308 1 0 -yonder%5:00:00:distant:01 00446758 1 1 -yore%1:28:00:: 15121088 1 0 -york%1:14:00:: 08159924 1 0 -yorkshire%1:15:00:: 08885211 1 0 -yorkshire_fog%1:20:00:: 12122725 1 0 -yorkshire_pudding%1:13:00:: 07690585 1 0 -yorkshire_terrier%1:05:00:: 02094433 1 0 -yorktown%1:04:00:: 01300242 2 0 -yorktown%1:15:00:: 09152570 1 0 -yoruba%1:10:00:: 06997368 2 0 -yoruba%1:18:00:: 09738275 1 0 -yosemite%1:17:00:: 09482715 1 0 -yosemite_falls%1:17:00:: 09482715 1 0 -yosemite_national_park%1:15:00:: 08610646 1 0 -yosemite_toad%1:05:00:: 01647180 1 0 -yottabit%1:23:00:: 13632461 1 0 -yottabyte%1:23:00:: 13632164 2 0 -yottabyte%1:23:01:: 13632320 1 0 -you-drive%1:21:00:: 13248598 1 0 -you_bet%4:02:00:: 00152345 1 3 -you_said_it%4:02:00:: 00152345 1 0 -young%1:05:00:: 01321579 1 7 -young%1:14:00:: 07944050 9 0 -young%1:18:00:: 11403220 8 0 -young%1:18:01:: 11403456 7 0 -young%1:18:02:: 11403600 6 0 -young%1:18:03:: 11403692 5 0 -young%1:18:04:: 11403828 4 0 -young%1:18:05:: 11404140 3 0 -young%1:18:06:: 11404280 2 0 -young%3:00:00:: 01646941 1 107 -young%5:00:00:early:02 00818008 2 1 -young%5:00:00:inexperienced:00 00937732 5 0 -young%5:00:00:new:00 01643480 4 0 -young%5:00:01:young:00 01649720 3 0 -young's_modulus%1:23:00:: 13588497 1 0 -young-bearing%5:00:00:female:00 01478353 1 0 -young-begetting%5:00:00:male:00 01477711 1 0 -young_bird%1:05:00:: 01613615 1 0 -young_buck%1:18:00:: 10804287 1 0 -young_carnivore%1:05:00:: 01322685 1 0 -young_fish%1:05:00:: 02513560 1 0 -young_girl%1:18:00:: 10247358 1 4 -young_lady%1:18:00:: 10129825 1 1 -young_mammal%1:05:00:: 01321854 1 0 -young_man%1:18:00:: 10804287 1 14 -young_man%1:18:01:: 09871364 2 3 -young_person%1:18:00:: 10804406 1 0 -young_turk%1:18:00:: 10804636 2 0 -young_turk%1:18:01:: 10804732 1 0 -young_woman%1:18:00:: 10129825 1 4 -younger%5:00:00:junior:00 02101382 1 3 -youngish%5:00:00:young:00 01649651 1 1 -youngness%1:07:00:: 04928416 1 0 -youngster%1:18:00:: 09917593 1 4 -youngstown%1:15:00:: 09131553 1 0 -younker%1:18:00:: 10804406 1 0 -youth%1:07:00:: 04928585 6 1 -youth%1:14:00:: 07944050 2 10 -youth%1:18:00:: 10804406 1 323 -youth%1:26:00:: 14425853 4 2 -youth%1:28:00:: 15147713 3 5 -youth%1:28:01:: 15266034 5 1 -youth-on-age%1:20:00:: 12804352 1 0 -youth_crusade%1:04:00:: 00801277 1 0 -youth_culture%1:14:00:: 08289089 1 0 -youth_gang%1:14:00:: 08244747 1 0 -youth_hostel%1:06:00:: 03541537 1 0 -youth_movement%1:04:00:: 00801277 1 0 -youth_subculture%1:14:00:: 08289449 1 0 -youthful%5:00:00:young:00 01649720 1 10 -youthfully%4:02:00:: 00497662 1 0 -youthfulness%1:07:00:: 04928585 1 0 -yowl%1:10:00:: 07121361 1 0 -yowl%2:32:00:: 00914634 2 0 -yowl%2:32:01:: 01047381 1 0 -ypres%1:04:01:: 01300508 3 0 -ypres%1:04:02:: 01300782 2 0 -ypres%1:04:03:: 01301080 1 0 -yquem%1:13:00:: 07899899 1 0 -yr%1:28:00:: 15203791 1 6 -ytterbite%1:27:00:: 14675569 1 0 -ytterbium%1:27:00:: 14661482 1 0 -yttrium%1:27:00:: 14661740 1 0 -yuan%1:14:00:: 08160146 2 0 -yuan%1:23:00:: 13709992 1 0 -yuan_dynasty%1:14:00:: 08160146 1 0 -yucatan%1:15:00:: 08740022 2 0 -yucatan%1:15:01:: 08740230 1 0 -yucatan_peninsula%1:15:00:: 08740022 1 0 -yucatec%1:10:00:: 06925917 2 0 -yucatec%1:18:00:: 09672963 1 0 -yucateco%1:10:00:: 06925917 2 0 -yucateco%1:18:00:: 09672963 1 0 -yucca%1:20:00:: 12482031 1 1 -yucca_aloifolia%1:20:00:: 12482437 1 0 -yucca_baccata%1:20:00:: 12482668 1 0 -yucca_brevifolia%1:20:00:: 12482893 1 0 -yucca_carnerosana%1:20:00:: 12483091 1 0 -yucca_elata%1:20:00:: 12483282 1 0 -yucca_filamentosa%1:20:00:: 12483427 1 0 -yucca_glauca%1:20:00:: 12483625 1 0 -yucca_gloriosa%1:20:00:: 12483841 1 0 -yucca_smalliana%1:20:00:: 12484029 1 0 -yucca_whipplei%1:20:00:: 12484244 1 0 -yucky%5:00:00:offensive:01 01625893 1 0 -yue%1:10:00:: 06930427 1 0 -yue_dialect%1:10:00:: 06930427 1 0 -yugoslav%1:18:00:: 09750891 1 0 -yugoslav%3:01:00:: 02962013 1 0 -yugoslavia%1:15:00:: 08816236 1 1 -yugoslavia%1:15:01:: 08815513 2 0 -yugoslavian%1:18:00:: 09750891 1 0 -yugoslavian%3:01:00:: 02962013 1 0 -yugoslavian_dinar%1:23:00:: 13671182 1 0 -yugoslavian_monetary_unit%1:23:00:: 13671047 1 0 -yukawa%1:18:00:: 11404402 1 0 -yukon%1:15:00:: 08830456 2 0 -yukon%1:17:00:: 09482916 1 0 -yukon_river%1:17:00:: 09482916 1 0 -yukon_territory%1:15:00:: 08830456 1 0 -yukon_time%1:28:00:: 15132865 1 0 -yukon_white_birch%1:20:00:: 12283395 1 0 -yule%1:28:00:: 15196537 1 0 -yule_log%1:27:00:: 15101059 1 0 -yuletide%1:28:00:: 15196537 1 0 -yuma%1:10:00:: 06923492 3 0 -yuma%1:15:00:: 09059125 2 0 -yuma%1:18:00:: 09673091 1 0 -yuman%1:10:00:: 06922045 1 0 -yuman%3:01:00:: 03145622 1 0 -yummy%5:00:00:tasty:00 02396720 1 0 -yunnan%1:15:00:: 08726463 1 0 -yunnan_province%1:15:00:: 08726463 1 0 -yuppie%1:18:00:: 10804923 1 0 -yurak-samoyed%1:10:00:: 06959788 1 0 -yuri_alekseyevich_gagarin%1:18:00:: 10986866 1 0 -yuri_gagarin%1:18:00:: 10986866 1 0 -yurt%1:06:00:: 04613696 1 0 -yves_tanguy%1:18:00:: 11331063 1 0 -z%1:10:00:: 06833890 2 0 -z%1:11:00:: 07355014 1 0 -z-axis%1:09:00:: 06009433 1 0 -zaar%1:10:00:: 06983416 1 0 -zabaglione%1:13:00:: 07621497 1 0 -zabrze%1:15:00:: 08984457 1 0 -zacharias%1:10:00:: 06441195 2 0 -zacharias%1:18:00:: 11405319 1 0 -zachary_taylor%1:18:00:: 11333237 1 0 -zaftig%5:00:00:fat:01 00986975 1 0 -zag%1:25:00:: 13887319 1 0 -zaglossus%1:05:00:: 01872635 1 0 -zagreb%1:15:00:: 08819128 1 0 -zaharias%1:18:00:: 11404666 1 0 -zaire%1:15:00:: 08734385 2 0 -zaire%1:23:00:: 13710443 1 0 -zaire_river%1:17:00:: 09252078 1 0 -zairean%1:18:00:: 09751622 1 0 -zairean%3:01:00:: 03131116 1 0 -zairese%1:18:00:: 09751622 1 0 -zairese%3:01:00:: 03131116 1 0 -zairese_monetary_unit%1:23:00:: 13710317 1 0 -zakat%1:09:00:: 05914851 1 0 -zalcitabine%1:06:00:: 03190763 1 0 -zalophus%1:05:00:: 02078436 1 0 -zalophus_californianus%1:05:00:: 02078574 1 0 -zalophus_californicus%1:05:00:: 02078574 1 0 -zalophus_lobatus%1:05:00:: 02078738 1 0 -zama%1:04:00:: 01301423 1 0 -zaman%1:20:00:: 11759853 1 0 -zamang%1:20:00:: 11759853 1 0 -zambezi%1:17:00:: 09483129 1 0 -zambezi_river%1:17:00:: 09483129 1 0 -zambia%1:15:00:: 09165613 1 0 -zambian%1:18:00:: 09751772 1 0 -zambian%3:01:00:: 03131331 1 0 -zambian_kwacha%1:23:00:: 13683578 1 0 -zambian_monetary_unit%1:23:00:: 13683451 1 0 -zamboni%1:06:00:: 04613939 1 0 -zamia%1:20:00:: 11601918 1 0 -zamia_family%1:20:00:: 11601487 1 0 -zamia_pumila%1:20:00:: 11602091 1 0 -zamiaceae%1:20:00:: 11601487 1 0 -zane_grey%1:18:00:: 11016075 1 0 -zangwill%1:18:00:: 11404871 1 0 -zannichellia%1:20:00:: 12617950 1 0 -zannichellia_palustris%1:20:00:: 12618146 1 0 -zannichelliaceae%1:20:00:: 12617739 1 0 -zantac%1:06:00:: 04053995 1 0 -zantedeschia%1:20:00:: 11793651 1 0 -zantedeschia_aethiopica%1:20:00:: 11793779 1 0 -zantedeschia_rehmanii%1:20:00:: 11794024 1 0 -zanthoxylum%1:20:00:: 12714550 1 0 -zanthoxylum_americanum%1:20:00:: 12714949 1 0 -zanthoxylum_clava-herculis%1:20:00:: 12715195 1 0 -zanthoxylum_flavum%1:20:00:: 12715408 1 0 -zanthoxylum_fraxineum%1:20:00:: 12714949 1 0 -zanuck%1:18:00:: 11404971 1 0 -zany%1:18:00:: 10805113 1 0 -zany%1:18:01:: 10157744 2 0 -zany%5:00:00:foolish:00 02571536 1 0 -zany%5:00:00:humorous:00 01265108 2 0 -zanzibar%1:15:00:: 09035458 1 0 -zanzibar_copal%1:27:00:: 14896018 1 0 -zap%1:11:00:: 07479628 1 0 -zap%2:30:00:: 00321936 4 0 -zap%2:33:00:: 01133288 3 0 -zap%2:35:00:: 01325288 2 0 -zap%2:37:00:: 01768935 1 0 -zapata%1:18:00:: 11405176 1 0 -zapodidae%1:05:00:: 02350845 1 0 -zapotec%1:10:00:: 06919122 2 0 -zapotec%1:18:00:: 09649372 1 0 -zapotec%3:01:00:: 03145734 1 0 -zapotecan%1:10:00:: 06919122 2 0 -zapotecan%1:18:00:: 09649372 1 0 -zapper%1:06:00:: 04614083 1 0 -zapus%1:05:00:: 02351212 1 0 -zapus_hudsonius%1:05:00:: 02351343 1 0 -zaragoza%1:15:00:: 09027679 1 0 -zarathustra%1:18:00:: 11407715 1 0 -zarf%1:06:00:: 04614244 1 0 -zaria%1:15:00:: 08974974 1 0 -zarontin%1:06:00:: 03300578 1 0 -zarpanit%1:18:00:: 09521648 1 0 -zarqa%1:15:00:: 08928083 1 0 -zauschneria_californica%1:20:00:: 12342852 1 0 -zayin%1:10:00:: 06837357 1 0 -zb%1:23:00:: 13631512 3 0 -zb%1:23:01:: 13631687 2 0 -zb%1:23:02:: 13631845 1 0 -zbit%1:23:00:: 13631845 1 0 -zdv%1:06:00:: 02765429 1 0 -zea%1:20:00:: 12143572 1 0 -zea_mays%1:20:00:: 12143676 1 0 -zea_mays_amylacea%1:20:00:: 12145325 1 0 -zea_mays_everta%1:20:00:: 12145477 1 0 -zea_mays_indentata%1:20:00:: 12144987 1 0 -zea_mays_indurata%1:20:00:: 12145148 1 0 -zea_mays_rugosa%1:20:00:: 12144742 1 0 -zea_saccharata%1:20:00:: 12144742 1 0 -zeal%1:07:00:: 04644719 3 0 -zeal%1:12:01:: 07555402 1 2 -zeal%1:12:02:: 07481785 2 2 -zealand%1:15:00:: 08761697 1 0 -zealander%1:18:00:: 09700017 1 0 -zealot%1:18:00:: 10402086 2 0 -zealot%1:18:01:: 10805274 1 0 -zealotry%1:09:00:: 06206334 1 0 -zealous%5:00:00:enthusiastic:00 00886253 1 0 -zealously%4:02:00:: 00497778 1 0 -zeaxanthin%1:27:00:: 14721781 1 0 -zebibit%1:23:00:: 13632007 1 0 -zebibyte%1:23:00:: 13631512 1 0 -zebra%1:05:00:: 02391049 1 0 -zebra-tailed_lizard%1:05:00:: 01678657 1 0 -zebra_crossing%1:06:00:: 03904183 1 0 -zebra_finch%1:05:00:: 01544389 1 0 -zebra_mussel%1:05:00:: 01965529 1 0 -zebra_orchid%1:20:00:: 12048537 1 0 -zebrawood%1:20:00:: 11745817 2 0 -zebrawood%1:20:02:: 11746060 1 0 -zebrawood_family%1:20:00:: 11746224 1 0 -zebrawood_tree%1:20:00:: 11745817 1 0 -zebu%1:05:00:: 02404906 1 0 -zechariah%1:10:00:: 06441195 2 0 -zechariah%1:18:00:: 11405319 1 0 -zed%1:10:00:: 06833890 1 0 -zee%1:10:00:: 06833890 1 0 -zeeman%1:18:00:: 11405437 1 0 -zeidae%1:05:00:: 01452633 1 0 -zeitgeist%1:26:00:: 14526635 1 0 -zellig_harris%1:18:00:: 11031016 1 0 -zellig_sabbatai_harris%1:18:00:: 11031016 1 0 -zen%1:06:00:: 02675657 3 0 -zen%1:09:00:: 06242048 2 0 -zen%1:14:00:: 08099029 1 0 -zen_buddhism%1:09:00:: 06242048 2 0 -zen_buddhism%1:14:00:: 08099029 1 0 -zen_buddhist%1:18:00:: 09683924 1 0 -zenaidura%1:05:00:: 01814091 1 0 -zenaidura_macroura%1:05:00:: 01814217 1 0 -zend%1:10:00:: 06973941 1 0 -zend-avesta%1:10:00:: 06430996 1 0 -zenith%1:15:01:: 08684769 1 1 -zenithal%3:01:00:: 03131633 1 0 -zeno%1:18:01:: 11405684 2 0 -zeno%1:18:02:: 11405826 1 0 -zeno_of_citium%1:18:00:: 11405684 1 0 -zeno_of_elea%1:18:00:: 11405826 1 0 -zeolite%1:27:00:: 15106867 1 0 -zeomorphi%1:05:00:: 01452496 1 0 -zep%1:13:00:: 07697825 1 0 -zephaniah%1:10:00:: 06440663 2 0 -zephaniah%1:18:00:: 11406023 1 0 -zephyr%1:18:00:: 09573561 2 0 -zephyr%1:19:00:: 11431754 1 0 -zeppelin%1:06:00:: 04614372 2 0 -zeppelin%1:18:00:: 11406141 1 0 -zeppo%1:18:00:: 11161228 1 0 -zero%1:06:00:: 04614505 4 0 -zero%1:09:00:: 05856217 3 0 -zero%1:23:01:: 13742358 2 3 -zero%1:23:02:: 13740168 1 6 -zero%2:30:00:: 00297333 2 0 -zero%2:30:01:: 00297507 1 0 -zero%3:01:00:: 03145851 4 0 -zero%5:00:00:cardinal:00 02186132 1 5 -zero%5:00:00:no:00 02269142 2 1 -zero%5:00:02:ordinal:00 02201882 3 1 -zero-coupon_bond%1:21:00:: 13341052 1 0 -zero-coupon_security%1:21:00:: 13418823 1 0 -zero-sum_game%1:04:00:: 00509706 1 0 -zero-tolerance_policy%1:10:00:: 06663308 1 0 -zero_coupon_bond%1:21:00:: 13341052 1 0 -zero_coupon_security%1:21:00:: 13418823 1 0 -zero_hour%1:28:00:: 15229300 1 0 -zero_in%2:30:00:: 00297333 2 0 -zero_in%2:33:12:: 01153007 1 1 -zero_point%1:09:00:: 05856217 1 0 -zero_tolerance%1:09:00:: 06206576 1 0 -zeroth%5:00:00:ordinal:00 02201970 1 0 -zeroth_law_of_thermodynamics%1:09:00:: 05883473 1 0 -zest%1:07:01:: 04993108 2 0 -zest%1:12:00:: 07491981 1 1 -zest%2:39:00:: 02192570 1 0 -zestful%5:00:00:spirited:00 02281182 1 0 -zestfully%4:02:00:: 00497917 1 0 -zestfulness%1:12:00:: 07491981 1 0 -zestily%4:02:00:: 00497917 1 0 -zestril%1:06:00:: 03677308 1 0 -zesty%5:00:00:spirited:00 02281182 2 0 -zesty%5:00:00:tasty:00 02398378 1 0 -zeta%1:10:00:: 06834674 1 0 -zetland%1:15:00:: 08954057 1 0 -zettabit%1:23:00:: 13631845 1 0 -zettabyte%1:23:00:: 13631512 2 0 -zettabyte%1:23:01:: 13631687 1 0 -zeugma%1:10:00:: 07108807 1 0 -zeus%1:05:00:: 01452954 2 0 -zeus%1:18:00:: 09573682 1 0 -zeus_faber%1:05:00:: 01453087 1 0 -zhou%1:14:00:: 08479407 1 0 -zhou_dynasty%1:14:00:: 08479407 1 0 -zhou_en-lai%1:18:00:: 11406314 1 0 -zhu_jiang%1:17:00:: 09483340 1 0 -zhuang%1:10:00:: 06936379 1 0 -zhukov%1:18:00:: 11406460 1 0 -zib%1:23:00:: 13631512 1 0 -zibit%1:23:00:: 13632007 1 0 -zidovudine%1:06:00:: 02765429 1 0 -ziegfeld%1:18:00:: 11406700 1 0 -ziegfeld_follies%1:10:00:: 07020121 1 0 -ziegler%1:18:00:: 11406906 1 0 -zig%1:25:00:: 13887319 1 0 -zig-zag%5:00:00:crooked:01 02314451 1 0 -zigadene%1:20:00:: 12466727 1 0 -zigadenus%1:20:00:: 12466450 1 0 -zigadenus_elegans%1:20:00:: 12467018 1 0 -zigadenus_glaucus%1:20:00:: 12467197 1 0 -zigadenus_nuttalli%1:20:00:: 12467433 1 0 -zigadenus_venenosus%1:20:00:: 12467592 1 0 -zigadenus_venenosus_gramineus%1:20:00:: 12467592 1 0 -ziggurat%1:06:00:: 04614655 1 0 -zigzag%1:25:00:: 13887319 1 0 -zigzag%2:38:00:: 01991744 1 2 -zigzag%4:02:00:: 00498068 1 0 -zigzag%5:00:00:crooked:01 02314451 1 0 -zigzag_goldenrod%1:20:00:: 12018530 1 0 -zikkurat%1:06:00:: 04614655 1 0 -zikurat%1:06:00:: 04614655 1 0 -zilch%1:23:00:: 13740168 1 0 -zill%1:06:00:: 04614844 1 0 -zillion%1:23:00:: 13776432 1 0 -zillion%5:00:00:cardinal:00 02199919 1 0 -zimbabwe%1:15:00:: 09167101 1 0 -zimbabwean%1:18:00:: 09751895 1 0 -zimbabwean%3:01:00:: 03131750 1 0 -zimbabwean_dollar%1:23:00:: 13674660 1 0 -zimbalist%1:18:00:: 11407048 1 0 -zimmer%1:06:00:: 04545471 1 0 -zimmer_frame%1:06:00:: 04545471 1 0 -zinacef%1:06:00:: 02990103 1 0 -zinc%1:27:00:: 14661977 1 6 -zinc%2:35:00:: 01615906 1 0 -zinc_blende%1:27:00:: 15107876 1 0 -zinc_cadmium_sulfide%1:27:00:: 15096426 1 1 -zinc_deficiency%1:26:00:: 14200704 1 0 -zinc_ointment%1:06:00:: 04615018 1 0 -zinc_oxide%1:27:00:: 15108087 1 0 -zinc_sulfate%1:27:00:: 15108324 1 0 -zinc_sulfide%1:27:00:: 15108538 1 0 -zinc_sulphate%1:27:00:: 15108324 1 0 -zinc_sulphide%1:27:00:: 15108538 1 0 -zinc_vitriol%1:27:00:: 15108324 1 0 -zinc_white%1:27:00:: 15108745 1 0 -zinfandel%1:13:00:: 07898333 2 0 -zinfandel%1:20:00:: 13147386 1 0 -zing%1:07:00:: 04635482 2 0 -zing%1:11:00:: 07400701 1 0 -zinger%1:10:00:: 07282695 1 0 -zingiber%1:20:00:: 12355594 1 0 -zingiber_officinale%1:20:00:: 12356023 1 0 -zingiberaceae%1:20:00:: 12355320 1 0 -zinjanthropus%1:05:00:: 02477187 1 0 -zinkenite%1:27:00:: 15108897 1 0 -zinnemann%1:18:00:: 11407175 1 0 -zinnia%1:20:00:: 12034141 1 0 -zinnia_acerosa%1:20:00:: 12034384 1 0 -zinnia_grandiflora%1:20:00:: 12034594 1 0 -zinnwaldite%1:27:00:: 15109016 1 0 -zinsser%1:18:00:: 11407302 1 0 -zinzendorf%1:18:00:: 11407465 1 0 -zion%1:09:01:: 05632056 3 0 -zion%1:15:00:: 08792548 2 0 -zion%1:15:02:: 08796351 1 0 -zion_national_park%1:15:00:: 08610810 1 0 -zionism%1:10:00:: 06663463 1 1 -zionism%1:14:00:: 08479202 2 0 -zionist%1:18:00:: 10805501 1 1 -zionist%3:01:00:: 03131904 2 0 -zionist%3:01:01:: 03132067 1 0 -zionist_movement%1:14:00:: 08479202 1 0 -zip%1:06:00:: 04238321 4 0 -zip%1:07:00:: 05035961 3 0 -zip%1:10:00:: 06355705 2 0 -zip%1:23:00:: 13740168 1 0 -zip%2:35:00:: 01353670 1 1 -zip%2:38:00:: 02055649 2 0 -zip_by%2:38:00:: 02053829 1 0 -zip_code%1:10:00:: 06355705 1 0 -zip_fastener%1:06:00:: 04238321 1 0 -zip_gun%1:06:00:: 04615149 1 0 -zip_up%2:35:00:: 01353670 1 0 -ziphiidae%1:05:00:: 02067941 1 0 -zipper%1:06:00:: 04238321 1 0 -zipper%2:35:00:: 01353670 1 0 -zippo%1:23:00:: 13740168 1 0 -zippy%5:00:00:energetic:00 00874226 1 0 -zippy%5:00:00:lively:00 00805309 2 0 -zirbanit%1:18:00:: 09521648 1 0 -zircon%1:27:00:: 15109127 1 0 -zirconia%1:27:00:: 15109391 1 0 -zirconium%1:27:00:: 14662281 1 0 -zirconium_dioxide%1:27:00:: 15109391 1 0 -zirconium_oxide%1:27:00:: 15109391 1 0 -zirconium_silicate%1:27:00:: 15109127 1 0 -zit%1:26:00:: 14334306 1 0 -zither%1:06:00:: 04615226 1 0 -zithern%1:06:00:: 04615226 1 0 -zithromax%1:06:00:: 02765656 1 0 -ziti%1:13:00:: 07700255 1 0 -zizania%1:20:00:: 12145802 1 0 -zizania_aquatica%1:20:00:: 12145919 1 0 -ziziphus%1:20:00:: 13143097 1 0 -ziziphus_jujuba%1:20:00:: 13143285 1 0 -ziziphus_lotus%1:20:00:: 13143483 1 0 -zizz%1:04:00:: 00858742 2 0 -zizz%1:11:00:: 07479799 1 0 -zloty%1:23:00:: 13710777 1 1 -zn%1:27:00:: 14661977 1 0 -zoanthropy%1:26:00:: 14379017 1 0 -zoarces%1:05:00:: 02617402 1 0 -zoarces_viviparus%1:05:00:: 02617537 1 0 -zoarcidae%1:05:00:: 02617029 1 0 -zocor%1:06:00:: 04221994 1 0 -zodiac%1:06:00:: 04615456 2 0 -zodiac%1:15:00:: 08685188 1 0 -zodiacal%3:01:00:: 03132560 1 1 -zodiacal_light%1:19:00:: 11527556 1 2 -zoftig%5:00:00:fat:01 00986975 1 0 -zoic%3:01:00:: 02656121 1 0 -zoisia%1:20:00:: 12146100 1 0 -zola%1:18:00:: 11407591 1 0 -zolaesque%3:01:00:: 03039004 1 0 -zollinger-ellison_syndrome%1:26:00:: 14471054 1 0 -zoloft%1:06:00:: 04174853 1 0 -zomba%1:15:00:: 08963244 1 0 -zombi%1:13:00:: 07919165 5 0 -zombi%1:18:00:: 10805638 3 0 -zombi%1:18:01:: 09825519 4 0 -zombi%1:18:02:: 10805783 2 0 -zombi%1:18:03:: 10805932 1 0 -zombi_spirit%1:18:00:: 10805932 1 0 -zombie%1:13:00:: 07919165 5 0 -zombie%1:18:00:: 10805638 1 1 -zombie%1:18:01:: 09825519 4 0 -zombie%1:18:02:: 10805783 3 0 -zombie%1:18:03:: 10805932 2 0 -zombie_spirit%1:18:00:: 10805932 1 0 -zona%1:08:00:: 05611062 1 0 -zona_pellucida%1:08:00:: 05608615 1 0 -zonal%3:00:00:: 02589913 2 0 -zonal%3:01:00:: 03132185 1 0 -zonal_pelargonium%1:20:00:: 12687698 1 0 -zonary%3:01:00:: 03132185 1 0 -zone%1:08:00:: 05611062 4 0 -zone%1:15:00:: 08688247 1 1 -zone%1:15:01:: 08509442 3 0 -zone%1:15:02:: 08541841 2 0 -zone%2:30:00:: 00332835 2 0 -zone%2:41:00:: 02512150 1 0 -zone_fire%1:04:00:: 00994989 1 0 -zone_of_interior%1:15:00:: 08551984 1 0 -zoning%1:04:00:: 00928751 1 1 -zoning_board%1:14:00:: 08413529 1 0 -zoning_commission%1:14:00:: 08413681 1 0 -zonk_out%2:29:00:: 00016855 2 0 -zonk_out%2:29:01:: 00023868 1 0 -zonotrichia%1:05:00:: 01535310 1 0 -zonotrichia_albicollis%1:05:00:: 01535469 1 0 -zonotrichia_leucophrys%1:05:00:: 01535690 1 0 -zonula%1:08:00:: 05611221 1 0 -zonule%1:08:00:: 05611221 1 0 -zoo%1:06:00:: 03745146 1 2 -zoo_keeper%1:18:00:: 10806113 1 0 -zooerastia%1:04:00:: 00858060 1 0 -zooerasty%1:04:00:: 00858060 1 0 -zooflagellate%1:05:00:: 01418620 1 0 -zooid%1:05:00:: 01416213 1 0 -zoolatry%1:04:00:: 01046441 1 0 -zoological%3:01:00:: 02891444 2 0 -zoological%3:01:01:: 02891564 1 0 -zoological_garden%1:06:00:: 03745146 1 0 -zoological_science%1:09:00:: 06083243 1 0 -zoologist%1:18:00:: 10806222 1 0 -zoology%1:09:00:: 06083243 2 0 -zoology%1:14:00:: 07993279 1 0 -zoom%1:04:00:: 00326291 2 0 -zoom%1:11:00:: 07375525 1 0 -zoom%2:38:00:: 02055521 1 2 -zoom%2:38:01:: 02056209 2 0 -zoom%2:38:03:: 01943718 3 0 -zoom_along%2:38:00:: 02055521 1 0 -zoom_in%2:39:00:: 02153253 1 0 -zoom_lens%1:06:00:: 04403413 1 0 -zoomastigina%1:05:00:: 01418237 1 0 -zoomastigote%1:05:00:: 01418620 1 0 -zoomorphism%1:09:00:: 05735145 1 0 -zoonosis%1:26:00:: 14276649 1 0 -zoonotic%3:01:00:: 03145956 1 0 -zoonotic_disease%1:26:00:: 14276649 1 0 -zoophagous%5:00:00:carnivorous:00 00313701 1 0 -zoophilia%1:04:00:: 00738598 1 0 -zoophilism%1:04:00:: 00738598 1 0 -zoophobia%1:26:00:: 14384796 1 0 -zoophyte%1:05:00:: 01906178 1 0 -zooplankton%1:05:00:: 01384164 1 0 -zoopsia%1:26:00:: 14378586 1 0 -zoospore%1:20:00:: 11549895 1 0 -zoot_suit%1:06:00:: 04615644 1 0 -zootoxin%1:27:00:: 15034741 1 0 -zori%1:06:00:: 04027706 1 0 -zoril%1:05:00:: 02444384 1 0 -zoroaster%1:18:00:: 11407715 1 0 -zoroastrian%1:18:00:: 09686146 1 0 -zoroastrian%3:01:00:: 02926708 1 0 -zoroastrianism%1:09:00:: 06244149 1 0 -zoster%1:26:00:: 14132829 1 0 -zostera%1:20:00:: 12618524 1 0 -zostera_marina%1:20:00:: 12618727 1 0 -zosteraceae%1:20:00:: 12618336 1 0 -zovirax%1:06:00:: 02678528 1 0 -zoysia%1:20:00:: 12146311 1 0 -zoysia_japonica%1:20:00:: 12146654 1 0 -zoysia_matrella%1:20:00:: 12146488 1 0 -zoysia_tenuifolia%1:20:00:: 12146823 1 0 -zr%1:27:00:: 14662281 1 0 -zsigmondy%1:18:00:: 11407865 1 0 -zu%1:18:00:: 09522615 1 0 -zubird%1:18:00:: 09522615 1 0 -zucchini%1:13:00:: 07716358 2 0 -zucchini%1:20:00:: 12159804 1 0 -zuider_zee%1:17:00:: 09483519 1 0 -zukerman%1:18:00:: 11408041 1 0 -zulu%1:10:00:: 06994792 3 0 -zulu%1:14:00:: 08489392 2 0 -zulu%1:18:00:: 09752023 1 0 -zuni%1:18:00:: 09673232 1 0 -zurich%1:15:00:: 09033117 1 0 -zurvan%1:18:00:: 10806612 1 0 -zurvanism%1:09:00:: 06251553 2 0 -zurvanism%1:14:00:: 08151096 1 0 -zweig%1:18:00:: 11408148 1 0 -zwieback%1:13:00:: 07689842 1 0 -zwingli%1:18:00:: 11408243 1 0 -zworykin%1:18:00:: 11408414 1 0 -zydeco%1:10:00:: 07062550 1 0 -zygnema%1:05:00:: 01410330 1 0 -zygnemales%1:05:00:: 01409940 1 0 -zygnemataceae%1:05:00:: 01410109 1 0 -zygnematales%1:05:00:: 01409940 1 0 -zygocactus%1:20:00:: 11854232 1 0 -zygocactus_truncatus%1:20:00:: 11854479 1 0 -zygodactyl%3:00:00:: 01198586 1 0 -zygodactyl_foot%1:05:00:: 02154824 1 0 -zygoma%1:08:00:: 05284851 1 0 -zygomatic%1:08:00:: 05273822 1 0 -zygomatic%3:01:00:: 03146117 1 0 -zygomatic_arch%1:08:00:: 05284851 1 0 -zygomatic_bone%1:08:00:: 05273822 1 0 -zygomatic_process%1:08:00:: 05546383 1 0 -zygomorphic%3:00:00:: 02374697 1 0 -zygomorphous%3:00:00:: 02374697 1 0 -zygomycetes%1:20:00:: 12972629 1 0 -zygomycota%1:20:00:: 12972414 1 0 -zygomycotina%1:20:00:: 12972414 1 0 -zygophyllaceae%1:20:00:: 12720532 1 0 -zygophyllum%1:20:00:: 12720893 1 0 -zygophyllum_fabago%1:20:00:: 12721122 1 0 -zygoptera%1:05:00:: 02268746 1 0 -zygospore%1:20:00:: 13239921 1 0 -zygote%1:08:00:: 05431926 1 0 -zygotene%1:22:00:: 13575109 1 0 -zygotic%3:01:00:: 02882275 1 0 -zyloprim%1:06:00:: 02698036 1 0 -zymase%1:27:00:: 15109586 1 0 -zymogen%1:27:00:: 14691445 1 0 -zymoid%3:01:00:: 03146237 1 0 -zymology%1:09:00:: 06080361 1 0 -zymolysis%1:22:00:: 13575433 1 0 -zymolytic%3:01:00:: 03000447 1 0 -zymosis%1:22:00:: 13575226 2 0 -zymosis%1:22:01:: 13575433 1 0 -zymotic%3:01:00:: 03000341 2 0 -zymotic%3:01:01:: 03000447 1 0 -zymurgy%1:09:00:: 06080361 1 0 -zyrian%1:10:00:: 06957042 1 0 diff --git a/corpora/en/wordnet/dict/index.verb b/corpora/en/wordnet/dict/index.verb deleted file mode 100644 index 88806b2e0..000000000 --- a/corpora/en/wordnet/dict/index.verb +++ /dev/null @@ -1,11558 +0,0 @@ - 1 This software and database is being provided to you, the LICENSEE, by - 2 Princeton University under the following license. By obtaining, using - 3 and/or copying this software and database, you agree that you have - 4 read, understood, and will comply with these terms and conditions.: - 5 - 6 Permission to use, copy, modify and distribute this software and - 7 database and its documentation for any purpose and without fee or - 8 royalty is hereby granted, provided that you agree to comply with - 9 the following copyright notice and statements, including the disclaimer, - 10 and that the same appear on ALL copies of the software, database and - 11 documentation, including modifications that you make for internal - 12 use or for distribution. - 13 - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - 15 - 16 THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR - 23 OTHER RIGHTS. - 24 - 25 The name of Princeton University or Princeton may not be used in - 26 advertising or publicity pertaining to distribution of the software - 27 and/or database. Title to copyright in this software, database and - 28 any associated documentation shall at all times remain with - 29 Princeton University and LICENSEE agrees to preserve same. -aah v 1 1 @ 1 0 00865776 -abacinate v 1 1 @ 1 0 02168378 -abandon v 5 4 @ ~ $ + 5 5 02228031 02227741 02076676 00613393 00614057 -abase v 1 3 @ ~ + 1 0 01799794 -abash v 1 3 @ ~ + 1 0 01792097 -abate v 2 2 @ + 2 0 00245289 00245059 -abbreviate v 2 4 @ ~ $ + 2 0 00243900 00243749 -abdicate v 1 2 @ + 1 0 02379198 -abduce v 1 1 @ 1 0 01015866 -abduct v 2 5 ! @ ~ + ; 2 0 01471043 01449427 -aberrate v 2 3 @ + ; 2 0 02662076 02661769 -abet v 1 2 @ + 1 1 02549211 -abhor v 1 2 @ + 1 1 01774426 -abide v 2 5 @ ~ $ + ; 2 2 02637202 00668099 -abide_by v 2 3 @ ~ $ 2 1 02542280 02457233 -abjure v 1 2 @ + 1 0 00798717 -ablactate v 1 2 @ * 1 0 01186958 -ablate v 2 3 @ + ; 2 0 00275466 00177578 -abnegate v 3 3 @ $ + 3 0 02213074 01116275 00758042 -abolish v 1 3 ! ~ + 1 1 02427334 -abominate v 1 2 @ + 1 0 01774426 -abort v 3 4 @ ~ * + 3 0 00353839 00060063 00059899 -abound v 2 3 @ ^ + 2 1 02715279 02715595 -abound_in v 1 1 @ 1 1 02715923 -about-face v 2 2 @ + 2 1 01909042 00689068 -abrade v 2 3 @ ~ + 2 0 01254013 01251651 -abrase v 1 2 @ ~ 1 0 01254013 -abreact v 1 3 @ + ; 1 0 01815471 -abridge v 2 4 @ ~ $ + 2 1 00243900 00236843 -abrogate v 1 2 @ + 1 1 02478584 -abscise v 2 3 @ $ + 2 0 01255355 01255222 -abscond v 1 3 @ ~ + 1 0 02073714 -abseil v 1 3 @ * ; 1 0 01923058 -absent v 1 2 @ + 1 1 00421535 -absolve v 2 4 ! @ ~ + 2 0 00903711 00902424 -absorb v 9 6 ! @ ~ $ + ; 9 7 01539633 00602255 02216560 01539063 00395698 02765464 00601043 01470524 00600370 -absquatulate v 1 2 @ ~ 1 0 02073714 -abstain v 2 4 ! @ ~ + 2 2 02463426 01196037 -abstract v 4 2 @ + 4 3 00692329 02276866 00734587 01008288 -abuse v 4 3 @ ~ + 4 2 02516594 00203213 00845299 00203556 -abut v 1 3 @ ~ + 1 0 01466978 -aby v 1 1 @ 1 0 02520509 -abye v 1 1 @ 1 0 02520509 -accede v 3 3 @ ~ + 3 1 00878348 02381397 00804139 -accelerate v 2 4 ! @ ~ + 2 2 00438178 00439343 -accent v 2 3 @ ~ + 2 0 01013367 00983333 -accentuate v 2 3 @ ~ + 2 1 01013367 00983333 -accept v 11 5 ! @ ~ $ + 11 7 00686447 02236124 00797697 00719231 02236624 02301825 00668805 02741546 02210622 02209936 00718489 -access v 2 4 @ ~ + ; 2 0 02248808 02007417 -accession v 1 2 @ ; 1 0 00999568 -acclaim v 2 4 @ ~ * + 2 1 00861725 00861929 -acclimate v 1 2 @ + 1 0 00393677 -acclimatise v 1 2 @ + 1 0 00393677 -acclimatize v 1 2 @ + 1 1 00393677 -accommodate v 7 4 @ ~ $ + 7 4 02702830 00299580 01184453 02732798 02651424 00885925 00482893 -accompany v 4 4 @ ~ + ; 4 4 02716165 02025550 01728355 02716767 -accomplish v 2 4 @ ~ $ + 2 2 01640855 02526085 -accord v 2 4 @ ~ $ + 2 2 02700104 02255268 -accost v 2 3 @ ~ $ 2 1 00990655 00781652 -account v 4 3 @ ~ + 4 0 02607432 02265231 00965035 00867644 -account_for v 2 1 @ 2 2 02635033 00939621 -accouter v 1 1 @ 1 0 02342016 -accoutre v 1 1 @ 1 0 02342016 -accredit v 3 3 @ + ; 3 1 02475535 02475772 00727791 -accrete v 2 3 @ + ; 2 0 00396325 00159368 -accrue v 2 4 @ ~ $ + 2 1 00155869 02230056 -acculturate v 1 3 @ ~ + 1 1 00159880 -accumulate v 2 3 @ ~ + 2 2 02304982 00158804 -accurse v 1 1 @ 1 0 00864910 -accuse v 2 3 @ ~ + 2 1 00842989 00843468 -accustom v 1 2 @ ~ 1 1 00273445 -ace v 4 3 @ + ; 4 0 02522581 01113367 01085130 01077759 -acerbate v 2 3 @ > + 2 0 01773535 00270440 -acetify v 2 3 @ + ; 2 0 02196690 00264875 -acetylate v 2 3 @ + ; 2 0 00524299 00524083 -acetylise v 2 2 @ ; 2 0 00524299 00524083 -acetylize v 2 3 @ + ; 2 0 00524299 00524083 -ache v 3 3 @ ~ + 3 3 02121511 01805684 02122164 -achieve v 1 3 @ ~ + 1 1 02526085 -achromatise v 1 1 @ 1 0 00524530 -achromatize v 1 2 @ + 1 0 00524530 -acid-wash v 1 1 @ 1 0 01537271 -acidify v 2 4 ! @ + ; 2 0 02196690 00264875 -acidulate v 1 2 @ + 1 0 02196690 -acknowledge v 6 3 @ ~ + 6 4 00817311 00892698 01059123 00892467 00740449 00592883 -acquaint v 3 4 @ ~ $ + 3 2 00901103 00874175 00832778 -acquiesce v 1 3 @ ~ + 1 1 00804139 -acquire v 7 4 @ ~ $ + 7 3 02210855 00524682 00094460 02695378 02288295 00597915 00545557 -acquit v 2 5 ! @ ~ * + 2 1 00904046 02518161 -act v 10 7 ! @ ~ ^ $ + ; 10 5 02367363 00010435 01719302 01095899 00013615 02744977 02525447 02419073 01721556 01719921 -act_as v 2 2 @ $ 2 1 02671613 00013615 -act_involuntarily v 1 2 @ ~ 1 0 00010241 -act_on v 2 2 @ ~ 2 2 02376429 02376631 -act_out v 2 1 @ 2 2 01722645 01722447 -act_reflexively v 1 2 @ ~ 1 0 00010241 -act_superior v 1 1 @ 1 0 02593551 -act_up v 2 1 @ 2 0 02517655 02122522 -act_upon v 1 2 @ ~ 1 0 02536557 -action v 2 4 @ ~ $ + 2 0 02582042 01640855 -activate v 5 5 ! @ ~ > + 5 2 01643657 00190682 00191385 00190999 00190886 -actualise v 2 3 @ ~ + 2 0 01644746 00987870 -actualize v 2 3 @ ~ + 2 0 01644746 00987870 -actuate v 2 4 @ > $ + 2 1 01643657 01649999 -acuminate v 1 2 @ + 1 0 00393227 -ad-lib v 1 2 @ + 1 0 01728840 -adapt v 2 3 @ ~ + 2 2 00299580 00150287 -add v 6 7 ! @ ~ ^ $ + ; 6 5 00182406 01027174 02324478 00640828 00949288 02745172 -add_on v 2 3 @ ~ + 2 1 00183757 01328705 -add_to v 1 1 @ 1 0 00157347 -add_together v 2 4 @ ~ $ ; 2 0 00949288 00640828 -add_up v 4 3 @ ~ $ 4 2 02627363 00949288 02645007 02619612 -addict v 1 3 @ * + 1 0 01165290 -addle v 2 1 @ 2 0 00620532 00210647 -address v 10 6 @ ~ * $ + ; 10 5 00897564 00989201 00990812 01150981 01160899 02601456 02249018 01033527 00990655 00464687 -adduce v 1 1 @ 1 0 01015866 -adduct v 1 3 ! @ + 1 0 01449236 -adhere v 6 5 @ ~ * $ + 6 3 02718178 00486557 01220885 02638845 02638630 01356750 -adjoin v 3 4 @ ~ $ + 3 1 01466978 01205696 00183383 -adjourn v 2 5 @ ~ * $ + 2 1 00364297 02428487 -adjudge v 1 2 @ ~ 1 0 00822367 -adjudicate v 2 3 @ ~ + 2 0 02501278 00698855 -adjure v 2 2 @ + 2 0 00759657 00755331 -adjust v 5 3 @ ~ + 5 4 00296178 00464321 00150287 00298067 00699334 -admeasure v 1 2 @ * 1 0 02295082 -administer v 5 5 @ ~ * + ; 5 4 02431971 02309621 02294436 00081072 02603567 -administrate v 1 3 @ ~ + 1 0 02431971 -admire v 2 4 ! @ ~ + 2 2 01827858 02164694 -admit v 8 5 ! @ ~ $ + 8 4 00817311 02502536 02449847 02236624 02745486 02741682 02732798 02671279 -admix v 1 3 @ + ; 1 1 00396703 -admonish v 3 3 @ $ + 3 1 00870577 00871195 00824066 -adolesce v 1 2 @ + 1 0 00252710 -adopt v 7 5 @ ~ $ + ; 7 5 02346895 02346724 02381726 00524682 00413195 01701311 00601822 -adore v 1 3 @ ~ + 1 1 01777817 -adorn v 3 4 @ ~ $ + 3 1 01675963 02748927 02386675 -adsorb v 1 3 @ + ; 1 1 01540232 -adulate v 1 2 @ + 1 0 00880518 -adulterate v 1 4 @ ~ $ + 1 0 00487748 -adumbrate v 2 2 @ ~ 2 0 01006421 00927711 -advance v 12 4 ! @ ~ + 12 8 01992503 00875806 00497061 02554922 01993926 01111028 00248659 00558371 02397637 02283949 01994288 00158222 -advantage v 1 3 ! @ + 1 0 02513268 -advect v 1 2 @ + 1 0 02102655 -adventure v 2 3 @ ~ + 2 1 02544348 02545272 -advert v 3 5 @ ~ * $ + 3 0 02170427 01026728 01024190 -advertise v 2 4 @ ~ $ + 2 1 00975902 00976653 -advertize v 2 4 @ ~ $ + 2 0 00976653 00975902 -advise v 3 3 @ ~ + 3 3 00872886 00873682 00875394 -advocate v 2 3 @ ~ + 2 2 00875141 00827730 -aerate v 3 2 @ + 3 0 02112891 00190999 00185465 -aerify v 1 3 @ ~ + 1 0 00442267 -aerosolise v 2 2 @ + 2 0 01377940 01377758 -aerosolize v 2 2 @ + 2 1 01377758 01377940 -aestivate v 1 3 ! @ + 1 0 00016183 -affect v 5 5 @ ~ > $ + 5 4 00137313 00019448 02677097 00838043 01767949 -affiance v 1 1 @ 1 0 00886602 -affiliate v 2 3 @ ~ + 2 0 02589245 02435311 -affirm v 3 4 ! @ ~ + 3 3 00665886 01011031 01011725 -affix v 3 4 @ ~ > + 3 2 01356370 01328705 01298283 -afflict v 2 3 @ ~ + 2 0 01797730 00259927 -afford v 4 4 @ ~ $ + 4 2 01192628 02339171 02744451 02358034 -afforest v 1 3 @ ~ + 1 0 01567888 -affranchise v 1 1 @ 1 0 02477135 -affright v 1 4 @ ~ > + 1 0 01779165 -affront v 1 2 @ + 1 1 00848420 -age v 3 5 ! @ ~ > + 3 2 00248512 00248026 00249679 -agenise v 1 2 @ + 1 0 00517365 -agenize v 1 2 @ + 1 0 00517365 -agglomerate v 1 2 @ + 1 1 01484714 -agglutinate v 2 3 @ ~ + 2 0 01222016 01221684 -aggrade v 1 2 ! @ 1 0 01307771 -aggrandise v 1 3 @ ~ + 1 0 00956405 -aggrandize v 1 3 @ ~ + 1 0 00956405 -aggravate v 2 3 @ ~ + 2 2 00208210 01820901 -aggregate v 2 3 @ ~ + 2 0 02627555 01385170 -aggress v 1 4 @ ~ $ + 1 0 01118449 -aggrieve v 2 3 @ > ; 2 0 02513879 01797582 -aggroup v 1 2 @ ~ 1 0 01089878 -agitate v 6 5 ! @ ~ $ + 6 2 02585050 01762528 02589576 01893988 01889610 01419473 -agnise v 1 2 @ ~ 1 0 00728617 -agnize v 1 2 @ ~ 1 0 00728617 -agonise v 2 3 @ > + 2 0 01794523 01794363 -agonize v 2 3 @ > + 2 0 01794523 01794363 -agree v 7 6 ! @ ~ $ + ; 7 4 00805376 00764222 02657219 02700104 02741793 02291135 01035530 -aid v 2 3 @ ~ + 2 2 02547586 00082081 -ail v 2 3 @ ~ + 2 0 00078665 00070816 -aim v 7 3 @ ~ + 7 7 01151110 00708980 01026975 00713015 01150559 00955472 00705517 -air v 6 5 @ ~ > + ; 6 1 02112891 00973728 00973056 00954608 00489029 00488770 -air-condition v 2 3 @ + ; 2 0 02331575 02331326 -air-cool v 1 2 @ ; 1 0 02331326 -air-drop v 1 1 @ 1 0 01489859 -air-freight v 1 1 @ 1 0 01951159 -air-ship v 1 1 @ 1 0 01951159 -air-slake v 1 1 @ 1 0 00214794 -air_out v 2 1 @ 2 0 02112891 00488770 -airbrush v 1 2 @ + 1 0 01363320 -airfreight v 1 1 @ 1 0 01951159 -airlift v 1 2 @ + 1 0 01452057 -airmail v 1 2 @ + 1 0 01032127 -airt v 1 2 @ ~ 1 0 01953334 -alarm v 2 3 @ ~ + 2 2 01782650 00872414 -alchemise v 1 2 @ ; 1 0 00139586 -alchemize v 1 3 @ + ; 1 0 00139586 -alcoholise v 2 2 @ ; 2 0 00139908 00139729 -alcoholize v 3 3 @ + ; 3 0 01176734 00139908 00139729 -alert v 1 3 @ ~ + 1 1 00872414 -alibi v 1 2 @ + 1 0 00893741 -alien v 2 2 @ ~ 2 0 02221010 01823528 -alienate v 3 3 @ ~ + 3 1 01823528 02221010 01823888 -alight v 2 1 @ 2 1 01978700 01978576 -align v 4 4 ! @ ~ + 4 3 00464321 02658867 00733632 00466053 -aliment v 1 2 @ + 1 0 01204191 -aline v 1 2 @ ~ 1 0 00464321 -alkalify v 1 3 @ + ; 1 0 00265094 -alkalinise v 2 2 @ ; 2 0 00134898 00134737 -alkalinize v 2 2 @ ; 2 0 00134898 00134737 -alkalise v 1 2 @ ; 1 0 00265094 -alkalize v 1 4 ! @ + ; 1 0 00265094 -allay v 2 4 @ ~ * + 2 0 01815185 01204021 -allege v 1 3 @ ~ + 1 1 01016002 -allegorise v 2 2 @ + 2 0 00624263 00135285 -allegorize v 2 2 @ + 2 0 00624263 00135285 -alleviate v 2 3 @ ~ + 2 2 00064095 00518395 -alligator v 1 2 @ + 1 0 00337700 -alliterate v 1 3 @ + ; 1 0 01702154 -allocate v 1 3 @ ~ + 1 1 02234087 -allot v 3 3 @ ~ + 3 3 02228698 02255268 02294436 -allow v 10 5 ! @ ~ $ + 10 6 02423183 00802318 02255462 00724150 02721438 00723545 02745486 02423650 02319669 00802946 -allow_for v 1 2 @ $ 1 1 02721438 -allow_in v 1 3 @ ~ $ 1 1 02502536 -allowance v 1 2 @ + 1 0 02255821 -alloy v 2 3 @ + ; 2 0 00493517 00396880 -allude v 1 4 @ * $ + 1 0 01026728 -allure v 1 3 @ * + 1 0 00793785 -ally v 1 3 @ ~ + 1 0 02430191 -ally_with v 1 1 @ 1 1 02434737 -alphabetise v 1 2 @ + 1 0 00279239 -alphabetize v 2 3 @ + ; 2 1 00279239 02330967 -alter v 5 5 @ ~ * > + 5 3 00126264 00123170 01667132 00201407 00060477 -altercate v 1 2 @ ~ 1 0 00775156 -alternate v 5 3 @ ~ + 5 1 00121506 02393726 00604930 00121678 00121214 -aluminise v 1 2 @ + 1 0 01338113 -aluminize v 1 2 @ + 1 0 01338113 -amalgamate v 1 3 @ ~ + 1 0 01462005 -amass v 2 2 @ ~ 2 1 00158804 02304982 -amaze v 2 3 @ ~ + 2 2 00724832 00622384 -ambition v 1 2 @ + 1 0 01826060 -amble v 1 2 @ + 1 1 01918183 -ambulate v 1 2 @ + 1 0 01911698 -ambuscade v 1 2 @ + 1 0 01138204 -ambush v 2 2 @ + 2 2 01138204 01142203 -ameliorate v 2 5 @ ~ > $ + 2 0 00205885 00205046 -amend v 3 5 @ ~ > $ + 3 2 00996328 00205885 00199912 -amerce v 2 3 @ $ + 2 0 02500265 02498987 -americanise v 2 2 @ + 2 0 00410406 00409643 -americanize v 2 2 @ + 2 0 00410406 00409643 -ammoniate v 1 2 @ + 1 0 00187147 -ammonify v 1 3 @ + ; 1 0 00497219 -amnesty v 1 3 @ + ; 1 0 00905677 -amortise v 1 2 @ + 1 0 02352263 -amortize v 1 2 @ + 1 0 02352263 -amount v 3 3 @ ~ + 3 3 02664992 02645007 02627363 -amplify v 4 3 @ ~ + 4 1 00434077 00839834 00264386 00263904 -amputate v 1 5 @ ~ * + ; 1 1 01254692 -amuse v 2 3 @ ~ + 2 2 02492362 00859758 -anaesthetise v 1 3 @ ~ + 1 0 00021065 -anaesthetize v 1 3 @ ~ + 1 0 00021065 -anagram v 1 2 @ + 1 0 00625518 -anagrammatise v 1 2 @ + 1 0 00625518 -anagrammatize v 1 2 @ + 1 0 00625518 -analogise v 1 2 @ + 1 0 00653283 -analogize v 1 2 @ + 1 0 00653283 -analyse v 4 4 @ ~ + ; 4 1 00644583 00736216 00643473 00643197 -analyze v 4 5 ! @ ~ + ; 4 2 00644583 00643473 00736216 00643197 -anastomose v 2 2 @ $ 2 0 01292366 01292169 -anathematise v 1 2 @ + 1 0 00864910 -anathematize v 1 2 @ + 1 0 00864910 -anathemise v 2 1 @ 2 0 00865958 00864910 -anathemize v 2 1 @ 2 0 00865958 00864910 -anatomise v 1 2 @ + 1 0 01550594 -anatomize v 2 2 @ + 2 0 01550594 00645241 -anchor v 2 2 @ + 2 2 01304944 01304716 -ancylose v 2 2 @ ; 2 0 00096396 00096264 -anele v 1 1 @ 1 0 00085626 -anesthetise v 1 3 @ ~ + 1 0 00021065 -anesthetize v 1 4 ! @ ~ + 1 0 00021065 -anger v 2 4 @ ~ > + 2 1 01785971 01787106 -angle v 5 3 @ ~ + 5 1 02044866 02038357 01319346 01141612 00680485 -angle-park v 1 2 @ ; 1 0 01934731 -anglicise v 1 2 @ + 1 0 00300317 -anglicize v 1 2 @ + 1 0 00300317 -anguish v 2 4 @ ~ > + 2 0 01794969 01792567 -angulate v 1 2 @ + 1 0 00573457 -animadvert v 2 3 @ ~ + 2 0 01027668 00827158 -animalise v 3 2 @ + 3 0 01680756 00114052 00113853 -animalize v 3 2 @ + 3 0 01680756 00114052 00113853 -animate v 4 4 @ ~ $ + 4 1 01812720 00547995 00192836 00024279 -animise v 1 1 @ 1 0 00547995 -animize v 1 1 @ 1 1 00547995 -ankylose v 2 2 @ ; 2 0 00096396 00096264 -anneal v 1 1 @ 1 0 00303056 -annex v 2 3 @ ~ + 2 0 02215355 01329141 -annihilate v 1 3 @ $ + 1 1 00470701 -annotate v 2 3 @ + ; 2 0 01704953 00961329 -announce v 4 3 @ ~ + 4 4 00974367 00965871 00975427 00974173 -annoy v 1 4 @ ~ $ + 1 1 01787955 -annul v 2 3 @ ~ + 2 0 02478059 00799798 -annunciate v 1 2 @ + 1 0 00974173 -anodise v 1 1 @ 1 0 00136567 -anodize v 1 1 @ 1 0 00136567 -anoint v 2 2 @ + 2 0 00675412 00085626 -answer v 10 3 @ ~ + 10 5 00815686 00719590 00636279 00635523 00815171 02746017 02669789 02658570 01183896 00718308 -answer_for v 1 1 @ 1 0 00867644 -antagonise v 2 2 @ + 2 1 02564841 01807314 -antagonize v 2 2 @ + 2 1 01807314 02564841 -ante v 1 3 @ + ; 1 0 01139380 -ante_up v 1 2 @ ~ 1 0 02252931 -antecede v 1 1 + 1 0 02712443 -antedate v 2 1 @ 2 0 02712443 00277086 -anthologise v 1 2 @ + 1 0 01626705 -anthologize v 1 2 @ + 1 0 01626705 -anthropomorphise v 1 2 @ + 1 0 00727409 -anthropomorphize v 1 2 @ + 1 0 00727409 -antic v 1 2 @ + 1 0 00105778 -anticipate v 6 4 @ ~ $ + 6 6 00719734 02565491 00720808 00917772 01804961 00342640 -antiquate v 2 2 @ + 2 0 00253664 00253501 -antique v 2 3 @ + ; 2 0 02326795 00253501 -antisepticize v 1 1 @ 1 0 00062774 -ape v 2 2 @ + 2 0 02675067 00849592 -aphorise v 1 2 @ + 1 0 00741911 -aphorize v 1 2 @ + 1 0 00741911 -apologise v 2 4 @ ~ * + 2 0 00894738 00892923 -apologize v 2 4 @ ~ * + 2 1 00892923 00894738 -apostatise v 1 2 @ + 1 0 00757856 -apostatize v 1 2 @ + 1 0 00757856 -apostrophise v 1 2 @ + 1 0 00993754 -apostrophize v 1 2 @ + 1 0 00993754 -apotheose v 1 1 @ 1 0 00693633 -apotheosise v 1 2 @ + 1 0 00693633 -apotheosize v 1 2 @ + 1 0 00693633 -appal v 2 2 @ ~ 2 0 01810447 01782650 -appall v 2 2 @ ~ 2 0 01810447 01782650 -apparel v 1 4 @ ~ $ + 1 0 00047945 -appeal v 5 3 @ ~ + 5 3 02497586 00755447 01807882 02497824 01024864 -appear v 7 5 ! @ ~ + ; 7 7 02133435 00422090 00425967 02134672 00425071 01721169 02597762 -appease v 3 2 @ + 3 3 01765392 01194114 00765213 -append v 3 3 @ ~ + 3 1 01328705 01328513 01027174 -apperceive v 1 3 @ + ; 1 0 02107097 -appertain v 1 2 @ + 1 0 02653706 -applaud v 2 5 ! @ ~ * + 2 2 00861929 00860292 -applique v 1 3 @ * + 1 0 01670777 -apply v 10 5 @ ~ > $ + 10 9 01158872 02676789 00765396 01363648 02707429 02309165 02561332 02560164 01026558 02595523 -appoint v 3 3 @ ~ + 3 2 02396205 02475922 02341370 -apportion v 2 4 @ ~ * + 2 1 02234087 02294179 -appose v 1 2 @ + 1 0 01500214 -appraise v 2 4 @ ~ $ + 2 1 00681429 00646542 -appreciate v 5 5 ! @ ~ $ + 5 3 01805982 00592341 02256109 00316195 00315605 -apprehend v 3 4 @ ~ * + 3 2 00588221 01215137 01782432 -apprentice v 1 2 @ + 1 1 00602635 -apprise v 4 4 @ ~ $ + 4 0 00873682 00831074 00316195 00315605 -apprize v 4 3 @ ~ $ 4 0 00873682 00831074 00316195 00315605 -approach v 5 5 @ ~ * $ + 5 5 02053941 02703952 02439281 01849746 00990392 -approbate v 2 3 ! @ + 2 0 00803815 00687033 -appropriate v 2 3 @ ~ + 2 2 00724150 02272549 -approve v 2 4 ! @ ~ + 2 2 00806502 00673983 -approximate v 2 3 @ ~ + 2 2 02666060 00672433 -aquaplane v 2 2 @ + 2 0 01956512 01942854 -aquatint v 1 3 @ + ; 1 0 01750668 -arbitrage v 1 3 @ + ; 1 0 02260959 -arbitrate v 1 2 @ + 1 1 00760956 -arborise v 1 2 @ + 1 0 00329495 -arborize v 1 2 @ + 1 0 00329495 -arc v 1 3 @ ~ + 1 0 02034986 -arch v 1 3 @ ~ + 1 1 02034986 -arch_over v 1 0 1 0 02035315 -archaise v 1 2 @ + 1 0 00522068 -archaize v 1 2 @ + 1 1 00522068 -archive v 1 2 @ + 1 0 01384638 -argue v 3 4 @ ~ * + 3 2 00772189 00773432 00772640 -argufy v 1 2 @ ~ 1 0 00775156 -arise v 7 4 ! @ ~ $ 7 5 02624263 02625786 01983264 00339738 01968569 02583139 00018158 -arm v 2 4 ! @ ~ + 2 2 01087197 02334867 -armor v 1 2 @ + 1 0 02341684 -armour v 1 2 @ + 1 0 02341684 -aromatise v 1 2 @ + 1 0 02126382 -aromatize v 1 2 @ + 1 0 02126382 -arouse v 7 5 @ ~ * $ + 7 6 01759326 00018526 01629958 00022686 00018813 01894164 01762283 -arraign v 2 3 @ * + 2 2 02497992 00843852 -arrange v 7 6 ! @ ~ $ + ; 7 5 01463963 01021629 01648126 01745141 00038849 01706129 00735571 -array v 2 3 @ ~ + 2 1 01474209 00733632 -arrest v 4 3 @ ~ + 4 3 01215137 01131473 01505958 01859586 -arrive v 2 5 ! @ ~ $ + 2 1 02005948 02585860 -arrive_at v 1 3 ~ * $ 1 1 02020590 -arrogate v 3 4 @ ~ $ + 3 1 02275365 02276746 02274482 -arse_about v 1 1 @ 1 0 02639606 -arse_around v 2 1 @ 2 0 02639606 00854150 -arterialise v 1 1 @ 1 0 00120095 -arterialize v 1 1 @ 1 0 00120095 -article v 1 2 @ + 1 0 00885082 -articulate v 5 5 @ ~ * + ; 5 3 02354287 00980453 00978549 02622637 00978369 -ascend v 8 5 ! @ ~ + ; 8 1 01969216 02751451 02381571 02105657 02103021 02037472 01970348 01969779 -ascertain v 4 4 @ ~ $ + 4 2 00918872 00662589 00920336 00721302 -ascribe v 1 4 @ ~ $ + 1 1 00726300 -ash v 1 2 @ + 1 0 00383437 -ask v 7 5 @ ~ ^ $ + 7 5 00784342 00752493 00784727 00755745 00897746 02627934 01068565 -ask_for v 1 1 @ 1 1 01760143 -ask_for_it v 1 1 @ 1 0 00351048 -ask_for_trouble v 1 1 @ 1 0 00351048 -ask_in v 1 3 @ ~ $ 1 0 01469770 -ask_out v 1 1 @ 1 1 02486693 -ask_over v 1 2 @ $ 1 0 02384686 -ask_round v 1 2 @ $ 1 0 02384686 -asperse v 1 3 @ ~ + 1 0 00846509 -asphalt v 1 2 @ + 1 0 01267866 -asphyxiate v 3 5 @ ~ * $ + 3 0 01569181 01476180 00359511 -aspirate v 3 3 @ $ + 3 0 01540693 00952039 00003316 -aspire v 1 3 @ ~ + 1 1 00705517 -assail v 3 4 @ ~ $ + 3 1 01120069 01119169 00862683 -assassinate v 2 2 @ + 2 0 02483000 00847158 -assault v 3 3 @ ~ + 3 1 01120069 02567519 00862683 -assay v 2 3 @ ~ + 2 1 00694974 02530167 -assemble v 3 6 ! @ ~ > $ + 3 3 01656788 02428924 02598143 -assent v 1 4 ! @ ~ + 1 1 00804139 -assert v 4 3 @ ~ + 4 4 01016778 01011031 02373785 00717045 -assert_oneself v 1 1 @ 1 1 02519055 -assess v 4 4 @ ~ $ + 4 1 00681429 02308552 02308389 00682230 -asseverate v 1 3 @ ~ + 1 0 01016778 -assibilate v 2 2 @ + 2 0 01054027 00547022 -assign v 8 4 @ ~ $ + 8 5 02391803 02228698 00726300 00677683 01160370 02276746 02228531 00740053 -assimilate v 5 5 ! @ ~ + ; 5 3 00602255 00159642 00160261 01540042 00160447 -assist v 3 4 @ ~ $ + 3 2 02547586 02414710 02540670 -associate v 3 4 ! @ ~ + 3 3 00713167 02589245 02470175 -assoil v 1 3 @ ~ * 1 0 00904046 -assonate v 1 2 @ + 1 0 02750642 -assort v 2 4 @ ~ * + 2 0 02589245 00654625 -assuage v 3 4 @ ~ * + 3 0 01765392 01204021 00064095 -assume v 9 5 @ ~ $ + ; 9 5 00632236 02381726 00524682 02301825 01982395 02274482 01721754 01470856 00050652 -assure v 6 4 @ ~ $ + 6 6 00890590 01019643 00776268 00662589 01766407 00884011 -asterisk v 1 2 @ + 1 0 00510869 -astonish v 1 3 @ ~ + 1 1 00724832 -astound v 1 2 @ ~ 1 1 00724832 -astringe v 2 2 @ + 2 0 01388386 00304662 -astrogate v 2 3 @ + ; 2 0 01933766 01841947 -atom-bomb v 1 1 @ 1 0 01132980 -atomise v 3 2 @ + 3 0 01373138 01133288 00330144 -atomize v 3 2 @ + 3 0 01373138 01133288 00330144 -atone v 2 2 @ + 2 1 02520509 01796800 -atrophy v 1 2 @ + 1 0 00093979 -attach v 5 7 ! @ ~ > ^ $ + 5 3 01296462 01290255 01290422 02538086 02273293 -attach_to v 2 2 @ ~ 2 1 02716165 02705535 -attack v 6 5 ! @ ~ $ + 6 5 01119169 00862683 01118449 01120069 00347610 00019792 -attain v 4 5 @ ~ * $ + 4 2 02526085 02006834 02286687 02020590 -attaint v 2 2 @ ~ 2 0 02547225 02149501 -attemper v 1 1 @ 1 0 00170381 -attempt v 2 3 @ ~ + 2 2 02530167 01651293 -attend v 5 6 ! @ ~ $ + ; 5 5 02612762 02549581 02716567 02540670 02170427 -attend_to v 2 4 ! @ ~ $ 2 1 00616670 02540670 -attenuate v 2 4 @ ~ + ; 2 0 00226379 00220701 -attest v 4 5 @ ~ $ + ; 4 2 00820976 00820352 01014821 00820611 -attire v 1 4 @ ~ $ + 1 0 00044149 -attitudinise v 1 2 @ + 1 0 02519494 -attitudinize v 1 2 @ + 1 0 02519494 -attorn v 1 2 @ ; 1 0 00593200 -attract v 3 5 ! @ ~ $ + 3 2 01505254 01807882 01350025 -attribute v 2 4 @ ~ $ + 2 1 00726300 00740053 -attune v 1 1 @ 1 1 00297780 -auction v 1 3 @ + ; 1 0 02244773 -auction_off v 1 2 @ ; 1 0 02244773 -auctioneer v 1 3 @ + ; 1 0 02244773 -audit v 2 2 @ + 2 1 00697062 00600235 -audition v 1 4 @ ~ + ; 1 1 01718535 -augment v 2 2 @ + 2 2 00154388 00157950 -augur v 2 3 @ ~ + 2 1 00871942 00918471 -aurify v 2 1 @ 2 0 00382410 00285231 -auscultate v 1 3 @ + ; 1 0 02150192 -auspicate v 2 3 @ ~ + 2 0 00871942 00347420 -authenticate v 1 4 @ ~ * + 1 1 00664276 -author v 1 4 @ ~ + ; 1 0 01704452 -authorise v 2 3 @ ~ + 2 0 02473981 00803325 -authorize v 2 3 @ ~ + 2 1 00803325 02473981 -autoclave v 1 2 @ + 1 0 00062973 -autograph v 1 2 @ + 1 0 00997133 -automate v 1 3 @ ~ + 1 1 00479932 -automatise v 2 3 @ ~ + 2 0 00480221 00479932 -automatize v 2 3 @ ~ + 2 0 00480221 00479932 -automobile v 1 3 @ + ; 1 0 01930738 -autopsy v 1 3 @ + ; 1 0 02150039 -autotomise v 1 1 @ 1 0 01513990 -autotomize v 1 2 @ + 1 0 01513990 -avail v 3 2 @ + 3 2 01161561 02549048 01193569 -avalanche v 1 2 @ + 1 0 01966706 -avenge v 1 3 @ ~ + 1 1 01153486 -aver v 2 3 @ ~ + 2 0 01016002 01011031 -average v 3 3 @ + ; 3 3 02645389 02527294 00639998 -average_out v 2 2 @ ; 2 1 00639998 02645389 -avert v 2 2 @ + 2 2 02453321 02034511 -avianise v 1 1 @ 1 0 00124074 -avianize v 1 1 @ 1 0 00124074 -aviate v 1 6 @ ~ * $ + ; 1 0 01941093 -avoid v 5 4 ! @ ~ + 5 4 00811375 02453321 02463510 01189823 02478059 -avouch v 1 1 @ 1 0 00819923 -avow v 2 4 ! @ ~ + 2 0 01011031 00819923 -avulse v 1 2 @ + 1 0 02032117 -await v 1 2 ~ $ 1 1 00720063 -awake v 1 2 @ * 1 1 00018526 -awaken v 3 5 ! @ ~ * + 3 3 00018813 00018526 00736095 -award v 2 3 @ ~ + 2 2 02261888 02262278 -awe v 1 3 @ ~ + 1 1 01779644 -ax v 2 2 @ + 2 0 01257953 00354317 -axe v 2 2 @ + 2 0 01257953 00354317 -azure v 1 2 @ + 1 0 00284958 -baa v 1 2 @ + 1 0 01048330 -babbitt v 1 2 @ + 1 0 01272349 -babble v 4 3 @ $ + 4 2 01065630 01037650 02187922 00937208 -babble_out v 1 2 @ $ 1 0 00937208 -baby v 1 2 @ + 1 0 02570267 -baby-sit v 2 2 @ + 2 0 02602898 02456270 -bach v 1 1 @ 1 0 02616118 -bachelor v 1 2 @ + 1 0 02616118 -back v 10 7 ! @ ~ > ^ $ + 10 5 02453889 01997119 02556817 01997512 02217695 02693965 01139104 00560628 00223109 00185857 -back_away v 1 1 $ 1 1 00799383 -back_down v 2 4 @ ~ $ + 2 1 01997680 02380980 -back_off v 2 3 @ ~ $ 2 1 01997680 02380980 -back_out v 2 2 @ $ 2 1 01997376 00799383 -back_up v 5 4 @ ~ + ; 5 3 02556126 01997680 00223109 01694620 01478603 -backbite v 1 2 @ + 1 0 00907657 -backcross v 1 1 @ 1 0 01429825 -backdate v 1 1 @ 1 0 02561846 -backfire v 3 2 @ + 3 0 02378950 02173663 00379023 -background v 1 4 ! @ ~ + 1 0 00513492 -backhand v 1 2 @ + 1 0 01404664 -backlash v 1 2 @ + 1 0 02378950 -backlog v 1 2 @ + 1 0 00159236 -backpack v 1 4 @ * + ; 1 0 01926031 -backpedal v 3 1 @ 3 0 01935953 01929041 00688960 -backscatter v 1 2 @ ; 1 0 00330751 -backslap v 1 2 @ + 1 0 02374572 -backslide v 1 2 @ + 1 0 00204585 -backspace v 1 2 @ + 1 0 01005373 -backstitch v 1 2 @ + 1 1 01330567 -backstop v 1 3 @ + ; 1 0 01076130 -backstroke v 1 3 @ + ; 1 0 01962375 -backtrack v 1 1 @ 1 0 02004528 -bacterise v 1 2 @ + 1 0 00138360 -bacterize v 1 2 @ + 1 0 00138360 -badge v 1 2 @ + 1 0 01589869 -badger v 2 2 @ + 2 1 01803380 00767530 -badmouth v 1 1 @ 1 0 00848169 -baffle v 3 3 @ ~ + 3 1 00622384 02558172 00234988 -bag v 5 4 @ ~ + ; 5 1 01479874 02717362 02714360 02292432 01485839 -bail v 5 3 @ $ + 5 0 02421749 02293732 00890403 00177136 00177011 -bail_out v 2 2 @ ; 2 0 02494259 00449426 -bait v 3 3 @ ~ + 3 1 00850501 02577877 01114911 -bake v 4 4 @ ~ + ; 4 3 00319886 01663749 00544136 02755565 -balance v 4 5 ! @ ~ $ + 4 4 02673134 02264967 01602318 02743020 -bald v 1 1 @ 1 0 00126143 -bale v 1 2 @ + 1 0 01386200 -bale_out v 1 1 @ 1 0 00449426 -balk v 1 2 @ + 1 1 02583545 -balkanise v 1 1 @ 1 0 02469711 -balkanize v 1 1 @ 1 1 02469711 -ball v 1 2 @ + 1 1 01523270 -ball_over v 1 2 @ ~ 1 0 01809064 -ball_up v 1 2 @ + 1 0 02527651 -ballast v 1 2 @ + 1 0 00271403 -balloon v 2 3 @ ~ + 2 0 01948659 00256117 -ballot v 1 2 @ + 1 0 02463141 -ballyhoo v 1 2 @ + 1 0 00976365 -ballyrag v 1 2 @ ~ 1 0 01781520 -bamboozle v 1 1 @ 1 0 00839194 -ban v 4 4 @ ~ + ; 4 2 02493666 00796392 02504280 02504017 -band v 2 2 @ + 2 1 01304342 01297401 -band_oneself v 1 1 @ 1 0 02430078 -band_together v 1 1 @ 1 1 02470685 -bandage v 2 4 @ ~ + ; 2 0 01303547 00083124 -bandy v 3 3 @ ~ ; 3 1 01147296 01138446 00813651 -bandy_about v 1 1 @ 1 0 00970107 -bang v 6 5 @ ~ $ + ; 6 4 01242391 02187693 01242832 02100176 01426397 01236941 -bang_out v 1 2 @ ; 1 0 01728213 -bang_up v 2 2 @ $ 2 0 01566705 00053159 -banish v 4 3 @ ~ + 4 4 02504017 02504280 02503803 02003359 -bank v 8 4 @ ~ $ + 8 2 02039413 01587705 02343374 02343252 02343056 02310855 01234793 00688377 -bankroll v 1 1 @ 1 0 02216384 -bankrupt v 1 2 @ + 1 1 02318165 -banquet v 2 4 @ ~ $ + 2 0 01186208 01185981 -banter v 1 2 @ + 1 1 00855295 -baptise v 1 2 @ + 1 0 01028079 -baptize v 1 2 @ + 1 1 01028079 -bar v 4 5 ! @ ~ $ + 4 4 00796588 01478002 02503803 01342910 -bar_hop v 1 1 @ 1 0 01171941 -bar_mitzvah v 1 2 @ + 1 0 02474958 -barb v 1 2 @ + 1 0 01339181 -barbarise v 2 3 @ $ + 2 0 00134564 00134328 -barbarize v 2 3 @ $ + 2 0 00134564 00134328 -barbecue v 1 3 @ + ; 1 1 00324806 -barbeque v 1 2 @ ; 1 0 00324806 -barber v 1 2 @ + 1 0 00042792 -bard v 1 2 @ + 1 0 01670315 -barde v 1 1 @ 1 0 01670315 -bare v 3 2 @ ~ 3 1 01340028 00954608 00194912 -barf v 1 1 @ 1 0 00076400 -bargain v 2 3 @ ~ + 2 1 02259829 00764782 -bargain_down v 1 1 @ 1 0 02259387 -barge v 2 4 @ ^ + ; 2 1 01996574 01950502 -barge_in v 2 2 @ ~ 2 1 02019011 00780191 -bark v 5 3 @ ~ + 5 1 01047596 01263904 01263784 01047745 00511763 -barnstorm v 2 3 @ $ + 2 0 01094898 01094661 -baronetise v 1 1 @ 1 0 02398681 -baronetize v 1 2 @ + 1 0 02398681 -barrack v 3 3 @ ~ + 3 0 02651745 00858781 00850192 -barrage v 1 2 @ + 1 0 00863579 -barrage_jam v 1 1 @ 1 0 01057342 -barrel v 1 2 @ + 1 0 01502540 -barricade v 3 4 @ ~ $ + 3 1 01478002 01127215 01127075 -barricado v 1 1 @ 1 0 01127075 -barter v 1 2 @ + 1 0 02259241 -barter_away v 1 2 @ ; 1 0 02294056 -base v 3 3 @ ~ + 3 1 00636888 02756196 01200068 -bash v 1 2 @ + 1 0 01397088 -basify v 1 3 @ + ; 1 0 00265094 -bask v 2 3 @ ~ * 2 2 01820302 01548181 -basset v 1 1 @ 1 0 00425845 -bastardise v 2 2 @ + 2 0 02580853 00818253 -bastardize v 2 2 @ + 2 0 02580853 00818253 -baste v 3 4 @ * + ; 3 1 00321652 01417416 01331348 -bastinado v 1 2 @ + 1 0 01399921 -bat v 5 5 @ ~ $ + ; 5 2 01413173 00008195 01413561 01413436 01412912 -bat_mitzvah v 1 2 @ + 1 0 02475109 -batch v 1 2 @ + 1 0 01386073 -bate v 3 2 @ ; 3 0 02511075 02094057 00216801 -batfowl v 1 2 @ ; 1 0 01480025 -bath v 1 3 @ ~ + 1 0 00037919 -bathe v 3 3 @ ~ + 3 2 00035603 01582070 00037919 -batik v 1 2 @ + 1 0 00288814 -batten v 2 2 @ + 2 0 01306425 01306292 -batten_down v 1 1 @ 1 0 01306425 -batter v 3 1 @ 3 1 01417705 01417416 00546609 -battle v 1 3 @ ~ + 1 1 01092366 -baulk v 1 2 @ + 1 0 02583545 -bawl v 3 2 @ + 3 1 01048569 01046480 00066862 -bawl_out v 1 2 @ ~ 1 0 00824767 -bay v 2 2 @ + 2 1 01048073 01047951 -bayonet v 1 2 @ + 1 0 01231980 -be v 13 4 @ ~ $ + 13 11 02604760 02616386 02655135 02603699 02749904 02664769 02620587 02445925 02697725 02268246 02614181 02744820 02702508 -be_active v 1 2 ! ~ 1 0 00014549 -be_adrift v 1 3 @ ~ $ 1 0 01902783 -be_after v 1 2 @ ~ 1 1 00705227 -be_amiss v 1 1 @ 1 0 00619869 -be_at_pains v 1 1 @ 1 0 02531088 -be_born v 1 4 ! @ ~ + 1 1 00360932 -be_due v 1 1 @ 1 1 02634567 -be_full v 1 1 ! 1 0 01188342 -be_given v 1 2 @ ~ 1 0 02719399 -be_intimate v 1 3 @ ~ $ 1 1 01426397 -be_on v 1 1 @ 1 1 00424337 -be_on_cloud_nine v 1 2 @ ~ 1 0 01813668 -be_on_the_ball v 1 1 @ 1 0 00596484 -be_quiet v 1 0 1 1 01041061 -be_sick v 1 1 @ 1 0 00076400 -be_well v 1 2 ! @ 1 1 00065495 -be_with_it v 1 1 @ 1 0 00596484 -beach v 1 2 @ + 1 0 01978947 -beacon v 2 2 @ + 2 0 02160433 01933204 -bead v 3 2 @ + 3 0 02625521 01670511 01360091 -beak v 1 2 @ + 1 0 01243474 -beam v 6 5 @ ~ > + ; 6 4 00029214 02763740 01067380 00973056 02161530 01829747 -bean v 1 2 @ + 1 0 01400856 -bear v 13 7 @ ~ * ^ $ + ; 13 9 02630871 00056930 00668099 01432601 01652139 02301825 02700867 02291708 00047745 02518161 02302220 01601234 00059019 -bear_away v 1 3 @ ~ * 1 0 01434278 -bear_down v 6 2 @ ; 6 1 01597096 01389186 01121719 01082023 00840980 00750979 -bear_down_on v 2 3 @ * ; 2 1 01927992 01597096 -bear_down_upon v 1 3 @ * ; 1 0 01927992 -bear_in_mind v 1 2 @ ~ 1 1 00609506 -bear_off v 1 3 @ ~ * 1 0 01434278 -bear_on v 4 3 @ ~ $ 4 3 02676054 00137313 00765977 02679899 -bear_out v 1 1 @ 1 1 02663340 -bear_up v 1 1 @ 1 1 00669243 -bear_upon v 1 2 @ ~ 1 1 00137313 -bear_witness v 2 3 @ ~ ; 2 2 01015244 01014821 -beard v 1 2 @ + 1 1 02687730 -beat v 23 6 @ ~ * $ + ; 23 11 01101913 01397210 01398919 01880113 01624897 02174830 02162815 02093610 01945938 01418179 01399576 02746140 02573853 02175578 02093390 01880673 01879579 01756006 01726879 01399450 01104852 00622384 00075421 -beat_a_retreat v 1 1 @ 1 0 02009347 -beat_about v 1 1 @ 1 0 00649362 -beat_around_the_bush v 1 1 @ 1 0 00835506 -beat_back v 1 2 @ $ 1 0 01506157 -beat_down v 3 1 @ 3 0 02259387 02160321 01883550 -beat_in v 1 1 @ 1 0 00606471 -beat_out v 2 4 @ ~ * $ 2 1 01101913 01880560 -beat_up v 2 3 @ ~ * 2 0 01397210 01385643 -beatify v 3 2 @ + 3 0 01812324 01812068 00822912 -beautify v 3 5 ! @ ~ $ + 3 1 00293141 02748927 01675963 -beaver v 1 2 @ + 1 0 02414913 -beaver_away v 1 1 @ 1 0 02414913 -bebop v 1 2 @ + 1 0 01895263 -becalm v 1 1 @ 1 0 00416571 -bechance v 2 2 @ $ 2 0 00345000 00344643 -becharm v 2 2 @ ~ 2 0 02586458 01806505 -beckon v 3 1 @ 3 2 01041415 01807051 01041644 -becloud v 1 2 @ ~ 1 0 02157731 -become v 4 3 @ ~ $ 4 3 00149583 02626604 02623529 02724258 -become_flat v 1 1 @ 1 0 00538323 -bed v 5 4 @ ~ $ + 5 0 02337066 01567653 01500082 01426397 00017865 -bed-hop v 1 1 @ 1 0 02095390 -bed_down v 1 2 @ ~ 1 1 00017531 -bedamn v 1 1 @ 1 1 00865958 -bedaub v 1 1 @ 1 0 01251828 -bedaze v 1 1 @ 1 0 02115430 -bedazzle v 1 1 @ 1 0 02162434 -bedeck v 1 2 @ ~ 1 0 01679980 -bedevil v 2 4 @ ~ $ + 2 0 01803003 00621734 -bedew v 1 1 @ 1 0 00215254 -bedhop v 1 1 @ 1 0 02095390 -bedight v 1 2 @ ~ 1 0 01679980 -bedim v 2 1 @ 2 0 00313860 00313712 -bedizen v 2 1 @ 2 0 01679254 00045240 -bedraggle v 1 1 @ 1 0 00216692 -beef v 1 2 @ + 1 0 00910973 -beef_up v 1 3 @ ~ > 1 1 00220869 -beep v 2 3 @ ~ + 2 0 02183175 00791372 -beeswax v 1 2 @ + 1 0 01268870 -beetle v 3 2 @ + 3 0 02697435 02103612 01399821 -beetle_off v 1 1 @ 1 0 02011040 -befall v 2 2 @ $ 2 1 00345000 00344643 -befit v 1 1 @ 1 1 02699941 -befog v 1 2 @ ~ 1 1 02157731 -befool v 2 2 @ ~ 2 0 02576349 00854904 -befoul v 1 2 @ + 1 0 00492410 -befriend v 1 2 @ ~ 1 1 02588677 -befuddle v 2 4 @ ~ $ + 2 1 00621734 01190741 -beg v 4 4 @ ~ ^ + 4 3 00759269 00782057 02270815 00810226 -beg_off v 1 1 @ 1 0 00894221 -beget v 1 2 @ + 1 1 00054628 -beggar v 2 2 @ + 2 0 02707681 02317970 -begild v 1 1 @ 1 0 01683101 -begin v 10 6 ! @ ~ > $ + 10 4 00345761 02608347 00348746 00747640 02679227 02609203 02608823 02600948 02526509 01070777 -begrime v 1 2 @ ~ 1 0 01534147 -begrudge v 2 3 ! @ ~ 2 0 01827064 01825125 -beguile v 2 3 @ ~ + 2 2 02578235 01806505 -behave v 3 4 ! @ ~ $ 3 3 00010435 02518161 02519666 -behead v 1 2 @ ~ 1 1 01571354 -behold v 1 2 @ + 1 1 02130160 -behoove v 1 1 @ 1 1 02668378 -behove v 1 1 @ 1 0 02668378 -bejewel v 1 1 @ 1 0 01678685 -belabor v 3 1 @ 3 2 02415265 00827302 01398235 -belabour v 3 1 @ 3 0 02415265 01398235 00827302 -belay v 2 2 @ + 2 0 01342755 01342636 -belch v 2 2 @ + 2 1 00003431 00307568 -beleaguer v 2 2 @ ~ 2 0 01803380 01127411 -belie v 2 2 @ ~ 2 1 02663141 00836705 -believe v 5 5 ! @ ~ + ; 5 5 00683280 00689344 00721098 00684273 00684068 -believe_in v 1 1 @ 1 1 00733895 -belittle v 3 2 @ ~ 3 0 00864475 00845909 00441881 -bell v 1 2 @ + 1 0 01297274 -bell_the_cat v 1 1 @ 1 0 02545939 -bellow v 2 2 @ + 2 1 01048569 01048718 -belly v 1 2 @ + 1 0 00257535 -belly-flop v 1 2 @ ; 1 0 01963316 -belly-land v 1 2 @ ; 1 0 01980617 -belly_dance v 1 3 @ + ; 1 0 01710190 -belly_out v 1 1 @ 1 0 00257535 -bellyache v 1 2 @ + 1 0 00910973 -bellylaugh v 1 1 @ 1 0 00029742 -belong v 6 3 @ ~ + 6 4 02301680 02737724 02737876 02737569 02756359 02719930 -belong_to v 1 1 ~ 1 1 02719930 -belt v 3 3 ! @ + 3 2 01704030 01415162 01366061 -belt_along v 1 2 @ ~ 1 0 02058994 -belt_down v 1 1 @ 1 0 01202374 -belt_out v 1 1 @ 1 1 01704030 -belt_up v 1 0 1 0 01041061 -bemire v 1 2 @ ~ 1 0 01534147 -bemoan v 1 1 @ 1 1 00911350 -bemock v 1 2 @ ~ 1 0 00849080 -bemuse v 1 2 @ + 1 0 01791232 -bench v 2 2 @ + 2 1 02482889 02141722 -bend v 6 5 ! @ ~ * + 6 5 02035919 02033137 01280014 02062632 02034300 01280488 -bend_over_backwards v 1 1 @ 1 0 00011361 -benday v 1 1 @ 1 0 01750061 -benefact v 1 2 @ + 1 0 02548219 -benefice v 1 2 @ + 1 0 02201521 -beneficiate v 1 3 @ + ; 1 0 00577170 -benefit v 2 3 @ ~ + 2 2 02290461 02290956 -benficiate v 1 1 @ 1 0 00238255 -benight v 3 1 @ 3 0 01809884 01380483 00313860 -benumb v 1 1 @ 1 0 02115273 -beplaster v 1 2 @ $ 1 0 01612964 -bequeath v 1 4 ! @ ~ $ 1 0 02229055 -berate v 1 2 @ ~ 1 1 00824767 -bereave v 1 2 @ + 1 0 02315421 -berry v 1 3 @ ~ + 1 0 01384102 -berth v 3 3 @ ~ + 3 0 02336947 01305542 01305361 -beseech v 1 1 @ 1 1 00759657 -beseem v 1 1 @ 1 0 02699941 -beset v 3 2 @ ~ 3 2 01789514 01126700 01517355 -beshrew v 1 1 @ 1 0 00865958 -besiege v 3 3 @ ~ + 3 1 01127411 01798287 00778122 -besmear v 1 1 @ 1 0 01251828 -besmirch v 2 2 @ ~ 2 2 00846509 01252601 -besot v 1 1 @ 1 0 02115618 -bespangle v 2 1 @ 2 0 01669906 01377444 -bespatter v 1 1 @ 1 0 01538629 -bespeak v 2 3 @ ~ $ 2 1 00921300 00752764 -bespeckle v 1 1 @ 1 0 01538310 -bespot v 1 1 @ 1 0 01273529 -besprinkle v 1 1 @ 1 0 00228655 -best v 1 2 @ ~ 1 1 01109259 -bestialise v 1 1 @ 1 0 00410244 -bestialize v 1 2 @ + 1 0 00410244 -bestir v 1 1 @ 1 0 02083806 -bestir_oneself v 1 1 @ 1 0 00348541 -bestow v 3 3 @ ~ + 3 2 02263346 02263692 02324478 -bestrew v 1 1 @ 1 0 01378331 -bestride v 1 2 @ ~ 1 0 01923414 -bet v 3 5 @ ~ ^ $ + 3 1 00918580 01155687 00712708 -bet_on v 1 2 @ ~ 1 1 01139104 -betake_oneself v 1 1 @ 1 0 01839963 -bethink v 2 2 @ > 2 2 02166761 00683127 -betide v 1 1 @ 1 0 00345000 -betoken v 2 2 @ ~ 2 0 00921300 00871942 -betray v 6 4 @ ~ $ + 6 5 00936330 02537407 01799235 02576503 00841986 00854420 -betroth v 1 2 @ + 1 0 00886602 -better v 3 6 ! @ ~ > $ + 3 3 01106864 00205885 00205046 -bevel v 1 3 @ ~ + 1 1 01583993 -bewail v 1 1 @ 1 1 00911350 -beware v 1 1 @ 1 1 00724664 -bewhisker v 1 1 @ 1 0 02332173 -bewilder v 2 3 @ ~ + 2 2 00622384 01791232 -bewitch v 3 3 @ ~ + 3 1 01806505 00777522 00776988 -bewray v 1 1 @ 1 0 00936330 -bias v 2 3 @ ~ + 2 0 01085677 00680346 -bib v 1 1 @ 1 0 01172114 -bicker v 1 2 @ + 1 1 00774056 -bicycle v 1 3 @ ~ + 1 0 01935476 -bid v 6 5 @ ~ * + ; 6 6 02298632 00902932 00759657 02300060 02240674 00793580 -bide v 1 3 @ ~ ; 1 1 02637202 -biff v 1 2 @ + 1 0 01416020 -bifurcate v 2 2 @ + 2 0 02718863 00329817 -bight v 1 2 @ + 1 0 01342536 -bike v 1 3 @ ~ + 1 0 01935476 -bilge v 2 3 @ > + 2 0 00258528 00257947 -bilk v 4 2 @ ~ 4 1 02572792 02558172 02313801 02074377 -bill v 3 4 @ ~ $ + 3 2 02320374 00977153 00991900 -billet v 1 3 @ + ; 1 0 02653159 -billow v 4 3 @ ~ + 4 1 02041422 02041728 02041206 00256117 -bin v 1 2 @ + 1 0 01493142 -bind v 10 7 ! @ ~ * $ + ; 10 6 01356750 02538086 01303242 01303547 01286913 00885217 01335804 01285440 00567291 00074558 -bind_off v 1 2 @ ; 1 1 01286038 -bind_over v 1 2 @ ; 1 0 02495592 -binge v 1 2 @ + 1 0 01193099 -bioassay v 1 2 @ + 1 0 00695120 -biodegrade v 1 1 @ 1 0 00191220 -birch v 1 2 @ + 1 0 01411978 -bird v 1 2 @ + 1 0 01139865 -bird-nest v 1 1 @ 1 0 01383245 -birdie v 1 3 @ + ; 1 1 01598507 -birdlime v 1 2 @ + 1 0 02083237 -birdnest v 1 1 @ 1 0 01383245 -birdwatch v 1 2 @ + 1 0 01139865 -birl v 2 1 @ 2 0 02048272 02048051 -birle v 1 1 @ 1 0 02048272 -birr v 1 2 @ + 1 0 02188587 -birth v 1 5 @ ~ * $ + 1 0 00056930 -bisect v 1 2 @ + 1 0 01550817 -bitch v 2 2 @ + 2 0 00910973 00907657 -bite v 4 5 @ ~ ^ $ + 4 3 01445932 02120451 01441382 01445407 -bite_off v 1 1 @ 1 1 01445756 -bite_out v 1 1 @ 1 1 00985706 -bitt v 1 2 @ + 1 0 01286554 -bitter v 1 2 @ + 1 0 02195751 -bituminise v 1 1 @ 1 0 00517240 -bituminize v 1 2 @ + 1 0 00517240 -bivouac v 1 2 @ + 1 0 02653996 -blab v 2 4 @ ~ $ + 2 1 00937208 01036804 -blab_out v 1 2 @ $ 1 0 00937208 -blabber v 1 3 @ ~ + 1 0 01036804 -black v 1 2 @ + 1 0 00280532 -black_market v 1 4 @ $ + ; 1 0 02242256 -black_marketeer v 1 3 @ + ; 1 0 02246166 -black_out v 4 3 @ ~ + 4 4 02762299 00312648 00201906 00023868 -blackball v 2 4 @ ~ * + 2 0 02504017 02473431 -blackberry v 1 2 @ + 1 0 01383089 -blacken v 2 4 ! @ ~ ; 2 1 00280532 00379440 -blacken_out v 1 1 @ 1 0 00312648 -blackguard v 2 2 @ ~ 2 0 00851933 00845299 -blackjack v 1 1 @ 1 0 02581073 -blacklead v 1 1 @ 1 0 01602821 -blackleg v 1 2 @ + 1 0 02412939 -blacklist v 1 2 @ + 1 0 02473143 -blackmail v 2 3 @ + ; 2 0 02581073 02241767 -blacktop v 1 2 @ + 1 0 01266604 -blackwash v 2 1 @ 2 0 00847365 00281703 -blame v 3 3 ! @ + 3 3 00842538 00842772 00727991 -blanch v 2 2 @ ; 2 1 00103619 00322559 -blandish v 1 3 @ ~ + 1 0 00880227 -blank v 1 1 @ 1 0 02451261 -blank_out v 2 2 @ ~ 2 0 00609100 00202089 -blanket v 2 2 @ + 2 1 01359007 02749405 -blanket_jam v 1 1 @ 1 0 01057837 -blare v 2 3 @ ~ + 2 1 02182479 02183175 -blare_out v 1 1 @ 1 0 00975334 -blarney v 1 3 @ ~ + 1 0 00768778 -blaspheme v 2 3 @ $ + 2 1 00865387 00814458 -blast v 10 4 @ ~ $ + 10 3 02182479 01401772 01135922 02101216 01759021 01758276 01134781 00823827 00336158 00241924 -blast_off v 1 2 @ + 1 0 01515056 -blat v 1 1 @ 1 0 01048330 -blat_out v 1 1 @ 1 0 00975334 -blate v 1 1 @ 1 0 01048330 -blather v 1 2 @ + 1 0 01037650 -blaze v 5 3 @ ^ + 5 2 02764614 01135086 02764438 02014863 00922025 -blaze_away v 3 2 @ ; 3 2 01713587 01135086 00767918 -blaze_out v 1 1 @ 1 1 02014863 -blaze_up v 1 1 @ 1 0 02762806 -blazon v 1 3 @ + ; 1 0 01684180 -blazon_out v 1 1 @ 1 0 00974786 -bleach v 2 3 @ ~ + 2 1 00279822 00279465 -bleach_out v 1 1 @ 1 0 00279822 -blear v 1 2 @ > 1 0 00312990 -bleat v 2 2 @ + 2 2 01048492 01048330 -bleed v 5 5 @ ~ $ + ; 5 2 00074834 00086077 02360003 02060792 00449153 -bleep v 1 2 @ + 1 0 02187171 -blemish v 3 3 @ ~ + 3 0 01549905 01538161 00263044 -blench v 1 1 @ 1 0 00103619 -blend v 3 4 @ ~ $ + 3 2 01462468 02700455 00394813 -blend_in v 2 3 @ ~ $ 2 0 02700455 00396035 -bless v 4 4 ! @ ~ + 4 3 00866505 02264075 00867231 00866702 -blether v 1 2 @ + 1 0 01037650 -blight v 1 2 @ + 1 1 02771320 -blind v 3 3 @ ~ + 3 2 02168555 02168194 00312278 -blindfold v 1 2 @ + 1 0 01337927 -blindside v 2 1 @ 2 0 02596730 01120612 -blink v 3 3 @ ~ + 3 2 00007739 00008435 02159890 -blink_away v 1 1 @ 1 0 00008435 -blinker v 1 2 @ + 1 0 01337819 -blister v 3 3 @ $ + 3 1 00379774 00863906 00379996 -blither v 1 1 @ 1 0 01037650 -blitz v 1 2 @ + 1 0 01126219 -blitzkrieg v 1 1 @ 1 0 01093365 -bloat v 2 4 @ ~ > + 2 1 00361797 00361952 -blob v 1 4 @ ~ $ + 1 0 01531998 -block v 16 5 ! @ ~ $ + 16 4 01478002 02557199 02559752 01057034 02444297 02198423 02145543 01531492 01479333 01476483 01217924 01147060 00609100 00477528 00477382 00269423 -block_off v 3 3 @ ~ $ 3 1 01126961 01478002 01477394 -block_out v 4 3 @ ~ ; 4 1 00711236 01477538 01358737 01006699 -block_up v 1 3 @ ~ $ 1 0 01478002 -blockade v 4 4 @ ~ $ + 4 0 02557199 01478002 01126961 01126846 -blog v 1 1 @ 1 0 00865280 -blood v 1 2 @ + 1 0 01233642 -bloody v 1 1 @ 1 0 00228127 -bloom v 1 3 @ ~ + 1 1 00294245 -blossom v 2 3 @ ~ + 2 2 00294245 00293760 -blossom_forth v 1 1 @ 1 0 00293760 -blossom_out v 1 1 @ 1 0 00293760 -blot v 2 4 @ ~ $ + 2 0 01538928 01531998 -blot_out v 1 3 @ ~ $ 1 1 00313987 -blotch v 1 2 @ + 1 0 01696135 -bloviate v 1 1 @ 1 0 00829014 -blow v 22 4 @ ~ $ + 22 6 00007012 02769241 00034948 01902783 02135877 00477247 02527651 02268351 02266148 02178340 02135727 02117170 02101046 02100632 02068745 01849054 01545208 00934965 00883226 00779804 00435294 00310155 -blow-dry v 1 1 @ 1 0 00219224 -blow_a_fuse v 1 1 @ 1 0 01795428 -blow_off v 1 1 @ 1 1 01290945 -blow_one's_stack v 1 1 @ 1 0 01795428 -blow_out v 3 3 @ ~ + 3 1 00435294 02761897 02761012 -blow_out_of_the_water v 1 2 @ ~ 1 0 01809064 -blow_over v 1 1 @ 1 0 00421691 -blow_up v 8 6 ! @ ~ > + ; 8 2 00306723 00240293 01795428 00956405 00306298 00264386 00264034 00263682 -blub v 1 1 @ 1 0 00067274 -blubber v 2 2 @ + 2 1 00067274 00943732 -blubber_out v 1 1 @ 1 0 00943732 -bludgeon v 2 2 @ + 2 0 02505606 01423929 -blue v 1 2 @ + 1 0 00521641 -blue-pencil v 1 1 @ 1 0 00200863 -blueprint v 1 2 @ + 1 0 01683582 -bluff v 2 3 @ + ; 2 0 01076953 00837872 -bluff_out v 1 2 @ ; 1 0 01076953 -blunder v 3 2 @ + 3 1 02566227 02051547 00981944 -blunder_out v 1 1 @ 1 0 00981944 -blunt v 5 2 @ ~ 5 1 00228019 02115273 01246444 00227913 00192051 -blur v 6 6 ! @ ~ > $ + 6 3 02158034 02161758 00620673 01251928 00312990 00311113 -blurt v 1 1 @ 1 1 00981944 -blurt_out v 1 1 @ 1 0 00981944 -blush v 2 2 @ + 2 1 00103317 00289159 -bluster v 3 3 @ ~ + 3 2 02770362 00883226 00012434 -board v 4 5 @ ~ * $ + 4 2 02018049 02656763 01177118 01176897 -board_up v 1 1 @ 1 0 01235224 -boast v 2 3 @ ~ + 2 2 00883226 02631659 -boat v 1 4 @ ~ + ; 1 0 01944692 -boat-race v 1 2 @ * 1 0 01086854 -bob v 5 5 @ ~ * + ; 5 1 01865383 01939811 01556178 00899352 00039121 -bob_about v 1 1 @ 1 0 01865866 -bob_around v 1 1 @ 1 0 01865866 -bob_under v 1 1 @ 1 0 02156963 -bob_up v 1 1 @ 1 0 02625786 -bobble v 1 1 @ 1 0 02527651 -bobsled v 1 3 @ + ; 1 0 01939811 -bode v 1 2 @ ~ 1 1 00871942 -bodge v 1 1 @ 1 0 02527651 -body v 1 2 @ + 1 0 02698944 -body-surf v 1 1 @ 1 0 01948339 -body_forth v 1 1 @ 1 0 02698443 -body_guard v 1 3 @ * + 1 0 02026868 -bodypaint v 1 1 @ 1 0 01681635 -bog v 2 1 @ 2 1 00363916 00363742 -bog_down v 4 3 @ > $ 4 1 00363742 01835103 01834896 00363916 -bogey v 1 3 @ + ; 1 1 01598921 -boggle v 3 1 @ 3 1 01910779 02640311 00726153 -boil v 5 5 ! @ ~ > + 5 3 00375021 00328128 00374668 01885430 01767612 -boil_down v 3 2 @ ; 3 1 00237704 00237259 00236999 -boil_over v 1 1 @ 1 0 00375268 -boldface v 1 2 @ + 1 0 01748916 -bollix v 1 1 @ 1 0 02527651 -bollix_up v 1 1 @ 1 0 02527651 -bollocks v 1 1 @ 1 0 02527651 -bollocks_up v 1 1 @ 1 0 02527651 -bolshevise v 1 2 @ + 1 0 00409281 -bolshevize v 1 2 @ + 1 0 00409281 -bolster v 3 2 @ + 3 1 00223374 01219282 00321486 -bolster_up v 1 1 @ 1 0 00223374 -bolt v 7 4 ! @ ~ + 7 3 01966039 01348838 01202651 02073714 02011040 01173933 00436304 -bolt_down v 2 1 @ 2 0 01202374 01174099 -bolt_out v 1 1 @ 1 1 02011040 -bomb v 2 4 @ ~ $ + 2 1 01131902 02523521 -bomb_out v 1 1 @ 1 0 01132541 -bomb_up v 1 1 @ 1 0 01488463 -bombard v 4 4 @ ~ + ; 4 0 01507914 01131902 00863579 00291624 -bombilate v 1 2 @ + 1 0 02182109 -bombinate v 1 2 @ + 1 0 02182109 -bombproof v 1 2 @ + 1 0 00166220 -bond v 4 4 @ ~ $ + 4 1 01356750 02538086 02351925 01607072 -bonderise v 1 1 @ 1 0 01266457 -bonderize v 1 1 @ 1 0 01266457 -bone v 2 4 @ $ + ; 2 0 00605783 00197423 -bone_up v 1 2 @ $ 1 0 00605783 -bong v 1 1 @ 1 0 02184503 -bonk v 2 3 @ ~ $ 2 0 01426397 01397088 -bonnet v 1 2 @ + 1 0 00047511 -boo v 1 3 ! @ + 1 1 00862225 -boob v 1 2 @ + 1 0 02566227 -boogie v 1 2 @ + 1 0 01897203 -book v 4 5 @ ~ * $ + 4 3 00678777 02498320 02498136 02599754 -book_up v 1 1 @ 1 0 00794880 -boom v 5 4 @ ~ * + 5 2 02187510 01401772 02770535 02174662 00310386 -boom_out v 1 1 @ 1 0 02174662 -boomerang v 1 2 @ + 1 1 02005778 -boondoggle v 1 2 @ + 1 0 02447247 -boost v 5 3 @ ~ + 5 4 01975912 00310937 02554922 00497061 01516071 -boost_up v 1 1 @ 1 1 01873784 -boot v 2 3 @ ^ + 2 0 01372556 00098346 -boot_out v 2 2 @ ~ 2 0 02401809 01468576 -bootleg v 2 3 @ + ; 2 0 02242049 01625985 -bootlick v 1 3 @ ~ + 1 0 00880978 -bootstrap v 1 1 @ 1 0 02552052 -booze v 1 4 @ ~ $ + 1 0 01171183 -bop v 2 2 @ + 2 0 01895263 01397088 -border v 5 4 @ ~ ^ + 5 3 01467370 02710673 01586850 02361600 01466978 -border_on v 1 2 @ ~ 1 1 02703952 -bore v 2 4 ! @ ~ + 2 2 01821884 01443021 -borrow v 2 3 ! @ + 2 2 02324026 02346724 -bosom v 2 3 @ ~ + 2 0 02147313 01424456 -boss v 1 3 @ ~ + 1 0 01531265 -boss_around v 1 2 @ ~ 1 0 01781520 -botanise v 1 2 @ + 1 0 00645415 -botanize v 1 2 @ + 1 0 00645415 -botch v 1 2 @ + 1 0 02527651 -botch_up v 1 1 @ 1 0 02527651 -bother v 6 4 @ ~ $ + 6 3 02507464 01787955 02507736 02018858 01791535 01791408 -bottle v 2 2 @ + 2 0 02283080 01502279 -bottle_up v 1 2 @ ~ 1 0 02423762 -bottlefeed v 1 2 ! @ 1 0 01187271 -bottleneck v 2 2 @ + 2 0 02557902 00304946 -bottom v 3 3 @ + ; 3 0 02337699 01238358 00728954 -bottom_out v 2 2 ! @ 2 0 02007898 01238500 -bounce v 7 6 ! @ ~ > $ + 7 5 01892104 01404389 01892608 02254923 01964788 02254767 01469080 -bounce_back v 1 1 @ 1 1 00268011 -bounce_out v 1 2 @ ; 1 1 01404538 -bound v 4 3 @ ~ + 4 4 01963942 02710673 00233335 01892104 -bound_off v 1 1 @ 1 0 01892734 -bourgeon v 1 2 @ $ 1 0 00357332 -bouse v 1 1 @ 1 0 01455095 -bow v 5 6 @ ~ * ^ + ; 5 3 00898691 00878348 02040273 02062632 01729295 -bow_down v 2 2 @ ~ 2 1 02063610 00898691 -bow_out v 2 3 @ ~ $ 2 0 02380980 02380760 -bowdlerise v 1 2 @ + 1 0 00201034 -bowdlerize v 1 2 @ + 1 0 00201034 -bower v 1 2 @ + 1 0 01390210 -bowl v 3 4 @ ~ + ; 3 0 01887324 01616738 01146507 -bowl_over v 2 3 @ > $ 2 0 01909978 00726153 -bowse v 1 1 @ 1 0 01455095 -box v 3 5 ! @ ~ + ; 3 1 01485158 01420765 01419982 -box_in v 1 1 @ 1 1 02711721 -box_up v 1 1 @ 1 0 02711721 -boycott v 1 3 ! @ + 1 1 02465494 -brabble v 1 1 @ 1 0 00774056 -brace v 4 3 @ ~ + 4 3 01806109 01219993 01219706 00022686 -brace_oneself_for v 1 1 @ 1 0 00273257 -brace_up v 1 1 @ 1 0 00221718 -brachiate v 1 2 @ + 1 0 01891489 -bracket v 3 2 @ + 3 0 01218791 00800586 00656916 -bracket_out v 1 1 @ 1 0 00800586 -brad v 1 2 @ + 1 0 01342439 -brag v 1 3 @ ~ + 1 1 00883226 -braid v 3 4 ! @ + ; 3 1 01674717 01519727 01519569 -brail v 2 1 @ 2 0 01214927 01141413 -braille v 1 2 @ + 1 0 00995716 -brain v 2 2 @ + 2 0 01401676 01327020 -brainstorm v 1 2 @ + 1 0 00630223 -brainwash v 2 1 @ 2 0 00769989 00605671 -braise v 1 2 @ ; 1 0 00325208 -brake v 2 5 @ ~ $ + ; 2 0 01863817 01863593 -branch v 2 5 @ ~ ^ $ + 2 0 00329244 00328802 -branch_out v 1 1 @ 1 1 00436404 -brand v 4 2 @ + 4 1 02508663 02508245 01588876 01031109 -brandish v 2 4 @ ~ * + 2 2 01446901 02142520 -brandmark v 1 1 @ 1 0 01588876 -brattice v 1 1 @ 1 0 02336375 -brattle v 1 1 @ 1 0 02172127 -brave v 1 2 @ + 1 1 02707251 -brave_out v 1 1 @ 1 0 02707251 -bravo v 1 2 @ + 1 0 00860482 -brawl v 1 2 @ + 1 0 00774344 -bray v 3 3 @ ~ + 3 0 01054553 00331082 00029630 -braze v 1 1 @ 1 0 01595697 -brazen v 1 1 @ 1 0 00868471 -breach v 2 3 @ ~ + 2 2 02566528 01593614 -bread v 1 3 @ + ; 1 0 01337653 -break v 59 8 ! @ ~ > ^ $ + ; 59 22 00364064 00334186 00258665 01369758 00334996 02566528 02073233 02029369 01785395 00362348 02570684 00202569 02668523 01106864 00933821 00558536 00434374 02535716 02030764 01972976 00390215 00202784 02746617 02746449 02681639 02681524 02625187 02600082 02559395 02478469 02431320 02399331 02318165 02101373 01991347 01989053 01896484 01610666 01610463 01597995 01557646 01369346 01298931 01228524 01228396 00935987 00779061 00778745 00744439 00738440 00738314 00551412 00339464 00336260 00258366 00155046 00107739 00107604 00030463 -break-dance v 1 1 @ 1 0 01896484 -break_apart v 3 2 @ $ 3 0 01657977 01562061 00368662 -break_away v 5 4 @ ~ $ + 5 2 02073233 01259691 02535716 02535457 02075049 -break_bread v 1 1 @ 1 0 01172545 -break_camp v 1 1 @ 1 1 02076857 -break_dance v 1 2 @ + 1 0 01896484 -break_down v 8 6 @ ~ > $ + ; 8 5 01103836 00643473 01784295 00434374 02041877 01370126 00209174 00030647 -break_even v 2 2 ! @ 2 2 02280018 02007237 -break_in v 6 5 @ ~ > $ + 6 3 02570684 00780191 00347804 01207817 00335555 00202569 -break_into v 2 1 @ 2 2 00986417 00549396 -break_loose v 2 2 @ ~ 2 2 00306539 02074677 -break_off v 5 2 @ ~ 5 3 00362805 00362348 01259691 01298931 01259458 -break_one's_back v 1 1 @ 1 1 02421199 -break_open v 3 2 @ ~ 3 1 01346430 00309310 00307785 -break_out v 5 3 @ $ + 5 5 00345508 00346958 02073233 01485732 00309074 -break_short v 1 2 @ ~ 1 0 00362805 -break_someone's_heart v 1 1 @ 1 0 01792951 -break_through v 3 4 @ ~ $ + 3 2 00539770 00426749 00548266 -break_up v 19 7 @ ~ * > $ + ; 19 6 02030424 02431320 02029663 01562061 00778275 00447309 01785579 01657977 01610463 01560984 01442578 01215017 00364297 00355955 00355803 00338071 00330565 00209174 00030366 -break_water v 1 1 @ 1 0 01961510 -break_wind v 1 1 @ 1 0 00101629 -break_with v 1 1 @ 1 1 02431834 -breakfast v 2 2 @ + 2 1 01185740 01185875 -bream v 1 1 @ 1 0 01245229 -breast v 3 2 @ + 3 0 02710244 02021149 01079172 -breastfeed v 1 3 ! @ $ 1 0 01186428 -breaststroke v 1 3 @ + ; 1 0 01962178 -breathalyse v 1 1 @ 1 0 02533597 -breathalyze v 1 1 @ 1 0 02533597 -breathe v 9 6 @ ~ * ^ $ + 9 3 00001740 02617083 02325272 02751787 00941346 00929703 00779360 00239754 00105333 -breathe_in v 1 2 @ ~ 1 1 00005041 -breathe_out v 1 2 @ ~ 1 0 00004227 -brecciate v 2 2 @ + 2 0 01585021 00338964 -breed v 4 5 @ ~ $ + ; 4 2 01649024 01430447 01429455 00056334 -breeze v 2 3 @ ^ + 2 0 02769480 01894520 -breeze_through v 1 1 @ 1 0 02522581 -brevet v 1 2 @ + 1 0 02554797 -brew v 2 3 @ * + 2 0 01663920 00327813 -bribe v 1 4 @ ~ + ; 1 1 02284096 -brick_in v 1 1 @ 1 0 01390078 -brick_over v 1 1 @ 1 0 01390078 -brick_up v 1 1 @ 1 0 01390078 -bridge v 3 3 @ ^ + 3 2 02623194 01296324 01915131 -bridge_over v 2 1 @ 2 0 02623346 02623194 -bridle v 3 4 ! @ ~ + 3 0 01786292 01300655 01056918 -bridle_at v 1 1 @ 1 0 00848894 -bridle_up v 1 1 @ 1 0 00848894 -brief v 1 2 @ + 1 1 00831273 -brigade v 1 2 @ + 1 0 01090216 -brighten v 2 2 ! @ 2 1 00312815 02771169 -brim v 2 2 @ + 2 0 02715812 00182269 -brim_over v 1 3 @ ~ * 1 1 02072159 -brine v 1 3 @ + ; 1 0 00216561 -bring v 11 6 ! @ ~ * ^ $ 11 9 02077656 01438902 01629589 01433294 00135857 01434140 01618547 02324478 02247390 01808218 00767334 -bring_about v 2 2 @ ~ 2 0 02090679 01752884 -bring_around v 3 4 @ ~ * ; 3 0 00767122 00081725 00022099 -bring_back v 2 2 @ ~ 2 2 02078294 00022099 -bring_down v 6 5 @ ~ > $ ; 6 3 01973125 02402409 00748282 01981036 01830307 00429060 -bring_forth v 4 2 @ ~ 4 4 01627355 02141146 01752495 00054628 -bring_forward v 2 2 @ ~ 2 2 01993926 01025455 -bring_home v 2 1 @ 2 1 00543161 02289854 -bring_home_the_bacon v 2 3 @ ~ * 2 0 02524171 02219442 -bring_in v 5 4 @ ~ * $ 5 3 02078591 02289295 02247390 02262932 02080783 -bring_off v 1 1 @ 1 0 02522864 -bring_on v 3 3 @ ~ > 3 1 01644050 02157100 01644238 -bring_oneself v 1 1 @ 1 1 02507278 -bring_out v 9 4 @ ~ > $ 9 4 02143283 01475301 00967625 00514463 02157100 01818669 01214597 01065115 00933821 -bring_outside v 1 1 @ 1 0 02084104 -bring_round v 2 2 @ ~ 2 0 00767122 00022099 -bring_through v 1 1 ~ 1 0 02551832 -bring_to v 1 3 ! @ ~ 1 0 00022099 -bring_to_bear v 1 1 @ 1 1 02560999 -bring_together v 2 3 @ ~ > 2 2 01295275 01607072 -bring_up v 8 4 @ ~ > $ 8 5 01629958 02539788 02398161 01974062 01859854 01025246 01024190 00098346 -brisk v 1 1 @ 1 0 00205766 -brisk_up v 1 1 @ 1 0 00205766 -brisken v 1 1 @ 1 0 00205766 -bristle v 4 2 @ + 4 2 02715595 01983597 02715456 00651298 -bristle_at v 1 1 @ 1 1 00848894 -bristle_up v 1 1 @ 1 0 00848894 -broach v 1 2 @ ~ 1 0 00964911 -broadcast v 3 6 @ ~ > $ + ; 3 1 00973056 01501184 00968211 -broaden v 4 4 @ ~ > $ 4 4 00317569 00540235 00436404 00317468 -broadside v 1 2 @ + 1 0 01237231 -brocade v 1 3 @ + ; 1 0 01674243 -broider v 1 3 @ ~ * 1 0 01667607 -broil v 3 4 @ ~ + ; 3 2 00328370 00544136 02755565 -broker v 1 3 @ + ; 1 0 02261464 -bromate v 2 2 @ + 2 0 00525674 00187016 -brominate v 2 2 @ + 2 0 00525674 00187016 -bronze v 2 3 @ ~ + 2 0 00281913 00103875 -brooch v 1 2 @ + 1 0 01548576 -brood v 5 5 @ ~ * $ + 5 2 00704249 02744061 02719016 01805384 00060185 -brook v 1 3 @ ~ $ 1 1 00668099 -broom v 2 3 @ $ + 2 0 01393714 01266375 -browbeat v 2 2 @ ~ 2 1 01781520 01035199 -brown v 2 3 @ + ; 2 1 00320246 00285705 -brown-nose v 1 1 @ 1 0 00881534 -browse v 4 5 @ ~ $ + ; 4 0 02326355 01576165 01315333 01174742 -bruise v 4 4 @ ~ + ; 4 1 01492725 01793177 00339268 00259560 -bruit v 1 1 @ 1 1 01042228 -brunch v 1 2 @ + 1 0 01185604 -brush v 6 4 @ ~ $ + 6 5 01243809 01240720 01243982 01870043 00555780 01373718 -brush_aside v 1 2 @ ~ 1 1 00800930 -brush_down v 1 1 @ 1 0 00825648 -brush_off v 1 3 @ ~ + 1 0 00800930 -brush_on v 1 1 @ 1 1 01265386 -brush_up v 2 2 @ + 2 1 00696852 00473799 -brutalise v 3 2 @ + 3 0 02515934 00114052 00113853 -brutalize v 3 2 @ + 3 0 02515934 00114052 00113853 -bubble v 5 6 @ ~ > ^ $ + 5 1 00519056 02187922 01969084 00519229 00003431 -bubble_over v 1 1 @ 1 1 01763101 -bubble_up v 1 1 @ 1 0 01990946 -buccaneer v 1 2 @ + 1 0 02616012 -buck v 4 4 @ ~ $ + 4 2 02531500 02378851 02055267 01884383 -buck_up v 1 1 @ 1 1 01806407 -bucket v 2 2 @ + 2 0 01502441 01433042 -bucket_along v 1 2 @ ~ 1 0 02058994 -buckle v 3 4 ! @ ~ + 3 3 01548290 01279186 00356954 -buckle_down v 1 1 @ 1 0 02421199 -buckle_under v 1 2 @ ~ 1 0 00804476 -buckram v 1 2 @ + 1 0 00417975 -bud v 2 2 @ + 2 2 00357998 00345652 -budge v 1 1 @ 1 1 01893988 -budget v 1 2 @ + 1 1 00724029 -budget_for v 1 1 @ 1 0 00723851 -buff v 2 2 @ + 2 1 01417578 01246095 -buffalo v 1 1 @ 1 0 01780010 -buffer v 2 2 @ + 2 1 00513344 01576917 -buffet v 2 1 @ 2 1 01417705 01417578 -bug v 2 2 @ + 2 1 01803380 02188848 -bug_out v 1 1 @ 1 1 02081946 -bugger v 1 2 @ + 1 0 02568392 -bugger_off v 1 1 @ 1 0 02010864 -bugle v 1 3 @ + ; 1 0 01726039 -build v 10 5 @ ~ $ + ; 10 4 01654628 00252990 01655505 00447158 02443424 01739099 01685601 00637115 00253277 00226882 -build_in v 1 1 @ 1 0 00467151 -build_on v 1 2 @ ~ 1 1 02663643 -build_up v 5 4 @ ~ $ + 5 3 00154608 00252990 01087197 00253277 00171852 -build_upon v 1 2 @ ~ 1 0 02663643 -bulge v 4 4 @ ~ > + 4 1 00263231 02714360 02081946 00256369 -bulge_out v 1 1 @ 1 0 02081946 -bulk v 2 2 @ > 2 1 00263564 00256369 -bulk_large v 1 2 @ ~ 1 0 02744061 -bull v 4 4 @ $ + ; 4 1 02374449 02272373 00839526 00156139 -bull_through v 1 1 @ 1 0 02374449 -bulldog v 2 2 @ + 2 0 01119030 01108815 -bulldoze v 1 3 @ * + 1 0 01575388 -bullet_vote v 1 1 @ 1 0 02462858 -bulletin v 1 2 @ + 1 1 00955033 -bulletproof v 1 2 @ + 1 0 00166331 -bullshit v 1 2 @ + 1 1 00839526 -bully v 2 3 @ ~ + 2 0 01781520 01035199 -bully_off v 1 1 @ 1 0 01084048 -bullyrag v 1 2 @ ~ 1 0 01781520 -bulwark v 1 2 @ + 1 0 01128071 -bum v 2 3 @ ~ + 2 1 02270404 02639606 -bum_about v 1 1 @ 1 0 02639606 -bum_around v 1 1 @ 1 0 02639606 -bumble v 3 2 @ + 3 0 02527651 01901133 00981544 -bump v 5 4 @ ~ ^ + 5 3 01239619 02248465 01895383 02399331 01527508 -bump_around v 1 1 @ 1 0 01865051 -bump_into v 1 1 @ 1 1 01240308 -bump_off v 1 2 @ ~ 1 1 02482425 -bump_up v 1 1 @ 1 0 00158687 -bunch v 2 3 @ ~ + 2 2 02027411 01484392 -bunch_together v 1 1 @ 1 0 02027411 -bunch_up v 2 2 @ ~ 2 0 02027411 01484392 -bunco v 1 3 @ ~ + 1 0 02572119 -bundle v 4 5 @ ~ ^ $ + 4 1 01487008 01484392 01483779 00015163 -bundle_off v 1 2 @ > 1 0 01955009 -bundle_up v 2 1 @ 2 0 01487008 00047032 -bung v 2 2 @ + 2 0 02202133 01345769 -bungle v 2 2 @ + 2 0 02527651 00013172 -bunk v 3 3 @ ~ + 3 0 02573853 02337230 02075049 -bunk_down v 1 2 @ ~ 1 0 00017531 -bunk_off v 1 2 @ ; 1 0 02614023 -bunker v 3 2 @ + 3 1 01404278 02338872 02013322 -bunt v 2 4 @ ~ + ; 2 0 01408297 01235769 -buoy v 3 2 @ + 3 0 01904795 01218512 00922771 -buoy_up v 3 2 @ > 3 1 00860136 01814074 01218512 -bur v 1 2 @ + 1 0 00181434 -burble v 1 2 @ $ 1 0 02187922 -burden v 2 4 ! @ ~ + 2 0 01487311 00750532 -burgeon v 1 1 @ 1 1 00357854 -burgeon_forth v 1 2 @ $ 1 0 00357332 -burglarise v 1 3 @ * + 1 0 02571511 -burglarize v 1 3 @ * + 1 0 02571511 -burgle v 1 3 @ * + 1 0 02571511 -burke v 2 1 @ 2 0 02482784 00462894 -burl v 1 2 @ + 1 0 00180495 -burlesque v 1 3 @ ~ + 1 0 00849939 -burn v 15 6 @ ~ * > $ + 15 12 00378664 02768874 00377002 02120451 02762468 01829292 00378042 02485322 02268881 02121048 00373766 00104299 01756277 01205000 00196364 -burn_down v 2 3 @ ~ $ 2 2 00377351 00378664 -burn_off v 2 1 @ 2 2 01205000 00196252 -burn_out v 1 1 @ 1 0 00435294 -burn_up v 3 2 @ ~ 3 1 02762806 01205000 00377351 -burnish v 1 2 @ + 1 0 01246095 -burp v 1 2 @ + 1 0 00003431 -burr v 1 2 @ + 1 0 00181434 -burrow v 1 2 @ + 1 1 02042067 -burst v 8 5 @ ~ > $ + 8 6 00309310 01785395 00306017 01964634 02715595 00424224 01989562 00333594 -burst_forth v 3 1 @ 3 0 01966501 00306539 00294522 -burst_in_on v 1 1 @ 1 0 00780444 -burst_out v 3 2 @ ~ 3 2 00930009 00426156 00307785 -burst_upon v 1 1 @ 1 0 00780444 -burthen v 1 3 @ ~ + 1 0 01487311 -bury v 6 4 @ ~ * + 6 5 02147466 02456493 01234625 01582409 01530098 00610167 -bus v 3 2 @ + 3 0 01950128 01949110 00180728 -bush v 1 2 @ + 1 0 02336255 -bush_out v 1 1 @ 1 0 02077546 -bushel v 1 2 @ ~ 1 0 00260648 -bushwhack v 3 2 @ + 3 1 01138204 02615880 02053723 -busk v 1 1 @ 1 0 01759166 -buss v 1 3 @ ~ + 1 0 01431230 -bust v 5 6 @ ~ > ^ $ + 5 1 01369758 02494850 01573515 01369346 00333594 -bust_up v 1 1 @ 1 0 01566185 -bustle v 1 3 @ * + 1 1 02058191 -bustle_about v 1 2 @ * 1 1 02058191 -busy v 1 2 @ ~ 1 1 02415831 -butcher v 1 4 @ ~ * + 1 1 01322854 -butt v 3 4 @ ~ ^ + 3 3 01466978 01235769 01498713 -butt-weld v 1 2 @ + 1 0 01596404 -butt_against v 2 2 @ ~ 2 1 01466978 01240308 -butt_in v 1 2 @ ~ 1 0 00780191 -butt_on v 1 2 @ ~ 1 0 01466978 -butter v 1 2 @ + 1 0 01267998 -butter_up v 1 1 @ 1 0 00881534 -butterfly v 3 3 @ ~ ; 3 0 01900156 01613921 01037910 -button v 2 4 ! @ * + 2 0 01368126 01367862 -button_up v 1 0 1 0 01041061 -buttonhole v 1 1 @ 1 0 02458943 -buttress v 2 2 @ + 2 0 00222861 00222728 -buttweld v 1 2 @ + 1 0 01596404 -butylate v 1 3 @ + ; 1 0 00184633 -buy v 5 8 ! @ ~ * ^ $ + ; 5 2 02207206 02284096 02646757 02212103 00683670 -buy_at v 1 1 @ 1 0 02466134 -buy_back v 1 2 @ + 1 0 02207890 -buy_food v 1 1 @ 1 0 02326955 -buy_in v 1 3 @ ~ ; 1 0 02323286 -buy_into v 1 2 @ ; 1 0 02284544 -buy_it v 1 2 @ ; 1 1 00359806 -buy_off v 1 2 @ ; 1 0 02284803 -buy_out v 1 2 @ + 1 1 02274299 -buy_the_farm v 1 3 @ ~ $ 1 0 00358431 -buy_time v 1 1 @ 1 1 00460759 -buy_up v 1 1 @ 1 1 02274299 -buzz v 4 4 @ ~ + ; 4 3 02182109 01924267 02706605 00792304 -buzz_off v 1 1 @ 1 0 02010864 -by-bid v 1 2 @ ; 1 0 02298998 -bypass v 1 2 @ + 1 1 00811171 -ca-ca v 1 3 @ ~ $ 1 0 00074038 -cab v 1 1 @ 1 0 01949007 -cabal v 1 3 @ ~ + 1 0 00706975 -cabbage v 1 2 @ + 1 0 02276866 -cabin v 1 2 @ + 1 0 01302577 -cable v 2 3 @ + ; 2 1 01007222 01288921 -cache v 1 2 @ + 1 0 02305856 -cachinnate v 1 2 @ + 1 0 00032414 -cackel v 1 1 @ 1 0 01056102 -cackle v 3 3 @ ~ + 3 3 01056554 01056369 00031418 -caddie v 1 3 @ + ; 1 0 01096860 -caddy v 1 3 @ + ; 1 0 01096860 -cadge v 2 3 @ ~ + 2 0 02270404 02270165 -cage v 1 2 @ + 1 0 02496036 -cage_in v 1 1 @ 1 0 02496036 -cajole v 1 3 @ ~ + 1 0 00768778 -cake v 1 1 @ 1 0 01262321 -cakewalk v 1 2 @ + 1 0 01896657 -calcify v 4 3 ! @ + 4 1 00498988 00572362 00498662 00498530 -calcimine v 1 2 @ + 1 0 01269988 -calcine v 1 3 @ + ; 1 0 00372251 -calculate v 6 5 @ ~ $ + ; 6 2 00637259 00712135 02265231 00926472 00713015 00712708 -calendar v 1 2 @ + 1 0 00678981 -calender v 1 2 @ + 1 0 01391095 -calibrate v 3 2 @ + 3 1 00295697 01589497 00739536 -caliper v 1 2 @ + 1 0 00647770 -calk v 3 3 @ + ; 3 0 01358191 01354565 00070736 -call v 28 8 @ ~ * > ^ $ + ; 28 10 01028748 00971015 00789448 00913065 00792471 02487573 02429810 01067995 01062739 00975036 02643421 02601456 02487901 02359061 02300060 01899017 01068793 00917772 00874002 00869393 00822746 00783523 00754156 00753881 00738747 00738583 00691516 00107231 -call_at v 1 1 @ 1 0 02017299 -call_attention v 1 1 @ 1 0 00924612 -call_back v 4 3 @ ~ + 4 2 02312478 00607780 00791764 00791506 -call_down v 2 3 @ ~ $ 2 0 01629958 00824767 -call_for v 4 3 @ ~ $ 4 3 00752764 02627934 01063695 02305586 -call_forth v 2 3 @ ~ $ 2 0 01646866 01629958 -call_in v 7 5 @ ~ $ + ; 7 5 01469960 00792011 02487573 02405120 00790135 02359061 02312478 -call_into_question v 1 1 @ 1 0 00867409 -call_it_a_day v 1 1 @ 1 0 02681335 -call_it_quits v 1 1 @ 1 0 02681335 -call_off v 2 1 * 2 1 02477755 01899017 -call_on v 1 1 @ 1 1 00794640 -call_on_the_carpet v 1 2 @ ~ 1 0 00824767 -call_one's_bluff v 1 1 @ 1 0 00868270 -call_out v 3 4 @ ~ $ + 3 2 00912048 00975584 00868979 -call_the_shots v 1 1 @ 1 0 02601271 -call_the_tune v 1 1 @ 1 0 02601271 -call_to_order v 1 1 @ 1 0 02425763 -call_up v 4 6 @ ~ * $ + ; 4 3 01025455 00789448 00607780 01097960 -calligraph v 1 2 @ + 1 0 01691660 -calliper v 1 2 @ + 1 0 00647770 -callous v 1 1 @ 1 0 00273114 -callus v 2 2 @ + 2 0 00255880 00255752 -calm v 4 4 ! @ ~ + 4 2 01764800 00416571 01763829 00022316 -calm_down v 3 2 @ ~ 3 1 01763829 01764800 00558061 -calumniate v 1 3 @ ~ + 1 1 00846509 -calve v 2 1 @ 2 0 01215017 00058897 -camber v 1 2 @ + 1 0 02035425 -camouflage v 1 2 @ + 1 1 02158896 -camp v 3 2 @ + 3 1 02653996 01514248 00525805 -camp_down v 1 1 @ 1 0 01514248 -camp_out v 1 1 @ 1 1 02653996 -campaign v 3 5 @ ~ * $ + 3 2 01094086 02589576 01093786 -camphorate v 1 2 @ + 1 0 00186912 -can v 2 4 @ ~ + ; 2 2 00213794 02402825 -canal v 1 2 @ + 1 0 02336015 -canalise v 2 2 @ + 2 0 02336015 01933900 -canalize v 2 2 @ + 2 0 02336015 01933900 -cancel v 5 4 @ ~ * + 5 1 02477755 02717831 02477334 01549187 00800460 -cancel_out v 1 1 @ 1 1 00471196 -candle v 1 2 @ + 1 0 02149899 -candy v 1 1 @ 1 0 02196378 -cane v 1 2 @ + 1 1 01412204 -canker v 2 2 @ + 2 0 00090075 00089973 -cannibalise v 2 3 @ * + 2 0 01162291 01162143 -cannibalize v 2 3 @ * + 2 0 01162291 01162143 -cannon v 2 3 @ + ; 2 0 01147987 01134522 -cannonade v 1 2 @ + 1 0 01136481 -cannonball_along v 1 2 @ ~ 1 0 02058994 -cannulate v 1 2 @ + 1 0 01422172 -cannulise v 1 2 @ + 1 0 01422172 -cannulize v 1 2 @ + 1 0 01422172 -canoe v 1 4 @ * + ; 1 0 01947543 -canonise v 2 3 @ + ; 2 0 00861077 00823129 -canonize v 2 3 @ + ; 2 1 00823129 00861077 -canoodle v 1 1 @ 1 0 01226781 -canopy v 1 2 @ + 1 0 01337526 -cant v 1 3 @ ~ + 1 0 01884577 -cant_over v 1 2 @ ~ 1 0 01884577 -canter v 3 3 @ + ; 3 1 01959340 01959669 01959482 -cantilever v 2 3 @ + ; 2 0 02714865 01656233 -cantillate v 1 3 @ ~ + 1 0 01049737 -canton v 2 3 @ + ; 2 0 02653159 02469596 -canulate v 1 2 @ + 1 0 01422172 -canvas v 4 3 @ ~ + 4 0 02458747 02454312 01268297 00644583 -canvass v 3 3 @ ~ + 3 1 02454312 02458747 00644583 -cap v 2 2 @ + 2 1 02693168 00236104 -cap_off v 1 1 @ 1 0 00485435 -capacitate v 3 3 @ + ; 3 0 00972457 00525932 00301179 -caparison v 1 2 @ + 1 0 01670315 -caper v 1 2 @ + 1 1 01967104 -capitalise v 6 3 @ ~ + 6 0 02330742 02279772 01692266 00731159 00731000 00162167 -capitalize v 6 3 @ ~ + 6 1 02279772 02330742 01692266 00731159 00731000 00162167 -capitulate v 1 2 @ + 1 1 01117812 -caponise v 1 2 @ + 1 0 00061079 -caponize v 1 2 @ + 1 0 00061079 -capriole v 2 1 @ 2 0 01964891 01895168 -capsize v 1 1 @ 1 0 01893313 -capsulate v 1 2 @ + 1 0 01581070 -capsule v 2 1 @ 2 0 01581070 00244416 -capsulise v 2 2 @ + 2 0 01581070 00244416 -capsulize v 2 2 @ + 2 0 01581070 00244416 -captain v 1 2 @ + 1 0 02440486 -caption v 1 2 @ + 1 0 02323870 -captivate v 1 3 @ ~ + 1 1 01806505 -capture v 6 4 @ ~ $ + 6 6 01686626 01806505 01215421 02304241 02272549 01480149 -caracole v 1 1 @ 1 0 01909161 -caramelise v 2 3 @ + ; 2 0 00114615 00114291 -caramelize v 2 3 @ + ; 2 0 00114615 00114291 -caravan v 1 2 @ + 1 0 01949333 -carbonate v 2 2 @ + 2 0 02627221 00186740 -carbonise v 2 4 @ * + ; 2 0 00373520 00369628 -carbonize v 2 4 @ * + ; 2 0 00373520 00369628 -carboxylate v 1 2 @ ; 1 0 00526081 -carburet v 1 2 @ ; 1 0 01599435 -carburise v 1 3 @ + ; 1 0 00373520 -carburize v 1 3 @ + ; 1 0 00373520 -card v 2 2 @ + 2 0 01356256 00663894 -care v 5 4 @ ~ ^ + 5 5 01822936 02550296 01824736 02436349 01766748 -care_a_hang v 1 0 1 1 01823149 -care_for v 3 2 @ ~ 3 1 01828623 01776214 00078760 -careen v 2 2 @ + 2 1 01924882 01884974 -career v 1 1 @ 1 1 02082181 -caress v 1 3 @ ~ + 1 1 01226215 -caricature v 1 2 @ + 1 1 00849592 -carjack v 1 3 @ + ; 1 0 01472417 -cark v 1 2 @ ~ 1 0 01764171 -carmine v 1 2 @ + 1 0 00535256 -carnalise v 1 1 @ 1 0 00133978 -carnalize v 3 2 @ + 3 0 01680473 00727012 00133978 -carnify v 1 1 @ 1 0 00499422 -carol v 1 3 @ + ; 1 0 01731828 -carom v 2 3 @ + ; 2 0 01892849 01598395 -carouse v 1 2 @ + 1 0 02493260 -carp v 1 2 @ + 1 0 00808671 -carpenter v 1 2 @ + 1 0 02408843 -carpet v 3 2 @ + 3 0 02749520 01235073 01234920 -carpet_bomb v 1 2 @ + 1 0 01132355 -carry v 40 6 @ ~ * $ + ; 40 17 01449974 02717102 02079933 01061017 01218084 01601234 02700867 02561168 00235110 02636325 01101416 00738951 02518161 02285392 01746359 01408760 01061320 02746735 02741357 02682954 02636516 02630734 02586121 02556537 02555684 02359228 02303878 02233195 02012725 02001699 01740320 01241881 01205153 01203074 01123609 01123415 01101571 01100672 01049606 00059019 -carry-the_can v 1 1 @ 1 0 02302081 -carry_away v 1 3 @ ~ * 1 1 01434278 -carry_back v 1 1 @ 1 0 00641532 -carry_forward v 1 2 @ ; 1 1 02013427 -carry_off v 3 4 @ ~ * $ 3 0 02522864 01434278 00470701 -carry_on v 4 3 @ ~ $ 4 3 02445509 02679899 00781000 02517655 -carry_out v 2 3 @ ~ $ 2 2 01640855 00486018 -carry_over v 4 3 @ + ; 4 2 00349951 02079330 02202802 02013427 -carry_through v 2 3 @ ~ $ 2 1 01640855 02551832 -carry_to_term v 1 2 ! * 1 0 00059559 -carry_weight v 1 1 @ 1 0 00701724 -cart v 2 3 @ ~ + 2 1 01454810 01451502 -cart_away v 1 1 @ 1 0 01451665 -cart_off v 1 1 @ 1 1 01451665 -cartoon v 1 3 @ + ; 1 0 01693727 -cartwheel v 1 2 @ + 1 0 02046286 -carve v 3 4 @ ~ ^ + 3 2 01256157 01256600 01255967 -carve_out v 2 1 @ 2 0 01758526 00587675 -carve_up v 1 2 @ ~ 1 0 02467662 -cascade v 2 3 @ + ; 2 1 02071316 01465732 -cascade_down v 1 1 @ 1 1 02071316 -case v 2 3 @ ~ + 2 1 02165982 01486312 -caseate v 2 1 @ 2 0 00526339 00526229 -cash v 1 4 @ ~ ^ + 1 1 02256354 -cash_in v 1 2 @ ~ 1 0 02256354 -cash_in_on v 1 1 @ 1 1 02279513 -cash_in_one's_chips v 1 3 @ ~ $ 1 0 00358431 -cash_out v 1 1 @ 1 0 02755232 -cashier v 2 1 @ 2 0 02427596 02422559 -casket v 1 2 @ + 1 0 01599539 -cast v 11 7 @ ~ * ^ $ + ; 11 4 01632897 02236023 01710481 01507143 02385813 01881180 01662771 01513430 01078050 00981276 00076400 -cast_about v 1 1 @ 1 0 00649362 -cast_anchor v 1 1 @ 1 0 01304716 -cast_around v 1 1 @ 1 1 00649362 -cast_aside v 1 2 @ ~ 1 1 02222318 -cast_away v 1 2 @ ~ 1 0 02222318 -cast_down v 1 2 @ ~ 1 1 01814396 -cast_off v 2 4 ! @ ~ ; 2 1 01513430 01671609 -cast_on v 1 3 ! @ ; 1 0 01671463 -cast_out v 2 2 @ ~ 2 0 02504017 02222318 -castigate v 2 3 @ ~ + 2 1 00824292 02500144 -castle v 1 3 @ + ; 1 0 01077329 -castrate v 4 3 @ ~ + 4 0 00541953 00201034 00060833 00060477 -cat v 2 2 @ + 2 0 01411870 00076400 -catabolise v 1 2 @ ; 1 0 00238720 -catabolize v 1 3 @ + ; 1 0 00238720 -catalog v 2 2 @ + 2 0 01626844 00652622 -catalogue v 2 2 @ + 2 2 00652622 01626844 -catalyse v 1 2 @ ; 1 0 00267519 -catalyze v 1 3 @ + ; 1 0 00267519 -catapult v 2 2 @ + 2 2 01515566 01514348 -catcall v 1 2 @ + 1 0 01060909 -catch v 29 7 @ ~ * ^ $ + ; 29 19 00725748 02117955 01401115 01439190 01215421 01327816 01505958 01480149 02018372 02248299 01155090 00543016 02510905 02189168 02150948 01328012 00599835 00589904 00087988 02761134 02189398 02109645 01806505 01738107 01480469 01380366 01082454 00726009 00460357 -catch_a_glimpse v 1 1 @ 1 1 02129879 -catch_a_wink v 1 2 @ ~ 1 1 00015498 -catch_cold v 1 1 @ 1 0 00088120 -catch_fire v 1 3 @ ~ $ 1 1 02760622 -catch_it v 1 0 1 1 02500489 -catch_on v 2 1 @ 2 2 00590366 00543287 -catch_one's_breath v 1 1 @ 1 1 00779360 -catch_out v 1 1 @ 1 0 00731574 -catch_sight v 1 1 @ 1 0 02129879 -catch_some_z's v 1 2 @ ~ 1 0 00014742 -catch_up v 2 3 @ ~ * 2 1 01998793 00598753 -catch_up_with v 2 3 @ * $ 2 2 01155090 02520730 -catechise v 2 2 @ + 2 0 00787515 00787359 -catechize v 2 2 @ + 2 1 00787359 00787515 -categorise v 1 3 @ ~ * 1 0 00657260 -categorize v 1 4 @ ~ * + 1 1 00657260 -catenate v 1 2 @ + 1 0 01466303 -catenulate v 1 2 @ + 1 0 01466303 -cater v 2 3 @ ~ + 2 1 01182709 01180844 -caterwaul v 1 2 @ + 1 0 00914634 -cathect v 1 1 @ 1 0 00023380 -catheterise v 1 2 @ + 1 0 00188721 -catheterize v 1 2 @ + 1 0 00188721 -catholicise v 1 1 @ 1 0 00386566 -catholicize v 1 2 @ + 1 0 00386566 -catnap v 1 3 @ ~ + 1 0 00015498 -caucus v 1 2 @ + 1 1 02429682 -caulk v 1 1 @ 1 0 01354565 -cause v 2 3 @ ~ + 2 2 01645601 00770437 -cause_to_be_perceived v 1 1 ~ 1 0 02123903 -cause_to_sleep v 1 3 ! @ > 1 0 00019273 -causeway v 2 2 @ + 2 0 02335904 01267742 -cauterise v 2 3 @ * + 2 0 00373766 00273114 -cauterize v 2 3 @ * + 2 0 00373766 00273114 -caution v 1 2 @ + 1 1 00871195 -cave v 2 3 @ ~ + 2 0 01283033 00649887 -cave_in v 1 4 @ ~ $ + 1 1 01989053 -cavern v 1 2 @ + 1 0 01282888 -cavern_out v 1 1 @ 1 0 01282888 -cavil v 1 2 @ + 1 0 00808671 -cavort v 1 1 @ 1 1 01883716 -caw v 1 2 @ + 1 1 01060065 -cease v 2 2 ~ + 2 2 02680814 02609764 -cede v 2 3 @ ~ + 2 0 02316649 02235229 -celebrate v 3 3 @ ~ + 3 3 02578510 02490877 02398956 -cell_phone v 1 3 @ + ; 1 0 00789934 -cement v 3 3 @ $ + 3 1 01304076 01366926 01366653 -cense v 1 1 @ 1 0 02126686 -censor v 2 4 @ ~ + ; 2 0 02493666 00682928 -censure v 1 3 @ ~ + 1 0 00823669 -census v 1 2 @ + 1 0 00948707 -center v 3 5 @ ~ ^ $ + 3 2 02676496 00722232 01852701 -center_on v 2 1 @ 2 2 02676496 02723445 -center_punch v 1 1 @ 1 1 01443740 -centralise v 1 3 ! @ + 1 0 00405236 -centralize v 1 3 ! @ + 1 1 00405236 -centre v 2 4 @ ~ $ + 2 0 01852701 00722232 -centrifugate v 1 3 @ ~ + 1 0 02047263 -centrifuge v 1 3 @ ~ + 1 1 02047263 -cere v 1 1 @ 1 0 01283893 -cerebrate v 1 2 ~ + 1 1 00628491 -certificate v 2 2 @ + 2 0 02262139 00804002 -certify v 5 6 ! @ ~ * $ + 5 3 00820976 02349813 02444662 02447793 00822262 -cha-cha v 1 2 @ + 1 0 01897306 -chafe v 6 4 @ ~ $ + 6 1 02119659 01788733 01787955 01253808 01250908 00373397 -chaff v 1 1 @ 1 1 00855295 -chaffer v 2 2 @ ~ 2 0 02259547 01038666 -chagrin v 1 3 @ ~ + 1 0 01799794 -chain v 2 4 ! @ ~ + 2 0 01464931 01288636 -chain-smoke v 1 2 @ + 1 0 01198452 -chain_up v 1 1 @ 1 0 01286436 -chair v 2 2 @ + 2 0 02440020 00813790 -chairman v 1 2 @ + 1 0 02440020 -chalk v 1 3 @ * + 1 0 01690163 -chalk_out v 1 2 @ ; 1 0 01697628 -chalk_up v 2 2 @ * 2 2 02321245 00949841 -challenge v 4 5 @ ~ * + ; 4 4 00869126 00868591 00808343 00808162 -chamber v 1 2 @ + 1 1 02656062 -chamfer v 2 3 @ ~ + 2 0 01583993 01277649 -champ v 2 1 @ 2 0 01175132 01174973 -champion v 1 2 @ + 1 1 01149138 -chance v 3 3 @ ~ + 3 2 02594102 02544348 02248465 -chance_on v 1 1 @ 1 0 02286687 -chance_upon v 1 1 @ 1 0 02286687 -chandelle v 1 2 @ ; 1 1 01970125 -change v 10 6 ! @ ~ > $ + 10 8 00126264 00109660 00123170 00550117 00169458 00161225 02257370 02088241 00551210 00163251 -change_by_reversal v 1 2 @ ~ 1 0 00138508 -change_course v 1 1 @ 1 0 01946817 -change_form v 1 2 @ ~ 1 0 00140967 -change_hands v 1 2 @ ~ 1 0 02221959 -change_integrity v 1 2 @ ~ 1 0 00140123 -change_intensity v 1 2 @ ~ 1 0 02191106 -change_magnitude v 1 2 @ ~ 1 0 00169651 -change_over v 2 3 @ ~ + 2 1 00380159 00381013 -change_owners v 1 2 @ ~ 1 0 02221959 -change_posture v 1 2 @ ~ 1 0 01983771 -change_shape v 1 2 @ ~ 1 0 00140967 -change_state v 1 3 @ ~ $ 1 0 00146138 -change_surface v 1 2 @ ~ 1 0 00356258 -change_taste v 1 2 @ ~ 1 0 02196948 -channel v 3 4 @ ~ $ + 3 1 02079933 01933900 01435380 -channel-surf v 1 1 @ 1 0 00551611 -channelise v 4 3 @ ~ + 4 0 01931768 01757021 01435380 01369059 -channelize v 4 3 @ ~ + 4 0 01931768 01757021 01435380 01369059 -chant v 2 3 @ ~ + 2 2 01049737 01066775 -chap v 1 2 @ + 1 0 00337428 -chaperon v 1 3 @ * + 1 0 02026712 -chaperone v 1 3 @ * + 1 0 02026712 -char v 2 4 @ ~ + ; 2 0 02771997 00379440 -character v 1 2 @ + 1 0 01322391 -characterise v 2 3 @ ~ + 2 0 02697950 00956687 -characterize v 2 3 @ ~ + 2 2 00956687 02697950 -charcoal v 1 4 @ * + ; 1 1 01693138 -charge v 25 6 ! @ ~ $ + ; 25 9 01121719 00843468 02320374 02055267 02475922 00869931 00843959 01488956 02321046 02348568 02347637 02317289 01985424 01762528 01685960 01490336 01152214 00750532 00750345 00750172 00727991 00700517 00518115 00517847 00498016 -charge_up v 1 2 @ ~ 1 0 01762528 -chariot v 2 2 @ + 2 0 01949817 01906687 -charleston v 1 2 @ + 1 0 01897097 -charm v 4 3 @ ~ + 4 1 01806505 02586458 01130455 00776523 -chart v 3 2 @ + 3 2 00710803 00705095 01755137 -charter v 3 2 @ + 3 1 02460619 02447692 02208537 -chase v 4 4 @ ~ ^ + 4 1 02001858 02535093 01583881 01277649 -chase_after v 2 2 @ ~ 2 0 02535093 02001858 -chase_away v 1 3 @ ~ $ 1 0 02002720 -chasse v 1 2 @ + 1 0 01895027 -chasten v 3 2 @ ~ 3 0 00824292 00202934 00202445 -chastise v 1 3 @ ~ + 1 0 00824292 -chat v 1 3 @ ~ + 1 1 01038666 -chat_up v 2 2 @ ~ 2 0 01037910 00767807 -chatter v 5 3 @ ~ + 5 4 02185861 01553869 01038666 01036804 01037303 -chauffeur v 1 2 @ + 1 0 02058049 -chaw v 1 2 @ + 1 0 01201574 -cheapen v 1 2 @ ~ 1 0 00207728 -cheat v 4 4 @ ~ * + 4 3 02573275 01104624 02574516 02576503 -cheat_on v 1 2 @ ~ 1 0 02576503 -check v 25 6 @ ~ * $ + ; 25 7 00661824 02533282 00662589 02510337 01861403 00662182 00440286 02658283 02657219 02557638 02553697 02347905 02347447 01861767 01861622 01692978 01139756 01131473 01114764 01064999 00920336 00663353 00354634 00336539 00336260 -check_in v 1 3 ! @ + 1 1 00966152 -check_into v 1 3 @ ~ $ 1 1 00661824 -check_off v 1 3 @ ~ $ 1 0 00662182 -check_out v 7 6 ! @ ~ * $ + 7 2 00661824 00966492 02658283 02376833 02363742 02311260 00809071 -check_over v 1 3 @ ~ $ 1 0 00661824 -check_up_on v 1 3 @ ~ $ 1 0 00661824 -checker v 2 1 @ 2 0 01692978 00437322 -checkmate v 1 3 @ + ; 1 0 01114475 -checkrow v 1 1 @ 1 0 01529407 -cheek v 1 2 @ + 1 0 00963452 -cheep v 1 3 @ ~ + 1 0 01052301 -cheer v 5 5 ! @ ~ > + 5 2 01817938 00858568 00859325 00859153 00858781 -cheer_up v 2 3 @ ~ > 2 0 00859325 00859153 -cheerlead v 1 2 @ + 1 0 00858437 -cheese v 2 1 @ 2 0 02680691 01523004 -chelate v 1 2 @ + 1 0 02621706 -chemisorb v 1 2 @ + 1 0 01599666 -cheque v 1 2 @ + 1 0 02311260 -chequer v 2 1 @ 2 0 01692978 00437322 -cherish v 1 2 @ ~ 1 1 01776214 -chevvy v 1 2 @ ~ 1 0 01789514 -chevy v 1 2 @ ~ 1 0 01789514 -chew v 1 3 @ ~ + 1 1 01201089 -chew_out v 1 2 @ ~ 1 0 00824767 -chew_over v 1 2 @ ~ 1 1 00630380 -chew_the_fat v 1 2 @ ~ 1 0 01038666 -chew_up v 1 2 @ ~ 1 0 00824767 -chicane v 2 2 @ + 2 0 01104624 00808671 -chicken-fight v 1 1 @ 1 0 01123030 -chicken_out v 1 3 @ ~ $ 1 0 02380980 -chickenfight v 1 1 @ 1 0 01123030 -chide v 1 3 @ ~ + 1 1 00824767 -child-proof v 1 1 @ 1 0 00166457 -childproof v 1 1 @ 1 0 00166457 -chill v 3 4 @ ~ > + 3 2 01818972 00370412 00369864 -chill_out v 1 1 @ 1 0 01763829 -chime v 1 3 @ ^ + 1 0 02182342 -chime_in v 1 2 @ ~ 1 0 00780191 -chin v 1 2 @ ; 1 1 01975387 -chin_up v 1 3 @ + ; 1 1 01975387 -chine v 1 2 @ + 1 0 01323202 -chink v 3 3 @ $ + 3 0 02186506 01423506 00336539 -chip v 5 5 @ ~ ^ + ; 5 2 01259691 01259005 01598140 01260291 01259458 -chip_at v 1 3 @ ~ ^ 1 0 01256600 -chip_away v 1 1 @ 1 0 00180315 -chip_away_at v 1 1 @ 1 0 00180315 -chip_in v 1 2 @ ~ 1 0 02308741 -chip_off v 1 2 @ ~ 1 0 01259691 -chirk v 1 1 @ 1 0 01049140 -chirk_up v 1 2 @ ~ 1 0 00859153 -chiromance v 1 2 @ + 1 0 02107817 -chirp v 2 4 @ ~ + ; 2 1 01052301 01730663 -chirr v 1 1 @ 1 0 01052671 -chirrup v 1 3 @ ~ + 1 0 01052301 -chisel v 3 4 @ ~ * + 3 0 02574516 02573275 01259328 -chisel_in v 1 2 @ ~ 1 0 00780191 -chit-chat v 1 2 @ ~ 1 0 01038666 -chitchat v 1 3 @ ~ + 1 0 01038666 -chitter v 1 1 @ 1 0 01053623 -chivvy v 1 2 @ ~ 1 0 01789514 -chivy v 1 2 @ ~ 1 1 01789514 -chlorinate v 2 2 @ + 2 0 00186567 00089602 -chloroform v 1 2 @ + 1 0 00021826 -chock v 2 2 @ + 2 0 01342340 01218396 -chock_up v 1 2 @ $ 1 0 01524298 -choir v 1 3 @ + ; 1 0 01730799 -choke v 14 5 @ ~ > $ + 14 5 00002724 01570562 01570744 00077950 00077698 02529669 02423999 01478603 01476180 00391203 00391021 00358431 00173159 00077606 -choke_back v 1 1 @ 1 0 00391417 -choke_down v 1 1 @ 1 0 00391417 -choke_off v 2 2 @ ~ 2 2 00391417 01478603 -choke_up v 1 1 @ 1 0 01479333 -chomp v 1 2 @ + 1 0 01174973 -chondrify v 1 2 @ + 1 0 00499512 -choose v 3 3 @ ~ * 3 3 00674607 00679389 00679937 -choose_up v 1 1 @ 1 1 02448642 -chop v 6 4 @ ~ ^ + 6 1 01258091 01871471 01758410 01415454 01257173 01124535 -chop_down v 1 1 @ 1 1 01257507 -chop_off v 1 2 @ ~ 1 0 01299268 -chop_up v 1 2 @ ~ 1 0 01258091 -chord v 2 4 @ ~ + ; 2 0 01727354 00482180 -choreograph v 2 3 @ + ; 2 1 01708317 00710415 -chortle v 1 2 @ + 1 1 00031663 -chorus v 2 3 @ + ; 2 1 00986750 01730799 -chouse v 1 1 @ 1 0 01104624 -christen v 1 2 @ + 1 0 01028079 -christianise v 1 2 @ + 1 0 00385865 -christianize v 2 2 @ + 2 0 00386085 00385865 -chrome v 2 2 @ + 2 0 01395945 00517128 -chromium-plate v 1 1 @ 1 0 01395945 -chronicle v 1 2 @ + 1 1 01001136 -chronologise v 1 2 @ ~ 1 0 00277399 -chronologize v 1 3 @ ~ + 1 0 00277399 -chuck v 4 2 @ ; 4 1 01514525 02227362 01243661 00076400 -chuck_out v 2 2 @ ~ 2 0 02222318 01468576 -chuck_up_the_sponge v 1 0 1 0 01083044 -chuckle v 1 2 @ + 1 1 00031663 -chuff v 1 1 @ 1 1 00006802 -chug v 1 2 @ + 1 1 02179372 -chum_up v 1 1 @ 1 0 02588871 -chunk v 2 2 @ + 2 0 01385920 00657016 -church v 1 2 @ + 1 0 02079151 -churn v 2 4 @ ~ + ; 2 1 01418389 01885430 -churn_out v 2 2 @ ; 2 0 01714095 01625044 -churn_up v 1 2 @ ~ 1 0 01808374 -churr v 1 1 @ 1 0 01052562 -chute v 1 4 @ ~ * + 1 0 01968275 -cicatrise v 1 2 @ + 1 0 01551679 -cicatrize v 1 2 @ + 1 0 01551679 -cinch v 3 2 @ + 3 0 01302982 00663819 00635794 -cinematise v 1 1 @ 1 0 01712298 -cinematize v 1 1 @ 1 0 01712298 -cipher v 2 5 @ ~ $ + ; 2 1 00994076 00637259 -circle v 3 3 @ ~ + 3 2 01911339 02044278 01522716 -circle_around v 1 1 @ 1 0 02082355 -circle_round v 1 1 @ 1 0 02082355 -circuit v 1 2 @ + 1 0 02082527 -circularise v 3 5 @ ~ > $ + 3 0 02454649 02043665 00968211 -circularize v 5 5 @ ~ > $ + 5 0 02454649 02454548 02043665 00968211 00573571 -circulate v 8 5 @ ~ > $ + 8 4 00969873 00968211 02043190 02042404 02044278 02042843 02042237 00270005 -circumambulate v 1 1 @ 1 0 01911232 -circumcise v 2 3 @ * + 2 0 01274559 01274341 -circumfuse v 1 1 @ 1 0 02083396 -circumnavigate v 1 2 @ + 1 0 01911526 -circumscribe v 3 5 @ ~ $ + ; 3 2 01583494 00235368 01583656 -circumstantiate v 1 1 @ 1 0 01012792 -circumvallate v 1 1 @ 1 0 01131058 -circumvent v 3 4 @ ~ $ + 3 0 01127411 01104852 00809654 -circumvolute v 1 1 @ 1 0 02738396 -circumvolve v 1 5 @ ~ > $ + 1 0 02045790 -cite v 7 5 @ ~ $ + ; 7 4 01024190 01023071 01705257 01023259 01023574 01015866 00791134 -citify v 1 2 @ + 1 0 00499642 -citrate v 1 2 @ + 1 1 00136673 -civilise v 2 3 @ ~ + 2 0 02388403 00411312 -civilize v 2 3 @ ~ + 2 0 02388403 00411312 -clabber v 1 2 @ + 1 0 00457770 -clack v 3 3 @ ~ + 3 0 02172127 01054849 01036804 -claim v 5 5 ! @ ~ $ + 5 5 00756338 02275365 01018352 00758333 00756076 -clam v 1 2 @ + 1 0 01383947 -clam_up v 1 0 1 0 01041061 -clamber v 1 2 @ + 1 1 01921772 -clamor v 3 2 @ + 3 2 00774641 00915041 02506924 -clamour v 2 2 @ + 2 0 00915041 00774641 -clamp v 2 2 @ + 2 2 01343610 00747932 -clamp_down v 1 2 @ + 1 0 00418921 -clang v 1 2 @ + 1 1 02174115 -clangor v 2 2 @ + 2 0 02174461 02174115 -clangour v 1 2 @ + 1 0 02174461 -clank v 1 2 @ + 1 1 02174311 -clap v 7 4 @ ~ * + 7 4 01607590 02094299 00861929 00034115 02094172 01237599 01237398 -clap_on v 1 1 @ 1 0 01364997 -clap_together v 1 1 @ 1 0 01623365 -clap_up v 1 1 @ 1 0 01623365 -clapboard v 1 2 @ + 1 0 01337412 -clapperclaw v 2 2 @ ~ 2 0 01306566 00845299 -claret v 1 2 @ + 1 0 01171799 -clarify v 2 5 ! @ ~ + ; 2 1 00939857 00505151 -clarion v 2 3 @ + ; 2 0 01733994 00978055 -clash v 3 3 @ ~ + 3 1 01561143 02667698 00805228 -clasp v 4 4 ! @ ~ + 4 1 01216522 01548576 01548290 01222328 -class v 1 4 @ ~ * + 1 1 00654625 -classicise v 1 1 @ 1 0 00526643 -classicize v 1 1 @ 1 0 00526643 -classify v 3 5 ! @ ~ * + 3 1 00654625 02508803 00739662 -clatter v 1 2 @ + 1 1 02172127 -claver v 1 2 @ ~ 1 0 01038666 -claw v 4 3 @ ~ + 4 2 01914297 01213504 01306654 00845765 -claxon v 2 3 @ ~ + 2 0 02183175 01053495 -clean v 10 6 ! @ ~ $ + ; 10 4 01532589 00177714 01533442 00035758 02741960 01608951 01608706 01532434 00180837 00177861 -clean_house v 1 3 @ ~ $ 1 0 01533442 -clean_out v 3 2 @ ~ 3 1 00448864 02403408 02314784 -clean_up v 4 3 @ ~ + 4 1 00275843 02279315 02254671 00040766 -cleanse v 2 3 @ ~ + 2 1 00035758 00501896 -clear v 24 8 ! @ ~ * ^ $ + ; 24 10 00181664 00195617 02771169 00803325 00195342 02523351 02289134 02156844 02081178 00621058 02422409 02350440 02291548 02291258 02289295 02208409 02053490 00904046 00761454 00549217 00450863 00450691 00450565 00178235 -clear-cut v 1 1 @ 1 0 00195091 -clear_away v 1 1 @ 1 0 00181559 -clear_off v 1 1 @ 1 0 00181559 -clear_out v 3 2 @ ~ 3 1 01856350 00576228 00448864 -clear_the_air v 1 1 @ 1 0 02003186 -clear_the_throat v 1 1 @ 1 0 00035089 -clear_up v 5 3 ! @ ~ 5 3 00939857 00484892 00178235 02771169 00621058 -cleat v 2 2 @ + 2 0 02352395 01304602 -cleave v 3 5 @ ~ * $ + 3 1 01556572 01558681 01220885 -clench v 2 3 @ ~ + 2 2 01572978 01394812 -clerk v 1 2 @ + 1 0 02411802 -clew v 1 2 @ + 1 0 01523401 -click v 7 3 @ > + 7 2 01893771 02185664 02185861 01242208 01055146 01054849 00591755 -click_off v 1 1 @ 1 1 00491551 -click_open v 1 1 @ 1 1 01346548 -climax v 1 3 @ ~ + 1 1 00485609 -climb v 6 4 @ ~ ^ + 6 3 01921964 01923909 00433232 02037989 00249017 00155143 -climb_down v 1 1 @ 1 1 01978576 -climb_on v 1 2 @ ~ 1 1 01923414 -climb_up v 3 2 @ ~ 3 1 01921964 02105657 00155547 -clinch v 6 3 @ $ + 6 1 01344903 01573143 01572978 01424867 01344748 00763713 -cling v 3 4 @ ~ * $ 3 3 01220885 01776065 01216331 -cling_to v 1 2 @ ~ 1 1 01220303 -clink v 2 3 @ > + 2 1 02186690 02186506 -clinker v 2 2 @ + 2 0 00526895 00526749 -clip v 5 4 ! @ ~ + 5 1 01456463 01901447 01367616 01321002 00292877 -clitter v 1 1 @ 1 0 02172296 -cloak v 3 2 @ + 3 0 02147603 01617034 01334535 -clobber v 2 2 @ $ 2 1 01417416 01412912 -clock v 1 3 @ ~ + 1 1 00490968 -clock_in v 1 2 ! @ 1 0 00966330 -clock_off v 1 1 @ 1 0 00966640 -clock_on v 1 1 @ 1 0 00966330 -clock_out v 1 2 ! @ 1 0 00966640 -clock_up v 1 1 @ 1 0 01002618 -clog v 6 5 ! @ ~ + ; 6 1 01478603 01709931 01301230 00441007 00368367 00182037 -clog_up v 1 2 @ ~ 1 0 01478603 -cloister v 3 2 @ + 3 0 02724126 01471434 00495636 -clomp v 1 1 @ 1 1 01930033 -clone v 1 2 @ + 1 0 01694984 -clop v 1 1 @ 1 0 02184965 -close v 17 7 ! @ ~ > $ + ; 17 6 01345109 01346978 02426395 02425913 02610628 00763831 02754276 02375619 02140781 02104503 02054541 02054382 01607288 01478423 01423285 01291941 00352137 -close_down v 1 2 ~ + 1 0 02426395 -close_in v 2 3 @ ~ $ 2 1 02054703 01587062 -close_off v 3 2 @ ~ 3 1 02680531 02031826 01477394 -close_out v 3 2 @ + 3 0 02629390 02352538 00351719 -close_up v 4 3 ! @ ~ 4 0 02426395 01476483 01291941 01041061 -closet v 1 2 @ + 1 0 01302717 -closure v 1 2 @ + 1 0 00527034 -clot v 4 3 @ ~ + 4 1 00457998 00458276 00457770 00368367 -clothe v 3 4 @ ~ $ + 3 2 00047945 02386675 01617034 -cloture v 1 2 @ + 1 0 00527034 -cloud v 8 4 @ ~ ^ + 8 3 02770717 02157731 02041577 01769565 01537959 00587962 00510364 00391833 -cloud_over v 2 1 @ 2 1 02771020 00361388 -cloud_up v 1 1 @ 1 0 02771020 -clout v 1 2 @ + 1 0 01412759 -clown v 1 2 @ + 1 0 00105778 -clown_around v 1 1 @ 1 0 00105778 -cloy v 2 1 @ 2 0 02333225 01193932 -club v 4 2 @ + 4 0 02592250 02592111 01423929 01320321 -cluck v 1 2 @ + 1 1 01054849 -clue v 1 1 @ 1 0 01523401 -clue_in v 1 1 @ 1 0 00927900 -clump v 4 3 @ ~ + 4 0 02184965 02025009 01930033 01484392 -clunk v 1 2 @ + 1 0 02184965 -cluster v 2 3 @ ~ + 2 2 02025009 01484392 -clutch v 3 3 @ ~ + 3 2 01212572 01220303 00737656 -clutter v 1 3 ! @ + 1 0 00181875 -clutter_up v 1 1 @ 1 0 00181875 -co-author v 1 2 @ ; 1 0 01704631 -co-educate v 1 1 @ 1 0 02387792 -co-occur v 1 2 @ ~ 1 0 02660442 -co-occur_with v 1 1 @ 1 0 02660819 -co-opt v 4 2 @ + 4 1 02401051 02536098 02397266 02362460 -co-sign v 2 1 @ 2 0 02465145 00998030 -co-star v 2 3 @ + ; 2 0 02631537 01721415 -co-vary v 1 3 @ + ; 1 0 02662647 -coach v 2 4 @ $ + ; 2 2 00833702 01931262 -coact v 1 2 @ + 1 0 02417098 -coagulate v 2 3 @ ~ + 2 1 00457998 00458276 -coal v 3 2 @ + 3 0 02771997 02352704 01599983 -coalesce v 2 3 @ ~ + 2 2 00394813 01461152 -coapt v 2 1 @ 2 0 01600191 01600098 -coarsen v 2 1 @ 2 0 01253468 00136443 -coast v 1 3 @ ~ + 1 1 01886728 -coat v 3 3 @ ~ + 3 2 01264283 00051511 01262321 -coax v 1 3 @ ~ + 1 1 00768778 -cobble v 2 2 @ + 2 0 01267475 00261845 -cobble_together v 1 1 @ 1 0 01626600 -cobble_up v 1 1 @ 1 0 01626600 -cobblestone v 1 1 @ 1 0 01267475 -cocainise v 1 2 @ + 1 0 00021679 -cocainize v 1 2 @ + 1 0 00021679 -cock v 3 2 @ + 3 2 01884868 01247426 01916634 -cock_up v 1 1 @ 1 0 01983006 -cocker v 1 1 @ 1 0 02570267 -cockle v 2 3 @ * $ 2 0 02040054 01278817 -coconspire v 1 2 @ + 1 0 00707322 -cocoon v 2 2 @ + 2 0 02092680 01581933 -cod v 2 2 @ ~ 2 0 00854904 00850501 -coddle v 2 3 @ + ; 2 1 02570267 00320410 -code v 2 2 @ + 2 1 01589723 00994076 -codify v 1 2 @ + 1 1 00481739 -coeducate v 1 1 @ 1 0 02387792 -coerce v 1 4 @ ~ > + 1 1 02504562 -coexist v 2 3 @ ~ + 2 1 02604618 02604477 -coffin v 1 2 @ + 1 0 01499948 -cog v 2 2 @ + 2 0 01391460 01293918 -coggle v 2 1 @ 2 0 01918803 01869003 -cogitate v 2 3 @ ~ + 2 0 00703512 00628491 -cognise v 1 3 ~ $ + 1 0 00594621 -cognize v 1 3 ~ $ + 1 0 00594621 -cohabit v 1 3 @ ~ + 1 0 02651193 -cohere v 3 6 @ ~ * > $ + 3 1 01220885 02753642 02753426 -coif v 2 4 @ ~ $ + 2 0 01334647 00038849 -coiffe v 1 3 @ ~ $ 1 0 00038849 -coiffure v 1 4 @ ~ $ + 1 0 00038849 -coil v 3 3 ! @ + 3 1 02049190 01663580 01523986 -coin v 2 3 @ ~ + 2 1 01697986 01639105 -coincide v 3 3 @ ~ + 3 3 02660442 00345312 02658734 -coinsure v 1 2 @ + 1 0 02251631 -coke v 1 3 @ + ; 1 0 00498836 -cold-cream v 1 1 @ 1 0 01364637 -cold-shoulder v 1 2 @ + 1 0 00617413 -cold_work v 1 1 @ 1 0 01669070 -coldcock v 1 1 @ 1 0 01412346 -coldwork v 1 1 @ 1 0 01669070 -collaborate v 2 4 @ ~ $ + 2 1 02416278 02416751 -collapse v 7 5 @ ~ > $ + 7 2 01989053 00030647 02083497 02041877 01989562 01785579 00224460 -collar v 3 2 @ + 3 1 01215137 01215851 01215694 -collate v 2 3 @ * + 2 1 00661713 01385759 -collateralize v 1 1 @ 1 0 00886457 -collect v 5 3 @ ~ + 5 5 02304982 02218173 01380638 01384439 02305586 -collectivise v 1 2 @ + 1 0 02433767 -collectivize v 1 2 @ + 1 0 02433767 -collide v 3 3 @ ~ + 3 0 02667698 01562733 01561143 -collide_with v 1 3 @ ~ $ 1 1 01236164 -colligate v 2 3 @ ~ + 2 0 00713167 00685224 -collimate v 2 3 @ + ; 2 0 00525281 00465461 -collocate v 2 2 @ + 2 0 02612610 00657016 -collocate_with v 1 1 @ 1 0 02660819 -collogue v 1 1 @ 1 0 00876994 -collude v 1 2 @ + 1 0 00707624 -colly v 1 2 @ ~ 1 0 01534147 -colonise v 2 3 ! @ + 2 0 02590340 00414174 -colonize v 2 3 ! @ + 2 1 02590340 00414174 -color v 6 4 ! @ ~ + 6 3 00283911 00836926 02537092 01696648 00837133 00281101 -color_in v 1 2 @ ~ 1 0 00283911 -colorcast v 1 2 @ ; 1 0 00969769 -colorise v 1 2 @ ~ 1 0 00283911 -colorize v 1 3 @ ~ + 1 0 00283911 -colour v 6 3 @ ~ + 6 0 02537092 01696648 00837133 00836926 00283911 00281101 -colour_in v 1 2 @ ~ 1 0 00283911 -colourise v 1 2 @ ~ 1 0 00283911 -colourize v 1 2 @ ~ 1 0 00283911 -comb v 3 3 @ ~ + 3 3 01596645 01319193 00038365 -comb_out v 2 3 @ ~ + 2 0 02223630 00038365 -combat v 1 3 @ ~ + 1 1 01092366 -combine v 7 3 @ ~ + 7 7 02631163 00193486 01461328 02309008 02377938 01385170 00394813 -combust v 5 5 @ ~ > $ + 5 0 02762468 02760622 01795428 01786419 00377002 -come v 21 6 ! @ ~ ^ $ + 21 17 01849221 02005948 00341917 00542120 02625339 00342812 02743921 02743214 02686805 02743565 01839690 02729963 00344886 02645007 02627363 02006709 00723349 02737187 02617567 02197360 00659984 -come_about v 1 1 ~ 1 1 00339934 -come_across v 5 4 @ ~ > $ 5 1 02286687 02136138 02023107 01063529 00592037 -come_after v 2 3 @ ~ $ 2 1 02720354 02406585 -come_alive v 1 2 @ * 1 1 00018526 -come_along v 2 2 @ ~ 2 2 00425071 00248659 -come_apart v 1 3 @ ~ $ 1 0 00334186 -come_around v 2 2 @ * 2 1 00654446 00344042 -come_away v 2 2 @ ~ 2 2 01299758 02010572 -come_back v 4 3 @ ~ + 4 4 00548153 00959524 01998982 00816353 -come_before v 1 0 1 0 02407766 -come_by v 2 2 @ ~ 2 2 02488641 02206014 -come_close v 2 2 @ ~ 2 2 02373974 02666060 -come_down v 5 4 @ ~ * $ 5 4 01970826 00237704 02756821 00087454 00827458 -come_forth v 2 2 @ ~ 2 1 00528990 02625016 -come_forward v 1 1 @ 1 1 02089174 -come_home v 1 1 > 1 1 00591755 -come_in v 5 4 ! @ ~ ; 5 4 02016523 02006709 02667419 00914769 00659776 -come_in_for v 1 1 @ 1 1 02729260 -come_in_handy v 1 1 @ 1 1 02725460 -come_into v 1 2 @ ~ 1 1 02206014 -come_into_being v 1 1 @ 1 1 00361208 -come_near v 3 4 @ ~ * $ 3 2 02596371 02053941 01849746 -come_of_age v 1 1 @ 1 1 02540445 -come_off v 3 2 @ ~ 3 2 01299758 00343898 01259691 -come_on v 5 4 @ ~ * $ 5 3 00423702 02053941 00248659 01526605 00348103 -come_out v 11 3 @ ~ $ 11 7 00423702 00425967 00528990 02610845 02097925 00659776 02089174 02081946 00935456 00935141 00548266 -come_out_of_the_closet v 1 1 @ 1 0 00935456 -come_over v 1 1 @ 1 1 01063529 -come_round v 1 2 @ * 1 0 00654446 -come_short v 1 1 @ 1 0 01799484 -come_through v 4 3 @ ~ * 4 2 00426749 02021921 02619924 02524171 -come_to v 4 3 @ ~ $ 4 4 02108791 02676054 02526811 00024047 -come_to_grips v 1 1 @ 1 1 02437157 -come_to_hand v 1 1 @ 1 0 00423430 -come_to_life v 2 1 @ 2 1 00361208 02665767 -come_to_light v 1 1 @ 1 1 00423430 -come_to_mind v 1 1 @ 1 1 00609352 -come_to_the_fore v 1 1 @ 1 1 02089174 -come_together v 1 1 @ 1 0 02054541 -come_up v 12 3 @ ~ ; 12 8 01627779 00339738 01849221 01990281 02625786 01968569 02721840 01526605 02213336 01970348 01384752 01381549 -come_up_to v 1 2 @ ~ 1 1 00990655 -come_upon v 2 1 @ 2 2 02286687 02212646 -come_with v 1 1 ~ 1 1 02716165 -comfit v 1 1 @ 1 0 01626420 -comfort v 2 3 @ ~ + 2 2 01814815 00082308 -command v 5 3 @ ~ + 5 5 00751887 00751567 01018177 02696129 02441022 -commandeer v 1 3 @ ~ ; 1 1 01471825 -commemorate v 3 3 @ ~ + 3 2 00612612 00611481 00612042 -commence v 3 5 @ ~ > $ + 3 3 00345761 00348746 01650610 -commend v 5 2 @ + 5 3 00882395 01689169 00883112 00882948 00882523 -comment v 3 3 @ ~ + 3 2 01058574 01033189 00961329 -commentate v 2 2 @ + 2 0 00961586 00939035 -commercialise v 1 3 @ + ; 1 0 00470386 -commercialize v 2 3 @ + ; 2 0 01164725 00470386 -comminate v 1 2 @ + 1 0 00864910 -commingle v 2 2 @ ~ 2 0 01462806 00394813 -comminute v 1 2 @ ~ 1 0 00331082 -commiserate v 1 3 @ ~ + 1 1 01822248 -commission v 3 2 @ + 3 1 02475401 02480803 02475261 -commit v 6 4 @ ~ $ + 6 5 02582615 00887463 02348568 02349212 02271137 02375468 -commit_suicide v 1 1 @ 1 0 01324996 -commix v 1 3 @ ~ + 1 0 01462005 -commove v 2 2 @ ~ 2 0 01762528 01419473 -communalise v 1 1 @ 1 0 02295979 -communalize v 1 2 @ + 1 0 02295979 -commune v 2 4 @ ~ $ + 2 1 00760187 00760402 -communicate v 7 5 ! @ ~ $ + 7 2 00742320 00740577 02231661 01355518 01070102 01030678 00760402 -communise v 2 2 @ + 2 0 00409281 00408852 -communize v 2 2 @ + 2 1 00409281 00408852 -commutate v 1 2 @ + 1 0 00139367 -commute v 5 5 @ ~ $ + ; 5 4 00553407 02061846 00380424 00161987 00161225 -compact v 4 5 @ ~ * $ + 4 0 01484027 01483779 01389329 01387786 -companion v 1 2 @ + 1 0 02716767 -company v 1 2 @ + 1 0 02716767 -compare v 4 4 @ ~ $ + 4 3 00652900 02729632 00653620 00982779 -comparison-shop v 1 2 @ ; 1 0 02326672 -compart v 1 1 @ 1 0 01474449 -compartmentalise v 1 2 @ + 1 0 00483801 -compartmentalize v 1 2 @ + 1 0 00483801 -compass v 3 4 @ ~ + ; 3 0 02527085 01911526 00588221 -compassionate v 1 3 @ ~ + 1 0 01821996 -compel v 2 4 @ ~ > + 2 1 02506546 02635420 -compensate v 6 5 @ ~ ^ $ + 6 2 02672540 02250625 02672859 02519991 02253456 02249741 -compere v 1 2 @ + 1 0 02592397 -compete v 1 2 ~ + 1 1 01072262 -compile v 3 3 @ ~ + 3 2 02304982 01626138 01627105 -complain v 2 4 ! @ ~ + 2 1 00907147 00844298 -complect v 1 3 @ ~ + 1 0 02622969 -complement v 1 2 @ + 1 1 00455919 -complete v 5 5 @ ~ * + ; 5 5 00484166 00455750 02563724 01117484 01020731 -complexify v 2 2 @ + 2 0 00401373 00401202 -complexion v 1 2 @ + 1 0 00287848 -complicate v 2 4 ! @ ~ + 2 2 00402539 00400883 -compliment v 2 2 @ + 2 2 00881661 00881901 -complot v 1 2 @ ~ 1 0 00706975 -comply v 1 4 @ ~ $ + 1 1 02542280 -comport v 2 3 @ ~ + 2 0 02519666 02518161 -compose v 6 6 @ ~ * $ + ; 6 5 02621244 01705494 01698271 01626138 01765178 00706804 -compost v 1 2 @ + 1 0 00527232 -compound v 5 4 @ ~ > + 5 2 00227165 00193486 02265881 01657828 01461328 -comprehend v 3 4 @ ~ $ + 3 2 00588221 02106506 02629793 -compress v 2 5 ! @ ~ * + 2 2 01389329 01387786 -comprise v 3 2 @ ~ 3 3 02633356 02629535 02620587 -compromise v 3 4 @ ~ * + 3 2 01035803 01035380 01036592 -compute v 1 5 @ ~ $ + ; 1 1 00637259 -computerise v 3 3 @ + ; 3 0 02337364 02218759 01718952 -computerize v 3 3 @ + ; 3 0 02337364 02218759 01718952 -con v 2 3 @ ~ + 2 1 02572119 00604576 -concatenate v 2 4 @ $ + ; 2 0 01465054 00190180 -conceal v 2 2 ~ + 2 2 02144835 02146790 -concede v 4 3 @ ~ + 4 3 00818553 00806049 02316649 01117609 -conceive v 3 4 @ ~ * + 3 3 01633343 00689344 00054285 -conceive_of v 1 2 @ ~ 1 1 01636397 -concenter v 1 2 @ ~ 1 0 00731789 -concentrate v 8 6 ! @ ~ $ + ; 8 5 00237511 00722232 00405236 00244625 02032934 00365188 00237259 00236999 -concentrate_on v 1 1 @ 1 1 02676496 -concentre v 1 2 @ ~ 1 0 00731789 -conceptualise v 1 3 @ ~ + 1 0 01633343 -conceptualize v 1 3 @ ~ + 1 0 01633343 -concern v 2 3 ~ $ + 2 2 02676054 02678438 -concert v 2 1 @ 2 0 01639003 00761600 -concertina v 1 2 @ + 1 0 02083694 -concertise v 1 3 @ + ; 1 0 01716407 -concertize v 1 3 @ + ; 1 0 01716407 -conciliate v 3 3 @ ~ + 3 1 01765392 00764902 00482893 -conclude v 5 3 @ ~ + 5 3 00634472 00715074 01021420 02610628 01071762 -concoct v 4 4 @ ~ + ; 4 1 01459896 01666131 01635056 01634142 -concord v 4 4 @ ~ $ + 4 0 02700104 01648488 01465506 00805376 -concrete v 2 2 @ + 2 0 01600355 00374534 -concretise v 1 1 @ 1 0 00552006 -concretize v 2 1 @ 2 0 00715769 00552006 -concur v 2 4 @ ~ $ + 2 2 00805376 00345312 -concuss v 2 2 @ + 2 0 01890510 00070633 -condemn v 6 5 @ ~ * + ; 6 5 00864159 00856578 02507093 02149302 00906735 02273768 -condense v 7 4 @ ~ $ + 7 2 00364868 00244625 00366547 00366275 00365647 00365446 00365188 -condescend v 4 3 @ ~ + 4 0 02591455 02591312 02517827 00908977 -condition v 5 4 @ ~ $ + 5 3 02571768 02553697 01018928 00207418 00041687 -condole v 1 2 @ + 1 0 01822536 -condole_with v 1 2 @ ~ 1 0 01821996 -condone v 1 2 @ + 1 1 00893167 -conduce v 1 2 @ + 1 0 02555908 -conduct v 6 5 @ ~ $ + ; 6 5 02445509 01732921 02518161 01999798 02079933 01733213 -cone v 1 2 @ + 1 0 01584321 -confab v 2 3 @ ~ + 2 0 01038666 00876665 -confabulate v 3 4 @ ~ + ; 3 0 01634887 01038666 00876665 -confect v 2 2 @ + 2 0 01750813 01626420 -confection v 1 2 @ + 1 0 01626420 -confederate v 2 2 @ + 2 0 02470685 02434541 -confer v 2 3 @ ~ + 2 1 00876665 02263346 -confer_with v 1 1 @ 1 1 00877559 -confess v 3 3 @ ~ + 3 2 00819508 00818553 00818805 -confide v 2 4 @ ~ * + 2 2 00936465 02349212 -configure v 1 2 @ + 1 0 01657641 -confine v 6 4 ! @ ~ + 6 3 00233335 00235368 01347298 02711114 02495038 01301410 -confirm v 5 4 @ ~ + ; 5 4 00665886 01012073 00221840 02476518 02474603 -confiscate v 1 4 @ ~ $ + 1 1 02273293 -conflagrate v 2 3 @ ~ $ 2 0 02761372 02760622 -conflate v 1 2 @ ~ 1 0 00394813 -conflict v 2 3 @ ~ + 2 2 02667228 02567147 -conform v 2 4 ! @ ~ + 2 2 02662979 00150287 -conform_to v 3 3 ! @ ~ 3 3 02667900 02668956 00150776 -confound v 2 3 @ ~ $ 2 1 00621734 00619610 -confront v 4 5 ! @ ~ $ + 4 4 01078783 00812298 01066433 02742638 -confuse v 5 4 @ ~ $ + 5 2 00619610 00621734 01790739 01657254 00620673 -confute v 1 3 @ ~ + 1 0 00667424 -conga v 1 2 @ + 1 0 01896767 -conge v 1 2 @ + 1 0 00898918 -congeal v 1 2 @ + 1 1 00442669 -congee v 2 1 @ 2 0 02008978 00898918 -congest v 1 3 @ ~ + 1 0 01478603 -conglobate v 1 2 @ + 1 0 00144694 -conglobe v 1 2 @ + 1 0 00144694 -conglomerate v 1 3 @ ~ + 1 0 00158804 -conglutinate v 2 2 @ + 2 0 01600191 01221542 -congratulate v 4 2 @ + 4 3 00881661 00881998 01772498 00883847 -congregate v 1 2 @ + 1 1 02023600 -conjecture v 1 3 @ ~ + 1 1 00633443 -conjoin v 2 4 @ ~ $ + 2 1 01291069 02488834 -conjugate v 3 3 @ + ; 3 1 00396513 00983123 00574218 -conjure v 3 4 @ ~ $ + 3 0 01629958 00759657 00706975 -conjure_up v 1 3 @ ~ $ 1 1 01629958 -conk v 4 5 @ ~ $ + ; 4 0 01862340 01401371 00358431 00023646 -conk_out v 2 3 @ ~ $ 2 0 00434374 00099517 -conn v 1 1 @ 1 0 01933093 -connect v 11 7 ! @ ~ * $ + ; 11 6 01354673 00713167 02622234 01069391 01237761 01069190 02747403 02389592 02389346 01421122 01407568 -connive v 2 2 @ + 2 0 02585360 00707956 -connive_at v 1 1 @ 1 0 02417389 -connote v 2 2 @ + 2 1 00929839 00931232 -conquer v 3 3 @ ~ + 3 3 00462092 02272549 01114303 -conscript v 1 2 @ + 1 1 01098706 -consecrate v 4 5 ! @ ~ $ + 4 0 02386012 00887463 00886978 00866702 -consent v 1 3 @ ~ + 1 1 00797697 -conserve v 4 5 ! @ ~ + ; 4 0 02682567 02280132 02269143 00212049 -consider v 9 4 @ ~ $ + 9 6 00690614 02166460 00734054 00950431 00813044 00689344 02133185 02130300 00691312 -consign v 3 3 @ ~ + 3 2 02348324 02347637 02348459 -consist v 4 2 @ + 4 1 02653381 02750854 02658050 02633356 -consociate v 1 2 @ ~ 1 0 02470175 -console v 1 2 ~ + 1 1 01814815 -consolidate v 5 2 @ + 5 2 00242580 00165450 00242747 00165789 00165618 -consonate v 1 2 @ + 1 0 02184163 -consort v 3 4 @ ~ $ + 3 1 02589245 02700104 01927747 -conspire v 2 3 @ ~ + 2 2 00706975 00707624 -constellate v 3 3 @ ~ + 3 0 02689882 02025009 00142055 -consternate v 1 1 @ 1 0 01791053 -constipate v 2 3 @ ~ + 2 0 00441007 00074558 -constitute v 4 3 @ ~ + 4 2 02620587 02396205 02621395 01647229 -constitutionalise v 1 1 @ 1 0 00568661 -constitutionalize v 3 2 @ + 3 0 02353201 01882479 00568661 -constrain v 2 2 @ ~ 2 0 01301051 00418765 -constrict v 2 3 @ ~ + 2 1 01387786 00304422 -constringe v 1 2 @ ~ 1 0 00304422 -construct v 6 5 @ ~ $ + ; 6 3 01654628 01653442 01583142 01757721 01757546 00634090 -construe v 1 5 @ ~ ^ $ + 1 1 00623151 -construe_with v 1 1 @ 1 0 02660819 -consubstantiate v 2 3 @ $ + 2 0 00243572 00243379 -consult v 4 3 @ ~ + 4 3 00877559 00877083 00876665 00876442 -consume v 6 5 ! @ ~ $ + 6 4 01197014 01156834 01158181 01565921 01157517 00600903 -consummate v 2 3 @ * + 2 2 01641751 01641632 -contact v 2 4 @ ~ $ + 2 1 00743344 01205696 -contain v 6 5 @ ~ $ + ; 6 3 02629535 02700867 02510337 02747287 02701210 01131473 -containerise v 1 2 @ + 1 0 01482744 -containerize v 1 2 @ + 1 0 01482744 -contaminate v 2 4 ! @ ~ + 2 2 00492706 00493259 -contemn v 1 2 @ ~ 1 0 01774799 -contemplate v 4 3 @ ~ + 4 4 02164825 00703875 00704388 00630380 -contemporise v 2 1 @ 2 0 02739254 00735866 -contemporize v 2 1 @ 2 0 02739254 00735866 -contend v 6 4 @ ~ * + 6 5 00756898 00773432 00869596 02587532 01072262 01090335 -content v 2 3 ! @ + 2 2 01194238 01816844 -contest v 1 3 @ ~ + 1 1 00869596 -continue v 10 5 ! @ ~ $ + 10 6 02684924 00781000 02679899 01995549 02410175 02747922 02747709 02727462 02687916 00118523 -contort v 1 4 @ ~ $ + 1 0 01350699 -contour v 1 3 @ ~ + 1 0 01689752 -contra_danse v 1 2 @ + 1 0 01896295 -contract v 9 5 ! @ ~ $ + 9 5 00888786 02409941 01387786 00087736 00240571 01279474 00365188 00305109 00243900 -contract_in v 1 2 ! @ 1 0 00798249 -contract_out v 2 2 ! @ 2 0 02410719 00798402 -contradance v 1 1 @ 1 0 01896295 -contradict v 4 4 @ ~ + ; 4 2 02663141 00823436 00776059 00666886 -contradistinguish v 1 2 @ + 1 0 00661584 -contraindicate v 1 3 ! @ + 1 0 00928476 -contrast v 2 3 @ ~ + 2 2 00661213 02666882 -contravene v 2 3 @ ~ + 2 0 02567147 00823436 -contredanse v 1 2 @ + 1 0 01896295 -contribute v 4 3 @ ~ + 4 4 02324478 02308741 02555908 02237782 -contrive v 3 3 @ ~ + 3 2 01638368 01632411 01632897 -control v 8 6 @ ~ * $ + ; 8 4 02441022 02510337 01224744 01803936 02520997 00663160 00662589 00597385 -controvert v 2 2 @ ~ 2 0 00776059 00667747 -contuse v 1 3 @ ~ + 1 0 01492725 -convalesce v 1 4 @ ~ $ + 1 0 00092690 -convect v 1 2 @ + 1 0 02043068 -convene v 2 3 @ ~ + 2 1 02024508 00793037 -conventionalise v 1 2 @ + 1 0 00527367 -conventionalize v 2 3 @ + ; 2 1 00527367 01687569 -converge v 4 6 ! @ ~ $ + ; 4 1 02710402 02732401 02032634 00368847 -converse v 1 3 @ ~ + 1 1 00964694 -convert v 11 6 @ ~ > $ + ; 11 5 00381013 00115157 00384411 00161225 00385385 01084866 01084724 01084588 00769553 00161987 00114837 -convey v 7 6 @ ~ * $ + ; 7 2 00928630 01061017 02231661 02221454 02079933 02077656 01433294 -convict v 1 6 ! @ ~ * + ; 1 1 00906367 -convince v 1 3 @ ~ + 1 1 00769553 -convoke v 1 2 @ + 1 0 00793037 -convolute v 2 2 @ + 2 0 01281184 00932798 -convolve v 1 2 @ + 1 0 01281184 -convoy v 1 3 @ * + 1 0 02026433 -convulse v 6 5 @ ~ > $ + 6 2 00859937 00032297 01890792 01890088 01389007 01388813 -coo v 2 2 @ + 2 0 00910000 00909896 -cooccur v 1 4 @ ~ ^ + 1 0 02660442 -cooccur_with v 1 1 @ 1 0 02660819 -cook v 5 7 @ ~ * ^ $ + ; 5 3 01665638 01664172 00322847 02576921 00323377 -cook_out v 1 3 @ + ; 1 0 00324806 -cook_up v 2 3 @ ~ ; 2 1 01666131 01634424 -cool v 3 5 ! @ ~ > + 3 2 00370412 00369864 00370126 -cool_down v 3 3 @ ~ > 3 0 00370412 00370126 00369864 -cool_it v 1 1 @ 1 0 01763829 -cool_off v 3 1 @ 3 2 01763829 00370126 01777707 -cool_one's_heels v 1 1 @ 1 0 02638206 -coop_in v 1 1 @ 1 0 01347519 -coop_up v 1 1 @ 1 0 01347519 -cooper v 1 2 @ + 1 0 01659144 -cooperate v 1 4 @ ~ $ + 1 1 02416278 -coordinate v 4 3 @ ~ + 4 4 00404642 02437905 02438228 00466053 -cop v 2 2 @ + 2 0 02322230 01215137 -cop_out v 1 2 @ + 1 0 00679715 -cope v 1 2 @ ~ 1 1 02587532 -cope_with v 1 1 @ 1 1 02594674 -copolymerise v 1 3 @ + ; 1 0 00266391 -copolymerize v 1 3 @ + ; 1 0 00266391 -copper v 1 2 @ + 1 0 01265880 -copper-bottom v 1 1 @ 1 0 02353408 -copulate v 1 3 @ ~ + 1 0 01428853 -copy v 4 4 @ ~ + ; 4 2 01747374 01742886 01734929 01693881 -copy_out v 1 1 @ 1 0 01747602 -copyedit v 1 1 @ 1 0 00628125 -copyread v 1 2 @ + 1 0 00628125 -copyright v 1 2 @ + 1 0 02239533 -coquet v 1 3 @ ~ + 1 0 01037910 -coquette v 1 3 @ ~ + 1 0 01037910 -corbel v 1 3 @ + ; 1 0 02352824 -cord v 2 2 @ + 2 0 01503841 01286674 -cordon_off v 1 1 @ 1 0 01588297 -corduroy v 1 2 @ + 1 0 01750895 -core v 1 2 @ + 1 1 01590523 -core_out v 1 2 @ ~ 1 0 01282545 -cork v 2 3 ! @ + 2 0 01423623 00321341 -cork_up v 1 1 @ 1 0 01423623 -corkscrew v 1 1 @ 1 0 02049561 -corn v 2 3 @ + ; 2 0 01179155 00528225 -corner v 3 2 @ + 3 1 02442924 01934205 01909275 -cornice v 1 3 @ + ; 1 0 02352946 -coronate v 1 2 @ + 1 0 02390949 -corrade v 1 3 @ ~ + 1 0 01254013 -corral v 3 2 @ + 3 1 01600478 01466198 01381796 -correct v 8 4 ! @ ~ + 8 3 00199659 02519991 00824292 02672540 02553428 01971603 00296178 00079470 -correlate v 2 3 @ $ + 2 1 02658979 00713996 -correspond v 4 5 @ ~ * $ + 4 3 02657219 02633534 01006810 02699497 -corroborate v 3 3 @ ~ + 3 2 00665886 01012561 02663340 -corrode v 2 4 @ ~ $ + 2 1 00274283 00273963 -corrugate v 1 2 @ + 1 0 01387164 -corrupt v 4 4 @ ~ + ; 4 1 02579447 02284096 01537959 00203081 -corset v 1 2 @ + 1 0 00049669 -coruscate v 2 2 @ + 2 0 02766390 00473003 -cosh v 1 2 @ + 1 0 01401552 -cosign v 2 2 @ + 2 0 02465145 00998030 -cosponsor v 1 1 @ 1 1 02220349 -cosset v 1 1 @ 1 0 02570267 -cost v 2 3 @ ~ + 2 2 02702508 02628961 -costume v 2 4 @ $ + ; 2 1 00051761 02337545 -cotton v 1 1 @ 1 0 01777107 -cotton_on v 1 1 @ 1 0 00590366 -cotton_up v 1 1 @ 1 0 01804753 -couch v 1 1 @ 1 1 00981276 -cough v 1 4 @ ~ ^ + 1 1 00005815 -cough_out v 1 2 @ ~ 1 0 00006238 -cough_up v 2 2 @ ~ 2 0 02200341 00006238 -counsel v 1 3 @ ~ + 1 1 00872886 -count v 9 4 @ ~ ^ + 9 6 00948071 02645839 00950431 00947857 02731632 00685081 02747140 00712708 00712556 -count_down v 1 2 @ + 1 0 00947717 -count_off v 1 1 @ 1 0 00975733 -count_on v 1 2 @ ~ 1 1 00712135 -count_out v 1 2 @ ; 1 0 01101313 -countenance v 1 4 @ ~ $ + 1 0 00802318 -counter v 2 2 @ + 2 2 00815379 02565491 -counter-drill v 1 1 @ 1 1 01443631 -counteract v 4 3 @ ~ + 4 3 02564841 02564973 02543874 02543607 -counterattack v 1 2 @ + 1 1 01125084 -counterbalance v 3 3 @ ~ + 3 1 02672540 02666531 02543874 -counterchallenge v 1 1 @ 1 1 00808528 -counterchange v 1 1 @ 1 0 00121926 -countercheck v 2 1 @ 2 0 02564973 02533508 -counterclaim v 1 3 @ + ; 1 0 01018645 -counterfeit v 1 2 @ + 1 0 01654271 -countermand v 1 3 @ ~ + 1 0 00799798 -countermarch v 2 1 @ 2 0 01997020 00659260 -countermine v 2 3 @ ~ + 2 0 02543607 01125882 -counterplot v 1 2 @ + 1 0 00707490 -counterpoint v 2 4 @ ~ + ; 2 1 02666882 01705841 -counterpoise v 1 2 @ + 1 0 02666691 -counterpose v 1 1 @ 1 0 02666691 -countersign v 1 2 @ + 1 0 00997432 -countersink v 1 2 @ + 1 0 01530273 -counterstrike v 1 1 @ 1 0 01125084 -countervail v 2 2 @ ~ 2 0 02718015 02543874 -counterweight v 1 2 @ + 1 0 02666691 -country-dance v 1 2 @ + 1 0 01896295 -couple v 4 5 ! @ ~ $ + 4 3 01292885 01297624 02490430 01428853 -couple_on v 1 1 @ 1 0 01297624 -couple_up v 1 1 @ 1 0 01297624 -course v 3 4 @ ~ + ; 3 0 02067540 02066939 01144873 -court v 3 3 @ ~ + 3 2 02534492 02534936 02534761 -court-martial v 1 2 @ + 1 0 02499172 -court_favor v 1 1 @ 1 0 00881329 -court_favour v 1 1 @ 1 0 00881329 -covenant v 2 4 @ ~ + ; 2 0 02474780 01030832 -cover v 26 7 ! @ ~ * $ + ; 26 14 01332730 01207951 02687916 02675935 01033527 02629793 01912159 00967098 01129201 02395000 02148369 01148296 00967455 00891216 02672859 02474446 02395194 02310674 02147109 01582200 01430447 01336635 01150010 01148580 00060185 00048633 -cover_for v 1 1 @ 1 0 00895855 -cover_up v 1 3 @ ~ + 1 0 02148369 -covet v 1 2 @ ~ 1 1 01827232 -cow v 1 3 @ ~ + 1 0 01779803 -cower v 2 2 @ + 2 1 02063988 02063771 -cowhide v 1 2 @ + 1 0 01411768 -cowl v 1 2 @ + 1 0 01337224 -cox v 1 2 @ + 1 0 02447133 -cozen v 3 3 @ ~ + 3 0 02575082 02574874 02288656 -cozy_up v 1 1 @ 1 0 01804753 -crab v 4 3 @ + ; 4 0 01932586 01902678 01140065 00910973 -crack v 13 6 @ ~ > $ + ; 13 7 00336260 02183024 02182851 01401955 00539770 00337234 00337065 02571067 01785579 00953923 00336718 00238542 00238372 -crack_down v 1 2 @ + 1 0 00418921 -crack_up v 3 2 @ + 3 1 01785579 00861333 00030366 -crackle v 3 3 @ ~ + 3 3 02175384 01058224 00122648 -cradle v 6 3 @ + ; 6 1 01222177 02540262 01876735 01555648 01536663 01076514 -craft v 1 3 @ ~ + 1 0 01658762 -cram v 4 4 @ ~ $ + 4 1 01524298 01612295 00605783 00407146 -cramp v 4 2 @ + 4 0 01304466 00236289 00031181 00031068 -cranch v 1 1 @ 1 0 01594978 -crane v 1 2 @ + 1 1 00028167 -crank v 5 3 @ * + 5 0 01991744 01858796 01595149 01341815 01280958 -crank_out v 1 1 @ 1 0 01753272 -crank_up v 2 1 @ 2 0 01858796 01595149 -crap v 1 4 @ ~ $ + 1 0 00074038 -crap_up v 1 1 @ 1 0 01479009 -crape v 2 2 @ + 2 0 01599805 01223833 -crash v 13 5 @ ~ > $ + 13 5 01972570 02088627 01561819 02019282 01562061 02657080 02177512 02019011 01562209 01507407 00583064 00434919 00017674 -crash-dive v 1 2 @ ; 1 0 01967923 -crash_land v 1 3 @ ~ ; 1 0 01980766 -crate v 1 3 ! @ + 1 0 01486678 -craunch v 1 1 @ 1 0 01594978 -crave v 2 2 @ + 2 1 01188485 00758538 -crawfish v 1 1 $ 1 0 00799383 -crawfish_out v 1 1 $ 1 0 00799383 -crawl v 5 4 @ ~ + ; 5 2 01885845 02730682 02716048 02063771 01961974 -crawl_in v 1 1 ~ 1 0 00017865 -crayon v 1 2 @ + 1 0 01692709 -craze v 2 3 @ ~ + 2 0 01787822 00337568 -creak v 1 2 @ + 1 1 02171664 -cream v 5 5 @ ^ $ + ; 5 0 01418037 01412912 01364483 01261018 00171339 -cream_off v 2 1 @ 2 0 01261018 00677445 -crease v 4 3 @ ~ + 4 1 01278427 01277784 01240514 00564857 -create v 6 4 @ ~ $ + 6 3 01617192 01753788 01685313 02476385 01640207 01621555 -create_by_mental_act v 1 2 @ ~ 1 0 01631534 -create_from_raw_material v 1 2 @ ~ 1 0 01653013 -create_from_raw_stuff v 1 2 @ ~ 1 0 01653013 -create_mentally v 1 2 @ ~ 1 0 01631534 -create_verbally v 1 2 @ ~ 1 0 01697816 -credit v 4 4 ! @ ~ + 4 4 00727143 00727791 02264752 00683930 -creep v 4 3 @ ~ + 4 3 01885845 01911888 02060588 02063771 -creep_in v 1 1 @ 1 0 01228866 -creep_up v 1 1 @ 1 1 01993212 -cremate v 1 2 @ + 1 1 00379154 -crenel v 1 2 @ ; 1 0 02335629 -crenelate v 1 3 @ + ; 1 0 02335629 -crenellate v 1 3 @ + ; 1 0 02335629 -creolize v 1 2 @ + 1 0 00116365 -creosote v 1 2 @ + 1 0 00186446 -crepe v 1 2 @ + 1 0 01599805 -crepitate v 1 2 @ + 1 0 02175384 -crescendo v 1 3 ! @ + 1 0 00546729 -crest v 2 2 @ + 2 0 02693168 02007777 -crew v 1 2 @ + 1 0 01089614 -crib v 3 3 @ + ; 3 0 02574977 02278470 01272234 -crick v 1 2 @ + 1 0 00025510 -cricket v 1 2 @ + 1 0 01076017 -criminalise v 1 4 ! @ ~ + 1 0 02480923 -criminalize v 2 4 ! @ ~ + 2 0 02515080 02480923 -criminate v 2 3 @ ~ + 2 0 00842989 00823669 -crimp v 2 3 @ ~ + 2 0 01457206 01223833 -crimson v 1 2 @ + 1 0 00103317 -cringe v 2 2 @ ~ 2 2 02061069 02063771 -crinkle v 2 3 @ ~ + 2 0 01278427 00564857 -cripple v 2 3 @ ~ + 2 1 00225832 00091647 -crisp v 2 4 @ ~ + ; 2 0 01278427 00322151 -crispen v 1 2 @ ; 1 0 00322151 -crisscross v 3 2 @ + 3 1 01913237 01276800 00510713 -criticise v 2 4 @ ~ * + 2 1 00826509 01096097 -criticize v 2 5 ! @ ~ * + 2 1 00826509 01096097 -critique v 1 3 @ ~ + 1 0 00855512 -croak v 3 4 @ ~ $ + 3 1 00358431 01064401 00909219 -crochet v 2 5 @ ~ $ + ; 2 1 01672753 01672490 -crock v 2 2 @ + 2 0 02060959 01535002 -crock_up v 1 1 @ 1 0 01785579 -cronk v 2 1 @ 2 0 01064401 01053339 -crook v 1 3 @ ~ + 1 0 02034671 -croon v 1 2 @ + 1 1 01049470 -crop v 6 5 @ ~ $ + ; 6 1 01553761 01741446 01652537 01576478 01576165 01321002 -crop_out v 1 1 @ 1 0 00425845 -crop_up v 1 1 @ 1 1 02157519 -croquet v 2 3 @ + ; 2 0 01600873 01154669 -cross v 8 5 ! @ ~ ^ + 8 4 01912159 02023396 02558172 01914657 02685390 01913997 01691798 01429953 -cross-check v 1 1 @ 1 0 00663682 -cross-dress v 1 2 @ + 1 0 00051637 -cross-fertilise v 2 3 @ > + 2 0 00053889 00053656 -cross-fertilize v 2 3 @ > + 2 0 00053889 00053656 -cross-file v 1 2 @ ~ 1 0 02472033 -cross-index v 1 2 @ + 1 0 02472958 -cross-link v 1 2 @ + 1 0 01291527 -cross-pollinate v 1 2 @ + 1 0 00054059 -cross-refer v 1 1 @ 1 0 01025935 -cross_examine v 1 2 @ + 1 0 00787049 -cross_off v 1 1 @ 1 1 00800750 -cross_oneself v 1 1 @ 1 0 00898568 -cross_out v 1 1 @ 1 0 00800750 -cross_question v 1 2 @ + 1 0 00787049 -crossbreed v 1 3 @ ~ + 1 0 01429953 -crosscut v 1 2 @ + 1 0 01601025 -crosshatch v 1 2 @ + 1 0 01695976 -crossruff v 1 2 @ ; 1 0 01078573 -crouch v 2 4 @ ~ * + 2 2 02062632 01545314 -crow v 3 3 @ ~ + 3 3 00883635 00857517 00857653 -crowd v 4 3 @ ~ + 4 4 02028722 02649305 02027612 02054864 -crowd_out v 1 1 @ 1 0 02013840 -crowd_together v 1 2 @ ~ 1 1 02027612 -crown v 4 2 @ + 4 2 02390949 00485891 02694677 01338247 -crucify v 4 4 @ ~ * + 4 2 02484049 01803003 01801847 00823827 -cruise v 4 4 @ ~ + ; 4 2 01931566 01844859 02154031 01844653 -crumb v 3 3 @ + ; 3 0 01265740 00338866 00180197 -crumble v 3 2 @ ~ 3 1 02041877 00397405 00208836 -crump v 3 1 @ 3 0 02184797 01136393 00307191 -crumple v 4 2 @ $ 4 1 02041877 01279186 01278817 00564857 -crunch v 4 3 @ ~ + 4 1 01058224 01594978 01201693 00331082 -crusade v 2 3 @ $ + 2 0 02589576 01093944 -crush v 8 5 @ ~ * $ + 8 4 02424652 01593937 01101913 00339085 01800195 01492944 01103836 00559390 -crush_out v 1 1 @ 1 0 00478682 -crust v 1 3 @ * + 1 0 00356789 -cry v 7 6 ! @ ~ ^ $ + 7 4 00913065 00066191 00912048 00974786 01188987 00985464 00066685 -cry_for v 1 1 @ 1 0 02629111 -cry_out v 1 3 @ ~ $ 1 1 00912048 -cry_out_for v 1 1 @ 1 1 02629111 -crystalise v 4 4 @ ~ > ; 4 0 00621058 00445940 00443670 00143704 -crystalize v 4 5 @ ~ > + ; 4 0 00621058 00445940 00443670 00143704 -crystallise v 3 4 @ > + ; 3 0 00621058 00445940 00143704 -crystallize v 4 5 @ ~ > + ; 4 3 00143704 00621058 00445940 00443670 -cub v 1 2 @ + 1 0 00058014 -cube v 2 3 @ + ; 2 1 00640262 01256867 -cuckold v 1 3 @ ~ + 1 0 02576503 -cuckoo v 1 2 @ + 1 0 00957945 -cuddle v 2 3 @ $ + 2 2 01424948 01425511 -cudgel v 1 2 @ + 1 0 01424106 -cue v 1 2 @ + 1 0 00877848 -cuff v 2 2 @ + 2 0 01417162 01288201 -cull v 2 4 @ ~ ^ + 2 0 02224781 01382083 -cull_out v 1 1 @ 1 0 00677203 -culminate v 5 3 @ ~ + 5 2 00485609 00354030 02526934 02021773 00144040 -cultivate v 4 5 @ ~ $ + ; 4 2 01742726 01741446 02388403 00302464 -culture v 1 1 @ 1 0 00245780 -cumber v 1 2 @ ~ 1 0 01301051 -cumulate v 1 3 @ ~ + 1 0 00158804 -cup v 3 3 @ + ; 3 1 00477828 00189062 00087290 -curb v 4 3 @ ~ + 4 2 02510337 00462092 01300937 00236592 -curdle v 3 3 ! @ + 3 0 00457770 00443000 00442847 -cure v 4 6 @ ~ * $ + ; 4 2 00081725 00527572 00527935 00527801 -curl v 5 6 @ ~ * $ + ; 5 4 00362128 02098458 01523986 01223616 01074074 -curl_up v 1 2 @ $ 1 1 02098458 -curry v 3 4 @ $ + ; 3 0 02192225 00516294 00045639 -curry_favor v 1 1 @ 1 0 00881329 -curry_favour v 1 1 @ 1 0 00881329 -currycomb v 1 2 @ + 1 0 01596855 -curse v 4 4 ! @ $ + 4 3 00865387 00866314 00865958 01030397 -curtail v 2 3 @ ~ + 2 1 00236592 00292877 -curtain v 1 2 @ + 1 0 02353537 -curtain_off v 1 1 @ 1 0 02032010 -curtsey v 1 2 @ + 1 0 02040549 -curtsy v 2 3 @ * + 2 0 02040549 00899352 -curve v 5 4 @ ~ * + 5 3 02033295 02738701 02034986 02034671 00362128 -curvet v 1 2 @ + 1 0 01966352 -cushion v 1 2 @ + 1 1 01576917 -cuss v 1 3 @ $ + 1 1 00865387 -custom-make v 1 1 @ 1 1 01623489 -customise v 2 1 @ 2 0 01623489 00387919 -customize v 2 1 @ 2 0 01623489 00387919 -cut v 41 6 @ ~ ^ $ + ; 41 10 01552519 00429060 02033295 01610834 02422283 01754915 01666717 01413917 01064799 00201722 02613860 02588280 02134232 02101649 01915865 01915730 01860107 01859995 01756563 01756416 01756277 01754737 01713491 01611123 01610990 01555437 01510576 01320424 01319738 01227088 01059564 00561090 00473322 00447654 00429968 00292507 00243900 00226071 00108475 00096136 00061219 -cut_across v 3 2 @ ~ 3 2 01912159 02607658 01601025 -cut_away v 2 2 @ ~ 2 1 01860320 01553987 -cut_back v 4 4 @ ~ $ + 4 2 02004701 00429060 01321002 00236592 -cut_corners v 1 1 @ 1 1 01712554 -cut_down v 6 5 @ ~ > $ ; 6 4 00429060 01322675 01239862 01104509 01319562 01258302 -cut_in v 5 2 @ ~ 5 0 02295447 02057878 00780191 00520194 00396234 -cut_into v 1 2 @ ~ 1 0 01309701 -cut_off v 6 4 @ ~ * ; 6 3 00778275 00292507 01299268 01440646 01259458 01254692 -cut_out v 6 5 @ ~ * + ; 6 3 00472671 01554799 01440646 01549719 01104509 00352310 -cut_short v 4 3 @ ~ * 4 2 00362805 00520602 00317241 00292877 -cut_through v 1 2 @ ~ 1 1 01912159 -cut_to v 1 1 @ 1 0 01860485 -cut_to_ribbons v 1 1 @ 1 1 01083920 -cut_up v 4 2 @ ~ 4 2 01255967 00292672 00483801 00201618 -cutinize v 1 1 @ 1 0 00586073 -cybernate v 1 3 @ + ; 1 0 01718952 -cycle v 5 4 @ ~ * + 5 2 02052675 02051270 01936048 01935476 00343771 -cycle_on v 1 1 @ 1 0 02051444 -cyclostyle v 1 2 @ + 1 0 01748578 -cypher v 2 5 @ ~ $ + ; 2 0 00994076 00637259 -dab v 2 2 @ + 2 2 01233194 01233027 -dabble v 4 2 @ + 4 1 01976384 02419613 02416030 01865575 -dado v 2 2 @ ; 2 0 02226559 01457710 -daisy-chain v 1 1 @ 1 0 01355276 -dally v 4 4 @ ~ $ + 4 0 02437465 02011685 01037910 00711932 -dam v 1 2 @ + 1 1 01477224 -dam_up v 1 1 @ 1 0 01477224 -damage v 2 3 @ ~ + 2 1 00258857 00588084 -damascene v 1 3 @ + ; 1 0 01682446 -damn v 1 2 @ + 1 1 00865958 -damp v 4 3 @ ~ + 4 0 02191311 00573085 00390560 00390215 -dampen v 7 3 @ ~ + 7 2 00390842 00217956 02191311 00391553 00390560 00390459 00390215 -dance v 3 6 @ ~ * $ + ; 3 3 01894649 01708676 02099075 -dandify v 1 2 @ + 1 0 00051942 -dandle v 2 2 @ ; 2 0 01865726 01211581 -dangle v 2 3 @ ~ + 2 2 02717472 01482285 -dapple v 1 3 @ ~ + 1 0 00510364 -dare v 3 3 @ ~ + 3 3 02374924 02545045 00868097 -darken v 3 5 ! @ ~ > + 3 1 00312380 01537829 00311559 -darn v 1 3 @ * + 1 1 01330676 -dart v 3 4 @ ~ $ + 3 3 01899891 02061495 01899708 -dash v 6 4 @ ~ $ + 6 3 02061495 00335923 01507407 02558703 01785748 00184377 -dash_down v 1 1 @ 1 0 01020594 -dash_off v 2 2 @ ; 2 0 01700655 01020594 -date v 5 4 @ ~ $ + 5 3 02485844 00735389 00619183 02486232 00734927 -date-mark v 1 1 @ 1 0 00735224 -date_back v 1 2 @ ~ 1 1 02723951 -date_from v 1 2 @ ~ 1 1 02723951 -date_stamp v 1 1 @ 1 0 00735389 -dateline v 1 2 @ + 1 0 00735224 -datemark v 1 1 @ 1 0 00735224 -daub v 3 5 @ ~ $ + ; 3 0 01360899 01313249 01233387 -daunt v 1 1 @ 1 1 01785748 -dawdle v 3 3 @ ~ + 3 0 02058590 02011685 01997862 -dawn v 3 3 @ > + 3 1 00591755 02609614 00528836 -daydream v 2 2 @ + 2 1 01637633 02418205 -daze v 2 2 @ + 2 0 02162434 02115430 -dazzle v 2 2 @ + 2 1 02162434 00725046 -de-access v 1 1 @ 1 0 02247749 -de-aerate v 1 1 @ 1 0 02363972 -de-emphasise v 1 2 @ ~ 1 0 00514730 -de-emphasize v 1 2 @ ~ 1 0 00514730 -de-energise v 1 2 ! @ 1 0 00023244 -de-energize v 1 2 ! @ 1 0 00023244 -de-escalate v 2 3 ! @ + 2 0 00290983 00290740 -de-ice v 1 1 @ 1 0 00376807 -de-iodinate v 1 3 ! @ + 1 1 00521033 -de-ionate v 1 2 ! @ 1 0 00520760 -deaccession v 1 2 @ ; 1 0 02243967 -deactivate v 2 3 @ ~ + 2 0 00191728 00191517 -deaden v 7 5 ! @ ~ + ; 7 1 00390560 01608122 00439087 00438954 00193328 00192051 00116888 -deaerate v 1 1 @ 1 0 02363972 -deaf v 1 2 @ + 1 0 02189940 -deafen v 3 2 @ * 3 0 02190077 02189940 00316390 -deal v 13 7 @ ~ * ^ $ + ; 13 9 01033527 00734054 02370987 02587532 02294436 02244956 02436349 02377764 02246456 02445509 02294179 02246686 02245993 -deal_out v 1 2 @ ~ 1 0 02294436 -deaminate v 1 2 @ + 1 0 00573247 -deaminize v 1 2 @ + 1 0 00573247 -debar v 3 4 @ ~ * + 3 0 02502037 02453321 00796588 -debark v 1 2 @ + 1 0 01979241 -debase v 3 5 @ ~ $ + ; 3 0 02579447 00493517 00487748 -debate v 4 5 @ ~ * $ + 4 4 00714884 00813044 00812580 00773432 -debauch v 1 3 @ ~ + 1 0 02579447 -debilitate v 1 3 @ ~ + 1 1 00389638 -debit v 1 5 ! @ ~ + ; 1 0 02265560 -debone v 1 2 @ ; 1 0 00197423 -debouch v 2 1 @ 2 0 02083923 00530291 -debrief v 1 2 @ + 1 0 00831476 -debug v 1 2 @ + 1 0 00200242 -debunk v 1 3 @ ~ + 1 0 00853195 -debut v 3 3 @ + ; 3 2 01718015 01717628 01717851 -decaffeinate v 1 1 @ 1 0 02364072 -decalcify v 2 3 ! @ + 2 0 00499304 00499162 -decamp v 3 3 @ ~ + 3 0 02076857 02073714 02010698 -decant v 1 2 @ + 1 0 02070296 -decapitate v 1 2 @ ~ 1 0 01571354 -decarbonate v 1 1 @ 1 0 02364171 -decarbonise v 1 1 @ 1 0 00530442 -decarbonize v 1 1 @ 1 0 00530442 -decarboxylate v 2 4 @ $ + ; 2 0 00501718 00501534 -decarburise v 1 1 @ 1 0 00530442 -decarburize v 1 1 @ 1 0 00530442 -decay v 3 5 @ ~ $ + ; 3 2 00399074 00208836 00552815 -decease v 1 4 @ ~ $ + 1 0 00358431 -deceive v 2 4 ! @ ~ + 2 2 02575082 00854420 -decelerate v 2 4 ! @ ~ + 2 1 00439958 00438495 -decentralise v 1 3 @ ~ + 1 0 00405540 -decentralize v 1 4 ! @ ~ + 1 1 00405540 -decerebrate v 1 2 @ ; 1 0 02364266 -decertify v 1 1 ! 1 1 02445100 -dechlorinate v 1 1 @ 1 0 02364393 -decide v 4 5 @ ~ * > + 4 3 00697589 00698855 00699485 00701877 -decimalise v 2 2 @ + 2 0 00530829 00530592 -decimalize v 2 2 @ + 2 0 00530829 00530592 -decimate v 2 3 @ $ + 2 0 00471058 00470701 -decipher v 2 2 @ + 2 0 00994454 00626130 -deck v 3 2 @ ~ 3 0 02748927 01679980 01412346 -deck_out v 1 3 @ ~ $ 1 1 00044149 -deck_up v 1 3 @ ~ $ 1 0 00044149 -declaim v 2 4 @ ~ * + 2 1 01051364 00910364 -declare v 8 4 @ ~ + ; 8 5 01010118 00965871 00820801 00822367 02444555 02300549 01010852 00977689 -declare_oneself v 1 1 @ 1 0 00879764 -declassify v 1 3 ! @ + 1 0 02509107 -declaw v 1 1 @ 1 0 00196990 -decline v 7 4 @ ~ $ + 7 4 00203866 02237338 00797430 00431826 02039876 01971603 00982913 -declutch v 1 1 @ 1 0 00531068 -decoct v 3 3 @ + ; 3 0 00374893 00237259 00213712 -decode v 1 3 ! @ + 1 0 00994454 -decoke v 1 1 @ 1 0 00530442 -decollate v 1 2 @ ~ 1 0 01571354 -decolonise v 1 3 ! @ + 1 0 02590667 -decolonize v 1 3 ! @ + 1 0 02590667 -decolor v 1 1 @ 1 0 00279822 -decolorise v 1 1 @ 1 0 00279822 -decolorize v 1 1 @ 1 0 00279822 -decolour v 1 1 @ 1 0 00279822 -decolourise v 1 1 @ 1 0 00279822 -decolourize v 1 1 @ 1 0 00279822 -decommission v 1 1 @ 1 0 02312742 -decompose v 3 5 @ ~ $ + ; 3 1 00209174 00399074 00209837 -decompress v 3 4 ! @ ~ + 3 0 01389607 00403967 00026385 -deconcentrate v 1 3 ! @ ~ 1 0 00405540 -deconsecrate v 1 1 @ 1 0 00867062 -deconstruct v 1 2 @ + 1 0 00938748 -decontaminate v 1 3 ! @ + 1 0 00493052 -decontrol v 1 1 @ 1 0 02467399 -decorate v 4 4 @ ~ $ + 4 1 01675963 02748927 02547046 01466543 -decorticate v 2 3 @ + ; 2 0 01263999 00176874 -decouple v 4 2 @ ; 4 0 01297813 00714273 00471576 00471423 -decoy v 1 2 @ + 1 0 02577755 -decrease v 2 4 ! @ ~ + 2 2 00151689 00441445 -decree v 2 3 @ ~ + 2 1 01027508 00715868 -decrepitate v 2 3 @ $ + 2 0 00122485 00122289 -decrescendo v 1 3 ! @ + 1 0 00546873 -decriminalise v 1 3 ! @ ~ 1 0 02481436 -decriminalize v 1 3 ! @ ~ 1 0 02481436 -decry v 1 1 @ 1 1 00864159 -decrypt v 1 2 @ + 1 0 00994454 -decussate v 1 2 @ + 1 0 01914113 -dedicate v 4 4 @ ~ $ + 4 1 00887463 02395996 00887142 00677966 -dedifferentiate v 1 3 ! @ + 1 0 00119725 -deduce v 2 4 @ ~ + ; 2 2 00636574 00944924 -deduct v 3 4 @ ~ + ; 3 2 00641252 02215001 00636574 -deed_over v 1 1 @ 1 0 02255942 -deem v 1 2 @ $ 1 1 00693780 -deep-dye v 1 1 @ 1 0 00283584 -deep-fat-fry v 1 2 @ ; 1 0 00325777 -deep-fry v 1 2 @ ; 1 0 00326310 -deep-six v 2 1 @ 2 0 02222994 01509824 -deep_freeze v 1 2 @ + 1 0 00375417 -deepen v 4 4 @ ~ > + 4 2 00227165 00226566 00570524 00551210 -deface v 1 3 @ ~ + 1 0 01549905 -defalcate v 1 3 @ ~ + 1 0 02292535 -defame v 1 3 @ ~ + 1 0 00846509 -defang v 1 1 @ 1 0 00197091 -defat v 1 1 @ 1 0 02364491 -default v 1 4 ! @ * + 1 1 02253766 -default_on v 1 2 @ * 1 0 02253766 -defeat v 2 3 @ ~ + 2 2 01108148 02473688 -defecate v 1 4 @ ~ $ + 1 1 00074038 -defect v 1 4 @ ~ * + 1 0 02584097 -defeminise v 1 1 @ 1 0 00060701 -defeminize v 1 1 @ 1 0 00060701 -defend v 7 6 ! @ ~ * $ + 7 5 00895304 01127795 01129876 01091427 01149138 02581675 01017643 -defenestrate v 1 2 @ + 1 0 01508884 -defer v 2 4 @ ~ * + 2 2 02642814 00878348 -defervesce v 1 2 @ + 1 0 00571901 -defibrillate v 1 2 @ + 1 0 02553002 -defibrinate v 1 1 @ 1 0 02364573 -defile v 3 3 @ ~ + 3 0 01537959 01537409 00492410 -define v 5 3 @ ~ + 5 4 02611630 00957378 02698319 02736778 00947077 -deflagrate v 2 2 @ + 2 0 02772310 00585148 -deflate v 6 3 ! @ + 6 0 01436865 01436721 00856234 00562720 00562303 00264705 -deflect v 5 2 @ + 5 0 02453321 02034300 02033805 01791756 01147060 -deflower v 2 3 @ ~ + 2 0 01428381 00477941 -defog v 1 2 @ * 1 0 00361641 -defoliate v 1 2 @ + 1 0 00195813 -deforest v 1 2 @ + 1 0 00196024 -deform v 6 4 @ ~ $ + 6 0 01584875 01350699 01280014 00477665 00476744 00140967 -defraud v 1 3 @ ~ + 1 1 02572119 -defray v 1 2 @ + 1 1 02349945 -defrock v 1 1 @ 1 0 02476731 -defrost v 1 2 @ + 1 1 00376807 -defuse v 1 3 ! @ + 1 0 01137696 -defy v 3 4 ! @ ~ + 3 3 02706816 02707800 00868097 -degas v 1 1 @ 1 1 00181180 -degauss v 1 3 @ + ; 1 0 00400101 -degenerate v 1 3 @ ~ + 1 0 00092293 -deglaze v 1 1 @ 1 0 01664704 -deglycerolise v 1 2 @ ; 1 0 01987936 -deglycerolize v 1 3 ! @ ; 1 1 01987936 -degrade v 3 4 ! @ ~ + 3 1 01307896 01800422 00207728 -degrease v 1 1 @ 1 0 02364668 -degust v 1 2 @ + 1 0 01195675 -dehisce v 1 2 @ + 1 0 00308105 -dehorn v 2 2 @ ~ 2 0 00198367 00197206 -dehumanise v 2 2 @ + 2 0 01801297 00479817 -dehumanize v 2 3 ! @ + 2 0 01801297 00479817 -dehumidify v 1 2 ! @ 1 0 00216057 -dehydrate v 3 3 ! @ + 3 0 00212790 00211396 00211108 -dehydrogenate v 1 3 ! @ ~ 1 0 00308399 -deice v 1 2 @ + 1 0 00376807 -deify v 2 3 @ ~ + 2 0 00693401 00545140 -deign v 1 1 @ 1 1 02591312 -deionize v 1 1 @ 1 0 02364767 -deject v 1 3 @ ~ + 1 0 01814396 -delay v 4 4 ! @ ~ + 4 3 00459776 02641957 00460900 00440286 -delegate v 2 3 @ ~ + 2 2 02395395 02391803 -delete v 3 4 @ ~ + ; 3 0 01549187 00999815 00200863 -deliberate v 2 4 @ ~ $ + 2 0 00813044 00812580 -delight v 3 6 @ ~ * > $ + 3 2 01815628 01190948 01817314 -delimit v 3 3 @ ~ + 3 1 02611630 02693842 00730301 -delimitate v 2 3 @ ~ + 2 0 02611630 00730301 -delineate v 5 4 @ ~ $ + 5 0 02736778 02611630 01689379 01582645 00989084 -deliquesce v 2 2 @ + 2 0 00553053 00376625 -delist v 1 1 @ 1 0 02364849 -deliver v 12 6 @ ~ * $ + ; 12 7 00989602 01438304 02293321 02551144 02503365 01062253 00989869 02551602 02358327 02235229 01509079 00056930 -deliver_the_goods v 1 2 ~ * 1 0 02524171 -delocalize v 1 1 @ 1 0 02364965 -delouse v 1 1 @ 1 0 00531163 -delude v 1 3 @ ~ + 1 1 02575082 -deluge v 3 2 @ + 3 0 01524523 00751131 00217700 -delve v 1 2 @ ~ 1 1 01309701 -demagnetise v 2 4 ! @ + ; 2 0 00998762 00400101 -demagnetize v 2 4 ! @ + ; 2 0 00998762 00400101 -demand v 6 4 @ ~ $ + 6 3 00754942 02627934 01017826 01069090 01068985 01018065 -demarcate v 2 2 @ + 2 1 00730499 00730301 -demasculinise v 1 2 @ ~ 1 0 00060833 -demasculinize v 1 2 @ ~ 1 0 00060833 -dematerialise v 1 2 ! @ 1 0 00344492 -dematerialize v 1 2 ! @ 1 0 00344492 -demean v 1 2 @ ~ 1 1 01800422 -demilitarise v 2 3 ! @ ~ 2 0 01099390 01087835 -demilitarize v 2 3 ! @ ~ 2 0 01099390 01087835 -demineralise v 1 3 @ + ; 1 0 00574514 -demineralize v 1 3 @ + ; 1 0 00574514 -demise v 1 1 @ 1 0 02220914 -demist v 1 3 @ * + 1 0 00361641 -demo v 1 3 @ ~ + 1 0 02148788 -demob v 1 1 @ 1 0 01088192 -demobilise v 2 3 ! @ + 2 0 01098206 01088192 -demobilize v 2 3 ! @ + 2 0 01098206 01088192 -democratise v 2 1 @ 2 0 02533907 02533748 -democratize v 2 2 @ + 2 2 02533907 02533748 -demodulate v 1 2 @ + 1 0 01351601 -demolish v 3 3 @ ~ + 3 1 01656458 01800195 01083373 -demonetise v 1 2 @ + 1 0 00494103 -demonetize v 1 2 @ + 1 0 00494103 -demonise v 1 2 @ + 1 0 00547300 -demonize v 1 2 @ + 1 0 00547300 -demonstrate v 4 4 @ ~ $ + 4 4 02148788 00664788 00820976 02521816 -demoralise v 2 3 @ ~ + 2 0 02579447 01814396 -demoralize v 3 3 @ ~ + 3 0 02579447 01814396 00622204 -demote v 1 4 ! @ ~ + 1 1 02399331 -demulsify v 2 3 ! @ > 2 0 00501159 00501048 -demur v 2 3 @ + ; 2 1 00807941 01016626 -demyelinate v 1 1 @ 1 0 01757196 -demystify v 1 2 ! @ 1 0 00518852 -demythologise v 1 3 @ + ; 1 0 00135578 -demythologize v 1 4 ! @ + ; 1 1 00135578 -denationalise v 1 4 ! @ ~ + 1 0 00411792 -denationalize v 1 4 ! @ ~ + 1 0 00411792 -denaturalise v 2 1 @ 2 0 00412860 00412511 -denaturalize v 2 2 ! @ 2 0 00412860 00412511 -denature v 3 2 @ + 3 0 00554110 00553874 00553727 -denazify v 1 3 ! @ + 1 0 00501288 -denigrate v 2 3 @ ~ + 2 0 00864475 00846509 -denitrify v 1 3 ! @ ; 1 0 00502332 -denominate v 1 2 ~ + 1 0 01030132 -denote v 3 4 @ ~ $ + 3 3 00932161 00931467 00974367 -denounce v 4 3 @ ~ + 4 3 00841580 02508245 00842429 00841986 -dent v 1 3 @ * + 1 1 01279631 -denudate v 1 2 @ ~ 1 0 00194912 -denude v 1 3 @ ~ + 1 0 00194912 -deny v 7 6 ! @ ~ $ + ; 7 4 00816556 00817003 02214190 02212825 02213074 01068380 00817167 -deodorise v 1 1 @ 1 0 02126863 -deodorize v 1 3 ! @ + 1 0 02126863 -deodourise v 1 3 ! @ + 1 0 02126863 -deoxidise v 1 4 ! @ ~ ; 1 0 00237877 -deoxidize v 1 4 ! @ ~ ; 1 0 00237877 -deoxygenate v 1 1 @ 1 0 02365073 -depart v 6 5 ! @ ~ $ + 6 4 01848718 02661252 02014165 02008396 02383440 02066304 -depend v 2 3 @ ~ + 2 1 02664234 00712708 -depend_on v 3 1 ~ 3 1 02711987 02664017 02663848 -depend_upon v 2 1 ~ 2 1 02711987 02664017 -depersonalise v 1 3 ! @ + 1 0 00388296 -depersonalize v 1 3 ! @ + 1 1 00388296 -depict v 3 4 @ ~ + ; 3 3 01686956 00987071 01688256 -depilate v 1 2 @ + 1 0 00037514 -deplane v 1 2 @ ; 1 0 02016298 -deplete v 1 4 @ ~ $ + 1 0 01157517 -deplore v 2 2 @ ~ 2 1 00826333 00911350 -deploy v 2 3 @ ~ + 2 1 01149327 01379600 -deplumate v 1 1 @ 1 0 01384275 -deplume v 2 1 @ 2 0 02315048 01384275 -depolarise v 1 3 @ + ; 1 0 00574341 -depolarize v 1 3 @ + ; 1 0 00574341 -depone v 1 2 @ + 1 0 01013040 -depopulate v 1 2 @ + 1 0 00531302 -deport v 3 3 @ ~ + 3 0 02518161 02503365 02499312 -depose v 2 3 @ ~ + 2 1 02405252 01013040 -deposit v 3 4 ! @ ~ + 3 3 01528069 02310855 01575675 -deprave v 1 3 @ ~ + 1 1 02579447 -deprecate v 2 3 @ ~ + 2 0 00856429 00855933 -depreciate v 3 5 ! @ ~ $ + 3 0 00855933 00315330 00315020 -depress v 5 4 ! @ ~ + 5 2 01814396 01973932 01574923 01574766 00225438 -depressurise v 1 3 ! @ ~ 1 0 00403967 -depressurize v 1 3 ! @ ~ 1 0 00403967 -deprive v 3 4 ! @ ~ + 3 2 02314275 02313250 00172732 -depute v 3 3 @ ~ + 3 0 02395395 02394445 02391803 -deputise v 2 3 @ ~ + 2 0 02394662 02394445 -deputize v 2 3 @ ~ + 2 0 02394662 02394445 -deracinate v 2 3 @ ~ + 2 0 02538553 01566916 -derail v 2 2 @ + 2 0 02012043 02011865 -derange v 2 2 @ + 2 0 01764586 00276601 -derate v 1 1 @ 1 0 00531644 -derecognise v 1 0 1 0 02445100 -derecognize v 1 0 1 0 02445100 -deregulate v 1 3 ! @ + 1 0 02512005 -derequisition v 1 2 ! @ 1 0 02276202 -derestrict v 1 2 ! @ 1 0 02510071 -deride v 1 3 @ ~ + 1 1 00852922 -derive v 5 5 @ ~ $ + ; 5 5 00636574 02292125 00251791 00251615 02737187 -derogate v 1 3 @ ~ + 1 0 00864475 -desacralize v 1 1 @ 1 0 02221794 -desalinate v 1 3 ! @ + 1 0 00531904 -desalinise v 1 2 @ + 1 0 00531904 -desalinize v 1 2 @ + 1 0 00531904 -desalt v 1 1 @ 1 0 00531904 -descale v 1 1 @ 1 0 01264148 -descant v 3 2 @ + 3 0 01710836 01050651 01034647 -descant_on v 1 1 @ 1 0 01704129 -descend v 4 5 ! @ ~ $ + 4 3 01970826 02737187 02591312 00342164 -describe v 4 5 @ ~ * $ + 4 4 00987071 00965035 01582645 00652346 -descry v 1 1 @ 1 0 02154312 -desecrate v 2 3 ! @ + 2 1 02568065 00867062 -desegregate v 1 2 ! + 1 0 02481900 -desensitise v 2 4 ! @ ~ + 2 0 02114924 00272683 -desensitize v 2 4 ! @ ~ + 2 0 02114924 00272683 -desert v 3 4 @ ~ * + 3 2 00614057 02584097 01842367 -deserve v 1 2 @ ~ 1 1 02646378 -desex v 1 2 @ ~ 1 0 00061595 -desexualise v 2 2 @ ~ 2 0 01953675 00061595 -desexualize v 2 2 @ ~ 2 0 01953675 00061595 -desiccate v 3 2 @ + 3 0 00212790 00211396 00211108 -design v 7 4 @ ~ $ + 7 4 01638368 00709625 01640550 01639714 01753596 01633825 00698572 -designate v 5 3 @ ~ + 5 2 01030132 02391803 00923793 00746479 00709379 -desire v 3 3 @ ~ + 3 3 01825237 01826723 01826378 -desist v 1 1 ~ 1 0 01196037 -desolate v 3 3 @ ~ + 3 0 00614057 00531302 00388635 -desorb v 2 4 @ $ + ; 2 0 00570205 00570003 -despair v 1 3 ! ~ + 1 1 01810933 -despatch v 1 3 @ ~ + 1 1 01955127 -despise v 1 3 @ ~ + 1 1 01774799 -despoil v 2 3 @ ~ + 2 1 02344568 01565472 -despond v 1 2 @ + 1 0 01811172 -desquamate v 1 2 @ + 1 0 00009492 -destabilise v 2 3 ! @ + 2 0 00272177 00271711 -destabilize v 2 3 ! @ + 2 0 00272177 00271711 -destain v 1 1 @ 1 0 02365168 -destalinise v 1 2 @ + 1 0 00569318 -destalinize v 1 3 ! @ + 1 0 00569318 -destine v 2 3 @ ~ + 2 2 00746479 00709379 -destress v 1 2 @ ~ 1 0 00514730 -destroy v 4 3 @ ~ + 4 3 01619929 01564144 01083373 01326528 -destruct v 2 2 @ ~ 2 0 01620688 01619929 -desulfurize v 1 1 @ 1 0 02365294 -desulphurize v 1 1 @ 1 0 02365294 -desynchronise v 1 3 ! @ + 1 0 00394563 -desynchronize v 1 3 ! @ + 1 0 00394563 -detach v 3 5 ! @ ~ + ; 3 2 01298668 02031622 01299758 -detail v 2 2 @ + 2 2 00956250 00678105 -detain v 3 3 @ ~ + 3 1 02495038 00460900 00459776 -detect v 1 4 @ ~ $ + 1 1 02154508 -deter v 2 3 @ ~ + 2 1 00908099 00770141 -deterge v 1 2 @ + 1 0 01393038 -deteriorate v 2 4 ! @ ~ + 2 2 00208497 00092293 -determine v 8 5 @ ~ * $ + 8 7 00918872 00701040 00699815 00947077 00697589 00700708 00763399 00920336 -detest v 1 3 @ ~ + 1 1 01774136 -dethaw v 1 2 @ ~ 1 0 00376106 -dethrone v 1 3 ! @ + 1 0 02391453 -detick v 1 1 @ 1 0 02365396 -detonate v 2 4 @ ~ > + 2 1 00306723 00306298 -detour v 1 2 @ + 1 0 02066203 -detox v 1 1 @ 1 0 00079788 -detoxicate v 1 2 @ ; 1 0 00505349 -detoxify v 2 3 @ + ; 2 0 00505349 00079788 -detract v 1 2 @ + 1 1 00532115 -detrain v 1 1 @ 1 0 02016220 -detransitivise v 1 1 @ 1 0 00420909 -detransitivize v 1 2 ! @ 1 0 00420909 -detribalise v 1 2 @ + 1 0 00160086 -detribalize v 1 2 @ + 1 1 00160086 -detusk v 1 1 @ 1 0 00198213 -devaluate v 2 4 @ ~ $ + 2 0 00493929 00315020 -devalue v 3 4 @ ~ $ + 3 0 00493929 00493703 00315020 -devastate v 2 3 @ ~ + 2 1 00388635 00260311 -devein v 1 1 @ 1 0 02365481 -develop v 21 6 @ ~ > $ + ; 21 14 01738774 01738597 00545557 00094460 02624263 00171852 00925873 00603298 00342980 00252019 00411020 00253761 01627947 00543410 02138766 01469623 01074701 01074509 00402130 00339464 00234057 -deviate v 3 4 ! @ ~ + 3 2 02064887 02661252 02065085 -devil v 2 5 @ ~ $ + ; 2 0 01787955 01665507 -devilise v 1 1 @ 1 0 00547493 -devilize v 1 2 @ + 1 0 00547493 -devise v 3 3 @ ~ + 3 2 01632411 01651444 02229412 -devitalise v 1 3 @ ~ + 1 0 00166952 -devitalize v 1 4 ! @ ~ + 1 0 00166952 -devitrify v 2 1 @ 2 0 00505717 00505512 -devoice v 1 2 ! @ 1 0 00950670 -devolve v 3 4 @ ~ $ + 3 0 02392385 02229550 00092293 -devolve_on v 1 1 ~ 1 0 02711987 -devote v 3 4 @ ~ $ + 3 2 00887463 00732224 02214717 -devour v 4 2 @ + 4 1 01565360 01820798 01197014 01196653 -diabolise v 1 1 @ 1 0 00547493 -diabolize v 1 1 @ 1 0 00547493 -diagnose v 2 4 @ ~ + ; 2 2 00645552 00645771 -diagonalise v 1 2 @ + 1 0 00521874 -diagonalize v 1 2 @ + 1 0 00521874 -diagram v 1 3 @ ~ + 1 1 01693453 -dial v 2 3 @ + ; 2 1 00790308 00676135 -dialyse v 1 1 @ 1 0 00330426 -dialyze v 1 2 @ + 1 1 00330426 -diazotize v 1 1 @ 1 0 00585298 -dibble v 2 2 @ + 2 0 01567754 01312123 -dice v 2 2 @ + 2 0 01256867 01138733 -dichotomise v 1 2 @ + 1 0 00656107 -dichotomize v 1 2 @ + 1 0 00656107 -dicker v 1 2 @ ~ 1 0 02259829 -dictate v 3 3 @ ~ + 3 2 00747135 00626890 02587084 -didder v 1 1 @ 1 0 00014034 -diddle v 2 2 @ ~ 2 0 02572119 01586278 -die v 11 7 ! @ ~ ^ $ + ; 11 4 00358431 02109818 01784953 00434374 01829475 01785242 01555034 01074914 00538323 00354845 00224295 -die_away v 1 1 @ 1 1 00245059 -die_back v 1 2 @ + 1 0 00242026 -die_down v 2 1 @ 2 0 00242026 00224168 -die_hard v 1 4 @ ~ $ + 1 0 02647497 -die_off v 1 1 @ 1 0 00427683 -die_out v 2 1 @ 2 1 00427683 01555034 -diet v 2 2 @ + 2 0 01190012 01189224 -differ v 2 3 ! ~ + 2 2 02666239 00804802 -differentiate v 6 7 ! @ ~ * $ + ; 6 2 00650353 00651991 00642803 00119524 00119266 00119074 -diffract v 1 2 @ + 1 0 02029805 -diffuse v 3 5 @ ~ > $ + 3 3 02060141 01229071 00968211 -dig v 8 5 @ ~ * ^ + 8 2 01309701 01311103 02419773 02143756 01899557 01310660 01229976 00588221 -dig_in v 2 1 @ 2 2 01531124 01173057 -dig_into v 1 2 @ ~ 1 1 01226875 -dig_out v 3 3 @ ~ * 3 0 02143756 01312261 01311103 -dig_up v 2 3 @ ~ $ 2 1 01313923 02143756 -digest v 8 5 @ ~ * $ + 8 2 01197338 00590924 00668099 00481555 00481391 00397987 00244625 00209420 -digitalise v 1 1 @ 1 0 00563824 -digitalize v 2 3 @ + ; 2 0 00563824 00081509 -digitise v 1 2 @ + 1 0 00563824 -digitize v 1 2 @ + 1 0 00563824 -dignify v 2 2 @ + 2 1 02546876 00544790 -digress v 2 2 @ + 2 1 00780575 02066304 -dike v 1 2 @ + 1 0 01587818 -dilapidate v 2 3 @ ~ + 2 0 01662434 00208836 -dilate v 2 3 @ ~ + 2 1 00305537 00955601 -dilly-dally v 1 2 @ ~ 1 0 02642238 -dillydally v 1 3 @ ~ + 1 0 02642238 -dilute v 2 4 @ ~ $ + 2 1 00226071 00487748 -dim v 5 2 @ ~ 5 0 02162310 00313585 00313464 00312278 00311113 -dimension v 2 2 @ + 2 0 00922142 00143065 -diminish v 2 3 @ ~ + 2 2 00151689 00441881 -dimple v 2 2 @ + 2 0 00509449 00028876 -din v 2 2 @ + 2 2 02187510 00606850 -dine v 2 3 @ ^ + 2 1 01167981 01167780 -dine_in v 1 1 @ 1 0 01167537 -dine_out v 1 1 @ 1 0 01167640 -ding v 1 1 @ 1 0 02181174 -dingdong v 1 1 @ 1 0 02181174 -dinge v 2 1 @ 2 0 00546609 00546528 -dip v 14 3 @ ~ + 14 4 01577093 01192312 00432061 00286483 02311857 02162310 02041109 02039679 02038145 01976220 01660976 01578124 01577966 01312657 -dip_into v 1 1 @ 1 0 00625841 -dip_solder v 1 1 @ 1 0 01595491 -diphthongise v 1 2 @ ~ 1 0 00744237 -diphthongize v 1 3 @ ~ + 1 0 00744237 -direct v 13 6 @ ~ > $ + ; 13 10 00749205 01150559 01710317 02439501 01999798 01951480 01151110 01732921 00749376 00713015 01931768 00990812 00710005 -dirty v 1 4 ! @ ~ + 1 0 01534147 -disable v 2 4 ! @ ~ + 2 1 00512186 00091968 -disabuse v 1 1 @ 1 1 00991577 -disaccord v 1 1 @ 1 0 02718543 -disadvantage v 1 4 ! @ ~ + 1 0 02513460 -disaffect v 1 3 @ ~ + 1 0 01823528 -disafforest v 1 1 @ 1 0 00196024 -disagree v 2 4 ! @ ~ + 2 1 00804802 02718543 -disagree_with v 1 1 @ 1 0 00071037 -disallow v 1 3 ! @ ~ 1 1 00795863 -disambiguate v 1 2 @ + 1 0 00957178 -disappear v 4 4 ! @ ~ + 4 1 00426958 02156546 00427397 00223928 -disappoint v 1 3 @ ~ + 1 1 01798936 -disapprove v 2 4 ! @ ~ + 2 2 00674340 00807178 -disarm v 3 4 ! @ ~ + 3 1 01087835 01830445 01088005 -disarrange v 2 4 ! @ ~ + 2 0 01466733 00278117 -disarray v 1 3 @ ~ + 1 0 00276373 -disarticulate v 1 1 @ 1 0 01294632 -disassemble v 1 2 ! @ 1 1 01657977 -disassociate v 1 2 @ + 1 0 02430580 -disavow v 1 4 ! @ ~ + 1 0 00820075 -disband v 2 2 @ + 2 2 02030967 02029944 -disbar v 1 3 @ + ; 1 0 02480588 -disbelieve v 1 4 ! @ ~ + 1 1 00684645 -disbud v 2 1 @ 2 0 01321671 00197318 -disburden v 1 2 @ ~ 1 0 01487927 -disburse v 1 2 @ + 1 1 02301502 -disc-jockey v 1 1 @ 1 0 01033346 -discard v 1 3 @ ~ + 1 1 02222318 -discase v 1 3 @ ~ $ 1 0 00049900 -discern v 1 3 ~ * + 1 1 02193194 -discerp v 2 2 @ $ 2 0 01572510 01560731 -discharge v 11 6 ! @ ~ * > + 11 7 02563724 01377032 02422026 01489332 01134238 00904046 00104868 01489465 01133825 01097743 00448680 -discipline v 2 4 @ ~ $ + 2 1 02553697 02553428 -disclaim v 2 3 ! @ + 2 0 00758197 00757375 -disclose v 2 5 @ ~ > $ + 2 2 00933821 02137710 -disco v 1 1 @ 1 0 01897406 -discolor v 3 5 ! @ ~ > + 3 0 00282933 00282076 00281101 -discolorise v 1 1 @ 1 0 00279822 -discolorize v 1 1 @ 1 0 00279822 -discolour v 1 3 @ ~ + 1 0 00281101 -discolourise v 1 1 @ 1 0 00279822 -discombobulate v 2 4 @ ~ $ + 2 0 01791232 00621734 -discomfit v 1 3 @ ~ + 1 0 01790020 -discommode v 1 2 @ ~ 1 0 02507736 -discompose v 1 3 @ ~ + 1 0 01790020 -disconcert v 2 4 @ ~ $ + 2 0 01790739 01790020 -disconnect v 2 4 ! @ ~ + 2 2 01421417 01356038 -discontent v 1 3 ! @ + 1 0 01816983 -discontinue v 3 4 ! @ ~ + 3 2 02680814 02683840 00362348 -discord v 1 2 @ + 1 0 02718543 -discount v 2 3 @ ~ + 2 1 00800930 02319428 -discountenance v 2 1 @ 2 0 01792413 00732837 -discourage v 3 5 ! @ ~ $ + 3 3 00908099 01819147 00870577 -discourse v 3 3 @ ~ + 3 0 01034312 00964694 00814621 -discover v 8 6 @ ~ * > $ + 8 7 02154508 00598954 01637982 00721437 02286687 00933821 02128066 00652346 -discredit v 3 3 @ ~ + 3 1 00687738 00847478 00684645 -discriminate v 3 3 @ ~ + 3 2 00650016 02512305 02193765 -discuss v 2 3 @ ~ + 2 2 01034312 00813978 -disdain v 2 4 @ ~ $ + 2 2 01774799 00796976 -disembark v 1 3 ! @ + 1 0 01979241 -disembarrass v 1 2 ~ + 1 0 02350175 -disembody v 1 1 @ 1 0 02350767 -disembowel v 1 1 @ 1 0 00197590 -disembroil v 1 1 @ 1 0 02678070 -disenable v 1 2 @ ~ 1 0 00512186 -disenchant v 1 3 ! @ + 1 0 01817755 -disencumber v 1 1 @ 1 0 01585759 -disenfranchise v 1 3 ! @ + 1 1 02476846 -disengage v 3 4 ! @ ~ + 3 1 01511380 01475953 00220276 -disentangle v 5 4 ! @ ~ + 5 2 01585759 01463520 02678070 01523823 00038365 -disestablish v 1 3 @ + ; 1 0 00173007 -disesteem v 1 4 ! @ ~ + 1 0 00694641 -disfavor v 1 3 @ ~ + 1 0 02513460 -disfavour v 1 3 @ ~ + 1 0 02513460 -disfigure v 1 3 @ ~ + 1 0 01549905 -disforest v 1 2 @ + 1 0 00196024 -disfranchise v 1 2 @ + 1 0 02476846 -disgorge v 2 4 @ ~ $ + 2 0 01541579 00076400 -disgrace v 3 3 @ ~ + 3 1 02547225 01800422 00847478 -disgruntle v 1 2 @ + 1 0 01830600 -disguise v 1 3 @ ~ + 1 1 02158587 -disgust v 2 3 @ ~ + 2 1 02194913 01808374 -dish v 2 4 @ ~ $ + 2 0 01180351 00263471 -dish_out v 2 3 @ ~ $ 2 0 02294436 01180351 -dish_the_dirt v 1 2 @ ~ 1 0 01041954 -dish_up v 1 3 @ ~ $ 1 1 01180351 -disharmonize v 1 1 @ 1 0 00567604 -dishearten v 1 3 ! @ + 1 1 01819387 -dishevel v 1 1 @ 1 0 01474034 -dishonor v 3 4 ! @ ~ + 3 1 02547225 02567519 02237943 -dishonour v 3 3 @ ~ + 3 1 02547225 02567519 02237943 -disillusion v 1 2 @ + 1 0 01817755 -disincarnate v 1 2 ! @ 1 0 01645290 -disincline v 1 2 @ + 1 0 00681125 -disinfect v 1 4 ! @ ~ + 1 0 00089324 -disinfest v 1 2 @ + 1 0 02350620 -disinherit v 1 3 ! @ + 1 0 02316097 -disintegrate v 3 6 ! @ ~ $ + ; 3 1 00397576 00399368 00399074 -disinter v 1 2 @ + 1 1 02457058 -disinvest v 3 4 @ ~ $ + 3 0 02385372 02313906 00177243 -disinvolve v 1 1 @ 1 0 02678070 -disjoin v 2 4 ! @ > + 2 0 01294396 01294182 -disjoint v 4 2 @ > 4 0 02430580 01294632 01294396 01294182 -disk v 1 2 @ ; 1 1 01742415 -disk-jockey v 1 1 @ 1 0 01033346 -dislike v 1 4 ! ~ * + 1 1 01776727 -dislocate v 2 2 @ + 2 0 00465762 00414823 -dislodge v 3 4 ! @ ~ + 3 1 01528522 01883344 01527508 -dismantle v 3 3 @ ~ + 3 0 01661804 01657977 00194534 -dismay v 2 3 @ ~ + 2 0 01814396 01782650 -dismember v 2 2 @ + 2 1 01572224 01572510 -dismiss v 6 4 @ ~ $ + 6 3 00800930 00801626 02465939 02402825 00900728 00338559 -dismount v 1 3 @ + ; 1 1 01958452 -disobey v 1 4 ! @ ~ + 1 1 02543181 -disoblige v 2 3 ! @ ~ 2 0 02507736 00886173 -disorder v 2 4 ! @ ~ + 2 0 01764171 00276373 -disorganise v 1 2 ! + 1 0 02436140 -disorganize v 1 2 ! + 1 0 02436140 -disorient v 1 3 ! @ + 1 0 02159741 -disorientate v 1 1 @ 1 0 02159741 -disown v 2 3 @ ~ + 2 1 02316097 00757544 -disparage v 1 4 ! @ ~ + 1 0 00845909 -dispatch v 5 3 @ ~ + 5 2 01955127 02563724 02482425 02369633 01325128 -dispel v 2 3 @ ~ $ 2 1 02002720 02030424 -dispense v 3 6 @ ~ * ^ + ; 3 1 02294436 02534307 00081072 -dispense_with v 3 2 @ ~ 3 1 02345647 02534062 02303235 -disperse v 6 5 @ ~ > $ + 6 3 01376245 02030424 00330565 02028994 01616608 00968211 -dispirit v 1 2 @ ~ 1 0 01814396 -displace v 4 4 @ ~ > $ 4 1 02013571 02406011 02402825 01850315 -display v 2 3 @ ~ + 2 1 02140033 02535227 -displease v 1 4 ! ~ > + 1 0 01817130 -displume v 2 1 @ 2 0 02315048 01384275 -disport v 2 1 @ 2 0 02492362 01883716 -dispose v 5 4 ! @ ~ + 5 3 02354922 02222318 00680841 01496497 00300761 -dispose_of v 1 1 @ 1 1 02437340 -dispossess v 1 2 @ + 1 0 02314658 -dispread v 1 1 @ 1 0 02077430 -disprove v 1 4 ! @ ~ + 1 1 00667424 -dispute v 2 4 @ ~ * + 2 2 00869126 00775156 -disqualify v 2 4 ! @ ~ + 2 1 00301338 00972608 -disquiet v 1 3 @ ~ + 1 0 01764171 -disregard v 3 3 @ ~ + 3 2 01059564 00800930 00616857 -disrespect v 2 4 ! @ ~ + 2 0 02457825 00694641 -disrobe v 1 3 @ ~ $ 1 1 00049900 -disrupt v 3 3 @ ~ + 3 2 00778275 00554298 00520357 -diss v 1 1 @ 1 0 00848420 -dissatisfy v 1 5 ! @ ~ * + 1 0 01816645 -dissect v 2 3 @ ~ + 2 1 01550220 00643473 -dissemble v 3 4 @ ~ $ + 3 1 00838043 02147603 01721556 -disseminate v 1 5 @ ~ > $ + 1 1 00968211 -dissent v 3 4 ! @ ~ + 3 1 00804653 02521410 00804802 -dissertate v 1 2 @ + 1 0 00814621 -dissever v 1 2 @ ~ 1 0 02467662 -dissimilate v 3 5 ! @ ~ + ; 3 0 00161012 00160880 00160653 -dissimulate v 1 2 @ + 1 0 02147824 -dissipate v 4 4 @ ~ * + 4 3 02030424 02028994 01195804 02614812 -dissociate v 3 4 ! @ + ; 3 0 02430580 00714273 00209598 -dissolve v 11 5 @ ~ > $ + 11 4 00447771 00447309 00355803 02029944 01784799 01784592 00447950 00446329 00376106 00355955 00338559 -dissonate v 2 2 @ + 2 0 02135328 00567604 -dissuade v 1 4 ! @ ~ + 1 1 00770141 -distance v 2 2 @ + 2 0 02683127 02081795 -distemper v 1 3 @ + ; 1 0 01683422 -distend v 3 3 @ $ + 3 0 00305537 00257087 00256862 -distil v 4 4 @ ~ $ ; 4 0 00364868 00229280 00229026 00068467 -distill v 5 5 @ ~ $ + ; 5 3 00475183 00229026 00229280 00364868 00068467 -distinguish v 5 5 @ ~ * $ + 5 3 00650353 02193194 00651991 00922438 00652346 -distort v 5 4 @ ~ $ + 5 2 00835903 01223182 01350699 00836926 00476744 -distract v 2 3 @ ~ + 2 1 01791756 01764171 -distrain v 3 1 @ 3 0 02353752 02353664 02276453 -distress v 2 3 @ ~ + 2 0 02603424 01798100 -distribute v 10 5 @ ~ > $ + 10 6 02294436 01378556 02479990 02201644 02043190 00968211 02754855 02754696 02754598 01504130 -district v 1 2 @ + 1 0 02512150 -distrust v 1 4 ! @ ~ + 1 1 00687926 -disturb v 5 3 @ ~ + 5 5 01770501 01419473 01207527 00520019 00259755 -disunify v 1 2 ! @ 1 0 00368662 -disunite v 2 4 @ ~ > + 2 0 02430580 01556921 -ditch v 6 3 @ + ; 6 0 02228268 02227362 02224945 01980920 01562891 01311896 -dither v 2 2 @ + 2 0 01820189 01819911 -ditto v 1 2 @ + 1 0 00959027 -divagate v 1 2 @ + 1 0 00780575 -divaricate v 2 1 @ 2 0 02710137 01580142 -dive v 3 5 @ ~ $ + ; 3 2 01967373 01962865 01962671 -dive-bomb v 1 2 @ + 1 0 01132667 -diverge v 4 5 ! @ ~ + ; 4 1 02032415 02732603 02709906 02661252 -diversify v 3 4 ! @ ~ + 3 0 00437125 00436668 00436404 -divert v 4 3 @ ~ + 4 3 02064887 01952363 02492362 02312014 -divest v 4 5 ! @ ~ $ + 4 1 02314275 02385372 02313906 00177243 -divide v 6 6 ! @ ~ > + ; 6 6 02467662 00642098 02621853 01557774 02031158 01556921 -divine v 2 3 @ ~ + 2 0 02107588 01314948 -divorce v 2 3 @ * + 2 2 02430580 02490634 -divulge v 1 5 @ ~ > $ + 1 1 00933821 -divvy_up v 1 2 @ * 1 0 02294179 -dizen v 1 1 @ 1 0 00045240 -dizzy v 1 1 @ 1 0 00532328 -dj v 1 2 @ + 1 0 01033346 -do v 13 5 @ ~ * $ + 13 13 02560585 01712704 02561995 02617567 01645601 02568672 02669789 01619014 00010435 02709107 02523221 00038849 01841772 -do_a_job_on v 1 1 @ 1 0 01564836 -do_away_with v 1 2 @ ~ 1 1 00471711 -do_by v 1 3 @ ~ $ 1 1 02514187 -do_drugs v 1 3 @ ~ > 1 0 01200440 -do_good v 1 2 @ + 1 1 02290956 -do_in v 1 1 @ 1 1 01327301 -do_it v 1 3 @ ~ $ 1 0 01426397 -do_justice v 2 1 @ 2 1 02138453 00592544 -do_one's_best v 1 1 @ 1 1 02563120 -do_the_dishes v 1 1 @ 1 0 01533166 -do_the_honors v 1 1 @ 1 0 02592543 -do_up v 2 1 @ 2 0 01283611 00043078 -do_well v 1 1 @ 1 1 02723564 -do_well_by v 1 1 @ 1 0 02516107 -do_work v 1 2 ~ $ 1 1 02410855 -dock v 5 4 ! @ ~ + 5 1 02085742 02313690 02215266 01556178 01305731 -docket v 2 3 @ + ; 2 1 01008719 01008546 -doctor v 3 4 @ ~ + ; 3 2 00488430 00080304 00260648 -doctor_up v 1 1 @ 1 0 00488430 -document v 2 3 @ ~ + 2 2 01002297 00666510 -dodder v 1 2 @ + 1 0 01918803 -dodge v 3 3 @ ~ + 3 3 02096494 02096670 00809654 -doff v 1 1 @ 1 0 01590658 -dog v 1 2 @ ~ 1 1 02001858 -dogfight v 2 2 @ + 2 0 01648373 01092826 -dogmatise v 2 2 @ + 2 0 00980908 00963283 -dogmatize v 2 2 @ + 2 0 00980908 00963283 -dogsled v 1 3 @ $ + 1 0 01939406 -dole_out v 1 2 @ ~ 1 1 02294436 -doll_up v 1 1 @ 1 0 00043078 -domesticate v 3 4 @ ~ $ ; 3 0 00302464 00302130 00301856 -domesticise v 1 4 @ ~ $ ; 1 0 00302130 -domesticize v 1 4 @ ~ $ ; 1 0 00302130 -domicile v 1 2 @ ~ 1 0 02650552 -domiciliate v 2 3 @ ~ + 2 0 02650552 02459173 -dominate v 5 3 @ ~ + 5 3 02644234 02646931 02539334 02744280 02696129 -domineer v 1 1 @ 1 1 01781757 -don v 1 2 @ ~ 1 1 00050652 -donate v 1 3 @ ~ + 1 1 02263027 -dong v 1 1 @ 1 0 02181174 -doodle v 1 3 @ * + 1 0 01693324 -doom v 3 5 @ ~ * + ; 3 1 00746479 00906735 00890855 -dope v 3 4 @ ~ + ; 3 0 01200806 00557022 00085046 -dope_off v 1 1 ~ 1 0 00017282 -dope_up v 1 3 @ ~ ; 1 0 00085046 -dose v 2 4 @ ~ + ; 2 1 00516584 00084738 -doss v 1 2 @ + 1 0 00017674 -doss_down v 1 1 @ 1 0 00017674 -dot v 4 3 @ ~ + 4 1 02689882 01376245 00998294 00507913 -dote v 2 2 @ + 2 0 02697610 01777459 -double v 6 5 @ ~ ^ + ; 6 4 00246217 01409523 02063309 01525505 02300425 01734502 -double-check v 1 2 @ + 1 0 00663549 -double-date v 1 2 @ + 1 0 02486060 -double-glaze v 1 1 @ 1 1 02335527 -double-park v 1 2 @ ; 1 0 01934976 -double-space v 1 1 @ 1 0 01005548 -double-team v 1 2 @ ; 1 0 01148460 -double_back v 1 1 @ 1 0 02004528 -double_birdie v 1 2 @ ; 1 0 01598637 -double_bogey v 1 3 @ + ; 1 1 01598785 -double_crochet v 1 3 @ + ; 1 0 01673137 -double_cross v 1 2 @ + 1 1 02537812 -double_dye v 1 1 @ 1 0 00288314 -double_over v 1 1 @ 1 1 02063309 -double_stitch v 1 3 @ + ; 1 0 01673137 -double_tongue v 1 2 @ ; 1 0 01734131 -double_up v 3 1 @ 3 1 02063309 02295717 01139623 -doubt v 2 2 @ + 2 2 00687295 00687523 -douche v 1 2 @ + 1 0 00038199 -douse v 7 3 @ ~ + 7 0 02760495 02649220 01976220 01577093 00436093 00421306 00216216 -dovetail v 1 3 @ > + 1 1 02660290 -dower v 1 3 @ ~ + 1 0 02201268 -down v 6 4 @ ~ + ; 6 3 01202374 01197014 01103336 01981279 01239862 00474017 -downgrade v 1 2 ! @ 1 1 00660730 -download v 1 2 ! @ 1 0 02233704 -downplay v 2 2 @ ~ 2 0 00841125 00513492 -downsize v 3 1 @ 3 0 02403773 00586816 00586682 -dowse v 4 3 @ ~ + 4 0 02649220 01315140 00421306 00216216 -doze v 1 3 @ ^ + 1 1 00015303 -doze_off v 1 1 ~ 1 0 00017282 -draft v 3 4 @ ~ + ; 3 2 01701634 01097500 01683582 -drag v 11 5 @ ~ * ^ + 11 6 01453433 01454810 02677797 02099544 02058756 01199009 02101789 01917845 01244692 00783689 00341757 -drag_a_bunt v 1 2 @ ; 1 1 01408297 -drag_down v 1 1 @ 1 0 01597096 -drag_in v 1 1 @ 1 0 02677797 -drag_on v 2 1 @ 2 0 02705428 00341757 -drag_one's_feet v 1 2 @ ~ 1 1 02642238 -drag_one's_heels v 1 2 @ ~ 1 0 02642238 -drag_out v 2 1 @ 2 1 02705428 00341757 -drag_through_the_mud v 1 1 @ 1 1 00848169 -drag_up v 1 1 @ 1 0 01025785 -draggle v 1 1 @ 1 0 00216692 -dragoon v 2 2 @ + 2 0 02506181 02424533 -drain v 4 3 @ ~ + 4 3 02071457 01158022 00451648 00389638 -drain_the_cup v 1 1 @ 1 0 01175937 -dramatise v 3 4 @ ~ + ; 3 0 01701311 00988287 00956405 -dramatize v 3 4 @ ~ + ; 3 3 01701311 00988287 00956405 -drape v 4 3 @ * + 4 2 01542525 01543000 01617034 01612487 -draught v 1 1 @ 1 0 01683582 -draw v 36 7 @ ~ * ^ $ + ; 36 20 01448100 02293148 01582645 00730758 01995211 01690294 01854132 00987071 00675901 01760300 01199009 02088107 02311387 01078050 01643297 00556593 02097800 01690816 01643464 01243148 02742107 02628832 02483564 02103162 01539063 01505254 01359432 01243298 01212230 01115190 00476965 00430808 00327982 00197590 00143338 00097029 -draw_a_bead_on v 2 2 @ ~ 2 0 01151627 00705517 -draw_a_blank v 1 1 ~ 1 0 00609100 -draw_a_line v 1 1 @ 1 0 00234536 -draw_and_quarter v 1 1 @ 1 0 02483564 -draw_away v 2 2 @ $ 2 0 01999688 01592774 -draw_back v 2 3 @ ~ $ 2 1 01994442 01609773 -draw_close v 3 4 @ ~ * $ 3 1 01424948 02053941 01609953 -draw_in v 6 3 @ ~ $ 6 2 01506583 01505254 02098458 02054703 02015384 01282142 -draw_near v 1 4 @ ~ * $ 1 1 02053941 -draw_off v 2 3 @ ~ $ 2 1 01592774 02311387 -draw_out v 6 3 @ ~ $ 6 2 00744776 00317888 01818538 01630532 01540693 01351170 -draw_rein v 1 1 @ 1 1 02442737 -draw_the_line v 1 1 @ 1 1 00234536 -draw_together v 1 1 @ 1 1 01607072 -draw_up v 5 3 @ $ ; 5 4 02448734 01982686 01863410 00706804 01863158 -drawl v 1 2 @ + 1 1 00980176 -dread v 1 2 ~ + 1 1 01780202 -dream v 2 4 @ * ^ + 2 2 01637633 02118242 -dream_up v 1 2 @ ~ 1 1 01634142 -dredge v 3 4 @ ~ + ; 3 0 01261773 01244692 01244516 -dredge_up v 1 1 @ 1 0 01025785 -drench v 4 4 @ ~ > ; 4 0 02771564 01169589 00498163 00216216 -dress v 16 8 ! @ ~ * ^ $ + ; 16 6 00046534 00047945 01266269 00044797 00043683 00542809 02036650 01679433 01466543 01364184 01321002 01262813 00511636 00082714 00045639 00038849 -dress_down v 2 3 ! @ ~ 2 0 00824767 00045346 -dress_out v 1 3 @ * $ 1 0 00542809 -dress_ship v 1 1 @ 1 0 01679339 -dress_up v 5 5 ! @ ~ ^ $ 5 2 00044149 00293528 01670315 00051761 00044797 -dribble v 4 5 @ ~ $ + ; 4 1 02070874 01611516 01408760 00102974 -drift v 10 4 @ ~ $ + 10 3 01902783 01925694 01881180 02662821 02617338 01903218 01874875 01576779 00572502 00571390 -drift_apart v 1 1 @ 1 0 01824050 -drift_away v 1 1 @ 1 0 01824050 -drift_off v 1 1 ~ 1 0 00017282 -drill v 5 3 @ ~ + 5 3 01443021 00603981 00606093 00606335 00604094 -drill_in v 1 1 @ 1 0 00606471 -drink v 5 6 @ ~ * ^ $ + 5 4 01170052 01171183 01175467 00737005 01172275 -drink_down v 1 1 @ 1 0 01202374 -drink_in v 1 1 @ 1 0 00737005 -drink_up v 1 1 @ 1 1 01175937 -drip v 2 3 @ $ + 2 1 02071142 01611516 -drip-dry v 1 1 @ 1 0 00219316 -drive v 22 7 @ ~ * ^ $ + ; 22 11 01930874 01930117 02056971 01516534 02505358 01506157 01646300 01512259 01509584 02406916 01026975 02742232 02408281 02057656 01939553 01930482 01407904 01407722 01310964 01181741 01142636 01142490 -drive_around v 2 1 @ 2 1 02058049 02419266 -drive_away v 1 3 @ ~ $ 1 1 02002720 -drive_back v 1 1 @ 1 0 01131197 -drive_home v 2 2 @ ~ 2 0 02358327 01014362 -drive_in v 3 3 @ > ; 3 2 01113620 01980300 01352996 -drive_off v 1 3 @ ~ $ 1 1 02002720 -drive_out v 3 3 @ ~ $ 3 1 02002720 02056466 00576228 -drive_up v 1 2 @ ; 1 1 01850135 -drivel v 1 2 @ + 1 0 00102974 -drizzle v 2 2 @ + 2 0 02757475 01376082 -drone v 2 2 @ + 2 0 02188442 00944788 -drone_on v 1 1 @ 1 0 00944788 -drool v 2 3 @ ^ + 2 0 01827425 00102974 -drool_over v 1 1 @ 1 0 01827745 -droop v 3 3 @ ~ + 3 1 01985524 02717701 00469637 -drop v 23 6 @ ~ > $ + ; 23 12 01977701 01976841 00432683 01985923 02403920 00941446 00363110 01489465 01258302 01100008 02267060 00393534 02717472 02465939 01611516 01513430 01200661 00615615 00614999 00548616 00148341 00092293 00057764 -drop-kick v 2 3 @ + ; 2 0 01372026 01370843 -drop_a_line v 1 2 @ $ 1 0 01007027 -drop_anchor v 1 1 @ 1 0 01304716 -drop_away v 1 2 @ ~ 1 0 00204391 -drop_back v 2 1 @ 2 1 01833508 02058756 -drop_behind v 1 1 @ 1 1 02058756 -drop_by v 1 1 @ 1 1 02488641 -drop_by_the_wayside v 1 0 1 0 01083044 -drop_dead v 1 3 @ ~ $ 1 1 00358431 -drop_down v 1 3 @ ~ $ 1 0 01985923 -drop_in v 1 1 @ 1 1 02488641 -drop_like_flies v 1 1 @ 1 0 00030853 -drop_off v 5 3 @ ~ + 5 2 00152887 00017282 01489465 01113806 00204391 -drop_one's_serve v 1 2 @ ; 1 0 01156706 -drop_open v 1 1 @ 1 0 01982253 -drop_out v 3 4 ! @ $ + 3 1 01083044 02383174 02382938 -drop_the_ball v 1 1 @ 1 0 02566227 -dropforge v 1 1 @ 1 0 01675667 -dropkick v 2 3 @ + ; 2 0 01372026 01370843 -drown v 5 2 @ ^ 5 4 01339294 00472532 00360501 00479060 02755911 -drown_out v 1 1 @ 1 1 02172534 -drowse v 2 4 @ ~ ^ + 2 1 00015303 00016380 -drowse_off v 1 1 ~ 1 0 00017282 -drub v 1 3 @ $ + 1 0 01412912 -drudge v 1 2 @ + 1 0 02419773 -drug v 2 5 @ ~ > + ; 2 1 00084738 01200440 -drum v 3 4 @ $ + ; 3 2 02174830 01732532 00605783 -drum_out v 1 2 @ ~ 1 1 02401809 -drum_up v 1 1 @ 1 0 01385643 -dry v 2 5 ! @ ~ > + 2 2 00218475 00219403 -dry-dock v 1 1 @ 1 0 01305939 -dry-nurse v 1 1 @ 1 0 01186844 -dry-rot v 1 1 @ 1 0 00211001 -dry-wall v 1 1 @ 1 0 01655221 -dry_clean v 1 2 @ + 1 0 01535117 -dry_out v 3 3 @ ~ > 3 1 00219403 02771756 00218475 -dry_up v 2 2 @ $ 2 1 00211108 00242205 -drydock v 1 1 @ 1 0 01305939 -dub v 3 4 @ * + ; 3 2 01028640 00960562 02399185 -duck v 4 3 @ ~ + 4 2 01865203 01967792 01976220 00809654 -duel v 1 2 @ + 1 0 01121948 -dulcify v 1 2 @ ~ 1 0 02195470 -dulcorate v 1 2 @ ~ 1 0 02195470 -dull v 7 4 ! @ ~ + 7 2 01246321 00391971 02191311 02115273 01246444 00538199 00391672 -dumbfound v 1 2 @ ~ 1 0 00622384 -dummy v 1 1 @ 1 0 01623656 -dummy_up v 2 1 @ 2 0 01623656 01041061 -dump v 6 3 @ $ + 6 2 02225204 02224945 02350878 01977545 01977080 01412346 -dun v 4 4 @ ~ + ; 4 0 01803003 00845144 00528115 00312165 -dung v 2 2 @ + 2 0 00502623 00074453 -dunk v 3 4 @ ~ + ; 3 1 01577093 01597662 01192312 -dupe v 1 3 @ ~ + 1 1 00854904 -duplex v 1 1 @ 1 0 00586157 -duplicate v 4 3 @ ~ + 4 1 01734502 02659358 01735308 00246217 -dusk v 1 1 @ 1 0 00312575 -dust v 4 4 @ ~ * + 4 2 01244351 01252216 01612660 01376245 -dwarf v 2 2 @ + 2 1 02696306 02452614 -dwell v 5 4 @ ~ ^ + 5 3 00704249 02653381 02649830 02755773 00959367 -dwell_on v 1 1 @ 1 1 02640226 -dwindle v 1 2 @ + 1 1 00267681 -dwindle_away v 1 1 @ 1 0 00267681 -dwindle_down v 1 1 @ 1 0 00267681 -dye v 1 3 @ ~ + 1 1 00283090 -dyke v 1 2 @ + 1 0 01587818 -dynamise v 2 1 @ 2 0 00551840 00551718 -dynamite v 1 2 @ + 1 1 00307419 -dynamize v 2 1 @ 2 0 00551840 00551718 -e-mail v 1 5 @ ~ * + ; 1 0 01032451 -eagle v 2 3 @ + ; 2 0 01598637 01113134 -earmark v 1 2 @ + 1 0 00724150 -earn v 2 4 @ ~ $ + 2 2 02289295 02290196 -earth v 2 2 @ + 2 0 02146990 01292727 -earth_up v 1 1 @ 1 0 01477888 -ease v 4 4 @ ~ ^ + 4 4 01834213 00082308 00518395 01815185 -ease_off v 2 1 @ 2 0 00156485 00156276 -ease_up v 3 2 @ $ 3 2 01848465 00156485 00156276 -eat v 6 6 @ ~ * ^ $ + 6 3 01168468 01166351 01179865 01766273 01157517 00274283 -eat_at v 1 1 @ 1 0 00275253 -eat_away v 2 2 @ ~ 2 0 00274724 00274633 -eat_in v 1 2 ! @ 1 0 01167537 -eat_into v 1 1 @ 1 0 01773825 -eat_on v 1 1 @ 1 1 01766273 -eat_out v 1 2 ! @ 1 0 01167640 -eat_up v 3 3 @ ~ $ 3 2 01196802 01157517 01582409 -eavesdrop v 1 3 @ ~ + 1 0 02189714 -ebb v 3 3 ! @ + 3 1 01903935 01127638 00570907 -ebb_away v 1 1 @ 1 0 01903935 -ebb_down v 1 1 @ 1 0 01903935 -ebb_off v 1 1 @ 1 0 01903935 -ebb_out v 1 1 @ 1 0 01903935 -ebonise v 1 2 @ ; 1 0 00286333 -ebonize v 1 3 @ + ; 1 0 00286333 -echo v 3 3 @ ~ + 3 2 00957679 02183787 02675458 -eclipse v 2 2 @ + 2 2 02744280 02158340 -economise v 2 3 @ ~ + 2 0 02357228 02269143 -economize v 2 3 @ ~ + 2 1 02269143 02357228 -eddy v 1 2 @ + 1 1 02047650 -edge v 4 4 @ ~ ^ + 4 1 02072501 02361600 01466978 01246843 -edge_in v 1 1 @ 1 0 02017937 -edge_up v 1 1 @ 1 1 02017937 -edify v 1 2 @ + 1 1 00991385 -edit v 4 4 @ ~ $ + 4 1 00200397 00968038 00201722 00200863 -edit_out v 1 2 @ $ 1 1 00201722 -editorialise v 1 1 @ 1 0 01027924 -editorialize v 1 2 @ + 1 0 01027924 -educate v 3 4 @ ~ $ + 3 3 02387486 00603298 02388403 -educe v 2 2 @ ~ 2 0 01630532 00251615 -edulcorate v 1 2 @ ~ 1 0 02195470 -eff v 1 3 @ ~ $ 1 0 01426397 -efface v 3 5 @ ~ * $ + 3 1 00311338 01800789 01548718 -effect v 2 4 @ ~ > + 2 2 01642924 02560767 -effectuate v 1 4 @ ~ > + 1 1 01642924 -effeminise v 1 1 @ 1 0 00566322 -effeminize v 1 1 @ 1 0 00566322 -effervesce v 1 3 @ ~ + 1 0 00519363 -effloresce v 3 3 @ ~ + 3 1 00294522 00443670 00255272 -effuse v 3 2 @ + 3 0 02069788 00546080 00291286 -egest v 1 2 @ ~ 1 0 00072989 -egg v 2 3 @ + ; 2 0 01508268 01261491 -egg_on v 1 1 ~ 1 1 01230710 -egotrip v 1 1 @ 1 0 02372161 -egress v 1 2 ~ + 1 0 00528990 -ejaculate v 2 2 @ + 2 1 00981944 00055010 -eject v 4 3 @ ~ + 4 2 01468576 00104868 02076999 01375637 -eke_out v 4 1 @ 4 1 02342580 02616236 02239997 02239846 -elaborate v 4 4 @ ~ $ + 4 1 00955601 01625343 00400883 00251463 -elapse v 1 2 @ ~ 1 1 02072849 -elate v 1 5 ! @ ~ > + 1 1 01811736 -elbow v 2 2 @ + 2 1 01873942 01239494 -elect v 2 3 @ ~ + 2 2 02400760 00676864 -electioneer v 1 2 @ + 1 0 02414473 -electrify v 3 3 @ + ; 3 0 01830798 00506040 00505802 -electrocute v 2 2 @ + 2 0 02485135 02484957 -electroplate v 1 2 @ + 1 0 01395782 -elegise v 1 2 @ ; 1 0 01703326 -elegize v 1 3 @ + ; 1 0 01703326 -elevate v 3 4 @ ~ > + 3 3 02397637 01974062 00544549 -elicit v 3 4 @ ~ + ; 3 2 01759326 01630532 00728826 -elide v 1 3 @ ~ + 1 0 00615421 -eliminate v 7 5 @ ~ $ + ; 7 5 00471711 02629256 00470701 00685419 00072989 01102839 00575561 -elocute v 1 2 @ + 1 0 00769180 -elongate v 1 4 @ ~ > + 1 1 00318816 -elope v 1 2 @ + 1 0 02074186 -elucidate v 2 3 @ ~ + 2 1 00939857 00621058 -elude v 3 3 @ ~ + 3 2 02074377 02723232 00809654 -elute v 1 2 @ + 1 1 01270463 -emaciate v 2 3 @ > + 2 0 00389406 00389238 -email v 1 5 @ ~ * + ; 1 0 01032451 -emanate v 2 3 @ ~ + 2 1 00546192 00004605 -emancipate v 2 2 @ + 2 2 02497400 02496498 -emasculate v 2 3 @ ~ + 2 1 00541953 00060833 -embalm v 1 3 @ ~ + 1 0 02226981 -embank v 1 2 @ + 1 0 02711375 -embargo v 2 2 @ + 2 0 02493876 02452758 -embark v 3 4 ! @ ~ + 3 2 01979462 00348252 02373336 -embark_on v 1 2 @ ~ 1 1 01650610 -embarrass v 2 3 @ ~ + 2 1 01792097 02557199 -embattle v 2 1 @ 2 0 02366745 01758180 -embed v 2 2 @ ~ 2 1 01528821 01089423 -embellish v 4 4 @ ~ $ + 4 1 00956405 02748927 01675963 00293141 -embezzle v 1 3 @ ~ + 1 1 02292535 -embitter v 1 2 > + 1 1 01773535 -emblazon v 2 3 @ ~ ; 2 0 01696648 01684180 -embody v 3 3 @ ~ + 3 3 02698443 02697725 02740352 -embolden v 1 2 @ ~ 1 1 01817938 -emboss v 1 3 @ ~ + 1 1 01531265 -embower v 1 1 @ 1 0 01390210 -embrace v 3 4 @ ~ $ + 3 3 02629793 01424456 00601822 -embrangle v 1 2 @ ~ 1 0 00402831 -embrittle v 1 2 @ ~ 1 0 00505620 -embrocate v 1 2 @ + 1 0 00085626 -embroider v 2 4 @ ~ * + 2 1 01667607 00956405 -embroil v 1 2 @ + 1 1 02677797 -embrown v 2 1 @ 2 0 00311980 00285705 -emcee v 1 2 @ + 1 0 02592397 -emend v 1 1 @ 1 0 00207911 -emerge v 5 3 @ ~ + 5 4 00423971 00528990 00426581 01990694 02625016 -emigrate v 1 5 ! @ ~ * + 1 1 00416135 -emit v 3 4 ! @ ~ + 3 2 00105333 02767308 00983824 -emote v 1 2 @ + 1 0 01772806 -empale v 1 2 @ ~ 1 0 01444326 -empanel v 2 1 @ 2 0 02472703 00625963 -empathise v 1 1 + 1 0 00594058 -empathize v 1 1 + 1 0 00594058 -emphasise v 2 2 @ ~ 2 0 01014609 01013367 -emphasize v 2 3 @ ~ + 2 2 01013367 01014609 -emplace v 2 3 @ $ + 2 0 01496843 01496630 -emplane v 1 2 @ ; 1 0 02018265 -employ v 2 4 ~ > $ + 2 2 01158872 02409412 -empower v 2 3 @ ~ + 2 1 02473981 02474239 -empty v 5 5 ! @ ~ > + 5 4 00449692 00448680 02076676 01488313 00073343 -empurple v 1 1 @ 1 0 00285088 -emulate v 3 3 @ + ; 3 1 02675701 02675270 01122405 -emulsify v 2 4 ! @ > + 2 0 00500834 00500638 -enable v 1 3 ! @ ~ 1 1 00512877 -enact v 2 3 @ ~ + 2 2 02427916 01722447 -enamel v 1 4 @ * + ; 1 1 01681723 -enamor v 1 2 @ ~ 1 0 01806505 -enamour v 1 2 @ ~ 1 0 01806505 -encamp v 1 2 @ + 1 1 02653996 -encapsulate v 2 2 @ + 2 0 01587984 00244416 -encase v 1 3 @ ~ + 1 1 01486312 -enchain v 1 1 @ 1 0 01288461 -enchant v 3 4 ! @ ~ + 3 1 01817314 01806505 00776988 -encipher v 1 1 @ 1 1 00994076 -encircle v 2 3 @ ~ + 2 0 01522716 01302854 -enclose v 4 3 @ ~ + 4 3 01580467 02711114 01587062 00187526 -enclothe v 1 3 @ ~ $ 1 0 00047945 -encode v 1 4 ! @ ~ + 1 0 00993892 -encompass v 1 3 @ $ + 1 1 02629793 -encore v 1 2 @ + 1 0 00754313 -encounter v 5 5 @ ~ * $ + 5 5 02023107 02248465 02730326 02739480 01079480 -encourage v 3 5 ! @ ~ > + 3 3 02554922 01818235 00771341 -encrimson v 1 1 @ 1 0 00535061 -encroach v 2 2 @ + 2 1 01993352 02569790 -encroach_upon v 1 2 @ ~ 1 1 02019716 -encrust v 3 3 @ ~ + 3 1 01261628 01517355 00255079 -encrypt v 1 2 @ + 1 0 00994076 -encumber v 1 2 @ ~ 1 0 01301051 -end v 4 5 ! @ ~ > + 4 3 02609764 00352826 02735418 01620854 -end_up v 1 1 @ 1 1 00352558 -endanger v 2 2 @ ~ 2 2 02697120 01036319 -endear v 1 2 @ + 1 1 01807170 -endeavor v 1 3 @ ~ + 1 1 02531199 -endeavour v 1 3 @ ~ + 1 0 02531199 -endorse v 4 4 @ ~ $ + 4 3 02453889 02556817 02447793 00997794 -endow v 2 3 @ ~ + 2 2 02474239 02201268 -endue v 1 2 @ ~ 1 0 02474239 -endure v 7 5 @ ~ * $ + 7 4 00668099 02707251 02618149 02109190 02705132 02704928 02647497 -energise v 2 4 ! @ ~ + 2 0 00559102 00022686 -energize v 2 4 ! @ ~ + 2 1 00022686 00559102 -enervate v 2 3 @ ~ + 2 1 00389856 01783881 -enfeeble v 1 3 @ ~ + 1 0 00389638 -enfeoff v 1 2 @ + 1 0 02363371 -enfilade v 1 1 @ 1 0 02688657 -enfold v 1 3 @ ~ + 1 0 01580467 -enforce v 2 4 ! @ ~ + 2 2 02560164 02560424 -enfranchise v 2 3 ! @ + 2 0 02477135 02477011 -engage v 10 4 ! @ ~ + 10 6 02375131 00600370 02409412 02401399 00886602 00220115 02376089 02240151 02208537 01510827 -engender v 2 1 @ 2 1 01649024 00054628 -engild v 1 1 @ 1 0 01683101 -engineer v 2 3 @ ~ + 2 0 00711550 00710005 -englut v 1 1 @ 1 0 01193099 -engorge v 1 2 @ + 1 0 01193099 -engraft v 2 2 @ ~ 2 0 01530678 01528821 -engrave v 4 5 @ ~ $ + ; 4 1 01321895 01768630 01749790 01322223 -engross v 2 4 @ ~ $ + 2 1 00601043 00600370 -engulf v 2 3 @ ~ $ 2 2 00601043 01581217 -enhance v 2 3 @ ~ + 2 2 00229605 00230033 -enjoin v 2 3 @ ~ + 2 2 00796839 00746718 -enjoy v 5 5 ! @ ~ * + 5 5 01820302 01192510 01828736 02110793 01190948 -enkindle v 2 2 @ ~ 2 0 02761372 01759326 -enlace v 1 3 @ ~ $ 1 0 01517662 -enlarge v 4 4 @ ~ + ; 4 4 00154778 00240293 00157844 00955601 -enlighten v 3 2 @ + 3 0 00991385 00926932 00621058 -enlist v 3 4 ! @ ~ + 3 3 01097192 02240151 01097500 -enliven v 2 4 ! @ ~ + 2 2 01812720 00192836 -enmesh v 1 1 @ 1 1 01463340 -ennoble v 2 3 @ ~ + 2 0 02546876 02398463 -enounce v 1 2 ~ * 1 0 00978549 -enplane v 1 2 @ ; 1 0 02018265 -enquire v 3 4 @ ~ $ + 3 1 00784342 00785962 00729378 -enrage v 1 3 @ > + 1 1 01795888 -enrapture v 1 1 @ 1 0 01817314 -enrich v 2 4 ! @ ~ + 2 1 00171586 02318648 -enrobe v 2 1 @ 2 0 01335202 00045064 -enrol v 1 3 @ ~ + 1 1 02471327 -enroll v 1 3 @ ~ + 1 1 02471327 -ensconce v 1 1 @ 1 1 01493619 -enshrine v 2 1 @ 2 1 01482958 01776383 -enshroud v 1 1 @ 1 0 01582200 -ensile v 1 2 @ + 1 0 02283197 -ensky v 1 1 @ 1 0 00861200 -enslave v 1 2 @ + 1 0 02496696 -ensnare v 2 3 @ ~ ; 2 0 02578008 01480770 -ensnarl v 1 1 @ 1 0 01463340 -ensue v 1 2 @ ~ 1 1 02634265 -ensure v 2 3 @ ~ $ 2 2 00890590 00662589 -entail v 3 2 @ + 3 2 02635189 02634808 02363234 -entangle v 2 4 ! @ ~ + 2 0 02678287 01462928 -enter v 9 7 ! @ ~ * ^ + ; 9 6 02016523 01082606 02471327 02722207 01000214 01720660 02381397 01421622 00348252 -enter_upon v 1 1 @ 1 0 02212646 -entertain v 3 3 @ ~ + 3 2 02492198 00711715 01773130 -enthral v 1 1 @ 1 0 01817314 -enthrall v 1 2 @ + 1 1 01817314 -enthrone v 2 4 ! @ ~ + 2 1 02386388 02391193 -enthuse v 2 2 @ ~ 2 0 01830192 00916679 -entice v 1 3 @ ~ + 1 1 00782527 -entitle v 3 3 @ ~ + 3 2 02447370 01029500 02398463 -entomb v 1 2 @ + 1 1 02456493 -entrain v 1 1 @ 1 0 01979624 -entrance v 2 3 @ ~ + 2 0 01806505 00020926 -entrap v 2 4 @ ~ + ; 2 0 02578008 01480770 -entreat v 1 1 @ 1 0 00759657 -entrench v 3 2 @ + 3 1 01531025 02569790 01531124 -entrust v 2 2 @ ~ 2 1 02349212 02356230 -entwine v 2 3 @ ~ $ 2 0 01672014 01517662 -enucleate v 2 3 @ + ; 2 0 00176756 00176459 -enumerate v 2 3 @ ~ + 2 1 00946105 00948071 -enunciate v 2 4 @ ~ * + 2 2 00978549 00978369 -envelop v 1 3 @ ~ + 1 1 01580467 -envenom v 2 2 @ > 2 0 01773535 00532429 -environ v 1 2 @ ~ 1 0 01467370 -envisage v 1 2 @ ~ 1 1 01636397 -envision v 2 3 @ $ + 2 2 01635432 01636221 -envy v 2 3 @ ~ + 2 1 01827619 01827064 -enwrap v 1 2 @ ~ 1 0 01580467 -epilate v 1 1 @ 1 0 00037514 -epitomise v 1 2 @ + 1 0 02699141 -epitomize v 1 2 @ + 1 1 02699141 -epoxy v 1 2 @ + 1 0 01332483 -equal v 3 5 ! @ ~ $ + 3 2 02664769 02672187 00417001 -equalise v 2 4 @ ~ $ + 2 0 01115411 00417001 -equalize v 2 4 @ ~ $ + 2 0 01115411 00417001 -equate v 3 4 @ ~ $ + 3 2 00653620 02633534 00417001 -equilibrate v 2 5 @ ~ $ + ; 2 1 00136800 02673134 -equilibrise v 1 3 @ ~ $ 1 0 02673134 -equilibrize v 1 4 @ ~ $ + 1 0 02673134 -equip v 2 3 @ ~ + 2 2 02339413 00513177 -equivocate v 1 2 @ + 1 0 00835506 -eradicate v 2 3 @ $ + 2 1 00470701 01662118 -erase v 3 6 ! @ ~ * + ; 3 1 00479391 01548718 00999815 -erect v 2 4 @ ~ + ; 2 1 01661243 01982866 -erode v 2 3 @ ~ + 2 2 00275253 00274724 -eroticize v 1 1 @ 1 0 00586241 -err v 2 4 @ ~ $ + 2 2 00617748 01925694 -eruct v 2 2 @ + 2 0 00077071 00003431 -erupt v 8 4 @ ~ $ + 8 5 00345508 00307785 02760622 00548266 00307568 01785395 00422899 00309074 -escalade v 1 2 @ + 1 0 01922576 -escalate v 1 4 ! @ ~ + 1 0 00290302 -escallop v 1 1 @ 1 0 01664847 -escape v 7 3 @ ~ + 7 4 02074677 00810557 00810729 02723232 02599004 02075049 00530017 -escape_from v 1 1 @ 1 1 02073545 -eschew v 1 1 @ 1 1 00812149 -escort v 2 3 @ ~ + 2 1 02025829 02026086 -espouse v 3 4 @ ~ $ + 3 1 02346895 02488834 00601822 -espy v 1 2 @ + 1 0 02154312 -essay v 2 3 @ ~ + 2 1 02530167 02531625 -establish v 8 5 ! @ ~ $ + 8 8 02427103 01647229 00664788 00665476 01647672 01570108 01655505 00636888 -esteem v 2 4 ! @ ~ + 2 1 00694068 00689950 -esterify v 1 3 @ + ; 1 0 00506225 -estimate v 2 4 @ ~ ^ + 2 2 00672433 00712135 -estivate v 1 3 ! @ + 1 0 00016183 -estrange v 2 3 @ ~ + 2 0 02597246 01823528 -etch v 5 6 @ ~ * $ + ; 5 1 01750421 02199119 01749790 01322223 00448110 -eternalise v 1 1 @ 1 0 00553208 -eternalize v 1 1 @ 1 0 00553208 -eternise v 1 1 @ 1 0 00553208 -eternize v 2 1 @ 2 0 02648406 00553208 -etherealize v 1 1 @ 1 0 00547706 -etherialise v 1 1 @ 1 0 00547706 -etherify v 1 3 @ + ; 1 0 00506377 -etherise v 1 1 @ 1 0 00021554 -etherize v 1 2 @ + 1 0 00021554 -etiolate v 3 3 @ + ; 3 0 00225690 00134136 00103741 -etymologise v 2 2 @ ; 2 0 01070455 00634286 -etymologize v 2 3 @ + ; 2 0 01070455 00634286 -eulogise v 1 2 @ + 1 0 00880780 -eulogize v 1 2 @ + 1 1 00880780 -euphemise v 1 1 @ 1 0 00933107 -euphemize v 1 2 @ + 1 0 00933107 -europeanise v 2 2 @ + 2 0 00410055 00409869 -europeanize v 2 2 @ + 2 1 00409869 00410055 -evacuate v 5 4 @ ~ > + 5 2 01856450 00449295 02014024 00449567 00073343 -evade v 4 3 @ ~ + 4 2 00809654 02074377 02369811 00811039 -evaluate v 2 4 @ ~ $ + 2 1 00681429 00670261 -evanesce v 1 2 @ + 1 0 00421691 -evangelise v 2 2 @ + 2 0 00828227 00386390 -evangelize v 2 2 @ + 2 0 00828227 00386390 -evaporate v 4 4 @ ~ $ + 4 1 00366858 00575970 00575720 00223928 -even v 3 4 @ ~ > ^ 3 0 01307142 00416880 00416705 -even_off v 1 2 @ ~ 1 0 02672540 -even_out v 4 3 @ ~ > 4 0 02672540 01307142 00416880 00416705 -even_up v 2 2 @ ~ 2 0 02672540 01987648 -eventuate v 1 2 @ + 1 1 02611002 -evert v 1 2 @ + 1 0 02089632 -evict v 2 3 @ $ + 2 0 01468327 01468058 -evidence v 3 5 @ ~ $ + ; 3 3 00820976 01015244 00954422 -evince v 1 2 @ ~ 1 0 00943837 -eviscerate v 4 3 @ + ; 4 0 01255057 00450168 00197590 00167191 -evoke v 5 4 @ ~ $ + 5 2 01759326 01646866 01630532 01629958 00930368 -evolve v 3 4 @ ~ $ + 3 3 01738597 00251064 00545557 -exacerbate v 2 3 @ ~ + 2 1 00208210 01820901 -exact v 2 4 @ ~ $ + 2 1 01017826 00756076 -exaggerate v 2 3 @ ~ + 2 2 00839834 02568999 -exalt v 4 3 @ ~ + 4 2 00860620 01812324 01812720 00544936 -examine v 5 4 @ ~ * + 5 5 00644583 02131279 00788564 00786816 02531625 -exasperate v 3 3 @ ~ + 3 1 01820901 01786906 00208210 -excavate v 4 4 @ ~ $ + 4 0 02143539 01313923 01311378 01310660 -exceed v 3 3 @ ~ + 3 3 02669477 02669081 01105639 -excel v 1 2 ~ + 1 1 02673965 -excel_at v 1 1 @ 1 0 02674447 -except v 2 3 @ ~ + 2 2 00807941 00615774 -excerpt v 1 2 @ + 1 0 00677021 -exchange v 6 4 @ ~ $ + 6 3 02257370 00161225 00140751 02393489 02257767 00161987 -excise v 3 2 @ + 3 1 01549420 02307882 00472871 -excite v 8 3 @ ~ + 8 2 01772960 00503164 02116118 01762528 01762283 01761706 00559102 00558963 -exclaim v 2 4 @ ~ $ + 2 2 00912048 00977336 -exclude v 5 4 ! @ ~ + 5 4 00615774 02449340 02633714 00796588 01468576 -excogitate v 2 3 @ ~ + 2 0 01632411 00630380 -excommunicate v 2 4 ! @ $ + 2 1 01030397 02402112 -excoriate v 2 2 @ + 2 1 00864159 01253808 -excrete v 1 3 @ ~ + 1 0 00072989 -excruciate v 2 3 @ ~ + 2 0 01802689 00071178 -exculpate v 1 4 @ ~ * + 1 0 00904046 -excuse v 6 3 @ ~ + 6 4 00905852 00893878 00893435 00894738 00894221 00893167 -execrate v 2 2 @ + 2 0 01774426 00864910 -execute v 7 4 @ ~ $ + 7 3 02483267 02484208 01640855 02563860 02563327 01712704 00997659 -exemplify v 2 2 @ + 2 2 02723733 01021128 -exempt v 2 4 ! @ ~ + 2 1 02564146 00893878 -exenterate v 1 3 @ + ; 1 0 00176618 -exercise v 5 6 @ ~ * > $ + 5 4 01166093 02568672 00100551 00099721 00606093 -exert v 3 3 @ ~ + 3 3 01166093 02204564 02371811 -exfoliate v 5 2 @ + 5 0 01580250 01513838 01263336 01260159 00232101 -exhale v 2 4 ! @ ~ + 2 1 00004227 00004605 -exhaust v 5 4 @ ~ $ + 5 3 00075421 01157517 02280869 00450997 00104868 -exhibit v 4 3 @ ~ + 4 3 02631856 02140033 02148788 01924712 -exhilarate v 1 2 @ + 1 0 01812324 -exhort v 2 3 @ ~ + 2 0 00858781 00765649 -exhume v 1 2 @ + 1 0 02457058 -exile v 1 2 @ + 1 1 02499312 -exist v 2 3 ~ $ + 2 2 02603699 02616713 -exit v 3 6 ! @ ~ $ + ; 3 0 02015598 01078689 00358431 -exonerate v 1 4 @ ~ * + 1 1 00904046 -exorcise v 1 3 @ + ; 1 1 01527877 -exorcize v 1 3 @ + ; 1 0 01527877 -expand v 7 5 ! @ ~ $ + 7 5 02077148 00257269 00541163 00310386 00264386 00955601 00540946 -expatiate v 1 3 @ ~ + 1 0 00955601 -expatriate v 2 3 ! @ + 2 0 02499312 00416399 -expect v 6 5 @ ~ * $ + 6 3 00719734 00755745 00720063 00592702 00059376 00059019 -expectorate v 2 3 @ ~ + 2 0 00576228 00006238 -expedite v 2 1 @ 2 1 02548893 02438730 -expel v 4 3 @ ~ + 4 1 02501738 02401809 01108951 00104868 -expend v 2 4 @ ~ * + 2 2 01158572 02267060 -expense v 1 1 @ 1 0 00315956 -experience v 5 4 @ ~ * + 5 4 02110220 00596644 02108026 01771535 00121046 -experiment v 2 3 @ $ + 2 1 02532595 02532886 -expiate v 1 2 @ + 1 1 02520509 -expire v 3 4 @ ~ $ + 3 2 02684784 00358431 00004227 -explain v 3 3 @ ~ + 3 3 00939277 01065456 00893435 -explicate v 2 4 @ ~ $ + 2 0 00939277 00925873 -explode v 10 6 ! @ ~ * > + 10 4 00306723 00306017 00719062 00306539 01565795 01055661 00862467 00665335 00306298 00157623 -explode_a_bombshell v 1 1 @ 1 0 00725563 -exploit v 3 4 @ ~ $ + 3 2 01162754 01164273 02409148 -explore v 4 5 @ ~ $ + ; 4 3 00648224 00649481 00646271 00645939 -export v 3 5 ! @ ~ + ; 3 1 02346409 02232877 01379097 -expose v 9 6 @ ~ > $ + ; 9 6 02112029 00933821 02140033 01339505 02137710 01036319 02113430 00853195 00614444 -exposit v 2 3 @ ~ + 2 0 01001294 00955601 -expostulate v 1 2 @ + 1 0 00773285 -expound v 2 3 @ ~ + 2 1 00955601 01001294 -express v 7 4 @ ~ $ + 7 4 00943837 00940384 01061017 01061481 02144460 01351754 01031756 -express-mail v 1 1 @ 1 0 01033030 -express_emotion v 1 1 ~ 1 1 01802494 -express_feelings v 1 1 ~ 1 0 01802494 -express_joy v 1 2 @ ~ 1 0 00031820 -express_mirth v 1 2 @ ~ 1 0 00031820 -expropriate v 1 2 @ + 1 0 01472642 -expunge v 1 2 @ + 1 1 01549420 -expurgate v 1 2 @ + 1 0 00201034 -exsert v 1 2 @ ~ 1 0 00027705 -exsiccate v 1 1 @ 1 0 00211108 -extemporise v 1 2 @ + 1 0 01728840 -extemporize v 2 2 @ + 2 0 02587895 01728840 -extend v 17 6 @ ~ ^ $ + ; 17 10 00540235 02685951 02687916 02297948 00027705 02690093 02297742 00027268 00540946 00317888 02054989 01960296 01368863 01165579 00318326 00235110 00154141 -extend_oneself v 1 1 @ 1 0 01146290 -extend_to v 1 2 @ ~ 1 1 02685665 -extenuate v 1 3 @ + ; 1 1 00906037 -exteriorise v 1 2 @ + 1 0 00532607 -exteriorize v 2 2 @ + 2 0 02084104 00532607 -exterminate v 2 2 @ + 2 1 01327582 01662118 -externalise v 2 2 @ ; 2 0 00729642 00532607 -externalize v 2 2 @ ; 2 0 00729642 00532607 -extinguish v 5 5 ! @ ~ $ + 5 1 00478217 02761897 00478682 00471711 00470701 -extirpate v 3 4 @ ~ + ; 3 1 01662118 01566916 00176327 -extol v 1 3 @ ~ + 1 0 00860620 -extort v 3 4 @ ~ + ; 3 0 02241621 02241107 01630751 -extract v 8 5 @ ~ $ + ; 8 4 01351170 02239098 01630532 00229280 01459392 01351754 00677021 00638723 -extradite v 1 3 @ ~ + 1 0 02503365 -extrapolate v 3 4 @ ~ + ; 3 3 01022420 00642644 00593669 -extravasate v 3 2 @ + 3 0 01375909 00307568 00068858 -extricate v 1 2 @ + 1 1 01585759 -extrude v 1 2 @ + 1 1 01675780 -exuberate v 1 3 @ ~ + 1 0 00857923 -exudate v 1 3 @ ~ + 1 0 00067999 -exude v 2 3 @ ~ + 2 1 00067999 00944415 -exult v 2 3 @ ~ + 2 0 01813668 00857923 -exuviate v 1 2 @ ~ 1 0 00009147 -eye v 1 2 @ + 1 1 02167052 -eyeball v 1 2 @ + 1 0 02167052 -eyewitness v 1 2 @ + 1 0 02128514 -fabricate v 2 3 @ ~ + 2 0 01653442 01634424 -face v 9 5 @ ~ ^ $ + 9 6 00812298 01078783 02693319 02693691 01908365 01066433 02137907 01271936 01271189 -face-harden v 1 1 @ 1 0 00255654 -face-lift v 1 2 @ + 1 0 00061933 -face_off v 1 2 @ + 1 0 01084048 -face_the_music v 1 1 @ 1 0 02302081 -face_up v 1 3 @ ~ $ 1 1 00812298 -facilitate v 3 3 @ + ; 3 1 00518395 02735897 01757338 -facsimile v 1 2 @ + 1 0 01007676 -factor v 3 3 @ + ; 3 1 00640385 02324901 00640650 -factor_analyse v 1 1 @ 1 0 00736429 -factor_analyze v 1 2 @ + 1 0 00736429 -factor_in v 2 2 @ ; 2 0 00640650 00640385 -factor_out v 2 2 @ ; 2 0 00640650 00640385 -factorise v 1 2 @ + 1 0 00733250 -factorize v 1 2 @ + 1 0 00733250 -fade v 4 2 @ + 4 3 00224651 00421917 00421691 00093593 -fade_away v 1 2 @ $ 1 0 00447771 -fade_out v 1 3 @ $ + 1 1 00447771 -fag v 3 3 @ ~ > 3 0 02592776 02419773 00075021 -fag_out v 1 3 @ ~ > 1 0 00075021 -faggot v 3 2 @ ; 3 0 01667816 01287388 01287242 -faggot_up v 1 1 @ 1 0 01287242 -fagot v 3 2 @ ; 3 0 01667816 01287388 01287242 -fail v 11 5 ! @ ~ $ + 11 5 02529284 02528380 01799235 00434374 02599528 02523784 02523521 02522319 02318403 00560247 00172909 -faint v 1 2 @ + 1 1 00023646 -fair v 1 1 @ 1 1 01294778 -fake v 3 3 @ ~ + 3 1 01654271 02576921 00839526 -falcon v 1 2 @ + 1 0 01145766 -fall v 32 7 ! @ ~ * ^ $ + 32 15 01972298 01970826 00147815 02729963 02756821 02528985 02620213 02611976 02304507 00342443 00151689 02565911 02385153 02358655 02099413 02661015 02566092 02358922 02230056 02229828 02229550 02037839 01984317 01984119 01542668 00561375 00561266 00530177 00360678 00346839 00342314 00342164 -fall_all_over v 1 1 @ 1 0 02514881 -fall_apart v 4 3 @ ~ $ 4 0 01829126 01369346 00397405 00334186 -fall_asleep v 1 2 ! ~ 1 1 00017282 -fall_away v 2 2 @ ~ 2 2 00204391 00148472 -fall_back v 6 4 ! @ ~ + 6 4 02039315 01997862 01904120 01113806 02590072 00093327 -fall_behind v 2 2 @ ~ 2 1 01113806 01997862 -fall_by_the_wayside v 1 0 1 0 01083044 -fall_down v 1 2 @ $ 1 0 01984317 -fall_flat v 1 1 @ 1 0 02530003 -fall_for v 2 1 @ 2 1 01775914 02537642 -fall_from_grace v 1 1 @ 1 0 02517443 -fall_in v 3 3 @ ~ $ 3 2 01989053 02434859 02434976 -fall_in_line v 1 1 @ 1 0 00733804 -fall_in_love v 1 1 @ 1 1 00148597 -fall_into v 1 1 @ 1 1 02705680 -fall_into_place v 1 1 > 1 0 00591755 -fall_off v 3 3 @ $ + 3 1 01300040 00432839 00148472 -fall_open v 1 1 @ 1 1 01982253 -fall_out v 5 2 @ ~ 5 1 00775692 02720149 02097925 02008674 00339934 -fall_over v 1 1 @ 1 1 00031277 -fall_over_backwards v 1 1 @ 1 0 00011361 -fall_short v 1 1 @ 1 1 01799484 -fall_short_of v 1 1 ! 1 1 02671761 -fall_through v 1 1 @ 1 0 02530003 -fall_under v 1 1 @ 1 0 02705680 -fall_upon v 1 1 @ 1 0 02286687 -falsify v 5 4 ! @ ~ + 5 1 00835903 02576921 00667942 00202236 00201407 -falter v 4 2 @ + 4 4 02740204 01901289 01901133 00981544 -familiarise v 1 4 @ ~ $ + 1 0 00874175 -familiarize v 1 4 @ ~ $ + 1 0 00874175 -famish v 3 3 @ > $ 3 0 01188144 01187740 01187537 -fan v 4 4 @ ~ + ; 4 3 01409763 00227805 01885580 01460937 -fan_out v 1 2 @ ~ 1 1 02060141 -fancify v 1 2 @ ~ 1 0 00293141 -fancy v 2 4 @ * $ + 2 2 01635432 01776468 -fancy_up v 1 3 @ ~ $ 1 0 00044149 -fantasise v 2 1 @ 2 0 01637368 01636859 -fantasize v 2 2 @ + 2 0 01637368 01636859 -fantasy v 1 2 @ + 1 0 01637368 -farce v 1 4 @ $ + ; 1 0 00320681 -fare v 2 2 @ + 2 1 02617567 01172969 -farm v 3 5 @ ~ ^ + ; 3 1 02420232 02218443 01739814 -farm_out v 2 1 @ 2 2 02461063 02209499 -farrow v 1 2 @ + 1 0 00058645 -fart v 1 2 @ + 1 0 00101629 -fascinate v 3 3 @ ~ + 3 2 02678839 01821132 01806505 -fashion v 1 3 @ ~ + 1 1 01658188 -fast v 2 3 @ ~ + 2 0 01189604 01189427 -fast_dye v 1 1 @ 1 0 00288192 -fasten v 4 5 ! @ ~ > + 4 3 01340439 01343892 01290133 00420132 -fasten_on v 1 1 @ 1 0 00602112 -fat v 1 3 @ * + 1 0 01194938 -fate v 1 2 @ + 1 0 00746479 -father v 1 2 @ + 1 1 00054628 -fathom v 2 2 @ + 2 1 00728954 00491689 -fatigue v 2 4 @ ~ > + 2 0 00076114 00075021 -fatten v 1 2 @ * 1 1 01194938 -fatten_out v 1 2 @ * 1 0 01194938 -fatten_up v 1 2 @ * 1 0 01194938 -fault v 1 2 @ + 1 1 00842538 -favor v 4 3 @ ~ + 4 4 02400037 00692143 02464725 02453692 -favour v 4 3 @ ~ + 4 0 02464725 02453692 02400037 00692143 -fawn v 3 3 @ ~ + 3 0 02063771 00880978 00058794 -fax v 1 2 @ + 1 0 01007676 -faze v 1 2 @ ~ 1 1 01783881 -fear v 5 3 @ ~ + 5 3 01780729 01780202 01780568 01780434 01778568 -feast v 3 4 @ ~ $ + 3 1 01185981 01186208 01182152 -feast_one's_eyes v 1 1 @ 1 0 01820648 -feather v 5 2 @ + 5 1 01272915 01272798 01124964 01124828 00094312 -feather_one's_nest v 1 1 @ 1 0 02318843 -featherbed v 2 1 @ 2 0 02570267 00751775 -feature v 2 4 @ ~ $ + 2 2 02630189 02631659 -fecundate v 2 3 @ ~ + 2 0 00504270 00052548 -federalise v 3 2 @ + 3 0 00504464 00369442 00369194 -federalize v 3 2 @ + 3 1 00369194 00504464 00369442 -federate v 2 2 @ + 2 0 00369442 00369194 -fee v 1 1 @ 1 0 02202133 -fee-tail v 1 1 @ 1 0 02363234 -feed v 11 7 ! @ ~ > $ + ; 11 7 01182021 01178565 01181166 00189511 02555787 01179865 01180206 02066939 01203715 01182152 00502757 -feed_back v 2 3 @ * + 2 1 02310157 00876200 -feed_in v 1 1 @ 1 0 00189511 -feed_on v 1 1 @ 1 1 01203234 -feed_upon v 1 1 @ 1 1 01203234 -feel v 13 7 @ ~ * ^ $ + ; 13 11 01771535 00715239 02106006 00105958 00690305 02110552 02730471 02127613 01209678 01210352 02286027 02134350 01210152 -feel_for v 1 2 @ ~ 1 1 01821996 -feel_like v 1 1 @ 1 1 01826184 -feel_like_a_million v 1 1 @ 1 0 00106217 -feel_like_a_million_dollars v 1 1 @ 1 0 00106217 -feel_out v 1 1 @ 1 0 00809071 -feign v 2 4 @ ~ $ + 2 1 00838043 01721754 -feint v 1 2 @ + 1 1 01722299 -felicitate v 1 2 @ + 1 1 00881998 -fell v 3 5 @ ~ > $ + 3 1 01258302 02073065 01331237 -fellate v 1 2 @ + 1 0 02117170 -felt v 3 2 @ + 3 0 01463212 01316955 00565592 -felt_up v 1 1 @ 1 0 00565592 -feminise v 2 2 @ + 2 0 00567099 00566322 -feminize v 2 2 @ + 2 0 00567099 00566322 -fence v 5 4 @ ~ * + 5 1 01588134 02210754 01146918 01130607 00773432 -fence_in v 2 2 @ ~ 2 0 01588134 01130607 -fend v 2 3 @ $ + 2 0 02588122 01115916 -fend_for v 1 2 @ ~ 1 0 00895304 -fend_off v 1 1 @ 1 0 02453321 -ferment v 4 5 @ ~ > $ + 4 0 01763303 01761533 00458754 00458471 -ferret v 3 2 @ + 3 0 02003910 01144550 00722065 -ferret_out v 1 1 @ 1 1 00722065 -ferry v 3 3 @ + ; 3 1 01949674 01949435 01949218 -fertilise v 3 3 @ ~ ; 3 0 00504270 00502757 00052548 -fertilize v 3 4 @ ~ + ; 3 1 00502757 00504270 00052548 -fess_up v 1 1 @ 1 0 00817909 -fester v 1 3 @ $ + 1 0 00096766 -festinate v 1 2 @ + 1 0 00459498 -festoon v 1 2 @ + 1 0 01680267 -fetch v 3 4 @ ~ * $ 3 1 01433294 02247390 01433674 -fetch_up v 1 1 @ 1 0 00352558 -fete v 1 3 @ ~ + 1 1 02490877 -fetishize v 1 2 @ + 1 0 00320911 -fetter v 1 3 @ ~ + 1 0 01288052 -fettle v 1 1 @ 1 0 02365586 -feud v 1 2 @ + 1 0 01123261 -feudalize v 1 2 @ + 1 0 00321020 -fib v 1 2 @ + 1 0 00835294 -fibrillate v 1 2 @ + 1 0 00009884 -fictionalise v 2 2 @ + 2 0 01635176 00116619 -fictionalize v 2 2 @ + 2 0 01635176 00116619 -fiddle v 7 5 @ ~ $ + ; 7 0 02463704 02292989 01733667 01724891 01586278 01586018 00261314 -fiddle_with v 1 1 @ 1 0 01224211 -fidget v 1 2 @ + 1 1 02058448 -field v 4 3 @ + ; 4 2 01082290 01081852 00815539 00675592 -field-test v 1 2 @ + 1 1 02532261 -fig_out v 1 3 @ ~ $ 1 0 00044149 -fig_up v 1 3 @ ~ $ 1 0 00044149 -fight v 4 6 @ ~ * ^ $ + 4 4 01090335 01091427 02407338 02589576 -fight_back v 2 2 @ ~ 2 1 01092284 01091427 -fight_down v 1 2 @ ~ 1 1 01091427 -fight_off v 1 1 @ 1 0 01131197 -figure v 5 6 @ ~ ^ $ + ; 5 5 00712135 02722207 01635432 00637259 00590241 -figure_out v 1 3 @ ~ * 1 1 00634906 -figure_skate v 1 4 @ ~ * ; 1 0 01937394 -filch v 1 1 @ 1 0 02276866 -file v 5 6 @ ~ * ^ + ; 5 5 01001857 01387022 01920048 00869931 01001643 -file_away v 2 1 @ 2 1 01001643 01384638 -file_in v 1 2 ! @ 1 0 01920220 -file_out v 1 2 ! @ 1 1 01920594 -filet v 2 3 @ + ; 2 0 01678957 01249294 -filiate v 1 3 @ + ; 1 0 00700162 -filibuster v 1 3 @ + ; 1 0 02466496 -filigree v 1 2 @ + 1 0 01757871 -fill v 9 7 ! @ ~ > ^ $ + 9 9 00452512 00451838 02649042 02394183 01183573 02394081 01203893 01193721 00261533 -fill_again v 1 1 @ 1 0 00453803 -fill_in v 4 5 @ ~ * + ; 4 2 00833392 01695567 02258617 01020731 -fill_out v 6 3 @ ~ * 6 2 01020731 00172381 02342580 01526956 01194938 00046382 -fill_the_bill v 1 1 @ 1 0 02668170 -fill_up v 4 3 @ ~ > 4 2 00452512 00451838 01423285 01203893 -fillet v 2 3 @ + ; 2 0 01678957 01249294 -film v 2 5 @ ~ $ + ; 2 1 01002740 01711965 -film-make v 1 1 @ 1 0 01712204 -film_over v 1 0 1 0 02158034 -filter v 3 3 @ ~ + 3 2 01458664 01457954 02070874 -filter_out v 1 1 @ 1 0 01458664 -filtrate v 1 2 @ + 1 0 01458664 -fin v 3 3 @ + ; 3 0 02225911 01961691 01961510 -finagle v 1 2 @ + 1 0 02527431 -finalise v 1 2 @ + 1 0 00481941 -finalize v 1 2 @ + 1 0 00481941 -finance v 2 3 @ ~ + 2 1 02217266 02217864 -financier v 1 2 @ + 1 0 02416955 -find v 16 6 ! @ ~ ^ $ + 16 13 02248465 02154508 02285629 00918872 00715239 02128873 02213336 01637982 00721437 02212275 00971999 00522751 02197781 02247977 02021653 00250691 -find_fault v 1 2 @ + 1 0 00842772 -find_oneself v 1 1 @ 1 1 00250691 -find_out v 4 3 @ ~ $ 4 3 00918872 00598954 00920336 00731574 -fine v 1 3 @ ~ + 1 0 02498716 -fine-tune v 3 2 @ ~ 3 0 00474017 00302763 00295697 -finedraw v 1 1 @ 1 0 01331147 -finger v 4 4 @ * $ + 4 2 01209953 01209678 01314573 00924431 -finger-paint v 1 3 @ + ; 1 0 01681048 -finger-spell v 1 1 @ 1 0 00741702 -fingerprint v 1 2 @ + 1 0 01748748 -fingerspell v 1 2 @ + 1 0 00741702 -finish v 6 3 @ ~ + 6 5 00484166 00352558 02609764 01265989 01196802 00351963 -finish_off v 1 2 @ ~ 1 0 00484892 -finish_out v 1 1 @ 1 0 00485274 -finish_up v 2 2 @ ~ 2 2 00484892 00352558 -fink v 2 2 @ + 2 0 02412939 00819508 -fire v 9 7 ! @ ~ > $ + ; 9 8 01135783 01133825 00320536 02402825 01134238 02002410 01759326 00378664 02356420 -fire_up v 2 3 @ ~ * 2 0 01761120 01199881 -firebomb v 1 2 @ + 1 0 01133667 -fireproof v 1 1 @ 1 0 00166748 -firm v 2 1 @ 2 0 00420549 00420434 -firm_up v 1 1 @ 1 0 01021871 -fish v 2 3 @ ~ + 2 2 01319346 01140794 -fishtail v 1 1 @ 1 0 00439199 -fissure v 1 2 @ + 1 0 00336922 -fistfight v 1 2 @ + 1 1 01082153 -fit v 9 5 @ ~ > $ + 9 8 02702830 02659763 02667900 00300537 00300113 02657219 02735753 02339413 00456740 -fit_in v 1 3 @ ~ $ 1 1 02700104 -fit_out v 2 3 @ ~ $ 2 1 02339413 00047945 -fit_the_bill v 1 1 @ 1 0 02668170 -fix v 12 6 @ ~ > $ + ; 12 9 00260648 01340439 00947077 01664172 01153947 01647543 00407458 00486998 00061595 02603299 01575675 00406243 -fix_up v 2 2 @ ~ 2 2 01203369 01021629 -fixate v 4 2 @ + 4 0 02538365 02170861 00486998 00486703 -fizz v 1 3 @ ~ + 1 0 00519363 -fizzle v 1 1 @ 1 1 02683671 -fizzle_out v 1 1 @ 1 0 02683671 -flabbergast v 1 1 @ 1 0 00726153 -flag v 5 4 @ ~ ^ + 5 2 01040550 00511040 01985524 01670172 00156485 -flag_down v 1 1 @ 1 0 01860620 -flagellate v 1 2 @ + 1 0 01398443 -flail v 2 3 @ $ + 2 1 01416193 02093920 -flake v 3 2 @ + 3 1 01585276 01336440 01259951 -flake_off v 1 1 @ 1 0 01259951 -flake_out v 1 1 ~ 1 0 00017282 -flambe v 1 1 @ 1 0 01664981 -flame v 3 3 @ ^ + 3 0 02762981 02759443 00824593 -flame_up v 1 1 @ 1 1 02762806 -flank v 1 2 @ + 1 1 02694106 -flap v 6 4 @ ~ $ + 6 3 01901783 01880888 02093610 02093390 01819911 01055558 -flap_down v 1 1 @ 1 0 01242689 -flare v 4 2 @ + 4 2 02762806 00304252 02762981 00307785 -flare_out v 1 1 @ 1 0 00304252 -flare_up v 2 3 @ ~ + 2 2 02764245 00307785 -flash v 8 5 @ ~ ^ $ + 8 6 02159890 00424691 02141973 00929509 02061495 02138611 01335461 00424869 -flash-freeze v 1 1 @ 1 0 00375690 -flash_back v 1 2 @ + 1 0 02004701 -flat-hat v 1 1 @ 1 0 01955703 -flatten v 3 4 ! @ ~ ; 3 2 00463778 00463469 00393534 -flatten_out v 1 2 @ ~ 1 0 00463469 -flatter v 1 4 ! @ ~ + 1 1 00880227 -flaunt v 1 3 @ ~ + 1 1 02141973 -flavor v 1 4 ~ > + ; 1 0 02191766 -flavour v 1 4 ~ > + ; 1 0 02191766 -flaw v 1 2 @ + 1 0 00263044 -flay v 1 1 @ 1 0 01274657 -fleck v 1 4 @ ~ $ + 1 0 01531998 -fledge v 3 1 @ 3 0 02540151 01669792 00094312 -flee v 1 3 @ ~ + 1 1 02075462 -fleece v 2 4 @ ~ * + 2 0 02319050 01560369 -fleer v 1 2 @ + 1 0 00029518 -fleet v 2 2 @ ~ 2 0 01899891 00421691 -flense v 1 1 @ 1 0 02365824 -flesh v 1 1 @ 1 0 02365692 -flesh_out v 3 3 @ ~ * 3 0 01194938 00955601 00046382 -flex v 5 3 @ ~ + 5 1 02036977 02142280 02035919 01280488 01280014 -flick v 9 2 @ + 9 4 02160177 02153023 01893465 01591158 02763609 01591357 01242208 01242071 00190586 -flicker v 3 2 @ + 3 1 01878719 02763609 02160177 -flight v 3 2 @ + 3 0 02484771 01940868 01669792 -flim-flam v 1 3 @ ~ + 1 0 02575723 -flinch v 1 3 @ ~ + 1 1 02061069 -fling v 4 3 @ ~ + 4 2 01512465 02094428 02269003 02222318 -fling_off v 1 2 @ ; 1 0 01700655 -flip v 11 3 @ ~ + 11 2 01893079 01510173 02153023 01893601 01893465 01512625 01241614 01222958 00717921 00584810 00121678 -flip-flop v 1 2 @ + 1 0 00121678 -flip_one's_lid v 1 1 @ 1 0 01795428 -flip_one's_wig v 1 1 @ 1 0 01795428 -flip_out v 2 1 @ 2 0 00717921 00584810 -flip_over v 1 1 @ 1 0 01222958 -flirt v 2 4 @ ~ $ + 2 1 01037910 02437465 -flirt_with v 1 1 @ 1 1 00711715 -flit v 1 3 @ ~ + 1 1 01899891 -flitter v 1 1 @ 1 0 01878719 -float v 9 6 ! @ ~ $ + ; 9 3 01902783 01904293 01874568 02532079 01838651 01514887 01361998 00696042 00566181 -flocculate v 2 2 @ + 2 1 02625916 02626095 -flock v 2 3 @ ~ + 2 1 02025353 02025009 -flog v 2 3 @ ~ + 2 1 01411085 01412204 -flood v 4 4 @ ~ ^ + 4 2 01524523 00217152 02356704 00452220 -flood_in v 1 1 @ 1 0 02007680 -flood_out v 1 1 @ 1 0 00751131 -floodlight v 1 2 @ + 1 0 00292247 -floor v 2 3 @ ~ + 2 0 01809064 01412346 -flop v 3 2 @ + 3 2 01972849 01972753 02530003 -floss v 1 2 @ + 1 0 00041866 -flounce v 1 2 @ + 1 1 01924405 -flounder v 2 1 @ 2 2 01925170 02407632 -flour v 2 3 @ + ; 2 0 01261950 00381496 -flourish v 3 4 @ ~ * + 3 2 00310386 02342800 01446901 -flout v 2 2 @ + 2 1 00801782 00850192 -flow v 7 6 @ ~ * > ^ + 7 3 02066510 02066939 02067689 02743727 01542668 00217427 00062203 -flow_away v 1 1 @ 1 0 00449011 -flow_from v 1 1 @ 1 1 02634567 -flow_off v 1 1 @ 1 0 00449011 -flow_out v 1 1 @ 1 1 00546080 -flower v 1 3 @ ~ + 1 1 00294245 -flub v 1 2 @ + 1 1 02527651 -fluctuate v 3 3 @ $ + 3 0 01877204 01876907 00270699 -fluff v 3 3 @ ^ + 3 0 02527651 01391806 00040188 -fluff_up v 1 1 @ 1 0 01391946 -flummox v 1 2 @ ~ 1 0 00622384 -flump v 2 1 @ 2 0 01978340 01500572 -flump_down v 1 1 @ 1 0 01978340 -flunk v 1 1 $ 1 0 02523521 -fluoresce v 1 3 @ ~ + 1 1 02161160 -fluoridate v 1 2 @ + 1 0 00186161 -fluoridise v 1 2 @ + 1 0 00186161 -fluoridize v 1 2 @ + 1 0 00186161 -flurry v 2 4 @ ~ $ + 2 1 02084252 01790739 -flush v 7 4 @ ~ > + 7 2 00103317 00455212 02199435 01307142 00455529 00455368 00454868 -flush_down v 1 1 @ 1 0 00455079 -flush_it v 1 1 $ 1 0 02523521 -fluster v 2 4 @ ~ > + 2 1 01791973 01790383 -flute v 1 2 @ + 1 0 01457376 -flutter v 5 4 @ ~ $ + 5 2 01899891 01878719 01900255 01879928 00008195 -flux v 3 4 @ ~ + ; 3 0 02066510 00443984 00394813 -fly v 14 7 @ ~ * > $ + ; 14 9 01940403 01842068 01941093 01451842 01848058 01839404 00545292 02073065 01840238 02140965 02075462 01847845 01402765 00153061 -fly-fish v 1 1 @ 1 0 01141504 -fly_blind v 1 2 @ ; 1 0 01941704 -fly_by v 2 1 @ 2 1 02052358 02053829 -fly_contact v 1 2 @ ; 1 0 01941838 -fly_high v 2 1 @ 2 1 01829625 02342800 -fly_in_the_face_of v 1 1 @ 1 0 02668798 -fly_in_the_teeth_of v 1 1 @ 1 0 02668798 -fly_off_the_handle v 1 1 @ 1 0 01795428 -fly_on v 1 1 @ 1 1 01941006 -fly_open v 1 1 @ 1 1 01347172 -fly_the_coop v 1 2 @ ~ 1 0 02075049 -flyfish v 1 1 @ 1 0 01141504 -foal v 1 2 @ + 1 0 00057895 -foam v 1 3 @ ~ + 1 1 00519363 -foam_at_the_mouth v 1 1 @ 1 0 01796215 -fob v 1 2 @ ~ 1 0 02575723 -fob_off v 1 2 @ ; 1 0 02244426 -focalise v 4 4 @ ~ > + 4 0 02692335 00731789 00314782 00314272 -focalize v 4 4 @ ~ > + 4 0 02692335 00731789 00314782 00314272 -focus v 5 7 ! @ ~ > ^ $ + 5 3 00722232 02161922 00731789 00314782 00314272 -focus_on v 1 1 @ 1 1 02676496 -fodder v 1 2 @ + 1 0 01178101 -fog v 1 3 @ ~ + 1 0 02157731 -fog_up v 1 1 @ 1 0 02771888 -foil v 3 3 @ ~ + 3 2 02739688 02558172 01335075 -foist v 2 1 @ 2 0 00749092 00189823 -foist_off v 1 2 @ ; 1 0 02244426 -fold v 5 4 ! @ ~ + 5 2 01277974 00398138 02426395 01345877 00564695 -fold_up v 2 2 @ ~ 2 1 01277974 00564695 -foliate v 5 2 @ + 5 0 01675522 01670051 01266749 00949093 00282790 -folk_dance v 1 2 @ + 1 0 01898769 -follow v 24 7 ! @ ~ > $ + ; 24 16 01998432 02712772 02720149 01991931 02542280 02720354 00150776 02720544 02346895 02720697 01744450 00729109 02455407 02406585 01728355 00118764 02625339 02600255 02561697 02445925 02198602 02000868 00589738 00351406 -follow_out v 1 3 @ ~ $ 1 0 00486018 -follow_suit v 1 1 @ 1 1 02675603 -follow_through v 2 5 @ ~ $ + ; 2 0 01406016 00486018 -follow_up v 2 4 @ ~ $ + 2 0 00486018 00230276 -follow_up_on v 1 2 @ ~ 1 0 02376429 -foment v 2 3 @ ~ + 2 0 02585050 00035448 -fondle v 1 3 @ ~ + 1 0 01226215 -fool v 4 4 @ ~ * + 4 1 02576349 01195804 00854904 00854150 -fool_around v 2 1 @ 2 1 00854150 02598642 -fool_away v 1 2 @ * 1 0 01195804 -foolproof v 1 1 @ 1 0 00166593 -foot v 3 3 @ + ; 3 1 02287209 01906322 00641138 -foot_up v 1 2 @ ; 1 0 00641138 -footle v 2 2 @ ~ 2 0 02639075 02519890 -footnote v 1 3 @ + ; 1 0 01704953 -footslog v 1 3 @ ~ + 1 0 01921204 -forage v 2 3 @ ~ + 2 0 02269894 01177699 -foray v 2 3 @ ~ + 2 0 02344568 01228635 -foray_into v 1 2 @ ~ 1 0 02020027 -forbear v 2 3 @ ~ + 2 0 02726044 02725714 -forbid v 2 4 ! @ ~ + 2 2 00795863 02452885 -force v 9 7 @ ~ * > ^ $ + 9 8 02504562 01650425 01871979 00747418 01527271 01516534 01448100 01350449 01586600 -force-feed v 1 2 @ + 1 0 01179740 -force-land v 1 1 @ 1 0 01978850 -force_back v 1 2 @ $ 1 0 01506157 -force_out v 8 3 @ ~ $ 8 0 02405252 02402825 02056466 02013840 01468058 01375637 01281611 00003662 -ford v 1 2 @ + 1 0 01913849 -forearm v 1 1 @ 1 0 01087729 -forebode v 1 3 @ ~ + 1 0 00917772 -forecast v 3 3 @ ~ + 3 3 00926472 00712135 00871942 -foreclose v 2 3 @ ~ + 2 2 02452885 02276568 -foredate v 1 1 @ 1 0 00277086 -foredoom v 1 1 @ 1 0 00907066 -forefend v 1 1 @ 1 0 02453321 -foregather v 1 3 @ ~ $ 1 0 02428924 -forego v 3 2 @ ~ 3 1 02712443 02534062 02303331 -foreground v 1 3 ! @ + 1 0 00514069 -foreknow v 1 1 @ 1 1 00720808 -foreordain v 2 4 @ ~ + ; 2 0 00703310 00702969 -foresee v 3 1 @ 3 3 00720808 01636221 02565491 -foreshadow v 1 3 @ ~ + 1 0 00871942 -foreshorten v 2 3 @ ~ $ 2 1 00243900 00244284 -foreshow v 1 1 @ 1 0 00924777 -forest v 1 3 @ ~ + 1 0 01567888 -forestall v 2 3 @ ~ + 2 1 02452885 02565491 -foreswear v 2 2 @ ~ 2 0 02534062 02227487 -foretell v 3 3 @ ~ + 3 0 00974173 00917772 00871942 -forewarn v 1 2 @ + 1 0 00870942 -forfeit v 1 4 ! @ ~ + 1 1 02303331 -forfend v 1 1 @ 1 0 02453321 -forgather v 1 3 @ ~ $ 1 0 02428924 -forge v 7 4 @ ~ $ + 7 3 01675245 01654271 01632411 01884266 01884126 01659248 01658188 -forget v 4 4 ! @ ~ $ 4 3 00610167 00609100 00614829 00613018 -forgive v 2 3 @ ~ + 2 2 00903385 02564426 -forgo v 3 2 @ ~ 3 1 02534062 02712443 02303331 -fork v 4 5 @ ~ $ + ; 4 0 01579340 01118888 00328802 00141914 -fork_out v 1 2 @ ~ 1 0 02293321 -fork_over v 1 2 @ ~ 1 0 02293321 -fork_up v 1 2 @ ~ 1 0 02293321 -form v 7 4 @ ~ $ + 7 6 02448185 02621395 02623906 00142191 01659248 02430922 00144850 -form_bubbles v 1 2 @ ~ 1 0 00519363 -formalise v 2 3 @ ~ + 2 0 02478936 02478701 -formalize v 2 3 @ ~ + 2 0 02478936 02478701 -format v 3 3 @ ~ + 3 0 01745141 00700336 00563552 -formicate v 1 2 @ + 1 0 01886228 -formularise v 1 1 @ 1 0 00981083 -formularize v 1 2 @ + 1 0 00981083 -formulate v 4 5 @ ~ $ + ; 4 4 00925873 01632411 00980453 01633173 -fornicate v 1 3 @ ~ + 1 0 01427278 -forsake v 1 3 @ ~ + 1 1 00614057 -forswear v 1 2 @ + 1 1 00798717 -fort v 3 3 @ ~ + 3 0 02023992 01606205 01155421 -fort_up v 1 1 @ 1 1 02023992 -fortify v 5 5 @ ~ > + ; 5 1 00220869 01606205 01087197 00222328 00222135 -forward v 1 2 @ + 1 1 01955508 -fossilise v 2 3 @ ~ + 2 0 00507664 00249556 -fossilize v 2 3 @ ~ + 2 0 00507664 00249556 -foster v 3 3 @ ~ + 3 1 02554422 02540569 00908351 -foul v 7 4 @ ~ + ; 7 2 01147855 00492706 01478603 01147709 00492410 00492310 00492225 -foul_out v 1 1 @ 1 1 01404774 -foul_up v 1 2 @ + 1 1 02527651 -found v 3 3 @ ~ + 3 2 02427103 01647229 00636888 -founder v 4 4 @ ~ $ + 4 0 02530003 01990168 01989053 01900648 -fowl v 2 3 @ ~ + 2 0 01145944 01142899 -fox v 3 4 @ ~ $ + 3 0 02575723 00621734 00510234 -foxhunt v 1 2 @ + 1 0 01145024 -foxtrot v 1 1 @ 1 0 01896213 -fraction v 1 4 @ ~ + ; 1 0 00642098 -fractionate v 2 3 @ + ; 2 1 01459696 01459542 -fracture v 6 4 @ ~ $ + 6 1 00203739 01621084 00335366 00108303 00107943 00107739 -fragment v 1 3 @ ~ + 1 0 00338071 -fragmentise v 1 2 @ ~ 1 0 00338071 -fragmentize v 1 3 @ ~ + 1 0 00338071 -frame v 6 3 @ + ; 6 5 01586850 02711835 02578008 00981276 00706804 01655763 -frame_in v 1 1 @ 1 1 01586850 -frame_up v 1 2 @ ; 1 1 01655763 -franchise v 1 3 @ + ; 1 0 02447542 -frank v 2 1 @ 2 0 01274104 00894080 -frap v 2 1 @ 2 0 01303855 00420337 -fraternise v 1 2 @ + 1 0 02389927 -fraternize v 1 2 @ + 1 1 02389927 -fray v 2 1 @ 2 0 01369204 01250908 -frazzle v 2 2 @ + 2 0 01369204 00075708 -freak v 1 1 @ 1 0 01784148 -freak_out v 1 1 @ 1 0 01784148 -freckle v 2 2 @ + 2 0 00510116 00509857 -free v 11 5 ! @ ~ + ; 11 8 02421374 02350175 01528522 02564146 02494047 02422026 01475953 00902424 02316304 01757994 00269682 -free-associate v 1 2 @ ; 1 0 00714718 -free-base v 1 1 @ 1 0 01200068 -freelance v 1 2 @ + 1 0 02576110 -freeload v 1 2 @ + 1 0 02270648 -freewheel v 2 3 @ $ + 2 0 02617338 01886907 -freeze v 10 8 ! @ ~ * > $ + ; 10 5 01834730 00374135 00078138 00375865 00363493 02758826 00445711 00269423 00021997 00012613 -freeze-dry v 1 3 @ ~ * 1 0 00211852 -freeze_down v 1 3 @ $ ; 1 1 00445711 -freeze_off v 1 3 @ ~ $ 1 0 00796976 -freeze_out v 1 3 @ $ ; 1 1 00445711 -freight v 2 3 @ ~ + 2 0 01951276 01489161 -french v 1 1 @ 1 0 01299127 -french-fry v 1 2 @ ; 1 0 00326310 -frenchify v 2 2 @ + 2 0 00410817 00410649 -frequent v 2 3 @ ~ + 2 2 02466134 01844431 -fresco v 1 3 @ + ; 1 0 01683271 -freshen v 3 4 @ ~ ^ + 3 0 00164444 00024814 00024649 -freshen_up v 2 2 @ ~ 2 0 00163441 00024814 -fress v 1 1 @ 1 0 01169067 -fret v 12 5 @ ~ > + ; 12 2 01793933 01767461 02330109 02119659 01789164 01773825 01752025 01751722 01570562 01250908 00274724 00274633 -fricassee v 1 3 @ + ; 1 0 00323703 -frig_around v 1 1 @ 1 0 02639606 -fright v 1 4 @ ~ > + 1 0 01779165 -frighten v 2 5 @ ~ > ^ + 2 2 01779165 01780104 -frighten_away v 1 1 @ 1 1 01785748 -frighten_off v 1 1 @ 1 0 01785748 -fringe v 2 3 @ + ; 2 0 01751021 01467751 -frisk v 2 2 @ + 2 0 01883716 01318223 -fritter v 1 2 @ * 1 0 01195804 -fritter_away v 1 2 @ * 1 0 01195804 -frivol v 1 1 @ 1 0 02592895 -frivol_away v 1 2 @ * 1 0 01195804 -frizz v 1 1 @ 1 0 01223833 -frizzle v 2 2 @ ; 2 1 00325647 01223833 -frock v 1 2 @ + 1 0 00048912 -frog v 1 2 @ + 1 0 01382818 -frogmarch v 2 1 @ 2 1 02084767 01451351 -frolic v 1 2 @ + 1 1 01883716 -front v 2 5 ! @ ~ $ + 2 2 02693319 01079172 -frost v 4 3 @ + ; 4 1 01517175 01208549 01208400 00196595 -frost_over v 1 2 @ * 1 0 02758581 -froth v 3 3 @ ~ + 3 0 00519363 00511855 00109389 -froth_at_the_mouth v 1 1 @ 1 0 01796215 -frown v 1 3 @ ~ + 1 1 00032981 -frown_on v 1 1 @ 1 0 00674237 -frown_upon v 1 1 @ 1 1 00674237 -fructify v 3 2 @ + 3 0 00506672 00506539 00056188 -fruit v 2 3 @ > + 2 0 01652895 01652731 -frustrate v 2 3 @ ~ + 2 1 02558172 01803003 -fry v 3 4 @ ~ + ; 3 2 02738241 00325328 02484957 -ftp v 1 2 @ + 1 0 02233352 -fuck v 1 4 @ ~ $ + 1 0 01426397 -fuck_off v 3 4 @ ~ * $ 3 0 02639606 02010864 01430633 -fuck_up v 1 2 @ + 1 1 02527651 -fuddle v 3 3 @ ~ $ 3 0 01190741 01171183 00621734 -fudge v 2 2 @ ~ 2 0 02576921 00809654 -fudge_together v 1 1 @ 1 0 01739675 -fuel v 4 3 @ ~ + 4 1 02338386 02356420 02237024 01762178 -fulfil v 3 4 @ ~ $ + 3 2 01640855 01183573 02671880 -fulfill v 3 4 @ ~ $ + 3 3 01640855 02671880 01183573 -full v 3 2 @ + 3 0 01399305 00433668 00433525 -fullback v 1 3 @ + ; 1 1 01076250 -fulminate v 3 2 @ + 3 1 00841767 00425381 00307060 -fumble v 5 3 @ + ; 5 3 01314738 02051547 01211019 02527651 01075327 -fume v 4 2 @ + 4 1 01795333 02767922 02127100 00068627 -fumigate v 1 2 @ + 1 0 02127100 -function v 3 5 ! @ ~ $ + 3 3 01525666 02670890 01096497 -fund v 6 5 @ ~ * $ + 6 0 02218924 02218635 02216083 02215966 02215790 02215506 -fund-raise v 1 1 @ 1 0 02217990 -fund_raise v 1 1 @ 1 0 02217990 -fundraise v 1 1 @ 1 0 02217990 -funk v 1 2 @ ~ 1 0 02061069 -funnel v 1 2 @ + 1 1 01444146 -furbish v 1 1 @ 1 0 01246095 -furbish_up v 1 2 @ ~ 1 0 00260648 -furcate v 1 4 @ ~ $ + 1 0 00328802 -furl v 1 3 @ ~ $ 1 1 00435853 -furlough v 2 3 @ ~ + 2 1 02403537 00748803 -furnish v 2 3 @ ~ + 2 2 02327200 02336483 -furrow v 3 2 @ + 3 1 01277431 01277784 01277649 -further v 2 3 @ ~ + 2 2 02554422 02554922 -fuse v 4 6 ! @ ~ * $ + 4 2 00394813 00397192 01137829 00396997 -fusillade v 1 2 @ + 1 0 01137582 -fuss v 2 3 @ ~ + 2 2 01793933 02550516 -fustigate v 1 1 @ 1 0 01424106 -g.i. v 1 1 @ 1 0 01533715 -gab v 1 1 @ 1 0 00741573 -gabble v 1 3 @ ~ + 1 1 01036804 -gad v 1 1 @ 1 0 01882689 -gag v 7 2 @ + 7 1 02190943 01570562 01284683 00853958 00077698 00077606 00077458 -gage v 1 2 @ ~ 1 0 01139104 -gaggle v 1 2 @ + 1 0 01056780 -gain v 9 6 ! @ ~ * $ + 9 8 02292125 02288295 02290461 02020590 01111028 00158222 00157462 02289295 00046151 -gain_ground v 1 1 ~ 1 0 01111028 -gain_vigor v 1 1 @ 1 0 00023473 -gainsay v 1 3 @ ~ * 1 0 00869126 -gall v 2 2 @ + 2 0 02119659 01786760 -gallivant v 1 1 @ 1 0 01882689 -gallop v 3 3 @ + ; 3 2 01959927 01960643 01960296 -galumph v 1 1 @ 1 0 01964998 -galvanise v 3 2 @ + 3 0 01821634 01266895 00090513 -galvanize v 3 2 @ + 3 0 01821634 01266895 00090513 -gamble v 2 3 @ ~ + 2 1 02544348 01138523 -gambol v 1 2 @ + 1 0 01883716 -game v 1 3 @ ~ + 1 0 01139104 -gang v 1 2 @ + 1 0 01089737 -gang-rape v 1 1 @ 1 0 02567917 -gang_up v 1 1 @ 1 1 01089737 -gangrene v 1 2 @ + 1 0 00097394 -gaol v 1 3 @ + ; 1 0 02494356 -gap v 1 2 @ + 1 0 01593614 -gape v 2 2 @ + 2 1 02164531 02718750 -garage v 1 2 @ + 1 1 02282946 -garb v 1 4 @ ~ $ + 1 0 00047945 -garbage_down v 1 1 @ 1 0 01174099 -garble v 1 2 @ ~ 1 0 00835903 -garden v 1 4 @ ~ + ; 1 1 01740969 -gargle v 2 2 @ + 2 0 01059945 00037138 -garland v 1 2 @ + 1 1 01669643 -garment v 1 4 @ ~ $ + 1 0 00047945 -garner v 3 3 @ ~ + 3 1 02290196 01493041 01380638 -garnish v 2 3 @ $ + 2 0 02274079 01679433 -garnishee v 1 1 @ 1 0 02274079 -garotte v 1 2 @ + 1 0 01571744 -garrison v 1 2 @ + 1 1 01089137 -garrote v 1 2 @ + 1 0 01571744 -garrotte v 1 2 @ + 1 0 01571744 -garter v 1 2 @ + 1 0 01287681 -gas v 2 3 @ ~ + 2 1 01125373 00883226 -gas_up v 1 1 @ 1 1 02338629 -gasconade v 1 3 @ ~ + 1 0 00883226 -gash v 1 2 @ + 1 1 01322509 -gasify v 1 3 @ ~ + 1 0 00442267 -gasp v 1 2 @ + 1 1 00005526 -gate v 3 3 @ + ; 3 0 02353844 01602907 00234390 -gate-crash v 1 1 @ 1 0 02019011 -gather v 9 7 ! @ ~ > ^ $ + 9 5 01380638 02428924 00158804 00945125 01330822 02598143 01349893 01316619 00157462 -gather_in v 1 2 @ ~ 1 0 01214786 -gather_up v 2 1 @ 2 2 01976089 02305586 -gauffer v 1 1 @ 1 0 00039680 -gauge v 6 3 @ ~ + 6 1 00672433 01250374 00919424 00490285 00468116 00395583 -gawk v 1 1 @ 1 1 02164531 -gawp v 1 1 @ 1 0 02164531 -gaze v 1 3 @ ~ + 1 1 02132745 -gazette v 1 2 @ + 1 0 01746604 -gazump v 2 3 @ ~ * 2 0 02319050 02241497 -gear v 1 2 @ ~ 1 1 00298244 -gear_up v 1 2 @ ~ 1 0 00406243 -gee v 2 1 @ 2 0 01908941 00865664 -gel v 2 2 @ + 2 0 00113728 00039950 -gelatinise v 2 2 @ $ 2 0 00565279 00565081 -gelatinize v 3 3 @ $ + 3 0 00565481 00565279 00565081 -geld v 1 2 @ + 1 0 00061219 -geminate v 4 4 @ $ + ; 4 0 01735556 01465365 01465218 00246588 -general v 1 2 @ + 1 1 00752193 -generalise v 4 4 @ ~ $ + 4 0 01022906 01022420 00970215 00104465 -generalize v 4 5 ! @ ~ $ + 4 1 01022420 01022906 00970215 00104465 -generate v 4 4 @ ~ $ + 4 4 01627355 01629000 01628197 00054628 -gentle v 3 2 @ ~ 3 1 01765392 02398463 01426072 -gentrify v 1 2 @ + 1 0 00163703 -genuflect v 2 2 @ + 2 0 02040934 02040709 -germinate v 3 3 @ $ + 3 1 00357332 01738597 00357667 -gerrymander v 1 2 @ + 1 0 02467516 -gestate v 2 5 @ ~ * $ + 2 0 01633343 00059019 -gesticulate v 1 3 @ ~ + 1 1 00992041 -gesture v 1 3 @ ~ + 1 1 00992041 -get v 36 7 @ ~ * ^ $ + ; 36 20 02210855 00149583 00120796 00522751 02005948 01433294 02108026 01153947 02355596 00770437 01215421 00094460 00087736 01066036 00120316 01026975 00589904 01505958 01401115 00639849 02359340 02208265 02189398 02109645 02108654 02010864 02006573 01771194 01771039 01738107 01643297 01565211 00622384 00345761 00065639 00054628 -get_a_line v 1 2 ~ $ 1 0 00598954 -get_a_load v 1 1 @ 1 0 02131777 -get_a_look v 1 1 @ 1 1 02129879 -get_a_noseful v 1 1 @ 1 0 02126269 -get_a_whiff v 1 1 @ 1 0 02126269 -get_about v 1 1 @ 1 1 01842888 -get_across v 3 3 @ ~ > 3 2 00744904 00591755 01912159 -get_ahead v 1 1 ~ 1 1 01111028 -get_along v 3 2 @ ~ 3 2 02617567 02458566 00248659 -get_along_with v 1 1 @ 1 1 02458566 -get_around v 4 3 @ ~ $ 4 2 00935987 00811171 02389815 01842888 -get_around_to v 1 1 @ 1 1 02428316 -get_at v 3 3 @ ~ $ 3 1 02007417 02586371 01787955 -get_away v 3 3 @ ~ + 3 3 02074677 00810729 02599004 -get_back v 3 2 @ ~ 3 2 01111570 01153762 01092128 -get_behind v 1 1 @ 1 1 02058756 -get_by v 3 2 @ ~ 3 3 02587532 02049963 00810729 -get_cracking v 1 1 @ 1 0 00348541 -get_down v 7 5 @ ~ > $ ; 7 4 01973486 01973125 01958452 01201856 01814396 01020356 00345761 -get_dressed v 1 3 @ ~ $ 1 0 00046534 -get_even v 2 2 @ ~ 2 1 01115411 01153762 -get_going v 2 2 @ ~ 2 1 01864230 00348541 -get_hitched_with v 1 3 @ ~ $ 1 0 02488834 -get_hold v 1 1 @ 1 0 02213336 -get_hold_of v 3 2 @ ~ 3 1 01214265 00743344 00737656 -get_in v 4 3 @ ~ $ 4 4 02016523 02585860 02239405 02015384 -get_in_touch v 1 2 @ $ 1 1 02389346 -get_into v 5 2 @ ~ 5 5 02636810 02016523 02239405 00875000 00050652 -get_it v 2 1 @ 2 2 00590366 02500397 -get_it_on v 1 3 @ ~ $ 1 0 01426397 -get_laid v 1 3 @ ~ $ 1 0 01426397 -get_married v 1 3 @ ~ $ 1 1 02488834 -get_moving v 1 1 @ 1 0 00348541 -get_off v 11 4 ! @ ~ ; 11 5 02016062 02412089 01062555 00905059 00810729 02197250 01958452 01923732 01437888 01200934 00941855 -get_off_the_ground v 1 1 @ 1 1 01864438 -get_on v 7 3 ! @ ~ 7 6 02458566 02018049 01923414 01849983 00424337 00248659 00248026 -get_on_with v 1 1 @ 1 0 02458566 -get_one's_lumps v 1 1 @ 1 0 00738159 -get_onto v 1 1 @ 1 1 00590366 -get_out v 7 3 @ ~ $ 7 4 02015598 01214597 02015168 01009986 01995211 00935987 00810729 -get_over v 4 2 @ ~ 4 3 01912159 01641341 00268011 01108627 -get_rid_of v 3 2 @ ~ 3 2 02224055 00471711 02427334 -get_rolling v 1 1 @ 1 0 00348541 -get_started v 1 1 @ 1 1 00348541 -get_stuck v 1 2 @ $ 1 0 01834896 -get_the_best v 1 1 @ 1 1 01104018 -get_the_better_of v 1 1 ~ 1 0 01108148 -get_the_goods v 1 1 @ 1 0 00599434 -get_the_hang v 1 2 @ * 1 0 00597634 -get_the_jump v 1 1 @ 1 0 01104376 -get_the_picture v 1 2 @ ~ 1 1 00588221 -get_through v 5 3 @ ~ > 5 3 00484892 02709277 02021921 00743344 00591755 -get_to v 3 3 @ ~ $ 3 2 02022162 00347276 01787955 -get_to_grips v 1 1 @ 1 0 02437157 -get_together v 4 5 @ ~ > $ + 4 3 02598143 02486932 02416278 02434976 -get_under_one's_skin v 1 2 @ $ 1 0 01771194 -get_up v 8 6 ! @ ~ > $ + 8 6 01983264 00018158 01974062 00018405 00096648 00044149 01651444 00605783 -get_weaving v 1 1 @ 1 0 00348541 -get_well v 1 2 ! @ 1 0 00268011 -get_wind v 1 2 ~ $ 1 0 00598954 -get_wise v 1 1 @ 1 0 00590366 -get_word v 1 2 ~ $ 1 1 00598954 -get_worse v 1 2 ! @ 1 1 00268165 -geyser v 1 2 @ + 1 1 02072394 -ghettoise v 1 1 @ 1 0 00494880 -ghettoize v 1 2 @ + 1 0 00494880 -ghost v 3 3 @ + ; 3 1 01839807 01783214 01704752 -ghostwrite v 1 3 @ + ; 1 0 01704752 -gi v 1 1 @ 1 0 01533715 -gibber v 2 3 @ ~ + 2 0 01036804 00776846 -gibbet v 2 2 @ + 2 0 02485731 02483941 -gibe v 2 4 @ ~ $ + 2 0 02657219 00850192 -gift v 2 3 @ ~ + 2 1 02474239 02200686 -gift-wrap v 1 2 @ + 1 0 01284160 -giggle v 1 2 @ + 1 1 00030142 -gild v 1 2 @ + 1 1 01683101 -gild_the_lily v 2 1 @ 2 0 01677242 00183241 -gimp v 1 2 @ + 1 0 01917244 -gin v 2 3 @ + ; 2 0 01557517 01481027 -ginger v 1 3 @ + ; 1 0 02192818 -ginger_up v 1 1 @ 1 0 00192659 -gip v 1 2 @ ~ 1 0 02572119 -gird v 3 2 @ ~ 3 1 01087197 01467917 01302854 -girdle v 2 3 @ + ; 2 0 01608122 01467917 -girth v 1 2 @ + 1 0 01302982 -give v 44 8 ! @ ~ > ^ $ + ; 44 27 02316868 02339171 02199590 02235842 01060494 01733477 01060317 02200686 01629403 00732224 01629000 02296153 01647672 02200498 02562901 02343595 02230772 00887463 02309374 02309165 01060746 02317094 01848465 01178565 02308741 01989053 00673571 02564052 02359553 02358034 01716283 01716112 01449796 01175810 01069638 00944247 00888009 00878876 00771806 00748972 00748616 00341184 00108747 00108604 -give-up_the_ghost v 1 3 @ ~ $ 1 0 00358431 -give_a_damn v 1 0 1 0 01823149 -give_a_hang v 1 0 1 0 01823149 -give_a_hoot v 1 0 1 0 01823149 -give_and_take v 1 1 @ 1 1 01036188 -give_away v 4 5 @ ~ > $ + 4 2 02201855 00933821 02293915 00841986 -give_back v 1 2 @ ~ 1 0 02284951 -give_birth v 2 4 @ ~ * $ 2 2 00056930 01631959 -give_care v 1 2 @ ~ 1 0 02550296 -give_chase v 1 2 @ ~ 1 0 02001858 -give_ear v 1 2 @ ~ 1 1 02170427 -give_forth v 1 1 @ 1 1 00004605 -give_full_measure v 1 1 @ 1 0 02563120 -give_in v 2 2 @ ~ 2 2 00878348 00804476 -give_it_a_try v 2 2 @ ; 2 0 02532458 02530770 -give_it_a_whirl v 1 2 @ ; 1 1 02532458 -give_it_the_deep_six v 1 1 @ 1 0 02222994 -give_notice v 2 2 @ ~ 2 0 02402825 00873682 -give_off v 2 2 @ ~ 2 1 02631005 02767308 -give_one's_best v 1 1 @ 1 0 02563120 -give_out v 4 3 @ ~ $ 4 2 02767308 02201644 00560247 00434374 -give_rise v 1 2 @ ~ 1 1 01752884 -give_suck v 1 2 @ $ 1 0 01186428 -give_thanks v 1 2 @ ~ 1 1 00892315 -give_the_axe v 2 2 @ ~ 2 0 02402825 00353639 -give_the_bounce v 1 1 @ 1 0 00353639 -give_the_eye v 1 1 @ 1 0 02167875 -give_the_gate v 1 1 @ 1 0 00353639 -give_the_glad_eye v 1 1 @ 1 0 02164186 -give_the_once_over v 1 1 @ 1 0 02167875 -give_the_sack v 1 2 @ ~ 1 0 02402825 -give_tongue_to v 1 1 ~ 1 0 00940384 -give_up v 12 3 @ ~ $ 12 12 02303331 02227741 01083044 02680814 02345647 02316304 02367032 02235229 01115585 00613393 02423650 01196524 -give_vent v 1 1 @ 1 1 00944548 -give_voice v 1 2 @ ~ 1 0 00980453 -give_way v 4 3 @ ~ $ 4 3 01848465 01989053 00435103 00434374 -glaciate v 2 2 @ + 2 0 01208708 00374375 -gladden v 2 4 ! @ ~ > 2 0 01813499 01812950 -glam_up v 1 1 @ 1 0 00043078 -glamorise v 1 2 @ + 1 0 00532886 -glamorize v 2 2 @ + 2 0 00693172 00532886 -glamour v 1 3 @ ~ + 1 0 00776988 -glamourise v 2 2 @ + 2 0 00693172 00532886 -glamourize v 1 2 @ + 1 0 00532886 -glance v 2 2 @ + 2 2 02165304 01893000 -glance_over v 1 1 @ 1 0 02152278 -glare v 3 3 @ ~ + 3 1 00033203 02765090 02162672 -glass v 5 3 @ ~ + 5 0 02335363 02152690 01587575 00188580 00125447 -glass_in v 1 1 @ 1 0 01587575 -glass_over v 1 1 @ 1 0 00125447 -glaze v 4 4 @ ~ ^ + 4 2 01269521 00125447 02335363 02196378 -glaze_over v 2 1 @ 2 0 02158034 00125447 -gleam v 3 3 @ ~ + 3 3 02162947 02160779 00423575 -glean v 1 3 @ ~ + 1 1 01320009 -glide v 3 5 @ ~ ^ + ; 3 1 01887576 01942347 01887901 -glide-bomb v 1 1 @ 1 1 01132797 -glide_by v 1 2 @ ~ 1 0 02072849 -glimmer v 1 2 @ + 1 0 02160779 -glimpse v 1 2 @ + 1 1 02119470 -glint v 2 3 @ ~ + 2 2 02162947 02165304 -glissade v 1 2 @ + 1 0 01894914 -glisten v 1 3 @ ~ + 1 1 02162947 -glitter v 1 3 @ ~ + 1 1 02162947 -gloat v 2 3 @ ~ + 2 1 00883635 02166861 -globalise v 1 2 @ + 1 0 00540739 -globalize v 1 2 @ + 1 0 00540739 -globe-trot v 1 1 @ 1 0 01845457 -glom v 2 1 @ 2 1 02322230 02212507 -glorify v 4 3 @ ~ + 4 2 00860620 00489299 00580512 00489496 -glory v 1 2 @ + 1 1 00858341 -gloss v 4 4 @ * ^ + 4 0 01682582 00961329 00960961 00837133 -gloss_over v 2 1 @ 2 1 02516255 02148109 -glow v 5 3 @ ~ + 5 4 02160944 02161530 02768874 01830042 01829747 -glower v 2 3 @ ~ + 2 1 00033203 00032981 -glue v 2 3 @ ~ + 2 2 01332205 00486850 -glug v 1 1 @ 1 0 02178186 -glut v 2 2 @ + 2 1 01193099 02356704 -gluttonise v 1 1 @ 1 0 01169067 -gluttonize v 1 2 @ + 1 0 01169067 -glycerolise v 1 2 @ ; 1 0 01987781 -glycerolize v 1 4 ! @ + ; 1 1 01987781 -gnarl v 2 2 @ + 2 0 01280808 00909219 -gnash v 1 1 @ 1 1 00078578 -gnaw v 2 2 @ + 2 2 01445597 00275253 -gnaw_at v 1 1 @ 1 1 00275253 -go v 30 7 ! @ ~ * ^ $ + 30 21 01835496 02372605 01848718 00149583 02653862 02721284 02685951 00341560 00359916 02618001 02176268 01525666 01192773 00539110 02618149 02617798 00358431 02737876 02729819 01864230 01076615 02700772 02700666 02700455 02686471 02659763 01318849 01192992 00676267 00434374 -go_a_long_way v 1 1 @ 1 1 02670270 -go_about v 1 2 @ ~ 1 1 02439281 -go_across v 1 2 @ ~ 1 0 02050132 -go_after v 2 2 @ ~ 2 2 02001858 01317533 -go_against v 3 2 @ ~ 3 1 02668523 02566528 02378851 -go_ahead v 1 2 @ + 1 1 00781303 -go_all_out v 1 1 @ 1 1 02563120 -go_along v 3 3 @ ~ $ 3 3 02417208 02684924 02072849 -go_around v 5 3 @ ~ $ 5 2 02738126 00969873 02085446 02045043 00811171 -go_away v 4 3 @ ~ $ 4 2 01848718 02009433 02156546 00426958 -go_back v 3 2 @ ~ 3 2 02723951 00959714 00528339 -go_back_on v 1 2 @ * 1 0 00800242 -go_bad v 2 3 @ ~ $ 2 0 00434374 00210259 -go_ballistic v 1 1 @ 1 0 01795428 -go_by v 4 2 @ ~ 4 3 02072849 02051694 01029368 00150977 -go_deep v 1 1 @ 1 1 02733673 -go_down v 8 4 @ ~ $ ; 8 6 01970826 01989873 00431826 02733806 01205331 01099866 01970646 00434919 -go_down_on v 1 1 @ 1 0 02117170 -go_dutch v 1 1 @ 1 0 02250467 -go_far v 2 1 @ 2 2 02585860 02733673 -go_for v 5 4 @ ~ * $ 5 3 02676789 00797697 00706047 01776468 01072807 -go_for_broke v 1 1 @ 1 0 02544781 -go_forth v 2 2 ~ $ 2 0 02009433 00528990 -go_forward v 1 3 @ ~ $ 1 1 01995549 -go_home v 1 1 @ 1 1 02005496 -go_in v 1 1 ~ 1 1 02016523 -go_into v 2 1 ~ 2 2 02016523 02736259 -go_off v 6 3 ! @ ~ 6 3 02073714 00307295 01134238 01526792 00343898 00305846 -go_off_at_half-cock v 1 1 @ 1 0 02602458 -go_off_half-cocked v 1 1 @ 1 0 02602458 -go_on v 5 4 ! @ ~ $ 5 5 02684924 00339934 01992503 00781000 01526605 -go_out v 6 5 ! @ ~ $ ; 6 6 02015598 01842204 02011437 00352419 02667558 02486232 -go_over v 4 3 @ ~ $ 4 4 00696700 00343898 00661824 00031277 -go_past v 2 2 @ ~ 2 1 02051694 02669081 -go_steady v 1 2 @ $ 1 1 02486232 -go_through v 5 3 @ ~ $ 5 2 02110220 01161947 02050132 01197014 00486018 -go_through_the_motions v 1 1 @ 1 0 00838786 -go_to v 1 3 @ ~ ; 1 1 02612762 -go_to_bed v 1 2 ! ~ 1 1 00017865 -go_to_pieces v 1 1 @ 1 1 01829126 -go_to_pot v 1 1 @ 1 0 00208691 -go_to_sleep v 1 1 ~ 1 1 00017865 -go_to_the_dogs v 1 1 @ 1 0 00208691 -go_to_war v 1 1 @ 1 1 01093465 -go_under v 3 4 @ ~ $ ; 3 1 01989873 01970646 01029368 -go_up v 7 4 @ ~ * $ 7 6 01968569 00155143 02053941 01943949 01921964 00377351 01969216 -go_with v 2 2 @ ~ 2 2 02716165 02660819 -go_wrong v 1 1 ~ 1 1 02528380 -goad v 4 3 @ ~ + 4 2 01818835 01241073 01240935 00851733 -gobble v 2 3 @ ^ + 2 2 01173933 01058426 -gobble_up v 1 1 @ 1 0 01174099 -goffer v 1 1 @ 1 0 00039680 -goggle v 1 1 @ 1 0 02164531 -gold-plate v 1 2 @ + 1 0 01396091 -gold_plate v 1 2 @ + 1 0 01396091 -goldbrick v 2 3 @ ~ + 2 0 02572119 02463704 -goldplate v 1 2 @ + 1 0 01396091 -golf v 1 2 @ + 1 0 01146793 -gong v 1 2 @ + 1 0 02180152 -goof v 1 2 @ + 1 1 02566227 -goof-proof v 1 1 @ 1 0 00166593 -goofproof v 1 1 @ 1 0 00166593 -google v 1 3 @ + ; 1 0 00648764 -goose v 3 1 @ 3 0 01457079 01231061 01225867 -goose_step v 1 2 @ + 1 0 01929133 -gore v 2 2 @ + 2 1 01445235 01559230 -gorge v 1 2 @ + 1 1 01193099 -gormandise v 1 1 @ 1 0 01193099 -gormandize v 1 1 @ 1 0 01193099 -gossip v 2 3 @ ~ + 2 0 01041954 01038666 -gouge v 3 4 @ ~ ^ + 3 3 01281611 02241107 01281782 -gouge_out v 1 1 @ 1 0 01281343 -gourmandize v 1 2 @ + 1 0 01193099 -govern v 4 3 @ ~ + 4 3 02511551 02442205 02586619 02628647 -gown v 1 2 @ + 1 0 00106592 -grab v 6 4 @ ~ $ + 6 3 01439190 02304648 02099239 02358217 01350283 00737476 -grace v 2 4 @ ~ $ + 2 1 01675963 02748927 -gradate v 2 2 @ + 2 0 01614079 00576498 -grade v 4 3 @ ~ + 4 1 00658052 01307609 00657728 00657550 -graduate v 3 3 @ > + 3 2 02264397 02264179 00295697 -graft v 2 3 @ * + 2 0 01530678 01530431 -grain v 4 3 @ > + 4 0 01530898 01363005 00144169 00141524 -grandstand v 1 3 @ + ; 1 0 01714805 -grant v 7 4 @ ~ $ + 7 5 02255462 02262278 00806049 02255268 02317094 02316649 02255942 -granulate v 3 3 @ > + 3 0 00144169 00141524 00099374 -graph v 2 2 @ + 2 1 01755137 01755291 -grapple v 2 3 @ ~ + 2 2 02587532 01574292 -grasp v 2 3 @ ~ + 2 2 01216004 00588221 -grass v 6 3 @ ~ + 6 1 01137055 01603032 01580348 01209025 01204581 00841986 -grass_over v 1 1 @ 1 0 01209025 -grate v 5 4 @ ~ * + 5 0 02330583 01773825 01574077 01394464 01308160 -gratify v 2 3 @ ~ + 2 1 01816431 01182293 -grave v 2 3 @ ~ $ 2 0 01551871 01321895 -gravel v 3 4 @ ~ $ + 3 0 01787955 01603175 00622384 -gravitate v 3 2 @ + 3 0 02732148 02731996 01835280 -gray v 2 2 @ + 2 0 00289679 00289392 -graze v 5 5 @ ~ $ + ; 5 2 01576165 01608508 01576478 01240514 01174742 -grease v 1 2 @ + 1 1 01269379 -grease_one's_palms v 1 3 @ ~ ; 1 0 02284096 -green v 1 2 @ + 1 0 00521478 -greet v 4 3 @ ~ + 4 4 00897241 00897125 00718907 02197505 -grey v 2 2 @ + 2 0 00289679 00289392 -griddle v 1 3 @ + ; 1 0 00325910 -grieve v 2 4 @ ~ > + 2 1 01797347 01797582 -grill v 2 4 @ ~ + ; 2 1 00326773 00788821 -grimace v 1 3 @ ~ + 1 1 00034288 -grime v 1 3 @ ~ + 1 0 01534147 -grin v 1 2 @ + 1 1 00029025 -grind v 7 5 @ ~ * ^ + 7 5 01594978 01394464 02419773 02048682 00331082 01624449 01624321 -grind_away v 1 2 @ $ 1 0 00605783 -grind_down v 1 1 @ 1 0 02587239 -grind_out v 1 1 @ 1 1 01753272 -grind_to_a_halt v 1 2 @ $ 1 0 01834896 -grip v 3 3 @ ~ + 3 3 01224001 01574292 01821132 -gripe v 1 2 @ + 1 0 00910973 -grit v 2 2 @ + 2 0 01394938 01394715 -grizzle v 2 2 @ $ 2 0 01805384 00907930 -groak v 1 1 @ 1 0 02165002 -groan v 1 2 @ + 1 1 01045419 -groin v 1 2 @ ; 1 0 01656107 -grok v 1 2 @ ~ 1 0 00588221 -groom v 3 4 @ ~ $ + 3 2 02387034 00045639 00040353 -groove v 2 3 @ ~ + 2 0 01457489 01277431 -grope v 3 3 @ ^ + 3 2 01314738 02530936 01211263 -grope_for v 1 1 @ 1 1 01314440 -gross v 1 2 @ + 1 0 02291434 -gross_out v 2 2 @ ~ 2 0 02194913 01784148 -grouch v 1 2 @ + 1 0 00909573 -ground v 12 6 @ ~ > $ + ; 12 4 01304944 01502762 01502654 00830648 02022486 02022359 01406684 01406512 01406356 01365355 01292534 00636888 -ground_out v 1 2 @ ; 1 1 01402173 -group v 2 3 @ ~ + 2 2 00656576 01089878 -grouse v 2 2 @ + 2 0 01143028 00910973 -grout v 1 2 @ + 1 0 01366809 -grovel v 1 2 @ + 1 1 02063771 -grow v 10 8 @ ~ * > ^ $ + ; 10 9 00125841 00230746 00231557 00245457 00250181 02624263 01739814 00094460 00543410 00250539 -grow_over v 1 1 @ 1 0 00232714 -grow_up v 1 2 @ ~ 1 1 02540347 -growl v 1 2 @ + 1 1 01045719 -grub v 2 2 @ ~ 2 0 02270404 01319473 -grub_out v 1 1 @ 1 0 01314208 -grub_up v 1 1 @ 1 0 01314208 -grubstake v 1 2 @ + 1 0 02216232 -grudge v 2 3 @ * + 2 0 01774005 01773734 -grumble v 4 2 @ + 4 3 00909573 00909219 01045719 02187320 -grunt v 1 2 @ + 1 1 01043231 -grunt-hoot v 1 1 @ 1 0 01043112 -gruntle v 1 1 @ 1 0 01765392 -guarantee v 4 4 @ ~ $ + 4 4 00890100 00890590 00889555 00891936 -guard v 4 4 @ ~ $ + 4 3 02456031 01129337 01129876 02599878 -guess v 4 3 @ ~ + 4 4 00631737 00916909 00672433 00636061 -guesstimate v 1 2 @ + 1 0 00918746 -guffaw v 1 2 @ + 1 0 00031540 -guggle v 3 2 @ $ 3 0 02187922 02178576 01170566 -guide v 5 4 @ ~ $ + 5 3 01931768 01999798 02439732 02159427 01212230 -guide_on v 1 1 @ 1 1 02159427 -guillotine v 1 2 @ + 1 0 01571538 -gull v 2 3 @ ~ + 2 2 02576349 00854904 -gulp v 2 3 @ * + 2 2 01202068 01067002 -gum v 4 2 @ + 4 0 01364019 01175224 00586387 00069166 -gum_up v 1 1 @ 1 0 01357288 -gun v 1 4 @ ~ ^ + 1 0 01136614 -gun_down v 1 1 @ 1 1 01136964 -gurgle v 4 3 @ $ + 4 0 02187922 02177976 01170566 00985334 -gush v 3 3 @ ~ + 3 2 02068413 00882220 01516290 -gussy_up v 1 3 @ ~ $ 1 0 00044149 -gut v 2 2 @ + 2 0 01591012 01590747 -gutter v 4 2 @ + 4 0 02769077 02084879 01310125 01204677 -guttle v 1 1 @ 1 0 01196653 -guy v 2 3 @ ~ + 2 0 00851933 00271520 -guzzle v 1 2 @ + 1 1 01170824 -gybe v 1 1 @ 1 0 01946817 -gyp v 1 3 @ ~ + 1 0 02572119 -gyrate v 2 3 @ ~ + 2 1 02049190 02046755 -habilitate v 2 3 @ ~ $ 2 0 00300989 00047945 -habit v 1 2 @ + 1 0 00049102 -habituate v 2 3 @ ~ + 2 0 01165043 00273445 -hack v 8 4 @ ~ + ; 8 1 01257173 02588280 01257817 01148199 01148101 00526441 00201618 00006100 -hack_on v 1 1 @ 1 0 00526441 -hackle v 1 1 @ 1 0 01596972 -had_best v 1 1 @ 1 0 02723564 -haemagglutinate v 1 2 @ + 1 0 01221842 -haggle v 1 3 @ ~ + 1 1 02259547 -hail v 5 3 @ $ + 5 4 00861725 02743214 00900499 00900376 02759115 -hale v 2 3 @ ~ > 2 0 02504562 01454810 -halloo v 2 2 @ + 2 0 01231140 00914061 -hallow v 1 2 @ ~ 1 0 00866702 -hallucinate v 1 2 @ + 1 0 02117649 -halt v 4 3 @ ~ + 4 3 01859586 01860795 02559752 00354452 -halter v 2 2 @ + 2 0 02485631 00236289 -halve v 1 2 @ ; 1 0 00642357 -ham v 1 3 @ + ; 1 0 01751173 -ham_it_up v 1 2 @ ; 1 0 01751173 -hammer v 2 4 @ ~ $ + 2 1 01416539 01675245 -hammer_in v 1 1 @ 1 0 00606471 -hammer_out v 1 1 @ 1 0 01064151 -hamper v 2 2 @ + 2 2 00236289 01085474 -hamstring v 2 2 @ + 2 0 01799629 00091851 -hand v 2 4 @ ~ ^ + 2 1 02230772 02000133 -hand-build v 1 1 @ 1 0 01663580 -hand-dye v 1 2 @ ~ 1 0 00288673 -hand-pick v 1 1 @ 1 0 00676714 -hand-wash v 1 1 @ 1 0 01536925 -hand_down v 1 1 @ 1 1 02230615 -hand_out v 1 2 @ ~ 1 1 02201644 -hand_over v 1 3 @ ~ + 1 1 02293321 -handbuild v 1 1 @ 1 0 01663580 -handcolor v 1 2 @ ; 1 0 00285856 -handcolour v 1 2 @ ; 1 0 00285856 -handcraft v 1 2 @ + 1 0 01659007 -handcuff v 1 2 @ + 1 0 01288201 -handicap v 3 3 @ ~ + 3 1 00091968 01085874 01085474 -handle v 6 4 @ ~ $ + 6 5 02436349 02514187 01033527 01210737 01224415 01804414 -handle_with_kid_gloves v 1 1 @ 1 0 02514704 -handstamp v 1 2 @ + 1 0 01273632 -handwash v 1 2 ! @ 1 0 01536925 -handwrite v 1 2 @ + 1 0 01005209 -hang v 15 5 @ ~ > $ + 15 9 01482075 01481360 02485451 01977962 01542668 02734952 02170427 01481957 01216331 02741003 02557790 01677716 01481819 01481647 00210110 -hang_around v 1 2 @ ~ 1 1 02639075 -hang_back v 1 1 @ 1 1 02058756 -hang_by_a_hair v 1 1 @ 1 0 02664413 -hang_by_a_thread v 1 1 @ 1 0 02664413 -hang_glide v 1 3 @ * + 1 0 01955808 -hang_in v 1 2 @ ~ 1 1 00350461 -hang_on v 3 4 @ ~ * ; 3 2 01328513 00350461 00790509 -hang_out v 1 2 @ + 1 0 02390287 -hang_together v 1 1 @ 1 1 02622033 -hang_up v 3 4 @ ~ > $ 3 3 01309027 01481360 00363003 -hanker v 1 3 @ ~ + 1 1 01828405 -hap v 1 2 ~ + 1 0 00339934 -happen v 5 4 @ ~ $ + 5 4 00339934 00344643 02593912 00344174 02248465 -happen_upon v 1 1 @ 1 1 02286687 -harangue v 1 2 @ + 1 1 00990249 -harass v 2 3 @ ~ + 2 0 01789514 01120759 -harbinger v 1 2 @ + 1 0 00974173 -harbor v 4 2 @ + 4 4 01773130 02656189 02350065 02148604 -harbour v 4 2 @ + 4 0 02656189 02350065 02148604 01773130 -hard_surface v 1 1 @ 1 0 01267611 -harden v 5 6 ! @ ~ > $ + 5 1 00443116 00443384 00302875 00295120 00272910 -hare v 1 2 @ + 1 0 02085004 -hark v 1 1 @ 1 0 02189588 -hark_back v 1 2 @ ~ 1 0 00959524 -harken v 1 1 @ 1 0 02189588 -harlequin v 1 1 @ 1 0 00510576 -harm v 1 3 @ ~ + 1 1 00102586 -harmonise v 6 5 @ ~ $ + ; 6 0 02700104 01707306 01706889 00483181 00482473 00482180 -harmonize v 6 5 @ ~ $ + ; 6 0 02700104 01707306 01706889 00483181 00482473 00482180 -harness v 4 5 ! @ ~ + ; 4 2 01491697 01163495 02442737 00234857 -harp v 2 4 @ * + ; 2 1 00959367 01732713 -harpoon v 1 2 @ + 1 0 01140515 -harrow v 1 3 @ + ; 1 1 01742415 -harry v 2 3 @ ~ + 2 1 01789514 00389083 -harsh_on v 1 1 @ 1 0 01072133 -harshen v 1 1 @ 1 1 00545422 -harvest v 2 3 @ ~ + 2 1 01320009 00175804 -hash v 1 2 @ + 1 0 01257399 -hash_out v 1 2 @ ~ 1 0 00813978 -hash_over v 1 1 @ 1 0 01009097 -hasp v 1 2 @ + 1 0 01348599 -hassle v 1 3 @ ~ + 1 0 01789514 -hasten v 4 2 @ ~ 4 4 00459498 02058994 02548893 01644522 -hat v 2 3 @ ~ + 2 1 00047172 02363128 -hatch v 5 6 @ ~ * $ + ; 5 2 00063095 01634142 01682234 01276593 00060185 -hatchel v 1 1 @ 1 0 01596972 -hate v 1 4 ! @ ~ + 1 1 01774136 -haul v 2 3 @ ~ + 2 2 01454810 01452255 -haul_away v 1 1 @ 1 0 01451665 -haul_off v 1 1 @ 1 0 01451665 -haul_up v 1 3 @ $ ; 1 1 01863158 -haunt v 3 3 @ ~ + 3 2 02004009 01783214 01844431 -have v 19 6 ! @ ~ * $ + 19 19 02203362 02630189 02108026 02204692 00120796 01156834 02378453 01733477 02205098 02740745 00121046 00065370 00770437 02236124 02210119 00065639 02355596 00056930 01427127 -have-to_doe_with v 1 2 ~ $ 1 0 02676054 -have_a_ball v 1 1 @ 1 0 01191232 -have_a_bun_in_the_oven v 1 3 @ * $ 1 0 00059019 -have_a_fit v 1 1 @ 1 0 01795428 -have_a_go v 1 1 @ 1 0 02530770 -have_a_go_at_it v 1 3 @ ~ $ 1 0 01426397 -have_a_good_time v 1 1 @ 1 0 01191232 -have_a_look v 1 1 @ 1 1 02131777 -have_down v 1 1 @ 1 0 00596342 -have_got v 1 2 ~ $ 1 1 02203362 -have_in_mind v 1 2 @ ~ 1 1 00730052 -have_intercourse v 1 3 @ ~ $ 1 0 01426397 -have_it_away v 1 3 @ ~ $ 1 0 01426397 -have_it_coming v 1 1 @ 1 0 02646601 -have_it_off v 1 3 @ ~ $ 1 0 01426397 -have_kittens v 1 1 @ 1 0 01795428 -have_on v 1 1 * 1 1 00052374 -have_sex v 1 3 @ ~ $ 1 0 01426397 -have_the_best v 1 1 @ 1 0 01104018 -have_words v 1 2 @ ~ 1 0 00824767 -have_young v 1 1 @ 1 0 00058897 -haw v 1 1 @ 1 0 01061704 -hawk v 3 2 @ + 3 1 02302817 01145612 00035089 -hay v 1 1 @ 1 0 00585405 -hazard v 3 3 @ ~ + 3 1 00916909 02545272 02544348 -haze v 2 2 @ + 2 0 02772202 02585722 -haze_over v 1 2 @ ~ 1 0 02157731 -head v 9 4 @ ~ $ + 9 5 01935233 02440244 01999423 02729023 01931768 02754463 02694287 02624128 01590915 -head_for_the_hills v 1 2 @ ~ 1 0 02075049 -head_home v 1 1 @ 1 1 02005496 -head_off v 1 1 @ 1 1 02453321 -head_up v 1 2 @ $ 1 1 02729023 -headbutt v 1 1 @ 1 0 01236009 -headline v 2 3 @ + ; 2 1 00976224 02332445 -headquarter v 1 1 @ 1 0 02366884 -heal v 3 5 @ ~ * + ; 3 2 00270561 00099184 00081725 -heap v 3 4 @ ~ ^ + 3 2 02263788 01503404 00453424 -heap_up v 1 1 @ 1 0 01504298 -hear v 5 4 @ ~ $ + 5 4 02169702 00598954 02500902 02107442 02171039 -hear_out v 1 1 @ 1 0 02170181 -hearken v 1 1 @ 1 0 02189588 -hearten v 1 3 ! @ ~ 1 0 01817938 -heat v 4 5 ! @ ~ > + 4 1 00371264 02333358 01761120 00372665 -heat_up v 3 3 @ ~ > 3 1 00372665 00371264 00227667 -heave v 8 3 @ ~ + 8 6 00986586 01507792 02041206 01455866 02088470 00005526 00356954 00077458 -heave_up v 1 2 @ ~ 1 0 01455866 -heckle v 2 2 @ + 2 0 01596972 00907800 -hectograph v 1 2 @ + 1 0 01694850 -hector v 1 2 @ ~ 1 0 01781520 -hedge v 4 4 @ ~ $ + 4 1 00809654 01615190 01615020 00428067 -hedge_in v 1 2 @ $ 1 0 01615020 -hedgehop v 1 1 @ 1 0 01955703 -hee-haw v 1 2 @ + 1 0 01054553 -heed v 1 2 @ + 1 1 02571901 -heel v 5 4 @ $ + ; 5 0 02038791 01992114 01751545 01403987 00533671 -heft v 2 3 @ ~ * 2 1 01455866 01456341 -heft_up v 1 2 @ ~ 1 0 01455866 -heighten v 6 3 @ ~ > 6 3 00432436 00432281 00229605 01975753 00392588 00227165 -heist v 1 3 @ * + 1 1 02571511 -heliograph v 1 2 @ + 1 0 01040400 -helm v 1 1 @ 1 0 01932482 -help v 8 4 @ ~ $ + 8 5 02547586 00082081 02735897 02726164 01181295 02555434 01193569 00206998 -help_oneself v 1 1 @ 1 0 02726164 -help_out v 1 1 @ 1 1 02548422 -hem v 2 2 @ + 2 0 01329732 01061799 -hem_and_haw v 1 1 @ 1 0 01061881 -hem_in v 2 2 @ ~ 2 2 01607716 01127411 -hemagglutinate v 1 2 @ + 1 0 01221842 -hemorrhage v 1 3 @ ~ + 1 0 00074834 -hemstitch v 1 2 @ + 1 0 01331518 -hen-peck v 1 1 @ 1 0 00844941 -henna v 1 2 @ + 1 0 00283664 -herald v 3 2 @ + 3 2 00974173 00861725 00900376 -herd v 3 3 @ ~ + 3 2 02028722 02028616 02652158 -hero-worship v 1 2 @ ~ 1 0 01778017 -hesitate v 2 4 @ ~ * + 2 2 02640440 02641035 -heterodyne v 1 1 @ 1 0 01461646 -hew v 2 4 @ ~ ^ + 2 0 01260685 01260428 -hew_out v 1 2 @ ~ 1 0 01260685 -hex v 1 3 @ ~ + 1 0 00776988 -hibachi v 1 3 @ + ; 1 1 00327010 -hibernate v 2 3 ! @ + 2 1 00015946 02596004 -hiccough v 1 2 @ + 1 0 00003826 -hiccup v 1 2 @ + 1 0 00003826 -hide v 4 5 ! @ ~ $ + 4 2 02144835 02145814 01582200 00313987 -hide_out v 1 2 ~ + 1 1 02145814 -hie v 1 2 @ ~ 1 0 02058994 -higgle v 1 2 @ ~ 1 0 02259547 -high-tail v 1 1 @ 1 1 02092907 -highjack v 1 4 @ ~ + ; 1 0 01471825 -highlight v 2 2 @ + 2 1 00514069 00041206 -hightail v 1 1 @ 1 0 02010255 -hightail_it v 1 2 @ ~ 1 0 02075049 -hijack v 2 4 @ ~ + ; 2 1 01471825 02275034 -hike v 2 4 @ ~ + ; 2 1 01975912 01920932 -hike_up v 2 1 @ 2 1 01593134 01975912 -hill v 1 2 @ + 1 0 01660640 -hinder v 3 3 @ ~ + 3 3 02451370 02557199 01085474 -hinge v 1 2 @ + 1 0 01297174 -hinge_on v 1 1 ~ 1 1 02711987 -hinge_upon v 1 1 ~ 1 0 02711987 -hint v 1 3 @ ~ + 1 1 00927430 -hire v 3 4 ! @ ~ + 3 2 02409412 02460619 02208537 -hire_out v 1 1 @ 1 0 02209499 -hiss v 4 2 @ + 4 1 01053771 02069014 01054186 00862225 -hit v 17 6 ! @ ~ * $ + 17 10 01405044 01236164 01400044 02020590 01209135 01137138 02206462 01111816 02108791 01123887 02482425 02104161 02006834 01209426 01157421 01152396 00781903 -hit_home v 1 1 @ 1 0 01769220 -hit_it_up v 1 1 @ 1 1 01190277 -hit_the_books v 1 3 @ ~ * 1 0 00607114 -hit_the_ceiling v 1 1 @ 1 0 01795428 -hit_the_deck v 1 1 @ 1 1 01833717 -hit_the_dirt v 1 1 @ 1 1 01833717 -hit_the_hay v 1 1 ~ 1 0 00017865 -hit_the_jackpot v 1 1 @ 1 0 02524739 -hit_the_roof v 1 1 @ 1 0 01795428 -hit_the_sack v 1 1 ~ 1 0 00017865 -hitch v 5 5 ! @ ~ $ + 5 3 01327816 01917244 01884383 01956955 01614774 -hitch_up v 1 1 @ 1 1 01593134 -hitchhike v 1 2 @ + 1 0 01956955 -hive v 3 3 @ ^ + 3 0 02306087 02023851 01381244 -hive_away v 1 2 @ ~ 1 0 02281093 -hive_off v 2 1 @ 2 0 02468465 02312014 -hive_up v 1 1 @ 1 0 02305856 -hoard v 2 3 @ ~ + 2 0 02305856 02304982 -hoax v 1 2 @ + 1 0 02577586 -hob v 1 2 @ + 1 0 01403447 -hobble v 3 2 @ + 3 2 01917244 02452240 01289633 -hobnail v 1 2 @ + 1 0 02332788 -hobnob v 1 1 @ 1 0 02390169 -hock v 2 3 @ + ; 2 1 02347220 00092204 -hoe v 1 4 @ * + ; 1 0 01742556 -hog v 1 2 @ + 1 1 02304862 -hog-tie v 1 1 @ 1 0 01287929 -hoist v 3 3 @ ~ + 3 1 01455184 01611359 01455754 -hold v 36 7 ! @ ~ * ^ $ + 36 23 02681795 01216670 01733477 02203362 00693780 01773130 01301410 02283324 02302220 01217043 02700867 02732798 02683489 01601234 02648502 00683771 02746275 02701210 02498320 01129876 00885217 00736586 00607000 02706816 02676789 02643574 02510337 02450989 02441897 01859586 01334744 01205153 01151753 00822367 00805376 00004492 -hold_back v 6 2 @ ~ 6 2 01131473 02422663 02726044 02641463 02283324 02146790 -hold_close v 1 2 @ ~ 1 0 01220303 -hold_dear v 1 2 @ ~ 1 0 01776214 -hold_down v 2 2 @ + 2 1 02283608 00235763 -hold_fast v 1 4 @ ~ $ + 1 0 01356750 -hold_firm v 1 2 @ ~ 1 0 00819163 -hold_forth v 1 1 @ 1 0 00814621 -hold_in v 3 2 @ ~ 3 2 02711114 02510337 02146790 -hold_off v 2 2 @ ~ 2 1 01117325 02641463 -hold_on v 5 5 @ ~ * $ ; 5 4 01216004 00362610 00350461 00790509 02202384 -hold_one's_own v 2 1 @ 2 0 02740859 02433991 -hold_open v 1 2 @ $ 1 0 02283716 -hold_out v 5 5 @ ~ * $ + 5 4 00027705 01116585 02705132 02641741 02618149 -hold_over v 5 4 @ ~ * + 5 2 01781387 02202802 02682424 02643280 02642814 -hold_still_for v 1 1 @ 1 1 00669099 -hold_sway v 1 1 @ 1 1 02442106 -hold_the_line v 2 3 @ * ; 2 0 02319946 00790509 -hold_tight v 1 2 @ ~ 1 0 01220303 -hold_up v 7 6 @ ~ * $ + ; 7 5 01217043 02141559 00459776 02277448 02618149 02706816 02618688 -hold_water v 1 1 @ 1 0 02618688 -hole v 2 3 @ + ; 2 0 01408153 01282023 -hole_out v 1 2 @ ; 1 1 01408153 -hole_up v 3 2 @ ; 3 0 02146525 01113264 00015946 -holiday v 1 3 @ ~ + 1 0 02708707 -holler v 3 4 @ ~ $ + 3 3 00915423 00913065 00910973 -holler_out v 1 1 @ 1 1 00915423 -hollo v 3 4 @ ~ $ + 3 0 00913885 00913795 00913065 -hollow v 2 3 @ ~ + 2 0 01310660 01282545 -hollow_out v 1 2 @ ~ 1 0 01282545 -holystone v 1 2 @ + 1 0 01251515 -home v 2 2 @ + 2 0 02459633 02005347 -home-school v 1 1 @ 1 0 02388215 -home_in v 1 1 @ 1 0 01153007 -homer v 1 2 @ + 1 0 01101218 -homestead v 1 2 @ + 1 0 00415231 -homogenise v 3 4 ! @ $ + 3 0 00457569 00457327 00457100 -homogenize v 3 4 ! @ $ + 3 1 00457100 00457569 00457327 -homologise v 1 1 @ 1 0 00417482 -homologize v 2 2 @ + 2 0 02699783 00417482 -hone v 2 3 @ ~ + 2 0 01247181 00473572 -honey v 1 2 @ + 1 0 02195852 -honeycomb v 3 2 @ + 3 0 01752162 01229809 00533773 -honeymoon v 1 2 @ + 1 1 02708923 -honk v 4 3 @ ~ + 4 0 02183175 01053495 01053339 00076400 -honor v 3 4 ! @ ~ + 3 2 02546075 02457233 02237631 -honour v 3 3 @ ~ + 3 1 02546075 02457233 02237631 -hood v 1 2 @ + 1 0 01337092 -hoodoo v 1 2 @ + 1 0 02726717 -hoodwink v 2 1 @ 2 0 02578235 00839194 -hoof v 2 3 @ + ; 2 0 01906322 01709781 -hoof_it v 1 2 @ ; 1 0 01906322 -hook v 12 8 ! @ ~ * ^ $ + ; 12 4 01365549 02319050 01672490 01409177 02322230 02276866 01396790 01365709 01165290 01080883 00783042 00781652 -hook_on v 1 1 @ 1 0 00602112 -hook_up v 1 2 @ + 1 1 01366426 -hook_up_with v 1 3 @ ~ $ 1 0 02488834 -hoop v 1 2 @ + 1 0 01303123 -hoot v 2 3 @ ~ + 2 1 01042725 01053221 -hoover v 1 2 @ + 1 0 01244853 -hop v 6 4 @ ^ $ + 6 3 01966861 02095211 01840736 02095060 02094922 02094788 -hop-skip v 1 1 @ 1 1 01966861 -hop_on v 1 3 ! @ ~ 1 0 01923414 -hop_out v 1 2 ! @ 1 0 01923732 -hop_up v 1 1 @ 1 0 00170997 -hope v 3 3 ! @ + 3 3 01826723 01811441 00706047 -hopple v 1 1 @ 1 0 01289633 -horn v 1 2 @ + 1 0 01445027 -horn_in v 1 1 @ 1 0 02169119 -hornswoggle v 1 2 @ ~ 1 0 02572119 -horrify v 1 3 @ ~ + 1 0 01782650 -horripilate v 2 3 @ $ + 2 0 02116777 02116568 -horse v 1 3 @ ~ + 1 0 01184058 -horse-race v 1 2 @ ~ 1 0 01086965 -horse-trade v 1 2 @ + 1 0 00762889 -horse_around v 1 1 @ 1 0 00854150 -horseshoe v 1 1 @ 1 0 02340247 -horsewhip v 1 2 @ + 1 0 01398772 -hose v 1 2 @ + 1 0 00228521 -hose_down v 1 1 @ 1 0 00228521 -hospitalise v 1 2 @ + 1 0 02348927 -hospitalize v 1 2 @ + 1 0 02348927 -host v 1 3 @ ~ + 1 0 01194418 -hot-dog v 1 1 @ 1 0 01938837 -hot-wire v 1 1 @ 1 0 01858167 -hot-work v 1 1 @ 1 0 01668958 -hot_up v 3 2 @ ~ 3 0 00372665 00227667 00170997 -hotfoot v 1 2 @ ~ 1 0 02058994 -hound v 1 3 @ ~ + 1 0 02003601 -house v 2 3 @ ~ + 2 2 02701828 02459173 -house-train v 1 1 @ 1 0 00604225 -housebreak v 1 1 @ 1 0 00604225 -houseclean v 1 4 @ ~ $ + 1 0 01533442 -housekeep v 1 2 @ + 1 0 02683316 -hover v 5 4 @ ~ * $ 5 4 02706046 02640906 01943448 01944252 02744061 -howl v 4 3 @ ~ + 4 1 01046932 01047381 01046059 00029836 -huckster v 2 3 @ ~ + 2 1 02302817 02259547 -huddle v 2 2 @ + 2 2 02027226 02063988 -huddle_together v 1 1 @ 1 1 02027226 -hue v 2 3 @ ~ + 2 0 00288017 00287735 -huff v 2 3 @ * + 2 0 01200245 00006802 -hug v 2 3 @ ~ + 2 2 01424456 01396524 -hugger_mugger v 1 2 @ + 1 0 02518043 -hulk v 1 2 @ + 1 1 02696503 -hull v 1 2 @ + 1 0 00180076 -hum v 4 3 @ ~ + 4 1 01055829 02706605 02187041 01056214 -humanise v 1 2 @ + 1 0 01801498 -humanize v 1 3 ! @ + 1 1 01801498 -humble v 2 2 @ ~ 2 2 01801697 01799794 -humbug v 1 2 @ + 1 0 02593001 -humidify v 1 4 ! @ ~ + 1 0 00215800 -humify v 1 2 @ + 1 0 00116079 -humiliate v 1 3 @ ~ + 1 1 01799794 -humor v 1 2 @ + 1 1 00859604 -humour v 1 2 @ + 1 0 00859604 -hump v 2 5 @ ~ * $ + 2 0 02035559 01426397 -hunch v 1 3 @ * + 1 1 02035559 -hunch_forward v 1 2 @ * 1 0 02035559 -hunch_over v 1 2 @ * 1 1 02035559 -hunger v 3 2 @ + 3 0 02121958 01188485 01188144 -hunker v 1 1 @ 1 0 01545314 -hunker_down v 3 1 @ 3 1 01545314 02146377 00819335 -hunt v 7 5 @ ~ $ + ; 7 2 01143838 02003601 02056691 02034147 01878376 01316401 01144657 -hunt_down v 1 3 @ ~ $ 1 1 01143838 -hurdle v 1 3 @ + ; 1 1 01967205 -hurl v 3 3 @ ~ + 3 2 01507143 02062212 01067664 -hurrah v 1 1 @ 1 0 00913982 -hurry v 3 4 @ ~ > + 3 3 02055649 00459498 00459296 -hurt v 7 4 @ ~ > + 7 5 02122164 00064643 01792567 00260470 01793177 02121511 00065070 -hurtle v 3 2 @ ~ 3 2 02092183 02062212 01507143 -husband v 1 2 @ ~ 1 0 02269143 -hush v 5 7 @ ~ > ^ $ + ; 5 2 00461354 00461493 02190188 00461234 00461057 -hush_up v 2 4 @ ~ > $ 2 0 02148109 00461493 -husk v 1 2 @ + 1 0 00181258 -hustle v 5 3 @ * + 5 2 02096312 02058191 02322596 02210496 00767019 -hybridise v 1 3 @ ~ + 1 0 01429953 -hybridize v 1 3 @ ~ + 1 0 01429953 -hydrate v 3 5 ! @ ~ $ + 3 0 00214407 00214268 00214020 -hydrogen-bomb v 1 1 @ 1 0 01133096 -hydrogenate v 1 3 ! @ + 1 0 00308534 -hydrolise v 1 4 @ ~ > + 1 0 00564300 -hydrolize v 1 4 @ ~ > + 1 0 00564300 -hydrolyse v 1 1 @ 1 0 00564151 -hydrolyze v 1 2 @ + 1 0 00564151 -hydroplane v 1 3 @ * + 1 0 01943153 -hygienise v 1 1 @ 1 0 01245052 -hygienize v 1 1 @ 1 0 01245052 -hymn v 2 3 @ + ; 2 0 01731718 00861423 -hype v 1 1 @ 1 0 00954908 -hype_up v 1 1 @ 1 0 01763482 -hyperbolise v 1 2 @ ~ 1 0 00839834 -hyperbolize v 1 3 @ ~ + 1 0 00839834 -hyperextend v 1 2 @ + 1 0 00028010 -hypertrophy v 1 2 @ + 1 0 00094153 -hyperventilate v 2 3 @ $ + 2 0 00003133 00002942 -hyphen v 1 2 @ + 1 0 01700326 -hyphenate v 1 2 @ + 1 0 01700326 -hypnotise v 1 3 @ ~ + 1 0 00020671 -hypnotize v 1 3 @ ~ + 1 1 00020671 -hypophysectomise v 1 3 @ + ; 1 0 00181005 -hypophysectomize v 1 3 @ + ; 1 0 00181005 -hypostatise v 1 2 @ + 1 0 00692718 -hypostatize v 1 2 @ + 1 0 00692718 -hypothecate v 2 3 @ ~ + 2 0 01062050 00633443 -hypothesise v 1 2 @ ~ 1 0 00633443 -hypothesize v 1 3 @ ~ + 1 1 00633443 -ice v 3 3 @ + ; 3 0 01517175 00375579 00370921 -ice_over v 1 2 @ * 1 0 02758581 -ice_skate v 1 3 @ + ; 1 0 01937222 -ice_up v 1 2 @ * 1 0 02758581 -idealise v 2 3 @ ~ + 2 0 00692907 00624967 -idealize v 2 3 @ ~ + 2 0 00692907 00624967 -ideate v 1 3 @ ~ + 1 0 01636397 -identify v 6 4 @ ~ * + 6 6 00618878 01026095 00691944 00714531 00652346 00618451 -idle v 2 3 ! ~ + 2 2 01526483 02417504 -idolise v 1 3 @ ~ + 1 0 01778017 -idolize v 1 3 @ ~ + 1 1 01778017 -ignite v 3 6 ! @ ~ > $ + 3 3 02759614 02760622 01761120 -ignore v 5 4 ! @ ~ + 5 4 01059564 00800930 02119241 00616857 00595505 -ill-treat v 1 3 @ ~ + 1 0 02516594 -ill-use v 1 3 @ ~ + 1 0 02516594 -illegalise v 1 2 @ ~ 1 0 02480923 -illegalize v 1 2 @ ~ 1 0 02480923 -illume v 1 2 @ ~ 1 0 00291873 -illuminate v 3 5 @ ~ * + ; 3 2 00291873 00621058 01683758 -illumine v 1 2 @ ~ 1 1 00291873 -illustrate v 3 3 @ + ; 3 3 01021128 01687401 01668421 -image v 2 3 @ $ + 2 0 02151603 01635432 -imagine v 2 3 @ ~ + 2 2 01636397 00631737 -imbed v 1 2 @ ~ 1 1 01528821 -imbibe v 4 3 @ ~ + 4 1 01539063 01540042 01170052 00602510 -imbricate v 2 3 @ $ + 2 0 02689146 02689008 -imbrue v 1 1 @ 1 0 00498163 -imbue v 3 2 @ ~ 3 0 01229071 00456151 00287735 -imitate v 3 3 @ ~ + 3 2 01742886 02674879 01694263 -immaterialise v 1 2 @ ~ 1 0 00547802 -immaterialize v 1 2 @ ~ 1 0 00547802 -immerse v 4 5 @ ~ > $ + 4 2 01577635 00601043 01582409 00601378 -immigrate v 3 4 ! @ * + 3 0 00415967 00413704 00413432 -immingle v 1 2 @ ~ 1 0 01462468 -immix v 1 2 @ ~ 1 0 00394813 -immobilise v 6 3 @ ~ + 6 0 02214864 01207149 01121508 00269889 00269423 00269140 -immobilize v 6 3 @ ~ + 6 0 02214864 01207149 01121508 00269889 00269423 00269140 -immolate v 1 2 @ + 1 0 02325736 -immortalise v 2 2 @ ~ 2 0 00612042 00553208 -immortalize v 2 2 @ ~ 2 0 00612042 00553208 -immunise v 2 2 @ ; 2 0 01128778 00086835 -immunize v 2 3 @ + ; 2 0 01128778 00086835 -immure v 1 3 @ + ; 1 0 02494356 -impact v 2 3 @ ~ + 2 0 01343482 00137313 -impair v 2 3 @ ~ + 2 2 00262881 00477941 -impale v 2 4 @ ~ * + 2 1 01444326 01572003 -impanel v 2 1 @ 2 0 02472703 00625963 -impart v 3 4 @ ~ $ + 3 2 02296153 02324478 02079933 -impeach v 3 3 @ ~ + 3 0 00867843 00844744 00842989 -impede v 2 3 @ ~ + 2 2 02451370 01476483 -impel v 2 3 @ ~ + 2 1 01650425 01511706 -impend v 1 2 @ + 1 0 02726884 -imperil v 1 1 @ 1 1 02697120 -impersonate v 3 4 @ ~ + ; 3 1 01723690 00849788 00837288 -impinge v 2 2 @ + 2 1 02569790 01993352 -impinge_on v 1 3 @ ~ $ 1 1 01236164 -implant v 3 3 @ ~ + 3 1 01528821 01290730 00734790 -implement v 3 4 @ ~ $ + 3 3 02408965 02560164 00486018 -implicate v 2 2 @ + 2 0 02677332 02634808 -implode v 1 3 ! @ + 1 0 00305846 -implore v 1 2 @ ~ 1 1 00759269 -imply v 5 3 @ ~ + 5 3 00929839 00930599 02635189 02636921 02636132 -import v 3 5 ! @ ~ + ; 3 1 02346136 02232722 00932636 -importune v 1 2 @ ~ 1 0 00777931 -impose v 3 3 @ ~ + 3 3 02560424 00748282 02306462 -impound v 2 4 @ ~ $ + 2 0 02273293 01302183 -impoverish v 2 4 ! @ ~ + 2 0 02317661 00172732 -imprecate v 2 3 @ $ + 2 1 00865958 00865387 -impregnate v 4 4 @ ~ $ + 4 0 00498299 00497705 00053341 00053159 -impress v 7 7 @ ~ * > $ + ; 7 4 01767949 01769902 00728393 01531742 01747945 01471547 00283805 -imprint v 2 4 @ ~ * + 2 1 02430922 01531742 -imprison v 2 3 @ + ; 2 2 02494356 02495817 -improve v 2 5 @ ~ > $ + 2 2 00205885 00205046 -improvise v 2 2 @ + 2 1 01728840 02587895 -improvize v 1 1 @ 1 0 01728840 -impugn v 1 1 @ 1 0 00868009 -impulse-buy v 1 2 @ ; 1 0 02353984 -impute v 2 4 @ ~ $ + 2 1 00726300 00726784 -inactivate v 2 4 ! @ ~ + 2 0 01098206 00191517 -inaugurate v 3 3 @ ~ + 3 1 02395782 02425337 00349592 -incandesce v 2 2 @ + 2 0 00572186 00572021 -incapacitate v 2 2 @ ~ 2 1 00512186 00091968 -incarcerate v 1 3 @ + ; 1 0 02494356 -incarnadine v 1 1 @ 1 0 00285506 -incarnate v 2 3 ! @ + 2 1 01645157 02698443 -incase v 1 3 @ ~ + 1 0 01486312 -incense v 2 2 @ + 2 0 02126686 01786906 -inch v 1 2 @ + 1 1 02072501 -incinerate v 2 3 @ $ + 2 0 00378361 00378042 -incise v 1 3 @ ~ + 1 1 01555742 -incite v 3 5 @ ~ > $ + 3 2 01649999 00851239 01230710 -incline v 6 3 @ ~ + 6 1 02719399 02171322 02063018 02037090 01772172 00680841 -inclose v 2 3 @ ~ + 2 1 01587062 00187526 -include v 4 7 ! @ ~ * $ + ; 4 4 02632940 00684838 00183879 02449847 -incommode v 1 2 @ ~ 1 0 02507736 -inconvenience v 1 3 @ ~ + 1 0 02507736 -inconvenience_oneself v 1 1 @ 1 0 02507464 -incorporate v 4 4 @ ~ + ; 4 2 00466651 02629535 02448079 01541000 -increase v 2 4 ! @ ~ + 2 2 00156601 00153263 -incriminate v 2 3 @ ~ + 2 0 02636921 00842989 -incrust v 3 3 @ ~ + 3 0 01517355 01261628 00255079 -incubate v 2 4 @ * $ + 2 2 00254150 00060185 -inculcate v 1 3 @ ~ + 1 1 00606600 -inculpate v 1 2 @ + 1 0 02636921 -incur v 2 4 @ ~ $ + 2 1 02721031 00522751 -incurvate v 2 2 @ + 2 0 02036339 01280645 -indemnify v 2 3 @ ~ + 2 0 02251247 02250625 -indent v 5 4 @ ~ * + 5 0 01745377 01279833 01279631 01277173 00885569 -indenture v 1 2 @ + 1 0 00885569 -index v 3 4 @ ~ + ; 3 1 02472817 02354112 00702434 -indicate v 5 4 ! @ ~ + 5 5 00921300 00923793 00928015 00772640 00928232 -indict v 1 2 @ + 1 1 02521284 -indispose v 3 4 ! @ ~ + 3 0 00681125 00301338 00064889 -indite v 1 5 @ ~ * $ ; 1 0 01698271 -individualise v 2 2 @ + 2 0 00651759 00388065 -individualize v 2 2 @ + 2 0 00651759 00388065 -individuate v 2 2 @ + 2 0 02698178 00141362 -indoctrinate v 1 3 @ ~ + 1 1 00605086 -indorse v 4 4 @ ~ $ + 4 1 02453889 02556817 02447793 00997794 -induce v 5 4 @ ~ + ; 5 4 01644050 00770437 01644522 00636441 01737417 -induct v 5 3 @ + ; 5 1 02384275 02390470 02384554 01737417 00829761 -indue v 1 2 @ ~ 1 0 02474239 -indulge v 4 3 @ ~ + 4 3 02511276 01182293 01191645 02570267 -indurate v 4 5 @ ~ > $ + 4 0 00576384 00443384 00443116 00272910 -industrialise v 2 2 @ + 2 0 00576979 00500356 -industrialize v 2 2 @ + 2 0 00576979 00500356 -indwell v 1 2 @ + 1 0 02617196 -inebriate v 3 3 @ ~ + 3 0 01812324 01190494 01190277 -infatuate v 1 2 @ + 1 0 01760677 -infect v 4 4 ! @ ~ + 4 2 00089750 00088713 02580237 00605498 -infer v 5 4 @ ~ + ; 5 2 00636574 01022420 00944924 00636061 00593522 -infest v 3 2 @ + 3 1 02020413 02654686 02654585 -infiltrate v 4 2 @ + 4 2 01913707 02435634 01913532 01913363 -infix v 2 3 @ ~ + 2 0 01421622 01298545 -inflame v 5 4 @ ~ $ + 5 1 00063724 02761685 02761372 01761120 00063557 -inflate v 5 4 ! @ ~ + 5 2 00264386 00264034 00562882 00562523 00256117 -inflect v 2 3 @ ~ + 2 1 00982514 00982293 -inflict v 1 3 @ ~ + 1 1 00748282 -influence v 3 3 @ ~ + 3 2 02536557 00701040 00776523 -inform v 3 3 @ ~ + 3 3 00831651 00522613 00833199 -infract v 1 3 @ ~ + 1 0 02566528 -infringe v 2 2 @ + 2 0 02567147 01993352 -infuriate v 1 2 @ + 1 1 01786906 -infuscate v 1 1 @ 1 0 00311865 -infuse v 5 5 @ ~ $ + ; 5 0 00606600 00498299 00327654 00327362 00086598 -ingeminate v 1 2 @ ~ 1 0 00958334 -ingest v 2 3 @ ~ + 2 2 01156834 00602255 -ingraft v 1 1 @ 1 0 01530678 -ingrain v 2 1 @ 2 0 01530898 00728393 -ingratiate v 1 3 @ ~ + 1 0 01804595 -ingurgitate v 1 1 @ 1 0 01193099 -inhabit v 3 3 @ ~ + 3 2 02649830 02654416 02755773 -inhale v 2 4 ! @ ~ + 2 0 01198779 00005041 -inhere v 1 2 @ + 1 0 02653564 -inhere_in v 1 2 @ ~ 1 0 02705535 -inherit v 3 3 @ $ + 3 1 02315525 02315938 02315759 -inhibit v 4 4 @ ~ + ; 4 2 00462092 00462689 02451679 02423762 -inhume v 1 2 @ + 1 0 02456493 -initial v 1 3 @ * + 1 0 00997307 -initialise v 2 2 @ + 2 0 00700896 00563552 -initialize v 2 2 @ + 2 0 00700896 00563552 -initiate v 5 3 @ ~ + 5 3 01628449 01641914 02390470 00964911 00539546 -inject v 6 5 @ ~ $ + ; 6 2 00086320 00187268 01585523 01199213 01195201 00914769 -injure v 3 3 @ ~ + 3 1 00069879 01793177 00260470 -ink v 3 3 @ ~ + 3 0 00997020 00509100 00453680 -inlay v 1 4 @ ~ + ; 1 1 01682039 -inmarry v 1 2 @ + 1 0 02489183 -innervate v 2 3 @ + ; 2 0 02226706 00503569 -innovate v 1 3 @ ~ + 1 1 01642437 -inoculate v 5 4 @ ~ + ; 5 0 00832617 00188252 00086835 00056093 00053517 -inosculate v 2 3 @ $ + 2 0 01292366 01292169 -input v 1 2 @ ; 1 0 01422539 -inquire v 3 4 @ ~ $ + 3 2 00784342 00729378 00785962 -inscribe v 7 5 @ ~ $ + ; 7 1 01321895 02471327 01583344 01001008 00997133 00994076 00887325 -inseminate v 2 5 @ ~ $ + ; 2 0 01501347 00052548 -insert v 4 3 @ ~ + 4 3 01421622 00187526 01389776 01025602 -inset v 1 2 @ + 1 0 00188466 -insinuate v 2 2 @ + 2 0 02078855 00927711 -insist v 3 3 @ ~ + 3 3 00818974 00777931 00717045 -insolate v 1 2 @ + 1 0 02112546 -inspan v 1 3 ! @ ; 1 0 01491186 -inspect v 3 3 @ ~ + 3 2 02165543 01844048 00697062 -inspire v 6 3 @ ~ + 6 4 01812720 01646682 00771961 00858781 00605310 00005041 -inspirit v 1 1 @ 1 0 00193130 -inspissate v 3 4 @ > $ + 3 0 00431610 00431327 00431117 -instal v 3 3 @ ~ + 3 1 01569566 02384041 01570108 -install v 3 3 @ ~ + 3 2 01569566 02384041 01570108 -instance v 1 2 @ + 1 0 01021128 -instantiate v 2 3 @ $ + 2 0 02155799 02155493 -instigate v 2 4 @ ~ > + 2 1 00851239 00771961 -instil v 1 2 @ + 1 0 01422662 -instill v 5 3 @ ~ + 5 0 02325042 01422662 00728393 00606600 00498299 -institute v 2 3 @ ~ + 2 2 01647229 01618547 -institutionalise v 1 3 @ ~ + 1 0 02348568 -institutionalize v 1 3 @ ~ + 1 1 02348568 -instruct v 3 4 @ ~ > + 3 2 00829107 00749963 00831074 -instrument v 3 3 @ + ; 3 0 02340543 01707925 00991151 -instrumentate v 1 3 @ + ; 1 0 01707925 -insufflate v 3 3 @ $ + 3 0 02309801 00079629 00007193 -insulate v 2 3 @ ~ + 2 2 00495038 00494269 -insult v 1 2 @ + 1 1 00848420 -insure v 4 4 @ ~ $ + 4 4 00662589 00890590 00891216 02251065 -integrate v 4 5 ! @ ~ + ; 4 3 00466651 02481900 00467451 00642980 -intend v 4 4 @ ~ $ + 4 3 00708538 00709379 00955148 00931852 -intensify v 4 5 @ ~ > + ; 4 3 00290302 00227165 00226566 00574735 -inter v 1 2 @ + 1 1 02456493 -interact v 1 3 @ ~ + 1 1 02376958 -interbreed v 1 3 @ ~ + 1 0 01429953 -intercalate v 1 1 @ 1 0 00189927 -intercede v 1 2 @ + 1 1 00760956 -intercept v 2 3 @ ~ + 2 1 01440378 02188848 -interchange v 4 3 @ ~ + 4 0 02257767 02257370 00121926 00121678 -intercommunicate v 2 3 @ ~ + 2 0 02622812 00740577 -interconnect v 2 3 @ ~ + 2 1 02622969 01355646 -interdepend v 1 2 @ + 1 0 02622033 -interdict v 2 3 @ ~ + 2 0 01621418 00795863 -interest v 3 4 ! @ ~ + 3 3 01821423 02678438 02678663 -interfere v 2 3 @ ~ + 2 2 02451912 02538765 -interiorise v 1 2 @ ; 1 0 00729781 -interiorize v 1 3 @ + ; 1 0 00729781 -interject v 1 2 @ + 1 1 00914769 -interlace v 2 3 @ ~ $ 2 1 01517662 01606736 -interlard v 1 2 @ ~ 1 0 00189189 -interleave v 3 1 @ 3 0 02335262 01376818 00189364 -interlink v 2 2 @ ~ 2 0 02622969 01355646 -interlock v 3 2 @ + 3 1 00405079 01606736 01606018 -interlope v 1 2 @ + 1 0 02591736 -interlude v 1 3 @ + ; 1 0 01713796 -intermarry v 1 2 @ + 1 0 02490090 -intermediate v 1 2 @ + 1 0 00760956 -intermingle v 1 2 @ ~ 1 0 01462468 -intermit v 1 3 @ ~ + 1 0 00779061 -intermix v 1 3 @ ~ + 1 0 01462468 -intern v 2 2 @ + 2 0 02495387 02446819 -internalise v 1 3 @ + ; 1 0 00729781 -internalize v 1 3 @ + ; 1 1 00729781 -internationalise v 2 2 @ + 2 0 02441686 00409119 -internationalize v 2 2 @ + 2 0 02441686 00409119 -interpellate v 1 2 @ + 1 0 00785329 -interpenetrate v 2 3 @ ~ + 2 1 01227235 01229071 -interpolate v 2 3 @ + ; 2 0 00642644 00201407 -interpose v 4 3 @ ~ + 4 3 02098964 02079051 00914769 02538765 -interpret v 6 5 @ ~ $ + ; 6 6 00623151 00938247 01732172 01686132 00959827 00593852 -interrelate v 2 4 @ ~ $ + 2 0 02724417 00713818 -interrogate v 2 3 @ + ; 2 0 00973530 00788184 -interrupt v 4 3 @ ~ + 4 3 00778275 00520019 00520357 00364064 -intersect v 1 3 @ ~ + 1 1 02023396 -intersperse v 2 3 @ ~ + 2 0 01376620 00189189 -interstratify v 1 2 @ ; 1 0 00506827 -intertwine v 3 5 @ ~ * $ ; 3 1 01517662 01674544 01673472 -intervene v 3 3 @ ~ + 3 1 02538765 02691489 00340846 -interview v 3 3 @ * + 3 3 00808855 00809248 00809453 -interweave v 1 2 @ ~ 1 1 01518924 -intimate v 2 3 @ ~ + 2 2 00927711 00930806 -intimidate v 2 4 @ ~ * + 2 2 01781180 01819554 -intonate v 2 3 @ ~ + 2 0 01050313 01049737 -intone v 3 3 @ ~ + 3 2 01066775 01049737 01050313 -intoxicate v 3 4 @ ~ > + 3 0 01811736 01190494 00088532 -intransitivise v 1 1 @ 1 0 00420909 -intransitivize v 1 1 @ 1 0 00420909 -intrench v 1 1 @ 1 0 01531025 -intrigue v 2 3 @ ~ + 2 1 02678839 00707956 -introduce v 10 4 @ ~ $ + 10 8 00901103 01642437 00187526 02078591 01618693 01421622 01065115 00706693 00901799 00349592 -introject v 1 2 @ + 1 0 00554894 -intromit v 1 4 @ ~ $ + 1 0 02502536 -introspect v 1 2 @ + 1 0 00631591 -introvert v 2 3 @ ~ + 2 0 01506812 00533897 -intrude v 4 4 @ ~ ^ + 4 2 02018524 02571251 02169119 00747757 -intrude_on v 1 2 @ ~ 1 0 02019716 -intrust v 1 2 @ ~ 1 1 02349212 -intubate v 1 2 @ + 1 0 01422172 -intuit v 1 2 @ + 1 0 00590761 -intumesce v 2 3 @ ~ + 2 0 01990946 00256507 -intussuscept v 1 2 @ + 1 0 01507006 -inunct v 1 2 @ + 1 0 00085626 -inundate v 2 2 @ + 2 0 01524523 00217700 -inure v 1 2 @ ~ 1 1 00272910 -invade v 4 3 @ ~ + 4 2 01126360 02019716 02654686 01227488 -invaginate v 2 4 @ ~ + ; 2 0 01581789 01506812 -invalid v 2 3 @ ~ + 2 0 02404784 00091968 -invalidate v 4 4 ! @ ~ + 4 1 02478059 00800460 00667102 00448440 -inveigh v 2 1 @ 2 1 00911261 00910364 -inveigle v 1 2 @ ~ 1 0 00768778 -invent v 2 3 @ ~ + 2 2 01632411 01634424 -inventory v 1 2 @ + 1 0 02472495 -invert v 3 3 @ + ; 3 1 00387153 00386965 00386715 -invest v 5 4 ! @ ~ + 5 2 02271137 02474239 02386675 02386388 02384275 -investigate v 2 3 @ ~ + 2 2 00789138 00785962 -invigilate v 1 2 @ + 1 0 02593354 -invigorate v 4 3 @ ~ + 4 0 01812720 00442063 00192836 00028362 -invite v 8 5 @ ~ ^ $ + 8 7 01760143 02384686 01807529 00793580 02384940 01469770 01063695 01470225 -invite_out v 1 1 @ 1 0 02486693 -invoice v 1 2 @ + 1 0 02320903 -invoke v 3 4 @ ~ $ + 3 2 01629958 01024864 00755447 -involve v 7 4 @ ~ $ + 7 5 02677097 02677567 02636132 02627934 02633218 00600724 00401538 -inweave v 1 1 @ 1 0 01518449 -iodinate v 1 3 ! @ + 1 1 00520881 -iodise v 2 3 @ + ; 2 0 00184907 00080169 -iodize v 2 3 @ + ; 2 0 00184907 00080169 -ionate v 1 3 ! @ + 1 0 00521185 -ionise v 2 4 @ $ + ; 2 0 00267041 00266798 -ionize v 2 4 @ $ + ; 2 0 00267041 00266798 -iridesce v 1 3 @ ~ + 1 0 02733928 -irk v 1 1 @ 1 0 01786760 -iron v 1 4 @ ~ * + 1 1 01390833 -iron_out v 2 3 @ ~ * 2 1 00208055 01390833 -irradiate v 3 3 @ ~ + 3 0 00926932 00291757 00291444 -irrigate v 2 3 @ ~ + 2 1 00228236 00079951 -irritate v 3 6 ! @ ~ $ + ; 3 2 01787955 00063291 00503715 -irrupt v 3 3 @ ~ + 3 0 02018524 00307785 00157623 -islamise v 2 2 @ > 2 0 00386252 00385685 -islamize v 2 2 @ > 2 0 00386252 00385685 -island_hop v 1 1 @ 1 0 02095900 -isolate v 4 4 @ ~ + ; 4 3 00494269 00496770 00495808 00655378 -isomerise v 2 4 @ $ + ; 2 0 00575169 00574996 -isomerize v 2 4 @ $ + ; 2 0 00575169 00574996 -issue v 5 4 ! @ ~ + 5 5 00967625 02479323 01063049 00528990 01064799 -issue_forth v 1 0 1 0 02743921 -italicise v 1 2 @ + 1 0 01749017 -italicize v 1 2 @ + 1 1 01749017 -itch v 4 3 @ ~ + 4 2 02119874 02121188 02121423 01825761 -itemise v 2 3 @ ~ + 2 0 00946588 00946105 -itemize v 2 3 @ ~ + 2 1 00946105 00946588 -iterate v 2 4 @ ~ + ; 2 0 00958334 00343600 -itinerate v 1 2 @ + 1 0 02102247 -jab v 3 3 @ ~ + 3 2 01229976 01230555 01230350 -jabber v 1 2 @ + 1 1 01051956 -jack v 2 2 @ + 2 0 01219544 01145365 -jack_off v 1 4 @ ~ * $ 1 0 01430633 -jack_up v 1 1 @ 1 0 01219544 -jacket v 2 2 @ + 2 1 01334931 00048790 -jackknife v 1 3 @ + ; 1 0 01963459 -jacklight v 1 1 @ 1 0 01145365 -jackrabbit v 1 1 @ 1 0 02097676 -jactitate v 1 3 @ ~ + 1 0 01890792 -jade v 2 4 @ ~ > + 2 0 00076114 00075021 -jag v 1 3 @ ~ + 1 0 01255624 -jail v 1 3 @ + ; 1 1 02494356 -jam v 7 4 @ ~ $ + 7 4 02064131 01993668 01492944 01057034 01525177 01524298 01476483 -jampack v 1 2 @ $ 1 0 01524298 -jangle v 1 2 @ + 1 1 02172683 -japan v 1 3 @ + ; 1 0 01682946 -jar v 5 2 @ + 5 2 02667698 01864865 01865051 01769090 01497864 -jar_against v 1 1 @ 1 0 01240308 -jaundice v 2 2 @ + 2 0 00477107 00106723 -jaunt v 1 3 ~ > + 1 0 01843055 -jaw v 4 3 @ ~ + 4 2 01038666 01037498 01201089 00824767 -jawbone v 1 1 @ 1 0 01039162 -jaywalk v 1 2 @ + 1 0 01915253 -jazz v 2 5 @ ~ $ + ; 2 0 01725734 01426397 -jazz_around v 1 1 @ 1 0 01882689 -jazz_up v 1 1 @ 1 0 00192659 -jeer v 1 2 @ + 1 1 00850192 -jell v 1 1 @ 1 0 00442669 -jellify v 2 2 @ + 2 0 00507331 00507143 -jelly v 1 2 @ + 1 0 00507143 -jeopardise v 1 2 @ + 1 0 02697120 -jeopardize v 2 2 @ + 2 2 02697120 02545272 -jerk v 5 4 @ ~ $ + 5 3 01592072 01891817 00009631 01884383 01591158 -jerk_off v 1 5 @ ~ * $ + 1 0 01430633 -jest v 2 4 @ ~ ^ + 2 1 00853633 00105554 -jest_at v 1 2 @ ~ 1 0 00851933 -jet v 2 3 @ + ; 2 1 01516290 01942234 -jettison v 2 1 @ 2 0 02223136 01510082 -jewel v 1 2 @ + 1 0 01678685 -jib v 2 2 @ + 2 0 02583545 01946817 -jibe v 2 3 @ ~ $ 2 0 02657219 01946817 -jig v 1 2 @ + 1 1 01898032 -jiggle v 1 3 @ ~ + 1 0 01898282 -jilt v 1 2 @ + 1 1 00613248 -jimmy v 1 3 @ * + 1 1 01593254 -jingle v 1 2 @ + 1 1 02172683 -jingle-jangle v 1 1 @ 1 0 02172683 -jinx v 2 3 @ ~ + 2 0 00776988 00703184 -jitterbug v 1 2 @ + 1 0 01898181 -jive v 1 3 @ + ; 1 1 01708542 -job v 4 3 @ ~ + 4 0 02572913 02461063 02420789 02272090 -jockey v 3 2 @ + 3 1 01104624 01110143 01087074 -jog v 6 3 @ + ; 6 1 02684453 01987648 01928390 01901447 01231528 00794533 -joggle v 2 3 @ ~ + 2 1 01898282 01604586 -join v 5 5 ! @ ~ > + 5 5 02434976 01295275 02598765 01291069 02622234 -join_battle v 1 1 @ 1 0 01091160 -join_forces v 1 3 @ ~ $ 1 1 02416278 -joint v 4 3 @ + ; 4 0 02660147 02354287 01604696 01557426 -joke v 2 3 @ ~ + 2 2 00853633 00105554 -jollify v 1 3 @ ~ + 1 0 02491383 -jolly v 1 2 @ + 1 0 00855295 -jolly_along v 1 2 ~ > 1 0 00859325 -jolly_up v 1 2 ~ > 1 0 00859325 -jolt v 2 2 @ + 2 1 01864865 01762963 -josh v 1 1 @ 1 0 00855295 -jostle v 2 3 @ ~ + 2 1 01914453 01871680 -jot v 1 2 @ + 1 0 01006056 -jot_down v 1 1 @ 1 1 01006056 -jounce v 1 1 @ 1 0 01892608 -journey v 2 4 @ ~ $ + 2 1 01845720 01846916 -joust v 1 3 @ ~ + 1 0 01122736 -joy v 2 4 @ ~ > + 2 0 01813884 01813499 -joyride v 1 4 @ $ + ; 1 0 01956708 -jubilate v 2 3 @ ~ + 2 0 02491262 00857923 -judder v 1 2 @ ; 1 0 01891638 -judge v 5 3 @ ~ + 5 4 00672277 00670261 00672433 00971650 02501278 -jug v 2 3 @ + ; 2 0 02494356 00324071 -juggle v 5 2 @ + 5 0 02578235 02577391 02438383 01604814 01602527 -juice_up v 1 1 @ 1 0 00192659 -julienne v 1 1 @ 1 0 01257049 -jumble v 3 4 @ ~ $ + 3 1 02739861 01657254 01472807 -jump v 15 6 @ ~ * > ^ + 15 7 01963942 01910373 01121178 00155727 02674564 01082937 00155547 02105082 02011865 01968275 01965156 01859050 00616498 00560391 00121506 -jump-start v 2 1 @ 2 0 01859050 00349223 -jump_for_joy v 1 2 @ ~ 1 0 01813668 -jump_off v 2 1 @ 2 1 00347104 02105082 -jump_on v 1 2 @ ~ 1 1 01923414 -jump_out v 1 1 @ 1 1 02674564 -jumpstart v 2 1 @ 2 0 01859050 00349223 -junk v 1 2 @ + 1 1 02223238 -junket v 3 4 @ ~ $ + 3 0 01843364 01186208 01185981 -junketeer v 1 1 @ 1 0 01843364 -justify v 5 4 @ ~ + ; 5 3 00896803 00896141 00894738 00902424 00489699 -jut v 1 2 ~ + 1 0 02713372 -jut_out v 1 1 ~ 1 1 02713372 -juxtapose v 1 2 @ + 1 1 01501960 -kayak v 1 3 @ + ; 1 0 01947735 -kayo v 1 1 @ 1 0 01414088 -keel v 1 1 @ 1 0 01924882 -keel_over v 1 1 @ 1 1 01976702 -keen v 1 3 @ * + 1 0 01802219 -keep v 22 6 ! @ ~ ^ $ + 22 15 02681795 02684924 02202384 02450505 02578872 00732552 02202928 01065877 02651853 02410175 01184625 02734800 02578510 02422663 02733122 02652016 02283716 02204094 02203844 02203168 01302019 00212414 -keep_abreast v 1 1 $ 1 1 00118764 -keep_an_eye_on v 1 3 @ ~ $ 1 1 02455407 -keep_apart v 1 1 @ 1 0 00495808 -keep_away v 1 1 @ 1 1 02451113 -keep_back v 3 2 @ ~ 3 0 02422663 02283324 02213690 -keep_company v 1 1 @ 1 1 02716767 -keep_down v 3 2 ! @ 3 1 00235918 02424128 00077369 -keep_going v 3 2 @ $ 3 0 02684254 02623346 00908621 -keep_guard v 1 1 @ 1 1 02455159 -keep_in v 1 1 @ 1 1 02496388 -keep_in_line v 1 2 @ ~ 1 0 01803936 -keep_mum v 1 0 1 0 01041061 -keep_note v 1 1 @ 1 1 00737193 -keep_off v 2 1 @ 2 0 01189823 00811720 -keep_on v 1 2 @ $ 1 0 02410175 -keep_one's_distance v 1 1 @ 1 0 02655698 -keep_one's_eyes_off v 1 1 @ 1 0 02655698 -keep_one's_eyes_open v 1 2 @ ; 1 0 02167210 -keep_one's_eyes_peeled v 1 2 @ ; 1 0 02167210 -keep_one's_eyes_skinned v 1 2 @ ; 1 0 02167210 -keep_one's_hands_off v 1 1 @ 1 0 02655698 -keep_one's_mouth_shut v 1 0 1 0 00937619 -keep_one's_nose_to_the_grindstone v 1 1 @ 1 0 02415573 -keep_one's_shoulder_to_the_wheel v 1 1 @ 1 0 02415573 -keep_open v 1 2 @ $ 1 0 02283716 -keep_out v 2 2 @ ~ 2 1 02449340 00118435 -keep_pace v 1 1 @ 1 0 01114143 -keep_quiet v 1 1 ! 1 0 00937619 -keep_step v 1 1 @ 1 0 01114143 -keep_tabs_on v 1 1 @ 1 0 02455861 -keep_to_oneself v 2 1 @ 2 1 02371352 02214042 -keep_track v 1 2 ! @ 1 0 00595134 -keep_up v 5 5 @ ~ * > $ 5 4 01113975 02679530 02280132 00118764 00020449 -kennel v 1 2 @ + 1 0 02459799 -keratinise v 2 3 @ $ + 2 0 00576860 00576684 -keratinize v 2 3 @ $ + 2 0 00576860 00576684 -kern v 2 4 ! @ + ; 2 0 02366105 02365936 -key v 5 4 @ * + ; 5 1 00652346 02338227 01520655 00483656 00482749 -key_out v 1 1 * 1 0 00652346 -keynote v 2 2 @ + 2 2 00299188 00768265 -kibbitz v 1 1 @ 1 0 01058995 -kibitz v 1 2 @ + 1 0 01058995 -kibosh v 1 2 @ ~ 1 0 02559752 -kick v 8 6 @ ~ * ^ + ; 8 3 01371756 01936233 01370561 02048511 01371454 01196524 01112979 00907147 -kick-start v 1 2 @ + 1 0 01858016 -kick_about v 1 1 @ 1 0 02604305 -kick_around v 3 1 @ 3 0 02604305 02516978 00813651 -kick_back v 2 3 @ + ; 2 2 02355259 01371454 -kick_down v 1 1 @ 1 0 01586738 -kick_downstairs v 1 2 @ ~ 1 0 02399331 -kick_in v 3 2 @ ~ 3 0 02609439 02308741 01586738 -kick_off v 1 3 @ ~ + 1 0 02395782 -kick_one's_heels v 1 1 @ 1 1 02638206 -kick_out v 2 2 @ ~ 2 0 02501738 02401809 -kick_the_bucket v 1 3 @ ~ $ 1 0 00358431 -kick_up v 2 3 @ ~ $ 2 1 01371651 01646866 -kick_upstairs v 1 2 @ ~ 1 0 02397637 -kid v 2 1 @ 2 2 00851100 00855295 -kidnap v 1 4 @ ~ + ; 1 1 01471043 -kill v 15 7 @ ~ > ^ $ + ; 15 3 01323958 02473688 00355038 02748495 02198819 01809617 01407376 01407235 01325774 01325536 01202374 00478830 00355524 00355365 00355177 -kill_off v 1 1 @ 1 1 01327582 -kill_oneself v 1 1 @ 1 0 01146382 -kindle v 3 3 @ ~ + 3 0 02761685 02761372 01759326 -kink v 2 3 @ * + 2 0 01223833 00362128 -kink_up v 1 1 @ 1 0 01223833 -kip v 1 3 @ ~ + 1 0 00014742 -kip_down v 1 1 ~ 1 0 00017865 -kiss v 2 3 @ ~ + 2 1 01431230 01431723 -kit v 1 2 @ + 1 0 02341200 -kit_out v 1 1 @ 1 0 02341200 -kit_up v 1 1 @ 1 0 02341200 -kite v 4 3 @ + ; 4 0 02206313 02206140 01942560 01848190 -kitten v 1 2 @ + 1 0 00058135 -knap v 2 2 @ ~ 2 0 01414288 01259458 -knead v 2 4 @ ~ * $ 2 1 01235355 01232738 -kneecap v 1 1 @ 1 0 01137415 -kneel v 1 2 @ + 1 1 01545649 -knell v 2 4 @ ~ > + 2 0 02181865 02181538 -knife v 1 3 @ ~ + 1 0 01231652 -knight v 1 2 @ + 1 0 02399185 -knit v 3 6 @ ~ * $ + ; 3 2 01671039 01672014 01278817 -knock v 6 5 @ ~ * ^ + 6 3 01238640 01414467 01239619 02185373 02178866 00826509 -knock_about v 2 1 @ 2 1 01417705 02604305 -knock_against v 1 1 @ 1 1 01240308 -knock_back v 1 1 @ 1 0 02702674 -knock_cold v 1 1 @ 1 0 01414088 -knock_down v 3 3 @ ~ + 3 2 01239862 01412346 00336158 -knock_off v 5 3 @ ~ ; 5 2 01327301 02349597 02322230 01700655 00363110 -knock_out v 5 2 @ + 5 3 00472426 01414088 00180602 01809980 00451153 -knock_over v 1 3 @ > $ 1 1 01909978 -knock_up v 1 2 @ $ 1 0 00053159 -knot v 3 4 ! @ ~ + 3 2 01673732 01300144 01521124 -know v 11 5 ! @ ~ $ + 11 7 00594621 00595935 00595630 00594337 00596644 00592883 00596132 01426397 00608670 00608502 00608372 -know_apart v 1 2 @ ~ 1 0 00650016 -know_the_score v 1 1 @ 1 1 00596484 -know_what's_going_on v 1 1 @ 1 0 00596484 -know_what's_what v 1 1 @ 1 0 00596484 -knuckle v 2 2 @ + 2 0 01605291 01605169 -knuckle_down v 1 1 @ 1 0 02421199 -knuckle_under v 1 2 @ ~ 1 1 00804476 -kotow v 1 3 @ ~ + 1 0 00880978 -kowtow v 2 3 @ ~ + 2 0 02040709 00880978 -kvetch v 1 1 ~ 1 0 00907147 -label v 5 4 @ ~ $ + 5 4 01029852 01588493 00971650 00651480 00650932 -labialise v 1 1 @ 1 0 00980339 -labialize v 1 1 @ 1 0 00980339 -labor v 3 5 @ ~ * $ + 3 2 02406916 02419773 00057506 -labour v 3 5 @ ~ * $ + 3 0 02419773 02406916 00057506 -lace v 5 6 @ ~ * $ + ; 5 1 01517662 01674717 01674375 01521603 00222135 -lace_into v 1 1 @ 1 0 01242537 -lace_up v 1 3 @ ~ * 1 0 01521603 -lacerate v 2 2 @ + 2 1 01559340 01793587 -lack v 1 2 ~ + 1 1 02632353 -lacquer v 1 4 @ ~ + ; 1 0 01682761 -lactate v 1 3 @ $ + 1 0 01186428 -ladder v 1 3 @ $ + 1 0 00334803 -lade v 2 3 @ ~ + 2 0 01578821 01489989 -laden v 2 2 @ ~ 2 0 01578821 01489989 -ladle v 2 3 @ ~ + 2 0 01578993 01578821 -lag v 4 4 @ ~ + ; 4 1 01997862 02494356 01513045 01339050 -laicise v 1 1 @ 1 0 00534094 -laicize v 1 1 @ 1 0 00534094 -lallygag v 1 2 @ ~ 1 0 02639075 -lam v 2 4 @ ~ $ + 2 2 02075049 01416193 -lam_into v 1 1 @ 1 0 01242537 -lamb v 1 2 @ + 1 0 00058265 -lambast v 2 2 @ ~ 2 0 01412204 00824767 -lambaste v 2 2 @ ~ 2 0 01412204 00824767 -lame v 1 2 @ ~ 1 0 00091647 -lament v 2 3 @ * + 2 1 01802219 00911350 -laminate v 4 3 @ $ + 4 1 01625666 01391538 01365131 01232387 -lampoon v 1 2 @ + 1 1 00852685 -lance v 3 2 @ + 3 0 02085158 01604119 01603885 -land v 7 5 @ ~ > + ; 7 5 01979901 01981036 00135857 02087156 02358527 01981436 01981279 -land_up v 2 1 @ 2 0 01477888 00352558 -landscape v 2 4 @ $ + ; 2 0 01751836 01741221 -languish v 3 3 @ ~ + 3 1 00389992 01805684 00093593 -lap v 5 3 @ ~ + 5 2 02692197 01432176 02188198 01170983 00217576 -lap_up v 1 1 @ 1 0 01170983 -lapidate v 2 2 @ + 2 0 01323518 01232554 -lapidify v 1 1 @ 1 0 00507485 -lapse v 6 3 @ ~ + 6 4 01972131 00351824 00204585 00093327 02303761 02072849 -lard v 2 4 @ ~ + ; 2 0 01679669 00956405 -lark v 1 2 @ + 1 0 01883716 -lark_about v 1 1 @ 1 0 01883716 -larn v 1 1 ~ 1 0 00597915 -larrup v 1 1 @ 1 0 01420928 -lash v 4 4 ! @ ~ + 4 1 01411085 01877946 01398032 01303707 -lash_out v 1 2 @ ~ 1 0 00862683 -lash_together v 1 1 @ 1 1 01287537 -lasso v 1 2 @ + 1 0 01604251 -last v 2 4 @ ~ * $ 2 2 02704928 02618149 -last_out v 1 1 ~ 1 0 02619122 -latch v 1 2 @ + 1 1 01286777 -latch_on v 3 1 @ 3 0 01216194 00602112 00590366 -lateralize v 1 2 @ + 1 0 02103781 -lather v 4 4 @ ~ * + 4 0 01411085 00512043 00109540 00036932 -latinise v 2 1 @ 2 0 00995525 00386566 -latinize v 3 1 @ 3 0 00995525 00961243 00386566 -laud v 1 3 @ ~ + 1 0 00860620 -laugh v 1 5 ! @ ~ ^ + 1 1 00031820 -laugh_at v 1 2 @ ~ 1 1 00851933 -laugh_away v 1 1 @ 1 0 00802136 -laugh_loudly v 1 1 @ 1 0 00031540 -laugh_off v 1 1 @ 1 1 00802136 -laugh_softly v 1 1 @ 1 1 00031663 -launch v 6 4 @ ~ $ + 6 4 02427103 01514655 01515415 00347918 01515196 01253363 -launder v 2 4 @ ~ $ + 2 0 01535246 00188949 -lave v 3 4 @ ~ $ + 3 0 00217576 00036362 00025034 -lavish v 1 1 @ 1 1 02264601 -lay v 5 5 @ ~ > ^ + 5 5 01494310 01544692 01651972 01545079 02307261 -lay_aside v 1 1 ~ 1 0 02265979 -lay_away v 1 1 @ 1 0 02305856 -lay_claim v 1 3 @ ~ $ 1 1 02275365 -lay_down v 1 2 @ ~ 1 1 00665476 -lay_eyes_on v 1 1 @ 1 1 02130160 -lay_hands_on v 1 1 @ 1 0 01212024 -lay_in v 1 2 @ ~ 1 0 02281093 -lay_into v 1 1 @ 1 0 01242537 -lay_off v 2 3 @ ~ + 2 2 02680814 02403537 -lay_on_the_line v 1 2 @ ~ 1 0 02545578 -lay_out v 5 3 @ ~ + 5 2 01474209 00407848 02366575 00772967 00711040 -lay_over v 2 3 @ ~ + 2 2 02652922 01469263 -lay_to_rest v 1 1 @ 1 1 02456493 -lay_up v 1 1 @ 1 0 00512482 -lay_waste_to v 1 2 @ ~ 1 0 00388635 -layer v 1 2 @ + 1 1 01262113 -laze v 1 1 ~ 1 1 02417504 -leach v 3 3 @ > + 3 0 02071837 02071627 00488617 -lead v 14 6 @ ~ * $ + ; 14 13 01999798 02635659 02635956 01999423 00771632 02685951 02440244 02687385 02555908 01732921 02686471 01999218 02686625 00813790 -lead_astray v 3 2 @ ~ 3 0 02580392 02000288 00854420 -lead_by_the_nose v 1 1 @ 1 0 00839194 -lead_off v 2 4 @ ~ > $ 2 1 02580392 00348746 -lead_on v 2 2 @ ~ 2 1 00783956 02575082 -lead_up v 1 1 @ 1 1 00539546 -leaf v 3 2 @ + 3 0 02153023 02089837 00095747 -league v 1 2 @ + 1 1 00369064 -league_together v 1 1 @ 1 0 02430078 -leak v 4 5 @ ~ * > + 4 1 00937023 00936169 00529759 00258109 -leak_out v 1 1 @ 1 1 00936169 -lean v 5 5 @ ~ ^ $ + 5 4 02038357 01606574 02719399 00688261 02039013 -lean_against v 1 1 @ 1 1 01590007 -lean_back v 1 2 @ ~ 1 1 02039156 -lean_on v 1 1 @ 1 1 01590007 -leap v 4 5 @ ~ > ^ + 4 2 01963942 00560391 02105082 01965156 -leap_out v 2 1 @ 2 0 02674564 01966501 -leapfrog v 2 2 @ + 2 0 01965911 00249188 -learn v 6 5 @ ~ > $ + 6 5 00597915 00598954 00604576 00599992 00829107 00920336 -lease v 4 3 @ ~ + 4 1 02460199 02460619 02208903 02208537 -leash v 1 2 @ + 1 0 01289155 -leather v 1 1 @ 1 0 01398682 -leave v 14 6 ! @ ~ * $ + 14 14 02009433 00613683 02729414 00136991 02015598 02721438 02635659 02383440 02356230 02229055 02730135 00360092 02296153 00613018 -leave_alone v 1 3 @ ~ $ 1 0 00136991 -leave_behind v 3 4 @ ~ * $ 3 1 02081578 00360092 00136991 -leave_no_stone_unturned v 1 1 @ 1 0 01316209 -leave_off v 3 2 @ ~ 3 2 02684078 00615774 00572661 -leave_office v 1 3 ! @ ~ 1 0 02382367 -leave_out v 2 2 @ ~ 2 2 00615774 00614999 -leaven v 1 3 @ > + 1 0 01975587 -lech_after v 1 1 @ 1 0 01828256 -lecture v 2 3 @ ~ + 2 2 00830761 00824767 -leech v 1 3 @ + ; 1 0 00086077 -leech_onto v 1 1 @ 1 0 01357141 -leer v 1 2 @ + 1 1 02164288 -leg_it v 1 2 @ ; 1 0 01906322 -legalise v 1 4 ! @ ~ + 1 0 02481436 -legalize v 1 4 ! @ ~ + 1 0 02481436 -legislate v 1 2 @ + 1 1 02466670 -legitimate v 3 3 @ ~ + 3 0 02481436 00896677 00575359 -legitimatise v 1 2 @ ~ 1 0 02481436 -legitimatize v 1 2 @ ~ 1 0 02481436 -legitimise v 1 2 @ ~ 1 0 02481436 -legitimize v 1 2 @ ~ 1 1 02481436 -lend v 3 4 ! @ ~ + 3 3 02324478 02324182 02736391 -lend_oneself v 1 2 ! $ 1 1 02707429 -lengthen v 2 4 ! @ ~ > 2 1 00317700 00316631 -lenify v 1 1 @ 1 0 01765392 -lessen v 3 2 @ ~ 3 3 00151689 00441445 00232956 -let v 6 5 ! @ ~ $ + 6 5 02423183 00771490 00802318 00120796 00496673 02208903 -let_down v 2 4 @ ~ > + 2 1 01973125 01798936 -let_drive v 1 1 @ 1 1 01134375 -let_fly v 1 1 @ 1 1 01134375 -let_go v 2 2 @ ~ 2 2 01474550 02737063 -let_go_of v 1 2 ! ~ 1 1 01474550 -let_in v 2 3 @ ~ $ 2 1 02449847 02502536 -let_it_go v 1 1 @ 1 1 02371239 -let_loose v 2 2 @ ~ 2 1 00983824 01475536 -let_off v 1 2 @ ~ 1 0 00893878 -let_on v 1 4 @ ~ > $ 1 1 00933821 -let_out v 4 5 ! @ ~ > $ 4 2 00983824 00933821 01475301 00303940 -let_the_cat_out_of_the_bag v 1 2 @ $ 1 0 00937208 -let_up v 2 2 @ + 2 2 00245059 00156276 -letter v 3 2 @ + 3 1 02290349 01692579 01692443 -letter_bomb v 1 2 @ + 1 0 01133488 -levant v 1 1 @ 1 0 02074093 -level v 6 5 ! @ ~ $ + 6 3 01152896 01661804 01307142 01152214 00964237 00356649 -level_off v 1 1 @ 1 1 00356649 -lever v 1 3 @ * + 1 0 01593254 -leverage v 2 2 @ + 2 0 02359839 02359690 -levitate v 2 4 @ * $ + 2 0 01944466 01944252 -levy v 2 3 @ ~ + 2 1 02306462 01098452 -lexicalise v 1 1 @ 1 0 00962190 -lexicalize v 1 2 @ + 1 0 00962190 -liaise v 1 1 @ 1 0 00760956 -libel v 1 2 @ + 1 0 00847683 -liberalise v 2 4 @ ~ $ + 2 0 02467203 02467003 -liberalize v 2 4 @ ~ $ + 2 1 02467003 02467203 -liberate v 4 4 @ ~ + ; 4 2 02497400 02421374 02497062 01757994 -librate v 2 4 @ ~ $ + 2 0 02704617 01878566 -licence v 1 4 @ ~ * + 1 0 02444662 -license v 1 4 @ ~ * + 1 1 02444662 -lick v 4 5 @ ~ * $ + 4 3 01412912 01432176 00634906 01170983 -lie v 7 6 ! @ ~ * $ + 7 7 02690708 01547001 02653381 02734338 00834259 02731390 01985029 -lie_about v 1 1 @ 1 0 02639905 -lie_around v 1 1 @ 1 1 02639905 -lie_awake v 1 1 @ 1 1 01547925 -lie_dormant v 1 0 1 1 02378330 -lie_down v 1 4 ! @ ~ $ 1 1 01985029 -lie_in v 2 2 @ * 2 1 02653381 00057410 -lie_in_wait v 1 1 @ 1 1 01138204 -lie_low v 2 1 @ 2 1 02146674 00588703 -lie_with v 1 3 @ ~ $ 1 0 01426397 -lifehack v 1 1 @ 1 0 00587849 -lift v 24 6 @ ~ > ^ + ; 24 11 01974062 01579153 01973759 01968569 00986074 00799798 02276866 01455184 00549982 00544549 00178652 02696801 02352181 02278061 02277138 01452057 01311608 00792921 00357198 00354195 00198623 00178773 00178502 00061933 -lift_off v 1 2 @ + 1 0 02014553 -lift_out v 1 2 @ ~ 1 1 01312371 -lift_up v 2 3 @ ~ > 2 2 01976089 01811736 -ligate v 3 3 @ + ; 3 0 01615354 00567484 00083334 -light v 6 7 @ ~ * > $ + ; 6 4 00291873 01199881 01978700 02759614 02229828 01958452 -light_up v 5 3 @ ~ * 5 2 02761229 00291873 02771169 02764122 01199881 -light_upon v 1 1 @ 1 0 02286687 -lighten v 6 4 ! @ ~ > 6 1 01814074 01487573 00860136 00312815 00280930 00199067 -lighten_up v 4 3 @ ~ > 4 0 01814074 00860136 00312815 00280930 -lighter v 1 2 @ + 1 0 01954852 -lignify v 1 1 @ 1 0 00585499 -like v 5 5 ! @ ~ * + 5 5 01824736 01777210 01776952 00691665 01825962 -liken v 1 1 @ 1 0 00653620 -lilt v 1 2 @ + 1 0 00950936 -limber v 2 1 @ 2 0 01603620 00101137 -limber_up v 2 1 @ 2 0 01603620 00027064 -lime v 2 2 @ + 2 0 02083237 01603732 -limit v 3 3 @ ~ + 3 2 00233335 00235368 00947077 -limn v 2 4 @ ~ + ; 2 0 01689379 01688256 -limp v 2 2 @ + 2 2 01917244 01996402 -line v 6 4 @ ~ $ + 6 2 02703539 01270784 01582645 01276361 00454135 00222993 -line_one's_pockets v 1 1 @ 1 0 02278727 -line_up v 6 5 @ ~ * + ; 6 4 02704213 02213336 02036755 00464321 02036650 01073953 -linearise v 1 1 @ 1 0 00489145 -linearize v 1 1 @ 1 0 00489145 -linger v 5 5 ! @ ~ ^ + 5 4 02731242 02639075 02011560 02058590 02640906 -linger_over v 1 1 @ 1 0 02640226 -link v 4 4 @ ~ + ; 4 3 00713167 01354673 02622234 01492052 -link_up v 3 3 @ ~ + 3 0 02622234 01354673 00713167 -lionise v 1 1 @ 1 0 02398956 -lionize v 1 2 @ + 1 1 02398956 -lip-read v 1 1 @ 1 0 00627970 -lip-sync v 1 1 @ 1 0 01040920 -lip-synch v 1 1 @ 1 0 01040920 -lip_off v 1 1 @ 1 0 00825776 -lipread v 1 2 @ + 1 0 00627970 -lipstick v 2 2 @ + 2 0 01689589 00041417 -liquefy v 3 4 @ ~ + ; 3 0 02757304 00444309 00443984 -liquidate v 4 3 @ ~ + 4 1 01327301 02352019 02256589 02254495 -liquidise v 1 3 @ + ; 1 0 00444309 -liquidize v 2 4 @ * + ; 2 0 02247584 00444309 -liquify v 2 4 @ ~ + ; 2 0 00444309 00443984 -lisp v 1 2 @ + 1 0 00982178 -list v 5 4 @ ~ $ + 5 2 00945853 02472223 02039013 02038791 00946755 -listen v 3 5 @ ~ * ^ + 3 3 02169891 02171039 02571901 -listen_in v 2 2 @ ~ 2 1 02170304 02189714 -literalise v 1 1 @ 1 0 00623812 -literalize v 1 2 ! @ 1 0 00623812 -lithograph v 1 3 @ + ; 1 0 01749394 -litigate v 2 4 @ ~ $ + 2 0 02582450 02582042 -litter v 3 2 @ + 3 2 02735142 01378421 00058401 -live v 7 6 @ ~ * ^ $ + 7 6 02649830 02614387 02618149 02616713 02614181 00596644 02614970 -live_down v 1 1 @ 1 0 02615300 -live_in v 1 2 ! @ 1 1 01177314 -live_it_up v 1 1 @ 1 1 01191512 -live_on v 1 3 ~ * $ 1 0 02618149 -live_out v 2 2 ! @ 2 1 02619020 01177505 -live_over v 1 1 @ 1 0 00597216 -live_together v 1 2 @ ~ 1 0 02651193 -live_up_to v 1 2 @ ~ 1 1 02671880 -live_with v 1 1 @ 1 0 00668805 -liven v 1 2 @ ~ 1 0 00192836 -liven_up v 1 2 @ ~ 1 0 00192836 -load v 5 5 @ ~ $ + ; 5 2 01489989 01490336 02231910 01612084 00487748 -load_down v 1 1 @ 1 0 01483131 -load_up v 1 2 @ ~ 1 1 01489989 -loaf v 2 3 @ ~ + 2 1 02639606 02639075 -loan v 1 3 @ ~ + 1 1 02324182 -loathe v 1 2 @ + 1 1 01774426 -lob v 1 2 @ + 1 1 01513290 -lobby v 1 2 @ + 1 1 02458943 -localise v 4 3 @ ~ + 4 0 02695895 02692335 02509919 01711749 -localize v 4 3 @ ~ + 4 0 02695895 02692335 02509919 01711749 -locate v 4 5 @ ~ * $ + 4 4 02286204 02694933 02333689 00413876 -lock v 9 5 ! @ ~ ^ + 9 7 01348174 01510827 00219775 01606736 01606018 01810320 01347678 02050865 01655347 -lock_away v 1 1 @ 1 0 01347678 -lock_in v 2 1 @ 2 2 01348013 01347678 -lock_out v 1 2 @ + 1 0 02449717 -lock_up v 2 2 @ + 2 2 01348452 01347678 -locomote v 1 3 ~ $ + 1 0 01835496 -lodge v 4 5 ! @ ~ ^ + 4 3 02652494 01528069 00869931 02651424 -lodge_in v 1 2 @ ~ 1 0 02648639 -loft v 4 2 @ + 4 0 02282252 01604442 01604012 00711420 -log v 2 3 @ ^ + 2 2 01002481 01258828 -log-in v 1 1 @ 1 0 02249147 -log_in v 1 2 ! @ 1 0 02249147 -log_off v 1 1 @ 1 0 02249293 -log_on v 1 1 @ 1 0 02249147 -log_out v 1 2 ! @ 1 0 02249293 -log_up v 1 1 @ 1 0 01002618 -log_z's v 1 2 @ ~ 1 0 00014742 -logroll v 1 2 @ + 1 0 02375902 -loiter v 1 3 @ ~ + 1 1 02639075 -loll v 2 1 @ 2 0 02717701 02639606 -loll_around v 1 1 @ 1 0 02639606 -lollop v 1 1 @ 1 0 01900918 -lollygag v 1 2 @ ~ 1 0 02639075 -long v 1 3 @ ~ + 1 1 01828405 -look v 10 6 @ ~ * ^ $ + 10 8 02130524 02133435 00033599 02153709 02693319 02549581 00929362 00720063 02658447 00712708 -look_across v 1 1 @ 1 1 02721966 -look_after v 1 1 @ 1 1 02167435 -look_around v 1 1 @ 1 1 02132420 -look_at v 2 2 @ ~ 2 2 00734054 02130300 -look_away v 1 1 @ 1 1 02132263 -look_back v 2 1 @ 2 2 02132099 00696414 -look_backward v 1 1 @ 1 0 02132099 -look_down_on v 1 2 ! @ 1 0 01828070 -look_for v 2 2 @ ~ 2 2 01315613 01804961 -look_forward v 1 1 @ 1 1 00720497 -look_into v 2 3 @ ~ $ 2 2 00789138 00661824 -look_like v 1 1 @ 1 1 02665617 -look_on v 2 3 @ ~ * 2 2 02128653 00689950 -look_out v 2 3 @ ~ + 2 2 02151966 01129064 -look_out_on v 1 1 @ 1 1 02721966 -look_out_over v 1 1 @ 1 1 02721966 -look_sharp v 1 1 @ 1 0 00459498 -look_to v 2 2 @ ~ 2 2 00720617 01804961 -look_up v 1 1 @ 1 1 00877083 -look_up_to v 1 2 @ ~ 1 0 01827858 -look_upon v 1 1 @ 1 1 00689950 -loom v 4 2 @ ~ 4 3 02696961 02696503 02744061 01672384 -loop v 5 3 @ ~ + 5 2 02044745 01673472 02044596 01523986 01286290 -loose v 4 3 @ ~ > 4 2 02421374 01475536 00419375 00419137 -loose_off v 1 1 @ 1 0 01134375 -loosen v 7 6 ! @ ~ > $ + 7 1 00419375 02601996 02601808 01463792 01284908 01275516 00419137 -loosen_up v 5 3 @ ~ > 5 1 01479682 02602212 00027064 00026385 00025654 -loot v 2 4 @ ~ + ; 2 1 02345288 02344568 -lop v 2 4 @ ~ $ + 2 0 01560731 01321002 -lop_off v 1 2 @ ~ 1 1 01299268 -lope v 1 2 @ + 1 1 01928730 -lord v 1 2 @ + 1 0 02398854 -lord_it_over v 1 1 @ 1 0 02593551 -lose v 11 6 ! @ ~ * $ + 11 10 02287789 01099592 01795082 01503101 02287618 02197091 02288828 02288155 01113806 02127853 00204872 -lose_it v 1 2 @ ~ 1 0 01784295 -lose_one's_temper v 1 1 @ 1 0 01795428 -lose_sight_of v 1 0 1 0 02130017 -lose_track v 1 2 ! @ 1 0 00595306 -lose_weight v 1 2 @ ~ 1 1 00045817 -lot v 2 3 @ ~ + 2 0 02468965 02294436 -louden v 2 3 ! @ $ 2 0 02190477 00461956 -lounge v 2 3 @ ~ + 2 1 01528339 02639075 -lounge_about v 1 1 @ 1 1 02639606 -lounge_around v 1 1 @ 1 0 02639606 -lour v 3 2 @ ~ 3 0 00531489 00267855 00032981 -louse_up v 1 1 @ 1 1 02527651 -love v 4 5 ! @ ~ $ + 4 3 01775164 01828736 01775535 01426397 -low v 1 1 @ 1 0 01055018 -lowball v 1 1 @ 1 0 00673766 -lower v 5 5 ! @ ~ > + 5 3 01973125 00531489 00267855 01574923 00032981 -lower_oneself v 1 1 @ 1 0 02517827 -lube v 1 1 @ 1 0 01484982 -lubricate v 3 2 @ + 3 0 02751597 01484982 00219012 -luck_into v 1 1 @ 1 1 02212646 -luck_it v 1 1 @ 1 0 02544937 -luck_out v 1 1 @ 1 0 02524739 -luck_through v 1 1 @ 1 0 02544937 -lucubrate v 1 3 @ ~ + 1 0 00955601 -luff v 2 3 @ + ; 2 0 01928154 01902246 -lug v 2 2 @ + 2 1 01454246 01479333 -luge v 1 3 @ + ; 1 0 01940034 -lull v 3 3 @ ~ + 3 2 01763643 00558061 01764800 -lumber v 2 2 @ + 2 1 01925548 01258828 -luminesce v 1 2 @ + 1 0 02766223 -lump v 2 2 @ + 2 1 01385920 00657016 -lunch v 2 2 @ + 2 1 01185304 01185475 -lunge v 1 3 @ ~ + 1 1 02062212 -lurch v 5 3 @ + ; 5 3 01924882 01864634 02097544 02639475 01103693 -lure v 1 3 @ ~ + 1 1 00782527 -lurk v 3 3 @ ~ + 3 2 02640053 02639075 01138204 -lust v 1 2 @ + 1 0 01188485 -lust_after v 1 1 @ 1 0 01828256 -lustrate v 1 2 @ + 1 0 00476538 -luxate v 1 2 @ + 1 0 00465762 -luxuriate v 3 3 @ ~ + 3 0 01204803 01191645 00310812 -lynch v 1 2 @ + 1 0 02484397 -lyophilise v 1 2 @ + 1 0 00212236 -lyophilize v 1 2 @ + 1 1 00212236 -lyric v 1 4 @ ~ + ; 1 0 01698916 -lysogenize v 1 2 @ + 1 0 00467015 -macadamise v 1 1 @ 1 0 01603418 -macadamize v 1 2 @ + 1 0 01603418 -macerate v 4 5 @ * > $ + 4 0 00398953 00398741 00398484 00389406 -machicolate v 1 3 @ + ; 1 0 02361811 -machinate v 2 3 @ ~ + 2 0 01651444 00706975 -machine v 2 2 @ + 2 0 01624169 01623967 -machine-wash v 1 1 @ 1 0 01537114 -machine_gun v 1 3 @ * + 1 1 01136835 -machine_wash v 1 2 ! @ 1 0 01537114 -macrame v 1 2 @ + 1 0 01670901 -maculate v 2 3 @ ~ + 2 0 01537409 00492410 -madden v 3 2 @ ~ 3 0 01787822 01787709 01787600 -madder v 1 2 @ + 1 0 00285593 -madrigal v 1 3 @ + ; 1 1 01732014 -magnetise v 2 4 ! @ + ; 2 0 00777522 00399788 -magnetize v 2 4 ! @ + ; 2 1 00399788 00777522 -magnify v 3 4 @ ~ + ; 3 3 00434077 00839834 00240293 -mail v 2 3 @ ~ + 2 1 01437888 01031256 -mail_out v 1 1 @ 1 1 01437725 -maim v 1 3 @ ~ + 1 0 00090888 -mainline v 1 1 @ 1 0 01199365 -maintain v 10 3 @ ~ + 10 5 02681795 02280132 01184625 01016778 02204564 02203168 01065877 01017643 00896497 00732552 -major v 1 2 @ + 1 1 00607609 -make v 49 8 ! @ ~ * ^ $ + ; 49 29 02560585 00120316 01617192 00770437 01645601 01621555 00730758 01646075 01640207 02289295 01619014 02621395 02022162 02674708 01653873 01755816 01654628 00556855 00012267 02396716 02355596 02020590 00665476 02582921 02598483 01733477 00276068 02075857 00074038 02748759 02748627 02745332 02665124 02621133 02134050 02051031 02021532 01755504 01664172 01428578 00891038 00838524 00698256 00698104 00562182 00562067 00545953 00107369 00072012 -make_a_clean_breast_of v 1 1 @ 1 0 00817909 -make_a_face v 1 2 @ ~ 1 0 00034288 -make_a_motion v 1 2 @ $ 1 0 00879356 -make_a_point v 1 1 @ 1 0 02595234 -make_a_stink v 1 1 @ 1 0 00910654 -make_as_if v 1 1 @ 1 0 00107468 -make_believe v 1 4 @ ~ $ + 1 0 00838524 -make_bold v 1 1 @ 1 1 02374924 -make_clean v 1 3 @ ~ $ 1 0 01532589 -make_do v 1 2 @ ~ 1 1 02587532 -make_for v 1 2 @ $ 1 1 01629589 -make_full v 1 3 @ ~ > 1 0 00452512 -make_fun v 1 2 @ ~ 1 1 00851933 -make_good v 1 1 @ 1 1 02579140 -make_grow v 1 4 @ ~ > $ 1 0 00253761 -make_happy v 1 2 @ ~ 1 1 02491383 -make_hay v 1 1 @ 1 0 01163197 -make_headway v 1 1 ~ 1 0 01111028 -make_it v 3 3 @ ~ * 3 2 02619924 02585860 02525044 -make_love v 1 3 @ ~ $ 1 1 01426397 -make_merry v 1 3 @ ~ + 1 0 02491383 -make_no_bones_about v 1 1 @ 1 0 00817752 -make_noise v 1 2 @ ~ 1 1 02172888 -make_off v 1 2 @ ~ 1 0 02073714 -make_out v 10 4 @ ~ * $ 10 5 02193194 01064799 00626300 02617567 02587532 01426397 01426153 01020731 00931085 00757056 -make_over v 2 3 @ ~ + 2 2 01669285 01619725 -make_pass v 1 2 ~ > 1 0 02052476 -make_peace v 1 3 ! @ + 1 1 01093587 -make_pure v 1 4 @ ~ $ ; 1 0 00475183 -make_relaxed v 1 3 @ ~ > 1 0 00025654 -make_sense v 1 1 @ 1 1 02619612 -make_sure v 1 1 @ 1 1 02595234 -make_unnecessary v 1 1 @ 1 0 00549552 -make_up v 9 4 @ ~ $ + 9 6 02620587 01753465 02253456 02520730 01634424 00276068 02672540 00764902 00040928 -make_up_one's_mind v 1 2 ~ * 1 1 00697589 -make_vibrant_sounds v 1 1 @ 1 0 01052936 -make_water v 1 3 @ ~ $ 1 0 00072012 -make_way v 1 1 @ 1 1 02098332 -make_whoopie v 1 2 @ ~ 1 0 02491383 -maledict v 1 2 @ + 1 0 00865958 -malfunction v 1 4 ! @ ~ + 1 0 01525295 -malign v 1 2 @ + 1 0 00848169 -malinger v 1 2 @ + 1 1 02464132 -malnourish v 1 2 @ + 1 0 01179276 -malt v 4 3 @ $ + 4 0 00186001 00117878 00117757 00117624 -maltreat v 1 3 @ ~ + 1 1 02516594 -malversate v 1 3 @ ~ + 1 0 02292535 -mambo v 1 2 @ + 1 0 01897489 -man v 2 4 @ ~ $ + 2 1 02420991 01088547 -manacle v 1 2 @ + 1 0 01288201 -manage v 7 4 ! @ ~ + 7 5 02522864 02436349 02587532 02443049 02527431 02523221 01224415 -mandate v 3 2 @ + 3 1 02395603 00751389 00751279 -manducate v 1 2 @ ~ 1 0 01201089 -maneuver v 3 3 @ ~ + 3 1 01931768 02369390 01109863 -mangle v 4 3 @ * + 4 0 01390486 01232098 00548750 00292672 -manhandle v 1 1 @ 1 0 01412089 -manicure v 2 2 @ + 2 0 00042641 00042479 -manifest v 3 4 @ ~ $ + 3 1 00820976 01000878 00423075 -manifold v 2 3 @ ~ + 2 0 00247702 00247390 -manipulate v 6 3 @ ~ + 6 2 02536329 01211699 02576921 02351239 01803936 00080929 -manoeuver v 3 2 @ ~ 3 0 02369390 01931768 01109863 -manoeuvre v 3 3 @ ~ + 3 0 02369390 01931768 01109863 -mantle v 2 2 @ + 2 0 02085320 01605404 -manufacture v 4 3 @ ~ + 4 2 01653442 01634424 01758882 01758696 -manumit v 1 2 @ + 1 0 02496498 -manure v 1 2 @ + 1 0 02083087 -map v 6 4 @ ~ $ + 6 2 01687876 00710606 02695709 01756149 01688114 00380698 -map_out v 1 1 @ 1 1 01756149 -mapquest v 1 3 @ + ; 1 0 00649033 -mar v 2 3 @ ~ + 2 1 00477941 00090708 -maraud v 1 2 @ + 1 0 02020237 -marble v 1 3 @ + ; 1 0 01681492 -marbleise v 1 2 @ + 1 0 00523436 -marbleize v 1 2 @ + 1 0 00523436 -marcel v 1 1 @ 1 0 00039385 -march v 7 5 @ ~ > ^ + 7 5 01996735 02084380 01919391 02521816 01924712 02084587 01466978 -march_on v 1 2 @ ~ 1 1 01992503 -march_out v 1 1 @ 1 0 02083923 -marginalise v 1 2 @ + 1 0 02377520 -marginalize v 1 2 @ + 1 0 02377520 -marinade v 1 3 @ + ; 1 0 00213544 -marinate v 1 3 @ + ; 1 1 00213544 -mark v 15 6 @ ~ * ^ $ + 15 8 01588493 00921738 00651991 00612612 00508032 02508245 02118476 01551195 01275762 01062395 01004062 00800750 00662182 00657728 00190023 -mark_down v 1 3 ! @ ~ 1 0 02320078 -mark_off v 2 3 @ ~ $ 2 1 00234725 00662182 -mark_out v 1 1 @ 1 0 00234725 -mark_up v 1 3 ! @ + 1 0 02319824 -market v 4 4 @ ~ + ; 4 1 02298160 02326198 02298471 00470386 -maroon v 2 2 @ + 2 1 02228355 00496489 -marry v 2 4 @ ~ $ + 2 2 02488834 02489456 -marshal v 4 2 @ + 4 3 01988325 01360197 00270215 02000757 -martyr v 2 2 @ + 2 0 01605021 00071646 -martyrise v 1 1 @ 1 0 00071646 -martyrize v 1 2 @ + 1 0 00071646 -marvel v 2 2 @ + 2 2 00925490 00925735 -masculinise v 1 2 @ $ 1 0 00566569 -masculinize v 2 3 @ $ + 2 0 00566895 00566569 -mash v 3 3 @ ~ + 3 1 01593937 01037910 00331082 -mask v 5 6 ! @ ~ * + ; 5 2 02147603 01358328 02158587 01358855 01358737 -masquerade v 2 2 @ + 2 2 02147962 00837617 -mass v 1 3 @ ~ + 1 1 02024168 -mass-produce v 1 1 @ 1 0 01625891 -massacre v 1 2 @ + 1 1 00479176 -massage v 2 3 @ * + 2 2 01232738 00064487 -master v 4 5 @ ~ * $ + 4 3 00597634 01108627 02539334 00597385 -mastermind v 1 3 @ ~ + 1 1 00710005 -masticate v 2 3 @ ~ + 2 0 01235667 01201089 -masturbate v 2 5 @ ~ * $ + 2 0 01430952 01430633 -mat v 2 3 @ ~ + 2 0 01462928 00565592 -mat_up v 1 1 @ 1 0 00565592 -match v 10 4 @ ~ $ + 10 5 02657219 02332627 01292885 02672187 00456740 02594674 01293389 01081152 00456596 00417001 -mate v 3 5 @ ~ $ + ; 3 2 01428853 01292885 01114475 -materialise v 1 4 ! @ ~ + 1 0 00344174 -materialize v 1 4 ! @ ~ + 1 1 00344174 -matriculate v 1 2 @ + 1 1 02471203 -matt-up v 1 1 @ 1 0 00565592 -matte v 1 1 @ 1 0 00565592 -matte_up v 1 1 @ 1 0 00565592 -matter v 1 4 @ ~ ^ + 1 1 02645839 -matter_to v 1 2 @ ~ 1 1 02678663 -maturate v 3 5 @ ~ * $ + 3 0 00250181 00248026 00096766 -mature v 6 6 @ ~ * > $ + 6 1 00250181 00926156 00577998 00249969 00248026 00097179 -maul v 2 3 @ * + 2 0 01232272 01232098 -maunder v 3 2 @ ~ 3 0 01882081 01044533 01036804 -max_out v 1 1 @ 1 0 02007111 -maximise v 2 3 ! @ + 2 0 00428870 00428583 -maximize v 2 3 ! @ + 2 2 00428583 00428870 -mean v 7 4 @ ~ $ + 7 6 00955148 02635189 00931852 00708538 02742482 00730052 00708840 -meander v 1 4 @ ~ $ + 1 1 01882814 -measure v 4 5 @ ~ ^ $ + 4 4 00647094 00489837 02704349 00681429 -measure_out v 1 2 @ ~ 1 0 00647094 -measure_up v 1 1 @ 1 1 02679012 -mechanise v 3 3 @ ~ + 3 0 00480751 00480569 00479598 -mechanize v 3 3 @ ~ + 3 0 00480751 00480569 00479598 -meddle v 1 2 @ + 1 1 02539101 -mediate v 2 2 @ + 2 1 00760956 02691890 -medicate v 2 4 @ ~ + ; 2 0 00084562 00084230 -medicine v 1 4 @ ~ + ; 1 0 00084230 -meditate v 2 3 @ ~ + 2 1 00630380 00704388 -meet v 13 5 @ ~ * $ + 13 13 02023107 02486932 02710402 01183573 02667900 02594674 02428924 02596113 02022804 01079480 02739480 02110082 01205696 -meet_up_with v 1 1 @ 1 1 02022977 -melanise v 2 1 @ 2 0 00280787 00280532 -melanize v 2 2 @ + 2 0 00280787 00280532 -meld v 3 3 @ ~ + 3 0 00902807 00395841 00394813 -meliorate v 2 5 @ ~ > $ + 2 0 00205885 00205046 -mellow v 3 4 @ > $ + 3 0 00254672 00254486 00254298 -mellow_out v 1 2 @ $ 1 0 00254486 -melodise v 1 2 @ ; 1 0 01706756 -melodize v 1 3 @ + ; 1 0 01706756 -melt v 6 4 @ ~ $ + 6 4 00444629 00376106 00254486 00395841 00224651 00223928 -melt_down v 1 3 @ ~ $ 1 0 00444629 -melt_off v 1 2 @ ~ 1 1 00045817 -memorialise v 2 3 @ ~ + 2 0 00768062 00612042 -memorialize v 2 3 @ ~ + 2 0 00768062 00612042 -memorise v 1 3 @ ~ + 1 0 00604576 -memorize v 1 3 @ ~ + 1 1 00604576 -menace v 3 2 @ + 3 2 02697120 01067194 00012137 -mend v 2 3 @ ~ + 2 2 00260648 00270561 -menstruate v 1 3 @ * + 1 0 00062203 -mensurate v 1 3 @ ~ + 1 0 00647094 -mention v 3 3 @ ~ + 3 3 01024190 01020005 01023071 -mentor v 1 1 @ 1 0 00829947 -meow v 1 2 @ + 1 0 01052782 -mercerise v 1 1 @ 1 0 00185698 -mercerize v 1 2 @ + 1 0 00185698 -merchandise v 1 4 ~ * + ; 1 1 02260362 -merge v 3 3 @ ~ + 3 2 00367685 00394813 00243124 -merit v 1 3 @ ~ + 1 1 02646378 -mesh v 4 3 @ ~ + 4 2 01510827 00405079 02458017 01463340 -mesmerise v 2 3 @ ~ + 2 0 00777522 00020671 -mesmerize v 2 3 @ ~ + 2 1 00777522 00020671 -mess v 2 3 @ + ; 2 0 01176079 00276214 -mess_about v 1 2 @ ~ 1 0 02639075 -mess_around v 1 2 @ ~ 1 1 01473346 -mess_up v 3 2 @ + 3 1 02527651 01387493 00276214 -message v 3 2 @ $ 3 0 01071632 01071474 01071328 -metabolise v 1 1 * 1 0 01197750 -metabolize v 1 2 * + 1 1 01197750 -metal v 1 2 @ + 1 0 01603303 -metalize v 1 1 @ 1 0 01615602 -metallize v 1 1 @ 1 0 01615602 -metamorphose v 2 2 @ ~ 2 1 00384055 00381601 -metastasise v 1 1 @ 1 0 00104667 -metastasize v 1 2 @ + 1 0 00104667 -mete_out v 1 2 @ ~ 1 0 02294436 -meter v 2 2 @ + 2 1 00490586 01273974 -metricate v 1 2 @ + 1 0 00381331 -metricise v 2 1 @ 2 0 00383764 00381331 -metricize v 2 1 @ 2 0 00383764 00381331 -metrify v 2 3 @ + ; 2 0 01703023 00381331 -mew v 2 2 @ + 2 1 01052782 01060198 -mewl v 1 1 @ 1 0 00066025 -miaou v 1 2 @ + 1 0 00941719 -miaow v 1 2 @ + 1 0 00941719 -micro-cook v 1 2 @ ; 1 0 00321936 -microcopy v 1 1 @ 1 0 01736523 -microfilm v 1 2 @ + 1 0 01712450 -microwave v 1 3 @ + ; 1 0 00321936 -micturate v 1 4 @ ~ $ + 1 0 00072012 -middle v 1 2 @ + 1 0 01498498 -miff v 1 2 @ + 1 0 01786620 -migrate v 2 4 @ ~ $ + 2 1 01856626 01857093 -mildew v 1 3 @ ~ + 1 0 00210738 -militarise v 2 4 ! @ ~ + 2 0 01098869 00578116 -militarize v 2 4 ! @ ~ + 2 0 01098869 00578116 -militate v 1 1 @ 1 1 02431129 -milk v 3 4 @ ~ $ + 3 2 00194170 01164906 00194373 -mill v 4 2 @ + 4 2 01902126 00332017 01457825 01391697 -mill_about v 2 2 @ ~ 2 1 02639075 01902126 -mill_around v 2 2 @ ~ 2 0 02639075 01902126 -mime v 2 2 @ + 2 0 01743531 01724185 -mimeo v 1 2 @ + 1 0 01695257 -mimeograph v 1 2 @ + 1 0 01695257 -mimic v 1 2 @ + 1 0 01743531 -mince v 3 2 @ + 3 1 01058036 01929927 01560583 -mind v 6 4 ! @ ~ + 6 3 00848707 00724492 02437707 02571901 00724664 00609506 -mine v 2 5 @ ~ * + ; 2 1 01163620 01125724 -mineralize v 2 1 @ 2 0 00585705 00585606 -mingle v 3 3 @ ~ + 3 2 01462005 02597095 02739861 -miniate v 2 3 @ + ; 2 0 01696893 01683957 -miniaturise v 1 2 @ + 1 0 00241496 -miniaturize v 1 2 @ + 1 0 00241496 -minify v 1 2 @ ~ 1 0 00441445 -minimise v 2 4 ! @ ~ + 2 0 00841125 00427802 -minimize v 3 4 ! @ ~ + 3 2 00427802 00841125 00864475 -minister v 2 2 @ + 2 1 02549392 02446660 -minstrel v 1 3 @ + ; 1 0 01730216 -mint v 1 2 @ + 1 0 01639105 -mire v 4 4 @ > $ + 4 0 02678287 01835103 01834896 01534745 -mirror v 2 2 @ + 2 1 02766925 00821944 -misaddress v 1 1 @ 1 0 00991025 -misadvise v 1 1 @ 1 0 00876104 -misalign v 1 2 @ + 1 0 00466327 -misally v 1 2 @ + 1 0 02430421 -misapply v 1 2 @ + 1 0 01161290 -misapprehend v 1 2 @ + 1 0 00619869 -misappropriate v 1 3 @ ~ + 1 0 02292535 -misbehave v 1 4 ! @ ~ + 1 0 02517202 -misbelieve v 1 3 @ + ; 1 0 00684507 -miscalculate v 2 3 @ + ; 2 1 00712389 00639478 -miscall v 1 1 @ 1 0 00971324 -miscarry v 2 4 ! @ ~ + 2 1 02528380 00059769 -miscast v 1 2 @ ; 1 0 01711073 -miscegenate v 1 2 @ + 1 0 02739121 -misconceive v 1 2 @ + 1 0 00619869 -misconduct v 2 3 @ ~ + 2 0 02517202 02438861 -misconstrue v 1 2 @ + 1 1 00619869 -miscount v 1 2 @ + 1 0 00948602 -miscreate v 1 2 @ + 1 0 00701576 -misdate v 1 2 @ + 1 0 00619503 -misdeal v 1 3 @ + ; 1 0 02246908 -misdeliver v 1 1 @ 1 0 01438585 -misdemean v 1 2 @ ~ 1 0 02517202 -misdirect v 3 3 @ ~ + 3 0 02579447 02000288 00991025 -misdo v 1 1 @ 1 0 02563014 -misestimate v 2 3 @ + ; 2 0 00712389 00639478 -misfire v 1 2 @ + 1 1 01134653 -misfunction v 1 2 @ ~ 1 0 01525295 -misgauge v 1 1 @ 1 1 00673341 -misgive v 1 2 @ + 1 0 00733454 -misgovern v 1 2 @ + 1 0 02586979 -misguide v 2 1 @ 2 0 02000288 00876104 -mishandle v 2 1 @ 2 0 02527651 02438861 -misidentify v 1 2 @ ~ 1 0 00618267 -misinform v 1 3 @ ~ + 1 0 00834009 -misinterpret v 3 2 @ + 3 1 00939182 00624801 00619869 -misjudge v 1 2 @ ~ 1 1 00671190 -mislay v 1 1 @ 1 1 01503101 -mislead v 2 3 @ ~ + 2 2 02000288 00834009 -mismanage v 1 2 @ + 1 1 02438861 -mismarry v 1 1 @ 1 0 02489363 -mismatch v 1 2 @ + 1 0 01294026 -mismate v 1 1 @ 1 0 01293548 -misname v 1 1 @ 1 1 00971324 -misperceive v 1 2 @ ~ 1 1 02117840 -misplace v 2 2 @ + 2 2 01503101 01501793 -misplay v 2 2 @ + 2 0 01649695 01075044 -misprint v 1 2 @ + 1 0 01746839 -mispronounce v 1 2 @ + 1 0 00951601 -misquote v 1 2 @ + 1 1 01023781 -misread v 2 2 @ + 2 1 00627693 00624801 -misremember v 1 2 @ * 1 0 00617605 -misrepresent v 2 3 @ ~ + 2 1 00836705 02576921 -miss v 9 5 ! @ ~ * + 9 8 02127853 01805523 02613672 00614999 02022659 02632353 01237901 02632838 00810557 -misspeak v 1 1 @ 1 0 00951601 -misspell v 1 2 @ + 1 0 00938146 -misspend v 2 1 @ 2 0 02708301 02266677 -misstate v 1 2 @ + 1 0 00799243 -mist v 3 3 @ ~ + 3 1 00361495 02157731 01373303 -mist_over v 1 1 @ 1 0 00361495 -mistake v 2 3 @ ~ + 2 1 00618267 00617748 -mistime v 1 2 @ + 1 0 00491313 -mistranslate v 1 2 @ + 1 0 00960453 -mistreat v 1 3 @ ~ + 1 0 02516594 -mistrust v 1 4 ! @ ~ + 1 1 00687926 -misunderstand v 1 2 @ + 1 1 00619869 -misuse v 2 3 @ ~ + 2 1 01161290 00203213 -miter v 3 2 @ + 3 1 01584199 02263958 01291707 -mitigate v 2 4 @ ~ + ; 2 1 00906037 00198850 -mix v 6 4 @ ~ ^ + 6 4 00394813 02481900 00556193 00184117 01462005 01418667 -mix_in v 2 2 @ ~ 2 1 00396035 00184117 -mix_up v 2 3 @ ~ $ 2 0 01657254 00620379 -mizzle v 1 2 @ + 1 0 02757475 -moan v 1 2 @ + 1 1 01045419 -mob v 1 2 @ + 1 0 02064131 -mobilise v 4 4 ! @ > + 4 0 01097960 01088381 00270215 00270005 -mobilize v 4 4 ! @ > + 4 2 00270215 01097960 01088381 00270005 -mock v 2 3 @ ~ + 2 1 00849080 00849332 -mock_up v 1 1 @ 1 0 01697406 -model v 6 4 @ ~ + ; 6 2 01743784 01697027 02142775 02142626 01722980 01697406 -moderate v 6 3 @ ~ + 6 2 00813790 00198710 02510337 01058036 00933566 00202934 -modernise v 2 5 @ ~ * $ + 2 0 00411020 00262076 -modernize v 2 5 @ ~ * $ + 2 2 00262076 00411020 -modify v 3 5 @ ~ > + ; 3 2 00169806 00171127 00126264 -modulate v 5 3 @ + ; 5 0 01729142 00982293 00299341 00171458 00123894 -moil v 3 2 @ ~ 3 0 02419773 01885430 00218214 -moisten v 2 3 @ ~ + 2 1 00217956 01376082 -moisturise v 1 3 @ ~ + 1 0 00215800 -moisturize v 1 3 @ ~ + 1 0 00215800 -mold v 6 5 @ ~ $ + ; 6 2 01697027 00210738 01662771 01659248 01221405 00701040 -molder v 1 2 @ ~ 1 0 00209837 -molest v 2 3 @ ~ + 2 1 02569495 01789514 -mollify v 3 2 @ + 3 1 01765392 00294884 00256027 -mollycoddle v 1 2 @ + 1 0 02570267 -molt v 1 3 @ ~ + 1 0 00009147 -monetise v 1 2 @ + 1 0 02481231 -monetize v 1 2 @ + 1 0 02481231 -monger v 1 2 @ + 1 0 02302817 -mongrelise v 1 1 @ 1 0 01429663 -mongrelize v 1 2 @ + 1 0 01429663 -monish v 2 3 @ $ + 2 0 00871195 00870577 -monitor v 2 3 @ ~ + 2 1 02163301 02163626 -monkey v 2 3 @ ~ + 2 0 01586018 01473346 -monkey_around v 1 2 @ ~ 1 0 01473346 -monologuise v 1 1 @ 1 0 00964478 -monologuize v 1 2 @ + 1 0 00964478 -monopolise v 2 2 @ + 2 0 02442546 02204242 -monopolize v 2 2 @ + 2 2 02442546 02204242 -monumentalise v 1 1 @ 1 0 00612454 -monumentalize v 1 1 @ 1 0 00612454 -moo v 1 2 @ + 1 1 01055018 -mooch v 1 3 @ ~ + 1 0 02270404 -moon v 3 2 @ + 3 0 02418205 02417908 02141840 -moon_about v 1 1 @ 1 0 01805247 -moon_around v 2 1 @ 2 0 02417908 01805247 -moon_on v 1 1 @ 1 1 02417908 -moonlight v 1 2 @ + 1 0 02420606 -moonshine v 1 3 @ + ; 1 0 00228858 -moor v 3 3 @ ~ + 3 0 01305542 01305361 01305099 -moot v 1 3 @ ~ $ 1 0 00813044 -mop v 2 3 @ ~ + 2 1 01393339 00034758 -mop_up v 3 3 @ ~ + 3 1 01393339 01102997 00484892 -mope v 2 2 @ + 2 0 01918669 01805247 -mope_around v 1 1 @ 1 0 01918669 -moralise v 3 2 @ + 3 0 00938621 00828374 00385047 -moralize v 3 2 @ + 3 0 00938621 00828374 00385047 -morph v 2 2 @ > 2 0 00469187 00469030 -mortar v 1 3 @ + ; 1 1 01362291 -mortgage v 1 3 @ ~ + 1 0 02351737 -mortice v 2 2 @ + 2 0 01293782 01293644 -mortify v 4 4 @ ~ * + 4 0 01802070 01801847 01799794 00097394 -mortise v 2 2 @ + 2 0 01293782 01293644 -mosey v 1 1 @ 1 0 01918183 -mosh v 1 1 @ 1 0 01897885 -mothball v 1 2 @ + 1 0 02281641 -mother v 2 2 @ + 2 1 02550516 00054628 -mothproof v 1 1 @ 1 0 01154825 -motion v 1 3 @ ~ + 1 1 00992041 -motivate v 1 3 @ $ + 1 1 01649999 -motley v 2 3 @ ~ + 2 0 00436879 00284669 -motor v 1 5 @ * $ + ; 1 1 01930117 -motorbike v 1 2 @ * 1 0 01936048 -motorboat v 1 2 @ + 1 0 01945277 -motorcycle v 1 3 @ * + 1 0 01936048 -motorise v 1 2 @ + 1 0 00480751 -motorize v 3 2 @ + 3 0 02226172 02226013 00480751 -mottle v 2 3 @ ~ + 2 1 01696135 00510364 -mould v 3 5 @ ~ $ + ; 3 1 01697027 01662771 01659248 -moulder v 1 2 @ ~ 1 0 00209837 -moult v 1 3 @ ~ + 1 0 00009147 -mound v 1 3 @ ~ + 1 0 01660386 -mound_over v 2 1 @ 2 1 01607871 01660547 -mount v 8 4 @ ~ + ; 8 6 01343204 00433232 00407633 01649124 01923414 01921964 01649251 01429322 -mount_up v 1 2 @ ~ 1 1 01923414 -mountaineer v 1 3 @ + ; 1 0 01922895 -mourn v 2 2 @ + 2 2 01797051 01797204 -mouse v 2 2 @ + 2 0 01911888 01212115 -mousse v 1 2 @ + 1 0 00039950 -mouth v 3 5 @ ~ ^ $ + 3 2 00941990 01040707 01432474 -mouth_off v 1 1 @ 1 0 01051956 -move v 16 8 ! @ ~ * > ^ $ + 16 13 01835496 01850315 01831531 01855606 02372605 00014549 00124442 02367363 01767949 01649999 01771390 02355959 00539110 02598863 01076615 00879356 -move_around v 2 2 @ ~ 2 1 01909812 02102002 -move_back v 1 3 @ ~ $ 1 1 01994442 -move_back_and_forth v 1 2 @ ~ 1 0 01876530 -move_in v 3 3 ! @ $ 3 1 01856096 02015384 01855982 -move_in_on v 2 1 @ 2 1 02019175 02440914 -move_into v 1 2 ~ ^ 1 1 02016523 -move_involuntarily v 1 2 @ ~ 1 0 00010054 -move_on v 1 2 @ ~ 1 1 01992503 -move_out v 2 4 ! @ ~ > 2 0 02404904 01856211 -move_over v 1 2 @ $ 1 1 01848465 -move_reflexively v 1 2 @ ~ 1 0 00010054 -move_through v 1 3 @ ~ $ 1 0 01915365 -move_up v 2 2 @ ~ 2 2 01969779 01968569 -mow v 2 3 @ ~ + 2 1 01319562 00034758 -mow_down v 1 1 @ 1 0 00479176 -muck v 3 2 @ + 3 1 00178380 02083087 01534745 -muck_about v 1 2 @ ~ 1 0 01473346 -muck_around v 1 2 @ ~ 1 0 01473346 -muck_up v 2 1 @ 2 1 02527651 01534745 -muckrake v 1 2 @ + 1 0 00934744 -mud v 2 3 @ + ; 2 0 01534745 01361884 -mud-wrestle v 1 1 @ 1 0 01504910 -muddle v 2 2 @ + 2 0 01419867 00620532 -muddy v 3 1 @ 3 0 01252875 00620926 00543918 -muddy_up v 1 1 @ 1 0 01252875 -mudwrestle v 1 1 @ 1 0 01504910 -muff v 2 2 @ + 2 0 02529896 02527651 -muffle v 2 2 @ + 2 1 01568630 02191311 -mug v 1 3 @ + ; 1 0 02277663 -mug_up v 1 2 @ $ 1 0 00605783 -mulch v 1 2 @ + 1 0 01234379 -mulct v 2 3 @ ~ + 2 0 02572119 02307412 -mull v 2 3 @ ~ + 2 1 00630380 02196540 -mull_over v 1 2 @ ~ 1 0 00630380 -multiply v 4 5 ! @ ~ + ; 4 3 00641672 00247390 00056334 00055142 -mumble v 2 2 @ + 2 1 01044533 01175224 -mummify v 3 3 @ $ + 3 0 02680358 02227127 00242205 -munch v 1 2 @ + 1 0 01201693 -munition v 1 2 @ + 1 0 02334756 -murder v 2 3 @ ~ + 2 2 02482425 00548750 -murk v 1 2 @ + 1 0 00312060 -murmur v 2 3 @ ~ + 2 1 01044114 00909219 -muscle v 1 2 @ + 1 0 02019431 -muscle_into v 1 1 @ 1 1 01873417 -muse v 1 3 @ ~ + 1 1 00630380 -mush v 2 3 @ $ + 2 0 01939678 01939406 -mushroom v 2 2 @ + 2 0 01382437 00231445 -muss v 1 2 @ + 1 0 01473886 -mussitate v 1 2 @ + 1 0 01044533 -muster v 2 2 @ + 2 2 01381549 00793271 -muster_in v 1 2 @ ~ 1 0 01097500 -muster_out v 1 2 @ ~ 1 0 01097743 -muster_up v 1 1 @ 1 0 01381549 -mutate v 1 3 @ ~ + 1 0 00119873 -mute v 1 2 @ + 1 0 02191311 -mutilate v 3 3 @ ~ + 3 1 00292672 00548750 00090708 -mutiny v 1 2 @ + 1 0 02583958 -mutter v 2 2 @ + 2 2 01044533 00909219 -muzzle v 3 3 ! @ + 3 0 02340897 02190943 01284683 -mystify v 2 4 ! @ ~ + 2 1 00622384 00518653 -mythicise v 2 1 @ 2 0 00623656 00135013 -mythicize v 2 1 @ 2 0 00623656 00135013 -mythologise v 2 2 @ + 2 0 01634734 00135013 -mythologize v 2 3 ! @ + 2 0 01634734 00135013 -nab v 3 2 @ ; 3 2 01600759 01215137 01213273 -nag v 3 2 @ + 3 2 00844941 01766638 00610928 -nail v 7 4 @ ^ + ; 7 3 01357831 01215137 01401772 02524897 02522581 02287380 01117484 -nail_down v 3 2 @ ~ 3 1 02524897 00715541 00481941 -name v 9 5 @ ~ * $ + 9 7 01028748 01026095 02396716 02396205 00947439 01024190 00652346 00945853 00645552 -namedrop v 1 1 @ 1 0 01025089 -nap v 1 3 @ ~ + 1 0 00015498 -narcotise v 1 1 @ 1 0 00085506 -narcotize v 1 2 @ + 1 1 00085506 -nark v 2 4 @ ~ $ + 2 0 01787955 00936913 -narrate v 2 3 @ ~ + 2 1 00954271 00953216 -narrow v 4 5 ! @ ~ ^ + 4 4 00305109 00715541 00437449 00304422 -narrow_down v 2 2 @ ~ 2 1 00715541 00437449 -nasale v 1 1 @ 1 1 00985593 -nasalise v 2 3 @ $ + 2 0 00951399 00951206 -nasalize v 2 3 @ $ + 2 0 00951399 00951206 -nationalise v 2 4 ! @ ~ + 2 0 00578295 00411547 -nationalize v 2 4 ! @ ~ + 2 1 00411547 00578295 -natter v 1 2 @ ~ 1 0 01038666 -naturalise v 4 4 @ * + ; 4 0 00412993 00412696 00412292 00302464 -naturalize v 5 5 ! @ * + ; 5 1 00412292 00939757 00412993 00412696 00302464 -nauseate v 2 3 @ ~ + 2 0 02195191 01808374 -navigate v 3 3 @ ~ + 3 1 01846320 01933305 01932704 -nazify v 1 3 ! @ + 1 0 00502085 -near v 1 4 @ ~ * $ 1 1 02053941 -neaten v 2 2 @ ~ 2 0 00275843 00040353 -necessitate v 2 5 ! @ ~ $ + 2 2 02627934 02635547 -neck v 1 4 @ ~ $ + 1 0 01426153 -necrose v 1 1 @ 1 0 00097394 -need v 3 4 @ ~ $ + 3 3 02627934 01188725 01189113 -needle v 2 3 @ + ; 2 1 00851733 01331027 -negate v 4 5 ! @ ~ + ; 4 0 02663141 00823436 00666886 00470084 -negative v 1 4 @ ~ * + 1 0 02473431 -neglect v 4 3 ! ~ + 4 4 00614999 02529284 00616153 00616857 -negociate v 6 3 @ ~ ; 6 0 02522864 02221328 02221178 02050688 00762478 00761713 -negotiate v 2 3 @ ~ + 2 1 00761713 02050688 -neigh v 1 2 @ + 1 0 01059743 -neighbor v 2 2 @ + 2 0 02608176 02608004 -neighbour v 2 2 @ + 2 0 02608176 02608004 -nerve v 1 2 @ + 1 0 01806271 -nest v 4 3 @ $ + 4 2 02654947 01529766 01424948 01383393 -nestle v 3 3 @ $ + 3 1 01424948 02691354 01425348 -net v 4 3 @ $ + 4 1 02291258 02291548 01672168 01365945 -net_fish v 1 1 @ 1 0 01143410 -netmail v 1 4 @ ~ * ; 1 0 01032451 -nett v 1 1 @ 1 0 01365945 -nettle v 2 4 @ ~ $ + 2 0 02120715 01787955 -network v 1 3 @ + ; 1 0 01032840 -neuter v 1 2 @ ~ 1 0 00060477 -neutralise v 4 2 @ + 4 0 01327301 01117931 00470084 00469904 -neutralize v 6 3 @ ~ + 6 2 02535896 00470084 02543874 01327301 01117931 00469904 -nibble v 3 2 @ + 3 0 01446729 01446420 01174294 -nick v 4 2 @ + 4 0 01259141 01259005 00511318 00054535 -nickel v 1 2 @ + 1 0 01395663 -nickel-and-dime v 2 1 @ 2 0 02266784 01385013 -nicker v 1 2 @ + 1 0 01059743 -nickname v 1 2 @ + 1 1 01028640 -nictate v 1 3 @ ~ + 1 0 00007739 -nictitate v 1 3 @ ~ + 1 0 00007739 -niggle v 2 3 @ ~ + 2 0 01793933 00774056 -nigrify v 1 1 @ 1 0 00280532 -nip v 3 3 @ ~ + 3 2 01456771 01446569 01456463 -nip_off v 1 1 @ 1 0 01456463 -nitpick v 1 2 @ + 1 0 00846218 -nitrate v 1 3 @ + ; 1 0 00185103 -nitrify v 3 4 ! @ * + 3 0 00504901 00504676 00502478 -nitrogenise v 1 1 @ 1 0 00504676 -nitrogenize v 1 2 @ + 1 0 00504676 -nix v 1 2 @ ~ 1 0 00795863 -nobble v 4 3 @ ~ ; 4 0 02572119 02276866 01471043 00512640 -nock v 1 3 @ ~ $ 1 0 01275762 -nod v 5 2 @ + 5 3 00898434 00898210 00016702 01877785 00016573 -nod_off v 1 1 ~ 1 0 00017282 -noise v 1 3 @ ~ + 1 0 02172888 -nol.pros. v 1 1 @ 1 0 00363268 -nolle_pros v 1 1 @ 1 0 00363268 -nolle_prosequi v 1 2 @ + 1 0 00363268 -nominate v 4 3 @ ~ + 4 1 00879540 02401523 02396716 02396205 -nonplus v 1 2 @ ~ 1 0 00622384 -noose v 2 2 @ + 2 0 01673630 01342124 -normalise v 2 3 @ $ + 2 0 00468583 00468236 -normalize v 3 3 @ $ + 3 0 00468583 00468236 00303056 -nose v 6 3 @ ^ + 6 2 02169119 01994128 02125223 01873051 01424350 01109644 -nose_out v 1 1 * 1 0 02125460 -nosedive v 1 2 @ ; 1 0 01967634 -nosh v 1 3 @ ~ + 1 0 01173405 -notarise v 1 1 @ 1 0 00822101 -notarize v 1 2 @ + 1 1 00822101 -notate v 1 2 @ + 1 0 00995286 -notch v 2 3 @ ~ + 2 1 01276970 01004550 -note v 4 4 @ ~ * + 4 4 01020005 02118476 02118933 01020934 -notice v 4 6 ! @ ~ * $ + 4 3 02154508 02118476 01058574 01059123 -notify v 1 2 @ + 1 1 00873682 -nourish v 2 3 @ ~ + 2 2 01202728 01204191 -novate v 1 3 @ + ; 1 0 00577330 -novelise v 1 2 @ + 1 0 00116619 -novelize v 1 2 @ + 1 0 00116619 -nucleate v 1 2 @ + 1 1 02626274 -nudge v 2 3 @ ~ + 2 1 01231252 00766289 -nuke v 3 3 @ + ; 3 0 01133288 01132980 00321936 -nullify v 3 3 @ ~ + 3 0 02478059 00667102 00470084 -numb v 1 1 @ 1 0 02115273 -number v 6 3 @ ~ + 6 3 02645007 00948853 00946755 02731632 00948071 00235918 -numerate v 2 3 @ ~ + 2 0 00948071 00626768 -nurse v 5 4 @ $ + ; 5 2 00080705 01773130 02550698 02515194 01186428 -nurture v 3 4 @ ~ > + 3 1 00908351 02539788 01202728 -nut v 1 2 @ + 1 0 01382720 -nutate v 1 2 @ + 1 0 01876311 -nutrify v 1 2 @ + 1 0 01204191 -nuzzle v 3 2 @ $ 3 1 01424948 01424350 01314323 -o.d. v 1 1 @ 1 0 00085353 -o.k. v 1 3 @ ~ + 1 0 00806502 -obey v 1 4 ! @ ~ + 1 1 02542795 -obfuscate v 1 3 ! @ + 1 0 00940214 -object v 2 3 @ ~ + 2 1 00807461 02753865 -objectify v 2 2 @ + 2 0 00532607 00388296 -objurgate v 2 3 @ ~ + 2 0 00864159 00824292 -obligate v 3 4 @ ~ > + 3 0 02506546 02348182 00885217 -oblige v 3 5 ! @ ~ > + 3 2 02506546 00885217 00885925 -obliterate v 4 4 @ ~ $ + 4 3 00478830 00313987 00311338 00472230 -obnubilate v 2 3 @ ~ $ 2 0 02157731 00620673 -obscure v 5 4 @ ~ $ ; 5 3 02157731 00620673 00313712 00587390 00313987 -observe v 9 5 @ ~ * $ + 9 8 02154508 01020005 02118933 02169352 02457233 02578510 02455407 00732552 02578872 -obsess v 2 2 @ + 2 1 01783214 01831143 -obsolesce v 1 2 @ + 1 0 00567775 -obstinate v 1 2 @ + 1 0 00350889 -obstipate v 1 2 @ + 1 0 00074730 -obstruct v 3 5 ! @ ~ $ + 3 2 02557199 01476483 02145543 -obtain v 3 4 @ ~ $ + 3 3 02238085 00522751 02648502 -obtrude v 2 2 @ + 2 0 01873157 00747757 -obtrude_upon v 1 2 @ ~ 1 1 02019716 -obtund v 1 1 @ 1 0 00192356 -obturate v 1 3 @ ~ + 1 0 01476483 -obviate v 2 4 ! @ ~ + 2 0 02629256 02453321 -occasion v 1 3 @ ~ + 1 1 01646528 -occidentalise v 1 2 ! @ 1 0 00523645 -occidentalize v 1 2 ! @ 1 0 00523645 -occlude v 1 3 @ ~ + 1 1 01476483 -occult v 3 1 @ 3 0 02158340 02149611 02145429 -occupy v 8 4 @ ~ $ + 8 7 02415831 02648639 02649042 02678438 01126360 02267989 00600370 02394183 -occur v 3 2 @ ~ 3 2 00339934 00723349 02612368 -odorize v 1 5 ! @ ~ > + 1 0 02125641 -odourise v 1 5 ! @ ~ > + 1 0 02125641 -off v 1 2 @ ~ 1 0 02482425 -offend v 4 4 @ ~ > + 4 1 01789270 02566528 01810447 01793177 -offer v 13 6 @ ~ * $ + ; 13 8 02296726 02297142 02425112 00706557 02297742 02297409 02298632 02157361 02613487 02376289 02297948 00879764 00871623 -offer_up v 1 2 @ ~ 1 0 02613487 -officer v 1 2 @ + 1 1 00752335 -officialise v 1 1 @ 1 0 00523304 -officialize v 1 1 @ 1 0 00523304 -officiate v 2 3 @ ~ + 2 2 02382087 01096497 -offload v 2 1 @ 2 0 02233081 01488123 -offsaddle v 1 1 @ 1 1 01492576 -offset v 5 3 @ ~ + 5 2 02718015 02717831 02232044 01747085 01746940 -ogle v 1 2 @ + 1 1 02164067 -oil v 2 2 @ + 2 1 01268571 00085626 -oink v 1 1 @ 1 0 01054694 -okay v 1 3 @ ~ + 1 0 00806502 -omen v 1 3 @ ~ + 1 0 00871942 -omit v 2 3 @ ~ + 2 1 00615774 00614999 -one-step v 1 2 @ + 1 0 01897677 -ooh v 1 1 @ 1 0 00865776 -ooze v 2 3 @ ~ + 2 0 02071974 00067999 -ooze_out v 1 2 @ ~ 1 0 00067999 -ooze_through v 1 2 @ ~ 1 0 01605537 -opacify v 2 3 @ $ + 2 0 00577689 00577500 -opalesce v 2 2 @ + 2 0 02765231 02734140 -opalise v 2 1 @ 2 0 00117230 00117085 -opalize v 2 2 @ + 2 0 00117230 00117085 -open v 11 7 ! @ ~ > ^ + ; 11 9 01346003 02426171 01346804 02425462 01579813 00539936 00540101 02744651 01077887 02358034 02140630 -open_fire v 1 1 @ 1 1 01135783 -open_up v 7 4 ! @ ~ > 7 4 01346003 00540101 00539936 01645421 02426171 01346804 01041298 -operate v 7 5 @ ~ $ + ; 7 5 02443849 01525666 01224744 01109863 00341285 01510827 00083809 -operate_on v 1 3 @ ~ ; 1 0 00083809 -opine v 2 3 @ ~ + 2 0 01027668 00631737 -oppose v 6 3 @ ~ + 6 4 00775831 01091427 02666531 01081152 02378623 00776059 -oppress v 2 3 @ ~ + 2 1 02424652 02585489 -oppugn v 1 1 @ 1 0 00867409 -opsonize v 1 2 @ + 1 0 00577839 -opt v 1 3 ~ * + 1 0 00679389 -opt_out v 1 1 @ 1 0 00679715 -optimise v 3 2 @ + 3 0 00172505 00124226 00011852 -optimize v 3 2 @ + 3 0 00172505 00124226 00011852 -orate v 1 3 @ ~ + 1 0 00828901 -orb v 1 2 @ ~ 1 0 02043982 -orbit v 1 3 @ ~ + 1 1 02043982 -orchestrate v 2 4 @ ~ + ; 2 0 01707737 00710005 -ordain v 4 3 @ ~ + 4 2 02427916 02386012 02427726 00746084 -order v 9 4 ! @ ~ + 9 6 00746718 00745499 00747135 02511551 00277659 00276883 02386012 00735571 00658052 -ordinate v 2 2 @ ~ 2 0 02386012 00466053 -organise v 6 4 ! @ ~ + 6 1 00404642 02448185 02434238 02432530 01651444 00710005 -organize v 6 4 ! @ ~ + 6 6 02448185 02432530 00710005 00404642 01651444 02434238 -orient v 5 4 ! @ ~ > 5 3 02713184 02159197 02712914 00874537 00301662 -orientalise v 1 2 ! @ 1 0 00523895 -orientalize v 1 2 ! @ 1 0 00523895 -orientate v 1 2 @ ~ 1 0 02159197 -originate v 3 5 @ ~ ^ $ + 3 2 02624263 01628449 02743343 -originate_in v 1 1 ~ 1 1 02627666 -ornament v 2 4 @ ~ $ + 2 1 01675963 02749247 -orphan v 1 2 @ + 1 0 02315277 -oscillate v 2 3 @ ~ + 2 0 02706046 01878063 -osculate v 3 4 @ ~ + ; 3 0 02752431 02751055 01431230 -ossify v 3 2 @ + 3 1 00267249 00418110 00267365 -ostentate v 1 3 @ ~ + 1 0 02141973 -ostracise v 2 4 @ ~ * + 2 0 02504017 02465658 -ostracize v 2 4 @ ~ * + 2 1 02504017 02465658 -oust v 2 3 @ ~ + 2 1 02401809 02406449 -out v 3 1 @ 3 0 00935456 00935264 00935141 -out-herod v 1 1 @ 1 0 01107705 -out_in v 1 1 @ 1 0 02017299 -outbalance v 1 1 @ 1 0 02645597 -outbid v 2 3 ! @ ; 2 0 02301000 02299801 -outbrave v 2 1 @ 2 0 01117219 01107625 -outcall v 1 1 @ 1 0 02300734 -outclass v 1 2 @ ; 1 1 00659373 -outcrop v 1 2 @ + 1 0 00424499 -outcry v 2 4 @ ~ $ + 2 0 01105186 00912048 -outdistance v 1 1 @ 1 1 02081795 -outdo v 2 2 @ ~ 2 1 01105639 01109259 -outdraw v 1 1 @ 1 1 01105526 -outface v 1 1 @ 1 1 02132989 -outfight v 1 1 @ 1 1 01109431 -outfit v 1 3 @ ~ + 1 0 02339413 -outflank v 2 2 @ ~ 2 0 02085446 01109259 -outfox v 2 2 @ $ 2 0 01107806 01104852 -outgeneral v 1 1 @ 1 1 01109773 -outgo v 1 2 @ ~ 1 0 01105639 -outgrow v 2 1 @ 2 1 00543745 01105097 -outguess v 1 1 @ 1 0 00917651 -outlast v 1 1 * 1 0 02619739 -outlaw v 1 4 ! @ ~ + 1 1 02480923 -outline v 3 4 @ ~ + ; 3 1 01006421 01701634 01689379 -outlive v 1 1 * 1 1 02619739 -outmaneuver v 1 2 @ ~ 1 1 01110247 -outmanoeuvre v 1 2 @ ~ 1 0 01110247 -outmarch v 1 1 @ 1 0 01110880 -outmatch v 1 2 @ ~ 1 0 01105639 -outmode v 1 1 @ 1 1 00559754 -outnumber v 1 1 @ 1 1 02644905 -outpace v 1 1 @ 1 0 01106670 -outperform v 1 2 @ ~ 1 0 01105639 -outplay v 1 1 @ 1 1 01154957 -outpoint v 2 2 @ ; 2 0 01946279 01101103 -output v 1 2 @ + 1 1 01622795 -outrage v 3 3 @ ~ + 3 1 01810447 02568065 02567519 -outrange v 1 1 @ 1 0 01107439 -outrank v 1 1 @ 1 0 02673844 -outride v 2 3 @ ~ ; 2 0 02619122 01958278 -outrival v 1 1 @ 1 0 01122630 -outroar v 1 1 @ 1 0 01105296 -outrun v 1 1 @ 1 1 01927608 -outsail v 1 1 @ 1 0 01105385 -outscore v 1 1 @ 1 0 01101103 -outsell v 2 1 @ 2 0 01106504 01106377 -outshine v 2 2 @ ~ 2 0 02763166 01107254 -outshout v 1 1 @ 1 0 01105186 -outsmart v 2 3 @ ~ $ 2 1 01104852 01110247 -outsource v 1 1 @ 1 0 02361100 -outspan v 1 3 ! @ ; 1 0 01491517 -outstare v 1 1 @ 1 0 02132989 -outstay v 2 1 @ 2 0 02637466 02619291 -outstrip v 2 2 @ ~ 2 1 01105639 02081795 -outvie v 1 1 @ 1 0 01122630 -outvote v 1 1 @ 1 0 02462997 -outwear v 2 3 @ ~ > 2 0 02705303 00075021 -outweigh v 2 1 @ 2 2 01107544 02645597 -outwit v 1 2 @ $ 1 0 01104852 -oven_broil v 1 3 @ ~ ; 1 0 00328370 -ovenbake v 1 2 @ ; 1 0 00320121 -over-correct v 1 1 @ 1 0 02520360 -over-refine v 1 1 @ 1 0 00474308 -overachieve v 1 2 @ + 1 0 02562235 -overact v 1 4 ! @ + ; 1 0 01751173 -overarch v 2 1 @ 2 0 02644771 02035315 -overawe v 1 2 @ ~ 1 0 01779803 -overbalance v 2 1 @ 2 0 02645597 02265090 -overbear v 3 1 @ 3 0 02647184 01652652 01389186 -overbid v 2 4 ! @ + ; 2 0 02301151 02299552 -overboil v 2 2 @ ; 2 0 00375268 00322719 -overburden v 2 2 @ + 2 1 00750842 01487718 -overcapitalise v 3 2 @ + 3 0 00731400 00671859 00162350 -overcapitalize v 3 2 @ + 3 0 00731400 00671859 00162350 -overcast v 3 4 ! @ ~ + 3 0 02770717 01330269 01330093 -overcharge v 2 5 ! @ ~ * + 2 0 02319050 01488555 -overclothe v 1 1 @ 1 0 00049309 -overcloud v 2 1 @ 2 0 02771020 00313712 -overcome v 4 3 @ ~ + 4 3 01108148 01108627 01809321 01104018 -overcompensate v 2 3 @ $ + 2 0 02672859 02520360 -overcook v 1 1 @ 1 0 00323571 -overcrop v 1 2 @ ; 1 0 01741692 -overcrowd v 2 3 @ ~ + 2 0 02028181 02027926 -overcultivate v 1 2 @ ; 1 0 01741692 -overdo v 1 2 @ ~ 1 0 02568999 -overdose v 1 1 @ 1 0 00085353 -overdramatise v 1 1 @ 1 0 00988692 -overdramatize v 1 1 @ 1 0 00988692 -overdraw v 2 2 @ ~ 2 0 02312186 00839834 -overdress v 2 4 ! @ ~ $ 2 0 00049309 00044149 -overdrive v 2 2 @ + 2 1 02408530 01161695 -overeat v 1 2 @ + 1 1 01193099 -overemphasise v 1 1 @ 1 0 00840609 -overemphasize v 1 1 @ 1 1 00840609 -overestimate v 2 4 ! @ ~ + 2 1 00672017 00695475 -overexert v 1 2 @ + 1 0 02371975 -overexert_oneself v 1 1 @ 1 0 01146382 -overexploit v 1 2 @ + 1 0 01164568 -overexpose v 2 5 ! @ ~ + ; 2 1 02113622 02113054 -overextend v 1 1 @ 1 0 01165898 -overfatigue v 1 1 @ 1 0 00075998 -overfeed v 1 2 @ + 1 1 01179530 -overfill v 1 1 @ 1 1 00453554 -overflow v 2 4 @ ~ * + 2 1 02072159 01763101 -overfly v 1 2 @ ; 1 0 01840092 -overgeneralise v 1 1 @ 1 0 01022257 -overgeneralize v 1 1 @ 1 0 01022257 -overgorge v 1 1 @ 1 0 01193099 -overgrow v 3 1 @ 3 0 02669709 00232843 00232714 -overhang v 2 2 @ + 2 0 02713748 02697435 -overhaul v 2 4 @ ~ * + 2 2 02049696 00262076 -overhear v 1 3 @ * $ 1 1 02189168 -overheat v 2 3 @ > + 2 1 00370263 00372501 -overindulge v 1 2 @ + 1 1 01193099 -overjoy v 1 1 @ 1 0 01813228 -overlap v 2 3 @ ~ + 2 2 02660631 02688794 -overlay v 2 4 @ ~ $ + 2 1 01336635 01326890 -overleap v 3 2 @ ~ 3 0 02569396 01966168 00614999 -overlie v 2 1 @ 2 0 01547797 01326890 -overload v 3 2 @ + 3 2 01488847 00182037 01488555 -overlook v 5 3 @ ~ + 5 3 02166361 02721966 00614999 02696129 02166248 -overmaster v 1 2 @ ~ 1 0 01110517 -overpay v 1 3 ! @ + 1 0 02250077 -overplay v 1 2 @ ; 1 0 01751173 -overpopulate v 1 2 @ + 1 0 02651014 -overpower v 2 2 @ ~ 2 2 01110517 01809321 -overpraise v 1 1 @ 1 0 00857407 -overprice v 1 1 @ 1 0 02351378 -overprint v 1 3 @ ~ + 1 0 01748273 -overproduce v 2 2 @ + 2 1 01740468 01625206 -overprotect v 2 2 @ + 2 0 02550516 01128899 -overrate v 1 3 @ ~ + 1 0 00672017 -overreach v 2 2 @ $ 2 2 02525868 01104852 -overreact v 1 2 @ + 1 0 00718117 -overrefine v 1 2 @ + 1 0 00474308 -override v 4 3 @ + ; 4 1 00716130 02644622 02544191 01957995 -overrule v 1 1 @ 1 0 00716130 -overrun v 5 4 @ ~ * + 5 1 02020413 02654686 02072159 01103459 00705924 -oversee v 1 3 @ ~ + 1 0 02443049 -oversew v 1 1 @ 1 0 01330442 -overshadow v 3 2 @ ~ 3 1 02744280 02696306 02158196 -overshoot v 2 5 ! @ ~ * + 2 2 01135219 00705778 -oversimplify v 2 2 @ + 2 0 02569235 00400741 -oversleep v 1 1 * 1 0 00015713 -overspecialise v 1 1 @ 1 0 00437976 -overspecialize v 1 1 @ 1 0 00437976 -overspend v 2 2 ! @ 2 0 02267727 02266317 -overspread v 1 2 @ ~ 1 0 02689299 -overstate v 1 4 ! @ ~ + 1 0 00839834 -overstay v 1 1 @ 1 0 02637466 -overstep v 2 1 @ 2 1 02019574 02669081 -overstock v 1 2 ! @ 1 0 02323604 -overstrain v 1 2 @ + 1 1 01165898 -overstress v 1 1 @ 1 0 00840609 -overstretch v 1 1 @ 1 0 00071803 -overstuff v 1 1 @ 1 0 01525066 -oversupply v 1 2 @ + 1 0 02356704 -overtake v 3 5 @ ~ * $ + 3 2 01155090 02049696 01809321 -overtax v 1 1 @ 1 0 02308275 -overthrow v 2 3 @ ~ + 2 1 02402409 00716130 -overtire v 1 1 @ 1 0 00075998 -overtop v 1 2 @ ~ 1 0 02696129 -overtrump v 1 2 @ ; 1 0 01078426 -overturn v 6 5 @ ~ > $ + 6 3 01909397 01909978 00716130 02402409 00799798 00125633 -overuse v 1 2 @ + 1 0 01161695 -overvalue v 1 3 ! @ + 1 0 00695475 -overweary v 1 1 @ 1 0 00075998 -overwhelm v 4 2 @ ~ 4 2 01809321 00751131 01339294 01110517 -overwinter v 1 1 @ 1 0 02709573 -overwork v 2 3 @ ~ + 2 1 01669174 02409148 -overwrite v 1 2 @ ; 1 0 00999079 -ovulate v 1 2 @ + 1 0 00062397 -owe v 3 2 @ ~ 3 3 02254155 02731814 02253956 -own v 1 3 ~ $ + 1 1 02204692 -own_up v 1 1 @ 1 0 00817909 -oxidate v 2 5 @ ~ $ + ; 2 0 00239321 00238867 -oxidise v 2 6 ! @ ~ $ + ; 2 1 00238867 00239321 -oxidize v 2 6 ! @ ~ $ + ; 2 0 00239321 00238867 -oxygenate v 1 2 @ + 1 0 00185465 -oxygenise v 3 1 @ 3 0 00308775 00308269 00185465 -oxygenize v 3 2 @ + 3 0 00308775 00308269 00185465 -oyster v 1 2 @ + 1 0 01383511 -ozonise v 1 1 @ 1 0 00585805 -ozonize v 1 1 @ 1 0 00585805 -pace v 4 3 @ ~ + 4 3 01929254 02091165 00490722 00702601 -pacify v 2 2 @ + 2 1 01765392 01647867 -pack v 13 8 ! @ ~ * > $ + ; 13 5 01482449 02086963 01483779 01451176 02396536 02717102 02064131 01926031 01574571 01484884 01484027 01483131 00108909 -pack_on v 1 1 @ 1 1 00107110 -pack_together v 1 3 @ ~ * 1 0 01389329 -package v 1 2 @ + 1 1 01485158 -pad v 4 3 @ ~ + 4 1 00956405 01921204 01526956 00321486 -paddle v 6 4 @ ~ + ; 6 1 01947887 02419613 01961859 01918803 01420928 01419373 -padlock v 1 2 @ + 1 1 01342012 -paganise v 1 1 @ 1 0 00571738 -paganize v 1 2 @ + 1 0 00571738 -page v 3 2 @ + 3 1 00754560 02412513 00949093 -paginate v 1 2 @ + 1 0 00949093 -pain v 2 4 @ ~ > + 2 1 00070816 01792567 -paint v 4 4 @ ~ + ; 4 3 01684899 01362736 01684663 01363482 -paint_a_picture v 1 2 @ ~ 1 1 00930368 -paint_the_lily v 2 1 @ 2 0 01677242 00183241 -pair v 5 4 @ ~ $ + 5 2 02490430 01292885 01465365 01465218 01428853 -pair_off v 1 1 @ 1 0 02490430 -pal v 1 2 @ + 1 0 02588871 -pal_up v 1 1 @ 1 0 02588871 -palatalise v 1 1 @ 1 0 00951069 -palatalize v 1 1 @ 1 0 00951069 -palaver v 3 3 @ ~ + 3 0 01036804 00768778 00763260 -pale v 1 2 @ + 1 1 00103619 -palisade v 1 3 @ ~ + 1 0 01130607 -pall v 8 4 @ ~ > + 8 1 00538199 01785748 01335588 01193932 00538454 00538323 00392142 00076114 -palliate v 2 4 @ ~ + ; 2 0 00906037 00064095 -palm v 1 3 @ ~ + 1 1 01210737 -palm_off v 1 2 @ ; 1 1 02244426 -palpate v 1 4 @ $ + ; 1 0 01210352 -palpebrate v 1 2 @ + 1 0 00008055 -palpitate v 3 3 @ $ + 3 0 01889392 01889129 01879928 -palsy v 1 2 @ + 1 0 00268680 -palter v 1 2 @ + 1 0 00835506 -pamper v 1 2 @ + 1 1 02570267 -pan v 3 2 @ + 3 2 01998302 01536508 00846344 -pan-broil v 1 2 @ ; 1 0 00328579 -pan-fry v 1 2 @ ; 1 0 00326049 -pan_off v 1 1 @ 1 0 01536508 -pan_out v 2 1 @ 2 0 02525985 01536508 -pan_roast v 1 2 @ ; 1 0 00325085 -pander v 2 3 @ ~ + 2 0 01182293 01180975 -panel v 2 2 @ + 2 1 01678519 00625963 -panhandle v 1 2 @ + 1 0 02270978 -panic v 2 4 @ ~ > + 2 2 01782218 01781983 -pant v 2 2 @ + 2 2 00005526 00986173 -pant-hoot v 1 1 @ 1 0 01042995 -pantomime v 1 2 @ + 1 1 01724185 -paper v 2 2 @ + 2 0 01268457 01268112 -par v 1 3 @ + ; 1 0 01084331 -parachute v 1 4 @ ~ * + 1 0 01968275 -parade v 2 2 @ + 2 2 01924712 01924505 -paragraph v 3 3 @ + ; 3 0 02469443 01699700 01699539 -parallel v 3 2 @ + 3 2 02659222 00525281 02659358 -parallel-park v 1 2 @ ; 1 0 01934842 -parallelize v 1 1 @ 1 0 01498615 -paralyse v 2 2 @ ~ 2 0 00268796 00268477 -paralyze v 2 2 @ ~ 2 2 00268796 00268477 -paraphrase v 1 3 @ ~ + 1 1 00961736 -parboil v 1 2 @ ; 1 0 00322559 -parcel v 3 2 @ + 3 1 02469085 01336334 01283746 -parcel_out v 1 2 @ ~ 1 0 02294436 -parch v 1 1 @ 1 1 00218330 -pardon v 2 4 @ ~ + ; 2 2 00905852 00905399 -pare v 4 3 @ ~ + 4 1 00233089 01552219 01262936 01262564 -pare_down v 1 1 @ 1 1 00233089 -parent v 1 3 ~ > + 1 0 02539788 -parget v 1 3 @ + ; 1 0 01361561 -park v 2 4 @ ~ + ; 2 2 01493380 01934427 -parlay v 1 1 @ 1 1 01139623 -parley v 1 3 @ ~ + 1 0 00763009 -parody v 2 3 @ ~ + 2 1 01723963 00849939 -parole v 1 2 @ + 1 0 02591893 -parrot v 1 2 @ + 1 1 00958174 -parry v 2 3 @ ~ + 2 1 01147060 00809654 -parse v 1 2 @ ; 1 0 00643910 -part v 5 5 @ ~ > ^ + 5 2 02030158 02431320 02014165 01557774 01556921 -part_with v 1 1 @ 1 0 02345647 -partake v 3 3 @ ~ + 3 1 02736660 02295208 01172701 -partake_in v 2 2 @ ~ 2 0 02450417 02295208 -parti-color v 1 1 @ 1 0 00284669 -participate v 2 3 @ ~ + 2 2 02450256 01082606 -particularise v 1 3 @ ~ + 1 0 01021973 -particularize v 1 3 @ ~ + 1 0 01021973 -partition v 2 3 @ ~ + 2 0 01563724 00332835 -partition_off v 1 2 @ ~ 1 0 01563724 -partner v 2 2 @ + 2 1 02332086 02371684 -partner_off v 1 1 @ 1 0 02490430 -party v 1 3 @ ~ + 1 0 02491851 -pass v 25 7 ! @ ~ > ^ $ + 25 19 02050132 02051694 02466670 02072849 02230772 02685951 02049696 00339934 02523351 02708420 01212230 00742320 00421691 02525044 02669081 02523953 02423513 02221635 01972131 02231473 02229550 02052476 00803325 00358431 00072989 -pass_across v 1 3 @ ~ $ 1 0 01915365 -pass_along v 1 2 @ ~ 1 0 00742320 -pass_around v 2 4 @ ~ > $ 2 0 02043190 00968211 -pass_away v 2 3 @ ~ $ 2 2 00358431 00351576 -pass_by v 1 2 @ ~ 1 1 02051694 -pass_judgment v 1 2 @ ~ 1 0 00670261 -pass_off v 6 2 @ ~ 6 2 02134492 00801522 02052965 00421691 00339934 00105333 -pass_on v 7 3 @ ~ $ 7 4 02230772 02296153 01992503 02230247 02589013 02043190 00742320 -pass_out v 3 2 @ ~ 3 1 00023646 02201644 00023868 -pass_over v 5 5 @ ~ ^ $ ; 5 4 00616498 01915365 01912159 01840092 01392237 -pass_through v 3 3 @ ~ $ 3 3 01915365 02053190 01913363 -pass_up v 2 3 @ ~ $ 2 1 02237338 02119353 -pass_water v 1 3 @ ~ $ 1 1 00072012 -pass_with_flying_colors v 1 1 @ 1 0 02522581 -paste v 3 3 @ ~ + 3 1 01332205 01412644 01332599 -pasteurise v 1 3 @ > + 1 0 00364629 -pasteurize v 1 3 @ > + 1 0 00364629 -pasture v 2 5 @ ~ $ + ; 2 0 01576478 01576165 -pat v 2 2 @ + 2 2 01243661 01233027 -patch v 4 4 @ ~ ^ + 4 2 01590171 02357693 00262703 00261705 -patch_up v 2 2 @ ~ 2 1 00262703 00764902 -patent v 3 2 @ + 3 1 02239692 02445356 00568483 -patinate v 1 2 @ + 1 0 01265499 -patinise v 1 1 @ 1 0 01265499 -patinize v 1 2 @ + 1 0 01265499 -patrol v 1 2 @ + 1 1 02454939 -patronage v 2 3 @ $ + 2 0 01185011 00908621 -patronise v 4 5 ! @ ~ $ + 4 0 02466134 02219940 00908977 00908621 -patronize v 4 5 ! @ ~ $ + 4 3 02219940 02466134 00908977 00908621 -patter v 2 2 @ + 2 0 02757828 02185187 -pattern v 2 3 @ ~ + 2 1 01743784 02712243 -pattern-bomb v 1 1 @ 1 0 01133194 -pauperise v 1 2 @ + 1 0 02317970 -pauperize v 1 2 @ + 1 0 02317970 -pause v 2 3 @ ~ + 2 2 02641035 00779061 -pave v 1 3 @ ~ + 1 0 01267098 -paw v 2 3 @ * + 2 2 01211455 01211098 -pawn v 1 3 @ + ; 1 0 02347220 -pay v 11 6 @ ~ ^ $ + ; 11 9 02251743 01060494 02252931 02291708 02253456 00732224 02732292 02488056 00737884 02344243 02253154 -pay_back v 2 3 @ $ + 2 0 02344381 01153947 -pay_cash v 1 2 ! @ 1 0 02317548 -pay_for v 1 1 @ 1 0 02384940 -pay_heed v 1 2 @ ~ 1 0 02170427 -pay_off v 6 4 @ ~ $ ; 6 4 02292004 02352019 02256853 02253456 02284803 01153947 -pay_out v 1 1 @ 1 1 02301502 -pay_up v 1 3 ! @ ~ 1 0 02252931 -peach v 1 2 @ $ 1 0 00937208 -peak v 1 4 @ ~ * + 1 1 02008066 -peal v 2 3 @ ~ + 2 0 02181402 02180898 -pearl v 1 2 @ + 1 0 01383800 -peck v 5 2 @ + 5 2 01243474 01173813 01431879 01173656 00844941 -peck_at v 1 1 @ 1 0 01173656 -peculate v 1 3 @ ~ + 1 0 02292535 -pedal v 2 5 @ ~ * + ; 2 0 01935476 01728052 -peddle v 1 2 @ + 1 1 02302817 -pedicure v 1 2 @ + 1 0 00042936 -pee v 1 4 @ ~ $ + 1 0 00072012 -pee-pee v 1 3 @ ~ $ 1 0 00072012 -peek v 1 2 @ + 1 0 02165304 -peel v 3 4 @ ~ $ + 3 1 01262936 01259951 00049900 -peel_off v 5 3 @ ~ ; 5 2 01263215 00050315 02033703 01259951 00009492 -peep v 5 3 @ ~ + 5 1 02165146 02137592 01052301 00916011 00422764 -peer v 1 1 @ 1 1 02168965 -peer_review v 1 1 @ 1 0 00855794 -peeve v 1 1 @ 1 0 01788932 -peg v 4 3 @ ^ + 4 0 02524897 01442203 01340283 00271201 -peg_away v 1 1 @ 1 0 02415573 -peg_down v 2 2 @ ~ 2 1 01340283 00715541 -pelt v 3 4 @ ~ * + 3 2 01507914 01121320 02758033 -pelt_along v 1 2 @ ~ 1 0 02058994 -pen v 1 6 @ ~ * $ + ; 1 1 01698271 -pen_up v 1 1 @ 1 0 01345877 -penalise v 1 3 ~ * + 1 0 02499629 -penalize v 1 3 ~ * + 1 1 02499629 -pencil v 1 3 @ * + 1 0 01688604 -penetrate v 7 4 @ ~ > + 7 3 01227675 00728954 00591755 02435634 01993031 01422003 01229071 -penny-pinch v 1 1 @ 1 1 02266784 -pension v 1 2 @ + 1 0 02262601 -pension_off v 2 2 @ > 2 0 02380571 02262601 -people v 2 2 @ + 2 1 00451461 02650840 -pep_up v 2 2 @ ~ 2 1 00858781 00192659 -pepper v 2 4 @ * + ; 2 2 02196081 01121320 -peptise v 1 3 @ + ; 1 0 00330909 -peptize v 1 3 @ + ; 1 0 00330909 -perambulate v 2 2 @ + 2 0 02165754 01910965 -perceive v 2 3 @ ~ + 2 2 02106506 00591519 -perch v 3 2 @ + 3 1 01543731 01978700 01611240 -percolate v 6 4 @ ~ > + 6 0 02071627 02060437 01458464 01458228 01457954 00023473 -percuss v 1 2 @ + 1 0 01248023 -peregrinate v 1 2 @ + 1 0 02081006 -perennate v 1 2 @ + 1 0 02618877 -perfect v 1 3 @ ~ + 1 1 00473572 -perforate v 2 3 @ ~ + 2 0 01442779 01227675 -perform v 4 4 @ ~ + ; 4 4 01712704 02374764 01714208 02561995 -perfume v 2 2 @ + 2 0 02126382 00043480 -perfuse v 2 2 @ + 2 0 00454475 00454251 -peril v 2 3 @ ~ + 2 0 02697120 01036319 -perish v 1 3 @ ~ $ 1 1 00358431 -perjure v 1 3 @ * + 1 0 00834745 -perk v 1 1 @ 1 0 00023473 -perk_up v 2 2 @ ~ 2 1 00023473 00022686 -perm v 1 2 @ + 1 0 00039824 -permeate v 3 3 @ ~ + 3 1 01229071 01457954 01227235 -permit v 3 5 ! @ ~ $ + 3 2 00802318 02423183 00802946 -permute v 1 3 @ ~ + 1 0 00380424 -perorate v 2 2 @ + 2 0 01051698 01051573 -peroxide v 1 2 @ + 1 0 00279661 -perpetrate v 1 3 @ ~ + 1 1 02582615 -perpetuate v 1 3 @ ~ + 1 1 02648253 -perplex v 2 2 @ ~ 2 0 00622384 00402539 -persecute v 1 3 @ ~ + 1 1 02585489 -perseverate v 1 2 @ + 1 0 00958823 -persevere v 1 3 @ ~ + 1 1 00350461 -persist v 3 4 @ ~ $ + 3 3 02647497 00350461 02731024 -persist_in v 1 2 @ $ 1 1 02747922 -personalise v 1 2 ! @ 1 0 00388065 -personalize v 1 2 ! @ 1 1 00388065 -personate v 2 3 @ ~ + 2 0 00837288 00727573 -personify v 3 3 @ ~ + 3 2 02698944 02697725 00727573 -perspire v 1 3 @ ~ + 1 0 00067545 -persuade v 2 5 ! @ ~ $ + 2 2 02586121 00766418 -pertain v 2 4 @ ~ $ + 2 2 02676054 02653706 -perturb v 4 4 @ ~ $ + 4 1 01764171 02065652 02065329 00276601 -peruse v 1 3 @ ~ + 1 1 02152812 -pervade v 1 3 @ ~ + 1 1 01229071 -pervaporate v 2 3 @ $ + 2 0 00367416 00367241 -pervert v 3 3 @ ~ + 3 0 02579447 00932798 00203213 -pester v 1 2 @ + 1 1 01803380 -pestle v 1 2 @ + 1 0 00331842 -pet v 2 3 @ ~ + 2 1 01425892 01226600 -peter_out v 2 1 @ 2 1 02683671 00099517 -petition v 1 3 @ ~ + 1 1 00754731 -petrify v 3 2 @ + 3 1 00192471 00507485 00418110 -pettifog v 1 2 @ + 1 0 00774056 -phase v 2 2 @ + 2 0 01648894 00394381 -phase_in v 1 2 ! @ 1 0 01642717 -phase_out v 1 2 ! @ 1 0 01642820 -philander v 2 3 @ ~ + 2 0 02590910 01037910 -philosophise v 1 2 @ + 1 0 00630026 -philosophize v 1 2 @ + 1 1 00630026 -phlebotomise v 1 2 @ ; 1 0 00086077 -phlebotomize v 1 3 @ + ; 1 0 00086077 -phonate v 1 2 @ + 1 0 00745187 -phone v 1 6 @ ~ * $ + ; 1 1 00789448 -phosphoresce v 1 2 @ + 1 0 02632035 -photocopy v 1 3 @ ~ + 1 0 01736299 -photograph v 2 5 @ ~ $ + ; 2 2 01003249 02734653 -photosensitise v 1 1 @ 1 0 02114730 -photosensitize v 1 1 @ 1 0 02114730 -photostat v 1 2 @ + 1 0 01736669 -phrase v 2 3 @ ~ + 2 1 00980453 00961114 -pick v 12 5 @ ~ * ^ + 12 6 00676450 01382083 00842772 01647131 00178102 00177714 02321648 02287209 01452546 01442578 01243474 01174294 -pick_apart v 1 3 @ ~ * 1 0 00826509 -pick_at v 3 2 @ ~ 3 1 01609115 01173656 00845909 -pick_off v 2 3 @ ~ $ 2 2 02484875 01592456 -pick_out v 2 3 @ ~ * 2 2 00674607 02193194 -pick_over v 1 1 @ 1 0 00677544 -pick_up v 16 6 @ ~ > $ + ; 16 13 01976089 01207402 01957107 02305586 00598954 02355410 01215137 02287041 02107248 00513757 02486534 01811736 00205598 02117955 01173813 00023473 -pick_up_the_gauntlet v 1 1 @ 1 0 00950206 -picket v 2 2 @ + 2 2 02522153 01289026 -pickle v 1 3 @ + ; 1 0 00213223 -picnic v 1 2 @ + 1 1 01168259 -picture v 2 5 @ ~ $ + ; 2 2 01635432 01686956 -piddle v 2 4 @ ~ $ + 2 0 02708123 00072012 -piddle_away v 1 1 @ 1 0 02708123 -piece v 5 3 @ ~ + 5 1 01590171 01656788 01294992 01174294 00261705 -piece-dye v 1 1 @ 1 0 00288947 -pierce v 5 3 @ ~ * 5 2 01442361 01769693 02135487 01441510 01441100 -piffle v 2 3 @ ~ + 2 0 01036804 00106843 -pig v 3 2 @ + 3 0 02615739 01196653 00058645 -pig_it v 1 1 @ 1 0 02615739 -pig_out v 1 1 @ 1 0 01193099 -pigeonhole v 2 2 @ + 2 0 01497634 00656292 -piggyback v 5 1 @ 5 0 01957403 01602191 01602096 01601934 00586461 -pigment v 2 2 @ + 2 0 00287392 00287258 -pile v 3 4 @ ~ ^ + 3 2 01503404 02064131 01434822 -pile_up v 3 2 @ ~ 3 2 00158804 01504298 02304982 -pilfer v 1 2 @ + 1 1 02276866 -pillage v 1 3 @ ~ + 1 0 02344568 -pillory v 3 2 @ + 3 1 02483941 02483828 00823827 -pillow v 1 2 @ + 1 0 01502946 -pilot v 2 6 @ ~ * $ + ; 2 2 01941093 01933305 -pimp v 1 2 @ + 1 0 01180975 -pin v 4 5 ! @ ~ + ; 4 2 01207149 01368264 01444723 01121621 -pin_down v 3 2 @ ~ 3 1 00715541 02496185 01340149 -pin_up v 1 1 @ 1 0 01340149 -pinch v 5 3 @ ~ + 5 2 01456771 01457206 02276866 01321509 00504019 -pine v 1 3 @ ~ + 1 0 01805684 -pine_away v 1 1 @ 1 0 00389992 -ping v 5 3 @ + ; 5 1 01236795 02178866 02178709 00743911 00743692 -pinion v 2 2 @ + 2 0 01300565 00512749 -pink v 3 1 @ 3 0 02185373 02178866 01255508 -pinkify v 1 2 @ + 1 0 00285414 -pinnacle v 2 2 @ + 2 0 02694802 01975237 -pinpoint v 1 2 @ + 1 1 02287380 -pioneer v 3 3 @ ~ + 3 1 01645421 01641914 00649757 -pip v 3 3 @ ~ $ 3 0 02484570 01137138 01102997 -pip_out v 1 2 @ ; 1 0 00359806 -pipe v 4 6 @ ~ * ^ + ; 4 1 00914420 01950295 01727684 01670645 -pipe-clay v 1 1 @ 1 0 01533324 -pipe_down v 1 2 @ $ 1 0 02190188 -pipe_in v 2 1 @ 2 1 01436391 02080652 -pipe_up v 2 2 @ ~ 2 0 01050565 00914420 -pique v 1 3 @ > + 1 0 01789270 -pirate v 2 4 @ ~ + ; 2 0 02277897 01471825 -pirouette v 1 2 @ + 1 0 02048384 -piss v 1 4 @ ~ $ + 1 1 00072012 -pistol-whip v 1 1 @ 1 1 01397945 -pit v 3 5 @ ~ * $ + 3 1 01081152 01551195 00179567 -pitch v 12 4 @ ~ + ; 12 4 01512625 01864634 01978436 00298420 02302817 02037090 01884577 01514126 01509079 01402637 01149868 00298244 -pitch_in v 1 1 @ 1 0 01173057 -pitch_into v 1 1 @ 1 0 01242537 -pitchfork v 1 2 @ + 1 0 01579340 -pith v 1 2 @ + 1 0 02366241 -pitter-patter v 2 2 @ + 2 0 02757828 02185187 -pity v 1 3 @ ~ + 1 1 01821996 -pivot v 1 3 @ ~ + 1 1 02046572 -placard v 2 2 @ + 2 0 01591835 00991900 -placate v 1 2 @ + 1 0 01765392 -place v 16 3 @ ~ + 16 11 01494310 02392762 00658052 02333689 00745970 00659776 01150559 00618878 02537960 01711749 00673448 02695895 02271137 01088923 01086691 01049276 -place-kick v 2 3 @ + ; 2 0 01371044 01112837 -place_down v 1 2 @ ~ 1 0 01500372 -place_upright v 1 3 @ > $ 1 0 01546768 -plagiarise v 1 4 @ ~ + ; 1 0 02278061 -plagiarize v 1 4 @ ~ + ; 1 0 02278061 -plague v 2 3 @ ~ + 2 2 02771320 01789514 -plain v 1 1 ~ 1 0 00907147 -plait v 2 3 @ + ; 2 0 01674717 01387656 -plan v 4 3 @ ~ + 4 4 00705227 00704690 01638368 01639714 -plane v 3 3 @ ~ + 3 1 01249490 01942718 01307389 -plank v 3 2 @ + 3 1 01336159 01500572 01180701 -plank_down v 1 1 @ 1 0 01978069 -plank_over v 1 1 @ 1 0 01336159 -plant v 6 4 @ ~ + ; 6 3 01567275 01528821 01647229 02322810 01371201 00734790 -plash v 2 3 @ ~ + 2 0 01518659 01374020 -plaster v 6 5 @ ~ $ + ; 6 1 01362430 01612964 01612818 01362568 01360899 00082929 -plaster_over v 1 1 @ 1 1 01362430 -plasticise v 2 2 @ + 2 0 00569741 00569556 -plasticize v 2 2 @ + 2 0 00569741 00569556 -plastinate v 1 2 @ + 1 0 02280647 -plat v 1 1 @ 1 1 00710922 -plate v 1 3 @ ~ + 1 0 01395049 -platinize v 1 1 @ 1 0 01615695 -platitudinize v 1 1 @ 1 0 00951769 -play v 35 7 @ ~ * ^ $ + ; 35 21 01072949 02370650 01725051 01719302 02418686 01724459 01726172 00013615 01903385 01138911 02418421 01722077 01717436 01716619 01149470 00013328 02597601 01717169 01586278 01163355 00711932 02722449 02437465 01903562 01719921 01716882 01629589 01377239 01156115 01155687 01080691 01080064 01079873 01079480 00075875 -play_a_joke_on v 2 2 @ ~ 2 0 02577586 02575723 -play_a_trick_on v 1 2 @ ~ 1 0 02575723 -play_along v 2 2 @ ; 2 0 02417208 01728355 -play_around v 2 1 @ 2 1 02598642 02416030 -play_back v 1 2 @ + 1 1 01738347 -play_down v 1 3 ! @ ~ 1 0 00513492 -play_false v 1 1 @ 1 0 00839194 -play_hooky v 1 2 @ ; 1 0 02614023 -play_it_by_ear v 1 1 @ 1 0 02370433 -play_off v 1 2 @ + 1 0 01081152 -play_out v 4 3 @ $ ; 4 0 02280869 01715185 01081652 00572788 -play_possum v 1 1 @ 1 1 00838995 -play_tricks v 1 2 @ ~ 1 0 02575723 -play_up v 2 2 ! @ 2 1 00514069 01804753 -playact v 1 5 @ ~ $ + ; 1 0 01719921 -plea-bargain v 1 3 @ + ; 1 0 00764526 -pleach v 2 1 @ 2 0 01519569 01518659 -plead v 4 4 @ ~ + ; 4 4 00759501 00894365 00760576 01016316 -please v 3 6 ! @ ~ > $ + 3 2 01815628 01824958 01816054 -pleat v 2 2 @ + 2 0 01387301 01217780 -pledge v 5 4 @ ~ * + 5 1 00884540 02299269 01175467 00886281 00884946 -plicate v 1 2 @ + 1 0 01217780 -plight v 2 3 @ ~ + 2 0 00886602 00884540 -plod v 1 3 @ ~ + 1 1 01921204 -plonk v 1 2 @ + 1 0 01500572 -plonk_down v 1 1 @ 1 0 01978069 -plop v 3 2 @ + 3 0 01977421 01977266 01500572 -plot v 4 3 @ ~ + 4 3 00708128 01693453 00710922 01638825 -plough v 2 5 @ ~ * + ; 2 0 02096853 01741864 -plough_on v 1 1 @ 1 0 01993549 -plow v 3 6 @ ~ * $ + ; 3 3 01741864 01033527 02096853 -plow_ahead v 1 1 @ 1 1 00781303 -pluck v 6 5 @ ~ * $ + 6 1 01592456 02322596 02319050 01452546 01384275 01382083 -pluck_at v 1 1 @ 1 0 01609115 -plug v 6 5 @ ~ * $ + 6 2 01422886 00351266 01415285 00976487 00188137 00188000 -plug_away v 2 1 @ 2 0 02415573 00351266 -plug_in v 1 3 ! @ * 1 1 01421122 -plug_into v 1 2 @ * 1 0 01421122 -plumb v 4 2 @ + 4 1 00730647 01487830 00646442 00465634 -plume v 6 5 @ ~ * $ + 6 0 02319050 01772498 01680132 01392080 00144544 00043683 -plummet v 1 1 @ 1 1 01978199 -plump v 4 3 @ * + 4 0 01978199 01500572 01194938 00676267 -plump_down v 2 1 @ 2 0 01978069 01500572 -plump_for v 1 3 @ ~ $ 1 1 02453889 -plump_in v 1 1 @ 1 0 02017416 -plump_out v 2 2 @ * 2 0 02017550 01194938 -plump_up v 1 1 @ 1 0 01391946 -plunder v 4 5 @ ~ * + ; 4 1 02345288 02345048 02344568 01565472 -plunge v 8 5 @ ~ > $ + 8 5 01577635 01967373 01834053 00347918 00601378 01977080 01577093 00601043 -plunk v 4 4 @ ~ $ + 4 2 02184965 01500572 01967373 01452546 -plunk_down v 1 1 @ 1 0 01500572 -plunk_for v 1 3 @ ~ $ 1 0 02453889 -pluralise v 1 2 @ + 1 0 01071916 -pluralize v 1 2 @ + 1 0 01071916 -ply v 6 4 @ ~ $ + 6 1 01182709 02595383 01864038 01291817 01224653 01160806 -poach v 2 2 @ + 2 2 01143266 00544404 -pock v 1 5 @ ~ * $ + 1 0 01551195 -pocket v 2 2 @ + 2 1 02278592 02292432 -pockmark v 1 1 @ 1 0 01551530 -pod v 2 2 @ + 2 0 00198057 00095870 -podcast v 1 1 @ 1 0 00968962 -poetise v 1 4 @ ~ + ; 1 0 01702514 -poetize v 1 4 @ ~ + ; 1 0 01702514 -point v 14 5 @ ~ $ + ; 14 5 00923793 02713184 01152214 01931768 00921300 01928154 01589363 01589224 01589056 01152670 01150559 00924255 00392960 00261957 -point_jam v 1 1 @ 1 0 01057558 -point_out v 3 2 @ ~ 3 3 01058574 00924612 01013230 -point_the_way v 1 1 @ 1 1 00749794 -point_up v 1 1 @ 1 1 01014186 -poise v 4 5 @ ~ > $ + 4 3 01943571 01806109 01602665 01602318 -poison v 5 4 @ ~ $ + 5 3 02580678 01323338 00532429 01323793 00088339 -poke v 5 2 @ + 5 2 01229976 02169119 01424220 01414626 01230241 -poke_at v 1 2 @ ~ 1 1 01231252 -poke_fun v 1 2 @ ~ 1 1 00851933 -poke_into v 2 2 @ ~ 2 1 01228753 01226875 -poke_out v 1 1 @ 1 0 02690093 -polarise v 3 3 @ + ; 3 0 00487554 00487350 00487182 -polarize v 3 3 @ + ; 3 3 00487554 00487350 00487182 -pole v 3 4 @ * + ; 3 1 01372189 01218652 00239973 -poleax v 1 2 @ + 1 0 01258642 -poleaxe v 1 2 @ + 1 0 01258642 -polemicise v 1 2 @ + 1 0 00774932 -polemicize v 1 2 @ + 1 0 00774932 -polemise v 1 1 @ 1 0 00774932 -polemize v 1 2 @ + 1 0 00774932 -police v 1 2 @ + 1 1 02454939 -polish v 3 4 @ ~ * + 3 2 01245637 00474017 00473799 -polish_off v 3 2 @ ~ 3 1 00484892 02482425 01196802 -polish_up v 1 1 @ 1 0 00473799 -politicise v 1 1 @ 1 0 00534222 -politicize v 1 1 @ 1 0 00534222 -politick v 1 2 @ ~ 1 0 02375748 -polka v 1 2 @ + 1 0 01897583 -poll v 4 3 @ ~ + 4 1 02454312 02463298 02454835 01320669 -pollard v 1 2 @ + 1 0 01320669 -pollenate v 1 2 @ + 1 0 00054059 -pollinate v 1 2 @ + 1 0 00054059 -pollute v 1 3 @ ~ + 1 0 00492706 -polychrome v 1 1 @ 1 0 00284813 -polychromise v 1 1 @ 1 0 00284813 -polychromize v 1 1 @ 1 0 00284813 -polymerise v 2 5 @ ~ > + ; 2 0 00266586 00266197 -polymerize v 2 5 @ ~ > + ; 2 0 00266586 00266197 -pomade v 1 2 @ + 1 0 00040084 -pommel v 1 1 @ 1 1 01416020 -pompadour v 1 2 @ + 1 0 00039267 -ponder v 1 3 @ ~ + 1 1 00630380 -poniard v 1 2 @ + 1 0 01231878 -pontificate v 2 2 @ + 2 0 02432395 00828754 -pony_up v 1 1 @ 1 0 02200341 -pooch v 1 1 @ 1 1 00146023 -pooch_out v 1 1 @ 1 0 00146023 -pooh-pooh v 2 3 @ ~ $ 2 1 01064062 00796976 -pool v 2 2 @ + 2 1 02295842 01090107 -poop_out v 1 1 @ 1 0 00099517 -pop v 13 5 @ ~ $ + ; 13 4 02081946 01404913 02185988 01134071 02186192 02157519 01499510 01474980 01401005 01202374 01199487 00309792 00309582 -pop_in v 1 2 ! @ 1 1 01920330 -pop_off v 2 3 @ ~ $ 2 0 02009122 00358431 -pop_out v 4 2 ! @ 4 1 00426156 02081946 01920457 00529411 -pop_the_question v 1 1 @ 1 0 00879764 -pop_up v 1 1 @ 1 1 02157519 -popularise v 2 3 @ $ + 2 0 00970215 00578508 -popularize v 2 3 @ $ + 2 0 00970215 00578508 -populate v 2 3 @ ~ + 2 1 02649830 00451279 -porcelainize v 1 1 @ 1 0 01615789 -pore v 1 3 @ ~ $ 1 1 00722232 -port v 8 3 @ $ + 8 0 02090854 02087472 01979085 01908204 01450792 01239202 01171661 00587268 -portend v 1 3 @ ~ + 1 1 00871942 -porter v 1 2 @ + 1 0 01450961 -portion v 1 3 @ ~ + 1 0 02228698 -portion_out v 1 2 @ * 1 0 02294179 -portray v 4 4 @ ~ + ; 4 3 00988890 01688256 01723690 01688771 -pose v 6 4 @ ~ + ; 6 3 02722663 02142775 00837288 02519183 01494310 00622384 -posit v 3 3 @ ~ + 3 0 01575675 00878136 00716758 -position v 2 3 @ ~ + 2 2 01987160 01494310 -possess v 3 4 @ ~ $ + 3 3 02632167 02204692 02647311 -post v 12 6 @ ~ * $ + ; 12 5 01591621 00991683 02385634 01088923 00999715 02473331 02233195 01960105 01591476 01570403 01031256 01031109 -postdate v 2 3 ! @ $ 2 0 02712772 00277254 -postmark v 1 2 @ + 1 0 01274104 -postpone v 1 4 @ ~ * + 1 1 02642814 -postpose v 1 2 @ + 1 0 01248205 -postulate v 3 4 @ ~ $ + 3 2 00756898 00716758 02627934 -posture v 2 4 @ ~ + ; 2 0 02519183 02142775 -pot v 1 3 @ ~ + 1 1 01529491 -potentiate v 1 3 @ + ; 1 0 00229801 -pother v 2 2 @ + 2 0 01820077 01819911 -potter v 3 3 @ ~ + 3 1 01473346 02415394 01473176 -potter_around v 1 1 @ 1 0 01473176 -pouch v 3 3 @ ~ + 3 0 01486050 01438183 00263231 -poultice v 1 3 @ + ; 1 0 00082929 -pounce v 1 3 @ ~ + 1 1 02064358 -pound v 8 4 @ ~ $ + 8 4 01414626 01575146 01925548 01880113 01563996 01302365 01302183 00331514 -pound_off v 1 1 @ 1 0 01563996 -pound_up v 1 2 @ $ 1 0 01302365 -pour v 6 4 @ ~ > ^ 6 5 02069551 02028366 02070296 02069248 02355806 02758033 -pour_cold_water_on v 1 1 @ 1 0 01819772 -pour_down v 1 1 @ 1 0 01202374 -pour_forth v 1 1 @ 1 1 01541803 -pour_out v 4 1 @ 4 4 00941565 02070296 02070150 02069788 -pout v 2 4 @ ~ * + 2 0 02719016 00034758 -powder v 2 4 @ ~ $ + 2 0 00332154 00042173 -powderise v 2 2 @ $ 2 0 00332445 00332154 -powderize v 2 3 @ $ + 2 0 00332445 00332154 -power v 1 3 @ ~ + 1 1 01181559 -power-dive v 1 2 @ ; 1 0 01963655 -powerwash v 1 1 @ 1 0 01535915 -powwow v 1 2 @ + 1 0 00763136 -practice v 5 6 @ ~ * $ + ; 5 4 02568672 00606093 01723224 02561332 02375468 -practice_bundling v 1 1 @ 1 0 00015163 -practise v 3 4 @ ~ * ; 3 1 01723224 02568672 00606093 -praise v 1 4 ! @ ~ + 1 1 00856824 -prance v 4 4 @ $ + ; 4 1 01916634 01959181 01959022 01958868 -prang v 1 2 @ ; 1 0 01562627 -prang_up v 1 2 @ $ 1 0 00053159 -prank v 2 1 @ 2 0 01677858 00043912 -prate v 1 3 @ ~ + 1 0 01036804 -prattle v 1 3 @ ~ + 1 1 01036804 -prawn v 1 2 @ + 1 0 01382606 -pray v 2 3 @ ~ + 2 2 00759944 00759269 -preach v 2 3 @ ~ + 2 2 00828003 00827730 -preachify v 1 2 @ + 1 0 00828374 -preamble v 1 2 @ + 1 0 00902144 -prearrange v 1 2 @ + 1 1 01648790 -preassemble v 1 2 @ ; 1 0 01739263 -precede v 5 4 ! @ ~ + 5 4 02712443 02692686 02407766 01999218 00901799 -precess v 1 1 @ 1 0 02101470 -precipitate v 5 5 @ ~ * $ + 5 2 01644339 00474994 02756821 01971750 01507596 -precis v 1 2 @ + 1 0 01008437 -preclude v 2 3 @ ~ + 2 1 02452885 02629390 -preconceive v 1 2 @ + 1 0 01634011 -precondition v 1 2 @ + 1 1 00407328 -precook v 1 2 @ ; 1 0 01665836 -predate v 4 3 ! @ + 4 0 02712443 02692686 01203500 00277086 -predecease v 1 1 @ 1 0 00360805 -predestinate v 1 2 @ ; 1 0 00703310 -predestine v 3 4 @ ~ + ; 3 0 00746242 00703310 00702969 -predetermine v 2 3 @ ~ + 2 0 00702773 00680346 -predicate v 3 2 @ + 3 0 01017222 01017001 00931232 -predict v 2 3 @ ~ + 2 2 00917772 00871942 -predigest v 1 2 @ ; 1 0 01197870 -predispose v 1 2 @ + 1 0 00680692 -predominate v 2 3 @ ~ + 2 1 02644234 02696503 -preempt v 4 3 @ + ; 4 1 02302454 02406011 02302652 02301321 -preen v 3 2 @ $ 3 0 01392080 00883847 00043683 -preexist v 1 2 @ + 1 0 02604100 -prefabricate v 2 3 @ + ; 2 0 01739263 01622445 -preface v 1 3 @ ~ + 1 1 00901799 -prefer v 4 5 @ ~ * + ; 4 3 01826498 00679389 02400037 02400251 -prefigure v 2 3 @ ~ + 2 0 01636993 00871942 -prefix v 1 3 ! @ + 1 0 01297961 -preform v 2 3 @ $ + 2 0 01660252 01660082 -preheat v 1 1 @ 1 0 00372400 -prehend v 1 3 @ ~ + 1 0 01212572 -preisolate v 1 2 @ ; 1 1 00496956 -prejudge v 1 2 @ + 1 0 00681281 -prejudice v 2 4 @ ~ + ; 2 0 02513742 00680145 -prelude v 2 3 @ + ; 2 0 02671498 01725615 -premeditate v 2 2 @ + 2 0 00704073 00631244 -premier v 2 2 @ ; 2 0 01718331 01718185 -premiere v 2 3 @ + ; 2 0 01718331 01718185 -premise v 3 3 @ ~ + 3 0 01001467 00901799 00717208 -premiss v 1 2 @ + 1 0 00717208 -preoccupy v 2 3 @ ~ + 2 1 01783394 02273083 -preordain v 1 3 @ ~ + 1 0 00702969 -prepare v 8 5 @ ~ $ + ; 8 6 00406243 01664172 01754271 01651444 02387034 00603298 02179915 00602805 -prepare_for v 1 1 @ 1 1 00273257 -prepay v 1 2 @ + 1 0 02250340 -preponderate v 1 2 @ + 1 0 02645597 -prepose v 1 2 @ + 1 0 01248405 -prepossess v 4 3 @ ~ + 4 0 02205012 01783746 01770096 00680145 -prerecord v 1 2 @ ; 1 0 00999429 -presage v 1 3 @ ~ + 1 1 00871942 -prescribe v 1 3 @ ~ + 1 1 00747135 -present v 13 6 @ ~ * $ + ; 13 10 02148788 00772967 01711445 02262752 02722663 02261888 02200686 00989602 00901103 01688771 01066433 00901651 00899956 -preserve v 6 4 @ ~ $ + 6 4 02679899 02280132 02225492 00212414 02733122 02682773 -preside v 1 2 @ + 1 1 02443609 -press v 14 5 @ ~ * $ + 14 7 01447257 00765649 02646064 01390616 01387786 02024367 01754105 02722782 02589576 01662614 01447632 01390833 01150370 00759657 -press_down v 1 1 @ 1 0 01574766 -press_down_on v 1 1 @ 1 1 01597096 -press_home v 1 1 @ 1 0 01014362 -press_on v 1 1 @ 1 1 01993549 -press_out v 3 2 @ ~ 3 1 00478682 01662614 01351754 -pressure v 2 4 @ ~ > + 2 1 02504562 02581073 -pressure-cook v 1 2 @ ; 1 0 00328679 -pressure-wash v 1 1 @ 1 0 01535915 -pressurise v 3 3 ! @ + 3 0 00403609 00403401 00403149 -pressurize v 3 3 ! @ + 3 0 00403609 00403401 00403149 -presume v 4 3 @ ~ + 4 1 00632236 02374924 01015677 00011551 -presuppose v 2 4 @ ~ + ; 2 2 00716531 00716345 -pretend v 6 4 @ ~ $ + 6 2 00838043 01721556 02275799 00916909 00838524 00756649 -pretermit v 2 3 @ ~ + 2 0 00617293 00614999 -prettify v 1 2 @ ~ 1 0 00293141 -pretty_up v 1 1 @ 1 0 00043078 -prevail v 5 4 @ ~ $ + 5 4 02644234 02648502 02647497 01101734 00777793 -prevaricate v 1 2 @ + 1 0 00835506 -prevent v 2 4 ! ~ $ + 2 2 02452885 02450505 -preview v 1 2 @ + 1 0 02151816 -previse v 2 2 @ + 2 0 00870942 00720808 -prey v 2 2 @ + 2 1 01203715 01203500 -price v 2 3 @ ~ + 2 1 02351010 00721889 -prick v 7 3 @ ~ + 7 4 01440801 02123424 01983006 01240935 02123298 01760945 01445407 -prick_up v 1 1 @ 1 1 01983006 -prickle v 3 3 @ ~ + 3 0 02123298 02122983 01440801 -pride v 1 2 @ + 1 1 01772498 -pride_oneself v 1 1 @ 1 0 01828993 -prim v 3 1 @ 3 0 00525164 00145772 00045145 -prim_out v 1 1 @ 1 0 00045145 -prim_up v 1 1 @ 1 0 00045145 -prime v 3 2 @ + 3 1 00408624 01365355 00454018 -primp v 1 3 @ $ + 1 0 00043683 -prink v 2 3 @ ~ $ 2 0 00045532 00044149 -print v 4 3 @ ~ + 4 2 01745722 01746715 01749184 01747945 -print_over v 1 2 @ ~ 1 0 01748273 -prioritise v 1 1 @ 1 0 00660381 -prioritize v 1 2 @ + 1 0 00660381 -prise v 3 3 @ ~ * 3 1 01593254 01630903 00694068 -privatise v 1 3 @ + ; 1 0 00412048 -privatize v 1 3 @ + ; 1 0 00412048 -privilege v 1 2 @ + 1 0 02453692 -prize v 3 3 @ ~ * 3 1 02256109 01593254 00694068 -prizefight v 1 3 @ + ; 1 0 01420451 -probate v 2 3 @ + ; 2 0 02643872 02465297 -probe v 2 3 @ ~ + 2 2 00788564 01226875 -proceed v 5 4 @ ~ $ + 5 5 00781000 01995549 02372605 00341560 02684924 -process v 7 4 @ ~ $ + 7 3 00515154 02438535 00638837 02582042 01996735 01668603 01438681 -proclaim v 4 3 @ ~ + 4 4 00978173 00977336 01017001 00860620 -procrastinate v 2 3 @ ~ + 2 1 02642238 02642610 -procreate v 1 4 @ ~ + ; 1 0 00055142 -proctor v 1 2 @ + 1 0 02593354 -procure v 2 3 @ ~ + 2 1 02238770 01180975 -prod v 3 3 @ ~ + 3 2 01231252 01230710 01229976 -produce v 7 6 @ ~ > $ + ; 7 6 01752495 01621555 01752884 02141146 01739814 02157100 00094460 -profane v 2 3 @ ~ + 2 0 02579447 02568065 -profess v 7 4 @ ~ $ + 7 3 00819756 00760735 00818553 01010690 00888657 00888326 00756649 -professionalise v 2 2 @ $ 2 0 00583523 00583242 -professionalize v 2 3 @ $ + 2 0 00583523 00583242 -proffer v 1 3 @ ~ + 1 1 02297142 -profile v 2 3 @ + ; 2 0 01699346 01680913 -profit v 2 4 ! @ ~ + 2 2 02290461 02278830 -profiteer v 1 2 @ + 1 0 02279615 -prognosticate v 2 3 @ ~ + 2 0 00917772 00871942 -program v 2 4 @ ~ + ; 2 2 00795264 01747717 -programme v 2 4 @ ~ + ; 2 0 01747717 00795264 -progress v 3 5 ! @ ~ $ + 3 2 00248659 01992503 00252990 -progress_to v 1 1 @ 1 1 02022162 -prohibit v 1 3 @ ~ + 1 1 00795863 -project v 12 6 @ ~ > $ + ; 12 8 00743223 02713372 01436015 02138075 02180747 01690972 01638368 00706243 01635432 01632897 01515791 00729642 -prolapse v 1 2 @ + 1 0 01833906 -proliferate v 2 3 @ $ + 2 0 00310635 00247830 -prologise v 1 1 @ 1 0 00902289 -prologize v 1 2 @ + 1 0 00902289 -prologuize v 1 1 @ 1 0 00902289 -prolong v 2 4 @ ~ $ + 2 1 00317888 02679530 -promenade v 2 2 @ + 2 0 01924505 01919226 -promise v 4 3 @ ~ + 4 4 00884011 00884317 00917772 02740552 -promote v 5 6 ! @ ~ $ + ; 5 3 02554922 02397637 00976653 01080523 01080235 -prompt v 3 3 @ $ + 3 2 01649999 00771961 00877848 -promulgate v 2 3 @ ~ + 2 2 00977336 00861560 -pronate v 1 2 @ + 1 0 02081410 -pronk v 1 1 @ 1 0 01869465 -pronounce v 2 4 @ ~ * + 2 2 00978549 00971650 -proof v 5 4 @ ~ * + 5 0 01752316 01235558 00628302 00534545 00165971 -proofread v 1 3 @ * + 1 0 00628302 -prop v 1 3 @ ~ + 1 1 01219004 -prop_up v 1 2 @ ~ 1 1 01219004 -propagandise v 2 2 @ + 2 0 00970873 00970732 -propagandize v 2 2 @ + 2 0 00970873 00970732 -propagate v 8 6 @ ~ > $ + ; 8 0 02230447 02085573 01436139 01380122 01379256 00968211 00055871 00055539 -propel v 2 4 @ ~ $ + 2 1 01511706 01649999 -prophesy v 2 2 @ ~ 2 1 00926702 00828003 -propitiate v 1 2 @ + 1 0 00765213 -proportion v 2 3 @ ~ + 2 0 00483466 00151279 -propose v 5 3 @ ~ + 5 5 00875394 00706243 00708980 02401523 00879764 -proposition v 1 2 @ + 1 1 00875951 -propound v 1 2 @ + 1 0 00876332 -prorate v 2 3 @ $ + 2 0 00639331 00639148 -prorogue v 2 4 @ ~ * + 2 0 02642814 02428771 -proscribe v 1 3 @ ~ + 1 1 00795863 -prosecute v 3 4 ! @ ~ + 3 2 02581900 02581477 02375131 -proselytise v 1 2 @ * 1 0 00769834 -proselytize v 1 3 @ * + 1 0 00769834 -prospect v 2 2 @ + 2 0 02154180 00648071 -prosper v 1 1 @ 1 1 02342800 -prostitute v 1 3 @ ~ + 1 0 02554066 -prostrate v 3 2 @ + 3 2 02063610 00558219 01498005 -protect v 2 4 @ ~ + ; 2 2 01128193 01129710 -protest v 3 3 @ ~ + 3 3 00910135 02521410 01011542 -protract v 1 4 @ ~ $ + 1 0 00317888 -protrude v 3 3 @ ~ + 3 1 02713372 02081946 00263231 -protuberate v 2 3 @ $ + 2 0 02714731 02714541 -prove v 9 5 ! @ ~ > ; 9 4 02633881 00664788 01015244 00665630 02531625 01983134 01975587 01745052 00665771 -prove_oneself v 1 1 @ 1 1 00665235 -provide v 7 4 @ ~ $ + 7 4 02327200 01182709 01063188 02376289 02721438 02219442 00406963 -provision v 1 2 @ + 1 1 02338975 -provoke v 4 4 @ ~ $ + 4 4 01759326 01646866 00794079 01789514 -prowl v 2 2 @ + 2 2 01918304 02639475 -prune v 2 3 @ ~ + 2 0 01321002 00473322 -pry v 4 3 @ * + 4 3 01593254 00784874 02169119 01630903 -psalm v 1 3 @ + ; 1 0 01730059 -psych_up v 1 1 @ 1 0 01763482 -psychoanalyse v 1 2 @ ; 1 0 00643197 -psychoanalyze v 1 3 @ + ; 1 0 00643197 -ptyalise v 1 1 @ 1 0 00101956 -ptyalize v 1 2 @ + 1 0 00101956 -pub-crawl v 1 1 @ 1 0 01171941 -publicise v 2 3 @ ~ + 2 0 00975902 00954608 -publicize v 2 3 @ ~ + 2 2 00954608 00975902 -publish v 3 4 @ ~ $ + 3 3 01745722 00967625 01744611 -pucker v 3 3 @ $ + 3 1 01278817 01330822 01279015 -puddle v 9 4 @ ~ $ + 9 0 01916471 01624743 01529292 01484267 01473729 01419867 01374465 00620532 00072012 -puff v 8 3 @ * + 8 3 01198616 01199009 00005526 01812197 01065272 00797303 00263682 00006802 -puff_out v 1 1 @ 1 1 00263682 -puff_up v 4 1 @ 4 2 00264578 00263682 02596908 01065272 -puke v 1 2 @ + 1 0 00076400 -pule v 1 1 @ 1 0 00066025 -pull v 17 7 ! @ ~ ^ $ + ; 17 8 01448100 01505254 02057499 01609287 02582615 01995211 02057337 00071803 02103162 01947247 01858573 01573276 01407059 01384275 01351170 01148710 00571596 -pull_a_face v 1 2 @ ~ 1 0 00034288 -pull_a_fast_one_on v 1 2 @ ~ 1 0 02575723 -pull_ahead v 1 1 ~ 1 0 01111028 -pull_along v 1 2 @ ~ 1 0 01453718 -pull_at v 1 1 @ 1 0 01609115 -pull_away v 1 3 @ ~ $ 1 1 01994442 -pull_back v 5 4 @ ~ $ + 5 1 01994442 01609773 01449053 01243298 00799383 -pull_down v 2 2 @ ~ 2 1 01661804 01239862 -pull_in v 4 4 ! @ ~ $ 4 1 01505254 02289295 02015384 01384439 -pull_in_one's_horns v 1 1 $ 1 0 00799383 -pull_off v 4 3 @ ~ $ 4 2 01592456 02404467 02522864 01592774 -pull_one's_weight v 1 1 @ 1 0 02414272 -pull_out v 4 5 ! @ ~ $ + 4 3 02015168 01995211 01351170 02380980 -pull_out_all_the_stops v 1 1 @ 1 0 01160193 -pull_over v 1 1 @ 1 0 01841591 -pull_round v 1 2 @ * 1 0 02619924 -pull_someone's_leg v 1 1 @ 1 0 02577586 -pull_strings v 1 1 @ 1 0 02536329 -pull_the_leg_of v 1 1 @ 1 1 00851100 -pull_the_plug v 1 1 @ 1 0 02510184 -pull_the_wool_over_someone's_eyes v 1 1 @ 1 0 00839194 -pull_through v 2 3 @ ~ * 2 0 02619924 02551832 -pull_together v 1 1 ~ 1 1 01380638 -pull_up v 4 5 @ ~ $ + ; 4 2 01863158 01982686 01863410 01351170 -pull_up_short v 1 2 @ ; 1 0 01861230 -pull_up_stakes v 1 3 @ ~ $ 1 0 02383440 -pull_wires v 1 1 @ 1 0 02536329 -pullulate v 5 4 @ ~ $ + 5 0 02714974 02028366 00357332 00246930 00056589 -pullulate_with v 1 1 @ 1 0 02715923 -pulp v 2 2 @ + 2 0 01352273 00331713 -pulsate v 3 3 @ $ + 3 1 01879251 01879579 01623027 -pulse v 3 4 @ > $ + 3 2 01879251 01623027 01879777 -pulverise v 3 3 @ $ + 3 0 01656458 00332445 00332154 -pulverize v 3 3 @ $ + 3 1 00332154 01656458 00332445 -pumice v 1 2 @ + 1 0 01250243 -pummel v 1 1 @ 1 1 01416020 -pump v 8 4 @ ~ * + 8 3 01225684 01155307 01853310 02356113 02068324 01853192 01853069 00788057 -pun v 1 2 @ + 1 0 01702331 -punch v 3 2 @ + 3 2 01415285 01575536 01442779 -punch_in v 1 2 ! @ 1 1 00966330 -punch_out v 1 2 ! @ 1 0 00966640 -punctuate v 3 3 @ ~ + 3 1 00190023 01013367 00364478 -puncture v 5 3 @ ~ + 5 1 01274971 01275182 00856234 00403798 00309990 -punish v 1 3 ~ * + 1 1 02499629 -punt v 3 5 @ ~ * + ; 3 1 01372408 01372189 01139104 -pup v 1 2 @ + 1 0 00058516 -pupate v 1 2 @ + 1 1 00096520 -purchase v 1 6 @ ~ * $ + ; 1 1 02207206 -puree v 1 3 @ + ; 1 0 01250474 -purge v 7 5 ! @ ~ > + 7 1 02565090 00905283 00475819 00475647 00455529 00076400 00073813 -purify v 3 5 @ ~ $ + ; 3 2 00475183 00475819 00476133 -purl v 5 4 @ $ + ; 5 3 02047650 01046815 01671333 01668278 01668144 -purl_stitch v 1 3 @ + ; 1 0 01671885 -purloin v 1 1 @ 1 1 02276866 -purple v 2 2 @ + 2 0 00289297 00285088 -purport v 2 2 @ + 2 2 00757192 00708980 -purpose v 2 2 @ + 2 0 00708980 00699626 -purpurate v 1 2 @ + 1 0 00285088 -purr v 2 2 @ + 2 0 02188587 01052936 -purse v 2 2 @ ~ 2 1 00145902 01279305 -pursue v 4 4 @ ~ $ + 4 4 02375131 02000868 01317533 02376429 -purvey v 1 2 @ + 1 0 02338975 -push v 10 8 ! @ ~ * ^ $ + ; 10 6 01871979 00765977 00976653 02406916 01872645 02054864 02589576 02245555 01872877 01447632 -push_around v 1 2 @ ~ 1 1 01781520 -push_aside v 2 2 @ ~ 2 2 01873294 00800930 -push_away v 1 1 @ 1 1 01873294 -push_back v 1 3 @ $ + 1 1 01506157 -push_down v 1 2 @ ~ 1 1 01239862 -push_forward v 1 1 @ 1 0 01996574 -push_on v 1 1 @ 1 0 01993549 -push_out v 1 1 @ 1 0 01873157 -push_through v 1 3 @ ~ $ 1 1 00548266 -push_up v 2 3 @ ~ $ 2 1 01873530 02713852 -pussyfoot v 1 1 @ 1 0 01911888 -put v 9 4 @ ~ ^ ; 9 6 01494310 01493741 00981276 01160370 02271137 00673448 02111499 01706375 00735571 -put_across v 1 2 @ ~ 1 0 00742320 -put_aside v 2 1 @ 2 0 01615991 00778885 -put_away v 7 4 @ ~ * ; 7 2 01347678 02222318 02494356 01615991 01327133 01173208 00778885 -put_back v 2 3 @ ~ $ 2 1 01308381 02702674 -put_behind_bars v 1 2 @ ; 1 0 02494356 -put_down v 8 6 @ ~ > ^ + ; 8 3 01500372 01544692 01981036 01800422 01489465 01326528 01020356 01000214 -put_forward v 4 3 @ ~ $ 4 1 00878136 02373785 01629958 00879540 -put_in v 6 2 @ ~ 6 5 00187526 02281093 00780191 01569566 01072641 00914769 -put_off v 5 5 @ ~ * $ + 5 2 02642814 01808626 01819387 01790739 00809654 -put_on v 9 4 @ ~ + ; 9 5 00050652 00184511 01665185 01649809 00184786 01649251 01363648 00854904 00046151 -put_on_airs v 1 1 @ 1 0 02593551 -put_on_the_line v 1 2 @ ~ 1 0 02545578 -put_one_across v 1 2 @ ~ 1 0 00854904 -put_one_over v 1 2 @ ~ 1 0 00854904 -put_out v 10 5 @ ~ * + ; 10 4 02507736 01625532 01569017 00027705 02760495 02755452 01615457 01154382 00967625 00021065 -put_out_feelers v 1 1 @ 1 1 00646135 -put_over v 2 3 @ ~ * 2 1 00744904 02642814 -put_right v 1 1 @ 1 0 00208055 -put_through v 2 3 @ ~ $ 2 1 00486018 01355906 -put_to_death v 1 3 @ ~ $ 1 1 02483267 -put_to_sleep v 2 1 @ 2 1 01494178 01327133 -put_to_work v 1 4 @ ~ > $ 1 1 02407987 -put_together v 1 2 @ ~ 1 1 01656788 -put_under v 1 2 @ ~ 1 0 00021065 -put_up v 9 4 @ ~ $ ; 9 6 01570403 02376289 01661243 00668099 02297571 00213794 02459173 02237782 00879540 -putrefy v 1 3 @ * + 1 0 00399553 -putt v 2 3 @ + ; 2 1 01403540 01403785 -putter v 3 3 @ ~ + 3 0 02415394 01473346 01473176 -putter_around v 1 1 @ 1 1 01473176 -putty v 1 2 @ + 1 0 01364733 -puzzle v 2 4 @ ~ ^ + 2 1 00622384 01831308 -puzzle_out v 1 3 @ ~ * 1 1 00634906 -puzzle_over v 1 1 @ 1 1 00621653 -pyramid v 4 3 @ + ; 4 1 02290756 02246300 01466047 00158094 -quack v 2 3 @ + ; 2 1 01053098 00011982 -quadruple v 1 2 @ + 1 1 00247048 -quadruplicate v 1 2 @ + 1 0 01735947 -quaff v 1 3 @ * + 1 0 01202068 -quail v 1 2 @ ~ 1 1 02061069 -quail_at v 1 2 @ * 1 0 01782432 -quake v 2 2 @ + 2 1 01889129 01888784 -qualify v 7 6 ! @ ~ $ + ; 7 4 02679012 00972191 00199309 00300761 01018928 00956687 00171127 -quantify v 2 4 @ ~ + ; 2 0 00492095 00489837 -quantise v 2 3 @ + ; 2 0 00673095 00638194 -quantize v 2 3 @ + ; 2 0 00673095 00638194 -quarantine v 1 2 @ + 1 0 00496266 -quarrel v 1 3 @ ~ + 1 1 00775156 -quarry v 1 4 @ * + ; 1 0 01163847 -quarter v 4 3 @ + ; 4 0 02653159 02483564 01563575 00642498 -quarterback v 1 3 @ + ; 1 0 01076370 -quash v 2 2 @ ~ 2 1 02424128 02478059 -quaver v 2 2 @ + 2 0 01051118 01050896 -queen v 2 3 @ + ; 2 0 02593790 01969991 -queen_it_over v 1 1 @ 1 0 02593551 -queer v 2 2 @ ~ 2 0 02558172 01036319 -quell v 2 2 @ + 2 1 00463234 01194114 -quench v 6 5 @ ~ * + ; 6 1 01204021 02761897 02422967 00463234 00429763 00370773 -query v 1 3 @ ~ + 1 1 00785008 -quest v 5 4 @ ~ $ + 5 0 02240881 02002591 01047951 00782428 00752764 -quest_after v 1 1 @ 1 0 01317533 -quest_for v 1 1 @ 1 0 01317533 -question v 5 3 @ ~ + 5 5 00867409 00788184 00785008 00808855 00925110 -quetch v 1 1 ~ 1 0 00907147 -queue v 1 3 @ * + 1 0 02036755 -queue_up v 1 2 @ * 1 0 02036755 -quibble v 2 2 @ + 2 0 00810385 00774056 -quick-freeze v 1 1 @ 1 0 00375690 -quicken v 5 4 @ ~ $ + 5 1 00438178 02117534 00442063 00053035 00024279 -quickstep v 1 2 @ + 1 1 01899158 -quiesce v 1 3 @ $ + 1 0 02190188 -quiet v 2 4 @ ~ $ + 2 2 02190188 01764800 -quiet_down v 1 2 @ $ 1 1 02190188 -quieten v 3 5 ! @ ~ > $ 3 0 02190188 01764800 00461493 -quilt v 2 3 @ * + 2 0 01667449 01667304 -quintuple v 1 2 @ + 1 0 00247234 -quip v 1 2 @ + 1 1 00853958 -quirk v 1 1 @ 1 1 01222830 -quit v 5 3 @ ~ + 5 3 02680814 02382367 02008396 02227487 01083044 -quiver v 3 3 @ $ + 3 2 01889129 01878719 01879579 -quiz v 1 3 @ $ + 1 0 00786458 -quote v 4 4 @ ~ $ + 4 1 01023259 01023925 01023574 01004403 -rabbet v 2 2 @ + 2 0 01295910 01281500 -rabbit v 1 2 @ + 1 0 01142761 -rabbit_on v 1 1 @ 1 0 01051956 -race v 4 3 @ ~ + 4 2 02058994 01086103 02369948 02059462 -rachet_up v 1 1 @ 1 0 02072673 -rack v 11 5 @ ~ * + ; 11 2 01960491 01798678 02408722 02241107 01946138 01940782 01855058 01802689 01669419 01213348 00071547 -rack_up v 4 3 @ ~ * 4 1 01111816 01499849 01102997 00452394 -racket v 3 4 @ ~ + ; 3 0 02491383 02172008 01408633 -racketeer v 1 2 @ + 1 0 02445788 -raddle v 2 1 @ 2 0 01518552 00508844 -radiate v 8 3 @ ~ + 8 2 02767116 00291163 02686952 02161530 02160552 01829747 00529582 00436668 -radicalize v 1 1 @ 1 0 00534369 -radio v 1 2 @ + 1 1 01007495 -radiolocate v 1 2 @ + 1 0 02695520 -raffle v 1 2 @ + 1 0 02201975 -raffle_off v 1 1 @ 1 0 02201975 -raft v 3 4 @ $ + ; 3 0 01949966 01842508 01654156 -rafter v 1 3 @ + ; 1 0 02337870 -rag v 6 5 @ ~ $ + ; 6 0 01803003 01787955 01725886 00850501 00824767 00338736 -rage v 3 3 @ ~ + 3 3 02723016 02722902 01796033 -raid v 4 3 @ ~ + 4 2 02494850 02020027 02275152 01318081 -rail v 10 3 @ + ; 10 1 00911261 02711543 02330407 02031430 01954559 01936537 01503268 01141271 00847870 00841767 -rail_in v 1 1 @ 1 0 02711543 -rail_off v 1 1 @ 1 0 02031430 -railroad v 3 2 @ + 3 0 02506181 02331919 01950657 -raiment v 1 4 @ ~ $ + 1 0 00047945 -rain v 1 3 @ ~ + 1 1 02756558 -rain_buckets v 1 2 @ ~ 1 0 02758033 -rain_cats_and_dogs v 1 2 @ ~ 1 0 02758033 -rain_down v 1 2 @ ~ 1 0 02756558 -rain_out v 1 1 @ 1 0 02594833 -raise v 27 7 ! @ ~ > $ + ; 27 13 00158503 01974062 00941166 02306281 01739814 02539788 01629958 01973759 01661243 01759326 01755651 00544549 00229605 02397637 01975587 01156406 01156291 01098452 01025246 00950782 00851625 00744070 00641929 00557537 00549982 00354195 00098517 -raise_a_stink v 1 1 @ 1 0 00910654 -raise_hell v 1 1 @ 1 1 00910654 -raise_the_roof v 1 1 @ 1 1 01787469 -raise_up v 1 2 @ ~ 1 1 01419473 -rake v 6 5 @ ~ * ^ + 6 2 02099669 01307020 02688527 02152278 01306853 01240514 -rake_in v 1 1 @ 1 0 02290029 -rake_off v 1 3 @ + ; 1 0 02284662 -rake_up v 1 1 @ 1 1 00721755 -rally v 5 3 @ ~ + 5 4 01385643 01097960 01381549 00528608 00850501 -ram v 4 5 @ ~ ^ $ + 4 3 01575146 01516534 01561819 01524298 -ram_down v 2 1 @ 2 0 01575146 00606471 -ram_home v 1 1 @ 1 0 01014362 -ramble v 2 4 @ ~ $ + 2 1 02684453 01881180 -ramble_on v 1 1 @ 1 1 02684453 -ramify v 3 4 @ ~ $ + 3 0 00401373 00329244 00328802 -ramp v 5 3 @ + ; 5 0 02723016 02334595 02143124 01922754 01546513 -ramp_up v 1 2 @ $ 1 0 00253277 -rampage v 1 3 @ ~ + 1 0 02584906 -ranch v 1 2 @ + 1 0 02420430 -randomise v 1 2 @ + 1 0 00278899 -randomize v 1 2 @ + 1 0 00278899 -range v 8 4 @ ~ $ + 8 5 02727039 01881180 02741149 02690384 01474209 01576165 01204439 00658052 -range_in v 1 1 @ 1 0 01153007 -rank v 3 3 @ ~ + 3 2 00660102 00658052 02673844 -rankle v 1 1 @ 1 0 01773825 -ransack v 2 3 @ ~ + 2 2 02344568 01319193 -ransom v 1 3 @ + ; 1 0 02256998 -rant v 1 2 @ + 1 0 01051956 -rap v 4 4 @ ~ + ; 4 1 01414288 02185373 01715997 01042432 -rape v 2 3 @ ~ + 2 1 02567519 01565472 -rappel v 1 3 @ * ; 1 0 01923058 -rarefy v 3 3 @ + ; 3 0 00570383 00552138 00226379 -rarify v 1 2 @ ~ 1 0 00400883 -rase v 1 2 @ ~ 1 0 01661804 -rasp v 2 3 @ * + 2 0 01386906 00981814 -rasterize v 1 3 @ + ; 1 0 00114481 -rat v 6 4 @ ~ + ; 6 0 02584475 02413140 02412939 01527135 01480641 00841986 -ratchet v 1 2 @ + 1 0 02072673 -ratchet_down v 1 1 @ 1 0 02072673 -rate v 3 3 @ ~ + 3 3 00658052 02646227 00660971 -ratify v 1 3 @ * + 1 1 02464866 -ratiocinate v 1 2 @ + 1 0 00633265 -ration v 2 2 @ + 2 0 02234988 02234803 -ration_out v 1 1 @ 1 0 02234803 -rationalise v 5 4 @ ~ + ; 5 0 02269485 00894738 00629257 00568879 00473322 -rationalise_away v 1 1 @ 1 0 00629492 -rationalize v 5 4 @ ~ + ; 5 2 00894738 00473322 02269485 00629257 00568879 -rationalize_away v 1 1 @ 1 0 00629492 -rattle v 2 4 @ ~ ^ + 2 2 02175057 01890626 -rattle_down v 1 1 @ 1 0 00945648 -rattle_off v 1 1 @ 1 0 00945648 -rattle_on v 1 1 @ 1 0 01037498 -ravage v 2 3 @ ~ + 2 0 00389083 00388635 -rave v 3 2 @ + 3 0 02492054 01051956 00882220 -ravel v 2 3 ! @ + 2 0 01521367 01521124 -ravel_out v 1 1 @ 1 0 01521367 -raven v 4 1 @ 4 0 01213908 01203500 01196653 01177857 -ravish v 2 3 @ ~ + 2 0 02567519 01817314 -ray v 3 3 @ ~ + 3 0 02768431 02686952 00291444 -raze v 1 3 @ ~ + 1 0 01661804 -razor v 1 2 @ + 1 0 00037680 -razz v 1 3 @ ~ + 1 0 00850501 -re-address v 1 1 @ 1 0 00991264 -re-afforest v 1 2 @ + 1 0 01568145 -re-argue v 1 1 @ 1 1 00772488 -re-arm v 1 1 @ 1 0 01087559 -re-assume v 1 1 @ 1 1 00525027 -re-create v 3 3 @ ~ + 3 1 01619354 01693881 00736799 -re-emerge v 1 2 @ ~ 1 1 00426301 -re-emphasise v 1 1 @ 1 1 00840809 -re-emphasize v 1 1 @ 1 0 00840809 -re-enter v 1 2 @ + 1 1 01852892 -re-equip v 1 1 @ 1 0 02341491 -re-examine v 1 2 @ ; 1 0 00788971 -re-explain v 1 1 @ 1 0 00938899 -re-explore v 1 1 @ 1 1 00649245 -re-incorporate v 1 1 @ 1 1 00467346 -re-introduce v 1 1 @ 1 0 00901464 -re-start v 2 1 @ 2 0 01858686 00350104 -reabsorb v 1 2 @ + 1 0 01539913 -reach v 9 6 @ ~ * ^ $ + 9 8 02020590 02006834 01440139 00743344 02526085 02685665 02022162 02230772 01146051 -reach_into v 1 1 @ 1 1 02690299 -reach_one's_nostrils v 1 1 * 1 0 02124632 -reach_out v 3 2 @ ~ 3 2 01440139 02690093 00744572 -reacquaint v 1 1 @ 1 1 00874867 -react v 3 4 @ ~ + ; 3 3 00717358 02378623 00446885 -reactivate v 1 1 @ 1 1 00191940 -read v 11 5 @ ~ $ + ; 11 8 00625119 02730813 00626428 00627520 00627091 00624476 00599992 00922867 01718755 00620239 00593852 -read_between_the_lines v 1 1 @ 1 0 00621504 -readapt v 2 1 @ 2 1 00151574 00151114 -readjust v 2 2 @ + 2 1 00151114 00297669 -readmit v 2 2 @ + 2 0 02503212 02390786 -ready v 2 4 @ ~ $ + 2 2 01664172 00406243 -reaffirm v 1 2 @ + 1 1 01011923 -realign v 1 1 @ 1 1 00465145 -realine v 1 1 @ 1 0 00465145 -realise v 6 5 @ ~ $ + ; 6 0 02289295 02244603 01707495 01644746 00728617 00591115 -realize v 6 5 @ ~ $ + ; 6 4 00728617 00591115 01644746 02289295 02244603 01707495 -reallocate v 1 2 @ + 1 0 02234551 -reallot v 1 2 @ + 1 0 02228901 -ream v 3 3 @ $ + 3 0 01352010 00541551 00541417 -reanimate v 1 2 @ $ 1 0 00024279 -reap v 2 4 @ ~ $ + 2 2 01320009 02293148 -reappear v 1 3 @ ~ + 1 1 00426301 -reapportion v 1 2 @ + 1 0 02234551 -reappraise v 1 2 @ + 1 0 00682592 -rear v 5 5 @ ~ > + ; 5 3 01981623 02539788 02696801 01982866 01661243 -rear-end v 1 1 @ 1 0 01237088 -rear_back v 2 1 @ 2 1 01981791 01981933 -rearm v 2 2 @ + 2 0 02335078 01087559 -rearrange v 1 3 @ ~ + 1 1 00278280 -reason v 3 3 @ ~ + 3 3 00634472 00772189 00632627 -reason_out v 1 2 @ ~ 1 0 00634472 -reassail v 1 1 @ 1 1 01121052 -reassemble v 1 1 @ 1 1 01657524 -reassert v 1 3 @ ~ + 1 1 01012073 -reassess v 1 2 @ + 1 0 00682781 -reassign v 1 3 @ ~ + 1 1 02393086 -reassure v 2 3 ! @ + 2 2 01766407 01019808 -reattribute v 1 1 @ 1 0 00727305 -reave v 1 2 @ ~ 1 0 02344568 -reawaken v 1 1 @ 1 1 00019182 -rebate v 3 3 @ ~ + 3 0 02320200 01555193 01295134 -rebel v 2 3 @ ~ + 2 2 02583139 02583379 -rebind v 1 1 @ 1 0 01336007 -reboot v 1 1 @ 1 0 00098346 -rebound v 2 3 @ ~ + 2 1 01892104 00528608 -rebroadcast v 1 2 @ ; 1 0 00973888 -rebuff v 2 2 @ + 2 2 00798539 01131197 -rebuild v 1 3 @ + ; 1 1 01655902 -rebuke v 1 3 @ ~ + 1 1 00824767 -rebury v 1 2 @ + 1 0 02456851 -rebut v 2 3 @ ~ + 2 2 00814850 00667747 -recalcitrate v 1 2 @ + 1 0 01091844 -recalculate v 1 3 @ + ; 1 1 00639693 -recall v 7 4 ! @ ~ + 7 5 00607780 00959524 02675458 00791506 00722848 02480216 02312478 -recant v 1 2 @ + 1 0 00798717 -recap v 1 3 @ ~ + 1 0 01008903 -recapitulate v 3 4 @ ~ + ; 3 1 01008903 01735144 01727490 -recapture v 4 3 @ ~ + 4 2 01772363 01686827 02304013 01439604 -recast v 3 2 @ ; 3 0 01710934 01663205 01658586 -recede v 3 5 ! @ ~ $ + 3 1 01994442 01113806 00570694 -receipt v 2 2 @ + 2 0 00892698 00662485 -receive v 13 6 @ ~ * $ + ; 13 9 02210119 00522751 02107248 02108026 01470225 00686879 00900583 00117346 02739480 02493511 02108654 01172838 00617095 -recess v 3 2 @ + 3 1 01498872 01277305 00364297 -recharge v 2 1 @ 2 0 01490572 00518288 -recidivate v 1 2 @ + 1 0 00093327 -reciprocate v 2 3 @ ~ + 2 0 02372326 01875820 -recite v 5 4 @ ~ * + 5 2 01051364 00945255 01703454 00953216 00946105 -reckon v 6 6 @ ~ ^ $ + ; 6 4 00631737 00712135 00690614 00637259 00712708 00712556 -reclaim v 5 6 @ ~ * $ + ; 5 1 02276322 02226833 00384620 00383871 00302130 -reclassify v 1 1 @ 1 1 00655792 -recline v 3 4 @ ~ $ + 3 0 02039156 01547641 01547390 -recode v 1 2 @ + 1 0 00278514 -recognise v 8 3 @ ~ * 8 0 02546467 02475535 02193194 00897241 00892467 00728617 00610374 00592883 -recognize v 9 4 @ ~ * + 9 7 00592883 00728617 02193194 00610374 02475535 00897241 00892467 02754158 02546467 -recoil v 4 3 @ ~ + 4 1 02061069 02378950 01892104 01371454 -recollect v 1 2 ~ + 1 1 00607780 -recombine v 3 3 @ $ + 3 0 00566024 00565858 00193954 -recommence v 2 2 @ + 2 0 00349416 00346537 -recommend v 3 2 @ + 3 2 00875141 00882948 00578733 -recommit v 3 1 @ 3 0 02583041 02348057 01953191 -recompense v 2 3 @ ~ + 2 0 02250625 02249741 -reconcile v 4 3 @ ~ + 4 4 00482893 00482473 00764902 00732394 -recondition v 1 1 @ 1 1 00207588 -reconfirm v 1 1 @ 1 0 01012905 -reconnoiter v 1 2 @ + 1 1 02167571 -reconnoitre v 1 2 @ + 1 0 02167571 -reconquer v 1 1 @ 1 0 02272938 -reconsecrate v 1 1 @ 1 0 00866953 -reconsider v 2 4 @ $ + ; 2 1 00654015 00654258 -reconstitute v 1 1 @ 1 0 00404401 -reconstruct v 5 4 @ ~ + ; 5 3 00634090 01655902 00151448 02552449 00199490 -reconvene v 1 1 @ 1 1 02024716 -reconvert v 1 1 @ 1 1 00117498 -reconvict v 1 2 @ ; 1 0 00906637 -recopy v 1 1 @ 1 1 01695143 -record v 5 7 ! @ ~ * $ + ; 5 3 01000214 00998399 00922867 02105810 00612042 -recount v 2 3 @ ~ + 2 1 00953216 00801355 -recoup v 3 2 @ ~ 3 1 02249591 02249438 02215001 -recover v 6 5 @ ~ * $ + 6 3 02247977 00092690 00528339 02249438 02226833 01336541 -recreate v 4 4 @ ~ $ + 4 1 00024279 02418421 01817938 01737617 -recriminate v 1 2 @ + 1 0 00844553 -recrudesce v 2 3 @ $ + 2 0 00339464 00309074 -recruit v 3 3 @ ~ + 3 3 02471327 02240319 01098452 -rectify v 6 4 @ ~ $ + 6 0 00919829 00474492 00384620 00199912 00199659 00161731 -recumb v 1 4 @ ~ $ + 1 0 01547390 -recuperate v 4 5 ! @ ~ $ + 4 0 02249438 00528339 00093163 00092690 -recur v 3 3 @ ~ + 3 2 00343334 00959714 02590072 -recurve v 1 1 @ 1 0 02034883 -recuse v 2 3 @ + ; 2 0 00972867 00686249 -recycle v 2 3 @ ~ + 2 0 02052877 01162425 -red-eye v 1 2 @ ; 1 0 01840505 -red-ink v 1 1 @ 1 0 00509228 -redact v 2 3 @ ~ + 2 0 00981276 00200397 -redden v 3 2 @ ~ 3 1 00103317 00534837 00289031 -rede v 2 2 @ ~ 2 0 00938247 00872886 -redecorate v 1 1 @ 1 1 01678407 -rededicate v 1 2 @ + 1 1 00888150 -redeem v 6 3 @ + ; 6 1 02551602 02551501 02257232 02256998 02256853 02256732 -redefine v 2 2 @ + 2 1 02611827 00957549 -redeploy v 1 2 @ + 1 0 01379804 -redeposit v 2 2 @ + 2 0 02311135 01576001 -redesign v 1 1 @ 1 0 01640107 -redetermine v 1 2 @ + 1 0 00919960 -redevelop v 3 3 @ + ; 3 0 02139361 00926310 00172258 -redirect v 1 2 @ ~ 1 1 01953334 -rediscover v 1 2 @ + 1 1 02156384 -redispose v 1 2 @ + 1 0 02355109 -redistribute v 1 2 @ + 1 1 01379965 -redline v 1 1 @ 1 0 02512666 -redo v 2 2 @ ~ 2 0 01619725 00199490 -redouble v 3 1 @ 3 1 00290581 00246475 00227042 -redound v 3 1 @ 3 0 02137020 00156027 00138217 -redress v 1 3 @ ~ + 1 1 02519991 -reduce v 20 7 ! @ ~ > $ + ; 20 11 00429060 00242396 02399888 02258291 01800907 00237704 00241038 02317836 00240131 00237877 00233203 02424128 01558582 01499137 00587522 00243900 00237259 00236999 00226071 00045817 -reduplicate v 2 3 @ ~ ; 2 0 01735556 01734502 -reecho v 3 1 @ 3 1 02184394 02184265 00958078 -reef v 3 1 @ 3 0 01973636 00436185 00241399 -reek v 4 2 @ + 4 3 02194723 02124106 00068627 02768120 -reel v 3 3 @ ~ + 3 2 01924882 02046755 01523105 -reel_off v 2 1 @ 2 0 01523520 00945648 -reelect v 1 2 @ + 1 1 02401296 -reenact v 3 2 @ + 3 2 01722815 02428202 01722447 -reenforce v 1 3 @ ~ + 1 1 00222472 -reestablish v 1 2 @ ~ 1 1 02426799 -reevaluate v 1 2 @ + 1 1 00682781 -reeve v 3 1 @ 3 0 02053621 02053381 01341897 -reexamine v 1 2 @ + 1 1 00696189 -reface v 2 2 @ ; 2 0 01272139 01271778 -refashion v 1 2 @ ~ 1 1 01619725 -refer v 7 4 @ ~ $ + 7 6 01024190 02676054 00655555 01952898 00877083 00931467 01028294 -referee v 2 3 @ + ; 2 0 01085237 00855794 -reference v 1 3 @ + ; 1 0 01705257 -refill v 1 2 @ + 1 1 00453803 -refinance v 1 1 @ 1 1 02218546 -refine v 6 3 @ ~ + 6 2 00474017 00400883 00474762 00474492 00401906 00401688 -refinish v 1 2 @ + 1 0 01265246 -refit v 1 1 @ 1 0 02341592 -reflate v 4 3 @ $ + 4 0 00563360 00563100 00264285 00256283 -reflect v 7 5 @ ~ $ + ; 7 4 02136892 00630380 02136271 02765924 02136754 00821765 00821580 -reflectorise v 1 1 @ 1 0 02360702 -reflectorize v 1 1 @ 1 0 02360702 -refloat v 1 1 @ 1 0 01875036 -refocus v 3 2 @ + 3 0 02162162 00732091 00314605 -reforest v 1 2 @ + 1 0 01568346 -reforge v 1 1 @ 1 0 01658586 -reform v 6 5 @ ~ $ + ; 6 1 00265386 00384620 00266081 00265941 00265673 00167934 -reformulate v 1 1 @ 1 0 00926310 -refract v 2 3 @ + ; 2 0 02111838 00920929 -refracture v 1 1 @ 1 0 00108121 -refrain v 2 2 ! ~ 2 1 02725714 01196037 -refresh v 4 4 ! @ ~ + 4 0 00696852 00164444 00024814 00024649 -refreshen v 2 2 @ ~ 2 0 00024814 00024649 -refrigerate v 2 2 @ + 2 0 00371955 00371051 -refuel v 2 2 @ + 2 2 02338729 02236888 -refund v 1 3 @ ~ + 1 1 02284951 -refurbish v 1 3 @ ~ + 1 1 00163441 -refurnish v 1 1 @ 1 0 02336807 -refuse v 6 5 ! @ ~ $ + 6 4 00797430 02237338 02707800 02212825 02755017 02502916 -refute v 2 3 @ ~ + 2 2 00814850 00667747 -regain v 2 4 @ ~ $ + 2 1 02247977 02285629 -regale v 1 3 @ ~ $ 1 1 01176232 -regard v 3 4 @ ~ $ + 3 3 00690614 02133185 02677097 -regard_as v 1 1 @ 1 1 00689950 -regenerate v 9 4 @ ~ $ + 9 0 01631072 00385189 00384620 00168588 00168393 00167824 00167535 00097941 00097621 -regiment v 3 2 @ + 3 1 02442372 02448886 02392961 -register v 10 6 @ ~ * $ + ; 10 6 02471690 01001857 02471087 02105810 00922867 02472033 02139740 01726605 01032326 00728224 -regorge v 1 1 @ 1 0 00076400 -regress v 4 4 ! @ ~ + 4 0 00491456 00387310 00249313 00093327 -regret v 4 4 @ ~ $ + 4 4 01796582 01796924 00911761 00911562 -regroup v 2 1 @ 2 1 02433381 00656825 -regrow v 1 1 @ 1 0 00095012 -regularise v 2 3 @ ~ + 2 0 02511551 00275607 -regularize v 2 3 @ ~ + 2 0 02511551 00275607 -regulate v 4 4 ! @ ~ + 4 3 00299341 02511551 00701040 00234988 -regurgitate v 4 2 @ + 4 0 02069396 01178335 00959178 00076400 -rehabilitate v 3 3 ! @ + 3 1 02552163 02565272 02552829 -reharmonise v 1 2 @ ; 1 0 01707128 -reharmonize v 1 3 @ + ; 1 0 01707128 -rehash v 2 2 @ + 2 1 01162629 01009097 -rehear v 1 1 @ 1 0 02501159 -rehearse v 1 4 @ ~ + ; 1 1 01723224 -reheat v 1 1 @ 1 0 00544280 -reheel v 1 1 @ 1 0 00533671 -rehouse v 1 1 @ 1 0 02459532 -reify v 1 3 @ ~ + 1 0 00692580 -reign v 2 3 @ ~ + 2 2 02587375 02644234 -reignite v 1 1 @ 1 0 02760344 -reimburse v 2 2 @ + 2 1 02285205 02249591 -reimpose v 1 2 @ + 1 0 02307140 -rein v 4 4 @ ~ + ; 4 1 02442737 01862090 01858362 00234857 -rein_in v 3 3 @ ~ ; 3 1 01862090 02442737 01858362 -reincarnate v 2 3 @ + ; 2 0 02698726 00167652 -reinforce v 2 3 @ ~ + 2 2 00222472 00787660 -reinstall v 1 1 @ 1 1 01570258 -reinstate v 2 3 @ ~ + 2 1 02553262 02426799 -reinsure v 3 2 @ + 3 0 02251509 00891734 00891541 -reintegrate v 1 1 @ 1 0 00398349 -reinterpret v 2 2 @ + 2 1 00938899 00624140 -reintroduce v 1 2 @ + 1 0 00901464 -reinvent v 2 1 @ 2 0 01737923 01737778 -reinvigorate v 1 1 @ 1 0 00028362 -reissue v 2 2 @ + 2 1 01736098 02479701 -reiterate v 1 3 @ ~ + 1 1 00958334 -reject v 7 5 ! @ ~ $ + 7 4 00685683 02237338 00807178 00796976 02755017 02502916 00685419 -rejig v 1 1 @ 1 0 02341491 -rejoice v 3 3 @ ~ + 3 3 01813884 00857923 01823370 -rejoin v 2 1 @ 2 2 02435552 00816353 -rejuvenate v 5 5 ! @ ~ + ; 5 0 00794383 00578862 00250877 00168588 00097781 -rekindle v 2 1 @ 2 0 02761594 01760552 -relace v 1 1 @ 1 1 01521813 -relapse v 2 2 @ + 2 0 00268165 00093327 -relate v 5 4 @ ~ $ + 5 5 00713167 02676054 00953058 02724417 02458103 -relativise v 1 1 @ 1 0 00691834 -relativize v 1 1 @ 1 0 00691834 -relax v 8 6 ! @ ~ > $ + 8 4 00026385 00419685 00419137 00025654 02602212 02601996 02601808 00441212 -relay v 2 2 @ + 2 1 00743082 01225576 -relearn v 1 1 @ 1 1 00598278 -release v 10 4 @ ~ + ; 10 7 01474550 02421374 01436518 00967625 00104868 00069295 02494047 02316304 01757994 00269682 -relegate v 4 3 @ ~ + 4 2 02589013 02399331 02503803 00739662 -relent v 1 1 ~ 1 1 02703289 -relieve v 11 4 @ ~ + ; 11 7 00064095 02412175 02564146 01815185 02550868 00936648 00082563 02312996 02312882 00893878 00199067 -relieve_oneself v 1 3 @ ~ $ 1 1 00072012 -reline v 2 1 @ 2 0 01271064 00509349 -relinquish v 4 3 @ ~ + 4 1 02316304 02534062 02227487 01474550 -relish v 1 3 ~ * + 1 1 01820302 -relive v 1 2 @ + 1 1 00597216 -reload v 2 1 @ 2 1 01490572 01490690 -relocate v 2 3 @ $ + 2 0 00414627 00414409 -rely v 1 3 @ ~ + 1 1 00688377 -rely_on v 2 0 2 0 02664017 02663848 -rely_upon v 1 0 1 0 02664017 -relyric v 1 2 @ ; 1 1 01699059 -remain v 4 3 @ ~ + 4 4 00117985 02727462 02637592 02731024 -remain_down v 1 2 @ ; 1 0 01125209 -remain_firm v 1 2 @ $ 1 1 02702120 -remainder v 1 3 @ + ; 1 0 02243461 -remake v 1 3 @ ~ + 1 1 01619725 -remand v 2 3 @ + ; 2 1 00949974 02494356 -remark v 2 3 @ ~ + 2 1 01020005 01058574 -remarry v 1 2 @ + 1 1 02490247 -remediate v 1 2 @ + 1 0 00199912 -remedy v 2 3 @ + ; 2 1 00199912 00082563 -remember v 8 4 ! @ ~ + 8 4 00607780 00609683 00611256 02356567 00882802 00882523 00611802 00611481 -remember_oneself v 1 1 @ 1 0 02597968 -remilitarise v 1 2 @ + 1 0 01099220 -remilitarize v 1 2 @ + 1 0 01099220 -remind v 2 4 @ ~ > + 2 2 00610538 00877848 -reminisce v 1 2 @ + 1 1 00611055 -remit v 7 5 @ ~ * > + 7 1 02255081 02642814 01018800 00949974 00903947 00421125 00268314 -remodel v 2 1 @ 2 1 00199490 01658586 -remold v 3 1 @ 3 0 01663205 01660870 00164072 -remonstrate v 3 2 @ ~ 3 1 00910555 01013230 00824767 -remould v 2 1 @ 2 0 01663205 00164072 -remount v 3 2 @ + 3 1 01923630 01343372 01184195 -remove v 8 4 @ ~ > + 8 6 00173338 02404224 02224055 02404904 02086458 00421535 02482425 00571061 -remunerate v 1 3 @ ~ + 1 0 02249741 -rename v 2 1 @ 2 1 01029212 02396981 -rend v 1 1 @ 1 1 01573276 -render v 13 5 @ ~ $ + ; 13 5 00120675 02327200 01732172 01629000 01062253 02310328 02310007 02293321 01686956 01361240 01060746 00959827 00444975 -render-set v 1 2 @ ; 1 0 01361387 -rendezvous v 1 2 @ + 1 0 02487226 -renegade v 1 2 @ + 1 0 02583379 -renege v 1 3 @ * + 1 0 00800242 -renege_on v 1 2 @ * 1 0 00800242 -renegociate v 2 3 @ ~ ; 2 0 00762329 00762043 -renegotiate v 2 3 @ ~ ; 2 0 00762329 00762043 -renegue_on v 1 2 @ * 1 0 00800242 -renew v 2 3 @ ~ + 2 2 01631072 00167652 -renormalise v 1 2 @ $ 1 0 00468236 -renormalize v 1 2 @ $ 1 0 00468236 -renounce v 4 3 @ ~ + 4 0 02379198 02367032 02227487 00757544 -renovate v 3 4 @ ~ $ + 3 0 00164201 00163441 00024279 -rent v 4 4 @ ~ ^ + 4 3 02460199 02208903 02208537 02460619 -rent_out v 1 1 @ 1 1 02209499 -reopen v 1 1 @ 1 1 01346693 -reorder v 2 3 @ ~ + 2 1 00659112 00745810 -reorganise v 2 2 @ ~ 2 0 02433381 02433123 -reorganize v 2 3 @ ~ + 2 2 02433123 02433381 -reorient v 3 3 @ ~ + 3 0 02159594 01908543 00468791 -reorientate v 1 1 @ 1 0 02159594 -repaint v 2 2 @ ; 2 0 01685797 01363174 -repair v 5 5 ! @ ~ $ + 5 1 00260648 02250625 01843497 00199912 00024279 -repatriate v 2 3 ! @ + 2 0 02503633 02502387 -repay v 4 3 @ ~ + 4 2 02284951 02344060 02344381 00816353 -repeal v 1 3 @ ~ + 1 1 00799798 -repeat v 6 4 @ ~ + ; 6 5 00958334 01734502 00343334 00957679 02595662 01727490 -repel v 5 5 ! @ ~ $ + 5 4 01506157 01808769 01131197 00798539 02194913 -repent v 2 2 @ + 2 1 01796800 01796582 -repercuss v 1 2 @ + 1 0 00137940 -rephrase v 1 3 @ ~ + 1 1 00961736 -repine v 1 1 @ 1 0 00910891 -replace v 4 4 @ ~ $ + 4 4 00162688 02405390 01308381 02257767 -replant v 1 1 @ 1 1 01568489 -replay v 4 2 @ + 4 0 01738347 01725530 01081001 01075883 -replenish v 1 2 @ + 1 1 00453803 -replete v 1 3 @ ~ + 1 0 01193721 -replicate v 3 4 @ ~ + ; 3 0 02036498 01734929 01734502 -reply v 1 3 @ ~ + 1 1 00815686 -repoint v 1 1 @ 1 0 00261957 -report v 6 4 @ ~ $ + 6 6 00965035 00966809 00965687 00965390 00967098 00965542 -report_out v 1 1 @ 1 1 00879212 -repose v 6 6 @ ~ > ^ $ + 6 1 01160645 02664664 01548072 01547390 01544692 01498166 -repose_on v 1 2 @ ~ 1 0 02663643 -reposit v 1 2 @ + 1 0 02281751 -reposition v 2 3 @ ~ + 2 0 01883344 01499006 -repossess v 2 3 @ ~ + 2 0 02276322 02205887 -repot v 1 1 @ 1 0 01529624 -reprehend v 1 2 @ + 1 0 00826201 -represent v 15 5 @ ~ $ + ; 15 10 02699497 00836236 02541921 02541509 00988028 02723733 02620587 02581675 01686132 01719302 01711445 00987345 00825447 00772967 00380698 -repress v 4 4 @ ~ + ; 4 1 02424128 01568630 00612841 00586598 -reprieve v 2 2 @ + 2 0 02644035 02551390 -reprimand v 2 3 @ ~ + 2 1 00823669 00824767 -reprint v 1 2 @ + 1 1 01736098 -reprise v 1 2 @ ; 1 0 01727490 -reprize v 1 2 @ ; 1 0 01727490 -reproach v 1 2 @ + 1 1 00825975 -reprobate v 3 4 ! @ + ; 3 1 00687181 01071155 00864159 -reprocess v 1 2 @ ~ 1 0 01162425 -reproduce v 4 4 @ ~ + ; 4 2 01736822 00055142 01737141 00959178 -reproof v 1 3 @ ~ + 1 0 00824767 -reprove v 1 2 @ + 1 0 00824066 -republish v 2 3 @ + ; 2 0 01746145 00169176 -repudiate v 4 3 @ ~ + 4 2 00757544 00686039 00911917 00816828 -repugn v 1 3 @ ~ + 1 0 00869596 -repulse v 3 4 @ ~ $ + 3 1 01131197 01808769 01506157 -repurchase v 1 2 @ + 1 0 02207890 -repute v 1 2 @ + 1 1 00689950 -request v 3 4 @ ~ $ + 3 2 00752764 00753428 01069809 -require v 4 4 @ ~ $ + 4 4 02627934 00755745 00751567 01188725 -requisition v 2 3 ! @ + 2 1 00754430 02276000 -requite v 1 3 @ ~ + 1 0 02344060 -reread v 1 1 @ 1 1 00625723 -rerun v 4 3 @ + ; 4 1 00973888 01649482 01094539 00517684 -rescale v 1 2 @ ~ 1 0 00319761 -reschedule v 1 1 @ 1 1 00795475 -rescind v 1 3 @ ~ + 1 1 00799798 -rescue v 2 3 @ ~ + 2 1 02551144 02206920 -reseal v 1 1 @ 1 1 01354285 -research v 2 3 @ ~ + 2 1 00877327 00648224 -reseat v 3 2 @ ; 3 0 02334458 02334173 01544558 -resect v 1 3 @ + ; 1 0 01255057 -reseed v 2 2 @ ; 2 0 01501575 01185148 -resell v 1 2 @ ; 1 0 02243630 -resemble v 1 3 @ ~ + 1 1 02665282 -resent v 2 3 @ ~ + 2 1 01773346 01825125 -reserve v 4 5 @ ~ * $ + 4 3 02214485 00724150 00795632 02498320 -reset v 3 2 @ + 3 1 00947591 00298773 00297669 -resettle v 1 2 @ + 1 1 00415828 -resew v 1 1 @ 1 0 01329875 -reshape v 2 1 @ 2 1 00702065 01660870 -reship v 1 2 @ + 1 0 01497141 -reshoot v 1 2 @ ; 1 0 01003741 -reshuffle v 2 3 @ + ; 2 0 01418959 00278710 -reside v 3 3 @ ~ + 3 2 02650552 02648639 02664664 -resift v 1 1 @ 1 1 01460712 -resign v 4 3 @ ~ + 4 1 02367032 02382367 02316304 00732394 -resile v 4 3 @ ~ + 4 0 02381227 01892104 00798717 00387680 -resinate v 1 3 @ + ; 1 0 02192383 -resist v 6 5 ! @ ~ $ + 6 4 02707800 01116585 02521410 01115916 02755017 02583545 -resize v 1 2 @ ~ 1 0 00319629 -resmudge v 1 1 @ 1 1 01252130 -resole v 1 1 @ 1 0 00533403 -resolve v 7 5 @ ~ > + ; 7 6 00698855 01021420 00699626 00635523 02193612 00733044 00447309 -resonate v 2 4 @ ~ > + 2 0 02175958 00592037 -resorb v 1 2 @ + 1 0 01539913 -resort v 2 2 @ + 2 1 02590072 01843497 -resound v 2 3 @ ~ + 2 1 02183787 02172888 -respect v 2 4 ! @ ~ + 2 2 00694068 02457233 -respire v 3 5 @ ~ * $ + 3 0 00002573 00002325 00001740 -respite v 1 2 @ + 1 0 02644035 -resplend v 1 2 @ + 1 0 02733453 -respond v 3 3 @ ~ + 3 3 00717358 00815686 00718737 -rest v 11 6 ! @ ~ ^ $ + 11 10 01545883 00779360 00779601 02731390 00014405 00117985 02664664 01610101 01543731 01502946 02595840 -rest_on v 2 2 @ ~ 2 2 01590007 02663643 -restart v 2 1 @ 2 0 01858686 00350104 -restate v 1 3 @ ~ + 1 1 00958334 -restitute v 2 2 @ + 2 0 02310482 00164201 -restock v 1 2 @ ; 1 1 02322924 -restore v 5 3 @ ~ + 5 4 02552449 00168588 02310482 00260648 02426799 -restrain v 5 4 @ ~ * + 5 4 02422663 00233335 01301410 01301051 01819554 -restrengthen v 1 1 @ 1 0 00221607 -restrict v 4 4 ! @ ~ + 4 4 00236592 02509287 00233335 00199309 -restructure v 1 1 @ 1 0 00404401 -resublime v 1 2 @ ; 1 0 00366741 -resubmit v 1 1 @ 1 0 02310157 -result v 3 4 @ ~ $ + 3 2 02634265 02635659 00340704 -resume v 4 4 @ ~ $ + 4 3 00350104 00350283 02381951 01007924 -resurface v 3 1 @ 3 0 01990848 01265649 00425691 -resurge v 1 2 @ + 1 0 02624806 -resurrect v 3 4 @ ~ $ + 3 1 00098517 00168910 00098770 -resuscitate v 2 5 @ ~ > $ + 2 0 00098083 00024047 -resuspend v 1 3 @ + ; 1 1 00148967 -ret v 1 1 @ 1 0 00216991 -retail v 2 5 ! @ $ + ; 2 1 02728570 02247028 -retain v 4 4 @ ~ $ + 4 3 02701628 02410175 02283324 00610010 -retake v 3 4 @ ~ + ; 3 0 02304013 01439604 01003588 -retaliate v 2 3 @ ~ + 2 2 01153486 01153165 -retard v 4 3 @ ~ + 4 1 00438752 02752567 00440286 00439958 -retch v 2 2 @ + 2 1 00076400 00077458 -retell v 3 2 @ ~ 3 0 01703454 01635176 00958334 -rethink v 1 3 @ ~ + 1 1 00688768 -retick v 1 1 @ 1 0 01331689 -reticulate v 3 2 @ + 3 0 02625659 02479853 01585142 -retie v 1 1 @ 1 1 01285286 -retire v 11 7 @ ~ * > $ + ; 11 7 02379753 02380009 01994442 02480448 02428487 02380251 02225342 01766952 01615457 01154175 00017865 -retool v 2 1 @ 2 0 02433549 02338109 -retort v 1 2 @ + 1 1 00816353 -retouch v 2 2 @ ; 2 0 00288563 00230562 -retrace v 2 2 @ ~ 2 1 02004352 00634090 -retract v 4 4 @ ~ $ + 4 1 00798717 02061366 01609773 01506583 -retrain v 2 2 @ + 2 0 00603822 00603179 -retranslate v 1 1 @ 1 1 00960369 -retransmit v 1 1 @ 1 0 02080924 -retread v 2 2 @ + 2 0 01669285 00164072 -retreat v 4 4 @ ~ $ + 4 1 01994442 02092476 01994846 00799383 -retrench v 2 2 @ + 2 0 02269767 00430099 -retrieve v 4 4 @ ~ $ + 4 1 02247977 01433991 01433809 00607780 -retrofit v 3 2 @ $ 3 0 02361329 01569896 00262348 -retroflex v 2 2 @ + 2 0 02036498 00979411 -retrograde v 5 2 @ ~ 5 0 01995097 01994960 01994846 01009097 00249313 -retrogress v 2 3 @ ~ + 2 0 00249313 00093327 -retrospect v 1 2 @ + 1 0 00696414 -retrovert v 1 3 @ ~ + 1 0 00387310 -retry v 1 2 @ + 1 0 02501159 -return v 16 5 @ ~ $ + ; 16 11 02004874 02310007 00387310 00959524 02078294 02357072 01433159 00816353 00548153 02284951 01062253 02401296 02229550 02005617 01629000 00879028 -reunify v 1 2 @ + 1 0 02470893 -reunite v 2 2 @ + 2 2 02486822 02470893 -reuse v 1 2 @ ~ 1 1 01162425 -rev v 1 2 @ + 1 1 00439698 -rev_up v 2 1 @ 2 0 00439849 00439698 -revalue v 2 4 @ ~ $ + 2 0 00316195 00315810 -revamp v 2 1 @ 2 1 00163915 00533527 -reveal v 3 6 @ ~ > $ + ; 3 2 02143283 00933821 02144243 -revel v 2 4 @ ~ * + 2 1 01190948 02491383 -revenge v 1 3 @ ~ + 1 1 01153486 -reverberate v 6 5 @ ~ $ + ; 6 1 02183787 02647918 02136533 02136271 01892104 00516142 -revere v 2 3 @ ~ + 2 2 01778017 01778568 -reverence v 1 3 @ ~ + 1 1 01778568 -reverse v 5 3 @ ~ + 5 3 00138508 00386715 00716130 00799798 00386965 -revert v 2 3 @ ~ + 2 1 00387310 00120217 -revet v 2 3 @ $ + 2 0 01271658 01271454 -review v 5 3 @ ~ + 5 3 00696189 00855512 00696700 00696852 00696414 -revile v 1 2 @ + 1 1 00847870 -revise v 2 3 @ ~ + 2 2 00996102 02433549 -revisit v 1 1 @ 1 0 01844319 -revitalise v 1 2 @ + 1 0 00164658 -revitalize v 2 3 @ ~ + 2 1 00097621 00164658 -revive v 5 5 @ ~ > $ + 5 4 00098083 00024279 00169298 00168910 00024047 -revivify v 1 3 @ $ + 1 0 00024279 -revoke v 2 4 @ ~ + ; 2 0 01074357 00799798 -revolt v 3 3 @ ~ + 3 0 02583780 02194913 01808374 -revolutionise v 2 2 @ + 2 0 00605310 00125633 -revolutionize v 3 2 @ + 3 1 00125633 02402695 00605310 -revolve v 3 5 @ ~ ^ $ + 3 2 02045043 02043982 01866610 -revolve_about v 1 1 @ 1 1 02676496 -revolve_around v 2 1 @ 2 1 02676496 02082355 -reward v 3 3 @ ~ + 3 2 02546075 00787660 02344381 -rewire v 1 1 @ 1 0 02354736 -reword v 1 3 @ ~ + 1 0 00961736 -rework v 1 1 @ 1 0 01669285 -rewrite v 2 4 @ ~ + ; 2 1 00995838 01700934 -rhapsodise v 2 2 @ + 2 0 00954137 00916783 -rhapsodize v 2 2 @ + 2 0 00954137 00916783 -rhumba v 1 2 @ + 1 0 01897779 -rhyme v 2 4 @ ~ + ; 2 1 01701858 02750432 -rib v 2 4 @ ~ + ; 2 0 01671755 00851933 -rice v 1 3 @ + ; 1 0 01460408 -rick v 2 2 @ + 2 0 01503736 00091124 -ricochet v 1 3 @ ~ + 1 1 01892104 -rid v 1 3 ~ ^ + 1 1 02350175 -rid_of v 1 1 ~ 1 0 02629256 -riddle v 6 3 @ ~ + 6 2 01275301 00623006 01460785 01229071 00742051 00635714 -ride v 14 6 ! @ ~ $ + ; 14 5 01957529 01955984 02684644 01839538 00850501 02750154 02742232 02711987 02692089 02102398 02095545 01847676 01511134 01429322 -ride_away v 1 1 @ 1 1 02011302 -ride_herd v 1 1 @ 1 1 01958103 -ride_horseback v 1 4 @ ~ + ; 1 0 01958615 -ride_off v 1 1 @ 1 1 02011302 -ride_out v 1 1 ~ 1 0 02619122 -ride_roughshod v 1 1 @ 1 0 02515583 -ride_the_bench v 1 2 @ ; 1 1 02418029 -ridge v 5 3 @ + ; 5 0 02689730 01742244 01509933 01310417 00144446 -ridicule v 1 3 @ ~ + 1 1 00851933 -riff v 2 2 @ + 2 0 02153023 01649605 -riffle v 4 4 @ * + ; 4 1 01591357 02153023 02040054 01419160 -rifle v 2 2 @ ~ 2 1 02344568 01318849 -rig v 4 2 @ + 4 3 02573127 02351239 01286151 00408085 -rig_out v 1 4 @ ~ $ + 1 0 00044149 -rig_up v 1 1 @ 1 1 01661655 -right v 4 5 ! @ ~ $ + 4 0 02519991 01984734 01984574 00199659 -rigidify v 2 2 @ + 2 0 00418408 00418110 -rile v 2 3 @ ~ $ 2 0 01787955 01419729 -rim v 3 3 @ ~ + 3 1 02687596 02329999 01866497 -rime v 2 4 @ ~ + ; 2 0 02750432 01701858 -ring v 6 8 @ ~ * > ^ $ + ; 6 4 02180898 02183787 02181538 00789448 01467370 01297401 -ring_out v 1 1 @ 1 1 02175861 -ring_up v 1 1 @ 1 1 01000058 -rinse v 3 4 @ ~ $ + 3 2 01536168 01270199 00037138 -rinse_off v 1 2 @ ~ 1 0 01536168 -riot v 2 2 @ + 2 0 02584661 02493260 -rip v 4 2 @ + 4 3 01573276 02098041 01601147 00863277 -rip_off v 1 4 @ ~ * + 1 0 02573275 -rip_out v 1 1 @ 1 0 00930194 -rip_up v 1 2 @ ~ 1 0 01573891 -ripen v 2 3 @ > + 2 2 00249969 00249852 -riposte v 2 3 @ + ; 2 0 02062503 00816353 -ripple v 2 4 @ * $ + 2 2 02040054 02187922 -rise v 17 7 ! @ ~ ^ $ + ; 17 16 01968569 00155143 01983264 02696801 01990281 02624263 01969779 00433232 00432436 00018158 00155547 01818116 01155545 02583139 01983134 01970348 00098770 -rise_up v 3 2 @ ~ 3 1 01990281 02583139 01981623 -risk v 2 3 @ ~ + 2 2 02545578 02544348 -ritualise v 1 1 @ 1 0 00525446 -ritualize v 1 2 @ + 1 1 00525446 -rival v 2 4 @ ~ $ + 2 1 02672187 01122194 -rive v 2 3 @ ~ $ 2 1 01573276 01556572 -rivet v 3 4 @ ~ $ + 3 1 00722232 01367266 00722675 -roach v 2 2 @ + 2 0 01299562 01299473 -roam v 1 4 @ ~ $ + 1 1 01881180 -roar v 6 3 @ ~ + 6 5 01046059 00915605 01046932 01996188 01048718 00029836 -roar_off v 1 1 @ 1 1 02014733 -roast v 2 4 @ ~ + ; 2 1 00324560 00851933 -rob v 2 4 @ ~ * + 2 2 02321391 02319050 -robe v 2 3 @ $ + 2 1 00052043 01617034 -rock v 2 4 @ ~ $ + 2 1 01875295 01876028 -rocket v 2 2 @ + 2 0 01944086 01241753 -roil v 2 2 @ ~ 2 0 01885430 01419729 -roister v 1 2 @ + 1 0 02493260 -roleplay v 1 5 @ ~ $ + ; 1 1 01719921 -roll v 18 5 @ ~ ^ $ + 18 9 01866192 01887020 02687251 01391280 02198014 01522276 01526139 00143204 00100410 02322596 01901783 01881180 01875684 01866610 01055978 00324427 00125289 00125078 -roll_around v 1 1 @ 1 0 00344042 -roll_down v 1 1 @ 1 0 01966706 -roll_in v 1 1 @ 1 0 00584604 -roll_in_the_hay v 1 3 @ ~ $ 1 0 01426397 -roll_off v 1 1 @ 1 0 00945648 -roll_out v 2 2 @ ~ 2 1 01391280 01487185 -roll_over v 3 3 @ ~ + 3 1 01867816 02271667 02271490 -roll_up v 7 4 ! @ ~ $ 7 1 00435853 02304982 02006453 01487008 01345589 00435688 00125078 -roller_skate v 1 3 @ + ; 1 0 01937534 -rollerblade v 1 3 @ + ; 1 0 01937992 -rollick v 1 1 @ 1 0 01883716 -romance v 4 3 @ ~ + 4 0 02534492 01775782 01037910 00834557 -romanise v 1 1 @ 1 0 00995525 -romanize v 1 1 @ 1 0 00995525 -romanticise v 2 2 @ + 2 0 00693172 00534680 -romanticize v 3 2 @ + 3 1 00693172 00534680 00012854 -romp v 3 2 @ + 3 1 01883716 01926878 01100567 -roneo v 1 2 @ + 1 0 01695459 -roof v 1 3 @ ~ + 1 1 01233993 -rook v 1 2 @ ~ 1 0 02572119 -room v 1 2 @ + 1 1 02656763 -roost v 2 2 @ + 2 1 01543731 00415635 -root v 6 4 @ ~ $ + 6 1 00358135 02623731 01529194 01282413 00415398 00358314 -root_for v 1 1 @ 1 0 01148710 -root_on v 1 2 @ ~ 1 0 00858781 -root_out v 2 2 @ ~ 2 1 01566916 01662118 -rootle v 1 1 @ 1 0 01282413 -rope v 2 3 @ ^ + 2 0 01604251 01289155 -rope_down v 1 3 @ * ; 1 0 01923058 -rope_in v 2 1 @ 2 0 01588297 00768630 -rope_off v 1 1 @ 1 0 01588297 -rope_up v 1 1 @ 1 0 01289330 -rosin v 1 2 @ + 1 0 01250676 -rot v 2 3 @ ~ + 2 1 00209837 00093775 -rotate v 6 5 @ ~ > $ + 6 3 02045043 02393894 01096305 02045790 02045415 00245913 -rouge v 1 2 @ + 1 0 00041554 -rough v 1 1 @ 1 1 01754452 -rough-dry v 1 1 @ 1 0 00218888 -rough-hew v 1 1 @ 1 0 01260850 -rough-house v 1 1 @ 1 0 02515828 -rough-sand v 1 1 @ 1 0 01386611 -rough_in v 1 1 @ 1 0 01754452 -rough_out v 1 1 @ 1 1 01754452 -rough_up v 1 1 @ 1 0 01398323 -roughcast v 3 2 @ + 3 0 01660772 01361779 01260850 -roughen v 1 3 ! @ * 1 1 01253621 -roughhouse v 1 1 @ 1 0 00604347 -round v 7 3 @ ~ + 7 2 01858910 00145147 00980339 00862683 00473799 00145623 00046382 -round_down v 1 1 @ 1 0 00145623 -round_off v 3 2 @ ~ 3 1 00145147 00473799 00145623 -round_out v 4 2 @ ~ 4 2 00485274 00172381 00145623 00145147 -round_up v 1 2 @ + 1 1 01381913 -rouse v 4 4 @ ~ $ + 4 1 02083806 02056466 01762528 00018813 -rout v 4 2 @ + 4 1 01108951 01282413 01281782 01104248 -rout_out v 3 4 @ ~ * $ 3 2 02292265 02056466 01108951 -rout_up v 1 2 @ * 1 0 02292265 -route v 3 2 @ + 3 0 01955364 01952750 01952564 -rove v 1 4 @ ~ $ + 1 1 01881180 -row v 1 3 @ ~ + 1 1 01946996 -rub v 3 5 @ ~ * ^ + 3 2 01249724 01250908 02119874 -rub_along v 1 1 @ 1 0 02588464 -rub_down v 2 4 @ ~ * + 2 0 01254013 01232738 -rub_off v 1 2 @ ~ 1 0 01254013 -rub_out v 1 3 @ ~ * 1 0 01548718 -rubber v 1 2 @ + 1 0 00136254 -rubberise v 1 1 @ 1 0 00136254 -rubberize v 1 2 @ + 1 0 00136254 -rubberneck v 1 2 @ + 1 0 02150740 -rubberstamp v 2 1 @ 2 0 01273632 00674517 -rubbish v 1 1 @ 1 0 01062165 -rubify v 1 3 @ ~ + 1 0 00535360 -rubric v 1 1 @ 1 0 00535481 -rubricate v 4 3 @ + ; 4 0 02546710 01756875 01683957 00996810 -ruck v 1 2 @ + 1 0 01279015 -ruck_up v 1 1 @ 1 0 01279015 -ruckle v 2 2 @ ~ 2 0 02175283 01278427 -ruddle v 2 1 @ 2 0 01518552 00535570 -rue v 1 2 @ + 1 0 01796582 -ruff v 1 4 @ ~ + ; 1 0 01078235 -ruffle v 9 4 @ ~ * + 9 2 02040054 01789047 01916634 01790538 01591357 01418667 01391806 01387493 01387301 -ruffle_up v 1 1 @ 1 0 01387493 -ruggedise v 1 2 @ + 1 0 00165244 -ruggedize v 1 2 @ + 1 0 00165244 -ruin v 6 3 @ ~ + 6 1 01564144 02558951 02318165 01566490 01428381 00578993 -rule v 7 5 @ ~ ^ $ + 7 4 02586619 00715868 02644234 00971999 02716995 01690020 00234857 -rule_in v 1 1 @ 1 1 01147562 -rule_out v 3 1 @ 3 3 02629390 01147562 00685419 -rumba v 1 1 @ 1 0 01897779 -rumble v 2 2 @ + 2 2 02187320 01045719 -ruminate v 2 4 @ ~ + ; 2 0 01174555 00630380 -rummage v 1 2 @ + 1 1 01319049 -rumor v 1 2 @ + 1 1 01042228 -rumour v 1 2 @ + 1 0 01042228 -rumple v 3 2 @ $ 3 0 01387493 01278817 00564857 -rumpus v 1 2 @ + 1 0 02585259 -run v 41 7 ! @ ~ ^ $ + ; 41 29 01926311 02075049 02685951 02443849 02721284 02066939 01525666 02727039 01094086 01717169 02099829 02719399 01526290 00549063 00517529 02720904 02647497 02612234 02563327 01746359 01641545 01212230 02686625 02525312 02242256 02092309 02060792 01927903 01914947 02648110 02421921 01927747 01927447 01926984 01864038 01143838 01086103 00539110 00444629 00334803 00332672 -run_a_risk v 1 2 @ ~ 1 1 02544348 -run_across v 1 2 ~ $ 1 1 02023107 -run_afoul v 1 1 @ 1 0 02567147 -run_aground v 2 2 @ > 2 0 02022486 02022359 -run_along v 1 2 @ ~ 1 1 02703539 -run_around v 1 1 @ 1 1 01883716 -run_away v 2 3 @ ~ + 2 2 02075049 02100476 -run_bases v 1 2 @ ; 1 1 01927211 -run_by v 1 1 @ 1 1 02052226 -run_down v 7 2 @ $ 7 5 02376833 02068223 00106960 00099517 02152278 02280869 02004227 -run_dry v 1 1 @ 1 0 02771756 -run_for v 1 1 @ 1 0 02648110 -run_into v 4 3 @ ~ $ 4 3 02730326 01240308 01236164 02023107 -run_low v 1 2 @ $ 1 0 01192773 -run_off v 7 5 @ ~ $ + ; 7 3 02073714 02011040 02002720 02074186 02067889 01736299 01081505 -run_on v 2 2 @ $ 2 1 00963872 02684254 -run_out v 8 3 @ ~ $ 8 4 00561571 02071457 02011040 02684784 02069888 00561714 00560247 00099517 -run_over v 2 3 @ ~ * 2 2 00106960 02072159 -run_roughshod v 1 1 @ 1 1 02515583 -run_short v 1 2 @ $ 1 0 01192773 -run_through v 2 4 @ ~ $ + 2 2 01161947 01157517 -run_up v 5 3 @ ~ * 5 3 00159553 01455754 01329239 02321245 01666604 -rupture v 1 3 @ ~ + 1 1 01573515 -rush v 7 5 ! @ ~ > + 7 4 02058994 01119950 00459296 00459498 02059770 02059462 01644522 -rush_along v 1 2 @ ~ 1 0 02058994 -rush_away v 1 1 @ 1 0 02059675 -rush_off v 1 1 @ 1 1 02059675 -rush_out v 1 1 @ 1 1 01966501 -rust v 3 4 @ ~ $ + 3 1 00273963 00274283 00239614 -rusticate v 5 2 @ + 5 0 02616542 02504416 02502232 01555326 00535669 -rustle v 3 3 @ + ; 3 2 02182662 02277138 02270090 -rut v 2 2 @ + 2 0 02724705 01277431 -saber v 2 2 @ + 2 0 01554622 01326730 -sabotage v 1 3 @ ~ + 1 0 02543607 -sabre v 2 2 @ + 2 0 01554622 01326730 -saccharify v 2 1 @ 2 0 02195951 00564514 -sack v 4 6 @ ~ * ^ $ + 4 1 02345048 02402825 02291258 01486151 -sack_out v 1 1 ~ 1 0 00017865 -sack_up v 1 2 @ $ 1 0 02291258 -sacrifice v 4 4 @ ~ $ + 4 2 02343595 01326093 02343961 02325558 -sadden v 2 4 ! @ ~ > 2 1 01813053 01813393 -saddle v 3 4 ! @ ~ + 3 3 01492422 01490814 00750532 -safeguard v 2 2 @ + 2 1 01138102 02026327 -sag v 2 3 @ ~ + 2 2 01985524 01985757 -sag_down v 1 1 @ 1 1 01985757 -sail v 4 6 @ ~ ^ $ + ; 4 3 01846658 01869563 01945516 01846320 -sail_through v 1 1 @ 1 0 02522581 -sailplane v 1 4 @ * + ; 1 0 01942959 -saint v 2 3 @ + ; 2 0 01776383 00823129 -salaam v 1 2 @ + 1 0 00899847 -salinate v 1 3 ! @ + 1 0 00531769 -salivate v 2 3 @ ~ + 2 1 00102791 01827425 -sallow v 1 1 @ 1 0 00281790 -sally_forth v 1 1 @ 1 0 02015031 -sally_out v 2 1 @ 2 0 02015031 01966501 -salt v 4 3 @ + ; 4 1 02196214 01375120 00560122 00213353 -salt_away v 1 2 @ ~ 1 1 02281093 -saltate v 2 2 @ + 2 0 01965654 01965464 -salute v 6 4 @ ~ * + 6 3 01175467 00899597 00857270 02124501 00900214 00899956 -salvage v 2 2 @ + 2 1 02550868 01381357 -salve v 2 3 @ + ; 2 0 02550868 00085907 -samba v 1 2 @ + 1 0 01896881 -sample v 1 3 @ ~ + 1 1 01195299 -sanctify v 2 3 @ ~ + 2 0 00866702 00475819 -sanction v 3 3 @ ~ + 3 2 00806502 02479154 00806891 -sand v 1 3 @ ~ + 1 1 01386433 -sand_cast v 1 1 @ 1 0 01663339 -sandbag v 5 3 @ * + 5 0 02517112 02506181 01410079 00841394 00221964 -sandblast v 1 2 @ + 1 0 01386741 -sandpaper v 1 3 @ ~ + 1 0 01386433 -sandwich v 2 2 @ + 2 0 01665081 01529906 -sanitate v 1 3 @ + ; 1 0 02361981 -sanitise v 2 2 @ + 2 0 01245052 00554468 -sanitize v 2 2 @ + 2 0 01245052 00554468 -sap v 2 3 @ $ + 2 1 02280869 01310555 -saponify v 2 4 @ $ + ; 2 0 00538852 00538571 -sashay v 3 2 @ + 3 1 01869196 01916634 01895027 -sass v 1 2 @ + 1 0 00816143 -sate v 1 2 @ ~ 1 0 01193721 -satellite v 1 2 @ + 1 0 00969137 -satiate v 2 3 @ ~ + 2 1 01193721 01193099 -satirise v 1 2 @ + 1 0 00852685 -satirize v 1 2 @ + 1 0 00852685 -satisfice v 1 1 @ 1 0 02369123 -satisfise v 1 1 @ 1 0 02369123 -satisfy v 3 4 ! @ ~ + 3 3 02671880 01816431 01183573 -saturate v 2 4 @ ~ + ; 2 1 00456357 00497705 -sauce v 3 3 @ + ; 3 0 02518956 01364357 00535844 -saunter v 1 2 @ + 1 0 01917980 -saute v 1 3 @ + ; 1 1 00326619 -savage v 2 2 @ + 2 0 01120900 00823827 -save v 11 6 @ ~ * $ + ; 11 10 02550868 02225492 02551832 02266920 02265979 00549552 02551602 02464583 02357228 02283716 00998886 -save_up v 1 1 ~ 1 0 02265979 -savor v 4 5 @ ~ * + ; 4 3 01820302 02194286 02193974 02194138 -savour v 4 5 @ ~ * + ; 4 0 02194286 02194138 02193974 01820302 -savvy v 1 3 @ ~ + 1 1 00588221 -saw v 1 3 @ ~ + 1 1 01559590 -saw_logs v 1 2 @ * 1 0 00017031 -saw_wood v 1 2 @ * 1 0 00017031 -say v 11 5 @ ~ * $ + 11 8 01009240 01016002 00917300 02730813 00746718 00978549 00928959 00979870 01009821 00945499 00923197 -say_farewell v 1 3 ! @ ~ 1 0 00900961 -scab v 2 2 @ + 2 1 00098963 02412939 -scaffold v 1 2 @ + 1 0 01217617 -scald v 4 2 @ + 4 0 00863906 00371823 00371717 00196758 -scale v 8 2 @ + 8 2 02728388 01744082 02207036 01999082 01922466 01264148 00490428 00319406 -scale_down v 2 3 ! @ * 2 0 00428247 00240131 -scale_up v 1 3 ! @ * 1 0 00428418 -scallop v 5 2 @ + 5 0 01679106 01664847 01281912 01140315 00145299 -scalp v 2 4 @ ~ + ; 2 0 02241911 00198477 -scam v 1 3 @ ~ + 1 0 02572119 -scamp v 1 2 @ ; 1 0 01713983 -scamper v 1 3 @ ~ + 1 1 01902405 -scan v 7 4 @ ~ + ; 7 3 02152504 02152278 01318659 02661142 01855447 01051828 00627520 -scandalise v 1 2 @ + 1 0 01810447 -scandalize v 1 2 @ + 1 1 01810447 -scant v 3 1 @ 3 0 02516437 02509820 02225739 -scar v 1 5 @ ~ * $ + 1 0 01551195 -scare v 2 4 @ ~ > + 2 2 01779165 01785748 -scare_away v 1 1 @ 1 0 01785748 -scare_off v 1 1 @ 1 1 01785748 -scarf v 3 2 @ + 3 0 01431132 01294889 00051060 -scarf_out v 1 1 @ 1 0 01193099 -scarify v 3 2 @ + 3 1 01274745 01275658 01275427 -scarper v 1 2 @ ~ 1 0 02075049 -scat v 1 2 @ ~ 1 0 02075049 -scatter v 6 3 @ ~ + 6 5 02030424 02028994 01376245 01501676 00330565 02082690 -scavenge v 4 3 @ + ; 4 0 01534043 01381357 01177973 00180837 -scend v 1 1 @ 1 0 01885239 -scent v 3 5 @ ~ > ^ + 3 0 02125641 02125223 00043480 -scent_out v 1 1 * 1 0 02125460 -schedule v 2 3 @ ~ + 2 2 00678282 00794981 -schematise v 1 2 @ + 1 0 00568234 -schematize v 2 3 @ * + 2 0 01632103 00568234 -scheme v 2 2 @ + 2 1 00707956 00708376 -schlep v 1 2 @ ~ 1 0 01453718 -schmoose v 1 1 @ 1 0 01039162 -schmooze v 1 2 @ + 1 0 01039162 -schnorr v 1 1 @ 1 0 02270165 -school v 3 3 @ ~ + 3 1 02387910 02388403 01961334 -schuss v 1 2 @ ; 1 0 01938942 -scintillate v 5 4 @ $ + ; 5 0 02767760 02766390 02764765 02161330 00473003 -scissor v 1 1 @ 1 0 01248950 -sclaff v 2 3 @ + ; 2 0 01417257 01410946 -scoff v 2 2 @ + 2 1 00850192 00801782 -scold v 2 3 @ ~ + 2 2 00824767 00909573 -scollop v 3 2 @ + 3 0 01281912 01140315 00145299 -scoop v 2 3 @ ~ + 2 0 01312371 01109259 -scoop_out v 2 2 @ ~ 2 1 01282294 01312371 -scoop_up v 1 2 @ ~ 1 1 01312371 -scoot v 1 4 @ ~ $ + 1 1 02061495 -scorch v 5 4 @ ~ + ; 5 1 00377715 00582743 00582527 00379440 00219597 -score v 7 6 @ ~ * $ + ; 7 3 01111816 01275762 01004062 01706488 01428578 01112364 00657728 -score_out v 1 3 @ ~ * 1 0 01548718 -scorn v 2 4 @ ~ $ + 2 2 01774799 00796976 -scotch v 2 3 @ ~ + 2 0 02558172 01276080 -scotch_tape v 1 2 @ + 1 0 01331988 -scour v 4 3 @ ~ + 4 2 01317276 01251228 01251651 00455529 -scourge v 3 3 @ ~ + 3 0 02500775 01398443 00388635 -scout v 1 2 @ + 1 1 02167571 -scowl v 1 2 @ + 1 1 00033852 -scrabble v 2 2 @ + 2 0 01314440 01006239 -scrag v 2 2 @ + 2 0 01571744 01570744 -scram v 1 1 @ 1 0 02010864 -scramble v 5 5 ! @ ~ + ; 5 2 01886334 01921772 01472807 01418179 00537316 -scranch v 1 2 @ ~ 1 0 01058224 -scrap v 3 3 @ ~ + 3 1 02223238 00775156 00569870 -scrape v 6 3 @ ~ + 6 3 01308160 01750156 01309143 02040709 01384752 01309478 -scrape_along v 1 1 @ 1 0 02588464 -scrape_by v 1 1 @ 1 0 02588464 -scrape_up v 1 2 @ ~ 1 1 01384752 -scratch v 7 6 @ ~ * ^ $ + 7 3 01250908 01309143 02119874 02477755 01549420 01384752 01321895 -scratch_along v 1 1 @ 1 0 02588464 -scratch_off v 1 2 @ ; 1 0 01700655 -scratch_out v 1 1 @ 1 0 01549719 -scratch_up v 1 2 @ ~ 1 0 01309143 -scraunch v 1 2 @ ~ 1 0 01058224 -scrawl v 1 2 @ + 1 1 01747203 -screak v 2 1 @ 2 0 02171664 01048939 -scream v 3 4 @ ~ $ + 3 3 00913065 00912833 02173336 -screech v 2 2 @ + 2 1 02171664 01048939 -screen v 7 4 @ ~ * + 7 2 02533109 00697419 02400378 02139883 01477538 01460785 01130169 -screen_off v 1 1 @ 1 0 00333426 -screen_out v 1 1 @ 1 0 02400378 -screw v 5 6 ! @ ~ $ + ; 5 0 01426397 01353169 01352996 01352806 01104624 -screw_up v 4 2 @ + 4 1 00227667 02527651 01353311 00034634 -scribble v 2 2 @ + 2 1 01006239 01747203 -scribe v 1 2 @ + 1 1 01276192 -scrimmage v 1 2 @ + 1 1 01723579 -scrimp v 1 1 @ 1 0 02345498 -scrimshank v 1 3 @ + ; 1 0 02463990 -script v 1 3 @ + ; 1 0 01756719 -scroll v 1 3 @ + ; 1 0 00124854 -scrounge v 2 3 @ ~ + 2 1 02269894 02270165 -scrub v 3 4 @ ~ * + 3 2 01251228 00036780 02477755 -scrub_up v 1 1 @ 1 0 00036780 -scrunch v 3 3 @ ~ + 3 0 02184797 01545314 01278427 -scrunch_up v 2 2 @ ~ 2 0 01545314 01278427 -scruple v 3 2 @ + 3 0 02641298 01794195 00925372 -scrutinise v 2 2 @ + 2 0 02153387 00697062 -scrutinize v 2 2 @ + 2 1 02153387 00697062 -scry v 1 1 @ 1 0 00627420 -scud v 2 5 @ ~ $ + ; 2 1 02061495 01946138 -scuff v 4 2 @ + 4 1 01917845 01370439 01370336 01370245 -scuffle v 2 3 @ ~ + 2 0 01917549 01504480 -scull v 1 3 @ + ; 1 0 01947352 -sculpt v 2 4 @ $ + ; 2 0 01684337 01551871 -sculpture v 2 4 @ $ + ; 2 1 01684337 01551871 -scum v 1 2 @ + 1 0 02366351 -scupper v 2 2 @ ~ 2 0 01138204 01036319 -scurry v 1 3 @ ~ + 1 1 01902405 -scuttle v 1 2 @ ~ 1 1 01902405 -scythe v 1 2 @ + 1 0 01319885 -seal v 6 6 ! @ ~ * $ + 6 3 01354006 01353405 00698732 01356582 01269008 01143498 -seal_in v 1 1 @ 1 0 01348013 -seal_off v 2 3 @ ~ $ 2 2 01354006 01126846 -seam v 1 3 @ ~ + 1 0 01296016 -seaplane v 1 3 @ * + 1 0 01943153 -sear v 4 3 @ ~ ; 4 1 00377715 00582743 00379440 00218330 -search v 4 3 @ ~ + 4 4 01315613 02153709 00648224 01317723 -season v 3 5 @ ~ > + ; 3 0 02191766 00295120 00294884 -seat v 7 6 @ ~ > $ + ; 7 3 01543998 02701962 02384275 02334302 02333979 01616901 01544285 -secede v 1 2 @ + 1 1 02535457 -secern v 1 3 @ ~ * 1 0 00650353 -secernate v 1 3 @ ~ * 1 0 00650353 -seclude v 1 3 @ $ + 1 1 00495998 -second v 2 3 @ $ + 2 0 02556817 02393304 -second-guess v 2 1 @ 2 0 00917651 00917537 -secrete v 2 3 @ ~ + 2 1 00069295 02145271 -section v 1 4 @ ~ $ + 1 0 01563005 -sectionalise v 1 2 @ + 1 0 02468261 -sectionalize v 1 2 @ + 1 0 02468261 -secularise v 1 2 @ + 1 0 00136044 -secularize v 2 2 @ + 2 1 00136044 02221794 -secure v 6 6 @ ~ * > $ + 6 4 02238770 01340439 02349706 00890590 01422886 01306425 -sedate v 1 4 ! @ ~ + 1 0 00022316 -sediment v 2 3 @ $ + 2 0 01988755 01988645 -seduce v 2 4 @ * $ + 2 0 01428578 00783246 -see v 24 6 @ ~ * $ + ; 24 18 02129289 00591115 02128873 01635432 00690614 00598954 02150948 02023107 00920336 00662589 02488304 02488488 02493030 02549581 01470670 02486232 02129709 00703708 02156225 02131279 02110220 02026086 01156568 00623151 -see_double v 1 2 @ * 1 0 02132579 -see_eye_to_eye v 1 1 @ 1 1 00805910 -see_red v 1 2 @ ~ 1 0 01787106 -see_the_light v 1 2 @ $ 1 0 00167934 -see_through v 3 1 @ 3 0 02219732 02198973 00485147 -see_to_it v 1 3 @ ~ $ 1 1 00662589 -seed v 8 5 @ ~ $ + ; 8 1 01542056 02217546 01652429 01500873 00658913 00516425 00188375 00179718 -seek v 5 3 @ ~ + 5 3 02240481 01315613 02530167 01839170 01069989 -seek_out v 1 1 @ 1 1 01317424 -seel v 1 2 @ ; 1 0 02168710 -seem v 4 2 @ ~ 4 2 02133435 02134672 02745882 02198234 -seep v 1 2 @ + 1 1 02071974 -seesaw v 3 2 @ + 3 0 01992375 01992251 01881034 -seethe v 4 2 @ ~ 4 0 02706605 01767612 00519751 00324427 -segment v 2 4 @ ~ $ + 2 0 01563005 01558440 -segregate v 3 3 ! @ + 3 1 02482139 01558218 00494613 -segue v 1 1 @ 1 0 00781491 -seine v 1 2 @ + 1 0 01140184 -seize v 8 4 @ ~ $ + 8 4 01212572 01213614 02272549 02273293 02274482 01365839 00737656 00737476 -seize_on v 1 1 @ 1 0 00602112 -seize_with_teeth v 1 2 @ ~ 1 0 01445932 -select v 1 3 @ ~ + 1 1 00674607 -self-destroy v 1 2 @ + 1 0 01620436 -self-destruct v 1 2 @ + 1 0 01620436 -sell v 8 7 ! @ ~ * $ + ; 8 5 02242464 02727883 00767635 02244956 02235666 02748355 02748206 02537407 -sell_off v 1 2 @ + 1 0 02244248 -sell_out v 2 4 @ * + ; 2 2 02247584 00936763 -sell_short v 2 2 @ ; 2 0 02243186 00671653 -sell_up v 1 3 @ * ; 1 0 02247584 -sellotape v 1 2 @ + 1 0 01331988 -semaphore v 2 2 @ + 2 0 01040278 01040158 -semi-automatise v 1 1 @ 1 0 00480396 -semi-automatize v 1 1 @ 1 0 00480396 -send v 8 6 @ ~ > ^ + ; 8 8 01951480 01437254 01031256 01950798 01088923 01062555 02348568 00973056 -send_a_message v 1 1 @ 1 0 00742865 -send_around v 1 2 @ ~ 1 0 02043501 -send_away v 2 3 @ ~ $ 2 1 02465939 02402825 -send_back v 1 1 @ 1 0 00949974 -send_down v 1 1 @ 1 0 02502232 -send_for v 1 3 @ ~ $ 1 1 00792471 -send_in v 2 2 @ * 2 1 01437597 02488168 -send_off v 3 3 @ ~ + 3 0 01955127 01515791 01062555 -send_on v 1 1 @ 1 1 01955508 -send_out v 1 2 @ ~ 1 1 01437254 -send_packing v 1 2 @ $ 1 0 02465939 -send_word v 1 1 @ 1 1 00873682 -senesce v 1 3 @ ~ + 1 0 00248026 -sense v 4 3 @ $ + 4 1 02106006 02155248 00589469 00589309 -sensibilise v 1 1 @ 1 0 00272391 -sensibilize v 1 1 @ 1 0 00272391 -sensify v 1 2 @ + 1 0 00272391 -sensitise v 4 6 ! @ ~ > + ; 4 0 02115778 00573932 00573671 00272391 -sensitize v 4 6 ! @ ~ > + ; 4 1 00272391 02115778 00573932 00573671 -sensualise v 1 1 @ 1 0 00133978 -sensualize v 3 1 @ 3 0 01680473 00727012 00133978 -sentence v 1 5 @ ~ * + ; 1 1 00906735 -sentimentalise v 3 2 @ + 3 0 00579105 00533185 00012944 -sentimentalize v 3 2 @ + 3 1 00533185 00579105 00012944 -sentimentise v 1 1 @ 1 0 00012944 -sentimentize v 1 1 @ 1 0 00012944 -separate v 13 6 @ ~ * > $ + 13 10 02621853 01556921 00650353 02467662 01458973 00654625 02031158 02431320 02030158 00334186 02512305 01557774 00328802 -separate_off v 1 1 @ 1 0 00333426 -separate_out v 1 1 @ 1 1 01458664 -sequence v 2 2 @ + 2 1 00660571 00920125 -sequester v 5 5 @ ~ $ + ; 5 0 02273922 02273293 00579367 00495998 00495808 -sequestrate v 2 2 @ $ 2 0 00495998 00495808 -serenade v 1 2 @ + 1 1 01703857 -serialise v 1 2 @ + 1 0 00279075 -serialize v 1 2 @ + 1 0 00279075 -sermonise v 1 2 @ + 1 0 00828374 -sermonize v 1 2 @ + 1 0 00828374 -serrate v 1 2 @ + 1 0 01255807 -serve v 15 5 @ ~ $ + ; 15 11 02670890 01095218 02670398 02541251 01181295 01180351 02593107 02670578 02709107 02540670 01438681 02669789 02411621 01428011 01077568 -serve_up v 1 3 @ ~ $ 1 1 01180351 -serve_well v 1 2 @ $ 1 0 02670578 -service v 3 4 @ ~ $ + 3 2 02541251 00456937 01428011 -set v 25 7 ! @ ~ ^ $ + ; 25 14 01494310 00699815 00947077 01062395 00298896 01607445 00406243 00298556 01711749 01970646 01706129 01567275 01628899 00442669 01744888 01613239 01530273 01247322 01115006 00673448 00408085 00407848 00296178 00056188 00038849 -set_ablaze v 1 2 @ * 1 1 02760139 -set_about v 3 3 @ ~ $ 3 2 02439281 01651293 00345761 -set_afire v 1 2 @ * 1 0 02760139 -set_aflame v 1 2 @ * 1 0 02760139 -set_ahead v 1 1 @ 1 0 01994288 -set_apart v 2 2 @ ~ 2 2 00677683 00495808 -set_ashore v 1 1 @ 1 0 01981436 -set_aside v 2 1 @ 2 2 00724150 00542668 -set_back v 3 4 @ ~ * + 3 2 02642814 02452092 02702674 -set_down v 6 2 @ ~ 6 4 01020356 01979901 01502122 01500372 01979241 01489465 -set_forth v 2 2 @ ~ 2 1 01001294 02014165 -set_free v 1 2 @ ~ 1 0 02497062 -set_in v 3 1 @ 3 1 02609439 02769642 00415743 -set_in_motion v 1 2 @ ~ 1 1 01515196 -set_off v 7 3 @ ~ > 7 6 01643657 02014165 00514463 00306723 02717831 00349785 00851239 -set_on v 1 1 ~ 1 0 01120069 -set_on_fire v 1 2 @ * 1 1 02760139 -set_out v 3 3 @ ~ $ 3 3 00345761 01474209 02014165 -set_to_music v 1 2 @ ; 1 0 01706014 -set_up v 15 5 @ ~ > + ; 15 10 02427103 01656788 01661243 00407848 01463963 01661472 02578008 01642924 01569566 01570108 02573127 01514126 00735571 00408085 00406243 -set_upon v 1 1 @ 1 0 01126700 -settle v 22 6 @ ~ * ^ $ + 22 13 01988458 00698855 00763399 00413876 00764902 01989873 00415398 00558673 00539338 01987058 01465921 00798091 00764032 02254258 01986715 01986551 01986185 01493619 01092128 00481941 00415044 00342164 -settle_down v 3 2 @ ~ 3 3 01988458 00415398 01763829 -settle_on v 1 1 @ 1 1 00486703 -sever v 2 3 @ $ + 2 2 01560984 01560731 -severalise v 2 3 @ ~ * 2 0 00661480 00650353 -severalize v 2 3 @ ~ * 2 0 00661480 00650353 -sew v 2 4 @ ~ * + 2 1 01329239 01666327 -sew_together v 1 3 @ ~ * 1 0 01329239 -sex v 2 3 @ ~ + 2 0 01762283 00651630 -sex_up v 1 1 @ 1 0 00586241 -sexualise v 1 1 @ 1 0 00567971 -sexualize v 1 1 @ 1 0 00567971 -shack v 2 3 @ ~ + 2 0 02650552 02059916 -shack_up v 1 2 @ ~ 1 1 02651193 -shackle v 2 3 @ ~ + 2 0 01300565 01288052 -shade v 5 5 @ ~ $ + ; 5 3 02768702 01695567 01477704 00113605 00113420 -shade_off v 1 1 @ 1 0 02768702 -shadow v 3 2 @ + 3 1 02001461 02768702 02696306 -shadowbox v 1 3 @ + ; 1 0 01420616 -shaft v 2 2 @ + 2 0 02362601 01104624 -shag v 1 2 @ + 1 0 01896119 -shake v 9 5 @ ~ $ + ; 9 8 01889610 00014034 01891638 01875295 00167385 01761706 02073545 00559556 00992518 -shake_hands v 1 2 @ + 1 1 00898019 -shake_off v 2 2 @ ~ 2 2 02073545 01513430 -shake_up v 6 3 @ ~ + 6 1 01865051 02433123 01890351 01761706 01419473 01391946 -shallow v 2 2 @ + 2 0 00536143 00535988 -sham v 2 4 @ ~ $ + 2 0 01721754 00838043 -shamanise v 1 1 @ 1 0 02568884 -shamanize v 1 2 @ + 1 0 02568884 -shamble v 1 3 @ ~ + 1 1 01917549 -shame v 4 3 @ ~ + 4 1 02547225 02508078 01792287 01108053 -shampoo v 1 3 @ ~ + 1 0 00042017 -shanghai v 1 3 @ + ; 1 0 01471547 -shank v 1 3 @ + ; 1 0 01402447 -shape v 3 4 @ ~ $ + 3 3 00701040 01659248 00142191 -shape_up v 1 2 @ ~ 1 0 00248659 -share v 5 4 @ ~ * + 5 5 02718309 02295550 02295208 02294179 01063930 -shark v 2 2 @ + 2 0 02573031 01143614 -sharpen v 8 6 ! @ ~ > + ; 8 4 01246601 00392426 00392314 00314272 02190786 00393398 00392960 00392588 -sharpshoot v 1 2 @ + 1 0 01135501 -shatter v 3 2 @ + 3 1 00333758 00334050 00333907 -shave v 6 3 @ ~ + 6 2 00037298 01248782 02349597 01249490 01249147 01248597 -she-bop v 1 4 @ ~ * $ 1 0 01430633 -shear v 4 3 @ + ; 4 1 01320513 01560369 01320816 00587124 -sheathe v 3 4 ! @ ~ + 3 0 01581635 01581362 01578714 -shed v 4 4 @ ~ $ + 4 2 01513430 01541803 01541579 00009147 -shed_blood v 2 2 @ ~ 2 0 01616151 00074834 -shed_light_on v 1 1 @ 1 1 00621058 -sheer v 2 2 @ ~ 2 1 02033295 01841471 -sheet v 2 2 @ + 2 0 02758262 01338501 -shell v 8 5 @ ~ * $ + 8 1 01135922 01759021 01513710 01406195 01316813 01101913 00197744 00181258 -shell_out v 1 2 @ ~ 1 0 02294436 -shell_stitch v 1 3 @ + ; 1 0 01673007 -shellac v 1 2 @ + 1 0 01270589 -shellack v 1 1 @ 1 0 01270589 -shelter v 2 3 @ ~ + 2 1 02656390 02271817 -shelve v 2 4 @ ~ * + 2 1 02642814 01497750 -shepherd v 2 2 @ + 2 1 02550168 02550044 -shew v 1 2 @ ~ 1 0 00664788 -shield v 2 2 @ + 2 1 01130169 02148604 -shift v 13 5 @ ~ $ + ; 13 7 00380159 01883344 02012344 01893988 00555447 00555654 00548913 01884974 01864634 01005049 00584410 00551065 00550117 -shill v 1 2 @ + 1 0 02575536 -shillyshally v 2 3 @ ~ + 2 0 02706386 02642238 -shimmer v 2 2 @ + 2 0 02763450 02706478 -shimmy v 2 3 @ + ; 2 2 01871546 01755389 -shin v 1 1 @ 1 0 01921772 -shine v 10 5 @ ~ * > + 10 6 02765924 02763740 02162947 02733334 02655958 02161530 02763283 02611976 01829747 01245637 -shine_at v 1 1 @ 1 0 02674447 -shine_up v 1 1 @ 1 0 01804753 -shingle v 1 2 @ + 1 0 01234223 -shinny v 1 1 @ 1 0 01921772 -ship v 5 3 @ ~ + 5 1 01950798 02409838 01979462 01847582 01496978 -shipwreck v 4 3 @ + ; 4 0 02559613 02529162 02111625 01566038 -shirk v 2 3 @ ~ + 2 1 02463704 00811881 -shirr v 1 3 @ + ; 1 0 00322395 -shirt v 1 2 @ + 1 1 00049007 -shit v 2 4 @ ~ $ + 2 0 00841986 00074038 -shiver v 2 2 @ + 2 2 01888946 00014201 -shlep v 2 2 @ ~ 2 0 01910873 01453718 -shmoose v 1 1 @ 1 0 01039162 -shmooze v 1 1 @ 1 0 01039162 -shnorr v 1 1 @ 1 0 02270165 -shoal v 2 2 @ + 2 0 00536143 00535988 -shock v 7 3 @ ~ + 7 2 01809064 01810447 01783022 01561713 01386308 00090386 00090186 -shoe v 1 2 @ + 1 0 00049770 -shoehorn v 1 1 @ 1 0 00301544 -shoetree v 1 1 @ 1 0 00319111 -shoo v 1 1 @ 1 0 02003480 -shoo_away v 1 1 @ 1 1 02003480 -shoo_off v 1 1 @ 1 0 02003480 -shoot v 20 7 @ ~ * ^ $ + ; 20 9 01137138 02484570 01134781 01002740 02096047 02061495 02055267 01597286 01003249 02768259 02123175 01585523 01519184 01437144 01195804 01084466 00985219 00647508 00357332 00086320 -shoot_a_line v 1 2 @ ~ 1 0 00883226 -shoot_craps v 1 1 @ 1 0 01138822 -shoot_down v 3 3 @ ~ $ 3 2 02055267 01981279 02473688 -shoot_for v 1 2 @ ~ 1 0 00705517 -shoot_one's_mouth_off v 1 1 @ 1 0 00825776 -shoot_the_breeze v 1 2 @ ~ 1 0 01038666 -shoot_up v 1 1 @ 1 1 00432572 -shop v 4 6 @ ~ * $ + ; 4 2 02325968 02466134 02326355 00841986 -shop_at v 1 1 @ 1 1 02466134 -shoplift v 1 3 @ + ; 1 0 02277303 -shore v 3 3 @ ~ + 3 0 02710981 01981436 01219004 -shore_up v 1 3 @ ~ + 1 1 01219004 -short v 2 2 @ + 2 0 02572667 01618884 -short-change v 2 2 @ ~ 2 1 02572667 02572119 -short-circuit v 3 1 @ 3 0 02558811 01618884 00811171 -shorten v 5 6 ! @ ~ > $ + 5 2 00316768 00243900 00560893 00316494 00201034 -shortlist v 1 1 @ 1 0 00658798 -shoulder v 3 2 @ + 3 2 01239359 01238907 01239054 -shoulder_in v 1 1 @ 1 1 01874071 -shout v 4 5 ! @ ~ $ + 4 3 00912473 00913065 00912048 00845299 -shout_down v 1 1 @ 1 0 01809784 -shout_out v 2 3 @ ~ $ 2 1 00913065 00915265 -shove v 3 3 @ ~ + 3 2 01871680 01584701 02094569 -shove_along v 1 1 @ 1 1 01849054 -shove_off v 1 1 @ 1 0 01849054 -shovel v 1 3 @ ^ + 1 1 01312810 -shovel_in v 2 1 @ 2 0 02290029 01174099 -show v 12 7 ! @ ~ > ^ + ; 12 11 02148788 00664788 01015244 02137132 01686956 00943837 00923793 02139544 00922867 00923307 02000547 01086549 -show_off v 1 3 @ ~ + 1 1 02141973 -show_the_door v 1 1 @ 1 0 01468948 -show_up v 2 2 @ ~ 2 2 00423702 02139544 -shower v 5 2 @ + 5 3 02264601 01372994 00035259 02757651 01184333 -shower_down v 1 1 @ 1 0 02757651 -shred v 1 3 @ ~ + 1 1 01573891 -shriek v 1 3 @ ~ + 1 1 00914420 -shrill v 1 3 @ ~ + 1 1 00914420 -shrimp v 1 2 @ + 1 0 01142070 -shrine v 1 2 @ + 1 0 01482958 -shrink v 5 5 ! @ ~ > + 5 4 00241689 02061069 00241038 00240571 00152558 -shrink_back v 1 1 @ 1 1 02061366 -shrink_from v 1 2 @ ~ 1 1 02463704 -shrinkwrap v 1 1 @ 1 0 01284002 -shrive v 1 1 @ 1 0 00903711 -shrivel v 2 2 @ ~ 2 0 00241689 00152558 -shrivel_up v 1 2 @ ~ 1 0 00241689 -shroud v 3 2 @ + 3 1 01582200 02749768 01300437 -shrug v 1 3 @ ^ + 1 1 00033955 -shrug_off v 1 1 @ 1 1 00742149 -shuck v 2 2 @ + 2 0 00197956 00179959 -shudder v 2 2 @ + 2 2 00014201 01888946 -shuffle v 3 3 @ ~ + 3 2 01917549 02012973 01418667 -shun v 2 2 @ + 2 1 00812149 02504017 -shunt v 2 2 @ + 2 1 02012227 02065885 -shush v 1 1 @ 1 0 00390741 -shut v 3 6 @ ~ > ^ $ + 3 3 01345109 01346978 02449340 -shut_away v 1 1 @ 1 0 01347678 -shut_down v 1 2 ~ + 1 1 02426395 -shut_in v 1 2 @ ~ 1 0 01587062 -shut_off v 3 2 @ ~ 3 1 02680531 02031826 01477394 -shut_one's_mouth v 1 0 1 0 00937619 -shut_out v 1 2 @ ~ 1 1 02449340 -shut_up v 3 4 @ ~ > $ 3 3 01041061 01347678 00461493 -shutter v 1 2 @ + 1 0 01242996 -shuttle v 1 2 @ + 1 1 02062081 -shuttlecock v 1 2 @ + 1 0 01147432 -shy v 2 2 @ + 2 1 01910680 01509492 -shy_away_from v 1 1 @ 1 1 00811995 -sibilate v 4 3 @ ~ + 4 0 01055404 01054399 01054186 01053771 -sic v 1 1 @ 1 0 01115006 -sick v 1 2 @ + 1 0 00076400 -sicken v 4 2 @ ~ 4 2 01808374 00087454 02195191 00088209 -side v 1 2 @ ~ 1 0 01148961 -side-slip v 1 1 @ 1 0 01871042 -sideline v 1 1 @ 1 0 02399679 -sidestep v 1 2 @ ~ 1 1 00809654 -sideswipe v 1 1 @ 1 0 01274254 -sidetrack v 1 1 @ 1 0 02066304 -sidle v 2 1 @ 2 2 01869299 01869196 -sidle_up v 1 1 @ 1 0 01804753 -sieve v 4 4 @ ~ ^ + 4 0 02400378 01460594 01460029 00675768 -sieve_out v 1 1 @ 1 0 00677544 -sift v 4 3 @ ~ + 4 2 02098827 01460029 01460594 00675768 -sigh v 2 2 @ + 2 2 00004032 00985800 -sight v 2 3 @ ~ + 2 1 02163746 02199307 -sight-read v 1 3 @ ~ ; 1 0 01715525 -sight-sing v 1 2 @ ; 1 0 01715784 -sightread v 1 4 @ ~ + ; 1 0 01715525 -sightsee v 1 2 @ + 1 0 01843904 -sightsing v 1 2 @ ; 1 0 01715784 -sign v 8 5 @ ~ * ^ + 8 5 00996485 02464866 00889229 02409941 01039330 01498319 00929160 00867231 -sign_away v 1 1 @ 1 0 02343816 -sign_in v 1 1 @ 1 0 00966152 -sign_off v 1 2 @ ; 1 0 00974031 -sign_on v 1 2 @ ~ 1 0 02409941 -sign_over v 1 1 @ 1 0 02343816 -sign_up v 2 2 @ ~ 2 2 02409941 01097309 -signal v 2 3 @ ~ + 2 2 01039330 00921300 -signalise v 4 3 @ ~ + 4 0 02296984 01039330 00924612 00922438 -signalize v 4 3 @ ~ + 4 0 02296984 01039330 00924612 00922438 -signify v 3 4 @ ~ $ + 3 2 00931852 00932324 01039854 -signpost v 1 2 @ + 1 0 00922320 -silence v 2 5 @ ~ > $ + 2 1 00461493 00463007 -silhouette v 2 2 @ + 2 2 02138283 01680621 -silkscreen v 1 2 @ ; 1 0 01749554 -silt v 1 2 @ + 1 0 01479545 -silt_up v 1 1 @ 1 0 01479545 -silver v 3 2 @ + 3 0 01395493 00289532 00282652 -silver-plate v 1 2 @ + 1 0 01396328 -silverplate v 1 2 @ + 1 0 01396328 -simmer v 1 3 @ + ; 1 1 00324231 -simmer_down v 1 1 @ 1 0 01763829 -simonise v 1 1 @ 1 0 01245490 -simonize v 1 2 @ + 1 0 01245490 -simper v 1 3 @ ~ + 1 0 00029336 -simplify v 1 4 ! @ ~ + 1 1 00400427 -simulate v 3 3 @ ~ + 3 1 01742886 01722980 01721754 -sin v 2 3 @ ~ + 2 1 02565687 02566227 -sing v 5 5 @ ~ $ + ; 5 5 01731031 01729431 01067816 01043887 00937208 -sing_along v 1 2 @ + 1 0 01728613 -singe v 2 2 @ + 2 1 00378521 00582743 -single v 1 3 @ + ; 1 1 01409374 -single-foot v 1 2 @ + 1 1 01960491 -single_crochet v 1 3 @ + ; 1 0 01673305 -single_out v 2 2 @ ~ 2 2 00679239 02512305 -single_stitch v 1 3 @ + ; 1 0 01673305 -singsong v 2 2 @ + 2 1 01050165 02095696 -singularise v 1 1 @ 1 0 00922641 -singularize v 1 1 @ 1 0 00922641 -sink v 9 7 ! @ ~ > ^ $ + 9 9 01985923 01986869 01972131 01989873 01971929 02039679 00432839 01988886 01530098 -sink_in v 2 3 @ ~ > 2 1 00591755 01457954 -sinter v 1 1 @ 1 0 01661096 -sip v 1 2 @ + 1 1 01170687 -siphon v 2 2 @ + 2 0 01853542 01613391 -siphon_off v 1 1 @ 1 0 01853542 -sire v 1 2 @ + 1 1 00054628 -siss v 2 1 @ 2 0 01054186 01053771 -sit v 10 9 ! @ ~ * > ^ $ + ; 10 6 01543123 02692882 01984902 02024874 02142775 01957529 02691214 02456270 01543998 01095581 -sit_around v 1 1 @ 1 0 02692882 -sit_back v 2 1 @ 2 2 00026941 02374099 -sit_by v 1 1 @ 1 1 02374099 -sit_down v 3 6 ! @ ~ * > $ 3 3 01984902 01543998 01543123 -sit_in v 2 2 @ + 2 0 02613140 02543482 -sit_out v 2 2 @ ; 2 1 02726543 00670179 -sit_tight v 1 1 @ 1 0 00118922 -sit_up v 2 2 @ + 2 2 00020259 02098680 -site v 1 2 @ + 1 0 02333689 -situate v 2 3 @ ~ + 2 2 02694933 01575675 -size v 3 4 @ ~ ^ + 3 0 01610278 00655987 00319214 -size_up v 1 1 @ 1 1 02153387 -sizz v 2 1 @ 2 0 01054186 01053771 -sizzle v 3 1 @ 3 1 00862591 01767818 00377906 -skank v 1 2 @ + 1 0 02048586 -skate v 1 4 @ ~ + ; 1 0 01936753 -skate_over v 1 1 @ 1 1 02516255 -skateboard v 1 3 @ + ; 1 0 01937795 -skedaddle v 1 1 @ 1 1 02075764 -sketch v 2 4 @ ~ + ; 2 2 01697628 01006421 -skew v 1 2 ! @ 1 0 00466484 -skewer v 1 2 @ + 1 0 01444563 -ski v 1 4 @ ~ + ; 1 0 01938426 -ski_jump v 1 3 @ + ; 1 0 01965331 -skid v 4 3 @ ~ + 4 1 01870867 01975121 01871217 01870275 -skim v 7 4 @ ~ ^ + 7 2 01942718 01247550 02152278 01515924 01261263 01261018 00627824 -skim_off v 2 1 @ 2 1 01261018 00677445 -skim_over v 2 1 @ 2 1 00627824 01247550 -skimcoat v 1 2 @ ; 1 0 01362136 -skimp v 4 2 @ ^ 4 0 02516437 02509820 02345498 02225739 -skimp_over v 1 1 @ 1 0 02516255 -skin v 4 3 @ ~ + 4 0 01921772 01309478 01263784 01262936 -skin-dive v 1 3 @ + ; 1 0 01963130 -skin_over v 1 1 @ 1 0 00099089 -skin_pop v 1 1 @ 1 0 01199661 -skinny-dip v 1 2 @ + 1 0 01962498 -skip v 6 5 @ ~ ^ + ; 6 3 00616498 02613860 01966861 02010698 01892734 01515924 -skip-bomb v 1 1 @ 1 0 01132880 -skip_over v 1 1 @ 1 0 00616498 -skip_town v 1 1 @ 1 0 00427558 -skipper v 1 2 @ + 1 0 02447001 -skirl v 2 3 @ + ; 2 0 02177846 01726762 -skirmish v 1 2 @ + 1 1 01123765 -skirt v 4 2 @ ~ 4 2 00809654 02052090 02703711 01467370 -skitter v 4 2 @ ~ 4 0 01902405 01888048 01515924 01448917 -skittle v 1 2 @ + 1 0 01146697 -skive v 1 1 @ 1 0 01249046 -skreak v 2 1 @ 2 0 02171664 01048939 -skreigh v 1 1 @ 1 0 01048939 -skulk v 3 2 @ + 3 1 02640053 02464132 01918521 -skunk v 1 3 @ + ; 1 0 01103693 -sky v 1 2 @ ~ 1 0 01512625 -sky_dive v 1 2 @ + 1 0 01968045 -skydive v 1 2 @ + 1 0 01968045 -skyjack v 1 2 @ ; 1 0 01472251 -skylark v 1 1 @ 1 1 01883716 -skyrocket v 1 2 @ + 1 0 01944086 -slabber v 1 1 @ 1 0 00102974 -slack v 8 3 @ ~ + 8 0 02464342 00616361 00536535 00441212 00440580 00245289 00245059 00214624 -slack_off v 1 1 @ 1 0 00245059 -slack_up v 1 1 @ 1 0 00441212 -slacken v 4 5 @ ~ > ^ + 4 2 00440580 00441212 00421408 00421125 -slacken_off v 1 1 @ 1 0 00156485 -slag v 1 1 @ 1 0 00585907 -slake v 3 3 @ ~ * 3 0 01204021 00245289 00214624 -slalom v 1 3 @ * + 1 0 01939037 -slam v 4 2 @ + 4 2 01242832 01242391 01897885 01242689 -slam-dunk v 2 3 @ + ; 2 0 02602685 01597832 -slam_dance v 1 2 @ + 1 0 01897885 -slam_on v 1 1 @ 1 1 01364997 -slander v 1 3 @ ~ + 1 0 00846509 -slang v 3 3 @ ~ + 3 0 00964110 00854904 00845658 -slant v 4 3 @ ~ + 4 2 02692558 00680485 02038357 01884577 -slap v 1 3 @ ~ + 1 1 01416871 -slap_on v 1 1 @ 1 0 01364997 -slap_together v 1 1 @ 1 0 01623365 -slash v 5 3 @ ~ + 5 4 01322675 01411085 01322509 00430261 01890792 -slat v 2 2 @ + 2 0 02336684 01220528 -slate v 3 2 @ + 3 1 00709844 02397106 01338368 -slather v 1 1 @ 1 0 01379449 -slaughter v 2 4 @ ~ * + 2 2 01322854 00479176 -slave v 1 2 @ + 1 0 02421199 -slaver v 1 1 @ 1 1 00102974 -slay v 1 3 @ ~ + 1 0 02482425 -sled v 1 4 @ ~ + ; 1 0 01939174 -sledge v 3 2 @ + 3 0 01954741 01846099 01416732 -sledgehammer v 1 2 @ + 1 0 01416732 -sleek v 1 1 @ 1 0 01245986 -sleek_down v 1 1 @ 1 0 00038687 -sleek_over v 1 1 @ 1 0 02148109 -sleep v 2 5 ! @ ~ ^ + 2 1 00014742 02701445 -sleep_around v 1 1 @ 1 0 02095390 -sleep_in v 2 1 @ 2 1 00015806 01177314 -sleep_late v 1 1 @ 1 0 00015806 -sleep_off v 1 1 @ 1 1 02288042 -sleep_out v 1 1 @ 1 0 01177505 -sleep_over v 1 2 @ + 1 0 02652729 -sleep_together v 1 3 @ ~ $ 1 0 01426397 -sleep_with v 1 3 @ ~ $ 1 1 01426397 -sleepwalk v 1 2 @ + 1 0 01916960 -sleet v 1 2 @ + 1 0 02759254 -sleigh v 1 4 @ ~ + ; 1 0 01939174 -slenderise v 1 1 @ 1 0 00326170 -slenderize v 2 2 @ ~ 2 0 00326170 00045817 -sleuth v 1 3 @ * + 1 0 00785690 -slew v 2 2 @ ~ 2 0 02033295 01870275 -slice v 4 3 @ + ; 4 4 01559055 01408958 01254477 01124389 -slice_into v 1 1 @ 1 0 01916033 -slice_through v 1 1 @ 1 0 01916033 -slice_up v 1 1 @ 1 1 01254477 -slick v 2 2 @ + 2 0 01245986 00038687 -slick_down v 1 1 @ 1 0 00038687 -slick_up v 2 1 @ 2 0 00293977 00043278 -slide v 3 4 @ ~ ^ + 3 3 01870275 01886488 02090990 -slide_by v 1 2 @ ~ 1 0 02072849 -slide_down v 1 1 @ 1 0 01988886 -slight v 1 2 @ + 1 0 00617413 -slim v 1 2 @ ~ 1 0 00045817 -slim_down v 1 2 @ ~ 1 0 00045817 -slime v 1 2 @ + 1 1 01252730 -sling v 4 2 @ + 4 1 01514348 02105453 02105340 01601547 -slink v 1 1 @ 1 1 01917123 -slip v 11 5 @ ~ > ^ + 11 6 01888295 00189669 01870275 00204391 02076280 00617748 02231328 02105549 02076501 00608978 00465762 -slip_away v 2 2 @ ~ 2 2 02076027 02072849 -slip_by v 1 2 @ ~ 1 0 02072849 -slip_in v 1 2 @ ~ 1 1 01025602 -slip_off v 1 2 ! @ 1 0 00051370 -slip_on v 1 3 ! @ + 1 1 00051170 -slip_one's_mind v 1 1 @ 1 0 00608978 -slip_up v 1 2 @ + 1 0 00618057 -slit v 2 2 @ + 2 2 01559055 01558883 -slither v 1 1 @ 1 0 01886488 -sliver v 3 2 @ + 3 0 02469274 00337903 00144314 -slobber v 1 3 @ ^ + 1 0 00102974 -slobber_over v 1 1 @ 1 0 01827745 -slog v 3 3 @ ~ + 3 0 02415573 01921204 01415585 -sloganeer v 1 2 @ + 1 0 01698152 -slop v 4 3 @ $ + 4 2 01542207 01921591 01579488 01178220 -slope v 1 3 @ ~ + 1 0 02037090 -slosh v 3 1 @ 3 0 02186868 01921591 01374587 -slosh_around v 1 1 @ 1 0 01374587 -slot v 1 2 @ + 1 1 00679112 -slouch v 2 2 @ + 2 0 01989720 01929824 -slough v 1 3 @ ~ + 1 0 00009147 -slough_off v 2 2 @ ; 2 0 02222846 01254912 -slow v 3 3 @ ~ + 3 3 00439958 00440580 00440786 -slow_down v 5 3 @ ~ + 5 3 00439958 00440580 00440786 00438495 00026385 -slow_up v 3 2 @ ~ 3 1 00440580 00440786 00439958 -slue v 2 2 @ ~ 2 0 02033295 01870275 -slug v 2 3 @ ~ + 2 1 01415585 02417504 -sluice v 4 2 @ + 4 2 02758399 00455368 01854001 01853882 -sluice_down v 1 1 @ 1 0 02758399 -slum v 1 2 @ + 1 0 02492694 -slumber v 1 3 @ ~ + 1 1 00014742 -slump v 4 3 @ $ + 4 3 01989720 01988886 00432839 01971603 -slur v 4 5 @ ~ ^ + ; 4 0 01727866 01044891 01044811 00311113 -slur_over v 1 1 @ 1 0 02516255 -slurp v 1 1 @ 1 1 01169328 -slush v 2 1 @ 2 0 02186868 01374587 -slush_around v 1 1 @ 1 0 01374587 -smack v 5 2 @ + 5 2 01414916 02194723 02194495 01431879 01197208 -smart v 1 3 @ ~ + 1 1 02122164 -smarten_up v 2 1 @ 2 0 00293977 00043278 -smash v 10 4 @ ~ $ + 10 2 01401772 00335923 02318165 02104373 01800195 01566705 01561583 01561408 01083576 00334649 -smash_up v 1 1 @ 1 0 01566705 -smatter v 3 2 @ + 3 0 02416030 01037650 00963961 -smear v 4 4 @ ~ $ + 4 0 01252425 01251928 01233387 00846509 -smell v 5 4 @ ~ ^ + 5 3 02124748 02123672 02124332 02194723 00589469 -smell_out v 2 2 @ * 2 0 02125460 00589469 -smell_up v 1 1 @ 1 0 02126022 -smelt v 1 3 @ * + 1 0 01681913 -smile v 2 3 @ ~ + 2 1 00028565 01067512 -smirch v 2 3 @ ~ + 2 0 01252601 00846509 -smirk v 1 3 @ ~ + 1 1 00029336 -smite v 3 2 @ ~ 3 1 01396644 01769413 00259927 -smock v 1 2 @ + 1 0 01677509 -smoke v 2 4 @ ~ * + 2 1 01198101 02767922 -smoke_out v 1 1 @ 1 0 02056854 -smolder v 2 1 @ 2 1 00377569 01772699 -smooch v 1 2 @ + 1 0 01425709 -smooth v 3 6 ! @ ~ * ^ + 3 2 01252971 01245637 02313098 -smooth_out v 1 1 @ 1 1 02313098 -smooth_over v 1 1 @ 1 1 02516255 -smoothen v 3 3 @ ~ * 3 0 01252971 01245637 00547221 -smother v 5 4 @ * $ + 5 3 01568886 01569181 01568630 02749633 01569017 -smoulder v 2 2 @ + 2 0 01772699 00377569 -smudge v 1 3 @ ~ + 1 0 01251928 -smuggle v 1 3 @ + ; 1 1 02345856 -smut v 4 3 @ + ; 4 0 00583759 00286798 00210481 00089154 -smutch v 1 2 @ ~ 1 0 01251928 -snack v 1 3 @ ~ + 1 0 01173405 -snaffle v 2 3 @ ~ + 2 0 02304648 01300805 -snafu v 1 2 @ + 1 0 00403016 -snag v 3 2 @ + 3 1 01328212 02353088 01260593 -snail v 1 3 @ ~ + 1 0 01382917 -snake v 3 2 @ + 3 1 01888165 02738976 01883210 -snap v 13 6 @ ~ ^ $ + ; 13 10 00916274 01573515 00337065 01893771 00355670 02182851 02088949 01439745 01402872 01242208 01784295 01446301 01003249 -snap_at v 1 1 @ 1 1 01445756 -snap_back v 1 1 @ 1 0 00093020 -snap_off v 1 1 @ 1 0 01298931 -snap_up v 1 2 @ ~ 1 1 02304648 -snare v 2 5 @ ~ $ + ; 2 1 01480770 00783042 -snarf v 1 1 @ 1 0 02276866 -snarl v 4 4 ! @ ~ + 4 2 00916274 00916520 01462928 00402831 -snarl_up v 1 2 @ ~ 1 0 00402831 -snatch v 3 4 @ ~ + ; 3 2 01439745 01213146 01471043 -snatch_up v 1 2 @ ~ 1 1 01439745 -sneak v 4 3 @ ^ + 4 2 01911888 02597449 02276866 02231328 -sneak_away v 1 1 @ 1 0 02076027 -sneak_in v 2 2 @ ~ 2 0 01228866 01025602 -sneak_off v 1 1 @ 1 1 02076027 -sneak_out v 1 1 @ 1 1 02076027 -sneak_up v 1 1 @ 1 1 01993212 -sneer v 2 3 @ $ + 2 2 00032778 00032539 -sneeze v 1 3 @ * + 1 0 00004819 -snick v 2 3 @ + ; 2 0 01408489 01259141 -snicker v 1 2 @ + 1 1 00030010 -sniff v 2 3 @ ^ + 2 2 02125032 00007549 -sniff_out v 1 1 * 1 0 02125460 -sniffle v 2 2 @ + 2 0 00067274 00007549 -snigger v 1 2 @ + 1 1 00030010 -snip v 2 3 @ ~ + 2 0 01456463 01321002 -snip_off v 1 1 @ 1 0 01456463 -snipe v 3 3 @ ~ + 3 0 01135683 01135501 00862683 -snitch v 2 3 @ ~ + 2 0 02322230 00841986 -snivel v 3 3 @ $ + 3 0 01042531 00101779 00067274 -snog v 1 3 @ ~ + 1 0 01431230 -snooker v 2 3 @ + ; 2 0 02578384 01074206 -snoop v 1 3 @ * + 1 1 00785690 -snooze v 1 2 @ + 1 0 00015303 -snore v 1 3 @ * + 1 1 00017031 -snorkel v 1 3 @ + ; 1 0 01963795 -snort v 4 3 @ * + 4 3 01045073 00006523 01200245 01199755 -snow v 2 2 @ + 2 1 02758977 00839194 -snow-blind v 1 1 @ 1 0 02168830 -snowball v 2 2 @ + 2 1 00158384 01508166 -snowboard v 1 2 @ + 1 0 02104860 -snowmobile v 1 3 @ + ; 1 0 01957273 -snowshoe v 1 1 @ 1 0 02103451 -snub v 2 2 @ + 2 2 01059564 00798539 -snuff v 2 2 @ + 2 0 02126152 00109263 -snuff_it v 1 3 @ ~ $ 1 0 00358431 -snuff_out v 2 3 @ ~ + 2 1 00478217 02761897 -snuffle v 3 2 @ + 3 0 02126152 00101779 00067274 -snuggle v 2 3 @ $ + 2 1 01424948 01425348 -soak v 9 5 @ ~ * + ; 9 3 01578513 02319050 00216216 02347220 01397870 01190494 01190277 00456151 00372157 -soak_through v 1 1 @ 1 0 01605692 -soak_up v 2 3 @ ~ $ 2 0 01539063 00601043 -soap v 1 3 @ * + 1 0 00036932 -soar v 5 5 @ ~ * + ; 5 4 01943718 01955808 01943338 00155406 01942959 -soar_up v 1 2 @ ~ 1 0 01943718 -soar_upwards v 1 2 @ ~ 1 0 01943718 -sob v 1 2 @ + 1 1 00067129 -sober v 3 2 @ * 3 0 00149469 00149296 00149118 -sober_up v 2 2 @ * 2 1 00149118 00149296 -socialise v 4 3 @ ~ + 4 0 02388950 02386845 00406053 00405853 -socialize v 4 3 @ ~ + 4 1 02388950 02386845 00406053 00405853 -sock v 1 1 @ 1 1 01397088 -sod v 1 2 @ + 1 0 01335711 -sodomise v 2 2 @ + 2 0 02568572 02568392 -sodomize v 2 2 @ + 2 0 02568572 02568392 -soft-pedal v 1 1 @ 1 0 00840264 -soft-soap v 2 1 @ 2 0 00769453 00769355 -soft-solder v 1 1 @ 1 0 01595605 -soften v 7 5 ! @ ~ > + 7 2 02190632 00390215 02703289 01576917 01058036 00255389 00254867 -soil v 1 3 @ ~ + 1 1 01534147 -sojourn v 1 2 @ + 1 0 02709422 -solace v 1 2 ~ + 1 1 01814815 -solarise v 4 4 @ $ + ; 4 0 02114433 02114056 02113850 02112546 -solarize v 4 4 @ $ + ; 4 0 02114433 02114056 02113850 02112546 -solder v 1 3 @ ~ + 1 1 01595260 -soldier v 1 2 @ + 1 0 01097031 -sole v 1 2 @ + 1 0 00533403 -solemnise v 3 2 @ + 3 0 02579247 02489748 00579565 -solemnize v 3 2 @ + 3 0 02579247 02489748 00579565 -solicit v 5 4 @ ~ $ + 5 1 00782057 02534492 00781652 00771133 00753734 -solidify v 2 5 @ ~ > + ; 2 0 00445467 00445169 -soliloquise v 1 1 @ 1 0 00964478 -soliloquize v 1 2 @ + 1 0 00964478 -solmizate v 2 4 @ $ + ; 2 0 01731353 01730384 -solo v 2 3 @ + ; 2 0 01941987 01715040 -solvate v 2 4 @ > + ; 2 0 00446695 00446514 -solve v 3 4 @ ~ * + 3 2 00634906 00733044 00761454 -somersault v 1 2 @ + 1 0 01867697 -somnambulate v 1 2 @ + 1 0 01916960 -sonnet v 2 3 @ + ; 2 0 01703730 01703613 -soot v 1 2 @ + 1 0 01262470 -soothe v 2 3 ! @ ~ 2 2 01814815 00063916 -sop v 4 3 @ ~ + 4 0 02284429 01605692 01577513 00216216 -sop_up v 2 2 @ ~ 2 0 01539063 01197980 -sophisticate v 4 2 @ + 4 0 02388764 00932798 00488430 00402389 -sorb v 1 4 @ ~ + ; 1 1 01540449 -sorcerise v 1 2 @ + 1 0 00383275 -sorcerize v 1 2 @ + 1 0 00383275 -sorrow v 1 3 @ ~ + 1 0 01797347 -sort v 2 4 @ ~ * + 2 0 02400378 00654625 -sort_out v 3 3 @ ~ * 3 2 00654625 00621058 02553428 -sough v 1 1 @ 1 0 01046815 -sound v 7 5 @ ~ > ^ + 7 5 02134927 02176268 02135048 02180529 00952182 02179518 00491689 -sound_off v 3 3 @ ~ ; 3 1 01027668 01651110 00907147 -sound_out v 2 3 @ ~ * 2 0 00978549 00809071 -soundproof v 1 1 @ 1 0 00495505 -soup v 1 2 @ ; 1 0 00085246 -soup_up v 1 1 @ 1 0 00170997 -sour v 2 4 ! @ $ + 2 2 00458471 02196690 -source v 2 3 @ ~ + 2 0 02238536 00666722 -souse v 4 4 @ ~ + ; 4 1 00216216 01577093 01190277 00321801 -sovietise v 2 1 @ 2 0 02434119 01744266 -sovietize v 2 1 @ 2 0 02434119 01744266 -sow v 3 5 @ ~ $ + ; 3 2 01500873 00969370 01501347 -sow_in v 1 3 @ $ ; 1 0 01501347 -sow_one's_oats v 1 1 @ 1 1 01192179 -sow_one's_wild_oats v 1 1 @ 1 0 01192179 -space v 1 2 @ + 1 1 01988080 -spacewalk v 1 2 @ + 1 0 01906202 -spade v 1 3 @ ~ + 1 1 01310249 -spam v 1 2 @ ; 1 0 01032715 -span v 1 2 @ + 1 1 02685390 -spang v 1 2 @ ; 1 1 01236941 -spangle v 2 2 @ + 2 0 02163183 01669906 -spank v 1 2 @ + 1 0 01420928 -spar v 4 3 @ + ; 4 0 02362700 01420304 01420194 00773922 -spare v 4 3 @ ~ + 4 3 02464583 02564674 02345647 01158484 -sparge v 2 1 @ 2 0 01890223 00228655 -spark v 2 3 @ > + 2 2 01643657 02766687 -spark_off v 1 2 @ > 1 0 01643657 -sparkle v 4 3 @ ~ + 4 2 02766390 00473003 02766687 00519363 -spat v 7 4 @ ~ * + 7 0 02757182 01538785 01238061 00861929 00774817 00056829 00034115 -spatchcock v 2 3 @ + ; 2 0 01665332 01639592 -spatter v 3 3 @ ~ + 3 1 01374020 02757828 01538629 -spawn v 2 3 @ ~ + 2 0 01649024 00056683 -spay v 1 3 @ ~ + 1 0 00060477 -speak v 5 6 @ ~ * ^ $ + 5 5 00941990 00962447 00963570 00989201 02135607 -speak_for v 1 1 @ 1 1 02542141 -speak_in_tongues v 1 1 @ 1 0 00933239 -speak_of_the_devil v 1 1 @ 1 0 00882682 -speak_out v 1 2 @ ~ 1 0 01027668 -speak_up v 2 2 @ ~ 2 1 01027668 00916123 -spear v 2 2 @ + 2 1 01444887 02714200 -spear_up v 1 1 @ 1 0 02714200 -spearhead v 1 2 @ + 1 1 02440608 -specialise v 5 4 ! @ ~ + 5 0 02446164 01021973 00437732 00437449 00119266 -specialize v 5 4 ! @ ~ + 5 3 00437449 01021973 00437732 02446164 00119266 -speciate v 1 2 @ + 1 0 00119266 -specify v 7 5 ! @ ~ $ + 7 5 01018928 00947077 02611630 01021973 00715541 00709379 00677683 -speck v 1 2 @ + 1 0 01273406 -speckle v 2 2 @ + 2 0 01538469 01538310 -spectate v 1 2 @ + 1 0 02151700 -speculate v 4 3 @ ~ + 4 3 00633443 00927049 00630380 02272090 -speech-read v 1 1 @ 1 0 00627970 -speechify v 1 2 @ + 1 0 00990008 -speed v 5 4 @ ~ ^ + 5 5 02058994 00438178 02055649 02055975 00439343 -speed_skate v 1 4 @ * + ; 1 0 01938288 -speed_up v 2 3 @ ~ + 2 1 00438178 00439343 -spell v 6 4 ! @ ~ + 6 3 00937879 00932636 01699896 02412366 01064560 00121387 -spell_out v 3 2 @ ~ 3 1 01005904 01700149 00937879 -spellbind v 3 2 @ + 3 0 01821132 00777522 00020926 -spelunk v 1 2 @ + 1 0 00649887 -spend v 3 3 @ ~ + 3 3 02708420 02267060 02267529 -spend_a_penny v 1 3 @ ~ $ 1 0 00072012 -spew v 3 2 @ + 3 0 00101956 00077071 00076400 -spew_out v 1 1 @ 1 0 00077071 -sphacelate v 1 2 @ + 1 0 00097394 -spice v 2 4 @ ~ + ; 2 1 00559919 02192570 -spice_up v 2 3 @ ~ ; 2 1 02192570 00559919 -spiel v 2 4 @ ~ $ + 2 0 01724459 00963155 -spiel_off v 1 1 @ 1 0 00945648 -spiff_up v 1 1 @ 1 0 00293977 -spike v 6 4 @ ~ + ; 6 0 02558090 01444326 01306175 00294718 00222135 00157219 -spike_out v 1 1 @ 1 1 00294718 -spill v 6 5 @ ~ $ + ; 6 3 01542207 02069888 01541579 01541803 00952841 00429642 -spill_out v 1 1 @ 1 1 02070150 -spill_over v 2 1 @ 2 1 01763101 02070150 -spill_the_beans v 1 2 @ $ 1 0 00937208 -spin v 8 4 @ ~ * + 8 2 02046755 02068062 02048051 01639500 01639364 01518772 00953700 00318706 -spin-dry v 1 1 @ 1 0 00215363 -spin_around v 1 2 @ ~ 1 1 02046755 -spin_off v 1 2 @ + 1 0 00345184 -spin_out v 1 1 @ 1 0 00318706 -spiral v 3 2 @ + 3 1 02049190 02738544 02049561 -spirit v 1 2 @ + 1 0 00193130 -spirit_away v 2 1 @ 2 0 01435000 01432914 -spirit_off v 1 1 @ 1 0 01435000 -spirit_up v 1 1 @ 1 0 00193130 -spiritise v 1 1 @ 1 0 01229631 -spiritize v 1 2 @ + 1 0 01229631 -spiritualise v 2 2 @ + 2 0 00623947 00476313 -spiritualize v 3 3 ! @ + 3 0 00623947 00580512 00476313 -spirt v 2 3 @ ~ + 2 0 02068413 01884126 -spit v 4 3 @ ^ + 4 2 00101956 01045318 02757828 01444563 -spit_out v 3 2 @ ~ 3 2 00102303 01045318 00006238 -spit_up v 2 2 @ ~ 2 0 02200341 00006238 -spite v 1 3 @ ~ + 1 0 01793177 -splash v 7 3 @ ~ + 7 4 01374767 01921591 01374020 01336864 02186868 01534609 01375295 -splash_around v 1 1 @ 1 0 02419613 -splat v 3 3 @ + ; 3 0 02173513 00464173 00463633 -splatter v 2 4 @ ~ $ + 2 0 01542207 01374020 -splay v 3 1 @ 3 0 02045655 02045415 00465762 -splice v 4 4 @ ~ $ + 4 1 01560184 02489456 01560034 01559868 -splint v 1 3 @ + ; 1 0 00083661 -splinter v 3 2 @ + 3 3 02535457 02469274 00337903 -split v 5 4 @ ~ $ + 5 5 02467662 01556572 02431320 02030158 00309310 -split_up v 4 4 @ ~ * $ 4 0 02490634 02467662 02431320 00334186 -splosh v 4 2 @ ~ 4 0 02186868 01921591 01374767 01374020 -splotch v 1 2 @ + 1 0 01532329 -splurge v 2 2 @ + 2 0 02269003 02142413 -splutter v 2 2 @ + 2 0 00986897 00102303 -spoil v 8 3 @ ~ + 8 3 02527651 00210259 00203081 02570267 02558172 01825761 01565472 00477941 -spondaise v 1 2 @ ; 1 0 01703195 -spondaize v 1 2 @ ; 1 0 01703195 -sponge v 5 3 @ ~ + 5 1 01392663 02270404 01549057 01393611 01383646 -sponge_down v 2 1 @ 2 0 01250795 00036685 -sponge_off v 1 1 @ 1 1 01250795 -sponge_on v 1 1 @ 1 0 01364874 -sponge_up v 1 1 @ 1 0 01539487 -sponsor v 3 3 @ ~ + 3 2 02219940 02220148 02466134 -spoof v 1 3 @ ~ + 1 0 00849939 -spook v 1 2 @ + 1 0 01830965 -spool v 2 4 @ ~ + ; 2 0 02233533 01522878 -spoon v 2 3 @ * + 2 0 01579622 01425709 -spoonfeed v 2 2 @ + 2 0 01179638 00787876 -sport v 2 2 @ + 2 1 02631659 01883716 -sportscast v 1 2 @ + 1 0 00969260 -sporulate v 2 4 @ $ + ; 2 0 01752728 00116496 -spot v 6 5 @ ~ * $ + 6 1 02154312 02193194 01538161 01531998 00509958 00509607 -spot-check v 1 2 @ + 1 0 00664111 -spot-weld v 1 2 @ + 1 0 01596056 -spot_jam v 1 1 @ 1 0 01057709 -spot_promote v 1 1 @ 1 1 02398314 -spotlight v 2 2 @ + 2 1 00514069 00292368 -spotweld v 1 2 @ + 1 0 01596056 -spout v 2 3 @ ~ + 2 2 02068413 01051956 -sprain v 1 2 @ + 1 1 00091124 -sprawl v 2 3 @ ~ + 2 2 01543426 02032227 -spray v 3 3 @ ~ + 3 2 01373844 01372682 01373551 -spray-dry v 1 1 @ 1 0 00215661 -spread v 10 7 ! @ ~ > ^ $ + 10 8 01378556 01380122 02689299 01579813 00968211 00969873 02082690 02060141 01611901 01611746 -spread-eagle v 5 2 @ ; 5 1 00027570 02690577 01937067 01543626 01104248 -spread_out v 7 2 @ ~ 7 2 02060141 01360715 02082690 02077148 02045415 02028994 01579813 -spread_over v 1 3 @ ~ $ 1 1 01207951 -spreadeagle v 1 1 @ 1 0 01104248 -spree v 1 2 @ + 1 0 01182559 -spring v 5 3 @ ~ + 5 4 01963942 02623906 01892104 00095271 00935827 -spring-clean v 1 2 @ + 1 0 01533851 -spring_to_mind v 1 1 @ 1 0 00609352 -spring_up v 1 3 @ ~ $ 1 1 02624263 -sprinkle v 4 3 @ ~ + 4 2 01376245 01374767 02757828 00228655 -sprint v 1 2 @ + 1 1 01928579 -spritz v 2 2 @ + 2 0 01313780 01313592 -sprout v 2 3 @ $ + 2 1 00357332 00095377 -spruce v 2 1 @ 2 0 00293977 00043278 -spruce_up v 2 1 @ 2 0 00293977 00043278 -spud v 2 2 @ $ 2 0 01443490 00357332 -spue v 2 1 @ 2 0 00101956 00076400 -spume v 1 2 @ + 1 0 00511855 -spur v 5 3 @ * + 5 4 02554647 01818835 01241490 01241253 01241379 -spurn v 1 4 @ ~ $ + 1 1 00796976 -spurt v 2 3 @ ~ + 2 0 02068413 01884126 -sputter v 5 2 @ + 5 2 02186360 00556001 01921772 00986897 00102303 -spy v 4 4 @ ~ * + 4 2 02154312 00785690 02163746 00785470 -squabble v 1 2 @ + 1 0 00774056 -squall v 3 4 @ ~ $ + 3 2 01047263 00913065 02770019 -squander v 2 4 @ ~ $ + 2 0 02268351 01158181 -square v 8 4 @ ~ + ; 8 4 00145448 00640136 02659656 01987493 02659541 02253341 01124964 01124828 -square_away v 1 2 @ ~ 1 1 00275843 -square_dance v 1 2 @ + 1 0 01898893 -square_off v 1 2 @ ~ 1 0 00763399 -square_up v 3 2 @ ~ 3 1 00145448 01987648 00763399 -squash v 1 2 @ ~ 1 1 01593937 -squat v 3 2 @ + 3 2 01545314 02725562 02649712 -squawk v 2 2 @ + 2 1 01048939 00910973 -squeak v 1 2 @ + 1 1 02171664 -squeak_by v 2 1 @ 2 0 02588464 01247684 -squeak_through v 1 1 @ 1 0 01247684 -squeal v 2 2 @ + 2 1 01054694 00819508 -squeegee v 1 2 @ + 1 0 01392790 -squeeze v 9 5 @ ~ > ^ + 9 3 01593937 01447868 01527271 02504562 02241107 02094569 01456771 01424456 01387786 -squeeze_by v 1 1 @ 1 0 02588464 -squeeze_for v 1 1 @ 1 0 02506068 -squeeze_out v 6 3 @ ~ * 6 3 02404076 02239997 01349318 02239846 01675780 01375637 -squelch v 4 3 @ ~ + 4 1 00463234 02179279 01921591 01593937 -squinch v 3 2 @ ~ 3 0 02063225 02061069 00008602 -squint v 3 2 @ + 3 1 00008602 02168070 00008799 -squire v 1 2 @ + 1 0 02026203 -squirm v 1 3 @ ~ + 1 1 01868370 -squirrel_away v 1 1 @ 1 0 02305856 -squirt v 2 3 @ ~ + 2 1 01375637 01313411 -squish v 2 1 @ 2 0 01921591 01613589 -stab v 3 3 @ ~ + 3 1 01231652 01230350 01229976 -stabilise v 3 4 ! @ ~ + 3 0 01219993 00271946 00270826 -stabilize v 3 4 ! @ ~ + 3 1 00270826 01219993 00271946 -stable v 1 3 @ + ; 1 1 02459915 -stack v 3 4 @ ~ ^ + 3 1 01503952 01503404 01464781 -stack_away v 1 2 @ ~ 1 0 02281093 -stack_up v 1 1 @ 1 0 01504298 -staff v 2 3 @ ~ + 2 1 01088749 01095739 -stag v 3 3 @ ~ * 3 0 02596275 00841986 00785690 -stage v 2 4 @ ~ + ; 2 2 01711445 01648126 -stage_direct v 1 2 @ ; 1 0 01711336 -stagger v 4 2 @ + 4 3 01924882 01925170 01504130 01810126 -stagnate v 4 4 @ ~ $ + 4 0 02725286 02725067 02724835 02417504 -stain v 4 4 @ ~ $ + 4 2 00286008 00286605 01537409 00283415 -stake v 5 4 @ ~ * + 5 3 02545272 01139104 01591476 01591940 01572003 -stale v 1 1 @ 1 0 00072897 -stalemate v 1 3 @ + ; 1 0 01077203 -stalinise v 1 2 @ + 1 0 00569087 -stalinize v 1 3 ! @ + 1 0 00569087 -stalk v 3 2 @ + 3 2 01924148 02004009 02001252 -stall v 7 4 @ ~ + ; 7 3 02642238 01862340 00460555 02460070 01862776 01862640 01862496 -stammer v 1 2 @ + 1 1 00981544 -stamp v 9 3 @ ~ + 9 6 01925338 01273016 02144644 01273814 00656292 00478488 01624568 01594362 01531265 -stamp_down v 1 2 @ ~ 1 1 00462092 -stamp_out v 1 1 @ 1 1 00355038 -stampede v 4 4 @ * > + 4 1 02086805 02594469 02594290 02056300 -stanch v 1 1 @ 1 0 00354452 -stand v 12 9 ! @ ~ * > ^ $ + ; 12 11 01546111 02611373 02734488 02702120 00668099 00670991 02707125 02703018 02702368 01546768 01115916 01428203 -stand_back v 2 1 @ 2 2 02655698 01546633 -stand_by v 3 2 @ + 3 2 02726385 02638444 02638630 -stand_fast v 1 2 @ ~ 1 0 00819163 -stand_firm v 2 2 @ ~ 2 0 01116585 00819163 -stand_for v 4 3 @ ~ $ 4 4 00836236 00931852 02699497 00669099 -stand_guard v 1 1 @ 1 1 02455159 -stand_in v 1 2 @ + 1 1 02258617 -stand_out v 4 3 @ ~ ; 4 3 02674564 02673965 01932834 01116980 -stand_pat v 1 2 @ ~ 1 0 00819163 -stand_sentinel v 1 1 @ 1 1 02455159 -stand_still v 1 3 ! ~ + 1 1 01834485 -stand_up v 7 5 @ ~ * > $ 7 5 01983264 01117086 01546768 01546111 00895641 02618688 01983597 -stand_watch v 1 1 @ 1 1 02455159 -standardise v 2 3 @ ~ + 2 0 00682436 00467717 -standardize v 2 3 @ ~ + 2 1 00467717 00682436 -staple v 1 3 ! @ + 1 0 01367069 -star v 3 4 @ ~ + ; 3 1 02631349 01720980 00510869 -starboard v 1 3 @ + ; 1 0 01932951 -starch v 1 2 @ + 1 0 00417856 -stare v 2 3 @ ~ + 2 2 02132745 00033406 -stare_down v 1 1 @ 1 0 02132989 -stargaze v 2 3 @ + ; 2 0 02133297 01637633 -start v 14 7 ! @ ~ > $ + ; 14 11 00345761 00348746 02014165 02608347 01628449 01650610 01910373 01857717 01864230 02379528 01075164 02608823 02600948 02081946 -start_out v 2 3 @ ~ $ 2 2 00345761 02014165 -start_up v 2 4 @ ~ > + 2 1 01857717 01650610 -startle v 2 3 @ ~ + 2 1 01821634 01910373 -starve v 5 5 ! @ > $ + 5 3 01188144 01187537 01187740 01188485 01187948 -stash v 1 2 @ + 1 0 02305856 -stash_away v 1 2 @ ~ 1 0 02281093 -state v 3 4 @ ~ $ + 3 3 01009240 00878136 01061481 -station v 1 3 @ ~ + 1 1 01088923 -staunch v 1 1 @ 1 0 00354452 -stave v 2 2 @ + 2 0 02362798 00310274 -stave_in v 2 1 @ 2 0 00335697 00310274 -stave_off v 1 1 @ 1 1 02453321 -stay v 11 5 ! @ ~ + ; 11 6 00117985 01857392 02637202 02727462 02009200 00460900 02731024 02619122 02560021 01344643 01194114 -stay_at v 1 1 @ 1 1 02649600 -stay_away v 1 1 @ 1 0 02655698 -stay_fresh v 1 2 @ $ 1 0 02734800 -stay_in_place v 1 2 ! ~ 1 1 01848355 -stay_off v 1 1 @ 1 0 00811720 -stay_on v 1 2 @ ~ 1 1 02727462 -stay_over v 1 1 @ 1 0 02652729 -stay_put v 1 1 @ 1 1 01857392 -stay_together v 1 1 @ 1 1 02487368 -stay_up v 1 1 @ 1 0 00020259 -steady v 2 2 @ ~ 2 2 00416571 01219993 -steady_down v 1 2 @ ~ 1 0 00415398 -steal v 3 5 @ ~ ^ + ; 3 3 02321757 01888295 01111458 -steal_away v 1 1 @ 1 1 02076027 -steam v 6 3 @ + ; 6 2 01944976 02768579 01970272 01787319 01245325 00327145 -steam-heat v 1 1 @ 1 0 02333599 -steam_clean v 1 1 @ 1 0 01245325 -steamer v 1 3 @ + ; 1 0 01944976 -steamroll v 4 3 @ $ + 4 0 02505807 02373578 01110661 00464006 -steamroller v 5 3 @ $ + 5 0 02505807 02373578 01594514 01110661 00464006 -steel v 2 2 @ + 2 1 01806271 01614907 -steel_oneself_against v 1 1 @ 1 0 00273257 -steel_onself_for v 1 1 @ 1 0 00273257 -steep v 2 4 @ ~ $ + 2 1 00601043 00327362 -steepen v 2 1 @ 2 0 00536807 00536678 -steer v 3 4 @ ~ * + 3 3 01931768 01935104 02439732 -stem v 4 2 @ + 4 1 02627753 02713065 00354452 00176137 -stencil v 1 3 @ + ; 1 0 01749660 -stenograph v 1 1 @ 1 0 01691506 -step v 10 5 @ ~ ^ + ; 10 2 01928838 02091410 02563616 02516594 02330247 02091885 02091689 01256487 00490722 00124659 -step_down v 2 3 @ ~ + 2 1 02382367 00290740 -step_forward v 1 1 @ 1 1 02089174 -step_in v 2 2 @ ~ 2 1 02538765 02394662 -step_on v 1 1 @ 1 1 02092039 -step_on_it v 1 2 @ ~ 1 0 02058994 -step_out v 1 1 @ 1 1 02016401 -step_to_the_fore v 1 1 @ 1 1 02089174 -step_up v 3 3 @ ~ + 3 2 00290302 00439849 02089174 -stereotype v 1 2 @ + 1 0 00656292 -sterilise v 2 3 @ ~ + 2 0 00062582 00061595 -sterilize v 2 3 @ ~ + 2 1 00062582 00061595 -stet v 2 2 @ $ 2 0 02601680 01070968 -stew v 3 4 @ ~ + ; 3 0 01805384 01774005 00323856 -stick v 16 6 @ ~ * ^ $ + 16 3 01528069 01857392 01356750 02754032 02647798 02638845 02638630 01667969 01614581 01614426 01614235 01441993 01441793 01220885 00748084 00622384 -stick_about v 1 1 @ 1 0 02638444 -stick_around v 2 1 @ 2 0 02638444 01857392 -stick_by v 1 1 @ 1 0 02638630 -stick_in v 2 2 @ ~ 2 2 01025602 00187526 -stick_on v 2 3 @ ~ > 2 0 01362430 01356370 -stick_out v 3 3 @ ~ $ 3 1 02713372 02674564 00668099 -stick_to v 2 3 @ ~ $ 2 2 01356750 00351406 -stick_together v 1 1 @ 1 1 02487368 -stick_up v 2 5 @ ~ * + ; 2 0 02277448 00895641 -stick_with v 1 2 @ $ 1 0 00351406 -stickle v 1 2 @ + 1 0 00773786 -stiffen v 3 5 ! @ ~ > + 3 2 00418563 00417596 00418765 -stifle v 4 5 ! @ ~ $ + 4 2 01568630 00390842 01476180 00359511 -stigmatise v 2 2 @ + 2 0 02508245 00508645 -stigmatize v 2 2 @ + 2 0 02508245 00508645 -still v 4 5 @ ~ > $ + 4 2 01764800 00461493 01815185 00583905 -still-fish v 1 1 @ 1 0 01145468 -still-hunt v 1 1 @ 1 0 01142203 -stimulate v 7 4 ! @ ~ + 7 6 00503164 00770437 01761706 00022686 01644522 02116118 00794079 -sting v 5 4 @ ~ $ + 5 3 02120451 01445407 00748084 02123424 01793742 -stink v 2 3 @ ^ + 2 1 02674173 02124106 -stink_out v 1 1 @ 1 0 02126022 -stink_up v 1 1 @ 1 0 02126022 -stint v 2 2 @ + 2 0 02345498 02225739 -stipple v 4 3 @ + ; 4 0 01750302 01695773 01681212 01538469 -stipulate v 3 5 @ ~ $ + ; 3 1 01018928 01019472 00889026 -stir v 8 5 @ ~ ^ $ + 8 6 01894320 01893988 02116118 01761706 01770802 01629958 01894164 01541467 -stir_fry v 1 2 @ ; 1 0 00326459 -stir_up v 4 3 @ ~ > 4 3 02585050 01761120 01419473 00851239 -stitch v 1 4 @ ~ * + 1 1 01329239 -stock v 7 5 @ ~ $ + ; 7 1 02285392 02329883 02329733 02329578 02323286 02323059 00095377 -stock-take v 1 1 @ 1 0 02472495 -stock_up v 1 3 @ ~ ; 1 0 02323286 -stockade v 1 2 @ + 1 0 01130930 -stockpile v 1 2 @ + 1 0 02285392 -stoke v 1 2 @ + 1 1 02439156 -stomach v 2 4 @ ~ $ + 2 0 01197626 00668099 -stomp v 1 2 @ + 1 1 01925338 -stone v 2 2 @ + 2 1 01323518 00179567 -stone-wash v 1 1 @ 1 0 01536776 -stonewall v 2 2 @ + 2 0 01034932 00460132 -stonewash v 1 1 @ 1 0 01536776 -stooge v 3 3 @ + ; 3 0 01845105 01720491 00013858 -stool v 4 4 @ ~ $ + 4 0 00783859 00718645 00095595 00074038 -stoop v 5 5 @ ~ * ^ + 5 1 02062632 02517827 02064612 02037683 01601685 -stoop_to v 1 1 @ 1 1 00909134 -stop v 11 6 ! @ ~ > $ + 11 9 01860795 02680814 02559752 01862918 01859221 00362348 01131473 01440378 02609764 01478002 00362610 -stop_dead v 1 2 @ ~ 1 1 01834730 -stop_over v 2 3 @ ~ + 2 0 02652922 01862918 -stop_up v 1 3 @ ~ * 1 0 01422886 -stopper v 1 2 @ + 1 0 01220636 -stopple v 1 2 @ + 1 0 01220636 -store v 2 3 @ ~ + 2 2 02281093 02282506 -storm v 5 3 @ * + 5 2 02723016 01586600 02770170 02769900 01126051 -stow v 1 2 @ + 1 1 01493234 -stow_away v 1 2 @ + 1 0 02146175 -straddle v 3 3 @ ~ + 3 2 02705913 02690384 02705832 -strafe v 1 2 @ + 1 1 01136142 -straggle v 2 2 @ + 2 2 02066304 02032227 -straighten v 6 5 ! @ ~ ^ + 6 4 02035781 01368597 01982044 00275843 01487185 00277935 -straighten_out v 6 3 @ ~ $ 6 3 00208055 01463520 00167934 01368597 00621058 00275843 -straighten_up v 1 1 @ 1 1 01982686 -strain v 9 6 ! @ ~ > + ; 9 5 01146051 01798452 01165579 01460029 00025203 01572728 01458664 01250474 00476744 -straiten v 2 1 @ 2 0 02603424 01388571 -strand v 3 2 @ > 3 1 02228355 02087377 02022486 -strangle v 6 5 @ ~ * > + 6 1 01570935 01568630 00359405 00236289 00077950 00077698 -strangulate v 3 4 @ ~ * + 3 0 01570935 01388653 00304828 -strap v 4 5 ! @ ~ + ; 4 1 01289492 01411085 00392860 00083523 -stratify v 5 5 @ ~ $ + ; 5 2 02512808 00506952 02513048 01308681 00052845 -straw v 2 3 @ ~ + 2 0 01608340 01378123 -stray v 3 4 @ ~ $ + 3 2 01881180 01925694 00780575 -streak v 3 2 @ + 3 1 02087605 01927330 01696135 -stream v 5 3 @ ~ + 5 3 02070679 00069012 02028366 02758033 02070466 -streamline v 1 2 @ + 1 0 01689899 -street-walk v 1 1 @ 1 0 02554235 -streetwalk v 1 2 @ + 1 0 02554235 -strengthen v 3 5 ! @ ~ > + 3 2 00220869 00220461 00101277 -stress v 3 3 @ ~ + 3 2 01013367 00983333 01798452 -stretch v 11 6 ! @ ~ > $ + 11 8 02607830 00027268 02054989 00240810 00318816 01985271 01449591 00541746 00487748 00154141 00101434 -stretch_along v 1 1 @ 1 0 02607830 -stretch_forth v 1 2 @ ~ 1 1 00027705 -stretch_out v 5 3 @ ~ $ 5 3 02054989 01985271 00027705 00101434 00028167 -strew v 2 3 @ ~ + 2 2 01378123 01208896 -striate v 1 2 @ + 1 0 00508933 -strickle v 2 2 @ * 2 0 01585390 01308008 -stride v 2 2 @ + 2 0 01919711 01912709 -stridulate v 1 2 @ + 1 0 02172296 -strike v 21 7 @ ~ * > ^ $ + 21 14 01410223 01767949 01236164 01123887 00923622 01209135 02412647 02611976 02526811 01209426 00143540 02286687 01675073 01549420 02108791 02104161 01982395 01639105 01308008 01228235 00635904 -strike_a_blow v 1 1 @ 1 0 00137791 -strike_a_chord v 3 1 @ 3 1 00592186 01769220 01759926 -strike_a_note v 1 1 @ 1 0 01769220 -strike_back v 1 1 @ 1 0 01153165 -strike_down v 3 3 @ ~ > 3 0 02477334 01325934 01258302 -strike_dumb v 1 1 @ 1 0 01768764 -strike_hard v 1 1 @ 1 0 01238640 -strike_home v 1 1 @ 1 1 01769220 -strike_off v 1 1 @ 1 0 00800750 -strike_out v 6 5 @ ~ > + ; 6 2 00800750 01509280 02528833 01936361 01154175 00346714 -strike_up v 2 2 @ ; 2 1 01651110 01642311 -string v 7 6 ! @ ~ ^ $ + 7 2 01359432 00190389 01993805 01360571 01360423 01360316 01359145 -string_along v 1 1 @ 1 0 01993805 -string_out v 1 1 @ 1 1 01360715 -string_up v 2 2 @ ~ 2 0 02485451 00190389 -strip v 13 5 @ ~ $ + ; 13 5 02314275 00049900 01263479 00488617 00194912 02344568 01608706 01263659 00194812 00194696 00194534 00194079 00177243 -strip-search v 1 1 @ 1 0 01318470 -strip_down v 1 3 @ ~ $ 1 0 00049900 -strip_mine v 1 3 @ + ; 1 0 01164081 -stripe v 1 2 @ + 1 0 01273263 -strive v 2 3 @ ~ + 2 2 02531199 01146051 -stroke v 4 3 @ ~ + 4 2 01225970 01124608 01124722 00880658 -stroll v 1 2 @ + 1 1 01917980 -strong-arm v 3 3 @ ~ + 3 0 02515443 01781520 01397707 -strop v 1 2 @ + 1 1 01246959 -structure v 1 3 @ ~ + 1 1 00404222 -struggle v 4 4 @ ~ * + 4 4 02407338 01505058 01921772 01090335 -strum v 1 2 @ + 1 1 02180362 -strut v 1 2 @ + 1 1 01916634 -stub v 4 1 @ 4 0 01567183 01210622 00313354 00102420 -stub_out v 1 1 @ 1 1 00478682 -stucco v 2 2 @ + 2 0 01678279 01261371 -stud v 2 3 @ + ; 2 1 02689882 01358023 -study v 6 5 @ ~ * $ + 6 6 00644583 00607405 02166460 00599992 00607114 00704388 -stuff v 7 7 ! @ ~ * $ + ; 7 2 01524871 02094569 01479333 01193099 00497555 00321148 00320681 -stultify v 3 3 @ + ; 3 0 01801080 00853445 00225832 -stumble v 4 4 @ ~ * + 4 3 01901133 01900408 02206462 00618057 -stump v 4 2 @ + 4 1 00620379 01925338 01094384 00195221 -stun v 3 2 @ + 3 2 00268968 01410079 02115430 -stunt v 2 4 @ ~ + ; 2 1 02452413 01713348 -stupefy v 3 3 @ ~ + 3 0 02115618 00622384 00268968 -stutter v 1 2 @ + 1 1 00981544 -style v 3 4 @ ~ + ; 3 1 01028466 01666894 00993608 -stylise v 1 3 @ + ; 1 0 01687569 -stylize v 1 3 @ + ; 1 0 01687569 -stymie v 1 3 @ ~ + 1 0 02557199 -stymy v 1 2 @ ~ 1 0 02557199 -sub v 1 2 @ + 1 1 02258617 -subcontract v 2 3 @ * + 2 1 02461063 02460883 -subdivide v 2 3 @ $ + 2 0 00333277 00333066 -subdue v 6 4 @ ~ * + 6 2 02424128 00462092 01801847 01108627 00579712 00202445 -subedit v 1 2 @ + 1 0 00628125 -subject v 4 4 @ ~ > + 4 3 02110927 01118292 02496816 00878636 -subjoin v 1 2 @ + 1 0 01329026 -subjugate v 2 3 @ ~ + 2 1 02424128 02496816 -sublease v 1 2 @ + 1 0 02209261 -sublet v 1 2 @ + 1 0 02209261 -sublimate v 5 6 @ ~ * $ + ; 5 0 01953527 00552138 00475183 00366020 00365810 -sublime v 2 4 @ ~ * + 2 1 00365810 00366020 -subluxate v 1 2 @ + 1 0 00091513 -submarine v 5 3 @ + ; 5 0 01870674 01512921 01240188 01225357 01119803 -submerge v 4 3 @ ~ + 4 2 01991472 01339294 01578254 00217700 -submerse v 2 3 @ ~ + 2 0 01991472 01578254 -submit v 10 6 @ ~ * $ + ; 10 8 00878636 00878136 01118081 02262752 02589013 00878348 00669762 01072641 02310328 00732394 -subordinate v 2 3 @ ~ + 2 1 00659535 00579712 -suborn v 3 4 @ > $ + 3 0 02581276 00835158 00834943 -subpoena v 1 2 @ + 1 1 00793418 -subrogate v 1 2 @ + 1 0 02360882 -subscribe v 5 5 @ ~ * + ; 5 3 02299110 00996485 00806314 02299269 02209745 -subscribe_to v 1 1 @ 1 1 02209745 -subserve v 1 2 @ + 1 0 02548588 -subside v 4 2 @ + 4 1 00232956 01986367 01986185 01971929 -subsidise v 2 2 @ + 2 0 02217011 02216710 -subsidize v 2 2 @ + 2 1 02216710 02217011 -subsist v 1 3 ~ $ + 1 1 02616713 -substantiate v 4 3 @ ~ + 4 1 00665886 02698443 01644746 00221413 -substitute v 3 3 @ ~ + 3 2 02257767 02258617 02394662 -subsume v 2 2 @ + 2 0 02634667 00685224 -subtend v 1 1 @ 1 1 02693842 -subtilise v 1 1 @ 1 0 00392758 -subtilize v 3 1 @ 3 0 00650233 00552138 00392758 -subtitle v 1 3 @ + ; 1 1 02332311 -subtract v 2 5 ! @ ~ + ; 2 1 00641252 00586973 -suburbanise v 2 1 @ 2 0 00123018 00122853 -suburbanize v 2 2 @ + 2 0 00123018 00122853 -subvent v 1 2 @ + 1 0 00889740 -subvention v 1 1 @ 1 0 00889740 -subvert v 4 3 @ ~ + 4 1 02402409 02579447 02543607 01565028 -subvocalise v 1 1 @ 1 0 00979667 -subvocalize v 1 2 @ + 1 0 00979667 -succeed v 2 4 ! ~ * + 2 2 02524171 02406585 -succor v 1 2 @ + 1 0 02548710 -succour v 1 2 @ + 1 0 02548710 -succumb v 2 3 ! @ ~ 2 1 00804476 02620466 -succuss v 1 2 @ + 1 0 01890351 -suck v 7 5 @ ~ ^ $ + 7 2 01169704 01854888 02765692 02674340 02117170 01539063 01186428 -suck_in v 3 2 @ $ 3 3 01197980 02765692 01282142 -suck_out v 1 2 @ $ 1 0 01540693 -suck_up v 3 2 @ ~ 3 1 01539063 01804753 00880978 -suckle v 2 3 @ * $ 2 0 01187385 01186428 -suction v 2 4 @ $ + ; 2 0 01854679 00073584 -sudate v 1 3 @ ~ + 1 0 00067545 -suds v 2 2 @ + 2 0 01536076 00511855 -sue v 1 4 @ ~ $ + 1 1 02582042 -suffer v 11 5 ! @ ~ $ + 11 8 02109190 00065639 01794668 00668099 00204750 00065070 02121511 00078401 02719807 02110082 00204872 -suffice v 1 3 @ ~ + 1 1 02669789 -suffix v 1 3 ! @ + 1 0 01298123 -suffocate v 7 5 @ ~ * $ + 7 1 01569181 01476180 00391203 00391021 00359511 00106412 00077698 -suffuse v 2 2 @ + 2 1 00454251 00454651 -sugar v 1 2 @ + 1 1 02195951 -sugarcoat v 2 1 @ 2 0 02196378 01033942 -suggest v 5 3 @ ~ + 5 5 00875394 00927430 00930806 00928232 00930368 -suit v 4 2 @ ~ 4 3 02702830 02735282 02699941 02724258 -sulfate v 1 1 @ 1 0 00585986 -sulfur v 1 2 @ + 1 0 00516747 -sulfurette v 1 2 @ ; 1 0 01461885 -sulk v 1 3 ~ * + 1 0 02719016 -sully v 3 2 @ ~ 3 0 01537959 01537409 00846509 -sulphur v 1 2 @ + 1 1 00516747 -sulphurette v 1 2 @ ; 1 0 01461885 -sum v 2 3 @ $ + 2 0 02752695 00949288 -sum_up v 3 3 @ ~ $ 3 1 01007924 02752695 00949288 -summarise v 2 4 @ ~ $ + 2 0 02752695 01007924 -summarize v 2 4 @ ~ $ + 2 1 01007924 02752695 -summate v 2 3 @ $ + 2 1 00949288 02378183 -summer v 1 2 @ + 1 0 02709774 -summerise v 1 1 @ 1 0 00408448 -summerize v 1 3 ! @ + 1 0 00408448 -summit v 1 2 @ + 1 0 02021149 -summon v 4 3 @ ~ + 4 2 00791134 01041762 01381549 00270215 -summons v 1 3 @ ~ + 1 0 00791134 -sun v 2 2 @ + 2 1 00104147 02112546 -sunbathe v 1 2 @ + 1 0 00104147 -sunburn v 1 2 @ + 1 0 00104299 -sunder v 1 1 @ 1 1 00335814 -suntan v 1 2 @ + 1 0 00104026 -sup v 1 2 @ + 1 0 01205459 -superannuate v 4 2 @ + 4 0 02380418 00818135 00537050 00536921 -supercede v 1 3 @ ~ $ 1 0 02405390 -supercharge v 2 2 @ + 2 0 00497061 00403609 -superfetate v 1 2 @ + 1 0 00067850 -superimpose v 1 2 @ ~ 1 1 01469263 -superinfect v 1 2 @ + 1 0 00088972 -superintend v 1 3 @ ~ + 1 1 02443049 -superordinate v 1 1 @ 1 0 00658619 -superpose v 2 3 @ ~ + 2 0 01469445 01469263 -superscribe v 2 2 @ + 2 0 01692096 01691927 -supersede v 1 4 @ ~ $ + 1 1 02405390 -supervene v 1 2 @ + 1 0 00341422 -supervene_upon v 1 3 @ ~ $ 1 0 02405390 -supervise v 2 3 @ ~ + 2 1 02443049 02163301 -supinate v 1 2 @ + 1 0 02090243 -supplant v 1 4 @ ~ $ + 1 1 02405390 -supple v 1 1 @ 1 0 00582917 -supplement v 3 5 @ ~ * $ + 3 1 02342132 02752931 01328705 -supplicate v 3 3 @ $ + 3 1 00758627 00759087 00758887 -supply v 4 3 @ ~ + 4 4 02327200 02479323 01182709 01027174 -support v 11 6 @ ~ * $ + ; 11 8 02556126 02219094 02453889 01217043 00665886 00806314 02663340 00895304 01720773 00908621 00668099 -suppose v 5 4 @ ~ + ; 5 3 00917300 00631737 00633443 00716531 00716345 -suppress v 5 4 @ ~ + ; 5 3 00462092 02424652 02423762 00612841 00153964 -suppurate v 2 3 @ $ + 2 0 00097179 00096766 -surcharge v 7 4 @ ~ * + 7 0 02320773 02319050 02028034 01748462 01488714 01488555 00923481 -surf v 3 5 @ ~ $ + ; 3 0 01948077 01315333 00551611 -surface v 3 3 @ ~ + 3 1 01990281 01264283 00423702 -surface-mine v 1 2 @ ; 1 0 01164081 -surface_mine v 1 2 @ ; 1 0 01164081 -surfboard v 1 4 @ ~ + ; 1 0 01948077 -surfeit v 2 2 @ + 2 1 02333225 01191838 -surge v 5 4 @ ~ + ; 5 4 02041206 01943718 01903756 01885239 00168217 -surmise v 2 2 @ + 2 2 00689205 00921072 -surmount v 4 2 @ ~ 4 2 01108627 02694548 01999082 01105639 -surpass v 4 2 @ ~ 4 3 02673965 01105639 02051694 02669477 -surprise v 3 3 @ ~ + 3 2 00725274 02596493 01126051 -surrender v 2 4 ! @ ~ + 2 2 01115585 02235229 -surround v 4 3 @ ~ + 4 3 01467370 01568886 01127411 01130607 -surtax v 1 2 @ + 1 0 02308115 -surveil v 1 1 $ 1 0 02198602 -survey v 6 5 @ ~ * $ + 6 2 00646542 02150328 02198602 00696700 00647929 00646738 -survive v 4 6 ! @ ~ * $ + 4 3 02618149 02619924 02616713 02619739 -suspect v 3 3 @ ~ + 3 3 00921072 00687926 00924873 -suspend v 6 5 @ ~ * + ; 6 5 01481154 00148763 02502037 00363493 00542668 02643740 -suspire v 2 5 @ ~ * $ + 2 0 00004032 00001740 -suss_out v 1 3 @ ~ $ 1 0 00661824 -sustain v 7 4 @ ~ $ + 7 6 02679530 00065639 01202728 01184625 01217043 00818422 00665886 -susurrate v 1 2 @ + 1 0 01044377 -suture v 1 2 @ + 1 0 01296154 -swab v 2 2 @ + 2 1 01244178 01233194 -swaddle v 1 1 @ 1 0 01300271 -swag v 3 2 @ ~ 3 0 01985524 01924882 01876434 -swage v 1 1 @ 1 0 01256374 -swagger v 3 2 @ + 3 1 01916634 01035199 00012434 -swallow v 8 3 @ ~ + 8 3 01201856 01083769 01582409 00941037 00799076 00737352 00668805 00601659 -swallow_up v 1 1 @ 1 1 01582409 -swamp v 2 2 @ + 2 2 02771564 01524523 -swan v 3 3 @ ~ $ 3 1 01011031 01881180 01869893 -swank v 1 2 @ ~ 1 0 02141973 -swap v 2 3 @ ~ + 2 1 02259005 01839030 -swarm v 2 3 @ ~ + 2 2 02714974 02028366 -swash v 4 3 @ ~ + 4 0 02089082 01374020 00883226 00012434 -swat v 1 2 @ + 1 0 01396937 -swathe v 1 2 @ + 1 1 01300271 -swatter v 1 2 @ + 1 0 01375458 -sway v 4 4 @ ~ $ + 4 3 01875295 01877355 02586121 01876028 -swear v 5 5 @ ~ ^ $ + 5 4 00865387 01011031 00889947 01013040 00688377 -swear_in v 1 1 @ 1 1 01017501 -swear_off v 1 1 @ 1 1 00884814 -swear_out v 1 2 @ ~ 1 1 01438681 -sweat v 1 4 @ ~ ^ + 1 1 00067545 -sweat_off v 1 1 @ 1 0 00046022 -sweep v 9 5 @ ~ ^ $ + 9 7 01870043 01869563 01393714 02677797 02685390 01393996 01100952 02688403 01593763 -sweep_away v 2 1 @ 2 2 01621219 01770370 -sweep_off v 1 1 @ 1 0 01770370 -sweep_over v 1 2 @ ~ 1 1 01809321 -sweep_through v 1 1 @ 1 1 02522581 -sweep_under_the_rug v 1 1 @ 1 1 02371469 -sweep_up v 2 2 @ ~ 2 2 02677797 00601822 -sweet-talk v 1 2 @ ~ 1 0 00768778 -sweeten v 2 4 ! @ ~ + 2 0 02195470 00519854 -swell v 6 4 @ ~ > + 6 5 00555084 02596908 00256507 02626405 01991204 00257650 -swell_up v 1 2 @ ~ 1 0 00256507 -swelter v 2 1 @ 2 0 00078316 00069747 -swerve v 1 3 @ ~ + 1 1 02033295 -swig v 2 3 @ * + 2 0 01415585 01202068 -swill v 2 2 @ + 2 0 01178220 01169433 -swill_down v 1 1 @ 1 0 01169433 -swim v 5 4 @ ~ $ + 5 2 01960911 01904293 02756063 02755911 01904649 -swindle v 1 3 @ ~ + 1 1 02572119 -swing v 13 4 @ ~ + ; 13 9 02087745 01877355 01877620 02537238 01593763 02717472 01152040 00557216 02615140 02752277 02389815 01725375 01427483 -swing_about v 1 1 @ 1 0 01878949 -swing_around v 1 1 @ 1 1 01878949 -swing_out v 1 1 @ 1 0 01593763 -swing_over v 1 1 @ 1 0 02537238 -swinge v 1 1 @ 1 0 00378521 -swipe v 2 3 @ ^ + 2 1 01394200 02276866 -swirl v 2 2 @ + 2 2 02048891 02047650 -swish v 1 2 @ + 1 1 02188198 -switch v 7 4 @ ~ $ + 7 4 00140751 02259005 00550117 00380159 01510173 01411630 00121678 -switch-hit v 1 3 @ + ; 1 0 01413719 -switch_off v 1 3 ! @ ~ 1 1 01510576 -switch_on v 1 2 ! @ 1 1 01510399 -switch_over v 1 1 @ 1 0 00140751 -swivel v 1 3 @ ~ + 1 1 02046572 -swob v 2 2 @ + 2 0 01244178 01233194 -swoon v 1 2 @ + 1 1 00023646 -swoop v 3 3 @ ~ + 3 1 02064358 02064759 01440010 -swoop_up v 1 1 @ 1 1 01440010 -swoosh v 1 1 @ 1 0 02188198 -swop v 1 2 @ + 1 0 02259005 -swosh v 1 1 @ 1 0 02188198 -swot v 1 3 @ $ + 1 0 00605783 -swot_up v 1 2 @ $ 1 0 00605783 -syllabicate v 1 2 @ + 1 0 01563336 -syllabify v 1 2 @ + 1 0 01563336 -syllabise v 2 1 @ 2 0 01563336 00979988 -syllabize v 2 2 @ + 2 0 01563336 00979988 -syllogise v 1 2 @ + 1 0 00653449 -syllogize v 1 2 @ + 1 0 00653449 -symbolise v 2 3 @ ~ + 2 0 00987597 00836236 -symbolize v 2 3 @ ~ + 2 1 00836236 00987597 -symmetrise v 1 2 @ + 1 0 00552619 -symmetrize v 1 2 @ + 1 0 00552619 -sympathise v 3 3 @ ~ + 3 0 01822724 01822248 00594058 -sympathize v 3 3 @ ~ + 3 2 01822724 00594058 01822248 -sympathize_with v 1 2 @ ~ 1 1 01821996 -symphonise v 1 2 @ ; 1 0 01727052 -symphonize v 1 3 @ + ; 1 0 01727052 -sync v 1 2 @ ~ 1 0 00393953 -synchronise v 6 6 ! @ ~ $ + ; 6 0 02739254 00960734 00735866 00464996 00464828 00393953 -synchronize v 6 6 ! @ ~ $ + ; 6 1 00393953 02739254 00960734 00735866 00464996 00464828 -syncopate v 2 3 @ + ; 2 0 00317086 00170500 -syncretise v 2 1 @ 2 0 00553616 00368522 -syncretize v 2 2 @ + 2 0 00553616 00368522 -syndicate v 3 3 @ $ + 3 0 02449183 02449011 02243758 -synthesise v 1 2 @ + 1 1 00644066 -synthesize v 2 3 ! @ + 2 1 00644066 00644430 -syphon v 1 2 @ + 1 0 01853542 -syringe v 1 2 @ + 1 0 01373422 -systematise v 1 3 @ ~ + 1 0 00480969 -systematize v 1 3 @ ~ + 1 1 00480969 -systemise v 1 3 @ ~ + 1 0 00480969 -systemize v 1 3 @ ~ + 1 0 00480969 -table v 2 3 @ ~ * 2 0 02642814 01745536 -taboo v 1 2 @ + 1 0 02508977 -tabularise v 1 1 @ 1 0 01745536 -tabularize v 1 1 @ 1 0 01745536 -tabulate v 2 2 @ + 2 1 01745536 00142967 -tack v 6 5 @ ~ ^ + ; 6 2 01357429 01946408 01656788 01331348 01328513 00121678 -tack_on v 1 2 @ ~ 1 1 01328513 -tack_together v 1 2 @ ~ 1 0 01656788 -tackle v 3 4 @ ~ + ; 3 1 02569630 01491697 01150164 -tag v 5 6 @ ~ ^ $ + ; 5 3 01588493 01600600 01029760 02001858 01702033 -tag_along v 1 2 @ + 1 0 02027030 -tag_on v 1 2 @ ~ 1 0 01328513 -tail v 3 3 @ ~ + 3 0 02001858 01556178 01321796 -tailgate v 1 2 @ + 1 0 01998125 -tailor v 3 4 @ ~ + ; 3 2 00301662 01666717 01666327 -tailor-make v 2 2 @ ~ 2 1 01666327 01623489 -taint v 2 3 @ ~ + 2 0 01537959 00088713 -take v 42 8 ! @ ~ * ^ $ + ; 42 36 02599636 02267989 01999798 01214265 00524682 00624476 02077656 02205272 01842690 00674607 02236124 02394183 00734054 02627934 02109045 01002740 00173338 01156834 00669762 02209936 02206619 01982395 02236624 00523095 00599992 00756076 02075857 01151110 00557404 02717102 02208537 02209745 02208118 02201138 01427127 00758333 02741546 02701210 02590253 01930482 01100830 00087736 -take_a_bow v 2 1 @ 2 0 00899204 00899041 -take_a_breath v 1 3 ~ * $ 1 1 00001740 -take_a_breather v 1 1 @ 1 1 00779360 -take_a_chance v 1 2 @ ~ 1 1 02544348 -take_a_crap v 1 3 @ ~ $ 1 0 00074038 -take_a_dare v 2 1 @ 2 0 00950337 00950206 -take_a_dive v 1 1 @ 1 0 00839085 -take_a_firm_stand v 1 1 ~ 1 0 00818974 -take_a_hit v 1 2 @ ; 1 0 01199755 -take_a_hop v 1 2 @ ~ 1 0 01892104 -take_a_joke v 1 1 @ 1 0 00669630 -take_a_leak v 1 3 @ ~ $ 1 0 00072012 -take_a_look v 1 1 @ 1 1 02131777 -take_a_powder v 1 1 @ 1 0 00427558 -take_a_shit v 1 3 @ ~ $ 1 0 00074038 -take_aback v 1 2 @ ~ 1 1 01809064 -take_account v 1 1 @ 1 1 00592341 -take_advantage v 2 2 @ ~ 2 2 02279772 02570062 -take_after v 2 1 @ 2 0 02665937 01744450 -take_aim v 1 2 @ ~ 1 1 01151110 -take_apart v 3 2 @ ~ 3 2 01657977 01572510 00643473 -take_arms v 1 1 @ 1 0 01093465 -take_away v 7 5 ! @ ~ * + 7 4 01434278 00173338 00179311 02205719 01166940 00571061 00532115 -take_back v 6 1 @ 6 2 02078294 02205887 02458405 01852591 00799076 00610770 -take_care v 3 2 @ ~ 3 3 02591597 02437707 02549581 -take_chances v 1 2 @ ~ 1 1 02544348 -take_charge v 1 2 @ ~ 1 1 02440770 -take_control v 1 2 @ ~ 1 0 02440770 -take_down v 4 4 @ ~ > + 4 1 01973125 01800422 01661804 01020934 -take_effect v 1 1 @ 1 0 00522282 -take_exception v 1 3 @ ~ ; 1 1 00808162 -take_fire v 1 3 @ ~ $ 1 0 02760622 -take_five v 1 1 @ 1 0 00779908 -take_flight v 1 2 @ ~ 1 0 02075462 -take_for v 1 2 @ $ 1 1 00693780 -take_for_granted v 1 2 @ ~ 1 1 00632236 -take_form v 1 2 @ ~ 1 1 02623906 -take_heart v 1 1 @ 1 1 01806407 -take_heed v 1 2 @ ~ 1 0 02171039 -take_hold v 2 2 @ ~ 2 2 02440770 01216670 -take_hold_of v 1 3 @ ~ $ 1 1 01439190 -take_home v 1 1 @ 1 0 02289854 -take_in v 17 6 ! @ ~ * $ + 17 9 02656995 00854904 02765464 02492584 02218173 02150948 01470225 01214786 00602255 02289295 02189168 01540844 01539063 01197980 01156834 00413195 00304100 -take_in_charge v 1 1 @ 1 0 02539686 -take_in_vain v 1 1 @ 1 0 01161830 -take_in_water v 1 1 @ 1 0 00257947 -take_into_account v 1 2 @ ~ 1 1 00723545 -take_issue v 1 1 ~ 1 1 00804802 -take_it_easy v 1 1 @ 1 1 00026941 -take_it_on_the_chin v 1 1 @ 1 0 00669528 -take_kindly_to v 1 1 @ 1 1 02719246 -take_leave v 1 2 @ ~ 1 1 02008396 -take_lying_down v 1 1 @ 1 0 00669366 -take_note v 1 1 * 1 1 02118933 -take_notice v 1 1 @ 1 1 02118793 -take_off v 9 4 @ ~ + ; 9 6 02014165 00179060 02014553 02411950 01743313 00050454 01864438 01326323 00641252 -take_office v 1 3 ! @ ~ 1 0 02383842 -take_on v 5 4 @ ~ * $ 5 5 00524682 02381726 02569630 02236624 01079480 -take_one's_lumps v 1 1 @ 1 0 00738159 -take_orders v 2 1 @ 2 0 02543023 02386266 -take_out v 14 5 @ ~ > $ + 14 6 02404904 01485513 00179311 02239261 02486693 01352390 02326955 02311387 01995211 01854132 01351170 01166940 00677021 00615774 -take_over v 8 3 @ ~ + 8 7 02274482 02381726 02412175 02301825 02274299 02595662 02346724 02216560 -take_pains v 1 1 @ 1 1 02531088 -take_part v 1 2 @ ~ 1 1 02450256 -take_place v 1 1 ~ 1 1 00339934 -take_pride v 1 1 @ 1 0 01828993 -take_root v 1 2 @ ~ 1 1 00415398 -take_shape v 1 2 @ ~ 1 1 02623906 -take_stage v 1 0 1 0 02535360 -take_stock v 2 1 @ 2 1 02153387 02472495 -take_ten v 1 1 @ 1 0 00780052 -take_the_air v 1 3 @ ~ $ 1 0 01882170 -take_the_bull_by_the_horns v 1 1 @ 1 0 01079339 -take_the_cake v 1 1 @ 1 0 01107895 -take_the_count v 1 2 @ ; 1 0 01125209 -take_the_field v 2 3 @ ~ * 2 1 01093786 01154554 -take_the_fifth v 1 1 @ 1 0 00894499 -take_the_fifth_amendment v 1 1 @ 1 0 00894499 -take_the_floor v 2 2 @ * 2 1 01983508 00989490 -take_the_road v 1 1 @ 1 0 01845587 -take_the_stage v 1 0 1 0 02535360 -take_the_stand v 1 3 @ ~ ; 1 1 01014821 -take_the_veil v 1 1 @ 1 0 00888519 -take_time_by_the_forelock v 1 1 @ 1 0 02402271 -take_time_off v 1 1 @ 1 1 02411950 -take_to v 2 2 @ * 2 2 01776468 02600779 -take_to_be v 1 1 @ 1 1 00689950 -take_to_heart v 1 1 @ 1 1 00616670 -take_to_task v 1 2 @ ~ 1 0 00824767 -take_to_the_woods v 1 2 @ ~ 1 0 02075049 -take_turns v 1 2 @ ~ 1 1 00121214 -take_up v 13 4 @ ~ $ ; 13 9 00348422 00602112 02591171 02649493 02379528 02346724 01982395 01540449 01312371 01540844 01539063 01197980 00350283 -take_up_arms v 1 1 @ 1 1 01093465 -take_water v 1 1 @ 1 0 02017663 -talc v 1 2 @ + 1 0 00042364 -talk v 6 5 ! @ ~ $ + 6 5 00962447 00941990 00963570 00952841 00937208 00830761 -talk_about v 2 2 @ ~ 2 2 01034312 00943563 -talk_down v 3 1 @ 3 1 00864814 00963015 00749584 -talk_into v 1 2 ! @ 1 1 00768512 -talk_of v 1 2 @ ~ 1 1 00943563 -talk_out_of v 1 2 ! @ 1 0 00768389 -talk_over v 1 2 @ ~ 1 1 00813978 -talk_shop v 1 1 @ 1 1 01034766 -talk_terms v 1 2 @ ~ 1 1 00761713 -talk_through_one's_hat v 1 1 @ 1 0 00839526 -talk_turkey v 1 1 @ 1 0 00964365 -tally v 4 5 @ ~ * $ + 4 0 02657219 01111816 00949841 00949288 -tame v 5 5 @ ~ $ + ; 5 1 00202445 00933566 00302464 00302130 00301856 -tamp v 1 2 @ + 1 0 01574571 -tamp_down v 1 1 @ 1 0 01574571 -tamper v 2 2 @ + 2 1 01586018 02539101 -tampon v 1 2 @ + 1 0 01423167 -tan v 2 3 @ ~ + 2 0 00511430 00103875 -tangle v 4 3 @ ~ + 4 0 02677797 01521124 01474034 01462928 -tangle_with v 1 1 @ 1 1 02636810 -tango v 1 2 @ + 1 0 01896007 -tank v 3 2 @ + 3 0 02282082 01171563 00185348 -tantalise v 1 3 @ ~ + 1 0 00850501 -tantalize v 1 3 @ ~ + 1 1 00850501 -tap v 12 4 @ ~ $ + 12 5 01403314 02312318 01247804 01164273 02188848 02360274 02185373 01901021 01895757 01854519 01613732 00782057 -tap_dance v 1 3 @ + ; 1 0 01710048 -tap_out v 1 1 @ 1 0 01880560 -tapdance v 1 1 @ 1 0 01895757 -tape v 3 4 @ ~ + ; 3 0 01331818 01003049 00998399 -tape_record v 1 3 @ + ; 1 0 00999270 -taper v 2 4 @ ~ ^ + 2 1 00152762 00392960 -taper_off v 2 1 @ 2 1 02683671 00305417 -tar v 1 2 @ + 1 0 01272457 -tar-and-feather v 1 2 @ * 1 0 01272582 -target v 1 3 @ ~ + 1 0 01150559 -tariff v 1 2 @ + 1 0 02307993 -tarmac v 1 2 @ + 1 0 01603418 -tarnish v 1 3 @ ~ + 1 1 01537409 -tarry v 2 3 @ ~ + 2 1 02639075 02011560 -tart_up v 2 1 @ 2 0 01678140 00044037 -task v 2 2 @ + 2 0 02392600 01166237 -taste v 6 4 @ ~ * + 6 3 02194286 02191546 01195299 02194495 02192992 00597061 -tat v 1 4 @ * + ; 1 1 01674544 -tattle v 2 4 @ ~ $ + 2 0 01036804 00937208 -tattoo v 1 3 @ * + 1 0 01681333 -taunt v 1 3 @ ~ + 1 1 00850501 -tauten v 2 1 @ 2 0 00420549 00420434 -tax v 4 4 @ ~ $ + 4 1 02307547 02308389 01166237 00844161 -taxi v 2 2 @ + 2 1 01948872 01949007 -teach v 2 4 @ ~ > + 2 2 00829107 00273734 -team v 1 2 @ + 1 0 01089285 -team_up v 1 1 @ 1 1 01089285 -tear v 5 5 @ ~ ^ $ + 5 4 01573515 01556346 02055267 01384275 00066977 -tear_apart v 1 1 @ 1 1 00846344 -tear_away v 1 1 @ 1 1 00178898 -tear_down v 1 2 @ ~ 1 1 01661804 -tear_into v 1 1 @ 1 0 01242537 -tear_off v 1 1 @ 1 0 00178898 -tear_up v 1 2 @ ~ 1 0 01573891 -teargas v 1 1 @ 1 0 01125558 -tease v 9 4 @ ~ * + 9 2 01803380 00850501 01803641 01572386 01531635 01463792 01356256 00852506 00040188 -tease_apart v 1 1 @ 1 0 01463792 -tee v 2 3 @ + ; 2 0 01499692 01355810 -tee_off v 1 3 @ + ; 1 0 01084170 -tee_up v 2 2 @ ; 2 0 01648684 01499692 -teem v 2 3 @ ~ ^ 2 1 02714974 02028366 -teem_in v 1 1 @ 1 0 02715923 -teeter v 1 1 @ 1 1 01881034 -teeter-totter v 1 1 @ 1 0 01992375 -teetertotter v 1 1 @ 1 0 01992375 -teethe v 1 2 @ + 1 0 00095990 -teetotal v 1 2 @ + 1 0 01196364 -telecast v 1 4 @ ~ + ; 1 0 00969506 -telecommunicate v 1 3 @ ~ + 1 0 00790703 -telefax v 1 1 @ 1 0 01007676 -telegraph v 1 3 @ + ; 1 1 01007222 -telepathise v 1 1 @ 1 0 00992804 -telepathize v 1 2 @ + 1 0 00992804 -telephone v 1 6 @ ~ * $ + ; 1 1 00789448 -teleport v 1 3 @ + ; 1 0 02104690 -telescope v 2 1 @ 2 1 01594782 00244923 -televise v 1 4 @ ~ + ; 1 1 00969506 -telex v 1 2 @ + 1 0 00790965 -tell v 8 6 @ ~ * ^ $ + 8 8 01009240 00952524 00953216 00746718 00720961 01019643 00954422 00650353 -tell_apart v 2 3 @ ~ * 2 1 02193194 00650353 -tell_off v 1 1 @ 1 0 00825648 -tell_on v 2 2 @ ~ 2 2 00841986 00138069 -temper v 5 2 @ + 5 0 00303056 00302875 00295254 00294884 00202934 -temporise v 1 2 @ + 1 0 00318484 -temporize v 1 2 @ + 1 0 00318484 -tempt v 6 4 @ ~ * + 6 4 00793785 00782527 01807529 00776523 01807770 00784184 -tenant v 1 2 @ + 1 0 02460483 -tend v 3 3 @ ~ + 3 3 02719399 02549847 02439047 -tender v 4 5 @ ~ * + ; 4 1 02296615 02298632 02296495 00514871 -tenderise v 1 2 @ + 1 0 00514871 -tenderize v 1 2 @ + 1 0 00514871 -tense v 4 5 ! @ ~ > + 4 0 01572728 00536304 00026153 00025203 -tense_up v 2 3 @ ~ > 2 0 00026153 00025203 -tent v 1 2 @ + 1 0 02653996 -tenure v 1 3 @ + ; 1 0 02397460 -tergiversate v 2 2 @ + 2 0 00835506 00757856 -term v 1 2 @ + 1 1 01029642 -terminate v 4 4 @ ~ > + 4 2 00352826 02609764 02735418 02402825 -terrace v 2 3 @ + ; 2 0 02226380 00141749 -terrasse v 1 2 @ ; 1 0 02226380 -terrify v 1 3 @ ~ + 1 1 01780941 -territorialise v 3 2 @ + 3 0 02432975 00579952 00540624 -territorialize v 3 2 @ + 3 0 02432975 00579952 00540624 -terrorise v 2 3 @ ~ + 2 0 02506361 01780941 -terrorize v 2 3 @ ~ + 2 1 02506361 01780941 -tessellate v 2 2 @ + 2 0 02660014 01338878 -test v 7 4 @ ~ $ + 7 3 02531625 02533109 00786458 02745713 01112584 00920778 00669970 -test_drive v 1 3 @ + ; 1 0 01931375 -test_fly v 1 2 @ ; 1 0 01942137 -testify v 2 4 @ ~ + ; 2 2 01014821 01015244 -tether v 1 2 @ + 1 1 01290009 -thank v 1 2 @ ~ 1 1 00892315 -thatch v 1 2 @ + 1 0 01233838 -thaw v 1 3 @ ~ + 1 1 00376106 -theme v 1 1 @ 1 0 02363597 -theologise v 2 2 @ + 2 0 01034118 00631398 -theologize v 2 2 @ + 2 0 01034118 00631398 -theorise v 1 3 @ ~ + 1 0 00633443 -theorize v 3 4 @ ~ $ + 3 1 00633443 00633094 00632931 -thermostat v 1 2 @ + 1 0 02511424 -thicken v 3 5 ! @ > $ + 3 2 00431327 00431117 00431610 -thieve v 1 2 @ + 1 0 02322230 -thin v 4 5 ! @ ~ > + 4 1 00430999 00430625 00226071 00045817 -thin_out v 3 2 @ ~ 3 1 00430370 00430494 00226071 -think v 13 5 @ ~ ^ $ + 13 7 00689344 00631737 00628491 00607780 01637166 00723056 00708538 00739340 00739082 00689809 00629738 00608808 00561887 -think_about v 2 2 @ ~ 2 2 00734348 00711715 -think_back v 1 1 ~ 1 1 00611256 -think_of v 6 2 @ ~ 6 5 00609683 00711715 00689950 00730052 01634142 00723222 -think_out v 1 1 @ 1 1 00629889 -think_over v 1 2 @ ~ 1 1 00630380 -think_the_world_of v 1 1 @ 1 1 00694508 -think_twice v 1 1 @ 1 1 01066292 -think_up v 1 2 @ ~ 1 1 01634142 -thirst v 2 2 @ + 2 0 02122060 01188485 -thoriate v 1 3 @ + ; 1 0 00497391 -thrash v 7 5 @ ~ $ + ; 7 2 01416193 01890792 01897885 01880390 01838860 01416364 01412912 -thrash_about v 1 2 @ ~ 1 1 01890792 -thrash_out v 1 1 @ 1 1 01064151 -thread v 5 4 @ ~ $ + 5 2 01882814 01521912 01359917 01359803 01359432 -threaten v 3 2 @ ~ 3 3 02697120 00871405 00871781 -thresh v 4 5 @ ~ $ + ; 4 1 01890792 02093920 01416364 01416193 -thresh_about v 1 2 @ ~ 1 0 01890792 -thrill v 4 2 @ + 4 2 02117333 01796346 01888946 01812324 -thrive v 2 2 @ ~ 2 2 00310386 02342800 -throb v 3 4 @ ~ $ + 3 2 02122665 01879251 01888946 -thrombose v 1 1 @ 1 0 00521748 -throne v 2 2 @ + 2 0 02564546 02391193 -throng v 1 2 @ + 1 1 02064131 -throttle v 3 4 @ ~ * + 3 2 00233335 01570935 00173159 -throw v 15 4 @ ~ $ + 15 11 01508368 02097204 01513430 01499265 01060317 01510173 01632897 02097341 01791232 01067664 01733477 01663443 01527754 01437011 00621734 -throw_a_fit v 1 1 @ 1 0 01795428 -throw_away v 2 2 @ ~ 2 1 02222318 01513430 -throw_back v 1 1 @ 1 1 01513145 -throw_cold_water_on v 1 1 @ 1 0 01819772 -throw_in v 3 1 @ 3 3 02356974 01083044 00914769 -throw_in_the_towel v 1 0 1 1 01083044 -throw_off v 2 2 @ ~ 2 1 01513430 02073545 -throw_out v 5 2 @ ~ 5 5 02501738 02222318 02401809 00875806 00801626 -throw_out_of_kilter v 1 1 @ 1 0 00276601 -throw_overboard v 2 2 @ ~ 2 0 02303331 01509824 -throw_together v 2 2 @ ~ 2 0 01739675 01472807 -throw_up v 1 1 @ 1 1 00076400 -thrum v 3 3 @ $ + 3 0 02187041 02180362 02174830 -thrust v 8 6 @ ~ ^ $ + ; 8 5 01899262 02094569 02062212 00747418 01441510 02714057 02713852 01499265 -thrust_ahead v 1 1 @ 1 0 01996574 -thrust_out v 1 1 @ 1 1 01873157 -thud v 3 2 @ + 3 2 02184610 01238204 02184797 -thumb v 3 2 @ + 3 1 01956955 02153023 01209953 -thumbtack v 1 2 @ + 1 0 01357656 -thump v 3 4 @ ~ $ + 3 3 01880113 02184610 01414626 -thump_out v 1 1 @ 1 0 01880560 -thunder v 4 3 @ * + 4 2 02088792 00915605 02770535 01046587 -thurify v 1 2 @ + 1 0 02126686 -thwack v 1 2 @ + 1 0 01414916 -thwart v 1 3 @ ~ + 1 1 02558172 -tick v 4 4 @ ~ $ + 4 2 02185664 02175578 01331689 00662182 -tick_off v 1 3 @ ~ $ 1 0 00662182 -tick_over v 1 0 1 0 01526483 -ticket v 2 3 @ ~ + 2 0 02498716 02329413 -tickle v 3 2 @ + 3 0 02120140 01796346 01431987 -tickle_pink v 1 1 @ 1 0 01812324 -ticktack v 1 1 @ 1 0 02175578 -ticktock v 1 2 @ + 1 0 02175578 -tide v 3 5 ! @ > ^ + 3 0 01903756 01874424 01874320 -tide_over v 1 1 @ 1 0 02623346 -tidy v 1 2 @ ~ 1 0 00275843 -tidy_up v 1 2 @ ~ 1 1 00275843 -tie v 9 7 ! @ ~ * ^ $ + 9 5 01285440 01115190 00234217 01354673 00141632 02538086 02489456 01658444 01355411 -tie-dye v 1 1 @ 1 0 00288391 -tie_down v 2 3 @ ~ * 2 0 01286913 00885768 -tie_in v 2 2 @ ~ 2 1 02736106 00713167 -tie_up v 5 5 @ ~ * + ; 5 1 01286913 02271923 01477014 01305542 01286038 -tighten v 4 3 @ ~ + 4 3 00420132 00419950 00418765 00233203 -tighten_one's_belt v 1 1 @ 1 0 02268704 -tighten_up v 1 1 @ 1 1 00418765 -tile v 1 3 @ ~ + 1 0 01338663 -till v 1 5 @ ~ * + ; 1 0 01740608 -tiller v 1 2 @ + 1 0 00095595 -tilt v 4 3 @ ~ + 4 2 02038357 01884577 01884974 01122906 -time v 5 3 @ ~ + 5 3 00490968 00678547 00702226 00297906 00296973 -tin v 3 3 @ + ; 3 0 01395382 00213794 00213034 -tinct v 1 2 @ ~ 1 0 00286928 -tincture v 2 2 @ + 2 0 00498299 00287560 -ting v 2 2 @ + 2 0 02180262 02136019 -tinge v 2 3 @ ~ + 2 0 00836926 00286928 -tingle v 1 2 @ + 1 1 02122983 -tink v 1 1 @ 1 0 02186506 -tinker v 3 3 @ ~ + 3 1 01473346 02411529 00261314 -tinkle v 1 2 @ + 1 1 02186506 -tinsel v 3 2 @ + 3 0 02325405 01677989 01519446 -tint v 1 3 @ ~ + 1 1 00286928 -tintinnabulate v 1 2 @ + 1 0 02181281 -tip v 9 4 @ ~ ^ + 9 2 02039544 00511178 02202133 02097047 02038357 01924023 01247804 00873469 00176021 -tip_off v 1 2 @ + 1 0 00873469 -tip_over v 2 4 @ ~ > $ 2 0 01909978 01909397 -tipple v 1 2 @ + 1 0 01172114 -tippytoe v 1 1 @ 1 0 01924023 -tiptoe v 1 2 @ + 1 1 01924023 -tire v 4 5 ! @ ~ > $ 4 2 00076114 00075021 02280869 01821884 -tire_out v 1 3 @ ~ > 1 1 00075021 -tissue v 1 3 @ ~ ; 1 0 01673891 -tithe v 4 3 @ $ + 4 0 02307008 02306869 02252755 02252542 -titillate v 2 3 @ * + 2 0 02120140 01816219 -titivate v 1 2 @ + 1 0 00293977 -title v 2 3 @ ~ + 2 1 01029500 01028466 -titrate v 1 2 @ + 1 0 00491910 -titter v 1 2 @ + 1 1 00030142 -tittivate v 1 2 @ + 1 0 00293977 -tittle-tattle v 1 3 @ ~ + 1 0 01036804 -tittup v 1 1 @ 1 0 01916634 -toady v 1 3 @ ~ + 1 0 00880978 -toast v 2 5 @ ~ * + ; 2 2 00322151 01175467 -toboggan v 1 3 @ + ; 1 0 01940034 -toddle v 1 2 @ + 1 0 01918803 -toe v 5 3 @ + ; 5 0 01906525 01516865 01404138 01402305 01207044 -toe_the_line v 1 1 @ 1 1 02542706 -toenail v 1 1 @ 1 0 01516865 -tog v 1 3 @ ~ $ 1 0 00047945 -tog_out v 1 3 @ ~ $ 1 0 00044149 -tog_up v 1 3 @ ~ $ 1 0 00044149 -toggle v 3 2 @ + 3 0 02357561 01608004 01475075 -toil v 1 2 @ + 1 1 02419773 -toilet-train v 1 2 @ + 1 0 00604449 -tolerate v 4 5 @ ~ $ + ; 4 1 00668099 02457585 02109404 00802946 -toll v 2 2 @ + 2 1 02181973 02306728 -tomahawk v 2 2 @ + 2 0 01554519 01326424 -tone v 5 2 @ + 5 0 01066775 00982293 00290132 00289974 00101277 -tone_down v 2 1 @ 2 0 02191311 00933566 -tone_up v 1 1 @ 1 0 00101277 -tongue v 2 4 @ ~ + ; 2 0 01734300 01432353 -tongue-tie v 1 1 @ 1 0 02313542 -tonsure v 1 2 @ + 1 0 00037779 -tool v 4 4 @ $ + ; 4 2 02100341 01956708 02338003 01669547 -tool_around v 1 3 @ $ ; 1 1 01956708 -toot v 1 3 @ ~ + 1 0 02183175 -tootle v 1 2 @ + 1 0 02183442 -top v 10 4 @ ~ * + 10 2 02669081 02081178 02691722 02687385 02360497 02021376 01406897 01321509 00485891 00484712 -top_off v 2 1 @ 2 0 00484712 00453294 -top_out v 3 4 ! @ ~ * 3 0 02382742 02360497 02008066 -topdress v 1 1 @ 1 0 00503058 -tope v 1 3 @ $ + 1 0 01172275 -topicalize v 1 3 @ + ; 1 0 01013856 -topple v 2 2 @ ~ 2 1 01976488 02097047 -torch v 1 2 @ + 1 0 00379280 -torment v 3 3 @ ~ + 3 1 01802689 01803003 00071178 -torpedo v 1 2 @ + 1 0 01137983 -torture v 2 3 @ ~ + 2 2 01802689 00071178 -toss v 6 4 @ ~ * + 6 6 01512625 01893079 01514525 01890792 02222318 01418536 -toss_away v 1 2 @ ~ 1 1 02222318 -toss_back v 1 1 @ 1 1 01513145 -toss_in v 1 1 @ 1 0 01027361 -toss_off v 2 2 @ ; 2 0 01700655 01202374 -toss_out v 1 2 @ ~ 1 0 02222318 -tot v 1 2 @ $ 1 0 00949288 -tot_up v 1 2 @ $ 1 1 00949288 -total v 3 4 @ ~ $ + 3 2 02645007 00949288 00259382 -totalise v 1 1 @ 1 0 00193790 -totalize v 1 1 @ 1 0 00193790 -tote v 1 2 @ + 1 0 01454246 -tote_up v 1 2 @ $ 1 0 00949288 -totter v 3 2 @ + 3 1 01919042 01918803 01881034 -touch v 15 6 @ ~ * ^ $ + 15 13 01206218 02127358 01770802 02676054 01205696 00137313 02599325 01206849 02685665 02672187 01207527 01026728 00590642 01172701 00286928 -touch-type v 1 2 @ + 1 0 01005782 -touch_a_chord v 1 1 @ 1 0 01759926 -touch_base v 1 2 @ $ 1 0 02389346 -touch_down v 1 3 @ + ; 1 1 01979702 -touch_off v 1 2 @ > 1 1 01643657 -touch_on v 4 3 @ ~ $ 4 2 01024763 02676054 00260648 00137313 -touch_up v 1 2 @ ; 1 1 00230562 -toughen v 1 2 @ ~ 1 0 00303309 -tour v 1 3 @ ~ + 1 1 01845229 -tourney v 1 2 @ + 1 0 01123159 -tousle v 1 1 @ 1 0 01474034 -tout v 2 3 @ ~ + 2 0 00971460 00883226 -tow v 1 3 @ ~ + 1 0 01454431 -towel v 1 2 @ + 1 0 01394335 -tower v 1 2 @ + 1 1 02696503 -toy v 3 5 @ ~ ^ $ + 3 0 02437465 01586278 00013328 -toy_with v 1 1 @ 1 1 00711715 -trace v 8 4 @ ~ $ + 8 4 00729109 01582645 02004352 02003601 02156063 01995949 01694376 00626130 -track v 5 3 @ ~ + 5 3 02078453 02197629 02001858 01912159 01618468 -track_down v 1 3 @ ~ $ 1 1 01143838 -trade v 5 6 @ ~ * $ + ; 5 4 02260362 02260085 02728784 02259005 02244956 -trade_in v 1 4 @ ~ + ; 1 1 02260085 -trademark v 2 1 @ 2 0 01588876 01002161 -traduce v 1 2 @ + 1 0 00848169 -traffic v 2 3 @ + ; 2 0 02261123 02260770 -trail v 5 4 @ ~ $ + 5 2 02058756 02001858 02059916 01542842 01453969 -train v 11 4 @ ~ $ + 11 8 00603298 00602805 02553697 02387034 02388403 01151110 00833702 00100044 02509552 01936537 01453969 -traipse v 1 1 @ 1 0 01910873 -tram v 1 2 @ + 1 0 01945183 -trammel v 2 4 @ ~ + ; 2 0 01480770 00233335 -tramp v 4 5 @ ~ $ + ; 4 1 01920698 01921204 01881957 01881180 -tramp_down v 1 1 @ 1 0 01867504 -trample v 3 3 @ ~ + 3 2 01929467 00070439 01867504 -trance v 1 3 @ ~ + 1 0 01806505 -tranquilize v 2 3 @ ~ + 2 0 01764800 00022316 -tranquillise v 2 3 @ ~ + 2 0 01764800 00022316 -tranquillize v 2 3 @ ~ + 2 0 01764800 00022316 -transact v 1 4 @ ~ + ; 1 1 02245765 -transaminate v 2 4 @ $ + ; 2 0 00580345 00580142 -transcend v 2 3 @ ~ + 2 2 02669477 02669081 -transcribe v 5 4 @ ~ + ; 5 2 00995103 00994682 01708113 00994895 00556389 -transduce v 1 2 @ + 1 0 00162549 -transect v 1 1 @ 1 0 01550949 -transfer v 9 6 @ ~ * > $ + 9 7 02393086 02232190 01855155 02012344 02220461 02088241 01435380 02086458 00555240 -transfigure v 2 2 @ + 2 0 00580512 00384055 -transfix v 2 2 @ ~ 2 1 01821132 01444326 -transform v 7 4 @ ~ + ; 7 3 00544011 00382635 00381601 00383542 00382256 00382010 00381850 -transfuse v 4 4 @ ~ + ; 4 0 02325042 01853440 00087290 00081367 -transgress v 4 3 @ ~ + 4 1 02566528 02689529 02565687 02019574 -transistorise v 1 1 @ 1 0 02340736 -transistorize v 1 2 @ + 1 0 02340736 -transit v 4 4 @ ~ $ + 4 0 01915365 01867072 01866872 01853696 -transition v 2 3 @ > + 2 0 00550823 00550546 -transitivise v 1 1 @ 1 0 00420716 -transitivize v 1 3 ! @ + 1 0 00420716 -translate v 10 5 @ ~ $ + ; 10 5 00959827 00383542 00593852 01436290 00522441 02753100 02728142 02103925 00961947 00919608 -transliterate v 1 3 @ ~ + 1 0 00994682 -translocate v 2 2 @ + 2 0 02362323 02362130 -transmigrate v 2 5 @ ~ $ + ; 2 0 02698726 01856626 -transmit v 4 6 @ ~ > $ + ; 4 4 02231661 02079933 00973056 01435380 -transmogrify v 1 2 @ + 1 0 00384055 -transmute v 3 4 @ ~ + ; 3 2 00381601 00382635 00382493 -transpirate v 1 1 @ 1 1 02066757 -transpire v 5 2 @ + 5 0 02066757 00367563 00343180 00341040 00068740 -transplant v 4 4 @ * $ + 4 1 01855155 02753255 01530431 00555240 -transport v 5 4 @ ~ $ + 5 3 01953810 01449974 01817314 01950798 01435380 -transpose v 7 4 @ ~ + ; 7 3 00380424 00555240 00121926 01867303 01706631 00553407 00380872 -transship v 1 2 @ + 1 0 02013163 -transubstantiate v 2 4 @ ~ + ; 2 0 00383093 00382635 -transude v 1 3 @ ~ + 1 0 00067999 -trap v 4 4 @ ~ + ; 4 3 02496185 01480770 01606931 01207149 -trash v 2 2 @ + 2 0 02223238 00846344 -traumatise v 1 2 @ + 1 0 00090186 -traumatize v 1 2 @ + 1 0 00090186 -travail v 1 2 @ + 1 0 02419773 -travel v 6 6 ! @ ~ > $ + 6 5 01835496 01845720 01843055 01846916 01841079 02102002 -travel_along v 1 2 @ ~ 1 1 01991931 -travel_by v 1 2 @ ~ 1 0 02051694 -travel_purposefully v 1 1 @ 1 0 01875144 -travel_rapidly v 1 2 @ ~ 1 0 02055649 -travel_to v 1 2 @ ~ 1 1 01843689 -traverse v 3 4 @ ~ + ; 3 3 01912159 02685390 01068380 -travesty v 1 2 @ + 1 0 01724083 -trawl v 1 2 @ + 1 0 01143713 -tread v 6 3 @ ~ + 6 4 02091410 01929467 01594664 01219867 02309513 01427907 -tread_down v 1 1 @ 1 0 01867504 -tread_on v 1 1 @ 1 1 02092039 -treadle v 2 2 @ + 2 0 01929688 01225461 -treasure v 2 3 @ ~ + 2 1 02256109 01776214 -treat v 8 4 @ ~ $ + 8 5 02514187 00515154 00078760 01033527 02261642 01176232 00762720 00651145 -treble v 2 2 @ + 2 0 01051271 00246746 -tree v 4 2 @ + 4 0 01934205 01616293 01145163 00319111 -trek v 2 2 @ + 2 0 01847392 01847220 -trellis v 1 2 @ + 1 0 02509705 -tremble v 1 3 @ ~ + 1 1 01888511 -tremor v 1 2 @ + 1 0 01888784 -trench v 6 2 @ + 6 0 02569790 01606423 01556037 01497458 01311896 01311722 -trend v 1 3 @ ~ + 1 0 02033295 -trepan v 1 3 @ + ; 1 0 01443871 -trephine v 1 2 @ + 1 0 00062067 -trespass v 5 4 @ ~ ^ + 5 1 02571251 02570062 02567422 02565687 02019574 -triangulate v 3 2 @ + 3 0 02468618 00647629 00646912 -tribulate v 1 2 @ + 1 0 01797989 -trice v 2 1 @ 2 0 01455639 01455506 -trice_up v 2 1 @ 2 0 01455639 01455506 -trick v 1 3 @ ~ + 1 1 02575723 -trick_out v 1 3 @ ~ $ 1 1 00044149 -trick_up v 1 3 @ ~ $ 1 0 00044149 -trickle v 1 3 @ ~ + 1 1 02070874 -trifle v 3 3 @ $ + 3 0 02708123 02592895 00711932 -trifle_away v 1 1 @ 1 0 02266422 -trifurcate v 1 2 @ + 1 0 00330003 -trigger v 2 4 @ * > + 2 2 01643657 01135371 -trigger_off v 1 2 @ > 1 0 01643657 -trill v 2 2 @ + 2 0 01055266 01050896 -trim v 9 5 @ ~ $ + ; 9 3 01262564 01679806 00429060 02752107 02751952 01679433 01321002 01248782 00297193 -trim_back v 1 3 @ ~ $ 1 0 00429060 -trim_down v 1 3 @ ~ $ 1 1 00429060 -trip v 5 5 @ ~ * > + 5 1 01900408 01900760 01843055 01643657 01200934 -trip_out v 1 0 1 0 01200934 -trip_the_light_fantastic v 1 4 @ ~ $ ; 1 0 01708676 -trip_the_light_fantastic_toe v 1 4 @ ~ $ ; 1 0 01708676 -trip_up v 3 3 @ > + 3 1 00599835 01900760 00618057 -triple v 2 3 @ + ; 2 2 00246746 01409642 -triple-space v 1 2 @ + 1 0 01005654 -triple-tongue v 1 2 @ ; 1 0 01734131 -triplicate v 1 2 @ + 1 0 01735799 -trisect v 1 1 @ 1 0 01551092 -triumph v 4 3 @ ~ + 4 1 01101734 01823370 00883635 00857923 -trivialise v 1 1 @ 1 0 00840413 -trivialize v 1 2 @ + 1 0 00840413 -troat v 1 1 @ 1 0 00985923 -troll v 7 3 @ + ; 7 0 02044503 01887454 01731577 01141763 01049373 00827601 00745383 -troop v 2 2 @ + 2 0 01924505 01919898 -trot v 3 3 @ + ; 3 2 01901447 01960779 01901660 -trot_out v 1 1 @ 1 1 02143906 -trouble v 5 3 @ ~ + 5 5 01770501 02507736 01764171 02507464 00070816 -trouble-shoot v 1 1 @ 1 0 00262549 -trouble_oneself v 1 1 @ 1 1 02507464 -troubleshoot v 1 1 @ 1 0 00262549 -trounce v 3 5 @ ~ * $ + 3 0 01411085 01101913 00824767 -trowel v 1 2 @ + 1 0 01313113 -truck v 1 2 @ + 1 1 01954341 -truckle v 2 3 @ ~ + 2 0 02703432 00880978 -trudge v 1 3 @ ~ + 1 1 01921204 -true v 1 2 @ + 1 0 00465291 -true_up v 1 1 @ 1 0 00465291 -trump v 4 4 @ ~ + ; 4 0 02179154 01109259 01078235 00975202 -trump_out v 1 1 @ 1 0 00975202 -trump_up v 1 1 @ 1 1 01635056 -trumpet v 3 4 @ * + ; 3 1 00977871 01733829 00857784 -truncate v 3 4 @ * + ; 3 0 02258487 00740290 00317241 -trundle v 1 1 @ 1 1 01868139 -truss v 3 5 @ ~ * + ; 3 0 01287797 01286913 01219397 -trust v 6 5 ! @ ~ + ; 6 5 00688377 02481819 00721098 01826723 02349212 02265726 -try v 9 5 @ ~ ^ + ; 9 4 02530167 02531625 02501278 01195299 02500902 01798782 01798452 00444975 00047317 -try_for v 1 1 @ 1 1 01072807 -try_on v 1 2 @ + 1 1 00047317 -try_out v 4 5 @ ~ $ + ; 4 1 02531625 02532886 01718535 01195299 -tsk v 1 1 @ 1 0 00951911 -tube v 4 2 @ + 4 0 02329292 02079525 01840929 01580928 -tuck v 3 2 @ + 3 1 01389776 01390327 01330822 -tuck_away v 1 2 @ * 1 0 01173208 -tuck_in v 1 2 @ * 1 0 01173208 -tucker v 1 2 @ ~ 1 0 00075421 -tucker_out v 1 2 @ ~ 1 0 00075421 -tug v 7 4 @ ~ $ + 7 1 01452918 02406916 01454636 01454246 01453256 01453109 01091298 -tumble v 11 3 @ ~ + 11 5 01976488 02097047 01867997 02047857 02041877 01473020 00590366 00433069 00211642 00204281 00100235 -tumble_dry v 1 1 @ 1 0 00215491 -tumefy v 2 3 @ ~ + 2 0 00257837 00256507 -tumesce v 1 3 @ ~ + 1 0 00256507 -tump_over v 2 4 @ ~ > $ 2 0 01909978 01909397 -tune v 2 4 ! @ ~ + 2 1 00295966 00295346 -tune_in v 1 1 @ 1 1 02171514 -tune_up v 2 3 @ ~ + 2 0 00295966 00295346 -tunnel v 2 2 @ + 2 2 02042067 01444037 -turf v 1 1 @ 1 0 01234500 -turf_out v 1 2 @ ~ 1 0 01468576 -turn v 26 7 @ ~ * ^ $ + ; 26 15 01907258 00146138 02626604 02089984 00138508 01909812 00125841 01436518 02096167 02089420 01952208 01741864 01584450 00282523 00091124 02626934 02562425 02211948 02090435 01951937 01280014 01225215 01151889 00794640 00458471 00248387 -turn_a_blind_eye v 1 1 @ 1 0 00801977 -turn_a_loss v 1 0 1 0 02288828 -turn_a_nice_dime v 1 1 @ 1 0 02279113 -turn_a_nice_dollar v 1 1 @ 1 0 02279113 -turn_a_nice_penny v 1 1 @ 1 0 02279113 -turn_a_profit v 1 2 @ ~ 1 0 02278830 -turn_a_trick v 1 1 @ 1 0 02464481 -turn_around v 3 2 @ + 3 1 01878949 00206797 00205598 -turn_away v 4 2 @ $ 4 4 01908809 02034300 02502916 02034511 -turn_back v 5 3 @ ~ $ 5 4 02004528 00387310 02002720 01131473 00386715 -turn_down v 5 4 @ ~ $ + 5 1 02237338 02502916 00796976 00572940 00267855 -turn_in v 4 3 ! @ ~ 4 3 02017775 02293321 01649809 00017865 -turn_off v 3 3 @ ~ + 3 3 01510576 01908658 01808626 -turn_on v 7 3 @ ~ + 7 4 01510399 02711987 02141414 00548479 01762528 01762283 01200934 -turn_on_a_dime v 1 2 @ ; 1 0 01861927 -turn_one's_stomach v 1 1 @ 1 0 02195191 -turn_out v 12 4 ! @ ~ + 12 7 02633881 02634133 01623792 02610845 00425522 01652139 01468576 02429475 02340360 02045415 01510576 00018158 -turn_over v 9 6 @ ~ > $ + ; 9 4 02230772 01909978 01866192 01309701 02261256 02089420 01909397 01222958 00813044 -turn_tail v 1 2 @ ~ 1 0 02075049 -turn_the_tables v 1 1 @ 1 1 00139160 -turn_the_tide v 1 1 @ 1 0 00139160 -turn_thumbs_down v 1 1 @ 1 0 02462030 -turn_to v 2 2 @ ~ 2 2 00897564 00549771 -turn_turtle v 1 1 @ 1 0 01893313 -turn_up v 5 4 @ ~ $ + 5 3 00423702 01277974 02286204 02633881 01313923 -turn_up_the_heat v 1 1 @ 1 0 02505141 -turn_up_the_pressure v 1 1 @ 1 0 02505141 -turtle v 2 2 @ + 2 0 01893313 01142363 -tusk v 2 2 @ + 2 0 01445027 00198213 -tussle v 2 2 @ + 2 0 01504480 01473886 -tut v 1 1 @ 1 0 00951911 -tut-tut v 1 1 @ 1 0 00951911 -tutor v 2 2 @ + 2 1 00830188 02592667 -twaddle v 1 3 @ ~ + 1 0 01036804 -twang v 5 2 @ + 5 0 02173967 02173838 02122895 01452783 00745078 -tweak v 3 4 @ ~ $ + 3 0 01592669 01592456 00302763 -tweedle v 3 2 @ ; 3 0 01730663 01727230 00784080 -tweet v 2 3 @ ~ + 2 0 02177661 01456771 -tweeze v 1 2 @ + 1 1 01593011 -twiddle v 2 2 @ + 2 1 02048891 01224211 -twig v 2 2 @ + 2 1 00329654 00590366 -twill v 1 2 @ + 1 0 01674938 -twin v 4 4 @ ~ $ + 4 0 02659358 01292885 00246125 00057665 -twine v 4 5 ! @ ~ $ + 4 1 01517662 01522276 01518047 01223182 -twinge v 3 3 @ ~ + 3 0 02123424 02121845 01456771 -twinkle v 2 5 @ ~ $ + ; 2 1 02159890 02764765 -twirl v 2 2 @ + 2 2 02048891 02048051 -twirp v 1 1 @ 1 0 02177661 -twist v 10 4 ! @ ~ + 10 5 01868370 01280014 01222645 01223182 00143914 02738701 01895519 01349493 00932798 00091124 -twist_around v 1 1 @ 1 0 00932798 -twit v 1 3 @ ~ + 1 0 00850501 -twitch v 5 4 @ ~ $ + 5 2 00009631 01891817 01893601 01456771 01448778 -twitter v 1 2 @ + 1 0 01053623 -two-step v 1 2 @ + 1 0 01896995 -two-time v 1 1 @ 1 0 02576790 -type v 2 3 @ ~ + 2 2 01004692 00618682 -typecast v 2 2 @ ; 2 0 01711211 00618682 -typeset v 1 2 @ + 1 0 01744888 -typewrite v 1 3 @ ~ + 1 0 01004692 -typify v 2 3 @ ~ + 2 1 02699141 00836236 -tyrannise v 2 1 @ 2 0 02587239 01781757 -tyrannize v 2 2 @ + 2 0 02587239 01781757 -uglify v 1 2 ! @ 1 0 00293429 -ulcerate v 2 2 @ + 2 0 00537153 00019982 -ultracentrifuge v 1 2 @ + 1 0 02047500 -ululate v 1 3 @ ~ + 1 0 01046932 -umpire v 1 3 @ + ; 1 0 01085237 -unarm v 1 2 @ ~ 1 0 01088005 -unbalance v 2 3 ! @ + 2 0 02673630 01764586 -unbar v 1 3 ! @ * 1 0 01343079 -unbelt v 1 2 ! @ 1 0 01366199 -unbend v 6 3 ! @ ~ 6 0 02035781 01344537 01281069 00419685 00026385 00025985 -unbind v 1 2 ! @ 1 0 01304197 -unblock v 3 3 ! @ ; 3 0 01616460 01075612 00269682 -unbolt v 1 3 ! @ * 1 0 01348987 -unbosom v 1 1 @ 1 0 00936648 -unbox v 1 2 ! @ 1 0 01485393 -unbrace v 3 2 @ ~ 3 0 01284461 00419866 00225580 -unbraid v 1 2 ! @ 1 0 01519857 -unbridle v 1 2 ! @ 1 0 02366451 -unbuckle v 1 2 ! @ 1 0 01548447 -unburden v 2 3 ! @ ~ 2 0 02360171 01487927 -unbutton v 1 2 ! @ 1 0 01368001 -uncase v 1 3 @ ~ $ 1 0 00049900 -unchain v 2 2 ! @ 2 0 01288808 01288554 -unchurch v 1 2 @ $ 1 0 01030397 -unclasp v 1 2 ! @ 1 1 01222485 -unclip v 1 2 ! @ 1 0 01367760 -uncloak v 2 1 @ 2 0 00935631 00179227 -unclog v 1 2 ! @ 1 0 01479138 -unclothe v 3 3 @ ~ $ 3 0 02314946 01339903 00049900 -unclutter v 1 3 ! @ $ 1 0 00181664 -uncoil v 1 2 ! @ 1 0 01524199 -uncompress v 1 1 @ 1 0 01389607 -uncork v 2 2 ! @ 2 1 01475737 01423793 -uncouple v 1 2 ! @ 1 0 01297813 -uncover v 2 3 ! @ ~ 2 2 02143283 01339505 -uncrate v 1 2 ! @ 1 0 01486870 -uncross v 1 2 ! @ 1 0 01914792 -uncurl v 1 1 @ 1 1 02063486 -undeceive v 1 2 ! @ 1 0 00854788 -underachieve v 1 2 @ + 1 0 02562585 -underact v 1 3 ! @ ; 1 0 01751389 -underbid v 3 3 ! @ ; 3 0 02300866 02299924 02299687 -undercharge v 1 3 ! @ + 1 0 02319290 -undercoat v 1 2 @ + 1 0 01365355 -undercut v 5 3 @ * + 5 0 02351467 01554318 01554165 01403117 01257621 -underdevelop v 1 3 @ + ; 1 0 02139063 -underdress v 2 2 ! @ 2 0 00049483 00045346 -underestimate v 3 4 ! @ ~ + 3 3 00695761 00673766 00671335 -underexpose v 2 4 ! @ + ; 2 0 02114228 02113253 -undergird v 2 1 @ 2 0 02556729 00221718 -undergo v 1 2 @ ~ 1 0 02108377 -undergrow v 1 1 @ 1 0 00231976 -underlay v 3 3 @ + ; 3 0 01974916 01497292 01183424 -underlie v 2 1 @ 2 1 02664575 02693088 -underline v 2 2 @ + 2 1 01014609 01004235 -undermine v 2 2 @ ~ 2 1 02543607 01283033 -undernourish v 1 2 @ + 1 0 01179276 -underpay v 1 3 ! @ + 1 0 02250216 -underperform v 2 3 @ + ; 2 0 02562585 01715357 -underpin v 2 1 @ 2 1 01218918 02663340 -underplay v 2 2 @ ; 2 0 01751389 01139496 -underprice v 1 1 @ 1 0 02350878 -underproduce v 1 2 @ + 1 0 01622595 -underquote v 2 1 @ 2 0 02351616 01024066 -underrate v 1 3 @ ~ + 1 1 00671335 -underscore v 2 2 @ + 2 1 01014609 01004235 -undersell v 1 3 @ * + 1 0 02351467 -undershoot v 2 3 ! @ * 2 0 01980476 01152532 -undersign v 1 1 @ 1 0 00996919 -underspend v 2 2 ! @ 2 0 02267851 02266557 -understand v 5 4 @ ~ $ + 5 5 00588888 00591115 00593852 00593522 00594058 -understate v 1 4 ! @ ~ + 1 1 00841125 -understock v 1 2 ! @ 1 0 02323714 -understudy v 1 2 @ + 1 0 00604930 -undertake v 5 3 @ ~ + 5 4 01651293 02569630 00889555 00888786 02539686 -undervalue v 3 4 ! @ $ + 3 0 00695761 00694866 00315020 -underwrite v 2 4 @ ~ $ + 2 2 00889740 00891216 -undo v 5 3 @ ~ + 5 2 01519977 01619231 02559199 01284908 01284271 -undock v 2 2 ! @ 2 0 02085971 01306047 -undrape v 1 1 @ 1 0 01339812 -undress v 2 5 ! @ ~ $ + 2 1 00049900 00177243 -undulate v 4 4 @ ~ * + 4 1 02040054 02687251 01901783 00581355 -unearth v 2 2 @ ~ 2 1 02286550 02143539 -unfasten v 2 5 ! @ ~ > + 2 1 01344293 01344140 -unfit v 1 1 @ 1 0 00301338 -unfold v 4 5 ! @ ~ $ + 4 3 00293760 02144101 02054989 01579813 -unfreeze v 2 3 ! @ ~ 2 0 00376106 00269682 -unfrock v 1 1 @ 1 0 02476731 -unfurl v 1 2 ! @ 1 0 00435481 -unhallow v 1 1 @ 1 0 00867062 -unhand v 1 1 @ 1 0 01475217 -unharness v 1 4 ! @ ~ ; 1 0 01491886 -unhinge v 2 2 @ ~ 2 0 01764171 00179852 -unhitch v 1 3 ! @ ~ 1 1 01328340 -unhook v 1 2 ! @ 1 0 01366321 -unhorse v 1 2 @ ; 1 0 01958452 -unicycle v 1 2 @ + 1 0 01935846 -uniform v 1 2 @ + 1 0 02331786 -uniformise v 1 1 @ 1 0 00552458 -uniformize v 1 2 @ + 1 0 00552458 -unify v 5 4 ! @ ~ + 5 2 00367685 01462005 02603056 02469835 00243124 -unionise v 2 3 @ > + 2 0 02435867 02434238 -unionize v 2 3 @ > + 2 0 02435867 02434238 -unite v 6 4 ! @ ~ + 6 2 02469835 00367685 02631163 02622234 02603056 00243124 -unitise v 3 2 @ + 3 0 02468793 01385458 00368109 -unitize v 3 2 @ + 3 0 02468793 01385458 00368109 -universalise v 1 1 @ 1 0 01022740 -universalize v 1 2 @ + 1 1 01022740 -unknot v 1 3 ! @ * 1 0 01520844 -unlace v 1 2 @ ~ 1 1 01284461 -unlade v 1 1 @ 1 0 01488123 -unlash v 1 2 ! @ 1 1 01303954 -unlax v 1 3 @ ~ > 1 0 00025654 -unlearn v 2 1 @ 2 0 00598629 00598502 -unleash v 3 2 @ ~ 3 3 01475415 01475828 01475536 -unlive v 1 1 @ 1 0 02615300 -unload v 2 3 @ ~ + 2 1 01489465 01488123 -unlock v 3 2 ! @ 3 3 01348705 01511289 00219963 -unloose v 2 2 @ ~ 2 0 02421374 01285159 -unloosen v 2 2 @ ~ 2 0 02421374 01285159 -unmake v 1 2 ! ~ 1 0 01619231 -unman v 1 1 @ 1 0 01784025 -unmask v 2 3 ! @ + 2 1 00935631 01358573 -unmuzzle v 1 2 ! @ 1 0 02341086 -unnerve v 1 2 @ ~ 1 0 01783881 -unpack v 1 3 ! @ ~ 1 1 01485513 -unpick v 2 2 @ * 2 0 01520844 01329987 -unpin v 1 2 ! @ 1 0 01368474 -unplug v 1 2 ! @ 1 0 01421417 -unravel v 3 5 ! @ * $ + 3 1 01520844 01521367 00332672 -unreel v 1 1 @ 1 0 01523520 -unroll v 2 1 @ 2 0 01523654 00435481 -unsaddle v 1 2 ! @ 1 0 01492576 -unsanctify v 1 2 @ + 1 0 00580720 -unsay v 1 1 @ 1 0 00799076 -unscramble v 2 3 ! @ * 2 1 00537494 01520844 -unscrew v 2 3 ! @ * 2 2 01352528 01352680 -unseal v 1 2 ! @ 1 0 01353873 -unseat v 2 1 @ 2 0 02391650 01544445 -unsettle v 1 2 @ ~ 1 0 01783881 -unsex v 3 2 @ ~ 3 0 02315175 00537632 00061595 -unsheathe v 1 2 ! @ 1 1 01581485 -unsnarl v 1 4 ! @ ~ + 1 0 01463520 -unsolder v 1 1 @ 1 1 01299667 -unspell v 1 2 ! @ 1 0 01064696 -unstaple v 1 2 ! @ 1 0 01367456 -unstrain v 1 4 ! @ ~ > 1 0 00025654 -unstrap v 1 2 ! @ 1 0 01289871 -unstring v 1 2 ! @ 1 0 01359303 -unstuff v 1 3 ! @ ~ 1 0 01479682 -unsubstantialise v 1 2 @ ~ 1 0 00547802 -unsubstantialize v 1 3 @ ~ + 1 0 00547802 -untangle v 2 3 @ * + 2 0 01585759 01520844 -unteach v 2 2 @ > 2 1 00830348 00830498 -unthaw v 1 2 @ ~ 1 1 00376106 -untie v 2 4 ! @ ~ + 2 1 01284461 01284908 -untune v 2 3 ! @ ~ 2 0 01790020 00295563 -untwine v 1 2 ! @ 1 0 01518203 -untwist v 1 2 ! @ 1 0 01223508 -unveil v 3 4 ! @ ~ + 3 1 01483478 02143283 01483655 -unweave v 1 2 ! @ 1 0 01519321 -unwind v 4 4 ! @ ~ > 4 1 01523654 01523823 00026385 00025654 -unwire v 1 2 ! @ 1 1 01599225 -unwrap v 2 5 ! @ ~ > $ 2 0 01284271 00933821 -unyoke v 1 4 ! @ ~ ; 1 0 01491360 -unzip v 1 2 ! @ 1 0 01342224 -up v 1 1 @ 1 1 00154966 -upbraid v 1 2 @ + 1 0 00825975 -upchuck v 1 1 @ 1 0 00076400 -update v 3 3 @ + ; 3 2 00170695 00833546 00170857 -upend v 2 2 @ + 2 0 01909679 01517515 -upgrade v 5 5 ! @ ~ $ + 5 2 00660851 00207184 02397637 00584220 00583991 -upheave v 1 2 @ + 1 0 01456088 -uphold v 3 4 @ ~ $ + 3 3 02679899 00896017 00896497 -upholster v 1 3 @ + ; 1 1 02341816 -uplift v 3 4 @ ~ > + 3 1 01811736 01969601 01873666 -upload v 1 2 ! @ 1 0 02233898 -upraise v 1 2 @ $ 1 1 00098517 -uprise v 8 4 @ ~ $ ; 8 0 02624263 01990562 01983597 01983264 01970348 01968569 00098770 00018158 -uproot v 3 3 @ ~ + 3 1 02538553 01662118 01566916 -upset v 6 5 @ ~ > $ + 6 3 00521296 01790020 01770501 01909978 01256374 01109087 -upstage v 3 2 @ + 3 0 02515727 02086100 01107024 -urbanise v 2 3 @ $ + 2 0 00500055 00499812 -urbanize v 2 3 @ $ + 2 1 00499812 00500055 -urge v 3 3 @ ~ + 3 3 00765649 00875141 00858781 -urge_on v 2 2 @ ~ 2 0 00858781 00765649 -urinate v 2 4 @ ~ $ + 2 0 00072586 00072012 -urticate v 2 3 @ $ + 2 0 02120912 02120715 -use v 6 7 @ ~ * > ^ $ + 6 3 01158872 01165043 01158572 02600490 02561332 02370131 -use_up v 2 3 @ ~ $ 2 1 01157517 02267989 -usher v 1 3 @ ~ + 1 1 02000547 -usher_in v 1 1 @ 1 1 00349592 -usher_out v 1 1 @ 1 0 00900728 -usurp v 2 3 @ ~ + 2 1 02274482 02406287 -utilise v 1 4 ~ > $ + 1 0 01158872 -utilize v 2 5 @ ~ > $ + 2 1 01158872 00161872 -utter v 4 4 @ ~ $ + 4 3 00940384 00983824 00941990 02043851 -vacate v 3 3 @ ~ + 3 2 02367032 02076676 00799798 -vacation v 1 3 @ ~ + 1 1 02708707 -vaccinate v 1 3 @ + ; 1 0 00086835 -vacillate v 2 4 @ ~ $ + 2 0 02706046 01876907 -vacuum v 1 2 @ + 1 1 01244853 -vacuum-clean v 1 1 @ 1 0 01244853 -vagabond v 1 4 @ ~ $ + 1 0 01881180 -valet v 1 2 @ + 1 0 02541138 -validate v 4 4 ! @ ~ + 4 2 02478701 00667224 01012561 00448290 -valuate v 1 4 @ ~ $ + 1 0 00681429 -value v 5 4 @ ~ $ + 5 3 00695226 02256109 00694068 00681429 00660971 -vamoose v 1 1 @ 1 0 02010698 -vamp v 4 2 @ + 4 0 01739545 01590389 01038538 00533527 -vamp_up v 2 1 @ 2 0 01739545 01590389 -vandalise v 1 3 @ ~ + 1 0 01520454 -vandalize v 1 3 @ ~ + 1 0 01520454 -vanish v 5 4 @ ~ $ + 5 2 00426958 02156546 02073065 00427397 00153061 -vanquish v 1 5 @ ~ * $ + 1 1 01101913 -vaporise v 4 4 @ ~ $ + 4 0 00575970 00575720 00442267 00366858 -vaporize v 4 4 @ ~ $ + 4 0 01325288 00442267 00366858 00153061 -variegate v 2 3 @ ~ + 2 0 00581509 00436879 -varnish v 1 3 @ ~ + 1 0 01269008 -vary v 4 3 @ ~ + 4 4 00123170 02661252 02662297 00436879 -vascularise v 2 2 @ $ 2 0 00581671 00122097 -vascularize v 2 3 @ $ + 2 0 00581671 00122097 -vasectomise v 1 1 @ 1 0 00061401 -vasectomize v 1 2 @ + 1 0 00061401 -vaticinate v 2 3 @ ~ + 2 0 00926702 00918312 -vault v 2 3 @ ~ + 2 0 01966168 01965806 -vaunt v 1 3 @ ~ + 1 0 00883226 -veer v 2 4 ! @ ~ + 2 1 02033295 00560764 -vege_out v 1 1 @ 1 0 00026734 -vegetate v 7 3 @ + ; 7 0 02615580 00232542 00232388 00232225 00231288 00055709 00026734 -veil v 2 6 ! @ ~ * $ + 2 1 01483247 00313987 -vein v 1 1 @ 1 1 01696350 -velcro v 1 2 @ + 1 0 01343773 -vellicate v 2 2 @ + 2 0 02120140 00504019 -vend v 1 2 @ + 1 0 02302817 -veneer v 1 2 @ + 1 0 01269224 -venerate v 1 3 @ ~ + 1 1 01778568 -venesect v 1 3 @ + ; 1 0 00084107 -vent v 2 2 @ + 2 1 00944548 00488770 -ventilate v 5 2 @ + 5 1 00488770 02112345 02042672 00944548 00581891 -venture v 3 3 @ ~ + 3 2 02373336 00916909 02545272 -verbalise v 4 5 @ ~ $ + ; 4 0 00943281 00941990 00940384 00116203 -verbalize v 4 5 @ ~ $ + ; 4 0 00943281 00941990 00940384 00116203 -verbify v 1 2 @ + 1 0 00554729 -verdigris v 1 2 @ + 1 0 00285314 -verge v 1 2 @ + 1 0 02703790 -verify v 4 5 @ ~ $ + ; 4 2 00664483 02520997 01012395 01011031 -vermiculate v 1 2 @ + 1 0 01677387 -vermilion v 1 2 @ + 1 0 00535148 -verse v 2 4 @ ~ + ; 2 0 01702514 00874714 -versify v 1 4 @ ~ + ; 1 0 01702514 -vesicate v 1 3 @ $ + 1 0 00379774 -vesiculate v 2 3 @ $ + 2 0 00581038 00580865 -vest v 5 4 @ ~ $ + 5 1 02386388 02362916 02222179 00052253 00052043 -vesture v 1 2 @ + 1 0 00049197 -vet v 4 3 @ + ; 4 0 02446504 02166117 00080589 00080456 -veto v 2 4 @ ~ * + 2 2 02473431 00795863 -vex v 5 5 @ ~ > $ + 5 1 01787955 01765908 01419473 00812882 00622384 -vibrate v 5 3 @ ~ + 5 2 01891249 01878063 02706046 02175958 01796346 -victimise v 2 3 @ ~ + 2 0 02574205 02500619 -victimize v 3 3 @ ~ + 3 2 02574205 02500619 02572119 -victual v 3 2 @ + 3 0 02332999 02281485 01167188 -videotape v 1 3 @ + ; 1 0 01003049 -vie v 1 1 ~ 1 1 01072262 -view v 3 4 @ ~ $ + 3 3 00690614 02130300 02150948 -view_as v 1 2 @ $ 1 1 00693780 -vilify v 1 2 @ + 1 0 00847870 -vilipend v 1 2 @ ~ 1 0 00855933 -vindicate v 3 3 @ ~ + 3 1 00896141 00904690 00904494 -vinify v 1 3 @ + ; 1 0 00459114 -violate v 6 4 ! @ ~ + 6 3 02668523 02566528 01207688 02568065 02567519 01565472 -virilise v 1 2 @ $ 1 0 00566569 -virilize v 1 3 @ $ + 1 0 00566569 -visa v 2 2 @ + 2 0 00998182 00807059 -visit v 8 4 @ ~ $ + 8 6 02493030 01843689 02487573 01844048 00748282 01038666 02619424 00260142 -visualise v 4 5 @ ~ $ + ; 4 0 02151394 01636008 01635432 00581205 -visualize v 4 5 @ ~ $ + ; 4 1 01635432 02151394 01636008 00581205 -vitalise v 2 2 @ + 2 0 00165103 00164816 -vitalize v 2 3 ! @ + 2 0 00165103 00164816 -vitaminise v 1 1 @ 1 0 02342422 -vitaminize v 1 2 @ + 1 0 02342422 -vitiate v 3 3 @ ~ + 3 0 02579447 00477941 00448440 -vitrify v 2 2 @ + 2 0 00537892 00537759 -vitriol v 2 1 @ 2 0 02111371 00863174 -vituperate v 1 2 @ + 1 0 00847870 -vivify v 2 3 @ $ + 2 1 00024279 00582145 -vivisect v 1 2 @ + 1 0 01550403 -vocalise v 5 3 @ ~ + 5 0 01704236 00983635 00978369 00952182 00745187 -vocalize v 5 3 @ ~ + 5 1 00952182 01704236 00983635 00978369 00745187 -vociferate v 1 2 @ + 1 0 00915265 -voice v 2 4 ! @ ~ + 2 1 00933403 00952182 -void v 4 3 @ ~ + 4 0 02478059 00450303 00448440 00073343 -volatilise v 1 3 @ + ; 1 0 00552253 -volatilize v 1 3 @ + ; 1 0 00552253 -volley v 5 4 @ $ + ; 5 0 02029492 01598255 01377571 01075498 00986311 -volunteer v 3 2 @ + 3 3 00880102 02425112 02424984 -vomit v 1 3 ! @ + 1 1 00076400 -vomit_up v 1 1 @ 1 0 00076400 -voodoo v 1 2 @ + 1 0 00777391 -vote v 5 5 @ ~ ^ $ + 5 3 02461314 02462580 02462386 02473890 02462201 -vote_down v 2 1 @ 2 1 02473688 02462030 -vote_in v 1 1 @ 1 1 02400637 -vote_out v 1 1 @ 1 0 02473688 -vouch v 4 4 @ ~ $ + 4 1 01015104 00890100 00792165 00223250 -vouchsafe v 1 1 @ 1 1 02255715 -vow v 2 3 @ ~ + 2 1 00886759 00886978 -vowelise v 1 1 @ 1 0 00983635 -vowelize v 1 2 @ + 1 0 00983635 -voyage v 1 3 @ ~ + 1 0 01846320 -vroom v 1 1 @ 1 0 01046357 -vulcanise v 2 2 @ + 2 0 00538043 00516932 -vulcanize v 2 2 @ + 2 0 00538043 00516932 -vulgarise v 3 3 @ $ + 3 0 00970215 00582318 00011698 -vulgarize v 3 3 @ $ + 3 0 00970215 00582318 00011698 -wad v 2 4 @ ~ $ + 2 1 01483779 01524298 -waddle v 1 2 @ + 1 0 01918803 -wade v 1 3 @ ~ + 1 1 01916214 -waffle v 1 3 ~ * + 1 0 02640440 -waft v 2 1 @ 2 1 01874178 02769783 -wag v 1 2 @ + 1 1 01898592 -wage v 1 2 @ ~ 1 1 02376089 -wager v 2 4 @ ~ $ + 2 0 01155687 00918580 -waggle v 2 2 @ + 2 1 01898592 01871321 -wail v 2 3 @ ~ + 2 2 01046932 00066025 -wait v 4 4 @ ~ $ + 4 4 02637938 02641463 00720063 02413290 -wait_on v 1 3 @ ~ $ 1 1 02540670 -waitress v 1 2 @ + 1 0 02413290 -waive v 2 3 @ ~ + 2 1 02534062 02303331 -wake v 5 5 ! @ ~ * + 5 2 00020133 00018526 01761120 00872747 00018813 -wake_up v 2 4 ! @ ~ * 2 2 00018813 00018526 -waken v 2 4 @ ~ * + 2 0 00018813 00018526 -walk v 10 8 ! @ ~ * ^ $ + ; 10 5 01904930 01907076 01113473 01912893 01140654 02518839 02470518 01959776 01906823 01882170 -walk_about v 1 2 @ + 1 1 01910965 -walk_around v 4 1 @ 4 2 01910965 01911232 02518625 02419438 -walk_away v 1 1 @ 1 0 02010082 -walk_in v 1 2 @ + 1 0 02017149 -walk_off v 2 1 @ 2 1 02322433 02010082 -walk_on_air v 1 3 @ ~ + 1 1 01813668 -walk_out v 3 2 @ + 3 2 02412647 02010400 00614664 -walk_out_of v 1 1 @ 1 1 02008863 -walk_over v 1 2 @ + 1 0 01102667 -walk_through v 1 2 @ + 1 0 01723437 -wall v 1 4 @ ~ ^ + 1 0 01130607 -wall_in v 1 2 @ ~ 1 0 01389942 -wall_up v 1 2 @ ~ 1 1 01389942 -wallop v 2 2 @ + 2 2 01415807 01103180 -wallow v 5 3 @ ~ + 5 3 01191974 01866030 02041422 01823370 01191403 -wallpaper v 1 2 @ + 1 0 01268112 -waltz v 1 2 @ + 1 0 01895612 -waltz_around v 1 1 @ 1 0 01895612 -wamble v 1 1 @ 1 0 01871321 -wan v 1 1 @ 1 0 00087653 -wander v 5 4 @ ~ $ + 5 2 01881180 02576503 02102840 01882814 00780575 -wane v 3 4 ! @ ~ + 3 2 00431826 00433933 00433778 -wangle v 2 3 @ ~ + 2 1 02527431 02576921 -wank v 1 5 @ ~ * $ + 1 0 01430633 -want v 5 4 @ ~ $ + 5 4 01825237 01188725 01317064 00709205 02632567 -wanton v 6 2 @ + 6 0 02708123 02615451 02266422 01204803 01038434 00012753 -wanton_away v 2 1 @ 2 0 02708123 02266422 -war v 1 4 ! @ ~ + 1 0 01093172 -warble v 2 2 @ + 2 1 01050896 01050651 -ward v 1 3 @ ~ + 1 0 01129337 -ward_off v 2 1 @ 2 0 02453321 01129591 -ware v 1 2 @ ~ 1 0 01158181 -warehouse v 1 2 @ + 1 0 02282365 -warm v 2 3 @ ~ + 2 2 00373250 00372958 -warm_the_bench v 1 2 @ ; 1 0 02418029 -warm_to v 1 1 @ 1 1 01805113 -warm_up v 5 3 @ ~ + 5 5 02444397 00373112 00373250 00100905 00027064 -warn v 4 4 @ ~ $ + 4 2 00870213 00870577 00833071 00832907 -warp v 2 3 @ ~ + 2 2 00835903 00356954 -warrant v 2 3 @ ~ + 2 1 00896803 00891936 -wash v 13 6 @ ~ * ^ $ + 13 4 01270199 00036362 01535246 02098179 02742842 02703153 01536344 01269844 00557686 00274942 00217956 00217576 00036178 -wash_away v 2 2 @ $ 2 0 00571273 00557686 -wash_down v 2 1 @ 2 2 01167290 00455079 -wash_off v 1 2 @ $ 1 0 00557686 -wash_one's_hands v 1 1 @ 1 0 00902654 -wash_out v 7 3 @ $ + 7 2 02594833 01535742 01605851 00557686 00542533 00282343 00280112 -wash_up v 5 4 @ ~ $ + 5 1 00025034 02080482 01533166 00423257 00075421 -wassail v 2 4 @ ~ * + 2 0 02491383 01175467 -waste v 10 6 ! @ ~ > $ + 10 2 02268351 01161087 02223479 02067889 01327301 01158181 00389992 00389406 00388635 00093775 -waste_one's_time v 1 1 @ 1 0 02639606 -watch v 7 5 @ ~ * $ + 7 5 02150510 02455407 02150948 02128653 02151966 02131963 00920336 -watch_out v 1 1 ~ 1 1 02151966 -watch_over v 1 3 @ ~ $ 1 1 02455407 -water v 4 3 @ ~ + 4 3 00228236 02357873 00069570 00452098 -water-wash v 1 1 @ 1 1 01270116 -water_down v 2 1 @ 2 1 00488301 00488175 -water_ski v 1 4 @ * + ; 1 1 01940248 -watercolor v 1 3 @ + ; 1 0 01696435 -watercolour v 1 3 @ + ; 1 0 01696435 -waterproof v 1 2 @ + 1 0 01354405 -wattle v 2 3 @ + ; 2 0 01655639 01518343 -waul v 1 1 @ 1 0 01047263 -wave v 5 4 @ ~ * + 5 3 01041415 01446901 01901783 01223616 00039488 -wave_off v 1 1 @ 1 1 00513936 -waver v 7 5 @ ~ * $ + 7 4 02640440 02740204 01901289 01876907 01878719 01868258 01051118 -wawl v 1 1 @ 1 0 01047263 -wax v 3 4 ! @ ~ + 3 2 01268726 00433232 00433525 -waylay v 1 1 @ 1 1 01138204 -weaken v 5 5 ! @ ~ > + 5 4 00224901 00223500 02543607 00290740 00390215 -wean v 2 3 @ * + 2 1 01186958 01824253 -weaponize v 1 2 @ + 1 0 00584954 -wear v 9 7 @ ~ * > ^ $ + 9 6 00052374 00047745 02740034 00469382 00047610 02705132 01369346 00075021 00050652 -wear_away v 3 3 @ ~ + 3 0 01552390 01254324 00275253 -wear_down v 2 3 @ ~ > 2 1 00075021 00469382 -wear_off v 2 2 @ ~ 2 1 00469382 01254324 -wear_on v 1 1 @ 1 1 00432176 -wear_out v 3 4 @ ~ > $ 3 3 00075021 01369346 00469382 -wear_round v 1 2 @ ; 1 0 01946408 -wear_ship v 1 2 @ ; 1 0 01946660 -wear_the_trousers v 1 1 @ 1 0 02601271 -wear_thin v 1 2 @ ~ 1 1 00469382 -wear_upon v 1 3 @ ~ > 1 0 00075021 -weary v 2 3 @ ~ > 2 1 00075021 00076114 -weather v 4 3 @ + ; 4 0 02707251 02038278 01928283 00275088 -weatherproof v 1 1 @ 1 0 00166845 -weatherstrip v 1 1 @ 1 1 00495336 -weave v 4 6 ! @ ~ $ + ; 4 3 01518924 01673891 01868258 01882814 -web v 1 2 @ + 1 0 01672168 -wed v 2 4 @ ~ $ + 2 1 02488834 02489456 -wedel v 1 1 @ 1 0 01938739 -wedge v 2 3 @ ~ + 2 1 01528069 01527271 -wee v 1 3 @ ~ $ 1 0 00072012 -wee-wee v 1 3 @ ~ $ 1 0 00072012 -weed v 1 3 @ ~ + 1 0 00313171 -weed_out v 1 1 @ 1 1 02223630 -weekend v 1 2 @ + 1 0 02707987 -weep v 1 4 @ ~ $ + 1 1 00066191 -weigh v 5 4 @ ~ $ + 5 4 02704818 00950431 02704617 02645839 02646064 -weigh_anchor v 1 1 @ 1 1 01456199 -weigh_down v 2 2 ! @ 2 0 01814266 01597096 -weigh_on v 1 1 @ 1 0 01814266 -weigh_the_anchor v 1 1 @ 1 0 01456199 -weight v 2 3 @ ~ + 2 2 01487311 00680485 -weight-lift v 1 1 @ 1 0 01150370 -weight_down v 1 2 @ ~ 1 1 01487311 -weightlift v 1 2 @ + 1 0 01150370 -welch v 1 1 @ 1 0 02574072 -welcome v 3 3 ! @ + 3 3 02237206 00900583 01470098 -weld v 2 4 @ ~ * + 2 2 01595830 00242976 -well v 1 1 @ 1 1 01991204 -well_out v 1 2 @ ~ 1 0 02070466 -well_over v 1 3 @ ~ * 1 0 02072159 -well_up v 1 1 @ 1 1 02626405 -welsh v 1 2 @ + 1 0 02574072 -welt v 2 3 @ ~ + 2 0 01411085 00187415 -welter v 3 1 @ 3 0 02086260 01866030 00601581 -wench v 1 2 @ + 1 0 01427806 -wend v 1 1 @ 1 1 01841347 -westernise v 1 1 @ 1 0 00523645 -westernize v 1 2 @ + 1 0 00523645 -wet v 2 4 ! @ ~ + 2 1 00214951 00072730 -wet-nurse v 1 2 @ $ 1 0 01186428 -whack v 1 2 @ + 1 1 01415807 -whale v 1 2 @ + 1 0 01141938 -wham v 1 1 @ 1 0 01415807 -whang v 3 2 @ + 3 0 01412548 01403012 00863433 -whap v 1 1 @ 1 0 01397088 -wharf v 5 2 @ + 5 0 02331175 02281960 01489734 01305361 01305241 -wheedle v 1 3 @ ~ + 1 1 00768778 -wheel v 4 3 @ ~ + 4 3 02046075 02046441 01887020 01935476 -wheel_around v 2 2 @ ~ 2 0 02046441 02046075 -wheelbarrow v 1 1 @ 1 0 01949579 -wheeze v 1 2 @ + 1 1 00006697 -whelk v 1 2 @ + 1 0 01143147 -whelm v 1 2 @ ~ 1 0 01809321 -whelp v 1 2 @ + 1 0 00058516 -whet v 2 1 @ 2 1 02117534 01247074 -whicker v 1 2 @ + 1 0 01059743 -whiff v 5 3 @ + ; 5 0 02125032 02100861 01409888 01198616 00943436 -while_away v 1 1 @ 1 1 02709277 -whimper v 1 2 @ + 1 1 00066025 -whine v 4 3 @ $ + 4 2 01839280 01042531 02171664 00907930 -whinny v 1 2 @ + 1 1 01059743 -whip v 6 5 @ ~ ^ + ; 6 4 01411085 01102997 01891092 01398032 01417868 00863906 -whip_through v 1 1 @ 1 1 02374282 -whip_up v 1 2 @ ; 1 0 01666002 -whipsaw v 2 2 @ + 2 0 02573958 01559767 -whir v 1 2 @ + 1 1 02188587 -whirl v 5 3 @ ~ + 5 4 02048891 02048051 02047650 02046755 02047857 -whirl_around v 1 1 @ 1 0 02047857 -whirligig v 1 2 @ + 1 0 02047148 -whirlpool v 1 2 @ + 1 0 02047650 -whirr v 2 2 @ + 2 0 02188587 01052562 -whish v 2 1 @ 2 0 02178484 01834360 -whisk v 4 3 @ + ; 4 1 02079679 02079818 01435254 01417868 -whisk_away v 1 1 @ 1 1 01435128 -whisk_by v 1 1 @ 1 1 02053829 -whisk_off v 2 1 @ 2 0 01435254 01435128 -whisker v 1 2 @ + 1 0 02332173 -whisper v 1 3 ! @ + 1 1 00915830 -whistle v 6 2 @ + 6 5 02183626 02093088 01043441 02093234 01043887 01043612 -whistlestop v 1 1 @ 1 0 01095083 -white v 1 3 @ ~ + 1 0 00280301 -white-out v 1 1 @ 1 0 00546398 -white_out v 2 2 @ ; 2 0 01335322 00303806 -whiten v 1 4 ! @ ~ + 1 1 00280301 -whiteout v 2 1 @ 2 0 01335322 00546398 -whitewash v 3 3 @ ~ + 3 0 02148109 01269702 00904878 -whittle v 1 2 @ + 1 0 01552219 -whittle_away v 1 1 @ 1 0 01552390 -whittle_down v 1 1 @ 1 0 01552390 -whiz v 1 2 @ + 1 1 02188587 -whizz v 2 1 @ 2 0 02188587 02055521 -whizz_along v 1 1 @ 1 0 02055521 -wholesale v 1 4 ! @ + ; 1 0 02247226 -whomp v 2 1 @ 2 0 01417162 01103603 -whomp_up v 1 2 @ ; 1 0 01666002 -whoop v 2 2 @ + 2 1 00914215 00006100 -whoop_it_up v 1 2 @ ~ 1 1 02491383 -whoosh v 3 1 @ 3 0 02069120 02069014 02068877 -whop v 2 1 @ 2 0 01415807 01397088 -whore v 3 2 @ + 3 0 02580577 01427695 01036047 -widen v 4 6 ! @ ~ > $ + 4 3 00303465 00303940 00303661 00540235 -widow v 1 2 @ + 1 0 00360337 -wield v 2 2 @ ~ 2 2 02204564 01224415 -wiggle v 1 3 @ ~ + 1 1 01898282 -wigwag v 2 1 @ 2 0 01447124 01040031 -will v 3 4 @ ~ $ + 3 2 00746366 00698398 02229055 -wilt v 2 2 @ + 2 1 00469794 00469637 -win v 4 5 ! @ ~ * + 4 3 01100145 02288295 01111028 02524171 -win_back v 1 1 @ 1 1 01111570 -win_over v 1 2 @ ~ 1 0 00769553 -wince v 2 3 @ ~ + 2 2 02061069 00008977 -winch v 1 2 @ + 1 0 01592306 -wind v 7 6 ! @ ~ * $ + 7 3 01882814 02738701 01522276 02125223 01522052 01516965 01455184 -wind_off v 1 1 @ 1 0 01523654 -wind_up v 4 5 @ ~ * + ; 4 3 00352558 02087979 01762283 01522052 -window-dress v 1 1 @ 1 0 00293528 -window-shop v 1 1 @ 1 0 02327074 -windsurf v 1 2 @ ; 1 0 01948450 -wine v 2 2 @ + 2 0 01190840 01176567 -wine_and_dine v 2 2 @ * 2 0 01194777 01194661 -wing v 1 4 @ ~ $ + 1 1 01940403 -wink v 4 3 @ ~ + 4 3 00008299 02159890 00007739 00008435 -wink_at v 1 1 @ 1 0 02417389 -winkle v 3 4 @ ~ $ ; 3 0 02764765 02159890 01352154 -winkle_out v 2 1 @ 2 0 02404622 01352154 -winnow v 4 2 @ + 4 1 01460937 01885708 00677203 00177984 -winnow_out v 1 0 1 0 00685419 -winter v 1 2 @ + 1 1 02709573 -winterise v 1 1 @ 1 0 00408272 -winterize v 1 3 ! @ + 1 0 00408272 -wipe v 1 4 @ ~ ^ + 1 1 01392237 -wipe_away v 1 2 @ ~ 1 0 01392918 -wipe_off v 2 3 @ ~ * 2 1 01392918 01548718 -wipe_out v 6 4 @ ~ $ + 6 2 01157517 00470701 01621219 00479391 00478830 00471196 -wipe_up v 1 2 @ ~ 1 1 01393339 -wire v 5 5 ! @ ~ + ; 5 3 02354536 01007222 01599052 01599325 00505802 -wiretap v 1 2 @ + 1 0 02188848 -wise_up v 2 1 @ 2 1 00599613 00599720 -wisecrack v 1 2 @ + 1 1 01058880 -wish v 6 5 ! @ ~ $ + 6 6 01824339 01824736 00903212 01824532 00903098 00902932 -wish_well v 1 1 @ 1 0 01824532 -witch v 1 3 @ ~ + 1 0 00776988 -withdraw v 12 6 ! @ ~ * $ + 12 6 01994442 02380009 01511380 02312478 00799076 00495998 02428487 02380760 02311387 01766952 00799383 00173338 -wither v 2 3 @ ~ + 2 1 00241689 00421917 -withhold v 2 3 @ ~ + 2 2 02213690 02215001 -withstand v 2 3 @ ~ + 2 1 02706816 01116585 -witness v 2 4 @ ~ $ + 2 2 02128286 02128873 -wive v 3 1 @ 3 0 02490004 02489916 02332891 -wobble v 3 2 @ + 3 1 01869003 01884974 01871546 -wolf v 1 1 @ 1 0 01169205 -wolf-whistle v 1 1 @ 1 0 01043768 -wolf_down v 1 1 @ 1 0 01169205 -womanise v 1 2 @ + 1 0 02590910 -womanize v 2 2 @ + 2 0 02590910 00566322 -wonder v 3 3 @ ~ + 3 3 00729378 00925110 00925490 -woo v 2 3 @ ~ + 2 2 02534936 02534492 -woolgather v 1 2 @ + 1 1 01637633 -woosh v 1 1 @ 1 0 02069120 -word v 1 3 @ ~ + 1 1 00980453 -work v 27 8 ! @ ~ * > $ + ; 27 13 02413480 02410855 02525447 01525666 01668603 00100551 02051031 02594979 02373015 01852468 01629589 02407987 01741446 02751271 02536557 02444159 02436963 02116980 01817574 01659248 01541231 01235355 01162754 00634906 00458754 00458471 00150096 -work_at v 1 2 @ ~ 1 1 02415039 -work_in v 1 1 @ 1 0 00183506 -work_off v 1 1 @ 1 0 02223858 -work_on v 2 3 @ ~ $ 2 2 02415039 01668603 -work_out v 8 7 @ ~ * > $ + ; 8 4 00251270 02611106 00251463 00099721 00638585 00637259 00634906 00100551 -work_over v 1 2 ~ * 1 0 01397210 -work_through v 1 2 @ ~ 1 1 01161947 -work_up v 4 2 @ $ 4 2 00252990 00096648 00253277 00251270 -worm v 1 2 @ ~ 1 0 01868370 -worry v 6 6 ! @ ~ > $ + 6 3 01767163 01766748 01765908 02678438 01559473 01251109 -worsen v 2 4 ! @ ~ + 2 1 00203866 00208210 -worship v 3 4 @ ~ + ; 3 3 01778017 01778990 02613275 -worst v 1 1 @ 1 0 01102997 -wound v 2 3 @ ~ + 2 1 00069879 01793177 -wow v 1 1 @ 1 0 01770252 -wrack v 1 2 @ + 1 1 01566185 -wrangle v 2 2 @ + 2 1 00774344 02652376 -wrap v 4 5 ! @ ~ ^ + 4 3 01283208 01522276 01580467 01562478 -wrap_up v 4 3 @ ~ $ 4 1 01283208 00484892 00435688 00048633 -wrawl v 1 1 @ 1 0 01047381 -wreak v 1 2 @ $ 1 1 01629589 -wreathe v 3 1 @ 3 1 01868899 01517055 01516965 -wreck v 1 2 @ + 1 1 01566185 -wrench v 4 3 @ $ + 4 2 01349493 01868780 01349130 00091124 -wrest v 1 2 @ + 1 0 01213998 -wrestle v 4 3 @ ~ + 4 2 01092981 00813495 01868370 01504699 -wrick v 1 2 @ + 1 0 00091124 -wriggle v 1 3 @ ~ + 1 1 01868370 -wring v 4 5 @ ~ ^ $ + 4 2 01350699 01349130 02241107 01350971 -wring_from v 1 2 @ ~ 1 0 01630751 -wring_out v 1 2 @ * 1 0 01349318 -wrinkle v 4 3 @ ~ + 4 2 01279305 01278427 01277784 00564857 -write v 10 7 @ ~ * ^ $ + ; 10 9 01698271 00993014 01744611 01007027 01031966 01705494 01691057 00998886 01699896 01692834 -write_about v 1 2 @ ; 1 1 01699172 -write_copy v 1 2 @ ; 1 0 01701152 -write_down v 2 3 @ ~ + 2 1 01020356 00315956 -write_in v 2 2 @ + 2 0 02461807 00993453 -write_in_code v 1 1 @ 1 0 00994076 -write_of v 1 2 @ ; 1 1 01699172 -write_off v 4 2 @ + 4 2 00593363 01700540 02477655 00315956 -write_on v 1 2 @ ; 1 1 01699172 -write_out v 2 3 @ ~ ; 2 1 01754576 01064799 -write_up v 2 3 @ + ; 2 1 01068134 01754576 -writhe v 1 2 @ ~ 1 1 01868370 -wrong v 1 4 ! @ ~ + 1 1 02513989 -x-ray v 2 3 @ + ; 2 0 02149786 01003885 -xerox v 1 3 @ ~ + 1 0 01736299 -yacht v 1 3 @ + ; 1 0 01945381 -yack v 1 2 @ + 1 0 01037498 -yack_away v 1 1 @ 1 0 01037498 -yak v 1 1 @ 1 0 00741573 -yammer v 2 2 @ $ 2 0 01047381 00907930 -yank v 1 2 @ + 1 1 01592072 -yap v 1 1 @ 1 1 01048171 -yap_away v 1 1 @ 1 0 01037498 -yarn v 1 2 @ + 1 0 00954038 -yarn-dye v 1 1 @ 1 0 00283805 -yaup v 1 2 @ ~ 1 0 01046932 -yaw v 3 3 @ ~ + 3 0 02718750 02066028 02034004 -yawl v 1 2 @ ~ 1 0 01046932 -yawn v 2 2 @ + 2 1 00007328 02718750 -yawp v 2 2 @ $ 2 0 01046480 00907930 -yearn v 3 3 @ ~ + 3 1 01828405 01805684 01777605 -yell v 2 4 @ ~ $ + 2 2 00913065 00912833 -yellow v 1 2 @ + 1 1 00289840 -yelp v 1 2 @ + 1 1 01048171 -yen v 1 3 @ ~ + 1 0 01805684 -yield v 13 6 ! @ ~ $ + ; 13 8 02339171 00435103 01629000 02316649 02703289 01848465 01629403 00806049 02620466 02291708 01449796 01116447 00804476 -yield_up v 1 1 @ 1 1 02235549 -yip v 1 1 @ 1 0 01048171 -yodel v 1 2 @ + 1 0 01050651 -yoke v 3 5 ! @ ~ + ; 3 0 01492283 01492052 01490958 -yowl v 2 2 @ + 2 0 01047381 00914634 -zap v 4 3 @ + ; 4 0 01768935 01325288 01133288 00321936 -zero v 2 2 @ + 2 0 00297507 00297333 -zero_in v 2 1 @ 2 1 01153007 00297333 -zest v 1 4 @ ~ + ; 1 0 02192570 -zigzag v 1 3 @ * + 1 1 01991744 -zinc v 1 1 @ 1 0 01615906 -zip v 2 3 @ ~ + 2 1 01353670 02055649 -zip_by v 1 1 @ 1 0 02053829 -zip_up v 1 2 ! @ 1 0 01353670 -zipper v 1 2 @ + 1 0 01353670 -zone v 2 3 @ ~ + 2 0 02512150 00332835 -zonk_out v 2 2 @ ~ 2 0 00023868 00016855 -zoom v 3 3 @ ~ + 3 1 02055521 02056209 01943718 -zoom_along v 1 1 @ 1 0 02055521 -zoom_in v 1 1 @ 1 0 02153253 diff --git a/corpora/en/wordnet/dict/lexnames b/corpora/en/wordnet/dict/lexnames deleted file mode 100644 index 58bd058bd..000000000 --- a/corpora/en/wordnet/dict/lexnames +++ /dev/null @@ -1,45 +0,0 @@ -00 adj.all 3 -01 adj.pert 3 -02 adv.all 4 -03 noun.Tops 1 -04 noun.act 1 -05 noun.animal 1 -06 noun.artifact 1 -07 noun.attribute 1 -08 noun.body 1 -09 noun.cognition 1 -10 noun.communication 1 -11 noun.event 1 -12 noun.feeling 1 -13 noun.food 1 -14 noun.group 1 -15 noun.location 1 -16 noun.motive 1 -17 noun.object 1 -18 noun.person 1 -19 noun.phenomenon 1 -20 noun.plant 1 -21 noun.possession 1 -22 noun.process 1 -23 noun.quantity 1 -24 noun.relation 1 -25 noun.shape 1 -26 noun.state 1 -27 noun.substance 1 -28 noun.time 1 -29 verb.body 2 -30 verb.change 2 -31 verb.cognition 2 -32 verb.communication 2 -33 verb.competition 2 -34 verb.consumption 2 -35 verb.contact 2 -36 verb.creation 2 -37 verb.emotion 2 -38 verb.motion 2 -39 verb.perception 2 -40 verb.possession 2 -41 verb.social 2 -42 verb.stative 2 -43 verb.weather 2 -44 adj.ppl 3 diff --git a/corpora/en/wordnet/dict/log.grind.3.0 b/corpora/en/wordnet/dict/log.grind.3.0 deleted file mode 100644 index ca6b1f2df..000000000 --- a/corpora/en/wordnet/dict/log.grind.3.0 +++ /dev/null @@ -1,89 +0,0 @@ -Processing adj.all... -Processing adj.pert... -Processing adv.all... -Processing noun.Tops... -noun.Tops, line 7: warning: No hypernyms in synset -Processing noun.act... -Processing noun.animal... -Processing noun.artifact... -Processing noun.attribute... -Processing noun.body... -Processing noun.cognition... -Processing noun.communication... -Processing noun.event... -Processing noun.feeling... -Processing noun.food... -Processing noun.group... -Processing noun.location... -Processing noun.motive... -Processing noun.object... -Processing noun.person... -Processing noun.phenomenon... -Processing noun.plant... -Processing noun.possession... -Processing noun.process... -Processing noun.quantity... -Processing noun.relation... -Processing noun.shape... -Processing noun.state... -Processing noun.substance... -Processing noun.time... -Processing verb.body... -Processing verb.change... -Processing verb.cognition... -Processing verb.communication... -Processing verb.competition... -Processing verb.consumption... -Processing verb.contact... -Processing verb.creation... -Processing verb.emotion... -Processing verb.motion... -Processing verb.perception... -Processing verb.possession... -Processing verb.social... -Processing verb.stative... -Processing verb.weather... -Processing adj.ppl... - -*** Statistics for ground files: - -82115 noun synsets -13767 verb synsets -3812 adj synsets -3621 adv synsets -3651 pertainym synsets -10693 adjective satellite synsets -117659 synsets in total (including satellite and pertainym synsets) -82115 noun synsets have definitional glosses -13767 verb synsets have definitional glosses -3812 adj synsets have definitional glosses -3621 adv synsets have definitional glosses -3651 pertainym synsets have definitional glosses -10693 adjective satellite synsets have definitional glosses -117659 definitional glosses in total (including adjective satellite synsets) -225000 pointers in total -206978 synonyms in synsets -147306 unique word phrases -83118 word phrases of length 1 -54533 word phrases of length 2 -7766 word phrases of length 3 -1454 word phrases of length 4 -298 word phrases of length 5 -80 word phrases of length 6 -28 word phrases of length 7 -20 word phrases of length 8 -9 word phrases of length 9 - -Resolving pointers... -Done resolving pointers... -Getting sense counts... -Done with sense counts... -Figuring out byte offsets... -Dumping data files... -Done dumping data files... -Cannot open file: cntlist -Cannot order senses -Dumping index files... -Done dumping index files... -Dumping sense index... -Done dumping sense index... diff --git a/corpora/en/wordnet/dict/noun.exc b/corpora/en/wordnet/dict/noun.exc deleted file mode 100644 index e6bee5043..000000000 --- a/corpora/en/wordnet/dict/noun.exc +++ /dev/null @@ -1,2054 +0,0 @@ -aardwolves aardwolf -abaci abacus -aboideaux aboideau -aboiteaux aboiteau -abscissae abscissa -acanthi acanthus -acari acarus -acciaccature acciaccatura -acetabula acetabulum -achaemenidae achaemenid -achaemenides achaemenid -acicula aciculum -aciculae acicula -acini acinus -acre-feet acre-foot -acromia acromion -actiniae actinia -actinozoa actinozoan -addenda addendum -adenocarcinomata adenocarcinoma -adenomata adenoma -adieux adieu -adyta adytum -aecia aecium -aecidia aecidium -aerobia aerobium -agents-general agent-general -aggiornamenti aggiornamento -agnomina agnomen -agones agon -agorae agora -agouties agouti -aides-de-camp aide-de-camp -aides-memoire aide-memoire -aids-de-camp aid-de-camp -alae ala -alewives alewife -alkalies alkali -allodia allodium -alluvia alluvium -alodia alodium -alto-relievos alto-relievo alto-rilievo -altocumuli altocumulus -altostrati altostratus -alulae alula -alumnae alumna -alumni alumnus -alveoli alveolus -amanuenses amanuensis -ambulacra ambulacrum -amebae ameba -amici_curiae amicus_curiae -amnia amnion -amniocenteses amniocentesis -amoebae amoeba -amoebiases amoebiasis -amoraim amora -amoretti amoretto -amorini amorino -amphiarthroses amphiarthrosis -amphicia amphithecium -amphimixes amphimixis -amphioxi amphioxus -amphisbaenae amphisbaena -amphorae amphora -ampullae ampulla -amygdalae amygdala -anabases anabasis -anacolutha anacoluthon -anacruses anacrusis -anaerobia anaerobium -anagnorises anagnorisis -analemmata analemma -analyses analysis -anamneses anamnesis -anamorphoses anamorphosis -anastomoses anastomosis -anatyxes anaptyxis -ancones ancon ancone -androclinia androclinium -androecia androecium -androsphinges androsphinx -andtheridia antheridium -angelfishes angelfish -angiomata angioma -animalcula animalculum -anlagen anlage -annattos anatto annatto -annuli annulus -antae anta -antalkalies antalkali -antefixa antefix -antennae antenna -antependia antependium -anthelia anthelion -anthelices anthelix -anthemia anthemion -antheridia antheridium -anthodia anthodium -anthozoa anthozoan -anthraces anthrax -anticlinoria anticlinorium -antihelices antihelix -antiheroes antihero -antisera antiserum -antitheses antithesis -antitragi antitragus -antra antrum -anus anus -aortae aorta -aphelia aphelion -aphides aphis -apices apex -apodoses apodosis -apomixes apomixis -aponeuroses aponeurosis -apophyses apophysis -aposiopeses aposiopesis -apothecia apothecium -apotheoses apotheosis -apparatus apparatus -appendices appendix -appoggiature appoggiatura -apsides apsis -aquae aqua -aquaria aquarium -araglis argali -arboreta arboretum -arcana arcanum -archegonia archegonium -archerfishes archerfish -archesporia archesporium -archipelagoes archipelago -arcs-boutants arc-boutant -areolae areola -argali argali -argumenta argumentum -ariette arietta -aristae arista -armamentaria armamentarium -arses arsis -artal rotl -artel rotl -arterioscleroses arteriosclerosis -aruspices aruspex -asceses ascesis -asci ascus -ascidia ascidium -ascogonia ascogonium -ashes ash -ashkenazim ashkenazi -aspergilla aspergillum -aspergilli aspergillus -aspergilloses aspergillosis -aspersoria aspersorium -assegais assagai assegai -astragali astragalus -asyndeta asyndeton -atheromata atheroma -atheroscleroses atherosclerosis -atmolyses atmolysis -atria atrium -attorneys-at-law attorney-at-law -auditoria auditorium -aurae aura -aurar eyir -aurar eyrir -aurei aureus -auriculae auricula -aurorae aurora -auspices auspex auspice -autocatalyses autocatalysis -autochthones autochthon -automata automaton -autos-da-fe auto-da-fe -avitaminoses avitaminosis -axes ax axis -axillae axilla -bacchantes bacchant bacchante -bacchii bacchius -bacilli bacillus -bacteriostases bacteriostasis -bacula baculum -bains-marie bain-marie -bains_marie bain_marie -ballistae ballista -bambini bambino -bandeaux bandeau -banditti bandit -bani ban -banjoes banjo -barklice barklouse -barramundies barramundi -bases base basis -bases-on-balls base_on_balls -bases_on_balls base_on_balls -basidia basidium -basileis basileus -bassi basso -bastinadoes bastinado -bateaux bateau -batfishes batfish -beadsmen beadsman bedesman -beaux beau -beches-de-mer beche-de-mer -beeves beef -behooves behoof -bersaglieri bersagliere -bhishties bheesty bhishti -bibliothecae bibliotheca -bicennaries bicentenary bicentennial -bijoux bijou -bilboes bilbo -billets-doux billet-doux -billfishes billfish -bimboes bimbo -bisectrices bisectrix -blackfeet blackfoot -blackfishes blackfish -blastemata blastema -blastulae blastula -blindfishes blindfish -blowfishes blowfish -bluefishes bluefish -boarfishes boarfish -bok boschbok -boleti boletus -bolivares bolivar -bolsheviki bolshevik -bonefishes bonefish -bongoes bongo -bonitoes bonito -booklice booklouse -bookshelves bookshelf -boraces borax -borborygmi borborygmus -bordereaux bordereau -botargoes botargo -box-kodaks box_kodak -boxfishes boxfish -brachia brachium -brainchildren brainchild -branchiae branchia -brants brant brent -bravadoes bravado -bravoes bravo -bregmata bregma -brethren brother -broadcast_media broadcast_medium -broadleaves broadleaf -bronchi bronchus -brothers-in-law brother-in-law -bryozoa bryozoan -buboes bubo -buckoes bucko -buckteeth bucktooth -buffaloes buffalo -bullae bulla -bunde bund -bureaux bureau -bureaux_de_change bureau_de_change -bursae bursa -bushbok boschbok -bushboks boschbok -busses bus -butterfishes butterfish -byssi byssus -cacti cactus -caducei caduceus -caeca caecum -caesurae caesura -calami calamus -calathi calathus -calcanei calcaneum calcaneus -calces calx -calculi calculus -caldaria caldarium -calices calix -calicoes calico -calli callus -calves calf -calyces calyx -cambia cambium -camerae camera -canaliculi canaliculus -candelabra candelabrum -candlefishes candlefish -canthi canthus -canulae canula -canzoni canzone -capita caput -capitula capitulum -capricci capriccio -carabinieri carabiniere -carbonadoes carbonado -carcinomata carcinoma -cargoes cargo -carides caryatid -carinae carina -caroli carolus -carpi carpus -carpogonia carpogonium -carryings-on carrying-on -caryopses caryopsis -caryopsides caryopsis -castrati castrato -catabases catabasis -cataclases cataclasis -cataloes catalo -catalyses catalysis -catenae catena -catfishes catfish -cathari cathar -cathexes cathexis -cattaloes cattalo -caudices caudex -caules caulis -cavatine cavatina -cavefishes cavefish -cavetti cavetto -cavo-rilievi cavo-rilievo -ceca cecum -cellae cella -cembali cembalo -centesimi centesimo -centra centrum -cephalothoraces cephalothorax -cercariae cercaria -cercariiae cercaria -cerci cercus -cerebella cerebellum -cerebra cerebrum -cervices cervix -cestuses caestus -cesurae cesura -chadarim cheder -chaetae chaeta -chaises_longues chaise_longue -chalazae chalaza -challoth hallah -chalutzim chalutz -chapaties chapati -chapatties chapatti -chapeaux chapeau -chasidim chasid -chassidim chassid -chateaux chateau -chazanim chazan -chedarim cheder -chefs-d'ouvre chef-d'ouvre -chelae chela -chelicerae chelicera -cherubim cherub -chevaux-de-frise cheval-de-frise -chiasmata chiasma -chiasmi chiasmus -children child -chillies chilli -chinese_eddoes chinese_eddo -chitarroni chitarrone -chlamydes chlamys -chlamyses chlamys -chondromata chondroma -choragi choragus -choriambi choriambus -choux chou -chromonemata chromonema -chrysalides chrysalis -chuvashes chuvash -ciboria ciborium -cicadae cicada -cicale cicala -cicatrices cicatrix -ciceroni cicerone -cicisbei cicisbeo -cilia cilium -cimices cimex -cineraria cinerarium -cingula cingulum -cirri cirrus -cirrocumuli cirrocumulus -cirrostrati cirrostratus -ciscoes cisco -cisternae cisterna -clani clarino -clanos clarino -claroes claro -clepsydrae clepsydra -clinandria clinandrium -clingfishes clingfish -clitella clitellum -cloacae cloaca -clostridia clostridium -cloverleaves cloverleaf -clypei clypeus -coagula coagulum -coalfishes coalfish -cocci coccus -coccyges coccyx -cochleae cochlea -codfishes codfish -codices codex -coelentera coelenteron -coenuri coenurus -cognomina cognomen -cognosenti cognosente -cola colon -coleorhizae coleorhiza -collegia collegium -colloquia colloquium -colluvia colluvium -collyria collyrium -colones colon -colossi colossus -columbaria columbarium -columellae columella -comae coma -comatulae comatula -comedones comedo -comics comic_strip comic -commandoes commando -concertanti concertante -concerti concerto -concerti_grossi concerto_grosso -concertini concertino -conchae concha -condottieri condottiere -condylomata condyloma -confervae conferva -congii congius -conidia conidium -conjunctivae conjunctiva -conquistadores conquistador -consortia consortium -contagia contagium -continua continuum -contralti contralto -conversazioni conversazione -convolvuli convolvulus -cooks-general cook-general -copulae copula -corbiculae corbicula -coria corium -corneae cornea -cornua cornu -coronae corona -corpora corpus -corpora_lutea corpus_luteum -corpora_striata corpus_striatum -corrigenda corrigendum -cortices cortex -cortinae cortina -corybantes corybant -coryphaei coryphaeus -costae costa -cothurni cothurnus -courts_martial court_martial -couteaux couteau -cowfishes cowfish -coxae coxa -cramboes crambo -crania cranium -crases crasis -crawfishes crawfish -crayfishes crayfish -credenda credendum -crematoria crematorium -crescendi crescendo -cribella cribellum -crises crisis -crissa crissum -cristae crista -criteria criterion -cruces crux -crura crus -crusadoes crusado -cruzadoes cruzado -crying cry -cryings cry -ctenidia ctenidium -cubicula cubiculum -culices culex -culpae culpa -culs-de-sac cul-de-sac -culti cultus -cumuli cumulus -cumulonimbi cumulonimbus -cumulostrati cumulostratus -curiae curia -curricula curriculum -custodes custos -cutes cutis -cuticulae cuticula -cuttlefishes cuttlefish -cyclopes cyclops -cycloses cyclosis -cylices cylix -cylikes cylix -cymae cyma -cymatia cymatium -cypselae cypsela -cysticerci cysticercus -dadoes dado -dagoes dago -damselfishes damselfish -data datum -daughters-in-law daughter-in-law -daymio daimio -daymios daimio -dealfishes dealfish -decemviri decemvir -decennia decennium -deciduae decidua -definienda definiendum -definientia definiens -delphinia delphinium -denarii denarius -dentalia dentalium -dermatoses dermatosis -desiderata desideratum -desperadoes desperado -devilfishes devilfish -diaereses diaeresis -diaerses diaeresis -diagnoses diagnosis -dialyses dialysis -diaphyses diaphysis -diapophyses diapophysis -diarthroses diarthrosis -diastalses diastalsis -diastases diastasis -diastemata diastema -diastemata diastema -diathses diathesis -diazoes diazo -dibbukkim dibbuk -dichasia dichasium -dicta dictum -didoes dido -diereses dieresis -dieses diesis -differentiae differentia -dilettanti dilettante -diluvia diluvium -dingoes dingo -diplococci diplococcus -directors-general director-general -disci discus -discoboli discobolos discobolus -dive diva -diverticula diverticulum -divertimenti divertimento -djinn djinni djinny -dodoes dodo -dogfishes dogfish -dogmata dogma -dogteeth dogtooth -dollarfishes dollarfish -domatia domatium -dominoes domino -dormice dormouse -dorsa dorsum -drachmae drachma -drawknives drawknife -drosophilae drosophila -drumfishes drumfish -dryades dryad -dui duo -duona duodenum -duonas duodenum -dupondii dupondius -duumviri duumvir -dwarves dwarf -dybbukkim dybbuk -ecchymoses ecchymosis -ecclesiae ecclesia -ecdyses ecdysis -echidnae echidna -echini echinus -echinococci echinococcus -echoes echo -ectozoa ectozoan -eddoes eddo -edemata edema -effluvia effluvium -eidola eidolon -eisegeses eisegesis -eisteddfodau eisteddfod -elenchi elenchus -ellipses ellipsis -eluvia eluvium -elves elf -elytra elytron elytrum -embargoes embargo -emboli embolus -emphases emphasis -emporia emporium -enarthroses enarthrosis -encephala encephalon -encephalitides encephalitis -encephalomata encephaloma -enchiridia enchiridion -enchondromata enchondroma -encomia encomium -endamebae endameba -endamoebae endamoeba -endocardia endocardium -endocrania endocranium -endometria endometrium -endostea endosteum -endostoses endostosis -endothecia endothecium -endothelia endothelium -endotheliomata endothelioma -endozoa endozoan -enemata enema -enneahedra enneahedron -entamebae entameba -entamoebae entamoeba -entases entasis -entera enteron -entia ens -entozoa entozoan entozoon -epencephala epencephalon -epentheses epenthesis -epexegeses epexegesis -ephemera ephemeron -ephemerae ephemera -ephemerides ephemeris -ephori ephor -epicalyces epicalyx -epicanthi epicanthus -epicardia epicardium -epicedia epicedium -epicleses epiclesis -epididymides epididymis -epigastria epigastrium -epiglottides epiglottis -epimysia epimysium -epiphenomena epiphenomenon -epiphyses epiphysis -episterna episternum -epithalamia epithalamion epithalamium -epithelia epithelium -epitheliomata epithelioma -epizoa epizoan epizoon -epyllia epyllion -equilibria equilibrium -equiseta equisetum -eringoes eringo -errata erratum -eryngoes eryngo -esophagi esophagus -etyma etymon -eucalypti eucalyptus -eupatridae eupatrid -euripi euripus -exanthemata exanthema -executrices executrix -exegeses exegesis -exempla exemplum -exordia exordium -exostoses exostosis -extrema extremum -eyeteeth eyetooth -fabliaux fabliau -faciae facia -faculae facula -faeroese faeroese -fallfishes fallfish -famuli famulus -farmers-general farmer-general -faroese faroese -farragoes farrago -fasciae fascia -fasciculi fasciculus -fathers-in-law father-in-law -fatsoes fatso -faunae fauna -feculae fecula -fedayeen fedayee -feet foot -fellaheen fellah -fellahin fellah -felones_de_se felo_de_se -felos_de_se felo_de_se -femora femur -fenestellae fenestella -fenestrae fenestra -feriae feria -fermate fermata -ferulae ferula -festschriften festschrift -fetiales fetial -fezzes fez -fiascoes fiasco -fibrillae fibrilla -fibromata fibroma -fibulae fibula -ficoes fico -fideicommissa fideicommissum -fieldmice fieldmouse -figs. fig. -fila filum -filariiae filaria -filefishes filefish -fimbriae fimbria -fishes fish -fishwives fishwife -fistulae fistula -flabella flabellum -flagella flagellum -flagstaves flagstaff -flambeaux flambeau -flamines flamen -flamingoes flamingo -flatfeet flatfoot -flatfishes flatfish -fleurs-de-lis fleur-de-lis -fleurs-de-lys fleur-de-lys -flights_of_stairs flight_of_stairs -flittermice flittermouse -flocci floccus -flocculi flocculus -florae flora -floreant. floreat -florilegia florilegium -flowers-de-luce flower-de-luce -flyleaves flyleaf -foci focus -folia folium -fora forum -foramina foramen -forceps forceps -forefeet forefoot -foreteeth foretooth -formicaria formicarium -formulae formula -fornices fornix -fortes fortis -fossae fossa -foveae fovea -foveolae foveola -fractocumuli fractocumulus -fractostrati fractostratus -fraena fraenum -frauen frau -frena frenum -frenula frenulum -frescoes fresco -fricandeaux fricandeau -fricandoes fricando -frijoles frijol -frogfishes frogfish -frontes frons -frusta frustum -fuci fucus -fulcra fulcrum -fumatoria fumatorium -fundi fundus -fungi fungus -funiculi funiculus -furcula furculum -furculae furcula -furfures furfur -galeae galea -gambadoes gambado -gametangia gametangium -gametoecia gametoecium -gammadia gammadion -ganglia ganglion -garfishes garfish -gas gas -gasses gas -gastrulae gastrula -gateaux gateau -gazeboes gazebo -geckoes gecko -geese goose -gelsemia gelsemium -gemboks gemsbok -gembucks gemsbuck -gemeinschaften gemeinschaft -gemmae gemma -genera genus -generatrices generatrix -geneses genesis -genii genius -gentes gens -gentlemen-at-arms gentleman-at-arms -gentlemen-farmers gentleman-farmer -genua genu -genus genus -germina germen -gesellschaften gesellschaft -gestalten gestalt -ghettoes ghetto -gingivae gingiva -gingkoes gingko -ginglymi ginglymus -ginkgoes ginkgo -gippoes gippo -glabellae glabella -gladioli gladiolus -glandes glans -gliomata glioma -glissandi glissando -globefishes globefish -globigerinae globigerina -glochidcia glochidium -glochidia glochidium -glomeruli glomerulus -glossae glossa -glottides glottis -glutaei glutaeus -glutei gluteus -gnoses gnosis -goatfishes goatfish -goboes gobo -godchildren godchild -goes go -goings-over going-over -goldfishes goldfish -gomphoses gomphosis -gonia gonion -gonidia gonidium -gonococci gonococcus -goodwives goodwife -goosefishes goosefish -gorgoneia gorgoneion -gospopoda gospodin -governors_general governor_general -goyim goy -gps gps -grafen graf -graffiti graffito -grandchildren grandchild -grants-in-aid grant-in-aid -granulomata granuloma -gravamina gravamen -grig-gris gris-gris -groszy grosz -grottoes grotto -guilder guilde -guilders guilde guilder -guitarfishes guitarfish -gummata gumma -gurnard gurnar -gurnards gurnar gurnard -guttae gutta -gymnasia gymnasium -gynaecea gynaeceum -gynaecia gynaecium -gynecea gynecium -gynecia gynecium -gynoecea gynoecium -gynoecia gynoecium -gyri gyrus -hadarim heder -hadjes hadj -haematolyses haematolysis -haematomata haematoma -haematozoa haematozoon -haemodialyses haemodialysis -haemolyses haemolysis -haemoptyses haemoptysis -haeredes haeres -haftaroth haftarah -hagfishes hagfish -haggadas haggada haggadah -haggadoth haggada -hajjes hajj -haleru haler -halfpence halfpenny -hallot hallah -halloth hallah -halluces hallux -haloes halo -halteres halter haltere -halves half -hamuli hamulus -hangers-on hanger-on -haphtaroth haphtarah -haredim haredi -haruspices haruspex -hasidim hasid -hassidim hassid -haustella haustellum -haustoria haustorium -hazzanim hazzan -hectocotyli hectocotylus -heirs-at-law heir-at-law -heldentenore heldentenor -helices helix -heliozoa heliozoan -hematolyses hematolysis -hematomata hematoma -hematozoa hematozoon -hemelytra hemelytron -hemielytra hemielytron -hemodialyses hemodialysis -hemolyses hemolysis -hemoptyses hemoptysis -hendecahedra hendecahedron -hens-and-chickens hen-and-chickens -heraclidae heraclid -heraklidae heraklid -herbaria herbarium -hermae herm herma -hermai herma -herniae hernia -heroes hero -herren herr -hetaerae hetaera -hetairai hetaira -hibernacula hibernaculum -hieracosphinges hieracosphinx -hila hilum -hili hilus -himatia himation -hippocampi hippocampus -hippopotami hippopotamus -his his -hoboes hobo -hogfishes hogfish -homunculi homunculus -honoraria honorarium -hooves hoof -horologia horologium -houses_of_cards house_of_cards -housewives housewife -humeri humerus -hydrae hydra -hydromedusae hydromedusa -hydrozoa hydrozoan -hymenoptera hymenopteran -hynia hymenium -hyniums hymenium -hypanthia hypanthium -hyperostoses hyperostosis -hyphae hypha -hypnoses hypnosis -hypochondria hypochondrium -hypogastria hypogastrium -hypogea hypogeum -hypophyses hypophysis -hypostases hypostasis -hypothalami hypothalamus -hypotheses hypothesis -hyraces hyrax -iambi iamb -ibices ibex -ibo igbo -ichthyosauri ichthyosaurus -ichthyosauruses ichthyosaur ichthyosaurus -iconostases iconostas iconostasis -icosahedra icosahedron -ideata ideatum -igorrorote igorrote -ilia ilium -imagines imago -imagoes imago -imperia imperium -impies impi -incubi incubus -incudes incus -indices index -indigoes indigo -indumenta indumentum -indusia indusium -infundibula infundibulum -ingushes ingush -innuendoes innuendo -inocula inoculum -inquisitors-general inquisitor-general -insectaria insectarium -insulae insula -intagli intaglio -interleaves interleaf -intermezzi intermezzo -interreges interrex -interregna interregnum -intimae intima -involucella involucellum -involucra involucre -involucra involucrum -irides iris -irs irs -is is -ischia ischium -isthmi isthmus -jackeroos jackaroo jackeroo -jackfishes jackfish -jackknives jackknife -jacks-in-the-box jack-in-the-box -jambeaux jambeau -jellyfishes jellyfish -jewelfishes jewelfish -jewfishes jewfish -jingoes jingo -jinn jinni -joes jo joe -judge_advocates_general judge_advocate_general -jura jus -kaddishim kaddish -kalmuck kalmuc -kalmucks kalmuc kalmuck -katabases katabasis -keeshonden keeshond -kibbutzim kibbutz -killifishes killifish -kingfishes kingfish -kings-of-arms king-of-arms -knights_bachelor knight_bachelor -knights_bachelors knight_bachelor -knights_templar knight_templar -knights_templars knight_templar -knives knife -kohlrabies kohlrabi -kronen krone -kroner krone -kronur krona -krooni kroon -kylikes kylix -labara labarum -labella labellum -labia labium -labra labrum -lactobacilli lactobacillus -lacunae lacuna -lacunaria lacunar -ladies-in-waiting lady-in-waiting -lamellae lamella -lamiae lamia -laminae lamina -lapilli lapillus -lapithae lapith -larvae larva -larynges larynx -lassoes lasso -lati lat -latices latex -latifundia latifundium -latu lat -lavaboes lavabo -leaves leaf leave -lecythi lecythus -leges lex -lei leu -lemmata lemma -lemnisci lemniscus -lenes lenis -lentigines lentigo -leonides leonid -lepidoptera lepidopteran -leprosaria leprosarium -lepta lepton -leptocephali leptocephalus -leucocytozoa leucocytozoan -leva lev -librae libra -libretti libretto -lice louse -lieder lied -ligulae ligula -limbi limbus -limina limen -limites limes -limuli limulus -lingoes lingo -linguae lingua -linguae_francae lingua_franca -lionfishes lionfish -lipomata lipoma -lire lira -liriodendra liriodendron -lisente sente -listente sente -litai lit litas -litu litas -lives life -lixivia lixivium -loaves loaf -loci locus -loculi loculus -loggie loggia -logia logion -lomenta lomentum -longobardi longobard -loricae lorica -loups-garous loup-garou -luba luba -lubritoria lubritorium -lumbus lumbi -lumina lumen -lumpfishes lumpfish -lungfishes lungfish -lunulae lunula -lures lur lure -lustra lustre -lyings-in lying-in -lymphangitides lymphangitis -lymphomata lymphoma -lymphopoieses lymphopoiesis -lyses lysis -lyttae lytta -maare maar -macaronies macaroni -maccaronies maccaroni -machzorim machzor -macronuclei macronucleus -macrosporangia macrosporangium -maculae macula -madornos madrono -maestri maestro -mafiosi mafioso -magi magus -magmata magma -magnificoes magnifico -mahzorim mahzor -major-axes major_axis -major_axes major_axis -makuta likuta -mallei malleus -malleoli malleolus -maloti loti -mamillae mamilla -mammae mamma -mammillae mammilla -mandingoes mandingo -mangoes mango -manifestoes manifesto -manteaux manteau -mantes mantis -manubria manubrium -marchese marchesa -marchesi marchese -maremme maremma -markkaa markka -marsupia marsupium -marvels-of-peru marvel-of-peru -mass_media mass_medium -masses mass masse -masters-at-arms master-at-arms -matrices matrix -matzoth matzo -mausolea mausoleum -maxillae maxilla -maxima maximum -media medium -mediae media -mediastina mediastinum -medullae medulla -medullae_oblongatae medulla_oblongata -medusae medusa -megara megaron -megasporangia megasporangium -megilloth megillah -meioses meiosis -melanomata melanoma -melismata melisma -mementoes memento -memoranda memorandum -men man -men-at-arms man-at-arms -men-o'-war man-of-war -men-of-war man-of-war -men_of_letters man_of_letters -menisci meniscus -menservants manservant -menstrua menstruum -mesdames madame -mesdemoiselles mademoiselle -mesentera mesenteron -mesothoraces mesothorax -messeigneurs monseigneur -messieurs monsieur -mestizoes mestizo -metacarpi metacarpus -metamorphoses metamorphosis -metanephroi metanephros -metastases metastasis -metatarsi metatarsus -metatheses metathesis -metathoraces metathorax -metazoa metazoan -metempsychoses metempsychosis -metencephala metencephalon -mezuzoth mezuzah -miasmata miasma -mice mouse -microanalyses microanalysis -micrococci micrococcus -micronuclei micronucleus -microsporangia microsporangium -midrashim midrash -midwives midwife -milia milium -milieux milieu -militated_against militate_against -milkfishes milkfish -millennia millennium -minae mina -minima minimum -ministeria ministerium -minutiae minutia -minyanim minyan -mioses miosis -miracidia miracidium -miri mir -mishnayoth mishna mishnah -mitochondria mitochondrion -mitzvoth mitzvah -modioli modiolus -moduli modulus -momenta momentum -moments_of_truth moment_of_truth -momi momus -monades monad monas -monkfishes monkfish -monochasia monochasium -monopodia monopodium -monoptera monopteron -monopteroi monopteros -monsignori monsignor -monts-de-piete mont-de-piete -mooncalves mooncalf -moonfishes moonfish -morae mora -moratoria moratorium -morceaux morceau -morescoes moresco -moriscoes morisco -morphallaxes morphallaxis -morphoses morphosis -morses morse mors -morulae morula -mosasauri mosasaurus -moshavim moshav -moslim moslem -moslims moslem -mosquitoes mosquito -mothers-in-law mother-in-law -mothers_superior mother_superior -mottoes motto -movers_and_shakers mover_and_shaker -mucosae mucosa -mucrones mucro -mudejares mudejar -mudfishes mudfish -mulattoes mulatto -multiparae multipara -murices murex -muskallunge muskellunge -mycelia mycelium -mycetomata mycetoma -mycobacteria mycobacterium -mycorrhizae mycorrhiza -myelencephala myelencephalon -myiases myiasis -myocardia myocardium -myofibrillae myofibrilla -myomata myoma -myoses myosis -myrmidones myrmidon -mythoi mythos -myxomata myxoma -naevi naevus -naiades naiad -naoi naos -narcissi narcissus -nares naris -nasopharynges nasopharynx -natatoria natatorium -naumachiae naumachia -nauplii nauplius -nautili nautilus -navahoes navaho -navajoes navajo -nebulae nebula -necropoleis necropolis -needlefishes needlefish -negrilloes negrillo -negritoes negrito -negroes negro -nemeses nemesis -nephridia nephridium -nereides nereid -neurohypophyses neurohypophysis -neuromata neuroma -neuroptera neuropteron -neuroses neurosis -nevi nevus -nibelungen nibelung -nidi nidus -nielli niello -nilgai nilgai -nimbi nimbus -nimbostrati nimbostratus -noctilucae noctiluca -nodi nodus -noes no -nomina nomen -nota notum -noumena noumenon -novae nova -novelle novella -novenae novena -nubeculae nubecula -nucelli nucellus -nuchae nucha -nuclei nucleus -nucleoli nucleolus -nulliparae nullipara -numbfishes numbfish -numina numen -nymphae nympha -oarfishes oarfish -oases oasis -obeli obelus -objets_d'art objet_d'art -obligati obligato -oboli obolus -occipita occiput -oceanaria oceanarium -oceanides oceanid -ocelli ocellus -ochreae ochrea -ocreae ochrea ocrea -octahedra octahedron -octopi octopus -oculi oculus -odea odeum -oedemata edema oedema -oesophagi esophagus oesophagus -oldwives oldwife -olea oleum -omasa omasum -omayyades omayyad -omenta omentum -ommatidia ommatidium -ommiades ommiad -onagri onager -oogonia oogonium -oothecae ootheca -operas_seria opera_seria -opercula operculum -optic_axes optic_axis -optima optimum -ora os -organa organon organum -organums organa organum -orthoptera orthopteron -osar os -oscula osculum -ossa os -osteomata osteoma -ostia ostium -ottomans othman ottoman -ova ovum -ovoli ovolo -ovotestes ovotestis -oxen ox -oxymora oxymoron -paddlefishes paddlefish -paise paisa -paleae palea -palestrae palestra -palingeneses palingenesis -pallia pallium -palmettoes palmetto -palpi palpus -pancratia pancratium -panettoni panettone -paparazzi paparazzo -paperknives paperknife -papillae papilla -papillomata papilloma -pappi pappus -papulae papula -papyri papyrus -parabases parabasis -paraleipses paraleipsis paralipsis -paralyses paralysis -paramecia paramecium -paramenta parament -paraphyses paraphysis -parapodia parapodium -parapraxes parapraxis -paraselenae paraselene -parashoth parashah -parasyntheta parasyntheton -parazoa parazoan -parentheses parenthesis -parerga parergon -parhelia parhelion -parietes paries -paris-mutuels pari-mutuel -parrotfishes parrotfish -parulides parulis -pasos_dobles paso_doble -passers-by passer-by -pastorali pastorale -patagia patagium -patellae patella -patinae patina -patresfamilias paterfamilias -pease pea -peccadilloes peccadillo -pectines pecten -pedaloes pedalo -pedes pes -pekingese pekinese -pelves pelvis -pence penny -penes penis -penetralium penetralia -penicillia penicillium -penknives penknife -pennae penna -pennia penni -pentahedra pentahedron -pentimenti pentimento -penumbrae penumbra -pepla peplum -pericardia pericardium -perichondria perichondrium -pericrania pericranium -peridia peridium -perigonia perigonium -perihelia perihelion -perinea perineum -perinephria perinephrium -perionychia perionychium -periostea periosteum -periphrases periphrasis -peristalses peristalsis -perithecia perithecium -peritonea peritoneum -personae persona -petechiae petechia -pfennige pfennig -phalanges phalange phalanx -phalli phallus -pharynges pharynx -phenomena phenomenon -phi-phenomena phi-phenomenon -philodendra philodendron -phlyctenae phlyctaena phlyctena -phyla phylum -phylae phyle -phyllotaxes phyllotaxis -phylloxerae phylloxera -phylogeneses phylogenesis -pieds-a-terre pied-a-terre -pigfishes pigfish -pilea pileum -pilei pileus -pineta pinetum -pinfishes pinfish -pinkoes pinko -pinnae pinna -pinnulae pinnula -pipefishes pipefish -pirogi pirog -piscinae piscina -pithecanthropi pithecanthropus -pithoi pithos -placeboes placebo -placentae placenta -planetaria planetarium -planulae planula -plasmodesmata plasmodesma -plasmodia plasmodium -plateaux plateau -plectra plectron plectrum -plena plenum -pleura pleuron -pleurae pleura -plicae plica -ploughmen ploughman plowman -pneumobacilli pneumobacillus -pneumococci pneumococcus -pocketknives pocketknife -podetia podetium -podia podium -poleis polis -pollices pollex -pollinia pollinium -polychasia polychasium -polyhedra polyhedron -polyparia polyparium -polypi polypus -polyzoa polyzoan -polyzoaria polyzoarium -pontes pons -pontifices pontifex -portamenti portamento -porticoes portico -portmanteaux portmanteau -postliminia postliminium -potatoes potato -praenomina praenomen -praxes praxis -predelle predella -premaxillae premaxilla -prenomina prenomen -prese presa -primi primo -primigravidae primigravida -primiparae primipara -primordia primordium -principia principium -proboscides proboscis -proces-verbaux proces-verbal -proglottides proglottid proglottis -prognoses prognosis -prolegomena prolegomenon -prolepses prolepsis -promycelia promycelium -pronephra pronephros -pronephroi pronephros -pronuclei pronucleus -propositi propositus -proptoses proptosis -propyla propylon -propylaea propylaeum -proscenia proscenium -prosencephala prosencephalon -prostheses prosthesis -prostomia prostomium -protases protasis -prothalamia prothalamion prothalamium -prothalli prothallus -prothallia prothallium -prothoraces prothorax -protonemata protonema -protozoa protozoan -proventriculi proventriculus -provisoes proviso -prytanea prytaneum -psalteria psalterium -pseudopodia pseudopodium -psychoneuroses psychoneurosis -psychoses psychosis -pterygia pterygium -pterylae pteryla -ptoses ptosis -pubes pubis -pudenda pudendum -puli pul -pulvilli pulvillus -pulvini pulvinus -punchinelloes punchinello -pupae pupa -puparia puparium -putamina putamen -putti putto -pycnidia pycnidium -pygidia pygidium -pylori pylorus -pyxides pyxis -pyxidia pyxidium -qaddishim qaddish -quadrennia quadrennium -quadrigae quadriga -qualia quale -quanta quantum -quarterstaves quarterstaff -quezales quezal -quinquennia quinquennium -quizzes quiz -rabatos rabato rebato -rabbitfishes rabbitfish -rachides rhachis -radices radix -radii radius -radulae radula -ramenta ramentum -rami ramus -ranulae ranula -ranunculi ranunculus -raphae raphe -raphides raphide raphis -ratfishes ratfish -reales real -rearmice rearmouse -recta rectum -recti rectus -rectrices rectrix -redfishes redfish -rediae redia -referenda referendum -refugia refugium -reguli regulus -reis real -relata relatum -remiges remex -reremice rearmouse reremouse -reseaux reseau -residua residuum -responsa responsum -retia rete -retiarii retiarius -reticula reticulum -retinacula retinaculum -retinae retina -rhabdomyomata rhabdomyoma -rhachides rhachis -rhachises rachis rhachis -rhinencephala rhinencephalon -rhizobia rhizobium -rhombi rhombus -rhonchi rhonchus -rhyta rhyton -ribbonfishes ribbonfish -ricercacari ricercare -ricercari ricercare -rickettsiae rickettsia -rilievi rilievo -rimae rima -robes-de-chambre robe-de-chambre -rockfishes rockfish -roma rom -romans-fleuves roman-fleuve -rondeaux rondeau -rosaria rosarium -rosefishes rosefish -rostella rostellum -rostra rostrum -rouleaux rouleau -rugae ruga -rumina rumen -runners-up runner-up -sacra sacrum -sacraria sacrarium -saguaros saguaro sahuaro -sailfishes sailfish -salespeople salesperson -salmonellae salmonella -salpae salpa -salpinges salpinx -saltarelli saltarello -salvoes salvo -sancta sanctum -sanitaria sanitarium -santimi santims -saphenae saphena -sarcophagi sarcophagus -sartorii sartorius -sassanidae sassanid -sawfishes sawfish -scaldfishes scaldfish -scaleni scalenus -scapulae scapula -scarabaei scarabaeus -scarves scarf -schatchonim schatchen shadchan -schemata schema -scherzandi scherzando -scherzi scherzo -schmoes schmo -scholia scholium -schuln schul -schutzstaffeln schutzstaffel -scirrhi scirrhus -scleromata scleroma -scleroses sclerosis -sclerotia sclerotium -scoleces scolex -scolices scolex -scopulae scopula -scoriae scoria -scotomata scotoma -scriptoria scriptorium -scrota scrotum -scudi scudo -scuta scutum -scutella scutellum -scyphi scyphus -scyphistomae scyphistoma -scyphozoa scyphozoan -secondi secondo -secretaries-general secretary-general -segni segno -seleucidae seleucid -selves self -senores senor -sensilla sensillum -senti sent -senussis senusi senussi -separatrices separatrix -sephardim sephardi -septa septum -septaria septarium -septennia septennium -sequelae sequela -sequestra sequestrum -sera serum -seraphim seraph -sestertia sestertium -setae seta -sgraffiti sgraffito -shabbasim shabbas -shabbatim shabbat -shackoes shacko -shadchanim shadchan -shadchans schatchen shadchan -shakoes shako -shammosim shammas shammes -sheatfishes sheatfish -sheaves sheaf -shellfishes shellfish -shelves shelf -shinleaves shinleaf -shittim shittah -shmoes shmo -shofroth shofar shophar -shophroth shophar -shrewmice shrewmouse -shuln shul -siddurim siddur -sigloi siglos -signore signora -signori signior signore -signorine signorina -siliquae siliqua -silvae silva -silverfishes silverfish -simulacra simulacrum -sincipita sinciput -sinfonie sinfonia -sisters-in-law sister-in-law -sistra sistrum -situlae situla -smalti smalto -snaggleteeth snaggletooth -snailfishes snailfish -snipefishes snipefish -socmen socman sokeman -sola solum -solaria solarium -solatia solatium -soldi soldo -soles sol sole -solfeggi solfeggio -soli solo -solidi solidus -somata soma -sons-in-law son-in-law -soprani soprano -sordini sordino -sori sorus -soroses sorosis -sovkhozy sovkhoz -spadefishes spadefish -spadices spadix -spearfishes spearfish -spectra spectrum -specula speculum -spermatia spermatium -spermatogonia spermatogonium -spermatozoa spermatozoon -spermogonia spermogonium -sphinges sphinx -spicae spica -spicula spiculum -spirilla spirillum -splayfeet splayfoot -splenii splenius -sporangia sporangium -sporogonia sporogonium -sporozoa sporozoan -springhase springhaas -spumoni spumone -sputa sputum -squamae squama -squashes squash -squillae squilla -squirrelfishes squirrelfish -squizzes squiz -stadia stadium -stamina stamen -staminodia staminodium -stapedes stapes -staphylococci staphylococcus -staretsy starets -starfishes starfish -startsy starets -stelae stele -stemmata stemma -stenoses stenosis -stepchildren stepchild -sterna sternum -stigmata stigma -stimuli stimulus -stipites stipes -stirpes stirps -stoae stoa -stockfishes stockfish -stomata stoma -stomodaea stomodaeum -stomodea stomodeum -stonefishes stonefish -stotinki stotinka -stotkini stotinka -strappadoes strappado -strata stratum -strati stratus -stratocumuli stratocumulus -street_children street_child -streptococci streptococcus -stretti stretto -striae stria -strobili strobilus -stromata stroma -strumae struma -stuccoes stucco -styli stylus -stylopes stylops -stylopodia stylopodium -subcortices subcortex -subdeliria subdelirium -subgenera subgenus -subindices subindex -submucosae submucosa -subphyla subphylum -substrasta substratum -succedanea succedaneum -succubi succubus -suckerfishes suckerfish -suckfishes suckfish -sudaria sudarium -sudatoria sudatorium -sudatoria sudatorium -sulci sulcus -summae summa -sunfishes sunfish -supercargoes supercargo -superheroes superhero -supernovae supernova -superstrata superstratum -surgeonfishes surgeonfish -swamies swami -sweetiewives sweetiewife -swellfishes swellfish -swordfishes swordfish -syconia syconium -syllabi syllabus -syllepses syllepsis -symphyses symphysis -sympodia sympodium -symposia symposium -synapses synapsis -synarthroses synarthrosis -synclinoria synclinorium -syncytia syncytium -syndesmoses syndesmosis -synopses synopsis -syntagmata syntagma -syntheses synthesis -syphilomata syphiloma -syringes syrinx -syssarcoses syssarcosis -tableaux tableau -taeniae taenia tenia -tali talus -tallaisim tallith -tallithes tallith -tallitoth tallith -tapeta tapetum -tarantulae tarantula -tarsi tarsus -tarsometatarsi tarsometatarsus -taxa taxon -taxes tax taxis -taxies taxi -tectrices tectrix -teeth tooth -tegmina tegmen -telae tela -telamones telamon -telangiectases telangiectasia telangiectasis -telia telium -tempi tempo -tenacula tenaculum -tenderfeet tenderfoot -teniae tenia -tenues tenuis -teraphim teraph -terata teras -teredines teredo -terga tergum -termini terminus -terraria terrarium -terzetti terzetto -tesserae tessera -testae testa -testes testis -testudines testudo -tetrahedra tetrahedron -tetraskelia tetraskelion -thalamencephala thalamencephalon -thalami thalamus -thalli thallus -theatres-in-the-round theatre-in-the-round -thecae theca -therses thyrse -thesauri thesaurus -theses thesis -thickleaves thickleaf -thieves thief -tholoi tholos -thoraces thorax -thrombi thrombus -thymi thymus -thyrsi thyrsus -tibiae tibia -tilefishes tilefish -tintinnabula tintinnabulum -titmice titmouse -toadfishes toadfish -tobaccoes tobacco -tomatoes tomato -tomenta tomentum -tondi tondo -tonneaux tonneau -tophi tophus -topoi topos -tori torus -tornadoes tornado -torpedoes torpedo -torsi torso -touracos touraco turaco -trabeculae trabecula -tracheae trachea -traditores traditor -tragi tragus -trapezia trapezium -trapezohedra trapezohedron -traumata trauma -treponemata treponema -trichinae trichina -triclinia triclinium -triennia triennium -triforia triforium -triggerfishes triggerfish -trihedra trihedron -triskelia triskelion -trisoctahedra trisoctahedron -triumviri triumvir -trivia trivium -trochleae trochlea -tropaeola tropaeolum -trous-de-loup trou-de-loup -trousseaux trousseau -trunkfishes trunkfish -trymata tryma -tubae tuba -turves turf -tympana tympanum -tyros tiro tyro -ubermenschen ubermensch -uglies ugli -uigurs uighur -ulnae ulna -ultimata ultimatum -umbilici umbilicus -umbones umbo -umbrae umbra -unci uncus -uncidia uredium -uredines uredo -uredinia uredinium -uredosori uredosorus -urethrae urethra -urinalyses urinalysis -uteri uterus -utriculi utriculus -uvulae uvula -vacua vacuum -vagi vagus vagus -vaginae vagina -valleculae vallecula -vaporetti vaporetto -varices varix -vasa vas -vascula vasculum -vela velum -velamina velamen -velaria velarium -venae vena -venae_cavae vena_cava -ventriculi ventriculus -vermes vermis -verrucae verruca -vertebrae vertebra -vertices vertex -vertigines vertigo -vertigoes vertigo -vesicae vesica -vetoes veto -vexilla vexillum -viatica viaticum -viatores viator -vibracula vibraculum -vibrissae vibrissa -vice-chairman vice-chairman -villi villus -vimina vimen -vincula vinculum -viragoes virago -vires vis -virtuosi virtuoso -vitae vita -vitelli vitellus -vittae vitta -vivaria vivarium -voces vox -volcanoes volcano -volkslieder volkslied -volte volta -volvae volva -vorticellae vorticella -vortices vortex -vulvae vulva -wagons-lits wagon-lit -wahhabis wahabi wahhabi -wanderjahre wanderjahr -weakfishes weakfish -werewolves werewolf -wharves wharf -whippers-in whipper-in -whitefishes whitefish -wives wife -wolffishes wolffish -wolves wolf -woodlice woodlouse -wreckfishes wreckfish -wunderkinder wunderkind -xiphisterna xiphisternum -yeshivahs yeshiva -yeshivoth yeshiva -yogin yogi -yourselves yourself -zamindaris zamindari zemindari -zecchini zecchino -zeroes zero -zoa zoon -zoaeae zoaea zoea -zoeae zoea -zoeas zoaea -zoonoses zoonosis -zoosporangia zoosporangium diff --git a/corpora/en/wordnet/dict/sentidx.vrb b/corpora/en/wordnet/dict/sentidx.vrb deleted file mode 100644 index 85d6351ad..000000000 --- a/corpora/en/wordnet/dict/sentidx.vrb +++ /dev/null @@ -1,3421 +0,0 @@ -abash%2:37:00:: 126,127 -abhor%2:37:00:: 138,139,15 -abide%2:31:00:: 15 -abominate%2:37:00:: 138,139,15 -abound%2:42:01:: 152,151 -abridge%2:30:00:: 111 -absorb%2:31:03:: 159 -abuse%2:41:00:: 140 -accelerate%2:30:00:: 131 -accept%2:40:03:: 15 -acclaim%2:32:00:: 139 -accumulate%2:30:00:: 151 -accumulate%2:40:00:: 38 -accuse%2:32:01:: 140 -ache%2:39:00:: 144 -ache%2:39:01:: 14 -acid-wash%2:35:00:: 117 -acquire%2:40:00:: 4 -acquit%2:32:00:: 140 -actualize%2:36:00:: 115 -ad-lib%2:36:00:: 145 -add%2:32:01:: 112 -adjoin%2:35:03:: 23,24 -admire%2:39:00:: 15 -admit%2:40:00:: 15 -admonish%2:32:02:: 15 -adopt%2:36:00:: 115 -adore%2:37:00:: 15,139 -adorn%2:36:00:: 75 -adorn%2:42:00:: 76 -adulate%2:32:00:: 15 -advance%2:30:01:: 133 -advance%2:38:00:: 104 -advance%2:40:00:: 91,92 -advertize%2:32:00:: 139 -advise%2:32:00:: 15,123 -advise%2:32:02:: 123 -affect%2:37:00:: 126,127 -affirm%2:32:00:: 112 -afflict%2:37:00:: 126 -affright%2:37:00:: 126 -affront%2:32:00:: 159 -age%2:30:01:: 14 -aggrieve%2:37:00:: 126 -aggroup%2:33:00:: 151 -agitate%2:37:00:: 126,127 -agitate%2:38:00:: 151 -agonise%2:37:01:: 126 -agonize%2:37:01:: 126 -agree%2:32:00:: 14,129 -agree%2:32:01:: 137 -agree%2:32:04:: 14,129 -aid%2:41:00:: 15 -aim%2:31:00:: 137 -airmail%2:32:00:: 87,88 -alarm%2:37:00:: 126 -alienate%2:37:00:: 159 -allay%2:37:00:: 127 -allege%2:32:00:: 112 -allocate%2:40:00:: 91,92 -allot%2:40:02:: 33,34 -allow%2:32:00:: 123 -alter%2:36:00:: 117 -amass%2:30:00:: 151 -amass%2:40:00:: 38 -amaze%2:31:00:: 127,159 -amaze%2:31:01:: 126,127 -amble%2:38:00:: 1 -ambulate%2:38:00:: 14 -amputate%2:35:00:: 143 -amuse%2:32:00:: 15 -amuse%2:41:00:: 159,15 -analyse%2:31:00:: 139 -analyze%2:31:00:: 139 -anathematize%2:32:00:: 139 -anathemize%2:32:01:: 139 -ancylose%2:29:00:: 144 -anesthetize%2:29:00:: 143 -anger%2:37:00:: 126 -anger%2:37:01:: 160 -angle%2:33:00:: 161 -anguish%2:37:00:: 126 -anguish%2:37:02:: 160 -ankylose%2:29:00:: 144 -annotate%2:36:00:: 115 -announce%2:32:02:: 112 -annoy%2:37:00:: 126,159 -answer%2:32:00:: 112 -antagonise%2:37:00:: 159 -antagonize%2:37:00:: 159 -anticipate%2:31:00:: 138 -antique%2:40:00:: 161 -appal%2:37:00:: 126,159 -appal%2:37:01:: 126 -appall%2:37:00:: 126,159 -appear%2:30:00:: 134 -appear%2:39:00:: 137 -appease%2:37:00:: 159 -append%2:32:00:: 112 -apply%2:32:00:: 137 -appoint%2:41:00:: 123 -appreciate%2:40:00:: 139 -approach%2:32:00:: 123 -approach%2:38:00:: 14 -aquaplane%2:38:01:: 131 -arbitrate%2:32:00:: 14 -archive%2:35:00:: 70 -argue%2:32:00:: 14,129 -argue%2:32:02:: 14,129 -arise%2:29:00:: 14 -arise%2:38:00:: 14 -arise%2:41:00:: 97 -arouse%2:37:01:: 159 -arraign%2:41:00:: 140 -arrange%2:29:00:: 146 -arrange%2:35:00:: 21,37 -arrange%2:36:00:: 115 -arrive%2:38:00:: 109 -arrive_at%2:38:00:: 105 -ascend%2:38:02:: 136 -ascertain%2:31:01:: 112 -ascertain%2:32:00:: 113 -ask%2:32:00:: 113 -ask%2:32:01:: 123 -ask%2:32:04:: 93 -ask%2:32:05:: 123 -asphyxiate%2:35:00:: 140 -aspire%2:31:00:: 137 -assay%2:41:00:: 137 -assemble%2:41:00:: 151 -assemble%2:41:03:: 140 -assert%2:32:00:: 112 -assert%2:32:01:: 112 -asseverate%2:32:00:: 112 -assign%2:40:01:: 89,90 -assign%2:41:00:: 123 -assist%2:41:01:: 15 -assist%2:41:02:: 15 -assuage%2:37:00:: 159 -assure%2:37:00:: 127 -astonish%2:31:00:: 127,159 -astound%2:31:00:: 127,159 -attain%2:38:01:: 105 -attaint%2:41:00:: 159 -attempt%2:41:00:: 137 -attend_to%2:41:01:: 15 -attest%2:32:01:: 112 -attest%2:32:02:: 112 -author%2:36:00:: 115 -aver%2:32:00:: 112 -aver%2:32:01:: 112 -avow%2:32:00:: 112 -award%2:40:01:: 91,29 -awe%2:37:00:: 15,159 -ax%2:35:00:: 147 -axe%2:35:00:: 147 -babble%2:32:00:: 14 -babble%2:32:02:: 14 -back%2:40:00:: 139 -back_up%2:41:00:: 15 -backfire%2:39:00:: 10 -backpack%2:38:00:: 14,26 -badger%2:32:00:: 123 -badger%2:37:00:: 15 -baffle%2:31:00:: 126,127,159 -bag%2:35:00:: 71 -bag%2:40:01:: 69 -bake%2:30:00:: 116 -balance%2:42:01:: 162,163 -bald%2:30:00:: 97 -ball_over%2:37:00:: 126,127,159 -ban%2:41:00:: 139 -bandage%2:29:00:: 143 -bang%2:35:01:: 141 -bang_out%2:36:00:: 145 -bank%2:40:00:: 69 -bankroll%2:40:00:: 139 -banquet%2:34:00:: 14 -banquet%2:34:01:: 15 -baptise%2:32:00:: 170 -baptize%2:32:00:: 170 -barbecue%2:30:00:: 116 -bare%2:30:00:: 147 -bargain%2:40:00:: 14,129 -bargain_down%2:40:00:: 15 -bark%2:32:01:: 112 -bark%2:35:00:: 147 -barter%2:40:00:: 14,129 -baste%2:35:01:: 140 -bat%2:35:00:: 130 -bathe%2:29:00:: 97,98 -batter%2:35:00:: 140 -battle%2:33:00:: 14,15 -bawl%2:32:00:: 14 -bawl_out%2:32:00:: 15 -bayonet%2:35:00:: 140 -be%2:42:03:: 109 -beach%2:38:00:: 72 -beam%2:43:03:: 149,150 -bear%2:31:00:: 15 -bear_on%2:32:00:: 15 -beat%2:33:00:: 130 -beat%2:35:01:: 140 -beat%2:36:00:: 128 -beat_down%2:40:00:: 15 -beat_out%2:33:00:: 130 -beat_up%2:35:01:: 140 -beautify%2:36:00:: 75 -bebop%2:38:00:: 114 -becharm%2:37:00:: 159 -become%2:30:00:: 109 -bedaze%2:39:00:: 126,159 -bedevil%2:31:00:: 159 -beep%2:39:00:: 153,154 -beg%2:32:00:: 123,137 -begin%2:30:00:: 138,137 -begin%2:32:03:: 111 -begrudge%2:37:01:: 92 -beguile%2:37:00:: 159 -behead%2:35:00:: 140 -behold%2:39:00:: 70,98 -beleaguer%2:37:00:: 15 -believe%2:31:00:: 123 -believe%2:31:03:: 112 -believe%2:31:04:: 112 -bellow%2:32:01:: 155,156 -belly_dance%2:36:00:: 97 -belong%2:42:03:: 42 -belt%2:35:00:: 130 -belt_out%2:36:00:: 145 -bemuse%2:37:00:: 126,127 -bend%2:35:00:: 12 -bend%2:38:00:: 13 -benumb%2:39:00:: 126,159 -bequeath%2:40:00:: 91,92 -berate%2:32:00:: 15 -berry%2:35:00:: 161 -bespatter%2:35:00:: 48 -best%2:33:00:: 130 -bet%2:33:00:: 69 -betray%2:41:00:: 15 -betray%2:41:01:: 15 -bewilder%2:31:00:: 126,127,159 -bewilder%2:37:00:: 126,127,159 -bicker%2:32:00:: 14,129 -bicycle%2:38:00:: 29,30 -bid%2:32:00:: 123 -bike%2:38:00:: 29,30 -bilk%2:41:00:: 148 -bind%2:35:07:: 140 -birch%2:35:00:: 140 -bird%2:33:00:: 161 -birdnest%2:35:00:: 161 -birdwatch%2:33:00:: 161 -blackberry%2:35:00:: 161 -blacklist%2:41:00:: 139 -blackmail%2:41:00:: 123 -blanch%2:30:00:: 116 -blanket%2:35:00:: 77 -blanket%2:42:00:: 78 -blare%2:39:00:: 153,154 -blast%2:39:00:: 153,154 -blat%2:32:00:: 155,156 -blate%2:32:00:: 155,156 -blather%2:32:00:: 14 -blaze%2:43:01:: 149,150 -bleat%2:32:00:: 155,156 -bleed%2:29:00:: 144 -bleed%2:40:09:: 148 -blindfold%2:35:00:: 140 -blink%2:39:00:: 149,150 -blister%2:30:00:: 144 -bloat%2:30:00:: 144 -block%2:30:02:: 69 -block%2:41:01:: 125 -blow%2:43:00:: 122 -blow_out_of_the_water%2:37:00:: 126,127 -blow_up%2:30:02:: 144 -blow_up%2:32:00:: 111 -blubber%2:29:00:: 14 -bludgeon%2:35:00:: 130 -blue-pencil%2:30:00:: 111 -bluff%2:32:00:: 15 -blunder_out%2:32:00:: 112 -blurt_out%2:32:00:: 112 -bob%2:29:00:: 146 -boggle%2:31:00:: 126,127,159 -boil%2:30:00:: 116 -boil%2:30:01:: 104 -boil%2:30:02:: 105 -boil%2:37:00:: 160 -boil%2:38:00:: 104 -bolt%2:34:00:: 35 -bolt_down%2:34:00:: 35 -boom%2:30:00:: 135 -boom%2:39:00:: 153,154 -boom%2:43:00:: 122,135 -boot%2:35:00:: 140 -booze%2:34:00:: 97 -bop%2:38:00:: 14 -bore%2:37:00:: 159 -bother%2:37:02:: 126 -bother%2:37:03:: 126,159 -bounce%2:35:03:: 4 -bounce%2:38:02:: 5,99 -bounce%2:40:00:: 3 -bounce%2:40:01:: 2 -bowdlerise%2:30:00:: 111 -bowdlerize%2:30:00:: 111 -bowl_over%2:31:00:: 126,127,159 -box%2:35:00:: 130 -box%2:35:01:: 14,15 -box%2:35:02:: 71 -braid%2:35:00:: 146 -brail%2:33:00:: 161 -brain%2:35:00:: 130 -brainwash%2:32:00:: 123 -braise%2:30:00:: 116 -brake%2:38:01:: 131 -brawl%2:32:00:: 14 -break%2:29:04:: 143 -break%2:30:00:: 7,100 -break%2:30:05:: 131 -break%2:30:08:: 133 -break%2:30:10:: 6 -break%2:38:00:: 14 -break-dance%2:38:00:: 14 -break_bread%2:34:00:: 14 -break_dance%2:38:00:: 14 -break_down%2:29:00:: 14 -break_down%2:30:00:: 131 -break_down%2:35:01:: 141 -break_down%2:37:00:: 14 -break_open%2:35:01:: 141 -breakfast%2:34:00:: 14 -breathe%2:32:00:: 14 -bribe%2:40:00:: 15 -bring%2:32:03:: 123 -bring%2:38:00:: 33,34 -bring_in%2:40:01:: 69 -bring_out%2:32:00:: 111 -bring_up%2:38:00:: 43 -bristle%2:42:00:: 152 -brocade%2:36:00:: 117 -broider%2:36:00:: 117 -broil%2:30:00:: 116 -broker%2:40:00:: 14 -brood%2:31:00:: 160 -brood%2:42:01:: 164,165 -brook%2:31:00:: 15 -browbeat%2:32:00:: 124 -brown%2:30:00:: 116 -brown-nose%2:32:00:: 15 -browse%2:34:00:: 14 -browse%2:35:01:: 106 -browse%2:40:00:: 161 -bruise%2:35:00:: 143 -brunch%2:34:00:: 14 -brush%2:35:02:: 117 -brush%2:35:10:: 48 -buff%2:35:00:: 12 -buffalo%2:37:00:: 15 -bug%2:37:00:: 123 -bug%2:39:00:: 140 -build%2:36:00:: 37 -bulge%2:42:00:: 152 -bully%2:32:00:: 124,140 -bumble%2:38:00:: 14 -bump%2:38:00:: 97 -bump_off%2:41:00:: 15 -bunco%2:41:00:: 148 -burn%2:30:00:: 7,101 -burn%2:30:02:: 147 -burn%2:43:01:: 149,150 -burn%2:43:02:: 147 -burn_down%2:30:02:: 147 -burnish%2:35:00:: 12 -burst%2:42:00:: 152 -bury%2:41:00:: 15 -buss%2:35:00:: 15 -bustle%2:38:00:: 151,152 -butcher%2:35:00:: 140 -butt%2:35:00:: 130 -butter_up%2:32:00:: 15 -buy%2:31:09:: 111 -buy%2:40:00:: 4 -buy%2:40:02:: 15 -buy_out%2:40:00:: 43 -buy_up%2:40:00:: 43 -buzz%2:42:00:: 152,151 -cabbage%2:40:00:: 71 -cable%2:32:00:: 93,94 -cache%2:40:00:: 38 -cackle%2:32:01:: 14 -cage%2:41:00:: 73 -cage_in%2:41:00:: 73 -cajole%2:32:00:: 124 -cakewalk%2:38:00:: 14 -calk%2:35:00:: 141 -call%2:32:01:: 15,97 -call%2:32:02:: 170 -call%2:32:05:: 15 -call%2:32:07:: 15 -call_on%2:32:00:: 123 -call_out%2:32:01:: 112 -call_up%2:32:00:: 15,97 -calm%2:37:00:: 159 -calm_down%2:37:00:: 159 -camouflage%2:39:00:: 97,98 -can%2:30:00:: 116 -canalize%2:38:00:: 85 -cane%2:35:00:: 140 -canoe%2:38:00:: 27,28 -canter%2:38:01:: 20 -canter%2:38:03:: 22 -cantillate%2:32:00:: 145 -captivate%2:37:00:: 159 -capture%2:37:00:: 159 -care%2:37:00:: 137 -care%2:37:02:: 14 -care_for%2:29:00:: 143 -care_for%2:37:08:: 15,139 -caress%2:35:00:: 14,15 -carol%2:36:00:: 14 -carpet%2:35:01:: 77 -carpet%2:42:00:: 78 -carry%2:42:01:: 35 -cascade_down%2:38:00:: 104 -case%2:35:01:: 71 -cast%2:35:00:: 36 -cast%2:36:00:: 115 -cast%2:41:14:: 139 -cat%2:35:00:: 140 -catapult%2:35:01:: 36 -catch%2:39:02:: 139 -caulk%2:35:00:: 141 -cause%2:32:00:: 123 -cease%2:42:00:: 138 -censor%2:41:00:: 139 -certify%2:32:00:: 112 -chaffer%2:40:00:: 13,129 -chagrin%2:37:01:: 159 -chain_up%2:35:00:: 140 -chair%2:32:00:: 14 -challenge%2:32:00:: 123 -change%2:30:01:: 102 -change%2:30:02:: 29 -change%2:30:03:: 97 -change%2:30:04:: 69 -change%2:38:00:: 97 -channel%2:38:00:: 85 -chant%2:32:00:: 145 -chant%2:32:01:: 14 -charcoal%2:36:00:: 115 -charge%2:32:02:: 140 -charge%2:41:00:: 123 -charm%2:32:00:: 124 -charm%2:37:00:: 15,159 -chase%2:38:00:: 11 -chase%2:41:00:: 15 -chase_after%2:38:00:: 11 -chase_after%2:41:00:: 15 -chat%2:32:00:: 14,129 -chat_up%2:32:00:: 15 -chatter%2:32:00:: 14 -chatter%2:32:01:: 14,129 -chatter%2:32:02:: 157,158 -cheat%2:41:00:: 148,15 -cheat%2:41:01:: 14 -cheat%2:41:09:: 15 -cheat_on%2:41:00:: 15 -check%2:31:00:: 166,167 -check%2:32:10:: 113 -check%2:40:00:: 117 -check%2:41:04:: 111 -check%2:41:14:: 130 -check%2:42:09:: 111 -check_into%2:31:00:: 111 -check_out%2:31:00:: 111 -check_out%2:42:06:: 111 -check_over%2:31:00:: 111 -check_up_on%2:31:00:: 111 -checkmate%2:33:00:: 15 -cheer%2:37:02:: 127 -cheer_up%2:32:01:: 127 -cherish%2:37:00:: 139 -chew_out%2:32:00:: 15 -chew_up%2:32:00:: 15 -chill%2:30:00:: 104 -chill%2:30:01:: 105 -chill%2:37:00:: 126 -chip%2:35:00:: 12 -chip%2:35:01:: 13,100 -chitchat%2:32:00:: 14,129 -choir%2:36:00:: 14 -choose%2:31:00:: 123 -choose%2:31:02:: 123 -chop%2:35:00:: 116 -chop%2:35:01:: 116 -chop_down%2:35:00:: 147 -chop_up%2:35:00:: 116 -choreograph%2:36:00:: 115 -chorus%2:36:00:: 14 -christen%2:32:00:: 170 -chuck%2:35:00:: 4 -chug%2:39:00:: 153,154 -churn%2:38:00:: 104 -churn_out%2:36:01:: 145 -churn_up%2:37:00:: 159 -cinematize%2:36:00:: 115 -cite%2:32:01:: 139 -cite%2:32:02:: 95,96 -clack%2:39:00:: 153,154 -claim%2:32:00:: 137 -clam%2:35:00:: 161 -clang%2:39:00:: 153,154 -clangor%2:39:01:: 153,154 -classify%2:41:00:: 139 -clatter%2:39:00:: 153,154 -clean%2:29:00:: 98 -clean%2:30:02:: 116 -clean%2:35:00:: 117 -clean%2:35:02:: 83 -cleanse%2:29:00:: 98 -clear%2:30:01:: 83 -clear%2:30:02:: 84 -clear%2:32:00:: 140 -clear%2:40:00:: 69 -click_open%2:35:00:: 141 -climb%2:30:01:: 133 -climb%2:38:00:: 25,26 -clobber%2:35:00:: 130 -clobber%2:35:01:: 140 -clog%2:36:00:: 14 -clomp%2:38:00:: 151,152 -close%2:35:00:: 141 -close%2:35:06:: 142 -close%2:41:00:: 135 -close_down%2:41:00:: 135 -clout%2:35:00:: 130 -club%2:35:00:: 130 -clump%2:38:00:: 151,152 -clump%2:38:01:: 151 -clunk%2:39:00:: 153,154 -cluster%2:38:00:: 151 -co-author%2:36:00:: 115 -coat%2:35:00:: 77 -coat%2:35:01:: 78 -coax%2:32:00:: 124 -coddle%2:30:00:: 128 -coerce%2:41:00:: 123 -coggle%2:38:00:: 1 -coif%2:29:00:: 146 -coiffe%2:29:00:: 146 -coiffure%2:29:00:: 146 -coil%2:35:00:: 46,47 -collapse%2:29:00:: 14 -collapse%2:38:00:: 135 -collect%2:40:00:: 151 -collide%2:35:00:: 131 -collide_with%2:35:00:: 108,15 -collogue%2:32:00:: 14,129 -color%2:30:00:: 146 -comb%2:29:00:: 146 -comb%2:35:00:: 166,167 -comb%2:35:01:: 146 -comb_out%2:29:00:: 146 -come%2:38:00:: 28 -come%2:38:04:: 131 -come%2:39:00:: 14 -come_across%2:39:00:: 109 -come_down%2:38:00:: 136 -come_near%2:38:00:: 14 -come_of_age%2:41:00:: 14 -come_through%2:41:00:: 135 -come_through%2:42:00:: 135 -come_up%2:38:00:: 134 -come_up%2:38:02:: 1 -comfort%2:37:01:: 127 -command%2:32:00:: 123 -commence%2:30:00:: 138 -commend%2:32:00:: 139 -commend%2:32:02:: 138 -commiserate%2:37:00:: 14 -commission%2:41:00:: 123 -commit%2:41:00:: 123 -communicate%2:32:01:: 94 -compel%2:41:00:: 123 -complain%2:32:00:: 112 -complete%2:30:02:: 111 -complot%2:31:00:: 137 -compose%2:36:01:: 115,145 -compose%2:36:03:: 115 -con%2:41:00:: 148 -conceal%2:39:01:: 98 -conceive%2:36:00:: 115 -conceptualise%2:36:00:: 115 -conceptualize%2:36:00:: 115 -concern%2:42:01:: 126 -conciliate%2:37:00:: 159 -conclude%2:31:00:: 112 -concoct%2:36:00:: 115 -concur%2:32:00:: 14,129 -condemn%2:32:01:: 140 -condense%2:30:01:: 104 -condense%2:30:03:: 105 -condition%2:29:00:: 146 -condole_with%2:37:00:: 15 -confer%2:32:00:: 15,129 -confide%2:32:00:: 112 -confine%2:35:01:: 140 -confine%2:41:00:: 140 -confirm%2:32:00:: 112 -confound%2:31:02:: 159 -confuse%2:37:00:: 126,127,159 -conga%2:38:00:: 14 -conglomerate%2:30:00:: 151 -congregate%2:38:00:: 151 -conjecture%2:31:00:: 112 -conk%2:35:00:: 139 -conk_out%2:30:00:: 131 -consider%2:32:00:: 102 -consider%2:32:02:: 138 -console%2:37:00:: 127,159 -conspire%2:31:00:: 137 -constellate%2:38:00:: 151 -consternate%2:37:00:: 126,127 -construct%2:36:00:: 37 -consult%2:32:00:: 14,15 -consult%2:32:02:: 14,15 -consult%2:32:05:: 15,129 -consume%2:34:03:: 35 -content%2:37:00:: 127 -continue%2:38:00:: 26 -continue%2:42:01:: 138,137 -contra_danse%2:38:00:: 14 -contract%2:32:00:: 137 -contradance%2:38:00:: 14 -contredanse%2:38:00:: 14 -contrive%2:36:00:: 115 -contrive%2:36:01:: 137 -contuse%2:35:00:: 143 -convene%2:38:00:: 151 -converse%2:32:00:: 14,129 -convert%2:32:00:: 15,159 -convey%2:32:00:: 94 -convey%2:40:10:: 87 -convince%2:32:00:: 123 -coo%2:32:01:: 14 -cook%2:30:00:: 116 -cook%2:36:00:: 116 -cool%2:30:00:: 104 -cool%2:30:01:: 105 -cool_down%2:30:00:: 105 -cool_down%2:30:01:: 104 -copyedit%2:31:00:: 111 -copyread%2:31:00:: 111 -copyright%2:40:00:: 139,145 -core_out%2:35:00:: 147 -corrode%2:30:00:: 131 -corrupt%2:40:00:: 15 -counsel%2:32:00:: 15,123 -count%2:32:00:: 69 -count%2:32:03:: 102 -counter%2:32:00:: 112 -country-dance%2:38:00:: 14 -court%2:41:10:: 14,15 -cover%2:32:02:: 111 -cover%2:35:00:: 75 -cover%2:35:01:: 76 -covet%2:37:00:: 69 -cow%2:37:00:: 15 -cowhide%2:35:00:: 140 -crab%2:33:00:: 161 -crack%2:30:01:: 13,100 -crack%2:30:05:: 12 -crack%2:35:00:: 130 -cram%2:35:00:: 50 -cram%2:35:10:: 50 -crank%2:38:00:: 131 -crank_up%2:38:00:: 131 -crape%2:35:00:: 146 -crash%2:35:00:: 131 -crash%2:35:01:: 13 -crash%2:38:02:: 132 -crash-dive%2:38:00:: 136 -crate%2:35:00:: 71 -crave%2:34:00:: 35 -crawl%2:38:00:: 152,152 -crayon%2:36:00:: 115 -creak%2:39:00:: 142 -crease%2:30:10:: 19,101 -crease%2:35:00:: 18 -create%2:36:03:: 139 -create%2:36:13:: 139 -creep%2:38:00:: 151,152 -creep%2:38:04:: 1 -cremate%2:30:00:: 15 -crib%2:40:00:: 71 -crimp%2:35:00:: 146 -crinkle%2:30:10:: 19,101 -crinkle%2:35:00:: 18 -critique%2:32:00:: 139 -crochet%2:36:01:: 117 -croon%2:32:00:: 14 -crop%2:35:00:: 147 -crop%2:35:01:: 106 -crop%2:35:10:: 73 -cross%2:38:00:: 32 -cross%2:38:03:: 23,24 -cross%2:41:00:: 15 -crouch%2:35:00:: 162,163 -crow%2:32:00:: 160 -crowd%2:42:00:: 151 -crucify%2:41:00:: 140 -cruise%2:38:02:: 10 -cruise%2:38:03:: 29 -crumble%2:38:00:: 135 -crumple%2:30:10:: 19,101 -crumple%2:35:00:: 18 -crush%2:30:00:: 12 -crush%2:30:08:: 13 -crush%2:33:00:: 130 -crush%2:37:00:: 126 -cry%2:32:03:: 155,156 -cry%2:32:07:: 112 -cube%2:35:00:: 116 -cuddle%2:35:00:: 14,15 -cuff%2:35:00:: 130 -cuff%2:35:01:: 140 -cultivate%2:36:00:: 56 -curl%2:35:00:: 146 -curl%2:35:01:: 46,47 -curry%2:29:00:: 73 -curse%2:32:02:: 140 -customise%2:30:00:: 37 -customize%2:36:00:: 37 -cut%2:30:06:: 145 -cut%2:30:07:: 145 -cut%2:32:00:: 2 -cut%2:35:00:: 70 -cut%2:35:14:: 98 -cut%2:35:15:: 56 -cut%2:36:00:: 117 -cut%2:36:05:: 145 -cut_back%2:35:00:: 147 -cut_down%2:35:00:: 130 -cut_down%2:35:01:: 56 -cut_down%2:35:02:: 147 -cut_down%2:35:03:: 147 -cut_in%2:38:00:: 131 -cut_in%2:40:00:: 15 -cut_off%2:35:01:: 143 -cut_up%2:30:00:: 111 -cut_up%2:35:00:: 117 -dab%2:35:01:: 48 -dally%2:31:01:: 129 -dally%2:32:00:: 129 -dance%2:36:00:: 14 -dance%2:38:01:: 151,152 -dangle%2:35:00:: 40 -dangle%2:42:00:: 164,165 -dare%2:32:00:: 123 -dash_off%2:36:00:: 115 -date%2:41:01:: 15,14 -daub%2:35:02:: 48,63 -daunt%2:37:00:: 159 -daze%2:39:00:: 126,159 -debate%2:31:00:: 14,15 -debate%2:32:00:: 14,120 -debate%2:32:02:: 138 -decapitate%2:35:00:: 140 -decide%2:31:00:: 137 -deck%2:35:00:: 130 -deck%2:36:00:: 75 -deck%2:42:00:: 76 -declare%2:32:05:: 112 -declassify%2:41:00:: 139 -decline%2:30:01:: 133,135 -decline%2:32:00:: 137 -decline%2:40:00:: 69 -decompress%2:29:00:: 14 -deconstruct%2:32:00:: 139 -deduct%2:40:00:: 69 -deep-fat-fry%2:30:00:: 116 -deep-fry%2:30:00:: 116 -deep_freeze%2:30:00:: 116 -defeat%2:33:00:: 130 -defend%2:41:00:: 140 -deflect%2:33:00:: 130 -defoliate%2:30:00:: 147 -deform%2:35:01:: 12 -defraud%2:41:00:: 148 -defy%2:32:00:: 123 -deject%2:37:00:: 126 -delay%2:42:00:: 107 -delegate%2:41:00:: 123 -deliberate%2:32:00:: 14,129 -delight%2:34:00:: 160 -delight%2:37:00:: 127 -delight%2:37:02:: 127 -deliver%2:35:00:: 87 -deluge%2:30:00:: 79 -demand%2:32:00:: 137 -demand%2:32:02:: 2 -demolish%2:33:00:: 10 -demolish%2:37:00:: 126 -demonstrate%2:32:00:: 112 -demoralize%2:37:00:: 126 -denudate%2:30:00:: 147 -denude%2:30:00:: 147 -deny%2:32:00:: 112 -deny%2:32:01:: 112 -deny%2:40:00:: 92 -depart%2:38:01:: 131 -deplete%2:34:00:: 148 -deplore%2:32:01:: 112 -deposit%2:40:00:: 69 -depress%2:37:00:: 126 -deprive%2:40:01:: 148 -depute%2:41:03:: 123 -descant%2:32:00:: 14 -descant%2:32:01:: 14 -descant_on%2:36:00:: 145 -descend%2:38:00:: 136 -desert%2:31:00:: 15 -design%2:36:01:: 115 -design%2:36:02:: 115,117 -design%2:36:07:: 115 -designate%2:41:00:: 123 -desire%2:37:00:: 137 -desire%2:37:02:: 137 -despair%2:37:00:: 14,160 -despise%2:37:00:: 15 -destroy%2:33:00:: 130 -detain%2:41:00:: 140 -deter%2:32:00:: 15,123 -determine%2:31:00:: 137 -determine%2:32:01:: 113 -detest%2:37:00:: 139,15 -devastate%2:30:01:: 126 -develop%2:30:10:: 14 -develop%2:36:00:: 115 -devil%2:36:00:: 116 -devil%2:37:00:: 159 -devise%2:36:00:: 115 -devour%2:34:00:: 35 -devour%2:34:01:: 35 -dice%2:35:00:: 116 -dicker%2:40:00:: 14,129 -diddle%2:41:00:: 148 -die%2:30:01:: 135 -die%2:30:04:: 131 -digest%2:31:00:: 139 -digest%2:34:00:: 116 -dilly-dally%2:42:00:: 117 -dine%2:34:01:: 14 -dine_in%2:34:00:: 14 -dine_out%2:34:00:: 14 -dip%2:30:01:: 133 -dip%2:38:01:: 134 -direct%2:32:00:: 123 -direct%2:36:00:: 139 -disaffect%2:37:00:: 159 -disallow%2:32:00:: 139 -disappear%2:30:00:: 131,14 -disappear%2:39:00:: 134 -disappoint%2:37:00:: 159,126 -disarm%2:37:00:: 15 -discharge%2:32:00:: 140 -disclose%2:32:00:: 112 -discombobulate%2:37:00:: 126,127 -discomfit%2:37:00:: 159 -discompose%2:37:00:: 159 -disconcert%2:37:01:: 159 -disconcert%2:37:02:: 126 -discontent%2:37:00:: 159 -discourage%2:32:01:: 125 -discourage%2:32:02:: 15,125 -discourage%2:37:00:: 126 -discourse%2:32:02:: 14,129 -discover%2:31:01:: 112 -discredit%2:32:00:: 159 -discuss%2:32:00:: 15,129 -disdain%2:37:00:: 15 -disenchant%2:37:00:: 159 -disentangle%2:29:00:: 146 -disentangle%2:35:00:: 146 -disgrace%2:41:00:: 159 -disgruntle%2:37:00:: 159 -disguise%2:39:00:: 98 -disgust%2:37:00:: 159 -dish%2:34:00:: 116 -dish_out%2:34:00:: 116 -dish_up%2:34:00:: 116 -dishearten%2:37:00:: 159,126 -dishonor%2:41:00:: 159 -dishonour%2:41:00:: 159 -disillusion%2:37:00:: 159 -dislike%2:37:00:: 15,139 -dismay%2:37:00:: 126,159 -dismay%2:37:01:: 126,159 -dismember%2:35:00:: 140 -dispatch%2:38:00:: 111 -dispatch%2:41:01:: 15 -dispirit%2:37:00:: 126 -displease%2:37:00:: 126,159 -disport%2:41:00:: 159 -dispossess%2:40:00:: 148 -disquiet%2:37:00:: 126 -disrobe%2:29:01:: 97,98 -dissatisfy%2:37:00:: 159 -dissuade%2:32:00:: 15,123 -distend%2:30:01:: 144 -distract%2:37:02:: 126,159 -distress%2:37:00:: 126 -distribute%2:41:00:: 139 -distrust%2:31:00:: 140 -disturb%2:30:00:: 15 -disturb%2:37:00:: 126,159 -dive%2:38:00:: 133,136 -dive%2:38:02:: 166,167 -divert%2:41:00:: 159 -divest%2:40:01:: 148 -divorce%2:41:00:: 14,15 -divulge%2:32:00:: 112 -do%2:29:04:: 146 -do%2:36:00:: 115 -do_in%2:35:00:: 140 -dock%2:35:00:: 72 -dodder%2:38:00:: 1 -dog%2:38:00:: 15 -domineer%2:37:00:: 15 -double%2:30:00:: 102,103 -double_crochet%2:36:00:: 117 -double_stitch%2:36:00:: 117 -doubt%2:31:00:: 112,113 -douse%2:30:00:: 81 -douse%2:42:09:: 82 -down%2:33:00:: 130 -down%2:34:01:: 35 -down%2:35:00:: 130 -dowse%2:30:00:: 81 -dowse%2:42:09:: 82 -draft%2:36:00:: 115 -drag%2:35:02:: 166,167 -drag%2:38:02:: 1 -drain%2:30:01:: 105 -drain%2:30:04:: 159 -drain%2:38:00:: 104 -dramatise%2:32:00:: 111 -dramatise%2:36:00:: 115 -dramatize%2:32:00:: 111 -dramatize%2:36:00:: 115 -draw_near%2:38:00:: 14 -dread%2:37:00:: 15 -dream_up%2:36:00:: 115 -dredge%2:35:01:: 166,167 -drench%2:30:00:: 81 -drench%2:30:01:: 80 -dress%2:29:00:: 97,98 -dress%2:29:02:: 143 -dress%2:29:04:: 146 -dress%2:29:06:: 73 -dress%2:35:00:: 116 -dress%2:36:00:: 116 -dress_down%2:32:00:: 15 -dribble%2:35:10:: 44 -dribble%2:38:00:: 45 -drink%2:34:00:: 97,106 -drink%2:34:01:: 97 -drip%2:35:10:: 44 -drive%2:35:07:: 20 -drive%2:38:00:: 26 -drive%2:38:01:: 11 -drive%2:41:02:: 123 -drive%2:42:00:: 131 -drive_up%2:38:00:: 131 -drizzle%2:35:00:: 48 -drizzle%2:43:00:: 122 -drone%2:32:00:: 14 -drone_on%2:32:00:: 14 -drool%2:37:00:: 160 -drool_over%2:37:00:: 15 -drop%2:30:00:: 133 -drop%2:35:03:: 147 -drop%2:38:00:: 132 -drop%2:38:01:: 6 -drop%2:42:04:: 39 -drown%2:30:01:: 140 -drub%2:35:00:: 130 -dry_clean%2:35:00:: 117 -dub%2:32:00:: 170 -dub%2:32:01:: 139 -duck%2:38:01:: 136 -dumbfound%2:31:00:: 126,127 -dump%2:38:00:: 50 -dust%2:35:02:: 51 -dust%2:35:03:: 52 -dye%2:30:00:: 146 -e-mail%2:32:00:: 93,94 -earn%2:40:01:: 69 -ease%2:37:00:: 127 -eat%2:34:00:: 35 -eat%2:34:01:: 14 -eat%2:34:02:: 106 -eat%2:34:13:: 35 -eat%2:37:00:: 126 -eat_in%2:34:00:: 14 -eat_into%2:37:00:: 126 -eat_on%2:37:00:: 126 -eat_out%2:34:00:: 14 -eat_up%2:34:00:: 35 -eat_up%2:34:03:: 35 -echo%2:39:00:: 158 -edify%2:32:00:: 159 -edit%2:30:00:: 111 -edit%2:30:01:: 145 -edit_out%2:30:00:: 145 -elaborate%2:32:00:: 112 -elate%2:37:00:: 127,159 -elect%2:41:00:: 169 -electrify%2:37:00:: 127 -electrocute%2:41:00:: 140 -elevate%2:38:00:: 43 -eliminate%2:30:00:: 140 -elude%2:42:00:: 159 -embarrass%2:37:00:: 159,15 -embellish%2:32:00:: 111 -embellish%2:36:00:: 75 -embellish%2:42:00:: 76 -embezzle%2:40:00:: 69 -embolden%2:37:00:: 127 -embrace%2:35:00:: 14,15 -embroider%2:32:00:: 111 -embroider%2:36:00:: 117 -employ%2:34:00:: 73 -empty%2:30:01:: 86 -empty%2:35:00:: 85 -enamor%2:37:00:: 159 -encase%2:35:00:: 71 -enchain%2:35:00:: 140 -enchant%2:37:00:: 127 -enchant%2:37:01:: 159 -encourage%2:32:00:: 123 -encourage%2:37:00:: 127 -encourage%2:41:00:: 123 -end%2:30:01:: 138 -endanger%2:42:00:: 73 -endure%2:31:00:: 15 -enervate%2:37:00:: 126 -enfeeble%2:30:00:: 159 -engage%2:31:00:: 98,159 -engineer%2:31:01:: 115 -engross%2:31:00:: 159 -enjoin%2:32:00:: 123 -enjoy%2:34:00:: 139,145 -enjoy%2:37:01:: 123 -enlarge%2:30:00:: 103 -enlarge%2:30:03:: 102 -enlarge%2:32:04:: 112 -enlighten%2:32:00:: 159 -enquire%2:32:00:: 113 -enrage%2:37:00:: 159,15 -enrapture%2:37:00:: 127,159 -ensnare%2:41:00:: 140 -entangle%2:35:00:: 146 -entertain%2:41:00:: 15,159 -enthral%2:37:00:: 127 -enthrall%2:37:00:: 127,159 -enthuse%2:32:00:: 14,160 -enthuse%2:37:00:: 127,159 -entice%2:32:00:: 123 -entitle%2:41:00:: 123 -entomb%2:41:00:: 15 -entrance%2:29:00:: 159 -entrap%2:41:00:: 140 -entrust%2:40:00:: 123 -entrust%2:40:01:: 91,92 -envisage%2:36:00:: 115 -envision%2:36:00:: 115 -envy%2:37:01:: 15 -epilate%2:29:00:: 146 -escape%2:42:00:: 159 -essay%2:41:00:: 137 -esteem%2:31:01:: 15 -estrange%2:37:00:: 159 -evangelize%2:32:00:: 14 -evaporate%2:30:00:: 104,105 -evolve%2:36:00:: 115 -exact%2:32:00:: 2 -exalt%2:37:01:: 127 -examine%2:31:00:: 139 -examine%2:39:00:: 168 -exasperate%2:37:00:: 126 -excavate%2:35:01:: 147 -exchange%2:40:00:: 71 -excite%2:37:00:: 159 -excite%2:37:01:: 159 -excite%2:37:03:: 126,127 -exclaim%2:32:00:: 112 -exculpate%2:32:00:: 140 -excuse%2:32:04:: 15 -execrate%2:32:00:: 139 -execrate%2:37:00:: 139 -execute%2:41:00:: 140 -exempt%2:32:00:: 15 -exercise%2:29:00:: 97,98 -exercise%2:29:01:: 73 -exhaust%2:29:00:: 159 -exhaust%2:40:00:: 69 -exhilarate%2:37:00:: 127,159 -exhort%2:32:00:: 15,123 -exhort%2:32:01:: 123 -exit%2:38:00:: 72 -exonerate%2:32:00:: 140 -expand%2:30:01:: 135 -expatiate%2:32:00:: 112 -expect%2:31:00:: 137 -expect%2:32:00:: 123 -expend%2:34:00:: 69 -explain%2:32:00:: 139 -explain%2:32:01:: 112 -explicate%2:32:00:: 139 -explore%2:31:00:: 113 -explore%2:31:02:: 166 -export%2:40:00:: 139 -express-mail%2:32:00:: 88 -expurgate%2:30:00:: 111 -exterminate%2:35:01:: 140 -extol%2:32:00:: 139 -exult%2:32:00:: 160 -exult%2:37:00:: 14 -eye%2:39:00:: 15 -eyeball%2:39:00:: 15 -face%2:42:00:: 24 -fail%2:30:00:: 131 -falcon%2:33:00:: 161 -fall%2:38:00:: 136 -fall_flat%2:41:00:: 135 -fall_in_love%2:30:00:: 14 -fall_off%2:30:00:: 133 -fall_through%2:41:00:: 135 -falter%2:32:00:: 14 -falter%2:38:00:: 14 -fancy%2:37:00:: 35,15 -fascinate%2:37:01:: 159 -fashion%2:36:00:: 117 -fatigue%2:29:00:: 15 -favor%2:41:00:: 15,116 -favor%2:41:01:: 15 -favor%2:41:03:: 123 -favour%2:41:00:: 15,116 -favour%2:41:03:: 123 -fawn%2:32:00:: 14 -fax%2:32:00:: 93,94 -faze%2:37:00:: 126,159 -fear%2:37:00:: 15 -fear%2:37:03:: 112 -feast%2:34:00:: 14 -feast%2:34:01:: 15 -feed%2:30:00:: 147 -feed%2:34:00:: 106 -feed%2:34:01:: 33,34 -feed%2:34:04:: 73 -feel%2:31:00:: 112 -feel%2:37:00:: 109 -feel%2:39:10:: 166 -feel%2:42:00:: 120 -feel_for%2:37:00:: 15 -feel_like%2:37:00:: 138 -fell%2:35:00:: 147 -felt%2:35:00:: 117 -fertilize%2:30:00:: 147 -fetter%2:35:00:: 140 -fight%2:33:00:: 14,15 -filch%2:40:00:: 71 -file%2:32:00:: 70 -file_away%2:35:00:: 70 -fill%2:30:01:: 49 -fill%2:42:00:: 74 -fill_up%2:30:00:: 49 -film%2:32:00:: 139 -film%2:36:00:: 115,145 -filter%2:38:00:: 45 -finance%2:40:00:: 139 -find%2:31:10:: 112 -find%2:40:00:: 38 -find%2:40:02:: 38 -find_out%2:31:00:: 112 -find_out%2:32:01:: 113 -fingerprint%2:36:00:: 140 -finish%2:30:02:: 138 -finish%2:34:00:: 35 -fire%2:30:01:: 147 -fish%2:33:00:: 166,167 -fit%2:30:00:: 117 -fit%2:30:01:: 117 -fit%2:42:02:: 131 -fix%2:30:01:: 43 -fix%2:36:00:: 116 -flabbergast%2:31:00:: 126,127,159 -flail%2:35:00:: 140 -flame%2:43:01:: 149,150 -flare%2:43:01:: 149,150 -flash%2:39:00:: 149,150 -flash-freeze%2:30:00:: 116 -flatter%2:32:00:: 15 -fleece%2:40:00:: 148 -flex%2:38:00:: 13 -flick%2:43:00:: 149,150 -flicker%2:43:00:: 149,150 -fling_off%2:36:00:: 115 -flip%2:35:00:: 4 -flip%2:38:00:: 9 -flirt%2:32:00:: 129 -float%2:38:01:: 131 -float%2:38:02:: 6 -flock%2:38:00:: 151 -flog%2:35:00:: 140 -flog%2:35:01:: 140 -floor%2:35:00:: 130 -floor%2:37:00:: 126,127,159 -flop%2:38:01:: 162,163 -flop%2:41:00:: 135 -flounce%2:38:00:: 26 -flourish%2:30:01:: 135 -flow%2:38:00:: 45 -flow_away%2:30:00:: 104 -flow_off%2:30:00:: 104 -fluff%2:29:00:: 146 -flummox%2:31:00:: 126,127 -flump%2:38:00:: 132 -flump_down%2:38:00:: 132 -flurry%2:37:00:: 126,127 -fluster%2:37:00:: 126,127 -flutter%2:38:02:: 151,152 -fly%2:38:00:: 164,165 -fly%2:38:04:: 32 -fly_by%2:38:01:: 131 -fly_open%2:35:00:: 142 -fold%2:30:00:: 18 -fold%2:30:10:: 19,101 -fold%2:41:00:: 135 -fold_up%2:30:10:: 19,101 -fold_up%2:35:00:: 18 -folk_dance%2:38:00:: 14 -follow%2:31:14:: 139 -follow%2:36:00:: 15 -follow%2:38:00:: 15,11 -follow%2:38:13:: 11 -follow%2:39:13:: 140 -follow%2:41:02:: 4 -forage%2:34:00:: 106 -forbid%2:32:00:: 139 -force%2:36:00:: 123 -force%2:41:00:: 123 -foregather%2:41:00:: 151 -forgather%2:41:00:: 151 -forget%2:31:00:: 111 -forget%2:31:01:: 111 -forget%2:31:02:: 38 -forget%2:31:03:: 137 -formulate%2:36:00:: 115 -forsake%2:31:00:: 15 -forward%2:38:00:: 87,88 -founder%2:41:00:: 135 -fowl%2:33:00:: 161 -fowl%2:33:01:: 161 -foxhunt%2:33:00:: 161 -foxtrot%2:38:00:: 14 -fracture%2:29:00:: 143 -fracture%2:29:02:: 7 -fracture%2:30:10:: 6,100 -frame%2:41:00:: 140 -free%2:41:00:: 140 -freeze%2:30:00:: 104 -freeze%2:30:02:: 116 -freeze%2:30:03:: 69 -freeze%2:43:10:: 122 -freeze-dry%2:30:00:: 116 -french-fry%2:30:00:: 116 -fret%2:37:00:: 14 -fret%2:37:02:: 126 -fret%2:37:03:: 160 -fricassee%2:30:00:: 116 -fright%2:37:00:: 126 -frighten%2:37:00:: 126 -frighten_away%2:37:00:: 15,126 -frighten_off%2:37:00:: 15,126 -frizz%2:35:00:: 146 -frizzle%2:30:00:: 116 -frizzle%2:35:00:: 146 -frogmarch%2:35:00:: 140 -frogmarch%2:38:00:: 140 -front%2:42:00:: 24 -frustrate%2:37:00:: 159 -fry%2:30:00:: 116 -fry%2:41:00:: 140 -fuck%2:35:00:: 14,15 -full%2:30:00:: 134 -fume%2:37:00:: 14,160 -function%2:35:00:: 131 -fund%2:40:00:: 123 -funnel%2:35:00:: 44 -fuss%2:37:00:: 160 -gag%2:39:00:: 140 -gain%2:30:00:: 134 -gain%2:40:00:: 69 -gain%2:40:01:: 69 -gall%2:37:00:: 159 -gallop%2:38:01:: 20 -gallop%2:38:03:: 22 -galvanize%2:37:00:: 126,127,159 -gang-rape%2:41:00:: 140 -gaol%2:41:00:: 140 -garnish%2:36:00:: 116 -garotte%2:35:00:: 140 -garrotte%2:35:00:: 140 -gash%2:35:00:: 145 -gather%2:41:02:: 140 -gaze%2:39:00:: 26 -gel%2:29:00:: 146 -generalise%2:32:00:: 14 -generalize%2:32:00:: 14 -get%2:30:00:: 109 -get%2:30:12:: 138 -get%2:32:00:: 123 -get%2:37:11:: 126 -get%2:40:00:: 4 -get_down%2:37:00:: 159 -get_hold_of%2:35:00:: 4 -get_married%2:41:00:: 14 -get_to%2:37:00:: 159 -get_together%2:41:03:: 140 -get_up%2:38:00:: 43 -get_up%2:38:01:: 14 -get_word%2:31:00:: 112 -ghost%2:36:00:: 115 -ghost%2:37:00:: 127 -ghostwrite%2:36:00:: 115 -give%2:40:03:: 33,34 -give%2:40:06:: 87,88 -give_away%2:32:00:: 112 -give_out%2:30:00:: 131 -give_the_eye%2:39:00:: 15 -give_the_once_over%2:39:00:: 15 -give_up%2:42:00:: 138 -give_way%2:38:00:: 131 -gladden%2:37:00:: 127 -glance%2:39:00:: 26 -glare%2:29:00:: 16 -gleam%2:39:00:: 149,150 -glean%2:35:00:: 56 -glide%2:38:00:: 10 -glide%2:38:02:: 11 -glimmer%2:39:00:: 149,150 -glint%2:39:00:: 149,150 -glisten%2:39:00:: 149,150 -glitter%2:39:00:: 149,150 -gloat%2:32:00:: 160,14 -gloat%2:39:00:: 160 -glorify%2:32:00:: 139 -glow%2:43:00:: 149,150 -glower%2:29:01:: 26 -go%2:30:03:: 131 -go%2:30:04:: 45 -go%2:33:00:: 14 -go%2:35:00:: 131 -go%2:38:00:: 1 -go%2:42:04:: 42 -go_after%2:38:01:: 15 -go_away%2:30:00:: 131 -go_away%2:38:00:: 14 -go_away%2:39:00:: 134 -go_down%2:38:01:: 134 -go_down%2:38:02:: 136 -go_for%2:37:00:: 35 -go_on%2:42:00:: 138 -go_over%2:31:01:: 111 -go_past%2:38:00:: 131 -go_through%2:34:00:: 35 -go_under%2:38:08:: 134 -go_up%2:30:00:: 133 -go_up%2:38:10:: 136 -gobble%2:34:00:: 35 -gobble_up%2:34:00:: 35 -gossip%2:32:00:: 14,129 -grace%2:36:00:: 75 -grace%2:42:00:: 76 -grant%2:40:03:: 91,92 -grasp%2:31:00:: 139,111 -grate%2:37:00:: 126 -gratify%2:34:00:: 15 -gratify%2:37:00:: 159 -gravel%2:37:00:: 159 -graze%2:34:02:: 14 -graze%2:35:01:: 106 -graze%2:35:02:: 143 -graze%2:35:10:: 73 -grieve%2:37:00:: 14 -grieve%2:37:01:: 126 -grill%2:30:00:: 116 -grind%2:38:00:: 97 -groan%2:32:00:: 155,156 -groom%2:29:03:: 73 -ground%2:35:03:: 141 -group%2:33:00:: 151 -grouse%2:33:00:: 161 -grow%2:30:00:: 135 -grow%2:30:01:: 56 -grow%2:30:02:: 144 -grow%2:30:03:: 109 -grow%2:30:04:: 14 -grow%2:30:10:: 14 -grow%2:36:00:: 56 -grow_up%2:41:00:: 14 -growl%2:32:00:: 155,156 -grumble%2:39:00:: 153,154 -guarantee%2:32:01:: 91,92 -guess%2:31:00:: 112 -guide%2:38:00:: 22 -guillotine%2:35:00:: 140 -gulp%2:34:01:: 14 -gush%2:32:00:: 160 -guttle%2:34:00:: 35 -gyp%2:41:00:: 148 -hack%2:30:00:: 111 -hack%2:35:02:: 116 -haggle%2:40:00:: 14,129 -hail%2:32:02:: 139 -hail%2:43:00:: 122 -halt%2:38:01:: 131,73 -halt%2:38:05:: 73 -hamstring%2:37:00:: 159 -hand%2:40:00:: 33,34 -handcuff%2:35:00:: 140 -handwash%2:35:00:: 117 -hang%2:35:00:: 40 -hang%2:35:03:: 39 -hang%2:35:04:: 141 -hang%2:35:05:: 142 -hang%2:35:06:: 164,165 -hang%2:41:00:: 140 -hang_up%2:35:01:: 40 -hanker%2:37:00:: 137 -harmonize%2:36:00:: 14 -harry%2:37:00:: 15 -harvest%2:35:00:: 56 -hash%2:35:00:: 116 -hassle%2:37:00:: 15 -hatch%2:36:00:: 115 -hate%2:37:00:: 15,139 -haunt%2:37:00:: 127,159 -have%2:34:00:: 52 -have%2:40:00:: 69 -have%2:40:03:: 2,69,35 -have_got%2:40:00:: 69 -hawk%2:33:00:: 161 -head%2:38:00:: 26 -heap%2:30:00:: 49 -heap%2:35:00:: 50 -hear%2:31:00:: 112 -hear%2:39:00:: 145 -hearten%2:37:00:: 159 -heat%2:30:00:: 104 -heat%2:30:01:: 105 -heat_up%2:30:00:: 105 -heat_up%2:30:01:: 104 -help%2:34:00:: 15 -help%2:34:04:: 98 -help%2:41:00:: 123 -help%2:42:00:: 15 -hem_and_haw%2:32:00:: 107 -henna%2:30:00:: 146 -herd%2:38:00:: 151 -hero-worship%2:37:00:: 15 -hesitate%2:42:01:: 107 -hew%2:35:00:: 147 -hibachi%2:30:00:: 116 -hide%2:39:00:: 97,98 -hide%2:39:01:: 97,98 -higgle%2:40:00:: 14,129 -hike%2:38:00:: 14,26 -hint%2:32:00:: 112 -hiss%2:32:01:: 112 -hit%2:35:00:: 130 -hit%2:35:01:: 108 -hit%2:35:03:: 4 -hit%2:35:05:: 77 -hit%2:38:00:: 105 -hit%2:41:00:: 15 -hive_up%2:40:00:: 38 -hoard%2:40:00:: 38 -hoard%2:40:01:: 38 -hobble%2:38:00:: 26 -hog-tie%2:35:00:: 140 -hoist%2:35:10:: 21 -hold%2:31:08:: 112 -hold%2:35:00:: 140 -hold%2:38:05:: 73 -hold%2:40:02:: 69 -hold%2:42:13:: 73 -hold_back%2:40:00:: 69 -hold_back%2:42:00:: 107 -hold_dear%2:37:00:: 15,139 -hold_off%2:42:00:: 107 -hold_out%2:42:00:: 135 -hold_out%2:42:01:: 19 -hold_out%2:42:02:: 107 -hold_up%2:42:00:: 135 -holler%2:32:06:: 14,112 -hollow%2:35:00:: 147 -hollow_out%2:35:00:: 147 -hoof%2:38:00:: 1 -hook%2:35:02:: 130 -hook%2:40:00:: 71 -hoot%2:32:00:: 155,156 -hop%2:38:04:: 151,152 -hope%2:37:01:: 137 -horrify%2:37:01:: 126 -horse-trade%2:32:00:: 14,129 -horsewhip%2:35:00:: 140 -host%2:34:00:: 15 -hotfoot%2:38:00:: 26 -hover%2:38:00:: 164,165 -hover%2:42:05:: 164,165 -howl%2:32:01:: 10 -howl%2:32:03:: 155,156 -huckster%2:40:00:: 14,129 -huddle%2:38:01:: 151 -huddle_together%2:38:00:: 151 -hug%2:35:01:: 14,15 -hum%2:32:00:: 145,14 -hum%2:42:00:: 153,154 -humble%2:37:00:: 15 -humiliate%2:37:00:: 15 -hunt%2:33:00:: 166,167 -hurl%2:35:00:: 36 -hurt%2:29:01:: 143 -hurt%2:29:02:: 14 -hurt%2:37:00:: 15,159 -hurt%2:37:01:: 15 -hurt%2:39:00:: 144 -hurt%2:39:01:: 14 -hurtle%2:35:00:: 36 -hymn%2:32:00:: 14 -hymn%2:36:00:: 14 -hype_up%2:37:00:: 126,127 -hypertrophy%2:29:00:: 144 -hypnotize%2:29:00:: 15 -hypothecate%2:31:00:: 112 -hypothesize%2:31:00:: 112 -ice%2:30:00:: 143 -idolize%2:37:00:: 15 -ill-treat%2:41:00:: 140 -ill-use%2:41:00:: 140 -imagine%2:31:01:: 112 -immerse%2:35:00:: 36 -immobilize%2:33:00:: 130 -immobilize%2:35:00:: 130 -immure%2:41:00:: 140 -impale%2:35:01:: 140 -impel%2:36:00:: 123 -imperil%2:42:00:: 73 -implore%2:32:00:: 123 -import%2:40:00:: 139 -importune%2:32:00:: 123 -impregnate%2:30:00:: 81,82 -impress%2:37:00:: 159 -impress%2:37:01:: 126,127 -imprison%2:41:00:: 140 -improve%2:30:00:: 103 -improve%2:30:01:: 102 -improvise%2:36:00:: 145 -incarcerate%2:41:00:: 140 -incense%2:37:01:: 126,159 -incite%2:36:00:: 123 -increase%2:30:00:: 103 -increase%2:30:02:: 102 -incriminate%2:32:00:: 140 -indict%2:41:00:: 140 -induce%2:32:00:: 123 -indulge%2:34:00:: 15 -indulge%2:34:12:: 98 -infer%2:31:01:: 112 -influence%2:32:00:: 123 -infuriate%2:37:00:: 126,159 -ingest%2:34:00:: 35 -inject%2:29:00:: 143 -inject%2:35:00:: 53,54 -injure%2:37:00:: 15 -inquire%2:32:01:: 113 -inseminate%2:35:00:: 55 -insinuate%2:32:00:: 112 -insist%2:31:00:: 112 -insist%2:32:03:: 137 -inspect%2:39:00:: 168 -inspire%2:32:00:: 123 -inspire%2:32:01:: 123 -inspire%2:37:00:: 159 -instal%2:35:00:: 141 -install%2:35:00:: 141 -instigate%2:32:01:: 123 -instrumentate%2:36:00:: 115 -insult%2:32:00:: 15,159 -intend%2:31:00:: 137 -inter%2:41:00:: 15 -intercede%2:32:00:: 14,129 -interdict%2:32:00:: 139 -interest%2:42:01:: 126 -interpret%2:31:00:: 139,111 -interpret%2:36:00:: 145 -interrupt%2:30:03:: 15 -intersect%2:38:00:: 23,24 -interview%2:32:00:: 15 -interview%2:32:01:: 15 -interview%2:32:02:: 14 -intimate%2:32:00:: 112 -intimidate%2:37:00:: 15 -intimidate%2:37:01:: 15 -intone%2:32:00:: 145 -intoxicate%2:37:00:: 127,159 -intrigue%2:42:00:: 159 -intrust%2:40:00:: 123 -inundate%2:30:00:: 79 -invent%2:36:00:: 115 -investigate%2:32:00:: 168 -investigate%2:32:01:: 113 -invigorate%2:30:00:: 159 -invite%2:32:00:: 123 -invite%2:35:12:: 15 -invite%2:41:00:: 123 -irk%2:37:00:: 159 -iron%2:35:00:: 117 -iron_out%2:35:00:: 117 -irritate%2:37:00:: 126,159 -issue%2:32:02:: 2 -issue%2:41:00:: 91,92 -jab%2:35:01:: 130 -jabber%2:32:00:: 14 -jacklight%2:33:00:: 161 -jail%2:41:00:: 140 -jam%2:35:00:: 50 -jam%2:35:01:: 141 -jam%2:35:03:: 143 -jampack%2:35:00:: 50 -jangle%2:39:00:: 8 -jar%2:35:10:: 71 -jar%2:37:00:: 159 -jazz%2:36:00:: 145 -jeopardize%2:42:00:: 73 -jig%2:38:00:: 14 -jilt%2:31:00:: 15 -jingle%2:39:00:: 8 -jitterbug%2:38:00:: 14 -jive%2:36:00:: 14 -jog%2:38:00:: 14 -jolly_along%2:32:00:: 127 -jolly_up%2:32:00:: 127 -jolt%2:37:00:: 159 -jounce%2:38:00:: 5 -joy%2:37:01:: 127 -jubilate%2:32:00:: 14,160 -judge%2:41:09:: 140 -jug%2:41:00:: 140 -julienne%2:35:00:: 116 -jump%2:38:00:: 20 -jump%2:38:01:: 22 -jump%2:38:07:: 131 -jump_for_joy%2:37:00:: 14,160 -jumpstart%2:38:00:: 131 -kayo%2:35:00:: 140 -keel_over%2:38:00:: 131 -keep%2:40:00:: 69 -keep%2:41:01:: 125 -keep%2:42:01:: 15 -keep%2:42:03:: 121 -keep%2:42:07:: 138 -keep_an_eye_on%2:41:00:: 4 -keep_back%2:40:01:: 69 -kennel%2:41:00:: 73 -kick%2:35:00:: 140 -kick_around%2:41:00:: 140 -kill%2:35:00:: 140 -kill_off%2:35:00:: 140 -kink%2:35:00:: 146 -kink_up%2:35:00:: 146 -kiss%2:35:00:: 15 -kneel%2:35:00:: 162,163 -knife%2:35:00:: 140 -knit%2:36:00:: 117 -knock_cold%2:35:00:: 140 -knock_down%2:35:01:: 130 -knock_off%2:35:00:: 140 -knock_off%2:36:00:: 115 -knock_out%2:35:00:: 140 -know%2:31:00:: 98 -know%2:31:01:: 14 -know%2:31:04:: 32 -lace%2:36:00:: 117 -lace_into%2:35:00:: 130 -lade%2:35:01:: 49 -laden%2:35:01:: 49 -ladle%2:35:01:: 44 -lag%2:41:00:: 140 -lam%2:35:00:: 140 -lam_into%2:35:00:: 130 -lambast%2:32:00:: 15 -lambast%2:35:00:: 140 -lambaste%2:32:00:: 15 -lambaste%2:35:00:: 140 -lament%2:32:00:: 112 -land%2:38:00:: 136 -lapidate%2:35:00:: 140 -lard%2:36:00:: 116 -lash%2:35:01:: 140 -last%2:42:01:: 135 -lather%2:29:00:: 143 -lather%2:35:01:: 140 -laud%2:32:00:: 139 -launder%2:35:00:: 117 -lavish%2:40:00:: 59 -lay%2:35:01:: 21 -lay_aside%2:40:00:: 69 -lay_into%2:35:00:: 130 -lay_to_rest%2:41:00:: 15 -lead%2:32:00:: 123 -lead%2:38:01:: 22 -lead%2:41:00:: 123 -lean%2:35:00:: 41 -leap%2:38:00:: 20 -leap%2:38:10:: 22 -learn%2:31:00:: 137 -learn%2:31:01:: 112 -learn%2:32:02:: 113 -lease%2:40:01:: 89,90 -leave%2:30:03:: 15 -leave%2:31:02:: 38 -leave%2:31:05:: 38,34 -leave%2:38:00:: 72 -leave%2:38:01:: 109 -leave%2:40:01:: 91,92 -leave%2:40:06:: 91,92 -leave%2:41:00:: 29 -leaven%2:38:00:: 35 -lecture%2:32:01:: 14 -lend%2:40:00:: 89,90 -lengthen%2:30:01:: 117 -let_down%2:37:00:: 159 -let_off%2:32:00:: 15 -let_on%2:32:00:: 112 -liaise%2:32:00:: 14,129 -liberate%2:41:02:: 140 -lick%2:35:01:: 130 -lie%2:42:00:: 162,163 -lift%2:38:00:: 43 -lift%2:40:00:: 71 -lift%2:40:03:: 73 -lift_off%2:38:00:: 136 -lift_up%2:37:00:: 127,159 -like%2:37:01:: 123 -like%2:37:04:: 15 -like%2:37:05:: 139 -limp%2:38:00:: 26 -limp%2:38:01:: 26 -liquidate%2:35:00:: 140 -live%2:42:04:: 135 -live_on%2:42:00:: 135 -liven_up%2:30:00:: 159 -load%2:35:01:: 49 -load%2:35:10:: 50 -load_up%2:35:00:: 49 -loan%2:40:00:: 89,90 -loathe%2:37:00:: 138,139,15 -log_z's%2:29:00:: 14 -loll%2:42:01:: 162,163 -lollop%2:38:00:: 1 -long%2:37:02:: 137 -look%2:29:00:: 118 -look%2:39:00:: 26 -look%2:39:01:: 109 -look_back%2:39:00:: 26 -look_backward%2:39:00:: 26 -look_for%2:35:00:: 2,15,105 -look_into%2:31:00:: 111 -loom%2:42:06:: 164,165 -loop%2:35:00:: 46,47 -loose%2:41:00:: 140 -loosen_up%2:29:00:: 14 -loosen_up%2:29:01:: 159 -loot%2:40:01:: 71 -lop%2:35:00:: 147 -lose%2:40:02:: 69 -lose%2:40:06:: 69 -lose_it%2:37:00:: 14 -lounge%2:35:00:: 162,163 -love%2:37:01:: 15 -love%2:37:02:: 123 -lower%2:38:00:: 21 -lull%2:37:00:: 159 -lumber%2:38:00:: 1 -lunch%2:34:00:: 14 -lynch%2:41:00:: 140 -machine_wash%2:35:00:: 117 -macrame%2:36:00:: 117 -madden%2:37:00:: 126 -madrigal%2:36:00:: 14 -mail%2:32:00:: 87,88 -maintain%2:32:00:: 112 -make%2:32:00:: 123 -make%2:36:01:: 139 -make%2:36:05:: 115 -make%2:36:07:: 116 -make%2:36:09:: 139 -make%2:36:13:: 37 -make%2:38:00:: 105 -make%2:40:01:: 69 -make%2:41:03:: 114 -make_it%2:42:00:: 135 -make_out%2:32:00:: 2 -manacle%2:35:00:: 140 -mangle%2:35:01:: 117 -manipulate%2:29:00:: 143 -map%2:36:03:: 115 -map_out%2:36:03:: 115 -marcel%2:29:00:: 146 -march%2:38:00:: 1 -march%2:38:01:: 1 -march%2:38:04:: 140 -march%2:38:10:: 20 -marinade%2:30:00:: 116 -marinate%2:30:00:: 116 -marry%2:41:00:: 14,15 -marvel%2:32:00:: 160 -marvel%2:32:12:: 160 -mass%2:38:00:: 151 -massacre%2:30:00:: 140 -massage%2:29:00:: 143 -mat%2:35:00:: 146 -match%2:30:01:: 117 -maturate%2:30:00:: 14 -mature%2:30:00:: 14 -mean%2:31:00:: 137 -mediate%2:32:00:: 14 -meet%2:33:00:: 14,15 -meet%2:35:00:: 23,24 -meet%2:41:00:: 151 -meet%2:41:03:: 14,15 -memorize%2:31:00:: 111 -menace%2:42:00:: 15 -mend%2:30:00:: 117 -menstruate%2:29:00:: 97 -mention%2:32:01:: 139 -mesmerize%2:29:00:: 15 -mess%2:34:00:: 14 -micro-cook%2:30:00:: 116 -microwave%2:30:00:: 116 -miff%2:37:00:: 15,159 -milk%2:34:00:: 148 -mince%2:35:00:: 116 -mince%2:38:00:: 1 -minstrel%2:36:00:: 14 -misadvise%2:32:00:: 15 -misconceive%2:31:01:: 139 -miscount%2:32:00:: 69 -misguide%2:32:00:: 15 -misinterpret%2:31:01:: 139,111 -misinterpret%2:31:02:: 139,111 -misplay%2:36:00:: 145 -misread%2:31:00:: 139,111 -miss%2:37:00:: 138 -mistreat%2:41:00:: 140 -mistrust%2:31:00:: 140 -misunderstand%2:31:01:: 139,111 -mix_up%2:31:00:: 159 -mizzle%2:43:00:: 122 -moan%2:32:00:: 155,156 -model%2:36:00:: 115 -model%2:39:00:: 117 -moderate%2:32:00:: 14 -modulate%2:36:00:: 145 -moil%2:38:00:: 104 -mold%2:36:02:: 115 -molest%2:37:00:: 15 -mollify%2:37:00:: 159 -moon%2:41:01:: 160 -mop_up%2:33:00:: 130 -mope%2:37:00:: 160 -moralise%2:32:00:: 14 -moralize%2:32:00:: 14 -mortify%2:37:01:: 159 -mosey%2:38:00:: 1 -mosh%2:38:00:: 14 -mothball%2:40:00:: 117 -motivate%2:36:00:: 123 -motor%2:38:00:: 26 -mount%2:35:00:: 37 -mourn%2:37:00:: 15 -mourn%2:37:01:: 14 -mousse%2:29:00:: 146 -mouth_off%2:32:00:: 14 -move%2:33:00:: 14 -move%2:36:00:: 123 -move%2:37:00:: 126,127,159 -move%2:38:01:: 11 -move%2:38:02:: 14 -move%2:38:03:: 10 -move_over%2:38:00:: 131 -move_up%2:38:01:: 14 -mow%2:35:00:: 56 -mow_down%2:30:00:: 140 -mulct%2:41:00:: 148 -multiply%2:30:00:: 102,103 -mumble%2:32:00:: 14,112 -murder%2:41:00:: 140 -murmur%2:32:00:: 14 -mushroom%2:35:00:: 161 -mutter%2:32:01:: 14,112 -muzzle%2:39:00:: 140 -mystify%2:31:00:: 126,127,159 -nag%2:31:00:: 123 -name%2:32:03:: 170 -name%2:41:01:: 114 -nark%2:37:00:: 159 -narrate%2:32:00:: 111 -nauseate%2:37:00:: 159 -need%2:34:00:: 35,123,137 -need%2:42:00:: 123 -neglect%2:31:05:: 15 -negociate%2:32:00:: 14,129 -negotiate%2:32:00:: 14,129 -nest%2:35:01:: 161 -nestle%2:35:00:: 162,163 -net_fish%2:33:00:: 161 -netmail%2:32:00:: 93,94 -nettle%2:37:00:: 159 -nibble%2:34:01:: 35 -nickname%2:32:00:: 170 -niggle%2:37:00:: 160 -nobble%2:40:00:: 71 -nobble%2:41:00:: 148 -nominate%2:41:01:: 123 -nonplus%2:31:00:: 126,127 -nose%2:33:00:: 130 -nosedive%2:38:00:: 136 -nosh%2:34:00:: 14 -nudge%2:32:00:: 123 -nuke%2:30:04:: 116 -numb%2:39:00:: 126,159 -nurse%2:29:00:: 143 -nut%2:35:00:: 161 -nuzzle%2:35:02:: 14,15 -obligate%2:41:00:: 123 -oblige%2:41:00:: 123 -observe%2:39:00:: 168 -observe%2:41:00:: 4 -obsess%2:37:00:: 127 -obsess%2:37:03:: 160 -occupy%2:31:00:: 98 -occupy%2:42:04:: 126 -offend%2:37:00:: 15 -offend%2:37:02:: 126,159 -offer%2:40:02:: 89,90 -offer%2:41:00:: 123,137 -ogle%2:39:00:: 15 -oink%2:32:00:: 106 -opalesce%2:43:00:: 8 -open%2:35:00:: 141 -open%2:35:06:: 142 -open%2:41:00:: 135 -open_up%2:32:00:: 14 -open_up%2:35:00:: 141 -open_up%2:35:06:: 142 -open_up%2:41:00:: 135 -operate%2:29:00:: 143 -operate%2:35:03:: 131 -operate_on%2:29:00:: 143 -oppose%2:32:01:: 15 -orchestrate%2:36:00:: 115,145 -order%2:32:01:: 123 -osculate%2:35:00:: 15 -outbrave%2:33:00:: 15 -outcry%2:33:00:: 15 -outdo%2:33:00:: 15 -outdo%2:33:01:: 130 -outdraw%2:33:00:: 130 -outface%2:39:00:: 15 -outfight%2:33:00:: 130 -outflank%2:33:00:: 130 -outfox%2:33:00:: 15 -outgrow%2:33:00:: 15 -outline%2:36:03:: 115 -outmaneuver%2:33:00:: 130 -outmanoeuvre%2:33:00:: 130 -outmarch%2:33:00:: 15 -outplay%2:33:00:: 15 -outpoint%2:33:00:: 130 -outrage%2:37:01:: 126,159 -outroar%2:33:00:: 15 -outrun%2:38:00:: 15 -outsail%2:33:00:: 15 -outscore%2:33:00:: 130 -outshine%2:33:00:: 15 -outshout%2:33:00:: 15 -outsmart%2:33:00:: 15 -outsmart%2:33:01:: 130 -outweigh%2:33:00:: 15 -outwit%2:33:00:: 15 -oven_broil%2:30:00:: 116 -ovenbake%2:30:00:: 116 -overawe%2:37:00:: 15,159 -overboil%2:30:01:: 116 -overcome%2:33:02:: 130 -overcome%2:33:03:: 130 -overcook%2:30:00:: 116 -overhear%2:39:00:: 112 -overmaster%2:33:00:: 130 -overpower%2:33:00:: 130 -overreach%2:33:00:: 15 -overtake%2:38:00:: 131 -overturn%2:38:00:: 131 -overwhelm%2:33:00:: 130 -owe%2:40:00:: 91,92 -oyster%2:35:00:: 161 -pace%2:38:00:: 26 -pacify%2:37:00:: 159 -pack%2:29:00:: 143 -pack%2:35:00:: 50 -pack%2:38:01:: 14 -pack%2:42:00:: 35 -package%2:35:00:: 71 -pad%2:38:00:: 26 -paddle%2:35:07:: 140 -paddle%2:38:04:: 1 -pain%2:37:00:: 126 -paint%2:35:00:: 141 -paint%2:35:01:: 72 -paint%2:36:00:: 15 -paint%2:36:01:: 14 -palaver%2:32:00:: 14,129 -pan%2:32:00:: 139 -pan-broil%2:30:00:: 116 -pan-fry%2:30:00:: 116 -pan_roast%2:30:00:: 116 -panic%2:37:00:: 14 -panic%2:37:01:: 126 -parade%2:38:00:: 1 -parade%2:38:01:: 20 -parboil%2:30:00:: 116 -pare%2:35:02:: 116 -parley%2:32:00:: 14,129 -parry%2:33:00:: 130 -part%2:35:01:: 146 -pass%2:38:01:: 131 -pass%2:38:05:: 131 -pass%2:40:00:: 33,34 -pass_by%2:38:00:: 131 -pass_on%2:40:01:: 87 -pass_on%2:40:03:: 111 -pass_up%2:40:00:: 69 -paste%2:35:00:: 130 -pasture%2:35:00:: 106 -pasture%2:35:10:: 73 -patch%2:30:00:: 117 -patch%2:35:00:: 117 -patch_up%2:30:00:: 117 -patrol%2:41:00:: 166,167 -patronize%2:40:00:: 139 -pause%2:42:00:: 107 -pay%2:40:00:: 123 -pay%2:40:02:: 137 -pay%2:40:04:: 97 -pay%2:41:00:: 69 -pearl%2:35:00:: 161 -peck%2:35:00:: 15 -peck_at%2:34:00:: 35 -peel%2:35:00:: 116 -peer%2:39:00:: 16 -peeve%2:37:00:: 159 -pelt%2:43:00:: 122 -pen%2:36:00:: 115 -pen_up%2:35:00:: 140 -perambulate%2:38:00:: 14 -perch%2:35:00:: 164,165 -perch%2:35:10:: 41 -perform%2:36:01:: 115 -peril%2:42:00:: 15 -perjure%2:32:00:: 98 -perm%2:29:00:: 146 -permit%2:32:00:: 123 -perplex%2:31:00:: 126,127,159 -perspire%2:29:00:: 14 -persuade%2:32:00:: 123 -perturb%2:37:00:: 126 -pester%2:37:00:: 123 -pet%2:35:00:: -petition%2:32:00:: 137 -phone%2:32:00:: 15,97 -pick_at%2:34:00:: 35 -pick_out%2:31:00:: 123 -pick_up%2:39:01:: 94 -pick_up%2:40:00:: 43 -pickle%2:30:00:: 116 -picnic%2:34:00:: 14 -piece%2:35:02:: 117 -pile%2:35:00:: 41 -pile_up%2:40:00:: 38 -pilfer%2:40:00:: 71 -pin%2:35:03:: 130 -pinch%2:35:00:: 147 -pinch%2:40:00:: 69 -pinion%2:35:00:: 140 -pip%2:33:00:: 130 -pique%2:37:00:: 159 -pirate%2:40:00:: 139 -pistol-whip%2:35:00:: 140 -pitch%2:35:00:: 4 -pitch%2:38:00:: 136 -pitch_into%2:35:00:: 130 -pity%2:37:00:: 15 -placate%2:37:00:: 159 -place%2:35:00:: 21 -plagiarise%2:40:00:: 70 -plagiarize%2:40:00:: 70 -plague%2:37:00:: 15 -plait%2:35:00:: 146 -plan%2:31:00:: 139 -plan%2:31:01:: 137 -plan%2:36:00:: 137 -plant%2:31:00:: 111 -plant%2:35:00:: 56 -plaster%2:29:00:: 143 -plaster%2:35:10:: 57 -plaster%2:35:11:: 58 -play%2:31:01:: 129 -play%2:33:02:: 14,15 -play%2:36:00:: 145 -play%2:36:05:: 139 -play%2:36:12:: 14 -pleach%2:35:01:: 146 -plead%2:32:00:: 137 -please%2:37:00:: 127,159 -pledge%2:32:00:: 137 -plop%2:35:00:: 162,163 -plot%2:31:00:: 137 -plug%2:32:00:: 139 -plug%2:35:00:: 139 -plumb%2:31:02:: 166,167 -plummet%2:38:00:: 133 -plump%2:38:01:: 133 -plunder%2:40:02:: 71 -plunge%2:35:01:: 36 -plunge%2:38:01:: 133,136 -plunk%2:38:00:: 133 -poach%2:30:00:: 116 -poach%2:33:00:: 166,167 -pocket%2:40:00:: 69 -pocket%2:40:01:: 69 -poison%2:35:00:: 140 -poleax%2:35:00:: 147 -poleaxe%2:35:00:: 147 -polish%2:35:00:: 12 -polish_off%2:34:00:: 35 -poll%2:35:00:: 147 -pollard%2:35:00:: 147 -pommel%2:35:00:: 130 -poniard%2:35:00:: 140 -pose%2:35:02:: 21 -position%2:35:00:: 21 -post%2:32:02:: 87 -pother%2:37:01:: 126 -poultice%2:29:00:: 143 -pound%2:38:01:: 1 -pour%2:38:02:: 45 -pour%2:38:03:: 44 -pour%2:43:00:: 122 -power-dive%2:38:00:: 136 -powwow%2:32:00:: 14,129 -practice%2:36:00:: 145 -practise%2:36:00:: 145 -praise%2:32:00:: 139 -prance%2:38:00:: 1 -prate%2:32:00:: 14 -prawn%2:35:00:: 161 -pray%2:32:01:: 137 -preach%2:32:02:: 14 -preachify%2:32:00:: 14 -precook%2:36:00:: 116 -preen%2:29:00:: 97,98 -prefer%2:31:00:: 123 -prefer%2:37:00:: 123 -prelude%2:36:00:: 145 -premier%2:36:00:: 145 -premiere%2:36:00:: 145 -prepare%2:36:01:: 116 -prerecord%2:32:00:: 145 -present%2:36:00:: 115 -preserve%2:30:00:: 116 -preserve%2:40:01:: 139 -press%2:32:00:: 15,123 -pressure%2:41:00:: 123 -pressure-cook%2:30:00:: 116 -prevent%2:41:00:: 125 -preview%2:39:00:: 139 -prime%2:35:00:: 141 -primp%2:29:00:: 97,98 -print%2:36:02:: 111 -prise%2:31:00:: 116 -prize%2:31:00:: 116 -prize%2:40:00:: 139 -probe%2:32:00:: 166,167 -proceed%2:38:00:: 26 -process%2:38:00:: 1 -proclaim%2:32:00:: 112 -procrastinate%2:42:00:: 107 -prod%2:35:00:: 123 -produce%2:36:00:: 139 -produce%2:36:05:: 56 -profess%2:32:00:: 137 -prohibit%2:32:00:: 139 -project%2:36:01:: 115 -promenade%2:38:00:: 28 -promise%2:32:00:: 123 -promise%2:32:01:: 91,92 -promote%2:32:00:: 139 -prompt%2:32:00:: 123 -prompt%2:36:00:: 123 -propel%2:36:00:: 123 -prophesy%2:32:01:: 14 -propose%2:32:00:: 123,137 -prosecute%2:41:00:: 140 -prospect%2:31:00:: 166,167 -prove%2:32:00:: 112 -prove%2:38:00:: 35 -provide%2:34:00:: 33,34 -provoke%2:32:00:: 123 -provoke%2:37:01:: 159 -prowl%2:38:00:: 166,167 -prune%2:35:00:: 147 -psych_up%2:37:00:: 126,127 -publish%2:32:00:: 111 -publish%2:36:00:: 115 -publish%2:36:01:: 111 -pucker%2:35:00:: 18 -pucker%2:35:02:: 19 -puddle%2:38:00:: 14 -puff%2:30:00:: 144 -puff_out%2:30:00:: 144 -puff_up%2:30:01:: 144 -pull_in%2:40:00:: 69 -pull_through%2:42:00:: 135 -pulsate%2:38:00:: 151,152 -pulse%2:38:00:: 151,152 -pummel%2:35:00:: 130 -pump%2:38:01:: 44 -punch%2:35:00:: 130 -purchase%2:40:00:: 4 -purl%2:36:02:: 117 -purloin%2:40:00:: 71 -purport%2:32:00:: 137 -purr%2:39:00:: 153,154 -pursue%2:38:00:: 11 -push%2:32:00:: 139 -push%2:32:01:: 15 -push%2:38:00:: 50 -pussyfoot%2:38:00:: 1 -put%2:35:00:: 21 -put_away%2:34:00:: 35 -put_away%2:41:00:: 140 -put_behind_bars%2:41:00:: 140 -put_in%2:35:00:: 141 -put_off%2:37:00:: 159 -put_off%2:37:02:: 126 -put_off%2:37:04:: 159 -put_on%2:36:02:: 116 -put_out%2:32:00:: 139 -put_to_death%2:41:00:: 140 -put_up%2:30:00:: 116 -puzzle%2:31:00:: 126,127,159 -puzzle%2:37:03:: 160 -quadruple%2:30:00:: 102,103 -quarrel%2:32:00:: 14,129 -quarry%2:34:00:: 166,167 -question%2:32:02:: 113 -question%2:32:09:: 15 -quibble%2:32:00:: 14,129 -quick-freeze%2:30:00:: 116 -quickstep%2:38:00:: 14 -quiet%2:37:00:: 159 -quilt%2:36:00:: 117 -quit%2:42:04:: 138 -quiver%2:38:04:: 151,152 -quote%2:32:00:: 95,96 -rabbit%2:33:00:: 161 -race%2:33:00:: 131 -race%2:38:00:: 26 -race%2:38:10:: 11 -radio%2:32:00:: 93,94 -raft%2:38:00:: 27,28 -rag%2:32:00:: 15 -rag%2:36:00:: 145 -rag%2:37:01:: 159 -rage%2:37:00:: 160 -rage%2:42:01:: 14 -raid%2:38:00:: 168 -rain%2:43:00:: 122 -rain_buckets%2:43:00:: 122 -rain_cats_and_dogs%2:43:00:: 122 -rain_down%2:43:00:: 122 -raise%2:36:03:: 73 -raise%2:38:00:: 43 -raise%2:38:01:: 35 -raise%2:40:00:: 69 -rally%2:30:00:: 133,135 -ram%2:35:03:: 50 -ramble%2:38:01:: 29,30 -range%2:35:02:: 106 -rankle%2:37:00:: 126 -ransack%2:35:02:: 168 -rant%2:32:00:: 14 -rap%2:32:00:: 14 -rape%2:41:00:: 140 -rasp%2:32:00:: 14 -rate%2:31:00:: 139 -rattle%2:39:00:: 153,154 -rattle_on%2:32:00:: 14 -rave%2:32:00:: 160 -rave%2:32:01:: 14,160 -ravish%2:37:00:: 127 -ravish%2:41:00:: 140 -re-create%2:31:00:: 115 -reach%2:38:01:: 25 -read%2:31:01:: 95,96 -ready%2:36:00:: 116 -realize%2:31:00:: 112 -realize%2:36:00:: 115 -reap%2:35:00:: 56 -reason%2:31:01:: 112 -reason%2:32:00:: 129,14 -reassert%2:32:00:: 112 -reassure%2:32:00:: 15 -reassure%2:37:00:: 127,159 -rebel%2:41:00:: 97 -rebound%2:30:00:: 133,135 -rebuild%2:36:00:: 37 -rebuke%2:32:00:: 15 -recall%2:31:00:: 111 -receive%2:35:00:: 15 -receive%2:39:00:: 94 -receive%2:40:00:: 2,69,35 -recite%2:32:01:: 95 -reckon%2:31:02:: 112 -recline%2:35:00:: 162,163 -recommend%2:32:00:: 139 -reconstruct%2:36:00:: 37 -record%2:32:01:: 145 -recount%2:32:00:: 111 -recoup%2:40:01:: 69 -redact%2:30:00:: 111 -redesign%2:36:00:: 115 -reference%2:36:00:: 115 -refresh%2:30:00:: 159 -refund%2:40:00:: 91,92 -refuse%2:32:00:: 137 -refuse%2:40:00:: 69 -refuse%2:40:01:: 92 -regain%2:40:01:: 38 -regard%2:39:00:: 15 -regenerate%2:29:00:: 127 -regret%2:37:00:: 137 -rehearse%2:36:00:: 145 -reimburse%2:40:00:: 69 -reinterpret%2:31:00:: 139,111 -reject%2:40:00:: 69 -rejoice%2:32:00:: 160 -rejoin%2:32:00:: 112 -rejuvenate%2:30:00:: 127 -relax%2:29:00:: 14 -relax%2:29:01:: 159 -relay%2:32:00:: 93,94 -release%2:32:00:: 139 -release%2:41:00:: 140 -relent%2:42:00:: 14 -relieve%2:32:00:: 98 -relieve%2:32:01:: 15 -relieve%2:37:00:: 127 -relieve%2:40:00:: 148 -relieve%2:41:01:: 15 -relish%2:37:00:: 139 -remain%2:30:00:: 109 -remand%2:41:00:: 140 -remarry%2:41:00:: 14 -remember%2:31:00:: 111 -remember%2:31:01:: 137 -remind%2:31:00:: 123 -remove%2:30:00:: 141 -render%2:36:03:: 145 -render%2:40:00:: 91,29 -rent%2:40:01:: 89,90 -reopen%2:35:00:: 141 -repaint%2:35:00:: 141,72 -repair%2:30:00:: 43 -repay%2:40:00:: 91,92 -repeat%2:32:00:: 111 -repel%2:37:00:: 159 -replay%2:36:00:: 145 -reply%2:32:00:: 112 -report%2:32:00:: 112 -report%2:32:02:: 15 -report%2:32:04:: 94 -report%2:32:13:: 111 -repose%2:35:02:: 162,163 -represent%2:41:06:: 140 -reproduce%2:36:03:: 115 -reproof%2:32:00:: 15 -repulse%2:37:00:: 159 -request%2:32:02:: 137,123 -require%2:32:00:: 123 -require%2:32:01:: 123 -require%2:34:00:: 35,123 -reseal%2:35:00:: 141 -research%2:32:00:: 139 -resell%2:40:00:: 33,34 -resent%2:37:00:: 15,139 -resew%2:35:00:: 117 -reshoot%2:32:00:: 139 -resist%2:41:00:: 138 -resolve%2:31:02:: 137 -resonate%2:39:00:: 158 -resound%2:39:01:: 158 -respect%2:31:00:: 15 -respond%2:32:00:: 112 -rest%2:29:00:: 14 -rest%2:32:00:: 14 -rest%2:35:00:: 14 -rest%2:35:01:: 164,165 -rest%2:35:04:: 41 -restart%2:38:00:: 131 -restore%2:30:01:: 43 -restrain%2:35:00:: 140 -retain%2:31:00:: 111 -retell%2:32:00:: 111 -retort%2:32:00:: 112 -retrieve%2:31:00:: 111 -retry%2:41:06:: 140 -return%2:38:00:: 1 -return%2:38:12:: 87 -return%2:40:00:: 91,92 -reveal%2:32:00:: 112 -reverberate%2:39:00:: 158 -revere%2:37:01:: 15 -review%2:32:00:: 139 -revitalize%2:30:00:: 127 -revolt%2:37:00:: 159 -rewrite%2:36:00:: 115 -rhapsodize%2:32:00:: 14,160 -rhumba%2:38:00:: 14 -rick%2:29:00:: 143 -riffle%2:39:10:: 168 -rifle%2:35:13:: 166,167 -rile%2:37:00:: 159 -ring%2:32:00:: 15,97 -ring%2:39:04:: 158 -rinse%2:35:00:: 117 -rinse%2:35:02:: 117 -rinse_off%2:35:00:: 117 -rip%2:35:00:: 18 -rise%2:29:08:: 14 -rise%2:30:00:: 133 -rise%2:38:05:: 14 -rise%2:38:06:: 14 -rise%2:38:08:: 134 -rise%2:41:00:: 97 -rise_up%2:41:00:: 97 -roam%2:38:00:: 29,30 -roar%2:32:01:: 153,154 -roar%2:32:03:: 14,112 -roar%2:32:05:: 106 -roar%2:38:00:: 26 -roast%2:30:00:: 116 -rob%2:40:00:: 148 -roil%2:38:00:: 104 -roll%2:30:08:: 104 -roll%2:35:00:: 46,47 -roll%2:38:00:: 99 -roll%2:38:01:: 131 -roll%2:39:00:: 153,154 -romance%2:37:00:: 15 -romance%2:41:00:: 15 -rook%2:41:00:: 148 -roost%2:35:00:: 164,165 -rough_up%2:35:00:: 140 -round_up%2:35:00:: 140 -rouse%2:37:04:: 126,127 -rout%2:33:01:: 130 -rove%2:38:00:: 29,30 -row%2:38:00:: 27,28 -rub%2:35:00:: 52,51 -ruffle%2:37:00:: 159 -rumble%2:39:00:: 153,154 -ruminate%2:34:00:: 106 -rumple%2:30:10:: 19,101 -rumple%2:35:01:: 18 -run%2:33:01:: 131 -run%2:35:00:: 131 -run%2:36:01:: 139 -run%2:38:00:: 20 -run%2:38:01:: 45 -run%2:38:10:: 22 -run_into%2:35:01:: 108 -run_on%2:32:00:: 14 -run_out%2:38:01:: 104 -run_through%2:34:00:: 35 -run_up%2:36:00:: 117 -rupture%2:35:00:: 16 -rush%2:38:00:: 26 -rush%2:38:10:: 11 -rust%2:30:00:: 131 -rustle%2:39:00:: 155,156 -rustle%2:40:00:: 73 -sacrifice%2:35:00:: 140 -sadden%2:37:01:: 126,159 -sag%2:38:00:: 162,163 -sail%2:38:03:: 27,28 -salivate%2:37:00:: 160 -salt%2:30:00:: 116 -salve%2:29:00:: 143 -samba%2:38:00:: 14 -sample%2:34:00:: 35,116 -sand_cast%2:36:00:: 115 -sashay%2:38:00:: 1 -satellite%2:32:00:: 94 -satisfy%2:37:00:: 159 -saturate%2:30:04:: 81 -saunter%2:38:00:: 1 -saute%2:30:00:: 116 -save%2:40:01:: 69 -save%2:41:00:: 125 -save_up%2:40:00:: 60 -savor%2:37:00:: 139 -savor%2:39:00:: 116 -savor%2:39:01:: 116 -savour%2:37:00:: 139 -savour%2:39:00:: 116 -savour%2:39:01:: 116 -say%2:32:01:: 112 -scallop%2:35:00:: 161 -scan%2:39:01:: 168 -scandalize%2:37:00:: 126,159 -scare%2:37:00:: 126,15 -scare%2:37:04:: 159 -scare_away%2:37:00:: 15 -scare_off%2:37:00:: 126 -scatter%2:35:00:: 51 -scavenge%2:35:01:: 166,167 -sclaff%2:35:00:: 130 -scold%2:32:00:: 15 -scollop%2:35:00:: 161 -scoop%2:33:00:: 130 -score%2:36:00:: 139 -scorn%2:37:00:: 15 -scour%2:35:03:: 166,167 -scout%2:39:00:: 166,167 -scrag%2:35:00:: 140 -scramble%2:35:00:: 128 -scrape%2:35:01:: 143 -screak%2:39:00:: 153,154 -scream%2:32:01:: 14 -scream%2:39:00:: 155,156 -screech%2:39:00:: 153,154 -screen%2:39:00:: 139 -screw%2:35:04:: 14,15 -script%2:36:00:: 139 -scrounge%2:40:00:: 166,167 -scrub%2:35:00:: 116 -scrunch%2:35:00:: 18 -scrunch%2:35:02:: 162,163 -scrunch_up%2:35:00:: 18 -scrutinize%2:39:00:: 168 -scuffle%2:38:00:: 1 -sculpt%2:36:00:: 115 -sculpture%2:36:00:: 115 -scythe%2:35:00:: 56 -seal%2:33:00:: 161 -seal%2:35:03:: 141 -seal_off%2:35:00:: 141 -search%2:35:00:: 15,2,105 -search%2:35:01:: 140 -search%2:39:00:: 166,167 -see%2:31:01:: 112 -see%2:32:00:: 113 -see%2:39:00:: 139 -see%2:39:03:: 139 -see%2:41:00:: 15 -see%2:41:12:: 15 -seek%2:35:00:: 2,105,15 -seek%2:41:00:: 137 -seem%2:39:00:: 137 -seethe%2:30:00:: 104 -seethe%2:30:03:: 104 -seethe%2:37:00:: 14 -seethe%2:42:00:: 152 -seine%2:33:00:: 161 -select%2:31:00:: 123 -sell%2:32:00:: 111 -sell%2:40:00:: 33,34 -sell%2:41:00:: 15 -sell%2:42:00:: 131 -send%2:32:00:: 87,88 -send%2:38:00:: 87,88 -send_for%2:32:00:: 15 -sentence%2:32:00:: 140 -serenade%2:36:00:: 15 -sermonize%2:32:00:: 14 -serve%2:34:00:: 116 -serve%2:34:01:: 15 -serve%2:41:01:: 15 -serve_up%2:34:00:: 116 -set%2:29:05:: 146 -set%2:35:00:: 21 -set%2:35:15:: 143 -set%2:36:00:: 115 -set%2:38:00:: 134 -set_about%2:30:00:: 138 -set_down%2:38:01:: 136 -set_forth%2:38:00:: 1 -set_off%2:38:00:: 1 -set_out%2:38:00:: 1 -set_to_music%2:36:00:: 115 -set_up%2:35:00:: 21,37 -set_up%2:35:02:: 141 -set_up%2:41:00:: 140 -sew%2:36:00:: 117 -shackle%2:35:00:: 140 -shackle%2:35:01:: 140 -shadow%2:38:00:: 15 -shag%2:38:00:: 14 -shake%2:37:00:: 159,126 -shake%2:38:02:: 151,152 -shake_up%2:37:00:: 159 -shame%2:33:00:: 15 -shame%2:41:00:: 159 -shame%2:41:01:: 123,159 -shampoo%2:29:00:: 146 -shark%2:33:00:: 161 -shatter%2:30:00:: 13 -shatter%2:30:01:: 12 -shave%2:29:00:: 146 -shave%2:35:01:: 146 -shave%2:35:03:: 116 -shell_stitch%2:36:00:: 117 -shelve%2:35:10:: 71 -shift%2:38:01:: 151 -shimmer%2:43:00:: 149,150 -shimmy%2:36:00:: 14 -shine%2:35:00:: 12 -shine%2:43:00:: 149,150 -shine%2:43:01:: 8 -ship%2:38:00:: 87,88 -shirr%2:30:00:: 128 -shlep%2:38:00:: 1 -shmooze%2:32:00:: 14,129 -shock%2:37:00:: 126,159 -shock%2:37:01:: 126,127 -shock%2:37:02:: 159 -shoot%2:32:01:: 139 -shoot%2:35:00:: 53,54 -shoot%2:41:00:: 140 -shop%2:40:01:: 161 -shorten%2:30:07:: 111 -shorten%2:30:09:: 146 -shout%2:32:00:: 14 -shout%2:32:08:: 112 -shove%2:38:01:: 50 -shovel_in%2:34:00:: 35 -show%2:32:00:: 112 -show%2:39:01:: 134 -show%2:39:02:: 95,96 -show_up%2:39:00:: 134 -shower%2:29:00:: 97,98 -shower%2:34:12:: 60 -shower%2:35:00:: 61,62 -shower%2:40:00:: 60 -shower%2:43:00:: 122 -shower_down%2:43:00:: 122 -shriek%2:32:00:: 157,158 -shrill%2:32:00:: 157,158 -shrimp%2:33:00:: 161 -shrink%2:30:00:: 101 -shrink%2:30:11:: 103 -shrivel%2:30:11:: 103 -shroud%2:35:01:: 77 -shroud%2:42:02:: 78 -shuffle%2:38:00:: 1 -shut%2:35:00:: 141 -shut%2:35:06:: 142 -shut_down%2:41:00:: 135 -shutter%2:35:00:: 141 -sicken%2:37:00:: 159 -sideswipe%2:35:00:: 130 -sign%2:32:01:: 94,93 -signal%2:32:00:: 93,94 -signalize%2:32:01:: 94 -simmer%2:30:00:: 116 -sing%2:32:00:: 14 -sing%2:32:08:: 157,158 -sing%2:36:00:: 14 -sing%2:36:01:: 145 -single_crochet%2:36:00:: 117 -single_out%2:31:00:: 123 -single_stitch%2:36:00:: 117 -singsong%2:32:00:: 145 -sink%2:38:00:: 97 -sink%2:38:02:: 72 -siphon%2:35:00:: 44 -sit%2:35:00:: 162,163 -skate%2:38:00:: 27,28 -ski%2:38:00:: 25,26 -skid%2:38:03:: 131 -skin%2:35:00:: 116 -skin%2:35:01:: 147 -skin%2:35:02:: 143 -skreak%2:39:00:: 153,154 -skulk%2:38:00:: 15 -sky%2:35:00:: 4 -slam%2:35:01:: 141 -slam%2:38:00:: 14 -slam_dance%2:38:00:: 14 -slap%2:35:00:: 130 -slash%2:35:00:: 145 -slash%2:35:01:: 147 -slash%2:35:02:: 140 -slather%2:35:00:: 48,63 -slaughter%2:30:00:: 140 -slay%2:41:00:: 15 -sleek_down%2:29:00:: 146 -sleep%2:29:00:: 14 -sleepwalk%2:38:00:: 14 -sleet%2:43:00:: 122 -slice%2:35:00:: 116 -slice_up%2:35:00:: 116 -slick%2:29:00:: 146 -slick_down%2:29:00:: 146 -slide%2:38:00:: 6 -slide%2:38:02:: 7 -sling%2:35:00:: 36 -slink%2:38:00:: 1 -slip%2:40:10:: 33,34 -slobber_over%2:37:00:: 15 -slog%2:35:00:: 130 -slog%2:38:00:: 26 -slop%2:35:00:: 44 -slouch%2:38:00:: 1 -slouch%2:38:01:: 162,163 -slow_down%2:29:00:: 14 -slug%2:35:00:: 130 -sluice%2:43:00:: 122 -sluice_down%2:43:00:: 122 -slumber%2:29:00:: 14 -slump%2:30:00:: 133 -slump%2:38:01:: 162,163 -slur%2:36:00:: 145 -slurp%2:34:00:: 35 -smack%2:35:01:: 15 -smack%2:35:02:: 130 -smart%2:39:00:: 144 -smash%2:30:00:: 12 -smear%2:35:01:: 65,66 -smell%2:39:00:: 118 -smell%2:39:01:: 168 -smite%2:35:00:: 130 -smooth%2:35:01:: 12 -smoothen%2:35:01:: 12 -smother%2:35:00:: 140 -smother%2:35:02:: 77 -smother%2:42:00:: 78 -smudge%2:35:00:: 65,66 -smuggle%2:40:00:: 33,34 -smutch%2:35:00:: 65,66 -snack%2:34:00:: 14 -snail%2:35:00:: 161 -snap%2:32:00:: 112 -snap%2:35:01:: 16,17 -snare%2:35:00:: 73 -snarf%2:40:00:: 71 -snarl%2:32:00:: 14,112 -snarl%2:35:00:: 146 -sneak%2:38:00:: 1 -sneak%2:40:00:: 69 -sneak%2:41:00:: 87,88,33,34 -snipe%2:33:01:: 161 -snivel%2:32:00:: 14 -snow%2:43:00:: 122 -soak%2:30:00:: 82 -soak%2:30:01:: 81 -soak%2:35:00:: 140 -soap%2:29:00:: 143 -sober%2:30:02:: 126,159 -sock%2:35:00:: 130 -soft-soap%2:32:00:: 14 -soft-soap%2:32:01:: 124 -soften%2:42:00:: 14 -solace%2:37:00:: 127 -solicit%2:41:00:: 15 -solmizate%2:36:01:: 145 -somnambulate%2:38:00:: 14 -soothe%2:37:00:: 127,159 -sorrow%2:37:00:: 14,160 -sound%2:39:00:: 158 -sound%2:39:06:: 109 -souse%2:30:00:: 116 -sow%2:35:00:: 56 -sow%2:35:02:: 55 -spar%2:32:00:: 14,129 -spare%2:41:00:: 125 -sparkle%2:43:00:: 149,150 -spat%2:32:00:: 14,129 -spatter%2:35:01:: 48 -speak%2:32:02:: 14 -speak_in_tongues%2:32:00:: 14 -speak_up%2:32:03:: 14 -specify%2:32:00:: 112 -speculate%2:31:01:: 112 -speechify%2:32:00:: 14 -speed%2:30:00:: 131 -speed%2:38:00:: 131 -speed%2:38:01:: 131 -speed%2:38:03:: 26 -speed_up%2:30:00:: 131 -spellbind%2:29:00:: 159 -spend%2:40:00:: 59,69 -spend%2:40:01:: 69 -spend%2:42:00:: 107 -spew%2:29:01:: 44 -spill%2:35:04:: 44 -spill%2:38:00:: 45 -spin%2:38:01:: 8,99 -spin%2:38:02:: 9 -spiral%2:42:00:: 47 -spit%2:29:00:: 44 -spite%2:37:00:: 15 -splash%2:35:04:: 48 -splatter%2:35:00:: 48 -splint%2:29:00:: 143 -splinter%2:41:00:: 6 -splinter%2:41:01:: 7 -split%2:30:01:: 7 -split%2:35:00:: 6 -split_up%2:41:00:: 14 -splutter%2:32:00:: 153,154 -sponge%2:35:03:: 161 -sponsor%2:40:00:: 139 -spook%2:37:00:: 159 -spoon%2:35:00:: 44 -spoonfeed%2:32:00:: 95 -sprain%2:29:00:: 143 -sprawl%2:35:00:: 162,163 -spray%2:35:03:: 48 -spread%2:35:12:: 48 -spread-eagle%2:33:00:: 130 -sprinkle%2:30:00:: 48 -sprint%2:38:00:: 14 -spritz%2:35:00:: 44 -spritz%2:35:02:: 48 -spue%2:29:01:: 44 -sputter%2:32:00:: 153,154 -square_dance%2:38:00:: 14 -squat%2:35:00:: 162,163 -squeak%2:39:00:: 153,154 -squeal%2:32:01:: 155,156 -squeeze%2:35:00:: 15 -squeeze%2:38:00:: 50 -squelch%2:38:00:: 28 -squint%2:39:00:: 26 -squirrel_away%2:40:00:: 38 -squirt%2:35:00:: 48 -squirt%2:35:10:: 44 -squish%2:35:00:: 44 -stab%2:35:02:: 140 -stable%2:41:00:: 73 -stack%2:35:00:: 41 -stack%2:35:01:: 49,50 -stage%2:36:00:: 115 -stage_direct%2:36:00:: 115 -stagger%2:38:01:: 1 -stake%2:33:00:: 69 -stake%2:35:02:: 140 -stalk%2:38:00:: 1 -stalk%2:38:03:: 166 -stall%2:42:00:: 107 -stammer%2:32:00:: 14 -stamp%2:38:00:: 1 -stand%2:31:00:: 15 -stand%2:35:00:: 42 -stand%2:35:01:: 21 -stand_by%2:42:02:: 107 -stand_up%2:38:00:: 14 -stare%2:29:00:: 26 -stare%2:39:00:: 26 -stare_down%2:39:00:: 15 -start%2:30:00:: 138,137 -start%2:38:02:: 131 -start_out%2:38:00:: 1 -startle%2:37:00:: 126,127 -stash%2:40:00:: 38 -state%2:32:00:: 112 -stay%2:30:00:: 109 -steal%2:40:00:: 69 -steam%2:30:00:: 116 -steamroller%2:33:00:: 15 -steer%2:38:00:: 72 -stew%2:30:00:: 116 -stick%2:35:02:: 50 -stick_about%2:42:00:: 107 -stick_around%2:42:00:: 107 -still%2:37:01:: 127 -still-fish%2:33:00:: 161 -stimulate%2:32:01:: 123 -stimulate%2:37:00:: 159 -sting%2:37:00:: 159 -stir%2:37:00:: 159 -stir%2:37:01:: 159 -stir%2:38:00:: 151,152 -stir%2:38:01:: 116 -stir_fry%2:30:00:: 116 -stitch%2:35:00:: 117 -stock%2:40:02:: 64 -stomach%2:31:00:: 15 -stomp%2:38:00:: 1 -stone%2:35:00:: 140 -stonewash%2:35:00:: 117 -stop%2:38:00:: 131,73 -stop%2:41:00:: 125 -stop%2:42:00:: 138 -storm%2:33:00:: 25 -storm%2:35:00:: 25 -storm%2:43:01:: 122 -straighten%2:30:02:: 146 -straighten_out%2:35:01:: 146 -strangle%2:35:00:: 140 -strangulate%2:35:00:: 140 -strap%2:35:01:: 140 -streak%2:38:01:: 14 -stream%2:43:00:: 122 -stretch%2:30:00:: 101 -strew%2:35:00:: 67 -strew%2:35:04:: 68 -strike%2:35:00:: 130 -strike%2:35:01:: 108 -strike%2:37:00:: 126,127 -strike_down%2:35:00:: 147 -string_up%2:41:00:: 140 -strip%2:29:01:: 97 -strip%2:30:05:: 147 -strip%2:30:12:: 140 -strip%2:35:00:: 147 -strip%2:40:03:: 148 -strip-search%2:35:00:: 140 -stroke%2:32:00:: 15 -stroll%2:38:00:: 28 -strong-arm%2:35:00:: 140 -strong-arm%2:37:00:: 140 -strut%2:38:00:: 1 -study%2:31:02:: 139 -stuff%2:35:00:: 49 -stuff%2:38:00:: 50 -stumble%2:38:00:: 14 -stump%2:31:00:: 159 -stump%2:38:00:: 1 -stun%2:35:00:: 130 -stupefy%2:31:00:: 126,127 -stutter%2:32:00:: 14 -style%2:36:00:: 146 -subedit%2:31:00:: 111 -submit%2:32:00:: 112 -subside%2:30:00:: 104 -subtitle%2:40:00:: 139 -succeed%2:41:00:: 135 -suckle%2:34:01:: 106 -sue%2:41:00:: 137 -suffer%2:29:00:: 14 -suffer%2:31:00:: 15 -suffer%2:37:00:: 14 -suffer%2:39:00:: 14 -suffocate%2:35:00:: 140 -suffuse%2:30:01:: 81,82 -suggest%2:32:00:: 123,137 -suggest%2:32:04:: 112 -support%2:41:00:: 15 -suppose%2:32:00:: 112 -surpass%2:38:00:: 131 -surprise%2:31:00:: 126,127 -surprise%2:41:00:: 15 -survey%2:39:00:: 168 -survey%2:39:13:: 140 -survive%2:42:01:: 135 -suspect%2:32:02:: 123 -suspend%2:30:01:: 40 -suss_out%2:31:00:: 111 -swab%2:35:01:: 48 -swagger%2:38:00:: 1 -swallow%2:34:00:: 35 -swan%2:32:00:: 112 -swarm%2:38:00:: 151 -swarm%2:42:00:: 152 -swat%2:35:00:: 130 -sway%2:38:00:: 151,152 -swear%2:32:02:: 137 -swear%2:32:03:: 112 -sweat%2:29:00:: 144,14 -sweet-talk%2:32:00:: 124 -swell%2:30:00:: 144 -swell_up%2:30:00:: 144 -swig%2:35:00:: 130 -swim%2:38:00:: 31,32 -swim%2:38:01:: 131 -swindle%2:41:00:: 148 -swing%2:38:00:: 7 -swing%2:38:02:: 6 -swing%2:42:00:: 39 -swipe%2:35:00:: 130 -swob%2:35:01:: 48 -sympathize%2:37:00:: 14 -sympathize_with%2:37:00:: 15 -tail%2:38:00:: 15 -tailgate%2:38:00:: 131 -tailor%2:36:00:: 117 -tailor-make%2:36:00:: 117 -take%2:30:00:: 141 -take%2:31:01:: 123 -take%2:32:02:: 15 -take%2:34:00:: 52 -take%2:35:00:: 4 -take%2:38:00:: 22 -take%2:38:02:: 72 -take%2:38:10:: 33,34 -take%2:40:01:: 25 -take%2:40:02:: 70 -take%2:40:06:: 107 -take%2:40:07:: 15 -take%2:42:10:: 35 -take_a_look%2:39:00:: 26 -take_aback%2:37:00:: 126,127,159 -take_after%2:36:00:: 15 -take_away%2:30:01:: 141 -take_in%2:34:00:: 35 -take_in%2:35:01:: 15 -take_in%2:39:06:: 139 -take_in%2:40:00:: 69 -take_off%2:29:03:: 117 -take_off%2:38:00:: 131,1 -take_off%2:38:02:: 136 -take_on%2:40:00:: 15 -take_out%2:40:01:: 35 -talk%2:32:01:: 14 -talk%2:32:03:: 14 -talk%2:32:05:: 14 -talk_shop%2:32:00:: 14,129 -talk_turkey%2:32:00:: 14,129 -tangle%2:35:00:: 146 -tango%2:38:00:: 14 -tap%2:38:00:: 1 -tap%2:38:01:: 14 -tap_dance%2:36:00:: 14 -tapdance%2:38:00:: 14 -tape%2:32:00:: 145 -tape%2:32:03:: 139 -tape_record%2:32:00:: 145 -taste%2:34:00:: 35 -taste%2:39:02:: 118 -taxi%2:38:00:: 28 -taxi%2:38:01:: 131 -teach%2:32:00:: 95,96 -tear%2:35:00:: 18 -tear_apart%2:32:00:: 139 -tear_into%2:35:00:: 130 -tease%2:29:00:: 146 -tease%2:37:00:: 15 -teem%2:42:00:: 152 -telecast%2:32:00:: 94 -telegraph%2:32:00:: 93,94 -telephone%2:32:00:: 15,97 -telex%2:32:00:: 93,94 -tell%2:32:01:: 111 -tell%2:32:02:: 123 -tell%2:32:04:: 112 -tempt%2:32:00:: 123 -tempt%2:32:01:: 123 -terminate%2:30:01:: 111 -terrify%2:37:00:: 126 -terrorize%2:37:00:: 126 -terrorize%2:41:00:: 15 -testify%2:32:01:: 112 -thaw%2:30:00:: 116 -theorise%2:31:00:: 112 -theorize%2:31:00:: 112 -think%2:31:01:: 112 -think%2:31:06:: 137 -think%2:31:08:: 14 -think_of%2:36:00:: 115 -think_up%2:36:00:: 115 -thrash%2:35:00:: 140 -thrash%2:35:02:: 130 -thrash%2:38:00:: 14 -threaten%2:32:00:: 15 -thresh%2:35:00:: 140 -thresh%2:35:01:: 130 -thrill%2:37:01:: 126,159 -thrive%2:30:00:: 135 -throb%2:38:01:: 151,152 -throng%2:38:00:: 151,152 -throttle%2:35:00:: 140 -throw%2:36:00:: 115 -throw%2:37:00:: 126,127,159 -thrum%2:39:01:: 153,154 -thrust%2:38:02:: 50 -thump%2:35:00:: 130 -thunder%2:32:01:: 10 -thunder%2:38:00:: 153,154 -thunder%2:43:00:: 122 -thwack%2:35:00:: 130 -tickle%2:39:00:: 143 -tie_down%2:35:00:: 140 -tie_up%2:35:00:: 140 -tin%2:30:00:: 116 -tip%2:38:00:: 1 -tip_off%2:32:01:: 15 -tip_over%2:38:00:: 131 -tiptoe%2:38:00:: 1 -tire%2:37:01:: 159 -tire_out%2:29:00:: 15 -titillate%2:37:00:: 127 -tittle-tattle%2:32:00:: 14 -toddle%2:38:00:: 1 -tolerate%2:31:00:: 15 -toot%2:39:00:: 153,154 -tootle%2:39:00:: 153,154 -top%2:35:00:: 147 -torment%2:29:00:: 140 -torment%2:37:00:: 126 -torture%2:29:00:: 140 -torture%2:37:00:: 126 -toss%2:35:00:: 116 -toss%2:35:04:: 4 -toss%2:35:05:: 4 -toss%2:38:00:: 9 -toss_off%2:36:00:: 115 -totter%2:38:01:: 1 -touch%2:34:00:: 35 -touch%2:35:01:: 23,24 -touch%2:37:00:: 126,159 -track%2:38:00:: 166 -trade%2:40:02:: 90 -trail%2:38:00:: 11 -traipse%2:38:00:: 1 -tramp%2:38:00:: 1 -trample%2:38:00:: 1 -tranquilize%2:37:00:: 15 -tranquillize%2:37:00:: 159 -transcribe%2:36:00:: 115 -transfer%2:35:00:: 87 -transfer%2:38:02:: 97 -transmit%2:40:10:: 93,94 -transport%2:37:00:: 127,159 -transport%2:38:00:: 87 -transpose%2:36:00:: 115 -trap%2:35:00:: 73 -trap%2:35:02:: 130 -trash%2:32:00:: 139 -travel%2:38:00:: 29,30 -travel%2:38:04:: 97 -travel_by%2:38:01:: 131 -travel_rapidly%2:38:00:: 131 -trawl%2:33:00:: 166,167 -tread%2:38:00:: 1 -treasure%2:37:00:: 15,139 -treasure%2:40:00:: 139 -treat%2:29:00:: 143 -tremble%2:38:00:: 151,152 -trickle%2:38:00:: 45 -trifle%2:31:01:: 129 -trill%2:32:00:: 157,158 -trim%2:35:01:: 146 -trim%2:35:02:: 147 -trim%2:36:00:: 116 -triple%2:30:00:: 102,103 -triumph%2:32:00:: 14 -troll%2:33:00:: 166,167 -troop%2:38:00:: 1 -troop%2:38:01:: 1 -trot%2:38:01:: 20 -trot%2:38:02:: 22 -trouble%2:37:00:: 126 -trouble%2:37:01:: 126 -trounce%2:33:00:: 130 -trounce%2:35:00:: 140 -trudge%2:38:01:: 26 -trump%2:33:00:: 130 -trumpet%2:32:02:: 157,158 -trust%2:31:00:: 15 -trust%2:41:00:: 123 -try%2:29:00:: 117 -try%2:34:00:: 35 -try%2:37:01:: 15 -try%2:41:00:: 137 -try%2:41:06:: 140 -try_on%2:29:00:: 117 -try_out%2:34:00:: 35 -tuck%2:35:00:: 50 -tuck_away%2:34:00:: 35 -tuck_in%2:34:00:: 35 -tumble%2:30:00:: 133 -turn%2:29:00:: 143 -turn%2:30:03:: 109 -turn%2:35:06:: 6 -turn%2:38:00:: 11 -turn%2:38:01:: 9 -turn_down%2:40:00:: 69 -turn_off%2:37:00:: 159 -turn_on%2:37:00:: 159 -turn_out%2:29:00:: 14 -turn_over%2:38:02:: 131 -turn_over%2:38:09:: 9 -twinkle%2:39:00:: 149,150 -twinkle%2:43:00:: 8 -twirl%2:38:00:: 7 -twirl%2:38:01:: 6 -twist%2:29:00:: 143 -twist%2:30:00:: 46 -twist%2:38:02:: 14 -tyrannize%2:37:00:: 15 -ululate%2:32:00:: 157,158 -unbar%2:35:00:: 141 -unbend%2:29:01:: 14 -unbolt%2:35:00:: 141 -unbosom%2:32:00:: 98 -unburden%2:40:00:: 148 -undercoat%2:35:00:: 141,72 -understand%2:31:00:: 139,111 -understand%2:31:02:: 123 -undertake%2:32:01:: 137 -underwrite%2:32:01:: 139 -undress%2:29:00:: 97,98 -undress%2:30:00:: 140 -unfreeze%2:30:00:: 116 -unhinge%2:37:00:: 126 -unlax%2:29:01:: 159 -unlock%2:35:00:: 141 -unloose%2:41:00:: 140 -unman%2:37:00:: 126 -unnerve%2:37:00:: 126 -unsettle%2:37:00:: 126 -unsnarl%2:35:00:: 146 -unstrain%2:29:00:: 159 -untie%2:35:00:: 140 -uplift%2:37:00:: 127,159 -upset%2:33:00:: 130 -upset%2:37:00:: 126 -upset%2:37:01:: 159 -upstage%2:33:00:: 15 -urge%2:32:00:: 15,123 -urge%2:32:01:: 123 -urge_on%2:32:00:: 15 -use%2:34:00:: 69 -use%2:34:01:: 73 -use%2:41:14:: 123 -utilise%2:34:00:: 73 -utilize%2:34:00:: 73 -value%2:31:01:: 15 -vanish%2:30:00:: 131 -vanish%2:39:00:: 134 -vanquish%2:33:00:: 130 -vaporize%2:30:01:: 104,105 -venerate%2:37:00:: 15 -versify%2:36:00:: 115 -veto%2:32:00:: 139 -vex%2:37:00:: 126,159 -videotape%2:32:00:: 139,145 -view%2:39:02:: 139 -violate%2:35:01:: 140 -visit%2:32:00:: 14,15 -visit%2:41:00:: 15 -visualize%2:36:00:: 115 -vocalize%2:32:00:: 14 -vocalize%2:36:00:: 145,14 -volunteer%2:41:01:: 137 -vow%2:32:00:: 137 -vroom%2:32:00:: 153,154 -waddle%2:38:00:: 1 -wade%2:38:00:: 31 -wail%2:32:00:: 155,156 -wait%2:42:00:: 107 -wait%2:42:01:: 137 -wait_on%2:41:00:: 15 -walk%2:38:00:: 14,1 -walk%2:38:01:: 22 -walk%2:38:02:: 20 -walk%2:38:05:: 22 -walk_about%2:38:00:: 14 -walk_around%2:38:00:: 14 -walk_on_air%2:37:00:: 14 -wallop%2:35:00:: 130 -waltz%2:38:00:: 14 -waltz_around%2:38:00:: 14 -wander%2:38:00:: 29,30 -wane%2:30:01:: 134 -want%2:31:01:: 123 -want%2:34:00:: 35,123,137 -want%2:37:00:: 123 -warble%2:32:00:: 145 -warble%2:32:01:: 157 -warehouse%2:40:00:: 71 -warn%2:32:01:: 15 -wash%2:29:00:: 97,98 -wash%2:35:00:: 117 -wash%2:35:02:: 117 -wash_down%2:34:00:: 35 -wash_out%2:35:01:: 117 -waste%2:35:00:: 140 -watch%2:32:09:: 113 -watch%2:39:01:: 166,167 -watch%2:39:05:: 139 -watch%2:41:00:: 4 -watch_over%2:41:00:: 4 -water-wash%2:35:00:: 117 -watercolor%2:36:00:: 14 -waterproof%2:35:00:: 72 -wave%2:29:00:: 146 -wave%2:35:01:: 146 -wax%2:30:01:: 134 -wear%2:29:03:: 129 -wear_down%2:29:00:: 15 -wear_out%2:29:00:: 15 -weary%2:29:00:: 129 -weave%2:36:00:: 117 -wed%2:41:00:: 14 -wedge%2:35:01:: 50 -weigh%2:32:00:: 102 -weigh_down%2:37:00:: 126 -weigh_on%2:37:00:: 126 -welt%2:35:00:: 140 -whack%2:35:00:: 130 -whale%2:33:00:: 161 -wham%2:35:00:: 130 -whang%2:35:01:: 130 -wheedle%2:32:00:: 124 -whelk%2:33:00:: 161 -whine%2:32:01:: 14 -whip%2:33:00:: 130 -whip%2:35:00:: 140 -whip_up%2:36:00:: 116 -whir%2:39:00:: 153,154 -whirl%2:38:01:: 7 -whirl%2:38:02:: 6 -whirr%2:39:00:: 153,154 -whisk_by%2:38:00:: 141 -whisper%2:32:00:: 14 -whistle%2:39:00:: 157,158 -whomp%2:33:00:: 130 -whomp%2:35:00:: 130 -whomp_up%2:36:00:: 116 -will%2:40:00:: 91,92 -win%2:33:00:: 97 -win%2:40:00:: 69 -win_over%2:32:00:: 15,159 -wind%2:35:06:: 46,47 -wind_up%2:37:00:: 159 -wine_and_dine%2:34:00:: 14 -wipe_out%2:34:00:: 35 -wire%2:32:00:: 93,94 -wish%2:37:00:: 123 -wish%2:37:02:: 123,137 -withhold%2:40:00:: 69 -withhold%2:40:01:: 69 -wolf%2:34:00:: 35 -wolf_down%2:34:00:: 35 -wonder%2:32:01:: 113 -wonder%2:32:12:: 160 -woo%2:41:00:: 15 -work%2:29:00:: 73 -work%2:35:02:: 131 -work%2:38:00:: 26 -work%2:41:01:: 73 -work%2:41:02:: 14 -work%2:41:04:: 110 -worry%2:37:00:: 112 -worry%2:37:01:: 126 -worry%2:42:00:: 126 -worship%2:37:00:: 15 -worst%2:33:00:: 130 -wound%2:37:00:: 15 -wow%2:37:00:: 15,159 -wrap%2:35:02:: 46,47 -wrawl%2:32:00:: 155,156 -wrench%2:29:00:: 143 -wrestle%2:32:00:: 129 -wrick%2:29:00:: 143 -wrinkle%2:30:10:: 19,101 -wrinkle%2:35:00:: 18 -write%2:32:00:: 93,94 -write%2:36:00:: 139 -write%2:36:02:: 115 -write%2:36:04:: 115 -write_out%2:32:00:: 2 -write_out%2:36:00:: 115 -write_up%2:36:00:: 115 -writhe%2:38:00:: 151,152 -x-ray%2:32:00:: 143 -yack%2:32:00:: 14,129 -yack_away%2:32:00:: 14 -yammer%2:32:01:: 155,156 -yearn%2:37:00:: 137 -yell%2:32:00:: 14 -yield%2:38:00:: 131 -yield%2:42:00:: 14 -yodel%2:32:00:: 157 -yowl%2:32:01:: 155,156 -zap%2:30:00:: 116 -zigzag%2:38:00:: 26 -zip_by%2:38:00:: 131 diff --git a/corpora/en/wordnet/dict/sents.vrb b/corpora/en/wordnet/dict/sents.vrb deleted file mode 100644 index bd80002c2..000000000 --- a/corpora/en/wordnet/dict/sents.vrb +++ /dev/null @@ -1,170 +0,0 @@ -1 The children %s to the playground -10 The cars %s down the avenue -100 These glasses %s easily -101 These fabrics %s easily -102 They %s their earnings this year -103 Their earnings %s this year -104 The water %ss -105 They %s the water -106 The animals %s -107 They %s a long time -108 The car %ss the tree -109 John will %s angry -11 They %s the car down the avenue -110 They %s in the city -111 They won't %s the story -112 They %s that there was a traffic accident -113 They %s whether there was a traffic accident -114 They %s her vice president -115 Did he %s his major works over a short period of time? -116 The chefs %s the vegetables -117 They %s the cape -118 The food does %s good -119 The music does %s good -12 They %s the glass tubes -120 The cool air does %s good -121 This food does %s well -122 It was %sing all day long -123 They %s him to write the letter -124 They %s him into writing the letter -125 They %s him from writing the letter -126 The bad news will %s him -127 The good news will %s her -128 The chef wants to %s the eggs -129 Sam wants to %s with Sue -13 The glass tubes %s -130 The fighter managed to %s his opponent -131 These cars won't %s -132 The branches %s from the trees -133 The stock market is going to %s -134 The moon will soon %s -135 The business is going to %s -136 The airplane is sure to %s -137 They %s to move -138 They %s moving -139 Sam and Sue %s the movie -14 Sam and Sue %s -140 They want to %s the prisoners -141 They want to %s the doors -142 The doors %s -143 Did he %s his foot? -144 Did his feet %s? -145 They will %s the duet -146 They %s their hair -147 They %s the trees -148 They %s him of all his money -149 Lights %s on the horizon -15 Sam cannot %s Sue -150 The horizon is %sing with lights -151 The crowds %s in the streets -152 The streets %s with crowds -153 Cars %s in the streets -154 The streets %s with cars -155 You can hear animals %s in the meadows -156 The meadows %s with animals -157 The birds %s in the woods -158 The woods %s with many kinds of birds -159 The performance is likely to %s Sue -16 The ropes %s -160 Sam and Sue %s over the results of the experiment -161 In the summer they like to go out and %s -162 The children %s in the rocking chair -163 There %s some children in the rocking chair -164 Some big birds %s in the tree -165 There %s some big birds in the tree -166 The men %s the area for animals -167 The men %s for animals in the area -168 The customs agents %s the bags for drugs -169 They %s him as chairman -17 The strong winds %s the rope -170 They %s him "Bobby" -18 They %s the sheets -19 The sheets didn't %s -2 The banks %s the check -20 The horses %s across the field -21 They %s the bags on the table -22 The men %s the horses across the field -23 Our properties %s at this point -24 His fields %s mine at this point -25 They %s the hill -26 They %s up the hill -27 They %s the river -28 They %s down the river -29 They %s the countryside -3 The checks %s -30 They %s in the countryside -31 These men %s across the river -32 These men %s the river -33 They %s the food to the people -34 They %s the people the food -35 They %s more bread -36 They %s the object in the water -37 The men %s the bookshelves -38 They %s the money in the closet -39 The lights %s from the ceiling -4 The children %s the ball -40 They %s the lights from the ceiling -41 They %s their rifles on the cabinet -42 The chairs %s in the corner -43 The men %s the chairs -44 The women %s water into the bowl -45 Water and oil %s into the bowl -46 They %s the wire around the stick -47 The wires %s around the stick -48 They %s the bread with melted butter -49 They %s the cart with boxes -5 The balls %s -50 They %s the books into the box -51 They %s sugar over the cake -52 They %s the cake with sugar -53 They %s the fruit with a chemical -54 They %s a chemical into the fruit -55 They %s the field with rye -56 They %s rye in the field -57 They %s notices on the doors -58 They %s the doors with notices -59 They %s money on their grandchild -6 The girls %s the wooden sticks -60 They %s their grandchild with money -61 They %s coins on the image -62 They %s the image with coins -63 They %s butter on the bread -64 They %s the lake with fish -65 The children %s the paper with grease -66 The children %s grease onto the paper -67 They %s papers over the floor -68 They %s the floor with papers -69 They %s the money -7 The wooden sticks %s -70 They %s the newspapers -71 They %s the goods -72 The men %s the boat -73 They %s the animals -74 The books %s the box -75 They %s the halls with holly -76 Holly flowers %s the halls -77 The wind storms %s the area with dust and dirt -78 Dust and dirt %s the area -79 The swollen rivers %s the area with water -8 The coins %s -80 The waters %s the area -81 They %s the cloth with water and alcohol -82 Water and alcohol %s the cloth -83 They %s the snow from the path -84 They %s the path of the snow -85 They %s the water from the sink -86 They %s the sink of water -87 They %s the parcel to their parents -88 They %s them the parcel -89 They %s cars to the tourists -9 They %s the coin -90 They %s the tourists their cars -91 They %s the money to them -92 They %s them the money -93 They %s them the information -94 They %s the information to them -95 The parents %s a French poem to the children -96 The parents %s the children a French poem -97 They %s -98 They %s themselves -99 These balls %s easily diff --git a/corpora/en/wordnet/dict/verb.Framestext b/corpora/en/wordnet/dict/verb.Framestext deleted file mode 100644 index b95acb9e7..000000000 --- a/corpora/en/wordnet/dict/verb.Framestext +++ /dev/null @@ -1,35 +0,0 @@ -1 Something ----s -2 Somebody ----s -3 It is ----ing -4 Something is ----ing PP -5 Something ----s something Adjective/Noun -6 Something ----s Adjective/Noun -7 Somebody ----s Adjective -8 Somebody ----s something -9 Somebody ----s somebody -10 Something ----s somebody -11 Something ----s something -12 Something ----s to somebody -13 Somebody ----s on something -14 Somebody ----s somebody something -15 Somebody ----s something to somebody -16 Somebody ----s something from somebody -17 Somebody ----s somebody with something -18 Somebody ----s somebody of something -19 Somebody ----s something on somebody -20 Somebody ----s somebody PP -21 Somebody ----s something PP -22 Somebody ----s PP -23 Somebody's (body part) ----s -24 Somebody ----s somebody to INFINITIVE -25 Somebody ----s somebody INFINITIVE -26 Somebody ----s that CLAUSE -27 Somebody ----s to somebody -28 Somebody ----s to INFINITIVE -29 Somebody ----s whether INFINITIVE -30 Somebody ----s somebody into V-ing something -31 Somebody ----s something with something -32 Somebody ----s INFINITIVE -33 Somebody ----s VERB-ing -34 It ----s that CLAUSE -35 Something ----s INFINITIVE diff --git a/corpora/en/wordnet/dict/verb.exc b/corpora/en/wordnet/dict/verb.exc deleted file mode 100644 index 9d4f839ea..000000000 --- a/corpora/en/wordnet/dict/verb.exc +++ /dev/null @@ -1,2402 +0,0 @@ -abetted abet -abetting abet -abhorred abhor -abhorring abhor -abode abide -abought aby -about-shipped about-ship -about-shipping about-ship -abutted abut -abutting abut -abye aby -accompanied accompany -acetified acetify -acidified acidify -acquitted acquit -acquitting acquit -ad-libbed ad-lib -ad-libbing ad-lib -addrest address -admitted admit -admitting admit -aerified aerify -air-dried air-dry -airdropped airdrop -airdropping airdrop -alkalified alkalify -allied ally -allotted allot -allotting allot -allowed_for allow_for -allowing_for allow_for -allows_for allow_for -am be -ammonified ammonify -amnestied amnesty -amplified amplify -anglified anglify -annulled annul -annulling annul -appalled appal appall -appalling appal appall -applied apply -arcked arc -arcking arc -are be -argufied argufy -arisen arise -arose arise -ate eat -atrophied atrophy -averred aver -averring aver -awoke awake -awoken awake -babied baby -baby-sat baby-sit -baby-sitting baby-sit -back-pedalled back-pedal -back-pedalling back-pedal -backbit backbite -backbitten backbite -backslid backslide -backslidden backslide -bade bid -bagged bag -bagging bag -ballyragged ballyrag -ballyragging ballyrag -bandied bandy -banned ban -banning ban -barred bar -barrelled barrel -barrelling barrel -barring bar -basified basify -batted bat -batting bat -bayonetted bayonet -bayonetting bayonet -beaten beat -beatified beatify -beautified beautify -became become -became_known become_known -becomes_known become_known -bed bed -bedded bed -bedding bed -bedevilled bedevil -bedevilling bedevil -bedimmed bedim -bedimming bedim -been be -befallen befall -befell befall -befitted befit -befitting befit -befogged befog -befogging befog -began begin -begat beget -begetting beget -begged beg -begging beg -beginning begin -begirt begird -begot beget -begotten beget -begun begin -beheld behold -beholden behold -bejewelled bejewel -bejewelling bejewel -bellied belly -belly-flopped belly-flop -belly-flopping belly-flop -belying belie -benefitted benefit -benefitting benefit -benempt bename -bent bend -berried berry -besetting beset -besought beseech -bespoke bespeak -bespoken bespeak -bestirred bestir -bestirring bestir -bestrewn bestrew -bestrid bestride -bestridden bestride -bestrode bestride -betaken betake -bethought bethink -betook betake -betted bet -betting bet -bevelled bevel -bevelling bevel -biassed bias -biassing bias -bidden bid -bidding bid -bing bing -binned bin -binning bin -bird-dogged bird-dog -bird-dogging bird-dog -bit bite -bitted bit -bitten bite -bitting bit -bivouacked bivouac -bivouacking bivouac -blabbed blab -blabbing blab -blackberried blackberry -blacklegged blackleg -blacklegging blackleg -blatted blat -blatting blat -bled bleed -blest bless -blew blow -blew_one's_nose blow_one's_nose -blipped blip -blipping blip -blobbed blob -blobbing blob -bloodied bloody -blotted blot -blotting blot -blowing_one's_nose blow_one's_nose -blown blow -blows_one's_nose blow_one's_nose -blubbed blub -blubbing blub -blue-pencilled blue-pencil -blue-pencilling blue-pencil -blurred blur -blurring blur -bobbed bob -bobbing bob -bodied body -bogged-down bog-down -bogged_down bog_down -bogging-down bog-down -bogging_down bog_down -bogs-down bog-down -bogs_down bog_down -booby-trapped booby-trap -booby-trapping booby-trap -bootlegged bootleg -bootlegging bootleg -bopped bop -bopping bop -bore bear -born bear -borne bear -bottle-fed bottle-feed -bought buy -bound bind -bragged brag -bragging brag -breast-fed breast-feed -bred breed -brevetted brevet -brevetting brevet -brimmed brim -brimming brim -broke break -broken break -brought bring -browbeaten browbeat -brutified brutify -budded bud -budding bud -bugged bug -bugging bug -built build -bulldogging bulldog -bullied bully -bullshitted bullshit -bullshitting bullshit -bullwhipped bullwhip -bullwhipping bullwhip -bullyragged bullyrag -bullyragging bullyrag -bummed bum -bumming bum -buried bury -burnt burn -burred bur -burring bur -bushelled bushel -bushelling bushel -busied busy -bypast bypass -caballed cabal -caballing cabal -caddied caddie caddy -caddies caddie caddy -caddying caddie caddy -calcified calcify -came come -canalled canal -canalling canal -cancelled cancel -cancelling cancel -candied candy -canned can -canning can -canopied canopy -capped cap -capping cap -carburetted carburet -carburetting carburet -carillonned carillon -carillonning carillon -carnied carny -carnified carnify -carolled carol -carolling carol -carried carry -casefied casefy -catnapped catnap -catnapping catnap -catted cat -catting cat -caught catch -cavilled cavil -cavilling cavil -certified certify -channelled channel -channelling channel -chapped chap -chapping chap -charred char -charring char -chatted chat -chatting chat -chevied chivy -chevies chivy -chevying chivy -chid chide -chidden chide -chinned chin -chinning chin -chipped chip -chipping chip -chiselled chisel -chiselling chisel -chitchatted chitchat -chitchatting chitchat -chivied chivy -chivved chiv -chivvied chivy -chivvies chivy -chivving chiv -chivvying chivy -chondrified chondrify -chopped chop -chopping chop -chose choose -chosen choose -chugged chug -chugging chug -chummed chum -chumming chum -citified citify -clad clothe -cladding clad -clammed clam -clamming clam -clapped clap -clapping clap -clarified clarify -classified classify -cleft cleave -clemmed clem -clemming clem -clept clepe -clipped clip -clipping clip -clogged clog -clogging clog -clopped clop -clopping clop -clotted clot -clotting clot -clove cleave -cloven cleave -clubbed club -clubbing club -clung cling -co-opted coopt -co-opting coopt -co-opts coopts -co-ordinate coordinate -co-ordinated coordinate -co-ordinates coordinate -co-ordinating coordinate -co-starred co-star -co-starring co-star -cockneyfied cockneyfy -codded cod -codding cod -codified codify -cogged cog -cogging cog -coiffed coif -coiffing coif -collied colly -combatted combat -combatting combat -committed commit -committing commit -compelled compel -compelling compel -complied comply -complotted complot -complotting complot -concurred concur -concurring concur -confabbed confab -confabbing confab -conferred confer -conferring confer -conned con -conning con -controlled control -controlling control -copied copy -coping cope -copped cop -copping cop -coquetted coquet -coquetting coquet -corralled corral -corralling corral -counselled counsel -counselling counsel -counterplotted counterplot -counterplotting counterplot -countersank countersink -countersunk countersink -court-martialled court-martial -court-martialling court-martial -crabbed crab -crabbing crab -crammed cram -cramming cram -crapped crap -crapping crap -crept creep -cribbed crib -cribbing crib -cried cry -cropped crop -cropping crop -crossbred crossbreed -crosscutting crosscut -crucified crucify -cubbed cub -cubbing cub -cudgelled cudgel -cudgelling cudgel -cupelled cupel -cupelling cupel -cupped cup -cupping cup -curetted curet -curettes curet -curetting curet -curried curry -curst curse -curtsied curtsy -curvetted curvet -curvetting curvet -cutting cut -dabbed dab -dabbing dab -dagged dag -dagging dag -dallied dally -dammed dam -damming dam -damnified damnify -dandified dandify -dapped dap -dapping dap -dealt deal -debarred debar -debarring debar -debugged debug -debugging debug -debussed debus -debusses debus -debussing debus -decalcified decalcify -declassified declassify -decontrolled decontrol -decontrolling decontrol -decried decry -deep-freeze deepfreeze -deep-freezed deepfreeze -deep-freezes deepfreeze -deep-fried deep-fry -deferred defer -deferring defer -defied defy -degassed degas -degasses degas -degassing degas -dehumidified dehumidify -deified deify -demitted demit -demitting demit -demobbed demob -demobbing demob -demulsified demulsify -demurred demur -demurring demur -demystified demystify -denazified denazify -denied deny -denitrified denitrify -denned den -denning den -descried descry -deterred deter -deterring deter -detoxified detoxify -devilled devil -devilling devil -devitrified devitrify -diagrammed diagram -diagramming diagram -dialled dial -dialling dial -dibbed dib -dibbing dib -did do -digging dig -dignified dignify -dilly-dallied dilly-dally -dimmed dim -dimming dim -dinned din -dinning din -dipped dip -dipping dip -dirtied dirty -disannulled disannul -disannulling disannul -disbarred disbar -disbarring disbar -disbudded disbud -disbudding disbud -disembodied disembody -disembowelled disembowel -disembowelling disembowel -disenthralled disenthral disenthrall -disenthralling disenthral disenthrall -disenthralls disenthral -disenthrals disenthrall -dishevelled dishevel -dishevelling dishevel -disinterred disinter -disinterring disinter -dispelled dispel -dispelling dispel -disqualified disqualify -dissatisfied dissatisfy -distilled distil distill -distilling distil distill -diversified diversify -divvied divvy -dizzied dizzy -dogged dog -dogging dog -doglegged dogleg -doglegging dogleg -dollied dolly -done do -donned don -donning don -dotted dot -dotting dot -dought dow -dove dive -drabbed drab -drabbing drab -dragged drag -dragging drag -drank drink -drawn draw -dreamt dream -drew draw -dried dry -dripped drip -dripping drip -drivelled drivel -drivelling drivel -driven drive -dropped drop -dropping drop -drove drive -drubbed drub -drubbing drub -drugged drug -drugging drug -drummed drum -drumming drum -drunk drink -dubbed dub -dubbing dub -duelled duel -duelling duel -dug dig -dulcified dulcify -dummied dummy -dunned dun -dunning dun -dwelt dwell -dying die -easied easy -eaten eat -eavesdropped eavesdrop -eavesdropping eavesdrop -eddied eddy -edified edify -ego-tripped ego-trip -ego-tripping ego-trip -electrified electrify -embedded embed -embedding embed -embodied embody -embussed embus -embusses embus -embussing embus -emitted emit -emitting emit -empanelled empanel -empanelling empanel -emptied empty -emulsified emulsify -enamelled enamel -enamelling enamel -englutted englut -englutting englut -enrolled enrol enroll -enrolling enrol enroll -enthralled enthral enthrall -enthralling enthral enthrall -entrammelled entrammel -entrammelling entrammel -entrapped entrap -entrapping entrap -envied envy -enwound enwind -enwrapped enwrap -enwrapping enwrap -equalled equal -equalling equal -equipped equip -equipping equip -espied espy -esterified esterify -estopped estop -estopping estop -etherified etherify -excelled excel -excelling excel -exemplified exemplify -expelled expel -expelling expel -extolled extol extoll -extolling extol extoll -facetted facet -facetting facet -fagged fag -fagging fag -fallen fall -falsified falsify -fancied fancy -fanned fan -fanning fan -fantasied fantasy -fatted fat -fatting fat -featherbedded featherbed -featherbedding featherbed -fed feed -feed feed fee -fell fall -felt feel -ferried ferry -fibbed fib -fibbing fib -figged fig -figging fig -filled_up fill_up -fine-drawn fine-draw -fine-drew fine-draw -finned fin -finning fin -fitted fit -fitting fit -flagged flag -flagging flag -flammed flam -flamming flam -flannelled flannel -flannelling flannel -flapped flap -flapping flap -flatted flat -flatting flat -fled flee -flew fly -flimflammed flimflam -flimflamming flimflam -flip-flopped flip-flop -flip-flopping flip-flop -flipped flip -flipping flip -flitted flit -flitting flit -flogged flog -flogging flog -floodlit floodlight -flopped flop -flopping flop -flown fly -flubbed flub -flubbing flub -flung fling -flurried flurry -flyblew flyblow -flyblown flyblow -fobbed fob -fobbing fob -fogged fog -fogging fog -footslogged footslog -footslogging footslog -forbad forbid -forbade forbid -forbidden forbid -forbidding forbid -forbore forbear -forborne forbear -force-fed force-feed -fordid fordo -fordone fordo -foredid foredo -foredone foredo -foregone forego -foreknew foreknow -foreknown foreknow -foreran forerun -forerunning forerun -foresaw foresee -foreseen foresee -foreshown foreshow -forespoke forespeak -forespoken forespeak -foretold foretell -forewent forego -forgave forgive -forgetting forget -forgiven forgive -forgone forgo -forgot forget -forgotten forget -formatted format -formatting format -forsaken forsake -forsook forsake -forspoke forspeak -forspoken forspeak -forswore forswear -forsworn forswear -fortified fortify -forwent forgo -fought fight -found find -foxtrotted foxtrot -foxtrotting foxtrot -frapped frap -frapping frap -freeze-dried freeze-dry -frenchified frenchify -frenzied frenzy -fretted fret -fretting fret -fried fry -frigged frig -frigging frig -fritted frit fritt -fritting frit fritt -frivolled frivol -frivolling frivol -frogged frog -frogging frog -frolicked frolic -frolicking frolic -froze freeze -frozen freeze -fructified fructify -fuelled fuel -fuelling fuel -fulfilled fulfil fulfill -fulfilling fulfil fulfill -funned fun -funnelled funnel -funnelling funnel -funning fun -furred fur -furring fur -gadded gad -gadding gad -gagged gag -gagging gag -gainsaid gainsay -gambolled gambol -gambolling gambol -gammed gam -gamming gam -gan gin -ganned gan -ganning gan -gapped gap -gapping gap -gasified gasify -gassed gas -gasses gas -gassing gas -gave give -gelled gel -gelling gel -gelt geld -gemmed gem -gemming gem -genned-up gen-up -genning-up gen-up -gens-up gen-up -gets_lost get_lost -gets_started get_started -getting get -getting_lost get_lost -getting_started get_started -ghostwritten ghostwrite -ghostwrote ghostwrite -gibbed gib -gibbing gib -giddied giddy -giftwrapped giftwrap -giftwrapping giftwrap -gigged gig -gigging gig -gilt gild -ginned gin -ginning gin -gipped gip -gipping gip -girt gird -given give -glommed glom -glomming glom -gloried glory -glorified glorify -glutted glut -glutting glut -gnawn gnaw -goes_deep go_deep -going_deep go_deep -gollied golly -gone go -gone_deep go_deep -goose-stepped goose-step -goose-stepping goose-step -got get -got_lost get_lost -got_started get_started -gotten get -gotten_lost get_lost -grabbed grab -grabbing grab -gratified gratify -gravelled gravel -gravelling gravel -graven grave -grew grow -grinned grin -grinning grin -gripped grip -gripping grip -gript grip -gritted grit -gritting grit -ground grind -grovelled grovel -grovelling grovel -grown grow -grubbed grub -grubbing grub -guarantied guaranty -gullied gully -gummed gum -gumming gum -gunned gun -gunning gun -gypped gyp -gypping gyp -hacksawn hacksaw -had have -had_a_feeling have_a_feeling -had_left have_left -had_the_feeling have_the_feeling -hammed ham -hamming ham -hamstrung hamstring -hand-knitted hand-knit -hand-knitting hand-knit -handfed handfeed -handicapped handicap -handicapping handicap -handselled handsel -handselling handsel -harried harry -has have -has_a_feeling have_a_feeling -has_left have_left -has_the_feeling have_the_feeling -hatchelled hatchel -hatchelling hatchel -hatted hat -hatting hat -having_a_feeling have_a_feeling -having_left have_left -having_the_feeling have_the_feeling -heard hear -hedgehopped hedgehop -hedgehopping hedgehop -held hold -hemmed hem -hemming hem -hewn hew -hiccupped hiccup -hiccupping hiccup -hid hide -hidden hide -high-hatted high-hat -high-hatting high-hat -hinnied hinny -hitting hit -hobbed hob -hobbing hob -hobnobbed hobnob -hobnobbing hobnob -hocus-pocussed hocus-pocus -hocus-pocussing hocus-pocus -hocussed hocus -hocussing hocus -hogged hog -hogging hog -hogtying hogtie -honied honey -hopped hop -hopping hop -horrified horrify -horsewhipped horsewhip -horsewhipping horsewhip -houselled housel -houselling housel -hove heave -hovelled hovel -hovelling hovel -hugged hug -hugging hug -humbugged humbug -humbugging humbug -humidified humidify -hummed hum -humming hum -hung hang -hurried hurry -hypertrophied hypertrophy -identified identify -imbedded imbed -imbedding imbed -impanelled impanel -impanelling impanel -impelled impel -impelling impel -implied imply -inbred inbreed -incurred incur -incurring incur -indemnified indemnify -indwelt indwell -inferred infer -inferring infer -initialled initial -initialling initial -inlaid inlay -insetting inset -inspanned inspan -inspanning inspan -installed instal install -installing instal install -intensified intensify -interbred interbreed -intercropped intercrop -intercropping intercrop -intercutting intercut -interlaid interlay -interlapped interlap -interlapping interlap -intermarried intermarry -intermitted intermit -intermitting intermit -interpled interplead -interred inter -interring inter -interstratified interstratify -interwove interweave -interwoven interweave -intromitted intromit -intromitting intromit -inwove inweave -inwoven inweave -inwrapped inwrap -inwrapping inwrap -is be -jabbed jab -jabbing jab -jagged jag -jagging jag -jammed jam -jamming jam -japanned japan -japanning japan -jarred jar -jarring jar -jellied jelly -jellified jellify -jemmied jemmy -jerry-built jerry-build -jetted jet -jetting jet -jewelled jewel -jewelling jewel -jibbed jib -jibbing jib -jigged jig -jigging jig -jimmied jimmy -jitterbugged jitterbug -jitterbugging jitterbug -jobbed job -jobbing job -jog-trotted jog-trot -jog-trotting jog-trot -jogged jog -jogging jog -joined_battle join_battle -joined_forces join_forces -joining_battle join_battle -joining_forces join_forces -joins_battle join_battle -joins_forces join_forces -jollied jolly -jollified jollify -jotted jot -jotting jot -joy-ridden joy-ride -joy-rode joy-ride -joypopped joypop -joypopping joypop -jugged jug -jugging jug -jumped_off jump_off -jumping_off jump_off -jumps_off jump_off -justified justify -jutted jut -jutting jut -kenned ken -kennelled kennel -kennelling kennel -kenning ken -kent ken -kept keep -kernelled kernel -kernelling kernel -kidded kid -kidding kid -kidnapped kidnap -kidnapping kidnap -kipped kip -kipping kip -knapped knap -knapping knap -kneecapped kneecap -kneecapping kneecap -knelt kneel -knew know -knitted knit -knitting knit -knobbed knob -knobbing knob -knotted knot -knotting knot -known know -ko'd ko -ko'ing ko -ko's ko -labelled label -labelling label -laden lade -ladyfied ladify -ladyfies ladify -ladyfying ladify -lagged lag -lagging lag -laid lay -lain lie -lallygagged lallygag -lallygagging lallygag -lammed lam -lamming lam -lapidified lapidify -lapped lap -lapping lap -laurelled laurel -laurelling laurel -lay lie -layed_for lie_for -laying_for lie_for -lays_for lie_for -leant lean -leapfrogged leapfrog -leapfrogging leapfrog -leapt leap -learnt learn -leaves_undone leave_undone -leaving_undone leave_undone -led lead -left leave -left_undone leave_undone -lent lend -letting let -levelled level -levelling level -levied levy -libelled libel -libelling libel -lignified lignify -lipped lip -lipping lip -liquefied liquefy -liquified liquify -lit light -lobbed lob -lobbied lobby -lobbing lob -logged log -logging log -looked_towards look_towards -looking_towards look_towards -looks_towards look_towards -lopped lop -lopping lop -lost lose -lotted lot -lotting lot -lugged lug -lugging lug -lullabied lullaby -lying lie -machine-gunned machine-gun -machine-gunning machine-gun -madded mad -madding mad -made make -magnified magnify -manned man -manning man -manumitted manumit -manumitting manumit -mapped map -mapping map -marcelled marcel -marcelling marcel -marred mar -married marry -marring mar -marshalled marshal -marshalling marshal -marvelled marvel -marvelling marvel -matted mat -matting mat -meant mean -medalled medal -medalling medal -met meet -metalled metal -metalling metal -metrified metrify -might may -militated_against militate_against -militates_against militate_against -militating_against militate_against -mimicked mimic -mimicking mimic -minified minify -misapplied misapply -misbecame misbecome -miscarried miscarry -misdealt misdeal -misfitted misfit -misfitting misfit -misgave misgive -misgiven misgive -mishitting mishit -mislaid mislay -misled mislead -mispled misplead -misspelt misspell -misspent misspend -mistaken mistake -mistook mistake -misunderstood misunderstand -mobbed mob -mobbing mob -modelled model -modelling model -modified modify -mollified mollify -molten melt -mopped mop -mopping mop -mortified mortify -mown mow -mudded mud -muddied muddy -mudding mud -mugged mug -mugging mug -multiplied multiply -mummed mum -mummified mummify -mumming mum -mutinied mutiny -mystified mystify -nabbed nab -nabbing nab -nagged nag -nagging nag -napped nap -napping nap -netted net -netting net -nibbed nib -nibbing nib -nickelled nickel -nickelling nickel -nid-nodded nid-nod -nid-nodding nid-nod -nidified nidify -nigrified nigrify -nipped nip -nipping nip -nitrified nitrify -nodded nod -nodding nod -non-prossed non-pros -non-prosses non-pros -non-prossing non-pros -nonplussed nonplus -nonplusses nonplus -nonplussing nonplus -notified notify -nullified nullify -nutted nut -nutting nut -objectified objectify -occupied occupy -occurred occur -occurring occur -offsetting offset -omitted omit -omitting omit -ossified ossify -outbidden outbid -outbidding outbid -outbred outbreed -outcried outcry -outcropped outcrop -outcropping outcrop -outdid outdo -outdone outdo -outdrawn outdraw -outdrew outdraw -outfitted outfit -outfitting outfit -outfought outfight -outgassed outgas -outgasses outgas -outgassing outgas -outgeneralled outgeneral -outgeneralling outgeneral -outgone outgo -outgrew outgrow -outgrown outgrow -outlaid outlay -outmanned outman -outmanning outman -outputted output -outputting output -outran outrun -outridden outride -outrode outride -outrunning outrun -outshone outshine -outshot outshoot -outsold outsell -outspanned outspan -outspanning outspan -outstood outstand -outstripped outstrip -outstripping outstrip -outthought outthink -outwent outgo -outwitted outwit -outwitting outwit -outwore outwear -outworn outwear -overbidden overbid -overbidding overbid -overblew overblow -overblown overblow -overbore overbear -overborne overbear -overbuilt overbuild -overcame overcome -overcropped overcrop -overcropping overcrop -overdid overdo -overdone overdo -overdrawn overdraw -overdrew overdraw -overdriven overdrive -overdrove overdrive -overflew overfly -overflown overflow overfly -overgrew overgrow -overgrown overgrow -overheard overhear -overhung overhang -overlaid overlay -overlain overlie -overlapped overlap -overlapping overlap -overlay overlie -overlying overlie -overmanned overman -overmanning overman -overpaid overpay -overpast overpass -overran overrun -overridden override -overrode override -overrunning overrun -oversaw oversee -overseen oversee -oversetting overset -oversewn oversew -overshot overshoot -oversimplified oversimplify -overslept oversleep -oversold oversell -overspent overspend -overspilt overspill -overstepped overstep -overstepping overstep -overtaken overtake -overthrew overthrow -overthrown overthrow -overtook overtake -overtopped overtop -overtopping overtop -overwound overwind -overwritten overwrite -overwrote overwrite -pacified pacify -padded pad -padding pad -paid pay -palled pal -palling pal -palsied palsy -pandied pandy -panelled panel -panelling panel -panicked panic -panicking panic -panned pan -panning pan -parallelled parallel -parallelling parallel -parcelled parcel -parcelling parcel -parodied parody -parried parry -partaken partake -partook partake -pasquil pasquinade -pasquilled pasquinade -pasquilling pasquinade -pasquils pasquinade -patrolled patrol -patrolling patrol -patted pat -patting pat -pedalled pedal -pedalling pedal -pegged peg -pegging peg -pencilled pencil -pencilling pencil -penned pen -penning pen -pent pen -pepped pep -pepping pep -permitted permit -permitting permit -personified personify -petrified petrify -petted pet -pettifogged pettifog -pettifogging pettifog -petting pet -phantasied phantasy -photocopied photocopy -photomapped photomap -photomapping photomap -photosetting photoset -physicked physic -physicking physic -picnicked picnic -picnicking picnic -pigged pig -pigging pig -pilloried pillory -pinch-hitting pinch-hit -pinned pin -pinning pin -pipped pip -pipping pip -pistol-whipped pistol-whip -pistol-whipping pistol-whip -pistolled pistol -pistolling pistol -pitapatted pitapat -pitapatting pitapat -pitied pity -pitted pit -pitting pit -planned plan -planning plan -platted plat -platting plat -played_a_part play_a_part -playing_a_part play_a_part -plays_a_part play_a_part -pled plead -plied ply -plodded plod -plodding plod -plopped plop -plopping plop -plotted plot -plotting plot -plugged plug -plugging plug -podded pod -podding pod -pommelled pommel -pommelling pommel -popes popes -popped pop -popping pop -potted pot -potting pot -preachified preachify -precancelled precancel -precancelling precancel -preferred prefer -preferring prefer -preoccupied preoccupy -prepaid prepay -presignified presignify -pretermitted pretermit -pretermitting pretermit -prettied pretty -prettified prettify -pried pry -prigged prig -prigging prig -primmed prim -primming prim -prodded prod -prodding prod -programmed program -programmes program -programming program -prologed prologue -prologing prologue -prologs prologue -propelled propel -propelling propel -prophesied prophesy -propped prop -propping prop -proven prove -pubbed pub -pubbing pub -pugged pug -pugging pug -pummelled pummel -pummelling pummel -punned pun -punning pun -pupped pup -pupping pup -purified purify -put-putted put-put -put-putting put-put -putrefied putrefy -puttied putty -putting put -qualified qualify -quantified quantify -quarrelled quarrel -quarrelling quarrel -quarried quarry -quartersawn quartersaw -queried query -quick-froze quick-freeze -quick-frozen quick-freeze -quickstepped quickstep -quickstepping quickstep -quipped quip -quipping quip -quitted quit -quitting quit -quizzed quiz -quizzes quiz -quizzing quiz -ragged rag -ragging rag -rallied rally -ramified ramify -rammed ram -ramming ram -ran run -rang ring -rapped rap -rappelled rappel -rappelling rappel -rapping rap -rarefied rarefy -ratified ratify -ratted rat -ratting rat -ravelled ravel -ravelling ravel -razor-cutting razor-cut -re-trod re-tread -re-trodden re-tread -rebelled rebel -rebelling rebel -rebuilt rebuild -rebutted rebut -rebutting rebut -recapped recap -recapping recap -reclassified reclassify -recommitted recommit -recommitting recommit -recopied recopy -rectified rectify -recurred recur -recurring recur -red red -red-pencilled red-pencil -red-pencilling red-pencil -redded red redd -redding red redd -redid redo -redone redo -referred refer -referring refer -refitted refit -refitting refit -reft reave -refuelled refuel -refuelling refuel -regretted regret -regretting regret -reheard rehear -reified reify -relied rely -remade remake -remarried remarry -remitted remit -remitting remit -rent rend -repaid repay -repelled repel -repelling repel -replevied replevy -replied reply -repotted repot -repotting repot -reran rerun -rerunning rerun -resat resit -resetting reset -resewn resew -resitting resit -retaken retake -rethought rethink -retold retell -retook retake -retransmitted retransmit -retransmitting retransmit -retried retry -retrofitted retrofit -retrofitting retrofit -retted ret -retting ret -reunified reunify -revelled revel -revelling revel -revetted revet -revetting revet -revivified revivify -revved rev -revving rev -rewound rewind -rewritten rewrite -rewrote rewrite -ribbed rib -ribbing rib -ricochetted ricochet -ricochetting ricochet -ridded rid -ridden ride -ridding rid -rigged rig -rigging rig -rigidified rigidify -rimmed rim -rimming rim -ripped rip -ripping rip -risen rise -rivalled rival -rivalling rival -riven rive -robbed rob -robbing rob -rode ride -rose rise -rotted rot -rotting rot -rough-dried rough-dry -rough-hewn rough-hew -rove reeve -rowelled rowel -rowelling rowel -rubbed rub -rubbing rub -rung ring -running run -rutted rut -rutting rut -saccharified saccharify -sagged sag -sagging sag -said say -salaried salary -salified salify -sallied sally -sanctified sanctify -sandbagged sandbag -sandbagging sandbag -sang sing -sank sink -saponified saponify -sapped sap -sapping sap -sat sit -satisfied satisfy -savvied savvy -saw see -sawn saw -scagged scag -scagging scag -scanned scan -scanning scan -scarified scarify -scarred scar -scarring scar -scatted scat -scatting scat -scorified scorify -scragged scrag -scragging scrag -scrammed scram -scramming scram -scrapped scrap -scrapping scrap -scried scry -scrubbed scrub -scrubbing scrub -scrummed scrum -scrumming scrum -scudded scud -scudding scud -scummed scum -scumming scum -scurried scurry -seed seed -seen see -sent send -setting set -sewn sew -shagged shag -shagging shag -shaken shake -shaken_hands shake_hands -shakes_hands shake_hands -shaking_hands shake_hands -shammed sham -shamming sham -sharecropped sharecrop -sharecropping sharecrop -shat shit -shaven shave -shed shed -shedding shed -shellacked shellac -shellacking shellac -shent shend -shewn shew -shied shy -shikarred shikar -shikarring shikar -shillyshallied shillyshally -shimmed shim -shimmied shimmy -shimming shim -shinned shin -shinning shin -shipped ship -shipping ship -shitted shit -shitting shit -shod shoe -shone shine -shook shake -shook_hands shake_hands -shopped shop -shopping shop -shot shoot -shotgunned shotgun -shotgunning shotgun -shotted shot -shotting shot -shovelled shovel -shovelling shovel -shown show -shrank shrink -shredded shred -shredding shred -shrink-wrapped shrink-wrap -shrink-wrapping shrink-wrap -shrivelled shrivel -shrivelling shrivel -shriven shrive -shrove shrive -shrugged shrug -shrugging shrug -shrunk shrink -shrunken shrink -shunned shun -shunning shun -shutting shut -sicked sic -sicking sic -sideslipped sideslip -sideslipping sideslip -sidestepped sidestep -sidestepping sidestep -sightsaw sightsee -sightseen sightsee -signalled signal -signalling signal -signified signify -silicified silicify -simplified simplify -singing sing singe -single-stepped single-step -single-stepping single-step -sinned sin -sinning sin -sipped sip -sipping sip -sitting sit -skellied skelly -skenned sken -skenning sken -sketted sket -sketting sket -ski'd ski -skidded skid -skidding skid -skimmed skim -skimming skim -skin-popped skin-pop -skin-popping skin-pop -skinned skin -skinning skin -skinny-dipped skinny-dip -skinny-dipping skinny-dip -skipped skip -skipping skip -skivvied skivvy -skydove skydive -slabbed slab -slabbing slab -slagged slag -slagging slag -slain slay -slammed slam -slamming slam -slapped slap -slapping slap -slatted slat -slatting slat -sledding sled -slept sleep -slew slay -slid slide -slidden slide -slipped slip -slipping slip -slitting slit -slogged slog -slogging slog -slopped slop -slopping slop -slotted slot -slotting slot -slugged slug -slugging slug -slummed slum -slumming slum -slung sling -slunk slink -slurred slur -slurring slur -smelt smell -smit smite -smitten smite -smote smite -smutted smut -smutting smut -snagged snag -snagging snag -snapped snap -snapping snap -snedded sned -snedding sned -snipped snip -snipping snip -snivelled snivel -snivelling snivel -snogged snog -snogging snog -snubbed snub -snubbing snub -snuck sneak -snugged snug -snugging snug -sobbed sob -sobbing sob -sodded sod -sodding sod -soft-pedalled soft-pedal -soft-pedalling soft-pedal -sold sell -solemnified solemnify -solidified solidify -soothsaid soothsay -sopped sop -sopping sop -sought seek -sown sow -spagged spag -spagging spag -spancelled spancel -spancelling spancel -spanned span -spanning span -sparred spar -sparring spar -spat spit -spatted spat -spatting spat -specified specify -sped speed -speechified speechify -spellbound spellbind -spelt spell -spent spend -spied spy -spilt spill -spin-dried spin-dry -spinning spin -spiralled spiral -spiralling spiral -spitted spit -spitting spit -splitting split -spoilt spoil -spoke speak -spoken speak -spoon-fed spoon-feed -spotlit spotlight -spotted spot -spotting spot -sprang spring -sprigged sprig -sprigging sprig -sprung spring -spudded spud -spudding spud -spun spin -spurred spur -spurring spur -squatted squat -squatting squat -squibbed squib -squibbing squib -squidded squid -squidding squid -squilgee squeegee -stabbed stab -stabbing stab -stall-fed stall-feed -stank stink -starred star -starring star -steadied steady -stellified stellify -stemmed stem -stemming stem -stems_from stem_from -stencilled stencil -stencilling stencil -stepped step -stepping step -stetted stet -stetting stet -stied sty -stilettoeing stiletto -stirred stir -stirring stir -stole steal -stolen steal -stood stand -stopped stop -stopping stop -storied story -stotted stot -stotting stot -stove stave -strapped strap -strapping strap -stratified stratify -strewn strew -stridden stride -stripped strip -stripping strip -striven strive -strode stride -stropped strop -stropping strop -strove strive -strown strow -struck strike -strummed strum -strumming strum -strung string -strutted strut -strutting strut -stubbed stub -stubbing stub -stuck stick -studded stud -studding stud -studied study -stultified stultify -stummed stum -stumming stum -stung sting -stunk stink -stunned stun -stunning stun -stupefied stupefy -stymying stymie -subbed sub -subbing sub -subjectified subjectify -subletting sublet -submitted submit -submitting submit -subtotalled subtotal -subtotalling subtotal -sullied sully -sulphuretted sulphuret -sulphuretting sulphuret -summed sum -summing sum -sung sing -sunk sink -sunken sink -sunned sun -sunning sun -supped sup -supping sup -supplied supply -swabbed swab -swabbing swab -swagged swag -swagging swag -swam swim -swapped swap -swapping swap -swatted swat -swatting swat -swept sweep -swigged swig -swigging swig -swimming swim -swivelled swivel -swivelling swivel -swollen swell -swopped swap -swopping swap -swops swap -swore swear -sworn swear -swotted swot -swotting swot -swum swim -swung swing -syllabified syllabify -symbolled symbol -symbolling symbol -tabbed tab -tabbing tab -tagged tag -tagging tag -taken take -taken_a_side take_a_side -taken_pains take_pains -taken_steps take_steps -takes_a_side take_a_side -takes_pains take_pains -takes_steps take_steps -taking_a_side take_a_side -taking_pains take_pains -taking_steps take_steps -talcked talc -talcking talc -tallied tally -tally-ho'd tally-ho -tammied tammy -tanned tan -tanning tan -tapped tap -tapping tap -tarred tar -tarried tarry -tarring tar -tasselled tassel -tasselling tassel -tatted tat -tatting tat -taught teach -taxis taxis -taxying taxi -teaselled teasel -teaselling teasel -tedded ted -tedding ted -tepefied tepefy -terrified terrify -testes testes -testified testify -thinking_the_world_of think_the_world_of -thinks_the_world_of think_the_world_of -thinned thin -thinning thin -thought think -thought_the_world_of think_the_world_of -threw throw -threw_out throw_out -thriven thrive -throbbed throb -throbbing throb -throve thrive -throwing_out throw_out -thrown throw -thrown_out throw_out -throws_out throw_out -thrummed thrum -thrumming thrum -thudded thud -thudding thud -tidied tidy -tinned tin -tinning tin -tinselled tinsel -tinselling tinsel -tipped tip -tipping tip -tittupped tittup -tittupping tittup -toadied toady -togged tog -togging tog -told tell -took take -took_a_side take_a_side -took_pains take_pains -took_steps take_steps -topped top -topping top -tore tear -torn tear -torrefied torrefy -torrify torrefy -totalled total -totalling total -totted tot -totting tot -towelled towel -towelling towel -trafficked traffic -trafficking traffic -trameled trammel -trameling trammel -tramelled trammel -tramelling trammel -tramels trammel -trammed tram -tramming tram -transferred transfer -transferring transfer -transfixt transfix -tranship transship -transhipped tranship -transhipping tranship -transmitted transmit -transmitting transmit -transmogrified transmogrify -transshipped transship -transshipping transship -trapanned trapan -trapanning trapan -trapped trap -trapping trap -travelled travel -travelling travel -travestied travesty -trekked trek -trekking trek -trepanned trepan -trepanning trepan -tried try -trigged trig -trigging trig -trimmed trim -trimming trim -tripped trip -tripping trip -trod tread -trodden tread -trogged trog -trogging trog -trotted trot -trotting trot -trowelled trowel -trowelling trowel -tugged tug -tugging tug -tumefied tumefy -tunned tun -tunnelled tunnel -tunnelling tunnel -tunning tun -tupped tup -tupping tup -tut-tutted tut-tut -tut-tutting tut-tut -twigged twig -twigging twig -twinned twin -twinning twin -twitted twit -twitting twit -tying tie -typesetting typeset -typewritten typewrite -typewrote typewrite -typified typify -uglified uglify -unbarred unbar -unbarring unbar -unbent unbend -unbound unbind -uncapped uncap -uncapping uncap -unclad unclothe -unclogged unclog -unclogging unclog -underbidding underbid -underbought underbuy -undercutting undercut -underfed underfeed -undergirt undergird -undergone undergo -underlaid underlay -underlain underlie -underlay underlie -underletting underlet -underlying underlie -underpaid underpay -underpinned underpin -underpinning underpin -underpropped underprop -underpropping underprop -undersetting underset -undershot undershoot -undersold undersell -understood understand -understudied understudy -undertaken undertake -undertook undertake -underwent undergo -underwritten underwrite -underwrote underwrite -undid undo -undone undo -unfitted unfit -unfitting unfit -unfroze unfreeze -unfrozen unfreeze -unified unify -unkennelled unkennel -unkennelling unkennel -unknitted unknit -unknitting unknit -unlaid unlay -unlearnt unlearn -unmade unmake -unmanned unman -unmanning unman -unpegged unpeg -unpegging unpeg -unpinned unpin -unpinning unpin -unplugged unplug -unplugging unplug -unravelled unravel -unravelling unravel -unrigged unrig -unrigging unrig -unripped unrip -unripping unrip -unrove unreeve -unsaid unsay -unshipped unship -unshipping unship -unslung unsling -unsnapped unsnap -unsnapping unsnap -unspoke unspeak -unspoken unspeak -unsteadied unsteady -unstepped unstep -unstepping unstep -unstopped unstop -unstopping unstop -unstrung unstring -unstuck unstick -unswore unswear -unsworn unswear -untaught unteach -unthought unthink -untidied untidy -untrod untread -untrodden untread -untying untie -unwound unwind -unwrapped unwrap -unwrapping unwrap -unzipped unzip -unzipping unzip -upbuilt upbuild -upheld uphold -uphove upheave -upped up -uppercutting uppercut -upping up -uprisen uprise -uprose uprise -upsetting upset -upsprang upspring -upsprung upspring -upswept upsweep -upswollen upswell -upswung upswing -vagged vag -vagging vag -varied vary -vatted vat -vatting vat -verbified verbify -verified verify -versified versify -vetted vet -vetting vet -victualled victual -victualling victual -vilified vilify -vitrified vitrify -vitriolled vitriol -vitriolling vitriol -vivified vivify -vying vie -wadded wad -waddied waddy -wadding wad -wadsetted wadset -wadsetting wadset -wagged wag -wagging wag -wanned wan -wanning wan -warred war -warring war -was be -water-ski'd water-ski -waylaid waylay -wearied weary -weatherstripped weatherstrip -weatherstripping weatherstrip -webbed web -webbing web -wedded wed -wedding wed -weed weed -went go -went_deep go_deep -wept weep -were be -wetted wet -wetting wet -whammed wham -whamming wham -whapped whap -whapping whap -whetted whet -whetting whet -whinnied whinny -whipped whip -whipping whip -whipsawn whipsaw -whirred whir -whirring whir -whistle-stopped whistle-stop -whistle-stopping whistle-stop -whizzed whiz -whizzes whiz -whizzing whiz -whopped whop -whopping whop -wigged wig -wigging wig -wigwagged wigwag -wigwagging wigwag -wildcatted wildcat -wildcatting wildcat -window-shopped window-shop -window-shopping window-shop -winning win -winterfed winterfeed -wiredrawn wiredraw -wiredrew wiredraw -withdrawn withdraw -withdrew withdraw -withheld withhold -withstood withstand -woke wake -woken wake -won win -wonned won -wonning won -wore wear -worn wear -worried worry -worshipped worship -worshipping worship -wound wind -wove weave -woven weave -wrapped wrap -wrapping wrap -wried wry -written write -wrote write -wrought work -wrung wring -yakked yak -yakking yak -yapped yap -yapping yap -ycleped clepe -yclept clepe -yenned yen -yenning yen -yodelled yodel -yodelling yodel -zapped zap -zapping zap -zigzagged zigzag -zigzagging zigzag -zipped zip -zipping zip diff --git a/corpora/en/wordnet/include/Makefile b/corpora/en/wordnet/include/Makefile deleted file mode 100644 index e866720e2..000000000 --- a/corpora/en/wordnet/include/Makefile +++ /dev/null @@ -1,459 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# include/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -srcdir = . -top_srcdir = .. - -pkgdatadir = $(datadir)/WordNet -pkglibdir = $(libdir)/WordNet -pkgincludedir = $(includedir)/WordNet -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = /usr/csl/bin/install -c -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = include -DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-exec-recursive install-info-recursive \ - install-recursive installcheck-recursive installdirs-recursive \ - pdf-recursive ps-recursive uninstall-info-recursive \ - uninstall-recursive -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(includedir)" -includeHEADERS_INSTALL = $(INSTALL_HEADER) -HEADERS = $(include_HEADERS) -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run aclocal-1.9 -AMDEP_FALSE = # -AMDEP_TRUE = -AMTAR = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run tar -AUTOCONF = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoconf -AUTOHEADER = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoheader -AUTOMAKE = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run automake-1.9 -AWK = nawk -CC = gcc -CCDEPMODE = depmode=gcc3 -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = egrep -EXEEXT = -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s -LDFLAGS = -LIBOBJS = -LIBS = -LTLIBOBJS = -MAKEINFO = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run makeinfo -OBJEXT = o -PACKAGE = WordNet -PACKAGE_BUGREPORT = wordnet@princeton.edu -PACKAGE_NAME = WordNet -PACKAGE_STRING = WordNet 3.0 -PACKAGE_TARNAME = wordnet -PACKAGE_VERSION = 3.0 -PATH_SEPARATOR = : -RANLIB = ranlib -SET_MAKE = -SHELL = /bin/bash -STRIP = -TCL_INCLUDE_SPEC = -I/usr/csl/include -TCL_LIB_SPEC = -L/usr/csl/lib -ltcl8.4 -TK_LIBS = -L/usr/openwin/lib -lX11 -ldl -lpthread -lsocket -lnsl -lm -TK_LIB_SPEC = -L/usr/csl/lib -ltk8.4 -TK_PREFIX = /usr/csl -TK_XINCLUDES = -I/usr/openwin/include -VERSION = 3.0 -ac_ct_CC = gcc -ac_ct_RANLIB = ranlib -ac_ct_STRIP = -ac_prefix = /usr/local/WordNet-3.0 -am__fastdepCC_FALSE = # -am__fastdepCC_TRUE = -am__include = include -am__leading_dot = . -am__quote = -am__tar = ${AMTAR} chof - "$$tardir" -am__untar = ${AMTAR} xf - -bindir = ${exec_prefix}/bin -build_alias = -datadir = ${prefix}/share -exec_prefix = ${prefix} -host_alias = -includedir = ${prefix}/include -infodir = ${prefix}/info -install_sh = /people/wn/src/Release/3.0/Unix/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localstatedir = ${prefix}/var -mandir = ${prefix}/man -mkdir_p = $(install_sh) -d -oldincludedir = /usr/include -prefix = /usr/local/WordNet-3.0 -program_transform_name = s,x,x, -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -sysconfdir = ${prefix}/etc -target_alias = -include_HEADERS = wn.h -SUBDIRS = tk -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-includeHEADERS: $(include_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)" - @list='$(include_HEADERS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \ - $(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \ - done - -uninstall-includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(include_HEADERS)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \ - rm -f "$(DESTDIR)$(includedir)/$$f"; \ - done - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(mkdir_p) "$(distdir)/$$subdir" \ - || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(HEADERS) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -info: info-recursive - -info-am: - -install-data-am: install-includeHEADERS - -install-exec-am: - -install-info: install-info-recursive - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-includeHEADERS uninstall-info-am - -uninstall-info: uninstall-info-recursive - -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ - clean clean-generic clean-recursive ctags ctags-recursive \ - distclean distclean-generic distclean-recursive distclean-tags \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-includeHEADERS install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive \ - mostlyclean mostlyclean-generic mostlyclean-recursive pdf \ - pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ - uninstall-includeHEADERS uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/include/Makefile.am b/corpora/en/wordnet/include/Makefile.am deleted file mode 100644 index 5b553f1b7..000000000 --- a/corpora/en/wordnet/include/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -include_HEADERS = wn.h -SUBDIRS = tk diff --git a/corpora/en/wordnet/include/Makefile.in b/corpora/en/wordnet/include/Makefile.in deleted file mode 100644 index f7098a74c..000000000 --- a/corpora/en/wordnet/include/Makefile.in +++ /dev/null @@ -1,459 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = include -DIST_COMMON = $(include_HEADERS) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-exec-recursive install-info-recursive \ - install-recursive installcheck-recursive installdirs-recursive \ - pdf-recursive ps-recursive uninstall-info-recursive \ - uninstall-recursive -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(includedir)" -includeHEADERS_INSTALL = $(INSTALL_HEADER) -HEADERS = $(include_HEADERS) -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -include_HEADERS = wn.h -SUBDIRS = tk -all: all-recursive - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-includeHEADERS: $(include_HEADERS) - @$(NORMAL_INSTALL) - test -z "$(includedir)" || $(mkdir_p) "$(DESTDIR)$(includedir)" - @list='$(include_HEADERS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(includeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(includedir)/$$f'"; \ - $(includeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(includedir)/$$f"; \ - done - -uninstall-includeHEADERS: - @$(NORMAL_UNINSTALL) - @list='$(include_HEADERS)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(includedir)/$$f'"; \ - rm -f "$(DESTDIR)$(includedir)/$$f"; \ - done - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(mkdir_p) "$(distdir)/$$subdir" \ - || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(HEADERS) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(includedir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-recursive - -rm -f Makefile -distclean-am: clean-am distclean-generic distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -info: info-recursive - -info-am: - -install-data-am: install-includeHEADERS - -install-exec-am: - -install-info: install-info-recursive - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-includeHEADERS uninstall-info-am - -uninstall-info: uninstall-info-recursive - -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ - clean clean-generic clean-recursive ctags ctags-recursive \ - distclean distclean-generic distclean-recursive distclean-tags \ - distdir dvi dvi-am html html-am info info-am install \ - install-am install-data install-data-am install-exec \ - install-exec-am install-includeHEADERS install-info \ - install-info-am install-man install-strip installcheck \ - installcheck-am installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive \ - mostlyclean mostlyclean-generic mostlyclean-recursive pdf \ - pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ - uninstall-includeHEADERS uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/include/tk/Makefile b/corpora/en/wordnet/include/tk/Makefile deleted file mode 100644 index 6404147f0..000000000 --- a/corpora/en/wordnet/include/tk/Makefile +++ /dev/null @@ -1,314 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# include/tk/Makefile. Generated from Makefile.in by configure. - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - - - -srcdir = . -top_srcdir = ../.. - -pkgdatadir = $(datadir)/WordNet -pkglibdir = $(libdir)/WordNet -pkgincludedir = $(includedir)/WordNet -top_builddir = ../.. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = /usr/csl/bin/install -c -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = include/tk -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(tkdir)" -tkDATA_INSTALL = $(INSTALL_DATA) -DATA = $(tk_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run aclocal-1.9 -AMDEP_FALSE = # -AMDEP_TRUE = -AMTAR = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run tar -AUTOCONF = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoconf -AUTOHEADER = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run autoheader -AUTOMAKE = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run automake-1.9 -AWK = nawk -CC = gcc -CCDEPMODE = depmode=gcc3 -CFLAGS = -g -O2 -CPP = gcc -E -CPPFLAGS = -CYGPATH_W = echo -DEFS = -DHAVE_CONFIG_H -DEPDIR = .deps -ECHO_C = -ECHO_N = -n -ECHO_T = -EGREP = egrep -EXEEXT = -INSTALL_DATA = ${INSTALL} -m 644 -INSTALL_PROGRAM = ${INSTALL} -INSTALL_SCRIPT = ${INSTALL} -INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s -LDFLAGS = -LIBOBJS = -LIBS = -LTLIBOBJS = -MAKEINFO = ${SHELL} /people/wn/src/Release/3.0/Unix/missing --run makeinfo -OBJEXT = o -PACKAGE = WordNet -PACKAGE_BUGREPORT = wordnet@princeton.edu -PACKAGE_NAME = WordNet -PACKAGE_STRING = WordNet 3.0 -PACKAGE_TARNAME = wordnet -PACKAGE_VERSION = 3.0 -PATH_SEPARATOR = : -RANLIB = ranlib -SET_MAKE = -SHELL = /bin/bash -STRIP = -TCL_INCLUDE_SPEC = -I/usr/csl/include -TCL_LIB_SPEC = -L/usr/csl/lib -ltcl8.4 -TK_LIBS = -L/usr/openwin/lib -lX11 -ldl -lpthread -lsocket -lnsl -lm -TK_LIB_SPEC = -L/usr/csl/lib -ltk8.4 -TK_PREFIX = /usr/csl -TK_XINCLUDES = -I/usr/openwin/include -VERSION = 3.0 -ac_ct_CC = gcc -ac_ct_RANLIB = ranlib -ac_ct_STRIP = -ac_prefix = /usr/local/WordNet-3.0 -am__fastdepCC_FALSE = # -am__fastdepCC_TRUE = -am__include = include -am__leading_dot = . -am__quote = -am__tar = ${AMTAR} chof - "$$tardir" -am__untar = ${AMTAR} xf - -bindir = ${exec_prefix}/bin -build_alias = -datadir = ${prefix}/share -exec_prefix = ${prefix} -host_alias = -includedir = ${prefix}/include -infodir = ${prefix}/info -install_sh = /people/wn/src/Release/3.0/Unix/install-sh -libdir = ${exec_prefix}/lib -libexecdir = ${exec_prefix}/libexec -localstatedir = ${prefix}/var -mandir = ${prefix}/man -mkdir_p = $(install_sh) -d -oldincludedir = /usr/include -prefix = /usr/local/WordNet-3.0 -program_transform_name = s,x,x, -sbindir = ${exec_prefix}/sbin -sharedstatedir = ${prefix}/com -sysconfdir = ${prefix}/etc -target_alias = -EXTRA_DIST = tk.h tkDecls.h -tkdir = $(prefix)/include/tk -tk_DATA = tk.h tkDecls.h -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/tk/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/tk/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-tkDATA: $(tk_DATA) - @$(NORMAL_INSTALL) - test -z "$(tkdir)" || $(mkdir_p) "$(DESTDIR)$(tkdir)" - @list='$(tk_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(tkDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(tkdir)/$$f'"; \ - $(tkDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(tkdir)/$$f"; \ - done - -uninstall-tkDATA: - @$(NORMAL_UNINSTALL) - @list='$(tk_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(tkdir)/$$f'"; \ - rm -f "$(DESTDIR)$(tkdir)/$$f"; \ - done -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(tkdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-tkDATA - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-info-am uninstall-tkDATA - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip install-tkDATA installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ - uninstall-am uninstall-info-am uninstall-tkDATA - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/include/tk/Makefile.am b/corpora/en/wordnet/include/tk/Makefile.am deleted file mode 100644 index 32ec841e5..000000000 --- a/corpora/en/wordnet/include/tk/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -EXTRA_DIST = tk.h tkDecls.h -tkdir = $(prefix)/include/tk -tk_DATA = tk.h tkDecls.h diff --git a/corpora/en/wordnet/include/tk/Makefile.in b/corpora/en/wordnet/include/tk/Makefile.in deleted file mode 100644 index 6c4c39c1e..000000000 --- a/corpora/en/wordnet/include/tk/Makefile.in +++ /dev/null @@ -1,314 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = ../.. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = include/tk -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(tkdir)" -tkDATA_INSTALL = $(INSTALL_DATA) -DATA = $(tk_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -EXTRA_DIST = tk.h tkDecls.h -tkdir = $(prefix)/include/tk -tk_DATA = tk.h tkDecls.h -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/tk/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu include/tk/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-tkDATA: $(tk_DATA) - @$(NORMAL_INSTALL) - test -z "$(tkdir)" || $(mkdir_p) "$(DESTDIR)$(tkdir)" - @list='$(tk_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(tkDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(tkdir)/$$f'"; \ - $(tkDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(tkdir)/$$f"; \ - done - -uninstall-tkDATA: - @$(NORMAL_UNINSTALL) - @list='$(tk_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(tkdir)/$$f'"; \ - rm -f "$(DESTDIR)$(tkdir)/$$f"; \ - done -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(tkdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-tkDATA - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-info-am uninstall-tkDATA - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip install-tkDATA installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ - uninstall-am uninstall-info-am uninstall-tkDATA - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/include/tk/tk.h b/corpora/en/wordnet/include/tk/tk.h deleted file mode 100644 index 5b44ffb00..000000000 --- a/corpora/en/wordnet/include/tk/tk.h +++ /dev/null @@ -1,1616 +0,0 @@ -/* - * tk.h -- - * - * Declarations for Tk-related things that are visible - * outside of the Tk module itself. - * - * Copyright (c) 1989-1994 The Regents of the University of California. - * Copyright (c) 1994 The Australian National University. - * Copyright (c) 1994-1998 Sun Microsystems, Inc. - * Copyright (c) 1998-2000 Ajuba Solutions. - * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tk.h,v 1.74.2.8 2004/10/28 16:49:42 dgp Exp $ - */ - -#ifndef _TK -#define _TK - -/* - * For C++ compilers, use extern "C" - */ - -#ifdef __cplusplus -extern "C" { -#endif - -/* - * When version numbers change here, you must also go into the following files - * and update the version numbers: - * - * library/tk.tcl (only if Major.minor changes, not patchlevel) - * unix/configure.in (2 LOC Major, 2 LOC minor, 1 LOC patch) - * win/configure.in (as above) - * win/makefile.vc (not patchlevel) - * README (sections 0 and 1) - * mac/README (not patchlevel) - * macosx/Wish.pbproj/project.pbxproj - * (14 LOC total, 4 LOC patch) - * win/README (not patchlevel) - * unix/README (not patchlevel) - * unix/tk.spec (3 LOC Major/Minor, 2 LOC patch) - * win/tcl.m4 (not patchlevel) - * - * You may also need to update some of these files when the numbers change - * for the version of Tcl that this release of Tk is compiled against. - */ - -#define TK_MAJOR_VERSION 8 -#define TK_MINOR_VERSION 4 -#define TK_RELEASE_LEVEL TCL_FINAL_RELEASE -#define TK_RELEASE_SERIAL 8 - -#define TK_VERSION "8.4" -#define TK_PATCH_LEVEL "8.4.8" - -/* - * The following definitions set up the proper options for Macintosh - * compilers. We use this method because there is no autoconf equivalent. - */ - -#if defined(MAC_TCL) || defined(MAC_OSX_TK) -# ifndef REDO_KEYSYM_LOOKUP -# define REDO_KEYSYM_LOOKUP -# endif -#endif - -#ifndef _TCL -# include -# if (TCL_MAJOR_VERSION != 8) || (TCL_MINOR_VERSION != 4) -# error Tk 8.4 must be compiled with tcl.h from Tcl 8.4 -# endif -#endif - -/* - * A special definition used to allow this header file to be included - * from windows or mac resource files so that they can obtain version - * information. RC_INVOKED is defined by default by the windows RC tool - * and manually set for macintosh. - * - * Resource compilers don't like all the C stuff, like typedefs and - * procedure declarations, that occur below, so block them out. - */ - -#ifndef RC_INVOKED - -#ifndef _XLIB_H -# if defined (MAC_TCL) -# include -# include -# elif defined(MAC_OSX_TK) -# include -# include -# else -# include -# endif -#endif -#ifdef __STDC__ -# include -#endif - -#ifdef BUILD_tk -# undef TCL_STORAGE_CLASS -# define TCL_STORAGE_CLASS DLLEXPORT -#endif - -/* - * Decide whether or not to use input methods. - */ - -#ifdef XNQueryInputStyle -#define TK_USE_INPUT_METHODS -#endif - -/* - * Dummy types that are used by clients: - */ - -typedef struct Tk_BindingTable_ *Tk_BindingTable; -typedef struct Tk_Canvas_ *Tk_Canvas; -typedef struct Tk_Cursor_ *Tk_Cursor; -typedef struct Tk_ErrorHandler_ *Tk_ErrorHandler; -typedef struct Tk_Font_ *Tk_Font; -typedef struct Tk_Image__ *Tk_Image; -typedef struct Tk_ImageMaster_ *Tk_ImageMaster; -typedef struct Tk_OptionTable_ *Tk_OptionTable; -typedef struct Tk_PostscriptInfo_ *Tk_PostscriptInfo; -typedef struct Tk_TextLayout_ *Tk_TextLayout; -typedef struct Tk_Window_ *Tk_Window; -typedef struct Tk_3DBorder_ *Tk_3DBorder; -typedef struct Tk_Style_ *Tk_Style; -typedef struct Tk_StyleEngine_ *Tk_StyleEngine; -typedef struct Tk_StyledElement_ *Tk_StyledElement; - -/* - * Additional types exported to clients. - */ - -typedef CONST char *Tk_Uid; - -/* - * The enum below defines the valid types for Tk configuration options - * as implemented by Tk_InitOptions, Tk_SetOptions, etc. - */ - -typedef enum { - TK_OPTION_BOOLEAN, - TK_OPTION_INT, - TK_OPTION_DOUBLE, - TK_OPTION_STRING, - TK_OPTION_STRING_TABLE, - TK_OPTION_COLOR, - TK_OPTION_FONT, - TK_OPTION_BITMAP, - TK_OPTION_BORDER, - TK_OPTION_RELIEF, - TK_OPTION_CURSOR, - TK_OPTION_JUSTIFY, - TK_OPTION_ANCHOR, - TK_OPTION_SYNONYM, - TK_OPTION_PIXELS, - TK_OPTION_WINDOW, - TK_OPTION_END, - TK_OPTION_CUSTOM, - TK_OPTION_STYLE -} Tk_OptionType; - -/* - * Structures of the following type are used by widgets to specify - * their configuration options. Typically each widget has a static - * array of these structures, where each element of the array describes - * a single configuration option. The array is passed to - * Tk_CreateOptionTable. - */ - -typedef struct Tk_OptionSpec { - Tk_OptionType type; /* Type of option, such as TK_OPTION_COLOR; - * see definitions above. Last option in - * table must have type TK_OPTION_END. */ - char *optionName; /* Name used to specify option in Tcl - * commands. */ - char *dbName; /* Name for option in option database. */ - char *dbClass; /* Class for option in database. */ - char *defValue; /* Default value for option if not specified - * in command line, the option database, - * or the system. */ - int objOffset; /* Where in record to store a Tcl_Obj * that - * holds the value of this option, specified - * as an offset in bytes from the start of - * the record. Use the Tk_Offset macro to - * generate values for this. -1 means don't - * store the Tcl_Obj in the record. */ - int internalOffset; /* Where in record to store the internal - * representation of the value of this option, - * such as an int or XColor *. This field - * is specified as an offset in bytes - * from the start of the record. Use the - * Tk_Offset macro to generate values for it. - * -1 means don't store the internal - * representation in the record. */ - int flags; /* Any combination of the values defined - * below. */ - ClientData clientData; /* An alternate place to put option-specific - * data. Used for the monochrome default value - * for colors, etc. */ - int typeMask; /* An arbitrary bit mask defined by the - * class manager; typically bits correspond - * to certain kinds of options such as all - * those that require a redisplay when they - * change. Tk_SetOptions returns the bit-wise - * OR of the typeMasks of all options that - * were changed. */ -} Tk_OptionSpec; - -/* - * Flag values for Tk_OptionSpec structures. These flags are shared by - * Tk_ConfigSpec structures, so be sure to coordinate any changes - * carefully. - */ - -#define TK_OPTION_NULL_OK (1 << 0) -#define TK_OPTION_DONT_SET_DEFAULT (1 << 3) - -/* - * The following structure and function types are used by TK_OPTION_CUSTOM - * options; the structure holds pointers to the functions needed by the Tk - * option config code to handle a custom option. - */ - -typedef int (Tk_CustomOptionSetProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, Tk_Window tkwin, Tcl_Obj **value, char *widgRec, - int offset, char *saveInternalPtr, int flags)); -typedef Tcl_Obj *(Tk_CustomOptionGetProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin, char *widgRec, int offset)); -typedef void (Tk_CustomOptionRestoreProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin, char *internalPtr, char *saveInternalPtr)); -typedef void (Tk_CustomOptionFreeProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin, char *internalPtr)); - -typedef struct Tk_ObjCustomOption { - char *name; /* Name of the custom option. */ - Tk_CustomOptionSetProc *setProc; /* Function to use to set a record's - * option value from a Tcl_Obj */ - Tk_CustomOptionGetProc *getProc; /* Function to use to get a Tcl_Obj - * representation from an internal - * representation of an option. */ - Tk_CustomOptionRestoreProc *restoreProc; /* Function to use to restore a - * saved value for the internal - * representation. */ - Tk_CustomOptionFreeProc *freeProc; /* Function to use to free the internal - * representation of an option. */ - ClientData clientData; /* Arbitrary one-word value passed to - * the handling procs. */ -} Tk_ObjCustomOption; - - -/* - * Macro to use to fill in "offset" fields of the Tk_OptionSpec. - * struct. Computes number of bytes from beginning of structure - * to a given field. - */ - -#ifdef offsetof -#define Tk_Offset(type, field) ((int) offsetof(type, field)) -#else -#define Tk_Offset(type, field) ((int) ((char *) &((type *) 0)->field)) -#endif - -/* - * The following two structures are used for error handling. When - * configuration options are being modified, the old values are - * saved in a Tk_SavedOptions structure. If an error occurs, then the - * contents of the structure can be used to restore all of the old - * values. The contents of this structure are for the private use - * Tk. No-one outside Tk should ever read or write any of the fields - * of these structures. - */ - -typedef struct Tk_SavedOption { - struct TkOption *optionPtr; /* Points to information that describes - * the option. */ - Tcl_Obj *valuePtr; /* The old value of the option, in - * the form of a Tcl object; may be - * NULL if the value wasn't saved as - * an object. */ - double internalForm; /* The old value of the option, in - * some internal representation such - * as an int or (XColor *). Valid - * only if optionPtr->specPtr->objOffset - * is < 0. The space must be large - * enough to accommodate a double, a - * long, or a pointer; right now it - * looks like a double is big - * enough. Also, using a double - * guarantees that the field is - * properly aligned for storing large - * values. */ -} Tk_SavedOption; - -#ifdef TCL_MEM_DEBUG -# define TK_NUM_SAVED_OPTIONS 2 -#else -# define TK_NUM_SAVED_OPTIONS 20 -#endif - -typedef struct Tk_SavedOptions { - char *recordPtr; /* The data structure in which to - * restore configuration options. */ - Tk_Window tkwin; /* Window associated with recordPtr; - * needed to restore certain options. */ - int numItems; /* The number of valid items in - * items field. */ - Tk_SavedOption items[TK_NUM_SAVED_OPTIONS]; - /* Items used to hold old values. */ - struct Tk_SavedOptions *nextPtr; /* Points to next structure in list; - * needed if too many options changed - * to hold all the old values in a - * single structure. NULL means no - * more structures. */ -} Tk_SavedOptions; - -/* - * Structure used to describe application-specific configuration - * options: indicates procedures to call to parse an option and - * to return a text string describing an option. THESE ARE - * DEPRECATED; PLEASE USE THE NEW STRUCTURES LISTED ABOVE. - */ - -/* - * This is a temporary flag used while tkObjConfig and new widgets - * are in development. - */ - -#ifndef __NO_OLD_CONFIG - -typedef int (Tk_OptionParseProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, Tk_Window tkwin, CONST84 char *value, char *widgRec, - int offset)); -typedef char *(Tk_OptionPrintProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin, char *widgRec, int offset, - Tcl_FreeProc **freeProcPtr)); - -typedef struct Tk_CustomOption { - Tk_OptionParseProc *parseProc; /* Procedure to call to parse an - * option and store it in converted - * form. */ - Tk_OptionPrintProc *printProc; /* Procedure to return a printable - * string describing an existing - * option. */ - ClientData clientData; /* Arbitrary one-word value used by - * option parser: passed to - * parseProc and printProc. */ -} Tk_CustomOption; - -/* - * Structure used to specify information for Tk_ConfigureWidget. Each - * structure gives complete information for one option, including - * how the option is specified on the command line, where it appears - * in the option database, etc. - */ - -typedef struct Tk_ConfigSpec { - int type; /* Type of option, such as TK_CONFIG_COLOR; - * see definitions below. Last option in - * table must have type TK_CONFIG_END. */ - char *argvName; /* Switch used to specify option in argv. - * NULL means this spec is part of a group. */ - Tk_Uid dbName; /* Name for option in option database. */ - Tk_Uid dbClass; /* Class for option in database. */ - Tk_Uid defValue; /* Default value for option if not - * specified in command line or database. */ - int offset; /* Where in widget record to store value; - * use Tk_Offset macro to generate values - * for this. */ - int specFlags; /* Any combination of the values defined - * below; other bits are used internally - * by tkConfig.c. */ - Tk_CustomOption *customPtr; /* If type is TK_CONFIG_CUSTOM then this is - * a pointer to info about how to parse and - * print the option. Otherwise it is - * irrelevant. */ -} Tk_ConfigSpec; - -/* - * Type values for Tk_ConfigSpec structures. See the user - * documentation for details. - */ - -typedef enum { - TK_CONFIG_BOOLEAN, TK_CONFIG_INT, TK_CONFIG_DOUBLE, TK_CONFIG_STRING, - TK_CONFIG_UID, TK_CONFIG_COLOR, TK_CONFIG_FONT, TK_CONFIG_BITMAP, - TK_CONFIG_BORDER, TK_CONFIG_RELIEF, TK_CONFIG_CURSOR, - TK_CONFIG_ACTIVE_CURSOR, TK_CONFIG_JUSTIFY, TK_CONFIG_ANCHOR, - TK_CONFIG_SYNONYM, TK_CONFIG_CAP_STYLE, TK_CONFIG_JOIN_STYLE, - TK_CONFIG_PIXELS, TK_CONFIG_MM, TK_CONFIG_WINDOW, TK_CONFIG_CUSTOM, - TK_CONFIG_END -} Tk_ConfigTypes; - -/* - * Possible values for flags argument to Tk_ConfigureWidget: - */ - -#define TK_CONFIG_ARGV_ONLY 1 -#define TK_CONFIG_OBJS 0x80 - -/* - * Possible flag values for Tk_ConfigSpec structures. Any bits at - * or above TK_CONFIG_USER_BIT may be used by clients for selecting - * certain entries. Before changing any values here, coordinate with - * tkOldConfig.c (internal-use-only flags are defined there). - */ - -#define TK_CONFIG_NULL_OK (1 << 0) -#define TK_CONFIG_COLOR_ONLY (1 << 1) -#define TK_CONFIG_MONO_ONLY (1 << 2) -#define TK_CONFIG_DONT_SET_DEFAULT (1 << 3) -#define TK_CONFIG_OPTION_SPECIFIED (1 << 4) -#define TK_CONFIG_USER_BIT 0x100 -#endif /* __NO_OLD_CONFIG */ - -/* - * Structure used to specify how to handle argv options. - */ - -typedef struct { - char *key; /* The key string that flags the option in the - * argv array. */ - int type; /* Indicates option type; see below. */ - char *src; /* Value to be used in setting dst; usage - * depends on type. */ - char *dst; /* Address of value to be modified; usage - * depends on type. */ - char *help; /* Documentation message describing this option. */ -} Tk_ArgvInfo; - -/* - * Legal values for the type field of a Tk_ArgvInfo: see the user - * documentation for details. - */ - -#define TK_ARGV_CONSTANT 15 -#define TK_ARGV_INT 16 -#define TK_ARGV_STRING 17 -#define TK_ARGV_UID 18 -#define TK_ARGV_REST 19 -#define TK_ARGV_FLOAT 20 -#define TK_ARGV_FUNC 21 -#define TK_ARGV_GENFUNC 22 -#define TK_ARGV_HELP 23 -#define TK_ARGV_CONST_OPTION 24 -#define TK_ARGV_OPTION_VALUE 25 -#define TK_ARGV_OPTION_NAME_VALUE 26 -#define TK_ARGV_END 27 - -/* - * Flag bits for passing to Tk_ParseArgv: - */ - -#define TK_ARGV_NO_DEFAULTS 0x1 -#define TK_ARGV_NO_LEFTOVERS 0x2 -#define TK_ARGV_NO_ABBREV 0x4 -#define TK_ARGV_DONT_SKIP_FIRST_ARG 0x8 - -/* - * Enumerated type for describing actions to be taken in response - * to a restrictProc established by Tk_RestrictEvents. - */ - -typedef enum { - TK_DEFER_EVENT, TK_PROCESS_EVENT, TK_DISCARD_EVENT -} Tk_RestrictAction; - -/* - * Priority levels to pass to Tk_AddOption: - */ - -#define TK_WIDGET_DEFAULT_PRIO 20 -#define TK_STARTUP_FILE_PRIO 40 -#define TK_USER_DEFAULT_PRIO 60 -#define TK_INTERACTIVE_PRIO 80 -#define TK_MAX_PRIO 100 - -/* - * Relief values returned by Tk_GetRelief: - */ - -#define TK_RELIEF_NULL -1 -#define TK_RELIEF_FLAT 0 -#define TK_RELIEF_GROOVE 1 -#define TK_RELIEF_RAISED 2 -#define TK_RELIEF_RIDGE 3 -#define TK_RELIEF_SOLID 4 -#define TK_RELIEF_SUNKEN 5 - -/* - * "Which" argument values for Tk_3DBorderGC: - */ - -#define TK_3D_FLAT_GC 1 -#define TK_3D_LIGHT_GC 2 -#define TK_3D_DARK_GC 3 - -/* - * Special EnterNotify/LeaveNotify "mode" for use in events - * generated by tkShare.c. Pick a high enough value that it's - * unlikely to conflict with existing values (like NotifyNormal) - * or any new values defined in the future. - */ - -#define TK_NOTIFY_SHARE 20 - -/* - * Enumerated type for describing a point by which to anchor something: - */ - -typedef enum { - TK_ANCHOR_N, TK_ANCHOR_NE, TK_ANCHOR_E, TK_ANCHOR_SE, - TK_ANCHOR_S, TK_ANCHOR_SW, TK_ANCHOR_W, TK_ANCHOR_NW, - TK_ANCHOR_CENTER -} Tk_Anchor; - -/* - * Enumerated type for describing a style of justification: - */ - -typedef enum { - TK_JUSTIFY_LEFT, TK_JUSTIFY_RIGHT, TK_JUSTIFY_CENTER -} Tk_Justify; - -/* - * The following structure is used by Tk_GetFontMetrics() to return - * information about the properties of a Tk_Font. - */ - -typedef struct Tk_FontMetrics { - int ascent; /* The amount in pixels that the tallest - * letter sticks up above the baseline, plus - * any extra blank space added by the designer - * of the font. */ - int descent; /* The largest amount in pixels that any - * letter sticks below the baseline, plus any - * extra blank space added by the designer of - * the font. */ - int linespace; /* The sum of the ascent and descent. How - * far apart two lines of text in the same - * font should be placed so that none of the - * characters in one line overlap any of the - * characters in the other line. */ -} Tk_FontMetrics; - -/* - * Flags passed to Tk_MeasureChars: - */ - -#define TK_WHOLE_WORDS 1 -#define TK_AT_LEAST_ONE 2 -#define TK_PARTIAL_OK 4 - -/* - * Flags passed to Tk_ComputeTextLayout: - */ - -#define TK_IGNORE_TABS 8 -#define TK_IGNORE_NEWLINES 16 - -/* - * Widget class procedures used to implement platform specific widget - * behavior. - */ - -typedef Window (Tk_ClassCreateProc) _ANSI_ARGS_((Tk_Window tkwin, - Window parent, ClientData instanceData)); -typedef void (Tk_ClassWorldChangedProc) _ANSI_ARGS_((ClientData instanceData)); -typedef void (Tk_ClassModalProc) _ANSI_ARGS_((Tk_Window tkwin, - XEvent *eventPtr)); - -typedef struct Tk_ClassProcs { - unsigned int size; - Tk_ClassWorldChangedProc *worldChangedProc; - /* Procedure to invoke when the widget needs to - * respond in some way to a change in the - * world (font changes, etc.) */ - Tk_ClassCreateProc *createProc; - /* Procedure to invoke when the - * platform-dependent window needs to be - * created. */ - Tk_ClassModalProc *modalProc; - /* Procedure to invoke after all bindings on a - * widget have been triggered in order to - * handle a modal loop. */ -} Tk_ClassProcs; - -/* - * Simple accessor for Tk_ClassProcs structure. Checks that the structure - * is not NULL, then checks the size field and returns either the requested - * field, if present, or NULL if the structure is too small to have the field - * (or NULL if the structure is NULL). - * - * A more general version of this function may be useful if other - * size-versioned structure pop up in the future: - * - * #define Tk_GetField(name, who, which) \ - * (((who) == NULL) ? NULL : - * (((who)->size <= Tk_Offset(name, which)) ? NULL :(name)->which)) - */ - -#define Tk_GetClassProc(procs, which) \ - (((procs) == NULL) ? NULL : \ - (((procs)->size <= Tk_Offset(Tk_ClassProcs, which)) ? NULL:(procs)->which)) - -/* - * Each geometry manager (the packer, the placer, etc.) is represented - * by a structure of the following form, which indicates procedures - * to invoke in the geometry manager to carry out certain functions. - */ - -typedef void (Tk_GeomRequestProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin)); -typedef void (Tk_GeomLostSlaveProc) _ANSI_ARGS_((ClientData clientData, - Tk_Window tkwin)); - -typedef struct Tk_GeomMgr { - char *name; /* Name of the geometry manager (command - * used to invoke it, or name of widget - * class that allows embedded widgets). */ - Tk_GeomRequestProc *requestProc; - /* Procedure to invoke when a slave's - * requested geometry changes. */ - Tk_GeomLostSlaveProc *lostSlaveProc; - /* Procedure to invoke when a slave is - * taken away from one geometry manager - * by another. NULL means geometry manager - * doesn't care when slaves are lost. */ -} Tk_GeomMgr; - -/* - * Result values returned by Tk_GetScrollInfo: - */ - -#define TK_SCROLL_MOVETO 1 -#define TK_SCROLL_PAGES 2 -#define TK_SCROLL_UNITS 3 -#define TK_SCROLL_ERROR 4 - -/* - *--------------------------------------------------------------------------- - * - * Extensions to the X event set - * - *--------------------------------------------------------------------------- - */ -#define VirtualEvent (LASTEvent) -#define ActivateNotify (LASTEvent + 1) -#define DeactivateNotify (LASTEvent + 2) -#define MouseWheelEvent (LASTEvent + 3) -#define TK_LASTEVENT (LASTEvent + 4) - -#define MouseWheelMask (1L << 28) - -#define ActivateMask (1L << 29) -#define VirtualEventMask (1L << 30) -#define TK_LASTEVENT (LASTEvent + 4) - - -/* - * A virtual event shares most of its fields with the XKeyEvent and - * XButtonEvent structures. 99% of the time a virtual event will be - * an abstraction of a key or button event, so this structure provides - * the most information to the user. The only difference is the changing - * of the detail field for a virtual event so that it holds the name of the - * virtual event being triggered. - */ - -typedef struct { - int type; - unsigned long serial; /* # of last request processed by server */ - Bool send_event; /* True if this came from a SendEvent request */ - Display *display; /* Display the event was read from */ - Window event; /* Window on which event was requested. */ - Window root; /* root window that the event occured on */ - Window subwindow; /* child window */ - Time time; /* milliseconds */ - int x, y; /* pointer x, y coordinates in event window */ - int x_root, y_root; /* coordinates relative to root */ - unsigned int state; /* key or button mask */ - Tk_Uid name; /* Name of virtual event. */ - Bool same_screen; /* same screen flag */ -} XVirtualEvent; - -typedef struct { - int type; - unsigned long serial; /* # of last request processed by server */ - Bool send_event; /* True if this came from a SendEvent request */ - Display *display; /* Display the event was read from */ - Window window; /* Window in which event occurred. */ -} XActivateDeactivateEvent; -typedef XActivateDeactivateEvent XActivateEvent; -typedef XActivateDeactivateEvent XDeactivateEvent; - -/* - *-------------------------------------------------------------- - * - * Macros for querying Tk_Window structures. See the - * manual entries for documentation. - * - *-------------------------------------------------------------- - */ - -#define Tk_Display(tkwin) (((Tk_FakeWin *) (tkwin))->display) -#define Tk_ScreenNumber(tkwin) (((Tk_FakeWin *) (tkwin))->screenNum) -#define Tk_Screen(tkwin) (ScreenOfDisplay(Tk_Display(tkwin), \ - Tk_ScreenNumber(tkwin))) -#define Tk_Depth(tkwin) (((Tk_FakeWin *) (tkwin))->depth) -#define Tk_Visual(tkwin) (((Tk_FakeWin *) (tkwin))->visual) -#define Tk_WindowId(tkwin) (((Tk_FakeWin *) (tkwin))->window) -#define Tk_PathName(tkwin) (((Tk_FakeWin *) (tkwin))->pathName) -#define Tk_Name(tkwin) (((Tk_FakeWin *) (tkwin))->nameUid) -#define Tk_Class(tkwin) (((Tk_FakeWin *) (tkwin))->classUid) -#define Tk_X(tkwin) (((Tk_FakeWin *) (tkwin))->changes.x) -#define Tk_Y(tkwin) (((Tk_FakeWin *) (tkwin))->changes.y) -#define Tk_Width(tkwin) (((Tk_FakeWin *) (tkwin))->changes.width) -#define Tk_Height(tkwin) \ - (((Tk_FakeWin *) (tkwin))->changes.height) -#define Tk_Changes(tkwin) (&((Tk_FakeWin *) (tkwin))->changes) -#define Tk_Attributes(tkwin) (&((Tk_FakeWin *) (tkwin))->atts) -#define Tk_IsEmbedded(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_EMBEDDED) -#define Tk_IsContainer(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_CONTAINER) -#define Tk_IsMapped(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_MAPPED) -#define Tk_IsTopLevel(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_TOP_LEVEL) -#define Tk_HasWrapper(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_HAS_WRAPPER) -#define Tk_WinManaged(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_WIN_MANAGED) -#define Tk_TopWinHierarchy(tkwin) \ - (((Tk_FakeWin *) (tkwin))->flags & TK_TOP_HIERARCHY) -#define Tk_ReqWidth(tkwin) (((Tk_FakeWin *) (tkwin))->reqWidth) -#define Tk_ReqHeight(tkwin) (((Tk_FakeWin *) (tkwin))->reqHeight) -/* Tk_InternalBorderWidth is deprecated */ -#define Tk_InternalBorderWidth(tkwin) \ - (((Tk_FakeWin *) (tkwin))->internalBorderLeft) -#define Tk_InternalBorderLeft(tkwin) \ - (((Tk_FakeWin *) (tkwin))->internalBorderLeft) -#define Tk_InternalBorderRight(tkwin) \ - (((Tk_FakeWin *) (tkwin))->internalBorderRight) -#define Tk_InternalBorderTop(tkwin) \ - (((Tk_FakeWin *) (tkwin))->internalBorderTop) -#define Tk_InternalBorderBottom(tkwin) \ - (((Tk_FakeWin *) (tkwin))->internalBorderBottom) -#define Tk_MinReqWidth(tkwin) (((Tk_FakeWin *) (tkwin))->minReqWidth) -#define Tk_MinReqHeight(tkwin) (((Tk_FakeWin *) (tkwin))->minReqHeight) -#define Tk_Parent(tkwin) (((Tk_FakeWin *) (tkwin))->parentPtr) -#define Tk_Colormap(tkwin) (((Tk_FakeWin *) (tkwin))->atts.colormap) - -/* - * The structure below is needed by the macros above so that they can - * access the fields of a Tk_Window. The fields not needed by the macros - * are declared as "dummyX". The structure has its own type in order to - * prevent applications from accessing Tk_Window fields except using - * official macros. WARNING!! The structure definition must be kept - * consistent with the TkWindow structure in tkInt.h. If you change one, - * then change the other. See the declaration in tkInt.h for - * documentation on what the fields are used for internally. - */ - -typedef struct Tk_FakeWin { - Display *display; - char *dummy1; /* dispPtr */ - int screenNum; - Visual *visual; - int depth; - Window window; - char *dummy2; /* childList */ - char *dummy3; /* lastChildPtr */ - Tk_Window parentPtr; /* parentPtr */ - char *dummy4; /* nextPtr */ - char *dummy5; /* mainPtr */ - char *pathName; - Tk_Uid nameUid; - Tk_Uid classUid; - XWindowChanges changes; - unsigned int dummy6; /* dirtyChanges */ - XSetWindowAttributes atts; - unsigned long dummy7; /* dirtyAtts */ - unsigned int flags; - char *dummy8; /* handlerList */ -#ifdef TK_USE_INPUT_METHODS - XIC dummy9; /* inputContext */ -#endif /* TK_USE_INPUT_METHODS */ - ClientData *dummy10; /* tagPtr */ - int dummy11; /* numTags */ - int dummy12; /* optionLevel */ - char *dummy13; /* selHandlerList */ - char *dummy14; /* geomMgrPtr */ - ClientData dummy15; /* geomData */ - int reqWidth, reqHeight; - int internalBorderLeft; - char *dummy16; /* wmInfoPtr */ - char *dummy17; /* classProcPtr */ - ClientData dummy18; /* instanceData */ - char *dummy19; /* privatePtr */ - int internalBorderRight; - int internalBorderTop; - int internalBorderBottom; - int minReqWidth; - int minReqHeight; -} Tk_FakeWin; - -/* - * Flag values for TkWindow (and Tk_FakeWin) structures are: - * - * TK_MAPPED: 1 means window is currently mapped, - * 0 means unmapped. - * TK_TOP_LEVEL: 1 means this is a top-level widget. - * TK_ALREADY_DEAD: 1 means the window is in the process of - * being destroyed already. - * TK_NEED_CONFIG_NOTIFY: 1 means that the window has been reconfigured - * before it was made to exist. At the time of - * making it exist a ConfigureNotify event needs - * to be generated. - * TK_GRAB_FLAG: Used to manage grabs. See tkGrab.c for - * details. - * TK_CHECKED_IC: 1 means we've already tried to get an input - * context for this window; if the ic field - * is NULL it means that there isn't a context - * for the field. - * TK_DONT_DESTROY_WINDOW: 1 means that Tk_DestroyWindow should not - * invoke XDestroyWindow to destroy this widget's - * X window. The flag is set when the window - * has already been destroyed elsewhere (e.g. - * by another application) or when it will be - * destroyed later (e.g. by destroying its - * parent). - * TK_WM_COLORMAP_WINDOW: 1 means that this window has at some time - * appeared in the WM_COLORMAP_WINDOWS property - * for its toplevel, so we have to remove it - * from that property if the window is - * deleted and the toplevel isn't. - * TK_EMBEDDED: 1 means that this window (which must be a - * toplevel) is not a free-standing window but - * rather is embedded in some other application. - * TK_CONTAINER: 1 means that this window is a container, and - * that some other application (either in - * this process or elsewhere) may be - * embedding itself inside the window. - * TK_BOTH_HALVES: 1 means that this window is used for - * application embedding (either as - * container or embedded application), and - * both the containing and embedded halves - * are associated with windows in this - * particular process. - * TK_DEFER_MODAL: 1 means that this window has deferred a modal - * loop until all of the bindings for the current - * event have been invoked. - * TK_WRAPPER: 1 means that this window is the extra - * wrapper window created around a toplevel - * to hold the menubar under Unix. See - * tkUnixWm.c for more information. - * TK_REPARENTED: 1 means that this window has been reparented - * so that as far as the window system is - * concerned it isn't a child of its Tk - * parent. Initially this is used only for - * special Unix menubar windows. - * TK_ANONYMOUS_WINDOW: 1 means that this window has no name, and is - * thus not accessible from Tk. - * TK_HAS_WRAPPER 1 means that this window has a wrapper window - * TK_WIN_MANAGED 1 means that this window is a child of the - * root window, and is managed by the window - * manager. - * TK_TOP_HIERARCHY 1 means this window is at the top of a - * physical window hierarchy within this - * process, i.e. the window's parent - * either doesn't exist or is not owned by - * this Tk application. - * TK_PROP_PROPCHANGE 1 means that PropertyNotify events in - * this window's children should propagate - * up to this window. - */ - - -#define TK_MAPPED 1 -#define TK_TOP_LEVEL 2 -#define TK_ALREADY_DEAD 4 -#define TK_NEED_CONFIG_NOTIFY 8 -#define TK_GRAB_FLAG 0x10 -#define TK_CHECKED_IC 0x20 -#define TK_DONT_DESTROY_WINDOW 0x40 -#define TK_WM_COLORMAP_WINDOW 0x80 -#define TK_EMBEDDED 0x100 -#define TK_CONTAINER 0x200 -#define TK_BOTH_HALVES 0x400 -#define TK_DEFER_MODAL 0x800 -#define TK_WRAPPER 0x1000 -#define TK_REPARENTED 0x2000 -#define TK_ANONYMOUS_WINDOW 0x4000 -#define TK_HAS_WRAPPER 0x8000 -#define TK_WIN_MANAGED 0x10000 -#define TK_TOP_HIERARCHY 0x20000 -#define TK_PROP_PROPCHANGE 0x40000 - -/* - *-------------------------------------------------------------- - * - * Procedure prototypes and structures used for defining new canvas - * items: - * - *-------------------------------------------------------------- - */ - -typedef enum { - TK_STATE_NULL = -1, TK_STATE_ACTIVE, TK_STATE_DISABLED, - TK_STATE_NORMAL, TK_STATE_HIDDEN -} Tk_State; - -typedef struct Tk_SmoothMethod { - char *name; - int (*coordProc) _ANSI_ARGS_((Tk_Canvas canvas, - double *pointPtr, int numPoints, int numSteps, - XPoint xPoints[], double dblPoints[])); - void (*postscriptProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, double *coordPtr, - int numPoints, int numSteps)); -} Tk_SmoothMethod; - -/* - * For each item in a canvas widget there exists one record with - * the following structure. Each actual item is represented by - * a record with the following stuff at its beginning, plus additional - * type-specific stuff after that. - */ - -#define TK_TAG_SPACE 3 - -typedef struct Tk_Item { - int id; /* Unique identifier for this item - * (also serves as first tag for - * item). */ - struct Tk_Item *nextPtr; /* Next in display list of all - * items in this canvas. Later items - * in list are drawn on top of earlier - * ones. */ - Tk_Uid staticTagSpace[TK_TAG_SPACE];/* Built-in space for limited # of - * tags. */ - Tk_Uid *tagPtr; /* Pointer to array of tags. Usually - * points to staticTagSpace, but - * may point to malloc-ed space if - * there are lots of tags. */ - int tagSpace; /* Total amount of tag space available - * at tagPtr. */ - int numTags; /* Number of tag slots actually used - * at *tagPtr. */ - struct Tk_ItemType *typePtr; /* Table of procedures that implement - * this type of item. */ - int x1, y1, x2, y2; /* Bounding box for item, in integer - * canvas units. Set by item-specific - * code and guaranteed to contain every - * pixel drawn in item. Item area - * includes x1 and y1 but not x2 - * and y2. */ - struct Tk_Item *prevPtr; /* Previous in display list of all - * items in this canvas. Later items - * in list are drawn just below earlier - * ones. */ - Tk_State state; /* state of item */ - char *reserved1; /* reserved for future use */ - int redraw_flags; /* some flags used in the canvas */ - - /* - *------------------------------------------------------------------ - * Starting here is additional type-specific stuff; see the - * declarations for individual types to see what is part of - * each type. The actual space below is determined by the - * "itemInfoSize" of the type's Tk_ItemType record. - *------------------------------------------------------------------ - */ -} Tk_Item; - -/* - * Flag bits for canvases (redraw_flags): - * - * TK_ITEM_STATE_DEPENDANT - 1 means that object needs to be - * redrawn if the canvas state changes. - * TK_ITEM_DONT_REDRAW - 1 means that the object redraw is already - * been prepared, so the general canvas code - * doesn't need to do that any more. - */ - -#define TK_ITEM_STATE_DEPENDANT 1 -#define TK_ITEM_DONT_REDRAW 2 - -/* - * Records of the following type are used to describe a type of - * item (e.g. lines, circles, etc.) that can form part of a - * canvas widget. - */ - -#ifdef USE_OLD_CANVAS -typedef int Tk_ItemCreateProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - char **argv)); -typedef int Tk_ItemConfigureProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - char **argv, int flags)); -typedef int Tk_ItemCoordProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - char **argv)); -#else -typedef int Tk_ItemCreateProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - Tcl_Obj *CONST objv[])); -typedef int Tk_ItemConfigureProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - Tcl_Obj *CONST objv[], int flags)); -typedef int Tk_ItemCoordProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int argc, - Tcl_Obj *CONST argv[])); -#endif -typedef void Tk_ItemDeleteProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, Display *display)); -typedef void Tk_ItemDisplayProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, Display *display, Drawable dst, - int x, int y, int width, int height)); -typedef double Tk_ItemPointProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, double *pointPtr)); -typedef int Tk_ItemAreaProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, double *rectPtr)); -typedef int Tk_ItemPostscriptProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, int prepass)); -typedef void Tk_ItemScaleProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, double originX, double originY, - double scaleX, double scaleY)); -typedef void Tk_ItemTranslateProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, double deltaX, double deltaY)); -typedef int Tk_ItemIndexProc _ANSI_ARGS_((Tcl_Interp *interp, - Tk_Canvas canvas, Tk_Item *itemPtr, char *indexString, - int *indexPtr)); -typedef void Tk_ItemCursorProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, int index)); -typedef int Tk_ItemSelectionProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, int offset, char *buffer, - int maxBytes)); -typedef void Tk_ItemInsertProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, int beforeThis, char *string)); -typedef void Tk_ItemDCharsProc _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item *itemPtr, int first, int last)); - -#ifndef __NO_OLD_CONFIG - -typedef struct Tk_ItemType { - char *name; /* The name of this type of item, such - * as "line". */ - int itemSize; /* Total amount of space needed for - * item's record. */ - Tk_ItemCreateProc *createProc; /* Procedure to create a new item of - * this type. */ - Tk_ConfigSpec *configSpecs; /* Pointer to array of configuration - * specs for this type. Used for - * returning configuration info. */ - Tk_ItemConfigureProc *configProc; /* Procedure to call to change - * configuration options. */ - Tk_ItemCoordProc *coordProc; /* Procedure to call to get and set - * the item's coordinates. */ - Tk_ItemDeleteProc *deleteProc; /* Procedure to delete existing item of - * this type. */ - Tk_ItemDisplayProc *displayProc; /* Procedure to display items of - * this type. */ - int alwaysRedraw; /* Non-zero means displayProc should - * be called even when the item has - * been moved off-screen. */ - Tk_ItemPointProc *pointProc; /* Computes distance from item to - * a given point. */ - Tk_ItemAreaProc *areaProc; /* Computes whether item is inside, - * outside, or overlapping an area. */ - Tk_ItemPostscriptProc *postscriptProc; - /* Procedure to write a Postscript - * description for items of this - * type. */ - Tk_ItemScaleProc *scaleProc; /* Procedure to rescale items of - * this type. */ - Tk_ItemTranslateProc *translateProc;/* Procedure to translate items of - * this type. */ - Tk_ItemIndexProc *indexProc; /* Procedure to determine index of - * indicated character. NULL if - * item doesn't support indexing. */ - Tk_ItemCursorProc *icursorProc; /* Procedure to set insert cursor pos. - * to just before a given position. */ - Tk_ItemSelectionProc *selectionProc;/* Procedure to return selection (in - * STRING format) when it is in this - * item. */ - Tk_ItemInsertProc *insertProc; /* Procedure to insert something into - * an item. */ - Tk_ItemDCharsProc *dCharsProc; /* Procedure to delete characters - * from an item. */ - struct Tk_ItemType *nextPtr; /* Used to link types together into - * a list. */ - char *reserved1; /* Reserved for future extension. */ - int reserved2; /* Carefully compatible with */ - char *reserved3; /* Jan Nijtmans dash patch */ - char *reserved4; -} Tk_ItemType; - -#endif - -/* - * The following structure provides information about the selection and - * the insertion cursor. It is needed by only a few items, such as - * those that display text. It is shared by the generic canvas code - * and the item-specific code, but most of the fields should be written - * only by the canvas generic code. - */ - -typedef struct Tk_CanvasTextInfo { - Tk_3DBorder selBorder; /* Border and background for selected - * characters. Read-only to items.*/ - int selBorderWidth; /* Width of border around selection. - * Read-only to items. */ - XColor *selFgColorPtr; /* Foreground color for selected text. - * Read-only to items. */ - Tk_Item *selItemPtr; /* Pointer to selected item. NULL means - * selection isn't in this canvas. - * Writable by items. */ - int selectFirst; /* Character index of first selected - * character. Writable by items. */ - int selectLast; /* Character index of last selected - * character. Writable by items. */ - Tk_Item *anchorItemPtr; /* Item corresponding to "selectAnchor": - * not necessarily selItemPtr. Read-only - * to items. */ - int selectAnchor; /* Character index of fixed end of - * selection (i.e. "select to" operation will - * use this as one end of the selection). - * Writable by items. */ - Tk_3DBorder insertBorder; /* Used to draw vertical bar for insertion - * cursor. Read-only to items. */ - int insertWidth; /* Total width of insertion cursor. Read-only - * to items. */ - int insertBorderWidth; /* Width of 3-D border around insert cursor. - * Read-only to items. */ - Tk_Item *focusItemPtr; /* Item that currently has the input focus, - * or NULL if no such item. Read-only to - * items. */ - int gotFocus; /* Non-zero means that the canvas widget has - * the input focus. Read-only to items.*/ - int cursorOn; /* Non-zero means that an insertion cursor - * should be displayed in focusItemPtr. - * Read-only to items.*/ -} Tk_CanvasTextInfo; - -/* - * Structures used for Dashing and Outline. - */ - -typedef struct Tk_Dash { - int number; - union { - char *pt; - char array[sizeof(char *)]; - } pattern; -} Tk_Dash; - -typedef struct Tk_TSOffset { - int flags; /* flags; see below for possible values */ - int xoffset; /* x offset */ - int yoffset; /* y offset */ -} Tk_TSOffset; - -/* - * Bit fields in Tk_Offset->flags: - */ - -#define TK_OFFSET_INDEX 1 -#define TK_OFFSET_RELATIVE 2 -#define TK_OFFSET_LEFT 4 -#define TK_OFFSET_CENTER 8 -#define TK_OFFSET_RIGHT 16 -#define TK_OFFSET_TOP 32 -#define TK_OFFSET_MIDDLE 64 -#define TK_OFFSET_BOTTOM 128 - -typedef struct Tk_Outline { - GC gc; /* Graphics context. */ - double width; /* Width of outline. */ - double activeWidth; /* Width of outline. */ - double disabledWidth; /* Width of outline. */ - int offset; /* Dash offset */ - Tk_Dash dash; /* Dash pattern */ - Tk_Dash activeDash; /* Dash pattern if state is active*/ - Tk_Dash disabledDash; /* Dash pattern if state is disabled*/ - VOID *reserved1; /* reserved for future expansion */ - VOID *reserved2; - VOID *reserved3; - Tk_TSOffset tsoffset; /* stipple offset for outline*/ - XColor *color; /* Outline color. */ - XColor *activeColor; /* Outline color if state is active. */ - XColor *disabledColor; /* Outline color if state is disabled. */ - Pixmap stipple; /* Outline Stipple pattern. */ - Pixmap activeStipple; /* Outline Stipple pattern if state is active. */ - Pixmap disabledStipple; /* Outline Stipple pattern if state is disabled. */ -} Tk_Outline; - - -/* - *-------------------------------------------------------------- - * - * Procedure prototypes and structures used for managing images: - * - *-------------------------------------------------------------- - */ - -typedef struct Tk_ImageType Tk_ImageType; -#ifdef USE_OLD_IMAGE -typedef int (Tk_ImageCreateProc) _ANSI_ARGS_((Tcl_Interp *interp, - char *name, int argc, char **argv, Tk_ImageType *typePtr, - Tk_ImageMaster master, ClientData *masterDataPtr)); -#else -typedef int (Tk_ImageCreateProc) _ANSI_ARGS_((Tcl_Interp *interp, - char *name, int objc, Tcl_Obj *CONST objv[], Tk_ImageType *typePtr, - Tk_ImageMaster master, ClientData *masterDataPtr)); -#endif -typedef ClientData (Tk_ImageGetProc) _ANSI_ARGS_((Tk_Window tkwin, - ClientData masterData)); -typedef void (Tk_ImageDisplayProc) _ANSI_ARGS_((ClientData instanceData, - Display *display, Drawable drawable, int imageX, int imageY, - int width, int height, int drawableX, int drawableY)); -typedef void (Tk_ImageFreeProc) _ANSI_ARGS_((ClientData instanceData, - Display *display)); -typedef void (Tk_ImageDeleteProc) _ANSI_ARGS_((ClientData masterData)); -typedef void (Tk_ImageChangedProc) _ANSI_ARGS_((ClientData clientData, - int x, int y, int width, int height, int imageWidth, - int imageHeight)); -typedef int (Tk_ImagePostscriptProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, Tk_Window tkwin, Tk_PostscriptInfo psinfo, - int x, int y, int width, int height, int prepass)); - -/* - * The following structure represents a particular type of image - * (bitmap, xpm image, etc.). It provides information common to - * all images of that type, such as the type name and a collection - * of procedures in the image manager that respond to various - * events. Each image manager is represented by one of these - * structures. - */ - -struct Tk_ImageType { - char *name; /* Name of image type. */ - Tk_ImageCreateProc *createProc; - /* Procedure to call to create a new image - * of this type. */ - Tk_ImageGetProc *getProc; /* Procedure to call the first time - * Tk_GetImage is called in a new way - * (new visual or screen). */ - Tk_ImageDisplayProc *displayProc; - /* Call to draw image, in response to - * Tk_RedrawImage calls. */ - Tk_ImageFreeProc *freeProc; /* Procedure to call whenever Tk_FreeImage - * is called to release an instance of an - * image. */ - Tk_ImageDeleteProc *deleteProc; - /* Procedure to call to delete image. It - * will not be called until after freeProc - * has been called for each instance of the - * image. */ - Tk_ImagePostscriptProc *postscriptProc; - /* Procedure to call to produce postscript - * output for the image. */ - struct Tk_ImageType *nextPtr; - /* Next in list of all image types currently - * known. Filled in by Tk, not by image - * manager. */ - char *reserved; /* reserved for future expansion */ -}; - -/* - *-------------------------------------------------------------- - * - * Additional definitions used to manage images of type "photo". - * - *-------------------------------------------------------------- - */ - -/* - * The following type is used to identify a particular photo image - * to be manipulated: - */ - -typedef void *Tk_PhotoHandle; - -/* - * The following structure describes a block of pixels in memory: - */ - -typedef struct Tk_PhotoImageBlock { - unsigned char *pixelPtr; /* Pointer to the first pixel. */ - int width; /* Width of block, in pixels. */ - int height; /* Height of block, in pixels. */ - int pitch; /* Address difference between corresponding - * pixels in successive lines. */ - int pixelSize; /* Address difference between successive - * pixels in the same line. */ - int offset[4]; /* Address differences between the red, green, - * blue and alpha components of the pixel and - * the pixel as a whole. */ -} Tk_PhotoImageBlock; - -/* - * The following values control how blocks are combined into photo - * images when the alpha component of a pixel is not 255, a.k.a. the - * compositing rule. - */ - -#define TK_PHOTO_COMPOSITE_OVERLAY 0 -#define TK_PHOTO_COMPOSITE_SET 1 - -/* - * Procedure prototypes and structures used in reading and - * writing photo images: - */ - -typedef struct Tk_PhotoImageFormat Tk_PhotoImageFormat; -#ifdef USE_OLD_IMAGE -typedef int (Tk_ImageFileMatchProc) _ANSI_ARGS_((Tcl_Channel chan, - char *fileName, char *formatString, int *widthPtr, int *heightPtr)); -typedef int (Tk_ImageStringMatchProc) _ANSI_ARGS_((char *string, - char *formatString, int *widthPtr, int *heightPtr)); -typedef int (Tk_ImageFileReadProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_Channel chan, char *fileName, char *formatString, - Tk_PhotoHandle imageHandle, int destX, int destY, - int width, int height, int srcX, int srcY)); -typedef int (Tk_ImageStringReadProc) _ANSI_ARGS_((Tcl_Interp *interp, - char *string, char *formatString, Tk_PhotoHandle imageHandle, - int destX, int destY, int width, int height, int srcX, int srcY)); -typedef int (Tk_ImageFileWriteProc) _ANSI_ARGS_((Tcl_Interp *interp, - char *fileName, char *formatString, Tk_PhotoImageBlock *blockPtr)); -typedef int (Tk_ImageStringWriteProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_DString *dataPtr, char *formatString, - Tk_PhotoImageBlock *blockPtr)); -#else -typedef int (Tk_ImageFileMatchProc) _ANSI_ARGS_((Tcl_Channel chan, - CONST char *fileName, Tcl_Obj *format, int *widthPtr, - int *heightPtr, Tcl_Interp *interp)); -typedef int (Tk_ImageStringMatchProc) _ANSI_ARGS_((Tcl_Obj *dataObj, - Tcl_Obj *format, int *widthPtr, int *heightPtr, - Tcl_Interp *interp)); -typedef int (Tk_ImageFileReadProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_Channel chan, CONST char *fileName, Tcl_Obj *format, - Tk_PhotoHandle imageHandle, int destX, int destY, - int width, int height, int srcX, int srcY)); -typedef int (Tk_ImageStringReadProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_Obj *dataObj, Tcl_Obj *format, Tk_PhotoHandle imageHandle, - int destX, int destY, int width, int height, int srcX, int srcY)); -typedef int (Tk_ImageFileWriteProc) _ANSI_ARGS_((Tcl_Interp *interp, - CONST char *fileName, Tcl_Obj *format, Tk_PhotoImageBlock *blockPtr)); -typedef int (Tk_ImageStringWriteProc) _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_Obj *format, Tk_PhotoImageBlock *blockPtr)); -#endif - -/* - * The following structure represents a particular file format for - * storing images (e.g., PPM, GIF, JPEG, etc.). It provides information - * to allow image files of that format to be recognized and read into - * a photo image. - */ - -struct Tk_PhotoImageFormat { - char *name; /* Name of image file format */ - Tk_ImageFileMatchProc *fileMatchProc; - /* Procedure to call to determine whether - * an image file matches this format. */ - Tk_ImageStringMatchProc *stringMatchProc; - /* Procedure to call to determine whether - * the data in a string matches this format. */ - Tk_ImageFileReadProc *fileReadProc; - /* Procedure to call to read data from - * an image file into a photo image. */ - Tk_ImageStringReadProc *stringReadProc; - /* Procedure to call to read data from - * a string into a photo image. */ - Tk_ImageFileWriteProc *fileWriteProc; - /* Procedure to call to write data from - * a photo image to a file. */ - Tk_ImageStringWriteProc *stringWriteProc; - /* Procedure to call to obtain a string - * representation of the data in a photo - * image.*/ - struct Tk_PhotoImageFormat *nextPtr; - /* Next in list of all photo image formats - * currently known. Filled in by Tk, not - * by image format handler. */ -}; - -EXTERN void Tk_CreateOldImageType _ANSI_ARGS_(( - Tk_ImageType *typePtr)); -EXTERN void Tk_CreateOldPhotoImageFormat _ANSI_ARGS_(( - Tk_PhotoImageFormat *formatPtr)); - -#if !defined(USE_TK_STUBS) && defined(USE_OLD_IMAGE) -#define Tk_CreateImageType Tk_CreateOldImageType -#define Tk_CreatePhotoImageFormat Tk_CreateOldPhotoImageFormat -#endif - - -/* - *-------------------------------------------------------------- - * - * Procedure prototypes and structures used for managing styles: - * - *-------------------------------------------------------------- - */ - -/* - * Style support version tag. - */ -#define TK_STYLE_VERSION_1 0x1 -#define TK_STYLE_VERSION TK_STYLE_VERSION_1 - -/* - * The following structures and prototypes are used as static templates to - * declare widget elements. - */ - -typedef void (Tk_GetElementSizeProc) _ANSI_ARGS_((ClientData clientData, - char *recordPtr, CONST Tk_OptionSpec **optionsPtr, Tk_Window tkwin, - int width, int height, int inner, int *widthPtr, int *heightPtr)); -typedef void (Tk_GetElementBoxProc) _ANSI_ARGS_((ClientData clientData, - char *recordPtr, CONST Tk_OptionSpec **optionsPtr, Tk_Window tkwin, - int x, int y, int width, int height, int inner, int *xPtr, int *yPtr, - int *widthPtr, int *heightPtr)); -typedef int (Tk_GetElementBorderWidthProc) _ANSI_ARGS_((ClientData clientData, - char *recordPtr, CONST Tk_OptionSpec **optionsPtr, Tk_Window tkwin)); -typedef void (Tk_DrawElementProc) _ANSI_ARGS_((ClientData clientData, - char *recordPtr, CONST Tk_OptionSpec **optionsPtr, Tk_Window tkwin, - Drawable d, int x, int y, int width, int height, int state)); - -typedef struct Tk_ElementOptionSpec { - char *name; /* Name of the required option. */ - Tk_OptionType type; /* Accepted option type. TK_OPTION_END means - * any. */ -} Tk_ElementOptionSpec; - -typedef struct Tk_ElementSpec { - int version; /* Version of the style support. */ - char *name; /* Name of element. */ - Tk_ElementOptionSpec *options; - /* List of required options. Last one's name - * must be NULL. */ - - /* - * Hooks - */ - - Tk_GetElementSizeProc *getSize; - /* Compute the external (resp. internal) size of - * the element from its desired internal (resp. - * external) size. */ - Tk_GetElementBoxProc *getBox; - /* Compute the inscribed or bounding boxes - * within a given area. */ - Tk_GetElementBorderWidthProc *getBorderWidth; - /* Return the element's internal border width. - * Mostly useful for widgets. */ - Tk_DrawElementProc *draw; /* Draw the element in the given bounding box.*/ -} Tk_ElementSpec; - -/* - * Element state flags. Can be OR'ed. - */ - -#define TK_ELEMENT_STATE_ACTIVE 1<<0 -#define TK_ELEMENT_STATE_DISABLED 1<<1 -#define TK_ELEMENT_STATE_FOCUS 1<<2 -#define TK_ELEMENT_STATE_PRESSED 1<<3 - -/* - *-------------------------------------------------------------- - * - * The definitions below provide backward compatibility for - * functions and types related to event handling that used to - * be in Tk but have moved to Tcl. - * - *-------------------------------------------------------------- - */ - -#define TK_READABLE TCL_READABLE -#define TK_WRITABLE TCL_WRITABLE -#define TK_EXCEPTION TCL_EXCEPTION - -#define TK_DONT_WAIT TCL_DONT_WAIT -#define TK_X_EVENTS TCL_WINDOW_EVENTS -#define TK_WINDOW_EVENTS TCL_WINDOW_EVENTS -#define TK_FILE_EVENTS TCL_FILE_EVENTS -#define TK_TIMER_EVENTS TCL_TIMER_EVENTS -#define TK_IDLE_EVENTS TCL_IDLE_EVENTS -#define TK_ALL_EVENTS TCL_ALL_EVENTS - -#define Tk_IdleProc Tcl_IdleProc -#define Tk_FileProc Tcl_FileProc -#define Tk_TimerProc Tcl_TimerProc -#define Tk_TimerToken Tcl_TimerToken - -#define Tk_BackgroundError Tcl_BackgroundError -#define Tk_CancelIdleCall Tcl_CancelIdleCall -#define Tk_CreateFileHandler Tcl_CreateFileHandler -#define Tk_CreateTimerHandler Tcl_CreateTimerHandler -#define Tk_DeleteFileHandler Tcl_DeleteFileHandler -#define Tk_DeleteTimerHandler Tcl_DeleteTimerHandler -#define Tk_DoOneEvent Tcl_DoOneEvent -#define Tk_DoWhenIdle Tcl_DoWhenIdle -#define Tk_Sleep Tcl_Sleep - -/* Additional stuff that has moved to Tcl: */ - -#define Tk_EventuallyFree Tcl_EventuallyFree -#define Tk_FreeProc Tcl_FreeProc -#define Tk_Preserve Tcl_Preserve -#define Tk_Release Tcl_Release - -/* Removed Tk_Main, use macro instead */ -#define Tk_Main(argc, argv, proc) \ - Tk_MainEx(argc, argv, proc, Tcl_CreateInterp()) - -CONST char *Tk_InitStubs _ANSI_ARGS_((Tcl_Interp *interp, char *version, int exact)); - -#ifndef USE_TK_STUBS - -#define Tk_InitStubs(interp, version, exact) \ - Tcl_PkgRequire(interp, "Tk", version, exact) - -#endif - -void Tk_InitImageArgs _ANSI_ARGS_((Tcl_Interp *interp, int argc, char ***argv)); - -#if !defined(USE_TK_STUBS) || !defined(USE_OLD_IMAGE) - -#define Tk_InitImageArgs(interp, argc, argv) /**/ - -#endif - - -/* - *-------------------------------------------------------------- - * - * Additional procedure types defined by Tk. - * - *-------------------------------------------------------------- - */ - -typedef int (Tk_ErrorProc) _ANSI_ARGS_((ClientData clientData, - XErrorEvent *errEventPtr)); -typedef void (Tk_EventProc) _ANSI_ARGS_((ClientData clientData, - XEvent *eventPtr)); -typedef int (Tk_GenericProc) _ANSI_ARGS_((ClientData clientData, - XEvent *eventPtr)); -typedef int (Tk_ClientMessageProc) _ANSI_ARGS_((Tk_Window tkwin, - XEvent *eventPtr)); -typedef int (Tk_GetSelProc) _ANSI_ARGS_((ClientData clientData, - Tcl_Interp *interp, char *portion)); -typedef void (Tk_LostSelProc) _ANSI_ARGS_((ClientData clientData)); -typedef Tk_RestrictAction (Tk_RestrictProc) _ANSI_ARGS_(( - ClientData clientData, XEvent *eventPtr)); -typedef int (Tk_SelectionProc) _ANSI_ARGS_((ClientData clientData, - int offset, char *buffer, int maxBytes)); - - -/* - *-------------------------------------------------------------- - * - * Platform independant exported procedures and variables. - * - *-------------------------------------------------------------- - */ - -#include "tkDecls.h" - -/* - * Allow users to say that they don't want to alter their source to - * add the extra argument to Tk_PhotoPutBlock(); DO NOT DEFINE THIS - * WHEN BUILDING TK. - * - * This goes after the inclusion of the stubbed-decls so that the - * declarations of what is actually there can be correct. - */ - -#ifdef USE_COMPOSITELESS_PHOTO_PUT_BLOCK -# ifdef Tk_PhotoPutBlock -# undef Tk_PhotoPutBlock -# endif -# define Tk_PhotoPutBlock Tk_PhotoPutBlock_NoComposite -# ifdef Tk_PhotoPutZoomedBlock -# undef Tk_PhotoPutZoomedBlock -# endif -# define Tk_PhotoPutZoomedBlock Tk_PhotoPutZoomedBlock_NoComposite -#endif /* USE_COMPOSITELESS_PHOTO_PUT_BLOCK */ - -/* - * Tcl commands exported by Tk: - */ - - -#undef TCL_STORAGE_CLASS -#define TCL_STORAGE_CLASS DLLIMPORT - -#endif /* RC_INVOKED */ - -/* - * end block for C++ - */ - -#ifdef __cplusplus -} -#endif - -#endif /* _TK */ diff --git a/corpora/en/wordnet/include/tk/tkDecls.h b/corpora/en/wordnet/include/tk/tkDecls.h deleted file mode 100644 index fd5aadd27..000000000 --- a/corpora/en/wordnet/include/tk/tkDecls.h +++ /dev/null @@ -1,2275 +0,0 @@ -/* - * tkDecls.h -- - * - * Declarations of functions in the platform independent public Tcl API. - * - * Copyright (c) 1998-1999 by Scriptics Corporation. - * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tkDecls.h,v 1.23 2002/08/05 04:30:38 dgp Exp $ - */ - -#ifndef _TKDECLS -#define _TKDECLS - -#ifdef BUILD_tk -#undef TCL_STORAGE_CLASS -#define TCL_STORAGE_CLASS DLLEXPORT -#endif - -/* - * WARNING: This file is automatically generated by the tools/genStubs.tcl - * script. Any modifications to the function declarations below should be made - * in the generic/tk.decls script. - */ - -/* !BEGIN!: Do not edit below this line. */ - -/* - * Exported function declarations: - */ - -/* 0 */ -EXTERN void Tk_MainLoop _ANSI_ARGS_((void)); -/* 1 */ -EXTERN XColor * Tk_3DBorderColor _ANSI_ARGS_((Tk_3DBorder border)); -/* 2 */ -EXTERN GC Tk_3DBorderGC _ANSI_ARGS_((Tk_Window tkwin, - Tk_3DBorder border, int which)); -/* 3 */ -EXTERN void Tk_3DHorizontalBevel _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, int x, - int y, int width, int height, int leftIn, - int rightIn, int topBevel, int relief)); -/* 4 */ -EXTERN void Tk_3DVerticalBevel _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, int x, - int y, int width, int height, int leftBevel, - int relief)); -/* 5 */ -EXTERN void Tk_AddOption _ANSI_ARGS_((Tk_Window tkwin, - CONST char * name, CONST char * value, - int priority)); -/* 6 */ -EXTERN void Tk_BindEvent _ANSI_ARGS_(( - Tk_BindingTable bindingTable, - XEvent * eventPtr, Tk_Window tkwin, - int numObjects, ClientData * objectPtr)); -/* 7 */ -EXTERN void Tk_CanvasDrawableCoords _ANSI_ARGS_(( - Tk_Canvas canvas, double x, double y, - short * drawableXPtr, short * drawableYPtr)); -/* 8 */ -EXTERN void Tk_CanvasEventuallyRedraw _ANSI_ARGS_(( - Tk_Canvas canvas, int x1, int y1, int x2, - int y2)); -/* 9 */ -EXTERN int Tk_CanvasGetCoord _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, CONST char * str, - double * doublePtr)); -/* 10 */ -EXTERN Tk_CanvasTextInfo * Tk_CanvasGetTextInfo _ANSI_ARGS_(( - Tk_Canvas canvas)); -/* 11 */ -EXTERN int Tk_CanvasPsBitmap _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, Pixmap bitmap, int x, - int y, int width, int height)); -/* 12 */ -EXTERN int Tk_CanvasPsColor _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, XColor * colorPtr)); -/* 13 */ -EXTERN int Tk_CanvasPsFont _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, Tk_Font font)); -/* 14 */ -EXTERN void Tk_CanvasPsPath _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, double * coordPtr, - int numPoints)); -/* 15 */ -EXTERN int Tk_CanvasPsStipple _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Canvas canvas, Pixmap bitmap)); -/* 16 */ -EXTERN double Tk_CanvasPsY _ANSI_ARGS_((Tk_Canvas canvas, double y)); -/* 17 */ -EXTERN void Tk_CanvasSetStippleOrigin _ANSI_ARGS_(( - Tk_Canvas canvas, GC gc)); -/* 18 */ -EXTERN int Tk_CanvasTagsParseProc _ANSI_ARGS_(( - ClientData clientData, Tcl_Interp * interp, - Tk_Window tkwin, CONST char * value, - char * widgRec, int offset)); -/* 19 */ -EXTERN char * Tk_CanvasTagsPrintProc _ANSI_ARGS_(( - ClientData clientData, Tk_Window tkwin, - char * widgRec, int offset, - Tcl_FreeProc ** freeProcPtr)); -/* 20 */ -EXTERN Tk_Window Tk_CanvasTkwin _ANSI_ARGS_((Tk_Canvas canvas)); -/* 21 */ -EXTERN void Tk_CanvasWindowCoords _ANSI_ARGS_((Tk_Canvas canvas, - double x, double y, short * screenXPtr, - short * screenYPtr)); -/* 22 */ -EXTERN void Tk_ChangeWindowAttributes _ANSI_ARGS_(( - Tk_Window tkwin, unsigned long valueMask, - XSetWindowAttributes * attsPtr)); -/* 23 */ -EXTERN int Tk_CharBbox _ANSI_ARGS_((Tk_TextLayout layout, - int index, int * xPtr, int * yPtr, - int * widthPtr, int * heightPtr)); -/* 24 */ -EXTERN void Tk_ClearSelection _ANSI_ARGS_((Tk_Window tkwin, - Atom selection)); -/* 25 */ -EXTERN int Tk_ClipboardAppend _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Atom target, Atom format, - char* buffer)); -/* 26 */ -EXTERN int Tk_ClipboardClear _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin)); -/* 27 */ -EXTERN int Tk_ConfigureInfo _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_ConfigSpec * specs, - char * widgRec, CONST char * argvName, - int flags)); -/* 28 */ -EXTERN int Tk_ConfigureValue _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_ConfigSpec * specs, - char * widgRec, CONST char * argvName, - int flags)); -/* 29 */ -EXTERN int Tk_ConfigureWidget _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_ConfigSpec * specs, - int argc, CONST84 char ** argv, - char * widgRec, int flags)); -/* 30 */ -EXTERN void Tk_ConfigureWindow _ANSI_ARGS_((Tk_Window tkwin, - unsigned int valueMask, - XWindowChanges * valuePtr)); -/* 31 */ -EXTERN Tk_TextLayout Tk_ComputeTextLayout _ANSI_ARGS_((Tk_Font font, - CONST char * str, int numChars, - int wrapLength, Tk_Justify justify, - int flags, int * widthPtr, int * heightPtr)); -/* 32 */ -EXTERN Tk_Window Tk_CoordsToWindow _ANSI_ARGS_((int rootX, int rootY, - Tk_Window tkwin)); -/* 33 */ -EXTERN unsigned long Tk_CreateBinding _ANSI_ARGS_((Tcl_Interp * interp, - Tk_BindingTable bindingTable, - ClientData object, CONST char * eventStr, - CONST char * command, int append)); -/* 34 */ -EXTERN Tk_BindingTable Tk_CreateBindingTable _ANSI_ARGS_(( - Tcl_Interp * interp)); -/* 35 */ -EXTERN Tk_ErrorHandler Tk_CreateErrorHandler _ANSI_ARGS_((Display * display, - int errNum, int request, int minorCode, - Tk_ErrorProc * errorProc, - ClientData clientData)); -/* 36 */ -EXTERN void Tk_CreateEventHandler _ANSI_ARGS_((Tk_Window token, - unsigned long mask, Tk_EventProc * proc, - ClientData clientData)); -/* 37 */ -EXTERN void Tk_CreateGenericHandler _ANSI_ARGS_(( - Tk_GenericProc * proc, ClientData clientData)); -/* 38 */ -EXTERN void Tk_CreateImageType _ANSI_ARGS_(( - Tk_ImageType * typePtr)); -/* 39 */ -EXTERN void Tk_CreateItemType _ANSI_ARGS_((Tk_ItemType * typePtr)); -/* 40 */ -EXTERN void Tk_CreatePhotoImageFormat _ANSI_ARGS_(( - Tk_PhotoImageFormat * formatPtr)); -/* 41 */ -EXTERN void Tk_CreateSelHandler _ANSI_ARGS_((Tk_Window tkwin, - Atom selection, Atom target, - Tk_SelectionProc * proc, - ClientData clientData, Atom format)); -/* 42 */ -EXTERN Tk_Window Tk_CreateWindow _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window parent, CONST char * name, - CONST char * screenName)); -/* 43 */ -EXTERN Tk_Window Tk_CreateWindowFromPath _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - CONST char * pathName, - CONST char * screenName)); -/* 44 */ -EXTERN int Tk_DefineBitmap _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * name, CONST char * source, - int width, int height)); -/* 45 */ -EXTERN void Tk_DefineCursor _ANSI_ARGS_((Tk_Window window, - Tk_Cursor cursor)); -/* 46 */ -EXTERN void Tk_DeleteAllBindings _ANSI_ARGS_(( - Tk_BindingTable bindingTable, - ClientData object)); -/* 47 */ -EXTERN int Tk_DeleteBinding _ANSI_ARGS_((Tcl_Interp * interp, - Tk_BindingTable bindingTable, - ClientData object, CONST char * eventStr)); -/* 48 */ -EXTERN void Tk_DeleteBindingTable _ANSI_ARGS_(( - Tk_BindingTable bindingTable)); -/* 49 */ -EXTERN void Tk_DeleteErrorHandler _ANSI_ARGS_(( - Tk_ErrorHandler handler)); -/* 50 */ -EXTERN void Tk_DeleteEventHandler _ANSI_ARGS_((Tk_Window token, - unsigned long mask, Tk_EventProc * proc, - ClientData clientData)); -/* 51 */ -EXTERN void Tk_DeleteGenericHandler _ANSI_ARGS_(( - Tk_GenericProc * proc, ClientData clientData)); -/* 52 */ -EXTERN void Tk_DeleteImage _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * name)); -/* 53 */ -EXTERN void Tk_DeleteSelHandler _ANSI_ARGS_((Tk_Window tkwin, - Atom selection, Atom target)); -/* 54 */ -EXTERN void Tk_DestroyWindow _ANSI_ARGS_((Tk_Window tkwin)); -/* 55 */ -EXTERN CONST84_RETURN char * Tk_DisplayName _ANSI_ARGS_((Tk_Window tkwin)); -/* 56 */ -EXTERN int Tk_DistanceToTextLayout _ANSI_ARGS_(( - Tk_TextLayout layout, int x, int y)); -/* 57 */ -EXTERN void Tk_Draw3DPolygon _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, - XPoint * pointPtr, int numPoints, - int borderWidth, int leftRelief)); -/* 58 */ -EXTERN void Tk_Draw3DRectangle _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, int x, - int y, int width, int height, - int borderWidth, int relief)); -/* 59 */ -EXTERN void Tk_DrawChars _ANSI_ARGS_((Display * display, - Drawable drawable, GC gc, Tk_Font tkfont, - CONST char * source, int numBytes, int x, - int y)); -/* 60 */ -EXTERN void Tk_DrawFocusHighlight _ANSI_ARGS_((Tk_Window tkwin, - GC gc, int width, Drawable drawable)); -/* 61 */ -EXTERN void Tk_DrawTextLayout _ANSI_ARGS_((Display * display, - Drawable drawable, GC gc, - Tk_TextLayout layout, int x, int y, - int firstChar, int lastChar)); -/* 62 */ -EXTERN void Tk_Fill3DPolygon _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, - XPoint * pointPtr, int numPoints, - int borderWidth, int leftRelief)); -/* 63 */ -EXTERN void Tk_Fill3DRectangle _ANSI_ARGS_((Tk_Window tkwin, - Drawable drawable, Tk_3DBorder border, int x, - int y, int width, int height, - int borderWidth, int relief)); -/* 64 */ -EXTERN Tk_PhotoHandle Tk_FindPhoto _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * imageName)); -/* 65 */ -EXTERN Font Tk_FontId _ANSI_ARGS_((Tk_Font font)); -/* 66 */ -EXTERN void Tk_Free3DBorder _ANSI_ARGS_((Tk_3DBorder border)); -/* 67 */ -EXTERN void Tk_FreeBitmap _ANSI_ARGS_((Display * display, - Pixmap bitmap)); -/* 68 */ -EXTERN void Tk_FreeColor _ANSI_ARGS_((XColor * colorPtr)); -/* 69 */ -EXTERN void Tk_FreeColormap _ANSI_ARGS_((Display * display, - Colormap colormap)); -/* 70 */ -EXTERN void Tk_FreeCursor _ANSI_ARGS_((Display * display, - Tk_Cursor cursor)); -/* 71 */ -EXTERN void Tk_FreeFont _ANSI_ARGS_((Tk_Font f)); -/* 72 */ -EXTERN void Tk_FreeGC _ANSI_ARGS_((Display * display, GC gc)); -/* 73 */ -EXTERN void Tk_FreeImage _ANSI_ARGS_((Tk_Image image)); -/* 74 */ -EXTERN void Tk_FreeOptions _ANSI_ARGS_((Tk_ConfigSpec * specs, - char * widgRec, Display * display, - int needFlags)); -/* 75 */ -EXTERN void Tk_FreePixmap _ANSI_ARGS_((Display * display, - Pixmap pixmap)); -/* 76 */ -EXTERN void Tk_FreeTextLayout _ANSI_ARGS_(( - Tk_TextLayout textLayout)); -/* 77 */ -EXTERN void Tk_FreeXId _ANSI_ARGS_((Display * display, XID xid)); -/* 78 */ -EXTERN GC Tk_GCForColor _ANSI_ARGS_((XColor * colorPtr, - Drawable drawable)); -/* 79 */ -EXTERN void Tk_GeometryRequest _ANSI_ARGS_((Tk_Window tkwin, - int reqWidth, int reqHeight)); -/* 80 */ -EXTERN Tk_3DBorder Tk_Get3DBorder _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_Uid colorName)); -/* 81 */ -EXTERN void Tk_GetAllBindings _ANSI_ARGS_((Tcl_Interp * interp, - Tk_BindingTable bindingTable, - ClientData object)); -/* 82 */ -EXTERN int Tk_GetAnchor _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * str, Tk_Anchor * anchorPtr)); -/* 83 */ -EXTERN CONST84_RETURN char * Tk_GetAtomName _ANSI_ARGS_((Tk_Window tkwin, - Atom atom)); -/* 84 */ -EXTERN CONST84_RETURN char * Tk_GetBinding _ANSI_ARGS_((Tcl_Interp * interp, - Tk_BindingTable bindingTable, - ClientData object, CONST char * eventStr)); -/* 85 */ -EXTERN Pixmap Tk_GetBitmap _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str)); -/* 86 */ -EXTERN Pixmap Tk_GetBitmapFromData _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - CONST char * source, int width, int height)); -/* 87 */ -EXTERN int Tk_GetCapStyle _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * str, int * capPtr)); -/* 88 */ -EXTERN XColor * Tk_GetColor _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_Uid name)); -/* 89 */ -EXTERN XColor * Tk_GetColorByValue _ANSI_ARGS_((Tk_Window tkwin, - XColor * colorPtr)); -/* 90 */ -EXTERN Colormap Tk_GetColormap _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str)); -/* 91 */ -EXTERN Tk_Cursor Tk_GetCursor _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_Uid str)); -/* 92 */ -EXTERN Tk_Cursor Tk_GetCursorFromData _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - CONST char * source, CONST char * mask, - int width, int height, int xHot, int yHot, - Tk_Uid fg, Tk_Uid bg)); -/* 93 */ -EXTERN Tk_Font Tk_GetFont _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str)); -/* 94 */ -EXTERN Tk_Font Tk_GetFontFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 95 */ -EXTERN void Tk_GetFontMetrics _ANSI_ARGS_((Tk_Font font, - Tk_FontMetrics * fmPtr)); -/* 96 */ -EXTERN GC Tk_GetGC _ANSI_ARGS_((Tk_Window tkwin, - unsigned long valueMask, - XGCValues * valuePtr)); -/* 97 */ -EXTERN Tk_Image Tk_GetImage _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * name, - Tk_ImageChangedProc * changeProc, - ClientData clientData)); -/* 98 */ -EXTERN ClientData Tk_GetImageMasterData _ANSI_ARGS_(( - Tcl_Interp * interp, CONST char * name, - Tk_ImageType ** typePtrPtr)); -/* 99 */ -EXTERN Tk_ItemType * Tk_GetItemTypes _ANSI_ARGS_((void)); -/* 100 */ -EXTERN int Tk_GetJoinStyle _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * str, int * joinPtr)); -/* 101 */ -EXTERN int Tk_GetJustify _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * str, Tk_Justify * justifyPtr)); -/* 102 */ -EXTERN int Tk_GetNumMainWindows _ANSI_ARGS_((void)); -/* 103 */ -EXTERN Tk_Uid Tk_GetOption _ANSI_ARGS_((Tk_Window tkwin, - CONST char * name, CONST char * className)); -/* 104 */ -EXTERN int Tk_GetPixels _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str, - int * intPtr)); -/* 105 */ -EXTERN Pixmap Tk_GetPixmap _ANSI_ARGS_((Display * display, - Drawable d, int width, int height, int depth)); -/* 106 */ -EXTERN int Tk_GetRelief _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * name, int * reliefPtr)); -/* 107 */ -EXTERN void Tk_GetRootCoords _ANSI_ARGS_((Tk_Window tkwin, - int * xPtr, int * yPtr)); -/* 108 */ -EXTERN int Tk_GetScrollInfo _ANSI_ARGS_((Tcl_Interp * interp, - int argc, CONST84 char ** argv, - double * dblPtr, int * intPtr)); -/* 109 */ -EXTERN int Tk_GetScreenMM _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str, - double * doublePtr)); -/* 110 */ -EXTERN int Tk_GetSelection _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Atom selection, Atom target, - Tk_GetSelProc * proc, ClientData clientData)); -/* 111 */ -EXTERN Tk_Uid Tk_GetUid _ANSI_ARGS_((CONST char * str)); -/* 112 */ -EXTERN Visual * Tk_GetVisual _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, CONST char * str, - int * depthPtr, Colormap * colormapPtr)); -/* 113 */ -EXTERN void Tk_GetVRootGeometry _ANSI_ARGS_((Tk_Window tkwin, - int * xPtr, int * yPtr, int * widthPtr, - int * heightPtr)); -/* 114 */ -EXTERN int Tk_Grab _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, int grabGlobal)); -/* 115 */ -EXTERN void Tk_HandleEvent _ANSI_ARGS_((XEvent * eventPtr)); -/* 116 */ -EXTERN Tk_Window Tk_IdToWindow _ANSI_ARGS_((Display * display, - Window window)); -/* 117 */ -EXTERN void Tk_ImageChanged _ANSI_ARGS_((Tk_ImageMaster master, - int x, int y, int width, int height, - int imageWidth, int imageHeight)); -/* 118 */ -EXTERN int Tk_Init _ANSI_ARGS_((Tcl_Interp * interp)); -/* 119 */ -EXTERN Atom Tk_InternAtom _ANSI_ARGS_((Tk_Window tkwin, - CONST char * name)); -/* 120 */ -EXTERN int Tk_IntersectTextLayout _ANSI_ARGS_(( - Tk_TextLayout layout, int x, int y, - int width, int height)); -/* 121 */ -EXTERN void Tk_MaintainGeometry _ANSI_ARGS_((Tk_Window slave, - Tk_Window master, int x, int y, int width, - int height)); -/* 122 */ -EXTERN Tk_Window Tk_MainWindow _ANSI_ARGS_((Tcl_Interp * interp)); -/* 123 */ -EXTERN void Tk_MakeWindowExist _ANSI_ARGS_((Tk_Window tkwin)); -/* 124 */ -EXTERN void Tk_ManageGeometry _ANSI_ARGS_((Tk_Window tkwin, - Tk_GeomMgr * mgrPtr, ClientData clientData)); -/* 125 */ -EXTERN void Tk_MapWindow _ANSI_ARGS_((Tk_Window tkwin)); -/* 126 */ -EXTERN int Tk_MeasureChars _ANSI_ARGS_((Tk_Font tkfont, - CONST char * source, int numBytes, - int maxPixels, int flags, int * lengthPtr)); -/* 127 */ -EXTERN void Tk_MoveResizeWindow _ANSI_ARGS_((Tk_Window tkwin, - int x, int y, int width, int height)); -/* 128 */ -EXTERN void Tk_MoveWindow _ANSI_ARGS_((Tk_Window tkwin, int x, - int y)); -/* 129 */ -EXTERN void Tk_MoveToplevelWindow _ANSI_ARGS_((Tk_Window tkwin, - int x, int y)); -/* 130 */ -EXTERN CONST84_RETURN char * Tk_NameOf3DBorder _ANSI_ARGS_(( - Tk_3DBorder border)); -/* 131 */ -EXTERN CONST84_RETURN char * Tk_NameOfAnchor _ANSI_ARGS_((Tk_Anchor anchor)); -/* 132 */ -EXTERN CONST84_RETURN char * Tk_NameOfBitmap _ANSI_ARGS_((Display * display, - Pixmap bitmap)); -/* 133 */ -EXTERN CONST84_RETURN char * Tk_NameOfCapStyle _ANSI_ARGS_((int cap)); -/* 134 */ -EXTERN CONST84_RETURN char * Tk_NameOfColor _ANSI_ARGS_((XColor * colorPtr)); -/* 135 */ -EXTERN CONST84_RETURN char * Tk_NameOfCursor _ANSI_ARGS_((Display * display, - Tk_Cursor cursor)); -/* 136 */ -EXTERN CONST84_RETURN char * Tk_NameOfFont _ANSI_ARGS_((Tk_Font font)); -/* 137 */ -EXTERN CONST84_RETURN char * Tk_NameOfImage _ANSI_ARGS_(( - Tk_ImageMaster imageMaster)); -/* 138 */ -EXTERN CONST84_RETURN char * Tk_NameOfJoinStyle _ANSI_ARGS_((int join)); -/* 139 */ -EXTERN CONST84_RETURN char * Tk_NameOfJustify _ANSI_ARGS_(( - Tk_Justify justify)); -/* 140 */ -EXTERN CONST84_RETURN char * Tk_NameOfRelief _ANSI_ARGS_((int relief)); -/* 141 */ -EXTERN Tk_Window Tk_NameToWindow _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * pathName, Tk_Window tkwin)); -/* 142 */ -EXTERN void Tk_OwnSelection _ANSI_ARGS_((Tk_Window tkwin, - Atom selection, Tk_LostSelProc * proc, - ClientData clientData)); -/* 143 */ -EXTERN int Tk_ParseArgv _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, int * argcPtr, - CONST84 char ** argv, Tk_ArgvInfo * argTable, - int flags)); -/* 144 */ -EXTERN void Tk_PhotoPutBlock_NoComposite _ANSI_ARGS_(( - Tk_PhotoHandle handle, - Tk_PhotoImageBlock * blockPtr, int x, int y, - int width, int height)); -/* 145 */ -EXTERN void Tk_PhotoPutZoomedBlock_NoComposite _ANSI_ARGS_(( - Tk_PhotoHandle handle, - Tk_PhotoImageBlock * blockPtr, int x, int y, - int width, int height, int zoomX, int zoomY, - int subsampleX, int subsampleY)); -/* 146 */ -EXTERN int Tk_PhotoGetImage _ANSI_ARGS_((Tk_PhotoHandle handle, - Tk_PhotoImageBlock * blockPtr)); -/* 147 */ -EXTERN void Tk_PhotoBlank _ANSI_ARGS_((Tk_PhotoHandle handle)); -/* 148 */ -EXTERN void Tk_PhotoExpand _ANSI_ARGS_((Tk_PhotoHandle handle, - int width, int height)); -/* 149 */ -EXTERN void Tk_PhotoGetSize _ANSI_ARGS_((Tk_PhotoHandle handle, - int * widthPtr, int * heightPtr)); -/* 150 */ -EXTERN void Tk_PhotoSetSize _ANSI_ARGS_((Tk_PhotoHandle handle, - int width, int height)); -/* 151 */ -EXTERN int Tk_PointToChar _ANSI_ARGS_((Tk_TextLayout layout, - int x, int y)); -/* 152 */ -EXTERN int Tk_PostscriptFontName _ANSI_ARGS_((Tk_Font tkfont, - Tcl_DString * dsPtr)); -/* 153 */ -EXTERN void Tk_PreserveColormap _ANSI_ARGS_((Display * display, - Colormap colormap)); -/* 154 */ -EXTERN void Tk_QueueWindowEvent _ANSI_ARGS_((XEvent * eventPtr, - Tcl_QueuePosition position)); -/* 155 */ -EXTERN void Tk_RedrawImage _ANSI_ARGS_((Tk_Image image, - int imageX, int imageY, int width, - int height, Drawable drawable, int drawableX, - int drawableY)); -/* 156 */ -EXTERN void Tk_ResizeWindow _ANSI_ARGS_((Tk_Window tkwin, - int width, int height)); -/* 157 */ -EXTERN int Tk_RestackWindow _ANSI_ARGS_((Tk_Window tkwin, - int aboveBelow, Tk_Window other)); -/* 158 */ -EXTERN Tk_RestrictProc * Tk_RestrictEvents _ANSI_ARGS_(( - Tk_RestrictProc * proc, ClientData arg, - ClientData * prevArgPtr)); -/* 159 */ -EXTERN int Tk_SafeInit _ANSI_ARGS_((Tcl_Interp * interp)); -/* 160 */ -EXTERN CONST char * Tk_SetAppName _ANSI_ARGS_((Tk_Window tkwin, - CONST char * name)); -/* 161 */ -EXTERN void Tk_SetBackgroundFromBorder _ANSI_ARGS_(( - Tk_Window tkwin, Tk_3DBorder border)); -/* 162 */ -EXTERN void Tk_SetClass _ANSI_ARGS_((Tk_Window tkwin, - CONST char * className)); -/* 163 */ -EXTERN void Tk_SetGrid _ANSI_ARGS_((Tk_Window tkwin, - int reqWidth, int reqHeight, int gridWidth, - int gridHeight)); -/* 164 */ -EXTERN void Tk_SetInternalBorder _ANSI_ARGS_((Tk_Window tkwin, - int width)); -/* 165 */ -EXTERN void Tk_SetWindowBackground _ANSI_ARGS_((Tk_Window tkwin, - unsigned long pixel)); -/* 166 */ -EXTERN void Tk_SetWindowBackgroundPixmap _ANSI_ARGS_(( - Tk_Window tkwin, Pixmap pixmap)); -/* 167 */ -EXTERN void Tk_SetWindowBorder _ANSI_ARGS_((Tk_Window tkwin, - unsigned long pixel)); -/* 168 */ -EXTERN void Tk_SetWindowBorderWidth _ANSI_ARGS_((Tk_Window tkwin, - int width)); -/* 169 */ -EXTERN void Tk_SetWindowBorderPixmap _ANSI_ARGS_(( - Tk_Window tkwin, Pixmap pixmap)); -/* 170 */ -EXTERN void Tk_SetWindowColormap _ANSI_ARGS_((Tk_Window tkwin, - Colormap colormap)); -/* 171 */ -EXTERN int Tk_SetWindowVisual _ANSI_ARGS_((Tk_Window tkwin, - Visual * visual, int depth, - Colormap colormap)); -/* 172 */ -EXTERN void Tk_SizeOfBitmap _ANSI_ARGS_((Display * display, - Pixmap bitmap, int * widthPtr, - int * heightPtr)); -/* 173 */ -EXTERN void Tk_SizeOfImage _ANSI_ARGS_((Tk_Image image, - int * widthPtr, int * heightPtr)); -/* 174 */ -EXTERN int Tk_StrictMotif _ANSI_ARGS_((Tk_Window tkwin)); -/* 175 */ -EXTERN void Tk_TextLayoutToPostscript _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_TextLayout layout)); -/* 176 */ -EXTERN int Tk_TextWidth _ANSI_ARGS_((Tk_Font font, - CONST char * str, int numBytes)); -/* 177 */ -EXTERN void Tk_UndefineCursor _ANSI_ARGS_((Tk_Window window)); -/* 178 */ -EXTERN void Tk_UnderlineChars _ANSI_ARGS_((Display * display, - Drawable drawable, GC gc, Tk_Font tkfont, - CONST char * source, int x, int y, - int firstByte, int lastByte)); -/* 179 */ -EXTERN void Tk_UnderlineTextLayout _ANSI_ARGS_(( - Display * display, Drawable drawable, GC gc, - Tk_TextLayout layout, int x, int y, - int underline)); -/* 180 */ -EXTERN void Tk_Ungrab _ANSI_ARGS_((Tk_Window tkwin)); -/* 181 */ -EXTERN void Tk_UnmaintainGeometry _ANSI_ARGS_((Tk_Window slave, - Tk_Window master)); -/* 182 */ -EXTERN void Tk_UnmapWindow _ANSI_ARGS_((Tk_Window tkwin)); -/* 183 */ -EXTERN void Tk_UnsetGrid _ANSI_ARGS_((Tk_Window tkwin)); -/* 184 */ -EXTERN void Tk_UpdatePointer _ANSI_ARGS_((Tk_Window tkwin, int x, - int y, int state)); -/* 185 */ -EXTERN Pixmap Tk_AllocBitmapFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 186 */ -EXTERN Tk_3DBorder Tk_Alloc3DBorderFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 187 */ -EXTERN XColor * Tk_AllocColorFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 188 */ -EXTERN Tk_Cursor Tk_AllocCursorFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 189 */ -EXTERN Tk_Font Tk_AllocFontFromObj _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tcl_Obj * objPtr)); -/* 190 */ -EXTERN Tk_OptionTable Tk_CreateOptionTable _ANSI_ARGS_(( - Tcl_Interp * interp, - CONST Tk_OptionSpec * templatePtr)); -/* 191 */ -EXTERN void Tk_DeleteOptionTable _ANSI_ARGS_(( - Tk_OptionTable optionTable)); -/* 192 */ -EXTERN void Tk_Free3DBorderFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 193 */ -EXTERN void Tk_FreeBitmapFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 194 */ -EXTERN void Tk_FreeColorFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 195 */ -EXTERN void Tk_FreeConfigOptions _ANSI_ARGS_((char * recordPtr, - Tk_OptionTable optionToken, Tk_Window tkwin)); -/* 196 */ -EXTERN void Tk_FreeSavedOptions _ANSI_ARGS_(( - Tk_SavedOptions * savePtr)); -/* 197 */ -EXTERN void Tk_FreeCursorFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 198 */ -EXTERN void Tk_FreeFontFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 199 */ -EXTERN Tk_3DBorder Tk_Get3DBorderFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 200 */ -EXTERN int Tk_GetAnchorFromObj _ANSI_ARGS_((Tcl_Interp * interp, - Tcl_Obj * objPtr, Tk_Anchor * anchorPtr)); -/* 201 */ -EXTERN Pixmap Tk_GetBitmapFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 202 */ -EXTERN XColor * Tk_GetColorFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 203 */ -EXTERN Tk_Cursor Tk_GetCursorFromObj _ANSI_ARGS_((Tk_Window tkwin, - Tcl_Obj * objPtr)); -/* 204 */ -EXTERN Tcl_Obj * Tk_GetOptionInfo _ANSI_ARGS_((Tcl_Interp * interp, - char * recordPtr, Tk_OptionTable optionTable, - Tcl_Obj * namePtr, Tk_Window tkwin)); -/* 205 */ -EXTERN Tcl_Obj * Tk_GetOptionValue _ANSI_ARGS_((Tcl_Interp * interp, - char * recordPtr, Tk_OptionTable optionTable, - Tcl_Obj * namePtr, Tk_Window tkwin)); -/* 206 */ -EXTERN int Tk_GetJustifyFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tcl_Obj * objPtr, - Tk_Justify * justifyPtr)); -/* 207 */ -EXTERN int Tk_GetMMFromObj _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tcl_Obj * objPtr, - double * doublePtr)); -/* 208 */ -EXTERN int Tk_GetPixelsFromObj _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tcl_Obj * objPtr, - int * intPtr)); -/* 209 */ -EXTERN int Tk_GetReliefFromObj _ANSI_ARGS_((Tcl_Interp * interp, - Tcl_Obj * objPtr, int * resultPtr)); -/* 210 */ -EXTERN int Tk_GetScrollInfoObj _ANSI_ARGS_((Tcl_Interp * interp, - int objc, Tcl_Obj *CONST objv[], - double * dblPtr, int * intPtr)); -/* 211 */ -EXTERN int Tk_InitOptions _ANSI_ARGS_((Tcl_Interp * interp, - char * recordPtr, Tk_OptionTable optionToken, - Tk_Window tkwin)); -/* 212 */ -EXTERN void Tk_MainEx _ANSI_ARGS_((int argc, char ** argv, - Tcl_AppInitProc * appInitProc, - Tcl_Interp * interp)); -/* 213 */ -EXTERN void Tk_RestoreSavedOptions _ANSI_ARGS_(( - Tk_SavedOptions * savePtr)); -/* 214 */ -EXTERN int Tk_SetOptions _ANSI_ARGS_((Tcl_Interp * interp, - char * recordPtr, Tk_OptionTable optionTable, - int objc, Tcl_Obj *CONST objv[], - Tk_Window tkwin, Tk_SavedOptions * savePtr, - int * maskPtr)); -/* 215 */ -EXTERN void Tk_InitConsoleChannels _ANSI_ARGS_(( - Tcl_Interp * interp)); -/* 216 */ -EXTERN int Tk_CreateConsoleWindow _ANSI_ARGS_(( - Tcl_Interp * interp)); -/* 217 */ -EXTERN void Tk_CreateSmoothMethod _ANSI_ARGS_(( - Tcl_Interp * interp, - Tk_SmoothMethod * method)); -/* Slot 218 is reserved */ -/* Slot 219 is reserved */ -/* 220 */ -EXTERN int Tk_GetDash _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * value, Tk_Dash * dash)); -/* 221 */ -EXTERN void Tk_CreateOutline _ANSI_ARGS_((Tk_Outline * outline)); -/* 222 */ -EXTERN void Tk_DeleteOutline _ANSI_ARGS_((Display * display, - Tk_Outline * outline)); -/* 223 */ -EXTERN int Tk_ConfigOutlineGC _ANSI_ARGS_((XGCValues * gcValues, - Tk_Canvas canvas, Tk_Item * item, - Tk_Outline * outline)); -/* 224 */ -EXTERN int Tk_ChangeOutlineGC _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item * item, Tk_Outline * outline)); -/* 225 */ -EXTERN int Tk_ResetOutlineGC _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item * item, Tk_Outline * outline)); -/* 226 */ -EXTERN int Tk_CanvasPsOutline _ANSI_ARGS_((Tk_Canvas canvas, - Tk_Item * item, Tk_Outline * outline)); -/* 227 */ -EXTERN void Tk_SetTSOrigin _ANSI_ARGS_((Tk_Window tkwin, GC gc, - int x, int y)); -/* 228 */ -EXTERN int Tk_CanvasGetCoordFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Canvas canvas, - Tcl_Obj * obj, double * doublePtr)); -/* 229 */ -EXTERN void Tk_CanvasSetOffset _ANSI_ARGS_((Tk_Canvas canvas, - GC gc, Tk_TSOffset * offset)); -/* 230 */ -EXTERN void Tk_DitherPhoto _ANSI_ARGS_((Tk_PhotoHandle handle, - int x, int y, int width, int height)); -/* 231 */ -EXTERN int Tk_PostscriptBitmap _ANSI_ARGS_((Tcl_Interp * interp, - Tk_Window tkwin, Tk_PostscriptInfo psInfo, - Pixmap bitmap, int startX, int startY, - int width, int height)); -/* 232 */ -EXTERN int Tk_PostscriptColor _ANSI_ARGS_((Tcl_Interp * interp, - Tk_PostscriptInfo psInfo, XColor * colorPtr)); -/* 233 */ -EXTERN int Tk_PostscriptFont _ANSI_ARGS_((Tcl_Interp * interp, - Tk_PostscriptInfo psInfo, Tk_Font font)); -/* 234 */ -EXTERN int Tk_PostscriptImage _ANSI_ARGS_((Tk_Image image, - Tcl_Interp * interp, Tk_Window tkwin, - Tk_PostscriptInfo psinfo, int x, int y, - int width, int height, int prepass)); -/* 235 */ -EXTERN void Tk_PostscriptPath _ANSI_ARGS_((Tcl_Interp * interp, - Tk_PostscriptInfo psInfo, double * coordPtr, - int numPoints)); -/* 236 */ -EXTERN int Tk_PostscriptStipple _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window tkwin, - Tk_PostscriptInfo psInfo, Pixmap bitmap)); -/* 237 */ -EXTERN double Tk_PostscriptY _ANSI_ARGS_((double y, - Tk_PostscriptInfo psInfo)); -/* 238 */ -EXTERN int Tk_PostscriptPhoto _ANSI_ARGS_((Tcl_Interp * interp, - Tk_PhotoImageBlock * blockPtr, - Tk_PostscriptInfo psInfo, int width, - int height)); -/* 239 */ -EXTERN void Tk_CreateClientMessageHandler _ANSI_ARGS_(( - Tk_ClientMessageProc * proc)); -/* 240 */ -EXTERN void Tk_DeleteClientMessageHandler _ANSI_ARGS_(( - Tk_ClientMessageProc * proc)); -/* 241 */ -EXTERN Tk_Window Tk_CreateAnonymousWindow _ANSI_ARGS_(( - Tcl_Interp * interp, Tk_Window parent, - CONST char * screenName)); -/* 242 */ -EXTERN void Tk_SetClassProcs _ANSI_ARGS_((Tk_Window tkwin, - Tk_ClassProcs * procs, - ClientData instanceData)); -/* 243 */ -EXTERN void Tk_SetInternalBorderEx _ANSI_ARGS_((Tk_Window tkwin, - int left, int right, int top, int bottom)); -/* 244 */ -EXTERN void Tk_SetMinimumRequestSize _ANSI_ARGS_(( - Tk_Window tkwin, int minWidth, int minHeight)); -/* 245 */ -EXTERN void Tk_SetCaretPos _ANSI_ARGS_((Tk_Window tkwin, int x, - int y, int height)); -/* 246 */ -EXTERN void Tk_PhotoPutBlock _ANSI_ARGS_((Tk_PhotoHandle handle, - Tk_PhotoImageBlock * blockPtr, int x, int y, - int width, int height, int compRule)); -/* 247 */ -EXTERN void Tk_PhotoPutZoomedBlock _ANSI_ARGS_(( - Tk_PhotoHandle handle, - Tk_PhotoImageBlock * blockPtr, int x, int y, - int width, int height, int zoomX, int zoomY, - int subsampleX, int subsampleY, int compRule)); -/* 248 */ -EXTERN int Tk_CollapseMotionEvents _ANSI_ARGS_(( - Display * display, int collapse)); -/* 249 */ -EXTERN Tk_StyleEngine Tk_RegisterStyleEngine _ANSI_ARGS_(( - CONST char * name, Tk_StyleEngine parent)); -/* 250 */ -EXTERN Tk_StyleEngine Tk_GetStyleEngine _ANSI_ARGS_((CONST char * name)); -/* 251 */ -EXTERN int Tk_RegisterStyledElement _ANSI_ARGS_(( - Tk_StyleEngine engine, - Tk_ElementSpec * templatePtr)); -/* 252 */ -EXTERN int Tk_GetElementId _ANSI_ARGS_((CONST char * name)); -/* 253 */ -EXTERN Tk_Style Tk_CreateStyle _ANSI_ARGS_((CONST char * name, - Tk_StyleEngine engine, ClientData clientData)); -/* 254 */ -EXTERN Tk_Style Tk_GetStyle _ANSI_ARGS_((Tcl_Interp * interp, - CONST char * name)); -/* 255 */ -EXTERN void Tk_FreeStyle _ANSI_ARGS_((Tk_Style style)); -/* 256 */ -EXTERN CONST char * Tk_NameOfStyle _ANSI_ARGS_((Tk_Style style)); -/* 257 */ -EXTERN Tk_Style Tk_AllocStyleFromObj _ANSI_ARGS_(( - Tcl_Interp * interp, Tcl_Obj * objPtr)); -/* 258 */ -EXTERN Tk_Style Tk_GetStyleFromObj _ANSI_ARGS_((Tcl_Obj * objPtr)); -/* 259 */ -EXTERN void Tk_FreeStyleFromObj _ANSI_ARGS_((Tcl_Obj * objPtr)); -/* 260 */ -EXTERN Tk_StyledElement Tk_GetStyledElement _ANSI_ARGS_((Tk_Style style, - int elementId, Tk_OptionTable optionTable)); -/* 261 */ -EXTERN void Tk_GetElementSize _ANSI_ARGS_((Tk_Style style, - Tk_StyledElement element, char * recordPtr, - Tk_Window tkwin, int width, int height, - int inner, int * widthPtr, int * heightPtr)); -/* 262 */ -EXTERN void Tk_GetElementBox _ANSI_ARGS_((Tk_Style style, - Tk_StyledElement element, char * recordPtr, - Tk_Window tkwin, int x, int y, int width, - int height, int inner, int * xPtr, - int * yPtr, int * widthPtr, int * heightPtr)); -/* 263 */ -EXTERN int Tk_GetElementBorderWidth _ANSI_ARGS_((Tk_Style style, - Tk_StyledElement element, char * recordPtr, - Tk_Window tkwin)); -/* 264 */ -EXTERN void Tk_DrawElement _ANSI_ARGS_((Tk_Style style, - Tk_StyledElement element, char * recordPtr, - Tk_Window tkwin, Drawable d, int x, int y, - int width, int height, int state)); - -typedef struct TkStubHooks { - struct TkPlatStubs *tkPlatStubs; - struct TkIntStubs *tkIntStubs; - struct TkIntPlatStubs *tkIntPlatStubs; - struct TkIntXlibStubs *tkIntXlibStubs; -} TkStubHooks; - -typedef struct TkStubs { - int magic; - struct TkStubHooks *hooks; - - void (*tk_MainLoop) _ANSI_ARGS_((void)); /* 0 */ - XColor * (*tk_3DBorderColor) _ANSI_ARGS_((Tk_3DBorder border)); /* 1 */ - GC (*tk_3DBorderGC) _ANSI_ARGS_((Tk_Window tkwin, Tk_3DBorder border, int which)); /* 2 */ - void (*tk_3DHorizontalBevel) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, int x, int y, int width, int height, int leftIn, int rightIn, int topBevel, int relief)); /* 3 */ - void (*tk_3DVerticalBevel) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, int x, int y, int width, int height, int leftBevel, int relief)); /* 4 */ - void (*tk_AddOption) _ANSI_ARGS_((Tk_Window tkwin, CONST char * name, CONST char * value, int priority)); /* 5 */ - void (*tk_BindEvent) _ANSI_ARGS_((Tk_BindingTable bindingTable, XEvent * eventPtr, Tk_Window tkwin, int numObjects, ClientData * objectPtr)); /* 6 */ - void (*tk_CanvasDrawableCoords) _ANSI_ARGS_((Tk_Canvas canvas, double x, double y, short * drawableXPtr, short * drawableYPtr)); /* 7 */ - void (*tk_CanvasEventuallyRedraw) _ANSI_ARGS_((Tk_Canvas canvas, int x1, int y1, int x2, int y2)); /* 8 */ - int (*tk_CanvasGetCoord) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, CONST char * str, double * doublePtr)); /* 9 */ - Tk_CanvasTextInfo * (*tk_CanvasGetTextInfo) _ANSI_ARGS_((Tk_Canvas canvas)); /* 10 */ - int (*tk_CanvasPsBitmap) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, Pixmap bitmap, int x, int y, int width, int height)); /* 11 */ - int (*tk_CanvasPsColor) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, XColor * colorPtr)); /* 12 */ - int (*tk_CanvasPsFont) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, Tk_Font font)); /* 13 */ - void (*tk_CanvasPsPath) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, double * coordPtr, int numPoints)); /* 14 */ - int (*tk_CanvasPsStipple) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, Pixmap bitmap)); /* 15 */ - double (*tk_CanvasPsY) _ANSI_ARGS_((Tk_Canvas canvas, double y)); /* 16 */ - void (*tk_CanvasSetStippleOrigin) _ANSI_ARGS_((Tk_Canvas canvas, GC gc)); /* 17 */ - int (*tk_CanvasTagsParseProc) _ANSI_ARGS_((ClientData clientData, Tcl_Interp * interp, Tk_Window tkwin, CONST char * value, char * widgRec, int offset)); /* 18 */ - char * (*tk_CanvasTagsPrintProc) _ANSI_ARGS_((ClientData clientData, Tk_Window tkwin, char * widgRec, int offset, Tcl_FreeProc ** freeProcPtr)); /* 19 */ - Tk_Window (*tk_CanvasTkwin) _ANSI_ARGS_((Tk_Canvas canvas)); /* 20 */ - void (*tk_CanvasWindowCoords) _ANSI_ARGS_((Tk_Canvas canvas, double x, double y, short * screenXPtr, short * screenYPtr)); /* 21 */ - void (*tk_ChangeWindowAttributes) _ANSI_ARGS_((Tk_Window tkwin, unsigned long valueMask, XSetWindowAttributes * attsPtr)); /* 22 */ - int (*tk_CharBbox) _ANSI_ARGS_((Tk_TextLayout layout, int index, int * xPtr, int * yPtr, int * widthPtr, int * heightPtr)); /* 23 */ - void (*tk_ClearSelection) _ANSI_ARGS_((Tk_Window tkwin, Atom selection)); /* 24 */ - int (*tk_ClipboardAppend) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Atom target, Atom format, char* buffer)); /* 25 */ - int (*tk_ClipboardClear) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin)); /* 26 */ - int (*tk_ConfigureInfo) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_ConfigSpec * specs, char * widgRec, CONST char * argvName, int flags)); /* 27 */ - int (*tk_ConfigureValue) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_ConfigSpec * specs, char * widgRec, CONST char * argvName, int flags)); /* 28 */ - int (*tk_ConfigureWidget) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_ConfigSpec * specs, int argc, CONST84 char ** argv, char * widgRec, int flags)); /* 29 */ - void (*tk_ConfigureWindow) _ANSI_ARGS_((Tk_Window tkwin, unsigned int valueMask, XWindowChanges * valuePtr)); /* 30 */ - Tk_TextLayout (*tk_ComputeTextLayout) _ANSI_ARGS_((Tk_Font font, CONST char * str, int numChars, int wrapLength, Tk_Justify justify, int flags, int * widthPtr, int * heightPtr)); /* 31 */ - Tk_Window (*tk_CoordsToWindow) _ANSI_ARGS_((int rootX, int rootY, Tk_Window tkwin)); /* 32 */ - unsigned long (*tk_CreateBinding) _ANSI_ARGS_((Tcl_Interp * interp, Tk_BindingTable bindingTable, ClientData object, CONST char * eventStr, CONST char * command, int append)); /* 33 */ - Tk_BindingTable (*tk_CreateBindingTable) _ANSI_ARGS_((Tcl_Interp * interp)); /* 34 */ - Tk_ErrorHandler (*tk_CreateErrorHandler) _ANSI_ARGS_((Display * display, int errNum, int request, int minorCode, Tk_ErrorProc * errorProc, ClientData clientData)); /* 35 */ - void (*tk_CreateEventHandler) _ANSI_ARGS_((Tk_Window token, unsigned long mask, Tk_EventProc * proc, ClientData clientData)); /* 36 */ - void (*tk_CreateGenericHandler) _ANSI_ARGS_((Tk_GenericProc * proc, ClientData clientData)); /* 37 */ - void (*tk_CreateImageType) _ANSI_ARGS_((Tk_ImageType * typePtr)); /* 38 */ - void (*tk_CreateItemType) _ANSI_ARGS_((Tk_ItemType * typePtr)); /* 39 */ - void (*tk_CreatePhotoImageFormat) _ANSI_ARGS_((Tk_PhotoImageFormat * formatPtr)); /* 40 */ - void (*tk_CreateSelHandler) _ANSI_ARGS_((Tk_Window tkwin, Atom selection, Atom target, Tk_SelectionProc * proc, ClientData clientData, Atom format)); /* 41 */ - Tk_Window (*tk_CreateWindow) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window parent, CONST char * name, CONST char * screenName)); /* 42 */ - Tk_Window (*tk_CreateWindowFromPath) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * pathName, CONST char * screenName)); /* 43 */ - int (*tk_DefineBitmap) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * name, CONST char * source, int width, int height)); /* 44 */ - void (*tk_DefineCursor) _ANSI_ARGS_((Tk_Window window, Tk_Cursor cursor)); /* 45 */ - void (*tk_DeleteAllBindings) _ANSI_ARGS_((Tk_BindingTable bindingTable, ClientData object)); /* 46 */ - int (*tk_DeleteBinding) _ANSI_ARGS_((Tcl_Interp * interp, Tk_BindingTable bindingTable, ClientData object, CONST char * eventStr)); /* 47 */ - void (*tk_DeleteBindingTable) _ANSI_ARGS_((Tk_BindingTable bindingTable)); /* 48 */ - void (*tk_DeleteErrorHandler) _ANSI_ARGS_((Tk_ErrorHandler handler)); /* 49 */ - void (*tk_DeleteEventHandler) _ANSI_ARGS_((Tk_Window token, unsigned long mask, Tk_EventProc * proc, ClientData clientData)); /* 50 */ - void (*tk_DeleteGenericHandler) _ANSI_ARGS_((Tk_GenericProc * proc, ClientData clientData)); /* 51 */ - void (*tk_DeleteImage) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * name)); /* 52 */ - void (*tk_DeleteSelHandler) _ANSI_ARGS_((Tk_Window tkwin, Atom selection, Atom target)); /* 53 */ - void (*tk_DestroyWindow) _ANSI_ARGS_((Tk_Window tkwin)); /* 54 */ - CONST84_RETURN char * (*tk_DisplayName) _ANSI_ARGS_((Tk_Window tkwin)); /* 55 */ - int (*tk_DistanceToTextLayout) _ANSI_ARGS_((Tk_TextLayout layout, int x, int y)); /* 56 */ - void (*tk_Draw3DPolygon) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, XPoint * pointPtr, int numPoints, int borderWidth, int leftRelief)); /* 57 */ - void (*tk_Draw3DRectangle) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, int x, int y, int width, int height, int borderWidth, int relief)); /* 58 */ - void (*tk_DrawChars) _ANSI_ARGS_((Display * display, Drawable drawable, GC gc, Tk_Font tkfont, CONST char * source, int numBytes, int x, int y)); /* 59 */ - void (*tk_DrawFocusHighlight) _ANSI_ARGS_((Tk_Window tkwin, GC gc, int width, Drawable drawable)); /* 60 */ - void (*tk_DrawTextLayout) _ANSI_ARGS_((Display * display, Drawable drawable, GC gc, Tk_TextLayout layout, int x, int y, int firstChar, int lastChar)); /* 61 */ - void (*tk_Fill3DPolygon) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, XPoint * pointPtr, int numPoints, int borderWidth, int leftRelief)); /* 62 */ - void (*tk_Fill3DRectangle) _ANSI_ARGS_((Tk_Window tkwin, Drawable drawable, Tk_3DBorder border, int x, int y, int width, int height, int borderWidth, int relief)); /* 63 */ - Tk_PhotoHandle (*tk_FindPhoto) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * imageName)); /* 64 */ - Font (*tk_FontId) _ANSI_ARGS_((Tk_Font font)); /* 65 */ - void (*tk_Free3DBorder) _ANSI_ARGS_((Tk_3DBorder border)); /* 66 */ - void (*tk_FreeBitmap) _ANSI_ARGS_((Display * display, Pixmap bitmap)); /* 67 */ - void (*tk_FreeColor) _ANSI_ARGS_((XColor * colorPtr)); /* 68 */ - void (*tk_FreeColormap) _ANSI_ARGS_((Display * display, Colormap colormap)); /* 69 */ - void (*tk_FreeCursor) _ANSI_ARGS_((Display * display, Tk_Cursor cursor)); /* 70 */ - void (*tk_FreeFont) _ANSI_ARGS_((Tk_Font f)); /* 71 */ - void (*tk_FreeGC) _ANSI_ARGS_((Display * display, GC gc)); /* 72 */ - void (*tk_FreeImage) _ANSI_ARGS_((Tk_Image image)); /* 73 */ - void (*tk_FreeOptions) _ANSI_ARGS_((Tk_ConfigSpec * specs, char * widgRec, Display * display, int needFlags)); /* 74 */ - void (*tk_FreePixmap) _ANSI_ARGS_((Display * display, Pixmap pixmap)); /* 75 */ - void (*tk_FreeTextLayout) _ANSI_ARGS_((Tk_TextLayout textLayout)); /* 76 */ - void (*tk_FreeXId) _ANSI_ARGS_((Display * display, XID xid)); /* 77 */ - GC (*tk_GCForColor) _ANSI_ARGS_((XColor * colorPtr, Drawable drawable)); /* 78 */ - void (*tk_GeometryRequest) _ANSI_ARGS_((Tk_Window tkwin, int reqWidth, int reqHeight)); /* 79 */ - Tk_3DBorder (*tk_Get3DBorder) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_Uid colorName)); /* 80 */ - void (*tk_GetAllBindings) _ANSI_ARGS_((Tcl_Interp * interp, Tk_BindingTable bindingTable, ClientData object)); /* 81 */ - int (*tk_GetAnchor) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * str, Tk_Anchor * anchorPtr)); /* 82 */ - CONST84_RETURN char * (*tk_GetAtomName) _ANSI_ARGS_((Tk_Window tkwin, Atom atom)); /* 83 */ - CONST84_RETURN char * (*tk_GetBinding) _ANSI_ARGS_((Tcl_Interp * interp, Tk_BindingTable bindingTable, ClientData object, CONST char * eventStr)); /* 84 */ - Pixmap (*tk_GetBitmap) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str)); /* 85 */ - Pixmap (*tk_GetBitmapFromData) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * source, int width, int height)); /* 86 */ - int (*tk_GetCapStyle) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * str, int * capPtr)); /* 87 */ - XColor * (*tk_GetColor) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_Uid name)); /* 88 */ - XColor * (*tk_GetColorByValue) _ANSI_ARGS_((Tk_Window tkwin, XColor * colorPtr)); /* 89 */ - Colormap (*tk_GetColormap) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str)); /* 90 */ - Tk_Cursor (*tk_GetCursor) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_Uid str)); /* 91 */ - Tk_Cursor (*tk_GetCursorFromData) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * source, CONST char * mask, int width, int height, int xHot, int yHot, Tk_Uid fg, Tk_Uid bg)); /* 92 */ - Tk_Font (*tk_GetFont) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str)); /* 93 */ - Tk_Font (*tk_GetFontFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 94 */ - void (*tk_GetFontMetrics) _ANSI_ARGS_((Tk_Font font, Tk_FontMetrics * fmPtr)); /* 95 */ - GC (*tk_GetGC) _ANSI_ARGS_((Tk_Window tkwin, unsigned long valueMask, XGCValues * valuePtr)); /* 96 */ - Tk_Image (*tk_GetImage) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * name, Tk_ImageChangedProc * changeProc, ClientData clientData)); /* 97 */ - ClientData (*tk_GetImageMasterData) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * name, Tk_ImageType ** typePtrPtr)); /* 98 */ - Tk_ItemType * (*tk_GetItemTypes) _ANSI_ARGS_((void)); /* 99 */ - int (*tk_GetJoinStyle) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * str, int * joinPtr)); /* 100 */ - int (*tk_GetJustify) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * str, Tk_Justify * justifyPtr)); /* 101 */ - int (*tk_GetNumMainWindows) _ANSI_ARGS_((void)); /* 102 */ - Tk_Uid (*tk_GetOption) _ANSI_ARGS_((Tk_Window tkwin, CONST char * name, CONST char * className)); /* 103 */ - int (*tk_GetPixels) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str, int * intPtr)); /* 104 */ - Pixmap (*tk_GetPixmap) _ANSI_ARGS_((Display * display, Drawable d, int width, int height, int depth)); /* 105 */ - int (*tk_GetRelief) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * name, int * reliefPtr)); /* 106 */ - void (*tk_GetRootCoords) _ANSI_ARGS_((Tk_Window tkwin, int * xPtr, int * yPtr)); /* 107 */ - int (*tk_GetScrollInfo) _ANSI_ARGS_((Tcl_Interp * interp, int argc, CONST84 char ** argv, double * dblPtr, int * intPtr)); /* 108 */ - int (*tk_GetScreenMM) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str, double * doublePtr)); /* 109 */ - int (*tk_GetSelection) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Atom selection, Atom target, Tk_GetSelProc * proc, ClientData clientData)); /* 110 */ - Tk_Uid (*tk_GetUid) _ANSI_ARGS_((CONST char * str)); /* 111 */ - Visual * (*tk_GetVisual) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, CONST char * str, int * depthPtr, Colormap * colormapPtr)); /* 112 */ - void (*tk_GetVRootGeometry) _ANSI_ARGS_((Tk_Window tkwin, int * xPtr, int * yPtr, int * widthPtr, int * heightPtr)); /* 113 */ - int (*tk_Grab) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, int grabGlobal)); /* 114 */ - void (*tk_HandleEvent) _ANSI_ARGS_((XEvent * eventPtr)); /* 115 */ - Tk_Window (*tk_IdToWindow) _ANSI_ARGS_((Display * display, Window window)); /* 116 */ - void (*tk_ImageChanged) _ANSI_ARGS_((Tk_ImageMaster master, int x, int y, int width, int height, int imageWidth, int imageHeight)); /* 117 */ - int (*tk_Init) _ANSI_ARGS_((Tcl_Interp * interp)); /* 118 */ - Atom (*tk_InternAtom) _ANSI_ARGS_((Tk_Window tkwin, CONST char * name)); /* 119 */ - int (*tk_IntersectTextLayout) _ANSI_ARGS_((Tk_TextLayout layout, int x, int y, int width, int height)); /* 120 */ - void (*tk_MaintainGeometry) _ANSI_ARGS_((Tk_Window slave, Tk_Window master, int x, int y, int width, int height)); /* 121 */ - Tk_Window (*tk_MainWindow) _ANSI_ARGS_((Tcl_Interp * interp)); /* 122 */ - void (*tk_MakeWindowExist) _ANSI_ARGS_((Tk_Window tkwin)); /* 123 */ - void (*tk_ManageGeometry) _ANSI_ARGS_((Tk_Window tkwin, Tk_GeomMgr * mgrPtr, ClientData clientData)); /* 124 */ - void (*tk_MapWindow) _ANSI_ARGS_((Tk_Window tkwin)); /* 125 */ - int (*tk_MeasureChars) _ANSI_ARGS_((Tk_Font tkfont, CONST char * source, int numBytes, int maxPixels, int flags, int * lengthPtr)); /* 126 */ - void (*tk_MoveResizeWindow) _ANSI_ARGS_((Tk_Window tkwin, int x, int y, int width, int height)); /* 127 */ - void (*tk_MoveWindow) _ANSI_ARGS_((Tk_Window tkwin, int x, int y)); /* 128 */ - void (*tk_MoveToplevelWindow) _ANSI_ARGS_((Tk_Window tkwin, int x, int y)); /* 129 */ - CONST84_RETURN char * (*tk_NameOf3DBorder) _ANSI_ARGS_((Tk_3DBorder border)); /* 130 */ - CONST84_RETURN char * (*tk_NameOfAnchor) _ANSI_ARGS_((Tk_Anchor anchor)); /* 131 */ - CONST84_RETURN char * (*tk_NameOfBitmap) _ANSI_ARGS_((Display * display, Pixmap bitmap)); /* 132 */ - CONST84_RETURN char * (*tk_NameOfCapStyle) _ANSI_ARGS_((int cap)); /* 133 */ - CONST84_RETURN char * (*tk_NameOfColor) _ANSI_ARGS_((XColor * colorPtr)); /* 134 */ - CONST84_RETURN char * (*tk_NameOfCursor) _ANSI_ARGS_((Display * display, Tk_Cursor cursor)); /* 135 */ - CONST84_RETURN char * (*tk_NameOfFont) _ANSI_ARGS_((Tk_Font font)); /* 136 */ - CONST84_RETURN char * (*tk_NameOfImage) _ANSI_ARGS_((Tk_ImageMaster imageMaster)); /* 137 */ - CONST84_RETURN char * (*tk_NameOfJoinStyle) _ANSI_ARGS_((int join)); /* 138 */ - CONST84_RETURN char * (*tk_NameOfJustify) _ANSI_ARGS_((Tk_Justify justify)); /* 139 */ - CONST84_RETURN char * (*tk_NameOfRelief) _ANSI_ARGS_((int relief)); /* 140 */ - Tk_Window (*tk_NameToWindow) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * pathName, Tk_Window tkwin)); /* 141 */ - void (*tk_OwnSelection) _ANSI_ARGS_((Tk_Window tkwin, Atom selection, Tk_LostSelProc * proc, ClientData clientData)); /* 142 */ - int (*tk_ParseArgv) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, int * argcPtr, CONST84 char ** argv, Tk_ArgvInfo * argTable, int flags)); /* 143 */ - void (*tk_PhotoPutBlock_NoComposite) _ANSI_ARGS_((Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height)); /* 144 */ - void (*tk_PhotoPutZoomedBlock_NoComposite) _ANSI_ARGS_((Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height, int zoomX, int zoomY, int subsampleX, int subsampleY)); /* 145 */ - int (*tk_PhotoGetImage) _ANSI_ARGS_((Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr)); /* 146 */ - void (*tk_PhotoBlank) _ANSI_ARGS_((Tk_PhotoHandle handle)); /* 147 */ - void (*tk_PhotoExpand) _ANSI_ARGS_((Tk_PhotoHandle handle, int width, int height)); /* 148 */ - void (*tk_PhotoGetSize) _ANSI_ARGS_((Tk_PhotoHandle handle, int * widthPtr, int * heightPtr)); /* 149 */ - void (*tk_PhotoSetSize) _ANSI_ARGS_((Tk_PhotoHandle handle, int width, int height)); /* 150 */ - int (*tk_PointToChar) _ANSI_ARGS_((Tk_TextLayout layout, int x, int y)); /* 151 */ - int (*tk_PostscriptFontName) _ANSI_ARGS_((Tk_Font tkfont, Tcl_DString * dsPtr)); /* 152 */ - void (*tk_PreserveColormap) _ANSI_ARGS_((Display * display, Colormap colormap)); /* 153 */ - void (*tk_QueueWindowEvent) _ANSI_ARGS_((XEvent * eventPtr, Tcl_QueuePosition position)); /* 154 */ - void (*tk_RedrawImage) _ANSI_ARGS_((Tk_Image image, int imageX, int imageY, int width, int height, Drawable drawable, int drawableX, int drawableY)); /* 155 */ - void (*tk_ResizeWindow) _ANSI_ARGS_((Tk_Window tkwin, int width, int height)); /* 156 */ - int (*tk_RestackWindow) _ANSI_ARGS_((Tk_Window tkwin, int aboveBelow, Tk_Window other)); /* 157 */ - Tk_RestrictProc * (*tk_RestrictEvents) _ANSI_ARGS_((Tk_RestrictProc * proc, ClientData arg, ClientData * prevArgPtr)); /* 158 */ - int (*tk_SafeInit) _ANSI_ARGS_((Tcl_Interp * interp)); /* 159 */ - CONST char * (*tk_SetAppName) _ANSI_ARGS_((Tk_Window tkwin, CONST char * name)); /* 160 */ - void (*tk_SetBackgroundFromBorder) _ANSI_ARGS_((Tk_Window tkwin, Tk_3DBorder border)); /* 161 */ - void (*tk_SetClass) _ANSI_ARGS_((Tk_Window tkwin, CONST char * className)); /* 162 */ - void (*tk_SetGrid) _ANSI_ARGS_((Tk_Window tkwin, int reqWidth, int reqHeight, int gridWidth, int gridHeight)); /* 163 */ - void (*tk_SetInternalBorder) _ANSI_ARGS_((Tk_Window tkwin, int width)); /* 164 */ - void (*tk_SetWindowBackground) _ANSI_ARGS_((Tk_Window tkwin, unsigned long pixel)); /* 165 */ - void (*tk_SetWindowBackgroundPixmap) _ANSI_ARGS_((Tk_Window tkwin, Pixmap pixmap)); /* 166 */ - void (*tk_SetWindowBorder) _ANSI_ARGS_((Tk_Window tkwin, unsigned long pixel)); /* 167 */ - void (*tk_SetWindowBorderWidth) _ANSI_ARGS_((Tk_Window tkwin, int width)); /* 168 */ - void (*tk_SetWindowBorderPixmap) _ANSI_ARGS_((Tk_Window tkwin, Pixmap pixmap)); /* 169 */ - void (*tk_SetWindowColormap) _ANSI_ARGS_((Tk_Window tkwin, Colormap colormap)); /* 170 */ - int (*tk_SetWindowVisual) _ANSI_ARGS_((Tk_Window tkwin, Visual * visual, int depth, Colormap colormap)); /* 171 */ - void (*tk_SizeOfBitmap) _ANSI_ARGS_((Display * display, Pixmap bitmap, int * widthPtr, int * heightPtr)); /* 172 */ - void (*tk_SizeOfImage) _ANSI_ARGS_((Tk_Image image, int * widthPtr, int * heightPtr)); /* 173 */ - int (*tk_StrictMotif) _ANSI_ARGS_((Tk_Window tkwin)); /* 174 */ - void (*tk_TextLayoutToPostscript) _ANSI_ARGS_((Tcl_Interp * interp, Tk_TextLayout layout)); /* 175 */ - int (*tk_TextWidth) _ANSI_ARGS_((Tk_Font font, CONST char * str, int numBytes)); /* 176 */ - void (*tk_UndefineCursor) _ANSI_ARGS_((Tk_Window window)); /* 177 */ - void (*tk_UnderlineChars) _ANSI_ARGS_((Display * display, Drawable drawable, GC gc, Tk_Font tkfont, CONST char * source, int x, int y, int firstByte, int lastByte)); /* 178 */ - void (*tk_UnderlineTextLayout) _ANSI_ARGS_((Display * display, Drawable drawable, GC gc, Tk_TextLayout layout, int x, int y, int underline)); /* 179 */ - void (*tk_Ungrab) _ANSI_ARGS_((Tk_Window tkwin)); /* 180 */ - void (*tk_UnmaintainGeometry) _ANSI_ARGS_((Tk_Window slave, Tk_Window master)); /* 181 */ - void (*tk_UnmapWindow) _ANSI_ARGS_((Tk_Window tkwin)); /* 182 */ - void (*tk_UnsetGrid) _ANSI_ARGS_((Tk_Window tkwin)); /* 183 */ - void (*tk_UpdatePointer) _ANSI_ARGS_((Tk_Window tkwin, int x, int y, int state)); /* 184 */ - Pixmap (*tk_AllocBitmapFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr)); /* 185 */ - Tk_3DBorder (*tk_Alloc3DBorderFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr)); /* 186 */ - XColor * (*tk_AllocColorFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr)); /* 187 */ - Tk_Cursor (*tk_AllocCursorFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr)); /* 188 */ - Tk_Font (*tk_AllocFontFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr)); /* 189 */ - Tk_OptionTable (*tk_CreateOptionTable) _ANSI_ARGS_((Tcl_Interp * interp, CONST Tk_OptionSpec * templatePtr)); /* 190 */ - void (*tk_DeleteOptionTable) _ANSI_ARGS_((Tk_OptionTable optionTable)); /* 191 */ - void (*tk_Free3DBorderFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 192 */ - void (*tk_FreeBitmapFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 193 */ - void (*tk_FreeColorFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 194 */ - void (*tk_FreeConfigOptions) _ANSI_ARGS_((char * recordPtr, Tk_OptionTable optionToken, Tk_Window tkwin)); /* 195 */ - void (*tk_FreeSavedOptions) _ANSI_ARGS_((Tk_SavedOptions * savePtr)); /* 196 */ - void (*tk_FreeCursorFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 197 */ - void (*tk_FreeFontFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 198 */ - Tk_3DBorder (*tk_Get3DBorderFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 199 */ - int (*tk_GetAnchorFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * objPtr, Tk_Anchor * anchorPtr)); /* 200 */ - Pixmap (*tk_GetBitmapFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 201 */ - XColor * (*tk_GetColorFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 202 */ - Tk_Cursor (*tk_GetCursorFromObj) _ANSI_ARGS_((Tk_Window tkwin, Tcl_Obj * objPtr)); /* 203 */ - Tcl_Obj * (*tk_GetOptionInfo) _ANSI_ARGS_((Tcl_Interp * interp, char * recordPtr, Tk_OptionTable optionTable, Tcl_Obj * namePtr, Tk_Window tkwin)); /* 204 */ - Tcl_Obj * (*tk_GetOptionValue) _ANSI_ARGS_((Tcl_Interp * interp, char * recordPtr, Tk_OptionTable optionTable, Tcl_Obj * namePtr, Tk_Window tkwin)); /* 205 */ - int (*tk_GetJustifyFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * objPtr, Tk_Justify * justifyPtr)); /* 206 */ - int (*tk_GetMMFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr, double * doublePtr)); /* 207 */ - int (*tk_GetPixelsFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tcl_Obj * objPtr, int * intPtr)); /* 208 */ - int (*tk_GetReliefFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * objPtr, int * resultPtr)); /* 209 */ - int (*tk_GetScrollInfoObj) _ANSI_ARGS_((Tcl_Interp * interp, int objc, Tcl_Obj *CONST objv[], double * dblPtr, int * intPtr)); /* 210 */ - int (*tk_InitOptions) _ANSI_ARGS_((Tcl_Interp * interp, char * recordPtr, Tk_OptionTable optionToken, Tk_Window tkwin)); /* 211 */ - void (*tk_MainEx) _ANSI_ARGS_((int argc, char ** argv, Tcl_AppInitProc * appInitProc, Tcl_Interp * interp)); /* 212 */ - void (*tk_RestoreSavedOptions) _ANSI_ARGS_((Tk_SavedOptions * savePtr)); /* 213 */ - int (*tk_SetOptions) _ANSI_ARGS_((Tcl_Interp * interp, char * recordPtr, Tk_OptionTable optionTable, int objc, Tcl_Obj *CONST objv[], Tk_Window tkwin, Tk_SavedOptions * savePtr, int * maskPtr)); /* 214 */ - void (*tk_InitConsoleChannels) _ANSI_ARGS_((Tcl_Interp * interp)); /* 215 */ - int (*tk_CreateConsoleWindow) _ANSI_ARGS_((Tcl_Interp * interp)); /* 216 */ - void (*tk_CreateSmoothMethod) _ANSI_ARGS_((Tcl_Interp * interp, Tk_SmoothMethod * method)); /* 217 */ - void *reserved218; - void *reserved219; - int (*tk_GetDash) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * value, Tk_Dash * dash)); /* 220 */ - void (*tk_CreateOutline) _ANSI_ARGS_((Tk_Outline * outline)); /* 221 */ - void (*tk_DeleteOutline) _ANSI_ARGS_((Display * display, Tk_Outline * outline)); /* 222 */ - int (*tk_ConfigOutlineGC) _ANSI_ARGS_((XGCValues * gcValues, Tk_Canvas canvas, Tk_Item * item, Tk_Outline * outline)); /* 223 */ - int (*tk_ChangeOutlineGC) _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * item, Tk_Outline * outline)); /* 224 */ - int (*tk_ResetOutlineGC) _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * item, Tk_Outline * outline)); /* 225 */ - int (*tk_CanvasPsOutline) _ANSI_ARGS_((Tk_Canvas canvas, Tk_Item * item, Tk_Outline * outline)); /* 226 */ - void (*tk_SetTSOrigin) _ANSI_ARGS_((Tk_Window tkwin, GC gc, int x, int y)); /* 227 */ - int (*tk_CanvasGetCoordFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Canvas canvas, Tcl_Obj * obj, double * doublePtr)); /* 228 */ - void (*tk_CanvasSetOffset) _ANSI_ARGS_((Tk_Canvas canvas, GC gc, Tk_TSOffset * offset)); /* 229 */ - void (*tk_DitherPhoto) _ANSI_ARGS_((Tk_PhotoHandle handle, int x, int y, int width, int height)); /* 230 */ - int (*tk_PostscriptBitmap) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_PostscriptInfo psInfo, Pixmap bitmap, int startX, int startY, int width, int height)); /* 231 */ - int (*tk_PostscriptColor) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PostscriptInfo psInfo, XColor * colorPtr)); /* 232 */ - int (*tk_PostscriptFont) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PostscriptInfo psInfo, Tk_Font font)); /* 233 */ - int (*tk_PostscriptImage) _ANSI_ARGS_((Tk_Image image, Tcl_Interp * interp, Tk_Window tkwin, Tk_PostscriptInfo psinfo, int x, int y, int width, int height, int prepass)); /* 234 */ - void (*tk_PostscriptPath) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PostscriptInfo psInfo, double * coordPtr, int numPoints)); /* 235 */ - int (*tk_PostscriptStipple) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window tkwin, Tk_PostscriptInfo psInfo, Pixmap bitmap)); /* 236 */ - double (*tk_PostscriptY) _ANSI_ARGS_((double y, Tk_PostscriptInfo psInfo)); /* 237 */ - int (*tk_PostscriptPhoto) _ANSI_ARGS_((Tcl_Interp * interp, Tk_PhotoImageBlock * blockPtr, Tk_PostscriptInfo psInfo, int width, int height)); /* 238 */ - void (*tk_CreateClientMessageHandler) _ANSI_ARGS_((Tk_ClientMessageProc * proc)); /* 239 */ - void (*tk_DeleteClientMessageHandler) _ANSI_ARGS_((Tk_ClientMessageProc * proc)); /* 240 */ - Tk_Window (*tk_CreateAnonymousWindow) _ANSI_ARGS_((Tcl_Interp * interp, Tk_Window parent, CONST char * screenName)); /* 241 */ - void (*tk_SetClassProcs) _ANSI_ARGS_((Tk_Window tkwin, Tk_ClassProcs * procs, ClientData instanceData)); /* 242 */ - void (*tk_SetInternalBorderEx) _ANSI_ARGS_((Tk_Window tkwin, int left, int right, int top, int bottom)); /* 243 */ - void (*tk_SetMinimumRequestSize) _ANSI_ARGS_((Tk_Window tkwin, int minWidth, int minHeight)); /* 244 */ - void (*tk_SetCaretPos) _ANSI_ARGS_((Tk_Window tkwin, int x, int y, int height)); /* 245 */ - void (*tk_PhotoPutBlock) _ANSI_ARGS_((Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height, int compRule)); /* 246 */ - void (*tk_PhotoPutZoomedBlock) _ANSI_ARGS_((Tk_PhotoHandle handle, Tk_PhotoImageBlock * blockPtr, int x, int y, int width, int height, int zoomX, int zoomY, int subsampleX, int subsampleY, int compRule)); /* 247 */ - int (*tk_CollapseMotionEvents) _ANSI_ARGS_((Display * display, int collapse)); /* 248 */ - Tk_StyleEngine (*tk_RegisterStyleEngine) _ANSI_ARGS_((CONST char * name, Tk_StyleEngine parent)); /* 249 */ - Tk_StyleEngine (*tk_GetStyleEngine) _ANSI_ARGS_((CONST char * name)); /* 250 */ - int (*tk_RegisterStyledElement) _ANSI_ARGS_((Tk_StyleEngine engine, Tk_ElementSpec * templatePtr)); /* 251 */ - int (*tk_GetElementId) _ANSI_ARGS_((CONST char * name)); /* 252 */ - Tk_Style (*tk_CreateStyle) _ANSI_ARGS_((CONST char * name, Tk_StyleEngine engine, ClientData clientData)); /* 253 */ - Tk_Style (*tk_GetStyle) _ANSI_ARGS_((Tcl_Interp * interp, CONST char * name)); /* 254 */ - void (*tk_FreeStyle) _ANSI_ARGS_((Tk_Style style)); /* 255 */ - CONST char * (*tk_NameOfStyle) _ANSI_ARGS_((Tk_Style style)); /* 256 */ - Tk_Style (*tk_AllocStyleFromObj) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * objPtr)); /* 257 */ - Tk_Style (*tk_GetStyleFromObj) _ANSI_ARGS_((Tcl_Obj * objPtr)); /* 258 */ - void (*tk_FreeStyleFromObj) _ANSI_ARGS_((Tcl_Obj * objPtr)); /* 259 */ - Tk_StyledElement (*tk_GetStyledElement) _ANSI_ARGS_((Tk_Style style, int elementId, Tk_OptionTable optionTable)); /* 260 */ - void (*tk_GetElementSize) _ANSI_ARGS_((Tk_Style style, Tk_StyledElement element, char * recordPtr, Tk_Window tkwin, int width, int height, int inner, int * widthPtr, int * heightPtr)); /* 261 */ - void (*tk_GetElementBox) _ANSI_ARGS_((Tk_Style style, Tk_StyledElement element, char * recordPtr, Tk_Window tkwin, int x, int y, int width, int height, int inner, int * xPtr, int * yPtr, int * widthPtr, int * heightPtr)); /* 262 */ - int (*tk_GetElementBorderWidth) _ANSI_ARGS_((Tk_Style style, Tk_StyledElement element, char * recordPtr, Tk_Window tkwin)); /* 263 */ - void (*tk_DrawElement) _ANSI_ARGS_((Tk_Style style, Tk_StyledElement element, char * recordPtr, Tk_Window tkwin, Drawable d, int x, int y, int width, int height, int state)); /* 264 */ -} TkStubs; - -#ifdef __cplusplus -extern "C" { -#endif -extern TkStubs *tkStubsPtr; -#ifdef __cplusplus -} -#endif - -#if defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) - -/* - * Inline function declarations: - */ - -#ifndef Tk_MainLoop -#define Tk_MainLoop \ - (tkStubsPtr->tk_MainLoop) /* 0 */ -#endif -#ifndef Tk_3DBorderColor -#define Tk_3DBorderColor \ - (tkStubsPtr->tk_3DBorderColor) /* 1 */ -#endif -#ifndef Tk_3DBorderGC -#define Tk_3DBorderGC \ - (tkStubsPtr->tk_3DBorderGC) /* 2 */ -#endif -#ifndef Tk_3DHorizontalBevel -#define Tk_3DHorizontalBevel \ - (tkStubsPtr->tk_3DHorizontalBevel) /* 3 */ -#endif -#ifndef Tk_3DVerticalBevel -#define Tk_3DVerticalBevel \ - (tkStubsPtr->tk_3DVerticalBevel) /* 4 */ -#endif -#ifndef Tk_AddOption -#define Tk_AddOption \ - (tkStubsPtr->tk_AddOption) /* 5 */ -#endif -#ifndef Tk_BindEvent -#define Tk_BindEvent \ - (tkStubsPtr->tk_BindEvent) /* 6 */ -#endif -#ifndef Tk_CanvasDrawableCoords -#define Tk_CanvasDrawableCoords \ - (tkStubsPtr->tk_CanvasDrawableCoords) /* 7 */ -#endif -#ifndef Tk_CanvasEventuallyRedraw -#define Tk_CanvasEventuallyRedraw \ - (tkStubsPtr->tk_CanvasEventuallyRedraw) /* 8 */ -#endif -#ifndef Tk_CanvasGetCoord -#define Tk_CanvasGetCoord \ - (tkStubsPtr->tk_CanvasGetCoord) /* 9 */ -#endif -#ifndef Tk_CanvasGetTextInfo -#define Tk_CanvasGetTextInfo \ - (tkStubsPtr->tk_CanvasGetTextInfo) /* 10 */ -#endif -#ifndef Tk_CanvasPsBitmap -#define Tk_CanvasPsBitmap \ - (tkStubsPtr->tk_CanvasPsBitmap) /* 11 */ -#endif -#ifndef Tk_CanvasPsColor -#define Tk_CanvasPsColor \ - (tkStubsPtr->tk_CanvasPsColor) /* 12 */ -#endif -#ifndef Tk_CanvasPsFont -#define Tk_CanvasPsFont \ - (tkStubsPtr->tk_CanvasPsFont) /* 13 */ -#endif -#ifndef Tk_CanvasPsPath -#define Tk_CanvasPsPath \ - (tkStubsPtr->tk_CanvasPsPath) /* 14 */ -#endif -#ifndef Tk_CanvasPsStipple -#define Tk_CanvasPsStipple \ - (tkStubsPtr->tk_CanvasPsStipple) /* 15 */ -#endif -#ifndef Tk_CanvasPsY -#define Tk_CanvasPsY \ - (tkStubsPtr->tk_CanvasPsY) /* 16 */ -#endif -#ifndef Tk_CanvasSetStippleOrigin -#define Tk_CanvasSetStippleOrigin \ - (tkStubsPtr->tk_CanvasSetStippleOrigin) /* 17 */ -#endif -#ifndef Tk_CanvasTagsParseProc -#define Tk_CanvasTagsParseProc \ - (tkStubsPtr->tk_CanvasTagsParseProc) /* 18 */ -#endif -#ifndef Tk_CanvasTagsPrintProc -#define Tk_CanvasTagsPrintProc \ - (tkStubsPtr->tk_CanvasTagsPrintProc) /* 19 */ -#endif -#ifndef Tk_CanvasTkwin -#define Tk_CanvasTkwin \ - (tkStubsPtr->tk_CanvasTkwin) /* 20 */ -#endif -#ifndef Tk_CanvasWindowCoords -#define Tk_CanvasWindowCoords \ - (tkStubsPtr->tk_CanvasWindowCoords) /* 21 */ -#endif -#ifndef Tk_ChangeWindowAttributes -#define Tk_ChangeWindowAttributes \ - (tkStubsPtr->tk_ChangeWindowAttributes) /* 22 */ -#endif -#ifndef Tk_CharBbox -#define Tk_CharBbox \ - (tkStubsPtr->tk_CharBbox) /* 23 */ -#endif -#ifndef Tk_ClearSelection -#define Tk_ClearSelection \ - (tkStubsPtr->tk_ClearSelection) /* 24 */ -#endif -#ifndef Tk_ClipboardAppend -#define Tk_ClipboardAppend \ - (tkStubsPtr->tk_ClipboardAppend) /* 25 */ -#endif -#ifndef Tk_ClipboardClear -#define Tk_ClipboardClear \ - (tkStubsPtr->tk_ClipboardClear) /* 26 */ -#endif -#ifndef Tk_ConfigureInfo -#define Tk_ConfigureInfo \ - (tkStubsPtr->tk_ConfigureInfo) /* 27 */ -#endif -#ifndef Tk_ConfigureValue -#define Tk_ConfigureValue \ - (tkStubsPtr->tk_ConfigureValue) /* 28 */ -#endif -#ifndef Tk_ConfigureWidget -#define Tk_ConfigureWidget \ - (tkStubsPtr->tk_ConfigureWidget) /* 29 */ -#endif -#ifndef Tk_ConfigureWindow -#define Tk_ConfigureWindow \ - (tkStubsPtr->tk_ConfigureWindow) /* 30 */ -#endif -#ifndef Tk_ComputeTextLayout -#define Tk_ComputeTextLayout \ - (tkStubsPtr->tk_ComputeTextLayout) /* 31 */ -#endif -#ifndef Tk_CoordsToWindow -#define Tk_CoordsToWindow \ - (tkStubsPtr->tk_CoordsToWindow) /* 32 */ -#endif -#ifndef Tk_CreateBinding -#define Tk_CreateBinding \ - (tkStubsPtr->tk_CreateBinding) /* 33 */ -#endif -#ifndef Tk_CreateBindingTable -#define Tk_CreateBindingTable \ - (tkStubsPtr->tk_CreateBindingTable) /* 34 */ -#endif -#ifndef Tk_CreateErrorHandler -#define Tk_CreateErrorHandler \ - (tkStubsPtr->tk_CreateErrorHandler) /* 35 */ -#endif -#ifndef Tk_CreateEventHandler -#define Tk_CreateEventHandler \ - (tkStubsPtr->tk_CreateEventHandler) /* 36 */ -#endif -#ifndef Tk_CreateGenericHandler -#define Tk_CreateGenericHandler \ - (tkStubsPtr->tk_CreateGenericHandler) /* 37 */ -#endif -#ifndef Tk_CreateImageType -#define Tk_CreateImageType \ - (tkStubsPtr->tk_CreateImageType) /* 38 */ -#endif -#ifndef Tk_CreateItemType -#define Tk_CreateItemType \ - (tkStubsPtr->tk_CreateItemType) /* 39 */ -#endif -#ifndef Tk_CreatePhotoImageFormat -#define Tk_CreatePhotoImageFormat \ - (tkStubsPtr->tk_CreatePhotoImageFormat) /* 40 */ -#endif -#ifndef Tk_CreateSelHandler -#define Tk_CreateSelHandler \ - (tkStubsPtr->tk_CreateSelHandler) /* 41 */ -#endif -#ifndef Tk_CreateWindow -#define Tk_CreateWindow \ - (tkStubsPtr->tk_CreateWindow) /* 42 */ -#endif -#ifndef Tk_CreateWindowFromPath -#define Tk_CreateWindowFromPath \ - (tkStubsPtr->tk_CreateWindowFromPath) /* 43 */ -#endif -#ifndef Tk_DefineBitmap -#define Tk_DefineBitmap \ - (tkStubsPtr->tk_DefineBitmap) /* 44 */ -#endif -#ifndef Tk_DefineCursor -#define Tk_DefineCursor \ - (tkStubsPtr->tk_DefineCursor) /* 45 */ -#endif -#ifndef Tk_DeleteAllBindings -#define Tk_DeleteAllBindings \ - (tkStubsPtr->tk_DeleteAllBindings) /* 46 */ -#endif -#ifndef Tk_DeleteBinding -#define Tk_DeleteBinding \ - (tkStubsPtr->tk_DeleteBinding) /* 47 */ -#endif -#ifndef Tk_DeleteBindingTable -#define Tk_DeleteBindingTable \ - (tkStubsPtr->tk_DeleteBindingTable) /* 48 */ -#endif -#ifndef Tk_DeleteErrorHandler -#define Tk_DeleteErrorHandler \ - (tkStubsPtr->tk_DeleteErrorHandler) /* 49 */ -#endif -#ifndef Tk_DeleteEventHandler -#define Tk_DeleteEventHandler \ - (tkStubsPtr->tk_DeleteEventHandler) /* 50 */ -#endif -#ifndef Tk_DeleteGenericHandler -#define Tk_DeleteGenericHandler \ - (tkStubsPtr->tk_DeleteGenericHandler) /* 51 */ -#endif -#ifndef Tk_DeleteImage -#define Tk_DeleteImage \ - (tkStubsPtr->tk_DeleteImage) /* 52 */ -#endif -#ifndef Tk_DeleteSelHandler -#define Tk_DeleteSelHandler \ - (tkStubsPtr->tk_DeleteSelHandler) /* 53 */ -#endif -#ifndef Tk_DestroyWindow -#define Tk_DestroyWindow \ - (tkStubsPtr->tk_DestroyWindow) /* 54 */ -#endif -#ifndef Tk_DisplayName -#define Tk_DisplayName \ - (tkStubsPtr->tk_DisplayName) /* 55 */ -#endif -#ifndef Tk_DistanceToTextLayout -#define Tk_DistanceToTextLayout \ - (tkStubsPtr->tk_DistanceToTextLayout) /* 56 */ -#endif -#ifndef Tk_Draw3DPolygon -#define Tk_Draw3DPolygon \ - (tkStubsPtr->tk_Draw3DPolygon) /* 57 */ -#endif -#ifndef Tk_Draw3DRectangle -#define Tk_Draw3DRectangle \ - (tkStubsPtr->tk_Draw3DRectangle) /* 58 */ -#endif -#ifndef Tk_DrawChars -#define Tk_DrawChars \ - (tkStubsPtr->tk_DrawChars) /* 59 */ -#endif -#ifndef Tk_DrawFocusHighlight -#define Tk_DrawFocusHighlight \ - (tkStubsPtr->tk_DrawFocusHighlight) /* 60 */ -#endif -#ifndef Tk_DrawTextLayout -#define Tk_DrawTextLayout \ - (tkStubsPtr->tk_DrawTextLayout) /* 61 */ -#endif -#ifndef Tk_Fill3DPolygon -#define Tk_Fill3DPolygon \ - (tkStubsPtr->tk_Fill3DPolygon) /* 62 */ -#endif -#ifndef Tk_Fill3DRectangle -#define Tk_Fill3DRectangle \ - (tkStubsPtr->tk_Fill3DRectangle) /* 63 */ -#endif -#ifndef Tk_FindPhoto -#define Tk_FindPhoto \ - (tkStubsPtr->tk_FindPhoto) /* 64 */ -#endif -#ifndef Tk_FontId -#define Tk_FontId \ - (tkStubsPtr->tk_FontId) /* 65 */ -#endif -#ifndef Tk_Free3DBorder -#define Tk_Free3DBorder \ - (tkStubsPtr->tk_Free3DBorder) /* 66 */ -#endif -#ifndef Tk_FreeBitmap -#define Tk_FreeBitmap \ - (tkStubsPtr->tk_FreeBitmap) /* 67 */ -#endif -#ifndef Tk_FreeColor -#define Tk_FreeColor \ - (tkStubsPtr->tk_FreeColor) /* 68 */ -#endif -#ifndef Tk_FreeColormap -#define Tk_FreeColormap \ - (tkStubsPtr->tk_FreeColormap) /* 69 */ -#endif -#ifndef Tk_FreeCursor -#define Tk_FreeCursor \ - (tkStubsPtr->tk_FreeCursor) /* 70 */ -#endif -#ifndef Tk_FreeFont -#define Tk_FreeFont \ - (tkStubsPtr->tk_FreeFont) /* 71 */ -#endif -#ifndef Tk_FreeGC -#define Tk_FreeGC \ - (tkStubsPtr->tk_FreeGC) /* 72 */ -#endif -#ifndef Tk_FreeImage -#define Tk_FreeImage \ - (tkStubsPtr->tk_FreeImage) /* 73 */ -#endif -#ifndef Tk_FreeOptions -#define Tk_FreeOptions \ - (tkStubsPtr->tk_FreeOptions) /* 74 */ -#endif -#ifndef Tk_FreePixmap -#define Tk_FreePixmap \ - (tkStubsPtr->tk_FreePixmap) /* 75 */ -#endif -#ifndef Tk_FreeTextLayout -#define Tk_FreeTextLayout \ - (tkStubsPtr->tk_FreeTextLayout) /* 76 */ -#endif -#ifndef Tk_FreeXId -#define Tk_FreeXId \ - (tkStubsPtr->tk_FreeXId) /* 77 */ -#endif -#ifndef Tk_GCForColor -#define Tk_GCForColor \ - (tkStubsPtr->tk_GCForColor) /* 78 */ -#endif -#ifndef Tk_GeometryRequest -#define Tk_GeometryRequest \ - (tkStubsPtr->tk_GeometryRequest) /* 79 */ -#endif -#ifndef Tk_Get3DBorder -#define Tk_Get3DBorder \ - (tkStubsPtr->tk_Get3DBorder) /* 80 */ -#endif -#ifndef Tk_GetAllBindings -#define Tk_GetAllBindings \ - (tkStubsPtr->tk_GetAllBindings) /* 81 */ -#endif -#ifndef Tk_GetAnchor -#define Tk_GetAnchor \ - (tkStubsPtr->tk_GetAnchor) /* 82 */ -#endif -#ifndef Tk_GetAtomName -#define Tk_GetAtomName \ - (tkStubsPtr->tk_GetAtomName) /* 83 */ -#endif -#ifndef Tk_GetBinding -#define Tk_GetBinding \ - (tkStubsPtr->tk_GetBinding) /* 84 */ -#endif -#ifndef Tk_GetBitmap -#define Tk_GetBitmap \ - (tkStubsPtr->tk_GetBitmap) /* 85 */ -#endif -#ifndef Tk_GetBitmapFromData -#define Tk_GetBitmapFromData \ - (tkStubsPtr->tk_GetBitmapFromData) /* 86 */ -#endif -#ifndef Tk_GetCapStyle -#define Tk_GetCapStyle \ - (tkStubsPtr->tk_GetCapStyle) /* 87 */ -#endif -#ifndef Tk_GetColor -#define Tk_GetColor \ - (tkStubsPtr->tk_GetColor) /* 88 */ -#endif -#ifndef Tk_GetColorByValue -#define Tk_GetColorByValue \ - (tkStubsPtr->tk_GetColorByValue) /* 89 */ -#endif -#ifndef Tk_GetColormap -#define Tk_GetColormap \ - (tkStubsPtr->tk_GetColormap) /* 90 */ -#endif -#ifndef Tk_GetCursor -#define Tk_GetCursor \ - (tkStubsPtr->tk_GetCursor) /* 91 */ -#endif -#ifndef Tk_GetCursorFromData -#define Tk_GetCursorFromData \ - (tkStubsPtr->tk_GetCursorFromData) /* 92 */ -#endif -#ifndef Tk_GetFont -#define Tk_GetFont \ - (tkStubsPtr->tk_GetFont) /* 93 */ -#endif -#ifndef Tk_GetFontFromObj -#define Tk_GetFontFromObj \ - (tkStubsPtr->tk_GetFontFromObj) /* 94 */ -#endif -#ifndef Tk_GetFontMetrics -#define Tk_GetFontMetrics \ - (tkStubsPtr->tk_GetFontMetrics) /* 95 */ -#endif -#ifndef Tk_GetGC -#define Tk_GetGC \ - (tkStubsPtr->tk_GetGC) /* 96 */ -#endif -#ifndef Tk_GetImage -#define Tk_GetImage \ - (tkStubsPtr->tk_GetImage) /* 97 */ -#endif -#ifndef Tk_GetImageMasterData -#define Tk_GetImageMasterData \ - (tkStubsPtr->tk_GetImageMasterData) /* 98 */ -#endif -#ifndef Tk_GetItemTypes -#define Tk_GetItemTypes \ - (tkStubsPtr->tk_GetItemTypes) /* 99 */ -#endif -#ifndef Tk_GetJoinStyle -#define Tk_GetJoinStyle \ - (tkStubsPtr->tk_GetJoinStyle) /* 100 */ -#endif -#ifndef Tk_GetJustify -#define Tk_GetJustify \ - (tkStubsPtr->tk_GetJustify) /* 101 */ -#endif -#ifndef Tk_GetNumMainWindows -#define Tk_GetNumMainWindows \ - (tkStubsPtr->tk_GetNumMainWindows) /* 102 */ -#endif -#ifndef Tk_GetOption -#define Tk_GetOption \ - (tkStubsPtr->tk_GetOption) /* 103 */ -#endif -#ifndef Tk_GetPixels -#define Tk_GetPixels \ - (tkStubsPtr->tk_GetPixels) /* 104 */ -#endif -#ifndef Tk_GetPixmap -#define Tk_GetPixmap \ - (tkStubsPtr->tk_GetPixmap) /* 105 */ -#endif -#ifndef Tk_GetRelief -#define Tk_GetRelief \ - (tkStubsPtr->tk_GetRelief) /* 106 */ -#endif -#ifndef Tk_GetRootCoords -#define Tk_GetRootCoords \ - (tkStubsPtr->tk_GetRootCoords) /* 107 */ -#endif -#ifndef Tk_GetScrollInfo -#define Tk_GetScrollInfo \ - (tkStubsPtr->tk_GetScrollInfo) /* 108 */ -#endif -#ifndef Tk_GetScreenMM -#define Tk_GetScreenMM \ - (tkStubsPtr->tk_GetScreenMM) /* 109 */ -#endif -#ifndef Tk_GetSelection -#define Tk_GetSelection \ - (tkStubsPtr->tk_GetSelection) /* 110 */ -#endif -#ifndef Tk_GetUid -#define Tk_GetUid \ - (tkStubsPtr->tk_GetUid) /* 111 */ -#endif -#ifndef Tk_GetVisual -#define Tk_GetVisual \ - (tkStubsPtr->tk_GetVisual) /* 112 */ -#endif -#ifndef Tk_GetVRootGeometry -#define Tk_GetVRootGeometry \ - (tkStubsPtr->tk_GetVRootGeometry) /* 113 */ -#endif -#ifndef Tk_Grab -#define Tk_Grab \ - (tkStubsPtr->tk_Grab) /* 114 */ -#endif -#ifndef Tk_HandleEvent -#define Tk_HandleEvent \ - (tkStubsPtr->tk_HandleEvent) /* 115 */ -#endif -#ifndef Tk_IdToWindow -#define Tk_IdToWindow \ - (tkStubsPtr->tk_IdToWindow) /* 116 */ -#endif -#ifndef Tk_ImageChanged -#define Tk_ImageChanged \ - (tkStubsPtr->tk_ImageChanged) /* 117 */ -#endif -#ifndef Tk_Init -#define Tk_Init \ - (tkStubsPtr->tk_Init) /* 118 */ -#endif -#ifndef Tk_InternAtom -#define Tk_InternAtom \ - (tkStubsPtr->tk_InternAtom) /* 119 */ -#endif -#ifndef Tk_IntersectTextLayout -#define Tk_IntersectTextLayout \ - (tkStubsPtr->tk_IntersectTextLayout) /* 120 */ -#endif -#ifndef Tk_MaintainGeometry -#define Tk_MaintainGeometry \ - (tkStubsPtr->tk_MaintainGeometry) /* 121 */ -#endif -#ifndef Tk_MainWindow -#define Tk_MainWindow \ - (tkStubsPtr->tk_MainWindow) /* 122 */ -#endif -#ifndef Tk_MakeWindowExist -#define Tk_MakeWindowExist \ - (tkStubsPtr->tk_MakeWindowExist) /* 123 */ -#endif -#ifndef Tk_ManageGeometry -#define Tk_ManageGeometry \ - (tkStubsPtr->tk_ManageGeometry) /* 124 */ -#endif -#ifndef Tk_MapWindow -#define Tk_MapWindow \ - (tkStubsPtr->tk_MapWindow) /* 125 */ -#endif -#ifndef Tk_MeasureChars -#define Tk_MeasureChars \ - (tkStubsPtr->tk_MeasureChars) /* 126 */ -#endif -#ifndef Tk_MoveResizeWindow -#define Tk_MoveResizeWindow \ - (tkStubsPtr->tk_MoveResizeWindow) /* 127 */ -#endif -#ifndef Tk_MoveWindow -#define Tk_MoveWindow \ - (tkStubsPtr->tk_MoveWindow) /* 128 */ -#endif -#ifndef Tk_MoveToplevelWindow -#define Tk_MoveToplevelWindow \ - (tkStubsPtr->tk_MoveToplevelWindow) /* 129 */ -#endif -#ifndef Tk_NameOf3DBorder -#define Tk_NameOf3DBorder \ - (tkStubsPtr->tk_NameOf3DBorder) /* 130 */ -#endif -#ifndef Tk_NameOfAnchor -#define Tk_NameOfAnchor \ - (tkStubsPtr->tk_NameOfAnchor) /* 131 */ -#endif -#ifndef Tk_NameOfBitmap -#define Tk_NameOfBitmap \ - (tkStubsPtr->tk_NameOfBitmap) /* 132 */ -#endif -#ifndef Tk_NameOfCapStyle -#define Tk_NameOfCapStyle \ - (tkStubsPtr->tk_NameOfCapStyle) /* 133 */ -#endif -#ifndef Tk_NameOfColor -#define Tk_NameOfColor \ - (tkStubsPtr->tk_NameOfColor) /* 134 */ -#endif -#ifndef Tk_NameOfCursor -#define Tk_NameOfCursor \ - (tkStubsPtr->tk_NameOfCursor) /* 135 */ -#endif -#ifndef Tk_NameOfFont -#define Tk_NameOfFont \ - (tkStubsPtr->tk_NameOfFont) /* 136 */ -#endif -#ifndef Tk_NameOfImage -#define Tk_NameOfImage \ - (tkStubsPtr->tk_NameOfImage) /* 137 */ -#endif -#ifndef Tk_NameOfJoinStyle -#define Tk_NameOfJoinStyle \ - (tkStubsPtr->tk_NameOfJoinStyle) /* 138 */ -#endif -#ifndef Tk_NameOfJustify -#define Tk_NameOfJustify \ - (tkStubsPtr->tk_NameOfJustify) /* 139 */ -#endif -#ifndef Tk_NameOfRelief -#define Tk_NameOfRelief \ - (tkStubsPtr->tk_NameOfRelief) /* 140 */ -#endif -#ifndef Tk_NameToWindow -#define Tk_NameToWindow \ - (tkStubsPtr->tk_NameToWindow) /* 141 */ -#endif -#ifndef Tk_OwnSelection -#define Tk_OwnSelection \ - (tkStubsPtr->tk_OwnSelection) /* 142 */ -#endif -#ifndef Tk_ParseArgv -#define Tk_ParseArgv \ - (tkStubsPtr->tk_ParseArgv) /* 143 */ -#endif -#ifndef Tk_PhotoPutBlock_NoComposite -#define Tk_PhotoPutBlock_NoComposite \ - (tkStubsPtr->tk_PhotoPutBlock_NoComposite) /* 144 */ -#endif -#ifndef Tk_PhotoPutZoomedBlock_NoComposite -#define Tk_PhotoPutZoomedBlock_NoComposite \ - (tkStubsPtr->tk_PhotoPutZoomedBlock_NoComposite) /* 145 */ -#endif -#ifndef Tk_PhotoGetImage -#define Tk_PhotoGetImage \ - (tkStubsPtr->tk_PhotoGetImage) /* 146 */ -#endif -#ifndef Tk_PhotoBlank -#define Tk_PhotoBlank \ - (tkStubsPtr->tk_PhotoBlank) /* 147 */ -#endif -#ifndef Tk_PhotoExpand -#define Tk_PhotoExpand \ - (tkStubsPtr->tk_PhotoExpand) /* 148 */ -#endif -#ifndef Tk_PhotoGetSize -#define Tk_PhotoGetSize \ - (tkStubsPtr->tk_PhotoGetSize) /* 149 */ -#endif -#ifndef Tk_PhotoSetSize -#define Tk_PhotoSetSize \ - (tkStubsPtr->tk_PhotoSetSize) /* 150 */ -#endif -#ifndef Tk_PointToChar -#define Tk_PointToChar \ - (tkStubsPtr->tk_PointToChar) /* 151 */ -#endif -#ifndef Tk_PostscriptFontName -#define Tk_PostscriptFontName \ - (tkStubsPtr->tk_PostscriptFontName) /* 152 */ -#endif -#ifndef Tk_PreserveColormap -#define Tk_PreserveColormap \ - (tkStubsPtr->tk_PreserveColormap) /* 153 */ -#endif -#ifndef Tk_QueueWindowEvent -#define Tk_QueueWindowEvent \ - (tkStubsPtr->tk_QueueWindowEvent) /* 154 */ -#endif -#ifndef Tk_RedrawImage -#define Tk_RedrawImage \ - (tkStubsPtr->tk_RedrawImage) /* 155 */ -#endif -#ifndef Tk_ResizeWindow -#define Tk_ResizeWindow \ - (tkStubsPtr->tk_ResizeWindow) /* 156 */ -#endif -#ifndef Tk_RestackWindow -#define Tk_RestackWindow \ - (tkStubsPtr->tk_RestackWindow) /* 157 */ -#endif -#ifndef Tk_RestrictEvents -#define Tk_RestrictEvents \ - (tkStubsPtr->tk_RestrictEvents) /* 158 */ -#endif -#ifndef Tk_SafeInit -#define Tk_SafeInit \ - (tkStubsPtr->tk_SafeInit) /* 159 */ -#endif -#ifndef Tk_SetAppName -#define Tk_SetAppName \ - (tkStubsPtr->tk_SetAppName) /* 160 */ -#endif -#ifndef Tk_SetBackgroundFromBorder -#define Tk_SetBackgroundFromBorder \ - (tkStubsPtr->tk_SetBackgroundFromBorder) /* 161 */ -#endif -#ifndef Tk_SetClass -#define Tk_SetClass \ - (tkStubsPtr->tk_SetClass) /* 162 */ -#endif -#ifndef Tk_SetGrid -#define Tk_SetGrid \ - (tkStubsPtr->tk_SetGrid) /* 163 */ -#endif -#ifndef Tk_SetInternalBorder -#define Tk_SetInternalBorder \ - (tkStubsPtr->tk_SetInternalBorder) /* 164 */ -#endif -#ifndef Tk_SetWindowBackground -#define Tk_SetWindowBackground \ - (tkStubsPtr->tk_SetWindowBackground) /* 165 */ -#endif -#ifndef Tk_SetWindowBackgroundPixmap -#define Tk_SetWindowBackgroundPixmap \ - (tkStubsPtr->tk_SetWindowBackgroundPixmap) /* 166 */ -#endif -#ifndef Tk_SetWindowBorder -#define Tk_SetWindowBorder \ - (tkStubsPtr->tk_SetWindowBorder) /* 167 */ -#endif -#ifndef Tk_SetWindowBorderWidth -#define Tk_SetWindowBorderWidth \ - (tkStubsPtr->tk_SetWindowBorderWidth) /* 168 */ -#endif -#ifndef Tk_SetWindowBorderPixmap -#define Tk_SetWindowBorderPixmap \ - (tkStubsPtr->tk_SetWindowBorderPixmap) /* 169 */ -#endif -#ifndef Tk_SetWindowColormap -#define Tk_SetWindowColormap \ - (tkStubsPtr->tk_SetWindowColormap) /* 170 */ -#endif -#ifndef Tk_SetWindowVisual -#define Tk_SetWindowVisual \ - (tkStubsPtr->tk_SetWindowVisual) /* 171 */ -#endif -#ifndef Tk_SizeOfBitmap -#define Tk_SizeOfBitmap \ - (tkStubsPtr->tk_SizeOfBitmap) /* 172 */ -#endif -#ifndef Tk_SizeOfImage -#define Tk_SizeOfImage \ - (tkStubsPtr->tk_SizeOfImage) /* 173 */ -#endif -#ifndef Tk_StrictMotif -#define Tk_StrictMotif \ - (tkStubsPtr->tk_StrictMotif) /* 174 */ -#endif -#ifndef Tk_TextLayoutToPostscript -#define Tk_TextLayoutToPostscript \ - (tkStubsPtr->tk_TextLayoutToPostscript) /* 175 */ -#endif -#ifndef Tk_TextWidth -#define Tk_TextWidth \ - (tkStubsPtr->tk_TextWidth) /* 176 */ -#endif -#ifndef Tk_UndefineCursor -#define Tk_UndefineCursor \ - (tkStubsPtr->tk_UndefineCursor) /* 177 */ -#endif -#ifndef Tk_UnderlineChars -#define Tk_UnderlineChars \ - (tkStubsPtr->tk_UnderlineChars) /* 178 */ -#endif -#ifndef Tk_UnderlineTextLayout -#define Tk_UnderlineTextLayout \ - (tkStubsPtr->tk_UnderlineTextLayout) /* 179 */ -#endif -#ifndef Tk_Ungrab -#define Tk_Ungrab \ - (tkStubsPtr->tk_Ungrab) /* 180 */ -#endif -#ifndef Tk_UnmaintainGeometry -#define Tk_UnmaintainGeometry \ - (tkStubsPtr->tk_UnmaintainGeometry) /* 181 */ -#endif -#ifndef Tk_UnmapWindow -#define Tk_UnmapWindow \ - (tkStubsPtr->tk_UnmapWindow) /* 182 */ -#endif -#ifndef Tk_UnsetGrid -#define Tk_UnsetGrid \ - (tkStubsPtr->tk_UnsetGrid) /* 183 */ -#endif -#ifndef Tk_UpdatePointer -#define Tk_UpdatePointer \ - (tkStubsPtr->tk_UpdatePointer) /* 184 */ -#endif -#ifndef Tk_AllocBitmapFromObj -#define Tk_AllocBitmapFromObj \ - (tkStubsPtr->tk_AllocBitmapFromObj) /* 185 */ -#endif -#ifndef Tk_Alloc3DBorderFromObj -#define Tk_Alloc3DBorderFromObj \ - (tkStubsPtr->tk_Alloc3DBorderFromObj) /* 186 */ -#endif -#ifndef Tk_AllocColorFromObj -#define Tk_AllocColorFromObj \ - (tkStubsPtr->tk_AllocColorFromObj) /* 187 */ -#endif -#ifndef Tk_AllocCursorFromObj -#define Tk_AllocCursorFromObj \ - (tkStubsPtr->tk_AllocCursorFromObj) /* 188 */ -#endif -#ifndef Tk_AllocFontFromObj -#define Tk_AllocFontFromObj \ - (tkStubsPtr->tk_AllocFontFromObj) /* 189 */ -#endif -#ifndef Tk_CreateOptionTable -#define Tk_CreateOptionTable \ - (tkStubsPtr->tk_CreateOptionTable) /* 190 */ -#endif -#ifndef Tk_DeleteOptionTable -#define Tk_DeleteOptionTable \ - (tkStubsPtr->tk_DeleteOptionTable) /* 191 */ -#endif -#ifndef Tk_Free3DBorderFromObj -#define Tk_Free3DBorderFromObj \ - (tkStubsPtr->tk_Free3DBorderFromObj) /* 192 */ -#endif -#ifndef Tk_FreeBitmapFromObj -#define Tk_FreeBitmapFromObj \ - (tkStubsPtr->tk_FreeBitmapFromObj) /* 193 */ -#endif -#ifndef Tk_FreeColorFromObj -#define Tk_FreeColorFromObj \ - (tkStubsPtr->tk_FreeColorFromObj) /* 194 */ -#endif -#ifndef Tk_FreeConfigOptions -#define Tk_FreeConfigOptions \ - (tkStubsPtr->tk_FreeConfigOptions) /* 195 */ -#endif -#ifndef Tk_FreeSavedOptions -#define Tk_FreeSavedOptions \ - (tkStubsPtr->tk_FreeSavedOptions) /* 196 */ -#endif -#ifndef Tk_FreeCursorFromObj -#define Tk_FreeCursorFromObj \ - (tkStubsPtr->tk_FreeCursorFromObj) /* 197 */ -#endif -#ifndef Tk_FreeFontFromObj -#define Tk_FreeFontFromObj \ - (tkStubsPtr->tk_FreeFontFromObj) /* 198 */ -#endif -#ifndef Tk_Get3DBorderFromObj -#define Tk_Get3DBorderFromObj \ - (tkStubsPtr->tk_Get3DBorderFromObj) /* 199 */ -#endif -#ifndef Tk_GetAnchorFromObj -#define Tk_GetAnchorFromObj \ - (tkStubsPtr->tk_GetAnchorFromObj) /* 200 */ -#endif -#ifndef Tk_GetBitmapFromObj -#define Tk_GetBitmapFromObj \ - (tkStubsPtr->tk_GetBitmapFromObj) /* 201 */ -#endif -#ifndef Tk_GetColorFromObj -#define Tk_GetColorFromObj \ - (tkStubsPtr->tk_GetColorFromObj) /* 202 */ -#endif -#ifndef Tk_GetCursorFromObj -#define Tk_GetCursorFromObj \ - (tkStubsPtr->tk_GetCursorFromObj) /* 203 */ -#endif -#ifndef Tk_GetOptionInfo -#define Tk_GetOptionInfo \ - (tkStubsPtr->tk_GetOptionInfo) /* 204 */ -#endif -#ifndef Tk_GetOptionValue -#define Tk_GetOptionValue \ - (tkStubsPtr->tk_GetOptionValue) /* 205 */ -#endif -#ifndef Tk_GetJustifyFromObj -#define Tk_GetJustifyFromObj \ - (tkStubsPtr->tk_GetJustifyFromObj) /* 206 */ -#endif -#ifndef Tk_GetMMFromObj -#define Tk_GetMMFromObj \ - (tkStubsPtr->tk_GetMMFromObj) /* 207 */ -#endif -#ifndef Tk_GetPixelsFromObj -#define Tk_GetPixelsFromObj \ - (tkStubsPtr->tk_GetPixelsFromObj) /* 208 */ -#endif -#ifndef Tk_GetReliefFromObj -#define Tk_GetReliefFromObj \ - (tkStubsPtr->tk_GetReliefFromObj) /* 209 */ -#endif -#ifndef Tk_GetScrollInfoObj -#define Tk_GetScrollInfoObj \ - (tkStubsPtr->tk_GetScrollInfoObj) /* 210 */ -#endif -#ifndef Tk_InitOptions -#define Tk_InitOptions \ - (tkStubsPtr->tk_InitOptions) /* 211 */ -#endif -#ifndef Tk_MainEx -#define Tk_MainEx \ - (tkStubsPtr->tk_MainEx) /* 212 */ -#endif -#ifndef Tk_RestoreSavedOptions -#define Tk_RestoreSavedOptions \ - (tkStubsPtr->tk_RestoreSavedOptions) /* 213 */ -#endif -#ifndef Tk_SetOptions -#define Tk_SetOptions \ - (tkStubsPtr->tk_SetOptions) /* 214 */ -#endif -#ifndef Tk_InitConsoleChannels -#define Tk_InitConsoleChannels \ - (tkStubsPtr->tk_InitConsoleChannels) /* 215 */ -#endif -#ifndef Tk_CreateConsoleWindow -#define Tk_CreateConsoleWindow \ - (tkStubsPtr->tk_CreateConsoleWindow) /* 216 */ -#endif -#ifndef Tk_CreateSmoothMethod -#define Tk_CreateSmoothMethod \ - (tkStubsPtr->tk_CreateSmoothMethod) /* 217 */ -#endif -/* Slot 218 is reserved */ -/* Slot 219 is reserved */ -#ifndef Tk_GetDash -#define Tk_GetDash \ - (tkStubsPtr->tk_GetDash) /* 220 */ -#endif -#ifndef Tk_CreateOutline -#define Tk_CreateOutline \ - (tkStubsPtr->tk_CreateOutline) /* 221 */ -#endif -#ifndef Tk_DeleteOutline -#define Tk_DeleteOutline \ - (tkStubsPtr->tk_DeleteOutline) /* 222 */ -#endif -#ifndef Tk_ConfigOutlineGC -#define Tk_ConfigOutlineGC \ - (tkStubsPtr->tk_ConfigOutlineGC) /* 223 */ -#endif -#ifndef Tk_ChangeOutlineGC -#define Tk_ChangeOutlineGC \ - (tkStubsPtr->tk_ChangeOutlineGC) /* 224 */ -#endif -#ifndef Tk_ResetOutlineGC -#define Tk_ResetOutlineGC \ - (tkStubsPtr->tk_ResetOutlineGC) /* 225 */ -#endif -#ifndef Tk_CanvasPsOutline -#define Tk_CanvasPsOutline \ - (tkStubsPtr->tk_CanvasPsOutline) /* 226 */ -#endif -#ifndef Tk_SetTSOrigin -#define Tk_SetTSOrigin \ - (tkStubsPtr->tk_SetTSOrigin) /* 227 */ -#endif -#ifndef Tk_CanvasGetCoordFromObj -#define Tk_CanvasGetCoordFromObj \ - (tkStubsPtr->tk_CanvasGetCoordFromObj) /* 228 */ -#endif -#ifndef Tk_CanvasSetOffset -#define Tk_CanvasSetOffset \ - (tkStubsPtr->tk_CanvasSetOffset) /* 229 */ -#endif -#ifndef Tk_DitherPhoto -#define Tk_DitherPhoto \ - (tkStubsPtr->tk_DitherPhoto) /* 230 */ -#endif -#ifndef Tk_PostscriptBitmap -#define Tk_PostscriptBitmap \ - (tkStubsPtr->tk_PostscriptBitmap) /* 231 */ -#endif -#ifndef Tk_PostscriptColor -#define Tk_PostscriptColor \ - (tkStubsPtr->tk_PostscriptColor) /* 232 */ -#endif -#ifndef Tk_PostscriptFont -#define Tk_PostscriptFont \ - (tkStubsPtr->tk_PostscriptFont) /* 233 */ -#endif -#ifndef Tk_PostscriptImage -#define Tk_PostscriptImage \ - (tkStubsPtr->tk_PostscriptImage) /* 234 */ -#endif -#ifndef Tk_PostscriptPath -#define Tk_PostscriptPath \ - (tkStubsPtr->tk_PostscriptPath) /* 235 */ -#endif -#ifndef Tk_PostscriptStipple -#define Tk_PostscriptStipple \ - (tkStubsPtr->tk_PostscriptStipple) /* 236 */ -#endif -#ifndef Tk_PostscriptY -#define Tk_PostscriptY \ - (tkStubsPtr->tk_PostscriptY) /* 237 */ -#endif -#ifndef Tk_PostscriptPhoto -#define Tk_PostscriptPhoto \ - (tkStubsPtr->tk_PostscriptPhoto) /* 238 */ -#endif -#ifndef Tk_CreateClientMessageHandler -#define Tk_CreateClientMessageHandler \ - (tkStubsPtr->tk_CreateClientMessageHandler) /* 239 */ -#endif -#ifndef Tk_DeleteClientMessageHandler -#define Tk_DeleteClientMessageHandler \ - (tkStubsPtr->tk_DeleteClientMessageHandler) /* 240 */ -#endif -#ifndef Tk_CreateAnonymousWindow -#define Tk_CreateAnonymousWindow \ - (tkStubsPtr->tk_CreateAnonymousWindow) /* 241 */ -#endif -#ifndef Tk_SetClassProcs -#define Tk_SetClassProcs \ - (tkStubsPtr->tk_SetClassProcs) /* 242 */ -#endif -#ifndef Tk_SetInternalBorderEx -#define Tk_SetInternalBorderEx \ - (tkStubsPtr->tk_SetInternalBorderEx) /* 243 */ -#endif -#ifndef Tk_SetMinimumRequestSize -#define Tk_SetMinimumRequestSize \ - (tkStubsPtr->tk_SetMinimumRequestSize) /* 244 */ -#endif -#ifndef Tk_SetCaretPos -#define Tk_SetCaretPos \ - (tkStubsPtr->tk_SetCaretPos) /* 245 */ -#endif -#ifndef Tk_PhotoPutBlock -#define Tk_PhotoPutBlock \ - (tkStubsPtr->tk_PhotoPutBlock) /* 246 */ -#endif -#ifndef Tk_PhotoPutZoomedBlock -#define Tk_PhotoPutZoomedBlock \ - (tkStubsPtr->tk_PhotoPutZoomedBlock) /* 247 */ -#endif -#ifndef Tk_CollapseMotionEvents -#define Tk_CollapseMotionEvents \ - (tkStubsPtr->tk_CollapseMotionEvents) /* 248 */ -#endif -#ifndef Tk_RegisterStyleEngine -#define Tk_RegisterStyleEngine \ - (tkStubsPtr->tk_RegisterStyleEngine) /* 249 */ -#endif -#ifndef Tk_GetStyleEngine -#define Tk_GetStyleEngine \ - (tkStubsPtr->tk_GetStyleEngine) /* 250 */ -#endif -#ifndef Tk_RegisterStyledElement -#define Tk_RegisterStyledElement \ - (tkStubsPtr->tk_RegisterStyledElement) /* 251 */ -#endif -#ifndef Tk_GetElementId -#define Tk_GetElementId \ - (tkStubsPtr->tk_GetElementId) /* 252 */ -#endif -#ifndef Tk_CreateStyle -#define Tk_CreateStyle \ - (tkStubsPtr->tk_CreateStyle) /* 253 */ -#endif -#ifndef Tk_GetStyle -#define Tk_GetStyle \ - (tkStubsPtr->tk_GetStyle) /* 254 */ -#endif -#ifndef Tk_FreeStyle -#define Tk_FreeStyle \ - (tkStubsPtr->tk_FreeStyle) /* 255 */ -#endif -#ifndef Tk_NameOfStyle -#define Tk_NameOfStyle \ - (tkStubsPtr->tk_NameOfStyle) /* 256 */ -#endif -#ifndef Tk_AllocStyleFromObj -#define Tk_AllocStyleFromObj \ - (tkStubsPtr->tk_AllocStyleFromObj) /* 257 */ -#endif -#ifndef Tk_GetStyleFromObj -#define Tk_GetStyleFromObj \ - (tkStubsPtr->tk_GetStyleFromObj) /* 258 */ -#endif -#ifndef Tk_FreeStyleFromObj -#define Tk_FreeStyleFromObj \ - (tkStubsPtr->tk_FreeStyleFromObj) /* 259 */ -#endif -#ifndef Tk_GetStyledElement -#define Tk_GetStyledElement \ - (tkStubsPtr->tk_GetStyledElement) /* 260 */ -#endif -#ifndef Tk_GetElementSize -#define Tk_GetElementSize \ - (tkStubsPtr->tk_GetElementSize) /* 261 */ -#endif -#ifndef Tk_GetElementBox -#define Tk_GetElementBox \ - (tkStubsPtr->tk_GetElementBox) /* 262 */ -#endif -#ifndef Tk_GetElementBorderWidth -#define Tk_GetElementBorderWidth \ - (tkStubsPtr->tk_GetElementBorderWidth) /* 263 */ -#endif -#ifndef Tk_DrawElement -#define Tk_DrawElement \ - (tkStubsPtr->tk_DrawElement) /* 264 */ -#endif - -#endif /* defined(USE_TK_STUBS) && !defined(USE_TK_STUB_PROCS) */ - -/* !END!: Do not edit above this line. */ - -#undef TCL_STORAGE_CLASS -#define TCL_STORAGE_CLASS DLLIMPORT - -#endif /* _TKDECLS */ - diff --git a/corpora/en/wordnet/include/wn.h b/corpora/en/wordnet/include/wn.h deleted file mode 100644 index d3ffa0895..000000000 --- a/corpora/en/wordnet/include/wn.h +++ /dev/null @@ -1,523 +0,0 @@ -/* - - wn.h - header file needed to use WordNet Run Time Library - - $Id: wn.h,v 1.61 2006/11/14 20:58:30 wn Exp $ - -*/ - -#ifndef _WN_ -#define _WN_ - -#include - -/* Platform specific path and filename specifications */ - -#ifdef _WINDOWS -#define DICTDIR "\\dict" -#ifndef DEFAULTPATH -#define DEFAULTPATH "C:\\Program Files\\WordNet\\3.0\\dict" -#endif -#define DATAFILE "%s\\data.%s" -#define INDEXFILE "%s\\index.%s" -#define SENSEIDXFILE "%s\\index.sense" -#define KEYIDXFILE "%s\\index.key" -#define REVKEYIDXFILE "%s\\index.key.rev" -#define VRBSENTFILE "%s\\sents.vrb" -#define VRBIDXFILE "%s\\sentidx.vrb" -#define CNTLISTFILE "%s\\cntlist.rev" -#else -#define DICTDIR "/dict" -#ifndef DEFAULTPATH -#define DEFAULTPATH "/usr/local/WordNet-3.0/dict" -#endif -#define DATAFILE "%s/data.%s" -#define INDEXFILE "%s/index.%s" -#define SENSEIDXFILE "%s/index.sense" -#define KEYIDXFILE "%s/index.key" -#define REVKEYIDXFILE "%s/index.key.rev" -#define VRBSENTFILE "%s/sents.vrb" -#define VRBIDXFILE "%s/sentidx.vrb" -#define CNTLISTFILE "%s/cntlist.rev" -#endif - -/* Various buffer sizes */ - -#define SEARCHBUF ((long)(200*(long)1024)) -#define LINEBUF (15*1024) /* 15K buffer to read index & data files */ -#define SMLINEBUF (3*1024) /* small buffer for output lines */ -#define WORDBUF (256) /* buffer for one word or collocation */ - -#define ALLSENSES 0 /* pass to findtheinfo() if want all senses */ -#define MAXID 15 /* maximum id number in lexicographer file */ -#define MAXDEPTH 20 /* maximum tree depth - used to find cycles */ -#define MAXSENSE 75 /* maximum number of senses in database */ -#define MAX_FORMS 5 /* max # of different 'forms' word can have */ -#define MAXFNUM 44 /* maximum number of lexicographer files */ - -/* Pointer type and search type counts */ - -/* Pointers */ - -#define ANTPTR 1 /* ! */ -#define HYPERPTR 2 /* @ */ -#define HYPOPTR 3 /* ~ */ -#define ENTAILPTR 4 /* * */ -#define SIMPTR 5 /* & */ - -#define ISMEMBERPTR 6 /* #m */ -#define ISSTUFFPTR 7 /* #s */ -#define ISPARTPTR 8 /* #p */ - -#define HASMEMBERPTR 9 /* %m */ -#define HASSTUFFPTR 10 /* %s */ -#define HASPARTPTR 11 /* %p */ - -#define MERONYM 12 /* % (not valid in lexicographer file) */ -#define HOLONYM 13 /* # (not valid in lexicographer file) */ -#define CAUSETO 14 /* > */ -#define PPLPTR 15 /* < */ -#define SEEALSOPTR 16 /* ^ */ -#define PERTPTR 17 /* \ */ -#define ATTRIBUTE 18 /* = */ -#define VERBGROUP 19 /* $ */ -#define DERIVATION 20 /* + */ -#define CLASSIFICATION 21 /* ; */ -#define CLASS 22 /* - */ - -#define LASTTYPE CLASS - -/* Misc searches */ - -#define SYNS (LASTTYPE + 1) -#define FREQ (LASTTYPE + 2) -#define FRAMES (LASTTYPE + 3) -#define COORDS (LASTTYPE + 4) -#define RELATIVES (LASTTYPE + 5) -#define HMERONYM (LASTTYPE + 6) -#define HHOLONYM (LASTTYPE + 7) -#define WNGREP (LASTTYPE + 8) -#define OVERVIEW (LASTTYPE + 9) - -#define MAXSEARCH OVERVIEW - -#define CLASSIF_START (MAXSEARCH + 1) - -#define CLASSIF_CATEGORY (CLASSIF_START) /* ;c */ -#define CLASSIF_USAGE (CLASSIF_START + 1) /* ;u */ -#define CLASSIF_REGIONAL (CLASSIF_START + 2) /* ;r */ - -#define CLASSIF_END CLASSIF_REGIONAL - -#define CLASS_START (CLASSIF_END + 1) - -#define CLASS_CATEGORY (CLASS_START) /* -c */ -#define CLASS_USAGE (CLASS_START + 1) /* -u */ -#define CLASS_REGIONAL (CLASS_START + 2) /* -r */ - -#define CLASS_END CLASS_REGIONAL - -#define INSTANCE (CLASS_END + 1) /* @i */ -#define INSTANCES (CLASS_END + 2) /* ~i */ - -#define MAXPTR INSTANCES - -/* WordNet part of speech stuff */ - -#define NUMPARTS 4 /* number of parts of speech */ -#define NUMFRAMES 35 /* number of verb frames */ - -/* Generic names for part of speech */ - -#define NOUN 1 -#define VERB 2 -#define ADJ 3 -#define ADV 4 -#define SATELLITE 5 /* not really a part of speech */ -#define ADJSAT SATELLITE - -#define ALL_POS 0 /* passed to in_wn() to check all POS */ - -#define bit(n) ((unsigned int)((unsigned int)1<<((unsigned int)n))) - -/* Adjective markers */ - -#define PADJ 1 /* (p) */ -#define NPADJ 2 /* (a) */ -#define IPADJ 3 /* (ip) */ - -#define UNKNOWN_MARKER 0 -#define ATTRIBUTIVE NPADJ -#define PREDICATIVE PADJ -#define IMMED_POSTNOMINAL IPADJ - -extern char *wnrelease; /* WordNet release/version number */ - -extern char *lexfiles[]; /* names of lexicographer files */ -extern char *ptrtyp[]; /* pointer characters */ -extern char *partnames[]; /* POS strings */ -extern char partchars[]; /* single chars for each POS */ -extern char *adjclass[]; /* adjective class strings */ -extern char *frametext[]; /* text of verb frames */ - -/* Data structures used by search code functions. */ - -/* Structure for index file entry */ -typedef struct { - long idxoffset; /* byte offset of entry in index file */ - char *wd; /* word string */ - char *pos; /* part of speech */ - int sense_cnt; /* sense (collins) count */ - int off_cnt; /* number of offsets */ - int tagged_cnt; /* number senses that are tagged */ - unsigned long *offset; /* offsets of synsets containing word */ - int ptruse_cnt; /* number of pointers used */ - int *ptruse; /* pointers used */ -} Index; - -typedef Index *IndexPtr; - -/* Structure for data file synset */ -typedef struct ss { - long hereiam; /* current file position */ - int sstype; /* type of ADJ synset */ - int fnum; /* file number that synset comes from */ - char *pos; /* part of speech */ - int wcount; /* number of words in synset */ - char **words; /* words in synset */ - int *lexid; /* unique id in lexicographer file */ - int *wnsns; /* sense number in wordnet */ - int whichword; /* which word in synset we're looking for */ - int ptrcount; /* number of pointers */ - int *ptrtyp; /* pointer types */ - long *ptroff; /* pointer offsets */ - int *ppos; /* pointer part of speech */ - int *pto; /* pointer 'to' fields */ - int *pfrm; /* pointer 'from' fields */ - int fcount; /* number of verb frames */ - int *frmid; /* frame numbers */ - int *frmto; /* frame 'to' fields */ - char *defn; /* synset gloss (definition) */ - unsigned int key; /* unique synset key */ - - /* these fields are used if a data structure is returned - instead of a text buffer */ - - struct ss *nextss; /* ptr to next synset containing searchword */ - struct ss *nextform; /* ptr to list of synsets for alternate - spelling of wordform */ - int searchtype; /* type of search performed */ - struct ss *ptrlist; /* ptr to synset list result of search */ - char *headword; /* if pos is "s", this is cluster head word */ - short headsense; /* sense number of headword */ -} Synset; - -typedef Synset *SynsetPtr; - -typedef struct si { - char *sensekey; /* sense key */ - char *word; /* word string */ - long loc; /* synset offset */ - int wnsense; /* WordNet sense number */ - int tag_cnt; /* number of semantic tags to sense */ - struct si *nextsi; /* ptr to next sense index entry */ -} SnsIndex; - -typedef SnsIndex *SnsIndexPtr; - -typedef struct { - int SenseCount[MAX_FORMS]; /* number of senses word form has */ - int OutSenseCount[MAX_FORMS]; /* number of senses printed for word form */ - int numforms; /* number of word forms searchword has */ - int printcnt; /* number of senses printed by search */ - char *searchbuf; /* buffer containing formatted results */ - SynsetPtr searchds; /* data structure containing search results */ -} SearchResults; - -typedef SearchResults *SearchResultsPtr; - -/* Global variables and flags */ - -extern SearchResults wnresults; /* structure containing results of search */ -extern int fnflag; /* if set, print lex filename after sense */ -extern int dflag; /* if set, print definitional glosses */ -extern int saflag; /* if set, print SEE ALSO pointers */ -extern int fileinfoflag; /* if set, print lex file info on synsets */ -extern int frflag; /* if set, print verb frames after synset */ -extern int abortsearch; /* if set, stop search algorithm */ -extern int offsetflag; /* if set, print byte offset of each synset */ -extern int wnsnsflag; /* if set, print WN sense # for each word */ - -/* File pointers for database files */ - -extern int OpenDB; /* if non-zero, database file are open */ -extern FILE *datafps[NUMPARTS + 1], - *indexfps[NUMPARTS + 1], - *sensefp, - *cntlistfp, - *keyindexfp, *revkeyindexfp, - *vidxfilefp, *vsentfilefp; - -/* Method for interface to check for events while search is running */ - -extern void (*interface_doevents_func)(void); - /* callback for interruptable searches in */ - /* single-threaded interfaces */ - -/* General error message handler - can be defined by interface. - Default function provided in library returns -1 */ - -extern int default_display_message(char *); -extern int (*display_message)(char *); - - -/* Make all the functions compatible with c++ files */ -#ifdef __cplusplus -extern "C" { -#endif - -/* External library function prototypes */ - -/*** Search and database functions (search.c) ***/ - -/* Primry search algorithm for use with user interfaces */ -extern char *findtheinfo(char *, int, int, int); - -/* Primary search algorithm for use with programs (returns data structure) */ -extern SynsetPtr findtheinfo_ds(char *, int, int, int); - -/* Set bit for each search type that is valid for the search word - passed and return bit mask. */ -extern unsigned int is_defined(char *, int); - -/* Set bit for each POS that search word is in. 0 returned if - word is not in WordNet. */ -extern unsigned int in_wn(char *, int); - -/* Find word in index file and return parsed entry in data structure. - Input word must be exact match of string in database. */ -extern IndexPtr index_lookup(char *, int); - -/* 'smart' search of index file. Find word in index file, trying different - techniques - replace hyphens with underscores, replace underscores with - hyphens, strip hyphens and underscores, strip periods. */ -extern IndexPtr getindex(char *, int); -extern IndexPtr parse_index(long, int, char *); - -/* Read synset from data file at byte offset passed and return parsed - entry in data structure. */ -extern SynsetPtr read_synset(int, long, char *); - -/* Read synset at current byte offset in file and return parsed entry - in data structure. */ -extern SynsetPtr parse_synset(FILE *, int, char *); - -/* Free a synset linked list allocated by findtheinfo_ds() */ -extern void free_syns(SynsetPtr); - -/* Free a synset */ -extern void free_synset(SynsetPtr); - -/* Free an index structure */ -extern void free_index(IndexPtr); - -/* Recursive search algorithm to trace a pointer tree and return results - in linked list of data structures. */ -SynsetPtr traceptrs_ds(SynsetPtr, int, int, int); - -/* Do requested search on synset passed, returning output in buffer. */ -extern char *do_trace(SynsetPtr, int, int, int); - -/*** Morphology functions (morph.c) ***/ - -/* Open exception list files */ -extern int morphinit(); - -/* Close exception list files and reopen */ -extern int re_morphinit(); - -/* Try to find baseform (lemma) of word or collocation in POS. */ -extern char *morphstr(char *, int); - -/* Try to find baseform (lemma) of individual word in POS. */ -extern char *morphword(char *, int); - -/*** Utility functions (wnutil.c) ***/ - -/* Top level function to open database files, initialize wn_filenames, - and open exeception lists. */ -extern int wninit(); - -/* Top level function to close and reopen database files, initialize - wn_filenames and open exception lists. */ -extern int re_wninit(); - -/* Count the number of underscore or space separated words in a string. */ -extern int cntwords(char *, char); - -/* Convert string to lower case remove trailing adjective marker if found */ -extern char *strtolower(char *); - -/* Convert string passed to lower case */ -extern char *ToLowerCase(char *); - -/* Replace all occurrences of 'from' with 'to' in 'str' */ -extern char *strsubst(char *, char, char); - -/* Return pointer code for pointer type characer passed. */ -extern int getptrtype(char *); - -/* Return part of speech code for string passed */ -extern int getpos(char *); - -/* Return synset type code for string passed. */ -extern int getsstype(char *); - -/* Reconstruct synset from synset pointer and return ptr to buffer */ -extern char *FmtSynset(SynsetPtr, int); - -/* Find string for 'searchstr' as it is in index file */ -extern char *GetWNStr(char *, int); - -/* Pass in string for POS, return corresponding integer value */ -extern int StrToPos(char *); - -/* Return synset for sense key passed. */ -extern SynsetPtr GetSynsetForSense(char *); - -/* Find offset of sense key in data file */ -extern long GetDataOffset(char *); - -/* Find polysemy (collins) count for sense key passed. */ -extern int GetPolyCount(char *); - -/* Return word part of sense key */ -extern char *GetWORD(char *); - -/* Return POS code for sense key passed. */ -extern int GetPOS(char *); - -/* Convert WordNet sense number passed of IndexPtr entry to sense key. */ -extern char *WNSnsToStr(IndexPtr, int); - -/* Search for string and/or baseform of word in database and return - index structure for word if found in database. */ -extern IndexPtr GetValidIndexPointer(char *, int); - -/* Return sense number in database for word and lexsn passed. */ -int GetWNSense(char *, char *); - -SnsIndexPtr GetSenseIndex(char *); - -char *GetOffsetForKey(unsigned int); -unsigned int GetKeyForOffset(char *); - -char *SetSearchdir(); - -/* Return number of times sense is tagged */ -int GetTagcnt(IndexPtr, int); - -/* -** Wrapper functions for strstr that allow you to retrieve each -** occurance of a word within a longer string, not just the first. -** -** strstr_init is called with the same arguments as normal strstr, -** but does not return any value. -** -** strstr_getnext returns the position offset (not a pointer, as does -** normal strstr) of the next occurance, or -1 if none remain. -*/ -extern void strstr_init (char *, char *); -extern int strstr_getnext (void); - -/*** Binary search functions (binsearch.c) ***/ - -/* General purpose binary search function to search for key as first - item on line in open file. Item is delimited by space. */ -extern char *bin_search(char *, FILE *); -extern char *read_index(long, FILE *); - -/* Copy contents from one file to another. */ -extern void copyfile(FILE *, FILE *); - -/* Function to replace a line in a file. Returns the original line, - or NULL in case of error. */ -extern char *replace_line(char *, char *, FILE *); - -/* Find location to insert line at in file. If line with this - key is already in file, return NULL. */ -extern char *insert_line(char *, char *, FILE *); - -#ifdef __cplusplus -} -#endif - -extern char **helptext[NUMPARTS + 1]; - -static char *license = "\ -This software and database is being provided to you, the LICENSEE, by \n\ -Princeton University under the following license. By obtaining, using \n\ -and/or copying this software and database, you agree that you have \n\ -read, understood, and will comply with these terms and conditions.: \n\ - \n\ -Permission to use, copy, modify and distribute this software and \n\ -database and its documentation for any purpose and without fee or \n\ -royalty is hereby granted, provided that you agree to comply with \n\ -the following copyright notice and statements, including the disclaimer, \n\ -and that the same appear on ALL copies of the software, database and \n\ -documentation, including modifications that you make for internal \n\ -use or for distribution. \n\ - \n\ -WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. \n\ - \n\ -THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON \n\ -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \n\ -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON \n\ -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- \n\ -ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \n\ -OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \n\ -INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR \n\ -OTHER RIGHTS. \n\ - \n\ -The name of Princeton University or Princeton may not be used in \n\ -advertising or publicity pertaining to distribution of the software \n\ -and/or database. Title to copyright in this software, database and \n\ -any associated documentation shall at all times remain with \n\ -Princeton University and LICENSEE agrees to preserve same. \n" -; - -static char dblicense[] = "\ - 1 This software and database is being provided to you, the LICENSEE, by \n\ - 2 Princeton University under the following license. By obtaining, using \n\ - 3 and/or copying this software and database, you agree that you have \n\ - 4 read, understood, and will comply with these terms and conditions.: \n\ - 5 \n\ - 6 Permission to use, copy, modify and distribute this software and \n\ - 7 database and its documentation for any purpose and without fee or \n\ - 8 royalty is hereby granted, provided that you agree to comply with \n\ - 9 the following copyright notice and statements, including the disclaimer, \n\ - 10 and that the same appear on ALL copies of the software, database and \n\ - 11 documentation, including modifications that you make for internal \n\ - 12 use or for distribution. \n\ - 13 \n\ - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. \n\ - 15 \n\ - 16 THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON \n\ - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \n\ - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON \n\ - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- \n\ - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \n\ - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \n\ - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR \n\ - 23 OTHER RIGHTS. \n\ - 24 \n\ - 25 The name of Princeton University or Princeton may not be used in \n\ - 26 advertising or publicity pertaining to distribution of the software \n\ - 27 and/or database. Title to copyright in this software, database and \n\ - 28 any associated documentation shall at all times remain with \n\ - 29 Princeton University and LICENSEE agrees to preserve same. \n" -; - -#define DBLICENSE_SIZE (sizeof(dblicense)) - -#endif /*_WN_*/ diff --git a/corpora/en/wordnet/include/wn.h~ b/corpora/en/wordnet/include/wn.h~ deleted file mode 100644 index da92b68ee..000000000 --- a/corpora/en/wordnet/include/wn.h~ +++ /dev/null @@ -1,519 +0,0 @@ -/* - - wn.h - header file needed to use WordNet Run Time Library - - $Id: wn.h,v 1.61 2006/11/14 20:58:30 wn Exp $ - -*/ - -#ifndef _WN_ -#define _WN_ - -#include - -/* Platform specific path and filename specifications */ - -#ifdef _WINDOWS -#define DICTDIR "\\dict" -#define DEFAULTPATH "C:\\Program Files\\WordNet\\3.0\\dict" -#define DATAFILE "%s\\data.%s" -#define INDEXFILE "%s\\index.%s" -#define SENSEIDXFILE "%s\\index.sense" -#define KEYIDXFILE "%s\\index.key" -#define REVKEYIDXFILE "%s\\index.key.rev" -#define VRBSENTFILE "%s\\sents.vrb" -#define VRBIDXFILE "%s\\sentidx.vrb" -#define CNTLISTFILE "%s\\cntlist.rev" -#else -#define DICTDIR "/dict" -#define DEFAULTPATH "/usr/local/WordNet-3.0/dict" -#define DATAFILE "%s/data.%s" -#define INDEXFILE "%s/index.%s" -#define SENSEIDXFILE "%s/index.sense" -#define KEYIDXFILE "%s/index.key" -#define REVKEYIDXFILE "%s/index.key.rev" -#define VRBSENTFILE "%s/sents.vrb" -#define VRBIDXFILE "%s/sentidx.vrb" -#define CNTLISTFILE "%s/cntlist.rev" -#endif - -/* Various buffer sizes */ - -#define SEARCHBUF ((long)(200*(long)1024)) -#define LINEBUF (15*1024) /* 15K buffer to read index & data files */ -#define SMLINEBUF (3*1024) /* small buffer for output lines */ -#define WORDBUF (256) /* buffer for one word or collocation */ - -#define ALLSENSES 0 /* pass to findtheinfo() if want all senses */ -#define MAXID 15 /* maximum id number in lexicographer file */ -#define MAXDEPTH 20 /* maximum tree depth - used to find cycles */ -#define MAXSENSE 75 /* maximum number of senses in database */ -#define MAX_FORMS 5 /* max # of different 'forms' word can have */ -#define MAXFNUM 44 /* maximum number of lexicographer files */ - -/* Pointer type and search type counts */ - -/* Pointers */ - -#define ANTPTR 1 /* ! */ -#define HYPERPTR 2 /* @ */ -#define HYPOPTR 3 /* ~ */ -#define ENTAILPTR 4 /* * */ -#define SIMPTR 5 /* & */ - -#define ISMEMBERPTR 6 /* #m */ -#define ISSTUFFPTR 7 /* #s */ -#define ISPARTPTR 8 /* #p */ - -#define HASMEMBERPTR 9 /* %m */ -#define HASSTUFFPTR 10 /* %s */ -#define HASPARTPTR 11 /* %p */ - -#define MERONYM 12 /* % (not valid in lexicographer file) */ -#define HOLONYM 13 /* # (not valid in lexicographer file) */ -#define CAUSETO 14 /* > */ -#define PPLPTR 15 /* < */ -#define SEEALSOPTR 16 /* ^ */ -#define PERTPTR 17 /* \ */ -#define ATTRIBUTE 18 /* = */ -#define VERBGROUP 19 /* $ */ -#define DERIVATION 20 /* + */ -#define CLASSIFICATION 21 /* ; */ -#define CLASS 22 /* - */ - -#define LASTTYPE CLASS - -/* Misc searches */ - -#define SYNS (LASTTYPE + 1) -#define FREQ (LASTTYPE + 2) -#define FRAMES (LASTTYPE + 3) -#define COORDS (LASTTYPE + 4) -#define RELATIVES (LASTTYPE + 5) -#define HMERONYM (LASTTYPE + 6) -#define HHOLONYM (LASTTYPE + 7) -#define WNGREP (LASTTYPE + 8) -#define OVERVIEW (LASTTYPE + 9) - -#define MAXSEARCH OVERVIEW - -#define CLASSIF_START (MAXSEARCH + 1) - -#define CLASSIF_CATEGORY (CLASSIF_START) /* ;c */ -#define CLASSIF_USAGE (CLASSIF_START + 1) /* ;u */ -#define CLASSIF_REGIONAL (CLASSIF_START + 2) /* ;r */ - -#define CLASSIF_END CLASSIF_REGIONAL - -#define CLASS_START (CLASSIF_END + 1) - -#define CLASS_CATEGORY (CLASS_START) /* -c */ -#define CLASS_USAGE (CLASS_START + 1) /* -u */ -#define CLASS_REGIONAL (CLASS_START + 2) /* -r */ - -#define CLASS_END CLASS_REGIONAL - -#define INSTANCE (CLASS_END + 1) /* @i */ -#define INSTANCES (CLASS_END + 2) /* ~i */ - -#define MAXPTR INSTANCES - -/* WordNet part of speech stuff */ - -#define NUMPARTS 4 /* number of parts of speech */ -#define NUMFRAMES 35 /* number of verb frames */ - -/* Generic names for part of speech */ - -#define NOUN 1 -#define VERB 2 -#define ADJ 3 -#define ADV 4 -#define SATELLITE 5 /* not really a part of speech */ -#define ADJSAT SATELLITE - -#define ALL_POS 0 /* passed to in_wn() to check all POS */ - -#define bit(n) ((unsigned int)((unsigned int)1<<((unsigned int)n))) - -/* Adjective markers */ - -#define PADJ 1 /* (p) */ -#define NPADJ 2 /* (a) */ -#define IPADJ 3 /* (ip) */ - -#define UNKNOWN_MARKER 0 -#define ATTRIBUTIVE NPADJ -#define PREDICATIVE PADJ -#define IMMED_POSTNOMINAL IPADJ - -extern char *wnrelease; /* WordNet release/version number */ - -extern char *lexfiles[]; /* names of lexicographer files */ -extern char *ptrtyp[]; /* pointer characters */ -extern char *partnames[]; /* POS strings */ -extern char partchars[]; /* single chars for each POS */ -extern char *adjclass[]; /* adjective class strings */ -extern char *frametext[]; /* text of verb frames */ - -/* Data structures used by search code functions. */ - -/* Structure for index file entry */ -typedef struct { - long idxoffset; /* byte offset of entry in index file */ - char *wd; /* word string */ - char *pos; /* part of speech */ - int sense_cnt; /* sense (collins) count */ - int off_cnt; /* number of offsets */ - int tagged_cnt; /* number senses that are tagged */ - unsigned long *offset; /* offsets of synsets containing word */ - int ptruse_cnt; /* number of pointers used */ - int *ptruse; /* pointers used */ -} Index; - -typedef Index *IndexPtr; - -/* Structure for data file synset */ -typedef struct ss { - long hereiam; /* current file position */ - int sstype; /* type of ADJ synset */ - int fnum; /* file number that synset comes from */ - char *pos; /* part of speech */ - int wcount; /* number of words in synset */ - char **words; /* words in synset */ - int *lexid; /* unique id in lexicographer file */ - int *wnsns; /* sense number in wordnet */ - int whichword; /* which word in synset we're looking for */ - int ptrcount; /* number of pointers */ - int *ptrtyp; /* pointer types */ - long *ptroff; /* pointer offsets */ - int *ppos; /* pointer part of speech */ - int *pto; /* pointer 'to' fields */ - int *pfrm; /* pointer 'from' fields */ - int fcount; /* number of verb frames */ - int *frmid; /* frame numbers */ - int *frmto; /* frame 'to' fields */ - char *defn; /* synset gloss (definition) */ - unsigned int key; /* unique synset key */ - - /* these fields are used if a data structure is returned - instead of a text buffer */ - - struct ss *nextss; /* ptr to next synset containing searchword */ - struct ss *nextform; /* ptr to list of synsets for alternate - spelling of wordform */ - int searchtype; /* type of search performed */ - struct ss *ptrlist; /* ptr to synset list result of search */ - char *headword; /* if pos is "s", this is cluster head word */ - short headsense; /* sense number of headword */ -} Synset; - -typedef Synset *SynsetPtr; - -typedef struct si { - char *sensekey; /* sense key */ - char *word; /* word string */ - long loc; /* synset offset */ - int wnsense; /* WordNet sense number */ - int tag_cnt; /* number of semantic tags to sense */ - struct si *nextsi; /* ptr to next sense index entry */ -} SnsIndex; - -typedef SnsIndex *SnsIndexPtr; - -typedef struct { - int SenseCount[MAX_FORMS]; /* number of senses word form has */ - int OutSenseCount[MAX_FORMS]; /* number of senses printed for word form */ - int numforms; /* number of word forms searchword has */ - int printcnt; /* number of senses printed by search */ - char *searchbuf; /* buffer containing formatted results */ - SynsetPtr searchds; /* data structure containing search results */ -} SearchResults; - -typedef SearchResults *SearchResultsPtr; - -/* Global variables and flags */ - -extern SearchResults wnresults; /* structure containing results of search */ -extern int fnflag; /* if set, print lex filename after sense */ -extern int dflag; /* if set, print definitional glosses */ -extern int saflag; /* if set, print SEE ALSO pointers */ -extern int fileinfoflag; /* if set, print lex file info on synsets */ -extern int frflag; /* if set, print verb frames after synset */ -extern int abortsearch; /* if set, stop search algorithm */ -extern int offsetflag; /* if set, print byte offset of each synset */ -extern int wnsnsflag; /* if set, print WN sense # for each word */ - -/* File pointers for database files */ - -extern int OpenDB; /* if non-zero, database file are open */ -extern FILE *datafps[NUMPARTS + 1], - *indexfps[NUMPARTS + 1], - *sensefp, - *cntlistfp, - *keyindexfp, *revkeyindexfp, - *vidxfilefp, *vsentfilefp; - -/* Method for interface to check for events while search is running */ - -extern void (*interface_doevents_func)(void); - /* callback for interruptable searches in */ - /* single-threaded interfaces */ - -/* General error message handler - can be defined by interface. - Default function provided in library returns -1 */ - -extern int default_display_message(char *); -extern int (*display_message)(char *); - - -/* Make all the functions compatible with c++ files */ -#ifdef __cplusplus -extern "C" { -#endif - -/* External library function prototypes */ - -/*** Search and database functions (search.c) ***/ - -/* Primry search algorithm for use with user interfaces */ -extern char *findtheinfo(char *, int, int, int); - -/* Primary search algorithm for use with programs (returns data structure) */ -extern SynsetPtr findtheinfo_ds(char *, int, int, int); - -/* Set bit for each search type that is valid for the search word - passed and return bit mask. */ -extern unsigned int is_defined(char *, int); - -/* Set bit for each POS that search word is in. 0 returned if - word is not in WordNet. */ -extern unsigned int in_wn(char *, int); - -/* Find word in index file and return parsed entry in data structure. - Input word must be exact match of string in database. */ -extern IndexPtr index_lookup(char *, int); - -/* 'smart' search of index file. Find word in index file, trying different - techniques - replace hyphens with underscores, replace underscores with - hyphens, strip hyphens and underscores, strip periods. */ -extern IndexPtr getindex(char *, int); -extern IndexPtr parse_index(long, int, char *); - -/* Read synset from data file at byte offset passed and return parsed - entry in data structure. */ -extern SynsetPtr read_synset(int, long, char *); - -/* Read synset at current byte offset in file and return parsed entry - in data structure. */ -extern SynsetPtr parse_synset(FILE *, int, char *); - -/* Free a synset linked list allocated by findtheinfo_ds() */ -extern void free_syns(SynsetPtr); - -/* Free a synset */ -extern void free_synset(SynsetPtr); - -/* Free an index structure */ -extern void free_index(IndexPtr); - -/* Recursive search algorithm to trace a pointer tree and return results - in linked list of data structures. */ -SynsetPtr traceptrs_ds(SynsetPtr, int, int, int); - -/* Do requested search on synset passed, returning output in buffer. */ -extern char *do_trace(SynsetPtr, int, int, int); - -/*** Morphology functions (morph.c) ***/ - -/* Open exception list files */ -extern int morphinit(); - -/* Close exception list files and reopen */ -extern int re_morphinit(); - -/* Try to find baseform (lemma) of word or collocation in POS. */ -extern char *morphstr(char *, int); - -/* Try to find baseform (lemma) of individual word in POS. */ -extern char *morphword(char *, int); - -/*** Utility functions (wnutil.c) ***/ - -/* Top level function to open database files, initialize wn_filenames, - and open exeception lists. */ -extern int wninit(); - -/* Top level function to close and reopen database files, initialize - wn_filenames and open exception lists. */ -extern int re_wninit(); - -/* Count the number of underscore or space separated words in a string. */ -extern int cntwords(char *, char); - -/* Convert string to lower case remove trailing adjective marker if found */ -extern char *strtolower(char *); - -/* Convert string passed to lower case */ -extern char *ToLowerCase(char *); - -/* Replace all occurrences of 'from' with 'to' in 'str' */ -extern char *strsubst(char *, char, char); - -/* Return pointer code for pointer type characer passed. */ -extern int getptrtype(char *); - -/* Return part of speech code for string passed */ -extern int getpos(char *); - -/* Return synset type code for string passed. */ -extern int getsstype(char *); - -/* Reconstruct synset from synset pointer and return ptr to buffer */ -extern char *FmtSynset(SynsetPtr, int); - -/* Find string for 'searchstr' as it is in index file */ -extern char *GetWNStr(char *, int); - -/* Pass in string for POS, return corresponding integer value */ -extern int StrToPos(char *); - -/* Return synset for sense key passed. */ -extern SynsetPtr GetSynsetForSense(char *); - -/* Find offset of sense key in data file */ -extern long GetDataOffset(char *); - -/* Find polysemy (collins) count for sense key passed. */ -extern int GetPolyCount(char *); - -/* Return word part of sense key */ -extern char *GetWORD(char *); - -/* Return POS code for sense key passed. */ -extern int GetPOS(char *); - -/* Convert WordNet sense number passed of IndexPtr entry to sense key. */ -extern char *WNSnsToStr(IndexPtr, int); - -/* Search for string and/or baseform of word in database and return - index structure for word if found in database. */ -extern IndexPtr GetValidIndexPointer(char *, int); - -/* Return sense number in database for word and lexsn passed. */ -int GetWNSense(char *, char *); - -SnsIndexPtr GetSenseIndex(char *); - -char *GetOffsetForKey(unsigned int); -unsigned int GetKeyForOffset(char *); - -char *SetSearchdir(); - -/* Return number of times sense is tagged */ -int GetTagcnt(IndexPtr, int); - -/* -** Wrapper functions for strstr that allow you to retrieve each -** occurance of a word within a longer string, not just the first. -** -** strstr_init is called with the same arguments as normal strstr, -** but does not return any value. -** -** strstr_getnext returns the position offset (not a pointer, as does -** normal strstr) of the next occurance, or -1 if none remain. -*/ -extern void strstr_init (char *, char *); -extern int strstr_getnext (void); - -/*** Binary search functions (binsearch.c) ***/ - -/* General purpose binary search function to search for key as first - item on line in open file. Item is delimited by space. */ -extern char *bin_search(char *, FILE *); -extern char *read_index(long, FILE *); - -/* Copy contents from one file to another. */ -extern void copyfile(FILE *, FILE *); - -/* Function to replace a line in a file. Returns the original line, - or NULL in case of error. */ -extern char *replace_line(char *, char *, FILE *); - -/* Find location to insert line at in file. If line with this - key is already in file, return NULL. */ -extern char *insert_line(char *, char *, FILE *); - -#ifdef __cplusplus -} -#endif - -extern char **helptext[NUMPARTS + 1]; - -static char *license = "\ -This software and database is being provided to you, the LICENSEE, by \n\ -Princeton University under the following license. By obtaining, using \n\ -and/or copying this software and database, you agree that you have \n\ -read, understood, and will comply with these terms and conditions.: \n\ - \n\ -Permission to use, copy, modify and distribute this software and \n\ -database and its documentation for any purpose and without fee or \n\ -royalty is hereby granted, provided that you agree to comply with \n\ -the following copyright notice and statements, including the disclaimer, \n\ -and that the same appear on ALL copies of the software, database and \n\ -documentation, including modifications that you make for internal \n\ -use or for distribution. \n\ - \n\ -WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. \n\ - \n\ -THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON \n\ -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \n\ -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON \n\ -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- \n\ -ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \n\ -OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \n\ -INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR \n\ -OTHER RIGHTS. \n\ - \n\ -The name of Princeton University or Princeton may not be used in \n\ -advertising or publicity pertaining to distribution of the software \n\ -and/or database. Title to copyright in this software, database and \n\ -any associated documentation shall at all times remain with \n\ -Princeton University and LICENSEE agrees to preserve same. \n" -; - -static char dblicense[] = "\ - 1 This software and database is being provided to you, the LICENSEE, by \n\ - 2 Princeton University under the following license. By obtaining, using \n\ - 3 and/or copying this software and database, you agree that you have \n\ - 4 read, understood, and will comply with these terms and conditions.: \n\ - 5 \n\ - 6 Permission to use, copy, modify and distribute this software and \n\ - 7 database and its documentation for any purpose and without fee or \n\ - 8 royalty is hereby granted, provided that you agree to comply with \n\ - 9 the following copyright notice and statements, including the disclaimer, \n\ - 10 and that the same appear on ALL copies of the software, database and \n\ - 11 documentation, including modifications that you make for internal \n\ - 12 use or for distribution. \n\ - 13 \n\ - 14 WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. \n\ - 15 \n\ - 16 THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON \n\ - 17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR \n\ - 18 IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON \n\ - 19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- \n\ - 20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE \n\ - 21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT \n\ - 22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR \n\ - 23 OTHER RIGHTS. \n\ - 24 \n\ - 25 The name of Princeton University or Princeton may not be used in \n\ - 26 advertising or publicity pertaining to distribution of the software \n\ - 27 and/or database. Title to copyright in this software, database and \n\ - 28 any associated documentation shall at all times remain with \n\ - 29 Princeton University and LICENSEE agrees to preserve same. \n" -; - -#define DBLICENSE_SIZE (sizeof(dblicense)) - -#endif /*_WN_*/ diff --git a/corpora/en/wordnet/include/wngrind.h b/corpora/en/wordnet/include/wngrind.h deleted file mode 100644 index 7c4c0a8d2..000000000 --- a/corpora/en/wordnet/include/wngrind.h +++ /dev/null @@ -1,175 +0,0 @@ -/* - - grind.h - grinder include file - -*/ - -/* $Id: wngrind.h,v 1.1 2005/02/01 17:58:21 wn Rel $ */ - -#ifndef _GRIND_ - -#include "wn.h" - -#ifndef NULL -#define NULL 0 -#endif - -#define FALSE 0 -#define TRUE 1 - -/* Bit positions for legalptrs[] */ - -#define P_NOUN 1 -#define P_VERB 2 -#define P_ADJ 4 -#define P_ADV 8 - -/* Pointer status values */ - -#define UNRESOLVED 0 -#define RESOLVED 1 -#define DUPLICATE 2 -#define SELF_REF 3 - -#define ALLWORDS (short)0 -#define NOSENSE (unsigned char)0xff - -#ifdef FOOP -#define HASHSIZE 100003 /* some large prime # */ -#endif -#define HASHSIZE 500009 /* some large prime # */ -#define ptrkind(p) arraypos(ptrsymbols, p) - -/* Structure for representing a synset */ - -typedef struct synset { - struct synset *ssnext; /* next synset */ - struct synset *fans; /* if adjective cluster head, list of fans - if fan, pointer to cluster head */ - struct synonym *syns; /* list of synonyms in synset */ - struct pointer *ptrs; /* list of pointers from this synset */ - struct framelist *frames; /* for verbs - list of framelists */ - char *defn; /* textual gloss (optional) */ - unsigned int key; /* unique synset key */ - unsigned char part; /* part of speech */ - unsigned char isfanss; /* TRUE - synset is fan synset */ - unsigned char filenum; /* file number (from cmdline) synset is in */ - int clusnum; /* cluster # if synset is part of cluster */ - int lineno; /* line number in file of synset */ - long filepos; /* byte offset of synset in output file */ -} G_Ss, *G_Synset; /* Grinder Synset */ - -/* A pointer from one synset to another */ - -typedef struct pointer { - struct pointer *pnext; /* next pointer from synset */ - struct symbol *pword; /* word used to identify target synset */ - struct symbol *pslite; /* label of satellite pointed to (optional) */ - struct synset *psynset; /* target synset */ - unsigned char pfilenum; /* file containing target synset */ - unsigned char psensenum; /* sense number of word */ - unsigned char pslite_sense; /* sense number of satellite (optional) */ - unsigned char phead; /* TRUE - pointer is to cluster head word */ - unsigned char ptype; /* pointer type */ - unsigned char status; /* status of pointer */ - short fromwdnum; /* word number in this synset ptr is from */ - short towdnum; /* word number in target synset ptr is to */ -} Ptr, *Pointer; - -/* Verb frame list */ - -typedef struct framelist { - struct framelist *fnext; /* next framelist */ - unsigned long frames[(NUMFRAMES/32) + 1]; /* bits for verb frames */ - unsigned char frwdnum; /* word number that frame list is for */ -} Fr, *Framelist; - -/* A word in a synset */ - -typedef struct synonym { - struct synonym *synnext; /* next word in synset */ - struct synset *ss; /* synset this synonym is in */ - struct symbol *word; /* symbol table entry for word string */ - short sswdnum; /* word number in synset ( <0, headword ) */ - short tagcnt; /* num times sense is tagged in concordance */ - unsigned char wnsensenum; /* sense number in wn database */ - unsigned char sensenum; /* sense number in lexicographer's file */ - unsigned char adjclass; /* adjective class of word */ - unsigned char infanss; /* TRUE - synonym is in fan synset */ - /* FALSE - synonym is not in fan */ - char *label; /* only used if string is not lowercase - if lowercase, use word->label */ -} Syn, *Synonym; - -/* Structure for storing word strings */ - -typedef struct symbol { - struct symbol *symnext; /* next symbol in this slot */ - struct synlist *syns; /* uses of this word as a synonym */ - unsigned char sensecnt[NUMPARTS + 1]; /* senses for all parts of speech */ - char *label; /* word */ -} Sym, *Symbol; - -/* List of use of this word as a synonym */ - -typedef struct synlist { - struct synlist *snext; /* next item on synonym list */ - struct synonym *psyn; /* pointer to synonym structure */ -} Synl, *SynList; - -typedef struct flist { - char *fname; /* file name */ - int present; /* file entered on command line? */ -} Flist; - -extern Flist filelist[]; -extern int yylineno; -extern G_Synset headss; -extern int pcount; -extern int errcount; -extern int verifyflag; -extern int nowarn; -extern int ordersenses; -extern int synsetkeys; -extern char *ptrsymbols[]; -extern char *legalptrs; -extern char *legalptrsets[]; -extern char *ptrreflects[]; -extern char **Argv; -extern int Argc; -extern FILE *logfile; -extern char partprefix[]; -extern char partseen[]; -extern char *adjclass[]; -extern Symbol hashtab[]; - -/* External functions */ - -extern int arraypos(char **, char *); -extern int filenum(char *); -extern char *strclone(char *); -extern char *strupper(char *); -extern char *strlower(char *); -extern char *PrintFileName(int); -extern char *PrintPointer(Pointer); -extern char *PrintSynonym(Synonym); -extern char *NextFile(); -extern int filemode(); -extern G_Synset CreateSynset(unsigned char, Synonym, Pointer, - Framelist, char *, unsigned int, int, unsigned char); -extern Pointer CreatePointer(Symbol, Symbol, unsigned char, - unsigned char, unsigned char, unsigned char, - short, short); -extern Synonym CreateSynonym(Symbol, unsigned char, short, - unsigned char, char *); -extern Framelist CreateFramelist(int); -extern Symbol CreateSymbol(char *); -extern Symbol FindSymbol(char *); -extern void ResolvePointers(); -extern void FindOffsets(); -extern void DumpData(); -extern void DumpIndex(); -extern void DumpSenseIndex(); -extern void ReadCntlist(); - -#endif /* _GRIND_ */ diff --git a/corpora/en/wordnet/install-sh b/corpora/en/wordnet/install-sh deleted file mode 100755 index b777f1244..000000000 --- a/corpora/en/wordnet/install-sh +++ /dev/null @@ -1,322 +0,0 @@ -#!/bin/sh -# install - install a program, script, or datafile - -scriptversion=2004-07-05.00 - -# This originates from X11R5 (mit/util/scripts/install.sh), which was -# later released in X11R6 (xc/config/util/install.sh) with the -# following copyright and license. -# -# Copyright (C) 1994 X Consortium -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to -# deal in the Software without restriction, including without limitation the -# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or -# sell copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN -# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- -# TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the X Consortium shall not -# be used in advertising or otherwise to promote the sale, use or other deal- -# ings in this Software without prior written authorization from the X Consor- -# tium. -# -# -# FSF changes to this file are in the public domain. -# -# Calling this script install-sh is preferred over install.sh, to prevent -# `make' implicit rules from creating a file called install from it -# when there is no Makefile. -# -# This script is compatible with the BSD install script, but was written -# from scratch. It can only install one file at a time, a restriction -# shared with many OS's install programs. - -# set DOITPROG to echo to test this script - -# Don't use :- since 4.3BSD and earlier shells don't like it. -doit="${DOITPROG-}" - -# put in absolute paths if you don't have them in your path; or use env. vars. - -mvprog="${MVPROG-mv}" -cpprog="${CPPROG-cp}" -chmodprog="${CHMODPROG-chmod}" -chownprog="${CHOWNPROG-chown}" -chgrpprog="${CHGRPPROG-chgrp}" -stripprog="${STRIPPROG-strip}" -rmprog="${RMPROG-rm}" -mkdirprog="${MKDIRPROG-mkdir}" - -chmodcmd="$chmodprog 0755" -chowncmd= -chgrpcmd= -stripcmd= -rmcmd="$rmprog -f" -mvcmd="$mvprog" -src= -dst= -dir_arg= -dstarg= -no_target_directory= - -usage="Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE - or: $0 [OPTION]... SRCFILES... DIRECTORY - or: $0 [OPTION]... -t DIRECTORY SRCFILES... - or: $0 [OPTION]... -d DIRECTORIES... - -In the 1st form, copy SRCFILE to DSTFILE. -In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. -In the 4th, create DIRECTORIES. - -Options: --c (ignored) --d create directories instead of installing files. --g GROUP $chgrpprog installed files to GROUP. --m MODE $chmodprog installed files to MODE. --o USER $chownprog installed files to USER. --s $stripprog installed files. --t DIRECTORY install into DIRECTORY. --T report an error if DSTFILE is a directory. ---help display this help and exit. ---version display version info and exit. - -Environment variables override the default commands: - CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG -" - -while test -n "$1"; do - case $1 in - -c) shift - continue;; - - -d) dir_arg=true - shift - continue;; - - -g) chgrpcmd="$chgrpprog $2" - shift - shift - continue;; - - --help) echo "$usage"; exit 0;; - - -m) chmodcmd="$chmodprog $2" - shift - shift - continue;; - - -o) chowncmd="$chownprog $2" - shift - shift - continue;; - - -s) stripcmd=$stripprog - shift - continue;; - - -t) dstarg=$2 - shift - shift - continue;; - - -T) no_target_directory=true - shift - continue;; - - --version) echo "$0 $scriptversion"; exit 0;; - - *) # When -d is used, all remaining arguments are directories to create. - # When -t is used, the destination is already specified. - test -n "$dir_arg$dstarg" && break - # Otherwise, the last argument is the destination. Remove it from $@. - for arg - do - if test -n "$dstarg"; then - # $@ is not empty: it contains at least $arg. - set fnord "$@" "$dstarg" - shift # fnord - fi - shift # arg - dstarg=$arg - done - break;; - esac -done - -if test -z "$1"; then - if test -z "$dir_arg"; then - echo "$0: no input file specified." >&2 - exit 1 - fi - # It's OK to call `install-sh -d' without argument. - # This can happen when creating conditional directories. - exit 0 -fi - -for src -do - # Protect names starting with `-'. - case $src in - -*) src=./$src ;; - esac - - if test -n "$dir_arg"; then - dst=$src - src= - - if test -d "$dst"; then - mkdircmd=: - chmodcmd= - else - mkdircmd=$mkdirprog - fi - else - # Waiting for this to be detected by the "$cpprog $src $dsttmp" command - # might cause directories to be created, which would be especially bad - # if $src (and thus $dsttmp) contains '*'. - if test ! -f "$src" && test ! -d "$src"; then - echo "$0: $src does not exist." >&2 - exit 1 - fi - - if test -z "$dstarg"; then - echo "$0: no destination specified." >&2 - exit 1 - fi - - dst=$dstarg - # Protect names starting with `-'. - case $dst in - -*) dst=./$dst ;; - esac - - # If destination is a directory, append the input filename; won't work - # if double slashes aren't ignored. - if test -d "$dst"; then - if test -n "$no_target_directory"; then - echo "$0: $dstarg: Is a directory" >&2 - exit 1 - fi - dst=$dst/`basename "$src"` - fi - fi - - # This sed command emulates the dirname command. - dstdir=`echo "$dst" | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'` - - # Make sure that the destination directory exists. - - # Skip lots of stat calls in the usual case. - if test ! -d "$dstdir"; then - defaultIFS=' - ' - IFS="${IFS-$defaultIFS}" - - oIFS=$IFS - # Some sh's can't handle IFS=/ for some reason. - IFS='%' - set - `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` - IFS=$oIFS - - pathcomp= - - while test $# -ne 0 ; do - pathcomp=$pathcomp$1 - shift - if test ! -d "$pathcomp"; then - $mkdirprog "$pathcomp" - # mkdir can fail with a `File exist' error in case several - # install-sh are creating the directory concurrently. This - # is OK. - test -d "$pathcomp" || exit - fi - pathcomp=$pathcomp/ - done - fi - - if test -n "$dir_arg"; then - $doit $mkdircmd "$dst" \ - && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ - && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ - && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ - && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } - - else - dstfile=`basename "$dst"` - - # Make a couple of temp file names in the proper directory. - dsttmp=$dstdir/_inst.$$_ - rmtmp=$dstdir/_rm.$$_ - - # Trap to clean up those temp files at exit. - trap 'status=$?; rm -f "$dsttmp" "$rmtmp" && exit $status' 0 - trap '(exit $?); exit' 1 2 13 15 - - # Copy the file name to the temp name. - $doit $cpprog "$src" "$dsttmp" && - - # and set any options; do chmod last to preserve setuid bits. - # - # If any of these fail, we abort the whole thing. If we want to - # ignore errors from any of these, just make sure not to ignore - # errors from the above "$doit $cpprog $src $dsttmp" command. - # - { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ - && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ - && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ - && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && - - # Now rename the file to the real destination. - { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ - || { - # The rename failed, perhaps because mv can't rename something else - # to itself, or perhaps because mv is so ancient that it does not - # support -f. - - # Now remove or move aside any old file at destination location. - # We try this two ways since rm can't unlink itself on some - # systems and the destination file might be busy for other - # reasons. In this case, the final cleanup might fail but the new - # file should still install successfully. - { - if test -f "$dstdir/$dstfile"; then - $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ - || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ - || { - echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 - (exit 1); exit - } - else - : - fi - } && - - # Now rename the file to the real destination. - $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" - } - } - fi || { (exit 1); exit; } -done - -# The final little trick to "correctly" pass the exit status to the exit trap. -{ - (exit 0); exit -} - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/corpora/en/wordnet/lib/Makefile.am b/corpora/en/wordnet/lib/Makefile.am deleted file mode 100644 index 8a6717507..000000000 --- a/corpora/en/wordnet/lib/Makefile.am +++ /dev/null @@ -1,5 +0,0 @@ -lib_LIBRARIES = libWN.a -libWN_a_SOURCES = binsrch.c morph.c search.c wnglobal.c wnhelp.c wnrtl.c wnutil.c -libWN_a_CPPFLAGS = $(INCLUDES) -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include -SUBDIRS = wnres diff --git a/corpora/en/wordnet/lib/Makefile.in b/corpora/en/wordnet/lib/Makefile.in deleted file mode 100644 index 485650ce6..000000000 --- a/corpora/en/wordnet/lib/Makefile.in +++ /dev/null @@ -1,626 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -SOURCES = $(libWN_a_SOURCES) - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = lib -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(libdir)" -libLIBRARIES_INSTALL = $(INSTALL_DATA) -LIBRARIES = $(lib_LIBRARIES) -AR = ar -ARFLAGS = cru -libWN_a_AR = $(AR) $(ARFLAGS) -libWN_a_LIBADD = -am_libWN_a_OBJECTS = libWN_a-binsrch.$(OBJEXT) libWN_a-morph.$(OBJEXT) \ - libWN_a-search.$(OBJEXT) libWN_a-wnglobal.$(OBJEXT) \ - libWN_a-wnhelp.$(OBJEXT) libWN_a-wnrtl.$(OBJEXT) \ - libWN_a-wnutil.$(OBJEXT) -libWN_a_OBJECTS = $(am_libWN_a_OBJECTS) -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -SOURCES = $(libWN_a_SOURCES) -DIST_SOURCES = $(libWN_a_SOURCES) -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-exec-recursive install-info-recursive \ - install-recursive installcheck-recursive installdirs-recursive \ - pdf-recursive ps-recursive uninstall-info-recursive \ - uninstall-recursive -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -lib_LIBRARIES = libWN.a -libWN_a_SOURCES = binsrch.c morph.c search.c wnglobal.c wnhelp.c wnrtl.c wnutil.c -libWN_a_CPPFLAGS = $(INCLUDES) -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include -SUBDIRS = wnres -all: all-recursive - -.SUFFIXES: -.SUFFIXES: .c .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu lib/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -install-libLIBRARIES: $(lib_LIBRARIES) - @$(NORMAL_INSTALL) - test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" - @list='$(lib_LIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - f=$(am__strip_dir) \ - echo " $(libLIBRARIES_INSTALL) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \ - $(libLIBRARIES_INSTALL) "$$p" "$(DESTDIR)$(libdir)/$$f"; \ - else :; fi; \ - done - @$(POST_INSTALL) - @list='$(lib_LIBRARIES)'; for p in $$list; do \ - if test -f $$p; then \ - p=$(am__strip_dir) \ - echo " $(RANLIB) '$(DESTDIR)$(libdir)/$$p'"; \ - $(RANLIB) "$(DESTDIR)$(libdir)/$$p"; \ - else :; fi; \ - done - -uninstall-libLIBRARIES: - @$(NORMAL_UNINSTALL) - @list='$(lib_LIBRARIES)'; for p in $$list; do \ - p=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(libdir)/$$p'"; \ - rm -f "$(DESTDIR)$(libdir)/$$p"; \ - done - -clean-libLIBRARIES: - -test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES) -libWN.a: $(libWN_a_OBJECTS) $(libWN_a_DEPENDENCIES) - -rm -f libWN.a - $(libWN_a_AR) libWN.a $(libWN_a_OBJECTS) $(libWN_a_LIBADD) - $(RANLIB) libWN.a - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-binsrch.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-morph.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-search.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-wnglobal.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-wnhelp.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-wnrtl.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libWN_a-wnutil.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -libWN_a-binsrch.o: binsrch.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-binsrch.o -MD -MP -MF "$(DEPDIR)/libWN_a-binsrch.Tpo" -c -o libWN_a-binsrch.o `test -f 'binsrch.c' || echo '$(srcdir)/'`binsrch.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-binsrch.Tpo" "$(DEPDIR)/libWN_a-binsrch.Po"; else rm -f "$(DEPDIR)/libWN_a-binsrch.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='binsrch.c' object='libWN_a-binsrch.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-binsrch.o `test -f 'binsrch.c' || echo '$(srcdir)/'`binsrch.c - -libWN_a-binsrch.obj: binsrch.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-binsrch.obj -MD -MP -MF "$(DEPDIR)/libWN_a-binsrch.Tpo" -c -o libWN_a-binsrch.obj `if test -f 'binsrch.c'; then $(CYGPATH_W) 'binsrch.c'; else $(CYGPATH_W) '$(srcdir)/binsrch.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-binsrch.Tpo" "$(DEPDIR)/libWN_a-binsrch.Po"; else rm -f "$(DEPDIR)/libWN_a-binsrch.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='binsrch.c' object='libWN_a-binsrch.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-binsrch.obj `if test -f 'binsrch.c'; then $(CYGPATH_W) 'binsrch.c'; else $(CYGPATH_W) '$(srcdir)/binsrch.c'; fi` - -libWN_a-morph.o: morph.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-morph.o -MD -MP -MF "$(DEPDIR)/libWN_a-morph.Tpo" -c -o libWN_a-morph.o `test -f 'morph.c' || echo '$(srcdir)/'`morph.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-morph.Tpo" "$(DEPDIR)/libWN_a-morph.Po"; else rm -f "$(DEPDIR)/libWN_a-morph.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='morph.c' object='libWN_a-morph.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-morph.o `test -f 'morph.c' || echo '$(srcdir)/'`morph.c - -libWN_a-morph.obj: morph.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-morph.obj -MD -MP -MF "$(DEPDIR)/libWN_a-morph.Tpo" -c -o libWN_a-morph.obj `if test -f 'morph.c'; then $(CYGPATH_W) 'morph.c'; else $(CYGPATH_W) '$(srcdir)/morph.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-morph.Tpo" "$(DEPDIR)/libWN_a-morph.Po"; else rm -f "$(DEPDIR)/libWN_a-morph.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='morph.c' object='libWN_a-morph.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-morph.obj `if test -f 'morph.c'; then $(CYGPATH_W) 'morph.c'; else $(CYGPATH_W) '$(srcdir)/morph.c'; fi` - -libWN_a-search.o: search.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-search.o -MD -MP -MF "$(DEPDIR)/libWN_a-search.Tpo" -c -o libWN_a-search.o `test -f 'search.c' || echo '$(srcdir)/'`search.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-search.Tpo" "$(DEPDIR)/libWN_a-search.Po"; else rm -f "$(DEPDIR)/libWN_a-search.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='search.c' object='libWN_a-search.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-search.o `test -f 'search.c' || echo '$(srcdir)/'`search.c - -libWN_a-search.obj: search.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-search.obj -MD -MP -MF "$(DEPDIR)/libWN_a-search.Tpo" -c -o libWN_a-search.obj `if test -f 'search.c'; then $(CYGPATH_W) 'search.c'; else $(CYGPATH_W) '$(srcdir)/search.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-search.Tpo" "$(DEPDIR)/libWN_a-search.Po"; else rm -f "$(DEPDIR)/libWN_a-search.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='search.c' object='libWN_a-search.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-search.obj `if test -f 'search.c'; then $(CYGPATH_W) 'search.c'; else $(CYGPATH_W) '$(srcdir)/search.c'; fi` - -libWN_a-wnglobal.o: wnglobal.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnglobal.o -MD -MP -MF "$(DEPDIR)/libWN_a-wnglobal.Tpo" -c -o libWN_a-wnglobal.o `test -f 'wnglobal.c' || echo '$(srcdir)/'`wnglobal.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnglobal.Tpo" "$(DEPDIR)/libWN_a-wnglobal.Po"; else rm -f "$(DEPDIR)/libWN_a-wnglobal.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnglobal.c' object='libWN_a-wnglobal.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnglobal.o `test -f 'wnglobal.c' || echo '$(srcdir)/'`wnglobal.c - -libWN_a-wnglobal.obj: wnglobal.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnglobal.obj -MD -MP -MF "$(DEPDIR)/libWN_a-wnglobal.Tpo" -c -o libWN_a-wnglobal.obj `if test -f 'wnglobal.c'; then $(CYGPATH_W) 'wnglobal.c'; else $(CYGPATH_W) '$(srcdir)/wnglobal.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnglobal.Tpo" "$(DEPDIR)/libWN_a-wnglobal.Po"; else rm -f "$(DEPDIR)/libWN_a-wnglobal.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnglobal.c' object='libWN_a-wnglobal.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnglobal.obj `if test -f 'wnglobal.c'; then $(CYGPATH_W) 'wnglobal.c'; else $(CYGPATH_W) '$(srcdir)/wnglobal.c'; fi` - -libWN_a-wnhelp.o: wnhelp.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnhelp.o -MD -MP -MF "$(DEPDIR)/libWN_a-wnhelp.Tpo" -c -o libWN_a-wnhelp.o `test -f 'wnhelp.c' || echo '$(srcdir)/'`wnhelp.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnhelp.Tpo" "$(DEPDIR)/libWN_a-wnhelp.Po"; else rm -f "$(DEPDIR)/libWN_a-wnhelp.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnhelp.c' object='libWN_a-wnhelp.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnhelp.o `test -f 'wnhelp.c' || echo '$(srcdir)/'`wnhelp.c - -libWN_a-wnhelp.obj: wnhelp.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnhelp.obj -MD -MP -MF "$(DEPDIR)/libWN_a-wnhelp.Tpo" -c -o libWN_a-wnhelp.obj `if test -f 'wnhelp.c'; then $(CYGPATH_W) 'wnhelp.c'; else $(CYGPATH_W) '$(srcdir)/wnhelp.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnhelp.Tpo" "$(DEPDIR)/libWN_a-wnhelp.Po"; else rm -f "$(DEPDIR)/libWN_a-wnhelp.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnhelp.c' object='libWN_a-wnhelp.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnhelp.obj `if test -f 'wnhelp.c'; then $(CYGPATH_W) 'wnhelp.c'; else $(CYGPATH_W) '$(srcdir)/wnhelp.c'; fi` - -libWN_a-wnrtl.o: wnrtl.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnrtl.o -MD -MP -MF "$(DEPDIR)/libWN_a-wnrtl.Tpo" -c -o libWN_a-wnrtl.o `test -f 'wnrtl.c' || echo '$(srcdir)/'`wnrtl.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnrtl.Tpo" "$(DEPDIR)/libWN_a-wnrtl.Po"; else rm -f "$(DEPDIR)/libWN_a-wnrtl.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnrtl.c' object='libWN_a-wnrtl.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnrtl.o `test -f 'wnrtl.c' || echo '$(srcdir)/'`wnrtl.c - -libWN_a-wnrtl.obj: wnrtl.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnrtl.obj -MD -MP -MF "$(DEPDIR)/libWN_a-wnrtl.Tpo" -c -o libWN_a-wnrtl.obj `if test -f 'wnrtl.c'; then $(CYGPATH_W) 'wnrtl.c'; else $(CYGPATH_W) '$(srcdir)/wnrtl.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnrtl.Tpo" "$(DEPDIR)/libWN_a-wnrtl.Po"; else rm -f "$(DEPDIR)/libWN_a-wnrtl.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnrtl.c' object='libWN_a-wnrtl.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnrtl.obj `if test -f 'wnrtl.c'; then $(CYGPATH_W) 'wnrtl.c'; else $(CYGPATH_W) '$(srcdir)/wnrtl.c'; fi` - -libWN_a-wnutil.o: wnutil.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnutil.o -MD -MP -MF "$(DEPDIR)/libWN_a-wnutil.Tpo" -c -o libWN_a-wnutil.o `test -f 'wnutil.c' || echo '$(srcdir)/'`wnutil.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnutil.Tpo" "$(DEPDIR)/libWN_a-wnutil.Po"; else rm -f "$(DEPDIR)/libWN_a-wnutil.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnutil.c' object='libWN_a-wnutil.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnutil.o `test -f 'wnutil.c' || echo '$(srcdir)/'`wnutil.c - -libWN_a-wnutil.obj: wnutil.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libWN_a-wnutil.obj -MD -MP -MF "$(DEPDIR)/libWN_a-wnutil.Tpo" -c -o libWN_a-wnutil.obj `if test -f 'wnutil.c'; then $(CYGPATH_W) 'wnutil.c'; else $(CYGPATH_W) '$(srcdir)/wnutil.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/libWN_a-wnutil.Tpo" "$(DEPDIR)/libWN_a-wnutil.Po"; else rm -f "$(DEPDIR)/libWN_a-wnutil.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wnutil.c' object='libWN_a-wnutil.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libWN_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libWN_a-wnutil.obj `if test -f 'wnutil.c'; then $(CYGPATH_W) 'wnutil.c'; else $(CYGPATH_W) '$(srcdir)/wnutil.c'; fi` -uninstall-info-am: - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -mostlyclean-recursive clean-recursive distclean-recursive \ -maintainer-clean-recursive: - @set fnord $$MAKEFLAGS; amf=$$2; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done - list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test -d "$(distdir)/$$subdir" \ - || $(mkdir_p) "$(distdir)/$$subdir" \ - || exit 1; \ - distdir=`$(am__cd) $(distdir) && pwd`; \ - top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ - (cd $$subdir && \ - $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$$top_distdir" \ - distdir="$$distdir/$$subdir" \ - distdir) \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-recursive -all-am: Makefile $(LIBRARIES) -installdirs: installdirs-recursive -installdirs-am: - for dir in "$(DESTDIR)$(libdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-recursive -install-exec: install-exec-recursive -install-data: install-data-recursive -uninstall: uninstall-recursive - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-recursive -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-recursive - -clean-am: clean-generic clean-libLIBRARIES mostlyclean-am - -distclean: distclean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-recursive - -dvi-am: - -html: html-recursive - -info: info-recursive - -info-am: - -install-data-am: - -install-exec-am: install-libLIBRARIES - -install-info: install-info-recursive - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-recursive - -mostlyclean-am: mostlyclean-compile mostlyclean-generic - -pdf: pdf-recursive - -pdf-am: - -ps: ps-recursive - -ps-am: - -uninstall-am: uninstall-info-am uninstall-libLIBRARIES - -uninstall-info: uninstall-info-recursive - -.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am \ - clean clean-generic clean-libLIBRARIES clean-recursive ctags \ - ctags-recursive distclean distclean-compile distclean-generic \ - distclean-recursive distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-data \ - install-data-am install-exec install-exec-am install-info \ - install-info-am install-libLIBRARIES install-man install-strip \ - installcheck installcheck-am installdirs installdirs-am \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-recursive pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am uninstall-info-am \ - uninstall-libLIBRARIES - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/lib/binsrch.c b/corpora/en/wordnet/lib/binsrch.c deleted file mode 100644 index 85436f30e..000000000 --- a/corpora/en/wordnet/lib/binsrch.c +++ /dev/null @@ -1,225 +0,0 @@ -/* - - binsearch.c - general binary search functions - -*/ - -#include -#include - -static char *Id = "$Id: binsrch.c,v 1.15 2005/02/01 16:46:43 wn Rel $"; - -/* Binary search - looks for the key passed at the start of a line - in the file associated with open file descriptor fp, and returns - a buffer containing the line in the file. */ - -#define KEY_LEN (1024) -#define LINE_LEN (1024*25) - -static char line[LINE_LEN]; -long last_bin_search_offset = 0; - -/* General purpose binary search function to search for key as first - item on line in open file. Item is delimited by space. */ - -#undef getc - -char *read_index(long offset, FILE *fp) { - char *linep; - - linep = line; - line[0] = '0'; - - fseek( fp, offset, SEEK_SET ); - fgets(linep, LINE_LEN, fp); - return(line); -} - -char *bin_search(char *searchkey, FILE *fp) -{ - int c; - long top, mid, bot, diff; - char *linep, key[KEY_LEN]; - int length; - - diff=666; - linep = line; - line[0] = '\0'; - - fseek(fp, 0L, 2); - top = 0; - bot = ftell(fp); - mid = (bot - top) / 2; - - do { - fseek(fp, mid - 1, 0); - if(mid != 1) - while((c = getc(fp)) != '\n' && c != EOF); - last_bin_search_offset = ftell( fp ); - fgets(linep, LINE_LEN, fp); - length = (int)(strchr(linep, ' ') - linep); - strncpy(key, linep, length); - key[length] = '\0'; - if(strcmp(key, searchkey) < 0) { - top = mid; - diff = (bot - top) / 2; - mid = top + diff; - } - if(strcmp(key, searchkey) > 0) { - bot = mid; - diff = (bot - top) / 2; - mid = top + diff; - } - } while((strcmp(key, searchkey)) && (diff != 0)); - - if(!strcmp(key, searchkey)) - return(line); - else - return(NULL); -} - -static long offset; - -static int bin_search_key(char *searchkey, FILE *fp) -{ - int c; - long top, mid, bot, diff; - char *linep, key[KEY_LEN]; - int length, offset1, offset2; - - /* do binary search to find correct place in file to insert line */ - - diff=666; - linep = line; - line[0] = '\0'; - - fseek(fp, 0L, 2); - top = 0; - bot = ftell(fp); - if (bot == 0) { - offset = 0; - return(0); /* empty file */ - } - mid = (bot - top) / 2; - - /* If only one line in file, don't work through loop */ - - length = 0; - rewind(fp); - while((c = getc(fp)) != '\n' && c != EOF) - line[length++] = c; - if (getc(fp) == EOF) { /* only 1 line in file */ - length = (int)(strchr(linep, ' ') - linep); - strncpy(key, linep, length); - key[length] = '\0'; - if(strcmp(key, searchkey) > 0) { - offset = 0; - return(0); /* line with key is not found */ - } else if (strcmp(key, searchkey) < 0) { - offset = ftell(fp); - return(0); /* line with key is not found */ - } else { - offset = 0; - return(1); /* line with key is found */ - } - } - - do { - fseek(fp, mid - 1, 0); - if(mid != 1) - while((c = getc(fp)) != '\n' && c != EOF); - offset1 = ftell(fp); /* offset at start of line */ - if (fgets(linep, LINE_LEN, fp) != NULL) { - offset2 = ftell(fp); /* offset at start of next line */ - length = (int)(strchr(linep, ' ') - linep); - strncpy(key, linep, length); - key[length] = '\0'; - if(strcmp(key, searchkey) < 0) { /* further in file */ - top = mid; - diff = (bot - top) / 2; - mid = top + diff; - offset = offset2; - } - if(strcmp(key, searchkey) > 0) { /* earlier in file */ - bot = mid; - diff = (bot - top) / 2; - mid = top + diff; - offset = offset1; - } - } else { - bot = mid; - diff = (bot - top) / 2; - mid = top + diff; - } - } while((strcmp(key, searchkey)) && (diff != 0)); - - if(!strcmp(key, searchkey)) { - offset = offset1; /* get to start of current line */ - return(1); /* line with key is found */ - } else - return(0); /* line with key is not found */ -} - -/* Copy contents from one file to another. */ - -void copyfile(FILE *fromfp, FILE *tofp) -{ - int c; - - while ((c = getc(fromfp)) != EOF) - putc(c, tofp); -} - -/* Function to replace a line in a file. Returns the original line, - or NULL in case of error. */ - -char *replace_line(char *new_line, char *searchkey, FILE *fp) -{ - FILE *tfp; /* temporary file pointer */ - - if (!bin_search_key(searchkey, fp)) - return(NULL); /* line with key not found */ - - if ((tfp = tmpfile()) == NULL) - return(NULL); /* could not create temp file */ - fseek(fp, offset, 0); - fgets(line, LINE_LEN, fp); /* read original */ - copyfile(fp, tfp); - if (fseek(fp, offset, 0) == -1) - return(NULL); /* could not seek to offset */ - fprintf(fp, new_line); /* write line */ - rewind(tfp); - copyfile(tfp, fp); - - fclose(tfp); - fflush(fp); - - return(line); -} - -/* Find location to insert line at in file. If line with this - key is already in file, return NULL. */ - -char *insert_line(char *new_line, char *searchkey, FILE *fp) -{ - FILE *tfp; - - if (bin_search_key(searchkey, fp)) - return(NULL); - - if ((tfp = tmpfile()) == NULL) - return(NULL); /* could not create temp file */ - if (fseek(fp, offset, 0) == -1) - return(NULL); /* could not seek to offset */ - copyfile(fp, tfp); - if (fseek(fp, offset, 0) == -1) - return(NULL); /* could not seek to offset */ - fprintf(fp, new_line); /* write line */ - rewind(tfp); - copyfile(tfp, fp); - - fclose(tfp); - fflush(fp); - - return(new_line); -} diff --git a/corpora/en/wordnet/lib/morph.c b/corpora/en/wordnet/lib/morph.c deleted file mode 100644 index 0cff594f0..000000000 --- a/corpora/en/wordnet/lib/morph.c +++ /dev/null @@ -1,472 +0,0 @@ -/* - - morph.c - WordNet search code morphology functions - -*/ - -#include -#include -#include -#include -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif -#include "wn.h" - -#ifdef _WINDOWS -#include -#include -#define EXCFILE "%s\\%s.exc" -#else -#define EXCFILE "%s/%s.exc" -#endif - -static char *Id = "$Id: morph.c,v 1.67 2006/11/14 21:00:23 wn Exp $"; - -static char *sufx[] ={ - /* Noun suffixes */ - "s", "ses", "xes", "zes", "ches", "shes", "men", "ies", - /* Verb suffixes */ - "s", "ies", "es", "es", "ed", "ed", "ing", "ing", - /* Adjective suffixes */ - "er", "est", "er", "est" -}; - -static char *addr[] ={ - /* Noun endings */ - "", "s", "x", "z", "ch", "sh", "man", "y", - /* Verb endings */ - "", "y", "e", "", "e", "", "e", "", - /* Adjective endings */ - "", "", "e", "e" -}; - -static int offsets[NUMPARTS] = { 0, 0, 8, 16 }; -static int cnts[NUMPARTS] = { 0, 8, 8, 4 }; -static char msgbuf[256]; - -#define NUMPREPS 15 - -static struct { - char *str; - int strlen; -} prepositions[NUMPREPS] = { - "to", 2, - "at", 2, - "of", 2, - "on", 2, - "off", 3, - "in", 2, - "out", 3, - "up", 2, - "down", 4, - "from", 4, - "with", 4, - "into", 4, - "for", 3, - "about", 5, - "between", 7, -}; - -static FILE *exc_fps[NUMPARTS + 1]; - -static int do_init(); -static int strend(char *, char *); -static char *wordbase(char *, int); -static int hasprep(char *, int); -static char *exc_lookup(char *, int); -static char *morphprep(char *); - -/* Open exception list files */ - -int morphinit(void) -{ - static int done = 0; - static int openerr = 0; - - if (!done) { - if (OpenDB) { /* make sure WN database files are open */ - if (!(openerr = do_init())) - done = 1; - } else - openerr = -1; - } - - return(openerr); -} - -/* Close exception list files and reopen */ -int re_morphinit(void) -{ - int i; - - for (i = 1; i <= NUMPARTS; i++) { - if (exc_fps[i] != NULL) { - fclose(exc_fps[i]); exc_fps[i] = NULL; - } - } - - return(OpenDB ? do_init() : -1); -} - -static int do_init(void) -{ - int i, openerr; -#ifdef _WINDOWS - HKEY hkey; - DWORD dwType, dwSize; -#else - char *env; -#endif - char searchdir[256], fname[256]; - - openerr = 0; - - /* Find base directory for database. If set, use WNSEARCHDIR. - If not set, check for WNHOME/dict, otherwise use DEFAULTPATH. */ - -#ifdef _WINDOWS - if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("Software\\WordNet\\3.0"), - 0, KEY_READ, &hkey) == ERROR_SUCCESS) { - dwSize = sizeof(searchdir); - RegQueryValueEx(hkey, TEXT("WNHome"), - NULL, &dwType, searchdir, &dwSize); - RegCloseKey(hkey); - strcat(searchdir, DICTDIR); - } - else if (RegOpenKeyEx(HKEY_CURRENT_USER, TEXT("Software\\WordNet\\3.0"), - 0, KEY_READ, &hkey) == ERROR_SUCCESS) { - dwSize = sizeof(searchdir); - RegQueryValueEx(hkey, TEXT("WNHome"), - NULL, &dwType, searchdir, &dwSize); - RegCloseKey(hkey); - strcat(searchdir, DICTDIR); - } else - sprintf(searchdir, DEFAULTPATH); -#else - if ((env = getenv("WNSEARCHDIR")) != NULL) - strcpy(searchdir, env); - else if ((env = getenv("WNHOME")) != NULL) - sprintf(searchdir, "%s%s", env, DICTDIR); - else - strcpy(searchdir, DEFAULTPATH); -#endif - - for (i = 1; i <= NUMPARTS; i++) { - sprintf(fname, EXCFILE, searchdir, partnames[i]); - if ((exc_fps[i] = fopen(fname, "r")) == NULL) { - sprintf(msgbuf, - "WordNet library error: Can't open exception file(%s)\n\n", - fname); - display_message(msgbuf); - openerr = -1; - } - } - return(openerr); -} - -/* Try to find baseform (lemma) of word or collocation in POS. - Works like strtok() - first call is with string, subsequent calls - with NULL argument return additional baseforms for original string. */ - -char *morphstr(char *origstr, int pos) -{ - static char searchstr[WORDBUF], str[WORDBUF]; - static int svcnt, svprep; - char word[WORDBUF], *tmp; - int cnt, st_idx = 0, end_idx; - int prep; - char *end_idx1, *end_idx2; - char *append; - - if (pos == SATELLITE) - pos = ADJ; - - /* First time through for this string */ - - if (origstr != NULL) { - /* Assume string hasn't had spaces substitued with '_' */ - strtolower(strsubst(strcpy(str, origstr), ' ', '_')); - searchstr[0] = '\0'; - cnt = cntwords(str, '_'); - svprep = 0; - - /* first try exception list */ - - if ((tmp = exc_lookup(str, pos)) && strcmp(tmp, str)) { - svcnt = 1; /* force next time to pass NULL */ - return(tmp); - } - - /* Then try simply morph on original string */ - - if (pos != VERB && (tmp = morphword(str, pos)) && strcmp(tmp, str)) - return(tmp); - - if (pos == VERB && cnt > 1 && (prep = hasprep(str, cnt))) { - /* assume we have a verb followed by a preposition */ - svprep = prep; - return(morphprep(str)); - } else { - svcnt = cnt = cntwords(str, '-'); - while (origstr && --cnt) { - end_idx1 = strchr(str + st_idx, '_'); - end_idx2 = strchr(str + st_idx, '-'); - if (end_idx1 && end_idx2) { - if (end_idx1 < end_idx2) { - end_idx = (int)(end_idx1 - str); - append = "_"; - } else { - end_idx = (int)(end_idx2 - str); - append = "-"; - } - } else { - if (end_idx1) { - end_idx = (int)(end_idx1 - str); - append = "_"; - } else { - end_idx = (int)(end_idx2 - str); - append = "-"; - } - } - if (end_idx < 0) return(NULL); /* shouldn't do this */ - strncpy(word, str + st_idx, end_idx - st_idx); - word[end_idx - st_idx] = '\0'; - if(tmp = morphword(word, pos)) - strcat(searchstr,tmp); - else - strcat(searchstr,word); - strcat(searchstr, append); - st_idx = end_idx + 1; - } - - if(tmp = morphword(strcpy(word, str + st_idx), pos)) - strcat(searchstr,tmp); - else - strcat(searchstr,word); - if(strcmp(searchstr, str) && is_defined(searchstr,pos)) - return(searchstr); - else - return(NULL); - } - } else { /* subsequent call on string */ - if (svprep) { /* if verb has preposition, no more morphs */ - svprep = 0; - return(NULL); - } else if (svcnt == 1) - return(exc_lookup(NULL, pos)); - else { - svcnt = 1; - if ((tmp = exc_lookup(str, pos)) && strcmp(tmp, str)) - return(tmp); - else - return(NULL); - } - } -} - -/* Try to find baseform (lemma) of individual word in POS */ -char *morphword(char *word, int pos) -{ - int offset, cnt; - int i; - static char retval[WORDBUF]; - char *tmp, tmpbuf[WORDBUF], *end; - - sprintf(retval,""); - sprintf(tmpbuf, ""); - end = ""; - - if(word == NULL) - return(NULL); - - /* first look for word on exception list */ - - if((tmp = exc_lookup(word, pos)) != NULL) - return(tmp); /* found it in exception list */ - - if (pos == ADV) { /* only use exception list for adverbs */ - return(NULL); - } - if (pos == NOUN) { - if (strend(word, "ful")) { - cnt = strrchr(word, 'f') - word; - strncat(tmpbuf, word, cnt); - end = "ful"; - } else - /* check for noun ending with 'ss' or short words */ - if (strend(word, "ss") || (strlen(word) <= 2)) - return(NULL); - } - -/* If not in exception list, try applying rules from tables */ - - if (tmpbuf[0] == '\0') - strcpy(tmpbuf, word); - - offset = offsets[pos]; - cnt = cnts[pos]; - - for(i = 0; i < cnt; i++){ - strcpy(retval, wordbase(tmpbuf, (i + offset))); - if(strcmp(retval, tmpbuf) && is_defined(retval, pos)) { - strcat(retval, end); - return(retval); - } - } - return(NULL); -} - -static int strend(char *str1, char *str2) -{ - char *pt1; - - if(strlen(str2) >= strlen(str1)) - return(0); - else { - pt1=str1; - pt1=strchr(str1,0); - pt1=pt1-strlen(str2); - return(!strcmp(pt1,str2)); - } -} - -static char *wordbase(char *word, int ender) -{ - char *pt1; - static char copy[WORDBUF]; - - strcpy(copy, word); - if(strend(copy,sufx[ender])) { - pt1=strchr(copy,'\0'); - pt1 -= strlen(sufx[ender]); - *pt1='\0'; - strcat(copy,addr[ender]); - } - return(copy); -} - -static int hasprep(char *s, int wdcnt) -{ - /* Find a preposition in the verb string and return its - corresponding word number. */ - - int i, wdnum; - - for (wdnum = 2; wdnum <= wdcnt; wdnum++) { - s = strchr(s, '_'); - for (s++, i = 0; i < NUMPREPS; i++) - if (!strncmp(s, prepositions[i].str, prepositions[i].strlen) && - (s[prepositions[i].strlen] == '_' || - s[prepositions[i].strlen] == '\0')) - return(wdnum); - } - return(0); -} - -static char *exc_lookup(char *word, int pos) -{ - static char line[WORDBUF], *beglp, *endlp; - char *excline; - int found = 0; - - if (exc_fps[pos] == NULL) - return(NULL); - - /* first time through load line from exception file */ - if(word != NULL){ - if ((excline = bin_search(word, exc_fps[pos])) != NULL) { - strcpy(line, excline); - endlp = strchr(line,' '); - } else - endlp = NULL; - } - if(endlp && *(endlp + 1) != ' '){ - beglp = endlp + 1; - while(*beglp && *beglp == ' ') beglp++; - endlp = beglp; - while(*endlp && *endlp != ' ' && *endlp != '\n') endlp++; - if(endlp != beglp){ - *endlp='\0'; - return(beglp); - } - } - beglp = NULL; - endlp = NULL; - return(NULL); -} - -static char *morphprep(char *s) -{ - char *rest, *exc_word, *lastwd = NULL, *last; - int i, offset, cnt; - char word[WORDBUF], end[WORDBUF]; - static char retval[WORDBUF]; - - /* Assume that the verb is the first word in the phrase. Strip it - off, check for validity, then try various morphs with the - rest of the phrase tacked on, trying to find a match. */ - - rest = strchr(s, '_'); - last = strrchr(s, '_'); - if (rest != last) { /* more than 2 words */ - if (lastwd = morphword(last + 1, NOUN)) { - strncpy(end, rest, last - rest + 1); - end[last-rest+1] = '\0'; - strcat(end, lastwd); - } - } - - strncpy(word, s, rest - s); - word[rest - s] = '\0'; - for (i = 0, cnt = strlen(word); i < cnt; i++) - if (!isalnum((unsigned char)(word[i]))) return(NULL); - - offset = offsets[VERB]; - cnt = cnts[VERB]; - - /* First try to find the verb in the exception list */ - - if ((exc_word = exc_lookup(word, VERB)) && - strcmp(exc_word, word)) { - - sprintf(retval, "%s%s", exc_word, rest); - if(is_defined(retval, VERB)) - return(retval); - else if (lastwd) { - sprintf(retval, "%s%s", exc_word, end); - if(is_defined(retval, VERB)) - return(retval); - } - } - - for (i = 0; i < cnt; i++) { - if ((exc_word = wordbase(word, (i + offset))) && - strcmp(word, exc_word)) { /* ending is different */ - - sprintf(retval, "%s%s", exc_word, rest); - if(is_defined(retval, VERB)) - return(retval); - else if (lastwd) { - sprintf(retval, "%s%s", exc_word, end); - if(is_defined(retval, VERB)) - return(retval); - } - } - } - sprintf(retval, "%s%s", word, rest); - if (strcmp(s, retval)) - return(retval); - if (lastwd) { - sprintf(retval, "%s%s", word, end); - if (strcmp(s, retval)) - return(retval); - } - return(NULL); -} - -/* - * Revision 1.1 91/09/25 15:39:47 wn - * Initial revision - * - */ diff --git a/corpora/en/wordnet/lib/search.c b/corpora/en/wordnet/lib/search.c deleted file mode 100644 index 1cdedc39b..000000000 --- a/corpora/en/wordnet/lib/search.c +++ /dev/null @@ -1,2511 +0,0 @@ -/* - - search.c - WordNet library of search code - -*/ - -#ifdef _WINDOWS -#include -#include -#endif -#include -#include -#include -#include -#include - -#include "wn.h" - -static char *Id = "$Id: search.c,v 1.166 2006/11/14 20:52:45 wn Exp $"; - -/* For adjectives, indicates synset type */ - -#define DONT_KNOW 0 -#define DIRECT_ANT 1 /* direct antonyms (cluster head) */ -#define INDIRECT_ANT 2 /* indrect antonyms (similar) */ -#define PERTAINYM 3 /* no antonyms or similars (pertainyms) */ - -/* Flags for printsynset() */ - -#define ALLWORDS 0 /* print all words */ -#define SKIP_ANTS 0 /* skip printing antonyms in printsynset() */ -#define PRINT_ANTS 1 /* print antonyms in printsynset() */ -#define SKIP_MARKER 0 /* skip printing adjective marker */ -#define PRINT_MARKER 1 /* print adjective marker */ - -/* Trace types used by printspaces() to determine print sytle */ - -#define TRACEP 1 /* traceptrs */ -#define TRACEC 2 /* tracecoords() */ -#define TRACEI 3 /* traceinherit() */ - -#define DEFON 1 -#define DEFOFF 0 - -/* Forward function declarations */ - -static void WNOverview(char *, int); -static void findverbgroups(IndexPtr); -static void add_relatives(int, IndexPtr, int, int); -static void free_rellist(void); -static void printsynset(char *, SynsetPtr, char *, int, int, int, int); -static void printantsynset(SynsetPtr, char *, int, int); -static char *printant(int, SynsetPtr, int, char *, char *); -static void printbuffer(char *); -static void printsns(SynsetPtr, int); -static void printsense(SynsetPtr, int); -static void catword(char *, SynsetPtr, int, int, int); -static void printspaces(int, int); -static void printrelatives(IndexPtr, int); -static int HasHoloMero(IndexPtr, int); -static int HasPtr(SynsetPtr, int); -static int getsearchsense(SynsetPtr, int); -static int depthcheck(int, SynsetPtr); -static void interface_doevents(); -static void getexample(char *, char *); -static int findexample(SynsetPtr); - -/* Static variables */ - -static int prflag, sense, prlexid; -static int overflag = 0; /* set when output buffer overflows */ -static char searchbuffer[SEARCHBUF]; -static int lastholomero; /* keep track of last holo/meronym printed */ -#define TMPBUFSIZE 1024*10 -static char tmpbuf[TMPBUFSIZE]; /* general purpose printing buffer */ -static char wdbuf[WORDBUF]; /* general purpose word buffer */ -static char msgbuf[256]; /* buffer for constructing error messages */ -static int adj_marker; - -extern long last_bin_search_offset; - - -/* Find word in index file and return parsed entry in data structure. - Input word must be exact match of string in database. */ - -IndexPtr index_lookup(char *word, int dbase) -{ - IndexPtr idx = NULL; - FILE *fp; - char *line; - - if ((fp = indexfps[dbase]) == NULL) { - sprintf(msgbuf, "WordNet library error: %s indexfile not open\n", - partnames[dbase]); - display_message(msgbuf); - return(NULL); - } - - if ((line = bin_search(word, fp)) != NULL) { - idx = parse_index( last_bin_search_offset, dbase, line); - } - return (idx); -} - -/* This function parses an entry from an index file into an Index data - * structure. It takes the byte offset and file number, and optionally the - * line. If the line is NULL, parse_index will get the line from the file. - * If the line is non-NULL, parse_index won't look at the file, but it still - * needs the dbase and offset parameters to be set, so it can store them in - * the Index struct. - */ - -IndexPtr parse_index(long offset, int dbase, char *line) { - - IndexPtr idx = NULL; - char *ptrtok; - int j; - - if ( !line ) - line = read_index( offset, indexfps[dbase] ); - - idx = (IndexPtr)malloc(sizeof(Index)); - assert(idx); - - /* set offset of entry in index file */ - idx->idxoffset = offset; - - idx->wd='\0'; - idx->pos='\0'; - idx->off_cnt=0; - idx->tagged_cnt = 0; - idx->sense_cnt=0; - idx->offset='\0'; - idx->ptruse_cnt=0; - idx->ptruse='\0'; - - /* get the word */ - ptrtok=strtok(line," \n"); - - idx->wd = malloc(strlen(ptrtok) + 1); - assert(idx->wd); - strcpy(idx->wd, ptrtok); - - /* get the part of speech */ - ptrtok=strtok(NULL," \n"); - idx->pos = malloc(strlen(ptrtok) + 1); - assert(idx->pos); - strcpy(idx->pos, ptrtok); - - /* get the collins count */ - ptrtok=strtok(NULL," \n"); - idx->sense_cnt = atoi(ptrtok); - - /* get the number of pointers types */ - ptrtok=strtok(NULL," \n"); - idx->ptruse_cnt = atoi(ptrtok); - - if (idx->ptruse_cnt) { - idx->ptruse = (int *) malloc(idx->ptruse_cnt * (sizeof(int))); - assert(idx->ptruse); - - /* get the pointers types */ - for(j=0;j < idx->ptruse_cnt; j++) { - ptrtok=strtok(NULL," \n"); - idx->ptruse[j] = getptrtype(ptrtok); - } - } - - /* get the number of offsets */ - ptrtok=strtok(NULL," \n"); - idx->off_cnt = atoi(ptrtok); - - /* get the number of senses that are tagged */ - ptrtok=strtok(NULL," \n"); - idx->tagged_cnt = atoi(ptrtok); - - /* make space for the offsets */ - idx->offset = (long *) malloc(idx->off_cnt * (sizeof(long))); - assert(idx->offset); - - /* get the offsets */ - for(j=0;joff_cnt;j++) { - ptrtok=strtok(NULL," \n"); - idx->offset[j] = atol(ptrtok); - } - return(idx); -} - -/* 'smart' search of index file. Find word in index file, trying different - techniques - replace hyphens with underscores, replace underscores with - hyphens, strip hyphens and underscores, strip periods. */ - -IndexPtr getindex(char *searchstr, int dbase) -{ - int i, j, k; - char c; - char strings[MAX_FORMS][WORDBUF]; /* vector of search strings */ - static IndexPtr offsets[MAX_FORMS]; - static int offset; - - /* This works like strrok(): if passed with a non-null string, - prepare vector of search strings and offsets. If string - is null, look at current list of offsets and return next - one, or NULL if no more alternatives for this word. */ - - if (searchstr != NULL) { - - offset = 0; - strtolower(searchstr); - for (i = 0; i < MAX_FORMS; i++) { - strcpy(strings[i], searchstr); - offsets[i] = 0; - } - - strsubst(strings[1], '_', '-'); - strsubst(strings[2], '-', '_'); - - /* remove all spaces and hyphens from last search string, then - all periods */ - for (i = j = k = 0; (c = searchstr[i]) != '\0'; i++) { - if (c != '_' && c != '-') - strings[3][j++] = c; - if (c != '.') - strings[4][k++] = c; - } - strings[3][j] = '\0'; - strings[4][k] = '\0'; - - /* Get offset of first entry. Then eliminate duplicates - and get offsets of unique strings. */ - - if (strings[0][0] != NULL) - offsets[0] = index_lookup(strings[0], dbase); - - for (i = 1; i < MAX_FORMS; i++) - if ((strings[i][0]) != NULL && (strcmp(strings[0], strings[i]))) - offsets[i] = index_lookup(strings[i], dbase); - } - - - for (i = offset; i < MAX_FORMS; i++) - if (offsets[i]) { - offset = i + 1; - return(offsets[i]); - } - - return(NULL); -} - -/* Read synset from data file at byte offset passed and return parsed - entry in data structure. */ - -SynsetPtr read_synset(int dbase, long boffset, char *word) -{ - FILE *fp; - - if((fp = datafps[dbase]) == NULL) { - sprintf(msgbuf, "WordNet library error: %s datafile not open\n", - partnames[dbase]); - display_message(msgbuf); - return(NULL); - } - - fseek(fp, boffset, 0); /* position file to byte offset requested */ - - return(parse_synset(fp, dbase, word)); /* parse synset and return */ -} - -/* Read synset at current byte offset in file and return parsed entry - in data structure. */ - -SynsetPtr parse_synset(FILE *fp, int dbase, char *word) -{ - static char line[LINEBUF]; - char tbuf[SMLINEBUF]; - char *ptrtok; - char *tmpptr; - int foundpert = 0; - char wdnum[3]; - int i; - SynsetPtr synptr; - long loc; /* sanity check on file location */ - - loc = ftell(fp); - - if ((tmpptr = fgets(line, LINEBUF, fp)) == NULL) - return(NULL); - - synptr = (SynsetPtr)malloc(sizeof(Synset)); - assert(synptr); - - synptr->hereiam = 0; - synptr->sstype = DONT_KNOW; - synptr->fnum = 0; - synptr->pos = '\0'; - synptr->wcount = 0; - synptr->words = '\0'; - synptr->whichword = 0; - synptr->ptrcount = 0; - synptr->ptrtyp = '\0'; - synptr->ptroff = '\0'; - synptr->ppos = '\0'; - synptr->pto = '\0'; - synptr->pfrm = '\0'; - synptr->fcount = 0; - synptr->frmid = '\0'; - synptr->frmto = '\0'; - synptr->defn = '\0'; - synptr->key = 0; - synptr->nextss = NULL; - synptr->nextform = NULL; - synptr->searchtype = -1; - synptr->ptrlist = NULL; - synptr->headword = NULL; - synptr->headsense = 0; - - ptrtok = line; - - /* looking at offset */ - ptrtok = strtok(line," \n"); - synptr->hereiam = atol(ptrtok); - - /* sanity check - make sure starting file offset matches first field */ - if (synptr->hereiam != loc) { - sprintf(msgbuf, "WordNet library error: no synset at location %d\n", - loc); - display_message(msgbuf); - free(synptr); - return(NULL); - } - - /* looking at FNUM */ - ptrtok = strtok(NULL," \n"); - synptr->fnum = atoi(ptrtok); - - /* looking at POS */ - ptrtok = strtok(NULL, " \n"); - synptr->pos = malloc(strlen(ptrtok) + 1); - assert(synptr->pos); - strcpy(synptr->pos, ptrtok); - if (getsstype(synptr->pos) == SATELLITE) - synptr->sstype = INDIRECT_ANT; - - /* looking at numwords */ - ptrtok = strtok(NULL, " \n"); - synptr->wcount = strtol(ptrtok, NULL, 16); - - synptr->words = (char **)malloc(synptr->wcount * sizeof(char *)); - assert(synptr->words); - synptr->wnsns = (int *)malloc(synptr->wcount * sizeof(int)); - assert(synptr->wnsns); - synptr->lexid = (int *)malloc(synptr->wcount * sizeof(int)); - assert(synptr->lexid); - - for (i = 0; i < synptr->wcount; i++) { - ptrtok = strtok(NULL, " \n"); - synptr->words[i] = malloc(strlen(ptrtok) + 1); - assert(synptr->words[i]); - strcpy(synptr->words[i], ptrtok); - - /* is this the word we're looking for? */ - - if (word && !strcmp(word,strtolower(ptrtok))) - synptr->whichword = i+1; - - ptrtok = strtok(NULL, " \n"); - sscanf(ptrtok, "%x", &synptr->lexid[i]); - } - - /* get the pointer count */ - ptrtok = strtok(NULL," \n"); - synptr->ptrcount = atoi(ptrtok); - - if (synptr->ptrcount) { - - /* alloc storage for the pointers */ - synptr->ptrtyp = (int *)malloc(synptr->ptrcount * sizeof(int)); - assert(synptr->ptrtyp); - synptr->ptroff = (long *)malloc(synptr->ptrcount * sizeof(long)); - assert(synptr->ptroff); - synptr->ppos = (int *)malloc(synptr->ptrcount * sizeof(int)); - assert(synptr->ppos); - synptr->pto = (int *)malloc(synptr->ptrcount * sizeof(int)); - assert(synptr->pto); - synptr->pfrm = (int *)malloc(synptr->ptrcount * sizeof(int)); - assert(synptr->pfrm); - - for(i = 0; i < synptr->ptrcount; i++) { - /* get the pointer type */ - ptrtok = strtok(NULL," \n"); - synptr->ptrtyp[i] = getptrtype(ptrtok); - /* For adjectives, set the synset type if it has a direct - antonym */ - if (dbase == ADJ && synptr->sstype == DONT_KNOW) { - if (synptr->ptrtyp[i] == ANTPTR) - synptr->sstype = DIRECT_ANT; - else if (synptr->ptrtyp[i] == PERTPTR) - foundpert = 1; - } - - /* get the pointer offset */ - ptrtok = strtok(NULL," \n"); - synptr->ptroff[i] = atol(ptrtok); - - /* get the pointer part of speech */ - ptrtok = strtok(NULL, " \n"); - synptr->ppos[i] = getpos(ptrtok); - - /* get the lexp to/from restrictions */ - ptrtok = strtok(NULL," \n"); - - tmpptr = ptrtok; - strncpy(wdnum, tmpptr, 2); - wdnum[2] = '\0'; - synptr->pfrm[i] = strtol(wdnum, (char **)NULL, 16); - - tmpptr += 2; - strncpy(wdnum, tmpptr, 2); - wdnum[2] = '\0'; - synptr->pto[i] = strtol(wdnum, (char **)NULL, 16); - } - } - - /* If synset type is still not set, see if it's a pertainym */ - - if (dbase == ADJ && synptr->sstype == DONT_KNOW && foundpert == 1) - synptr->sstype = PERTAINYM; - - /* retireve optional information from verb synset */ - if(dbase == VERB) { - ptrtok = strtok(NULL," \n"); - synptr->fcount = atoi(ptrtok); - - /* allocate frame storage */ - - synptr->frmid = (int *)malloc(synptr->fcount * sizeof(int)); - assert(synptr->frmid); - synptr->frmto = (int *)malloc(synptr->fcount * sizeof(int)); - assert(synptr->frmto); - - for(i=0;ifcount;i++) { - /* skip the frame pointer (+) */ - ptrtok = strtok(NULL," \n"); - - ptrtok = strtok(NULL," \n"); - synptr->frmid[i] = atoi(ptrtok); - - ptrtok = strtok(NULL," \n"); - synptr->frmto[i] = strtol(ptrtok, NULL, 16); - } - } - - /* get the optional definition */ - - ptrtok = strtok(NULL," \n"); - if (ptrtok) { - ptrtok = strtok(NULL," \n"); - sprintf(tbuf, ""); - while (ptrtok != NULL) { - strcat(tbuf,ptrtok); - ptrtok = strtok(NULL, " \n"); - if(ptrtok) - strcat(tbuf," "); - } - assert((1 + strlen(tbuf)) < sizeof(tbuf)); - synptr->defn = malloc(strlen(tbuf) + 4); - assert(synptr->defn); - sprintf(synptr->defn,"(%s)",tbuf); - } - - if (keyindexfp) { /* we have unique keys */ - sprintf(tmpbuf, "%c:%8.8d", partchars[dbase], synptr->hereiam); - synptr->key = GetKeyForOffset(tmpbuf); - } - - /* Can't do earlier - calls indexlookup which messes up strtok calls */ - - for (i = 0; i < synptr->wcount; i++) - synptr->wnsns[i] = getsearchsense(synptr, i + 1); - - return(synptr); -} - -/* Free a synset linked list allocated by findtheinfo_ds() */ - -void free_syns(SynsetPtr synptr) -{ - SynsetPtr cursyn, nextsyn; - - if (synptr) { - cursyn = synptr; - while(cursyn) { - if (cursyn->nextform) - free_syns(cursyn->nextform); - nextsyn = cursyn->nextss; - free_synset(cursyn); - cursyn = nextsyn; - } - } -} - -/* Free a synset */ - -void free_synset(SynsetPtr synptr) -{ - int i; - - free(synptr->pos); - for (i = 0; i < synptr->wcount; i++){ - free(synptr->words[i]); - } - free(synptr->words); - free(synptr->wnsns); - free(synptr->lexid); - if (synptr->ptrcount) { - free(synptr->ptrtyp); - free(synptr->ptroff); - free(synptr->ppos); - free(synptr->pto); - free(synptr->pfrm); - } - if (synptr->fcount) { - free(synptr->frmid); - free(synptr->frmto); - } - if (synptr->defn) - free(synptr->defn); - if (synptr->headword) - free(synptr->headword); - if (synptr->ptrlist) - free_syns(synptr->ptrlist); /* changed from free_synset() */ - free(synptr); -} - -/* Free an index structure */ - -void free_index(IndexPtr idx) -{ - free(idx->wd); - free(idx->pos); - if (idx->ptruse) - free(idx->ptruse); - free(idx->offset); - free(idx); -} - -/* Recursive search algorithm to trace a pointer tree */ - -static void traceptrs(SynsetPtr synptr, int ptrtyp, int dbase, int depth) -{ - int i; - int extraindent = 0; - SynsetPtr cursyn; - char prefix[40], tbuf[20]; - int realptr; - - interface_doevents(); - if (abortsearch) - return; - - if (ptrtyp < 0) { - ptrtyp = -ptrtyp; - extraindent = 2; - } - - for (i = 0; i < synptr->ptrcount; i++) { - if ((ptrtyp == HYPERPTR && (synptr->ptrtyp[i] == HYPERPTR || - synptr->ptrtyp[i] == INSTANCE)) || - (ptrtyp == HYPOPTR && (synptr->ptrtyp[i] == HYPOPTR || - synptr->ptrtyp[i] == INSTANCES)) || - ((synptr->ptrtyp[i] == ptrtyp) && - ((synptr->pfrm[i] == 0) || - (synptr->pfrm[i] == synptr->whichword)))) { - - realptr = synptr->ptrtyp[i]; /* deal with INSTANCE */ - - if(!prflag) { /* print sense number and synset */ - printsns(synptr, sense + 1); - prflag = 1; - } - printspaces(TRACEP, depth + extraindent); - - switch(realptr) { - case PERTPTR: - if (dbase == ADV) - sprintf(prefix, "Derived from %s ", - partnames[synptr->ppos[i]]); - else - sprintf(prefix, "Pertains to %s ", - partnames[synptr->ppos[i]]); - break; - case ANTPTR: - if (dbase != ADJ) - sprintf(prefix, "Antonym of "); - break; - case PPLPTR: - sprintf(prefix, "Participle of verb "); - break; - case INSTANCE: - sprintf(prefix, "INSTANCE OF=> "); - break; - case INSTANCES: - sprintf(prefix, "HAS INSTANCE=> "); - break; - case HASMEMBERPTR: - sprintf(prefix, " HAS MEMBER: "); - break; - case HASSTUFFPTR: - sprintf(prefix, " HAS SUBSTANCE: "); - break; - case HASPARTPTR: - sprintf(prefix, " HAS PART: "); - break; - case ISMEMBERPTR: - sprintf(prefix, " MEMBER OF: "); - break; - case ISSTUFFPTR: - sprintf(prefix, " SUBSTANCE OF: "); - break; - case ISPARTPTR: - sprintf(prefix, " PART OF: "); - break; - default: - sprintf(prefix, "=> "); - break; - } - - /* Read synset pointed to */ - cursyn=read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - /* For Pertainyms and Participles pointing to a specific - sense, indicate the sense then retrieve the synset - pointed to and other info as determined by type. - Otherwise, just print the synset pointed to. */ - - if ((ptrtyp == PERTPTR || ptrtyp == PPLPTR) && - synptr->pto[i] != 0) { - sprintf(tbuf, " (Sense %d)\n", - cursyn->wnsns[synptr->pto[i] - 1]); - printsynset(prefix, cursyn, tbuf, DEFOFF, synptr->pto[i], - SKIP_ANTS, PRINT_MARKER); - if (ptrtyp == PPLPTR) { /* adjective pointing to verb */ - printsynset(" =>", cursyn, "\n", - DEFON, ALLWORDS, PRINT_ANTS, PRINT_MARKER); - traceptrs(cursyn, HYPERPTR, getpos(cursyn->pos), 0); - } else if (dbase == ADV) { /* adverb pointing to adjective */ - printsynset(" =>", cursyn, "\n",DEFON, ALLWORDS, - ((getsstype(cursyn->pos) == SATELLITE) - ? SKIP_ANTS : PRINT_ANTS), PRINT_MARKER); -#ifdef FOOP - traceptrs(cursyn, HYPERPTR, getpos(cursyn->pos), 0); -#endif - } else { /* adjective pointing to noun */ - printsynset(" =>", cursyn, "\n", - DEFON, ALLWORDS, PRINT_ANTS, PRINT_MARKER); - traceptrs(cursyn, HYPERPTR, getpos(cursyn->pos), 0); - } - } else if (ptrtyp == ANTPTR && dbase != ADJ && synptr->pto[i] != 0) { - sprintf(tbuf, " (Sense %d)\n", - cursyn->wnsns[synptr->pto[i] - 1]); - printsynset(prefix, cursyn, tbuf, DEFOFF, synptr->pto[i], - SKIP_ANTS, PRINT_MARKER); - printsynset(" =>", cursyn, "\n", DEFON, ALLWORDS, - PRINT_ANTS, PRINT_MARKER); - } else - printsynset(prefix, cursyn, "\n", DEFON, ALLWORDS, - PRINT_ANTS, PRINT_MARKER); - - /* For HOLONYMS and MERONYMS, keep track of last one - printed in buffer so results can be truncated later. */ - - if (ptrtyp >= ISMEMBERPTR && ptrtyp <= HASPARTPTR) - lastholomero = strlen(searchbuffer); - - if(depth) { - depth = depthcheck(depth, cursyn); - traceptrs(cursyn, ptrtyp, getpos(cursyn->pos), (depth+1)); - - free_synset(cursyn); - } else - free_synset(cursyn); - } - } -} - -static void tracecoords(SynsetPtr synptr, int ptrtyp, int dbase, int depth) -{ - int i; - SynsetPtr cursyn; - - interface_doevents(); - if (abortsearch) - return; - - for(i = 0; i < synptr->ptrcount; i++) { - if((synptr->ptrtyp[i] == HYPERPTR || synptr->ptrtyp[i] == INSTANCE) && - ((synptr->pfrm[i] == 0) || - (synptr->pfrm[i] == synptr->whichword))) { - - if(!prflag) { - printsns(synptr, sense + 1); - prflag = 1; - } - printspaces(TRACEC, depth); - - cursyn = read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - printsynset("-> ", cursyn, "\n", DEFON, ALLWORDS, - SKIP_ANTS, PRINT_MARKER); - - traceptrs(cursyn, ptrtyp, getpos(cursyn->pos), depth); - - if(depth) { - depth = depthcheck(depth, cursyn); - tracecoords(cursyn, ptrtyp, getpos(cursyn->pos), (depth+1)); - free_synset(cursyn); - } else - free_synset(cursyn); - } - } -} - -static void traceclassif(SynsetPtr synptr, int dbase, int search) -{ - int i, j, idx; - SynsetPtr cursyn; - long int prlist[1024]; - char head[60]; - int svwnsnsflag; - - interface_doevents(); - if (abortsearch) - return; - - idx = 0; - - for (i = 0; i < synptr->ptrcount; i++) { - if (((synptr->ptrtyp[i] >= CLASSIF_START) && - (synptr->ptrtyp[i] <= CLASSIF_END) && search == CLASSIFICATION) || - - ((synptr->ptrtyp[i] >= CLASS_START) && - (synptr->ptrtyp[i] <= CLASS_END) && search == CLASS) ) { - - if (!prflag) { - printsns(synptr, sense + 1); - prflag = 1; - } - - cursyn = read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - for (j = 0; j < idx; j++) { - if (synptr->ptroff[i] == prlist[j]) { - break; - } - } - - if (j == idx) { - prlist[idx++] = synptr->ptroff[i]; - printspaces(TRACEP, 0); - - if (synptr->ptrtyp[i] == CLASSIF_CATEGORY) - strcpy(head, "TOPIC->("); - else if (synptr->ptrtyp[i] == CLASSIF_USAGE) - strcpy(head, "USAGE->("); - else if (synptr->ptrtyp[i] == CLASSIF_REGIONAL) - strcpy(head, "REGION->("); - else if (synptr->ptrtyp[i] == CLASS_CATEGORY) - strcpy(head, "TOPIC_TERM->("); - else if (synptr->ptrtyp[i] == CLASS_USAGE) - strcpy(head, "USAGE_TERM->("); - else if (synptr->ptrtyp[i] == CLASS_REGIONAL) - strcpy(head, "REGION_TERM->("); - - strcat(head, partnames[synptr->ppos[i]]); - strcat(head, ") "); - - svwnsnsflag = wnsnsflag; - wnsnsflag = 1; - - printsynset(head, cursyn, "\n", DEFOFF, ALLWORDS, - SKIP_ANTS, SKIP_MARKER); - - wnsnsflag = svwnsnsflag; - } - - free_synset(cursyn); - } - } -} - -static void tracenomins(SynsetPtr synptr, int dbase) -{ - int i, j, idx; - SynsetPtr cursyn; - long int prlist[1024]; - char prefix[40], tbuf[20]; - - interface_doevents(); - if (abortsearch) - return; - - idx = 0; - - for (i = 0; i < synptr->ptrcount; i++) { - if ((synptr->ptrtyp[i] == DERIVATION) && - (synptr->pfrm[i] == synptr->whichword)) { - - if (!prflag) { - printsns(synptr, sense + 1); - prflag = 1; - } - - printspaces(TRACEP, 0); - - sprintf(prefix, "RELATED TO->(%s) ", - partnames[synptr->ppos[i]]); - - cursyn = read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - sprintf(tbuf, "#%d\n", - cursyn->wnsns[synptr->pto[i] - 1]); - printsynset(prefix, cursyn, tbuf, DEFOFF, synptr->pto[i], - SKIP_ANTS, SKIP_MARKER); - - /* only print synset once, even if more than one link */ - - for (j = 0; j < idx; j++) { -#ifdef FOOP - if (synptr->ptroff[i] == prlist[j]) { - break; - } -#endif - } - - if (j == idx) { - prlist[idx++] = synptr->ptroff[i]; - printspaces(TRACEP, 2); - printsynset("=> ", cursyn, "\n", DEFON, ALLWORDS, - SKIP_ANTS, PRINT_MARKER); - } - - free_synset(cursyn); - } - } -} - -/* Trace through the hypernym tree and print all MEMBER, STUFF - and PART info. */ - -static void traceinherit(SynsetPtr synptr, int ptrbase, int dbase, int depth) -{ - int i; - SynsetPtr cursyn; - - interface_doevents(); - if (abortsearch) - return; - - for(i=0;iptrcount;i++) { - if((synptr->ptrtyp[i] == HYPERPTR) && - ((synptr->pfrm[i] == 0) || - (synptr->pfrm[i] == synptr->whichword))) { - - if(!prflag) { - printsns(synptr, sense + 1); - prflag = 1; - } - printspaces(TRACEI, depth); - - cursyn = read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - printsynset("=> ", cursyn, "\n", DEFON, ALLWORDS, - SKIP_ANTS, PRINT_MARKER); - - traceptrs(cursyn, ptrbase, NOUN, depth); - traceptrs(cursyn, ptrbase + 1, NOUN, depth); - traceptrs(cursyn, ptrbase + 2, NOUN, depth); - - if(depth) { - depth = depthcheck(depth, cursyn); - traceinherit(cursyn, ptrbase, getpos(cursyn->pos), (depth+1)); - free_synset(cursyn); - } else - free_synset(cursyn); - } - } - - /* Truncate search buffer after last holo/meronym printed */ - searchbuffer[lastholomero] = '\0'; -} - -static void partsall(SynsetPtr synptr, int ptrtyp) -{ - int ptrbase; - int i, hasptr = 0; - - ptrbase = (ptrtyp == HMERONYM) ? HASMEMBERPTR : ISMEMBERPTR; - - /* First, print out the MEMBER, STUFF, PART info for this synset */ - - for (i = 0; i < 3; i++) { - if (HasPtr(synptr, ptrbase + i)) { - traceptrs(synptr, ptrbase + i, NOUN, 1); - hasptr++; - } - interface_doevents(); - if (abortsearch) - return; - } - - /* Print out MEMBER, STUFF, PART info for hypernyms on - HMERONYM search only */ - -/* if (hasptr && ptrtyp == HMERONYM) { */ - if (ptrtyp == HMERONYM) { - lastholomero = strlen(searchbuffer); - traceinherit(synptr, ptrbase, NOUN, 1); - } -} - -static void traceadjant(SynsetPtr synptr) -{ - SynsetPtr newsynptr; - int i, j; - int anttype = DIRECT_ANT; - SynsetPtr simptr, antptr; - static char similar[] = " => "; - - /* This search is only applicable for ADJ synsets which have - either direct or indirect antonyms (not valid for pertainyms). */ - - if (synptr->sstype == DIRECT_ANT || synptr->sstype == INDIRECT_ANT) { - printsns(synptr, sense + 1); - printbuffer("\n"); - - /* if indirect, get cluster head */ - - if(synptr->sstype == INDIRECT_ANT) { - anttype = INDIRECT_ANT; - i = 0; - while (synptr->ptrtyp[i] != SIMPTR) i++; - newsynptr = read_synset(ADJ, synptr->ptroff[i], ""); - } else - newsynptr = synptr; - - /* find antonyms - if direct, make sure that the antonym - ptr we're looking at is from this word */ - - for (i = 0; i < newsynptr->ptrcount; i++) { - - if (newsynptr->ptrtyp[i] == ANTPTR && - ((anttype == DIRECT_ANT && - newsynptr->pfrm[i] == newsynptr->whichword) || - (anttype == INDIRECT_ANT))) { - - /* read the antonym's synset and print it. if a - direct antonym, print it's satellites. */ - - antptr = read_synset(ADJ, newsynptr->ptroff[i], ""); - - if (anttype == DIRECT_ANT) { - printsynset("", antptr, "\n", DEFON, ALLWORDS, - PRINT_ANTS, PRINT_MARKER); - for(j = 0; j < antptr->ptrcount; j++) { - if(antptr->ptrtyp[j] == SIMPTR) { - simptr = read_synset(ADJ, antptr->ptroff[j], ""); - printsynset(similar, simptr, "\n", DEFON, - ALLWORDS, SKIP_ANTS, PRINT_MARKER); - free_synset(simptr); - } - } - } else - printantsynset(antptr, "\n", anttype, DEFON); - - free_synset(antptr); - } - } - if (newsynptr != synptr) - free_synset(newsynptr); - } -} - - -/* Fetch the given example sentence from the example file and print it out */ - -void getexample(char *offset, char *wd) -{ - char *line; - char sentbuf[512]; - - if (vsentfilefp != NULL) { - if (line = bin_search(offset, vsentfilefp)) { - while(*line != ' ') - line++; - - printbuffer(" EX: "); - sprintf(sentbuf, line, wd); - printbuffer(sentbuf); - } - } -} - -/* Find the example sentence references in the example sentence index file */ - -int findexample(SynsetPtr synptr) -{ - char tbuf[256], *temp, *offset; - int wdnum; - int found = 0; - - if (vidxfilefp != NULL) { - wdnum = synptr->whichword - 1; - - sprintf(tbuf,"%s%%%-1.1d:%-2.2d:%-2.2d::", - synptr->words[wdnum], - getpos(synptr->pos), - synptr->fnum, - synptr->lexid[wdnum]); - - if ((temp = bin_search(tbuf, vidxfilefp)) != NULL) { - - /* skip over sense key and get sentence numbers */ - - temp += strlen(synptr->words[wdnum]) + 11; - strcpy(tbuf, temp); - - offset = strtok(tbuf, " ,\n"); - - while (offset) { - getexample(offset, synptr->words[wdnum]); - offset = strtok(NULL, ",\n"); - } - found = 1; - } - } - return(found); -} - -static void printframe(SynsetPtr synptr, int prsynset) -{ - int i; - - if (prsynset) - printsns(synptr, sense + 1); - - if (!findexample(synptr)) { - for(i = 0; i < synptr->fcount; i++) { - if ((synptr->frmto[i] == synptr->whichword) || - (synptr->frmto[i] == 0)) { - if (synptr->frmto[i] == synptr->whichword) - printbuffer(" => "); - else - printbuffer(" *> "); - printbuffer(frametext[synptr->frmid[i]]); - printbuffer("\n"); - } - } - } -} - -static void printseealso(SynsetPtr synptr) -{ - SynsetPtr cursyn; - int i, first = 1; - int svwnsnsflag; - char firstline_v[] = " Phrasal Verb-> "; - char firstline_nar[] = " Also See-> "; - char otherlines[] = "; "; - char *prefix; - - if ( getpos( synptr->pos ) == VERB ) - prefix = firstline_v; - else - prefix = firstline_nar; - - /* Find all SEEALSO pointers from the searchword and print the - word or synset pointed to. */ - - for(i = 0; i < synptr->ptrcount; i++) { - if ((synptr->ptrtyp[i] == SEEALSOPTR) && - ((synptr->pfrm[i] == 0) || - (synptr->pfrm[i] == synptr->whichword))) { - - cursyn = read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - - svwnsnsflag = wnsnsflag; - wnsnsflag = 1; - printsynset(prefix, cursyn, "", DEFOFF, - synptr->pto[i] == 0 ? ALLWORDS : synptr->pto[i], - SKIP_ANTS, SKIP_MARKER); - wnsnsflag = svwnsnsflag; - - free_synset(cursyn); - - if (first) { - prefix = otherlines; - first = 0; - } - } - } - if (!first) - printbuffer("\n"); -} - -static void freq_word(IndexPtr index) -{ - int familiar=0; - int cnt; - static char *a_an[] = { - "", "a noun", "a verb", "an adjective", "an adverb" }; - static char *freqcats[] = { - "extremely rare","very rare","rare","uncommon","common", - "familiar","very familiar","extremely familiar" - }; - - if(index) { - cnt = index->sense_cnt; - if (cnt == 0) familiar = 0; - if (cnt == 1) familiar = 1; - if (cnt == 2) familiar = 2; - if (cnt >= 3 && cnt <= 4) familiar = 3; - if (cnt >= 5 && cnt <= 8) familiar = 4; - if (cnt >= 9 && cnt <= 16) familiar = 5; - if (cnt >= 17 && cnt <= 32) familiar = 6; - if (cnt > 32 ) familiar = 7; - - sprintf(tmpbuf, - "\n%s used as %s is %s (polysemy count = %d)\n", - index->wd, a_an[getpos(index->pos)], freqcats[familiar], cnt); - printbuffer(tmpbuf); - } -} - -void wngrep (char *word_passed, int pos) { - FILE *inputfile; - char word[256]; - int wordlen, linelen, loc; - char line[1024]; - int count = 0; - - inputfile = indexfps[pos]; - if (inputfile == NULL) { - sprintf (msgbuf, "WordNet library error: Can't perform compounds " - "search because %s index file is not open\n", partnames[pos]); - display_message (msgbuf); - return; - } - rewind(inputfile); - - strcpy (word, word_passed); - ToLowerCase(word); /* map to lower case for index file search */ - strsubst (word, ' ', '_'); /* replace spaces with underscores */ - wordlen = strlen (word); - - while (fgets (line, 1024, inputfile) != NULL) { - for (linelen = 0; line[linelen] != ' '; linelen++) {} - if (linelen < wordlen) - continue; - line[linelen] = '\0'; - strstr_init (line, word); - while ((loc = strstr_getnext ()) != -1) { - if ( - /* at the start of the line */ - (loc == 0) || - /* at the end of the line */ - ((linelen - wordlen) == loc) || - /* as a word in the middle of the line */ - (((line[loc - 1] == '-') || (line[loc - 1] == '_')) && - ((line[loc + wordlen] == '-') || (line[loc + wordlen] == '_'))) - ) { - strsubst (line, '_', ' '); - sprintf (tmpbuf, "%s\n", line); - printbuffer (tmpbuf); - break; - } - } - if (count++ % 2000 == 0) { - interface_doevents (); - if (abortsearch) break; - } - } -} - -/* Stucture to keep track of 'relative groups'. All senses in a relative - group are displayed together at end of search. Transitivity is - supported, so if either of a new set of related senses is already - in a 'relative group', the other sense is added to that group as well. */ - -struct relgrp { - int senses[MAXSENSE]; - struct relgrp *next; -}; -static struct relgrp *rellist; - -static struct relgrp *mkrellist(void); - -/* Simple hash function */ -#define HASHTABSIZE 1223 /* Prime number. Must be > 2*MAXTOPS */ -#define hash(n) ((n) % HASHTABSIZE) - -/* Find relative groups for all senses of target word in given part - of speech. */ - -static void relatives(IndexPtr idx, int dbase) -{ - rellist = NULL; - - switch(dbase) { - - case VERB: - findverbgroups(idx); - interface_doevents(); - if (abortsearch) - break; - printrelatives(idx, VERB); - break; - default: - break; - } - - free_rellist(); -} - -static void findverbgroups(IndexPtr idx) -{ - int i, j, k; - SynsetPtr synset; - - assert(idx); - - /* Read all senses */ - - for (i = 0; i < idx->off_cnt; i++) { - - synset = read_synset(VERB, idx->offset[i], idx->wd); - - /* Look for VERBGROUP ptr(s) for this sense. If found, - create group for senses, or add to existing group. */ - - for (j = 0; j < synset->ptrcount; j++) { - if (synset->ptrtyp[j] == VERBGROUP) { - /* Need to find sense number for ptr offset */ - for (k = 0; k < idx->off_cnt; k++) { - if (synset->ptroff[j] == idx->offset[k]) { - add_relatives(VERB, idx, i, k); - break; - } - } - } - } - free_synset(synset); - } -} - -static void add_relatives(int pos, IndexPtr idx, int rel1, int rel2) -{ - int i; - struct relgrp *rel, *last, *r; - - /* If either of the new relatives are already in a relative group, - then add the other to the existing group (transitivity). - Otherwise create a new group and add these 2 senses to it. */ - - for (rel = rellist; rel; rel = rel->next) { - if (rel->senses[rel1] == 1 || rel->senses[rel2] == 1) { - rel->senses[rel1] = rel->senses[rel2] = 1; - - /* If part of another relative group, merge the groups */ - for (r = rellist; r; r = r->next) { - if (r != rel && - (r->senses[rel1] == 1 || r->senses[rel2] == 1)) { - for (i = 0; i < MAXSENSE; i++) - rel->senses[i] |= r->senses[i]; - } - } - return; - } - last = rel; - } - rel = mkrellist(); - rel->senses[rel1] = rel->senses[rel2] = 1; - if (rellist == NULL) - rellist = rel; - else - last->next = rel; -} - -static struct relgrp *mkrellist(void) -{ - struct relgrp *rel; - int i; - - rel = (struct relgrp *) malloc(sizeof(struct relgrp)); - assert(rel); - for (i = 0; i < MAXSENSE; i++) - rel->senses[i] = 0; - rel->next = NULL; - return(rel); -} - -static void free_rellist(void) -{ - struct relgrp *rel, *next; - - rel = rellist; - while(rel) { - next = rel->next; - free(rel); - rel = next; - } -} - -static void printrelatives(IndexPtr idx, int dbase) -{ - SynsetPtr synptr; - struct relgrp *rel; - int i, flag; - int outsenses[MAXSENSE]; - - for (i = 0; i < idx->off_cnt; i++) - outsenses[i] = 0; - prflag = 1; - - for (rel = rellist; rel; rel = rel->next) { - flag = 0; - for (i = 0; i < idx->off_cnt; i++) { - if (rel->senses[i] && !outsenses[i]) { - flag = 1; - synptr = read_synset(dbase, idx->offset[i], ""); - printsns(synptr, i + 1); - traceptrs(synptr, HYPERPTR, dbase, 0); - outsenses[i] = 1; - free_synset(synptr); - } - } - if (flag) - printbuffer("--------------\n"); - } - - for (i = 0; i < idx->off_cnt; i++) { - if (!outsenses[i]) { - synptr = read_synset(dbase, idx->offset[i], ""); - printsns(synptr, i + 1); - traceptrs(synptr, HYPERPTR, dbase, 0); - printbuffer("--------------\n"); - free_synset(synptr); - } - } -} - -/* - Search code interfaces to WordNet database - - findtheinfo() - print search results and return ptr to output buffer - findtheinfo_ds() - return search results in linked list data structrure -*/ - -char *findtheinfo(char *searchstr, int dbase, int ptrtyp, int whichsense) -{ - SynsetPtr cursyn; - IndexPtr idx = NULL; - int depth = 0; - int i, offsetcnt; - char *bufstart; - unsigned long offsets[MAXSENSE]; - int skipit; - - /* Initializations - - clear output buffer, search results structure, flags */ - - searchbuffer[0] = '\0'; - - wnresults.numforms = wnresults.printcnt = 0; - wnresults.searchbuf = searchbuffer; - wnresults.searchds = NULL; - - abortsearch = overflag = 0; - for (i = 0; i < MAXSENSE; i++) - offsets[i] = 0; - - switch (ptrtyp) { - case OVERVIEW: - WNOverview(searchstr, dbase); - break; - case FREQ: - while ((idx = getindex(searchstr, dbase)) != NULL) { - searchstr = NULL; - wnresults.SenseCount[wnresults.numforms] = idx->off_cnt; - freq_word(idx); - free_index(idx); - wnresults.numforms++; - } - break; - case WNGREP: - wngrep(searchstr, dbase); - break; - case RELATIVES: - case VERBGROUP: - while ((idx = getindex(searchstr, dbase)) != NULL) { - searchstr = NULL; - wnresults.SenseCount[wnresults.numforms] = idx->off_cnt; - relatives(idx, dbase); - free_index(idx); - wnresults.numforms++; - } - break; - default: - - /* If negative search type, set flag for recursive search */ - if (ptrtyp < 0) { - ptrtyp = -ptrtyp; - depth = 1; - } - bufstart = searchbuffer; - offsetcnt = 0; - - /* look at all spellings of word */ - - while ((idx = getindex(searchstr, dbase)) != NULL) { - - searchstr = NULL; /* clear out for next call to getindex() */ - wnresults.SenseCount[wnresults.numforms] = idx->off_cnt; - wnresults.OutSenseCount[wnresults.numforms] = 0; - - /* Print extra sense msgs if looking at all senses */ - if (whichsense == ALLSENSES) - printbuffer( -" \n"); - - /* Go through all of the searchword's senses in the - database and perform the search requested. */ - - for (sense = 0; sense < idx->off_cnt; sense++) { - - if (whichsense == ALLSENSES || whichsense == sense + 1) { - prflag = 0; - - /* Determine if this synset has already been done - with a different spelling. If so, skip it. */ - for (i = 0, skipit = 0; i < offsetcnt && !skipit; i++) { - if (offsets[i] == idx->offset[sense]) - skipit = 1; - } - if (skipit != 1) { - offsets[offsetcnt++] = idx->offset[sense]; - cursyn = read_synset(dbase, idx->offset[sense], idx->wd); - switch(ptrtyp) { - case ANTPTR: - if(dbase == ADJ) - traceadjant(cursyn); - else - traceptrs(cursyn, ANTPTR, dbase, depth); - break; - - case COORDS: - tracecoords(cursyn, HYPOPTR, dbase, depth); - break; - - case FRAMES: - printframe(cursyn, 1); - break; - - case MERONYM: - traceptrs(cursyn, HASMEMBERPTR, dbase, depth); - traceptrs(cursyn, HASSTUFFPTR, dbase, depth); - traceptrs(cursyn, HASPARTPTR, dbase, depth); - break; - - case HOLONYM: - traceptrs(cursyn, ISMEMBERPTR, dbase, depth); - traceptrs(cursyn, ISSTUFFPTR, dbase, depth); - traceptrs(cursyn, ISPARTPTR, dbase, depth); - break; - - case HMERONYM: - partsall(cursyn, HMERONYM); - break; - - case HHOLONYM: - partsall(cursyn, HHOLONYM); - break; - - case SEEALSOPTR: - printseealso(cursyn); - break; - -#ifdef FOOP - case PPLPTR: - traceptrs(cursyn, ptrtyp, dbase, depth); - traceptrs(cursyn, PPLPTR, dbase, depth); - break; -#endif - - case SIMPTR: - case SYNS: - case HYPERPTR: - printsns(cursyn, sense + 1); - prflag = 1; - - traceptrs(cursyn, ptrtyp, dbase, depth); - - if (dbase == ADJ) { -/* traceptrs(cursyn, PERTPTR, dbase, depth); */ - traceptrs(cursyn, PPLPTR, dbase, depth); - } else if (dbase == ADV) { -/* traceptrs(cursyn, PERTPTR, dbase, depth);*/ - } - - if (saflag) /* print SEE ALSO pointers */ - printseealso(cursyn); - - if (dbase == VERB && frflag) - printframe(cursyn, 0); - break; - - case PERTPTR: - printsns(cursyn, sense + 1); - prflag = 1; - - traceptrs(cursyn, PERTPTR, dbase, depth); - break; - - case DERIVATION: - tracenomins(cursyn, dbase); - break; - - case CLASSIFICATION: - case CLASS: - traceclassif(cursyn, dbase, ptrtyp); - break; - - default: - traceptrs(cursyn, ptrtyp, dbase, depth); - break; - - } /* end switch */ - - free_synset(cursyn); - - } /* end if (skipit) */ - - } /* end if (whichsense) */ - - if (skipit != 1) { - interface_doevents(); - if ((whichsense == sense + 1) || abortsearch || overflag) - break; /* break out of loop - we're done */ - } - - } /* end for (sense) */ - - /* Done with an index entry - patch in number of senses output */ - - if (whichsense == ALLSENSES) { - i = wnresults.OutSenseCount[wnresults.numforms]; - if (i == idx->off_cnt && i == 1) - sprintf(tmpbuf, "\n1 sense of %s", idx->wd); - else if (i == idx->off_cnt) - sprintf(tmpbuf, "\n%d senses of %s", i, idx->wd); - else if (i > 0) /* printed some senses */ - sprintf(tmpbuf, "\n%d of %d senses of %s", - i, idx->off_cnt, idx->wd); - - /* Find starting offset in searchbuffer for this index - entry and patch string in. Then update bufstart - to end of searchbuffer for start of next index entry. */ - - if (i > 0) { - if (wnresults.numforms > 0) { - bufstart[0] = '\n'; - bufstart++; - } - strncpy(bufstart, tmpbuf, strlen(tmpbuf)); - bufstart = searchbuffer + strlen(searchbuffer); - } - } - - free_index(idx); - - interface_doevents(); - if (overflag || abortsearch) - break; /* break out of while (idx) loop */ - - wnresults.numforms++; - - } /* end while (idx) */ - - } /* end switch */ - - interface_doevents(); - if (abortsearch) - printbuffer("\nSearch Interrupted...\n"); - else if (overflag) - sprintf(searchbuffer, - "Search too large. Narrow search and try again...\n"); - - /* replace underscores with spaces before returning */ - - return(strsubst(searchbuffer, '_', ' ')); -} - -SynsetPtr findtheinfo_ds(char *searchstr, int dbase, int ptrtyp, int whichsense) -{ - IndexPtr idx; - SynsetPtr cursyn; - SynsetPtr synlist = NULL, lastsyn = NULL; - int depth = 0; - int newsense = 0; - - wnresults.numforms = 0; - wnresults.printcnt = 0; - - while ((idx = getindex(searchstr, dbase)) != NULL) { - - searchstr = NULL; /* clear out for next call */ - newsense = 1; - - if(ptrtyp < 0) { - ptrtyp = -ptrtyp; - depth = 1; - } - - wnresults.SenseCount[wnresults.numforms] = idx->off_cnt; - wnresults.OutSenseCount[wnresults.numforms] = 0; - wnresults.searchbuf = NULL; - wnresults.searchds = NULL; - - /* Go through all of the searchword's senses in the - database and perform the search requested. */ - - for(sense = 0; sense < idx->off_cnt; sense++) { - if (whichsense == ALLSENSES || whichsense == sense + 1) { - cursyn = read_synset(dbase, idx->offset[sense], idx->wd); - if (lastsyn) { - if (newsense) - lastsyn->nextform = cursyn; - else - lastsyn->nextss = cursyn; - } - if (!synlist) - synlist = cursyn; - newsense = 0; - - cursyn->searchtype = ptrtyp; - cursyn->ptrlist = traceptrs_ds(cursyn, ptrtyp, - getpos(cursyn->pos), - depth); - - lastsyn = cursyn; - - if (whichsense == sense + 1) - break; - } - } - free_index(idx); - wnresults.numforms++; - - if (ptrtyp == COORDS) { /* clean up by removing hypernym */ - lastsyn = synlist->ptrlist; - synlist->ptrlist = lastsyn->ptrlist; - free_synset(lastsyn); - } - } - wnresults.searchds = synlist; - return(synlist); -} - -/* Recursive search algorithm to trace a pointer tree and return results - in linked list of data structures. */ - -SynsetPtr traceptrs_ds(SynsetPtr synptr, int ptrtyp, int dbase, int depth) -{ - int i; - SynsetPtr cursyn, synlist = NULL, lastsyn = NULL; - int tstptrtyp, docoords; - - /* If synset is a satellite, find the head word of its - head synset and the head word's sense number. */ - - if (getsstype(synptr->pos) == SATELLITE) { - for (i = 0; i < synptr->ptrcount; i++) - if (synptr->ptrtyp[i] == SIMPTR) { - cursyn = read_synset(synptr->ppos[i], - synptr->ptroff[i], - ""); - synptr->headword = malloc(strlen(cursyn->words[0]) + 1); - assert(synptr->headword); - strcpy(synptr->headword, cursyn->words[0]); - synptr->headsense = cursyn->lexid[0]; - free_synset(cursyn); - break; - } - } - - if (ptrtyp == COORDS) { - tstptrtyp = HYPERPTR; - docoords = 1; - } else { - tstptrtyp = ptrtyp; - docoords = 0; - } - - for (i = 0; i < synptr->ptrcount; i++) { - if((synptr->ptrtyp[i] == tstptrtyp) && - ((synptr->pfrm[i] == 0) || - (synptr->pfrm[i] == synptr->whichword))) { - - cursyn=read_synset(synptr->ppos[i], synptr->ptroff[i], ""); - cursyn->searchtype = ptrtyp; - - if (lastsyn) - lastsyn->nextss = cursyn; - if (!synlist) - synlist = cursyn; - lastsyn = cursyn; - - if(depth) { - depth = depthcheck(depth, cursyn); - cursyn->ptrlist = traceptrs_ds(cursyn, ptrtyp, - getpos(cursyn->pos), - (depth+1)); - } else if (docoords) { - cursyn->ptrlist = traceptrs_ds(cursyn, HYPOPTR, NOUN, 0); - } - } - } - return(synlist); -} - -static void WNOverview(char *searchstr, int pos) -{ - SynsetPtr cursyn; - IndexPtr idx = NULL; - char *cpstring = searchstr, *bufstart; - int sense, i, offsetcnt; - int svdflag, skipit; - unsigned long offsets[MAXSENSE]; - - cpstring = searchstr; - bufstart = searchbuffer; - for (i = 0; i < MAXSENSE; i++) - offsets[i] = 0; - offsetcnt = 0; - - while ((idx = getindex(cpstring, pos)) != NULL) { - - cpstring = NULL; /* clear for next call to getindex() */ - wnresults.SenseCount[wnresults.numforms++] = idx->off_cnt; - wnresults.OutSenseCount[wnresults.numforms] = 0; - - printbuffer( -" \n"); - - /* Print synset for each sense. If requested, precede - synset with synset offset and/or lexical file information.*/ - - for (sense = 0; sense < idx->off_cnt; sense++) { - - for (i = 0, skipit = 0; i < offsetcnt && !skipit; i++) - if (offsets[i] == idx->offset[sense]) - skipit = 1; - - if (!skipit) { - offsets[offsetcnt++] = idx->offset[sense]; - cursyn = read_synset(pos, idx->offset[sense], idx->wd); - if (idx->tagged_cnt != -1 && - ((sense + 1) <= idx->tagged_cnt)) { - sprintf(tmpbuf, "%d. (%d) ", - sense + 1, GetTagcnt(idx, sense + 1)); - } else { - sprintf(tmpbuf, "%d. ", sense + 1); - } - - svdflag = dflag; - dflag = 1; - printsynset(tmpbuf, cursyn, "\n", DEFON, ALLWORDS, - SKIP_ANTS, SKIP_MARKER); - dflag = svdflag; - wnresults.OutSenseCount[wnresults.numforms]++; - wnresults.printcnt++; - - free_synset(cursyn); - } - } - - /* Print sense summary message */ - - i = wnresults.OutSenseCount[wnresults.numforms]; - - if (i > 0) { - if (i == 1) - sprintf(tmpbuf, "\nThe %s %s has 1 sense", - partnames[pos], idx->wd); - else - sprintf(tmpbuf, "\nThe %s %s has %d senses", - partnames[pos], idx->wd, i); - if (idx->tagged_cnt > 0) - sprintf(tmpbuf + strlen(tmpbuf), - " (first %d from tagged texts)\n", idx->tagged_cnt); - else if (idx->tagged_cnt == 0) - sprintf(tmpbuf + strlen(tmpbuf), - " (no senses from tagged texts)\n"); - - strncpy(bufstart, tmpbuf, strlen(tmpbuf)); - bufstart = searchbuffer + strlen(searchbuffer); - } else - bufstart[0] = '\0'; - - wnresults.numforms++; - free_index(idx); - } -} - -/* Do requested search on synset passed, returning output in buffer. */ - -char *do_trace(SynsetPtr synptr, int ptrtyp, int dbase, int depth) -{ - searchbuffer[0] = '\0'; /* clear output buffer */ - traceptrs(synptr, ptrtyp, dbase, depth); - return(searchbuffer); -} - -/* Set bit for each search type that is valid for the search word - passed and return bit mask. */ - -unsigned int is_defined(char *searchstr, int dbase) -{ - IndexPtr index; - int i; - unsigned long retval = 0; - - wnresults.numforms = wnresults.printcnt = 0; - wnresults.searchbuf = NULL; - wnresults.searchds = NULL; - - while ((index = getindex(searchstr, dbase)) != NULL) { - searchstr = NULL; /* clear out for next getindex() call */ - - wnresults.SenseCount[wnresults.numforms] = index->off_cnt; - - /* set bits that must be true for all words */ - - retval |= bit(SIMPTR) | bit(FREQ) | bit(SYNS)| - bit(WNGREP) | bit(OVERVIEW); - - /* go through list of pointer characters and set appropriate bits */ - - for(i = 0; i < index->ptruse_cnt; i++) { - - if (index->ptruse[i] <= LASTTYPE) { - retval |= bit(index->ptruse[i]); - } else if (index->ptruse[i] == INSTANCE) { - retval |= bit(HYPERPTR); - } else if (index->ptruse[i] == INSTANCES) { - retval |= bit(HYPOPTR); - } - - if (index->ptruse[i] == SIMPTR) { - retval |= bit(ANTPTR); - } -#ifdef FOOP - - if (index->ptruse[i] >= CLASSIF_START && - index->ptruse[i] <= CLASSIF_END) { - retval |= bit(CLASSIFICATION); - } - - - if (index->ptruse[i] >= CLASS_START && - index->ptruse[i] <= CLASS_END) { - retval |= bit(CLASS); - } -#endif - - if (index->ptruse[i] >= ISMEMBERPTR && - index->ptruse[i] <= ISPARTPTR) - retval |= bit(HOLONYM); - else if (index->ptruse[i] >= HASMEMBERPTR && - index->ptruse[i] <= HASPARTPTR) - retval |= bit(MERONYM); - - } - - if (dbase == NOUN) { - - /* check for inherited holonyms and meronyms */ - - if (HasHoloMero(index, HMERONYM)) - retval |= bit(HMERONYM); - if (HasHoloMero(index, HHOLONYM)) - retval |= bit(HHOLONYM); - - /* if synset has hypernyms, enable coordinate search */ - - if (retval & bit(HYPERPTR)) - retval |= bit(COORDS); - } else if (dbase == VERB) { - - /* if synset has hypernyms, enable coordinate search */ - if (retval & bit(HYPERPTR)) - retval |= bit(COORDS); - - /* enable grouping of related synsets and verb frames */ - - retval |= bit(RELATIVES) | bit(FRAMES); - } - - free_index(index); - wnresults.numforms++; - } - return(retval); -} - -/* Determine if any of the synsets that this word is in have inherited - meronyms or holonyms. */ - -static int HasHoloMero(IndexPtr index, int ptrtyp) -{ - int i, j; - SynsetPtr synset, psynset; - int found=0; - int ptrbase; - - ptrbase = (ptrtyp == HMERONYM) ? HASMEMBERPTR : ISMEMBERPTR; - - for(i = 0; i < index->off_cnt; i++) { - synset = read_synset(NOUN, index->offset[i], ""); - for (j = 0; j < synset->ptrcount; j++) { - if (synset->ptrtyp[j] == HYPERPTR) { - psynset = read_synset(NOUN, synset->ptroff[j], ""); - found += HasPtr(psynset, ptrbase); - found += HasPtr(psynset, ptrbase + 1); - found += HasPtr(psynset, ptrbase + 2); - - free_synset(psynset); - } - } - free_synset(synset); - } - return(found); -} - -static int HasPtr(SynsetPtr synptr, int ptrtyp) -{ - int i; - - for(i = 0; i < synptr->ptrcount; i++) { - if(synptr->ptrtyp[i] == ptrtyp) { - return(1); - } - } - return(0); -} - -/* Set bit for each POS that search word is in. 0 returned if - word is not in WordNet. */ - -unsigned int in_wn(char *word, int pos) -{ - int i; - unsigned int retval = 0; - - if (pos == ALL_POS) { - for (i = 1; i < NUMPARTS + 1; i++) - if (indexfps[i] != NULL && bin_search(word, indexfps[i]) != NULL) - retval |= bit(i); - } else if (indexfps[pos] != NULL && bin_search(word,indexfps[pos]) != NULL) - retval |= bit(pos); - return(retval); -} - -static int depthcheck(int depth, SynsetPtr synptr) -{ - if(depth >= MAXDEPTH) { - sprintf(msgbuf, - "WordNet library error: Error Cycle detected\n %s\n", - synptr->words[0]); - display_message(msgbuf); - depth = -1; /* reset to get one more trace then quit */ - } - return(depth); -} - -/* Strip off () enclosed comments from a word */ - -static char *deadjify(char *word) -{ - char *y; - - adj_marker = UNKNOWN_MARKER; /* default if not adj or unknown */ - - y=word; - while(*y) { - if(*y == '(') { - if (!strncmp(y, "(a)", 3)) - adj_marker = ATTRIBUTIVE; - else if (!strncmp(y, "(ip)", 4)) - adj_marker = IMMED_POSTNOMINAL; - else if (!strncmp(y, "(p)", 3)) - adj_marker = PREDICATIVE; - *y='\0'; - } else - y++; - } - return(word); -} - -static int getsearchsense(SynsetPtr synptr, int whichword) -{ - IndexPtr idx; - int i; - - strsubst(strcpy(wdbuf, synptr->words[whichword - 1]), ' ', '_'); - strtolower(wdbuf); - - if (idx = index_lookup(wdbuf, getpos(synptr->pos))) { - for (i = 0; i < idx->off_cnt; i++) - if (idx->offset[i] == synptr->hereiam) { - free_index(idx); - return(i + 1); - } - free_index(idx); - } - return(0); -} - -static void printsynset(char *head, SynsetPtr synptr, char *tail, int definition, int wdnum, int antflag, int markerflag) -{ - int i, wdcnt; - char tbuf[SMLINEBUF]; - - tbuf[0] = '\0'; /* clear working buffer */ - - strcat(tbuf, head); /* print head */ - - /* Precede synset with additional information as indiecated - by flags */ - - if (offsetflag) /* print synset offset */ - sprintf(tbuf + strlen(tbuf),"{%8.8d} ", synptr->hereiam); - if (fileinfoflag) { /* print lexicographer file information */ - sprintf(tbuf + strlen(tbuf), "<%s> ", lexfiles[synptr->fnum]); - prlexid = 1; /* print lexicographer id after word */ - } else - prlexid = 0; - - if (wdnum) /* print only specific word asked for */ - catword(tbuf, synptr, wdnum - 1, markerflag, antflag); - else /* print all words in synset */ - for(i = 0, wdcnt = synptr->wcount; i < wdcnt; i++) { - catword(tbuf, synptr, i, markerflag, antflag); - if (i < wdcnt - 1) - strcat(tbuf, ", "); - } - - if(definition && dflag && synptr->defn) { - strcat(tbuf," -- "); - strcat(tbuf,synptr->defn); - } - - strcat(tbuf,tail); - printbuffer(tbuf); -} - -static void printantsynset(SynsetPtr synptr, char *tail, int anttype, int definition) -{ - int i, wdcnt; - char tbuf[SMLINEBUF]; - char *str; - int first = 1; - - tbuf[0] = '\0'; - - if (offsetflag) - sprintf(tbuf,"{%8.8d} ", synptr->hereiam); - if (fileinfoflag) { - sprintf(tbuf + strlen(tbuf),"<%s> ", lexfiles[synptr->fnum]); - prlexid = 1; - } else - prlexid = 0; - - /* print anotnyms from cluster head (of indirect ant) */ - - strcat(tbuf, "INDIRECT (VIA "); - for(i = 0, wdcnt = synptr->wcount; i < wdcnt; i++) { - if (first) { - str = printant(ADJ, synptr, i + 1, "%s", ", "); - first = 0; - } else - str = printant(ADJ, synptr, i + 1, ", %s", ", "); - if (*str) - strcat(tbuf, str); - } - strcat(tbuf, ") -> "); - - /* now print synonyms from cluster head (of indirect ant) */ - - for (i = 0, wdcnt = synptr->wcount; i < wdcnt; i++) { - catword(tbuf, synptr, i, SKIP_MARKER, SKIP_ANTS); - if (i < wdcnt - 1) - strcat(tbuf, ", "); - } - - if(dflag && synptr->defn && definition) { - strcat(tbuf," -- "); - strcat(tbuf,synptr->defn); - } - - strcat(tbuf,tail); - printbuffer(tbuf); -} - -static void catword(char *buf, SynsetPtr synptr, int wdnum, int adjmarker, int antflag) -{ - static char vs[] = " (vs. %s)"; - static char *markers[] = { - "", /* UNKNOWN_MARKER */ - "(predicate)", /* PREDICATIVE */ - "(prenominal)", /* ATTRIBUTIVE */ - "(postnominal)", /* IMMED_POSTNOMINAL */ - }; - - /* Copy the word (since deadjify() changes original string), - deadjify() the copy and append to buffer */ - - strcpy(wdbuf, synptr->words[wdnum]); - strcat(buf, deadjify(wdbuf)); - - /* Print additional lexicographer information and WordNet sense - number as indicated by flags */ - - if (prlexid && (synptr->lexid[wdnum] != 0)) - sprintf(buf + strlen(buf), "%d", synptr->lexid[wdnum]); - if (wnsnsflag) - sprintf(buf + strlen(buf), "#%d", synptr->wnsns[wdnum]); - - /* For adjectives, append adjective marker if present, and - print antonym if flag is passed */ - - if (getpos(synptr->pos) == ADJ) { - if (adjmarker == PRINT_MARKER) - strcat(buf, markers[adj_marker]); - if (antflag == PRINT_ANTS) - strcat(buf, printant(ADJ, synptr, wdnum + 1, vs, "")); - } -} - -static char *printant(int dbase, SynsetPtr synptr, int wdnum, char *template, char *tail) -{ - int i, j, wdoff; - SynsetPtr psynptr; - char tbuf[WORDBUF]; - static char retbuf[SMLINEBUF]; - int first = 1; - - retbuf[0] = '\0'; - - /* Go through all the pointers looking for anotnyms from the word - indicated by wdnum. When found, print all the antonym's - antonym pointers which point back to wdnum. */ - - for (i = 0; i < synptr->ptrcount; i++) { - if (synptr->ptrtyp[i] == ANTPTR && synptr->pfrm[i] == wdnum) { - - psynptr = read_synset(dbase, synptr->ptroff[i], ""); - - for (j = 0; j < psynptr->ptrcount; j++) { - if (psynptr->ptrtyp[j] == ANTPTR && - psynptr->pto[j] == wdnum && - psynptr->ptroff[j] == synptr->hereiam) { - - wdoff = (psynptr->pfrm[j] ? (psynptr->pfrm[j] - 1) : 0); - - /* Construct buffer containing formatted antonym, - then add it onto end of return buffer */ - - strcpy(wdbuf, psynptr->words[wdoff]); - strcpy(tbuf, deadjify(wdbuf)); - - /* Print additional lexicographer information and - WordNet sense number as indicated by flags */ - - if (prlexid && (psynptr->lexid[wdoff] != 0)) - sprintf(tbuf + strlen(tbuf), "%d", - psynptr->lexid[wdoff]); - if (wnsnsflag) - sprintf(tbuf + strlen(tbuf), "#%d", - psynptr->wnsns[wdoff]); - if (!first) - strcat(retbuf, tail); - else - first = 0; - sprintf(retbuf + strlen(retbuf), template, tbuf); - } - } - free_synset(psynptr); - } - } - return(retbuf); -} - -static void printbuffer(char *string) -{ - if (overflag) - return; - if (strlen(searchbuffer) + strlen(string) >= SEARCHBUF) - overflag = 1; - else - strcat(searchbuffer, string); -} - -static void printsns(SynsetPtr synptr, int sense) -{ - printsense(synptr, sense); - printsynset("", synptr, "\n", DEFON, ALLWORDS, PRINT_ANTS, PRINT_MARKER); -} - -static void printsense(SynsetPtr synptr, int sense) -{ - char tbuf[256]; - - /* Append lexicographer filename after Sense # if flag is set. */ - - if (fnflag) - sprintf(tbuf,"\nSense %d in file \"%s\"\n", - sense, lexfiles[synptr->fnum]); - else - sprintf(tbuf,"\nSense %d\n", sense); - - printbuffer(tbuf); - - /* update counters */ - wnresults.OutSenseCount[wnresults.numforms]++; - wnresults.printcnt++; -} - -static void printspaces(int trace, int depth) -{ - int j; - - for (j = 0; j < depth; j++) - printbuffer(" "); - - switch(trace) { - case TRACEP: /* traceptrs(), tracenomins() */ - if (depth) - printbuffer(" "); - else - printbuffer(" "); - break; - - case TRACEC: /* tracecoords() */ - if (!depth) - printbuffer(" "); - break; - - case TRACEI: /* traceinherit() */ - if (!depth) - printbuffer("\n "); - break; - } -} - -/* Dummy function to force Tcl/Tk to look at event queue to see of - the user wants to stop the search. */ - -static void interface_doevents (void) { - if (interface_doevents_func != NULL) interface_doevents_func (); -} - -/* - Revision log: (since version 1.5) - - $Log: search.c,v $ - Revision 1.166 2006/11/14 20:52:45 wn - for 2.1 - - Revision 1.165 2005/02/24 15:36:00 wn - fixed bug - coordinate search was missing INSTANCE pointers - - Revision 1.164 2005/01/27 16:32:32 wn - removed 1.6 stuff and cleaned up #ifdefs - - Revision 1.163 2004/10/25 15:25:18 wn - added instances code - - Revision 1.162 2004/01/12 16:32:52 wn - changed "CATEGORY" to "TOPIC" - - Revision 1.161 2003/06/23 15:52:27 wn - cleaned up format of nomin output - - Revision 1.160 2003/06/05 15:29:45 wn - added pos and sense number for domains - - Revision 1.159 2003/04/15 13:54:16 wn - *** empty log message *** - - Revision 1.158 2003/03/20 19:31:36 wn - removed NOMIN_START/NOMIN_END range and replaced with DERIVATION - - Revision 1.157 2003/02/06 19:01:36 wn - added code to print out word pointed to in derivational links. - - Revision 1.156 2003/02/06 18:03:30 wn - work on classifications - - Revision 1.155 2002/10/29 15:46:27 wn - added CLASSIFICATION code - - Revision 1.154 2002/09/16 15:43:01 wn - allow "grep" string to be in upper case - - Revision 1.153 2002/09/16 15:39:16 wn - *** empty log message *** - - Revision 1.152 2002/03/22 19:39:15 wn - fill in key field in SynsetPtr if key file found - - Revision 1.151 2002/03/07 18:47:52 wn - updates for 1.7.1 - - Revision 1.150 2001/12/04 17:48:21 wn - added test to tracenomins to only print nominalizations of serach - word and not all words in synset - - Revision 1.149 2001/11/27 19:53:24 wn - removed check for version on verb example sentence stuff. only - needed for 1.5 - - Revision 1.148 2001/11/06 18:51:04 wn - fixed bug in getindex when passed "." - added code to skip classification - - Revision 1.147 2001/10/11 18:00:56 wn - fixed bug in free_syns - wasn't freeing synset pointed to by nextform - - Revision 1.146 2001/07/27 14:32:41 wn - fixed order of adjective markers - - Revision 1.145 2001/06/19 15:01:22 wn - commed out include for setutil.h - - Revision 1.144 2001/05/30 16:24:17 wn - changed is_defined to return unsigned int - - Revision 1.143 2001/03/30 17:13:00 wn - fixed is_defined - wasn't setting coords for verbs - - Revision 1.142 2001/03/29 16:18:03 wn - added newline before output from FREQ search - - Revision 1.141 2001/03/29 16:11:39 wn - added code to tractptrs to print direct antonyms nicer - - Revision 1.140 2001/03/27 18:47:41 wn - removed tcflag - - Revision 1.139 2001/03/27 16:47:44 wn - updated is_defined for holonyms and meronyms - - Revision 1.138 2000/08/14 16:04:24 wn - changed 'get_index' to call sub to do work - added code for nominalizations - - Revision 1.137 1998/08/11 18:07:11 wn - minor fixes: free synptr space before rreturning if error; remove - useless statement in free_syns - - * Revision 1.136 1998/08/07 17:51:32 wn - * added COORDS to traceptrs_ds and findtheinfo_ds - * fixed getsearchsense code to only happen in parse_synset - * - * Revision 1.135 1998/08/07 13:04:24 wn - * *** empty log message *** - * - * Revision 1.134 1997/11/07 16:27:36 wn - * cleanup calls to traceptrs - * - * Revision 1.133 1997/10/16 17:13:08 wn - * fixed bug in add_topnode when index == 0 - * - * Revision 1.132 1997/09/05 15:33:18 wn - * change printframes to only print generic frames if specific example not found - * - * Revision 1.131 1997/09/02 16:31:18 wn - * changed includes - * - * Revision 1.130 1997/09/02 14:43:23 wn - * added code to test wnrelease in parse_synset and WNOverview - * - * Revision 1.129 1997/08/29 20:45:25 wn - * added location sanity check on parse_synset - * - * Revision 1.128 1997/08/29 18:35:03 wn - * a bunch of additional cleanups; added code to traceptrs_ds to - * tore wordnet sense number for each word; added wnresults structure; - * terminate holo/mero search at highest level having holo/mero - * - * Revision 1.127 1997/08/28 17:26:46 wn - * Changed "n senses from tagged data" to "n senses from tagged texts" - * in the overview. - * - * Revision 1.126 1997/08/27 13:26:07 wn - * trivial change in wngrep (initialized count to zero) - * - * Revision 1.125 1997/08/26 21:13:14 wn - * Grep now runs quickly because it doesn't call the doevents callback - * after each line of the search. - * - * Revision 1.124 1997/08/26 20:11:23 wn - * massive cleanups to print functions - * - * Revision 1.123 1997/08/26 15:04:18 wn - * I think I got it this time; replaced goto skipit with int skipit flag - * to make compiling easier on the Mac. - * - * Revision 1.122 1997/08/26 14:43:40 wn - * In an effort to avoid compilation errors on the - * Mac caused by the use of a "goto", I had tried to replace it with - * an if block, but had done so improperly. This is the restored version - * from before. Next check-in will have it properly replaced with flags. - * - * Revision 1.121 1997/08/25 15:54:21 wn - * *** empty log message *** - * - * Revision 1.120 1997/08/22 21:06:02 wn - * added code to use wnsnsflag to print wn sense number after each word - * - * Revision 1.119 1997/08/22 20:52:09 wn - * cleaned up findtheinfo and other fns a bit - * - * Revision 1.118 1997/08/21 20:59:20 wn - * grep now uses strstr instead of regexp searches. the old version is - * still there but commented out. - * - * Revision 1.117 1997/08/21 18:41:30 wn - * now eliminates duplicates on search returns, but not yet in overview - * - Revision 1.116 1997/08/13 17:23:45 wn - fixed mac defines - - * Revision 1.115 1997/08/08 20:56:33 wn - * now uses built-in grep - * - * Revision 1.114 1997/08/08 19:15:41 wn - * added code to read attest_cnt field in index file. - * made searchbuffer fixed size - * added WNOverview (OVERVIEW) search - * added offsetflag to print synset offset before synset - * - * Revision 1.113 1997/08/05 14:20:29 wn - * changed printbuffer to not realloc space, removed calls to stopsearch() - * - * Revision 1.112 1997/07/25 17:30:03 wn - * various cleanups for release 1.6 - * - Revision 1.111 1997/07/11 20:20:04 wn - Added interface_doevents code for making searches interruptable in single-threaded environments. - - * Revision 1.110 1997/07/10 19:01:57 wn - * changed evca stuff - * - Revision 1.109 1997/04/22 19:59:08 wn - allow pertainyms to have antonyms - - * Revision 1.108 1996/09/17 20:05:01 wn - * cleaned up EVCA code - * - * Revision 1.107 1996/08/16 18:34:13 wn - * fixed minor bug in findcousins - * - * Revision 1.106 1996/07/17 14:02:17 wn - * Added Kohl's verb example sentences. See getexample() and findExample(). - * - * Revision 1.105 1996/06/14 18:49:49 wn - * upped size of tmpbuf - * - * Revision 1.104 1996/02/08 16:42:30 wn - * added some newlines to separate output and clear out tmpbuf - * so invalid searches return empty string - * - * Revision 1.103 1995/11/30 14:54:53 wn - * added grouped search for verbs - * - * Revision 1.102 1995/07/19 13:17:38 bagyenda - * *** empty log message *** - * - * Revision 1.101 1995/07/18 19:15:30 wn - * *** empty log message *** - * - * Revision 1.100 1995/07/18 18:56:24 bagyenda - * New implementation of grouped searches --Paul. - * - * Revision 1.99 1995/06/30 19:21:23 wn - * added code to findtheinfo_ds to link additional word forms - * onto synset chain - * - * Revision 1.98 1995/06/12 18:33:51 wn - * Minor change to getindex() -- Paul. - * - * Revision 1.97 1995/06/09 14:46:42 wn - * *** empty log message *** - * - * Revision 1.96 1995/06/09 14:32:49 wn - * changed code for PPLPTR and PERTPTR to print synsets pointed to - * - * Revision 1.95 1995/06/01 15:50:34 wn - * cleanup of code dealing with various hyphenations - * - */ diff --git a/corpora/en/wordnet/lib/wnglobal.c b/corpora/en/wordnet/lib/wnglobal.c deleted file mode 100644 index 69ec3befa..000000000 --- a/corpora/en/wordnet/lib/wnglobal.c +++ /dev/null @@ -1,156 +0,0 @@ -/* - - wnglobal.c - global variables used by various WordNet applications - - $Id: wnglobal.c,v 1.56 2006/11/14 21:00:34 wn Exp $ - -*/ - -#ifndef NULL -#define NULL 0 -#endif - -char *wnrelease = "3.0"; - -/* Lexicographer file names and numbers */ - -char *lexfiles[] = { - "adj.all", /* 0 */ - "adj.pert", /* 1 */ - "adv.all", /* 2 */ - "noun.Tops", /* 3 */ - "noun.act", /* 4 */ - "noun.animal", /* 5 */ - "noun.artifact", /* 6 */ - "noun.attribute", /* 7 */ - "noun.body", /* 8 */ - "noun.cognition", /* 9 */ - "noun.communication", /* 10 */ - "noun.event", /* 11 */ - "noun.feeling", /* 12 */ - "noun.food", /* 13 */ - "noun.group", /* 14 */ - "noun.location", /* 15 */ - "noun.motive", /* 16 */ - "noun.object", /* 17 */ - "noun.person", /* 18 */ - "noun.phenomenon", /* 19 */ - "noun.plant", /* 20 */ - "noun.possession", /* 21 */ - "noun.process", /* 22 */ - "noun.quantity", /* 23 */ - "noun.relation", /* 24 */ - "noun.shape", /* 25 */ - "noun.state", /* 26 */ - "noun.substance", /* 27 */ - "noun.time", /* 28 */ - "verb.body", /* 29 */ - "verb.change", /* 30 */ - "verb.cognition", /* 31 */ - "verb.communication", /* 32 */ - "verb.competition", /* 33 */ - "verb.consumption", /* 34 */ - "verb.contact", /* 35 */ - "verb.creation", /* 36 */ - "verb.emotion", /* 37 */ - "verb.motion", /* 38 */ - "verb.perception", /* 39 */ - "verb.possession", /* 40 */ - "verb.social", /* 41 */ - "verb.stative", /* 42 */ - "verb.weather", /* 43 */ - "adj.ppl", /* 44 */ -}; - -/* Pointer characters and searches */ - -char *ptrtyp[]={ - "", /* 0 not used */ - "!", /* 1 ANTPTR */ - "@", /* 2 HYPERPTR */ - "~", /* 3 HYPOPTR */ - "*", /* 4 ENTAILPTR */ - "&", /* 5 SIMPTR */ - "#m", /* 6 ISMEMBERPTR */ - "#s", /* 7 ISSTUFFPTR */ - "#p", /* 8 ISPARTPTR */ - "%m", /* 9 HASMEMBERPTR */ - "%s", /* 10 HASSTUFFPTR */ - "%p", /* 11 HASPARTPTR */ - "%", /* 12 MERONYM */ - "#", /* 13 HOLONYM */ - ">", /* 14 CAUSETO */ - "<", /* 15 PPLPTR */ - "^", /* 16 SEEALSO */ - "\\", /* 17 PERTPTR */ - "=", /* 18 ATTRIBUTE */ - "$", /* 19 VERBGROUP */ - "+", /* 20 NOMINALIZATIONS */ - ";", /* 21 CLASSIFICATION */ - "-", /* 22 CLASS */ -/* additional searches, but not pointers. */ - "", /* SYNS */ - "", /* FREQ */ - "+", /* FRAMES */ - "", /* COORDS */ - "", /* RELATIVES */ - "", /* HMERONYM */ - "", /* HHOLONYM */ - "", /* WNGREP */ - "", /* OVERVIEW */ - ";c", /* CLASSIF_CATEGORY */ - ";u", /* CLASSIF_USAGE */ - ";r", /* CLASSIF_REGIONAL */ - "-c", /* CLASS_CATEGORY */ - "-u", /* CLASS_USAGE */ - "-r", /* CLASS_REGIONAL */ - "@i", /* INSTANCE */ - "~i", /* INSTANCES */ - NULL, -}; - -char *partnames[]={ "", "noun", "verb", "adj", "adv", NULL }; -char partchars[] = " nvara"; /* add char for satellites to end */ -char *adjclass[] = { "", "(p)", "(a)", "(ip)" }; - -/* Text of verb sentence frames */ - -char *frametext[] = { - "", - "Something ----s", - "Somebody ----s", - "It is ----ing", - "Something is ----ing PP", - "Something ----s something Adjective/Noun", - "Something ----s Adjective/Noun", - "Somebody ----s Adjective", - "Somebody ----s something", - "Somebody ----s somebody", - "Something ----s somebody", - "Something ----s something", - "Something ----s to somebody", - "Somebody ----s on something", - "Somebody ----s somebody something", - "Somebody ----s something to somebody", - "Somebody ----s something from somebody", - "Somebody ----s somebody with something", - "Somebody ----s somebody of something", - "Somebody ----s something on somebody", - "Somebody ----s somebody PP", - "Somebody ----s something PP", - "Somebody ----s PP", - "Somebody's (body part) ----s", - "Somebody ----s somebody to INFINITIVE", - "Somebody ----s somebody INFINITIVE", - "Somebody ----s that CLAUSE", - "Somebody ----s to somebody", - "Somebody ----s to INFINITIVE", - "Somebody ----s whether INFINITIVE", - "Somebody ----s somebody into V-ing something", - "Somebody ----s something with something", - "Somebody ----s INFINITIVE", - "Somebody ----s VERB-ing", - "It ----s that CLAUSE", - "Something ----s INFINITIVE", - "" -}; diff --git a/corpora/en/wordnet/lib/wnhelp.c b/corpora/en/wordnet/lib/wnhelp.c deleted file mode 100644 index 80ca78e11..000000000 --- a/corpora/en/wordnet/lib/wnhelp.c +++ /dev/null @@ -1,375 +0,0 @@ -/* - - wnhelp.c - -*/ - -/* $Id: wnhelp.c,v 1.14 2005/02/01 17:03:46 wn Rel $ */ - -#include "wn.h" - -#ifndef NULL -#define NULL 0 -#endif - -/* Help Strings */ - -static char freq_help[] = /* FREQ */ -"Display familiarity and polysemy information for the search string. \n\ -The polysemy count is the number of senses in WordNet. \n\ -"; - -static char grep_help[] = /* WNGREP */ -"Print all strings in the database containing the search string \n\ -as an individual word, or as the first or last string in a word or \n\ -collocation. \n\ -"; - -static char coord_help[] = /* COORDS */ -"Display the coordinates (sisters) of the search string. This search \n\ -prints the immediate hypernym for each synset that contains the \n\ -search string and the hypernym's immediate `hyponyms'. \n\ -\n\ -Hypernym is the generic term used to designate a whole class of \n\ -specific instances. Y is a hypernym of X if X is a (kind of) Y. \n\ -\n\ -Hyponym is the generic term used to designate a member of a class. \n\ -X is a hyponym of Y if X is a (kind of) Y. \n\ -\n\ -Coordinate words are words that have the same hypernym.\n\ -\n\ -Hypernym synsets are preceded by \"->\", and hyponym synsets are \n\ -preceded by \"=>\". \n\ -"; - -static char hyper_help[] = /* HYPERPTR */ -"Display synonyms and immediate hypernyms of synsets containing \n\ -the search string. Synsets are ordered by frequency of occurrence. \n\ -\n\ -Hypernym is the generic term used to designate a whole class of \n\ -specific instances. Y is a hypernym of X if X is a (kind of) Y. \n\ -\n\ -Hypernym synsets are preceded by \"=>\". \n\ -"; - -static char relatives_help[] = /* RELATIVES */ -"Display synonyms and immediate hypernyms of synsets containing \n\ -the search string. Synsets are grouped by similarity of meaning. \n\ -\n\ -Hypernym is the generic term used to designate a whole class of \n\ -specific instances. Y is a hypernym of X if X is a (kind of) Y. \n\ -\n\ -Hypernym synsets are preceded by \"=>\". \n\ -"; - -static char ant_help[] = /* ANTPTR */ -"Display synsets containing direct anotnyms of the search string. \n\ -\n\ -Direct antonyms are a pair of words between which there is an \n\ -associative bond built up by co-occurrences. \n\ -\n\ -Antonym synsets are preceded by \"=>\". \n\ -"; - -static char hypertree_help[] = /* -HYPERPTR */ -"Recursively display hypernym (superordinate) tree for the search \n\ -string. \n\ -\n\ -Hypernym is the generic term used to designate a whole class of \n\ -specific instances. Y is a hypernym of X if X is a (kind of) Y. \n\ -\n\ -Hypernym synsets are preceded by \"=>\", and are indented from \n\ -the left according to their level in the hierarchy. \n\ -"; - -static char hypo_help[] = /* HYPONYM */ -"Display immediate hyponyms (subordinates) for the search string. \n\ -\n\ -Hyponym is the generic term used to designate a member of a class. \n\ -X is a hyponym of Y if X is a (kind of) Y. \n\ -\n\ -Hyponym synsets are preceded by \"=>\". \n\ -"; - -static char hypotree_help[] = /* -HYPONYM */ -"Display hyponym (subordinate) tree for the search string. This is \n\ -a recursive search that finds the hyponyms of each hyponym. \n\ -\n\ -Hyponym is the generic term used to designate a member of a class. \n\ -X is a hyponym of Y if X is a (kind of) Y. \n\ -\n\ -Hyponym synsets are preceded by \"=>\", and are indented from the left \n\ -according to their level in the hierarchy. \n\ -"; - -static char holo_help[] = /* HOLONYM */ -"Display all holonyms of the search string. \n\ -\n\ -A holonym is the name of the whole of which the 'meronym' names a part. \n\ -Y is a holonym of X if X is a part of Y. \n\ -\n\ -A meronym is the name of a constituent part, the substance of, or a \n\ -member of something. X is a meronym of Y if X is a part of Y. \n\ -\n\ -Holonym synsets are preceded with either the string \"MEMBER OF\", \n\ -\"PART OF\" or \"SUBSTANCE OF\" depending on the specific type of holonym. \n\ -"; - -static char holotree_help[] = /* -HOLONYM */ -"Display holonyms for search string tree. This is a recursive search \n\ -that prints all the holonyms of the search string and all of the \n\ -holonym's holonyms. \n\ -\n\ -A holonym is the name of the whole of which the meronym names a part. \n\ -Y is a holonym of X if X is a part of Y. \n\ -\n\ -A meronym is the name of a constituent part, the substance of, or a \n\ -member of something. X is a meronym of Y if X is a part of Y. \n\ -\n\ -Holonym synsets are preceded with either the string \"MEMBER OF\", \n\ -\"PART OF\" or \"SUBSTANCE OF\" depending on the specific \n\ -type of holonym. Synsets are indented from the left according to \n\ -their level in the hierarchy. \n\ -"; - -static char mero_help[] = /* MERONYM */ -"Display all meronyms of the search string. \n\ -\n\ -A meronym is the name of a constituent part, the substance of, or a \n\ -member of something. X is a meronym of Y if X is a part of Y. \n\ -\n\ -A holonym is the name of the whole of which the meronym names a part. \n\ -Y is a holonym of X if X is a part of Y. \n\ -\n\ -Meronym synsets are preceded with either the string \"HAS MEMBER\", \n\ -\"HAS PART\" or \"HAS SUBSTANCE\" depending on the specific type of holonym. \n\ -"; - -static char merotree_help[] = /* -HMERONYM */ -"Display meronyms for search string tree. This is a recursive search \n\ -the prints all the meronyms of the search string and all of its \n\ -hypernyms. \n\ -\n\ -A meronym is the name of a constituent part, the substance of, or a \n\ -member of something. X is a meronym of Y if X is a part of Y. \n\ -\n\ -A holonym is the name of the whole of which the meronym names a part. \n\ -Y is a holonym of X if X is a part of Y. \n\ -\n\ -Hypernym is the generic term used to designate a whole class of \n\ -specific instances. Y is a hypernym of X if X is a (kind of) Y. \n\ -\n\ -Meronym synsets are preceded with either the string \"HAS MEMBER\", \n\ -\"HAS PART\" or \"HAS SUBSTANCE\" depending on the specific type of \n\ -holonym. Synsets are indented from the left according to their level \n\ -in the hierarchy. \n\ -"; - -static char deriv_help[] = /* DERIVATION */ -"Display derived forms - nouns and verbs that are related morphologically. \n\ -Each related synset is preceeded by its part of speech. Each word in the \n\ -synset is followed by its sense number. \n\ -"; - -static char domain_help[] = /* CLASSIFICATION */ -"Display domain to which this synset belongs. \n\ -\n\ -Each domain synset is preceeded by \"TOPIC\", \"REGION\", or \"USAGE\" to \n\ -distinguish topical, geographic and functional classifications, and \n\ -it's part of speech. Each word is followed by its sense number. \n\ -"; - -static char domainterms_help[] = /* CLASS */ -"Display all synsets belonging to the domain. \n\ -\n\ -Each domain term synset is preceeded by \"TOPIC TERM\", \"REGION TERM\", or \n\ -\"USAGE TERM\" to distinguish topical, geographic and functional classes, \n\ -and its part of speech. Each word is followed by its sense number. \n\ -"; - -static char nattrib_help[] = /* ATTRIBUTE */ -"Display adjectives for which search string is an attribute. \n\ -"; - -static char aattrib_help[] = /* ATTRIBUTE */ -"Display nouns that are attributes of search string. \n\ -"; - -static char tropo_help[] = /* -HYPOPTR */ -"Display hyponym tree for the search string. This is \n\ -a recursive search that finds the hyponyms of each hyponym. \n\ -\n\ -For verbs, hyponyms are refered to as troponyms. Troponyms indicate particular ways \n\ -to perform a function. X is a hyponym of Y if to X is a particular way to Y. \n\ -\n\ -Troponym synsets are preceded by \"=>\", and are indented from the left \n\ -according to their level in the hierarchy. \n\ -"; - -static char entail_help[] = /* ENTAILPTR */ -"Recursively display entailment relations of the search string. \n\ -\n\ -The action represented by the verb X entails Y if X cannot be done \n\ -unless Y is, or has been, done. \n\ -\n\ -Entailment synsets are preceded by \"=>\", and are indented from the left \n\ -according to their level in the hierarchy. \n\ -"; - -static char causeto_help[] = /* CAUSETO */ -"Recursively display CAUSE TO relations of the search string. \n\ -\n\ -The action represented by the verb X causes the action represented by \n\ -the verb Y. \n\ -\n\ -CAUSE TO synsets are preceded by \"=>\", and are indented from the left \n\ -according to their level in the hierarch. \n\ -"; - -static char frames_help[] = /* FRAMES */ -"Display applicable verb sentence frames for the search string. \n\ -\n\ -A frame is a sentence template illustrating the usage of a verb. \n\ -\n\ -Verb sentence frames are preceded with the string \"*>\" if a sentence \n\ -frame is acceptable for all of the words in the synset, and with \"=>\" \n\ -if a sentence frame is acceptable for the search string only. \n\ -\n\ -Some verb senses have example sentences. These are preceeded with \"EX:\". \n\ -"; - -static char *nounhelps[] = { -hyper_help, -relatives_help, -ant_help, -coord_help, -hypertree_help, -hypo_help, -hypotree_help, -holo_help, -holotree_help, -mero_help, -merotree_help, -deriv_help, -nattrib_help, -domain_help, -domainterms_help, -freq_help, -grep_help -}; - -static char *verbhelps[] = { -hyper_help, -relatives_help, -ant_help, -coord_help, -hypertree_help, -tropo_help, -entail_help, -causeto_help, -deriv_help, -frames_help, -domain_help, -domainterms_help, -freq_help, -grep_help - }; - -static char *adjhelps[] = { -/* SIMPTR */ -"Display synonyms and synsets related to synsets containing \n\ -the search string. If the search string is in a head synset \n\ -the 'cluster's' satellite synsets are displayed. If the search \n\ -string is in a satellite synset, its head synset is displayed. \n\ -If the search string is a pertainym the word or synset that it \n\ -pertains to is displayed. \n\ -\n\ -A cluster is a group of adjective synsets that are organized around \n\ -antonymous pairs or triplets. An adjective cluster contains two or more \n\ -head synsets that contan antonyms. Each head synset has one or more \n\ -satellite synsets. \n\ -\n\ -A head synset contains at least one word that has a direct antonym \n\ -in another head synset of the same cluster. \n\ -\n\ -A satellite synset represents a concept that is similar in meaning to \n\ -the concept represented by its head synset. \n\ -\n\ -Direct antonyms are a pair of words between which there is an \n\ -associative bond built up by co-occurrences. \n\ -\n\ -Direct antonyms are printed in parentheses following the adjective. \n\ -The position of an adjective in relation to the noun may be restricted \n\ -to the prenominal, postnominal or predicative position. Where present \n\ -these restrictions are noted in parentheses. \n\ -\n\ -A pertainym is a relational adjective, usually defined by such phrases \n\ -as \"of or pertaining to\" and that does not have an antonym. It pertains \n\ -to a noun or another pertainym. \n\ -\n\ -Senses contained in head synsets are displayed above the satellites, \n\ -which are indented and preceded by \"=>\". Senses contained in \n\ -satellite synsets are displayed with the head synset below. The head \n\ -synset is preceded by \"=>\". \n\ -\n\ -Pertainym senses display the word or synsets that the search string \n\ -pertains to. \n\ -", -/* ANTPTR */ -"Display synsets containing antonyms of the search string. If the \n\ -search string is in a head synset the direct antonym is displayed \n\ -along with the head synset's satellite synsets. If the search \n\ -string is in a satellite synset, its indirect antonym is displayed \n\ -via the head synset \n\ -\n\ -A head synset contains at least one word that has a direct antonym \n\ -in another head synset of the same cluster. \n\ -\n\ -A satellite synset represents a concept that is similar in meaning to \n\ -the concept represented by its head synset. \n\ -\n\ -Direct antonyms are a pair of words between which there is an \n\ -associative bond built up by co-occurrences. \n\ -\n\ -Direct antonyms are printed in parentheses following the adjective. \n\ -The position of an adjective in relation to the noun may be restricted \n\ -to the prenominal, postnominal or predicative position. Where present \n\ -these restrictions are noted in parentheses. \n\ -\n\ -Senses contained in head synsets are displayed, followed by the \n\ -head synset containing the search string's direct antonym and its \n\ -similar synsets, which are indented and preceded by \"=>\". Senses \n\ -contained in satellite synsets are displayed followed by the indirect \n\ -antonym via the satellite's head synset. \n\ -", -aattrib_help, -domain_help, -domainterms_help, -freq_help, -grep_help - -}; - -static char *advhelps[] = { -/* SIMPTR */ -"Display synonyms and synsets related to synsets containing \n\ -the search string. If the search string is a pertainym the word \n\ -or synset that it pertains to is displayed. \n\ -\n\ -A pertainym is a relational adverb that is derived from an adjective. \n\ -\n\ -Pertainym senses display the word that the search string is derived from \n\ -and the adjective synset that contains the word. If the adjective synset \n\ -is a satellite synset, its head synset is also displayed. \n\ -", -ant_help, -domain_help, -domainterms_help, -freq_help, -grep_help -}; - -char **helptext[NUMPARTS + 1] = { - NULL, nounhelps, verbhelps, adjhelps, advhelps -}; - diff --git a/corpora/en/wordnet/lib/wnres/Makefile.am b/corpora/en/wordnet/lib/wnres/Makefile.am deleted file mode 100644 index 0bf5e0a55..000000000 --- a/corpora/en/wordnet/lib/wnres/Makefile.am +++ /dev/null @@ -1,3 +0,0 @@ -EXTRA_DIST = license.txt wn.xbm wnb.man wngloss.man -wnresdir = $(prefix)/lib/wnres -wnres_DATA = license.txt wn.xbm wnb.man wngloss.man diff --git a/corpora/en/wordnet/lib/wnres/Makefile.in b/corpora/en/wordnet/lib/wnres/Makefile.in deleted file mode 100644 index 6b1d16a4a..000000000 --- a/corpora/en/wordnet/lib/wnres/Makefile.in +++ /dev/null @@ -1,314 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = ../.. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -subdir = lib/wnres -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; -am__vpath_adj = case $$p in \ - $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ - *) f=$$p;; \ - esac; -am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; -am__installdirs = "$(DESTDIR)$(wnresdir)" -wnresDATA_INSTALL = $(INSTALL_DATA) -DATA = $(wnres_DATA) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -EXTRA_DIST = license.txt wn.xbm wnb.man wngloss.man -wnresdir = $(prefix)/lib/wnres -wnres_DATA = license.txt wn.xbm wnb.man wngloss.man -all: all-am - -.SUFFIXES: -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu lib/wnres/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu lib/wnres/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -uninstall-info-am: -install-wnresDATA: $(wnres_DATA) - @$(NORMAL_INSTALL) - test -z "$(wnresdir)" || $(mkdir_p) "$(DESTDIR)$(wnresdir)" - @list='$(wnres_DATA)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - f=$(am__strip_dir) \ - echo " $(wnresDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(wnresdir)/$$f'"; \ - $(wnresDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(wnresdir)/$$f"; \ - done - -uninstall-wnresDATA: - @$(NORMAL_UNINSTALL) - @list='$(wnres_DATA)'; for p in $$list; do \ - f=$(am__strip_dir) \ - echo " rm -f '$(DESTDIR)$(wnresdir)/$$f'"; \ - rm -f "$(DESTDIR)$(wnresdir)/$$f"; \ - done -tags: TAGS -TAGS: - -ctags: CTAGS -CTAGS: - - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(DATA) -installdirs: - for dir in "$(DESTDIR)$(wnresdir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-generic mostlyclean-am - -distclean: distclean-am - -rm -f Makefile -distclean-am: clean-am distclean-generic - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: install-wnresDATA - -install-exec-am: - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-info-am uninstall-wnresDATA - -.PHONY: all all-am check check-am clean clean-generic distclean \ - distclean-generic distdir dvi dvi-am html html-am info info-am \ - install install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip install-wnresDATA installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-generic pdf pdf-am ps ps-am uninstall \ - uninstall-am uninstall-info-am uninstall-wnresDATA - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/lib/wnres/license.txt b/corpora/en/wordnet/lib/wnres/license.txt deleted file mode 100644 index aa165250a..000000000 --- a/corpora/en/wordnet/lib/wnres/license.txt +++ /dev/null @@ -1,32 +0,0 @@ -WordNet Release 3.0 - -This software and database is being provided to you, the LICENSEE, by -Princeton University under the following license. By obtaining, using -and/or copying this software and database, you agree that you have -read, understood, and will comply with these terms and conditions.: - -Permission to use, copy, modify and distribute this software and -database and its documentation for any purpose and without fee or -royalty is hereby granted, provided that you agree to comply with -the following copyright notice and statements, including the disclaimer, -and that the same appear on ALL copies of the software, database and -documentation, including modifications that you make for internal -use or for distribution. - -WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved. - -THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR -IMPLIED. BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON -UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT- -ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE -OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT -INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR -OTHER RIGHTS. - -The name of Princeton University or Princeton may not be used in -advertising or publicity pertaining to distribution of the software -and/or database. Title to copyright in this software, database and -any associated documentation shall at all times remain with -Princeton University and LICENSEE agrees to preserve same. - diff --git a/corpora/en/wordnet/lib/wnres/wn.xbm b/corpora/en/wordnet/lib/wnres/wn.xbm deleted file mode 100644 index 249338f30..000000000 --- a/corpora/en/wordnet/lib/wnres/wn.xbm +++ /dev/null @@ -1,168 +0,0 @@ -#define wn_width 135 -#define wn_height 116 -static char wn_bits[] = { - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0xff, - 0x07, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xf0, 0x00, 0x78, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0xfe, 0x87, 0x0f, - 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x86, 0xff, 0x3f, 0x30, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x00, 0xf0, 0xc7, 0x00, 0x00, - 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x19, - 0x00, 0x80, 0x1f, 0x01, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xc0, 0x04, 0x00, 0x00, 0x78, 0x02, 0x00, 0x00, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x06, 0x00, 0x00, - 0xc0, 0x04, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x60, 0x02, 0x00, 0xc0, 0x80, 0x09, 0x00, 0x00, 0x80, 0x00, 0x00, - 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x70, 0x02, 0x00, 0x80, 0x00, 0x13, - 0x00, 0x00, 0x80, 0x00, 0x78, 0x00, 0x1e, 0x00, 0x00, 0x00, 0x00, 0x1f, - 0x01, 0x00, 0xc0, 0x00, 0x36, 0x00, 0x00, 0x80, 0x00, 0x7f, 0x00, 0x7e, - 0x00, 0x00, 0x00, 0x02, 0xff, 0xc0, 0x03, 0x80, 0x01, 0xee, 0x00, 0x00, - 0x80, 0xc0, 0x7f, 0x00, 0xfc, 0x00, 0x00, 0x00, 0x06, 0xff, 0x80, 0x0f, - 0x80, 0x01, 0xcc, 0x00, 0x00, 0x80, 0xe0, 0x7f, 0x00, 0xfc, 0x03, 0x00, - 0x00, 0x06, 0xff, 0x80, 0x1f, 0x80, 0x03, 0xcc, 0x01, 0x00, 0x80, 0xf0, - 0x7f, 0x00, 0xfc, 0x0f, 0x00, 0x00, 0x0e, 0xfe, 0x81, 0x1f, 0x80, 0x07, - 0x5c, 0x02, 0x00, 0x80, 0xe0, 0x7f, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x0c, - 0xfe, 0x81, 0x1f, 0x80, 0x07, 0x58, 0x04, 0x00, 0x80, 0xc0, 0x7f, 0x00, - 0xfc, 0x3f, 0x00, 0x00, 0x1c, 0xfe, 0x81, 0x1f, 0x80, 0x07, 0x58, 0x08, - 0x00, 0x80, 0xc0, 0x7f, 0x00, 0xfc, 0x3f, 0x00, 0x00, 0x3c, 0xfe, 0x83, - 0x1f, 0x80, 0x07, 0x58, 0x10, 0x00, 0x80, 0x80, 0xff, 0x00, 0xfc, 0x1f, - 0x00, 0x00, 0x7c, 0xfe, 0x83, 0x1f, 0x80, 0x07, 0x58, 0x20, 0x00, 0x80, - 0x80, 0xff, 0x00, 0xfc, 0x0f, 0x00, 0x00, 0x7c, 0xfe, 0x87, 0x1f, 0x80, - 0x07, 0xd8, 0x20, 0x00, 0x80, 0x00, 0xff, 0x00, 0xfc, 0x0f, 0x00, 0x00, - 0x7c, 0xfe, 0x87, 0x0f, 0x80, 0x07, 0x58, 0x41, 0x00, 0x80, 0x00, 0xff, - 0x00, 0xfc, 0x07, 0x00, 0x00, 0x3c, 0xfe, 0x87, 0x0f, 0x80, 0x07, 0x5c, - 0x81, 0x00, 0x80, 0x00, 0xff, 0x00, 0xfc, 0x07, 0x00, 0x00, 0xbc, 0xfe, - 0x8f, 0x0f, 0x00, 0x07, 0x2c, 0x03, 0x01, 0x80, 0x00, 0xfe, 0x00, 0xfc, - 0x03, 0x00, 0x00, 0xbc, 0xfe, 0x8f, 0x0f, 0x00, 0x07, 0x6c, 0x02, 0x02, - 0x80, 0x00, 0xfe, 0x18, 0xfe, 0x03, 0x00, 0x00, 0xbc, 0xfe, 0x9f, 0x0f, - 0x00, 0x07, 0xa4, 0x03, 0x02, 0x80, 0x00, 0xfe, 0x19, 0xfe, 0x03, 0x00, - 0x00, 0x3c, 0xfe, 0x9f, 0x0f, 0x00, 0x07, 0x24, 0xfe, 0x07, 0x80, 0x00, - 0xfe, 0x39, 0xfe, 0x03, 0x00, 0x00, 0x3e, 0xfe, 0x9f, 0x0f, 0x00, 0x07, - 0x16, 0x04, 0x04, 0x80, 0x00, 0xfe, 0x39, 0xfe, 0x01, 0x00, 0x00, 0x3e, - 0xfe, 0xbf, 0x0f, 0x00, 0x07, 0x12, 0x04, 0x0c, 0x80, 0x00, 0xfc, 0x3d, - 0xfe, 0x01, 0x00, 0x03, 0xbe, 0xfe, 0xbf, 0x0f, 0x00, 0x07, 0x0b, 0x04, - 0x08, 0x80, 0x00, 0xfc, 0x7d, 0xfe, 0x61, 0xd8, 0x07, 0xbe, 0xbe, 0xff, - 0x8f, 0x0f, 0x87, 0x05, 0x04, 0x08, 0x80, 0x00, 0xfc, 0x7f, 0xfe, 0xf0, - 0xf8, 0x87, 0x9f, 0xbe, 0xff, 0xcf, 0xdf, 0xcf, 0x05, 0x04, 0x10, 0x80, - 0x00, 0xfc, 0xff, 0xfe, 0xf8, 0xf9, 0xcf, 0x3f, 0x3f, 0xff, 0xcf, 0xdf, - 0xcf, 0x02, 0x08, 0x10, 0x80, 0x00, 0xfc, 0xff, 0xff, 0xfc, 0xf1, 0xef, - 0x3f, 0x3f, 0xff, 0xef, 0xd9, 0x6f, 0x01, 0x08, 0x20, 0x80, 0x00, 0xf8, - 0xff, 0xff, 0xfc, 0xf9, 0xef, 0x3f, 0x3f, 0xfe, 0xef, 0xdf, 0x37, 0x01, - 0x08, 0x20, 0x80, 0x00, 0xf8, 0xff, 0x7f, 0xde, 0xfb, 0xe6, 0x3e, 0x3f, - 0xfe, 0xef, 0x1f, 0x93, 0x00, 0x08, 0x20, 0x80, 0x00, 0xf8, 0xff, 0x7f, - 0xde, 0x79, 0xf0, 0xbc, 0x3f, 0xfe, 0xef, 0x07, 0x4b, 0x07, 0x08, 0x20, - 0x80, 0x00, 0xf8, 0xff, 0x7f, 0xde, 0x79, 0xf0, 0xbc, 0x3f, 0xfe, 0xef, - 0x90, 0xa7, 0x1c, 0x08, 0x20, 0x80, 0x00, 0xf8, 0xff, 0x3f, 0xfe, 0x7d, - 0xf0, 0xbe, 0x3f, 0xfc, 0xef, 0x9d, 0x9b, 0xf1, 0x0d, 0x20, 0x80, 0x00, - 0xf8, 0xff, 0x3f, 0xfe, 0x7c, 0xf0, 0x9f, 0x3f, 0xfc, 0xef, 0x9f, 0x2d, - 0x01, 0x1f, 0x20, 0x80, 0x00, 0xf0, 0xef, 0x3f, 0x7c, 0x7c, 0xf0, 0xdf, - 0x3f, 0xfc, 0xc7, 0x9f, 0x3e, 0x01, 0xf0, 0x21, 0x80, 0x00, 0xf0, 0xc7, - 0x1f, 0x38, 0xfe, 0xe0, 0x9f, 0x3f, 0xf8, 0x87, 0x4f, 0x3e, 0x02, 0x10, - 0x3e, 0x80, 0x00, 0xf0, 0xc7, 0x1f, 0x00, 0x7e, 0xe0, 0x17, 0x3c, 0x78, - 0x00, 0x30, 0x01, 0x02, 0x10, 0x40, 0x80, 0x00, 0xf0, 0x87, 0x1f, 0x00, - 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0xd8, 0x00, 0x02, 0x10, 0x40, 0x80, - 0x00, 0xe0, 0x83, 0x03, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x6c, - 0x00, 0x02, 0x10, 0x40, 0x80, 0x00, 0xe0, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x16, 0x00, 0x00, 0x00, 0x36, 0x00, 0x02, 0x10, 0x40, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x3b, 0x00, 0x02, - 0x10, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, - 0x00, 0x80, 0x35, 0x00, 0x02, 0x10, 0x40, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0xe0, 0xf6, 0x00, 0x02, 0x10, 0x20, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x00, 0x38, - 0x11, 0x07, 0x02, 0x00, 0x20, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x2c, 0x00, 0x00, 0x8e, 0x08, 0x7c, 0x02, 0x10, 0x20, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x80, 0x61, 0x08, 0x00, - 0x0f, 0x10, 0x20, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x90, - 0x01, 0x60, 0x1e, 0x08, 0x00, 0xf6, 0x10, 0x20, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x30, 0x0e, 0x1c, 0x01, 0x0c, 0x00, 0x81, 0xdf, - 0x1f, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe0, 0xf0, 0xc7, - 0x00, 0x04, 0x00, 0x00, 0x10, 0x18, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xe0, 0x03, 0xb8, 0x01, 0x04, 0x00, 0x03, 0x10, 0x10, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0xff, 0x07, 0x03, 0x02, - 0x00, 0x01, 0x10, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xb0, 0x78, 0x00, 0x0e, 0x00, 0x80, 0x00, 0x18, 0x10, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x58, 0xc0, 0x01, 0x38, 0x02, 0x80, 0x00, - 0x08, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, - 0x02, 0xe0, 0x02, 0x80, 0x00, 0x08, 0x10, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x2c, 0x00, 0x3c, 0x80, 0x03, 0x40, 0x00, 0x08, 0x10, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0xc0, 0x03, - 0x07, 0x40, 0x00, 0x0c, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x17, 0x00, 0x00, 0x9c, 0x1c, 0x20, 0x00, 0x04, 0x08, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x00, 0xe0, 0xe0, 0x20, - 0x00, 0x04, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x0b, - 0x00, 0x00, 0x00, 0x81, 0x13, 0x00, 0x06, 0x08, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x00, 0x06, 0x1e, 0x00, 0x02, - 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc0, 0x04, 0x00, 0x00, - 0x00, 0x08, 0xb0, 0x01, 0x02, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xc0, 0x06, 0x00, 0x00, 0x00, 0x10, 0x18, 0x07, 0x02, 0x08, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x20, - 0x08, 0x38, 0x02, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, - 0x01, 0x00, 0x00, 0x00, 0x40, 0x0c, 0xe0, 0x03, 0x08, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x40, 0x04, 0x00, - 0x3f, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x06, 0x00, 0xc1, 0x0f, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, 0x80, 0x01, 0x08, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x01, 0x80, 0x00, 0x08, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x80, 0x00, 0x0c, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, - 0x40, 0x00, 0x0c, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x02, 0x40, 0x00, 0x14, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x40, 0x00, - 0x16, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x02, 0x20, 0x00, 0x22, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, - 0xc0, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x20, 0x00, 0x22, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x06, 0x20, 0x00, 0x22, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x02, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x20, 0x00, 0x41, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x30, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x30, - 0x00, 0x41, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x01, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xe2, 0x10, 0x00, 0x41, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x98, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x1b, 0x80, 0x81, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x02, 0x1e, 0x80, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4e, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x76, 0xc0, 0x80, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, - 0xc2, 0x4f, 0x80, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x04, 0x03, 0x78, 0x80, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x80, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x84, 0x00, 0xe0, - 0x81, 0x80, 0x00, 0x00, 0x00, 0x00, 0x80, 0x09, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0xc4, 0x00, 0x20, 0xff, 0x81, 0x00, 0x00, 0x00, 0x00, 0xc0, - 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x10, 0x40, 0x81, - 0x00, 0x00, 0x00, 0x00, 0xc0, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x34, 0x00, 0x18, 0x60, 0x81, 0x00, 0x00, 0x00, 0x00, 0xe0, 0x04, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x08, 0x20, 0x81, 0x00, 0x00, - 0x00, 0x00, 0x60, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, - 0x0c, 0x10, 0x81, 0x00, 0x00, 0x00, 0x00, 0x70, 0x01, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x38, 0x00, 0x04, 0x10, 0x81, 0x00, 0x00, 0x00, 0x00, - 0x38, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x00, 0x04, 0x10, - 0x81, 0x00, 0x00, 0x00, 0x00, 0xb8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x90, 0x01, 0x06, 0x90, 0x80, 0x00, 0x00, 0x00, 0x00, 0x9c, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x06, 0x02, 0x88, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, - 0x38, 0x03, 0x88, 0x80, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x40, 0xc0, 0x03, 0x44, 0x80, 0x00, 0x00, 0x00, - 0x00, 0x2f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x80, 0x7d, - 0x26, 0x80, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x80, 0x80, 0xc0, 0x1b, 0x80, 0x00, 0x00, 0x00, 0x00, 0x0e, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x00, 0x0d, 0x80, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x66, 0x80, 0x05, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x80, 0x03, 0x80, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, - 0x7f, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x80}; diff --git a/corpora/en/wordnet/lib/wnres/wnb.man b/corpora/en/wordnet/lib/wnres/wnb.man deleted file mode 100644 index 2d8a096c0..000000000 --- a/corpora/en/wordnet/lib/wnres/wnb.man +++ /dev/null @@ -1,450 +0,0 @@ -Table of Contents - - - NAME - -wnb - WordNet window-based browser interface - - - SYNOPSIS - -wnb - - - DESCRIPTION - -wnb() provides a window-based interface for browsing the WordNet -database, allowing synsets and relations to be displayed as formatted -text. For each search word, different searches are available based on -syntactic category and information available in the database. - -wnb is written in Tcl/Tk, which is available for Unix and Windows -platforms. This allows the same code to work on all supported WordNet -platforms without modification. - - - WNB WINDOWS - -wnb() was developed with the philosophy that only those searches and -buttons that are applicable at the current time are displayed. As a -result, the appearance of the interface changes as it is used. Use the -standard windowing system mouse functions to open and close the WordNet -Browser Window, move the window, and change its size. - -The WordNet Browser Window contains the following areas, from top to -bottom: - -Menubar - A menubar runs along the top of the browser window with pulldown -menus and button entitled File , History , Options , and Help . Search -Word Entry - Below the Menubar is a line for entering the search word. A search - word can be a single word, hyphenated string, or a collocation. Case - is ignored. Although only uninflected forms of words are usually - stored in WordNet, users may search for inflected forms. WordNet's -morphological processor finds the base form automatically. Search Selection - Below the Search Word Entry line is an area for selecting the search - type and senses to search. Until a search word is entered this area - is blank. After a search word is entered, buttons appear - corresponding to each syntactic category (Noun , Verb , Adjective , -Adverb ) in which the search string is defined in WordNet. - -At the right edge of the Search Selection line is a box for entering -sense numbers. When this box is empty, search results for all senses of -the search word that match the search type are displayed. The search may -be restricted to one or more specific senses by entering a comma or -space separated list of sense numbers in the Senses box. These sense -numbers remain in effect until either the user changes or deletes them, -or a new search word is entered. - -Results Window - Most of the browser window consists of a large text buffer for - displaying the results of WordNet searches. Horizontal and vertical -scroll bars are present for scrolling through the output. Status Line - A status line is at the bottom of the browser window. When search - results are displayed in the Results Window, this status line - reflects the type of search selected. When there is no search word - entered, your are prompted to "Enter search word and press return." - If the search word entered is not in WordNet, the message "Sorry, no -matches found." is displayed. - - - SEARCHING THE DATABASE - -The WordNet browser navigates through WordNet in two steps. First a -search word is entered and an overview of all the senses of the word in -all syntactic categories is displayed in the Results Window. The senses -are grouped by syntactic category, and each synset is annotated as -described above with synset_offset , lex_filename , and sense_number as -dictated by the advanced search options set. The overview search also -indicates how many of the senses in each syntactic category are -represented in the tagged texts. This is a way for the user to determine -whether a sense's sense number is based on semantic tagging data, or was -arbitrarily assigned. For each sense that has appeared in such texts, -the number of semantic tags to that sense are indicated in parentheses -after the sense number. - -Then, within a syntactic category, a specific search is selected. The -desired search is performed and the search results are displayed in the -Results Window. Additional searches on the same word can be performed, -or a new search word can be entered. - -To enter a search word, click the mouse in the horizontal box labeled -Search Word , type a single word, hyphenated string, or collocation and -press RETURN. - -wnb() responds by making a set of Part of Speech buttons appear in the -Search Selection line. Each button corresponds to a syntactic category -in which the search string is defined in WordNet. At the same time, an -Overview of the synsets for all senses of the search word is displayed -in the Results Window. The Overview includes the gloss for each synset -and also indicates which of the senses have appeared in the semantically -tagged texts. For each sense that has appeared in such texts, the number -of semantic tags to that sense are indicated in parentheses after the -sense number. - -The pulldown menus in the Search Selection line list all of the WordNet -searches that can be performed for the search word in that part of -speech. To select a search, highlight it by dragging the mouse to it, -and release the mouse while it is highlighted. Drag the mouse outside of -the pulldown list and release to hide the menu without making a -selection. Dragging the mouse across the Part of Speech buttons displays -the available searches for each syntactic category. - -To restrict a search to one or more senses within a syntactic category, -enter a comma or space separated list of sense numbers in the Senses box -before selecting a search. - -After a search is selected, wnb() performs the search on the WordNet -database and displays the formatted results in the Results Window. -Whenever search results are displayed, a button entitled Redisplay -Overview is present at the right edge of the Search Word Entry line. -Clicking on this button redisplays the Overview of all synsets for the -search word in the Results Window. - - - Changing the Search Word - -A new search word can be entered at any time by moving to the Search -Word Entry box, if necessary highlighting it by clicking, erasing the -old string, typing a new one and pressing RETURN. The Senses box is -cleared if necessary, the Part of Speech buttons applicable to the new -search word appear, and the Overview for the new search word is displayed. - -The middle mouse button can also be used to select a new search word by -placing the mouse over any word in the Results Window and clicking. The -selected word will replace the text in the Search Word Entry box, and -the overview for that word will automatically be displayed. - -To select a new search string collocation from text in the Results -Window, highlight the text with the mouse and press CONTROL-S. - - - Interrupting a Search - -When a search is in progress the message "Searching...(press escape to -abort)" is displayed in the Status Line. Note that most searches return -very quickly, so this message isn't noticeable. As indicated, pressing -the ESCAPE key will interrupt the search. The results of the search -obtained before the time the search was interrupted are displayed in the -Results Window. - - - MENUS - - - File Menu - - Find keywords by substring - Display a popup window for specifying a search of WordNet for - words or collocations that contain a specific substring. If a - search word is currently entered in the Search Word box, it is - used as the substring to search for by default. The Substring - Search Window contains a box for entering a substring, a - pulldown menu to its right for specifying the part of speech to - search, a large area for displaying the search results, and - action buttons at the bottom entitled Search , Save , Print - Dismiss . - - Once a substring is entered and a part of speech selected, clicking - on the Search button causes a search to be done for all words and - collocations in WordNet, in that syntactic category, that contain - the substring according to the following criteria: - - 1. The substring can appear at the beginning or end of a word, - hyphenated string o collocation. - - 2. The substring can appear in the middle of a hyphenated string or - collocation, but only delimited on both sides by spaces or hyphens. - - The search results are displayed in the large buffer. Clicking on an - item from the search results list causes wnb() to automatically - enter that word in the Search Word box of the WordNet Browser Window - and perform the Overview search. - - Clicking the Save button generates a popup dialog for specifying a - filename to save the substring search results to. Clicking the Print - button generates a popup dialog in which a print command can be - specified. - - Selecting Dismiss closes the Substring Search Window. - - Save current display - Display a popup dialog for specifying a filename to save the - current Results Window contents to. Print current display - Display a popup dialog in which to specify a print command to - which the current Results Window contents can be piped. Note - - this option does not exist in the Windows version. Clear current - display - Clear the Search Word and Senses boxes, and Results Window. Exit - Does what you would expect. - - - History - -This pulldown menu contains a list of the last searches performed. -Selecting an item from this list performs that search again. The maximum -number of searches stored in the list can be adjusted from the Options -menu. The default is 10. - - - Options - - Show help with each search - When this checkbox is selected search results are preceded by - some explanatory text about the type of search selected. This is - off by default. Show descriptive gloss - When this checkbox is selected, synset glosses are displayed in - all search results. This is set by default. Note that glosses - are always displayed in the Overview. Wrap Lines - When this checkbox is selected, lines in the Results Window that - are wider than the window are automatically wrapped. This is set - by default. If not selected, a horizontal scroll bar is present - if any lines are longer than the width of the window. Set advanced - search options... - Selecting this item displays a popup window for setting the - following search options: Lexical file information; Synset - location in database file; Sense number . Choices for each are: - - Don't show (default) - Show with searches - Show with searches and overview - - When lexical file information is shown, the name of the - lexicographer file is printed before each synset, enclosed in angle - brackets (< ... > ). When both lexical file information and synset - location information are displayed, the synset location information - appears first. If within one lexicographer file more than one sense - of a word is entered, an integer lex_id is appended onto all but one - of the word's instances to uniquely identify it. In each synset, - each word having a non-zero lex_id is printed with the lex_id value - printed immediately following the word. If both lexicographer - information and sense numbers are displayed, lex_id s, if present, - precede sense numbers. - - When synset location is shown, the byte offset of the synset in the - database "data" file corresponding to the syntactic category of the - synset is printed before each synset, enclosed in curly braces - ({ ... } ). When both lexical file information and synset location - information are displayed, the synset location information appears - first. - - When sense numbers are shown, the sense number of each word in each - synset is printed immediately after the word, and is preceded by a - number sign (# ). - - Set maximum history length... - Display a popup dialog in which the maximum number of previous - searches to be kept on the History list can be set. Set - font... - Display a popup window for setting the font (typeface) and font - size to use for the Results Window. Choices for typeface are: - Courier , Helvetica , and Times (default). Font size can be - small , medium (default), or large . Save current options as default - Save the currently set options. Next time the browser is - started, these options will be used as the user defaults. - - - Help - - Help on using the WordNet browser - Display this manual page. Help on WordNet terminology - Display the wngloss (7WN) - manual page. Display the WordNet license - Display the WordNet copyright notice and license agreement. About - the WordNet browser - Information about this application. - - - SHORCUTS - -Clicking on any word in the Results Window while holding down the SHIFT -key on the keyboard causes the browser to replace Search Word with the -word and display its Overview and available searches. Clicking on any -word in the Results Window with the middle mouse button does the same -thing. - -Pressing the CONTROL-S keys causes the browser to do as above on the -text that is currently highlighted. Under Unix, this will work even if -the highlighted text is in another window. This works on hyphenated -strings and collocations, as well as individual words. - -Pressing the CONTROL-G keys displays the Substring Search Window. - - - SEARCH RESULTS - -The results of a search of the WordNet database are displayed in the -Results Window. Horizontal and vertical scroll bars are present for -scrolling through the search results. - -All searches other than the Overview list all senses matching the search -results in the following general format. Items enclosed in italicized -square brackets ([ ... ] ) may not be present. - -If a search cannot be performed on some senses of searchstr , the search -results are headed by a string of the form: X of Y senses of searchstr - - One line listing the number of senses matching the search selected. - - Each sense matching the search selected displayed as follows: - - Sense n - [{synset_offset}] - [] word1[#sense_number][, word2...] - - Where n is the sense number of the search word, synset_offset is the - byte offset of the synset in the data.pos file corresponding to the - syntactic category, lex_filename is the name of the lexicographer - file that the synset comes from, word1 is the first word in the - synset (note that this is not necessarily the search word) and - sense_number is the WordNet sense number assigned to the preceding - word. synset_offset , lex_filename , and sense_number are generated - if the appropriate Options are specified. - - The synsets matching the search selected are printed below each - sense's synset output described above. Each line of output is - preceded by a marker (usually => ), then a synset, formatted as - described above. If a search traverses more one level of the tree, - then successive lines are indented by spaces corresponding to its - level in the hierarchy. Glosses are displayed in parentheses at the - end of each synset if the appropriate Option is set. Each synset is - printed on one line. - - Senses are ordered from most to least frequently used, with the most - common sense numbered 1 . Frequency of use is determined by the - number of times a sense is tagged in the various semantic - concordance texts. Senses that are not semantically tagged follow - the ordered senses. Note that this ordering is only an estimate - based on usage in a small corpus. - - Verb senses can be grouped by similarity of meaning, rather than - ordered by frequency of use. When the "Synonyms, grouped by - similarity of meaning" search is selected, senses that are close in - meaning are printed together, with a line of dashes indicating the - end of a group. See wngroups (7WN) - for a discussion how senses are grouped. - - The output of the "Derivationally Related Forms" search shows word - forms that are morphologically related to searchstr . Each word form - pointed to from searchstr is displayed, preceded by RELATED TO-> and - the syntactic category of the link, followed, on the next line, by - its synset. Printed after the word form is # n where n indicates the - WordNet sense number of the term pointed to. - - The "Domain" and "Domain Terms" searches show the domain that a - synset has been classified in and, conversely, all of the terms that - have been assigned to a specific domain. A domain is either a TOPIC, - REGION or USAGE, as reflected in the specific pointer character - stored in the database, and displayed in the output. A Domain search - on a term shows the domain, if any, that each synset containing - searchstr has been classified in. The output display shows the - domain type (TOPIC, REGION or USAGE ), followed by the syntactic - category of the domain synset and the terms in the synset. Each term - is followed by # n where n indicates the WordNet sense number of the - term. The converse search, Domain TermsfP, shows all of the synsets - that have been placed into the domain searchstr , with analogous - markers. - - When the "Sentence Frames" search is specified, sample illustrative - sentences and generic sentence frames are displayed. If a sample - sentence is found, the base form of the search word is substituted - into the sentence, and it is printed below the synset, preceded with - the EX: marker. When no sample sentences are found, the generic - sentence frames are displayed. Sentence frames that are acceptable - for all words in a synset are preceded by the marker *> . If a frame - is acceptable for the search word only, it is preceded by the marker - => . - - Search results for adjectives are slightly different from those for - other parts of speech. When an adjective is printed, its direct - antonym, if it has one, is also printed in parentheses. When the - search word is in a head synset, all of the head synset's satellites - are also displayed. The position of an adjective in relation to the - noun may be restricted to the prenominal , postnominal or - predicative position. Where present, these restrictions are noted in - parentheses. - - When an adjective is a participle of a verb, the output indicates - the verb and displays its synset. - - When an adverb is derived from an adjective, the specific adjectival - sense on which it is based is indicated. - - The morphological transformations performed by the search code may - result in more than one word to search for. wnb() automatically - performs the requested search on all of the strings and returns the - results grouped by word. For example, the verb saw is both the - present tense of saw and the past tense of see . When there is more - than one word to search for, search results are grouped by word. - - - DIAGNOSTICS - -If the WordNet database files cannot be opened, error messages are -displayed. This is usually corrected by setting the environment -variables described below to the proper location of the WordNet database -for your installation. - - - ENVIRONMENT VARIABLES (UNIX) - -WNHOME -Base directory for WordNet. Default is /usr/local/WordNet-2.1 . WNSEARCHDIR - Directory in which the WordNet database has been installed. Default -is WNHOME/dict . - - - REGISTRY (WINDOWS) - -HKEY_LOCAL_MACHINE\SOFTWARE\WordNet\2.1\WNHome -Base directory for WordNet. Default is C:\Program Files\WordNet\2.1 . -HKEY_CURRENT_USER\SOFTWARE\WordNet\2.1\wnres -User's default browser options. - - - FILES - -index.pos -database index files data.pos -database data files *.vrb -files of sentences illustrating the use of verbs pos .exc -morphology exception lists - - - SEE ALSO - -wnintro (1WN) , wn -(1WN) , wnintro (3WN) - , lexnames (5WN) - , senseidx (5WN) - , wndb (5WN) , -wninput (5WN) , morphy -(7WN) , wngloss -(7WN) , wngroups -(7WN) . - - - BUGS -Please reports bugs to wordnet@princeton.edu. - diff --git a/corpora/en/wordnet/lib/wnres/wngloss.man b/corpora/en/wordnet/lib/wnres/wngloss.man deleted file mode 100644 index 89a75a446..000000000 --- a/corpora/en/wordnet/lib/wnres/wngloss.man +++ /dev/null @@ -1,197 +0,0 @@ -Table of Contents - - - NAME - -wngloss - glossary of terms used in WordNet system - - - DESCRIPTION - -The WordNet Reference Manual consists of Unix-style manual pages divided -into sections as follows: - -Section Description -1 WordNet User Commands -3 WordNet Library Functions -5 WordNet File Formats -7 Miscellaneous Information about WordNet - - - System Description - -The WordNet system consists of lexicographer files, code to convert -these files into a database, and search routines and interfaces that -display information from the database. The lexicographer files organize -nouns, verbs, adjectives and adverbs into groups of synonyms, and -describe relations between synonym groups. grind (1WN) - converts the lexicographer files into a database that -encodes the relations between the synonym groups. The different -interfaces to the WordNet database utilize a common library of search -routines to display these relations. Note that the lexicographer files -and grind (1WN) program are not -generally distributed. - - - Database Organization - -Information in WordNet is organized around logical groupings called -synsets. Each synset consists of a list of synonymous words or -collocations (eg. "fountain pen" , "take in" ), and pointers that -describe the relations between this synset and other synsets. A word or -collocation may appear in more than one synset, and in more than one -part of speech. The words in a synset are grouped such that they are -interchangeable in some context. - -Two kinds of relations are represented by pointers: lexical and -semantic. Lexical relations hold between semantically related word -forms; semantic relations hold between word meanings. These relations -include (but are not limited to) hypernymy/hyponymy -(superordinate/subordinate), antonymy, entailment, and meronymy/holonymy. - -Nouns and verbs are organized into hierarchies based on the -hypernymy/hyponymy relation between synsets. Additional pointers are be -used to indicate other relations. - -Adjectives are arranged in clusters containing head synsets and -satellite synsets. Each cluster is organized around antonymous pairs -(and occasionally antonymous triplets). The antonymous pairs (or -triplets) are indicated in the head synsets of a cluster. Most head -synsets have one or more satellite synsets, each of which represents a -concept that is similar in meaning to the concept represented by the -head synset. One way to think of the adjective cluster organization is -to visualize a wheel, with a head synset as the hub and satellite -synsets as the spokes. Two or more wheels are logically connected via -antonymy, which can be thought of as an axle between the wheels. - -Pertainyms are relational adjectives and do not follow the structure -just described. Pertainyms do not have antonyms; the synset for a -pertainym most often contains only one word or collocation and a lexical -pointer to the noun that the adjective is "pertaining to". Participial -adjectives have lexical pointers to the verbs that they are derived from. - -Adverbs are often derived from adjectives, and sometimes have antonyms; -therefore the synset for an adverb usually contains a lexical pointer to -the adjective from which it is derived. - -See wndb (5WN) for a detailed description -of the database files and how the data are represented. - - - GLOSSARY OF TERMS > - -Many terms used in the WordNet Reference Manual are unique to the -WordNet system. Other general terms have specific meanings when used in -the WordNet documentation. Definitions for many of these terms are given -to help with the interpretation and understanding of the reference -manual, and in the use of the WordNet system. - -In following definitions word is used in place of word or collocation . - -adjective cluster - A group of adjective synsets that are organized around antonymous - pairs or triplets. An adjective cluster contains two or more head - synsets which represent antonymous concepts. Each head synset has -one or more satellite synsets . attribute - A noun for which adjectives express values. The noun weight is an -attribute, for which the adjectives light and heavy express values. base -form - The base form of a word or collocation is the form to which -inflections are added. basic synset - Syntactically, same as synset . Term is used in wninput - (5WN) to help explain -differences in entering synsets in lexicographer files. collocation - A collocation in WordNet is a string of two or more words, connected - by spaces or hyphens. Examples are: man-eating shark , blue-collar , - depend on , line of products . In the database files spaces are -represented as underscore (_ ) characters. coordinate -Coordinate terms are nouns or verbs that have the same hypernym . -cross-cluster pointer -A semantic pointer from one adjective cluster to another. derivationally -related forms - Terms in different syntactic categories that have the same root form -and are semantically related. direct antonyms - A pair of words between which there is an associative bond resulting - from their frequent co-occurrence. In adjective clusters , direct -antonyms appears only in head synsets . domain - A topical classification to which a synset has been linked with a -CATEGORY, REGION or USAGE pointer. domain term - A synset belonging to a topical class. A domain term is further -identified as being a CATEGORY_TERM, REGION_TERM or USAGE_TERM. entailment -A verb X entails Y if X cannot be done unless Y is, or has been, done. -exception list - Morphological transformations for words that are not regular and -therefore cannot be processed in an algorithmic manner. group - Verb senses that similar in meaning and have been manually grouped -together. gloss - Each synset contains gloss consisting of a definition and optionally -example sentences. head synset - Synset in an adjective cluster containing at least one word that has -a direct antonym . holonym - The name of the whole of which the meronym names a part. Y is a -holonym of X if X is a part of Y . hypernym - The generic term used to designate a whole class of specific -instances. Y is a hypernym of X if X is a (kind of) Y . hyponym - The specific term used to designate a member of a class. X is a -hyponym of Y if X is a (kind of) Y . indirect antonym - An adjective in a satellite synset that does not have a direct - antonym has an indirect antonyms via the direct antonym of the head -synset . instance - A proper noun that refers to a particular, unique referent (as - distinguished from nouns that refer to classes). This is a specific -form of hyponym. lemma - Lower case ASCII text of word as found in the WordNet database index -files. Usually the base form for a word or collocation. lexical pointer - A lexical pointer indicates a relation between words in synsets -(word forms). lexicographer file - Files containing the raw data for WordNet synsets, edited by - lexicographers, that are input to the grind program to generate a -WordNet database. lexicographer id (lex id) - A decimal integer that, when appended onto lemma , uniquely -identifies a sense within a lexicographer file. monosemous -Having only one sense in a syntactic category. meronym - The name of a constituent part of, the substance of, or a member of -something. X is a meronym of Y if X is a part of Y . part of speech - WordNet defines "part of speech" as either noun, verb, adjective, or -adverb. Same as syntactic category . participial adjective -An adjective that is derived from a verb. pertainym - A relational adjective. Adjectives that are pertainyms are usually - defined by such phrases as "of or pertaining to" and do not have -antonyms. A pertainym can point to a noun or another pertainym. polysemous -Having more than one sense in a syntactic category. polysemy count -Number of senses of a word in a syntactic category, in WordNet. postnominal - A postnominal adjective occurs only immediately following the noun -that it modifies. predicative - An adjective that can be used only in predicate positions. If X is a - predicate adjective, it can only be used in such phrases as "it is X -" and never prenominally. prenominal - An adjective that can occur only before the noun that it modifies: -it cannot be used predicatively. satellite synset - Synset in an adjective cluster representing a concept that is -similar in meaning to the concept represented by its head synset . -semantic concordance - A textual corpus (e.g. the Brown Corpus) and a lexicon (e.g. - WordNet) so combined that every substantive word in the text is -linked to its appropriate sense in the lexicon via a semantic tag . -semantic tag - A pointer from a word in a text file to a specific sense of that - word in the WordNet database. A semantic tag in a semantic -concordance is represented by a sense key . semantic pointer -A semantic pointer indicates a relation between synsets (concepts). sense - A meaning of a word in WordNet. Each sense of a word is in a -different synset . sense key - Information necessary to find a sense in the WordNet database. A - sense key combines a lemma field and codes for the synset type, - lexicographer id, lexicographer file number, and information about a - satellite's head synset , if required. See senseidx - (5WN) for a description of -the format of a sense key. subordinate -Same as hyponym . superordinate -Same as hypernym . synset - A synonym set; a set of words that are interchangeable in some - context without changing the truth value of the preposition in which -they are embedded. troponym - A verb expressing a specific manner elaboration of another verb. X -is a troponym of Y if to X is to Y in some manner. unique beginner -A noun synset with no superordinate . - diff --git a/corpora/en/wordnet/lib/wnrtl.c b/corpora/en/wordnet/lib/wnrtl.c deleted file mode 100644 index 5368d1fff..000000000 --- a/corpora/en/wordnet/lib/wnrtl.c +++ /dev/null @@ -1,77 +0,0 @@ -/* - - wnrtl.c - global variables used by WordNet Run Time Library - -*/ - -#include -#include "wn.h" - -static char *Id = "$Id: wnrtl.c,v 1.8 2005/01/27 17:33:54 wn Rel $"; - -/* Search code variables and flags */ - -SearchResults wnresults; /* structure containing results of search */ - -int fnflag = 0; /* if set, print lex filename after sense */ -int dflag = 1; /* if set, print definitional glosses */ -int saflag = 1; /* if set, print SEE ALSO pointers */ -int fileinfoflag = 0; /* if set, print lex file info on synsets */ -int frflag = 0; /* if set, print verb frames */ -int abortsearch = 0; /* if set, stop search algorithm */ -int offsetflag = 0; /* if set, print byte offset of each synset */ -int wnsnsflag = 0; /* if set, print WN sense # for each word */ - -/* File pointers for database files */ - -int OpenDB = 0; /* if non-zero, database file are open */ -FILE *datafps[NUMPARTS + 1] = { NULL, NULL, NULL, NULL, NULL } , - *indexfps[NUMPARTS + 1] = { NULL, NULL, NULL, NULL, NULL } , - *sensefp = NULL, - *cntlistfp = NULL, - *keyindexfp = NULL, - *revkeyindexfp = NULL, - *vsentfilefp = NULL, *vidxfilefp = NULL; - -/* Method for interface to check for events while search is running */ - -void (*interface_doevents_func)(void) = NULL; - /* callback function for interruptable searches */ - /* in single-threaded interfaces */ - -/* General error message handler - can be defined by interface. - Default function provided in library returns -1 */ - -int default_display_message(char *); -int (*display_message)(char *) = default_display_message; - -/* - Revsion log: - - $Log: wnrtl.c,v $ - Revision 1.8 2005/01/27 17:33:54 wn - cleaned up includes - - Revision 1.7 2005/01/27 16:31:17 wn - removed cousinfp for 1.6 - - Revision 1.6 2002/03/22 20:29:58 wn - added revkeyindexfp - - Revision 1.5 2001/10/11 18:03:02 wn - initialize keyindexfp - - Revision 1.4 2001/03/27 18:48:15 wn - added cntlistfp - - Revision 1.3 2001/03/13 17:45:48 wn - *** empty log message *** - - Revision 1.2 2000/08/14 16:05:06 wn - added tcflag - - Revision 1.1 1997/09/02 16:31:18 wn - Initial revision - - -*/ diff --git a/corpora/en/wordnet/lib/wnutil.c b/corpora/en/wordnet/lib/wnutil.c deleted file mode 100644 index 5ee5d7635..000000000 --- a/corpora/en/wordnet/lib/wnutil.c +++ /dev/null @@ -1,732 +0,0 @@ -/* - - wnutil.c - utility functions used by WordNet code - -*/ - -#ifdef _WINDOWS -#include -#include -#endif - -#include -#include - -#ifdef __unix__ -#ifndef __MACH__ -#include -#endif -#endif - -#include -#include -#include - -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif -#include "wn.h" - -static int do_init(); - -static char msgbuf[256]; /* buffer for constructing error messages */ - -/* used by the strstr wrapper functions */ -static char *strstr_word; -static char *strstr_stringstart; -static char *strstr_stringcurrent; - - -/* Initialization functions */ - -static void closefps(); - -int wninit(void) -{ - static int done = 0; - static int openerr = 0; - char *env; - - if (!done) { - if (env = getenv("WNDBVERSION")) { - wnrelease = strdup(env); /* set release */ - assert(wnrelease); - } - openerr = do_init(); - if (!openerr) { - done = 1; - OpenDB = 1; - openerr = morphinit(); - } - } - - return(openerr); -} - -int re_wninit(void) -{ - int openerr; - char *env; - - closefps(); - - if (env = getenv("WNDBVERSION")) { - wnrelease = strdup(env); /* set release */ - assert(wnrelease); - } - openerr = do_init(); - if (!openerr) { - OpenDB = 1; - openerr = re_morphinit(); - } - - return(openerr); -} - -static void closefps(void) -{ - int i; - - if (OpenDB) { - for (i = 1; i < NUMPARTS + 1; i++) { - if (datafps[i] != NULL) - fclose(datafps[i]); datafps[i] = NULL; - if (indexfps[i] != NULL) - fclose(indexfps[i]); indexfps[i] = NULL; - } - if (sensefp != NULL) { - fclose(sensefp); sensefp = NULL; - } - if (cntlistfp != NULL) { - fclose(cntlistfp); cntlistfp = NULL; - } - if (keyindexfp != NULL) { - fclose(keyindexfp); keyindexfp = NULL; - } - if (vsentfilefp != NULL) { - fclose(vsentfilefp); vsentfilefp = NULL; - } - if (vidxfilefp != NULL) { - fclose(vidxfilefp); vidxfilefp = NULL; - } - OpenDB = 0; - } -} - -static int do_init(void) -{ - int i, openerr; - char searchdir[256], tmpbuf[256]; - -#ifdef _WINDOWS - HKEY hkey; - DWORD dwType, dwSize; -#else - char *env; -#endif - - openerr = 0; - - /* Find base directory for database. If set, use WNSEARCHDIR. - If not set, check for WNHOME/dict, otherwise use DEFAULTPATH. */ - -#ifdef _WINDOWS - if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, TEXT("Software\\WordNet\\3.0"), - 0, KEY_READ, &hkey) == ERROR_SUCCESS) { - dwSize = sizeof(searchdir); - RegQueryValueEx(hkey, TEXT("WNHome"), - NULL, &dwType, searchdir, &dwSize); - RegCloseKey(hkey); - strcat(searchdir, DICTDIR); - } else if (RegOpenKeyEx(HKEY_CURRENT_USER, TEXT("Software\\WordNet\\3.0"), - 0, KEY_READ, &hkey) == ERROR_SUCCESS) { - dwSize = sizeof(searchdir); - RegQueryValueEx(hkey, TEXT("WNHome"), - NULL, &dwType, searchdir, &dwSize); - RegCloseKey(hkey); - strcat(searchdir, DICTDIR); - } else - sprintf(searchdir, DEFAULTPATH); -#else - if ((env = getenv("WNSEARCHDIR")) != NULL) - strcpy(searchdir, env); - else if ((env = getenv("WNHOME")) != NULL) - sprintf(searchdir, "%s%s", env, DICTDIR); - else - strcpy(searchdir, DEFAULTPATH); -#endif - - for (i = 1; i < NUMPARTS + 1; i++) { - sprintf(tmpbuf, DATAFILE, searchdir, partnames[i]); - if((datafps[i] = fopen(tmpbuf, "r")) == NULL) { - sprintf(msgbuf, - "WordNet library error: Can't open datafile(%s)\n", - tmpbuf); - display_message(msgbuf); - openerr = -1; - } - sprintf(tmpbuf, INDEXFILE, searchdir, partnames[i]); - if((indexfps[i] = fopen(tmpbuf, "r")) == NULL) { - sprintf(msgbuf, - "WordNet library error: Can't open indexfile(%s)\n", - tmpbuf); - display_message(msgbuf); - openerr = -1; - } - } - - /* This file isn't used by the library and doesn't have to - be present. No error is reported if the open fails. */ - - sprintf(tmpbuf, SENSEIDXFILE, searchdir); - sensefp = fopen(tmpbuf, "r"); - - /* If this file isn't present, the runtime code will skip printint out - the number of times each sense was tagged. */ - - sprintf(tmpbuf, CNTLISTFILE, searchdir); - cntlistfp = fopen(tmpbuf, "r"); - - /* This file doesn't have to be present. No error is reported if the - open fails. */ - - sprintf(tmpbuf, KEYIDXFILE, searchdir); - keyindexfp = fopen(tmpbuf, "r"); - - sprintf(tmpbuf, REVKEYIDXFILE, searchdir); - revkeyindexfp = fopen(tmpbuf, "r"); - - sprintf(tmpbuf, VRBSENTFILE, searchdir); - if ((vsentfilefp = fopen(tmpbuf, "r")) == NULL) { - sprintf(msgbuf, -"WordNet library warning: Can't open verb example sentence file(%s)\n", - tmpbuf); - display_message(msgbuf); - } - - sprintf(tmpbuf, VRBIDXFILE, searchdir); - if ((vidxfilefp = fopen(tmpbuf, "r")) == NULL) { - sprintf(msgbuf, -"WordNet library warning: Can't open verb example sentence index file(%s)\n", - tmpbuf); - display_message(msgbuf); - } - - return(openerr); -} - -/* Count the number of underscore or space separated words in a string. */ - -int cntwords(char *s, char separator) -{ - register int wdcnt = 0; - - while (*s) { - if (*s == separator || *s == ' ' || *s == '_') { - wdcnt++; - while (*s && (*s == separator || *s == ' ' || *s == '_')) - s++; - } else - s++; - } - return(++wdcnt); -} - -/* Convert string to lower case remove trailing adjective marker if found */ - -char *strtolower(char *str) -{ - register char *s = str; - - while(*s != '\0') { - if(*s >= 'A' && *s <= 'Z') - *s += 32; - else if(*s == '(') { - *s='\0'; - break; - } - s++; - } - return(str); -} - -/* Convert string passed to lower case */ - -char *ToLowerCase(char *str) -{ - register char *s = str; - - while(*s != '\0') { - if(*s >= 'A' && *s <= 'Z') - *s += 32; - s++; - } - return(str); -} - -/* Replace all occurences of 'from' with 'to' in 'str' */ - -char *strsubst(char *str, char from, char to) -{ - register char *p; - - for (p = str; *p != 0; ++p) - if (*p == from) - *p = to; - return str; -} - -/* Return pointer code for pointer type characer passed. */ - -int getptrtype(char *ptrstr) -{ - register int i; - for(i = 1; i <= MAXPTR; i++) { - if(!strcmp(ptrstr, ptrtyp[i])) - return(i); - } - return(0); -} - -/* Return part of speech code for string passed */ - -int getpos(char *s) -{ - switch (*s) { - case 'n': - return(NOUN); - case 'a': - case 's': - return(ADJ); - case 'v': - return(VERB); - case 'r': - return(ADV); - default: - sprintf(msgbuf, - "WordNet library error: unknown part of speech %s\n", s); - display_message(msgbuf); - exit(-1); - } -} - -/* Return synset type code for string passed. */ - -int getsstype(char *s) -{ - switch (*s) { - case 'n': - return(NOUN); - case 'a': - return(ADJ); - case 'v': - return(VERB); - case 's': - return(SATELLITE); - case 'r': - return(ADV); - default: - sprintf(msgbuf, "WordNet library error: Unknown synset type %s\n", s); - display_message(msgbuf); - exit(-1); - } -} - -/* Pass in string for POS, return corresponding integer value */ - -int StrToPos(char *str) -{ - if (!strcmp(str, "noun")) - return(NOUN); - else if (!strcmp(str, "verb")) - return(VERB); - else if (!strcmp(str, "adj")) - return(ADJ); - else if (!strcmp(str, "adv")) - return(ADV); - else { - return(-1); - } -} - -#define MAX_TRIES 5 - -/* Find string for 'searchstr' as it is in index file */ - -char *GetWNStr(char *searchstr, int dbase) -{ - register int i, j, k, offset = 0; - register char c; - char *underscore = NULL, *hyphen = NULL, *period = NULL; - static char strings[MAX_TRIES][WORDBUF]; - - ToLowerCase(searchstr); - - if (!(underscore = strchr(searchstr, '_')) && - !(hyphen = strchr(searchstr, '-')) && - !(period = strchr(searchstr, '.'))) - return (strcpy(strings[0],searchstr)); - - for(i = 0; i < 3; i++) - strcpy(strings[i], searchstr); - if (underscore != NULL) strsubst(strings[1], '_', '-'); - if (hyphen != NULL) strsubst(strings[2], '-', '_'); - for(i = j = k = 0; (c = searchstr[i]) != '\0'; i++){ - if(c != '_' && c != '-') strings[3][j++] = c; - if(c != '.') strings[4][k++] = c; - } - strings[3][j] = '\0'; - strings[4][k] = '\0'; - - for(i = 1; i < MAX_TRIES; i++) - if(strcmp(strings[0], strings[i]) == 0) strings[i][0] = '\0'; - - for (i = (MAX_TRIES - 1); i >= 0; i--) - if (strings[i][0] != '\0') - if (bin_search(strings[i], indexfps[dbase]) != NULL) - offset = i; - - return(strings[offset]); -} - -/* Return synset for sense key passed. */ - -SynsetPtr GetSynsetForSense(char *sensekey) -{ - long offset; - - /* Pass in sense key and return parsed sysnet structure */ - - if ((offset = GetDataOffset(sensekey))) - return(read_synset(GetPOS(sensekey), - offset, - GetWORD(sensekey))); - else - return(NULL); -} - -/* Find offset of sense key in data file */ - -long GetDataOffset(char *sensekey) -{ - char *line; - - /* Pass in encoded sense string, return byte offset of corresponding - synset in data file. */ - - if (sensefp == NULL) { - display_message("WordNet library error: Sense index file not open\n"); - return(0L); - } - line = bin_search(sensekey, sensefp); - if (line) { - while (*line++ != ' '); - return(atol(line)); - } else - return(0L); -} - -/* Find polysemy count for sense key passed. */ - -int GetPolyCount(char *sensekey) -{ - IndexPtr idx; - int sense_cnt = 0; - - /* Pass in encoded sense string and return polysemy count - for word in corresponding POS */ - - idx = index_lookup(GetWORD(sensekey), GetPOS(sensekey)); - if (idx) { - sense_cnt = idx->sense_cnt; - free_index(idx); - } - return(sense_cnt); -} - -/* Return word part of sense key */ -char *GetWORD(char *sensekey) -{ - static char word[100]; - int i = 0; - - /* Pass in encoded sense string and return WORD */ - - while ((word[i++] = *sensekey++) != '%'); - word[i - 1] = '\0'; - return(word); -} - -/* Return POS code for sense key passed. */ - -int GetPOS(char *sensekey) -{ - int pos; - - /* Pass in encoded sense string and return POS */ - - while (*sensekey++ != '%'); /* skip over WORD */ - sscanf(sensekey, "%1d", &pos); - return(pos == SATELLITE ? ADJ : pos); -} - -/* Reconstruct synset from synset pointer and return ptr to buffer */ - -char *FmtSynset(SynsetPtr synptr, int defn) -{ - int i; - static char synset[SMLINEBUF]; - - synset[0] = '\0'; - - if (fileinfoflag) - sprintf(synset, "<%s> ", lexfiles[synptr->fnum]); - - strcat(synset, "{ "); - for (i = 0; i < (synptr->wcount - 1); i++) - sprintf(synset + strlen(synset), "%s, ", synptr->words[i]); - - strcat(synset, synptr->words[i]); - - if (defn && synptr->defn) - sprintf(synset + strlen(synset), " (%s) ", synptr->defn); - - strcat(synset, " }"); - return(synset); -} - -/* Convert WordNet sense number passed of IndexPtr entry to sense key. */ -char *WNSnsToStr(IndexPtr idx, int sense) -{ - SynsetPtr sptr, adjss; - char sensekey[512], lowerword[256]; - int j, sstype, pos; - - pos = getpos(idx->pos); - sptr = read_synset(pos, idx->offset[sense - 1], ""); - - if ((sstype = getsstype(sptr->pos)) == SATELLITE) { - for (j = 0; j < sptr->ptrcount; j++) { - if (sptr->ptrtyp[j] == SIMPTR) { - adjss = read_synset(sptr->ppos[j],sptr->ptroff[j],""); - sptr->headword = malloc (strlen(adjss->words[0]) + 1); - assert(sptr->headword); - strcpy(sptr->headword, adjss->words[0]); - strtolower(sptr->headword); - sptr->headsense = adjss->lexid[0]; - free_synset(adjss); - break; - } - } - } - - for (j = 0; j < sptr->wcount; j++) { - strcpy(lowerword, sptr->words[j]); - strtolower(lowerword); - if(!strcmp(lowerword, idx->wd)) - break; - } - - if (j == sptr->wcount) { - free_synset(sptr); - return(NULL); - } - - if (sstype == SATELLITE) - sprintf(sensekey,"%s%%%-1.1d:%-2.2d:%-2.2d:%s:%-2.2d", - idx->wd, SATELLITE, sptr->fnum, - sptr->lexid[j], sptr->headword,sptr->headsense); - else - sprintf(sensekey,"%s%%%-1.1d:%-2.2d:%-2.2d::", - idx->wd, pos, sptr->fnum, sptr->lexid[j]); - - free_synset(sptr); - return(strdup(sensekey)); -} - -/* Search for string and/or baseform of word in database and return - index structure for word if found in database. */ - -IndexPtr GetValidIndexPointer(char *word, int pos) -{ - IndexPtr idx; - char *morphword; - - idx = getindex(word, pos); - - if (idx == NULL) { - if ((morphword = morphstr(word, pos)) != NULL) - while (morphword) { - if ((idx = getindex(morphword, pos)) != NULL) break; - morphword = morphstr(NULL, pos); - } - } - return (idx); -} - -/* Return sense number in database for word and lexsn passed. */ - -int GetWNSense(char *word, char *lexsn) -{ - SnsIndexPtr snsidx; - char buf[256]; - - sprintf(buf, "%s%%%s", word, lexsn); /* create sensekey */ - if ((snsidx = GetSenseIndex(buf)) != NULL) - return(snsidx->wnsense); - else - return(0); -} - -/* Return parsed sense index entry for sense key passed. */ - -SnsIndexPtr GetSenseIndex(char *sensekey) -{ - char *line; - char buf[256], loc[9]; - SnsIndexPtr snsidx = NULL; - - if ((line = bin_search(sensekey, sensefp)) != NULL) { - snsidx = (SnsIndexPtr)malloc(sizeof(SnsIndex)); - assert(snsidx); - sscanf(line, "%s %s %d %d\n", - buf, - loc, - &snsidx->wnsense, - &snsidx->tag_cnt); - snsidx->sensekey = malloc(strlen(buf + 1)); - assert(snsidx->sensekey); - strcpy(snsidx->sensekey, buf); - snsidx->loc = atol(loc); - /* Parse out word from sensekey to make things easier for caller */ - snsidx->word = strdup(GetWORD(snsidx->sensekey)); - assert(snsidx->word); - snsidx->nextsi = NULL; - } - return(snsidx); -} - -/* Return number of times sense is tagged */ - -int GetTagcnt(IndexPtr idx, int sense) -{ - char *sensekey, *line; - char buf[256]; - int snum, cnt = 0; - - if (cntlistfp) { - - sensekey = WNSnsToStr(idx, sense); - if ((line = bin_search(sensekey, cntlistfp)) != NULL) { - sscanf(line, "%s %d %d", buf, &snum, &cnt); - } - free(sensekey); - } - - return(cnt); -} - -void FreeSenseIndex(SnsIndexPtr snsidx) -{ - if (snsidx) { - free(snsidx->word); - free(snsidx); - } -} - -char *GetOffsetForKey(unsigned int key) -{ - unsigned int rkey; - char ckey[7]; - static char loc[11] = ""; - char *line; - char searchdir[256], tmpbuf[256]; - - /* Try to open file in case wn_init wasn't called */ - - if (!keyindexfp) { - strcpy(searchdir, SetSearchdir()); - sprintf(tmpbuf, KEYIDXFILE, searchdir); - keyindexfp = fopen(tmpbuf, "r"); - } - if (keyindexfp) { - sprintf(ckey, "%6.6d", key); - if ((line = bin_search(ckey, keyindexfp)) != NULL) { - sscanf(line, "%d %s", &rkey, loc); - return(loc); - } - } - return(NULL); -} - - -unsigned int GetKeyForOffset(char *loc) -{ - unsigned int key; - char rloc[11] = ""; - char *line; - char searchdir[256], tmpbuf[256]; - - /* Try to open file in case wn_init wasn't called */ - - if (!revkeyindexfp) { - strcpy(searchdir, SetSearchdir()); - sprintf(tmpbuf, REVKEYIDXFILE, searchdir); - revkeyindexfp = fopen(tmpbuf, "r"); - } - if (revkeyindexfp) { - if ((line = bin_search(loc, revkeyindexfp)) != NULL) { - sscanf(line, "%s %d", rloc, &key ); - return(key); - } - } - return(0); -} - -char *SetSearchdir() -{ - static char searchdir[256]; - char *env; - - /* Find base directory for database. If set, use WNSEARCHDIR. - If not set, check for WNHOME/dict, otherwise use DEFAULTPATH. */ - - if ((env = getenv("WNSEARCHDIR")) != NULL) - strcpy(searchdir, env); - else if ((env = getenv("WNHOME")) != NULL) - sprintf(searchdir, "%s%s", env, DICTDIR); - else - strcpy(searchdir, DEFAULTPATH); - - return(searchdir); -} - -int default_display_message(char *msg) -{ - return(-1); -} - -/* -** Wrapper functions for strstr that allow you to retrieve each -** occurance of a word within a longer string, not just the first. -** -** strstr_init is called with the same arguments as normal strstr, -** but does not return any value. -** -** strstr_getnext returns the position offset (not a pointer, as does -** normal strstr) of the next occurance, or -1 if none remain. -*/ - -void strstr_init (char *string, char *word) { - strstr_word = word; - strstr_stringstart = string; - strstr_stringcurrent = string; -} - -int strstr_getnext (void) { - char *loc = strstr (strstr_stringcurrent, strstr_word); - if (loc == NULL) return -1; - strstr_stringcurrent = loc + 1; - return (loc - strstr_stringstart); -} - diff --git a/corpora/en/wordnet/missing b/corpora/en/wordnet/missing deleted file mode 100755 index e7ef83a1c..000000000 --- a/corpora/en/wordnet/missing +++ /dev/null @@ -1,360 +0,0 @@ -#! /bin/sh -# Common stub for a few missing GNU programs while installing. - -scriptversion=2003-09-02.23 - -# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003 -# Free Software Foundation, Inc. -# Originally by Fran,cois Pinard , 1996. - -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. - -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA -# 02111-1307, USA. - -# As a special exception to the GNU General Public License, if you -# distribute this file as part of a program that contains a -# configuration script generated by Autoconf, you may include it under -# the same distribution terms that you use for the rest of that program. - -if test $# -eq 0; then - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 -fi - -run=: - -# In the cases where this matters, `missing' is being run in the -# srcdir already. -if test -f configure.ac; then - configure_ac=configure.ac -else - configure_ac=configure.in -fi - -msg="missing on your system" - -case "$1" in ---run) - # Try to run requested program, and just exit if it succeeds. - run= - shift - "$@" && exit 0 - # Exit code 63 means version mismatch. This often happens - # when the user try to use an ancient version of a tool on - # a file that requires a minimum version. In this case we - # we should proceed has if the program had been absent, or - # if --run hadn't been passed. - if test $? = 63; then - run=: - msg="probably too old" - fi - ;; -esac - -# If it does not exist, or fails to run (possibly an outdated version), -# try to emulate it. -case "$1" in - - -h|--h|--he|--hel|--help) - echo "\ -$0 [OPTION]... PROGRAM [ARGUMENT]... - -Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an -error status if there is no known handling for PROGRAM. - -Options: - -h, --help display this help and exit - -v, --version output version information and exit - --run try to run the given command, and emulate it if it fails - -Supported PROGRAM values: - aclocal touch file \`aclocal.m4' - autoconf touch file \`configure' - autoheader touch file \`config.h.in' - automake touch all \`Makefile.in' files - bison create \`y.tab.[ch]', if possible, from existing .[ch] - flex create \`lex.yy.c', if possible, from existing .c - help2man touch the output file - lex create \`lex.yy.c', if possible, from existing .c - makeinfo touch the output file - tar try tar, gnutar, gtar, then tar without non-portable flags - yacc create \`y.tab.[ch]', if possible, from existing .[ch] - -Send bug reports to ." - ;; - - -v|--v|--ve|--ver|--vers|--versi|--versio|--version) - echo "missing $scriptversion (GNU Automake)" - ;; - - -*) - echo 1>&2 "$0: Unknown \`$1' option" - echo 1>&2 "Try \`$0 --help' for more information" - exit 1 - ;; - - aclocal*) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acinclude.m4' or \`${configure_ac}'. You might want - to install the \`Automake' and \`Perl' packages. Grab them from - any GNU archive site." - touch aclocal.m4 - ;; - - autoconf) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`${configure_ac}'. You might want to install the - \`Autoconf' and \`GNU m4' packages. Grab them from any GNU - archive site." - touch configure - ;; - - autoheader) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`acconfig.h' or \`${configure_ac}'. You might want - to install the \`Autoconf' and \`GNU m4' packages. Grab them - from any GNU archive site." - files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` - test -z "$files" && files="config.h" - touch_files= - for f in $files; do - case "$f" in - *:*) touch_files="$touch_files "`echo "$f" | - sed -e 's/^[^:]*://' -e 's/:.*//'`;; - *) touch_files="$touch_files $f.in";; - esac - done - touch $touch_files - ;; - - automake*) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. - You might want to install the \`Automake' and \`Perl' packages. - Grab them from any GNU archive site." - find . -type f -name Makefile.am -print | - sed 's/\.am$/.in/' | - while read f; do touch "$f"; done - ;; - - autom4te) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is needed, but is $msg. - You might have modified some files without having the - proper tools for further handling them. - You can get \`$1' as part of \`Autoconf' from any GNU - archive site." - - file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` - test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` - if test -f "$file"; then - touch $file - else - test -z "$file" || exec >$file - echo "#! /bin/sh" - echo "# Created by GNU Automake missing as a replacement of" - echo "# $ $@" - echo "exit 0" - chmod +x $file - exit 1 - fi - ;; - - bison|yacc) - echo 1>&2 "\ -WARNING: \`$1' $msg. You should only need it if - you modified a \`.y' file. You may need the \`Bison' package - in order for those modifications to take effect. You can get - \`Bison' from any GNU archive site." - rm -f y.tab.c y.tab.h - if [ $# -ne 1 ]; then - eval LASTARG="\${$#}" - case "$LASTARG" in - *.y) - SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` - if [ -f "$SRCFILE" ]; then - cp "$SRCFILE" y.tab.c - fi - SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` - if [ -f "$SRCFILE" ]; then - cp "$SRCFILE" y.tab.h - fi - ;; - esac - fi - if [ ! -f y.tab.h ]; then - echo >y.tab.h - fi - if [ ! -f y.tab.c ]; then - echo 'main() { return 0; }' >y.tab.c - fi - ;; - - lex|flex) - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.l' file. You may need the \`Flex' package - in order for those modifications to take effect. You can get - \`Flex' from any GNU archive site." - rm -f lex.yy.c - if [ $# -ne 1 ]; then - eval LASTARG="\${$#}" - case "$LASTARG" in - *.l) - SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` - if [ -f "$SRCFILE" ]; then - cp "$SRCFILE" lex.yy.c - fi - ;; - esac - fi - if [ ! -f lex.yy.c ]; then - echo 'main() { return 0; }' >lex.yy.c - fi - ;; - - help2man) - if test -z "$run" && ($1 --version) > /dev/null 2>&1; then - # We have it, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a dependency of a manual page. You may need the - \`Help2man' package in order for those modifications to take - effect. You can get \`Help2man' from any GNU archive site." - - file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` - if test -z "$file"; then - file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` - fi - if [ -f "$file" ]; then - touch $file - else - test -z "$file" || exec >$file - echo ".ab help2man is required to generate this page" - exit 1 - fi - ;; - - makeinfo) - if test -z "$run" && (makeinfo --version) > /dev/null 2>&1; then - # We have makeinfo, but it failed. - exit 1 - fi - - echo 1>&2 "\ -WARNING: \`$1' is $msg. You should only need it if - you modified a \`.texi' or \`.texinfo' file, or any other file - indirectly affecting the aspect of the manual. The spurious - call might also be the consequence of using a buggy \`make' (AIX, - DU, IRIX). You might want to install the \`Texinfo' package or - the \`GNU make' package. Grab either from any GNU archive site." - file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` - if test -z "$file"; then - file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` - file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file` - fi - touch $file - ;; - - tar) - shift - if test -n "$run"; then - echo 1>&2 "ERROR: \`tar' requires --run" - exit 1 - fi - - # We have already tried tar in the generic part. - # Look for gnutar/gtar before invocation to avoid ugly error - # messages. - if (gnutar --version > /dev/null 2>&1); then - gnutar "$@" && exit 0 - fi - if (gtar --version > /dev/null 2>&1); then - gtar "$@" && exit 0 - fi - firstarg="$1" - if shift; then - case "$firstarg" in - *o*) - firstarg=`echo "$firstarg" | sed s/o//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - case "$firstarg" in - *h*) - firstarg=`echo "$firstarg" | sed s/h//` - tar "$firstarg" "$@" && exit 0 - ;; - esac - fi - - echo 1>&2 "\ -WARNING: I can't seem to be able to run \`tar' with the given arguments. - You may want to install GNU tar or Free paxutils, or check the - command line arguments." - exit 1 - ;; - - *) - echo 1>&2 "\ -WARNING: \`$1' is needed, and is $msg. - You might have modified some files without having the - proper tools for further handling them. Check the \`README' file, - it often tells you about the needed prerequisites for installing - this package. You may also peek at any GNU archive site, in case - some other package would contain this missing \`$1' program." - exit 1 - ;; -esac - -exit 0 - -# Local variables: -# eval: (add-hook 'write-file-hooks 'time-stamp) -# time-stamp-start: "scriptversion=" -# time-stamp-format: "%:y-%02m-%02d.%02H" -# time-stamp-end: "$" -# End: diff --git a/corpora/en/wordnet/src/Makefile.am b/corpora/en/wordnet/src/Makefile.am deleted file mode 100644 index 18a70796e..000000000 --- a/corpora/en/wordnet/src/Makefile.am +++ /dev/null @@ -1,12 +0,0 @@ -EXTRA_DIST = wnb -bin_PROGRAMS = wn wishwn -bin_SCRIPTS = wnb -wishwn_SOURCES = tkAppInit.c stubs.c -wishwn_CPPFLAGS = $(INCLUDES) -wishwn_LDADD = $(LDADD) $(TK_LIB_SPEC) $(TCL_LIB_SPEC) $(TK_LIBS) -wn_SOURCES = wn.c -wn_CPPFLAGS = $(INCLUDES) -wn_LDADD = $(LDADD) -LDADD = -L$(top_srcdir)/lib -lWN -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include $(TCL_INCLUDE_SPEC) $(TK_XINCLUDES) -I$(TK_PREFIX)/include - diff --git a/corpora/en/wordnet/src/Makefile.in b/corpora/en/wordnet/src/Makefile.in deleted file mode 100644 index f6118a07d..000000000 --- a/corpora/en/wordnet/src/Makefile.in +++ /dev/null @@ -1,485 +0,0 @@ -# Makefile.in generated by automake 1.9 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -@SET_MAKE@ - - -SOURCES = $(wishwn_SOURCES) $(wn_SOURCES) - -srcdir = @srcdir@ -top_srcdir = @top_srcdir@ -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -top_builddir = .. -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -INSTALL = @INSTALL@ -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -bin_PROGRAMS = wn$(EXEEXT) wishwn$(EXEEXT) -subdir = src -DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ - $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -mkinstalldirs = $(install_sh) -d -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" -binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) -PROGRAMS = $(bin_PROGRAMS) -am_wishwn_OBJECTS = wishwn-tkAppInit.$(OBJEXT) wishwn-stubs.$(OBJEXT) -wishwn_OBJECTS = $(am_wishwn_OBJECTS) -am__DEPENDENCIES_1 = -wishwn_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \ - $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) -am_wn_OBJECTS = wn-wn.$(OBJEXT) -wn_OBJECTS = $(am_wn_OBJECTS) -wn_DEPENDENCIES = $(am__DEPENDENCIES_1) -binSCRIPT_INSTALL = $(INSTALL_SCRIPT) -SCRIPTS = $(bin_SCRIPTS) -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -depcomp = $(SHELL) $(top_srcdir)/depcomp -am__depfiles_maybe = depfiles -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ -SOURCES = $(wishwn_SOURCES) $(wn_SOURCES) -DIST_SOURCES = $(wishwn_SOURCES) $(wn_SOURCES) -ETAGS = etags -CTAGS = ctags -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -ACLOCAL = @ACLOCAL@ -AMDEP_FALSE = @AMDEP_FALSE@ -AMDEP_TRUE = @AMDEP_TRUE@ -AMTAR = @AMTAR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = @MAKEINFO@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -RANLIB = @RANLIB@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -TCL_INCLUDE_SPEC = @TCL_INCLUDE_SPEC@ -TCL_LIB_SPEC = @TCL_LIB_SPEC@ -TK_LIBS = @TK_LIBS@ -TK_LIB_SPEC = @TK_LIB_SPEC@ -TK_PREFIX = @TK_PREFIX@ -TK_XINCLUDES = @TK_XINCLUDES@ -VERSION = @VERSION@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_RANLIB = @ac_ct_RANLIB@ -ac_ct_STRIP = @ac_ct_STRIP@ -ac_prefix = @ac_prefix@ -am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ -am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build_alias = @build_alias@ -datadir = @datadir@ -exec_prefix = @exec_prefix@ -host_alias = @host_alias@ -includedir = @includedir@ -infodir = @infodir@ -install_sh = @install_sh@ -libdir = @libdir@ -libexecdir = @libexecdir@ -localstatedir = @localstatedir@ -mandir = @mandir@ -mkdir_p = @mkdir_p@ -oldincludedir = @oldincludedir@ -prefix = @prefix@ -program_transform_name = @program_transform_name@ -sbindir = @sbindir@ -sharedstatedir = @sharedstatedir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -EXTRA_DIST = wnb -bin_SCRIPTS = wnb -wishwn_SOURCES = tkAppInit.c stubs.c -wishwn_CPPFLAGS = $(INCLUDES) -wishwn_LDADD = $(LDADD) $(TK_LIB_SPEC) $(TCL_LIB_SPEC) $(TK_LIBS) -wn_SOURCES = wn.c -wn_CPPFLAGS = $(INCLUDES) -wn_LDADD = $(LDADD) -LDADD = -L$(top_srcdir)/lib -lWN -INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/include $(TCL_INCLUDE_SPEC) $(TK_XINCLUDES) -I$(TK_PREFIX)/include -all: all-am - -.SUFFIXES: -.SUFFIXES: .c .o .obj -$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ - *) \ - echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ - cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ - esac; - -$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh - -$(top_srcdir)/configure: $(am__configure_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -$(ACLOCAL_M4): $(am__aclocal_m4_deps) - cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh -install-binPROGRAMS: $(bin_PROGRAMS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - if test -f $$p \ - ; then \ - f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ - else :; fi; \ - done - -uninstall-binPROGRAMS: - @$(NORMAL_UNINSTALL) - @list='$(bin_PROGRAMS)'; for p in $$list; do \ - f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ - rm -f "$(DESTDIR)$(bindir)/$$f"; \ - done - -clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) -wishwn$(EXEEXT): $(wishwn_OBJECTS) $(wishwn_DEPENDENCIES) - @rm -f wishwn$(EXEEXT) - $(LINK) $(wishwn_LDFLAGS) $(wishwn_OBJECTS) $(wishwn_LDADD) $(LIBS) -wn$(EXEEXT): $(wn_OBJECTS) $(wn_DEPENDENCIES) - @rm -f wn$(EXEEXT) - $(LINK) $(wn_LDFLAGS) $(wn_OBJECTS) $(wn_LDADD) $(LIBS) -install-binSCRIPTS: $(bin_SCRIPTS) - @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" - @list='$(bin_SCRIPTS)'; for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ - if test -f $$d$$p; then \ - f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " $(binSCRIPT_INSTALL) '$$d$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(binSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(bindir)/$$f"; \ - else :; fi; \ - done - -uninstall-binSCRIPTS: - @$(NORMAL_UNINSTALL) - @list='$(bin_SCRIPTS)'; for p in $$list; do \ - f=`echo "$$p" | sed 's|^.*/||;$(transform)'`; \ - echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ - rm -f "$(DESTDIR)$(bindir)/$$f"; \ - done - -mostlyclean-compile: - -rm -f *.$(OBJEXT) - -distclean-compile: - -rm -f *.tab.c - -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wishwn-stubs.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wishwn-tkAppInit.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wn-wn.Po@am__quote@ - -.c.o: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c $< - -.c.obj: -@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` - -wishwn-tkAppInit.o: tkAppInit.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wishwn-tkAppInit.o -MD -MP -MF "$(DEPDIR)/wishwn-tkAppInit.Tpo" -c -o wishwn-tkAppInit.o `test -f 'tkAppInit.c' || echo '$(srcdir)/'`tkAppInit.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wishwn-tkAppInit.Tpo" "$(DEPDIR)/wishwn-tkAppInit.Po"; else rm -f "$(DEPDIR)/wishwn-tkAppInit.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tkAppInit.c' object='wishwn-tkAppInit.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wishwn-tkAppInit.o `test -f 'tkAppInit.c' || echo '$(srcdir)/'`tkAppInit.c - -wishwn-tkAppInit.obj: tkAppInit.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wishwn-tkAppInit.obj -MD -MP -MF "$(DEPDIR)/wishwn-tkAppInit.Tpo" -c -o wishwn-tkAppInit.obj `if test -f 'tkAppInit.c'; then $(CYGPATH_W) 'tkAppInit.c'; else $(CYGPATH_W) '$(srcdir)/tkAppInit.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wishwn-tkAppInit.Tpo" "$(DEPDIR)/wishwn-tkAppInit.Po"; else rm -f "$(DEPDIR)/wishwn-tkAppInit.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tkAppInit.c' object='wishwn-tkAppInit.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wishwn-tkAppInit.obj `if test -f 'tkAppInit.c'; then $(CYGPATH_W) 'tkAppInit.c'; else $(CYGPATH_W) '$(srcdir)/tkAppInit.c'; fi` - -wishwn-stubs.o: stubs.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wishwn-stubs.o -MD -MP -MF "$(DEPDIR)/wishwn-stubs.Tpo" -c -o wishwn-stubs.o `test -f 'stubs.c' || echo '$(srcdir)/'`stubs.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wishwn-stubs.Tpo" "$(DEPDIR)/wishwn-stubs.Po"; else rm -f "$(DEPDIR)/wishwn-stubs.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='stubs.c' object='wishwn-stubs.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wishwn-stubs.o `test -f 'stubs.c' || echo '$(srcdir)/'`stubs.c - -wishwn-stubs.obj: stubs.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wishwn-stubs.obj -MD -MP -MF "$(DEPDIR)/wishwn-stubs.Tpo" -c -o wishwn-stubs.obj `if test -f 'stubs.c'; then $(CYGPATH_W) 'stubs.c'; else $(CYGPATH_W) '$(srcdir)/stubs.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wishwn-stubs.Tpo" "$(DEPDIR)/wishwn-stubs.Po"; else rm -f "$(DEPDIR)/wishwn-stubs.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='stubs.c' object='wishwn-stubs.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wishwn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wishwn-stubs.obj `if test -f 'stubs.c'; then $(CYGPATH_W) 'stubs.c'; else $(CYGPATH_W) '$(srcdir)/stubs.c'; fi` - -wn-wn.o: wn.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wn-wn.o -MD -MP -MF "$(DEPDIR)/wn-wn.Tpo" -c -o wn-wn.o `test -f 'wn.c' || echo '$(srcdir)/'`wn.c; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wn-wn.Tpo" "$(DEPDIR)/wn-wn.Po"; else rm -f "$(DEPDIR)/wn-wn.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wn.c' object='wn-wn.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wn-wn.o `test -f 'wn.c' || echo '$(srcdir)/'`wn.c - -wn-wn.obj: wn.c -@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT wn-wn.obj -MD -MP -MF "$(DEPDIR)/wn-wn.Tpo" -c -o wn-wn.obj `if test -f 'wn.c'; then $(CYGPATH_W) 'wn.c'; else $(CYGPATH_W) '$(srcdir)/wn.c'; fi`; \ -@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/wn-wn.Tpo" "$(DEPDIR)/wn-wn.Po"; else rm -f "$(DEPDIR)/wn-wn.Tpo"; exit 1; fi -@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='wn.c' object='wn-wn.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(wn_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o wn-wn.obj `if test -f 'wn.c'; then $(CYGPATH_W) 'wn.c'; else $(CYGPATH_W) '$(srcdir)/wn.c'; fi` -uninstall-info-am: - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ - unique=`for i in $$list; do \ - if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ - done | \ - $(AWK) ' { files[$$0] = 1; } \ - END { for (i in files) print i; }'`; \ - test -z "$(CTAGS_ARGS)$$tags$$unique" \ - || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ - $$tags $$unique - -GTAGS: - here=`$(am__cd) $(top_builddir) && pwd` \ - && cd $(top_srcdir) \ - && gtags -i $(GTAGS_ARGS) $$here - -distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags - -distdir: $(DISTFILES) - @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ - topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ - list='$(DISTFILES)'; for file in $$list; do \ - case $$file in \ - $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ - $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ - esac; \ - if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ - if test -d $$d/$$file; then \ - if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ - cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ - fi; \ - cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ - else \ - test -f $(distdir)/$$file \ - || cp -p $$d/$$file $(distdir)/$$file \ - || exit 1; \ - fi; \ - done -check-am: all-am -check: check-am -all-am: Makefile $(PROGRAMS) $(SCRIPTS) -installdirs: - for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)"; do \ - test -z "$$dir" || $(mkdir_p) "$$dir"; \ - done -install: install-am -install-exec: install-exec-am -install-data: install-data-am -uninstall: uninstall-am - -install-am: all-am - @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am - -installcheck: installcheck-am -install-strip: - $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ - install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ - `test -z '$(STRIP)' || \ - echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install -mostlyclean-generic: - -clean-generic: - -distclean-generic: - -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) - -maintainer-clean-generic: - @echo "This command is intended for maintainers to use" - @echo "it deletes files that may require special tools to rebuild." -clean: clean-am - -clean-am: clean-binPROGRAMS clean-generic mostlyclean-am - -distclean: distclean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -distclean-am: clean-am distclean-compile distclean-generic \ - distclean-tags - -dvi: dvi-am - -dvi-am: - -html: html-am - -info: info-am - -info-am: - -install-data-am: - -install-exec-am: install-binPROGRAMS install-binSCRIPTS - -install-info: install-info-am - -install-man: - -installcheck-am: - -maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) - -rm -f Makefile -maintainer-clean-am: distclean-am maintainer-clean-generic - -mostlyclean: mostlyclean-am - -mostlyclean-am: mostlyclean-compile mostlyclean-generic - -pdf: pdf-am - -pdf-am: - -ps: ps-am - -ps-am: - -uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ - uninstall-info-am - -.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ - clean-generic ctags distclean distclean-compile \ - distclean-generic distclean-tags distdir dvi dvi-am html \ - html-am info info-am install install-am install-binPROGRAMS \ - install-binSCRIPTS install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip installcheck installcheck-am installdirs \ - maintainer-clean maintainer-clean-generic mostlyclean \ - mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \ - tags uninstall uninstall-am uninstall-binPROGRAMS \ - uninstall-binSCRIPTS uninstall-info-am - -# Tell versions [3.59,3.63) of GNU make to not export all variables. -# Otherwise a system limit (for SysV at least) may be exceeded. -.NOEXPORT: diff --git a/corpora/en/wordnet/src/stubs.c b/corpora/en/wordnet/src/stubs.c deleted file mode 100644 index 794485cc7..000000000 --- a/corpora/en/wordnet/src/stubs.c +++ /dev/null @@ -1,270 +0,0 @@ -/* This file acts as a gateway between Tcl and the Wordnet C library. It -** contains stubs for all the commands added to the default Tcl and Tk set -** for this Wordnet application, as well as the routine that initializes them. -*/ - -#ifdef _WINDOWS -#include -#endif - -#include -#include -#include -#include -#include -#include - -static char *Id = "$Id: stubs.c,v 1.7 2005/04/29 19:01:57 wn Exp $"; - -static char resultbuf[SEARCHBUF]; - -#ifndef HAVE_LANGINFO_CODESET - -char *nl_langinfo(int item) { - - static char val[4] = "Sun"; - return(val); -} -#endif - -/* This command (accessed by the name "findvalidsearches" in Tcl) returns -** a bitfield that describes all the available searches for a given word -** as the given part of speech. The calls to morphstr are used to extract -** the search word's base form. -*/ - -int wn_findvalidsearches (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - unsigned int bitfield; - static char bitfieldstr[32]; - char *morph; - int pos; - if (argc != 3) { - interp -> result = - "usage: findvalidsearches searchword partofspeechnum"; - return TCL_ERROR; - } - pos = atoi (argv[2]); - bitfield = is_defined (argv[1], pos); - if ((morph = morphstr (argv[1], pos)) != NULL) { - do { - bitfield |= is_defined (morph, pos); - } while ((morph = morphstr (NULL, pos)) != NULL); - } - sprintf (bitfieldstr, "%u", bitfield); - interp -> result = bitfieldstr; - return TCL_OK; -} - -/* This command returns a bitfield of unsigned integer length with all bits -** zero except for the specified bit, which is one. This can be binary -** and-ed with another bitfield to check if the other bitfield has the -** specified bit set to one. This is particularly useful for interpreting -** the results of findvalidsearches. Invoked from Tcl as "bit". -*/ - -int wn_bit (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - unsigned int bitfield; - static char bitfieldstr[32]; - int whichbit; - if (argc != 2) { - interp -> result = "usage: bit bitnum"; - return TCL_ERROR; - } - whichbit = atoi (argv[1]); - bitfield = bit (whichbit); - sprintf (bitfieldstr, "%u", bitfield); - interp -> result = bitfieldstr; - return TCL_OK; -} - -/* This command performs the requested search and returns the results in -** a string buffer. This is the primary purpose of the whole program. -** It is invoked from Tcl simply as "search". -*/ - -int wn_search (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - int pos, searchtype, sense; - char *morph; - if (argc != 5) { - interp -> result = - "usage: search searchword partofspeechnum searchtypenum sensenum"; - return TCL_ERROR; - } - pos = atoi (argv[2]); - searchtype = atoi (argv[3]); - sense = atoi (argv[4]); - strcpy (resultbuf, findtheinfo (argv[1], pos, searchtype, sense)); - if ((morph = morphstr (argv[1], pos)) != NULL) { - do { - strcat (resultbuf, findtheinfo (morph, pos, searchtype, sense)); - } while ((morph = morphstr (NULL, pos)) != NULL); - } - interp -> result = resultbuf; - return TCL_OK; -} - -/* This command, accessed in Tcl as "glosses" sets the flag that tells the -** search engine whether or not to include textual glosses in the search -** results. -*/ - -int wn_glosses (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 2) { - interp -> result = "usage: glosses [1 | 0]"; - return TCL_ERROR; - } - dflag = atoi (argv[1]); - return TCL_OK; -} - -/* This command, accessed in Tcl as "fileinfo" sets the flag that tells the -** search engine whether or not to include lex filenames in the search -** results. -*/ - -int wn_fileinfo (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 2) { - interp -> result = "usage: fileinfo [1 | 0]"; - return TCL_ERROR; - } - fileinfoflag = atoi (argv[1]); - return TCL_OK; -} - -/* This command, accessed in Tcl as "byteoffset" sets the flag that tells the -** search engine whether or not to include byte offsets into the lex files -** in the search results. -*/ - -int wn_byteoffset (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 2) { - interp -> result = "usage: byteoffset [1 | 0]"; - return TCL_ERROR; - } - offsetflag = atoi (argv[1]); - return TCL_OK; -} - -/* This command, accessed in Tcl as "senseflag" sets the flag that tells the -** search engine whether or not to report the WordNet sense for each word -** returned. -*/ - -int wn_senseflag (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 2) { - interp -> result = "usage: senseflag [1 | 0]"; - return TCL_ERROR; - } - wnsnsflag = atoi (argv[1]); - return TCL_OK; -} - -/* This command, accessed in Tcl as "contextualhelp" returns a string of -** text which describes, to the less-experienced user, exactly what each -** type of search does. -*/ - -int wn_contextualhelp (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - int pos, searchtype; - if (argc != 3) { - interp -> result = "usage: contextualhelp partofspeechnum searchtypenum"; - return TCL_ERROR; - } - pos = atoi (argv[1]); - searchtype = atoi (argv[2]); - interp -> result = helptext[pos][searchtype]; - return TCL_OK; -} - -/* This command, accessed in Tcl as "reopendb" reopens the WordNet database. -*/ - -int wn_reopendb (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 1) { - interp -> result = "usage: reopendb"; - return TCL_ERROR; - } - re_wninit (); - return TCL_OK; -} - -/* This command, accessed in Tcl as "abortsearch" causes the library to -** stop whatever search it is currently in the middle of performing. -*/ - -int wn_abortsearch (ClientData clientData, Tcl_Interp *interp, - int argc, char *argv[]) { - if (argc != 1) { - interp -> result = "usage: abortsearch"; - return TCL_ERROR; - } - abortsearch = 1; - return TCL_OK; -} - -/* This is a callback function invoked by the WordNet search engine every so -** often, to allow the interface to respond to events (especially the pressing -** of a stop button) during the search. -*/ - -void tkwn_doevents (void) { - while (Tcl_DoOneEvent (TCL_WINDOW_EVENTS | TCL_DONT_WAIT) != 0) {} -} - -/* This is a callback function invoked by the WordNet search engine whenever -** it needs to display an error message. Its implementation is platform -** specific, since it uses the native error reporting mechanism. -*/ - -int tkwn_displayerror (char *msg) { -#ifdef _WINDOWS - MessageBeep (MB_ICONEXCLAMATION); - MessageBox (NULL, msg, "WordNet Library Error", - MB_ICONEXCLAMATION | MB_OK | MB_TASKMODAL | MB_SETFOREGROUND); -#else - fprintf (stderr, "%s", msg); -#endif - return -1; -} - -/* This is the initialization routine, which is called from tkAppInit.c -** when the program starts. It registers each new command with the Tcl -** interpreter. -*/ - -int Wordnet_Init (Tcl_Interp *interp) { - interface_doevents_func = tkwn_doevents; - display_message = tkwn_displayerror; - wninit (); - Tcl_CreateCommand (interp, "findvalidsearches", (void *) - wn_findvalidsearches, (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "bit", (void *) wn_bit, (ClientData) NULL, - (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "search", (void *) wn_search, (ClientData) - NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "glosses", (void *) wn_glosses, (ClientData) - NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "fileinfo", (void *) wn_fileinfo, (ClientData) - NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "byteoffset", (void *) wn_byteoffset, - (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "senseflag", (void *) wn_senseflag, - (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "contextualhelp", (void *) wn_contextualhelp, - (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "reopendb", (void *) wn_reopendb, (ClientData) - NULL, (Tcl_CmdDeleteProc *) NULL); - Tcl_CreateCommand (interp, "abortsearch", (void *) wn_abortsearch, - (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL); - return TCL_OK; -} - diff --git a/corpora/en/wordnet/src/tkAppInit.c b/corpora/en/wordnet/src/tkAppInit.c deleted file mode 100644 index fbfbe635a..000000000 --- a/corpora/en/wordnet/src/tkAppInit.c +++ /dev/null @@ -1,164 +0,0 @@ -/* - * tkAppInit.c -- - * - * Provides a default version of the Tcl_AppInit procedure for - * use in wish and similar Tk-based applications. - * - * Copyright (c) 1993 The Regents of the University of California. - * Copyright (c) 1994-1997 Sun Microsystems, Inc. - * - * See the file "license.terms" for information on usage and redistribution - * of this file, and for a DISCLAIMER OF ALL WARRANTIES. - * - * RCS: @(#) $Id: tkAppInit.c,v 1.5 2005/02/01 17:35:34 wn Rel $ - */ - -#include -#include -#include - -/* - * The following variable is a special hack that is needed in order for - * Sun shared libraries to be used for Tcl. - */ - -#ifdef __sun__ -extern int matherr(); -int *tclDummyMathPtr = (int *) matherr; -#endif - -#ifdef TK_TEST -extern int Tcltest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -extern int Tktest_Init _ANSI_ARGS_((Tcl_Interp *interp)); -#endif /* TK_TEST */ - -/* - *---------------------------------------------------------------------- - * - * main -- - * - * This is the main program for the application. - * - * Results: - * None: Tk_Main never returns here, so this procedure never - * returns either. - * - * Side effects: - * Whatever the application does. - * - *---------------------------------------------------------------------- - */ - -int -main(argc, argv) - int argc; /* Number of command-line arguments. */ - char **argv; /* Values of command-line arguments. */ -{ - /* - * The following #if block allows you to change the AppInit - * function by using a #define of TCL_LOCAL_APPINIT instead - * of rewriting this entire file. The #if checks for that - * #define and uses Tcl_AppInit if it doesn't exist. - */ - -#ifndef TK_LOCAL_APPINIT -#define TK_LOCAL_APPINIT Tcl_AppInit -#endif - extern int TK_LOCAL_APPINIT _ANSI_ARGS_((Tcl_Interp *interp)); - - /* - * The following #if block allows you to change how Tcl finds the startup - * script, prime the library or encoding paths, fiddle with the argv, - * etc., without needing to rewrite Tk_Main() - */ - -#ifdef TK_LOCAL_MAIN_HOOK - extern int TK_LOCAL_MAIN_HOOK _ANSI_ARGS_((int *argc, char ***argv)); - TK_LOCAL_MAIN_HOOK(&argc, &argv); -#endif - -#ifdef _WINDOWS - argv[argc++] = "wnb.tcl"; -#endif - - Tk_Main(argc, argv, TK_LOCAL_APPINIT); - return 0; /* Needed only to prevent compiler warning. */ -} - -/* - *---------------------------------------------------------------------- - * - * Tcl_AppInit -- - * - * This procedure performs application-specific initialization. - * Most applications, especially those that incorporate additional - * packages, will have their own version of this procedure. - * - * Results: - * Returns a standard Tcl completion code, and leaves an error - * message in the interp's result if an error occurs. - * - * Side effects: - * Depends on the startup script. - * - *---------------------------------------------------------------------- - */ - -extern int Wordnet_Init(Tcl_Interp *interp); - -int -Tcl_AppInit(interp) - Tcl_Interp *interp; /* Interpreter for application. */ -{ - if (Tcl_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - if (Tk_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "Tk", Tk_Init, Tk_SafeInit); -#ifdef TK_TEST - if (Tcltest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "Tcltest", Tcltest_Init, - (Tcl_PackageInitProc *) NULL); - if (Tktest_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - Tcl_StaticPackage(interp, "Tktest", Tktest_Init, - (Tcl_PackageInitProc *) NULL); -#endif /* TK_TEST */ - - - /* - * Call the init procedures for included packages. Each call should - * look like this: - * - * if (Mod_Init(interp) == TCL_ERROR) { - * return TCL_ERROR; - * } - * - * where "Mod" is the name of the module. - */ - - if (Wordnet_Init(interp) == TCL_ERROR) { - return TCL_ERROR; - } - - - /* - * Call Tcl_CreateCommand for application-specific commands, if - * they weren't already created by the init procedures called above. - */ - - /* - * Specify a user-specific startup file to invoke if the application - * is run interactively. Typically the startup file is "~/.apprc" - * where "app" is the name of the application. If this line is deleted - * then no user-specific startup file will be run under any conditions. - */ - - Tcl_SetVar(interp, "tcl_rcFileName", "~/.wishrc", TCL_GLOBAL_ONLY); - return TCL_OK; -} diff --git a/corpora/en/wordnet/src/wn.c b/corpora/en/wordnet/src/wn.c deleted file mode 100644 index ddb27aa1e..000000000 --- a/corpora/en/wordnet/src/wn.c +++ /dev/null @@ -1,423 +0,0 @@ -/* - - wn.c - Command line interface to WordNet - -*/ - -#include -#include -#include -#include "wn.h" - -static char *Id = "$Id: wn.c,v 1.13 2005/01/31 19:19:09 wn Rel $"; - -static struct { - char *option; /* user's search request */ - int search; /* search to pass findtheinfo() */ - int pos; /* part-of-speech to pass findtheinfo() */ - int helpmsgidx; /* index into help message table */ - char *label; /* text for search header message */ -} *optptr, optlist[] = { - { "-synsa", SIMPTR, ADJ, 0, "Similarity" }, - { "-antsa", ANTPTR, ADJ, 1, "Antonyms" }, - { "-perta", PERTPTR, ADJ, 0, "Pertainyms" }, - { "-attra", ATTRIBUTE, ADJ, 2, "Attributes" }, - { "-domna", CLASSIFICATION, ADJ, 3, "Domain" }, - { "-domta", CLASS, ADJ, 4, "Domain Terms" }, - { "-famla", FREQ, ADJ, 5, "Familiarity" }, - { "-grepa", WNGREP, ADJ, 6, "Grep" }, - - { "-synsn", HYPERPTR, NOUN, 0, "Synonyms/Hypernyms (Ordered by Estimated Frequency)" }, - { "-antsn", ANTPTR, NOUN, 2, "Antonyms" }, - { "-coorn", COORDS, NOUN, 3, "Coordinate Terms (sisters)" }, - { "-hypen", -HYPERPTR, NOUN, 4, "Synonyms/Hypernyms (Ordered by Estimated Frequency)" }, - { "-hypon", HYPOPTR, NOUN, 5, "Hyponyms" }, - { "-treen", -HYPOPTR, NOUN, 6, "Hyponyms" }, - { "-holon", HOLONYM, NOUN, 7, "Holonyms" }, - { "-sprtn", ISPARTPTR, NOUN, 7, "Part Holonyms" }, - { "-smemn", ISMEMBERPTR, NOUN, 7, "Member Holonyms" }, - { "-ssubn", ISSTUFFPTR, NOUN, 7, "Substance Holonyms" }, - { "-hholn", -HHOLONYM, NOUN, 8, "Holonyms" }, - { "-meron", MERONYM, NOUN, 9, "Meronyms" }, - { "-subsn", HASSTUFFPTR, NOUN, 9, "Substance Meronyms" }, - { "-partn", HASPARTPTR, NOUN, 9, "Part Meronyms" }, - { "-membn", HASMEMBERPTR, NOUN, 9, "Member Meronyms" }, - { "-hmern", -HMERONYM, NOUN, 10, "Meronyms" }, - { "-nomnn", DERIVATION, NOUN, 11, "Derived Forms" }, - { "-derin", DERIVATION, NOUN, 11, "Derived Forms" }, - { "-domnn", CLASSIFICATION, NOUN, 13, "Domain" }, - { "-domtn", CLASS, NOUN, 14, "Domain Terms" }, - { "-attrn", ATTRIBUTE, NOUN, 12, "Attributes" }, - { "-famln", FREQ, NOUN, 15, "Familiarity" }, - { "-grepn", WNGREP, NOUN, 16, "Grep" }, - - { "-synsv", HYPERPTR, VERB, 0, "Synonyms/Hypernyms (Ordered by Estimated Frequency)" }, - { "-simsv", RELATIVES, VERB, 1, "Synonyms (Grouped by Similarity of Meaning)" }, - { "-antsv", ANTPTR, VERB, 2, "Antonyms" }, - { "-coorv", COORDS, VERB, 3, "Coordinate Terms (sisters)" }, - { "-hypev", -HYPERPTR, VERB, 4, "Synonyms/Hypernyms (Ordered by Estimated Frequency)" }, - { "-hypov", HYPOPTR, VERB, 5, "Troponyms (hyponyms)" }, - { "-treev", -HYPOPTR, VERB, 5, "Troponyms (hyponyms)" }, - { "-tropv", -HYPOPTR, VERB, 5, "Troponyms (hyponyms)" }, - { "-entav", ENTAILPTR, VERB, 6, "Entailment" }, - { "-causv", CAUSETO, VERB, 7, "\'Cause To\'" }, - { "-nomnv", DERIVATION, VERB, 8, "Derived Forms" }, - { "-deriv", DERIVATION, VERB, 8, "Derived Forms" }, - { "-domnv", CLASSIFICATION, VERB, 10, "Domain" }, - { "-domtv", CLASS, VERB, 11, "Domain Terms" }, - { "-framv", FRAMES, VERB, 9, "Sample Sentences" }, - { "-famlv", FREQ, VERB, 12, "Familiarity" }, - { "-grepv", WNGREP, VERB, 13, "Grep" }, - - { "-synsr", SYNS, ADV, 0, "Synonyms" }, - { "-antsr", ANTPTR, ADV, 1, "Antonyms" }, - { "-pertr", PERTPTR, ADV, 0, "Pertainyms" }, - { "-domnr", CLASSIFICATION, ADV, 2, "Domain" }, - { "-domtr", CLASS, ADV, 3, "Domain Terms" }, - { "-famlr", FREQ, ADV, 4, "Familiarity" }, - { "-grepr", WNGREP, ADV, 5, "Grep" }, - - { "-over", OVERVIEW, ALL_POS, -1, "Overview" }, - { NULL, 0, 0, 0, NULL } -}; - -struct { - char *template; /* template for generic search message */ - char *option; /* text for help message */ - char *helpstr; -} searchstr[] = { /* index by search type type */ - { NULL, NULL, NULL }, - { "-ants%c", "-ants{n|v|a|r}", "\t\tAntonyms", }, - { "-hype%c", "-hype{n|v}", "\t\tHypernyms", }, - { "-hypo%c, -tree%c", "-hypo{n|v}, -tree{n|v}", - "\tHyponyms & Hyponym Tree", }, - { "-enta%c", "-entav\t", "\t\tVerb Entailment", }, - { "-syns%c", "-syns{n|v|a|r}", "\t\tSynonyms (ordered by estimated frequency)", }, - { "-smem%c", "-smemn\t", "\t\tMember of Holonyms", }, - { "-ssub%c", "-ssubn\t", "\t\tSubstance of Holonyms", }, - { "-sprt%c", "-sprtn\t", "\t\tPart of Holonyms", }, - { "-memb%c", "-membn\t", "\t\tHas Member Meronyms", }, - { "-subs%c", "-subsn\t", "\t\tHas Substance Meronyms", }, - { "-part%c", "-partn\t", "\t\tHas Part Meronyms", }, - { "-mero%c", "-meron\t", "\t\tAll Meronyms", }, - { "-holo%c", "-holon\t", "\t\tAll Holonyms", }, - { "-caus%c", "-causv\t", "\t\tCause to", }, - { NULL, NULL, NULL }, /* PPLPTR - no specific search */ - { NULL, NULL, NULL }, /* SEEALSOPTR - no specific search */ - { "-pert%c", "-pert{a|r}", "\t\tPertainyms", }, - { "-attr%c", "-attr{n|a}", "\t\tAttributes", }, - { NULL, NULL, NULL }, /* verb groups - no specific pointer */ - { "-deri%c", "-deri{n|v}", "\t\tDerived Forms",}, - { "-domn%c", "-domn{n|v|a|r}", "\t\tDomain" }, - { "-domt%c", "-domt{n|v|a|r}", "\t\tDomain Terms" }, - { NULL, NULL, NULL }, /* SYNS - taken care of with SIMPTR */ - { "-faml%c", "-faml{n|v|a|r}", "\t\tFamiliarity & Polysemy Count", }, - { "-fram%c", "-framv\t", "\t\tVerb Frames", }, - { "-coor%c", "-coor{n|v}", "\t\tCoordinate Terms (sisters)", }, - { "-sims%c", "-simsv\t", "\t\tSynonyms (grouped by similarity of meaning)", }, - { "-hmer%c", "-hmern\t", "\t\tHierarchical Meronyms", }, - { "-hhol%c", "-hholn\t", "\t\tHierarchical Holonyms" }, - { "-grep%c", "-grep{n|v|a|r}", "\t\tList of Compound Words" }, - { "-over", "-over\t", "\t\tOverview of Senses" }, -}; - -static int getoptidx(char *), cmdopt(char *); -static int searchwn(int, char *[]); -static int do_search(char *, int, int, int, char *); -static int do_is_defined(char *); -static void printusage(), printlicense(), - printsearches(char *, int, unsigned long); -static int error_message(char *); - -main(int argc,char *argv[]) -{ - display_message = error_message; - - if (argc < 2) { - printusage(); - exit(-1); - } else if (argc == 2 && !strcmp("-l", argv[1])) { - printlicense(); - exit(-1); - } - - if (wninit()) { /* open database */ - display_message("wn: Fatal error - cannot open WordNet database\n"); - exit (-1); - } - - exit(searchwn(argc, argv)); -} - -static int searchwn(int ac, char *av[]) -{ - int i, j = 1, pos; - int whichsense = ALLSENSES, help = 0; - int errcount = 0, outsenses = 0; - char tmpbuf[256]; /* buffer for constuction error messages */ - - if (ac == 2) /* print available searches for word */ - exit(do_is_defined(av[1])); - - /* Parse command line options once and set flags */ - - dflag = fileinfoflag = offsetflag = wnsnsflag = 0; - - for(i = 1; i < ac; i++) { - if(!strcmp("-g",av[i])) - dflag++; - else if (!strcmp("-h",av[i])) - help++; - else if (!strcmp("-l", av[i])) - printlicense(); - else if (!strncmp("-n", av[i], 2) && strncmp("-nomn", av[i] ,5)) - whichsense = atoi(av[i] + 2); - else if (!strcmp("-a", av[i])) - fileinfoflag = 1; - else if (!strcmp("-o", av[i])) - offsetflag = 1; - else if (!strcmp("-s", av[i])) - wnsnsflag = 1; - } - - /* Replace spaces with underscores before looking in database */ - - strtolower(strsubst(av[1], ' ', '_')); - - /* Look at each option in turn. If it's not a command line option - (which was processed earlier), perform the search requested. */ - - while(av[++j]) { - if (!cmdopt(av[j])) { /* not a command line option */ - if ((i = getoptidx(av[j])) != -1) { - optptr = &optlist[i]; - - /* print help text before search output */ - if (help && optptr->helpmsgidx >= 0) - printf("%s\n", helptext[optptr->pos][optptr->helpmsgidx]); - - if (optptr->pos == ALL_POS) - for (pos = 1; pos <= NUMPARTS; pos++) - outsenses += do_search(av[1], pos, optptr->search, - whichsense, optptr->label); - else - outsenses += do_search(av[1], optptr->pos, optptr->search, - whichsense, optptr->label); - } else { - sprintf(tmpbuf, "wn: invalid search option: %s\n", av[j]); - display_message(tmpbuf); - errcount++; - } - } - } - return(errcount ? -errcount : outsenses); -} - -static int do_search(char *searchword, int pos, int search, int whichsense, - char *label) -{ - int totsenses = 0; - char *morphword, *outbuf; - - outbuf = findtheinfo(searchword, pos, search, whichsense); - totsenses += wnresults.printcnt; - if (strlen(outbuf) > 0) - printf("\n%s of %s %s\n%s", - label, partnames[pos], searchword, outbuf); - - if (morphword = morphstr(searchword, pos)) - do { - outbuf = findtheinfo(morphword, pos, search, whichsense); - totsenses += wnresults.printcnt; - if (strlen(outbuf) > 0) - printf("\n%s of %s %s\n%s", - label, partnames[pos], morphword, outbuf); - } while (morphword = morphstr(NULL, pos)); - - return(totsenses); -} - -static int do_is_defined(char *searchword) -{ - int i, found = 0; - unsigned int search; - char *morphword; - - if (searchword[0] == '-') { - display_message("wn: invalid search word\n"); - return(-1); - } - - /* Print all valid searches for word in all parts of speech */ - - strtolower(strsubst(searchword, ' ', '_')); - - for (i = 1; i <= NUMPARTS; i++) { - if ((search = is_defined(searchword, i)) != 0) { - printsearches(searchword, i, search); - found = 1; - } else - printf("\nNo information available for %s %s\n", - partnames[i], searchword); - - if ((morphword = morphstr(searchword, i)) != NULL) - do { - if ((search = is_defined(morphword, i)) != 0) { - printsearches(morphword, i, search); - found = 1; - } else - printf("\nNo information available for %s %s\n", - partnames[i], morphword); - } while ((morphword = morphstr(NULL, i)) != NULL ); - } - return(found); -} - -static void printsearches(char *word, int dbase, unsigned long search) -{ - int j; - - printf("\nInformation available for %s %s\n", partnames[dbase], word); - for (j = 1; j <= MAXSEARCH; j++) - if ((search & bit(j)) && searchstr[j].option) { - printf("\t"); - printf(searchstr[j].template, - partchars[dbase], partchars[dbase]); - printf(searchstr[j].helpstr); - printf("\n"); - } -} - -static void printusage() -{ - int i; - - fprintf(stdout, - "\nusage: wn word [-hgla] [-n#] -searchtype [-searchtype...]\n"); - fprintf(stdout, " wn [-l]\n\n"); - fprintf(stdout, "\t-h\t\tDisplay help text before search output\n"); - fprintf(stdout, "\t-g\t\tDisplay gloss\n"); - fprintf(stdout, "\t-l\t\tDisplay license and copyright notice\n"); - fprintf(stdout, "\t-a\t\tDisplay lexicographer file information\n"); - fprintf(stdout, "\t-o\t\tDisplay synset offset\n"); - fprintf(stdout, "\t-s\t\tDisplay sense numbers in synsets\n"); - fprintf(stdout, "\t-n#\t\tSearch only sense number #\n"); - fprintf(stdout,"\nsearchtype is at least one of the following:\n"); - - for (i = 1; i <= OVERVIEW; i++) - if (searchstr[i].option) - fprintf(stdout, "\t%s%s\n", - searchstr[i].option, searchstr[i].helpstr); -} - -static void printlicense() -{ - printf("WordNet Release %s\n\n%s", wnrelease, license); -} - -static int cmdopt(char *str) -{ - - if (!strcmp("-g", str) || - !strcmp("-h", str) || - !strcmp("-o", str) || - !strcmp("-l", str) || - !strcmp("-a", str) || - !strcmp("-s", str) || - (!strncmp("-n", str, 2) && strncmp("-nomn", str,5))) - - return (1); - else - return(0); -} - -static int getoptidx(char *searchtype) -{ - int i; - - for (i = 0; optlist[i].option; i++) - if (!strcmp(optlist[i].option, searchtype)) - return(i); - - return(-1); -} - -static int error_message(char *msg) -{ - fprintf(stderr, msg); - return(0); -} - -/* - Revision log: (since version 1.5) - - $Log: wn.c,v $ - Revision 1.13 2005/01/31 19:19:09 wn - removed include for license.h - - Revision 1.12 2005/01/27 17:32:37 wn - removed wnhelp.h - - Revision 1.11 2004/10/25 16:34:43 wn - removed 1.6 references - - Revision 1.10 2003/07/15 16:50:53 wn - added domain and domain term searches - - Revision 1.9 2003/07/15 15:53:05 wn - updated search numbers - - Revision 1.8 2002/03/07 17:52:49 wn - fixes for 1.7.1 - - Revision 1.7 2001/11/06 18:51:59 wn - added CLASSIFICATION placeholders - - Revision 1.6 2001/10/25 16:56:11 wn - changed text on synsnym searches to say 'estimated frequency' - - Revision 1.5 2001/07/20 18:15:10 wn - changed Nominalizations to Derived Forms - - Revision 1.4 2001/06/19 15:06:17 wn - changed search from long to int - - Revision 1.3 2001/03/30 17:16:05 wn - cleanups for 1.7 - - Revision 1.2 2000/10/30 19:06:49 wn - added code to handle nominalizations - - Revision 1.1 1998/05/06 18:22:57 wn - Initial revision - - * Revision 1.58 1997/11/21 19:01:17 wn - * added simsv search - * - * Revision 1.57 1997/09/02 17:10:32 wn - * changed includes - * - * Revision 1.56 1997/08/29 18:43:37 wn - * rearranged functions - * - * Revision 1.55 1997/08/29 16:44:24 wn - * added code to exit with total senses printed - * - * Revision 1.54 1997/08/26 20:29:38 wn - * added -s option, reorganized code - * - * Revision 1.53 1997/08/08 19:19:03 wn - * major cleanup - * - * Revision 1.52 1997/08/05 20:15:31 wn - * removed WNDEBUG, cleanups - * - * Revision 1.51 1995/06/30 19:25:02 wn - * access first element of OutSenseCount array - * - * - * Revision 1.1 91/09/17 15:51:09 wn - * Initial revision - * - */ - diff --git a/corpora/en/wordnet/src/wnb b/corpora/en/wordnet/src/wnb deleted file mode 100755 index 974bb81e1..000000000 --- a/corpora/en/wordnet/src/wnb +++ /dev/null @@ -1,1810 +0,0 @@ -#!/bin/sh -# the following line is evaluated by sh but ignored by tcl \ -wishwn "$0" "$@" & -# the following line is evaluated by sh but ignored by tcl \ -exec true -# the preceding lines make this script self-executing on unix systems - -########################################################################## -# # -# A Tcl/Tk interface for WordNet # -# by David Slomin (dgslomin@princeton.edu) - 6/97 # -# based upon the X-Windows version by Brian Gustafson - 5/91 # -# # -########################################################################## - -if {$tcl_platform(platform) == "windows"} { - package require registry 1.1 -} - -### Default Configuration - -set showcontextualhelp 0 -set showglosses 1 -set wordwrap 1 -set showfileinfo 0 -set showbyteoffset 0 -set showsenseflag 0 -set maxhistorylength 10 -set fontname times -set fontsize 2 -set fontsizelist {100 120 140 180 240} - -### Indentation constants - -# "->" # "=>" -set fontpt1offset(times,1) 20; set fontpt2offset(times,1) 20 -set fontpt1offset(times,2) 20; set fontpt2offset(times,2) 20 -set fontpt1offset(times,3) 26; set fontpt2offset(times,3) 26 -set fontpt1offset(courier,1) 23; set fontpt2offset(courier,1) 23 -set fontpt1offset(courier,2) 28; set fontpt2offset(courier,2) 28 -set fontpt1offset(courier,3) 34; set fontpt2offset(courier,3) 34 -set fontpt1offset(helvetica,1) 19; set fontpt2offset(helvetica,1) 19 -set fontpt1offset(helvetica,2) 24; set fontpt2offset(helvetica,2) 24 -set fontpt1offset(helvetica,3) 27; set fontpt2offset(helvetica,3) 27 - -# "HAS PART:" # "PART OF:" -set fonthpoffset(times,1) 66; set fontpooffset(times,1) 58 -set fonthpoffset(times,2) 77; set fontpooffset(times,2) 66 -set fonthpoffset(times,3) 100; set fontpooffset(times,3) 87 -set fonthpoffset(courier,1) 71; set fontpooffset(courier,1) 64 -set fonthpoffset(courier,2) 91; set fontpooffset(courier,2) 82 -set fonthpoffset(courier,3) 111; set fontpooffset(courier,3) 100 -set fonthpoffset(helvetica,1) 70; set fontpooffset(helvetica,1) 62 -set fonthpoffset(helvetica,2) 80; set fontpooffset(helvetica,2) 70 -set fonthpoffset(helvetica,3) 102; set fontpooffset(helvetica,3) 90 - -# "HAS MEMBER:" # "MEMBER OF:" -set fonthmoffset(times,1) 74; set fontmooffset(times,1) 81 -set fonthmoffset(times,2) 85; set fontmooffset(times,2) 92 -set fonthmoffset(times,3) 108; set fontmooffset(times,3) 118 -set fonthmoffset(courier,1) 75; set fontmooffset(courier,1) 79 -set fonthmoffset(courier,2) 96; set fontmooffset(courier,2) 102 -set fonthmoffset(courier,3) 118; set fontmooffset(courier,3) 124 -set fonthmoffset(helvetica,1) 77; set fontmooffset(helvetica,1) 84 -set fonthmoffset(helvetica,2) 87; set fontmooffset(helvetica,2) 95 -set fonthmoffset(helvetica,3) 111; set fontmooffset(helvetica,3) 121 - -# "HAS SUBSTANCE:" # "SUBSTANCE OF:" -set fonthsoffset(times,1) 105; set fontsooffset(times,1) 97 -set fonthsoffset(times,2) 124; set fontsooffset(times,2) 113 -set fonthsoffset(times,3) 157; set fontsooffset(times,3) 146 -set fonthsoffset(courier,1) 106; set fontsooffset(courier,1) 98 -set fonthsoffset(courier,2) 136; set fontsooffset(courier,2) 127 -set fonthsoffset(courier,3) 166; set fontsooffset(courier,3) 155 -set fonthsoffset(helvetica,1) 111; set fontsooffset(helvetica,1) 103 -set fonthsoffset(helvetica,2) 127; set fontsooffset(helvetica,2) 117 -set fonthsoffset(helvetica,3) 166; set fontsooffset(helvetica,3) 156 - -# " " # "[0-9]" -set fontspoffset(times,1) 3; set fontNUMoffset(times,1) 6 -set fontspoffset(times,2) 3; set fontNUMoffset(times,2) 7 -set fontspoffset(times,3) 4; set fontNUMoffset(times,3) 10 -set fontspoffset(courier,1) 7; set fontNUMoffset(courier,1) 8 -set fontspoffset(courier,2) 9; set fontNUMoffset(courier,2) 11 -set fontspoffset(courier,3) 11; set fontNUMoffset(courier,3) 13 -set fontspoffset(helvetica,1) 4; set fontNUMoffset(helvetica,1) 7 -set fontspoffset(helvetica,2) 4; set fontNUMoffset(helvetica,2) 8 -set fontspoffset(helvetica,3) 5; set fontNUMoffset(helvetica,3) 9 - -# ". " -set fontsp2offset(times,1) 6; -set fontsp2offset(times,2) 6; -set fontsp2offset(times,3) 7; -set fontsp2offset(courier,1) 12; -set fontsp2offset(courier,2) 15; -set fontsp2offset(courier,3) 19; -set fontsp2offset(helvetica,1) 7; -set fontsp2offset(helvetica,2) 7; -set fontsp2offset(helvetica,3) 11; - -set labonly 0 -set version "3.0" - -if {$tcl_platform(platform) == "unix"} { - if {[lsearch -exact [array names env] WNHOME] == -1} { - set resourcedir "/usr/local/WordNet-3.0/lib/wnres" - } else { - set resourcedir "$env(WNHOME)/lib/wnres" - } - set configfile "$env(HOME)/.wnrc" - if [ file exists $configfile ] { - source $configfile - } - set printcommand "lpr" -} -if {$tcl_platform(platform) == "windows"} { - set UserRegPath "HKEY_CURRENT_USER\\Software\\WordNet\\3.0" - if { [registry values $UserRegPath "wnrc" ] != "" } { - eval [ registry get $UserRegPath "wnrc" ] - } - if { [registry values $UserRegPath "WNHome"] != "" } { - append resourcedir [registry get $UserRegPath "WNHome"] "/lib/wnres" - } else { - set MachineRegPath "HKEY_LOCAL_MACHINE\\Software\\WordNet\\3.0" - if { [registry values $MachineRegPath "WNHome" ] != "" } { - append resourcedir [registry get $MachineRegPath "WNHome"] "/lib/wnres" - } else { - set resourcedir "C:/Program Files/WordNet/3.0/lib/wnres" - } - } -} - -### Startup - -wm title . "WordNet 3.0 Browser" - -### Primary Functions - -proc displayvalidsearchmenus {searchword} { - global posmenu - blackout 1 - set gotone 0 - pack forget .wordframe.overview - for {set posnumber 1} {$posnumber <= 4} {incr posnumber} { - set pos [lindex {noun verb adj adv} [expr $posnumber - 1]] - pack forget .posmenubar.$pos - set bitfield [findvalidsearches [fixword $searchword] $posnumber] - if {$bitfield != 0} { - pack \ - .posmenubar.$pos \ - -side left \ - -padx 2 \ - -pady 2 \ - -before .posmenubar.senselabel - .posmenubar.$pos.menu delete 0 end - foreach line $posmenu($posnumber) { - set label [lindex $line 0] - regsub -nocase "this" $label $searchword label - set searchtypenumber [lindex $line 1] - set abssearchtypenumber [expr abs($searchtypenumber)] - set action "\ - searchanddisplay \"$searchword\" \"\$g_senses\" $posnumber \ - $searchtypenumber; \ - history_add \"$searchword\" \"\$g_senses\" $posnumber \ - $searchtypenumber; \ - pack .wordframe.overview \ - -side right \ - -padx 5 \ - -pady 1 - " - if {[expr $bitfield & [bit $abssearchtypenumber]]} { - .posmenubar.$pos.menu add command \ - -label $label \ - -command $action - } - } - set gotone 1 - } - } - if {!$gotone} { - .statusbar.status configure \ - -text "No matches found." - } - blackout 0 - return $gotone -} - -proc displayoverview {searchword} { - global showfileinfo - global showbyteoffset - global showsenseflag - global wordwrap - global fontNUMoffset - global fontsize - global fontname - global fontsp2offset - - set fontNUMsize $fontNUMoffset($fontname,$fontsize) - set fontsp2size $fontsp2offset($fontname,$fontsize) - - if {$showfileinfo == 2} {fileinfo 1} else {fileinfo 0} - if {$showbyteoffset == 2} {byteoffset 1} else {byteoffset 0} - if {$showsenseflag == 2} {senseflag 1} else {senseflag 0} - blackout 1 - .results.text configure \ - -state normal - .results.text delete 1.0 end - pack forget .wordframe.overview - set gotone 0 - for {set posnumber 1} {$posnumber <= 4} {incr posnumber} { - set bitfield [findvalidsearches [fixword $searchword] $posnumber] - if {$bitfield != 0} { - # The 31 in the following line should correspond to the value of - # OVERVIEW defined in wnconsts.h in the WordNet library - set buf [search [fixword $searchword] $posnumber 31 -1] - set morphedword "" - set numspaces 0 - set iter 0 - set buflines [split $buf "\n"] - foreach line $buflines { - .results.text mark set begofline \ - [.results.text index "end - 2 char"] - .results.text insert end "$line\n" - regexp -nocase -- \ - "The (noun|verb|adj|adv) (.*) has \[0-9\]+ senses?" \ - $line dummy dummy morphedword - set index [string first " --" $line] - if {$index != -1} { - set line [string range $line 0 [expr $index - 1]] - } - if {[regexp -indices -nocase -- \ - "\[\})>,\] ($morphedword)\[0-9\]*(#\[0-9\]+)?(,|\$)" \ - $line dummy indices]} { - .results.text tag add overviewhighlight \ - "end - 2 lines linestart + [lindex $indices 0] chars" \ - "end - 2 lines linestart + [expr \ - [lindex $indices 1] + 1] chars" - } elseif {[regexp -indices -nocase -- \ - "\[0-9\]+\. ($morphedword)\[0-9\]*(#\[0-9\]+)?(,|\$)" \ - $line dummy indices]} { - .results.text tag add overviewhighlight \ - "end - 2 lines linestart + [lindex $indices 0] chars" \ - "end - 2 lines linestart + [expr \ - [lindex $indices 1] + 1] chars" - } - set indent [string first "." $line] - if {$indent != -1} { - set numspaces [expr $indent * $fontNUMsize + $fontsp2size] - } else {set numspaces 0} - .results.text mark set endofline [.results.text index \ - "end - 1 char"] - .results.text tag configure indent$posnumber$iter \ - -lmargin2 $numspaces - .results.text tag add indent$posnumber$iter \ - begofline endofline - .results.text mark set begofline [.results.text index \ - "end - 2 char"] - incr iter - } - .results.text delete "end - 1 lines" end - set gotone 1 - } - } - .results.text configure \ - -state disabled - if {$gotone} { - .statusbar.status configure \ - -text "Overview of $searchword" - } - blackout 0 - setwordwrap $wordwrap - focus .results.text - return $gotone -} - -proc searchanddisplay {searchword senses posnumber searchtypenumber} { - global posmenu - global showcontextualhelp - global showglosses - global showfileinfo - global showbyteoffset - global showsenseflag - blackout 1 - glosses $showglosses - if {$showfileinfo > 0} {fileinfo 1} else {fileinfo 0} - if {$showbyteoffset > 0} {byteoffset 1} else {byteoffset 0} - if {$showsenseflag > 0} {senseflag 1} else {senseflag 0} - set longpos [lindex {noun verb adjective adverb} [expr $posnumber - 1]] - .results.text configure \ - -state normal - .results.text delete 0.0 end - .statusbar.status configure \ - -text "Searching... (press escape to abort)" - update idletasks - if {$showcontextualhelp} { - foreach line $posmenu($posnumber) { - if {[lindex $line 1] == $searchtypenumber} { - set linenumber [lsearch $posmenu($posnumber) $line] - } - } - .results.text insert end "\n[contextualhelp $posnumber $linenumber]" - .results.text mark set endofhelp [.results.text index "end - 1 char"] - .results.text tag add helpstyle 1.0 endofhelp - } - foreach sense [getsenselist $senses] { - - global fontsize - - global fontpt1offset - global fontpt2offset - global fonthpoffset - global fontpooffset - global fonthmoffset - global fontmooffset - global fonthsoffset - global fontsooffset - global fontspoffset - - global fontname - global wordwrap - - if {$wordwrap} { - set searchlines [split [search [fixword $searchword] $posnumber \ - $searchtypenumber $sense] "\n"] - .results.text mark set begofline [.results.text index "end - 2 char"] - - ### Set indentation levels ### - - set fontpt1size $fontpt1offset($fontname,$fontsize) - set fontpt2size $fontpt2offset($fontname,$fontsize) - set fonthpsize $fonthpoffset($fontname,$fontsize) - set fontposize $fontpooffset($fontname,$fontsize) - set fonthmsize $fonthmoffset($fontname,$fontsize) - set fontmosize $fontmooffset($fontname,$fontsize) - set fonthssize $fonthsoffset($fontname,$fontsize) - set fontsosize $fontsooffset($fontname,$fontsize) - set fontspsize $fontspoffset($fontname,$fontsize) - - .statusbar.status configure \ - -text "Formatting... (press escape to abort)" - - set iter 0 - set morphedword "" - set mword "" - foreach i $searchlines { - .results.text insert end $i\n - .results.text mark set endofline [.results.text index \ - "end - 1 char"] - -# added by RIT - regexp -nocase -- \ - "\[0-9\]+ (senses|sense) of (.+)" \ - $i dummy dummy mword - set morphedword [string trimright $mword] - set index [string first " --" $i] - set schar [string first " " $i] - if {$index != -1 && $schar != 0} { - set line [string range $i 0 [expr $index - 1]] - if {[regexp -indices -nocase -- \ - "(\[\.\})>,\] |^|, )($morphedword)\[0-9\]*(#\[0-9\]+)?( \[(\]|,|$\)" \ - $line dummy dummy indices]} { - .results.text tag add overviewhighlight \ - "end - 2 lines linestart + [lindex $indices 0] chars" \ - "end - 2 lines linestart + [expr \ - [lindex $indices 1] + 1] chars" - } - } - - set numspaces 0 - set idx [string first "->" $i] - if {$idx != -1} {set numspaces \ - [expr $fontpt1size + $idx * $fontspsize - 1]} \ - else {set idx [string first "=>" $i] - if {$idx != -1} {set numspaces \ - [expr $fontpt2size + $idx * $fontspsize]} \ - else {set idx [string first "HAS PART:" $i] - if {$idx != -1} {set numspaces \ - [expr $fonthpsize + $idx * $fontspsize - 1]} \ - else {set idx [string first "PART OF:" $i] - if {$idx != -1} {set numspaces \ - [expr $fontposize + $idx * $fontspsize - 1]} \ - else {set idx [string first "HAS MEMBER:" $i] - if {$idx != -1} {set numspaces \ - [expr $fonthmsize + $idx * $fontspsize - 1]} \ - else {set idx [string first "MEMBER OF:" $i] - if {$idx != -1} {set numspaces \ - [expr $fontmosize + $idx * $fontspsize - 1]} \ - else {set idx [string first "HAS SUBSTANCE:" $i] - if {$idx != -1} {set numspaces \ - [expr $fonthssize + $idx * $fontspsize]} \ - else {set idx [string first "SUBSTANCE OF:" $i] - if {$idx != -1} {set numspaces \ - [expr $fontsosize + $idx * $fontspsize]} \ - } } } } } } } - - .results.text tag configure indentstyle$iter -lmargin2 $numspaces - .results.text tag add indentstyle$iter begofline endofline - .results.text mark set begofline [.results.text index \ - "end - 2 char"] - incr iter - } - } else { - .results.text insert end [search [fixword $searchword] $posnumber \ - $searchtypenumber $sense] - } - - setwordwrap $wordwrap - } - foreach line $posmenu($posnumber) { - if {[lindex $line 1] == $searchtypenumber} { - set label "\"[lindex $line 0]\" search for $longpos \"$searchword\"" - eval [lindex $line 2] - break - } - } - .results.text configure \ - -state disabled - .statusbar.status configure \ - -text $label - blackout 0 -} - -proc history_add {searchword senses posnumber searchtypenumber} { - global posmenu - global maxhistorylength - - if {$posnumber == 0} { - set label "$searchword - Overview" - set action " \ - set g_searchword \"$searchword\"; \ - set g_senses \"\"; \ - displayvalidsearchmenus \"$searchword\"; \ - displayoverview \"$searchword\"; \ - .posmenubar.label configure \ - -text \"Searches for $searchword:\" \ - " - } else { - set longpos [lindex {Noun Verb Adjective Adverb} [expr $posnumber - 1]] - foreach line $posmenu($posnumber) { - if {[lindex $line 1] == $searchtypenumber} { - if {$senses == ""} { - set label "$searchword - $longpos / [lindex $line 0]" - } else { - set label \ - "$searchword - $longpos / [lindex $line 0] / $senses" - } - break - } - } - set action " \ - set g_searchword \"$searchword\"; \ - set g_senses \"$senses\"; \ - displayvalidsearchmenus \"$searchword\"; \ - searchanddisplay \"$searchword\" \"$senses\" $posnumber \ - $searchtypenumber; \ - pack .wordframe.overview \ - -side right \ - -padx 5 \ - -pady 1; \ - .posmenubar.label configure \ - -text \"Searches for $searchword:\" \ - " - } - .menubar.history.menu insert 0 command \ - -label $label \ - -command $action - if {[.menubar.history.menu index end] == $maxhistorylength} { - .menubar.history.menu delete end - } -} - -proc saveoptions { } { - - global tcl_platform - global UserRegPath - global showcontextualhelp - global showglosses - global wordwrap - global showfileinfo - global showbyteoffset - global showsenseflag - global maxhistorylength - global fontname - global fontsize - global fontsizelist - global configfile - -# Under Unix, write options settings to ".wnrc" file in user's -# home directory. -# Under Windows, write to "wnrc" key in registry. - - if {$tcl_platform(platform) == "unix"} { - set c [open $configfile w] - puts $c "set showcontextualhelp $showcontextualhelp" - puts $c "set showglosses $showglosses" - puts $c "set wordwrap $wordwrap" - puts $c "set showfileinfo $showfileinfo" - puts $c "set showbyteoffset $showbyteoffset" - puts $c "set showsenseflag $showsenseflag" - puts $c "set maxhistorylength $maxhistorylength" - puts $c "set fontname $fontname" - puts $c "set fontsize $fontsize" - puts $c "set fontsizelist \{ $fontsizelist \}" - } elseif {$tcl_platform(platform) == "windows"} { - set c "" - append c "set showcontextualhelp $showcontextualhelp\n" - append c "set showglosses $showglosses\n" - append c "set wordwrap $wordwrap\n" - append c "set showfileinfo $showfileinfo\n" - append c "set showbyteoffset $showbyteoffset\n" - append c "set showsenseflag $showsenseflag\n" - append c "set maxhistorylength $maxhistorylength\n" - append c "set fontname $fontname\n" - append c "set fontsize $fontsize\n" - append c "set fontsizelist \{ $fontsizelist \}\n" - registry set $UserRegPath "wnrc" $c - } -} - -proc showhelpwidget {w filename windowtitle} { - if {[winfo exist .$w]} {raise .$w; return} - toplevel .$w - wm title .$w $windowtitle - grid \ - [frame .$w.top \ - -relief raised \ - -borderwidth 1] \ - -row 0 \ - -column 0 \ - -sticky nsew - grid \ - [frame .$w.buttons \ - -relief raised \ - -borderwidth 1] \ - -row 1 \ - -column 0 \ - -sticky nsew - grid rowconfigure .$w 0 -weight 1 - grid rowconfigure .$w 1 -weight 0 - grid columnconfigure .$w 0 -weight 1 - text .$w.top.text \ - -wrap word \ - -relief sunken \ - -borderwidth 2 \ - -font -adobe-courier-medium-r-normal-*-*-120-*-*-*-*-*-* \ - -state disabled \ - -yscrollcommand ".$w.top.scrolly set" \ - -width 80 \ - -height 25 \ - -background White \ - -foreground Black - scrollbar .$w.top.scrolly \ - -command ".$w.top.text yview" \ - -relief sunken \ - -width 12 - grid .$w.top.text \ - -row 0 \ - -column 0 \ - -sticky nsew - grid .$w.top.scrolly \ - -row 0 \ - -column 1 \ - -sticky nsew - grid rowconfigure .$w.top 0 -weight 1 - grid rowconfigure .$w.top 1 -weight 0 - grid columnconfigure .$w.top 0 -weight 1 - grid columnconfigure .$w.top 1 -weight 0 - pack \ - [button .$w.buttons.dismiss \ - -text "Dismiss" \ - -command "destroy .$w"] \ - -side top \ - -padx 1 \ - -pady 1 - .$w.top.text configure \ - -state normal - set fileid [open $filename "r"] - set filetext [read $fileid] - close $fileid - regsub -all ".\b" $filetext "" filetext - .$w.top.text insert end $filetext - .$w.top.text configure \ - -state disabled -} - -proc printtext {whattoprint} { - # The following line is a hack to get the passed argument to be - # recognised in bound actions, like button presses. - global printtext_whattoprint; set printtext_whattoprint $whattoprint - global tcl_platform - switch $tcl_platform(platform) { - unix { - global printcommand - toplevel .printtxt - wm title .printtxt "Print WordNet Results" - wm transient .printtxt . - scan [wm geometry .] "%dx%d+%d+%d" geom_h geom_w geom_x geom_y - wm geometry .printtxt +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .printtxt 0 0 - grab set .printtxt - pack \ - [frame .printtxt.top] \ - [frame .printtxt.bottom] \ - -side top \ - -padx 10 \ - -pady 10 - pack \ - [label .printtxt.top.label \ - -text "Print command:"] \ - [entry .printtxt.top.entry \ - -textvariable printcommand \ - -background White \ - -foreground Black] \ - -side left - focus .printtxt.top.entry - pack \ - [button .printtxt.bottom.print \ - -text "Print" \ - -command { - set fileId [open "| $printcommand" w] - switch $printtext_whattoprint { - "main" { - puts $fileId [.results.text get 1.0 end] - } - "grep" { - puts $fileId [join \ - [.grepwidget.results.frame.list \ - get 0 end] "\n"] - } - default {} - } - close $fileId - destroy .printtxt - }] \ - [button .printtxt.bottom.cancel \ - -text "Cancel" \ - -command { - destroy .printtxt - }] \ - -side left - bind .printtxt { - .printtxt.bottom.print flash - .printtxt.bottom.print invoke - } - } - windows { - bell - } - } -} - -proc savetext {whattosave} { - # The following line is a hack to get the passed argument to be - # recognised in bound actions, like button presses. - global tcl_platform - global savetext_whattosave; set savetext_whattosave $whattosave - toplevel .saveas - wm title .saveas "Save WordNet Results To File" - wm transient .saveas . - scan [wm geometry .] "%dx%d+%d+%d" geom_h geom_w geom_x geom_y - wm geometry .saveas +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .saveas 0 0 - grab set .saveas - pack \ - [frame .saveas.top] \ - [frame .saveas.bottom] \ - -side top \ - -padx 10 \ - -pady 10 - pack \ - [label .saveas.top.label \ - -text "Filename:"] \ - [entry .saveas.top.entry \ - -textvariable filename \ - -background White \ - -foreground Black] \ - -side left - focus .saveas.top.entry - pack \ - [button .saveas.bottom.save \ - -text "Save" \ - -command { - if [file exists $filename] { - toplevel .savewarning - wm title .savewarning "Wordnet Warning" - wm transient .savewarning .saveas - scan [wm geometry .saveas] "%dx%d+%d+%d" \ - geom_h geom_w geom_x geom_y - wm geometry .savewarning +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .savewarning 0 0 - grab set .savewarning - pack \ - [message .savewarning.message \ - -text "The file \"$filename\" already exists.\ - Choose \"append\" to add the new search results onto\ - the end of the old ones. Choose \"replace\" to\ - discard the old search results and store the new ones\ - in their place. If you choose \"cancel,\" you will\ - have the opportunity to select a different file." \ - -width 300] \ - [frame .savewarning.bottom] \ - -side top \ - -padx 10 \ - -pady 10 - pack \ - [button .savewarning.bottom.append \ - -text "Append" \ - -command { - set fileId [open $filename "a"] - switch $savetext_whattosave { - "main" { - puts $fileId [.results.text get 1.0 end] - } - "grep" { - puts $fileId [join \ - [.grepwidget.results.frame.list \ - get 0 end] "\n"] - } - default {} - } - close $fileId - destroy .saveas - destroy .savewarning - }] \ - [button .savewarning.bottom.replace \ - -text "Replace" \ - -command { - set fileId [open $filename "w"] - switch $savetext_whattosave { - "main" { - puts $fileId [.results.text get 1.0 end] - } - "grep" { - puts $fileId [join \ - [.grepwidget.results.frame.list \ - get 0 end] "\n"] - } - default {} - } - close $fileId - destroy .saveas - destroy .savewarning - }] \ - [button .savewarning.bottom.cancel \ - -text "Cancel" \ - -command { - destroy .savewarning - }] \ - -side left - bind .savewarning { - .savewarning.bottom.append flash - .savewarning.bottom.append invoke - } - } else { - set fileId [open $filename "w"] - switch $savetext_whattosave { - "main" { - puts $fileId [.results.text get 1.0 end] - } - "grep" { - puts $fileId [join [.grepwidget.results.frame.list \ - get 0 end] "\n"] - } - default {} - } - close $fileId - destroy .saveas - } - }] \ - [button .saveas.bottom.cancel \ - -text "Cancel" \ - -command {destroy .saveas}] \ - -side left - bind .saveas { - .saveas.bottom.save flash - .saveas.bottom.save invoke - } -} - -proc setmaxhistorylength {} { - global maxhistorylength - global tcl_platform - toplevel .histlen - wm title .histlen "Set Maximum WordNet Browser History Length" - wm transient .histlen . - scan [wm geometry .] "%dx%d+%d+%d" geom_h geom_w geom_x geom_y - wm geometry .histlen +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .histlen 0 0 - grab set .histlen - pack \ - [frame .histlen.f \ - -relief raised \ - -borderwidth 1] \ - -side top \ - -fill both \ - -expand true - pack \ - [frame .histlen.f.top] \ - [frame .histlen.f.bottom] \ - -side top \ - -padx 10 \ - -pady 10 - pack \ - [label .histlen.f.top.label \ - -text "Maximum history length:"] \ - [entry .histlen.f.top.entry \ - -textvariable maxhistorylength \ - -background White \ - -foreground Black] \ - -side left - focus .histlen.f.top.entry - pack \ - [button .histlen.f.bottom.ok \ - -text "Ok" \ - -command { - if {[.menubar.history.menu index end] >= $maxhistorylength} { - .menubar.history.menu delete $maxhistorylength end - } - destroy .histlen - }] \ - -side left - bind .histlen { - .histlen.f.bottom.ok flash - .histlen.f.bottom.ok invoke - } -} - -proc showaboutbox {} { - global resourcedir - if {[winfo exist .aboutbox]} {raise .aboutbox; return} - toplevel .aboutbox - wm title .aboutbox "About WordNet Browser" - wm resizable .aboutbox 0 0 - pack \ - [frame .aboutbox.top \ - -relief raised \ - -borderwidth 1] \ - [frame .aboutbox.bottom \ - -relief raised \ - -borderwidth 1] \ - -side top \ - -fill x \ - -ipadx 3 \ - -ipady 3 - pack \ - [frame .aboutbox.top.left \ - -relief flat] \ - [frame .aboutbox.top.right \ - -relief flat] \ - -side left \ - -fill x \ - -ipadx 3 \ - -ipady 3 - pack \ - [label .aboutbox.top.left.icon \ - -bitmap @$resourcedir/wn.xbm] \ - -side left \ - -padx 10 - pack \ - [label .aboutbox.top.right.text1 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-180-*-*-*-*-*-*" \ - -text "WordNet Browser"] \ - [label .aboutbox.top.right.text2 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*" \ - -text "A graphical interface to the\nWordNet online lexical\ - database."] \ - [label .aboutbox.top.right.text3 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*" \ - -text "This Tcl/Tk version by David Slomin and Randee Tengi."] \ - [label .aboutbox.top.right.text4 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*" \ - -text "Based upon an earlier X Window version by\nBrian Gustafson."] \ - [label .aboutbox.top.right.text5 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*" \ - -text "Copyright 1991-2006\nPrinceton University Cognitive Science Lab"] \ - [label .aboutbox.top.right.text6 \ - -anchor w \ - -justify left \ - -font "-adobe-helvetica-medium-r-*-*-*-120-*-*-*-*-*-*" \ - -text "All Rights Reserved"] \ - -side top \ - -fill x - pack \ - [button .aboutbox.bottom.ok \ - -text "Dismiss" \ - -command {destroy .aboutbox}] \ - -side top \ - -padx 3 \ - -pady 2 -} - -proc grepword {greptype} { - global g_greptype; set g_greptype $greptype; - global g_searchword - global grepstr - global tcl_platform - - if {[winfo exist .grepwidget]} {raise .grepwidget; return} - - set grepstr $g_searchword - - toplevel .grepwidget - switch $g_greptype { - "substring" { wm title .grepwidget "Substring search (grep)"} - "ending" { wm title .grepwidget "Ending string search (grep)"} - } - grid \ - [frame .grepwidget.inputs \ - -relief raised \ - -borderwidth 1] \ - -row 0 \ - -column 0 \ - -sticky nsew - grid \ - [frame .grepwidget.results \ - -relief raised \ - -borderwidth 1] \ - -row 1 \ - -column 0 \ - -sticky nsew - grid \ - [frame .grepwidget.status \ - -relief raised \ - -borderwidth 1] \ - -row 2 \ - -column 0 \ - -sticky nsew - grid \ - [frame .grepwidget.buttons \ - -relief raised \ - -borderwidth 1] \ - -row 3 \ - -column 0 \ - -sticky nsew - grid rowconfigure .grepwidget 0 -weight 0 - grid rowconfigure .grepwidget 1 -weight 1 - grid rowconfigure .grepwidget 2 -weight 0 - grid rowconfigure .grepwidget 3 -weight 0 - grid columnconfigure .grepwidget 0 -weight 1 - tk_optionMenu .grepwidget.inputs.pos greppos Noun Verb Adjective Adverb - grid \ - [label .grepwidget.inputs.label \ - -text "Substring:"] \ - -row 0 \ - -column 0 \ - -sticky ew \ - -padx 2 \ - -pady 2 - grid \ - [entry .grepwidget.inputs.word \ - -textvariable grepstr \ - -width 15 \ - -foreground Black \ - -background White] \ - -row 0 \ - -column 1 \ - -sticky ew \ - -padx 2 \ - -pady 2 - focus .grepwidget.inputs.word - grid \ - .grepwidget.inputs.pos \ - -row 0 \ - -column 2 \ - -sticky ew \ - -padx 2 \ - -pady 2 - grid rowconfigure .grepwidget.inputs 0 -weight 1 - grid columnconfigure .grepwidget.inputs 0 -weight 0 - grid columnconfigure .grepwidget.inputs 1 -weight 1 - grid columnconfigure .grepwidget.inputs 2 -weight 0 - pack \ - [frame .grepwidget.results.frame] \ - -side top \ - -fill both \ - -expand true \ - -padx 8 \ - -pady 8 - grid \ - [listbox .grepwidget.results.frame.list \ - -yscrollcommand ".grepwidget.results.frame.yscroll set" \ - -foreground Black \ - -background White \ - -highlightthickness 0] \ - -row 0 \ - -column 0 \ - -sticky nsew - grid \ - [scrollbar .grepwidget.results.frame.yscroll \ - -command ".grepwidget.results.frame.list yview" \ - -width 12 \ - -highlightthickness 0] \ - -row 0 \ - -column 1 \ - -sticky nsew - grid rowconfigure .grepwidget.results.frame 0 -weight 1 - grid columnconfigure .grepwidget.results.frame 0 -weight 1 - grid columnconfigure .grepwidget.results.frame 1 -weight 0 - pack \ - [label .grepwidget.status.label \ - -text ""] \ - -side top - pack \ - [frame .grepwidget.buttons.frame] \ - -side top - grid \ - [button .grepwidget.buttons.frame.search \ - -text "Search" \ - -command { - if {[.grepwidget.buttons.frame.search cget -text] == "Search"} { - if {[string length $grepstr] >= 3} { - .grepwidget.buttons.frame.search configure \ - -text "Abort" - .grepwidget.status.label configure \ - -text "Searching... (press escape to abort)" - bind .grepwidget { - .grepwidget.buttons.frame.search flash - .grepwidget.buttons.frame.search invoke - } - .grepwidget.results.frame.list delete 0 end - update - set posnumber [lsearch {{} Noun Verb Adjective Adverb} \ - $greppos] - set clockstart [clock seconds] - switch $g_greptype { - "substring" { - set buf [search [fixword $grepstr] $posnumber 30 0] - } - "ending" { - set buf [fixgrep [search [fixword $grepstr] $posnumber 30 0] [fixword $grepstr]] - } - } - set clockstop [clock seconds] - set buflines [split $buf \n] - foreach line $buflines { - .grepwidget.results.frame.list insert end $line - } - .grepwidget.buttons.frame.search configure \ - -text "Search" - .grepwidget.status.label configure -text "" - bind .grepwidget {} - } else { - bell - set line "Error: search string less than 3 characters\n" - .grepwidget.results.frame.list delete 0 end - .grepwidget.results.frame.list insert end $line - } - } else { - bell - abortsearch - } - }] \ - -row 0 \ - -column 0 \ - -sticky nsew \ - -padx 2 \ - -pady 2 - grid \ - [button .grepwidget.buttons.frame.save \ - -text "Save" \ - -command "savetext grep"] \ - -row 0 \ - -column 1 \ - -sticky nsew \ - -padx 2 \ - -pady 2 - -# Printing only works on Unix systems, so don't offer the option on -# other platforms. - if {$tcl_platform(platform) == "unix"} { - grid \ - [button .grepwidget.buttons.frame.print \ - -text "Print" \ - -command "printtext grep"] \ - -row 0 \ - -column 2 \ - -sticky nsew \ - -padx 2 \ - -pady 2 - } - grid \ - [button .grepwidget.buttons.frame.dismiss \ - -text "Dismiss" \ - -command "destroy .grepwidget"] \ - -row 0 \ - -column 3 \ - -sticky nsew \ - -padx 2 \ - -pady 2 - grid rowconfigure .grepwidget.buttons.frame 0 -weight 0 - grid columnconfigure .grepwidget.buttons.frame 0 -weight 1 - grid columnconfigure .grepwidget.buttons.frame 1 -weight 1 - grid columnconfigure .grepwidget.buttons.frame 2 -weight 1 - grid columnconfigure .grepwidget.buttons.frame 3 -weight 1 - bind .grepwidget.results.frame.list { - set chosengrep [.grepwidget.results.frame.list curselection] - if {$chosengrep != {}} { - set chosengrepword [.grepwidget.results.frame.list get \ - [lindex $chosengrep 0]] - set g_searchword $chosengrepword - set g_senses {} - golookup - } - } - bind .grepwidget { - .grepwidget.buttons.frame.search flash - .grepwidget.buttons.frame.search invoke - } -} - -### Utility functions - -proc setwordwrap {wrap} { - if {$wrap} { - .results.text configure -wrap word - grid forget .results.scrollx - } else { - .results.text configure -wrap none - grid .results.scrollx -row 1 -column 0 -sticky nsew - } -} - -proc golookup {} { - global g_searchword - global g_senses - - if {[fixword $g_searchword] == ""} return - .results.text configure \ - -state normal - .results.text delete 1.0 end - .results.text configure \ - -state disabled - set g_senses {} - .posmenubar.label configure \ - -text "Searches for $g_searchword:" - if {[displayvalidsearchmenus $g_searchword]} { - displayoverview $g_searchword - history_add $g_searchword {} 0 0 - } -} - -proc fixword {word} { - regsub "^ *" $word "" word ; # remove leading spaces - regsub " *$" $word "" word ; # remove trailing spaces - regsub -all " " $word "_" word ; # change other spaces to underscores - return $word -} - -proc fixgrep {grepbuf word} { - set greplines [split $grepbuf "\n"] - foreach line $greplines { - if { ([regexp -nocase "$word\$" $line]) && !([regexp " " $line]) } { - append retbuf $line - append retbuf "\n" - } - } - return $retbuf -} - -proc updatefonts {} { - global fontsizelist - global fontname - global fontsize - .results.text configure \ - -font "-adobe-$fontname-medium-r-*-*-*-[lindex \ - $fontsizelist $fontsize]-*-*-*-*-*-*" - .results.text tag configure helpstyle \ - -font "-adobe-$fontname-medium-r-*-*-*-[lindex $fontsizelist \ - [expr $fontsize - 1]]-*-*-*-*-*-*" \ - -foreground Blue \ - -lmargin1 20 - .results.text tag configure overviewhighlight \ - -font "-adobe-$fontname-bold-r-*-*-*-[lindex $fontsizelist \ - $fontsize]-*-*-*-*-*-*" \ - -foreground Red -} - -proc clearall {} { - global g_searchword - global g_senses - set g_searchword {} - set g_senses {} - .results.text configure \ - -state normal - .results.text delete 1.0 end - .results.text configure \ - -state disabled - foreach pos {noun verb adj adv} { pack forget .posmenubar.$pos } - pack forget .wordframe.overview - .statusbar.status configure \ - -text "Enter search word and press return." - .posmenubar.label configure \ - -text "" -} - -proc generaterange {low high} { - for {set i $low} {$i <= $high} {incr i} {lappend res $i} - return $res -} - -proc getsenselist {senses} { - regsub -all {[^0-9*]+} $senses " " senses - regsub "^ *" $senses "" senses - regsub "\ +$" $senses "" senses - if {[regexp {\*} $senses] || ($senses == {})} { set senses 0 } - return $senses -} - -proc blackout {q} { - set objectlist { - .menubar.file - .menubar.history - .menubar.options - .menubar.help - .wordframe.entry - .wordframe.overview - .posmenubar.noun - .posmenubar.verb - .posmenubar.adj - .posmenubar.adv - .posmenubar.entry - } - if {$q} { - bind . {bell; abortsearch} - bind .wordframe.entry {} - bind .results.text {} - bind .results.text {} - bind . {} - foreach object $objectlist { - $object configure \ - -state disabled - } - } else { - bind . {} - bind .wordframe.entry golookup - bind .results.text {shiftclickhandler %x %y} - bind .results.text {shiftclickhandler %x %y} - bind . controlshandler - foreach object $objectlist { - $object configure \ - -state normal - } - } -} - -proc shiftclickhandler {x y} { - global g_searchword - set newsearchword [.results.text get "@$x,$y wordstart" "@$x,$y wordend"] - if {$newsearchword != "\n"} { - set g_searchword $newsearchword - golookup - } -} - -proc controlshandler {} { - global g_searchword - if {[catch {selection get} newsearchword]} { - bell - return - } - if {$newsearchword != ""} { - set g_searchword $newsearchword - golookup - } -} - - -### Visual Components - -grid \ - [frame .menubar \ - -relief raised \ - -borderwidth 1] \ - -row 0 \ - -column 0 \ - -sticky ew -grid \ - [frame .wordframe \ - -relief raised \ - -borderwidth 1] \ - -row 1 \ - -column 0 \ - -sticky ew -grid \ - [frame .posmenubar \ - -relief raised \ - -borderwidth 1] \ - -row 2 \ - -column 0 \ - -sticky ew -grid \ - [frame .results \ - -relief raised \ - -borderwidth 1] \ - -row 3 \ - -column 0 \ - -sticky nsew \ - -ipadx 3 \ - -ipady 3 -grid \ - [frame .statusbar \ - -relief raised \ - -borderwidth 1] \ - -row 4 \ - -column 0 \ - -sticky ew -grid rowconfigure . 0 -weight 0 -grid rowconfigure . 1 -weight 0 -grid rowconfigure . 2 -weight 0 -grid rowconfigure . 3 -weight 1 -grid rowconfigure . 4 -weight 0 -grid columnconfigure . 0 -weight 1 -pack \ - [menubutton .menubar.file \ - -text "File" \ - -menu .menubar.file.menu \ - -relief flat] \ - [menubutton .menubar.history \ - -text "History" \ - -menu .menubar.history.menu \ - -relief flat] \ - [menubutton .menubar.options \ - -text "Options" \ - -menu .menubar.options.menu \ - -relief flat] \ - [menubutton .menubar.help \ - -text "Help" \ - -menu .menubar.help.menu \ - -relief flat] \ - -side left -pack \ - [label .wordframe.label \ - -text "Search Word:"] \ - [entry .wordframe.entry \ - -textvariable g_searchword \ - -width 40 \ - -background White \ - -foreground Black] \ - -side left \ - -padx 2 \ - -pady 2 -focus .wordframe.entry -button .wordframe.overview \ - -text "Redisplay Overview" \ - -padx 3 \ - -pady 1 \ - -highlightthickness 0 \ - -relief raised \ - -command { - set g_senses {} - displayoverview $g_searchword - history_add $g_searchword {} 0 0 - } -pack \ - [label .posmenubar.label \ - -text ""] \ - -side left \ - -padx 2 \ - -pady 2 -menubutton .posmenubar.noun \ - -text "Noun" \ - -menu .posmenubar.noun.menu \ - -relief raised -menubutton .posmenubar.verb \ - -text "Verb" \ - -menu .posmenubar.verb.menu \ - -relief raised -menubutton .posmenubar.adj \ - -text "Adjective" \ - -menu .posmenubar.adj.menu \ - -relief raised -menubutton .posmenubar.adv \ - -text "Adverb" \ - -menu .posmenubar.adv.menu \ - -relief raised -pack \ - [entry .posmenubar.entry \ - -textvariable g_senses \ - -width 10 \ - -background White \ - -foreground Black] \ - [label .posmenubar.senselabel \ - -text "Senses:"] \ - -side right \ - -padx 2 \ - -pady 2 -grid \ - [text .results.text \ - -wrap word \ - -relief sunken \ - -borderwidth 2 \ - -state disabled \ - -yscrollcommand ".results.scrolly set" \ - -xscrollcommand ".results.scrollx set" \ - -background White \ - -foreground Black \ - -width 80 \ - -height 25 \ - -highlightthickness 0] \ - -row 0 \ - -column 0 \ - -sticky nsew -updatefonts -grid \ - [scrollbar .results.scrolly \ - -command ".results.text yview" \ - -width 12 \ - -relief sunken \ - -borderwidth 2 \ - -highlightthickness 0] \ - -row 0 \ - -column 1 \ - -sticky nsew -grid \ - [scrollbar .results.scrollx \ - -orient horizontal \ - -command ".results.text xview" \ - -width 12 \ - -relief sunken \ - -borderwidth 2 \ - -highlightthickness 0] \ - -row 1 \ - -column 0 \ - -sticky nsew -if {$wordwrap} {grid forget .results.scrollx} -grid rowconfigure .results 0 -weight 1 -grid rowconfigure .results 1 -weight 0 -grid columnconfigure .results 0 -weight 1 -grid columnconfigure .results 1 -weight 0 -pack \ - [label .statusbar.status \ - -text "Enter search word and press return."] \ - -side left \ - -padx 2 - -### Regular Menus - -if {$labonly} { -menu .menubar.file.menu \ - -tearoff false -menu .menubar.history.menu \ - -tearoff false -menu .menubar.options.menu \ - -tearoff false -menu .menubar.options.menu.font \ - -tearoff false -menu .menubar.help.menu \ - -tearoff false -.menubar.file.menu add command \ - -label "Find keywords by substring" \ - -command "grepword substring" -.menubar.file.menu add command \ - -label "Find keywords by ending" \ - -command "grepword ending" -.menubar.file.menu add separator -.menubar.file.menu add command \ - -label "Save current display (specify path)" \ - -command "savetext main" -} else { -menu .menubar.file.menu \ - -tearoff false -menu .menubar.history.menu \ - -tearoff false -menu .menubar.options.menu \ - -tearoff false -menu .menubar.options.menu.font \ - -tearoff false -menu .menubar.help.menu \ - -tearoff false -.menubar.file.menu add command \ - -label "Find keywords by substring" \ - -command "grepword substring" -.menubar.file.menu add separator -.menubar.file.menu add command \ - -label "Save current display (specify path)" \ - -command "savetext main" -} - -# Printing only works on Unix systems, so don't offer the option on -# other platforms. -if {$tcl_platform(platform) == "unix"} { - .menubar.file.menu add command \ - -label "Print current display" \ - -command "printtext main" -} -.menubar.file.menu add command \ - -label "Clear current display" \ - -command clearall -.menubar.file.menu add separator -if {$labonly} { - .menubar.file.menu add command \ - -label "Reopen database" \ - -command reopendb - .menubar.file.menu add separator -} -.menubar.file.menu add command \ - -label "Exit" \ - -command { destroy . } -.menubar.options.menu add checkbutton \ - -label "Show help with each search" \ - -variable showcontextualhelp -.menubar.options.menu add checkbutton \ - -label "Show descriptive gloss" \ - -variable showglosses \ - -command { glosses $showglosses } -.menubar.options.menu add checkbutton \ - -label "Wrap lines" \ - -variable wordwrap \ - -command {.menubar.history.menu invoke 0} -.menubar.options.menu add separator -.menubar.options.menu add command \ - -label "Set advanced search options..." \ - -command { - toplevel .adviewopt - wm title .adviewopt "Advanced search options" - wm transient .adviewopt . - scan [wm geometry .] "%dx%d+%d+%d" geom_h geom_w geom_x geom_y - wm geometry .adviewopt +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .adviewopt 0 0 - grab set .adviewopt - pack \ - [frame .adviewopt.fileinfo \ - -relief raised \ - -borderwidth 1] \ - [frame .adviewopt.byteoffset \ - -relief raised \ - -borderwidth 1] \ - [frame .adviewopt.senseflag \ - -relief raised \ - -borderwidth 1] \ - [frame .adviewopt.bottom \ - -relief raised \ - -borderwidth 1] \ - -side top \ - -fill both \ - -expand true - pack \ - [frame .adviewopt.fileinfo.f \ - -relief flat \ - -borderwidth 10] \ - -side top \ - -fill both \ - -expand true - pack \ - [label .adviewopt.fileinfo.f.label \ - -text "Lexical file information"] \ - [radiobutton .adviewopt.fileinfo.f.opt0 \ - -text "Don't show" \ - -variable showfileinfo \ - -value 0] \ - [radiobutton .adviewopt.fileinfo.f.opt1 \ - -text "Show with searches" \ - -variable showfileinfo \ - -value 1] \ - [radiobutton .adviewopt.fileinfo.f.opt2 \ - -text "Show with searches and overview" \ - -variable showfileinfo \ - -value 2] \ - -side top \ - -anchor w - pack \ - [frame .adviewopt.byteoffset.f \ - -relief flat \ - -borderwidth 10] \ - -side top \ - -fill both \ - -expand true - pack \ - [label .adviewopt.byteoffset.f.label \ - -text "Synset location in database file"] \ - [radiobutton .adviewopt.byteoffset.f.opt0 \ - -text "Don't show" \ - -variable showbyteoffset \ - -value 0] \ - [radiobutton .adviewopt.byteoffset.f.opt1 \ - -text "Show with searches" \ - -variable showbyteoffset \ - -value 1] \ - [radiobutton .adviewopt.byteoffset.f.opt2 \ - -text "Show with searches and overview" \ - -variable showbyteoffset \ - -value 2] \ - -side top \ - -anchor w - pack \ - [frame .adviewopt.senseflag.f \ - -relief flat \ - -borderwidth 10] \ - -side top \ - -fill both \ - -expand true - pack \ - [label .adviewopt.senseflag.f.label \ - -text "Sense number"] \ - [radiobutton .adviewopt.senseflag.f.opt0 \ - -text "Don't show" \ - -variable showsenseflag \ - -value 0] \ - [radiobutton .adviewopt.senseflag.f.opt1 \ - -text "Show with searches" \ - -variable showsenseflag \ - -value 1] \ - [radiobutton .adviewopt.senseflag.f.opt2 \ - -text "Show with searches and overview" \ - -variable showsenseflag \ - -value 2] \ - -side top \ - -anchor w - pack \ - [button .adviewopt.bottom.ok \ - -text "Ok" \ - -command "destroy .adviewopt"] \ - -side top \ - -pady 5 - } -.menubar.options.menu add command \ - -label "Set maximum history length..." \ - -command setmaxhistorylength -.menubar.options.menu add command \ - -label "Set font..." \ - -command { - toplevel .fontopt - wm title .fontopt "Font" - wm transient .fontopt . - scan [wm geometry .] "%dx%d+%d+%d" geom_h geom_w geom_x geom_y - wm geometry .fontopt +[expr $geom_x+50]+[expr $geom_y+50] - wm resizable .fontopt 0 0 - grab set .fontopt - pack \ - [frame .fontopt.top] \ - [frame .fontopt.bottom \ - -relief raised \ - -borderwidth 1] \ - -side top \ - -fill both \ - -expand true - pack \ - [frame .fontopt.top.face \ - -relief raised \ - -borderwidth 1] \ - [frame .fontopt.top.size \ - -relief raised \ - -borderwidth 1] \ - -side left \ - -fill both \ - -expand true - pack \ - [frame .fontopt.top.face.f \ - -relief flat \ - -borderwidth 10] \ - -side top \ - -fill both \ - -expand true - pack \ - [label .fontopt.top.face.f.label \ - -text "Typeface"] \ - [radiobutton .fontopt.top.face.f.courier \ - -text "Courier" \ - -variable fontname \ - -value courier] \ - [radiobutton .fontopt.top.face.f.helvetica \ - -text "Helvetica" \ - -variable fontname \ - -value helvetica] \ - [radiobutton .fontopt.top.face.f.times \ - -text "Times" \ - -variable fontname \ - -value times] \ - -side top \ - -anchor w - pack \ - [frame .fontopt.top.size.f \ - -relief flat \ - -borderwidth 10] \ - -side top \ - -fill both \ - -expand true - pack \ - [label .fontopt.top.size.f.label \ - -text "Size"] \ - [radiobutton .fontopt.top.size.f.small \ - -text "Small" \ - -variable fontsize \ - -value 1] \ - [radiobutton .fontopt.top.size.f.medium \ - -text "Medium" \ - -variable fontsize \ - -value 2] \ - [radiobutton .fontopt.top.size.f.large \ - -text "Large" \ - -variable fontsize \ - -value 3] \ - -side top \ - -anchor w - pack \ - [button .fontopt.bottom.ok \ - -text "Ok" \ - -command { - updatefonts - destroy .fontopt - .menubar.history.menu invoke 0 - }] \ - -side top \ - -pady 5 - } -.menubar.options.menu add separator -.menubar.options.menu add command \ - -label "Save current options as default" \ - -command {saveoptions} -.menubar.help.menu add command \ - -label "Help on using the WordNet browser" \ - -command {showhelpwidget helpwidget_xwn $resourcedir/wnb.man "WordNet Browser Help"} -.menubar.help.menu add command \ - -label "Help on WordNet terminology" \ - -command {showhelpwidget helpwidget_wngloss $resourcedir/wngloss.man "WordNet Glossary"} -.menubar.help.menu add command \ - -label "Display the WordNet license" \ - -command {showhelpwidget helpwidget_license $resourcedir/license.txt "WordNet License"} -.menubar.help.menu add separator -.menubar.help.menu add command \ - -label "About the WordNet browser" \ - -command showaboutbox - -### Dynamic menus (for each part of speech) -### The numbers here are from wnconsts.h in the Wordnet library. -### Unfortunately, Tcl doesn't recognise #defined constants. -### Please be sure to keep them synchronised. - -menu .posmenubar.noun.menu \ - -tearoff false -menu .posmenubar.verb.menu \ - -tearoff false -menu .posmenubar.adj.menu \ - -tearoff false -menu .posmenubar.adv.menu \ - -tearoff false -set posmenu(1) { - { "Synonyms, ordered by estimated frequency" 2 {} } - { "Synonyms, grouped by similarity" 27 {} } - { "Antonyms" 1 {} } - { "Coordinate Terms" 26 {} } - { "Hypernyms (this is a kind of...)" -2 {} } - { "Hyponyms (...is a kind of this), brief" 3 {} } - { "Hyponyms (...is a kind of this), full" -3 {} } - { "Holonyms (this is a part of...), regular" 13 {} } - { "Holonyms (this is a part of...), inherited" -29 {} } - { "Meronyms (parts of this), regular" 12 {} } - { "Meronyms (parts of this), inherited" -28 {} } - { "Derivationally related forms" 20 {} } - { "Attributes (...is a value of this)" 18 {} } - { "Domain" 21 {} } - { "Domain Terms" 22 {} } - { "Familiarity" 24 {} } -} -set posmenu(2) { - { "Synonyms, ordered by estimated frequency" 2 {} } - { "Synonyms, grouped by similarity" 27 {} } - { "Antonyms" 1 {} } - { "Coordinate Terms" 26 {} } - { "Hypernyms (this is one way to...)" -2 {} } - { "Troponyms (particular ways to...), brief" 3 {} } - { "Troponyms (particular ways to...), full" -3 {} } - { "This entails doing..." 4 {} } - { "This causes..." 14 {} } - { "Derivationally related forms" 20 {} } - { "Sentence frames" 25 {} } - { "Domain" 21 {} } - { "Domain Terms" 22 {} } - { "Familiarity" 24 {} } -} -set posmenu(3) { - { "Synonyms" 5 {} } - { "Antonyms" 1 {} } - { "Related Noun" 17 {} } - { "This is a value of..." 18 {} } - { "Derivationally related forms" 20 {} } - { "Domain" 21 {} } - { "Domain Terms" 22 {} } - { "Familiarity" 24 {} } -} -set posmenu(4) { - { "Synonyms" 23 {} } - { "Antonyms" 1 {} } - { "Base Adjective" 17 {} } - { "Derivationally related forms" 20 {} } - { "Domain" 21 {} } - { "Domain Terms" 22 {} } - { "Familiarity" 24 {} } -} - -### Bindings - -bind .wordframe.entry golookup -bind .results.text {shiftclickhandler %x %y} -bind .results.text {shiftclickhandler %x %y} -bind . controlshandler -bind . "grepword substring" - -set g_searchword [lindex $argv 0] -golookup diff --git a/examples/keras_parikh_entailment/README.md b/examples/keras_parikh_entailment/README.md index abe9cf241..571ba6e73 100644 --- a/examples/keras_parikh_entailment/README.md +++ b/examples/keras_parikh_entailment/README.md @@ -47,11 +47,16 @@ First, install [Keras](https://keras.io/), [spaCy](https://spacy.io) and the spa English models (about 1GB of data): ```bash -pip install keras spacy +pip install https://github.com/fchollet/keras/archive/master.zip +pip install spacy python -m spacy.en.download ``` -You'll also want to get keras working on your GPU. This will depend on your +⚠️ **Important:** In order for the example to run, you'll need to install Keras from +the master branch (and not via `pip install keras`). For more info on this, see +[#727](https://github.com/explosion/spaCy/issues/727). + +You'll also want to get Keras working on your GPU. This will depend on your set up, so you're mostly on your own for this step. If you're using AWS, try the [NVidia AMI](https://aws.amazon.com/marketplace/pp/B00FYCDDTE). It made things pretty easy. diff --git a/examples/keras_parikh_entailment/__main__.py b/examples/keras_parikh_entailment/__main__.py index 20a02937d..5c3132bab 100644 --- a/examples/keras_parikh_entailment/__main__.py +++ b/examples/keras_parikh_entailment/__main__.py @@ -12,17 +12,23 @@ from spacy_hook import create_similarity_pipeline from keras_decomposable_attention import build_model +try: + import cPickle as pickle +except ImportError: + import pickle -def train(model_dir, train_loc, dev_loc, shape, settings): + +def train(train_loc, dev_loc, shape, settings): train_texts1, train_texts2, train_labels = read_snli(train_loc) dev_texts1, dev_texts2, dev_labels = read_snli(dev_loc) - + print("Loading spaCy") nlp = spacy.load('en') + assert nlp.path is not None print("Compiling network") model = build_model(get_embeddings(nlp.vocab), shape, settings) print("Processing texts...") - Xs = [] + Xs = [] for texts in (train_texts1, train_texts2, dev_texts1, dev_texts2): Xs.append(get_word_ids(list(nlp.pipe(texts, n_threads=20, batch_size=20000)), max_length=shape[0], @@ -36,35 +42,41 @@ def train(model_dir, train_loc, dev_loc, shape, settings): validation_data=([dev_X1, dev_X2], dev_labels), nb_epoch=settings['nr_epoch'], batch_size=settings['batch_size']) + if not (nlp.path / 'similarity').exists(): + (nlp.path / 'similarity').mkdir() + print("Saving to", nlp.path / 'similarity') + weights = model.get_weights() + with (nlp.path / 'similarity' / 'model').open('wb') as file_: + pickle.dump(weights[1:], file_) + with (nlp.path / 'similarity' / 'config.json').open('wb') as file_: + file_.write(model.to_json()) def evaluate(model_dir, dev_loc): - nlp = spacy.load('en', path=model_dir, - tagger=False, parser=False, entity=False, matcher=False, + dev_texts1, dev_texts2, dev_labels = read_snli(dev_loc) + nlp = spacy.load('en', create_pipeline=create_similarity_pipeline) - n = 0 - correct = 0 - for (text1, text2), label in zip(dev_texts, dev_labels): + total = 0. + correct = 0. + for text1, text2, label in zip(dev_texts1, dev_texts2, dev_labels): doc1 = nlp(text1) doc2 = nlp(text2) sim = doc1.similarity(doc2) - if bool(sim >= 0.5) == label: + if sim.argmax() == label.argmax(): correct += 1 - n += 1 + total += 1 return correct, total -def demo(model_dir): - nlp = spacy.load('en', path=model_dir, - tagger=False, parser=False, entity=False, matcher=False, +def demo(): + nlp = spacy.load('en', create_pipeline=create_similarity_pipeline) - doc1 = nlp(u'Worst fries ever! Greasy and horrible...') - doc2 = nlp(u'The milkshakes are good. The fries are bad.') - print('doc1.similarity(doc2)', doc1.similarity(doc2)) - sent1a, sent1b = doc1.sents - print('sent1a.similarity(sent1b)', sent1a.similarity(sent1b)) - print('sent1a.similarity(doc2)', sent1a.similarity(doc2)) - print('sent1b.similarity(doc2)', sent1b.similarity(doc2)) + doc1 = nlp(u'What were the best crime fiction books in 2016?') + doc2 = nlp( + u'What should I read that was published last year? I like crime stories.') + print(doc1) + print(doc2) + print("Similarity", doc1.similarity(doc2)) LABELS = {'entailment': 0, 'contradiction': 1, 'neutral': 2} @@ -86,7 +98,6 @@ def read_snli(path): @plac.annotations( mode=("Mode to execute", "positional", None, str, ["train", "evaluate", "demo"]), - model_dir=("Path to spaCy model directory", "positional", None, Path), train_loc=("Path to training data", "positional", None, Path), dev_loc=("Path to development data", "positional", None, Path), max_length=("Length to truncate sentences", "option", "L", int), @@ -98,7 +109,7 @@ def read_snli(path): tree_truncate=("Truncate sentences by tree distance", "flag", "T", bool), gru_encode=("Encode sentences with bidirectional GRU", "flag", "E", bool), ) -def main(mode, model_dir, train_loc, dev_loc, +def main(mode, train_loc, dev_loc, tree_truncate=False, gru_encode=False, max_length=100, @@ -117,11 +128,12 @@ def main(mode, model_dir, train_loc, dev_loc, 'gru_encode': gru_encode } if mode == 'train': - train(model_dir, train_loc, dev_loc, shape, settings) + train(train_loc, dev_loc, shape, settings) elif mode == 'evaluate': - evaluate(model_dir, dev_loc) + correct, total = evaluate(dev_loc) + print(correct, '/', total, correct / total) else: - demo(model_dir) + demo() if __name__ == '__main__': plac.call(main) diff --git a/examples/keras_parikh_entailment/keras_decomposable_attention.py b/examples/keras_parikh_entailment/keras_decomposable_attention.py index eb573f089..c8aaffd25 100644 --- a/examples/keras_parikh_entailment/keras_decomposable_attention.py +++ b/examples/keras_parikh_entailment/keras_decomposable_attention.py @@ -12,6 +12,8 @@ from keras.models import Sequential, Model, model_from_json from keras.regularizers import l2 from keras.optimizers import Adam from keras.layers.normalization import BatchNormalization +from keras.layers.pooling import GlobalAveragePooling1D, GlobalMaxPooling1D +from keras.layers import Merge def build_model(vectors, shape, settings): @@ -29,11 +31,11 @@ def build_model(vectors, shape, settings): align = _SoftAlignment(max_length, nr_hidden) compare = _Comparison(max_length, nr_hidden, dropout=settings['dropout']) entail = _Entailment(nr_hidden, nr_class, dropout=settings['dropout']) - + # Declare the model as a computational graph. sent1 = embed(ids1) # Shape: (i, n) sent2 = embed(ids2) # Shape: (j, n) - + if settings['gru_encode']: sent1 = encode(sent1) sent2 = encode(sent2) @@ -42,12 +44,12 @@ def build_model(vectors, shape, settings): align1 = align(sent2, attention) align2 = align(sent1, attention, transpose=True) - + feats1 = compare(sent1, align1) feats2 = compare(sent2, align2) - + scores = entail(feats1, feats2) - + # Now that we have the input/output, we can construct the Model object... model = Model(input=[ids1, ids2], output=[scores]) @@ -93,7 +95,7 @@ class _StaticEmbedding(object): def get_output_shape(shapes): print(shapes) return shapes[0] - mod_sent = self.mod_ids(sentence) + mod_sent = self.mod_ids(sentence) tuning = self.tune(mod_sent) #tuning = merge([tuning, mod_sent], # mode=lambda AB: AB[0] * (K.clip(K.cast(AB[1], 'float32'), 0, 1)), @@ -129,7 +131,7 @@ class _Attention(object): self.model.add(Dense(nr_hidden, name='attend2', init='he_normal', W_regularizer=l2(L2), activation='relu')) self.model = TimeDistributed(self.model) - + def __call__(self, sent1, sent2): def _outer(AB): att_ji = K.batch_dot(AB[1], K.permute_dimensions(AB[0], (0, 2, 1))) @@ -158,7 +160,7 @@ class _SoftAlignment(object): return K.batch_dot(sm_att, mat) return merge([attention, sentence], mode=_normalize_attention, output_shape=(self.max_length, self.nr_hidden)) # Shape: (i, n) - + class _Comparison(object): def __init__(self, words, nr_hidden, L2=0.0, dropout=0.0): @@ -176,10 +178,12 @@ class _Comparison(object): def __call__(self, sent, align, **kwargs): result = self.model(merge([sent, align], mode='concat')) # Shape: (i, n) - result = _GlobalSumPooling1D()(result, mask=self.words) - result = BatchNormalization()(result) + avged = GlobalAveragePooling1D()(result, mask=self.words) + maxed = GlobalMaxPooling1D()(result, mask=self.words) + merged = merge([avged, maxed]) + result = BatchNormalization()(merged) return result - + class _Entailment(object): def __init__(self, nr_hidden, nr_out, dropout=0.0, L2=0.0): @@ -251,7 +255,7 @@ def test_fit_model(): shape = (10, 16, 3) settings = {'lr': 0.001, 'dropout': 0.2, 'gru_encode':True} model = build_model(vectors, shape, settings) - + train_X = _generate_X(20, shape[0], vectors.shape[1]) train_Y = _generate_Y(20, shape[2]) dev_X = _generate_X(15, shape[0], vectors.shape[1]) @@ -261,6 +265,4 @@ def test_fit_model(): batch_size=4) - - __all__ = [build_model] diff --git a/examples/keras_parikh_entailment/spacy_hook.py b/examples/keras_parikh_entailment/spacy_hook.py index c5c64f0fd..0177da001 100644 --- a/examples/keras_parikh_entailment/spacy_hook.py +++ b/examples/keras_parikh_entailment/spacy_hook.py @@ -1,33 +1,40 @@ from keras.models import model_from_json import numpy import numpy.random +import json +from spacy.tokens.span import Span + +try: + import cPickle as pickle +except ImportError: + import pickle class KerasSimilarityShim(object): @classmethod - def load(cls, path, nlp, get_features=None): + def load(cls, path, nlp, get_features=None, max_length=100): if get_features is None: - get_features = doc2ids + get_features = get_word_ids with (path / 'config.json').open() as file_: - config = json.load(file_) - model = model_from_json(config['model']) + model = model_from_json(file_.read()) with (path / 'model').open('rb') as file_: weights = pickle.load(file_) embeddings = get_embeddings(nlp.vocab) model.set_weights([embeddings] + weights) - return cls(model, get_features=get_features) + return cls(model, get_features=get_features, max_length=max_length) - def __init__(self, model, get_features=None): + def __init__(self, model, get_features=None, max_length=100): self.model = model self.get_features = get_features + self.max_length = max_length def __call__(self, doc): doc.user_hooks['similarity'] = self.predict doc.user_span_hooks['similarity'] = self.predict - + def predict(self, doc1, doc2): - x1 = self.get_features(doc1) - x2 = self.get_features(doc2) + x1 = self.get_features([doc1], max_length=self.max_length, tree_truncate=True) + x2 = self.get_features([doc2], max_length=self.max_length, tree_truncate=True) scores = self.model.predict([x1, x2]) return scores[0] @@ -45,7 +52,10 @@ def get_word_ids(docs, rnn_encode=False, tree_truncate=False, max_length=100, nr Xs = numpy.zeros((len(docs), max_length), dtype='int32') for i, doc in enumerate(docs): if tree_truncate: - queue = [sent.root for sent in doc.sents] + if isinstance(doc, Span): + queue = [doc.root] + else: + queue = [sent.root for sent in doc.sents] else: queue = list(doc) words = [] @@ -71,7 +81,9 @@ def get_word_ids(docs, rnn_encode=False, tree_truncate=False, max_length=100, nr def create_similarity_pipeline(nlp): - return [SimilarityModel.load( - nlp.path / 'similarity', - nlp, - feature_extracter=get_features)] + return [ + nlp.tagger, + nlp.entity, + nlp.parser, + KerasSimilarityShim.load(nlp.path / 'similarity', nlp, max_length=10) + ] diff --git a/examples/paddle/sentiment_bilstm/config.py b/examples/paddle/sentiment_bilstm/config.py deleted file mode 100644 index 311359f2c..000000000 --- a/examples/paddle/sentiment_bilstm/config.py +++ /dev/null @@ -1,14 +0,0 @@ -from paddle.trainer_config_helpers import * - -define_py_data_sources2(train_list='train.list', - test_list='test.list', - module="dataprovider", - obj="process") - -settings( - batch_size=128, - learning_rate=2e-3, - learning_method=AdamOptimizer(), - regularization=L2Regularization(8e-4), - gradient_clipping_threshold=25 -) diff --git a/examples/paddle/sentiment_bilstm/dataprovider.py b/examples/paddle/sentiment_bilstm/dataprovider.py deleted file mode 100644 index d4fb57756..000000000 --- a/examples/paddle/sentiment_bilstm/dataprovider.py +++ /dev/null @@ -1,46 +0,0 @@ -from paddle.trainer.PyDataProvider2 import * -from itertools import izip -import spacy - - -def get_features(doc): - return numpy.asarray( - [t.rank+1 for t in doc - if t.has_vector and not t.is_punct and not t.is_space], - dtype='int32') - - -def read_data(data_dir): - for subdir, label in (('pos', 1), ('neg', 0)): - for filename in (data_dir / subdir).iterdir(): - with filename.open() as file_: - text = file_.read() - yield text, label - - -def on_init(settings, **kwargs): - print("Loading spaCy") - nlp = spacy.load('en', entity=False) - vectors = get_vectors(nlp) - settings.input_types = [ - # The text is a sequence of integer values, and each value is a word id. - # The whole sequence is the sentences that we want to predict its - # sentimental. - integer_value(vectors.shape[0], seq_type=SequenceType), # text input - - # label positive/negative - integer_value(2) - ] - settings.nlp = nlp - settings.vectors = vectors - settings['batch_size'] = 32 - - -@provider(init_hook=on_init) -def process(settings, data_dir): # settings is not used currently. - texts, labels = read_data(data_dir) - for doc, label in izip(nlp.pipe(texts, batch_size=5000, n_threads=3), labels): - for sent in doc.sents: - ids = get_features(sent) - # give data to paddle. - yield ids, label diff --git a/examples/paddle/sentiment_bilstm/networks.py b/examples/paddle/sentiment_bilstm/networks.py deleted file mode 100644 index 84e9732c0..000000000 --- a/examples/paddle/sentiment_bilstm/networks.py +++ /dev/null @@ -1,19 +0,0 @@ -from paddle.trainer_config_helpers import * - - -def bidirectional_lstm_net(input_dim, - class_dim=2, - emb_dim=128, - lstm_dim=128, - is_predict=False): - data = data_layer("word", input_dim) - emb = embedding_layer(input=data, size=emb_dim) - bi_lstm = bidirectional_lstm(input=emb, size=lstm_dim) - dropout = dropout_layer(input=bi_lstm, dropout_rate=0.5) - output = fc_layer(input=dropout, size=class_dim, act=SoftmaxActivation()) - - if not is_predict: - lbl = data_layer("label", 1) - outputs(classification_cost(input=output, label=lbl)) - else: - outputs(output) diff --git a/examples/paddle/sentiment_bilstm/train.sh b/examples/paddle/sentiment_bilstm/train.sh deleted file mode 100755 index ffc6dd4bd..000000000 --- a/examples/paddle/sentiment_bilstm/train.sh +++ /dev/null @@ -1,14 +0,0 @@ -config=config.py -output=./model_output -paddle train --config=$config \ - --save_dir=$output \ - --job=train \ - --use_gpu=false \ - --trainer_count=4 \ - --num_passes=10 \ - --log_period=20 \ - --dot_period=20 \ - --show_parameter_stats_period=100 \ - --test_all_data_in_one_period=1 \ - --config_args=batch_size=100 \ - 2>&1 | tee 'train.log'_ diff --git a/examples/sentiment/main.py b/examples/sentiment/main.py deleted file mode 100644 index 7833a9ac3..000000000 --- a/examples/sentiment/main.py +++ /dev/null @@ -1,86 +0,0 @@ -from __future__ import unicode_literals -from __future__ import print_function - -import plac -from pathlib import Path -import random - -import spacy.en -import model - - -try: - import cPickle as pickle -except ImportError: - import pickle - - -def read_data(nlp, data_dir): - for subdir, label in (('pos', 1), ('neg', 0)): - for filename in (data_dir / subdir).iterdir(): - text = filename.open().read() - doc = nlp(text) - yield doc, label - - -def partition(examples, split_size): - examples = list(examples) - random.shuffle(examples) - n_docs = len(examples) - split = int(n_docs * split_size) - return examples[:split], examples[split:] - - -class Dataset(object): - def __init__(self, nlp, data_dir, batch_size=24): - self.batch_size = batch_size - self.train, self.dev = partition(read_data(nlp, Path(data_dir)), 0.8) - print("Read %d train docs" % len(self.train)) - print("Pos. Train: ", sum(eg[1] == 1 for eg in self.train)) - print("Read %d dev docs" % len(self.dev)) - print("Neg. Dev: ", sum(eg[1] == 1 for eg in self.dev)) - - def batches(self, data): - for i in range(0, len(data), self.batch_size): - yield data[i : i + self.batch_size] - - -def model_writer(out_dir, name): - def save_model(epoch, params): - out_path = out_dir / name.format(epoch=epoch) - pickle.dump(params, out_path.open('wb')) - return save_model - - -@plac.annotations( - data_dir=("Data directory", "positional", None, Path), - vocab_size=("Number of words to fine-tune", "option", "w", int), - n_iter=("Number of iterations (epochs)", "option", "i", int), - vector_len=("Size of embedding vectors", "option", "e", int), - hidden_len=("Size of hidden layers", "option", "H", int), - depth=("Depth", "option", "d", int), - drop_rate=("Drop-out rate", "option", "r", float), - rho=("Regularization penalty", "option", "p", float), - batch_size=("Batch size", "option", "b", int), - out_dir=("Model directory", "positional", None, Path) -) -def main(data_dir, out_dir, n_iter=10, vector_len=300, vocab_size=20000, - hidden_len=300, depth=3, drop_rate=0.3, rho=1e-4, batch_size=24): - print("Loading") - nlp = spacy.en.English(parser=False) - dataset = Dataset(nlp, data_dir / 'train', batch_size) - print("Training") - network = model.train(dataset, vector_len, hidden_len, 2, vocab_size, depth, - drop_rate, rho, n_iter, - model_writer(out_dir, 'model_{epoch}.pickle')) - score = model.Scorer() - print("Evaluating") - for doc, label in read_data(nlp, data_dir / 'test'): - word_ids, embeddings = model.get_words(doc, 0.0, vocab_size) - guess = network.forward(word_ids, embeddings) - score += guess == label - print(score) - - -if __name__ == '__main__': - plac.call(main) diff --git a/examples/sentiment/model.py b/examples/sentiment/model.py deleted file mode 100644 index 961f511cd..000000000 --- a/examples/sentiment/model.py +++ /dev/null @@ -1,188 +0,0 @@ -from __future__ import division -from numpy import average, zeros, outer, random, exp, sqrt, concatenate, argmax -import numpy - -from .util import Scorer - - -class Adagrad(object): - def __init__(self, dim, lr): - self.dim = dim - self.eps = 1e-3 - # initial learning rate - self.learning_rate = lr - # stores sum of squared gradients - self.h = zeros(self.dim) - self._curr_rate = zeros(self.h.shape) - - def rescale(self, gradient): - self._curr_rate.fill(0) - self.h += gradient ** 2 - self._curr_rate = self.learning_rate / (sqrt(self.h) + self.eps) - return self._curr_rate * gradient - - def reset_weights(self): - self.h = zeros(self.dim) - - -class Params(object): - @classmethod - def zero(cls, depth, n_embed, n_hidden, n_labels, n_vocab): - return cls(depth, n_embed, n_hidden, n_labels, n_vocab, lambda x: zeros((x,))) - - @classmethod - def random(cls, depth, nE, nH, nL, nV): - return cls(depth, nE, nH, nL, nV, lambda x: (random.rand(x) * 2 - 1) * 0.08) - - def __init__(self, depth, n_embed, n_hidden, n_labels, n_vocab, initializer): - nE = n_embed; nH = n_hidden; nL = n_labels; nV = n_vocab - n_weights = sum([ - (nE * nH) + nH, - (nH * nH + nH) * depth, - (nH * nL) + nL, - (nV * nE) - ]) - self.data = initializer(n_weights) - self.W = [] - self.b = [] - i = self._add_layer(0, nE, nH) - for _ in range(1, depth): - i = self._add_layer(i, nH, nH) - i = self._add_layer(i, nL, nH) - self.E = self.data[i : i + (nV * nE)].reshape((nV, nE)) - self.E.fill(0) - - def _add_layer(self, start, x, y): - end = start + (x * y) - self.W.append(self.data[start : end].reshape((x, y))) - self.b.append(self.data[end : end + x].reshape((x, ))) - return end + x - - -def softmax(actvn, W, b): - w = W.dot(actvn) + b - ew = exp(w - max(w)) - return (ew / sum(ew)).ravel() - - -def relu(actvn, W, b): - x = W.dot(actvn) + b - return x * (x > 0) - - -def d_relu(x): - return x > 0 - - -class Network(object): - def __init__(self, depth, n_embed, n_hidden, n_labels, n_vocab, rho=1e-4, lr=0.005): - self.depth = depth - self.n_embed = n_embed - self.n_hidden = n_hidden - self.n_labels = n_labels - self.n_vocab = n_vocab - - self.params = Params.random(depth, n_embed, n_hidden, n_labels, n_vocab) - self.gradient = Params.zero(depth, n_embed, n_hidden, n_labels, n_vocab) - self.adagrad = Adagrad(self.params.data.shape, lr) - self.seen_words = {} - - self.pred = zeros(self.n_labels) - self.actvn = zeros((self.depth, self.n_hidden)) - self.input_vector = zeros((self.n_embed, )) - - def forward(self, word_ids, embeddings): - self.input_vector.fill(0) - self.input_vector += sum(embeddings) - # Apply the fine-tuning we've learned - for id_ in word_ids: - if id_ < self.n_vocab: - self.input_vector += self.params.E[id_] - # Average - self.input_vector /= len(embeddings) - prev = self.input_vector - for i in range(self.depth): - self.actvn[i] = relu(prev, self.params.W[i], self.params.b[i]) - return x * (x > 0) - - - prev = self.actvn[i] - self.pred = softmax(self.actvn[-1], self.params.W[-1], self.params.b[-1]) - return argmax(self.pred) - - def backward(self, word_ids, label): - target = zeros(self.n_labels) - target[label] = 1.0 - D = self.pred - target - - for i in range(self.depth, 0, -1): - self.gradient.b[i] += D - self.gradient.W[i] += outer(D, self.actvn[i-1]) - D = d_relu(self.actvn[i-1]) * self.params.W[i].T.dot(D) - - self.gradient.b[0] += D - self.gradient.W[0] += outer(D, self.input_vector) - - grad = self.params.W[0].T.dot(D).reshape((self.n_embed,)) / len(word_ids) - for word_id in word_ids: - if word_id < self.n_vocab: - self.gradient.E[word_id] += grad - self.seen_words[word_id] = self.seen_words.get(word_id, 0) + 1 - - def update(self, rho, n): - # L2 Regularization - for i in range(self.depth): - self.gradient.W[i] += self.params.W[i] * rho - self.gradient.b[i] += self.params.b[i] * rho - # Do word embedding tuning - for word_id, freq in self.seen_words.items(): - self.gradient.E[word_id] += (self.params.E[word_id] * freq) * rho - - update = self.gradient.data / n - update = self.adagrad.rescale(update) - self.params.data -= update - self.gradient.data.fill(0) - self.seen_words = {} - - -def get_words(doc, dropout_rate, n_vocab): - mask = random.rand(len(doc)) > dropout_rate - word_ids = [] - embeddings = [] - for word in doc: - if mask[word.i] and not word.is_punct: - embeddings.append(word.vector) - word_ids.append(word.orth) - # all examples must have at least one word - if not embeddings: - return [w.orth for w in doc], [w.vector for w in doc] - else: - return word_ids, embeddings - - -def train(dataset, n_embed, n_hidden, n_labels, n_vocab, depth, dropout_rate, rho, - n_iter, save_model): - model = Network(depth, n_embed, n_hidden, n_labels, n_vocab) - best_acc = 0 - for epoch in range(n_iter): - train_score = Scorer() - # create mini-batches - for batch in dataset.batches(dataset.train): - for doc, label in batch: - if len(doc) == 0: - continue - word_ids, embeddings = get_words(doc, dropout_rate, n_vocab) - guess = model.forward(word_ids, embeddings) - model.backward(word_ids, label) - train_score += guess == label - model.update(rho, len(batch)) - test_score = Scorer() - for doc, label in dataset.dev: - word_ids, embeddings = get_words(doc, 0.0, n_vocab) - guess = model.forward(word_ids, embeddings) - test_score += guess == label - if test_score.true >= best_acc: - best_acc = test_score.true - save_model(epoch, model.params.data) - print "%d\t%s\t%s" % (epoch, train_score, test_score) - return model diff --git a/examples/sentiment/util.py b/examples/sentiment/util.py deleted file mode 100644 index 6e3f71723..000000000 --- a/examples/sentiment/util.py +++ /dev/null @@ -1,14 +0,0 @@ -class Scorer(object): - def __init__(self): - self.true = 0 - self.total = 0 - - def __iadd__(self, is_correct): - self.true += is_correct - self.total += 1 - return self - - def __str__(self): - return '%.3f' % (self.true / self.total) - - diff --git a/examples/spacy_dynet_lstm.py b/examples/spacy_dynet_lstm.py deleted file mode 100644 index 4ddc7d2a7..000000000 --- a/examples/spacy_dynet_lstm.py +++ /dev/null @@ -1,246 +0,0 @@ -from __future__ import print_function -from __future__ import unicode_literals -from __future__ import division - -import pathlib -import plac -import random -from collections import Counter -import numpy as np -import os - -from collections import defaultdict -from itertools import count - -if os.environ.get('DYNET_GPU') == '1': - import _gdynet as dynet - from _gdynet import cg -else: - import dynet - from dynet import cg - - -class Vocab: - def __init__(self, w2i=None): - if w2i is None: w2i = defaultdict(count(0).next) - self.w2i = dict(w2i) - self.i2w = {i:w for w,i in w2i.iteritems()} - @classmethod - def from_corpus(cls, corpus): - w2i = defaultdict(count(0).next) - for sent in corpus: - [w2i[word] for word in sent] - return Vocab(w2i) - - def size(self): - return len(self.w2i.keys()) - - -def read_data(path): - with path.open() as file_: - sent = [] - for line in file_: - line = line.strip().split() - if not line: - if sent: - yield sent - sent = [] - else: - pieces = line - w = pieces[1] - pos = pieces[3] - sent.append((w, pos)) - - -def get_vocab(train, test): - words = [] - tags = [] - wc = Counter() - for s in train: - for w, p in s: - words.append(w) - tags.append(p) - wc[w] += 1 - words.append("_UNK_") - #words=[w if wc[w] > 1 else "_UNK_" for w in words] - tags.append("_START_") - - for s in test: - for w, p in s: - words.append(w) - vw = Vocab.from_corpus([words]) - vt = Vocab.from_corpus([tags]) - return words, tags, wc, vw, vt - - -class BiTagger(object): - def __init__(self, vw, vt, nwords, ntags): - self.vw = vw - self.vt = vt - self.nwords = nwords - self.ntags = ntags - - self.UNK = self.vw.w2i["_UNK_"] - - self._model = dynet.Model() - self._sgd = dynet.SimpleSGDTrainer(self._model) - - self._E = self._model.add_lookup_parameters((self.nwords, 128)) - self._p_t1 = self._model.add_lookup_parameters((self.ntags, 30)) - - self._pH = self._model.add_parameters((32, 50*2)) - self._pO = self._model.add_parameters((self.ntags, 32)) - - self._fwd_lstm = dynet.LSTMBuilder(1, 128, 50, self._model) - self._bwd_lstm = dynet.LSTMBuilder(1, 128, 50, self._model) - self._words_batch = [] - self._tags_batch = [] - self._minibatch_size = 32 - - def __call__(self, words): - dynet.renew_cg() - word_ids = [self.vw.w2i.get(w, self.UNK) for w in words] - wembs = [self._E[w] for w in word_ids] - - f_state = self._fwd_lstm.initial_state() - b_state = self._bwd_lstm.initial_state() - - fw = [x.output() for x in f_state.add_inputs(wembs)] - bw = [x.output() for x in b_state.add_inputs(reversed(wembs))] - - H = dynet.parameter(self._pH) - O = dynet.parameter(self._pO) - - tags = [] - for i, (f, b) in enumerate(zip(fw, reversed(bw))): - r_t = O * (dynet.tanh(H * dynet.concatenate([f, b]))) - out = dynet.softmax(r_t) - tags.append(self.vt.i2w[np.argmax(out.npvalue())]) - return tags - - def predict_batch(self, words_batch): - dynet.renew_cg() - length = max(len(words) for words in words_batch) - word_ids = np.zeros((length, len(words_batch)), dtype='int32') - for j, words in enumerate(words_batch): - for i, word in enumerate(words): - word_ids[i, j] = self.vw.w2i.get(word, self.UNK) - wembs = [dynet.lookup_batch(self._E, word_ids[i]) for i in range(length)] - - f_state = self._fwd_lstm.initial_state() - b_state = self._bwd_lstm.initial_state() - - fw = [x.output() for x in f_state.add_inputs(wembs)] - bw = [x.output() for x in b_state.add_inputs(reversed(wembs))] - - H = dynet.parameter(self._pH) - O = dynet.parameter(self._pO) - - tags_batch = [[] for _ in range(len(words_batch))] - for i, (f, b) in enumerate(zip(fw, reversed(bw))): - r_t = O * (dynet.tanh(H * dynet.concatenate([f, b]))) - out = dynet.softmax(r_t).npvalue() - for j in range(len(words_batch)): - tags_batch[j].append(self.vt.i2w[np.argmax(out.T[j])]) - return tags_batch - - def pipe(self, sentences): - batch = [] - for words in sentences: - batch.append(words) - if len(batch) == self._minibatch_size: - tags_batch = self.predict_batch(batch) - for words, tags in zip(batch, tags_batch): - yield tags - batch = [] - - def update(self, words, tags): - self._words_batch.append(words) - self._tags_batch.append(tags) - if len(self._words_batch) == self._minibatch_size: - loss = self.update_batch(self._words_batch, self._tags_batch) - self._words_batch = [] - self._tags_batch = [] - else: - loss = 0 - return loss - - def update_batch(self, words_batch, tags_batch): - dynet.renew_cg() - length = max(len(words) for words in words_batch) - word_ids = np.zeros((length, len(words_batch)), dtype='int32') - for j, words in enumerate(words_batch): - for i, word in enumerate(words): - word_ids[i, j] = self.vw.w2i.get(word, self.UNK) - tag_ids = np.zeros((length, len(words_batch)), dtype='int32') - for j, tags in enumerate(tags_batch): - for i, tag in enumerate(tags): - tag_ids[i, j] = self.vt.w2i.get(tag, self.UNK) - wembs = [dynet.lookup_batch(self._E, word_ids[i]) for i in range(length)] - wembs = [dynet.noise(we, 0.1) for we in wembs] - - f_state = self._fwd_lstm.initial_state() - b_state = self._bwd_lstm.initial_state() - - fw = [x.output() for x in f_state.add_inputs(wembs)] - bw = [x.output() for x in b_state.add_inputs(reversed(wembs))] - - H = dynet.parameter(self._pH) - O = dynet.parameter(self._pO) - - errs = [] - for i, (f, b) in enumerate(zip(fw, reversed(bw))): - f_b = dynet.concatenate([f,b]) - r_t = O * (dynet.tanh(H * f_b)) - err = dynet.pickneglogsoftmax_batch(r_t, tag_ids[i]) - errs.append(dynet.sum_batches(err)) - sum_errs = dynet.esum(errs) - squared = -sum_errs # * sum_errs - losses = sum_errs.scalar_value() - sum_errs.backward() - self._sgd.update() - return losses - - -def main(train_loc, dev_loc, model_dir): - train_loc = pathlib.Path(train_loc) - dev_loc = pathlib.Path(dev_loc) - - train = list(read_data((train_loc))) - test = list(read_data(dev_loc)) - - words, tags, wc, vw, vt = get_vocab(train, test) - - UNK = vw.w2i["_UNK_"] - nwords = vw.size() - ntags = vt.size() - - tagger = BiTagger(vw, vt, nwords, ntags) - - tagged = loss = 0 - - for ITER in xrange(1): - random.shuffle(train) - for i, s in enumerate(train,1): - if i % 5000 == 0: - tagger._sgd.status() - print(loss / tagged) - loss = 0 - tagged = 0 - if i % 10000 == 0: - good = bad = 0.0 - word_sents = [[w for w, t in sent] for sent in test] - gold_sents = [[t for w, t in sent] for sent in test] - for words, tags, golds in zip(words, tagger.pipe(words), gold_sents): - for go, gu in zip(golds, tags): - if go == gu: - good += 1 - else: - bad += 1 - print(good / (good+bad)) - loss += tagger.update([w for w, t in s], [t for w, t in s]) - tagged += len(s) - - -if __name__ == '__main__': - plac.call(main) diff --git a/examples/training/train_ner.py b/examples/training/train_ner.py index 220244b93..bcc087d07 100644 --- a/examples/training/train_ner.py +++ b/examples/training/train_ner.py @@ -8,6 +8,12 @@ from spacy.pipeline import EntityRecognizer from spacy.gold import GoldParse from spacy.tagger import Tagger + +try: + unicode +except: + unicode = str + def train_ner(nlp, train_data, entity_types): # Add new words to vocab. @@ -24,7 +30,6 @@ def train_ner(nlp, train_data, entity_types): doc = nlp.make_doc(raw_text) gold = GoldParse(doc, entities=entity_offsets) ner.update(doc, gold) - ner.model.end_training() return ner def save_model(ner, model_dir): @@ -33,8 +38,11 @@ def save_model(ner, model_dir): model_dir.mkdir() assert model_dir.is_dir() - with (model_dir / 'config.json').open('w') as file_: - json.dump(ner.cfg, file_) + with (model_dir / 'config.json').open('wb') as file_: + data = json.dumps(ner.cfg) + if isinstance(data, unicode): + data = data.encode('utf8') + file_.write(data) ner.model.dump(str(model_dir / 'model')) if not (model_dir / 'vocab').exists(): (model_dir / 'vocab').mkdir() diff --git a/fabfile.py b/fabfile.py index 80a21146c..588d42e9d 100644 --- a/fabfile.py +++ b/fabfile.py @@ -1,22 +1,20 @@ -from __future__ import print_function +# coding: utf-8 +from __future__ import unicode_literals, print_function from fabric.api import local, lcd, env, settings, prefix -from os.path import exists as file_exists from fabtools.python import virtualenv -from os import path -import os -import shutil -from pathlib import Path +from os import path, environ PWD = path.dirname(__file__) -VENV_DIR = path.join(PWD, '.env') +ENV = environ['VENV_DIR'] if 'VENV_DIR' in environ else '.env' +VENV_DIR = path.join(PWD, ENV) -def env(lang="python2.7"): - if file_exists('.env'): - local('rm -rf .env') - local('virtualenv -p %s .env' % lang) +def env(lang='python2.7'): + if path.exists(VENV_DIR): + local('rm -rf {env}'.format(env=VENV_DIR)) + local('virtualenv -p {lang} {env}'.format(lang=lang, env=VENV_DIR)) def install(): diff --git a/requirements.txt b/requirements.txt index 9ce19a4e0..a1721b02c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,11 +2,11 @@ cython<0.24 pathlib numpy>=1.7 cymem>=1.30,<1.32 -preshed>=0.46.4,<0.47.0 -thinc>=5.0.0,<5.1.0 +preshed>=1.0.0,<2.0.0 +thinc>=6.5.0,<6.6.0 murmurhash>=0.26,<0.27 plac<0.9.3 six -ujson -cloudpickle -sputnik>=0.9.2,<0.10.0 +ujson>=1.35 +dill>=0.2,<0.3 +requests>=2.13.0,<3.0.0 diff --git a/setup.py b/setup.py index 4ba997a0c..b774994f6 100644 --- a/setup.py +++ b/setup.py @@ -31,21 +31,21 @@ PACKAGES = [ 'spacy.pt', 'spacy.nl', 'spacy.sv', + 'spacy.fi', + 'spacy.bn', 'spacy.language_data', 'spacy.serialize', 'spacy.syntax', 'spacy.munge', 'spacy.tests', 'spacy.tests.matcher', - 'spacy.tests.morphology', - 'spacy.tests.munge', 'spacy.tests.parser', - 'spacy.tests.print', 'spacy.tests.serialize', 'spacy.tests.spans', + 'spacy.tests.stringstore', 'spacy.tests.tagger', 'spacy.tests.tokenizer', - 'spacy.tests.tokens', + 'spacy.tests.doc', 'spacy.tests.vectors', 'spacy.tests.vocab'] @@ -63,6 +63,7 @@ MOD_NAMES = [ 'spacy.syntax._state', 'spacy.tokenizer', 'spacy.syntax.parser', + 'spacy.syntax.beam_parser', 'spacy.syntax.nonproj', 'spacy.syntax.transition_system', 'spacy.syntax.arc_eager', @@ -145,7 +146,7 @@ def generate_cython(root, source): print('Cythonizing sources') p = subprocess.call([sys.executable, os.path.join(root, 'bin', 'cythonize.py'), - source]) + source], env=os.environ) if p != 0: raise RuntimeError('Running cythonize failed') @@ -234,14 +235,14 @@ def setup_package(): 'numpy>=1.7', 'murmurhash>=0.26,<0.27', 'cymem>=1.30,<1.32', - 'preshed>=0.46.0,<0.47.0', - 'thinc>=5.0.0,<5.1.0', - 'plac', + 'preshed>=1.0.0,<2.0.0', + 'thinc>=6.5.0,<6.6.0', + 'plac<0.9.3', 'six', - 'cloudpickle', 'pathlib', - 'sputnik>=0.9.2,<0.10.0', - 'ujson>=1.35'], + 'ujson>=1.35', + 'dill>=0.2,<0.3', + 'requests>=2.13.0,<3.0.0'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', diff --git a/spacy/__init__.py b/spacy/__init__.py index 21e0f7db4..0b76f1f9e 100644 --- a/spacy/__init__.py +++ b/spacy/__init__.py @@ -1,7 +1,9 @@ -import pathlib +# coding: utf8 +from __future__ import unicode_literals, print_function -from .util import set_lang_class, get_lang_class -from .about import __version__ +import json +from pathlib import Path +from .util import set_lang_class, get_lang_class, parse_package_meta from . import en from . import de @@ -13,12 +15,8 @@ from . import fr from . import pt from . import nl from . import sv - - -try: - basestring -except NameError: - basestring = str +from . import fi +from . import bn set_lang_class(en.English.lang, en.English) @@ -31,12 +29,22 @@ set_lang_class(hu.Hungarian.lang, hu.Hungarian) set_lang_class(zh.Chinese.lang, zh.Chinese) set_lang_class(nl.Dutch.lang, nl.Dutch) set_lang_class(sv.Swedish.lang, sv.Swedish) +set_lang_class(fi.Finnish.lang, fi.Finnish) +set_lang_class(bn.Bengali.lang, bn.Bengali) def load(name, **overrides): - target_name, target_version = util.split_data_name(name) data_path = overrides.get('path', util.get_data_path()) - path = util.match_best_version(target_name, target_version, data_path) - cls = get_lang_class(target_name) - overrides['path'] = path + meta = parse_package_meta(data_path, name, require=False) + lang = meta['lang'] if meta and 'lang' in meta else name + cls = get_lang_class(lang) + overrides['meta'] = meta + model_path = Path(data_path) / name + if model_path.exists(): + overrides['path'] = model_path return cls(**overrides) + + +def info(name): + meta = parse_package_meta(util.get_data_path(), name, require=True) + print(json.dumps(meta, indent=2)) diff --git a/spacy/about.py b/spacy/about.py index 4aafa4ef1..b2ceacf54 100644 --- a/spacy/about.py +++ b/spacy/about.py @@ -1,16 +1,16 @@ # inspired from: - # https://python-packaging-user-guide.readthedocs.org/en/latest/single_source_version/ # https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py __title__ = 'spacy' -__version__ = '1.5.0' -__summary__ = 'Industrial-strength NLP' +__version__ = '1.7.0' +__summary__ = 'Industrial-strength Natural Language Processing (NLP) with Python and Cython' __uri__ = 'https://spacy.io' __author__ = 'Matthew Honnibal' -__email__ = 'matt@spacy.io' +__email__ = 'matt@explosion.ai' __license__ = 'MIT' -__models__ = { - 'en': 'en>=1.1.0,<1.2.0', - 'de': 'de>=1.0.0,<1.1.0', -} + +__docs__ = 'https://spacy.io/docs/usage' +__download_url__ = 'https://github.com/explosion/spacy-models/releases/download' +__compatibility__ = 'https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json?token=ANAt54fi5zcUtnwGhMLw2klWwcAyHkZGks5Y0nw1wA%3D%3D' +__shortcuts__ = {'en': 'en_core_web_sm', 'de': 'de_core_web_md', 'vectors': 'en_vectors_glove_md'} diff --git a/spacy/attrs.pyx b/spacy/attrs.pyx index 81554ecd3..f6b1d71ab 100644 --- a/spacy/attrs.pyx +++ b/spacy/attrs.pyx @@ -93,7 +93,7 @@ NAMES = [key for key, value in sorted(IDS.items(), key=lambda item: item[1])] def intify_attrs(stringy_attrs, strings_map=None, _do_deprecated=False): '''Normalize a dictionary of attributes, converting them to ints. - + Arguments: stringy_attrs (dict): Dictionary keyed by attribute string names. Values can be ints or strings. @@ -124,8 +124,13 @@ def intify_attrs(stringy_attrs, strings_map=None, _do_deprecated=False): 'PunctType', 'PunctSide', 'Other', 'Degree', 'AdvType', 'Number', 'VerbForm', 'PronType', 'Aspect', 'Tense', 'PartType', 'Poss', 'Hyph', 'ConjType', 'NumType', 'Foreign', 'VerbType', 'NounType', - 'Number', 'PronType', 'AdjType', 'Person', 'Variant', 'AdpType', - 'Reflex', 'Negative', 'Mood', 'Aspect', 'Case'] + 'Gender', 'Mood', 'Negative', 'Tense', 'Voice', 'Abbr', + 'Derivation', 'Echo', 'Foreign', 'NameType', 'NounType', 'NumForm', + 'NumValue', 'PartType', 'Polite', 'StyleVariant', + 'PronType', 'AdjType', 'Person', 'Variant', 'AdpType', + 'Reflex', 'Negative', 'Mood', 'Aspect', 'Case', + 'Polarity', # U20 + ] for key in morph_keys: if key in stringy_attrs: stringy_attrs.pop(key) diff --git a/spacy/bn/__init__.py b/spacy/bn/__init__.py new file mode 100644 index 000000000..d9fcb3dd2 --- /dev/null +++ b/spacy/bn/__init__.py @@ -0,0 +1,24 @@ +# coding: utf8 +from __future__ import unicode_literals, print_function + +from ..language import Language +from ..attrs import LANG + +from .language_data import * + + +class Bengali(Language): + lang = 'bn' + + class Defaults(Language.Defaults): + lex_attr_getters = dict(Language.Defaults.lex_attr_getters) + lex_attr_getters[LANG] = lambda text: 'bn' + + tokenizer_exceptions = TOKENIZER_EXCEPTIONS + tag_map = TAG_MAP + stop_words = STOP_WORDS + lemma_rules = LEMMA_RULES + + prefixes = tuple(TOKENIZER_PREFIXES) + suffixes = tuple(TOKENIZER_SUFFIXES) + infixes = tuple(TOKENIZER_INFIXES) diff --git a/spacy/bn/language_data.py b/spacy/bn/language_data.py new file mode 100644 index 000000000..516d6a75b --- /dev/null +++ b/spacy/bn/language_data.py @@ -0,0 +1,27 @@ +# coding: utf8 +from __future__ import unicode_literals + +from spacy.language_data import strings_to_exc, update_exc +from .punctuation import * +from .stop_words import STOP_WORDS +from .tag_map import TAG_MAP as TAG_MAP_BN +from .morph_rules import MORPH_RULES +from .lemma_rules import LEMMA_RULES +from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS as TOKENIZER_EXCEPTIONS_BN +from .. import language_data as base + +STOP_WORDS = set(STOP_WORDS) + +TAG_MAP = base.TAG_MAP +TAG_MAP.update(TAG_MAP_BN) + +TOKENIZER_EXCEPTIONS = strings_to_exc(base.EMOTICONS) +update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) +TOKENIZER_EXCEPTIONS.update(TOKENIZER_EXCEPTIONS_BN) + +TOKENIZER_PREFIXES = TOKENIZER_PREFIXES +TOKENIZER_SUFFIXES = TOKENIZER_SUFFIXES +TOKENIZER_INFIXES = TOKENIZER_INFIXES + +__all__ = ["TOKENIZER_EXCEPTIONS", "STOP_WORDS", "TAG_MAP", "MORPH_RULES", "LEMMA_RULES", + "TOKENIZER_PREFIXES", "TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] diff --git a/spacy/bn/lemma_rules.py b/spacy/bn/lemma_rules.py new file mode 100644 index 000000000..a09869f6f --- /dev/null +++ b/spacy/bn/lemma_rules.py @@ -0,0 +1,68 @@ +# coding: utf8 +from __future__ import unicode_literals + +# Source: উচ্চতর বাংলা ব্যাকরণ ও রচনা - অধ্যাপক নিরঞ্জন অধিকারী ও অধ্যাপক ড. সফিউদ্দিন আহমদ + +LEMMA_RULES = { + "noun": [ + ["টা", ""], + ["টি", ""], + ["খান", ""], + ["খানা", ""], + ["খানি", ""], + ["গাছা", ""], + ["গাছি", ""], + ["ছড়া", ""], + + ["কে", ""], + ["ে", ""], + ["তে", ""], + + ["র", ""], + ["রা", ""], + ["রে", ""], + ["ের", ""], # এর + ["েরা", ""], # এরা + ["দের", ""], + ["দেরকে", ""], + ["গুলা", ""], + ["গুলো", ""], + ["গুলি", ""], + + ["কুল", ""], + ["গণ", ""], + ["দল", ""], + ["পাল", ""], + ["পুঞ্জ", ""], + ["মণ্ডলী", ""], + ["মালা", ""], + ["রাজি", ""], + ["বৃন্দ", ""], + ["বর্গ", ""], + ["শ্রেণী", ""], + ["শ্রেনি", ""], + ["রাশি", ""], + ["সকল", ""], + ["মহল", ""], + ["াবলি", ""], # আবলি + + # Bengali digit representations + ["০", "0"], + ["১", "1"], + ["২", "2"], + ["৩", "3"], + ["৪", "4"], + ["৫", "5"], + ["৬", "6"], + ["৭", "7"], + ["৮", "8"], + ["৯", "9"], + ], + + "punct": [ + ["“", "\""], + ["”", "\""], + ["\u2018", "'"], + ["\u2019", "'"] + ] +} diff --git a/spacy/bn/morph_rules.py b/spacy/bn/morph_rules.py new file mode 100644 index 000000000..efa5a6185 --- /dev/null +++ b/spacy/bn/morph_rules.py @@ -0,0 +1,55 @@ +# coding: utf8 +from __future__ import unicode_literals + +from ..language_data import PRON_LEMMA +from ..symbols import * + +MORPH_RULES = { + "PRP": { + 'ঐ': {LEMMA: PRON_LEMMA, 'PronType': 'Dem'}, + 'আমাকে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'One', 'PronType': 'Prs', 'Case': 'Acc'}, + 'কি': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Gender': 'Neut', 'PronType': 'Int', 'Case': 'Acc'}, + 'সে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Three', 'PronType': 'Prs', 'Case': 'Nom'}, + 'কিসে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Gender': 'Neut', 'PronType': 'Int', 'Case': 'Acc'}, + 'কাদের': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'PronType': 'Int', 'Case': 'Acc'}, + 'তাকে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Three', 'PronType': 'Prs', 'Case': 'Acc'}, + 'স্বয়ং': {LEMMA: PRON_LEMMA, 'Reflex': 'Yes', 'PronType': 'Ref'}, + 'কোনগুলো': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Gender': 'Neut', 'PronType': 'Int', 'Case': 'Acc'}, + 'তুমি': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Two', 'PronType': 'Prs', 'Case': 'Nom'}, + 'তাদেরকে': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Three', 'PronType': 'Prs', 'Case': 'Acc'}, + 'আমরা': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'One ', 'PronType': 'Prs', 'Case': 'Nom'}, + 'যিনি': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'PronType': 'Rel', 'Case': 'Nom'}, + 'আমাদেরকে': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'One', 'PronType': 'Prs', 'Case': 'Acc'}, + 'কোন': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'PronType': 'Int', 'Case': 'Acc'}, + 'কারা': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'PronType': 'Int', 'Case': 'Acc'}, + 'তোমাকে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Two', 'PronType': 'Prs', 'Case': 'Acc'}, + 'খোদ': {LEMMA: PRON_LEMMA, 'Reflex': 'Yes', 'PronType': 'Ref'}, + 'কে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'PronType': 'Int', 'Case': 'Acc'}, + 'যারা': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'PronType': 'Rel', 'Case': 'Nom'}, + 'যে': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'PronType': 'Rel', 'Case': 'Nom'}, + 'তোমরা': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Two', 'PronType': 'Prs', 'Case': 'Nom'}, + 'তোমাদেরকে': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Two', 'PronType': 'Prs', 'Case': 'Acc'}, + 'আপন': {LEMMA: PRON_LEMMA, 'Reflex': 'Yes', 'PronType': 'Ref'}, + 'এ': {LEMMA: PRON_LEMMA, 'PronType': 'Dem'}, + 'নিজ': {LEMMA: PRON_LEMMA, 'Reflex': 'Yes', 'PronType': 'Ref'}, + 'কার': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'PronType': 'Int', 'Case': 'Acc'}, + 'যা': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Gender': 'Neut', 'PronType': 'Rel', 'Case': 'Nom'}, + 'তারা': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Three', 'PronType': 'Prs', 'Case': 'Nom'}, + 'আমি': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'One', 'PronType': 'Prs', 'Case': 'Nom'} + }, + "PRP$": { + + 'আমার': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'One', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + 'তার': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Three', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + 'তোমাদের': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Two', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + 'আমাদের': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'One', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + 'তোমার': {LEMMA: PRON_LEMMA, 'Number': 'Sing', 'Person': 'Two', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + 'তাদের': {LEMMA: PRON_LEMMA, 'Number': 'Plur', 'Person': 'Three', 'PronType': 'Prs', 'Poss': 'Yes', + 'Case': 'Nom'}, + }, +} diff --git a/spacy/bn/punctuation.py b/spacy/bn/punctuation.py new file mode 100644 index 000000000..3dd3e3a62 --- /dev/null +++ b/spacy/bn/punctuation.py @@ -0,0 +1,45 @@ +# coding: utf8 +from __future__ import unicode_literals + +from ..language_data.punctuation import ALPHA_LOWER, LIST_ELLIPSES, QUOTES, ALPHA_UPPER, LIST_QUOTES, UNITS, \ + CURRENCY, LIST_PUNCT, ALPHA, _QUOTES + +CURRENCY_SYMBOLS = r"\$ ¢ £ € ¥ ฿ ৳" + +_PUNCT = '। ॥' + +LIST_PUNCT.extend(_PUNCT.strip().split()) + +TOKENIZER_PREFIXES = ( + [r'\+'] + + LIST_PUNCT + + LIST_ELLIPSES + + LIST_QUOTES +) + +TOKENIZER_SUFFIXES = ( + LIST_PUNCT + + LIST_ELLIPSES + + LIST_QUOTES + + [ + r'(?<=[0-9])\+', + r'(?<=°[FfCcKk])\.', + r'(?<=[0-9])(?:{c})'.format(c=CURRENCY), + r'(?<=[0-9])(?:{u})'.format(u=UNITS), + r'(?<=[{al}{p}{c}(?:{q})])\.'.format(al=ALPHA_LOWER, p=r'%²\-\)\]\+', q=QUOTES, c=CURRENCY_SYMBOLS), + r'(?<=[{al})])-e'.format(al=ALPHA_LOWER) + ] +) + +TOKENIZER_INFIXES = ( + LIST_ELLIPSES + + [ + r'(?<=[{al}])\.(?=[{au}])'.format(al=ALPHA_LOWER, au=ALPHA_UPPER), + r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}"])[:<>=](?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}])--(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}])([{q}\)\]\(\[])(?=[\-{a}])'.format(a=ALPHA, q=_QUOTES.replace("'", "").strip().replace(" ", "")), + ] +) +__all__ = ["TOKENIZER_PREFIXES", "TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] diff --git a/spacy/bn/stop_words.py b/spacy/bn/stop_words.py new file mode 100644 index 000000000..5b513da7b --- /dev/null +++ b/spacy/bn/stop_words.py @@ -0,0 +1,44 @@ +# coding: utf8 +from __future__ import unicode_literals + + +STOP_WORDS = set(""" +অতএব অথচ অথবা অনুযায়ী অনেক অনেকে অনেকেই অন্তত অবধি অবশ্য অর্থাৎ অন্য অনুযায়ী অর্ধভাগে +আগামী আগে আগেই আছে আজ আদ্যভাগে আপনার আপনি আবার আমরা আমাকে আমাদের আমার আমি আর আরও +ইত্যাদি ইহা +উচিত উনি উপর উপরে উত্তর +এ এঁদের এঁরা এই এক একই একজন একটা একটি একবার একে এখন এখনও এখানে এখানেই এটা এসো +এটাই এটি এত এতটাই এতে এদের এবং এবার এমন এমনি এমনকি এর এরা এলো এস এসে +ঐ +ও ওঁদের ওঁর ওঁরা ওই ওকে ওখানে ওদের ওর ওরা +কখনও কত কথা কবে কয়েক কয়েকটি করছে করছেন করতে করবে করবেন করলে কয়েক কয়েকটি করিয়ে করিয়া করায় +করলেন করা করাই করায় করার করি করিতে করিয়া করিয়ে করে করেই করেছিলেন করেছে করেছেন করেন কাউকে +কাছ কাছে কাজ কাজে কারও কারণ কি কিংবা কিছু কিছুই কিন্তু কী কে কেউ কেউই কেন কোন কোনও কোনো কেমনে কোটি +ক্ষেত্রে খুব +গিয়ে গিয়েছে গুলি গেছে গেল গেলে গোটা গিয়ে গিয়েছে +চলে চান চায় চেয়ে চায় চেয়ে চার চালু চেষ্টা +ছাড়া ছাড়াও ছিল ছিলেন ছাড়া ছাড়াও +জন জনকে জনের জন্য জন্যে জানতে জানা জানানো জানায় জানিয়ে জানিয়েছে জানায় জাানিয়ে জানিয়েছে +টি +ঠিক +তখন তত তথা তবু তবে তা তাঁকে তাঁদের তাঁর তাঁরা তাঁহারা তাই তাও তাকে তাতে তাদের তার তারপর তারা তারই তাহলে তাহা তাহাতে তাহার তিনই +তিনি তিনিও তুমি তুলে তেমন তো তোমার +থাকবে থাকবেন থাকা থাকায় থাকে থাকেন থেকে থেকেই থেকেও থাকায় +দিকে দিতে দিয়ে দিয়েছে দিয়েছেন দিলেন দিয়ে দু দুটি দুটো দেওয়া দেওয়ার দেখতে দেখা দেখে দেন দেয় দেশের +দ্বারা দিয়েছে দিয়েছেন দেয় দেওয়া দেওয়ার দিন দুই +ধরা ধরে +নয় না নাই নাকি নাগাদ নানা নিজে নিজেই নিজেদের নিজের নিতে নিয়ে নিয়ে নেই নেওয়া নেওয়ার নয় নতুন +পক্ষে পর পরে পরেই পরেও পর্যন্ত পাওয়া পারি পারে পারেন পেয়ে প্রতি প্রভৃতি প্রায় পাওয়া পেয়ে প্রায় পাঁচ প্রথম প্রাথমিক +ফলে ফিরে ফের +বছর বদলে বরং বলতে বলল বললেন বলা বলে বলেছেন বলেন বসে বহু বা বাদে বার বিনা বিভিন্ন বিশেষ বিষয়টি বেশ ব্যবহার ব্যাপারে বক্তব্য বন বেশি +ভাবে ভাবেই +মত মতো মতোই মধ্যভাগে মধ্যে মধ্যেই মধ্যেও মনে মাত্র মাধ্যমে মানুষ মানুষের মোট মোটেই +যখন যত যতটা যথেষ্ট যদি যদিও যা যাঁর যাঁরা যাওয়া যাওয়ার যাকে যাচ্ছে যাতে যাদের যান যাবে যায় যার যারা যায় যিনি যে যেখানে যেতে যেন +যেমন +রকম রয়েছে রাখা রেখে রয়েছে +লক্ষ +শুধু শুরু +সাধারণ সামনে সঙ্গে সঙ্গেও সব সবার সমস্ত সম্প্রতি সময় সহ সহিত সাথে সুতরাং সে সেই সেখান সেখানে সেটা সেটাই সেটাও সেটি স্পষ্ট স্বয়ং +হইতে হইবে হইয়া হওয়া হওয়ায় হওয়ার হচ্ছে হত হতে হতেই হন হবে হবেন হয় হয়তো হয়নি হয়ে হয়েই হয়েছিল হয়েছে হাজার +হয়েছেন হল হলে হলেই হলেও হলো হিসাবে হিসেবে হৈলে হোক হয় হয়ে হয়েছে হৈতে হইয়া হয়েছিল হয়েছেন হয়নি হয়েই হয়তো হওয়া হওয়ার হওয়ায় +""".split()) diff --git a/spacy/bn/tag_map.py b/spacy/bn/tag_map.py new file mode 100644 index 000000000..2efae3a6a --- /dev/null +++ b/spacy/bn/tag_map.py @@ -0,0 +1,58 @@ +# coding: utf8 +from __future__ import unicode_literals + +from ..symbols import * + + +TAG_MAP = { + ".": {POS: PUNCT, "PunctType": "peri"}, + ",": {POS: PUNCT, "PunctType": "comm"}, + "-LRB-": {POS: PUNCT, "PunctType": "brck", "PunctSide": "ini"}, + "-RRB-": {POS: PUNCT, "PunctType": "brck", "PunctSide": "fin"}, + "``": {POS: PUNCT, "PunctType": "quot", "PunctSide": "ini"}, + "\"\"": {POS: PUNCT, "PunctType": "quot", "PunctSide": "fin"}, + "''": {POS: PUNCT, "PunctType": "quot", "PunctSide": "fin"}, + ":": {POS: PUNCT}, + "৳": {POS: SYM, "Other": {"SymType": "currency"}}, + "#": {POS: SYM, "Other": {"SymType": "numbersign"}}, + "AFX": {POS: ADJ, "Hyph": "yes"}, + "CC": {POS: CONJ, "ConjType": "coor"}, + "CD": {POS: NUM, "NumType": "card"}, + "DT": {POS: DET}, + "EX": {POS: ADV, "AdvType": "ex"}, + "FW": {POS: X, "Foreign": "yes"}, + "HYPH": {POS: PUNCT, "PunctType": "dash"}, + "IN": {POS: ADP}, + "JJ": {POS: ADJ, "Degree": "pos"}, + "JJR": {POS: ADJ, "Degree": "comp"}, + "JJS": {POS: ADJ, "Degree": "sup"}, + "LS": {POS: PUNCT, "NumType": "ord"}, + "MD": {POS: VERB, "VerbType": "mod"}, + "NIL": {POS: ""}, + "NN": {POS: NOUN, "Number": "sing"}, + "NNP": {POS: PROPN, "NounType": "prop", "Number": "sing"}, + "NNPS": {POS: PROPN, "NounType": "prop", "Number": "plur"}, + "NNS": {POS: NOUN, "Number": "plur"}, + "PDT": {POS: ADJ, "AdjType": "pdt", "PronType": "prn"}, + "POS": {POS: PART, "Poss": "yes"}, + "PRP": {POS: PRON, "PronType": "prs"}, + "PRP$": {POS: ADJ, "PronType": "prs", "Poss": "yes"}, + "RB": {POS: ADV, "Degree": "pos"}, + "RBR": {POS: ADV, "Degree": "comp"}, + "RBS": {POS: ADV, "Degree": "sup"}, + "RP": {POS: PART}, + "SYM": {POS: SYM}, + "TO": {POS: PART, "PartType": "inf", "VerbForm": "inf"}, + "UH": {POS: INTJ}, + "VB": {POS: VERB, "VerbForm": "inf"}, + "VBD": {POS: VERB, "VerbForm": "fin", "Tense": "past"}, + "VBG": {POS: VERB, "VerbForm": "part", "Tense": "pres", "Aspect": "prog"}, + "VBN": {POS: VERB, "VerbForm": "part", "Tense": "past", "Aspect": "perf"}, + "VBP": {POS: VERB, "VerbForm": "fin", "Tense": "pres"}, + "VBZ": {POS: VERB, "VerbForm": "fin", "Tense": "pres", "Number": "sing", "Person": 3}, + "WDT": {POS: ADJ, "PronType": "int|rel"}, + "WP": {POS: NOUN, "PronType": "int|rel"}, + "WP$": {POS: ADJ, "Poss": "yes", "PronType": "int|rel"}, + "WRB": {POS: ADV, "PronType": "int|rel"}, + "SP": {POS: SPACE}, +} diff --git a/spacy/bn/tokenizer_exceptions.py b/spacy/bn/tokenizer_exceptions.py new file mode 100644 index 000000000..a47b89280 --- /dev/null +++ b/spacy/bn/tokenizer_exceptions.py @@ -0,0 +1,47 @@ +# coding=utf-8 +from __future__ import unicode_literals + +from ..symbols import * + +TOKENIZER_EXCEPTIONS = {} + +ABBREVIATIONS = { + "ডঃ": [ + {ORTH: "ডঃ", LEMMA: "ডক্টর"}, + ], + "ডাঃ": [ + {ORTH: "ডাঃ", LEMMA: "ডাক্তার"}, + ], + "ড.": [ + {ORTH: "ড.", LEMMA: "ডক্টর"}, + ], + "ডা.": [ + {ORTH: "ডা.", LEMMA: "ডাক্তার"}, + ], + "মোঃ": [ + {ORTH: "মোঃ", LEMMA: "মোহাম্মদ"}, + ], + "মো.": [ + {ORTH: "মো.", LEMMA: "মোহাম্মদ"}, + ], + "সে.": [ + {ORTH: "সে.", LEMMA: "সেলসিয়াস"}, + ], + "কি.মি.": [ + {ORTH: "কি.মি.", LEMMA: "কিলোমিটার"}, + ], + "কি.মি": [ + {ORTH: "কি.মি", LEMMA: "কিলোমিটার"}, + ], + "সে.মি.": [ + {ORTH: "সে.মি.", LEMMA: "সেন্টিমিটার"}, + ], + "সে.মি": [ + {ORTH: "সে.মি", LEMMA: "সেন্টিমিটার"}, + ], + "মি.লি.": [ + {ORTH: "মি.লি.", LEMMA: "মিলিলিটার"}, + ] +} + +TOKENIZER_EXCEPTIONS.update(ABBREVIATIONS) diff --git a/spacy/cfile.pxd b/spacy/cfile.pxd index c9a6aec41..cb0077587 100644 --- a/spacy/cfile.pxd +++ b/spacy/cfile.pxd @@ -4,6 +4,20 @@ from cymem.cymem cimport Pool cdef class CFile: cdef FILE* fp cdef bint is_open + cdef Pool mem + cdef int size # For compatibility with subclass + cdef int _capacity # For compatibility with subclass + + cdef int read_into(self, void* dest, size_t number, size_t elem_size) except -1 + + cdef int write_from(self, void* src, size_t number, size_t elem_size) except -1 + + cdef void* alloc_read(self, Pool mem, size_t number, size_t elem_size) except * + + + +cdef class StringCFile(CFile): + cdef unsigned char* data cdef int read_into(self, void* dest, size_t number, size_t elem_size) except -1 diff --git a/spacy/cfile.pyx b/spacy/cfile.pyx index b119d3b9b..ceebe2e59 100644 --- a/spacy/cfile.pyx +++ b/spacy/cfile.pyx @@ -1,4 +1,5 @@ from libc.stdio cimport fopen, fclose, fread, fwrite, FILE +from libc.string cimport memcpy cdef class CFile: @@ -9,6 +10,7 @@ cdef class CFile: mode_str = mode if hasattr(loc, 'as_posix'): loc = loc.as_posix() + self.mem = Pool() cdef bytes bytes_loc = loc.encode('utf8') if type(loc) == unicode else loc self.fp = fopen(bytes_loc, mode_str) if self.fp == NULL: @@ -45,3 +47,42 @@ cdef class CFile: cdef bytes py_bytes = value.encode('utf8') cdef char* chars = py_bytes self.write(sizeof(char), len(py_bytes), chars) + + +cdef class StringCFile: + def __init__(self, mode, bytes data=b'', on_open_error=None): + self.mem = Pool() + self.is_open = 'w' in mode + self._capacity = max(len(data), 8) + self.size = len(data) + self.data = self.mem.alloc(1, self._capacity) + for i in range(len(data)): + self.data[i] = data[i] + + def close(self): + self.is_open = False + + def string_data(self): + return (self.data-self.size)[:self.size] + + cdef int read_into(self, void* dest, size_t number, size_t elem_size) except -1: + memcpy(dest, self.data, elem_size * number) + self.data += elem_size * number + + cdef int write_from(self, void* src, size_t elem_size, size_t number) except -1: + write_size = number * elem_size + if (self.size + write_size) >= self._capacity: + self._capacity = (self.size + write_size) * 2 + self.data = self.mem.realloc(self.data, self._capacity) + memcpy(&self.data[self.size], src, elem_size * number) + self.size += write_size + + cdef void* alloc_read(self, Pool mem, size_t number, size_t elem_size) except *: + cdef void* dest = mem.alloc(number, elem_size) + self.read_into(dest, number, elem_size) + return dest + + def write_unicode(self, unicode value): + cdef bytes py_bytes = value.encode('utf8') + cdef char* chars = py_bytes + self.write(sizeof(char), len(py_bytes), chars) diff --git a/spacy/de/__init__.py b/spacy/de/__init__.py index 3143a5cd4..37a57d676 100644 --- a/spacy/de/__init__.py +++ b/spacy/de/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from os import path diff --git a/spacy/de/download.py b/spacy/de/download.py index 4f02f0474..239d46884 100644 --- a/spacy/de/download.py +++ b/spacy/de/download.py @@ -1,14 +1,5 @@ -import plac -from ..download import download - - -@plac.annotations( - force=("Force overwrite", "flag", "f", bool), - data_path=("Path to download model", "option", "d", str) -) -def main(data_size='all', force=False, data_path=None): - download('de', force=force, data_path=data_path) +from ..deprecated import ModelDownload as download if __name__ == '__main__': - plac.call(main) + download.de() diff --git a/spacy/de/language_data.py b/spacy/de/language_data.py index 5e09c0eb3..83894e553 100644 --- a/spacy/de/language_data.py +++ b/spacy/de/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base diff --git a/spacy/de/stop_words.py b/spacy/de/stop_words.py index 66a89eee8..c07124793 100644 --- a/spacy/de/stop_words.py +++ b/spacy/de/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/de/tag_map.py b/spacy/de/tag_map.py index e5996b38c..0edd7a086 100644 --- a/spacy/de/tag_map.py +++ b/spacy/de/tag_map.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * @@ -41,7 +41,7 @@ TAG_MAP = { "PRF": {POS: PRON, "PronType": "prs", "Reflex": "yes"}, "PTKA": {POS: PART}, "PTKANT": {POS: PART, "PartType": "res"}, - "PTKNEG": {POS: PART, "Negative": "yes"}, + "PTKNEG": {POS: PART, "Polarity": "Neg"}, "PTKVZ": {POS: PART, "PartType": "vbp"}, "PTKZU": {POS: PART, "PartType": "inf"}, "PWAT": {POS: DET, "PronType": "int"}, diff --git a/spacy/de/tokenizer_exceptions.py b/spacy/de/tokenizer_exceptions.py index 0d8dc54e8..76fa1e9da 100644 --- a/spacy/de/tokenizer_exceptions.py +++ b/spacy/de/tokenizer_exceptions.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * diff --git a/spacy/deprecated.py b/spacy/deprecated.py index d75354f9c..72327c584 100644 --- a/spacy/deprecated.py +++ b/spacy/deprecated.py @@ -1,35 +1,13 @@ -from sputnik.dir_package import DirPackage -from sputnik.package_list import (PackageNotFoundException, - CompatiblePackageNotFoundException) - -import sputnik +from pathlib import Path from . import about +from . import util +from .download import download -def get_package(data_dir): - if not isinstance(data_dir, six.string_types): - raise RuntimeError('data_dir must be a string') - return DirPackage(data_dir) - - -def get_package_by_name(name=None, via=None): - if name is None: - return - lang = get_lang_class(name) - try: - return sputnik.package(about.__title__, about.__version__, - name, data_path=via) - except PackageNotFoundException as e: - raise RuntimeError("Model '%s' not installed. Please run 'python -m " - "%s.download' to install latest compatible " - "model." % (name, lang.__module__)) - except CompatiblePackageNotFoundException as e: - raise RuntimeError("Installed model is not compatible with spaCy " - "version. Please run 'python -m %s.download " - "--force' to install latest compatible model." % - (lang.__module__)) - - +try: + basestring +except NameError: + basestring = str def read_lang_data(package): @@ -43,7 +21,6 @@ def read_lang_data(package): return tokenization, prefix, suffix, infix - def align_tokens(ref, indices): # Deprecated, surely? start = 0 queue = list(indices) @@ -79,4 +56,55 @@ def detokenize(token_rules, words): # Deprecated? return positions +def fix_glove_vectors_loading(overrides): + """Special-case hack for loading the GloVe vectors, to support deprecated + <1.0 stuff. Phase this out once the data is fixed.""" + if 'data_dir' in overrides and 'path' not in overrides: + raise ValueError("The argument 'data_dir' has been renamed to 'path'") + if overrides.get('path') is False: + return overrides + if overrides.get('path') in (None, True): + data_path = util.get_data_path() + else: + path = overrides['path'] + if isinstance(path, basestring): + path = Path(path) + data_path = path.parent + vec_path = None + if 'add_vectors' not in overrides: + if 'vectors' in overrides: + vec_path = util.match_best_version(overrides['vectors'], None, data_path) + if vec_path is None: + return overrides + else: + vec_path = util.match_best_version('en_glove_cc_300_1m_vectors', None, data_path) + if vec_path is not None: + vec_path = vec_path / 'vocab' / 'vec.bin' + if vec_path is not None: + overrides['add_vectors'] = lambda vocab: vocab.load_vectors_from_bin_loc(vec_path) + return overrides + + +class ModelDownload(): + """Replace download modules within en and de with deprecation warning and + download default language model (using shortcut). Use classmethods to allow + importing ModelDownload as download and calling download.en() etc.""" + + @classmethod + def load(self, lang): + util.print_msg( + "The spacy.{l}.download command is now deprecated. Please use " + "spacy.download [model name or shortcut] instead. For more " + "info and available models, see the documentation: {d}. " + "Downloading default '{l}' model now...".format(d=about.__docs__, l=lang), + title="Warning: deprecated command") + download(lang) + + @classmethod + def en(cls, *args, **kwargs): + cls.load('en') + + @classmethod + def de(cls, *args, **kwargs): + cls.load('de') diff --git a/spacy/download.py b/spacy/download.py index af15e1867..1f8f701ff 100644 --- a/spacy/download.py +++ b/spacy/download.py @@ -1,46 +1,81 @@ -from __future__ import print_function - -import sys - -import sputnik -from sputnik.package_list import (PackageNotFoundException, - CompatiblePackageNotFoundException) +# coding: utf8 +from __future__ import unicode_literals +import pip +import plac +import requests +from os import path +from .link import link from . import about from . import util -def download(lang, force=False, fail_on_exist=True, data_path=None): - if not data_path: - data_path = util.get_data_path(require_exists=False) +@plac.annotations( + model=("Model to download", "positional", None, str), + direct=("Force direct download", "flag", "d", bool) +) +def download(model=None, direct=False): + """Download compatible model from default download path using pip.""" - # spaCy uses pathlib, and util.get_data_path returns a pathlib.Path object, - # but sputnik (which we're using below) doesn't use pathlib and requires - # its data_path parameters to be strings, so we coerce the data_path to a - # str here. - data_path = str(data_path) + check_error_depr(model) - try: - pkg = sputnik.package(about.__title__, about.__version__, - about.__models__.get(lang, lang), data_path) - if force: - shutil.rmtree(pkg.path) - elif fail_on_exist: - print("Model already installed. Please run 'python -m " - "spacy.%s.download --force' to reinstall." % lang, file=sys.stderr) - sys.exit(0) - except (PackageNotFoundException, CompatiblePackageNotFoundException): - pass + if direct: + download_model('{m}/{m}.tar.gz'.format(m=model)) + else: + model_name = about.__shortcuts__[model] if model in about.__shortcuts__ else model + compatibility = get_compatibility() + version = get_version(model_name, compatibility) + download_model('{m}-{v}/{m}-{v}.tar.gz'.format(m=model_name, v=version)) + link(model_name, model, force=True) - package = sputnik.install(about.__title__, about.__version__, - about.__models__.get(lang, lang), data_path) +def get_compatibility(): + version = about.__version__ + r = requests.get(about.__compatibility__) + if r.status_code != 200: + util.sys_exit( + "Couldn't fetch compatibility table. Please find the right model for " + "your spaCy installation (v{v}), and download it manually:".format(v=version), + "python -m spacy.download [full model name + version] --direct", + title="Server error ({c})".format(c=r.status_code)) - try: - sputnik.package(about.__title__, about.__version__, - about.__models__.get(lang, lang), data_path) - except (PackageNotFoundException, CompatiblePackageNotFoundException): - print("Model failed to install. Please run 'python -m " - "spacy.%s.download --force'." % lang, file=sys.stderr) - sys.exit(1) + comp = r.json()['spacy'] + if version not in comp: + util.sys_exit( + "No compatible models found for v{v} of spaCy.".format(v=version), + title="Compatibility error") + else: + return comp[version] - print("Model successfully installed to %s" % data_path, file=sys.stderr) + +def get_version(model, comp): + if model not in comp: + util.sys_exit( + "No compatible model found for " + "{m} (spaCy v{v}).".format(m=model, v=about.__version__), + title="Compatibility error") + return comp[model][0] + + +def download_model(filename): + util.print_msg("Downloading {f}".format(f=filename)) + download_url = path.join(about.__download_url__, filename) + pip.main(['install', download_url]) + + +def check_error_depr(model): + if not model: + util.sys_exit( + "python -m spacy.download [name or shortcut]", + title="Missing model name or shortcut") + + if model == 'all': + util.sys_exit( + "As of v1.7.0, the download all command is deprecated. Please " + "download the models individually via spacy.download [model name] " + "or pip install. For more info on this, see the documentation: " + "{d}".format(d=about.__docs__), + title="Deprecated command") + + +if __name__ == '__main__': + plac.call(download) diff --git a/spacy/en/__init__.py b/spacy/en/__init__.py index 56cf4d184..775d42a2b 100644 --- a/spacy/en/__init__.py +++ b/spacy/en/__init__.py @@ -1,19 +1,22 @@ -# encoding: utf8 -from __future__ import unicode_literals, print_function +# coding: utf8 +from __future__ import unicode_literals -from os import path - -from ..util import match_best_version -from ..util import get_data_path from ..language import Language from ..lemmatizer import Lemmatizer from ..vocab import Vocab from ..tokenizer import Tokenizer from ..attrs import LANG +from ..deprecated import fix_glove_vectors_loading from .language_data import * +try: + basestring +except NameError: + basestring = str + + class English(Language): lang = 'en' @@ -24,37 +27,14 @@ class English(Language): tokenizer_exceptions = TOKENIZER_EXCEPTIONS tag_map = TAG_MAP stop_words = STOP_WORDS - lemma_rules = LEMMA_RULES + + morph_rules = dict(MORPH_RULES) + lemma_rules = dict(LEMMA_RULES) + lemma_index = dict(LEMMA_INDEX) + lemma_exc = dict(LEMMA_EXC) def __init__(self, **overrides): - # Make a special-case hack for loading the GloVe vectors, to support - # deprecated <1.0 stuff. Phase this out once the data is fixed. - overrides = _fix_deprecated_glove_vectors_loading(overrides) + # Special-case hack for loading the GloVe vectors, to support <1.0 + overrides = fix_glove_vectors_loading(overrides) Language.__init__(self, **overrides) - - -def _fix_deprecated_glove_vectors_loading(overrides): - if 'data_dir' in overrides and 'path' not in overrides: - raise ValueError("The argument 'data_dir' has been renamed to 'path'") - if overrides.get('path') is False: - return overrides - if overrides.get('path') in (None, True): - data_path = get_data_path() - else: - path = overrides['path'] - data_path = path.parent - vec_path = None - if 'add_vectors' not in overrides: - if 'vectors' in overrides: - vec_path = match_best_version(overrides['vectors'], None, data_path) - if vec_path is None: - raise IOError( - 'Could not load data pack %s from %s' % (overrides['vectors'], data_path)) - else: - vec_path = match_best_version('en_glove_cc_300_1m_vectors', None, data_path) - if vec_path is not None: - vec_path = vec_path / 'vocab' / 'vec.bin' - if vec_path is not None: - overrides['add_vectors'] = lambda vocab: vocab.load_vectors_from_bin_loc(vec_path) - return overrides diff --git a/spacy/en/download.py b/spacy/en/download.py index 7a2d58234..6d0a8dd40 100644 --- a/spacy/en/download.py +++ b/spacy/en/download.py @@ -1,25 +1,5 @@ -import plac -import sputnik - -from ..download import download -from .. import about - - -@plac.annotations( - force=("Force overwrite", "flag", "f", bool), - data_path=("Path to download model", "option", "d", str) -) -def main(data_size='all', force=False, data_path=None): - if force: - sputnik.purge(about.__title__, about.__version__) - - if data_size in ('all', 'parser'): - print("Downloading parsing model") - download('en', force=False, data_path=data_path) - if data_size in ('all', 'glove'): - print("Downloading GloVe vectors") - download('en_glove_cc_300_1m_vectors', force=False, data_path=data_path) +from ..deprecated import ModelDownload as download if __name__ == '__main__': - plac.call(main) + download.en() diff --git a/spacy/en/language_data.py b/spacy/en/language_data.py index 1fcbf277e..f53e6beda 100644 --- a/spacy/en/language_data.py +++ b/spacy/en/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base @@ -6,35 +6,12 @@ from ..language_data import update_exc, strings_to_exc, expand_exc from ..symbols import ORTH, LEMMA from .tag_map import TAG_MAP -from .stop_words import STOP_WORDS +from .word_sets import STOP_WORDS, NUM_WORDS from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS, ORTH_ONLY -from .lemma_rules import LEMMA_RULES from .morph_rules import MORPH_RULES - - -def get_time_exc(hours): - exc = {} - for hour in hours: - exc["%da.m." % hour] = [ - {ORTH: hour}, - {ORTH: "a.m."} - ] - - exc["%dp.m." % hour] = [ - {ORTH: hour}, - {ORTH: "p.m."} - ] - - exc["%dam" % hour] = [ - {ORTH: hour}, - {ORTH: "am", LEMMA: "a.m."} - ] - - exc["%dpm" % hour] = [ - {ORTH: hour}, - {ORTH: "pm", LEMMA: "p.m."} - ] - return exc +from .lemmatizer import RULES as LEMMA_RULES +from .lemmatizer import INDEX as LEMMA_INDEX +from .lemmatizer import EXC as LEMMA_EXC TAG_MAP = dict(TAG_MAP) @@ -43,10 +20,10 @@ STOP_WORDS = set(STOP_WORDS) TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ORTH_ONLY)) -update_exc(TOKENIZER_EXCEPTIONS, get_time_exc(range(1, 12 + 1))) update_exc(TOKENIZER_EXCEPTIONS, expand_exc(TOKENIZER_EXCEPTIONS, "'", "’")) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS)) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) -__all__ = ["TOKENIZER_EXCEPTIONS", "TAG_MAP", "STOP_WORDS", "LEMMA_RULES", "MORPH_RULES"] +__all__ = ["TOKENIZER_EXCEPTIONS", "TAG_MAP", "STOP_WORDS", "MORPH_RULES", + "LEMMA_RULES", "LEMMA_INDEX", "LEMMA_EXC"] diff --git a/spacy/en/lemma_rules.py b/spacy/en/lemma_rules.py deleted file mode 100644 index 194712c24..000000000 --- a/spacy/en/lemma_rules.py +++ /dev/null @@ -1,42 +0,0 @@ -# encoding: utf8 -from __future__ import unicode_literals - - -LEMMA_RULES = { - "noun": [ - ["s", ""], - ["ses", "s"], - ["ves", "f"], - ["xes", "x"], - ["zes", "z"], - ["ches", "ch"], - ["shes", "sh"], - ["men", "man"], - ["ies", "y"] - ], - - "verb": [ - ["s", ""], - ["ies", "y"], - ["es", "e"], - ["es", ""], - ["ed", "e"], - ["ed", ""], - ["ing", "e"], - ["ing", ""] - ], - - "adj": [ - ["er", ""], - ["est", ""], - ["er", "e"], - ["est", "e"] - ], - - "punct": [ - ["“", "\""], - ["”", "\""], - ["\u2018", "'"], - ["\u2019", "'"] - ] -} diff --git a/corpora/en/wordnet/LICENSE b/spacy/en/lemmatizer/LICENSE similarity index 100% rename from corpora/en/wordnet/LICENSE rename to spacy/en/lemmatizer/LICENSE diff --git a/spacy/en/lemmatizer/__init__.py b/spacy/en/lemmatizer/__init__.py new file mode 100644 index 000000000..263dcf70a --- /dev/null +++ b/spacy/en/lemmatizer/__init__.py @@ -0,0 +1,33 @@ +from ._adjectives import ADJECTIVES +from ._adjectives_irreg import ADJECTIVES_IRREG +from ._adverbs import ADVERBS +from ._adverbs_irreg import ADVERBS_IRREG +from ._nouns import NOUNS +from ._nouns_irreg import NOUNS_IRREG +from ._verbs import VERBS +from ._verbs_irreg import VERBS_IRREG +from ._lemma_rules import ADJECTIVE_RULES, NOUN_RULES, VERB_RULES, PUNCT_RULES + + +INDEX = { + "adj": ADJECTIVES, + "adv": ADVERBS, + "noun": NOUNS, + "verb": VERBS +} + + +EXC = { + "adj": ADJECTIVES_IRREG, + "adv": ADVERBS_IRREG, + "noun": NOUNS_IRREG, + "verb": VERBS_IRREG +} + + +RULES = { + "adj": ADJECTIVE_RULES, + "noun": NOUN_RULES, + "verb": VERB_RULES, + "punct": PUNCT_RULES +} diff --git a/spacy/en/lemmatizer/_adjectives.py b/spacy/en/lemmatizer/_adjectives.py new file mode 100644 index 000000000..19f93e5d8 --- /dev/null +++ b/spacy/en/lemmatizer/_adjectives.py @@ -0,0 +1,2827 @@ +# coding: utf8 +from __future__ import unicode_literals + + +ADJECTIVES = set(""" +.22-caliber .22-calibre .38-caliber .38-calibre .45-caliber .45-calibre 0 1 10 +10-membered 100 1000 1000th 100th 101 101st 105 105th 10th 11 110 110th 115 +115th 11th 12 120 120th 125 125th 12th 13 130 130th 135 135th 13th 14 140 140th +145 145th 14th 15 150 150th 155 155th 15th 16 160 160th 165 165th 16th 17 170 +170th 175 175th 17th 18 180 180th 18th 19 190 190th 19th 1st 2 2-dimensional 20 +200 200th 20th 21 21st 22 22nd 23 23rd 24 24th 25 25th 26 26th 27 27th 28 28th +29 29th 2d 2nd 3 3-dimensional 3-membered 30 300 300th 30th 31 31st 32 32nd 33 +33rd 34 34th 35 35th 36 36th 37 37th 38 38th 39 39th 3rd 4 4-dimensional +4-membered 40 400 400th 40th 41 41st 42 42nd 43 43rd 44 44th 45 45th 46 46th 47 +47th 48 48th 49 49th 4th 5 5-membered 50 500 500th 50th 51 52 53 54 55 55th 56 +57 58 59 5th 6 6-membered 60 60th 61 62 63 64 64th 65 65th 66 67 68 69 6th 7 +7-membered 70 70th 71 72 73 74 75 75th 76 77 78 79 7th 8 8-membered 80 80th 81 +82 83 84 85 85th 86 87 88 89 8th 9 9-membered 90 90th 91 92 93 94 95 95th 96 97 +98 99 9th a-ok a-okay a-one a.m. abactinal abandoned abashed abasic abatable +abatic abaxial abbatial abbreviated abdicable abdominal abdominous +abdominovesical abducent abducting abecedarian aberdonian aberrant abeyant +abhorrent abiding abient abiogenetic abject abkhaz abkhazian ablated ablative +ablaze able able-bodied abloom ablutionary abnaki abnormal abolishable +abolitionary abomasal abominable aboral aboriginal abortifacient abortive +aboulic abounding about above above-mentioned above-named aboveboard aboveground +abranchial abranchiate abranchious abrasive abreast abridged abroach abroad +abrupt abruptly-pinnate abscessed absent absentminded absolute absolutist +absolutistic absolved absolvitory absorbable absorbed absorbefacient absorbent +absorbing absorptive abstemious abstentious abstinent abstract abstracted +abstractionist abstractive abstruse absurd abulic abundant abused abusive abuzz +abysmal abyssal academic acanthoid acanthotic acanthous acapnial acapnic +acapnotic acarpellous acarpelous acarpous acatalectic acaudal acaudate +acaulescent accelerando accelerated accelerative acceleratory accented accentual +acceptable acceptant accepted accepting acceptive accessary accessible +accessional accessorial accessory accident-prone accidental accipitrine +acclivitous accommodating accommodational accommodative accompanied accompanying +accomplishable accomplished accordant according accountable accoutered accoutred +accredited accretionary accretive accrued acculturational acculturative +accumbent accumulated accumulative accurate accursed accurst accusative +accusatorial accusatory accusing accusive accustomed ace acellular acentric +acephalous acerate acerb acerbic acerose acervate acetabular acetic acetonic +acetose acetous acetylenic acetylic achaean achenial acheronian acherontic +achievable aching achlamydeous achlorhydric achondritic achondroplastic +achromatic achromatinic achromatous achromic achromous achy acicular aciculate +acid acid-fast acid-forming acid-loving acid-tasting acidic acidimetric +acidophilic acidophilous acidotic acidulent acidulous aciduric acinar acinic +acinose acinous acknowledgeable acknowledged acned acneiform acold acorn-shaped +acoustic acoustical acquainted acquiescent acquirable acquired acquisitive +acquitted acrid acrimonious acritical acrobatic acrocarpous acrocentric +acrogenic acrogenous acromegalic acronymic acronymous acropetal acrophobic +acroscopic across-the-board actable actinal acting actinic actinoid actinometric +actinometrical actinomorphic actinomorphous actinomycetal actinomycetous +actinomycotic actionable activated activating active activist activistic actual +actuarial actuated actuating acuate aculeate aculeated acuminate acute acyclic +ad-lib adactylous adagio adamant adamantine adaptable adaptational adaptative +adapted adaptive adaxial addable addible addicted addictive additional additive +addlebrained addled addlepated addressable addressed adducent adducting +adductive adenocarcinomatous adenoid adenoidal adept adequate adherent adhesive +adiabatic adient adipose adjacent adjectival adjective adjudicative adjudicatory +adjunct adjunctive adjuratory adjustable adjusted adjustive adjuvant +administrable administrative admirable admired admissible admissive admittable +admittible admonishing admonitory adnate adnexal adolescent adonic adoptable +adopted adoptive adorable adored adoring adorned adpressed adrenal adrenergic +adrenocortical adrenocorticotrophic adrenocorticotropic adrift adroit +adscititious adscript adscripted adsorbable adsorbate adsorbent adsorptive +adulatory adult adulterant adulterate adulterated adulterating adulterine +adulterous adumbrative adust advance advanced advancing advantageous advective +adventitial adventitious adventive adventuresome adventuristic adventurous +adverbial adversative adverse advertent advertised advisable advised advisory +adynamic aecial aegean aeolian aeolotropic aeonian aerated aerial aeriferous +aeriform aerobic aerobiotic aerodynamic aerolitic aerological aeromechanic +aeromedical aeronautic aeronautical aerophilatelic aerophilic aerophilous +aerosolised aerosolized aery aeschylean aesculapian aesthetic aesthetical +aestival aetiologic aetiological afeard afeared afebrile affable affected +affecting affectional affectionate affective afferent affiliated affinal affine +affined affirmable affirmative affirmatory affixal affixed affixial afflicted +afflictive affluent affordable afghan afghani afghanistani afire aflame aflare +aflicker afloat aflutter afoot aforementioned aforesaid aforethought afoul +afraid african african-american afrikaans afrikaner afro-american afro-asian aft +after after-hours after-school aftermost aftershafted agamic agamogenetic +agamous agape agaze age-old age-related aged ageing ageless agelong agential +agglomerate agglomerated agglomerative agglutinate agglutinative aggravated +aggravating aggregate aggregated aggregative aggressive aghast agile aging +agitated agitating agitative agleam aglitter aglow agnate agnatic agnostic +agnostical ago agog agonadal agonal agone agonised agonising agonistic +agonistical agonized agonizing agoraphobic agranulocytic agraphic agrarian +agreeable agreed agrestic agricultural agrobiologic agrobiological agrologic +agrological agronomic agronomical aground agrypnotic aguish ahead ahistorical +ahorse ahorseback aided ailing aimless ain air-breathing air-conditioned air- +cooled air-dried air-dry air-filled air-tight air-to-air air-to-ground air-to- +surface airborne aired airheaded airless airlike airsick airtight airworthy airy +ajar akimbo akin alabaster alabastrine alacritous alar alarmed alarming alary +alaskan alate alated albanian albescent albigensian albinal albinic albinistic +albinotic albitic albuminous albuminuric alcalescent alchemic alchemical +alchemistic alchemistical alcohol-dependent alcohol-soluble alcoholic aldehydic +aldermanic aldermanly aleatory alert aleuronic aleutian alexandrian alexic +alfresco algal algebraic algebraical algerian algid algoid algolagnic algometric +algometrical algonkian algonquian algonquin algophobic algorithmic alien +alienable alienated alienating aliform alight aligned aligning alike alimental +alimentary alimentative aliphatic aliquot alive alkahestic alkalescent alkalic +alkaline alkaline-loving alkaloidal alkalotic alkylic all all-around all- +devouring all-embracing all-encompassing all-fired all-important all-inclusive +all-knowing all-mains all-metal all-night all-or-none all-or-nothing all-out +all-powerful all-purpose all-round all-time all-victorious all-weather allantoic +allantoid allargando alleged allegiant allegoric allegorical allegretto allegro +allelic allelomorphic allergenic allergic alleviated alleviative alleviatory +alliaceous allied alligatored alliterative allocable allocatable allochronic +allochthonous allogamous allogeneic allographic allomerous allometric +allomorphic allopathic allopatric allophonic allotropic allotropical allotted +allover allowable alloyed alluring allusive alluvial allylic almighty almond- +eyed almond-scented almond-shaped alone aloof alopecic alpestrine alpha +alphabetic alphabetical alphabetised alphabetized alphameric alphamerical +alphanumeric alphanumerical alpine alright alsatian altaic alterable alterative +altered alternate alternating alternative altissimo altitudinal altitudinous +alto altricial altruistic alular aluminiferous aluminous alveolar alveolate +alvine amalgamate amalgamated amalgamative amaranthine amateur amateurish +amative amatory amaurotic amazed amazing ambagious ambassadorial amber amber- +green ambidextrous ambient ambiguous ambitionless ambitious ambivalent +ambiversive amblyopic ambrosial ambrosian ambulacral ambulant ambulatory ameban +amebic ameboid amebous ameliorating ameliorative amelioratory amenable amendable +amendatory amended amenorrheal amenorrheic amenorrhoeal amenorrhoeic amentaceous +amentiferous amerciable american amerind amerindic ametabolic ametabolous +amethyst amethystine ametropic amharic amiable amicable amidship aminic amino +amiss amitotic ammino ammoniac ammoniacal ammoniated ammonitic amnesiac amnesic +amnestic amnic amnionic amniotic amoeban amoebic amoeboid amoebous amok +amoristic amorous amorphous amort amphibian amphibiotic amphibious +amphiprostylar amphiprostyle amphiprotic amphistylar amphitheatric +amphitheatrical amphitropous amphoric amphoteric ample ampullar ampullary amuck +amused amusing amusive amygdaliform amygdaline amygdaloid amygdaloidal +amylaceous amyloid amyloidal amylolytic anabatic anabiotic anabolic anachronic +anachronistic anachronous anaclinal anaclitic anacoluthic anadromous anaemic +anaerobic anaerobiotic anaesthetic anaglyphic anaglyphical anaglyptic +anaglyptical anagogic anagogical anagrammatic anagrammatical anal analeptic +analgesic analgetic analog analogical analogous analogue analphabetic analytic +analytical analyzable analyzed anamnestic anamorphic anapaestic anapestic +anaphasic anaphoric anaphrodisiac anaphylactic anaplastic anarchic anarchical +anarchistic anasarcous anastigmatic anastomotic anatomic anatomical anatropous +ancestral anchoritic ancient ancillary andalusian andante andantino andean +andorran androgenetic androgenic androgenous androgynous ane anecdotal anecdotic +anecdotical anechoic anemic anemographic anemometric anemometrical anemophilous +anencephalic anencephalous aneroid anesthetic anestric anestrous aneuploid +aneurismal aneurismatic aneurysmal aneurysmatic anfractuous angelic angelical +angered anginal anginose anginous angiocarpic angiocarpous angiomatous +angiospermous angled anglican anglo-catholic anglo-indian anglo-jewish anglo- +saxon anglophilic anglophobic angolan angry anguillan anguine anguished angular +angulate anhydrous anicteric anile animal animalistic animate animated animating +animatistic animist animistic anionic anise-scented aniseikonic anisogametic +anisogamic anisogamous anisometric anisometropic anisotropic ankle-deep +ankylotic annalistic annelid annelidan annexal annexational annihilated +annihilating annihilative announced annoyed annoying annual annular annulate +annulated annunciatory anodal anodic anodyne anoestrous anomalous anomic anon. +anonymous anoperineal anopheline anorectal anorectic anorexic anorexigenic +anorthic anorthitic anosmatic anosmic another anoxemic anoxic anserine +answerable answering antacid antagonistic antarctic antebellum antecedent +antecubital antediluvial antediluvian antemeridian antemortem antenatal antennal +antennary antenuptial antepartum antepenultimate anterior anterograde +anthelminthic anthelmintic antheral antheridial anthophagous anthophilous +anthracitic anthropic anthropical anthropocentric anthropogenetic anthropogenic +anthropoid anthropoidal anthropological anthropometric anthropometrical +anthropomorphic anthropomorphous anthropophagous anti anti-american anti- +intellectual anti-semite anti-semitic antiadrenergic antiaircraft antiapartheid +antiauthoritarian antibacterial antibiotic antiblack antic anticancer +anticholinergic anticipant anticipated anticipative anticipatory anticlimactic +anticlimactical anticlinal anticlockwise anticoagulative anticyclonic antidotal +antidromic antiferromagnetic antifertility antifungal antigenic antiguan +antiheretical antiknock antiknocking antimagnetic antimicrobial antimicrobic +antimonial antimonic antimonious antimonopoly antineoplastic antinomian +antiparallel antipathetic antipathetical antipersonnel antiphlogistic antiphonal +antiphonary antipodal antipodean antipollution antipyretic antiquarian +antiquated antique antisatellite antisemitic antiseptic antisocial antistrophic +antisubmarine antitank antithetic antithetical antithyroid antitoxic antitrust +antitumor antitumour antitypic antitypical antiviral antler-like antlered +antonymous antrorse antsy anuran anuretic anuric anurous anxiolytic anxious any +aoristic aortal aortic apart apathetic apelike aperient aperiodic apetalous +aphaeretic aphakic aphanitic aphasic apheretic aphetic aphonic aphoristic +aphotic aphrodisiac aphrodisiacal aphyllous apian apiarian apical apiculate +apicultural apish apivorous aplacental aplanatic aplitic apneic apnoeic +apocalyptic apocalyptical apocarpous apochromatic apocrine apocryphal +apocynaceous apodal apodeictic apodictic apodous apogametic apogamic apogamous +apogean apolitical apologetic apomictic apomictical aponeurotic apopemptic +apophatic apophyseal apoplectic apoplectiform apoplectoid aposiopetic apostate +apostolic apostolical apostrophic apothecial apothegmatic apothegmatical +apotropaic appalachian appalled appalling appareled apparent apparitional +appealable appealing appeasable appeasing appellant appellate appellative +appendaged appendant appendicular apperceptive appetent appetising appetitive +appetizing applaudable apple-scented apple-shaped apple-sized applicable +applicative applicatory applied appointed appointive apportionable apportioned +apposable apposite appositional appositive appraising appreciable appreciated +appreciative apprehended apprehensible apprehensive apprenticed appressed +approachable approaching approbative approbatory appropriable appropriate +appropriative approved approving approximate approximative appurtenant apractic +apraxic apropos apsidal apt apteral apterous aptitudinal aquacultural aquaphobic +aquatic aqueous aquicultural aquiferous aquiline arabian arabic arable araceous +arachnidian arachnoid aramaean aramaic aramean araneidal araneidan arawakan +arbitrable arbitral arbitrary arbitrational arbitrative arboraceous arborary +arboreal arboreous arborescent arboresque arborical arboriform arborous arcadian +arcane arced arch archaean archaeologic archaeological archaeozoic archaic +archaistic archangelic archangelical archdiocesan archducal archean arched +archegonial archegoniate archeologic archeological archeozoic archepiscopal +archesporial archetypal archetypical archidiaconal archiepiscopal arching +archipelagic architectonic architectural archival archosaurian arciform arco +arctic arcuate ardent arduous areal arenaceous arenicolous areolar areolate +argent argentic argentiferous argentine argentinian argentous argillaceous +argive arguable argumentative argus-eyed arid ariled arillate ariose +aristocratic aristocratical aristotelean aristotelian aristotelic arithmetic +arithmetical armed armenian armillary arminian armless armlike armor-clad armor- +plated armored armorial armour-clad armour-plated armoured aroid aromatic +around-the-clock aroused arranged arrant arrayed arresting arrhythmic +arrhythmical arrogant arrow-shaped arsenical arsenious artefactual arterial +arteriolar arteriosclerotic arteriovenous artesian artful arthralgic arthritic +arthromeric arthropodal arthropodan arthropodous arthrosporic arthrosporous +arthurian articled articular articulary articulate articulated articulative +articulatory artifactual artificial artiodactyl artiodactylous artistic artless +artsy-craftsy arty arty-crafty arundinaceous aryan asat ascendable ascendant +ascendent ascendible ascending ascensional ascensive ascertainable ascertained +ascetic ascetical ascitic asclepiadaceous ascocarpous ascomycetous ascosporic +ascosporous ascribable aseptic asexual ash-blonde ash-gray ash-grey ashamed +ashen ashy asian asiatic asinine askance askant askew aslant asleep aslope +asocial aspectual asphaltic aspheric aspherical asphyxiated asphyxiating +aspirant aspiring asquint assailable assamese assassinated assaultive assentient +assertable asserted asserting assertive assessable assiduous assignable assigned +assimilable assimilating assimilative assimilatory assistant assisted assistive +associable associate associational associative associatory assonant assorted +assuasive assumed assuming assumptive assured assurgent assuring astatic +asteriated asterisked asterismal asternal asteroid asteroidal asthenic asthmatic +astigmatic astir astomatal astomatous astonied astonished astonishing astounded +astounding astragalar astral astringent astrocytic astrological astronautic +astronautical astronomic astronomical astrophysical astute astylar asunder +asymmetric asymmetrical asymptomatic asymptotic asynchronous asyndetic asynergic +atactic ataractic ataraxic atavistic ataxic ateleiotic atheist atheistic +atheistical athenian atheromatic atheromatous atherosclerotic athirst athletic +atilt atlantic atmospheric atmospherical atomic atomistic atomistical atonal +atonalistic atonic atoxic atrabilious atrial atrioventricular atrip atrocious +atrophic atrophied attachable attached attacking attainable attained attempted +attendant attended attention-getting attentional attentive attenuate attenuated +attested attic attired attitudinal attractable attractive attributable +attributive attrited attritional atypical auburn auctorial audacious audenesque +audible audile audio-lingual audiometric audiovisual auditive auditory augean +augitic augmentative augmented august augustan auld aural aureate auric +auricular auriculate auriculated auriculoventricular auriferous auriform auroral +aurorean aurous auscultatory auspicious austenitic austere austral australasian +australian australopithecine austrian austronesian autacoidal autarchic +autarchical autarkic autarkical authentic authenticated authorial authorised +authoritarian authoritative authorized autistic autobiographic autobiographical +autocatalytic autochthonal autochthonic autochthonous autocratic autodidactic +autoecious autoerotic autofluorescent autogamic autogamous autogenetic autogenic +autogenous autographed autographic autoicous autoimmune autoloading autologous +autolytic automated automatic automatonlike automotive autonomic autonomous +autophytic autoplastic autoradiographic autosemantic autosomal autotelic +autotomic autotrophic autotypic autumn-blooming autumn-flowering autumnal +auxetic auxiliary auxinic available avant-garde avaricious avascular avellan +avellane avenged average averse aversive avertable avertible avestan avian avid +avifaunal avifaunistic avionic avirulent avitaminotic avocado avocational +avoidable avowed avuncular awaited awake awakened award-winning aware awash away +awe-inspiring aweary awed aweigh aweless awesome awestricken awestruck awful +awheel awing awkward awl-shaped awless awned awninged awnless awny awol awry +axenic axial axile axillary axiological axiomatic axiomatical axonal azerbaijani +azido azimuthal azo azoic azonal azonic azotemic azotic azure azygos azygous +babelike baboonish baby-faced babyish babylonian baccate bacchanal bacchanalian +bacchantic bacchic bacciferous baccivorous bacillar bacillary bacilliform back +back-channel back-geared back-to-back backbreaking backed backhand backhanded +backless backmost backstage backstair backstairs backswept backward bacteremic +bacterial bactericidal bacterioid bacterioidal bacteriologic bacteriological +bacteriolytic bacteriophagic bacteriophagous bacteriostatic bacteroid +bacteroidal baculiform bad bad-mannered bad-tempered baffled baffling bag-shaped +baggy bahai bahamian bahraini bailable baked baking balanced balconied bald +bald-faced bald-headed bald-pated balding baleful balking balky ball-hawking +ball-shaped balletic ballistic bally balmy balsam-scented balsamic balsamy +baltic balzacian banal banausic bandaged banded bandy bandy-legged baneful bang- +up banging bangladeshi bankable bankrupt banned banner bantam bantering bantoid +bantu bantu-speaking baptised baptismal baptistic baptized bar-shaped barbadian +barbarian barbaric barbarous barbate barbecued barbed barbellate bardic bare +bare-ass bare-assed bare-breasted bare-knuckle bare-knuckled bareback barebacked +bared barefaced barefoot barefooted barehanded bareheaded barelegged bargain- +priced baric baritone barky barmy barographic barometric barometrical baronial +baroque barred barrel-shaped barreled barrelled barren barricaded barytic basal +basaltic base base-forming baseborn based baseless bashful basic basidial +basidiomycetous basidiosporous basifixed basilar basilary basilican basinal +basined basipetal basiscopic basket-shaped basophilic bass bastard bastardised +bastardized bastardly bastioned bated bathetic batholithic batholitic bathyal +bathymetric bathymetrical batrachian bats batter-fried battered battery-powered +battle-scarred battleful battlemented batty batwing bauxitic bavarian bawdy bay +bayesian beaded beadlike beady beady-eyed beaked beakless beaklike beaming +beamish beamy bean-shaped bear-sized bearable bearded beardless beardown bearing +bearish beastly beat beat-up beatable beaten beaten-up beatific beatified +beauteous beautiful becalmed becoming bedaubed bedded bedewed bedfast bedimmed +bedless bedraggled bedrid bedridden beechen beefed-up beefy beery beethovenian +beetle beetle-browed beetling befitting befogged beforehand befouled befuddled +beggarly beginning begotten begrimed beguiled beguiling behavioral behaviorist +behavioristic behavioural behaviourist behaviouristic beheaded behind behind- +the-scenes behindhand beholden beige belarusian belated belemnitic belgian +believable belittled belittling bell-bottom bell-bottomed bell-shaped bellbottom +belletristic bellicose bellied belligerent belly-up bellying bellyless beloved +belowground belt-fed belt-like belt-shaped belted beltless beltlike bemused +bendable bended benedictine benedictive benedictory benefic beneficed beneficent +beneficial beneficiary benevolent bengali benighted benign benignant beninese +bent benthal benthic benthonic bentonitic benumbed benzenoid benzoic benzylic +bereaved bereft bermudan berried berrylike berserk beseeching besieged besotted +bespectacled bespoke bespoken besprent best best-known best-loved best-selling +bestial bestubbled beta betrothed better better-known better-looking bettering +betting betulaceous bewhiskered bewildered bewitched bewitching bhutanese +biannual bias biased biaural biauricular biaxal biaxate biaxial bibbed bibless +biblical bibliographic bibliographical bibliolatrous bibliomaniacal bibliophilic +bibliopolic bibliothecal bibliothecarial bibliotic bibulous bicameral bicapsular +bicentenary bicentennial bicentric bicephalous bichromated bichrome bicipital +bicolor bicolored bicolour bicoloured biconcave biconvex bicorn bicornate +bicorned bicornuate bicornuous bicuspid bicuspidate bicyclic bicylindrical +biddable bidentate bidirectional biedermeier biennial biface bifacial bifid +bifilar biflagellate bifocal bifoliate biform bifurcate bifurcated big big- +bellied big-boned big-chested big-shouldered big-ticket bigamous bigeminal +bigeneric bigger biggish bigheaded bighearted bigmouthed bignoniaceous bigoted +bilabial bilabiate bilateral bilgy biliary bilinear bilingual bilious billed +billiard billion billionth billowing billowy bilobate bilobated bilobed +bilocular biloculate bimanual bimestrial bimetal bimetallic bimetallistic +bimillenial bimodal bimolecular bimonthly bimorphemic bimotored binary binate +binaural bindable binding binocular binomial binominal binuclear binucleate +binucleated biocatalytic biochemical bioclimatic biodegradable biogenetic +biogenic biogenous biogeographic biogeographical biographic biographical +biologic biological biologistic bioluminescent biomedical bionic bionomic +bionomical biosynthetic biosystematic biotic biotitic biotypic biovular biparous +bipartisan bipartite bipartizan biped bipedal bipinnate bipinnatifid bipolar +biquadratic biracial biradial biramous birch birchen bird's-eye birefringent +birken bisectional biserrate bisexual bismarckian bismuthal bismuthic bisontine +bistered bistred bistroic bisulcate bit-by-bit bitchy biting bitter bitterish +bittersweet bittie bitty bitumenoid bituminoid bituminous bivalent bivalve +bivalved bivariate biweekly biyearly bizarre bizonal blabbermouthed blabby black +black-and-blue black-and-tan black-and-white black-barred black-coated black- +gray black-grey black-haired black-marked black-market black-seeded black-tie +blackened blackguardly blackish blackish-brown blackish-gray blackish-grey +blackish-red bladderlike bladdery bladed bladelike blae blamable blame blameable +blamed blameful blameless blameworthy blanched bland blank blanket blanketed +blaring blase blasphemous blasted blastemal blastematic blastemic blasting +blastocoelic blastodermatic blastodermic blastogenetic blastomeric blastomycotic +blastoporal blastoporic blastospheric blastular blatant blate blazing bleached +bleak blear blear-eyed bleary bleary-eyed blebbed blebby blemished blended +blessed blest blighted blimpish blind blinded blindfold blindfolded blinding +blinking blissful blistering blistery blithe blithesome blockaded blockading +blocked blockheaded blockish blocky blond blonde blood-and-guts blood-filled +blood-red blood-related bloodcurdling blooded bloodguilty bloodless bloodshot +bloodstained bloodsucking bloodthirsty bloody bloody-minded blooming blotched +blotchy blotto blow-by-blow blown blown-up blowsy blowy blowzy blubbery blue +blue-black blue-blind blue-blooded blue-chip blue-collar blue-eyed blue-flowered +blue-fruited blue-gray blue-green blue-grey blue-lilac blue-purple blue-ribbon +blue-sky blue-violet blue-white blueish bluff bluish bluish-gray bluish-grey +bluish-lilac bluish-purple bluish-violet bluish-white blunt blunted blurred +blurry blushful blushing blustering blusterous blustery boastful boat-shaped +bobtail bobtailed bodacious bodied bodiless bodily bodyless boeotian boffo +bogartian boggy bogus bohemian boiled boisterous bold bolivian bolographic +bolometric bolshevik bolshevist bolshevistic bolshy bombastic bombproof bondable +bone bone-covered bone-dry bone-idle bone-lazy boned boneheaded boneless +bonelike boney bonkers bonnie bonny bony bony-plated bonzer bookable booked +bookish boolean booming boon boorish boot-shaped booted bootleg bootless +bootlicking boozy boracic borated bordered borderline boreal bored boric boring +born born-again boronic boskopoid bosky bosnian bosomed bosomy boss boss-eyed +bossy botanic botanical botched botchy both bothered bothersome botonee botonnee +botryoid botryoidal botswanan bottle-fed bottle-green bottle-shaped bottom +bottom-dwelling bottom-feeding bottom-up bottomed bottomless bottommost +botuliform botulinal bouffant boughed boughless boughten bouldered bouldery +bouncing bouncy bound bounded bounden bounderish boundless bounteous bountied +bountiful bourgeois boustrophedonic bovid bovine bowed bowelless bowery bowfront +bowing bowl-shaped bowleg bowlegged box-shaped boxed boxed-in boxlike boxy +boyish boylike boytrose braced brachial brachiate brachiopod brachiopodous +brachycephalic brachycranial brachycranic brachydactylic brachydactylous +brachypterous brachyurous bracing brackish bracteal bracteate bracted +bracteolate brag braggart bragging braggy brahminic brahminical braided brainish +brainless brainsick brainwashed brainy braised braky braless brambly bran-new +branched branchial branchiate branching branchiopod branchiopodan branchiopodous +branchless branchy brand-new branded brash brassbound brasslike brassy brattish +bratty brave braw brawny brazen brazen-faced brazilian breakable breakaway +breakneck breast-fed breasted breastless breathed breathing breathless +breathtaking breech-loading breeched breeding breezy bregmatic briary bribable +brick-shaped brickle brickly bridal bridgeable brief briefless briery bright +bright-red brightly-colored brightly-coloured brilliant brimful brimfull +brimless brimming brinded brindle brindled brine-cured briny brisant brisk +bristle-pointed bristled bristlelike bristly britannic british briton brittle +broached broad broad-brimmed broad-headed broad-leafed broad-leaved broad-minded +broad-shouldered broadband broadleaf broadloom broadnosed broadside +brobdingnagian brocaded broiled broke broken broken-backed broken-down broken- +field brokenhearted bromic bromidic bronchial bronchiolar bronchitic +bronchoscopic bronze bronze-red bronzed bronzy brooding broody brotherlike +brotherly brown brown-black brown-gray brown-green brown-grey brown-haired +brown-purple brown-speckled brown-striped browned brownish brownish-black +brownish-gray brownish-green brownish-grey brownish-orange brownish-purple +brownish-red brownish-speckled brownish-striped brownish-yellow bruising brumal +brummagem brumous bruneian brunet brunette brushed brushlike brushy brusk +brusque brut brutal brute brutish bryophytic bubaline bubbling bubbly bubonic +buccal buck-toothed buckram buckshee bucolic buddhist buddhistic budding buddy- +buddy budgetary buff buff-brown buff-colored buff-coloured buffeted buffoonish +bugged buggy built built-in built-up buirdly bulb-shaped bulbaceous bulbar +bulbed bulblike bulbous bulgarian bulging bulgy bulimic bulky bullate bullet- +headed bulletproof bullheaded bullish bullnecked bullocky bully bullying bum +bumbling bumper-to-bumper bumpkinly bumptious bumpy bunchy bundled-up bungaloid +bungled bunglesome bungling buoyant burbling burbly burdened burdenless +burdensome bureaucratic burglarious burglarproof buried burked burled burlesque +burly burmese burnable burned burned-out burned-over burning burnished burnt +burnt-out burr-headed burred burrlike burry bursal bursiform burundi burundian +bush bush-league bushed bushwhacking bushy businesslike bust busted bustling +busty busy busybodied butch butcherly buteonine butterfingered butterfly-shaped +buttery button-down button-shaped buttoned buttoned-down buttoned-up buttonlike +buttony buttressed butyraceous butyric buxom buzzing bygone bypast byzantine c +cabalistic cachectic cackly cacodaemonic cacodemonic cacodylic cacogenic +cacophonic cacophonous cacuminal cadastral cadaveric cadaverous caddish cadenced +cadent caducean caducous caecal caecilian caesarean caesarian caespitose +caesural caffeinic cagey cagy cairned caitiff calamitous calando calcaneal +calcareous calced calceiform calceolate calcic calcicolous calciferous calcific +calcifugous calcitic calculable calculated calculating calculative calculous +calcuttan calefacient calefactive calefactory calendered calendric calendrical +calibrated caliche-topped calico calicular californian caliginous calisthenic +callable caller calligraphic calligraphical callipygian callipygous +callithumpian callous calloused callow calm caloric calorie-free calorifacient +calorific calorimetric calumniatory calumnious calvinist calvinistic +calvinistical calyceal calycinal calycine calycled calycular calyculate +calyptrate cambial cambodian cambrian cameroonian camouflaged camp camp-made +campanular campanulate campanulated campestral camphoraceous camphorated +camphoric campy campylotropous can-do canadian canalicular canaliculate canary +canary-yellow cancellate cancellated cancelled cancellous cancerous cancroid +candent candescent candid candied candy-like candy-scented canescent canicular +canine cankerous canned cannibalic cannibalistic cannular canny canonic +canonical canonised canonist canonized canopied canorous cantabile cantankerous +canted cantering cantonal canty capable capacious capacitive caparisoned +capetian capillary capital capitalist capitalistic capitate capitular capitulary +cappadocian capped capricious caprine capsular capsulate capsulated captious +captivated captivating captive caramel carangid carbocyclic carbolated +carbonaceous carbonated carbonic carboniferous carbonous carbonyl carbonylic +carboxyl carboxylic carbuncled carbuncular carcinogenic carcinomatous card- +playing cardboard cardiac cardinal cardiographic cardiologic cardiopulmonary +cardiorespiratory cardiovascular care-laden cared-for carefree careful careless +careworn carinal carinate carinated caring carious carmelite carminative carmine +carnal carnassial carnation carnivorous carolean caroline carolingian carotid +carousing carpal carpellary carpellate carpetbag carpetbagging carpeted +carpophagous carposporic carposporous carroty carsick cartesian carthaginian +carthusian cartilaginous cartographic cartographical caruncular carunculate +carunculated carunculous carved carvel-built carven caryophyllaceous case-by- +case case-hardened casebook cased caseous cash-and-carry cashable cashed +cassocked cast-iron cast-off casteless castellated castled castrated casual +casuistic casuistical cata-cornered catabatic catabolic catachrestic +catachrestical cataclinal cataclysmal cataclysmic catacorner catadromous catalan +catalatic catalectic cataleptic catalytic catamenial cataphatic cataphoretic +cataplastic catapultian catapultic catarrhal catarrhine catarrhinian +catastrophic catatonic catching catchpenny catchy catechetic catechetical +catechismal catechistic categorematic categorial categoric categorical +categorised categorized catenulate cater-cornered catercorner caterpillar- +tracked cathartic cathectic cathedral cathodic catholic cationic catkinate +catoptric catoptrical cattish catty catty-corner catty-cornered caucasian +caucasic caucasoid caudal caudate caudated caulescent cauline caulked causal +causative causeless caustic cautionary cautious cavalier cavernous cavitied cc +ccc cd ceaseless cecal cedar-scented cedarn ceilinged celebrated celebratory +celestial celiac celibate cell-free cell-like cellular celluloid cellulosid +celtic cementitious cenobitic cenobitical cenogenetic cenozoic censored +censorial censorious censurable centenarian centenary centennial center centered +centesimal centigrade central centralised centralising centralist centralistic +centralized centralizing centric centrical centrifugal centripetal centrist +centroidal centromeric centrosomic centrosymmetric cephalic cephalopod +cephalopodan ceramic cercarial cereal cerebellar cerebral cerebrospinal +cerebrovascular ceremonial ceremonious ceric cerise cernuous cerous certain +certifiable certificated certificatory certified cerulean ceruminous cervical +cervine cesarean cesarian cespitose cetacean cetaceous ceylonese chadian chaetal +chaetognathan chaetognathous chafed chafflike chaffy chagrined chained chainlike +chaldaean chaldean chaldee chalky challengeable challenging chalybeate chambered +champion champleve chance chanceful chancroidal chancrous chancy changeable +changed changeful changeless changing chanted chantlike chaotic chapfallen +chapleted chapped characteristic characterless charcoal charcoal-gray charcoal- +grey chargeable charged charismatic charitable charmed charming charnel +chartaceous chartered chartless chartreuse chary chasidic chassidic chaste +chatoyant chatty chauvinistic cheap cheapjack cheating chechen checked checkered +cheeky cheerful cheering cheerless cheery cheeselike cheeseparing cheesy chelate +chelated cheliceral chelicerate chelicerous cheliferous chelonian chemic +chemical chemiluminescent chemisorptive chemoreceptive chemosorptive +chemotherapeutic chemotherapeutical chequered cherished cherry cherry-red +cherry-sized cherty cherubic chestnut chestnut-brown chestnut-colored chestnut- +coloured chesty chewable chewy chian chiasmal chiasmatic chiasmic chic chichi +chicken chicken-breasted chickenhearted chief chilblained child-centered +childbearing childish childless childlike childly chilean chiliastic chilling +chilly chimeral chimeric chimerical chinchy chinese chinese-red chinked chinless +chintzy chippendale chipper chiromantic chirpy chisel-like chiseled chitinous +chivalric chivalrous chlamydeous chlamydial chlorophyllose chlorophyllous +chlorotic chock-full chockablock chockful chocolate-brown chocolate-colored +chocolate-coloured choice choke-full choked choky choleraic choleric cholinergic +chondritic choosey choosy chopfallen chopped choppy choragic choral chordal +chordate choreographic choric chorionic christian christianly christless +christlike christly christological chromatic chromatinic chromatographic +chromatographical chromosomal chronic chronological chthonian chthonic chubby +chuck-full chuffed chukker-brown chummy chunky churchgoing churchillian churchly +churlish churned-up churning churrigueresco churrigueresque chylaceous +chylifactive chylifactory chyliferous chylific chylous ci cigar-shaped cilial +ciliary ciliate ciliated cimmerian cinematic cinerary cinnabar cinnamon-colored +cinnamon-coloured cinnamon-red cinnamon-scented circadian circinate circuitous +circular circular-knit circulating circulative circulatory circumboreal +circumferent circumferential circumlocutious circumlocutory circumpolar +circumscribed circumspect circumstantial cisalpine cislunar cismontane cissy +citified citric citrous city-born city-bred city-like cityfied citywide civic +civil civil-libertarian civilian civilised civilized cl clad clairvoyant clamant +clamatorial clammy clamorous clandestine clanging clangorous clanking clannish +clarifying clarion clashing class-conscious classic classical classicistic +classifiable classificatory classified classless classy clastic clathrate +clattery clausal claustrophobic claw-shaped clawed clawlike clayey clean clean- +burning clean-cut clean-handed clean-limbed clean-living clean-shaven cleanable +cleanly cleansing clear clear-cut clear-eyed clear-sighted clear-thinking +cleared clearheaded cleavable cleft cleistogamic cleistogamous clement clenched +clerical clever cliched client-server cliff-hanging climactic climatic +climatical climbable clinched clincher-built clinical clinker-built clinking +clinquant clip-on clipped cliquish clitoral clitoric cloak-and-dagger cloaked +clockwise cloddish clogged clogging cloggy cloisonne cloistered cloistral clonal +clonic close close-fitting close-grained close-hauled close-knit close-minded +close-packed close-set closed closed-captioned closed-chain closed-circuit +closed-door closed-minded closed-ring closefisted closelipped closely-held +closemouthed closing clothed clothesless clotted cloud-covered clouded cloudless +cloudlike cloudy clove-scented cloven cloven-footed cloven-hoofed clownish +clownlike cloying cloze club-shaped clubable clubbable clubbish clubby +clubfooted clueless clumsy clunky clustered cluttered clv clx clxv clxx clxxv +clxxx co-ed co-occurrent co-ordinated co-referent coagulable coagulate +coagulated coal-black coal-burning coal-fired coalesced coalescent coalescing +coarctate coarse coarse-furred coarse-grained coarse-haired coarse-textured +coarsened coastal coastwise coated coaxal coaxial coaxing cobwebby coccal +coccoid coccygeal cochlear cock-a-hoop cockamamie cockamamy cockeyed cockney +cocksure cocky cod codified coeducational coeliac coenobitic coenobitical +coequal coercive coetaneous coeval coexistent coexisting coextensive cogent +cogged cogitable cogitative cognate cognisable cognisant cognitive cognizable +cognizant cognoscible coherent cohesive coiled coiling coin-operated coincident +coincidental coinciding coital cold cold-blooded cold-eyed cold-temperate +coldhearted coleridgean coleridgian colicky collaborative collagenic collagenous +collapsable collapsible collarless collateral collect collectable collected +collectible collective collectivised collectivist collectivistic collectivized +collegial collegiate collinear colloidal colloquial collusive colombian colonial +colonic colonised colonized colonnaded color color-blind colorectal colored +colorfast colorful colorimetric colorimetrical colorless colossal colour colour- +blind coloured colourful colourless coltish columbian columnar columned +columniform columnlike comal comate comatose comb-like combat-ready combatant +combative combed combinable combinational combinative combinatorial combinatory +combined comburant comburent combustible combustive come-at-able comely +comestible comet-like cometary cometic comfortable comforted comforting +comfortless comfy comic comical coming commanding commemorating commemorative +commendable commensal commensurable commensurate commercial commercial-grade +commercialised commercialized comminatory commiserative commissioned committed +commodious common common-law commonplace commonsense commonsensible +commonsensical communal communicable communicational communicative communicatory +communist communistic commutable commutative comose compact companionable +companionate comparable comparative compartmental compartmentalised +compartmentalized compartmented compassionate compatible compelling compendious +compensable compensated competent competitive competitory complacent complaining +complaintive complaisant complemental complementary complete completed +completing complex compliant complicated complimentary composed composite +compositional compound compounded comprehended comprehendible comprehensible +comprehensive compressed compressible compromising compulsive compulsory +computable computational comradely concave concavo-concave concavo-convex +concealed concealing conceited conceivable concentrated concentric concentrical +conceptional conceptive conceptual conceptualistic concerned concerted +concessive conciliable conciliative conciliatory concise concluded concluding +conclusive concomitant concordant concrete concretistic concupiscent concurrent +concurring condemnable condemnatory condemning condescending condign conditional +conditioned condolent conducive conductive condylar cone-bearing cone-shaped +conelike confederate confederative confident confidential confiding +configurational configured confined confining confirmable confirmative +confirmatory confirmed confirming confiscate conflicting confluent conformable +conforming conformist confounded confounding confrontational confucian +confusable confused confusing confutable confutative congealed congeneric +congenerical congenerous congenial congenital congested congestive conglomerate +congolese congratulatory congregational congregationalist congressional +congruent congruous conic conical coniferous conjectural conjoined conjoint +conjugal conjugate conjugated conjunct conjunctival conjunctive connate +connatural connected connective conniving connotational connotative connubial +conquerable consanguine consanguineal consanguineous conscience-smitten +conscienceless conscientious conscionable conscious consecrate consecrated +consecutive consensual consentaneous consentient consenting consequent +consequential conservative conserved considerable considerate considered +consistent consolable consolatory consolidated consolidative consoling consonant +consonantal conspecific conspicuous conspirative conspiratorial constant +constipated constituent constituted constitutional constitutive constrained +constraining constricted constricting constrictive constructive constructive- +metabolic consubstantial consular consultative consultatory consultive +consumable consuming consummate consummated consumptive contagious contained +contaminated contaminating contaminative contemplative contemporaneous +contemporary contemptible contemptuous content contented contentious +conterminous contestable contested contextual contiguous continent continent- +wide continental contingent continual continuant continued continuing continuous +contorted contraband contrabass contraceptive contraclockwise contractable +contracted contractile contractual contradictory contralateral contralto +contrapuntal contrarious contrary contrasting contrastive contrasty contributing +contributive contributory contrite contrived controllable controlled controlling +controversial contumacious contumelious convalescent convenient conventional +conventionalised conventionalized conventual convergent conversant +conversational converse converted convertible convex convexo-concave convexo- +convex conveyable convinced convincible convincing convivial convolute +convoluted convulsive cooccurring cooked cookie-cutter cookie-sized cool cool- +white coolheaded cooperative coordinate coordinated coordinating coordinative +copacetic copasetic copernican copesetic copesettic copious coplanar copper- +bottomed coppery coptic copular copulative copulatory copyrighted coquettish +coral coral-red corbelled cordate corded cordial cordiform cordless coreferent +coreferential coriaceous corinthian corked corking corky cormose cormous corn- +fed corneal corned corneous cornered cornish corny coronary coroneted corporal +corporate corporatist corporeal corpulent corpuscular correct correctable +corrected correctional corrective correlate correlated correlational correlative +correspondent corresponding corrigible corroborant corroborative corroboratory +corroded corrosion-resistant corrosive corrugated corrupt corrupted corruptible +corrupting corruptive corsican cortical corticifugal corticipetal cortico- +hypothalamic corticoafferent corticoefferent corticofugal coruscant corvine +corymbose coseismal coseismic cosher cosignatory cosmetic cosmic cosmogenic +cosmogonic cosmogonical cosmologic cosmological cosmopolitan cost-effective +cost-efficient cost-plus costal costate costive costless costly costumed cosy +coterminous cottony cottony-white cotyloid cotyloidal couchant countable counter +counteractive counterbalanced counterclockwise counterfactual counterfeit +counterinsurgent counterintuitive counterpoised counterproductive +counterrevolutionary countertenor counterterror counterterrorist countless +countrified country-bred country-style countryfied countrywide countywide +coupled courageous court-ordered courteous courtly cousinly couth couthie couthy +covalent covariant covered covert coveted covetous cowardly cowl-shaped cowled +coy cozy crabbed crabby crabwise crack crackbrained cracked cracker-barrel +crackers cracking crackle crafty cragfast cragged craggy cramped cranial +craniometric craniometrical crank cranky crannied crappy crapulent crapulous +crashing crass craved craven crazed crazy creaky cream-colored creamy creamy- +colored creamy-white creamy-yellow crease-resistant creaseless creaseproof +creative credal credentialled credible creditable credited creditworthy +credulous creedal creepy creepy-crawly crenate crenated crenulate crenulated +creole crepuscular crescendo crescent crescent-shaped cresson crested +crestfallen cretaceous cretinous criminal criminative criminatory criminological +crimson crimson-magenta crimson-purple crimson-yellow cringing crinkled crinkly +crinoid crippled crippling crisp crispate crispy crisscross crisscrossed +criterial criterional critical croaky croatian crocked crocketed cromwellian +crookback crookbacked crooked cropped cross cross-banded cross-cultural cross- +eyed cross-grained cross-linguistic cross-modal cross-ply cross-pollinating +cross-section cross-sectional cross-sentential cross-shaped cross-town crossbred +crossed crosshatched crosstown crosswise crotchety croupy crow-sized crowded +crowing crowned crowning crownless crucial cruciate cruciferous cruciform cruddy +crude cruel crumbly crummy crumpled crural crushed crushing crustacean +crustaceous crustal crusted crustlike crustose crusty crying cryogenic cryonic +cryptanalytic cryptic cryptical cryptobiotic cryptogamic cryptogamous +cryptographic cryptographical cryptologic cryptological crystalised crystalized +crystalline crystallised crystallized ctenoid cuban cube-shaped cubelike cubic +cubical cubiform cubist cubistic cubital cuboid cuboidal cucumber-shaped +cucurbitaceous cuddlesome cuddly culinary culpable cultivable cultivatable +cultivated cultural cultured cumbersome cumbrous cumulative cumuliform cumulous +cuneal cuneate cuneiform cunning cuplike cupric cuprous cupular cupulate curable +curative curatorial curdled cured curious curled curling curly curly-coated +curly-grained curly-haired curly-leafed curly-leaved curmudgeonly current +curricular currish cursed cursive cursorial cursory curst curt curtained +curtainless curtal curvaceous curved curvey curvilineal curvilinear curving +curvy cushioned cushiony cushy cuspate cuspated cusped cuspidal cuspidate +cuspidated cussed custard-like custodial custom custom-built custom-made +customary cut cut-and-dried cut-and-dry cut-price cut-rate cutaneal cutaneous +cute cuticular cuttable cutthroat cutting cutting-edge cv cx cxl cxlv cxv cxx +cxxv cxxx cxxxv cyan cyanobacterial cyanogenetic cyanogenic cyanophyte +cybernetic cyclic cyclical cycloid cycloidal cyclonal cyclonic cyclonical +cyclopean cyclothymic cylindric cylindrical cylindrical-stemmed cymose cynical +cyprian cyprinid cyprinoid cypriot cypriote cyrillic cystic cytoarchitectonic +cytoarchitectural cytogenetic cytogenetical cytokinetic cytologic cytological +cytolytic cytomegalic cytopathogenic cytophotometric cytoplasmatic cytoplasmic +cytoplastic cytotoxic czarist czaristic czech czechoslovakian d d.o.a. dabbled +dacitic dactylic daedal daft dagger-like daily dainty daisylike dalmatian +damaged damaging damascene damask damn damnable damnatory damned damning damp +dampish danceable dandified dandy dandyish dangerous danish dank dantean +dantesque dapper dappled daredevil daring dark dark-blue dark-brown dark-coated +dark-colored dark-coloured dark-fruited dark-gray dark-green dark-grey dark- +haired dark-skinned dark-spotted darkened darkening darkish darkling darling +darned darwinian dashed dashing dastard dastardly data-based datable dateable +dated dateless daughterly daunted daunting dauntless day-after-day day-and-night +day-by-day day-old day-to-day daylong dazed dazzled dazzling de-iodinating dead +dead-end dead-on deadened deadening deadlocked deadly deadpan deaf deaf-and-dumb +deaf-mute deafened deafening dear dearly-won deathless deathlike deathly debased +debasing debatable debauched debile debilitated debilitating debilitative +debonair debonaire deboned debonnaire decadent decalescent decapitated +decasyllabic decayable decayed deceased deceitful decent decentralised +decentralising decentralized decentralizing deceptive decided deciding deciduous +decimal decipherable deciphered decisive deckle-edged deckled declamatory +declarable declarative declaratory declared declassified declivitous decollete +decomposable decompositional decompound deconsecrated deconstructionist +decorated decorative decorous decreased decreasing decreed decrepit decrescendo +decumbent decurved decussate dedicated dedifferentiated deducible deductible +deductive deep deep-chested deep-eyed deep-fried deep-laid deep-lobed deep-mined +deep-pink deep-rooted deep-sea deep-seated deep-set deep-water deep-yellow +deepening defamatory defeasible defeated defective defenceless defendable +defending defenseless defensible defensive deferent deferential defervescent +defiant deficient defiled definable defined definite definitive deflated +deflationary deflective defoliate defoliated deformational deformed deft defunct +degage degenerate degenerative degraded degrading degressive dehiscent +dehumanised dehumanized dehydrated deictic deific deist deistic dejected delayed +delectable deleterious deliberate deliberative delible delicate delicious +delighted delightful delimited delineate delineated delineative delinquent +deliquescent delirious deliverable delphian delphic deltoid delusional delusive +delusory deluxe demagogic demagogical demanding demeaning demented democratic +demode demographic demolished demon-ridden demoniac demoniacal demonic +demonstrable demonstrated demonstrative demoralised demoralising demoralized +demoralizing demosthenic demotic demulcent demure demythologised demythologized +denary denatured denaturised denaturized dendriform dendritic dendroid +dendroidal deniable denigrating denigrative denigratory denominational +denotative denotive dense dental dentate dented denticulate denudate denuded +denumerable denunciative denunciatory departed departmental dependable dependant +dependent depicted depictive depilatory depilous depletable depleted deplorable +depopulated depraved deprecating deprecative deprecatory depreciating +depreciative depreciatory depressant depressed depressing deprived deranged +derelict derisive derisory derivable derivational derivative derived dermal +dermatologic dermatological dermic derogative derogatory descendant descendent +descending describable described descriptive desecrated desegrated desensitising +desensitizing deserted deserved deserving desiccate desiccated designate +designative designed designing desirable desired desirous desk-bound deskbound +desolate despairing desperate despicable despised despiteful despoiled +despondent despotic despotical destined destitute destroyable destroyed +destructible destructive destructive-metabolic desultory detachable detached +detailed detectable detected detergent determinable determinant determinate +determinative determined determining deterministic deterrent detersive +detestable detested detonative detractive detrimental deuced deuteranopic +devalued devastating developed developing developmental deviant deviate devil- +may-care devilish devious devoid devoted devotional devouring devout deweyan +dewy dewy-eyed dexter dexterous dextral dextrorotary dextrorotatory dextrorsal +dextrorse dextrous diabatic diabetic diabolic diabolical diachronic diacritic +diacritical diadromous diagnosable diagnostic diagonal diagonalizable +diagrammatic diagrammatical dialectal dialectic dialectical diamagnetic +diamantine diametral diametric diametrical dianoetic diaphanous diaphoretic +diaphyseal diaphysial diarrheal diarrheic diarrhetic diarrhoeal diarrhoeic +diarrhoetic diastolic diatomic diatonic diazo dicarboxylic dicey dichotomous +dichromatic dickensian dickey dicky diclinous dicotyledonous dictated +dictatorial dictyopteran didactic didactical die-cast die-hard diestrous +diestrual dietary dietetic dietetical different differentiable differential +differentiated difficult diffident diffuse diffused diffusing diffusive +digestible digestive dighted digital digitate digitigrade dignified dignifying +digressive dilapidated dilatory dilettante dilettanteish dilettantish diligent +dilute diluted diluvial diluvian dim dim-sighted dim-witted dimensional +dimensioning diminished diminishing diminuendo diminutive dimmed dimorphic +dimorphous dingy dinky diocesan dioecian dioecious dioestrous dioestrual +dionysian diploid diplomatic diplomatical dipolar dipped dipterous dipylon dire +direct directed directing directional directionless directive direful dirigible +dirt dirty dirty-faced dirty-minded disabled disabling disabused disadvantaged +disadvantageous disaffected disagreeable disappointed disappointing disapproving +disarming disarranged disarrayed disastrous disavowable disbelieving disc-shaped +discalceate discalced discarded discernable discernible discerning discharged +disciform disciplinal disciplinary disciplined disclike disclosed discoid +discoidal discombobulated discomfited discomposed discomycetous disconcerted +disconcerting disconfirming disconnected disconsolate discontent discontented +discontinued discontinuous discordant discorporate discouraged discouraging +discourteous discoverable discovered discreditable discredited discreet +discrepant discrete discretional discretionary discriminable discriminate +discriminating discriminative discriminatory discursive disdainful diseased +disembodied disenchanted disenchanting disenfranchised disentangled disfigured +disfranchised disgraced disgraceful disgruntled disguised disgusted disgustful +disgusting dish-shaped disharmonious disheartened disheartening dished +disheveled dishevelled dishonest dishonorable dishonored dishonourable dishy +disillusioned disillusioning disinclined disinfectant disingenuous disinherited +disintegrable disintegrative disinterested disjoined disjoint disjointed +disjunct disjunctive disk-shaped disklike dislikable disliked dislocated +dislogistic disloyal dismal dismantled dismayed dismaying dismissed dismissible +dismissive disobedient disobliging disordered disorderly disorganised +disorganized disoriented disorienting disparaging disparate dispassionate +dispensable dispensed dispersed dispersive dispirited dispiriting displeased +displeasing disposable disposed dispossessed disproportional disproportionate +disputable disputatious disputative disputed disqualified disqualifying +disquieted disquieting disregarded disreputable disrespectful disrupted +disruptive dissatisfactory dissatisfied dissected disseminative dissentient +dissenting dissentious dissident dissilient dissimilar dissimulative dissipated +dissociable dissociative dissoluble dissolute dissolvable dissolved dissonant +dissuasive distaff distal distant distasteful distensible distinct distinctive +distinguishable distinguished distortable distorted distracted distrait +distraught distressed distressful distressing distributed distributional +distributive distrustful disturbed disturbing disunited disused disyllabic +dithyrambic diurnal divalent divergent diverging divers diverse diversified +diversionary diverted diverting dividable divided divinatory divine divisible +divisional divisive divorced dizygotic dizygous dizzy djiboutian do-it-yourself +do-nothing do-or-die doable docile doctoral doctorial doctrinaire doctrinal +documental documentary documented doddering doddery dodgy dog-eared dog-sized +dog-tired dogged dogging doglike dogmatic dogmatical dolabrate dolabriform +doleful dolichocephalic dolichocranial dolichocranic dolomitic dolorous +dolourous doltish dome-shaped domed domestic domesticated domiciliary dominant +dominated dominating domineering dominical dominican donatist done donnean +donnian donnish doomed door-to-door doped dopey dopy dorian doric dormant dormie +dormy dorsal dorsoventral dosed dostoevskian dostoyevskian dot-com doting dotted +dotty double double-barreled double-barrelled double-bass double-bedded double- +breasted double-chinned double-dealing double-dyed double-edged double-faced +double-geared double-humped double-jointed double-quick double-spaced double- +tongued doubled doubtful doubting doughnut-shaped doughy dour dovish dowdy +dowered dowerless down down-and-out down-to-earth downbound downcast downfield +downhearted downhill downlike downmarket downright downscale downstage downstair +downstairs downstream downtown downtrodden downward downward-arching downward- +sloping downwind downy dozen dozy drab draconian drafty dragging draggled +drained draining dramatic dramaturgic dramaturgical draped drastic draughty +drawn drawn-out dread dreaded dreadful dreamed dreamless dreamlike dreamy drear +dreary drenched dress dressed dressed-up dressy dried dried-out dried-up +drifting drill-like drilled drinkable drip-dry dripless drippy driven driving +drizzling drizzly droll drooping droopy dropping dropsical drowsing drowsy +drudging drug-addicted drug-free drugged drugless drum-like drum-shaped drumhead +drunk drunken drupaceous dry dry-cleaned dry-eyed dry-shod dual dual-lane +dualistic dubious dubitable ducal duck-billed duckbill ductile ductless dud due +dulcet dull dull-purple dull-white dulled dumb dumbfounded dumbfounding +dumbstricken dumbstruck dumfounded dumfounding dummy dumpy dun dun-colored dun- +coloured duncical duncish duodecimal duodenal duple duplex duplicable +duplicatable duplicate duplicitous durable dural dusky dusky-colored dusky- +coloured dust-covered dustlike dusty dutch duteous dutiable dutiful duty-bound +duty-free dwarfish dwindling dyadic dyed dying dynamic dynamical dynastic +dysfunctional dysgenic dyslectic dyslexic dyslogistic dyspeptic dysphemistic +dysphoric dysplastic dyspneal dyspneic dyspnoeal dyspnoeic dystopian each eager +eagle-eyed ear-like ear-shaped eared earless earlier earliest early early- +blooming early-flowering earlyish earned earnest earsplitting earthborn +earthbound earthen earthlike earthly earthshaking earthy eased east east-central +eastbound easterly eastern easternmost eastmost eastside eastward easy easygoing +eatable ebionite ebon ebony ebracteate ebullient eccentric ecclesiastic +ecclesiastical eccrine ecdemic echoic echoing echoless echolike echt eclectic +ecologic ecological econometric economic economical ecstatic ectodermal +ectodermic ectomorphic ectopic ectothermic ectozoan ecuadorian ecumenic +ecumenical edacious edematous edental edentate edentulate edentulous edged +edgeless edgy edible edified edifying edited editorial educated educational +educative edwardian eel-shaped eellike eerie eery effaceable effected effective +effectual effeminate efferent effervescent effervescing effete efficacious +efficient efflorescent effluent effortful effortless effulgent effusive +egalitarian egg-filled egg-producing egg-shaped egocentric egoistic egoistical +egotistic egotistical egregious egyptian eidetic eight eight-day eight-fold +eight-membered eight-sided eighteen eighteenth eightfold eighth eightieth +eightpenny eighty eighty-eight eighty-fifth eighty-five eighty-four eighty-nine +eighty-one eighty-seven eighty-six eighty-three eighty-two einsteinian elaborate +elaborated elapsed elastic elasticised elasticized elated elating elder elderly +eldest eldritch elect elected elective electoral electric electrical +electrifying electrocardiographic electrochemical electroencephalographic +electrolytic electromagnetic electromechanical electromotive electronegative +electroneutral electronic electrophoretic electropositive electrostatic +eleemosynary elegant elegiac elemental elementary elephantine elevated eleven +eleven-sided eleventh elfin elfish elflike elicited eligible elite elizabethan +ellipsoid ellipsoidal elliptic elliptical elocutionary elongate elongated +eloquent elucidative elusive elvish elysian emaciated emancipated emancipative +emarginate emasculate emasculated embarrassed embarrassing embattled embedded +embezzled emblematic emblematical embodied emboldened embolic embonpoint +embossed embroiled embryologic embryonal embryonic embryotic emended emergent +emerging emeritus eminent emmetropic emollient emotional emotionless emotive +empathetic empathic emphasised emphasized emphatic emphysematous empiric +empirical employable employed empowered empty empty-bellied empty-handed empty- +headed empurpled empyreal empyrean emulous enabling enamored enate enatic +encased enceinte enchained enchanted enchanting encircled encircling enclosed +encomiastic encompassing encouraged encouraging encroaching encrusted encumbered +encyclical encyclopaedic encyclopedic encysted end-rhymed end-stopped end-to-end +endangered endearing ended endemic endemical endergonic endermatic endermic +endless endocentric endocrinal endocrine endodontic endoergic endogamic +endogamous endogenetic endogenic endogenous endometrial endomorphic +endoparasitic endoscopic endothelial endothermal endothermic endovenous endowed +endozoan endozoic endurable enduring energetic energising energizing energy- +absorbing energy-releasing energy-storing enervated enervating enfeebling +enforceable enforced enfranchised engaged engaging english english-speaking +engorged engraved engrossed engrossing enhanced enhancive enigmatic enigmatical +enjoyable enkindled enlarged enlightened enlightening enlivened enlivening +enmeshed ennobling enolic enormous enough enraged enraptured ensiform +ensorcelled ensuant ensuing entangled enteral enteric enterprising entertained +entertaining enthralled enthralling enthusiastic enticing entire entitled +entomologic entomological entomophilous entozoan entozoic entranced entrancing +entrenched entrepreneurial enumerable enured enveloping enviable envious +environmental envisioned enwrapped enzootic enzymatic eolithic eolotropic eonian +eosinophilic eparchial epenthetic ephemeral ephesian epic epical epicarpal +epicene epicurean epicyclic epicyclical epideictic epideictical epidemic +epidemiologic epidemiological epidermal epidermic epidural epigastric +epigrammatic epileptic epilithic epimorphic epiphyseal epiphysial epiphytic +epiphytotic episcopal episcopalian episodic epistemic epistemological epistolary +epistolatory epithelial epitheliod epizoan epizoic epizootic epoch-making +epochal eponymic eponymous equable equal equanimous equatorial equestrian +equiangular equidistant equilateral equine equinoctial equipoised equipotent +equipped equiprobable equipt equitable equivalent equivocal eradicable erasable +erasmian erect erectile eremitic eremitical ergodic ergonomic ergotic ergotropic +eristic eristical eritrean eroded erogenous erose erosive erotic errant erratic +errhine erring erroneous error-prone errorless ersatz erstwhile erudite eruptive +erythematous erythroid erythropoietic escaped eschatological esophageal esoteric +especial essene essential established esteemed esthetic esthetical estimable +estival estonian estranged estranging estrogenic estrous estuarial estuarine +esurient etched eternal ethereal ethical ethiopian ethnic ethnical ethnocentric +ethnographic ethnographical ethnologic ethnological etiolate etiolated etiologic +etiological etymological eucaryotic eucharistic euclidean euclidian eudaemonic +eudemonic eugenic eukaryotic eulogistic euphemistic euphonic euphonical +euphonious euphonous euphoriant euphoric eupneic eupnoeic eurafrican eurasian +eurasiatic eurocentric european europocentric eusporangiate eutherian eutrophic +evacuant evaluative evanescent evangelical evangelistic evaporable evaporated +evaporative evasive even even-pinnate even-tempered even-textured even-toed +evenhanded eventful eventual ever-changing ever-present evergreen everlasting +every everyday evidenced evident evidential evidentiary evil evil-looking evil- +minded eviscerate evitable evocative evoked evolutionary ex ex-directory +exacerbating exact exacting exaggerated exalted exalting exanimate exasperated +exasperating exaugural exceeding excellent exceptionable exceptional excess +excessive exchangeable exchanged excitable excitant excitative excitatory +excited exciting exclamatory exclusive excogitative excrescent excretory +excruciating exculpated exculpatory excursive excusable excusatory excused +execrable executable executed executive exegetic exegetical exemplary +exemplifying exempt exergonic exhausted exhaustible exhausting exhaustive +exhibitionistic exhilarated exhilarating exhortative exhortatory exigent +exiguous exilic existent existential existentialist existing exocentric exocrine +exodontic exoergic exogamic exogamous exogenic exogenous exonerated exonerative +exorbitant exoteric exothermal exothermic exotic expandable expanded expandible +expansible expansile expansionist expansive expectable expectant expected +expedient expeditionary expeditious expendable expensive experienced experient +experiential experimental expert expiable expiative expiatory expiratory expired +explainable explanatory explicable explicit exploded exploitative exploitatory +exploited exploitive explorative exploratory explosive exponential exportable +exposed expositive expository express expressed expressible expressionist +expressionistic expressionless expressive expurgated exquisite exsanguine +exsanguinous extant extemporaneous extemporary extempore extendable extended +extendible extensible extensile extensional extensive extenuating exterior +exterminable exterminated external exteroceptive exterritorial extinct +extinguishable extinguished extirpable extortionate extra extracellular +extractable extractible extracurricular extradural extragalactic extrajudicial +extralegal extralinguistic extramarital extramural extraneous extraordinaire +extraordinary extrasensory extrasystolic extraterrestrial extraterritorial +extravagant extraversive extravert extraverted extravertive extreme extremist +extricable extrinsic extropic extrospective extroversive extrovert extroverted +extrovertish extrovertive extrusive exuberant exultant exulting exuvial eye- +catching eye-deceiving eye-popping eyed eyeless eyelike eyes-only fab fabian +fabled fabricated fabulous face-saving face-to-face faced faceless faceted +facetious facial facile facilitative facilitatory fact-finding factious +factitious factorial factory-made factual facultative faddish faddy faded faecal +fagged fahrenheit fail-safe failing fain faineant faint faint-hearted +fainthearted fair fair-and-square fair-haired fair-minded fairish faithful +faithless fake falcate falciform falconine fall-blooming fall-flowering +fallacious fallen fallible falling fallow false falsetto falsifiable falstaffian +faltering famed familial familiar familiarised familiarising familiarized +familiarizing famished famous fan-leafed fan-leaved fan-shaped fanatic fanatical +fancied fanciful fancy fancy-free fang-like fanged fanlike fanned fantabulous +fantastic fantastical far far-famed far-flung far-off far-out far-right faraway +farcical farfetched farinaceous farming farseeing farsighted farther farthermost +farthest fascinated fascinating fascist fascistic fashionable fashioned fast +fast-breaking fast-flying fast-footed fast-growing fast-paced fastened +fastidious fastigiate fat fat-free fat-soluble fatal fatalist fatalistic fated +fateful fatheaded fatherless fatherlike fatherly fathomable fatigued fatless +fattened fattening fattish fatty fatuous faucal faultfinding faultless faulty +faustian faux faveolate favorable favored favorite favourable favourite fawn- +colored fawn-coloured fawning fazed fearful fearless fearsome feasible +featherbrained feathered featheredged featherless featherlike feathery featured +featureless febrile fecal feckless feculent fecund federal federate federated +feeble feebleminded feigned feisty felicitous feline fell felonious felted +female feminine feminist femoral fencelike fenestral feral ferial ferine +fermentable ferned fernless fernlike ferny ferocious ferret-sized ferric +ferromagnetic ferrous fertile fertilizable fervent fervid festal festive fetal +fetching fetid fettered feudal feudalistic feudatory fevered feverish feverous +few fewer fewest fey fiber-optic fiberoptic fibre-optic fibreoptic fibrillose +fibrinous fibrocalcific fibrocartilaginous fibrous fickle fictile fictional +fictitious fictive fiddle-shaped fiddling fidgety fiducial fiduciary field-crop +fiendish fierce fiery fifteen fifteenth fifth fiftieth fifty fifty-eight fifty- +fifth fifty-fifty fifty-five fifty-four fifty-nine fifty-one fifty-seven fifty- +six fifty-three fifty-two fig-shaped fighting figural figurative figured fijian +filamentlike filamentous filar filarial filariid file-like filial filiform +filipino filled filmable filmed filmy filter-tipped filthy fimbriate finable +final financial fine fine-grained fine-leafed fine-leaved fine-looking fine- +textured fine-tooth fine-toothed fineable finer finespun fingered fingerless +fingerlike finical finicky finished finite finnish finno-ugric-speaking fire- +resistant fire-resisting fire-resistive fire-retardant fired fireproof firm +firmamental first first-class first-come-first-serve first-rate first-string +first-year firstborn firsthand fiscal fisheye fishy fissile fissionable +fissiparous fistular fistulate fistulous fit fitful fitted fitter fitting five +five-fold five-hundredth five-lobed five-membered five-needled five-petaled +five-petalled five-pointed five-sided five-year-old fivefold fixed fizzing fizzy +flabbergasted flabby flaccid flag-waving flagellate flagellated flagging +flagitious flagrant flakey flaky flamboyant flame-colored flame-coloured flame- +orange flame-retardant flameproof flaming flammable flaring flash flash-frozen +flashy flat flat-bellied flat-bottom flat-bottomed flat-footed flat-growing +flat-top flat-topped flatbottom flatbottomed flattened flattering flatulent +flatus-relieving flaunty flavorful flavorless flavorous flavorsome flavourful +flavourless flavourous flavoursome flawed flawless flaxen flea-bitten flecked +fledged fledgeless fledgeling fledgling fleeceable fleecy fleet fleeting flemish +flemish-speaking flesh-colored flesh-coloured flesh-eating fleshly fleshy +flexible flexile flexuous flickering flighted flightless flighty flimsy flint +flinty flip flippant flipper-like flirtatious floating floaty floccose +flocculent flooded floodlighted floodlit floored floppy floral florentine +floricultural florid flossy flourishing floury flowered flowering flowerless +flowery flowing fluctuating fluent fluffy fluid flukey fluky fluorescent flush +flush-seamed flushed flustered fluvial fly fly-by-night flyaway flyblown flying +flyspeck foaming foamy focal focused focussed foetal foetid fogbound fogged +foggy fogyish foiled foldable foldaway folding foliaceous foliaged foliate +foliated foliolate foliose folksy follicular following fond foodless foolhardy +fooling foolish foolproof foot-shaped football-shaped footed footless footling +footloose footsore footsure foppish forbearing forbidden forbidding forced +forceful forceless forcible forcipate fordable fore fore-and-aft foreboding +foregoing foregone forehand forehanded foreign foreign-born foremost forensic +foreordained foreseeable foreshadowing foresighted foresightful forested +forethoughtful forfeit forfeited forficate forged forgetful forgettable +forgivable forgiving forgotten fork-like forked forlorn form-only formal +formalised formalistic formalized formative formed former formic formidable +formless formosan formulaic formulary formulated forte fortemente forthcoming +forthright fortieth fortified fortissimo fortnightly fortuitous fortunate forty +forty-eight forty-eighth forty-fifth forty-first forty-five forty-four forty- +fourth forty-nine forty-ninth forty-one forty-second forty-seven forty-seventh +forty-six forty-sixth forty-third forty-three forty-two forward forward-looking +forward-moving fossil fossiliferous fossilised fossilized fossorial foster foul +foul-mouthed foul-smelling foul-spoken fouled found four four-dimensional four- +fold four-footed four-hundredth four-lane four-lobed four-membered four-needled +four-party four-petaled four-petalled four-ply four-pronged four-sided four- +wheel four-wheeled four-year-old fourfold fourhanded fourpenny fourscore +foursquare fourteen fourteenth fourth fourth-year foxy fractional fractious +fragile fragmental fragmentary fragmented fragrant frail framed franciscan +frangible frank frankish frantic fraternal fraudulent fraught frayed freakish +freaky freckled free free-and-easy free-enterprise free-flying free-lance free- +living free-range free-soil free-spoken free-swimming free-thinking freeborn +freehand freehanded freehearted freelance freestanding freewheeling freewill +freeze-dried french french-speaking frenetic frenzied frequent fresh fresh-cut +freshman fretful fretted freudian friable fricative frictional frictionless +fried friendless friendly frightened frightening frightful frigid frigorific +frilled frilly fringed fringy frisian frisky frivolous frizzly frizzy frolicky +frolicsome front frontal frontmost frore frost-bound frostbitten frosted +frostian frosty frothing frothy froward frowning frowsty frowsy frowzled frowzy +frozen frugal fruit-eating fruitful fruiting fruitless fruity frumpish frumpy +frustrated frustrating frustrative fruticose fruticulose fucked-up fucking +fuddled fueled fugacious fugal fuggy fugitive fugly fulfilled fulgent fulgid +fulgurant fulgurating fulgurous full full-blood full-blooded full-blown full- +bodied full-bosomed full-clad full-dress full-face full-fashioned full-fledged +full-grown full-length full-page full-scale full-size full-strength full-term +full-time fulminant fulsome fumbling fumed functional functioning fundamental +fundamentalist fundamentalistic funded funerary funereal fungal fungible +fungicidal fungoid fungous funguslike funicular funky funnel-shaped funny fur- +bearing furious furled furlike furnished furred furrowed furry further +furthermost furthest furtive fuscous fused fusible fusiform fussy fusty futile +future futureless futurist futuristic fuzzed fuzzy gabby gabled gabonese gaelic +gaelic-speaking gaga gainful gainly galactic galilaean galilean gallant galled +gallic gallican gallinaceous galling galore galvanic galvanising galvanizing +galwegian gambian game gamey gammy gamopetalous gamy gandhian gangling gangly +gangrenous gap-toothed gaping garbed garbled gardant gargantuan garish garlicky +garmented garmentless garnet-colored garnet-coloured garrulous gas-filled gas- +tight gaseous gasified gassy gastric gastroduodenal gastroesophageal +gastrointestinal gastronomic gastronomical gathered gauche gaudy gauguinesque +gaumless gaunt gauntleted gaussian gauze-like gauzy gawky gay geared gelatinlike +gelatinous gelded gelid gemmed gemmiferous genealogic genealogical general +general-purpose generalised generalized generational generative generic generous +genetic genetical genial genic geniculate genital genitive genitourinary genoese +genotypic genotypical genovese genteel gentile gentle gentlemanlike gentlemanly +genuine geocentric geodesic geodesical geodetic geographic geographical geologic +geological geometric geometrical geomorphologic geomorphological geophysical +geophytic geopolitical georgian geostationary geostrategic geosynchronous +geothermal geothermic geriatric german german-american german-speaking germane +germanic germfree germicidal germinal germy gerontological gerundial gestational +gesticulating gestural get-at-able getable getatable gettable ghanaian ghanese +ghanian ghastly ghostlike ghostly ghoulish gi giant gibbose gibbous gibelike +gibraltarian giddy gifted gigantic gilbertian gilded gill-less gilled gilt gilt- +edged gimbaled gimcrack gimpy ginger ginger-scented gingerly gingery gingival +girlish given giving glabellar glabrescent glabrous glace glacial glaciated glad +gladdened gladiatorial gladsome glamorous glamourous glandular glaring glary +glass-like glassed glassless glassy glaswegian glaucous glazed gleaming gleeful +glial glib glib-tongued glimmery glinting glistening glistering glittering +glittery global globose globular glomerular gloomful glooming gloomy glorified +glorious glossopharyngeal glossy glossy-coated glossy-furred glossy-haired +glottal glottochronological gloved gloveless glowering glowing glued gluey glum +gluteal glutinous glutted gluttonous glycogenic gnarled gnarly gnomic gnomish +gnostic go go-as-you-please go-to-meeting goaded goal-directed goalless goateed +goblet-shaped gobsmacked god-awful god-fearing goddam goddamn goddamned +godforsaken godless godlike godly goethean goethian goggle-eyed going gold gold- +bearing gold-colored gold-coloured golden golden-brown golden-green golden- +yellow gonadal gonadotrophic gonadotropic gone gonzo good good-for-naught good- +for-nothing good-hearted good-humored good-humoured good-looking good-natured +good-tempered good-time goodish goodly goody-goody gooey goofy gooselike goosey +goosy gordian gorgeous gormless gory gossamer gossipy gothic gouty governable +governing governmental gowned grabby graceful graceless gracile gracious +gradable gradational gradatory grade-appropriate grade-constructed graded +gradual graduate graduated graeco-roman graecophile graecophilic grainy gram- +negative gram-positive grammatic grammatical grand grandiloquent grandiose +granitelike granitic granted granular granulated granuliferous granulocytic +granulomatous granulose grape-sized grapelike grapey graphic graphical grapy +graspable grasping grass-covered grass-eating grassless grasslike grassroots +grassy grassy-leafed grassy-leaved grateful gratified gratifying grating gratis +gratuitous gratulatory grave gravelly graven gravid gravimetric gravitational +gravitative gray gray-black gray-blue gray-brown gray-green gray-haired gray- +headed gray-pink gray-white grayish grayish-black grayish-blue grayish-brown +grayish-green grayish-pink grayish-white grazed greased greaseproof greasy great +greater greatest greathearted grecian greco-roman greedy greek green green-blind +green-eyed green-white greenhouse greenish greenish-brown greenish-gray +greenish-grey greenish-white greensick greenside gregarious gregorian grenadian +grey grey-black grey-blue grey-brown grey-green grey-haired grey-headed grey- +pink grey-white greyed greyish greyish-black greyish-blue greyish-brown greyish- +green greyish-pink greyish-white grief-stricken grieving grievous grilled grim +grimy gripping grisly gristly gritty grizzled grizzly groggy groomed grooved +groovy groping gross grotesque grotty grouchy ground-floor ground-hugging +groundbreaking groundless grouped groveling grovelling growing grown grownup +grubby grudging grueling gruelling gruesome gruff grumbling grumose grumous +grumpy grungy gu guardant guarded guatemalan gubernatorial guided guiding +guileful guileless guilt-ridden guiltless guilty guinean guitar-shaped gullible +gum-like gummed gummy gumptious gushing gushy gusseted gustative gustatorial +gustatory gusty gutless gutsy guttural guyanese gymnastic gymnosophical +gymnospermous gynaecological gynandromorphic gynandromorphous gynecologic +gynecological gyral gyroscopic h-shaped habilimented habit-forming habitable +habited habitual hackneyed hadal hadean haemal haematal haematic haematogenic +haematological haematopoietic haemic haemolytic haemophilic haemopoietic +haemorrhagic hag-ridden haggard hagridden hail-fellow hail-fellow-well-met hair- +raising hair-shirt hair-shirted haired hairless hairlike hairsplitting hairy +haitian halal halcyon hale half half-and-half half-baked half-blooded half-bound +half-bred half-breed half-clothed half-crazed half-dozen half-evergreen half- +hardy half-hearted half-hourly half-length half-seas-over half-size half-timber +half-timbered half-time half-track half-tracked half-witted half-yearly +halfhearted halfway hallowed hallucinating hallucinatory hallucinogenic halt +halting ham-fisted ham-handed hammer-shaped hammered hammy hand-crafted hand- +down hand-held hand-hewn hand-loomed hand-me-down hand-operated hand-to-hand +hand-to-mouth handed handed-down handelian handheld handicapped handled +handleless handless handmade hands-down hands-off hands-on handsewn handsome +handstitched handwoven handwritten handy hangdog hanoverian haphazard hapless +haploid haploidic happy happy-go-lucky haptic harassed hard hard-and-fast hard- +baked hard-bitten hard-boiled hard-core hard-fought hard-hitting hard-line hard- +nosed hard-of-hearing hard-pressed hard-shelled hard-to-please hardback +hardbacked hardbound hardcore hardcover hardened hardfisted hardheaded +hardhearted hardline hardscrabble hardworking hardy harebrained harmful harmless +harmonic harmonical harmonious harmonised harmonizable harmonized harnessed +harp-shaped harried harrowing harsh harsh-voiced harum-scarum hasidic hassidic +hastate hasty hatched hated hateful hatless hatted haughty haunted haunting +hawaiian hawk-eyed hawkish haywire hazardous hazel hazel-brown hazy head-in-the- +clouds head-on head-to-head headed headfirst headless headlike headlong heads-up +headstrong heady healed healing healthful healthier healthy hearable heard +hearing hearing-impaired hearsay heart-healthy heart-shaped heart-to-heart +heart-whole heartbreaking heartbroken heartening heartfelt heartless +heartrending heartsick heartwarming hearty heat-absorbing heat-releasing +heatable heated heathen heathenish heathlike heatless heaven-sent heavenly +heavenward heavier-than-air heavy heavy-armed heavy-coated heavy-duty heavy- +footed heavy-handed heavy-laden heavy-limbed heavyhearted heavyset hebdomadal +hebdomadary hebephrenic hebraic hebraical hebrew hebridean hectic hedged hedonic +hedonistic heedful heedless hefty hegelian heightening heinous held heliac +heliacal helical heliocentric hell-bent hellenic hellenistic hellenistical +hellish helmet-shaped helmeted helminthic helpful helpless helter-skelter hemal +hematal hematic hematogenic hematologic hematological hematopoietic hemic +hemimetabolic hemimetabolous hemimetamorphic hemimetamorphous hemingwayesque +hemiparasitic hemispheric hemispherical hemodynamic hemolytic hemophilic +hemopoietic hemorrhagic hemostatic hempen henpecked hep hepatic hepatotoxic +heralded heraldic heraldist herbaceous herbal herbivorous herculean here +hereditary heretical heritable hermaphrodite hermaphroditic hermeneutic hermetic +hermitic hermitical heroic heroical hertzian hesitant hesitating hesperian het +heterocercal heterocyclic heterodactyl heterodox heterodyne heteroecious +heterogeneous heterogenous heteroicous heterologic heterological heterologous +heterometabolic heterometabolous heterosexual heterosporous heterothermic +heterotrophic heterozygous heuristic hewn hex hexadecimal hexagonal hexangular +hexed hi-fi hi-tech hibernal hibernating hick hidden hidebound hideous hidrotic +hiemal hierarchal hierarchic hierarchical hieratic hieratical hieroglyphic +hieroglyphical hifalutin higgledy-piggledy high high-altitude high-and-mighty +high-backed high-ceilinged high-class high-crowned high-energy high-fidelity +high-flown high-grade high-handed high-interest high-keyed high-level high- +minded high-necked high-octane high-performance high-pitched high-potential +high-power high-powered high-pressure high-priced high-principled high-ranking +high-resolution high-rise high-risk high-sounding high-speed high-spirited high- +stepped high-stepping high-strung high-sudsing high-tech high-tension high- +ticket high-toned high-top high-topped high-velocity high-voltage high-yield +highborn highbrow highbrowed higher higher-ranking highfalutin highfaluting +highflying highland highly-developed highly-sexed hilar hilarious hilly +himalayan hind hinder hindering hindermost hindi hindmost hindoo hindu +hindustani hip hip-length hiplength hipless hipped hippocratic hircine hired +hirsute hispanic hispaniolan hispid histologic histological historic historical +historied histrionic hit-and-run hit-or-miss hitlerian hitless hittite hmong ho- +hum hoar hoarse hoary hobnailed hogged hoggish hoity-toity hokey hole-and-corner +hole-in-corner holey holier-than-thou holistic hollow hollow-eyed hollow-horned +hollywood holographic holographical holometabolic holometabolous holophytic +holozoic holy home home-baked home-brewed home-cured home-loving home-style +homebound homegrown homeless homelike homely homemade homeopathic homeostatic +homeothermic homeric homesick homespun homeward homeward-bound homey homicidal +homiletic homiletical hominal homing hominian hominid hominine homocentric +homocercal homochromatic homocyclic homoecious homoerotic homogeneous +homogenised homogenized homogenous homoiothermic homologic homological +homologous homonymic homonymous homophile homophobic homophonic homophonous +homosexual homosporous homostyled homostylic homostylous homothermic homozygous +homy honduran honest honest-to-god honest-to-goodness honey honey-colored honey- +coloured honey-scented honeycombed honeyed honeylike honied honorable honorary +honored honorific honourable hoofed hooflike hook-nosed hook-shaped hooked +hooklike hooved hoped-for hopeful hopeless hopped-up horary horizontal hormonal +horn-rimmed horn-shaped horned hornless hornlike horny horrendous horrible +horrid horrific horrified horrifying horror-stricken horror-struck horse-and- +buggy horse-drawn hortative hortatory horticultural hospitable hostile hot hot- +blooded hot-tempered hotheaded hottish hourglass-shaped hourlong hourly house- +proud house-to-house house-trained housebound housebroken housewifely howling +hoydenish huddled hueless huffish huffy huge hugger-mugger hugoesque hulking +hulky human human-centered human-centred human-sized humane humanist humanistic +humanitarian humanlike humble humbled humbling humdrum humic humid humified +humiliated humiliating humongous humoral humorless humorous humourless humourous +humpbacked humped hunchbacked hunched hundred hundred-and-eightieth hundred-and- +fifteenth hundred-and-fifth hundred-and-fiftieth hundred-and-fifty-fifth +hundred-and-first hundred-and-fortieth hundred-and-forty-fifth hundred-and- +ninetieth hundred-and-seventieth hundred-and-seventy-fifth hundred-and-sixtieth +hundred-and-sixty-fifth hundred-and-tenth hundred-and-thirtieth hundred-and- +thirty-fifth hundred-and-twentieth hundred-and-twenty-fifth hundredth hungarian +hungry hunky-dory hunted hurried hurrying hurt hurtful husbandly hush-hush +hushed hushed-up husky huxleian huxleyan hyaline hyaloid hyaloplasmic hybrid +hydrated hydraulic hydric hydrocephalic hydrodynamic hydroelectric hydrographic +hydrographical hydrokinetic hydrolyzable hydrometric hydropathic hydrophilic +hydrophobic hydrophytic hydroponic hydrostatic hydrous hydroxy hygienic +hygienical hygrophytic hygroscopic hymenal hymeneal hymenopterous hyoid +hypaethral hyperactive hyperbolic hyperboloidal hypercatalectic hypercritical +hyperemic hyperfine hypermetropic hyperopic hypersensitised hypersensitive +hypersensitized hypertensive hyperthermal hypertonic hypertrophied hypethral +hypnagogic hypnogogic hypnoid hypnotic hypnotised hypnotized hypoactive +hypochondriac hypochondriacal hypocritical hypodermal hypodermic hypoglycaemic +hypoglycemic hypognathous hypophyseal hypophysectomised hypophysectomized +hypophysial hypotensive hypothalamic hypothermic hypothetic hypothetical +hypotonic hypovolaemic hypovolemic hysteric hysterical i iambic iatrogenic +iberian ibsenian ic ice-clogged ice-cold ice-free icebound icelandic icelandic- +speaking ichorous icky iconic iconoclastic icosahedral ictal icteric icterogenic +ictic icy ideal idealised idealistic idealized ideational idempotent identical +identifiable identified ideographic ideologic ideological idiographic idiomatic +idiomatical idiopathic idiosyncratic idiotic idle idolatrous idolised idolized +idyllic iffy igneous ignescent ignitable ignited ignitible ignoble ignominious +ignorant ignored ii iii il iliac ill ill-advised ill-affected ill-bred ill- +chosen ill-conceived ill-considered ill-defined ill-dressed ill-equipped ill- +famed ill-fated ill-favored ill-favoured ill-fed ill-fitting ill-formed ill- +gotten ill-humored ill-humoured ill-judged ill-mannered ill-natured ill-omened +ill-proportioned ill-scented ill-shapen ill-smelling ill-sorted ill-starred ill- +tempered ill-timed ill-treated ill-used illative illegal illegible illegitimate +illiberal illicit illimitable illiterate illogical illuminated illuminating +illusional illusionary illusive illusory illustrative illustrious ilx ilxx ilxxx +imaginable imaginary imaginative imbalanced imbecile imbecilic imbricate +imbricated imitation imitative immaculate immanent immaterial immature +immeasurable immediate immemorial immense immensurable imminent immiscible +immobile immoderate immodest immoral immortal immotile immovable immoveable +immune immunised immunized immunochemical immunocompetent immunocompromised +immunodeficient immunogenic immunologic immunological immunosuppressed +immunosuppressive immunotherapeutic immutable impacted impaired impalpable +imparipinnate impartial impassable impassioned impassive impatient impeccable +impeccant impecunious impeded impeding impelled impellent impelling impendent +impending impenetrable impenitent imperative imperceptible imperfect +imperfectible imperforate imperial imperialist imperialistic imperious +imperishable impermanent impermeable impermissible impersonal impertinent +imperturbable imperviable impervious impetiginous impetuous impious impish +implacable implanted implausible implemental implemented implicated +implicational implicative implicit implike imploring impolite impolitic +imponderable important important-looking imported importunate imposed imposing +impossible impotent impoverished impracticable impractical imprecise impregnable +impressed impressible impressionable impressionist impressionistic impressive +imprisoned improbable impromptu improper improvable improved improvident +improving improvised imprudent impudent impugnable impuissant impulsive impure +imputable imputrescible in in-between in-bounds in-chief in-person in-situ in- +your-face inaccessible inaccurate inactive inadequate inadmissible inadvertent +inadvisable inaesthetic inalienable inalterable inane inanimate inapplicable +inapposite inappreciable inappropriate inapt inarguable inarticulate inartistic +inattentive inaudible inaugural inauspicious inauthentic inboard inborn inbound +inbred inbuilt incalculable incan incandescent incapable incapacitated +incapacitating incarnate incased incautious incendiary incensed incertain +incessant incestuous inchoate inchoative incident incidental incipient incised +incisive incitive inclement inclined included inclusive incognito incognizable +incognizant incognoscible incoherent incombustible incoming incommensurable +incommensurate incommodious incommunicado incommunicative incommutable +incomparable incompatible incompetent incomplete incomprehensible +incomprehensive incompressible incomputable inconceivable inconclusive +incongruent incongruous inconsequent inconsequential inconsiderable +inconsiderate inconsistent inconsolable inconspicuous inconstant incontestable +incontestible incontinent incontrovertible inconvenient inconvertible +incorporate incorporated incorporative incorporeal incorrect incorrigible +incorrupt incorruptible increased increasing incredible incredulous incremental +incriminating incriminatory inculpable inculpative inculpatory incumbent +incurable incurious incursive incurvate incurved indebted indecent +indecipherable indecisive indecorous indefatigable indefeasible indefensible +indefinable indefinite indehiscent indelible indelicate indentured independent +indescribable indestructible indeterminable indeterminate indexical indexless +indian indicative indicatory indictable indie indifferent indigenous indigent +indigestible indignant indigo indirect indiscernible indiscreet indiscrete +indiscriminate indiscriminating indispensable indisposed indisputable +indissoluble indistinct indistinguishable individual individualised +individualist individualistic individualized indivisible indo-aryan indo- +european indo-germanic indocile indolent indomitable indonesian indoor indrawn +indubitable induced inducive inductive indulgent indurate indusial industrial +industrial-strength industrialised industrialized industrious indwelling +inebriated inedible ineffable ineffective ineffectual inefficacious inefficient +inelaborate inelastic inelegant ineligible ineluctable inept inequitable +ineradicable inerrable inerrant inert inertial inescapable inessential +inestimable inevitable inexact inexcusable inexhaustible inexorable inexpedient +inexpensive inexperienced inexperient inexpert inexpiable inexplicable +inexplicit inexpressible inexpressive inexpugnable inexpungeable inexpungible +inextensible inexterminable inextinguishable inextirpable inextricable +infallible infamous infantile infatuated infeasible infected infectious +infective infelicitous inferential inferior infernal infertile infinite +infinitesimal infinitival infirm inflamed inflammable inflammatory inflatable +inflated inflationary inflected inflectional inflexible inflowing influent +influential informal informational informative informatory informed infrahuman +inframaxillary infrangible infrared infrasonic infrequent infuriated infuriating +ingenious ingenuous inglorious ingrained ingratiating ingratiatory ingrowing +ingrown inguinal inhabitable inhabited inhalant inharmonic inharmonious inherent +inheritable inherited inheriting inhibited inhibitory inhomogeneous inhospitable +inhuman inhumane inhumed inimical inimitable iniquitous initial initiative +initiatory injectable injudicious injured injurious ink-black ink-jet inky inky- +black inlaid inland inmost innate inner innermost innocent innocuous +innovational innovative innoxious innumerable innumerate innumerous inodorous +inoffensive inoperable inoperative inopportune inordinate inorganic inpouring +inquiring inquisitive inquisitorial inquisitory insalubrious insane insanitary +insatiable insatiate inscribed inscriptive inscrutable insectan insecticidal +insectivorous insecure insensate insensible insensitive insentient inseparable +inshore inside inside-out insidious insightful insignificant insincere +insinuating insipid insistent insolent insoluble insolvable insolvent insomniac +insouciant inspirational inspiratory inspired inspiring inspiriting inst instant +instantaneous instigative instinct instinctive institutional institutionalised +institutionalized instructional instructive instrumental insubordinate +insubstantial insufferable insufficient insular insulting insuperable +insupportable insurable insured insurgent insurmountable insurrectional +insurrectionary insusceptible intact intangible integral integrated integrative +integumental integumentary intellectual intelligent intelligible intemperate +intended intense intensified intensifying intensional intensive intent +intentional interactional interactive interbred intercalary intercellular +interchangeable interchurch intercollegiate interconnected intercontinental +intercostal intercrossed interdenominational interdepartmental interdependent +interdisciplinary interest-bearing interested interesting interfacial interfaith +interfering intergalactic interim interior interlaced interlacing interlineal +interlinear interlinking interlobular interlocking interlocutory intermediate +intermeshed interminable intermittent intermolecular intermural internal +international internationalist internationalistic internecine interoceptive +interoperable interpersonal interplanetary interpretable interpretative +interpreted interpretive interracial interred interrelated interrogative +interrogatory interrupted interscholastic interschool intersectant intersecting +intersexual interspecies interspecific interstate interstellar interstitial +intertidal intertribal intervening intervertebral interwoven intestate +intestinal intimal intimate intimidated intimidating intolerable intolerant +intoned intoxicant intoxicated intoxicating intracellular intracerebral +intracranial intractable intracutaneous intradepartmental intradermal +intradermic intragroup intralinguistic intralobular intramolecular intramural +intramuscular intransigent intransitive intrapulmonary intrasentential +intraspecies intraspecific intrastate intrauterine intravenous intraventricular +intrepid intricate intriguing intrinsic intrinsical introductory introjected +introspective introuvable introversive introverted introvertish introvertive +intruding intrusive intuitionist intuitive intumescent inundated inured inutile +invading invalid invalidated invalidating invaluable invariable invariant +invasive inventive inverse invertebrate inverted invertible investigative +investigatory inveterate invidious invigorated invigorating invincible +inviolable inviolate invisible invitational invitatory inviting involucrate +involuntary involute involved invulnerable inward inward-developing inward- +moving inwrought iodinated iodinating iodised iodized ionian ionic ionised +ionized ipsilateral iraki iranian iraqi irascible irate ireful irenic iridaceous +iridescent iridic irish iritic irksome iron iron-gray iron-grey ironclad ironed +ironic ironical ironlike ironshod irrational irreclaimable irreconcilable +irrecoverable irredeemable irreducible irrefutable irregular irrelevant +irreligious irremediable irremovable irreparable irreplaceable irrepressible +irreproachable irreproducible irresistible irresolute irresponsible +irretrievable irreverent irreversible irrevocable irrevokable irritable +irritated irritating irritative irruptive ischaemic ischemic isentropic islamic +ismaili isobilateral isochronal isochronous isoclinal isoclinic isocyclic +isogonic isolable isolated isolating isolationist isolationistic isomeric +isometric isometrical isomorphic isomorphous isopteran isosceles isosmotic +isothermal isothermic isotonic isotopic isotropic isotropous israeli isthmian +italian italian-speaking italic itchy item-by-item iterative itinerant itsy- +bitsy itty-bitty iv ivied ivy-covered ix ixc ixl jacksonian jacobean jacobinic +jacobinical jade jade-green jaded jagged jaggy jailed jain jainist jam-packed +jamaican jamesian jammed jangling jangly janus-faced japanese japanese-speaking +jarring jaundiced jaunty javan javanese jawed jawless jazzy jealous jeering +jeffersonian jejune jelled jellied jellylike jerking jerkwater jerky jerry-built +jesting jesuit jesuitic jesuitical jet jet-black jet-propelled jetting jeweled +jewelled jewish jewish-orthodox jiggered jihadi jilted jingling jingly +jingoistic jinxed jittering jittery jobless jocose jocular jocund joined joint +jointed joking jolly jolted jolting jolty jordanian journalistic jovial jovian +jowly joyful joyless joyous jr. jubilant judaic judaical judeo-christian +judgmental judicable judicial judicious jugular juiceless juicy julian jumbled +jumbo jumentous jumped-up jumpy jungian jungly junior junior-grade junoesque +jural jurassic juridic juridical jurisdictional jurisprudential juristic jury- +rigged just justifiable justificative justificatory justified jutting juvenile +juxtaposed k kabbalistic kafkaesque kaleidoscopic kaleidoscopical kampuchean +kannada-speaking kantian kaput karyokinetic kashmiri katabatic katabolic katari +katharobic kayoed kazakhstani kechuan keel-shaped keeled keen keen-eyed keen- +sighted kempt kenyan kept key keyed keyless keynesian khaki kid-glove kidney- +shaped killable killing kiln-dried kin kinaesthetic kind kind-hearted +kindhearted kindled kindly kindred kinesthetic kinetic king-size king-sized +kinglike kingly kinky kiplingesque kitschy kittenish kitty-corner kitty-cornered +kiwi-sized knackered knavish knee-deep knee-length knifelike knightly knitted +knobbed knobbly knobby knock-down knock-down-and-drag-out knock-kneed knockabout +knockdown knockdown-dragout knocked-out knockout knotted knotty knowable knowing +knowledgeable known ko'd kokka kookie kooky koranic korean kosher kurdish +kuwaiti kyphotic kyrgyzstani l l-shaped la-di-da labeled labelled labial labiate +labile labor-intensive labored laboring laborious laborsaving labour-intensive +laboured labouring laboursaving labyrinthian labyrinthine laced lacelike +lacerate lacerated lacertilian lachrymal lachrymatory lachrymose laciniate +lackadaisical lacking lackluster lacklustre laconic lacrimal lacrimatory +lactating lacteal lactic lactogenic lacustrine lacy ladder-proof laden ladened +ladylike laggard laic laid laid-back laid-off laissez-faire lamarckian lambent +lamblike lame lamellibranch lamentable lamented lamenting laminal laminar +lamplit lanate lancastrian lance-shaped lancelike lanceolate lancet-shaped +lancinate lancinating landed landless landlocked landlubberly landscaped languid +languorous laniary lank lanky lantern-jawed lao laotian lap-jointed lap-strake +lap-straked lap-streak lap-streaked lapidarian lapidary lapsed laputan larboard +large large-cap large-capitalisation large-capitalization large-grained large- +headed large-hearted large-leafed large-leaved large-minded large-mouthed large- +scale larger larger-than-life larghetto larghissimo largish largo larval +laryngeal laryngopharyngeal lascivious lash-like lashing last last-ditch last- +minute last-place lasting late late-blooming late-flowering late-ripening late- +spring-blooming lateen lateen-rigged latent later lateral latest lathery latin +latin-american latinate latino latish latitudinal latitudinarian latter latter- +day latticed latticelike latvian laudable laudatory laughable laughing laureate +laureled laurelled lavender lavender-pink lavender-tinged lavish law-abiding +lawful lawfully-begotten lawless lax laxative lay layered lazy lead-colored +lead-coloured lead-free leaded leaden leading leadless leaf-like leafed leafless +leaflike leafy leafy-stemmed leakproof leaky leal lean leaning learned leased +least leather-leafed leather-leaved leathered leatherlike leathery leaved +leavened lebanese lecherous lee leechlike leering leery leeward left left-eyed +left-hand left-handed left-of-center left-slanting left-wing leftish leftist +leftmost leftover legal legato legendary legged leggy legible legion legislative +legitimate legless leglike leguminous leibnitzian leibnizian leisured leisurely +lemon-scented lemonlike lemony lendable lengthened lengthways lengthwise lengthy +lenient lenitive lenten lentic lenticular lentiform lentiginose lentiginous +lentissimo lento leonardesque leonine lepidote leprose leprous leptorhine +leptorrhine leptorrhinian leptorrhinic leptosporangiate lesbian less less- +traveled lessened lesser lethal lethargic letter-perfect lettered levantine +level level-headed levelheaded levitical levorotary levorotatory lewd lexical +lexicalised lexicalized lexicographic lexicographical lexicostatistic li liable +libellous libelous liberal liberalistic liberated liberian libertine libidinal +libidinous libyan licenced licensed licentious licit licked lidded lidless +liechtensteiner liege lienal life-and-death life-giving life-or-death life-size +life-sized life-support life-sustaining life-threatening lifeless lifelike +lifelong lifesize lifted light light-armed light-blue light-boned light-colored +light-duty light-fingered light-footed light-green light-haired light-handed +light-headed light-hearted light-minded light-sensitive light-skinned light- +tight lighted lighter-than-air lightheaded lighthearted lighting-up lightless +lightly-armed lightproof lightsome lightweight ligneous lii liii likable like +like-minded likeable liked likely lilac lilac-blue lilac-colored lilac-pink +lilac-purple liliaceous lilliputian lilting lily-livered lily-white limacine +limacoid limbed limber limbic limbless limited limiting limitless limnological +limp limpid lincolnesque lincolnian lineal linear lined linelike lingual +linguistic lingulate linked linnaean linnean lionhearted lip-shaped lipless +liplike lipophilic lipotropic lipped liquefiable liquefied liquescent liquid +liquid-fueled liquifiable liquified lissom lissome listed listless lit lite +literal literary literate lithe lithe-bodied lithesome lithic lithographic +lithomantic lithophytic lithuanian litigious littered little little-known +littler littoral liturgical liv livable live live-bearing liveable liveborn +livelong lively liver liver-colored liveried liverish liverpudlian livery livid +living livonian-speaking load-bearing loaded loamless loamy loath loathly +loathsome lobar lobate lobated lobed lobeliaceous lobster-backed lobular local +localised localized located locker-room loco locomotive locomotor lofty +logarithmic loggerheaded logical logistic logistical logogrammatic logographic +logy lone lonely lonesome long long-acting long-ago long-armed long-bodied long- +branched long-chain long-dated long-distance long-faced long-familiar long- +haired long-handled long-headed long-jawed long-lasting long-legged long-life +long-lived long-play long-playing long-range long-run long-shanked long-snouted +long-spurred long-stalked long-staple long-suffering long-term long-wearing +long-winded long-wool long-wooled longanimous longed-for longhand longish +longitudinal longsighted longstanding longtime look-alike looking loony loopy +loose loose-fitting loose-jointed loose-jowled looseleaf loosened looted lop- +eared lopsided loquacious lordless lordly lordotic lossless lossy lost loth +lotic louche loud loud-mouthed loud-voiced lousy loutish louvered lovable +loveable loved loveless lovelorn lovely loverlike loverly lovesick lovesome +loving low low-altitude low-backed low-beam low-budget low-cal low-ceilinged +low-class low-cost low-cut low-density low-down low-grade low-growing low- +interest low-key low-keyed low-level low-lying low-necked low-pitched low- +powered low-pressure low-priced low-resolution low-rise low-set low-spirited +low-sudsing low-tech low-tension low-toned low-voltage lowborn lowbred lowbrow +lowbrowed lower-class lower-middle-class lower-ranking lowercase lowered +lowering lowermost lowest lowland lowly lowset loyal lubberly lubricated +lubricious lucent lucid lucifugal lucifugous luckless lucky lucrative luculent +lucullan ludicrous lugubrious lukewarm lumbar lumbering lumbosacral luminescent +luminous lumpen lumpish lumpy lunar lunate lunatic lung-like lunisolar lupine +lurid luscious lush lusitanian lusterless lustful lustreless lustrous lusty +luteal lutheran luxe luxembourgian luxemburger luxuriant luxurious lv lvi lvii +lviii lx lxi lxii lxiii lxiv lxv lxvi lxvii lxviii lxx lxxi lxxii lxxiii lxxiv +lxxv lxxvi lxxvii lxxviii lxxx lxxxi lxxxii lxxxiii lxxxiv lxxxv lxxxvi lxxxvii +lxxxviii lymphatic lymphoblast-like lymphocytic lymphoid lynx-eyed lyonnaise +lyophilised lyophilized lyrate lyre-shaped lyric lyrical lysogenic m macabre +macaronic macedonian macerative machiavellian machine-accessible machine- +controlled machine-driven machine-made machinelike macho macrencephalic +macrencephalous macro macrobiotic macrocephalic macrocephalous macrocosmic +macroeconomic macromolecular macroscopic macroscopical maculate mad madagascan +madcap maddened maddening made made-to-order made-up magenta maggoty magic +magical magisterial magnanimous magnetic magnetised magnetized magnificent +magnified magniloquent magyar mahogany-red maiden maidenlike maidenly mail- +cheeked mail-clad mailed maimed main mainstreamed maintainable maintained +majestic major majuscular majuscule make-believe makeshift maladaptive +maladjusted maladjustive maladroit malapropos malarial malawian malay malayan +malayo-polynesian malaysian malcontent male maledict malefic maleficent +malevolent malformed malfunctioning malian malicious malign malignant malleable +malnourished malodorous malodourous malposed malted maltese malthusian +maltreated mammalian mammary mammoth man-made man-portable man-sized man-to-man +manageable managerial manchurian mancunian mandaean mandatory mandean mandibular +mandibulate mandibulofacial maneuverable manful mangey mangled mangy maniac +maniacal manic manic-depressive manichaean manichean manichee maniclike manifest +manifold manipulable manipulative manky manlike manly manned mannered mannerly +mannish manoeuvrable manorial manque mansard mantic mantled manual manufactured +manx many many-chambered many-lobed many-sided maoist maple-like maplelike +marauding marbled marbleised marbleized marginal marian marine marital maritime +marked marked-up marketable markovian marly marmoreal marmorean maroc maroon +maroon-purple maroon-spotted marooned marred marriageable married marshy +marsupial martial martian marvellous marvelous marxist marxist-leninist +masculine masked masochistic masonic masoretic mass mass-produced mass- +spectrometric massive masted master mastered masterful masterless masterly +mastoid mastoidal mat matched matching matchless mated mateless material +materialistic maternal maternalistic matey mathematical matriarchal matriarchic +matricentric matrilineal matrilinear matrimonial matronly matt matte matted +matter-of-course matter-of-fact maturational mature matured matutinal maudlin +mauritanian mauritian mauve mauve-blue mauve-pink maverick mawkish maxi +maxillary maxillodental maxillofacial maxillomandibular maximal maximising +maximizing maximum mayoral mazed mazy meager meagerly meagre mealy mealy-mouthed +mealymouthed mean meandering meaning meaningful meaningless meanspirited measly +measurable measured measureless meat-eating meatless meaty mechanic mechanical +mechanised mechanistic mechanized mecopterous meddlesome meddling mediaeval +medial median mediate mediated mediatorial mediatory medical medicative +medicinal medicolegal medieval mediocre meditative mediterranean medium medium- +dry medium-large medium-size medium-sized medullary medullated medusoid meek +meet megakaryocytic megalithic megaloblastic megalomaniacal megalomanic +megascopic meiotic melancholic melancholy melanesian meliorative mellifluous +mellisonant mellow mellowed melodic melodious melodramatic meltable melted +melting membered memberless membrane-forming membranous memorable menacing +mendacious mendelian mendicant menial meningeal menopausal mensal menstrual +mensurable mensural mental mentholated mephistophelean mephistophelian mephitic +mercantile mercenary mercerised mercerized merchantable merciful merciless +mercurial mercuric mercurous mercury-contaminated mere meretricious merged +merging meridian meridional meritable merited meritless meritocratic meritorious +merovingian merry mesenteric meshed meshuga meshugga meshugge meshuggeneh +meshuggener mesial mesic mesmeric mesmerised mesmerized mesmerizing mesoamerican +mesoblastic mesodermal mesolithic mesomorphic mesonic mesophytic mesozoic +messianic messy metabolic metabolous metacarpal metacentric metagrabolised +metagrabolized metagrobolised metagrobolized metal metal-colored metal-coloured +metal-cutting metal-looking metallic metallic-colored metallic-coloured +metallic-looking metallike metalloid metallurgic metallurgical metameric +metamorphic metamorphous metaphoric metaphorical metaphysical metastable +metastatic metatarsal meteoric meteoritic meteoritical meteorologic +meteorological methodical methodist methodological methylated meticulous +metonymic metonymical metric metrical metrological metropolitan mettlesome +mexican miasmal miasmic micaceous michelangelesque micro microbial microbic +microcephalic microcephalous microcosmic microcrystalline microeconomic +microelectronic micrometeoric micrometeoritic micropylar microscopic +microscopical microsomal mid mid-atlantic middle middle-aged middle-class +middle-level middle-of-the-road middlemost middling midget midi midland midmost +midway midweekly midwestern miffed mighty migrant migrational migratory milanese +milch mild mild-mannered mild-tasting militant militarised militaristic +militarized military milk-sick milk-white milkless milklike milky milled +millenarian millenary millennial millennian million millionth mimetic mimic +minacious minatory mincing mind-altering mind-bending mind-blowing mind-boggling +mind-expanding minded mindful mindless mined mineral mingy mini miniature +minimal minimalist minimized minimum miniscule ministerial ministrant minoan +minor mint mint-scented minty minus minuscular minuscule minute miotic +miraculous mired mirky mirrored mirrorlike mirthful mirthless miry misanthropic +misanthropical misappropriated misbegot misbegotten misbranded miscellaneous +mischievous miscible miserable miserly misfortunate misguided mishnaic +mislabeled mislaid misleading mismatched mismated misogynic misogynistic +misogynous misplaced misrelated misrepresented missed misshapen missing +missional missionary mistakable mistaken mistreated mistrustful misty misty-eyed +misunderstood misused mithraic mithraistic mitigable mitigated mitigative +mitigatory mitotic mitral mixable mixed mixed-up mnemonic mnemotechnic +mnemotechnical moated mobbish mobile moblike mock mocking mod modal model +modeled moderate moderate-size moderate-sized moderating moderato modern modern- +day moderne modernised modernistic modernized modest modifiable modified modish +modular modulated mohammedan moire moist molal molar moldable molded moldovan +moldy molecular molten momentaneous momentary momentous monacan monandrous +monarchal monarchic monarchical monastic monastical monatomic monaural monecious +monegasque moneran monestrous monetary moneyed moneyless moneymaking mongol +mongolian mongoloid monied monistic monitory monkish mono monoatomic +monocarboxylic monocarpic monochromatic monochrome monochromic monochromous +monocled monoclinal monoclinic monoclinous monoclonal monocotyledonous monodic +monodical monoecious monoestrous monogamous monogenic monogynic monogynous +monoicous monolingual monolithic monomaniacal monometallic monomorphemic +mononuclear mononucleate monophonic monophysite monophysitic monoploid +monopolistic monopteral monosemous monosyllabic monotheistic monotone monotonic +monotonous monotypic monounsaturated monovalent monovular monozygotic monstrous +montane monthlong monthly montserratian monumental moody moon-faced moon-round +moon-splashed moonless moonlike moonlit moonstruck moony moorish moot mop-headed +moraceous moral moralistic moravian morbid morbific morbilliform mordacious +mordant more moresque morganatic moribund mormon moroccan moronic morose +morphemic morphologic morphological morphophonemic mortal mortgaged mortified +mortifying mortuary mosaic moslem moss-grown mosstone mossy most most-favored- +nation most-valuable moth-eaten moth-resistant mother-naked motherless +motherlike motherly mothproof mothy motile motional motionless motivated +motivating motivational motivative motive motiveless motley motor motor-assisted +motored motorial motorised motorized motorless mottled mouldy mountainous +mounted mournful mourning mouse-colored mouse-eared mouse-sized mouselike mousey +mousy mouth-watering mouthless mouthlike movable moveable moved moving mown +mozambican mozartean mozartian much muciferous mucilaginous mucinoid mucinous +mucky mucocutaneous mucoid mucoidal mucopurulent mucosal mucose mucous mud- +beplastered mud-brick muddied muddled muddleheaded muddy muffled muggy +muhammadan mulish mullioned multi-color multi-colored multi-colour multi- +coloured multi-ethnic multi-seeded multi-stemmed multi-valued multicellular +multicolor multicolored multicolour multicoloured multicultural multidimensional +multiethnic multifaceted multifactorial multifarious multiform multilane +multilateral multilevel multilingual multinational multinomial multinucleate +multiparous multipartite multiphase multiple multiple-choice multiplex +multiplicative multiplied multipotent multipurpose multiracial multistorey +multistoried multistory multitudinous multivalent multivariate mum mummy-brown +mundane municipal munificent mural murdered murderous murine murky murmuring +murmurous muscle-bound muscovite muscular musculoskeletal mushy musical +musicological musing musk-scented musky musky-scented muslim mussy must +mustached mustachioed musty mutable mutafacient mutagenic mutant mutational +mutative mute muted mutilated mutinous mutual mutualist muzzle-loading muzzy +myalgic mycenaean myelic myelinated myelinic myeloid myocardial myoid myopathic +myopic myotic myotonic myriad myrmecophagous myrmecophilous myrmecophytic +mysophobic mysterious mystic mystical mystified mystifying mythic mythical +mythologic mythological n-th nacreous nagging naiant naif nail-biting naive +naked naked-muzzled naked-tailed namby-pamby nameless namibian naming +nanocephalic napoleonic napped napping nappy narcissistic narcoleptic narcotic +narcotised narcotising narcotized narcotizing narial narrative narrow narrow- +bodied narrow-minded narrow-mouthed narrowed narrowing nary nasal nascent +nasopharyngeal nasty natal national nationalist nationalistic nationwide native +native-born nativist nativistic natriuretic natty natural naturalised +naturalistic naturalized naturistic naughty nauruan nauseated nauseating +nauseous nautical naval navicular navigable navigational nazarene nazi +neandertal neanderthal neanderthalian neapolitan near near-blind nearby +nearsighted neat nebular nebulose nebulous necessary necessitous neck-deep +necked neckless necklike necromantic necromantical necrotic nectar-rich +nectariferous nectarous nee needed needful needle-shaped needled needlelike +needless needy nefarious negative neglected neglectful negligent negligible +negotiable negro negroid neighboring neighborly neighbourly neither neo neo- +darwinian neo-lamarckian neoclassic neoclassical neoclassicist neoclassicistic +neocortical neoliberal neolithic neonatal neoplastic neotenic neotenous nepalese +nepali nephritic nephrotoxic neritic nerve-racking nerve-wracking nerveless +nervous nervy nescient nestled nestorian net nether nethermost netlike nett +netted nettled nettlesome networklike neural neuralgic neurasthenic +neuroanatomic neuroanatomical neurobiological neuroendocrine neurogenic +neuroglial neurologic neurological neuromatous neuromotor neuromuscular neuronal +neuronic neurophysiological neuropsychiatric neuropsychological neurotic +neurotoxic neurotropic neuter neutered neutral neutral-colored neutral-coloured +neutralised neutralized never-ending never-say-die new new-made new-mown new- +sprung newborn newfangled newfound newsless newsworthy newsy newtonian next +next-to-last nibbed nicaean nicaraguan nice nicene nickel-and-dime nidicolous +nidifugous niffy nifty nigerian nigerien niggardly niggling nigh nighted +nightlong nightly nightmarish nihilistic nilotic nilpotent nimble nimble- +fingered niminy-piminy nine nine-fold nine-membered nine-sided ninefold +ninepenny nineteen nineteenth ninetieth ninety ninety-eight ninety-fifth ninety- +five ninety-four ninety-nine ninety-one ninety-seven ninety-six ninety-three +ninety-two ninth nipping nipponese nippy nisi nitid nitric nitrogen-bearing +nitrogen-fixing nitrogenous nitrous nitwitted no no-account no-count no-frills +no-go no-good no-hit no-nonsense no-win noachian noble noble-minded nocent +nociceptive noctilucent nocturnal nodding nodular nodulated noduled nodulose +noetic noiseless noisome noisy nomadic nominal nominalistic nominated nominative +nomothetic non-aromatic non-automatic non-buoyant non-conducting non-elective +non-finite non-invertible non-living non-metric non-miscible non-negotiable non- +paying non-poisonous non-profit-making non-resinous non-resiny non-slave non-u +non-water-soluble non-white non-zero nonabsorbent nonabsorptive nonadaptive +nonaddictive nonadhesive nonadjacent nonadsorbent nonadsorptive nonaged +nonagenarian nonaggressive nonalcoholic nonaligned nonappointive nonarbitrable +nonarbitrary nonarboreal nonassertive nonassociative nonastringent nonautonomous +nonbearing nonbelligerent noncaloric noncarbonated noncausal noncausative +noncellular nonchalant nonchristian nonchurchgoing noncivilised noncivilized +nonclassical noncollapsable noncollapsible noncolumned noncombatant +noncombinative noncombining noncombustible noncommercial noncommissioned +noncommittal noncommunicable noncompetitive noncompliant noncomprehensive +nonconcentric nonconducting nonconductive nonconforming nonconformist +nonconscious noncontagious noncontentious noncontinuous noncontroversial +nonconvergent noncritical noncrucial noncrystalline noncurrent noncyclic +noncyclical nondeductible nondenominational nondescript nondigestible +nondisposable none nonechoic noneffervescent nonelected nonelective +nonenterprising nonenzymatic nonequivalent nonessential nonexempt nonexistent +nonexplorative nonexploratory nonexplosive nonextant nonextensile nonfat +nonfatal nonfictional nonfigurative nonfinancial nonfissile nonfissionable +nonflammable nonflavored nonflavoured nonflowering nonfunctional nonglutinous +nongranular nongregarious nonhairy nonharmonic nonhereditary nonheritable +nonhierarchic nonhierarchical nonhuman nonimitative nonimmune nonindulgent +nonindustrial noninfectious noninflammatory noninheritable noninstitutional +noninstitutionalised noninstitutionalized nonintegrated nonintellectual +noninterchangeable nonintersecting noninvasive nonionic nonionised nonionized +nonjudgmental nonkosher nonleaded nonlegal nonlethal nonlexical nonlinear +nonlinguistic nonliteral nonliterary nonliterate nonliving nonmagnetic +nonmandatory nonmaterial nonmeaningful nonmechanical nonmechanistic nonmedicinal +nonmetal nonmetallic nonmetamorphic nonmigratory nonmilitary nonmodern +nonmonotonic nonmotile nonmoving nonmusical nonnative nonnatural nonnegative +nonnomadic nonnormative nonobjective nonobligatory nonobservant nonopening +nonoperational nonoscillatory nonparallel nonparametric nonparasitic nonpareil +nonparticulate nonpartisan nonpartizan nonpasserine nonperiodic nonpersonal +nonphotosynthetic nonphysical nonplused nonplussed nonpoisonous nonpolar +nonpolitical nonporous nonpregnant nonprehensile nonprescription nonproductive +nonprofessional nonprofit nonprognosticative nonprogressive nonproprietary +nonprotractile nonpsychoactive nonpublic nonpurulent nonracial nonracist +nonradioactive nonrandom nonrational nonreciprocal nonreciprocating +nonrecreational nonreflecting nonreflective nonrenewable nonrepetitive +nonrepresentational nonrepresentative nonresident nonresidential nonresilient +nonresinous nonresiny nonresistant nonresonant nonrestrictive nonreticulate +nonretractable nonretractile nonreturnable nonreversible nonrhythmic nonrigid +nonruminant nonsectarian nonsegmental nonsegregated nonsense nonsensical +nonsensitive nonsexual nonsignificant nonskid nonslip nonslippery nonsocial +nonsovereign nonspatial nonspeaking nonspecific nonspherical nonstandard +nonsteroidal nonstick nonstop nonstructural nonsubjective nonsubmergible +nonsubmersible nonsuppurative nonsurgical nonsweet nonsyllabic nonsymbiotic +nonsynchronous nonsynthetic nontaxable nontechnical nontelescopic nontelescoping +nonterritorial nonthermal nontoxic nontraditional nontransferable +nontranslational nontransmissible nonturbulent nonuniform nonunion nonunionised +nonunionized nonuple nonvenomous nonverbal nonviable nonviolent nonviscid +nonvisual nonvolatile nonvolatilisable nonvolatilizable nonvoluntary nonwashable +nonwoody nordic normal norman normative normotensive norse north north-central +north-polar northbound northeast northeasterly northeastern northeastward +northerly northern northernmost northmost northward northwest northwesterly +northwestern northwestward norwegian nosed noseless nosey nosocomial nosohusial +nostalgic nosy notable notched noted noteworthy noticeable noticed notifiable +notional notorious nourished nourishing nouveau-riche novel noxious nth nubbly +nubby nubile nuclear nucleate nucleated nude nugatory null nullified numb +numberless numbing numerable numeral numerate numeric numerical numerological +numerous numidian numinous nuptial nursed nurtural nurturant nut-bearing +nutbrown nutlike nutmeg-shaped nutrient nutritional nutritionary nutritious +nutritive nuts nutty nymphomaniac nymphomaniacal o.k. oafish oaken oaten +obdurate obedient obese objectionable objective oblanceolate oblate obligate +obligated obligational obligatory obliged obliging oblique oblique-angled +obliterable obliterate obliterated oblivious oblong obnoxious obovate obscene +obscure obsequious observable observant observational observed observing +obsessed obsessional obsessive obsessive-compulsive obsolescent obsolete +obstetric obstetrical obstinate obstreperous obstructed obstructive obtainable +obtrusive obtuse obviating obvious occasional occidental occipital occluded +occlusive occult occupational occupied occurrent oceangoing oceanic ocellated +ocher ochre octagonal octal octangular octogenarian octosyllabic octuple ocular +odd odd-job odd-pinnate oddish odds-on odious odoriferous odorless odorous +odourless oecumenic oecumenical off off-and-on off-base off-center off-centered +off-color off-colour off-guard off-key off-limits off-line off-putting off-site +off-street off-the-cuff off-the-peg off-the-rack off-the-shelf off-the-shoulder +off-the-wall off-white offbeat offenceless offended offending offenseless +offensive offhand offhanded official officious offish offshore offside offsides +offstage ohmic oil-bearing oil-fired oil-soluble oiled oily ok okay old old- +fashioned old-hat old-line old-maidish old-time old-womanish old-world olden +older oldish oldline oleaceous oleaginous oleophilic oleophobic olfactive +olfactory oligarchic oligarchical olive olive-brown olive-colored olive-coloured +olive-drab olive-gray olive-grey olive-like olive-sized olivelike olympian +olympic omani ominous omissible omissive omnibus omnidirectional omnifarious +omnipotent omnipresent omniscient omnivorous on on-going on-key on-line on-site +on-street on-the-job on-the-scene on-the-spot oncologic oncological oncoming one +one-armed one-celled one-dimensional one-eared one-eyed one-handed one-horse +one-humped one-man one-member one-on-one one-party one-person one-piece one-seed +one-seeded one-sided one-time one-to-one one-way one-winged one-woman one-year +one-year-old oneiric onerous onetime ongoing online only onomastic onomatopoeic +onomatopoeical onomatopoetic onshore onside onstage ontogenetic ontological +onymous oozing oozy opalescent opaline opaque open open-air open-and-shut open- +chain open-collared open-ended open-eyed open-hearth open-minded open-plan open- +source opencast opencut opened openhanded openhearted opening openmouthed +operable operant operatic operating operational operationalist operative +operculate operculated operose ophthalmic opinionated opinionative +opisthognathous opponent opportune opportunist opportunistic opposable opposed +opposing opposite oppositive oppressed oppressive opprobrious optative opthalmic +optic optical optimal optimistic optimum optional opulent oracular oral orange +orange-brown orange-colored orange-coloured orange-flowered orange-hued orange- +red orange-sized orangish orangish-red oratorical orb-weaving orbicular +orbiculate orbital orbitual orchestral orchestrated ordained ordered orderly +ordinal ordinary organic organicistic organisational organised organismal +organismic organizational organized orgiastic oriental orientated orientating +oriented orienting original originative ornamental ornate ornery ornithological +oropharyngeal orotund orphaned orphic orthodontic orthodox orthogonal +orthographic orthomolecular orthopaedic orthopedic orthopedical orthoptic +orthostatic orthotropous orwellian oscan-speaking oscillating oscillatory oscine +oscitant osmotic osseous ossicular ossiculate ossiferous ossified osteal +ostensible ostensive ostentatious otc other otherwise otherworldly otic otiose +ototoxic ottoman out out-and-out out-of-bounds out-of-date out-of-door out-of- +pocket out-of-school out-of-the-way out-of-town outback outboard outbound +outbred outcast outcaste outclassed outdated outdoor outdoorsy outer outermost +outfitted outflowing outgoing outlandish outlaw outlawed outlined outlying +outmoded outmost outraged outrageous outre outrigged outright outside outsize +outsized outspoken outspread outstanding outstretched outward outward-bound +outward-developing outward-moving oval oval-bodied oval-fruited oval-shaped +ovarian ovate oven-ready oven-shaped over over-embellished over-the-counter +over-the-hill over-the-top overabundant overactive overage overaged overall +overambitious overanxious overarm overawed overbearing overblown overbold +overburdened overbusy overcareful overcast overcautious overconfident +overcredulous overcritical overcurious overdelicate overdone overdressed overdue +overeager overemotional overenthusiastic overexcited overfamiliar overfed +overflowing overfond overfull overgenerous overgreedy overgrown overhand +overhanded overhasty overhead overheated overindulgent overjealous overjoyed +overladen overland overlarge overloaded overlooked overlooking overlying +overmodest overmuch overnice overnight overpowering overpriced overprotective +overproud overreaching overrefined overriding overripe oversea overseas +oversensitive overserious oversewn oversexed overshot oversize oversized +oversolicitous overstated overstrung overstuffed oversubscribed oversuspicious +overt overturned overvaliant overweening overweight overwhelming overwrought +overzealous oviform ovine oviparous ovoid ovoviviparous ovular owing owlish own +owned owner-occupied ownerless ox-eyed oxford-gray oxford-grey oxidative +oxidised oxidizable oxidized oxonian p.m. pachydermal pachydermatous pachydermic +pachydermous pacific pacifist pacifistic packable packaged packed padded paddle- +shaped paederastic paediatric pagan paid paid-up pain-free pained painful +painless painstaking paintable painted painterly paired pakistani palaeolithic +palaeontological palatable palatal palatalised palatalized palatial palatine +palatoglossal pale pale-colored pale-faced pale-hued paleoanthropological +paleocortical paleolithic paleontological paleozoic palestinian palingenetic +palish palladian palliative pallid pally palm-shaped palmar palmate palmately- +lobed palmatifid palmlike palmy palpable palpatory palpebrate palpitant +palpitating palsied palsy-walsy paltry pampering pan-hellenic panamanian +pancake-like pancake-style pancreatic pandemic pandurate panduriform panegyric +panegyrical paneled panhellenic panic-stricken panic-struck panicked panicky +panicled paniculate panoplied panoptic panoptical panoramic pantalooned +pantheist pantheistic pantropic pantropical papal paperback paperbacked +paperlike papery papillary papillate papilliform papillose papist papistic +papistical pappose papuan parabolic parabolical paraboloidal paradigmatic +paradisaic paradisaical paradisal paradisiac paradisiacal paradoxical paraguayan +parallel paralytic paralytical paralyzed paramagnetic paramedical parametric +paramilitary paramount paranasal paranoid paranormal paraphrastic paraplegic +parapsychological parasitic parasitical parasiticidal parasympathetic +parasympathomimetic parched pardonable parental parented parenteral parenthetic +parenthetical parentless pareve parheliacal parhelic parietal paripinnate +parisian parked parky parliamentary parlous parochial paroicous parotid parous +paroxysmal parrotlike parsimonious part-time parted parthenogenetic parthian +partial partible participating participatory participial particolored +particoloured particular particularised particularistic particularized +particulate partisan partitive partizan parttime parturient party-spirited parve +parvenu parvenue paschal pass passable passant passe passee passerine passing +passionate passionless passive past pasted pastel pastel-colored pastelike +pasteurian pasteurised pasteurized pastoral pasty pat patched patchy patellar +patelliform patent patented paternal paternalistic pathetic pathless pathogenic +pathologic pathological patient patriarchal patriarchic patricentric patrician +patrilineal patrilinear patrimonial patriotic patristic patristical patronised +patronising patronized patronizing patronless patronymic patterned pauline +paunchy paved pavlovian pawky payable paying pea-green peace-loving peaceable +peaceful peacekeeping peach-colored peachy peachy-colored peachy-coloured +peacock-blue peaked peaky peanut pear-shaped pearlescent pearly pearly-white +peaty pebble-grained pebbly peccable peccant peckish pectic pectinate pectineal +pectoral peculiar pecuniary pedagogic pedagogical pedal pedantic pedate +pederastic pedestrian pediatric pedigree pedigreed pedunculate peeled peerless +peeved peevish pegged-down pejorative pelagic pelecypod pelecypodous pell-mell +pellucid peloponnesian peltate pelvic pemphigous penal penciled pencilled +pendant pendent pending pendulous penetrable penetrating penetrative penial +penicillin-resistant penile peninsular penitent penitential penitentiary pennate +penniless penny-pinching penny-wise pensionable pensive pent pent-up pentagonal +pentamerous pentangular pentasyllabic pentatonic pentavalent pentecostal +penultimate penumbral penurious peopled peppery peppy peptic perambulating +perceivable perceived perceptible perceptive perceptual percipient percussive +percutaneous perdurable peregrine peremptory perennial perfect perfected +perfectible perfervid perfidious perfoliate perforate perforated perfumed +perfunctory perianal pericardiac pericardial perigonal perilous perinasal +perinatal perineal periodic periodical periodontal periodontic peripatetic +peripheral periphrastic peripteral perirhinal perishable peristylar perithelial +peritoneal peritrichous periwigged perky permanent permanent-press permeable +permeant permeating permeative permed permissible permissive permutable +pernicious pernickety peroneal perpendicular perpetual perplexed perplexing +persevering persian persistent persisting persnickety person-to-person +personable personal personalised personalized perspicacious perspicuous +persuadable persuasible persuasive pert pertinacious pertinent perturbed +perturbing peruked peruvian pervasive perverse perversive perverted pervious +pesky pessimal pessimistic pessimum pestered pestering pestiferous pestilent +pestilential pet petal-like petaled petalled petalless petallike petaloid +petalous petite petitionary petrifying petrous petticoated pettish petty +petulant phagocytic phalangeal phallic phantasmagoric phantasmagorical +phantasmal phantom pharaonic pharisaic pharisaical pharmaceutic pharmaceutical +pharmacologic pharmacological pharyngeal phenomenal phenotypic phenotypical +philanthropic philatelic philatelical philharmonic philhellene philhellenic +philippine philistine philological philosophic philosophical phlegmatic +phlegmatical phlegmy phobic phocine phoenician phonemic phonetic phoney phonic +phonogramic phonologic phonological phony phosphorescent phosphoric phosphorous +photic photochemical photoconductive photoelectric photoelectrical photoemissive +photogenic photographic photomechanical photometric photometrical photosensitive +photosynthetic photovoltaic phrasal phreatic phrenetic phrenic phrenological +phyletic phylliform phyllodial phylogenetic physical physicochemical physiologic +physiological physiotherapeutic phytophagic phytophagous phytophilous piagetian +pianissimo pianistic piano picaresque picayune pickled picky pictographic +pictorial pictural pictured picturesque piddling pie-eyed piebald piecemeal pied +pierced piercing pietistic pietistical piezoelectric piffling pig-sized pigeon- +breasted pigeon-toed piggish piggy pigheaded pilar pilary pillaged pillar-shaped +pillared pilose pilosebaceous pilotless pilous pimpled pimply pinchbeck pinched +pineal pinioned pink pink-collar pink-lavender pink-orange pink-purple pink-red +pink-slipped pink-tinged pink-tipped pinkish pinkish-lavender pinkish-orange +pinkish-purple pinkish-white pinnate pinnate-leafed pinnate-leaved pinnated +pinnatifid pinnatisect pinstriped pint-size pint-sized pinwheel-shaped pious +piquant piratical piscatorial piscatory piscine piscivorous pissed pistillate +pitch-black pitch-dark pitched pitcher-shaped pitchy piteous pithy pitiable +pitiful pitiless pitted pituitary pivotal pixilated pizzicato placable placating +placative placatory placeable placed placental placid placoid plagiarised +plagiaristic plagiarized plagioclastic plaguey plaguy plain plain-woven +plainspoken plaintive planar planate plane plane-polarized planetal planetary +plangent planktonic planless planned planoconcave planoconvex planographic +plant-eating plantal plantar planted plantigrade plastered plastic platelike +platinum-blonde platitudinal platitudinous platonic platonistic platyrhine +platyrhinian platyrrhine platyrrhinian platyrrhinic plausible plausive playable +played playful pleading pleasant pleasant-smelling pleasant-tasting pleased +pleasing pleasurable plebeian pledged plenary plenteous plentiful pleochroic +pleomorphic pleonastic plethoric pleural pleurocarpous pliable pliant plodding +plotted ploughed plowed plucked plucky plugged plumaged plumate plumb plumbable +plumbaginaceous plumbic plumbous plume-tipped plumed plumelike plumlike plummy +plumose plump plumping plumy plundered plundering pluperfect plural pluralistic +plus plush plush-like plushy plutocratic plutocratical plutonian plutonic +pneumatic pneumococcal pneumogastric pneumonic po-faced poached pocked pocket- +size pocket-sized pocketable pockmarked podgy podlike poetic poetical poignant +poikilothermic poikilothermous point-blank point-of-sale pointed pointed-toe +pointillist pointillistic pointless pointy-toed poised poisonous poker-faced +pokey poky polar polarographic pole-handled polemic polemical polemoniaceous +policy-making polish polished polite politic political polluted pollyannaish +poltroon polyandrous polyatomic polychromatic polychrome polychromic +polycrystalline polydactyl polydactylous polyestrous polygamous polygenic +polyglot polygonal polygynous polyhedral polymeric polymorphemic polymorphic +polymorphous polynesian polynomial polyoestrous polyoicous polypetalous +polyphase polyphonic polyphonous polyploid polysemantic polysemous polysyllabic +polysynthetic polytheistic polytonal polyunsaturated polyvalent pomaded pompous +ponderable pondering ponderous pontifical poor poor-spirited poorly pop popeyed +popish popliteal popular populated populous porcine poriferous pornographic +porose porous porphyritic port portable portentous porticoed portly portrayed +portuguese posed posh positionable positional positioning positive positivist +positivistic possessed possessive possible post-communist post-free postal +postbiblical postdiluvian postdoctoral posted posterior postexilic +postganglionic postglacial postgraduate posthumous postictal postindustrial +postmenopausal postmeridian postmillennial postmodern postmodernist postmortal +postmortem postnatal postnuptial postoperative postpaid postpartum postpositive +postprandial postulational postural postwar pot-trained potable potbellied +potbound potent potential potholed potted potty potty-trained pouch-shaped +pouched pouchlike pound-foolish pouring poverty-stricken powder-puff powdered +powdery powdery-blue power-assisted power-driven powered powerful powerless +practicable practical practiced practised praetorial praetorian pragmatic +pragmatical praiseful praiseworthy praising prakritic prandial prankish +prayerful pre-christian pre-columbian pre-emptive pre-existent pre-existing pre- +jurassic pre-raphaelite pre-socratic preachy preadolescent preanal precancerous +precarious precast precative precatory precautional precautionary precedent +precedented precedential preceding precious precipitant precipitate +precipitating precipitous precise preclinical preclusive precocial precocious +precognitive preconceived preconcerted preconditioned precooked precooled +precordial precursory predaceous predacious predatory predestinarian +predestinate predestined predetermined predicative predictable predictive +predigested predisposed predominant predominate preeminent preemptive +preexistent preexisting prefab prefaded prefatorial prefatory prefectural +preferable preferent preferential preferred prefigurative prefrontal pregnant +prehensile prehistoric prehistorical prejudiced prejudicial prejudicious +prelapsarian preliminary preliterate premarital premature premedical +premeditated premenopausal premenstrual premier premiere premium premonitory +prenatal prenominal prenuptial preoccupied preoperative prepackaged prepacked +prepaid preparative preparatory prepared preponderant preponderating +prepositional prepossessing preposterous preprandial prepubertal prepubescent +prepupal prerecorded prerequisite presbyopic prescient prescribed prescription +prescriptive present present-day presentable presentational preservable +preservative preserved preset presidential presocratic pressed pressing pressor +prestigious prestissimo presto presumable presumptive presumptuous +presymptomatic preteen pretend pretended pretentious preternatural pretorial +pretorian pretty pretty-pretty prevailing prevalent prevenient preventable +preventative preventive previous prewar priapic price-controlled priceless +pricey prickly prickly-leafed prickly-leaved pricy prideful priestlike priestly +priggish prim prima primaeval primal primary prime primed primeval primiparous +primitive primo primordial princely principal principled printable prior +prismatic prisonlike prissy pristine private private-enterprise privileged privy +prize prizewinning pro pro-american pro-choice pro-inflammatory pro-life +proactive probabilistic probable probationary probative probatory probing +problematic problematical procaryotic procedural processed processional +proclaimed proconsular procreative procrustean procumbent procurable prodigal +prodigious prodromal prodromic productive profanatory profane profaned professed +professional professorial proficient profit-maximising profit-maximizing +profitable profitless profligate profound profuse progestational prognathic +prognathous prognostic prognosticative progressive prohibited prohibitive +prohibitory proinflammatory projected projectile projecting prokaryotic prolate +proletarian prolific prolix prolonged prolusory prominent promiscuous promising +promissory promotional promotive prompt promulgated prone pronged prongy +pronominal pronounceable pronounced proof proofed propaedeutic propagandist +propagandistic propagative propellant propellent propelling proper propertied +property-owning propertyless prophetic prophetical prophylactic propitiative +propitiatory propitious proportionable proportional proportionate proprietary +proprioceptive propulsive prosaic proscribed prosodic prospective prospering +prosperous prospicient prostate prostatic prosthetic prosthodontic prostrate +prostyle prosy protanopic protean protected protecting protective proteinaceous +proteolytic proterozoic protestant proto protogeometric prototypal prototypic +prototypical protozoal protozoan protozoic protozoological protracted +protractible protractile protruding protrusible protrusile protrusive +protuberant proud proustian provable proved proven provencal proverbial +provident providential provincial provisional provisionary provisory provocative +provoked provoking prox proximal proximate proximo prudent prudential prudish +prurient prussian prying pseudo pseudohermaphrodite pseudohermaphroditic +pseudonymous pseudoperipteral pseudoprostyle pseudoscientific psychedelic +psychiatric psychiatrical psychic psychical psychoactive psychoanalytic +psychoanalytical psychogenetic psychogenic psychokinetic psycholinguistic +psychological psychometric psychomotor psychoneurotic psychopathic +psychopathologic psychopathological psychopharmacological psychosexual +psychosomatic psychotherapeutic psychotic psychotropic pteridological ptolemaic +pubertal puberulent pubescent pubic public public-spirited publicised publicized +publishable published pucka puckish puddingheaded pudendal pudgy puerile +puerperal puff puffed puffy pug-faced pug-nose pug-nosed pugilistic pugnacious +puissant pukka pulchritudinous pulmonary pulmonic pulpy pulseless pulverised +pulverized pumped pumped-up pumpkin-shaped punch-drunk punctilious punctual +puncturable punctured punctureless pungent punic punishable punished punishing +punitive punitory punk puny pupal pupillary puppyish puppylike puranic purblind +purchasable pure pureblood pureblooded purebred purgative purgatorial purging +purifying puritanic puritanical purple purple-black purple-blue purple-brown +purple-eyed purple-flowered purple-green purple-lilac purple-red purple-spotted +purple-tinged purple-tinted purple-veined purple-white purplish purplish-black +purplish-blue purplish-brown purplish-green purplish-lilac purplish-red +purplish-white purpose-built purpose-made purposeful purposeless purposive +purse-proud pursuant pursued pursuing pursy purulent pushful pushy pusillanimous +pussy pustulate put-up put-upon putative putdownable putrefacient putrefactive +putrefiable putrescent putrescible putrid putrid-smelling puzzled puzzling +pyaemic pycnotic pyemic pyknic pyknotic pyloric pyogenic pyramidal pyramidic +pyramidical pyrectic pyretic pyrochemical pyroelectric pyroelectrical pyrogallic +pyrogenetic pyrogenic pyrogenous pyrographic pyroligneous pyrolignic pyrolytic +pyrotechnic pyrotechnical pyrrhic pythagorean qabalistic qatari quack +quadrangular quadraphonic quadrasonic quadrate quadratic quadrilateral +quadrillionth quadripartite quadriphonic quadrisonic quadruped quadrupedal +quadruple quadruplex quadruplicate quaggy quaint qualified qualitative quality +quantal quantifiable quantitative quantized quarantined quarrelsome quartan +quarterly quartzose quasi quasi-religious quasi-royal quaternary quaternate +quavering queasy quebecois quechuan queen-size queen-sized queenlike queenly +queer quelled quenched quenchless querulous questionable questioning quick +quick-change quick-drying quick-eared quick-frozen quick-sighted quick-tempered +quick-witted quickset quicksilver quiescent quiet quilted quincentenary +quincentennial quinquefoliate quintessential quintillionth quintuple quirky +quits quixotic quizzical quondam quotable quotidian r.c. rabbinic rabbinical +rabbit-sized rabble-rousing rabelaisian rabid racemose rachitic racial racist +rackety racking racy raddled radial radial-ply radiant radiate radiating radical +radio radio-controlled radio-opaque radioactive radiographic radiological +radiolucent radiopaque radiophonic radiosensitive radiotelephonic raffish +raftered ragged raging raiding raimentless raining rainless rainproof rainy +raisable raiseable raised raising rakish rallentando rallying ramate rambling +rambunctious ramose ramous rampageous rampant ramshackle rancid rancorous random +randomised randomized randy ranging rangy rank rank-smelling ranked ranking +ransacked ransomed rapacious raped rapid rapt raptorial rapturous rare rare- +roasted rarefied rarified raring rascally rash raspberry-red rasping raspy +rastafarian ratable rateable ratified ratiocinative rational rationalist +rationalistic rationed ratlike rattlebrained rattled rattlepated rattling ratty +raucous raunchy ravaged ravaging ravening ravenous ravishing raw rawboned +rayless razed razor-backed razor-sharp razorback re-created re-entrant re-formed +reachable reactionary reactionist reactive readable ready ready-cooked ready- +made ready-to-eat ready-to-wear real real-time realised realistic realizable +realized reanimated rear rearing rearmost rearward reasonable reasoned reasoning +reasonless reassured reassuring rebarbative rebellious reborn recalcitrant +receding receivable received recent receptive recessed recessional recessionary +recessive rechargeable recherche reciprocal reciprocative reciprocatory reckless +reclaimable reclaimed recluse reclusive recognisable recognised recognizable +recognized recoilless recollective recombinant reconcilable reconciled +reconciling recondite reconstructed reconstructive record-breaking recorded +recoverable recovered recovering recreant recreational recriminative +recriminatory recrudescent rectal rectangular rectifiable rectified rectilineal +rectilinear rectosigmoid recumbent recuperative recurrent recurring recursive +recurvate recurved recusant recyclable red red-blind red-blooded red-brick red- +brown red-carpet red-coated red-faced red-flowered red-fruited red-gray red-grey +red-handed red-hot red-lavender red-letter red-orange red-purple red-rimmed red- +streaked red-striped red-violet redbrick reddened reddish reddish-brown reddish- +gray reddish-grey reddish-lavender reddish-orange reddish-pink reddish-striped +reddish-violet reddisn-purple redeemable redeemed redeeming redemptional +redemptive redemptory redheaded redistributed redolent redoubled redoubtable +reduced reducible reductionist reductive redundant redux reechoing reedlike +reedy reefy reeking reentrant referable referenced referent referential refined +reflected reflecting reflective reflex reflexed reflexive reform-minded +reformable reformative reformatory reformed reformist refractile refractive +refractory refractory-lined refreshed refreshful refreshing refrigerant +refrigerated refrigerating refulgent refutable regal regardant regardful +regardless regenerate regenerating regent regimental regimented regional +registered regnant regressive regretful regrettable regular regulated regulation +regulative regulatory rehabilitative reigning reincarnate reinforced +reinvigorated reiterative rejected rejective rejoicing related relatiative +relational relative relativistic relaxant relaxed relaxing releasing relentless +relevant reliable reliant relieved religious relinquished relocated reluctant +remaining remarkable rembrandtesque remediable remedial remindful reminiscent +remiss remittent remorseful remorseless remote remote-controlled removable +removed remunerated remunerative renal renascent rending renegade renewable +renewed renewing reniform renowned rent-free rentable rental renunciant +renunciative reorganised reorganized repand reparable repayable repeatable +repeated repellant repellent repelling repentant repetitious repetitive +replaceable replete reply-paid reportable reported reposeful reprehensible +representable representational representative represented repressed repressing +repressive reproachful reprobate reproducible reproductive reproving reptilian +republican repudiative repugnant repulsive reputable requested required +requisite rescindable rescued resentful reserved resettled resident residential +residual residuary resilient resinated resinlike resinous resiny resistant +resistible resistive resistless resolute resolvable resolved resonant resonating +resounding resourceful resourceless respectable respected respectful respective +respiratory resplendent respondent responsible responsive rested restful restive +restless restorative restrained restricted restricting restrictive resultant +resupine resurgent resuscitated retained retaliatory retarded retentive reticent +reticular reticulate retinal retired retiring retractable retracted retractile +retral retributive retributory retrievable retro retroactive retroflex +retroflexed retrograde retrogressive retrorse retrospective retrousse returnable +returning reusable revealing revelatory revenant revengeful reverberant +reverberating reverberative revered reverend reverent reverential reverse +reversed reversible reversionary reversive revertible reverting revised +revitalised revitalising revitalized revitalizing revivalistic revived reviving +revocable revokable revolting revolutionary revolved rewardful rewarding rh- +negative rh-positive rhapsodic rhenish rheologic rheological rhetorical +rheumatic rheumatoid rheumy rhinal rhizoidal rhizomatous rhodesian rhombic +rhombohedral rhomboid rhomboidal rhymed rhymeless rhyming rhythmic rhythmical +riant ribald ribbed ribbon-shaped ribbonlike ribbony ribless riblike rich +rickettsial rickety riddled ridged ridiculous riemannian rife rifled rigged +right right-angled right-down right-eyed right-hand right-handed right-minded +right-side-out right-side-up right-wing righteous rightful rightish rightist +rightmost rigid rigorous riled rimed rimeless riming rimless rimmed rimose rimy +ring-shaped ringed ringleted ringlike riotous rip-roaring riparian ripe ripened +ripping rippled risen risible rising risk-free riskless risky risque rit. +ritardando ritenuto ritual ritualistic ritzy rivalrous riveting roadless roan +roaring roast roasted robed robotic robotlike robust robustious rock-bottom +rock-inhabiting rock-loving rock-ribbed rock-steady rockbound rocket-propelled +rocklike rocky rococo rod-shaped rodlike roentgenographic roguish roiled roiling +roily rolled rollicking rolling roly-poly romaic roman romance romani romanian +romanic romanist romansh romantic romanticist romanticistic romany romish roofed +roofless roomy rooseveltian rootbound rooted rootless ropey ropy rosaceous rose +rose-cheeked rose-colored rose-lavender rose-lilac rose-mauve rose-purple rose- +red rose-tinged rose-tinted roseate rosicrucian rostrate rosy rosy-cheeked rosy- +colored rosy-purple rot-resistant rotary rotatable rotated rotational rotatory +rotted rotten rotund rouged rough rough-and-ready rough-and-tumble rough-cut +rough-haired rough-spoken rough-textured roughdried roughened roughhewn roughish +roughshod roumanian round round-arm round-backed round-bottom round-bottomed +round-eyed round-faced round-fruited round-shouldered round-the-clock roundabout +rounded roundheaded roundish rousing rousseauan routine roving rowdy royal +ruandan rubber rubberlike rubbery rubbishy rubicund ruby ruby-red rudder-like +rudderless ruddy rude rudimentary rueful ruffianly ruffled rugged rugose ruined +ruinous rule-governed ruled ruling ruly rum rumanian rumansh rumbling +rumbustious ruminant ruminative rummy rumpled run-down run-of-the-mill run-of- +the-mine run-on run-resistant runaway runcinate runic running runny runproof +runty rupestral rupicolous rural ruritanian rush rushed rushlike rushy russet +russian russian-speaking rust rust-brown rust-colored rust-free rust-red rust- +resistant rusted rustic rustless rustling rustproof rustproofed rusty rusty- +brown rusty-red ruthful ruthless rutted ruttish rutty rwandan s-shaped sabahan +sabbatarian sabbatic sabbatical saber-toothed sabertoothed sabine sable sabre- +toothed saccadic saccharine sacculate sacculated sacerdotal sacked saclike +sacral sacramental sacred sacrificeable sacrificial sacrilegious sacrosanct sad +sad-faced saddle-shaped saddle-sore saddled sadducean sadistic sadomasochistic +safe safety-related sagacious sage sage-green sagging sagittal sagittate +sagittiform saharan said sainted saintlike saintly salable salacious +salamandriform salaried saleable salient salientian saliferous saline salivary +sallow salmon salt salt-cured salted saltish saltlike salty salubrious salutary +salvadoran salvadorean salvageable salverform salvific salving same samoan +samoyedic-speaking sanative sanctified sanctimonious sanctionative sanctioned +sanctioning sand-blind sandaled sandalled sandlike sandpapery sandy sane +sanguinary sanguine sanguineous sanious sanitary sanitised sanitized sapid +sapiens sapient sapiential sapless saponaceous saponified saporous sapphic +sapphire sapphirine sappy saprobic saprophagous saprophytic saprozoic sarawakian +sarcastic sarcoid sarcolemmal sarcolemmic sarcolemnous sarcosomal sardinian +sardonic sartorial sassy satanic satellite satiable satiate satiated satiny +satiric satirical satisfactory satisfiable satisfied satisfying saturated +saturnine satyric satyrical saucer-eyed saucer-shaped saucy saudi saudi-arabian +saurian sausage-shaped saute sauteed savage saved saving savorless savory +savourless savoury saw-like saw-toothed sawed-off sawn-off sawtoothed-edged +saxatile saxicoline saxicolous saxon scabby scabrous scalable scalar scaled +scaleless scalelike scalene scaley scalic scalloped scaly scaly-tailed +scandalmongering scandalous scandent scandinavian scant scanty scaphoid scapose +scapular scapulohumeral scarce scarecrowish scared scarey scarlet scarlet- +crimson scarlet-pink scarred scary scathing scatological scatterbrained +scattered scattershot scatty scenic scented scentless sceptered sceptical +sceptred scheduled schematic scheming schismatic schismatical schizoid +schizophrenic schmaltzy schmalzy scholarly scholastic schoolboyish schoolgirlish +schoolwide sciatic scientific scintillant scintillating sciolistic scissor- +tailed sclerosed sclerotic scopal scorbutic scorched scorching scoreless scorned +scornful scotch scotomatous scots scottish scoundrelly scoured scowling scrabbly +scraggly scraggy scrambled scrappy scratchy scrawny screaky screaming screechy +screw-loose screw-topped screwball screwy scrimpy scrimy scripted scriptural +scrivened scrofulous scrotal scrub scrubbed scrubby scruffy scrumptious +scrupulous sculpted sculptural sculptured sculpturesque scummy scurfy scurrilous +scurrying scurvy scythian sea-green sea-level seaborne seafaring seagirt +seagoing sealed seamanlike seamanly seamed seamless seamy sear searching seared +searing seasick seasonable seasonal seasoned seated seaward seaworthy sebaceous +sec secluded second second-best second-class second-rate second-sighted second- +string second-year secondary secondhand secret secretarial secretive secretory +sectarian sectional sectioned sectorial secular secure sedate sedative sedentary +sedgelike sedgy sedimentary seditious seductive sedulous see-through seeable +seeded seedless seedy seeing seeming seemly seeping seething segmental segmented +segregated seismal seismic seismologic seismological select selected selective +self self-abnegating self-absorbed self-acting self-activating self-addressed +self-aggrandising self-aggrandizing self-appointed self-asserting self-assertive +self-assured self-aware self-balancing self-centered self-centred self-collected +self-colored self-coloured self-complacent self-conceited self-confessed self- +confident self-conscious self-consistent self-constituted self-contained self- +contradictory self-defeating self-denying self-deprecating self-destructive +self-directed self-disciplined self-educated self-effacing self-employed self- +enclosed self-established self-evident self-examining self-explanatory self- +fertilised self-fertilized self-forgetful self-generated self-giving self- +governing self-important self-imposed self-induced self-indulgent self-involved +self-limited self-loading self-locking self-loving self-luminous self-made self- +moving self-opinionated self-pollinated self-pollinating self-possessed self- +proclaimed self-produced self-propelled self-propelling self-referent self- +regulating self-reliant self-renewing self-respectful self-respecting self- +restraining self-righteous self-sacrificing self-satisfied self-sealing self- +seeded self-seeking self-service self-serving self-sowed self-sown self-styled +self-sufficient self-sufficing self-supporting self-sustained self-sustaining +self-whispered self-willed self-winding selfish selfless selfsame seljuk +sellable semantic semestral semestrial semi-climbing semi-dry semi-erect semi- +evergreen semi-formal semi-processed semi-prostrate semi-tuberous semi-upright +semi-wild semiabstract semiannual semiaquatic semiarid semiautobiographical +semiautomatic semicentenary semicentennial semicircular semicomatose +semiconducting semiconductive semiconscious semidark semidetached semiempirical +semiformal semihard semiliquid semiliterate semilunar semimonthly seminal +seminiferous seminude semiofficial semiopaque semiotic semiotical semiparasitic +semipermanent semipermeable semipolitical semiprecious semiprivate semipublic +semirigid semiskilled semisoft semisolid semisweet semisynthetic semite +semiterrestrial semitic semitic-speaking semitransparent semitropic semitropical +semiweekly sempiternal senatorial senecan senegalese senescent senile senior +sensate sensational sensationalistic sensed senseless sensible sensitised +sensitising sensitive sensitized sensitizing sensorial sensorimotor +sensorineural sensory sensual sensuous sent sentential sententious sentient +sentimental sepaline sepaloid separable separate separated separatist separative +septal septate septic septicemic septrional septuple sepulchral sequent +sequential sequestered sequined seraphic seraphical serbian sere serendipitous +serene serflike serial sericeous sericultural seriocomic seriocomical serious +serious-minded serologic serological serous serpentine serrate serrated serried +serrulate serviceable servile servo servomechanical sesquipedalian sessile set +set-apart set-aside setaceous setose settled seven seven-day seven-fold seven- +membered seven-sided sevenfold seventeen seventeenth seventh seventieth seventy +seventy-eight seventy-fifth seventy-five seventy-four seventy-nine seventy-one +seventy-seven seventy-six seventy-three seventy-two severable several several- +seeded severe severed sewed sewn sex-limited sex-linked sex-starved sexagenarian +sexagesimal sexed sexist sexless sextuple sexual sexy seychellois shabby shabby- +genteel shackled shaded shadowed shadowy shady shagged shaggy shaggy-coated +shaggy-haired shakable shakeable shakedown shaken shakespearean shakespearian +shaky shallow shallow-draft shallow-draught sham shamanist shamanistic shambolic +shamed shamefaced shameful shameless shaped shapeless shapely shaping shared +sharing sharp sharp-angled sharp-cornered sharp-eared sharp-eyed sharp-limbed +sharp-nosed sharp-pointed sharp-set sharp-sighted sharp-tasting sharp-toothed +sharp-worded sharpened shattered shattering shatterproof shaved shaven shavian +sheared sheathed shed sheeny sheepish sheeplike sheer sheetlike shelflike shelfy +shell-less shelled shellproof sheltered shelvy shield-shaped shielded shifting +shiftless shifty shimmery shingly shining shinto shintoist shintoistic shiny +shipboard shipshape shirty shitless shitty shivering shivery shoaly shock- +absorbent shock-headed shockable shocked shocking shod shodden shoddy shoed +shoeless shona shopsoiled shopworn shoreward shorn short short-beaked short- +billed short-bodied short-dated short-eared short-haired short-handed short- +handled short-headed short-lived short-nosed short-order short-range short-run +short-snouted short-spurred short-staffed short-stalked short-stemmed short- +tailed short-tempered short-term short-winded short-winged shortened shorthand +shortish shortsighted shot shouldered shouted showery showy shredded shrew-sized +shrewd shrewish shrieked shrill shrimpy shrinkable shriveled shrivelled shrubby +shrunken shuddering shuddery shuha shut shut-in shuttered shy siamese siberian +sibilant sibyllic sibylline sicilian sick sick-abed sickening sickish sickle- +shaped sickly side side-to-side sidearm sidelong sidereal sidesplitting sideways +sighted sightless sightly sigmoid sigmoidal sign sign-language signal signed +significant significative sikh silenced silent siliceous silicious silk-lined +silken silklike silky silky-haired silky-leafed silky-leaved silly silty silvan +silver silver-blue silver-bodied silver-colored silver-gray silver-green silver- +grey silver-haired silver-leafed silver-leaved silver-scaled silver-tongued +silver-white silverish silvern silvery silvery-blue silvery-bodied silvery-gray +silvery-green silvery-grey silvery-leafed silvery-leaved silvery-white simian +similar simple simple-minded simplex simplified simplistic simulated +simultaneous sincere sinewy sinful singable singaporean singhalese singing +single single-barreled single-barrelled single-bedded single-breasted single- +celled single-channel single-handed single-humped single-lane single-minded +single-seeded single-shelled single-spaced single-stranded singsong singular +sinhala sinhalese sinister sinistral sinistrorsal sinistrorse sinitic sinkable +sinless sinning sintered sinuate sinuous sinusoidal siouan siouan-speaking +sissified sissy sissyish sisterlike sisterly sisyphean sitting situated six six- +fold six-membered six-pointed six-sided sixfold sixpenny sixteen sixteenth sixth +sixtieth sixty sixty-eight sixty-fifth sixty-five sixty-four sixty-fourth sixty- +nine sixty-one sixty-seven sixty-six sixty-three sixty-two sizable size sizeable +sized sizzling skanky skeletal skeptical sketchy skew skew-eyed skew-whiff +skewed skilful skilled skillful skim skimmed skimpy skin-deep skin-tight +skinless skinned skinnerian skinny skint skintight skirting skittish sky-blue +skyward slack slain slaked slam-bang slanderous slangy slanted slanting slap-up +slapdash slaphappy slapstick slashed slashing slate-black slate-gray slate-grey +slatey slatternly slaty slaty-gray slaty-grey slaughterous slav slaveholding +slaveless slavelike slavic slavish slavonic sleazy sleek sleeping sleepless +sleepy sleepy-eyed sleepyheaded sleety sleeved sleeveless slender slender-bodied +slender-waisted slender-winged sliced slick slicked sliding slight slighting +slim slim-bodied slim-waisted slimed slimy slipper-shaped slippered slippery +slipping slippy slipshod slithering slithery slivery sloped sloping slopped +sloppy sloshed slothful slouchy sloughy slovakian slovenian slovenly slow slow- +moving slow-witted slowgoing slubbed sluggish sluicing slumberous slumbery +slumbrous slummy slurred slushy sluttish sly small small-cap small- +capitalisation small-capitalization small-eared small-fruited small-grained +small-minded small-scale small-seeded small-time small-toothed small-winged +smaller smallish smarmy smart smashed smashing smelling smelly smiling smitten +smoggy smoke-cured smoke-dried smoke-filled smoke-free smoked smokeless smoking +smoky smoldering smooth smooth-bodied smooth-faced smooth-haired smooth-shaven +smooth-shelled smooth-skinned smooth-spoken smooth-textured smooth-tongued +smoothbore smoothed smoothened smothered smothering smouldering smudgy smug +smuggled smutty snafu snake-haired snakelike snaky snappish snappy snarled +snarly snazzy sneak sneaking sneaky sneering sneezy snide sniffly sniffy +snobbish snobby snoopy snooty snorty snot-nosed snotty snotty-nosed snow-blind +snow-blinded snow-capped snow-clad snow-covered snow-white snowbound snowy snub +snub-nosed snuff snuff-brown snuffling snuffly snug snuggled so-called so-so +soaked soapy soaring sober sobering sobersided sociable social socialised +socialist socialistic socialized societal sociobiologic sociobiological +sociocultural socioeconomic sociolinguistic sociological sociopathic socratic +sodden sodding soft soft-boiled soft-finned soft-footed soft-haired soft-nosed +soft-spoken soft-witted softened softening softheaded softhearted softish soggy +soi-disant soigne soignee soil-building soiled solanaceous solar sold sold-out +soldierlike soldierly sole soled soleless solemn solicitous solid solid-colored +solid-coloured solid-hoofed solid-state solidified solitary solo solomonic +soluble solvable solved solvent somali somalian somatic somatogenetic +somatogenic somatosensory somber sombre some sometime somniferous somnific +somnolent sonant songful songlike sonic sonorous sonsie sonsy soot-black +soothing sooty sooty-black sophistic sophistical sophisticated sophomore +soporiferous soporific soppy sopranino soprano sorbed sorbefacient sorcerous +sordid sore sore-eyed sororal sorrel sorrowful sorrowing sorry sorted +soteriological sotho sottish souffle-like soughing sought sought-after soul- +destroying soul-stirring soulful soulless sound soundable sounding soundless +soundproof soupy sour sour-tasting soured sourish soused south south-central +south-polar southbound southeast southeasterly southeastern southeastward +southerly southern southernmost southmost southward southwest southwesterly +southwestern southwestward sovereign soviet sown sozzled spaced spaced-out +spacey spacial spaciotemporal spacious spacy spade-like spade-shaped spangled +spangly spanish spanish-speaking spanking spare sparing sparkling sparkly +sparrow-sized sparse spartan spasmodic spastic spatial spatiotemporal spattered +spatula-shaped spatulate spavined spayed speakable speaking spearhead-shaped +special specialised specialistic specialized specifiable specific specified +specious specked speckled speckless spectacled spectacular spectral +spectrographic spectrometric spectroscopic spectroscopical specular speculative +speech-endowed speechless speedy spell-bound spellbinding spellbound spendable +spendthrift spent sperm-filled spermatic spermicidal spermous spheric spherical +spheroidal sphingine spic spic-and-span spicate spice-scented spick spick-and- +span spicy spider-shaped spiderlike spiderly spidery spiffing spiffy spiked +spikelike spiky spinal spindle-legged spindle-shanked spindle-shaped spindly +spine-tipped spineless spinnable spinnbar spinose spinous spiny spiny-backed +spiny-edged spiny-finned spiny-leafed spiny-leaved spiny-stemmed spiral spiral- +shelled spiraling spirant spirited spiritless spiritous spiritual spiritualist +spiritualistic spirituous spiteful splanchnic splashed splashy splattered splay +splayfoot splayfooted splendid splendiferous splenetic splenic splinterless +splinterproof splintery split splitting splotched spoilable spoiled spoilt +spoken spondaic spongelike spongy spontaneous spooky spoon-shaped sporadic +spore-bearing sporogenous sporting sportive sportsmanlike sporty spotless +spotted spotty spousal spouting sprawling sprawly spray-dried spread spread- +eagle spread-out sprigged sprightly spring-blooming spring-flowering spring- +loaded springless springlike springy sprouted spruce spry spumy spunky spur-of- +the-moment spurious spurned spurting squab squabby squalid squalling squally +squamulose squandered square square-built square-jawed square-rigged square- +shaped square-shouldered square-tailed square-toed squared squared-toe squarish +squashed squashy squat squatty squawky squeaking squeaky squealing squeamish +squeezable squelched squiffy squiggly squinched squint squint-eyed squinting +squinty squirrel-sized squirting squishy sr. stabbing stabile stabilised +stabilising stabilized stabilizing stable staccato stacked stage-struck staged +stagey stagflationary staggering stagnant stagy staid stainable stained +stainless stale stalemated stalinist stalked stalkless stall-fed stalwart +staminate stand-alone stand-up standard standardised standardized standby +standing standoffish standpat stannic stannous staphylococcal staple star star- +shaped starboard starchless starchlike starchy staring stark starkers starless +starlike starlit starred starring starry starry-eyed starting startled startling +starved starving statant state-controlled state-of-the-art state-supported +stated stateless stately statesmanlike statesmanly statewide static stationary +statistical stative statuary statuesque statute statutory staunch stay-at-home +steadfast steadied steady steady-going steadying stealthy steam-powered steamed +steaming steamy stearic steel-plated steely steep steep-sided steepish steerable +stellar stellate stemless stemmatic stemmed stenographic stenographical stenosed +stenotic stentorian step-by-step stepwise stereo stereophonic stereoscopic +stereotyped stereotypic stereotypical sterile sterilised sterilized sterling +stern sternal sternutative sternutatory steroidal stertorous stewed stick-in- +the-mud stick-on sticking sticky stiff stiff-backed stiff-branched stiff-haired +stiff-necked stiff-tailed stifled stifling stigmatic still stillborn stilly +stilted stimulant stimulated stimulating stimulative stinging stingless stingy +stinking stinky stinting stipendiary stippled stipulatory stirred stirring +stirrup-shaped stitched stochastic stock stock-still stocked stockinged stocky +stodgy stoic stoical stoichiometric stolid stoloniferous stomachal stomachic +stomatal stomatous stone stone-blind stone-broke stone-cold stone-dead stone- +deaf stone-gray stone-grey stone-sober stoned stoneless stonelike stony stony- +broke stonyhearted stooped stooping stoppable stopped stopped-up stoppered +store-bought stored-program storeyed storied storm-beaten storm-tossed +stormbound stormproof stormy stout stout-billed stout-stemmed stouthearted +stovepiped straggling straggly straight straight-backed straight-billed +straight-from-the-shoulder straight-grained straight-laced straight-legged +straight-out straightarrow straightaway straightforward straightlaced strained +straining strait strait-laced straitlaced stranded strange strangled strapless +straplike strapping strategic strategical stratified stravinskian stravinskyan +straw straw-colored straw-coloured stray straying streaked streaky streaming +streamlined streetwise strengthened strenuous strep streptococcal streptococcic +stressed stressful stretch stretchable stretched stretchy striate stricken +strict strident strikebound striking stringent stringy strip-mined striped +stripped stripped-down stripy strong strong-arm strong-boned strong-flavored +strong-growing strong-minded strong-scented strong-smelling strong-willed +stroppy struck structural structured struggling strung strung-out stubbled +stubbly stubborn stubby stuck stuck-up studded studied studious stuffed stuffy +stumpy stung stunned stunning stunted stupefied stupefying stupendous stupid +stuporous sturdy stygian styleless stylised stylish stylistic stylized styptic +suasible suave sub-rosa sub-saharan subacid subacute subalpine subaltern +subaquatic subaqueous subarctic subartesian subatomic subclavian subclinical +subconscious subcortical subcutaneous subduable subdued subdural subfusc +subgross subhuman subjacent subject subjective subjugable subjugated subjunctive +sublimate sublimated sublime sublimed subliminal sublingual subliterary +sublittoral sublunar sublunary submarine submerged submergible submersed +submersible submissive subnormal subocean suboceanic subocular suborbital +subordinate subordinating subordinative subscribed subscript subsequent +subservient subsidiary subsidised subsidized subsonic substandard substantial +substantiating substantiative substantival substantive substitutable substitute +subsurface subterminal subterranean subterraneous subtle subtractive subtropic +subtropical suburban suburbanised suburbanized subversive succeeding successful +successive succinct succinic succulent such suchlike suckled suctorial sudanese +sudden sudorific sudsy suety sufferable suffering sufficient suffocating +suffocative suffrutescent suffusive sufi sugar-coated sugared sugarless sugary +suggestible suggestive suicidal suitable suited sulcate sulfur-yellow +sulfuretted sulfuric sulfurized sulfurous sulky sullen sulphur-yellow +sulphuretted sulphuric sulphurous sultry sumatran sumerian summary summational +summative summer-blooming summer-flowering summery sumptuary sumptuous sun- +drenched sun-dried sun-loving sunbaked sunburned sunburnt sunday-go-to-meeting +sundried sundry sunk sunken sunken-eyed sunless sunlit sunny sunrise sunset +sunstruck suntanned super superable superabundant superannuated superb +supercharged supercilious supercritical supererogatory superfatted superficial +superfine superfluous superhuman superimposed superincumbent superior +superjacent superlative superlunar superlunary supernal supernatant supernatural +supernaturalist supernaturalistic supernormal supernumerary superordinate +superpatriotic superposable supersaturated superscript supersensitised +supersensitive supersensitized supersonic superstitious supervised supervisory +supine supperless supple supplemental supplementary suppliant supplicant +supplicatory supportable supported supporting supportive supposable supposed +suppositional suppositious supposititious suppressed suppressive suppurative +supranational supranormal supraocular supraorbital suprasegmental supreme surd +sure sure-enough sure-fire sure-footed sure-handed surefooted surface surface- +active surface-assimilative surface-to-air surficial surgical surging surly +surmisable surmountable surmounted surpassing surpliced surplus surprised +surprising surreal surrealistic surreptitious surrogate surrounded surrounding +surviving susceptible suspect suspected suspended suspenseful suspensive +suspicious sustainable sustained sustentacular susurrant susurrous svelte +swagger swaggering swallow-tailed swampy swank swanky swart swarthy +swashbuckling swayback swaybacked swazi swedish sweeping sweet sweet-breathed +sweet-faced sweet-flavored sweet-scented sweet-smelling sweetened sweetheart +sweetish swell swelled sweltering sweltry swept sweptback sweptwing swift swift- +footed swimming swingeing swinging swingy swinish swish swishy swiss swollen +swollen-headed swooning sword-shaped swordlike sworn sybaritic sycophantic +syllabic syllabled syllogistic sylphlike sylvan symbiotic symbolic symbolical +symmetric symmetrical sympathetic sympathomimetic sympatric sympetalous +symphonic symphonious symptomatic symptomless synaesthetic synaptic syncarpous +syncategorematic synchronal synchronic synchronised synchronized synchronous +synclinal syncopated syncretic syncretical syncretistic syncretistical syndetic +synecdochic synecdochical synergetic synergistic synesthetic synoecious +synoicous synonymous synoptic synoptical synovial synsemantic syntactic +syntactical syntagmatic synthetic synthetical syphilitic syrian syrupy +systematic systemic systolic t-shaped tabby taboo tabu tabular tacit taciturn +tacky tactful tactical tactile tactless tactual tadpole-shaped tagged tahitian +tai tail-shaped tailed tailless taillike tailor-made tailored tainted taiwanese +tajikistani take-away take-home taken takeout taking talebearing talented +talentless taliped talismanic talkative talky tall tall-growing tall-stalked +tallish taloned tamable tame tameable tamed tamil tan tangential tangerine +tangible tangled tangy tanned tannic tannish tansy-scented tansy-smelling +tantalising tantalizing tantamount tantric tantrik tanzanian taoist tape- +recorded taped tapered tapering tapestried tapped tardive tardy target-hunting +tarred-and-feathered tarry tarsal tart tartarean tartaric tasmanian tassel- +shaped tasseled tasselled tasteful tasteless tasty tatterdemalion tattered +tattling tatty taunting taupe taurine taut tautologic tautological tawdry tawny +tawny-brown tawny-colored tawny-coloured tax-exempt tax-free taxable taxing +taxonomic taxonomical taxpaying tea-scented teachable teal tearaway tearful +tearing tearless teary teary-eyed teased teasing technical technical-grade +technological technophilic technophobic techy tectonic tedious teeming teen +teenage teenaged teensy teensy-weensy teentsy teeny teeny-weeny teetotal tegular +telegnostic telegraphic telemetered teleological telepathic telephonic +telescoped telescopic telling telltale tellurian telluric telocentric +temerarious temperamental temperate tempered tempering tempest-swept tempest- +tossed tempest-tost tempestuous temporal temporary temptable tempting ten ten- +fold ten-membered ten-sided tenable tenacious tenanted tendencious tendentious +tender tenderhearted tenderised tenderized tending tendinous tendril-climbing +tenebrific tenebrious tenebrous tenfold tenor tense tensed tensile tensional +tensionless tentacled tentacular tentative tenth tenuous tenured tepid +teratogenic terefah terete terminable terminal terminated terminative +terminological ternary ternate terpsichorean terrene terrestrial terrible +terrific terrified terrifying territorial terror-stricken terror-struck terse +tertian tertiary tessellated testaceous testamentary testate tested testicular +testimonial testy tetanic tetchy tete-a-tete tethered tetragonal tetramerous +tetrametric tetravalent teutonic texan textbook textile textual textured thai +thalamocortical thalassic thalloid thallophytic thankful thankless thawed +theatrical theban theist theistic theistical thematic then thenal thenar +theocratic theological theoretic theoretical theory-based theosophical +therapeutic therapeutical thermal thermic thermionic thermodynamic +thermodynamical thermoelectric thermoelectrical thermogravimetric +thermohydrometric thermolabile thermometric thermonuclear thermoplastic +thermoset thermosetting thermostatic thespian thick thick-billed thick-bodied +thick-branched thick-haired thick-lipped thick-skinned thick-skulled thick- +stemmed thickened thickening thicket-forming thickheaded thickset thickspread +thieving thievish thimble-shaped thin thin-bodied thin-shelled thin-skinned +thinkable thinking thinned third third-dimensional third-rate third-year +thirdhand thirsty thirteen thirteenth thirtieth thirty thirty-eight thirty- +eighth thirty-fifth thirty-first thirty-five thirty-four thirty-fourth thirty- +nine thirty-ninth thirty-one thirty-second thirty-seven thirty-seventh thirty- +six thirty-sixth thirty-third thirty-three thirty-two thistlelike thoracic +thoreauvian thoriated thorn-tipped thornless thorny thorough thoroughbred +thoroughgoing thought-provoking thoughtful thoughtless thousand thousandth +thracian threadbare threaded threadlike thready threatened threatening three +three-cornered three-d three-dimensional three-figure three-fold three-hundredth +three-lane three-legged three-lipped three-lobed three-membered three-needled +three-party three-petaled three-petalled three-piece three-ply three-pronged +three-seeded three-sided three-way three-wheel three-wheeled three-year-old +threefold threepenny threescore thriftless thrifty thrilled thrillful thrilling +thriving throated throaty throbbing thrombosed thronged through throwaway +throwback thrown thrown-away thudding thumbed thumping thundering thunderous +thunderstruck thundery thwarted thwarting thwartwise thyroid thyroidal +thyrotoxic tibetan tibial tickling ticklish tidal tiddly tidy tie-on tied tiered +tiger-striped tigerish tight tight-fitting tight-knit tight-laced tightfisted +tightfitting tightlipped tiled tillable tilled tilted timber-framed timbered +time-consuming time-honored time-honoured time-release time-tested timed +timeless timely timeserving timeworn timid timorese timorous tined tingling +tinkling tinkly tinned tinny tinpot tinseled tinselly tiny tip-and-run tip- +tilted tip-up tipped tippy tipsy tiptoe tiptop tired tireless tiresome tiring +titanic titillated titillating titled tittering titular titulary toadyish +toasted tobagonian tod toed toeless toffee-nosed together togged togolese +toilet-trained toiling toilsome token tokenish tolerable tolerant toll-free +tomboyish tomentose tomentous tonal tone-deaf toned toneless tongan tongue-in- +cheek tongue-shaped tongue-tied tongued tongueless tonguelike tonic tonsorial +tonsured too-careful too-generous too-greedy toothed toothless toothlike +toothsome toothy top top-down top-flight top-grade top-heavy top-hole top-notch +top-quality top-secret topical topknotted topless topmost topnotch topographic +topographical topologic topological topped topping tops topsy-turvy tormented +torn toroidal torpid torrential torrid tortious tortuous tortured torturesome +torturing torturous torulose total totaled totalistic totalitarian totemic +totipotent tottering tottery touch-and-go touchable touched touching touchy +touchy-feely tough tough-minded tough-skinned toughened toupeed touristed +touristy tousled towering towheaded toxic toxicant toxicologic toxicological +trabeate trabeated trabecular trabeculate traceable tracheal trackable tracked +trackless tractable tractile tractive trademarked traditional traditionalist +traditionalistic tragic tragical tragicomic tragicomical trained traitorous +tralatitious tramontane trancelike tranquil tranquilising tranquilizing +tranquillising tranquillizing transactinide transalpine transatlantic +transcendent transcendental transcontinental transcribed transcultural +transcutaneous transdermal transdermic transeunt transferable transferrable +transfixed transformable transformed transgender transgendered transient +transistorised transistorized transitional transitive transitory translatable +translational translucent translunar translunary transmissible transmittable +transmitted transmontane transmundane transmutable transnational transoceanic +transonic transparent transpiring transplacental transplantable transpolar +transportable transposable transposed transsexual transuranic transversal +transverse transvestic transvestite trapezoidal trapped trashy traumatic travel- +soiled travel-stained travel-worn travelable traveled travelled traversable +treacherous treacly treasonable treasonous treasured treated treble tree-living +tree-shaped treed treeless treelike tref trembling tremendous tremulous +trenchant trend-setting trendsetting trendy trepid trespassing trial-and-error +triangular triangulate triassic tribadistic tribal tributary tricentenary +tricentennial trichromatic trichrome tricked-out tricksy tricky triclinic +tricolor tricuspid tricuspidate tried triennial trifid trifling trifoliate +trifoliated trifoliolate trig trigger-happy trigonal trigonometric trihydroxy +trilateral trilingual trilled trillion trillionth trilobate trilobated trilobed +trim trimmed trimotored trinidadian trinuclear trinucleate trinucleated +tripartite tripinnate tripinnated tripinnatifid triple triple-crown triplex +triploid tripping triskaidekaphobic tritanopic trite triumphal triumphant triune +trivalent trivial trochaic trojan trompe-l'oeil trophic trophoblastic +trophotropic tropic tropical trouble-free troubled troublesome troubling +troublous trousered truant truculent true true-blue true-false true-to-life +truehearted trumped-up trumpet-like trumpet-shaped truncate truncated trussed +trusted trustful trusting trustworthy trusty truthful trying tsarist tsaristic +tubal tubby tube-nosed tube-shaped tubed tubeless tubelike tubercular +tuberculate tuberculoid tuberculous tuberous tubular tucked tudor tufted tumble- +down tumescent tumid tumultuous tuneful tuneless tunisian tuppeny turbaned +turbid turbinate turbulent turgid turkey-sized turkic turkic-speaking turkish +turkmen turned turnip-shaped tuscan tusked tutelar tutelary tutorial tuxedoed +twee tweedy twelfth twelve twelve-sided twentieth twenty twenty-eight twenty- +eighth twenty-fifth twenty-first twenty-five twenty-four twenty-fourth twenty- +nine twenty-ninth twenty-one twenty-second twenty-seven twenty-seventh twenty- +six twenty-sixth twenty-third twenty-three twenty-two twiggy twiglike twilight +twilit twilled twin twin-bedded twinkling twinkly twinned twinning twisted +twisting twisty two two-a-penny two-chambered two-channel two-dimensional two- +eared two-faced two-fold two-footed two-handed two-humped two-hundredth two-lane +two-leafed two-leaved two-lipped two-lobed two-needled two-part two-party two- +piece two-ply two-pronged two-sided two-timing two-toe two-toed two-way two- +wheel two-wheeled two-year two-year-old twofold twopenny twopenny-halfpenny +twoscore tympanic tympanitic typic typical typographic typographical tyrannic +tyrannical tyrannous tyrolean tyrolese tzarist u u-shaped ubiquitous ugandan +ugly ukrainian ulcerated ulcerative ulcerous ulnar ult ulterior ultimate ultimo +ultra ultraconservative ultramarine ultramicroscopic ultramodern ultramontane +ultranationalistic ultrasonic ultraviolet umbel-like umbellar umbellate +umbelliferous umbelliform umber umbilical umbilicate umbrageous umbrella +umbrella-shaped umbrellalike umpteen umpteenth umptieth umteen umteenth un- +american un-come-at-able un-get-at-able unabashed unabated unable unabridged +unabused unaccented unacceptable unaccepted unaccessible unaccommodating +unaccompanied unaccountable unaccredited unaccustomed unachievable +unacknowledged unacquainted unacquisitive unactable unadaptable unadapted +unaddicted unaddressed unadjustable unadjusted unadoptable unadorned +unadulterated unadventurous unadvisable unadvised unaerated unaesthetic +unaffected unaffecting unaffectionate unaffiliated unaffixed unafraid unaged +unaggressive unagitated unaided unaired unairworthy unalarming unalert +unalienable unalike unalloyed unalterable unaltered unambiguous unambitious +unamended unanalyzable unanalyzed unangry unanimated unanimous unannealed +unannounced unanswerable unanswered unanticipated unapologetic unappareled +unapparent unappealable unappealing unappeasable unappendaged unappetising +unappetizing unappreciated unappreciative unapprehensive unapproachable +unarbitrary unarguable unargumentative unarmed unarmored unarmoured unarticulate +unarticulated unartistic unary unascertainable unascribable unashamed unasked +unassailable unassertive unassignable unassigned unassisted unassuming unassured +unasterisked unattached unattackable unattainable unattended unattired +unattractive unattributable unauthentic unauthorised unauthorized unavailable +unavailing unavenged unavoidable unavowed unawakened unaware unawed unbacked +unbaffled unbalanced unbalconied unbanded unbaptised unbaptized unbarred +unbarreled unbarrelled unbearable unbeatable unbeaten unbecoming unbefitting +unbeholden unbeknown unbeknownst unbelievable unbelieving unbeloved unbelted +unbendable unbending unbeneficed unbent unbiased unbiassed unbigoted unbitter +unbleached unblemished unblended unblessed unblinking unbloody unblushing +unbodied unbolted unbooked unbordered unborn unbound unbounded unbowed unbraced +unbrainwashed unbranched unbranching unbranded unbreakable unbridgeable +unbridled unbroken unbrushed unburdened unburied unburnished unbuttoned +uncalled-for uncamphorated uncanny uncapped uncarbonated uncared-for uncaring +uncarpeted uncarved uncastrated uncategorised uncategorized uncaulked uncaused +unceasing uncensored unceremonial unceremonious uncertain uncertified unchained +unchallengeable unchallenged unchangeable unchanged unchanging uncharacteristic +uncharged uncharitable uncharted unchartered unchaste uncheckable unchecked +uncheerful unchewable unchivalrous unchristian unchristianly unchristlike uncial +uncivil uncivilised uncivilized unclad unclaimed unclassifiable unclassified +unclean uncleanly unclear uncleared unclimbable unclipped unclogged unclothed +unclouded uncluttered uncoated uncoerced uncoiled uncollected uncollectible +uncolored uncoloured uncolumned uncombable uncombed uncombined uncomely +uncomfortable uncommercial uncommercialised uncommercialized uncommitted +uncommon uncommunicative uncomparable uncompartmented uncompassionate +uncompensated uncompetitive uncomplaining uncomplete uncompleted uncomplicated +uncomplimentary uncompounded uncomprehended uncomprehending uncomprehensible +uncompromising unconcealed unconcerned unconditional unconditioned unconfessed +unconfined unconfirmed unconformable unconformist unconfused uncongenial +unconnected unconquerable unconquered unconscientious unconscionable unconscious +unconsecrated unconsidered unconsolable unconsolidated unconstipated +unconstitutional unconstrained unconstricted unconstructive unconsumed +unconsummated uncontaminated uncontaminating uncontested uncontrived +uncontrollable uncontrolled uncontroversial unconventional unconverted +unconvertible unconvinced unconvincing uncooked uncool uncooperative +uncoordinated uncordial uncorrectable uncorrected uncorrelated uncorroborated +uncorrupted uncounted uncoupled uncousinly uncouth uncovered uncrannied +uncreased uncreative uncritical uncropped uncrossed uncrowded uncrowned +uncrystallised uncrystallized unctuous uncultivable uncultivatable uncultivated +uncultured uncurbed uncured uncurled uncurtained uncurved uncurving uncut +undamaged undatable undated undaunted undeceived undecided undecipherable +undeciphered undeclared undecomposable undecomposed undecorated undedicated +undefeated undefendable undefended undeferential undefiled undefinable undefined +undelineated undemanding undemocratic undemonstrative undeniable +undenominational undependable undepicted under under-the-counter under-the-table +underactive underage underarm underbred underclass underclothed undercoated +undercover underdeveloped underdone underdressed undereducated underemployed +underfed underground underhand underhanded underhung underivative underived +underlying undermanned undermentioned undernourished underpopulated +underprivileged undersea undersealed undersexed undershot undersize undersized +underslung understaffed understandable understanding understated understood +underwater underway underweight undescended undescriptive undeserved undeserving +undesigned undesirable undesired undesiring undesirous undestroyable +undetectable undetected undeterminable undetermined undeterred undeveloped +undeviating undiagnosable undiagnosed undifferentiated undigested undignified +undiluted undiminished undimmed undiplomatic undirected undiscerning +undischarged undisciplined undisclosed undiscouraged undiscoverable undiscovered +undiscriminating undisguised undismayed undisputable undisputed undissolved +undistinguishable undistinguished undistorted undistributed undisturbed +undiversified undividable undivided undoable undocumented undogmatic +undogmatical undomestic undomesticated undone undrained undramatic undraped +undrawn undreamed undreamt undressed undried undrinkable undue undulant undulate +undulatory undutiful undyed undying undynamic uneager unearned unearthly uneasy +uneatable uneconomic uneconomical unedifying unedited uneducated uneffective +unelaborate unelaborated unembarrassed unembellished unembodied unemotional +unemphatic unemployable unemployed unenclosed unencouraging unencumbered unended +unending unendowed unendurable unenergetic unenforceable unenforced unengaged +unenlightened unenlightening unenlivened unenrgetic unenterprising +unenthusiastic unentitled unenviable unequal unequaled unequalised unequalized +unequalled unequipped unequivocal unerasable unerect unerring unessential +unestablished unethical uneven uneventful unexacting unexampled unexceeded +unexcelled unexceptionable unexceptional unexchangeable unexcitable unexcited +unexciting unexclusive unexcused unexhausted unexpansive unexpected unexpendable +unexpended unexpired unexplainable unexplained unexploded unexploited +unexplorative unexploratory unexplored unexportable unexpressed unexpressible +unexpressive unexpurgated unextended unfaceted unfading unfailing unfair +unfaithful unfaltering unfamiliar unfashionable unfastened unfastidious +unfathomable unfathomed unfattened unfavorable unfavourable unfearing unfeasible +unfeathered unfed unfeeling unfeigned unfeminine unfenced unfermented unfertile +unfertilised unfertilized unfettered unfilled unfilmed unfinished unfirm unfit +unfitting unfixed unflagging unflappable unflattering unflavored unflavoured +unflawed unfledged unflinching unfluctuating unflurried unflustered unfocused +unfocussed unforbearing unforced unforceful unforeseeable unforeseen +unforesightful unforested unforethoughtful unforfeitable unforgettable +unforgivable unforgiving unformed unfortunate unfounded unframed unfree +unfrequented unfretted unfriendly unfrightened unfrosted unfrozen unfruitful +unfueled unfulfilled unfunctional unfunded unfunny unfurnished unfurrowed +ungainly ungallant ungarbed ungarmented ungathered ungeared ungenerous ungentle +ungentlemanlike ungentlemanly ungetatable unglamorous unglamourous unglazed +ungodly ungovernable ungoverned ungraceful ungracious ungraded ungrammatical +ungrasped ungrateful ungratified ungratifying ungreased ungregarious ungroomed +ungrudging ungual unguaranteed unguarded unguiculate unguiculated unguided +ungulate ungulated ungummed ungusseted unhallowed unhampered unhappy unhardened +unharmed unharmonious unhatched unhazardous unheaded unhealed unhealthful +unhealthy unhearable unheard unheard-of unhearing unheated unheeded unheeding +unhelpful unheralded unhesitating unhewn unhindered unhinged unholy +unhomogenised unhomogenized unhoped unhoped-for unhopeful unhuman unhumorous +unhurried unhurt unhygienic uniate unicameral unicellular unicuspid +unidentifiable unidentified unidimensional unidirectional unifacial unified +unifilar unifoliate uniform uniformed unifying unilateral unilluminated +unilluminating unimaginable unimaginative unimagined unimodal unimpaired +unimpassioned unimpeachable unimpeded unimportant unimposing unimpregnated +unimpressed unimpressionable unimpressive unimprisoned unimproved unincorporated +unindustrialised unindustrialized uninebriated uninfected uninflected +uninfluenced uninfluential uninformative uninformed uninhabitable uninhabited +uninhibited uninitiate uninitiated uninjectable uninjured uninominal uninquiring +uninquisitive uninspired uninspiring uninstructed uninstructive uninsurable +uninsured unintegrated unintelligent unintelligible unintended unintentional +uninterested uninteresting uninterrupted unintimidated unintoxicated unintrusive +uninucleate uninventive uninvited uninviting uninvolved union unionised +unionized uniovular uniovulate uniparous unipolar unique unironed unisex +unisexual unitarian unitary united univalent univalve universal universalist +universalistic univocal unjointed unjust unjustifiable unjustified unkempt +unkept unkeyed unkind unkindled unkindly unknowable unknowing unknowledgeable +unknown unlabeled unlabelled unlaced unladylike unlamented unlatched unlaureled +unlaurelled unlawful unleaded unlearned unleavened unlettered unlicenced +unlicensed unlifelike unlighted unlikable unlike unlikeable unlikely unlimited +unlined unlipped unlisted unlit unliterary unlittered unlivable unliveable +unliveried unloaded unlobed unlocated unlocked unlogical unlooked-for unlovable +unloved unlovely unloving unlubricated unlucky unmade unmalicious unmalleable +unmalted unmanageable unmanful unmanlike unmanly unmanned unmannered unmannerly +unmapped unmarked unmarketable unmarred unmarried unmatchable unmatched unmated +unmeasurable unmeasured unmechanical unmechanised unmechanized unmediated +unmedical unmedicative unmedicinal unmelodic unmelodious unmelted unmemorable +unmentionable unmercenary unmerchantable unmerciful unmerited unmeritorious +unmethodical unmilitary unmindful unmined unmingled unmistakable unmitigable +unmitigated unmixable unmixed unmoderated unmodernised unmodernized unmodifiable +unmodified unmodulated unmolested unmortgaged unmotivated unmotorised +unmotorized unmourned unmovable unmoved unmoving unmown unmusical unmutilated +unmyelinated unnameable unnamed unnatural unnaturalised unnaturalized +unnavigable unnecessary unneeded unneighborly unneighbourly unnerved unnerving +unneurotic unnotched unnoted unnoticeable unnoticed unnourished unnumberable +unnumbered unnumerable unobjectionable unobjective unobligated unobliging +unobservable unobservant unobserved unobstructed unobtainable unobtrusive +unobvious unoccupied unoffending unofficial unoiled unopen unopened unopposable +unopposed unordered unorganised unorganized unoriented unoriginal unornamented +unorthodox unostentatious unowned unoxygenated unpackaged unpaid unpainful +unpaintable unpainted unpaired unpalatable unparallel unparalleled unpardonable +unparented unparliamentary unpartitioned unpassable unpasteurised unpasteurized +unpatented unpatriotic unpatronised unpatronized unpatterned unpaved unpeaceable +unpeaceful unpeopled unperceivable unperceived unperceiving unperceptive +unperformed unpermed unpermissive unperplexed unpersuadable unpersuaded +unpersuasive unperturbed unpictured unpicturesque unpierced unpigmented +unpillared unpitying unplaced unplanned unplanted unplayable unplayful +unpleasant unpleasant-smelling unpleasing unpledged unploughed unplowed +unplumbed unpointed unpolished unpolitical unpolluted unpompous unpopular +unpopulated unportable unposed unpotted unpowered unpracticed unpractised +unprecedented unpredictable unpredicted unpredictive unprejudiced unpremeditated +unprepared unprepossessing unpresentable unpresidential unpressed unpretending +unpretentious unpreventable unpriestly unprincipled unprintable unproblematic +unprocessed unprocurable unproductive unprofessional unprofitable unprogressive +unpromised unpromising unprompted unpronounceable unprophetic unpropitious +unprotected unprotective unprovable unproved unproven unprovocative unprovoked +unprovoking unpublishable unpublished unpunctual unpunished unpurified +unqualified unquenchable unquestionable unquestioned unquestioning unquiet +unquotable unraised unranked unratable unratified unreachable unreached +unreactive unread unreadable unready unreal unrealised unrealistic unrealizable +unrealized unreasonable unreasoning unreassuring unreceptive unreciprocated +unrecognisable unrecognised unrecognizable unrecognized unreconcilable +unreconciled unreconstructed unrecorded unrecoverable unredeemable unredeemed +unreduced unrefined unreflected unreflective unreformable unreformed unrefreshed +unregenerate unregenerated unregistered unregretful unregretting unregulated +unrehearsed unrelated unrelaxed unreleased unrelenting unreliable unrelieved +unremarkable unremarked unremedied unremitting unremorseful unremunerative +unrenewable unrenewed unrentable unrepaired unrepeatable unrepentant +unreplaceable unreportable unreported unrepresentative unrepressed +unreproducible unrequested unrequited unresentful unreserved unresistant +unresisting unresolvable unresolved unrespectable unresponsive unrested +unrestrained unrestricted unrestrictive unretentive unretrievable unrevealed +unreverberant unrevised unrevived unrewarded unrewarding unrhetorical unrhymed +unrhythmic unrhythmical unrifled unrigged unrighteous unrimed unripe unripened +unrivaled unrivalled unromantic unroofed unrouged unruffled unruly unsaddled +unsafe unsaid unsalable unsalaried unsaleable unsalted unsanctified unsanctioned +unsanded unsanitary unsaponified unsarcastic unsated unsatiable unsatiated +unsatisfactory unsatisfiable unsatisfied unsatisfying unsaturated unsaved +unsavory unsavoury unscalable unscathed unscheduled unscholarly unschooled +unscientific unscripted unscrupulous unsealed unseamanlike unseamed unseasonable +unseasoned unseaworthy unsectarian unsecured unseductive unseeable unseeded +unseeing unseemly unseen unseeyn unsegmented unsegregated unselected unselective +unselfconscious unselfish unsensational unsent unsentimental unserviceable +unservile unsettled unsexed unsexy unshackled unshaded unshadowed unshakable +unshaken unshaped unshapely unshapen unshared unsharpened unshaved unshaven +unsheared unsheathed unshelled unshielded unshockable unshod unshoed unshorn +unshrinkable unshrinking unshuttered unsighted unsightly unsigned unsilenced +unsinkable unsized unskilled unskillful unsleeping unsloped unsmiling unsmooth +unsmoothed unsnarled unsociable unsocial unsoiled unsold unsoldierly unsolicited +unsoluble unsolvable unsolved unsophisticated unsorted unsought unsound +unsoundable unsounded unsoured unsown unspaced unsparing unspeakable +unspecialised unspecialized unspecific unspecified unspectacular unspent +unspoiled unspoilt unspoken unsporting unsportsmanlike unspotted unstable +unstaged unstained unstarred unstated unstatesmanlike unsteady unsterilised +unsterilized unstilted unstimulating unstinted unstinting unstirred unstoppable +unstoppered unstrained unstratified unstressed unstructured unstrung unstuck +unstudied unstudious unstylish unsuasible unsubdivided unsubduable unsubdued +unsubmissive unsubstantial unsubstantiated unsubtle unsuccessful unsufferable +unsugared unsuitable unsuited unsullied unsung unsupervised unsupportable +unsupported unsupportive unsuppressed unsure unsurmountable unsurpassable +unsurpassed unsurprised unsurprising unsusceptible unsuspected unsuspecting +unsuspicious unswayed unsweet unsweetened unswept unswerving unsworn unsyllabic +unsyllabled unsymbolic unsymmetric unsymmetrical unsympathetic unsympathising +unsympathizing unsynchronised unsynchronized unsynchronous unsystematic +untactful untagged untainted untalented untalkative untamed untangled untanned +untaped untapped untarnished untasted untaught untaxed untechnical untellable +untempered untempting untenable untenanted untended untested untethered +unthankful unthawed untheatrical unthematic unthinkable unthinking unthought +unthought-of unthoughtful unthreatening untidy untied untilled untimbered +untimely untipped untired untiring untitled untoasted untold untoothed +untouchable untouched untoughened untoward untraceable untracked untraditional +untrained untrammeled untrammelled untransferable untranslatable untransmutable +untraveled untravelled untraversable untraversed untreated untried untrimmed +untrod untrodden untroubled untrue untrusting untrustworthy untrusty untruthful +untucked untufted untuneful unturned untutored untwisted untypical ununderstood +unusable unuseable unused unusual unutterable unuttered unvaccinated unvalued +unvaned unvanquishable unvanquished unvaried unvarnished unvarying unveiled +unvendible unvented unventilated unverbalised unverbalized unverifiable +unverified unversed unvigilant unvindictive unvitrified unvoiced unvoluntary +unvulcanised unvulcanized unwanted unwarmed unwarrantable unwarranted unwary +unwashed unwatchful unwavering unwaxed unweaned unwearable unwearied unweary +unwearying unweathered unwebbed unwed unwedded unwelcome unwell unwholesome +unwieldy unwilled unwilling unwise unwished unwished-for unwitting unwomanly +unwonted unwooded unworkable unworkmanlike unworldly unworried unworthy +unwounded unwoven unwrapped unwrinkled unwritten unyielding up up-and-coming up- +to-date up-to-the-minute upbeat upbound upcoming upcountry upcurved upended +upfield upfront uphill upland uplifted upmarket upmost upper upper-class upper- +level upper-lower-class upper-middle-class uppercase uppermost uppish uppity +upraised upright uproarious upscale upset upsetting upside-down upstage upstair +upstairs upstanding upstart upstream uptight uptown upturned upward upwind +uraemic urban urbane urbanised urbanized urceolate uremic urethral urgent uric +uricosuric urinary urn-shaped urogenital ursine uruguayan usable useable used +useful useless user-friendly usual usufructuary usurious uterine utile utilised +utilitarian utility utility-grade utilizable utilized utmost utopian utter +utterable uttered uttermost uveal uveous uvular uxorial uxorious uzbekistani v +v-shaped vacant vaccinated vacillant vacillating vacuolate vacuolated vacuous +vagabond vagal vagile vaginal vagrant vague vain vainglorious valedictory valent +valetudinarian valetudinary valiant valid validated validating validatory +valorous valuable valued valueless valved valvular vaned vanilla vanilla-scented +vanished vanquishable vapid vaporific vaporish vaporizable vaporized vaporous +vapourific vapourisable vapourised vapourish vapourous variable variant +varicelliform varicolored varicoloured varicose varied variegated variform +variolar variolic variolous various varnished varying vascular vase-shaped +vasiform vasomotor vast vatic vatical vaulted vaulting vedic vegetal +vegetational vegetative vegetive vehement vehicular veiled veinal veined +veinlike velar velvet velvet-textured velvety velvety-furred velvety-haired +velvety-plumaged velvety-skinned venal vendable vendible venerable venerating +venereal venetian venezuelan vengeful venial venomed venomous venose venous +vented ventilated ventilatory ventral ventricose ventricous ventricular +venturesome venturous veracious verbal verbalised verbalized verbatim verbose +verboten verdant veridical verifiable verificatory verified verifying +verisimilar veritable vermicular vermiculate vermiculated vermiform vermilion +vermillion verminous vernacular vernal verrucose versatile versed vertebral +vertebrate vertical verticillate verticillated vertiginous very vesical vesicant +vesicatory vesicular vestal vested vestiary vestibular vestigial vestmental +vestmented veteran veterinary vexatious vexed vexing vi viable viatical vibrant +vibrational vibratory vibrionic vicarial vicarious vice-presidential vicenary +vicennial viceregal vicinal vicious victimised victimized victorian victorious +viennese vietnamese viewable viewless vigesimal vigilant vigorous vii viii vile +villainous vinaceous vincible vindicated vindicatory vindictive vinegarish +vinegary vinous violable violated violative violent violet violet-black violet- +blue violet-colored violet-coloured violet-flowered violet-pink violet-purple +violet-scented violet-streaked violet-tinged violet-tinted viral virgin virginal +viricidal virile virological virtual virtuoso virtuous virucidal virulent +visaged visceral viscid viscoelastic viscometric viscosimetric viscous viselike +visible visionary visored visual visualised visualized vital vitalizing vitiated +vitiliginous vitreous vitrified vitriolic vituperative viva-voce vivace +vivacious vivid viviparous vixenish vocal vocalic vocational vocative vociferous +voguish voiced voiceless void voidable volant volar volatile volatilisable +volatilised volatilizable volatilized volcanic volitional voltaic voltarean +voltarian voluble volumed volumetric volumetrical voluminous voluntary volunteer +voluptuary voluptuous volute voluted voracious voteless votive vowellike +voyeuristic voyeuristical vulcanised vulcanized vulgar vulnerable vulpecular +vulpine vulturine vulturous vulval vulvar w-shaped wacky wafer-like wafer-thin +wage-earning waggish wagnerian wailful wailing wainscoted waist-length waiting +wakeful wakeless waking walk-in walk-on walk-to walk-up walking walleyed +walloping wan wandering waning wanted wanting wanton war-ridden war-torn war- +worn warlike warm warm-blooded warm-toned warmed warmhearted warming warning +warped warring warriorlike wartlike warty wary wash-and-wear washable washed +washed-out washed-up washingtonian washy wasp-waisted waspish waste wasted +wasteful watchful water-cooled water-insoluble water-loving water-repellent +water-resistant water-soluble water-washed waterborne watercress watered +waterless waterlogged watermelon-shaped waterproof waterproofed watertight +waterworn watery watery-eyed wavelike wavering wavy wavy-grained waxed waxen +waxing waxlike waxy way-out wayfaring wayward weak weak-kneed weak-stemmed +weakened weakening weakly wealthy weaned weaponed weaponless weapons-grade +wearable wearied wearing wearisome weary wearying weasel-worded weather weather- +beaten weather-bound weather-stripped weathered weatherly weatherproof +weatherworn web-footed web-toed webbed webby weblike wed wedded wedge-shaped +wedged wee weedless weedy weeklong weekly weensy weeny weeping weepy weighted +weightless weighty weird welcome welcoming welfare-statist welfarist well well- +adjusted well-advised well-appointed well-balanced well-behaved well-bound well- +branched well-bred well-chosen well-conducted well-connected well-defined well- +disposed well-done well-dressed well-educated well-endowed well-favored well- +favoured well-fed well-fixed well-formed well-found well-founded well-groomed +well-grooved well-grounded well-heeled well-informed well-intentioned well-kept +well-knit well-known well-lighted well-lined well-made well-mannered well-marked +well-meaning well-meant well-mined well-nourished well-off well-ordered well- +preserved well-proportioned well-qualified well-read well-rounded well-set well- +shaven well-situated well-spoken well-thought-of well-timed well-to-do well- +tried well-turned well-wishing well-worn wellborn welsh wesleyan west west- +central westbound westerly western westernmost westmost westside westward wet +whacked whacking whacky whatever whatsoever wheaten wheel-like wheeled wheelless +wheezing wheezy whimsical whiney whiny whiplike whipping whippy whirring +whiskered whiskerless whiskery whispered whispering white white-blotched white- +bread white-collar white-edged white-flowered white-haired white-hot white- +lipped white-livered white-pink white-ribbed white-seeded white-shoe white- +streaked white-tie whitened whitewashed whitish whole whole-souled whole-wheat +wholehearted wholemeal wholesale wholesome whopping whorled wiccan wicked wide +wide-angle wide-awake wide-cut wide-eyed wide-open wide-ranging wide-screen +wideband widespread widowed wieldy wifelike wifely wigged wiggly wigless wild +wild-eyed wildcat wilful willful willing willowy wilsonian wilted wily wimpish +wimpy windblown windburned windburnt winded winding windless windswept windup +windward windy wine-red winey wing-shaped winged wingless winglike winking +winless winning winsome winter-blooming winter-flowering wintery wintry winy +wire-haired wired wireless wiry wiry-coated wiry-stemmed wise wished-for wishful +wishy-washy wisplike wispy wistful witching witchlike with-it withdrawn withered +withering witless wittgensteinian witting witty wizard wizardly wizen wizened +wobbling wobbly woebegone woeful wolf-sized wolfish wolflike womanish womanlike +womanly womb-to-tomb won wonder-struck wonderful wondering wonderworking +wondrous wonky wonted wood-burning wood-fired wooded wooden wooden-headed woodsy +woody woody-stemmed woolen woolgathering woollen woolly woolly-haired woolly- +headed woolly-stemmed wooly wooly-haired wooly-minded woozy word-blind word-of- +mouth word-perfect wordless wordsworthian wordy work-shy workable workaday +working working-class workmanlike world world-class world-shaking world- +shattering world-weary world-wide worldly worldly-minded worldly-wise worldwide +worm-eaten worm-shaped wormlike wormy worn worn-out worried worrisome worrying +worse worsened worsening worshipful worshipped worst worth worthful worthless +worthwhile worthy would-be wound wounded wounding woven wraithlike wrapped +wrathful wrecked wrenching wretched wriggling wriggly wrinkle-resistant wrinkled +wrinkleless wrinkleproof wrinkly writhed writhen writhing written wrong wrong- +side-out wrongful wrongheaded wroth wrothful wrought wry wysiwyg x x-linked +xanthous xc xci xcii xciii xciv xcl xcv xcvi xcvii xcviii xenogeneic xenophobic +xeric xerographic xerophytic xi xii xiii xiv xix xl xli xlii xliii xliv xlv xlvi +xlvii xlviii xv xvi xvii xviii xx xxi xxii xxiii xxiv xxix xxv xxvi xxvii xxviii +xxx xxxi xxxii xxxiii xxxiv xxxv xxxvi xxxvii xxxviii y-shaped yankee yarn- +spinning yawning year-around year-end year-round yearlong yearly yearned-for +yeastlike yeasty yeatsian yelled yellow yellow-banded yellow-beige yellow- +bellied yellow-brown yellow-gray yellow-green yellow-grey yellow-marked yellow- +orange yellow-spotted yellow-striped yellow-tinged yellow-tipped yellow-white +yellowed yellowish yellowish-beige yellowish-gray yellowish-grey yellowish- +orange yellowish-white yemeni yielding yogic yogistic yokel-like yokelish yon +yonder young young-bearing young-begetting younger youngish youthful yucky +yugoslav yugoslavian yuman yummy zaftig zairean zairese zambian zany zapotec +zealous zenithal zero zeroth zestful zesty zig-zag zigzag zillion zimbabwean +zionist zippy zodiacal zoftig zoic zolaesque zonal zonary zoological zoonotic +zoophagous zoroastrian zygodactyl zygomatic zygomorphic zygomorphous zygotic +zymoid zymolytic zymotic +""".split()) diff --git a/spacy/en/lemmatizer/_adjectives_irreg.py b/spacy/en/lemmatizer/_adjectives_irreg.py new file mode 100644 index 000000000..54cce473c --- /dev/null +++ b/spacy/en/lemmatizer/_adjectives_irreg.py @@ -0,0 +1,1498 @@ +# coding: utf8 +from __future__ import unicode_literals + + +ADJECTIVES_IRREG = { + "acer": ("acer",), + "after": ("after",), + "airier": ("airy",), + "airiest": ("airy",), + "all-arounder": ("all-arounder",), + "angrier": ("angry",), + "angriest": ("angry",), + "archer": ("archer",), + "artier": ("arty",), + "artiest": ("arty",), + "ashier": ("ashy",), + "ashiest": ("ashy",), + "assaulter": ("assaulter",), + "attacker": ("attacker",), + "backer": ("backer",), + "baggier": ("baggy",), + "baggiest": ("baggy",), + "balkier": ("balky",), + "balkiest": ("balky",), + "balmier": ("balmy",), + "balmiest": ("balmy",), + "bandier": ("bandy",), + "bandiest": ("bandy",), + "bargainer": ("bargainer",), + "barmier": ("barmy",), + "barmiest": ("barmy",), + "battier": ("batty",), + "battiest": ("batty",), + "baulkier": ("baulky",), + "baulkiest": ("baulky",), + "bawdier": ("bawdy",), + "bawdiest": ("bawdy",), + "bayer": ("bayer",), + "beadier": ("beady",), + "beadiest": ("beady",), + "beastlier": ("beastly",), + "beastliest": ("beastly",), + "beater": ("beater",), + "beefier": ("beefy",), + "beefiest": ("beefy",), + "beerier": ("beery",), + "beeriest": ("beery",), + "bendier": ("bendy",), + "bendiest": ("bendy",), + "best": ("good",), + "better": ("good", + "well",), + "bigger": ("big",), + "biggest": ("big",), + "bitchier": ("bitchy",), + "bitchiest": ("bitchy",), + "biter": ("biter",), + "bittier": ("bitty",), + "bittiest": ("bitty",), + "blearier": ("bleary",), + "bleariest": ("bleary",), + "bloodier": ("bloody",), + "bloodiest": ("bloody",), + "bloodthirstier": ("bloodthirsty",), + "bloodthirstiest": ("bloodthirsty",), + "blowier": ("blowy",), + "blowiest": ("blowy",), + "blowsier": ("blowsy",), + "blowsiest": ("blowsy",), + "blowzier": ("blowzy",), + "blowziest": ("blowzy",), + "bluer": ("blue",), + "bluest": ("blue",), + "boner": ("boner",), + "bonier": ("bony",), + "boniest": ("bony",), + "bonnier": ("bonny",), + "bonniest": ("bonny",), + "boozier": ("boozy",), + "booziest": ("boozy",), + "boskier": ("bosky",), + "boskiest": ("bosky",), + "bossier": ("bossy",), + "bossiest": ("bossy",), + "botchier": ("botchy",), + "botchiest": ("botchy",), + "bother": ("bother",), + "bouncier": ("bouncy",), + "bounciest": ("bouncy",), + "bounder": ("bounder",), + "bower": ("bower",), + "brainier": ("brainy",), + "brainiest": ("brainy",), + "brashier": ("brashy",), + "brashiest": ("brashy",), + "brassier": ("brassy",), + "brassiest": ("brassy",), + "brawnier": ("brawny",), + "brawniest": ("brawny",), + "breathier": ("breathy",), + "breathiest": ("breathy",), + "breezier": ("breezy",), + "breeziest": ("breezy",), + "brinier": ("briny",), + "briniest": ("briny",), + "britisher": ("britisher",), + "broadcaster": ("broadcaster",), + "brooder": ("brooder",), + "broodier": ("broody",), + "broodiest": ("broody",), + "bubblier": ("bubbly",), + "bubbliest": ("bubbly",), + "buggier": ("buggy",), + "buggiest": ("buggy",), + "bulkier": ("bulky",), + "bulkiest": ("bulky",), + "bumpier": ("bumpy",), + "bumpiest": ("bumpy",), + "bunchier": ("bunchy",), + "bunchiest": ("bunchy",), + "burlier": ("burly",), + "burliest": ("burly",), + "burrier": ("burry",), + "burriest": ("burry",), + "burster": ("burster",), + "bushier": ("bushy",), + "bushiest": ("bushy",), + "busier": ("busy",), + "busiest": ("busy",), + "buster": ("buster",), + "bustier": ("busty",), + "bustiest": ("busty",), + "cagier": ("cagey",), + "cagiest": ("cagey",), + "camper": ("camper",), + "cannier": ("canny",), + "canniest": ("canny",), + "canter": ("canter",), + "cantier": ("canty",), + "cantiest": ("canty",), + "caster": ("caster",), + "catchier": ("catchy",), + "catchiest": ("catchy",), + "cattier": ("catty",), + "cattiest": ("catty",), + "cer": ("cer",), + "chancier": ("chancy",), + "chanciest": ("chancy",), + "charier": ("chary",), + "chariest": ("chary",), + "chattier": ("chatty",), + "chattiest": ("chatty",), + "cheekier": ("cheeky",), + "cheekiest": ("cheeky",), + "cheerier": ("cheery",), + "cheeriest": ("cheery",), + "cheesier": ("cheesy",), + "cheesiest": ("cheesy",), + "chestier": ("chesty",), + "chestiest": ("chesty",), + "chewier": ("chewy",), + "chewiest": ("chewy",), + "chillier": ("chilly",), + "chilliest": ("chilly",), + "chintzier": ("chintzy",), + "chintziest": ("chintzy",), + "chippier": ("chippy",), + "chippiest": ("chippy",), + "choosier": ("choosy",), + "choosiest": ("choosy",), + "choppier": ("choppy",), + "choppiest": ("choppy",), + "chubbier": ("chubby",), + "chubbiest": ("chubby",), + "chuffier": ("chuffy",), + "chuffiest": ("chuffy",), + "chummier": ("chummy",), + "chummiest": ("chummy",), + "chunkier": ("chunky",), + "chunkiest": ("chunky",), + "churchier": ("churchy",), + "churchiest": ("churchy",), + "clammier": ("clammy",), + "clammiest": ("clammy",), + "classier": ("classy",), + "classiest": ("classy",), + "cleanlier": ("cleanly",), + "cleanliest": ("cleanly",), + "clerklier": ("clerkly",), + "clerkliest": ("clerkly",), + "cloudier": ("cloudy",), + "cloudiest": ("cloudy",), + "clubbier": ("clubby",), + "clubbiest": ("clubby",), + "clumsier": ("clumsy",), + "clumsiest": ("clumsy",), + "cockier": ("cocky",), + "cockiest": ("cocky",), + "coder": ("coder",), + "collier": ("colly",), + "colliest": ("colly",), + "comelier": ("comely",), + "comeliest": ("comely",), + "comfier": ("comfy",), + "comfiest": ("comfy",), + "cornier": ("corny",), + "corniest": ("corny",), + "cosier": ("cosy",), + "cosiest": ("cosy",), + "costlier": ("costly",), + "costliest": ("costly",), + "costumer": ("costumer",), + "counterfeiter": ("counterfeiter",), + "courtlier": ("courtly",), + "courtliest": ("courtly",), + "cozier": ("cozy",), + "coziest": ("cozy",), + "crabbier": ("crabby",), + "crabbiest": ("crabby",), + "cracker": ("cracker",), + "craftier": ("crafty",), + "craftiest": ("crafty",), + "craggier": ("craggy",), + "craggiest": ("craggy",), + "crankier": ("cranky",), + "crankiest": ("cranky",), + "crasher": ("crasher",), + "crawlier": ("crawly",), + "crawliest": ("crawly",), + "crazier": ("crazy",), + "craziest": ("crazy",), + "creamer": ("creamer",), + "creamier": ("creamy",), + "creamiest": ("creamy",), + "creepier": ("creepy",), + "creepiest": ("creepy",), + "crispier": ("crispy",), + "crispiest": ("crispy",), + "crumbier": ("crumby",), + "crumbiest": ("crumby",), + "crumblier": ("crumbly",), + "crumbliest": ("crumbly",), + "crummier": ("crummy",), + "crummiest": ("crummy",), + "crustier": ("crusty",), + "crustiest": ("crusty",), + "curlier": ("curly",), + "curliest": ("curly",), + "customer": ("customer",), + "cuter": ("cute",), + "daffier": ("daffy",), + "daffiest": ("daffy",), + "daintier": ("dainty",), + "daintiest": ("dainty",), + "dandier": ("dandy",), + "dandiest": ("dandy",), + "deadlier": ("deadly",), + "deadliest": ("deadly",), + "dealer": ("dealer",), + "deserter": ("deserter",), + "dewier": ("dewy",), + "dewiest": ("dewy",), + "dicier": ("dicey",), + "diciest": ("dicey",), + "dimer": ("dimer",), + "dimmer": ("dim",), + "dimmest": ("dim",), + "dingier": ("dingy",), + "dingiest": ("dingy",), + "dinkier": ("dinky",), + "dinkiest": ("dinky",), + "dippier": ("dippy",), + "dippiest": ("dippy",), + "dirtier": ("dirty",), + "dirtiest": ("dirty",), + "dishier": ("dishy",), + "dishiest": ("dishy",), + "dizzier": ("dizzy",), + "dizziest": ("dizzy",), + "dodgier": ("dodgy",), + "dodgiest": ("dodgy",), + "dopier": ("dopey",), + "dopiest": ("dopey",), + "dottier": ("dotty",), + "dottiest": ("dotty",), + "doughier": ("doughy",), + "doughiest": ("doughy",), + "doughtier": ("doughty",), + "doughtiest": ("doughty",), + "dowdier": ("dowdy",), + "dowdiest": ("dowdy",), + "dowier": ("dowie", + "dowy",), + "dowiest": ("dowie", + "dowy",), + "downer": ("downer",), + "downier": ("downy",), + "downiest": ("downy",), + "dozier": ("dozy",), + "doziest": ("dozy",), + "drabber": ("drab",), + "drabbest": ("drab",), + "draftier": ("drafty",), + "draftiest": ("drafty",), + "draggier": ("draggy",), + "draggiest": ("draggy",), + "draughtier": ("draughty",), + "draughtiest": ("draughty",), + "dreamier": ("dreamy",), + "dreamiest": ("dreamy",), + "drearier": ("dreary",), + "dreariest": ("dreary",), + "dreggier": ("dreggy",), + "dreggiest": ("dreggy",), + "dresser": ("dresser",), + "dressier": ("dressy",), + "dressiest": ("dressy",), + "drier": ("dry",), + "driest": ("dry",), + "drippier": ("drippy",), + "drippiest": ("drippy",), + "drowsier": ("drowsy",), + "drowsiest": ("drowsy",), + "dryer": ("dry",), + "dryest": ("dry",), + "dumpier": ("dumpy",), + "dumpiest": ("dumpy",), + "dunner": ("dun",), + "dunnest": ("dun",), + "duskier": ("dusky",), + "duskiest": ("dusky",), + "dustier": ("dusty",), + "dustiest": ("dusty",), + "earlier": ("early",), + "earliest": ("early",), + "earthier": ("earthy",), + "earthiest": ("earthy",), + "earthlier": ("earthly",), + "earthliest": ("earthly",), + "easier": ("easy",), + "easiest": ("easy",), + "easter": ("easter",), + "eastsider": ("eastsider",), + "edger": ("edger",), + "edgier": ("edgy",), + "edgiest": ("edgy",), + "eerier": ("eerie",), + "eeriest": ("eerie",), + "emptier": ("empty",), + "emptiest": ("empty",), + "faker": ("faker",), + "fancier": ("fancy",), + "fanciest": ("fancy",), + "fatter": ("fat",), + "fattest": ("fat",), + "fattier": ("fatty",), + "fattiest": ("fatty",), + "faultier": ("faulty",), + "faultiest": ("faulty",), + "feistier": ("feisty",), + "feistiest": ("feisty",), + "feller": ("feller",), + "fiddlier": ("fiddly",), + "fiddliest": ("fiddly",), + "filmier": ("filmy",), + "filmiest": ("filmy",), + "filthier": ("filthy",), + "filthiest": ("filthy",), + "finnier": ("finny",), + "finniest": ("finny",), + "first-rater": ("first-rater",), + "first-stringer": ("first-stringer",), + "fishier": ("fishy",), + "fishiest": ("fishy",), + "fitter": ("fit",), + "fittest": ("fit",), + "flabbier": ("flabby",), + "flabbiest": ("flabby",), + "flaggier": ("flaggy",), + "flaggiest": ("flaggy",), + "flakier": ("flaky",), + "flakiest": ("flaky",), + "flasher": ("flasher",), + "flashier": ("flashy",), + "flashiest": ("flashy",), + "flatter": ("flat",), + "flattest": ("flat",), + "flauntier": ("flaunty",), + "flauntiest": ("flaunty",), + "fledgier": ("fledgy",), + "fledgiest": ("fledgy",), + "fleecier": ("fleecy",), + "fleeciest": ("fleecy",), + "fleshier": ("fleshy",), + "fleshiest": ("fleshy",), + "fleshlier": ("fleshly",), + "fleshliest": ("fleshly",), + "flightier": ("flighty",), + "flightiest": ("flighty",), + "flimsier": ("flimsy",), + "flimsiest": ("flimsy",), + "flintier": ("flinty",), + "flintiest": ("flinty",), + "floatier": ("floaty",), + "floatiest": ("floaty",), + "floppier": ("floppy",), + "floppiest": ("floppy",), + "flossier": ("flossy",), + "flossiest": ("flossy",), + "fluffier": ("fluffy",), + "fluffiest": ("fluffy",), + "flukier": ("fluky",), + "flukiest": ("fluky",), + "foamier": ("foamy",), + "foamiest": ("foamy",), + "foggier": ("foggy",), + "foggiest": ("foggy",), + "folder": ("folder",), + "folksier": ("folksy",), + "folksiest": ("folksy",), + "foolhardier": ("foolhardy",), + "foolhardiest": ("foolhardy",), + "fore-and-after": ("fore-and-after",), + "foreigner": ("foreigner",), + "forest": ("forest",), + "founder": ("founder",), + "foxier": ("foxy",), + "foxiest": ("foxy",), + "fratchier": ("fratchy",), + "fratchiest": ("fratchy",), + "freakier": ("freaky",), + "freakiest": ("freaky",), + "freer": ("free",), + "freest": ("free",), + "frenchier": ("frenchy",), + "frenchiest": ("frenchy",), + "friendlier": ("friendly",), + "friendliest": ("friendly",), + "friskier": ("frisky",), + "friskiest": ("frisky",), + "frizzier": ("frizzy",), + "frizziest": ("frizzy",), + "frizzlier": ("frizzly",), + "frizzliest": ("frizzly",), + "frostier": ("frosty",), + "frostiest": ("frosty",), + "frouzier": ("frouzy",), + "frouziest": ("frouzy",), + "frowsier": ("frowsy",), + "frowsiest": ("frowsy",), + "frowzier": ("frowzy",), + "frowziest": ("frowzy",), + "fruitier": ("fruity",), + "fruitiest": ("fruity",), + "funkier": ("funky",), + "funkiest": ("funky",), + "funnier": ("funny",), + "funniest": ("funny",), + "furrier": ("furry",), + "furriest": ("furry",), + "fussier": ("fussy",), + "fussiest": ("fussy",), + "fustier": ("fusty",), + "fustiest": ("fusty",), + "fuzzier": ("fuzzy",), + "fuzziest": ("fuzzy",), + "gabbier": ("gabby",), + "gabbiest": ("gabby",), + "gamier": ("gamy",), + "gamiest": ("gamy",), + "gammier": ("gammy",), + "gammiest": ("gammy",), + "gassier": ("gassy",), + "gassiest": ("gassy",), + "gaudier": ("gaudy",), + "gaudiest": ("gaudy",), + "gauzier": ("gauzy",), + "gauziest": ("gauzy",), + "gawkier": ("gawky",), + "gawkiest": ("gawky",), + "ghastlier": ("ghastly",), + "ghastliest": ("ghastly",), + "ghostlier": ("ghostly",), + "ghostliest": ("ghostly",), + "giddier": ("giddy",), + "giddiest": ("giddy",), + "gladder": ("glad",), + "gladdest": ("glad",), + "glassier": ("glassy",), + "glassiest": ("glassy",), + "glibber": ("glib",), + "glibbest": ("glib",), + "gloomier": ("gloomy",), + "gloomiest": ("gloomy",), + "glossier": ("glossy",), + "glossiest": ("glossy",), + "glummer": ("glum",), + "glummest": ("glum",), + "godlier": ("godly",), + "godliest": ("godly",), + "goer": ("goer",), + "goner": ("goner",), + "goodlier": ("goodly",), + "goodliest": ("goodly",), + "goofier": ("goofy",), + "goofiest": ("goofy",), + "gooier": ("gooey",), + "gooiest": ("gooey",), + "goosier": ("goosy",), + "goosiest": ("goosy",), + "gorier": ("gory",), + "goriest": ("gory",), + "gradelier": ("gradely",), + "gradeliest": ("gradely",), + "grader": ("grader",), + "grainier": ("grainy",), + "grainiest": ("grainy",), + "grassier": ("grassy",), + "grassiest": ("grassy",), + "greasier": ("greasy",), + "greasiest": ("greasy",), + "greedier": ("greedy",), + "greediest": ("greedy",), + "grimmer": ("grim",), + "grimmest": ("grim",), + "grislier": ("grisly",), + "grisliest": ("grisly",), + "grittier": ("gritty",), + "grittiest": ("gritty",), + "grizzlier": ("grizzly",), + "grizzliest": ("grizzly",), + "groggier": ("groggy",), + "groggiest": ("groggy",), + "groovier": ("groovy",), + "grooviest": ("groovy",), + "grottier": ("grotty",), + "grottiest": ("grotty",), + "grounder": ("grounder",), + "grouper": ("grouper",), + "groutier": ("grouty",), + "groutiest": ("grouty",), + "grubbier": ("grubby",), + "grubbiest": ("grubby",), + "grumpier": ("grumpy",), + "grumpiest": ("grumpy",), + "guest": ("guest",), + "guiltier": ("guilty",), + "guiltiest": ("guilty",), + "gummier": ("gummy",), + "gummiest": ("gummy",), + "gushier": ("gushy",), + "gushiest": ("gushy",), + "gustier": ("gusty",), + "gustiest": ("gusty",), + "gutsier": ("gutsy",), + "gutsiest": ("gutsy",), + "hairier": ("hairy",), + "hairiest": ("hairy",), + "halfways": ("halfway",), + "halter": ("halter",), + "hammier": ("hammy",), + "hammiest": ("hammy",), + "handier": ("handy",), + "handiest": ("handy",), + "happier": ("happy",), + "happiest": ("happy",), + "hardier": ("hardy",), + "hardiest": ("hardy",), + "hastier": ("hasty",), + "hastiest": ("hasty",), + "haughtier": ("haughty",), + "haughtiest": ("haughty",), + "hazier": ("hazy",), + "haziest": ("hazy",), + "header": ("header",), + "headier": ("heady",), + "headiest": ("heady",), + "healthier": ("healthy",), + "healthiest": ("healthy",), + "heartier": ("hearty",), + "heartiest": ("hearty",), + "heavier": ("heavy",), + "heaviest": ("heavy",), + "heftier": ("hefty",), + "heftiest": ("hefty",), + "hepper": ("hep",), + "heppest": ("hep",), + "herbier": ("herby",), + "herbiest": ("herby",), + "hinder": ("hind",), + "hipper": ("hip",), + "hippest": ("hip",), + "hippier": ("hippy",), + "hippiest": ("hippy",), + "hoarier": ("hoary",), + "hoariest": ("hoary",), + "holier": ("holy",), + "holiest": ("holy",), + "homelier": ("homely",), + "homeliest": ("homely",), + "homer": ("homer",), + "homier": ("homey",), + "homiest": ("homey",), + "hornier": ("horny",), + "horniest": ("horny",), + "horsier": ("horsy",), + "horsiest": ("horsy",), + "hotter": ("hot",), + "hottest": ("hot",), + "humpier": ("humpy",), + "humpiest": ("humpy",), + "hunger": ("hunger",), + "hungrier": ("hungry",), + "hungriest": ("hungry",), + "huskier": ("husky",), + "huskiest": ("husky",), + "icier": ("icy",), + "iciest": ("icy",), + "inkier": ("inky",), + "inkiest": ("inky",), + "insider": ("insider",), + "interest": ("interest",), + "jaggier": ("jaggy",), + "jaggiest": ("jaggy",), + "jammier": ("jammy",), + "jammiest": ("jammy",), + "jauntier": ("jaunty",), + "jauntiest": ("jaunty",), + "jazzier": ("jazzy",), + "jazziest": ("jazzy",), + "jerkier": ("jerky",), + "jerkiest": ("jerky",), + "jointer": ("jointer",), + "jollier": ("jolly",), + "jolliest": ("jolly",), + "juicier": ("juicy",), + "juiciest": ("juicy",), + "jumpier": ("jumpy",), + "jumpiest": ("jumpy",), + "kindlier": ("kindly",), + "kindliest": ("kindly",), + "kinkier": ("kinky",), + "kinkiest": ("kinky",), + "knottier": ("knotty",), + "knottiest": ("knotty",), + "knurlier": ("knurly",), + "knurliest": ("knurly",), + "kookier": ("kooky",), + "kookiest": ("kooky",), + "lacier": ("lacy",), + "laciest": ("lacy",), + "lairier": ("lairy",), + "lairiest": ("lairy",), + "lakier": ("laky",), + "lakiest": ("laky",), + "lander": ("lander",), + "lankier": ("lanky",), + "lankiest": ("lanky",), + "lathier": ("lathy",), + "lathiest": ("lathy",), + "layer": ("layer",), + "lazier": ("lazy",), + "laziest": ("lazy",), + "leafier": ("leafy",), + "leafiest": ("leafy",), + "leakier": ("leaky",), + "leakiest": ("leaky",), + "learier": ("leary",), + "leariest": ("leary",), + "leer": ("leer",), + "leerier": ("leery",), + "leeriest": ("leery",), + "left-hander": ("left-hander",), + "left-winger": ("left-winger",), + "leggier": ("leggy",), + "leggiest": ("leggy",), + "lengthier": ("lengthy",), + "lengthiest": ("lengthy",), + "ler": ("ler",), + "leveler": ("leveler",), + "limier": ("limy",), + "limiest": ("limy",), + "lippier": ("lippy",), + "lippiest": ("lippy",), + "liter": ("liter",), + "livelier": ("lively",), + "liveliest": ("lively",), + "liver": ("liver",), + "loather": ("loather",), + "loftier": ("lofty",), + "loftiest": ("lofty",), + "logier": ("logy",), + "logiest": ("logy",), + "lonelier": ("lonely",), + "loneliest": ("lonely",), + "loner": ("loner",), + "loonier": ("loony",), + "looniest": ("loony",), + "loopier": ("loopy",), + "loopiest": ("loopy",), + "lordlier": ("lordly",), + "lordliest": ("lordly",), + "lousier": ("lousy",), + "lousiest": ("lousy",), + "lovelier": ("lovely",), + "loveliest": ("lovely",), + "lowlander": ("lowlander",), + "lowlier": ("lowly",), + "lowliest": ("lowly",), + "luckier": ("lucky",), + "luckiest": ("lucky",), + "lumpier": ("lumpy",), + "lumpiest": ("lumpy",), + "lunier": ("luny",), + "luniest": ("luny",), + "lustier": ("lusty",), + "lustiest": ("lusty",), + "madder": ("mad",), + "maddest": ("mad",), + "mainer": ("mainer",), + "maligner": ("maligner",), + "maltier": ("malty",), + "maltiest": ("malty",), + "mangier": ("mangy",), + "mangiest": ("mangy",), + "mankier": ("manky",), + "mankiest": ("manky",), + "manlier": ("manly",), + "manliest": ("manly",), + "mariner": ("mariner",), + "marshier": ("marshy",), + "marshiest": ("marshy",), + "massier": ("massy",), + "massiest": ("massy",), + "matter": ("matter",), + "maungier": ("maungy",), + "maungiest": ("maungy",), + "mazier": ("mazy",), + "maziest": ("mazy",), + "mealier": ("mealy",), + "mealiest": ("mealy",), + "measlier": ("measly",), + "measliest": ("measly",), + "meatier": ("meaty",), + "meatiest": ("meaty",), + "meeter": ("meeter",), + "merrier": ("merry",), + "merriest": ("merry",), + "messier": ("messy",), + "messiest": ("messy",), + "miffier": ("miffy",), + "miffiest": ("miffy",), + "mightier": ("mighty",), + "mightiest": ("mighty",), + "milcher": ("milcher",), + "milker": ("milker",), + "milkier": ("milky",), + "milkiest": ("milky",), + "mingier": ("mingy",), + "mingiest": ("mingy",), + "minter": ("minter",), + "mirkier": ("mirky",), + "mirkiest": ("mirky",), + "miser": ("miser",), + "mistier": ("misty",), + "mistiest": ("misty",), + "mocker": ("mocker",), + "modeler": ("modeler",), + "modest": ("modest",), + "moldier": ("moldy",), + "moldiest": ("moldy",), + "moodier": ("moody",), + "moodiest": ("moody",), + "moonier": ("moony",), + "mooniest": ("moony",), + "mothier": ("mothy",), + "mothiest": ("mothy",), + "mouldier": ("mouldy",), + "mouldiest": ("mouldy",), + "mousier": ("mousy",), + "mousiest": ("mousy",), + "mouthier": ("mouthy",), + "mouthiest": ("mouthy",), + "muckier": ("mucky",), + "muckiest": ("mucky",), + "muddier": ("muddy",), + "muddiest": ("muddy",), + "muggier": ("muggy",), + "muggiest": ("muggy",), + "multiplexer": ("multiplexer",), + "murkier": ("murky",), + "murkiest": ("murky",), + "mushier": ("mushy",), + "mushiest": ("mushy",), + "muskier": ("musky",), + "muskiest": ("musky",), + "muster": ("muster",), + "mustier": ("musty",), + "mustiest": ("musty",), + "muzzier": ("muzzy",), + "muzziest": ("muzzy",), + "nappier": ("nappy",), + "nappiest": ("nappy",), + "nastier": ("nasty",), + "nastiest": ("nasty",), + "nattier": ("natty",), + "nattiest": ("natty",), + "naughtier": ("naughty",), + "naughtiest": ("naughty",), + "needier": ("needy",), + "neediest": ("needy",), + "nervier": ("nervy",), + "nerviest": ("nervy",), + "newsier": ("newsy",), + "newsiest": ("newsy",), + "niftier": ("nifty",), + "niftiest": ("nifty",), + "nippier": ("nippy",), + "nippiest": ("nippy",), + "nittier": ("nitty",), + "nittiest": ("nitty",), + "noisier": ("noisy",), + "noisiest": ("noisy",), + "northeasterner": ("northeasterner",), + "norther": ("norther",), + "northerner": ("northerner",), + "nosier": ("nosy",), + "nosiest": ("nosy",), + "number": ("number",), + "nuttier": ("nutty",), + "nuttiest": ("nutty",), + "offer": ("offer",), + "oilier": ("oily",), + "oiliest": ("oily",), + "old-timer": ("old-timer",), + "oliver": ("oliver",), + "oozier": ("oozy",), + "ooziest": ("oozy",), + "opener": ("opener",), + "outsider": ("outsider",), + "overcomer": ("overcomer",), + "overnighter": ("overnighter",), + "owner": ("owner",), + "pallier": ("pally",), + "palliest": ("pally",), + "palmier": ("palmy",), + "palmiest": ("palmy",), + "paltrier": ("paltry",), + "paltriest": ("paltry",), + "pappier": ("pappy",), + "pappiest": ("pappy",), + "parkier": ("parky",), + "parkiest": ("parky",), + "part-timer": ("part-timer",), + "passer": ("passer",), + "paster": ("paster",), + "pastier": ("pasty",), + "pastiest": ("pasty",), + "patchier": ("patchy",), + "patchiest": ("patchy",), + "pater": ("pater",), + "pawkier": ("pawky",), + "pawkiest": ("pawky",), + "peachier": ("peachy",), + "peachiest": ("peachy",), + "pearler": ("pearler",), + "pearlier": ("pearly",), + "pearliest": ("pearly",), + "pedaler": ("pedaler",), + "peppier": ("peppy",), + "peppiest": ("peppy",), + "perkier": ("perky",), + "perkiest": ("perky",), + "peskier": ("pesky",), + "peskiest": ("pesky",), + "peter": ("peter",), + "pettier": ("petty",), + "pettiest": ("petty",), + "phonier": ("phony",), + "phoniest": ("phony",), + "pickier": ("picky",), + "pickiest": ("picky",), + "piggier": ("piggy",), + "piggiest": ("piggy",), + "pinier": ("piny",), + "piniest": ("piny",), + "pitchier": ("pitchy",), + "pitchiest": ("pitchy",), + "pithier": ("pithy",), + "pithiest": ("pithy",), + "planer": ("planer",), + "plashier": ("plashy",), + "plashiest": ("plashy",), + "platier": ("platy",), + "platiest": ("platy",), + "player": ("player",), + "pluckier": ("plucky",), + "pluckiest": ("plucky",), + "plumber": ("plumber",), + "plumier": ("plumy",), + "plumiest": ("plumy",), + "plummier": ("plummy",), + "plummiest": ("plummy",), + "podgier": ("podgy",), + "podgiest": ("podgy",), + "pokier": ("poky",), + "pokiest": ("poky",), + "polisher": ("polisher",), + "porkier": ("porky",), + "porkiest": ("porky",), + "porter": ("porter",), + "portlier": ("portly",), + "portliest": ("portly",), + "poster": ("poster",), + "pottier": ("potty",), + "pottiest": ("potty",), + "preachier": ("preachy",), + "preachiest": ("preachy",), + "presenter": ("presenter",), + "pretender": ("pretender",), + "prettier": ("pretty",), + "prettiest": ("pretty",), + "pricier": ("pricy",), + "priciest": ("pricy",), + "pricklier": ("prickly",), + "prickliest": ("prickly",), + "priestlier": ("priestly",), + "priestliest": ("priestly",), + "primer": ("primer",), + "primmer": ("prim",), + "primmest": ("prim",), + "princelier": ("princely",), + "princeliest": ("princely",), + "printer": ("printer",), + "prissier": ("prissy",), + "prissiest": ("prissy",), + "privateer": ("privateer",), + "privier": ("privy",), + "priviest": ("privy",), + "prompter": ("prompter",), + "prosier": ("prosy",), + "prosiest": ("prosy",), + "pudgier": ("pudgy",), + "pudgiest": ("pudgy",), + "puffer": ("puffer",), + "puffier": ("puffy",), + "puffiest": ("puffy",), + "pulpier": ("pulpy",), + "pulpiest": ("pulpy",), + "punchier": ("punchy",), + "punchiest": ("punchy",), + "punier": ("puny",), + "puniest": ("puny",), + "pushier": ("pushy",), + "pushiest": ("pushy",), + "pussier": ("pussy",), + "pussiest": ("pussy",), + "quaggier": ("quaggy",), + "quaggiest": ("quaggy",), + "quakier": ("quaky",), + "quakiest": ("quaky",), + "queasier": ("queasy",), + "queasiest": ("queasy",), + "queenlier": ("queenly",), + "queenliest": ("queenly",), + "racier": ("racy",), + "raciest": ("racy",), + "rainier": ("rainy",), + "rainiest": ("rainy",), + "randier": ("randy",), + "randiest": ("randy",), + "rangier": ("rangy",), + "rangiest": ("rangy",), + "ranker": ("ranker",), + "rattier": ("ratty",), + "rattiest": ("ratty",), + "rattlier": ("rattly",), + "rattliest": ("rattly",), + "raunchier": ("raunchy",), + "raunchiest": ("raunchy",), + "readier": ("ready",), + "readiest": ("ready",), + "recorder": ("recorder",), + "redder": ("red",), + "reddest": ("red",), + "reedier": ("reedy",), + "reediest": ("reedy",), + "renter": ("renter",), + "retailer": ("retailer",), + "right-hander": ("right-hander",), + "right-winger": ("right-winger",), + "rimier": ("rimy",), + "rimiest": ("rimy",), + "riskier": ("risky",), + "riskiest": ("risky",), + "ritzier": ("ritzy",), + "ritziest": ("ritzy",), + "roaster": ("roaster",), + "rockier": ("rocky",), + "rockiest": ("rocky",), + "roilier": ("roily",), + "roiliest": ("roily",), + "rookier": ("rooky",), + "rookiest": ("rooky",), + "roomier": ("roomy",), + "roomiest": ("roomy",), + "ropier": ("ropy",), + "ropiest": ("ropy",), + "rosier": ("rosy",), + "rosiest": ("rosy",), + "rowdier": ("rowdy",), + "rowdiest": ("rowdy",), + "ruddier": ("ruddy",), + "ruddiest": ("ruddy",), + "runnier": ("runny",), + "runniest": ("runny",), + "rusher": ("rusher",), + "rushier": ("rushy",), + "rushiest": ("rushy",), + "rustier": ("rusty",), + "rustiest": ("rusty",), + "ruttier": ("rutty",), + "ruttiest": ("rutty",), + "sadder": ("sad",), + "saddest": ("sad",), + "salter": ("salter",), + "saltier": ("salty",), + "saltiest": ("salty",), + "sampler": ("sampler",), + "sandier": ("sandy",), + "sandiest": ("sandy",), + "sappier": ("sappy",), + "sappiest": ("sappy",), + "sassier": ("sassy",), + "sassiest": ("sassy",), + "saucier": ("saucy",), + "sauciest": ("saucy",), + "savvier": ("savvy",), + "savviest": ("savvy",), + "scabbier": ("scabby",), + "scabbiest": ("scabby",), + "scalier": ("scaly",), + "scaliest": ("scaly",), + "scantier": ("scanty",), + "scantiest": ("scanty",), + "scarier": ("scary",), + "scariest": ("scary",), + "scraggier": ("scraggy",), + "scraggiest": ("scraggy",), + "scragglier": ("scraggly",), + "scraggliest": ("scraggly",), + "scraper": ("scraper",), + "scrappier": ("scrappy",), + "scrappiest": ("scrappy",), + "scrawnier": ("scrawny",), + "scrawniest": ("scrawny",), + "screwier": ("screwy",), + "screwiest": ("screwy",), + "scrubbier": ("scrubby",), + "scrubbiest": ("scrubby",), + "scruffier": ("scruffy",), + "scruffiest": ("scruffy",), + "scungier": ("scungy",), + "scungiest": ("scungy",), + "scurvier": ("scurvy",), + "scurviest": ("scurvy",), + "seamier": ("seamy",), + "seamiest": ("seamy",), + "second-rater": ("second-rater",), + "seconder": ("seconder",), + "seedier": ("seedy",), + "seediest": ("seedy",), + "seemlier": ("seemly",), + "seemliest": ("seemly",), + "serer": ("serer",), + "sexier": ("sexy",), + "sexiest": ("sexy",), + "shabbier": ("shabby",), + "shabbiest": ("shabby",), + "shadier": ("shady",), + "shadiest": ("shady",), + "shaggier": ("shaggy",), + "shaggiest": ("shaggy",), + "shakier": ("shaky",), + "shakiest": ("shaky",), + "shapelier": ("shapely",), + "shapeliest": ("shapely",), + "shier": ("shy",), + "shiest": ("shy",), + "shiftier": ("shifty",), + "shiftiest": ("shifty",), + "shinier": ("shiny",), + "shiniest": ("shiny",), + "shirtier": ("shirty",), + "shirtiest": ("shirty",), + "shoddier": ("shoddy",), + "shoddiest": ("shoddy",), + "showier": ("showy",), + "showiest": ("showy",), + "shrubbier": ("shrubby",), + "shrubbiest": ("shrubby",), + "shyer": ("shy",), + "shyest": ("shy",), + "sicklier": ("sickly",), + "sickliest": ("sickly",), + "sightlier": ("sightly",), + "sightliest": ("sightly",), + "signaler": ("signaler",), + "signer": ("signer",), + "silkier": ("silky",), + "silkiest": ("silky",), + "sillier": ("silly",), + "silliest": ("silly",), + "sketchier": ("sketchy",), + "sketchiest": ("sketchy",), + "skewer": ("skewer",), + "skimpier": ("skimpy",), + "skimpiest": ("skimpy",), + "skinnier": ("skinny",), + "skinniest": ("skinny",), + "slaphappier": ("slaphappy",), + "slaphappiest": ("slaphappy",), + "slatier": ("slaty",), + "slatiest": ("slaty",), + "slaver": ("slaver",), + "sleazier": ("sleazy",), + "sleaziest": ("sleazy",), + "sleepier": ("sleepy",), + "sleepiest": ("sleepy",), + "slier": ("sly",), + "sliest": ("sly",), + "slimier": ("slimy",), + "slimiest": ("slimy",), + "slimmer": ("slim",), + "slimmest": ("slim",), + "slimsier": ("slimsy",), + "slimsiest": ("slimsy",), + "slinkier": ("slinky",), + "slinkiest": ("slinky",), + "slippier": ("slippy",), + "slippiest": ("slippy",), + "sloppier": ("sloppy",), + "sloppiest": ("sloppy",), + "slyer": ("sly",), + "slyest": ("sly",), + "smarmier": ("smarmy",), + "smarmiest": ("smarmy",), + "smellier": ("smelly",), + "smelliest": ("smelly",), + "smokier": ("smoky",), + "smokiest": ("smoky",), + "smugger": ("smug",), + "smuggest": ("smug",), + "snakier": ("snaky",), + "snakiest": ("snaky",), + "snappier": ("snappy",), + "snappiest": ("snappy",), + "snatchier": ("snatchy",), + "snatchiest": ("snatchy",), + "snazzier": ("snazzy",), + "snazziest": ("snazzy",), + "sneaker": ("sneaker",), + "sniffier": ("sniffy",), + "sniffiest": ("sniffy",), + "snootier": ("snooty",), + "snootiest": ("snooty",), + "snottier": ("snotty",), + "snottiest": ("snotty",), + "snowier": ("snowy",), + "snowiest": ("snowy",), + "snuffer": ("snuffer",), + "snuffier": ("snuffy",), + "snuffiest": ("snuffy",), + "snugger": ("snug",), + "snuggest": ("snug",), + "soapier": ("soapy",), + "soapiest": ("soapy",), + "soggier": ("soggy",), + "soggiest": ("soggy",), + "solder": ("solder",), + "sonsier": ("sonsy",), + "sonsiest": ("sonsy",), + "sootier": ("sooty",), + "sootiest": ("sooty",), + "soppier": ("soppy",), + "soppiest": ("soppy",), + "sorrier": ("sorry",), + "sorriest": ("sorry",), + "soupier": ("soupy",), + "soupiest": ("soupy",), + "souther": ("souther",), + "southerner": ("southerner",), + "speedier": ("speedy",), + "speediest": ("speedy",), + "spicier": ("spicy",), + "spiciest": ("spicy",), + "spiffier": ("spiffy",), + "spiffiest": ("spiffy",), + "spikier": ("spiky",), + "spikiest": ("spiky",), + "spindlier": ("spindly",), + "spindliest": ("spindly",), + "spinier": ("spiny",), + "spiniest": ("spiny",), + "splashier": ("splashy",), + "splashiest": ("splashy",), + "spongier": ("spongy",), + "spongiest": ("spongy",), + "spookier": ("spooky",), + "spookiest": ("spooky",), + "spoonier": ("spoony",), + "spooniest": ("spoony",), + "sportier": ("sporty",), + "sportiest": ("sporty",), + "spottier": ("spotty",), + "spottiest": ("spotty",), + "spreader": ("spreader",), + "sprier": ("spry",), + "spriest": ("spry",), + "sprightlier": ("sprightly",), + "sprightliest": ("sprightly",), + "springer": ("springer",), + "springier": ("springy",), + "springiest": ("springy",), + "squashier": ("squashy",), + "squashiest": ("squashy",), + "squatter": ("squat",), + "squattest": ("squat",), + "squattier": ("squatty",), + "squattiest": ("squatty",), + "squiffier": ("squiffy",), + "squiffiest": ("squiffy",), + "stagier": ("stagy",), + "stagiest": ("stagy",), + "stalkier": ("stalky",), + "stalkiest": ("stalky",), + "stapler": ("stapler",), + "starchier": ("starchy",), + "starchiest": ("starchy",), + "starer": ("starer",), + "starest": ("starest",), + "starrier": ("starry",), + "starriest": ("starry",), + "statelier": ("stately",), + "stateliest": ("stately",), + "steadier": ("steady",), + "steadiest": ("steady",), + "stealthier": ("stealthy",), + "stealthiest": ("stealthy",), + "steamier": ("steamy",), + "steamiest": ("steamy",), + "stingier": ("stingy",), + "stingiest": ("stingy",), + "stiper": ("striper",), + "stocker": ("stocker",), + "stockier": ("stocky",), + "stockiest": ("stocky",), + "stodgier": ("stodgy",), + "stodgiest": ("stodgy",), + "stonier": ("stony",), + "stoniest": ("stony",), + "stormier": ("stormy",), + "stormiest": ("stormy",), + "streakier": ("streaky",), + "streakiest": ("streaky",), + "streamier": ("streamy",), + "streamiest": ("streamy",), + "stretcher": ("stretcher",), + "stretchier": ("stretchy",), + "stretchiest": ("stretchy",), + "stringier": ("stringy",), + "stringiest": ("stringy",), + "stripier": ("stripy",), + "stripiest": ("stripy",), + "stronger": ("strong",), + "strongest": ("strong",), + "stroppier": ("stroppy",), + "stroppiest": ("stroppy",), + "stuffier": ("stuffy",), + "stuffiest": ("stuffy",), + "stumpier": ("stumpy",), + "stumpiest": ("stumpy",), + "sturdier": ("sturdy",), + "sturdiest": ("sturdy",), + "submariner": ("submariner",), + "sulkier": ("sulky",), + "sulkiest": ("sulky",), + "sultrier": ("sultry",), + "sultriest": ("sultry",), + "sunnier": ("sunny",), + "sunniest": ("sunny",), + "surlier": ("surly",), + "surliest": ("surly",), + "swagger": ("swagger",), + "swankier": ("swanky",), + "swankiest": ("swanky",), + "swarthier": ("swarthy",), + "swarthiest": ("swarthy",), + "sweatier": ("sweaty",), + "sweatiest": ("sweaty",), + "tackier": ("tacky",), + "tackiest": ("tacky",), + "talkier": ("talky",), + "talkiest": ("talky",), + "tangier": ("tangy",), + "tangiest": ("tangy",), + "tanner": ("tan",), + "tannest": ("tan",), + "tardier": ("tardy",), + "tardiest": ("tardy",), + "tastier": ("tasty",), + "tastiest": ("tasty",), + "tattier": ("tatty",), + "tattiest": ("tatty",), + "tawdrier": ("tawdry",), + "tawdriest": ("tawdry",), + "techier": ("techy",), + "techiest": ("techy",), + "teenager": ("teenager",), + "teenier": ("teeny",), + "teeniest": ("teeny",), + "teetotaler": ("teetotaler",), + "tester": ("tester",), + "testier": ("testy",), + "testiest": ("testy",), + "tetchier": ("tetchy",), + "tetchiest": ("tetchy",), + "thinner": ("thin",), + "thinnest": ("thin",), + "third-rater": ("third-rater",), + "thirstier": ("thirsty",), + "thirstiest": ("thirsty",), + "thornier": ("thorny",), + "thorniest": ("thorny",), + "threadier": ("thready",), + "threadiest": ("thready",), + "thriftier": ("thrifty",), + "thriftiest": ("thrifty",), + "throatier": ("throaty",), + "throatiest": ("throaty",), + "tidier": ("tidy",), + "tidiest": ("tidy",), + "timelier": ("timely",), + "timeliest": ("timely",), + "tinier": ("tiny",), + "tiniest": ("tiny",), + "tinnier": ("tinny",), + "tinniest": ("tinny",), + "tipsier": ("tipsy",), + "tipsiest": ("tipsy",), + "tonier": ("tony",), + "toniest": ("tony",), + "toothier": ("toothy",), + "toothiest": ("toothy",), + "toper": ("toper",), + "touchier": ("touchy",), + "touchiest": ("touchy",), + "trader": ("trader",), + "trashier": ("trashy",), + "trashiest": ("trashy",), + "trendier": ("trendy",), + "trendiest": ("trendy",), + "trickier": ("tricky",), + "trickiest": ("tricky",), + "tricksier": ("tricksy",), + "tricksiest": ("tricksy",), + "trimer": ("trimer",), + "trimmer": ("trim",), + "trimmest": ("trim",), + "truer": ("true",), + "truest": ("true",), + "trustier": ("trusty",), + "trustiest": ("trusty",), + "tubbier": ("tubby",), + "tubbiest": ("tubby",), + "turfier": ("turfy",), + "turfiest": ("turfy",), + "tweedier": ("tweedy",), + "tweediest": ("tweedy",), + "twiggier": ("twiggy",), + "twiggiest": ("twiggy",), + "uglier": ("ugly",), + "ugliest": ("ugly",), + "unfriendlier": ("unfriendly",), + "unfriendliest": ("unfriendly",), + "ungainlier": ("ungainly",), + "ungainliest": ("ungainly",), + "ungodlier": ("ungodly",), + "ungodliest": ("ungodly",), + "unhappier": ("unhappy",), + "unhappiest": ("unhappy",), + "unhealthier": ("unhealthy",), + "unhealthiest": ("unhealthy",), + "unholier": ("unholy",), + "unholiest": ("unholy",), + "unrulier": ("unruly",), + "unruliest": ("unruly",), + "untidier": ("untidy",), + "untidiest": ("untidy",), + "vastier": ("vasty",), + "vastiest": ("vasty",), + "vest": ("vest",), + "viewier": ("viewy",), + "viewiest": ("viewy",), + "wackier": ("wacky",), + "wackiest": ("wacky",), + "wanner": ("wan",), + "wannest": ("wan",), + "warier": ("wary",), + "wariest": ("wary",), + "washier": ("washy",), + "washiest": ("washy",), + "waster": ("waster",), + "wavier": ("wavy",), + "waviest": ("wavy",), + "waxier": ("waxy",), + "waxiest": ("waxy",), + "weaklier": ("weakly",), + "weakliest": ("weakly",), + "wealthier": ("wealthy",), + "wealthiest": ("wealthy",), + "wearier": ("weary",), + "weariest": ("weary",), + "webbier": ("webby",), + "webbiest": ("webby",), + "weedier": ("weedy",), + "weediest": ("weedy",), + "weenier": ("weeny",), + "weeniest": ("weeny",), + "weensier": ("weensy",), + "weensiest": ("weensy",), + "weepier": ("weepy",), + "weepiest": ("weepy",), + "weightier": ("weighty",), + "weightiest": ("weighty",), + "welsher": ("welsher",), + "wetter": ("wet",), + "wettest": ("wet",), + "whackier": ("whacky",), + "whackiest": ("whacky",), + "whimsier": ("whimsy",), + "whimsiest": ("whimsy",), + "wholesaler": ("wholesaler",), + "wieldier": ("wieldy",), + "wieldiest": ("wieldy",), + "wilier": ("wily",), + "wiliest": ("wily",), + "windier": ("windy",), + "windiest": ("windy",), + "winier": ("winy",), + "winiest": ("winy",), + "winterier": ("wintery",), + "winteriest": ("wintery",), + "wintrier": ("wintry",), + "wintriest": ("wintry",), + "wirier": ("wiry",), + "wiriest": ("wiry",), + "wispier": ("wispy",), + "wispiest": ("wispy",), + "wittier": ("witty",), + "wittiest": ("witty",), + "wonkier": ("wonky",), + "wonkiest": ("wonky",), + "woodier": ("woody",), + "woodiest": ("woody",), + "woodsier": ("woodsy",), + "woodsiest": ("woodsy",), + "woollier": ("woolly",), + "woolliest": ("woolly",), + "woozier": ("woozy",), + "wooziest": ("woozy",), + "wordier": ("wordy",), + "wordiest": ("wordy",), + "worldlier": ("worldly",), + "worldliest": ("worldly",), + "wormier": ("wormy",), + "wormiest": ("wormy",), + "worse": ("bad",), + "worst": ("bad",), + "worthier": ("worthy",), + "worthiest": ("worthy",), + "wrier": ("wry",), + "wriest": ("wry",), + "wryer": ("wry",), + "wryest": ("wry",), + "yarer": ("yare",), + "yarest": ("yare",), + "yeastier": ("yeasty",), + "yeastiest": ("yeasty",), + "younger": ("young",), + "youngest": ("young",), + "yummier": ("yummy",), + "yummiest": ("yummy",), + "zanier": ("zany",), + "zaniest": ("zany",), + "zippier": ("zippy",), + "zippiest": ("zippy",) +} diff --git a/spacy/en/lemmatizer/_adverbs.py b/spacy/en/lemmatizer/_adverbs.py new file mode 100644 index 000000000..3162f8671 --- /dev/null +++ b/spacy/en/lemmatizer/_adverbs.py @@ -0,0 +1,543 @@ +# coding: utf8 +from __future__ import unicode_literals + + +ADVERBS = set(""" +'tween a.d. a.k.a. a.m. aback abaft abaxially abeam abed abjectly ably +abnormally aboard abominably aborad abortively about above aboveboard abreast +abroad abruptly absently absentmindedly absolutely abstemiously abstractedly +abstractly abstrusely absurdly abundantly abusively abysmally academically +accelerando acceptably accidentally accommodatingly accordingly accurately +accusingly acoustically across actively actually acutely ad adagio adamantly +adaxially additionally adequately adjectivally adjectively administratively +admirably admiringly admittedly adorably adoringly adrift adroitly adulterously +advantageously adverbially adversely advertently advisedly aerially +aesthetically afar affably affectedly affectingly affectionately affirmatively +afield afoot afresh aft after afterward afterwards again aggravatingly +aggressively agilely ago agonizingly agreeably aground ahead ahorse ahorseback +aimlessly airily akimbo alarmingly alas alee alertly alfresco algebraically +alias alike all all-fired allegedly allegorically allegretto allegro +alliteratively allowably almost aloft alone along alongside aloof aloud +alphabetically already alright also alternately alternatively altogether +altruistically always amain amateurishly amazingly ambiguously ambitiously +amiably amicably amidship amidships amiss amok amorally amorously amply amuck +amusingly anachronistically analogously analytically anarchically anatomically +anciently andante anew angelically angrily animatedly anisotropically annoyingly +annually anomalously anon anonymously antagonistically antecedently anteriorly +anticlockwise antithetically anxiously any anyhow anymore anyplace anyway +anyways anywhere apace apart apathetically apiece apologetically appallingly +apparently appealingly appositively appreciably appreciatively apprehensively +appropriately approvingly approximately apropos aptly arbitrarily +architecturally archly ardently arduously arguably argumentatively aright +aristocratically arithmetically around arrogantly artfully articulately +artificially artistically artlessly as asap ascetically asea asexually ashamedly +ashore aside askance askew aslant asleep assertively assiduously assuredly +astern astonishingly astraddle astray astride astronomically astutely asunder +asymmetrically asymptotically athwart atonally atop atrociously attentively +attractively attributively atypically audaciously audibly aurally auspiciously +austerely authentically authoritatively autocratically automatically +avariciously avidly avowedly away awful awfully awhile awkwardly awry axially +axiomatically b.c. b.c.e. baby-like baby-wise back backstage backward backwards +bacterially bad badly baldly balefully balmily banefully bang bannerlike +banteringly barbarously bareback barebacked barefacedly barefoot barefooted +barely basely bashfully basically bawdily bc bce beastly beautifully becomingly +befittingly before beforehand behind behindhand belatedly believably believingly +belike belligerently below beneath beneficially benevolently benignantly +benignly beseechingly besides best bestially betimes better between betwixt +bewilderedly bewilderingly bewitchingly beyond biannually biennially big +bilaterally bilingually bimonthly binaurally biochemically biologically +biradially bitingly bitter bitterly biweekly biyearly blamelessly blandly +blankly blasphemously blatantly bleakly blessedly blindly blissfully blithely +bloodily bloodlessly bloody bluffly bluntly boastfully bodily boiling +boisterously boldly bolt bombastically bonnily boorishly boringly boundlessly +bounteously bountifully boyishly boylike brashly bravely brazenly breadthways +breadthwise breast-deep breast-high breathlessly breezily briefly bright +brightly brilliantly briskly broad-mindedly broadly broadside broadwise +brotherly brusquely brutally brutishly bumptiously buoyantly bureaucratically +busily but buxomly by c.e. c.o.d. cagily cajolingly calculatingly callously +calmly calumniously candidly cannily canonically cantankerously cap-a-pie +capably capriciously captiously captivatingly carefully carelessly carnally +casually catalytically catastrophically categorically caudal caudally causally +caustically cautiously cavalierly ce ceaselessly centennially centrally +cerebrally ceremonially ceremoniously certainly cf cf. chaotically +characteristically charily charitably charmingly chastely chattily cheaply +cheekily cheerfully cheerily cheerlessly chemically chiefly childishly chintzily +chirpily chivalrously chock chock-a-block chop-chop chorally chromatically +chromatographically chronically chronologically churlishly circularly +circumspectly circumstantially civilly clammily clamorously clannishly +classically clean cleanly clear clearly cleverly climatically clinically +cliquishly clockwise close closely closer closest cloyingly clumsily coarsely +coastward coastwise coaxingly cod cognitively coherently coincidentally +coincidently cold-bloodedly coldly collect collectedly collectively colloidally +colloquially combatively comfortably comfortingly comically commendable +commensally commercially commonly communally compactly comparably comparatively +compassionately compatibly competently competitively complacently complainingly +completely complexly composedly comprehensively compulsively compulsorily +computationally con concavely conceitedly conceivably conceptually concernedly +concisely conclusively concretely concurrently condescendingly conditionally +confessedly confidentially confidently confidingly conformably confoundedly +confusedly confusingly congenially conically conjecturally conjointly conjugally +connubial conscientiously consciously consecutive consecutively consequentially +consequently conservatively considerably considerately consistently consolingly +conspicuously constantly constitutionally constrainedly constructively +contagiously contemporaneously contemptibly contemptuously contentedly +contextually continually continuously contractually contradictorily contrarily +contrariwise contrastingly contritely controversially contumaciously +contumeliously conveniently conventionally conversationally conversely convexly +convincingly convivially convulsively coolly cooperatively coordinately +copiously coquettishly cordially correctly correspondingly corruptedly corruptly +cortically cosily cosmetically coterminously counter counteractively +counterclockwise counterintuitively courageously course courteously covertly +covetously coyly cozily craftily crazily creakily creakingly creatively credibly +creditably credulously criminally crisply crisscross critically crookedly cross- +country cross-legged cross-linguistically crossly crosstown crossways crosswise +crucially crudely cruelly crushingly cryptically cryptographically culpably +culturally cumulatively cunningly curiously currently currishly cursedly +cursively cursorily curtly curvaceously cussedly customarily cutely cuttingly +cynically cytophotometrically cytoplasmically daftly daily daintily damn +damnably damned damply dandily dangerously daringly darkly dashingly dauntingly +dauntlessly daylong dazedly dazzlingly dead deadly deadpan dear dearly deathly +deceitfully deceivingly decent decently deceptively decidedly decipherably +decisively decoratively decorously deep deeply defectively defenceless +defencelessly defenseless defenselessly defensively deferentially defiantly +definitely deftly dejectedly deliberately delicately deliciously delightedly +delightfully deliriously delusively demandingly demeaningly dementedly +democratically demoniacally demonstrably demonstratively demurely +denominationally densely departmentally dependably deplorably deprecatively +depressingly derisively derisorily descriptively deservedly designedly +desolately despairingly desperately despicably despitefully despondently +destructively determinedly detestably detrimentally deucedly developmentally +devilish devilishly deviously devotedly devoutly dexterously dextrously +diabolically diagonally diagrammatically dialectically diametrically +dichotomously dictatorially didactically differentially differently diffidently +diffusely digitally digitately diligently dimly dingdong dingily diplomatically +direct directly direfully dirtily disadvantageously disagreeably disappointedly +disappointingly disapprovingly disastrously disbelievingly disconcertingly +disconsolately discontentedly discordantly discouragingly discourteously +discreditably discreetly discursively disdainfully disgracefully disgustedly +disgustingly dishonestly dishonorably dishonourably disingenuously +disinterestedly disjointedly disloyally dismally disobediently disparagingly +dispassionately dispiritedly displeasingly disproportionately disputatiously +disquietingly disregarding disregardless disreputably disrespectfully +disruptively dissolutely distally distantly distastefully distinctively +distinctly distractedly distressfully distressingly distributively distrustfully +disturbingly diversely divertingly divinely dizzily doctrinally doggedly doggo +dogmatically dolce dolefully doltishly domestically domineeringly dorsally +dorsoventrally dottily double doubly doubtfully doubtless doubtlessly dourly +dowdily down downfield downhill downright downriver downstage downstairs +downstream downtown downward downwardly downwards downwind drably draggingly +dramatically drastically dreadfully dreamfully dreamily drearily drily drippily +dripping droopingly drop-dead drowsily drunkenly dryly dubiously due dully duly +dumbly dutifully dynamically e'en e'er e.g. each eagerly earlier earliest early +earnestly easily east easterly eastward eastwards easy ebulliently eccentrically +ecclesiastically ecologically economically ecstatically edgeways edgewise +editorially educationally eerily effectively effectually efficaciously +efficiently effortlessly effusively egotistically either elaborately +electrically electronically electrostatically elegantly elementarily eloquently +elsewhere embarrassingly eminently emotionally empathetically emphatically +empirically emulously enchantingly encouragingly end-to-end endearingly +endlessly endogenously enduringly endways endwise energetically engagingly +enigmatically enjoyably enormously enough enquiringly enterprisingly +entertainingly enthrallingly enthusiastically entirely entreatingly enviably +enviously environmentally episodically equably equally equitably equivocally +erectly ergo erotically erratically erroneously erst erstwhile eruditely +eschatologically especially essentially esthetically etc. etcetera eternally +ethically ethnically euphemistically evasively even evenhandedly evenly +eventually ever everlastingly evermore everyplace everywhere evidently evilly +evolutionarily exactly exaggeratedly exasperatingly exceedingly excellently +exceptionally excessively excitedly excitingly exclusively excruciatingly +excusably exhaustively exorbitantly expansively expectantly expediently +expeditiously expensively experimentally expertly explicitly explosively +exponentially express expressively expressly exquisitely extemporaneously +extemporarily extempore extensively externally extortionately extra +extraordinarily extravagantly extremely exuberantly exultantly exultingly +fabulously face-to-face facetiously facially factually faddily faddishly fain +faintly fair fairly faithfully faithlessly false falsely falteringly familiarly +famously fanatically fancifully fantastically far farcically farther farthest +fascinatingly fashionably fast faster fastest fastidiously fatally fatefully +fatuously faultily faultlessly favorably favourably fearfully fearlessly +fearsomely feasibly fecklessly federally feebly feelingly feetfirst felicitously +ferociously fervently fervidly feudally feverishly fictitiously fiendishly +fiercely fierily fifthly figuratively filthily finally financially fine finely +finitely firm firmly first first-rate firsthand firstly fiscally fishily +fitfully fitly fittingly fixedly flabbily flagrantly flamboyantly flashily flat +flatly flawlessly fleetly flexibly flimsily flip-flap flippantly flirtatiously +flop floridly fluently flush focally fondly foolishly forbiddingly forcefully +forcibly fore foremost forever forevermore forgetfully forgivably forgivingly +forlornly formally formerly formidably formlessly forrad forrader forrard +forsooth forte forth forthright forthrightly forthwith fortissimo fortnightly +fortuitously fortunately forward forwards foully fourfold foursquare fourth +fourthly foxily fractiously frankly frantically fraternally fraudulently +freakishly free freely frenetically frenziedly frequently fresh freshly +fretfully frighteningly frightfully frigidly friskily frivolously frontally +frontward frontwards frostily frothily frowningly frugally fruitfully +fruitlessly frumpily frumpishly fucking fugally full full-time fully fulsomely +functionally fundamentally funnily furiously further furthermore furthest +furtively fussily futilely gaily gainfully gainlessly gallantly gamely garishly +garrulously gaudily gayly genealogically generally generically generously +genetically genially genteelly gently genuinely geographically geologically +geometrically geothermally gibingly giddily gingerly girlishly glacially gladly +glaringly gleefully glibly glissando gloatingly globally gloomily gloriously +glossily gloweringly glowingly glumly gluttonously goddam goddamn goddamned good +good-naturedly gorgeously governmentally gracefully gracelessly graciously +gradually grammatically grandiloquently grandiosely grandly graphically +gratefully gratifyingly gratingly gratis gratuitously gravely gravitationally +grayly greasily greatly greedily greenly gregariously greyly grievously grimly +gropingly grossly grotesquely grouchily grubbily grudgingly gruesomely gruffly +grumpily grungily guardedly guiltily gushingly gutturally habitually haggardly +half half-and-half half-heartedly half-hourly half-price half-time half-yearly +halfway haltingly handily handsomely haphazard haphazardly haply happily +haptically hard hardly harmfully harmlessly harmonically harmoniously harshly +harum-scarum hastily hatefully haughtily hazardously hazily head-on head-to-head +headfirst headlong healthily heaps heartily heartlessly heatedly heavenward +heavenwardly heavenwards heavily heavy hebdomadally hectically heedfully +heedlessly heinously hell-for-leather hellishly helpfully helplessly helter- +skelter hence henceforth henceforward here hereabout hereabouts hereafter hereby +herein hereinafter hereinbefore hereof hereto heretofore hereunder hereupon +herewith hermetically heroically hesitantly hesitatingly hideously +hierarchically hieroglyphically higgledy-piggledy high high-handedly high- +mindedly highly hilariously hinderingly histologically historically hither +hitherto hoarsely home homeostatically homeward homewards homogeneously honestly +honorably honourably hopefully hopelessly horizontally horribly horridly +horrifyingly horseback horticulturally hospitably hostilely hotfoot hotly hourly +however huffily hugely hugger-mugger humanely humanly humbly humiliatingly +humorlessly humorously humourlessly hundredfold hungrily hurriedly huskily +hydraulically hydraulicly hygienically hyperbolically hypnotically +hypocritically hypothalamically hypothetically hysterically i.e. ib. ibid. +ibidem icily ideally identically identifiably ideographically ideologically +idiomatically idiotically idly idolatrously idyllically ie ignobly ignominiously +ignorantly ill illegally illegibly illegitimately illiberally illicitly +illogically illustriously imaginatively immaculately immaturely immeasurably +immediately immensely imminently immoderately immodestly immorally immovably +immunologically immutably impalpably impartially impassively impatiently +impeccably impenitently imperatively imperceptibly imperfectly imperially +imperiously impermissibly impersonally impertinently impetuously impiously +impishly implausibly implicitly imploringly impolitely importantly importunately +imposingly impossibly impotently impracticably imprecisely impregnably +impressively improbably impromptu improperly improvidently imprudently +impudently impulsively in inaccessibly inaccurately inadequately inadvertently +inadvisably inalienably inanely inappropriately inarticulately inattentively +inaudibly inaugurally inauspiciously incautiously incessantly incestuously +incidentally incisively incognito incoherently incomparably incompatibly +incompetently incompletely inconceivably inconclusively incongruously +inconsequentially inconsequently inconsiderately inconsistently inconspicuously +incontrovertibly inconveniently incorrectly increasingly incredibly +incredulously incriminatingly incurably indecently indecisively indecorously +indeed indefatigably indefinitely indelibly independently indescribably +indeterminably indifferently indigenously indignantly indirectly indiscreetly +indiscriminately indistinctly individualistically individually indolently +indoors indubitably indulgently industrially industriously ineffably +ineffectively ineffectually inefficaciously inefficiently inelegantly +ineloquently ineluctably ineptly inequitably inescapably inevitably inexactly +inexcusably inexhaustibly inexorably inexpediently inexpensively inexpertly +inexpressively inextricably infectiously infelicitously infernally infinitely +inflexibly influentially informally informatively infra infrequently ingeniously +ingenuously ingloriously ingratiatingly inherently inhospitably inhumanely +inimitably iniquitously initially injudiciously injuriously inland innately +innocently inoffensively inopportunely inordinately inorganically inquiringly +inquisitively insanely insatiably inscriptively inscrutably insecticidally +insecurely insensately insensibly insensitively inseparably inshore inside +insidiously insignificantly insincerely insinuatingly insipidly insistently +insofar insolently insomuch inspirationally instantaneously instantly instead +instinctively institutionally instructively insubstantially insufficiently +insultingly insuperably integrally intellectually intelligently intelligibly +intemperately intensely intensively intentionally intently interchangeably +interdepartmental interestingly intermediately interminably intermittently +internally internationally interracially interrogatively intimately intolerably +intolerantly intractably intradermally intramuscularly intransitively +intravenously intrepidly intricately intrinsically intuitively invariably +inventively inversely inveterate invidiously invincibly invisibly invitingly +involuntarily inward inwardly inwards irately ironically irrationally +irregardless irregularly irrelevantly irreparably irreproachably irresistibly +irresolutely irrespective irresponsibly irretrievably irreverently irreversibly +irrevocably irritably irritatingly isotropically item jaggedly jarringly +jauntily jealously jeeringly jejunely jerkily jestingly jocosely jocular jointly +jokingly jolly journalistically jovially joyfully joylessly joyously jubilantly +judicially judiciously jurisprudentially just justifiably justifiedly justly +keenly killingly kinaesthetically kinda kindly kinesthetically knavishly knee- +deep knee-high knowingly laboriously lackadaisically laconically lamely +lamentably landward landwards langsyne languidly languorously large largely +largo lasciviously last lastingly lastly late lately later laterally latterly +laudably laughably laughingly lavishly lawfully lawlessly laxly lazily learnedly +least leastways leastwise leeward left legally legato legibly legislatively +legitimately leisurely lengthily lengthways lengthwise leniently lento less +lethargically lewdly lexically liberally licentiously licitly lief lifelessly +light light-handedly light-headedly light-heartedly lightly lightsomely likely +likewise limitedly limnologically limpidly limply lineally linearly lingeringly +lingually linguistically lispingly listlessly literally literatim little live +lividly locally loftily logarithmically logically logogrammatically long long- +windedly longer longest longingly longitudinally longways longwise loose loosely +lopsidedly loquaciously lots loud loudly lovingly low loweringly lowest loyally +lucidly luckily ludicrously lugubriously lukewarmly luridly lusciously lustfully +lustily luxuriantly luxuriously lyrically macroscopically madly magically +magisterially magnanimously magnetically magnificently magniloquently mainly +majestically maladroitly malapropos malevolently maliciously malignantly +malignly man-to-man manageably managerially mandatorily manfully mangily +maniacally manifestly manipulatively manly manually marginally markedly +martially marvellously marvelously masochistically massively masterfully +materialistically materially maternally mathematically matrilineally maturely +mawkishly maximally maybe mayhap meagerly meagrely meanderingly meaningfully +meanly meanspiritedly meantime meanwhile measurably measuredly mechanically +mechanistically medially medically medicinally meditatively meekly mellow +mellowingly mellowly melodically melodiously melodramatically memorably +menacingly mendaciously menially mentally mercifully mercilessly merely +meretriciously meritoriously merrily messily metabolically metaphorically +metaphysically meteorologically methodically methodologically meticulously +metonymically metrically microscopically middling midmost midships midway +midweek mightily mighty mildly militarily millionfold mincingly mindfully +mindlessly minimally ministerially minutely miraculously mirthfully +mischievously miserably misleadingly mistakenly mistily mistrustfully mockingly +moderately modestly modishly moistly molto momentarily momently momentously +monaurally monolingually monosyllabically monotonously monstrously monthly +moodily moonily morally morbidly mordaciously more moreover morosely +morphologically mortally most mostly motherly motionlessly mournfully movingly +much mulishly multifariously multilaterally multiplicatively multiply mundanely +municipally munificently murderously murkily musically musicologically musingly +mutely mutually mysteriously mystically naively nakedly namely narrow-mindedly +narrowly nasally nastily nationally nationwide nattily naturally naughtily nay +ne'er near nearby nearer nearest nearly neatly nebulously necessarily needfully +needlessly needs nefariously negatively neglectfully negligently nervelessly +nervily nervously neurobiological neurotically never nevermore nevertheless new +newly next nicely nigh nigher nighest nightly nimbly ninefold no nobly +nocturnally nohow noiselessly noisily nominally non non-verbally nonchalantly +noncompetitively noncomprehensively none nonetheless nonlexically +nonspecifically nonstop nonverbally nonviolently nor'-east nor'-nor'-east +nor'-nor'-west nor'-west normally north north-east north-northeast north- +northwest north-west northeast northeastward northeastwardly northerly northward +northwards northwest northwestward northwestwardly nostalgically not notably +nothing noticeably notoriously notwithstanding now nowadays nowhere nowise +noxiously numbly numerically nutritionally nuttily o'clock o'er o.k. obdurately +obediently objectionably objectively obligatorily obligingly obliquely +obnoxiously obscenely obscurely obsequiously observably observantly observingly +obsessionally obsessively obstinately obstreperously obstructively obtrusively +obtusely obviously occasionally oddly odiously off off-hand off-the-clock +offensively offhand offhanded offhandedly officially officiously offshore +offside offstage oft often oftener oftentimes ofttimes ok okay ominously on once +one-on-one one-sidedly onerously only onshore onstage onward onwards opaquely +openly operationally operatively opportunely opposite oppositely oppressively +optically optimally optimistically optionally opulently orad orally ordinarily +organically organizationally originally ornamentally ornately osmotically +ostensibly ostentatiously otherwise out outdoors outlandishly outrageously +outright outside outspokenly outstandingly outward outwardly outwards over +overbearingly overboard overhead overleaf overly overmuch overnight +overpoweringly oversea overseas overside overtime overtly overwhelmingly +owlishly p.a. p.m. pacifically pacifistically painfully painlessly painstakingly +palatably palely pallidly palmately palpably paradoxically parasitically +pardonably parentally parenterally parenthetically parochially part part-time +partially particularly partly passably passim passing passionately passively +past pat patchily patently paternally pathetically pathogenically pathologically +patiently patrilineally patriotically patronisingly patronizingly peaceably +peacefully peculiarly pedagogically pedantically peevishly pejoratively pell- +mell pellucidly penally penetratingly penetratively penitentially penitently +pensively penuriously peradventure perceptibly perceptively perceptually +perchance peremptorily perennially perfectly perfidiously perforce perfunctorily +perhaps perilously periodically peripherally perkily permanently permissibly +permissively perniciously perpendicularly perpetually perplexedly perseveringly +persistently person-to-person personally perspicuously persuasively +pertinaciously pertinently pertly pervasively perversely pessimistically pettily +pettishly petulantly pharmacologically phenomenally philanthropically +philatelically philosophically phlegmatically phonemic phonetically +photoelectrically photographically photometrically phylogenetically physically +physiologically pianissimo piano pickaback pictorially picturesquely piecemeal +piercingly pig-a-back pig-headedly piggishly piggyback pinnately piously piping +piquantly piratically pit-a-pat piteously pithily pitiably pitifully pitilessly +pitter-patter pitty-pat pitty-patty pityingly pizzicato placatingly placidly +plaguey plaguily plaguy plain plainly plaintively plastically plausibly +playfully pleadingly pleasantly please pleasingly pleasurably plenarily +plenteously plentifully plenty ploddingly plop pluckily plum plumb plump plunk +pneumatically poetically poignantly point-blank pointedly pointlessly +poisonously polemically politely politically polygonally polyphonically +polysyllabically pompously ponderously poorly pop popishly popularly +pornographically portentously positively possessively possibly post-free post- +haste post-paid posthumously postoperatively potentially potently poutingly +powerful powerfully powerlessly practicably practically pragmatically +praiseworthily pre-eminently precariously precedentedly precious preciously +precipitately precipitously precisely precociously predicatively predictably +predominantly preeminently preferably preferentially prematurely preponderantly +prepositionally preposterously presciently presentably presently presidentially +pressingly prestissimo presto presumably presumptively presumptuously +pretentiously preternaturally prettily pretty previously priggishly primarily +primitively primly principally prissily privately privily prn pro +probabilistically probably problematically prodigally prodigiously productively +profanely professedly professionally professorially proficiently profitably +profitlessly profligately profoundly profusely progressively prohibitively +prominently promiscuously promisingly promptly pronto properly prophetically +propitiously proportionally proportionately prosaically prosily prosperously +protectively protractedly proudly provably proverbially providentially +providently provincially provisionally provocatively provokingly prudently +prudishly pruriently pryingly psychically psychologically publically publicly +puckishly pugnaciously punctiliously punctually pungently punily punishingly +punitively punitorily purely puritanically purportedly purposefully +purposelessly purposely pusillanimously pyramidically quaintly qualitatively +quantitatively quarterly quaveringly queasily queerly querulously questionably +questioningly quick quicker quickest quickly quiet quietly quite quixotically +quizzically racially racily radially radiantly radically radioactively raffishly +raggedly rakishly rallentando ramblingly rampantly randomly rapaciously rapidly +rapturously rarely rashly raspingly rather rationally rattling raucously +ravenously raving ravingly ravishingly readably readily real realistically +really rearward rearwards reasonably reassuringly rebelliously rebukingly +recently receptively reciprocally recklessly recognizably recurrently red-handed +redly reflectively reflexly refreshfully refreshingly regally regardless +regimentally regionally regretfully regrettably regularly relatively +relativistically relentlessly relevantly reliably religiously reluctantly +remarkably reminiscently remorsefully remorselessly remotely rent-free +repeatedly repellently repellingly repentantly repetitively reportedly +reprehensibly reprehensively reproachfully reproducibly reprovingly repulsively +reputably reputedly resentfully reservedly residentially resignedly resolutely +resoundingly resourcefully respectably respectfully respectively resplendently +responsibly restfully restively restlessly restrictively retail retentively +reticently retroactively retrospectively revengefully reverentially reverently +reversely reversibly revoltingly rewardingly rhapsodically rhetorically +rhythmically richly ridiculously right right-down righteously rightfully rightly +rigidly rigorously riotously ripely riskily ritually roaring robustly roguishly +rollickingly romantically roomily rotationally rottenly rotundly rough roughly +round round-arm roundly routinely rowdily royally rudely ruefully ruggedly +ruinously rurally ruthlessly sacredly sacrilegiously sadly safely sagaciously +sagely salaciously sanctimoniously sanely sapiently sarcastically sardonically +satirically satisfactorily satisfyingly saucily savagely scandalously scantily +scarce scarcely scarily scathingly scenically sceptically schematically +schismatically scholastically scienter scientifically scoffingly scorching +scornfully scrappily screakily screamingly scrumptiously scrupulously +scurrilously scurvily searchingly seasonably seasonally seaward seawards second +second-best secondarily secondhand secondly secretively secretly securely +sedately seductively sedulously seemingly seldom selectively self-conceitedly +self-consciously self-evidently self-indulgently self-righteously selfishly +selflessly semantically semiannually semimonthly semiweekly sensationally +senselessly sensibly sensitively sensually sensuously sententiously +sentimentally separably separately sequentially serenely serially seriatim +seriously servilely sevenfold seventhly severally severely sexually shabbily +shaggily shakily shallowly shambolically shamefacedly shamefully shamelessly +shapelessly sharp sharply sheepishly sheer shiftily shockingly shoddily short +shortly shoulder-to-shoulder showily shrewdly shrewishly shrilly shudderingly +shyly sic sickeningly sidearm sidelong sidesaddle sidesplittingly sideward +sidewards sideway sideways sidewise signally significantly silently silkily +similarly simperingly simply simultaneously sincerely single-handed single- +handedly single-mindedly singly singularly sinuously sinusoidally sixfold +sixthly skeptically sketchily skew-whiff skilfully skillfully skimpily +skittishly sky-high skyward skywards slackly slam-bang slanderously slangily +slantingly slantways slantwise slap slap-bang slapdash slavishly sleekly +sleepily sleeplessly slenderly slickly slightingly slightly slimly slopingly +sloppily slouchily slouchingly slow slower slowest slowly sluggishly slyly smack +small small-mindedly smarmily smartly smash smashingly smilingly smolderingly +smoothly smoulderingly smugly smuttily snappishly sneakily sneakingly sneeringly +snidely snobbishly snootily snugly so so-so soaking sobbingly soberly sociably +socially sociobiologically socioeconomically sociolinguistically sociologically +soft softly solely solemnly solicitously solidly solitarily solo somberly +sombrely some someday somehow someplace sometime sometimes someway someways +somewhat somewhere somnolently sonorously soon sooner soonest soothingly sopping +sordidly sorely sorrowfully sottishly sou'-east sou'-sou'-east sou'-sou'-west +sou'west soughingly soulfully soullessly soundlessly soundly sourly south south- +east south-southeast south-southwest south-west southeast southeastward +southeastwardly southerly southward southwards southwest southwestward +southwestwardly spaceward spacewards spaciously sparely sparingly sparsely +spasmodically spatially specially specifically speciously spectacularly +spectrographically speculatively speechlessly speedily spherically spicily +spinally spirally spiritedly spiritually spitefully splendidly spontaneously +spookily sporadically sportingly sportively spotlessly sprucely spuriously +squalidly square squarely squeamishly stably staccato staggeringly stagily +staidly stanchly standoffishly stark starkly startlingly statistically +statutorily staunchly steadfastly steadily steady stealthily steaming steeply +stepwise stereotypically sternly stertorously stickily stiff stiffly still +stiltedly stingily stirringly stochastically stock-still stockily stodgily +stoically stolidly stonily stormily stoutly stragglingly straight straight- +backed straightaway straightforwardly straightway strangely strategically +strenuously strictly stridently strikingly stringently strongly structurally +stubbornly studiously stuffily stunningly stupendously stupidly sturdily +stylishly stylistically suavely subconsciously subcutaneously subjectively +sublimely submissively subsequently subserviently substantially subtly +successfully successively succinctly such suddenly sufficiently suggestively +suitably sulkily sullenly sultrily summarily sumptuously sunnily super superbly +superciliously superficially superfluously superlatively supernaturally +superstitiously supinely supposedly supra supremely sure surely surgically +surlily surpassingly surprisedly surprisingly surreptitiously suspiciously +sweepingly sweet sweetly swiftly swimmingly syllabically symbiotically +symbolically symmetrically sympathetically symptomatically synchronously +synergistically synonymously syntactically synthetically systematically tacitly +taciturnly tactfully tactically tactlessly tactually talkatively talkily tamely +tandem tangentially tangibly tantalizingly tardily tartly tastefully tastelessly +tastily tattily tauntingly tautly tawdrily taxonomically tearfully teasingly +technically technologically tediously telegraphically telescopically tellingly +temperamentally temperately temporally temporarily temptingly tenaciously +tendentiously tenderly tenfold tensely tentatively tenthly tenuously tepidly +terminally terrestrially terribly terrifically territorially tersely testily +tetchily thankfully theatrically thematically then thence thenceforth +theologically theoretically therapeutically there thereabout thereabouts +thereafter thereby therefor therefore therefrom therein thereinafter thereof +thereon thereto theretofore thereunder therewith therewithal thermally +thermodynamically thermostatically thick thickly thievishly thin thinly third +thirdhand thirdly thirstily thither thoroughly though thoughtfully thoughtlessly +thousand-fold threateningly threefold thrice thriftily thriftlessly through +throughout thus thusly tidily tight tightly timely timidly timorously tip-top +tiptoe tiredly tirelessly tiresomely today toe-to-toe together tolerably +tolerantly tomorrow tonelessly tongue-in-cheek tonight too topically +topographically topologically toppingly topsy-turvily topsy-turvy torpidly +tortuously torturously totally touchily touchingly toughly traditionally +tragically traitorously tranquilly transcendentally transiently transitionally +transitively transitorily transparently transversally transversely treacherously +treasonably tremendously tremulously trenchantly trepidly trickily trimly +trippingly tritely triumphantly trivially tropically truculently true truly +trustfully trustingly truthfully tumultuously tunefully tunelessly turbulently +turgidly tutorially twice twirlingly twofold typically typographically +ulteriorly ultimately ultrasonically unabashedly unacceptably unaccompanied +unaccountably unachievably unadvisedly unalterably unambiguously unambitiously +unanimously unappealingly unappreciatively unarguably unashamedly unassailably +unassertively unassumingly unattainably unattractively unavoidably unawares +unbearably unbecomingly unbeknown unbeknownst unbelievably unbelievingly +unblinkingly unblushingly uncannily unceasingly unceremoniously uncertainly +unchangeably uncharacteristically unchivalrously uncivilly unclearly unco +uncomfortably uncommonly uncomparably uncomplainingly uncompromisingly +unconcernedly unconditionally unconsciously unconstitutionally uncontrollably +uncontroversially unconventionally unconvincingly uncouthly uncritically +unctuously undecipherably undemocratically undeniably undependably under +underarm underfoot underground underhand underhandedly underneath understandably +understandingly undeservedly undesirably undiplomatically undisputedly +undoubtedly undramatically unduly uneasily unemotionally unendingly +unenergetically unenthusiastically unequally unequivocally unerringly +unethically unevenly uneventfully unexcitingly unexpectedly unfailingly unfairly +unfaithfully unfalteringly unfashionably unfavorably unfavourably unfeelingly +unfeignedly unforgettably unforgivably unforgivingly unfortunately ungracefully +ungraciously ungrammatically ungratefully ungrudgingly unhappily unharmoniously +unhelpfully unhesitatingly unhurriedly unhygienically uniformly unilaterally +unimaginably unimaginatively unimpeachably unimpressively uninformatively +uninstructively unintelligently unintelligibly unintentionally uninterestingly +uninterruptedly uninvitedly uniquely unitedly universally unjustifiably unjustly +unkindly unknowingly unlawfully unluckily unmanageably unmanfully unmanly +unmelodiously unmemorably unmercifully unmindfully unmistakably unmusically +unnaturally unnecessarily unnoticeably unobtrusively unofficially unoriginally +unpalatably unpardonably unpatriotically unpleasantly unprecedentedly +unpredictably unpretentiously unproductively unprofitably unpropitiously +unqualifiedly unquestionably unquestioningly unquietly unreadably +unrealistically unreasonably unreasoningly unrecognisable unrecognizably +unrelentingly unreliably unremarkably unrepentantly unreproducibly unreservedly +unrestrainedly unrighteously unromantically unsatiably unsatisfactorily +unscientifically unscrupulously unseasonably unselfconsciously unselfishly +unsentimentally unshakably unsmilingly unsociably unsparingly unspeakably +unsportingly unsteadily unstintingly unsuccessfully unsuitably unsuspectingly +unswervingly unsymmetrically unsympathetically unsystematically unthinkably +unthinking unthinkingly untidily untimely untruly untruthfully untypically +ununderstandably unusually unutterably unwantedly unwarily unwarrantably +unwaveringly unwillingly unwisely unwittingly unwontedly unworthily up up- +country uphill uppermost uppishly uprightly upriver uproariously upstage +upstairs upstate upstream uptown upward upwardly upwards upwind urbanely +urgently usefully uselessly usually usuriously utterly uxoriously vacantly +vacuously vaguely vainly valiantly validly valorously vanishingly vapidly +variably variously vastly vauntingly vehemently venally vengefully venomously +ventrally verbally verbatim verbosely verily vertically very vexatiously +vicariously viciously victoriously videlicet vigilantly vigorously vilely +vindictively violently virtually virtuously virulently vis-a-vis viscerally +viscidly visibly visually vitally vitriolically vivace vivaciously vividly viz. +vocally vocationally vociferously volcanically volitionally volubly +volumetrically voluntarily voluptuously voraciously voyeuristically vulgarly +vulnerably wackily wafer-thin waggishly waist-deep waist-high wanly wantonly +warily warm warmly wastefully watchfully way weakly wealthily wearily weekly +weightily weirdly well well-nigh well-timed west westerly westward westwards +whacking wheezily wheezingly whence wheresoever wherever whimsically whole +wholeheartedly wholesale wholesomely wholly whopping wickedly wide widely wild +wildly wilfully willfully willingly willy-nilly windily windward winsomely +wisely wishfully wistfully withal witheringly within wittily wittingly woefully +wolfishly wonderfully wonderingly wondrous wondrously woodenly wordily +wordlessly worriedly worryingly worse worst worthily worthlessly wrathfully +wretchedly wrong wrongfully wrongheadedly wrongly wryly yea yeah yearly +yearningly yesterday yet yieldingly yon yonder youthfully zealously zestfully +zestily zigzag +""".split()) diff --git a/spacy/en/lemmatizer/_adverbs_irreg.py b/spacy/en/lemmatizer/_adverbs_irreg.py new file mode 100644 index 000000000..2e9618e35 --- /dev/null +++ b/spacy/en/lemmatizer/_adverbs_irreg.py @@ -0,0 +1,13 @@ +# coding: utf8 +from __future__ import unicode_literals + + +ADVERBS_IRREG = { + "best": ("well",), + "better": ("well",), + "deeper": ("deeply",), + "farther": ("far",), + "further": ("far",), + "harder": ("hard",), + "hardest": ("hard",) +} diff --git a/spacy/en/lemmatizer/_lemma_rules.py b/spacy/en/lemmatizer/_lemma_rules.py new file mode 100644 index 000000000..d32aca38b --- /dev/null +++ b/spacy/en/lemmatizer/_lemma_rules.py @@ -0,0 +1,43 @@ +# coding: utf8 +from __future__ import unicode_literals + + +ADJECTIVE_RULES = [ + ["er", ""], + ["est", ""], + ["er", "e"], + ["est", "e"] +] + + +NOUN_RULES = [ + ["s", ""], + ["ses", "s"], + ["ves", "f"], + ["xes", "x"], + ["zes", "z"], + ["ches", "ch"], + ["shes", "sh"], + ["men", "man"], + ["ies", "y"] +] + + +VERB_RULES = [ + ["s", ""], + ["ies", "y"], + ["es", "e"], + ["es", ""], + ["ed", "e"], + ["ed", ""], + ["ing", "e"], + ["ing", ""] +] + + +PUNCT_RULES = [ + ["“", "\""], + ["”", "\""], + ["\u2018", "'"], + ["\u2019", "'"] +] diff --git a/spacy/en/lemmatizer/_nouns.py b/spacy/en/lemmatizer/_nouns.py new file mode 100644 index 000000000..8d6af1a97 --- /dev/null +++ b/spacy/en/lemmatizer/_nouns.py @@ -0,0 +1,7113 @@ +# coding: utf8 +from __future__ import unicode_literals + + +NOUNS = set(""" +'hood .22 0 1 1-dodecanol 1-hitter 10 100 1000 10000 100000 1000000 1000000000 +1000000000000 11 11-plus 12 120 13 14 144 15 1530s 16 17 1728 1750s 1760s 1770s +1780s 1790s 18 1820s 1830s 1840s 1850s 1860s 1870s 1880s 1890s 19 1900s 1920s +1930s 1940s 1950s 1960s 1970s 1980s 1990s 2 2-hitter 20 20/20 21 22 23 24 24/7 +25 26 27 28 29 3 3-d 3-hitter 30 3d 3tc 4 4-hitter 40 401-k 4to 4wd 5 5-hitter +5-hydroxytryptamine 50 500 6 60 7 70 78 8 80 8vo 9 9-11 9/11 90 a a'man a-bomb +a-horizon a-line a-list a-team a.e. aa aaa aachen aalborg aalii aalst aalto aar +aardvark aardwolf aare aarhus aaron aarp aas aave ab aba abaca abacus abadan +abalone abamp abampere abandon abandonment abarticulation abasement abashment +abasia abatement abatis abator abattis abattoir abaya abb abbacy abbe abbess +abbey abbot abbreviation abbreviator abc abc's abcoulomb abcs abdias abdication +abdicator abdomen abdominal abdominocentesis abdominoplasty abdominousness +abducens abducent abduction abductor abecedarian abecedarius abel abelard abele +abelia abelmoschus abelmosk abenaki aberdare aberdeen aberrance aberrancy +aberrant aberration abetalipoproteinemia abetment abettal abetter abettor +abeyance abfarad abhenry abhorrence abhorrer abidance abidjan abience abies +abila abilene ability abiogenesis abiogenist abiotrophy abjection abjuration +abjurer abkhas abkhasian abkhaz abkhazia abkhazian ablactation ablation ablative +ablaut able-bodiedism able-bodism ableism ablepharia ablism abls ablution abm +abnaki abnegation abnegator abnormalcy abnormality abo abocclusion abode abohm +abolishment abolition abolitionism abolitionist abomasum abomination abominator +abor aboriginal aborigine abort aborticide abortifacient abortion abortionist +abortus aboulia about-face above abracadabra abrachia abradant abrader abraham +abramis abrasion abrasive abrasiveness abreaction abridgement abridger +abridgment abrocoma abrocome abrogation abrogator abronia abruption abruptness +abruzzi abs abscess abscissa abscission absconder abscondment abseil abseiler +absence absentee absenteeism absentmindedness absinth absinthe absolute +absoluteness absolution absolutism absolutist absolver absorbance absorbate +absorbency absorbent absorber absorptance absorption absorptivity abstainer +abstemiousness abstention abstinence abstinent abstract abstractedness +abstracter abstraction abstractionism abstractionist abstractness abstractor +abstruseness abstrusity absurd absurdity absurdness abudefduf abuja abukir +abulia abundance abuse abuser abutilon abutment abutter abvolt abwatt abydos +abyla abysm abyss abyssinia abyssinian ac acacia academe academia academic +academician academicianship academicism academism academy acadia acadian +acalypha acantha acanthaceae acanthion acanthisitta acanthisittidae +acanthocephala acanthocephalan acanthocereus acanthocybium acanthocyte +acanthocytosis acantholysis acanthoma acanthophis acanthopterygian +acanthopterygii acanthoscelides acanthosis acanthuridae acanthurus acanthus +acapnia acapulco acaracide acardia acariasis acaricide acarid acaridae +acaridiasis acarina acarine acariosis acarophobia acarus acaryote acatalectic +acataphasia acathexia acathexis acc accelerando acceleration accelerator +accelerometer accent accenting accentor accentuation acceptability +acceptableness acceptance acceptation acceptor access accessary accessibility +accession accessory accho acciaccatura accidence accident accidental accipiter +accipitridae accipitriformes acclaim acclamation acclimation acclimatisation +acclimatization acclivity accolade accommodation accommodator accompaniment +accompanist accompanyist accomplice accomplishment accord accordance accordion +accordionist accouchement accoucheur accoucheuse account accountability +accountancy accountant accountantship accounting accouterment accoutrement accra +accreditation accretion accroides accrual accruement acculturation accumulation +accumulator accuracy accusal accusation accusative accused accuser ace +acebutolol acedia acephalia acephalism acephaly acer aceraceae acerbity acerola +acervulus acetabulum acetal acetaldehyde acetaldol acetamide acetaminophen +acetanilid acetanilide acetate acetin acetone acetonemia acetonuria +acetophenetidin acetphenetidin acetum acetyl acetylation acetylcholine acetylene +achaea achaean achaian ache achene acheron acherontia acheson acheta +achievability achievement achiever achillea achilles achimenes aching achira +achlorhydria achoerodus acholia achomawi achondrite achondroplasia +achondroplasty achras achromasia achromaticity achromatin achromatism achromia +achromycin achylia acicula acid acidemia acidification acidimetry acidity +acidophil acidophile acidophilus acidosis acidulousness acinonyx acinos acinus +acipenser acipenseridae ack-ack ackee acknowledgement acknowledgment aclant acme +acne acnidosporidia acocanthera acokanthera acolyte aconcagua aconite aconitum +acoraceae acorea acores acorn acorus acousma acoustic acoustician +acousticophobia acoustics acquaintance acquaintanceship acquiescence acquirement +acquirer acquiring acquisition acquisitiveness acquittal acquittance acragas +acrasiomycetes acre acre-foot acreage acres acridid acrididae acridity acridness +acridotheres acrilan acrimony acris acroanaesthesia acroanesthesia acrobat +acrobates acrobatics acrocarp acrocarpus acrocephalus acrocephaly acroclinium +acrocomia acrocyanosis acrodont acrogen acrolein acromegalia acromegaly +acromicria acromikria acromion acromphalus acromyotonia acronym acrophobia +acrophony acropolis acropora acrosome acrostic acrostichum acrylamide acrylate +acrylic acrylonitrile acrylonitrile-butadiene-styrene act actaea acth actias +actifed actin actinaria acting actinia actinian actiniaria actiniarian actinide +actinidia actinidiaceae actiniopteris actinism actinium actinoid actinolite +actinomeris actinometer actinometry actinomyces actinomycetaceae actinomycetales +actinomycete actinomycin actinomycosis actinomyxidia actinomyxidian actinon +actinopod actinopoda actinotherapy actinozoa actinozoan action actitis actium +activase activating activation activator active activeness activewear activism +activist activity actomyosin actor actress acts actualisation actuality +actualization actuary actuation actuator acuity acular aculea aculeus acumen +acupressure acupuncture acute acuteness acyclovir acyl acylation acylglycerol ad +ad-lib ada ada-scid adactylia adactylism adactyly adad adage adagio adalia adam +adam-and-eve adamance adamant adams adana adansonia adapa adapid adapin +adaptability adaptation adapter adaption adaptor adar add add-in add-on addax +addend addendum adder addict addiction addition additive addle-head addlehead +address addressee addressograph adducer adducing adduct adduction adductor ade +adelaide adelges adelgid adelgidae adelie aden adenanthera adenauer adenine +adenitis adenium adenocarcinoma adenohypophysis adenoid adenoidectomy adenoma +adenomegaly adenomyosarcoma adenomyosis adenopathy adenosine adenosis adenota +adenovirus adept adeptness adequacy adequateness adermin adesite adh adhd +adherence adherent adhesion adhesive adhesiveness adhocracy adiantaceae adiantum +adience adieu adige adios adiposeness adiposis adiposity adirondacks adit aditi +aditya adjacency adjective adjournment adjudication adjudicator adjunct +adjunction adjuration adjuster adjustment adjustor adjutant adjuvant adlumia +adman admass administration administrator administrivia admirability +admirableness admiral admiralty admiration admirer admissibility admission +admittance admixture admonisher admonishment admonition adnexa adnoun ado adobe +adobo adolescence adolescent adonic adonis adoptee adopter adoption adorability +adorableness adoration adorer adornment adoxography adp adps adrenal +adrenalectomy adrenalin adrenaline adrenarche adrenergic adrenocorticotrophin +adrenocorticotropin adrenosterone adrian adrianople adrianopolis adriatic +adroitness adsorbate adsorbent adsorption adulation adulator adult adulterant +adulteration adulterator adulterer adulteress adultery adulthood adumbration +advance advancement advancer advantage advantageousness advection advent +adventism adventist adventitia adventure adventurer adventuress adventurism +adventurousness adverb adverbial adversary adversity advert advertence +advertency advertisement advertiser advertising advertizement advertizer +advertizing advertorial advice advil advisability advisee advisement adviser +advisor advisory advocacy advocate advocator advowson adynamia adz adze adzhar +adzharia aec aeciospore aecium aedes aegates aegean aegiceras aegilops aegina +aegir aegis aegisthus aegospotami aegospotamos aegypiidae aegypius +aegyptopithecus aeneas aeneid aengus aeolia aeolian aeolic aeolis aeolus aeon +aeonium aepyceros aepyornidae aepyorniformes aepyornis aeration aerator aerial +aerialist aerides aerie aerobacter aerobatics aerobe aerobics aerobiosis +aerodontalgia aerodrome aerodynamics aeroembolism aerofoil aerogenerator +aerogram aerogramme aerolite aerology aeromechanics aeromedicine aeronaut +aeronautics aerophagia aerophilately aerophile aerophyte aeroplane aerosol +aerospace aertex aery aeschylus aeschynanthus aesculapius aesculus aesir aesop +aesthesia aesthesis aesthete aesthetic aesthetician aesthetics aestivation +aether aethionema aethusa aetiologist aetiology aetobatus affability affableness +affair affaire affairs affect affectation affectedness affection +affectionateness affenpinscher afferent affiant affidavit affiliate affiliation +affine affinity affirmation affirmative affirmativeness affirmed affirmer affix +affixation afflatus affliction affluence affluent afforestation affray affricate +affrication affricative affright affront affusion afghan afghani afghanistan +afghanistani afibrinogenemia aficionado afisr afl afl-cio aflatoxin aflaxen afp +aframomum afrasian africa african african-american africander afrikaans +afrikander afrikaner afrl afro afro-american afro-asiatic afro-wig afroasiatic +afrocarpus afropavo afspc after-shave afterbirth afterburner aftercare afterdamp +afterdeck aftereffect afterglow afterimage afterlife aftermath afternoon +afterpains afterpiece afters aftersensation aftershaft aftershock aftertaste +afterthought afterworld ag aga agal agalactia agalactosis agalinis agama +agamemnon agamete agamid agamidae agammaglobulinemia agamogenesis agapanthus +agape agapornis agar agar-agar agaric agaricaceae agaricales agaricus agassiz +agastache agate agateware agathis agavaceae agave agdestis agdistis age aged +agedness agee ageing ageism agelaius agelessness agency agenda agendum agene +agenesia agenesis agent agent-in-place agerasia ageratina ageratum aggeus +agglomerate agglomeration agglomerator agglutination agglutinin agglutinogen +aggrandisement aggrandizement aggravation aggravator aggregate aggregation +aggregator aggression aggressiveness aggressor aggro agha aghan agility +agincourt aging agio agiotage agism agitation agitator agitprop agkistrodon +aglaia aglaomorpha aglaonema aglet agnail agnate agnatha agnathan agnation agni +agnomen agnosia agnostic agnosticism agon agonidae agonist agonus agony agora +agoraphobia agouti agra agranulocytosis agranulosis agrapha agraphia +agreeability agreeableness agreement agribusiness agricola agriculturalist +agriculture agriculturist agrigento agrimonia agrimony agriocharis agrippa +agrippina agrobacterium agrobiology agrology agromania agronomist agronomy +agropyron agrostemma agrostis agrypnia agua aguacate ague agueweed ahab ahem +ahimsa ahpcrc ahriman ahuehuete ahura ahvenanmaa ai aiai aid aide aide-de-camp +aide-memoire aides aidoneus aids aigina aiglet aigret aigrette aiguilette aiken +aikido ail ailanthus aileron ailey ailment ailurophobia ailuropoda ailuropodidae +ailurus aim aimlessness aioli air air-intake air-sleeve airbrake airbrush +airburst airbus aircraft aircraftman aircraftsman aircrew aircrewman airdock +airdrome airdrop aire airedale airfare airfield airflow airfoil airforce +airframe airgun airhead airiness airing airlift airline airliner airlock airmail +airmailer airman airmanship airplane airport airpost airs airscrew airship +airsickness airspace airspeed airstream airstrip airwave airway airwoman +airworthiness aisle aitchbone aix aix-la-chapelle aizoaceae ajaia ajax ajuga ak +akaba akan akaryocyte akaryote akee aken akeridae akha akhbari akhenaten +akhenaton akinesia akinesis akka akkadian akko akmola akron aku akvavit akwa'ala +al al-asifa al-fatah al-hakim al-haytham al-hudaydah al-iraq al-jihad al-ma'unah +al-magrib al-muhajiroun al-mukalla al-qa'ida al-qaeda al-qaida al-qur'an al- +tawhid al-ummah ala alabama alabaman alabamian alabaster alacrity aladdin alalia +alamo alanine alar alaric alarm alarmism alarmist alarum alaska alaskan alastrim +alauda alaudidae alb albacore albania albanian albany albatrellus albatross +albedo albee albers albert alberta alberti albigenses albigensianism albinism +albino albion albite albizia albizzia alborg albuca albuginaceae albuginea +albugo albula albulidae album albumen albumin albuminoid albuminuria albuquerque +albuterol alca alcaeus alcahest alcaic alcalde alcapton alcaptonuria alcazar +alcea alcedinidae alcedo alcelaphus alces alchemist alchemy alcibiades alcidae +alcides alcohol alcoholic alcoholism alcott alcove alcyonacea alcyonaria alcyone +aldactone aldebaran aldehyde aldehyde-alcohol alder alderfly alderman aldohexose +aldol aldomet aldose aldosterone aldosteronism aldrovanda ale alecost alectis +alecto alectoria alectoris alectura alehoof alehouse alembic alendronate alep +aleph aleph-nought aleph-null aleph-zero alepisaurus aleppo alert alerting +alertness aletris aleurites aleurone aleut aleutian aleutians aleve alewife +alexander alexanders alexandria alexandrian alexandrine alexandrite alexia +alexic aleyrodes aleyrodidae alfalfa alfilaria alfileria alfred alga algae +algarobilla algarroba algarrobilla algebra algebraist alger algeria algerian +algerie algeripithecus algidity algiers algin algol algolagnia algology +algometer algometry algonkian algonkin algonquian algonquin algophilia +algophobia algorism algorithm algren alhacen alhambra alhazen ali alias alibi +alidad alidade alien alienage alienation alienator alienee alienism alienist +alienor alignment alikeness aliment alimentation alimony alinement aliquant +aliquot alir alisma alismales alismataceae alismatidae aliterate aliveness +aliyah alizarin alizarine alka-seltzer alkahest alkalemia alkali alkalimetry +alkalinity alkalinuria alkaliser alkalizer alkaloid alkalosis alkaluria alkane +alkanet alkapton alkaptonuria alkene alkeran alky alkyd alkyl alkylbenzene +alkylbenzenesulfonate alkyne all-rounder allah allamanda allantois allayer +allegation allegement alleghenies allegheny allegiance allegoriser allegorizer +allegory allegretto allegro allele allelomorph allemande allen allentown +allergen allergist allergology allergy alleviant alleviation alleviator alley +alleyway allgood allhallows allhallowtide alliaceae alliance alliaria allice +allies alligator alligatorfish alligatoridae allionia allioniaceae allis +alliteration alliterator allium allmouth alloantibody allocation allocator +allocution allogamy allograft allograph allomerism allometry allomorph allopathy +allopatry allophone allopurinol allosaur allosaurus allotment allotrope +allotropism allotropy allowance alloy allspice allure allurement allusion +allusiveness alluviation alluvion alluvium ally allyl alma-ata almanac almandine +almandite almaty almighty almond almoner almoravid alms alms-giving almsgiver +almsgiving alnico alnus alocasia aloe aloeaceae aloes aloha aloneness alonso +aloofness alopecia alopecurus alopex alopiidae alopius alosa alouatta alp alpaca +alpena alpenstock alpha alpha-adrenoceptor alpha-blocker alpha-interferon alpha- +lipoprotein alpha-naphthol alpha-tocopheral alphabet alphabetisation +alphabetiser alphabetization alphabetizer alphanumerics alphavirus alpinia +alpinism alpinist alprazolam alps als alsace alsatia alsatian also-ran alsobia +alsophila alstonia alstroemeria alstroemeriaceae alt altace altaic altair altar +altarpiece altazimuth alterability alteration altercation altering alternanthera +alternate alternation alternative alternator althaea althea altimeter altitude +alto altocumulus altogether altoist altoona altostratus altruism altruist alula +alum alumbloom alumina aluminate aluminium aluminum alumna alumnus alumroot +alundum alupent alveolar alveolitis alveolus alyssum alytes alzheimer's +alzheimers am amadavat amaethon amah amalgam amalgamation amalgamator amanita +amanuensis amaranth amaranthaceae amaranthus amarelle amaretto amarillo +amaryllidaceae amaryllis amastia amaterasu amateur amateurishness amateurism +amati amativeness amatungulu amauropelta amaurosis amazement amazon amazona +ambage ambages ambassador ambassadorship ambassadress amber amberbell amberboa +amberfish ambergris amberjack ambiance ambidexterity ambidextrousness ambience +ambiguity ambit ambition ambitiousness ambivalence ambivalency ambiversion amble +ambler ambloplites amblygonite amblyopia amblyrhynchus ambo amboyna ambrose +ambrosia ambrosiaceae ambulacrum ambulance ambulation ambulatory ambuscade +ambush ambusher ambystoma ambystomatidae ambystomid amd ameba amebiasis +amebiosis ameer ameiuridae ameiurus amelanchier amelia amelioration ameloblast +amelogenesis amen amen-ra amenability amenableness amendment amends amenia +amenities amenity amenorrhea amenorrhoea ament amentia amentiferae amercement +america american americana americanisation americanism americanization americium +amerind amerindian amethopterin amethyst ametria ametropia amex amhara amharic +amia amiability amiableness amianthum amicability amicableness amide amidopyrine +amigo amiidae amine amino aminoaciduria aminoalkane aminobenzine aminomethane +aminopherase aminophylline aminoplast aminopyrine aminotransferase amiodarone +amir amish amitosis amitriptyline amity amman ammeter ammine ammo ammobium +ammodytes ammodytidae ammonia ammoniac ammonification ammonite ammonium +ammoniuria ammonoid ammotragus ammunition amnesia amnesiac amnesic amnesty amnio +amniocentesis amnion amnios amniota amniote amobarbital amoeba amoebiasis +amoebida amoebina amoebiosis amon amon-ra amontillado amor amora amoralism +amoralist amorality amorist amorousness amorpha amorphophallus amortisation +amortization amos amount amour amoxicillin amoxil amoy amp amperage ampere +ampere-hour ampere-minute ampere-second ampere-turn ampersand amphetamine +amphibia amphibian amphibole amphibolips amphibolite amphibology amphiboly +amphibrach amphicarpa amphicarpaea amphictyony amphidiploid amphidiploidy +amphigory amphimixis amphineura amphioxidae amphioxus amphipod amphipoda +amphiprion amphisbaena amphisbaenia amphisbaenidae amphitheater amphitheatre +amphiuma amphiumidae amphora amphotericin ampicillin ampleness amplification +amplifier amplitude ampoule ampul ampule ampulla amputation amputator amputee +amrinone amsinckia amsonia amsterdam amulet amun amundsen amur amusd amusement +amygdala amygdalaceae amygdalin amygdaloid amygdalotomy amygdalus amyl amylase +amyloid amyloidosis amylolysis amylum amyotonia amyotrophia amyotrophy amytal +amyxia an ana anabantidae anabaptism anabaptist anabas anabiosis anabolism +anabrus anacanthini anacardiaceae anacardium anachronism anaclisis anacoluthia +anacoluthon anaconda anacyclus anadenanthera anadiplosis anaemia anaerobe +anaesthesia anaesthetic anaesthetist anagallis anagasta anaglyph anaglyphy +anagnost anagoge anagram anagrams anagyris anaheim analbuminemia analecta +analects analeptic analgesia analgesic analog analogist analogue analogy +analphabet analphabetic analphabetism analysand analyser analysis analyst +analyticity analyzer anamnesis anamorphism anamorphosis ananas ananias anapaest +anapest anaphalis anaphase anaphor anaphora anaphrodisia anaphylaxis anaplasia +anaplasmosis anaplasty anaprox anapsid anapsida anapurna anarchism anarchist +anarchy anarhichadidae anarhichas anarthria anas anasa anasarca anasazi anaspid +anaspida anastalsis anastatica anastigmat anastomosis anastomus anastrophe +anastylosis anathema anathematisation anathematization anatidae anatolia +anatolian anatomical anatomist anatomy anatotitan anatoxin anaxagoras +anaximander anaximenes ancestor ancestress ancestry anchor anchorage anchorite +anchorman anchorperson anchovy anchusa anchylosis ancient ancientness ancients +ancistrodon ancohuma ancylidae ancylostomatidae ancylus andalucia andalusia +andante andelmin andersen anderson andes andesite andira andiron andorra +andorran andradite andreaea andreaeales andrena andrenid andrenidae andrew +andrews andricus androecium androgen androgenesis androgeny androglossia +androgyne androgyny android andromeda androphobia andropogon androsterone +andryala andvari anecdote anecdotist aneides anemia anemography anemometer +anemometry anemone anemonella anemopsis anencephalia anencephaly anergy aneroid +anesthesia anesthesiologist anesthesiology anesthetic anesthetist anesthyl +anestrum anestrus anethum aneuploidy aneurin aneurism aneurysm ang angara angas +angel angelfish angelica angelim angelique angelology angelus anger angevin +angevine angiitis angina angiocardiogram angiocarp angioedema angiogenesis +angiogram angiography angiohemophilia angiologist angiology angioma angiopathy +angioplasty angiopteris angiosarcoma angioscope angiosperm angiospermae +angiotelectasia angiotensin angiotonin angle angledozer angler anglerfish +anglesea anglesey anglewing angleworm anglia anglian anglican anglicanism +anglicisation anglicism anglicization angling anglo-american anglo-catholicism +anglo-french anglo-indian anglo-norman anglo-saxon anglomania anglophil +anglophile anglophilia anglophobe anglophobia angola angolan angolese angora +angostura angraecum angrecum angriness angst angstrom anguidae anguilla +anguillan anguillidae anguilliformes anguillula anguis anguish angularity +angulation angus angwantibo anhedonia anhidrosis anhima anhimidae anhinga +anhingidae anhydride anhydrosis ani anigozanthus anil aniline anima +animadversion animal animal-worship animalcule animalculum animalia +animalisation animalism animality animalization animateness animation animatism +animator animatronics anime animism animist animosity animus anion anionic anise +aniseed aniseikonia anisette anisogamete anisogamy anisometropia anisoptera +anisotremus anisotropy anjou ankara ankle anklebone anklet anklets ankus +ankyloglossia ankylosaur ankylosaurus ankylosis anlage anna annaba annalist +annals annam annamese annamite annapolis annapurna anne annealing annelid +annelida annex annexa annexation annexe anniellidae annihilation annihilator +anniversary annon annona annonaceae annotating annotation annotator announcement +announcer annoyance annoyer annoying annual annualry annuitant annuity annulet +annulment annulus annum annunciation annunciator annwfn annwn ano anoa anobiidae +anode anodonta anodyne anoectochilus anoestrum anoestrus anogramma anointer +anointing anointment anole anolis anomala anomalist anomalopidae anomalops +anomalopteryx anomalousness anomaly anomia anomie anomiidae anomy anonym +anonymity anopheles anopheline anopia anoplura anorak anorchia anorchidism +anorchism anorectic anorexia anorexic anorgasmia anorthite anorthography +anorthopia anosmia anostraca anouilh anova anovulant anovulation anoxemia anoxia +anpu ans ansaid anselm anser anseres anseriformes anserinae anshar answer +answerability answerableness answerer ant antabuse antacid antagonism antagonist +antakiya antakya antalya antananarivo antapex antarctic antarctica antares +antbird ante anteater antecedence antecedency antecedent antechamber +antediluvian antedon antedonidae antefix antelope antenna antennaria +antennariidae antepenult antepenultima antepenultimate anterior anteriority +anteroom anthelminthic anthelmintic anthem anthemis anther antheraea anthericum +antheridiophore antheridium antheropeas antherozoid anthesis anthidium anthill +anthoceropsida anthoceros anthocerotaceae anthocerotales anthologist anthology +anthonomus anthony anthophyllite anthophyta anthozoa anthozoan anthracite +anthracosis anthrax anthriscus anthropocentricity anthropocentrism +anthropogenesis anthropogeny anthropoid anthropoidea anthropolatry +anthropologist anthropology anthropometry anthropomorphism anthropophagite +anthropophagus anthropophagy anthroposophy anthurium anthus anthyllis anti anti- +american anti-catholicism anti-inflammatory anti-intellectual anti-semite anti- +semitism antiacid antiaircraft antialiasing antiarrhythmic antibacterial +antibaryon antibiosis antibiotic antibody antic anticatalyst anticholinergic +anticholinesterase antichrist anticipant anticipation anticipator anticlimax +anticoagulant anticoagulation anticonvulsant anticyclone antidepressant +antidiabetic antidiarrheal antidiuretic antido antidorcas antidote antielectron +antiemetic antiepileptic antiestablishmentarianism antiestablishmentism +antifeminism antifeminist antiferromagnetism antiflatulent antifreeze antifungal +antigen antigone antigonia antigonus antigram antigua antiguan antihero +antihistamine antihypertensive antiknock antilepton antilles antilocapra +antilocapridae antilog antilogarithm antilope antimacassar antimalarial +antimatter antimeson antimetabolite antimicrobial antimicrobic antimony antimuon +antimycin antimycotic antineoplastic antineutrino antineutron antinode +antinomasia antinomian antinomianism antinomy antioch antioxidant antiparticle +antipasto antipathy antiperspirant antiphon antiphonal antiphonary antiphony +antiphrasis antipodal antipode antipodes antipope antiproton antiprotozoal +antipruritic antipsychotic antipyresis antipyretic antiquarian antiquark +antiquary antique antiquity antiredeposition antirrhinum antisemitism antisepsis +antiseptic antiserum antispasmodic antistrophe antisyphilitic antitauon +antithesis antitoxin antitrade antitrades antitussive antitype antivenene +antivenin antivert antiviral antler antlia antlion antofagasta antoninus +antonius antony antonym antonymy antrozous antrum antum antwerp antwerpen anu +anubis anunnaki anura anuran anuresis anuria anus anvers anvil anxiety +anxiolytic anxiousness anzac anzio aorist aorta aortitis aotus aoudad apache +apadana apalachicola apanage apar apartheid apartment apathy apatite apatosaur +apatosaurus apatura apc ape ape-man apeldoorn apennines aper apercu aperea +aperient aperitif aperture apery apex aphaeresis aphagia aphakia aphakic +aphanite aphasia aphasic aphasmidia aphelion apheresis aphesis aphid aphididae +aphidoidea aphis aphonia aphorism aphorist aphriza aphrodisia aphrodisiac +aphrodite aphrophora aphyllanthaceae aphyllanthes aphyllophorales apia apiaceae +apiarist apiary apiculture apiculturist apidae apios apis apishamore apium +aplacophora aplacophoran aplasia aplectrum aplite aplodontia aplodontiidae +aplomb aplysia aplysiidae apnea apoapsis apocalypse apocope apocrypha +apocynaceae apocynum apodeme apodemus apodidae apodiformes apoenzyme apogamy +apogee apogon apogonidae apoidea apojove apolemia apollinaire apollo apologetics +apologia apologist apologue apology apolune apomict apomixis apomorphine +aponeurosis apophasis apophatism apophthegm apophysis apoplexy apoptosis +aporocactus aposelene aposiopesis apostasy apostate apostle apostleship +apostrophe apothecary apothecium apothegm apotheosis appalachia appalachian +appalachians appalling appaloosa appanage apparatchik apparatus apparel +apparency apparentness apparition appeal appealingness appearance appearing +appeasement appeaser appellant appellation appellative appendage appendectomy +appendicectomy appendicitis appendicle appendicularia appendix appenzeller +apperception appetence appetency appetiser appetisingness appetite appetizer +appetizingness applauder applause apple applecart applejack applemint applesauce +applet appleton applewood appliance applicability applicant application +applicator applier applique appoggiatura appointee appointment apportioning +apportionment appositeness apposition appraisal appraiser appreciation +appreciativeness appreciator apprehender apprehension apprehensiveness +apprentice apprenticeship apprisal appro approach approachability approaching +approbation appropriateness appropriation appropriator approval approver +approving approximation appurtenance apr apraxia apresoline apricot april apron +apse apsis apsu aptenodytes apterygidae apterygiformes apteryx aptitude aptness +apulia apus aqaba aqua aqua-lung aquaculture aqualung aquamarine aquanaut +aquaphobia aquaplane aquarium aquarius aquatic aquatics aquatint aquavit +aqueduct aquiculture aquifer aquifoliaceae aquila aquilege aquilegia aquinas +aquitaine aquitania ar ara arab arab-berbers arabesque arabia arabian arabic +arabidopsis arability arabis arabist araceae arachis arachnid arachnida +arachnoid arachnophobia arafat aragon aragonite araguaia araguaya arak arales +aralia araliaceae aram aramaean aramaic arame aramean aramus aranea araneae +araneida araneus aranyaka arapaho arapahoe ararat arariba araroba aras arauca +araucaria araucariaceae araujia arava arawak arawakan arawn araxes arb arbalest +arbalist arbiter arbitrage arbitrager arbitrageur arbitrament arbitrariness +arbitration arbitrator arbitrement arbor arboretum arboriculture arboriculturist +arborist arborolatry arborvirus arborvitae arbour arbovirus arbutus arc arc- +boutant arca arcade arcadia arcadian arcadic arcado-cyprians arcanum arccos +arccosecant arccosine arccotangent arcdegree arcella arcellidae arceuthobium +arch archaebacteria archaebacterium archaeobacteria archaeologist archaeology +archaeopteryx archaeornis archaeornithes archaeozoic archaicism archaism +archaist archangel archbishop archbishopric archdeacon archdeaconry archdiocese +archduchess archduchy archduke archean archegonium archenteron archeobacteria +archeologist archeology archeopteryx archeozoic archer archerfish archery +archespore archesporium archetype archiannelid archiannelida archidiaconate +archidiskidon archil archilochus archimandrite archimedes archine archipallium +archipelago architect architectonics architecture architeuthis architrave +archive archives archivist archness archosargus archosaur archosauria +archosaurian archpriest archway arcidae arcminute arcsec arcsecant arcsecond +arcsin arcsine arctan arctangent arctic arctictis arctiid arctiidae arctium +arctocebus arctocephalus arctonyx arctostaphylos arctotis arcturus arcus arda +ardea ardeb ardeidae ardennes ardisia ardor ardour ards arduousness are area +areaway areca arecaceae arecidae areflexia arena arenaria arenaria-melanocephala +arenaviridae arenavirus arendt arenga areola areopagite areopagus arequipa arere +ares arete arethusa argal argali argasid argasidae argemone argent argentina +argentine argentinian argentinidae argentinosaur argentite argil argillite +arginine argiope argiopidae argive argle-bargle argo argon argonaut argonauta +argonautidae argonne argonon argos argosy argot arguer arguing argument +argumentation argun argus argusianus argy-bargy argyle argyll argynnis +argyranthemum argyreia argyrodite argyrol argyrotaenia argyroxiphium arhant +arhat arhus aria ariadne ariana arianism arianist arianrhod arianrod aricara +aridity aridness aries arietta ariidae arikara aril arilus ariocarpus ariomma +arioso arisaema arisarum arishth arista aristarchus aristocort aristocracy +aristocrat aristolochia aristolochiaceae aristolochiales aristopak aristophanes +aristotelean aristotelia aristotelian aristotelianism aristotle arithmancy +arithmetic arithmetician arity arius arizona arizonan arizonian arjuna ark +arkansan arkansas arkansawyer arles arlington arm arm-twisting armada +armadillidiidae armadillidium armadillo armageddon armagnac armament +armamentarium armature armband armchair armenia armenian armeria armet armful +armguard armhole armiger armilla armillaria armillariella armin arming arminian +arminianism arminius armistice armlet armoire armor armor-bearer armoracia +armorer armory armour armourer armoury armpit armrest arms arms-runner armstrong +army armyworm arng arnhem arnica arno arnold arnoseris aroid aroma aromatherapy +arouet arousal arouser arp arpeggio arpent arquebus arrack arraignment +arrangement arranger arranging arras array arrears arrest arrester arrhenatherum +arrhenius arrhythmia arrival arrivederci arriver arriviste arroba arrogance +arrogation arrogator arrow arrowhead arrowroot arrowsmith arrowworm arroyo arse +arsehole arsenal arsenate arsenic arsenical arsenide arsenopyrite arsine arson +arsonist art artamidae artamus artaxerxes artefact artemia artemis artemisia +arteria arteriectasia arteriectasis arteriogram arteriography arteriola +arteriole arteriolosclerosis arteriosclerosis arteritis artery artfulness +arthralgia arthritic arthritis arthrocentesis arthrodesis arthrogram +arthrography arthromere arthropathy arthroplasty arthropod arthropoda +arthropteris arthroscope arthroscopy arthrospore arthur artichoke article +articulateness articulatio articulation articulator artifact artifice artificer +artificiality artillery artilleryman artiodactyl artiodactyla artisan artist +artiste artistry artlessness artocarpus artois arts artsd artwork aruba arugula +arui arulo arum arundinaria arundo aruru arvicola aryan arytaenoid arytenoid as +asadha asafetida asafoetida asahikawa asala asama asamiya asana asanga +asarabacca asarh asarum asbestos asbestosis ascaphidae ascaphus ascariasis +ascaridae ascaridia ascaris ascendance ascendancy ascendant ascendence +ascendency ascendent ascender ascending ascension ascent ascesis ascetic +asceticism asch aschelminthes ascidiaceae ascidian ascii ascites asclepiad +asclepiadaceae asclepias asclepius ascocarp ascolichen ascoma ascomycete +ascomycetes ascomycota ascomycotina ascophyllum ascospore ascot ascription ascus +asdic asean asepsis asexuality asgard ash ash-bin ash-key ash-pan ashbin ashcake +ashcan ashe asheville ashir ashkenazi ashkhabad ashlar ashram ashton ashtoreth +ashtray ashur ashurbanipal asia asian asiatic aside asilidae asimina asimov asin +asininity asio asker asking asklepios asl asmara asmera asp aspadana aspalathus +asparagaceae asparaginase asparagine asparagus aspartame aspect aspen asper +aspergill aspergillaceae aspergillales aspergillosis aspergillus asperity +aspersion aspersorium asperula asphalt asphodel asphodelaceae asphodeline +asphodelus asphyxia asphyxiation asphyxiator aspic aspidelaps aspidiotus +aspidistra aspidophoroides aspinwall aspirant aspirate aspiration aspirator +aspirer aspirin aspis aspleniaceae asplenium ass ass-kisser assagai +assailability assailant assam assamese assassin assassination assassinator +assault assaulter assay assay-mark assayer assegai assemblage assembler +assembling assembly assemblyman assemblywoman assent assenter assenting asserter +assertion assertiveness assessee assessment assessor asset assets asseveration +asseverator asshole assibilation assiduity assiduousness assignation assignee +assigning assignment assignor assimilation assimilator assist assistance +assistant assize assizes associability associableness associate associateship +association associationism assonance assortment assouan assuagement assuan +assumption assur assurance assurbanipal assuredness assyria assyrian assyriology +astacidae astacura astacus astaire astana astarte astasia astatine aster +asteraceae astereognosis asteridae asterion asterisk asterism asteroid +asteroidea asterope asthenia asthenopia asthenosphere astheny asthma asthmatic +astigmatism astigmia astilbe astonishment astor astragal astragalus astrakhan +astrantia astraphobia astreus astringence astringency astringent astrobiology +astrocyte astrodome astrodynamics astrogator astroglia astrolabe astrolatry +astrologer astrologist astrology astroloma astrometry astronaut astronautics +astronavigation astronium astronomer astronomy astrophysicist astrophysics +astrophyton astropogon astuteness asuncion asur asura asurbanipal asvina asvins +aswan asylum asymmetry asymptote asynchronism asynchrony asynclitism asyndeton +asynergia asynergy asystole at at-bat atabrine atakapa atakapan atar ataractic +atarax ataraxia ataraxis ataturk atavism atavist ataxia ataxy atayalic ate +atelectasis ateleiosis ateles atelier ateliosis aten atenolol atf athabascan +athabaskan athanasianism athanasius athanor athapascan athapaskan athar atharva- +veda atheism atheist athelstan athena athenaeum athene atheneum athenian athens +atherinidae atherinopsis atherodyde atherogenesis atheroma atherosclerosis +atherurus athetosis athinai athiorhodaceae athlete athleticism athletics athodyd +athos athrotaxis athyriaceae athyrium ativan atlanta atlantic atlantides +atlantis atlas atm atmometer atmosphere atmospherics atole atoll atom +atomisation atomiser atomism atomization atomizer aton atonalism atonality +atonement atonia atonicity atony atopognosia atopognosis atopy atorvastatin atp +atrazine atresia atreus atrichornis atrichornithidae atriplex atrium +atrociousness atrocity atromid-s atropa atrophedema atrophy atropidae atropine +atropos atrovent atsugewi attacapa attacapan attache attachment attack attacker +attainability attainableness attainder attainment attalea attar attempt +attempter attendance attendant attendee attender attending attention +attentiveness attenuation attenuator attestant attestation attestator attester +attestor attic attica atticus attila attilio attire attitude attlee attorney +attorneyship attosecond attracter attraction attractiveness attractor attribute +attribution attrition atypicality au auberge aubergine auc auchincloss auckland +auction auctioneer aucuba audaciousness audacity audad auden audibility audible +audibleness audience audile audio audiocassette audiogram audiology audiometer +audiometry audiotape audiovisual audit audition auditor auditorium audubon aug +augeas augend auger aught augite augmentation augmentin augur augury august +augusta augustine augustinian augustus auk auklet aulacorhyncus aulostomidae +aulostomus aum aunt auntie aunty aura aurelius aureolaria aureole aureomycin +auricle auricula auriculare auricularia auriculariaceae auriculariales auriga +auriparus auriscope aurochs aurora auroscope auschwitz auscultation auspex +auspice auspices auspiciousness aussie austen austenite austereness austerity +austerlitz austin austral australasia australia australian australopithecine +australopithecus austria austria-hungary austrian austro-asiatic austrocedrus +austronesia austronesian austrotaxus autacoid autarchy autarky auteur +authentication authenticator authenticity author authoress authorisation +authoriser authoritarian authoritarianism authorities authority authorization +authorizer authorship autism auto auto-changer auto-da-fe auto-mechanic auto- +suggestion autoantibody autobahn autobiographer autobiography autobus +autocatalysis autochthon autochthony autoclave autocoid autocracy autocrat +autocue autodidact autoeroticism autoerotism autofluorescence autofocus autogamy +autogenesis autogenics autogeny autogiro autograft autograph autogyro +autoimmunity autoinjector autolatry autoloader autolysis automaker automat +automatic automation automatism automaton automeris automobile automobilist +automysophobia autonomy autophyte autopilot autoplasty autopsy autoradiograph +autoradiography autoregulation autosexing autosome autostrada autosuggestion +autotelism autotomy autotroph autotype autotypy autumn auvergne auxesis +auxiliary auxin av avadavat avahi avail availability availableness avalanche +avalokiteshvara avalokitesvara avant-garde avaram avarice avariciousness +avaritia avatar avena avenger avens aventail aventurine avenue average +averageness averment averrhoa averroes aversion averting aves avesta avestan +aviary aviation aviator aviatress aviatrix avicenna avicennia avicenniaceae +avidity avidness avifauna avignon avionics avitaminosis avo avocado avocation +avocet avogadro avoidance avoirdupois avon avouchment avowal avower avulsion +awakening award awarding awareness awayness awe awfulness awkwardness awl +awlwort awn awning awol ax axe axerophthol axil axilla axiology axiom axis axle +axletree axolemma axolotl axon axone axseed ayah ayapana ayatollah aye-aye ayin +ayr ayrshire aythya ayurveda az azactam azadirachta azadirachtin azalea +azaleastrum azathioprine azedarach azederach azerbaijan azerbaijani azerbajdzhan +azeri azide azimuth azithromycin azoimide azolla azollaceae azores azotaemia +azote azotemia azoturia azt aztec aztecan aztreonam azure azurite azymia b b-52 +b-girl b-horizon b-meson b.o. b.t.u. b.th.u. ba baa baa-lamb baal baas baba +babar babassu babbitt babbitting babble babbler babbling babe babel babesiidae +babies'-breath babinski babiroussa babirusa babirussa babka baboo baboon babu +babushka baby baby-sitter baby-walker babyhood babylon babylonia babylonian +babyminder babyrousa babysitter babysitting babytalk bacca baccalaureate +baccarat bacchanal bacchanalia bacchant bacchante baccharis bacchus baccy bach +bachelor bachelor-at-arms bachelorette bachelorhood bacillaceae +bacillariophyceae bacillus bacitracin back back-blast back-formation back-number +backache backband backbeat backbench backbencher backbend backbiter backblast +backboard backbone backchat backcloth backdoor backdown backdrop backer +backfield backfire backflow backflowing backgammon background backgrounder +backgrounding backhand backhander backhoe backing backlash backlighting backlog +backpack backpacker backpacking backplate backrest backroom backsaw +backscratcher backseat backsheesh backside backslapper backslider backsliding +backspace backspacer backspin backstage backstairs backstay backstitch backstop +backstroke backstroker backswimmer backsword backtalk backup backwardness +backwash backwater backwoods backwoodsman backyard bacon bacteremia bacteria +bacteriacide bacteriaemia bactericide bacteriemia bacteriochlorophyll +bacteriologist bacteriology bacteriolysis bacteriophage bacteriostasis +bacteriostat bacterium bacteroid bacteroidaceae bacteroides bad badaga +baddeleyite baddie bade badge badger badgerer badgering badinage badlands +badminton badness baeda baedeker baffle baffled bafflement bag bagascosis +bagasse bagassosis bagatelle bagdad bagel bagful baggage baggageman bagger +bagging baghdad bagman bagnio bagpipe bagpiper baguet baguette bahai bahaism +bahamas bahamian bahasa bahrain bahraini bahrein bahreini baht bai baic baikal +bail bailee bailey bailiff bailiffship bailiwick bailment bailor bain-marie +baiomys bairava bairdiella bairiki bairn baisa baisakh bait baiting baiza baize +bakeapple bakehouse bakelite baker bakersfield bakery bakeshop baking baklava +baksheesh bakshis bakshish baku bakunin balaclava balaena balaeniceps +balaenicipitidae balaenidae balaenoptera balaenopteridae balagan balalaika +balance balancer balanchine balancing balanidae balanitis balanoposthitis +balanus balarama balas balata balaton balboa balbriggan balcony baldachin balder +balderdash baldhead baldness baldpate baldr baldric baldrick baldwin baldy bale +baleen balefire balefulness balenciaga balfour bali balibago balinese balistes +balistidae balk balkan balkans balker balkiness balkline ball ball-breaker ball- +buster ballad ballade balladeer ballast ballcock balldress ballerina ballet +balletomane balletomania ballgame ballista ballistics ballistite +ballistocardiogram ballistocardiograph ballock balloon balloonfish ballooning +balloonist ballot ballota balloting ballottement ballpark ballpen ballplayer +ballpoint ballroom balls-up ballup ballyhoo balm balminess balmoral balochi +baloney balsa balsam balsaminaceae balsamorhiza balsamroot balthasar balthazar +baltic baltic-finnic baltimore balto-slavic balto-slavonic baluchi baluster +balusters balustrade balzac bam bamako bambino bamboo bambusa bambuseae ban +banality banana band bandage bandaging bandana bandanna bandbox bandeau bandelet +bandelette banderilla banderillero bandicoot banding bandit banditry bandleader +bandlet bandmaster bandoleer bandolier bandoneon bandsaw bandsman bandstand +bandtail bandung bandwagon bandwidth bandyleg bane baneberry banff bang +bangalore banger bangiaceae banging bangkok bangla bangladesh bangladeshi bangle +bangor bangtail bangui banian banishment banister banjo banjul bank bankbook +banker bankhead bankia banking banknote bankroll bankrupt bankruptcy banks +banksia banner banneret banning banning-order bannister bannock bannockburn +banns banquet banqueting banquette banshee banshie bantam bantamweight banteng +banter banting bantu banyan banzai baobab bap baphia baptisia baptism baptist +baptistery baptistry baptists bar baraka baranduki barany barb barbacan +barbadian barbados barbarea barbarian barbarisation barbarism barbarity +barbarization barbarossa barbarousness barbary barbasco barbecue barbecuing +barbel barbell barbeque barber barberry barbershop barbet barbette barbican +barbital barbitone barbiturate barbu barbuda barbwire barcarole barcarolle +barcelona bard bardeen bardolatry bareboat bareboating bareness barf bargain +bargainer bargaining barge bargee bargello bargeman bari barilla baring barish +barite baritone barium bark bark-louse barkeep barkeeper barker barkley barley +barley-sugar barleycorn barm barmaid barman barmbrack barn barnacle barnburner +barndoor barnful barnstormer barnum barnyard barograph barometer baron baronage +baronduki baroness baronet baronetage baronetcy barong barony baroque +baroqueness baroreceptor barosaur barosaurus barouche barque barrack barracking +barracouta barracuda barrage barramundi barranquilla barrater barrator barratry +barrel barrelfish barrelful barrelhouse barrels barren barrenness barrenwort +barrette barretter barricade barrie barrier barring barrio barrister barroom +barrow barrow-boy barrow-man barrowful barrymore bars barstow bart bartender +barter barterer barth barthelme bartholdi bartholin bartlesville bartlett bartok +bartonia bartramia baruch barunduki barycenter barye baryon baryshnikov baryta +barytes barytone basalt bascule base baseball baseboard basel baseline basement +baseness basenji bash bashfulness basia basic basics basidiocarp basidiolichen +basidiomycete basidiomycetes basidiomycota basidiomycotina basidiospore basidium +basil basileus basilica basilicata basiliscus basilisk basin basinet basinful +basis basket basketball basketeer basketful basketmaker basketry basketweaver +basle basophil basophile basophilia basotho basque basra bass bassariscidae +bassariscus bassarisk basse-normandie basset basseterre bassia bassine bassinet +bassist basso bassoon bassoonist basswood bast bastard bastardisation +bastardization bastardy baste baster bastille bastinado basting bastion +bastnaesite bastnasite basuco basuto basutoland bat bata bataan batch batfish +bath bathe bather bathhouse bathing batholite batholith bathometer bathos +bathrobe bathroom bathsheba bathtub bathyergidae bathyergus bathymeter +bathymetry bathyscape bathyscaph bathyscaphe bathysphere batidaceae batik batis +batiste batman batna batoidei baton batrachia batrachian batrachoididae +batrachomyomachia batrachoseps batsman batswana battalion batten batter +battercake battering battery battery-acid batting battle battle-ax battle-axe +battledore battlefield battlefront battleground battlement battler battleship +battlesight battlewagon battue batwing bauble baud baudelaire bauhaus bauhinia +baulk baulk-line baulker baum bauxite bavaria bavarian bawbee bawd bawdiness +bawdry bawdy bawdyhouse bawler bawling bay baya bayard bayat bayberry baycol +bayer bayes baykal bayonet bayonne bayou bayrut bazaar bazar bazooka bb bbl bbs +bd bdellium be beach beachball beachcomber beachfront beachhead beachwear beacon +bead beading beadle beads beadsman beadwork beagle beagling beak beaker beam +beam-ends bean beanbag beanball beaner beanfeast beanie beano beanstalk beantown +beany bear bearberry bearcat beard bearer bearing bearnaise bearskin bearwood +beast beastliness beat beater beatification beating beatitude beatles beatnik +beatniks beatrice beats beau beaugregory beaujolais beaumont beaumontia beaut +beauteousness beautician beautification beauty beauvoir beaver beaverbrook bebop +bechamel bechuana beck becket beckett beckley becomingness becquerel bed bed- +and-breakfast bed-ground bed-wetting beda bedbug bedchamber bedclothes bedcover +bedder bedding bede bedesman bedevilment bedfellow bedframe bedground bedlam +bedlamite bedouin bedpan bedpost bedrest bedrock bedroll bedroom bedside bedsit +bedsitter bedsore bedspread bedspring bedstead bedstraw bedtime beduin bedwetter +bee beebalm beebread beech beecher beechnut beechwood beef beefalo beefburger +beefcake beefeater beefsteak beefwood beehive beekeeper beekeeping beeline +beelzebub beep beeper beer beerbohm beeswax beet beethoven beetle beetleweed +beetroot befooling befoulment befuddlement begetter beggar beggar's-ticks +beggar-my-neighbor beggar-my-neighbour beggar-ticks beggarman beggarweed +beggarwoman beggary begging begin beginner beginning begonia begoniaceae +beguilement beguiler beguine begum behalf behavior behaviorism behaviorist +behaviour behaviourism behaviourist beheading behemoth behest behind behmen +behmenism beholder beholding behrens behring beige beigel beignet beijing being +beingness beira beirut bel bel-merodach belamcanda belarus belarusian belau +belay belch belching beldam beldame beleaguering belem belemnite belemnitidae +belemnoidea belfast belfry belgian belgique belgium belgrade belief +believability believer believing belisarius belittling belize bell bell-bottoms +belladonna bellarmine bellarmino bellbird bellboy belle bellerophon belles- +lettres bellflower bellhop bellicoseness bellicosity belligerence belligerency +belligerent belling bellingham bellini bellis bellman belloc bellow bellower +bellowing bellows bellpull bellwether bellwort belly bellyache bellyacher +bellyband bellybutton bellyful belmont belonging belongings belonidae belorussia +belorussian belostomatidae beloved belsen belshazzar belt belting beltway beluga +belvedere bema bemidji bemisia bemusement ben benadryl bench benchley benchmark +bend bendability bender bending bendopa bends benedick benedict benedictine +benediction benefaction benefactor benefactress benefice beneficence beneficiary +beneficiation benefit benelux benet benevolence bengal bengali benghazi +benignancy benignity benin beninese benison benjamin benne bennet bennett +bennettitaceae bennettitales bennettitis benni bennie bennington benniseed benny +bent bent-grass bentham benthos benton bentonite bentwood benweed benzedrine +benzene benzine benzoate benzocaine benzodiazepine benzofuran benzoin benzol +benzoquinone benzyl benzylpenicillin beograd beowulf bequest berating berber +berberidaceae berberis berbers berceuse bercy bereaved bereavement beret berg +bergall bergamot bergen bergenia bergman bergson beria beriberi bering berit +berith berk berkeley berkelium berkshire berkshires berlage berlin berliner +berlioz berm bermuda bermudan bermudas bermudian bern bernard berne bernhardt +bernini bernoulli bernstein beroe berra berretta berry berserk berserker +berteroa berth bertholletia bertillon bertolucci berycomorphi beryl beryllium +berzelius besieger besieging besom bessel bessemer bessera besseya best +bestiality bestiary bestowal bestower bestowment bestseller bet beta beta- +adrenoceptor beta-carotene beta-interferon beta-lactamase beta-lipoprotein beta- +naphthol betaine betatron betel betelgeuse beth bethe bethel bethlehem +bethlehem-judah bethune betise betrayal betrayer betrothal betrothed better +betterment bettong bettongia bettor betula betulaceae betweenbrain bevatron +bevel beverage beveridge bevin bevy bewilderment bewitchery bewitchment bextra +bey bezant bezel bezique bezzant bh bhadon bhadrapada bhaga bhagavad-gita +bhagavadgita bhakti bhang bharat bhutan bhutanese bhutani bi bialy bialystoker +bias bib bib-and-tucker bible bible-worship bibliographer bibliography +bibliolatry bibliomania bibliophile bibliopole bibliopolist bibliothec +bibliotheca bibliotics bibliotist bibos bicarbonate bicentenary bicentennial +biceps bichloride bichromate bicker bickering bicorn bicorne bicuspid bicycle +bicycle-built-for-two bicycler bicycling bicyclist bid bida bidder bidding biddy +bidens bidet biennial bier bierce biff bifocals bifurcation bigamist bigamy +bigarade bigeye bigfoot biggin bighead bigheartedness bighorn bight bigness +bignonia bignoniaceae bignoniad bigos bigot bigotry bigram bigwig bihar bihari +bijou bike bikers bikini bilabial bilateralism bilaterality bilberry bilby bile +bilestone bilge bilges bilgewater bilharzia bilharziasis bilimbi bilingual +bilingualism bilingualist biliousness bilirubin bill billabong billboard billet +billfish billfold billhook billiards billing billings billingsgate billion +billionaire billionth billow billy billy-ho billyo billyoh billystick bilocation +biloxi bilsted biltong bimbo bimester bimetal bimetallism bimetallist +bimillenary bimillennium bimli bimonthly bin binary bind binder bindery binding +bindweed bine binet binful binge binger binghamton bingle bingo binnacle +binoculars binomial binturong bio-assay bioarm bioassay bioattack biocatalyst +biochemist biochemistry biochip bioclimatology biodefence biodefense +biodiversity bioelectricity bioengineering bioethics biofeedback bioflavinoid +biogenesis biogeny biogeography biographer biography biohazard bioko biologism +biologist biology bioluminescence biomass biome biomedicine biometrics biometry +bionics bionomics biont biophysicist biophysics biopiracy biopsy bioremediation +biosafety bioscience bioscope biosphere biostatistics biosynthesis +biosystematics biosystematy biota biotech biotechnology bioterrorism biotin +biotite biotype bioweapon biped bipedalism biplane biprism biquadrate +biquadratic birch birchbark bird bird-on-the-wing bird-scarer birdbath birdbrain +birdcage birdcall birder birdfeeder birdhouse birdie birdlime birdnest +birdnesting birdseed birdsong birefringence biretta biriani birling birmingham +biro birr birretta birth birthday birthing birthmark birthplace birthrate +birthright birthroot birthwort biryani bisayan bisayas biscuit biscutella bise +bisection bisexual bisexuality bishkek bishop bishopric bishopry biskek bismarck +bismark bismuth bison bisque bissau bister bistre bistro bit bitartrate bitch +bitchery bitchiness bite biteplate biter bitewing bithynia bitis bitmap bitok +bitstock bitt bittacidae bitter bitter-bark bittercress bittern bitterness +bitternut bitterroot bitters bittersweet bitterweed bitterwood bitthead +bitumastic bitumen biu-mandara bivalve bivalvia bivouac bivouacking biweekly biz +bizarreness bize bizet bja bjs bk blabber blabbermouth blaberus black blackamoor +blackball blackbeard blackbeetle blackberry blackberry-lily blackbird blackboard +blackbody blackbuck blackburn blackcap blackcock blackdamp blackening blackface +blackfish blackfly blackfoot blackfriar blackguard blackhead blackheart blacking +blackjack blackleg blacklist blackmail blackmailer blackness blackout blackpoll +blackpool blacksburg blackseed blackshirt blacksmith blacksnake blacktail +blackthorn blacktop blacktopping blackwash blackwater blackwood bladder +bladdernose bladderpod bladderwort bladderwrack blade blaeberry blah blahs blain +blair blake blame blamelessness blameworthiness blanc blancmange blandfordia +blandishment blandness blank blanket blankness blanquillo blantyre blare blarina +blaring blarney blasphemer blasphemy blast blastema blaster blastocele +blastocladia blastocladiales blastocoel blastocoele blastocyst blastocyte +blastocytoma blastoderm blastodiaceae blastodisc blastoff blastogenesis blastoma +blastomere blastomyces blastomycete blastomycosis blastopore blastosphere +blastula blatancy blather blatherskite blatta blattaria blattella blattidae +blattodea blaxploitation blaze blazer blazing blazon blazonry bleach bleacher +bleachers bleakness bleat bleb blechnaceae blechnum bleeder bleeding bleep +blemish blend blende blender blending blenheim blenniidae blennioid blennioidea +blennius blenny blepharism blepharitis blepharospasm blephilia bleriot +blessedness blessing blether bletia bletilla bleu blewits blida bligh blighia +blight blighter blighty blimp blind blinder blindfold blindness blindworm bling +blini blink blinker blinking blinks blintz blintze bliny blip bliss blissfulness +blissus blister blistering blitheness blitt blitz blitzkrieg blitzstein blixen +blizzard bloat bloater blob bloc blocadren bloch block blockade blockade-runner +blockage blockbuster blocker blockhead blockhouse blocking bloemfontein blog +blogger blok bloke blolly blond blonde blondness blood blood-twig bloodbath +bloodberry bloodguilt bloodhound bloodiness bloodleaf bloodletting bloodline +bloodlust bloodmobile bloodroot bloodshed bloodstain bloodstock bloodstone +bloodstream bloodsucker bloodthirstiness bloodworm bloodwort bloom bloomer +bloomeria bloomers bloomfield blooming bloomington bloomsbury blooper blossom +blossoming blot blotch blotter blouse blow blowback blowball blower blowfish +blowfly blowgun blowhard blowhole blowing blowjob blowlamp blowout blowpipe +blowtorch blowtube blowup blt blu-82 blubber blubberer blucher bludgeon +bludgeoner blue blue-belly blue-blindness bluebeard bluebell blueberry bluebill +bluebird bluebonnet bluebottle bluecoat bluefin bluefish bluegill bluegrass +bluehead blueing bluejacket blueness bluenose bluepoint blueprint blues bluestem +bluestocking bluestone bluethroat bluetick bluetongue blueweed bluewing bluff +bluffer bluffness bluing blunder blunderbuss blunderer bluntness blur blurb +blurriness blush blusher bluster blusterer bm bmdo bmi bmr bmus bns bo's'n +bo'sun boa boann boar board boarder boarding boardinghouse boardroom boards +boardwalk boarfish boarhound boast boaster boastfulness boasting boat boatbill +boatbuilder boater boathouse boating boatload boatman boatmanship boatswain +boatyard bob bobber bobbin bobble bobby bobby-socker bobbysock bobbysocks +bobbysoxer bobcat bobfloat bobolink bobsled bobsledding bobsleigh bobtail +bobwhite boccaccio bocce bocci boccie bocconia boche bock bod boddhisatva bodega +bodensee bodhisattva bodice boding bodkin bodo-garo bodoni body body-build +bodybuilder bodybuilding bodyguard bodywork boehm boehme boehmenism boehmeria +boell boeotia boer boethius boeuf boffin bog bogart bogbean bogey bogeyman bogie +bogmat bogota bogy bohemia bohemian bohemianism bohme bohr bohrium boidae boil +boiler boilerplate boilersuit boiling boise boisterousness bokkos bokmaal bokmal +bola bolanci bolbitis bold boldface boldness bole bolero boletaceae bolete +boletellus boletus boleyn bolide bolingbroke bolivar bolivia bolivian boliviano +boll bollard bollock bollworm bollywood bolo bologna bologram bolograph +bolometer boloney bolshevik bolshevism bolshevist bolshie bolshy bolster bolt +bolt-hole bolti boltonia boltzmann bolus bolzano bomarea bomb bombacaceae +bombard bombardier bombardment bombardon bombast bombax bombay bombazine bomber +bombie bombilation bombina bombination bombing bomblet bombproof bombshell +bombsight bombus bombycid bombycidae bombycilla bombycillidae bombyliidae bombyx +bonaire bonanza bonaparte bonasa bonavist bonbon bonce bond bondage bondholder +bonding bondmaid bondman bondsman bondswoman bonduc bondwoman bone bonefish +bonehead bonelet bonemeal boner bones boneset bonesetter boneshaker bonete +bonfire bong bongo bonheur bonhoeffer bonhomie boniface boniness bonito bonn +bonnet bonnethead bonney bonobo bonsai bontemps bonus bonxie bonyness boo boo- +boo boob booboisie booby boodle booger boogeyman boogie boogie-woogie book +bookbinder bookbindery bookbinding bookcase bookclub bookdealer bookend booker +bookfair bookie booking bookishness bookkeeper bookkeeping booklet booklouse +booklover bookmaker bookman bookmark bookmarker bookmobile bookplate bookseller +bookshelf bookshop bookstall bookstore bookworm boole boom boomer boomerang boon +boondocks boondoggle boone boor boorishness boost booster boot bootblack +bootboys bootee bootes booth boothose bootie bootjack bootlace bootleg +bootlegger bootlegging bootlicker bootmaker bootstrap booty booyong booze booze- +up boozer boozing bop bopeep borage boraginaceae borago borassus borate borax +bordeaux bordelaise bordello border borderer borderland borderline bore bore- +hole boreas borecole boredom borer borges borgia boring boringness born bornean +borneo bornite borodin borodino boron borosilicate borough borrelia borrower +borrowing borsch borscht borsh borshch borsht borstal bortsch borzoi bos bos'n +bosc bosch bose boselaphus bosh bosie bosk bosnia bosnia-herzegovina bosom boson +bosporus boss bossism boston bostonian bosun boswell boswellia bot bota +botanical botanist botany botaurus botch botcher botfly bother botheration +bothidae bothrops botox botrychium botswana botticelli bottle bottle-grass +bottle-tree bottlebrush bottlecap bottleful bottleneck bottlenose bottler bottom +bottom-dweller bottom-feeder bottomland bottomlessness botulin botulinum +botulinus botulism botulismotoxin bouchee boucle boudoir bouffant bouffe +bougainvillaea bougainville bougainvillea bough bouillabaisse bouillon boulder +boule boulevard boulevardier boulez boulle bounce bouncer bounciness bouncing +bound boundary boundedness bounder boundlessness bounds bounteousness +bountifulness bounty bouquet bourbon bourdon bourgeois bourgeoisie bourgogne +bourguignon bourn bourne bourse bourtree boustrophedon bout bouteloua boutique +boutonniere bouvines bouyei bovid bovidae bovinae bovine bovini bovril bow bow- +tie bow-wow bowditch bowdler bowdlerisation bowdleriser bowdlerism +bowdlerization bowdlerizer bowel bowels bower bowerbird bowery bowfin bowhead +bowie bowiea bowing bowknot bowl bowlder bowleg bowler bowlful bowline bowling +bowls bowman bowsprit bowstring bowtie box boxberry boxcar boxcars boxer boxers +boxershorts boxfish boxful boxing boxthorn boxwood boy boycott boyfriend boyhood +boyishness boykinia boyle boyne boys-and-girls boysenberry bozeman bozo bph bpi +bpm bps br bra brace bracelet bracer bracero braces brachiation brachinus +brachiopod brachiopoda brachium brachycephalic brachycephalism brachycephaly +brachychiton brachycome brachydactylia brachydactyly brachystegia brachyura +brachyuran bracing bracken bracket brackishness bract bracteole bractlet brad +bradawl bradbury bradford bradley bradstreet brady bradycardia bradypodidae +bradypus brae brag braga brage bragg braggadocio braggart bragger bragging bragi +brahe brahma brahman brahmana brahmanism brahmaputra brahmi brahmin brahminism +brahms brahui braid braiding brail braille brain brain-fag brain-stem brain- +teaser brain-worker braincase brainchild brainiac brainpan brainpower brainstem +brainstorm brainstorming brainwashing brainwave brainworker braising brake +brakeman brakes brama bramante bramble brambling bramidae bran branch branchia +branching branchiobdella branchiobdellidae branchiopod branchiopoda +branchiopodan branchiostegidae branchiostomidae branchiura branchlet brancusi +brand brand-newness brandenburg branding brandish brandt brandy brandyball +brandysnap brant branta braque brasenia brashness brasier brasil brasilia brasov +brass brassard brassavola brasserie brassia brassica brassicaceae brassie +brassiere brat bratislava brattice brattleboro bratwurst braun braunschweig +bravado brave braveness bravery bravo bravura brawl brawler brawn brawniness +bray brazenness brazier brazil brazilian brazilwood brazos brazzaville breach +bread bread-bin bread-stick breadbasket breadboard breadbox breadcrumb +breadfruit breadline breadroot breadstick breadstuff breadth breadwinner break +break-axe break-in breakability breakable breakableness breakage breakaway +breakax breakaxe breakdown breaker breakers breakfast breaking breakout +breakstone breakthrough breakup breakwater bream breast breastbone breastpin +breastplate breaststroke breaststroker breastwork breath breathalyser +breathalyzer breather breathing breathlessness breccia brecht breech breechblock +breechcloth breechclout breeches breechloader breed breeder breeding breeze +breeziness bregma breiz bremen bremerhaven bren brent brescia breslau brest +bretagne brethren breton breuer breughel breve brevet breviary brevibloc +brevicipitidae brevity brevoortia brew brewage brewer brewery brewing brewpub +brezhnev briar briard briarroot briarwood bribe briber bribery bric-a-brac brick +brickbat brickellia brickfield brickkiln bricklayer bricklaying brickwork +brickyard bricole bridal bridal-wreath bride bride-gift bride-to-be bridecake +bridegroom bridesmaid bridge bridged-t bridgehead bridgeport bridges bridget +bridgetown bridgework bridle bridoon brie brief briefcase briefing briefness +briefs brier brier-wood brierpatch brierwood brig brigade brigadier brigand +brigandine brigantine brightness brighton brigid brigit brihaspati brill +brilliance brilliancy brilliantine brim brimstone brindisi brine bringing +brininess brinjal brink brinkmanship brinton briny brio brioche briony brioschi +briquet briquette bris brisance brisbane brisket briskness brisling briss +bristle bristlegrass bristletail bristliness bristol brit britain britches brith +briticism british britisher britishism briton brits britt brittanic brittany +britten brittle brittle-star brittlebush brittleness brno broach broad broad- +bean broad-mindedness broadax broadaxe broadbill broadcast broadcaster +broadcasting broadcloth broadening broadloom broadness broadsheet broadside +broadsword broadtail broadway brobdingnag broca brocade brocadopa broccoli +brochette brochure brocket brockhouse brodiaea brogan broglie brogue broil +broiler broiling brokenheartedness broker broker-dealer brokerage brolly +bromberg brome bromegrass bromelia bromeliaceae bromeosin bromide bromine bromo- +seltzer bromoform bromus bronc bronchiole bronchiolitis bronchitis broncho +bronchodilator bronchopneumonia bronchoscope bronchospasm bronchus bronco +broncobuster bronte brontosaur brontosaurus bronx bronze brooch brood brooder +brooding broodmare broody brook brooke brooklet brooklime brooklyn brooks +brookweed broom broom-weed broomcorn broomstick broomweed brosmius broth brothel +brother brother-in-law brotherhood brotula brotulidae brougham brouhaha +broussonetia brow browallia brown browne brownie browning brownness brownout +brownshirt brownstone brownsville browntail browse browser browsing bruce +brucella brucellosis bruch bruchidae bruchus brucine bruckenthalia bruckner +bruegel brueghel bruges brugmansia bruin bruise bruiser brule brumaire brummagem +brummell brummie brummy brunanburh brunch brunei bruneian brunelleschi brunet +brunette brunfelsia brunhild brunn brunnhilde bruno brunswick brunt brusa brush +brush-off brushing brushup brushwood brushwork brusqueness brussels +brutalisation brutality brutalization brute brutus bruxelles bruxism brya +bryaceae bryales bryan bryanthus brynhild bryony bryophyta bryophyte bryopsida +bryozoa bryozoan brythonic bryum bs bsarch bse btu bubalus bubble bubblejet +bubbler bubbliness bubbly buber bubo bubulcus buccaneer buccaneering buccinidae +bucconidae buccula bucephala buceros bucerotidae buchanan bucharest bucharesti +buchenwald buchloe buchner buck buck-and-wing buckaroo buckbean buckboard +buckeroo bucket bucketful buckeye buckle buckler buckleya buckminsterfullerene +buckram bucksaw buckshot buckskin buckskins buckthorn bucktooth buckwheat +buckyball bucolic bucuresti bud budapest buddha buddhism buddhist budding +buddleia buddy budge budgereegah budgerigar budgerygah budget budgie budorcas +buff buffalo buffalofish buffer bufferin buffet buffeting bufflehead buffoon +buffoonery bufo bufonidae bug bug-hunter bugaboo buganda bugbane bugbear bugger +buggery bugginess buggy bugle bugler bugleweed bugloss bugologist bugology buhl +build builder building buildup bujumbura bukharin bulawayo bulb bulbil bulblet +bulbul bulgaria bulgarian bulge bulghur bulginess bulgur bulimarexia bulimia +bulimic bulk bulkhead bulkiness bull bull's-eye bull-snake bulla bullace bullbat +bullbrier bulldog bulldozer bullet bullethead bulletin bullfight bullfighter +bullfighting bullfinch bullfrog bullhead bullheadedness bullhorn bullion +bullnose bullock bullpen bullring bullrush bullshit bullshot bullterrier bully +bullyboy bullying bulnesia bulrush bultmann bulwark bulwer-lytton bum bumblebee +bumbler bumboat bumelia bumf bummer bump bumper bumph bumpiness bumpkin +bumptiousness bun bun-fight buna bunce bunch bunchberry bunche bunchgrass bunco +buncombe bundesbank bundle bundling bunfight bung bungalow bungarus bungee +bunghole bungle bungler bunion bunji-bunji bunk bunker bunkmate bunko bunkum +bunny buns bunsen bunt buntal bunter bunting bunuel bunyan bunyaviridae +bunyavirus buoy buoyancy buphthalmum bur bura burbage burbank burberry burbot +burden burdensomeness burdock bureau bureaucracy bureaucrat bureaucratism buret +burette burg burger burgess burgh burgher burglar burglary burgomaster burgoo +burgoyne burgrass burgrave burgundy burhinidae burhinus burial burin burk burka +burke burl burlap burlesque burlington burma burmannia burmanniaceae +burmeisteria burmese burmese-yi burn burnability burner burnett burnham burning +burnish burnoose burnous burnouse burns burnside burnup burp burping burqa burr +burrawong burrfish burrito burro burroughs burrow bursa bursar bursary bursera +burseraceae bursitis burst burster burt burthen burton burundi burundian +burunduki burying bus busbar busboy busby bush bushbaby bushbuck bushel bushido +bushing bushman bushnell bushtit bushwhacker business businessman businessmen +businesspeople businessperson businesswoman busker buskin busload busman buspar +buspirone buss bust bust-up bustard buster bustier bustle busybody busyness +busywork butacaine butadiene butane butanol butanone butat butazolidin butch +butcher butcherbird butchering butchery butea butene buteo buteonine butler butt +butt-weld butt-welding butte butter butter-and-eggs butter-flower butter-print +butterball butterbean butterbur buttercrunch buttercup butterfat butterfield +butterfingers butterfish butterflower butterfly butterflyfish buttermilk +butternut butterscotch butterweed butterwort buttery buttinsky buttock buttocks +button button-quail buttonhole buttonhook buttonwood buttress buttressing butty +butut butyl butylene butyrin buxaceae buxomness buxus buy buyback buyer buyi +buying buyout buzz buzzard buzzer buzzword bvd bvd's bw bwr by-and-by by-blow +by-catch by-election by-line by-product byblos bycatch bydgoszcz bye bye-bye +bye-election byelarus byelorussia byelorussian bygone bylaw byname bypass bypath +byplay byproduct byrd byre byrnie byroad byron byssus bystander byte byway +byword byzant byzantine byzantinism byzantium c c-clamp c-horizon c-note +c-ration c-section c.p.u. c2h6 ca caaba cab cabal cabala cabalism cabalist +cabana cabaret cabasset cabassous cabbage cabbageworm cabbala cabbalah cabby +cabdriver cabell caber cabernet cabg cabin cabinet cabinetmaker cabinetmaking +cabinetry cabinetwork cable cablegram cabman cabochon cabomba cabombaceae +caboodle caboose cabot cabotage cabriolet cabstand cacajao cacalia cacao cacatua +cachalot cache cachet cachexia cachexy cachi cachinnation cachou cacicus cacique +cackle cackler cacodaemon cacodemon cacodyl cacoethes cacogenesis cacogenics +cacography cacomistle cacomixle cacophony cactaceae cactus cad cadaster cadastre +cadaver cadaverine caddice-fly caddie caddis-fly caddisworm caddo caddoan caddy +cadence cadency cadenza cadet cadetship cadger cadiz cadmium cadmus cadra cadre +caduceus caeciliadae caecilian caeciliidae caecum caelum caenogenesis +caenolestes caenolestidae caesalpinia caesalpiniaceae caesalpinioideae caesar +caesarea caesarean caesarian caesarism caesaropapism caesium caesura cafe +cafeteria caff caffein caffeine caffeinism caffer caffre caftan cage cager +cagliostro cagney cagoule cahita cahoot caiman caimitillo caimito cain +cainogenesis cairene cairina cairn cairngorm cairo caisson caitiff caitra +cajanus cajolery cajun cakchiquel cake cakehole cakewalk cakile calaba calabash +calabazilla calabria calabura caladenia caladium calais calamagrostis calamari +calamary calamine calamint calamintha calamity calamus calan calandrinia +calanthe calapooya calapuya calash calc-tufa calcaneus calcedony calceolaria +calceus calciferol calcification calcimine calcination calcite calcitonin +calcium calcium-cyanamide calculation calculator calculus calcutta calder +caldera calderon caldron caldwell calean caleche caledonia calefaction calendar +calender calendula calf calfskin calgary cali caliber calibration calibre +caliche calico caliculus calidris calif calif. california californian +californium caligula caliper caliph caliphate calisaya calisthenics calk calkin +call call-back call-board call-in call-out calla callas callathump callback +caller caller-out caller-up calliandra callicebus calligrapher calligraphist +calligraphy callimorpha callinectes calling callionymidae calliope calliophis +calliopsis calliper calliphora calliphoridae callirhoe callisaurus callistephus +callisthenics callisto callithricidae callithrix callithump callitrichaceae +callitriche callitris callophis callorhinus callosectomy callosity callosotomy +callousness callowness calluna callus calm calming calmness calocarpum +calocedrus calochortus calomel caloocan caloosahatchee calophyllum calopogon +calorie calorimeter calorimetry calosoma calostomataceae calpac calpack calpe +calque caltha caltrop calumet calumniation calumny calvados calvaria calvary +calvatia calvin calving calvinism calvinist calvino calx calycanthaceae +calycanthus calycle calycophyllum calyculus calymmatobacterium calypso calypter +calyptra calystegia calyx cam camachile camail camaraderie camarilla camas +camash camass camassia cambarus camber cambium cambodia cambodian cambria +cambrian cambric cambridge camcorder camden camel camelhair camelia camelidae +camelina camellia camelopard camelot camelpox camelus camembert cameo camera +cameraman cameroon cameroonian cameroun camion camise camisole camlan camlet +camo camomile camorra camosh camouflage camp campaign campaigner campaigning +campana campania campanile campanula campanulaceae campanulales campbell +campeachy campeche campephilus camper campfire campground camphor camphorweed +camping campion campmate campong camponotus campsite campstool camptosorus +campus campyloneurum campylorhynchus camshaft camus camwood can canaan canaanite +canaanitic canachites canada canadian canafistola canafistula canal canaliculus +canalisation canalization cananga canangium canape canara canard canarese +canaries canary canasta canavalia canavanine canberra cancan cancel cancellation +cancer cancerweed cancridae cancroid cancun candela candelabra candelabrum +candelilla candida candidacy candidate candidature candidiasis candidness candle +candleberry candlelight candlemaker candlemas candlenut candlepin candlepins +candlepower candlesnuffer candlestick candlewick candlewood candor candour candy +candyfloss candymaker candytuft candyweed cane canebrake canecutter canella +canella-alba canellaceae canetti canfield canful cangue canicula canicule canid +canidae canine caning canis canistel canister canker cankerweed cankerworm canna +cannabidaceae cannabin cannabis cannaceae cannae cannelloni cannery cannes +cannibal cannibalism cannikin cannister cannon cannonade cannonball cannoneer +cannula cannulation cannulisation cannulization canoe canoeist canola canon +canonisation canonist canonization canopus canopy cant cantabrigian cantala +cantaloup cantaloupe cantata canteen canter canterbury cantharellus canthus +canticle canticles cantilever cantillation cantle canto canton cantonese +cantonment cantor canuck canulation canulisation canulization canute canvas +canvasback canvass canvasser canvassing canyon canyonside caoutchouc cap +capability capableness capaciousness capacitance capacitor capacity caparison +cape capek capelan capelin capella caper capercaillie capercailzie capet +capetian capeweed capful capibara capillarity capillary capital capitalisation +capitalism capitalist capitalization capitate capitation capitol capitonidae +capitulation capitulum capiz caplin capo capon capone caporetto capote capoten +cappadocia capparidaceae capparis cappelletti cappuccino capra caprella +capreolus capri capriccio caprice capriciousness capricorn capricornis +capricornus caprifig caprifoliaceae caprimulgid caprimulgidae caprimulgiformes +caprimulgus capriole caproidae capromyidae capros capsaicin capsella capsicum +capsid capsidae capsizing capstan capstone capsule captain captaincy captainship +caption captivation captive captivity captopril captor capture capturer capuchin +capulin caput capybara car car-ferry car-mechanic carabao carabidae carabineer +carabiner carabinier caracal caracara caracas carack caracolito caracul carafate +carafe caragana carageen carambola caramel carancha caranda caranday carangid +carangidae caranx carapace carapidae carassius carat caravaggio caravan +caravanning caravansary caravanserai caraway carbamate carbamide carbide carbine +carbineer carbohydrate carboloy carbomycin carbon carbonado carbonara carbonate +carbonation carbondale carboniferous carbonisation carbonization carbonyl +carborundum carboxyl carboy carbuncle carburetor carburettor carcajou carcase +carcass carcharhinidae carcharhinus carcharias carchariidae carcharodon +carcinogen carcinoid carcinoma carcinosarcoma card card-house cardamine cardamom +cardamon cardamum cardboard cardcase cardcastle cardholder cardhouse cardia +cardiff cardigan cardiidae cardinal cardinalate cardinalfish cardinality +cardinalship cardiogram cardiograph cardiography cardioid cardiologist +cardiology cardiomegaly cardiomyopathy cardiopathy cardiospasm cardiospermum +carditis cardium cardizem cardoon cardroom cards cardsharp cardsharper carducci +carduelinae carduelis cardura carduus care careen career careerism careerist +carefreeness carefulness caregiver carelessness carelian caress caressing caret +caretaker caretta carew carex carfare carful cargo carhop cariama cariamidae +carib caribbean caribe caribees caribou carica caricaceae caricature +caricaturist caries carillon carillonneur carina carinate caring carioca carissa +carjacking carlina carload carlos carlovingian carlsbad carlyle carmaker +carmelite carmichael carminative carmine carnage carnality carnallite carnation +carnauba carnegie carnegiea carnelian carnival carnivora carnivore carnosaur +carnosaura carnot carnotite carob caroche carol caroler carolina carolinas +caroling carolingian carolinian caroller carolus carom carotene carotenemia +carotenoid carothers carotin carousal carouse carousel carouser carp carpal +carpathians carpel carpentaria carpenter carpenteria carpentry carper carpet +carpetbag carpetbagger carpeting carpetweed carphophis carpinaceae carping +carpinus carpobrotus carpocapsa carpodacus carpophore carport carpospore carpus +carrack carrageen carrageenan carrageenin carragheen carrefour carrel carrell +carrere carriage carriageway carrier carrion carrizo carroll carrot carrottop +carrousel carry carry-forward carry-over carryall carrycot carson cart cartage +cartagena carte cartel carter cartesian carthage carthaginian carthamus +carthorse carthusian cartier cartilage cartilaginification carting cartload +cartographer cartography carton cartonful cartoon cartoonist cartouch cartouche +cartridge cartroad cartwheel cartwright carum caruncle caruncula caruso +carvedilol carver carving carya caryatid caryocar caryocaraceae caryophyllaceae +caryophyllales caryophyllidae caryopsis caryota casaba casablanca casals +casanova casava casbah cascabel cascade cascades cascara cascarilla case +casebook caseful casein casement casern casework caseworker caseworm cash +cashbox cashcard cashew cashier cashmere casing casino casino-hotel cask casket +caskful casmerodius caspar caspase casper caspian casque casquet casquetel +cassandra cassareep cassava casserole cassette cassia cassie cassino cassiope +cassiopeia cassirer cassiri cassite cassiterite cassius cassock cassowary cast +castanea castanets castanopsis castanospermum castaway caste caster castigation +castile castilian castilla castilleia castilleja castillian casting castle +castling castor castoridae castoroides castrate castration castrato castries +castro castroism casualness casualty casuaridae casuariiformes casuarina +casuarinaceae casuarinales casuarius casuist casuistry cat cat's-claw cat's-ear +cat's-paw cat's-tail cat-o'-nine-tails catabiosis catabolism catacala +catachresis cataclysm catacomb catafalque cataflam catalan catalase catalectic +catalepsy cataleptic catalexis catalog cataloger catalogue cataloguer catalonia +catalpa catalufa catalysis catalyst catamaran catamenia catamite catamount +catamountain catananche cataphasia cataphatism cataphoresis cataphract cataphyll +cataplasia cataplasm catapres catapult cataract catarrh catarrhine catasetum +catastrophe catatonia catawba catbird catboat catbrier catcall catch catchall +catcher catchfly catching catchment catchphrase catchweed catchword catclaw +catechesis catechin catechism catechist catecholamine catechu catechumen +categorem categoreme categorisation categorization category catena catenary +caterer catering caterpillar caterwaul catfish catgut catha catharacta +catharanthus cathari catharism cathars catharsis cathartes cathartic cathartid +cathartidae cathay cathaya cathedra cathedral cather catherine catheter +catheterisation catheterization cathexis cathode catholic catholicism +catholicity catholicon catholicos cathouse cation catkin catling catmint catnap +catnip catoptrics catoptrophorus catostomid catostomidae catostomus catskills +catsup cattail cattalo cattell cattie cattiness cattle cattleman cattleship +cattleya catty catullus catwalk caucasia caucasian caucasus caucus cauda caudata +caudate caudex caul cauldron cauliflower caulk caulking caulophyllum causa +causalgia causality causation cause causerie causeway causing caustic cauterant +cauterisation cauterization cautery caution cautious cautiousness cavalcade +cavalier cavalla cavalry cavalryman cave caveat cavell caveman cavendish cavern +cavetto cavia caviar caviare caviidae cavil caviler caviller cavity cavum cavy +caw caxton cay cayenne cayman cayuga cayuse cazique cbc cbr cc ccrc cd cd-r cd- +rom cd-wo cd4 cd8 cdc cdna ce cease cease-fire ceaselessness cebidae cebu cebuan +cebuano cebuella cebus cecidomyidae cecity cecropia cecropiaceae cecum cedar +cedarbird cedarwood cedi cedilla ceding cedrela cedrus cefadroxil cefobid +cefoperazone cefotaxime ceftazidime ceftin ceftriaxone cefuroxime ceiba ceibo +ceilidh ceiling celandine celastraceae celastrus celebes celebrant celebrater +celebration celebrator celebrex celebrity celecoxib celeriac celerity celery +celesta celestite celibacy celibate celiocentesis celioma celioscopy cell cellar +cellarage cellaret cellblock cellini cellist cello cellophane cellphone +cellularity cellulite cellulitis celluloid cellulose cellulosic celom celoma +celosia celsius celt celtic celtis celtuce cembalo cement cementite cementum +cemetery cenchrus cenobite cenogenesis cenotaph cenozoic censer censor censoring +censorship censure census cent cental centare centas centaur centaurea +centaurium centaurus centaury centavo centenarian centenary centennial center +centerboard centerfield centerfielder centerfold centering centerline +centerpiece centesimo centesis centile centiliter centilitre centime centimeter +centimetre centimo centipede centner central centralisation centralism +centrality centralization centranthus centrarchid centrarchidae centre +centreboard centrefold centrepiece centrex centrifugation centrifuge centriole +centriscidae centrism centrist centrocercus centroid centrolobium centromere +centropomidae centropomus centropristis centropus centrosema centrosome +centrospermae centrum centunculus centurion century ceo cephalalgia +cephalanthera cephalaspid cephalaspida cephalexin cephalhematoma cephalitis +cephalobidae cephalochordata cephalochordate cephaloglycin cephalohematoma +cephalometry cephalopod cephalopoda cephalopterus cephaloridine cephalosporin +cephalotaceae cephalotaxaceae cephalotaxus cephalothin cephalotus cepheus +cepphus cer cerambycidae ceramic ceramicist ceramics ceramist cerapteryx ceras +cerastes cerastium cerate ceratin ceratitis ceratodontidae ceratodus ceratonia +ceratopetalum ceratophyllaceae ceratophyllum ceratopogon ceratopogonidae +ceratopsia ceratopsian ceratopsidae ceratopteris ceratosaur ceratosaurus +ceratostomataceae ceratostomella ceratotherium ceratozamia cerberus cercaria +cercidiphyllaceae cercidiphyllum cercidium cercis cercocebus cercopidae +cercopithecidae cercopithecus cercospora cercosporella cere cereal cerebellum +cerebration cerebromeningitis cerebrum cerecloth cerement ceremonial +ceremoniousness ceremony ceres ceresin cereus ceriman cerise cerium cerivastatin +cero ceroxylon cert certainty certhia certhiidae certificate certification +certiorari certitude cerulean cerumen ceruse cerussite cervantes cervicitis +cervid cervidae cervix cervus ceryle cesarean cesarian cesium cessation cession +cesspit cesspool cestida cestidae cestoda cestode cestrum cestum cetacea +cetacean cetchup ceterach cetonia cetoniidae cetorhinidae cetorhinus cetraria +cetrimide cetus cewa ceylon ceylonite cezanne cf cfc cfo cftr cgs ch'i ch'in +ch'ing cha-cha cha-cha-cha chabad chabad-lubavitch chabasite chabazite chablis +chachalaca chachka chacma chad chadar chaddar chadian chadic chadlock chador +chaenactis chaenomeles chaenopsis chaeronea chaeta chaetodipterus chaetodon +chaetodontidae chaetognath chaetognatha chafe chafeweed chaff chaffinch +chaffweed chafing chaga chagall chagatai chagga chagrin chahta chain chain- +smoker chains chainsaw chair chairlift chairman chairmanship chairperson +chairwoman chaise chait chaja chalaza chalazion chalcanthite chalcedon +chalcedony chalcid chalcidae chalcidfly chalcididae chalcis chalcocite +chalcopyrite chalcostigma chaldaea chaldaean chaldea chaldean chaldee chaldron +chalet chalice chalk chalkboard chalkpit chalkstone challah challenge challenger +challis chalons chalons-sur-marne chalybite chamaea chamaecrista chamaecyparis +chamaecytisus chamaedaphne chamaeleo chamaeleon chamaeleonidae chamaeleontidae +chamaemelum chamber chamberlain chambermaid chamberpot chambers chambray +chameleon chamfer chamfron chammy chamois chamomile chamosite champ champagne +champagne-ardenne champaign champerty champion championship champlain +champollion chanal chanar chance chance-medley chancel chancellery chancellor +chancellorship chancellorsville chancery chancre chancroid chandelier chandelle +chandi chandler chandlery chanfron chang changan change change-of-pace change-up +changeability changeableness changefulness changelessness changeling changeover +changer changjiang changtzu channel channelisation channelization channels +channidae channukah channukkah chanoyu chant chantarelle chanter chanterelle +chantey chanting chantry chanty chanukah chanukkah chaos chap chaparral chapati +chapatti chapeau chapel chapelgoer chaperon chaperone chapiter chaplain +chaplaincy chaplainship chaplet chaplin chapman chapter chapterhouse chapultepec +char chara charabanc characeae characid characidae characin characinidae +character characterisation characteristic characterization charade charades +charadrii charadriidae charadriiformes charadrius charales charcoal charcot +charcuterie chard chardonnay charge chargeman charger chari chari-nile charina +chariness chariot charioteer charisma charitableness charity charivari charlatan +charlatanism charlemagne charleroi charles charleston charlestown charley-horse +charlock charlotte charlottetown charm charmer charnel charolais charon +charophyceae charr charronia chart charter charterhouse chartism chartist +chartres chartreuse charwoman charybdis chase chased chaser chasid chasidim +chasidism chasm chasse chassid chassidim chassidism chassis chasteness +chastening chastisement chastity chasuble chat chateau chateau-thierry +chateaubriand chatelaine chateura chatroom chattahoochee chattanooga chattel +chatter chatterbox chatterer chattering chaucer chauffeur chauffeuse chaulmoogra +chaulmugra chauna chauvinism chauvinist chavez chaw chawbacon cheap-jack +cheapjack cheapness cheapskate cheat cheater cheatgrass cheating chebab chechen +chechenia chechnya check check-in checkbook checker checkerberry checkerbloom +checkerboard checkers checklist checkmate checkout checkpoint checkrein +checkroom checksum checkup cheddar cheek cheekbone cheekiness cheekpiece cheep +cheer cheerer cheerfulness cheering cheerio cheerleader cheerlessness cheese +cheeseboard cheeseburger cheesecake cheesecloth cheeseflower cheesemonger +cheetah cheever cheewink chef chef-d'oeuvre cheilanthes cheilitis cheiloschisis +cheilosis cheiranthus chekhov chekov chela chelate chelation chelicera +chelicerata chelidonium chelifer cheloid chelone chelonethida chelonia chelonian +chelonidae cheloniidae chelyabinsk chelydra chelydridae chemakuan chemakum +chemical chemiluminescence chemise chemisorption chemist chemist's chemistry +chemnitz chemoimmunology chemoreceptor chemosis chemosorption chemosurgery +chemosynthesis chemotaxis chemotherapy chemulpo chen chenfish chenille chennai +chenopodiaceae chenopodiales chenopodium cheops cheque chequebook chequer +cherbourg cheremis cheremiss cherepovets cherimolla cherimoya chermidae +chernobyl cherokee cheroot cherry cherrystone chert cherub cherubini chervil +chess chessboard chessman chest chester chesterfield chesterton chestnut chetah +chetrum cheval-de-frise chevalier chevaux-de-frise cheviot cheviots chevre +chevron chevrotain chew chewa chewer chewing chewink cheyenne chi chianti +chiaroscuro chiasm chiasma chiasmus chic chicago chicane chicanery chicano +chicha chichewa chichi chichipe chick chickadee chickamauga chickasaw chicken +chickenfeed chickenpox chickenshit chickeree chickpea chickweed chicle chicness +chico chicory chicot chiding chief chieftain chieftaincy chieftainship chiffon +chiffonier chigetai chigger chiggerflower chignon chigoe chihuahua chilblain +chilblains child childbearing childbed childbirth childcare childhood +childishness childlessness chile chilean chili chiliad chiliasm chiliast chill +chiller chilli chilliness chilling chilly chiloe chilomastix chilomeniscus +chilomycterus chilopoda chilopsis chiluba chimaera chimaeridae chimakum +chimaphila chimariko chimborazo chime chimera chimney chimneypiece chimneypot +chimneystack chimneysweep chimneysweeper chimonanthus chimp chimpanzee chimwini +chin chin-up chin-wag chin-wagging china chinaberry chinaman chinaware chincapin +chinch chincherinchee chinchilla chinchillidae chinchillon chinchona chine +chinese chingpo chink chinkapin chino chinoiserie chinook chinookan chinquapin +chintz chiococca chionanthus chios chip chipboard chipewyan chipmunk chipolata +chipotle chippendale chippewa chippewaian chippewyan chipping chips chiralgia +chirico chirocephalus chirography chirology chiromancer chiromancy chiron +chironomidae chironomus chiropodist chiropody chiropractic chiropractor +chiroptera chiropteran chirp chirpiness chirrup chisel chiseler chiseller +chishona chisinau chislev chit chit-chat chitchat chitin chitlings chitlins +chiton chittagong chittamwood chitterlings chittimwood chivalry chivaree chive +chives chiwere chlamydera chlamydia chlamydiaceae chlamydomonadaceae +chlamydomonas chlamydosaurus chlamydospore chlamyphore chlamyphorus chlamys +chloasma chlor-trimeton chlorambucil chloramine chloramine-t chloramphenicol +chloranthaceae chloranthus chlorate chlordiazepoxide chlorella chlorenchyma +chlorhexidine chloride chlorination chlorine chlorinity chloris chlorite +chloroacetophenone chlorobenzene chlorobenzylidenemalononitrile chlorococcales +chlorococcum chlorofluorocarbon chloroform chlorofucin chloromycetin chlorophis +chlorophoneus chlorophthalmidae chlorophyceae chlorophyl chlorophyll chlorophyta +chlorophyte chloropicrin chloroplast chloroprene chloroquine chlorosis +chlorothiazide chloroxylon chlorpromazine chlorpyrifos chlortetracycline +chlorthalidone chlorura choanocyte choc choc-ice chock chocolate choctaw +choeronycteris choice choiceness choir choirboy choirmaster choke chokecherry +chokedamp chokehold chokepoint choker chokey choking choky cholangiography +cholangitis cholecalciferol cholecystectomy cholecystitis cholecystokinin +cholelithiasis cholelithotomy choler cholera cholestasis cholesterin cholesterol +choline cholinesterase cholla choloepus chomp chomping chomsky chon +chondrichthian chondrichthyes chondrin chondriosome chondrite chondrodystrophy +chondroma chondrosarcoma chondrule chondrus chongqing choo-choo chooser chop +chophouse chopin chopine chopper choppiness chopsteak chopstick choragus choral +chorale chord chordamesoderm chordata chordate chordeiles chorditis +chordomesoderm chordophone chordospartium chore chorea choreographer +choreography chorine chorioallantois choriomeningitis chorion chorioretinitis +choriotis chorister chorizagrotis chorizema chorizo choroid chortle chorus +chosen chou chough chow chowchow chowder chrestomathy chrism chrisom christ +christ's-thorn christchurch christella christendom christening christian +christiania christianisation christianity christianization christie christmas +christmasberry christmastide christmastime christology christopher chroma +chromaesthesia chromate chromaticity chromatid chromatin chromatism chromatogram +chromatography chrome chromesthesia chromite chromium chromoblastomycosis +chromogen chromolithography chromophore chromoplast chromosome chromosphere +chronicle chronicler chronograph chronology chronometer chronoperates +chronoscope chrysalis chrysanthemum chrysaora chrysarobin chrysemys +chrysobalanus chrysoberyl chrysochloridae chrysochloris chrysolepis chrysolite +chrysolophus chrysomelid chrysomelidae chrysophrys chrysophyceae chrysophyllum +chrysophyta chrysopid chrysopidae chrysoprase chrysopsis chrysosplenium +chrysothamnus chrysotherapy chrysotile chuang-tzu chub chubbiness chuck chuck- +will's-widow chucker-out chuckhole chuckle chuckwalla chuddar chufa chug +chukaku-ha chukchi chukka chukker chum chumminess chump chunga chungking chunk +chunking chunnel church church-state churchgoer churchill churchman churchwarden +churchyard churidars churl churn chute chute-the-chute chutney chutzpa chutzpah +chutzpanik chuvash chyle chyloderma chylomicron chyme chymosin chytridiaceae +chytridiales chytridiomycetes ci cia cialis ciao ciardi cibotium cicada +cicadellidae cicadidae cicala cicatrice cicatrix cicer cicero cicerone cichlid +cichlidae cichorium cicindelidae ciconia ciconiidae ciconiiformes cicuta cid +cider ciderpress cigar cigaret cigarette cigarfish cigarillo cilantro ciliata +ciliate cilioflagellata ciliophora ciliophoran cilium cim cimabue cimarron +cimetidine cimex cimicidae cimicifuga cinch cinchona cinchonine cincinnati +cincinnatus cinclidae cinclus cincture cinder cinderella cine-camera cine-film +cinema cinematographer cinematography cineraria cinerarium cingulum cinnabar +cinnamene cinnamomum cinnamon cinque cinquefoil cio cipher cipro ciprofloxacin +cira circaea circaetus circassian circe circinus circle circlet circuit +circuitry circular circularisation circularity circularization circulation +circumcision circumduction circumference circumflex circumlocution +circumnavigation circumscription circumspection circumstance circumstances +circumvention circumvolution circus cirio cirque cirrhosis cirrhus cirriped +cirripede cirripedia cirrocumulus cirrostratus cirrus cirsium cis cisc cisco +cistaceae cistercian cistern cisterna cistothorus cistron cistus citadel +citation cite citellus citharichthys cither cithern citizen citizenry +citizenship citlaltepetl citole citrange citrate citrin citrine citron +citroncirus citronwood citrulline citrullus citrus cittern city city-state +cityscape cive civet civics civies civilian civilisation civility civilization +civvies cjd cl clabber clack cladding clade cladistics cladode cladogram +cladonia cladoniaceae cladophyll cladorhyncus cladrastis claforan claim claimant +clairvoyance clairvoyant clam clamatores clambake clamber clamminess clammyweed +clamor clamoring clamour clamouring clamp clampdown clams clamshell clan clang +clanger clangor clangoring clangour clangula clank clannishness clansman +clanswoman clap clapboard clapper clapperboard clappers clapping claptrap claque +clarence claret clarification clarinet clarinetist clarinettist clarion clarity +clark clarksburg claro clary clash clasp class classic classical classicalism +classicism classicist classics classification classified classifier classmate +classroom classwork clast clathraceae clathrus clatter claudication claudius +clause clausewitz claustrophobe claustrophobia claustrum clavariaceae claviceps +clavichord clavicipitaceae clavicle clavier clavus claw clawback clawfoot +clawhammer claxon clay claymore claystone claytonia clayware clean cleaner +cleaners cleaning cleanliness cleanness cleanser cleansing cleanthes cleanup +clear clearance clearcutness clearing clearness clearstory clearway clearweed +cleat cleats cleavage cleaver cleavers clef cleft cleg clegg cleistes +cleistocarp cleistogamy cleistothecium clematis clemenceau clemency clemens +clementine clench cleome cleopatra clepsydra clerestory clergy clergyman cleric +clericalism clericalist clerid cleridae clerihew clerisy clerk clerking +clerkship clethra clethraceae clethrionomys cleveland cleverness clevis clew +clews cli clianthus cliche clichy clichy-la-garenne click click-clack clickety- +clack clickety-click client clientage clientele cliff cliff-brake cliffhanger +cliftonia climacteric climate climatologist climatology climax climb climb-down +climber climbing clime clinch clincher cline cling clingfilm clingfish +clingstone clinic clinician clinid clinidae clink clinker clinocephalism +clinocephaly clinodactyly clinometer clinopodium clinoril clinton clintonia clio +clioquinol clip clip-clop clip-on clipboard clipper clippety-clop clipping +clique cliquishness clit clitocybe clitoria clitoridectomy clitoris clive +clivers cloaca cloak cloakmaker cloakroom clobber cloche clock clock-watching +clocking clockmaker clocks clocksmith clockwork clod clodhopper clofibrate clog +cloisonne cloister clomid clomiphene clomipramine clon clone clonidine cloning +clonus clop clopping clorox close closedown closeness closeout closer closet +closeup closing clostridia clostridium closure clot clotbur cloth clothes +clothesbrush clotheshorse clothesline clothespin clothespress clothier clothing +clotho clotting cloture cloud cloud-cuckoo-land cloudberry cloudburst cloudiness +clouding cloudlessness clout clove clover clover-root cloverleaf cloveroot +clovis clowder clown clowning clozapine clozaril club club-head club-moss +clubbing clubfoot clubhead clubhouse clubroom cluck clucking clue clumber clump +clumping clumsiness clunch clunk clunking clupea clupeid clupeidae clusia +clusiaceae cluster clustering clutch clutches clutter clyde clydesdale clypeus +clyster clytemnestra cm cmb cmbr cmv cnemidophorus cnicus cnidaria cnidarian +cnidoscolus cnidosporidia cnossos cnossus cnpz cns cnut co co-beneficiary co- +defendant co-discoverer co-ed co-occurrence co-op co-optation co-option co- +ordinate co-pilot co-respondent co-star co-worker co2 coach coach-and-four +coachbuilder coaching coachman coachwhip coaction coadjutor coagulant coagulase +coagulation coagulator coagulum coahuila coal coalbin coalescence coalescency +coalface coalfield coalhole coalition coalman coalpit coaming coarctation +coarseness coast coaster coastguard coastguardsman coastland coastline coat +coatdress coatee coati coati-mondi coati-mundi coating coatrack coatroom +coattail coauthor coax coaxer coaxing cob cobalamin cobalt cobaltite cobber +cobble cobbler cobblers cobblestone cobbling cobia cobitidae cobnut cobol cobra +cobweb coca cocain cocaine cocarboxylase cocci coccidae coccidia +coccidioidomycosis coccidiomycosis coccidiosis coccidium coccinellidae +coccobacillus coccoidea coccothraustes cocculus coccus coccyx coccyzus cochimi +cochin cochineal cochise cochlea cochlearia cochlearius cochran cock cock-a +-doodle-doo cock-a-leekie cockade cockaigne cockateel cockatiel cockatoo +cockatrice cockchafer cockcroft cockcrow cocker cockerel cockfight cockfighting +cockhorse cockiness cockle cockle-bur cockle-burr cocklebur cockleburr +cockleshell cockloft cockney cockpit cockroach cockscomb cocksfoot cockspur +cocksucker cocksureness cocktail cockup cocky-leeky coco cocoa cocoanut cocobolo +coconspirator coconut cocoon cocooning cocopa cocopah cocos cocoswood cocotte +cocoyam cocozelle cocteau cocus cocuswood cocytus cod coda codariocalyx coddler +code codefendant codeine coder codetalker codex codfish codger codiaeum codicil +codification coding codling codlins-and-cream codon codpiece codswallop cody +coeducation coefficient coelacanth coelenterata coelenterate coelenteron +coeloglossum coelogyne coelom coelophysis coelostat coenobite coenzyme coercion +coereba coerebidae coeval coevals coexistence coextension cofactor coffea coffee +coffeeberry coffeecake coffeehouse coffeepot coffer cofferdam coffin cofounder +cog cogency cogitation cognac cognate cognation cognisance cognition cognizance +cognomen cognoscente cogwheel cohabitation cohan coherence coherency cohesion +cohesiveness cohn coho cohoe cohort cohosh cohune coif coiffeur coiffeuse +coiffure coign coigne coigue coil coin coinage coincidence coiner coinsurance +coir coition coitus coke col cola colander colaptes colbert colchicaceae +colchicine colchicum colchis cold coldcream coldheartedness coldness cole +coleonyx coleoptera coleridge coleslaw colette coleus colewort colic colicroot +colima colinus coliphage coliseum colitis collaboration collaborationism +collaborationist collaborator collage collagen collagenase collapse collar +collarbone collard collards collateral collation colleague collect collectable +collectible collecting collection collective collectivisation collectivism +collectivist collectivization collector colleen college collegian collembola +collembolan collet collider collie collier colliery colligation collimation +collimator collins collinsia collinsonia collision collocalia collocation +collodion colloid colloquialism colloquium colloquy collotype collusion +collyrium collywobbles colobus colocasia cologne colombia colombian colombo +colon colonel colonial colonialism colonialist colonic colonisation coloniser +colonist colonization colonizer colonnade colonoscope colonoscopy colony +colophon colophony color coloradan coloradillo colorado coloration coloratura +colorcast colored colorimeter colorimetry coloring colorist colorlessness colors +colossae colosseum colossian colossians colossus colostomy colostrum colour +colouration colourcast colouring colourlessness colours colpitis colpocele +colpocystitis colpocystocele colpoxerosis colt coltan colter coltsfoot coluber +colubrid colubridae colubrina colugo columba columbarium columbary columbia +columbidae columbiformes columbine columbite columbite-tantalite columbium +columbo columbus columella column columnea columniation columnist colutea +colymbiformes colza coma comanche comandra comatoseness comatula comatulid +comatulidae comb comb-out comb-plate combat combatant combativeness comber +combination combine combing combining combo combretaceae combretum +combustibility combustible combustibleness combustion come come-on comeback +comedian comedienne comedo comedown comedy comeliness comenius comer comestible +comet comeupance comeuppance comfit comfort comfortableness comforter comforts +comfrey comic comicality coming comint comity comma command commandant commander +commandership commandery commandment commando commelina commelinaceae +commelinales commelinidae commemoration commemorative commencement commendation +commensal commensalism commensurateness comment commentary commentator commerce +commercial commercialisation commercialism commercialization commie commination +commiphora commiseration commissar commissariat commissary commission +commissionaire commissioner commissioning commissure commitment committal +committedness committee committeeman committeewoman commixture commode +commodiousness commodity commodore common commonage commonality commonalty +commoner commonness commonplace commonplaceness commons commonweal commonwealth +commotion communalism commune communicant communicating communication +communications communicativeness communicator communion communique communisation +communism communist community communization commutability commutation commutator +commute commuter commuting comoros comp compact compaction compactness companion +companionability companionableness companionship companionway company +comparability comparative compare comparing comparison compartment +compartmentalisation compartmentalization compass compassion compassionateness +compatibility compatriot compeer compendium compensation compere competence +competency competition competitiveness competitor compilation compiler compiling +complacence complacency complainant complainer complaint complaisance complement +complementarity complementary complementation completeness completion complex +complexifier complexion complexity complexness compliance compliancy +complicatedness complication complicity compliment compliments complin compline +component comportment composer composing compositae composite compositeness +composition compositor compost composure compote compound compounding +comprehensibility comprehension comprehensive comprehensiveness compress +compressibility compressing compression compressor compromise compromiser +compsognathus compton comptonia comptroller comptrollership compulsion +compulsive compulsiveness compulsivity compunction computation computer +computerization computing comrade comradeliness comradery comradeship comstock +comstockery comte comtism con conacaste conakry concatenation concaveness +concavity concealing concealment conceding conceit conceitedness conceivability +conceivableness conceiver concentrate concentration concentricity concepcion +concept conception conceptualisation conceptualism conceptuality +conceptualization conceptus concern concert concert-goer concertina concerto +concession concessionaire concessioner conch concha conchfish conchologist +conchology concierge conciliation conciliator conciseness concision conclave +conclusion conclusiveness concoction concomitance concomitant concord +concordance concordat concourse concrete concreteness concretion concretism +concubinage concubine concupiscence concurrence concurrency concussion +condemnation condensate condensation condenser condensing condescendingness +condescension condiment condition conditionality conditioner conditioning +conditions condo condolence condom condominium condonation condor condorcet +conduct conductance conducting conduction conductivity conductor conductress +conduit condyle condylion condylura cone coneflower conenose conepatus conessi +conestoga coney confab confabulation confect confection confectionary +confectioner confectionery confederacy confederate confederation conferee +conference conferment conferral conferrer conferva confession confessional +confessor confetti confidant confidante confidence confidentiality configuration +configurationism confinement confines confirmation confiscation confit confiture +conflagration conflict confluence confluent conflux conformance conformation +conformism conformist conformity confrere confrontation confucian confucianism +confucianist confucius confusedness confusion confutation confuter conga conge +congealment congee congelation congenator congener congeneric congeniality +congenialness conger congeries congestion congius conglobation conglomerate +conglomeration conglutination congo congolese congou congratulation +congratulations congregant congregating congregation congregationalism +congregationalist congress congressman congresswoman congreve congridae +congruence congruity congruousness conic conidiophore conidiospore conidium +conifer coniferales coniferophyta coniferophytina coniferopsida conilurus conima +coniogramme conium conjecture conjugate conjugation conjunction conjunctiva +conjunctive conjunctivitis conjuncture conjuration conjurer conjuring conjuror +conjury conk conker connaraceae connarus connectedness connecter connecticut +connecticuter connection connective connectivity connector connexion conniption +connivance connochaetes connoisseur connoisseurship connolly connors connotation +conocarpus conoclinium conodont conodonta conodontophorida conoid conopodium +conospermum conoy conquering conqueror conquest conquistador conrad conradina +consanguinity conscience conscientiousness consciousness conscript conscription +consecration consensus consent consequence conservancy conservation +conservationist conservatism conservative conservativism conservativist +conservatoire conservator conservatory conserve conserves considerateness +consideration consignee consigner consignment consignor consistence consistency +consistory consolation console consolida consolidation consomme consonance +consonant consort consortium conspecific conspectus conspicuousness conspiracy +conspirator constable constabulary constance constancy constant constantan +constantina constantine constantinople constatation constellation consternation +constipation constituency constituent constitution constitutional +constitutionalism constitutionalist constraint constriction constrictor +construal construct construction constructiveness constructivism constructivist +constructor consubstantiation consuetude consuetudinal consuetudinary consul +consulate consulship consultancy consultant consultation consumer consumerism +consummation consumption consumptive contact contadino contagion container +containerful containership containment contaminant contamination contemplation +contemplative contemplativeness contemporaneity contemporaneousness +contemporaries contemporary contempt contemptibility contemptuousness contender +content contentedness contention contentiousness contentment contents contest +contestant contestation contestee contester context contextualism contiguity +contiguousness continence continency continent contingence contingency +contingent continuance continuant continuation continuative continuity continuo +continuousness continuum conto contopus contortion contortionist contour contra +contraband contrabandist contrabass contrabassoon contraception contraceptive +contract contractility contracting contraction contractor contracture +contradance contradiction contradictoriness contradictory contradistinction +contrafagotto contrail contraindication contralto contraption contrapuntist +contrarian contrariety contrariness contrary contras contrast contravention +contredanse contretemps contribution contributor contriteness contrition +contrivance contriver control controller controllership controversialist +controversy contumacy contumely contusion conundrum conurbation conuropsis +convalescence convalescent convallaria convallariaceae convection convector +convener convenience conveniences convening convent conventicle convention +conventionalisation conventionalism conventionality conventionalization +conventioneer convergence convergency converging conversance conversancy +conversation conversationalist conversationist converse conversion converso +convert converter convertibility convertible convertor convexity convexness +conveyance conveyancer conveyancing conveyer conveying conveyor convict +convictfish conviction convincingness conviviality convocation convolution +convolvulaceae convolvulus convoy convulsion cony conyza coo cook cookbook cooke +cooker cookery cookfire cookhouse cookie cooking cookout cookstove cookware +cooky cool coolant cooler coolidge coolie cooling coolness coolwart cooly coon +coondog coonhound coonskin coontie coop cooper cooperation cooperative +cooperativeness cooperator cooperstown coordinate coordination coordinator coosa +coot cooter cootie cop copaiba copal copaline copalite copartner copartnership +cope copeck copehan copenhagen copepod copepoda copernicia copernicus copestone +copier copilot coping copiousness copland copley copolymer copout copper +copperhead copperplate coppersmith copperware coppice coppola copra coprinaceae +coprinus coprolalia coprolite coprolith coprophagia coprophagy copse copt coptic +coptis copula copulation copulative copy copybook copycat copyhold copyholder +copying copyist copyreader copyright copywriter coquetry coquette coquille cora +coracan coracias coraciidae coraciiformes coracle coragyps corakan coral coral- +wood coralbells coralberry corallorhiza coralroot coralwood coralwort corbel +corbett corbie-step corbiestep corbina corchorus cord cordage cordaitaceae +cordaitales cordaites cordarone corday cordgrass cordia cordial cordiality +cordierite cordite corditis cordoba cordon cordova cordovan cords corduroy +corduroys cordwood cordylidae cordyline cordylus core coreference coregonidae +coregonus coreid coreidae coreligionist corelli coreopsis corer corespondent +corgard corgi coriander coriandrum coricidin corinth corinthian corium corixa +corixidae cork corkage corkboard corker corkscrew corkwood corm cormorant corn +cornaceae cornbread corncob corncrake corncrib cornea corneille cornel cornelian +cornell corner cornerback cornerstone cornet cornetfish cornetist corneum +cornfield cornflour cornflower cornhusk cornhusker cornhusking cornice cornish +cornishman cornishwoman cornmeal cornpone cornsilk cornsmut cornstalk cornstarch +cornu cornucopia cornus cornwall cornwallis corokia corolla corollary corona +coronach coronal coronary coronation coroner coronet coronilla coronion coropuna +corot corozo corp corporal corporality corporation corporatism corporatist +corporeality corposant corps corpse corpulence corpulency corpus corpuscle +corral corrasion correction corrections correctitude corrective correctness +correggio corregidor correlate correlation correlative correlativity +correspondence correspondent corrida corridor corrie corrigenda corrigendum +corroboration corrodentia corroding corrosion corrosive corrugation +corruptibility corruption corruptness corsage corsair corse corselet corset +corsica corslet cortaderia cortef cortege cortes cortex cortez corticium +corticoid corticosteroid corticosterone corticotrophin corticotropin cortina +cortinariaceae cortinarius cortisol cortisone cortland corundom corundum +coruscation corvee corvette corvidae corvus coryanthes corydalidae corydalis +corydalus corylaceae corylopsis corylus corymb corynebacteriaceae +corynebacterium corypha coryphaenidae coryphantha corythosaur corythosaurus +coryza cos coscoroba cosec cosecant cosh cosignatory cosigner cosine cosiness +cosmea cosmetic cosmetician cosmetologist cosmetology cosmid cosmocampus +cosmogeny cosmogony cosmographer cosmographist cosmography cosmolatry +cosmologist cosmology cosmonaut cosmopolitan cosmopolite cosmos cosmotron coss +cossack cost costa costalgia costanoan costermonger costia costiasis costing +costliness costmary costochondritis costs costume costumer costumier costusroot +cosy cot cotacachi cotan cotangent cote cotenant coterie cothromboplastin +cotilion cotillion cotinga cotingidae cotinus cotoneaster cotonou cotopaxi +cotswold cotswolds cottage cottager cottar cotter cottidae cottier cotton +cottonmouth cottonseed cottontail cottonweed cottonwick cottonwood cottus cotula +coturnix cotyledon coucal couch couchette coue cougar cough coughing coulisse +coulomb coulter coumadin coumarone coumarouna council councillor councillorship +councilman councilorship councilwoman counsel counseling counselling counsellor +counsellorship counselor counselor-at-law counselorship count countdown +countenance counter counter-revolutionist counter-sabotage counteraction +counterargument counterattack counterattraction counterbalance counterblast +counterblow counterbombardment counterbore countercharge countercheck +counterclaim countercoup counterculture countercurrent counterdemonstration +counterdemonstrator counterespionage counterexample counterfactuality +counterfeit counterfeiter counterfire counterfoil counterglow counterinsurgency +counterintelligence counterirritant counterman countermand countermarch +countermeasure countermine countermove counteroffensive counteroffer counterpane +counterpart counterperson counterplan counterplay counterplea counterplot +counterpoint counterpoise counterpoison counterproposal counterpunch +counterreformation counterrevolution counterrevolutionary counterrevolutionist +countershot countersign countersignature countersink counterspy counterstain +countersubversion countersuit countertenor counterterrorism counterterrorist +countertop countertransference counterweight counterwoman countess counting +countinghouse countlessness country country-dance countryfolk countryman +countryseat countryside countrywoman counts/minute county coup coupe couperin +couple coupler couplet coupling coupon courage courageousness courante courbaril +courbet courgette courier courlan course courser coursework coursing court +court-martial courtelle courtesan courtesy courthouse courtier courting +courtliness courtroom courtship courtyard couscous cousin cousin-german cousteau +couture couturier couvade couverture covalence covalency covariance covariation +cove coven covenant coventry cover cover-up coverage coverall covering coverlet +covert covertness covetousness covey coville cow cowage coward cowardice +cowardliness cowbarn cowbell cowberry cowbird cowboy cowcatcher cowfish cowgirl +cowhand cowherb cowherd cowhide cowhouse cowl cowlick cowling cowman cowpea +cowpens cowper cowpie cowpoke cowpox cowpuncher cowrie cowry cows cowshed +cowskin cowslip cowtown cox cox-1 cox-2 coxa coxcomb coxsackievirus coxswain +coydog coyness coyol coyote coypu cozenage coziness cozy cpa cpi cpr cps cpu cr +crab crabapple crabbedness crabbiness crabgrass crabmeat crabs cracidae crack +crack-up crackdown cracker crackerberry crackerjack cracking crackle crackleware +crackling cracklings crackpot cracksman cracow cracticidae cracticus cradle +cradlesong craft crafter craftiness craftsman craftsmanship crag cragsman +craigie crake crambe crammer cramp crampbark crampfish crampon crampoon cran +cranberry crane cranesbill crangon crangonidae craniata craniate craniologist +craniology craniometer craniometry craniotomy cranium crank crankcase crankiness +crankshaft cranny crap crap-shooter crapaud crape crapette crapper crappie craps +crapshoot crapshooter crapulence crash crasher craspedia crassitude crassness +crassostrea crassula crassulaceae crataegus crate crateful crater crateva craton +cravat craven cravenness craving craw crawdad crawdaddy crawfish crawford crawl +crawler crawling crawlspace crax crayfish crayon craze craziness crazy crazyweed +creak creaking cream creamcups creamer creamery creaminess crease creashak +creatin creatine creation creationism creativeness creativity creator creature +creche crecy cred credence credendum credential credentials credenza credibility +credibleness credit creditor credits creditworthiness credo credulity +credulousness cree creed creek creel creep creeper creepiness creeping creeps +creepy-crawlies creepy-crawly creese cremains cremation crematorium crematory +cremona crenation crenature crenel crenelation crenellation crenelle creole +creole-fish creon creosol creosote crepe crepis crepitation crepuscle crepuscule +crescendo crescent crescentia cresol cress crest cretaceous cretan crete cretin +cretinism cretonne crevasse crevice crew crewelwork crewet crewman crex crib +cribbage cricetidae cricetus crichton crick cricket cricketer crier crime crimea +criminal criminalisation criminalism criminality criminalization criminalness +criminologist criminology crimp crimper crimson cringle crinion crinkle crinkle- +root crinkleroot crinoid crinoidea crinoline criollo cripple crisis crisp +crispin crispiness crispness crisscross cristal cristobalite criterion crith +critic criticality criticalness criticism critique critter crius crixivan cro +cro-magnon croak croaker croaking croat croatia croatian crocethia crochet +crocheting crock crockery crocket crockett crocodile crocodilia crocodilian +crocodilus crocodylia crocodylidae crocodylus crocolite crocus crocuta croesus +croft crofter crohn croissant cromlech cromorne cromwell cronartium crone cronus +crony cronyism cronyn crook crookback crookedness crookes crookneck crooner +crooning crop crop-dusting cropper croquet croquette crore crosby crosier cross +cross-classification cross-division cross-dresser cross-examination cross- +examiner cross-eye cross-fertilisation cross-fertilization cross-index cross- +link cross-linkage cross-pollination cross-purpose cross-question cross- +questioner cross-reference cross-stitch crossbar crossbeam crossbench +crossbencher crossbill crossbones crossbow crossbreed crossbreeding crosscheck +crosscurrent crosscut crosse crossfire crosshairs crosshatch crosshead +crossheading crossing crossjack crossness crossopterygian crossopterygii +crossover crosspatch crosspiece crossroad crossroads crosstalk crosstie +crosswalk crossway crosswind crossword crotal crotalaria crotalidae crotalus +crotaphion crotaphytus crotch crotchet crotchetiness croton crotonbug crotophaga +crottal crottle crouch croup croupe croupier crouse crouton crow crow-bait +crowbait crowbar crowberry crowd crowding crowfoot crowing crown crown-beard +crown-of-the-field crownbeard crownwork crozier crp crt cruciality crucible +crucifer cruciferae crucifix crucifixion crud crude crudeness crudites crudity +cruelness cruelty cruet cruet-stand cruise cruiser cruiserweight cruller crumb +crumbliness crumhorn crumpet crunch crupper crus crusade crusader cruse crush +crusher crushing crust crustacea crustacean crutch crux cry cryaesthesia crybaby +cryesthesia crying cryoanaesthesia cryoanesthesia cryobiology cryocautery +cryogen cryogenics cryogeny cryolite cryometer cryonics cryopathy cryophobia +cryoscope cryostat cryosurgery crypt cryptacanthodes cryptanalysis cryptanalyst +cryptanalytics cryptobiosis cryptobranchidae cryptobranchus cryptocercidae +cryptocercus cryptococcosis cryptocoryne cryptogam cryptogamia cryptogram +cryptogramma cryptogrammataceae cryptograph cryptographer cryptography +cryptologist cryptology cryptomeria cryptomonad cryptophyceae cryptophyta +cryptophyte cryptoprocta cryptorchidism cryptorchidy cryptorchism cryptotermes +cryptotis crystal crystallisation crystallite crystallization crystallizing +crystallographer crystallography cs cse csis cst ct ctc ctene ctenidium +ctenizidae ctenocephalides ctenocephalus ctenophora ctenophore cu cub cuba cuban +cubby cubbyhole cube cubeb cubicity cubicle cubism cubist cubit cubitiere +cubitus cuboid cuckold cuckoldom cuckoldry cuckoo cuckoo-bumblebee cuckooflower +cuckoopint cuculidae cuculiformes cuculus cucumber cucumis cucurbit cucurbita +cucurbitaceae cud cudbear cuddle cuddling cuddy cudgel cudweed cue cuff cufflink +cuirass cuirassier cuisine cuisse cuke cul culbertson culcita culdoscope +culdoscopy culebra culex culiacan culicidae cull cullender cullis culm +culmination culotte culpability culpableness culprit cult cultism cultist +cultivar cultivation cultivator culturati culture cultus culverin culvert cum +cumana cumarone cumberland cumbersomeness cumbria cumfrey cumin cuminum +cummerbund cummings cumquat cumulation cumulonimbus cumulus cunaxa cunctation +cunctator cuneiform cuneus cuniculus cunner cunnilinctus cunnilingus cunning +cunningham cunoniaceae cunt cuon cup cupbearer cupboard cupcake cupel cupflower +cupful cupid cupidity cupola cuppa cupper cupping cupressaceae cupressus +cuprimine cuprite cupronickel cupule cuquenan cur curability curableness curacao +curacoa curacy curandera curandero curare curassow curate curative curator +curatorship curb curbing curbside curbstone curculionidae curcuma curd curdling +cure cure-all curet curettage curette curettement curfew curia curie +curietherapy curing curio curiosa curiosity curiousness curitiba curium curl +curler curlew curlicue curliness curling curly-heads curmudgeon currajong +currant currawong currency current currentness curriculum currier curry +currycomb curse cursive cursor cursorius curtailment curtain curtilage curtis +curtisia curtiss curtness curtsey curtsy curvaceousness curvature curve curvet +cusco cuscus cuscuta cush-cush cushat cushaw cushing cushion cushioning cushitic +cusk cusk-eel cusp cuspid cuspidation cuspidor cuss cussedness custard custer +custodian custodianship custody custom custom-built custom-made customer +customhouse customs customshouse cut cut-and-thrust cut-in cut-up cutaway +cutback cutch cuteness cuterebra cuterebridae cuticle cuticula cutin cutis +cutlas cutlass cutlassfish cutler cutlery cutlet cutoff cutout cutpurse cutter +cutthroat cutting cuttle cuttlefish cutwork cutworm cuvier cuzco cv cva cwm cwt +cyamopsis cyamus cyan cyanamid cyanamide cyanide cyanite cyanobacteria +cyanocitta cyanocobalamin cyanogen cyanohydrin cyanophyceae cyanophyta cyanosis +cyanuramide cyathea cyatheaceae cybele cyber-terrorism cyber-terrorist cyberart +cybercafe cybercrime cyberculture cybernation cybernaut cybernetics cyberphobia +cyberpunk cybersex cyberspace cyberwar cyborg cycad cycadaceae cycadales +cycadofilicales cycadophyta cycadophytina cycadopsida cycas cyclades cyclamen +cycle cycles/second cyclicity cycling cycliophora cyclist cyclobenzaprine +cyclohexanol cycloid cycloloma cyclone cyclooxygenase cyclooxygenase-1 +cyclooxygenase-2 cyclopaedia cyclopedia cyclopes cyclophorus cyclopia +cyclopropane cyclops cyclopteridae cyclopterus cyclorama cycloserine cyclosis +cyclosorus cyclosporeae cyclostomata cyclostome cyclostyle cyclothymia cyclotron +cycnoches cyder cydippea cydippida cydippidea cydonia cygnet cygnus cylinder +cylindricality cylindricalness cylix cyma cymatiidae cymatium cymbal cymbalist +cymbid cymbidium cyme cymene cymling cymograph cymric cymru cymry cymule +cynancum cynara cynewulf cynic cynicism cynipidae cynips cynocephalidae +cynocephalus cynodon cynodont cynodontia cynoglossidae cynoglossum cynomys +cynophobia cynopterus cynoscephalae cynoscion cynosure cynthia cynwulf cyon +cyperaceae cyperus cypher cyphomandra cypraea cypraeidae cypre cypress cyprian +cyprinid cyprinidae cypriniformes cyprinodont cyprinodontidae cyprinus cypriot +cypriote cypripedia cypripedium cyproheptadine cyprus cyril cyrilla cyrilliaceae +cyrillic cyrtomium cyrus cyst cysteine cystine cystitis cystocele cystolith +cystoparalysis cystophora cystoplegia cystopteris cytherea cytidine cytisus +cytoarchitectonics cytoarchitecture cytochrome cytogenesis cytogeneticist +cytogenetics cytogeny cytokine cytokinesis cytokinin cytol cytologist cytology +cytolysin cytolysis cytomegalovirus cytomembrane cytopenia cytophotometer +cytophotometry cytoplasm cytoplast cytosine cytoskeleton cytosmear cytosol +cytostome cytotoxicity cytotoxin czar czarina czaritza czech czechoslovak +czechoslovakia czechoslovakian czerny czestochowa d d-day d-layer d.a. d.c. +d.p.r.k. da da'wah dab daba dabbler dabchick daboecia dacca dace dacelo dacha +dachau dachshund dachsie dacite dacninae dacoit dacoity dacron dacrycarpus +dacrydium dacrymyces dacrymycetaceae dacryocyst dacryocystitis dacryon dactyl +dactylis dactyloctenium dactylomegaly dactylopiidae dactylopius dactylopteridae +dactylopterus dactylorhiza dactyloscopidae dad dada dadaism daddy dado dae-han- +min-gook daedal daedalus daemon daffo daffodil dafla daftness dag dagame dagan +dagda dagestani dagga dagger daggerboard dago dagon daguerre daguerreotype dah +dahl dahlia dahna dahomey daikon dail daily daimler daimon daintiness dainty +daiquiri dairen dairy dairying dairymaid dairyman dais daishiki daisy daisy-bush +daisybush dak dakar dakoit dakoity dakota dal dalasi dalbergia dale dalea +dalesman daleth dali dalian dallas dalliance dallier dallisgrass dalmane +dalmatia dalmatian dalo dalton daltonism dam dama damage damages damaliscus +damar damascene damascus damask dame damgalnunna daminozide damkina dammar damn +damnation damned damocles damoiselle damon damosel damourite damozel damp +dampener dampening damper dampness damsel damselfish damselfly damson dana +danaea danaid danaidae danau danaus dance dancer dancing dancing-master +dandelion dander dandruff dandy dandyism dane danewort dangaleat danger +dangerousness dangla dangle-berry dangleberry dangling daniel danish dankness +danmark dano-norwegian danseur danseuse dante danton danu danube danzig daoism +daphne daphnia dapperness dapple dapple-gray dapple-grey dappled-gray dappled- +grey dapsang dapsone daraf dard dardan dardanelles dardanian dardanus dardic +dare daredevil daredevilry daredeviltry darfur dari daricon daring darjeeling +dark darkening darkey darkie darkness darkroom darky darling darlingtonia +darmera darmstadtium darn darnel darner darning darpa darrow darsana dart +dartboard darter dartmouth darts darvon darwin darwinian darwinism das dash +dash-pot dashboard dasheen dashiki dasht-e-kavir dasht-e-lut dassie dastard +dastardliness dasyatidae dasyatis dasymeter dasypodidae dasyprocta dasyproctidae +dasypus dasyure dasyurid dasyuridae dasyurus dat data database date dateline +dating dative datril datum datura daub daubentonia daubentoniidae dauber daubing +daucus daugavpils daughter daughter-in-law daumier dauntlessness dauphin +davallia davalliaceae davenport david daviesia davis davit davy davys daw dawah +dawdler dawdling dawes dawn dawning dawson day dayan daybed daybook dayboy +daybreak daycare daydream daydreamer daydreaming dayflower dayfly daygirl +daylight daylily daypro days dayspring daystar daytime dayton daze dazzle db dba +dbms dc dccp dci dd ddc ddi dds ddt de de-escalation de-iodinase de-iodination +de-nazification de-stalinisation de-stalinization dea deacon deaconess +deactivation dead dead-man's-fingers dead-men's-fingers deadbeat deadbolt +deadening deadeye deadhead deadlight deadline deadliness deadlock deadness +deadwood deaf deaf-aid deaf-mute deaf-muteness deaf-mutism deafness deal dealer +dealership dealfish dealignment dealing dealings deamination deaminization dean +deanery deanship dear dearest dearie dearness dearth deary death death-roll +deathbed deathblow deathrate deathtrap deathwatch deb debacle debarkation +debarment debasement debaser debate debater debauch debauchee debaucher +debauchery debenture debilitation debility debit debitor debridement debriefing +debris debs debt debtor debugger debunking debussy debut debutante dec decade +decadence decadency decadent decadron decaf decagon decagram decahedron decal +decalcification decalcomania decalescence decaliter decalitre decalogue +decameter decametre decampment decantation decanter decapitation decapod +decapoda decapterus decarboxylase decarboxylation decasyllable decathlon decatur +decay decease deceased decedent deceit deceitfulness deceiver deceleration +december decency decennary decennium decentalisation decentralisation +decentralization deception deceptiveness decibel deciding decidua decigram +decile deciliter decilitre decimal decimalisation decimalization decimation +decimeter decimetre decipherer decipherment decision decisiveness decius deck +deck-house decker deckhand deckle declamation declaration declarative declarer +declassification declension declination decline declinometer declivity +declomycin deco decoagulant decoction decoder decoding decolletage +decolonisation decolonization decomposition decompressing decompression +decongestant deconstruction deconstructionism deconstructivism decontamination +decor decoration decorativeness decorator decorousness decortication decorum +decoupage decoy decrease decree decrement decrepitation decrepitude decrescendo +decriminalisation decriminalization decryption decubitus decumaria decumary +decussation ded dedication dedifferentiation deductible deduction deed deedbox +deeds deep deep-freeze deepening deepfreeze deepness deer deer's-ear deer's-ears +deerberry deere deerhound deerskin deerstalker deerstalking defacement +defalcation defalcator defamation defamer default defaulter defeat defeated +defeatism defeatist defecation defecator defect defection defectiveness defector +defence defencelessness defendant defender defenestration defense +defenselessness defensibility defensive defensiveness deference deferment +deferral defervescence defiance defibrillation defibrillator deficiency deficit +defilade defile defilement defiler defining definiteness definition deflagration +deflation deflator deflection deflector deflexion defloration defoe defoliant +defoliation defoliator deforestation deformation deformity defrauder defrayal +defrayment defroster deftness defunctness defusing degas degaussing degeneracy +degenerate degeneration deglutition degradation degrader degree degustation +dehiscence dehumanisation dehumanization dehydration dehydroretinol deicer +deictic deification deimos deinocheirus deinonychus deipnosophist deism deist +deity deixis dejectedness dejection dejeuner dekagram dekaliter dekalitre +dekameter dekametre dekker dekko delacroix delairea delavirdine delaware +delawarean delawarian delay delayer delbruck delectability delectation delegacy +delegate delegating delegation deletion delf delft delhi deli deliberateness +deliberation delibes delicacy delicatessen delichon delicious deliciousness +delight delilah delimitation delineation delinquency delinquent deliquium +delirium delius deliverable deliverance deliverer delivery deliveryman dell +delonix delorme delphi delphinapterus delphinidae delphinium delphinus delta +deltasone deltoid deluge delusion demagnetisation demagnetization demagog +demagogue demagoguery demagogy demand demander demantoid demarcation demarche +dematiaceae demavend demeanor demeanour dementedness dementia demerara demerit +demerol demesne demeter demetrius demi-glaze demiglace demigod demijohn demille +demimondaine demimonde demineralisation demineralization demise demisemiquaver +demister demitasse demiurge demo demobilisation demobilization democracy +democrat democratisation democratization democritus demodulation demodulator +demogorgon demographer demographic demographist demography demoiselle +demolishing demolition demon demonetisation demonetization demoniac demonisation +demonism demonization demonolatry demonstrability demonstration demonstrative +demonstrativeness demonstrator demoralisation demoralization demosthenes demotic +demotion dempsey demulcent demulen demur demureness demurrage demurral demurrer +demyelination demythologisation demythologization den denali denationalisation +denationalization denaturant denazification dendranthema dendraspis dendrite +dendroaspis dendrobium dendrocalamus dendrocolaptes dendrocolaptidae +dendroctonus dendroica dendrolagus dendromecon deneb denebola dengue denial +denier denigration denim denisonia denizen denmark dennstaedtia dennstaedtiaceae +denomination denominationalism denominator denotation denotatum denouement +denouncement denseness densification densimeter densitometer densitometry +density dent dental dentaria denticle dentifrice dentin dentine dentist +dentistry dentition denture denturist denudation denunciation denver deodar +deodorant deodourant deossification deoxyadenosine deoxycytidine deoxyephedrine +deoxyguanosine deoxyribose deoxythymidine depardieu deparia departed departer +department departure dependability dependableness dependance dependant +dependence dependency dependent depersonalisation depersonalization depicting +depiction depigmentation depilation depilator depilatory depletion deployment +depokene depolarisation depolarization deponent depopulation deportation +deportee deportment deposer deposit depositary deposition depositor depository +depot depravation depravity deprecation depreciation depreciator depredation +depressant depression depressive depressor deprivation depth deputation deputy +deracination derailment derain derangement derby deregulating deregulation +derelict dereliction derision derivation derivative deriving derma dermabrasion +dermacentor dermaptera dermatitis dermatobia dermatoglyphic dermatoglyphics +dermatologist dermatology dermatome dermatomycosis dermatomyositis +dermatophytosis dermatosclerosis dermatosis dermestidae dermis dermochelyidae +dermochelys dermoptera derogation derrick derrida derriere derring-do derringer +derris derv dervish des desalination desalinisation desalinization descant +descartes descendant descendants descendent descender descensus descent +description descriptivism descriptor descurainia desecration desegregation +desensitisation desensitization desert deserter desertification desertion +deserts deservingness deshabille desiccant desiccation desideratum design +designation designatum designer designing desipramine desirability desirableness +desire desk deskman desktop desmanthus desmid desmidiaceae desmidium desmodium +desmodontidae desmodus desmograthus desolation desorption despair despatch +desperado desperate desperation despicability despicableness despisal despising +despite despoilation despoiler despoilment despoina despoliation despondence +despondency despot despotism desquamation dessert dessertspoon dessertspoonful +dessiatine destabilisation destabilization destalinisation destalinization +destination destiny destitution destroyer destructibility destruction +destructiveness desuetude desynchronisation desynchronization desynchronizing +desyrel detachment detail detailing details detainee detainment detecting +detection detective detector detent detente detention detergence detergency +detergent deterioration determent determinant determinateness determination +determinative determiner determinism determinist deterrence deterrent +detestation dethronement detonation detonator detour detox detoxification +detraction detractor detribalisation detribalization detriment detrition +detritus detroit detumescence deuce deuce-ace deuteranopia deuterium +deuteromycetes deuteromycota deuteromycotina deuteron deuteronomy deutschland +deutschmark deutzia devaluation devanagari devastation developer developing +development devi deviance deviant deviate deviation deviationism deviationist +device devices devil devil-worship devilfish devilment devilry deviltry +devilwood deviousness devisal devise devisee deviser devising devisor +devitalisation devitalization devoir devolution devolvement devon devonian +devonshire devotedness devotee devotion devotional devourer devoutness devries +dew dewar dewberry dewdrop dewey dewlap dexamethasone dexedrine dexone dexterity +dextrality dextrin dextrocardia dextroglucose dextrorotation dextrose dflp dg +dhahran dhak dhaka dhal dharma dhaulagiri dhava dhawa dhegiha dhodhekanisos +dhole dhoti dhow dhu'l-hijja dhu'l-hijjah dhu'l-qa'dah di-iodotyrosine dia +diabeta diabetes diabetic diabolatry diabolism diabolist diacalpa +diacetylmorphine diachrony diacritic diadem diadophis diaeresis diaghilev +diaglyph diagnosing diagnosis diagnostician diagnostics diagonal diagonalisation +diagonalization diagram diagramming diakinesis dial dialect dialectic +dialectician dialectics dialectology dialeurodes dialog dialogue dialysis +dialyzer diam diamagnet diamagnetism diamante diameter diamine diamond +diamondback diana dianthus diapason diapedesis diapensia diapensiaceae +diapensiales diaper diapheromera diaphone diaphoresis diaphoretic diaphragm +diaphysis diapir diapsid diapsida diarchy diarist diarrhea diarrhoea diarthrosis +diary dias diaspididae diaspora diastasis diastema diastole diastrophism +diathermy diathesis diatom diatomite diatomophyceae diatribe diaz diazepam +diazonium diazoxide dibber dibble dibbuk dibrach dibranch dibranchia +dibranchiata dibranchiate dibs dibucaine dicamptodon dicamptodontid +dicamptodontidae dice dicentra dicer diceros dichloride +dichlorodiphenyltrichloroethane dichloromethane dichondra dichotomisation +dichotomization dichotomy dichroism dichromacy dichromasy dichromat dichromate +dichromatism dichromatopsia dichromia dick dickens dickey dickey-bird dickey- +seat dickeybird dickhead dickie dickie-seat dickinson dicksonia dicksoniaceae +dicky dicky-bird dicky-seat dickybird dicloxacillin dicot dicotyledon +dicotyledonae dicotyledones dicoumarol dicranaceae dicranales dicranopteris +dicranum dicrostonyx dictamnus dictaphone dictate dictation dictator +dictatorship diction dictionary dictostylium dictum dictyophera dictyoptera +dictyosome dicumarol dicynodont dicynodontia didacticism didactics didanosine +diddley diddly diddly-shit diddly-squat diddlyshit diddlysquat didelphidae +didelphis dideoxycytosine dideoxyinosine diderot didion dido didrikson die die- +sinker dieback dieffenbachia diegueno diehard dielectric dielectrolysis diemaker +diencephalon dieresis diervilla diesel diesel-electric diesel-hydraulic +diesinker diesis diestock diestrum diestrus diet dietary dieter dietetics +diethylmalonylurea diethylstilbesterol diethylstilbestrol diethylstilboestrol +dietician dieting dietitian dietrich difference differentia differential +differentiation differentiator difficultness difficulty diffidence difflugia +diffraction diffuseness diffuser diffusion diffusor diflunisal dig digenesis +digest digester digestibility digestibleness digestion digestive digger digging +diggings digit digitalin digitalis digitalisation digitalization digitaria +digitigrade digitisation digitiser digitization digitizer digitoxin dignitary +dignity digoxin digram digraph digression digs dihybrid dihydrostreptomycin +dihydroxyphenylalanine dijon dik-dik dika dike dilantin dilapidation dilatation +dilater dilation dilator dilatoriness dilaudid dildo dilemma dilettante +diligence dill dillenia dilleniaceae dilleniidae dilly-dallier dillydallier +diltiazem diluent dilutant dilution dimaggio dimash dime dimenhydrinate +dimension dimensionality dimer dimetane dimetapp dimethylglyoxime dimetrodon +diminuendo diminution diminutive diminutiveness dimity dimmer dimness dimocarpus +dimorphism dimorphotheca dimout dimple dimwit din dinar dindymene diner dinero +dinesen dinette ding ding-dong dingbat dinge dinghy dinginess dingle dingo +dining dining-hall dining-room dink dinka dinkey dinky dinner dinnertime +dinnerware dinoceras dinocerata dinocerate dinoflagellata dinoflagellate +dinornis dinornithidae dinornithiformes dinosaur dint diocesan diocese +diocletian diode diodon diodontidae diogenes diol diomedeidae dionaea dionysia +dionysius dionysus dioon diophantus diopter dioptre dior diorama diorite +dioscorea dioscoreaceae diospyros diovan dioxide dioxin dip diphenhydramine +diphenylhydantoin diphtheria diphthong diphylla dipladenia diplegia diplococcus +diplodocus diploid diploidy diploma diplomacy diplomat diplomate diplomatist +diplopia diplopoda diplopterygium diplotaxis diplotene dipnoi dipodidae +dipodomys dipogon dipole dipper dippers dipsacaceae dipsacus dipsomania +dipsomaniac dipsosaurus dipstick diptera dipteran dipterocarp dipterocarpaceae +dipteron dipteronia dipteryx diptych dipus dipylon dirac dirca direction +directionality directive directiveness directivity directness director +directorate directorship directory dirge dirham dirigible dirk dirndl dirt +dirtiness dirtying dis disa disability disabled disablement disaccharidase +disaccharide disadvantage disaffection disaffirmation disagreeableness +disagreement disambiguation disambiguator disappearance disappearing +disappointment disapprobation disapproval disarmament disarmer disarming +disarrangement disarray disassembly disassociation disaster disavowal +disbandment disbarment disbelief disbeliever disbursal disbursement disburser +disc discant discard disceptation discernability discernment discharge discina +disciple discipleship disciplinarian discipline disclaimer disclosure disco +discocephali discoglossidae discography discoloration discolouration +discombobulation discomfited discomfiture discomfort discomposure discomycete +discomycetes disconcertion disconcertment disconnect disconnectedness +disconnection disconsolateness discontent discontentedness discontentment +discontinuance discontinuation discontinuity discord discordance discotheque +discount discounter discouragement discourse discourtesy discoverer discovery +discredit discreetness discrepancy discreteness discretion discrimination +discriminator discursiveness discus discussant discussion disdain disdainfulness +disease disembarkation disembarkment disembarrassment disembowelment +disenchantment disenfranchisement disengagement disentanglement disentangler +disequilibrium disestablishment disesteem disfavor disfavour disfiguration +disfigurement disfluency disforestation disfranchisement disfunction +disgorgement disgrace disgracefulness disgruntlement disguise disgust +disgustingness dish dishabille disharmony dishcloth disheartenment dishful +dishonesty dishonor dishonorableness dishonour dishonourableness dishpan dishrag +dishtowel dishware dishwasher dishwashing dishwater disillusion disillusionment +disincentive disinclination disinfectant disinfection disinfestation +disinflation disinformation disingenuousness disinheritance disintegration +disinterest disinterestedness disinterment disinvestment disjointedness +disjunction disjuncture disk diskette dislike dislocation dislodgement +dislodgment disloyalty dismantlement dismantling dismay dismemberment dismissal +dismission dismount disney disneyland disobedience disorder disorderliness +disorganisation disorganization disorientation disowning disownment +disparagement disparager disparateness disparity dispassion dispassionateness +dispatch dispatcher dispensability dispensableness dispensary dispensation +dispenser dispersal dispersion dispiritedness displacement display displeasure +disposable disposal disposition dispossession dispraise disproof disproportion +disprover disputant disputation dispute disqualification disquiet disquietude +disquisition disraeli disregard disrepair disreputability disreputableness +disrepute disrespect disruption dissatisfaction dissection dissembler +dissembling dissemination disseminator dissension dissent dissenter dissertation +disservice dissidence dissident dissilience dissimilarity dissimilation +dissimilitude dissimulation dissimulator dissipation dissociation dissolubility +dissoluteness dissolution dissolve dissolvent dissolver dissolving dissonance +dissuasion dissyllable dissymmetry distaff distance distaste distastefulness +distemper distension distention distich distillate distillation distiller +distillery distillment distinction distinctiveness distinctness distomatosis +distortion distortionist distraction distraint distress distressfulness +distressingness distributary distributer distribution distributor district +distrust distrustfulness disturbance disturber disulfiram disunion disunity +disuse disyllable dit dita ditch ditchmoss dither dithering dithyramb dittany +ditto ditty diuresis diuretic diuril diva divagation divan divarication dive +dive-bombing diver divergence divergency diverseness diversification diversion +diversionist diversity diverticulitis diverticulosis diverticulum divertimento +divestiture divi-divi divide dividend divider divination divine diviner diving +divinity divisibility division divisor divorce divorcee divorcement divot +divulgement divulgence divvy diwan dix dixie dixiecrats dixieland dizziness dj +djakarta djanet djibouti djiboutian djinn djinni djinny dkg dkl dkm dl dle dm +dmd dmus dmz dna dneprodzerzhinsk dnieper dnipropetrovsk do do-gooder do-nothing +do-si-do dobbin doberman dobra dobrich dobson dobsonfly doc docent docetism +docility dock dock-walloper dockage docker docket dockhand docking dockside +dockworker dockyard doctor doctor-fish doctorate doctorfish doctorow doctorspeak +doctrinaire doctrine docudrama document documentary documentation dod dodder +dodderer doddle dodecagon dodecahedron dodecanese dodge dodgem dodger dodging +dodgson dodo dodoma dodonaea doe doei doer doeskin dog dog-ear dog-iron dogbane +dogcart doge dogfight dogfighter dogfish doggedness doggerel doggie doggy +doghouse dogie dogleg dogma dogmatism dogmatist dogsbody dogshit dogsled +dogtooth dogtrot dogwatch dogwood dogy doh doha doi doily doings doj dojc dol +dolby doldrums dole dolefulness dolichocephalic dolichocephalism dolichocephaly +dolichonyx dolichos dolichotis doliolidae doliolum doll dollar dollarfish +dollhouse dollop dolly dolman dolmas dolmen dolobid dolomite dolor dolour +dolphin dolphinfish dolt domain domatium dombeya dome domestic domestication +domesticity domicile domiciliation dominance dominant domination dominatrix +domine dominee domineeringness domingo dominic dominica dominican dominick +dominicus dominie dominion dominique domino dominoes dominos dominus domitian +don don't-know dona donar donatello donation donatism donatist donatus donbas +donbass donee donetsk donetske dong dongle donizetti donjon donkey donkeywork +donkin donna donne donor donut doo-wop doob doodad doodia doodle doodlebug +doodly-squat doofus doohickey doojigger doolittle doom doomed doomsday door +doorbell doorcase doorframe doorhandle doorjamb doorkeeper doorknob doorknocker +doorlock doorman doormat doornail doorplate doorpost doorsill doorstep doorstop +doorstopper doorway dooryard dopa dopamine dopastat dope doppelganger +doppelzentner doppler dorado dorbeetle dorian doric doriden doris dork dorking +dorm dormancy dormer dormition dormitory dormouse doronicum dorotheanthus +dorsiflexion dorsum dortmund dory dorylinae doryopteris dos dosage dose +dosemeter dosimeter dosimetry dossal dossel dosser dosshouse dossier dostoevski +dostoevsky dostoyevsky dot dot-com dotage dotard dotrel dotterel dottle douala +double double-bogey double-crosser double-crossing double-dealer double-dealing +double-decker double-magnum double-prop double-spacing double-u doubleheader +doubler doubles doublespeak doublet doublethink doubleton doubletree doubling +doubloon doubt doubter doubtfulness douche dough doughboy doughnut douglas +douglass doula doura dourah douroucouli dousing dove dovecote dovekie dover +dovetail dovishness dovyalis dowager dowdiness dowding dowdy dowel doweling +dower dowery dowitcher dowland down down-and-out down-bow downbeat downcast +downdraft downer downfall downgrade downheartedness downhill downiness downing +downpour downrightness downshift downside downsizing downslope downspin +downstage downstroke downswing downtick downtime downtown downturn dowry dowse +dowser dowsing doxazosin doxepin doxology doxorubicin doxy doxycycline doyen +doyenne doyley doyly doze dozen dozens dozer dp dph dphil dprk dr. drab draba +drabness dracaena dracaenaceae dracenaceae drachm drachma draco dracocephalum +dracontium dracula dracunculiasis dracunculidae dracunculus draft draftee +drafter drafting draftsman draftsmanship draftsperson drag dragee dragger +dragnet dragoman dragon dragonet dragonfly dragonhead dragoon dragunov drain +drainage drainboard drainpipe drainplug drake dram drama dramamine dramatics +dramatisation dramatist dramatization dramaturgy drambuie drape draper drapery +draught draughts draughtsman dravidian dravidic draw drawback drawbar drawbridge +drawee drawer drawers drawing drawknife drawl drawler drawnwork drawshave +drawstring dray drayhorse dread dreadfulness dreadlock dreadnaught dreadnought +dream dreamer dreaminess dreaming dreamland dreamworld dreariness dreck dredge +dredger dreg dregs dreiser dreissena drenching drepanididae drepanis dresden +dress dressage dresser dressing dressmaker dressmaking drew drey dreyfus drib +dribble dribbler dribbling driblet drier drift driftage drifter driftfish +drifting driftwood drill drilling drimys drink drinkable drinker drinking drip +drippage drippiness dripping drippings dripstone drive drive-in drivel driveller +driver driveshaft driveway driving drixoral drizzle drms drogheda drogue +drollery dromaeosaur dromaeosauridae dromaius drome dromedary dronabinol drone +droning drool drooler droop drop drop-leaf drop-off drop-seed dropkick +dropkicker droplet dropline dropout dropper droppings dropseed dropsy drosera +droseraceae droshky drosky drosophila drosophilidae drosophyllum dross drought +drouth drove drover drowse drowsiness drubbing drudge drudgery drug drugget +drugging druggist drugstore druid druidism drum drumbeat drumbeater drumfire +drumfish drumhead drumlin drummer drumming drumstick drunk drunk-and-disorderly +drunkard drunkenness drupe drupelet druse drusen druthers druze dry dry-gulching +dryad dryadella dryas dryden drydock dryer drygoods drymarchon drymoglossum +drynaria dryness dryopithecine dryopithecus dryopteridaceae dryopteris drypis +drywall ds dscdna dsl dtic dts duad dualism dualist duality dub dubai dubbin +dubbing dubiety dubiousness dublin dubliner dubnium dubonnet dubrovnik dubuque +dubya dubyuh ducat duce duchamp duchess duchy duck duckbill duckboard ducking +duckling duckpin duckpins duckweed ducky duct ductileness ductility ductule +ductulus dud dude dudeen dudgeon duds due duel dueler duelist dueller duellist +duenna duet duette duff duffel duffer duffle dufy dug dugong dugongidae dugout +dukas duke dukedom dulciana dulcimer dulcinea dullard dulles dullness dulse +duluth duma dumas dumbass dumbbell dumbness dumbwaiter dumdum dumetella dummy +dump dumpcart dumper dumpiness dumping dumpling dumplings dumps dumpsite +dumpster dumuzi dun duncan dunce dunderhead dune dung dungaree dungeon dunghill +dunk dunkard dunker dunkerque dunkers dunkirk dunlin dunnock duo duodecimal +duodenum duologue duomo dupe dupery duplex duplicability duplicate duplication +duplicator duplicidentata duplicity dura durability durables durabolin duralumin +duramen durance durango durant durante duration durative durazzo durban durbar +durer duress durga durham durian durio durion durkheim durmast durra durrell +durres durum dusanbe duse dushanbe dusicyon dusk duskiness dusseldorf dust +dustbin dustcart dustcloth duster dustiness dustman dustmop dustpan dustpanful +dustrag dustup dutch dutchman dutchman's-pipe dutifulness duty duvalier duvet +dvd dvorak dwarf dwarfishness dwarfism dweeb dweller dwelling dwindling dy dyad +dyarchy dyaus dyaus-pitar dybbuk dye dye-works dyeing dyer dyer's-broom dyestuff +dyeweed dyewood dying dyirbal dyke dylan dynamic dynamics dynamism dynamite +dynamiter dynamitist dynamo dynamometer dynapen dynast dynasty dyne dysaphia +dysarthria dyscalculia dyschezia dyscrasia dysdercus dysentery dysfunction +dysgenesis dysgenics dysgraphia dyskinesia dyslectic dyslexia dyslogia +dysmenorrhea dysomia dysosmia dyspepsia dyspeptic dysphagia dysphasia dysphemism +dysphonia dysphoria dysplasia dyspnea dyspnoea dysprosium dyssynergia dysthymia +dystopia dystrophy dysuria dytiscidae dyushambe dziggetai e e-bomb e-commerce +e-mail e-mycin e.s.p. ea eacles eadwig eager eagerness eagle eaglet eagre eames +ear ear-shell earache eardrop eardrum earflap earful earhart earl earlap earldom +earliness earlobe earmark earmuff earner earnest earnestness earnings earphone +earpiece earplug earreach earring earshot earth earth-ball earth-closet earth- +god earth-goddess earth-tongue earthball earthenware earthing earthling earthman +earthnut earthquake earthstar earthtongue earthwork earthworm earwax earwig eas +ease easel easement easiness easing east east-sider easter easterly easterner +eastertide eastman eastward easygoingness eatable eatage eater eatery eating +eats eaves eavesdropper eb ebb ebbing ebbtide ebenaceae ebenales ebionite ebit +ebitda eblis ebn ebola ebonics ebonite ebony ebro ebs ebullience ebullition +eburnation eburophyton ebv ec ecarte ecballium ecc eccentric eccentricity +ecchymosis eccles ecclesiastes ecclesiastic ecclesiasticism ecclesiasticus +ecclesiology eccm eccyesis ecdysiast ecdysis ecesis ecf ecg echelon echeneididae +echeneis echidna echidnophaga echinacea echinocactus echinocereus echinochloa +echinococcosis echinococcus echinoderm echinodermata echinoidea echinops echinus +echium echo echocardiogram echocardiograph echocardiography echoencephalogram +echoencephalograph echoencephalography echogram echography echolalia +echolocation echovirus eck eckhart eclair eclampsia eclat eclectic eclecticism +eclecticist eclipse eclipsis ecliptic eclogue ecm eco-warfare ecobabble +ecologist ecology econometrician econometrics econometrist economics economiser +economist economizer economy ecosoc ecosystem ecoterrorism ecotourism ecphonesis +ecrevisse ecru ecstasy ect ectasia ectasis ectoblast ectoderm ectomorph +ectomorphy ectoparasite ectopia ectopistes ectoplasm ectoproct ectoprocta +ectotherm ectozoan ectozoon ectrodactyly ecuador ecuadoran ecuadorian +ecumenicalism ecumenicism ecumenism eczema ed edacity edam edaphosauridae +edaphosaurus edd edda eddington eddo eddy edecrin edelweiss edema eden edentata +edentate ederle edgar edge edger edginess edging edibility edible edibleness +edict edification edifice edinburgh edirne edison editing edition editor +editorial editorialist editorship edmonton edmontonia edmontosaurus edo edp +edronax eds edta educatee education educationalist educationist educator +edutainment edward edwardian edwards edwin edwy ee eec eeg eel eelam eelblenny +eelgrass eelpout eelworm eeriness effacement effect effecter effectiveness +effectivity effector effects effectuality effectualness effectuation effeminacy +effeminateness effendi efferent effervescence efficaciousness efficacy +efficiency effigy effleurage efflorescence effluence effluent effluvium efflux +effort effortfulness effortlessness effrontery effulgence effusion effusiveness +eft egalitarian egalitarianism egalite egality egbert egeria egg egg-and-anchor +egg-and-dart egg-and-tongue eggar eggbeater eggcup egger eggfruit egghead eggnog +eggplant eggs eggshake eggshell eggwhisk egis eglantine eglevsky ego egocentric +egocentrism egoism egoist egomania egomaniac egotism egotist egress egression +egret egretta egtk egypt egyptian egyptologist egyptology ehadhamen ehf +ehrenberg ehrlich eib eibit eichhornia eichmann eider eiderdown eidos eiffel +eigen eigenvalue eight eight-spot eighteen eighteenth eighter eighth eighties +eightieth eightpence eightsome eightvo eighty eijkman eimeria eimeriidae +eindhoven einstein einsteinium einthoven eira eire eisegesis eisenhower +eisenstaedt eisenstein eisteddfod ejaculate ejaculation ejaculator ejection +ejector ekg ekman el el-aksur ela elaborateness elaboration elaeagnaceae +elaeagnus elaeis elaeocarpaceae elaeocarpus elagatis elam elamite elamitic elan +eland elanoides elanus elaphe elaphure elaphurus elapid elapidae elasmobranch +elasmobranchii elastance elastase elastic elasticity elastin elastomer +elastoplast elastosis elater elaterid elateridae elation elavil elbe elbow +elbowing eld elder elderberry elderly eldership eldest eldorado elecampane elect +election electioneering elective elector electorate electra electric electrician +electricity electrification electrocardiogram electrocardiograph +electrocardiography electrocautery electrochemistry electrocution +electrocutioner electrode electrodeposition electrodynamometer +electroencephalogram electroencephalograph electrograph electrologist +electrolysis electrolyte electrolytic electromagnet electromagnetics +electromagnetism electrometer electromyogram electromyograph electromyography +electron electronegativity electronics electrophoresis electrophoridae +electrophorus electroplate electroplater electroretinogram electroscope +electroshock electrosleep electrostatics electrosurgery electrotherapist +electrotherapy electrum elegance elegist elegy element elements elemi eleocharis +eleotridae elephant elephant's-foot elephant-tusk elephantiasis elephantidae +elephantopus elephas elettaria eleusine eleutherodactylus elevated elevation +elevator eleven eleven-plus eleventh elf elgar elia elicitation eligibility +elijah elimination eliminator elint elinvar eliomys eliot elisa elisabethville +elision elite elitism elitist elixir elixophyllin elizabeth elizabethan elk elk- +wood elkhound elkwood ell ellas elli ellington ellipse ellipsis ellipsoid +ellipticity ellison ellsworth ellul elm elmont elmwood eln elocution +elocutionist elodea elongation elopement elopidae elops eloquence elsass +elsholtzia elspar eluate elucidation eluding elul elusion elusiveness elution +elver elves elvis elymus elysium elytron em emaciation email emanation +emancipation emancipationist emancipator emasculation embalmer embalmment +embankment embargo embarkation embarkment embarrassment embassador embassy +embayment embellishment ember emberiza emberizidae embezzlement embezzler +embiodea embioptera embiotocidae embitterment emblem embodiment embolectomy +embolism embolus embonpoint embossment embothrium embouchure embrace embracement +embracing embrasure embrocation embroiderer embroideress embroidery embroilment +embryo embryologist embryology emcee emda emeer emendation emerald emergence +emergency emeritus emersion emerson emery emeside emesis emetic emetrol emf emg +emigrant emigration emigre emigree emile emilia emilia-romagna eminence emir +emirate emissary emission emitter emmanthe emmenagogue emmental emmentaler +emmenthal emmenthaler emmer emmet emmetropia emmy emollient emolument emoticon +emotion emotionalism emotionality emotionlessness empathy empedocles empennage +emperor empetraceae empetrum emphasis emphasizing emphysema empire empiricism +empiricist empirin emplacement employ employable employee employer employment +emporium empowerment empress emptiness emptor empty emptying empyema empyrean +emu emulation emulator emulsifier emulsion emydidae en en-lil enactment +enalapril enallage enamel enamelware enamine enamoredness enanthem enanthema +enantiomer enantiomorph enantiomorphism enarthrosis enate enation enbrel +encainide encampment encapsulation encasement encaustic encelia enceliopsis +encephalartos encephalitis encephalocele encephalogram encephalography +encephalomeningitis encephalomyelitis encephalon encephalopathy enchanter +enchantment enchantress enchilada enchiridion enchondroma encirclement enclave +enclosing enclosure encoding encolure encomium encompassment encopresis encore +encounter encouragement encroacher encroachment encrustation encryption +enculturation encumbrance encyclia encyclical encyclopaedia encyclopaedism +encyclopaedist encyclopedia encyclopedism encyclopedist end end-all end-plate +endaemonism endameba endamoeba endamoebidae endangerment endarterectomy +endarteritis endearment endeavor endeavour endecott endemic endemism endgame +endicott ending endive endlessness endoblast endocarditis endocardium endocarp +endocervicitis endocranium endocrine endocrinologist endocrinology endoderm +endodontia endodontics endodontist endogamy endogen endogeny endolymph +endometriosis endometritis endometrium endomorph endomorphy endomycetales +endoneurium endonuclease endoparasite endoplasm endoprocta endorphin endorsement +endorser endoscope endoscopy endoskeleton endosperm endospore endosteum +endothelium endotoxin endowment endozoan endplate endpoint endurance +enduringness ene enema enemy energid energiser energizer energizing energy +enervation enesco enets enfeeblement enfeoffment enfilade enflurane enfolding +enforcement enforcer enfranchisement engagement engelmannia engels engine +engineer engineering enginery england english english-gothic english-weed +englishman englishwoman engorgement engram engraulidae engraulis engraver +engraving engrossment enhancement enhancer enhydra enid enigma eniwetok +enjambement enjambment enjoining enjoinment enjoyableness enjoyer enjoyment +enkaid enkephalin enki enkidu enl enlargement enlarger enlightened enlightenment +enlil enlistee enlisting enlistment enlivener enmity ennead ennoblement ennui +enol enologist enology enophile enormity enormousness enosis enough enovid +enquirer enquiry enragement enrichment enrollee enrollment enrolment ensemble +ensete ensign ensilage ensis enslavement entablature entail entailment +entandrophragma entanglement entasis entebbe entelea entelechy entellus entente +enterics entering enteritis enterobacteria enterobacteriaceae enterobiasis +enterobius enteroceptor enterokinase enterolith enterolithiasis enterolobium +enteron enteropathy enteroptosis enterostenosis enterostomy enterotomy +enterotoxemia enterotoxin enterovirus enterprise enterpriser enterprisingness +entertainer entertainment enthalpy enthrallment enthronement enthronisation +enthronization enthusiasm enthusiast enticement entire entireness entirety +entitlement entity entlebucher entoblast entoderm entoloma entolomataceae +entombment entomion entomologist entomology entomophobia entomophthora +entomophthoraceae entomophthorales entomostraca entoparasite entoproct +entoprocta entourage entozoan entozoon entr'acte entrails entrance entrancement +entranceway entrant entrapment entreaty entrecote entree entremets entrenchment +entrepot entrepreneur entresol entric entropy entry entryway entsi entsy +enucleation enuki enumeration enumerator enunciation enuresis envelope +envelopment enviousness environment environmentalism environmentalist environs +envisioning envoi envoy envy enzyme enzymologist enzymology eocene eohippus +eolian eolic eolith eolithic eon eoraptor eos eosin eosinopenia eosinophil +eosinophile eosinophilia epa epacridaceae epacris epanalepsis epanaphora +epanodos epanorthosis eparch eparchy epaulet epaulette epauliere epee ependyma +epenthesis epergne epha ephah ephedra ephedraceae ephedrine ephemera ephemeral +ephemerality ephemeralness ephemerid ephemerida ephemeridae ephemeris ephemeron +ephemeroptera ephemeropteran ephesian ephesians ephestia ephesus ephippidae +ephippiorhynchus epi epic epicalyx epicanthus epicardia epicardium epicarp +epicene epicenter epicentre epicondyle epicondylitis epicranium epictetus +epicure epicurean epicureanism epicurism epicurus epicycle epicycloid epidemic +epidemiologist epidemiology epidendron epidendrum epidermis epidiascope +epididymis epididymitis epidural epigaea epigastrium epigenesis epiglottis +epiglottitis epigon epigone epigram epigraph epigraphy epikeratophakia epilachna +epilation epilator epilepsy epileptic epilobium epilog epilogue epimedium +epimetheus epinephelus epinephrin epinephrine epipactis epipaleolithic epiphany +epiphenomenon epiphora epiphyllum epiphysis epiphyte epiplexis epipremnum epirus +episcia episcleritis episcopacy episcopalian episcopalianism episcopate +episiotomy episode episome epispadias episperm epistasis epistaxis episteme +epistemologist epistemology epistle epistrophe epitaph epitaxy epithalamium +epithelioma epithelium epithet epitome epitope epizoan epizoon epoch epona +eponym eponymy epos epoxy eprom epsilon epstein eptatretus eptesicus eq equal +equalisation equaliser equalitarian equalitarianism equality equalization +equalizer equanil equanimity equatability equating equation equator equatorial +equerry equestrian equetus equid equidae equidistribution equilateral +equilibration equilibrium equine equinoctial equinox equipage equipment +equipoise equipping equisetaceae equisetales equisetatae equisetum equitation +equity equivalence equivalent equivocalness equivocation equivocator equus er +era eradication eradicator eragrostis eranthis eraser erasmus erastianism +erasure erato eratosthenes erbium ercilla erebus erecting erection erectness +eremite eremitism eresh-kigal ereshkigal ereshkigel erethism erethizon +erethizontidae eretmochelys erewhon erg ergocalciferol ergodicity ergometer +ergonomics ergonovine ergosterol ergot ergotamine ergotism ergotropism erianthus +erica ericaceae ericales eridanus erie erigeron erignathus erin erinaceidae +erinaceus eringo erinyes eriobotrya eriocaulaceae eriocaulon eriodictyon +eriogonum eriophorum eriophyllum eriosoma eris eristic erithacus eritrea +eritrean erivan erlang erlenmeyer ermine ern erne ernst eroding erodium erolia +eros erosion erotic erotica eroticism erotism errancy errand erratum +erroneousness error ersatz erse ert eruca eructation eruditeness erudition +eruption erving erwinia eryngium eryngo erysimum erysipelas erysiphaceae +erysiphales erysiphe erythema erythrina erythrite erythroblast erythroblastosis +erythrocebus erythrocin erythrocyte erythrocytolysin erythroderma erythrolysin +erythromycin erythronium erythropoiesis erythropoietin erythroxylaceae +erythroxylon erythroxylum es esaki esau escadrille escalade escalader escalation +escalator escallop escapade escape escapee escapement escapism escapist +escapologist escapology escargot escarole escarp escarpment eschalot eschar +eschatologist eschatology eschaton escheat escherichia eschrichtiidae +eschrichtius eschscholtzia escolar escort escritoire escrow escudo escutcheon +ese esfahan esidrix eskalith esker eskimo eskimo-aleut esm esmolol esocidae esop +esophagitis esophagoscope esophagus esoterica esotropia esox esp espadrille +espagnole espalier espana esparcet esperantido esperanto espial espionage +esplanade espoo espousal espresso esprit esq esquimau esquire esr essay essayer +essayist esselen essen essence essene essential essentiality essentialness essex +essonite est establishment establishmentarianism establishmentism estaminet +estate estazolam esteem ester esther esthesia esthesis esthete esthetic +esthetician esthetics esthonia esthonian estimate estimation estimator +estivation estonia estonian estoppel estradiol estragon estrangement estrilda +estriol estrogen estrone estronol estrus estuary esurience eta etagere etamin +etamine etanercept etcetera etcher etching etd eternity etf ethanal ethanamide +ethane ethanediol ethanoate ethanol ethchlorvynol ethelbert ethelred ethene +ether ethernet ethic ethician ethicism ethicist ethics ethiopia ethiopian +ethmoid ethnarch ethnic ethnicity ethnocentrism ethnographer ethnography +ethnologist ethnology ethnos ethocaine ethologist ethology ethos ethosuximide +ethoxyethane ethrane ethril ethyl ethylene ethyne etiolation etiologist etiology +etiquette etna etodolac etonian etropus etruria etruscan etude etui etymologist +etymologizing etymology etymon eu euarctos euascomycetes eubacteria +eubacteriales eubacterium eubryales eubstance eucalypt eucalyptus eucarya +eucaryote eucharist euchre eucinostomus euclid eudaemon eudaemonia eudaimonia +eudemon eudemonism euderma eudiometer eudyptes eugene eugenia eugenics euglena +euglenaceae euglenid euglenoid euglenophyceae euglenophyta euglenophyte +eukaryote euler eulogist eulogium eulogy eumeces eumenes eumenides eumetopias +eumops eumycetes eumycota eunectes eunuch eunuchoidism euonymus eupatorium +euphagus euphausiacea euphemism euphonium euphony euphorbia euphorbiaceae +euphorbium euphoria euphoriant euphory euphractus euphrates euphrosyne euphuism +euplectella eupnea eupnoea euproctis eurafrican eurasia eurasian eureka +eurhythmics eurhythmy euripides euro eurobabble eurocentrism eurocurrency +eurodollar euronithopod euronithopoda europa europan europe european +europeanisation europeanization europium europol eurotiales eurotium euryale +euryalida eurydice eurylaimi eurylaimidae eurypterid eurypterida eurythmics +eurythmy eusebius eusporangium eustachio eustoma eutamias eutectic euterpe +euthanasia euthenics eutheria eutherian euthynnus eutrophication ev evacuation +evacuee evaluation evaluator evanescence evangel evangelicalism evangelism +evangelist evans evansville evaporation evaporite evaporometer evasion +evasiveness eve even evenfall evening evening-snow eveningwear evenk evenki +evenness evensong event eventide eventration eventuality everest everglades +evergreen everlasting everlastingness evernia evers eversion evert everting +everydayness everyman eviction evidence evil evildoer evildoing evilness +evisceration evocation evolution evolutionism evolutionist ew ewe ewenki ewer ex +ex-boyfriend ex-gambler ex-husband ex-mayor ex-president ex-serviceman ex-spouse +ex-wife exabit exabyte exacerbation exacta exaction exactitude exactness exacum +exaeretodon exaggeration exaltation exam examen examination examinee examiner +example exanthem exanthema exarch exarchate exasperation exbibit exbibyte +excalibur excavation excavator exceedance excellence excellency excelsior +exception excerpt excerption excess excessiveness exchange exchangeability +exchanger exchequer excise exciseman excision excitability excitableness +excitant excitation excitement exclaiming exclamation exclusion exclusive +exclusiveness excogitation excogitator excommunication excoriation excrement +excrescence excreta excreting excretion excruciation exculpation excursion +excursionist excursus excuse excuser exec execration executability executant +executing execution executioner executive executor executrix exegesis exegete +exemplar exemplification exemption exenteration exercise exerciser exercising +exercycle exertion exfoliation exhalation exhaust exhaustion exhibit exhibition +exhibitioner exhibitionism exhibitionist exhibitor exhilaration exhortation +exhumation exigency exiguity exile existence existentialism existentialist exit +exmoor exobiology exocarp exocet exocoetidae exocrine exocycloida exode exoderm +exodontia exodontics exodontist exodus exogamy exogen exomphalos exon +exoneration exonuclease exophthalmos exopterygota exorbitance exorciser exorcism +exorcist exordium exoskeleton exosphere exostosis exotherm exoticism exoticness +exotism exotoxin exotropia expanse expansion expansionism expansiveness +expansivity expat expatiation expatriate expatriation expectancy expectation +expectedness expectorant expectoration expectorator expedience expediency +expedient expedition expeditiousness expelling expender expending expenditure +expense expensiveness experience experiment experimentalism experimentation +experimenter expert expertise expertness expiation expiration expiry explanandum +explanans explanation expletive explicandum explication explicitness exploit +exploitation exploiter exploration explorer explosion explosive expo exponent +exponential exponentiation export exportation exporter exporting expose +exposition expositor expostulation exposure expounder expounding express +expressage expression expressionism expressionist expressiveness expressway +expropriation expulsion expunction expunging expurgation expurgator +exquisiteness extemporisation extemporization extension extensiveness extensor +extent extenuation exterior exteriorisation exteriorization extermination +exterminator extern external externalisation externality externalization +exteroception exteroceptor extinction extinguisher extinguishing extirpation +extoller extolment extortion extortioner extortionist extra extract extraction +extractor extradition extrados extraneousness extraordinariness extrapolation +extrasystole extraterrestrial extravagance extravagancy extravaganza +extravasation extraversion extravert extreme extremeness extremism extremist +extremity extremum extrication extropy extroversion extrovert extrusion +exuberance exudate exudation exultation exurbia exuviae eyas eyck eye eye- +beaming eye-catcher eye-drop eye-lotion eyeball eyebath eyebrow eyecup eyedness +eyedrop eyeful eyeglass eyeglasses eyehole eyeish eyelash eyelessness eyelet +eyelid eyeliner eyepatch eyepiece eyes eyeshade eyeshadow eyeshot eyesight +eyesore eyespot eyestrain eyetooth eyewash eyewitness eyra eyre eyrie eyrir eyry +eysenck ezechiel ezed ezekias ezekiel ezo ezo-yama-hagi ezra f f.i.s.c. fa faa +fabaceae faberge fabian fabiana fabianism fable fabric fabrication fabricator +fabulist facade face face-off facelift faceplate facer facet facetiousness facia +facial facilitation facilitator facility facing facsimile fact faction factoid +factor factorial factoring factorisation factorization factory factotum +factuality factualness facula faculty fad faddist fade fadeout fading fado fae +faecalith faeces faerie faeroes faeroese faery fafnir fag fagaceae fagales +faggot faggoting fagin fagopyrum fagot fagoting fagus fahd fahrenheit faience +fail-safe failing faille failure faineance faint faintheartedness faintness fair +fair-maids-of-france fair-mindedness fairbanks fairground fairlead fairness +fairway fairy fairy-slipper fairyland fairytale faisal faisalabad faith faithful +faithfulness faithlessness fake fakeer faker fakery fakir falafel falanga +falange falangist falcatifolium falchion falco falcon falcon-gentil falcon- +gentle falconer falconidae falconiformes falconry falderol falkner fall fall- +board falla fallaciousness fallacy fallal fallback fallboard faller fallibility +falloff fallopio fallopius fallot fallout fallow falls falsehood falseness +falsetto falsie falsification falsifier falsifying falsity falstaff falter +faltering fame familiar familiarisation familiarity familiarization family +famine famishment famotidine famulus fan fan-jet fanaloka fanatic fanaticism +fanatism fancier fancy fancywork fandango fandom fanfare fang fanion fanjet +fanlight fanny fantail fantan fantasia fantasist fantasm fantast fantasy fantods +fanweed fanwort fao faq faqir faquir far farad faraday farandole farawayness +farc farce fardel fare fare-stage fare-thee-well farewell farfalle fargo farina +farkleberry farm farm-place farmer farmerette farmhand farmhouse farming +farmington farmland farmplace farmstead farmyard farness faro faroes faroese +farrago farragut farrell farrier farrow farrowing farsi farsightedness fart +farthing farthingale farting fartlek fas fasces fascia fascicle fasciculation +fascicule fasciculus fascination fasciola fascioliasis fasciolidae +fasciolopsiasis fasciolopsis fasciolosis fascism fascist fascista fashion +fashioning fashionmonger fast fastball fastener fastening fastidiousness fasting +fastnacht fastness fat fatah fatah-rc fatalism fatalist fatality fatback fate +fathead father father-figure father-god father-in-law fatherhood fatherland +fatherliness fathom fathometer fatigability fatigue fatigues fatiha fatihah +fatima fatimah fatism fatness fatso fattiness fattism fatty fatuity fatuousness +fatwa fatwah faubourg fauces faucet fauld faulkner fault faultfinder +faultfinding faultiness faulting faultlessness faun fauna fauntleroy faunus +faust faustus fauteuil fauve fauvism fauvist favism favor favorableness favorite +favoritism favour favourableness favourite favouritism favus fawkes fawn fawner +fax fay fayetteville fbi fcc fcs fda fdic fdr fe fealty fear fearfulness +fearlessness feasibility feasibleness feast feasting feat feather feather-foil +featherbed featherbedding featheredge featherfoil featheriness feathering +feathertop featherweight feature feb febricity febrifuge febrility february +fecalith feces fechner fecklessness fecula feculence fecundation fecundity fed +fedayeen fedelline federal federalisation federalism federalist federalization +federation federita fedora fee feeblemindedness feebleness feed feedback feedbag +feeder feeding feedlot feedstock feel feeler feeling feelings feifer feigning +feijoa feint feist felafel feldene feldspar felicia felicitation felicitousness +felicity felid felidae feline felis fell fella fellah fellata fellatio fellation +feller fellini felloe fellow fellowship felly felo-de-se felon felony felspar +felt felucca felwort fema female femaleness feminine feminineness femininity +feminisation feminism feminist feminization femoris femtochemistry femtometer +femtometre femtosecond femtovolt femur fen fence fence-sitter fencer fencesitter +fencing fender fender-bender fenestella fenestra fenestration fengtien fenland +fennel fennic fenoprofen fenrir fentanyl fenugreek fenusa feoff feosol fer-de- +lance ferber ferdinand fergon fergusonite feria fermat fermata ferment +fermentation fermenting fermentologist fermi fermion fermium fern ferocactus +ferociousness ferocity ferrara ferret ferricyanide ferrimagnetism ferrite +ferritin ferrocerium ferroconcrete ferrocyanide ferromagnetism ferrule ferry +ferryboat ferrying ferryman fertilisation fertiliser fertility fertilization +fertilizer ferule fervency fervidness fervor fervour fes fescue fess fesse +fester festering festination festival festivity festoon festoonery festschrift +festuca fet fetch fete feterita fetich fetichism feticide fetidness fetish +fetishism fetishist fetlock fetology fetometry fetoprotein fetor fetoscope +fetoscopy fetter fetterbush fettle fettuccine fettuccini fetus feud feudalism +feudatory fever feverfew feverishness feverroot few fewness feynman fez fha +fhlmc fiance fiancee fiasco fiat fib fibber fibbing fiber fiberboard fiberglass +fiberoptics fiberscope fibre fibreboard fibreglass fibreoptics fibril +fibrillation fibrin fibrinase fibrinogen fibrinolysin fibrinolysis +fibrinopeptide fibroadenoma fibroblast fibrocartilage fibroid fibroma +fibromyositis fibrosis fibrositis fibrosity fibrousness fibula fica fice fichu +fickleness fiction fictionalisation fictionalization ficus fiddle fiddle-faddle +fiddlehead fiddleneck fiddler fiddlestick fidelity fidget fidgetiness fiduciary +fiedler fief fiefdom field fielder fieldfare fieldhand fielding fieldmouse +fields fieldsman fieldstone fieldwork fieldworker fiend fierceness fieriness +fiesta fife fifo fifteen fifteenth fifth fifties fiftieth fifty fig fig-bird +figeater fight fighter fighting figment figuration figure figurehead figurer +figurine figuring figwort fiji fijian fijis filaggrin filago filagree filament +filaree filaria filariasis filariidae filature filbert file filefish filename +filer filet filiation filibuster filibusterer filicales filicide filicinae +filicopsida filigree filing filipino fill fill-in fillagree fille filler fillet +filling fillip fillmore filly film filmdom filming filmmaker filoviridae +filovirus fils filter filth filthiness filtrate filtration filum fimbria fin +finagler final finale finalisation finalist finality finalization finance +finances financier financing finback fincen finch find finder finding findings +fine fineness finery finesse finger finger-flower finger-painting finger- +pointing finger-roll finger-root fingerboard fingerbreadth fingerflower +fingering fingerling fingermark fingernail fingerpaint fingerpointing fingerpost +fingerprint fingerprinting fingerroot fingerspelling fingerstall fingertip +finial finis finish finisher finishing finiteness finitude fink finland finn +finnan finnbogadottir finnic finnish finno-ugrian finno-ugric finocchio fiord +fipple fir fire fire-bush fire-eater fire-on-the-mountain fire-raising fire- +swallower fire-wheel fire-worship firearm fireball firebase firebird fireboat +firebomb firebox firebrand firebrat firebreak firebrick firebug fireclay +firecracker firedamp firedog firedrake firefighter firefly fireguard firehouse +firelight firelighter firelock fireman firenze fireplace fireplug firepower +fireroom fireside firestone firestorm firethorn firetrap firewall firewater +fireweed firewood firework firing firkin firm firmament firmiana firmness +firmware first first-nighter first-rater firstborn firth fisa fisc fischer fish +fish-fly fish-worship fishbone fishbowl fisher fisherman fishery fishgig +fishhook fishing fishmonger fishnet fishpaste fishplate fishpond fishwife +fishworm fission fissiparity fissiped fissipedia fissure fissurella +fissurellidae fist fistfight fistful fisticuffs fistmele fistula fistularia +fistulariidae fistulina fistulinaceae fit fitch fitfulness fitment fitness +fitter fitting fittingness fitzgerald five five-finger five-hitter five-spot +fivepence fiver fives fivesome fix fixation fixative fixedness fixer fixer-upper +fixing fixings fixity fixture fizgig fizz fizzle fjord fl flab flabbiness +flaccidity flack flacourtia flacourtiaceae flag flag-waver flagellant flagellata +flagellate flagellation flagellum flageolet flagfish flagging flagon flagpole +flagroot flagship flagstaff flagstone flagyl flail flair flak flake flakiness +flambeau flamboyance flamboyant flame flame-flower flame-out flamefish +flameflower flamen flamenco flamethrower flaming flamingo flaminius flammability +flammulina flan flanders flange flank flanker flannel flannel-cake flannelbush +flannelette flap flapcake flapjack flapper flapping flaps flare flare-up flash +flash-forward flashback flashboard flashboarding flashbulb flashcard flasher +flashflood flashgun flashiness flashing flashlight flashover flashpoint flask +flaskful flat flatbed flatboat flatbread flatbrod flatcar flatfish flatfoot +flathead flatiron flatlet flatmate flatness flats flatterer flattery flattop +flatulence flatulency flatus flatware flatwork flatworm flaubert flaunt flautist +flavin flaviviridae flavivirus flavone flavonoid flavor flavorer flavoring +flavorlessness flavorsomeness flavour flavourer flavouring flavourlessness +flavoursomeness flaw flawlessness flax flaxedil flaxseed flea fleabag fleabane +fleapit fleawort flecainide fleck flection fledgeling fledgling fleece fleer +fleet fleetingness fleetness fleming flemish flesh fleshiness fletc fletcher +fleur-de-lis fleur-de-lys flex flexeril flexibility flexibleness flexion flexor +flexure flibbertigibbet flick flick-knife flicker flickertail flier flies flight +flightiness flimflam flimsiness flimsy flinch flinders flindersia flindosa +flindosy fling flint flinthead flintlock flintstone flip flip-flop flippancy +flipper flirt flirtation flirting flit flitch flnc float floatation floater +floating floating-moss floatplane floc flocculation floccule flock flodden floe +flogger flogging flood floodgate floodhead flooding floodlight floodplain floor +floorboard flooring floorshow floorwalker floozie floozy flop flophouse floppy +flora floreal florence florentine florescence floret florey floriculture florida +floridian floridity floridness florilegium florin florio florist flory floss +flotation flotilla flotsam flounce flounder flour flourish flouter flow flowage +flowchart flower flower-of-an-hour flowerbed floweret flowering flowerpot +flowers-of-an-hour flowing floxuridine flu flub fluctuation flue fluegelhorn +fluency fluff fluffiness flugelhorn fluid fluidity fluidness fluidounce fluidram +fluke flume flummery flunitrazepan flunk flunkey flunky fluor fluorapatite +fluorescein fluoresceine fluorescence fluorescent fluoridation fluoride +fluoridisation fluoridization fluorine fluorite fluoroboride fluorocarbon +fluorochrome fluoroform fluoroscope fluoroscopy fluorosis fluorouracil fluorspar +fluosilicate fluoxetine fluphenazine flurazepam flurbiprofen flurry flush +fluster flute fluting flutist flutter fluttering fluvastatin flux fluxion +fluxmeter fly fly-by fly-by-night fly-fishing flybridge flycatcher flyer flying +flyleaf flyover flypaper flypast flyspeck flyswat flyswatter flytrap flyway +flyweight flywheel fm fmri fnma fo fo'c'sle foal foam foamflower foaminess fob +focalisation focalization focus focusing focussing fodder foe foehn foeman +foeniculum foetology foetometry foetoprotein foetor foetoscope foetoscopy foetus +fog fogbank fogey fogginess foghorn foglamp fogsignal fogy fohn foible foil +foiling folacin folate fold folder folderal folderol folding foldout foliage +foliation folie folio folium folk folklore folks folksong folktale follicle +folliculitis follies follow-on follow-through follow-up follower followers +following followup folly fomentation fomenter fomes fomite fomor fomorian fonda +fondant fondler fondling fondness fondu fondue font fontanel fontanelle fontanne +fontenoy fonteyn food foodie foodstuff fool foolery foolhardiness foolishness +foolscap foot foot-lambert foot-pound foot-poundal foot-ton footage football +footballer footbath footboard footbridge footcandle footedness footer footfall +footfault footgear foothill foothold footing footlights footlocker footman +footmark footnote footpad footpath footplate footprint footrace footrest +footslogger footstall footstep footsteps-of-spring footstool footwall footwear +footwork fop foppishness forage forager foraging foram foramen foraminifer +foraminifera foray forbear forbearance forbiddance forbidding force force-out +forcefulness forcemeat forceps ford fordhooks fording fore fore-and-after fore- +topmast fore-topsail fore-wing forearm forebear foreboding forebrain forecast +forecaster forecasting forecastle foreclosure forecourt foredeck foredge +forefather forefinger forefoot forefront foreground foregrounding forehand +forehead foreigner foreignness foreknowledge forelady foreland foreleg forelimb +forelock foreman foremanship foremast foremilk foremother forename forenoon +forensics foreordination forepart forepaw foreperson foreplay forequarter +forerunner foresail foreshadowing foreshank foreshock foreshore foresight +foresightedness foresightfulness foreskin forest forestage forestalling forestay +forester forestiera forestry foretaste foretelling forethought foretoken foretop +forewarning forewing forewoman foreword forfeit forfeiture forficula +forficulidae forge forger forgery forget-me-not forgetfulness forging +forgiveness forgiver forgivingness forgoing forint fork forking forklift +forlornness form formal formaldehyde formalin formalisation formalism +formalities formality formalization formalness formalwear format formation +formative formatting former formica formicariidae formicarius formicary +formication formicidae formidability formol formosa formosan formula formulary +formulation fornax fornication fornicator fornicatress fornix forsaking forseti +forswearing forsythia fort fort-lamy fortaz forte forte-piano forth +forthcomingness forthrightness forties fortieth fortification fortissimo +fortitude fortnight fortran fortress fortuitousness fortuity fortuna fortune +fortunella fortuneteller fortunetelling forty forty-five forty-niner forum +forward forwarding forwardness foryml fosamax fosbury fossa fosse fossil +fossilisation fossilist fossilization fossilology foster foster-brother foster- +child foster-daughter foster-father foster-mother foster-nurse foster-parent +foster-sister foster-son fosterage fostering fosterling fothergilla fots +foucault foul foul-up foulard foulmart foulness foumart found foundation founder +foundering founding foundling foundress foundry fount fountain fountainhead +fouquieria fouquieriaceae four four-flusher four-hitter four-in-hand four-poster +four-pounder four-spot four-wheeler fourier fourpence fourscore foursome +foursquare fourteen fourteenth fourth fovea fowl fowler fox fox-trot foxberry +foxglove foxhole foxhound foxhunt foxiness foxtail foxtrot foyer fpd fps fr +fracas fractal fraction fractionation fractiousness fracture fradicin fragaria +fragility fragment fragmentation fragonard fragrance fragrancy frail frailness +frailty fraise frambesia framboesia framboise frame frame-up framer framework +framing franc franc-tireur france franche-comte franchise franciscan francisella +francium franck franco franco-american francoa francophil francophile +francophobe frangibility frangibleness frangipane frangipani frangipanni frank +frankenstein frankfort frankfurt frankfurter frankincense franklin frankliniella +frankness frappe frasera frat fratercula fraternisation fraternity +fraternization fratricide frau fraud fraudulence fraulein fraxinella fraxinus +fray frazer frazzle freak freakishness freckle frederick fredericksburg +fredericton free free-for-all free-lance free-liver free-reed freebee freebie +freebooter freedman freedom freedwoman freehold freeholder freeing freelance +freelancer freeloader freemail freeman freemason freemasonry freesia freestone +freestyle freetail freethinker freethinking freetown freeware freeway freewheel +freewheeler freewoman freeze freeze-drying freezer freezing fregata fregatidae +freight freightage freighter fremont fremontia fremontodendron french frenchman +frenchwoman frenzy freon frequence frequency frequentative frequenter fresco +freshener fresher freshet freshman freshness freshwater fresnel fresno fret +fretfulness fretsaw fretwork freud freudian frey freya freyja freyr frg fri +friability friar friar's-cowl friary fricandeau fricassee fricative frick +friction friday fridge friedan friedcake friedman friend friendlessness +friendliness friendly friendship frier fries friesian friesland frieze frigate +frigg frigga fright frightening frightfulness frigidity frigidness frijol +frijole frijolillo frijolito frill frimaire fringe fringepod fringilla +fringillidae frippery frisbee frisch frisia frisian frisk friskiness frisking +frisson fritillaria fritillary frittata fritter friuli friulian frivolity +frivolousness frizz frobisher frock froebel froelichia frog frog's-bit frogbit +frogfish froghopper frogman frogmouth frolic frolicsomeness frond front front- +runner front-stall frontage frontal frontbencher frontier frontiersman +frontierswoman frontispiece frontlet frontstall frost frost-weed frostbite +frostiness frosting frostweed frostwort froth frothiness frottage frotteur frown +frs fructidor fructification fructose fructosuria frugality frugalness fruit +fruitage fruitcake fruiterer fruitfulness fruition fruitlessness fruitlet +fruitwood frumenty frump frunze frustration frustum fry frye fryer frying frypan +fsb fsh ft ft-l ftc fthm fto ftp fucaceae fucales fuchs fuchsia fuck fucker +fuckhead fucking fuckup fucoid fucus fuddle fuddy-duddy fudge fuego fuel fueling +fuentes fug fugaciousness fugacity fugard fugitive fugleman fugo fugu fugue fuji +fuji-san fujinoyama fujiyama fukien fukkianese fukuoka ful fula fulah fulani +fulbe fulbright fulcrum fulfillment fulfilment fulgoridae fulica full full-of- +the-moon fullback fuller fullerene fullness fulmar fulmarus fulminate +fulmination fulsomeness fulton fulvicin fumaria fumariaceae fumble fumbler fume +fumeroot fumes fumewort fumigant fumigation fumigator fumitory fun funafuti +funambulism funambulist function functionalism functionalist functionality +functionary functioning fund fundament fundamental fundamentalism fundamentalist +fundamentals funding fundraiser funds fundulus fundus funeral funeral-residence +funfair fungi fungia fungibility fungible fungicide fungus funicle funicular +funiculitis funiculus funk funka funkaceae funnel funnies funniness funny funrun +fuqra fur fur-piece furan furane furbelow furcation furcula furfural +furfuraldehyde furfuran furiousness furlong furlough furnace furnariidae +furnarius furnishing furniture furnivall furor furore furosemide furrier furring +furrow furtherance furtiveness furuncle furunculosis fury furze fusain fusanus +fuschia fuscoboletinus fuse fusee fuselage fusil fusilier fusillade fusion fuss +fuss-budget fussiness fusspot fustian futility futon future futurism futurist +futuristics futurity futurology fuze fuzee fuzz fuzziness fws g g-force g-jo +g-man g-string ga gaap gab gaba gabapentin gabardine gabble gabbro gaberdine +gabfest gable gabon gabonese gabor gaboriau gaborone gabriel gabun gad gadaba +gadabout gaddafi gaddi gadfly gadget gadgeteer gadgetry gadidae gadiformes +gadoid gadolinite gadolinium gadsden gadus gaea gael gaelic gaff gaffe gaffer +gaffsail gafsa gag gagarin gage gaggle gagman gagster gagwriter gaia gaiety +gaillardia gain gainer gainesville gainfulness gainsborough gaiseric gait gaiter +gaius gal gala galactagogue galactocele galactose galactosemia galactosis galago +galahad galan galangal galantine galapagos galatea galatia galatian galatians +galax galaxy galbanum galbraith galbulidae galbulus gale galea galega galen +galena galeocerdo galeopsis galeorhinus galeras galere galicia galician +galilaean galilean galilee galileo galingale galium gall gall-berry gallamine +gallant gallantry gallaudet gallberry gallbladder galleon galleria gallery +galley gallfly gallia galliano gallicanism gallicism galliformes gallimaufry +gallina gallinacean gallinago gallinula gallinule gallirallus gallium gallon +gallop gallous galloway gallows gallows-tree gallstone gallup gallus galois +galoot galosh galsworthy galton galvani galvanisation galvaniser galvanism +galvanization galvanizer galvanometer galveston galway gam gamba gambelia gambia +gambian gambist gambit gamble gambler gambling gamboge gambol gambrel gambusia +game gamebag gameboard gamecock gamekeeper gamelan gameness games-master games- +mistress gamesmanship gametangium gamete gametocyte gametoecium gametogenesis +gametophore gametophyte gamin gamine gaminess gaming gamma gamma-interferon +gammon gammopathy gamow gamp gamut ganapati gand gander gandhi ganef ganesa +ganesh ganesha gang gangboard gangdom ganger ganges gangland gangliocyte +ganglion gangplank gangrene gangsaw gangsta gangster gangway ganja gannet ganof +ganoid ganoidei ganoin ganoine gansu gantanol gantlet gantrisin gantry ganymede +gao gaol gaolbird gaolbreak gaoler gap gape gar garage garambulla garamycin +garand garb garbage garbageman garbanzo garbo garboard garboil garbology +garcinia garden gardener gardenia gardening gardiner gardner garfield garfish +garganey gargantua garget gargle gargoyle gargoylism gari garibaldi garishness +garland garlic garment garment-worker garmentmaker garner garnet garnier +garnierite garnish garnishee garnishment garonne garotte garpike garret garrick +garrison garrote garroter garrotte garrotter garrulinae garrulity garrulousness +garrulus garter garuda gary gas gasbag gascogne gasconade gascony gaseousness +gasfield gash gasherbrum gasification gaskell gasket gaskin gaslight gasman +gasmask gasohol gasolene gasoline gasometer gasp gaspar gassing gasteromycete +gasteromycetes gasterophilidae gasterophilus gasteropoda gasterosteidae +gasterosteus gastralgia gastrectomy gastrin gastritis gastroboletus +gastrocnemius gastrocybe gastroenteritis gastroenterologist gastroenterology +gastroenterostomy gastrogavage gastrolobium gastromy gastromycete gastromycetes +gastronome gastronomy gastrophryne gastropod gastropoda gastroscope gastroscopy +gastrostomy gastrula gastrulation gasworks gat gate gateau gatecrasher gatefold +gatehouse gatekeeper gatepost gates gateway gather gatherer gathering gathic +gatling gator gatt gaucheness gaucherie gaucho gaud gaudery gaudi gaudiness +gaudy gauffer gauge gauguin gaul gaultheria gauntlet gauntness gauntry gaur +gauri gauss gaussmeter gautama gauze gavage gavel gavia gavial gavialidae +gavialis gavidae gaviiformes gavotte gawain gawk gawker gawkiness gay gay- +feather gay-lussac gayal gayfeather gaylussacia gayness gaywings gaza gazania +gaze gazebo gazella gazelle gazette gazetteer gazillion gazpacho gb gbit gbu-28 +gc gca gcse gd gdansk gdp ge gean gear gearbox gearing gearset gearshift +gearstick geartrain geastraceae geastrum geb gecko gee gee-gee geebung geek +geezer geezerhood gegenschein geglossaceae gehenna gehrig geiger geisel geisha +gekkonidae gel gelatin gelatine gelatinousness gelding gelechia gelechiid +gelechiidae gelidity gelignite gell-mann gelly gelsemium gelt gem gemara +gemfibrozil geminate gemination gemini gemma gemmation gemmule gemonil gempylid +gempylidae gempylus gemsbok gemsbuck gemstone gen gendarme gendarmerie +gendarmery gender gene gene-splicing genealogist genealogy general generalcy +generalisation generalissimo generalist generality generalization generalship +generation generator generic generosity generousness genesis genet geneticism +geneticist genetics genetta geneva genevan geneve genf geniality genie genip +genipa genipap genista genitalia genitals genitive genitor genius genlisea genoa +genocide genoese genoise genome genomics genotype genova genre gens genseric +gent gentamicin genteelness gentian gentiana gentianaceae gentianales +gentianella gentianopsis gentile gentility gentlefolk gentleman gentleman's-cane +gentleman-at-arms gentleness gentlewoman gentrification gentry genu genuflection +genuflexion genuineness genus genus-fenusa genus-megapodius genus-milvus +genyonemus geochelone geochemistry geococcyx geode geodesic geodesy geoduck +geoffroea geoglossaceae geoglossum geographer geographics geography geologist +geology geomancer geomancy geometer geometrician geometrid geometridae geometry +geomorphology geomyidae geomys geophagia geophagy geophilidae geophilomorpha +geophilus geophysicist geophysics geophyte geopolitics geordie george georgetown +georgette georgia georgian geosphere geostrategy geothlypis geotropism geraint +geraniaceae geraniales geranium gerardia gerbera gerbert gerbil gerbille +gerbillinae gerbillus gerea gerenuk gerfalcon geriatrician geriatrics germ +german germander germaneness germanic germanism germanist germanite germanium +germany germicide germinal germination geronimo gerontocracy gerontologist +gerontology gerreidae gerres gerrhonotus gerridae gerrididae gerris gerrymander +gershwin gerund geryon gesell gesner gesneria gesneriaceae gesneriad gesso +gestalt gestapo gestation gesticulation gesture get get-go get-up-and-go geta +getaway getting gettysburg getup geum gewgaw geyser ghana ghanian gharry +ghastliness ghat ghatti ghb ghee gheg ghent gherkin ghetto ghillie ghost +ghostfish ghostliness ghostwriter ghoul ghq ghrelin ghrf ghz gi gia giacometti +giant giantess giantism giardia giardiasis gib gibber gibberellin gibberish +gibbet gibbon gibbosity gibbousness gibbs gibbsite gibe gibibit gibibyte gibit +giblet giblets gibraltar gibraltarian gibran gibson gidar giddiness gide gidgee +gielgud gift gig gigabit gigabyte gigacycle gigahertz gigantism gigartinaceae +giggle giggler gigo gigolo gigot gigue gikuyu gila gilbert gild gilder gildhall +gilding gilgamesh gilgamish gill gill-over-the-ground gillespie gillette gillie +gillyflower gilman gilmer gilt gimbal gimcrack gimcrackery gimel gimlet gimmick +gimmickry gimp gimpiness gin ginep ginger gingerbread gingerol gingerroot +gingersnap gingham gingiva gingivitis gingko ginglymostoma ginglymus ginkgo +ginkgoaceae ginkgoales ginkgophytina ginkgopsida ginmill ginsberg ginseng ginzo +giotto gipsy gipsywort giraffa giraffe giraffidae girandola girandole girard +girasol giraudoux girder girdle giriama girl girlfriend girlhood girlishness +giro gironde girondin girondism girondist girru girth gish gismo gist git gita +gitana gitano gittern give give-and-go give-and-take giveaway given givenness +giver giving giza gizeh gizmo gizzard gjellerup glabella glaciation glacier glad +gladdon glade gladfulness gladiator gladiola gladiolus gladness gladsomeness +gladstone glamor glamorisation glamorization glamour glamourisation +glamourization glance gland glanders glans glare glareola glareole glareolidae +glaser glasgow glasnost glass glass-cutter glassblower glasses glassful +glasshouse glassmaker glassware glasswork glassworker glassworks glasswort +glaswegian glaucium glaucoma glaucomys glauconite glaux glaze glazer glazier +gleam gleaming gleaner gleba glebe glechoma gleditsia glee gleefulness gleet +gleichenia gleicheniaceae glen glendower glengarry glenn glia glibness glide +glider gliding glimmer glimmering glimpse glinka glint glioblastoma glioma +glipizide gliricidia gliridae glis glissade glissando glisten glister glitch +glitter glitz gloam gloaming gloat gloating glob globalisation globalization +globe globefish globeflower globetrotter globicephala globigerina globigerinidae +globin globosity globularness globule globulin glochid glochidium glockenspiel +glogg glomerule glomerulonephritis glomerulus gloom gloominess glop +glorification gloriole gloriosa glory gloss glossa glossalgia glossarist +glossary glossina glossiness glossinidae glossitis glossodia glossodynia +glossolalia glossopsitta glossoptosis glossy glottis glottochronology gloucester +gloucestershire glove glow glower glowing glowworm gloxinia glucagon glucinium +gluck glucocorticoid glucophage glucosamine glucose glucoside glucosuria +glucotrol glue glueyness gluiness glume glumness gluon glut glutamate glutamine +glute glutelin gluten glutethimide gluteus glutinosity glutinousness glutton +gluttony glyburide glyceraldehyde glyceria glyceride glycerin glycerine +glycerite glycerogel glycerogelatin glycerol glycerole glyceryl glycine glycogen +glycogenesis glycol glycolysis glycoprotein glycoside glycosuria glycyrrhiza +glyoxaline glyph glyptics glyptography gm gmt gnaphalium gnarl gnat gnatcatcher +gnathion gnathostomata gnathostome gnawer gneiss gnetaceae gnetales gnetophyta +gnetophytina gnetopsida gnetum gnocchi gnome gnomon gnosis gnostic gnosticism +gnp gnu go go-ahead go-around go-between go-cart go-getter go-kart go-slow goa +goad goading goal goal-kick goalie goalkeeper goalmouth goalpost goaltender goat +goatee goatfish goatherd goatsbeard goatsfoot goatskin goatsucker gob gobbet +gobble gobbledygook gobbler gobi gobiesocidae gobiesox gobiidae gobio goblet +goblin gobs goby god godard godchild goddard goddaughter goddess godel godfather +godhead godiva godlessness godliness godmother godown godparent godsend godson +godspeed godunov godwit goebbels goer goering goeteborg goethals goethe goethite +gofer goffer goggle-eye goggles gogh gogol goidelic going going-over goiter +goitre goitrogen golan golconda gold gold-beater gold-worker goldbeater goldberg +goldbrick goldbricking goldcrest goldcup goldenbush goldeneye goldenrod +goldenseal goldfield goldfields goldfinch goldfish goldilocks golding goldman +goldmark goldmine goldoni goldsboro goldsmith goldstone goldthread goldworker +goldwyn golem golf golf-club golfcart golfer golfing golgi golgotha goliard +goliath golliwog golliwogg golosh goma gombrowicz gomel gomorrah gomorrha +gompers gomphothere gomphotheriidae gomphotherium gomphrena gomuti gonad +gonadotrophin gonadotropin goncourt gond gondi gondola gondolier gondoliere +gondwanaland goner gong gongora gongorism gongorist gonif goniff goniometer +gonion goniopteris gonioscopy gonne gonococcus gonorhynchidae gonorhynchus +gonorrhea gonorrhoea goo goober good good-by good-bye good-for-naught good-for- +nothing good-humoredness good-humouredness good-king-henry good-naturedness +good-neighborliness good-neighbourliness good-temperedness goodall goodby +goodbye goodenia goodeniaceae goodman goodness goodwill goody goody-goody +goodyear goodyera goof goof-off goofball goofy google googly googol googolplex +gook goon gooney goonie goony goop goosander goose goose-tansy gooseberry +goosebump goosefish gooseflesh goosefoot gooseneck gop gopher gopherus +gopherwood goral gorbachev gordimer gordius gore gorgas gorge gorger gorgerin +gorget gorgon gorgonacea gorgoniacea gorgonian gorgonocephalus gorgonzola +gorilla goring gorki gorkiy gorky gorse gosainthan gosan-chiku goshawk gosling +gosmore gospel gospeler gospeller gospels gossamer gossip gossiper gossiping +gossipmonger gossipmongering gossypium goteborg goth gothenburg gothic gothite +gotterdammerung gouache gouda goudy gouge gouger goujon goulash gould gounod +gourd gourde gourmand gourmandism gourmandizer gourmet gout governance governed +governess governing government government-in-exile governor governorship gown +goy goya gp gpa gpo gps grab grabber grace gracefulness gracelessness gracie +gracilariid gracilariidae gracility gracillariidae graciousness grackle gracula +grad gradation grade grader gradient grading gradual graduality gradualness +graduate graduation graecophile graf graffiti graffito graft grafting graham +grahame grail grain grainfield grainger graininess graining gram grama +gramicidin graminaceae graminales gramineae gramma grammar grammarian +grammatolatry grammatophyllum gramme gramophone gramps grampus gran granada +granadilla granadillo granary grand grandad grandaunt grandchild granddad +granddaddy granddaughter grandee grandeur grandfather grandiloquence grandiosity +grandma grandmaster grandmother grandnephew grandness grandniece grandpa +grandparent grandson grandstand grandstander granduncle grange granger granicus +granite graniteware grannie granny granola grant grant-in-aid grantee granter +granth grantor granularity granulation granule granulocyte granulocytopenia +granuloma granville-barker grape grapefruit grapeshot grapevine graph grapheme +graphic graphics graphite graphologist graphology graphospasm grapnel grapo +grappa grappelli grapple grappler grappling graptophyllum grasp grasping grass +grass-of-parnassus grassfinch grassfire grasshopper grassland grate gratefulness +grater graticule gratification grating gratitude gratuity grave gravedigger +gravel gravelweed graveness graver graverobber graves gravestone graveyard +gravida gravidation gravidity gravidness gravimeter gravimetry gravitas +gravitation graviton gravity gravity-assist gravure gravy gray grayback +graybeard grayhen graylag grayness graz graze grazier grazing grease grease-gun +greaseball greasepaint greaser greasewood greasiness great great-aunt great- +nephew great-niece great-uncle greatcoat greatness greave greaves grebe grecian +greco greece greed greediness greegree greek greeley green green-blindness +greenback greenbelt greenberg greenbottle greenbrier greene greenery greeneye +greenfly greengage greengrocer greengrocery greenhood greenhorn greenhouse +greening greenishness greenland greenling greenmail greenmarket greenness +greenockite greenpeace greenroom greens greensand greensboro greenshank +greensickness greenskeeper greensward greenville greenway greenweed greenwich +greenwing greenwood greeter greeting gregarine gregarinida gregariousness +gregory greisen gremlin grenada grenade grenadian grenadier grenadine grenoble +gres-gris gresham gretzky grevillea grewia grey greyback greybeard greyhen +greyhound greylag greyness gri-gri grias grid griddle griddlecake gridiron +gridlock grief grieg grievance griever griffin griffith griffon grifter grigri +grill grille grilling grillroom grillwork grimace grime griminess grimm grimness +grimoire grin grind grindelia grinder grinding grindle grindstone gringo grinner +grinning griot grip gripe gripes griping grippe gripsack gris grisaille +griselinia griseofulvin grison grissino grist gristle gristmill grit gritrock +grits gritstone grivet grizzle grizzly groan groaner groat groats grocer grocery +groenendael groenlandia grog grogginess grogram groin grommet gromwell gromyko +gronland groom groom-to-be grooming groomsman groove groover grooving grope +gropius grosbeak groschen grosgrain gross grossbeak grossness grossulariaceae +grosz grot grotesque grotesqueness grotesquerie grotesquery grotius grotto +grouch groucho ground ground-berry ground-shaker groundball groundberry +groundbreaker groundbreaking groundcover grounder groundfish groundhog grounding +groundkeeper groundlessness groundling groundmass groundnut grounds groundsel +groundsheet groundskeeper groundsman groundspeed groundwork group grouper +groupie grouping groupthink groupware grouse grouse-berry grouseberry grout +grove groveler groveller groves grower growing growl growler growling grownup +growth groyne grozny groznyy grub grubbiness grubby grubstake grudge gruel +gruesomeness gruffness grugru gruidae gruiformes grumble grumbler grumbling +grume grummet grump grumpiness grundyism grunge grunt grunter grus gruyere +gryllidae gryphon gsa gspc gsr gu guacamole guacharo guadalajara guadalcanal +guadeloupe guaiac guaiacum guaira guallatiri guam guama guan guanabana guanabenz +guanaco guangdong guangzhou guanine guano guanosine guantanamo guar guarani +guarantee guarantor guaranty guard guardhouse guardian guardianship guardrail +guardroom guardsman guarneri guarnerius guarnieri guatemala guatemalan guava +guayaquil guayule gubbins guck gudgeon guenevere guenon guerdon guereza gueridon +guerilla guernsey guerrilla guess guesser guessing guesstimate guesswork guest +guesthouse guestimate guestroom guestworker guevara guevina guff guffaw +guggenheim gui guiana guib guidance guide guidebook guideline guidepost +guideword guild guilder guildhall guile guillemot guilloche guillotine guilt +guiltiness guiltlessness guimpe guine-bissau guinea guinea-bissau guinean +guinevere guinness guise guitar guitarfish guitarist gujarat gujarati gujerat +gujerati gula gulag gulch gulden gulf gulfweed gull gullet gullibility gulliver +gully gulo gulp gulper gulping gulu gulyas gum gum-lac gumbo gumbo-limbo gumboil +gumdrop gumma gumminess gumming gummite gummosis gumption gumshield gumshoe +gumweed gumwood gun gun-sight gunboat guncotton gunfight gunfire gunflint gunite +gunk gunlock gunman gunmetal gunnel gunner gunnery gunny gunnysack gunplay +gunpoint gunpowder gunrunner gunrunning gunshot gunsight gunslinger gunsmith +gunstock gunwale guomindang guppy gur gurgle gurkha gurnard gurney guru gush +gusher gusset gust gustation gustavus gusto gut gutenberg guthrie gutierrezia +gutlessness guts gutsiness gutta-percha gutter guttersnipe guttiferae +guttiferales guttural guvnor guy guyana guyanese guyot guzzler guzzling gwydion +gwyn gwynn gy gym gymkhana gymnadenia gymnadeniopsis gymnasium gymnast +gymnastics gymnelis gymnocalycium gymnocarpium gymnocladus gymnogyps gymnomycota +gymnophiona gymnopilus gymnorhina gymnosophist gymnosophy gymnosperm +gymnospermae gymnospermophyta gymnosporangium gymnura gymslip gynaecologist +gynaecology gynaeolatry gynandromorph gynarchy gynecocracy gynecologist +gynecology gynecomastia gyneolatry gynne gynobase gynoecium gynogenesis +gynophobia gynophore gynostegium gynura gyp gypaetus gyps gypsophila gypsum +gypsy gypsyweed gypsywort gyration gyre gyrfalcon gyrinidae gyro gyrocompass +gyromitra gyroplane gyroscope gyrostabiliser gyrostabilizer gyrus gywn h h-bomb +h.p. h2o ha ha'p'orth ha'penny ha-ha haart haastia habacuc habakkuk habanera +habenaria haber haberdasher haberdashery habergeon habiliment habit habitability +habitableness habitant habitat habitation habituation habitude habitue habitus +habsburg hacek hachiman hachure hacienda hack hack-driver hackamore hackberry +hackbut hackee hackelia hacker hackle hackles hackmatack hackney hacksaw +hackwork haddock hadean hades hadith hadj hadji hadrian hadron hadrosaur +hadrosauridae hadrosaurus haecceity haeckel haem haemagglutination haemangioma +haemanthus haematemesis haematinic haematite haematobia haematocele +haematochezia haematocoele haematocolpometra haematocolpos haematocrit +haematocytopenia haematocyturia haematogenesis haematohiston haematoidin +haematologist haematology haematolysis haematoma haematopodidae haematopoiesis +haematopus haematoxylon haematoxylum haematuria haemitin haemodialysis +haemodoraceae haemodorum haemogenesis haemoglobin haemoglobinemia +haemoglobinopathy haemoglobinuria haemolysin haemolysis haemophile haemophilia +haemophiliac haemopis haemopoiesis haemoproteid haemoproteidae haemoprotein +haemoproteus haemoptysis haemorrhage haemorrhoid haemorrhoidectomy haemosiderin +haemosiderosis haemosporidia haemosporidian haemostasia haemostasis haemostat +haemothorax haemulidae haemulon hafnium haft haftarah haftorah hag hagada +haganah hagberry hagbut hagerstown hagfish haggada haggadah haggai haggard +haggis haggle haggler haggling hagiographa hagiographer hagiographist +hagiography hagiolatry hagiologist hagiology hahn hahnium haick haida haifa haik +haiku hail hailstone hailstorm haiphong hair hair's-breadth hair-raiser hairball +hairbrush haircare haircloth haircut hairdo hairdresser hairdressing hairgrip +hairiness hairlessness hairline hairnet hairpiece hairpin hairsbreadth +hairsplitter hairsplitting hairspring hairstreak hairstyle hairstylist hairtail +hairweaving haiti haitian haj haji hajj hajji hake hakea hakeem hakenkreuz +hakham hakim hakka halab halacha halaka halakah halal halberd halberdier +halchidhoma halcion halcyon haldane haldea haldol hale haleness halenia haler +halesia halevy haley half half-and-half half-breed half-brother half-caste half- +century half-cock half-holiday half-hour half-intensity half-length half-life +half-light half-mast half-moon half-pay half-pint half-relief half-sister half- +slip half-staff half-term half-truth half-wit halfback halfbeak halfpenny +halfpennyworth halftime halftone haliaeetus halibut halicarnassus halicoeres +halictidae halide halifax halimodendron haliotidae haliotis halite halitosis +halitus hall hallah halle halle-an-der-saale hallel hallelujah halley halliard +hallmark halloo hallowe'en halloween hallowmas hallowmass hallstand +hallucination hallucinogen hallucinosis hallux hallway halm halma halo +haloalkane halobacter halobacteria halobacterium halocarbon halocarpus haloform +halogen halogeton halon haloperidol halophil halophile halophyte haloragaceae +haloragidaceae halothane hals halt halter haltere halyard ham hamadryad +hamamelidaceae hamamelidae hamamelidanthum hamamelidoxylon hamamelis hamamelites +haman hamartia hamartoma hamas hamate hamburg hamburger hame hamelia hamelin +hameln hamilton haminoea hamitic hamito-semitic hamlet hammarskjold hammer +hammerhead hammering hammerlock hammerstein hammertoe hammett hamming hammock +hammurabi hammurapi hamper hampshire hampton hamster hamstring hamsun han han- +gook hancock hand hand-me-down handbag handball handbarrow handbasin handbasket +handbell handbill handbook handbow handbreadth handcar handcart handclap +handclasp handcraft handcuff handedness handel handful handgrip handgun handhold +handicap handicapped handicapper handicraft handiness handiwork handkerchief +handle handle-bars handlebar handler handline handling handlock handloom +handmaid handmaiden handoff handout handover handrail handrest hands handsaw +handsbreadth handset handshake handshaking handsomeness handspike handspring +handstamp handstand handwear handwheel handwork handwriting handy handyman hang +hang-up hangar hangbird hangchow hanger hanger-on hanging hangman hangnail +hangout hangover hangzhou hani hank hankering hankey hankie hanks hanky hannibal +hannover hannukah hanoi hanover hanoverian hansard hansom hanukah hanukkah +hanuman hao haoma hap haphazardness haphtarah haphtorah haploid haploidy +haplopappus haplosporidia haplosporidian haplotype happening happenstance +happiness hapsburg haptoglobin hara-kiri harakiri harangue haranguer harare +harasser harassment harbinger harbor harborage harbour harbourage hard-on +hardback hardbake hardball hardboard hardcover hardenbergia hardening hardheads +hardheartedness hardihood hardiness harding hardinggrass hardliner hardness +hardpan hardship hardtack hardtop hardware hardwareman hardwood hardy hare +harebell haredi hareem harefoot harelip harem hargeisa hargreaves haricot +harijan harikari harkat-ul-jihad-e-islami harkat-ul-mujahidin harlem harlequin +harlequin-snake harlequinade harlot harlotry harlow harm harmattan harmfulness +harmonic harmonica harmonics harmoniousness harmonisation harmoniser harmonium +harmonization harmonizer harmony harmsworth harness harp harper harpia harpist +harpo harpoon harpooneer harpooner harpsichord harpsichordist harpulla harpullia +harpy harquebus harridan harrier harriman harris harrisburg harrisia harrison +harrod harrow harshness hart hart's-tongue harte hartebeest hartford hartley +harum-scarum harvard harvest harvest-lice harvester harvestfish harvesting +harvestman harvey has-been haschisch hasdrubal hasek hash hasheesh hashish +hashmark hasid hasidim hasidism haslet hasp hassam hassel hassid hassidim +hassidism hassium hassle hassock haste hastinapura hastiness hastings hat +hatband hatbox hatch hatchback hatchel hatchery hatchet hatching hatchling +hatchway hate hatefulness hatemonger hater hatful hathaway hatiora hatmaker +hatpin hatrack hatred hatter hattiesburg hauberk haughtiness haul haulage hauler +haulier hauling haulm haunch haunt hausa hausen hausmannite haussa haustorium +hautbois hautboy haute-normandie hauteur havana havasupai have have-not havel +havelock haven haversack havoc haw haw-haw hawai'i hawaii hawaiian hawala +hawfinch hawk hawk's-beard hawk's-beards hawkbill hawkbit hawker hawking hawkins +hawkishness hawkmoth hawksbill hawkshaw hawkweed hawkyns haworth hawse hawsehole +hawsepipe hawser hawthorn hawthorne hay hay-scented hayastan haycock haydn hayek +hayes hayfield hayfork haying hayloft haymaker haymaking haymow hayrack hayrick +hayrig hays hayseed haystack hayti haywire haywood hazan hazard hazardia +hazardousness haze hazel hazelnut hazelwood haziness hazlitt hazmat hb hcfc hcg +hdl hdtv he he-goat he-huckleberry he-man head head-shrinker headache headband +headboard headcheese headcount headcounter headdress header headfast headfish +headful headgear headhunter heading headlamp headland headlight headline +headliner headlinese headlock headman headmaster headmastership headmistress +headmistressship headphone headpiece headpin headquarters headrace headrest +headroom heads-up headsail headscarf headset headshake headshaking headship +headshot headsman headspace headspring headstall headstand headstock headstone +headstream headwaiter headwater headway headwind headword healer healing health +healthcare healthfulness healthiness heap heaps hearer hearing hearsay hearse +hearst heart heart-leaf heart-to-heart heartache heartbeat heartbreak +heartbreaker heartburn heartburning hearth hearthrug hearthstone heartiness +heartland heartleaf heartlessness heartrot hearts heartsease heartseed +heartsickness heartstrings heartthrob heartwood heat heater heath heathen +heathenism heather heathfowl heathland heating heatstroke heaume heave heaven +heavens heaver heaves heaviness heaving heaviside heavy heavyheartedness +heavyweight hebbel hebdomad hebe hebei hebephrenia hebetude hebraism hebraist +hebrew hebrews hebrides hecate hecatomb hecht heckelphone heckle heckler +heckling hectare hectogram hectograph hectoliter hectolitre hectometer +hectometre hector hedeoma hedera hedge hedgefund hedgehog hedger hedgerow +hedging hediondilla hedjaz hedonism hedonist hedysarum hee-haw heebie-jeebies +heed heedfulness heedlessness heel heelbone hefa heft heftiness hegari hegel +hegelian hegemon hegemony hegira heidegger heifer height heights heilong heimdal +heimdall heimdallr heinlein heinousness heinz heir heir-at-law heiress heirloom +heisenberg heist hejaz hejira hel hela helen helena helenium heleodytes +heliamphora helianthemum helianthus helichrysum helicidae helicon helicopter +helicteres heliobacter heliogram heliograph heliogravure heliolatry heliometer +heliopause heliophila heliopsis helios heliosphere heliotherapy heliothis +heliotrope heliotropism heliotype heliozoa heliozoan heliport helipterum helium +helix hell hell-kite hell-rooster hellbender hellcat hellebore helleborine +helleborus hellene hellenic hellenism heller helleri hellespont hellfire +hellgrammiate hellhole hellhound hellion hellman hello helm helmet helmetflower +helmholtz helminth helminthiasis helminthic helminthostachys helmsman heloderma +helodermatidae heloise helot helotiaceae helotiales helotium help helpdesk +helper helpfulness helping helplessness helpmate helpmeet helsingfors helsinki +helve helvella helvellaceae helvetica helwingia helxine hem hemachatus +hemagglutination hemangioma hematemesis hematin hematinic hematite hematocele +hematochezia hematochrome hematocoele hematocolpometra hematocolpos hematocrit +hematocyst hematocytopenia hematocyturia hematogenesis hematohiston hematoidin +hematologist hematology hematolysis hematoma hematopoiesis hematuria heme +hemeralopia hemerobiid hemerobiidae hemerocallidaceae hemerocallis hemiacetal +hemianopia hemianopsia hemiascomycetes hemicrania hemicycle hemidemisemiquaver +hemiepiphyte hemigalus hemigrammus hemimetabola hemimetabolism hemimetaboly +hemimetamorphosis hemimorphite hemin heming hemingway hemiparasite hemiplegia +hemiplegic hemipode hemiprocnidae hemiptera hemipteran hemipteron hemipteronatus +hemiramphidae hemisphere hemitripterus hemline hemlock hemming-stitch hemminge +hemochromatosis hemodialysis hemodialyzer hemodynamics hemofil hemogenesis +hemoglobin hemoglobinemia hemoglobinopathy hemoglobinuria hemolysin hemolysis +hemophile hemophilia hemophiliac hemopoiesis hemoprotein hemoptysis hemorrhage +hemorrhoid hemorrhoidectomy hemosiderin hemosiderosis hemostasia hemostasis +hemostat hemothorax hemp hemstitch hemstitching hen hen-of-the-woods henbane +henbit henchman hencoop hendiadys hendrix henhouse henna henroost henry henson +hepadnavirus heparin hepatic hepatica hepaticae hepaticopsida hepatitis +hepatocarcinoma hepatoflavin hepatoma hepatomegaly hepatotoxin hepburn +hephaestus hephaistos heptad heptagon heptane hepworth hera heracles heracleum +heraclitus herakles herald heraldry herat herb herbage herbal herbalist +herbarium herbart herbert herbicide herbivore herculaneum hercules +hercules'-club hercules'-clubs hercules-club herculius herd herder herdsman here +hereafter hereditament hereditarianism heredity hereford hereness herero heresy +heretic heritage heritiera heritor herm herman hermann hermannia hermaphrodism +hermaphrodite hermaphroditism hermaphroditus hermeneutics hermes hermissenda +hermit hermitage hermosillo hernaria hernia herniation hero herod herodotus +heroic heroics heroin heroine heroism heron heronry herpangia herpes herpestes +herpetologist herpetology herr herrenvolk herrerasaur herrerasaurus herrick +herring herringbone herschel hershey hertfordshire hertha hertz herzberg heshvan +hesiod hesitance hesitancy hesitater hesitation hesitator hesperides +hesperiphona hesperis hesperus hess hesse hessian hessonite hestia heteranthera +heterobasidiomycetes heterocephalus heterocycle heterocyclic heterodon +heterodoxy heterogeneity heterogeneousness heterogenesis heterograft +heterokontae heterokontophyta heterology heteromeles heterometabolism +heterometaboly heteromyidae heteronym heteroploid heteroploidy heteroptera +heteroscelus heterosexism heterosexual heterosexualism heterosexuality heterosis +heterosomata heterospory heterostracan heterostraci heterotaxy heterotheca +heterotrichales heterotroph heterozygosity heterozygote heth heuchera heulandite +heuristic hevea hevesy hewer hex hexachlorophene hexad hexadrol hexagon hexagram +hexagrammidae hexagrammos hexahedron hexalectris hexameter hexamita hexanchidae +hexanchus hexane hexapod hexapoda hexenbesen hexestrol hexose heyday heyerdahl +heyrovsky heyse heyward hezbollah hezekiah hf hfc hg hhs hi hi-fi hiatus +hiawatha hibachi hibbertia hibbing hibernation hibernia hibiscus hiccough hiccup +hick hickey hickock hickory hidatsa hiddenite hiddenness hide hide-and-seek +hideaway hideousness hideout hiding hidrosis hieracium hierarch hierarchy +hieratic hierocracy hieroglyph hieroglyphic hierolatry hieronymus higginson high +high-five high-handedness high-low high-low-jack high-mindedness high- +muck-a-muck high-rise high-spiritedness high-up highball highbinder highboard +highboy highbrow highchair higher-up highflier highflyer highjack highjacker +highjacking highland highlander highlands highlife highlight highlighter +highlighting highness highroad highschool highwater highway highwayman higi +hijab hijack hijacker hijacking hijaz hijinks hike hiker hiking hilarity hilbert +hildebrand hill hillary hillbilly hillel hilliness hillock hillside hilltop hilo +hilt hilum hilus himalaya himalayas himalayish himantoglossum himantopus himmler +hin hinault hinayana hinayanism hinayanist hind hindbrain hindemith hindenburg +hinderance hindfoot hindgut hindi hindlimb hindoo hindooism hindoostani +hindostani hindquarter hindquarters hindrance hindshank hindsight hindu hinduism +hindustan hindustani hinge hinny hint hinterland hip hip-hop hipbone hipflask +hipline hipparchus hippeastrum hippie hippies hippo hippobosca hippoboscid +hippoboscidae hippocampus hippocastanaceae hippocrates hippocrepis hippodamia +hippodrome hippoglossoides hippoglossus hippopotamidae hippopotamus +hipposideridae hipposideros hippotragus hippy hipster hipsters hipsurus hire +hire-purchase hireling hirer hirohito hiroshima hirschfeld hirschsprung +hirsuteness hirsutism hirudinea hirudinean hirudinidae hirudo hirundinidae +hirundo hispanic hispaniola hiss hisser hissing histaminase histamine histidine +histiocyte histiocytosis histocompatibility histogram histoincompatibility +histologist histology histone historian historicalness historicism +historiographer historiography history histrion histrionics hit hitch hitchcock +hitchhiker hitchings hitchiti hitchrack hitler hitman hitter hitting hittite hiv +hive hives hizballah hizbollah hizbullah hl hm hmo hmong hn hnd ho hoactzin +hoagie hoagland hoagy hoar hoard hoarder hoarding hoarfrost hoariness hoarseness +hoatzin hoax hoaxer hob hobart hobbes hobbit hobble hobbledehoy hobbler hobbs +hobby hobbyhorse hobbyism hobbyist hobgoblin hobnail hobo hock hock-joint hockey +hocus-pocus hod hodeida hoder hodgepodge hodgkin hodman hodometer hodoscope hodr +hodur hoe hoecake hoenir hoffa hoffman hoffmann hoffmannsthal hog hogan hogarth +hogback hogchoker hogfish hogg hogget hoggishness hogmanay hogshead hogwash +hogweed hohenlinden hohenzollern hoheria hohhot hoist hoister hoka hokan +hokkaido hokkianese hokum hokusai holarrhena holbein holbrookia holcus hold +hold-down holdall holder holdfast holding holdout holdover holdup hole hole-in- +the-wall holibut holiday holidaymaker holiness holism holla holland hollandaise +hollander hollands holler hollering hollerith hollo holloa hollow hollow-back +holloware hollowness hollowware holly hollygrape hollyhock hollywood holmes +holmium holocaust holocene holocentridae holocentrus holocephalan holocephali +holocephalian holofernes hologram holograph holography holometabola +holometabolism holometaboly holonym holonymy holophyte holothuria holothurian +holothuridae holothuroidea holotype holstein holstein-friesian holster holy +holystone homage homaridae homarus hombre homburg home home-builder home-farm +homebody homebound homeboy homebrew homebuilder homecoming homefolk homegirl +homel homeland homeless homelessness homeliness homemaker homemaking homeobox +homeopath homeopathy homeostasis homeotherm homeowner homepage homer homeroom +homesickness homespun homestead homesteader homestretch hometown homework +homicide homiletics homily hominid hominidae hominoid hominoidea hominy hommos +homo homobasidiomycetes homoeopath homoeopathy homoeroticism homogenate +homogeneity homogeneousness homogenisation homogenization homogeny homograft +homograph homogyne homoiotherm homology homomorphism homomorphy homona homonym +homonymy homophile homophobe homophobia homophone homophony homoptera homopteran +homosexual homosexualism homosexuality homospory homotherm homozygosity +homozygote homunculus homyel honcho hondo honduran honduras hone honegger +honestness honesty honey honey-flower honeybee honeybells honeycomb honeycreeper +honeydew honeyflower honeymoon honeymooner honeypot honeysucker honeysuckle +honiara honk honker honkey honkie honky honky-tonk honkytonk honolulu honor +honorableness honorarium honoree honorific honoring honour honourableness +honours honshu hoo-ha hoo-hah hooch hood hoodlum hoodmold hoodmould hoodoo +hoodooism hooey hoof hoof-mark hoofer hoofing hoofprint hook hookah hooke hooker +hooking hooknose hooks hookup hookworm hooky hooligan hooliganism hoop hoopla +hoopoe hoopoo hoops hoopskirt hooray hoosegow hoosgow hoosier hoot hootch hooter +hoover hop hop-picker hop-step-and-jump hope hopeful hopefulness hopeh hopei +hopelessness hoper hopi hopkins hopkinson hopper hops hopsack hopsacking +hopscotch horace horde hordeolum hordeum horehound horizon horizontal +horizontality hormone horn hornbeam hornbill hornblende hornbook horne +horneophyton hornet horney hornfels horniness hornist hornpipe hornpout +hornstone hornwort horologe horologer horologist horology horoscope horoscopy +horowitz horridness horripilation horror horse horse-brier horse-cart horse-head +horse-pistol horse-trail horseback horsebean horsebox horsecar horsecloth +horsefish horseflesh horsefly horsehair horsehead horsehide horselaugh +horseleech horseman horsemanship horsemeat horsemint horseplay horsepond +horsepower horsepower-hour horseradish horseshit horseshoe horseshoer horseshoes +horseshow horsetail horseweed horsewhip horsewhipping horsewoman horst horta +hortensia horticulture horticulturist horus hosanna hose hosea hosepipe hosier +hosiery hospice hospitableness hospital hospitalisation hospitality +hospitalization host hosta hostaceae hostage hostel hosteller hostelry hostess +hostile hostilities hostility hostler hot-rod hotbed hotbox hotcake hotchpotch +hotdog hotei hotei-chiku hotel hotel-casino hotelier hotelkeeper hotelman +hotfoot hoth hothead hothouse hothr hotness hotplate hotpot hotshot hotspot +hotspur hottentot hottonia houdah houdini houghton houhere hoummos hound +hound's-tongue hour hourglass houri hours housatonic house house-builder house- +raising houseboat housebreaker housebreaking housebuilder housecleaning +housecoat housecraft housedog housefather housefly houseful houseguest household +householder househusband housekeeper housekeeping houselights housemaid houseman +housemaster housemate housemother housepaint houseplant houseroom housetop +housewarming housewife housewifery housework housewrecker housing housman +houston houttuynia houyhnhnm houyhnhnms hovea hovel hovercraft how-d'ye-do how- +do-you-do howard howdah howdy howe howells howitzer howl howler howling hoy hoya +hoyden hoydenism hoyle hp hq hr hrolf hrt hrvatska hryvnia hs hs1 hs2 hsian +hsv-1 hsv-2 hsv-i hsv-ii htlv-1 html http hua huainaputina hualapai hualpai +huamachil huambo huarache huaraches huascaran hub hub-and-spoke hubbard hubble +hubble-bubble hubbly-bubbly hubbub hubby hubcap hubel hubris huck huckaback +huckleberry huckster hud huddle huddler hudood hudson hudsonia hudud hue huff +huffiness huffing huffishness hug hug-me-tight hugger hugger-mugger hugging +huggins hughes hugo hugueninia huguenot huisache huitre huji hula hula-hoop +hula-hula hulk hull hullabaloo hullo hulsea hum hum-vee human humaneness +humanisation humanism humanist humanitarian humanitarianism humanities humanity +humanization humankind humanness humanoid humans humate humber humblebee +humbleness humboldt humbug humdinger humdrum hume humectant humerus humidity +humidness humification humiliation humility humin hummer humming hummingbird +hummock hummus humor humoring humorist humorousness humour humourist humous hump +humpback humperdinck humulin humulus humus humvee hun hunan hunch hunchback +hundred hundred-percenter hundredth hundredweight hungarian hungary hunger +hungriness hunk hunkpapa hunnemannia hunt hunter hunter-gatherer hunting +huntington huntress huntsman huntsville hupa hurdle hurdler hurdles hurdling +hurdy-gurdy hurl hurler hurling hurok huron hurrah hurricane hurriedness hurry +hurrying hurt hurting hus husain husayn husband husbandman husbandry hush +hushing hushpuppy husk huskiness husking husky huss hussar hussein husserl +hussite hussy hustings hustle hustler huston hut hutch hutchins hutchinson +hutment hutton hutu hutzpah huxley huygens hyacinth hyacinthaceae hyacinthoides +hyades hyaena hyaenidae hyalin hyaline hyalinisation hyalinization hyaloid +hyalophora hyaloplasm hyalosperma hyalospongiae hyaluronidase hyazyme hybanthus +hybrid hybridisation hybridization hybridizing hybridoma hydantoin hydathode +hydatid hydatidosis hyderabad hydnaceae hydnocarpus hydnoraceae hydnum hydra +hydralazine hydramnios hydrangea hydrangeaceae hydrant hydrargyrum hydrarthrosis +hydrastis hydrate hydration hydraulics hydrazine hydrazoite hydremia hydride +hydrilla hydrobates hydrobatidae hydrocarbon hydrocele hydrocephalus +hydrocephaly hydrocharidaceae hydrocharis hydrocharitaceae hydrochloride +hydrochlorofluorocarbon hydrochlorothiazide hydrochoeridae hydrochoerus +hydrocolloid hydrocortisone hydrocortone hydrocracking hydrodamalis hydrodiuril +hydrodynamics hydroelectricity hydroflumethiazide hydrofluorocarbon hydrofoil +hydrogel hydrogen hydrogenation hydrography hydroid hydrokinetics hydrolith +hydrologist hydrology hydrolysate hydrolysis hydromancer hydromancy hydromantes +hydromel hydrometer hydrometry hydromorphone hydromyinae hydromys hydronephrosis +hydropathy hydrophidae hydrophobia hydrophobicity hydrophyllaceae hydrophyllum +hydrophyte hydroplane hydroponics hydrops hydrosphere hydrostatics hydrotherapy +hydrothorax hydroxide hydroxybenzene hydroxychloroquine hydroxyl hydroxymethyl +hydroxyproline hydroxytetracycline hydroxyzine hydrozoa hydrozoan hydrus +hyemoschus hyena hygeia hygiene hygienics hygienist hygrocybe hygrodeik +hygrometer hygrophoraceae hygrophorus hygrophyte hygroscope hygroton hygrotrama +hyla hylactophryne hylidae hylobates hylobatidae hylocereus hylocichla +hylophylax hymen hymenaea hymenanthera hymeneal hymeneals hymenium +hymenogastrales hymenomycetes hymenophyllaceae hymenophyllum hymenopter +hymenoptera hymenopteran hymenopteron hymie hymn hymnal hymnary hymnbook hymnody +hynerpeton hyoid hyoscine hyoscyamine hyoscyamus hypallage hypanthium hypatia +hype hypentelium hyperacidity hyperactivity hyperacusia hyperacusis +hyperadrenalism hyperadrenocorticism hyperaemia hyperaldosteronism +hyperalimentation hyperbaton hyperbetalipoproteinemia hyperbilirubinemia +hyperbola hyperbole hyperboloid hyperborean hypercalcaemia hypercalcemia +hypercalcinuria hypercalciuria hypercapnia hypercarbia hypercatalectic +hypercellularity hypercholesteremia hypercholesterolemia hypercoaster +hyperdactyly hyperemesis hyperemia hyperextension hyperglycaemia hyperglycemia +hyperhidrosis hypericaceae hypericales hypericism hypericum hyperidrosis +hyperion hyperkalemia hyperlink hyperlipaemia hyperlipemia hyperlipidaemia +hyperlipidemia hyperlipoidaemia hyperlipoidemia hyperlipoproteinemia hypermarket +hypermastigina hypermastigote hypermedia hypermenorrhea hypermetropia +hypermetropy hypermotility hypernatremia hypernym hypernymy hyperoartia +hyperodontidae hyperoglyphe hyperon hyperoodon hyperope hyperopia hyperotreta +hyperparathyroidism hyperpiesia hyperpiesis hyperpigmentation hyperpituitarism +hyperplasia hyperpnea hyperpyrexia hypersecretion hypersensitivity hypersomnia +hypersplenism hyperstat hypertensin hypertension hypertensive hypertext +hyperthermia hyperthermy hyperthyroidism hypertonia hypertonicity hypertonus +hypertrophy hypervelocity hyperventilation hypervitaminosis hypervolaemia +hypervolemia hypesthesia hypha hyphantria hyphema hyphen hyphenation hypnagogue +hypnoanalysis hypnogenesis hypnopedia hypnophobia hypnos hypnosis hypnotherapy +hypnotic hypnotiser hypnotism hypnotist hypnotizer hypo hypoadrenalism +hypoadrenocorticism hypobasidium hypobetalipoproteinemia hypoblast hypocalcaemia +hypocalcemia hypocapnia hypocellularity hypochaeris hypochlorite hypochoeris +hypochondria hypochondriac hypochondriasis hypochondrium hypocorism hypocreaceae +hypocreales hypocrisy hypocrite hypocycloid hypoderma hypodermatidae hypodermic +hypodermis hypoesthesia hypogammaglobulinemia hypoglossal hypoglycaemia +hypoglycemia hypogonadism hypokalemia hypolipoproteinemia hyponatremia hyponym +hyponymy hypopachus hypoparathyroidism hypophysectomy hypophysis +hypopigmentation hypopitys hypoplasia hypopnea hypoproteinemia hyposmia +hypospadias hypostasis hypostatisation hypostatization hypotension hypotensive +hypotenuse hypothalamus hypothermia hypothesis hypothetical hypothrombinemia +hypothyroidism hypotonia hypotonicity hypotonus hypovitaminosis hypovolaemia +hypovolemia hypoxia hypoxidaceae hypoxis hypozeugma hypozeuxis hypsiglena +hypsiprymnodon hypsography hypsometer hypsometry hyracoidea hyracotherium hyrax +hyson hyssop hyssopus hysterectomy hysteresis hysteria hysteric hysterics +hysterocatalepsy hysterosalpingogram hysteroscopy hysterotomy hystricidae +hystricomorpha hytrin hz i i-beam i.d. i.e.d. i.q. i.w.w. ia iaa iaea iago iamb +iambic iambus ianfu iapetus ibadan ibda-c iberia iberian iberis ibero-mesornis +ibert ibex ibis ibn-roshd ibn-sina ibrahim ibrd ibsen ibuprofen ic icaco icao +icarus icbm icc ice ice-skater ice-wagon iceberg iceboat icebox icebreaker +icecap icecream icefall icehouse iceland icelander icelandic iceman icepick +icetray ichneumon ichneumonidae ichor ichthyolatry ichthyologist ichthyology +ichthyosaur ichthyosauria ichthyosauridae ichthyosaurus ichthyosis ichyostega +icicle iciness icing icon iconoclasm iconoclast iconography iconolatry iconology +iconoscope icosahedron icsh ictalurus icteria icteridae icterus ictiobus +ictodosaur ictodosauria ictonyx ictus icu id ida idaho idahoan iddm idea ideal +idealisation idealism idealist ideality idealization idealogue ideation +identicalness identification identifier identikit identity ideogram ideograph +ideography ideologist ideologue ideology ides idesia idf idiocy idiolatry +idiolect idiom idiopathy idiosyncrasy idiot iditarod idle idleness idler idling +ido idocrase idol idolater idolatress idolatry idolisation idoliser idolization +idolizer idp idun idyl idyll ie ied ifc ig iga igbo igd ige igg igigi iglesias +igloo iglu igm ignatius igniter ignition ignitor ignobility ignobleness +ignominiousness ignominy ignoramus ignorance ignorantness iguana iguania iguanid +iguanidae iguanodon iguanodontidae iguassu iguazu ii iii iis ijssel ijsselmeer +ijtihad ike ikhanaton ikon il ilama ilang-ilang ile-de-france ile-st-louis +ileitis ileostomy ileum ileus ilex iliad iliamna ilion ilium ilk ill ill-being +ill-breeding ill-treatment ill-usage illampu illation illecebrum illegality +illegibility illegitimacy illegitimate illiberality illicitness illicium +illimani illinois illinoisan illiteracy illiterate illness illogic illogicality +illogicalness illuminance illuminant illumination illusion illusionist +illustration illustrator illustriousness illyria illyrian ilmen ilmenite ilo +ilosone image imagery imaginary imagination imaginativeness imaging imagism +imago imam imaret imaum imavate imbalance imbauba imbecile imbecility imbiber +imbibing imbibition imbrication imbroglio imf imidazole imide iminazole +imipramine imitation imitator immaculateness immanence immanency immateriality +immatureness immaturity immediacy immediateness immenseness immensity immersion +immigrant immigration imminence imminency imminentness immobilisation immobility +immobilization immobilizing immoderateness immoderation immodesty immolation +immorality immortal immortality immortelle immotility immovability immovable +immovableness immune immunisation immunity immunization immunoassay +immunochemistry immunocompetence immunodeficiency immunoelectrophoresis +immunofluorescence immunogen immunogenicity immunoglobulin immunohistochemistry +immunologist immunology immunopathology immunosuppressant immunosuppression +immunosuppressive immunosuppressor immunotherapy immurement immutability +immutableness imo imp impact impaction impairer impairment impala impalement +impalpability impartation impartiality imparting impasse impassiveness +impassivity impasto impatience impeachability impeachment impeccability +impecuniousness impedance impediment impedimenta impeller impendence impendency +impenetrability impenetrableness impenitence impenitency imperative +imperativeness imperceptibility imperfect imperfectibility imperfection +imperfective imperfectness imperial imperialism imperialist imperiousness +imperishability imperishableness imperishingness imperium impermanence +impermanency impermeability impermeableness impermissibility impersonation +impersonator impertinence imperturbability imperturbableness imperviousness +impetigo impetuosity impetuousness impetus impiety impingement impinging +impiousness impishness implant implantation implausibility implausibleness +implement implementation implication implicitness implosion impoliteness +imponderable import importance importation importee importer importing +importunity imposition impossibility impossible impossibleness impost imposter +impostor imposture impotence impotency impounding impoundment impoverishment +impracticability impracticableness impracticality imprecation impreciseness +imprecision impregnability impregnation impresario impress impression +impressionism impressionist impressiveness impressment imprimatur imprint +imprinting imprisonment improbability improbableness impromptu improperness +impropriety improvement improver improvidence improvisation imprudence impudence +impuissance impulse impulsion impulsiveness impunity impureness impurity +imputation imu imuran in in-basket in-fighting in-joke in-law in-migration in- +tray inability inaccessibility inaccuracy inachis inaction inactivation +inactiveness inactivity inadequacy inadequateness inadmissibility inadvertence +inadvertency inadvisability inamorata inamorato inanimateness inanition inanity +inanna inapplicability inappositeness inappropriateness inaptitude inaptness +inattention inattentiveness inaudibility inaudibleness inaugural inauguration +inauspiciousness inbreeding inc inca incalescence incan incandescence +incantation incapability incapableness incapacity incarceration incarnation +incasement incaution incautiousness incendiarism incendiary incense incentive +inception incertitude incessancy incessantness incest inch incheon inchoative +inchon inchworm incidence incident incidental incienso incineration incinerator +incipience incipiency incision incisiveness incisor incisura incisure incitation +incitement inciter incivility inclemency inclementness inclination incline +inclining inclinometer inclosure inclusion incognizance incoherence incoherency +income incoming incommodiousness incommutability incompatibility incompetence +incompetency incompetent incompleteness incomprehensibility incomprehension +incompressibility inconceivability inconceivableness inconclusiveness inconel +incongruity incongruousness inconsequence inconsiderateness inconsideration +inconsistency inconspicuousness inconstancy incontinence incontinency +incontrovertibility incontrovertibleness inconvenience inconvertibility +incoordination incorporation incorporeality incorrectness incorruptibility +incorruption incorruptness increase incredibility incredibleness incredulity +increment incrimination incrustation incubation incubator incubus inculcation +inculpability inculpableness inculpation incumbency incumbent incumbrance +incurability incurable incurableness incurrence incurring incursion incurvation +incurvature incus indaba indapamide indebtedness indecency indecision +indecisiveness indecorousness indecorum indefatigability indefatigableness +indefiniteness indefinity indelicacy indemnification indemnity indene indent +indentation indention indenture independence independency independent inderal +indestructibility indeterminacy indeterminateness indetermination index +indexation indexer indexing india indiaman indian indiana indianan indianapolis +indic indicant indication indicative indicator indicatoridae indictability +indiction indictment indie indifference indigen indigence indigene +indigenousness indigestibility indigestibleness indigestion indigirka +indignation indignity indigo indigofera indigotin indinavir indirection +indirectness indiscipline indiscreetness indiscretion indispensability +indispensableness indisposition indisputability indistinctness +indistinguishability indium individual individualisation individualism +individualist individuality individualization individuation indo-aryan indo- +european indo-hittite indo-iranian indochina indocin indoctrination indolence +indomethacin indomitability indonesia indonesian indorsement indorser indra +indri indriidae indris indubitability inducement inducer inducing inductance +inductee induction inductor indulgence indulging indument indumentum induration +indus indusium industrialisation industrialism industrialist industrialization +industriousness industry indweller inebriant inebriate inebriation inebriety +ineffectiveness ineffectuality ineffectualness inefficaciousness inefficacy +inefficiency inelasticity inelegance ineligibility ineluctability ineptitude +ineptness inequality inequity inerrancy inertia inertness inessential +inessentiality inevitability inevitable inevitableness inexactitude inexactness +inexorability inexorableness inexpedience inexpediency inexpensiveness +inexperience inexplicitness infallibility infamy infancy infant infant's-breath +infanticide infantilism infantry infantryman infarct infarction infatuation +infeasibility infection infelicity inference inferior inferiority infernal +inferno infertility infestation infidel infidelity infield infielder +infiltration infiltrator infinite infiniteness infinitesimal infinitive +infinitude infinity infirmary infirmity infix inflaming inflammability +inflammation inflater inflation inflator inflection inflexibility inflexibleness +inflexion infliction infliximab inflorescence inflow influence influenza influx +info infolding infomercial informality informant informatics information +informer informercial informing infotainment infraction infrared infrastructure +infrequency infrigidation infringement infructescence infundibulum infuriation +infusion infusoria infusorian inga ingathering inge ingeniousness ingenue +ingenuity ingenuousness inger ingerman ingesta ingestion inglenook ingot +ingraining ingrate ingratiation ingratitude ingredient ingres ingress ingrian +ingroup ingrowth inguen inh inhabitancy inhabitant inhabitation inhalant +inhalation inhalator inhaler inharmoniousness inherence inherency inheritance +inheritor inheritress inheritrix inhibition inhibitor inhomogeneity +inhospitableness inhospitality inhumaneness inhumanity inhumation inion iniquity +initial initialisation initialization initiate initiation initiative initiator +injectant injection injector injudiciousness injun injunction injuriousness +injury injustice ink inka inkberry inkblot inkiness inkle inkling inkpad inkpot +inkstand inkwell inla inlay inlet inmarriage inmate inn innards innateness +innersole innervation inning innings innkeeper innocence innocency innocense +innocent innovation innovativeness innovator innsbruck innuendo innumerableness +inocor inoculant inoculating inoculation inoculator inoculum inopportuneness +inordinateness inosculation inosine inositol inpatient inpour inpouring input +inquest inquietude inquirer inquiring inquiry inquisition inquisitiveness +inquisitor inr inroad inrush ins insalubriousness insalubrity insaneness +insanity inscription inscrutability insect insecta insecticide insectifuge +insectivora insectivore insecureness insecurity insemination insensibility +insensitiveness insensitivity insentience insert insertion insessores inset +inside insider insidiousness insight insightfulness insignia insignificance +insincerity insinuation insipidity insipidness insistence insistency insisting +insobriety insolation insole insolence insolubility insolvency insolvent +insomnia insomniac insouciance inspection inspector inspectorate inspectorship +inspiration inspirer inspissation instability installation installing +installment instalment instance instancy instant instantaneousness instantiation +instar instauration instep instigant instigation instigator instillation +instillator instilling instillment instilment instinct institute institution +instroke instruction instructions instructor instructorship instructress +instrument instrumentalism instrumentalist instrumentality instrumentation +insubordination insubstantiality insufficiency insufflation insulant insularism +insularity insulation insulator insulin insult insurability insurance insured +insurer insurgence insurgency insurgent insurrection insurrectionism +insurrectionist intactness intaglio intake intangibility intangible +intangibleness integer integral integrality integrating integration integrator +integrity integument intellect intellection intellectual intellectualisation +intellectualization intelligence intelligentsia intelligibility intelnet +intemperance intemperateness intensification intensifier intension intensity +intensive intensiveness intent intention intentionality intentness interaction +interahamwe interbrain interbreeding intercalation intercept interception +interceptor intercession intercessor interchange interchangeability +interchangeableness intercom intercommunication intercommunion +interconnectedness interconnection intercostal intercourse interdependence +interdependency interdict interdiction interest interestedness interestingness +interface interference interferometer interferon interim interior interjection +interlaken interlanguage interlayer interleaf interleukin interlingua interlock +interlocking interlocutor interloper interlude intermarriage intermediary +intermediate intermediation intermediator interment intermezzo intermission +intermittence intermittency intermixture intern internalisation internality +internalization international internationale internationalisation +internationalism internationalist internationality internationalization interne +internee internet internist internment internode internship internuncio +interoception interoceptor interoperability interpellation interpenetration +interphone interplay interpol interpolation interposition interpretation +interpreter interpreting interreflection interregnum interrelatedness +interrelation interrelationship interrogation interrogative interrogator +interrogatory interrupt interrupter interruption intersection intersex +interspersal interspersion interstate interstice intertrigo interval intervenor +intervention interview interviewee interviewer intestacy intestine inti intifada +intifadah intima intimacy intimate intimation intimidation intolerance +intonation intoxicant intoxication intractability intractableness intrados +intranet intransigence intransigency intransitive intransitiveness +intransitivity intravasation intrenchment intrepidity intricacy intrigue +intriguer intro introduction introit introitus introject introjection +intromission intron intropin introspection introspectiveness introversion +introvert intruder intrusion intrusiveness intubation intuition intuitionism +intumescence intumescency intussusception inuit inula inulin inunction +inundation inutility invader invagination invalid invalidation invalidator +invalidism invalidity invalidness invaluableness invar invariability invariable +invariableness invariance invariant invasion invective invention inventiveness +inventor inventory inventorying inverse inversion invertase invertebrate +inverter investigating investigation investigator investing investiture +investment investor invidia invigilation invigilator invigoration invigorator +invincibility invirase invisibility invisibleness invitation invite invitee +invocation invoice involucre involuntariness involution involvement +invulnerability inwardness io iodide iodin iodination iodine iodine-125 +iodine-131 iodochlorhydroxyquin iodocompound iodoform iodoprotein iodopsin +iodothyronine iodotyrosine iol ion ionesco ionia ionian ionic ionisation +ionization ionophoresis ionosphere iontophoresis iontotherapy iop iota iou iowa +iowan ioway ip ipecac iphigenia ipidae ipo ipod ipomoea iproclozide ipsedixitism +ipsus ipv iq ir ira irak iraki iran irani iranian iraq iraqi irascibility ire +ireland irelander irena irenaeus irenidae iresine iridaceae iridectomy +iridescence iridium iridocyclitis iridokeratitis iridoncus iridoprocne +iridosmine iridotomy iris irish irishman irishwoman iritis iron iron-gray iron- +grey iron-tree ironclad ironing ironist ironman ironmonger ironmongery irons +ironside ironsides ironware ironweed ironwood ironwork ironworker ironworks +irony iroquoian iroquois irradiation irrational irrationality irrawaddy +irreality irredenta irredentism irredentist irregular irregularity irrelevance +irrelevancy irreligion irreligionist irreligiousness irreplaceableness +irrepressibility irreproducibility irresistibility irresistibleness +irresoluteness irresolution irresponsibility irresponsibleness irreverence +irreversibility irridenta irridentism irridentist irrigation irritability +irritant irritation irruption irs irtish irtysh irula irving irvingia isaac +isabella isaiah isarithm isatis ischaemia ischemia ischia ischigualastia ischium +isere iseult isfahan isherwood ishmael ishtar isi isinglass isis iskcon islam +islamabad islamism islamist islamophobia island island-dweller islander islay +isle islet ism ismaili ismailian ismailism isn isoagglutination isoagglutinin +isoagglutinogen isoantibody isobar isobutylene isocarboxazid isochrone isoclinal +isocrates isocyanate isoetaceae isoetales isoetes isoflurane isogamete isogamy +isogon isogone isogram isohel isolation isolationism isolationist isolde +isoleucine isomer isomerase isomerisation isomerism isomerization isometric +isometrics isometropia isometry isomorphism isomorphy isoniazid isopleth isopod +isopoda isopropanol isoproterenol isoptera isoptin isopyrum isordil isosorbide +isospondyli isostasy isotherm isothiocyanate isotope isotropy israel israeli +israelite israelites issachar issuance issue issuer issuing issus istanbul +isthmus istiophoridae istiophorus isuprel isuridae isurus it italia italian +italic italy itch itchiness itching item itemisation itemization iteration +iterative ithaca ithaki ithunn itinerant itinerary itineration itraconazole iud +iv iva ivanov ives ivory ivorybill ivp ivry ivy iw iwo iww ix ixia ixobrychus +ixodes ixodid ixodidae iyar iyyar izanagi izanami izar izmir izzard j jab +jabalpur jabber jabberer jabbering jabberwocky jabbing jabiru jaboncillo jabot +jaboticaba jacamar jacaranda jacinth jack jack-a-lantern jack-by-the-hedge jack- +in-the-box jack-in-the-pulpit jack-o'-lantern jack-o-lantern jack-tar jackal +jackanapes jackass jackboot jackdaw jacket jackfruit jackhammer jackknife +jackknife-fish jacklight jackpot jackrabbit jacks jackscrew jacksmelt jacksnipe +jackson jacksonia jacksonian jacksonville jackstones jackstraw jackstraws jacob +jacobean jacobi jacobin jacobinism jacobite jacobs jaconet jacquard jacquinia +jactation jactitation jaculus jade jadeite jadestone jaeger jafar jaffa jaffar +jag jagannath jagannatha jagatai jagganath jaggary jaggedness jagger jaggery +jagghery jaghatai jagua jaguar jaguarondi jaguarundi jahvey jahweh jail jailbird +jailbreak jailer jailhouse jailor jainism jainist jaish-e-muhammad +jaish-i-mohammed jak jakarta jakes jakobson jalalabad jalapeno jalopy jalousie +jam jamaica jamaican jamb jambalaya jambeau jamberry jambon jamboree jambos +jambosa james jamesonia jamestown jamison jamjar jammer jammies jamming jampan +jampot jan jangle janissary janitor jansen jansenism jansenist january janus jap +japan japanese jape japery japheth japonica jar jarful jargon jargoon jarrell +jasmine jasminum jason jasper jaspers jassid jassidae jat jati jatropha jaundice +jaunt jauntiness java javan javanese javanthropus javelin javelina jaw jawan +jawbone jawbreaker jawfish jay jaybird jayshullah jaywalker jazz jazzman jdam +jealousy jean jed'dah jeddah jeep jeer jeerer jeering jeffers jefferson +jeffersonian jehad jehovah jejuneness jejunitis jejunity jejunoileitis +jejunostomy jejunum jell-o jellaba jello jelly jellyfish jellyleaf jellyroll jem +jemmy jena jenner jennet jenny jensen jeopardy jerboa jeremiad jeremiah jerevan +jerez jericho jerk jerk-off jerker jerkin jerkiness jerking jerky jeroboam +jerome jerry jerry-builder jerry-building jersey jerusalem jespersen jessamine +jest jester jesuit jesuitism jesuitry jesus jet jeth jetliner jetsam jetty +jevons jew jew's-ear jew's-ears jew-baiter jew-bush jewbush jewel jeweler +jeweller jewellery jewelry jewels-of-opar jewelweed jewess jewfish jewison jewry +jezebel jfk jhvh ji jiao jib jibboom jibe jidda jiddah jiffy jig jigaboo jigger +jiggermast jiggery-pokery jiggle jigsaw jihad jihadist jillion jilt jimdandy +jimenez jimhickey jimmies jimmy jimsonweed jinghpaw jinghpo jingle jingo +jingoism jingoist jinja jinks jinnah jinnee jinni jinrikisha jinx jiqui jird +jirga jirrbal jitney jitter jitterbug jitteriness jitters jiujitsu jive jnd jnr +joachim job jobber jobbery jobcentre jobholder jocasta jock jockey jockstrap +jocoseness jocosity jocote jocularity jocundity jodhpur jodhpurs joel joewood +joffre joffrey jog jogger jogging joggle johannesburg john johnny johnny-jump-up +johnnycake johns johnson johnston join joiner joinery joining joint jointer +jointure jointworm joist joke joker jokester joliet joliot joliot-curie jolliet +jollification jolliness jollity jolly jolson jolt jonah jonathan jones jonesboro +jong jongleur jonquil jonson jook joplin joppa jordan jordanella jordanian jorum +joseph josephus joshua joss jostle jostling josue jot jotter jotting jotun +jotunn joule jounce journal journalese journalism journalist journey journeyer +journeying journeyman joust jove joviality jowett jowl joy joyce joyfulness +joylessness joyousness joyride joystick jr jra juarez jubbulpore jubilance +jubilancy jubilation jubilee juda judaea judah judaica judaism judas jude judea +judeo-spanish judge judgement judges judgeship judging judgment judicatory +judicature judiciary judiciousness judith judo jug jugale jugful juggernaut +juggle juggler jugglery juggling juglandaceae juglandales juglans jugoslav +jugoslavian jugoslavija jugular juice juicer juiciness jujitsu juju jujube +jujutsu juke jukebox julep julian julienne july jumbal jumble jumbojet jument +jump jump-start jumper jumpiness jumping jumpstart jumpsuit juncaceae +juncaginaceae junco junction juncture juncus jund-ul-islam june juneau juneberry +jung jungermanniaceae jungermanniales jungian jungle junior juniper juniperus +junk junker junkers junket junketing junkie junky junkyard juno junta junto +jupati jupaty jupiter jurassic jurisdiction jurisprudence jurist juror jury +juryman jurywoman jussieu justice justiciar justiciary justification justifier +justinian justness jut jute jutish jutland jutting juvenal juvenescence juvenile +juvenility juxtaposition jv jyaistha jylland jynx k k-lor k-lyte k-meson k.e. k2 +ka kaaba kabala kabbala kabbalah kabbalism kabbalist kabob kabolin kabul kach +kachaturian kachin kachina kachinic kadai kadikoy kaffir kaffiyeh kafir kafiri +kafka kafocin kaftan kahikatea kahlua kahn kahoolawe kail kainite kainogenesis +kaiser kakatoe kakemono kaki kala-azar kalahari kalamazoo kalansuwa kalantas +kalapooia kalapooian kalapuya kalapuyan kalashnikov kale kaleidoscope kalemia +kali kalian kalif kalimantan kalinin kaliph kaliuresis kalka kalki kalmia +kalotermes kalotermitidae kalpac kaluga kalumpang kaluresis kam-sui kam-tai kama +kamarupan kamasutra kamba kameez kamet kami kamia kamikaze kampala kampong +kampuchea kampuchean kanaf kanamycin kananga kanara kanarese kanawha +kanchanjanga kanchenjunga kanchil kandahar kandinski kandinsky kandy kangaroo +kangaroo's-foot kannada kansa kansan kansas kansu kant kantrex kanzu kaochlor +kaoliang kaolin kaoline kaolinite kaon kaopectate kapeika kaph kapok kappa +kappa-meson kapsiki kapuka karabiner karachi karaites karakalpak karakoram +karakul karaoke karat karate karbala karelia karelian karen karenic karl-marx- +stadt karlfeldt karloff karma karnataka karok karpov karsavina kartik kartikeya +karttika karttikeya karyokinesis karyolymph karyolysis karyon karyoplasm +karyotype kasai kasbah kasha kashag kashmir kashmiri kasparov kassite kastler +kat katabolism katamorphism katar katari katharevusa katharobe katharometer +katharsis kathmandu katmandu katowice katsina katsuwonidae katsuwonus kattegatt +katydid katzenjammer kauai kaufman kaunas kaunda kauri kaury kava kavakava +kavrin kawaka kayak kayo kazak kazakh kazakhstan kazakhstani kazakstan kazan +kazoo kb kbit kbo kc kea kean keaton keats keb kebab keble kechua kechuan +kedgeree keel keelboat keelson keen keenness keep keeper keeping keepsake +keeshond keflex keflin keftab keg kegful keister kekchi kekule keller kellogg +kelly keloid kelp kelpie kelpwort kelpy kelt kelter kelvin kemadrin ken kenaf +kenalog kendal kendall kendrew kennan kennedia kennedy kennedya kennel kennelly +kennewick kenning keno kenogenesis kent kentan kentish kentuckian kentucky kenya +kenyan kenyapithecus kenyata keokuk kepi kepler kera keratalgia keratectasia +keratin keratinisation keratinization keratitis keratoacanthoma keratocele +keratoconjunctivitis keratoconus keratoderma keratodermia keratohyalin +keratoiritis keratomalacia keratomycosis keratonosis keratonosus keratoplasty +keratoscleritis keratoscope keratoscopy keratosis keratotomy kerb kerbala +kerbela kerbstone kerchief kerensky kerfuffle kerion kern kernel kernicterus +kernite kerosene kerosine kerouac kerugma kerygma kesey kestrel ketalar ketamine +ketch ketchup keteleeria ketembilla ketoacidosis ketoaciduria ketohexose ketone +ketonemia ketonuria ketoprofen ketorolac ketose ketosis ketosteroid kettering +kettle kettledrum kettleful ketubim keurboom key keyboard keyboardist keycard +keyhole keynes keynesian keynesianism keynote keypad keystone keystroke kg kgb +khabarovsk khachaturian khadafy khaddar khadi khaki khakis khalif khalifah +khalka khalkha khalsa khama khamsin khamti khan khanate khanty kharkiv kharkov +khartoum khat khaya khedive khepera khesari khi khimar khios khirghiz khmer +khoikhoi khoikhoin khoisan khomeini khoum khowar khrushchev khuen khufu khukuri +khz ki kiaat kiang kib kibble kibbutz kibbutznik kibe kibibit kibibyte kibit +kibitzer kichaga kichai kick kickapoo kickback kicker kicking kickoff kickshaw +kicksorter kickstand kid kidd kiddy kidnaper kidnapper kidnapping kidney kidskin +kierkegaard kieselguhr kieserite kieslowski kiev kigali kiggelaria kike +kikladhes kildeer kilderkin kiley kilimanjaro kiliwa kiliwi kill killdeer killer +killifish killing killjoy kiln kilo kilobit kilobyte kilocalorie kilocycle +kilogram kilogram-meter kilohertz kiloliter kilolitre kilometer kilometre +kiloton kilovolt kilovolt-ampere kilowatt kilroy kilt kilter kimberley +kimberlite kimono kin kina kinaesthesia kinaesthesis kinanesthesia kinase +kinchinjunga kind kind-heartedness kindergarten kindergartener kindergartner +kindheartedness kindliness kindling kindness kindred kine kinematics kinescope +kinesiology kinesis kinesthesia kinesthesis kinesthetics kinetics kinetochore +kinetoscope kinetosis kinfolk king kingbird kingbolt kingcup kingdom kingfish +kingfisher kinglet kingmaker kingpin kingship kingsnake kingston kingstown +kingwood kinin kink kinkajou kino kinosternidae kinosternon kinsey kinsfolk +kinshasa kinship kinsman kinsperson kinswoman kinyarwanda kiosk kiowa kip +kipling kipper kirchhoff kirchner kirghiz kirghizia kirghizstan kirgiz kirgizia +kirgizstan kiribati kirk kirkia kirkuk kirpan kirsch kirtle kishar kishinev +kishke kislev kismat kismet kiss kiss-me-over-the-garden-gate kisser kissimmee +kissing kissinger kisumu kiswahili kit kitakyushu kitambilla kitbag kitchen +kitchener kitchenette kitchenware kite kitembilla kith kitsch kittee kitten +kitten-tails kittiwake kittul kitty kitty-cat kitul kivu kiwi kkk klaipeda +klamath klan klansman klaproth klavern klavier klaxon klebsiella klee kleenex +klein kleist kleptomania kleptomaniac klick klimt kline klinefelter klondike +klopstock klorvess klotho kludge klutz kluxer klystron klyuchevskaya km km/h +knack knacker knackwurst knapsack knapweed knave knavery knawe knawel knee knee- +hi knee-high kneecap kneel kneeler kneeling kneepan knell knesset knesseth +knickerbockers knickers knickknack knickknackery knife knife-edge knife-handle +knight knight-errant knighthood knightia knightliness kniphofia knish knit +knitter knitting knitwear knitwork knob knobble knobkerrie knobkerry knock +knock-knee knockabout knockdown knocker knocking knockoff knockout knockwurst +knoll knossos knot knotgrass knothole knottiness knout know know-all know-how +know-it-all knower knowing knowingness knowledge knowledgeability +knowledgeableness knox knoxville knuckle knuckleball knucklebones knucklehead +knuckler knuckles knucks knut ko koala koan koasati kob kobe kobenhavn kobo +kobus koch kochia kodiak koellia koestler kogia kohl kohleria kohlrabi koine +koinonia kok-saghyz kok-sagyz kokka kola kolam kolami kolkata kolkhoz kolkhoznik +kolkwitzia koln kolonia komi komondor konakri kongfuze kongo konini konoe konoye +konqueror koodoo kook kookaburra koopmans kopeck kopek kopiyka kopje koppie kor +koran korbut korchnoi korda kordofan kordofanian kore korea korean korinthos +koruna korzybski kos kosciusko kosciuszko kosher kosovo kosteletzya kota kotar +kotex koto kotoko kotow koudou koumiss koussevitzky kovna kovno koweit kowhai +kowtow kp kph kr kraal krafft-ebing kraft krait krakatao krakatau krakatoa +krakau krakow krasner kraurosis kraut krauthead krebs kreisler kremlin krigia +krill kris krishna krishnaism kriti kroeber krona krone kronecker kroon +kropotkin kroto krubi kruger krummhorn krupp krypterophaneron krypton ks +kshatriya kt ku-chiku kuangchou kubrick kuchean kudos kudu kudzu kuenlun kuhn +kui kuiper kukenaam kuki kuki-chin kulanapan kulun kumasi kumis kummel kumquat +kunlun kunzite kuomintang kura kurakkan kurchee kurchi kurd kurdish kurdistan +kuri-chiku kurosawa kuroshio kurrajong kurrat kursk kurta kuru kurus kurux kusan +kutch kutuzov kuvasz kuvi kuwait kuwaiti kuznets kv kvass kvetch kw kw-hr kwa +kwacha kwai kwajalein kwakiutl kwan-yin kwangchow kwangju kwangtung kwannon +kwanza kwanzaa kwashiorkor kwazulu-natal kweek kwela kwell ky kyanite kyat kyd +kylie kylix kymograph kyo-chiku kyoto kyphosidae kyphosis kyphosus kyrgyzstan +kyushu kyyiv l l'aquila l'enfant l-dopa l-p l-plate la laager lab laban +labanotation labdanum label labetalol labial labiatae labiodental labium lablab +lablink labor laboratory laborer laboriousness labour labourer labourite +labrador labridae labrocyte labrouste laburnum labyrinth labyrinthitis +labyrinthodont labyrinthodonta labyrinthodontia lac laccopetalum lace lacebark +lacepod lacer laceration lacerta lacertid lacertidae lacertilia lacewing +lacewood lacework lachaise lachesis lachnolaimus lachrymation lachrymator lacing +lack lackey laconia laconian laconicism laconism lacquer lacquerware lacrimation +lacrimator lacrosse lactaid lactalbumin lactarius lactase lactate lactation +lacteal lactifuge lactobacillaceae lactobacillus lactobacteriaceae lactoflavin +lactogen lactophrys lactose lactosuria lactuca lacuna lad ladanum ladder ladder- +back laddie ladies'-eardrop ladies'-eardrops ladin lading ladino ladle ladoga +lady lady's-eardrop lady's-eardrops lady's-finger lady-in-waiting lady-of-the- +night lady-slipper ladybeetle ladybird ladybug ladyfinger ladyfish ladylikeness +ladylove ladyship laelia laertes laetrile laevulose lafayette laffer laffite +lafitte lag lagan lagarostrobus lagenaria lagend lagenophera lager lagerphone +lagerstroemia laggard lagger lagging lagidium lagniappe lagodon lagomorph +lagomorpha lagoon lagophthalmos lagopus lagorchestes lagos lagostomus lagothrix +laguna laguncularia lagune lah lahar lahore lahu lair laird laity laius lake +lakefront lakeland lakeshore lakeside lakh lakota lakshmi lallans lallation +lally lam lama lamaism lamaist lamarck lamarckian lamarckism lamasery lamb +lamb's-quarter lamb's-quarters lamb-chop lambchop lambda lambdacism lambency +lambert lambertia lambis lambkill lambkin lambrequin lambskin lame lamedh +lamella lamellibranch lamellibranchia lamellicornia lameness lament lamentation +lamentations lamenter lamia lamiaceae lamina laminaria laminariaceae +laminariales laminate lamination laminator laminectomy laminitis lamisil lamium +lamivudine lammas lammastide lammergeier lammergeyer lamna lamnidae lamp +lampblack lamphouse lamplight lamplighter lampoon lampooner lamppost lamprey +lampridae lampris lampropeltis lampshade lampshell lampyridae lan lanai +lancashire lancaster lancastrian lance lancelet lancelot lancer lancers lancet +lancetfish lancewood lanchou lanchow land landau lander landfall landfill +landgrave landholder landholding landing landlady landler landline landlord +landlubber landman landmark landmass landowner landowska landrover landscape +landscaper landscaping landscapist landside landslide landslip landsmaal +landsmal landsman landsteiner lane laney langbeinite lange langlaufer langley +langmuir langobard langouste langoustine langsat langset langside langsyne +langtry language languedoc-roussillon languisher languor langur laniard laniidae +lanius lankiness lanolin lanoxin lansa lansat lanseh lanset lansing lansoprazole +lantana lantern lantern-fly lanternfish lanthanide lanthanoid lanthanon +lanthanotidae lanthanotus lanthanum lanugo lanyard lanzhou lao lao-tse lao-tzu +lao-zi laocoon laos laotian lap laparocele laparoscope laparoscopy laparotomy +lapboard lapdog lapel lapful lapidarist lapidary lapidation lapidator lapidist +lapin laplace lapland laportea lapp lappet lappic lapping lappish lappland +lapplander lappula lapse lapsing laptop laputa lapwing laramie larboard larcener +larcenist larcenous larceny larch lard larder lardizabala lardizabalaceae +lardner laredo large largemouth largeness largess largesse larghetto largo lari +lariat laricariidae larid laridae larium larix lark larkspur larodopa larotid +larousse larrea larus larva larvacea larvacean larvacide larvicide laryngectomy +laryngismus laryngitis laryngopharyngitis laryngopharynx laryngoscope +laryngospasm laryngostenosis laryngotracheobronchitis larynx lasagna lasagne +lasalle lascar lascaux lasciviousness lasek laser lash lash-up lasher lashing +lashings lashkar-e-jhangvi lashkar-e-omar lashkar-e-taiba lashkar-e-tayyiba +lashkar-e-toiba lasik lasiocampa lasiocampid lasiocampidae lasiurus lasix lass +lassa lassie lassitude lasso last lastex lasthenia lastingness lastreopsis lat +latakia latanier latch latchet latchkey latchstring latecomer lateen lateen-rig +latency lateness lateral lateralisation laterality lateralization lateran +laterite lates latest latex lath lathe lathee lather lathi lathyrus laticifer +latimeria latimeridae latin latinae latinesce latinism latinist latino latitude +latitudinarian latium latke latona latria latrine latrobe latrodectus lats latte +latten latter lattice latticework latvia latvian laudability laudableness +laudanum laudator lauder laudo laugh laugher laughingstock laughter laughton +lauhala launce launch launcher launching launchpad launderette laundering +laundress laundromat laundry laundryman laundrywoman lauraceae laurasia laureate +laurel laurel-tree laurels laurelwood laurens laurentius laurus lausanne lav +lava lavabo lavage lavalava lavalier lavaliere lavalliere lavandula lavatera +lavation lavatory lavender laver lavishness lavoisier law law-breaking law- +makers lawbreaker lawcourt lawfulness lawgiver lawlessness lawmaker lawmaking +lawman lawn lawrence lawrencium laws lawsuit lawton lawyer lawyerbush laxation +laxative laxity laxness lay lay-by lay-up layabout layby layer layette layia +laying layman layoff layout layover layperson layup lazar lazaret lazarette +lazaretto lazarus laziness lazio lazuli lazuline lazybones lb lbf. lbj lcd lcm +ld. ldl le lea leach leaching leacock lead lead-in leadbelly leader leaders +leadership leading leadplant leadwort leaf leaf-book leaf-cutter leaf-miner +leaf-roller leafage leafhopper leafing leaflet leafstalk league leak leakage +leaker leakey leakiness lean lean-to leander leaner leaning leanness leap leaper +leapfrog leaping lear learnedness learner learning leary lease lease-lend +leasehold leaseholder leash least leather leatherback leatherette leatherfish +leatherjack leatherjacket leatherleaf leatherneck leatherwood leatherwork leave +leave-taking leaven leavening leaver leaving lebanese lebanon lebensraum +lebistes lecanopteris lecanora lecanoraceae leccinum lech lechanorales +lechatelierite lecher lecherousness lechery lechwe lecithin lectern lectin +lector lecture lecturer lectureship lecturing lecythidaceae led leda ledbetter +lede lederhosen ledge ledgeman ledger ledum lee leech leechee leeds leek leer +lees leeuwenhoek leeward leeway leflunomide left left-handedness left-hander +left-winger leftfield lefthander leftism leftist leftover leftovers lefty leg +leg-pull leg-pulling legacy legalese legalisation legalism legality legalization +legate legatee legateship legation legend leger legerdemain legerity legging +leghorn legibility leging legion legionary legionella legionnaire legislating +legislation legislator legislatorship legislature legitimacy legitimation lego +legs legume leguminosae lehar lei leibnitz leibniz leicester leicestershire +leiden leigh leiomyoma leiomyosarcoma leiopelma leiopelmatidae leiophyllum +leipoa leipzig leishmania leishmaniasis leishmaniosis leister leisure +leisureliness leitmotif leitmotiv leitneria leitneriaceae lek lekvar lem +lemaireocereus lemaitre lemanderin lemma lemming lemmon lemmus lemna lemnaceae +lemniscus lemnos lemon lemon-wood lemonade lemongrass lemonwood lempira lemur +lemuridae lemuroidea lena lenard lend-lease lender lending lendl length +lengthening lengthiness lenience leniency lenin leningrad leninism lenitive +lenity lennoaceae lennon lens lense lensman lent lententide lentia +lentibulariaceae lenticel lentigo lentil lentinus lentisk leo leon leonard +leonardo leonberg leoncita leone leonidas leonotis leontief leontocebus +leontodon leontopodium leonurus leopard leopard's-bane leopardbane leopardess +leopoldville leotard leotards lepadidae lepanto lepas lepechinia leper lepidium +lepidobotryaceae lepidobotrys lepidochelys lepidocrocite lepidocybium +lepidodendraceae lepidodendrales lepidolite lepidomelane lepidophobia +lepidoptera lepidopteran lepidopterist lepidopterologist lepidopterology +lepidopteron lepidoptery lepidosauria lepidothamnus lepiota lepiotaceae lepisma +lepismatidae lepisosteidae lepisosteus lepomis leporid leporidae leporide leppy +leprechaun leprosy leptarrhena leptinotarsa leptocephalus leptodactylid +leptodactylidae leptodactylus leptoglossus leptomeninges leptomeningitis lepton +leptopteris leptoptilus leptospira leptospirosis leptosporangium leptotene +leptotyphlopidae leptotyphlops lepus ler leresis lermontov lerner lerot lesbian +lesbianism lesbos lescol lesion lesotho lespedeza lesquerella lessee lessening +lesseps lessing lesson lessor lesvos let letch letdown lethality lethargy lethe +leto letter lettercard letterer letterhead lettering letterman letterpress +letters letting lettish lettuce letup leu leucadendron leucaemia leucaena +leucanthemum leucine leuciscus leucocyte leucocytosis leucocytozoan +leucocytozoon leucogenes leucoma leucopenia leucorrhea leucothoe leucotomy +leuctra leukaemia leukemia leukeran leukocyte leukocytosis leukoderma +leukoencephalitis leukoma leukopenia leukorrhea leukotomy leuwenhoek lev +levallorphan levant levanter levantine levator levee level leveler leveling +leveller lever leverage leveraging leveret levi levi's levi-strauss leviathan +levirate levis levisticum levitation levite leviticus levitra levity levodopa +levorotation levulose levy lewdness lewis lewisia lewiston lexeme lexicalisation +lexicalization lexicographer lexicography lexicologist lexicology lexicon +lexicostatistics lexington lexis ley leycesteria leyden leymus leyte lf lgb lgv +lh lhasa lhotse li liabilities liability liaison liakoura liana liao liar +liatris libation libber libby libel libeler liberal liberalisation liberalism +liberalist liberality liberalization liberalness liberation liberator liberia +liberian libertarian libertarianism libertine liberty libido libocedrus libra +librarian librarianship library libration librettist libretto libreville +libritabs librium libya libyan licence license licensee licenser licentiate +licentiousness lichanura lichee lichen lichenales lichenes lichgate lichi +lichtenstein licitness lick licking licorice lid lidar lido lidocaine lie lie- +abed lie-in liebfraumilch liechtenstein liechtensteiner lied liederkranz liege +liegeman lien liepaja lietuva lieu lieutenancy lieutenant life life-of-man life- +style life-time lifeblood lifeboat lifeguard lifelessness lifeline lifer +lifesaver lifesaving lifespan lifestyle lifetime lifework lifo lift lifter +liftman liftoff ligament ligan ligand ligation ligature liger light light- +mindedness light-o'-love light-of-love light-year lightbulb lightening lighter +lighterage lighterman lightheadedness lightheartedness lighthouse lighting +lightlessness lightness lightning lights-out lightship lightsomeness lightweight +lightwood ligne lignin lignite lignosae lignum ligularia ligule liguria +ligustrum like likelihood likeliness likeness likening liking likuta lilac +lilangeni liliaceae liliales liliidae liliopsid liliopsida lilith lilium +liliuokalani lille lillie lilliput lilliputian lilo lilongwe lilt lily lilyturf +lima limacidae liman limanda limax limb limber limbers limbo limburger limbus +lime limeade limeira limekiln limelight limen limenitis limerick limestone +limewater limey limicolae limit limitation limited limiter limiting +limitlessness limner limning limnobium limnocryptes limnodromus limnologist +limnology limnos limo limonene limonite limonium limosa limousin limousine limp +limpa limper limpet limpidity limping limpkin limpness limpopo limulidae limulus +lin linac linaceae linage linalool linanthus linaria linchpin lincocin lincoln +lincolnshire lincomycin lind lindane lindbergh linden lindera lindesnes +lindheimera lindsay lindy line line-shooter line-shooting lineage lineament +linearity lineation linebacker linecut lineman linemen linen linendraper liner +linesman lineup ling ling-pao lingam lingberry lingcod lingenberry lingerer +lingerie lingering lingo lingonberry lingua lingual lingualumina linguica +linguine linguini linguist linguistics liniment linin lining link linkage +linkboy linkman links linksman linkup linnaea linnaeus linnet lino linocut +linoleum linotype linseed linsey-woolsey linstock lint lintel lintwhite linum +linuron linux linz liomys lion lion's-ear lion-hunter lioness lionet lionfish +liopelma liopelmidae liothyronine lip lip-gloss lipaemia liparidae liparididae +liparis lipase lipchitz lipectomy lipemia lipfern lipid lipidaemia lipide +lipidemia lipidosis lipitor lipizzan lipmann lipo-hepin lipo-lutin +lipochondrodystrophy lipogram lipoid lipoidaemia lipoidemia lipoma lipomatosis +lipoprotein liposarcoma liposcelis liposome liposuction lipotyphla lippi +lippizan lippizaner lippmann lipreading lipscomb lipstick liquaemin liquefaction +liqueur liquid liquidambar liquidation liquidator liquidiser liquidity +liquidizer liquidness liquor liquorice lir lira liriodendron liriope lisboa +lisbon lisinopril lisle lisp lisper lissomeness list listener listening lister +listera listeria listeriosis listing listlessness liston lisu liszt lit litany +litas litchee litchi liter literacy literal literalism literalness literate +literati literature lithane litheness lithiasis lithium lithocarpus lithodidae +lithoglyptics lithograph lithographer lithography lithology lithomancer +lithomancy lithonate lithophragma lithophyte lithops lithospermum lithosphere +lithotomy lithuania lithuanian lithuresis litigant litigation litigator +litigiousness litmus litocranius litoral litotes litre litter litter-basket +litter-bearer litterateur litterbin litterbug litterer little littleneck +littleness littoral littorina littorinidae littre liturgics liturgiology +liturgist liturgy live-and-die live-bearer live-forever livedo livelihood +liveliness livelong liveness liver liverleaf livermore liverpool liverpudlian +liverwort liverwurst livery liveryman livestock lividity lividness living +living-room livingston livingstone livistona livonia livonian livy liza lizard +lizard's-tail lizardfish ljubljana llama llano llb lld llm lloyd llud +llullaillaco llyr lm lo/ovral loach load load-shedding loader loading loads +loadstar loadstone loaf loafer loafing loam loan loan-blend loanblend loaner +loaning loanword loasa loasaceae loather loathing loathsomeness lob lobachevsky +lobata lobby lobbyism lobbyist lobe lobectomy lobefin lobelia lobeliaceae +lobipes lobito loblolly lobotes lobotidae lobotomy lobscouse lobscuse lobster +lobsterback lobsterman lobularia lobularity lobule lobworm local locale +localisation localism locality localization locater locating location locative +locator loch lochia lock lock-gate lockage lockbox lockdown locke locker locket +locking lockjaw lockkeeper lockman lockmaster locknut lockout lockring locksmith +lockstep lockstitch lockup locoism locomotion locomotive locoweed locule loculus +locum locus locust locusta locustidae locution lode lodestar lodestone lodge +lodgement lodgepole lodger lodging lodgings lodgment lodine lodz loeb loess +loestrin loewe loewi lofortyx lofoten loft loftiness log logagraphia logan +loganberry logania loganiaceae logarithm logbook loge logger loggerhead loggia +logginess logging logic logicality logicalness logician logicism loginess logion +logistician logistics logjam logo logogram logograph logomach logomachist +logomachy logomania logorrhea logos logotype logrolling logrono logwood lohan +loin loincloth loins loir loire loiseleuria loiterer loki loligo lolita lolium +lollipop lolly lolo lolo-burmese loloish lomariopsidaceae lomatia lombard +lombardia lombardy lome loment lomogramma lomotil lomustine lonas lonchocarpus +london londoner loneliness loner lonesomeness long-beard long-legs long- +sufferance long-suffering long-windedness longan longanberry longanimity +longbeard longboat longbow longbowman longer longevity longfellow longhand +longhorn longicorn longing longitude longlegs longness longroot longshoreman +longshot longsightedness longueur longways longwool longyi lonicera loniten +lontar loo loofa loofah look look-alike look-over lookdown looker looker-on +looking lookout lookup loom loon looney loonie loony loop loop-line loop-the- +loop looper loophole looping loos looseness loosening loosestrife loot looter +looting lope lophiidae lophius lophodytes lopholatilus lophophora lophophorus +lophosoria lophosoriaceae lopid lopper lopressor lopsidedness loquaciousness +loquacity loquat loranthaceae loranthus lorazepam lorca lorchel lord lordliness +lordolatry lordosis lords-and-ladies lordship lore lorelei loren lorentz lorenz +lorfan lorgnette lorica loricata loriinae lorikeet lorisidae lorraine lorre +lorry lory loser losings loss losses lost lost-and-found lot lota lothario +lothringen loti lotion lots lotte lottery lotto lotus lotus-eater lotusland +loud-hailer loudmouth loudness loudspeaker lough louis louisiana louisianan +louisianian louisville lounge lounger loungewear loup-garou loupe louse +lousiness lout louvar louver louvre lovage lovastatin love love-in-a-mist love- +in-idleness love-in-winter love-lies-bleeding love-philter love-philtre love- +potion love-song love-token lovebird lovelace loveliness lovell lovely +lovemaking lover loveseat lovesickness loving-kindness lovingness lovoa low low- +down low-spiritedness low-warp-loom lowan lowboy lowbrow lowell lower lower- +normandy lowercase lowerclassman lowering lowland lowlander lowlands lowlife +lowliness lowness lowry lox loxapine loxia loxitane loxodonta loxodrome loxoma +loxomataceae loxostege loyalist loyalty loyang loyola lozal lozenge lozier lp +lpn lr lsd ltd. ltm ltte lu luanda luau luba lubavitch lubavitcher lubber +lubbock lube lubeck lubitsch lublin lubricant lubrication lubricator lubricity +lubumbashi lucania lucanidae lucas luce lucerne lucidity lucidness lucifer +luciferin lucilia lucite luck luckiness lucknow lucrativeness lucre lucretius +lucubration lucullus luculus lucy luda luddite ludian ludo lues lufengpithecus +luff luffa lufkin luftwaffe lug luganda luge luger luggage lugger lugh luging +lugosi lugsail lugubriousness lugworm luik luke lukewarmness lull lullaby lulli +lully lulu luluabourg lumbago lumber lumbering lumberjack lumberman lumbermill +lumberyard lumbus lumen luminal luminance luminary luminescence luminism +luminosity luminousness lumma lummox lump lumpectomy lumpenproletariat lumpenus +lumper lumpfish lumpsucker luna lunacy lunaria lunatic lunation lunch luncheon +luncher lunching lunchroom lunchtime lund lunda lunette lung lung-power lunge +lungen lunger lungfish lungi lungyi lunkhead lunt lunula lunule luo luoyang +lupin lupine lupinus lupus lurch lurcher lure luridness lurker lusaka lusatian +luscinia lusciousness lush lushness lushun lusitania lust luster lusterlessness +lusterware lustfulness lustiness lustre lustrelessness lustrum luta lutanist +lute lutecium lutefisk lutein lutenist luteotropin lutetium lutfisk luther +lutheran lutheranism luthier luting lutist lutjanidae lutjanus lutra lutrinae +lutyens lutzen luvaridae luvarus luvian luwian lux luxation luxembourg +luxembourg-ville luxembourger luxemburg luxemburger luxor luxuria luxuriance +luxuriation luxuriousness luxury luyia luzon lwei lx lxx lxxviii lxxx lyallpur +lycaena lycaenid lycaenidae lycaeon lycanthrope lycanthropy lycee lyceum lychee +lychgate lychnis lycia lycian lycium lycopene lycoperdaceae lycoperdales +lycoperdon lycopersicon lycopersicum lycophyta lycopod lycopodiaceae +lycopodiales lycopodiate lycopodineae lycopodium lycopsida lycopus lycosa +lycosidae lydia lydian lye lygaeid lygaeidae lyginopteridales lyginopteris +lygodium lygus lying lying-in lyly lymantria lymantriid lymantriidae lymph +lymphadenitis lymphadenoma lymphadenopathy lymphangiectasia lymphangiectasis +lymphangiogram lymphangiography lymphangioma lymphangitis lymphedema lymphoblast +lymphocyte lymphocytopenia lymphocytosis lymphogranuloma lymphography lymphokine +lymphoma lymphopenia lymphopoiesis lymphuria lynchburg lynching lynchpin lynx +lyon lyonia lyonnais lyons lyophilisation lyophilization lypressin lyra lyre +lyre-flower lyrebird lyreflower lyric lyricality lyricism lyricist lyrist +lyrurus lysander lysenko lysichiton lysichitum lysiloma lysimachia lysimachus +lysin lysine lysinemia lysippus lysis lysogenicity lysogenisation lysogenization +lysogeny lysol lysosome lysozyme lyssa lyssavirus lythraceae lythrum lytton m +m-1 m-theory m.m. m1 m2 m3 ma ma'am maalox maar maarianhamina mac macaca macadam +macadamia macamba macao macaque macaroni macaroon macarthur macau macaulay macaw +macbeth macdowell mace macebearer macedoine macedon macedonia macedonian macer +maceration macgregor macguffin mach machaeranthera machete machiavelli +machiavellian machiavellianism machicolation machilid machilidae machination +machinator machine machinery machinist machismo machmeter macho macho-man +macintosh mack mackem mackenzie mackerel mackinaw mackintosh mackle macleaya +macleish macleod maclura macon maconnais macoun macowanites macrame +macrencephaly macro macrobiotics macrocephalon macrocephaly macrocheira +macroclemys macrocosm macrocyte macrocytosis macrodactylus macrodantin +macroeconomics macroeconomist macroevolution macroglia macroglossia +macromolecule macron macronectes macrophage macropodidae macropus +macrorhamphosidae macrosporangium macrospore macrothelypteris macrotis macrotus +macrotyloma macrouridae macrozamia macrozoarces macruridae macula maculation +macule macumba macushla madagascan madagascar madake madam madame madcap madder +madderwort madeira madeiras mademoiselle madhouse madia madison madman madnep +madness madonna madoqua madras madrasa madrasah madreporaria madrepore madrid +madrigal madrigalist madrilene madrona madrono madwoman madwort maeandra +maelstrom maenad maestro maeterlinck mafa maffia mafia mafioso mag magadhan +magazine magdalen magdalena magellan magenta maggot magh magha maghreb magi +magic magician magicicada magilp maginot magistracy magistrate magistrature +maglev magma magnanimity magnanimousness magnate magnesia magnesite magnesium +magnet magnetics magnetisation magnetism magnetite magnetization magneto +magnetograph magnetohydrodynamics magnetometer magneton magnetosphere magnetron +magnificat magnification magnificence magnifico magnifier magniloquence +magnitude magnolia magnoliaceae magnoliidae magnoliophyta magnoliopsid +magnoliopsida magnum magpie magritte maguey magus magyar magyarorszag mah-jongg +maha mahabharata mahabharatam mahabharatum mahagua mahan maharaja maharajah +maharanee maharani maharashtra mahatma mahayana mahayanism mahayanist mahdi +mahdism mahdist mahgrib mahican mahimahi mahjong mahler mahlstick mahoe mahogany +mahomet mahonia mahound mahout mahratta mahratti mahuang maia maianthemum maid +maiden maidenhair maidenhead maidenhood maidenliness maidhood maidism +maidservant maidu maiduguri maiger maigre maikoa mail mailbag mailboat mailbox +maildrop mailer mailing mailing-card maillol maillot mailman mailsorter maimed +maimer maimonides main main-topmast main-topsail maine mainer mainframe mainland +mainmast mainsail mainsheet mainspring mainstay mainstream maintainer +maintenance maintenon maiolica maisonette maisonnette maitland maitreya maize +maja majagua majesty majidae majolica major major-domo major-general majorana +majorca majorette majority majors majuscule mak makaira makalu +makataimeshekiakiak make make-believe make-do make-peace make-up make-work +makedonija makeover maker makeready makeshift makeup makeweight makin making +mako makomako malabo malabsorption malacanthidae malacca malachi malachias +malachite malacia malaclemys malacologist malacology malaconotinae +malacopterygian malacopterygii malacosoma malacostraca malacothamnus +maladjustment maladroitness malady malaga malahini malaise malamud malamute +malanga malaprop malapropism malar malaria malarkey malarky malathion malawi +malawian malaxis malaxis-unifolia malay malaya malayalam malayan malayo- +polynesian malaysia malaysian malcolmia malcontent maldivan maldives maldivian +maldon male maleate maleberry malebranche malecite malediction malefactor +maleficence malemute maleness maleo maleseet malevich malevolence malevolency +malfeasance malfeasant malformation malfunction mali malian malice maliciousness +malignance malignancy maligner malignity malignment malik malingerer malingering +malinois malinowski mall mallard mallarme malleability mallee mallet malleus +mallon mallophaga mallotus mallow malmo malmsey malnourishment malnutrition +malocclusion malodor malodorousness malodour malone malonylurea malope +malopterurus malory malosma malpighi malpighia malpighiaceae malposition +malpractice malraux mals malt malta malted maltese maltha malthus malthusian +malthusianism malti maltman malto maltose maltreater maltreatment maltster malus +malva malvaceae malvales malvasia malvastrum malvaviscus malversation mam mama +mamba mambo mamet mamey mamilla mamma mammal mammalia mammalian mammalogist +mammalogy mammea mammee mammilla mammillaria mammogram mammography mammon +mammoth mammothermography mammut mammuthus mammutidae mammy mamo mamoncillo man +man-about-town man-at-arms man-child man-eater man-of-the-earth man-of-war man- +on-a-horse manacle manageability manageableness management manager manageress +managership managua manakin manama manana manannan manat manatee manawydan +manawyddan manchester manchu manchuria mancunian manda mandaean mandaeanism +mandala mandalay mandamus mandara mandarin mandatary mandate mandator mandatory +mande mandean mandeanism mandela mandelamine mandelbrot mandelshtam mandelstam +mandevilla mandible mandibula mandioc mandioca mandola mandolin mandragora +mandrake mandrel mandril mandrill mandrillus manduca manduction mane manes manet +maneuver maneuverability maneuverer manfulness mangabey manganate manganese +manganite mange mangel-wurzel manger mangifera manginess mangle mangler +manglietia mango mangold mangold-wurzel mangonel mangosteen mangrove manhattan +manhole manhood manhunt mania maniac manic-depressive manichaean manichaeanism +manichaeism manichean manichee manicotti manicure manicurist manidae manifest +manifestation manifesto manifold manihot manikin manila manilkara manilla manioc +manioca manipulability manipulation manipulator manipur maniraptor maniraptora +manis manitoba mankato mankind manliness mann manna mannequin manner mannerism +manners mannheim mannikin mannitol manoeuvrability manoeuvre manoeuvrer +manometer manor manpad manpower manroot mansard mansart manse manservant +mansfield mansi mansion manslaughter manslayer manson manta mantegna manteidae +mantel mantelet mantell mantelpiece manteodea mantichora manticora manticore +mantid mantidae mantiger mantilla mantinea mantineia mantis mantispid +mantispidae mantissa mantle mantlepiece mantlet mantophasmatodea mantra mantrap +mantua manual manubrium manufactory manufacture manufacturer manufacturing manul +manumission manumitter manure manus manuscript manx manzanilla manzanita manzoni +mao maoi maoism maoist maori map map-reader mapinguari maple maple-leaf +mapmaking mapper mapping mapquest maputo maquiladora maquis maquisard mar mara +marabou marabout maraca maracaibo maracay maraco marang maranta marantaceae +marasca maraschino marasmius marasmus marat maratha marathi marathon marathoner +marattia marattiaceae marattiales maraud marauder maravilla marble marble-wood +marbleisation marbleising marbleization marbleizing marbles marblewood marbling +marc marceau marcel march marchantia marchantiaceae marchantiales marche marcher +marches marching marchioness marchland marchpane marciano marcionism marconi +marcuse marduk mare marengo margarin margarine margarita margasivsa margate +margay marge margin marginalia marginalisation marginality marginalization +marginocephalia marginocephalian margosa margrave marguerite mari maria mariachi +marianas maricopa mariehamn marigold marihuana marijuana marimba marina marinade +marinara marine marineland mariner marines marini marino marionette mariposa +mariposan mariticide maritimes marjoram mark markaz-ud-dawa-wal-irshad marker +market marketer marketing marketplace markhoor markhor marking markka markoff +markov markova marks marksman marksmanship markup markweed marl marlberry marley +marlin marline marlinespike marlingspike marlinspike marlite marlowe marlstone +marmalade marmara marmite marmora marmoset marmot marmota maroc marocain maroon +marplan marquand marque marquee marquess marqueterie marquetry marquette marquis +marquise marrakech marrakesh marrano marri marriage marriageability married +marrow marrowbone marrubium marruecos mars marsala marseillaise marseille +marseilles marsh marshal marshall marshals marshalship marshland marshmallow +marsilea marsileaceae marstan marsupial marsupialia marsupium mart martagon +marten martensite martes marti martial martian martin martinet martingale +martini martinique martinmas martynia martyniaceae martyr martyrdom marum marumi +marupa marut marvel marvel-of-peru marvell marveller marx marxism marxism- +leninism marxist mary maryland marylander marzipan masa masai mascara mascarpone +mascot masculine masculinisation masculinity masculinization masdevallia +masefield maser maseru mash masher mashhad mashi mashie mashriq masjid mask +masker masking masochism masochist mason masonite masonry masora masorah +masorete masorite masoud masqat masque masquer masquerade masquerader mass +massachuset massachusetts massacre massage massager massasauga massasoit massawa +masse massenet masses masseter masseur masseuse massicot massicotite massif +massine massiveness massorete mast mastaba mastabah mastalgia mastectomy master +master-at-arms mastering mastermind masterpiece masters mastership masterstroke +masterwort mastery masthead mastic mastication masticophis mastiff mastigomycota +mastigomycotina mastigophora mastigophoran mastigophore mastigoproctus mastitis +mastocyte mastodon mastodont mastoid mastoidal mastoidale mastoidectomy +mastoiditis mastopathy mastopexy mastotermes mastotermitidae masturbation +masturbator mat matabele matador matai matakam matamoros match match-up +matchboard matchbook matchbox matchbush matcher matchet matchlock matchmaker +matchmaking matchstick matchup matchweed matchwood mate matelote mater +materfamilias material materialisation materialism materialist materiality +materialization materiel maternalism maternity mates math mathematician +mathematics mathias maths matinee mating matins matisse matman matoaka matriarch +matriarchate matriarchy matric matricaria matricide matriculate matriculation +matrikin matrilineage matrimony matrisib matrix matron matronymic matsyendra +matt matte matter matterhorn matteuccia matthew matthiola matting mattock +mattole mattress maturation maturement matureness maturity matzah matzo matzoh +maugham maui maul mauldin mauler maulers maulstick maund maundy maupassant +mauriac mauritania mauritanian mauritanie mauritian mauritius maurois mauser +mausoleum mauve maven maverick mavik mavin mavis maw mawkishness mawlamyine max +maxi maxilla maxillaria maxillary maxim maximation maximian maximisation +maximization maximum maxostoma maxwell maxzide may maya mayaca mayacaceae +mayakovski mayan mayapple mayas mayday mayeng mayenne mayer mayetiola mayfish +mayflower mayfly mayhaw mayhem mayidism mayo mayonnaise mayor mayoralty mayoress +maypole maypop mays mayweed mazama mazar-i-sharif mazatlan mazdaism maze mazer +mazopathy mazurka mazzard mazzini mb mba mbabane mbd mbeya mbit mbundu mc +mcalester mcallen mccarthy mccarthyism mccartney mccauley mccormick mccullers +mcg mcgraw mcguffey mcguffin mcia mcintosh mckim mckinley mcluhan mcmaster +mcpherson md mdi mdiv mdma me mead meade meadow meadowgrass meadowlark +meagerness meagreness meal mealberry mealie mealtime mealworm mealybug mean +meander meanie meaning meaningfulness meaninglessness meanness means meantime +meanwhile meany mearstone measles measurability measure measurement measurer +measuring meat meatball meatloaf meatman meatpacking meatus mebaral mebendazole +mebibit mebibyte mecca meccano mechanic mechanics mechanisation mechanism +mechanist mechanization mecholyl meclizine meclofenamate meclomen meconium +meconopsis mecoptera mecopteran med medal medalist medallion medallist medan +medawar meddler meddlesomeness meddling medea medellin medevac medfly medford +mediacy median mediant mediastinum mediateness mediation mediator mediatrix +medic medicago medicaid medical medicament medicare medication medici medicine +medick medico mediety medina medinilla mediocrity meditation meditativeness +mediterranean medium medivac medlar medlars medley medline medoc +medroxyprogesterone medulla medusa medusan medusoid meed meekness meerestone +meerkat meerschaum meet meeter meeting meetinghouse mefloquine mefoxin meg +megabat megabit megabucks megabyte megacardia megacephaly megachile megachilidae +megachiroptera megacolon megacycle megadeath megaderma megadermatidae megaera +megaflop megagametophyte megahertz megahit megakaryocyte megalith +megalobatrachus megaloblast megalocardia megalocephaly megalocyte megalohepatia +megalomania megalomaniac megalonychidae megalopolis megaloptera megalosaur +megalosauridae megalosaurus megaphone megapode megapodiidae megapodius megaptera +megasporangium megaspore megasporophyll megathere megatherian megatheriid +megatheriidae megatherium megaton megawatt megestrol megillah megilp megohm +megrim megrims mei meiosis meir meissner meitner meitnerium mek mekong melaena +melagra melamine melampodium melampsora melampsoraceae melancholia melancholiac +melancholic melancholy melanchthon melanerpes melanesia melange melanin melanism +melanitta melanoblast melanocyte melanoderma melanogrammus melanoma melanoplus +melanosis melanotis melanthiaceae melasma melastoma melastomaceae +melastomataceae melatonin melba melbourne melchior melchite meld meleagrididae +meleagris melee melena meles melia meliaceae melicocca melicoccus melicytus +melilot melilotus melinae melioration meliorism meliorist meliphagidae melissa +melkite mellaril mellivora mellon mellowing mellowness melocactus melodiousness +melodrama melody melogale meloid meloidae melolontha melolonthidae melon +melophagus melopsittacus melosa melospiza melphalan melpomene melt meltdown +melter melting meltwater melursus melville mem member membership membracidae +membrane membranophone meme memel memento memo memoir memorabilia memorability +memoranda memorandum memorial memorialisation memorialization memorisation +memoriser memorization memorizer memory memphis memsahib men men's menace +menadione menage menagerie menander menarche mencken mend mendacity mendel +mendeleev mendelevium mendeleyev mendelian mendelianism mendelism mendelsohn +mendelssohn mender mendicancy mendicant mendicity mending menelaus menhaden +menhir menial meniere meninges meningioma meningism meningitis meningocele +meningoencephalitis meninx menippe meniscectomy meniscium meniscus +menispermaceae menispermum menninger mennonite mennonitism menominee menomini +menopause menopon menorah menorrhagia menorrhea menotti menotyphla mensa mensch +menses mensh menshevik menstruation menstruum mensuration mentalism mentality +mentation mentha menthol menticirrhus mention mentioner mentor mentum mentzelia +menu menuhin menura menurae menuridae menyanthaceae menyanthes menziesia meow +mepacrine meperidine mephaquine mephenytoin mephistopheles mephitinae mephitis +mephobarbital meprin meprobamate meq meralgia merbromine mercantilism +mercaptopurine mercator mercedario mercenaria mercenary mercer merchandise +merchandiser merchandising merchant merchant-venturer merchantability +merchantman mercifulness mercilessness merckx mercouri mercurialis mercurochrome +mercury mercy mere meredith merestone meretriciousness merganser mergenthaler +merger merginae merging mergus mericarp merida meridian meringue merino meriones +meristem merit meritocracy meritoriousness merl merlangus merle merlin merlon +merlot merluccius mermaid merman merodach meromelia meronym meronymy meropidae +merops merostomata merovingian merozoite merrimac merrimack merriment merriness +merry-go-round merrymaker merrymaking mertensia merthiolate merton meryta mesa +mesalliance mesantoin mesasamkranti mescal mescaline mesembryanthemum +mesencephalon mesenchyme mesentery mesh meshed meshing meshugaas meshuggeneh +meshuggener meshwork mesmer mesmerism mesmerist mesmerizer mesoamerica +mesoamerican mesoblast mesocarp mesocolon mesocricetus mesoderm mesohippus +mesolithic mesomorph mesomorphy meson mesophyron mesophyte mesopotamia +mesosphere mesothelioma mesothelium mesotron mesozoic mespilus mesquit mesquite +mess mess-up message messaging messenger messiah messiahship messidor messina +messiness messmate messuage mestiza mestizo mestranol mesua metabola metabolism +metabolite metacarpal metacarpus metacenter metacentre metacyesis metadata +metagenesis metaknowledge metal metalanguage metalepsis metalhead metallic +metallurgist metallurgy metalware metalwork metalworker metalworking metalworks +metamathematics metamere metamorphism metamorphopsia metamorphosis metaphase +metaphor metaphysics metaphysis metaproterenol metarule metasequoia +metastability metastasis metatarsal metatarsus metatheria metatherian metathesis +metazoa metazoan metchnikoff metchnikov mete metempsychosis metencephalon meteor +meteorite meteoroid meteorologist meteorology meteortropism meter meterstick +metformin meth methacholine methadon methadone methamphetamine methanal methane +methanogen methanol methapyrilene methaqualone metharbital methedrine metheglin +methenamine methicillin methionine methocarbamol method methodicalness methodism +methodist methodists methodology methotrexate methuselah methyl methylbenzene +methyldopa methylene methylenedioxymethamphetamine methylphenidate +methyltestosterone metic metical meticorten meticulosity meticulousness metier +metis metonym metonymy metopion metoprolol metralgia metrazol metre metrestick +metric metrication metrics metrification metritis metro metrology metronidazole +metronome metronymic metropolis metropolitan metroptosis metrorrhagia metroxylon +metternich mettle mettlesomeness metycaine meuse meuse-argonne mevacor mew mews +mexicali mexican mexican-american mexicano mexico mexiletine mexitil meyerbeer +meyerhof mezcal mezereon mezereum mezuza mezuzah mezzanine mezzo mezzo-relievo +mezzo-rilievo mezzo-soprano mezzotint mf mfa mflop mg mho mhz mi miami miao +miaou miaow miasm miasma miaul mib mibit mica micah micawber micelle michael +michaelmas michaelmastide micheas michelangelo michelson michener michigan +michigander mick mickey mickle micmac miconazole micro-organism microbalance +microbar microbat microbe microbiologist microbiology microbrachia microbrewery +microcentrum microcephalus microcephaly microchip microchiroptera microcircuit +micrococcaceae micrococcus microcode microcomputer microcosm microcyte +microcytosis microdesmidae microdipodops microdot microeconomics microeconomist +microelectronics microevolution microfarad microfiche microfilm microflora +microfossil microgametophyte microgauss microglia microgliacyte microgram +microgramma microgramma-piloselloides microhylidae micromeria micrometeor +micrometeorite micrometeoroid micrometer micrometry micromicron micromillimeter +micromillimetre micromyx micron micronase micronesia micronor micronutrient +microorganism micropaleontology micropenis microphage microphallus microphone +microphoning microphotometer micropogonias microprocessor micropterus micropyle +microradian microscope microscopist microscopium microscopy microsecond +microseism microsome microsorium microsporangium microspore microsporidian +microsporophyll microsporum microstomus microstrobos microsurgery microtaggant +microtome microtubule microtus microvolt microwave microzide micruroides +micrurus micturition mid-april mid-august mid-calf mid-december mid-eighties +mid-february mid-fifties mid-forties mid-january mid-july mid-june mid-march +mid-may mid-nineties mid-november mid-october mid-off mid-on mid-september mid- +seventies mid-sixties mid-thirties mid-twenties mid-water midafternoon midair +midas midazolam midbrain midday midden middle middlebreaker middlebrow middleman +middleton middleweight middling middy mideast midfield midgard midge midget +midgrass midi midi-pyrenees midinette midiron midland midline midnight midplane +midpoint midrash midrib midriff midsection midshipman midst midstream midsummer +midsummer-men midterm midvein midwatch midway midweek midwest midwife midwifery +midwinter mien mierkat mifepristone miff might might-have-been mightiness +mignonette migraine migrant migration migrator mihrab mikado mikania mike mikir- +meithei mikmaq mikvah mil milady milage milan milanese milano milcher mildew +mildness mile mileage mileometer milepost miler milestone milfoil milhaud +miliaria milieu militainment militance militancy militant militarisation +militarism militarist militarization military militia militiaman milium milk +milk-vetch milkcap milker milkmaid milkman milkshake milksop milkwagon milkweed +milkwort mill mill-girl mill-hand millais millay millboard milldam millenarian +millenarianism millenarism millenarist millenary millennium millenniumism +millepede miller miller's-thumb millerite millet millettia milliammeter +milliampere milliard millibar millicurie millidegree milliequivalent millifarad +milligram millihenry millikan milliliter millilitre millime millimeter +millimetre millimicron milline milliner millinery milling million millionaire +millionairess millionth milliped millipede milliradian millisecond millivolt +millivoltmeter milliwatt millpond millrace millrun mills millstone millwheel +millwork millwright milne milo milometer milontin milord milquetoast milt +miltiades miltomate milton miltonia miltown milvus milwaukee mimamsa mime mimeo +mimeograph mimer mimesis mimic mimicker mimicry mimidae mimir mimosa mimosaceae +mimosoideae mimus min mina minah minaret mince mincemeat mincer mind mind-set +mindanao minden minder mindfulness mindlessness mindoro mindset mine minefield +minelayer minelaying miner mineral mineralocorticoid mineralogist mineralogy +minerva mineshaft minestrone minesweeper minesweeping mineworker ming minge +minginess mingle-mangle mingling mini miniature miniaturisation miniaturist +miniaturization minibar minibike minibus minicab minicar minicomputer miniconju +minim minimalism minimalist minimisation minimization minimum minimus mining +minion minipress miniskirt minister ministrant ministration ministry minisub +minisubmarine minium minivan miniver mink minkowski minneapolis minnesota +minnesotan minnewit minniebush minnow minoan minocin minocycline minor minority +minors minos minotaur minoxidil minsk minster minstrel minstrelsy mint mintage +minter mintmark minuartia minuend minuet minuit minus minuscule minute minuteman +minuteness minutes minutia minx minyan miocene miosis miotic mips mirabeau +mirabilis miracle miracle-worship mirage mirasol mire miri mirid miridae mirish +miro mirounga mirror mirth mirthfulness misadventure misalignment misalliance +misanthrope misanthropist misanthropy misapplication misapprehension +misappropriation misbehavior misbehaviour misbeliever miscalculation miscarriage +miscegenation miscellanea miscellany mischance mischief mischief-maker mischief- +making mischievousness misconception misconduct misconstrual misconstruction +miscount miscreant miscreation miscue misdating misdeal misdeed misdemeanor +misdemeanour misdirection miser miserableness miserliness misery misestimation +misfeasance misfire misfit misfortune misgiving misgovernment mishap mishegaas +mishegoss mishmash mishna mishnah mishpachah mishpocha misinformation +misinterpretation misleader mismanagement mismatch misnomer miso misocainea +misogamist misogamy misogynism misogynist misogyny misology misoneism misopedia +mispickel misplacement misplay misprint mispronunciation misquotation misquote +misreading misreckoning misrepresentation misrule miss missal misshapenness +missile mission missionary missioner missis mississippi mississippian missive +missoula missouri missourian misspelling misstatement misstep missus missy mist +mist-flower mistake mistaking mister mistflower mistiming mistiness mistletoe +mistral mistranslation mistreatment mistress mistrial mistrust misunderstanding +misuse mit mitchell mitchella mitchum mite mitella miter miterwort mitford +mithan mithra mithracin mithraicism mithraism mithraist mithramycin mithras +mithridates mitigation mitochondrion mitogen mitomycin mitosis mitra mitre +mitrewort mitsvah mitt mittelschmerz mitten mitterrand mitzvah miwok mix mix-up +mixed-blood mixer mixing mixologist mixology mixture mizen mizenmast mizzen +mizzenmast mizzle mko ml mlitt mls mm mmpi mn mnemonic mnemonics mnemonist +mnemosyne mniaceae mnium mo moa moan moaner moat mob moban mobcap mobile +mobilisation mobility mobilization mobius mobocracy mobster mobula mobulidae +mocambique mocassin moccasin mocha mock mock-heroic mock-up mocker mockernut +mockery mockingbird mod modal modality mode model modeler modeling modeller +modelling modem moderate moderateness moderation moderationism moderationist +moderatism moderator moderatorship modern modernisation modernism modernist +modernity modernization modernness modestness modesty modicon modicum +modification modifier modigliani modillion modiolus modishness modiste mods +modulation module modulus moehringia mogadiscio mogadishu moghul mogul mohair +mohammad mohammed mohammedan mohammedanism moharram mohave mohawk mohican moho +mohorovicic mohria moiety moirae moirai moire moistener moistening moistness +moisture mojarra mojave mojo moke moksa mokulu mol mola molality molar molarity +molasses mold moldavia moldboard moldiness molding moldova mole molech molecule +molehill moleskin molestation molester molidae moliere molindone moline molise +moll mollah molle mollie mollienesia mollification molluga mollusc mollusca +molluscum mollusk molly mollycoddle mollycoddler mollymawk molnar moloch molokai +molossidae molothrus molotov molt molter molting moluccas molucella molva +molybdenite molybdenum mom mombasa mombin moment momentousness momentum momism +momma mommsen mommy momordica momos momot momotidae momotus momus mon mon-khmer +mona monacan monaco monaco-ville monad monal monandry monarch monarchism +monarchist monarchy monarda monardella monario monas monastery monastic +monasticism monaul monazite monday mondrian monegasque monera moneran moneron +moneses monet monetarism monetarist monetisation monetization money money- +spinner moneybag moneyer moneygrubber moneylender moneymaker moneymaking +moneyman moneywort monger mongo mongol mongolia mongolian mongolianism mongolic +mongolism mongoloid mongoose mongrel moniker monilia moniliaceae moniliales +moniliasis monism monistat monition monitor monitoring monitrice monk monkey +monkey-wrench monkeypod monkfish monkshood monnet mono mono-iodotyrosine +monoamine monoblast monocanthidae monocanthus monocarp monochamus monochromacy +monochromasy monochromat monochromatism monochrome monochromia monocle monocline +monoclonal monocot monocotyledon monocotyledonae monocotyledones monocracy +monoculture monocycle monocyte monocytosis monod monodon monodontidae monody +monogamist monogamousness monogamy monogenesis monogram monograph monogynist +monogyny monohybrid monohydrate monolatry monolingual monolith monologist +monologue monomania monomaniac monomer monomorium mononeuropathy monongahela +mononucleosis monophony monophthalmos monophysite monophysitism monoplane +monoplegia monopolisation monopoliser monopolist monopolization monopolizer +monopoly monopsony monorail monorchidism monorchism monosaccharide +monosaccharose monosemy monosomy monosyllable monotheism monotheist +monothelitism monotone monotony monotremata monotreme monotropa monotropaceae +monotype monoxide monroe monrovia mons monsieur monsignor monsoon monster +monstera monstrance monstrosity montage montagu montaigne montana montanan monte +montenegro monterey monterrey montespan montesquieu montessori monteverdi +montevideo montez montezuma montfort montgolfier montgomery month monthly montia +montmartre montpelier montrachet montreal montserrat montserratian monument moo +moo-cow mooch moocher mood moodiness moody moolah moon moon-curser moon-ray +moon-worship moonbeam mooneye moonfish moonflower moonie moonlight moonlighter +moonseed moonshell moonshine moonshiner moonstone moonwalk moonwort moor moor- +bird moorage moorbird moorcock moore moorfowl moorgame moorhen mooring moorish +moorland moorwort moose moose-wood moosewood moot mop mopboard mope moped mopes +mopper moppet mopping moquelumnan moquette moraceae moraine moral morale +moralisation moralism moralist morality moralization moralizing morals morass +moratorium moravia moray morbidity morbidness morbilli morceau morchella +morchellaceae mordacity mordant mordva mordvin mordvinian more moreen morel +morello mores morgan morganite morgantown morgen morgue morion morley mormon +mormonism mormons morn morning moro moroccan morocco moron morone moronity +moroseness morosoph morphallaxis morphea morpheme morpheus morphia morphine +morphogenesis morphology morphophoneme morphophonemics morphophysiology morrigan +morrigu morris morrison morristown morrow mors morse morsel mortal mortality +mortar mortarboard mortgage mortgagee mortgager mortgagor mortice mortician +mortification mortimer mortise mortmain morton mortuary morula morus mosaic +mosaicism mosan mosander moschus moscow moselle moses moshav moslem mosque +mosquito mosquitofish moss moss-trooper mossad mossback mossbauer mostaccioli +mosul mot motacilla motacillidae mote motel motet moth mothball mother mother- +in-law mother-of-pearl mother-of-thousands motherese motherfucker motherhood +motherland motherliness motherwell motherwort motif motile motilin motility +motion motionlessness motivating motivation motivator motive motivity motley +motmot motoneuron motor motorbike motorboat motorbus motorcade motorcar +motorcoach motorcycle motorcycling motorcyclist motoring motorisation motorist +motorization motorman motormouth motortruck motorway motown motrin mott mottle +mottling motto moue moufflon mouflon moujik moukden mould mouldboard moulding +moulmein moult moulter moulting mound mound-bird mount mountain mountaineer +mountaineering mountainside mountebank mounter mountie mounties mounting mourner +mournfulness mourning mouse mousepad mouser mousetrap moussaka mousse +moussorgsky moustache moustachio mouth mouthbreeder mouthful mouthpart +mouthpiece mouthwash mouton movability movable movableness move movement mover +movie moviegoer moviemaking mow mower moxie moynihan mozambican mozambique +mozart mozzarella mp mpeg mph mps mr mr. mrd mri mrna mrs mrs. mrta ms ms-dos +ms. msasa msb msc msec msg msh mst mt mu mu-meson muadhdhin muazzin mubarak much +muchness mucilage mucin muck muckheap muckhill muckle muckraker muckraking +mucoid mucopolysaccharide mucopolysaccharidosis mucor mucoraceae mucorales +mucosa mucoviscidosis mucuna mucus mud mudcat mudder muddiness muddle mudguard +mudhif mudra mudskipper mudslide mudslinger mudspringer muenchen muenster muesli +muezzin muff muffin muffle muffler mufti mug mugful muggee mugger mugginess +mugging muggins mugil mugilidae mugiloidea mugshot mugwort mugwump muhammad +muhammadan muhammadanism muhammedan muharram muharrum muhlenbergia muir muishond +mujahadeen mujahadein mujahadin mujahedeen mujahedin mujahid mujahideen +mujahidin mujik mujtihad mukalla mukataa mukden mulatto mulberry mulch mulct +mule muleteer muliebrity mulishness mull mulla mullah mullein muller mullet +mullidae mulligan mulligatawny mullion mulloidichthys mulloway mullus multi- +billionaire multicollinearity multiculturalism multifariousness multiflora +multimedia multinomial multiple multiplex multiplexer multiplicand +multiplication multiplicity multiplier multiprocessing multiprocessor +multiprogramming multistage multitude multitudinousness multivalence +multivalency multiversity multivitamin mulwi mum mumbai mumble mumble-the-peg +mumbler mumblety-peg mumbling mummer mummery mummichog mummification mummy mumps +mumpsimus munch munchausen munchener muncher munchhausen muncie munda munda-mon- +khmer mundaneness mundanity mung munich municipality munificence muniments +munition munj munja munjeet munjuk munro muntiacus muntingia muntjac muon +muraenidae mural muralist muramidase murder murderee murderer murderess +murderousness murdoch muridae murillo murine muritaniya murk murkiness murmansk +murmur murmuration murmurer murmuring muroidea murphy murrain murray murre +murrow murrumbidgee mus musa musaceae musales musca muscadel muscadelle muscadet +muscadine muscardinus muscari muscat muscatel musci muscicapa muscicapidae +muscidae muscivora muscivora-forficata muscle muscle-builder musclebuilder +musclebuilding muscleman muscoidea muscovite muscovy muscularity musculature +musculus musd muse muser musette museum musgoi musgu mush musher mushiness +mushroom musial music musical musicality musicalness musician musicianship +musicologist musicology musing musjid musk muskat muskellunge musket musketeer +musketry muskhogean muskiness muskmelon muskogean muskogee muskrat muskwood +muslim muslimah muslimism muslin musnud musophaga musophagidae musophobia +musquash muss mussel musset mussiness mussitation mussolini mussorgsky must +mustache mustachio mustagh mustang mustard mustela mustelid mustelidae musteline +mustelus muster musth mustiness mutability mutableness mutagen mutagenesis +mutamycin mutant mutation mutawa mutawa'een mutchkin mute muteness mutilation +mutilator mutillidae mutineer mutinus mutiny mutisia mutism muton mutsuhito mutt +mutter mutterer muttering mutton muttonfish muttonhead mutualism mutuality +mutualness muumuu muybridge muzhik muzjik muztag muztagh muzzle muzzler mv mvp +mwanza mwera mx mya myaceae myacidae myadestes myalgia myanmar myasthenia +mycelium mycenae mycenaen mycetophilidae mycobacteria mycobacteriaceae +mycobacterium mycologist mycology mycomycin mycophage mycophagist mycophagy +mycoplasma mycoplasmataceae mycoplasmatales mycosis mycostatin mycotoxin +mycrosporidia mycteria mycteroperca myctophidae mydriasis mydriatic myelatelia +myelencephalon myelin myeline myelinisation myelinization myelitis myeloblast +myelocyte myelofibrosis myelogram myelography myeloma myelomeningocele myg +myiasis mylanta mylar myliobatidae mylitta mylodon mylodontid mylodontidae mym +myna mynah myocardiopathy myocarditis myocardium myocastor myoclonus myodynia +myofibril myofibrilla myoglobin myoglobinuria myogram myology myoma myometritis +myometrium myomorpha myonecrosis myopathy myope myopia myopus myosarcoma myosin +myosis myositis myosotis myotic myotis myotomy myotonia myrcia myrciaria myrdal +myriad myriagram myriameter myriametre myriapod myriapoda myrica myricaceae +myricales myricaria myringa myringectomy myringoplasty myringotomy myriophyllum +myristica myristicaceae myrmecia myrmecobius myrmecophaga myrmecophagidae +myrmecophile myrmecophyte myrmeleon myrmeleontidae myrmidon myrobalan myroxylon +myrrh myrrhis myrsinaceae myrsine myrtaceae myrtales myrtillocactus myrtle +myrtus mysidacea mysidae mysis mysoline mysophilia mysophobia mysore mystery +mystic mysticeti mysticism mystification mystifier mystique myth mythologisation +mythologist mythologization mythology mytilene mytilid mytilidae mytilus +myxedema myxine myxinidae myxiniformes myxinikela myxinoidea myxinoidei +myxobacter myxobacterales myxobacteria myxobacteriaceae myxobacteriales +myxobacterium myxocephalus myxoedema myxoma myxomatosis myxomycete myxomycetes +myxomycota myxophyceae myxosporidia myxosporidian myxovirus n n'djamena n.b. na +na-dene naan nabalus nablus nabob nabokov naboom nabu nabumetone nac nacelle +nacho nacimiento nacre nad nada nadir nadolol nadp naemorhedus nafcil nafcillin +nafta nafud nag naga nagami nagano nagari nagasaki nageia nagger nagi nagoya +nahuatl nahum naiad naiadaceae naiadales naias naif naiki nail nailbrush nailer +nailfile nailhead nailrod nainsook naira nairobi naismith naiveness naivete +naivety naja najadaceae najas najd nakedness nakedwood nakuru nalchik nalfon +nalline nalorphine naloxone naltrexone namby-pamby name name-dropping nameko +namelessness nameplate namer names namesake namibia namibian naming nammad nammu +namoi nampa namtar namtaru namur nan nan-chang nan-ning nanaimo nanak nance +nancere nanchang nancy nandrolone nandu nanism nanjing nankeen nanking nanna +nanning nanny nanny-goat nanocephaly nanogram nanometer nanometre nanomia +nanophthalmos nanosecond nanotechnology nanotube nanovolt nansen nantes +nanticoke nantua nantucket nanus naomi nap napa napaea napalm nape napery +naphazoline naphtha naphthalene naphthol naphthoquinone napier napkin naples +napoleon napoli nappy naprapath naprapathy naprosyn naproxen napu naqua nara +naranjilla narc narcan narcism narcissism narcissist narcissus narcist narco- +state narcolepsy narcoleptic narcosis narcoterrorism narcotic narcotraffic nard +nardil nardo nardoo narghile nargileh naris nark narration narrative narrator +narrow narrow-body narrow-mindedness narrowboat narrowing narrowness narthecium +narthex narwal narwhal narwhale nasa nasal nasalis nasalisation nasality +nasalization nascence nascency nasdaq naseby nash nashville nasion nasopharynx +nassau nasser nast nastiness nasturtium nasua natal natality natantia natation +natator natatorium natchez nates naticidae nation national nationalisation +nationalism nationalist nationality nationalization nationhood native nativeness +nativism nativist nativity nato natriuresis natrix natrolite natta natterjack +nattiness natural naturalisation naturalism naturalist naturalization +naturalness nature naturism naturist naturopath naturopathy nauch nauclea +naucrates naught naughtiness naumachia naumachy naupathia nauru nauruan nausea +nauseant nauseatingness nautch nautilidae nautilus navaho navajo navane navarino +nave navel navel-gazing navicular navigability navigation navigator navratilova +navvy navy nawab nawcwpns nay naysayer naysaying nazarene nazareth naze nazi +nazification naziism nazimova nazism nb nbe nbw nc ncdc nd ndebele ndjamena ne +ne'er-do-well neandertal neanderthal neap neapolitan nearness nearside +nearsightedness neatness neb nebbech nebbish nebcin nebe nebiim nebn nebo +nebraska nebraskan nebuchadnezzar nebuchadrezzar nebula nebule nebuliser +nebulizer nec necessary necessitarian necessity neck neckar neckband neckcloth +necker neckerchief necking necklace necklet neckline neckpiece necktie neckwear +necrobiosis necrology necrolysis necromancer necromancy necromania necrophagia +necrophagy necrophilia necrophilism necropolis necropsy necrosis nectar +nectarine nectary necturus nederland need needer neediness needle needle-bush +needle-wood needlebush needlecraft needlefish needlepoint needlewoman needlewood +needlework needleworker needy neel neem neencephalon nefariousness nefazodone +nefertiti nefud negaprion negation negative negativeness negativism negativist +negativity negatron negev neggram neglect neglecter neglectfulness neglige +negligee negligence negotiant negotiation negotiator negotiatress negotiatrix +negress negritude negro negroid negus nehemiah nehru neigh neighbor neighborhood +neighborliness neighbour neighbourhood neighbourliness nejd nekton nelfinavir +nelson nelumbo nelumbonaceae nematocera nematoda nematode nembutal nemea +nemertea nemertean nemertina nemertine nemesis nemophila nenets nentsi nentsy +neo-darwinism neo-lamarckism neo-latin neobiotic neoceratodus neoclassicism +neoclassicist neocolonialism neocon neoconservatism neoconservative neocortex +neodymium neoencephalon neoexpressionism neofiber neohygrophorus neolentinus +neoliberal neoliberalism neolith neolithic neologism neologist neology neomycin +neomys neon neonate neonatology neopallium neophobia neophron neophyte neoplasia +neoplasm neoplatonism neoplatonist neopolitan neoprene neoromanticism neosho +neosporin neostigmine neoteny neotoma neotony nepa nepal nepalese nepali +nepenthaceae nepenthes nepeta nepheline nephelinite nephelite nephelium nephew +nephology nephoscope nephralgia nephrectomy nephrite nephritis +nephroangiosclerosis nephroblastoma nephrocalcinosis nephrolepis nephrolith +nephrolithiasis nephrology nephron nephropathy nephrops nephropsidae +nephroptosia nephroptosis nephrosclerosis nephrosis nephrotomy nephrotoxin +nephthys nephthytis nepidae nepotism nepotist neptune neptunium nerd nereid +nereus nergal nerita neritid neritidae neritina nerium nernst nero nerodia +nerthus neruda nerva nerve nervelessness nerveroot nerves nervi nervousness +nervure nervus nescience nesokia ness nesselrode nessie nest nester nestle +nestling nestor nestorian nestorianism nestorius net netball netherlander +netherlands netherworld netkeeper netminder netscape netting nettle network +neumann neuralgia neuralgy neurasthenia neurasthenic neurectomy neurilemma +neurilemoma neurinoma neuritis neuroanatomy neurobiologist neurobiology +neuroblast neuroblastoma neurochemical neurodermatitis neuroepithelioma +neuroepithelium neuroethics neurofibroma neurofibromatosis neurogenesis +neuroglia neurogliacyte neurohormone neurohypophysis neurolemma neuroleptic +neurolinguist neurolinguistics neurologist neurology neurolysin neuroma neuron +neurontin neuropathy neurophysiology neuropil neuropile neuroplasty +neuropsychiatry neuropsychology neuroptera neuropteran neuropteron neurosarcoma +neuroscience neuroscientist neurosis neurospora neurosurgeon neurosurgery +neurosyphilis neurotic neuroticism neurotoxin neurotransmitter neurotrichus +neurotropism neuter neutering neutral neutralisation neutralism neutralist +neutrality neutralization neutrino neutron neutropenia neutrophil neutrophile +neva nevada nevadan neve nevelson never-never nevirapine nevis nevus newari +newark newbie newborn newburgh newcastle newcastle-upon-tyne newcomb newcomer +newel newfoundland newgate newlywed newman newmarket newness newport news +newsagent newsboy newsbreak newscast newscaster newsdealer newsflash newsletter +newsman newsmonger newspaper newspapering newspaperman newspaperwoman newspeak +newsperson newsprint newsreader newsreel newsroom newssheet newsstand newsvendor +newswoman newsworthiness newswriter newt newton newtonian nexus ney ng nga +nganasan ngb ngf ngo ngu ngultrum nguni ngwee nh ni ni-hard ni-resist niacin +niagara niamey nib nibble nibbler nibelung nibelungenlied niblick nicad nicaea +nicandra nicaragua nicaraguan nice niceness nicety niche nicholas nichrome nick +nickel nickelodeon nicker nicklaus nicknack nickname nicolson nicosia nicotiana +nicotine nictation nictitation nicu nidaros nidation niddm nidularia +nidulariaceae nidulariales nidus niebuhr niece nielsen nierembergia nietzsche +nifedipine niff nigella niger niger-congo niger-kordofanian nigeria nigerian +nigerien nigga niggard niggardliness niggardness nigger niggler night night- +light night-line night-robe night-sight night-stop nightbird nightcap +nightclothes nightclub nightcrawler nightdress nightfall nightgown nighthawk +nightie nightingale nightjar nightlife nightmare nightrider nightshade +nightshirt nightspot nightstick nighttime nightwalker nightwear nightwork nigra +nigroporus nih nihau nihil nihilism nihilist nihility nihon nij nijinsky +nijmegen nike nil nile nilgai nilo-saharan nilotic nilsson nim nimbleness +nimblewill nimbus nimby nimiety nimitz nimravus nimrod nin-sin nina nincompoop +nine nine-spot ninepence ninepin ninepins niner nineteen nineteenth nineties +ninetieth ninety nineveh ningal ningirsu ningishzida ninhursag ninib ninigi +ninigino-mikoto ninja ninjitsu ninjutsu ninkharsag ninkhursag ninny ninon ninth +nintoo nintu ninurta niobe niobite niobium niobrara nip nipa nipper nipple +nippon nipponese nipr niqaabi niqab nirvana nisan nisei nissan nist nisus nit +nitella niter nitpicker nitramine nitrate nitrazepam nitre nitride nitrification +nitril nitrile nitrite nitrobacter nitrobacteria nitrobacteriaceae +nitrobacterium nitrobenzene nitrocalcite nitrocellulose nitrochloroform +nitrochloromethane nitrocotton nitrofuran nitrofurantoin nitrogen nitrogenase +nitroglycerin nitroglycerine nitrosobacteria nitrosomonas nitrospan nitrostat +nitty-gritty nitweed nitwit nivose nix nixon nj njord njorth nlp nlrb nm nmr nne +nnrti nnw no no-account no-brainer no-goal no-hitter no-see-um no-show no-trump +no. noaa noah nob nobel nobelist nobelium nobility noble noble-mindedness +nobleman nobleness noblesse noblewoman nobody noc noctambulation noctambulism +noctambulist noctiluca noctua noctuid noctuidae nocturia nocturne nod noddle +node nodule noel noemi noesis noether nog nogales noggin nogging noguchi noise +noiselessness noisemaker noisiness noisomeness noli-me-tangere nolina noma nomad +nombril nome nomenclature nomenklatura nomia nominal nominalism nominalist +nomination nominative nominator nominee nomogram nomograph non-catholic non- +discrimination non-engagement non-involvement non-issue non-jew non- +proliferation non-resistant non-ugric nonabsorbency nonacceptance +nonaccomplishment nonachievement nonachiever nonage nonagenarian nonaggression +nonagon nonalignment nonalinement nonallele nonappearance nonattendance +nonattender nonbeing nonbeliever noncandidate nonce nonchalance noncitizen +noncom noncombatant noncompliance noncompliant nonconductor nonconformance +nonconformism nonconformist nonconformity nondescript nondevelopment +nondisjunction nondrinker nondriver none nonentity nonequivalence nones +nonessential nonesuch nonevent nonexistence nonfeasance nonfiction nonindulgence +noninterference nonintervention nonmember nonmetal nonobservance nonoccurrence +nonpareil nonparticipant nonparticipation nonpartisan nonpartisanship +nonpartizan nonpayment nonperformance nonperson nonprofit nonproliferation +nonreader nonremittal nonresident nonresistance nonsense nonsensicality +nonsmoker nonstarter nonsteroid nonsteroidal nonstop nonsuch nontricyclic +nonuniformity nonviolence nonworker noodle nook nookie nooky noon noonday +noontide noose nootka nopal nopalea nor'-east nor'-nor'-east nor'-nor'-west +nor'-west nor-q-d noradrenaline nord-pas-de-calais nordic noreaster noreg +norepinephrine norethandrolone norethindrone norethynodrel norflex norfolk norge +norgestrel noria norinyl norlestrin norlutin norm norma normal normalcy +normalisation normaliser normality normalization normalizer norman norman-french +normandie normandy normodyne normothermia norn norris norrish norse norseman +north northampton northamptonshire northeast northeaster northeastward norther +northerly northern northerner northernness northland northman northrop +northumberland northumbria northward northwest northwester northwestward +nortriptyline noruz norvasc norvir norway norwegian nose nosebag noseband +nosebleed nosecount nosedive nosegay nosepiece nosewheel nosey-parker nosh nosh- +up nosher nosiness nosology nostalgia nostoc nostocaceae nostradamus nostril +nostrum nosy-parker not-for-profit notability notable notary notation notch note +notebook notecase notechis notemigonus notepad notepaper nothing nothingness +nothings nothofagus nothosaur nothosauria notice noticeability noticeableness +noticer notification notion notochord notomys notonecta notonectidae +notophthalmus notoriety notornis notoryctidae notoryctus notostraca notropis +notturno nouakchott nougat nought noumenon noun nourishment nous nouveau-riche +nov nov-esperanto nov-latin nova novation novel novelette novelisation novelist +novelization novella novelty november novena novgorod novial novice noviciate +novillada novillero novitiate novobiocin novocain novocaine novosibirsk now +nowadays nowhere nowness nowrooz nowruz nox noxiousness noyes nozzle np npa npc +nra nrc nrem nrl nrna nro nrti nsa nsaid nsc nsf nsu nsw nswc nt ntis nu nuance +nub nubbin nubbiness nubble nubia nubian nucellus nucha nucifraga nuclease +nucleole nucleolus nucleon nucleonics nucleoplasm nucleoprotein nucleoside +nucleosynthesis nucleotide nucleus nuda nude nudeness nudge nudger nudibranch +nudibranchia nudism nudist nudity nudnick nudnik nuffield nugget nuisance nuke +null nullah nullification nullifier nullipara nullity numbat number numbering +numberplate numbers numbfish numbness numdah numen numenius numeracy numeral +numeration numerator numerologist numerology numerosity numerousness numida +numidia numidian numididae numidinae numismatics numismatist numismatologist +numismatology nummulite nummulitidae numskull nun nunavut nuncio nung nunnery +nuphar nuprin nuptials nuptse nuremberg nureyev nurnberg nurse nurse-midwife +nurseling nursemaid nurser nursery nurseryman nursing nursling nurturance +nurture nusku nut nutation nutcase nutcracker nutgrass nuthatch nuthouse nutlet +nutmeg nutmeg-yew nutria nutrient nutriment nutrition nutritionist +nutritiousness nutritiveness nutsedge nutshell nutter nuwc nuytsia nv nw nwbn +nwbw ny nyala nyamuragira nyamwezi nyasaland nybble nyctaginaceae nyctaginia +nyctalopia nyctanassa nyctereutes nycticebus nycticorax nyctimene nyctophobia +nycturia nydrazid nyiragongo nylghai nylghau nylon nylons nymph nymphaea +nymphaeaceae nymphalid nymphalidae nymphalis nymphet nymphicus nympho +nympholepsy nympholept nymphomania nymphomaniac nynorsk nypa nyse nyssa +nyssaceae nystagmus nystan nystatin nyx o o'brien o'casey o'connor o'flaherty +o'hara o'keeffe o'neill o'toole o.e.d. o.k. oaf oahu oak oakland oakley oakum +oar oarfish oarlock oarsman oarsmanship oarswoman oas oasis oast oat oatcake +oates oath oatmeal oaxaca ob obadiah obbligato obduracy obeah obeche obechi +obedience obeisance obelion obelisk oberson obesity obfuscation obi obiism obit +obituary object objectification objection objectionableness objective +objectiveness objectivity objector objurgation oblate oblateness oblation +obligation obligato obliger obligingness oblique obliqueness obliquity +obliteration obliterator oblivion obliviousness oblong oblongness obloquy +obnoxiousness oboe oboist obolus obscenity obscurantism obscurantist obscureness +obscurity obsequiousness observance observation observatory observer obsession +obsessive obsessive-compulsive obsessiveness obsessivity obsidian obsolescence +obsoleteness obstacle obstetrician obstetrics obstinacy obstinance obstipation +obstreperousness obstructer obstruction obstructionism obstructionist obstructor +obstruent obtainment obtention obtrusiveness obturator obtuseness obverse +obviation obviousness oca ocarina occam occasion occasions occident occidental +occidentalism occiput occitan occlusion occlusive occult occultation occultism +occultist occupancy occupant occupation occupier occurrence occurrent ocean +oceanaut oceanfront oceania oceanic oceanica oceanid oceanites oceanographer +oceanography oceanology oceanus ocellus ocelot ocher ochlocracy ochna ochnaceae +ochoa ochotona ochotonidae ochre ochroma ochronosis ochs ocimum ockham ocotillo +oct octad octagon octahedron octameter octane octans octant octave octavian +octavo octet octette octillion october octoberfest octogenarian octonary octopod +octopoda octopodidae octopus octoroon octosyllable octroi ocular oculism oculist +oculomotor oculus ocyurus od odalisque oddball oddity oddment oddments oddness +odds odds-maker ode oder odesa odessa odets odin odiousness odist odium odo +odoacer odobenidae odobenus odocoileus odometer odonata odonate odontalgia +odontaspididae odontaspis odontiasis odontoceti odontoglossum odontology +odontophorus odor odour odovacar odovakar odynophagia odysseus odyssey oecanthus +oecumenism oed oedema oedipus oedogoniaceae oedogoniales oedogonium oenanthe +oengus oenologist oenology oenomel oenophile oenothera oersted oesophagitis +oesophagoscope oesophagus oesterreich oestradiol oestridae oestriol oestrogen +oestrone oestrus oeuvre off-broadway off-day off-licence off-roader off-season +off-white offal offbeat offenbach offence offender offense offensive +offensiveness offer offerer offering offeror offertory office office-bearer +officeholder officer official officialdom officialese officiant officiating +officiation officiousness offing offprint offset offshoot offside offspring +offstage ofo oftenness ogalala ogcocephalidae ogden ogdoad ogee ogive oglala +ogler ogre ogress oh ohio ohioan ohm ohmage ohmmeter oig oil oilbird oilcan +oilcloth oiler oilfield oilfish oiliness oilman oilpaper oilrig oilseed oilskin +oilstone oilstove oink ointment oireachtas ois ojibwa ojibway ok oka okapi +okapia okay okeechobee okeh oken okenfuss okey okinawa oklahoma oklahoman okra +oktoberfest ola old old-fashionedness old-man-of-the-woods old-timer oldenburg +oldfield oldie oldness oldster oldtimer oldwench oldwife olea oleaceae +oleaginousness oleales oleander oleandra oleandraceae olearia oleaster olecranon +oled olefin olefine olein oleo oleomargarine oleoresin olfaction olfersia +olibanum oligarch oligarchy oligocene oligochaeta oligochaete oligoclase +oligodactyly oligodendria oligodendrocyte oligodendroglia oligodontia +oligomenorrhea oligoplites oligopoly oligoporus oligosaccharide oligospermia +oliguria olimbos olive olive-green olivenite oliver olivier olivine olla ollari +olm olmec olmsted ology olympia olympiad olympian olympics olympus omaha oman +omani omasum omayyad omb ombu ombudsman omdurman omega omega-3 omega-6 omelet +omelette omen omentum omeprazole omerta omicron omission omiya ommastrephes +ommatidium ommiad omnibus omnipotence omnipresence omnirange omniscience omnium- +gatherum omnivore omomyid omophagia omotic omphalocele omphalos omphaloskepsis +omphalotus omphalus omsk on-license onager onagraceae onanism onanist once-over +onchocerciasis oncidium oncogene oncologist oncology oncoming oncorhynchus +oncovin ondaatje ondatra one one-and-one one-billionth one-dimensionality one- +eighth one-fifth one-fourth one-half one-hitter one-hundred-millionth one- +hundred-thousandth one-hundredth one-liner one-millionth one-ninth one-off one- +quadrillionth one-quarter one-quintillionth one-seventh one-sixteenth one-sixth +one-sixtieth one-sixty-fourth one-spot one-step one-ten-thousandth one-tenth +one-third one-thirty-second one-thousandth one-trillionth one-twelfth one- +upmanship onega oneida oneirism oneiromancer oneiromancy oneness onerousness oni +onion onionskin oniscidae oniscus onlooker ono onobrychis onoclea onomancer +onomancy onomasticon onomastics onomatomania onomatopoeia onondaga ononis +onopordon onopordum onosmodium onrush onsager onset onslaught ontario +ontogenesis ontogeny ontology onus onychium onychogalea onycholysis onychomys +onychophora onychophoran onychosis onyx onyxis oocyte oodles oogenesis oology +oolong oomph oomycetes oophorectomy oophoritis oophorosalpingectomy oort +oosphere oospore ootid ooze oozing opacification opacity opah opal opalescence +opaqueness opcw opec opel open openbill opener openhandedness opening openness +openwork opepe opera operagoer operand operation operationalism operations +operative operator operculum operetta operon operoseness opheodrys ophidia +ophidian ophidiidae ophidism ophiodon ophiodontidae ophioglossaceae +ophioglossales ophioglossum ophiolatry ophiophagus ophisaurus ophiuchus +ophiurida ophiuroidea ophryon ophrys ophthalmectomy ophthalmia ophthalmitis +ophthalmologist ophthalmology ophthalmoplegia ophthalmoscope ophthalmoscopy +opiate opiliones opinion opisthobranchia opisthocomidae opisthocomus +opisthognathidae opisthorchiasis opisthotonos opium opopanax oporto opossum +oppenheimer opponent opportuneness opportunism opportunist opportunity opposer +opposite oppositeness opposition oppression oppressiveness oppressor opprobrium +ops opsin opsonin opsonisation opsonization optative optez optic optician optics +optimisation optimism optimist optimization optimum option optometrist optometry +opulence opuntia opuntiales opus opv or orach orache oracle oradexon oral oran +orang orange orangeade orangeman orangeness orangery orangewood orangutan +orangutang orasone oration orator oratorio oratory orb orb-weaver orbignya +orbison orbit orbitale orbiter orca orchard orchestia orchestiidae orchestra +orchestration orchestrator orchid orchidaceae orchidales orchidalgia +orchidectomy orchiectomy orchil orchiopexy orchis orchitis orchotomy orcinus +orcus orczy ordainer ordeal order order-chenopodiales orderer ordering +orderliness orderly ordinal ordinance ordinand ordinariness ordinary ordinate +ordination ordnance ordovician ordure ore oread oreamnos orectolobidae +orectolobus oregano oregon oregonian oreide oreo oreopteris oreortyx orestes +orff organ organ-grinder organdie organdy organelle organic organicism +organification organisation organiser organism organist organization organizer +organon organophosphate organs organza orgasm orgy oriel orient oriental +orientalism orientalist orientation orifice oriflamme origami origanum origen +origin original originalism originality origination originator orinasal orinase +orinoco oriole oriolidae oriolus orion orison orissa orites oriya orizaba +orlando orleanais orleanism orleanist orleans orlon orlop orly ormandy ormazd +ormer ormolu ormosia ormuzd ornament ornamental ornamentalism ornamentalist +ornamentation ornateness orneriness ornithine ornithischia ornithischian +ornithogalum ornithologist ornithology ornithomimid ornithomimida ornithopod +ornithopoda ornithopter ornithorhynchidae ornithorhynchus ornithosis +orobanchaceae orogeny orography oroide orology orono orontium oropharynx orozco +orphan orphanage orphanhood orphenadrine orpheus orphrey orpiment orpin orpine +orpington orr orrery orris orrisroot ortalis ortega orthicon orthilia +orthochorea orthoclase orthodontia orthodontics orthodontist orthodonture +orthodoxy orthoepist orthoepy orthogonality orthography orthomyxovirus +orthopaedics orthopaedist orthopedics orthopedist orthophosphate orthopnea +orthopristis orthopter orthoptera orthopteran orthopteron orthoptics orthoptist +orthoscope orthotomus ortolan ortygan orudis orumiyeh oruvail orwell +orycteropodidae orycteropus oryctolagus oryx oryza oryzomys oryzopsis orzo os +osage osaka osasco osborne oscan oscar oscheocele oscheocoele oscillation +oscillator oscillatoriaceae oscillogram oscillograph oscilloscope oscine oscines +oscitance oscitancy osco-umbrian osculation osculator osha osier osiris oslo +osmanli osmanthus osmeridae osmerus osmiridium osmitrol osmium osmoreceptor +osmosis osmund osmundaceae osprey ossete ossicle ossiculum ossification ossuary +ostariophysi osteichthyes osteitis ostensorium ostentation ostentatiousness +osteoarthritis osteoblast osteoblastoma osteochondroma osteoclasis osteoclast +osteocyte osteodystrophy osteoglossidae osteoglossiformes osteologer osteologist +osteology osteolysis osteoma osteomalacia osteomyelitis osteopath osteopathist +osteopathy osteopetrosis osteophyte osteoporosis osteosarcoma osteosclerosis +osteostracan osteostraci osteotomy ostiarius ostiary ostinato ostiole ostler +ostomy ostraciidae ostracism ostracod ostracoda ostracoderm ostracodermi ostrava +ostrea ostreidae ostrich ostrogoth ostrya ostryopsis ostwald ostyak ostyak- +samoyed oswald otalgia otaria otariidae othello otherness otherworld +otherworldliness otho othonna otides otididae otis otitis oto otoe otoganglion +otolaryngologist otolaryngology otologist otology otoplasty +otorhinolaryngologist otorhinolaryngology otorrhea otosclerosis otoscope ottar +ottawa otter otterhound ottoman ottumwa otus ouachita oubliette ouguiya ouija +oujda ounce ouranopithecus ouranos ouse ousel ouster ousting out out-and-outer +out-basket out-migration out-of-doors out-tray outage outaouais outback outboard +outbreak outbuilding outburst outcast outcaste outcome outcrop outcropping +outcry outdoors outdoorsman outdoorswoman outercourse outerwear outfall outfield +outfielder outfit outfitter outfitting outflow outgo outgoer outgrowth outhouse +outing outlander outlandishness outlaw outlawry outlay outlet outlier outline +outlook outpatient outport outpost outpouring output outrage outrageousness +outreach outrider outrigger outset outside outsider outsize outskirt outskirts +outsole outspokenness outstation outstroke outtake outthrust outturn outwardness +outwork ouzel ouzo ov oval ovalbumin ovalipes ovariectomy ovaritis ovary ovation +oven ovenbird ovenware over over-crowding overabundance overachievement +overachiever overacting overactivity overage overall overanxiety overappraisal +overbearingness overbid overbite overburden overcall overcapitalisation +overcapitalization overcast overcasting overcharge overclothes overcoat +overcoating overcomer overcompensation overconfidence overcredulity overcrossing +overdraft overdrive overeating overemphasis overestimate overestimation +overexertion overexploitation overexposure overfeeding overflight overflow +overgarment overgrowth overhang overhaul overhead overheating overindulgence +overkill overlap overlapping overlay overlayer overlip overload overlook +overlord overlordship overmantel overmuch overmuchness overnighter overpass +overpayment overplus overpopulation overpressure overprint overproduction +overprotection overrating overreaction overreckoning overrefinement override +overrun overseer oversensitiveness overshielding overshoe overshoot oversight +oversimplification overskirt overspill overstatement overstrain oversupply +overtaking overthrow overtime overtolerance overtone overture overturn overuse +overutilisation overutilization overvaluation overview overweight overwork +overworking ovibos ovid oviduct oviedo ovimbundu ovipositor oviraptorid ovis +ovocon ovoflavin ovoid ovolo ovotestis ovral ovrette ovulation ovule ovulen ovum +owen owens owensboro owl owlclaws owlet owlt owner owner-driver owner-occupier +ownership ox oxacillin oxalacetate oxalate oxalidaceae oxalis oxaloacetate +oxandra oxaprozin oxazepam oxbow oxbridge oxcart oxen oxeye oxford oxheart +oxidant oxidase oxidation oxidation-reduction oxide oxidisation oxidiser +oxidization oxidizer oxidoreductase oxidoreduction oxime oximeter oxlip oxonian +oxtail oxtant oxtongue oxyacetylene oxyacid oxybelis oxybenzene oxycephaly +oxydendrum oxygen oxygenase oxygenation oxyhaemoglobin oxyhemoglobin oxylebius +oxymoron oxyopia oxyphenbutazone oxyphencyclimine oxytetracycline oxytocic +oxytocin oxytone oxytropis oxyura oxyuranus oxyuridae oyabun oyster oyster-fish +oystercatcher oysterfish oz. ozaena ozarks ozawa ozena ozocerite ozokerite ozone +ozonide ozonium ozonosphere ozothamnus p p.a. p.e. p.o. pa pa'anga paba pabir +pablum pabulum pac paca pace pacemaker pacer pacesetter pacha pachinko pachisi +pachouli pachuco pachycephala pachycephalosaur pachycephalosaurus pachycheilia +pachyderm pachyderma pachyrhizus pachysandra pachytene pacific pacification +pacificism pacificist pacifier pacifism pacifist pacing pack package packaging +packer packera packet packhorse packing packinghouse packman packrat packsack +packsaddle packthread pact pad padauk padda padder padding paddle paddle-box +paddle-wheeler paddlefish paddler paddlewheel paddock paddy paddymelon pademelon +paderewski padlock padouk padova padre padrone padua paducah paean paederast +paederasty paediatrician paediatrics paedophile paedophilia paella paeonia +paeoniaceae paeony pagad pagan paganini paganism page pageant pageantry pageboy +pagellus pager paget pagination paging pagoda pagophila pagophilus pagrus +paguridae pagurus pahautea pahlavi pahlevi pahoehoe paige paigle pail pailful +paillasse pain paine painfulness painkiller pains painstakingness paint +paintball paintbox paintbrush painter painting pair pairing paisa paisley paiute +paiwanic pajama pakchoi pakistan pakistani pal palace paladin palaeencephalon +palaemon palaemonidae palaeoanthropology palaeobiology palaeobotany +palaeoclimatology palaeodendrology palaeoecology palaeoethnography +palaeogeography palaeogeology palaeolithic palaeology palaeontologist +palaeontology palaeopathology palaeornithology palaeozoology palaestra +palaetiology palaic palankeen palanquin palaquium palas palatability +palatableness palatal palate palatinate palatine palatopharyngoplasty palau +palaver pale paleacrita paleencephalon paleface paleness paleo-american paleo- +amerind paleo-indian paleoanthropology paleobiology paleobotany paleocene +paleocerebellum paleoclimatology paleocortex paleodendrology paleoecology +paleoencephalon paleoethnography paleogeography paleogeology paleographer +paleographist paleography paleolith paleolithic paleology paleomammalogy +paleontologist paleontology paleopathology paleornithology paleostriatum +paleozoic paleozoology palermo palestine palestinian palestra palestrina +paletiology palette palfrey palgrave pali palilalia palimony palimpsest +palindrome paling palingenesis palinuridae palinurus palisade paliurus pall +pall-mall palladio palladium pallas pallasite pallbearer pallet pallette +palliasse palliation palliative pallidity pallidness pallidum pallium pallone +pallor palm palmaceae palmae palmales palmature palmer palmetto palmist +palmister palmistry palmitin palmyra palometa palomino palooka paloverde +palpability palpation palpebra palpebration palpitation palsgrave palsy +paltering paltriness pamelor pamlico pampas pamperer pampering pamphlet +pamphleteer pan panacea panache panadol panama panamanian panamica panamiga +panatela panax pancake pancarditis panchayat panchayet pancreas pancreatectomy +pancreatin pancreatitis pancytopenia panda pandanaceae pandanales pandanus +pandar pandemic pandemonium pander panderer pandiculation pandion pandionidae +pandora pandowdy pane panegyric panegyrist panel paneling panelist panelling +panellist panencephalitis panetela panetella panfish pang panga pangaea pangea +pangloss pangolin panhandle panhandler panhysterectomy panic panicle panicum +panini panipat panjabi panjandrum pannier pannikin panocha panoche panofsky +panonychus panoply panopticon panorama panorpidae panpipe pansa pansexual +pansinusitis pansy pant pantaloon pantechnicon pantheism pantheist pantheon +panther panthera pantie pantile panting panto pantograph pantomime pantomimer +pantomimist pantothen pantotheria pantry pantryman pants pantsuit panty +pantyhose pantywaist panzer pap papa papacy papaia papain paparazzo papaver +papaveraceae papaverales papaverine papaw papaya papeete paper paper-mache +paper-pusher paperback paperboard paperboy paperclip paperer paperhanger +paperhanging papering paperknife papermaking papers paperweight paperwork +paphiopedilum papier-mache papilionaceae papilionoideae papilla papilledema +papilloma papillon papio papism papist papoose papooseroot papovavirus pappa +pappoose pappus paprika paprilus papua papuan papule papulovesicle papyrus par +para parable parabola paraboloid paracelsus paracentesis paracheirodon parachute +parachuter parachuting parachutist paraclete paracosm parade parader paradiddle +paradigm paradisaeidae paradise paradox paradoxurus paraesthesia paraffin +parafovea paragliding paragon paragonite paragraph paragrapher paraguay +paraguayan parakeet paralanguage paraldehyde paralegal paraleipsis paralepsis +paralichthys paralipomenon paralipsis paralithodes parallax parallel +parallelepiped parallelepipedon parallelism parallelogram parallelopiped +parallelopipedon paralogism paralysis paralytic paramagnet paramagnetism +paramaribo paramecia paramecium paramedic paramedical parameter parametritis +paramilitary paramnesia paramountcy paramour paramyxovirus parana parang +paranoia paranoiac paranoid paranthias paranthropus paraparesis parapet paraph +paraphernalia paraphilia paraphrase paraphrasis paraphrenia paraphysis +paraplegia paraplegic parapodium parapraxis paraprofessional parapsychologist +parapsychology paraquat paraquet parasail parasailing parascalops parashurama +parasitaemia parasitaxus parasite parasitemia parasitism parasol parasympathetic +parathelypteris parathion parathormone parathyroid paratrooper paratroops +paratyphoid parazoa parazoan parcae parcel parceling parcellation parcelling +parcheesi parchesi parchisi parchment pardner pardon pardoner paregmenon +paregoric parenchyma parent parentage parenthesis parenthetical parenthood parer +paresis paresthesia paretic pareto parfait parget pargeting pargetry pargetting +parhelion pariah paridae paries parietales parietaria parimutuel paring paris +parish parishioner parisian parisienne parisology parity parjanya parji park +parka parker parkeriaceae parkersburg parkia parking parkinson parkinson's +parkinsonia parkinsonism parkland parks parkway parlance parlay parley +parliament parliamentarian parlor parlormaid parlour parlourmaid parmelia +parmeliaceae parmenides parmesan parnahiba parnaiba parnassia parnassus parnell +parochetus parochialism parodist parody parole parolee paronomasia paronychia +parophrys paroquet parosamia parotitis parousia paroxetime paroxysm paroxytone +parquet parqueterie parquetry parr parrakeet parricide parrish parroket +parroquet parrot parrotfish parrotia parrotiopsis parry parsec parsee parseeism +parser parsi parsiism parsimoniousness parsimony parsley parsnip parson +parsonage parsons part part-owner part-singing part-timer partaker parterre +parthenium parthenocarpy parthenocissus parthenogenesis parthenogeny parthenon +parthenote parthia parthian partial partiality partialness participant +participation participial participle particle particular particularisation +particularism particularity particularization particulate parting partisan +partisanship partita partition partitioning partitionist partitive partizan +partner partnership partridge partridgeberry parts partsong parturiency +parturition party partygoer parula parulidae parus parvati parvenu parvis parvo +parvovirus pas pasadena pasang pascal pasch pascha paseo pasha pashto pashtoon +pashtu pashtun pasigraphy pasiphae paspalum pasqueflower pasquinade pass pass- +through passado passage passageway passamaquody passbook passe-partout passel +passementerie passenger passer passer-by passerby passeres passeridae +passeriformes passerina passerine passero passiflora passifloraceae passing +passion passionateness passionflower passive passiveness passivism passivity +passkey passover passport password past pasta paste paste-up pasteboard pastel +paster pastern pasternak pasteur pasteurellosis pasteurisation pasteurization +pastiche pastil pastille pastime pastinaca pastis pastness pasto pastor pastoral +pastorale pastorate pastorship pastrami pastry pasturage pasture pastureland +pasty pat pataca patagonia patas patavium patch patchboard patchcord patchiness +patching patchouli patchouly patchwork pate patella patellidae patency patent +patentee pater paterfamilias paternalism paternity paternoster paterson path +pathan pathfinder pathogen pathogenesis pathologist pathology pathos pathway +patience patient patina patio patisserie patka patness patois paton patrai +patras patrial patriarch patriarchate patriarchy patrician patricide patrick +patrikin patrilineage patrimony patriot patrioteer patriotism patrisib +patristics patroclus patrol patroller patrolman patrology patron patronage +patroness patronne patronym patronymic patsy patten patter pattern patternmaker +patty patty-pan patwin patzer paucity paul pauli pauling paunch paunchiness +pauper pauperisation pauperism pauperization pauropoda pause pavage pavan pavane +pavarotti pave pavement pavilion paving pavior paviour pavis pavise pavlov +pavlova pavo pavonia paw pawer pawl pawn pawnbroker pawnee pawnshop pawpaw pax +paxil paxto paxton pay pay-phone pay-station payable payables payback paycheck +payday paye payee payena payer paygrade payload paymaster payment paynim payoff +payola payroll paysheet payslip pb pbit pbs pc pcp pct pd pda pdflp pdl pe pe- +tsai pea pea-chick pea-souper peabody peace peaceableness peacefulness +peacekeeper peacekeeping peacemaker peacenik peacetime peach peach-wood peachick +peachwood peacoat peacock peacock-throne peafowl peag peahen peak peal pealing +pean peanut peanuts pear pearl pearl-fish pearl-weed pearler pearlfish pearlite +pearlweed pearlwort pearly pearmain peary peasant peasanthood peasantry peasecod +peat peavey peavy peba pebble pebibit pebibyte pecan peccadillo peccary peck +pecker peckerwood pecopteris pecos pecs pectin pectinibranchia pectinidae +pectoral pectoralis pectus peculation peculator peculiarity pedagog pedagogics +pedagogue pedagogy pedal pedaler pedaliaceae pedaller pedant pedantry peddler +peddling pederast pederasty pedesis pedestal pedestrian pediamycin pediapred +pediatrician pediatrics pediatrist pedicab pedicel pedicle pediculati +pediculicide pediculidae pediculosis pediculus pedicure pedigree pedilanthus +pediment pediocactus pedioecetes pedionomus pedipalpi pedlar pedodontist +pedology pedometer pedophile pedophilia peduncle pedwood pee peeing peek +peekaboo peel peeler peeling peen peep peeper peephole peepshow peepul peer +peerage peeress peeve peevishness peewee peewit peg pegasus pegboard pegleg +pegmatite pehlevi pei peignoir peiping peirce peireskia pekan peke pekinese +peking pekingese pekoe pel pelage pelagianism pelagius pelargonium pelecanidae +pelecaniformes pelecanoididae pelecanus pelecypod peleus pelew pelf pelham +pelican peliosis pelisse pellaea pellagra pellet pellicle pellicularia pellitory +pellitory-of-spain pellitory-of-the-wall pellucidity pellucidness pelmet +pelobatidae peloponnese peloponnesus pelota pelt peltandra pelter pelting +peltiphyllum peludo pelvimeter pelvimetry pelvis pelycosaur pelycosauria +pembroke pemican pemmican pempheridae pemphigus pen pen-and-ink pen-friend pen- +tail penalisation penalization penalty penance penchant pencil pendant pendent +pendragon pendulum peneidae penelope peneplain peneplane penetrability +penetralia penetration penetrator peneus pengo penguin penicillamine penicillin +penicillinase penicillium peninsula penis penitence penitent penitentiary +penknife penlight penman penmanship penn penn'orth pennant pennatula +pennatulidae penne penni pennilessness pennines penning pennisetum pennon +pennoncel pennoncelle pennsylvania pennsylvanian penny penny-pinching pennycress +pennyroyal pennyweight pennywhistle pennyworth penobscot penoche penologist +penology penoncel penpusher pensacola pension pensionary pensioner pensiveness +penstemon penstock pentacle pentad pentaerythritol pentagon pentagram +pentahedron pentail pentameter pentamethylenetetrazol pentangle pentastomid +pentastomida pentateuch pentathlete pentathlon pentatone pentazocine pentecost +pentecostal pentecostalism pentecostalist penthouse pentimento pentlandite +pentobarbital pentode pentose pentothal pentoxide pentoxifylline +pentylenetetrazol penuche penuchle penult penultima penultimate penumbra +penuriousness penury penutian peon peonage peony people peoples peoria pep +pepcid peperomia pepin peplos peplum peplus pepper pepper-and-salt peppercorn +pepperidge pepperiness peppermint pepperoni pepperwood pepperwort peppiness +pepsi pepsin pepsinogen peptidase peptide peptisation peptization pepto-bismal +peptone pepys peradventure perambulation perambulator peramelidae perca percale +perceiver percent percentage percentile percept perceptibility perception +perceptiveness perceptivity perch percher percheron perchlorate perchloride +perchloromethane percidae perciformes percina percipient percoid percoidea +percoidean percolate percolation percolator percomorphi percophidae percussion +percussionist percussor percy perdicidae perdicinae perdition perdix +perdurability peregrination peregrine perejil perennation perennial pereskia +perestroika perfect perfecta perfecter perfectibility perfection perfectionism +perfectionist perfective perfidiousness perfidy perfluorocarbon perforation +performance performer performing perfume perfumer perfumery perfusion pergamum +pergola peri periactin perianth periapsis periarteritis pericallis pericarditis +pericardium pericarp pericementoclasia periclase pericles peridinian +peridiniidae peridinium peridium peridot peridotite perigee perigon perigone +perigonium perihelion perijove peril perilla perilousness perilune perilymph +perimeter perimysium perinatologist perinatology perineotomy perineum +perineurium period periodical periodicity periodontia periodontics periodontist +periodontitis periophthalmus periosteum peripatetic peripateticism peripatidae +peripatopsidae peripatopsis peripatus peripeteia peripetia peripety peripheral +periphery periphrasis periplaneta periploca periscope periselene perishability +perishable perishableness perisher perisoreus perisperm perissodactyl +perissodactyla peristalsis peristediinae peristedion peristome peristyle +perithecium perithelium peritoneum peritonitis peritrate periwig periwinkle +perjurer perjury perk perkiness perleche perm permafrost permalloy permanence +permanency permanent permanganate permeability permeableness permeation permian +permic permissibility permission permissiveness permit permutability +permutableness permutation pernambuco perniciousness pernio pernis pernod +perodicticus perognathus peromyscus peron peroneus peronospora peronosporaceae +peronosporales peroration peroxidase peroxide perpendicular perpendicularity +perpetration perpetrator perpetuation perpetuity perphenazine perplexity +perquisite perry persea persecution persecutor persephone persepolis perseus +perseverance perseveration pershing persia persian persiflage persimmon +persistence persistency person persona personableness personage personal +personality personalty personation personhood personification personnel +persoonia perspective perspex perspicaciousness perspicacity perspicuity +perspicuousness perspiration perspirer persuader persuasion persuasiveness +pertainym perth pertinacity pertinence pertinency pertness perturbation +pertusaria pertusariaceae pertussis peru peruke perusal perusing perutz peruvian +pervaporation pervasion pervasiveness perverseness perversion perversity pervert +perviousness pes pesach pesah pesantran pesantren peseta pesewa peshawar +peshmerga peso pessary pessimism pessimist pest pesterer pesthole pesthouse +pesticide pestilence pestis pestle pesto pet pet-food petabit petabyte petal +petard petasites petaurista petauristidae petaurus petchary petcock petechia +peter peterburg petersburg petfood petiole petiolule petite petiteness petitio +petition petitioner petrarca petrarch petrel petrifaction petrification +petrissage petrochemical petrocoptis petrogale petroglyph petrograd petrol +petrolatum petroleum petrology petromyzon petromyzoniformes petromyzontidae +petronius petroselinum petter petteria petticoat pettifogger pettifoggery +pettiness petting pettishness petty petulance petunia peul pew pewee pewit +pewter peyote peziza pezizaceae pezizales pezophaps pfalz pfannkuchen pfc +pfennig pflp pflp-gc ph ph.d. phacelia phacochoerus phacoemulsification +phaeochromocytoma phaeophyceae phaeophyta phaethon phaethontidae phaeton phage +phagocyte phagocytosis phagun phaius phalacrocoracidae phalacrocorax phalacrosis +phalaenopsis phalaenoptilus phalanger phalangeridae phalangida phalangiidae +phalangist phalangitis phalangium phalanx phalaris phalarope phalaropidae +phalaropus phalguna phallaceae phallales phalloplasty phallus phalsa phanerogam +phanerogamae phaneromania phanerozoic phantasm phantasma phantasmagoria phantasy +phantom pharaoh pharisee pharma pharmaceutic pharmaceutical pharmaceutics +pharmacist pharmacogenetics pharmacokinetics pharmacologist pharmacology +pharmacopeia pharmacopoeia pharmacy pharomacrus pharos pharsalus pharyngeal +pharyngitis pharynx phascogale phascolarctos phase phase-out phaseolus phasianid +phasianidae phasianus phasmatidae phasmatodea phasmid phasmida phasmidae +phasmidia phd pheasant pheasant's-eye phegopteris pheidias phellem phellodendron +phenacetin phenacomys phenaphen phenazopyridine phencyclidine phenelzine +phenergan phenicia pheniramine pheno-safranine phenobarbital phenobarbitone +phenol phenolic phenolphthalein phenomenology phenomenon phenoplast +phenothiazine phenotype phensuximide phentolamine phenylacetamide phenylalanine +phenylamine phenylbutazone phenylephrine phenylethylene phenylketonuria +phenylpropanolamine phenyltoloxamine phenytoin pheochromocytoma pheresis +pheromone phi phial phidias philadelphaceae philadelphia philadelphus philaenus +philanderer philanthropist philanthropy philatelist philately philemon +philharmonic philhellene philhellenism philhellenist philia philip philippi +philippian philippians philippic philippine philippines philippopolis philistia +philistine philistinism phillidae phillipsite phillyrea philodendron philogyny +philohela philologist philologue philology philomachus philomath philophylla +philosopher philosophiser philosophizer philosophizing philosophy philter +philtre phimosis phintias phiz phlebectomy phlebitis phlebodium phlebogram +phlebothrombosis phlebotomist phlebotomus phlebotomy phlegm phleum phloem +phlogiston phlogopite phlomis phlox phobia phobophobia phobos phoca phocidae +phocoena phocomelia phoebe phoebus phoenicia phoenician phoenicophorium +phoenicopteridae phoeniculidae phoeniculus phoenicurus phoenix pholadidae pholas +pholidae pholidota pholiota pholis pholistoma phon phonation phone phone-in +phonebook phoneme phonemics phoner phonetician phonetics phoney phonics +phonogram phonograph phonologist phonology phonophobia phony phoradendron +phoronid phoronida phoronidea phosgene phosphatase phosphate phosphine +phosphocreatine phospholipid phosphoprotein phosphor phosphorescence phosphorus +phot photalgia photinia photius photo photo-offset photoblepharon photocathode +photocell photochemistry photocoagulation photocoagulator photoconduction +photoconductivity photocopier photocopy photoelectricity photoelectron +photoemission photoengraving photoflash photoflood photograph photographer +photography photogravure photojournalism photojournalist photolithograph +photolithography photomechanics photometer photometrician photometrist +photometry photomicrograph photomontage photomosaic photon photophobia +photopigment photoretinitis photosensitivity photosphere photostat +photosynthesis phototherapy phototropism phoxinus phragmacone phragmipedium +phragmites phragmocone phrase phraseology phrasing phratry phrenitis +phrenologist phrenology phrontistery phrygia phrygian phrynosoma phs phthiriidae +phthirius phthirus phthisis phthorimaea phycobilin phycocyanin phycoerythrin +phycology phycomycetes phycomycosis phylactery phyle phyllidae phyllitis +phyllium phyllo phylloclad phyllocladaceae phylloclade phyllocladus phyllode +phyllodoce phylloporus phylloquinone phyllorhynchus phylloscopus phyllostachys +phyllostomatidae phyllostomidae phyllostomus phylloxera phylloxeridae +phylogenesis phylogeny phylum physa physalia physalis physaria physeter +physeteridae physiatrics physic physicalism physicality physicalness physician +physicist physics physidae physiognomy physiography physiologist physiology +physiotherapist physiotherapy physique physostegia physostigma physostigmine +phytelephas phytochemical phytochemist phytochemistry phytohormone phytolacca +phytolaccaceae phytologist phytology phytomastigina phytonadione phytophthora +phytoplankton phytotherapy phytotoxin pi pi-meson pia piaf piaffe piaget pianism +pianissimo pianist piano pianoforte pianola piaster piastre piazza pib pibgorn +pibit pibroch pic pica pica-pica picador picaninny picardie picardy picariae +picasso piccalilli piccaninny piccolo picea pichi pichiciago pichiciego picidae +piciformes pick pick-me-up pick-off pickaninny pickax pickaxe pickelhaube picker +pickerel pickerelweed pickeringia picket pickett pickford picking pickings +pickle picklepuss picknicker pickpocket pickup picnic picnicker picofarad +picoides picometer picometre picornavirus picosecond picot picovolt picrasma +picris pictograph pictor pictorial picture picturesqueness picturing picul +piculet picumnus picus pid piddle piddock pidgin pidlimdi pie pie-dog piece +piecework pied-a-terre piedmont piemonte pieplant pier pierce pierid pieridae +pieris pierre pierrot pieta pietism piety piezoelectricity piezometer piffle pig +pigboat pigeon pigeonhole pigeonholing pigfish piggery piggishness piggy +piggyback pigheadedness piglet pigman pigment pigmentation pigmy pignolia pignut +pigpen pigskin pigsticking pigsty pigswill pigtail pigwash pigweed pij pika pike +pike-perch pikeblenny pikestaff pilaf pilaff pilaster pilate pilau pilaw +pilchard pile pilea piles pileup pileus pilewort pilferage pilferer pilgrim +pilgrimage piling pill pillage pillager pillaging pillar pillbox pillion pillock +pillory pillow pillowcase pillwort pilocarpine pilosella pilosity pilot pilotage +pilotfish pilothouse piloting pilsen pilsener pilsner pilularia pilus pima +pimenta pimento pimiento pimlico pimozide pimp pimpernel pimpinella pimple pin +pin-up pinaceae pinafore pinata pinatubo pinball pince-nez pincer pinch +pinchbeck pinche pinchgut pinckneya pinctada pincus pincushion pindar pindaric +pindolol pine pine-weed pinealoma pineapple pinecone pinesap pinetum pineus +pineweed pinfish pinfold ping ping-pong pinger pinguecula pinguicula pinguinus +pinhead pinhole pinicola pining pinion pinite pink pinkeye pinkie pinkness pinko +pinkroot pinky pinna pinnace pinnacle pinnatiped pinner pinning pinniped +pinnipedia pinnotheres pinnotheridae pinnule pinny pinochle pinocle pinocytosis +pinole pinon pinophytina pinopsida pinot pinpoint pinprick pinscher pinsk +pinstripe pint pintado pintail pinter pintle pinto pinus pinwheel pinworm pinyon +piolet pion pioneer piousness pip pip-squeak pipa pipage pipal pipe pipeclay +pipefish pipefitting pipeful pipeline piper piperaceae piperacillin piperales +piperazine piperin piperine piperocaine pipet pipette pipework pipewort pipidae +pipile pipilo piping pipistrel pipistrelle pipistrellus pipit pippin pipra +pipracil pipridae pipsissewa piptadenia pipturus pipul piquance piquancy +piquantness pique piqueria piquet piracy pirana pirandello piranga piranha +pirate pirogi pirogue piroplasm piroshki pirouette piroxicam pirozhki pisa +pisanosaur pisanosaurus piscary pisces piscidia pisiform pismire pisonia piss +piss-up pisser pissing pissis pistachio pistacia piste pistia pistil pistillode +pistol pistoleer piston pisum pit pita pitahaya pitanga pitch pitchblende +pitcher pitcherful pitchfork pitching pitchman pitchstone pitfall pith pithead +pithecanthropus pithecellobium pithecia pithecolobium pithiness pitilessness +pitman pitocin piton pitot pitprop pitressin pitsaw pitt pitta pittance pitter- +patter pittidae pitting pittsburgh pittsfield pituitary pituophis pity pitymys +pityriasis pityrogramma piute pivot pix pixel pixie pixy pizarro pizza pizzaz +pizzazz pizzeria pizzicato pj's pkd pku placard placation place place-kicker +place-kicking place-worship placebo placeholder placekicker placeman placement +placenta placental placentation placer placeseeker placidity placidness placidyl +placket placoderm placodermi placuna plage plagianthus plagiarisation +plagiariser plagiarism plagiarist plagiarization plagiarizer plagiocephaly +plagioclase plague plaice plaid plain plainchant plainclothesman plainness +plainsman plainsong plaint plaintiff plaintiveness plait plaiter plan planaria +planarian planation planchet planchette planck plane planeness planer planera +planet planetarium planetesimal planetoid plangency planimeter plank plank-bed +planking plankton planner planning plano planococcus planography plant plantae +plantagenet plantaginaceae plantaginales plantago plantain plantation planter +planthopper plantigrade planting plantlet plantsman planula plaque plaquenil +plash plasm plasma plasmablast plasmacyte plasmacytoma plasmapheresis plasmid +plasmin plasminogen plasmodiidae plasmodiophora plasmodiophoraceae plasmodium +plassey plaster plasterboard plasterer plastering plasterwork plastic plasticine +plasticiser plasticity plasticizer plastid plastination plastique plastron plat +plataea platalea plataleidae platan platanaceae platanistidae platanthera +platanus plate plateau plateful platelayer platelet plateletpheresis platen +plater platform plath platichthys plating platinum platitude platitudinarian +plato platonism platonist platoon plattdeutsch platte plattensee platter platy +platycephalidae platycerium platyctenea platyctenean platyhelminth +platyhelminthes platylobium platymiscium platypoecilus platypus platyrrhine +platyrrhini platyrrhinian platysma platystemon plaudit plaudits plausibility +plausibleness plautus plavix play play-actor play-box playacting playactor +playback playbill playbook playbox playboy playday player playfellow playfulness +playgoer playground playhouse playing playlet playlist playmaker playmate +playoff playpen playroom playschool playscript playsuit plaything playtime +playwright plaza plea pleader pleading pleasance pleasantness pleasantry pleaser +pleasing pleasingness pleasure pleat pleating pleb plebe plebeian plebiscite +plecoptera plecopteran plecotus plectania plectognath plectognathi plectomycetes +plectophera plectorrhiza plectranthus plectron plectrophenax plectrum pledge +pledgee pledger pleiades pleione pleiospilos pleistocene plenipotentiary +plenitude plenteousness plentifulness plentitude plenty plenum pleochroism +pleomorphism pleonasm pleonaste pleopod plesianthropus plesiosaur plesiosauria +plesiosaurus plessimeter plessor plethodon plethodont plethodontidae plethora +plethysmograph pleura pleuralgia pleurisy pleurobrachia pleurobrachiidae +pleurocarp pleurodont pleurodynia pleuronectes pleuronectidae pleuropneumonia +pleurosorus pleurothallis pleurotus pleven plevna plexiglas plexiglass +pleximeter pleximetry plexor plexus plf pliability pliancy pliantness plica +plication plicatoperipatus plier pliers plight plimsoll plinth pliny pliocene +plo ploce ploceidae ploceus plod plodder plodding plonk plop plosion plosive +plot plotinus plotter plough ploughboy ploughing ploughland ploughman +ploughshare ploughwright plovdiv plover plow plowboy plower plowing plowland +plowman plowshare plowwright ploy pluck pluckiness plug plug-in plug-ugly +plugboard plugger plughole plum plum-yew plumage plumb plumbaginaceae +plumbaginales plumbago plumber plumbery plumbing plumbism plumcot plume plumeria +plumiera plummet plump plumpness plumule plunder plunderage plunderer plundering +plunge plunger plunk plunker pluperfect plural pluralisation pluralism pluralist +plurality pluralization plus plush plutarch pluteaceae pluteus pluto plutocracy +plutocrat pluton plutonium pluvialis pluvianus pluviometer pluviose ply plyboard +plyer plyers plymouth plywood plzen pm pms pneumatics pneumatophore pneumococcus +pneumoconiosis pneumocytosis pneumoencephalogram pneumogastric pneumonectomy +pneumonia pneumonitis pneumonoconiosis pneumothorax pneumovax po poa poaceae +poacher poaching pob pocahontas pocatello pochard pock pocket pocket- +handkerchief pocketbook pocketcomb pocketful pocketknife pockmark pod podalgia +podalyria podargidae podargus podaxaceae podetium podiatrist podiatry podiceps +podicipedidae podicipediformes podicipitiformes podilymbus podium podocarp +podocarpaceae podocarpus podophyllum podsol podzol poe poeciliid poeciliidae +poecilocapsus poecilogale poem poenology poephila poesy poet poet-singer poetess +poetics poetiser poetizer poetry pogey pogge pogonia pogonion pogonip +pogonophora pogonophoran pogostemon pogrom pogy poi poignance poignancy +poikilotherm poilu poinciana poinsettia point pointedness pointel pointer +pointillism pointillist pointlessness pointrel pointsman poise poison poison- +berry poisonberry poisoner poisoning poitier poitiers poitou poitou-charentes +poivrade poke poker pokeweed pokey poking pokomo poky pol polack poland +polanisia polarimeter polaris polarisation polariscope polarity polarization +polarography polaroid polder pole poleax poleaxe polecat polemic polemicist +polemics polemist polemoniaceae polemoniales polemonium polenta poler polestar +polianthes police policeman policewoman policy policyholder polio poliomyelitis +polioptila poliosis poliovirus polish polisher polishing polistes politburo +politeness politesse politician politico politics polity polk polka poll +pollachius pollack pollard pollen pollenation pollex pollination pollinator +pollinium pollinosis polliwog pollock polls pollster pollucite pollutant +polluter pollution pollux pollyfish pollywog polo polo-neck polonaise polonium +polony polska poltergeist poltroon poltroonery polyamide polyandrist polyandry +polyangiaceae polyangium polyanthus polyarteritis polyborus polybotria +polybotrya polybutene polybutylene polycarp polychaeta polychaete polychete +polychrome polycillin polycirrus polycythemia polydactylus polydactyly +polydipsia polyelectrolyte polyergus polyester polyethylene polyfoam polygala +polygalaceae polygamist polygamy polygene polyglot polygon polygonaceae +polygonales polygonatum polygonia polygonum polygraph polygynist polygyny +polyhedron polyhidrosis polyhymnia polymastigina polymastigote polymath polymer +polymerase polymerisation polymerization polymorph polymorphism polymox +polymyositis polymyxin polynemidae polynesia polynesian polyneuritis polynomial +polynya polyodon polyodontidae polyoma polyose polyp polypectomy polypedates +polypedatidae polypeptide polyphone polyphony polyphosphate polyplacophora +polyplacophore polyploid polyploidy polypodiaceae polypodiales polypodium +polypody polyporaceae polypore polyporus polyprion polypropene +polypropenonitrile polypropylene polyptoton polypus polysaccharide polysemant +polysemy polysomy polystichum polystyrene polysyllable polysyndeton polytechnic +polytetrafluoroethylene polytheism polytheist polythene polytonalism +polytonality polyurethan polyurethane polyuria polyvalence polyvalency +polyvinyl-formaldehyde polyzoa polyzoan pom pom-pom pomacanthus pomacentridae +pomacentrus pomade pomaderris pomatomidae pomatomus pomatum pome pomegranate +pomelo pomeranian pomfret pommel pommy pomo pomolobus pomologist pomology +pomoxis pomp pompadour pompano pompeii pompey pompon pomposity pompousness ponca +ponce poncho poncirus pond pond-skater ponderer ponderosa ponderosity +ponderousness pondweed pone pong pongamia pongee pongid pongidae pongo poniard +ponka pons ponselle ponstel pontederia pontederiaceae pontiac pontifex pontiff +pontifical pontificate pontoon pontos pontus pony pony-trekking ponycart +ponytail pooch pood poodle pooecetes poof pooh-bah pool pooler poolroom poon +poop poor poorhouse poorness poorwill poove pop pop-fly pop-up popcorn pope +popery popgun popillia popinjay poplar poplin popover popper poppet popping +poppy poppycock popsicle populace popularisation populariser popularism +popularity popularization popularizer population populism populist populus +porbeagle porc porcelain porcellio porcellionidae porch porcupine porcupinefish +porcupines pore porgy porifera poriferan pork pork-barreling pork-fish porkchop +porker porkfish porkholt porkpie porn porno pornographer pornography poronotus +poroporo porosity porousness porphyra porphyria porphyrin porphyrio porphyrula +porphyry porpoise porridge porringer port port-au-prince port-of-spain porta +portability portable portage portal portcullis porte porte-cochere portent +porter porterage porterhouse portfolio porthole portico portiere portion +portland portmanteau porto portrait portraitist portraiture portrayal portrayer +portraying portsmouth portugal portuguese portulaca portulacaceae portunidae +portunus portwatcher porzana pose poseidon poser poseur poseuse posing posit +position positioner positioning positive positiveness positivism positivist +positivity positron posology posse posseman possession possessive possessiveness +possessor posset possibility possible possibleness possum possumwood post post- +horse post-impressionist post-it post-maturity post-menopause post-mortem +postage postbag postbox postcard postcava postcode postdiluvian postdoc +postdoctoral poster posterboard posterior posteriority posterity postern postfix +postgraduate posthitis posthole posthouse postiche postilion postillion +postimpressionist posting postlude postman postmark postmaster postmistress +postmodernism postmortem postponement postponer postposition postscript +postulant postulate postulation postulator postum posture posturer posturing +posy pot pot-au-feu potable potage potamogale potamogalidae potamogeton +potamogetonaceae potamophis potash potassium potation potato potawatomi potbelly +potboiler potboy poteen potemkin potence potency potentate potential +potentiality potentiation potentilla potentiometer poterium potful pothead +pother potherb potholder pothole potholer pothook pothos pothouse pothunter +potion potlatch potluck potman potomac potomania potoroinae potoroo potorous +potos potpie potpourri potsdam potsherd potshot pottage potter potterer pottery +pottle potto potty potyokin pouch poudrin pouf pouffe poulenc poulet poulette +poulterer poultice poultry poultryman pounce pound poundage poundal pounder +pounding pourboire pousse-cafe poussin pout pouter pouteria poverty pow powder +powderer powderiness powderpuff powell power powerboat powerbroker powerfulness +powerhouse powerlessness powhatan powwow powys pox poxvirus poyang poyou pozsony +ppk pplo ppp pr practicability practicableness practicality practice practician +practitioner praenomen praesidium praetor praetorian praetorium praetorship prag +pragmatic pragmatics pragmatism pragmatist prague praha praia prairial prairie +praise praiseworthiness praisworthiness prajapati prakrit praline pram prance +prancer prang prank prankishness prankster praseodymium prat prate prater +pratfall pratincole prattle prattler praunus pravachol pravastatin prawn praxis +praxiteles praya prayer prayerbook prazosin prc pre-eclampsia pre-empt pre- +emption pre-emptor pre-raphaelite pre-socratic preacher preachification +preaching preachment preakness preamble prearrangement prebend prebendary +precambrian precariousness precaution precava precedence precedency precedent +precentor precentorship precept preceptor preceptorship precession +prechlorination precinct preciosity preciousness precipice precipitance +precipitancy precipitant precipitate precipitateness precipitation precipitator +precipitin precipitousness precis preciseness precision preclusion +precociousness precocity precognition preconception precondition precordium +precursor predation predator predecessor predestinarian predestinarianism +predestination predestinationist predetermination predicament predicate +predication predicator predictability prediction predictor predilection +predisposition prednisolone prednisone predominance predomination preeclampsia +preemie preeminence preempt preemption preemptor preexistence prefab +prefabrication preface prefect prefecture preference preferment prefiguration +prefix prefixation preformation pregnancy pregnanediol prehension prehensor +prehistory preindication prejudgement prejudgment prejudice prelacy prelate +prelature prelim preliminary prelims prelone prelude prematureness prematurity +premeditation premie premier premiere premiership premise premises premiss +premium premix premolar premonition prenanthes prentice preoccupancy +preoccupation preordination prep preparation preparedness prepayment +preponderance preposition prepossession prepotency prepuberty prepuce +prerequisite prerogative presage presbyope presbyopia presbyter presbyterian +presbyterianism presbytery presbytes preschool preschooler prescience prescott +prescript prescription prescriptivism preseason presence present presentation +presenter presentiment presentism presentist presentment presentness +preservation preservationist preservative preserve preserver preserves +presidency president presidentship presidio presidium presley press press-up +pressburg pressing pressman pressmark pressor pressure prestidigitation +prestidigitator prestige prestigiousness presumption presumptuousness +presupposition preteen preteenager pretence pretend pretender pretending +pretense pretension pretentiousness preterist preterit preterite preterition +pretermission pretext pretor pretoria pretorium pretrial prettiness pretzel +preussen prevacid prevalence prevarication prevaricator preventative prevention +preventive preview prevision prevue prexy prey priacanthidae priacanthus priam +priapism priapus price price-fixing pricelessness pricing prick pricker pricket +pricking prickle prickle-weed prickleback prickliness prickling prickteaser +pride pride-of-india pridefulness prie-dieu priest priest-doctor priestcraft +priestess priesthood priestley prig priggishness prilosec prima primacy +primality primaquine primary primate primates primateship primatology primaxin +prime primer primidone primigravida priming primipara primitive primitiveness +primitivism primness primo primogenitor primogeniture primordium primping +primrose primula primulaceae primulales primus prince prince's-feather +prince's-plume prince-of-wales'-heath princedom princeling princess princeton +princewood principal principality principalship principe principen principle +prinia prinival print printer printing printmaker printmaking printout +priodontes prion prionace prionotus prior prioress priority priorship priory +priscoan prism prismatoid prismoid prison prison-breaking prisonbreak prisoner +pristidae pristis pritzelago privacy private privateer privateersman privateness +privates privation privatisation privatization privet privilege privine privy +prize prizefight prizefighter pro pro-lifer proaccelerin probabilism probability +probable probate probation probationer probe probenecid probiotic probity +problem proboscidea proboscidean proboscidian proboscis procaine procarbazine +procardia procaryote procavia procaviidae procedure proceeding proceedings +proceeds procellaria procellariidae procellariiformes process process-server +processing procession processional processor prochlorperazine prociphilus +proclamation proclivity procnias proconsul proconsulate proconsulship +proconvertin procrastination procrastinator procreation procrustes proctalgia +proctitis proctocele proctologist proctology proctoplasty proctor proctorship +proctoscope proctoscopy procural procurance procurator procurement procurer +procuress procyclidine procyon procyonid procyonidae prod prodding prodigal +prodigality prodigy prodroma prodrome produce producer product production +productiveness productivity proenzyme prof profanation profaneness profanity +professing profession professional professionalisation professionalism +professionalization professor professorship proffer proficiency profile +profiling profit profitability profitableness profiteer profiterole profits +profligacy profligate profoundness profundity profuseness profusion progenitor +progeny progeria progesterone progestin progestogen prognathism progne prognosis +prognostic prognostication prognosticator program programing programma programme +programmer programming progress progression progressive progressiveness +progressivism progressivity progymnosperm prohibition prohibitionist project +projectile projection projectionist projector prokaryote prokayotae prokhorov +prokofiev prolactin prolamine prolapse prolapsus prole prolegomenon prolepsis +proletarian proletariat proliferation prolificacy proline prolixity prolixness +prolog prologue prolongation prolonge prolusion prom promenade promethazine +prometheus promethium prominence promiscuity promiscuousness promise promisee +promiser promisor promontory promoter promotion prompt promptbook prompter +prompting promptitude promptness promulgation promulgator promycelium pronation +pronator proneness prong prongbuck pronghorn pronominal pronoun pronouncement +pronucleus pronunciamento pronunciation proof proofreader prop propaedeutic +propaedeutics propaganda propagandist propagation propagator propanal +propanamide propane propanediol propanol propanolol propanone proparoxytone +propellant propellent propeller propellor propenal propene propenoate +propenonitrile propensity properness property prophase prophecy prophesier +prophet prophetess prophets prophylactic prophylaxis prophyll propinquity +propionaldehyde propitiation propitiousness propjet propman proponent proportion +proportional proportionality proportionateness proposal proposer proposition +propositus propoxyphene proprietary proprietor proprietorship proprietress +propriety proprioception proprioceptor proprionamide props propulsion propyl +propylene propylthiouracil proration prorogation prosaicness prosauropoda +proscenium prosciutto proscription prose prosecution prosecutor proselyte +proselytism prosencephalon proserpina proserpine prosimian prosimii prosiness +prosodion prosody prosom prosopis prosopium prosopopoeia prospect prospector +prospectus prosperity prospicience prostaglandin prostate prostatectomy +prostatitis prostheon prosthesis prosthetics prosthetist prosthion prosthodontia +prosthodontics prosthodontist prostigmin prostitute prostitution prostration +protactinium protagonism protagonist protamine protanopia protea proteaceae +proteales protease protection protectionism protectionist protectiveness +protector protectorate protectorship protege protegee proteidae protein +proteinase proteinuria proteles proteolysis proteome proteomics proteosome +proterochampsa proterozoic protest protestant protestantism protestation +protester proteus prothalamion prothalamium prothorax prothrombin prothrombinase +protirelin protist protista protistan protium proto-norse proto-oncogene +protoactinium protoanthropology protoarchaeology protoarcheology protoavis +protoceratops protocol protoctist protoctista protoheme protohemin protohippus +protohistory protology protomammal proton protoplasm protoplast prototheria +prototherian prototype protozoa protozoan protozoologist protozoology protozoon +protraction protractor protriptyline protropin protrusion protuberance protura +proturan proudhon proust provability provenance provencal provence provender +provenience proventil provera proverb proverbs providence provider province +provincial provincialism provirus provision provisioner provisions proviso +provitamin provo provocateur provocation provoker provos provost prow prowess +prowl prowler proxemics proxima proximity proxy prozac prude prudence prudery +prudishness prumnopitys prune prunella prunellidae pruner pruning pruno prunus +prurience pruriency prurigo pruritus prussia prussian pry prying ps psa psalm +psalmist psalmody psalms psalter psalterium psaltery psaltriparus psammoma +psenes psephologist psephology psephurus psetta psettichthys pseud pseudacris +pseudaletia pseudechis pseudemys pseudepigrapha pseudo pseudobombax pseudobulb +pseudocarp pseudococcidae pseudococcus pseudocolus pseudocyesis pseudoephedrine +pseudohallucination pseudohermaphrodite pseudohermaphroditism pseudolarix +pseudomonad pseudomonadales pseudomonas pseudomonodaceae pseudonym pseudophloem +pseudopleuronectes pseudopod pseudopodium pseudorubella pseudoryx pseudoscience +pseudoscorpion pseudoscorpiones pseudoscorpionida pseudosmallpox pseudotaxus +pseudotsuga pseudovariola pseudowintera psf psi psidium psilocin psilocybin +psilomelane psilophytaceae psilophytales psilophyte psilophyton psilopsida +psilosis psilotaceae psilotales psilotatae psilotum psithyrus psittacidae +psittaciformes psittacosaur psittacosaurus psittacosis psittacula psittacus +psoas psocid psocidae psocoptera psophia psophiidae psophocarpus psoralea +psoriasis pst psyche psychedelia psychiatrist psychiatry psychic psycho +psychoanalysis psychoanalyst psychobabble psychodid psychodidae psychodynamics +psychogenesis psychokinesis psycholinguist psycholinguistics psychologist +psychology psychometrics psychometrika psychometry psychoneurosis psychoneurotic +psychonomics psychopath psychopathology psychopathy psychopharmacology +psychophysicist psychophysics psychophysiology psychopomp psychopsis +psychosexuality psychosis psychosurgery psychotherapeutics psychotherapist +psychotherapy psychotic psychotria psychrometer psylla psyllid psyllidae +psyllium psyop pt ptah ptarmigan pteretis pteridaceae pteridium pteridologist +pteridology pteridophyta pteridophyte pteridosperm pteridospermae +pteridospermaphyta pteridospermopsida pteriidae pterion pteris pternohyla +pterocarpus pterocarya pterocles pteroclididae pterocnemia pterodactyl +pterodactylidae pterodactylus pterois pteropogon pteropsida pteropus pterosaur +pterosauria pterospermum pterostylis pterygium ptilocercus ptilocrinus +ptilonorhynchidae ptilonorhynchus ptloris pto ptolemy ptomain ptomaine ptosis +ptsd ptyalin ptyalism ptyalith ptyas ptychozoon pu pub puberty pubes pubescence +pubis public publican publication publiciser publicist publicity publicizer +publicizing publisher publishing puccini puccinia pucciniaceae puccoon puce puck +pucker puckerbush puckishness pud pudden-head pudding pudding-face pudding-wife +puddingwife puddle puddler pudendum pudge pudginess puebla pueblo pueraria +puerility puerpera puerperium puff puffball puffbird puffer pufferfish puffery +puffin puffiness puffing puffinus pug pug-dog pugilism pugilist pugin puglia +pugnacity puissance pujunan puka puke puking puku pul pula pulasan pulassan +pulchritude pulex pulicaria pulicidae pulitzer pull pull-in pull-off pull- +through pull-up pullback puller pullet pulley pulley-block pulling pullman +pullout pullover pullulation pulmonata pulp pulpiness pulpit pulpwood pulque +pulsar pulsatilla pulsation pulse pulsing pulverisation pulverization puma +pumice pummelo pump pumpernickel pumpkin pumpkinseed pun punch punch-up +punchayet punchball punchboard puncher punctilio punctiliousness punctuality +punctuation punctum puncture pundit pung pungapung pungency punic punica +punicaceae puniness punishment punjab punjabi punk punkah punkey punkie punks +punky punnet punning punster punt punter punting pup pupa pupil puppet puppeteer +puppetry puppis puppy purace purana purau purcell purchase purchaser purchasing +purdah pureblood purebred puree pureness purgation purgative purgatory purge +purging purification purifier purim purine purinethol purism purist puritan +puritanism purity purkinje purl purlieu purloo purple purpleness purplish-red +purport purpose purposefulness purposelessness purpura purr purse purser +purslane pursual pursuance pursued pursuer pursuit purulence purulency purus +purveyance purveyor purview pus pusan pusey puseyism push push-bike pushan +pushball pushcart pushchair pusher pushiness pushing pushkin pushover pushpin +pushtun pushup pusillanimity pusillanimousness puss pussley pussly pussy +pussy's-paw pussy-paw pussy-paws pussycat pussytoes pustule put put-down put-on +put-put putamen putin putoff putout putrajaya putrefaction putrescence +putrescine putridity putridness putsch putt puttee putter putterer putting putty +puttyroot putz puzzle puzzlement puzzler pva pvc pwr px pya pyaemia pycnanthemum +pycnidium pycnodysostosis pycnogonid pycnogonida pycnosis pydna pye-dog pyelitis +pyelogram pyelography pyelonephritis pyemia pygmalion pygmy pygopodidae pygopus +pygoscelis pyinma pyjama pyknosis pyle pylodictus pylon pylorus pynchon +pyocyanase pyocyanin pyongyang pyorrhea pyorrhoea pyracanth pyracantha pyralid +pyralidae pyralididae pyralis pyramid pyramiding pyrausta pyre pyrectic pyrene +pyrenees pyrenomycetes pyrethrum pyrex pyrexia pyridine pyridium pyridoxal +pyridoxamine pyridoxine pyrilamine pyrimidine pyrite pyrites pyrocellulose +pyrocephalus pyrochemistry pyroelectricity pyrogallol pyrogen pyrograph +pyrographer pyrography pyrola pyrolaceae pyrolatry pyrolusite pyrolysis +pyromancer pyromancy pyromania pyromaniac pyrometer pyromorphite pyrope +pyrophobia pyrophorus pyrophosphate pyrophyllite pyroscope pyrosis pyrostat +pyrotechnic pyrotechnics pyrotechny pyroxene pyroxylin pyroxyline pyrrhic +pyrrhocoridae pyrrhotine pyrrhotite pyrrhula pyrrhuloxia pyrrhus pyrrophyta +pyrrosia pyrularia pyrus pythagoras pythia pythiaceae pythias pythium pythius +python pythoness pythonidae pythoninae pyuria pyx pyxidanthera pyxidium pyxie +pyxis q qabala qabalah qabbala qabbalah qaddafi qadhafi qadi qaeda qandahar qat +qatar qatari qcd qed qepiq qi qiang qiangic qibla qin qindarka qing qintar qoph +quaalude quack quack-quack quackery quackgrass quad quadragesima quadrangle +quadrant quadrantanopia quadraphony quadrate quadratic quadratics quadrature +quadrennium quadric quadriceps quadrilateral quadrille quadrillion quadrillionth +quadripara quadriplegia quadriplegic quadrivium quadroon quadrumvirate quadruped +quadruple quadruplet quadruplicate quadrupling quaestor quaff quaffer quag +quagga quagmire quahaug quahog quail quaintness quake quaker quakerism quakers +qualification qualifier qualifying quality qualm quamash quamassia quandang +quandary quandong quango quantic quantifiability quantification quantifier +quantisation quantity quantization quantong quantum quaoar quapaw quarantine +quark quarrel quarreler quarreller quarrelsomeness quarrier quarry quarrying +quarryman quart quartan quarter quarter-century quarter-circle quarter-hour +quarter-tone quarter-vine quarterback quarterdeck quarterfinal quartering +quarterlight quarterly quartermaster quartern quarters quarterstaff quartervine +quartet quartette quartic quartile quarto quartz quartzite quasar quasi-ngo +quasiparticle quassia quat quatercentenary quatercentennial quatern quaternary +quaternion quaternity quatrain quattrocento quaver quay quayage queasiness +quebec quebecois quechua quechuan queen queenfish queens queensland queer +queerness quelling quellung quenching quercitron quercus querier quern +querulousness query quesadilla quest quester question questioner questioning +questionnaire quetzal quetzalcoatl queue quiaquia quibble quibbler quiche quick +quick-wittedness quickener quickening quickie quicklime quickness quicksand +quickset quicksilver quickstep quicky quid quiddity quidnunc quiescence +quiescency quiet quietism quietist quietness quietude quietus quiff quill +quillwort quilt quilting quin quinacrine quince quincentenary quincentennial +quincy quine quinidex quinidine quinine quinone quinora quinquagesima +quinquennium quinsy quint quintal quintessence quintet quintette quintillion +quintillionth quintipara quintuple quintuplet quintupling quip quipu quira quire +quirk quirkiness quirt quiscalus quisling quislingism quitclaim quito quittance +quitter quiver quivering quixotism quiz quizmaster quizzer qum quodlibet quoin +quoit quoits quoratean quorum quota quotability quotation quote quoter quotient +quran qurush r r-2 r.v. ra rabat rabato rabbet rabbi rabbinate rabbit rabbit- +weed rabbiteye rabbitfish rabbitweed rabbitwood rabble rabble-rouser rabelais +rabidity rabidness rabies raccoon race raceabout racecard racecourse racehorse +raceme racer racerunner racetrack raceway rachel rachet rachis rachischisis +rachitis rachmaninoff rachmaninov rachycentridae rachycentron racialism +racialist racine raciness racing racism racist rack racker racket racketeer +racketeering racketiness racon raconteur racoon racquet racquetball rad radar +raddle radhakrishnan radial radian radiance radiancy radiation radiator radical +radicalism radicchio radicle radiculitis radiigera radio radio-gramophone radio- +opacity radio-phonograph radioactivity radiobiologist radiobiology radiocarbon +radiochemist radiochemistry radiochlorine radiocommunication radiogram +radiograph radiographer radiography radioimmunoassay radioisotope radiolaria +radiolarian radiolocation radiologist radiology radiolysis radiometer +radiomicrometer radiopacity radiopharmaceutical radiophone radiophoto +radiophotograph radiophotography radioprotection radioscopy radiosensitivity +radiotelegraph radiotelegraphy radiotelephone radiotelephony radiotherapist +radiotherapy radiothorium radish radium radius radix radome radon radyera raetam +raf raffia raffinose raffle raffles rafflesiaceae raft rafter raftman rafts +raftsman rag ragamuffin ragbag rage ragee raggedness ragi raglan ragnarok ragout +ragpicker ragsorter ragtag ragtime ragusa ragweed ragwort rahu raid raider rail +rail-splitter railbird railcar railhead railing raillery railroad railroader +railroading rails railway railwayman railyard raiment rain rain-giver rain-in- +the-face rain-wash rainbow raincoat raindrop rainfall rainfly rainforest +raininess rainmaker rainmaking rainstorm rainwater raise raiser raisin raising +raita raiu raj raja rajab rajah rajanya rajidae rajiformes rajpoot rajput +rakaposhi rake rake-off rakehell rakishness rale ralegh raleigh rallidae rally +rallying ram ram's-head rama ramachandra ramadan ramalina ramanavami ramayana +ramble rambler rambotan rambouillet rambutan rameau ramee ramekin ramequin +rameses ramesses ramie ramification ramipril ramjet ramman rammer ramona +ramontchi ramp rampage rampart ramphastidae ramphomicron rampion ramrod ramses +ramsons ramus rana ranales ranatra ranch rancher ranching rancidity rancidness +rancor rancour rand randomisation randomization randomness ranee range +rangefinder rangeland ranger rangifer rangoon rangpur rani ranid ranidae ranier +ranitidine rank ranker rankin rankine ranking rankness ransacking ransom rant +ranter ranting ranula ranunculaceae ranunculales ranunculus raoulia rap +rapaciousness rapacity rapateaceae rape raper rapeseed raphael raphanus raphe +raphia raphicerus raphidae raphidiidae raphus rapid rapidity rapidness rapier +rapine rapist rappahannock rappee rappel rappeller rapper rapport rapporteur +rapprochement rapscallion raptor raptores rapture raptus rarebit raree-show +rarefaction rareness rariora rarity ras rascal rascality rash rasher rashness +rasht rask raskolnikov rasmussen rasp raspberry rasping rasputin rassling rasta +rastafari rastafarian rastafarianism rastas raster rat rat-a-tat rat-a-tat-tat +rat-catcher rat-tat ratability ratables ratafee ratafia ratan rataplan +ratatouille ratch ratchet rate rateability rateables ratel ratepayer rates +rathole rathskeller ratibida ratification ratifier rating ratio ratiocination +ratiocinator ration rational rationale rationalisation rationalism rationalist +rationality rationalization rationalness rationing ratitae ratite ratlin ratline +ratsbane rattail rattan ratter rattigan ratting rattle rattle-top rattlebox +rattler rattlesnake rattling rattrap rattus rau-sed raudixin raunch rauvolfia +rauwolfia ravage ravaging rave rave-up ravehook ravel raveling ravelling raven +ravenala ravenna ravenousness raver ravigote ravigotte ravine raving ravioli +ravisher ravishment raw rawalpindi rawhide rawness ray rayleigh rayon rayons +razbliuto razing razmataz razor razor-fish razorback razorbill razorblade razz +razzing razzle razzle-dazzle razzmatazz rb rbc rbi rcmp re re-afforestation re- +creation re-echo re-establishment re-experiencing re-formation re-introduction +re-sentencing re-uptake reabsorption reach reaching reactance reactant reaction +reactionary reactionism reactivity reactor read read-out readability reader +readership readiness reading readjustment readmission readout ready ready-made +ready-mix ready-to-wear readying reaffiliation reaffirmation reagan reagent +reagin real realgar realisation realism realist reality realization reallocation +reallotment realm realness realpolitik realtor realty ream reamer reaper +reappearance reapportionment reappraisal rear rearguard rearing rearmament +rearrangement rearward reason reasonableness reasoner reasoning reassembly +reassertion reassessment reassignment reassurance reata reaumur reb rebate +rebato rebecca rebekah rebel rebellion rebelliousness rebirth rebound reboxetine +rebozo rebroadcast rebuff rebuilding rebuke rebuker reburial reburying rebus +rebuttal rebutter recalcitrance recalcitrancy recalculation recall recantation +recap recapitulation recapture recasting recce recco reccy receding receipt +receipts receivables receiver receivership recency recent recentness receptacle +reception receptionist receptiveness receptivity receptor recess recession +recessional recessive rechauffe recidivism recidivist recife recipe recipient +reciprocal reciprocality reciprocation reciprocity recirculation recission +recital recitalist recitation recitative reciter recklessness reckoner reckoning +reclamation reclassification recliner reclining recluse reclusiveness recoding +recognisance recognition recognizance recoil recollection recombinant +recombination recommencement recommendation recompense reconciler reconciliation +reconditeness reconnaissance reconnoitering reconnoitring reconsideration +reconstruction record record-breaker record-holder record-keeper recorder +recording recount recounting recourse recoverer recovery recreant recreation +recrimination recrudescence recruit recruiter recruiting-sergeant recruitment +rectangle rectangularity rectification rectifier rectitude recto rectocele +rectoplasty rector rectorate rectorship rectory rectum rectus recuperation +recurrence recursion recurvirostra recurvirostridae recusal recusancy recusant +recusation recycling red red-berry red-blindness red-header redact redaction +redactor redbelly redberry redbird redbone redbreast redbrush redbud redbug +redcap redcoat redding reddle rededication redeemer redefinition redemption +redeployment redeposition redetermination redevelopment redeye redfish redford +redhead redheader redhorse rediffusion rediscovery redisposition redistribution +redmaids redneck redness redolence redonda redoubt redox redpoll redraft redress +redroot redshank redshift redskin redstart redtail reducer reducing reductant +reductase reductio reduction reductionism reductivism redundance redundancy +reduplication reduviid reduviidae redwing redwood reed reedbird reedmace reef +reefer reek reel reelection reeler reenactment reenactor reenforcement +reenlistment reentry reevaluation reeve reexamination ref refabrication +refection refectory referee refereeing reference referendum referent referral +refill refilling refinement refiner refinery refining refinisher refit reflation +reflectance reflection reflectiveness reflectivity reflectometer reflector +reflex reflexion reflexive reflexiveness reflexivity reflexology reflux +refocusing reforestation reform reformation reformatory reformer reformism +reformist refraction refractiveness refractivity refractometer refractoriness +refractory refrain refresher refreshment refrigerant refrigeration refrigerator +refueling refuge refugee refulgence refulgency refund refurbishment refusal +refuse refutal refutation refuter regaining regalecidae regalia regard regatta +regency regeneration regent reggae reggane regicide regime regimen regiment +regimentals regimentation regina regiomontanus region regionalism register +registrant registrar registration registry reglaecus regnellidium regosol +regress regression regret regrets regular regularisation regularity +regularization regulating regulation regulator regulus regur regurgitation +rehabilitation reharmonisation reharmonization rehash rehearing rehearsal +rehnquist reich reichstein reid reification reign reimbursement reimposition +reims rein reincarnation reincarnationism reindeer reinforcement reinforcer +reinstatement reinsurance reinterpretation reintroduction reissue reit reiter +reiteration reithrodontomys reject rejection rejoicing rejoinder rejuvenation +relafen relapse relapsing relatedness relation relations relationship relative +relative-in-law relativism relativity relatum relaxant relaxation relaxer +relaxin relay release relegating relegation relentlessness relevance relevancy +reliability reliableness reliance relic relict relief reliever relievo religion +religionism religionist religiosity religious religiousism religiousness +relinquishing relinquishment reliquary relish relishing relistening reliving +relocation reluctance reluctivity rem remainder remains remake remaking remand +remark remarriage rematch rembrandt remediation remedy remembering remembrance +remicade remilegia remilitarisation remilitarization reminder reminiscence +remise remission remissness remit remitment remittal remittance remnant +remonstrance remonstration remora remorse remote remoteness remotion remount +removal remove remover remuda remuneration remunerator remus renaissance +renascence render rendering rendezvous rendition renegade renege renewal renin +rennet rennin reno renoir renouncement renovation renovator renown rensselaerite +rent rent-a-car rent-rebate rent-roll rental rente renter rentier renting +renunciation reorder reordering reorganisation reorganization reorientation +reoviridae reovirus rep repair repairer repairman reparation repartee repast +repatriate repatriation repayment repeal repeat repeater repeating repechage +repellant repellent repentance repercussion repertoire repertory repetition +repetitiousness repetitiveness rephrasing replaceability replacement replacing +replay replenishment repletion replica replication reply report reportage +reporter reporting repose repositing reposition repositioning repository +repossession repp reprehensibility reprehension representation representative +represser repression repressor reprieve reprimand reprint reprinting reprisal +reproach reproacher reprobate reprobation reproducer reproducibility +reproduction reproof reproval reprover reptantia reptile reptilia reptilian +republic republican republicanism republication republishing repudiation +repugnance repulse repulsion repulsiveness repurchase reputability reputation +repute request requester requiem requiescat requirement requisite requisiteness +requisition requital rerebrace reredos rerun res resale rescission rescript +rescriptor rescue rescuer research researcher reseau resection reseda resedaceae +resemblance resentment reserpine reservation reserve reserves reservist +reservoir reset resettlement resh reshipment resht reshuffle reshuffling resid +residence residency resident residual residue residuum resignation resilience +resiliency resin resinoid resistance resister resistivity resistor resoluteness +resolution resolve resolvent resolving resonance resonator resorcinol +resorcinolphthalein resorption resort resource resourcefulness respect +respectability respecter respectfulness respects respighi respiration respirator +respite resplendence resplendency respondent responder response responsibility +responsibleness responsiveness rest rest-cure rest-harrow restatement restaurant +restauranter restaurateur rester restfulness restharrow restitution restiveness +restlessness restoration restorative restorer restoril restrainer restraint +restriction restrictiveness restroom result resultant resume resumption +resurgence resurrection resurvey resuscitation resuscitator resuspension retail +retailer retailing retainer retake retaking retaliation retaliator retama retard +retardant retardation retarded retardent retch rete retem retention +retentiveness retentivity rethink reticence reticle reticulation reticule +reticulitermes reticulocyte reticulum retina retinal retinene retinitis +retinoblastoma retinol retinopathy retinue retiree retirement retort retraction +retractor retraining retread retreat retreatant retreated retrenchment retrial +retribution retrieval retriever retro retrofit retroflection retroflexion +retrogression retronym retrophyllum retrorocket retrospect retrospection +retrospective retroversion retrovir retrovirus retrovision retsina return reuben +reunification reunion reuptake rev revaluation revealing reveille revel +revelation reveler reveller revelry revenant revenge revenue revenuer +reverberance reverberation revere reverence reverend reverie revers reversal +reverse reversibility reversible reversion reversioner reversionist reverting +revery revetement revetment review reviewer revilement revisal revise reviser +revising revision revisionism revisionist revitalisation revitalization revival +revivalism revivalist revivification revocation revoke revolt revolution +revolutionary revolutionism revolutionist revolver revue revulsion rewa-rewa +reward rewording rewrite rewriter rewriting rex reyes reykjavik reynard reynolds +rf rfd rg rh rhabdomancer rhabdomancy rhabdomyoma rhabdomyosarcoma rhabdosarcoma +rhabdoviridae rhabdovirus rhadamanthus rhaeto-romance rhaeto-romanic rhagades +rhagoletis rhamnaceae rhamnales rhamnus rhaphe rhapis rhapsody rhd rhea rheidae +rheiformes rheims rhein rheinland rhenish rhenium rheology rheometer rheostat +rhesus rhetoric rhetorician rheum rheumatic rheumatism rheumatologist +rheumatology rhexia rhibhus rhincodon rhincodontidae rhine rhineland +rhinencephalon rhinestone rhinion rhinitis rhino rhinobatidae rhinoceros +rhinocerotidae rhinolaryngologist rhinolaryngology rhinolophidae rhinonicteris +rhinopathy rhinophyma rhinoplasty rhinoptera rhinorrhea rhinoscope rhinoscopy +rhinosporidiosis rhinostenosis rhinotermitidae rhinotomy rhinotracheitis +rhinovirus rhipsalis rhiptoglossa rhizobiaceae rhizobium rhizoctinia rhizoid +rhizome rhizomorph rhizophora rhizophoraceae rhizopod rhizopoda rhizopodan +rhizopogon rhizopogonaceae rhizopus rhizotomy rho rhodanthe rhodes rhodesia +rhodium rhodochrosite rhododendron rhodolite rhodomontade rhodonite rhodophyceae +rhodophyta rhodopsin rhodosphaera rhodymenia rhodymeniaceae rhoeadales rhomb +rhombencephalon rhombohedron rhomboid rhombus rhonchus rhone rhone-alpes rhubarb +rhumb rhumba rhus rhyacotriton rhyme rhymer rhymester rhynchocephalia +rhynchoelaps rhyncostylis rhynia rhyniaceae rhyolite rhythm rhythmicity +rhytidectomy rhytidoplasty ri rial riata rib ribald ribaldry riband ribavirin +ribband ribbing ribbon ribbonfish ribbonwood ribes ribgrass ribhus ribier +riboflavin ribonuclease ribonucleinase ribose ribosome ribwort ricardo rice +ricebird ricegrass ricer rich richards richardson richea richelieu riches +richler richmond richmondena richness richweed ricin ricinus rick rickenbacker +ricketiness rickets rickettsia rickettsiaceae rickettsiales rickettsialpox +rickettsiosis rickey rickover rickrack ricksha rickshaw rico ricochet ricotta +ricrac rictus riddance riddle ride rider ridge ridgel ridgeline ridgeling +ridgepole ridgil ridgling ridicule ridiculer ridiculousness riding ridley riel +riemann riesling riesman rifadin rifampin riff riffian riffle riffraff rifle +riflebird rifleman rifling rift rig rig-veda riga rigamarole rigatoni rigel +rigger rigging right right-handedness right-hander right-winger righteousness +rightfield rightfulness righthander rightism rightist rightness rigidification +rigidifying rigidity rigidness rigil rigmarole rigor rigorousness rigour +rigourousness rigout rijstafel rijstaffel rijsttaffel riksmaal riksmal riley +rilievo rilke rill rim rima rimactane rimbaud rime rimski-korsakov rimsky- +korsakov rimu rind rinderpest ring ring-a-rosy ring-around-a-rosy ring-around- +the-rosy ring-binder ringdove ringer ringgit ringhals ringing ringleader ringlet +ringling ringmaster rings ringside ringtail ringway ringworm rink rinkhals rinse +rinsing rio rioja riot rioter rioting rip rip-off riparia ripcord ripeness +ripening riposte ripper ripple ripple-grass rippling ripsaw riptide rira risc +rise riser risibility rising risk riskiness risklessness risotto rissa rissole +ritalin rite ritonavir rittenhouse ritual ritualism ritualist ritz rival rivalry +river rivera riverbank riverbed riverside rivet riveter rivetter riviera rivina +rivulet rivulus riyadh riyal riyal-omani rn rna rnase ro roach road roadbed +roadblock roadbook roadhog roadhouse roadkill roadman roadrunner roads roadside +roadstead roadster roadway roadworthiness roamer roan roanoke roar roarer +roaring roast roaster roasting robalo robaxin robber robbery robbins robe robe- +de-chambre robert roberts robertson robeson robespierre robin robinia robinson +robitussin roble robot robotics robustness roc rocambole roccella roccellaceae +roccus rocephin rochambeau rochester rock rock'n'roll rock-and-roll rockabilly +rockchuck rockcress rockefeller rocker rockers rockery rocket rocketry rockfish +rockfoil rockford rockies rockiness rockingham rockrose rockslide rockweed +rockwell rococo rocroi rod rodent rodentia rodeo rodgers rodhos rodin rodolia +rodomontade roe roebling roebuck roentgen roentgenium roentgenogram +roentgenography roentgenoscope rofecoxib rogaine rogation rogers roget rogue +roguery roguishness rohypnol roi roisterer rolaids role roleplaying rolf roll +roll-on rollback roller roller-skater rollerblade rollerblader rollerblading +rolling rollmops rollo rollover rolodex roly-poly rolypoliness rom roma romaic +romaine roman romanal romance romanesque romani romania romanian romanism +romanoff romanov romans romansh romantic romanticisation romanticism romanticist +romanticization romany romberg rome romeo rommany rommel romneya romp romper +romulus ron rondeau rondel rondelet rondo roneo roneograph rontgen rood rood- +tree roof roofer roofing rooftop rooftree roofy rooibos rook rookery rookie room +roomer roomette roomful roomie roominess roommate rooms roomy roosevelt roost +rooster root rootage rooter rooting rootlet roots rootstalk rootstock rope +rope-a-dope rope-maker ropebark ropedancer ropemaker roper ropewalk ropewalker +ropeway rophy ropiness roping roquefort roquette roridula roridulaceae rorippa +rorqual rorschach rosa rosacea rosaceae rosales rosario rosary rose rose-root +roseau rosebay rosebud rosebush rosefish rosehip roselle rosellinia rosemaling +rosemary roseola rosette rosewood rosicrucian rosicrucianism rosidae rosilla +rosin rosiness rosinweed rosita rosmarinus ross rossbach rossetti rossini +rostand roster rostock rostov rostrum roswell rot rota rotarian rotary rotation +rotavirus rotc rote rotenone rotgut roth rothko rothschild rotifer rotifera +rotisserie rotl rotogravure rotor rottenness rottenstone rotter rotterdam +rotting rottweiler rotunda rotundity rotundness rouble roue rouge rougeberry +rough rough-and-tumble roughage roughcast roughleg roughneck roughness +roughrider roulade rouleau roulette roumania round roundabout roundedness +roundel roundelay rounder rounders roundhead roundhouse rounding roundness +roundsman roundtable roundup roundworm rous rouser rousing rousseau roustabout +rout route routemarch router routine roux rover roving row rowan rowanberry +rowboat rowdiness rowdy rowdyism rowel rower rowing rowlock royal royalism +royalist royalty roystonea rozelle rpa-abb rpm rtlt ru ruanda rub rub-a-dub +rubato rubber rubber-necking rubberneck rubbernecker rubbing rubbish rubble +rubdown rube rubefacient rubel rubella rubens rubeola rubia rubiaceae rubiales +rubicelle rubicon rubidium rubinstein ruble rubor rubric rubus ruby ruck +rucksack ruckus ruction rudapithecus rudbeckia rudd rudder rudderfish rudderpost +rudderstock ruddiness ruddle ruddles rudeness rudiment rudiments rudra rue +ruefulness ruf ruff ruffian ruffianism ruffle rug ruga rugby rugelach +ruggedisation ruggedization ruggedness ruggelach rugger rugulah ruhr ruin +ruination ruiner ruining rule ruler rulership ruling rum rum-blossom rumania +rumanian rumansh rumba rumble rumbling rumen rumex ruminant ruminantia +rumination ruminator rummage rummer rummy rumohra rumor rumormonger rumour +rumourmonger rump rumpelstiltskin rumpus rumrunner run run-in run-through run- +time run-up runabout runaway runch rundle rundown rundstedt rune rung runnel +runner runner-up runniness running runoff runt runtiness runup runway runyon +rupee rupert rupiah rupicapra rupicola ruptiliocarpon rupture rupturewort +ruralism ruralist rurality ruritania ruritanian rus ruscaceae ruscus ruse rush +rush-grass rushdie rusher rushing rushlight rushmore rusk ruskin russell russet +russia russian russula russulaceae rust rustbelt rustic rustication rusticism +rusticity rustiness rusting rustle rustler rustling rut ruta rutabaga rutaceae +ruth ruthenium rutherford rutherfordium ruthfulness ruthlessness rutile rutilus +rutland rutledge rv rwanda rwandan rya rydberg rye ryegrass rynchopidae rynchops +rypticus ryukyuan s s-shape s.t.p. s.u.v. s/n sa saale saame saami saarinen saba +sabah sabahan sabal sabaoth sabaton sabayon sabbat sabbatarian sabbath sabbatia +sabbatical sabbatum sabellian saber sabertooth sabicu sabin sabine sabinea sable +sabot sabotage saboteur sabra sabre sac sacagawea sacajawea saccade saccharase +saccharide saccharin saccharinity saccharomyces saccharomycetaceae saccharose +saccharum sacco saccule sacculus sacerdotalism saceur sachem sachet sachsen sack +sackbut sackcloth sackful sacking saclant sacque sacrament sacramento sacredness +sacrifice sacrificer sacrilege sacrilegiousness sacristan sacristy sacrum sadat +saddam saddhu saddle saddleback saddlebag saddlebill saddlebow saddlecloth +saddler saddlery sadducee sade sadhe sadhu sadism sadist sadleria sadness +sadomasochism sadomasochist saek safaqis safar safari safe safe-conduct safe- +deposit safebreaker safecracker safeguard safehold safekeeping safeness safety +safety-deposit safflower saffranine saffron safranin safranine sag saga +sagaciousness sagacity sagamore sage sagebrush sagina saginaw sagitta sagittaria +sagittariidae sagittarius sagittate-leaf sago saguaro sahaptin sahaptino sahara +saharan sahib sahuaro saida saiga saigon sail sailboat sailcloth sailfish +sailing sailing-race sailmaker sailor sailor's-choice sailplane sailplaning +saimiri sainfoin saint saint-bernard's-lily saint-john's-bread saint-mihiel +saint-saens sainthood saintliness saintpaulia saipan sajama sakartvelo sake +sakharov saki sakkara sakti saktism salaah salaam salaat salability salableness +salaciousness salacity salad salade saladin salafism salah salai salal +salamander salamandra salamandridae salami salary salat sale salem saleratus +salerno saleroom sales salesclerk salesgirl saleslady salesman salesmanship +salesperson salesroom saleswoman salian salicaceae salicales salicornia +salicylate salience saliency salient salientia salientian salim salina saline +salinger salinity salinometer salisbury salish salishan saliva salivation salix +salk sallet sallow sallowness sally salmacis salmagundi salmi salmo salmon +salmonberry salmonella salmonellosis salmonid salmonidae salmwood salol salome +salomon salon salonica salonika saloon salp salpa salpichroa salpidae +salpiglossis salpinctes salpingectomy salpingitis salpinx salsa salsify salsilla +salsola salt saltation saltbox saltbush saltcellar salter saltine saltiness +salting saltire saltpan saltpeter saltpetre saltshaker saltwater saltworks +saltwort salubriousness salubrity saluki salutation salutatorian salutatory +salute saluter salvador salvadora salvadoraceae salvadoran salvadorean +salvadorian salvage salvager salvation salve salvelinus salver salvia salvinia +salviniaceae salvinorin salvo salvor salwar salyut salzburg sam sama-veda saman +samanala samara samarang samarcand samaria samaritan samarium samarkand +samarskite samba sambar sambre sambuca sambucus sambur same samekh sameness +samhita sami samia samiel samisen samite samizdat samnite samoa samoan samolus +samosa samovar samoyed samoyede samoyedic sampan samphire sample sampler +sampling samsara samson samuel samurai sana sana'a sanaa sanatarium sanatorium +sanchez sanctification sanctimoniousness sanctimony sanction sanctitude sanctity +sanctuary sanctum sand sandal sandalwood sandarac sandarach sandbag sandbagger +sandbank sandbar sandberry sandblast sandblaster sandbox sandboy sandbur +sandburg sander sanderling sandfish sandfly sandglass sandgrouse sandhi +sandhopper sandiness sandlot sandman sandpaper sandpile sandpiper sandpit +sandril sands sandspur sandstone sandstorm sandwich sandwichman sandwort +saneness sanfoin sang sang-froid sangapenum sangaree sangay sanger sango sangoma +sangraal sangria sanguification sanguinaria sanguine sanguineness sanguinity +sanhedrin sanicle sanicula sanies sanitariness sanitarium sanitation +sanitisation sanitization sanity sannup sannyasi sannyasin sansevieria sanskrit +santa santalaceae santalales santalum santee santiago santims santolina santos +sanvitalia sanyasi saone sap saphar saphead sapidity sapidness sapience +sapindaceae sapindales sapindus sapir sapling sapodilla saponaria saponification +saponin sapota sapotaceae sapote sapper sapphire sapphirine sapphism sappho +sapporo sapraemia sapremia saprobe saprolegnia saprolegniales saprolite sapropel +saprophyte sapsago sapsucker sapwood saqqara saqqarah saquinavir saraband +saracen sarafem saragossa sarah sarajevo saran sarape sarasota sarasvati +saratoga saratov sarawak sarawakian sarazen sarcasm sarcenet sarcobatus +sarcocephalus sarcochilus sarcocystidean sarcocystieian sarcocystis sarcodes +sarcodina sarcodine sarcodinian sarcoidosis sarcolemma sarcoma sarcomere +sarcophaga sarcophagus sarcophilus sarcoplasm sarcoptes sarcoptid sarcoptidae +sarcorhamphus sarcoscyphaceae sarcosine sarcosomataceae sarcosome sarcosporidia +sarcosporidian sarcostemma sarcostyle sard sarda sardegna sardina sardine +sardinia sardinian sardinops sardis sardius sardonyx saree sargasso sargassum +sargent sari sarin sarnoff sarong saroyan sarpanitu sarpedon sarracenia +sarraceniaceae sarraceniales sars sarsaparilla sarsenet sartor sartorius sartre +sas sash sashay sashimi saskatchewan saskatoon sasquatch sass sassaby sassafras +sassenach sassing sat satan satang satanism satanist satanophobia satchel +satchmo sateen satellite satiation satie satiety satin satinet satinette +satinleaf satinpod satinwood satire satirist satisfaction satisfactoriness +satisfier satori satrap satsuma saturation saturday satureia satureja saturn +saturnalia saturnia saturniid saturniidae saturnism satyagraha satyr satyriasis +satyridae sauce sauce-alone sauceboat saucepan saucepot saucer sauciness saudi +sauerbraten sauerkraut sauk saul sauna saunter saunterer saurel sauria saurian +saurischia saurischian sauromalus sauropod sauropoda sauropodomorpha +sauropterygia saurosuchus saururaceae saururus saury sausage saussure saussurea +saute sauteing sauterne sauternes savage savageness savagery savanna savannah +savant savara savarin save save-all saveloy saver savin saving savings savior +saviour savitar savoir-faire savonarola savor savoriness savoring savorlessness +savory savour savouring savourlessness savoury savoy savoyard savvy saw sawan +sawbill sawbones sawbuck sawdust sawfish sawfly sawhorse sawm sawmill sawpit +sawtooth sawwort sawyer sax saxe saxe-coburg-gotha saxe-gothea saxegothea +saxhorn saxicola saxifraga saxifragaceae saxifrage saxist saxitoxin saxon saxony +saxophone saxophonist say say-so sayanci sayda sayeret sayers saying sayonara +sayornis sazerac sb sba sbe sbw sc scab scabbard scabicide scabies scabiosa +scabious scablands scad scads scaffold scaffolding scag scalability scalage +scalar scalawag scald scale scalenus scaler scaliness scaling scallion scallop +scallopine scallopini scallywag scalp scalpel scalper scam scammer scammony +scammonyroot scamp scamper scampi scampo scan scandal scandalisation +scandalization scandalmonger scandalmongering scandalousness scandentia +scandinavia scandinavian scandium scanner scanning scansion scantiness scantling +scantness scanty scape scapegoat scapegrace scaphiopus scaphocephaly scaphopod +scaphopoda scaphosepalum scapula scapular scapulary scar scarab scarabaean +scarabaeid scarabaeidae scarabaeus scaramouch scaramouche scarceness scarcity +scardinius scare scarecrow scaremonger scarer scarf scarface scarfpin scaridae +scarlatina scarlet scarp scartella scat scathe scatology scatophagy scatter +scatterbrain scattergood scattergun scattering scaup scauper scavenger scd +sceliphron sceloglaux sceloporus scenario scenarist scene scene-stealer scenery +sceneshifter scent scepter sceptic scepticism sceptre scet schadenfreude +schaffneria schedule scheduler scheduling scheele scheelite schefflera scheldt +schema schematic schematisation schematization scheme schemer schemozzle +schenectady scheol scherzo scheuchzeriaceae schiaparelli schiller schilling +schinus schipperke schism schist schistorrhachis schistosoma schistosomatidae +schistosome schistosomiasis schizachyrium schizaea schizaeaceae schizanthus +schizocarp schizogony schizoid schizomycetes schizopetalon schizophragma +schizophrenia schizophrenic schizophyceae schizophyta schizopoda +schizosaccharomyces schizosaccharomycetaceae schizothymia schleiden schlemiel +schlep schlepper schlesien schlesinger schliemann schlimazel schlock +schlockmeister schlumbergera schmaltz schmalz schmear schmeer schmegegge schmidt +schmo schmoose schmooze schmoozer schmuck schnabel schnapps schnaps schnauzer +schnecken schnittlaugh schnitzel schnook schnorchel schnorkel schnorrer schnoz +schnozzle schoenberg scholar scholarship scholastic scholasticism scholia +scholiast scholium schomburgkia schonbein schonberg school schoolbag schoolbook +schoolboy schoolchild schoolcraft schooldays schoolfellow schoolfriend +schoolgirl schoolhouse schooling schoolma'am schoolman schoolmarm schoolmaster +schoolmate schoolmistress schoolroom schoolteacher schooltime schoolwork +schoolyard schooner schopenhauer schorl schottische schrod schrodinger schtick +schtickl schtik schtikl schubert schulz schumann schumann-heink schumpeter +schutzstaffel schwa schwann schwarzwald schweitzer schweiz sciadopityaceae +sciadopitys sciaena sciaenid sciaenidae sciaenops sciara sciarid sciaridae +sciatica scid science scientist scientology scilla scimitar scincella scincid +scincidae scincus scindapsus scintilla scintillation sciolism sciolist scion +scipio scirpus scission scissors scissortail scissure sciuridae sciuromorpha +sciurus sclaff sclera scleranthus scleredema sclerite scleritis scleroderma +sclerodermataceae sclerodermatales sclerometer scleropages scleroparei +scleroprotein sclerosis sclerotinia sclerotiniaceae sclerotium sclerotomy sclk +scnt scoff scoffer scoffing scofflaw scoke scold scolder scolding scolion +scoliosis scollop scolopacidae scolopax scolopendrium scolymus scolytidae +scolytus scomber scomberesocidae scomberesox scomberomorus scombresocidae +scombresox scombridae scombroid scombroidea sconce scone scoop scoopful scooter +scope scopes scophthalmus scopolamine scopolia scorbutus scorch scorcher score +scoreboard scorecard scorekeeper scorer scores scoria scoring scorn scorner +scorpaena scorpaenid scorpaenidae scorpaenoid scorpaenoidea scorper scorpio +scorpion scorpionfish scorpionida scorpionweed scorpius scorsese scorzonera scot +scotch scotchman scotchwoman scoter scotland scotoma scots scotsman scotswoman +scott scottie scottish scoundrel scour scourer scourge scourger scouring scours +scouse scouser scout scouter scouting scoutmaster scow scowl scpo scrabble scrag +scramble scrambler scranton scrap scrapbook scrape scraper scrapheap scrapie +scraping scrapper scrappiness scrapple scraps scratch scratcher scratchiness +scratching scratchpad scrawl scrawler scrawniness scream screamer screaming +scree screech screecher screeching screed screen screener screening screenland +screenplay screenwriter screw screwball screwballer screwbean screwdriver +screwing screwtop screwup scriabin scribble scribbler scribe scriber scrim +scrimmage scrimshanker scrimshaw scrip scripps script scriptorium scripture +scriptwriter scrivener scrod scrofula scroll scrooge scrophularia +scrophulariaceae scrophulariales scrotum scrounger scrub scrub-bird scrubber +scrubbiness scrubbing scrubbird scrubland scrubs scruff scrum scrummage scrumpy +scrunch scruple scruples scrupulousness scrutineer scrutiniser scrutinizer +scrutiny scsi scuba scud scudding scuff scuffer scuffle scull sculler scullery +sculling scullion sculpin sculptor sculptress sculpture sculpturer scum scumble +scunner scup scupper scuppernong scurf scurrility scurry scurvy scut scutcheon +scute scutellaria scutigera scutigerella scutigeridae scuttle scuttlebutt +scyliorhinidae scylla scyphozoa scyphozoan scyphus scythe scythia scythian sd se +sea sea-coast sea-duty sea-ear sea-poose sea-purse sea-puss sea-rocket seabag +seabed seabird seaboard seaborg seaborgium seacoast seafarer seafaring seafood +seafowl seafront seagrass seagull seahorse seal sealant sealer sealing sealskin +sealyham seam seaman seamanship seamount seamster seamstress seanad seance +seaplane seaport seaquake search searcher searchlight searobin seascape seashell +seashore seasickness seaside seasnail season seasonableness seasonal seasoner +seasoning seat seatbelt seating seats seattle seawall seaward seawater seaway +seaweed seaworthiness seb sebastiana sebastodes sebastopol sebe seborrhea sebs +sebum sec secale secant secateurs secernment secession secessionism secessionist +sechuana seckel seclusion secobarbital seconal second second-in-command second- +rater second-stringer secondary seconder secondment secondo secotiaceae +secotiales secpar secrecy secret secretaire secretariat secretariate secretary +secretaryship secretase secreter secretin secretion secretiveness secretor sect +sectarian sectarianism sectarist sectary section sectional sectionalisation +sectionalism sectionalization sector sectral secular secularisation secularism +secularist secularization secundigravida secureness securer security sedalia +sedan sedateness sedation sedative sedative-hypnotic seder sedge sediment +sedimentation sedition sedna seducer seduction seductress sedulity sedulousness +sedum see seed seedbed seedcake seedcase seeder seediness seedling seedman +seedpod seedsman seedtime seeger seeing seek seeker seeking seeland seemliness +seepage seer seersucker seesaw segal segment segmentation segno segovia +segregate segregation segregationism segregationist segregator segue segway +seiche seidel seigneur seigneury seignior seigniorage seigniory seine seism +seismogram seismograph seismography seismologist seismology seismosaur +seismosaurus seiurus seizer seizing seizure sekhet selachian selachii +selaginella selaginellaceae selaginellales selar selcraig selection selectivity +selectman selector selectwoman selenarctos selene selenicereus selenipedium +selenium selenolatry selenology seles seleucus self self-abasement self- +abnegation self-absorption self-abuse self-accusation self-aggrandisement self- +aggrandizement self-analysis self-annihilation self-assertion self-assertiveness +self-assurance self-awareness self-centeredness self-command self-complacency +self-concern self-condemnation self-confidence self-consciousness self- +contemplation self-contradiction self-control self-criticism self-cultivation +self-deceit self-deception self-defence self-defense self-denial self- +depreciation self-destruction self-determination self-digestion self-direction +self-discipline self-discovery self-disgust self-distrust self-doubt self-drive +self-education self-effacement self-esteem self-examination self-expression +self-feeder self-fertilisation self-fertilization self-flagellation self- +fulfillment self-government self-gratification self-hatred self-heal self-help +self-hypnosis self-importance self-improvement self-incrimination self- +inductance self-induction self-indulgence self-insurance self-interest self- +justification self-knowledge self-loader self-love self-mortification self- +organisation self-organization self-pity self-pollination self-portrait self- +possession self-praise self-preservation self-pride self-protection self- +punishment self-realisation self-realization self-reformation self-regard self- +reliance self-renewal self-renunciation self-reproach self-reproof self-respect +self-restraint self-rule self-sacrifice self-satisfaction self-seeker self- +seeking self-service self-starter self-stimulation self-sufficiency self- +suggestion self-torment self-torture self-will self-worship self-worth +selfishness selflessness selfsameness seljuk selkirk selkup sell seller sellers +selling selloff sellotape sellout selma selsyn seltzer selva selvage selvedge +selznick semanticist semantics semaphore semarang semasiology semblance semen +semester semi semi-abstraction semi-climber semiautomatic semibreve +semicentenary semicentennial semicircle semicolon semicoma semiconductor +semiconsciousness semidarkness semidesert semidiameter semiepiphyte semifinal +semifinalist semifluidity semigloss semimonthly seminar seminarian seminarist +seminary seminole seminoma semiology semiotician semiotics semiparasite semipro +semiprofessional semiquaver semite semitic semitone semitrailer semitrance +semitransparency semitropics semivowel semiweekly semolina sempatch sempiternity +sempstress sen senate senator senatorship send-off sendee sender sending sendup +sene seneca senecio senefelder senega senegal senegalese senescence seneschal +senhor senility senior seniority seniti senna sennacherib sennenhunde sennett +sennit senor senora senorita sens sensation sensationalism sensationalist sense +senselessness sensibility sensibleness sensing sensitisation sensitiser +sensitising sensitive sensitiveness sensitivity sensitization sensitizer +sensitizing sensitometer sensor sensorium sensualism sensualist sensuality +sensualness sensuousness sent sente sentence sentience sentiency sentiment +sentimentalisation sentimentalism sentimentalist sentimentality +sentimentalization sentinel sentry seoul sep sepal separability separate +separateness separation separationism separationist separatism separatist +separator separatrix sephardi sepia sepiidae sepiolite seppuku sepsis sept +septation septectomy september septenary septet septette septicaemia septicemia +septillion septobasidiaceae septobasidium septuagenarian septuagesima septuagint +septum sepulcher sepulchre sepulture sequel sequela sequella sequenator sequence +sequencer sequestration sequin sequoia sequoiadendron sequoya sequoyah seraglio +serail serape seraph serax serb serbia serbian serbo-croat serbo-croatian +serdica serenade serendipity sereness serengeti serenity serenoa serer serf +serfdom serfhood serge sergeant sergeant-at-law serger serial serialisation +serialism serialization sericocarpus sericterium serictery sericulture +sericulturist seriema series serif serigraph serigraphy serin serine serinus +seriocomedy seriola serious-mindedness seriousness seriph seriphidium seriphus +serjeant serjeant-at-arms serjeant-at-law serkin sermon sermoniser sermonizer +serologist serology serosa serotine serotonin serow serpasil serpens serpent +serpent-worship serpentes serra serranid serranidae serranus serrasalmus +serratia serration serratula serratus sertraline sertularia sertularian serum +serval servant serve server service serviceability serviceableness serviceberry +serviceman services servicing serviette servility serving servitor servitude +servo servomechanism servosystem serzone sesame sesamoid sesamum sesbania seseli +sesotho sesquicentennial sesquipedalia sesquipedalian sesquipedality sess +session sessions sestet set set-back set-to seta setaria setback seth setline +setoff seton setophaga setscrew setswana sett settee setter setterwort setting +settle settlement settler settling settlings settlor setubal setup seurat +sevastopol seven seven-spot seven-up sevener sevens sevensome seventeen +seventeenth seventh seventies seventieth seventy seventy-eight severalty +severance severeness severing severity severn sevilla seville sewage seward +sewellel sewer sewerage sewing sex sexagenarian sexcapade sexiness sexism sexist +sexlessness sexploitation sexpot sext sextant sextet sextette sextillion sexton +sextuplet sexuality seychelles seychellois seyhan seymour sezession sfax +sforzando sg sgml sgraffito sha'ban shaaban shabbiness shabu shabuoth shack +shackle shad shad-flower shadberry shadblow shadbush shaddock shade shades +shadflower shadfly shadiness shading shadow shadowboxing shadower shadowgraph +shadowiness shadowing shaft shag shagbark shagginess shaggymane shah shahadah +shahaptian shaheed shahn shaitan shake shake-up shakedown shakeout shaker +shakers shakespeare shakespearean shakespearian shakeup shakiness shaking shako +shakspere shakti shaktism shaktist shale shall-flower shallon shallot shallow +shallowness shallu shalwar sham shaman shamanism shamash shamble shambles +shambling shame shamefacedness shamefulness shamelessness shamisen shammer +shammy shampoo shamrock shamus shan shandy shandygaff shang shanghai shanghaier +shangri-la shank shankar shannon shanny shantung shanty shantytown shape shape- +up shapelessness shapeliness shaper shaping shapley shard share share-out +sharecropper shareholder shareholding shareowner sharer shareware shari sharia +shariah sharing shark sharkskin sharksucker sharp sharp-sightedness sharpener +sharper sharpie sharpness sharpshooter sharpy shasta shastan shattering shave +shaver shavian shaving shavous shavuot shavuoth shaw shawl shawm shawn shawnee +shawny shawwal shay shaytan she-devil she-goat she-oak sheaf shear shearer +shearing shears shearwater sheatfish sheath sheathing shebang shebat shebeen +shed shedder shedding sheen sheeny sheep sheep-tick sheepcote sheepdog sheepfold +sheepherder sheepishness sheepman sheeprun sheepshank sheepshead sheepshearing +sheepskin sheepwalk sheesha sheet sheeting sheetrock sheffield shegetz sheik +sheika sheikdom sheikh sheikha sheikhdom shekel shekels sheldrake shelduck shelf +shelfful shell shell-flower shellac shellbark sheller shelley shellfire +shellfish shellflower shelling shelter shelterbelt shelver shem shema shemozzle +shen-pao shenanigan shenyang shepard shepherd shepherdess sheraton sherbert +sherbet sherd sheridan sheriff sherlock sherman sherpa sherrington sherry +sherwood shetland shevat shevchenko shf shi'ite shia shiah shiatsu shibah +shibboleth shield shielder shielding shift shifter shiftiness shifting +shiftlessness shigella shigellosis shih-tzu shiism shiitake shiite shikoku +shiksa shikse shill shillalah shillelagh shilling shillyshally shiloh shim +shimmer shimmy shin shina shinbone shindig shindy shine shiner shingle shingler +shingles shingling shingon shininess shining shinleaf shinney shinny shinpad +shinplaster shinto shintoism shintoist ship ship-breaker shipbuilder +shipbuilding shipload shipmate shipment shipowner shipper shipping shipside +shipway shipworm shipwreck shipwright shipyard shiraz shire shirer shirker +shirking shirring shirt shirtdress shirtfront shirting shirtlifter shirtmaker +shirtsleeve shirtsleeves shirttail shirtwaist shirtwaister shisha shit shite +shithead shitlist shittah shitter shittim shittimwood shitting shitwork shiv +shiva shivah shivaism shivaist shivaree shiver shivering shlemiel shlep shlepper +shlimazel shlock shlockmeister shmaltz shmear shmegegge shmo shmooze shmuck +shnook shnorrer shoal shoat shock shocker shockley shoddiness shoddy shoe shoe- +shop shoebill shoebird shoeblack shoebox shoeful shoehorn shoelace shoemaker +shoemaking shoes shoeshine shoestring shoetree shofar shogi shogun shogunate +shoji shona shoo-in shoofly shook shoot shoot-'em-up shoot-down shooter shooting +shootout shop shopaholic shopfront shophar shopkeeper shoplifter shoplifting +shopper shopping shopwalker shopwindow shore shorea shorebird shoreline shoring +short short-grass short-stop shortage shortbread shortcake shortcoming shortcut +shortener shortening shortfall shortgrass shorthand shorthorn shortia shortlist +shortness shorts shortsightedness shortstop shoshone shoshonean shoshoni +shoshonian shostakovich shot shote shotgun shoulder shout shouter shouting shove +shove-ha'penny shove-halfpenny shovel shovelboard shoveler shovelful shovelhead +shoveller shover show show-off show-stopper showboat showcase showdown shower +showerhead showgirl showiness showing showjumping showman showmanship showpiece +showplace showroom showstopper showtime shrapnel shred shredder shreveport shrew +shrewdness shrewishness shrewmouse shriek shrieking shrift shrike shrilling +shrillness shrimp shrimp-fish shrimper shrimpfish shrine shrink shrink-wrap +shrinkage shrinking shroud shrovetide shrub shrubbery shrublet shrug shtick +shtickl shtik shtikl shtup shua shuck shucks shudder shudra shuffle shuffleboard +shuffler shuffling shufti shumac shunning shunt shunter shut-in shutdown shute +shuteye shutout shutter shutterbug shutting shuttle shuttlecock shwa shy shylock +shyness shyster si sial sialadenitis sialia sialidae sialis sialolith siam +siamang siamese sian sib sibelius siberia siberian sibilant sibilation sibine +sibling sibyl siccative sichuan sicilia sicilian sicily sick sickbag sickbay +sickbed sickeningness sickle sicklepod sickness sickroom sida sidalcea +siddhartha siddons side side-glance side-look side-wheeler side-whiskers sidebar +sideboard sideburn sidecar sidekick sidelight sideline siderite sideritis +sideroblast siderocyte sideropenia siderophilin siderosis sidesaddle sideshow +sideslip sidesman sidesplitter sidestep sidestroke sideswipe sidetrack sidewalk +sidewall sidewinder siding sidney sidon sids siege siegfried siemens sienna +sierra siesta sieve sif sifter sifting sigeh sigh sight sightedness sighting +sightlessness sightreader sights sightseeing sightseer sigint sigma sigmodon +sigmoidectomy sigmoidoscope sigmoidoscopy sign signage signal signal-to-noise +signal/noise signaler signaling signalisation signalization signaller signalman +signatory signature signboard signer signet significance signification signified +signifier signing signior signor signora signore signorina signory signpost +sigurd sigyn sihasapa sika sikh sikhism sikkim sikorsky silage sild sildenafil +silence silencer silene silents silenus silesia silex silhouette silica silicate +silicide silicle silicon silicone silicosis siliqua silique silk silkgrass +silkiness silks silkscreen silkweed silkwood silkworm sill sillabub sillaginidae +sillago silliness sills silly silo siloxane silphium silt siltstone silurian +silurid siluridae siluriformes silurus silva silvan silvanus silver silver-bush +silver-lace silver-tip silver-worker silverback silverberry silverbush +silverfish silverpoint silverrod silverside silversides silversmith silverspot +silverstein silversword silvertip silvervine silverware silverweed silverwork +silverworker silvex silvia silviculture silybum sima simal simarouba +simaroubaceae simazine simenon simeon simian similarity simile similitude simmer +simmering simmpleness simnel simoleons simon simoniz simony simoom simoon simper +simperer simple simpleness simpleton simplicity simplification simplism simpson +simulacrum simulation simulator simulcast simuliidae simulium simultaneity +simultaneousness simvastatin sin sinai sinanthropus sinapis sinapism sinatra +sinbad sincerity sinciput sinclair sind sindhi sine sinecure sinequan sinew +sinfulness sing-kwa singalong singan singapore singaporean singe singer +singhalese singing single single-foot single-leaf single-mindedness single- +spacing singleness singles singlestick singlet singleton singsong singular +singularity singultus sinhala sinhalese sinistrality sinitic sink sinker +sinkhole sinkiang sinking sinlessness sinner sinning sinningia sino-tibetan +sinologist sinology sinoper sinopia sinopis sinornis sinuosity sinuousness sinus +sinusitis sinusoid sion siouan sioux sip sipah-e-sahaba siphon siphonaptera +siphonophora siphonophore sipper sipuncula sipunculid siqueiros sir sirach +siracusa siraj-ud-daula sirc sirdar sire siren sirenia sirenian sirenidae +siriasis siris sirius sirloin sirocco sirrah sirup sis sisal sise sisham siskin +sison sissiness sissoo sissu sissy sister sister-in-law sisterhood sistership +sistrurus sisyphus sisyridae sisyrinchium sit-down sit-in sit-up sita sitar +sitcom site sitka sitophylus sitotroga sitsang sitta sitter sittidae sitting +situation sitwell sium siva sivaism sivan sivapithecus siwan six six-footer six- +gun six-pack six-shooter six-spot sixer sixpack sixpence sixsome sixteen +sixteenth sixth sixth-former sixties sixtieth sixty sixty-fourth sixty-nine size +sizeableness sizing sizzle sjaelland sk-ampicillin skag skagerak skagerrak +skagit skagway skanda skank skate skateboard skateboarder skateboarding skater +skating skaw skeat skedaddle skeet skeg skein skeleton skep skepful skeptic +skepticism sketch sketchbook sketcher sketchiness skewer skewness ski ski-plane +skiagram skiagraph skiagraphy skibob skid skidder skidpan skier skiff skiffle +skiing skill skillet skilletfish skillfulness skilly skim skimmer skimming skin +skin-dive skin-diver skincare skinflint skinful skinhead skinheads skink skinner +skinnerian skinniness skinny skinny-dip skinny-dipper skip skipjack skipper +skirl skirmish skirmisher skirret skirt skit skittishness skittle skittles +skivvies skivvy skopje skoplje skua skuld skulduggery skulker skulking skull +skullcap skullduggery skunk skunk-weed skunkbush skunkweed sky sky-blue skybox +skycap skydiver skydiving skyhook skylab skylark skylight skyline skyrocket +skysail skyscraper skywalk skyway skywriting sl slab slack slackening slacker +slacking slackness slacks slag slagheap slain slalom slam slammer slander +slanderer slang slanginess slanguage slant slant-eye slap slapper slapshot +slapstick slash slasher slask slat slate slater slating slattern slatternliness +slaughter slaughterer slaughterhouse slav slave slave-maker slaveholder +slaveholding slaver slavery slavey slavic slavonic slaw slayer slaying sle +sleaze sleaziness sled sledder sledding sledge sledgehammer sleekness sleep +sleep-learning sleeper sleepiness sleeping sleeplessness sleepover sleepwalker +sleepwalking sleepwear sleepyhead sleet sleeve sleigh sleight slenderness sleuth +sleuthhound sleuthing slew slews slezsko slice slicer slicing slick slicker +slickness slide slider slideway slight slightness slime sliminess slimness sling +slingback slinger slinging slingshot slip slip-on slip-up slipcover slipknot +slipover slippage slipper slipperiness slipperwort slipstick slipstream slipway +slit sliver slivovitz slo-bid sloanea slob slobber slobberer sloe slogan +sloganeer sloganeering slogger sloop slop slop-seller slope sloppiness slops +slopseller slopshop slot sloth slothfulness slouch sloucher slough sloughing +slovak slovakia sloven slovene slovenia slovenian slovenija slovenliness slow- +wittedness slowcoach slowdown slowing slowness slowpoke slowworm sls slub sludge +slug slugabed slugfest sluggard slugger sluggishness sluice sluicegate sluiceway +slum slumber slumberer slumgullion slump slur slurry slush slut sluttishness +slyboots slyness sm smack smacker smacking small small-arm smalley smallholder +smallholding smallmouth smallness smallpox smaltite smarm smarminess smart +smarta smarting smartness smash smash-up smasher smashing smattering smear +smegma smell smelling smelt smelter smeltery smetana smew smidge smidgen +smidgeon smidgin smilacaceae smilax smile smiledon smiler smiley smiling smilo +smirch smirk smirker smitane smith smithereens smithy smock smocking smog +smogginess smoke smokehouse smoker smokescreen smokestack smoking smolder +smolensk smollett smooch smooching smooth smoothbark smoothbore smoother +smoothhound smoothie smoothness smoothy smorgasbord smother smotherer smoulder +smsgt smudge smuggler smuggling smugness smut smuts smuttiness smyrna smyrnium +sn snack snacker snaffle snafu snag snail snail-flower snailfish snailflower +snake snake-fish snake-head snakeberry snakebird snakebite snakeblenny snakefish +snakefly snakehead snakeroot snakeweed snakewood snap snapdragon snapline +snapper snappishness snapshot snare snarer snarl snarl-up snatch snatcher snead +sneak sneaker sneakiness sneer sneerer sneeze sneezer sneezeweed sneezewort +sneezing snellen snick snicker snickersnee sniff sniffer sniffle sniffler +snifter snigger snip snipe snipefish sniper snippet snipping snips snit snitch +snitcher snivel sniveler sniveling sniveller sno-cat snob snobbery snobbishness +snobbism snoek snogging snood snook snooker snoop snooper snoopiness snoopy +snoot snootiness snooze snore snorer snoring snorkel snorkeling snort snorter +snorting snot snout snow snow-blindness snow-in-summer snow-on-the-mountain +snowball snowbank snowbell snowberry snowbird snowblindness snowboard +snowboarder snowboarding snowcap snowdrift snowdrop snowfall snowfield snowflake +snowman snowmobile snowplough snowplow snowshoe snowstorm snowsuit snp snub +snuff snuff-color snuff-colour snuffbox snuffer snuffers snuffle snuffler snug +snuggery snuggle snuggling snugness so so-and-so soak soakage soaker soaking +soap soap-rock soap-weed soapberry soapbox soapfish soapiness soaprock soapstone +soapsuds soapweed soapwort soar soaring soave sob sobbing soberness sobersides +sobralia sobriety sobriquet socage soccer sociability sociable sociableness +social socialisation socialiser socialising socialism socialist socialite +sociality socialization socializer socializing society socinian socinus +sociobiologist sociobiology sociolinguist sociolinguistics sociologist sociology +sociometry sociopath sock socket sockeye socle socrates sod soda sodalist +sodalite sodality sodbuster soddy sodium sodoku sodom sodomist sodomite sodomy +sofa soffit sofia soft-cover soft-shoe softback softball softener softening +softheartedness softie softness software softwood softy sogginess soh soho soil +soiling soilure soiree soissons soixante-neuf soja sojourn sojourner sokoro sol +solace solacement solan solanaceae solandra solanopteris solanum solarisation +solarium solarization solder solderer soldering soldier soldier-fish soldierfish +soldiering soldiership soldiery sole solea solecism soledad soleidae soleirolia +solemness solemnisation solemnity solemnization solenichthyes solenidae +solenogaster solenogastres solenoid solenopsis solenostemon solent soleus solfa +solfege solfeggio solferino solicitation solicitor solicitorship solicitousness +solicitude solid solidago solidarity solidification solidifying solidity +solidness solidus soliloquy solingen solipsism solitaire solitariness solitary +soliton solitude solitudinarian solleret solmisation solmization solo soloist +solomon solomon's-seal solomons solon solresol solstice solubility solubleness +solute solution solvability solvate solvation solvay solvency solvent solver +solving solzhenitsyn som soma somaesthesia somaesthesis somali somalia somalian +soman somataesthesis somateria somatesthesia somatosense somatotrophin +somatotropin somatotype somberness sombreness sombrero somebody someone +somersault somersaulting somerset somesthesia somesthesis somewhere somite somme +sommelier somnambulation somnambulism somnambulist somniloquism somniloquist +somniloquy somnolence somrai son son-in-law sonant sonar sonata sonatina sonchus +sondheim sone song songbird songbook songfulness songhai songster songstress +songwriter sonnet sonneteer sonny sonogram sonograph sonography sonometer sonora +sonority sonorousness sontag soochong sooner soot sooth soothsayer soothsaying +sootiness sop soph sophism sophist sophisticate sophistication sophistry +sophocles sophomore sophonias sophora sopor soporific soprano sops sorb sorbate +sorbent sorbet sorbian sorbonne sorbus sorcerer sorceress sorcery sordidness +sordino sore sorehead soreness sorensen sorex sorgho sorghum sorgo soricidae +sorority sorption sorrel sorriness sorrow sorrower sorrowfulness sort sorter +sortie sorting sortition sorus sos sot soteriology sothis sotho sottishness sou +sou'-east sou'-sou'-east sou'-sou'-west sou'-west sou'easter sou'wester souari +soubise soubrette soubriquet souchong soudan souffle soufflot souk soul soul- +searching soulfulness sound soundboard soundbox sounder sounding soundlessness +soundman soundness soundtrack soup soup-fin soup-strainer soupcon soupfin +soupiness soupspoon sour sourball source sourdine sourdough souring sourness +sourpuss soursop sourwood sousa sousaphone souse sousing souslik sousse soutache +soutane south southeast southeaster southeastward souther southerly southerner +southernism southernness southernwood southey southland southpaw southward +southwest southwester southwestern southwestward soutine souvenir souvlaki +souvlakia sovereign sovereignty soviet sovietism soviets sow sowbane sowbelly +sowbread sower soweto soy soya soybean soymilk spa space space-time spacecraft +spacefaring spaceflight spaceman spaceship spacesuit spacewalker spacing +spaciousness spackle spade spadefish spadefoot spadeful spadework spadix +spaghetti spaghettini spain spalacidae spalax spall spallanzani spallation spam +spammer span spandau spandex spandrel spandril spangle spaniard spaniel spanish +spank spanker spanking spanner spar sparaxis spare spareness sparer sparerib +spareribs sparganiaceae sparganium sparge sparid sparidae spark sparker sparkle +sparkleberry sparkler sparkling sparling sparmannia sparring sparrow sparseness +sparsity sparta spartan spartina spartium spasm spasmolysis spasmolytic spassky +spastic spasticity spat spatangoida spatchcock spate spathe spathiphyllum +spatiality spatter spatterdock spattering spatula spavin spawl spawn spawner +spaying speakeasy speaker speakerphone speakership speaking spear spear-point +spearfish spearhead spearmint spearpoint spec special specialisation specialiser +specialism specialist speciality specialization specializer specialness +specialty speciation specie species specific specification specificity specifier +specimen speciousness speck speckle specs spectacle spectacles spectacular +spectator specter spectinomycin spectre spectrogram spectrograph spectrometer +spectrometry spectrophotometer spectroscope spectroscopy spectrum speculation +speculativeness speculator speculum speech speechifier speechlessness +speechmaker speechmaking speechwriter speed speed-reading speedboat speeder +speediness speeding speedometer speedskater speedup speedway speedwell speer +speke spelaeologist spelaeology speleologist speleology spell spell-checker +spellbinder spelldown speller spelling spelt spelter spelunker spencer spend-all +spender spending spendthrift spengler spenser spergula spergularia sperm +spermaceti spermatid spermatocele spermatocide spermatocyte spermatogenesis +spermatophyta spermatophyte spermatozoan spermatozoid spermatozoon spermicide +spermophile spermophilus sperry spewer spf sphacele sphacelotheca sphacelus +sphaeralcea sphaeriaceae sphaeriales sphaerobolaceae sphaerocarpaceae +sphaerocarpales sphaerocarpos sphaerocarpus sphagnales sphagnum sphalerite +sphecidae sphecius sphecoid sphecoidea sphecotheres sphenion spheniscidae +sphenisciformes spheniscus sphenodon sphenoid sphenopsida sphere sphericalness +sphericity spherocyte spheroid spherometer spherule sphincter sphingid +sphingidae sphinx sphygmomanometer sphyraena sphyraenidae sphyrapicus sphyrna +sphyrnidae spic spica spiccato spice spiceberry spicebush spicemill spicery +spiciness spick spicule spiculum spider spiderflower spiderwort spiegel +spiegeleisen spiel spielberg spiff spigot spik spike spikelet spikemoss +spikenard spile spill spillage spillane spiller spillikin spillikins spillover +spillway spilogale spin spin-off spinach spinacia spinal spindle spindleberry +spindlelegs spindleshanks spindrift spine spinel spinelessness spinet spininess +spinmeister spinnability spinnaker spinnbarkeit spinner spinney spinning spinoza +spinster spinsterhood spinus spiracle spiraea spiral spirant spiranthes spire +spirea spirilla spirillaceae spirillum spirit spiritedness spiritism +spiritlessness spirits spiritual spiritualisation spiritualism spiritualist +spirituality spiritualization spiritualty spirochaeta spirochaetaceae +spirochaetales spirochaete spirochete spirodela spirogram spirograph spirogyra +spirometer spirometry spironolactone spirt spirula spirulidae spit spitball +spite spitefulness spitfire spitsbergen spitter spitting spittle spittlebug +spittoon spitz spitzbergen spiv spizella splash splash-guard splashboard +splashdown splasher splashiness splashing splat splatter splattering splay +splayfoot spleen spleenwort splendor splendour splenectomy splenitis splenius +splenomegaly splice splicer splicing spliff spline splint splinter splintering +splinters split split-pea splitsaw splitsville splitter splitworm splodge +splotch splurge splutter spock spode spodoptera spodumene spoil spoilable +spoilage spoilation spoiler spoiling spoilsport spokane spoke spokeshave +spokesman spokesperson spokeswoman spoliation spondee spondias spondylarthritis +spondylitis spondylolisthesis sponge spongefly sponger spongillafly sponginess +spongioblast spongioblastoma sponsor sponsorship spontaneity spontaneousness +spoof spook spool spoon spoonbill spoondrift spoonerism spoonfeeding spoonflower +spoonful spoor sporangiophore sporangium sporanox spore spork sporobolus +sporocarp sporophore sporophyl sporophyll sporophyte sporotrichosis sporozoa +sporozoan sporozoite sporran sport sportfishing sportiveness sportscast +sportscaster sportsman sportsmanship sportswear sportswoman sportswriter +sporulation spot spot-weld spot-welder spot-welding spotlessness spotlight spots +spotsylvania spotter spotting spouse spout spouter sprachgefuhl sprag spraguea +sprain sprat sprawl sprawler sprawling spray sprayer spraying spread spreader +spreadhead spreading spreadsheet sprechgesang sprechstimme spree sprig sprigger +sprightliness sprigtail spring spring-cleaning springboard springbok springbuck +springer springfield springiness springtail springtide springtime sprinkle +sprinkler sprinkles sprinkling sprint sprinter sprit sprite sprites spritsail +spritz spritzer sprocket sprog sprout sprouting spruce spruceness sprue spud +spume spunk spur spurge spuriousness spurner spurring spurt sputnik sputter +sputtering sputum spy spyeria spyglass spyhole spying spymaster spyware squab +squabble squabbler squad squadron squalidae squalidness squall squalor squalus +squama squamata squamule squanderer squandering squandermania square square- +bashing square-rigger squareness squaretail squark squash squat squatina +squatinidae squatness squatter squattiness squatting squaw squaw-bush squawbush +squawk squawker squawroot squeak squeaker squeal squealer squeamishness squeegee +squeezability squeeze squeezer squeezing squelch squelcher squib squid squiggle +squill squilla squillidae squinch squint squint-eye squinter squire squirearchy +squirm squirmer squirrel squirrelfish squirt squirter squish sr sravana srbija +ss ssa sse sspe ssri sss ssw st.-bruno's-lily stab stabber stabile stabilisation +stabiliser stability stabilization stabilizer stable stableboy stableman +stablemate stableness stabling stabroek stachyose stachys stack stacker stacks +stacte staddle stadium stael staff staffa staffer stag stage stagecoach +stagecraft stagehand stager stagflation stagger staggerbush staggerer staggers +staghead staghound staginess staging stagira stagirus stagnancy stagnation +staidness stain stainability stainer staining stainless stair stair-carpet +stair-rod staircase stairhead stairs stairway stairwell stake stakeholder +stakeout stakes stalactite stalagmite stalemate staleness stalin stalinabad +stalingrad stalinisation stalinism stalinist stalinization stalino stalk stalker +stalking stalking-horse stall stalling stallion stalls stalwart stalwartness +stamboul stambul stamen stamina stammel stammer stammerer stamp stampede stamper +stance stanchion stand stand-down stand-in standard standard-bearer +standardisation standardiser standardization standardizer standby standdown +standee stander standing standish standoff standoffishness standpipe standpoint +standstill stanford stanhope stanhopea stanislavsky stanley stanleya stannite +stanton stanza stapedectomy stapelia stapes staph staphylaceae staphylea +staphylinidae staphylococci staphylococcus staple staplegun stapler star star- +duckweed star-glory star-of-bethlehem star-thistle starboard starch starches +stardom stardust stare starer starets starfish starflower stargazer stargazing +starkey starkness starlet starlight starling starr starship start start-off +starter starting startle startup starvation starveling starving starwort stash +stasis state statecraft statehouse stateliness statement stater stateroom +statesman statesmanship stateswoman static statice statics statin station +stationariness stationer stationery stationmaster stations statistic +statistician statistics stator statuary statue statuette stature status statute +staunchness staurikosaur staurikosaurus stavanger stave stay stay-at-home stayer +stayman stays staysail std stead steadfastness steadiness steady steak +steakhouse steal stealer stealing stealth stealthiness steam steamboat steamer +steamfitter steaminess steamroller steamship stearin steatite steatocystoma +steatopygia steatornis steatornithidae steatorrhea steed steel steele steelmaker +steelman steelworker steelworks steelyard steen steenbok steep steeper steeple +steeplechase steeplechaser steeplejack steepness steer steerage steerageway +steerer steering steersman steffens steganography steganopus stegocephalia +stegosaur stegosaurus steichen stein steinbeck steinberg steinbok steinem +steiner steinman steinmetz steinway stela stele stelis stella stellaria steller +stellite stem stem-winder stemma stemmatics stemmatology stemmer stench stencil +stendhal stengel stenocarpus stenochlaena stenograph stenographer stenography +stenopelmatidae stenopelmatus stenopterygius stenosis stenotaphrum stenotomus +stenotus stent stentor step step-down step-in step-up stepbrother stepchild +stepdaughter stepfather stephanion stephanomeria stephanotis stephead stephen +stephenson stepladder stepmother stepparent steppe stepper steprelationship +steps stepsister stepson steradian stercobilinogen stercolith stercorariidae +stercorarius sterculia sterculiaceae stereo stereophony stereoscope stereoscopy +stereospondyli stereotype sterileness sterilisation steriliser sterility +sterilization sterilizer sterling stern sterna sterne sterninae sternness +sternocleidomastoid sternotherus sternpost sternum sternutation sternutator +sternutatory sternwheeler steroid sterol sterope stertor stethoscope stetson +steuben stevedore stevens stevenson stevia stew steward stewardess stewardship +stewart stewing stewpan sth sthene stheno stibnite stichaeidae sticherus stick +stick-in-the-mud stickball sticker stickiness stickleback stickler stickpin +sticktight stickup stickweed stictomys stictopelia stieglitz stiff stiffener +stiffening stiffness stifle stifler stifling stigma stigmata stigmatic +stigmatisation stigmatism stigmatist stigmatization stilbesterol stilbestrol +stilboestrol stile stiletto still stillbirth stillness stillroom stilt stiltbird +stilton stilwell stimulant stimulation stimulus sting stingaree-bush stinger +stinginess stinging stingray stink stinkbird stinker stinkhorn stinkiness +stinkpot stinkweed stint stinter stipe stipend stipendiary stippler stipulation +stipule stir stirk stirrer stirring stirrup stitch stitcher stitchery stitching +stitchwort stizidae stizolobium stizostedion stm stoat stob stochasticity stock +stock-in-trade stock-take stock-taker stock-taking stockade stockbroker stockcar +stocker stockfish stockholder stockholding stockholdings stockholm stockhorn +stockinet stockinette stocking stockist stockjobber stockman stockpile +stockpiling stockpot stockroom stocks stocktake stocktaker stocktaking stockton +stockyard stodge stodginess stoep stogie stogy stoic stoichiometry stoicism +stokehold stokehole stoker stokesia stokowski stole stolidity stolidness stolon +stoma stomach stomachache stomacher stomate stomatitis stomatopod stomatopoda +stomp stomper stone stone-face stone-root stonechat stonecress stonecrop +stonecutter stoneface stonefish stonefly stonehenge stonemason stoner stoneroot +stonewaller stonewalling stoneware stonework stonewort stoning stooge stool +stoolie stoolpigeon stoop stooper stop stopcock stopes stopgap stoplight +stopover stoppage stoppard stopper stopping stopple stops stopwatch storage +storax store storefront storehouse storekeeper storeria storeroom storey stork +storksbill storm storminess story storybook storyline storyteller stotinka stoup +stout stoutheartedness stoutness stove stovepipe stovepiping stover stowage +stowaway stowe stowing stp strabismus strabotomy strachey strad stradavarius +straddle stradivari stradivarius strafe strafer straggle straggler straight +straight-arm straightaway straightedge straightener straightforwardness +straightjacket straightness strain strainer straining strait straitjacket +straits strake strand strangeness stranger stranglehold strangler strangles +strangling strangulation strap strapado straphanger strapless strappado strapper +strasberg strasbourg strassburg stratagem strategian strategics strategist +strategy stratford-on-avon stratford-upon-avon stratification stratigraphy +stratocracy stratosphere stratum stratus strauss stravinsky straw strawberry +strawboard strawflower strawman strawworm stray strayer streak streaker stream +streambed streamer streaming streamlet streamliner streep street streetcar +streetlight streetwalker streisand strekelia strelitzia strelitziaceae strength +strengthener strengthening strenuosity strenuousness strep strepera strepsiceros +strepsirhini streptobacillus streptocarpus streptococci streptococcus +streptodornase streptokinase streptolysin streptomyces streptomycetaceae +streptomycin streptopelia streptosolen streptothricin stress stressor stretch +stretchability stretcher stretcher-bearer stretchiness stretching streusel +strewing stria striation striatum strickland strickle strictness stricture +stride stridence stridency strider stridor stridulation strife strigidae +strigiformes strike strikebreaker strikebreaking strikeout striker striking +strikingness strindberg string stringency stringer strings stringybark strip +strip-jack-naked stripe striper stripes striping stripling stripper stripping +striptease stripteaser striver striving strix strobe strobile strobilomyces +strobilus stroboscope stroheim stroke stroking stroll stroller stroma stromateid +stromateidae strombidae strombus strong-armer strongbox stronghold strongman +strongroom strongylodon strontianite strontium strop strophanthin strophanthus +stropharia strophariaceae strophe structuralism structure strudel struggle +struggler strum struma strumpet strut struthio struthiomimus struthionidae +struthioniformes strychnine strymon stuart stub stubbiness stubble stubbornness +stubbs stucco stud studbook student studentship studhorse studio studiousness +study studying stuff stuffer stuffiness stuffing stultification stumble +stumblebum stumbler stump stumper stumping stumpknocker stunner stunt +stuntedness stunting stupa stupe stupefaction stupid stupidity stupor sturdiness +sturgeon sturmabteilung sturnella sturnidae sturnus stutter stutterer stuttgart +stuyvesant sty stye style stylemark styler stylet stylisation stylishness +stylist stylite stylization stylomecon stylophorum stylopodium stylostixis +stylus stymie stymy styphelia stypsis styptic styracaceae styracosaur +styracosaurus styrax styrene styrofoam styron styx suasion suaveness suavity sub +sub-assembly sub-interval sub-test subaltern subbase subbing subclass +subcommittee subcompact subconscious subconsciousness subcontinent subcontract +subcontractor subculture subdeacon subdirectory subdivider subdivision +subdominant subduction subduedness subduer subeditor subfamily subfigure +subgenus subgroup subhead subheading subject subjection subjectiveness +subjectivism subjectivist subjectivity subjoining subjugation subjugator +subjunction subjunctive subkingdom sublease sublet sublieutenant sublimate +sublimation sublimaze sublimity subluxation submarine submariner submaxilla +submediant submenu submergence submerging submersible submersion submission +submissiveness submitter submucosa subnormal subnormality suborder subordinate +subordinateness subordination subornation suborner subpart subphylum subpoena +subpopulation subprogram subrogation subroutine subscriber subscript +subscription subsection subsequence subsequentness subservience subservientness +subset subshrub subsidence subsidiarity subsidiary subsiding subsidisation +subsidiser subsidization subsidizer subsidy subsistence subsister subsoil +subspace subspecies substance substantiality substantialness substantiation +substantive substation substitutability substitute substituting substitution +substrate substratum substring substructure subsumption subsystem subterfuge +subthalamus subtilin subtitle subtlety subtonic subtopia subtotal subtracter +subtraction subtrahend subtreasury subtropics subularia subunit suburb +suburbanite suburbia subvention subversion subversive subversiveness subverter +subvocaliser subvocalizer subway subwoofer succade succedaneum succeeder success +successfulness succession successiveness successor succinctness succinylcholine +succor succorer succory succos succotash succoth succour succourer succuba +succubus succulence succulency succulent succus succussion suck sucker +suckerfish sucking suckling sucralfate sucrase sucre sucrose suction sudafed +sudan sudanese sudation sudatorium sudatory sudbury suddenness sudoku sudor +sudorific sudra suds sue suede suer suet suez sufferance sufferer suffering +sufficiency suffix suffixation suffocation suffragan suffrage suffragette +suffragism suffragist suffrutex suffusion sufi sufism sugar sugar-bush +sugarberry sugarcane sugariness sugarloaf sugarplum suggester suggestibility +suggestion sugi suharto suicide suidae suillus suisse suit suitability +suitableness suitcase suite suiting suitor sukarno sukiyaki sukkoth suksdorfia +sukur sula sulamyd sulawesi sulcus sulfa sulfacetamide sulfadiazine +sulfamethazine sulfamethoxazole sulfamezathine sulfanilamide sulfapyridine +sulfate sulfide sulfisoxazole sulfonamide sulfonate sulfonylurea sulfur sulidae +sulindac sulk sulkiness sulky sulla sullenness sullivan sully sulpha sulphate +sulphide sulphur sultan sultana sultanate sultriness sum sum-up sumac sumach +sumatra sumatran sumer sumerian sumerology summarisation summarization summary +summation summer summercater summercaters summerhouse summersault summerset +summertime summit summoning summons sumner sumo sump sumpsimus sumpter +sumptuosity sumptuousness sun sun-ray sun-worship sunbather sunbeam sunbelt +sunberry sunblind sunblock sunbonnet sunburn sunburst sunchoke sundacarpus +sundae sundanese sunday sunderland sundew sundial sundog sundown sundowner +sundress sundries sundrops sunfish sunflower sung sunglass sunglasses sunhat +sunlamp sunlight sunna sunnah sunni sunniness sunnite sunporch sunray sunrise +sunroof sunroom sunrose sunscreen sunset sunshade sunshine sunshine-roof sunspot +sunstone sunstroke sunsuit suntan suntrap sunup suomi sup super superabundance +superannuation superbia superbug supercargo supercharger superciliousness +supercilium superclass supercomputer superconductivity superego supererogation +superfamily superfecta superfecundation superfetation superficiality superficies +superfluity superfund supergiant supergrass superhet superhighway superinfection +superintendence superintendent superior superiority superlative superload +superman supermarket supermarketeer supermarketer supermex supermodel +supermolecule supermom supernatant supernatural supernaturalism supernaturalness +supernova supernumerary superorder superordinate superordination superoxide +superpatriotism superphylum superposition superpower superscript superscription +supersedure supersession superslasher superstar superstition superstrate +superstratum superstring superstructure supersymmetry supertanker supertax +supertitle supertonic supertwister supervention supervising supervision +supervisor supination supinator supper suppertime supping supplanter supplanting +supplejack supplement supplementation suppleness suppliant supplicant +supplication supplier supply supplying support supporter supporting supposal +supposition suppository suppressant suppresser suppression suppressor +suppuration suprainfection suprarenalectomy supremacism supremacist supremacy +suprematism suprematist supremo sur sura surbase surcease surcharge surcoat surd +sureness surety surf surface surfacing surfactant surfbird surfboard surfboarder +surfboarding surfboat surfeit surfer surffish surfing surfperch surfriding surge +surgeon surgeonfish surgery suricata suricate surinam suriname surliness +surmisal surmise surmontil surmounter surmullet surname surnia surplice surplus +surplusage surprint surprisal surprise surpriser surprisingness surrealism +surrealist surrebuttal surrebutter surrejoinder surrender surrenderer surrey +surrogate surround surroundings surtax surtitle surtout surveillance survey +surveying surveyor survival survivalist survivor surya sus susa susah susanna +susceptibility susceptibleness sushi susian susiana suslik suspect suspender +suspense suspension suspensor suspensory suspicion suspiciousness suspiration +susquehanna sussex sustainability sustainer sustainment sustenance sustentation +susurration susurrus sutherland sutler sutra suttee sutura suture suturing suv +suva suzerain suzerainty svalbard svedberg svengali sverdrup sverige svizzera +svoboda svr sw swab swabbing swad swag swage swagger swaggerer swaggie swagman +swahili swain swainsona swale swallow swallowtail swallowwort swami swammerdam +swamp swamphen swampland swan swan-flower swan-neck swanflower swank swanneck +swansea swanson swap sward swarm swarthiness swash swashbuckler swashbuckling +swastika swat swatch swath swathe swathing swatter sway swayer swazi swaziland +swbs swbw swearer swearing swearword sweat sweatband sweatbox sweater sweating +sweatpants sweats sweatshirt sweatshop sweatsuit swede sweden swedenborg swedish +sweep sweep-second sweeper sweeping sweepstakes sweet sweetbread sweetbreads +sweetbriar sweetbrier sweetener sweetening sweetheart sweetie sweetleaf +sweetmeat sweetness sweetpea sweetsop swell swellhead swelling swertia swerve +swerving swietinia swift swiftlet swiftness swig swill swilling swim swimmer +swimmeret swimming swimsuit swimwear swinburne swindle swindler swine swineherd +swing swinger swinging swingletree swipe swirl swish swiss switch switch-hitter +switch-ivy switchblade switchboard switcher switcheroo switching switchman +swither switzerland swivel swivet swiz swizzle swob swoon swoop swoosh swop +sword sword-cut swordfish swordplay swordsman swordsmanship swordtail swot +sybarite sycamore syconium sycophancy sycophant sydenham sydney syllabary +syllabication syllabicity syllabification syllable syllabub syllabus syllepsis +syllogiser syllogism syllogist syllogizer sylph sylva sylvan sylvanite sylvanus +sylviidae sylviinae sylvilagus sylvine sylvite symbiosis symbol symbol-worship +symbolatry symbolisation symboliser symbolising symbolism symbolist +symbolization symbolizer symbolizing symbology symbololatry symmetricalness +symmetry symonds symons sympathectomy sympathiser sympathizer sympathy sympatry +symphalangus symphilid symphonist symphony symphoricarpos symphyla symphysion +symphysis symphytum symplocaceae symplocarpus symploce symplocus symposiarch +symposiast symposium symptom synaeresis synaesthesia synagogue synagrops +synanceja synapse synapsid synapsida synapsis synaptomys syncarp syncategorem +syncategoreme synchro synchrocyclotron synchroflash synchromesh synchroneity +synchronicity synchronisation synchroniser synchronising synchronism +synchronization synchronizer synchronizing synchronoscope synchrony synchroscope +synchrotron synchytriaceae synchytrium syncopation syncopator syncope syncretism +syncytium syndactylism syndactyly syndic syndicalism syndicalist syndicate +syndication syndicator syndrome synecdoche synechia synentognathi synercus +syneresis synergism synergist synergy synesthesia synezesis synge syngnathidae +syngnathus syngonium synizesis synod synodontidae synonym synonymist synonymity +synonymousness synonymy synopsis synoptics synovia synovitis synovium synset +syntactician syntagm syntagma syntax synthesis synthesiser synthesist +synthesizer synthetic synthetism syph syphilis syphilitic syphon syracuse syria +syrian syringa syringe syrinx syrrhaptes syrup system systematics +systematisation systematiser systematism systematist systematization +systematizer systemiser systemizer systole syzygium syzygy szechuan szechwan +szell szent-gyorgyi szilard t t'ien-ching t-bar t-bill t-junction t-man +t-network t-scope t-shirt t-square t.b. ta ta'ziyeh taal tab tabanidae tabard +tabasco tabbouleh tabby tabernacle tabernacles tabernaemontana tabes tabi tabis +tablature table tableau tablecloth tablefork tableland tablemate tablespoon +tablespoonful tablet tabletop tableware tabloid taboo tabooli tabor tabora +taboret tabour tabouret tabriz tabu tabuk tabulation tabulator tabun tacamahac +tacca taccaceae tach tacheometer tachinidae tachistoscope tachogram tachograph +tachometer tachycardia tachyglossidae tachyglossus tachygraphy tachylite +tachymeter tachypleus taciturnity tacitus tack tacker tackiness tacking tackle +tackler taco tacoma taconite tact tactfulness tactic tactician tactics tactility +tactlessness tad tadalafil tadarida tadjik tadorna tadpole tadzhik tadzhikistan +taegu taekwondo tael taenia taeniidae taffeta taffrail taffy taft tag tagalog +tagalong tagamet tagasaste tageteste tagger tagliatelle tagore taguan tagus +tahini tahiti tahitian tai taichi taichichuan taichung taif tail tail-flower +tailback tailboard tailcoat tailfin tailflower tailgate tailgater tailing +taillight tailor tailor-made tailorbird tailoring tailpiece tailpipe tailplane +tailrace tails tailspin tailstock tailwind tailwort taint taipan taipeh taipei +taira taiwan taiwanese taiyuan tajik tajiki tajikistan taka takahe takakkaw take +take-in take-up takeaway takedown takelma takeoff takeout takeover taker +takilman takin taking takings tala talapoin talaria talbot talc talcum tale +taleban talebearer talent talentlessness taleteller taliban talien talinum +talipes talipot talisman talk talkativeness talker talkie talking talks tall +tall-grass tallahassee tallapoosa tallboy tallchief talleyrand tallgrass tallin +tallinn tallis tallith tallness tallow tally tallyman talmud talon talpidae +talus talwin tam tam-o'-shanter tam-tam tamale tamandu tamandua tamanoir +tamarack tamarao tamarau tamaricaceae tamarillo tamarin tamarind tamarindo +tamarindus tamarisk tamarix tambac tambala tambocor tambour tambourine +tamburlaine tameness tamer tamerlane tamias tamiasciurus tamil tamm tammany +tammerfors tammuz tammy tamoxifen tamp tampa tampax tamper tampere tampering +tampico tampion tampon tamponade tamponage tamus tan tanacetum tanach tanager +tanakh tanbark tancred tandearil tandem tandoor tandy tanekaha taney tang tanga +tanganyika tange tangelo tangency tangent tangerine tangibility tangibleness +tangier tangiers tanginess tangle tanglebush tango tangor tangram tangshan +tanguy tank tanka tankage tankard tanker tankful tannenberg tanner tannery +tannia tannin tanning tannoy tanoan tansy tantaliser tantalite tantalization +tantalizer tantalum tantalus tantilla tantra tantrism tantrist tantrum tanzania +tanzanian tanzim tao taoiseach taoism taoist taos tap tap-off tapa tape tapeline +tapenade taper tapering tapestry tapeworm taphephobia taphouse taping tapioca +tapir tapiridae tapirus tapis tapotement tappa tappan tapper tappet tapping +taproom taproot taps tapster tar tar-wood tara tarabulus taracahitian taradiddle +tarahumara taraktagenos taraktogenos tarantella tarantelle tarantino tarantism +tarantula tarawa tarawa-makin taraxacum tarbell tarboosh tardigrada tardigrade +tardiness tare target tarheel taricha tariff tarkovsky tarmac tarmacadam tarn +tarnish taro tarot tarp tarpan tarpaulin tarpon tarquin tarquinius tarradiddle +tarragon tarriance tarrietia tarsal tarsier tarsiidae tarsioidea tarsitis +tarsius tarsus tart tartan tartar tartarus tartary tartlet tartness tartrate +tartu tartufe tartuffe tarweed tarwood tarzan tashkent tashmit tashmitum +tashunca-uitco task taskent taskmaster taskmistress tasman tasmania tasse tassel +tasset tasso taste taste-maker taste-tester tastebud tastefulness tastelessness +taster tastiness tasting tat tatahumara tatar tatary tate tater tati tatou +tatouay tatter tatterdemalion tatting tattle tattler tattletale tattoo tatu +tatum tau taunt taunting tauon taupe taurine tauromachy taurotragus taurus +tautness tautog tautoga tautogolabrus tautology tavern taw tawdriness tawney +tawniness tawse tax tax-exempt tax-increase taxability taxaceae taxales taxation +taxer taxi taxicab taxidea taxidermist taxidermy taxidriver taximan taximeter +taxis taxistand taxiway taxman taxodiaceae taxodium taxon taxonomer taxonomist +taxonomy taxophytina taxopsida taxpayer taxus tay tay-sachs tayalic tayassu +tayassuidae taylor tayra tazicef tb tbilisi tbit tc tce tchad tchaikovsky +tchotchke tchotchkeleh tcp tcp/ip tdt te tea tea-strainer teaberry teacake +teacart teach teach-in teacher teachership teaching teacup teacupful teahouse +teak teakettle teakwood teal team teammate teamster teamwork teapot tear +tearaway teardrop tearfulness teargas tearing tearjerker tearoom tears teasdale +tease teasel teaser teashop teasing teasle teaspoon teaspoonful teat teatime +teazel tebaldi tebet tebibit tebibyte tec tech techie technetium technical +technicality technician technicolor technique techno technobabble technocracy +technocrat technologist technology technophile technophilia technophobe +technophobia tecophilaeacea tectaria tectona tectonics tecumseh tecumtha ted +teddy tediousness tedium tee teemingness teen teenager teens teeoff teepee +teeter teeter-totter teeterboard teetertotter teeth teething teetotaler +teetotaling teetotalism teetotalist teetotaller teetotum teff tefillin teflon +teg tegu tegucigalpa tegument teheran tehran teiid teiidae teju tekki tektite +telamon telanthera telco telecast telecaster telecasting telecom telecommerce +telecommunication telecommuting teleconference teleconferencing telefilm +telegnosis telegram telegraph telegrapher telegraphese telegraphist telegraphy +telekinesis telemann telemark telemarketing telemeter telemetry telencephalon +teleologist teleology teleost teleostan teleostei telepathist telepathy +telephone telephoner telephonist telephony telephoto telephotograph +telephotography teleportation teleprinter teleprocessing teleprompter +telerobotics telescope telescopium telescopy teleselling telethermometer +teletypewriter televangelism televangelist television teleworking telex telfer +telferage telint teliospore tell teller tellima telling telltale tellurian +telluride tellurium tellus telly telomerase telomere telopea telophase +telosporidia telpher telpherage telsontail telugu temazepam temblor temerity +temnospondyli temp temper tempera temperament temperance temperateness +temperature tempering tempest tempestuousness templar template temple templet +templetonia tempo temporal temporalis temporality temporalty temporariness +temporary temporiser temporizer tempra temptation tempter temptingness temptress +tempura temuco temujin ten ten-spot ten-strike ten-thousandth tenability +tenableness tenaciousness tenacity tenancy tenant tenantry tench tendency +tendentiousness tender tenderfoot tendergreen tenderheartedness tenderisation +tenderiser tenderization tenderizer tenderloin tenderness tending tendinitis +tendon tendonitis tendosynovitis tendrac tendril tenebrionid tenebrionidae +tenement tenerife tenesmus tenet tenge tenia tenner tennessean tennessee tenniel +tennis tenno tennyson tenon tenonitis tenor tenoretic tenorist tenormin tenoroon +tenosynovitis tenpence tenpin tenpins tenpounder tenrec tenrecidae tense +tenseness tensimeter tensiometer tension tensity tensor tent tent-fly tentacle +tentaculata tenter tenterhook tenth tenthredinidae tenting tentmaker tentorium +tenuity tenure tepal tepee tephrosia tepic tepidity tepidness tequila tera +terabit terabyte teraflop terahertz teras teratogen teratogenesis teratology +teratoma terazosin terbinafine terbium terce tercel tercelet tercentenary +tercentennial tercet terebella terebellidae terebinth teredinid teredinidae +teredo terence teres teresa tereshkova tergiversation tergiversator teriyaki +term termagant termer termes terminal termination terminator terminology +terminus termite termitidae terms tern ternary ternion terpene terpsichore +terpsichorean terrace terrain terramycin terrapene terrapin terrarium terreplein +terribleness terrier terrietia terrine territorial territorialisation +territoriality territorialization territory terror terrorisation terrorism +terrorist terrorization terry terrycloth terseness tertiary tertigravida tertry +tertullian terylene terzetto tesla tessella tessellation tessera tesseract +tessin test test-cross testa testacea testacean testament testate testator +testatrix testcross testee tester testicle testiere testifier testimonial +testimony testiness testing testis testosterone testudinata testudines +testudinidae testudo tet tetanilla tetanus tetany tetartanopia tetchiness +tete-a-tete teth tether tetherball tethyidae tethys teton tetra tetrabromo- +phenolsulfonephthalein tetracaine tetrachlorethylene tetrachloride +tetrachloroethylene tetrachloromethane tetraclinis tetracycline tetrad +tetrafluoroethylene tetragon tetragonia tetragoniaceae tetragonurus tetragram +tetragrammaton tetrahalide tetrahedron tetrahydrocannabinol tetrahymena +tetraiodothyronine tetralogy tetrameter tetramethyldiarsine tetraneuris +tetranychid tetranychidae tetrao tetraodontidae tetraonidae tetrapod tetrapturus +tetrasaccharide tetraskele tetraskelion tetrasporangium tetraspore tetrazzini +tetri tetrode tetrodotoxin tetrose tetroxide tetryl tetterwort tettigoniid +tettigoniidae teucrium teuton teutonist tevere tevet tewkesbury texan texarkana +texas text text-matching textbook textile texture th thackeray thaddaeus thai +thailand thalamus thalarctos thalassaemia thalassemia thalassoma thales thalia +thaliacea thalictrum thalidomide thalidone thallium thallophyta thallophyte +thallus thalmencephalon thalweg thames thammuz thamnophilus thamnophis +thanatology thanatophobia thanatopsis thanatos thane thaneship thankfulness +thanks thanksgiving tharp thatch thatcher thatcherism thatcherite thaumatolatry +thaumaturge thaumaturgist thaumaturgy thaw thawing thb thc thd thea theaceae +theanthropism theater theatergoer theatre theatregoer theatrical theatricality +theban thebe thebes theca thecodont thecodontia theelin theft theia theism +theist thelarche thelephoraceae thelypteridaceae thelypteris theme themis +themistocles then thenar theobid theobroma theocracy theodicy theodolite +theodosius theogony theologian theologiser theologist theologizer theology +theophany theophrastaceae theophrastus theophylline theorem theoretician +theorisation theoriser theorist theorization theorizer theory theosophism +theosophist theosophy theoterrorism therapeutic therapeutics theraphosidae +therapist therapsid therapsida therapy theravada there theremin thereness +theresa theridiid theridiidae therm thermal thermalgesia thermel thermidor +thermion thermionics thermistor thermoacidophile thermobia thermocautery +thermochemistry thermocoagulation thermocouple thermodynamics thermoelectricity +thermogram thermograph thermography thermogravimeter thermogravimetry +thermohydrometer thermojunction thermometer thermometrograph thermometry +thermopile thermoplastic thermopsis thermopylae thermoreceptor thermoregulator +thermos thermosphere thermostat thermostatics thermotherapy thermotropism +theropod theropoda thesaurus theseus thesis thespesia thespian thespis thessalia +thessalian thessalonian thessalonica thessaloniki thessaly theta thetis theurgy +thevetia thiabendazole thiamin thiamine thiazide thiazine thibet thick thick- +knee thickener thickening thicket thickhead thickness thief thielavia thievery +thieving thievishness thigh thigh-slapper thighbone thill thimble thimbleberry +thimbleful thimblerig thimbleweed thimerosal thing thing-in-itself thingamabob +thingamajig thingmabob thingmajig things thingumabob thingumajig thingummy think +thinker thinking thinner thinness thinning thiobacillus thiobacteria +thiobacteriaceae thiocyanate thiodiphenylamine thioguanine thiopental +thioridazine thiosulfil thiotepa thiothixene thiouracil third third- +dimensionality third-rater thirst thirster thirstiness thirteen thirteenth +thirties thirtieth thirty thirty-second thirty-something thistle thistledown +thlaspi thm tho thole tholepin thomas thomism thomomys thompson thomson thong +thor thoracentesis thoracocentesis thoracotomy thorax thorazine thoreau thorite +thorium thorium-228 thorn thornbill thorndike thorniness thornton thoroughbred +thoroughfare thoroughness thoroughwort thorpe thorshavn thortveitite thoth thou +thought thought-image thought-reader thoughtfulness thoughtlessness thousand +thousandth thrace thracian thraco-phrygian thraldom thrall thralldom thrash +thrasher thrashing thraupidae thread thread-fish threader threadfin threadfish +threads threadworm threat three three-bagger three-d three-decker three- +dimensionality three-fourths three-hitter three-quarters threepence threescore +threesome threnody threonine thresher threshing threshold threskiornis +threskiornithidae thrift thriftiness thriftlessness thriftshop thrill thriller +thrinax thrip thripid thripidae thrips throat throatwort throb throbbing throe +throes thrombasthenia thrombectomy thrombin thrombocyte thrombocytopenia +thrombocytosis thromboembolism thrombokinase thrombolysis thrombolytic +thrombopenia thrombophlebitis thromboplastin thrombosis thrombus throne throng +throstle throttle throttlehold throttler throttling throughput throughway throw +throw-in throw-weight throwaway throwback thrower throwster thrum thrush thrust +thruster thrusting thruway thryothorus thucydides thud thug thuggee thuggery +thuja thujopsis thule thulium thumb thumbhole thumbnail thumbnut thumbprint +thumbscrew thumbstall thumbtack thump thumping thunbergia thunder thunderbird +thunderbolt thunderclap thundercloud thunderer thunderhead thundershower +thunderstorm thunk thunnus thurber thurible thurifer thuringia thursday thus +thwack thwart thwarter thwarting thylacine thylacinus thylogale thyme +thymelaeaceae thymelaeales thymidine thymine thymol thymosin thymus thyreophora +thyreophoran thyrocalcitonin thyroglobulin thyroid thyroidectomy thyroiditis +thyromegaly thyronine thyroprotein thyrotoxicosis thyrotrophin thyrotropin +thyroxin thyroxine thyrse thyrsopteris thyrsus thysanocarpus thysanopter +thysanoptera thysanopteron thysanura thysanuron thz ti tia tiamat tianjin tiara +tiarella tib tiber tiberius tibet tibetan tibeto-burman tibia tibialis tibicen +tibit tibur tic tic-tac-toe tical tichodroma tichodrome ticino tick tick-tack- +toe tick-weed ticker ticket ticket-of-leave ticking tickle tickler tickling +tickseed ticktack ticktacktoe ticktacktoo ticktock tickweed ticonderoga tictac +tidbit tiddler tiddlywinks tide tideland tidemark tidewater tideway tidiness +tidings tidy tidytips tie tie-in tie-up tieback tiebreaker tien-pao tientsin +tiepin tiepolo tier tierce tiercel tiff tiffany tiffin tiflis tiger tigers +tightening tightfistedness tightness tightrope tights tightwad tiglon tigon +tigress tigris tijuana tike tilapia tilde tilden tile tilefish tiler tilia +tiliaceae tiling tiliomycetes till tillage tillandsia tiller tilletia +tilletiaceae tillich tilling tilt tilter tilth tiltyard timalia timaliidae +timbale timber timberland timberline timberman timbre timbrel timbuktu time +time-ball time-fuse time-out time-switch timecard timekeeper timekeeping +timelessness timeline timeliness timepiece timer times timeserver timetable +timework timgad timid timidity timidness timimoun timing timolol timor timorese +timorousness timothy timpani timpanist timucu timur tin tin-plating tinamidae +tinamiformes tinamou tinbergen tinca tincture tindal tindale tinder tinderbox +tine tinea tineid tineidae tineoid tineoidea tineola tinfoil ting tinge tingidae +tingle tingling tininess tinker tinkerer tinkle tinner tinning tinnitus tinplate +tinsel tinsmith tinsnips tint tintack tinter tinting tintinnabulation tintometer +tintoretto tinware tip tip-off tipi tipper tippet tipple tippler tipsiness +tipstaff tipster tiptoe tiptop tipu tipuana tipulidae tirade tiramisu tirana +tire tiredness tirelessness tiresias tiresomeness tiro tirol tirolean tisane +tishri tisiphone tissue tit tit-tat-toe titan titaness titania titanium +titanosaur titanosaurian titanosauridae titanosaurus titbit titer titfer tithe +tither tithonia titi titian titillation titivation titlark title title-holder +titmouse tito titration titrator titre titter titterer tittivation tittle +tittle-tattle titty titus tiu tivoli tiyin tizzy tko tl tlc tlingit tm tmv tn +tnf tnt to-do toad toad-in-the-hole toadfish toadflax toadshade toadstool toady +toast toaster toasting toastmaster toastrack tobacco tobacconist tobago +tobagonian tobey tobin tobit toboggan tobogganing tobogganist tobramycin toby +tocainide tocantins toccata tocharian tocktact tocology tocopherol tocqueville +tocsin tod toda today todd toddler toddy todea todidae todus tody toe toe-in +toea toecap toehold toenail toetoe toff toffee toffy tofieldia tofranil tofu +toga togaviridae togetherness toggle togo togolese togs toil toiler toilet +toiletry toilette toilsomeness toitoi tojo tokamak tokay toke token tokio toklas +tokyo tolazamide tolazoline tolbooth tolbukhin tolbutamide tole tolectin toledo +tolerance toleration tolinase tolkien toll tollbar tollbooth toller tollgate +tollgatherer tollhouse tollkeeper tollman tollon tolmiea tolstoy toltec tolu +toluene tolypeutes tom tom-tom tomahawk tomalley tomatillo tomato tomb tombac +tombak tombaugh tombigbee tombola tomboy tomboyishness tombstone tomcat tome +tomentum tomfool tomfoolery tomistoma tommyrot tomograph tomography tomorrow +tompion tomtate tomtit ton tonality tone tone-beginning toner tonga tongan tongs +tongue tongue-fish tongue-flower tongue-lashing tonguefish tongueflower tonic +tonicity tonight tonnage tonne tonocard tonometer tonometry tons tonsil tonsilla +tonsillectomy tonsillitis tonsure tontine tonus tool toolbox toolhouse toolmaker +toolshed toon toona tooshie toot tooth toothache toothbrush toothpaste toothpick +toothpowder toothsomeness toothwort tootle top top-up topaz topcoat tope topee +topeka toper topgallant tophus topi topiary topic topicality topicalization +topknot topmast topminnow topognosia topognosis topography topolatry topology +toponomy toponym toponymy topos topper topping topsail topside topsoil topspin +topsy-turvydom topsy-turvyness topv toque tor toradol torah torch torchbearer +torchlight tore toreador torero torino torment tormenter tormentor tornado +tornillo torodal toroid toronto torpedinidae torpediniformes torpedo torpidity +torpidness torpor torque torquemada torr torrent torreon torreya torricelli +torridity torsion torsk torso tort tort-feasor torte tortellini tortfeasor +torticollis tortilla tortoise tortoiseshell tortoiseshell-cat tortricid +tortricidae tortrix tortuosity tortuousness torture torturer torturing torus +tory toscana toscanini tosh tosk toss toss-up tosser tossup tostada tot total +totalisator totaliser totalism totalitarian totalitarianism totality totalizator +totalizer totara tote totem totemism totemist toter totipotence totipotency +totterer toucan toucanet touch touch-me-not touch-typist touchback touchdown +toucher touchiness touching touchline touchscreen touchstone touchwood tough +toughie toughness toulon toulouse toulouse-lautrec toupe toupee tour touraco +tourer tourette tourism tourist touristry tourmaline tournament tournedos +tourney tourniquet tours tourtiere tout touter tovarich tovarisch tow towage +towboat towel toweling towelling tower towhead towhee towline town townee towner +townes townie townsend townsendia townsfolk township townsman townspeople towny +towpath towrope toxaemia toxemia toxicant toxicity toxicodendron toxicognath +toxicologist toxicology toxin toxoid toxoplasmosis toxostoma toxotes toxotidae +toy toying toynbee toyohashi toyon toyonaki toyota toyshop tpn tra-la tra-la-la +trabecula trablous trace tracer tracery trachea tracheid tracheitis +trachelospermum tracheobronchitis tracheophyta tracheophyte tracheostomy +tracheotomy trachinotus trachipteridae trachipterus trachodon trachodont +trachoma trachurus tracing track trackball tracker tracking tracklayer tract +tractability tractableness tractarian tractarianism traction tractor tracy trad +trade trade-in trade-last trade-off tradecraft trademark tradeoff trader +tradescant tradescantia tradesman tradespeople trading tradition traditionalism +traditionalist traditionality traducement traducer trafalgar traffic trafficator +trafficker tragacanth tragedian tragedienne tragedy tragelaphus tragicomedy +tragopan tragopogon tragulidae tragulus tragus trail trailblazer trailer +trailhead trailing train trainband trainbandsman trainbearer trainee traineeship +trainer training trainload trainman trainmaster trait traitor traitorousness +traitress trajan trajectory tram tramcar tramline trammel tramontana tramontane +tramp tramper trample trampler trampling trampoline tramway trance tranche +trandate trandolapril tranquility tranquilizer tranquilliser tranquillity +tranquillizer transactinide transaction transactions transactor transalpine +transaminase transamination transcaucasia transcendence transcendency +transcendentalism transcendentalist transcriber transcript transcriptase +transcription transducer transduction transept transexual transfer +transferability transferase transferee transference transferer transferor +transferral transferrer transferrin transfiguration transformation transformer +transfusion transgene transgression transgressor transience transiency transient +transistor transit transition transitive transitiveness transitivity +transitoriness translation translator transliteration translocation translucence +translucency transmigrante transmigration transmission transmittal transmittance +transmitter transmitting transmogrification transmutability transmutation +transom transparence transparency transparentness transpiration transplant +transplantation transplanter transplanting transponder transport transportation +transporter transposability transpose transposition transposon transsexual +transsexualism transshipment transubstantiation transudate transudation +transvaal transvestism transvestite transvestitism transylvania tranylcypromine +trap trapa trapaceae trapeze trapezium trapezius trapezohedron trapezoid trapper +trapping trappings trappist trapshooter trapshooting trash trashiness trasimeno +traubel trauma traumatology traumatophobia trautvetteria travail trave travel +traveler traveling traveller travelling travelog travelogue traversal traverse +traverser travesty trawl trawler tray trazodone treachery treacle tread tread- +softly tread-wheel treadle treadmill treadwheel treason treasonist treasure +treasurer treasurership treasury treat treater treatise treatment treaty treble +trebuchet trebucket tree tree-frog tree-worship treehopper treelet treenail +treetop trefoil treillage trek trekker trellis trema trematoda trematode tremble +trembler trembles trembling tremella tremellaceae tremellales tremolite tremolo +tremor trenail trench trenchancy trencher trencherman trend trend-setter trent +trental trente-et-quarante trento trenton trepan trepang trephination trephine +trephritidae trepidation treponema treponemataceae trespass trespasser tress +trestle trestlework trevelyan trevino trevithick trews trey trf trh tri-chad +tri-iodomethane tri-iodothyronine triacetate triad triaenodon triage triakidae +trial trialeurodes triamcinolone triangle triangularity triangulation triangulum +triassic triatoma triavil triazine triazolam tribade tribadism tribalisation +tribalism tribalization tribe tribesman tribolium tribologist tribology +tribonema tribonemaceae tribromoethanol tribromomethane tribulation tribulus +tribunal tribune tribuneship tributary tribute tributyrin trice triceps +triceratops trichechidae trichechus trichina trichiniasis trichinosis trichion +trichiuridae trichloride trichlormethiazide trichloroethane trichloroethylene +trichloromethane trichobezoar trichoceros trichodesmium trichodontidae +trichoglossus tricholoma tricholomataceae trichomanes trichomonad trichomoniasis +trichophaga trichophyton trichoptera trichopteran trichopteron trichostema +trichostigma trichosurus trichotillomania trichotomy trichroism trichromacy +trichuriasis trichys trick tricker trickery trickiness trickle trickster +triclinium tricolor tricolour tricorn tricorne tricot tricycle tricyclic +tridacna tridacnidae trident tridymite triennial trier trifle trifler trifling +trifluoromethane trifoliata trifolium trifurcation trig triga trigeminal +trigeminus trigger triggerfish triggerman triglidae triglinae triglochin +triglyceride trigon trigonella trigonometrician trigonometry trigram +triiodomethane triiodothyronine trike trilateral trilby trilisa trill +trilliaceae trilling trillion trillionth trillium trilobite trilogy trim +trimaran trimer trimester trimipramine trimmer trimming trimmings trimness +trimorphodon trimox trimurti trine trinectes tringa trinidad trinidadian +trinitarian trinitarianism trinitroglycerin trinitrotoluene trinity trinket +trinketry trio triode triolein trionychidae trionyx triopidae triops triose +triostium trioxide trip trip-up tripalmitin tripe triphammer triphosphopyridine +triple triple-decker triple-spacing triplet tripletail tripleurospermum +triplicate triplicity tripling triplochiton tripod tripoli tripos tripper +triptych triquetral trireme trisaccharide triskaidekaphobia triskele triskelion +trismus trisomy tristan tristearin tristram trisyllable tritanopia triteness +tritheism tritheist triticum tritium tritoma triton triturus triumph triumvir +triumvirate trivet trivia triviality trivium trm trna trochanter troche trochee +trochilidae trochlear trochlearis trogium troglodyte troglodytes troglodytidae +trogon trogonidae trogoniformes troika trojan troll troller trolley trolleybus +trolling trollius trollop trollope trombicula trombiculiasis trombiculid +trombiculidae trombidiid trombidiidae trombone trombonist trompillo trondheim +troop trooper troops troopship tropaeolaceae tropaeolum trope trophobiosis +trophoblast trophotropism trophozoite trophy tropic tropicbird tropics +tropidoclonion tropism troponomy troponym troponymy tropopause troposphere trot +troth trotline trotsky trotskyism trotskyist trotskyite trotter trou-de-loup +troubadour trouble troublemaker troubler troubleshooter troublesomeness trough +trouncing troupe trouper trouser trousering trousseau trout trove trowel troy +truancy truant truce truck truckage trucker trucking truckle truckler truckling +truculence truculency trudge trudger true truelove trueness truffaut truffle +truism truman trumbo trumbull trump trumpery trumpet trumpet-wood trumpeter +trumpetfish trumpets trumpetwood trumping truncation truncheon truncocolumella +trundle trunk trunkfish trunks trunnel truss trust trustbuster trustee +trusteeship truster trustfulness trustiness trustingness trustor trustworthiness +trusty truth truthfulness try try-on tryout trypetidae trypsin trypsinogen +tryptophan tryptophane tryst tsa tsar tsarina tsaritsa tsaritsyn tsatske tsetse +tsh tshatshke tshiluba tsimshian tsine tsoris tsouic tss tsuga tsunami tsuris +tsushima tswana tt tuareg tuatara tub tub-cart tub-thumper tuba tubbiness tube +tubeless tuber tuberaceae tuberales tubercle tubercular tubercularia +tuberculariaceae tuberculin tuberculosis tuberose tuberosity tubful tubing +tubman tubocurarine tubule tubulidentata tucana tuchman tuck tuckahoe tucker +tucker-bag tucket tucson tudor tudung tues tuesday tufa tuff tuffet tuft tug +tug-of-war tugboat tugela tugger tughrik tugrik tuileries tuille tuition +tularaemia tularemia tulestoma tulip tulipa tulipwood tulle tully tulostoma +tulostomaceae tulostomataceae tulostomatales tulsa tulu tum tumble tumble-dryer +tumblebug tumbler tumbleweed tumbling tumbrel tumbril tumefaction tumescence +tumidity tumidness tummy tumor tumour tums tumult tumultuousness tumulus tun +tuna tunaburger tundra tune tune-up tunefulness tuner tung tunga tungstate +tungsten tungus tungusic tunguska tunguz tunic tunica tunicata tunicate tuning +tunis tunisia tunisian tunker tunnage tunnel tunney tunny tup tupaia tupaiidae +tupek tupelo tupi tupi-guarani tupik tupinambis tuppence tupungatito tupungato +turaco turacou turakoo turban turbatrix turbellaria turbidity turbidness +turbinal turbinate turbine turbofan turbogenerator turbojet turboprop turbot +turbulence turbulency turcoman turd turdidae turdinae turdus tureen turf turfan +turgenev turgidity turgidness turgor turgot turin turing turk turk's-cap +turkestan turkey turki turkic turkish turkistan turkmen turkmenia turkmenistan +turko-tatar turkoman turkomen turmeric turmoil turn turn-on turnabout turnaround +turnbuckle turncoat turncock turndown turner turnery turnicidae turning turnip +turnix turnkey turnoff turnout turnover turnpike turnround turnspit turnstile +turnstone turntable turnup turnverein turp turpentine turpin turpitude turps +turquoise turreae turret turritis tursiops turtle turtledove turtlehead +turtleneck turtler tuscaloosa tuscan tuscany tuscarora tush tushery tusk +tuskegee tusker tussah tussaud tusseh tusser tussilago tussle tussock tussore +tussur tutankhamen tutee tutelage tutelo tutor tutorial tutorship tutsan tutsi +tutti-frutti tutu tuvalu tux tuxedo tv tv-antenna twaddle twaddler twain twang +twat twayblade tweak tweed tweediness tweet tweeter tweezer twelfth twelfthtide +twelve twelvemonth twenties twentieth twenty twenty-eight twenty-five twenty- +four twenty-nine twenty-one twenty-seven twenty-six twenty-three twenty-twenty +twenty-two twerp twice-pinnate twiddle twiddler twig twilight twill twin twin- +prop twin-propeller-plane twinberry twine twiner twinflower twinge twinjet +twinkie twinkle twinkler twinkling twins twirl twirler twirp twist twister +twisting twistwood twit twitch twitching twitter twitterer two two-bagger two- +baser two-by-four two-dimensionality two-hitter two-piece two-seater two-step +two-thirds two-timer twofer twopence twosome tx tyche tycoon tying tyiyn tyke +tylenchidae tylenchus tylenol tyler tympan tympani tympanist tympanites +tympanitis tympanoplasty tympanuchus tympanum tyndale tyndall tyne type typeface +typescript typesetter typewriter typewriting typha typhaceae typhlopidae +typhoeus typhoid typhon typhoon typhus typicality typification typing typist +typo typographer typography typology tyr tyramine tyranni tyrannicide tyrannid +tyrannidae tyrannosaur tyrannosaurus tyrannus tyranny tyrant tyre tyro tyrocidin +tyrocidine tyrol tyrolean tyrosine tyrosinemia tyrothricin tyrr tyson tyto +tytonidae tzar tzara tzarina tzetze u u-boat u-drive u-turn u.k. u.s. u.s.a. +u308 uakari ubermensch ubiety ubiquinone ubiquitousness ubiquity ubykh uca uda +udder udmurt udometer ufa ufo uganda ugandan ugaritic ugli ugliness ugrian ugric +uhf uhland uighur uigur uintathere uintatheriidae uintatherium uk ukase uke +ukraine ukrainian ukranian ukrayina ukulele ulaanbaatar ulalgia ulama ulanova +ulatrophia ulcer ulceration ulema ulemorrhagia ulex ulfila ulfilas ulitis ull +ullage ullr ulmaceae ulmus ulna ulster ulteriority ultima ultimacy ultimate +ultimateness ultimatum ultracef ultracentrifugation ultracentrifuge +ultraconservative ultramarine ultramicroscope ultramontane ultramontanism +ultranationalism ultrasonography ultrasound ultrasuede ultraviolet ululation +ulva ulvaceae ulvales ulvophyceae ulysses uma umayyad umbel umbellales +umbellifer umbelliferae umbellularia umber umbilical umbilicus umbo umbra +umbrage umbrella umbrellawort umbria umbrian umbrina umbundu umlaut umma ummah +ump umpirage umpire un unabridged unacceptability unacceptableness +unadaptability unaffectedness unai unalterability unambiguity unanimity +unappetisingness unappetizingness unapproachability unassertiveness +unassumingness unattainableness unattractiveness unau unavailability +unavoidability unawareness unbalance unbecomingness unbelief unbeliever +unboundedness unbreakableness unceremoniousness uncertainness uncertainty +unchangeability unchangeableness unchangingness uncheerfulness uncial uncle +uncleanliness uncleanness unclearness uncloudedness uncomfortableness +uncommonness uncommunicativeness unconcern unconfessed uncongeniality +unconnectedness unconscientiousness unconscious unconsciousness unconstraint +unconventionality uncouthness uncovering uncreativeness unction unctuousness +uncus undecagon undependability undependableness underachievement underachiever +underbelly underbodice underbody underboss underbrush undercarriage undercharge +underclass underclassman underclothes underclothing undercoat undercurrent +undercut underdevelopment underdog underdrawers underestimate underestimation +underevaluation underexposure underfelt underframe underfur undergarment +undergrad undergraduate underground undergrowth underlay underlayment underline +underling underlip undernourishment underpants underpart underpass underpayment +underperformer underproduction underrating underreckoning underscore underseal +undersecretary underseller undershirt undershrub underside underskirt undersoil +understandability understanding understatement understructure understudy +undersurface undertaker undertaking undertide undertone undertow undervaluation +underwear underwing underwood underworld underwriter undesirability undesirable +undies undine undiscipline undoer undoing undress undset undulation +undutifulness unease uneasiness unemotionality unemployed unemployment +unenlightenment unequivocalness unesco unevenness unexchangeability +unexpectedness unfairness unfaithfulness unfamiliarity unfastener unfastening +unfavorableness unfavourableness unfeasibility unfeelingness unfitness unfolding +unfortunate unfriendliness ungainliness ungodliness ungracefulness +ungraciousness ungratefulness unguent unguiculata unguiculate unguis ungulata +ungulate unhappiness unhealthfulness unhealthiness unhelpfulness unholiness +unhurriedness uniat uniate unicef unicorn unicycle unicyclist unification +uniform uniformity uniformness unilateralism unilateralist unimportance +uninitiate uninsurability unintelligibility uninterestingness unio union +unionidae unionisation unionism unionist unionization uniqueness unison unit +unitard unitarian unitarianism uniting unitisation unitization unity univalve +universal universalism universality universe university unix unjustness +unkemptness unkindness unknowing unknowingness unknown unlawfulness unlikelihood +unlikeliness unlikeness unloading unmalleability unmanageableness unmanliness +unmasking unmentionable unmercifulness unmindfulness unnaturalness +unneighborliness unnilquadium unnoticeableness unobtrusiveness unoriginality +unorthodoxy unpalatability unpalatableness unperceptiveness unpermissiveness +unperson unpersuasiveness unpleasantness unpleasingness unpointedness +unpopularity unpredictability unpretentiousness unproductiveness unprofitability +unprofitableness unpropitiousness unprotectedness unq unquestionability +unquestionableness unraveler unraveller unrealism unreality unreason +unregularity unrelatedness unreliability unreliableness unrespectability +unresponsiveness unrest unrestraint unrighteousness unruliness unsanctification +unsanitariness unsatisfactoriness unsavoriness unscrupulousness unseasonableness +unseemliness unseen unselfconsciousness unselfishness unsightliness unsimilarity +unskillfulness unsnarling unsociability unsociableness unsolvability unsoundness +unstableness unsteadiness unsuitability unsuitableness unsusceptibility +untangling untermeyer unthoughtfulness untidiness untier untimeliness +untouchable untrustiness untrustworthiness untruth untruthfulness untying +untypicality ununbium ununhexium ununpentium ununquadium ununtrium unusefulness +unusualness unvariedness unveiling unwariness unwellness unwholesomeness +unwieldiness unwillingness unwiseness unworthiness unyieldingness up-bow up-tick +up-to-dateness upanishad upbeat upbraider upbraiding upbringing upcast update +updating updike updraft upending upgrade upheaval uphill upholder upholsterer +upholstery upjohn upkeep upland uplift uplifting uplink upper upper-normandy +uppercase uppercut uppishness uppityness uppp uppsala upright uprightness +uprising uproar uprooter upsala upset upsetter upshot upside upsilon upstage +upstager upstairs upstart upstroke upsurge uptake upthrow upthrust uptick uptime +uptown upturn upupa upupidae ur uracil uraemia ural-altaic uralic urals +uranalysis urania uraninite uranium uranologist uranology uranoplasty +uranoscopidae uranus uranyl urarthritis urate uratemia uraturia urbana +urbanisation urbanity urbanization urceole urchin urd urdu urea urease +uredinales uremia ureter ureteritis ureterocele ureterostenosis urethane urethra +urethritis urethrocele urex urey urga urge urgency urginea urging uria uriah +urial uricaciduria urinal urinalysis urination urinator urine url urmia urn +urobilin urobilinogen urocele urochesia urochezia urochord urochorda urochordata +urochordate urocyon urocystis urodele urodella urodynia urokinase urolith +urologist urology uropathy urophycis uropsilus uropygi uropygium urosaurus +ursidae ursinia ursus urth urtica urticaceae urticales urticaria urtication +urubupunga uruguay uruguayan urus us usa usability usableness usacil usaf usage +usance usbeg usbek uscb usda use useableness used-car usefulness uselessness +user ushas usher usherette using uskub usmc usn usnea usneaceae usps ussher ussr +usss ustilaginaceae ustilaginales ustilaginoidea ustilago ustinov usualness +usufruct usufructuary usuli usumbura usurer usurpation usurper usury ut ut1 uta +utah utahan utahraptor utc ute utensil uterus utica utilisation utiliser +utilitarian utilitarianism utility utilization utilizer utmost utn utnapishtim +uto-aztecan utopia utopian utopianism utrecht utricle utricularia utriculus +utrillo utterance utterer uttermost utterness utu utug uub uuh uup uuq uut uv +uvea uveitis uvula uvularia uvulariaceae uvulitis uvulopalatopharyngoplasty ux. +uxor uxoricide uxoriousness uygur uzbak uzbeg uzbek uzbekistan uzi v v-1 v-day +v.p. va vac vacancy vacation vacationer vacationing vacationist vaccaria vaccina +vaccinating vaccination vaccinator vaccine vaccinee vaccinia vaccinium vaccinum +vacillation vacillator vacuity vacuolation vacuole vacuolisation vacuolization +vacuousness vacuum vaduz vagabond vagabondage vagary vagina vaginismus vaginitis +vaginocele vagrancy vagrant vagueness vagus vainglory vaisakha vaishnava +vaishnavism vaisnavism vaisya vajra valance valdecoxib valdez valdosta vale +valediction valedictorian valedictory valence valencia valenciennes valency +valentine valerian valeriana valerianaceae valerianella valet valetta +valetudinarian valetudinarianism valgus valhalla vali valiance valiancy +validation validity validness valine valise valium valkyrie vallecula valletta +valley vallisneria valmy valois valor valorousness valour valparaiso valsartan +valse valuable valuableness valuation valuator value value-system valuelessness +valuer values valve valvelet valvotomy valvula valvule valvulitis valvulotomy +vambrace vamp vamper vampire vampirism van vanadate vanadinite vanadium vanbrugh +vancocin vancomycin vancouver vanda vandal vandalism vanderbilt vandyke vane +vanellus vanern vanessa vanguard vangueria vanilla vanillin vanir vanisher +vanishing vanity vanquisher vantage vanuatu vanzetti vapidity vapidness vapor +vaporing vaporisation vaporiser vaporization vaporizer vaporousness vapors +vapour vapourousness vapours vaquero vaquita var var. vara varan varanidae +varanus vardenafil varese vargas variability variable variableness variance +variant variate variation varicella varicocele varicosis varicosity variedness +variegation varietal variety variola variolation variolization variometer +variorum varix varlet varment varmint varna varnish varnisher varro varsity +varuna varus vas vasarely vasari vascularisation vascularity vascularization +vasculitis vase vase-fine vasectomy vaseline vasoconstriction vasoconstrictive +vasoconstrictor vasodilation vasodilative vasodilator vasomax vasopressin +vasopressor vasosection vasotec vasotomy vasovasostomy vasovesiculitis vassal +vassalage vastness vat vatican vaticination vaticinator vaudeville vaudevillian +vaudois vaughan vault vaulter vaulting vaunt vaunter vaux vayu vcr vd vdu veadar +veal veau veblen vector veda vedalia vedanga vedanta vedism vedist veering veery +veg vega vegan vegetable vegetarian vegetarianism vegetation veggie vehemence +vehicle veil veiling vein vela velar velazquez velban velcro veld veldt velleity +vellication vellum velocipede velociraptor velocity velodrome velour velours +veloute velum velveeta velvet velvet-leaf velveteen velvetleaf velvetweed vena +venality venation vendee vendemiaire vender vendetta vending vendition vendor +vendue veneer veneering venerability venerableness veneration venerator +veneridae venesection venetia venetian veneto venezia venezia-euganea venezuela +venezuelan vengeance vengefulness venice venipuncture venire venison venn +venogram venography venom vent vent-hole ventail venter venthole ventilation +ventilator venting ventner ventolin ventose ventricle ventriculus ventriloquism +ventriloquist ventriloquy venture venturer venturesomeness venturi venue venula +venule venus venushair veps vepse vepsian veracity veracruz veranda verandah +verapamil veratrum verb verbalisation verbaliser verbalism verbalization +verbalizer verbascum verbena verbenaceae verbesina verbiage verbolatry +verboseness verbosity verdancy verdandi verdi verdicchio verdict verdigris +verdin verdolagas verdun verdure verge verger vergil verification verifier +verisimilitude verity verlaine vermeer vermicelli vermicide vermiculation +vermiculite vermifuge vermilion vermin vermis vermont vermonter vermouth +vernacular vernation verne verner vernier vernix vernonia verona veronal +veronese veronica verpa verrazano verrazzano verruca versace versailles versant +versatility verse versed versicle versification versifier version verso verst +vertebra vertebrata vertebrate vertex verthandi vertical verticality +verticalness verticil verticilliosis verticillium vertigo vertu vervain verve +vervet verwoerd very-light vesalius vesey vesica vesicant vesicaria vesication +vesicatory vesicle vesicopapule vesiculation vesiculitis vesiculovirus vespa +vespasian vesper vespers vespertilio vespertilionid vespertilionidae vespid +vespidae vespucci vespula vessel vest vesta vestal vestibule vestige vestiture +vestment vestris vestry vestryman vestrywoman vesture vesuvian vesuvianite +vesuvius vet vetch vetchling vetchworm veteran veterinarian veterinary vetluga +veto vexation vexer vfw vhf vi viability viaduct viagra vial viand viands +viatication viaticus vibe vibes vibist viborg vibraharp vibramycin vibrancy +vibraphone vibraphonist vibration vibrato vibrator vibrio vibrion vibrissa +viburnum vicar vicar-general vicarage vicariate vicarship vice vice-presidency +vice-regent vicegerent vicereine viceroy viceroyalty viceroyship vichy +vichyssoise vicia vicinity viciousness vicissitude vicksburg victim +victimisation victimiser victimization victimizer victor victoria victorian +victoriana victory victrola victual victualer victualler victuals vicugna vicuna +vidal vidalia vidar video videocassette videodisc videodisk videotape vidua +vienna vienne vientiane vieques vietnam vietnamese view viewer viewers +viewfinder viewgraph viewing viewpoint vigee-lebrun vigil vigilance vigilante +vigilantism vigna vignette vigor vigorish vigour vii viii viking vila vileness +vilification vilifier villa villa-lobos village villager villahermosa villain +villainage villainess villainousness villainy villard villein villeinage villoma +villon villus vilna vilnius vilno vim viminaria vinaigrette vinblastine vinca +vincetoxicum vincristine vindication vindicator vindictiveness vine vinegar +vinegariness vinegarishness vinegarroon vinegarweed vinery vineyard vingt-et-un +viniculture vinifera vinification vino vinogradoff vinson vintage vintager +vintner vinyl vinylbenzene vinylite viocin viol viola violaceae violation +violator violence violet violin violinist violist violoncellist violoncello +viomycin viosterol vioxx vip viper vipera viperidae viracept viraemia virago +viramune virazole virchow viremia vireo vireonidae virga virgil virgilia virgin +virginal virginia virginian virginity virgo virgule viricide viridity +virilisation virilism virility virilization virino virion viroid virologist +virology virtu virtue virtuosity virtuoso virtuousness virucide virulence +virulency virus virusoid vis-a-vis visa visage visayan viscaceae viscacha +viscera viscidity viscidness viscometer viscometry visconti viscose viscosimeter +viscosimetry viscosity viscount viscountcy viscountess viscounty viscousness +viscum viscus vise vishnu vishnuism visibility visibleness visigoth vision +visionary visit visitant visitation visiting visitor visken visor vista vistaril +vistula visualisation visualiser visualization visualizer vitaceae vitalisation +vitaliser vitalism vitalist vitality vitalization vitalizer vitalness vitals +vitamin vitellus vithar vitharr vitiation viticulture viticulturist vitidaceae +vitiligo vitis vitrectomy vitrification vitrine vitriol vittaria vittariaceae +vituperation vitus viva vivacity vivaldi vivarium viverra viverricula viverridae +viverrinae viverrine vividness vivification vivisection vivisectionist vixen +viyella vizcaino vizier viziership vizor vizsla vladivostok vlaminck vldl vlf +vocable vocabulary vocal vocalisation vocaliser vocalism vocalist vocalization +vocalizer vocalizing vocation vocative vociferation vociferator vodka vodoun +vogue vogul voice voicelessness voicemail voiceprint voicer voicing void +voidance voider voiding voile vol-au-vent volaille volans volapuk volary +volatile volatility volcanism volcano volcanology vole volga volgaic volgograd +volition volkhov volley volleyball volt volt-ampere volta voltage voltaic +voltaire voltaren volte-face voltmeter volubility volume volumeter voluminosity +voluminousness volund voluntary volunteer voluptuary voluptuousness volute +volution volva volvaria volvariaceae volvariella volvocaceae volvocales volvox +volvulus vombatidae vomer vomit vomiter vomiting vomitive vomitory vomitus +vonnegut voodoo voodooism voraciousness voracity vortex vorticella votary vote +voter voting votyak vouchee voucher vouge voussoir vouvray vow vowel vower vox +voyage voyager voyeur voyeurism voznesenski vroom vt vuillard vulcan +vulcanisation vulcaniser vulcanite vulcanization vulcanizer vulcanology +vulgarian vulgarisation vulgariser vulgarism vulgarity vulgarization vulgarizer +vulgate vulnerability vulpecula vulpes vultur vulture vulva vulvectomy vulvitis +vulvovaginitis w w.c. w.m.d. wa wabash wac wacko waco wad wadding waddle waddler +wade wader waders wadi wading wads wafer waffle waffler waft wafture wag wage +wager wagerer wages waggery waggishness waggle waggon waggoner waggonwright +wagner wagnerian wagon wagon-lit wagoner wagonwright wagram wagtail wahabi +wahabism wahhabi wahhabism wahoo wahunsonacock wahvey waif waikiki wail wailer +wailing wain wainscot wainscoting wainscotting wainwright waist waistband +waistcloth waistcoat waistline wait waite waiter waiting waitress waiver wajda +wakashan wake wake-robin wakeboard wakefulness wakening waker waking walapai +walbiri waldenses waldheim waldmeister wale wales walesa walhalla walk walk-in +walk-on walk-through walk-up walkabout walkaway walker walkie-talkie walking +walkingstick walkman walkout walkover walkway walky-talky wall wall-paperer +wallaby wallace wallah wallboard wallenstein waller wallet walleye wallflower +walloon walloons wallop walloper walloping wallow wallpaper wallpaperer wally +walnut walpole walrus walter walton waltz waltzer wampanoag wampee wampum +wampumpeag wan wanamaker wand wandala wanderer wandering wanderlust wandflower +wane wangle wangler wangling waning wank wanker wannabe wannabee wanness want +wanter wanton wantonness wapiti war waratah warble warbler warburg ward ward- +heeler warden wardenship warder wardership wardress wardrobe wardroom ware +warehouse warehouseman warehouser warehousing warfare warfarin warhead warhol +warhorse wariness warji warlock warlord warlpiri warm-up warmer warmheartedness +warming warmness warmonger warmongering warmth warner warning warp warpath +warping warplane warragal warrant warrantee warranter warrantor warranty warren +warrener warrigal warrior warsaw warship warszawa wart warthog wartime wartweed +wartwort warwick wasabi wash wash-and-wear washables washbasin washboard +washbowl washcloth washday washer washerman washerwoman washhouse washing +washing-up washington washingtonian washout washrag washroom washstand washtub +washup washwoman wasp wassail wassailer wassermann wastage waste waste-yard +wastebasket wastebin wastefulness wasteland waster wastewater wasteweir +wasteyard wasting wastrel watch watchband watchdog watcher watchfulness watching +watchmaker watchman watchstrap watchtower watchword water water-color water- +colour water-mint water-rate water-shield water-skiing water-target waterbird +waterbuck waterbury watercannon watercolor watercolorist watercolour +watercolourist watercourse watercraft watercress waterdog watered-silk waterer +waterfall waterfinder waterford waterfowl waterfront watergate wateriness +watering waterleaf waterlessness waterline waterloo waterman watermark watermeal +watermelon waterpower waterproof waterproofing waters waterscape watershed +waterside waterskin waterspout watertown waterway waterweed waterwheel +waterworks wats watson watt watt-hour wattage watteau wattle wattmeter watts +watusi watutsi waugh wausau wave wave-off waveband waveform wavefront waveguide +wavelength wavelet wavell waver waverer wavering waviness waving waw wax wax- +chandler waxberry waxflower waxiness waxing waxmallow waxwing waxwork waxycap +way waybill wayfarer wayfaring wayland wayne ways wayside wb wbc wbn wbs +weakener weakening weakfish weakling weakness weal weald wealth wealthiness +weaning weapon weaponry wear wearable wearer weariness wearing weasel weather +weatherboard weatherboarding weathercock weatherglass weatherliness weatherman +weatherstrip weatherstripping weathervane weave weaver weaverbird weaving web +webb webbing webcam weber webfoot webmaster webpage website webster webworm wed +wedding wedge wedgie wedgwood wedlock wednesday wee weed weed-whacker weeder +weedkiller weeds week weekday weekend weekender weekly weeknight weeness weenie +weeper weepiness weeping weevil weewee weft wegener wei weigela weighbridge +weigher weighing weight weightiness weighting weightlessness weightlift +weightlifter weightlifting weil weill weimar weimaraner weinberg weir weird +weirdie weirdness weirdo weirdy weisenheimer weismann weissbier weisshorn +weizenbier weizenbock weizmann weka welcher welcome welcomer weld welder welding +weldment welfare welkin well well-being well-wisher well-wishing wellbeing +wellerism welles wellhead wellington wellness wellpoint wells wellspring welsh +welsher welshman welt weltanschauung welter welterweight weltschmerz welty +welwitschia welwitschiaceae wembley wen wen-ti wench wencher werewolf werfel +wernicke weser wesley wesleyan wesleyanism wesleyism wessex west west-sider +wester westerly western westerner westernisation westernization westinghouse +westminster weston westward wet wet-nurse wetback wether wetland wetness +wetnurse wetter wetting whack whacker whacking whacko whale whaleboat whalebone +whaler whalesucker whammy whang wharf wharfage wharton whatchamacallit +whatchamacallum whatnot whatsis wheal wheat wheat-grass wheatear wheatfield +wheatflake wheatgrass wheatley wheatstone wheatworm wheedler wheedling wheel +wheelbarrow wheelbase wheelchair wheeler wheelhouse wheeling wheelwork +wheelwright wheeze wheeziness whelk whelp whereabouts wherefore wherewithal +wherry whetstone whey whicker whidah whiff whiffer whiffletree whig while whim +whimper whimsey whimsicality whimsy whin whinberry whinchat whine whiner whinny +whinstone whip whip-round whip-scorpion whip-snake whipcord whiplash whipper +whipper-in whippersnapper whippet whipping whippletree whippoorwill whipsaw +whipsnake whipstitch whipstitching whiptail whir whirl whirlaway whirler +whirligig whirling whirlpool whirlwind whirlybird whirr whirring whisk whisker +whiskers whiskey whisky whisper whisperer whispering whist whistle whistle- +blower whistleblower whistler whistling whit whit-tuesday white whitebait +whitecap whitecup whiteface whitefish whitefly whitehall whitehead whitehorse +whitelash whitener whiteness whitening whiteout whitetail whitethorn whitethroat +whitewash whitewater whitewood whitey whiting whitlavia whitlow whitlowwort +whitman whitmonday whitney whitsun whitsunday whitsuntide whittier whittle +whittler whitweek whiz whiz-kid whizbang whizz whizz-kid whizzbang who whodunit +whole wholeheartedness wholeness wholesale wholesaler wholesomeness whoop +whoopee whooper whoosh whopper whore whoredom whorehouse whoremaster whoremonger +whoreson whorl whorlywort whortleberry why whydah wi wicca wiccan wichita wick +wickedness wicker wickerwork wicket wicket-keeper wickiup wickliffe wickup +wiclif wicopy wide-body wideness widening widgeon widget widow widower widowhood +widowman width wieland wiener wienerwurst wiesbaden wiesel wiesenboden +wiesenthal wife wiffle wifi wig wigeon wigging wiggle wiggler wiggliness wight +wigmaker wigner wigwam wikiup wild wildcat wildcatter wilde wildebeest wilder +wilderness wildfire wildflower wildfowl wilding wildlife wildness wile +wilfulness wiliness wilkes wilkins wilkinson will will-o'-the-wisp willamette +willard willebrand willet willfulness williams williamstown willies willing +willingness willis willow willow-pattern willowherb willowware willpower +wilmington wilmut wilno wilson wilt wilting wilton wimble wimbledon wimp wimple +win wince wincey winceyette winch winchester winckelmann wind windage windaus +windbag windbreak windbreaker windburn windcheater winder windfall windflower +windhoek windiness winding winding-clothes winding-sheet windjammer windlass +windlessness windmill window window-washing windowpane windows windowsill +windpipe windscreen windshield windsock windsor windstorm windtalker windup +windward wine wine-colored wine-coloured wineberry wineglass winemaker +winemaking winepress winery winesap wineskin winfred wing wing-nut wingback +winger wingman wings wingspan wingspread wingstem wink winker winking winkle +winnebago winner winning winnings winnipeg winnow winnowing wino winslow +winsomeness winston-salem winter wintera winteraceae winterberry wintergreen +wintertime wintun wipe wipeout wiper wire wire-puller wirehair wireless wireman +wirer wiretap wiretapper wirework wireworm wiriness wiring wisconsin +wisconsinite wisdom wise wiseacre wisecrack wiseness wisenheimer wisent wish +wish-wash wishbone wishfulness wishing wisp wistaria wister wisteria wistfulness +wit witch witch-hunt witch-hunter witchcraft witchery witchgrass witching +withdrawal withdrawer withdrawnness withe withering withers witherspoon +withholder withholding withstander withy witloof witness witnesser wits +wittgenstein witticism wittiness wittol witwatersrand wivern wiz wizard wizardry +wlan wmd wmo wnw woad woadwaxen wobble wobbler wobbly wodan wodehouse woden woe +woefulness wog wok wold wolf wolfbane wolfe wolff wolffia wolffiella wolffish +wolfhound wolfman wolfram wolframite wolfsbane wollaston wollastonite +wollstonecraft wolof wolverine woman woman-worship womanhood womaniser +womanishness womanizer womankind womanlike womanliness womb wombat won wonder +wonderberry wonderer wonderfulness wonderland wonderment wonk wont wonton wood +wood-creeper wood-fern wood-frog wood-rat woodbine woodborer woodbury woodcarver +woodcarving woodchuck woodcock woodcraft woodcreeper woodcut woodcutter +woodenness woodenware woodfern woodgrain woodgraining woodhewer woodhull +woodiness woodland woodlet woodlouse woodman woodpecker woodpile woodruff woods +woodscrew woodshed woodsia woodsiness woodsman woodward woodwardia woodwaxen +woodwind woodwork woodworker woodworking woodworm wooer woof woofer wooing wool +woolen woolf woolgatherer woolgathering woollcott woollen woolley woolsorter +woolworth wop worcester worcestershire word word-painter word-painting word- +splitting word-worship wordbook wordfinder wordiness wording wordmonger wordnet +wordplay words wordsmith wordsworth work work-board work-clothes work-clothing +work-in work-shirt workaholic workaholism workbag workbasket workbench workboard +workbook workbox workday worker workfellow workflow workforce workhorse +workhouse working workingman workings workload workman workmanship workmate +workout workpiece workplace workroom works worksheet workshop workspace +workstation worktable workwear workweek world world-beater world-weariness +worldliness worldling worm wormcast wormhole wormseed wormwood worrier worriment +worry worrying worrywart worse worsening worship worshiper worshipper worst +worsted wort worth worthiness worthlessness worthwhileness worthy wotan wouk +wound wounded wounding wow wpm wrack wraith wrangle wrangler wrangling wrap +wraparound wrapper wrapping wrasse wrath wreath wreck wreckage wrecker wreckfish +wrecking wren wren-tit wrench wrester wrestle wrestler wrestling wretch +wretchedness wrick wriggle wriggler wright wring wringer wrinkle wrist wristband +wristlet wristwatch writ write-down write-in write-off writer writing writings +wroclaw wrong wrongdoer wrongdoing wrongfulness wrongness wrymouth wryneck wsw +wtc wto wtv wu wuerzburg wuhan wulfenite wulfila wurlitzer wurtzite wurzburg +wuss wv www wy wyat wyatt wycherley wyclif wycliffe wye wyeth wykeham wykehamist +wyler wylie wynette wynfrith wynnea wyoming wyomingite wyrd wyszynski wytensin +wyvern x x-axis x-radiation x-ray x-raying x-scid xanax xanthate xanthelasma +xanthemia xanthine xanthium xanthoma xanthomatosis xanthomonad xanthomonas +xanthophyceae xanthophyl xanthophyll xanthopsia xanthorrhoeaceae xanthorroea +xanthosis xanthosoma xantusiidae xavier xc xe xenarthra xenicidae xenicus +xenogenesis xenograft xenolith xenon xenophanes xenophobia xenophon xenopodidae +xenopus xenorhyncus xenosauridae xenosaurus xenotime xenotransplant +xenotransplantation xeranthemum xerobates xeroderma xerodermia xerography xeroma +xerophile xerophthalmia xerophthalmus xerophyllum xerophyte xeroradiography +xerostomia xerotes xerox xhosa xi xian xii xiii xinjiang xiphias xiphiidae +xiphosura xiv xix xizang xl xmas xt xtc xv xvi xvii xviii xx xxi xxii xxiii xxiv +xxix xxv xxvi xxvii xxviii xxx xxy xxy-syndrome xy xylaria xylariaceae xylem +xylene xylocaine xylocopa xylol xylomelum xylophone xylophonist xylopia xylose +xylosma xyphophorus xyridaceae xyridales xyris xyy y y-axis y2k yacca yacht +yachting yachtsman yachtswoman yack yafo yagi yahi yahoo yahve yahveh yahwe +yahweh yajur-veda yak yakety-yak yakima yakut yakuza yale yalta yaltopya yalu +yam yama yamaltu yamamoto yamani yamoussukro yana yanan yang yangon yangtze yank +yankee yankee-doodle yanker yanquapin yaounde yap yard yardage yardarm yardbird +yarder yardgrass yardie yardman yardmaster yardstick yarmelke yarmulka yarmulke +yarn yarrow yashmac yashmak yastrzemski yataghan yatobyo yautia yavapai yaw yawl +yawn yawner yawning yaws yay yazoo yb ybit yea year year-end yearbook yearling +yearly yearner yearning years yeast yeats yeddo yedo yekaterinoslav yell yeller +yelling yellow yellow-blindness yellowbird yellowcake yellowfin yellowhammer +yellowknife yellowlegs yellowness yellowstone yellowtail yellowthroat yellowwood +yelp yelping yemen yemeni yen yenisei yenisei-samoyed yeniseian yenisey yenta +yeoman yeomanry yerevan yerkes yersin yerupaja yerwa-maiduguri yes yes-man +yeshiva yeshivah yesterday yesteryear yeti yevtushenko yew yezo ygdrasil +yggdrasil yhvh yhwh yi yib yibit yid yiddish yield yielder yielding yin yip yips +yisrael ylang-ylang ylem ymir yo-yo yob yobbo yobibit yobibyte yobo yodel +yodeling yodeller yodh yoga yogacara yoghourt yoghurt yogi yogurt yoke yokel +yokohama yokuts yolk yore york yorkshire yorktown yoruba yosemite yottabit +yottabyte you-drive young youngness youngster youngstown younker youth youth-on- +age youthfulness yowl ypres yquem yr ytterbite ytterbium yttrium yuan yucatan +yucatec yucateco yucca yue yugoslav yugoslavia yugoslavian yukawa yukon yule +yuletide yuma yuman yunnan yuppie yurak-samoyed yurt z z-axis zaar zabaglione +zabrze zacharias zag zaglossus zagreb zaharias zaire zairean zairese zakat +zalcitabine zalophus zama zaman zamang zambezi zambia zambian zamboni zamia +zamiaceae zangwill zannichellia zannichelliaceae zantac zantedeschia zanthoxylum +zanuck zany zanzibar zap zapata zapodidae zapotec zapotecan zapper zapus +zaragoza zarathustra zarf zaria zarontin zarpanit zarqa zayin zb zbit zdv zea +zeal zealand zealander zealot zealotry zeaxanthin zebibit zebibyte zebra +zebrawood zebu zechariah zed zee zeeman zeidae zeitgeist zen zenaidura zend +zend-avesta zenith zeno zeolite zeomorphi zep zephaniah zephyr zeppelin zeppo +zero zest zestfulness zestril zeta zetland zettabit zettabyte zeugma zeus zhou +zhuang zhukov zib zibit zidovudine ziegfeld ziegler zig zigadene zigadenus +ziggurat zigzag zikkurat zikurat zilch zill zillion zimbabwe zimbabwean +zimbalist zimmer zinacef zinc zinfandel zing zinger zingiber zingiberaceae +zinjanthropus zinkenite zinnemann zinnia zinnwaldite zinsser zinzendorf zion +zionism zionist zip ziphiidae zipper zippo zirbanit zircon zirconia zirconium +zit zither zithern zithromax ziti zizania ziziphus zizz zloty zn zoanthropy +zoarces zoarcidae zocor zodiac zoisia zola zoloft zomba zombi zombie zona zone +zoning zonotrichia zonula zonule zoo zooerastia zooerasty zooflagellate zooid +zoolatry zoologist zoology zoom zoomastigina zoomastigote zoomorphism zoonosis +zoophilia zoophilism zoophobia zoophyte zooplankton zoopsia zoospore zootoxin +zori zoril zoroaster zoroastrian zoroastrianism zoster zostera zosteraceae +zovirax zoysia zr zsigmondy zu zubird zucchini zukerman zulu zuni zurich zurvan +zurvanism zweig zwieback zwingli zworykin zydeco zygnema zygnemales +zygnemataceae zygnematales zygocactus zygoma zygomatic zygomycetes zygomycota +zygomycotina zygophyllaceae zygophyllum zygoptera zygospore zygote zygotene +zyloprim zymase zymogen zymology zymolysis zymosis zymurgy zyrian +""".split()) diff --git a/spacy/en/lemmatizer/_nouns_irreg.py b/spacy/en/lemmatizer/_nouns_irreg.py new file mode 100644 index 000000000..08c5c46ae --- /dev/null +++ b/spacy/en/lemmatizer/_nouns_irreg.py @@ -0,0 +1,2056 @@ +# coding: utf8 +from __future__ import unicode_literals + + +NOUNS_IRREG = { + "aardwolves": ("aardwolf",), + "abaci": ("abacus",), + "aboideaux": ("aboideau",), + "aboiteaux": ("aboiteau",), + "abscissae": ("abscissa",), + "acanthi": ("acanthus",), + "acari": ("acarus",), + "acciaccature": ("acciaccatura",), + "acetabula": ("acetabulum",), + "achaemenidae": ("achaemenid",), + "achaemenides": ("achaemenid",), + "acicula": ("aciculum",), + "aciculae": ("acicula",), + "acini": ("acinus",), + "acre-feet": ("acre-foot",), + "acromia": ("acromion",), + "actiniae": ("actinia",), + "actinozoa": ("actinozoan",), + "addenda": ("addendum",), + "adenocarcinomata": ("adenocarcinoma",), + "adenomata": ("adenoma",), + "adieux": ("adieu",), + "adyta": ("adytum",), + "aecia": ("aecium",), + "aecidia": ("aecidium",), + "aerobia": ("aerobium",), + "agents-general": ("agent-general",), + "aggiornamenti": ("aggiornamento",), + "agnomina": ("agnomen",), + "agones": ("agon",), + "agorae": ("agora",), + "agouties": ("agouti",), + "aides-de-camp": ("aide-de-camp",), + "aides-memoire": ("aide-memoire",), + "aids-de-camp": ("aid-de-camp",), + "alae": ("ala",), + "alewives": ("alewife",), + "alkalies": ("alkali",), + "allodia": ("allodium",), + "alluvia": ("alluvium",), + "alodia": ("alodium",), + "alto-relievos": ("alto-relievo", "alto-rilievo",), + "altocumuli": ("altocumulus",), + "altostrati": ("altostratus",), + "alulae": ("alula",), + "alumnae": ("alumna",), + "alumni": ("alumnus",), + "alveoli": ("alveolus",), + "amanuenses": ("amanuensis",), + "ambulacra": ("ambulacrum",), + "amebae": ("ameba",), + "amici_curiae": ("amicus_curiae",), + "amnia": ("amnion",), + "amniocenteses": ("amniocentesis",), + "amoebae": ("amoeba",), + "amoebiases": ("amoebiasis",), + "amoraim": ("amora",), + "amoretti": ("amoretto",), + "amorini": ("amorino",), + "amphiarthroses": ("amphiarthrosis",), + "amphicia": ("amphithecium",), + "amphimixes": ("amphimixis",), + "amphioxi": ("amphioxus",), + "amphisbaenae": ("amphisbaena",), + "amphorae": ("amphora",), + "ampullae": ("ampulla",), + "amygdalae": ("amygdala",), + "anabases": ("anabasis",), + "anacolutha": ("anacoluthon",), + "anacruses": ("anacrusis",), + "anaerobia": ("anaerobium",), + "anagnorises": ("anagnorisis",), + "analemmata": ("analemma",), + "analyses": ("analysis",), + "anamneses": ("anamnesis",), + "anamorphoses": ("anamorphosis",), + "anastomoses": ("anastomosis",), + "anatyxes": ("anaptyxis",), + "ancones": ("ancon", "ancone",), + "androclinia": ("androclinium",), + "androecia": ("androecium",), + "androsphinges": ("androsphinx",), + "andtheridia": ("antheridium",), + "angelfishes": ("angelfish",), + "angiomata": ("angioma",), + "animalcula": ("animalculum",), + "anlagen": ("anlage",), + "annattos": ("anatto", "annatto",), + "annuli": ("annulus",), + "antae": ("anta",), + "antalkalies": ("antalkali",), + "antefixa": ("antefix",), + "antennae": ("antenna",), + "antependia": ("antependium",), + "anthelia": ("anthelion",), + "anthelices": ("anthelix",), + "anthemia": ("anthemion",), + "antheridia": ("antheridium",), + "anthodia": ("anthodium",), + "anthozoa": ("anthozoan",), + "anthraces": ("anthrax",), + "anticlinoria": ("anticlinorium",), + "antihelices": ("antihelix",), + "antiheroes": ("antihero",), + "antisera": ("antiserum",), + "antitheses": ("antithesis",), + "antitragi": ("antitragus",), + "antra": ("antrum",), + "anus": ("anus",), + "aortae": ("aorta",), + "aphelia": ("aphelion",), + "aphides": ("aphis",), + "apices": ("apex",), + "apodoses": ("apodosis",), + "apomixes": ("apomixis",), + "aponeuroses": ("aponeurosis",), + "apophyses": ("apophysis",), + "aposiopeses": ("aposiopesis",), + "apothecia": ("apothecium",), + "apotheoses": ("apotheosis",), + "apparatus": ("apparatus",), + "appendices": ("appendix",), + "appoggiature": ("appoggiatura",), + "apsides": ("apsis",), + "aquae": ("aqua",), + "aquaria": ("aquarium",), + "araglis": ("argali",), + "arboreta": ("arboretum",), + "arcana": ("arcanum",), + "archegonia": ("archegonium",), + "archerfishes": ("archerfish",), + "archesporia": ("archesporium",), + "archipelagoes": ("archipelago",), + "arcs-boutants": ("arc-boutant",), + "areolae": ("areola",), + "argali": ("argali",), + "argumenta": ("argumentum",), + "ariette": ("arietta",), + "aristae": ("arista",), + "armamentaria": ("armamentarium",), + "arses": ("arsis",), + "artal": ("rotl",), + "artel": ("rotl",), + "arterioscleroses": ("arteriosclerosis",), + "aruspices": ("aruspex",), + "asceses": ("ascesis",), + "asci": ("ascus",), + "ascidia": ("ascidium",), + "ascogonia": ("ascogonium",), + "ashes": ("ash",), + "ashkenazim": ("ashkenazi",), + "aspergilla": ("aspergillum",), + "aspergilli": ("aspergillus",), + "aspergilloses": ("aspergillosis",), + "aspersoria": ("aspersorium",), + "assegais": ("assagai", "assegai",), + "astragali": ("astragalus",), + "asyndeta": ("asyndeton",), + "atheromata": ("atheroma",), + "atheroscleroses": ("atherosclerosis",), + "atmolyses": ("atmolysis",), + "atria": ("atrium",), + "attorneys-at-law": ("attorney-at-law",), + "auditoria": ("auditorium",), + "aurae": ("aura",), + "aurar": ("eyrir",), + "aurei": ("aureus",), + "auriculae": ("auricula",), + "aurorae": ("aurora",), + "auspices": ("auspex", "auspice",), + "autocatalyses": ("autocatalysis",), + "autochthones": ("autochthon",), + "automata": ("automaton",), + "autos-da-fe": ("auto-da-fe",), + "avitaminoses": ("avitaminosis",), + "axes": ("ax", "axis",), + "axillae": ("axilla",), + "bacchantes": ("bacchant", "bacchante",), + "bacchii": ("bacchius",), + "bacilli": ("bacillus",), + "bacteriostases": ("bacteriostasis",), + "bacula": ("baculum",), + "bains-marie": ("bain-marie",), + "bains_marie": ("bain_marie",), + "ballistae": ("ballista",), + "bambini": ("bambino",), + "bandeaux": ("bandeau",), + "banditti": ("bandit",), + "bani": ("ban",), + "banjoes": ("banjo",), + "barklice": ("barklouse",), + "barramundies": ("barramundi",), + "bases": ("base", "basis",), + "bases-on-balls": ("base_on_balls",), + "bases_on_balls": ("base_on_balls",), + "basidia": ("basidium",), + "basileis": ("basileus",), + "bassi": ("basso",), + "bastinadoes": ("bastinado",), + "bateaux": ("bateau",), + "batfishes": ("batfish",), + "beadsmen": ("beadsman", "bedesman",), + "beaux": ("beau",), + "beches-de-mer": ("beche-de-mer",), + "beeves": ("beef",), + "behooves": ("behoof",), + "bersaglieri": ("bersagliere",), + "bhishties": ("bheesty", "bhishti",), + "bibliothecae": ("bibliotheca",), + "bicennaries": ("bicentenary", "bicentennial",), + "bijoux": ("bijou",), + "bilboes": ("bilbo",), + "billets-doux": ("billet-doux",), + "billfishes": ("billfish",), + "bimboes": ("bimbo",), + "bisectrices": ("bisectrix",), + "blackfeet": ("blackfoot",), + "blackfishes": ("blackfish",), + "blastemata": ("blastema",), + "blastulae": ("blastula",), + "blindfishes": ("blindfish",), + "blowfishes": ("blowfish",), + "bluefishes": ("bluefish",), + "boarfishes": ("boarfish",), + "bok": ("boschbok",), + "boleti": ("boletus",), + "bolivares": ("bolivar",), + "bolsheviki": ("bolshevik",), + "bonefishes": ("bonefish",), + "bongoes": ("bongo",), + "bonitoes": ("bonito",), + "booklice": ("booklouse",), + "bookshelves": ("bookshelf",), + "boraces": ("borax",), + "borborygmi": ("borborygmus",), + "bordereaux": ("bordereau",), + "botargoes": ("botargo",), + "box-kodaks": ("box_kodak",), + "boxfishes": ("boxfish",), + "brachia": ("brachium",), + "brainchildren": ("brainchild",), + "branchiae": ("branchia",), + "brants": ("brant", "brent",), + "bravadoes": ("bravado",), + "bravoes": ("bravo",), + "bregmata": ("bregma",), + "brethren": ("brother",), + "broadcast_media": ("broadcast_medium",), + "broadleaves": ("broadleaf",), + "bronchi": ("bronchus",), + "brothers-in-law": ("brother-in-law",), + "bryozoa": ("bryozoan",), + "buboes": ("bubo",), + "buckoes": ("bucko",), + "buckteeth": ("bucktooth",), + "buffaloes": ("buffalo",), + "bullae": ("bulla",), + "bunde": ("bund",), + "bureaux": ("bureau",), + "bureaux_de_change": ("bureau_de_change",), + "bursae": ("bursa",), + "bushbok": ("boschbok",), + "bushboks": ("boschbok",), + "busses": ("bus",), + "butterfishes": ("butterfish",), + "byssi": ("byssus",), + "cacti": ("cactus",), + "caducei": ("caduceus",), + "caeca": ("caecum",), + "caesurae": ("caesura",), + "calami": ("calamus",), + "calathi": ("calathus",), + "calcanei": ("calcaneum", "calcaneus",), + "calces": ("calx",), + "calculi": ("calculus",), + "caldaria": ("caldarium",), + "calices": ("calix",), + "calicoes": ("calico",), + "calli": ("callus",), + "calves": ("calf",), + "calyces": ("calyx",), + "cambia": ("cambium",), + "camerae": ("camera",), + "canaliculi": ("canaliculus",), + "candelabra": ("candelabrum",), + "candlefishes": ("candlefish",), + "canthi": ("canthus",), + "canulae": ("canula",), + "canzoni": ("canzone",), + "capita": ("caput",), + "capitula": ("capitulum",), + "capricci": ("capriccio",), + "carabinieri": ("carabiniere",), + "carbonadoes": ("carbonado",), + "carcinomata": ("carcinoma",), + "cargoes": ("cargo",), + "carides": ("caryatid",), + "carinae": ("carina",), + "caroli": ("carolus",), + "carpi": ("carpus",), + "carpogonia": ("carpogonium",), + "carryings-on": ("carrying-on",), + "caryopses": ("caryopsis",), + "caryopsides": ("caryopsis",), + "castrati": ("castrato",), + "catabases": ("catabasis",), + "cataclases": ("cataclasis",), + "cataloes": ("catalo",), + "catalyses": ("catalysis",), + "catenae": ("catena",), + "catfishes": ("catfish",), + "cathari": ("cathar",), + "cathexes": ("cathexis",), + "cattaloes": ("cattalo",), + "caudices": ("caudex",), + "caules": ("caulis",), + "cavatine": ("cavatina",), + "cavefishes": ("cavefish",), + "cavetti": ("cavetto",), + "cavo-rilievi": ("cavo-rilievo",), + "ceca": ("cecum",), + "cellae": ("cella",), + "cembali": ("cembalo",), + "centesimi": ("centesimo",), + "centra": ("centrum",), + "cephalothoraces": ("cephalothorax",), + "cercariae": ("cercaria",), + "cercariiae": ("cercaria",), + "cerci": ("cercus",), + "cerebella": ("cerebellum",), + "cerebra": ("cerebrum",), + "cervices": ("cervix",), + "cestuses": ("caestus",), + "cesurae": ("cesura",), + "chadarim": ("cheder",), + "chaetae": ("chaeta",), + "chaises_longues": ("chaise_longue",), + "chalazae": ("chalaza",), + "challoth": ("hallah",), + "chalutzim": ("chalutz",), + "chapaties": ("chapati",), + "chapatties": ("chapatti",), + "chapeaux": ("chapeau",), + "chasidim": ("chasid",), + "chassidim": ("chassid",), + "chateaux": ("chateau",), + "chazanim": ("chazan",), + "chedarim": ("cheder",), + "chefs-d'ouvre": ("chef-d'ouvre",), + "chelae": ("chela",), + "chelicerae": ("chelicera",), + "cherubim": ("cherub",), + "chevaux-de-frise": ("cheval-de-frise",), + "chiasmata": ("chiasma",), + "chiasmi": ("chiasmus",), + "children": ("child",), + "chillies": ("chilli",), + "chinese_eddoes": ("chinese_eddo",), + "chitarroni": ("chitarrone",), + "chlamydes": ("chlamys",), + "chlamyses": ("chlamys",), + "chondromata": ("chondroma",), + "choragi": ("choragus",), + "choriambi": ("choriambus",), + "choux": ("chou",), + "chromonemata": ("chromonema",), + "chrysalides": ("chrysalis",), + "chuvashes": ("chuvash",), + "ciboria": ("ciborium",), + "cicadae": ("cicada",), + "cicale": ("cicala",), + "cicatrices": ("cicatrix",), + "ciceroni": ("cicerone",), + "cicisbei": ("cicisbeo",), + "cilia": ("cilium",), + "cimices": ("cimex",), + "cineraria": ("cinerarium",), + "cingula": ("cingulum",), + "cirri": ("cirrus",), + "cirrocumuli": ("cirrocumulus",), + "cirrostrati": ("cirrostratus",), + "ciscoes": ("cisco",), + "cisternae": ("cisterna",), + "clani": ("clarino",), + "clanos": ("clarino",), + "claroes": ("claro",), + "clepsydrae": ("clepsydra",), + "clinandria": ("clinandrium",), + "clingfishes": ("clingfish",), + "clitella": ("clitellum",), + "cloacae": ("cloaca",), + "clostridia": ("clostridium",), + "cloverleaves": ("cloverleaf",), + "clypei": ("clypeus",), + "coagula": ("coagulum",), + "coalfishes": ("coalfish",), + "cocci": ("coccus",), + "coccyges": ("coccyx",), + "cochleae": ("cochlea",), + "codfishes": ("codfish",), + "codices": ("codex",), + "coelentera": ("coelenteron",), + "coenuri": ("coenurus",), + "cognomina": ("cognomen",), + "cognosenti": ("cognosente",), + "cola": ("colon",), + "coleorhizae": ("coleorhiza",), + "collegia": ("collegium",), + "colloquia": ("colloquium",), + "colluvia": ("colluvium",), + "collyria": ("collyrium",), + "colones": ("colon",), + "colossi": ("colossus",), + "columbaria": ("columbarium",), + "columellae": ("columella",), + "comae": ("coma",), + "comatulae": ("comatula",), + "comedones": ("comedo",), + "comics": ("comic_strip", "comic",), + "commandoes": ("commando",), + "concertanti": ("concertante",), + "concerti": ("concerto",), + "concerti_grossi": ("concerto_grosso",), + "concertini": ("concertino",), + "conchae": ("concha",), + "condottieri": ("condottiere",), + "condylomata": ("condyloma",), + "confervae": ("conferva",), + "congii": ("congius",), + "conidia": ("conidium",), + "conjunctivae": ("conjunctiva",), + "conquistadores": ("conquistador",), + "consortia": ("consortium",), + "contagia": ("contagium",), + "continua": ("continuum",), + "contralti": ("contralto",), + "conversazioni": ("conversazione",), + "convolvuli": ("convolvulus",), + "cooks-general": ("cook-general",), + "copulae": ("copula",), + "corbiculae": ("corbicula",), + "coria": ("corium",), + "corneae": ("cornea",), + "cornua": ("cornu",), + "coronae": ("corona",), + "corpora": ("corpus",), + "corpora_lutea": ("corpus_luteum",), + "corpora_striata": ("corpus_striatum",), + "corrigenda": ("corrigendum",), + "cortices": ("cortex",), + "cortinae": ("cortina",), + "corybantes": ("corybant",), + "coryphaei": ("coryphaeus",), + "costae": ("costa",), + "cothurni": ("cothurnus",), + "courts_martial": ("court_martial",), + "couteaux": ("couteau",), + "cowfishes": ("cowfish",), + "coxae": ("coxa",), + "cramboes": ("crambo",), + "crania": ("cranium",), + "crases": ("crasis",), + "crawfishes": ("crawfish",), + "crayfishes": ("crayfish",), + "credenda": ("credendum",), + "crematoria": ("crematorium",), + "crescendi": ("crescendo",), + "cribella": ("cribellum",), + "crises": ("crisis",), + "crissa": ("crissum",), + "cristae": ("crista",), + "criteria": ("criterion",), + "cruces": ("crux",), + "crura": ("crus",), + "crusadoes": ("crusado",), + "cruzadoes": ("cruzado",), + "crying": ("cry",), + "cryings": ("cry",), + "ctenidia": ("ctenidium",), + "cubicula": ("cubiculum",), + "culices": ("culex",), + "culpae": ("culpa",), + "culs-de-sac": ("cul-de-sac",), + "culti": ("cultus",), + "cumuli": ("cumulus",), + "cumulonimbi": ("cumulonimbus",), + "cumulostrati": ("cumulostratus",), + "curiae": ("curia",), + "curricula": ("curriculum",), + "custodes": ("custos",), + "cutes": ("cutis",), + "cuticulae": ("cuticula",), + "cuttlefishes": ("cuttlefish",), + "cyclopes": ("cyclops",), + "cycloses": ("cyclosis",), + "cylices": ("cylix",), + "cylikes": ("cylix",), + "cymae": ("cyma",), + "cymatia": ("cymatium",), + "cypselae": ("cypsela",), + "cysticerci": ("cysticercus",), + "dadoes": ("dado",), + "dagoes": ("dago",), + "damselfishes": ("damselfish",), + "data": ("datum",), + "daughters-in-law": ("daughter-in-law",), + "daymio": ("daimio",), + "daymios": ("daimio",), + "dealfishes": ("dealfish",), + "decemviri": ("decemvir",), + "decennia": ("decennium",), + "deciduae": ("decidua",), + "definienda": ("definiendum",), + "definientia": ("definiens",), + "delphinia": ("delphinium",), + "denarii": ("denarius",), + "dentalia": ("dentalium",), + "dermatoses": ("dermatosis",), + "desiderata": ("desideratum",), + "desperadoes": ("desperado",), + "devilfishes": ("devilfish",), + "diaereses": ("diaeresis",), + "diaerses": ("diaeresis",), + "diagnoses": ("diagnosis",), + "dialyses": ("dialysis",), + "diaphyses": ("diaphysis",), + "diapophyses": ("diapophysis",), + "diarthroses": ("diarthrosis",), + "diastalses": ("diastalsis",), + "diastases": ("diastasis",), + "diastemata": ("diastema",), + "diathses": ("diathesis",), + "diazoes": ("diazo",), + "dibbukkim": ("dibbuk",), + "dichasia": ("dichasium",), + "dicta": ("dictum",), + "didoes": ("dido",), + "diereses": ("dieresis",), + "dieses": ("diesis",), + "differentiae": ("differentia",), + "dilettanti": ("dilettante",), + "diluvia": ("diluvium",), + "dingoes": ("dingo",), + "diplococci": ("diplococcus",), + "directors-general": ("director-general",), + "disci": ("discus",), + "discoboli": ("discobolos", "discobolus",), + "dive": ("diva",), + "diverticula": ("diverticulum",), + "divertimenti": ("divertimento",), + "djinn": ("djinni", "djinny",), + "dodoes": ("dodo",), + "dogfishes": ("dogfish",), + "dogmata": ("dogma",), + "dogteeth": ("dogtooth",), + "dollarfishes": ("dollarfish",), + "domatia": ("domatium",), + "dominoes": ("domino",), + "dormice": ("dormouse",), + "dorsa": ("dorsum",), + "drachmae": ("drachma",), + "drawknives": ("drawknife",), + "drosophilae": ("drosophila",), + "drumfishes": ("drumfish",), + "dryades": ("dryad",), + "dui": ("duo",), + "duona": ("duodenum",), + "duonas": ("duodenum",), + "dupondii": ("dupondius",), + "duumviri": ("duumvir",), + "dwarves": ("dwarf",), + "dybbukkim": ("dybbuk",), + "ecchymoses": ("ecchymosis",), + "ecclesiae": ("ecclesia",), + "ecdyses": ("ecdysis",), + "echidnae": ("echidna",), + "echini": ("echinus",), + "echinococci": ("echinococcus",), + "echoes": ("echo",), + "ectozoa": ("ectozoan",), + "eddoes": ("eddo",), + "edemata": ("edema",), + "effluvia": ("effluvium",), + "eidola": ("eidolon",), + "eisegeses": ("eisegesis",), + "eisteddfodau": ("eisteddfod",), + "elenchi": ("elenchus",), + "ellipses": ("ellipsis",), + "eluvia": ("eluvium",), + "elves": ("elf",), + "elytra": ("elytron", "elytrum",), + "embargoes": ("embargo",), + "emboli": ("embolus",), + "emphases": ("emphasis",), + "emporia": ("emporium",), + "enarthroses": ("enarthrosis",), + "encephala": ("encephalon",), + "encephalitides": ("encephalitis",), + "encephalomata": ("encephaloma",), + "enchiridia": ("enchiridion",), + "enchondromata": ("enchondroma",), + "encomia": ("encomium",), + "endamebae": ("endameba",), + "endamoebae": ("endamoeba",), + "endocardia": ("endocardium",), + "endocrania": ("endocranium",), + "endometria": ("endometrium",), + "endostea": ("endosteum",), + "endostoses": ("endostosis",), + "endothecia": ("endothecium",), + "endothelia": ("endothelium",), + "endotheliomata": ("endothelioma",), + "endozoa": ("endozoan",), + "enemata": ("enema",), + "enneahedra": ("enneahedron",), + "entamebae": ("entameba",), + "entamoebae": ("entamoeba",), + "entases": ("entasis",), + "entera": ("enteron",), + "entia": ("ens",), + "entozoa": ("entozoan", "entozoon",), + "epencephala": ("epencephalon",), + "epentheses": ("epenthesis",), + "epexegeses": ("epexegesis",), + "ephemera": ("ephemeron",), + "ephemerae": ("ephemera",), + "ephemerides": ("ephemeris",), + "ephori": ("ephor",), + "epicalyces": ("epicalyx",), + "epicanthi": ("epicanthus",), + "epicardia": ("epicardium",), + "epicedia": ("epicedium",), + "epicleses": ("epiclesis",), + "epididymides": ("epididymis",), + "epigastria": ("epigastrium",), + "epiglottides": ("epiglottis",), + "epimysia": ("epimysium",), + "epiphenomena": ("epiphenomenon",), + "epiphyses": ("epiphysis",), + "episterna": ("episternum",), + "epithalamia": ("epithalamion", "epithalamium",), + "epithelia": ("epithelium",), + "epitheliomata": ("epithelioma",), + "epizoa": ("epizoan", "epizoon",), + "epyllia": ("epyllion",), + "equilibria": ("equilibrium",), + "equiseta": ("equisetum",), + "eringoes": ("eringo",), + "errata": ("erratum",), + "eryngoes": ("eryngo",), + "esophagi": ("esophagus",), + "etyma": ("etymon",), + "eucalypti": ("eucalyptus",), + "eupatridae": ("eupatrid",), + "euripi": ("euripus",), + "exanthemata": ("exanthema",), + "executrices": ("executrix",), + "exegeses": ("exegesis",), + "exempla": ("exemplum",), + "exordia": ("exordium",), + "exostoses": ("exostosis",), + "extrema": ("extremum",), + "eyeteeth": ("eyetooth",), + "fabliaux": ("fabliau",), + "faciae": ("facia",), + "faculae": ("facula",), + "faeroese": ("faeroese",), + "fallfishes": ("fallfish",), + "famuli": ("famulus",), + "farmers-general": ("farmer-general",), + "faroese": ("faroese",), + "farragoes": ("farrago",), + "fasciae": ("fascia",), + "fasciculi": ("fasciculus",), + "fathers-in-law": ("father-in-law",), + "fatsoes": ("fatso",), + "faunae": ("fauna",), + "feculae": ("fecula",), + "fedayeen": ("fedayee",), + "feet": ("foot",), + "fellaheen": ("fellah",), + "fellahin": ("fellah",), + "felones_de_se": ("felo_de_se",), + "felos_de_se": ("felo_de_se",), + "femora": ("femur",), + "fenestellae": ("fenestella",), + "fenestrae": ("fenestra",), + "feriae": ("feria",), + "fermate": ("fermata",), + "ferulae": ("ferula",), + "festschriften": ("festschrift",), + "fetiales": ("fetial",), + "fezzes": ("fez",), + "fiascoes": ("fiasco",), + "fibrillae": ("fibrilla",), + "fibromata": ("fibroma",), + "fibulae": ("fibula",), + "ficoes": ("fico",), + "fideicommissa": ("fideicommissum",), + "fieldmice": ("fieldmouse",), + "figs.": ("fig.",), + "fila": ("filum",), + "filariiae": ("filaria",), + "filefishes": ("filefish",), + "fimbriae": ("fimbria",), + "fishes": ("fish",), + "fishwives": ("fishwife",), + "fistulae": ("fistula",), + "flabella": ("flabellum",), + "flagella": ("flagellum",), + "flagstaves": ("flagstaff",), + "flambeaux": ("flambeau",), + "flamines": ("flamen",), + "flamingoes": ("flamingo",), + "flatfeet": ("flatfoot",), + "flatfishes": ("flatfish",), + "fleurs-de-lis": ("fleur-de-lis",), + "fleurs-de-lys": ("fleur-de-lys",), + "flights_of_stairs": ("flight_of_stairs",), + "flittermice": ("flittermouse",), + "flocci": ("floccus",), + "flocculi": ("flocculus",), + "florae": ("flora",), + "floreant.": ("floreat",), + "florilegia": ("florilegium",), + "flowers-de-luce": ("flower-de-luce",), + "flyleaves": ("flyleaf",), + "foci": ("focus",), + "folia": ("folium",), + "fora": ("forum",), + "foramina": ("foramen",), + "forceps": ("forceps",), + "forefeet": ("forefoot",), + "foreteeth": ("foretooth",), + "formicaria": ("formicarium",), + "formulae": ("formula",), + "fornices": ("fornix",), + "fortes": ("fortis",), + "fossae": ("fossa",), + "foveae": ("fovea",), + "foveolae": ("foveola",), + "fractocumuli": ("fractocumulus",), + "fractostrati": ("fractostratus",), + "fraena": ("fraenum",), + "frauen": ("frau",), + "frena": ("frenum",), + "frenula": ("frenulum",), + "frescoes": ("fresco",), + "fricandeaux": ("fricandeau",), + "fricandoes": ("fricando",), + "frijoles": ("frijol",), + "frogfishes": ("frogfish",), + "frontes": ("frons",), + "frusta": ("frustum",), + "fuci": ("fucus",), + "fulcra": ("fulcrum",), + "fumatoria": ("fumatorium",), + "fundi": ("fundus",), + "fungi": ("fungus",), + "funiculi": ("funiculus",), + "furcula": ("furculum",), + "furculae": ("furcula",), + "furfures": ("furfur",), + "galeae": ("galea",), + "gambadoes": ("gambado",), + "gametangia": ("gametangium",), + "gametoecia": ("gametoecium",), + "gammadia": ("gammadion",), + "ganglia": ("ganglion",), + "garfishes": ("garfish",), + "gas": ("gas",), + "gasses": ("gas",), + "gastrulae": ("gastrula",), + "gateaux": ("gateau",), + "gazeboes": ("gazebo",), + "geckoes": ("gecko",), + "geese": ("goose",), + "gelsemia": ("gelsemium",), + "gemboks": ("gemsbok",), + "gembucks": ("gemsbuck",), + "gemeinschaften": ("gemeinschaft",), + "gemmae": ("gemma",), + "genera": ("genus",), + "generatrices": ("generatrix",), + "geneses": ("genesis",), + "genii": ("genius",), + "gentes": ("gens",), + "gentlemen-at-arms": ("gentleman-at-arms",), + "gentlemen-farmers": ("gentleman-farmer",), + "genua": ("genu",), + "genus": ("genus",), + "germina": ("germen",), + "gesellschaften": ("gesellschaft",), + "gestalten": ("gestalt",), + "ghettoes": ("ghetto",), + "gingivae": ("gingiva",), + "gingkoes": ("gingko",), + "ginglymi": ("ginglymus",), + "ginkgoes": ("ginkgo",), + "gippoes": ("gippo",), + "glabellae": ("glabella",), + "gladioli": ("gladiolus",), + "glandes": ("glans",), + "gliomata": ("glioma",), + "glissandi": ("glissando",), + "globefishes": ("globefish",), + "globigerinae": ("globigerina",), + "glochidcia": ("glochidium",), + "glochidia": ("glochidium",), + "glomeruli": ("glomerulus",), + "glossae": ("glossa",), + "glottides": ("glottis",), + "glutaei": ("glutaeus",), + "glutei": ("gluteus",), + "gnoses": ("gnosis",), + "goatfishes": ("goatfish",), + "goboes": ("gobo",), + "godchildren": ("godchild",), + "goes": ("go",), + "goings-over": ("going-over",), + "goldfishes": ("goldfish",), + "gomphoses": ("gomphosis",), + "gonia": ("gonion",), + "gonidia": ("gonidium",), + "gonococci": ("gonococcus",), + "goodwives": ("goodwife",), + "goosefishes": ("goosefish",), + "gorgoneia": ("gorgoneion",), + "gospopoda": ("gospodin",), + "governors_general": ("governor_general",), + "goyim": ("goy",), + "gps": ("gps",), + "grafen": ("graf",), + "graffiti": ("graffito",), + "grandchildren": ("grandchild",), + "grants-in-aid": ("grant-in-aid",), + "granulomata": ("granuloma",), + "gravamina": ("gravamen",), + "grig-gris": ("gris-gris",), + "groszy": ("grosz",), + "grottoes": ("grotto",), + "guilder": ("guilde",), + "guilders": ("guilde", "guilder",), + "guitarfishes": ("guitarfish",), + "gummata": ("gumma",), + "gurnard": ("gurnar",), + "gurnards": ("gurnar", "gurnard",), + "guttae": ("gutta",), + "gymnasia": ("gymnasium",), + "gynaecea": ("gynaeceum",), + "gynaecia": ("gynaecium",), + "gynecea": ("gynecium",), + "gynecia": ("gynecium",), + "gynoecea": ("gynoecium",), + "gynoecia": ("gynoecium",), + "gyri": ("gyrus",), + "hadarim": ("heder",), + "hadjes": ("hadj",), + "haematolyses": ("haematolysis",), + "haematomata": ("haematoma",), + "haematozoa": ("haematozoon",), + "haemodialyses": ("haemodialysis",), + "haemolyses": ("haemolysis",), + "haemoptyses": ("haemoptysis",), + "haeredes": ("haeres",), + "haftaroth": ("haftarah",), + "hagfishes": ("hagfish",), + "haggadas": ("haggada", "haggadah",), + "haggadoth": ("haggada",), + "hajjes": ("hajj",), + "haleru": ("haler",), + "halfpence": ("halfpenny",), + "hallot": ("hallah",), + "halloth": ("hallah",), + "halluces": ("hallux",), + "haloes": ("halo",), + "halteres": ("halter", "haltere",), + "halves": ("half",), + "hamuli": ("hamulus",), + "hangers-on": ("hanger-on",), + "haphtaroth": ("haphtarah",), + "haredim": ("haredi",), + "haruspices": ("haruspex",), + "hasidim": ("hasid",), + "hassidim": ("hassid",), + "haustella": ("haustellum",), + "haustoria": ("haustorium",), + "hazzanim": ("hazzan",), + "hectocotyli": ("hectocotylus",), + "heirs-at-law": ("heir-at-law",), + "heldentenore": ("heldentenor",), + "helices": ("helix",), + "heliozoa": ("heliozoan",), + "hematolyses": ("hematolysis",), + "hematomata": ("hematoma",), + "hematozoa": ("hematozoon",), + "hemelytra": ("hemelytron",), + "hemielytra": ("hemielytron",), + "hemodialyses": ("hemodialysis",), + "hemolyses": ("hemolysis",), + "hemoptyses": ("hemoptysis",), + "hendecahedra": ("hendecahedron",), + "hens-and-chickens": ("hen-and-chickens",), + "heraclidae": ("heraclid",), + "heraklidae": ("heraklid",), + "herbaria": ("herbarium",), + "hermae": ("herm", "herma",), + "hermai": ("herma",), + "herniae": ("hernia",), + "heroes": ("hero",), + "herren": ("herr",), + "hetaerae": ("hetaera",), + "hetairai": ("hetaira",), + "hibernacula": ("hibernaculum",), + "hieracosphinges": ("hieracosphinx",), + "hila": ("hilum",), + "hili": ("hilus",), + "himatia": ("himation",), + "hippocampi": ("hippocampus",), + "hippopotami": ("hippopotamus",), + "his": ("his",), + "hoboes": ("hobo",), + "hogfishes": ("hogfish",), + "homunculi": ("homunculus",), + "honoraria": ("honorarium",), + "hooves": ("hoof",), + "horologia": ("horologium",), + "houses_of_cards": ("house_of_cards",), + "housewives": ("housewife",), + "humeri": ("humerus",), + "hydrae": ("hydra",), + "hydromedusae": ("hydromedusa",), + "hydrozoa": ("hydrozoan",), + "hymenoptera": ("hymenopteran",), + "hynia": ("hymenium",), + "hyniums": ("hymenium",), + "hypanthia": ("hypanthium",), + "hyperostoses": ("hyperostosis",), + "hyphae": ("hypha",), + "hypnoses": ("hypnosis",), + "hypochondria": ("hypochondrium",), + "hypogastria": ("hypogastrium",), + "hypogea": ("hypogeum",), + "hypophyses": ("hypophysis",), + "hypostases": ("hypostasis",), + "hypothalami": ("hypothalamus",), + "hypotheses": ("hypothesis",), + "hyraces": ("hyrax",), + "iambi": ("iamb",), + "ibices": ("ibex",), + "ibo": ("igbo",), + "ichthyosauri": ("ichthyosaurus",), + "ichthyosauruses": ("ichthyosaur", "ichthyosaurus",), + "iconostases": ("iconostas", "iconostasis",), + "icosahedra": ("icosahedron",), + "ideata": ("ideatum",), + "igorrorote": ("igorrote",), + "ilia": ("ilium",), + "imagines": ("imago",), + "imagoes": ("imago",), + "imperia": ("imperium",), + "impies": ("impi",), + "incubi": ("incubus",), + "incudes": ("incus",), + "indices": ("index",), + "indigoes": ("indigo",), + "indumenta": ("indumentum",), + "indusia": ("indusium",), + "infundibula": ("infundibulum",), + "ingushes": ("ingush",), + "innuendoes": ("innuendo",), + "inocula": ("inoculum",), + "inquisitors-general": ("inquisitor-general",), + "insectaria": ("insectarium",), + "insulae": ("insula",), + "intagli": ("intaglio",), + "interleaves": ("interleaf",), + "intermezzi": ("intermezzo",), + "interreges": ("interrex",), + "interregna": ("interregnum",), + "intimae": ("intima",), + "involucella": ("involucellum",), + "involucra": ("involucrum",), + "irides": ("iris",), + "irs": ("irs",), + "is": ("is",), + "ischia": ("ischium",), + "isthmi": ("isthmus",), + "jackeroos": ("jackaroo", "jackeroo",), + "jackfishes": ("jackfish",), + "jackknives": ("jackknife",), + "jacks-in-the-box": ("jack-in-the-box",), + "jambeaux": ("jambeau",), + "jellyfishes": ("jellyfish",), + "jewelfishes": ("jewelfish",), + "jewfishes": ("jewfish",), + "jingoes": ("jingo",), + "jinn": ("jinni",), + "joes": ("jo", "joe",), + "judge_advocates_general": ("judge_advocate_general",), + "jura": ("jus",), + "kaddishim": ("kaddish",), + "kalmuck": ("kalmuc",), + "kalmucks": ("kalmuc", "kalmuck",), + "katabases": ("katabasis",), + "keeshonden": ("keeshond",), + "kibbutzim": ("kibbutz",), + "killifishes": ("killifish",), + "kingfishes": ("kingfish",), + "kings-of-arms": ("king-of-arms",), + "knights_bachelor": ("knight_bachelor",), + "knights_bachelors": ("knight_bachelor",), + "knights_templar": ("knight_templar",), + "knights_templars": ("knight_templar",), + "knives": ("knife",), + "kohlrabies": ("kohlrabi",), + "kronen": ("krone",), + "kroner": ("krone",), + "kronur": ("krona",), + "krooni": ("kroon",), + "kylikes": ("kylix",), + "labara": ("labarum",), + "labella": ("labellum",), + "labia": ("labium",), + "labra": ("labrum",), + "lactobacilli": ("lactobacillus",), + "lacunae": ("lacuna",), + "lacunaria": ("lacunar",), + "ladies-in-waiting": ("lady-in-waiting",), + "lamellae": ("lamella",), + "lamiae": ("lamia",), + "laminae": ("lamina",), + "lapilli": ("lapillus",), + "lapithae": ("lapith",), + "larvae": ("larva",), + "larynges": ("larynx",), + "lassoes": ("lasso",), + "lati": ("lat",), + "latices": ("latex",), + "latifundia": ("latifundium",), + "latu": ("lat",), + "lavaboes": ("lavabo",), + "leaves": ("leaf", "leave",), + "lecythi": ("lecythus",), + "leges": ("lex",), + "lei": ("leu",), + "lemmata": ("lemma",), + "lemnisci": ("lemniscus",), + "lenes": ("lenis",), + "lentigines": ("lentigo",), + "leonides": ("leonid",), + "lepidoptera": ("lepidopteran",), + "leprosaria": ("leprosarium",), + "lepta": ("lepton",), + "leptocephali": ("leptocephalus",), + "leucocytozoa": ("leucocytozoan",), + "leva": ("lev",), + "librae": ("libra",), + "libretti": ("libretto",), + "lice": ("louse",), + "lieder": ("lied",), + "ligulae": ("ligula",), + "limbi": ("limbus",), + "limina": ("limen",), + "limites": ("limes",), + "limuli": ("limulus",), + "lingoes": ("lingo",), + "linguae": ("lingua",), + "linguae_francae": ("lingua_franca",), + "lionfishes": ("lionfish",), + "lipomata": ("lipoma",), + "lire": ("lira",), + "liriodendra": ("liriodendron",), + "lisente": ("sente",), + "listente": ("sente",), + "litai": ("lit", "litas",), + "litu": ("litas",), + "lives": ("life",), + "lixivia": ("lixivium",), + "loaves": ("loaf",), + "loci": ("locus",), + "loculi": ("loculus",), + "loggie": ("loggia",), + "logia": ("logion",), + "lomenta": ("lomentum",), + "longobardi": ("longobard",), + "loricae": ("lorica",), + "loups-garous": ("loup-garou",), + "luba": ("luba",), + "lubritoria": ("lubritorium",), + "lumbus": ("lumbi",), + "lumina": ("lumen",), + "lumpfishes": ("lumpfish",), + "lungfishes": ("lungfish",), + "lunulae": ("lunula",), + "lures": ("lur", "lure",), + "lustra": ("lustre",), + "lyings-in": ("lying-in",), + "lymphangitides": ("lymphangitis",), + "lymphomata": ("lymphoma",), + "lymphopoieses": ("lymphopoiesis",), + "lyses": ("lysis",), + "lyttae": ("lytta",), + "maare": ("maar",), + "macaronies": ("macaroni",), + "maccaronies": ("maccaroni",), + "machzorim": ("machzor",), + "macronuclei": ("macronucleus",), + "macrosporangia": ("macrosporangium",), + "maculae": ("macula",), + "madornos": ("madrono",), + "maestri": ("maestro",), + "mafiosi": ("mafioso",), + "magi": ("magus",), + "magmata": ("magma",), + "magnificoes": ("magnifico",), + "mahzorim": ("mahzor",), + "major-axes": ("major_axis",), + "major_axes": ("major_axis",), + "makuta": ("likuta",), + "mallei": ("malleus",), + "malleoli": ("malleolus",), + "maloti": ("loti",), + "mamillae": ("mamilla",), + "mammae": ("mamma",), + "mammillae": ("mammilla",), + "mandingoes": ("mandingo",), + "mangoes": ("mango",), + "manifestoes": ("manifesto",), + "manteaux": ("manteau",), + "mantes": ("mantis",), + "manubria": ("manubrium",), + "marchese": ("marchesa",), + "marchesi": ("marchese",), + "maremme": ("maremma",), + "markkaa": ("markka",), + "marsupia": ("marsupium",), + "marvels-of-peru": ("marvel-of-peru",), + "mass_media": ("mass_medium",), + "masses": ("mass", "masse",), + "masters-at-arms": ("master-at-arms",), + "matrices": ("matrix",), + "matzoth": ("matzo",), + "mausolea": ("mausoleum",), + "maxillae": ("maxilla",), + "maxima": ("maximum",), + "media": ("medium",), + "mediae": ("media",), + "mediastina": ("mediastinum",), + "medullae": ("medulla",), + "medullae_oblongatae": ("medulla_oblongata",), + "medusae": ("medusa",), + "megara": ("megaron",), + "megasporangia": ("megasporangium",), + "megilloth": ("megillah",), + "meioses": ("meiosis",), + "melanomata": ("melanoma",), + "melismata": ("melisma",), + "mementoes": ("memento",), + "memoranda": ("memorandum",), + "men": ("man",), + "men-at-arms": ("man-at-arms",), + "men-o'-war": ("man-of-war",), + "men-of-war": ("man-of-war",), + "men_of_letters": ("man_of_letters",), + "menisci": ("meniscus",), + "menservants": ("manservant",), + "menstrua": ("menstruum",), + "mesdames": ("madame",), + "mesdemoiselles": ("mademoiselle",), + "mesentera": ("mesenteron",), + "mesothoraces": ("mesothorax",), + "messeigneurs": ("monseigneur",), + "messieurs": ("monsieur",), + "mestizoes": ("mestizo",), + "metacarpi": ("metacarpus",), + "metamorphoses": ("metamorphosis",), + "metanephroi": ("metanephros",), + "metastases": ("metastasis",), + "metatarsi": ("metatarsus",), + "metatheses": ("metathesis",), + "metathoraces": ("metathorax",), + "metazoa": ("metazoan",), + "metempsychoses": ("metempsychosis",), + "metencephala": ("metencephalon",), + "mezuzoth": ("mezuzah",), + "miasmata": ("miasma",), + "mice": ("mouse",), + "microanalyses": ("microanalysis",), + "micrococci": ("micrococcus",), + "micronuclei": ("micronucleus",), + "microsporangia": ("microsporangium",), + "midrashim": ("midrash",), + "midwives": ("midwife",), + "milia": ("milium",), + "milieux": ("milieu",), + "militated_against": ("militate_against",), + "milkfishes": ("milkfish",), + "millennia": ("millennium",), + "minae": ("mina",), + "minima": ("minimum",), + "ministeria": ("ministerium",), + "minutiae": ("minutia",), + "minyanim": ("minyan",), + "mioses": ("miosis",), + "miracidia": ("miracidium",), + "miri": ("mir",), + "mishnayoth": ("mishna", "mishnah",), + "mitochondria": ("mitochondrion",), + "mitzvoth": ("mitzvah",), + "modioli": ("modiolus",), + "moduli": ("modulus",), + "momenta": ("momentum",), + "moments_of_truth": ("moment_of_truth",), + "momi": ("momus",), + "monades": ("monad", "monas",), + "monkfishes": ("monkfish",), + "monochasia": ("monochasium",), + "monopodia": ("monopodium",), + "monoptera": ("monopteron",), + "monopteroi": ("monopteros",), + "monsignori": ("monsignor",), + "monts-de-piete": ("mont-de-piete",), + "mooncalves": ("mooncalf",), + "moonfishes": ("moonfish",), + "morae": ("mora",), + "moratoria": ("moratorium",), + "morceaux": ("morceau",), + "morescoes": ("moresco",), + "moriscoes": ("morisco",), + "morphallaxes": ("morphallaxis",), + "morphoses": ("morphosis",), + "morses": ("morse", "mors",), + "morulae": ("morula",), + "mosasauri": ("mosasaurus",), + "moshavim": ("moshav",), + "moslim": ("moslem",), + "moslims": ("moslem",), + "mosquitoes": ("mosquito",), + "mothers-in-law": ("mother-in-law",), + "mothers_superior": ("mother_superior",), + "mottoes": ("motto",), + "movers_and_shakers": ("mover_and_shaker",), + "mucosae": ("mucosa",), + "mucrones": ("mucro",), + "mudejares": ("mudejar",), + "mudfishes": ("mudfish",), + "mulattoes": ("mulatto",), + "multiparae": ("multipara",), + "murices": ("murex",), + "muskallunge": ("muskellunge",), + "mycelia": ("mycelium",), + "mycetomata": ("mycetoma",), + "mycobacteria": ("mycobacterium",), + "mycorrhizae": ("mycorrhiza",), + "myelencephala": ("myelencephalon",), + "myiases": ("myiasis",), + "myocardia": ("myocardium",), + "myofibrillae": ("myofibrilla",), + "myomata": ("myoma",), + "myoses": ("myosis",), + "myrmidones": ("myrmidon",), + "mythoi": ("mythos",), + "myxomata": ("myxoma",), + "naevi": ("naevus",), + "naiades": ("naiad",), + "naoi": ("naos",), + "narcissi": ("narcissus",), + "nares": ("naris",), + "nasopharynges": ("nasopharynx",), + "natatoria": ("natatorium",), + "naumachiae": ("naumachia",), + "nauplii": ("nauplius",), + "nautili": ("nautilus",), + "navahoes": ("navaho",), + "navajoes": ("navajo",), + "nebulae": ("nebula",), + "necropoleis": ("necropolis",), + "needlefishes": ("needlefish",), + "negrilloes": ("negrillo",), + "negritoes": ("negrito",), + "negroes": ("negro",), + "nemeses": ("nemesis",), + "nephridia": ("nephridium",), + "nereides": ("nereid",), + "neurohypophyses": ("neurohypophysis",), + "neuromata": ("neuroma",), + "neuroptera": ("neuropteron",), + "neuroses": ("neurosis",), + "nevi": ("nevus",), + "nibelungen": ("nibelung",), + "nidi": ("nidus",), + "nielli": ("niello",), + "nilgai": ("nilgai",), + "nimbi": ("nimbus",), + "nimbostrati": ("nimbostratus",), + "noctilucae": ("noctiluca",), + "nodi": ("nodus",), + "noes": ("no",), + "nomina": ("nomen",), + "nota": ("notum",), + "noumena": ("noumenon",), + "novae": ("nova",), + "novelle": ("novella",), + "novenae": ("novena",), + "nubeculae": ("nubecula",), + "nucelli": ("nucellus",), + "nuchae": ("nucha",), + "nuclei": ("nucleus",), + "nucleoli": ("nucleolus",), + "nulliparae": ("nullipara",), + "numbfishes": ("numbfish",), + "numina": ("numen",), + "nymphae": ("nympha",), + "oarfishes": ("oarfish",), + "oases": ("oasis",), + "obeli": ("obelus",), + "objets_d'art": ("objet_d'art",), + "obligati": ("obligato",), + "oboli": ("obolus",), + "occipita": ("occiput",), + "oceanaria": ("oceanarium",), + "oceanides": ("oceanid",), + "ocelli": ("ocellus",), + "ochreae": ("ochrea",), + "ocreae": ("ochrea", "ocrea",), + "octahedra": ("octahedron",), + "octopi": ("octopus",), + "oculi": ("oculus",), + "odea": ("odeum",), + "oedemata": ("edema", "oedema",), + "oesophagi": ("esophagus", "oesophagus",), + "oldwives": ("oldwife",), + "olea": ("oleum",), + "omasa": ("omasum",), + "omayyades": ("omayyad",), + "omenta": ("omentum",), + "ommatidia": ("ommatidium",), + "ommiades": ("ommiad",), + "onagri": ("onager",), + "oogonia": ("oogonium",), + "oothecae": ("ootheca",), + "operas_seria": ("opera_seria",), + "opercula": ("operculum",), + "optic_axes": ("optic_axis",), + "optima": ("optimum",), + "ora": ("os",), + "organa": ("organon", "organum",), + "organums": ("organa", "organum",), + "orthoptera": ("orthopteron",), + "osar": ("os",), + "oscula": ("osculum",), + "ossa": ("os",), + "osteomata": ("osteoma",), + "ostia": ("ostium",), + "ottomans": ("othman", "ottoman",), + "ova": ("ovum",), + "ovoli": ("ovolo",), + "ovotestes": ("ovotestis",), + "oxen": ("ox",), + "oxymora": ("oxymoron",), + "paddlefishes": ("paddlefish",), + "paise": ("paisa",), + "paleae": ("palea",), + "palestrae": ("palestra",), + "palingeneses": ("palingenesis",), + "pallia": ("pallium",), + "palmettoes": ("palmetto",), + "palpi": ("palpus",), + "pancratia": ("pancratium",), + "panettoni": ("panettone",), + "paparazzi": ("paparazzo",), + "paperknives": ("paperknife",), + "papillae": ("papilla",), + "papillomata": ("papilloma",), + "pappi": ("pappus",), + "papulae": ("papula",), + "papyri": ("papyrus",), + "parabases": ("parabasis",), + "paraleipses": ("paraleipsis", "paralipsis",), + "paralyses": ("paralysis",), + "paramecia": ("paramecium",), + "paramenta": ("parament",), + "paraphyses": ("paraphysis",), + "parapodia": ("parapodium",), + "parapraxes": ("parapraxis",), + "paraselenae": ("paraselene",), + "parashoth": ("parashah",), + "parasyntheta": ("parasyntheton",), + "parazoa": ("parazoan",), + "parentheses": ("parenthesis",), + "parerga": ("parergon",), + "parhelia": ("parhelion",), + "parietes": ("paries",), + "paris-mutuels": ("pari-mutuel",), + "parrotfishes": ("parrotfish",), + "parulides": ("parulis",), + "pasos_dobles": ("paso_doble",), + "passers-by": ("passer-by",), + "pastorali": ("pastorale",), + "patagia": ("patagium",), + "patellae": ("patella",), + "patinae": ("patina",), + "patresfamilias": ("paterfamilias",), + "pease": ("pea",), + "peccadilloes": ("peccadillo",), + "pectines": ("pecten",), + "pedaloes": ("pedalo",), + "pedes": ("pes",), + "pekingese": ("pekinese",), + "pelves": ("pelvis",), + "pence": ("penny",), + "penes": ("penis",), + "penetralium": ("penetralia",), + "penicillia": ("penicillium",), + "penknives": ("penknife",), + "pennae": ("penna",), + "pennia": ("penni",), + "pentahedra": ("pentahedron",), + "pentimenti": ("pentimento",), + "penumbrae": ("penumbra",), + "pepla": ("peplum",), + "pericardia": ("pericardium",), + "perichondria": ("perichondrium",), + "pericrania": ("pericranium",), + "peridia": ("peridium",), + "perigonia": ("perigonium",), + "perihelia": ("perihelion",), + "perinea": ("perineum",), + "perinephria": ("perinephrium",), + "perionychia": ("perionychium",), + "periostea": ("periosteum",), + "periphrases": ("periphrasis",), + "peristalses": ("peristalsis",), + "perithecia": ("perithecium",), + "peritonea": ("peritoneum",), + "personae": ("persona",), + "petechiae": ("petechia",), + "pfennige": ("pfennig",), + "phalanges": ("phalange", "phalanx",), + "phalli": ("phallus",), + "pharynges": ("pharynx",), + "phenomena": ("phenomenon",), + "phi-phenomena": ("phi-phenomenon",), + "philodendra": ("philodendron",), + "phlyctenae": ("phlyctaena", "phlyctena",), + "phyla": ("phylum",), + "phylae": ("phyle",), + "phyllotaxes": ("phyllotaxis",), + "phylloxerae": ("phylloxera",), + "phylogeneses": ("phylogenesis",), + "pieds-a-terre": ("pied-a-terre",), + "pigfishes": ("pigfish",), + "pilea": ("pileum",), + "pilei": ("pileus",), + "pineta": ("pinetum",), + "pinfishes": ("pinfish",), + "pinkoes": ("pinko",), + "pinnae": ("pinna",), + "pinnulae": ("pinnula",), + "pipefishes": ("pipefish",), + "pirogi": ("pirog",), + "piscinae": ("piscina",), + "pithecanthropi": ("pithecanthropus",), + "pithoi": ("pithos",), + "placeboes": ("placebo",), + "placentae": ("placenta",), + "planetaria": ("planetarium",), + "planulae": ("planula",), + "plasmodesmata": ("plasmodesma",), + "plasmodia": ("plasmodium",), + "plateaux": ("plateau",), + "plectra": ("plectron", "plectrum",), + "plena": ("plenum",), + "pleura": ("pleuron",), + "pleurae": ("pleura",), + "plicae": ("plica",), + "ploughmen": ("ploughman", "plowman",), + "pneumobacilli": ("pneumobacillus",), + "pneumococci": ("pneumococcus",), + "pocketknives": ("pocketknife",), + "podetia": ("podetium",), + "podia": ("podium",), + "poleis": ("polis",), + "pollices": ("pollex",), + "pollinia": ("pollinium",), + "polychasia": ("polychasium",), + "polyhedra": ("polyhedron",), + "polyparia": ("polyparium",), + "polypi": ("polypus",), + "polyzoa": ("polyzoan",), + "polyzoaria": ("polyzoarium",), + "pontes": ("pons",), + "pontifices": ("pontifex",), + "portamenti": ("portamento",), + "porticoes": ("portico",), + "portmanteaux": ("portmanteau",), + "postliminia": ("postliminium",), + "potatoes": ("potato",), + "praenomina": ("praenomen",), + "praxes": ("praxis",), + "predelle": ("predella",), + "premaxillae": ("premaxilla",), + "prenomina": ("prenomen",), + "prese": ("presa",), + "primi": ("primo",), + "primigravidae": ("primigravida",), + "primiparae": ("primipara",), + "primordia": ("primordium",), + "principia": ("principium",), + "proboscides": ("proboscis",), + "proces-verbaux": ("proces-verbal",), + "proglottides": ("proglottid", "proglottis",), + "prognoses": ("prognosis",), + "prolegomena": ("prolegomenon",), + "prolepses": ("prolepsis",), + "promycelia": ("promycelium",), + "pronephra": ("pronephros",), + "pronephroi": ("pronephros",), + "pronuclei": ("pronucleus",), + "propositi": ("propositus",), + "proptoses": ("proptosis",), + "propyla": ("propylon",), + "propylaea": ("propylaeum",), + "proscenia": ("proscenium",), + "prosencephala": ("prosencephalon",), + "prostheses": ("prosthesis",), + "prostomia": ("prostomium",), + "protases": ("protasis",), + "prothalamia": ("prothalamion", "prothalamium",), + "prothalli": ("prothallus",), + "prothallia": ("prothallium",), + "prothoraces": ("prothorax",), + "protonemata": ("protonema",), + "protozoa": ("protozoan",), + "proventriculi": ("proventriculus",), + "provisoes": ("proviso",), + "prytanea": ("prytaneum",), + "psalteria": ("psalterium",), + "pseudopodia": ("pseudopodium",), + "psychoneuroses": ("psychoneurosis",), + "psychoses": ("psychosis",), + "pterygia": ("pterygium",), + "pterylae": ("pteryla",), + "ptoses": ("ptosis",), + "pubes": ("pubis",), + "pudenda": ("pudendum",), + "puli": ("pul",), + "pulvilli": ("pulvillus",), + "pulvini": ("pulvinus",), + "punchinelloes": ("punchinello",), + "pupae": ("pupa",), + "puparia": ("puparium",), + "putamina": ("putamen",), + "putti": ("putto",), + "pycnidia": ("pycnidium",), + "pygidia": ("pygidium",), + "pylori": ("pylorus",), + "pyxides": ("pyxis",), + "pyxidia": ("pyxidium",), + "qaddishim": ("qaddish",), + "quadrennia": ("quadrennium",), + "quadrigae": ("quadriga",), + "qualia": ("quale",), + "quanta": ("quantum",), + "quarterstaves": ("quarterstaff",), + "quezales": ("quezal",), + "quinquennia": ("quinquennium",), + "quizzes": ("quiz",), + "rabatos": ("rabato", "rebato",), + "rabbitfishes": ("rabbitfish",), + "rachides": ("rhachis",), + "radices": ("radix",), + "radii": ("radius",), + "radulae": ("radula",), + "ramenta": ("ramentum",), + "rami": ("ramus",), + "ranulae": ("ranula",), + "ranunculi": ("ranunculus",), + "raphae": ("raphe",), + "raphides": ("raphide", "raphis",), + "ratfishes": ("ratfish",), + "reales": ("real",), + "rearmice": ("rearmouse",), + "recta": ("rectum",), + "recti": ("rectus",), + "rectrices": ("rectrix",), + "redfishes": ("redfish",), + "rediae": ("redia",), + "referenda": ("referendum",), + "refugia": ("refugium",), + "reguli": ("regulus",), + "reis": ("real",), + "relata": ("relatum",), + "remiges": ("remex",), + "reremice": ("rearmouse", "reremouse",), + "reseaux": ("reseau",), + "residua": ("residuum",), + "responsa": ("responsum",), + "retia": ("rete",), + "retiarii": ("retiarius",), + "reticula": ("reticulum",), + "retinacula": ("retinaculum",), + "retinae": ("retina",), + "rhabdomyomata": ("rhabdomyoma",), + "rhachides": ("rhachis",), + "rhachises": ("rachis", "rhachis",), + "rhinencephala": ("rhinencephalon",), + "rhizobia": ("rhizobium",), + "rhombi": ("rhombus",), + "rhonchi": ("rhonchus",), + "rhyta": ("rhyton",), + "ribbonfishes": ("ribbonfish",), + "ricercacari": ("ricercare",), + "ricercari": ("ricercare",), + "rickettsiae": ("rickettsia",), + "rilievi": ("rilievo",), + "rimae": ("rima",), + "robes-de-chambre": ("robe-de-chambre",), + "rockfishes": ("rockfish",), + "roma": ("rom",), + "romans-fleuves": ("roman-fleuve",), + "rondeaux": ("rondeau",), + "rosaria": ("rosarium",), + "rosefishes": ("rosefish",), + "rostella": ("rostellum",), + "rostra": ("rostrum",), + "rouleaux": ("rouleau",), + "rugae": ("ruga",), + "rumina": ("rumen",), + "runners-up": ("runner-up",), + "sacra": ("sacrum",), + "sacraria": ("sacrarium",), + "saguaros": ("saguaro", "sahuaro",), + "sailfishes": ("sailfish",), + "salespeople": ("salesperson",), + "salmonellae": ("salmonella",), + "salpae": ("salpa",), + "salpinges": ("salpinx",), + "saltarelli": ("saltarello",), + "salvoes": ("salvo",), + "sancta": ("sanctum",), + "sanitaria": ("sanitarium",), + "santimi": ("santims",), + "saphenae": ("saphena",), + "sarcophagi": ("sarcophagus",), + "sartorii": ("sartorius",), + "sassanidae": ("sassanid",), + "sawfishes": ("sawfish",), + "scaldfishes": ("scaldfish",), + "scaleni": ("scalenus",), + "scapulae": ("scapula",), + "scarabaei": ("scarabaeus",), + "scarves": ("scarf",), + "schatchonim": ("schatchen", "shadchan",), + "schemata": ("schema",), + "scherzandi": ("scherzando",), + "scherzi": ("scherzo",), + "schmoes": ("schmo",), + "scholia": ("scholium",), + "schuln": ("schul",), + "schutzstaffeln": ("schutzstaffel",), + "scirrhi": ("scirrhus",), + "scleromata": ("scleroma",), + "scleroses": ("sclerosis",), + "sclerotia": ("sclerotium",), + "scoleces": ("scolex",), + "scolices": ("scolex",), + "scopulae": ("scopula",), + "scoriae": ("scoria",), + "scotomata": ("scotoma",), + "scriptoria": ("scriptorium",), + "scrota": ("scrotum",), + "scudi": ("scudo",), + "scuta": ("scutum",), + "scutella": ("scutellum",), + "scyphi": ("scyphus",), + "scyphistomae": ("scyphistoma",), + "scyphozoa": ("scyphozoan",), + "secondi": ("secondo",), + "secretaries-general": ("secretary-general",), + "segni": ("segno",), + "seleucidae": ("seleucid",), + "selves": ("self",), + "senores": ("senor",), + "sensilla": ("sensillum",), + "senti": ("sent",), + "senussis": ("senusi", "senussi",), + "separatrices": ("separatrix",), + "sephardim": ("sephardi",), + "septa": ("septum",), + "septaria": ("septarium",), + "septennia": ("septennium",), + "sequelae": ("sequela",), + "sequestra": ("sequestrum",), + "sera": ("serum",), + "seraphim": ("seraph",), + "sestertia": ("sestertium",), + "setae": ("seta",), + "sgraffiti": ("sgraffito",), + "shabbasim": ("shabbas",), + "shabbatim": ("shabbat",), + "shackoes": ("shacko",), + "shadchanim": ("shadchan",), + "shadchans": ("schatchen", "shadchan",), + "shakoes": ("shako",), + "shammosim": ("shammas", "shammes",), + "sheatfishes": ("sheatfish",), + "sheaves": ("sheaf",), + "shellfishes": ("shellfish",), + "shelves": ("shelf",), + "shinleaves": ("shinleaf",), + "shittim": ("shittah",), + "shmoes": ("shmo",), + "shofroth": ("shofar", "shophar",), + "shophroth": ("shophar",), + "shrewmice": ("shrewmouse",), + "shuln": ("shul",), + "siddurim": ("siddur",), + "sigloi": ("siglos",), + "signore": ("signora",), + "signori": ("signior", "signore",), + "signorine": ("signorina",), + "siliquae": ("siliqua",), + "silvae": ("silva",), + "silverfishes": ("silverfish",), + "simulacra": ("simulacrum",), + "sincipita": ("sinciput",), + "sinfonie": ("sinfonia",), + "sisters-in-law": ("sister-in-law",), + "sistra": ("sistrum",), + "situlae": ("situla",), + "smalti": ("smalto",), + "snaggleteeth": ("snaggletooth",), + "snailfishes": ("snailfish",), + "snipefishes": ("snipefish",), + "socmen": ("socman", "sokeman",), + "sola": ("solum",), + "solaria": ("solarium",), + "solatia": ("solatium",), + "soldi": ("soldo",), + "soles": ("sol", "sole",), + "solfeggi": ("solfeggio",), + "soli": ("solo",), + "solidi": ("solidus",), + "somata": ("soma",), + "sons-in-law": ("son-in-law",), + "soprani": ("soprano",), + "sordini": ("sordino",), + "sori": ("sorus",), + "soroses": ("sorosis",), + "sovkhozy": ("sovkhoz",), + "spadefishes": ("spadefish",), + "spadices": ("spadix",), + "spearfishes": ("spearfish",), + "spectra": ("spectrum",), + "specula": ("speculum",), + "spermatia": ("spermatium",), + "spermatogonia": ("spermatogonium",), + "spermatozoa": ("spermatozoon",), + "spermogonia": ("spermogonium",), + "sphinges": ("sphinx",), + "spicae": ("spica",), + "spicula": ("spiculum",), + "spirilla": ("spirillum",), + "splayfeet": ("splayfoot",), + "splenii": ("splenius",), + "sporangia": ("sporangium",), + "sporogonia": ("sporogonium",), + "sporozoa": ("sporozoan",), + "springhase": ("springhaas",), + "spumoni": ("spumone",), + "sputa": ("sputum",), + "squamae": ("squama",), + "squashes": ("squash",), + "squillae": ("squilla",), + "squirrelfishes": ("squirrelfish",), + "squizzes": ("squiz",), + "stadia": ("stadium",), + "stamina": ("stamen",), + "staminodia": ("staminodium",), + "stapedes": ("stapes",), + "staphylococci": ("staphylococcus",), + "staretsy": ("starets",), + "starfishes": ("starfish",), + "startsy": ("starets",), + "stelae": ("stele",), + "stemmata": ("stemma",), + "stenoses": ("stenosis",), + "stepchildren": ("stepchild",), + "sterna": ("sternum",), + "stigmata": ("stigma",), + "stimuli": ("stimulus",), + "stipites": ("stipes",), + "stirpes": ("stirps",), + "stoae": ("stoa",), + "stockfishes": ("stockfish",), + "stomata": ("stoma",), + "stomodaea": ("stomodaeum",), + "stomodea": ("stomodeum",), + "stonefishes": ("stonefish",), + "stotinki": ("stotinka",), + "stotkini": ("stotinka",), + "strappadoes": ("strappado",), + "strata": ("stratum",), + "strati": ("stratus",), + "stratocumuli": ("stratocumulus",), + "street_children": ("street_child",), + "streptococci": ("streptococcus",), + "stretti": ("stretto",), + "striae": ("stria",), + "strobili": ("strobilus",), + "stromata": ("stroma",), + "strumae": ("struma",), + "stuccoes": ("stucco",), + "styli": ("stylus",), + "stylopes": ("stylops",), + "stylopodia": ("stylopodium",), + "subcortices": ("subcortex",), + "subdeliria": ("subdelirium",), + "subgenera": ("subgenus",), + "subindices": ("subindex",), + "submucosae": ("submucosa",), + "subphyla": ("subphylum",), + "substrasta": ("substratum",), + "succedanea": ("succedaneum",), + "succubi": ("succubus",), + "suckerfishes": ("suckerfish",), + "suckfishes": ("suckfish",), + "sudaria": ("sudarium",), + "sudatoria": ("sudatorium",), + "sulci": ("sulcus",), + "summae": ("summa",), + "sunfishes": ("sunfish",), + "supercargoes": ("supercargo",), + "superheroes": ("superhero",), + "supernovae": ("supernova",), + "superstrata": ("superstratum",), + "surgeonfishes": ("surgeonfish",), + "swamies": ("swami",), + "sweetiewives": ("sweetiewife",), + "swellfishes": ("swellfish",), + "swordfishes": ("swordfish",), + "syconia": ("syconium",), + "syllabi": ("syllabus",), + "syllepses": ("syllepsis",), + "symphyses": ("symphysis",), + "sympodia": ("sympodium",), + "symposia": ("symposium",), + "synapses": ("synapsis",), + "synarthroses": ("synarthrosis",), + "synclinoria": ("synclinorium",), + "syncytia": ("syncytium",), + "syndesmoses": ("syndesmosis",), + "synopses": ("synopsis",), + "syntagmata": ("syntagma",), + "syntheses": ("synthesis",), + "syphilomata": ("syphiloma",), + "syringes": ("syrinx",), + "syssarcoses": ("syssarcosis",), + "tableaux": ("tableau",), + "taeniae": ("taenia", "tenia",), + "tali": ("talus",), + "tallaisim": ("tallith",), + "tallithes": ("tallith",), + "tallitoth": ("tallith",), + "tapeta": ("tapetum",), + "tarantulae": ("tarantula",), + "tarsi": ("tarsus",), + "tarsometatarsi": ("tarsometatarsus",), + "taxa": ("taxon",), + "taxes": ("tax", "taxis",), + "taxies": ("taxi",), + "tectrices": ("tectrix",), + "teeth": ("tooth",), + "tegmina": ("tegmen",), + "telae": ("tela",), + "telamones": ("telamon",), + "telangiectases": ("telangiectasia", "telangiectasis",), + "telia": ("telium",), + "tempi": ("tempo",), + "tenacula": ("tenaculum",), + "tenderfeet": ("tenderfoot",), + "teniae": ("tenia",), + "tenues": ("tenuis",), + "teraphim": ("teraph",), + "terata": ("teras",), + "teredines": ("teredo",), + "terga": ("tergum",), + "termini": ("terminus",), + "terraria": ("terrarium",), + "terzetti": ("terzetto",), + "tesserae": ("tessera",), + "testae": ("testa",), + "testes": ("testis",), + "testudines": ("testudo",), + "tetrahedra": ("tetrahedron",), + "tetraskelia": ("tetraskelion",), + "thalamencephala": ("thalamencephalon",), + "thalami": ("thalamus",), + "thalli": ("thallus",), + "theatres-in-the-round": ("theatre-in-the-round",), + "thecae": ("theca",), + "therses": ("thyrse",), + "thesauri": ("thesaurus",), + "theses": ("thesis",), + "thickleaves": ("thickleaf",), + "thieves": ("thief",), + "tholoi": ("tholos",), + "thoraces": ("thorax",), + "thrombi": ("thrombus",), + "thymi": ("thymus",), + "thyrsi": ("thyrsus",), + "tibiae": ("tibia",), + "tilefishes": ("tilefish",), + "tintinnabula": ("tintinnabulum",), + "titmice": ("titmouse",), + "toadfishes": ("toadfish",), + "tobaccoes": ("tobacco",), + "tomatoes": ("tomato",), + "tomenta": ("tomentum",), + "tondi": ("tondo",), + "tonneaux": ("tonneau",), + "tophi": ("tophus",), + "topoi": ("topos",), + "tori": ("torus",), + "tornadoes": ("tornado",), + "torpedoes": ("torpedo",), + "torsi": ("torso",), + "touracos": ("touraco", "turaco",), + "trabeculae": ("trabecula",), + "tracheae": ("trachea",), + "traditores": ("traditor",), + "tragi": ("tragus",), + "trapezia": ("trapezium",), + "trapezohedra": ("trapezohedron",), + "traumata": ("trauma",), + "treponemata": ("treponema",), + "trichinae": ("trichina",), + "triclinia": ("triclinium",), + "triennia": ("triennium",), + "triforia": ("triforium",), + "triggerfishes": ("triggerfish",), + "trihedra": ("trihedron",), + "triskelia": ("triskelion",), + "trisoctahedra": ("trisoctahedron",), + "triumviri": ("triumvir",), + "trivia": ("trivium",), + "trochleae": ("trochlea",), + "tropaeola": ("tropaeolum",), + "trous-de-loup": ("trou-de-loup",), + "trousseaux": ("trousseau",), + "trunkfishes": ("trunkfish",), + "trymata": ("tryma",), + "tubae": ("tuba",), + "turves": ("turf",), + "tympana": ("tympanum",), + "tyros": ("tiro", "tyro",), + "ubermenschen": ("ubermensch",), + "uglies": ("ugli",), + "uigurs": ("uighur",), + "ulnae": ("ulna",), + "ultimata": ("ultimatum",), + "umbilici": ("umbilicus",), + "umbones": ("umbo",), + "umbrae": ("umbra",), + "unci": ("uncus",), + "uncidia": ("uredium",), + "uredines": ("uredo",), + "uredinia": ("uredinium",), + "uredosori": ("uredosorus",), + "urethrae": ("urethra",), + "urinalyses": ("urinalysis",), + "uteri": ("uterus",), + "utriculi": ("utriculus",), + "uvulae": ("uvula",), + "vacua": ("vacuum",), + "vagi": ("vagus", "vagus",), + "vaginae": ("vagina",), + "valleculae": ("vallecula",), + "vaporetti": ("vaporetto",), + "varices": ("varix",), + "vasa": ("vas",), + "vascula": ("vasculum",), + "vela": ("velum",), + "velamina": ("velamen",), + "velaria": ("velarium",), + "venae": ("vena",), + "venae_cavae": ("vena_cava",), + "ventriculi": ("ventriculus",), + "vermes": ("vermis",), + "verrucae": ("verruca",), + "vertebrae": ("vertebra",), + "vertices": ("vertex",), + "vertigines": ("vertigo",), + "vertigoes": ("vertigo",), + "vesicae": ("vesica",), + "vetoes": ("veto",), + "vexilla": ("vexillum",), + "viatica": ("viaticum",), + "viatores": ("viator",), + "vibracula": ("vibraculum",), + "vibrissae": ("vibrissa",), + "vice-chairman": ("vice-chairman",), + "villi": ("villus",), + "vimina": ("vimen",), + "vincula": ("vinculum",), + "viragoes": ("virago",), + "vires": ("vis",), + "virtuosi": ("virtuoso",), + "vitae": ("vita",), + "vitelli": ("vitellus",), + "vittae": ("vitta",), + "vivaria": ("vivarium",), + "voces": ("vox",), + "volcanoes": ("volcano",), + "volkslieder": ("volkslied",), + "volte": ("volta",), + "volvae": ("volva",), + "vorticellae": ("vorticella",), + "vortices": ("vortex",), + "vulvae": ("vulva",), + "wagons-lits": ("wagon-lit",), + "wahhabis": ("wahabi", "wahhabi",), + "wanderjahre": ("wanderjahr",), + "weakfishes": ("weakfish",), + "werewolves": ("werewolf",), + "wharves": ("wharf",), + "whippers-in": ("whipper-in",), + "whitefishes": ("whitefish",), + "wives": ("wife",), + "wolffishes": ("wolffish",), + "wolves": ("wolf",), + "woodlice": ("woodlouse",), + "wreckfishes": ("wreckfish",), + "wunderkinder": ("wunderkind",), + "xiphisterna": ("xiphisternum",), + "yeshivahs": ("yeshiva",), + "yeshivoth": ("yeshiva",), + "yogin": ("yogi",), + "yourselves": ("yourself",), + "zamindaris": ("zamindari", "zemindari",), + "zecchini": ("zecchino",), + "zeroes": ("zero",), + "zoa": ("zoon",), + "zoaeae": ("zoaea", "zoea",), + "zoeae": ("zoea",), + "zoeas": ("zoaea",), + "zoonoses": ("zoonosis",), + "zoosporangia": ("zoosporangium",) +} diff --git a/spacy/en/lemmatizer/_verbs.py b/spacy/en/lemmatizer/_verbs.py new file mode 100644 index 000000000..93b13ea35 --- /dev/null +++ b/spacy/en/lemmatizer/_verbs.py @@ -0,0 +1,915 @@ +# coding: utf8 +from __future__ import unicode_literals + + +VERBS = set(""" +aah abacinate abandon abase abash abate abbreviate abdicate abduce abduct +aberrate abet abhor abide abjure ablactate ablate abnegate abolish abominate +abort abound about-face abrade abrase abreact abridge abrogate abscise abscond +abseil absent absolve absorb absquatulate abstain abstract abuse abut aby abye +accede accelerate accent accentuate accept access accession acclaim acclimate +acclimatise acclimatize accommodate accompany accomplish accord accost account +accouter accoutre accredit accrete accrue acculturate accumulate accurse accuse +accustom ace acerbate acetify acetylate acetylise acetylize ache achieve +achromatise achromatize acid-wash acidify acidulate acknowledge acquaint +acquiesce acquire acquit act action activate actualise actualize actuate +acuminate ad-lib adapt add addict addle address adduce adduct adhere adjoin +adjourn adjudge adjudicate adjure adjust admeasure administer administrate +admire admit admix admonish adolesce adopt adore adorn adsorb adulate adulterate +adumbrate advance advantage advect adventure advert advertise advertize advise +advocate aerate aerify aerosolise aerosolize aestivate affect affiance affiliate +affirm affix afflict afford afforest affranchise affright affront age agenise +agenize agglomerate agglutinate aggrade aggrandise aggrandize aggravate +aggregate aggress aggrieve aggroup agitate agnise agnize agonise agonize agree +aid ail aim air air-condition air-cool air-drop air-freight air-ship air-slake +airbrush airfreight airlift airmail airt alarm alchemise alchemize alcoholise +alcoholize alert alibi alien alienate alight align aliment aline alkalify +alkalinise alkalinize alkalise alkalize allay allege allegorise allegorize +alleviate alligator alliterate allocate allot allow allowance alloy allude +allure ally alphabetise alphabetize alter altercate alternate aluminise +aluminize amalgamate amass amaze ambition amble ambulate ambuscade ambush +ameliorate amend amerce americanise americanize ammoniate ammonify amnesty +amortise amortize amount amplify amputate amuse anaesthetise anaesthetize +anagram anagrammatise anagrammatize analogise analogize analyse analyze +anastomose anathematise anathematize anathemise anathemize anatomise anatomize +anchor ancylose anele anesthetise anesthetize anger angle angle-park anglicise +anglicize anguish angulate animadvert animalise animalize animate animise +animize ankylose anneal annex annihilate annotate announce annoy annul +annunciate anodise anodize anoint answer antagonise antagonize ante antecede +antedate anthologise anthologize anthropomorphise anthropomorphize antic +anticipate antiquate antique antisepticize ape aphorise aphorize apologise +apologize apostatise apostatize apostrophise apostrophize apotheose apotheosise +apotheosize appal appall apparel appeal appear appease append apperceive +appertain applaud applique apply appoint apportion appose appraise appreciate +apprehend apprentice apprise apprize approach approbate appropriate approve +approximate aquaplane aquatint arbitrage arbitrate arborise arborize arc arch +archaise archaize archive argue argufy arise arm armor armour aromatise +aromatize arouse arraign arrange array arrest arrive arrogate arterialise +arterialize article articulate ascend ascertain ascribe ash ask asperse asphalt +asphyxiate aspirate aspire assail assassinate assault assay assemble assent +assert assess asseverate assibilate assign assimilate assist associate assoil +assonate assort assuage assume assure asterisk astonish astound astringe +astrogate atom-bomb atomise atomize atone atrophy attach attack attain attaint +attemper attempt attend attenuate attest attire attitudinise attitudinize attorn +attract attribute attune auction auctioneer audit audition augment augur aurify +auscultate auspicate authenticate author authorise authorize autoclave autograph +automate automatise automatize automobile autopsy autotomise autotomize avail +avalanche avenge aver average avert avianise avianize aviate avoid avouch avow +avulse await awake awaken award awe ax axe azure baa babbitt babble baby baby- +sit bach bachelor back backbite backcross backdate backfire background backhand +backlash backlog backpack backpedal backscatter backslap backslide backspace +backstitch backstop backstroke backtrack bacterise bacterize badge badger +badmouth baffle bag bail bait bake balance bald bale balk balkanise balkanize +ball ballast balloon ballot ballyhoo ballyrag bamboozle ban band bandage bandy +bang banish bank bankroll bankrupt banquet banter baptise baptize bar barb +barbarise barbarize barbecue barbeque barber bard barde bare barf bargain barge +bark barnstorm baronetise baronetize barrack barrage barrel barricade barricado +barter base bash basify bask basset bastardise bastardize baste bastinado bat +batch bate batfowl bath bathe batik batten batter battle baulk bawl bay bayonet +be beach beacon bead beak beam bean bear beard beat beatify beautify beaver +bebop becalm bechance becharm beckon becloud become bed bed-hop bedamn bedaub +bedaze bedazzle bedeck bedevil bedew bedhop bedight bedim bedizen bedraggle beef +beep beeswax beetle befall befit befog befool befoul befriend befuddle beg beget +beggar begild begin begrime begrudge beguile behave behead behold behoove behove +bejewel belabor belabour belay belch beleaguer belie believe belittle bell +bellow belly belly-flop belly-land bellyache bellylaugh belong belt bemire +bemoan bemock bemuse bench bend benday benefact benefice beneficiate benefit +benficiate benight benumb beplaster bequeath berate bereave berry berth beseech +beseem beset beshrew besiege besmear besmirch besot bespangle bespatter bespeak +bespeckle bespot besprinkle best bestialise bestialize bestir bestow bestrew +bestride bet bethink betide betoken betray betroth better bevel bewail beware +bewhisker bewilder bewitch bewray bias bib bicker bicycle bid bide biff +bifurcate bight bike bilge bilk bill billet billow bin bind binge bioassay +biodegrade birch bird bird-nest birdie birdlime birdnest birdwatch birl birle +birr birth bisect bitch bite bitt bitter bituminise bituminize bivouac blab +blabber black blackball blackberry blacken blackguard blackjack blacklead +blackleg blacklist blackmail blacktop blackwash blame blanch blandish blank +blanket blare blarney blaspheme blast blat blate blather blaze blazon bleach +blear bleat bleed bleep blemish blench blend bless blether blight blind +blindfold blindside blink blinker blister blither blitz blitzkrieg bloat blob +block blockade blog blood bloody bloom blossom blot blotch bloviate blow blow- +dry blub blubber bludgeon blue blue-pencil blueprint bluff blunder blunt blur +blurt blush bluster board boast boat boat-race bob bobble bobsled bode bodge +body body-surf bodypaint bog bogey boggle boil boldface bollix bollocks +bolshevise bolshevize bolster bolt bomb bombard bombilate bombinate bombproof +bond bonderise bonderize bone bong bonk bonnet boo boob boogie book boom +boomerang boondoggle boost boot bootleg bootlick bootstrap booze bop border bore +borrow bosom boss botanise botanize botch bother bottle bottlefeed bottleneck +bottom bounce bound bourgeon bouse bow bowdlerise bowdlerize bower bowl bowse +box boycott brabble brace brachiate bracket brad brag braid brail braille brain +brainstorm brainwash braise brake branch brand brandish brandmark brattice +brattle brave bravo brawl bray braze brazen breach bread break break-dance +breakfast bream breast breastfeed breaststroke breathalyse breathalyze breathe +brecciate breed breeze brevet brew bribe bridge bridle brief brigade brighten +brim brine bring brisk brisken bristle broach broadcast broaden broadside +brocade broider broil broker bromate brominate bronze brooch brood brook broom +browbeat brown brown-nose browse bruise bruit brunch brush brutalise brutalize +bubble buccaneer buck bucket buckle buckram bud budge budget buff buffalo buffer +buffet bug bugger bugle build bulge bulk bull bulldog bulldoze bulletin +bulletproof bullshit bully bullyrag bulwark bum bumble bump bunch bunco bundle +bung bungle bunk bunker bunt buoy bur burble burden burgeon burglarise +burglarize burgle burke burl burlesque burn burnish burp burr burrow burst +burthen bury bus bush bushel bushwhack busk buss bust bustle busy butcher butt +butt-weld butter butterfly button buttonhole buttress buttweld butylate buy buzz +by-bid bypass ca-ca cab cabal cabbage cabin cable cache cachinnate cackel cackle +caddie caddy cadge cage cajole cake cakewalk calcify calcimine calcine calculate +calendar calender calibrate caliper calk call calligraph calliper callous callus +calm calumniate calve camber camouflage camp campaign camphorate can canal +canalise canalize cancel candle candy cane canker cannibalise cannibalize cannon +cannonade cannulate cannulise cannulize canoe canonise canonize canoodle canopy +cant canter cantilever cantillate canton canulate canvas canvass cap capacitate +caparison caper capitalise capitalize capitulate caponise caponize capriole +capsize capsulate capsule capsulise capsulize captain caption captivate capture +caracole caramelise caramelize caravan carbonate carbonise carbonize carboxylate +carburet carburise carburize card care careen career caress caricature carjack +cark carmine carnalise carnalize carnify carol carom carouse carp carpenter +carpet carry cart cartoon cartwheel carve cascade case caseate cash cashier +casket cast castigate castle castrate cat catabolise catabolize catalog +catalogue catalyse catalyze catapult catcall catch catechise catechize +categorise categorize catenate catenulate cater caterwaul cathect catheterise +catheterize catholicise catholicize catnap caucus caulk cause causeway cauterise +cauterize caution cave cavern cavil cavort caw cease cede celebrate cement cense +censor censure census center centralise centralize centre centrifugate +centrifuge cere cerebrate certificate certify cha-cha chafe chaff chaffer +chagrin chain chain-smoke chair chairman chalk challenge chamber chamfer champ +champion chance chandelle change channel channel-surf channelise channelize +chant chap chaperon chaperone char character characterise characterize charcoal +charge chariot charleston charm chart charter chase chasse chasten chastise chat +chatter chauffeur chaw cheapen cheat check checker checkmate checkrow cheek +cheep cheer cheerlead cheese chelate chemisorb cheque chequer cherish chevvy +chevy chew chicane chicken-fight chickenfight chide child-proof childproof chill +chime chin chine chink chip chirk chiromance chirp chirr chirrup chisel chit- +chat chitchat chitter chivvy chivy chlorinate chloroform chock choir choke chomp +chondrify choose chop chord choreograph chortle chorus chouse christen +christianise christianize chrome chromium-plate chronicle chronologise +chronologize chuck chuckle chuff chug chunk church churn churr chute cicatrise +cicatrize cinch cinematise cinematize cipher circle circuit circularise +circularize circulate circumambulate circumcise circumfuse circumnavigate +circumscribe circumstantiate circumvallate circumvent circumvolute circumvolve +cite citify citrate civilise civilize clabber clack claim clam clamber clamor +clamour clamp clang clangor clangour clank clap clapboard clapperclaw claret +clarify clarion clash clasp class classicise classicize classify clatter claver +claw claxon clean cleanse clear clear-cut cleat cleave clench clerk clew click +climax climb clinch cling clink clinker clip clitter cloak clobber clock clog +cloister clomp clone clop close closet closure clot clothe cloture cloud clout +clown cloy club cluck clue clump clunk cluster clutch clutter co-author co- +educate co-occur co-opt co-sign co-star co-vary coach coact coagulate coal +coalesce coapt coarsen coast coat coax cobble cobblestone cocainise cocainize +cock cocker cockle coconspire cocoon cod coddle code codify coeducate coerce +coexist coffin cog coggle cogitate cognise cognize cohabit cohere coif coiffe +coiffure coil coin coincide coinsure coke cold-cream cold-shoulder coldcock +coldwork collaborate collapse collar collate collateralize collect collectivise +collectivize collide colligate collimate collocate collogue collude colly +colonise colonize color colorcast colorise colorize colour colourise colourize +comb combat combine combust come comfit comfort command commandeer commemorate +commence commend comment commentate commercialise commercialize comminate +commingle comminute commiserate commission commit commix commove communalise +communalize commune communicate communise communize commutate commute compact +companion company compare comparison-shop compart compartmentalise +compartmentalize compass compassionate compel compensate compere compete compile +complain complect complement complete complexify complexion complicate +compliment complot comply comport compose compost compound comprehend compress +comprise compromise compute computerise computerize con concatenate conceal +concede conceive concenter concentrate concentre conceptualise conceptualize +concern concert concertina concertise concertize conciliate conclude concoct +concord concrete concretise concretize concur concuss condemn condense +condescend condition condole condone conduce conduct cone confab confabulate +confect confection confederate confer confess confide configure confine confirm +confiscate conflagrate conflate conflict conform confound confront confuse +confute conga conge congeal congee congest conglobate conglobe conglomerate +conglutinate congratulate congregate conjecture conjoin conjugate conjure conk +conn connect connive connote conquer conscript consecrate consent conserve +consider consign consist consociate console consolidate consonate consort +conspire constellate consternate constipate constitute constitutionalise +constitutionalize constrain constrict constringe construct construe +consubstantiate consult consume consummate contact contain containerise +containerize contaminate contemn contemplate contemporise contemporize contend +content contest continue contort contour contract contradance contradict +contradistinguish contraindicate contrast contravene contredanse contribute +contrive control controvert contuse convalesce convect convene conventionalise +conventionalize converge converse convert convey convict convince convoke +convolute convolve convoy convulse coo cooccur cook cool cooper cooperate +coordinate cop cope copolymerise copolymerize copper copper-bottom copulate copy +copyedit copyread copyright coquet coquette corbel cord corduroy core cork +corkscrew corn corner cornice coronate corrade corral correct correlate +correspond corroborate corrode corrugate corrupt corset coruscate cosh cosign +cosponsor cosset cost costume cotton couch cough counsel count countenance +counter counter-drill counteract counterattack counterbalance counterchallenge +counterchange countercheck counterclaim counterfeit countermand countermarch +countermine counterplot counterpoint counterpoise counterpose countersign +countersink counterstrike countervail counterweight country-dance couple course +court court-martial covenant cover covet cow cower cowhide cowl cox cozen crab +crack crackle cradle craft cram cramp cranch crane crank crap crape crash crash- +dive crate craunch crave crawfish crawl crayon craze creak cream crease create +credit creep cremate crenel crenelate crenellate creolize creosote crepe +crepitate crescendo crest crew crib crick cricket criminalise criminalize +criminate crimp crimson cringe crinkle cripple crisp crispen crisscross +criticise criticize critique croak crochet crock cronk crook croon crop croquet +cross cross-check cross-dress cross-fertilise cross-fertilize cross-file cross- +index cross-link cross-pollinate cross-refer crossbreed crosscut crosshatch +crossruff crouch crow crowd crown crucify cruise crumb crumble crump crumple +crunch crusade crush crust cry crystalise crystalize crystallise crystallize cub +cube cuckold cuckoo cuddle cudgel cue cuff cull culminate cultivate culture +cumber cumulate cup curb curdle cure curl curry currycomb curse curtail curtain +curtsey curtsy curve curvet cushion cuss custom-make customise customize cut +cutinize cybernate cycle cyclostyle cypher dab dabble dado daisy-chain dally dam +damage damascene damn damp dampen dance dandify dandle dangle dapple dare darken +darn dart dash date date-mark dateline datemark daub daunt dawdle dawn daydream +daze dazzle de-access de-aerate de-emphasise de-emphasize de-energise de- +energize de-escalate de-ice de-iodinate de-ionate deaccession deactivate deaden +deaerate deaf deafen deal deaminate deaminize debar debark debase debate debauch +debilitate debit debone debouch debrief debug debunk debut decaffeinate +decalcify decamp decant decapitate decarbonate decarbonise decarbonize +decarboxylate decarburise decarburize decay decease deceive decelerate +decentralise decentralize decerebrate decertify dechlorinate decide decimalise +decimalize decimate decipher deck declaim declare declassify declaw decline +declutch decoct decode decoke decollate decolonise decolonize decolor decolorise +decolorize decolour decolourise decolourize decommission decompose decompress +deconcentrate deconsecrate deconstruct decontaminate decontrol decorate +decorticate decouple decoy decrease decree decrepitate decrescendo decriminalise +decriminalize decry decrypt decussate dedicate dedifferentiate deduce deduct +deem deep-dye deep-fat-fry deep-fry deep-six deepen deface defalcate defame +defang defat default defeat defecate defect defeminise defeminize defend +defenestrate defer defervesce defibrillate defibrinate defile define deflagrate +deflate deflect deflower defog defoliate deforest deform defraud defray defrock +defrost defuse defy degas degauss degenerate deglaze deglycerolise deglycerolize +degrade degrease degust dehisce dehorn dehumanise dehumanize dehumidify +dehydrate dehydrogenate deice deify deign deionize deject delay delegate delete +deliberate delight delimit delimitate delineate deliquesce delist deliver +delocalize delouse delude deluge delve demagnetise demagnetize demand demarcate +demasculinise demasculinize dematerialise dematerialize demean demilitarise +demilitarize demineralise demineralize demise demist demo demob demobilise +demobilize democratise democratize demodulate demolish demonetise demonetize +demonise demonize demonstrate demoralise demoralize demote demulsify demur +demyelinate demystify demythologise demythologize denationalise denationalize +denaturalise denaturalize denature denazify denigrate denitrify denominate +denote denounce dent denudate denude deny deodorise deodorize deodourise +deoxidise deoxidize deoxygenate depart depend depersonalise depersonalize depict +depilate deplane deplete deplore deploy deplumate deplume depolarise depolarize +depone depopulate deport depose deposit deprave deprecate depreciate depress +depressurise depressurize deprive depute deputise deputize deracinate derail +derange derate derecognise derecognize deregulate derequisition derestrict +deride derive derogate desacralize desalinate desalinise desalinize desalt +descale descant descend describe descry desecrate desegregate desensitise +desensitize desert deserve desex desexualise desexualize desiccate design +designate desire desist desolate desorb despair despatch despise despoil despond +desquamate destabilise destabilize destain destalinise destalinize destine +destress destroy destruct desulfurize desulphurize desynchronise desynchronize +detach detail detain detect deter deterge deteriorate determine detest dethaw +dethrone detick detonate detour detox detoxicate detoxify detract detrain +detransitivise detransitivize detribalise detribalize detusk devaluate devalue +devastate devein develop deviate devil devilise devilize devise devitalise +devitalize devitrify devoice devolve devote devour diabolise diabolize diagnose +diagonalise diagonalize diagram dial dialyse dialyze diazotize dibble dice +dichotomise dichotomize dicker dictate didder diddle die diet differ +differentiate diffract diffuse dig digest digitalise digitalize digitise +digitize dignify digress dike dilapidate dilate dilly-dally dillydally dilute +dim dimension diminish dimple din dine ding dingdong dinge dip diphthongise +diphthongize direct dirty disable disabuse disaccord disadvantage disaffect +disafforest disagree disallow disambiguate disappear disappoint disapprove +disarm disarrange disarray disarticulate disassemble disassociate disavow +disband disbar disbelieve disbud disburden disburse disc-jockey discard discase +discern discerp discharge discipline disclaim disclose disco discolor +discolorise discolorize discolour discolourise discombobulate discomfit +discommode discompose disconcert disconnect discontent discontinue discord +discount discountenance discourage discourse discover discredit discriminate +discuss disdain disembark disembarrass disembody disembowel disembroil disenable +disenchant disencumber disenfranchise disengage disentangle disestablish +disesteem disfavor disfavour disfigure disforest disfranchise disgorge disgrace +disgruntle disguise disgust dish disharmonize dishearten dishevel dishonor +dishonour disillusion disincarnate disincline disinfect disinfest disinherit +disintegrate disinter disinvest disinvolve disjoin disjoint disk disk-jockey +dislike dislocate dislodge dismantle dismay dismember dismiss dismount disobey +disoblige disorder disorganise disorganize disorient disorientate disown +disparage dispatch dispel dispense disperse dispirit displace display displease +displume disport dispose dispossess dispread disprove dispute disqualify +disquiet disregard disrespect disrobe disrupt diss dissatisfy dissect dissemble +disseminate dissent dissertate dissever dissimilate dissimulate dissipate +dissociate dissolve dissonate dissuade distance distemper distend distil distill +distinguish distort distract distrain distress distribute district distrust +disturb disunify disunite ditch dither ditto divagate divaricate dive dive-bomb +diverge diversify divert divest divide divine divorce divulge dizen dizzy dj do +dock docket doctor document dodder dodge doff dog dogfight dogmatise dogmatize +dogsled domesticate domesticise domesticize domicile domiciliate dominate +domineer don donate dong doodle doom dope dose doss dot dote double double-check +double-date double-glaze double-park double-space double-team doubt douche douse +dovetail dower down downgrade download downplay downsize dowse doze draft drag +draggle dragoon drain dramatise dramatize drape draught draw drawl dread dream +dredge drench dress dribble drift drill drink drip drip-dry drive drivel drizzle +drone drool droop drop drop-kick dropforge dropkick drown drowse drub drudge +drug drum dry dry-dock dry-nurse dry-rot dry-wall drydock dub duck duel dulcify +dulcorate dull dumbfound dummy dump dun dung dunk dupe duplex duplicate dusk +dust dwarf dwell dwindle dye dyke dynamise dynamite dynamize e-mail eagle +earmark earn earth ease eat eavesdrop ebb ebonise ebonize echo eclipse economise +economize eddy edge edify edit editorialise editorialize educate educe +edulcorate eff efface effect effectuate effeminise effeminize effervesce +effloresce effuse egest egg egotrip egress ejaculate eject elaborate elapse +elate elbow elect electioneer electrify electrocute electroplate elegise elegize +elevate elicit elide eliminate elocute elongate elope elucidate elude elute +emaciate email emanate emancipate emasculate embalm embank embargo embark +embarrass embattle embed embellish embezzle embitter emblazon embody embolden +emboss embower embrace embrangle embrittle embrocate embroider embroil embrown +emcee emend emerge emigrate emit emote empale empanel empathise empathize +emphasise emphasize emplace emplane employ empower empty empurple emulate +emulsify enable enact enamel enamor enamour encamp encapsulate encase enchain +enchant encipher encircle enclose enclothe encode encompass encore encounter +encourage encrimson encroach encrust encrypt encumber end endanger endear +endeavor endeavour endorse endow endue endure energise energize enervate +enfeeble enfeoff enfilade enfold enforce enfranchise engage engender engild +engineer englut engorge engraft engrave engross engulf enhance enjoin enjoy +enkindle enlace enlarge enlighten enlist enliven enmesh ennoble enounce enplane +enquire enrage enrapture enrich enrobe enrol enroll ensconce enshrine enshroud +ensile ensky enslave ensnare ensnarl ensue ensure entail entangle enter +entertain enthral enthrall enthrone enthuse entice entitle entomb entrain +entrance entrap entreat entrench entrust entwine enucleate enumerate enunciate +envelop envenom environ envisage envision envy enwrap epilate epitomise +epitomize epoxy equal equalise equalize equate equilibrate equilibrise +equilibrize equip equivocate eradicate erase erect erode eroticize err eruct +erupt escalade escalate escallop escape eschew escort espouse espy essay +establish esteem esterify estimate estivate estrange etch eternalise eternalize +eternise eternize etherealize etherialise etherify etherise etherize etiolate +etymologise etymologize eulogise eulogize euphemise euphemize europeanise +europeanize evacuate evade evaluate evanesce evangelise evangelize evaporate +even eventuate evert evict evidence evince eviscerate evoke evolve exacerbate +exact exaggerate exalt examine exasperate excavate exceed excel except excerpt +exchange excise excite exclaim exclude excogitate excommunicate excoriate +excrete excruciate exculpate excuse execrate execute exemplify exempt exenterate +exercise exert exfoliate exhale exhaust exhibit exhilarate exhort exhume exile +exist exit exonerate exorcise exorcize expand expatiate expatriate expect +expectorate expedite expel expend expense experience experiment expiate expire +explain explicate explode exploit explore export expose exposit expostulate +expound express express-mail expropriate expunge expurgate exsert exsiccate +extemporise extemporize extend extenuate exteriorise exteriorize exterminate +externalise externalize extinguish extirpate extol extort extract extradite +extrapolate extravasate extricate extrude exuberate exudate exude exult exuviate +eye eyeball eyewitness fabricate face face-harden face-lift facilitate facsimile +factor factorise factorize fade fag faggot fagot fail faint fair fake falcon +fall falsify falter familiarise familiarize famish fan fancify fancy fantasise +fantasize fantasy farce fare farm farrow fart fascinate fashion fast fasten fat +fate father fathom fatigue fatten fault favor favour fawn fax faze fear feast +feather featherbed feature fecundate federalise federalize federate fee fee-tail +feed feel feign feint felicitate fell fellate felt feminise feminize fence fend +ferment ferret ferry fertilise fertilize fester festinate festoon fetch fete +fetishize fetter fettle feud feudalize fib fibrillate fictionalise fictionalize +fiddle fidget field field-test fight figure filch file filet filiate filibuster +filigree fill fillet film film-make filter filtrate fin finagle finalise +finalize finance financier find fine fine-tune finedraw finger finger-paint +finger-spell fingerprint fingerspell finish fink fire firebomb fireproof firm +fish fishtail fissure fistfight fit fix fixate fizz fizzle flabbergast flag +flagellate flail flake flambe flame flank flap flare flash flash-freeze flat-hat +flatten flatter flaunt flavor flavour flaw flay fleck fledge flee fleece fleer +fleet flense flesh flex flick flicker flight flim-flam flinch fling flip flip- +flop flirt flit flitter float flocculate flock flog flood floodlight floor flop +floss flounce flounder flour flourish flout flow flower flub fluctuate fluff +flummox flump flunk fluoresce fluoridate fluoridise fluoridize flurry flush +fluster flute flutter flux fly fly-fish flyfish foal foam fob focalise focalize +focus fodder fog foil foist fold foliate follow foment fondle fool foolproof +foot footle footnote footslog forage foray forbear forbid force force-feed +force-land ford forearm forebode forecast foreclose foredate foredoom forefend +foregather forego foreground foreknow foreordain foresee foreshadow foreshorten +foreshow forest forestall foreswear foretell forewarn forfeit forfend forgather +forge forget forgive forgo fork form formalise formalize format formicate +formularise formularize formulate fornicate forsake forswear fort fortify +forward fossilise fossilize foster foul found founder fowl fox foxhunt foxtrot +fraction fractionate fracture fragment fragmentise fragmentize frame franchise +frank frap fraternise fraternize fray frazzle freak freckle free free-associate +free-base freelance freeload freewheel freeze freeze-dry freight french french- +fry frenchify frequent fresco freshen fress fret fricassee fright frighten +fringe frisk fritter frivol frizz frizzle frock frog frogmarch frolic front +frost froth frown fructify fruit frustrate fry ftp fuck fuddle fudge fuel fulfil +fulfill full fullback fulminate fumble fume fumigate function fund fund-raise +fundraise funk funnel furbish furcate furl furlough furnish furrow further fuse +fusillade fuss fustigate g.i. gab gabble gad gag gage gaggle gain gainsay gall +gallivant gallop galumph galvanise galvanize gamble gambol game gang gang-rape +gangrene gaol gap gape garage garb garble garden gargle garland garment garner +garnish garnishee garotte garrison garrote garrotte garter gas gasconade gash +gasify gasp gate gate-crash gather gauffer gauge gawk gawp gaze gazette gazump +gear gee gel gelatinise gelatinize geld geminate general generalise generalize +generate gentle gentrify genuflect germinate gerrymander gestate gesticulate +gesture get geyser ghettoise ghettoize ghost ghostwrite gi gibber gibbet gibe +gift gift-wrap giggle gild gimp gin ginger gip gird girdle girth give glaciate +gladden glamorise glamorize glamour glamourise glamourize glance glare glass +glaze gleam glean glide glide-bomb glimmer glimpse glint glissade glisten +glitter gloat globalise globalize globe-trot glom glorify glory gloss glow +glower glue glug glut gluttonise gluttonize glycerolise glycerolize gnarl gnash +gnaw go goad gobble goffer goggle gold-plate goldbrick goldplate golf gong goof +goof-proof goofproof google goose gore gorge gormandise gormandize gossip gouge +gourmandize govern gown grab grace gradate grade graduate graft grain grandstand +grant granulate graph grapple grasp grass grate gratify grave gravel gravitate +gray graze grease green greet grey griddle grieve grill grimace grime grin grind +grip gripe grit grizzle groak groan groin grok groom groove grope gross grouch +ground group grouse grout grovel grow growl grub grubstake grudge grumble grunt +grunt-hoot gruntle guarantee guard guess guesstimate guffaw guggle guide +guillotine gull gulp gum gun gurgle gush gut gutter guttle guy guzzle gybe gyp +gyrate habilitate habit habituate hack hackle haemagglutinate haggle hail hale +halloo hallow hallucinate halt halter halve ham hammer hamper hamstring hand +hand-build hand-dye hand-pick hand-wash handbuild handcolor handcolour handcraft +handcuff handicap handle handstamp handwash handwrite hang hanker hap happen +harangue harass harbinger harbor harbour harden hare hark harken harlequin harm +harmonise harmonize harness harp harpoon harrow harry harshen harvest hash hasp +hassle hasten hat hatch hatchel hate haul haunt have haw hawk hay hazard haze +head headbutt headline headquarter heal heap hear hearken hearten heat heave +heckle hectograph hector hedge hedgehop hee-haw heed heel heft heighten heist +heliograph helm help hem hemagglutinate hemorrhage hemstitch hen-peck henna +herald herd hero-worship hesitate heterodyne hew hex hibachi hibernate hiccough +hiccup hide hie higgle high-tail highjack highlight hightail hijack hike hill +hinder hinge hint hire hiss hit hitch hitchhike hive hoard hoax hob hobble +hobnail hobnob hock hoe hog hog-tie hoist hold hole holiday holler hollo hollow +holystone home home-school homer homestead homogenise homogenize homologise +homologize hone honey honeycomb honeymoon honk honor honour hood hoodoo hoodwink +hoof hook hoop hoot hoover hop hop-skip hope hopple horn hornswoggle horrify +horripilate horse horse-race horse-trade horseshoe horsewhip hose hospitalise +hospitalize host hot-dog hot-wire hot-work hotfoot hound house house-train +housebreak houseclean housekeep hover howl huckster huddle hue huff hug hulk +hull hum humanise humanize humble humbug humidify humify humiliate humor humour +hump hunch hunger hunker hunt hurdle hurl hurrah hurry hurt hurtle husband hush +husk hustle hybridise hybridize hydrate hydrogen-bomb hydrogenate hydrolise +hydrolize hydrolyse hydrolyze hydroplane hygienise hygienize hymn hype +hyperbolise hyperbolize hyperextend hypertrophy hyperventilate hyphen hyphenate +hypnotise hypnotize hypophysectomise hypophysectomize hypostatise hypostatize +hypothecate hypothesise hypothesize ice idealise idealize ideate identify idle +idolise idolize ignite ignore ill-treat ill-use illegalise illegalize illume +illuminate illumine illustrate image imagine imbed imbibe imbricate imbrue imbue +imitate immaterialise immaterialize immerse immigrate immingle immix immobilise +immobilize immolate immortalise immortalize immunise immunize immure impact +impair impale impanel impart impeach impede impel impend imperil impersonate +impinge implant implement implicate implode implore imply import importune +impose impound impoverish imprecate impregnate impress imprint imprison improve +improvise improvize impugn impulse-buy impute inactivate inaugurate incandesce +incapacitate incarcerate incarnadine incarnate incase incense inch incinerate +incise incite incline inclose include incommode inconvenience incorporate +increase incriminate incrust incubate inculcate inculpate incur incurvate +indemnify indent indenture index indicate indict indispose indite individualise +individualize individuate indoctrinate indorse induce induct indue indulge +indurate industrialise industrialize indwell inebriate infatuate infect infer +infest infiltrate infix inflame inflate inflect inflict influence inform infract +infringe infuriate infuscate infuse ingeminate ingest ingraft ingrain ingratiate +ingurgitate inhabit inhale inhere inherit inhibit inhume initial initialise +initialize initiate inject injure ink inlay inmarry innervate innovate inoculate +inosculate input inquire inscribe inseminate insert inset insinuate insist +insolate inspan inspect inspire inspirit inspissate instal install instance +instantiate instigate instil instill institute institutionalise institutionalize +instruct instrument instrumentate insufflate insulate insult insure integrate +intend intensify inter interact interbreed intercalate intercede intercept +interchange intercommunicate interconnect interdepend interdict interest +interfere interiorise interiorize interject interlace interlard interleave +interlink interlock interlope interlude intermarry intermediate intermingle +intermit intermix intern internalise internalize internationalise +internationalize interpellate interpenetrate interpolate interpose interpret +interrelate interrogate interrupt intersect intersperse interstratify intertwine +intervene interview interweave intimate intimidate intonate intone intoxicate +intransitivise intransitivize intrench intrigue introduce introject intromit +introspect introvert intrude intrust intubate intuit intumesce intussuscept +inunct inundate inure invade invaginate invalid invalidate inveigh inveigle +invent inventory invert invest investigate invigilate invigorate invite invoice +invoke involve inweave iodinate iodise iodize ionate ionise ionize iridesce irk +iron irradiate irrigate irritate irrupt islamise islamize isolate isomerise +isomerize issue italicise italicize itch itemise itemize iterate itinerate jab +jabber jack jacket jackknife jacklight jackrabbit jactitate jade jag jail jam +jampack jangle japan jar jaundice jaunt jaw jawbone jaywalk jazz jeer jell +jellify jelly jeopardise jeopardize jerk jest jet jettison jewel jib jibe jig +jiggle jilt jimmy jingle jingle-jangle jinx jitterbug jive job jockey jog joggle +join joint joke jollify jolly jolt josh jostle jot jounce journey joust joy +joyride jubilate judder judge jug juggle julienne jumble jump jump-start +jumpstart junk junket junketeer justify jut juxtapose kayak kayo keel keen keep +kennel keratinise keratinize kern key keynote kibbitz kibitz kibosh kick kick- +start kid kidnap kill kindle kink kip kiss kit kite kitten knap knead kneecap +kneel knell knife knight knit knock knot know knuckle kotow kowtow kvetch label +labialise labialize labor labour lace lacerate lack lacquer lactate ladder lade +laden ladle lag laicise laicize lallygag lam lamb lambast lambaste lame lament +laminate lampoon lance land landscape languish lap lapidate lapidify lapse lard +lark larn larrup lash lasso last latch lateralize lather latinise latinize laud +laugh launch launder lave lavish lay layer laze leach lead leaf league leak lean +leap leapfrog learn lease leash leather leave leaven lecture leech leer legalise +legalize legislate legitimate legitimatise legitimatize legitimise legitimize +lend lengthen lenify lessen let letter levant level lever leverage levitate levy +lexicalise lexicalize liaise libel liberalise liberalize liberate librate +licence license lick lie lifehack lift ligate light lighten lighter lignify like +liken lilt limber lime limit limn limp line linearise linearize linger link +lionise lionize lip-read lip-sync lip-synch lipread lipstick liquefy liquidate +liquidise liquidize liquify lisp list listen literalise literalize lithograph +litigate litter live liven load loaf loan loathe lob lobby localise localize +locate lock locomote lodge loft log log-in logroll loiter loll lollop lollygag +long look loom loop loose loosen loot lop lope lord lose lot louden lounge lour +love low lowball lower lube lubricate lucubrate luff lug luge lull lumber +luminesce lump lunch lunge lurch lure lurk lust lustrate luxate luxuriate lynch +lyophilise lyophilize lyric lysogenize macadamise macadamize macerate +machicolate machinate machine machine-wash macrame maculate madden madder +madrigal magnetise magnetize magnify mail maim mainline maintain major make +maledict malfunction malign malinger malnourish malt maltreat malversate mambo +man manacle manage mandate manducate maneuver mangle manhandle manicure manifest +manifold manipulate manoeuver manoeuvre mantle manufacture manumit manure map +mapquest mar maraud marble marbleise marbleize marcel march marginalise +marginalize marinade marinate mark market maroon marry marshal martyr martyrise +martyrize marvel masculinise masculinize mash mask masquerade mass mass-produce +massacre massage master mastermind masticate masturbate mat match mate +materialise materialize matriculate matt-up matte matter maturate mature maul +maunder maximise maximize mean meander measure mechanise mechanize meddle +mediate medicate medicine meditate meet melanise melanize meld meliorate mellow +melodise melodize melt memorialise memorialize memorise memorize menace mend +menstruate mensurate mention mentor meow mercerise mercerize merchandise merge +merit mesh mesmerise mesmerize mess message metabolise metabolize metal metalize +metallize metamorphose metastasise metastasize meter metricate metricise +metricize metrify mew mewl miaou miaow micro-cook microcopy microfilm microwave +micturate middle miff migrate mildew militarise militarize militate milk mill +mime mimeo mimeograph mimic mince mind mine mineralize mingle miniate +miniaturise miniaturize minify minimise minimize minister minstrel mint mire +mirror misaddress misadvise misalign misally misapply misapprehend +misappropriate misbehave misbelieve miscalculate miscall miscarry miscast +miscegenate misconceive misconduct misconstrue miscount miscreate misdate +misdeal misdeliver misdemean misdirect misdo misestimate misfire misfunction +misgauge misgive misgovern misguide mishandle misidentify misinform misinterpret +misjudge mislay mislead mismanage mismarry mismatch mismate misname misperceive +misplace misplay misprint mispronounce misquote misread misremember misrepresent +miss misspeak misspell misspend misstate mist mistake mistime mistranslate +mistreat mistrust misunderstand misuse miter mitigate mix mizzle moan mob +mobilise mobilize mock model moderate modernise modernize modify modulate moil +moisten moisturise moisturize mold molder molest mollify mollycoddle molt +monetise monetize monger mongrelise mongrelize monish monitor monkey monologuise +monologuize monopolise monopolize monumentalise monumentalize moo mooch moon +moonlight moonshine moor moot mop mope moralise moralize morph mortar mortgage +mortice mortify mortise mosey mosh mothball mother mothproof motion motivate +motley motor motorbike motorboat motorcycle motorise motorize mottle mould +moulder moult mound mount mountaineer mourn mouse mousse mouth move mow muck +muckrake mud mud-wrestle muddle muddy mudwrestle muff muffle mug mulch mulct +mull multiply mumble mummify munch munition murder murk murmur muscle muse mush +mushroom muss mussitate muster mutate mute mutilate mutiny mutter muzzle mystify +mythicise mythicize mythologise mythologize nab nag nail name namedrop nap +narcotise narcotize nark narrate narrow nasale nasalise nasalize nationalise +nationalize natter naturalise naturalize nauseate navigate nazify near neaten +necessitate neck necrose need needle negate negative neglect negociate negotiate +neigh neighbor neighbour nerve nest nestle net netmail nett nettle network +neuter neutralise neutralize nibble nick nickel nickel-and-dime nicker nickname +nictate nictitate niggle nigrify nip nitpick nitrate nitrify nitrogenise +nitrogenize nix nobble nock nod noise nol.pros. nominate nonplus noose normalise +normalize nose nosedive nosh notarise notarize notate notch note notice notify +nourish novate novelise novelize nucleate nudge nuke nullify numb number +numerate nurse nurture nut nutate nutrify nuzzle o.d. o.k. obey obfuscate object +objectify objurgate obligate oblige obliterate obnubilate obscure observe obsess +obsolesce obstinate obstipate obstruct obtain obtrude obtund obturate obviate +occasion occidentalise occidentalize occlude occult occupy occur odorize +odourise off offend offer officer officialise officialize officiate offload +offsaddle offset ogle oil oink okay omen omit one-step ooh ooze opacify opalesce +opalise opalize open operate opine oppose oppress oppugn opsonize opt optimise +optimize orate orb orbit orchestrate ordain order ordinate organise organize +orient orientalise orientalize orientate originate ornament orphan oscillate +osculate ossify ostentate ostracise ostracize oust out out-herod outbalance +outbid outbrave outcall outclass outcrop outcry outdistance outdo outdraw +outface outfight outfit outflank outfox outgeneral outgo outgrow outguess +outlast outlaw outline outlive outmaneuver outmanoeuvre outmarch outmatch +outmode outnumber outpace outperform outplay outpoint output outrage outrange +outrank outride outrival outroar outrun outsail outscore outsell outshine +outshout outsmart outsource outspan outstare outstay outstrip outvie outvote +outwear outweigh outwit ovenbake over-correct over-refine overachieve overact +overarch overawe overbalance overbear overbid overboil overburden overcapitalise +overcapitalize overcast overcharge overclothe overcloud overcome overcompensate +overcook overcrop overcrowd overcultivate overdo overdose overdramatise +overdramatize overdraw overdress overdrive overeat overemphasise overemphasize +overestimate overexert overexploit overexpose overextend overfatigue overfeed +overfill overflow overfly overgeneralise overgeneralize overgorge overgrow +overhang overhaul overhear overheat overindulge overjoy overlap overlay overleap +overlie overload overlook overmaster overpay overplay overpopulate overpower +overpraise overprice overprint overproduce overprotect overrate overreach +overreact overrefine override overrule overrun oversee oversew overshadow +overshoot oversimplify oversleep overspecialise overspecialize overspend +overspread overstate overstay overstep overstock overstrain overstress +overstretch overstuff oversupply overtake overtax overthrow overtire overtop +overtrump overturn overuse overvalue overweary overwhelm overwinter overwork +overwrite ovulate owe own oxidate oxidise oxidize oxygenate oxygenise oxygenize +oyster ozonise ozonize pace pacify pack package pad paddle padlock paganise +paganize page paginate pain paint pair pal palatalise palatalize palaver pale +palisade pall palliate palm palpate palpebrate palpitate palsy palter pamper pan +pan-broil pan-fry pander panel panhandle panic pant pant-hoot pantomime paper +par parachute parade paragraph parallel parallel-park parallelize paralyse +paralyze paraphrase parboil parcel parch pardon pare parent parget park parlay +parley parody parole parrot parry parse part partake parti-color participate +particularise particularize partition partner party pass paste pasteurise +pasteurize pasture pat patch patent patinate patinise patinize patrol patronage +patronise patronize patter pattern pattern-bomb pauperise pauperize pause pave +paw pawn pay peach peak peal pearl peck peculate pedal peddle pedicure pee pee- +pee peek peel peep peer peeve peg pelt pen penalise penalize pencil penetrate +penny-pinch pension people pepper peptise peptize perambulate perceive perch +percolate percuss peregrinate perennate perfect perforate perform perfume +perfuse peril perish perjure perk perm permeate permit permute perorate peroxide +perpetrate perpetuate perplex persecute perseverate persevere persist +personalise personalize personate personify perspire persuade pertain perturb +peruse pervade pervaporate pervert pester pestle pet petition petrify pettifog +phase philander philosophise philosophize phlebotomise phlebotomize phonate +phone phosphoresce photocopy photograph photosensitise photosensitize photostat +phrase pick picket pickle picnic picture piddle piece piece-dye pierce piffle +pig pigeonhole piggyback pigment pile pilfer pillage pillory pillow pilot pimp +pin pinch pine ping pinion pink pinkify pinnacle pinpoint pioneer pip pipe pipe- +clay pique pirate pirouette piss pistol-whip pit pitch pitchfork pith pitter- +patter pity pivot placard placate place place-kick plagiarise plagiarize plague +plain plait plan plane plank plant plash plaster plasticise plasticize +plastinate plat plate platinize platitudinize play playact plea-bargain pleach +plead please pleat pledge plicate plight plod plonk plop plot plough plow pluck +plug plumb plume plummet plump plunder plunge plunk pluralise pluralize ply +poach pock pocket pockmark pod podcast poetise poetize point poise poison poke +polarise polarize pole poleax poleaxe polemicise polemicize polemise polemize +police polish politicise politicize politick polka poll pollard pollenate +pollinate pollute polychrome polychromise polychromize polymerise polymerize +pomade pommel pompadour ponder poniard pontificate pooch pooh-pooh pool pop +popularise popularize populate porcelainize pore port portend porter portion +portray pose posit position possess post postdate postmark postpone postpose +postulate posture pot potentiate pother potter pouch poultice pounce pound pour +pout powder powderise powderize power power-dive powerwash powwow practice +practise praise prance prang prank prate prattle prawn pray preach preachify +preamble prearrange preassemble precede precess precipitate precis preclude +preconceive precondition precook predate predecease predestinate predestine +predetermine predicate predict predigest predispose predominate preempt preen +preexist prefabricate preface prefer prefigure prefix preform preheat prehend +preisolate prejudge prejudice prelude premeditate premier premiere premise +premiss preoccupy preordain prepare prepay preponderate prepose prepossess +prerecord presage prescribe present preserve preside press pressure pressure- +cook pressure-wash pressurise pressurize presume presuppose pretend pretermit +prettify prevail prevaricate prevent preview previse prey price prick prickle +pride prim prime primp prink print prioritise prioritize prise privatise +privatize privilege prize prizefight probate probe proceed process proclaim +procrastinate procreate proctor procure prod produce profane profess +professionalise professionalize proffer profile profit profiteer prognosticate +program programme progress prohibit project prolapse proliferate prologise +prologize prologuize prolong promenade promise promote prompt promulgate pronate +pronk pronounce proof proofread prop propagandise propagandize propagate propel +prophesy propitiate proportion propose proposition propound prorate prorogue +proscribe prosecute proselytise proselytize prospect prosper prostitute +prostrate protect protest protract protrude protuberate prove provide provision +provoke prowl prune pry psalm psychoanalyse psychoanalyze ptyalise ptyalize pub- +crawl publicise publicize publish pucker puddle puff puke pule pull pullulate +pulp pulsate pulse pulverise pulverize pumice pummel pump pun punch punctuate +puncture punish punt pup pupate purchase puree purge purify purl purloin purple +purport purpose purpurate purr purse pursue purvey push pussyfoot put putrefy +putt putter putty puzzle pyramid quack quadruple quadruplicate quaff quail quake +qualify quantify quantise quantize quarantine quarrel quarry quarter quarterback +quash quaver queen queer quell quench query quest question quetch queue quibble +quick-freeze quicken quickstep quiesce quiet quieten quilt quintuple quip quirk +quit quiver quiz quote rabbet rabbit race rack racket racketeer raddle radiate +radicalize radio radiolocate raffle raft rafter rag rage raid rail railroad +raiment rain raise rake rally ram ramble ramify ramp rampage ranch randomise +randomize range rank rankle ransack ransom rant rap rape rappel rarefy rarify +rase rasp rasterize rat ratchet rate ratify ratiocinate ration rationalise +rationalize rattle ravage rave ravel raven ravish ray raze razor razz re-address +re-afforest re-argue re-arm re-assume re-create re-emerge re-emphasise re- +emphasize re-enter re-equip re-examine re-explain re-explore re-incorporate re- +introduce re-start reabsorb reach reacquaint react reactivate read readapt +readjust readmit ready reaffirm realign realine realise realize reallocate +reallot ream reanimate reap reappear reapportion reappraise rear rear-end rearm +rearrange reason reassail reassemble reassert reassess reassign reassure +reattribute reave reawaken rebate rebel rebind reboot rebound rebroadcast rebuff +rebuild rebuke rebury rebut recalcitrate recalculate recall recant recap +recapitulate recapture recast recede receipt receive recess recharge recidivate +reciprocate recite reckon reclaim reclassify recline recode recognise recognize +recoil recollect recombine recommence recommend recommit recompense reconcile +recondition reconfirm reconnoiter reconnoitre reconquer reconsecrate reconsider +reconstitute reconstruct reconvene reconvert reconvict recopy record recount +recoup recover recreate recriminate recrudesce recruit rectify recumb recuperate +recur recurve recuse recycle red-eye red-ink redact redden rede redecorate +rededicate redeem redefine redeploy redeposit redesign redetermine redevelop +redirect rediscover redispose redistribute redline redo redouble redound redress +reduce reduplicate reecho reef reek reel reelect reenact reenforce reestablish +reevaluate reeve reexamine reface refashion refer referee reference refill +refinance refine refinish refit reflate reflect reflectorise reflectorize +refloat refocus reforest reforge reform reformulate refract refracture refrain +refresh refreshen refrigerate refuel refund refurbish refurnish refuse refute +regain regale regard regenerate regiment register regorge regress regret regroup +regrow regularise regularize regulate regurgitate rehabilitate reharmonise +reharmonize rehash rehear rehearse reheat reheel rehouse reify reign reignite +reimburse reimpose rein reincarnate reinforce reinstall reinstate reinsure +reintegrate reinterpret reintroduce reinvent reinvigorate reissue reiterate +reject rejig rejoice rejoin rejuvenate rekindle relace relapse relate relativise +relativize relax relay relearn release relegate relent relieve reline relinquish +relish relive reload relocate rely relyric remain remainder remake remand remark +remarry remediate remedy remember remilitarise remilitarize remind reminisce +remit remodel remold remonstrate remould remount remove remunerate rename rend +render render-set rendezvous renegade renege renegociate renegotiate renew +renormalise renormalize renounce renovate rent reopen reorder reorganise +reorganize reorient reorientate repaint repair repatriate repay repeal repeat +repel repent repercuss rephrase repine replace replant replay replenish replete +replicate reply repoint report repose reposit reposition repossess repot +reprehend represent repress reprieve reprimand reprint reprise reprize reproach +reprobate reprocess reproduce reproof reprove republish repudiate repugn repulse +repurchase repute request require requisition requite reread rerun rescale +reschedule rescind rescue reseal research reseat resect reseed resell resemble +resent reserve reset resettle resew reshape reship reshoot reshuffle reside +resift resign resile resinate resist resize resmudge resole resolve resonate +resorb resort resound respect respire respite resplend respond rest restart +restate restitute restock restore restrain restrengthen restrict restructure +resublime resubmit result resume resurface resurge resurrect resuscitate +resuspend ret retail retain retake retaliate retard retch retell rethink retick +reticulate retie retire retool retort retouch retrace retract retrain +retranslate retransmit retread retreat retrench retrieve retrofit retroflex +retrograde retrogress retrospect retrovert retry return reunify reunite reuse +rev revalue revamp reveal revel revenge reverberate revere reverence reverse +revert revet review revile revise revisit revitalise revitalize revive revivify +revoke revolt revolutionise revolutionize revolve reward rewire reword rework +rewrite rhapsodise rhapsodize rhumba rhyme rib rice rick ricochet rid riddle +ride ridge ridicule riff riffle rifle rig right rigidify rile rim rime ring +rinse riot rip ripen riposte ripple rise risk ritualise ritualize rival rive +rivet roach roam roar roast rob robe rock rocket roil roister roleplay roll +rollerblade rollick romance romanise romanize romanticise romanticize romp roneo +roof rook room roost root rootle rope rosin rot rotate rouge rough rough-dry +rough-hew rough-house rough-sand roughcast roughen roughhouse round rouse rout +route rove row rub rubber rubberise rubberize rubberneck rubberstamp rubbish +rubify rubric rubricate ruck ruckle ruddle rue ruff ruffle ruggedise ruggedize +ruin rule rumba rumble ruminate rummage rumor rumour rumple rumpus run rupture +rush rust rusticate rustle rut saber sabotage sabre saccharify sack sacrifice +sadden saddle safeguard sag sail sailplane saint salaam salinate salivate sallow +salt saltate salute salvage salve samba sample sanctify sanction sand sandbag +sandblast sandpaper sandwich sanitate sanitise sanitize sap saponify sashay sass +sate satellite satiate satirise satirize satisfice satisfise satisfy saturate +sauce saunter saute savage save savor savour savvy saw say scab scaffold scald +scale scallop scalp scam scamp scamper scan scandalise scandalize scant scar +scare scarf scarify scarper scat scatter scavenge scend scent schedule +schematise schematize scheme schlep schmoose schmooze schnorr school schuss +scintillate scissor sclaff scoff scold scollop scoop scoot scorch score scorn +scotch scour scourge scout scowl scrabble scrag scram scramble scranch scrap +scrape scratch scraunch scrawl screak scream screech screen screw scribble +scribe scrimmage scrimp scrimshank script scroll scrounge scrub scrunch scruple +scrutinise scrutinize scry scud scuff scuffle scull sculpt sculpture scum +scupper scurry scuttle scythe seal seam seaplane sear search season seat secede +secern secernate seclude second second-guess secrete section sectionalise +sectionalize secularise secularize secure sedate sediment seduce see seed seek +seel seem seep seesaw seethe segment segregate segue seine seize select self- +destroy self-destruct sell sellotape semaphore semi-automatise semi-automatize +send senesce sense sensibilise sensibilize sensify sensitise sensitize +sensualise sensualize sentence sentimentalise sentimentalize sentimentise +sentimentize separate sequence sequester sequestrate serenade serialise +serialize sermonise sermonize serrate serve service set settle sever severalise +severalize sew sex sexualise sexualize shack shackle shade shadow shadowbox +shaft shag shake shallow sham shamanise shamanize shamble shame shampoo shanghai +shank shape share shark sharpen sharpshoot shatter shave she-bop shear sheathe +shed sheer sheet shell shellac shellack shelter shelve shepherd shew shield +shift shill shillyshally shimmer shimmy shin shine shingle shinny ship shipwreck +shirk shirr shirt shit shiver shlep shmoose shmooze shnorr shoal shock shoe +shoehorn shoetree shoo shoot shop shoplift shore short short-change short- +circuit shorten shortlist shoulder shout shove shovel show shower shred shriek +shrill shrimp shrine shrink shrinkwrap shrive shrivel shroud shrug shuck shudder +shuffle shun shunt shush shut shutter shuttle shuttlecock shy sibilate sic sick +sicken side side-slip sideline sidestep sideswipe sidetrack sidle sieve sift +sigh sight sight-read sight-sing sightread sightsee sightsing sign signal +signalise signalize signify signpost silence silhouette silkscreen silt silver +silver-plate silverplate simmer simonise simonize simper simplify simulate sin +sing singe single single-foot singsong singularise singularize sink sinter sip +siphon sire siss sit site situate size sizz sizzle skank skate skateboard +skedaddle sketch skew skewer ski skid skim skimcoat skimp skin skin-dive skinny- +dip skip skip-bomb skipper skirl skirmish skirt skitter skittle skive skreak +skreigh skulk skunk sky skydive skyjack skylark skyrocket slabber slack slacken +slag slake slalom slam slam-dunk slander slang slant slap slash slat slate +slather slaughter slave slaver slay sled sledge sledgehammer sleek sleep +sleepwalk sleet sleigh slenderise slenderize sleuth slew slice slick slide +slight slim slime sling slink slip slit slither sliver slobber slog sloganeer +slop slope slosh slot slouch slough slow slue slug sluice slum slumber slump +slur slurp slush smack smart smash smatter smear smell smelt smile smirch smirk +smite smock smoke smolder smooch smooth smoothen smother smoulder smudge smuggle +smut smutch snack snaffle snafu snag snail snake snap snare snarf snarl snatch +sneak sneer sneeze snick snicker sniff sniffle snigger snip snipe snitch snivel +snog snooker snoop snooze snore snorkel snort snow snow-blind snowball snowboard +snowmobile snowshoe snub snuff snuffle snuggle soak soap soar sob sober +socialise socialize sock sod sodomise sodomize soft-pedal soft-soap soft-solder +soften soil sojourn solace solarise solarize solder soldier sole solemnise +solemnize solicit solidify soliloquise soliloquize solmizate solo solvate solve +somersault somnambulate sonnet soot soothe sop sophisticate sorb sorcerise +sorcerize sorrow sort sough sound soundproof soup sour source souse sovietise +sovietize sow space spacewalk spade spam span spang spangle spank spar spare +sparge spark sparkle spat spatchcock spatter spawn spay speak spear spearhead +specialise specialize speciate specify speck speckle spectate speculate speech- +read speechify speed spell spellbind spelunk spend spew sphacelate spice spiel +spike spill spin spin-dry spiral spirit spiritise spiritize spiritualise +spiritualize spirt spit spite splash splat splatter splay splice splint splinter +split splosh splotch splurge splutter spoil spondaise spondaize sponge sponsor +spoof spook spool spoon spoonfeed sport sportscast sporulate spot spot-check +spot-weld spotlight spotweld spout sprain sprawl spray spray-dry spread spread- +eagle spreadeagle spree spring spring-clean sprinkle sprint spritz sprout spruce +spud spue spume spur spurn spurt sputter spy squabble squall squander square +squash squat squawk squeak squeal squeegee squeeze squelch squinch squint squire +squirm squirt squish stab stabilise stabilize stable stack staff stag stage +stagger stagnate stain stake stale stalemate stalinise stalinize stalk stall +stammer stamp stampede stanch stand standardise standardize staple star +starboard starch stare stargaze start startle starve stash state station staunch +stave stay steady steal steam steam-heat steamer steamroll steamroller steel +steep steepen steer stem stencil stenograph step stereotype sterilise sterilize +stet stew stick stickle stiffen stifle stigmatise stigmatize still still-fish +still-hunt stimulate sting stink stint stipple stipulate stir stitch stock +stock-take stockade stockpile stoke stomach stomp stone stone-wash stonewall +stonewash stooge stool stoop stop stopper stopple store storm stow straddle +strafe straggle straighten strain straiten strand strangle strangulate strap +stratify straw stray streak stream streamline street-walk streetwalk strengthen +stress stretch strew striate strickle stride stridulate strike string strip +strip-search stripe strive stroke stroll strong-arm strop structure struggle +strum strut stub stucco stud study stuff stultify stumble stump stun stunt +stupefy stutter style stylise stylize stymie stymy sub subcontract subdivide +subdue subedit subject subjoin subjugate sublease sublet sublimate sublime +subluxate submarine submerge submerse submit subordinate suborn subpoena +subrogate subscribe subserve subside subsidise subsidize subsist substantiate +substitute subsume subtend subtilise subtilize subtitle subtract suburbanise +suburbanize subvent subvention subvert subvocalise subvocalize succeed succor +succour succumb succuss suck suckle suction sudate suds sue suffer suffice +suffix suffocate suffuse sugar sugarcoat suggest suit sulfate sulfur sulfurette +sulk sully sulphur sulphurette sum summarise summarize summate summer summerise +summerize summit summon summons sun sunbathe sunburn sunder suntan sup +superannuate supercede supercharge superfetate superimpose superinfect +superintend superordinate superpose superscribe supersede supervene supervise +supinate supplant supple supplement supplicate supply support suppose suppress +suppurate surcharge surf surface surface-mine surfboard surfeit surge surmise +surmount surpass surprise surrender surround surtax surveil survey survive +suspect suspend suspire sustain susurrate suture swab swaddle swag swage swagger +swallow swamp swan swank swap swarm swash swat swathe swatter sway swear sweat +sweep sweet-talk sweeten swell swelter swerve swig swill swim swindle swing +swinge swipe swirl swish switch switch-hit swivel swob swoon swoop swoosh swop +swosh swot syllabicate syllabify syllabise syllabize syllogise syllogize +symbolise symbolize symmetrise symmetrize sympathise sympathize symphonise +symphonize sync synchronise synchronize syncopate syncretise syncretize +syndicate synthesise synthesize syphon syringe systematise systematize systemise +systemize table taboo tabularise tabularize tabulate tack tackle tag tail +tailgate tailor tailor-make taint take talc talk tally tame tamp tamper tampon +tan tangle tango tank tantalise tantalize tap tapdance tape taper tar tar-and- +feather target tariff tarmac tarnish tarry task taste tat tattle tattoo taunt +tauten tax taxi teach team tear teargas tease tee teem teeter teeter-totter +teetertotter teethe teetotal telecast telecommunicate telefax telegraph +telepathise telepathize telephone teleport telescope televise telex tell temper +temporise temporize tempt tenant tend tender tenderise tenderize tense tent +tenure tergiversate term terminate terrace terrasse terrify territorialise +territorialize terrorise terrorize tessellate test testify tether thank thatch +thaw theme theologise theologize theorise theorize thermostat thicken thieve +thin think thirst thoriate thrash thread threaten thresh thrill thrive throb +thrombose throne throng throttle throw thrum thrust thud thumb thumbtack thump +thunder thurify thwack thwart tick ticket tickle ticktack ticktock tide tidy tie +tie-dye tighten tile till tiller tilt time tin tinct tincture ting tinge tingle +tink tinker tinkle tinsel tint tintinnabulate tip tipple tippytoe tiptoe tire +tissue tithe titillate titivate title titrate titter tittivate tittle-tattle +tittup toady toast toboggan toddle toe toenail tog toggle toil toilet-train +tolerate toll tomahawk tone tongue tongue-tie tonsure tool toot tootle top +topdress tope topicalize topple torch torment torpedo torture toss tot total +totalise totalize tote totter touch touch-type toughen tour tourney tousle tout +tow towel tower toy trace track trade trademark traduce traffic trail train +traipse tram trammel tramp trample trance tranquilize tranquillise tranquillize +transact transaminate transcend transcribe transduce transect transfer +transfigure transfix transform transfuse transgress transistorise transistorize +transit transition transitivise transitivize translate transliterate translocate +transmigrate transmit transmogrify transmute transpirate transpire transplant +transport transpose transship transubstantiate transude trap trash traumatise +traumatize travail travel traverse travesty trawl tread treadle treasure treat +treble tree trek trellis tremble tremor trench trend trepan trephine trespass +triangulate tribulate trice trick trickle trifle trifurcate trigger trill trim +trip triple triple-space triple-tongue triplicate trisect triumph trivialise +trivialize troat troll troop trot trouble trouble-shoot troubleshoot trounce +trowel truck truckle trudge true trump trumpet truncate trundle truss trust try +tsk tube tuck tucker tug tumble tumefy tumesce tune tunnel turf turn turtle tusk +tussle tut tut-tut tutor twaddle twang tweak tweedle tweet tweeze twiddle twig +twill twin twine twinge twinkle twirl twirp twist twit twitch twitter two-step +two-time type typecast typeset typewrite typify tyrannise tyrannize uglify +ulcerate ultracentrifuge ululate umpire unarm unbalance unbar unbelt unbend +unbind unblock unbolt unbosom unbox unbrace unbraid unbridle unbuckle unburden +unbutton uncase unchain unchurch unclasp unclip uncloak unclog unclothe +unclutter uncoil uncompress uncork uncouple uncover uncrate uncross uncurl +undeceive underachieve underact underbid undercharge undercoat undercut +underdevelop underdress underestimate underexpose undergird undergo undergrow +underlay underlie underline undermine undernourish underpay underperform +underpin underplay underprice underproduce underquote underrate underscore +undersell undershoot undersign underspend understand understate understock +understudy undertake undervalue underwrite undo undock undrape undress undulate +unearth unfasten unfit unfold unfreeze unfrock unfurl unhallow unhand unharness +unhinge unhitch unhook unhorse unicycle uniform uniformise uniformize unify +unionise unionize unite unitise unitize universalise universalize unknot unlace +unlade unlash unlax unlearn unleash unlive unload unlock unloose unloosen unmake +unman unmask unmuzzle unnerve unpack unpick unpin unplug unravel unreel unroll +unsaddle unsanctify unsay unscramble unscrew unseal unseat unsettle unsex +unsheathe unsnarl unsolder unspell unstaple unstrain unstrap unstring unstuff +unsubstantialise unsubstantialize untangle unteach unthaw untie untune untwine +untwist unveil unweave unwind unwire unwrap unyoke unzip up upbraid upchuck +update upend upgrade upheave uphold upholster uplift upload upraise uprise +uproot upset upstage urbanise urbanize urge urinate urticate use usher usurp +utilise utilize utter vacate vacation vaccinate vacillate vacuum vacuum-clean +vagabond valet validate valuate value vamoose vamp vandalise vandalize vanish +vanquish vaporise vaporize variegate varnish vary vascularise vascularize +vasectomise vasectomize vaticinate vault vaunt veer vegetate veil vein velcro +vellicate vend veneer venerate venesect vent ventilate venture verbalise +verbalize verbify verdigris verge verify vermiculate vermilion verse versify +vesicate vesiculate vest vesture vet veto vex vibrate victimise victimize +victual videotape vie view vilify vilipend vindicate vinify violate virilise +virilize visa visit visualise visualize vitalise vitalize vitaminise vitaminize +vitiate vitrify vitriol vituperate vivify vivisect vocalise vocalize vociferate +voice void volatilise volatilize volley volunteer vomit voodoo vote vouch +vouchsafe vow vowelise vowelize voyage vroom vulcanise vulcanize vulgarise +vulgarize wad waddle wade waffle waft wag wage wager waggle wail wait waitress +waive wake waken walk wall wallop wallow wallpaper waltz wamble wan wander wane +wangle wank want wanton war warble ward ware warehouse warm warn warp warrant +wash wassail waste watch water water-wash watercolor watercolour waterproof +wattle waul wave waver wawl wax waylay weaken wean weaponize wear weary weather +weatherproof weatherstrip weave web wed wedel wedge wee wee-wee weed weekend +weep weigh weight weight-lift weightlift welch welcome weld well welsh welt +welter wench wend westernise westernize wet wet-nurse whack whale wham whang +whap wharf wheedle wheel wheelbarrow wheeze whelk whelm whelp whet whicker whiff +whimper whine whinny whip whipsaw whir whirl whirligig whirlpool whirr whish +whisk whisker whisper whistle whistlestop white white-out whiten whiteout +whitewash whittle whiz whizz wholesale whomp whoop whoosh whop whore widen widow +wield wiggle wigwag will wilt win wince winch wind window-dress window-shop +windsurf wine wing wink winkle winnow winter winterise winterize wipe wire +wiretap wisecrack wish witch withdraw wither withhold withstand witness wive +wobble wolf wolf-whistle womanise womanize wonder woo woolgather woosh word work +worm worry worsen worship worst wound wow wrack wrangle wrap wrawl wreak wreathe +wreck wrench wrest wrestle wrick wriggle wring wrinkle write writhe wrong x-ray +xerox yacht yack yak yammer yank yap yarn yarn-dye yaup yaw yawl yawn yawp yearn +yell yellow yelp yen yield yip yodel yoke yowl zap zero zest zigzag zinc zip +zipper zone zoom +""".split()) diff --git a/spacy/en/lemmatizer/_verbs_irreg.py b/spacy/en/lemmatizer/_verbs_irreg.py new file mode 100644 index 000000000..4a9127bcb --- /dev/null +++ b/spacy/en/lemmatizer/_verbs_irreg.py @@ -0,0 +1,2408 @@ +# coding: utf8 +from __future__ import unicode_literals + + +VERBS_IRREG = { + "abetted": ("abet",), + "abetting": ("abet",), + "abhorred": ("abhor",), + "abhorring": ("abhor",), + "abode": ("abide",), + "abought": ("aby",), + "about-shipped": ("about-ship",), + "about-shipping": ("about-ship",), + "abutted": ("abut",), + "abutting": ("abut",), + "abye": ("aby",), + "accompanied": ("accompany",), + "acetified": ("acetify",), + "acidified": ("acidify",), + "acquitted": ("acquit",), + "acquitting": ("acquit",), + "ad-libbed": ("ad-lib",), + "ad-libbing": ("ad-lib",), + "addrest": ("address",), + "admitted": ("admit",), + "admitting": ("admit",), + "aerified": ("aerify",), + "air-dried": ("air-dry",), + "airdropped": ("airdrop",), + "airdropping": ("airdrop",), + "alkalified": ("alkalify",), + "allied": ("ally",), + "allotted": ("allot",), + "allotting": ("allot",), + "allowed_for": ("allow_for",), + "allowing_for": ("allow_for",), + "allows_for": ("allow_for",), + "am": ("be",), + "ammonified": ("ammonify",), + "amnestied": ("amnesty",), + "amplified": ("amplify",), + "anglified": ("anglify",), + "annulled": ("annul",), + "annulling": ("annul",), + "appalled": ("appal", "appall",), + "appalling": ("appal", "appall",), + "applied": ("apply",), + "arcked": ("arc",), + "arcking": ("arc",), + "are": ("be",), + "argufied": ("argufy",), + "arisen": ("arise",), + "arose": ("arise",), + "ate": ("eat",), + "atrophied": ("atrophy",), + "averred": ("aver",), + "averring": ("aver",), + "awoke": ("awake",), + "awoken": ("awake",), + "babied": ("baby",), + "baby-sat": ("baby-sit",), + "baby-sitting": ("baby-sit",), + "back-pedalled": ("back-pedal",), + "back-pedalling": ("back-pedal",), + "backbit": ("backbite",), + "backbitten": ("backbite",), + "backslid": ("backslide",), + "backslidden": ("backslide",), + "bade": ("bid",), + "bagged": ("bag",), + "bagging": ("bag",), + "ballyragged": ("ballyrag",), + "ballyragging": ("ballyrag",), + "bandied": ("bandy",), + "banned": ("ban",), + "banning": ("ban",), + "barred": ("bar",), + "barrelled": ("barrel",), + "barrelling": ("barrel",), + "barring": ("bar",), + "basified": ("basify",), + "batted": ("bat",), + "batting": ("bat",), + "bayonetted": ("bayonet",), + "bayonetting": ("bayonet",), + "beaten": ("beat",), + "beatified": ("beatify",), + "beautified": ("beautify",), + "became": ("become",), + "became_known": ("become_known",), + "becomes_known": ("become_known",), + "bed": ("bed",), + "bedded": ("bed",), + "bedding": ("bed",), + "bedevilled": ("bedevil",), + "bedevilling": ("bedevil",), + "bedimmed": ("bedim",), + "bedimming": ("bedim",), + "been": ("be",), + "befallen": ("befall",), + "befell": ("befall",), + "befitted": ("befit",), + "befitting": ("befit",), + "befogged": ("befog",), + "befogging": ("befog",), + "began": ("begin",), + "begat": ("beget",), + "begetting": ("beget",), + "begged": ("beg",), + "begging": ("beg",), + "beginning": ("begin",), + "begirt": ("begird",), + "begot": ("beget",), + "begotten": ("beget",), + "begun": ("begin",), + "beheld": ("behold",), + "beholden": ("behold",), + "bejewelled": ("bejewel",), + "bejewelling": ("bejewel",), + "bellied": ("belly",), + "belly-flopped": ("belly-flop",), + "belly-flopping": ("belly-flop",), + "belying": ("belie",), + "benefitted": ("benefit",), + "benefitting": ("benefit",), + "benempt": ("bename",), + "bent": ("bend",), + "berried": ("berry",), + "besetting": ("beset",), + "besought": ("beseech",), + "bespoke": ("bespeak",), + "bespoken": ("bespeak",), + "bestirred": ("bestir",), + "bestirring": ("bestir",), + "bestrewn": ("bestrew",), + "bestrid": ("bestride",), + "bestridden": ("bestride",), + "bestrode": ("bestride",), + "betaken": ("betake",), + "bethought": ("bethink",), + "betook": ("betake",), + "betted": ("bet",), + "betting": ("bet",), + "bevelled": ("bevel",), + "bevelling": ("bevel",), + "biassed": ("bias",), + "biassing": ("bias",), + "bidden": ("bid",), + "bidding": ("bid",), + "bing": ("bing",), + "binned": ("bin",), + "binning": ("bin",), + "bird-dogged": ("bird-dog",), + "bird-dogging": ("bird-dog",), + "bit": ("bite",), + "bitted": ("bit",), + "bitten": ("bite",), + "bitting": ("bit",), + "bivouacked": ("bivouac",), + "bivouacking": ("bivouac",), + "blabbed": ("blab",), + "blabbing": ("blab",), + "blackberried": ("blackberry",), + "blacklegged": ("blackleg",), + "blacklegging": ("blackleg",), + "blatted": ("blat",), + "blatting": ("blat",), + "bled": ("bleed",), + "blest": ("bless",), + "blew": ("blow",), + "blew_one's_nose": ("blow_one's_nose",), + "blipped": ("blip",), + "blipping": ("blip",), + "blobbed": ("blob",), + "blobbing": ("blob",), + "bloodied": ("bloody",), + "blotted": ("blot",), + "blotting": ("blot",), + "blowing_one's_nose": ("blow_one's_nose",), + "blown": ("blow",), + "blows_one's_nose": ("blow_one's_nose",), + "blubbed": ("blub",), + "blubbing": ("blub",), + "blue-pencilled": ("blue-pencil",), + "blue-pencilling": ("blue-pencil",), + "blurred": ("blur",), + "blurring": ("blur",), + "bobbed": ("bob",), + "bobbing": ("bob",), + "bodied": ("body",), + "bogged-down": ("bog-down",), + "bogged_down": ("bog_down",), + "bogging-down": ("bog-down",), + "bogging_down": ("bog_down",), + "bogs-down": ("bog-down",), + "bogs_down": ("bog_down",), + "booby-trapped": ("booby-trap",), + "booby-trapping": ("booby-trap",), + "bootlegged": ("bootleg",), + "bootlegging": ("bootleg",), + "bopped": ("bop",), + "bopping": ("bop",), + "bore": ("bear",), + "born": ("bear",), + "borne": ("bear",), + "bottle-fed": ("bottle-feed",), + "bought": ("buy",), + "bound": ("bind",), + "bragged": ("brag",), + "bragging": ("brag",), + "breast-fed": ("breast-feed",), + "bred": ("breed",), + "brevetted": ("brevet",), + "brevetting": ("brevet",), + "brimmed": ("brim",), + "brimming": ("brim",), + "broke": ("break",), + "broken": ("break",), + "brought": ("bring",), + "browbeaten": ("browbeat",), + "brutified": ("brutify",), + "budded": ("bud",), + "budding": ("bud",), + "bugged": ("bug",), + "bugging": ("bug",), + "built": ("build",), + "bulldogging": ("bulldog",), + "bullied": ("bully",), + "bullshitted": ("bullshit",), + "bullshitting": ("bullshit",), + "bullwhipped": ("bullwhip",), + "bullwhipping": ("bullwhip",), + "bullyragged": ("bullyrag",), + "bullyragging": ("bullyrag",), + "bummed": ("bum",), + "bumming": ("bum",), + "buried": ("bury",), + "burnt": ("burn",), + "burred": ("bur",), + "burring": ("bur",), + "bushelled": ("bushel",), + "bushelling": ("bushel",), + "busied": ("busy",), + "bypast": ("bypass",), + "caballed": ("cabal",), + "caballing": ("cabal",), + "caddied": ("caddie", "caddy",), + "caddies": ("caddie", "caddy",), + "caddying": ("caddie", "caddy",), + "calcified": ("calcify",), + "came": ("come",), + "canalled": ("canal",), + "canalling": ("canal",), + "cancelled": ("cancel",), + "cancelling": ("cancel",), + "candied": ("candy",), + "canned": ("can",), + "canning": ("can",), + "canopied": ("canopy",), + "capped": ("cap",), + "capping": ("cap",), + "carburetted": ("carburet",), + "carburetting": ("carburet",), + "carillonned": ("carillon",), + "carillonning": ("carillon",), + "carnied": ("carny",), + "carnified": ("carnify",), + "carolled": ("carol",), + "carolling": ("carol",), + "carried": ("carry",), + "casefied": ("casefy",), + "catnapped": ("catnap",), + "catnapping": ("catnap",), + "catted": ("cat",), + "catting": ("cat",), + "caught": ("catch",), + "cavilled": ("cavil",), + "cavilling": ("cavil",), + "certified": ("certify",), + "channelled": ("channel",), + "channelling": ("channel",), + "chapped": ("chap",), + "chapping": ("chap",), + "charred": ("char",), + "charring": ("char",), + "chatted": ("chat",), + "chatting": ("chat",), + "chevied": ("chivy",), + "chevies": ("chivy",), + "chevying": ("chivy",), + "chid": ("chide",), + "chidden": ("chide",), + "chinned": ("chin",), + "chinning": ("chin",), + "chipped": ("chip",), + "chipping": ("chip",), + "chiselled": ("chisel",), + "chiselling": ("chisel",), + "chitchatted": ("chitchat",), + "chitchatting": ("chitchat",), + "chivied": ("chivy",), + "chivved": ("chiv",), + "chivvied": ("chivy",), + "chivvies": ("chivy",), + "chivving": ("chiv",), + "chivvying": ("chivy",), + "chondrified": ("chondrify",), + "chopped": ("chop",), + "chopping": ("chop",), + "chose": ("choose",), + "chosen": ("choose",), + "chugged": ("chug",), + "chugging": ("chug",), + "chummed": ("chum",), + "chumming": ("chum",), + "citified": ("citify",), + "clad": ("clothe",), + "cladding": ("clad",), + "clammed": ("clam",), + "clamming": ("clam",), + "clapped": ("clap",), + "clapping": ("clap",), + "clarified": ("clarify",), + "classified": ("classify",), + "cleft": ("cleave",), + "clemmed": ("clem",), + "clemming": ("clem",), + "clept": ("clepe",), + "clipped": ("clip",), + "clipping": ("clip",), + "clogged": ("clog",), + "clogging": ("clog",), + "clopped": ("clop",), + "clopping": ("clop",), + "clotted": ("clot",), + "clotting": ("clot",), + "clove": ("cleave",), + "cloven": ("cleave",), + "clubbed": ("club",), + "clubbing": ("club",), + "clung": ("cling",), + "co-opted": ("coopt",), + "co-opting": ("coopt",), + "co-opts": ("coopts",), + "co-ordinate": ("coordinate",), + "co-ordinated": ("coordinate",), + "co-ordinates": ("coordinate",), + "co-ordinating": ("coordinate",), + "co-starred": ("co-star",), + "co-starring": ("co-star",), + "cockneyfied": ("cockneyfy",), + "codded": ("cod",), + "codding": ("cod",), + "codified": ("codify",), + "cogged": ("cog",), + "cogging": ("cog",), + "coiffed": ("coif",), + "coiffing": ("coif",), + "collied": ("colly",), + "combatted": ("combat",), + "combatting": ("combat",), + "committed": ("commit",), + "committing": ("commit",), + "compelled": ("compel",), + "compelling": ("compel",), + "complied": ("comply",), + "complotted": ("complot",), + "complotting": ("complot",), + "concurred": ("concur",), + "concurring": ("concur",), + "confabbed": ("confab",), + "confabbing": ("confab",), + "conferred": ("confer",), + "conferring": ("confer",), + "conned": ("con",), + "conning": ("con",), + "controlled": ("control",), + "controlling": ("control",), + "copied": ("copy",), + "coping": ("cope",), + "copped": ("cop",), + "copping": ("cop",), + "coquetted": ("coquet",), + "coquetting": ("coquet",), + "corralled": ("corral",), + "corralling": ("corral",), + "counselled": ("counsel",), + "counselling": ("counsel",), + "counterplotted": ("counterplot",), + "counterplotting": ("counterplot",), + "countersank": ("countersink",), + "countersunk": ("countersink",), + "court-martialled": ("court-martial",), + "court-martialling": ("court-martial",), + "crabbed": ("crab",), + "crabbing": ("crab",), + "crammed": ("cram",), + "cramming": ("cram",), + "crapped": ("crap",), + "crapping": ("crap",), + "crept": ("creep",), + "cribbed": ("crib",), + "cribbing": ("crib",), + "cried": ("cry",), + "cropped": ("crop",), + "cropping": ("crop",), + "crossbred": ("crossbreed",), + "crosscutting": ("crosscut",), + "crucified": ("crucify",), + "cubbed": ("cub",), + "cubbing": ("cub",), + "cudgelled": ("cudgel",), + "cudgelling": ("cudgel",), + "cupelled": ("cupel",), + "cupelling": ("cupel",), + "cupped": ("cup",), + "cupping": ("cup",), + "curetted": ("curet",), + "curettes": ("curet",), + "curetting": ("curet",), + "curried": ("curry",), + "curst": ("curse",), + "curtsied": ("curtsy",), + "curvetted": ("curvet",), + "curvetting": ("curvet",), + "cutting": ("cut",), + "dabbed": ("dab",), + "dabbing": ("dab",), + "dagged": ("dag",), + "dagging": ("dag",), + "dallied": ("dally",), + "dammed": ("dam",), + "damming": ("dam",), + "damnified": ("damnify",), + "dandified": ("dandify",), + "dapped": ("dap",), + "dapping": ("dap",), + "dealt": ("deal",), + "debarred": ("debar",), + "debarring": ("debar",), + "debugged": ("debug",), + "debugging": ("debug",), + "debussed": ("debus",), + "debusses": ("debus",), + "debussing": ("debus",), + "decalcified": ("decalcify",), + "declassified": ("declassify",), + "decontrolled": ("decontrol",), + "decontrolling": ("decontrol",), + "decried": ("decry",), + "deep-freeze": ("deepfreeze",), + "deep-freezed": ("deepfreeze",), + "deep-freezes": ("deepfreeze",), + "deep-fried": ("deep-fry",), + "deferred": ("defer",), + "deferring": ("defer",), + "defied": ("defy",), + "degassed": ("degas",), + "degasses": ("degas",), + "degassing": ("degas",), + "dehumidified": ("dehumidify",), + "deified": ("deify",), + "demitted": ("demit",), + "demitting": ("demit",), + "demobbed": ("demob",), + "demobbing": ("demob",), + "demulsified": ("demulsify",), + "demurred": ("demur",), + "demurring": ("demur",), + "demystified": ("demystify",), + "denazified": ("denazify",), + "denied": ("deny",), + "denitrified": ("denitrify",), + "denned": ("den",), + "denning": ("den",), + "descried": ("descry",), + "deterred": ("deter",), + "deterring": ("deter",), + "detoxified": ("detoxify",), + "devilled": ("devil",), + "devilling": ("devil",), + "devitrified": ("devitrify",), + "diagrammed": ("diagram",), + "diagramming": ("diagram",), + "dialled": ("dial",), + "dialling": ("dial",), + "dibbed": ("dib",), + "dibbing": ("dib",), + "did": ("do",), + "digging": ("dig",), + "dignified": ("dignify",), + "dilly-dallied": ("dilly-dally",), + "dimmed": ("dim",), + "dimming": ("dim",), + "dinned": ("din",), + "dinning": ("din",), + "dipped": ("dip",), + "dipping": ("dip",), + "dirtied": ("dirty",), + "disannulled": ("disannul",), + "disannulling": ("disannul",), + "disbarred": ("disbar",), + "disbarring": ("disbar",), + "disbudded": ("disbud",), + "disbudding": ("disbud",), + "disembodied": ("disembody",), + "disembowelled": ("disembowel",), + "disembowelling": ("disembowel",), + "disenthralled": ("disenthral", "disenthrall",), + "disenthralling": ("disenthral", "disenthrall",), + "disenthralls": ("disenthral",), + "disenthrals": ("disenthrall",), + "dishevelled": ("dishevel",), + "dishevelling": ("dishevel",), + "disinterred": ("disinter",), + "disinterring": ("disinter",), + "dispelled": ("dispel",), + "dispelling": ("dispel",), + "disqualified": ("disqualify",), + "dissatisfied": ("dissatisfy",), + "distilled": ("distil", "distill",), + "distilling": ("distil", "distill",), + "diversified": ("diversify",), + "divvied": ("divvy",), + "dizzied": ("dizzy",), + "dogged": ("dog",), + "dogging": ("dog",), + "doglegged": ("dogleg",), + "doglegging": ("dogleg",), + "dollied": ("dolly",), + "done": ("do",), + "donned": ("don",), + "donning": ("don",), + "dotted": ("dot",), + "dotting": ("dot",), + "dought": ("dow",), + "dove": ("dive",), + "drabbed": ("drab",), + "drabbing": ("drab",), + "dragged": ("drag",), + "dragging": ("drag",), + "drank": ("drink",), + "drawn": ("draw",), + "dreamt": ("dream",), + "drew": ("draw",), + "dried": ("dry",), + "dripped": ("drip",), + "dripping": ("drip",), + "drivelled": ("drivel",), + "drivelling": ("drivel",), + "driven": ("drive",), + "dropped": ("drop",), + "dropping": ("drop",), + "drove": ("drive",), + "drubbed": ("drub",), + "drubbing": ("drub",), + "drugged": ("drug",), + "drugging": ("drug",), + "drummed": ("drum",), + "drumming": ("drum",), + "drunk": ("drink",), + "dubbed": ("dub",), + "dubbing": ("dub",), + "duelled": ("duel",), + "duelling": ("duel",), + "dug": ("dig",), + "dulcified": ("dulcify",), + "dummied": ("dummy",), + "dunned": ("dun",), + "dunning": ("dun",), + "dwelt": ("dwell",), + "dying": ("die",), + "easied": ("easy",), + "eaten": ("eat",), + "eavesdropped": ("eavesdrop",), + "eavesdropping": ("eavesdrop",), + "eddied": ("eddy",), + "edified": ("edify",), + "ego-tripped": ("ego-trip",), + "ego-tripping": ("ego-trip",), + "electrified": ("electrify",), + "embedded": ("embed",), + "embedding": ("embed",), + "embodied": ("embody",), + "embussed": ("embus",), + "embusses": ("embus",), + "embussing": ("embus",), + "emitted": ("emit",), + "emitting": ("emit",), + "empanelled": ("empanel",), + "empanelling": ("empanel",), + "emptied": ("empty",), + "emulsified": ("emulsify",), + "enamelled": ("enamel",), + "enamelling": ("enamel",), + "englutted": ("englut",), + "englutting": ("englut",), + "enrolled": ("enrol", "enroll",), + "enrolling": ("enrol", "enroll",), + "enthralled": ("enthral", "enthrall",), + "enthralling": ("enthral", "enthrall",), + "entrammelled": ("entrammel",), + "entrammelling": ("entrammel",), + "entrapped": ("entrap",), + "entrapping": ("entrap",), + "envied": ("envy",), + "enwound": ("enwind",), + "enwrapped": ("enwrap",), + "enwrapping": ("enwrap",), + "equalled": ("equal",), + "equalling": ("equal",), + "equipped": ("equip",), + "equipping": ("equip",), + "espied": ("espy",), + "esterified": ("esterify",), + "estopped": ("estop",), + "estopping": ("estop",), + "etherified": ("etherify",), + "excelled": ("excel",), + "excelling": ("excel",), + "exemplified": ("exemplify",), + "expelled": ("expel",), + "expelling": ("expel",), + "extolled": ("extol", "extoll",), + "extolling": ("extol", "extoll",), + "facetted": ("facet",), + "facetting": ("facet",), + "fagged": ("fag",), + "fagging": ("fag",), + "fallen": ("fall",), + "falsified": ("falsify",), + "fancied": ("fancy",), + "fanned": ("fan",), + "fanning": ("fan",), + "fantasied": ("fantasy",), + "fatted": ("fat",), + "fatting": ("fat",), + "featherbedded": ("featherbed",), + "featherbedding": ("featherbed",), + "fed": ("feed",), + "feed": ("feed", "fee",), + "fell": ("fall",), + "felt": ("feel",), + "ferried": ("ferry",), + "fibbed": ("fib",), + "fibbing": ("fib",), + "figged": ("fig",), + "figging": ("fig",), + "filled_up": ("fill_up",), + "fine-drawn": ("fine-draw",), + "fine-drew": ("fine-draw",), + "finned": ("fin",), + "finning": ("fin",), + "fitted": ("fit",), + "fitting": ("fit",), + "flagged": ("flag",), + "flagging": ("flag",), + "flammed": ("flam",), + "flamming": ("flam",), + "flannelled": ("flannel",), + "flannelling": ("flannel",), + "flapped": ("flap",), + "flapping": ("flap",), + "flatted": ("flat",), + "flatting": ("flat",), + "fled": ("flee",), + "flew": ("fly",), + "flimflammed": ("flimflam",), + "flimflamming": ("flimflam",), + "flip-flopped": ("flip-flop",), + "flip-flopping": ("flip-flop",), + "flipped": ("flip",), + "flipping": ("flip",), + "flitted": ("flit",), + "flitting": ("flit",), + "flogged": ("flog",), + "flogging": ("flog",), + "floodlit": ("floodlight",), + "flopped": ("flop",), + "flopping": ("flop",), + "flown": ("fly",), + "flubbed": ("flub",), + "flubbing": ("flub",), + "flung": ("fling",), + "flurried": ("flurry",), + "flyblew": ("flyblow",), + "flyblown": ("flyblow",), + "fobbed": ("fob",), + "fobbing": ("fob",), + "fogged": ("fog",), + "fogging": ("fog",), + "footslogged": ("footslog",), + "footslogging": ("footslog",), + "forbad": ("forbid",), + "forbade": ("forbid",), + "forbidden": ("forbid",), + "forbidding": ("forbid",), + "forbore": ("forbear",), + "forborne": ("forbear",), + "force-fed": ("force-feed",), + "fordid": ("fordo",), + "fordone": ("fordo",), + "foredid": ("foredo",), + "foredone": ("foredo",), + "foregone": ("forego",), + "foreknew": ("foreknow",), + "foreknown": ("foreknow",), + "foreran": ("forerun",), + "forerunning": ("forerun",), + "foresaw": ("foresee",), + "foreseen": ("foresee",), + "foreshown": ("foreshow",), + "forespoke": ("forespeak",), + "forespoken": ("forespeak",), + "foretold": ("foretell",), + "forewent": ("forego",), + "forgave": ("forgive",), + "forgetting": ("forget",), + "forgiven": ("forgive",), + "forgone": ("forgo",), + "forgot": ("forget",), + "forgotten": ("forget",), + "formatted": ("format",), + "formatting": ("format",), + "forsaken": ("forsake",), + "forsook": ("forsake",), + "forspoke": ("forspeak",), + "forspoken": ("forspeak",), + "forswore": ("forswear",), + "forsworn": ("forswear",), + "fortified": ("fortify",), + "forwent": ("forgo",), + "fought": ("fight",), + "found": ("find",), + "foxtrotted": ("foxtrot",), + "foxtrotting": ("foxtrot",), + "frapped": ("frap",), + "frapping": ("frap",), + "freeze-dried": ("freeze-dry",), + "frenchified": ("frenchify",), + "frenzied": ("frenzy",), + "fretted": ("fret",), + "fretting": ("fret",), + "fried": ("fry",), + "frigged": ("frig",), + "frigging": ("frig",), + "fritted": ("frit", "fritt",), + "fritting": ("frit", "fritt",), + "frivolled": ("frivol",), + "frivolling": ("frivol",), + "frogged": ("frog",), + "frogging": ("frog",), + "frolicked": ("frolic",), + "frolicking": ("frolic",), + "froze": ("freeze",), + "frozen": ("freeze",), + "fructified": ("fructify",), + "fuelled": ("fuel",), + "fuelling": ("fuel",), + "fulfilled": ("fulfil", "fulfill",), + "fulfilling": ("fulfil", "fulfill",), + "funned": ("fun",), + "funnelled": ("funnel",), + "funnelling": ("funnel",), + "funning": ("fun",), + "furred": ("fur",), + "furring": ("fur",), + "gadded": ("gad",), + "gadding": ("gad",), + "gagged": ("gag",), + "gagging": ("gag",), + "gainsaid": ("gainsay",), + "gambolled": ("gambol",), + "gambolling": ("gambol",), + "gammed": ("gam",), + "gamming": ("gam",), + "gan": ("gin",), + "ganned": ("gan",), + "ganning": ("gan",), + "gapped": ("gap",), + "gapping": ("gap",), + "gasified": ("gasify",), + "gassed": ("gas",), + "gasses": ("gas",), + "gassing": ("gas",), + "gave": ("give",), + "gelled": ("gel",), + "gelling": ("gel",), + "gelt": ("geld",), + "gemmed": ("gem",), + "gemming": ("gem",), + "genned-up": ("gen-up",), + "genning-up": ("gen-up",), + "gens-up": ("gen-up",), + "gets_lost": ("get_lost",), + "gets_started": ("get_started",), + "getting": ("get",), + "getting_lost": ("get_lost",), + "getting_started": ("get_started",), + "ghostwritten": ("ghostwrite",), + "ghostwrote": ("ghostwrite",), + "gibbed": ("gib",), + "gibbing": ("gib",), + "giddied": ("giddy",), + "giftwrapped": ("giftwrap",), + "giftwrapping": ("giftwrap",), + "gigged": ("gig",), + "gigging": ("gig",), + "gilt": ("gild",), + "ginned": ("gin",), + "ginning": ("gin",), + "gipped": ("gip",), + "gipping": ("gip",), + "girt": ("gird",), + "given": ("give",), + "glommed": ("glom",), + "glomming": ("glom",), + "gloried": ("glory",), + "glorified": ("glorify",), + "glutted": ("glut",), + "glutting": ("glut",), + "gnawn": ("gnaw",), + "goes_deep": ("go_deep",), + "going_deep": ("go_deep",), + "gollied": ("golly",), + "gone": ("go",), + "gone_deep": ("go_deep",), + "goose-stepped": ("goose-step",), + "goose-stepping": ("goose-step",), + "got": ("get",), + "got_lost": ("get_lost",), + "got_started": ("get_started",), + "gotten": ("get",), + "gotten_lost": ("get_lost",), + "grabbed": ("grab",), + "grabbing": ("grab",), + "gratified": ("gratify",), + "gravelled": ("gravel",), + "gravelling": ("gravel",), + "graven": ("grave",), + "grew": ("grow",), + "grinned": ("grin",), + "grinning": ("grin",), + "gripped": ("grip",), + "gripping": ("grip",), + "gript": ("grip",), + "gritted": ("grit",), + "gritting": ("grit",), + "ground": ("grind",), + "grovelled": ("grovel",), + "grovelling": ("grovel",), + "grown": ("grow",), + "grubbed": ("grub",), + "grubbing": ("grub",), + "guarantied": ("guaranty",), + "gullied": ("gully",), + "gummed": ("gum",), + "gumming": ("gum",), + "gunned": ("gun",), + "gunning": ("gun",), + "gypped": ("gyp",), + "gypping": ("gyp",), + "hacksawn": ("hacksaw",), + "had": ("have",), + "had_a_feeling": ("have_a_feeling",), + "had_left": ("have_left",), + "had_the_feeling": ("have_the_feeling",), + "hammed": ("ham",), + "hamming": ("ham",), + "hamstrung": ("hamstring",), + "hand-knitted": ("hand-knit",), + "hand-knitting": ("hand-knit",), + "handfed": ("handfeed",), + "handicapped": ("handicap",), + "handicapping": ("handicap",), + "handselled": ("handsel",), + "handselling": ("handsel",), + "harried": ("harry",), + "has": ("have",), + "has_a_feeling": ("have_a_feeling",), + "has_left": ("have_left",), + "has_the_feeling": ("have_the_feeling",), + "hatchelled": ("hatchel",), + "hatchelling": ("hatchel",), + "hatted": ("hat",), + "hatting": ("hat",), + "having_a_feeling": ("have_a_feeling",), + "having_left": ("have_left",), + "having_the_feeling": ("have_the_feeling",), + "heard": ("hear",), + "hedgehopped": ("hedgehop",), + "hedgehopping": ("hedgehop",), + "held": ("hold",), + "hemmed": ("hem",), + "hemming": ("hem",), + "hewn": ("hew",), + "hiccupped": ("hiccup",), + "hiccupping": ("hiccup",), + "hid": ("hide",), + "hidden": ("hide",), + "high-hatted": ("high-hat",), + "high-hatting": ("high-hat",), + "hinnied": ("hinny",), + "hitting": ("hit",), + "hobbed": ("hob",), + "hobbing": ("hob",), + "hobnobbed": ("hobnob",), + "hobnobbing": ("hobnob",), + "hocus-pocussed": ("hocus-pocus",), + "hocus-pocussing": ("hocus-pocus",), + "hocussed": ("hocus",), + "hocussing": ("hocus",), + "hogged": ("hog",), + "hogging": ("hog",), + "hogtying": ("hogtie",), + "honied": ("honey",), + "hopped": ("hop",), + "hopping": ("hop",), + "horrified": ("horrify",), + "horsewhipped": ("horsewhip",), + "horsewhipping": ("horsewhip",), + "houselled": ("housel",), + "houselling": ("housel",), + "hove": ("heave",), + "hovelled": ("hovel",), + "hovelling": ("hovel",), + "hugged": ("hug",), + "hugging": ("hug",), + "humbugged": ("humbug",), + "humbugging": ("humbug",), + "humidified": ("humidify",), + "hummed": ("hum",), + "humming": ("hum",), + "hung": ("hang",), + "hurried": ("hurry",), + "hypertrophied": ("hypertrophy",), + "identified": ("identify",), + "imbedded": ("imbed",), + "imbedding": ("imbed",), + "impanelled": ("impanel",), + "impanelling": ("impanel",), + "impelled": ("impel",), + "impelling": ("impel",), + "implied": ("imply",), + "inbred": ("inbreed",), + "incurred": ("incur",), + "incurring": ("incur",), + "indemnified": ("indemnify",), + "indwelt": ("indwell",), + "inferred": ("infer",), + "inferring": ("infer",), + "initialled": ("initial",), + "initialling": ("initial",), + "inlaid": ("inlay",), + "insetting": ("inset",), + "inspanned": ("inspan",), + "inspanning": ("inspan",), + "installed": ("instal", "install",), + "installing": ("instal", "install",), + "intensified": ("intensify",), + "interbred": ("interbreed",), + "intercropped": ("intercrop",), + "intercropping": ("intercrop",), + "intercutting": ("intercut",), + "interlaid": ("interlay",), + "interlapped": ("interlap",), + "interlapping": ("interlap",), + "intermarried": ("intermarry",), + "intermitted": ("intermit",), + "intermitting": ("intermit",), + "interpled": ("interplead",), + "interred": ("inter",), + "interring": ("inter",), + "interstratified": ("interstratify",), + "interwove": ("interweave",), + "interwoven": ("interweave",), + "intromitted": ("intromit",), + "intromitting": ("intromit",), + "inwove": ("inweave",), + "inwoven": ("inweave",), + "inwrapped": ("inwrap",), + "inwrapping": ("inwrap",), + "is": ("be",), + "jabbed": ("jab",), + "jabbing": ("jab",), + "jagged": ("jag",), + "jagging": ("jag",), + "jammed": ("jam",), + "jamming": ("jam",), + "japanned": ("japan",), + "japanning": ("japan",), + "jarred": ("jar",), + "jarring": ("jar",), + "jellied": ("jelly",), + "jellified": ("jellify",), + "jemmied": ("jemmy",), + "jerry-built": ("jerry-build",), + "jetted": ("jet",), + "jetting": ("jet",), + "jewelled": ("jewel",), + "jewelling": ("jewel",), + "jibbed": ("jib",), + "jibbing": ("jib",), + "jigged": ("jig",), + "jigging": ("jig",), + "jimmied": ("jimmy",), + "jitterbugged": ("jitterbug",), + "jitterbugging": ("jitterbug",), + "jobbed": ("job",), + "jobbing": ("job",), + "jog-trotted": ("jog-trot",), + "jog-trotting": ("jog-trot",), + "jogged": ("jog",), + "jogging": ("jog",), + "joined_battle": ("join_battle",), + "joined_forces": ("join_forces",), + "joining_battle": ("join_battle",), + "joining_forces": ("join_forces",), + "joins_battle": ("join_battle",), + "joins_forces": ("join_forces",), + "jollied": ("jolly",), + "jollified": ("jollify",), + "jotted": ("jot",), + "jotting": ("jot",), + "joy-ridden": ("joy-ride",), + "joy-rode": ("joy-ride",), + "joypopped": ("joypop",), + "joypopping": ("joypop",), + "jugged": ("jug",), + "jugging": ("jug",), + "jumped_off": ("jump_off",), + "jumping_off": ("jump_off",), + "jumps_off": ("jump_off",), + "justified": ("justify",), + "jutted": ("jut",), + "jutting": ("jut",), + "kenned": ("ken",), + "kennelled": ("kennel",), + "kennelling": ("kennel",), + "kenning": ("ken",), + "kent": ("ken",), + "kept": ("keep",), + "kernelled": ("kernel",), + "kernelling": ("kernel",), + "kidded": ("kid",), + "kidding": ("kid",), + "kidnapped": ("kidnap",), + "kidnapping": ("kidnap",), + "kipped": ("kip",), + "kipping": ("kip",), + "knapped": ("knap",), + "knapping": ("knap",), + "kneecapped": ("kneecap",), + "kneecapping": ("kneecap",), + "knelt": ("kneel",), + "knew": ("know",), + "knitted": ("knit",), + "knitting": ("knit",), + "knobbed": ("knob",), + "knobbing": ("knob",), + "knotted": ("knot",), + "knotting": ("knot",), + "known": ("know",), + "ko'd": ("ko",), + "ko'ing": ("ko",), + "ko's": ("ko",), + "labelled": ("label",), + "labelling": ("label",), + "laden": ("lade",), + "ladyfied": ("ladify",), + "ladyfies": ("ladify",), + "ladyfying": ("ladify",), + "lagged": ("lag",), + "lagging": ("lag",), + "laid": ("lay",), + "lain": ("lie",), + "lallygagged": ("lallygag",), + "lallygagging": ("lallygag",), + "lammed": ("lam",), + "lamming": ("lam",), + "lapidified": ("lapidify",), + "lapped": ("lap",), + "lapping": ("lap",), + "laurelled": ("laurel",), + "laurelling": ("laurel",), + "lay": ("lie",), + "layed_for": ("lie_for",), + "laying_for": ("lie_for",), + "lays_for": ("lie_for",), + "leant": ("lean",), + "leapfrogged": ("leapfrog",), + "leapfrogging": ("leapfrog",), + "leapt": ("leap",), + "learnt": ("learn",), + "leaves_undone": ("leave_undone",), + "leaving_undone": ("leave_undone",), + "led": ("lead",), + "left": ("leave",), + "left_undone": ("leave_undone",), + "lent": ("lend",), + "letting": ("let",), + "levelled": ("level",), + "levelling": ("level",), + "levied": ("levy",), + "libelled": ("libel",), + "libelling": ("libel",), + "lignified": ("lignify",), + "lipped": ("lip",), + "lipping": ("lip",), + "liquefied": ("liquefy",), + "liquified": ("liquify",), + "lit": ("light",), + "lobbed": ("lob",), + "lobbied": ("lobby",), + "lobbing": ("lob",), + "logged": ("log",), + "logging": ("log",), + "looked_towards": ("look_towards",), + "looking_towards": ("look_towards",), + "looks_towards": ("look_towards",), + "lopped": ("lop",), + "lopping": ("lop",), + "lost": ("lose",), + "lotted": ("lot",), + "lotting": ("lot",), + "lugged": ("lug",), + "lugging": ("lug",), + "lullabied": ("lullaby",), + "lying": ("lie",), + "machine-gunned": ("machine-gun",), + "machine-gunning": ("machine-gun",), + "madded": ("mad",), + "madding": ("mad",), + "made": ("make",), + "magnified": ("magnify",), + "manned": ("man",), + "manning": ("man",), + "manumitted": ("manumit",), + "manumitting": ("manumit",), + "mapped": ("map",), + "mapping": ("map",), + "marcelled": ("marcel",), + "marcelling": ("marcel",), + "marred": ("mar",), + "married": ("marry",), + "marring": ("mar",), + "marshalled": ("marshal",), + "marshalling": ("marshal",), + "marvelled": ("marvel",), + "marvelling": ("marvel",), + "matted": ("mat",), + "matting": ("mat",), + "meant": ("mean",), + "medalled": ("medal",), + "medalling": ("medal",), + "met": ("meet",), + "metalled": ("metal",), + "metalling": ("metal",), + "metrified": ("metrify",), + "might": ("may",), + "militated_against": ("militate_against",), + "militates_against": ("militate_against",), + "militating_against": ("militate_against",), + "mimicked": ("mimic",), + "mimicking": ("mimic",), + "minified": ("minify",), + "misapplied": ("misapply",), + "misbecame": ("misbecome",), + "miscarried": ("miscarry",), + "misdealt": ("misdeal",), + "misfitted": ("misfit",), + "misfitting": ("misfit",), + "misgave": ("misgive",), + "misgiven": ("misgive",), + "mishitting": ("mishit",), + "mislaid": ("mislay",), + "misled": ("mislead",), + "mispled": ("misplead",), + "misspelt": ("misspell",), + "misspent": ("misspend",), + "mistaken": ("mistake",), + "mistook": ("mistake",), + "misunderstood": ("misunderstand",), + "mobbed": ("mob",), + "mobbing": ("mob",), + "modelled": ("model",), + "modelling": ("model",), + "modified": ("modify",), + "mollified": ("mollify",), + "molten": ("melt",), + "mopped": ("mop",), + "mopping": ("mop",), + "mortified": ("mortify",), + "mown": ("mow",), + "mudded": ("mud",), + "muddied": ("muddy",), + "mudding": ("mud",), + "mugged": ("mug",), + "mugging": ("mug",), + "multiplied": ("multiply",), + "mummed": ("mum",), + "mummified": ("mummify",), + "mumming": ("mum",), + "mutinied": ("mutiny",), + "mystified": ("mystify",), + "nabbed": ("nab",), + "nabbing": ("nab",), + "nagged": ("nag",), + "nagging": ("nag",), + "napped": ("nap",), + "napping": ("nap",), + "netted": ("net",), + "netting": ("net",), + "nibbed": ("nib",), + "nibbing": ("nib",), + "nickelled": ("nickel",), + "nickelling": ("nickel",), + "nid-nodded": ("nid-nod",), + "nid-nodding": ("nid-nod",), + "nidified": ("nidify",), + "nigrified": ("nigrify",), + "nipped": ("nip",), + "nipping": ("nip",), + "nitrified": ("nitrify",), + "nodded": ("nod",), + "nodding": ("nod",), + "non-prossed": ("non-pros",), + "non-prosses": ("non-pros",), + "non-prossing": ("non-pros",), + "nonplussed": ("nonplus",), + "nonplusses": ("nonplus",), + "nonplussing": ("nonplus",), + "notified": ("notify",), + "nullified": ("nullify",), + "nutted": ("nut",), + "nutting": ("nut",), + "objectified": ("objectify",), + "occupied": ("occupy",), + "occurred": ("occur",), + "occurring": ("occur",), + "offsetting": ("offset",), + "omitted": ("omit",), + "omitting": ("omit",), + "ossified": ("ossify",), + "outbidden": ("outbid",), + "outbidding": ("outbid",), + "outbred": ("outbreed",), + "outcried": ("outcry",), + "outcropped": ("outcrop",), + "outcropping": ("outcrop",), + "outdid": ("outdo",), + "outdone": ("outdo",), + "outdrawn": ("outdraw",), + "outdrew": ("outdraw",), + "outfitted": ("outfit",), + "outfitting": ("outfit",), + "outfought": ("outfight",), + "outgassed": ("outgas",), + "outgasses": ("outgas",), + "outgassing": ("outgas",), + "outgeneralled": ("outgeneral",), + "outgeneralling": ("outgeneral",), + "outgone": ("outgo",), + "outgrew": ("outgrow",), + "outgrown": ("outgrow",), + "outlaid": ("outlay",), + "outmanned": ("outman",), + "outmanning": ("outman",), + "outputted": ("output",), + "outputting": ("output",), + "outran": ("outrun",), + "outridden": ("outride",), + "outrode": ("outride",), + "outrunning": ("outrun",), + "outshone": ("outshine",), + "outshot": ("outshoot",), + "outsold": ("outsell",), + "outspanned": ("outspan",), + "outspanning": ("outspan",), + "outstood": ("outstand",), + "outstripped": ("outstrip",), + "outstripping": ("outstrip",), + "outthought": ("outthink",), + "outwent": ("outgo",), + "outwitted": ("outwit",), + "outwitting": ("outwit",), + "outwore": ("outwear",), + "outworn": ("outwear",), + "overbidden": ("overbid",), + "overbidding": ("overbid",), + "overblew": ("overblow",), + "overblown": ("overblow",), + "overbore": ("overbear",), + "overborne": ("overbear",), + "overbuilt": ("overbuild",), + "overcame": ("overcome",), + "overcropped": ("overcrop",), + "overcropping": ("overcrop",), + "overdid": ("overdo",), + "overdone": ("overdo",), + "overdrawn": ("overdraw",), + "overdrew": ("overdraw",), + "overdriven": ("overdrive",), + "overdrove": ("overdrive",), + "overflew": ("overfly",), + "overflown": ("overflow", "overfly",), + "overgrew": ("overgrow",), + "overgrown": ("overgrow",), + "overheard": ("overhear",), + "overhung": ("overhang",), + "overlaid": ("overlay",), + "overlain": ("overlie",), + "overlapped": ("overlap",), + "overlapping": ("overlap",), + "overlay": ("overlie",), + "overlying": ("overlie",), + "overmanned": ("overman",), + "overmanning": ("overman",), + "overpaid": ("overpay",), + "overpast": ("overpass",), + "overran": ("overrun",), + "overridden": ("override",), + "overrode": ("override",), + "overrunning": ("overrun",), + "oversaw": ("oversee",), + "overseen": ("oversee",), + "oversetting": ("overset",), + "oversewn": ("oversew",), + "overshot": ("overshoot",), + "oversimplified": ("oversimplify",), + "overslept": ("oversleep",), + "oversold": ("oversell",), + "overspent": ("overspend",), + "overspilt": ("overspill",), + "overstepped": ("overstep",), + "overstepping": ("overstep",), + "overtaken": ("overtake",), + "overthrew": ("overthrow",), + "overthrown": ("overthrow",), + "overtook": ("overtake",), + "overtopped": ("overtop",), + "overtopping": ("overtop",), + "overwound": ("overwind",), + "overwritten": ("overwrite",), + "overwrote": ("overwrite",), + "pacified": ("pacify",), + "padded": ("pad",), + "padding": ("pad",), + "paid": ("pay",), + "palled": ("pal",), + "palling": ("pal",), + "palsied": ("palsy",), + "pandied": ("pandy",), + "panelled": ("panel",), + "panelling": ("panel",), + "panicked": ("panic",), + "panicking": ("panic",), + "panned": ("pan",), + "panning": ("pan",), + "parallelled": ("parallel",), + "parallelling": ("parallel",), + "parcelled": ("parcel",), + "parcelling": ("parcel",), + "parodied": ("parody",), + "parried": ("parry",), + "partaken": ("partake",), + "partook": ("partake",), + "pasquil": ("pasquinade",), + "pasquilled": ("pasquinade",), + "pasquilling": ("pasquinade",), + "pasquils": ("pasquinade",), + "patrolled": ("patrol",), + "patrolling": ("patrol",), + "patted": ("pat",), + "patting": ("pat",), + "pedalled": ("pedal",), + "pedalling": ("pedal",), + "pegged": ("peg",), + "pegging": ("peg",), + "pencilled": ("pencil",), + "pencilling": ("pencil",), + "penned": ("pen",), + "penning": ("pen",), + "pent": ("pen",), + "pepped": ("pep",), + "pepping": ("pep",), + "permitted": ("permit",), + "permitting": ("permit",), + "personified": ("personify",), + "petrified": ("petrify",), + "petted": ("pet",), + "pettifogged": ("pettifog",), + "pettifogging": ("pettifog",), + "petting": ("pet",), + "phantasied": ("phantasy",), + "photocopied": ("photocopy",), + "photomapped": ("photomap",), + "photomapping": ("photomap",), + "photosetting": ("photoset",), + "physicked": ("physic",), + "physicking": ("physic",), + "picnicked": ("picnic",), + "picnicking": ("picnic",), + "pigged": ("pig",), + "pigging": ("pig",), + "pilloried": ("pillory",), + "pinch-hitting": ("pinch-hit",), + "pinned": ("pin",), + "pinning": ("pin",), + "pipped": ("pip",), + "pipping": ("pip",), + "pistol-whipped": ("pistol-whip",), + "pistol-whipping": ("pistol-whip",), + "pistolled": ("pistol",), + "pistolling": ("pistol",), + "pitapatted": ("pitapat",), + "pitapatting": ("pitapat",), + "pitied": ("pity",), + "pitted": ("pit",), + "pitting": ("pit",), + "planned": ("plan",), + "planning": ("plan",), + "platted": ("plat",), + "platting": ("plat",), + "played_a_part": ("play_a_part",), + "playing_a_part": ("play_a_part",), + "plays_a_part": ("play_a_part",), + "pled": ("plead",), + "plied": ("ply",), + "plodded": ("plod",), + "plodding": ("plod",), + "plopped": ("plop",), + "plopping": ("plop",), + "plotted": ("plot",), + "plotting": ("plot",), + "plugged": ("plug",), + "plugging": ("plug",), + "podded": ("pod",), + "podding": ("pod",), + "pommelled": ("pommel",), + "pommelling": ("pommel",), + "popes": ("popes",), + "popped": ("pop",), + "popping": ("pop",), + "potted": ("pot",), + "potting": ("pot",), + "preachified": ("preachify",), + "precancelled": ("precancel",), + "precancelling": ("precancel",), + "preferred": ("prefer",), + "preferring": ("prefer",), + "preoccupied": ("preoccupy",), + "prepaid": ("prepay",), + "presignified": ("presignify",), + "pretermitted": ("pretermit",), + "pretermitting": ("pretermit",), + "prettied": ("pretty",), + "prettified": ("prettify",), + "pried": ("pry",), + "prigged": ("prig",), + "prigging": ("prig",), + "primmed": ("prim",), + "primming": ("prim",), + "prodded": ("prod",), + "prodding": ("prod",), + "programmed": ("program",), + "programmes": ("program",), + "programming": ("program",), + "prologed": ("prologue",), + "prologing": ("prologue",), + "prologs": ("prologue",), + "propelled": ("propel",), + "propelling": ("propel",), + "prophesied": ("prophesy",), + "propped": ("prop",), + "propping": ("prop",), + "proven": ("prove",), + "pubbed": ("pub",), + "pubbing": ("pub",), + "pugged": ("pug",), + "pugging": ("pug",), + "pummelled": ("pummel",), + "pummelling": ("pummel",), + "punned": ("pun",), + "punning": ("pun",), + "pupped": ("pup",), + "pupping": ("pup",), + "purified": ("purify",), + "put-putted": ("put-put",), + "put-putting": ("put-put",), + "putrefied": ("putrefy",), + "puttied": ("putty",), + "putting": ("put",), + "qualified": ("qualify",), + "quantified": ("quantify",), + "quarrelled": ("quarrel",), + "quarrelling": ("quarrel",), + "quarried": ("quarry",), + "quartersawn": ("quartersaw",), + "queried": ("query",), + "quick-froze": ("quick-freeze",), + "quick-frozen": ("quick-freeze",), + "quickstepped": ("quickstep",), + "quickstepping": ("quickstep",), + "quipped": ("quip",), + "quipping": ("quip",), + "quitted": ("quit",), + "quitting": ("quit",), + "quizzed": ("quiz",), + "quizzes": ("quiz",), + "quizzing": ("quiz",), + "ragged": ("rag",), + "ragging": ("rag",), + "rallied": ("rally",), + "ramified": ("ramify",), + "rammed": ("ram",), + "ramming": ("ram",), + "ran": ("run",), + "rang": ("ring",), + "rapped": ("rap",), + "rappelled": ("rappel",), + "rappelling": ("rappel",), + "rapping": ("rap",), + "rarefied": ("rarefy",), + "ratified": ("ratify",), + "ratted": ("rat",), + "ratting": ("rat",), + "ravelled": ("ravel",), + "ravelling": ("ravel",), + "razor-cutting": ("razor-cut",), + "re-trod": ("re-tread",), + "re-trodden": ("re-tread",), + "rebelled": ("rebel",), + "rebelling": ("rebel",), + "rebuilt": ("rebuild",), + "rebutted": ("rebut",), + "rebutting": ("rebut",), + "recapped": ("recap",), + "recapping": ("recap",), + "reclassified": ("reclassify",), + "recommitted": ("recommit",), + "recommitting": ("recommit",), + "recopied": ("recopy",), + "rectified": ("rectify",), + "recurred": ("recur",), + "recurring": ("recur",), + "red": ("red",), + "red-pencilled": ("red-pencil",), + "red-pencilling": ("red-pencil",), + "redded": ("red", "redd",), + "redding": ("red", "redd",), + "redid": ("redo",), + "redone": ("redo",), + "referred": ("refer",), + "referring": ("refer",), + "refitted": ("refit",), + "refitting": ("refit",), + "reft": ("reave",), + "refuelled": ("refuel",), + "refuelling": ("refuel",), + "regretted": ("regret",), + "regretting": ("regret",), + "reheard": ("rehear",), + "reified": ("reify",), + "relied": ("rely",), + "remade": ("remake",), + "remarried": ("remarry",), + "remitted": ("remit",), + "remitting": ("remit",), + "rent": ("rend",), + "repaid": ("repay",), + "repelled": ("repel",), + "repelling": ("repel",), + "replevied": ("replevy",), + "replied": ("reply",), + "repotted": ("repot",), + "repotting": ("repot",), + "reran": ("rerun",), + "rerunning": ("rerun",), + "resat": ("resit",), + "resetting": ("reset",), + "resewn": ("resew",), + "resitting": ("resit",), + "retaken": ("retake",), + "rethought": ("rethink",), + "retold": ("retell",), + "retook": ("retake",), + "retransmitted": ("retransmit",), + "retransmitting": ("retransmit",), + "retried": ("retry",), + "retrofitted": ("retrofit",), + "retrofitting": ("retrofit",), + "retted": ("ret",), + "retting": ("ret",), + "reunified": ("reunify",), + "revelled": ("revel",), + "revelling": ("revel",), + "revetted": ("revet",), + "revetting": ("revet",), + "revivified": ("revivify",), + "revved": ("rev",), + "revving": ("rev",), + "rewound": ("rewind",), + "rewritten": ("rewrite",), + "rewrote": ("rewrite",), + "ribbed": ("rib",), + "ribbing": ("rib",), + "ricochetted": ("ricochet",), + "ricochetting": ("ricochet",), + "ridded": ("rid",), + "ridden": ("ride",), + "ridding": ("rid",), + "rigged": ("rig",), + "rigging": ("rig",), + "rigidified": ("rigidify",), + "rimmed": ("rim",), + "rimming": ("rim",), + "ripped": ("rip",), + "ripping": ("rip",), + "risen": ("rise",), + "rivalled": ("rival",), + "rivalling": ("rival",), + "riven": ("rive",), + "robbed": ("rob",), + "robbing": ("rob",), + "rode": ("ride",), + "rose": ("rise",), + "rotted": ("rot",), + "rotting": ("rot",), + "rough-dried": ("rough-dry",), + "rough-hewn": ("rough-hew",), + "rove": ("reeve",), + "rowelled": ("rowel",), + "rowelling": ("rowel",), + "rubbed": ("rub",), + "rubbing": ("rub",), + "rung": ("ring",), + "running": ("run",), + "rutted": ("rut",), + "rutting": ("rut",), + "saccharified": ("saccharify",), + "sagged": ("sag",), + "sagging": ("sag",), + "said": ("say",), + "salaried": ("salary",), + "salified": ("salify",), + "sallied": ("sally",), + "sanctified": ("sanctify",), + "sandbagged": ("sandbag",), + "sandbagging": ("sandbag",), + "sang": ("sing",), + "sank": ("sink",), + "saponified": ("saponify",), + "sapped": ("sap",), + "sapping": ("sap",), + "sat": ("sit",), + "satisfied": ("satisfy",), + "savvied": ("savvy",), + "saw": ("see",), + "sawn": ("saw",), + "scagged": ("scag",), + "scagging": ("scag",), + "scanned": ("scan",), + "scanning": ("scan",), + "scarified": ("scarify",), + "scarred": ("scar",), + "scarring": ("scar",), + "scatted": ("scat",), + "scatting": ("scat",), + "scorified": ("scorify",), + "scragged": ("scrag",), + "scragging": ("scrag",), + "scrammed": ("scram",), + "scramming": ("scram",), + "scrapped": ("scrap",), + "scrapping": ("scrap",), + "scried": ("scry",), + "scrubbed": ("scrub",), + "scrubbing": ("scrub",), + "scrummed": ("scrum",), + "scrumming": ("scrum",), + "scudded": ("scud",), + "scudding": ("scud",), + "scummed": ("scum",), + "scumming": ("scum",), + "scurried": ("scurry",), + "seed": ("seed",), + "seen": ("see",), + "sent": ("send",), + "setting": ("set",), + "sewn": ("sew",), + "shagged": ("shag",), + "shagging": ("shag",), + "shaken": ("shake",), + "shaken_hands": ("shake_hands",), + "shakes_hands": ("shake_hands",), + "shaking_hands": ("shake_hands",), + "shammed": ("sham",), + "shamming": ("sham",), + "sharecropped": ("sharecrop",), + "sharecropping": ("sharecrop",), + "shat": ("shit",), + "shaven": ("shave",), + "shed": ("shed",), + "shedding": ("shed",), + "shellacked": ("shellac",), + "shellacking": ("shellac",), + "shent": ("shend",), + "shewn": ("shew",), + "shied": ("shy",), + "shikarred": ("shikar",), + "shikarring": ("shikar",), + "shillyshallied": ("shillyshally",), + "shimmed": ("shim",), + "shimmied": ("shimmy",), + "shimming": ("shim",), + "shinned": ("shin",), + "shinning": ("shin",), + "shipped": ("ship",), + "shipping": ("ship",), + "shitted": ("shit",), + "shitting": ("shit",), + "shod": ("shoe",), + "shone": ("shine",), + "shook": ("shake",), + "shook_hands": ("shake_hands",), + "shopped": ("shop",), + "shopping": ("shop",), + "shot": ("shoot",), + "shotgunned": ("shotgun",), + "shotgunning": ("shotgun",), + "shotted": ("shot",), + "shotting": ("shot",), + "shovelled": ("shovel",), + "shovelling": ("shovel",), + "shown": ("show",), + "shrank": ("shrink",), + "shredded": ("shred",), + "shredding": ("shred",), + "shrink-wrapped": ("shrink-wrap",), + "shrink-wrapping": ("shrink-wrap",), + "shrivelled": ("shrivel",), + "shrivelling": ("shrivel",), + "shriven": ("shrive",), + "shrove": ("shrive",), + "shrugged": ("shrug",), + "shrugging": ("shrug",), + "shrunk": ("shrink",), + "shrunken": ("shrink",), + "shunned": ("shun",), + "shunning": ("shun",), + "shutting": ("shut",), + "sicked": ("sic",), + "sicking": ("sic",), + "sideslipped": ("sideslip",), + "sideslipping": ("sideslip",), + "sidestepped": ("sidestep",), + "sidestepping": ("sidestep",), + "sightsaw": ("sightsee",), + "sightseen": ("sightsee",), + "signalled": ("signal",), + "signalling": ("signal",), + "signified": ("signify",), + "silicified": ("silicify",), + "simplified": ("simplify",), + "singing": ("sing", "singe",), + "single-stepped": ("single-step",), + "single-stepping": ("single-step",), + "sinned": ("sin",), + "sinning": ("sin",), + "sipped": ("sip",), + "sipping": ("sip",), + "sitting": ("sit",), + "skellied": ("skelly",), + "skenned": ("sken",), + "skenning": ("sken",), + "sketted": ("sket",), + "sketting": ("sket",), + "ski'd": ("ski",), + "skidded": ("skid",), + "skidding": ("skid",), + "skimmed": ("skim",), + "skimming": ("skim",), + "skin-popped": ("skin-pop",), + "skin-popping": ("skin-pop",), + "skinned": ("skin",), + "skinning": ("skin",), + "skinny-dipped": ("skinny-dip",), + "skinny-dipping": ("skinny-dip",), + "skipped": ("skip",), + "skipping": ("skip",), + "skivvied": ("skivvy",), + "skydove": ("skydive",), + "slabbed": ("slab",), + "slabbing": ("slab",), + "slagged": ("slag",), + "slagging": ("slag",), + "slain": ("slay",), + "slammed": ("slam",), + "slamming": ("slam",), + "slapped": ("slap",), + "slapping": ("slap",), + "slatted": ("slat",), + "slatting": ("slat",), + "sledding": ("sled",), + "slept": ("sleep",), + "slew": ("slay",), + "slid": ("slide",), + "slidden": ("slide",), + "slipped": ("slip",), + "slipping": ("slip",), + "slitting": ("slit",), + "slogged": ("slog",), + "slogging": ("slog",), + "slopped": ("slop",), + "slopping": ("slop",), + "slotted": ("slot",), + "slotting": ("slot",), + "slugged": ("slug",), + "slugging": ("slug",), + "slummed": ("slum",), + "slumming": ("slum",), + "slung": ("sling",), + "slunk": ("slink",), + "slurred": ("slur",), + "slurring": ("slur",), + "smelt": ("smell",), + "smit": ("smite",), + "smitten": ("smite",), + "smote": ("smite",), + "smutted": ("smut",), + "smutting": ("smut",), + "snagged": ("snag",), + "snagging": ("snag",), + "snapped": ("snap",), + "snapping": ("snap",), + "snedded": ("sned",), + "snedding": ("sned",), + "snipped": ("snip",), + "snipping": ("snip",), + "snivelled": ("snivel",), + "snivelling": ("snivel",), + "snogged": ("snog",), + "snogging": ("snog",), + "snubbed": ("snub",), + "snubbing": ("snub",), + "snuck": ("sneak",), + "snugged": ("snug",), + "snugging": ("snug",), + "sobbed": ("sob",), + "sobbing": ("sob",), + "sodded": ("sod",), + "sodding": ("sod",), + "soft-pedalled": ("soft-pedal",), + "soft-pedalling": ("soft-pedal",), + "sold": ("sell",), + "solemnified": ("solemnify",), + "solidified": ("solidify",), + "soothsaid": ("soothsay",), + "sopped": ("sop",), + "sopping": ("sop",), + "sought": ("seek",), + "sown": ("sow",), + "spagged": ("spag",), + "spagging": ("spag",), + "spancelled": ("spancel",), + "spancelling": ("spancel",), + "spanned": ("span",), + "spanning": ("span",), + "sparred": ("spar",), + "sparring": ("spar",), + "spat": ("spit",), + "spatted": ("spat",), + "spatting": ("spat",), + "specified": ("specify",), + "sped": ("speed",), + "speechified": ("speechify",), + "spellbound": ("spellbind",), + "spelt": ("spell",), + "spent": ("spend",), + "spied": ("spy",), + "spilt": ("spill",), + "spin-dried": ("spin-dry",), + "spinning": ("spin",), + "spiralled": ("spiral",), + "spiralling": ("spiral",), + "spitted": ("spit",), + "spitting": ("spit",), + "splitting": ("split",), + "spoilt": ("spoil",), + "spoke": ("speak",), + "spoken": ("speak",), + "spoon-fed": ("spoon-feed",), + "spotlit": ("spotlight",), + "spotted": ("spot",), + "spotting": ("spot",), + "sprang": ("spring",), + "sprigged": ("sprig",), + "sprigging": ("sprig",), + "sprung": ("spring",), + "spudded": ("spud",), + "spudding": ("spud",), + "spun": ("spin",), + "spurred": ("spur",), + "spurring": ("spur",), + "squatted": ("squat",), + "squatting": ("squat",), + "squibbed": ("squib",), + "squibbing": ("squib",), + "squidded": ("squid",), + "squidding": ("squid",), + "squilgee": ("squeegee",), + "stabbed": ("stab",), + "stabbing": ("stab",), + "stall-fed": ("stall-feed",), + "stank": ("stink",), + "starred": ("star",), + "starring": ("star",), + "steadied": ("steady",), + "stellified": ("stellify",), + "stemmed": ("stem",), + "stemming": ("stem",), + "stems_from": ("stem_from",), + "stencilled": ("stencil",), + "stencilling": ("stencil",), + "stepped": ("step",), + "stepping": ("step",), + "stetted": ("stet",), + "stetting": ("stet",), + "stied": ("sty",), + "stilettoeing": ("stiletto",), + "stirred": ("stir",), + "stirring": ("stir",), + "stole": ("steal",), + "stolen": ("steal",), + "stood": ("stand",), + "stopped": ("stop",), + "stopping": ("stop",), + "storied": ("story",), + "stotted": ("stot",), + "stotting": ("stot",), + "stove": ("stave",), + "strapped": ("strap",), + "strapping": ("strap",), + "stratified": ("stratify",), + "strewn": ("strew",), + "stridden": ("stride",), + "stripped": ("strip",), + "stripping": ("strip",), + "striven": ("strive",), + "strode": ("stride",), + "stropped": ("strop",), + "stropping": ("strop",), + "strove": ("strive",), + "strown": ("strow",), + "struck": ("strike",), + "strummed": ("strum",), + "strumming": ("strum",), + "strung": ("string",), + "strutted": ("strut",), + "strutting": ("strut",), + "stubbed": ("stub",), + "stubbing": ("stub",), + "stuck": ("stick",), + "studded": ("stud",), + "studding": ("stud",), + "studied": ("study",), + "stultified": ("stultify",), + "stummed": ("stum",), + "stumming": ("stum",), + "stung": ("sting",), + "stunk": ("stink",), + "stunned": ("stun",), + "stunning": ("stun",), + "stupefied": ("stupefy",), + "stymying": ("stymie",), + "subbed": ("sub",), + "subbing": ("sub",), + "subjectified": ("subjectify",), + "subletting": ("sublet",), + "submitted": ("submit",), + "submitting": ("submit",), + "subtotalled": ("subtotal",), + "subtotalling": ("subtotal",), + "sullied": ("sully",), + "sulphuretted": ("sulphuret",), + "sulphuretting": ("sulphuret",), + "summed": ("sum",), + "summing": ("sum",), + "sung": ("sing",), + "sunk": ("sink",), + "sunken": ("sink",), + "sunned": ("sun",), + "sunning": ("sun",), + "supped": ("sup",), + "supping": ("sup",), + "supplied": ("supply",), + "swabbed": ("swab",), + "swabbing": ("swab",), + "swagged": ("swag",), + "swagging": ("swag",), + "swam": ("swim",), + "swapped": ("swap",), + "swapping": ("swap",), + "swatted": ("swat",), + "swatting": ("swat",), + "swept": ("sweep",), + "swigged": ("swig",), + "swigging": ("swig",), + "swimming": ("swim",), + "swivelled": ("swivel",), + "swivelling": ("swivel",), + "swollen": ("swell",), + "swopped": ("swap",), + "swopping": ("swap",), + "swops": ("swap",), + "swore": ("swear",), + "sworn": ("swear",), + "swotted": ("swot",), + "swotting": ("swot",), + "swum": ("swim",), + "swung": ("swing",), + "syllabified": ("syllabify",), + "symbolled": ("symbol",), + "symbolling": ("symbol",), + "tabbed": ("tab",), + "tabbing": ("tab",), + "tagged": ("tag",), + "tagging": ("tag",), + "taken": ("take",), + "taken_a_side": ("take_a_side",), + "taken_pains": ("take_pains",), + "taken_steps": ("take_steps",), + "takes_a_side": ("take_a_side",), + "takes_pains": ("take_pains",), + "takes_steps": ("take_steps",), + "taking_a_side": ("take_a_side",), + "taking_pains": ("take_pains",), + "taking_steps": ("take_steps",), + "talcked": ("talc",), + "talcking": ("talc",), + "tallied": ("tally",), + "tally-ho'd": ("tally-ho",), + "tammied": ("tammy",), + "tanned": ("tan",), + "tanning": ("tan",), + "tapped": ("tap",), + "tapping": ("tap",), + "tarred": ("tar",), + "tarried": ("tarry",), + "tarring": ("tar",), + "tasselled": ("tassel",), + "tasselling": ("tassel",), + "tatted": ("tat",), + "tatting": ("tat",), + "taught": ("teach",), + "taxis": ("taxis",), + "taxying": ("taxi",), + "teaselled": ("teasel",), + "teaselling": ("teasel",), + "tedded": ("ted",), + "tedding": ("ted",), + "tepefied": ("tepefy",), + "terrified": ("terrify",), + "testes": ("testes",), + "testified": ("testify",), + "thinking_the_world_of": ("think_the_world_of",), + "thinks_the_world_of": ("think_the_world_of",), + "thinned": ("thin",), + "thinning": ("thin",), + "thought": ("think",), + "thought_the_world_of": ("think_the_world_of",), + "threw": ("throw",), + "threw_out": ("throw_out",), + "thriven": ("thrive",), + "throbbed": ("throb",), + "throbbing": ("throb",), + "throve": ("thrive",), + "throwing_out": ("throw_out",), + "thrown": ("throw",), + "thrown_out": ("throw_out",), + "throws_out": ("throw_out",), + "thrummed": ("thrum",), + "thrumming": ("thrum",), + "thudded": ("thud",), + "thudding": ("thud",), + "tidied": ("tidy",), + "tinned": ("tin",), + "tinning": ("tin",), + "tinselled": ("tinsel",), + "tinselling": ("tinsel",), + "tipped": ("tip",), + "tipping": ("tip",), + "tittupped": ("tittup",), + "tittupping": ("tittup",), + "toadied": ("toady",), + "togged": ("tog",), + "togging": ("tog",), + "told": ("tell",), + "took": ("take",), + "took_a_side": ("take_a_side",), + "took_pains": ("take_pains",), + "took_steps": ("take_steps",), + "topped": ("top",), + "topping": ("top",), + "tore": ("tear",), + "torn": ("tear",), + "torrefied": ("torrefy",), + "torrify": ("torrefy",), + "totalled": ("total",), + "totalling": ("total",), + "totted": ("tot",), + "totting": ("tot",), + "towelled": ("towel",), + "towelling": ("towel",), + "trafficked": ("traffic",), + "trafficking": ("traffic",), + "trameled": ("trammel",), + "trameling": ("trammel",), + "tramelled": ("trammel",), + "tramelling": ("trammel",), + "tramels": ("trammel",), + "trammed": ("tram",), + "tramming": ("tram",), + "transferred": ("transfer",), + "transferring": ("transfer",), + "transfixt": ("transfix",), + "tranship": ("transship",), + "transhipped": ("tranship",), + "transhipping": ("tranship",), + "transmitted": ("transmit",), + "transmitting": ("transmit",), + "transmogrified": ("transmogrify",), + "transshipped": ("transship",), + "transshipping": ("transship",), + "trapanned": ("trapan",), + "trapanning": ("trapan",), + "trapped": ("trap",), + "trapping": ("trap",), + "travelled": ("travel",), + "travelling": ("travel",), + "travestied": ("travesty",), + "trekked": ("trek",), + "trekking": ("trek",), + "trepanned": ("trepan",), + "trepanning": ("trepan",), + "tried": ("try",), + "trigged": ("trig",), + "trigging": ("trig",), + "trimmed": ("trim",), + "trimming": ("trim",), + "tripped": ("trip",), + "tripping": ("trip",), + "trod": ("tread",), + "trodden": ("tread",), + "trogged": ("trog",), + "trogging": ("trog",), + "trotted": ("trot",), + "trotting": ("trot",), + "trowelled": ("trowel",), + "trowelling": ("trowel",), + "tugged": ("tug",), + "tugging": ("tug",), + "tumefied": ("tumefy",), + "tunned": ("tun",), + "tunnelled": ("tunnel",), + "tunnelling": ("tunnel",), + "tunning": ("tun",), + "tupped": ("tup",), + "tupping": ("tup",), + "tut-tutted": ("tut-tut",), + "tut-tutting": ("tut-tut",), + "twigged": ("twig",), + "twigging": ("twig",), + "twinned": ("twin",), + "twinning": ("twin",), + "twitted": ("twit",), + "twitting": ("twit",), + "tying": ("tie",), + "typesetting": ("typeset",), + "typewritten": ("typewrite",), + "typewrote": ("typewrite",), + "typified": ("typify",), + "uglified": ("uglify",), + "unbarred": ("unbar",), + "unbarring": ("unbar",), + "unbent": ("unbend",), + "unbound": ("unbind",), + "uncapped": ("uncap",), + "uncapping": ("uncap",), + "unclad": ("unclothe",), + "unclogged": ("unclog",), + "unclogging": ("unclog",), + "underbidding": ("underbid",), + "underbought": ("underbuy",), + "undercutting": ("undercut",), + "underfed": ("underfeed",), + "undergirt": ("undergird",), + "undergone": ("undergo",), + "underlaid": ("underlay",), + "underlain": ("underlie",), + "underlay": ("underlie",), + "underletting": ("underlet",), + "underlying": ("underlie",), + "underpaid": ("underpay",), + "underpinned": ("underpin",), + "underpinning": ("underpin",), + "underpropped": ("underprop",), + "underpropping": ("underprop",), + "undersetting": ("underset",), + "undershot": ("undershoot",), + "undersold": ("undersell",), + "understood": ("understand",), + "understudied": ("understudy",), + "undertaken": ("undertake",), + "undertook": ("undertake",), + "underwent": ("undergo",), + "underwritten": ("underwrite",), + "underwrote": ("underwrite",), + "undid": ("undo",), + "undone": ("undo",), + "unfitted": ("unfit",), + "unfitting": ("unfit",), + "unfroze": ("unfreeze",), + "unfrozen": ("unfreeze",), + "unified": ("unify",), + "unkennelled": ("unkennel",), + "unkennelling": ("unkennel",), + "unknitted": ("unknit",), + "unknitting": ("unknit",), + "unlaid": ("unlay",), + "unlearnt": ("unlearn",), + "unmade": ("unmake",), + "unmanned": ("unman",), + "unmanning": ("unman",), + "unpegged": ("unpeg",), + "unpegging": ("unpeg",), + "unpinned": ("unpin",), + "unpinning": ("unpin",), + "unplugged": ("unplug",), + "unplugging": ("unplug",), + "unravelled": ("unravel",), + "unravelling": ("unravel",), + "unrigged": ("unrig",), + "unrigging": ("unrig",), + "unripped": ("unrip",), + "unripping": ("unrip",), + "unrove": ("unreeve",), + "unsaid": ("unsay",), + "unshipped": ("unship",), + "unshipping": ("unship",), + "unslung": ("unsling",), + "unsnapped": ("unsnap",), + "unsnapping": ("unsnap",), + "unspoke": ("unspeak",), + "unspoken": ("unspeak",), + "unsteadied": ("unsteady",), + "unstepped": ("unstep",), + "unstepping": ("unstep",), + "unstopped": ("unstop",), + "unstopping": ("unstop",), + "unstrung": ("unstring",), + "unstuck": ("unstick",), + "unswore": ("unswear",), + "unsworn": ("unswear",), + "untaught": ("unteach",), + "unthought": ("unthink",), + "untidied": ("untidy",), + "untrod": ("untread",), + "untrodden": ("untread",), + "untying": ("untie",), + "unwound": ("unwind",), + "unwrapped": ("unwrap",), + "unwrapping": ("unwrap",), + "unzipped": ("unzip",), + "unzipping": ("unzip",), + "upbuilt": ("upbuild",), + "upheld": ("uphold",), + "uphove": ("upheave",), + "upped": ("up",), + "uppercutting": ("uppercut",), + "upping": ("up",), + "uprisen": ("uprise",), + "uprose": ("uprise",), + "upsetting": ("upset",), + "upsprang": ("upspring",), + "upsprung": ("upspring",), + "upswept": ("upsweep",), + "upswollen": ("upswell",), + "upswung": ("upswing",), + "vagged": ("vag",), + "vagging": ("vag",), + "varied": ("vary",), + "vatted": ("vat",), + "vatting": ("vat",), + "verbified": ("verbify",), + "verified": ("verify",), + "versified": ("versify",), + "vetted": ("vet",), + "vetting": ("vet",), + "victualled": ("victual",), + "victualling": ("victual",), + "vilified": ("vilify",), + "vitrified": ("vitrify",), + "vitriolled": ("vitriol",), + "vitriolling": ("vitriol",), + "vivified": ("vivify",), + "vying": ("vie",), + "wadded": ("wad",), + "waddied": ("waddy",), + "wadding": ("wad",), + "wadsetted": ("wadset",), + "wadsetting": ("wadset",), + "wagged": ("wag",), + "wagging": ("wag",), + "wanned": ("wan",), + "wanning": ("wan",), + "warred": ("war",), + "warring": ("war",), + "was": ("be",), + "water-ski'd": ("water-ski",), + "waylaid": ("waylay",), + "wearied": ("weary",), + "weatherstripped": ("weatherstrip",), + "weatherstripping": ("weatherstrip",), + "webbed": ("web",), + "webbing": ("web",), + "wedded": ("wed",), + "wedding": ("wed",), + "weed": ("weed",), + "went": ("go",), + "went_deep": ("go_deep",), + "wept": ("weep",), + "were": ("be",), + "wetted": ("wet",), + "wetting": ("wet",), + "whammed": ("wham",), + "whamming": ("wham",), + "whapped": ("whap",), + "whapping": ("whap",), + "whetted": ("whet",), + "whetting": ("whet",), + "whinnied": ("whinny",), + "whipped": ("whip",), + "whipping": ("whip",), + "whipsawn": ("whipsaw",), + "whirred": ("whir",), + "whirring": ("whir",), + "whistle-stopped": ("whistle-stop",), + "whistle-stopping": ("whistle-stop",), + "whizzed": ("whiz",), + "whizzes": ("whiz",), + "whizzing": ("whiz",), + "whopped": ("whop",), + "whopping": ("whop",), + "wigged": ("wig",), + "wigging": ("wig",), + "wigwagged": ("wigwag",), + "wigwagging": ("wigwag",), + "wildcatted": ("wildcat",), + "wildcatting": ("wildcat",), + "window-shopped": ("window-shop",), + "window-shopping": ("window-shop",), + "winning": ("win",), + "winterfed": ("winterfeed",), + "wiredrawn": ("wiredraw",), + "wiredrew": ("wiredraw",), + "withdrawn": ("withdraw",), + "withdrew": ("withdraw",), + "withheld": ("withhold",), + "withstood": ("withstand",), + "woke": ("wake",), + "woken": ("wake",), + "won": ("win",), + "wonned": ("won",), + "wonning": ("won",), + "wore": ("wear",), + "worn": ("wear",), + "worried": ("worry",), + "worshipped": ("worship",), + "worshipping": ("worship",), + "wound": ("wind",), + "wove": ("weave",), + "woven": ("weave",), + "wrapped": ("wrap",), + "wrapping": ("wrap",), + "wried": ("wry",), + "written": ("write",), + "wrote": ("write",), + "wrought": ("work",), + "wrung": ("wring",), + "yakked": ("yak",), + "yakking": ("yak",), + "yapped": ("yap",), + "yapping": ("yap",), + "ycleped": ("clepe",), + "yclept": ("clepe",), + "yenned": ("yen",), + "yenning": ("yen",), + "yodelled": ("yodel",), + "yodelling": ("yodel",), + "zapped": ("zap",), + "zapping": ("zap",), + "zigzagged": ("zigzag",), + "zigzagging": ("zigzag",), + "zipped": ("zip",), + "zipping": ("zip",) +} diff --git a/spacy/en/morph_rules.py b/spacy/en/morph_rules.py index ab5c2b6a0..2c088f09b 100644 --- a/spacy/en/morph_rules.py +++ b/spacy/en/morph_rules.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * diff --git a/spacy/en/tag_map.py b/spacy/en/tag_map.py index 7a3589d0e..ea14f7d4d 100644 --- a/spacy/en/tag_map.py +++ b/spacy/en/tag_map.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * @@ -16,7 +16,7 @@ TAG_MAP = { "$": {POS: SYM, "Other": {"SymType": "currency"}}, "#": {POS: SYM, "Other": {"SymType": "numbersign"}}, "AFX": {POS: ADJ, "Hyph": "yes"}, - "CC": {POS: CONJ, "ConjType": "coor"}, + "CC": {POS: CCONJ, "ConjType": "coor"}, "CD": {POS: NUM, "NumType": "card"}, "DT": {POS: DET}, "EX": {POS: ADV, "AdvType": "ex"}, diff --git a/spacy/en/tokenizer_exceptions.py b/spacy/en/tokenizer_exceptions.py index 38fc33cfb..8ef862411 100644 --- a/spacy/en/tokenizer_exceptions.py +++ b/spacy/en/tokenizer_exceptions.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * @@ -7,7 +7,8 @@ from ..language_data import PRON_LEMMA EXC = {} -EXCLUDE_EXC = ["Ill", "ill", "Its", "its", "Hell", "hell", "Well", "well", "Whore", "whore"] +EXCLUDE_EXC = ["Ill", "ill", "Its", "its", "Hell", "hell", "Shell", "shell", + "Shed", "shed", "were", "Were", "Well", "well", "Whore", "whore"] # Pronouns @@ -20,18 +21,18 @@ for pron in ["i"]: ] EXC[orth + "m"] = [ - {ORTH: pron, LEMMA: PRON_LEMMA, TAG: "PRP"}, + {ORTH: orth, LEMMA: PRON_LEMMA, TAG: "PRP"}, {ORTH: "m", LEMMA: "be", TAG: "VBP", "tenspect": 1, "number": 1 } ] EXC[orth + "'ma"] = [ - {ORTH: pron, LEMMA: PRON_LEMMA, TAG: "PRP"}, + {ORTH: orth, LEMMA: PRON_LEMMA, TAG: "PRP"}, {ORTH: "'m", LEMMA: "be", NORM: "am"}, {ORTH: "a", LEMMA: "going to", NORM: "gonna"} ] EXC[orth + "ma"] = [ - {ORTH: pron, LEMMA: PRON_LEMMA, TAG: "PRP"}, + {ORTH: orth, LEMMA: PRON_LEMMA, TAG: "PRP"}, {ORTH: "m", LEMMA: "be", NORM: "am"}, {ORTH: "a", LEMMA: "going to", NORM: "gonna"} ] @@ -150,8 +151,8 @@ for word in ["who", "what", "when", "where", "why", "how", "there", "that"]: EXC[orth + "'ll've"] = [ {ORTH: orth, LEMMA: word}, - {ORTH: "ll", LEMMA: "will", TAG: "MD"}, - {ORTH: "ve", LEMMA: "have", TAG: "VB"} + {ORTH: "'ll", LEMMA: "will", TAG: "MD"}, + {ORTH: "'ve", LEMMA: "have", TAG: "VB"} ] EXC[orth + "llve"] = [ @@ -237,11 +238,13 @@ for verb_data in [ ] EXC[data[ORTH] + "n't've"] = [ + dict(data), {ORTH: "n't", LEMMA: "not", TAG: "RB"}, {ORTH: "'ve", LEMMA: "have", TAG: "VB"} ] EXC[data[ORTH] + "ntve"] = [ + dict(data), {ORTH: "nt", LEMMA: "not", TAG: "RB"}, {ORTH: "ve", LEMMA: "have", TAG: "VB"} ] @@ -334,6 +337,23 @@ for exc_data in [ ] +# Times + +for h in range(1, 12 + 1): + hour = str(h) + + for period in ["a.m.", "am"]: + EXC[hour + period] = [ + {ORTH: hour}, + {ORTH: period, LEMMA: "a.m."} + ] + for period in ["p.m.", "pm"]: + EXC[hour + period] = [ + {ORTH: hour}, + {ORTH: period, LEMMA: "p.m."} + ] + + # Rest OTHER = { @@ -750,5 +770,5 @@ ORTH_ONLY = [ "Rev.", "Sen.", "St.", - "vs." + "vs.", ] diff --git a/spacy/en/stop_words.py b/spacy/en/word_sets.py similarity index 73% rename from spacy/en/stop_words.py rename to spacy/en/word_sets.py index 1b00eb974..deb5dc44b 100644 --- a/spacy/en/stop_words.py +++ b/spacy/en/word_sets.py @@ -1,7 +1,9 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals +# Stop words + STOP_WORDS = set(""" a about above across after afterwards again against all almost alone along already also although always am among amongst amount an and another any anyhow @@ -65,3 +67,24 @@ whither who whoever whole whom whose why will with within without would yet you your yours yourself yourselves """.split()) + + +# Number words + +NUM_WORDS = set(""" +zero one two three four five six seven eight nine ten eleven twelve thirteen +fourteen fifteen sixteen seventeen eighteen nineteen twenty thirty forty fifty +sixty seventy eighty ninety hundred thousand million billion trillion +quadrillion gajillion bazillion +""".split()) + + +# Ordinal words + +ORDINAL_WORDS = set(""" +first second third fourth fifth sixth seventh eigth ninth tenth eleventh twelveth +thirteenth fourteenth fifteenth sixteenth sventeenth eighteenth nineteenth +twentieth thirtieth fortieth fiftieth sixtieth seventieth eightieth ninetieth +hundreth thousandth millionth billionth trillionth quadrillionth gajillionth +bazillionth +""".split()) diff --git a/spacy/es/__init__.py b/spacy/es/__init__.py index 216a60d15..b925e648a 100644 --- a/spacy/es/__init__.py +++ b/spacy/es/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from os import path diff --git a/spacy/es/language_data.py b/spacy/es/language_data.py index 7c44752cb..3b6ae5023 100644 --- a/spacy/es/language_data.py +++ b/spacy/es/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base @@ -18,22 +18,22 @@ def get_time_exc(hours): } for hour in hours: - exc["%da.m." % hour] = [ + exc["%sa.m." % hour] = [ {ORTH: hour}, {ORTH: "a.m."} ] - exc["%dp.m." % hour] = [ + exc["%sp.m." % hour] = [ {ORTH: hour}, {ORTH: "p.m."} ] - exc["%dam" % hour] = [ + exc["%sam" % hour] = [ {ORTH: hour}, {ORTH: "am", LEMMA: "a.m."} ] - exc["%dpm" % hour] = [ + exc["%spm" % hour] = [ {ORTH: hour}, {ORTH: "pm", LEMMA: "p.m."} ] @@ -45,7 +45,8 @@ STOP_WORDS = set(STOP_WORDS) TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ORTH_ONLY)) -update_exc(TOKENIZER_EXCEPTIONS, get_time_exc(range(1, 12 + 1))) +update_exc(TOKENIZER_EXCEPTIONS, get_time_exc( + ['%d' % hour for hour in range(1, 12 + 1)])) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS)) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) diff --git a/spacy/es/stop_words.py b/spacy/es/stop_words.py index 8dc4f11e0..e29b68f13 100644 --- a/spacy/es/stop_words.py +++ b/spacy/es/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/es/tag_map.py b/spacy/es/tag_map.py new file mode 100644 index 000000000..6054d147d --- /dev/null +++ b/spacy/es/tag_map.py @@ -0,0 +1,738 @@ +{ + "AUX__Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin": { + "freq": 865, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin", + "pos": "AUX" + }, + "PUNCT__PunctSide=Fin|PunctType=Brck": { + "freq": 1476, + "morph": "PunctSide=Fin|PunctType=Brck", + "pos": "PUNCT" + }, + "VERB__Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin": { + "freq": 7033, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin", + "pos": "VERB" + }, + "PRON__Number=Sing|Person=2|PronType=Prs": { + "freq": 132, + "morph": "Number=Sing|Person=2|PronType=Prs", + "pos": "PRON" + }, + "PRON": { + "pos": "PRON" + }, + "VERB__Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin": { + "freq": 525, + "morph": "Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "SYM__NumForm=Digit|NumType=Frac": { + "freq": 236, + "morph": "NumForm=Digit|NumType=Frac", + "pos": "SYM" + }, + "ADJ___": { + "freq": 515, + "morph": "_", + "pos": "ADJ" + }, + "PRON__Person=3": { + "freq": 3185, + "morph": "Person=3", + "pos": "PRON" + }, + "PRON__Case=Acc|Gender=Masc|Number=Plur|Person=3|PronType=Prs": { + "freq": 104, + "morph": "Case=Acc|Gender=Masc|Number=Plur|Person=3|PronType=Prs", + "pos": "PRON" + }, + "DET__Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs": { + "freq": 148, + "morph": "Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs", + "pos": "DET" + }, + "CONJ": { + "pos": "CONJ" + }, + "PUNCT__PunctType=Comm": { + "freq": 24475, + "morph": "PunctType=Comm", + "pos": "PUNCT" + }, + "ADV": { + "pos": "ADV" + }, + "ADV__AdpType=Prep": { + "freq": 161, + "morph": "AdpType=Prep", + "pos": "ADV" + }, + "ADJ__Number=Plur": { + "freq": 2617, + "morph": "Number=Plur", + "pos": "ADJ" + }, + "AUX__Mood=Sub|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 149, + "morph": "Mood=Sub|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "AUX" + }, + "ADJ__Gender=Masc|Number=Sing|NumType=Ord": { + "freq": 654, + "morph": "Gender=Masc|Number=Sing|NumType=Ord", + "pos": "ADJ" + }, + "AUX__Mood=Cnd|Number=Sing|Person=3|VerbForm=Fin": { + "freq": 272, + "morph": "Mood=Cnd|Number=Sing|Person=3|VerbForm=Fin", + "pos": "AUX" + }, + "AUX__Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin": { + "freq": 388, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin", + "pos": "AUX" + }, + "ADJ__Gender=Masc|Number=Plur": { + "freq": 1995, + "morph": "Gender=Masc|Number=Plur", + "pos": "ADJ" + }, + "DET": { + "pos": "DET" + }, + "VERB__VerbForm=Inf": { + "freq": 8204, + "morph": "VerbForm=Inf", + "pos": "VERB" + }, + "DET__Definite=Def|Gender=Fem|Number=Plur|PronType=Art": { + "freq": 4275, + "morph": "Definite=Def|Gender=Fem|Number=Plur|PronType=Art", + "pos": "DET" + }, + "VERB__Mood=Ind|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 495, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "VERB" + }, + "DET__Definite=Def|Gender=Masc|Number=Plur|PronType=Art": { + "freq": 6951, + "morph": "Definite=Def|Gender=Masc|Number=Plur|PronType=Art", + "pos": "DET" + }, + "PRON___": { + "freq": 1871, + "morph": "_", + "pos": "PRON" + }, + "DET__Definite=Ind|Gender=Masc|Number=Plur|PronType=Art": { + "freq": 113, + "morph": "Definite=Ind|Gender=Masc|Number=Plur|PronType=Art", + "pos": "DET" + }, + "NOUN__Number=Sing": { + "freq": 1977, + "morph": "Number=Sing", + "pos": "NOUN" + }, + "ADJ__Gender=Fem|Number=Sing|NumType=Ord": { + "freq": 568, + "morph": "Gender=Fem|Number=Sing|NumType=Ord", + "pos": "ADJ" + }, + "NOUN__Gender=Masc|Number=Sing": { + "freq": 25557, + "morph": "Gender=Masc|Number=Sing", + "pos": "NOUN" + }, + "PART": { + "pos": "PART" + }, + "ADJ__Number=Sing": { + "freq": 6619, + "morph": "Number=Sing", + "pos": "ADJ" + }, + "NUM": { + "pos": "NUM" + }, + "DET__Number=Sing|PronType=Ind": { + "freq": 309, + "morph": "Number=Sing|PronType=Ind", + "pos": "DET" + }, + "ADJ__Gender=Fem|Number=Sing|VerbForm=Part": { + "freq": 1387, + "morph": "Gender=Fem|Number=Sing|VerbForm=Part", + "pos": "ADJ" + }, + "VERB__Mood=Sub|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 272, + "morph": "Mood=Sub|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "VERB" + }, + "VERB__Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin": { + "freq": 1574, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin", + "pos": "VERB" + }, + "PRON__Gender=Masc|Number=Sing|PronType=Dem": { + "freq": 115, + "morph": "Gender=Masc|Number=Sing|PronType=Dem", + "pos": "PRON" + }, + "ADP": { + "pos": "ADP" + }, + "NOUN__AdvType=Tim": { + "freq": 1504, + "morph": "AdvType=Tim", + "pos": "NOUN" + }, + "AUX__Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin": { + "freq": 130, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin", + "pos": "AUX" + }, + "PRON__Case=Nom|Number=Sing|Person=1|PronType=Prs": { + "freq": 115, + "morph": "Case=Nom|Number=Sing|Person=1|PronType=Prs", + "pos": "PRON" + }, + "PUNCT__PunctType=Semi": { + "freq": 259, + "morph": "PunctType=Semi", + "pos": "PUNCT" + }, + "PUNCT__PunctSide=Ini|PunctType=Qest": { + "freq": 206, + "morph": "PunctSide=Ini|PunctType=Qest", + "pos": "PUNCT" + }, + "PRON__Case=Dat|Number=Sing|Person=3|PronType=Prs": { + "freq": 754, + "morph": "Case=Dat|Number=Sing|Person=3|PronType=Prs", + "pos": "PRON" + }, + "PRON__Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs": { + "freq": 624, + "morph": "Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs", + "pos": "PRON" + }, + "NUM__NumForm=Digit": { + "freq": 2979, + "morph": "NumForm=Digit", + "pos": "NUM" + }, + "PUNCT__PunctType=Colo": { + "freq": 638, + "morph": "PunctType=Colo", + "pos": "PUNCT" + }, + "PROPN": { + "pos": "PROPN" + }, + "X": { + "pos": "X" + }, + "NOUN__NumForm=Digit": { + "freq": 555, + "morph": "NumForm=Digit", + "pos": "NOUN" + }, + "VERB__Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part": { + "freq": 3297, + "morph": "Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part", + "pos": "VERB" + }, + "ADJ__Gender=Masc|Number=Plur|NumType=Ord": { + "freq": 227, + "morph": "Gender=Masc|Number=Plur|NumType=Ord", + "pos": "ADJ" + }, + "PRON__Gender=Masc|Number=Sing|Person=3|PronType=Prs": { + "freq": 205, + "morph": "Gender=Masc|Number=Sing|Person=3|PronType=Prs", + "pos": "PRON" + }, + "NOUN__Number=Plur": { + "freq": 1463, + "morph": "Number=Plur", + "pos": "NOUN" + }, + "DET__Number=Sing|Person=3|Poss=Yes|PronType=Prs": { + "freq": 2909, + "morph": "Number=Sing|Person=3|Poss=Yes|PronType=Prs", + "pos": "DET" + }, + "VERB__VerbForm=Ger": { + "freq": 994, + "morph": "VerbForm=Ger", + "pos": "VERB" + }, + "INTJ": { + "pos": "INTJ" + }, + "VERB__Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin": { + "freq": 398, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin", + "pos": "VERB" + }, + "AUX__Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 1403, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "PRON__Number=Plur|Person=1|PronType=Prs": { + "freq": 264, + "morph": "Number=Plur|Person=1|PronType=Prs", + "pos": "PRON" + }, + "ADV__Negative=Neg": { + "freq": 2960, + "morph": "Negative=Neg", + "pos": "ADV" + }, + "VERB__Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 2488, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "DET__Gender=Masc|Number=Sing|PronType=Ind": { + "freq": 855, + "morph": "Gender=Masc|Number=Sing|PronType=Ind", + "pos": "DET" + }, + "VERB__Mood=Sub|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 408, + "morph": "Mood=Sub|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "PRON__Gender=Fem|Number=Sing|PronType=Ind": { + "freq": 237, + "morph": "Gender=Fem|Number=Sing|PronType=Ind", + "pos": "PRON" + }, + "DET__Gender=Fem|Number=Plur|PronType=Ind": { + "freq": 592, + "morph": "Gender=Fem|Number=Plur|PronType=Ind", + "pos": "DET" + }, + "ADJ__Gender=Fem|Number=Plur|VerbForm=Part": { + "freq": 614, + "morph": "Gender=Fem|Number=Plur|VerbForm=Part", + "pos": "ADJ" + }, + "DET__Gender=Fem|Number=Sing|PronType=Dem": { + "freq": 808, + "morph": "Gender=Fem|Number=Sing|PronType=Dem", + "pos": "DET" + }, + "DET__Gender=Fem|Number=Sing|PronType=Ind": { + "freq": 613, + "morph": "Gender=Fem|Number=Sing|PronType=Ind", + "pos": "DET" + }, + "DET__Definite=Ind|Gender=Masc|Number=Sing|PronType=Art": { + "freq": 4277, + "morph": "Definite=Ind|Gender=Masc|Number=Sing|PronType=Art", + "pos": "DET" + }, + "VERB__Mood=Sub|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 788, + "morph": "Mood=Sub|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "NOUN__Gender=Fem": { + "freq": 145, + "morph": "Gender=Fem", + "pos": "NOUN" + }, + "PRON__Gender=Fem|Number=Plur|PronType=Ind": { + "freq": 127, + "morph": "Gender=Fem|Number=Plur|PronType=Ind", + "pos": "PRON" + }, + "AUX__Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 729, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "AUX" + }, + "VERB__Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 1223, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "VERB" + }, + "AUX__Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin": { + "freq": 164, + "morph": "Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "PRON__PronType=Rel": { + "freq": 7301, + "morph": "PronType=Rel", + "pos": "PRON" + }, + "DET__Definite=Def|Number=Sing|PronType=Art": { + "freq": 928, + "morph": "Definite=Def|Number=Sing|PronType=Art", + "pos": "DET" + }, + "ADV___": { + "freq": 11334, + "morph": "_", + "pos": "ADV" + }, + "ADJ": { + "pos": "ADJ" + }, + "AUX__VerbForm=Ger": { + "freq": 154, + "morph": "VerbForm=Ger", + "pos": "AUX" + }, + "PRON__Number=Sing|PronType=Int": { + "freq": 201, + "morph": "Number=Sing|PronType=Int", + "pos": "PRON" + }, + "VERB__Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin": { + "freq": 1236, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin", + "pos": "VERB" + }, + "NOUN__Gender=Masc|Number=Plur": { + "freq": 12310, + "morph": "Gender=Masc|Number=Plur", + "pos": "NOUN" + }, + "NOUN__Gender=Fem|Number=Plur": { + "freq": 8612, + "morph": "Gender=Fem|Number=Plur", + "pos": "NOUN" + }, + "VERB__Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 6343, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "PRON__Gender=Masc|Number=Plur|PronType=Ind": { + "freq": 460, + "morph": "Gender=Masc|Number=Plur|PronType=Ind", + "pos": "PRON" + }, + "VERB__Mood=Sub|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 100, + "morph": "Mood=Sub|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "VERB" + }, + "PUNCT__PunctSide=Ini|PunctType=Brck": { + "freq": 1482, + "morph": "PunctSide=Ini|PunctType=Brck", + "pos": "PUNCT" + }, + "PRON__Gender=Masc|Number=Sing|PronType=Tot": { + "freq": 111, + "morph": "Gender=Masc|Number=Sing|PronType=Tot", + "pos": "PRON" + }, + "SCONJ": { + "pos": "SCONJ" + }, + "AUX__VerbForm=Inf": { + "freq": 1495, + "morph": "VerbForm=Inf", + "pos": "AUX" + }, + "AUX__Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 5227, + "morph": "Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "ADJ__AdpType=Prep": { + "freq": 124, + "morph": "AdpType=Prep", + "pos": "ADJ" + }, + "PRON__Gender=Masc|Number=Sing|PronType=Ind": { + "freq": 624, + "morph": "Gender=Masc|Number=Sing|PronType=Ind", + "pos": "PRON" + }, + "DET__Gender=Masc|Number=Plur|PronType=Dem": { + "freq": 269, + "morph": "Gender=Masc|Number=Plur|PronType=Dem", + "pos": "DET" + }, + "ADJ__Gender=Fem|Number=Plur": { + "freq": 1612, + "morph": "Gender=Fem|Number=Plur", + "pos": "ADJ" + }, + "NUM__Gender=Masc|Number=Plur|NumType=Card": { + "freq": 104, + "morph": "Gender=Masc|Number=Plur|NumType=Card", + "pos": "NUM" + }, + "NUM__NumType=Card": { + "freq": 533, + "morph": "NumType=Card", + "pos": "NUM" + }, + "SCONJ___": { + "freq": 10129, + "morph": "_", + "pos": "SCONJ" + }, + "PRON__Number=Sing|PronType=Rel": { + "freq": 318, + "morph": "Number=Sing|PronType=Rel", + "pos": "PRON" + }, + "VERB__Mood=Cnd|Number=Sing|Person=3|VerbForm=Fin": { + "freq": 253, + "morph": "Mood=Cnd|Number=Sing|Person=3|VerbForm=Fin", + "pos": "VERB" + }, + "NOUN": { + "pos": "NOUN" + }, + "NOUN__Gender=Masc": { + "freq": 153, + "morph": "Gender=Masc", + "pos": "NOUN" + }, + "DET__Definite=Ind|Gender=Fem|Number=Sing|PronType=Art": { + "freq": 3087, + "morph": "Definite=Ind|Gender=Fem|Number=Sing|PronType=Art", + "pos": "DET" + }, + "ADJ__Gender=Masc|Number=Plur|VerbForm=Part": { + "freq": 997, + "morph": "Gender=Masc|Number=Plur|VerbForm=Part", + "pos": "ADJ" + }, + "PRON__Number=Sing|PronType=Dem": { + "freq": 302, + "morph": "Number=Sing|PronType=Dem", + "pos": "PRON" + }, + "PRON__Number=Sing|Person=3|PronType=Prs": { + "freq": 116, + "morph": "Number=Sing|Person=3|PronType=Prs", + "pos": "PRON" + }, + "PRON__Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs": { + "freq": 173, + "morph": "Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs", + "pos": "PRON" + }, + "PUNCT": { + "pos": "PUNCT" + }, + "DET__Gender=Masc|Number=Sing|PronType=Dem": { + "freq": 962, + "morph": "Gender=Masc|Number=Sing|PronType=Dem", + "pos": "DET" + }, + "PRON__Number=Plur|PronType=Rel": { + "freq": 102, + "morph": "Number=Plur|PronType=Rel", + "pos": "PRON" + }, + "ADJ__Gender=Masc|Number=Sing": { + "freq": 5136, + "morph": "Gender=Masc|Number=Sing", + "pos": "ADJ" + }, + "DET__Definite=Def|Gender=Masc|Number=Sing|PronType=Art": { + "freq": 22962, + "morph": "Definite=Def|Gender=Masc|Number=Sing|PronType=Art", + "pos": "DET" + }, + "AUX__Mood=Sub|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 107, + "morph": "Mood=Sub|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "PRON__Case=Dat|Number=Plur|Person=3|PronType=Prs": { + "freq": 220, + "morph": "Case=Dat|Number=Plur|Person=3|PronType=Prs", + "pos": "PRON" + }, + "VERB__Gender=Fem|Number=Sing|Tense=Past|VerbForm=Part": { + "freq": 206, + "morph": "Gender=Fem|Number=Sing|Tense=Past|VerbForm=Part", + "pos": "VERB" + }, + "DET__Number=Plur|Person=3|Poss=Yes|PronType=Prs": { + "freq": 1021, + "morph": "Number=Plur|Person=3|Poss=Yes|PronType=Prs", + "pos": "DET" + }, + "ADJ__Gender=Fem|Number=Plur|NumType=Ord": { + "freq": 101, + "morph": "Gender=Fem|Number=Plur|NumType=Ord", + "pos": "ADJ" + }, + "PRON__PronType=Int": { + "freq": 137, + "morph": "PronType=Int", + "pos": "PRON" + }, + "ADP__AdpType=Prep": { + "freq": 71133, + "morph": "AdpType=Prep", + "pos": "ADP" + }, + "DET__Gender=Masc|Number=Plur|PronType=Ind": { + "freq": 904, + "morph": "Gender=Masc|Number=Plur|PronType=Ind", + "pos": "DET" + }, + "AUX__Mood=Sub|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin": { + "freq": 299, + "morph": "Mood=Sub|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "DET__Gender=Fem|Number=Plur|PronType=Dem": { + "freq": 188, + "morph": "Gender=Fem|Number=Plur|PronType=Dem", + "pos": "DET" + }, + "NUM__NumForm=Digit|NumType=Card": { + "freq": 1108, + "morph": "NumForm=Digit|NumType=Card", + "pos": "NUM" + }, + "PUNCT__PunctType=Quot": { + "freq": 7380, + "morph": "PunctType=Quot", + "pos": "PUNCT" + }, + "VERB__Gender=Masc|Number=Plur|Tense=Past|VerbForm=Part": { + "freq": 184, + "morph": "Gender=Masc|Number=Plur|Tense=Past|VerbForm=Part", + "pos": "VERB" + }, + "PUNCT__PunctType=Dash": { + "freq": 2345, + "morph": "PunctType=Dash", + "pos": "PUNCT" + }, + "ADJ__Gender=Fem|Number=Sing": { + "freq": 3935, + "morph": "Gender=Fem|Number=Sing", + "pos": "ADJ" + }, + "AUX__Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin": { + "freq": 215, + "morph": "Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin", + "pos": "AUX" + }, + "AUX__Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin": { + "freq": 218, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Past|VerbForm=Fin", + "pos": "AUX" + }, + "PROPN___": { + "freq": 34454, + "morph": "_", + "pos": "PROPN" + }, + "PRON__Number=Sing|PronType=Ind": { + "freq": 421, + "morph": "Number=Sing|PronType=Ind", + "pos": "PRON" + }, + "VERB__Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin": { + "freq": 359, + "morph": "Mood=Ind|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin", + "pos": "VERB" + }, + "PUNCT__PunctSide=Fin|PunctType=Qest": { + "freq": 312, + "morph": "PunctSide=Fin|PunctType=Qest", + "pos": "PUNCT" + }, + "PRON__Number=Sing|Person=1|PronType=Prs": { + "freq": 298, + "morph": "Number=Sing|Person=1|PronType=Prs", + "pos": "PRON" + }, + "PART__Negative=Neg": { + "freq": 122, + "morph": "Negative=Neg", + "pos": "PART" + }, + "PRON__Gender=Masc|Number=Plur|Person=3|PronType=Prs": { + "freq": 176, + "morph": "Gender=Masc|Number=Plur|Person=3|PronType=Prs", + "pos": "PRON" + }, + "NOUN__Gender=Fem|Number=Sing": { + "freq": 24416, + "morph": "Gender=Fem|Number=Sing", + "pos": "NOUN" + }, + "ADJ__Gender=Masc|Number=Sing|VerbForm=Part": { + "freq": 2297, + "morph": "Gender=Masc|Number=Sing|VerbForm=Part", + "pos": "ADJ" + }, + "CONJ___": { + "freq": 12225, + "morph": "_", + "pos": "CONJ" + }, + "NUM__Number=Plur|NumType=Card": { + "freq": 2057, + "morph": "Number=Plur|NumType=Card", + "pos": "NUM" + }, + "NOUN___": { + "freq": 4829, + "morph": "_", + "pos": "NOUN" + }, + "VERB": { + "pos": "VERB" + }, + "DET__Definite=Def|Gender=Fem|Number=Sing|PronType=Art": { + "freq": 16487, + "morph": "Definite=Def|Gender=Fem|Number=Sing|PronType=Art", + "pos": "DET" + }, + "SYM": { + "pos": "SYM" + }, + "VERB__Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin": { + "freq": 130, + "morph": "Mood=Ind|Number=Sing|Person=1|Tense=Past|VerbForm=Fin", + "pos": "VERB" + }, + "AUX": { + "pos": "AUX" + }, + "AUX__Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part": { + "freq": 494, + "morph": "Gender=Masc|Number=Sing|Tense=Past|VerbForm=Part", + "pos": "AUX" + }, + "AUX__Mood=Ind|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin": { + "freq": 199, + "morph": "Mood=Ind|Number=Plur|Person=3|Tense=Imp|VerbForm=Fin", + "pos": "AUX" + }, + "VERB__Mood=Imp|Number=Sing|Person=2|VerbForm=Fin": { + "freq": 100, + "morph": "Mood=Imp|Number=Sing|Person=2|VerbForm=Fin", + "pos": "VERB" + }, + "PUNCT__PunctType=Peri": { + "freq": 14170, + "morph": "PunctType=Peri", + "pos": "PUNCT" + } +} \ No newline at end of file diff --git a/spacy/es/tokenizer_exceptions.py b/spacy/es/tokenizer_exceptions.py index 93bc74642..e60bcd104 100644 --- a/spacy/es/tokenizer_exceptions.py +++ b/spacy/es/tokenizer_exceptions.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * diff --git a/spacy/fi/__init__.py b/spacy/fi/__init__.py new file mode 100644 index 000000000..fd1f712ac --- /dev/null +++ b/spacy/fi/__init__.py @@ -0,0 +1,17 @@ +# coding: utf8 +from __future__ import unicode_literals, print_function + +from ..language import Language +from ..attrs import LANG +from .language_data import * + + +class Finnish(Language): + lang = 'fi' + + class Defaults(Language.Defaults): + lex_attr_getters = dict(Language.Defaults.lex_attr_getters) + lex_attr_getters[LANG] = lambda text: 'fi' + + tokenizer_exceptions = TOKENIZER_EXCEPTIONS + stop_words = STOP_WORDS diff --git a/spacy/fi/language_data.py b/spacy/fi/language_data.py new file mode 100644 index 000000000..74f137631 --- /dev/null +++ b/spacy/fi/language_data.py @@ -0,0 +1,17 @@ +# coding: utf8 +from __future__ import unicode_literals + +from .. import language_data as base +from ..language_data import update_exc, strings_to_exc + +from .stop_words import STOP_WORDS +from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS + + +STOP_WORDS = set(STOP_WORDS) + +TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS) +update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS)) + + +__all__ = ["TOKENIZER_EXCEPTIONS", "STOP_WORDS"] diff --git a/spacy/fi/stop_words.py b/spacy/fi/stop_words.py new file mode 100644 index 000000000..bc9b779ca --- /dev/null +++ b/spacy/fi/stop_words.py @@ -0,0 +1,114 @@ +# coding: utf8 +from __future__ import unicode_literals + +# Source https://github.com/stopwords-iso/stopwords-fi/blob/master/stopwords-fi.txt +# Reformatted with some minor corrections + +STOP_WORDS = set(""" + +aiemmin aika aikaa aikaan aikaisemmin aikaisin aikana aikoina aikoo aikovat +aina ainakaan ainakin ainoa ainoat aiomme aion aiotte aivan ajan alas alemmas +alkuisin alkuun alla alle aloitamme aloitan aloitat aloitatte aloitattivat +aloitettava aloitettavaksi aloitettu aloitimme aloitin aloitit aloititte +aloittaa aloittamatta aloitti aloittivat alta aluksi alussa alusta annettavaksi +annettava annettu ansiosta antaa antamatta antoi apu asia asiaa asian asiasta +asiat asioiden asioihin asioita asti avuksi avulla avun avutta + +edelle edelleen edellä edeltä edemmäs edes edessä edestä ehkä ei eikä eilen +eivät eli ellei elleivät ellemme ellen ellet ellette emme en enemmän eniten +ennen ensi ensimmäinen ensimmäiseksi ensimmäisen ensimmäisenä ensimmäiset +ensimmäisiksi ensimmäisinä ensimmäisiä ensimmäistä ensin entinen entisen +entisiä entisten entistä enää eri erittäin erityisesti eräiden eräs eräät esi +esiin esillä esimerkiksi et eteen etenkin ette ettei että + +halua haluaa haluamatta haluamme haluan haluat haluatte haluavat halunnut +halusi halusimme halusin halusit halusitte halusivat halutessa haluton he hei +heidän heidät heihin heille heillä heiltä heissä heistä heitä helposti heti +hetkellä hieman hitaasti huolimatta huomenna hyvien hyviin hyviksi hyville +hyviltä hyvin hyvinä hyvissä hyvistä hyviä hyvä hyvät hyvää hän häneen hänelle +hänellä häneltä hänen hänessä hänestä hänet häntä + +ihan ilman ilmeisesti itse itsensä itseään + +ja jo johon joiden joihin joiksi joilla joille joilta joina joissa joista joita +joka jokainen jokin joko joksi joku jolla jolle jolloin jolta jompikumpi jona +jonka jonkin jonne joo jopa jos joskus jossa josta jota jotain joten jotenkin +jotenkuten jotka jotta jouduimme jouduin jouduit jouduitte joudumme joudun +joudutte joukkoon joukossa joukosta joutua joutui joutuivat joutumaan joutuu +joutuvat juuri jälkeen jälleen jää + +kahdeksan kahdeksannen kahdella kahdelle kahdelta kahden kahdessa kahdesta +kahta kahteen kai kaiken kaikille kaikilta kaikkea kaikki kaikkia kaikkiaan +kaikkialla kaikkialle kaikkialta kaikkien kaikkiin kaksi kannalta kannattaa +kanssa kanssaan kanssamme kanssani kanssanne kanssasi kauan kauemmas kaukana +kautta kehen keiden keihin keiksi keille keillä keiltä keinä keissä keistä +keitten keittä keitä keneen keneksi kenelle kenellä keneltä kenen kenenä +kenessä kenestä kenet kenettä kenties kerran kerta kertaa keskellä kesken +keskimäärin ketkä ketä kiitos kohti koko kokonaan kolmas kolme kolmen kolmesti +koska koskaan kovin kuin kuinka kuinkaan kuitenkaan kuitenkin kuka kukaan kukin +kumpainen kumpainenkaan kumpi kumpikaan kumpikin kun kuten kuuden kuusi kuutta +kylliksi kyllä kymmenen kyse + +liian liki lisäksi lisää lla luo luona lähekkäin lähelle lähellä läheltä +lähemmäs lähes lähinnä lähtien läpi + +mahdollisimman mahdollista me meidän meidät meihin meille meillä meiltä meissä +meistä meitä melkein melko menee menemme menen menet menette menevät meni +menimme menin menit menivät mennessä mennyt menossa mihin miksi mikä mikäli +mikään mille milloin milloinkan millä miltä minkä minne minua minulla minulle +minulta minun minussa minusta minut minuun minä missä mistä miten mitkä mitä +mitään moi molemmat mones monesti monet moni moniaalla moniaalle moniaalta +monta muassa muiden muita muka mukaan mukaansa mukana mutta muu muualla muualle +muualta muuanne muulloin muun muut muuta muutama muutaman muuten myöhemmin myös +myöskin myöskään myötä + +ne neljä neljän neljää niiden niihin niiksi niille niillä niiltä niin niinä +niissä niistä niitä noiden noihin noiksi noilla noille noilta noin noina noissa +noista noita nopeammin nopeasti nopeiten nro nuo nyt näiden näihin näiksi +näille näillä näiltä näin näinä näissä näistä näitä nämä + +ohi oikea oikealla oikein ole olemme olen olet olette oleva olevan olevat oli +olimme olin olisi olisimme olisin olisit olisitte olisivat olit olitte olivat +olla olleet ollut oma omaa omaan omaksi omalle omalta oman omassa omat omia +omien omiin omiksi omille omilta omissa omista on onkin onko ovat + +paikoittain paitsi pakosti paljon paremmin parempi parhaillaan parhaiten +perusteella peräti pian pieneen pieneksi pienelle pienellä pieneltä pienempi +pienestä pieni pienin poikki puolesta puolestaan päälle + +runsaasti + +saakka sama samaa samaan samalla saman samat samoin sata sataa satojen se +seitsemän sekä sen seuraavat siellä sieltä siihen siinä siis siitä sijaan siksi +sille silloin sillä silti siltä sinne sinua sinulla sinulle sinulta sinun +sinussa sinusta sinut sinuun sinä sisäkkäin sisällä siten sitten sitä ssa sta +suoraan suuntaan suuren suuret suuri suuria suurin suurten + +taa taas taemmas tahansa tai takaa takaisin takana takia tallä tapauksessa +tarpeeksi tavalla tavoitteena te teidän teidät teihin teille teillä teiltä +teissä teistä teitä tietysti todella toinen toisaalla toisaalle toisaalta +toiseen toiseksi toisella toiselle toiselta toisemme toisen toisensa toisessa +toisesta toista toistaiseksi toki tosin tuhannen tuhat tule tulee tulemme tulen +tulet tulette tulevat tulimme tulin tulisi tulisimme tulisin tulisit tulisitte +tulisivat tulit tulitte tulivat tulla tulleet tullut tuntuu tuo tuohon tuoksi +tuolla tuolle tuolloin tuolta tuon tuona tuonne tuossa tuosta tuota tuskin tykö +tähän täksi tälle tällä tällöin tältä tämä tämän tänne tänä tänään tässä tästä +täten tätä täysin täytyvät täytyy täällä täältä + +ulkopuolella usea useasti useimmiten usein useita uudeksi uudelleen uuden uudet +uusi uusia uusien uusinta uuteen uutta + +vaan vai vaiheessa vaikea vaikean vaikeat vaikeilla vaikeille vaikeilta +vaikeissa vaikeista vaikka vain varmasti varsin varsinkin varten vasen +vasemmalla vasta vastaan vastakkain vastan verran vielä vierekkäin vieressä +vieri viiden viime viimeinen viimeisen viimeksi viisi voi voidaan voimme voin +voisi voit voitte voivat vuoden vuoksi vuosi vuosien vuosina vuotta vähemmän +vähintään vähiten vähän välillä + +yhdeksän yhden yhdessä yhteen yhteensä yhteydessä yhteyteen yhtä yhtäälle +yhtäällä yhtäältä yhtään yhä yksi yksin yksittäin yleensä ylemmäs yli ylös +ympäri + +älköön älä + +""".split()) diff --git a/spacy/fi/tokenizer_exceptions.py b/spacy/fi/tokenizer_exceptions.py new file mode 100644 index 000000000..52ea7428a --- /dev/null +++ b/spacy/fi/tokenizer_exceptions.py @@ -0,0 +1,202 @@ +# coding: utf8 +from __future__ import unicode_literals + +from ..symbols import * +from ..language_data import PRON_LEMMA + +# Source https://www.cs.tut.fi/~jkorpela/kielenopas/5.5.html + +TOKENIZER_EXCEPTIONS = { + "aik.": [ + {ORTH: "aik.", LEMMA: "aikaisempi"} + ], + "alk.": [ + {ORTH: "alk.", LEMMA: "alkaen"} + ], + "alv.": [ + {ORTH: "alv.", LEMMA: "arvonlisävero"} + ], + "ark.": [ + {ORTH: "ark.", LEMMA: "arkisin"} + ], + "as.": [ + {ORTH: "as.", LEMMA: "asunto"} + ], + "ed.": [ + {ORTH: "ed.", LEMMA: "edellinen"} + ], + "esim.": [ + {ORTH: "esim.", LEMMA: "esimerkki"} + ], + "huom.": [ + {ORTH: "huom.", LEMMA: "huomautus"} + ], + "jne.": [ + {ORTH: "jne.", LEMMA: "ja niin edelleen"} + ], + "joht.": [ + {ORTH: "joht.", LEMMA: "johtaja"} + ], + "k.": [ + {ORTH: "k.", LEMMA: "kuollut"} + ], + "ks.": [ + {ORTH: "ks.", LEMMA: "katso"} + ], + "lk.": [ + {ORTH: "lk.", LEMMA: "luokka"} + ], + "lkm.": [ + {ORTH: "lkm.", LEMMA: "lukumäärä"} + ], + "lyh.": [ + {ORTH: "lyh.", LEMMA: "lyhenne"} + ], + "läh.": [ + {ORTH: "läh.", LEMMA: "lähettäjä"} + ], + "miel.": [ + {ORTH: "miel.", LEMMA: "mieluummin"} + ], + "milj.": [ + {ORTH: "milj.", LEMMA: "miljoona"} + ], + "mm.": [ + {ORTH: "mm.", LEMMA: "muun muassa"} + ], + "myöh.": [ + {ORTH: "myöh.", LEMMA: "myöhempi"} + ], + "n.": [ + {ORTH: "n.", LEMMA: "noin"} + ], + "nimim.": [ + {ORTH: "nimim.", LEMMA: "nimimerkki"} + ], + "ns.": [ + {ORTH: "ns.", LEMMA: "niin sanottu"} + ], + "nyk.": [ + {ORTH: "nyk.", LEMMA: "nykyinen"} + ], + "oik.": [ + {ORTH: "oik.", LEMMA: "oikealla"} + ], + "os.": [ + {ORTH: "os.", LEMMA: "osoite"} + ], + "p.": [ + {ORTH: "p.", LEMMA: "päivä"} + ], + "par.": [ + {ORTH: "par.", LEMMA: "paremmin"} + ], + "per.": [ + {ORTH: "per.", LEMMA: "perustettu"} + ], + "pj.": [ + {ORTH: "pj.", LEMMA: "puheenjohtaja"} + ], + "puh.joht.": [ + {ORTH: "puh.joht.", LEMMA: "puheenjohtaja"} + ], + "prof.": [ + {ORTH: "prof.", LEMMA: "professori"} + ], + "puh.": [ + {ORTH: "puh.", LEMMA: "puhelin"} + ], + "pvm.": [ + {ORTH: "pvm.", LEMMA: "päivämäärä"} + ], + "rak.": [ + {ORTH: "rak.", LEMMA: "rakennettu"} + ], + "ry.": [ + {ORTH: "ry.", LEMMA: "rekisteröity yhdistys"} + ], + "s.": [ + {ORTH: "s.", LEMMA: "sivu"} + ], + "siht.": [ + {ORTH: "siht.", LEMMA: "sihteeri"} + ], + "synt.": [ + {ORTH: "synt.", LEMMA: "syntynyt"} + ], + "t.": [ + {ORTH: "t.", LEMMA: "toivoo"} + ], + "tark.": [ + {ORTH: "tark.", LEMMA: "tarkastanut"} + ], + "til.": [ + {ORTH: "til.", LEMMA: "tilattu"} + ], + "tms.": [ + {ORTH: "tms.", LEMMA: "tai muuta sellaista"} + ], + "toim.": [ + {ORTH: "toim.", LEMMA: "toimittanut"} + ], + "v.": [ + {ORTH: "v.", LEMMA: "vuosi"} + ], + "vas.": [ + {ORTH: "vas.", LEMMA: "vasen"} + ], + "vast.": [ + {ORTH: "vast.", LEMMA: "vastaus"} + ], + "vrt.": [ + {ORTH: "vrt.", LEMMA: "vertaa"} + ], + "yht.": [ + {ORTH: "yht.", LEMMA: "yhteensä"} + ], + "yl.": [ + {ORTH: "yl.", LEMMA: "yleinen"} + ], + "ym.": [ + {ORTH: "ym.", LEMMA: "ynnä muuta"} + ], + "yms.": [ + {ORTH: "yms.", LEMMA: "ynnä muuta sellaista"} + ], + "yo.": [ + {ORTH: "yo.", LEMMA: "ylioppilas"} + ], + "yliopp.": [ + {ORTH: "yliopp.", LEMMA: "ylioppilas"} + ], + "ao.": [ + {ORTH: "ao.", LEMMA: "asianomainen"} + ], + "em.": [ + {ORTH: "em.", LEMMA: "edellä mainittu"} + ], + "ko.": [ + {ORTH: "ko.", LEMMA: "kyseessä oleva"} + ], + "ml.": [ + {ORTH: "ml.", LEMMA: "mukaan luettuna"} + ], + "po.": [ + {ORTH: "po.", LEMMA: "puheena oleva"} + ], + "so.": [ + {ORTH: "so.", LEMMA: "se on"} + ], + "ts.": [ + {ORTH: "ts.", LEMMA: "toisin sanoen"} + ], + "vm.": [ + {ORTH: "vm.", LEMMA: "viimeksi mainittu"} + ], + "siht.": [ + {ORTH: "siht.", LEMMA: "sihteeri"} + ], + "srk.": [ + {ORTH: "srk.", LEMMA: "seurakunta"} + ] +} diff --git a/spacy/fr/__init__.py b/spacy/fr/__init__.py index 81584b926..09edce143 100644 --- a/spacy/fr/__init__.py +++ b/spacy/fr/__init__.py @@ -1,20 +1,29 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function -from os import path - -from ..language import Language +from ..language import Language, BaseDefaults from ..attrs import LANG from .language_data import * +from .punctuation import TOKENIZER_INFIXES, TOKENIZER_SUFFIXES + + +class FrenchDefaults(BaseDefaults): + lex_attr_getters = dict(Language.Defaults.lex_attr_getters) + lex_attr_getters[LANG] = lambda text: 'fr' + + stop_words = STOP_WORDS + infixes = tuple(TOKENIZER_INFIXES) + suffixes = tuple(TOKENIZER_SUFFIXES) + token_match = TOKEN_MATCH + + @classmethod + def create_tokenizer(cls, nlp=None): + cls.tokenizer_exceptions = get_tokenizer_exceptions() + return super(FrenchDefaults, cls).create_tokenizer(nlp) class French(Language): lang = 'fr' - class Defaults(Language.Defaults): - lex_attr_getters = dict(Language.Defaults.lex_attr_getters) - lex_attr_getters[LANG] = lambda text: 'fr' - - tokenizer_exceptions = TOKENIZER_EXCEPTIONS - stop_words = STOP_WORDS + Defaults = FrenchDefaults diff --git a/spacy/fr/_tokenizer_exceptions_list.py b/spacy/fr/_tokenizer_exceptions_list.py new file mode 100644 index 000000000..48b7e30a2 --- /dev/null +++ b/spacy/fr/_tokenizer_exceptions_list.py @@ -0,0 +1,26303 @@ +# coding: utf8 + +from __future__ import unicode_literals + + +BASE_EXCEPTIONS = [ +"0-day", +"0-days", +"1000Base-T", +"100Base-T", +"100Base-T4", +"100Base-TX", +"10BASE-F", +"10Base-T", +"1,1-diméthylhydrazine", +"11-septembre", +"11-Septembre", +"120-cellules", +"1,2,3-tris-nitrooxy-propane", +"1,2-diazine", +"1,2-dichloropropane", +"1,3-diazine", +"1,3-dichloropropène", +"14-18", +"1,4-diazine", +"16-cellules", +"1-alpha,2-alpha,3-bêta,4-alpha,5-alpha,6-bêta-hexachlorocyclohexane", +"1-DDOL", +"1-dodécanol", +"1-méthyl-2,4,6-trinitrobenzène", +"1-TDOL", +"1-tétradécanol", +"1T-SRAM", +"22-dihydroergocalciférol", +"2,2'-iminodi(éthylamine)", +"2,3,6-TBA", +"2,4,5-T", +"2,4,5-TP", +"2,4,6-trinitrophénol", +"24-cellules", +"2,4-D", +"2,4-DB", +"2,4-DP", +"2,4-MCPA", +"2,4-MCPB", +"2-désoxyribose", +"2-méthylpropane", +"2-méthylpropanes", +"2′-O-méthyla", +"2′-O-méthylai", +"2′-O-méthylaient", +"2′-O-méthylais", +"2′-O-méthylait", +"2′-O-méthylâmes", +"2′-O-méthylant", +"2′-O-méthylas", +"2′-O-méthylasse", +"2′-O-méthylassent", +"2′-O-méthylasses", +"2′-O-méthylassiez", +"2′-O-méthylassions", +"2′-O-méthylât", +"2′-O-méthylâtes", +"2′-O-méthyle", +"2′-O-méthylé", +"2′-O-méthylée", +"2′-O-méthylées", +"2′-O-méthylent", +"2′-O-méthyler", +"2′-O-méthylera", +"2′-O-méthylerai", +"2′-O-méthyleraient", +"2′-O-méthylerais", +"2′-O-méthylerait", +"2′-O-méthyleras", +"2′-O-méthylèrent", +"2′-O-méthylerez", +"2′-O-méthyleriez", +"2′-O-méthylerions", +"2′-O-méthylerons", +"2′-O-méthyleront", +"2′-O-méthyles", +"2′-O-méthylés", +"2′-O-méthylez", +"2′-O-méthyliez", +"2′-O-méthylions", +"2′-O-méthylons", +"33-tours", +"3,4-DCPA", +"3,6-DCP", +"39-45", +"3-hydroxyflavone", +"3-méthylmorphine", +"4-3-3", +"4-5-1", +"4-acétylaminophénol", +"4-CPA", +"5-4-1", +"5-cellules", +"5-HPETE", +"(5R,6S)-7,8-didehydro-4,5-époxy-3-méthoxy-N-méthylmorphinan-6-ol", +"600-cellules", +"6-benzyladénine", +"8-hydroxyquinoléine", +"9-2", +"9-3", +"AAAA-MM-JJ", +"Aarle-Rixtel", +"abaisse-langue", +"abaisse-langues", +"Abanto-Zierbena", +"Abaucourt-Hautecourt", +"Abbans-Dessous", +"Abbans-Dessus", +"Abbaye-sous-Plancy", +"Abbéville-la-Rivière", +"Abbéville-lès-Conflans", +"Abbeville-Saint-Lucien", +"Abcoude-Baambrugge", +"Abcoude-Proostdij", +"Abel-François", +"Abergement-Clémenciat", +"Abergement-de-Cuisery", +"Abergement-de-Varey", +"Abergement-la-Ronce", +"Abergement-le-Grand", +"Abergement-le-Petit", +"Abergement-lès-Thésy", +"Abergement-Sainte-Colombe", +"Abergement-Saint-Jean", +"Abitibi-Témiscamien", +"Abitibi-Témiscamingue", +"Abjat-sur-Bandiat", +"Ablaincourt-Pressoir", +"Ablain-Saint-Nazaire", +"Ablon-sur-Seine", +"Aboncourt-Gesincourt", +"Aboncourt-sur-Seille", +"abou-hannès", +"abou-mengel", +"abou-mengels", +"abricotier-pays", +"abricot-pêche", +"abricots-pêches", +"abri-sous-roche", +"abris-sous-roche", +"abris-vent", +"abri-vent", +"absorbeur-neutralisateur", +"acajou-amer", +"acajou-bois", +"acajous-amers", +"acajous-bois", +"accord-cadre", +"accords-cadres", +"accroche-coeur", +"accroche-cœur", +"accroche-coeurs", +"accroche-cœurs", +"accroche-pied", +"accroche-pieds", +"accroche-plat", +"accroche-plats", +"acétyl-salicylate", +"acétyl-salicylates", +"achard-bourgeois", +"Achard-Bourgeois", +"achard-bourgeoise", +"Achard-Bourgeoise", +"achard-bourgeoises", +"Achard-Bourgeoises", +"Achères-la-Forêt", +"Acheux-en-Amiénois", +"Acheux-en-Vimeu", +"Achiet-le-Grand", +"Achiet-le-Petit", +"Achter-Drempt", +"Achter-Lindt", +"Achter-Thesinge", +"acibenzolar-S-méthyle", +"acide-N-1-naphtyl-phtalamique", +"acide-phénol", +"acides-phénols", +"acido-alcalimétrie", +"acido-alcoolo-résistance", +"acido-alcoolo-résistances", +"acido-alcoolo-résistant", +"acido-alcoolo-résistante", +"acido-alcoolo-résistantes", +"acido-alcoolo-résistants", +"acido-basique", +"acido-résistant", +"acido-résistants", +"acquae-sextien", +"Acquae-Sextien", +"acquae-sextienne", +"Acquae-Sextienne", +"acquae-sextiennes", +"Acquae-Sextiennes", +"acquae-sextiens", +"Acquae-Sextiens", +"acqua-toffana", +"acqua-toffanas", +"Acquin-Westbécourt", +"acquit-à-caution", +"acquit-patent", +"acquits-à-caution", +"acquits-patents", +"acting-out", +"actino-uranium", +"Acy-en-Multien", +"Acy-Romance", +"Adam-lès-Passavant", +"Adam-lès-Vercel", +"Ad-Dawr", +"Addis-Abeba", +"Addis-Abebien", +"Addis-Abébien", +"add-on", +"Adelans-et-le-Val-de-Bithaine", +"Adervielle-Pouchergues", +"adieu-mes-couilles", +"adieu-tout", +"adieu-touts", +"adieu-va", +"adieu-vas", +"adieu-vat", +"adieu-vats", +"adiposo-génital", +"adiposo-génitale", +"adiposo-génitales", +"adiposo-génitaux", +"adjudant-chef", +"adjudants-chefs", +"Admannshagen-Bargeshagen", +"Adrets-de-Fréjus", +"Adwick-le-Street", +"A-EF", +"A-ÉF", +"africain-américain", +"Africain-Américain", +"africaine-américaine", +"Africaine-Américaine", +"africaines-américaines", +"Africaines-Américaines", +"africains-américains", +"Africains-Américains", +"africano-brésilien", +"africano-brésilienne", +"africano-brésiliennes", +"africano-brésiliens", +"africano-taïwanais", +"africano-taïwanaise", +"africano-taïwanaises", +"agace-pissette", +"agar-agar", +"agasse-tambourinette", +"agatha-christien", +"Agatha-christien", +"Agen-d'Aveyron", +"agit-prop", +"Agnam-Goly", +"Agnez-lès-Duisans", +"Agnicourt-et-Séchelles", +"Agnières-en-Dévoluy", +"agnus-castus", +"agnus-dei", +"Agon-Coutainville", +"agora-phobie", +"agora-phobies", +"Agos-Vidalos", +"Ahaxe-Alciette-Bascassan", +"Ahlefeld-Bistensee", +"Ahrenshagen-Daskow", +"aï-aï", +"Aibar-Oibar", +"Aichach-Friedberg", +"ai-cham", +"Aïcirits-Camou-Suhast", +"aide-comptable", +"aide-écuyer", +"aide-écuyers", +"aide-éducateur", +"Aïd-el-Kébir", +"Aïd-el-Séghir", +"aide-mémoire", +"aide-mémoires", +"aide-soignant", +"aide-soignante", +"aide-soignantes", +"aide-soignants", +"aides-soignantes", +"aides-soignants", +"aigle-bar", +"Aignay-le-Duc", +"Aignes-et-Puypéroux", +"aigre-douce", +"aigre-doux", +"Aigrefeuille-d'Aunis", +"Aigrefeuille-sur-Maine", +"aigre-moines", +"aigres-douces", +"aigres-doux", +"Aiguebelette-le-Lac", +"aigue-marine", +"aigue-marines", +"aigues-juntais", +"Aigues-Juntais", +"aigues-juntaise", +"Aigues-Juntaise", +"aigues-juntaises", +"Aigues-Juntaises", +"Aigues-Juntes", +"aigues-marines", +"aigues-mortais", +"Aigues-Mortais", +"aigues-mortaise", +"Aigues-Mortaise", +"aigues-mortaises", +"Aigues-Mortaises", +"Aigues-Mortes", +"Aigues-Vives", +"aigues-vivesien", +"Aigues-Vivesien", +"aigues-vivesienne", +"Aigues-Vivesienne", +"aigues-vivesiennes", +"Aigues-Vivesiennes", +"aigues-vivesiens", +"Aigues-Vivesiens", +"aigues-vivien", +"aigues-vivois", +"Aigues-Vivois", +"aigues-vivoise", +"Aigues-Vivoise", +"aigues-vivoises", +"Aigues-Vivoises", +"Aiguillon-sur-Mer", +"Aiguillon-sur-Vie", +"aiguise-crayon", +"aiguise-crayons", +"Aillant-sur-Milleron", +"Aillant-sur-Tholon", +"Aillevillers-et-Lyaumont", +"Aillières-Beauvoir", +"Aillon-le-Jeune", +"Aillon-le-Vieux", +"Ailly-le-Haut-Clocher", +"Ailly-sur-Meuse", +"Ailly-sur-Noye", +"Ailly-sur-Somme", +"Aime-la-Plagne", +"Ainay-le-Château", +"Ainay-le-Vieil", +"Ainhice-Mongelos", +"Aínsa-Sobrarbe", +"ainu-ken", +"Ainval-Septoutre", +"Aire-la-Ville", +"airelle-myrtille", +"Aire-sur-l'Adour", +"Aire-sur-la-Lys", +"Airon-Notre-Dame", +"Airon-Saint-Vaast", +"Aische-en-Refail", +"Aiseau-Presles", +"aiseau-preslois", +"Aiseau-Preslois", +"Aiseau-Presloise", +"Aisey-et-Richecourt", +"Aisey-sur-Seine", +"Aisonville-et-Bernoville", +"Aisy-sous-Thil", +"Aisy-sur-Armançon", +"Aix-en-Diois", +"Aix-en-Ergny", +"Aix-en-Issart", +"Aix-en-Othe", +"Aix-en-Provence", +"Aixe-sur-Vienne", +"Aix-la-Chapelle", +"Aix-la-Fayette", +"Aix-les-Bains", +"Aix-Noulette", +"Aix-Villemaur-Pâlis", +"Aizecourt-le-Bas", +"Aizecourt-le-Haut", +"Aizy-Jouy", +"Ajoupa-Bouillon", +"aka-bea", +"aka-bo", +"aka-cari", +"aka-jeru", +"aka-kede", +"aka-kora", +"akar-bale", +"akhal-teke", +"akua-ba", +"Alaincourt-la-Côte", +"al-Anbar", +"Al-Anbar", +"al-Anbâr", +"Al-Anbâr", +"al-Anbār", +"Al-Andalus", +"Alba-la-Romaine", +"albano-letton", +"Albaret-le-Comtal", +"Albaret-Sainte-Marie", +"Alb-Danube", +"Albefeuille-Lagarde", +"Albepierre-Bredons", +"Albergaria-a-Velha", +"Albiez-le-Jeune", +"Albiez-Montrond", +"Albigny-sur-Saône", +"Albon-d'Ardèche", +"Alby-sur-Chéran", +"alcalino-terreuse", +"alcalino-terreuses", +"alcalino-terreux", +"Alçay-Alçabéhéty-Sunharette", +"alcoolo-dépendance", +"alcoolo-dépendances", +"alcool-phénol", +"alcools-phénols", +"Al-Dour", +"Aldridge-Brownhills", +"Alegría-Dulantzi", +"aléseuse-fraiseuse", +"aléseuses-fraiseuses", +"Alet-les-Bains", +"algéro-marocain", +"algéro-tuniso-lybien", +"algéro-tuniso-marocain", +"algo-carburant", +"algo-carburants", +"Alignan-du-Vent", +"Alise-Sainte-Reine", +"al-Kachi", +"Al-Khwarizmi", +"Allaines-Mervilliers", +"Allainville-aux-Bois", +"Allainville-en-Beauce", +"Alland'Huy", +"Alland'Huy-et-Sausseuil", +"allanto-chorion", +"allanto-chorions", +"Allas-Bocage", +"Allas-Champagne", +"Allas-les-Mines", +"Allègre-les-Fumades", +"Allemagne-en-Provence", +"Allemanche-Launay-et-Soyer", +"Allemans-du-Dropt", +"Allennes-les-Marais", +"Allerey-sur-Saône", +"aller-retour", +"aller-retours", +"allers-retours", +"Alles-sur-Dordogne", +"Allez-et-Cazeneuve", +"allez-vous-en", +"allez-y", +"Allières-et-Risset", +"Alligny-Cosne", +"Alligny-en-Morvan", +"Allondrelle-la-Malmaison", +"Allonzier-la-Caille", +"Allouville-Bellefosse", +"alloxydime-sodium", +"allume-cigare", +"allume-cigares", +"allume-feu", +"allume-feux", +"allume-gaz", +"allumette-bougie", +"allumettes-bougies", +"Almon-les-Junies", +"Almont-les-Junies", +"Alos-Sibas-Abense", +"Aloxe-Corton", +"Alpes-de-Haute-Provence", +"Alpes-Maritimes", +"alpha-amylase", +"alpha-amylases", +"alpha-conversion", +"alpha-conversions", +"alpha-test", +"alpha-tests", +"alpha-tridymite", +"alpha-tridymites", +"alpha-variscite", +"alpha-variscites", +"Alphen-Boshoven", +"Alphen-Chaam", +"Alphen-Oosterwijk", +"Alphen-sur-le-Rhin", +"al-Qaida", +"Al-Qaida", +"al-Qaïda", +"Al-Qaïda", +"Alsace-Champagne-Ardenne-Lorraine", +"Alsace-Lorraine", +"alsacien-lorrain", +"Alsbach-Hähnlein", +"Althen-des-Paluds", +"Altmark-Salzwedel", +"alto-basso", +"alto-bassos", +"aluminium-épidote", +"aluminium-épidotes", +"alumu-tesu", +"Alzey-Worms", +"Amagne-Lucquy", +"Amareins-Francheleins-Cesseins", +"Amathay-Vésigneux", +"Amayé-sur-Orne", +"Amayé-sur-Seulles", +"Ambarès-et-Lagrave", +"Amberg-Sulzbach", +"Ambérieu-en-Bugey", +"Ambérieux-en-Dombes", +"Ambillou-Château", +"Amblans-et-Velotte", +"Ambly-Fleury", +"Ambly-sur-Aisne", +"Ambly-sur-Meuse", +"ambre-gris", +"Ambrières-les-Vallées", +"ambystomes-tigres", +"ambystome-tigre", +"Amélie-les-Bains", +"Amélie-les-Bains-Palalda", +"Amel-sur-l'Etang", +"Amel-sur-l'Étang", +"Amendeuix-Oneix", +"âme-sœur", +"âmes-sœurs", +"Amfreville-la-Campagne", +"Amfreville-la-Mi-Voie", +"Amfreville-les-Champs", +"Amfreville-Saint-Amand", +"Amfreville-sous-les-Monts", +"Amfreville-sur-Iton", +"ami-ami", +"amiante-ciment", +"Amigny-Rouy", +"amino-acétique", +"amino-acide", +"amino-acides", +"Amlikon-Bissegg", +"Amont-et-Effreney", +"Amorebieta-Etxano", +"Amorots-Succos", +"amour-en-cage", +"amour-propre", +"amours-en-cage", +"amours-propres", +"ampère-heure", +"ampères-heures", +"(+)-amphétamine", +"(−)-amphétamine", +"Ampilly-les-Bordes", +"Ampilly-le-Sec", +"ampli-syntoniseur", +"amuse-bouche", +"amuse-bouches", +"amuse-gueule", +"amuse-gueules", +"analyste-programmeur", +"analystes-programmeurs", +"ananas-bois", +"anarcho-capitalisme", +"anarcho-capitalismes", +"anarcho-fasciste", +"anarcho-fascistes", +"anarcho-punk", +"anarcho-punks", +"anarcho-syndicalisme", +"anarcho-syndicalismes", +"anarcho-syndicaliste", +"anarcho-syndicalistes", +"anatomo-pathologie", +"anatomo-pathologies", +"anatomo-pathologique", +"anatomo-pathologiques", +"Ance-Féas", +"Anchenoncourt-et-Chazel", +"Ancourteville-sur-Héricourt", +"Ancretiéville-Saint-Victor", +"Ancretteville-sur-Mer", +"Anctoville-sur-Boscq", +"Ancy-Dornot", +"Ancy-le-Franc", +"Ancy-le-Libre", +"Ancy-sur-Moselle", +"Andelot-Blancheville", +"Andelot-en-Montagne", +"Andelot-Morval", +"Andernos-les-Bains", +"Andert-et-Condon", +"Andilly-en-Bassigny", +"Andorre-la-Vieille", +"Andouillé-Neuville", +"Andréen-de-l'Est", +"Andréenne-de-l'Est", +"Andréennes-de-l'Est", +"Andréens-de-l'Est", +"andrézien-bouthéonnais", +"Andrézien-Bouthéonnais", +"andrézienne-bouthéonnaise", +"Andrézienne-Bouthéonnaise", +"andréziennes-bouthéonnaises", +"Andréziennes-Bouthéonnaises", +"andréziens-bouthéonnais", +"Andréziens-Bouthéonnais", +"Andrézieux-Bouthéon", +"Anéran-Camors", +"ânes-zèbres", +"âne-zèbre", +"Angeac-Champagne", +"Angeac-Charente", +"Ange-Gardienois", +"Ange-Gardienoise", +"Angerville-Bailleul", +"Angerville-la-Campagne", +"Angerville-la-Martel", +"Angerville-l'Orcher", +"Anglards-de-Saint-Flour", +"Anglards-de-Salers", +"Anglars-Juillac", +"Anglars-Nozac", +"Anglars-Saint-Félix", +"Anglesqueville-la-Bras-Long", +"Anglesqueville-l'Esneval", +"Angles-sur-l'Anglin", +"Anglure-sous-Dun", +"Angluzelles-et-Courcelles", +"Angoustrine-Villeneuve-des-Escaldes", +"Angoville-au-Plain", +"Angoville-en-Saire", +"Angoville-sur-Ay", +"Anguilcourt-le-Sart", +"anguille-spaghetti", +"Angviller-lès-Bisping", +"Anhalt-Bitterfeld", +"animal-garou", +"animalier-soigneur", +"animaux-garous", +"Anizy-le-Château", +"Annaberg-Buchholz", +"Annay-la-Côte", +"Annay-sur-Serein", +"Anne-Charlotte", +"Annecy-le-Vieux", +"année-homme", +"année-lumière", +"années-homme", +"années-hommes", +"années-lumière", +"Anne-Laure", +"Anne-Marie", +"Anne-Sophie", +"Annesse-et-Beaulieu", +"Annet-sur-Marne", +"Anneville-Ambourville", +"Anneville-en-Saire", +"Annéville-la-Prairie", +"Anneville-sur-Mer", +"Anneville-sur-Scie", +"Annevoie-Rouillon", +"Annoisin-Chatelans", +"Annouville-Vilmesnil", +"ano-génital", +"ano-génitale", +"ano-génitales", +"ano-génitaux", +"Ansac-sur-Vienne", +"ansbach-triesdorfer", +"Anse-aux-Fraisois", +"Anse-aux-Fraisoise", +"Anse-Bertrand", +"ante-bois", +"anté-diluvien", +"anté-hypophyse", +"anté-hypophyses", +"ante-meridiem", +"ante-meridiems", +"ante-mortem", +"ante-mortems", +"antenne-relais", +"antennes-radar", +"antennes-relais", +"anté-pénultième", +"anté-pénultièmes", +"anté-prédécesseur", +"anté-prédécesseurs", +"Antey-Saint-André", +"Antezant-la-Chapelle", +"Antheuil-Portes", +"anthropo-gammamétrie", +"anthropo-gammamétries", +"anthropo-toponyme", +"anthropo-toponymes", +"anthropo-zoomorphe", +"anthropo-zoomorphes", +"Anthy-sur-Léman", +"Antichan-de-Frontignes", +"Anticostien-Minganien", +"Antigny-la-Ville", +"Antigua-et-Barbuda", +"antiguais-barbudien", +"Antiguais-Barbudien", +"antiguais-barbudiens", +"Antiguais-Barbudiens", +"antiguaise-barbudienne", +"Antiguaise-Barbudienne", +"antiguaises-barbudiennes", +"Antiguaises-Barbudiennes", +"antiguais-et-barbudien", +"Antiguais-et-Barbudien", +"antilope-chevreuil", +"Antogny-le-Tillac", +"Antoine-Labellois", +"Antonne-et-Trigonant", +"Antraigues-sur-Volane", +"Any-Martin-Rieux", +"Anzat-le-Luguet", +"Anzin-Saint-Aubin", +"Anzy-le-Duc", +"A-OF", +"Aouste-sur-Sye", +"Apenburg-Winterfeld", +"apico-alvéolaire", +"apico-dental", +"appartements-témoins", +"appartement-témoin", +"appel-contre-appel", +"appels-contre-appels", +"Appelterre-Eichem", +"Appenai-sous-Bellême", +"Appeville-Annebault", +"apprentie-sorcière", +"apprenties-sorcières", +"apprenti-sorcellerie", +"apprenti-sorcelleries", +"apprenti-sorcier", +"apprentis-sorciers", +"appui-bras", +"appuie-main", +"appuie-mains", +"appuie-tête", +"appuie-têtes", +"appui-livres", +"appui-main", +"appui-mains", +"appui-pied", +"appui-pieds", +"appui-pot", +"appui-pots", +"appuis-main", +"appuis-pot", +"appuis-tête", +"appui-tête", +"appui-têtes", +"Apremont-la-Forêt", +"Apremont-sur-Allier", +"aquae-sextien", +"Aquae-Sextien", +"aquae-sextienne", +"Aquae-Sextienne", +"aquae-sextiennes", +"Aquae-Sextiennes", +"aquae-sextiens", +"Aquae-Sextiens", +"aqua-tinta", +"aqua-toffana", +"aquila-alba", +"Aquitaine-Limousin-Poitou-Charentes", +"Arâches-la-Frasse", +"araignée-crabe", +"araignée-loup", +"araignées-crabes", +"araignées-loups", +"aralo-caspien", +"aralo-caspienne", +"Arandon-Passins", +"Arbedo-Castione", +"Arbérats-Sillègue", +"Arbigny-sous-Varennes", +"Arblade-le-Bas", +"Arblade-le-Haut", +"Arbonne-la-Forêt", +"Arbouet-Sussaute", +"arbre-à-la-fièvre", +"arbre-de-Moïse", +"arbres-de-Moïse", +"arbres-refuges", +"arcado-chypriote", +"arcado-chypriotes", +"arcado-cypriote", +"arcado-cypriotes", +"Arces-Dilo", +"Arcis-le-Ponsart", +"Arcis-sur-Aube", +"Arcizac-Adour", +"Arcizac-ez-Angles", +"Arcizans-Avant", +"Arcizans-Dessus", +"Arcy-Sainte-Restitue", +"Arcy-sur-Cure", +"Ardenay-sur-Mérize", +"ardennite-(As)", +"ardennite-(As)s", +"Ardeuil-et-Montfauxelles", +"Ardeuil-Montfauxelles", +"ardi-gasna", +"Arelaune-en-Seine", +"Arfeuille-Châtain", +"Argelès-Bagnères", +"Argelès-Gazost", +"Argelès-sur-Mer", +"Argens-Minervois", +"Argentat-sur-Dordogne", +"Argenteuil-sur-Armançon", +"Argentière-la-Bessée", +"argentite-β", +"argentite-βs", +"argent-métal", +"argento-analcime", +"argento-analcimes", +"Argenton-Château", +"Argenton-l'Eglise", +"Argenton-l'Église", +"Argenton-les-Vallées", +"Argenton-Notre-Dame", +"Argenton-sur-Creuse", +"argento-perrylite", +"argento-perrylites", +"Argentré-du-Plessis", +"Argent-sur-Sauldre", +"argilo-calcaire", +"argilo-calcaires", +"argilo-gréseuse", +"argilo-gréseuses", +"argilo-gréseux", +"argilo-loessique", +"argilo-loessiques", +"argilo-siliceuse", +"argilo-siliceuses", +"argilo-siliceux", +"arginine-méthyla", +"arginine-méthylai", +"arginine-méthylaient", +"arginine-méthylais", +"arginine-méthylait", +"arginine-méthylâmes", +"arginine-méthylant", +"arginine-méthylas", +"arginine-méthylasse", +"arginine-méthylassent", +"arginine-méthylasses", +"arginine-méthylassiez", +"arginine-méthylassions", +"arginine-méthylât", +"arginine-méthylâtes", +"arginine-méthyle", +"arginine-méthylé", +"arginine-méthylée", +"arginine-méthylées", +"arginine-méthylent", +"arginine-méthyler", +"arginine-méthylera", +"arginine-méthylerai", +"arginine-méthyleraient", +"arginine-méthylerais", +"arginine-méthylerait", +"arginine-méthyleras", +"arginine-méthylèrent", +"arginine-méthylerez", +"arginine-méthyleriez", +"arginine-méthylerions", +"arginine-méthylerons", +"arginine-méthyleront", +"arginine-méthyles", +"arginine-méthylés", +"arginine-méthylez", +"arginine-méthyliez", +"arginine-méthylions", +"arginine-méthylons", +"arginine-vasopressine", +"Argiusta-Moriccio", +"Argut-Dessous", +"Argut-Dessus", +"ariaco-dompierrois", +"Ariaco-Dompierrois", +"ariaco-dompierroise", +"Ariaco-Dompierroise", +"ariaco-dompierroises", +"Ariaco-Dompierroises", +"Aries-Espénan", +"aristo-bourgeoisie", +"aristo-bourgeoisies", +"aristotélico-thomiste", +"aristotélico-thomistes", +"arivey-lingeois", +"Arivey-Lingeois", +"arivey-lingeoise", +"Arivey-Lingeoise", +"arivey-lingeoises", +"Arivey-Lingeoises", +"Arles-sur-Tech", +"Arleux-en-Gohelle", +"armançon-martinois", +"Armançon-Martinois", +"armançon-martinoise", +"Armançon-Martinoise", +"armançon-martinoises", +"Armançon-Martinoises", +"Armbouts-Cappel", +"armbouts-cappellois", +"Armbouts-Cappellois", +"armbouts-cappelloise", +"Armbouts-Cappelloise", +"armbouts-cappelloises", +"Armbouts-Cappelloises", +"Armenonville-les-Gâtineaux", +"Armentières-en-Brie", +"Armentières-sur-Avre", +"Armentières-sur-Ourcq", +"Armous-et-Cau", +"Arnac-la-Poste", +"Arnac-Pompadour", +"Arnac-sur-Dourdou", +"Arnaud-Guilhem", +"arnaud-guilhémois", +"Arnaud-Guilhémois", +"arnaud-guilhémoise", +"Arnaud-Guilhémoise", +"arnaud-guilhémoises", +"Arnaud-Guilhémoises", +"Arnay-le-Duc", +"Arnay-sous-Vitteaux", +"Arnex-sur-Nyon", +"Arnex-sur-Orbe", +"Arnières-sur-Iton", +"Arnoncourt-sur-Apance", +"Arnouville-lès-Gonesse", +"Arnouville-lès-Mantes", +"Aroue-Ithorots-Olhaïby", +"Arpaillargues-et-Aureillac", +"Arpajon-sur-Cère", +"Arpheuilles-Saint-Priest", +"Arques-la-Bataille", +"Arquettes-en-Val", +"arrache-clou", +"arrache-clous", +"arrache-pied", +"arrache-sonde", +"Arraia-Maeztu", +"Arrancy-sur-Crusne", +"Arras-en-Lavedan", +"Arras-sur-Rhône", +"Arrast-Larrebieu", +"Arratzua-Ubarrundia", +"Arraute-Charritte", +"Arraye-et-Han", +"Arrayou-Lahitte", +"Arrens-Marsous", +"Arrentès-de-Corcieux", +"arrêt-buffet", +"arrêt-court", +"arrête-boeuf", +"arrête-bœuf", +"arrête-bœufs", +"arrêts-buffet", +"arrêts-courts", +"Arricau-Bordes", +"Arrien-en-Bethmale", +"Arrodets-ez-Angles", +"Arromanches-les-Bains", +"Arros-de-Nay", +"Arros-d'Oloron", +"arrow-root", +"Arsac-en-Velay", +"Ars-en-Ré", +"ars-laquenexois", +"Ars-Laquenexois", +"ars-laquenexoise", +"Ars-Laquenexoise", +"ars-laquenexoises", +"Ars-Laquenexoises", +"Ars-Laquenexy", +"Ars-les-Favets", +"Ars-sur-Formans", +"Ars-sur-Moselle", +"Arsure-Arsurette", +"Artaise-le-Vivier", +"Artalens-Souin", +"Artannes-sur-Indre", +"Artannes-sur-Thouet", +"artério-sclérose", +"artério-scléroses", +"Arthaz-Pont-Notre-Dame", +"Arthez-d'Armagnac", +"Arthez-d'Asson", +"Arthez-de-Béarn", +"Arthon-en-Retz", +"Artignosc-sur-Verdon", +"Artigues-près-Bordeaux", +"artisan-créateur", +"artisans-créateurs", +"Art-sur-Meurthe", +"art-thérapie", +"art-thérapies", +"Arzacq-Arraziguet", +"Arzenc-d'Apcher", +"Arzenc-de-Randon", +"Arzillières-Neuville", +"Asasp-Arros", +"Asbach-Bäumenheim", +"Asbach-Sickenberg", +"Aschères-le-Marché", +"a-sexualisa", +"a-sexualisai", +"a-sexualisaient", +"a-sexualisais", +"a-sexualisait", +"a-sexualisâmes", +"a-sexualisant", +"a-sexualisas", +"a-sexualisasse", +"a-sexualisassent", +"a-sexualisasses", +"a-sexualisassiez", +"a-sexualisassions", +"a-sexualisât", +"a-sexualisâtes", +"a-sexualise", +"a-sexualisé", +"a-sexualisée", +"a-sexualisées", +"a-sexualisent", +"a-sexualiser", +"a-sexualiser", +"a-sexualisera", +"a-sexualiserai", +"a-sexualiseraient", +"a-sexualiserais", +"a-sexualiserait", +"a-sexualiseras", +"a-sexualisèrent", +"a-sexualiserez", +"a-sexualiseriez", +"a-sexualiserions", +"a-sexualiserons", +"a-sexualiseront", +"a-sexualises", +"a-sexualisés", +"a-sexualisez", +"a-sexualisiez", +"a-sexualisions", +"a-sexualisons", +"Asnans-Beauvoisin", +"Asnières-en-Bessin", +"Asnières-en-Montagne", +"Asnières-en-Poitou", +"Asnières-la-Giraud", +"Asnières-lès-Dijon", +"Asnières-sous-Bois", +"Asnières-sur-Blour", +"Asnières-sur-Nouère", +"Asnières-sur-Oise", +"Asnières-sur-Saône", +"Asnières-sur-Seine", +"Asnières-sur-Vègre", +"Aspach-le-Bas", +"Aspach-le-Haut", +"Aspach-Michelbach", +"Aspin-Aure", +"Aspin-en-Lavedan", +"Aspres-lès-Corps", +"Aspres-sur-Buëch", +"Aspret-Sarrat", +"assa-foetida", +"Assais-les-Jumeaux", +"Assé-le-Bérenger", +"Assé-le-Boisne", +"Assé-le-Riboul", +"assemble-nuages", +"assiette-à-beurre", +"assis-debout", +"Assis-sur-Serre", +"assurance-chômage", +"assurance-chômages", +"assurance-emploi", +"assurances-chômage", +"assurances-vie", +"assurance-vie", +"assyro-chaldéen", +"Assyro-Chaldéen", +"Aste-Béon", +"Aston-Jonction", +"astronome-astrologue", +"astronomes-astrologues", +"astur-léonais", +"ataxie-télangiectasie", +"Athée-sur-Cher", +"Athesans-Etroitefontaine", +"Athesans-Étroitefontaine", +"Athies-sous-Laon", +"Athis-de-l'Orne", +"Athis-Mons", +"Athos-Aspis", +"attache-bossette", +"attache-bossettes", +"attaché-case", +"attaché-cases", +"attache-doudou", +"attache-doudous", +"attachés-cases", +"Attenrode-Wever", +"attentats-suicides", +"attentat-suicide", +"Attignat-Oncin", +"atto-ohm", +"atto-ohms", +"attrape-couillon", +"attrape-couillons", +"attrape-minette", +"attrape-minettes", +"attrape-minon", +"attrape-minons", +"attrape-mouche", +"attrape-mouches", +"attrape-nigaud", +"attrape-nigauds", +"attrape-rêves", +"attrape-tout", +"attrape-vilain", +"Aubenas-les-Alpes", +"Aubencheul-au-Bac", +"Aubencheul-aux-Bois", +"Aubepierre-Ozouer-le-Repos", +"Aubepierre-sur-Aube", +"Auberives-en-Royans", +"Auberives-sur-Varèze", +"Aubermesnil-aux-Erables", +"Aubermesnil-aux-Érables", +"Aubermesnil-Beaumais", +"Aubert-Gallionnais", +"Auberville-la-Campagne", +"Auberville-la-Manuel", +"Auberville-la-Renault", +"Aubeterre-sur-Dronne", +"aube-vigne", +"Aubie-et-Espessas", +"Aubigné-Briand", +"Aubigné-Racan", +"Aubigné-sur-Layon", +"Aubigny-au-Bac", +"Aubigny-aux-Kaisnes", +"Aubigny-en-Artois", +"Aubigny-en-Laonnois", +"Aubigny-en-Plaine", +"Aubigny-la-Ronce", +"Aubigny-les-Clouzeaux", +"Aubigny-les-Pothées", +"Aubigny-lès-Sombernon", +"Aubigny-sur-Badin", +"Aubigny-sur-Nère", +"Aubin-Saint-Vaast", +"Auboncourt-Vauzelles", +"Aubry-du-Hainaut", +"Aubry-en-Exmes", +"Aubry-le-Panthou", +"Aubusson-d'Auvergne", +"Auby-sur-Semois", +"Aucey-la-Plaine", +"Auchay-sur-Vendée", +"Auchy-au-Bois", +"Auchy-la-Montagne", +"Auchy-lès-Hesdin", +"Auchy-les-Mines", +"Auchy-lez-Orchies", +"au-deçà", +"au-dedans", +"au-dehors", +"au-delà", +"au-delàs", +"Aude-Line", +"Audenhove-Sainte-Marie", +"Audenhove-Saint-Géry", +"au-dessous", +"au-dessus", +"au-devant", +"audio-numérique", +"audio-numériques", +"audio-prothésiste", +"audio-prothésistes", +"audio-visuel", +"audio-visuelle", +"audio-visuelles", +"audio-visuels", +"Audouville-la-Hubert", +"Audun-le-Roman", +"Audun-le-Tiche", +"Auffreville-Brasseuil", +"Auffrique-et-Nogent", +"Auger-Saint-Vincent", +"Augers-en-Brie", +"Augerville-la-Rivière", +"Auge-Saint-Médard", +"Augy-sur-Aubois", +"Aujan-Mournède", +"aujourd'hui", +"Aulhat-Flat", +"Aulhat-Saint-Privat", +"aulnaie-frênaie", +"aulnaies-frênaies", +"Aulnay-aux-Planches", +"Aulnay-l'Aître", +"Aulnay-la-Rivière", +"Aulnay-sous-Bois", +"Aulnay-sur-Iton", +"Aulnay-sur-Marne", +"Aulnay-sur-Mauldre", +"Aulnois-en-Perthois", +"Aulnois-sous-Laon", +"Aulnois-sous-Vertuzey", +"Aulnois-sur-Seille", +"Aulnoye-Aymeries", +"Aulnoy-lez-Valenciennes", +"Aulnoy-sur-Aube", +"au-lof", +"auloi-jumeaux", +"Aulus-les-Bains", +"Aulx-lès-Cromary", +"Auménancourt-le-Petit", +"Aumeville-Lestre", +"Aumont-Aubrac", +"Aumont-en-Halatte", +"Aunac-sur-Charente", +"Aunay-en-Bazois", +"Aunay-les-Bois", +"Aunay-sous-Auneau", +"Aunay-sous-Crécy", +"Aunay-sur-Odon", +"Auneau-Bleury-Saint-Symphorien", +"Aunou-le-Faucon", +"Aunou-sur-Orne", +"Aurec-sur-Loire", +"Aurelle-Verlac", +"Auriac-de-Bourzac", +"Auriac-du-Périgord", +"Auriac-Lagast", +"Auriac-l'Eglise", +"Auriac-l'Église", +"Auriac-sur-Dropt", +"Auriac-sur-Vendinelle", +"Auribeau-sur-Siagne", +"auriculo-ventriculaire", +"auriculo-ventriculaires", +"Aurions-Idernes", +"aurum-musivum", +"Aussac-Vadalle", +"aussi-tost", +"aussi-tôt", +"Australie-Méridionale", +"Australie-Occidentale", +"australo-américain", +"austro-asiatique", +"austro-asiatiques", +"austro-hongrois", +"Austro-Hongrois", +"austro-hongroise", +"Austro-Hongroise", +"austro-hongroises", +"Austro-Hongroises", +"austro-occidental", +"austro-occidentale", +"austro-occidentales", +"austro-occidentaux", +"Autechaux-Roide", +"auteur-compositeur", +"auteure-compositrice", +"auteures-compositrices", +"auteurs-compositeurs", +"Autevielle-Saint-Martin-Bideren", +"Autheuil-Authouillet", +"Autheuil-en-Valois", +"Authieux-Ratiéville", +"Authon-du-Perche", +"Authon-Ebéon", +"Authon-Ébéon", +"Authon-la-Plaine", +"Autigny-la-Tour", +"Autigny-le-Grand", +"Autigny-le-Petit", +"autos-caravanes", +"autos-mitrailleuses", +"autos-scooters", +"autos-tamponnantes", +"autos-tamponneuses", +"au-tour", +"Autrecourt-et-Pourron", +"Autrécourt-sur-Aire", +"Autre-Église", +"autre-églisois", +"Autre-Églisois", +"Autre-Églisoise", +"autre-littérature", +"Autréville-Saint-Lambert", +"Autreville-sur-la-Renne", +"Autreville-sur-Moselle", +"Autrey-lès-Cerre", +"Autrey-lès-Gray", +"Autrey-le-Vay", +"Autriche-Hongrie", +"Autruy-sur-Juine", +"Autry-Issards", +"Autry-le-Châtel", +"Auvergne-Rhône-Alpes", +"Auvers-le-Hamon", +"Auvers-Saint-Georges", +"Auvers-sous-Montfaucon", +"Auvers-sur-Oise", +"Auvet-et-la-Chapelotte", +"Auvillars-sur-Saône", +"Auvillers-les-Forges", +"Auvilliers-en-Gâtinais", +"Aux-Aussat", +"Auxelles-Bas", +"Auxelles-Haut", +"Auxey-Duresses", +"Auxi-le-Château", +"Auxon-Dessous", +"Auxon-Dessus", +"Auzat-la-Combelle", +"Auzat-sur-Allier", +"Auzéville-en-Argonne", +"Auzeville-Tolosane", +"Auzouer-en-Touraine", +"Auzouville-Auberbosc", +"Auzouville-l'Esneval", +"Auzouville-sur-Ry", +"Auzouville-sur-Saâne", +"Availles-en-Châtellerault", +"Availles-Limouzine", +"Availles-sur-Chizé", +"Availles-sur-Seiche", +"Availles-Thouarsais", +"avale-tout", +"avale-tout-cru", +"avale-touts", +"Avanne-Aveney", +"avants-centres", +"avants-postes", +"Avaux-la-Ville", +"Ave-et-Auffe", +"ave-et-auffois", +"Ave-et-Auffois", +"Ave-et-Auffoise", +"Avenay-Val-d'Or", +"Avernas-le-Bauduin", +"Avernes-Saint-Gourgon", +"Avernes-sous-Exmes", +"averno-méditerranéen", +"averno-méditerranéenne", +"averno-méditerranéennes", +"averno-méditerranéens", +"Avéron-Bergelle", +"Avesnes-Chaussoy", +"Avesnes-en-Bray", +"Avesnes-en-Saosnois", +"Avesnes-en-Val", +"Avesnes-le-Comte", +"Avesnes-les-Aubert", +"Avesnes-lès-Bapaume", +"Avesnes-le-Sec", +"Avesnes-sur-Helpe", +"aveugle-né", +"aveugle-née", +"aveugles-nés", +"Avezac-Prat-Lahitte", +"A.-Vict.", +"Avignonet-Lauragais", +"Avignon-lès-Saint-Claude", +"Avillers-Sainte-Croix", +"Avilly-Saint-Léonard", +"avion-cargo", +"avions-cargos", +"Avirey-Lingey", +"avoir-du-poids", +"Avon-la-Pèze", +"Avon-les-Roches", +"Avrigney-Virey", +"Avrillé-les-Ponceaux", +"Avril-sur-Loire", +"Awala-Yalimapo", +"Ax-les-Thermes", +"axo-missien", +"Axo-Missien", +"axo-missienne", +"Axo-Missienne", +"axo-missiennes", +"Axo-Missiennes", +"axo-missiens", +"Axo-Missiens", +"Ayala-Aiara", +"ayant-cause", +"ayant-droit", +"ayants-cause", +"ayants-droit", +"Ayat-sur-Sioule", +"Aÿ-Champagne", +"aye-aye", +"Ayer's-Cliffois", +"ayes-ayes", +"Ayguatébia-Talau", +"Ayguemorte-les-Graves", +"Ayros-Arbouix", +"Ay-sur-Moselle", +"ayur-veda", +"Ayzac-Ost", +"Azannes-et-Soumazannes", +"Azanuy-Alins", +"Azat-Châtenet", +"Azat-le-Ris", +"Azat-le-Riz", +"Azay-le-Brûlé", +"Azay-le-Ferron", +"Azay-le-Rideau", +"Azay-sur-Cher", +"Azay-sur-Indre", +"Azay-sur-Thouet", +"Azilone-Ampaza", +"azinphos-éthyl", +"azinphos-méthyl", +"Azy-le-Vif", +"Azy-sur-Marne", +"B-52", +"Baaks-Sweijer", +"Baar-Ebenhausen", +"Baarle-Nassau", +"Baarle-Nassau-Grens", +"baa'thisa", +"baa'thisai", +"baa'thisaient", +"baa'thisais", +"baa'thisait", +"baa'thisâmes", +"baa'thisant", +"baa'thisas", +"baa'thisasse", +"baa'thisassent", +"baa'thisasses", +"baa'thisassiez", +"baa'thisassions", +"baa'thisât", +"baa'thisâtes", +"baa'thise", +"baa'thisé", +"baa'thisée", +"baa'thisées", +"baa'thisent", +"baa'thiser", +"baa'thisera", +"baa'thiserai", +"baa'thiseraient", +"baa'thiserais", +"baa'thiserait", +"baa'thiseras", +"baa'thisèrent", +"baa'thiserez", +"baa'thiseriez", +"baa'thiserions", +"baa'thiserons", +"baa'thiseront", +"baa'thises", +"baa'thisés", +"baa'thisez", +"baa'thisiez", +"baa'thisions", +"baa'thisons", +"b-a-ba", +"b.a.-ba", +"Babeau-Bouldoux", +"babil's", +"babine-witsuwit'en", +"baby-beef", +"baby-beefs", +"baby-boom", +"baby-boomer", +"baby-boomers", +"baby-boomeur", +"baby-boomeurs", +"baby-boomeuse", +"baby-boomeuses", +"baby-foot", +"baby-foots", +"baby-sitter", +"baby-sitters", +"baby-sitting", +"baby-sittings", +"bachat-long", +"bachat-longs", +"bachi-bouzouck", +"bachi-bouzoucks", +"bachi-bouzouk", +"bachi-bouzouks", +"Bachos-Binos", +"Bachte-Maria-Leerne", +"Bacouel-sur-Selle", +"Bacqueville-en-Caux", +"Badecon-le-Pin", +"Badefols-d'Ans", +"Badefols-de-Cadouin", +"Badefols-sur-Dordogne", +"Baden-Baden", +"Bade-Wurtemberg", +"Badménil-aux-Bois", +"Badonvilliers-Gérauvilliers", +"Baerle-Duc", +"Bagat-en-Quercy", +"Bâgé-la-Ville", +"Bâgé-le-Châtel", +"Bagnac-sur-Célé", +"Bagneaux-sur-Loing", +"Bagnères-de-Bigorre", +"Bagnères-de-Luchon", +"Bagneux-la-Fosse", +"Bagnoles-de-l'Orne", +"Bagnols-en-Forêt", +"Bagnols-les-Bains", +"Bagnols-sur-Cèze", +"Baguer-Morvan", +"Baguer-Pican", +"bahá'í", +"bahá'íe", +"bahá'íes", +"bahá'ís", +"Bahá'u'lláh", +"Bahus-Soubiran", +"Baie-Catherinois", +"Baie-Comelien", +"Baie-Comellien", +"Baie-Comien", +"Baie-Comois", +"Baie-des-Sablien", +"Baie-du-Febvre", +"Baie-Jolien", +"Baie-Mahault", +"baie-mahaultien", +"Baie-Mahaultien", +"baie-mahaultienne", +"Baie-Mahaultienne", +"baie-mahaultiennes", +"Baie-Mahaultiennes", +"baie-mahaultiens", +"Baie-Mahaultiens", +"Baie-Saint-Paulois", +"Baie-Trinitois", +"Baignes-Sainte-Radegonde", +"Baigneux-les-Juifs", +"Baigts-de-Béarn", +"Bailleau-Armenonville", +"Bailleau-le-Pin", +"Bailleau-l'Evêque", +"Bailleau-l'Évêque", +"baille-blé", +"Baillet-en-France", +"Bailleul-aux-Cornailles", +"Bailleul-la-Vallée", +"Bailleul-le-Soc", +"Bailleul-lès-Pernes", +"Bailleul-Neuville", +"Bailleul-Sir-Berthoult", +"Bailleul-sur-Thérain", +"Bailly-aux-Forges", +"Bailly-Carrois", +"Bailly-en-Rivière", +"Bailly-le-Franc", +"Bailly-Romainvilliers", +"Bain-de-Bretagne", +"bain-douche", +"bain-marie", +"bains-douches", +"Bains-les-Bains", +"bains-marie", +"Bains-sur-Oust", +"Bainville-aux-Miroirs", +"Bainville-aux-Saules", +"Bainville-sur-Madon", +"Bairon-le-Mont-Dieu", +"Bairon-Mont-Dieu", +"baise-en-ville", +"baise-main", +"Baisy-Thy", +"Bakkum-Noord", +"Balagny-sur-Thérain", +"Balaguier-d'Olt", +"Balaguier-sur-Rance", +"balai-brosse", +"balais-brosses", +"Balaives-et-Butz", +"Balaruc-les-Bains", +"Balaruc-le-Vieux", +"Bâle-Campagne", +"baleine-pilote", +"baleines-pilotes", +"Balesmes-sur-Marne", +"Bâle-Ville", +"Baliracq-Maumusson", +"Ballancourt-sur-Essonne", +"Ballan-Miré", +"balle-molle", +"balle-queue", +"Balleroy-sur-Drôme", +"ballon-panier", +"Ballon-Saint-Mars", +"ballon-sonde", +"ballons-panier", +"ballons-paniers", +"ballons-sondes", +"ballon-volant", +"Ballrechten-Dottingen", +"ball-trap", +"bal-musette", +"Balnot-la-Grange", +"Balnot-sur-Laignes", +"bals-musette", +"bana-bana", +"bana-banas", +"banana-split", +"banana-splits", +"Banassac-Canilhac", +"bande-annonce", +"Ban-de-Laveline", +"ban-de-lavelinois", +"Ban-de-Lavelinois", +"ban-de-lavelinoise", +"Ban-de-Lavelinoise", +"ban-de-lavelinoises", +"Ban-de-Lavelinoises", +"bandes-annonces", +"Ban-de-Sapt", +"bande-son", +"bank-note", +"bank-notes", +"Banneville-la-Campagne", +"Banneville-sur-Ajon", +"Bannost-Villegagnon", +"Banogne-Recouvrance", +"Ban-Saint-Martin", +"ban-saint-martinois", +"Ban-Saint-Martinois", +"ban-saint-martinoise", +"Ban-Saint-Martinoise", +"ban-saint-martinoises", +"Ban-Saint-Martinoises", +"Ban-sur-Meurthe", +"Ban-sur-Meurthe-Clefcy", +"Banyuls-dels-Aspres", +"Banyuls-sur-Mer", +"Baons-le-Comte", +"Bapeaume-lès-Rouen", +"Barbazan-Debat", +"Barbazan-Dessus", +"barbe-à-papa", +"Barbe-Bleue", +"barbe-de-bouc", +"barbe-de-capucin", +"barbe-de-chèvre", +"barbe-de-Jupiter", +"Barberey-Saint-Sulpice", +"barbes-de-capucin", +"barbes-de-Jupiter", +"Barbey-Seroux", +"Barbezieux-Saint-Hilaire", +"Barbirey-sur-Ouche", +"Barbonne-Fayel", +"Barcelonne-du-Gers", +"Bard-le-Régulier", +"Bard-lès-Epoisses", +"Bard-lès-Époisses", +"Bard-lès-Pesmes", +"Barenton-Bugny", +"Barenton-Cel", +"Barenton-sur-Serre", +"Barésia-sur-l'Ain", +"Bar-et-Harricourt", +"Barger-Compascuum", +"Barger-Erfscheidenveen", +"Barger-Oosterveen", +"Barger-Oosterveld", +"Bargfeld-Stegen", +"Barisey-au-Plain", +"Barisey-la-Côte", +"Barisis-aux-Bois", +"barium-adulaire", +"barium-adulaires", +"barium-anorthite", +"barium-anorthites", +"barium-phlogopite", +"barium-phlogopites", +"barium-sanidine", +"barium-sanidines", +"Bar-le-Duc", +"Bar-lès-Buzancy", +"Barletta-Andria-Trani", +"Barneville-Carteret", +"Barneville-la-Bertran", +"Barneville-sur-Seine", +"Baron-sur-Odon", +"Barou-en-Auge", +"Barrais-Bussolles", +"Barraute-Camu", +"barré-bandé", +"Barre-des-Cévennes", +"barrés-bandés", +"Barret-de-Lioure", +"Barret-le-Bas", +"Barret-le-Haut", +"Barret-sur-Méouge", +"Barriac-les-Bosquets", +"Barrow-in-Furness", +"Barry-d'Islemade", +"bars-tabacs", +"Bar-sur-Aube", +"Bar-sur-Seine", +"bar-tabac", +"bar-tabacs", +"Bartenshagen-Parkentin", +"Barvaux-Condroz", +"Barville-en-Gâtinais", +"baryton-basse", +"barytons-basses", +"baryum-orthose", +"baryum-orthoses", +"Barzy-en-Thiérache", +"Barzy-sur-Marne", +"Basadingen-Schlattingen", +"basco-béarnaise", +"basco-navarrais", +"base-ball", +"base-balls", +"base-jump", +"base-jumpeur", +"base-jumpeurs", +"base-jumpeuse", +"base-jumpeuses", +"basi-sphénoïdal", +"basket-ball", +"basket-balls", +"Baslieux-lès-Fismes", +"Baslieux-sous-Châtillon", +"baso-cellulaire", +"baso-cellulaires", +"basque-uruguayen", +"basset-hound", +"bassi-colica", +"bassi-colicas", +"Bassignac-le-Bas", +"Bassignac-le-Haut", +"Bassillac-et-Auberoche", +"Bassillon-Vauzé", +"bassins-versants", +"bassin-versant", +"Bassoles-Aulers", +"bat-à-beurre", +"bat-à-bourre", +"bateau-bus", +"bateau-citerne", +"bateau-dragon", +"bateau-école", +"bateau-feu", +"bateau-lavoir", +"bateau-logement", +"bateau-mère", +"bateau-mouche", +"bateau-phare", +"bateau-usine", +"bateau-vanne", +"bateaux-bus", +"bateaux-citernes", +"bateaux-dragons", +"bateaux-écoles", +"bateaux-feu", +"bateaux-lavoirs", +"bateaux-logements", +"bateaux-mères", +"bateaux-mouches", +"bateaux-phare", +"bateaux-usines", +"bateaux-vanne", +"bat-flanc", +"bat-flancs", +"Bathelémont-lès-Bauzemont", +"Batignolles-Monceaux", +"Batilly-en-Gâtinais", +"Batilly-en-Puisaye", +"bat-l'eau", +"bats-à-beurre", +"bats-à-bourre", +"bats-l'eau", +"battant-l'oeil", +"battant-l'œil", +"battants-l'oeil", +"battants-l'œil", +"batte-lessive", +"batte-mare", +"Battenans-les-Mines", +"Battenans-Varin", +"batte-plate", +"batte-queue", +"battes-plates", +"Batz-sur-Mer", +"Baudinard-sur-Verdon", +"Baugé-en-Anjou", +"Baulme-la-Roche", +"Baulne-en-Brie", +"Baume-les-Dames", +"Baume-les-Messieurs", +"baussery-montain", +"Baussery-Montain", +"baussery-montaine", +"Baussery-Montaine", +"baussery-montaines", +"Baussery-Montaines", +"baussery-montains", +"Baussery-Montains", +"Bayard-sur-Marne", +"Bayenghem-lès-Eperlecques", +"Bayenghem-lès-Éperlecques", +"Bayenghem-lès-Seninghem", +"Bayerfeld-Steckweiler", +"bay-ice", +"bay-ices", +"Bayon-sur-Gironde", +"Bayonville-sur-Mad", +"Bay-sur-Aube", +"Bazeilles-sur-Othain", +"Bazincourt-sur-Epte", +"Bazincourt-sur-Saulx", +"Bazoches-au-Houlme", +"Bazoches-en-Dunois", +"Bazoches-lès-Bray", +"Bazoches-les-Gallerandes", +"Bazoches-les-Hautes", +"Bazoches-sur-Guyonne", +"Bazoches-sur-Hoëne", +"Bazoches-sur-le-Betz", +"Bazoches-sur-Vesles", +"Bazoges-en-Paillers", +"Bazoges-en-Pareds", +"Bazoilles-et-Ménil", +"Bazoilles-sur-Meuse", +"Bazouges-la-Pérouse", +"Bazouges-sous-Hédé", +"Bazouges-sur-le-Loir", +"Bazus-Aure", +"Bazus-Neste", +"beach-volley", +"beach-volleys", +"beagle-harrier", +"Béard-Géovreissiat", +"Beaubec-la-Rosière", +"Beaucamps-le-Jeune", +"Beaucamps-le-Vieux", +"Beaucamps-Ligny", +"Beauchamps-sur-Huillard", +"beau-chasseur", +"Beauchery-Saint-Martin", +"Beaucourt-en-Santerre", +"Beaucourt-sur-l'Ancre", +"Beaucourt-sur-l'Hallue", +"beau-dabe", +"Beauficel-en-Lyons", +"beau-fils", +"Beaufort-Blavincourt", +"Beaufort-en-Anjou", +"Beaufort-en-Argonne", +"Beaufort-en-Santerre", +"Beaufort-en-Vallée", +"Beaufort-sur-Gervanne", +"Beaufour-Druval", +"beau-frais", +"beau-frère", +"Beaugies-sous-Bois", +"Beaujeu-Saint-Vallier-Pierrejux-et-Quitteur", +"beaujolais-villages", +"Beaulieu-en-Argonne", +"Beaulieu-les-Fontaines", +"Beaulieu-lès-Loches", +"Beaulieu-sous-Bressuire", +"Beaulieu-sous-la-Roche", +"Beaulieu-sous-Parthenay", +"Beaulieu-sur-Dordogne", +"Beaulieu-sur-Layon", +"Beaulieu-sur-Loire", +"Beaulieu-sur-Mer", +"Beaulieu-sur-Oudon", +"Beaulieu-sur-Sonnette", +"beau-livre", +"Beaulne-et-Chivy", +"Beaumerie-Saint-Martin", +"Beaumes-de-Venise", +"Beaumetz-lès-Aire", +"Beaumetz-lès-Cambrai", +"Beaumetz-lès-Loges", +"Beaumont-de-Lomagne", +"Beaumont-de-Pertuis", +"Beaumont-du-Gâtinais", +"Beaumont-du-Lac", +"Beaumont-du-Périgord", +"Beaumont-du-Ventoux", +"Beaumont-en-Argonne", +"Beaumont-en-Auge", +"Beaumont-en-Beine", +"Beaumont-en-Cambrésis", +"Beaumont-en-Diois", +"Beaumont-en-Verdunois", +"Beaumont-en-Véron", +"Beaumont-Hague", +"Beaumont-Hamel", +"Beaumont-la-Chartre", +"Beaumont-la-Ferrière", +"Beaumont-la-Ronce", +"Beaumont-le-Hareng", +"Beaumont-le-Roger", +"Beaumont-les-Autels", +"Beaumont-les-Nonains", +"Beaumont-lès-Randan", +"Beaumont-lès-Valence", +"Beaumont-Louestault", +"Beaumont-Monteux", +"Beaumont-Pied-de-Bœuf", +"Beaumont-Saint-Cyr", +"Beaumont-Sardolles", +"Beaumont-sur-Dême", +"Beaumont-sur-Grosne", +"Beaumont-sur-Lèze", +"Beaumont-sur-Oise", +"Beaumont-sur-Sarthe", +"Beaumont-sur-Vesle", +"Beaumont-sur-Vingeanne", +"Beaumont-Village", +"Beaumotte-Aubertans", +"Beaumotte-lès-Montbozon-et-Aubertans", +"Beaumotte-lès-Pin", +"Beaune-d'Allier", +"Beaune-la-Rolande", +"Beaune-les-Mines", +"Beaune-sur-Arzon", +"beau-papa", +"beau-parent", +"beau-partir", +"beau-père", +"beau-petit-fils", +"Beaupréau-en-Mauges", +"Beaurains-lès-Noyon", +"Beauregard-Baret", +"Beauregard-de-Terrasson", +"Beauregard-et-Bassac", +"Beauregard-l'Evêque", +"Beauregard-l'Évêque", +"Beauregard-Vendon", +"Beaurepaire-en-Bresse", +"Beaurepaire-sur-Sambre", +"beau-revoir", +"beau-semblant", +"Beaussais-sur-Mer", +"Beaussais-Vitré", +"Beauvais-sur-Matha", +"Beauvais-sur-Tescou", +"Beauval-en-Caux", +"Beauvoir-de-Marc", +"Beauvoir-en-Lyons", +"Beauvoir-en-Royans", +"Beauvoir-Rivière", +"Beauvoir-sur-Mer", +"Beauvoir-sur-Niort", +"Beauvoir-sur-Sarce", +"Beauvoir-Wavans", +"Beauvois-en-Cambrésis", +"Beauvois-en-Vermandois", +"beaux-arts", +"Beaux-Arts", +"beaux-dabes", +"beaux-enfants", +"beaux-esprits", +"beaux-fils", +"beaux-frères", +"beaux-oncles", +"beaux-parents", +"beaux-pères", +"beaux-petits-fils", +"Beaux-Rivageois", +"bébé-bulle", +"bébé-bus", +"bébé-éprouvette", +"bébé-médicament", +"bébé-nageur", +"bébés-bulles", +"bébés-éprouvette", +"bébés-médicament", +"bébés-nageurs", +"bêche-de-mer", +"bêches-de-mer", +"Bech-Kleinmacher", +"Bécon-les-Granits", +"Bécordel-Bécourt", +"becque-cornu", +"becques-cornus", +"becs-cornus", +"becs-courbes", +"becs-d'âne", +"becs-d'argent", +"becs-de-cane", +"becs-de-canon", +"becs-de-cigogne", +"becs-de-cire", +"becs-de-corbeau", +"becs-de-crosse", +"becs-de-cygne", +"becs-de-faucon", +"becs-de-grue", +"becs-de-hache", +"becs-de-héron", +"becs-de-lézard", +"becs-de-lièvre", +"becs-de-perroquet", +"becs-de-pigeon", +"becs-de-vautour", +"becs-d'oie", +"becs-durs", +"becs-en-ciseaux", +"becs-en-fourreau", +"becs-ouverts", +"becs-plats", +"becs-pointus", +"becs-ronds", +"becs-tranchants", +"Bedburg-Hau", +"Bédeilhac-et-Aynat", +"bedlington-terrier", +"Bédouès-Cocurès", +"Beemte-Broekland", +"Beffu-et-le-Morthomme", +"bégler-beg", +"béglier-beg", +"Bégrolles-en-Mauges", +"behā'ī", +"Béhasque-Lapiste", +"Behren-lès-Forbach", +"Behren-Lübchin", +"Beiersdorf-Freudenberg", +"Beine-Nauroy", +"Beintza-Labaien", +"Beire-le-Châtel", +"Beire-le-Fort", +"bekkō-amé", +"Belan-sur-Ource", +"Belbèze-de-Lauragais", +"Belbèze-en-Comminges", +"Belbèze-en-Lomagne", +"Belbèze-Escoulis", +"Belcastel-et-Buc", +"bel-enfant", +"bel-esprit", +"Bélesta-en-Lauragais", +"bel-étage", +"Belforêt-en-Perche", +"Belfort-du-Quercy", +"Belfort-sur-Rebenty", +"belgo-hollandais", +"Belhomert-Guéhouville", +"Belin-Béliet", +"Belle-Ansois", +"belle-à-voir", +"Bellecombe-en-Bauges", +"Bellecombe-Tarendol", +"belle-dabe", +"belle-dame", +"belle-de-jour", +"belle-de-nuit", +"belle-doche", +"belle-d'onze-heures", +"belle-d'un-jour", +"Belle-Eglise", +"Belle-Église", +"Belle-et-Houllefort", +"belle-étoile", +"belle-famille", +"belle-fille", +"belle-fleur", +"Bellegarde-du-Razès", +"Bellegarde-en-Diois", +"Bellegarde-en-Forez", +"Bellegarde-en-Marche", +"Bellegarde-Marsal", +"Bellegarde-Poussieu", +"Bellegarde-Sainte-Marie", +"Bellegarde-sur-Valserine", +"Belle-Île-en-Mer", +"Belle-Isle-en-Mer", +"Belle-Isle-en-Terre", +"belle-maman", +"belle-mère", +"Bellenod-sous-Origny", +"Bellenod-sur-Seine", +"Bellenot-sous-Pouilly", +"belle-petite-fille", +"belle-pucelle", +"Bellerive-sur-Allier", +"belles-dabes", +"belles-dames", +"Belles-Dames", +"belles-de-jour", +"belles-de-nuit", +"belles-doches", +"belles-d'un-jour", +"belles-étoiles", +"belles-familles", +"belles-filles", +"belles-fleurs", +"Belles-Forêts", +"belles-lettres", +"belles-mères", +"belle-soeur", +"belle-sœur", +"belles-pucelles", +"belles-soeurs", +"belles-sœurs", +"belles-tantes", +"belle-tante", +"Bellevaux-Ligneuville", +"Bellevigne-en-Layon", +"Belleville-en-Caux", +"Belleville-et-Châtillon-sur-Bar", +"Belleville-sur-Bar", +"Belleville-sur-Loire", +"Belleville-sur-Mer", +"Belleville-sur-Meuse", +"Belleville-sur-Vie", +"Bellevue-la-Montagne", +"Belloc-Saint-Clamens", +"Bellou-en-Houlme", +"Bellou-le-Trichard", +"Bellou-sur-Huisne", +"Belloy-en-France", +"Belloy-en-Santerre", +"Belloy-Saint-Léonard", +"Belloy-sur-Somme", +"Belmont-Bretenoux", +"Belmont-d'Azergues", +"Belmont-de-la-Loire", +"Belmont-lès-Darney", +"Belmont-Luthézieu", +"Belmont-Sainte-Foi", +"Belmont-sur-Buttant", +"Belmont-sur-Lausanne", +"Belmont-sur-Rance", +"Belmont-sur-Vair", +"Belmont-sur-Yverdon", +"Belmont-Tramonet", +"bel-oncle", +"bel-outil", +"Belrupt-en-Verdunois", +"bels-outils", +"Belt-Schutsloot", +"Belval-Bois-des-Dames", +"Belval-en-Argonne", +"Belval-et-Sury", +"Belval-sous-Châtillon", +"Belvédère-Campomoro", +"Belvès-de-Castillon", +"Belvèze-du-Razès", +"Belvianes-et-Cavirac", +"Ben-Ahin", +"ben-ahinois", +"Ben-Ahinois", +"Ben-Ahinoise", +"Beneden-Haastrecht", +"Beneden-Leeuwen", +"Benerville-sur-Mer", +"Bénesse-lès-Dax", +"Bénesse-Maremne", +"Bénévent-et-Charbillac", +"Bénévent-l'Abbaye", +"Beney-en-Woëvre", +"Bengy-sur-Craon", +"Beni-Khiran", +"Béning-lès-Saint-Avold", +"béni-non-non", +"béni-oui-oui", +"Bénivay-Ollon", +"benne-kangourou", +"Benque-Dessous-et-Dessus", +"Benqué-Molère", +"bensulfuron-méthyle", +"Bentayou-Sérée", +"bény-bocain", +"Bény-Bocain", +"bény-bocaine", +"Bény-Bocaine", +"bény-bocaines", +"Bény-Bocaines", +"bény-bocains", +"Bény-Bocains", +"Bény-sur-Mer", +"benzoylprop-éthyl", +"bêque-bois", +"bèque-fleur", +"bèque-fleurs", +"Berbérust-Lias", +"Bercenay-en-Othe", +"Bercenay-le-Hayer", +"Berchem-Sainte-Agathe", +"Berchem-Saint-Laurent", +"Berchères-les-Pierres", +"Berchères-Saint-Germain", +"Berchères-sur-Vesgre", +"Berd'huis", +"berd'huisien", +"Berd'huisien", +"berd'huisienne", +"Berd'huisienne", +"berd'huisiennes", +"Berd'huisiennes", +"berd'huisiens", +"Berd'huisiens", +"Berendrecht-Zandvliet-Lillo", +"Bérengeville-la-Campagne", +"Bergères-lès-Vertus", +"Bergères-sous-Montmirail", +"Berg-op-Zoom", +"Bergouey-Viellenave", +"Berg-sur-Moselle", +"Bergues-sur-Sambre", +"Bérig-Vintrange", +"Berkel-Enschot", +"Berkholz-Meyenburg", +"Berlencourt-le-Cauroy", +"Berles-au-Bois", +"Berles-Monchel", +"Berlin-Est", +"Berlin-Ouest", +"Bernac-Debat", +"Bernac-Dessus", +"Bernadets-Debat", +"Bernadets-Dessus", +"bernard-l'ermite", +"bernard-l'hermite", +"Bernay-en-Champagne", +"Bernay-en-Ponthieu", +"Bernay-Saint-Martin", +"Bernay-Vilbert", +"Berne-Mittelland", +"Bernes-sur-Oise", +"Berneuil-en-Bray", +"Berneuil-sur-Aisne", +"Berneval-le-Grand", +"bernico-montois", +"Bernico-Montois", +"bernico-montoise", +"Bernico-Montoise", +"bernico-montoises", +"Bernico-Montoises", +"Bernières-d'Ailly", +"Bernières-le-Patry", +"Bernières-sur-Mer", +"Bernières-sur-Seine", +"Bernkastel-Kues", +"Bernkastel-Wittlich", +"Bernos-Beaulac", +"Bernuy-Zapardiel", +"Berny-en-Santerre", +"Berny-Rivière", +"Berny-sur-Noye", +"Bérou-la-Mulotière", +"Berre-des-Alpes", +"Berre-les-Alpes", +"Berre-l'Etang", +"Berre-l'Étang", +"Berrias-et-Casteljau", +"Berrogain-Laruns", +"Berry-au-Bac", +"Berry-Bouy", +"Bersac-sur-Rivalier", +"Bersillies-l'Abbaye", +"Bertaucourt-Epourdon", +"Berteaucourt-les-Dames", +"Berteaucourt-lès-Thennes", +"Bertreville-Saint-Ouen", +"Bertric-Burée", +"Bertsdorf-Hörnitz", +"Berville-en-Roumois", +"Berville-la-Campagne", +"Berviller-en-Moselle", +"Berville-sur-Mer", +"Berville-sur-Seine", +"Berzé-la-Ville", +"Berzé-le-Châtel", +"Berzy-le-Sec", +"Besny-et-Loizy", +"Bessais-le-Fromental", +"Bessay-sur-Allier", +"Bessède-de-Sault", +"Besse-et-Saint-Anastaise", +"Bessé-sur-Braye", +"Besse-sur-Issole", +"Bessey-en-Chaume", +"Bessey-la-Cour", +"Bessey-lès-Cîteaux", +"Bessines-sur-Gartempe", +"Bessy-sur-Cure", +"béta-cyfluthrine", +"béta-gal", +"Betbezer-d'Armagnac", +"Betcave-Aguin", +"Béthancourt-en-Valois", +"Béthancourt-en-Vaux", +"Béthemont-la-Forêt", +"Béthencourt-sur-Mer", +"Béthencourt-sur-Somme", +"Béthisy-Saint-Martin", +"Béthisy-Saint-Pierre", +"Beton-Bazoches", +"Betoncourt-lès-Brotte", +"Betoncourt-les-Ménétriers", +"Betoncourt-Saint-Pancras", +"Betoncourt-sur-Mance", +"Betpouey-Barèges", +"Bettancourt-la-Ferrée", +"Bettancourt-la-Longue", +"Bettange-sur-Mess", +"Bettegney-Saint-Brice", +"bette-marine", +"Bettencourt-Rivière", +"Bettencourt-Saint-Ouen", +"bettes-marines", +"Betting-lès-Saint-Avold", +"Betton-Bettonet", +"Bettoncourt-le-Haut", +"Betz-le-Château", +"Beulotte-Saint-Laurent", +"beun'aise", +"Beura-Cardezza", +"Beurey-Bauguay", +"Beurey-sur-Saulx", +"beurre-frais", +"Beuvron-en-Auge", +"Beuvry-la-Forêt", +"Beuvry-Nord", +"Beuzec-Cap-Sizun", +"Beuzec-Conq", +"Beuzeville-au-Plain", +"Beuzeville-la-Bastille", +"Beuzeville-la-Grenier", +"Beuzeville-la-Guérard", +"Beveland-Nord", +"Béville-le-Comte", +"Bexhill-on-Sea", +"Beychac-et-Caillau", +"Beynac-et-Cazenac", +"Beyne-Heusay", +"Beyrède-Jumet", +"Beyren-lès-Sierck", +"Beyrie-en-Béarn", +"Beyrie-sur-Joyeuse", +"Bey-sur-Seille", +"Bezange-la-Grande", +"Bezange-la-Petite", +"Bézaudun-les-Alpes", +"Bézaudun-sur-Bîne", +"Bez-et-Esparon", +"Bezins-Garraux", +"Bézues-Bajon", +"Bézu-la-Forêt", +"Bézu-le-Guéry", +"Bézu-Saint-Eloi", +"Bézu-Saint-Éloi", +"Bézu-Saint-Germain", +"B-frame", +"Biache-Saint-Vaast", +"Bians-les-Usiers", +"Biars-sur-Cère", +"biche-cochon", +"Bichelsee-Balterswil", +"Bidania-Goiatz", +"Bief-des-Maisons", +"Bief-du-Fourg", +"Biefvillers-lès-Bapaume", +"Biel-Benken", +"Biencourt-sur-Orge", +"Bienne-lez-Happart", +"biens-fonds", +"Bienville-la-Petite", +"Bienvillers-au-Bois", +"bière-pong", +"Bierre-lès-Semur", +"Bierry-les-Belles-Fontaines", +"Biesme-sous-Thuin", +"Biest-Houtakker", +"Bietigheim-Bissingen", +"Biéville-Beuville", +"Biéville-en-Auge", +"Biéville-Quétiéville", +"Biéville-sur-Orne", +"Big-bang", +"big-endian", +"Bignicourt-sur-Marne", +"Bignicourt-sur-Saulx", +"bil-ka", +"bil-kas", +"Billens-Hennens", +"Billigheim-Ingenheim", +"Billy-Berclau", +"Billy-Chevannes", +"Billy-le-Grand", +"Billy-lès-Chanceaux", +"Billy-Montigny", +"Billy-sous-les-Côtes", +"Billy-sous-Mangiennes", +"Billy-sur-Aisne", +"Billy-sur-Oisy", +"Billy-sur-Ourcq", +"bin-bin", +"bin-bins", +"binge-watcha", +"binge-watchai", +"binge-watchaient", +"binge-watchais", +"binge-watchait", +"binge-watchâmes", +"binge-watchant", +"binge-watchas", +"binge-watchasse", +"binge-watchassent", +"binge-watchasses", +"binge-watchassiez", +"binge-watchassions", +"binge-watchât", +"binge-watchâtes", +"binge-watche", +"binge-watché", +"binge-watchée", +"binge-watchées", +"binge-watchent", +"binge-watcher", +"binge-watchera", +"binge-watcherai", +"binge-watcheraient", +"binge-watcherais", +"binge-watcherait", +"binge-watcheras", +"binge-watchèrent", +"binge-watcherez", +"binge-watcheriez", +"binge-watcherions", +"binge-watcherons", +"binge-watcheront", +"binge-watches", +"binge-watchés", +"binge-watchez", +"binge-watchiez", +"binge-watchions", +"binge-watchons", +"Binic-Étables-sur-Mer", +"Binnen-Moerdijk", +"bin's", +"Binson-et-Orquigny", +"Bioley-Magnoux", +"Bioley-Orjulaz", +"Bionville-sur-Nied", +"Birac-sur-Trec", +"Birken-Honigsessen", +"Bischtroff-sur-Sarre", +"Bissao-Guinéen", +"bissau-guinéen", +"Bissau-Guinéen", +"Bissau-Guinéenne", +"Bissau-Guinéennes", +"Bissey-la-Côte", +"Bissey-la-Pierre", +"Bissey-sous-Cruchaud", +"Bissy-la-Mâconnaise", +"Bissy-sous-Uxelles", +"Bissy-sur-Fley", +"Bisten-en-Lorraine", +"bistro-brasserie", +"bistro-brasseries", +"bit-el-mal", +"Bithaine-et-le-Val", +"Bitschwiller-lès-Thann", +"Bitterfeld-Wolfen", +"bitter-pit", +"Biurrun-Olcoz", +"Biville-la-Baignarde", +"Biville-la-Rivière", +"Biville-sur-Mer", +"Bize-Minervois", +"bla-bla", +"bla-bla-bla", +"black-bass", +"black-blanc-beur", +"black-bottom", +"black-bottoms", +"Black-Lakien", +"black-out", +"black-outa", +"black-outai", +"black-outaient", +"black-outais", +"black-outait", +"black-outâmes", +"black-outant", +"black-outas", +"black-outasse", +"black-outassent", +"black-outasses", +"black-outassiez", +"black-outassions", +"black-outât", +"black-outâtes", +"black-oute", +"black-outé", +"black-outée", +"black-outées", +"black-outent", +"black-outer", +"black-outera", +"black-outerai", +"black-outeraient", +"black-outerais", +"black-outerait", +"black-outeras", +"black-outèrent", +"black-outerez", +"black-outeriez", +"black-outerions", +"black-outerons", +"black-outeront", +"black-outes", +"black-outés", +"black-outez", +"black-outiez", +"black-outions", +"black-outons", +"black-outs", +"black-rot", +"Blagny-sur-Vingeanne", +"Blaincourt-lès-Précy", +"Blaincourt-sur-Aube", +"Blainville-Crevon", +"Blainville-sur-l'Eau", +"Blainville-sur-Mer", +"Blainville-sur-Orne", +"Blaise-sous-Arzillières", +"Blaise-sous-Hauteville", +"Blaison-Gohier", +"Blaison-Saint-Sulpice", +"Blaisy-Bas", +"Blaisy-Haut", +"blanche-coiffe", +"Blanche-Eglise", +"Blanche-Église", +"Blanchefosse-et-Bay", +"Blanche-Neige", +"blanche-queue", +"blanche-raie", +"blanches-coiffes", +"blancs-becs", +"blancs-bocs", +"blancs-bois", +"blancs-de-baleine", +"blancs-d'Espagne", +"blancs-en-bourre", +"blancs-estocs", +"blancs-étocs", +"blancs-mangers", +"blancs-manteaux", +"blancs-raisins", +"blancs-seings", +"blancs-signés", +"Blandouet-Saint-Jean", +"Blangerval-Blangermont", +"Blangy-le-Château", +"Blangy-sous-Poix", +"Blangy-sur-Bresle", +"Blangy-sur-Ternoise", +"Blangy-Tronville", +"Blankenfelde-Mahlow", +"Blanquefort-sur-Briolance", +"Blanzac-lès-Matha", +"Blanzac-Porcheresse", +"Blanzaguet-Saint-Cybard", +"Blanzay-sur-Boutonne", +"Blanzy-la-Salonnaise", +"Blanzy-lès-Fismes", +"Blaydon-on-Tyne", +"Blaye-et-Sainte-Luce", +"Blaye-les-Mines", +"Bleigny-le-Carreau", +"Blénod-lès-Pont-à-Mousson", +"Blénod-lès-Toul", +"bleu-bite", +"bleu-manteau", +"bleu-merle", +"Bleury-Saint-Symphorien", +"bleus-manteaux", +"Bleyen-Genschmar", +"Blies-Ebersing", +"Blies-Ébersing", +"blies-ebersingeois", +"Blies-Ebersingeois", +"blies-ébersingeois", +"Blies-Ébersingeois", +"blies-ebersingeoise", +"Blies-Ebersingeoise", +"blies-ébersingeoise", +"Blies-Ébersingeoise", +"blies-ebersingeoises", +"Blies-Ebersingeoises", +"blies-ébersingeoises", +"Blies-Ébersingeoises", +"Blies-Guersviller", +"Bligny-en-Othe", +"Bligny-lès-Beaune", +"Bligny-le-Sec", +"Bligny-sous-Beaune", +"Bligny-sur-Ouche", +"bling-bling", +"bling-blings", +"Blis-et-Born", +"blis-et-bornois", +"Blis-et-Bornois", +"blis-et-bornoise", +"Blis-et-Bornoise", +"blis-et-bornoises", +"Blis-et-Bornoises", +"bloc-cylindres", +"bloc-eau", +"bloc-film", +"bloc-films", +"block-système", +"bloc-moteur", +"bloc-moteurs", +"bloc-note", +"bloc-notes", +"blocs-eau", +"blocs-films", +"blocs-notes", +"Blois-sur-Seille", +"Blonville-sur-Mer", +"Blosseville-Bonsecours", +"Blot-l'Eglise", +"Blot-l'Église", +"Blousson-Sérian", +"blue-jean", +"blue-jeans", +"blue-lias", +"blu-ray", +"boat-people", +"bobby-soxer", +"bobby-soxers", +"Bobenheim-Roxheim", +"Bobo-Dioulasso", +"Bodeghem-Saint-Martin", +"Bodegraven-Reeuwijk", +"Bodenrode-Westhausen", +"Bodman-Ludwigshafen", +"body-building", +"Boeil-Bezing", +"Boën-sur-Lignon", +"Boëssé-le-Sec", +"boeuf-carotte", +"bœuf-carotte", +"bœuf-carottes", +"bœuf-garou", +"Bœurs-en-Othe", +"Boevange-sur-Attert", +"Bogis-Bossey", +"Bogny-lès-Murtin", +"Bogny-sur-Meuse", +"Bohain-en-Vermandois", +"Bohas-Meyriat-Rignat", +"Böhl-Iggelheim", +"Boigny-sur-Bionne", +"Boinville-en-Mantois", +"Boinville-en-Woëvre", +"Boinville-le-Gaillard", +"Boiry-Becquerelle", +"Boiry-Notre-Dame", +"Boiry-Sainte-Rictrude", +"Boiry-Saint-Martin", +"Boisleux-au-Mont", +"Boisleux-Saint-Marc", +"Boissei-la-Lande", +"Boisse-Penchot", +"Boisset-et-Gaujac", +"Boisset-lès-Montrond", +"Boisset-les-Prévanches", +"Boisset-Saint-Priest", +"Boissey-le-Châtel", +"Boissise-la-Bertrand", +"Boissise-le-Roi", +"Boissy-aux-Cailles", +"Boissy-en-Drouais", +"Boissy-Fresnoy", +"Boissy-l'Aillerie", +"Boissy-Lamberville", +"Boissy-la-Rivière", +"Boissy-le-Bois", +"Boissy-le-Châtel", +"Boissy-le-Cutté", +"Boissy-le-Repos", +"Boissy-le-Sec", +"Boissy-lès-Perche", +"boissy-maugien", +"Boissy-Maugien", +"boissy-maugienne", +"boissy-maugiennes", +"boissy-maugiens", +"Boissy-Maugis", +"Boissy-Mauvoisin", +"Boissy-Saint-Léger", +"Boissy-sans-Avoir", +"Boissy-sous-Saint-Yon", +"Boissy-sur-Damville", +"Boisville-la-Saint-Père", +"boîtes-à-musique", +"boîtes-à-musiques", +"boit-sans-soif", +"Bokholt-Hanredder", +"bolivo-paraguayen", +"Bollendorf-Pont", +"bombardiers-torpilleurs", +"bombardier-torpilleur", +"Bonac-Irazein", +"bon-air", +"bon-bec", +"Bonchamp-lès-Laval", +"bon-chrétien", +"Boncourt-le-Bois", +"Boncourt-sur-Meuse", +"bon-creux", +"bon-encontrais", +"Bon-Encontrais", +"bon-encontraise", +"Bon-Encontraise", +"bon-encontraises", +"Bon-Encontraises", +"Bon-Encontre", +"bon-fieux", +"bon-fils", +"bon-henri", +"bonheur-du-jour", +"Bonlieu-sur-Roubion", +"bon-mot", +"Bonnac-la-Côte", +"bonne-dame", +"bonne-encontre", +"bonne-ente", +"bonne-ententiste", +"bonne-ententistes", +"bonne-femme", +"bonne-grâce", +"bonne-main", +"bonne-maman", +"bonnes-dames", +"bonnes-entes", +"bonnes-femmes", +"bonnes-grâces", +"bonnes-mamans", +"bonnes-vilaines", +"bonnes-voglies", +"bonnet-chinois", +"bonnet-de-prêtre", +"bonnet-rouge", +"bonnets-chinois", +"bonnets-de-prêtres", +"bonnets-verts", +"bonnet-vert", +"Bonneuil-en-France", +"Bonneuil-en-Valois", +"Bonneuil-les-Eaux", +"Bonneuil-Matours", +"Bonneuil-sur-Marne", +"Bonneval-en-Diois", +"Bonneval-sur-Arc", +"Bonnevaux-le-Prieuré", +"Bonnevent-et-Velloreille-lès-Bonnevent", +"Bonnevent-Velloreille", +"bonne-vilaine", +"Bonneville-Aptot", +"Bonneville-et-Saint-Avit-de-Fumadières", +"Bonneville-la-Louvet", +"Bonneville-sur-Touques", +"bonne-voglie", +"Bonnières-sur-Seine", +"Bonningues-lès-Ardres", +"Bonningues-lès-Calais", +"Bonny-sur-Loire", +"bon-ouvrier", +"bon-ouvriers", +"bon-papa", +"bon-plein", +"Bonrepos-Riquet", +"Bonrepos-sur-Aussonnelle", +"bons-chrétiens", +"Bon-Secourois", +"Bon-Secours", +"Bons-en-Chablais", +"bons-mots", +"bons-papas", +"Bons-Tassilly", +"bon-tour", +"Bonvillers-Mont", +"boogie-woogie", +"boogie-woogies", +"Boô-Silhen", +"Bootle-cum-Linacre", +"Bora-Bora", +"Boran-sur-Oise", +"Borcq-sur-Airvault", +"Bordeaux-en-Gâtinais", +"Bordeaux-Saint-Clair", +"Börde-Hakel", +"Bordel's", +"borde-plats", +"Bordères-et-Lamensans", +"Bordères-Louron", +"Bordères-sur-l'Echez", +"Bordères-sur-l'Échez", +"border-terrier", +"Bordes-de-Rivière", +"Bordes-Uchentein", +"bord-opposé", +"Bord-Saint-Georges", +"bore-out", +"bore-outs", +"Boresse-et-Martron", +"Bor-et-Bar", +"Borgdorf-Seedorf", +"Börgerende-Rethwisch", +"Borger-Odoorn", +"Bormes-les-Mimosas", +"Born-de-Champs", +"borne-couteau", +"borne-fontaine", +"borne-fusible", +"borne-fusibles", +"bornes-couteaux", +"bornes-fontaines", +"Bors-de-Baignes", +"Bors-de-Montmoreau", +"Borstel-Hohenraden", +"Bort-les-Orgues", +"Bort-l'Etang", +"Bort-l'Étang", +"Bosc-Bénard-Commin", +"Bosc-Bénard-Crescy", +"Bosc-Bérenger", +"Bosc-Bordel", +"Bosc-Edeline", +"Bosc-Édeline", +"bosc-guérardais", +"Bosc-Guérardais", +"bosc-guérardaise", +"Bosc-Guérardaise", +"bosc-guérardaises", +"Bosc-Guérardaises", +"Bosc-Guérard-Saint-Adrien", +"Bosc-Hyons", +"Bosc-le-Hard", +"Bosc-Mesnil", +"Bosc-Renoult-en-Ouche", +"Bosc-Renoult-en-Roumois", +"bosc-renoulthien", +"Bosc-Renoulthien", +"bosc-renoulthienne", +"Bosc-Renoulthienne", +"bosc-renoulthiennes", +"Bosc-Renoulthiennes", +"bosc-renoulthiens", +"Bosc-Renoulthiens", +"Bosc-Roger-sur-Buchy", +"Bosguérard-de-Marcouville", +"Bösleben-Wüllersleben", +"Bosmie-l'Aiguille", +"Bosmont-sur-Serre", +"Bosmoreau-les-Mines", +"Bosnie-et-Herzégovine", +"Bosnie-Herzégovine", +"bosno-serbe", +"bosno-serbes", +"Bossay-sur-Claise", +"Bosseval-et-Briancourt", +"Bossus-lès-Rumigny", +"Bossut-Gottechain", +"botte-chaussettes", +"bottom-up", +"Botz-en-Mauges", +"Boubers-lès-Hesmond", +"Boubers-sur-Canche", +"Bouchamps-lès-Craon", +"Bouchavesnes-Bergen", +"bouche-à-bouche", +"bouche-en-flûte", +"bouche-nez", +"bouche-pora", +"bouche-porai", +"bouche-poraient", +"bouche-porais", +"bouche-porait", +"bouche-porâmes", +"bouche-porant", +"bouche-poras", +"bouche-porasse", +"bouche-porassent", +"bouche-porasses", +"bouche-porassiez", +"bouche-porassions", +"bouche-porât", +"bouche-porâtes", +"bouche-pore", +"bouche-poré", +"bouche-porée", +"bouche-porées", +"bouche-porent", +"bouche-porer", +"bouche-porera", +"bouche-porerai", +"bouche-poreraient", +"bouche-porerais", +"bouche-porerait", +"bouche-poreras", +"bouche-porèrent", +"bouche-porerez", +"bouche-poreriez", +"bouche-porerions", +"bouche-porerons", +"bouche-poreront", +"bouche-pores", +"bouche-porés", +"bouche-porez", +"bouche-poriez", +"bouche-porions", +"bouche-porons", +"Bouches-du-Rhône", +"bouche-trou", +"bouche-trous", +"Bouchy-Saint-Genest", +"Boucieu-le-Roi", +"Boucle-Saint-Blaise", +"Boucle-Saint-Denis", +"Boucoiran-et-Nozières", +"Bouconville-sur-Madt", +"Bouconville-Vauclair", +"Bouconville-Vauclerc", +"Boudy-de-Beauregard", +"Boueilh-Boueilho-Lasque", +"bouffe-curé", +"bouffe-curés", +"bouffe-galette", +"Bougé-Chambalud", +"Bouges-le-Château", +"Bougy-lez-Neuville", +"Bougy-Villars", +"Bouhans-et-Feurg", +"Bouhans-lès-Lure", +"Bouhans-lès-Montbozon", +"boui-boui", +"bouig-bouig", +"Bouilh-Devant", +"Bouilh-Péreuilh", +"Bouillancourt-en-Séry", +"Bouillancourt-la-Bataille", +"Bouillé-Courdault", +"Bouillé-Loretz", +"Bouillé-Ménard", +"Bouillé-Saint-Paul", +"bouillon-blanc", +"Bouilly-en-Gâtinais", +"Bouin-Plumoison", +"bouis-bouis", +"Boujan-sur-Libron", +"Boulay-les-Barres", +"Boulay-les-Ifs", +"boulay-morinois", +"Boulay-Morinois", +"boulay-morinoise", +"Boulay-Morinoise", +"boulay-morinoises", +"Boulay-Morinoises", +"Boulay-Moselle", +"Boule-d'Amont", +"boule-dogue", +"boules-dogues", +"Boulieu-lès-Annonay", +"Boullay-les-Troux", +"Boulogne-Billancourt", +"Boulogne-la-Grasse", +"Boulogne-sur-Gesse", +"Boulogne-sur-Helpe", +"Boulogne-sur-Mer", +"Boult-aux-Bois", +"Boult-sur-Suippe", +"boum-boum", +"Bouray-sur-Juine", +"Bourbach-le-Bas", +"Bourbach-le-Haut", +"Bourbon-Lancy", +"Bourbon-l'Archambault", +"Bourbonne-les-Bains", +"Bourbon-Vendée", +"Bourbourg-Campagne", +"Bourcefranc-le-Chapus", +"Bourdons-sur-Rognon", +"Bouret-sur-Canche", +"bourgeois-bohème", +"bourgeois-bohèmes", +"bourgeoise-bohème", +"bourgeoises-bohèmes", +"Bourget-en-Huile", +"Bourgneuf-en-Mauges", +"Bourgneuf-en-Retz", +"Bourgneuf-Val-d'Or", +"Bourgogne-Franche-Comté", +"Bourgogne-Fresne", +"Bourgoin-Jallieu", +"Bourgtheroulde-Infreville", +"bourgue-épine", +"bourgues-épines", +"Bourguignon-lès-Conflans", +"Bourguignon-lès-la-Charité", +"Bourguignon-lès-Morey", +"Bourguignon-sous-Coucy", +"Bourguignon-sous-Montbavin", +"Bournainville-Faverolles", +"Bourneville-Sainte-Croix", +"Bournoncle-Saint-Pierre", +"Bouroum-Bouroum", +"bourre-chrétien", +"bourre-de-Marseille", +"bourre-goule", +"bourre-goules", +"bourre-noix", +"bourre-pif", +"bourre-pifs", +"bourres-de-Marseille", +"Bourriot-Bergonce", +"Bourron-Marlotte", +"bourse-à-berger", +"bourse-à-pasteur", +"Bourseigne-Neuve", +"Bourseigne-Vieille", +"bourses-à-berger", +"bourses-à-pasteur", +"Boury-en-Vexin", +"Bousignies-sur-Roc", +"Boussac-Bourg", +"Boussières-en-Cambrésis", +"Boussières-sur-Sambre", +"Boussu-en-Fagne", +"Boussu-lez-Walcourt", +"Boussy-Saint-Antoine", +"bout-avant", +"bout-d'aile", +"bout-d'argent", +"bout-dehors", +"bout-de-l'an", +"Bout-de-l'Îlien", +"bout-de-manche", +"bout-de-quièvre", +"Bout-du-Pont-de-Larn", +"bout-du-pont-de-l'arnais", +"Bout-du-Pont-de-l'Arnais", +"bout-du-pont-de-l'arnaise", +"Bout-du-Pont-de-l'Arnaise", +"bout-du-pont-de-l'arnaises", +"Bout-du-Pont-de-l'Arnaises", +"boute-à-port", +"boute-charge", +"boute-dehors", +"boute-de-lof", +"boute-en-courroie", +"boute-en-train", +"boute-feu", +"boute-hache", +"boute-hors", +"Bouteilles-Saint-Sébastien", +"boute-joie", +"boute-lof", +"Boutenac-Touvent", +"boutes-à-port", +"boute-selle", +"boute-selles", +"boute-tout-cuire", +"Boutiers-Saint-Trojan", +"Boutigny-Prouais", +"Boutigny-sur-Essonne", +"bouton-d'or", +"bouton-poussoir", +"bouton-pression", +"boutons-d'or", +"boutons-pression", +"bout-rimé", +"bout-saigneux", +"bouts-avant", +"bouts-d'aile", +"bouts-d'argent", +"bouts-dehors", +"bouts-de-l'an", +"bouts-de-manche", +"bouts-de-quièvre", +"bouts-rimés", +"bouts-saigneux", +"Bouvaincourt-sur-Bresle", +"Bouvesse-Quirieu", +"Bouvignes-sur-Meuse", +"Bouvigny-Boyeffles", +"Bouvincourt-en-Vermandois", +"Bouxières-aux-Bois", +"Bouxières-aux-Chênes", +"Bouxières-aux-Dames", +"Bouxières-sous-Froidmont", +"Boux-sous-Salmaise", +"Bouy-Luxembourg", +"Bouy-sur-Orvin", +"Bouze-lès-Beaune", +"Bouzon-Gellenave", +"Bouzonville-aux-Bois", +"Bouzonville-en-Beauce", +"Bouzy-la-Forêt", +"Bovée-sur-Barboure", +"Boven-Haastrecht", +"Boven-Hardinxveld", +"Boven-Leeuwen", +"Bovisio-Masciago", +"bow-string", +"bow-strings", +"bow-window", +"bow-windows", +"box-calf", +"boxer-short", +"boxer-shorts", +"box-office", +"box-offices", +"Boyeux-Saint-Jérôme", +"boy-scout", +"boy-scouts", +"Brabant-du-Nord", +"Brabant-en-Argonne", +"Brabant-le-Roi", +"Brabant-Septentrional", +"Brabant-sur-Meuse", +"Brabant-Wallon", +"bracelet-montre", +"bracelets-montres", +"brachio-céphalique", +"brachio-céphaliques", +"brachio-radial", +"Bragelogne-Beauvoir", +"Bragny-en-Charollais", +"Bragny-sur-Saône", +"Brailly-Cornehotte", +"Braine-l'Alleud", +"Braine-le-Château", +"Braine-le-Comte", +"Brains-sur-Gée", +"Brains-sur-les-Marches", +"Brain-sur-Allonnes", +"Brain-sur-l'Authion", +"Brain-sur-Longuenée", +"Brain-sur-Vilaine", +"Brainville-sur-Meuse", +"Braisnes-sur-Aronde", +"branches-ursines", +"branche-ursine", +"Brancourt-en-Laonnois", +"Brancourt-le-Grand", +"brancs-ursines", +"branc-ursine", +"branc-ursines", +"Brandebourg-sur-la-Havel", +"Brande-Hörnerkirchen", +"branle-bas", +"branle-gai", +"branle-long", +"branle-queue", +"branles-bas", +"branles-gais", +"branles-longs", +"Branoux-les-Taillades", +"branque-ursine", +"Branville-Hague", +"Bras-d'Asse", +"bras-d'assien", +"Bras-d'Assien", +"bras-d'assienne", +"Bras-d'Assienne", +"bras-d'assiennes", +"Bras-d'Assiennes", +"bras-d'assiens", +"Bras-d'Assiens", +"brash-ice", +"brash-ices", +"Bras-Panon", +"Brassac-les-Mines", +"brasse-camarade", +"brasse-camarades", +"Bras-sur-Meuse", +"Braud-et-Saint-Louis", +"Braunau-am-Inn", +"Braux-le-Châtel", +"Braux-Sainte-Cohière", +"Braux-Saint-Remy", +"Bray-Dunes", +"bray-dunois", +"Bray-Dunois", +"bray-dunoise", +"Bray-Dunoise", +"bray-dunoises", +"Bray-Dunoises", +"Braye-en-Laonnois", +"Braye-en-Thiérache", +"Bray-en-Val", +"Braye-sous-Faye", +"Braye-sur-Maulne", +"Bray-et-Lû", +"Bray-la-Campagne", +"Bray-lès-Mareuil", +"Bray-Saint-Aignan", +"Bray-Saint-Christophe", +"Bray-sur-Seine", +"Bray-sur-Somme", +"Brazey-en-Morvan", +"Brazey-en-Plaine", +"brazza-congolais", +"Brazza-Congolais", +"Bréal-sous-Montfort", +"Bréal-sous-Vitré", +"Bréau-et-Salagosse", +"brèche-dent", +"brèche-dents", +"Brécy-Brières", +"brécy-brièrois", +"Brécy-Brièrois", +"brécy-brièroise", +"Brécy-Brièroise", +"brécy-brièroises", +"Brécy-Brièroises", +"bredi-breda", +"Brégnier-Cordon", +"Bréhain-la-Ville", +"Bréhan-Loudéac", +"Breil-sur-Roya", +"Breistroff-la-Grande", +"Breitenbach-Haut-Rhin", +"brelic-breloque", +"brelique-breloque", +"Brémontier-Merval", +"Brem-sur-Mer", +"Brémur-et-Vaurois", +"Bresse-sur-Grosne", +"Bressey-sur-Tille", +"Bretagne-d'Armagnac", +"Bretagne-de-Marsan", +"Bretigney-Notre-Dame", +"Brétignolles-le-Moulin", +"Bretignolles-sur-Mer", +"Bretigny-sur-Morrens", +"Brétigny-sur-Orge", +"Bretnig-Hauswalde", +"Brette-les-Pins", +"Bretteville-du-Grand-Caux", +"Bretteville-le-Rabet", +"Bretteville-l'Orgueilleuse", +"Bretteville-Saint-Laurent", +"Bretteville-sur-Ay", +"Bretteville-sur-Dives", +"Bretteville-sur-Laize", +"Bretteville-sur-Odon", +"Breuil-Barret", +"breuil-bernardin", +"Breuil-Bernardin", +"breuil-bernardine", +"Breuil-Bernardine", +"breuil-bernardines", +"Breuil-Bernardines", +"breuil-bernardins", +"Breuil-Bernardins", +"Breuil-Bois-Robert", +"Breuil-Chaussée", +"Breuil-la-Réorte", +"Breuil-le-Sec", +"breuil-le-secquois", +"Breuil-le-Secquois", +"breuil-le-secquoise", +"Breuil-le-Secquoise", +"breuil-le-secquoises", +"Breuil-le-Secquoises", +"Breuil-le-Vert", +"Breuil-Magné", +"Breuil-sur-Marne", +"Breukelen-Nijenrode", +"Breukelen-Sint-Pieters", +"Breurey-lès-Faverney", +"Breuvannes-en-Bassigny", +"Breuvery-sur-Coole", +"Breux-Jouy", +"Breux-sur-Avre", +"Bréville-les-Monts", +"Bréville-sur-Mer", +"Bréxent-Enocq", +"Bréxent-Énocq", +"Brey-et-Maison-du-Bois", +"Briancourt-et-Montimont", +"Briarres-sur-Essonne", +"bric-à-brac", +"brick-goélette", +"Bricquebec-en-Cotentin", +"Bricqueville-la-Blouette", +"Bricqueville-sur-Mer", +"Brides-les-Bains", +"Brie-Comte-Robert", +"Brié-et-Angonnes", +"Briel-sur-Barse", +"Brienne-la-Vieille", +"Brienne-le-Château", +"Brienne-sur-Aisne", +"Brienon-sur-Armançon", +"Brières-et-Crécy", +"Brières-les-Scellés", +"Brieskow-Finkenheerd", +"Brie-sous-Archiac", +"Brie-sous-Barbezieux", +"Brie-sous-Chalais", +"Brie-sous-Matha", +"Brie-sous-Mortagne", +"Brieuil-sur-Chizé", +"Brieulles-sur-Bar", +"Brieulles-sur-Meuse", +"brigadier-chef", +"brigadiers-chefs", +"Brig-Glis", +"Brignac-la-Plaine", +"Brignano-Frascata", +"Brignogan-Plages", +"Brigue-Glis", +"Brigueil-le-Chantre", +"Briis-sous-Forges", +"brillat-savarin", +"brillet-pontin", +"Brillet-Pontin", +"brillet-pontine", +"Brillet-Pontine", +"brillet-pontines", +"Brillet-Pontines", +"brillet-pontins", +"Brillet-Pontins", +"Brillon-en-Barrois", +"brin-d'amour", +"brin-d'estoc", +"Brinon-sur-Beuvron", +"Brinon-sur-Sauldre", +"brins-d'amour", +"brins-d'estoc", +"Brin-sur-Seille", +"Brion-près-Thouet", +"Brion-sur-Ource", +"Briosne-lès-Sables", +"Brioux-sur-Boutonne", +"Briquemesnil-Floxicourt", +"bris-d'huis", +"brise-bise", +"brise-bises", +"brise-burnes", +"brise-cou", +"brise-cous", +"brise-fer", +"brise-fers", +"brise-flots", +"brise-glace", +"brise-glaces", +"brise-image", +"brise-images", +"brise-lame", +"brise-lames", +"brise-lunette", +"brise-mariage", +"brise-motte", +"brise-mottes", +"brise-mur", +"brise-murs", +"brise-os", +"brise-pierre", +"brise-pierres", +"brise-raison", +"brise-raisons", +"brise-roche", +"brise-roches", +"brise-scellé", +"brise-scellés", +"brise-soleil", +"brise-tout", +"brise-vent", +"brise-vents", +"Brisgau-Haute-Forêt-Noire", +"Brison-Saint-Innocent", +"Brissac-Quincé", +"Brissago-Valtravaglia", +"Brissay-Choigny", +"Brissy-Hamégicourt", +"Britanno-Colombien", +"Britanno-Colombienne", +"Britanno-Colombiennes", +"Britanno-Colombiens", +"Brive-la-Gaillarde", +"Brives-Charensac", +"Brives-sur-Charente", +"Brixey-aux-Chanoines", +"Brocourt-en-Argonne", +"Brohl-Lützing", +"Bromont-Lamothe", +"bromophos-éthyl", +"broncho-pneumonie", +"broncho-pneumonies", +"broncho-pulmonaire", +"broncho-pulmonaires", +"Broons-sur-Vilaine", +"Brot-Dessous", +"Brot-Plamboz", +"Brotte-lès-Luxeuil", +"Brotte-lès-Ray", +"brou-brou", +"broue-pub", +"broue-pubs", +"brouille-blanche", +"brouille-blanches", +"Brousse-le-Château", +"Brousses-et-Villaret", +"Broussey-en-Blois", +"Broussey-Raulecourt", +"Broussy-le-Grand", +"Broussy-le-Petit", +"Brou-sur-Chantereine", +"broute-minou", +"broute-minous", +"Broût-Vernet", +"broût-vernetois", +"Broût-Vernetois", +"broût-vernetoise", +"Broût-Vernetoise", +"broût-vernetoises", +"Broût-Vernetoises", +"Brouzet-lès-Alès", +"Brouzet-lès-Quissac", +"Brovello-Carpugnino", +"brown-nosers", +"brown-out", +"Broye-Aubigney-Montseugny", +"Broye-les-Loups-et-Verfontaine", +"Broye-lès-Pesmes-Aubigney-Montseugny", +"Broye-Vully", +"Bruay-la-Buissière", +"Bruay-sur-l'Escaut", +"Bruchhausen-Vilsen", +"Bruchmühlbach-Miesau", +"Bruchweiler-Bärenbach", +"Brücken-Hackpfüffel", +"Bruc-sur-Aff", +"Brue-Auriac", +"Brueil-en-Vexin", +"Bruère-Allichamps", +"bruesme-d'auffe", +"bruesmes-d'auffe", +"Bruges-Capbis-Mifaget", +"Brugny-Vaudancourt", +"Bruille-lez-Marchiennes", +"Bruille-Saint-Amand", +"brûle-amorce", +"brûle-bout", +"brule-gueule", +"brûle-gueule", +"brule-gueules", +"brûle-gueules", +"brule-maison", +"brûle-maison", +"brule-maisons", +"brûle-maisons", +"brule-parfum", +"brûle-parfum", +"brule-parfums", +"brûle-parfums", +"brûle-pourpoint", +"brûle-queue", +"brûle-tout", +"Brûly-de-Pesche", +"brûly-de-peschois", +"Brûly-de-Peschois", +"Brûly-de-Peschoise", +"Brunstatt-Didenheim", +"brun-suisse", +"Brunvillers-la-Motte", +"brute-bonne", +"brut-ingénu", +"bruts-ingénus", +"Bruttig-Fankel", +"Bruxelles-ville", +"Bruyères-et-Montbérault", +"Bruyères-le-Châtel", +"Bruyères-sur-Fère", +"Bruyères-sur-Oise", +"Bry-sur-Marne", +"B-spline", +"B-splines", +"Buais-Les-Monts", +"buccin-marin", +"buccins-marins", +"bucco-dentaire", +"bucco-dentaires", +"bucco-génital", +"bucco-génitale", +"bucco-génitales", +"bucco-génitaux", +"bucco-labial", +"bucco-pharyngé", +"bucco-pharyngée", +"bucco-pharyngées", +"bucco-pharyngés", +"Bucey-en-Othe", +"Bucey-lès-Gy", +"Bucey-lès-Traves", +"buck-béan", +"buck-béans", +"Bucy-le-Long", +"Bucy-le-Roi", +"Bucy-lès-Cerny", +"Bucy-lès-Pierrepont", +"Bucy-Saint-Liphard", +"Budel-Dorplein", +"Budel-Schoot", +"Bueil-en-Touraine", +"buenos-airien", +"Buenos-Airien", +"Buenos-Ayres", +"buen-retiro", +"Buhl-Lorraine", +"Buigny-l'Abbé", +"Buigny-lès-Gamaches", +"Buigny-Saint-Maclou", +"Buire-au-Bois", +"Buire-Courcelles", +"Buire-le-Sec", +"Buire-sur-l'Ancre", +"Buis-les-Baronnies", +"buis-prévenchais", +"Buis-Prévenchais", +"buis-prévenchaise", +"Buis-Prévenchaise", +"buis-prévenchaises", +"Buis-Prévenchaises", +"buisson-ardent", +"buissons-ardents", +"Buis-sur-Damville", +"Bulat-Pestivien", +"bull-dogs", +"bull-mastiff", +"bull-terrier", +"bull-terriers", +"Bully-les-Mines", +"bungee-jumping", +"bungy-jumping", +"Buno-Bonnevaux", +"bureau-chef", +"Bure-les-Templiers", +"Bures-en-Bray", +"Bures-les-Monts", +"Bures-sur-Dives", +"Bures-sur-Yvette", +"Burey-en-Vaux", +"Burey-la-Côte", +"Burg-Reuland", +"burg-reulandais", +"Burg-Reulandais", +"Burg-Reulandaise", +"Burkina-be", +"Burkina-bes", +"Burkina-Faso", +"Burkina-fassien", +"Burnhaupt-le-Bas", +"Burnhaupt-le-Haut", +"burn-out", +"burn-outa", +"burn-outai", +"burn-outaient", +"burn-outais", +"burn-outait", +"burn-outâmes", +"burn-outant", +"burn-outas", +"burn-outasse", +"burn-outassent", +"burn-outasses", +"burn-outassiez", +"burn-outassions", +"burn-outât", +"burn-outâtes", +"burn-oute", +"burn-outé", +"burn-outée", +"burn-outées", +"burn-outent", +"burn-outer", +"burn-outera", +"burn-outerai", +"burn-outeraient", +"burn-outerais", +"burn-outerait", +"burn-outeras", +"burn-outèrent", +"burn-outerez", +"burn-outeriez", +"burn-outerions", +"burn-outerons", +"burn-outeront", +"burn-outes", +"burn-outés", +"burn-outez", +"burn-outiez", +"burn-outions", +"burn-outons", +"burn-outs", +"Burosse-Mendousse", +"Burthecourt-aux-Chênes", +"Bus-la-Mésière", +"Bus-lès-Artois", +"Bussac-Forêt", +"Bussac-sur-Charente", +"Bus-Saint-Rémy", +"Busserotte-et-Montenaille", +"Bussière-Badil", +"Bussière-Boffy", +"Bussière-Dunoise", +"Bussière-Galant", +"Bussière-Nouvelle", +"Bussière-Poitevine", +"Bussière-Saint-Georges", +"Bussières-et-Pruns", +"Bussunarits-Sarrasquette", +"Bussus-Bussuel", +"Bussy-Albieux", +"Bussy-aux-Bois", +"Bussy-Chardonney", +"Bussy-en-Othe", +"Bussy-la-Côte", +"Bussy-la-Pesle", +"Bussy-le-Château", +"Bussy-le-Grand", +"Bussy-le-Repos", +"Bussy-lès-Daours", +"Bussy-lès-Poix", +"Bussy-Lettrée", +"Bussy-Saint-Georges", +"Bussy-Saint-Martin", +"Bussy-sur-Moudon", +"buste-reliquaire", +"bustes-reliquaires", +"Bustince-Iriberry", +"Butot-en-Caux", +"Butot-Vénesville", +"Butry-sur-Oise", +"but-sur-balles", +"Butte-Montmartre", +"butter-oil", +"Buttes-Chaumont", +"Buxières-d'Aillac", +"Buxières-lès-Clefmont", +"Buxières-lès-Froncles", +"Buxières-les-Mines", +"Buxières-lès-Villiers", +"Buxières-sous-les-Côtes", +"Buxières-sous-Montaigut", +"Buxières-sur-Arce", +"Buzet-sur-Baïse", +"Buzet-sur-Tarn", +"Buzy-Darmont", +"BVD-MD", +"Byans-sur-Doubs", +"bye-bye", +"Byhleguhre-Byhlen", +"by-passa", +"by-passai", +"by-passaient", +"by-passais", +"by-passait", +"by-passâmes", +"by-passant", +"by-passas", +"by-passasse", +"by-passassent", +"by-passasses", +"by-passassiez", +"by-passassions", +"by-passât", +"by-passâtes", +"by-passe", +"by-passé", +"by-passée", +"by-passées", +"by-passent", +"by-passer", +"by-passera", +"by-passerai", +"by-passeraient", +"by-passerais", +"by-passerait", +"by-passeras", +"by-passèrent", +"by-passerez", +"by-passeriez", +"by-passerions", +"by-passerons", +"by-passeront", +"by-passes", +"by-passés", +"by-passez", +"by-passiez", +"by-passions", +"by-passons", +"C-4", +"Cabanac-Cazaux", +"Cabanac-et-Villagrains", +"Cabanac-Séguenville", +"cabane-roulotte", +"cabanes-roulottes", +"Cabas-Loumassès", +"câblo-opérateur", +"câblo-opérateurs", +"Cabrières-d'Aigues", +"Cabrières-d'Avignon", +"cacasse-à-cul-nu", +"cacasses-à-cul-nu", +"c-à-d", +"c.-à-d.", +"Cadegliano-Viconago", +"Cadeilhan-Trachère", +"Cadillac-en-Fronsadais", +"cadrage-débordement", +"Cadzand-Bad", +"caf'conc", +"café-au-lait", +"café-bar", +"café-bistro", +"café-calva", +"café-comptoir", +"café-concert", +"café-crème", +"café-filtre", +"cafés-bars", +"cafés-concerts", +"cafés-crèmes", +"cafés-filtre", +"cafés-théâtres", +"café-théâtre", +"cages-théâtres", +"cage-théâtre", +"Cagnac-les-Mines", +"Cagnes-sur-Mer", +"cague-braille", +"cague-brailles", +"cahin-caha", +"Cahuzac-sur-Adour", +"Cahuzac-sur-Vère", +"cail-cédra", +"cail-cédras", +"cail-cédrin", +"cail-cédrins", +"caillé-blanc", +"caille-lait", +"caille-laits", +"caillés-blancs", +"cailleu-tassart", +"caillot-rosat", +"caillots-rosats", +"Caillouël-Crépigny", +"Caillouet-Orgeville", +"Cailloux-sur-Fontaines", +"Cailly-sur-Eure", +"caïque-bazar", +"caïques-bazars", +"caisse-outre", +"caisse-palette", +"caisses-outres", +"caisses-palettes", +"cake-walk", +"cake-walks", +"Calasca-Castiglione", +"Calatafimi-Segesta", +"calcite-rhodochrosite", +"calcites-rhodochrosites", +"calcium-autunite", +"calcium-autunites", +"calcium-pyromorphite", +"calcium-pyromorphites", +"calcium-rhodochrosite", +"calcium-rhodochrosites", +"cale-bas", +"caleçon-combinaison", +"caleçons-combinaisons", +"cale-dos", +"cale-hauban", +"cale-haubans", +"cale-pied", +"cale-pieds", +"Calleville-les-Deux-Eglises", +"Calleville-les-Deux-Églises", +"call-girl", +"call-girls", +"Calmels-et-le-Viala", +"calo-moulinotin", +"Calo-Moulinotin", +"calo-moulinotine", +"Calo-Moulinotine", +"calo-moulinotines", +"Calo-Moulinotines", +"calo-moulinotins", +"Calo-Moulinotins", +"Calonne-Ricouart", +"Calonne-sur-la-Lys", +"Calp.-Flac.", +"Caluire-et-Cuire", +"Calumet-Pointois", +"Calumet-Pontois", +"Calviac-en-Périgord", +"Camaret-sur-Aigues", +"Camaret-sur-Mer", +"Cambes-en-Plaine", +"Camblain-Châtelain", +"Camblain-l'Abbé", +"Camblanes-et-Meynac", +"Cambo-les-Bains", +"Cambon-et-Salvergues", +"Cambon-lès-Lavaur", +"Cambounet-sur-le-Sor", +"Cambron-Casteau", +"Cambronne-lès-Clermont", +"Cambronne-lès-Ribécourt", +"Cambron-Saint-Vincent", +"came-cruse", +"caméra-lucida", +"caméra-piéton", +"caméra-piétons", +"Camiac-et-Saint-Denis", +"camion-bélier", +"camion-citerne", +"camion-cuisine", +"camion-cuisines", +"camion-poubelle", +"camions-béliers", +"camions-bennes", +"camions-citernes", +"camions-poubelles", +"Camou-Cihigue", +"Camou-Mixe-Suhast", +"Campagnac-lès-Quercy", +"Campagna-de-Sault", +"Campagne-d'Armagnac", +"Campagne-lès-Boulonnais", +"Campagne-lès-Guines", +"Campagne-lès-Hesdin", +"Campagne-lès-Wardrecques", +"Campagne-sur-Arize", +"Campagne-sur-Aude", +"Campandré-Valcongrain", +"campanulo-infundibiliforme", +"campanulo-infundibiliformes", +"Camp-Auriol", +"Camp-Dumy", +"Campestre-et-Luc", +"Campet-et-Lamolère", +"Campezo-Kanpezu", +"Camphin-en-Carembault", +"Camphin-en-Pévèle", +"Campiglione-Fenile", +"Campigneulles-les-Grandes", +"Campigneulles-les-Petites", +"Campillos-Paravientos", +"Campillos-Sierra", +"camping-car", +"camping-cars", +"camping-gaz", +"Camping-Gaz", +"Camplong-d'Aude", +"Camp-Mégier", +"Camp-Méjan", +"campo-haltien", +"Campo-Haltien", +"campo-haltienne", +"campo-haltiennes", +"campo-haltiens", +"campo-laïcien", +"Campo-Laïcien", +"campo-laïcienne", +"Campo-Laïcienne", +"campo-laïciennes", +"Campo-Laïciennes", +"campo-laïciens", +"Campo-Laïciens", +"Camp-Public", +"Camp-Réal", +"Camps-en-Amiénois", +"Camps-la-Source", +"Camps-Saint-Mathurin-Léobazel", +"Camps-sur-l'Agly", +"Camps-sur-l'Isle", +"camps-volants", +"camp-volant", +"Canada-Uni", +"canadien-français", +"Canale-di-Verde", +"canapé-lit", +"canapés-lits", +"Canaules-et-Argentières", +"candau-casteidois", +"Candau-Casteidois", +"candau-casteidoise", +"Candau-Casteidoise", +"candau-casteidoises", +"Candau-Casteidoises", +"Candes-Saint-Martin", +"Candé-sur-Beuvron", +"Canenx-et-Réaut", +"Canet-de-Salars", +"Canet-en-Roussillon", +"Caniac-du-Causse", +"cani-joering", +"cani-rando", +"canne-épée", +"Cannes-Ecluse", +"Cannes-Écluse", +"cannes-épées", +"Cannes-et-Clairan", +"cannib's", +"Canny-sur-Matz", +"Canny-sur-Thérain", +"canoë-kayak", +"canoë-kayaks", +"canon-revolver", +"canons-revolvers", +"Cantaing-sur-Escaut", +"Cante-Greil", +"Cante-Grel", +"Cante-Grillet", +"Cantenay-Epinard", +"Cantenay-Épinard", +"Cante-Perdris", +"C.-Antip.", +"Cantonnier-de-l'Est", +"Canville-la-Rocque", +"Canville-les-Deux-Eglises", +"Canville-les-Deux-Églises", +"Cany-Barville", +"Caorches-Saint-Nicolas", +"Caouënnec-Lanvézéac", +"Capaccio-Paestum", +"Capdenac-Gare", +"Capelle-Fermont", +"capelle-filismontin", +"Capelle-Filismontin", +"capelle-filismontine", +"Capelle-Filismontine", +"capelle-filismontines", +"Capelle-Filismontines", +"capelle-filismontins", +"Capelle-Filismontins", +"Capelle-les-Grands", +"Capelle-lès-Hesdin", +"capélo-hugonais", +"Capélo-Hugonais", +"capélo-hugonaise", +"Capélo-Hugonaise", +"capélo-hugonaises", +"Capélo-Hugonaises", +"Capesterre-Belle-Eau", +"Capesterre-de-Marie-Galante", +"capi-aga", +"capi-agas", +"capigi-bassi", +"capigi-bassis", +"Capitale-Nationale", +"capital-risque", +"capital-risques", +"capital-risqueur", +"capital-risqueurs", +"capitan-pacha", +"capitan-pachas", +"capitaux-risqueurs", +"caporal-chef", +"caporaux-chefs", +"Capoulet-et-Junac", +"Cappelle-Brouck", +"Cappelle-en-Pévèle", +"Cappelle-la-Grande", +"capsule-congé", +"capsules-congés", +"capuchon-de-moine", +"caput-mortuum", +"caque-denier", +"carbo-azotine", +"carbonate-apatite", +"carbonate-apatites", +"Carbon-Blanc", +"carbone-14", +"carbones-14", +"Carbonia-Iglesias", +"Carcarès-Sainte-Croix", +"Carcen-Ponson", +"carcere-duro", +"Carcheto-Brustico", +"cardio-chirurgien", +"cardio-chirurgienne", +"cardio-chirurgiennes", +"cardio-chirurgiens", +"cardio-kickboxing", +"cardio-kickboxings", +"cardio-thoracique", +"cardio-thoraciques", +"cardio-training", +"cardio-vasculaire", +"cardio-vasculaires", +"Cardo-Torgia", +"carême-prenant", +"carfentrazone-éthyle", +"car-ferries", +"car-ferry", +"car-ferrys", +"cargo-dortoir", +"cargos-dortoirs", +"Carhaix-Plouguer", +"Carignan-de-Bordeaux", +"car-jacking", +"Carla-Bayle", +"Carla-de-Roquefort", +"Carla-le-Comte", +"Carlencas-et-Levas", +"Carmzow-Wallmow", +"Carnac-Rouffiac", +"Carnoux-en-Provence", +"caro-percyais", +"Caro-Percyais", +"caro-percyaise", +"Caro-Percyaise", +"caro-percyaises", +"Caro-Percyaises", +"carré-bossu", +"carrée-bossue", +"carrées-bossues", +"carrés-bossus", +"Carresse-Cassaber", +"Carrières-sous-Poissy", +"Carrières-sur-Seine", +"Carry-le-Rouet", +"Carsac-Aillac", +"Carsac-de-Gurson", +"Carsac-de-Villefranche", +"carte-cadeau", +"carte-fille", +"carte-index", +"carte-lettre", +"carte-maximum", +"carte-mère", +"cartes-cadeaux", +"cartes-filles", +"cartes-lettres", +"cartes-maximum", +"cartes-mères", +"carte-soleil", +"cartes-vues", +"carte-vue", +"Cartigny-l'Epinay", +"Cartigny-l'Épinay", +"carton-index", +"carton-pâte", +"carton-pierre", +"cartons-pâte", +"Carville-la-Folletière", +"Carville-Pot-de-Fer", +"Cascastel-des-Corbières", +"Case-Pilote", +"Cases-de-Pène", +"cash-back", +"cash-flow", +"cash-flows", +"cas-limite", +"cas-limites", +"casque-de-Jupiter", +"Cassagnabère-Tournas", +"Cassagnes-Bégonhès", +"casse-aiguille", +"casse-bélier", +"casse-béliers", +"casse-bonbon", +"casse-bonbons", +"casse-bouteille", +"casse-bras", +"casse-burnes", +"casse-claouis", +"casse-coeur", +"casse-cœur", +"casse-coeurs", +"casse-cœurs", +"casse-cou", +"casse-couille", +"casse-couilles", +"casse-cous", +"casse-croute", +"casse-croûte", +"casse-croutes", +"casse-croûtes", +"casse-cul", +"casse-culs", +"casse-dalle", +"casse-dalles", +"casse-fer", +"casse-fil", +"casse-fils", +"casse-graine", +"casse-graines", +"casse-gueule", +"casse-gueules", +"casse-langue", +"casse-langues", +"casse-lunette", +"casse-lunettes", +"casse-mariages", +"casse-motte", +"casse-museau", +"casse-museaux", +"casse-noisette", +"casse-noisettes", +"casse-noix", +"casse-nole", +"casse-noyaux", +"casse-olives", +"casse-patte", +"casse-pattes", +"casse-péter", +"casse-pied", +"casse-pieds", +"casse-pierre", +"casse-pierres", +"casse-pipe", +"casse-pipes", +"casse-poitrine", +"casse-pot", +"casse-tête", +"casse-têtes", +"casse-vessie", +"cassi-ascher", +"cassi-aschers", +"Castaignos-Souslens", +"Castanet-le-Haut", +"Castanet-Tolosan", +"Casteide-Cami", +"Casteide-Candau", +"Casteide-Doat", +"castel-ambillouçois", +"Castel-Ambillouçois", +"castel-ambillouçoise", +"Castel-Ambillouçoise", +"castel-ambillouçoises", +"Castel-Ambillouçoises", +"Castelbello-Ciardes", +"castel-chalonnais", +"Castel-Chalonnais", +"castel-chalonnaise", +"Castel-Chalonnaise", +"castel-chalonnaises", +"Castel-Chalonnaises", +"Castell'Alfero", +"Castellare-di-Casinca", +"Castellare-di-Mercurio", +"Castell'Arquato", +"Castell'Azzara", +"Castellet-lès-Sausses", +"castel-lévézien", +"Castel-Lévézien", +"castel-lévézienne", +"Castel-Lévézienne", +"castel-lévéziennes", +"Castel-Lévéziennes", +"castel-lévéziens", +"Castel-Lévéziens", +"Castello-di-Rostino", +"Castell'Umberto", +"Castelmoron-d'Albret", +"Castelmoron-sur-Lot", +"Castelnau-Barbarens", +"Castelnau-Chalosse", +"Castelnau-d'Anglès", +"Castelnau-d'Arbieu", +"Castelnau-d'Aude", +"Castelnau-d'Auzan", +"Castelnaud-de-Gratecambe", +"Castelnau-de-Brassac", +"Castelnau-de-Guers", +"Castelnau-de-Lévis", +"Castelnau-de-Mandailles", +"Castelnau-de-Médoc", +"Castelnau-de-Montmiral", +"Castelnau-d'Estrétefonds", +"Castelnaud-la-Chapelle", +"Castelnau-Durban", +"castelnau-durbannais", +"Castelnau-Durbannais", +"castelnau-durbannaise", +"Castelnau-Durbannaise", +"castelnau-durbannaises", +"Castelnau-Durbannaises", +"Castelnau-le-Lez", +"Castelnau-Magnoac", +"Castelnau-Montratier", +"Castelnau-Montratier-Sainte-Alauzie", +"Castelnau-Pégayrols", +"Castelnau-Picampeau", +"Castelnau-Rivière-Basse", +"Castelnau-sur-Gupie", +"Castelnau-sur-l'Auvignon", +"Castelnau-Tursan", +"Castelnau-Valence", +"castel-pontin", +"Castel-Pontin", +"castel-pontine", +"Castel-Pontine", +"castel-pontines", +"Castel-Pontines", +"castel-pontins", +"Castel-Pontins", +"Castel-Sarrazin", +"Castels-et-Bézenac", +"castel-symphorinois", +"Castel-Symphorinois", +"castel-symphorinoise", +"Castel-Symphorinoise", +"castel-symphorinoises", +"Castel-Symphorinoises", +"Castéra-Bouzet", +"Castéra-Lanusse", +"Castéra-Lectourois", +"Castéra-Lou", +"Castéra-Loubix", +"Castéra-Verduzan", +"Castéra-Vignoles", +"Castet-Arrouy", +"castet-arrouyais", +"Castet-Arrouyais", +"castet-arrouyaise", +"Castet-Arrouyaise", +"castet-arrouyaises", +"Castet-Arrouyaises", +"Castetnau-Camblong", +"Castets-en-Dorthe", +"Castex-d'Armagnac", +"Casties-Labrande", +"castillano-aragonais", +"Castille-et-León", +"Castillejo-Sierra", +"Castillo-Albaráñez", +"Castillon-Debats", +"Castillon-de-Castets", +"Castillon-de-Larboust", +"Castillon-de-Saint-Martory", +"Castillon-du-Gard", +"Castillon-en-Auge", +"Castillon-en-Couserans", +"Castillon-et-Capitourlan", +"Castillon-la-Bataille", +"Castillon-Massas", +"Castillon-Savès", +"Casti-Wergenstein", +"Castres-Gironde", +"Castrillo-Tejeriego", +"Castrop-Rauxel", +"Castro-Urdiales", +"catalan-valencien-baléare", +"catalase-positive", +"cat-boat", +"Catillon-Fumechon", +"Catillon-sur-Sambre", +"cato-cathartique", +"cato-cathartiques", +"Caubios-Loos", +"Caubon-Saint-Sauveur", +"Cauchy-à-la-Tour", +"Caudebec-en-Caux", +"Caudebec-lès-Elbeuf", +"Caudiès-de-Conflent", +"Caudiès-de-Fenouillèdes", +"Caumont-l'Eventé", +"Caumont-l'Éventé", +"Caumont-sur-Aure", +"Caumont-sur-Durance", +"Caumont-sur-Garonne", +"Caumont-sur-Orne", +"Caunes-Minervois", +"Caunettes-en-Val", +"Caunette-sur-Lauquet", +"Caupenne-d'Armagnac", +"Cauroy-lès-Hermonville", +"Cause-de-Clérans", +"Caussade-Rivière", +"Causse-Bégon", +"Causse-de-la-Selle", +"Causse-et-Diège", +"Causses-et-Veyran", +"Cauverville-en-Roumois", +"Cauville-sur-Mer", +"Caux-et-Sauzens", +"ça-va-ça-vient", +"Cavaglio-Spoccia", +"Cavalaire-sur-Mer", +"Cavallino-Treporti", +"ça-voir", +"ça-voirs", +"Cavron-Saint-Martin", +"Cayeux-en-Santerre", +"Cayeux-sur-Mer", +"Cayre-four", +"Cazals-des-Baylès", +"Cazarilh-Laspènes", +"Cazaril-Laspènes", +"Cazaril-Tambourès", +"Cazaux-d'Anglès", +"Cazaux-Debat", +"Cazaux-Fréchet-Anéran-Camors", +"Cazaux-Layrisse", +"Cazaux-Savès", +"Cazaux-Villecomtal", +"Cazeaux-de-Larboust", +"Cazenave-Serres-et-Allens", +"Cazeneuve-Montaut", +"Cazères-sur-l'Adour", +"Cazes-Mondenard", +"Cazouls-d'Hérault", +"Cazouls-lès-Béziers", +"C-blanc", +"C-blancs", +"c-commanda", +"c-commandai", +"c-commandaient", +"c-commandais", +"c-commandait", +"c-commandâmes", +"c-commandant", +"c-commandas", +"c-commandasse", +"c-commandassent", +"c-commandasses", +"c-commandassiez", +"c-commandassions", +"c-commandât", +"c-commandâtes", +"c-commande", +"c-commandé", +"c-commandée", +"c-commandées", +"c-commandent", +"c-commander", +"c-commandera", +"c-commanderai", +"c-commanderaient", +"c-commanderais", +"c-commanderait", +"c-commanderas", +"c-commandèrent", +"c-commanderez", +"c-commanderiez", +"c-commanderions", +"c-commanderons", +"c-commanderont", +"c-commandes", +"c-commandés", +"c-commandez", +"c-commandiez", +"c-commandions", +"c-commandons", +"CD-R", +"CD-ROM", +"CD-RW", +"CD-WORM", +"Céaux-d'Allègre", +"Ceaux-en-Couhé", +"Ceaux-en-Loudun", +"cédez-le-passage", +"Ceilhes-et-Rocozels", +"cejourd'hui", +"céleri-rave", +"cèleri-rave", +"céléri-rave", +"cèleri-raves", +"céleris-raves", +"Céleste-Empire", +"celle-ci", +"celle-là", +"Celle-Lévescault", +"celles-ci", +"Celles-en-Bassigny", +"celles-là", +"Celles-lès-Condé", +"Celles-sur-Aisne", +"Celles-sur-Belle", +"Celles-sur-Durolle", +"Celles-sur-Ource", +"Celles-sur-Plaine", +"Cellier-du-Luc", +"celto-nordique", +"celto-nordiques", +"celui-ci", +"celui-là", +"Cély-en-Bière", +"Cénac-et-Saint-Julien", +"Cenne-Monestiés", +"Cenon-sur-Vienne", +"cent-cinquante-cinq", +"cent-cinquante-cinquièmes", +"cent-garde", +"cent-gardes", +"cent-lances", +"cent-mille", +"centre-bourg", +"centre-droit", +"Centre-du-Québec", +"Centre-Est", +"centre-gauche", +"Centre-Mauricien", +"Centre-Nord", +"Centre-Ouest", +"centres-bourgs", +"Centre-Sud", +"centres-villes", +"centre-tir", +"centre-ville", +"Centro-Américain", +"Centro-Américaine", +"Centro-Américains", +"cent-suisse", +"cent-suisses", +"céphalo-pharyngien", +"céphalo-pharyngienne", +"céphalo-pharyngiennes", +"céphalo-pharyngiens", +"céphalo-rachidien", +"Cérans-Foulletourte", +"Cercy-la-Tour", +"cérébro-lésion", +"cérébro-lésions", +"cérébro-rachidien", +"cérébro-rachidienne", +"cérébro-rachidiennes", +"cérébro-rachidiens", +"cérébro-spinal", +"cérébro-spinale", +"cérébro-spinales", +"cérébro-spinaux", +"Céré-la-Ronde", +"Cerexhe-Heuseux", +"cerfs-veaux", +"cerfs-volants", +"cerfs-volistes", +"cerf-veau", +"cerf-volant", +"cerf-voliste", +"Cerisy-Belle-Etoile", +"Cerisy-Belle-Étoile", +"Cerisy-Buleux", +"Cerisy-Gailly", +"Cerisy-la-Forêt", +"Cerisy-la-Salle", +"Cernay-en-Dormois", +"Cernay-la-Ville", +"Cernay-l'Eglise", +"Cernay-l'Église", +"Cernay-lès-Reims", +"Cernoy-en-Berry", +"Cerny-en-Laonnois", +"Cerny-lès-Bucy", +"Céroux-Mousty", +"Cerre-lès-Noroy", +"certificat-cadeau", +"césaro-papisme", +"césaro-papismes", +"césaro-papiste", +"césaro-papistes", +"Césarville-Dossainville", +"césium-analcime", +"césium-analcimes", +"Cesny-aux-Vignes", +"Cesny-Bois-Halbout", +"cesoird'hui", +"Cessenon-sur-Orb", +"Cessey-sur-Tille", +"cessez-le-feu", +"cession-bail", +"Cesson-Sévigné", +"Cessoy-en-Montois", +"Cessy-les-Bois", +"c'est-à-dire", +"cesta-punta", +"Cette-Eygun", +"ceux-ci", +"ceux-là", +"chabada-bada", +"cha'ban", +"chabazite-Ca", +"chabazite-Cas", +"chabazite-Na", +"chabazite-Nas", +"cha-cha", +"cha-cha-cha", +"cha-chas", +"Chagny-lès-Omont", +"Chaillac-sur-Vienne", +"Chaillé-les-Marais", +"Chail-les-Bains", +"Chaillé-sous-les-Ormeaux", +"Chailly-en-Bière", +"Chailly-en-Brie", +"Chailly-en-Gâtinais", +"Chailly-lès-Ennery", +"Chailly-sur-Armançon", +"Chailly-sur-Montreux", +"Chainaz-les-Frasses", +"Chaînée-des-Coupis", +"Chaintrix-Bierges", +"Chaise-Dieu-du-Theil", +"Chalain-d'Uzore", +"Chalain-le-Comtal", +"Chalandry-Elaire", +"Chalautre-la-Grande", +"Chalautre-la-Petite", +"Chalautre-la-Reposte", +"Châlette-sur-Loing", +"Chalette-sur-Voire", +"Chalivoy-Milon", +"Challain-la-Potherie", +"Challand-Saint-Anselme", +"Challand-Saint-Victor", +"Challes-la-Montagne", +"Challes-les-Eaux", +"Chalmazel-Jeansagnière", +"Chalonnes-sous-le-Lude", +"Chalonnes-sur-Loire", +"Châlon's", +"Châlons-du-Maine", +"Chalons-en-Champagne", +"Châlons-en-Champagne", +"Châlons-sur-Marne", +"Châlons-sur-Vesle", +"Chalon-sur-Saône", +"Chalo-Saint-Mars", +"Chalou-Moulineux", +"Chamalières-sur-Loire", +"Chamarandes-Choignes", +"Chambaron-sur-Morge", +"Chambéry-le-Vieux", +"Chambley-Bussières", +"chambolle-musigny", +"Chambolle-Musigny", +"Chambon-la-Forêt", +"Chambon-le-Château", +"Chambon-Sainte-Croix", +"Chambon-sur-Cisse", +"Chambon-sur-Dolore", +"Chambon-sur-Lac", +"Chambon-sur-Voueize", +"Chambornay-lès-Bellevaux", +"Chambornay-lès-Pin", +"Chambost-Allières", +"Chambost-Longessaigne", +"chamboule-tout", +"Chambourg-sur-Indre", +"Chambray-lès-Tours", +"chamito-sémitique", +"chamito-sémitiques", +"Chamonix-Mont-Blanc", +"Chamoux-sur-Gelon", +"Champagnac-de-Belair", +"Champagnac-la-Noaille", +"Champagnac-la-Prune", +"Champagnac-la-Rivière", +"Champagnac-le-Vieux", +"Champagnat-le-Jeune", +"Champagne-Ardenne", +"Champagne-au-Mont-d'Or", +"Champagne-de-Blanzac", +"Champagne-en-Valromey", +"Champagne-et-Fontaine", +"Champagné-le-Sec", +"Champagné-les-Marais", +"Champagne-Mouton", +"Champagné-Saint-Hilaire", +"Champagne-sur-Loue", +"Champagne-sur-Oise", +"Champagne-sur-Seine", +"Champagne-sur-Vingeanne", +"Champagne-Vigny", +"Champagny-en-Vanoise", +"Champagny-sous-Uxelles", +"Champaubert-aux-Bois", +"Champdeniers-Saint-Denis", +"Champdor-Corcelles", +"Champeau-en-Morvan", +"Champeaux-et-la-Chapelle-Pommier", +"Champeaux-sur-Sarthe", +"Champey-sur-Moselle", +"Champigneul-Champagne", +"Champigneulles-en-Bassigny", +"Champigneul-sur-Vence", +"Champignol-lez-Mondeville", +"Champigny-en-Beauce", +"Champigny-en-Rochereau", +"Champigny-la-Futelaye", +"Champigny-le-Sec", +"Champigny-lès-Langres", +"Champigny-sous-Varennes", +"Champigny-sur-Aube", +"Champigny-sur-Marne", +"Champigny-sur-Veude", +"Champigny-sur-Yonne", +"Champlat-et-Boujacourt", +"Champlitte-la-Ville", +"Champniers-et-Reilhac", +"Champrond-en-Gâtine", +"Champrond-en-Perchet", +"champs-clos", +"Champs-Élysées", +"Champs-Romain", +"Champs-sur-Marne", +"Champs-sur-Tarentaine-Marchal", +"Champs-sur-Yonne", +"Champs-zé", +"Champteussé-sur-Baconne", +"Champtocé-sur-Loire", +"Champvans-les-Baume", +"Champvans-les-Moulins", +"Chanac-les-Mines", +"Chanat-la-Mouteyre", +"Chanceaux-près-Loches", +"Chanceaux-sur-Choisille", +"Chang-Haï", +"Changis-sur-Marne", +"changxing'ien", +"Changxing'ien", +"Channay-sur-Lathan", +"Chanos-Curson", +"chanos-cursonnais", +"Chanos-Cursonnais", +"chanos-cursonnaise", +"Chanos-Cursonnaise", +"chanos-cursonnaises", +"Chanos-Cursonnaises", +"Chanoz-Châtenay", +"Chante-Clair", +"Chanteloup-en-Brie", +"Chanteloup-les-Bois", +"Chanteloup-les-Vignes", +"Chantemerle-les-Blés", +"Chantemerle-lès-Grignan", +"Chantemerle-sur-la-Soie", +"Chantenay-Saint-Imbert", +"Chantenay-Villedieu", +"chantilly-tiffany", +"Chapdes-Beaufort", +"chape-chuta", +"chape-chutai", +"chape-chutaient", +"chape-chutais", +"chape-chutait", +"chape-chutâmes", +"chape-chutant", +"chape-chutas", +"chape-chutasse", +"chape-chutassent", +"chape-chutasses", +"chape-chutassiez", +"chape-chutassions", +"chape-chutât", +"chape-chutâtes", +"chape-chute", +"chape-chuté", +"chape-chutent", +"chape-chuter", +"chape-chutera", +"chape-chuterai", +"chape-chuteraient", +"chape-chuterais", +"chape-chuterait", +"chape-chuteras", +"chape-chutèrent", +"chape-chuterez", +"chape-chuteriez", +"chape-chuterions", +"chape-chuterons", +"chape-chuteront", +"chape-chutes", +"chape-chutez", +"chape-chutiez", +"chape-chutions", +"chape-chutons", +"chapelloise-fortinienne", +"Chapelloise-Fortinienne", +"chapelloises-fortiniennes", +"Chapelloises-Fortiniennes", +"chapellois-fortinien", +"Chapellois-Fortinien", +"chapellois-fortiniens", +"Chapellois-Fortiniens", +"Chapon-Seraing", +"chapon-sérésien", +"Chapon-Sérésien", +"Chapon-Sérésienne", +"char-à-bancs", +"charbon-de-pierre", +"charbon-de-terre", +"Charbonnières-les-Bains", +"Charbonnières-les-Sapins", +"Charbonnières-les-Varennes", +"Charbonnières-les-Vieilles", +"Charbonnier-les-Mines", +"charbons-de-pierre", +"charbons-de-terre", +"Charcé-Saint-Ellier-sur-Aubance", +"chardon-Marie", +"chardon-Roland", +"chardons-Marie", +"Chareil-Cintrat", +"Charency-Vezin", +"Charente-Inférieure", +"Charente-Maritime", +"Charenton-du-Cher", +"Charenton-le-Pont", +"Charette-Varennes", +"chargeuse-pelleteuse", +"Chargey-lès-Gray", +"Chargey-lès-Port", +"Charles-Quint", +"Charleville-Mézières", +"Charleville-sous-Bois", +"Charlevoisien-de-l'Est", +"Charly-Oradour", +"Charly-sur-Marne", +"charme-houblon", +"Charmes-en-l'Angle", +"charmes-houblons", +"Charmes-la-Côte", +"Charmes-la-Grande", +"Charmes-Saint-Valbert", +"Charmes-sur-l'Herbasse", +"Charmes-sur-Rhône", +"Charmois-devant-Bruyères", +"Charmois-l'Orgueilleux", +"Charmont-en-Beauce", +"Charmontois-l'Abbé", +"Charmont-sous-Barbuise", +"Charmont-sur-Marne", +"Charnay-lès-Chalon", +"Charnay-lès-Mâcon", +"Charnoz-sur-Ain", +"Charny-le-Bachot", +"Charny-sur-Meuse", +"Charrey-sur-Saône", +"Charrey-sur-Seine", +"Charritte-de-Bas", +"chars-à-bancs", +"charte-partie", +"Chartres-de-Bretagne", +"Chartrier-Ferrière", +"Charvieu-Chavagneux", +"Chasné-sur-Illet", +"Chassagne-Montrachet", +"Chassagne-Saint-Denis", +"chasse-avant", +"chasse-bondieu", +"chasse-bondieux", +"chasse-carrée", +"chasse-carrées", +"chasse-chien", +"chasse-chiens", +"chasse-clou", +"chasse-clous", +"chasse-cœur", +"chasse-coquin", +"chasse-cousin", +"chasse-cousins", +"chasse-crapaud", +"chassé-croisé", +"chasse-derrière", +"chasse-derrières", +"chasse-diable", +"chasse-diables", +"chasse-ennui", +"chasse-fièvre", +"chasse-fleurée", +"chasse-fleurées", +"chasse-goupille", +"chasse-goupilles", +"chasse-gueux", +"chasse-marée", +"chasse-marées", +"chasse-morte", +"chasse-mouche", +"chasse-mouches", +"chasse-mulet", +"chasse-mulets", +"chasse-neige", +"chasse-neiges", +"Chasseneuil-du-Poitou", +"Chasseneuil-sur-Bonnieure", +"chasse-noix", +"chasse-partie", +"chasse-parties", +"chasse-pierre", +"chasse-pierres", +"chasse-poignée", +"chasse-pointe", +"chasse-pointes", +"chasse-pommeau", +"chasse-punaise", +"chasse-rivet", +"chasse-rivets", +"chasse-rondelle", +"chasse-roue", +"chasse-roues", +"chassés-croisés", +"chasses-parties", +"Chasse-sur-Rhône", +"chasse-taupe", +"chasseur-bombardier", +"chasseur-cueilleur", +"chasseurs-bombardiers", +"chasseurs-cueilleurs", +"Chassey-Beaupré", +"Chassey-le-Camp", +"Chassey-lès-Montbozon", +"Chassey-lès-Scey", +"chassez-déchassez", +"chassez-huit", +"Chassigny-sous-Dun", +"châssis-support", +"châssis-supports", +"Chastel-Arnaud", +"Chastellux-sur-Cure", +"Chastel-Nouvel", +"Chastel-sur-Murat", +"Chastenay-le-Bas", +"Chastenay-le-Haut", +"Chastre-Villeroux-Blanmont", +"châtaigne-d'eau", +"châtaigne-de-mer", +"châtaignes-d'eau", +"châtaignes-de-mer", +"Châteauneuf-Calcernier", +"Châteauneuf-de-Bordette", +"Châteauneuf-de-Chabre", +"Châteauneuf-de-Contes", +"Châteauneuf-de-Gadagne", +"Châteauneuf-de-Galaure", +"Châteauneuf-d'Entraunes", +"Châteauneuf-de-Randon", +"Châteauneuf-de-Vernoux", +"Châteauneuf-d'Ille-et-Vilaine", +"Châteauneuf-d'Isère", +"Châteauneuf-d'Oze", +"Châteauneuf-du-Faou", +"châteauneuf-du-pape", +"Châteauneuf-du-Pape", +"Châteauneuf-du-Rhône", +"Châteauneuf-en-Thymerais", +"Châteauneuf-Grasse", +"Châteauneuf-la-Forêt", +"Châteauneuf-le-Rouge", +"Châteauneuf-les-Bains", +"Châteauneuf-les-Martigues", +"Châteauneuf-lès-Moustiers", +"Châteauneuf-Miravail", +"Châteauneuf-sur-Charente", +"Châteauneuf-sur-Cher", +"Châteauneuf-sur-Isère", +"Châteauneuf-sur-Loire", +"Châteauneuf-sur-Sarthe", +"Châteauneuf-Val-de-Bargis", +"Châteauneuf-Val-Saint-Donat", +"Châteauneuf-Villevieille", +"Châteauroux-les-Alpes", +"Châteauvieux-les-Fossés", +"châteaux-forts", +"Châtelaillon-Plage", +"Châtel-Censoir", +"Chatel-Chéhéry", +"Châtel-de-Joux", +"Châtel-de-Neuvre", +"Châtel-en-Trièves", +"Châtel-Gérard", +"Châtel-Guyon", +"Châtel-Montagne", +"Châtel-Moron", +"Châtelraould-Saint-Louvent", +"Châtel-Saint-Denis", +"Châtel-Saint-Germain", +"Châtel-sur-Montsalvens", +"Châtel-sur-Moselle", +"Châtelus-le-Marcheix", +"Châtelus-Malvaleix", +"Châtenay-en-France", +"Chatenay-Mâcheron", +"Châtenay-Malabry", +"Châtenay-sur-Seine", +"Chatenay-Vaudin", +"Châtenois-les-Forges", +"Châtenoy-en-Bresse", +"Châtenoy-le-Royal", +"Châtillon-Coligny", +"Châtillon-en-Bazois", +"Châtillon-en-Diois", +"Châtillon-en-Dunois", +"Châtillon-en-Michaille", +"Châtillon-en-Vendelais", +"Châtillon-Guyotte", +"Châtillon-la-Borde", +"Châtillon-la-Palud", +"Châtillon-le-Duc", +"Châtillon-le-Roi", +"Châtillon-lès-Sons", +"Châtillon-Saint-Jean", +"Châtillon-sous-les-Côtes", +"Châtillon-sous-Maîche", +"Châtillon-sur-Bar", +"Châtillon-sur-Broué", +"Châtillon-sur-Chalaronne", +"Châtillon-sur-Cher", +"Châtillon-sur-Cluses", +"Châtillon-sur-Colmont", +"Châtillon-sur-Indre", +"Châtillon-sur-Lison", +"Châtillon-sur-Loire", +"Châtillon-sur-Marne", +"Châtillon-sur-Morin", +"Châtillon-sur-Oise", +"Châtillon-sur-Saône", +"Châtillon-sur-Seiche", +"Châtillon-sur-Seine", +"Châtillon-sur-Thouet", +"Chatonrupt-Sommermont", +"Châtres-la-Forêt", +"Châtres-sur-Cher", +"Chatuzange-le-Goubet", +"chauche-branche", +"chauche-branches", +"chauche-poule", +"Chauconin-Neufmontiers", +"Chaudefonds-sur-Layon", +"Chaudenay-la-Ville", +"Chaudenay-le-Château", +"Chaudeney-sur-Moselle", +"Chaudière-Appalaches", +"Chaudon-Norante", +"Chaudron-en-Mauges", +"chauffe-assiette", +"chauffe-assiettes", +"chauffe-bain", +"chauffe-bains", +"chauffe-biberon", +"chauffe-biberons", +"chauffe-bloc", +"chauffe-blocs", +"chauffe-chemise", +"chauffe-cire", +"chauffe-double", +"chauffe-eau", +"chauffe-eaux", +"chauffe-la-couche", +"chauffe-linge", +"chauffe-linges", +"chauffe-lit", +"chauffe-lits", +"chauffe-moteur", +"chauffe-pied", +"chauffe-pieds", +"chauffe-plat", +"chauffe-plats", +"chauffes-doubles", +"Chauffour-lès-Bailly", +"Chauffour-lès-Etréchy", +"Chauffour-lès-Étréchy", +"Chauffour-sur-Vell", +"Chaufour-lès-Bonnières", +"Chaufour-Notre-Dame", +"Chaume-et-Courchamp", +"Chaume-lès-Baigneux", +"Chaumes-en-Brie", +"Chaumes-en-Retz", +"Chaumont-d'Anjou", +"Chaumont-devant-Damvillers", +"Chaumont-en-Vexin", +"Chaumont-Gistoux", +"Chaumont-la-Ville", +"Chaumont-le-Bois", +"Chaumont-le-Bourg", +"Chaumont-Porcien", +"Chaumont-Saint-Quentin", +"Chaumont-sur-Aire", +"Chaumont-sur-Loire", +"Chaumont-sur-Tharonne", +"Chaumoux-Marcilly", +"Chaussée-Notre-Dame-Louvignies", +"chausse-pied", +"chausse-pieds", +"chausse-trape", +"chausse-trapes", +"chausse-trappe", +"chausse-trappes", +"Chaussoy-Epagny", +"Chauvac-Laux-Montaux", +"Chauvency-le-Château", +"Chauvency-Saint-Hubert", +"chauve-souriceau", +"chauve-souricelle", +"chauve-souricière", +"chauve-souricières", +"chauve-souris", +"chauve-souris-garou", +"chauves-souriceaux", +"chauves-souricelles", +"chauves-souris", +"chauves-souris-garous", +"Chauvigny-du-Perche", +"Chauvincourt-Provemont", +"Chauvirey-le-Châtel", +"Chauvirey-le-Vieil", +"chaux-azote", +"chaux-azotes", +"Chaux-Champagny", +"Chaux-de-Fonnier", +"Chaux-des-Crotenay", +"Chaux-des-Prés", +"Chaux-la-Lotière", +"Chaux-lès-Clerval", +"Chaux-lès-Passavant", +"Chaux-lès-Port", +"Chaux-Neuve", +"Chavagnes-en-Paillers", +"Chavagnes-les-Redoux", +"Chavagneux-Montbertand", +"Chavaniac-Lafayette", +"Chavannes-de-Bogis", +"Chavannes-des-Bois", +"Chavannes-le-Chêne", +"Chavannes-les-Grands", +"Chavannes-le-Veyron", +"Chavannes-près-Renens", +"Chavannes-sur-l'Etang", +"Chavannes-sur-l'Étang", +"Chavannes-sur-Moudon", +"Chavannes-sur-Reyssouze", +"Chavannes-sur-Suran", +"Chavigny-Bailleul", +"Chavot-Courcourt", +"Chazay-d'Azergues", +"Chazé-Henry", +"Chazelles-sur-Albe", +"Chazelles-sur-Lavieu", +"Chazelles-sur-Lyon", +"Chazé-sur-Argos", +"Chazey-Bons", +"Chazey-sur-Ain", +"check-up", +"check-ups", +"cheese-cake", +"cheese-cakes", +"chef-boutonnais", +"Chef-Boutonnais", +"chef-boutonnaise", +"Chef-Boutonnaise", +"chef-boutonnaises", +"Chef-Boutonnaises", +"Chef-Boutonne", +"chef-d'oeuvre", +"chef-d'œuvre", +"Chef-du-Pont", +"Cheffreville-Tonnencourt", +"Chef-Haut", +"chef-lieu", +"chef-mets", +"chef-mois", +"chefs-d'oeuvre", +"chefs-d'œuvre", +"chefs-lieux", +"Cheignieu-la-Balme", +"Cheilly-lès-Maranges", +"Chein-Dessus", +"Cheix-en-Retz", +"Chelle-Debat", +"Chelle-Spou", +"Chémeré-le-Roi", +"Chémery-Chéhéry", +"Chémery-les-Deux", +"Chémery-sur-Bar", +"Chemillé-en-Anjou", +"Chemillé-Melay", +"Chemillé-sur-Dême", +"Chemillé-sur-Indrois", +"Chemilly-les-Raves", +"Chemilly-près-Seignelay", +"Chemilly-sur-Serein", +"Chemilly-sur-Yonne", +"Chemin-d'Aisey", +"Chemiré-en-Charnie", +"Chemiré-le-Gaudin", +"Chemiré-sur-Sarthe", +"Chenac-Saint-Seurin-d'Uzet", +"Chenailler-Mascheix", +"Chenay-le-Châtel", +"Chêne-Arnoult", +"Chêne-Bernard", +"Chêne-Bougeries", +"Chêne-Bourg", +"Chêne-Carré", +"Chenecey-Buillon", +"Chêne-Chenu", +"Chêne-Dolley", +"Chêne-en-Semine", +"chêne-gomme", +"Chênehutte-Trèves-Cunault", +"chêne-liège", +"chêne-marin", +"Chêne-Pâquier", +"chêne-pommier", +"Chêne-Sec", +"chênes-gommes", +"chênes-lièges", +"chênes-marins", +"Chenevrey-et-Morogne", +"Chenillé-Champteussé", +"Chenillé-Changé", +"Chennery-et-Landreville", +"Chennevières-lès-Louvres", +"Chennevières-sur-Marne", +"Chens-sur-Léman", +"Cheppes-la-Prairie", +"chèque-cadeau", +"chèque-repas", +"chèque-restaurant", +"chèques-cadeaux", +"chèques-repas", +"chèques-restaurants", +"chèques-vacances", +"chèque-vacances", +"Cherbourg-en-Cotentin", +"Cherbourg-Octeville", +"cherche-fiche", +"cherche-merde", +"cherche-midi", +"cherche-pointe", +"Chérencé-le-Héron", +"Chérencé-le-Roussel", +"Chermizy-Ailles", +"Cherveix-Cubas", +"Cherves-Châtelars", +"Cherves-Richemont", +"Chéry-Chartreuve", +"chéry-chartreuvois", +"Chéry-Chartreuvois", +"chéry-chartreuvoise", +"Chéry-Chartreuvoise", +"chéry-chartreuvoises", +"Chéry-Chartreuvoises", +"Chéry-lès-Pouilly", +"Chéry-lès-Rozoy", +"Chesalles-sur-Moudon", +"Cheseaux-Noréaz", +"Cheseaux-sur-Lausanne", +"Chesne-Arnoul", +"Chesne-Carré", +"Chesne-Dolley", +"Chesnois-Auboncourt", +"Chessy-les-Prés", +"Chester-le-Street", +"Chevagny-les-Chevrières", +"Chevagny-sur-Guye", +"Chevaigné-du-Maine", +"Cheval-Blanc", +"cheval-fondu", +"cheval-garou", +"cheval-heure", +"cheval-jupon", +"cheval-vapeur", +"Chevannes-Changy", +"chevau-léger", +"chevau-légers", +"chevaux-léger", +"chevaux-légers", +"chevaux-vapeur", +"cheveu-de-Marie-Madeleine", +"cheveux-de-Marie-Madeleine", +"Chevigney-lès-Vercel", +"Chevigney-sur-l'Ognon", +"Chevigny-en-Valière", +"Chevigny-Saint-Sauveur", +"Chevillon-sur-Huillard", +"Chevilly-Larue", +"Cheviré-le-Rouge", +"chèvre-choutiste", +"chèvre-choutistes", +"chèvre-feuille", +"chèvre-pied", +"chèvre-pieds", +"chèvres-feuilles", +"Chevresis-Monceau", +"Chevry-Cossigny", +"Chevry-en-Sereine", +"Chevry-sous-le-Bignon", +"chewing-gum", +"chewing-gums", +"Cheylard-l'Evêque", +"Cheylard-l'Évêque", +"Chezal-Benoît", +"Chézery-Forens", +"chez-moi", +"chez-soi", +"chez-sois", +"Chézy-en-Orxois", +"Chézy-sur-Marne", +"Chibougamo-Chapien", +"chiche-face", +"chiche-kebab", +"chiche-kébab", +"chiches-faces", +"chiches-kebabs", +"chie-en-lit", +"chie-en-lits", +"chien-assis", +"chien-cerf", +"chien-chaud", +"chien-chauds", +"chien-de-mer", +"chien-garou", +"chien-loup", +"chienne-louve", +"chiennes-louves", +"chien-nid", +"chien-rat", +"chiens-assis", +"chiens-cerf", +"chiens-de-mer", +"chiens-garous", +"chiens-loups", +"chiens-nids", +"chiens-rats", +"chiffres-clés", +"chiffres-taxes", +"chiffre-taxe", +"Chigny-les-Roses", +"Chilleurs-aux-Bois", +"Chilly-le-Vignoble", +"Chilly-Mazarin", +"Chilly-sur-Salins", +"china-paya", +"Chiopris-Viscone", +"chiotte-kès", +"chiottes-kès", +"Chirac-Bellevue", +"Chirat-l'Eglise", +"Chirat-l'Église", +"Chiré-en-Montreuil", +"chirurgien-dentiste", +"chirurgiens-dentistes", +"Chiry-Ourscamp", +"Chiry-Ourscamps", +"Chissay-en-Touraine", +"Chissey-en-Morvan", +"Chissey-lès-Mâcon", +"Chissey-sur-Loue", +"Chitry-les-Mines", +"Chivres-en-Laonnois", +"Chivres-Val", +"Chivy-lès-Etouvelles", +"Chivy-lès-Étouvelles", +"ch'kâra", +"ch'kâras", +"ch.-l.", +"chloro-IPC", +"chlorpyriphos-éthyl", +"chlorpyriphos-méthyl", +"ch'ni", +"choano-organismes", +"choche-pierre", +"choche-poule", +"Choilley-Dardenay", +"Choisy-au-Bac", +"Choisy-en-Brie", +"Choisy-la-Victoire", +"Choisy-le-Roi", +"Choloy-Ménillot", +"Chonas-l'Amballan", +"Chonville-Malaumont", +"Choqueuse-les-Bénards", +"Chorey-les-Beaune", +"choux-choux", +"choux-fleurs", +"choux-navets", +"choux-palmistes", +"choux-raves", +"Chouzé-sur-Loire", +"Chouzy-sur-Cisse", +"chow-chow", +"chow-chows", +"chrétiens-démocrates", +"christe-marine", +"christes-marines", +"chrom-brugnatellite", +"chrom-brugnatellites", +"chrome-clinozoïsite", +"chrome-clinozoïsites", +"chrome-fluorite", +"chrome-fluorites", +"chrome-pistazite", +"chrome-pistazites", +"chrome-trémolite", +"chrome-trémolites", +"chrome-zoïsite", +"chrome-zoïsites", +"chrono-localisation", +"chrono-localisations", +"ch't'aime", +"ch'ti", +"ch'tiisa", +"ch'tiisai", +"ch'tiisaient", +"ch'tiisais", +"ch'tiisait", +"ch'tiisâmes", +"ch'tiisant", +"ch'tiisas", +"ch'tiisasse", +"ch'tiisassent", +"ch'tiisasses", +"ch'tiisassiez", +"ch'tiisassions", +"ch'tiisât", +"ch'tiisâtes", +"ch'tiise", +"ch'tiisé", +"ch'tiisée", +"ch'tiisées", +"ch'tiisent", +"ch'tiiser", +"ch'tiisera", +"ch'tiiserai", +"ch'tiiseraient", +"ch'tiiserais", +"ch'tiiserait", +"ch'tiiseras", +"ch'tiisèrent", +"ch'tiiserez", +"ch'tiiseriez", +"ch'tiiserions", +"ch'tiiserons", +"ch'tiiseront", +"ch'tiises", +"ch'tiisés", +"ch'tiisez", +"ch'tiisiez", +"ch'tiisions", +"ch'tiisons", +"ch'timi", +"ch'tis", +"Chuffilly-Roche", +"chuteur-op", +"chuteurs-ops", +"cia-cia", +"ci-après", +"ci-attaché", +"ci-contre", +"ci-delez", +"ci-dessous", +"ci-dessus", +"ci-devant", +"Cier-de-Luchon", +"Cier-de-Rivière", +"Cierges-sous-Montfaucon", +"Cierp-Gaud", +"ci-gisent", +"ci-git", +"ci-gît", +"ci-haut", +"ci-hauts", +"ci-incluse", +"ci-incluses", +"ci-joint", +"ci-jointe", +"ci-jointes", +"ci-joints", +"ciné-club", +"ciné-clubs", +"cinéma-dinatoire", +"cinéma-dinatoires", +"ciné-parc", +"cinq-cents", +"cinq-dix-quinze", +"cinq-huitième", +"cinq-marsien", +"Cinq-Marsien", +"cinq-marsienne", +"Cinq-Marsienne", +"cinq-marsiennes", +"Cinq-Marsiennes", +"cinq-marsiens", +"Cinq-Marsiens", +"Cinq-Mars-la-Pile", +"cinq-mâts", +"cinq-quatre-un", +"cinq-six", +"cinquante-cinq", +"cinquante-cinquante", +"cinquante-deux", +"cinquante-et-un", +"cinquante-et-une", +"cinquante-et-unième", +"cinquante-et-unièmes", +"cinquante-huit", +"cinquante-neuf", +"cinquante-quatre", +"cinquante-sept", +"cinquante-six", +"cinquante-trois", +"ci-plus-bas", +"ci-plus-haut", +"circolo-mezzo", +"circonscriptions-clés", +"Circourt-sur-Mouzon", +"circum-aural", +"circum-continental", +"Ciré-d'Aunis", +"cire-pompe", +"cire-pompes", +"Cires-lès-Mello", +"Cirey-lès-Mareilles", +"Cirey-lès-Pontailler", +"Cirey-sur-Blaise", +"Cirey-sur-Vezouze", +"Cirfontaines-en-Azois", +"Cirfontaines-en-Ornois", +"cirque-ménagerie", +"cirques-ménageries", +"cirques-théâtres", +"cirque-théâtre", +"Ciry-le-Noble", +"Ciry-Salsogne", +"Cisai-Saint-Aubin", +"cis-gangétique", +"cis-gangétiques", +"Cissac-Médoc", +"Cisternes-la-Forêt", +"cis-verbénol", +"cité-dortoir", +"cité-État", +"cités-dortoirs", +"cités-États", +"citizen-band", +"citron-pays", +"citrons-pays", +"Civrac-de-Blaye", +"Civrac-de-Dordogne", +"Civrac-en-Médoc", +"Civrac-sur-Dordogne", +"Civray-de-Touraine", +"Civray-sur-Cher", +"Civray-sur-Esves", +"Civrieux-d'Azergues", +"Civry-en-Montagne", +"Civry-la-Forêt", +"Civry-sur-Serein", +"Cizay-la-Madeleine", +"clac-clac", +"clac-clacs", +"Clacton-on-Sea", +"Clacy-et-Thierret", +"Clairefontaine-en-Yvelines", +"Clairvaux-d'Aveyron", +"Clairvaux-les-Lacs", +"Clairy-Saulchoix", +"claque-merde", +"claque-oreille", +"claque-oreilles", +"claque-patin", +"claque-patins", +"Clarafond-Arcine", +"Clausthal-Zellerfeld", +"Clavans-en-Haut-Oisans", +"clavi-cylindre", +"clavi-harpe", +"Claville-Motteville", +"clavi-lyre", +"Clavy-Warby", +"Claye-Souilly", +"Cléden-Cap-Sizun", +"Cléden-Poher", +"clématites-viornes", +"clématite-viorne", +"Clémence-d'Ambel", +"Cléon-d'Andran", +"Cléré-du-Bois", +"Cléré-les-Pins", +"Cléré-sur-Layon", +"Clérey-la-Côte", +"Clérey-sur-Brenon", +"clérico-nationaliste", +"clérico-nationalistes", +"Clermont-Créans", +"Clermont-de-Beauregard", +"Clermont-Dessous", +"Clermont-Dessus", +"Clermont-d'Excideuil", +"Clermont-en-Argonne", +"Clermont-Ferrand", +"Clermont-le-Fort", +"Clermont-les-Fermes", +"Clermont-l'Hérault", +"Clermont-Pouyguillès", +"Clermont-Savès", +"Clermont-Soubiran", +"Clermont-sous-Huy", +"Clermont-sur-Lauquet", +"Cléry-en-Vexin", +"Cléry-Grand", +"Cléry-le-Grand", +"Cléry-le-Petit", +"Cléry-Petit", +"Cléry-Saint-André", +"Cléry-sur-Somme", +"clic-clac", +"Clichy-sous-Bois", +"client-cible", +"client-cibles", +"client-serveur", +"cligne-musette", +"climato-sceptique", +"climato-sceptiques", +"Clinchamps-sur-Orne", +"clin-foc", +"clin-focs", +"cloche-pied", +"cloche-pieds", +"cloche-plaque", +"clodinafop-propargyl", +"Clohars-Carnoët", +"Clohars-Fouesnant", +"Clonas-sur-Varèze", +"clopin-clopant", +"cloquintocet-mexyl", +"Clos-Fontaine", +"clos-fontainois", +"Clos-Fontainois", +"clos-fontainoise", +"Clos-Fontainoise", +"clos-fontainoises", +"Clos-Fontainoises", +"clos-masure", +"clos-masures", +"clos-vougeot", +"clos-vougeots", +"Cloyes-les-Trois-Rivières", +"Cloyes-sur-le-Loir", +"Cloyes-sur-Marne", +"club-house", +"clubs-houses", +"Cluj-Napoca", +"Clun's", +"Clussais-la-Pommeraie", +"Clux-Villeneuve", +"Cluze-et-Pâquier", +"Coat-Méal", +"coat-méalien", +"Coat-Méalien", +"coat-méalienne", +"Coat-Méalienne", +"coat-méaliennes", +"Coat-Méaliennes", +"coat-méaliens", +"Coat-Méaliens", +"cobalt-gris", +"cobalt-mica", +"cobalt-ochre", +"cobalto-épsomite", +"cobalto-épsomites", +"cobalto-sphaérosidérite", +"cobalto-sphaérosidérites", +"cobalts-gris", +"cobalts-micas", +"cobalts-ochres", +"Cochem-Zell", +"cochon-garou", +"cochons-garous", +"coco-de-mer", +"coco-fesses", +"cocotte-minute", +"Cocquio-Trevisago", +"codes-barres", +"codes-clés", +"cœur-de-Jeannette", +"coeur-de-pigeon", +"cœur-de-pigeon", +"coeurs-de-pigeon", +"coeurs-de-pigeons", +"cœurs-de-pigeons", +"Cœuvres-et-Valsery", +"coffre-fort", +"coffres-forts", +"Cognac-la-Forêt", +"Cognac-le-Froid", +"Cognat-Lyonne", +"Cognin-les-Gorges", +"Cognocoli-Monticchi", +"Coiffy-le-Bas", +"Coiffy-le-Haut", +"coin-coin", +"coin-coins", +"Coin-lès-Cuvry", +"Coin-sur-Seille", +"Coise-Saint-Jean-Pied-Gauthier", +"Coizard-Joches", +"Colayrac-Saint-Cirq", +"colin-maillard", +"colin-tampon", +"colis-route", +"colis-routes", +"Collandres-Quincarnon", +"collant-pipette", +"collant-pipettes", +"collé-serré", +"collés-serrés", +"collet-monté", +"Colleville-Montgomery", +"Colleville-sur-Mer", +"Colleville-sur-Orne", +"Collex-Bossy", +"Colligis-Crandelain", +"Colligny-Maizery", +"Colline-Beaumont", +"colloid-calcite", +"colloid-calcites", +"Collombey-Muraz", +"Collonge-Bellerive", +"Collonge-en-Charollais", +"Collonge-la-Madeleine", +"Collonges-au-Mont-d'Or", +"Collonges-la-Rouge", +"Collonges-lès-Bévy", +"Collonges-lès-Premières", +"Collonges-sous-Salève", +"Colmar-Berg", +"Colmesnil-Manneville", +"Colmier-le-Bas", +"Colmier-le-Haut", +"col-nu", +"Colombé-la-Fosse", +"Colombe-lès-Bithaine", +"Colombé-le-Sec", +"Colombe-lès-Vesoul", +"Colombey-les-Belles", +"Colombey-lès-Choiseul", +"Colombey-les-Deux-Eglises", +"Colombey-les-Deux-Églises", +"Colombie-Anglaise", +"Colombie-Britannique", +"Colombier-Châtelot", +"Colombier-en-Brionnais", +"Colombières-sur-Orb", +"Colombier-Fontaine", +"Colombier-le-Cardinal", +"Colombier-le-Jeune", +"Colombier-le-Vieux", +"Colombier-Saugnieu", +"Colombiers-du-Plessis", +"Colombiers-sur-Seulles", +"Colomby-Anguerny", +"Colomby-sur-Thaon", +"Colonard-Corubert", +"Colpach-Bas", +"Colpach-Haut", +"Colroy-la-Grande", +"Colroy-la-Roche", +"cols-nus", +"cols-verts", +"col-vert", +"col-verts", +"colville-okanagan", +"Comberanche-et-Epeluche", +"Comberanche-et-Épeluche", +"combi-short", +"combi-shorts", +"Comblain-au-Pont", +"Comblain-Fairon", +"comble-lacune", +"comble-lacunes", +"Combles-en-Barrois", +"Combres-sous-les-Côtes", +"Combs-la-Ville", +"com'com", +"come-back", +"comédie-ballet", +"comédies-ballets", +"Comezzano-Cizzago", +"Comines-Warneton", +"Comin-Yanga", +"Commelle-Vernay", +"commissaire-priseur", +"commissaires-priseurs", +"commis-voyageur", +"commis-voyageurs", +"Communailles-en-Montagne", +"compère-loriot", +"compères-loriot", +"compositeur-typographe", +"compositeur-typographes", +"Comps-la-Grand-Ville", +"Comps-sur-Artuby", +"comptes-rendus", +"concavo-concave", +"concavo-convexe", +"Conches-en-Ouche", +"Conches-sur-Gondoire", +"Conchez-de-Béarn", +"Conchil-le-Temple", +"Conchy-les-Pots", +"Conchy-sur-Canche", +"Concœur-et-Corboin", +"Concourson-sur-Layon", +"Condat-en-Combraille", +"Condat-lès-Montboissier", +"Condat-sur-Ganaveix", +"Condat-sur-Trincou", +"Condat-sur-Vézère", +"Condat-sur-Vienne", +"Condé-en-Brie", +"Condé-en-Normandie", +"Condé-Folie", +"Condeixa-a-Nova", +"Condé-lès-Autry", +"Condé-lès-Herpy", +"Condé-lès-Vouziers", +"Condé-Northen", +"Condé-Sainte-Libiaire", +"Condé-sur-Aisne", +"Condé-sur-Huisne", +"Condé-sur-Ifs", +"Condé-sur-Iton", +"Condé-sur-l'Escaut", +"Condé-sur-Marne", +"Condé-sur-Noireau", +"Condé-sur-Risle", +"Condé-sur-Sarthe", +"Condé-sur-Seulles", +"Condé-sur-Suippe", +"Condé-sur-Vesgre", +"Condé-sur-Vire", +"Condom-d'Aubrac", +"conférences-débats", +"Conflans-en-Jarnisy", +"Conflans-Sainte-Honorine", +"Conflans-sur-Anille", +"Conflans-sur-Lanterne", +"Conflans-sur-Loing", +"Conflans-sur-Seine", +"Confolent-Port-Dieu", +"conforte-main", +"Confort-Meilars", +"Congerville-Thionville", +"Congé-sur-Orne", +"Congis-sur-Thérouanne", +"Congo-Brazzaville", +"congo-kinois", +"Congo-Kinshasa", +"Congo-Léo", +"Congo-Léopoldville", +"congolo-kinois", +"congolo-kinoise", +"congolo-kinoises", +"Conie-Molitard", +"Conilhac-Corbières", +"Conilhac-de-la-Montagne", +"Connantray-Vaurefroy", +"Conne-de-la-Barde", +"Conne-de-Labarde", +"Conques-en-Rouergue", +"Conques-sur-Orbiel", +"conseil-général", +"Cons-la-Grandville", +"Consolation-Maisonnettes", +"Cons-Sainte-Colombe", +"Contamine-Sarzin", +"Contamine-sur-Arve", +"Conteville-en-Ternois", +"Conteville-lès-Boulogne", +"contra-latéral", +"contrat-cadre", +"contrats-cadres", +"Contres-en-Vairais", +"contrôle-commande", +"Contz-les-Bains", +"convexo-concave", +"copiable-collable", +"copiables-collables", +"copia-colla", +"copiage-collage", +"copiages-collages", +"copiai-collai", +"copiaient-collaient", +"copiais-collais", +"copiait-collait", +"copiâmes-collâmes", +"copiant-collant", +"copias-collas", +"copiasse-collasse", +"copiassent-collassent", +"copiasses-collasses", +"copiassiez-collassiez", +"copiassions-collassions", +"copiât-collât", +"copiâtes-collâtes", +"copie-colle", +"copié-collé", +"copié-collés", +"copiée-collée", +"copiées-collées", +"copie-lettres", +"copient-collent", +"copiera-collera", +"copierai-collerai", +"copieraient-colleraient", +"copierais-collerais", +"copierait-collerait", +"copieras-colleras", +"copier-coller", +"copier-collers", +"copièrent-collèrent", +"copierez-collerez", +"copieriez-colleriez", +"copierions-collerions", +"copierons-collerons", +"copieront-colleront", +"copies-colles", +"copiés-collés", +"copiez-collez", +"copiez-colliez", +"copions-collions", +"copions-collons", +"coq-à-l'âne", +"coq-de-roche", +"coq-héron", +"coqs-de-roche", +"coq-souris", +"coquel'œil", +"coquel'œils", +"coral-rag", +"corbeau-pêcheur", +"corbeaux-pêcheurs", +"Corbeil-Cerf", +"Corbeil-Essonnes", +"corbeil-essonnois", +"Corbeil-Essonnois", +"corbeil-essonnoise", +"Corbeil-Essonnoise", +"corbeil-essonnoises", +"Corbeil-Essonnoises", +"Corbère-Abères", +"Corbère-les-Cabanes", +"Corcelle-Mieslot", +"Corcelles-Cormondrèche", +"Corcelles-en-Beaujolais", +"Corcelles-Ferrières", +"Corcelles-le-Jorat", +"Corcelles-les-Arts", +"Corcelles-lès-Cîteaux", +"Corcelles-les-Monts", +"Corcelles-près-Concise", +"Corcelles-près-Payerne", +"Corcelles-sur-Chavornay", +"Corcoué-sur-Logne", +"Cordes-sur-Ciel", +"Cordes-Tolosannes", +"cordons-bleus", +"Corée-du-Nord", +"Corée-du-Sud", +"Corgnac-sur-l'Isle", +"Cormaranche-en-Bugey", +"Corme-Ecluse", +"Corme-Écluse", +"Cormeilles-en-Parisis", +"Cormeilles-en-Vexin", +"Cormelles-le-Royal", +"Corme-Royal", +"Cormoranche-sur-Saône", +"Cormot-le-Grand", +"Cormot-Vauchignon", +"corned-beef", +"corned-beefs", +"Corneilla-de-Conflent", +"Corneilla-del-Vercol", +"Corneilla-la-Rivière", +"Corneville-la-Fouquetière", +"Corneville-sur-Risle", +"corn-flake", +"corn-flakes", +"Cornillé-les-Caves", +"Cornillon-Confoux", +"Cornillon-en-Trièves", +"Cornillon-sur-l'Oule", +"Corny-la-Ville", +"Corny-Machéroménil", +"Corny-sur-Moselle", +"Corpataux-Magnedens", +"Corpoyer-la-Chapelle", +"corps-mort", +"corps-morts", +"Corps-Nuds", +"Corral-Rubio", +"Corrençon-en-Vercors", +"Corroy-le-Château", +"Corroy-le-Grand", +"Corse-du-Sud", +"Corsier-sur-Vevey", +"cortico-cortical", +"cortico-corticale", +"cortico-corticales", +"cortico-corticaux", +"Cortil-Noirmont", +"cortil-noirmontois", +"Cortil-Noirmontois", +"Cortil-Noirmontoise", +"Cortil-Wodon", +"Corvol-d'Embernard", +"Corvol-l'Orgueilleux", +"Coslédaà-Lube-Boast", +"Cosne-Cours-sur-Loire", +"Cosne-d'Allier", +"Cosnes-et-Romain", +"Cossé-d'Anjou", +"Cossé-en-Champagne", +"Cossé-le-Vivien", +"costard-cravate", +"costards-cravates", +"Costa-Rica", +"Costa-Ricain", +"costa-ricien", +"Costa-Ricien", +"costa-ricienne", +"Costa-Ricienne", +"costa-riciennes", +"Costa-Riciennes", +"costa-riciens", +"Costa-Riciens", +"costo-claviculaire", +"costo-sternal", +"costo-thoracique", +"costo-vertébral", +"costo-vertébrale", +"costo-vertébrales", +"costo-vertébraux", +"cosy-corner", +"cosy-corners", +"Coteau-Landais", +"Coteau-Libre", +"Coteaux-du-Lizon", +"Côtes-d'Armor", +"côtes-de-toul", +"Côtes-du-Nord", +"côtes-du-rhône", +"côtes-du-Rhône", +"côtes-du-rhônes", +"Coti-Chiavari", +"coton-poudre", +"coton-poudres", +"cotons-poudres", +"cotons-tiges", +"coton-tige", +"cotte-hardie", +"cottes-hardies", +"couble-soiffière", +"couche-culotte", +"couche-point", +"couche-points", +"couches-culottes", +"Couches-les-Mines", +"couche-tard", +"couche-tôt", +"couci-couça", +"couci-couci", +"Coucy-la-Ville", +"Coucy-le-Château", +"Coucy-le-Château-Auffrique", +"Coucy-lès-Eppes", +"Coucy-les-Saints", +"coude-à-coude", +"cou-de-jatte", +"Coudekerque-Branche", +"Coudekerque-sur-le-Rhin", +"Coudekerque-Village", +"cou-de-pied", +"coude-pied", +"Coudeville-sur-Mer", +"Coudray-au-Perche", +"Coudray-Rabut", +"Couesmes-Vaucé", +"Couffy-sur-Sarsonne", +"Couilly-Pont-aux-Dames", +"cou-jaune", +"Coulanges-la-Vineuse", +"Coulanges-lès-Nevers", +"Coulanges-sur-Yonne", +"Coulans-sur-Gée", +"Coulans-sur-Lizon", +"coule-sang", +"Coulmier-le-Sec", +"Coulombs-en-Valois", +"Coulommes-et-Marqueny", +"Coulommes-la-Montagne", +"Coulommes-lès-Attigny", +"Coulommiers-la-Tour", +"Coulonges-Cohan", +"Coulonges-les-Sablons", +"Coulonges-sur-l'Autize", +"Coulonges-sur-Sarthe", +"Coulonges-Thouarsais", +"Coulonge-sur-Charente", +"Couloumé-Mondebat", +"Coulounieix-Chamiers", +"Coulouvray-Boisbenâtre", +"cou-nu", +"coupé-cabriolet", +"coupé-collé", +"coupé-décalé", +"coupé-lit", +"Coupelle-Neuve", +"Coupelle-Vieille", +"couper-coller", +"coupés-cabriolets", +"coupés-collés", +"coupés-décalés", +"coupés-lits", +"coupon-réponse", +"coupons-réponses", +"coups-de-poing", +"courant-jet", +"courants-jets", +"Courcelles-au-Bois", +"Courcelles-Chaussy", +"Courcelles-de-Touraine", +"Courcelles-en-Barrois", +"Courcelles-en-Bassée", +"Courcelles-en-Montagne", +"Courcelles-Epayelles", +"Courcelles-Frémoy", +"Courcelles-la-Forêt", +"Courcelles-le-Comte", +"Courcelles-lès-Châtillon", +"Courcelles-lès-Gisors", +"Courcelles-lès-Lens", +"Courcelles-lès-Montbard", +"Courcelles-lès-Montbéliard", +"Courcelles-lès-Semur", +"Courcelles-Sapicourt", +"Courcelles-sous-Châtenois", +"Courcelles-sous-Moyencourt", +"Courcelles-sous-Thoix", +"Courcelles-sur-Aire", +"Courcelles-sur-Aujon", +"Courcelles-sur-Blaise", +"Courcelles-sur-Nied", +"Courcelles-sur-Seine", +"Courcelles-sur-Vesle", +"Courcelles-sur-Vesles", +"Courcelles-sur-Viosne", +"Courcelles-sur-Voire", +"Courcelles-Val-d'Esnoms", +"Cour-Cheverny", +"Courcy-aux-Loges", +"Courdimanche-sur-Essonne", +"Cour-et-Buis", +"coure-vite", +"Cour-l'Evêque", +"Cour-l'Évêque", +"Courlon-sur-Yonne", +"cour-masure", +"Cournon-d'Auvergne", +"Cour-Saint-Maurice", +"Coursan-en-Othe", +"Cours-de-Monségur", +"Cours-de-Pile", +"cours-de-pilois", +"Cours-de-Pilois", +"cours-de-piloise", +"Cours-de-Piloise", +"cours-de-piloises", +"Cours-de-Piloises", +"course-poursuite", +"courses-poursuites", +"Courseulles-sur-Mer", +"Cours-la-Ville", +"Cours-les-Bains", +"Cours-les-Barres", +"Courson-les-Carrières", +"Courson-Monteloup", +"Cour-sur-Heure", +"Cour-sur-Loire", +"courte-botte", +"courte-épée", +"courte-épine", +"courte-épines", +"courte-graisse", +"courte-lettre", +"Courtemont-Varennes", +"courte-pointe", +"courte-pointier", +"courte-queue", +"courtes-bottes", +"courtes-épées", +"courtes-lettres", +"Courtesoult-et-Gatey", +"courtes-pattes", +"courtes-pointes", +"courtes-queues", +"Courtetain-et-Salans", +"Courtine-le-Trucq", +"Courtois-sur-Yonne", +"Courtonne-la-Meurdrac", +"Courtonne-les-Deux-Eglises", +"Courtonne-les-Deux-Églises", +"Courtrai-Dutsel", +"Courtrizy-et-Fussigny", +"courts-bandages", +"courts-boutons", +"courts-circuits", +"courts-côtés", +"courts-cureaux", +"courts-jus", +"courts-métrages", +"courts-tours", +"Courville-sur-Eure", +"Cousances-au-Bois", +"Cousances-les-Forges", +"Cousances-lès-Triconville", +"cous-cous", +"cous-de-jatte", +"cous-de-pied", +"cous-jaunes", +"Coussac-Bonneval", +"Coussay-les-Bois", +"cout'donc", +"couteau-de-chasse", +"couteau-scie", +"couteaux-de-chasse", +"couteaux-scie", +"Couthures-sur-Garonne", +"Couture-d'Argenson", +"Couture-Saint-Germain", +"Couture-sur-Loir", +"couvre-casque", +"couvre-casques", +"couvre-chaussure", +"couvre-chaussures", +"couvre-chef", +"couvre-chefs", +"couvre-clef", +"couvre-clefs", +"couvre-face", +"couvre-faces", +"couvre-feu", +"couvre-feux", +"couvre-giberne", +"couvre-gibernes", +"couvre-joint", +"couvre-joints", +"couvre-lit", +"couvre-lits", +"couvre-livre", +"couvre-livres", +"couvre-lumière", +"couvre-lumières", +"couvre-manche", +"couvre-manches", +"couvre-nuque", +"couvre-nuques", +"couvre-objet", +"couvre-objets", +"couvre-orteil", +"couvre-orteils", +"couvre-pied", +"couvre-pieds", +"couvre-plat", +"couvre-plats", +"couvre-shako", +"couvre-shakos", +"couvre-sol", +"couvre-sols", +"couvreur-zingueur", +"Couvron-et-Aumencourt", +"Coux-et-Bigaroque", +"Couze-et-Saint-Front", +"Couzon-au-Mont-d'Or", +"Couzon-sur-Coulange", +"cover-girl", +"cover-girls", +"cow-boy", +"cow-boys", +"coxa-retrorsa", +"coxo-fémoral", +"Coye-la-Forêt", +"c'que", +"c'qui", +"crabe-araignée", +"crabes-araignées", +"crac-crac", +"crachouillot-thérapeute", +"craignant-Dieu", +"Crandelain-et-Malval", +"cran-gevrien", +"Cran-Gevrien", +"cran-gevrienne", +"Cran-Gevrienne", +"cran-gevriennes", +"Cran-Gevriennes", +"cran-gevriens", +"Cran-Gevriens", +"Cran-Gevrier", +"cranio-facial", +"Crannes-en-Champagne", +"Crans-près-Céligny", +"Cranves-Sales", +"cranves-salien", +"Cranves-Salien", +"cranves-saliène", +"Cranves-Saliène", +"cranves-saliènes", +"Cranves-Saliènes", +"cranves-saliens", +"Cranves-Saliens", +"crapaud-buffle", +"crapauds-buffles", +"crapet-soleil", +"Craponne-sur-Arzon", +"Cras-Avernas", +"Cras-sur-Reyssouze", +"Crasville-la-Mallet", +"Crasville-la-Rocquefort", +"Cravant-les-Côteaux", +"crayon-feutre", +"crayons-feutre", +"crayons-feutres", +"crayon-souris", +"créateur-typographe", +"Crécey-sur-Tille", +"Crêches-sur-Saône", +"Crécy-au-Mont", +"Crécy-Couvé", +"Crécy-en-Ponthieu", +"Crécy-la-Chapelle", +"Crécy-sur-Serre", +"crédit-bail", +"crédits-bail", +"crédits-bails", +"crédits-baux", +"crédits-temps", +"crédit-temps", +"Crégy-lès-Meaux", +"Crempigny-Bonneguête", +"Creney-près-Troyes", +"Crennes-sur-Fraubée", +"Créon-d'Armagnac", +"Crépieux-la-Pape", +"Crépy-en-Laonnois", +"Crépy-en-Valois", +"Crespy-le-Neuf", +"Cressac-Saint-Genis", +"Cressin-Rochefort", +"Cressy-Omencourt", +"Cressy-sur-Somme", +"Crest-Voland", +"crest-volantain", +"Crest-Volantain", +"crest-volantaine", +"Crest-Volantaine", +"crest-volantaines", +"Crest-Volantaines", +"crest-volantains", +"Crest-Volantains", +"Cré-sur-Loir", +"crête-de-coq", +"crête-marine", +"crêtes-de-coq", +"crêtes-marines", +"Creutzwald-la-Croix", +"Creuzier-le-Neuf", +"Creuzier-le-Vieux", +"Crevans-et-la-Chapelle-lès-Granges", +"Crevant-Laveine", +"crève-chassis", +"crève-chien", +"crève-chiens", +"crève-coeur", +"crève-cœur", +"Crèvecoeur-en-Auge", +"Crèvecœur-en-Auge", +"Crèvecœur-en-Brie", +"Crèvecœur-le-Grand", +"Crèvecœur-le-Petit", +"crève-coeurs", +"crève-cœurs", +"Crèvecoeur-sur-l'Escaut", +"Crèvecœur-sur-l'Escaut", +"crève-la-dalle", +"crève-la-faim", +"crevette-mante", +"crevettes-mantes", +"crève-vessie", +"crève-vessies", +"Creys-Mépieu", +"Creyssensac-et-Pissot", +"Crézançay-sur-Cher", +"Crézancy-en-Sancerre", +"cric-crac", +"crico-trachéal", +"crico-trachéale", +"crico-trachéales", +"crico-trachéaux", +"Cricqueville-en-Auge", +"Cricqueville-en-Bessin", +"cri-cri", +"cri-cris", +"Criel-sur-Mer", +"Crillon-le-Brave", +"Criquebeuf-en-Caux", +"Criquebeuf-la-Campagne", +"Criquebeuf-sur-Seine", +"Criquetot-le-Mauconduit", +"Criquetot-l'Esneval", +"Criquetot-sur-Longueville", +"Criquetot-sur-Ouville", +"Crissay-sur-Manse", +"cristallo-électrique", +"cristallo-électriques", +"criste-marine", +"Criteuil-la-Magdeleine", +"croad-langshan", +"croc-en-jambe", +"crocs-en-jambe", +"croiseur-école", +"croiseurs-écoles", +"Croissy-Beaubourg", +"Croissy-sur-Celle", +"Croissy-sur-Seine", +"Croisy-sur-Andelle", +"Croisy-sur-Eure", +"croix-caluois", +"Croix-Caluois", +"croix-caluoise", +"Croix-Caluoise", +"croix-caluoises", +"Croix-Caluoises", +"Croix-Caluyau", +"Croix-Chapeau", +"croix-de-feu", +"croix-de-Malte", +"Croix-de-Vie", +"Croix-en-Ternois", +"Croix-Fonsomme", +"Croix-Fonsommes", +"Croix-lez-Rouveroy", +"Croix-Mare", +"Croix-Moligneaux", +"croix-pile", +"Croix-Rousse", +"croix-roussien", +"Croix-roussien", +"croix-roussienne", +"Croix-roussienne", +"croix-roussiennes", +"Croix-roussiennes", +"croix-roussiens", +"Croix-roussiens", +"Croix-Valmer", +"Croizet-sur-Gand", +"Cro-Magnon", +"Cro-Magnons", +"cromlec'h", +"cromlec'hs", +"croque-abeilles", +"croque-au-sel", +"croque-en-bouche", +"croque-lardon", +"croque-lardons", +"croque-madame", +"croque-madames", +"croque-mademoiselle", +"croque-mademoiselles", +"croque-messieurs", +"croque-mitaine", +"croque-mitaines", +"croque-monsieur", +"croque-monsieurs", +"croque-mort", +"croque-morts", +"croque-moutons", +"croque-noisette", +"croque-noisettes", +"croque-noix", +"croque-note", +"Cros-de-Géorand", +"Cros-de-Montvert", +"Cros-de-Ronesque", +"Crosey-le-Grand", +"Crosey-le-Petit", +"crossing-over", +"Crosville-la-Vieille", +"Crosville-sur-Douve", +"Crosville-sur-Scie", +"crotte-du-diable", +"crotte-du-Diable", +"crottes-du-diable", +"crottes-du-Diable", +"Crottes-en-Pithiverais", +"Crouttes-sur-Marne", +"Crouy-en-Thelle", +"Crouy-Saint-Pierre", +"Crouy-sur-Cosson", +"Crouy-sur-Ourcq", +"Crouzet-Migette", +"crown-glass", +"Crozes-Hermitage", +"Crozon-sur-Vauvre", +"Crucey-Villages", +"cruci-capétien", +"Cruci-Capétien", +"cruci-capétienne", +"Cruci-Capétienne", +"cruci-capétiennes", +"Cruci-Capétiennes", +"cruci-capétiens", +"Cruci-Capétiens", +"cruci-falgardien", +"Cruci-Falgardien", +"cruci-falgardienne", +"Cruci-Falgardienne", +"cruci-falgardiennes", +"Cruci-Falgardiennes", +"cruci-falgardiens", +"Cruci-Falgardiens", +"crud-ammoniac", +"Cruquius-Oost", +"Cruviers-Lascours", +"Crux-la-Ville", +"Cruzilles-lès-Mépillat", +"Cruzy-le-Châtel", +"crypto-communiste", +"crypto-luthérien", +"crypto-luthérienne", +"crypto-luthériennes", +"crypto-luthériens", +"crypto-monnaie", +"crypto-monnaies", +"c'te", +"Cubières-sur-Cinoble", +"cubito-carpien", +"cubito-carpienne", +"cubito-carpiennes", +"cubito-carpiens", +"Cubjac-Auvézère-Val-d'Ans", +"cubo-prismatique", +"cubo-prismatiques", +"Cubry-lès-Faverney", +"Cubry-lès-Soing", +"Cubzac-les-Ponts", +"cucu-la-praline", +"cucul-la-praline", +"cueille-essaim", +"cueille-fruits", +"cueilleur-égreneur", +"cueilleurs-égreneurs", +"cueilleuse-égreneuse", +"cueilleuse-épanouilleuse", +"cueilleuses-égreneuses", +"cueilleuses-épanouilleuses", +"Cuges-les-Bains", +"Cuges-les-Pins", +"Cugliate-Fabiasco", +"Cugny-lès-Crouttes", +"cui-cui", +"Cuigy-en-Bray", +"çui-là", +"cuir-laine", +"Cuiry-Housse", +"cuiry-houssien", +"Cuiry-Houssien", +"cuiry-houssienne", +"Cuiry-Houssienne", +"cuiry-houssiennes", +"Cuiry-Houssiennes", +"cuiry-houssiens", +"Cuiry-Houssiens", +"Cuiry-lès-Chaudardes", +"Cuiry-lès-Iviers", +"Cuise-la-Motte", +"cuisse-de-nymphe", +"cuisse-madame", +"cuisse-madames", +"Cuissy-et-Geny", +"Cuisy-en-Almont", +"cuit-poires", +"cuit-pommes", +"cuit-vapeur", +"cuit-vapeurs", +"Cujavie-Poméranie", +"cul-bas", +"cul-bénit", +"cul-blanc", +"cul-brun", +"cul-cul", +"culcul-la-praline", +"cul-culs", +"cul-de-basse-fosse", +"cul-de-bouteille", +"cul-de-chien", +"cul-de-four", +"cul-de-jatte", +"cul-de-lampe", +"cul-de-plomb", +"cul-de-porc", +"cul-de-poule", +"cul-de-sac", +"cul-des-sartois", +"Cul-des-Sartois", +"Cul-des-Sartoise", +"Cul-des-Sarts", +"cul-doré", +"Culey-le-Patry", +"culit-api", +"Culles-les-Roches", +"cul-levé", +"cul-rouge", +"cul-rousselet", +"culs-bénits", +"culs-blancs", +"culs-de-basse-fosse", +"culs-de-bouteille", +"culs-de-chien", +"culs-de-four", +"culs-de-jatte", +"culs-de-lampe", +"culs-de-plomb", +"culs-de-poule", +"culs-de-sac", +"culs-levés", +"culs-rouges", +"culs-terreux", +"cul-terreux", +"cultivateurs-tasseurs", +"cultivateur-tasseur", +"culturo-scientifique", +"culturo-scientifiques", +"Cumières-le-Mort-Homme", +"cumulo-nimbus", +"Cuncy-lès-Varzy", +"cunéo-scaphoïdien", +"cupro-allophane", +"cupro-allophanes", +"cupro-aluminium", +"cupro-aluminiums", +"cupro-ammoniacal", +"cupro-elbaïte", +"cupro-elbaïtes", +"cupro-fraipontite", +"cupro-fraipontites", +"cupro-nickel", +"cupro-nickels", +"Cuq-Toulza", +"Curçay-sur-Dive", +"Curciat-Dongalon", +"Curcy-sur-Orne", +"cure-dent", +"cure-dents", +"cure-feu", +"cure-feux", +"Cureghem-lez-Bruxelles", +"cure-langue", +"cure-langues", +"cure-môle", +"cure-ongle", +"cure-ongles", +"cure-oreille", +"cure-oreilles", +"cure-pied", +"cure-pieds", +"cure-pipe", +"cure-pipes", +"Curis-au-Mont-d'Or", +"Cursolo-Orasso", +"Curtil-Saint-Seine", +"Curtil-sous-Buffières", +"Curtil-sous-Burnand", +"Curtil-Vergy", +"curti-marignacais", +"Curti-Marignacais", +"curti-marignacaise", +"Curti-Marignacaise", +"curti-marignacaises", +"Curti-Marignacaises", +"Curzay-sur-Vonne", +"Cuse-et-Adrisans", +"Cussac-Fort-Médoc", +"Cussac-sur-Loire", +"Cussey-les-Forges", +"Cussey-sur-Lison", +"Cussey-sur-l'Ognon", +"Cussy-en-Morvan", +"Cussy-la-Colonne", +"Cussy-le-Châtel", +"Cussy-les-Forges", +"custodi-nos", +"Cuttoli-Corticchiato", +"Cuverville-sur-Yères", +"Cuxac-Cabardès", +"Cuxac-d'Aude", +"Cuyk-Sainte-Agathe", +"Cuy-Saint-Fiacre", +"cycle-car", +"cycle-cars", +"cyclo-bus", +"cyclo-cross", +"cyclo-draisine", +"cyclo-draisines", +"cyclo-nomade", +"cyclo-nomades", +"cyclo-octyl-diméthylurée", +"cyclo-pousse", +"cyclo-pousses", +"cyhalofop-butyl", +"cylindro-conique", +"Cys-la-Commune", +"cyth's", +"cyto-architectonie", +"cyto-architectonies", +"cyto-architectonique", +"cyto-architectoniques", +"Dagny-Lambercy", +"Dahme-Forêt-de-Spree", +"Dain-en-Saulnois", +"Dainville-Bertheléville", +"dalai-lama", +"dalaï-lama", +"dalai-lamas", +"dalaï-lamas", +"Dalberg-Wendelstorf", +"Dallgow-Döberitz", +"Damas-aux-Bois", +"Damas-et-Bettegney", +"Dambach-la-Ville", +"Dambenoît-lès-Colombe", +"dame-aubert", +"dame-d'onze-heures", +"dame-jeanne", +"Dame-Marie", +"Dame-Marie-les-Bois", +"dame-pipi", +"dame-ronde", +"dames-d'onze-heures", +"dames-jeannes", +"dames-pipi", +"dames-rondes", +"Dammarie-en-Puisaye", +"Dammarie-les-Lys", +"Dammarie-sur-Loing", +"Dammarie-sur-Saulx", +"Dammartin-en-Goële", +"Dammartin-en-Serve", +"Dammartin-les-Templiers", +"Dammartin-Marpain", +"Dammartin-sur-Meuse", +"Dammartin-sur-Tigeaux", +"d-amphétamine", +"Dampierre-au-Temple", +"Dampierre-en-Bray", +"Dampierre-en-Bresse", +"Dampierre-en-Burly", +"Dampierre-en-Crot", +"Dampierre-en-Graçay", +"Dampierre-en-Montagne", +"Dampierre-en-Yvelines", +"Dampierre-et-Flée", +"Dampierre-le-Château", +"Dampierre-les-Bois", +"Dampierre-lès-Conflans", +"Dampierre-Saint-Nicolas", +"Dampierre-sous-Bouhy", +"Dampierre-sous-Brou", +"Dampierre-sur-Aube", +"Dampierre-sur-Auve", +"Dampierre-sur-Avre", +"Dampierre-sur-Blévy", +"Dampierre-sur-Boutonne", +"Dampierre-sur-le-Doubs", +"Dampierre-sur-Linotte", +"Dampierre-sur-Loire", +"Dampierre-sur-Moivre", +"Dampierre-sur-Salon", +"Dampvalley-lès-Colombe", +"Dampvalley-Saint-Pancras", +"Dancourt-Popincourt", +"Dangé-Saint-Romain", +"Danne-et-Quatre-Vents", +"Dannemarie-sur-Crète", +"Dannstadt-Schauernheim", +"danse-poteau", +"Danube-Ries", +"Danvou-la-Ferrière", +"Dão-Lafões", +"dare-dare", +"dar-et-dar", +"Darmstadt-Dieburg", +"Darney-aux-Chênes", +"datte-de-mer", +"Daubeuf-la-Campagne", +"Daubeuf-près-Vatteville", +"Daubeuf-Serville", +"Daumazan-sur-Arize", +"Dauzat-sur-Vodable", +"D-Day", +"dead-line", +"dead-lines", +"débat-spectacle", +"Débats-Rivière-d'Orpra", +"débauche-embauche", +"déca-ampère", +"déca-ampères", +"de-ci", +"Décines-Charpieu", +"découd-vite", +"découpe-neige", +"découpes-neige", +"décrochez-moi-ça", +"Dégrad-Edmond", +"Dégrad-Samson", +"déjà-vu", +"de-là", +"Delap-Uliga-Darrit", +"Delley-Portalban", +"Delouze-Rosières", +"Demange-aux-Eaux", +"déméton-méthyl", +"Demitz-Thumitz", +"démocrate-chrétien", +"démocrate-chrétienne", +"démocrates-chrétiennes", +"démocrates-chrétiens", +"démonte-pneu", +"démonte-pneus", +"dena'ina", +"dena'inas", +"Deneuille-lès-Chantelle", +"Deneuille-les-Mines", +"Dénezé-sous-Doué", +"Dénezé-sous-le-Lude", +"Dennweiler-Frohnbach", +"dent-de-cheval", +"dent-de-chien", +"dent-de-lion", +"dent-de-loup", +"dent-de-rat", +"dento-facial", +"dents-de-cheval", +"dents-de-chien", +"dents-de-lion", +"dépose-minute", +"dépôts-ventes", +"dépôt-vente", +"député-maire", +"députés-maires", +"dermato-allergologue", +"dermato-allergologues", +"dernière-née", +"dernier-né", +"dernier-nés", +"derniers-nés", +"des-agreable", +"des-agreables", +"déséthyl-terbuméton", +"dès-méshui", +"Dessau-Rosslau", +"dessinateur-typographe", +"dessous-de-bouteille", +"dessous-de-bras", +"dessous-de-plat", +"dessous-de-table", +"dessous-de-tables", +"dessus-de-lit", +"dessus-de-plat", +"dessus-de-porte", +"dessus-de-tête", +"Détain-et-Bruant", +"Deuil-la-Barre", +"Deux-Acren", +"deux-cents", +"deux-cent-vingt-et-un", +"Deux-Chaises", +"deux-chaisois", +"Deux-Chaisois", +"deux-chaisoise", +"Deux-Chaisoise", +"deux-chaisoises", +"Deux-Chaisoises", +"deux-chevaux", +"deux-dents", +"Deux-Evailles", +"Deux-Évailles", +"Deux-Jumeaux", +"deux-mâts", +"deux-mille", +"Deux-Montagnais", +"Deuxnouds-aux-Bois", +"Deuxnouds-devant-Beauzée", +"deux-peccable", +"deux-peccables", +"deux-pièces", +"deux-points", +"deux-ponts", +"Deux-Ponts", +"deux-quatre", +"Deux-Rivières", +"deux-roues", +"Deux-Sèvres", +"deux-temps", +"Deux-Verges", +"Déville-lès-Rouen", +"devrai-gondragnier", +"Devrai-Gondragnier", +"devrai-gondragnière", +"Devrai-Gondragnière", +"devrai-gondragnières", +"Devrai-Gondragnières", +"devrai-gondragniers", +"Devrai-Gondragniers", +"dextro-volubile", +"Dezize-lès-Maranges", +"D-glucuronate", +"D-glucuronates", +"D-glycéraldéhyde", +"di-1-p-menthène", +"diam's", +"Diane-Capelle", +"diastéréo-isomère", +"diastéréo-isomères", +"dichloro-diphényl-dichloroéthane", +"dichlorprop-p", +"diclofop-méthyl", +"Dieffenbach-au-Val", +"Dieffenbach-lès-Woerth", +"Dieffenbach-lès-Wœrth", +"Diekhusen-Fahrstedt", +"Diennes-Aubigny", +"Diensdorf-Radlow", +"Dieppe-sous-Douaumont", +"Diera-Zehren", +"Dierrey-Saint-Julien", +"Dierrey-Saint-Pierre", +"diesel-électrique", +"diésel-électrique", +"diesels-électriques", +"diésels-électriques", +"diéthyl-diphényl-dichloroéthane", +"Dietzenrode-Vatterode", +"Dieue-sur-Meuse", +"Diffembach-lès-Hellimer", +"Digne-les-Bains", +"digue-digue", +"dihydro-oxycodéinone", +"dik-dik", +"dik-diks", +"dikégulac-sodium", +"Dilsen-Stokkem", +"diméthénamide-P", +"diméthyl-dixanthogène", +"DIN-31635", +"dîner-spectacle", +"dîners-spectacles", +"Dingolfing-Landau", +"Dingy-en-Vuache", +"Dingy-Saint-Clair", +"dining-room", +"dining-rooms", +"Dinsheim-sur-Bruche", +"Dio-et-Valquières", +"diola-kasa", +"Dion-Valmont", +"diony-sapinois", +"Diony-Sapinois", +"diony-sapinoise", +"Diony-Sapinoise", +"diony-sapinoises", +"Diony-Sapinoises", +"diptéro-sodomie", +"diptéro-sodomies", +"disc-jockey", +"disc-jockeys", +"Dissay-sous-Courcillon", +"Dissen-Striesow", +"Dissé-sous-Ballon", +"Dissé-sous-le-Lude", +"distance-temps", +"Dittelsheim-Heßloch", +"Divatte-sur-Loire", +"divergi-nervé", +"Dives-sur-Mer", +"Divitz-Spoldershagen", +"Divonne-les-Bains", +"dix-cors", +"dix-en-dix", +"dix-heura", +"dix-heurai", +"dix-heuraient", +"dix-heurais", +"dix-heurait", +"dix-heurâmes", +"dix-heurant", +"dix-heuras", +"dix-heurasse", +"dix-heurassent", +"dix-heurasses", +"dix-heurassiez", +"dix-heurassions", +"dix-heurât", +"dix-heurâtes", +"dix-heure", +"dix-heuré", +"dix-heurent", +"dix-heurer", +"dix-heurera", +"dix-heurerai", +"dix-heureraient", +"dix-heurerais", +"dix-heurerait", +"dix-heureras", +"dix-heurèrent", +"dix-heurerez", +"dix-heureriez", +"dix-heurerions", +"dix-heurerons", +"dix-heureront", +"dix-heures", +"dix-heurez", +"dix-heuriez", +"dix-heurions", +"dix-heurons", +"dix-huit", +"dix-huitième", +"dix-huitièmement", +"dix-huitièmes", +"dix-huitiémisme", +"dix-huitiémismes", +"dix-huitiémiste", +"dix-huitièmiste", +"dix-huitiémistes", +"dix-huitièmistes", +"dix-mille", +"dix-millième", +"dix-millièmes", +"dix-millionième", +"dix-millionièmes", +"dix-neuf", +"dix-neuvième", +"dix-neuvièmement", +"dix-neuvièmes", +"dix-neuviémisme", +"dix-neuviémismes", +"dix-neuviémiste", +"dix-neuvièmiste", +"dix-neuviémistes", +"dix-neuvièmistes", +"dix-roues", +"dix-sept", +"dix-septième", +"dix-septièmement", +"dix-septièmes", +"dix-septiémisme", +"dix-septiémismes", +"dix-septiémiste", +"dix-septièmiste", +"dix-septiémistes", +"dix-septièmistes", +"Dizy-le-Gros", +"djoumada-l-oula", +"djoumada-t-tania", +"DMTA-P", +"doati-casteidois", +"Doati-Casteidois", +"doati-casteidoise", +"Doati-Casteidoise", +"doati-casteidoises", +"Doati-Casteidoises", +"Dobbin-Linstow", +"Doberlug-Kirchhain", +"Doberschau-Gaußig", +"docu-fiction", +"docu-fictions", +"documentaire-choc", +"documentaires-chocs", +"dodémorphe-acétate", +"Dœuil-sur-le-Mignon", +"dog-cart", +"dog-carts", +"Dohm-Lammersdorf", +"doigt-de-gant", +"doigts-de-gant", +"Dol-de-Bretagne", +"Dolus-d'Oléron", +"Dolus-le-Sec", +"Domart-en-Ponthieu", +"Domart-sur-la-Luce", +"Dombasle-devant-Darney", +"Dombasle-en-Argonne", +"Dombasle-en-Xaintois", +"Dombasle-sur-Meurthe", +"Dombrot-le-Sec", +"Dombrot-sur-Vair", +"Domburg-Binnen", +"Domburg-Buiten", +"Domecy-sur-Cure", +"Domecy-sur-le-Vault", +"Domèvre-en-Haye", +"Domèvre-sous-Montfort", +"Domèvre-sur-Avière", +"Domèvre-sur-Durbion", +"Domèvre-sur-Vezouze", +"Domezain-Berraute", +"Domfront-en-Champagne", +"Domfront-en-Poiraie", +"Domléger-Longvillers", +"Dom-le-Mesnil", +"dommage-intérêt", +"dommages-intérêts", +"Dommarie-Eulmont", +"Dommartin-aux-Bois", +"Dommartin-Dampierre", +"Dommartin-la-Chapelle", +"Dommartin-la-Chaussée", +"Dommartin-la-Montagne", +"Dommartin-le-Coq", +"Dommartin-le-Franc", +"Dommartin-le-Saint-Père", +"Dommartin-lès-Cuiseaux", +"Dommartin-lès-Remiremont", +"Dommartin-lès-Toul", +"Dommartin-lès-Vallois", +"Dommartin-Lettrée", +"Dommartin-sous-Amance", +"Dommartin-sous-Hans", +"Dommartin-sur-Vraine", +"Dommartin-Varimont", +"Dommary-Baroncourt", +"Domnom-lès-Dieuze", +"Domnon-lès-Dieuze", +"Dompierre-aux-Bois", +"Dompierre-Becquincourt", +"Dompierre-du-Chemin", +"Dompierre-en-Morvan", +"Dompierre-les-Eglises", +"Dompierre-les-Églises", +"Dompierre-les-Ormes", +"Dompierre-les-Tilleuls", +"Dompierre-sous-Sanvignes", +"Dompierre-sur-Authie", +"Dompierre-sur-Besbre", +"Dompierre-sur-Chalaronne", +"Dompierre-sur-Charente", +"Dompierre-sur-Helpe", +"Dompierre-sur-Héry", +"Dompierre-sur-Mer", +"Dompierre-sur-Mont", +"Dompierre-sur-Nièvre", +"Dompierre-sur-Veyle", +"Dompierre-sur-Yon", +"Domptail-en-l'Air", +"dompte-venin", +"dompte-venins", +"Domremy-aux-Bois", +"Domremy-la-Canne", +"Domremy-Landéville", +"Domrémy-la-Pucelle", +"DOM-ROM", +"DOM-TOM", +"dom-tomien", +"dom-tomienne", +"dom-tomiennes", +"dom-tomiens", +"donation-partage", +"donations-partages", +"Donchery-sur-Meuse", +"Doncourt-aux-Templiers", +"Doncourt-lès-Conflans", +"Doncourt-lès-Longuyon", +"Doncourt-sur-Meuse", +"Dongen-Vaart", +"don-juanisme", +"don-juanismes", +"donnant-donnant", +"donne-jour", +"Donnemain-Saint-Mamès", +"Donnemarie-Dontilly", +"don-quichottisme", +"don-quichottismes", +"Donville-les-Bains", +"Donzy-le-National", +"Donzy-le-Pertuis", +"doom-death", +"Dore-l'Eglise", +"Dore-l'Église", +"Dörfles-Esbach", +"Dornburg-Camburg", +"Dorn-Dürkheim", +"dorso-vélaire", +"dorso-vélaires", +"dos-d'âne", +"Dossenheim-Kochersberg", +"Dossenheim-sur-Zinsel", +"doubet-talibautier", +"Doubet-Talibautier", +"doubet-talibautière", +"Doubet-Talibautière", +"doubet-talibautières", +"Doubet-Talibautières", +"doubet-talibautiers", +"Doubet-Talibautiers", +"doubles-aubiers", +"doubles-bécassines", +"doubles-bouches", +"doubles-bulbes", +"doubles-canons", +"doubles-chaînes", +"doubles-clics", +"doubles-croches", +"doubles-feuilles", +"doubles-fonds", +"doubles-mains", +"doubles-sens", +"douce-amère", +"douces-amères", +"Douchy-lès-Ayette", +"Douchy-les-Mines", +"Douchy-Montcorbon", +"Doucy-en-Bauges", +"Doudeauville-en-Vexin", +"Doué-en-Anjou", +"Doué-la-Fontaine", +"Doulaincourt-Saucourt", +"Doulevant-le-Château", +"Doulevant-le-Petit", +"dou-l-hidjja", +"dou-l-qa'da", +"Doumely-Bégny", +"Dourd'Hal", +"Douville-en-Auge", +"Douville-sur-Andelle", +"Douvres-la-Délivrande", +"doux-agnel", +"doux-à-l'agneau", +"doux-amer", +"doux-amers", +"doux-ballon", +"doux-vert", +"Douy-la-Ramée", +"down-loada", +"down-loadai", +"down-loadaient", +"down-loadais", +"down-loadait", +"down-loadâmes", +"down-loadant", +"down-loadas", +"down-loadasse", +"down-loadassent", +"down-loadasses", +"down-loadassiez", +"down-loadassions", +"down-loadât", +"down-loadâtes", +"down-loade", +"down-loadé", +"down-loadée", +"down-loadées", +"down-loadent", +"down-loader", +"down-loadera", +"down-loaderai", +"down-loaderaient", +"down-loaderais", +"down-loaderait", +"down-loaderas", +"down-loadèrent", +"down-loaderez", +"down-loaderiez", +"down-loaderions", +"down-loaderons", +"down-loaderont", +"down-loades", +"down-loadés", +"down-loadez", +"down-loadiez", +"down-loadions", +"down-loadons", +"Drachenbronn-Birlenbach", +"Dracy-le-Fort", +"Dracy-lès-Couches", +"Dracy-Saint-Loup", +"Dracy-sur-Ouanne", +"Dragey-Ronthon", +"dragonnet-lyre", +"drainage-taupe", +"draineuses-trancheuses", +"draineuse-trancheuse", +"drap-housse", +"drap-housses", +"Dreis-Brück", +"drelin-drelin", +"Drémil-Lafage", +"Dreuil-Hamel", +"Dreuil-lès-Amiens", +"Dreuil-lès-Molliens", +"Driebergen-Rijsenburg", +"drift-ice", +"drift-ices", +"dring-dring", +"drive-in", +"drive-ins", +"drive-way", +"drive-ways", +"droit-fil", +"droit-fils", +"drop-goal", +"drop-goals", +"Droue-sur-Drouette", +"Droupt-Saint-Basle", +"Droupt-Sainte-Marie", +"Drouvin-le-Marais", +"drug-store", +"drug-stores", +"Drumettaz-Clarafond", +"Druyes-les-Belles-Fontaines", +"Druy-Parigny", +"dry-tooleur", +"dry-tooleurs", +"dry-tooling", +"D-sucre", +"D-sucres", +"dual-core", +"dual-cores", +"duc-d'albe", +"duc-d'Albe", +"Duc-de-Thol", +"duché-pairie", +"duchés-pairies", +"ducs-d'albe", +"ducs-d'Albe", +"Ducy-Sainte-Marguerite", +"duffel-coat", +"duffel-coats", +"duffle-coat", +"duffle-coats", +"Dugny-sur-Meuse", +"Duhamellois-de-l'Ouest", +"Duhort-Bachen", +"Duilhac-sous-Peyrepertuse", +"Duino-Aurisina", +"dum-dum", +"Dunières-sur-Eyrieux", +"Dunière-sur-Eyrieux", +"Dun-le-Palestel", +"Dun-le-Palleteau", +"Dun-le-Poëlier", +"Dun-les-Places", +"Dun-sur-Auron", +"Dun-sur-Grandry", +"Dun-sur-Meuse", +"duo-tang", +"duo-tangs", +"duplicato-dentelé", +"Dupont-Lajoie", +"Durban-Corbières", +"Durban-sur-Arize", +"dur-bec", +"Durdat-Larequille", +"dure-mère", +"dure-peau", +"dures-mères", +"dures-peaux", +"Durfort-et-Saint-Martin-de-Sossenac", +"Durfort-Lacapelette", +"Dürrröhrsdorf-Dittersbach", +"durs-becs", +"duty-free", +"DVD-RAM", +"DVD-ROM", +"DVD-RW", +"dynamo-électrique", +"dynamo-électriques", +"E7,Z9-12:Ac", +"E7-Z9-dodécadiénylacétate", +"E8,E10-dodécadiène-1-ol", +"e-administration", +"e-administrations", +"eau-bénitier", +"eau-bénitiers", +"Eaucourt-sur-Somme", +"eau-de-vie", +"eau-forte", +"eaux-bonnais", +"Eaux-Bonnais", +"eaux-bonnaise", +"Eaux-Bonnaise", +"eaux-bonnaises", +"Eaux-Bonnaises", +"Eaux-Bonnes", +"eaux-de-vie", +"eaux-fortes", +"Eaux-Puiseaux", +"eaux-vannes", +"Ében-Émael", +"Eberbach-Seltz", +"Eberbach-Wœrth", +"Ebersbach-Musbach", +"Ebnat-Kappel", +"e-book", +"e-business", +"Ecalles-Alix", +"Écalles-Alix", +"Ecardenville-la-Campagne", +"Écardenville-la-Campagne", +"Ecardenville-sur-Eure", +"Écardenville-sur-Eure", +"e-carte", +"e-cartes", +"écarts-types", +"écart-type", +"Écaussinnes-d'Enghien", +"Écaussinnes-Lalaing", +"Eccica-Suarella", +"Echarri-Aranaz", +"Echelle-Saint-Aurin", +"Échelle-Saint-Aurin", +"Echenans-sous-Mont-Vaudois", +"Échenans-sous-Mont-Vaudois", +"Echenoz-la-Méline", +"Échenoz-la-Méline", +"Echenoz-le-Sec", +"Échenoz-le-Sec", +"écho-location", +"écho-locations", +"échos-radars", +"Echt-Susteren", +"e-cig", +"e-cigarette", +"e-cigarettes", +"e-cigs", +"e-cinéma", +"e-cinémas", +"Eclans-Nenon", +"Éclans-Nenon", +"Eclaron-Braucourt-Sainte-Livière", +"Éclaron-Braucourt-Sainte-Livière", +"e-client", +"e-clope", +"e-clopes", +"Eclose-Badinières", +"Eclusier-Vaux", +"Éclusier-Vaux", +"Ecole-Valentin", +"École-Valentin", +"e-commerçant", +"e-commerçants", +"e-commerce", +"écorche-œil", +"Ecotay-l'Olme", +"Écotay-l'Olme", +"Ecot-la-Combe", +"Écot-la-Combe", +"Écouché-les-Vallées", +"e-couponing", +"Ecourt-Saint-Quentin", +"Écourt-Saint-Quentin", +"Ecoust-Saint-Mein", +"Écoust-Saint-Mein", +"écoute-s'il-pleut", +"Écoute-s'il-pleut", +"écrase-merde", +"écrase-merdes", +"Ecretteville-lès-Baons", +"Écretteville-lès-Baons", +"Ecretteville-sur-Mer", +"Écretteville-sur-Mer", +"e-criminalité", +"e-criminalités", +"Écry-le-Franc", +"Ectot-l'Auber", +"Ectot-lès-Baons", +"Ecurey-en-Verdunois", +"Écurey-en-Verdunois", +"écurie-ménagerie", +"écuries-ménageries", +"Ecury-le-Repos", +"Écury-le-Repos", +"Ecury-sur-Coole", +"Écury-sur-Coole", +"Edam-Volendam", +"e-délinquance", +"e-délinquances", +"Ediger-Eller", +"Edingen-Neckarhausen", +"edit-a-thon", +"edit-a-thons", +"Édouard-Josse", +"EE-8,10-DDDOL", +"Eelde-Paterswolde", +"Effelder-Rauenstein", +"effet-bulle", +"effets-bulles", +"Efringen-Kirchen", +"égal-à-tous", +"Egée-Méridionale", +"Égée-Méridionale", +"Egée-Septentrionale", +"Égée-Septentrionale", +"Eggenstein-Leopoldshafen", +"Eglise-aux-Bois", +"Église-aux-Bois", +"église-halle", +"Egliseneuve-d'Entraigues", +"Égliseneuve-d'Entraigues", +"Egliseneuve-des-Liards", +"Égliseneuve-des-Liards", +"Eglise-Neuve-de-Vergt", +"Église-Neuve-de-Vergt", +"Eglise-Neuve-d'Issac", +"Église-Neuve-d'Issac", +"Egliseneuve-près-Billom", +"Égliseneuve-près-Billom", +"Egmond-Binnen", +"ego-document", +"ego-documents", +"Egriselles-le-Bocage", +"Égriselles-le-Bocage", +"Eguille-sur-Seudre", +"Éguille-sur-Seudre", +"Eguilly-sous-Bois", +"Éguilly-sous-Bois", +"Eguzon-Chantôme", +"Éguzon-Chantôme", +"égypto-lybien", +"égypto-tchado-soudanais", +"Éhein-bas", +"Ehlange-sur-Mess", +"Ehra-Lessien", +"Eifel-Bitburg-Prüm", +"Eijsden-Margraten", +"Einville-au-Jard", +"éka-actinide", +"éka-actinides", +"éka-aluminium", +"éka-astate", +"éka-bismuth", +"éka-bore", +"éka-borium", +"éka-francium", +"éka-mercure", +"éka-plomb", +"éka-polonium", +"éka-prométhium", +"éka-silicium", +"e-la", +"e-la-fa", +"e-la-mi", +"el-âsker", +"Elbe-Elster", +"Elbe-Parey", +"Elbeuf-en-Bray", +"Elbeuf-sur-Andelle", +"Elburgo-Burgelu", +"Elchesheim-Illingen", +"électron-volt", +"électron-volts", +"élément-clé", +"éléments-clés", +"Eleu-dit-Leauwette", +"Éleu-dit-Leauwette", +"Elincourt-Sainte-Marguerite", +"Élincourt-Sainte-Marguerite", +"Elisabeth-Sophien-Koog", +"Elise-Daucourt", +"Élise-Daucourt", +"elle-même", +"Ellenz-Poltersdorf", +"elles-mêmes", +"Ellignies-Sainte-Anne", +"ello-rhénan", +"ello-rhénane", +"ello-rhénanes", +"ello-rhénans", +"Elsdorf-Westermühlen", +"Elvillar-Bilar", +"e-mail", +"e-maila", +"e-mailai", +"e-mailaient", +"e-mailais", +"e-mailait", +"e-mailâmes", +"e-mailant", +"e-mailas", +"e-mailasse", +"e-mailassent", +"e-mailasses", +"e-mailassiez", +"e-mailassions", +"e-mailât", +"e-mailâtes", +"e-maile", +"e-mailé", +"e-mailée", +"e-mailées", +"e-mailent", +"e-mailer", +"e-mailera", +"e-mailerai", +"e-maileraient", +"e-mailerais", +"e-mailerait", +"e-maileras", +"e-mailèrent", +"e-mailerez", +"e-maileriez", +"e-mailerions", +"e-mailerons", +"e-maileront", +"e-mailes", +"e-mailés", +"e-maileur", +"e-maileurs", +"e-maileuse", +"e-maileuses", +"e-mailez", +"e-mailiez", +"e-mailing", +"e-mailings", +"e-mailions", +"e-mailons", +"e-marketeur", +"e-marketeurs", +"e-marketeuse", +"e-marketeuses", +"e-marketing", +"e-marketings", +"emballage-bulle", +"emballage-coque", +"emballages-bulles", +"emballages-coques", +"Embres-et-Castelmaure", +"e-merchandiser", +"émetteur-récepteur", +"émetteur-récepteurs", +"émilienne-romagnole", +"Émilienne-Romagnole", +"émiliennes-romagnoles", +"Émiliennes-Romagnoles", +"émilien-romagnol", +"Émilien-Romagnol", +"émiliens-romagnols", +"Émiliens-Romagnols", +"Émilie-Romagne", +"émirato-algérien", +"émirato-allemand", +"émirato-allemands", +"émirato-britannique", +"émirato-britanniques", +"émirato-helvétique", +"émirato-helvétiques", +"émirato-indien", +"émirato-iranien", +"émirato-japonais", +"émission-débat", +"Emmelsbüll-Horsbüll", +"Emmer-Compascuum", +"Emmer-Erfscheidenveen", +"Emmingen-Liptingen", +"emo-sexualité", +"emo-sexualités", +"emporte-pièce", +"emporte-pièces", +"énargite-beta", +"énargite-betas", +"en-avant", +"en-avants", +"en-but", +"en-buts", +"en-cas", +"Encausse-les-Thermes", +"Enclave-de-la-Martinière", +"en-cours", +"en-deçà", +"en-dessous", +"en-dessus", +"Enencourt-Léage", +"Énencourt-Léage", +"Enencourt-le-Sec", +"Énencourt-le-Sec", +"enfant-bulle", +"enfant-roi", +"enfants-bulles", +"enfant-soldat", +"enfants-robots", +"enfants-rois", +"enfants-soldats", +"enfile-aiguille", +"enfile-aiguilles", +"enfle-boeuf", +"enfle-bœuf", +"enfle-boeufs", +"enfle-bœufs", +"en-garant", +"Enge-Sande", +"Enghien-les-Bains", +"Englesqueville-en-Auge", +"Englesqueville-la-Percée", +"Enkenbach-Alsenborn", +"Ennepe-Ruhr", +"Ennetières-en-Weppes", +"enquêtes-minute", +"Enquin-les-Mines", +"Enquin-lez-Guinegatte", +"Enquin-sur-Baillons", +"enseignant-chercheur", +"enseignante-chercheuse", +"enseignantes-chercheuses", +"enseignants-chercheurs", +"Ensuès-la-Redonne", +"entéro-colite", +"entéro-colites", +"entéro-cystocèle", +"entéro-épiplocèle", +"entéro-épiplocèles", +"entéro-hémorrhagie", +"entéro-hydrocèle", +"entéro-hydromphale", +"entéro-mérocèle", +"entéro-mésentérite", +"entéro-pneumatose", +"entéro-rénal", +"entéro-rénale", +"entéro-rénales", +"entéro-rénaux", +"entéro-sarcocèle", +"entéro-sarcocèles", +"entéro-sténose", +"entéro-sténoses", +"en-tête", +"en-têtes", +"en-tout-cas", +"entr'abat", +"entr'abattaient", +"entr'abattait", +"entr'abattant", +"entr'abatte", +"entr'abattent", +"entr'abattez", +"entr'abattiez", +"entr'abattîmes", +"entr'abattions", +"entr'abattirent", +"entr'abattissent", +"entr'abattissions", +"entr'abattit", +"entr'abattît", +"entr'abattîtes", +"entr'abattons", +"entr'abattra", +"entr'abattraient", +"entr'abattrait", +"entr'abattre", +"entr'abattre", +"entr'abattrez", +"entr'abattriez", +"entr'abattrions", +"entr'abattrons", +"entr'abattront", +"entr'abattu", +"entr'abattue", +"entr'abattues", +"entr'abattus", +"entr'aborda", +"entr'abordaient", +"entr'abordait", +"entr'abordâmes", +"entr'abordant", +"entr'abordassent", +"entr'abordassiez", +"entr'abordassions", +"entr'abordât", +"entr'abordâtes", +"entr'aborde", +"entr'abordé", +"entr'abordées", +"entr'abordent", +"entr'aborder", +"entr'aborder", +"entr'abordera", +"entr'aborderaient", +"entr'aborderait", +"entr'abordèrent", +"entr'aborderez", +"entr'aborderiez", +"entr'aborderions", +"entr'aborderons", +"entr'aborderont", +"entr'abordés", +"entr'abordez", +"entr'abordiez", +"entr'abordions", +"entr'abordons", +"entr'accola", +"entr'accolaient", +"entr'accolait", +"entr'accolâmes", +"entr'accolant", +"entr'accolassent", +"entr'accolassiez", +"entr'accolassions", +"entr'accolât", +"entr'accolâtes", +"entr'accole", +"entr'accolé", +"entr'accolées", +"entr'accolent", +"entr'accoler", +"entr'accoler", +"entr'accolera", +"entr'accoleraient", +"entr'accolerait", +"entr'accolèrent", +"entr'accolerez", +"entr'accoleriez", +"entr'accolerions", +"entr'accolerons", +"entr'accoleront", +"entr'accolés", +"entr'accolez", +"entr'accoliez", +"entr'accolions", +"entr'accolons", +"entr'accorda", +"entr'accordaient", +"entr'accordait", +"entr'accordâmes", +"entr'accordant", +"entr'accordassent", +"entr'accordassiez", +"entr'accordassions", +"entr'accordât", +"entr'accordâtes", +"entr'accorde", +"entr'accordé", +"entr'accordées", +"entr'accordent", +"entr'accorder", +"entr'accorder", +"entr'accordera", +"entr'accorderaient", +"entr'accorderait", +"entr'accordèrent", +"entr'accorderez", +"entr'accorderiez", +"entr'accorderions", +"entr'accorderons", +"entr'accorderont", +"entr'accordés", +"entr'accordez", +"entr'accordiez", +"entr'accordions", +"entr'accordons", +"entr'accrocha", +"entr'accrochaient", +"entr'accrochait", +"entr'accrochâmes", +"entr'accrochant", +"entr'accrochassent", +"entr'accrochassiez", +"entr'accrochassions", +"entr'accrochât", +"entr'accrochâtes", +"entr'accroche", +"entr'accroché", +"entr'accrochées", +"entr'accrochent", +"entr'accrocher", +"entr'accrocher", +"entr'accrochera", +"entr'accrocheraient", +"entr'accrocherait", +"entr'accrochèrent", +"entr'accrocherez", +"entr'accrocheriez", +"entr'accrocherions", +"entr'accrocherons", +"entr'accrocheront", +"entr'accrochés", +"entr'accrochez", +"entr'accrochiez", +"entr'accrochions", +"entr'accrochons", +"entr'accusa", +"entr'accusaient", +"entr'accusait", +"entr'accusâmes", +"entr'accusant", +"entr'accusassent", +"entr'accusassiez", +"entr'accusassions", +"entr'accusât", +"entr'accusâtes", +"entr'accuse", +"entr'accusé", +"entr'accusées", +"entr'accusent", +"entr'accuser", +"entr'accuser", +"entr'accusera", +"entr'accuseraient", +"entr'accuserait", +"entr'accusèrent", +"entr'accuserez", +"entr'accuseriez", +"entr'accuserions", +"entr'accuserons", +"entr'accuseront", +"entr'accusés", +"entr'accusez", +"entr'accusiez", +"entr'accusions", +"entr'accusons", +"entr'acte", +"entr'actes", +"entr'adapta", +"entr'adaptaient", +"entr'adaptait", +"entr'adaptâmes", +"entr'adaptant", +"entr'adaptassent", +"entr'adaptassiez", +"entr'adaptassions", +"entr'adaptât", +"entr'adaptâtes", +"entr'adapte", +"entr'adapté", +"entr'adaptées", +"entr'adaptent", +"entr'adapter", +"entr'adapter", +"entr'adaptera", +"entr'adapteraient", +"entr'adapterait", +"entr'adaptèrent", +"entr'adapterez", +"entr'adapteriez", +"entr'adapterions", +"entr'adapterons", +"entr'adapteront", +"entr'adaptés", +"entr'adaptez", +"entr'adaptiez", +"entr'adaptions", +"entr'adaptons", +"entr'admira", +"entr'admirai", +"entr'admiraient", +"entr'admirais", +"entr'admirait", +"entr'admirâmes", +"entr'admirant", +"entr'admiras", +"entr'admirasse", +"entr'admirassent", +"entr'admirasses", +"entr'admirassiez", +"entr'admirassions", +"entr'admirât", +"entr'admirâtes", +"entr'admire", +"entr'admiré", +"entr'admirée", +"entr'admirées", +"entr'admirent", +"entr'admirer", +"entr'admirer", +"entr'admirera", +"entr'admirerai", +"entr'admireraient", +"entr'admirerais", +"entr'admirerait", +"entr'admireras", +"entr'admirèrent", +"entr'admirerez", +"entr'admireriez", +"entr'admirerions", +"entr'admirerons", +"entr'admireront", +"entr'admires", +"entr'admirés", +"entr'admirez", +"entr'admiriez", +"entr'admirions", +"entr'admirons", +"entr'admonesta", +"entr'admonestaient", +"entr'admonestait", +"entr'admonestâmes", +"entr'admonestant", +"entr'admonestassent", +"entr'admonestassiez", +"entr'admonestassions", +"entr'admonestât", +"entr'admonestâtes", +"entr'admoneste", +"entr'admonesté", +"entr'admonestées", +"entr'admonestent", +"entr'admonester", +"entr'admonester", +"entr'admonestera", +"entr'admonesteraient", +"entr'admonesterait", +"entr'admonestèrent", +"entr'admonesterez", +"entr'admonesteriez", +"entr'admonesterions", +"entr'admonesterons", +"entr'admonesteront", +"entr'admonestés", +"entr'admonestez", +"entr'admonestiez", +"entr'admonestions", +"entr'admonestons", +"entr'adressa", +"entr'adressaient", +"entr'adressait", +"entr'adressâmes", +"entr'adressant", +"entr'adressassent", +"entr'adressassiez", +"entr'adressassions", +"entr'adressât", +"entr'adressâtes", +"entr'adresse", +"entr'adressé", +"entr'adressées", +"entr'adressent", +"entr'adresser", +"entr'adresser", +"entr'adressera", +"entr'adresseraient", +"entr'adresserait", +"entr'adressèrent", +"entr'adresserez", +"entr'adresseriez", +"entr'adresserions", +"entr'adresserons", +"entr'adresseront", +"entr'adressés", +"entr'adressez", +"entr'adressiez", +"entr'adressions", +"entr'adressons", +"entr'affronta", +"entr'affrontaient", +"entr'affrontait", +"entr'affrontâmes", +"entr'affrontant", +"entr'affrontassent", +"entr'affrontassiez", +"entr'affrontassions", +"entr'affrontât", +"entr'affrontâtes", +"entr'affronte", +"entr'affronté", +"entr'affrontées", +"entr'affrontent", +"entr'affronter", +"entr'affronter", +"entr'affrontera", +"entr'affronteraient", +"entr'affronterait", +"entr'affrontèrent", +"entr'affronterez", +"entr'affronteriez", +"entr'affronterions", +"entr'affronterons", +"entr'affronteront", +"entr'affrontés", +"entr'affrontez", +"entr'affrontiez", +"entr'affrontions", +"entr'affrontons", +"entr'aida", +"entr'aidaient", +"entr'aidait", +"entr'aidâmes", +"entr'aidant", +"entr'aidassent", +"entr'aidassiez", +"entr'aidassions", +"entr'aidât", +"entr'aidâtes", +"entr'aide", +"entr'aidé", +"entr'aidées", +"entr'aident", +"entr'aider", +"entr'aider", +"entr'aidera", +"entr'aideraient", +"entr'aiderait", +"entr'aidèrent", +"entr'aiderez", +"entr'aideriez", +"entr'aiderions", +"entr'aiderons", +"entr'aideront", +"entr'aides", +"entr'aidés", +"entr'aidez", +"entr'aidiez", +"entr'aidions", +"entr'aidons", +"Entraigues-sur-la-Sorgue", +"entr'aiguisa", +"entr'aiguisaient", +"entr'aiguisait", +"entr'aiguisâmes", +"entr'aiguisant", +"entr'aiguisassent", +"entr'aiguisassiez", +"entr'aiguisassions", +"entr'aiguisât", +"entr'aiguisâtes", +"entr'aiguise", +"entr'aiguisé", +"entr'aiguisées", +"entr'aiguisent", +"entr'aiguiser", +"entr'aiguiser", +"entr'aiguisera", +"entr'aiguiseraient", +"entr'aiguiserait", +"entr'aiguisèrent", +"entr'aiguiserez", +"entr'aiguiseriez", +"entr'aiguiserions", +"entr'aiguiserons", +"entr'aiguiseront", +"entr'aiguisés", +"entr'aiguisez", +"entr'aiguisiez", +"entr'aiguisions", +"entr'aiguisons", +"entr'aima", +"entr'aimai", +"entr'aimaient", +"entr'aimais", +"entr'aimait", +"entr'aimâmes", +"entr'aimant", +"entr'aimas", +"entr'aimasse", +"entr'aimassent", +"entr'aimasses", +"entr'aimassiez", +"entr'aimassions", +"entr'aimât", +"entr'aimâtes", +"entr'aime", +"entr'aimé", +"entr'aimée", +"entr'aimées", +"entr'aiment", +"entr'aimer", +"entr'aimer", +"entr'aimera", +"entr'aimerai", +"entr'aimeraient", +"entr'aimerais", +"entr'aimerait", +"entr'aimeras", +"entr'aimèrent", +"entr'aimerez", +"entr'aimeriez", +"entr'aimerions", +"entr'aimerons", +"entr'aimeront", +"entr'aimes", +"entr'aimés", +"entr'aimez", +"entr'aimiez", +"entr'aimions", +"entr'aimons", +"Entrains-sur-Nohain", +"entr'anima", +"entr'animaient", +"entr'animait", +"entr'animâmes", +"entr'animant", +"entr'animassent", +"entr'animassiez", +"entr'animassions", +"entr'animât", +"entr'animâtes", +"entr'anime", +"entr'animé", +"entr'animées", +"entr'animent", +"entr'animer", +"entr'animer", +"entr'animera", +"entr'animeraient", +"entr'animerait", +"entr'animèrent", +"entr'animerez", +"entr'animeriez", +"entr'animerions", +"entr'animerons", +"entr'animeront", +"entr'animés", +"entr'animez", +"entr'animiez", +"entr'animions", +"entr'animons", +"entr'apercevaient", +"entr'apercevais", +"entr'apercevait", +"entr'apercevant", +"entr'apercevez", +"entr'aperceviez", +"entr'apercevions", +"entr'apercevoir", +"entr'apercevons", +"entr'apercevra", +"entr'apercevrai", +"entr'apercevraient", +"entr'apercevrais", +"entr'apercevrait", +"entr'apercevras", +"entr'apercevrez", +"entr'apercevriez", +"entr'apercevrions", +"entr'apercevrons", +"entr'apercevront", +"entr'aperçois", +"entr'aperçoit", +"entr'aperçoive", +"entr'aperçoivent", +"entr'aperçoives", +"entr'aperçu", +"entr'aperçue", +"entr'aperçues", +"entr'aperçûmes", +"entr'aperçurent", +"entr'aperçus", +"entr'aperçusse", +"entr'aperçussent", +"entr'aperçusses", +"entr'aperçussiez", +"entr'aperçussions", +"entr'aperçut", +"entr'aperçût", +"entr'aperçûtes", +"entr'apparais", +"entr'apparaissaient", +"entr'apparaissais", +"entr'apparaissait", +"entr'apparaissant", +"entr'apparaisse", +"entr'apparaissent", +"entr'apparaisses", +"entr'apparaissez", +"entr'apparaissiez", +"entr'apparaissions", +"entr'apparaissons", +"entr'apparait", +"entr'apparaît", +"entr'apparaitra", +"entr'apparaîtra", +"entr'apparaitrai", +"entr'apparaîtrai", +"entr'apparaitraient", +"entr'apparaîtraient", +"entr'apparaitrais", +"entr'apparaîtrais", +"entr'apparaitrait", +"entr'apparaîtrait", +"entr'apparaitras", +"entr'apparaîtras", +"entr'apparaitre", +"entr'apparaître", +"entr'apparaitrez", +"entr'apparaîtrez", +"entr'apparaitriez", +"entr'apparaîtriez", +"entr'apparaitrions", +"entr'apparaîtrions", +"entr'apparaitrons", +"entr'apparaîtrons", +"entr'apparaitront", +"entr'apparaîtront", +"entr'apparu", +"entr'apparue", +"entr'apparues", +"entr'apparûmes", +"entr'apparurent", +"entr'apparus", +"entr'apparusse", +"entr'apparussent", +"entr'apparusses", +"entr'apparussiez", +"entr'apparussions", +"entr'apparut", +"entr'apparût", +"entr'apparûtes", +"entr'appela", +"entr'appelaient", +"entr'appelait", +"entr'appelâmes", +"entr'appelant", +"entr'appelassent", +"entr'appelassiez", +"entr'appelassions", +"entr'appelât", +"entr'appelâtes", +"entr'appelé", +"entr'appelées", +"entr'appeler", +"entr'appeler", +"entr'appelèrent", +"entr'appelés", +"entr'appelez", +"entr'appeliez", +"entr'appelions", +"entr'appelle", +"entr'appellent", +"entr'appellera", +"entr'appelleraient", +"entr'appellerait", +"entr'appellerez", +"entr'appelleriez", +"entr'appellerions", +"entr'appellerons", +"entr'appelleront", +"entr'appelles", +"entr'appelons", +"entr'apprenaient", +"entr'apprenait", +"entr'apprenant", +"entr'apprend", +"entr'apprendra", +"entr'apprendraient", +"entr'apprendrait", +"entr'apprendre", +"entr'apprendre", +"entr'apprendriez", +"entr'apprendrions", +"entr'apprendrons", +"entr'apprendront", +"entr'apprenez", +"entr'appreniez", +"entr'apprenions", +"entr'apprenne", +"entr'apprennent", +"entr'apprennes", +"entr'apprenons", +"entr'apprîmes", +"entr'apprirent", +"entr'appris", +"entr'apprise", +"entr'apprises", +"entr'apprissent", +"entr'apprissiez", +"entr'apprissions", +"entr'apprit", +"entr'apprît", +"entr'apprîtes", +"entr'approcha", +"entr'approchaient", +"entr'approchait", +"entr'approchâmes", +"entr'approchant", +"entr'approchassent", +"entr'approchassiez", +"entr'approchassions", +"entr'approchât", +"entr'approchâtes", +"entr'approche", +"entr'approché", +"entr'approchées", +"entr'approchent", +"entr'approcher", +"entr'approcher", +"entr'approchera", +"entr'approcheraient", +"entr'approcherait", +"entr'approchèrent", +"entr'approcherez", +"entr'approcheriez", +"entr'approcherions", +"entr'approcherons", +"entr'approcheront", +"entr'approchés", +"entr'approchez", +"entr'approchiez", +"entr'approchions", +"entr'approchons", +"entr'arquebusa", +"entr'arquebusaient", +"entr'arquebusait", +"entr'arquebusâmes", +"entr'arquebusant", +"entr'arquebusassent", +"entr'arquebusassiez", +"entr'arquebusassions", +"entr'arquebusât", +"entr'arquebusâtes", +"entr'arquebuse", +"entr'arquebusé", +"entr'arquebusées", +"entr'arquebusent", +"entr'arquebuser", +"entr'arquebuser", +"entr'arquebusera", +"entr'arquebuseraient", +"entr'arquebuserait", +"entr'arquebusèrent", +"entr'arquebuserez", +"entr'arquebuseriez", +"entr'arquebuserions", +"entr'arquebuserons", +"entr'arquebuseront", +"entr'arquebusés", +"entr'arquebusez", +"entr'arquebusiez", +"entr'arquebusions", +"entr'arquebusons", +"entr'assassina", +"entr'assassinaient", +"entr'assassinait", +"entr'assassinâmes", +"entr'assassinant", +"entr'assassinassent", +"entr'assassinassiez", +"entr'assassinassions", +"entr'assassinât", +"entr'assassinâtes", +"entr'assassine", +"entr'assassiné", +"entr'assassinées", +"entr'assassinent", +"entr'assassiner", +"entr'assassiner", +"entr'assassinera", +"entr'assassineraient", +"entr'assassinerait", +"entr'assassinèrent", +"entr'assassinerez", +"entr'assassineriez", +"entr'assassinerions", +"entr'assassinerons", +"entr'assassineront", +"entr'assassinés", +"entr'assassinez", +"entr'assassiniez", +"entr'assassinions", +"entr'assassinons", +"entr'assigna", +"entr'assignaient", +"entr'assignait", +"entr'assignâmes", +"entr'assignant", +"entr'assignassent", +"entr'assignassiez", +"entr'assignassions", +"entr'assignât", +"entr'assignâtes", +"entr'assigne", +"entr'assigné", +"entr'assignées", +"entr'assignent", +"entr'assigner", +"entr'assigner", +"entr'assignera", +"entr'assigneraient", +"entr'assignerait", +"entr'assignèrent", +"entr'assignerez", +"entr'assigneriez", +"entr'assignerions", +"entr'assignerons", +"entr'assigneront", +"entr'assignés", +"entr'assignez", +"entr'assigniez", +"entr'assignions", +"entr'assignons", +"entr'assomma", +"entr'assommaient", +"entr'assommait", +"entr'assommâmes", +"entr'assommant", +"entr'assommassent", +"entr'assommassiez", +"entr'assommassions", +"entr'assommât", +"entr'assommâtes", +"entr'assomme", +"entr'assommé", +"entr'assommées", +"entr'assomment", +"entr'assommer", +"entr'assommer", +"entr'assommera", +"entr'assommeraient", +"entr'assommerait", +"entr'assommèrent", +"entr'assommerez", +"entr'assommeriez", +"entr'assommerions", +"entr'assommerons", +"entr'assommeront", +"entr'assommés", +"entr'assommez", +"entr'assommiez", +"entr'assommions", +"entr'assommons", +"entr'attaqua", +"entr'attaquaient", +"entr'attaquait", +"entr'attaquâmes", +"entr'attaquant", +"entr'attaquassent", +"entr'attaquassiez", +"entr'attaquassions", +"entr'attaquât", +"entr'attaquâtes", +"entr'attaque", +"entr'attaqué", +"entr'attaquées", +"entr'attaquent", +"entr'attaquer", +"entr'attaquer", +"entr'attaquera", +"entr'attaqueraient", +"entr'attaquerait", +"entr'attaquèrent", +"entr'attaquerez", +"entr'attaqueriez", +"entr'attaquerions", +"entr'attaquerons", +"entr'attaqueront", +"entr'attaqués", +"entr'attaquez", +"entr'attaquiez", +"entr'attaquions", +"entr'attaquons", +"entr'attend", +"entr'attendaient", +"entr'attendait", +"entr'attendant", +"entr'attende", +"entr'attendent", +"entr'attendez", +"entr'attendiez", +"entr'attendîmes", +"entr'attendions", +"entr'attendirent", +"entr'attendissent", +"entr'attendissiez", +"entr'attendissions", +"entr'attendit", +"entr'attendît", +"entr'attendîtes", +"entr'attendons", +"entr'attendra", +"entr'attendraient", +"entr'attendrait", +"entr'attendre", +"entr'attendre", +"entr'attendrez", +"entr'attendriez", +"entr'attendrions", +"entr'attendrons", +"entr'attendront", +"entr'attendu", +"entr'attendue", +"entr'attendues", +"entr'attendus", +"entr'autres", +"entr'averti", +"entr'averties", +"entr'avertîmes", +"entr'avertir", +"entr'avertir", +"entr'avertira", +"entr'avertiraient", +"entr'avertirait", +"entr'avertirent", +"entr'avertirez", +"entr'avertiriez", +"entr'avertirions", +"entr'avertirons", +"entr'avertiront", +"entr'avertis", +"entr'avertissaient", +"entr'avertissait", +"entr'avertissant", +"entr'avertisse", +"entr'avertissent", +"entr'avertissez", +"entr'avertissiez", +"entr'avertissions", +"entr'avertissons", +"entr'avertit", +"entr'avertît", +"entr'avertîtes", +"entr'avoua", +"entr'avouaient", +"entr'avouait", +"entr'avouâmes", +"entr'avouant", +"entr'avouassent", +"entr'avouassiez", +"entr'avouassions", +"entr'avouât", +"entr'avouâtes", +"entr'avoue", +"entr'avoué", +"entr'avouées", +"entr'avouent", +"entr'avouer", +"entr'avouer", +"entr'avouera", +"entr'avoueraient", +"entr'avouerait", +"entr'avouèrent", +"entr'avouerez", +"entr'avoueriez", +"entr'avouerions", +"entr'avouerons", +"entr'avoueront", +"entr'avoués", +"entr'avouez", +"entr'avouiez", +"entr'avouions", +"entr'avouons", +"entr'axe", +"entr'axes", +"Entraygues-sur-Truyère", +"entr'ébranla", +"entr'ébranlaient", +"entr'ébranlait", +"entr'ébranlâmes", +"entr'ébranlant", +"entr'ébranlassent", +"entr'ébranlassiez", +"entr'ébranlassions", +"entr'ébranlât", +"entr'ébranlâtes", +"entr'ébranle", +"entr'ébranlé", +"entr'ébranlées", +"entr'ébranlent", +"entr'ébranler", +"entr'ébranlera", +"entr'ébranleraient", +"entr'ébranlerait", +"entr'ébranlèrent", +"entr'ébranlerez", +"entr'ébranleriez", +"entr'ébranlerions", +"entr'ébranlerons", +"entr'ébranleront", +"entr'ébranlés", +"entr'ébranlez", +"entr'ébranliez", +"entr'ébranlions", +"entr'ébranlons", +"entr'éclairci", +"entr'éclaircies", +"entr'éclaircîmes", +"entr'éclaircir", +"entr'éclaircir", +"entr'éclaircira", +"entr'éclairciraient", +"entr'éclaircirait", +"entr'éclaircirent", +"entr'éclaircirez", +"entr'éclairciriez", +"entr'éclaircirions", +"entr'éclaircirons", +"entr'éclairciront", +"entr'éclaircis", +"entr'éclaircissaient", +"entr'éclaircissait", +"entr'éclaircissant", +"entr'éclaircisse", +"entr'éclaircissent", +"entr'éclaircissez", +"entr'éclaircissiez", +"entr'éclaircissions", +"entr'éclaircissons", +"entr'éclaircit", +"entr'éclaircît", +"entr'éclaircîtes", +"entr'éclore", +"entr'éclose", +"entr'écouta", +"entr'écoutaient", +"entr'écoutait", +"entr'écoutâmes", +"entr'écoutant", +"entr'écoutassent", +"entr'écoutassiez", +"entr'écoutassions", +"entr'écoutât", +"entr'écoutâtes", +"entr'écoute", +"entr'écouté", +"entr'écoutées", +"entr'écoutent", +"entr'écouter", +"entr'écoutera", +"entr'écouteraient", +"entr'écouterait", +"entr'écoutèrent", +"entr'écouterez", +"entr'écouteriez", +"entr'écouterions", +"entr'écouterons", +"entr'écouteront", +"entr'écoutés", +"entr'écoutez", +"entr'écoutiez", +"entr'écoutions", +"entr'écoutons", +"entr'écrasa", +"entr'écrasai", +"entr'écrasaient", +"entr'écrasais", +"entr'écrasait", +"entr'écrasâmes", +"entr'écrasant", +"entr'écrasas", +"entr'écrasasse", +"entr'écrasassent", +"entr'écrasasses", +"entr'écrasassiez", +"entr'écrasassions", +"entr'écrasât", +"entr'écrasâtes", +"entr'écrase", +"entr'écrasé", +"entr'écrasée", +"entr'écrasées", +"entr'écrasent", +"entr'écraser", +"entr'écraser", +"entr'écrasera", +"entr'écraserai", +"entr'écraseraient", +"entr'écraserais", +"entr'écraserait", +"entr'écraseras", +"entr'écrasèrent", +"entr'écraserez", +"entr'écraseriez", +"entr'écraserions", +"entr'écraserons", +"entr'écraseront", +"entr'écrases", +"entr'écrasés", +"entr'écrasez", +"entr'écrasiez", +"entr'écrasions", +"entr'écrasons", +"entr'écrira", +"entr'écriraient", +"entr'écrirait", +"entr'écrire", +"entr'écrire", +"entr'écrirez", +"entr'écririez", +"entr'écririons", +"entr'écrirons", +"entr'écriront", +"entr'écrit", +"entr'écrite", +"entr'écrites", +"entr'écrits", +"entr'écrivaient", +"entr'écrivait", +"entr'écrivant", +"entr'écrive", +"entr'écrivent", +"entr'écrivez", +"entr'écriviez", +"entr'écrivîmes", +"entr'écrivions", +"entr'écrivirent", +"entr'écrivissent", +"entr'écrivissions", +"entr'écrivit", +"entr'écrivît", +"entr'écrivîtes", +"entr'écrivons", +"entrée-sortie", +"entrées-sorties", +"entr'égorge", +"entr'égorgé", +"entr'égorgea", +"entr'égorgeai", +"entr'égorgeaient", +"entr'égorgeait", +"entr'égorgeâmes", +"entr'égorgeant", +"entr'égorgeassent", +"entr'égorgeassiez", +"entr'égorgeassions", +"entr'égorgeât", +"entr'égorgeâtes", +"entr'égorgée", +"entr'égorgées", +"entr'égorgemens", +"entr'égorgement", +"entr'égorgements", +"entr'égorgent", +"entr'égorgeons", +"entr'égorger", +"entr'égorger", +"entr'égorgera", +"entr'égorgeraient", +"entr'égorgerait", +"entr'égorgèrent", +"entr'égorgerez", +"entr'égorgeriez", +"entr'égorgerions", +"entr'égorgerons", +"entr'égorgeront", +"entr'égorges", +"entr'égorgés", +"entr'égorgez", +"entr'égorgiez", +"entr'égorgions", +"entr'égratigna", +"entr'égratignaient", +"entr'égratignait", +"entr'égratignâmes", +"entr'égratignant", +"entr'égratignassent", +"entr'égratignassiez", +"entr'égratignassions", +"entr'égratignât", +"entr'égratignâtes", +"entr'égratigne", +"entr'égratigné", +"entr'égratignées", +"entr'égratignent", +"entr'égratigner", +"entr'égratigner", +"entr'égratignera", +"entr'égratigneraient", +"entr'égratignerait", +"entr'égratignèrent", +"entr'égratignerez", +"entr'égratigneriez", +"entr'égratignerions", +"entr'égratignerons", +"entr'égratigneront", +"entr'égratignés", +"entr'égratignez", +"entr'égratigniez", +"entr'égratignions", +"entr'égratignons", +"entr'embarrassa", +"entr'embarrassaient", +"entr'embarrassait", +"entr'embarrassâmes", +"entr'embarrassant", +"entr'embarrassassent", +"entr'embarrassassiez", +"entr'embarrassassions", +"entr'embarrassât", +"entr'embarrassâtes", +"entr'embarrasse", +"entr'embarrassé", +"entr'embarrassées", +"entr'embarrassent", +"entr'embarrasser", +"entr'embarrasser", +"entr'embarrassera", +"entr'embarrasseraient", +"entr'embarrasserait", +"entr'embarrassèrent", +"entr'embarrasserez", +"entr'embarrasseriez", +"entr'embarrasserions", +"entr'embarrasserons", +"entr'embarrasseront", +"entr'embarrassés", +"entr'embarrassez", +"entr'embarrassiez", +"entr'embarrassions", +"entr'embarrassons", +"entr'embrassa", +"entr'embrassaient", +"entr'embrassait", +"entr'embrassâmes", +"entr'embrassant", +"entr'embrassassent", +"entr'embrassassiez", +"entr'embrassassions", +"entr'embrassât", +"entr'embrassâtes", +"entr'embrasse", +"entr'embrassé", +"entr'embrassées", +"entr'embrassent", +"entr'embrasser", +"entr'embrasser", +"entr'embrassera", +"entr'embrasseraient", +"entr'embrasserait", +"entr'embrassèrent", +"entr'embrasserez", +"entr'embrasseriez", +"entr'embrasserions", +"entr'embrasserons", +"entr'embrasseront", +"entr'embrassés", +"entr'embrassez", +"entr'embrassiez", +"entr'embrassions", +"entr'embrassons", +"Entremont-le-Vieux", +"entr'empêcha", +"entr'empêchaient", +"entr'empêchait", +"entr'empêchâmes", +"entr'empêchant", +"entr'empêchassent", +"entr'empêchassiez", +"entr'empêchassions", +"entr'empêchât", +"entr'empêchâtes", +"entr'empêche", +"entr'empêché", +"entr'empêchées", +"entr'empêchent", +"entr'empêcher", +"entr'empêcher", +"entr'empêchera", +"entr'empêcheraient", +"entr'empêcherait", +"entr'empêchèrent", +"entr'empêcherez", +"entr'empêcheriez", +"entr'empêcherions", +"entr'empêcherons", +"entr'empêcheront", +"entr'empêchés", +"entr'empêchez", +"entr'empêchiez", +"entr'empêchions", +"entr'empêchons", +"entr'encourage", +"entr'encouragé", +"entr'encouragea", +"entr'encourageaient", +"entr'encourageait", +"entr'encourageâmes", +"entr'encourageant", +"entr'encourageassent", +"entr'encourageassiez", +"entr'encourageassions", +"entr'encourageât", +"entr'encourageâtes", +"entr'encouragées", +"entr'encouragent", +"entr'encourageons", +"entr'encourager", +"entr'encourager", +"entr'encouragera", +"entr'encourageraient", +"entr'encouragerait", +"entr'encouragèrent", +"entr'encouragerez", +"entr'encourageriez", +"entr'encouragerions", +"entr'encouragerons", +"entr'encourageront", +"entr'encouragés", +"entr'encouragez", +"entr'encouragiez", +"entr'encouragions", +"entr'enleva", +"entr'enlevaient", +"entr'enlevait", +"entr'enlevâmes", +"entr'enlevant", +"entr'enlevassent", +"entr'enlevassiez", +"entr'enlevassions", +"entr'enlevât", +"entr'enlevâtes", +"entr'enlève", +"entr'enlevé", +"entr'enlevées", +"entr'enlèvent", +"entr'enlever", +"entr'enlever", +"entr'enlèvera", +"entr'enlèveraient", +"entr'enlèverait", +"entr'enlevèrent", +"entr'enlèverez", +"entr'enlèveriez", +"entr'enlèverions", +"entr'enlèverons", +"entr'enlèveront", +"entr'enlevés", +"entr'enlevez", +"entr'enleviez", +"entr'enlevions", +"entr'enlevons", +"entr'entend", +"entr'entendaient", +"entr'entendait", +"entr'entendant", +"entr'entende", +"entr'entendent", +"entr'entendez", +"entr'entendiez", +"entr'entendîmes", +"entr'entendions", +"entr'entendirent", +"entr'entendissent", +"entr'entendissiez", +"entr'entendissions", +"entr'entendit", +"entr'entendît", +"entr'entendîtes", +"entr'entendons", +"entr'entendra", +"entr'entendraient", +"entr'entendrait", +"entr'entendre", +"entr'entendre", +"entr'entendrez", +"entr'entendriez", +"entr'entendrions", +"entr'entendrons", +"entr'entendront", +"entr'entendu", +"entr'entendue", +"entr'entendues", +"entr'entendus", +"entr'enverra", +"entr'enverrai", +"entr'enverraient", +"entr'enverrais", +"entr'enverrait", +"entr'enverras", +"entr'enverrez", +"entr'enverriez", +"entr'enverrions", +"entr'enverrons", +"entr'enverront", +"entr'envoie", +"entr'envoient", +"entr'envoies", +"entr'envoya", +"entr'envoyai", +"entr'envoyaient", +"entr'envoyais", +"entr'envoyait", +"entr'envoyâmes", +"entr'envoyant", +"entr'envoyas", +"entr'envoyasse", +"entr'envoyassent", +"entr'envoyasses", +"entr'envoyassiez", +"entr'envoyassions", +"entr'envoyât", +"entr'envoyâtes", +"entr'envoyé", +"entr'envoyée", +"entr'envoyées", +"entr'envoyer", +"entr'envoyer", +"entr'envoyèrent", +"entr'envoyés", +"entr'envoyez", +"entr'envoyiez", +"entr'envoyions", +"entr'envoyons", +"entr'épia", +"entr'épiaient", +"entr'épiait", +"entr'épiâmes", +"entr'épiant", +"entr'épiassent", +"entr'épiassiez", +"entr'épiassions", +"entr'épiât", +"entr'épiâtes", +"entr'épie", +"entr'épié", +"entr'épiées", +"entr'épient", +"entr'épier", +"entr'épier", +"entr'épiera", +"entr'épieraient", +"entr'épierait", +"entr'épièrent", +"entr'épierez", +"entr'épieriez", +"entr'épierions", +"entr'épierons", +"entr'épieront", +"entr'épiés", +"entr'épiez", +"entr'épiiez", +"entr'épiions", +"entr'épions", +"entr'éprouva", +"entr'éprouvaient", +"entr'éprouvait", +"entr'éprouvâmes", +"entr'éprouvant", +"entr'éprouvassent", +"entr'éprouvassiez", +"entr'éprouvassions", +"entr'éprouvât", +"entr'éprouvâtes", +"entr'éprouve", +"entr'éprouvé", +"entr'éprouvées", +"entr'éprouvent", +"entr'éprouver", +"entr'éprouver", +"entr'éprouvera", +"entr'éprouveraient", +"entr'éprouverait", +"entr'éprouvèrent", +"entr'éprouverez", +"entr'éprouveriez", +"entr'éprouverions", +"entr'éprouverons", +"entr'éprouveront", +"entr'éprouvés", +"entr'éprouvez", +"entr'éprouviez", +"entr'éprouvions", +"entr'éprouvons", +"entrer-coucher", +"entr'escroqua", +"entr'escroquaient", +"entr'escroquait", +"entr'escroquâmes", +"entr'escroquant", +"entr'escroquassent", +"entr'escroquassiez", +"entr'escroquassions", +"entr'escroquât", +"entr'escroquâtes", +"entr'escroque", +"entr'escroqué", +"entr'escroquées", +"entr'escroquent", +"entr'escroquer", +"entr'escroquer", +"entr'escroquera", +"entr'escroqueraient", +"entr'escroquerait", +"entr'escroquèrent", +"entr'escroquerez", +"entr'escroqueriez", +"entr'escroquerions", +"entr'escroquerons", +"entr'escroqueront", +"entr'escroqués", +"entr'escroquez", +"entr'escroquiez", +"entr'escroquions", +"entr'escroquons", +"entr'étouffa", +"entr'étouffaient", +"entr'étouffait", +"entr'étouffâmes", +"entr'étouffant", +"entr'étouffassent", +"entr'étouffassiez", +"entr'étouffassions", +"entr'étouffât", +"entr'étouffâtes", +"entr'étouffe", +"entr'étouffé", +"entr'étouffées", +"entr'étouffent", +"entr'étouffer", +"entr'étouffer", +"entr'étouffera", +"entr'étoufferaient", +"entr'étoufferait", +"entr'étouffèrent", +"entr'étoufferez", +"entr'étoufferiez", +"entr'étoufferions", +"entr'étoufferons", +"entr'étoufferont", +"entr'étouffés", +"entr'étouffez", +"entr'étouffiez", +"entr'étouffions", +"entr'étouffons", +"entr'étripa", +"entr'étripaient", +"entr'étripait", +"entr'étripâmes", +"entr'étripant", +"entr'étripassent", +"entr'étripassiez", +"entr'étripassions", +"entr'étripât", +"entr'étripâtes", +"entr'étripe", +"entr'étripé", +"entr'étripées", +"entr'étripent", +"entr'étriper", +"entr'étriper", +"entr'étripera", +"entr'étriperaient", +"entr'étriperait", +"entr'étripèrent", +"entr'étriperez", +"entr'étriperiez", +"entr'étriperions", +"entr'étriperons", +"entr'étriperont", +"entr'étripés", +"entr'étripez", +"entr'étripiez", +"entr'étripions", +"entr'étripons", +"entr'eux", +"entr'éveilla", +"entr'éveillaient", +"entr'éveillait", +"entr'éveillâmes", +"entr'éveillant", +"entr'éveillassent", +"entr'éveillassiez", +"entr'éveillassions", +"entr'éveillât", +"entr'éveillâtes", +"entr'éveille", +"entr'éveillé", +"entr'éveillées", +"entr'éveillent", +"entr'éveiller", +"entr'éveiller", +"entr'éveillera", +"entr'éveilleraient", +"entr'éveillerait", +"entr'éveillèrent", +"entr'éveillerez", +"entr'éveilleriez", +"entr'éveillerions", +"entr'éveillerons", +"entr'éveilleront", +"entr'éveillés", +"entr'éveillez", +"entr'éveilliez", +"entr'éveillions", +"entr'éveillons", +"entr'excita", +"entr'excitaient", +"entr'excitait", +"entr'excitâmes", +"entr'excitant", +"entr'excitassent", +"entr'excitassiez", +"entr'excitassions", +"entr'excitât", +"entr'excitâtes", +"entr'excite", +"entr'excité", +"entr'excitées", +"entr'excitent", +"entr'exciter", +"entr'exciter", +"entr'excitera", +"entr'exciteraient", +"entr'exciterait", +"entr'excitèrent", +"entr'exciterez", +"entr'exciteriez", +"entr'exciterions", +"entr'exciterons", +"entr'exciteront", +"entr'excités", +"entr'excitez", +"entr'excitiez", +"entr'excitions", +"entr'excitons", +"entr'exhorta", +"entr'exhortaient", +"entr'exhortait", +"entr'exhortâmes", +"entr'exhortant", +"entr'exhortassent", +"entr'exhortassiez", +"entr'exhortassions", +"entr'exhortât", +"entr'exhortâtes", +"entr'exhorte", +"entr'exhorté", +"entr'exhortées", +"entr'exhortent", +"entr'exhorter", +"entr'exhorter", +"entr'exhortera", +"entr'exhorteraient", +"entr'exhorterait", +"entr'exhortèrent", +"entr'exhorterez", +"entr'exhorteriez", +"entr'exhorterions", +"entr'exhorterons", +"entr'exhorteront", +"entr'exhortés", +"entr'exhortez", +"entr'exhortiez", +"entr'exhortions", +"entr'exhortons", +"entr'hiver", +"entr'hiverna", +"entr'hivernai", +"entr'hivernaient", +"entr'hivernais", +"entr'hivernait", +"entr'hivernâmes", +"entr'hivernant", +"entr'hivernas", +"entr'hivernasse", +"entr'hivernassent", +"entr'hivernasses", +"entr'hivernassiez", +"entr'hivernassions", +"entr'hivernât", +"entr'hivernâtes", +"entr'hiverne", +"entr'hiverné", +"entr'hivernée", +"entr'hivernées", +"entr'hivernent", +"entr'hiverner", +"entr'hivernera", +"entr'hivernerai", +"entr'hiverneraient", +"entr'hivernerais", +"entr'hivernerait", +"entr'hiverneras", +"entr'hivernèrent", +"entr'hivernerez", +"entr'hiverneriez", +"entr'hivernerions", +"entr'hivernerons", +"entr'hiverneront", +"entr'hivernes", +"entr'hivernés", +"entr'hivernez", +"entr'hiverniez", +"entr'hivernions", +"entr'hivernons", +"entr'honora", +"entr'honoraient", +"entr'honorait", +"entr'honorâmes", +"entr'honorant", +"entr'honorassent", +"entr'honorassiez", +"entr'honorassions", +"entr'honorât", +"entr'honorâtes", +"entr'honore", +"entr'honoré", +"entr'honorées", +"entr'honorent", +"entr'honorer", +"entr'honorer", +"entr'honorera", +"entr'honoreraient", +"entr'honorerait", +"entr'honorèrent", +"entr'honorerez", +"entr'honoreriez", +"entr'honorerions", +"entr'honorerons", +"entr'honoreront", +"entr'honorés", +"entr'honorez", +"entr'honoriez", +"entr'honorions", +"entr'honorons", +"entr'immola", +"entr'immolaient", +"entr'immolait", +"entr'immolâmes", +"entr'immolant", +"entr'immolassent", +"entr'immolassiez", +"entr'immolassions", +"entr'immolât", +"entr'immolâtes", +"entr'immole", +"entr'immolé", +"entr'immolées", +"entr'immolent", +"entr'immoler", +"entr'immoler", +"entr'immolera", +"entr'immoleraient", +"entr'immolerait", +"entr'immolèrent", +"entr'immolerez", +"entr'immoleriez", +"entr'immolerions", +"entr'immolerons", +"entr'immoleront", +"entr'immolés", +"entr'immolez", +"entr'immoliez", +"entr'immolions", +"entr'immolons", +"entr'incommoda", +"entr'incommodaient", +"entr'incommodait", +"entr'incommodâmes", +"entr'incommodant", +"entr'incommodassent", +"entr'incommodassiez", +"entr'incommodassions", +"entr'incommodât", +"entr'incommodâtes", +"entr'incommode", +"entr'incommodé", +"entr'incommodées", +"entr'incommodent", +"entr'incommoder", +"entr'incommoder", +"entr'incommodera", +"entr'incommoderaient", +"entr'incommoderait", +"entr'incommodèrent", +"entr'incommoderez", +"entr'incommoderiez", +"entr'incommoderions", +"entr'incommoderons", +"entr'incommoderont", +"entr'incommodés", +"entr'incommodez", +"entr'incommodiez", +"entr'incommodions", +"entr'incommodons", +"entr'injuria", +"entr'injuriaient", +"entr'injuriait", +"entr'injuriâmes", +"entr'injuriant", +"entr'injuriassent", +"entr'injuriassiez", +"entr'injuriassions", +"entr'injuriât", +"entr'injuriâtes", +"entr'injurie", +"entr'injurié", +"entr'injuriées", +"entr'injurient", +"entr'injurier", +"entr'injurier", +"entr'injuriera", +"entr'injurieraient", +"entr'injurierait", +"entr'injurièrent", +"entr'injurierez", +"entr'injurieriez", +"entr'injurierions", +"entr'injurierons", +"entr'injurieront", +"entr'injuriés", +"entr'injuriez", +"entr'injuriiez", +"entr'injuriions", +"entr'injurions", +"entr'instruira", +"entr'instruiraient", +"entr'instruirait", +"entr'instruire", +"entr'instruire", +"entr'instruirez", +"entr'instruiriez", +"entr'instruirions", +"entr'instruirons", +"entr'instruiront", +"entr'instruisaient", +"entr'instruisait", +"entr'instruisant", +"entr'instruise", +"entr'instruisent", +"entr'instruisez", +"entr'instruisiez", +"entr'instruisîmes", +"entr'instruisions", +"entr'instruisirent", +"entr'instruisissent", +"entr'instruisissions", +"entr'instruisit", +"entr'instruisît", +"entr'instruisîtes", +"entr'instruisons", +"entr'instruit", +"entr'instruite", +"entr'instruites", +"entr'instruits", +"entr'oblige", +"entr'obligé", +"entr'obligea", +"entr'obligeaient", +"entr'obligeait", +"entr'obligeâmes", +"entr'obligeant", +"entr'obligeassent", +"entr'obligeassiez", +"entr'obligeassions", +"entr'obligeât", +"entr'obligeâtes", +"entr'obligées", +"entr'obligent", +"entr'obligeons", +"entr'obliger", +"entr'obliger", +"entr'obligera", +"entr'obligeraient", +"entr'obligerait", +"entr'obligèrent", +"entr'obligerez", +"entr'obligeriez", +"entr'obligerions", +"entr'obligerons", +"entr'obligeront", +"entr'obligés", +"entr'obligez", +"entr'obligiez", +"entr'obligions", +"entr'offensa", +"entr'offensaient", +"entr'offensait", +"entr'offensâmes", +"entr'offensant", +"entr'offensassent", +"entr'offensassiez", +"entr'offensassions", +"entr'offensât", +"entr'offensâtes", +"entr'offense", +"entr'offensé", +"entr'offensées", +"entr'offensent", +"entr'offenser", +"entr'offenser", +"entr'offensera", +"entr'offenseraient", +"entr'offenserait", +"entr'offensèrent", +"entr'offenserez", +"entr'offenseriez", +"entr'offenserions", +"entr'offenserons", +"entr'offenseront", +"entr'offensés", +"entr'offensez", +"entr'offensiez", +"entr'offensions", +"entr'offensons", +"entr'oie", +"entr'oient", +"entr'oies", +"entr'ois", +"entr'oit", +"entr'ombrage", +"entr'ombragé", +"entr'ombragea", +"entr'ombrageaient", +"entr'ombrageait", +"entr'ombrageâmes", +"entr'ombrageant", +"entr'ombrageassent", +"entr'ombrageassiez", +"entr'ombrageassions", +"entr'ombrageât", +"entr'ombrageâtes", +"entr'ombragées", +"entr'ombragent", +"entr'ombrageons", +"entr'ombrager", +"entr'ombrager", +"entr'ombragera", +"entr'ombrageraient", +"entr'ombragerait", +"entr'ombragèrent", +"entr'ombragerez", +"entr'ombrageriez", +"entr'ombragerions", +"entr'ombragerons", +"entr'ombrageront", +"entr'ombragés", +"entr'ombragez", +"entr'ombragiez", +"entr'ombragions", +"entr'opercule", +"entr'orraient", +"entr'orrais", +"entr'orrait", +"entr'orriez", +"entr'orrions", +"entr'oublia", +"entr'oubliaient", +"entr'oubliait", +"entr'oubliâmes", +"entr'oubliant", +"entr'oubliassent", +"entr'oubliassiez", +"entr'oubliassions", +"entr'oubliât", +"entr'oubliâtes", +"entr'oublie", +"entr'oublié", +"entr'oubliées", +"entr'oublient", +"entr'oublier", +"entr'oublier", +"entr'oubliera", +"entr'oublieraient", +"entr'oublierait", +"entr'oublièrent", +"entr'oublierez", +"entr'oublieriez", +"entr'oublierions", +"entr'oublierons", +"entr'oublieront", +"entr'oubliés", +"entr'oubliez", +"entr'oubliiez", +"entr'oubliions", +"entr'oublions", +"entr'ouï", +"entr'ouïe", +"entr'ouïes", +"entr'ouïmes", +"entr'ouïr", +"entr'ouïra", +"entr'ouïrai", +"entr'ouïraient", +"entr'ouïrais", +"entr'ouïrait", +"entr'ouïras", +"entr'ouïrent", +"entr'ouïrez", +"entr'ouïriez", +"entr'ouïrions", +"entr'ouïrons", +"entr'ouïront", +"entr'ouïs", +"entr'ouïsse", +"entr'ouïssent", +"entr'ouïsses", +"entr'ouïssiez", +"entr'ouïssions", +"entr'ouït", +"entr'ouïtes", +"entr'outrage", +"entr'outragé", +"entr'outragea", +"entr'outrageaient", +"entr'outrageait", +"entr'outrageâmes", +"entr'outrageant", +"entr'outrageassent", +"entr'outrageassiez", +"entr'outrageassions", +"entr'outrageât", +"entr'outrageâtes", +"entr'outragées", +"entr'outragent", +"entr'outrageons", +"entr'outrager", +"entr'outrager", +"entr'outragera", +"entr'outrageraient", +"entr'outragerait", +"entr'outragèrent", +"entr'outragerez", +"entr'outrageriez", +"entr'outragerions", +"entr'outragerons", +"entr'outrageront", +"entr'outragés", +"entr'outragez", +"entr'outragiez", +"entr'outragions", +"entr'ouvert", +"entr'ouverte", +"entr'ouvertes", +"entr'ouverts", +"entr'ouverture", +"entr'ouvraient", +"entr'ouvrais", +"entr'ouvrait", +"entr'ouvrant", +"entr'ouvre", +"entr'ouvrent", +"entr'ouvres", +"entr'ouvrez", +"entr'ouvriez", +"entr'ouvrîmes", +"entr'ouvrions", +"entr'ouvrir", +"entr'ouvrir", +"entr'ouvrira", +"entr'ouvrirai", +"entr'ouvriraient", +"entr'ouvrirais", +"entr'ouvrirait", +"entr'ouvriras", +"entr'ouvrirent", +"entr'ouvrirez", +"entr'ouvririez", +"entr'ouvririons", +"entr'ouvrirons", +"entr'ouvriront", +"entr'ouvris", +"entr'ouvrisse", +"entr'ouvrissent", +"entr'ouvrisses", +"entr'ouvrissiez", +"entr'ouvrissions", +"entr'ouvrit", +"entr'ouvrît", +"entr'ouvrîtes", +"entr'ouvrons", +"entr'oyaient", +"entr'oyais", +"entr'oyait", +"entr'oyant", +"entr'oyez", +"entr'oyiez", +"entr'oyions", +"entr'oyons", +"entr'usa", +"entr'usaient", +"entr'usait", +"entr'usâmes", +"entr'usant", +"entr'usassent", +"entr'usassiez", +"entr'usassions", +"entr'usât", +"entr'usâtes", +"entr'use", +"entr'usé", +"entr'usées", +"entr'usent", +"entr'user", +"entr'user", +"entr'usera", +"entr'useraient", +"entr'userait", +"entr'usèrent", +"entr'userez", +"entr'useriez", +"entr'userions", +"entr'userons", +"entr'useront", +"entr'usés", +"entr'usez", +"entr'usiez", +"entr'usions", +"entr'usons", +"Éole-en-Beauce", +"éoli-harpe", +"Epagne-Epagnette", +"Épagne-Épagnette", +"épargne-logement", +"épaulé-jeté", +"épaulés-jetés", +"Epaux-Bézu", +"Épaux-Bézu", +"Epeigné-les-Bois", +"Épeigné-les-Bois", +"Epeigné-sur-Dême", +"Épeigné-sur-Dême", +"Epercieux-Saint-Paul", +"Épercieux-Saint-Paul", +"Epernay-sous-Gevrey", +"Épernay-sous-Gevrey", +"Epiais-lès-Louvres", +"Épiais-lès-Louvres", +"Epiais-Rhus", +"Épiais-Rhus", +"Epi-Contois", +"épi-contois", +"Épi-Contois", +"Epi-Contoise", +"épi-contoise", +"Épi-Contoise", +"Epi-Contoises", +"épi-contoises", +"Épi-Contoises", +"épidote-gris", +"Epieds-en-Beauce", +"Épieds-en-Beauce", +"Epiez-sur-Chiers", +"Épiez-sur-Chiers", +"Epiez-sur-Meuse", +"Épiez-sur-Meuse", +"Épinac-les-Mines", +"épinard-fraise", +"Epinay-Champlâtreux", +"Épinay-Champlâtreux", +"Epinay-le-Comte", +"Épinay-le-Comte", +"Epinay-sous-Sénart", +"Épinay-sous-Sénart", +"Epinay-sur-Duclair", +"Épinay-sur-Duclair", +"Epinay-sur-Odon", +"Épinay-sur-Odon", +"Epinay-sur-Orge", +"Épinay-sur-Orge", +"Epinay-sur-Seine", +"Épinay-sur-Seine", +"Epineau-les-Voves", +"Épineau-les-Voves", +"Epine-aux-Bois", +"Épine-aux-Bois", +"épine-du-Christ", +"épine-fleurie", +"épines-vinettes", +"Epineuil-le-Fleuriel", +"Épineuil-le-Fleuriel", +"Epineu-le-Chevreuil", +"Épineu-le-Chevreuil", +"Epineux-le-Seguin", +"Épineux-le-Seguin", +"épine-vinette", +"épiplo-entérocèle", +"épiplo-ischiocèle", +"épiplo-mérocèle", +"épluche-légume", +"épluche-légumes", +"Eppenberg-Wöschnau", +"Eppe-Sauvage", +"Epreville-en-Lieuvin", +"Épreville-en-Lieuvin", +"Epreville-en-Roumois", +"Épreville-en-Roumois", +"Epreville-près-le-Neubourg", +"Épreville-près-le-Neubourg", +"e-procurement", +"e-procurements", +"ep's", +"épuises-volantes", +"épuise-volante", +"équato-guinéen", +"équato-guinéenne", +"équato-guinéennes", +"équato-guinéens", +"Équatoria-Central", +"Équatoria-Occidental", +"Équatoria-Oriental", +"Equennes-Eramecourt", +"Équennes-Éramecourt", +"Equeurdreville-Hainneville", +"Équeurdreville-Hainneville", +"Equihen-Plage", +"Équihen-Plage", +"Eragny-sur-Epte", +"Éragny-sur-Epte", +"Éragny-sur-Oise", +"Erbes-Büdesheim", +"Erbéviller-sur-Amezule", +"Ercé-en-Lamée", +"Ercé-près-Liffré", +"Erdre-en-Anjou", +"e-reader", +"e-readers", +"e-réputation", +"e-réputations", +"e-réservation", +"e-réservations", +"Ergué-Armel", +"Ergué-Gabéric", +"Erize-la-Brûlée", +"Érize-la-Brûlée", +"Érize-la-Grande", +"Erize-la-Petite", +"Érize-la-Petite", +"Erize-Saint-Dizier", +"Érize-Saint-Dizier", +"Erlangen-Höchstadt", +"Erlbach-Kirchberg", +"Ermenonville-la-Grande", +"Ermenonville-la-Petite", +"Ermeton-sur-Biert", +"Ernemont-Boutavent", +"Ernemont-la-Villette", +"Ernemont-sur-Buchy", +"Erneville-aux-Bois", +"Ernolsheim-Bruche", +"Ernolsheim-lès-Saverne", +"Ernolsheim-Saverne", +"Erny-Saint-Julien", +"Erpe-Mere", +"Erps-Kwerps", +"Erquinghem-le-Sec", +"Erquinghem-Lys", +"Ervy-le-Châtel", +"e-santé", +"Esboz-Brest", +"Eschbach-au-Val", +"Eschêne-Autrage", +"Esch-sur-Alzette", +"Esch-sur-Sûre", +"Esclassan-Labastide", +"Esclavolles-Lurey", +"Escles-Saint-Pierre", +"Escolives-Sainte-Camille", +"Escombres-et-le-Chesnois", +"Escoubès-Pouts", +"Escry-le-Franc", +"Escueillens-et-Saint-Just-de-Bélengard", +"Escures-sur-Favières", +"eskimau-aléoute", +"eskimo-aléoute", +"eskimo-aléoutes", +"Eslourenties-Daban", +"Esmery-Hallon", +"Esnes-en-Argonne", +"éso-narthex", +"espace-boutique", +"espaces-temps", +"espaces-ventes", +"espace-temps", +"espace-vente", +"espadon-voilier", +"Espagnac-Sainte-Eulalie", +"Espaly-Saint-Marcel", +"Esparron-de-Verdon", +"Esparron-la-Bâtie", +"Espès-Undurein", +"Espierres-Helchin", +"Espinasse-Vozelle", +"Espira-de-Conflent", +"Espira-de-l'Agly", +"Esplantas-Vazeilles", +"Esplas-de-Sérou", +"e-sport", +"e-sportif", +"e-sportifs", +"e-sports", +"esprit-de-bois", +"esprit-de-sel", +"esprit-de-vin", +"esprit-fort", +"Esprit-Saint", +"esprits-forts", +"Esquay-Notre-Dame", +"Esquay-sur-Seulles", +"Esquièze-Sère", +"esquimau-aléoute", +"esquimo-aléoute", +"Essche-Saint-Liévin", +"Essertenne-et-Cecey", +"Essertines-en-Châtelneuf", +"Essertines-en-Donzy", +"Essertines-sur-Rolle", +"Essertines-sur-Yverdon", +"Essert-Pittet", +"essert-romanais", +"Essert-Romanais", +"essert-romanaise", +"Essert-Romanaise", +"essert-romanaises", +"Essert-Romanaises", +"Essert-Romand", +"Esserts-Blay", +"Esserts-Salève", +"Esserval-Combe", +"Esserval-Tartre", +"Essey-et-Maizerais", +"Essey-la-Côte", +"Essey-les-Eaux", +"Essey-lès-Nancy", +"Essey-les-Ponts", +"Essigny-le-Grand", +"Essigny-le-Petit", +"Eßleben-Teutleben", +"Essômes-sur-Marne", +"essuie-glace", +"essuie-glaces", +"essuie-main", +"essuie-mains", +"essuie-meuble", +"essuie-meubles", +"essuie-phare", +"essuie-phares", +"essuie-pied", +"essuie-pieds", +"essuie-plume", +"essuie-plumes", +"essuie-tout", +"essuie-touts", +"essuie-verre", +"essuie-verres", +"Estavayer-le-Lac", +"Estinnes-au-Mont", +"Estinnes-au-Val", +"Estouteville-Ecalles", +"Estouteville-Écalles", +"Estrée-Blanche", +"estrée-blanchois", +"Estrée-Blanchois", +"estrée-blanchoise", +"Estrée-Blanchoise", +"estrée-blanchoises", +"Estrée-Blanchoises", +"estrée-cauchois", +"Estrée-Cauchois", +"estrée-cauchoise", +"Estrée-Cauchoise", +"estrée-cauchoises", +"Estrée-Cauchoises", +"Estrée-Cauchy", +"Estrées-Deniécourt", +"Estrées-en-Chaussée", +"Estrées-la-Campagne", +"Estrées-lès-Crécy", +"Estrées-Mons", +"Estrées-Saint-Denis", +"Estrées-sur-Noye", +"Estrée-Wamin", +"estrée-waminois", +"Estrée-Waminois", +"estrée-waminoise", +"Estrée-Waminoise", +"estrée-waminoises", +"Estrée-Waminoises", +"Esves-le-Moutier", +"Etables-sur-Mer", +"Étables-sur-Mer", +"Etais-la-Sauvin", +"Étais-la-Sauvin", +"étalon-or", +"Etampes-sur-Marne", +"Étampes-sur-Marne", +"Etang-Bertrand", +"Étang-Bertrand", +"Etang-la-Ville", +"Étang-la-Ville", +"Etang-Salé", +"Étang-Salé", +"Etang-Saléen", +"étang-saléen", +"Étang-Saléen", +"Etang-Saléenne", +"étang-saléenne", +"Étang-Saléenne", +"Etang-Saléennes", +"étang-saléennes", +"Étang-Saléennes", +"Etang-Saléens", +"étang-saléens", +"Étang-Saléens", +"Etang-sur-Arroux", +"Étang-sur-Arroux", +"Etang-Vergy", +"Étang-Vergy", +"état-limite", +"état-major", +"État-major", +"État-Major", +"État-nation", +"État-nounou", +"État-providence", +"états-civils", +"états-généraux", +"États-Généraux", +"états-limites", +"états-majors", +"États-majors", +"États-Majors", +"états-nations", +"États-nations", +"États-nounous", +"États-providence", +"états-unianisa", +"états-unianisai", +"états-unianisaient", +"états-unianisais", +"états-unianisait", +"états-unianisâmes", +"états-unianisant", +"états-unianisas", +"états-unianisasse", +"états-unianisassent", +"états-unianisasses", +"états-unianisassiez", +"états-unianisassions", +"états-unianisât", +"états-unianisâtes", +"états-unianise", +"états-unianisé", +"états-unianisée", +"états-unianisées", +"états-unianisent", +"états-unianiser", +"états-unianisera", +"états-unianiserai", +"états-unianiseraient", +"états-unianiserais", +"états-unianiserait", +"états-unianiseras", +"états-unianisèrent", +"états-unianiserez", +"états-unianiseriez", +"états-unianiserions", +"états-unianiserons", +"états-unianiseront", +"états-unianises", +"états-unianisés", +"états-unianisez", +"états-unianisiez", +"états-unianisions", +"états-unianisons", +"états-unien", +"États-Unien", +"états-unienne", +"États-Unienne", +"états-uniennes", +"États-Uniennes", +"états-uniens", +"États-Uniens", +"Etats-Unis", +"États-Unis", +"étau-limeur", +"étaux-limeurs", +"Etaves-et-Bocquiaux", +"Étaves-et-Bocquiaux", +"éthane-1,2-diol", +"éthéro-chloroforme", +"ethnico-religieux", +"éthyl-benzène", +"e-ticket", +"e-tickets", +"Étinehem-Méricourt", +"Etival-Clairefontaine", +"Étival-Clairefontaine", +"Etival-lès-le-Mans", +"Étival-lès-le-Mans", +"Etoile-Saint-Cyrice", +"Étoile-Saint-Cyrice", +"Etoile-sur-Rhône", +"Étoile-sur-Rhône", +"étouffe-chrétien", +"étouffe-chrétiens", +"e-tourisme", +"étrangle-chat", +"étrangle-chien", +"étrangle-loup", +"étrangle-loups", +"être-en-soi", +"être-là", +"Etrelles-et-la-Montbleuse", +"Étrelles-et-la-Montbleuse", +"Etrelles-sur-Aube", +"Étrelles-sur-Aube", +"êtres-en-soi", +"Etricourt-Manancourt", +"Étricourt-Manancourt", +"Etricourt-Manancourtois", +"étricourt-manancourtois", +"Étricourt-Manancourtois", +"Etricourt-Manancourtoise", +"étricourt-manancourtoise", +"Étricourt-Manancourtoise", +"Etricourt-Manancourtoises", +"étricourt-manancourtoises", +"Étricourt-Manancourtoises", +"Etten-Leur", +"Étueffont-Bas", +"Etxarri-Aranatz", +"Eugénie-les-Bains", +"Euilly-et-Lombut", +"Eure-et-Loir", +"euro-africain", +"euro-africaines", +"Euro-Afrique", +"euro-asiatique", +"euro-asiatiques", +"euro-bashing", +"euro-manifestation", +"euro-manifestations", +"euro-obligation", +"euro-obligations", +"Eurville-Bienville", +"eusses-tu-cru", +"eux-mêmes", +"Evaux-et-Ménil", +"Évaux-et-Ménil", +"Evaux-les-Bains", +"Évaux-les-Bains", +"Evette-Salbert", +"Évette-Salbert", +"Evian-les-Bains", +"Évian-les-Bains", +"Evin-Malmaison", +"Évin-Malmaison", +"Evry-Grégy-sur-Yerre", +"Évry-Grégy-sur-Yerre", +"Évry-Petit-Bourg", +"exa-ampère", +"exa-ampères", +"exa-électron-volt", +"exaélectron-volt", +"exa-électron-volts", +"exaélectron-volts", +"ex-aequo", +"ex-æquo", +"ex-ante", +"exa-octet", +"exa-octets", +"ex-champions", +"excito-nervin", +"excito-nervine", +"excito-nervines", +"excito-nervins", +"ex-copains", +"excusez-moi", +"ex-député", +"ex-députée", +"ex-députées", +"ex-députés", +"ex-femme", +"ex-femmes", +"ex-fumeur", +"ex-fumeurs", +"ex-libris", +"ex-mari", +"ex-maris", +"exo-noyau", +"exo-noyaux", +"expert-comptable", +"ex-petits", +"ex-présidents", +"ex-sacs", +"ex-sergents", +"ex-serviteurs", +"ex-soldats", +"ex-strip-teaseuse", +"extracto-chargeur", +"extracto-chargeurs", +"extracto-résine", +"extracto-résineux", +"extrêmes-droites", +"extrêmes-gauches", +"extrêmes-onctions", +"extro-déterminé", +"ex-voto", +"ex-votos", +"ex-Zaïre", +"eye-liner", +"eye-liners", +"Eygluy-Escoulin", +"Eygurande-et-Gardedeuil", +"Eyres-Moncube", +"Eyvignes-et-Eybènes", +"Eyzin-Pinet", +"Ezkio-Itsaso", +"Ezy-sur-Eure", +"Ézy-sur-Eure", +"face-à-face", +"face-à-main", +"face-B", +"face-kini", +"face-kinis", +"faces-à-main", +"faces-B", +"face-sitting", +"face-sittings", +"Faches-Thumesnil", +"faches-thumesnilois", +"Faches-Thumesnilois", +"faches-thumesniloise", +"Faches-Thumesniloise", +"faches-thumesniloises", +"Faches-Thumesniloises", +"fac-simila", +"fac-similai", +"fac-similaient", +"fac-similaire", +"fac-similais", +"fac-similait", +"fac-similâmes", +"fac-similant", +"fac-similas", +"fac-similasse", +"fac-similassent", +"fac-similasses", +"fac-similassiez", +"fac-similassions", +"fac-similât", +"fac-similâtes", +"fac-simile", +"fac-similé", +"fac-similée", +"fac-similées", +"fac-similent", +"fac-similer", +"fac-similera", +"fac-similerai", +"fac-simileraient", +"fac-similerais", +"fac-similerait", +"fac-simileras", +"fac-similèrent", +"fac-similerez", +"fac-simileriez", +"fac-similerions", +"fac-similerons", +"fac-simileront", +"fac-similes", +"fac-similés", +"fac-similez", +"fac-similiez", +"fac-similions", +"fac-similons", +"Faget-Abbatial", +"Fahy-lès-Autrey", +"faim-valle", +"Fain-lès-Montbard", +"Fain-lès-Moutiers", +"Fains-la-Folie", +"Fains-Véel", +"faire-part", +"faire-savoir", +"faire-valoir", +"fair-play", +"fair-plays", +"fait-à-fait", +"fait-divers", +"fait-diversier", +"fait-diversiers", +"fait-main", +"faits-divers", +"faits-diversier", +"faits-diversiers", +"fait-tout", +"Fajac-en-Val", +"Fajac-la-Relenque", +"Falkenberg-sur-Elster", +"fan-club", +"fan-clubs", +"fancy-fair", +"fancy-fairs", +"farcy-pontain", +"Farcy-Pontain", +"farcy-pontaine", +"Farcy-Pontaine", +"farcy-pontaines", +"Farcy-Pontaines", +"farcy-pontains", +"Farcy-Pontains", +"Fargau-Pratjau", +"Farges-Allichamps", +"Farges-en-Septaine", +"Farges-lès-Chalon", +"Farges-lès-Mâcon", +"Fargues-Saint-Hilaire", +"Fargues-sur-Ourbise", +"Far-West", +"fast-food", +"fast-foods", +"Fatouville-Grestain", +"Fatu-Hiva", +"Faucogney-et-la-Mer", +"Faucon-de-Barcelonnette", +"Faucon-du-Caire", +"Fau-de-Peyre", +"Faulx-les-Tombes", +"Fauquemont-sur-Gueule", +"fausse-braie", +"fausse-couche", +"fausse-limande", +"fausse-monnayeuse", +"fausse-porte", +"fausses-braies", +"fausses-couches", +"fausses-monnayeuses", +"Fauville-en-Caux", +"faux-acacia", +"faux-acacias", +"faux-ami", +"faux-amis", +"faux-bourdon", +"faux-bourdons", +"faux-bras", +"faux-carré", +"faux-carrés", +"faux-champlevé", +"faux-col", +"faux-cols", +"faux-cul", +"faux-derche", +"faux-derches", +"faux-filet", +"faux-filets", +"faux-frais", +"faux-frère", +"faux-frères", +"Faux-Fresnay", +"faux-fruit", +"faux-fruits", +"faux-fuyans", +"faux-fuyant", +"faux-fuyants", +"faux-garou", +"faux-grenier", +"faux-greniers", +"faux-jeton", +"faux-jetons", +"Faux-la-Montagne", +"Faux-Mazuras", +"faux-monnayage", +"faux-monnayages", +"faux-monnayeur", +"faux-monnayeurs", +"faux-nez", +"faux-palais", +"faux-persil", +"faux-poivrier", +"faux-poivriers", +"faux-pont", +"faux-ponts", +"faux-positif", +"faux-positifs", +"faux-saunage", +"faux-saunier", +"faux-saunière", +"faux-saunières", +"faux-sauniers", +"faux-scaphirhynque", +"faux-semblans", +"faux-semblant", +"faux-semblants", +"faux-sens", +"faux-vampire", +"faux-vampires", +"Faux-Vésigneul", +"Faux-Villecerf", +"faux-vin", +"Faveraye-Mâchelles", +"Faverges-de-la-Tour", +"Faverges-Seythenex", +"Faverolles-et-Coëmy", +"Faverolles-la-Campagne", +"Faverolles-lès-Lucey", +"Faverolles-les-Mares", +"Faverolles-sur-Cher", +"fax-tractage", +"fax-tractages", +"Fay-aux-Loges", +"Fay-de-Bretagne", +"Faye-d'Anjou", +"Faye-l'Abbesse", +"Faye-la-Vineuse", +"Fay-en-Montagne", +"Faye-sur-Ardin", +"Fayet-le-Château", +"Fayet-Ronaye", +"Fayl-Billot", +"fayl-billotin", +"Fayl-Billotin", +"fayl-billotine", +"Fayl-Billotine", +"fayl-billotines", +"Fayl-Billotines", +"fayl-billotins", +"Fayl-Billotins", +"Fay-le-Clos", +"Fay-les-Etangs", +"Fay-les-Étangs", +"Fay-lès-Marcilly", +"Faÿ-lès-Nemours", +"Fayl-la-Forêt", +"Fays-la-Chapelle", +"Fays-les-Veneurs", +"Fay-sur-Lignon", +"Fayt-le-Franc", +"Fayt-lez-Manage", +"Febvin-Palfart", +"Fêche-l'Eglise", +"Fêche-l'Église", +"fech-fech", +"feed-back", +"Fehl-Ritzhausen", +"Feins-en-Gâtinais", +"Feissons-sur-Isère", +"Feissons-sur-Salins", +"Felben-Wellhausen", +"Feldkirchen-Westerham", +"Félines-Minervois", +"Félines-sur-Rimandoule", +"Félines-Termenès", +"femelle-stérile", +"femelle-stériles", +"femme-enfant", +"femme-objet", +"femme-orchestre", +"femme-renarde", +"femmes-enfants", +"femmes-orchestres", +"femmes-renardes", +"fémoro-tibial", +"femto-ohm", +"femto-ohms", +"Fenouillet-du-Razès", +"fénoxaprop-éthyl", +"fénoxaprop-P-éthyl", +"féodo-vassalique", +"féodo-vassaliques", +"fer-à-cheval", +"fer-blanc", +"Fercé-sur-Sarthe", +"fer-chaud", +"fer-de-lance", +"fer-de-moulin", +"Fère-Champenoise", +"Fère-en-Tardenois", +"ferme-bourse", +"ferme-circuit", +"ferme-circuits", +"Ferme-Neuvien", +"ferme-porte", +"ferme-portes", +"fermes-hôtels", +"fermier-général", +"Fernán-Núñez", +"Ferney-Voltaire", +"Férolles-Attilly", +"Ferrals-les-Corbières", +"Ferrals-les-Montagnes", +"ferrando-forézienne", +"ferre-mule", +"Ferreux-Quincey", +"Ferrière-et-Lafolie", +"Ferrière-la-Grande", +"Ferrière-la-Petite", +"Ferrière-Larçon", +"Ferrières-en-Bray", +"Ferrières-en-Brie", +"Ferrières-en-Gâtinais", +"Ferrières-Haut-Clocher", +"Ferrières-la-Verrerie", +"Ferrières-le-Lac", +"Ferrières-les-Bois", +"Ferrières-lès-Ray", +"Ferrières-lès-Scey", +"Ferrières-les-Verreries", +"Ferrières-Poussarou", +"Ferrières-Saint-Hilaire", +"Ferrières-Saint-Mary", +"Ferrières-sur-Ariège", +"Ferrières-sur-Sichon", +"Ferrière-sur-Beaulieu", +"ferro-axinite", +"ferro-axinites", +"ferro-magnésien", +"ferro-magnétisme", +"ferro-magnétismes", +"ferro-phlogopite", +"ferro-phlogopites", +"ferro-prussiate", +"ferro-prussiates", +"ferry-boat", +"ferry-boats", +"fers-à-cheval", +"fers-blancs", +"fers-de-lance", +"Fesches-le-Châtel", +"fesh-fesh", +"Fesmy-le-Sart", +"Fessanvilliers-Mattanvilliers", +"fesse-cahier", +"fesse-mathieu", +"fesse-mathieus", +"fesse-mathieux", +"Fessenheim-le-Bas", +"fesse-tonneau", +"fesse-tonneaux", +"Fessey-Dessous-et-Dessus", +"fest-deiz", +"Festes-et-Saint-André", +"fest-noz", +"fest-nozs", +"Fête-Dieu", +"fétu-en-cul", +"fétus-en-cul", +"Feuguerolles-Bully", +"Feuguerolles-sur-Orne", +"Feuguerolles-sur-Seulles", +"feuille-caillou-ciseaux", +"feuille-morte", +"Feuquières-en-Vimeu", +"Fexhe-le-Haut-Clocher", +"Fexhe-Slins", +"Fey-en-Haye", +"fibre-cellule", +"fibro-cartilage", +"fibro-cellulaire", +"fibro-cystique", +"fibro-cystiques", +"fibro-granulaire", +"fibro-muqueux", +"fibro-séreux", +"fibro-soyeux", +"fiche-échalas", +"Fichous-Riumayou", +"fiducie-sûreté", +"Fieffes-Montrelet", +"fier-à-bras", +"fiers-à-bras", +"Fierville-Bray", +"Fierville-les-Mines", +"Fierville-les-Parcs", +"fie-vïnnamide", +"fie-vïnnamides", +"fifty-fifty", +"Figaró-Montmany", +"figuier-mûrier", +"filet-poubelle", +"filets-poubelles", +"fille-mère", +"filles-mères", +"film-fleuve", +"films-annonces", +"fils-de-puterie", +"filtre-presse", +"filtres-presses", +"fine-metal", +"Finkenbach-Gersweiler", +"finno-ougrien", +"finno-ougrienne", +"finno-ougriennes", +"finno-ougriens", +"fin-or", +"Fiquefleur-Equainville", +"Fiquefleur-Équainville", +"first-fit", +"Fischbach-Göslikon", +"Fischbach-Oberraden", +"fisse-larron", +"fisses-larrons", +"fist-fucking", +"fist-fuckings", +"Fitz-James", +"fitz-jamois", +"Fitz-Jamois", +"fitz-jamoise", +"Fitz-Jamoise", +"fitz-jamoises", +"Fitz-Jamoises", +"fixe-chaussette", +"fixe-chaussettes", +"fixe-fruit", +"fixe-fruits", +"fixe-longe", +"fixe-moustaches", +"fixe-ruban", +"fixe-rubans", +"Fix-Saint-Geneys", +"fix-up", +"Fize-Fontaine", +"Fize-le-Marsal", +"f'jer", +"f'jers", +"Flacé-lès-Mâcon", +"Flacey-en-Bresse", +"fla-fla", +"fla-flas", +"Flagey-Echézeaux", +"Flagey-Échézeaux", +"Flagey-lès-Auxonne", +"Flagey-Rigney", +"Flaignes-Havys", +"Flaignes-les-Oliviers", +"Flamets-Frétils", +"flanc-de-chien", +"Flanc-de-chien", +"flanc-garde", +"flanc-gardes", +"flanc-mou", +"Flancourt-Catelon", +"Flancourt-Crescy-en-Roumois", +"flancs-de-chien", +"Flancs-de-chien", +"flancs-gardes", +"flancs-mous", +"Flandre-Occidentale", +"Flandre-Orientale", +"flash-back", +"flash-ball", +"flash-balls", +"flash-mob", +"flash-mobs", +"Flassans-sur-Issole", +"Flaujac-Gare", +"Flaujac-Poujols", +"Flaumont-Waudrechies", +"Flavigny-le-Grand-et-Beaurain", +"Flavigny-le-Petit", +"Flavigny-sur-Moselle", +"Flavigny-sur-Ozerain", +"Flavy-le-Martel", +"Flavy-le-Meldeux", +"Fléac-sur-Seugne", +"Flémalle-Grande", +"Flémalle-Haute", +"Fléré-la-Rivière", +"Flers-en-Escrebieux", +"Flers-lez-Lille", +"Flers-sur-Noye", +"fleur-bleuisa", +"fleur-bleuisai", +"fleur-bleuisaient", +"fleur-bleuisais", +"fleur-bleuisait", +"fleur-bleuisâmes", +"fleur-bleuisant", +"fleur-bleuisas", +"fleur-bleuisasse", +"fleur-bleuisassent", +"fleur-bleuisasses", +"fleur-bleuisassiez", +"fleur-bleuisassions", +"fleur-bleuisât", +"fleur-bleuisâtes", +"fleur-bleuise", +"fleur-bleuisé", +"fleur-bleuisée", +"fleur-bleuisées", +"fleur-bleuisent", +"fleur-bleuiser", +"fleur-bleuisera", +"fleur-bleuiserai", +"fleur-bleuiseraient", +"fleur-bleuiserais", +"fleur-bleuiserait", +"fleur-bleuiseras", +"fleur-bleuisèrent", +"fleur-bleuiserez", +"fleur-bleuiseriez", +"fleur-bleuiserions", +"fleur-bleuiserons", +"fleur-bleuiseront", +"fleur-bleuises", +"fleur-bleuisés", +"fleur-bleuisez", +"fleur-bleuisiez", +"fleur-bleuisions", +"fleur-bleuisons", +"fleur-de-mai", +"Fleurey-lès-Faverney", +"Fleurey-lès-Lavoncourt", +"Fleurey-lès-Saint-Loup", +"Fleurey-sur-Ouche", +"fleur-feuille", +"Fleurieu-sur-Saône", +"Fleurieux-sur-l'Arbresle", +"Fleury-devant-Douaumont", +"Fleury-en-Bière", +"Fleury-et-Montmarin", +"Fleury-la-Forêt", +"Fleury-la-Montagne", +"Fleury-la-Rivière", +"Fleury-la-Vallée", +"Fleury-les-Aubrais", +"Fleury-Mérogis", +"Fleury-Montmarin", +"Fleury-sur-Aire", +"Fleury-sur-Andelle", +"Fleury-sur-Loire", +"Fleury-sur-Orne", +"Fleury-Vallée-d'Aillant", +"Fléville-devant-Nancy", +"Fléville-Lixières", +"Flez-Cuzy", +"flic-flac", +"flic-flaqua", +"flic-flaquai", +"flic-flaquaient", +"flic-flaquais", +"flic-flaquait", +"flic-flaquâmes", +"flic-flaquant", +"flic-flaquas", +"flic-flaquasse", +"flic-flaquassent", +"flic-flaquasses", +"flic-flaquassiez", +"flic-flaquassions", +"flic-flaquât", +"flic-flaquâtes", +"flic-flaque", +"flic-flaqué", +"flic-flaquent", +"flic-flaquer", +"flic-flaquera", +"flic-flaquerai", +"flic-flaqueraient", +"flic-flaquerais", +"flic-flaquerait", +"flic-flaqueras", +"flic-flaquèrent", +"flic-flaquerez", +"flic-flaqueriez", +"flic-flaquerions", +"flic-flaquerons", +"flic-flaqueront", +"flic-flaques", +"flic-flaquez", +"flic-flaquiez", +"flic-flaquions", +"flic-flaquons", +"Flieth-Stegelitz", +"Flines-lès-Mortagne", +"Flines-lez-Raches", +"Flins-Neuve-Eglise", +"Flins-Neuve-Église", +"Flins-sur-Seine", +"flint-glass", +"flip-flap", +"flirty-fishing", +"float-tube", +"float-tubes", +"Flogny-la-Chapelle", +"Floh-Seligenthal", +"Florent-en-Argonne", +"Florentin-la-Capelle", +"Florimont-Gaumier", +"Flörsheim-Dalsheim", +"flos-ferré", +"flos-ferri", +"Flottemanville-Hague", +"flotte-tube", +"flotte-tubes", +"flou-flou", +"fluazifop-butyl", +"fluazifop-P-butyl", +"Fluorn-Winzeln", +"fluoro-phlogopite", +"fluoro-phlogopites", +"flupyrsulfuron-méthyle", +"fluroxypyr-meptyl", +"fluvio-marin", +"fly-over", +"fly-overs", +"fly-tox", +"f'nêtre", +"f'nêtres", +"Foameix-Ornel", +"foc-en-l'air", +"Föhrden-Barl", +"Fohren-Linden", +"foie-de-boeuf", +"foies-de-boeuf", +"foi-menti", +"foi-mentie", +"foire-exposition", +"foires-expositions", +"Foissy-lès-Vézelay", +"Foissy-sur-Vanne", +"folk-lore", +"folk-lores", +"Follainville-Dennemont", +"folle-avoine", +"folle-blanche", +"folles-avoines", +"folle-verte", +"Folx-les-Caves", +"folx-les-cavien", +"Folx-les-Cavien", +"Folx-les-Cavienne", +"Fonches-Fonchette", +"Foncine-le-Bas", +"Foncine-le-Haut", +"Fondachelli-Fantina", +"fond-de-teinta", +"fond-de-teintai", +"fond-de-teintaient", +"fond-de-teintais", +"fond-de-teintait", +"fond-de-teintâmes", +"fond-de-teintant", +"fond-de-teintas", +"fond-de-teintasse", +"fond-de-teintassent", +"fond-de-teintasses", +"fond-de-teintassiez", +"fond-de-teintassions", +"fond-de-teintât", +"fond-de-teintâtes", +"fond-de-teinte", +"fond-de-teinté", +"fond-de-teintée", +"fond-de-teintées", +"fond-de-teintent", +"fond-de-teinter", +"fond-de-teintera", +"fond-de-teinterai", +"fond-de-teinteraient", +"fond-de-teinterais", +"fond-de-teinterait", +"fond-de-teinteras", +"fond-de-teintèrent", +"fond-de-teinterez", +"fond-de-teinteriez", +"fond-de-teinterions", +"fond-de-teinterons", +"fond-de-teinteront", +"fond-de-teintes", +"fond-de-teintés", +"fond-de-teintez", +"fond-de-teintiez", +"fond-de-teintions", +"fond-de-teintons", +"Fonds-Saint-Denis", +"fon-gbe", +"Fons-sur-Lussan", +"Fontaine-au-Bois", +"Fontaine-au-Pire", +"Fontaine-Bellenger", +"Fontaine-Bethon", +"Fontaine-Bonneleau", +"fontaine-brayen", +"Fontaine-Brayen", +"fontaine-brayenne", +"Fontaine-Brayenne", +"fontaine-brayennes", +"Fontaine-Brayennes", +"fontaine-brayens", +"Fontaine-Brayens", +"Fontaine-Chaalis", +"Fontaine-Chalendray", +"Fontaine-Couverte", +"Fontaine-Denis", +"Fontaine-Denis-Nuisy", +"Fontaine-de-Vaucluse", +"Fontaine-en-Bray", +"Fontaine-en-Dormois", +"Fontaine-Etoupefour", +"Fontaine-Étoupefour", +"Fontaine-Fourches", +"Fontaine-Française", +"Fontaine-Guérin", +"Fontaine-Henry", +"Fontaine-Heudebourg", +"Fontaine-l'Abbé", +"Fontaine-la-Gaillarde", +"Fontaine-la-Guyon", +"Fontaine-la-Louvet", +"Fontaine-la-Mallet", +"Fontaine-la-Rivière", +"Fontaine-la-Soret", +"Fontaine-Lavaganne", +"Fontaine-le-Bourg", +"Fontaine-le-Comte", +"Fontaine-le-Dun", +"Fontaine-le-Pin", +"Fontaine-le-Port", +"Fontaine-le-Puits", +"Fontaine-les-Bassets", +"Fontaine-lès-Boulans", +"Fontaine-lès-Cappy", +"Fontaine-lès-Clercs", +"Fontaine-lès-Clerval", +"Fontaine-les-Coteaux", +"Fontaine-lès-Croisilles", +"Fontaine-lès-Dijon", +"Fontaine-le-Sec", +"Fontaine-les-Grès", +"Fontaine-lès-Hermans", +"Fontaine-lès-Luxeuil", +"Fontaine-les-Ribouts", +"Fontaine-lès-Vervins", +"Fontaine-l'Etalon", +"Fontaine-l'Étalon", +"Fontaine-l'Évêque", +"Fontaine-Luyères", +"Fontaine-Mâcon", +"Fontaine-Milon", +"Fontaine-Notre-Dame", +"Fontaine-Raoul", +"Fontaine-Saint-Lucien", +"Fontaines-d'Ozillac", +"Fontaines-en-Duesmois", +"Fontaines-en-Sologne", +"Fontaine-Simon", +"Fontaines-les-Sèches", +"Fontaine-sous-Jouy", +"Fontaine-sous-Montaiguillon", +"Fontaine-sous-Montdidier", +"Fontaine-sous-Pezou", +"Fontaine-sous-Préaux", +"Fontaines-Saint-Clair", +"Fontaines-Saint-Martin", +"Fontaines-sur-Grandson", +"Fontaines-sur-Marne", +"Fontaines-sur-Saône", +"Fontaine-sur-Ay", +"Fontaine-sur-Coole", +"Fontaine-sur-Maye", +"Fontaine-sur-Somme", +"Fontaine-Uterte", +"Fontaine-Valmont", +"Fontanès-de-Sault", +"Fontanes-du-Causse", +"Fontanil-Cornillon", +"Fontcouverte-la-Toussuire", +"Font-de-Carpentin", +"Fontenai-les-Louvets", +"Fontenai-sur-Orne", +"Fontenay-aux-Roses", +"Fontenay-de-Bossery", +"Fontenay-en-Parisis", +"Fontenay-en-Vexin", +"Fontenay-le-Comte", +"Fontenay-le-Fleury", +"Fontenay-le-Marmion", +"Fontenay-le-Pesnel", +"Fontenay-lès-Briis", +"Fontenay-le-Vicomte", +"Fontenay-Mauvoisin", +"Fontenay-près-Chablis", +"Fontenay-près-Vézelay", +"Fontenay-Saint-Père", +"Fontenay-sous-Bois", +"Fontenay-sous-Fouronnes", +"Fontenay-sur-Conie", +"Fontenay-sur-Eure", +"Fontenay-sur-Loing", +"Fontenay-sur-Mer", +"Fontenay-sur-Vègre", +"Fontenay-Torcy", +"Fontenay-Trésigny", +"Fontenelle-en-Brie", +"Fontenelle-Montby", +"Fontenille-Saint-Martin-d'Entraigues", +"Fontenilles-d'Aigueparse", +"Fontenois-la-Ville", +"Fontenois-lès-Montbozon", +"Fontenoy-en-Puisaye", +"Fontenoy-la-Joûte", +"Fontenoy-le-Château", +"Fontenoy-sur-Moselle", +"Fonters-du-Razès", +"Fontevraud-l'Abbaye", +"Fontiers-Cabardès", +"Fontiès-d'Aude", +"Font-Romeu-Odeillo-Via", +"Font-rubí", +"food-court", +"food-courts", +"food-truck", +"food-trucks", +"Forcelles-Saint-Gorgon", +"Forcelles-sous-Gugney", +"Forceville-en-Vimeu", +"force-vivier", +"Forchies-la-Marche", +"Forel-sur-Lucens", +"Forest-en-Cambrésis", +"Forest-l'Abbaye", +"Forest-Montiers", +"Forest-Saint-Julien", +"Forest-sur-Marque", +"forêt-clairière", +"forêt-climax", +"forêt-galerie", +"Forêt-la-Folie", +"Forêt-Noire", +"Forêt-Noire-Baar", +"forêt-parc", +"forêts-clairières", +"forêts-climax", +"forêts-galeries", +"forêts-parcs", +"forge-mètre", +"Forge-Philippe", +"Forges-la-Forêt", +"Forges-les-Bains", +"Forges-les-Eaux", +"Forges-sur-Meuse", +"Forlì-Cesena", +"formica-leo", +"formule-choc", +"formule-chocs", +"forsétyl-al", +"Forst-Längenbühl", +"Fortel-en-Artois", +"forte-piano", +"forte-pianos", +"forts-vêtu", +"Fosbury-flop", +"fosétyl-Al", +"Fossès-et-Baleyssac", +"Fosses-la-Ville", +"Fos-sur-Mer", +"Foucaucourt-en-Santerre", +"Foucaucourt-Hors-Nesle", +"Foucaucourt-sur-Thabas", +"Fouchères-aux-Bois", +"foué-toutrac", +"foué-toutracs", +"fouette-cul", +"fouette-culs", +"fouette-queue", +"fouette-queues", +"Foufflin-Ricametz", +"Foufnie-les-Berdouilles", +"Fougax-et-Barrineuf", +"fougère-aigle", +"fougères-aigles", +"Fougères-sur-Bièvre", +"Fougerolles-du-Plessis", +"fouille-au-pot", +"fouille-merde", +"foule-crapaud", +"Fouquières-lès-Béthune", +"Fouquières-lès-Lens", +"Fourcatier-et-Maison-Neuve", +"fourche-fière", +"fourmi-lion", +"fourmis-lions", +"Fourneaux-le-Val", +"Fournes-Cabardès", +"Fournes-en-Weppes", +"Fournet-Blancheroche", +"Fournets-Luisans", +"Fouron-le-Comte", +"Fouron-Saint-Martin", +"Fouron-Saint-Pierre", +"Fourques-sur-Garonne", +"fourre-tout", +"Fours-en-Vexin", +"Foussais-Payré", +"Fouta-Diallon", +"Fouta-Djalon", +"Fouvent-le-Bas", +"Fouvent-Saint-Andoche", +"Fox-Amphoux", +"fox-hound", +"fox-hounds", +"fox-terrier", +"fox-terriers", +"fox-trot", +"fox-trott", +"fox-trotta", +"fox-trottai", +"fox-trottaient", +"fox-trottais", +"fox-trottait", +"fox-trottâmes", +"fox-trottant", +"fox-trottas", +"fox-trottasse", +"fox-trottassent", +"fox-trottasses", +"fox-trottassiez", +"fox-trottassions", +"fox-trottât", +"fox-trottâtes", +"fox-trotte", +"fox-trotté", +"fox-trottent", +"fox-trotter", +"fox-trottera", +"fox-trotterai", +"fox-trotteraient", +"fox-trotterais", +"fox-trotterait", +"fox-trotteras", +"fox-trottèrent", +"fox-trotterez", +"fox-trotteriez", +"fox-trotterions", +"fox-trotterons", +"fox-trotteront", +"fox-trottes", +"fox-trottez", +"fox-trottiez", +"fox-trottions", +"fox-trottons", +"fox-trotts", +"Foy-Notre-Dame", +"foy-notre-damien", +"Foy-Notre-Damien", +"Foy-Notre-Damienne", +"Foz-Calanda", +"Frahier-et-Chatebier", +"Fraignot-et-Vesvrotte", +"frais-chier", +"Fraisnes-en-Saintois", +"Fraisse-Cabardès", +"Fraissé-des-Corbières", +"Fraisse-sur-Agout", +"Fraissinet-de-Fourques", +"Fraissinet-de-Lozère", +"Framerville-Rainecourt", +"Francfort-sur-le-Main", +"Francfort-sur-l'Oder", +"Franche-Comté", +"Franches-Montagnes", +"Francillon-sur-Roubion", +"Francilly-Selency", +"Frangy-en-Bresse", +"Fränkisch-Crumbach", +"Franqueville-Saint-Pierre", +"frappe-abord", +"frappe-à-bord", +"frappe-à-mort", +"frappe-babord", +"frappe-d'abord", +"frappe-devant", +"frappe-main", +"frappe-mains", +"frappe-plaque", +"frappe-plaques", +"Frasnay-Reugny", +"Frasne-le-Château", +"Frasne-les-Meulières", +"Frasnes-lez-Anvaing", +"Frasnes-lez-Buissenal", +"Frasnes-lez-Couvin", +"Frasnes-lez-Gosselies", +"Frayssinet-le-Gélat", +"Fréchet-Aure", +"Fréchou-Fréchet", +"Frédéric-Fontaine", +"Fredersdorf-Vogelsdorf", +"free-lance", +"Freienstein-Teufen", +"Frei-Laubersheim", +"freins-vapeur", +"frein-vapeur", +"Freix-Anglards", +"Frémeréville-sous-les-Côtes", +"Frenelle-la-Grande", +"Frenelle-la-Petite", +"Freneuse-sur-Risle", +"Fresnay-en-Retz", +"Fresnay-le-Comte", +"Fresnay-le-Gilmert", +"Fresnay-le-Long", +"Fresnay-le-Samson", +"Fresnay-l'Evêque", +"Fresnay-l'Évêque", +"Fresnay-sur-Sarthe", +"Fresneaux-Montchevreuil", +"Fresne-Cauverville", +"Fresné-la-Mère", +"Fresne-l'Archevêque", +"Fresne-Léguillon", +"Fresne-le-Plan", +"Fresne-lès-Reims", +"Fresne-Saint-Mamès", +"Fresnes-au-Mont", +"Fresnes-en-Saulnois", +"Fresnes-en-Tardenois", +"Fresnes-en-Woëvre", +"Fresnes-lès-Montauban", +"Fresnes-lès-Reims", +"Fresnes-Mazancourt", +"Fresnes-sur-Apance", +"Fresnes-sur-Escaut", +"Fresnes-sur-Marne", +"Fresnes-Tilloloy", +"Fresney-le-Puceux", +"Fresney-le-Vieux", +"Fresnicourt-le-Dolmen", +"Fresnois-la-Montagne", +"Fresnoy-Andainville", +"Fresnoy-au-Val", +"Fresnoy-en-Bassigny", +"Fresnoy-en-Chaussée", +"Fresnoy-en-Gohelle", +"Fresnoy-en-Thelle", +"Fresnoy-Folny", +"Fresnoy-la-Rivière", +"Fresnoy-le-Château", +"Fresnoy-le-Grand", +"Fresnoy-le-Luat", +"Fresnoy-lès-Roye", +"Fresse-sur-Moselle", +"Fretigney-et-Velloreille", +"Frétoy-le-Château", +"Fréville-du-Gâtinais", +"Frévin-Capelle", +"Freycenet-la-Cuche", +"Freycenet-la-Tour", +"Freyming-Merlebach", +"freyming-merlebachois", +"Freyming-Merlebachois", +"freyming-merlebachoise", +"Freyming-Merlebachoise", +"freyming-merlebachoises", +"Freyming-Merlebachoises", +"Freyung-Grafenau", +"Fribourg-en-Brisgau", +"fric-frac", +"fric-fracs", +"Friedrich-Wilhelm-Lübke-Koog", +"Frières-Faillouël", +"Frise-du-Nord", +"Frise-Occidentale", +"Friville-Escarbotin", +"Frohen-le-Grand", +"Frohen-le-Petit", +"Frohen-sur-Authie", +"Froidmont-Cohartille", +"Fromeréville-les-Vallons", +"Frontenay-Rohan-Rohan", +"Frontenay-sur-Dive", +"Frontignan-de-Comminges", +"Frontignan-Savès", +"fronto-iniaque", +"Frotey-lès-Lure", +"Frotey-lès-Vesoul", +"frou-frou", +"frou-frous", +"frous-frous", +"Frugerès-les-Mines", +"Frugières-le-Pin", +"Frutigen-Bas-Simmental", +"fuel-oil", +"fuel-oils", +"Fuente-Álamo", +"Fuente-Olmedo", +"Fuente-Tójar", +"full-contact", +"Full-Reuenthal", +"full-stack", +"fulmi-coton", +"fulmi-cotons", +"fume-cigare", +"fume-cigares", +"fume-cigarette", +"fume-cigarettes", +"fumée-gelée", +"fusée-sonde", +"fusilier-commando", +"fusilier-marin", +"fusiliers-commandos", +"fusiliers-marins", +"fusil-mitrailleur", +"fusils-mitrailleurs", +"fusion-acquisition", +"fute-fute", +"futes-futes", +"fût-et-fare", +"fut's", +"futuna-aniwa", +"Gaag-Maasland", +"Gaag-Schipluiden", +"Gaasterlân-Sleat", +"Gabbioneta-Binanuova", +"gabrielino-fernandeño", +"gâche-métier", +"Gadz'Arette", +"Gadz'Arettes", +"gadz'arts", +"Gadz'Arts", +"Gageac-et-Rouillac", +"Gagnac-sur-Cère", +"Gagnac-sur-Garonne", +"gagnante-gagnante", +"gagnante-gagnante-gagnante", +"gagnantes-gagnantes", +"gagnantes-gagnantes-gagnantes", +"gagnant-gagnant", +"gagnant-gagnant-gagnant", +"gagnants-gagnants", +"gagnants-gagnants-gagnants", +"Gagne-monopanglotte", +"gagne-pain", +"gagne-pains", +"gagne-petit", +"Gaillac-d'Aveyron", +"Gaillac-Toulza", +"Gaillan-en-Médoc", +"Gaillardbois-Cressenville", +"gaillet-gratteron", +"gaillets-gratterons", +"Gaillon-sur-Montcient", +"gaine-culotte", +"gaines-culottes", +"Gaja-et-Villedieu", +"Gaja-la-Selve", +"galaïco-portugais", +"galégo-portugais", +"galeries-refuges", +"galette-saucisse", +"galette-saucisses", +"Gallargues-le-Montueux", +"Gallin-Kuppentin", +"galvano-cautère", +"galvano-magnétique", +"galvano-magnétiques", +"galvano-magnétisme", +"galvano-magnétismes", +"Gamaches-en-Vexin", +"Gamarde-les-Bains", +"Gamiz-Fika", +"gamma-1,2,3,4,5,6-hexachlorocyclohexane", +"gamma-HCH", +"gamma-hexachlorobenzène", +"gamma-hexachlorocyclohexane", +"Gampel-Bratsch", +"Gancourt-Saint-Etienne", +"Gancourt-Saint-Étienne", +"Gannay-sur-Loire", +"Garancières-en-Beauce", +"Garancières-en-Drouais", +"Garcelles-Secqueville", +"garcette-goitre", +"Gardegan-et-Tourtirac", +"garden-parties", +"garden-party", +"garden-partys", +"Garennes-sur-Eure", +"Garges-lès-Gonesse", +"Gargilesse-Dampierre", +"Garlède-Mondebat", +"Garmisch-Partenkirchen", +"Garnat-sur-Engièvre", +"Garrigues-Sainte-Eulalie", +"Garzau-Garzin", +"gas-oil", +"gas-oils", +"Gaspé-Nordien", +"Gaspésie-Îles-de-la-Madeleine", +"Gastines-sur-Erve", +"Gasville-Oisème", +"gâte-bois", +"gâte-ménage", +"gâte-ménages", +"gâte-métier", +"gâte-métiers", +"gâte-papier", +"gâte-papiers", +"gâte-pâte", +"gâte-sauce", +"gâte-sauces", +"Gatteville-le-Phare", +"Gau-Algesheim", +"Gau-Bickelheim", +"Gau-Bischofsheim", +"gauche-fer", +"Gauchin-Légal", +"Gauchin-Verloingt", +"Gaudreville-la-Rivière", +"Gau-Heppenheim", +"Gau-Odernheim", +"Gaurain-Ramecroix", +"Gauville-la-Campagne", +"Gau-Weinheim", +"Gavarnie-Gèdre", +"Gavarret-sur-Aulouste", +"gay-friendly", +"gays-friendly", +"Gazax-et-Baccarisse", +"gaz-cab", +"gazelle-girafe", +"gaz-poivre", +"Gée-Rivière", +"Geest-Gérompont", +"Geest-Gérompont-Petit-Rosière", +"Géfosse-Fontenay", +"gélatino-bromure", +"gélatino-bromures", +"gel-douche", +"gel-douches", +"Geldrop-Mierlo", +"Gelvécourt-et-Adompt", +"Gemert-Bakel", +"Genac-Bignac", +"Génicourt-sous-Condé", +"Génicourt-sur-Meuse", +"génie-conseil", +"génies-conseils", +"génio-hyoïdien", +"génio-hyoïdienne", +"génio-hyoïdiennes", +"génio-hyoïdiens", +"génito-crural", +"génito-urinaire", +"génito-urinaires", +"Gennes-Ivergny", +"Gennes-sur-Glaize", +"Gennes-sur-Seiche", +"Gensac-de-Boulogne", +"Gensac-la-Pallue", +"Gensac-sur-Garonne", +"Gentioux-Pigerolles", +"gentleman-rider", +"gentlemen-riders", +"Georges-Fontaine", +"Gerbécourt-et-Haplemont", +"Gercourt-et-Drillancourt", +"Gère-Bélesten", +"gère-bélestinois", +"Gère-Bélestinois", +"gère-bélestinoise", +"Gère-Bélestinoise", +"gère-bélestinoises", +"Gère-Bélestinoises", +"germanate-analcime", +"germanate-analcimes", +"germano-américain", +"germano-américaine", +"germano-américaines", +"germano-américains", +"germano-anglais", +"germano-anglaises", +"germano-iranien", +"Germano-Iranien", +"germano-italo-japonais", +"Germigny-des-Prés", +"Germigny-lès-Machault", +"Germigny-lès-Machaut", +"Germigny-l'Evêque", +"Germigny-l'Évêque", +"Germigny-l'Exempt", +"Germigny-Pend-la-Pie", +"Germigny-sous-Coulombs", +"Germigny-sur-Loire", +"Germolles-sur-Grosne", +"Germond-Rouvre", +"germo-roburien", +"Germo-Roburien", +"germo-roburienne", +"Germo-Roburienne", +"germo-roburiennes", +"Germo-Roburiennes", +"germo-roburiens", +"Germo-Roburiens", +"Germs-sur-l'Oussouet", +"Gernika-Lumo", +"Gerville-la-Forêt", +"Gesnes-en-Argonne", +"Gesnes-le-Gandelin", +"gestalt-thérapie", +"gestalt-thérapies", +"Gesvres-le-Chapitre", +"gétah-lahoë", +"Géus-d'Arzacq", +"Geüs-d'Oloron", +"Gevigney-et-Mercey", +"Gevrey-Chambertin", +"Gez-ez-Angles", +"Gezier-et-Fontelenay", +"Gézier-et-Fontenelay", +"Giardini-Naxos", +"Giel-Courteilles", +"Gien-sur-Cure", +"Giessen-Nieuwkerk", +"Giessen-Oudekerk", +"Giey-sur-Aujon", +"Giffaumont-Champaubert", +"Gif-sur-Yvette", +"giga-ampère", +"giga-ampères", +"gigabit-ethernet", +"giga-électron-volt", +"gigaélectron-volt", +"giga-électron-volts", +"gigaélectron-volts", +"giga-ohm", +"giga-ohms", +"Gignac-la-Nerthe", +"Gigny-Bussy", +"Gigny-sur-Saône", +"Gigors-et-Lozeron", +"Gilhac-et-Bruzac", +"Gilhoc-sur-Ormèze", +"gill-box", +"Gilly-lès-Cîteaux", +"Gilly-sur-Isère", +"Gilly-sur-Loire", +"Gimel-les-Cascades", +"Ginsheim-Gustavsburg", +"Giou-de-Mamou", +"Gipf-Oberfrick", +"Gircourt-lès-Viéville", +"Girecourt-sur-Durbion", +"Girmont-Val-d'Ajol", +"Gironcourt-sur-Vraine", +"Gironde-sur-Dropt", +"Gironville-et-Neuville", +"Gironville-sous-les-Côtes", +"Gironville-sur-Essonne", +"Girovillers-sous-Montfort", +"Gisay-la-Coudre", +"Gissey-le-Vieil", +"Gissey-sous-Flavigny", +"Gissey-sur-Ouche", +"Gisy-les-Nobles", +"Gisy-sur-Oreuse", +"Givenchy-en-Gohelle", +"Givenchy-le-Noble", +"Givenchy-lès-la-Bassée", +"Givet-Notre-Dame", +"Givet-Saint-Hilaire", +"Givry-en-Argonne", +"Givry-lès-Loisy", +"Givry-sur-Aisne", +"Glabbeek-Zuurbemde", +"glabello-iniaque", +"Glaine-Montaigut", +"Glaire-et-Villette", +"Glaire-Latour", +"Glane-Beekhoek", +"Glan-Münchweiler", +"glass-cord", +"glauco-ferrugineuse", +"glauco-ferrugineuses", +"glauco-ferrugineux", +"Glaude-Arbourois", +"Gleiszellen-Gleishorbach", +"glisser-déposer", +"globe-trotter", +"globe-trotters", +"globe-trotteur", +"globe-trotteurs", +"globe-trotteuse", +"globe-trotteuses", +"Glos-la-Ferrière", +"glosso-épiglottique", +"glosso-épiglottiques", +"glosso-pharyngien", +"glosso-staphylin", +"glosso-staphylins", +"Glos-sur-Risle", +"gloubi-boulga", +"gluco-corticoïde", +"gluco-corticoïdes", +"glufosinate-ammonium", +"Glux-en-Glenne", +"glycéraldéhyde-3-phosphate", +"glycosyl-phosphatidylinositol", +"goal-average", +"goal-averages", +"goal-ball", +"gobe-dieu", +"gobe-goujons", +"gobe-mouche", +"gobe-moucherie", +"gobe-moucherons", +"gobe-mouches", +"gobe-mouton", +"gode-ceinture", +"gode-miché", +"gode-michés", +"godes-ceintures", +"Gœgnies-Chaussée", +"Goeree-Overflakkee", +"Gognies-Chaussée", +"Göhren-Döhlen", +"Göhren-Lebbin", +"Goldbach-Altenbach", +"goma-dare", +"Gometz-la-Ville", +"Gometz-le-Châtel", +"gomme-cogne", +"gomme-cognes", +"gomme-gutte", +"Gommenec'h", +"gomme-résine", +"gommo-résineux", +"Gomzé-Andoumont", +"Gondenans-les-Moulins", +"Gondenans-Montby", +"Gondenans-Moulins", +"Gond-Pontouvre", +"Gondrecourt-Aix", +"Gondrecourt-le-Château", +"Gonfreville-Caillot", +"Gonfreville-l'Orcher", +"Gonneville-en-Auge", +"Gonneville-la-Mallet", +"Gonneville-sur-Honfleur", +"Gonneville-sur-Mer", +"Gonneville-sur-Merville", +"Gonneville-sur-Scie", +"Gontaud-de-Nogaret", +"google-isa", +"google-isai", +"google-isaient", +"google-isais", +"google-isait", +"google-isâmes", +"google-isant", +"google-isas", +"google-isasse", +"google-isassent", +"google-isasses", +"google-isassiez", +"google-isassions", +"google-isât", +"google-isâtes", +"google-ise", +"google-isé", +"google-isée", +"google-isées", +"google-isent", +"google-iser", +"google-isera", +"google-iserai", +"google-iseraient", +"google-iserais", +"google-iserait", +"google-iseras", +"google-isèrent", +"google-iserez", +"google-iseriez", +"google-iserions", +"google-iserons", +"google-iseront", +"google-ises", +"google-isés", +"google-isez", +"google-isiez", +"google-isions", +"google-isons", +"Gorden-Staupitz", +"gorge-bleue", +"gorge-de-pigeon", +"gorge-fouille", +"Gorges-du-Tarn-Causses", +"Gornate-Olona", +"Gorom-Gorom", +"Gors-Opleeuw", +"go-slow", +"Gossersweiler-Stein", +"Gotein-Libarrenx", +"Gouaux-de-Larboust", +"Gouaux-de-Luchon", +"Goudelancourt-lès-Berrieux", +"Goudelancourt-lès-Pierrepont", +"Goulier-et-Olbier", +"Gourdan-Polignan", +"gourdan-polignanais", +"Gourdan-Polignanais", +"gourdan-polignanaise", +"Gourdan-Polignanaise", +"gourdan-polignanaises", +"Gourdan-Polignanaises", +"Gourdon-Murat", +"gouris-taitien", +"Gouris-Taitien", +"gouris-taitienne", +"Gouris-Taitienne", +"gouris-taitiennes", +"Gouris-Taitiennes", +"gouris-taitiens", +"Gouris-Taitiens", +"Gournay-en-Bray", +"Gournay-le-Guérin", +"Gournay-Loizé", +"Gournay-sur-Aronde", +"Gournay-sur-Marne", +"Gout-Rossignol", +"goutte-à-goutte", +"goutte-de-sang", +"goutte-de-suif", +"goutte-rose", +"gouttes-de-sang", +"Goux-lès-Dambelin", +"Goux-les-Usiers", +"Goux-sous-Landet", +"Gouy-en-Artois", +"Gouy-en-Ternois", +"Gouy-les-Groseillers", +"Gouy-lez-Piéton", +"Gouy-l'Hôpital", +"Gouy-Saint-André", +"Gouy-Servins", +"Gouy-sous-Bellonne", +"gouzi-gouzi", +"gouzis-gouzis", +"goyave-ananas", +"goyaves-ananas", +"Graal-Müritz", +"Graben-Neudorf", +"Grabow-Below", +"Grâce-Berleur", +"Grâce-Hollogne", +"Grâce-Uzel", +"gracieux-berluron", +"Gracieux-Berluron", +"Gracieux-Berluronne", +"grâcieux-hollognois", +"Grâcieux-Hollognois", +"Grâcieux-Hollognoise", +"Graffigny-Chemin", +"Graignes-Mesnil-Angot", +"Graincourt-lès-Havrincourt", +"grain-d'orge", +"Grainville-Langannerie", +"Grainville-la-Teinturière", +"Grainville-sur-Odon", +"Grainville-sur-Ry", +"Grainville-Ymauville", +"Grancey-le-Château-Neuvelle", +"Grancey-sur-Ource", +"Grandcamp-Maisy", +"Grandchamp-le-Château", +"Grandchamps-des-Fontaines", +"grand'chose", +"Grand'Combe-Châteleu", +"Grand'Combe-des-Bois", +"grand'faim", +"Grandfontaine-sur-Creuse", +"grand'garde", +"grand'gardes", +"grandgousier-pélican", +"grand'hamien", +"Grand'hamien", +"grand'hamienne", +"Grand'hamienne", +"grand'hamiennes", +"Grand'hamiennes", +"grand'hamiens", +"Grand'hamiens", +"grand'honte", +"grand'hontes", +"grand'landais", +"Grand'Landais", +"grand'landaise", +"Grand'Landaise", +"grand'landaises", +"Grand'Landaises", +"Grand'Landes", +"Grandlup-et-Fay", +"grand'maman", +"grand'mamans", +"grand'maternité", +"grand'maternités", +"grand'mère", +"grand'mères", +"Grand'Mérien", +"Grand'mérois", +"Grand'Mérois", +"Grand'Mèrois", +"grand'messe", +"grand'messes", +"grand'paternité", +"grand'paternités", +"Grandpuits-Bailly-Carrois", +"Grand'Rivière", +"Grandrupt-de-Bains", +"grand'tante", +"grand'tantes", +"Grandvelle-et-le-Perrenot", +"Grandvelle-et-Perrenot", +"Grandville-Gaudreville", +"Grandvillers-aux-Bois", +"Grange-de-Vaivre", +"Grange-le-Bocage", +"Granges-Aumontzey", +"Granges-d'Ans", +"Granges-de-Plombières", +"Granges-de-Vienney", +"Granges-la-Ville", +"Granges-le-Bourg", +"Granges-les-Beaumont", +"Granges-Maillot", +"Granges-Narboz", +"Granges-Paccot", +"Granges-Sainte-Marie", +"Granges-sur-Aube", +"Granges-sur-Baume", +"Granges-sur-Lot", +"Granges-sur-Vologne", +"grano-lamellaire", +"Granzay-Gript", +"grap-fruit", +"grap-fruits", +"grapho-moteur", +"grappe-fruit", +"gras-double", +"gras-doubles", +"gras-fondu", +"Grateloup-Saint-Gayrand", +"grattes-ciels", +"grave-cimens", +"grave-ciment", +"grave-ciments", +"Graveron-Sémerville", +"graves-ciment", +"Graves-Saint-Amant", +"gravi-kora", +"Grayan-et-l'Hôpital", +"Graye-et-Charnay", +"Graye-sur-Mer", +"Gray-la-Ville", +"gray-la-villois", +"Gray-la-Villois", +"gray-la-villoise", +"Gray-la-Villoise", +"gray-la-villoises", +"Gray-la-Villoises", +"Grébault-Mesnil", +"Grebs-Niendorf", +"Grèce-Centrale", +"Grèce-Occidentale", +"Gréez-sur-Roc", +"Grégy-sur-Yerre", +"Gremersdorf-Buchholz", +"Grenade-sur-Garonne", +"Grenade-sur-l'Adour", +"grenadiers-voltigeurs", +"grenadier-voltigeur", +"Grenand-lès-Sombernon", +"Grenant-lès-Sombernon", +"Greneville-en-Beauce", +"Grenier-Montgon", +"grenouilles-taureaux", +"grenouille-taureau", +"Grenville-sur-la-Rouge", +"Grenzach-Wyhlen", +"Gréoux-les-Bains", +"Grésigny-Sainte-Reine", +"Gresse-en-Vercors", +"Gressoney-La-Trinité", +"Gressoney-Saint-Jean", +"Grésy-sur-Aix", +"Grésy-sur-Isère", +"Gretz-Armainvilliers", +"Gréville-Hague", +"Grez-Doiceau", +"Grez-en-Bouère", +"Grézet-Cavagnan", +"Grézieu-la-Varenne", +"Grézieu-le-Marché", +"Grézieux-le-Fromental", +"Grez-Neuville", +"grez-neuvillois", +"Grez-Neuvillois", +"grez-neuvilloise", +"Grez-Neuvilloise", +"grez-neuvilloises", +"Grez-Neuvilloises", +"Grez-sur-Loing", +"griche-dents", +"Griesbach-au-Val", +"Griesbach-le-Bastberg", +"Griesheim-près-Molsheim", +"Griesheim-sur-Souffel", +"Griesheim-sur-Souffle", +"gri-gri", +"gri-gris", +"gril-au-vent", +"grille-midi", +"grille-pain", +"grille-pains", +"Grimaucourt-en-Woëvre", +"Grimaucourt-près-Sampigny", +"Grincourt-lès-Pas", +"Grindorff-Bizing", +"grippe-argent", +"grippe-chair", +"grippe-fromage", +"grippe-fromages", +"grippe-minaud", +"grippe-minauds", +"grippe-sou", +"grippe-sous", +"grise-bonne", +"grises-bonnes", +"gris-farinier", +"gris-fariniers", +"gris-gris", +"gris-pendart", +"gris-pendarts", +"Grisy-les-Plâtres", +"Grisy-Suisnes", +"Grisy-sur-Seine", +"Grivy-Loisy", +"Groot-Abeele", +"Groot-Ammers", +"Groot-Gelmen", +"Groot-Loo", +"Groot-Loon", +"Groot-Valkenisse", +"Groot-Wetsinge", +"Grosbois-en-Montagne", +"Grosbois-lès-Tichey", +"Groslée-Saint-Benoît", +"Grosley-sur-Risle", +"Groß-Bieberau", +"grosse-de-fonte", +"grosse-gorge", +"Grosse-Islois", +"Grosseto-Prugna", +"Gross-Gerau", +"Groß-Gerau", +"grosso-modo", +"Groß-Rohrheim", +"Großtreben-Zwethau", +"Groß-Umstadt", +"Groß-Zimmern", +"Grote-Brogel", +"Grote-Spouwen", +"Grouches-Luchuel", +"Gruchet-le-Valasse", +"Gruchet-Saint-Siméon", +"Gruey-lès-Surance", +"Grugé-l'Hôpital", +"Grun-Bordas", +"Grünhain-Beierfeld", +"Grunow-Dammendorf", +"g-strophanthine", +"guarasu'we", +"Gudmont-Villiers", +"Guéblange-lès-Dieuze", +"Guéblange-lès-Sarralbe", +"gué-d'allérien", +"Gué-d'Allérien", +"gué-d'allérienne", +"Gué-d'Allérienne", +"gué-d'allériennes", +"Gué-d'Allériennes", +"gué-d'allériens", +"Gué-d'Allériens", +"Gué-d'Hossus", +"Guémené-Penfao", +"Guémené-sur-Scorff", +"guerre-éclair", +"Guessling-Hémering", +"guet-apens", +"guet-à-pent", +"guet-appens", +"guets-apens", +"guette-chemin", +"gueule-bée", +"gueule-de-loup", +"gueules-de-loup", +"Gueutteville-les-Grès", +"Gueytes-et-Labastide", +"Gugney-aux-Aulx", +"guide-âne", +"guide-ânes", +"guide-fil", +"guide-fils", +"guide-main", +"guigne-cul", +"guigne-culs", +"Guigneville-sur-Essonne", +"Guignicourt-sur-Vence", +"Guiler-sur-Goyen", +"guilherandaise-grangeoise", +"Guilherandaise-Grangeoise", +"guilherandaises-grangeoises", +"Guilherandaises-Grangeoises", +"guilherandais-grangeois", +"Guilherandais-Grangeois", +"Guilherand-Granges", +"guili-guili", +"guili-guilis", +"guillemet-apostrophe", +"guillemets-apostrophes", +"Guilligomarc'h", +"Guillon-les-Bains", +"Guinarthe-Parenties", +"Guindrecourt-aux-Ormes", +"Guindrecourt-sur-Blaise", +"Guinée-Bissao", +"Guinée-Bissau", +"Guinée-Conakry", +"Guipry-Messac", +"Guiry-en-Vexin", +"Guitalens-L'Albarède", +"guitare-harpe", +"guitare-violoncelle", +"guitare-violoncelles", +"Guitera-les-Bains", +"guit-guit", +"Gujan-Mestras", +"gulf-stream", +"gulf-streams", +"Gülitz-Reetz", +"Gulpen-Wittem", +"Gülzow-Prüzen", +"Gumbrechtshoffen-Oberbronn", +"Günthersleben-Wechmar", +"Gurcy-le-Châtel", +"Gurgy-la-Ville", +"Gurgy-le-Château", +"gusathion-éthyl", +"gusathion-méthyl", +"Gusow-Platkow", +"Gutenzell-Hürbel", +"Gutierre-Muñoz", +"gut-komm", +"gutta-percha", +"Guttet-Feschel", +"gutturo-maxillaire", +"Guyans-Durnes", +"Guyans-Vennes", +"Guyencourt-Saulcourt", +"Guyencourt-sur-Noye", +"gwich'in", +"Gy-en-Sologne", +"Gyé-sur-Seine", +"Gy-les-Nonains", +"Gy-l'Evêque", +"Gy-l'Évêque", +"Ha'ava", +"Habay-la-Neuve", +"Habay-la-Vieille", +"Habère-Lullin", +"Habère-Poche", +"hache-bâché", +"hache-écorce", +"hache-écorces", +"hache-légume", +"hache-légumes", +"hache-paille", +"hache-pailles", +"Hadancourt-le-Haut-Clocher", +"Hadigny-les-Verrières", +"Hadonville-lès-Lachaussée", +"Häg-Ehrsberg", +"Hagenthal-le-Bas", +"Hagenthal-le-Haut", +"hagio-onomastique", +"hagio-onomastiques", +"Hagnéville-et-Roncourt", +"ha-ha", +"hâ-hâ", +"ha-has", +"hâ-hâs", +"Haine-Saint-Paul", +"Haine-Saint-Pierre", +"hakko-ryu", +"hale-à-bord", +"hale-avans", +"hale-avant", +"hale-avants", +"hale-bas", +"hale-breu", +"hale-croc", +"hale-dedans", +"hale-dehors", +"haleine-de-Jupiter", +"haleines-de-Jupiter", +"Halenbeck-Rohlsdorf", +"half-and-half", +"half-pipe", +"half-pipes", +"half-track", +"half-tracks", +"Halifaxois-du-Sud", +"Halle-Booienhoven", +"Halle-Heide", +"Halle-Nijman", +"Hallennes-lez-Haubourdin", +"Halles-sous-les-Côtes", +"Halling-lès-Boulay", +"Halling-lès-Boulay-Moselle", +"Halloy-lès-Pernois", +"halo-halo", +"halo-lunaire", +"halos-lunaires", +"haloxyfop-éthoxyéthyl", +"haloxyfop-R", +"halte-garderie", +"halte-garderies", +"halte-là", +"haltes-garderies", +"halvadji-bachi", +"Hamblain-les-Prés", +"Hamelin-Pyrmont", +"Ham-en-Artois", +"Hames-Boucres", +"hames-boucrois", +"Hames-Boucrois", +"hames-boucroise", +"Hames-Boucroise", +"hames-boucroises", +"Hames-Boucroises", +"Ham-les-Moines", +"Hamme-Mille", +"hamme-millois", +"Hamme-Millois", +"Hamme-Milloise", +"ham-nalinnois", +"Ham-Nalinnois", +"Ham-Nalinnoise", +"Ham-Nordois", +"Hamont-Achel", +"Ham-sans-Culottes", +"Ham-sous-Varsberg", +"Ham-sur-Heure", +"Ham-sur-Heure-Nalinnes", +"Ham-sur-Meuse", +"Ham-sur-Sambre", +"Han-devant-Pierrepont", +"handi-accessible", +"handi-accessibles", +"Hanerau-Hademarschen", +"Hangen-Weisheim", +"Hangest-en-Santerre", +"Hangest-sur-Somme", +"Han-lès-Juvigny", +"Hannogne-Saint-Martin", +"Hannogne-Saint-Rémy", +"Hannonville-sous-les-Côtes", +"Hannonville-Suzémont", +"Han-sur-Lesse", +"Han-sur-Meuse", +"Han-sur-Nied", +"Hantes-Wihéries", +"happe-chair", +"happe-chat", +"happe-foie", +"harai-goshi", +"haraï-goshi", +"hara-kiri", +"hara-kiris", +"hara-kiriser", +"hara-kiriser", +"Haraucourt-sur-Seille", +"hard-discount", +"hard-discountisa", +"hard-discountisai", +"hard-discountisaient", +"hard-discountisais", +"hard-discountisait", +"hard-discountisâmes", +"hard-discountisant", +"hard-discountisas", +"hard-discountisasse", +"hard-discountisassent", +"hard-discountisasses", +"hard-discountisassiez", +"hard-discountisassions", +"hard-discountisât", +"hard-discountisâtes", +"hard-discountise", +"hard-discountisé", +"hard-discountisée", +"hard-discountisées", +"hard-discountisent", +"hard-discountiser", +"hard-discountisera", +"hard-discountiserai", +"hard-discountiseraient", +"hard-discountiserais", +"hard-discountiserait", +"hard-discountiseras", +"hard-discountisèrent", +"hard-discountiserez", +"hard-discountiseriez", +"hard-discountiserions", +"hard-discountiserons", +"hard-discountiseront", +"hard-discountises", +"hard-discountisés", +"hard-discountisez", +"hard-discountisiez", +"hard-discountisions", +"hard-discountisons", +"hard-discounts", +"Hardecourt-aux-Bois", +"Hardencourt-Cocherel", +"Hardinxveld-Giessendam", +"hardi-petit", +"Hardivillers-en-Vexin", +"Hargarten-aux-Mines", +"Hargeville-sur-Chée", +"harpe-guitare", +"harpe-luth", +"Harréville-les-Chanteurs", +"Hartennes-et-Taux", +"Harth-Pöllnitz", +"Hartmannsdorf-Reichenau", +"has-been", +"has-beens", +"Hastière-Lavaux", +"Hastière-par-delà", +"Haucourt-en-Cambrésis", +"Haucourt-la-Rigole", +"Haucourt-Moulaine", +"Hauenstein-Ifenthal", +"Haumont-lès-Lachaussée", +"Haumont-près-Samogneux", +"Hauptwil-Gottshaus", +"hausse-col", +"hausse-cols", +"hausse-pied", +"hausse-pieds", +"hausse-queue", +"Hautecourt-lès-Broville", +"Hautecourt-Romanèche", +"Hautefage-la-Tour", +"Hautem-Sainte-Marguerite", +"Hautem-Saint-Liévin", +"Hautepierre-le-Châtelet", +"Hauterive-la-Fresse", +"Hauteville-Gondon", +"Hauteville-la-Guichard", +"Hauteville-lès-Dijon", +"Hauteville-Lompnes", +"Hauteville-Lompnés", +"Hauteville-sur-Fier", +"Hauteville-sur-Mer", +"Hauthem-Saint-Liévin", +"Hautot-l'Auvray", +"Hautot-le-Vatois", +"Hautot-Saint-Sulpice", +"Hautot-sur-Mer", +"Hautot-sur-Seine", +"Hautteville-Bocage", +"Hautvillers-Ouville", +"Havre-Saint-Pierrois", +"haye-le-comtois", +"Haye-le-Comtois", +"haye-le-comtoise", +"Haye-le-Comtoise", +"haye-le-comtoises", +"Haye-le-Comtoises", +"Haÿ-les-Roses", +"Hazerswoude-Dorp", +"Hazerswoude-Rijndijk", +"Hechtel-Eksel", +"Heckelberg-Brunow", +"hecto-ohm", +"hecto-ohms", +"Hédé-Bazouges", +"Heeswijk-Dinther", +"Heeze-Leende", +"Heiltz-le-Hutier", +"Heiltz-le-Maurupt", +"Heiltz-l'Evêque", +"Heiltz-l'Évêque", +"Heining-lès-Bouzonville", +"Heist-op-den-Berg", +"Heist-sur-la-Montagne", +"Helen-Bos", +"Hellemmes-Lille", +"Hellenhahn-Schellenberg", +"Hellering-lès-Fénétrange", +"Hellschen-Heringsand-Unterschaar", +"Helmstadt-Bargen", +"Hem-Hardinval", +"hémi-dodécaèdre", +"hémi-épiphyte", +"hémi-épiphytes", +"hémi-octaèdre", +"Hem-Lenglet", +"Hem-Monacu", +"Hendecourt-lès-Cagnicourt", +"Hendecourt-lès-Ransart", +"Hendrik-Ido-Ambacht", +"Hénin-Beaumont", +"Hénin-sur-Cojeul", +"Henri-Chapelle", +"Henstedt-Ulzburg", +"hentai-gana", +"hépato-biliaire", +"hépato-cystique", +"hépato-cystiques", +"hépato-gastrique", +"hépato-gastrite", +"hépato-gastrites", +"herbe-à-cochon", +"herbe-au-bitume", +"herbe-aux-femmes-battues", +"herbe-aux-plaies", +"herbes-à-cochon", +"herbes-au-bitume", +"herbes-aux-femmes-battues", +"herbes-aux-plaies", +"herbes-aux-taupes", +"Herck-la-Ville", +"Herck-Saint-Lambert", +"herd-book", +"Herdwangen-Schönach", +"Héricourt-en-Caux", +"Héricourt-Saint-Samson", +"Héricourt-sur-Thérain", +"Heringen-sur-Helme", +"Hérinnes-lez-Enghien", +"Herlin-le-Sec", +"Hermalle-sous-Argenteau", +"Hermalle-sous-Huy", +"Hermanville-sur-Mer", +"Hermeton-sur-Meuse", +"Herméville-en-Woëvre", +"Hermitage-Lorge", +"Hermival-les-Vaux", +"Hernán-Pérez", +"héroï-comique", +"héroï-comiques", +"Hérouville-en-Vexin", +"Hérouville-Saint-Clair", +"Herpy-l'Arlésienne", +"Herren-Sulzbach", +"Herrlisheim-près-Colmar", +"Herschweiler-Pettersheim", +"Hersfeld-Rotenburg", +"Hersin-Coupigny", +"Héry-sur-Alby", +"Herzebrock-Clarholz", +"Hesdigneul-lès-Béthune", +"Hesdigneul-lès-Boulogne", +"Hesdin-l'Abbé", +"hétéro-céphalophorie", +"hétéro-céphalophories", +"hétéro-épitaxie", +"hétéro-évaluation", +"hétéro-évaluations", +"hétéro-réparation", +"hétéro-réparations", +"Hettange-Grande", +"Heubécourt-Haricourt", +"Heuchelheim-Klingen", +"Heucourt-Croquoison", +"Heudicourt-sous-les-Côtes", +"Heudreville-en-Lieuvin", +"Heudreville-sur-Eure", +"Heugleville-sur-Scie", +"Heugueville-sur-Sienne", +"Heuilley-Cotton", +"Heuilley-le-Grand", +"Heuilley-sur-Saône", +"Heume-l'Eglise", +"Heume-l'Église", +"heure-homme", +"Heure-le-Romain", +"Heure-le-Tixhe", +"heure-lumière", +"heures-hommes", +"heures-lumière", +"heurte-pot", +"Heusden-Zolder", +"hexa-core", +"hexa-cores", +"hexa-rotor", +"hexa-rotors", +"Hières-sur-Amby", +"Hiers-Brouage", +"hi-fi", +"high-life", +"high-tech", +"Higuères-Souye", +"hi-han", +"Hilgertshausen-Tandern", +"himène-plume", +"Hinzert-Pölert", +"hip-hop", +"hip-hopisa", +"hip-hopisai", +"hip-hopisaient", +"hip-hopisais", +"hip-hopisait", +"hip-hopisâmes", +"hip-hopisant", +"hip-hopisas", +"hip-hopisasse", +"hip-hopisassent", +"hip-hopisasses", +"hip-hopisassiez", +"hip-hopisassions", +"hip-hopisât", +"hip-hopisâtes", +"hip-hopise", +"hip-hopisé", +"hip-hopisée", +"hip-hopisées", +"hip-hopisent", +"hip-hopiser", +"hip-hopisera", +"hip-hopiserai", +"hip-hopiseraient", +"hip-hopiserais", +"hip-hopiserait", +"hip-hopiseras", +"hip-hopisèrent", +"hip-hopiserez", +"hip-hopiseriez", +"hip-hopiserions", +"hip-hopiserons", +"hip-hopiseront", +"hip-hopises", +"hip-hopisés", +"hip-hopisez", +"hip-hopisiez", +"hip-hopisions", +"hip-hopisons", +"hippocampe-feuillu", +"hippocampes-feuillus", +"Hirz-Maulsbach", +"hispano-américain", +"hispano-américaine", +"hispano-américaines", +"hispano-américains", +"hispano-arabe", +"hispano-arabes", +"hispano-mauresque", +"hispano-moresque", +"hispano-moresques", +"histoire-géo", +"historico-culturelle", +"hitléro-trotskisme", +"hitléro-trotskiste", +"hit-parade", +"hit-parades", +"Hiva-Oa", +"hoat-chi", +"Hochdorf-Assenheim", +"hoche-cul", +"hoche-culs", +"hoche-queue", +"Hô-Chi-Minh-Ville", +"Hochstetten-Dhaun", +"Hodenc-en-Bray", +"Hodenc-l'Evêque", +"Hodenc-l'Évêque", +"Hodeng-au-Bosc", +"Hodeng-Hodenger", +"Hofstetten-Flüh", +"Hohenberg-Krusemark", +"Hohenfels-Essingen", +"Höhenkirchen-Siegertsbrunn", +"Hohenstein-Ernstthal", +"Hohen-Sülzen", +"Höhr-Grenzhausen", +"hokkaïdo-ken", +"hold-up", +"Hollande-du-Nord", +"Hollande-du-Sud", +"Hollande-Méridionale", +"Hollande-Septentrionale", +"Hollern-Twielenfleth", +"Hollogne-aux-Pierres", +"Hollogne-sur-Geer", +"Holstein-de-l'Est", +"Hombourg-Budange", +"Hombourg-Haut", +"Hôme-Chamondot", +"home-jacking", +"home-jackings", +"home-sitter", +"home-sitters", +"home-sitting", +"home-sittings", +"home-trainer", +"home-trainers", +"homme-animal", +"homme-chacal", +"homme-clé", +"homme-femme", +"homme-fourmi", +"homme-grenouille", +"homme-léopard", +"homme-loup", +"homme-mort", +"homme-morts", +"homme-objet", +"homme-orchestre", +"homme-robot", +"homme-sandwich", +"hommes-chacals", +"hommes-clés", +"hommes-femmes", +"hommes-fourmis", +"hommes-grenouilles", +"hommes-léopards", +"hommes-loups", +"hommes-objets", +"hommes-orchestres", +"hommes-robots", +"hommes-sandwiches", +"hommes-sandwichs", +"hommes-troncs", +"homme-tronc", +"homo-épitaxie", +"homo-épitaxies", +"honey-dew", +"Hong-Kong", +"hong-kongais", +"Hong-kongais", +"hong-kongaise", +"Hong-kongaise", +"hong-kongaises", +"Hong-kongaises", +"Honguemare-Guenouville", +"hon-hergeois", +"Hon-Hergeois", +"hon-hergeoise", +"Hon-Hergeoise", +"hon-hergeoises", +"Hon-Hergeoises", +"Hon-Hergies", +"Honnecourt-sur-Escaut", +"Honnécourt-sur-l'Escaut", +"Honor-de-Cos", +"Hoog-Baarlo", +"Hoog-Caestert", +"Hoogezand-Sappemeer", +"Hoog-Geldrop", +"Hoog-Keppel", +"Hoorebeke-Saint-Corneille", +"Hoorebeke-Sainte-Marie", +"Hôpital-Camfrout", +"Hôpital-d'Orion", +"Hôpital-du-Grosbois", +"Hôpital-le-Grand", +"Hôpital-le-Mercier", +"Hôpital-Saint-Blaise", +"Hôpital-Saint-Lieffroy", +"Hôpital-sous-Rochefort", +"Hoppstädten-Weiersbach", +"Horbourg-Wihr", +"Horion-Hozémont", +"Horndon-on-the-Hill", +"Hornow-Wadelsdorf", +"Hornoy-le-Bourg", +"horo-kilométrique", +"horo-kilométriques", +"Horrenbach-Buchen", +"hors-bord", +"hors-bords", +"hors-champ", +"hors-concours", +"hors-d'oeuvre", +"hors-d'œuvre", +"horse-ball", +"horse-guard", +"horse-guards", +"Hörselberg-Hainich", +"hors-fonds", +"hors-jeu", +"hors-jeux", +"hors-la-loi", +"hors-ligne", +"hors-lignes", +"hors-norme", +"hors-piste", +"hors-pistes", +"hors-sac", +"hors-série", +"hors-séries", +"hors-service", +"hors-sol", +"hors-sols", +"hors-sujet", +"hors-temps", +"hors-texte", +"hors-textes", +"Horville-en-Ornois", +"Hospitalet-du-Larzac", +"Hospitalet-près-l'Andorre", +"Hoste-Haut", +"hostello-flavien", +"Hostello-Flavien", +"hostello-flavienne", +"Hostello-Flavienne", +"hostello-flaviennes", +"Hostello-Flaviennes", +"hostello-flaviens", +"Hostello-Flaviens", +"hot-dog", +"hot-dogs", +"Hôtel-de-Ville", +"hôtel-Dieu", +"Hôtel-Dieu", +"Hôtellerie-de-Flée", +"hôtellerie-restauration", +"hôtels-Dieu", +"hot-melt", +"hot-melts", +"Hotot-en-Auge", +"hot-plug", +"Hottot-les-Bagues", +"Houdain-lez-Bavay", +"Houdelaucourt-sur-Othain", +"Houdeng-Aimeries", +"Houdeng-Goegnies", +"Houdeng-Gœgnies", +"Houlbec-Cocherel", +"Houlbec-près-le-Gros-Theil", +"houl'eau", +"Houphouët-Boigny", +"Houplin-Ancoisne", +"house-boats", +"Houtain-le-Val", +"Houtain-l'Évêque", +"Houtain-Saint-Siméon", +"Hout-Blerick", +"Houthalen-Helchteren", +"Houville-en-Vexin", +"Houville-la-Branche", +"Houvin-Houvigneul", +"houx-frelon", +"houx-frelons", +"Hoya-Gonzalo", +"Huanne-Montmartin", +"Hubert-Folie", +"Huby-Saint-Leu", +"Huércal-Overa", +"Huétor-Tájar", +"Hugleville-en-Caux", +"Huilly-sur-Seille", +"huis-clos", +"Huisnes-sur-Mer", +"Huison-Longueville", +"Huisseau-en-Beauce", +"Huisseau-sur-Cosson", +"Huisseau-sur-Mauves", +"huitante-neuf", +"huitante-neuvième", +"huitante-neuvièmes", +"huit-marsiste", +"huit-marsistes", +"huit-pieds", +"huit-reflets", +"huit-ressorts", +"Humes-Jorquenay", +"hume-vent", +"huppe-col", +"Hures-la-Parade", +"Hurons-Wendat", +"huron-wendat", +"Husseren-les-Châteaux", +"Husseren-Wesserling", +"Hussigny-Godbrange", +"hydrargyro-cyanate", +"hydrargyro-cyanates", +"hydraulico-pneumatique", +"hydro-aviation", +"hydro-aviations", +"hydro-avion", +"hydro-avions", +"hydro-électricité", +"hydro-électricités", +"hydro-électrique", +"hydro-électriques", +"hydro-ensemencement", +"hydro-ensemencements", +"hydro-météorologie", +"Hyencourt-le-Grand", +"Hyencourt-le-Petit", +"hyène-garou", +"hyènes-garous", +"Hyèvre-Magny", +"Hyèvre-Paroisse", +"hyo-épiglottique", +"hyo-épiglottiques", +"hyo-pharyngien", +"hypo-centre", +"hypo-centres", +"hypo-iodeuse", +"hypo-iodeuses", +"hypo-iodeux", +"hypothético-déductif", +"hystéro-catalepsie", +"hystéro-catalepsies", +"hystéro-épilepsie", +"hystéro-épilepsies", +"Iamalo-Nénètsie", +"iatro-magique", +"iatro-magiques", +"ibéro-roman", +"i-butane", +"i-butanes", +"ice-belt", +"ice-belts", +"ice-berg", +"ice-bergs", +"ice-blink", +"ice-blinks", +"ice-bloc", +"ice-blocs", +"ice-cream", +"ice-creams", +"ice-foot", +"ice-foots", +"ice-rapt", +"ice-rapts", +"ice-table", +"ice-tables", +"ici-bas", +"Idanha-a-Nova", +"Idar-Oberstein", +"Idaux-Mendy", +"idéal-type", +"idée-force", +"idée-maîtresse", +"idées-forces", +"idées-maîtresses", +"idio-électricité", +"idio-électrique", +"idio-électriques", +"Idrac-Respaillès", +"Ids-Saint-Roch", +"i.-e.", +"ifira-mele", +"ifira-meles", +"I-frame", +"Igny-Comblizy", +"igny-marin", +"Igny-Marin", +"igny-marine", +"Igny-Marine", +"igny-marines", +"Igny-Marines", +"igny-marins", +"Igny-Marins", +"III-V", +"II-VI", +"Île-aux-Moines", +"Île-Bouchard", +"Île-d'Aix", +"Île-d'Anticosti", +"Île-d'Arz", +"Île-de-Batz", +"Île-de-Bréhat", +"Ile-de-France", +"île-de-France", +"Île-de-France", +"Île-d'Elle", +"Île-de-Sein", +"Île-d'Houat", +"Île-d'Olonne", +"Île-du-Prince-Édouard", +"Île-d'Yeu", +"île-État", +"Île-Molène", +"iléo-cæcal", +"iléo-cæcale", +"iléo-cæcales", +"iléo-cæcaux", +"iléo-colique", +"iléo-coliques", +"iléos-meldois", +"Iléos-Meldois", +"iléos-meldoise", +"Iléos-Meldoise", +"iléos-meldoises", +"Iléos-Meldoises", +"île-prison", +"Île-Rousse", +"Île-Saint-Denis", +"Îles-de-la-Madeleine", +"îles-États", +"îles-prisons", +"île-tudiste", +"Île-Tudiste", +"île-tudistes", +"Île-Tudistes", +"Île-Tudy", +"iliaco-fémoral", +"iliaco-musculaire", +"ilio-pectiné", +"ilio-pubien", +"ilio-scrotal", +"Ille-et-Vilaine", +"Ille-sur-Têt", +"Illeville-sur-Montfort", +"Illier-et-Laramade", +"Illiers-Combray", +"Illiers-l'Evêque", +"Illiers-l'Évêque", +"Illkirch-Graffenstaden", +"Illnau-Effretikon", +"ilo-dionysien", +"Ilo-Dionysien", +"îlo-dionysien", +"Îlo-Dionysien", +"ilo-dionysienne", +"Ilo-Dionysienne", +"Îlo-Dionysienne", +"ilo-dionysiennes", +"Ilo-Dionysiennes", +"ilo-dionysiens", +"Ilo-Dionysiens", +"image-gradient", +"imazaméthabenz-méthyl", +"immuno-pharmacologie", +"immuno-pharmacologies", +"impari-nervé", +"impari-nervié", +"impari-penné", +"impératrice-mère", +"impératrices-mères", +"import-export", +"in-12", +"in-12º", +"in-16", +"in-16º", +"in-18", +"in-18º", +"in-32", +"in-4", +"in-4º", +"in-4.º", +"in-4to", +"in-6", +"in-6º", +"in-8", +"in-8º", +"in-8.º", +"in-8vo", +"in-cent-vingt-huit", +"inch'allah", +"inch'Allah", +"Inch'allah", +"Inch'Allah", +"Inchy-en-Artois", +"incito-moteur", +"incito-motricité", +"income-tax", +"indane-1,3-dione", +"inde-plate", +"india-océanisme", +"india-océanismes", +"in-dix-huit", +"in-douze", +"Indre-et-Loire", +"in-duodecimo", +"in-fº", +"info-ballon", +"info-ballons", +"info-bulle", +"info-bulles", +"in-folio", +"ingénieur-conseil", +"ingénieur-docteur", +"ingénieure-conseil", +"ingénieures-conseils", +"ingénieur-maître", +"ingénieurs-conseils", +"ingénieurs-docteurs", +"ingénieurs-maîtres", +"Ingrandes-de-Touraine", +"in-huit", +"injonction-bâillon", +"Injoux-Génissiat", +"in-manus", +"in-octavo", +"in-plano", +"in-plº", +"in-promptu", +"in-quarto", +"insecto-mortifère", +"insecto-mortifères", +"in-sedecimo", +"in-seize", +"in-six", +"inspecteur-chef", +"inspecteurs-chefs", +"insulino-dépendant", +"insulino-dépendante", +"insulino-dépendantes", +"insulino-dépendants", +"Interlaken-Oberhasli", +"interno-médial", +"interro-négatif", +"intervertébro-costal", +"in-trente-deux", +"Intville-la-Guétard", +"inuit-aléoute", +"inuit-aléoutes", +"Inval-Boiron", +"in-vingt-quatre", +"in-vitro", +"Inzinzac-Lochrist", +"iodo-borique", +"iodo-chlorure", +"iodosulfuron-méthyl-sodium", +"iowa-oto", +"iowa-otos", +"Î.-P.-É.", +"Iré-le-Sec", +"Iruraiz-Gauna", +"ischio-anal", +"ischio-clitorien", +"ischio-fémoral", +"ischio-fémorale", +"ischio-fémorales", +"ischio-fémoraux", +"ischio-jambier", +"ischio-jambière", +"ischio-jambières", +"ischio-jambiers", +"ischio-périnéal", +"ischio-tibial", +"ischio-tibiaux", +"Is-en-Bassigny", +"Isigny-le-Buat", +"Isigny-sur-Mer", +"IS-IS", +"Isle-Adam", +"Isle-Arné", +"Isle-Aubigny", +"Isle-Aumont", +"Isle-Bouzon", +"Isle-d'Abeau", +"Isle-de-Noé", +"Isle-d'Espagnac", +"Isle-en-Dodon", +"Isle-et-Bardais", +"Isle-Jourdain", +"Isle-Saint-Georges", +"Isles-les-Meldeuses", +"Isles-lès-Villenoy", +"Isle-sous-Montréal", +"Isles-sur-Suippe", +"Isle-sur-la-Sorgue", +"Isle-sur-le-Doubs", +"Isle-sur-Marne", +"Isle-sur-Serein", +"Isle-Vertois", +"Isolaccio-di-Fiumorbo", +"isoxadifen-éthyl", +"israélo-syrienne", +"Issancourt-et-Rumel", +"Issoudun-Létrieix", +"Is-sur-Tille", +"Issy-les-Moulineaux", +"Issy-l'Evêque", +"Issy-l'Évêque", +"istro-roumain", +"Ithorots-Olhaïby", +"Ivano-Fracena", +"Ivoy-le-Petit", +"Ivoy-le-Pré", +"Ivoz-Ramet", +"ivre-mort", +"ivre-morte", +"ivres-mortes", +"ivres-morts", +"Ivry-en-Montagne", +"Ivry-la-Bataille", +"Ivry-le-Temple", +"Ivry-sur-Seine", +"Izaut-de-l'Hôtel", +"Izel-lès-Equerchin", +"Izel-lès-Équerchin", +"Izel-lès-Hameau", +"Izel-les-Hameaux", +"Izon-la-Bruisse", +"Jabreilles-les-Bordes", +"jack-russell", +"Jacob-Bellecombette", +"Jagny-sous-Bois", +"jaguar-garou", +"jaguars-garous", +"jaï-alaï", +"jaï-alaïs", +"Jailly-les-Moulins", +"Jaligny-sur-Besbre", +"jambon-beurre", +"jambon-des-jardiniers", +"jambons-des-jardiniers", +"Jammu-et-Cachemire", +"jam-sessions", +"Jandrain-Jandrenouille", +"Janville-sur-Juine", +"Jard-sur-Mer", +"Jarnac-Champagne", +"Jarville-la-Malgrange", +"Jarzé-Villages", +"Jassans-Riottier", +"Jau-Dignac-et-Loirac", +"Jaunay-Clan", +"jaunay-clanais", +"Jaunay-Clanais", +"jaunay-clanaise", +"Jaunay-Clanaise", +"jaunay-clanaises", +"Jaunay-Clanaises", +"Jaunay-Marigny", +"Javerlhac-et-la-Chapelle-Saint-Robert", +"Javron-les-Chapelles", +"JAX-RPC", +"JAX-RS", +"Jeannois-Mitissien", +"jeans-de-gand", +"jeans-de-janten", +"je-m'en-fichisme", +"je-m'en-fichismes", +"je-m'en-fichiste", +"je-m'en-fichistes", +"je-m'en-foutisme", +"je-m'en-foutismes", +"je-m'en-foutiste", +"je-m'en-foutistes", +"Jemeppe-sur-Sambre", +"je-ne-sais-quoi", +"jérôme-boschisme", +"jérôme-boschismes", +"Jésus-Christ", +"jet-set", +"jet-sets", +"jet-settisa", +"jet-settisai", +"jet-settisaient", +"jet-settisais", +"jet-settisait", +"jet-settisâmes", +"jet-settisant", +"jet-settisas", +"jet-settisasse", +"jet-settisassent", +"jet-settisasses", +"jet-settisassiez", +"jet-settisassions", +"jet-settisât", +"jet-settisâtes", +"jet-settise", +"jet-settisé", +"jet-settisée", +"jet-settisées", +"jet-settisent", +"jet-settiser", +"jet-settisera", +"jet-settiserai", +"jet-settiseraient", +"jet-settiserais", +"jet-settiserait", +"jet-settiseras", +"jet-settisèrent", +"jet-settiserez", +"jet-settiseriez", +"jet-settiserions", +"jet-settiserons", +"jet-settiseront", +"jet-settises", +"jet-settisés", +"jet-settisez", +"jet-settisiez", +"jet-settisions", +"jet-settisons", +"jet-stream", +"jet-streams", +"jette-bouts", +"Jettingen-Scheppach", +"Jeu-les-Bois", +"Jeu-Maloches", +"jeu-malochois", +"Jeu-Malochois", +"jeu-malochoise", +"Jeu-Malochoise", +"jeu-malochoises", +"Jeu-Malochoises", +"jeu-parti", +"Jeux-lès-Bard", +"Ji-hu", +"Ji-hun", +"jiu-jitsu", +"Jodoigne-Souveraine", +"John-Bull", +"Joigny-sur-Meuse", +"joint-venture", +"joint-ventures", +"Joinville-le-Pont", +"joli-bois", +"Jollain-Merlin", +"Jonchery-sur-Suippe", +"Jonchery-sur-Vesle", +"Jonquerets-de-Livet", +"Jonquières-Saint-Vincent", +"Jonville-en-Woëvre", +"Jonzier-Epagny", +"Jonzier-Épagny", +"Jorat-Menthue", +"Jouars-Pontchartrain", +"Joué-du-Bois", +"Joué-du-Plain", +"Joué-en-Charnie", +"Joué-Étiau", +"Joué-l'Abbé", +"Joué-lès-Tours", +"Joué-sur-Erdre", +"Jouet-sur-l'Aubois", +"jour-homme", +"jour-lumière", +"Jours-en-Vaux", +"jours-hommes", +"Jours-lès-Baigneux", +"jours-lumière", +"Jou-sous-Monjou", +"Joux-la-Ville", +"Jouxtens-Mézery", +"Jouy-aux-Arches", +"Jouy-en-Argonne", +"Jouy-en-Josas", +"Jouy-en-Pithiverais", +"Jouy-le-Châtel", +"Jouy-le-Moutier", +"Jouy-le-Potier", +"Jouy-lès-Reims", +"Jouy-Mauvoisin", +"Jouy-sous-Thelle", +"Jouy-sur-Eure", +"Jouy-sur-Morin", +"J-pop", +"J-rock", +"j't'aime", +"Juan-les-Pins", +"Juaye-Mondaye", +"Jubbega-Schurega", +"Jû-Belloc", +"judéo-allemand", +"judéo-alsacien", +"judéo-arabe", +"judéo-arabes", +"judéo-asiatique", +"judéo-bolchévisme", +"judéo-centrisme", +"judéo-chrétien", +"judéo-chrétienne", +"judéo-chrétiennes", +"judéo-chrétiens", +"judéo-christianisme", +"judéo-christiano-islamique", +"judéo-christiano-islamiques", +"judéo-christiano-musulman", +"judéo-espagnol", +"judéo-espagnole", +"judéo-espagnoles", +"judéo-espagnols", +"judéo-iranien", +"judéo-libyen", +"judéo-lybien", +"judéo-maçonnique", +"judéo-maçonniques", +"judéo-musulman", +"judéo-musulmans", +"judéo-nazi", +"judéo-nazis", +"Jugeals-Nazareth", +"Jugon-les-Lacs", +"juǀ'hoan", +"Juif-Errant", +"Juifs-Errants", +"Juigné-Béné", +"Juigné-des-Moutiers", +"Juigné-sur-Loire", +"Juigné-sur-Sarthe", +"Juillac-le-Coq", +"ju-jitsu", +"ju-ju", +"juke-box", +"juke-boxes", +"Jully-lès-Buxy", +"jully-sarçois", +"Jully-Sarçois", +"jully-sarçoise", +"Jully-Sarçoise", +"jully-sarçoises", +"Jully-Sarçoises", +"Jully-sur-Sarce", +"Jumilhac-le-Grand", +"junk-food", +"junk-foods", +"jupe-culotte", +"jupes-culottes", +"Jupille-sur-Meuse", +"juridico-politique", +"juridico-politiques", +"jusque-là", +"Jussecourt-Minecourt", +"Jussy-Champagne", +"Jussy-le-Chaudrier", +"juste-à-temps", +"juste-au-corps", +"Justine-Herbigny", +"Juvigny-en-Perthois", +"Juvigny-les-Vallées", +"Juvigny-le-Tertre", +"Juvigny-sous-Andaine", +"Juvigny-sur-Loison", +"Juvigny-sur-Orne", +"Juvigny-sur-Seulles", +"Juvigny-Val-d'Andaine", +"Juvincourt-et-Damary", +"Juvisy-sur-Orge", +"juxta-position", +"juxta-positions", +"Juzet-de-Luchon", +"Juzet-d'Izaut", +"Kaala-Gomen", +"Kabardino-Balkarie", +"Kaiser-Wilhelm-Koog", +"Kalenborn-Scheuern", +"kali'na", +"Kamerik-Houtdijken", +"Kamerik-Mijzijde", +"Kamp-Bornhofen", +"Kamperzeedijk-Oost", +"Kamperzeedijk-West", +"Kamp-Lintfort", +"Kani-Kéli", +"kan-kan", +"kan-kans", +"kansai-ben", +"Kapel-Avezaath", +"Kapellen-Drusweiler", +"Kapelle-op-den-Bos", +"Kappel-Grafenhausen", +"karachay-balkar", +"karafuto-ken", +"kara-gueuz", +"kara-kalpak", +"Kara-Koum", +"Karangasso-Sambla", +"Karangasso-Vigué", +"karatchaï-balkar", +"Karatchaïévo-Tcherkassie", +"Karbow-Vietlübbe", +"Karlsdorf-Neuthard", +"Karlstadt-sur-le-Main", +"Kasbach-Ohlenberg", +"Kasel-Golzig", +"Kastel-Staadt", +"Katlenburg-Lindau", +"Kaysersberg-Vignoble", +"K-bis", +"Kédange-sur-Canner", +"Kelpen-Oler", +"kem's", +"Kenz-Küstrow", +"kérato-pharyngien", +"kérato-staphylin", +"kérato-staphylins", +"Kerckom-lez-Saint-Trond", +"Kergrist-Moëlou", +"Kerk-Avezaath", +"Kerkom-bij-Sint-Truiden", +"Kerling-lès-Sierck", +"Kermaria-Sulard", +"Kermoroc'h", +"Kerprich-aux-Bois", +"Kerprich-lès-Dieuze", +"Kerry-Blue-terrier", +"Kersaint-Plabennec", +"Kersbeek-Miskom", +"Kessel-Eik", +"Kessel-Lo", +"khambo-lama", +"khambo-lamas", +"khatti-chérif", +"khatti-chérifs", +"khi-carré", +"khi-carrés", +"khi-deux", +"Kiel-Windeweer", +"kif-kif", +"kilo-électrons-volts", +"kiloélectrons-volts", +"kilo-électron-volt", +"kiloélectron-volt", +"kilo-électron-volts", +"kiloélectron-volts", +"kilogramme-force", +"kilogramme-poids", +"kilogrammes-force", +"kilogrammes-poids", +"kilomètre-heure", +"kilomètres-heure", +"kilo-ohm", +"kilo-ohms", +"kin-ball", +"Kingston-sur-Tamise", +"Kingston-upon-Hull", +"Kingston-upon-Thames", +"kino-congolais", +"Kino-Congolais", +"kip-kap", +"kip-kaps", +"Kirkby-in-Ashfield", +"Kirrwiller-Bosselshausen", +"Kirsch-lès-Sierck", +"kirsch-wasser", +"kirsch-wassers", +"kiss-in", +"kite-surf", +"kite-surfa", +"kite-surfai", +"kite-surfaient", +"kite-surfais", +"kite-surfait", +"kite-surfâmes", +"kite-surfant", +"kite-surfas", +"kite-surfasse", +"kite-surfassent", +"kite-surfasses", +"kite-surfassiez", +"kite-surfassions", +"kite-surfât", +"kite-surfâtes", +"kite-surfe", +"kite-surfé", +"kite-surfent", +"kite-surfer", +"kite-surfera", +"kite-surferai", +"kite-surferaient", +"kite-surferais", +"kite-surferait", +"kite-surferas", +"kite-surfèrent", +"kite-surferez", +"kite-surferiez", +"kite-surferions", +"kite-surferons", +"kite-surferont", +"kite-surfers", +"kite-surfes", +"kite-surfez", +"kite-surfiez", +"kite-surfions", +"kite-surfons", +"Kizil-Arvat", +"Klazienaveen-Noord", +"Klein-Amsterdam", +"Klein-Bedaf", +"Klein-Brabant", +"Klein-Delfgauw", +"Klein-Doenrade", +"Klein-Dongen", +"Kleine-Brogel", +"Kleine-Spouwen", +"Klein-Overleek", +"Klein-Ulsda", +"Klein-Valkenisse", +"Klein-Wetsinge", +"Klein-Winternheim", +"Klein-Zundert", +"Kleßen-Görne", +"Klooster-Lidlum", +"Klosters-Serneus", +"knicker-bocker", +"knicker-bockers", +"knock-out", +"knock-outa", +"knock-outai", +"knock-outaient", +"knock-outais", +"knock-outait", +"knock-outâmes", +"knock-outant", +"knock-outas", +"knock-outasse", +"knock-outassent", +"knock-outasses", +"knock-outassiez", +"knock-outassions", +"knock-outât", +"knock-outâtes", +"knock-oute", +"knock-outé", +"knock-outée", +"knock-outées", +"knock-outent", +"knock-outer", +"knock-outera", +"knock-outerai", +"knock-outeraient", +"knock-outerais", +"knock-outerait", +"knock-outeras", +"knock-outèrent", +"knock-outerez", +"knock-outeriez", +"knock-outerions", +"knock-outerons", +"knock-outeront", +"knock-outes", +"knock-outés", +"knock-outez", +"knock-outiez", +"knock-outions", +"knock-outons", +"knock-outs", +"Knokke-Heist", +"Knopp-Labach", +"Kobern-Gondorf", +"Kœur-la-Grande", +"Kœur-la-Petite", +"Kohren-Sahlis", +"Kölln-Reisiek", +"Komki-Ipala", +"Königsbach-Stein", +"Königshain-Wiederau", +"Korbeek-Dijle", +"Korbeek-Lo", +"Korntal-Münchingen", +"ko-soto-gake", +"Kottweiler-Schwanden", +"kouan-hoa", +"kouign-aman", +"kouign-amann", +"kouign-amanns", +"kouign-amans", +"K-pop", +"K-Pop", +"K-POP", +"Kradolf-Schönenberg", +"krav-naga", +"Kreba-Neudorf", +"Kreimbach-Kaulbach", +"krésoxim-méthyl", +"Kröppelshagen-Fahrendorf", +"Kuhlen-Wendorf", +"kung-fu", +"k-voisinage", +"k-voisinages", +"kwan-li-so", +"k-way", +"K-way", +"k-ways", +"K-ways", +"KwaZulu-Natal", +"Kyzyl-Arvat", +"Laag-Caestert", +"Laag-Keppel", +"Laag-Nieuwkoop", +"Laag-Soeren", +"Laà-Mondrans", +"Labarthe-Bleys", +"Labarthe-Inard", +"Labarthe-Rivière", +"Labarthe-sur-Lèze", +"là-bas", +"Labastide-Beauvoir", +"Labastide-Castel-Amouroux", +"Labastide-Cézéracq", +"Labastide-Chalosse", +"Labastide-Clairence", +"Labastide-Clermont", +"Labastide-d'Anjou", +"Labastide-d'Armagnac", +"Labastide-de-Juvinas", +"Labastide-de-Lévis", +"Labastide-Dénat", +"Labastide-de-Penne", +"Labastide-de-Virac", +"Labastide-du-Haut-Mont", +"Labastide-du-Temple", +"Labastide-du-Vert", +"Labastide-en-Val", +"Labastide-Esparbairenque", +"Labastide-Gabausse", +"Labastide-Marnhac", +"Labastide-Monréjeau", +"Labastide-Murat", +"Labastide-Paumès", +"Labastide-Rouairoux", +"Labastide-Saint-Georges", +"Labastide-Saint-Pierre", +"Labastide-Saint-Sernin", +"Labastide-Savès", +"Labastide-sur-Bésorgues", +"Labastide-Villefranche", +"Labatie-d'Andaure", +"Labatut-Rivière", +"Labécède-Lauragais", +"Labergement-du-Navois", +"Labergement-Foigney", +"Labergement-lès-Auxonne", +"Labergement-lès-Seurre", +"Labergement-Sainte-Marie", +"Labessière-Candeil", +"Labets-Biscay", +"lab-ferment", +"lab-ferments", +"Laboissière-en-Santerre", +"Laboissière-en-Thelle", +"Laboissière-Saint-Martin", +"Labruyère-Dorsa", +"lac-à-l'épaule", +"Lacam-d'Ourcet", +"Lacapelle-Barrès", +"Lacapelle-Biron", +"Lacapelle-Cabanac", +"Lacapelle-del-Fraisse", +"Lacapelle-Livron", +"Lacapelle-Marival", +"Lacapelle-Pinet", +"Lacapelle-Ségalar", +"Lacapelle-Viescamp", +"Lacarry-Arhan-Charritte-de-Haut", +"Lac-aux-Sables", +"Lac-Beauportois", +"Lac-Bouchettien", +"Lac-Carréen", +"Lac-des-Rouges-Truites", +"Lac-Édouard", +"Lac-Etcheminois", +"Lachamp-Raphaël", +"Lachapelle-aux-Pots", +"Lachapelle-Auzac", +"Lachapelle-en-Blaisy", +"Lachapelle-Graillouse", +"Lachapelle-Saint-Pierre", +"Lachapelle-sous-Aubenas", +"Lachapelle-sous-Chanéac", +"Lachapelle-sous-Chaux", +"Lachapelle-sous-Gerberoy", +"Lachapelle-sous-Rougemont", +"Lachaussée-du-Bois-d'Ecu", +"Lachaussée-du-Bois-d'Écu", +"lache-bras", +"lâcher-tout", +"Lac-Humquien", +"lac-laque", +"lac-laques", +"là-contre", +"Lacougotte-Cadoul", +"Lacour-d'Arcenay", +"Lacourt-Saint-Pierre", +"Lac-ou-Villers", +"Lac-Poulinois", +"lacrima-christi", +"lacrima-Christi", +"Lacrima-Christi", +"Lacroix-Barrez", +"Lacroix-Falgarde", +"Lacroix-Saint-Ouen", +"Lacroix-sur-Meuse", +"lacryma-christi", +"lacryma-Christi", +"Lacryma-Christi", +"Lac-Saguayen", +"lacs-à-l'épaule", +"lacto-végétarisme", +"lacto-végétarismes", +"là-dedans", +"là-delez", +"Ladern-sur-Lauquet", +"là-dessous", +"là-dessus", +"Ladevèze-Rivière", +"Ladevèze-Ville", +"Ladignac-le-Long", +"Ladignac-sur-Rondelles", +"Ladoix-Serrigny", +"Ladoye-sur-Seille", +"laemmer-geier", +"laemmer-geiers", +"læmmer-geyer", +"læmmer-geyers", +"Laethem-Sainte-Marie", +"Laethem-Saint-Martin", +"Lafage-sur-Sombre", +"Laferté-sur-Amance", +"Laferté-sur-Aube", +"la-fertois", +"La-Fertois", +"la-fertoise", +"La-Fertoise", +"la-fertoises", +"La-Fertoises", +"Lafeuillade-en-Vézie", +"Laffite-Toupière", +"Lafitte-sur-Lot", +"Lafitte-Vigordane", +"Lafresguimont-Saint-Martin", +"Lagarde-d'Apt", +"Lagarde-Enval", +"Lagarde-Hachan", +"Lagardelle-sur-Lèze", +"Lagarde-Paréol", +"Lagarde-sur-le-Né", +"Lagnicourt-Marcel", +"Lagny-le-Sec", +"Lagny-sur-Marne", +"Lagrâce-Dieu", +"Lagraulet-du-Gers", +"Lagraulet-Saint-Nicolas", +"Laguian-Mazous", +"Laguinge-Restoue", +"là-haut", +"Lahaye-Saint-Romain", +"Lahitte-Toupière", +"Lahn-Dill", +"Laigné-en-Belin", +"Lailly-en-Val", +"Laines-aux-Bois", +"Lainville-en-Vexin", +"laissée-pour-compte", +"laissées-pour-compte", +"laissé-pour-compte", +"laisser-aller", +"laisser-allers", +"laisser-courre", +"laisser-faire", +"laisser-sur-place", +"laissés-pour-compte", +"laissez-faire", +"laissez-passer", +"Laître-sous-Amance", +"Laize-Clinchamps", +"Laize-la-Ville", +"la-la-la", +"Lalande-de-Pomerol", +"Lalande-en-Son", +"Lalanne-Arqué", +"Lalanne-Trie", +"Lalevade-d'Ardèche", +"Lalouret-Laffiteau", +"Lamadeleine-Val-des-Anges", +"Lamalou-les-Bains", +"Lamarche-en-Woëvre", +"Lamarche-sur-Saône", +"Lamargelle-aux-Bois", +"Lamarque-Pontacq", +"Lamarque-Rustaing", +"Lamazière-Basse", +"Lamazière-Haute", +"lambda-cyhalothrine", +"Lambres-lès-Aire", +"Lambres-lez-Aire", +"Lambres-lez-Douai", +"Lamenay-sur-Loire", +"L-aminoacide", +"L-aminoacides", +"Lamonzie-Montastruc", +"Lamonzie-Saint-Martin", +"Lamothe-Capdeville", +"Lamothe-Cassel", +"Lamothe-Cumont", +"Lamothe-en-Blaisy", +"Lamothe-Fénelon", +"Lamothe-Goas", +"Lamothe-Landerron", +"Lamothe-Montravel", +"Lamotte-Beuvron", +"Lamotte-Brebière", +"Lamotte-Buleux", +"Lamotte-du-Rhône", +"Lamotte-Warfusée", +"Lampaul-Guimiliau", +"Lampaul-Plouarzel", +"Lampaul-Ploudalmézeau", +"lampes-tempête", +"lampe-tempête", +"l-amphétamine", +"lampris-lune", +"Lamure-sur-Azergues", +"lance-amarres", +"lance-balles", +"lance-bombe", +"lance-bombes", +"lance-flamme", +"lance-flammes", +"lance-fusée", +"lance-fusées", +"lance-grenade", +"lance-grenades", +"lance-missile", +"lance-missiles", +"lance-patates", +"lance-pierre", +"lance-pierres", +"lance-roquette", +"lance-roquettes", +"lance-torpille", +"lance-torpilles", +"Lanches-Saint-Hilaire", +"Lanciego-Lantziego", +"Lancken-Granitz", +"Lançon-Provence", +"Lande-de-Libourne", +"Landelles-et-Coupigny", +"Landerrouet-sur-Ségur", +"Landes-le-Gaulois", +"Landes-sur-Ajon", +"Landes-Vieilles-et-Neuves", +"land-ice", +"land-ices", +"Landifay-et-Bertaignemont", +"Landouzy-la-Cour", +"Landouzy-la-Ville", +"Landrecourt-Lempire", +"Landres-et-Saint-Georges", +"Landrethun-le-Nord", +"Landrethun-lès-Ardres", +"Landsberg-am-Lech", +"Laneuveville-aux-Bois", +"Laneuveville-derrière-Foug", +"Laneuveville-devant-Bayon", +"Laneuveville-devant-Nancy", +"Laneuveville-en-Saulnois", +"Laneuveville-lès-Lorquin", +"Laneuville-à-Rémy", +"Laneuville-au-Bois", +"Laneuville-au-Pont", +"Laneuville-au-Rupt", +"Laneuville-sur-Meuse", +"Langemark-Poelkapelle", +"Langenleuba-Niederhain", +"Langrolay-sur-Rance", +"Langrune-sur-Mer", +"langue-de-boeuf", +"langue-de-chat", +"langue-de-moineau", +"langue-de-serpent", +"langue-de-vache", +"Languedoc-Roussillon", +"Languedoc-Roussillon-Midi-Pyrénées", +"langues-de-boeuf", +"langues-de-chat", +"langues-de-vache", +"langues-toit", +"langue-toit", +"Languevoisin-Quiquery", +"Lanitz-Hassel-Tal", +"Lanne-en-Barétous", +"Lanne-Soubiran", +"lanne-soubiranais", +"Lanne-Soubiranais", +"lanne-soubiranaise", +"Lanne-Soubiranaise", +"lanne-soubiranaises", +"Lanne-Soubiranaises", +"Lannoy-Cuillère", +"Lanques-sur-Rognon", +"Lansen-Schönau", +"Lans-en-Vercors", +"Lanslebourg-Mont-Cenis", +"Lans-l'Hermitage", +"Lantenne-Vertière", +"Lanty-sur-Aube", +"Lapanouse-de-Cernon", +"Laperrière-sur-Saône", +"Lapeyrouse-Fossat", +"Lapeyrouse-Mornay", +"lapin-garou", +"lapins-garous", +"lapis-lazuli", +"là-pour-ça", +"lapu-lapu", +"Laragne-Montéglin", +"Larceveau-Arros-Cibits", +"Lardier-et-Valença", +"Largillay-Marsonnay", +"Largny-sur-Automne", +"Larians-et-Munans", +"Larivière-Arnoncourt", +"larme-de-Job", +"larmes-de-Job", +"Larmor-Baden", +"Larmor-Plage", +"Laroche-près-Feyt", +"Laroche-Saint-Cydroine", +"Laroque-de-Fa", +"Laroque-des-Albères", +"Laroque-des-Arcs", +"Laroque-d'Olmes", +"Laroque-Timbaut", +"Larribar-Sorhapuru", +"Larrivière-Saint-Savin", +"Larroque-Engalin", +"Larroque-Saint-Sernin", +"Larroque-sur-l'Osse", +"Larroque-Toirac", +"Lasarte-Oria", +"Lascellas-Ponzano", +"Lasne-Chapelle-Saint-Lambert", +"Lassay-les-Châteaux", +"Lassay-sur-Croisne", +"Lasserre-de-Prouille", +"Lasseube-Propre", +"Lathus-Saint-Rémy", +"Lâ-Todin", +"Latouille-Lentillac", +"Latour-Bas-Elne", +"Latour-de-Carol", +"Latour-de-France", +"Latour-en-Woëvre", +"Latrecey-Ormoy-sur-Aube", +"Lattre-Saint-Quentin", +"Lau-Balagnas", +"lau-balutin", +"Lau-Balutin", +"lau-balutine", +"Lau-Balutine", +"lau-balutines", +"Lau-Balutines", +"lau-balutins", +"Lau-Balutins", +"Laucha-sur-Unstrut", +"Lauda-Königshofen", +"Laudio-Llodio", +"Laudun-l'Ardoise", +"Laufen-Uhwiesen", +"launay-villersois", +"Launay-Villersois", +"launay-villersoise", +"Launay-Villersoise", +"launay-villersoises", +"Launay-Villersoises", +"Launay-Villiers", +"Launois-sur-Vence", +"Laurac-en-Vivarais", +"Laure-Minervois", +"laurier-cerise", +"laurier-rose", +"laurier-sauce", +"lauriers-cerises", +"lauriers-roses", +"lauriers-tins", +"laurier-tarte", +"laurier-thym", +"laurier-tin", +"Lauwin-Planque", +"Laux-Montaux", +"Laval-Atger", +"Laval-d'Aix", +"Laval-d'Aurelle", +"Laval-de-Cère", +"laval-de-cérois", +"Laval-de-Cérois", +"laval-de-céroise", +"Laval-de-Céroise", +"laval-de-céroises", +"Laval-de-Céroises", +"Laval-du-Tarn", +"Laval-en-Brie", +"Laval-en-Laonnois", +"Laval-le-Prieuré", +"Laval-Morency", +"Laval-Pradel", +"Laval-Roquecezière", +"Laval-Saint-Roman", +"Laval-sur-Doulon", +"Laval-sur-Luzège", +"Laval-sur-Tourbe", +"Laval-sur-Vologne", +"Lavancia-Epercy", +"Lavans-lès-Dole", +"Lavans-lès-Saint-Claude", +"lavans-quingeois", +"Lavans-Quingeois", +"lavans-quingeoise", +"Lavans-Quingeoise", +"lavans-quingeoises", +"Lavans-Quingeoises", +"Lavans-Quingey", +"Lavans-sur-Valouse", +"Lavans-Vuillafans", +"Lavault-de-Frétoy", +"Lavault-Sainte-Anne", +"Lavau-sur-Loire", +"Lavaux-Oron", +"Lavaux-Sainte-Anne", +"Lavaveix-les-Mines", +"lave-auto", +"lave-autos", +"lavé-de-vert", +"lave-glace", +"Lavelanet-de-Comminges", +"Laveline-devant-Bruyères", +"Laveline-du-Houx", +"lave-linge", +"lave-linges", +"lave-main", +"lave-mains", +"Laveno-Mombello", +"lave-pont", +"lave-ponts", +"Lavernose-Lacasse", +"lavés-de-vert", +"lave-tête", +"lave-têtes", +"laveuse-sécheuse", +"lave-vaisselle", +"lave-vaisselles", +"Lavey-Morcles", +"Laville-aux-Bois", +"Lavilleneuve-au-Roi", +"Lavilleneuve-aux-Fresnes", +"Lavoûte-Chilhac", +"Lavoûte-sur-Loire", +"Lawarde-Mauger-l'Hortoy", +"Lay-Lamidou", +"Layrac-sur-Tarn", +"Lay-Saint-Christophe", +"Lay-Saint-Remy", +"Lays-sur-le-Doubs", +"lazur-apatite", +"lazur-apatites", +"Léa-Lisa", +"lease-back", +"leather-jacket", +"lèche-botta", +"lèche-bottai", +"lèche-bottaient", +"lèche-bottais", +"lèche-bottait", +"lèche-bottâmes", +"lèche-bottant", +"lèche-bottas", +"lèche-bottasse", +"lèche-bottassent", +"lèche-bottasses", +"lèche-bottassiez", +"lèche-bottassions", +"lèche-bottât", +"lèche-bottâtes", +"lèche-botte", +"lèche-botté", +"lèche-bottée", +"lèche-bottées", +"lèche-bottent", +"lèche-botter", +"lèche-bottera", +"lèche-botterai", +"lèche-botteraient", +"lèche-botterais", +"lèche-botterait", +"lèche-botteras", +"lèche-bottèrent", +"lèche-botterez", +"lèche-botteriez", +"lèche-botterions", +"lèche-botterons", +"lèche-botteront", +"lèche-bottes", +"lèche-bottés", +"lèche-bottez", +"lèche-bottiez", +"lèche-bottions", +"lèche-bottons", +"lèche-cul", +"lèche-culs", +"lèche-vitrine", +"lèche-vitrines", +"lecteur-graveur", +"lecteurs-graveurs", +"Lédas-et-Penthiès", +"Leers-et-Fosteau", +"Leers-Nord", +"Lées-Athas", +"Leeuw-Saint-Pierre", +"Lège-Cap-Ferret", +"Légéville-et-Bonfays", +"Légion-d'Honneur", +"Léguillac-de-Cercles", +"Léguillac-de-l'Auche", +"légume-feuille", +"légume-fleur", +"légume-fruit", +"légume-racine", +"légumes-feuilles", +"légumes-fleurs", +"légumes-fruits", +"légumes-racines", +"légumes-tiges", +"légume-tige", +"Leidschendam-Voorburg", +"Leigné-les-Bois", +"Leignes-sur-Fontaine", +"Leigné-sur-Usseau", +"Leinefelde-Worbis", +"Leinfelden-Echterdingen", +"Leintz-Gatzaga", +"Lelin-Lapujolle", +"Leménil-Mitry", +"lemmer-geyer", +"lemmer-geyers", +"Lempdes-sur-Allagnon", +"Lempire-aux-Bois", +"Lens-Lestang", +"Lens-Saint-Remy", +"Lens-Saint-Servais", +"Lens-sur-Geer", +"Lentillac-du-Causse", +"Lentillac-Lauzès", +"Lentillac-Saint-Blaise", +"léopard-garou", +"léopards-garous", +"Leo-Stichting", +"Lépanges-sur-Vologne", +"Lépin-le-Lac", +"lépisostée-alligator", +"Lépron-les-Vallées", +"lepto-kurticité", +"lepto-kurticités", +"lepto-kurtique", +"lepto-kurtiques", +"Lepuix-Neuf", +"Lerm-et-Musset", +"Leschères-sur-le-Blaiseron", +"Lesches-en-Diois", +"Lescouët-Gouarec", +"Lescouët-Jugon", +"Lescure-d'Albigeois", +"Lescure-Jaoul", +"lèse-majesté", +"lèse-majestés", +"Lésignac-Durand", +"Lesparre-Médoc", +"Lespielle-Germenaud-Lannegrasse", +"Lesquielles-Saint-Germain", +"Lessard-en-Auge", +"Lessard-en-Bresse", +"Lessard-et-le-Chêne", +"Lessard-le-National", +"Lestelle-Bétharram", +"Lestelle-de-Saint-Martory", +"Lestiac-sur-Garonne", +"Lestrade-et-Thouels", +"Leuben-Schleinitz", +"Leudon-en-Brie", +"Leuilly-sous-Coucy", +"Leulinghen-Bernes", +"Leusden-Zuid", +"Leuville-sur-Orge", +"Leuze-en-Hainaut", +"Leval-Chaudeville", +"Levallois-Perret", +"Leval-Trahegnies", +"lève-cul", +"lève-culs", +"lève-gazon", +"lève-glace", +"lève-glaces", +"lever-dieu", +"Levesville-la-Chenard", +"lève-tard", +"lève-tôt", +"lève-vitre", +"lève-vitres", +"Lévignac-de-Guyenne", +"Lévis-Saint-Nom", +"lévi-straussien", +"lévi-straussienne", +"lévi-straussiennes", +"lévi-straussiens", +"Lévy-Saint-Nom", +"Leyritz-Moncassin", +"Lézat-sur-Lèze", +"Lez-Fontaine", +"Lézignan-Corbières", +"Lézignan-la-Cèbe", +"L-flampropisopropyl", +"lgbti-friendly", +"LGBTI-friendly", +"lgbti-phobie", +"LGBTI-phobie", +"lgbti-phobies", +"LGBTI-phobies", +"L-glycéraldéhyde", +"Liancourt-Fosse", +"Liancourt-Saint-Pierre", +"liane-corail", +"lianes-corail", +"Lias-d'Armagnac", +"libéral-conservateur", +"libéral-conservatisme", +"liberum-veto", +"libidino-calotin", +"Libramont-Chevigny", +"libre-choix", +"libre-échange", +"libre-échangisme", +"libre-échangismes", +"libre-échangiste", +"libre-échangistes", +"libre-penseur", +"libre-penseuse", +"libres-choix", +"libre-service", +"libres-penseurs", +"libres-penseuses", +"libres-services", +"Libre-Ville", +"libyco-berbère", +"libyco-berbères", +"lice-po", +"Licey-sur-Vingeanne", +"Lichans-Sunhar", +"liche-casse", +"Lichères-près-Aigremont", +"Lichères-sur-Yonne", +"Lichterfeld-Schacksdorf", +"licol-drisse", +"licols-drisses", +"Licq-Athérey", +"Licy-Clignon", +"lie-de-vin", +"Lierde-Sainte-Marie", +"Lierde-Saint-Martin", +"Liesse-Notre-Dame", +"Liesville-sur-Douve", +"lieu-dit", +"Lieuran-Cabrières", +"Lieuran-lès-Béziers", +"Lieu-Saint-Amand", +"lieu-saint-amandinois", +"Lieu-Saint-Amandinois", +"lieu-saint-amandinoise", +"Lieu-Saint-Amandinoise", +"lieu-saint-amandinoises", +"Lieu-Saint-Amandinoises", +"lieutenant-colonel", +"lieutenant-général", +"lieutenant-gouverneur", +"lieutenants-colonels", +"lieux-dits", +"Liffol-le-Grand", +"Liffol-le-Petit", +"Li-Fi", +"Lignan-de-Bazas", +"Lignan-de-Bordeaux", +"Lignan-sur-Orb", +"ligne-de-foulée", +"lignes-de-foulée", +"Lignières-Châtelain", +"Lignières-de-Touraine", +"Lignières-en-Vimeu", +"Lignières-la-Carelle", +"Lignières-Orgères", +"Lignières-Sonneville", +"Lignières-sur-Aire", +"Lignol-le-Château", +"Ligny-en-Barrois", +"Ligny-en-Brionnais", +"Ligny-en-Cambrésis", +"Ligny-Haucourt", +"Ligny-le-Châtel", +"Ligny-le-Ribault", +"Ligny-lès-Aire", +"Ligny-Saint-Flochel", +"Ligny-sur-Canche", +"Ligny-Thilloy", +"Lille-sous-Mauréal", +"Lille-sous-Montréal", +"Lillois-Witterzée", +"limande-sole", +"limande-soles", +"limandes-soles", +"Limbach-Oberfrohna", +"Limburg-Weilburg", +"lime-bois", +"Limeil-Brévannes", +"Limetz-Villez", +"lime-uranite", +"lime-uranites", +"Limey-Remenauville", +"Limoges-Fourches", +"Limogne-en-Quercy", +"Limont-Fontaine", +"Limours-en-Hurepoix", +"Lincheux-Hallivillers", +"Lindre-Basse", +"Lindre-Haute", +"Linières-Bouton", +"Linkenheim-Hochstetten", +"linon-batiste", +"linon-batistes", +"Lintot-les-Bois", +"Liny-devant-Dun", +"Lion-devant-Dun", +"Lion-en-Beauce", +"Lion-en-Sullias", +"lion-garou", +"lions-garous", +"Lion-sur-Mer", +"Liorac-sur-Louyre", +"Lioux-les-Monges", +"Lippersdorf-Erdmannsdorf", +"lire-écrire", +"Lisle-en-Barrois", +"Lisle-en-Rigault", +"Lisle-sur-Tarn", +"Lissac-et-Mouret", +"Lissac-sur-Couze", +"Lissay-Lochy", +"Lisse-en-Champagne", +"Listrac-de-Durèze", +"Listrac-Médoc", +"lit-cage", +"lit-clos", +"Lit-et-Mixe", +"litho-typographia", +"litho-typographiai", +"litho-typographiaient", +"litho-typographiais", +"litho-typographiait", +"litho-typographiâmes", +"litho-typographiant", +"litho-typographias", +"litho-typographiasse", +"litho-typographiassent", +"litho-typographiasses", +"litho-typographiassiez", +"litho-typographiassions", +"litho-typographiât", +"litho-typographiâtes", +"litho-typographie", +"litho-typographié", +"litho-typographiée", +"litho-typographiées", +"litho-typographient", +"litho-typographier", +"litho-typographiera", +"litho-typographierai", +"litho-typographieraient", +"litho-typographierais", +"litho-typographierait", +"litho-typographieras", +"litho-typographièrent", +"litho-typographierez", +"litho-typographieriez", +"litho-typographierions", +"litho-typographierons", +"litho-typographieront", +"litho-typographies", +"litho-typographiés", +"litho-typographiez", +"litho-typographiiez", +"litho-typographiions", +"litho-typographions", +"lits-cages", +"lits-clos", +"little-endian", +"Livarot-Pays-d'Auge", +"Liverdy-en-Brie", +"Livers-Cazelles", +"Livet-en-Saosnois", +"Livet-et-Gavet", +"Livet-sur-Authou", +"living-room", +"living-rooms", +"Livinhac-le-Haut", +"Livré-la-Touche", +"livres-cassettes", +"Livré-sur-Changeon", +"livret-police", +"Livron-sur-Drôme", +"Livry-Gargan", +"Livry-Louvercy", +"Livry-sur-Seine", +"Lixing-lès-Rouhling", +"Lixing-lès-Saint-Avold", +"Lizy-sur-Ourcq", +"localité-type", +"location-financement", +"Loc-Brévalaire", +"Loc-Eguiner", +"Loc-Éguiner", +"Loc-Eguiner-Saint-Thégonnec", +"Loc-Éguiner-Saint-Thégonnec", +"Loc-Envel", +"Loches-sur-Ource", +"Loché-sur-Indrois", +"lock-out", +"lock-outa", +"lock-outai", +"lock-outaient", +"lock-outais", +"lock-outait", +"lock-outâmes", +"lock-outant", +"lock-outas", +"lock-outasse", +"lock-outassent", +"lock-outasses", +"lock-outassiez", +"lock-outassions", +"lock-outât", +"lock-outâtes", +"lock-oute", +"lock-outé", +"lock-outée", +"lock-outées", +"lock-outent", +"lock-outer", +"lock-outera", +"lock-outerai", +"lock-outeraient", +"lock-outerais", +"lock-outerait", +"lock-outeras", +"lock-outèrent", +"lock-outerez", +"lock-outeriez", +"lock-outerions", +"lock-outerons", +"lock-outeront", +"lock-outes", +"lock-outés", +"lock-outez", +"lock-outiez", +"lock-outions", +"lock-outons", +"lock-outs", +"Locmaria-Berrien", +"Locmaria-Grand-Champ", +"Locmaria-Plouzané", +"Locoal-Mendon", +"locoalo-mendonnais", +"Locoalo-Mendonnais", +"locoalo-mendonnaise", +"Locoalo-Mendonnaise", +"locoalo-mendonnaises", +"Locoalo-Mendonnaises", +"locution-phrase", +"locutions-phrases", +"Loèche-les-Bains", +"Loèche-Ville", +"loemmer-geyer", +"lœmmer-geyer", +"loemmer-geyers", +"lœmmer-geyers", +"Loenen-Kronenburg", +"logan-berry", +"logan-berrys", +"Loge-Fougereuse", +"logiciel-socle", +"Logny-Bogny", +"Logny-lès-Aubenton", +"Logny-lès-Chaumont", +"Logonna-Daoulas", +"Logonna-Quimerch", +"logo-syllabique", +"logo-syllabiques", +"Logrian-et-Comiac-de-Florian", +"Logrian-Florian", +"Loguivy-lès-Lannion", +"Loguivy-Plougras", +"Lohe-Föhrden", +"Lohe-Rickelshof", +"Lohitzun-Oyhercq", +"Lohn-Ammannsegg", +"loi-cadre", +"loi-écran", +"Loigné-sur-Mayenne", +"Loigny-la-Bataille", +"loi-programme", +"Loire-Atlantique", +"Loire-Authion", +"Loire-Inférieure", +"Loire-les-Marais", +"Loiré-sur-Nie", +"Loire-sur-Rhône", +"Loir-et-Cher", +"Loiron-Ruillé", +"lois-cadre", +"lois-écrans", +"Loisey-Culey", +"Loison-sous-Lens", +"Loison-sur-Créquoise", +"lois-programme", +"Loisy-en-Brie", +"Loisy-sur-Marne", +"Loitsche-Heinrichsberg", +"Lombeek-Notre-Dame", +"lombo-costal", +"lombo-costo-trachélien", +"lombo-dorso-trachélien", +"lombo-huméral", +"lombo-sacré", +"lombri-composta", +"lombri-compostai", +"lombri-compostaient", +"lombri-compostais", +"lombri-compostait", +"lombri-compostâmes", +"lombri-compostant", +"lombri-compostas", +"lombri-compostasse", +"lombri-compostassent", +"lombri-compostasses", +"lombri-compostassiez", +"lombri-compostassions", +"lombri-compostât", +"lombri-compostâtes", +"lombri-composte", +"lombri-composté", +"lombri-compostée", +"lombri-compostées", +"lombri-compostent", +"lombri-composter", +"lombri-compostera", +"lombri-composterai", +"lombri-composteraient", +"lombri-composterais", +"lombri-composterait", +"lombri-composteras", +"lombri-compostèrent", +"lombri-composterez", +"lombri-composteriez", +"lombri-composterions", +"lombri-composterons", +"lombri-composteront", +"lombri-compostes", +"lombri-compostés", +"lombri-compostez", +"lombri-compostiez", +"lombri-compostions", +"lombri-compostons", +"Lomont-sur-Crête", +"lompénie-serpent", +"Lona-Lases", +"Longchamp-sous-Châtenois", +"Longchamps-sur-Aire", +"Longchamp-sur-Aujon", +"long-courrier", +"long-courriers", +"Longeau-Percey", +"Longecourt-en-Plaine", +"Longecourt-lès-Culêtre", +"Longevelle-lès-Russey", +"Longevelle-sur-Doubs", +"Longeville-en-Barrois", +"Longeville-lès-Metz", +"Longeville-lès-Saint-Avold", +"Longevilles-Mont-d'Or", +"Longeville-sur-la-Laines", +"Longeville-sur-Mer", +"Longeville-sur-Mogne", +"long-grain", +"long-jointé", +"long-jointée", +"long-métrage", +"Longny-au-Perche", +"Longny-les-Villages", +"Longpont-sur-Orge", +"Longpré-les-Corps-Saints", +"Longpré-le-Sec", +"longs-courriers", +"longs-métrages", +"long-temps", +"long-tems", +"longue-épine", +"Longueil-Annel", +"Longueil-Sainte-Marie", +"Longué-Jumelles", +"longue-langue", +"Longuenée-en-Anjou", +"Longue-Rivois", +"longues-épines", +"longues-langues", +"Longues-sur-Mer", +"longues-vues", +"Longueval-Barbonval", +"Longueville-sur-Aube", +"Longueville-sur-Scie", +"longue-vue", +"Longwé-l'Abbaye", +"Longwy-sur-le-Doubs", +"Lonlay-l'Abbaye", +"Lonlay-le-Tesson", +"Lons-le-Saunier", +"Loon-Plage", +"Loos-en-Gohelle", +"loqu'du", +"loqu'due", +"loqu'dues", +"loqu'dus", +"lord-lieutenance", +"lord-lieutenances", +"lord-lieutenant", +"lord-lieutenants", +"lord-maire", +"Lo-Reninge", +"Loreto-di-Casinca", +"Loreto-di-Tallano", +"Loriol-du-Comtat", +"Loriol-sur-Drôme", +"Lorp-Sentaraille", +"Lorrez-le-Bocage-Préaux", +"Lorry-lès-Metz", +"Lorry-Mardigny", +"Loscouët-sur-Meu", +"Louan-Villegruis-Fontaine", +"Loubens-Lauragais", +"Loubès-Bernac", +"Louchy-Montfand", +"Louette-Saint-Denis", +"Louette-Saint-Pierre", +"Lougé-sur-Maire", +"louise-bonne", +"louises-bonnes", +"Loulans-les-Forges", +"Loulans-Verchamp", +"loup-cerve", +"loup-cervier", +"loup-garou", +"Loupiac-de-la-Réole", +"Loup-Maëlle", +"Louppy-le-Château", +"Louppy-sur-Chée", +"Louppy-sur-Loison", +"loups-cerves", +"loups-cerviers", +"loups-garous", +"Lourdios-Ichère", +"lourd-léger", +"Lourdoueix-Saint-Michel", +"Lourdoueix-Saint-Pierre", +"lourds-légers", +"Loures-Barousse", +"Louresse-Rochemenier", +"Lourouer-Saint-Laurent", +"Louroux-Bourbonnais", +"Louroux-de-Beaune", +"Louroux-de-Bouble", +"Louroux-Hodement", +"lourouzien-bourbonnais", +"Lourouzien-Bourbonnais", +"lourouzienne-bourbonnaise", +"Lourouzienne-Bourbonnaise", +"lourouziennes-bourbonnaises", +"Lourouziennes-Bourbonnaises", +"lourouziens-bourbonnais", +"Lourouziens-Bourbonnais", +"Lourties-Monbrun", +"Loussous-Débat", +"Louvain-la-Neuve", +"louve-garelle", +"louve-garolle", +"louve-garou", +"Louvemont-Côte-du-Poivre", +"louves-garelles", +"louves-garolles", +"louves-garous", +"louveteau-garou", +"louveteaux-garous", +"Louvie-Juzon", +"Louvières-en-Auge", +"Louvie-Soubiron", +"louvie-soubironnais", +"Louvie-Soubironnais", +"louvie-soubironnaise", +"Louvie-Soubironnaise", +"louvie-soubironnaises", +"Louvie-Soubironnaises", +"Louvigné-de-Bais", +"Louvigné-du-Désert", +"Louvignies-Bavay", +"Louvignies-Quesnoy", +"Louville-la-Chenard", +"Louvilliers-en-Drouais", +"Louvilliers-lès-Perche", +"Louzac-Saint-André", +"love-in", +"low-cost", +"low-costs", +"low-tech", +"Loye-sur-Arnon", +"Lozoyuela-Navas-Sieteiglesias", +"Lubret-Saint-Luc", +"Luby-Betmont", +"Luc-Armau", +"Luçay-le-Libre", +"Luçay-le-Mâle", +"Lucbardez-et-Bargues", +"Lucenay-le-Duc", +"Lucenay-lès-Aix", +"Lucenay-l'Evêque", +"Lucenay-l'Évêque", +"Luc-en-Diois", +"Lucé-sous-Ballon", +"Luché-Pringé", +"Luché-sur-Brioux", +"Luché-Thouarsais", +"Lüchow-Dannenberg", +"Luc-la-Primaube", +"Lucq-de-Béarn", +"Luc-sur-Aude", +"Luc-sur-Mer", +"Luc-sur-Orbieu", +"Lucy-le-Bocage", +"Lucy-le-Bois", +"Lucy-sur-Cure", +"Lucy-sur-Yonne", +"ludo-éducatif", +"Ludon-Médoc", +"ludo-sportif", +"ludo-sportifs", +"ludo-sportive", +"ludo-sportives", +"Lué-en-Baugeois", +"Lugaut-Retjons", +"Lugny-Bourbonnais", +"Lugny-Champagne", +"Lugny-lès-Charolles", +"Lugo-di-Nazza", +"Lugon-et-l'Île-du-Carnay", +"Luhe-Wildenau", +"lui-même", +"lumen-seconde", +"lumens-secondes", +"Luméville-en-Ornois", +"Lumigny-Nesles-Ormeaux", +"Lunel-Viel", +"luni-solaire", +"luni-solaires", +"Lunow-Stolzenhagen", +"Lupiñén-Ortilla", +"Luppé-Violles", +"Lurbe-Saint-Christau", +"Lurcy-le-Bourg", +"Lurcy-Lévis", +"Lurcy-Lévy", +"Lury-sur-Arnon", +"Lusignan-Grand", +"Lusignan-Petit", +"Lusigny-sur-Barse", +"Lusigny-sur-Ouche", +"Lus-la-Croix-Haute", +"Lussac-les-Châteaux", +"Lussac-les-Eglises", +"Lussac-les-Églises", +"Lussagnet-Lusson", +"Lussan-Adeilhac", +"Lussas-et-Nontronneau", +"Lussault-sur-Loire", +"Lussery-Villars", +"Lussy-sur-Morges", +"Lüterkofen-Ichertswil", +"Lüterswil-Gächliwil", +"Luthenay-Uxeloup", +"Łutselk'e", +"Luttenbach-près-Munster", +"Lüttow-Valluhn", +"Lutz-en-Dunois", +"Luxémont-et-Villotte", +"Luxe-Sumberraute", +"Luxeuil-les-Bains", +"Luz-Saint-Sauveur", +"Luzy-Saint-Martin", +"Luzy-sur-Marne", +"Ly-Fontaine", +"Lyons-la-Forêt", +"lyro-guitare", +"Lys-Haut-Layon", +"Lys-lez-Lannoy", +"Lys-Saint-Georges", +"Maarke-Kerkem", +"Maast-et-Violaine", +"mac-adamisa", +"mac-adamisai", +"mac-adamisaient", +"mac-adamisais", +"mac-adamisait", +"mac-adamisâmes", +"mac-adamisant", +"mac-adamisas", +"mac-adamisasse", +"mac-adamisassent", +"mac-adamisasses", +"mac-adamisassiez", +"mac-adamisassions", +"mac-adamisât", +"mac-adamisâtes", +"mac-adamise", +"mac-adamisé", +"mac-adamisée", +"mac-adamisées", +"mac-adamisent", +"mac-adamiser", +"mac-adamisera", +"mac-adamiserai", +"mac-adamiseraient", +"mac-adamiserais", +"mac-adamiserait", +"mac-adamiseras", +"mac-adamisèrent", +"mac-adamiserez", +"mac-adamiseriez", +"mac-adamiserions", +"mac-adamiserons", +"mac-adamiseront", +"mac-adamises", +"mac-adamisés", +"mac-adamisez", +"mac-adamisiez", +"mac-adamisions", +"mac-adamisons", +"Macédoine-Centrale", +"Macédoine-Occidentale", +"Macédoine-Orientale-et-Thrace", +"mac-ferlane", +"mac-ferlanes", +"mâche-bouchons", +"Machecoul-Saint-Même", +"mâche-dru", +"mâche-laurier", +"machin-chose", +"machin-choses", +"machin-chouette", +"machine-outil", +"machines-outils", +"machins-chouettes", +"machon-gorgeon", +"mac-kintosh", +"mac-kintoshs", +"Mâcot-la-Plagne", +"ma'di", +"Madlitz-Wilmersdorf", +"Madonne-et-Lamerey", +"maël-carhaisien", +"Maël-Carhaisien", +"maël-carhaisienne", +"Maël-Carhaisienne", +"maël-carhaisiennes", +"Maël-Carhaisiennes", +"maël-carhaisiens", +"Maël-Carhaisiens", +"Maël-Carhaix", +"Maël-Pestivien", +"Maen-Roch", +"Mae-West", +"Mae-Wests", +"magasin-pilote", +"magasins-pilotes", +"Magnac-Bourg", +"Magnac-Laval", +"Magnac-Lavalette-Villars", +"Magnac-sur-Touvre", +"Magnat-l'Etrange", +"Magnat-l'Étrange", +"magnésio-anthophyllite", +"magnésio-anthophyllites", +"magnésio-axinite", +"magnésio-axinites", +"magnésio-calcite", +"magnésio-calcites", +"magnéto-électrique", +"magnéto-électriques", +"magnéto-optique", +"magnéto-optiques", +"Magneux-Haute-Rive", +"Magnicourt-en-Comte", +"Magnicourt-sur-Canche", +"Magny-Châtelard", +"Magny-Cours", +"Magny-Danigon", +"Magny-en-Bessin", +"Magny-en-Vexin", +"Magny-Fouchard", +"Magny-Jobert", +"Magny-la-Campagne", +"Magny-la-Fosse", +"Magny-Lambert", +"Magny-la-Ville", +"Magny-le-Désert", +"Magny-le-Freule", +"Magny-le-Hongre", +"Magny-lès-Aubigny", +"Magny-les-Hameaux", +"Magny-lès-Jussey", +"Magny-lès-Villers", +"Magny-Lormes", +"Magny-Montarlot", +"Magny-Saint-Médard", +"Magny-sur-Tille", +"Magny-Vernois", +"Magstatt-le-Bas", +"Magstatt-le-Haut", +"mahi-mahi", +"mah-jong", +"mah-jongs", +"Maignaut-Tauzia", +"Maignelay-Montigny", +"mail-coach", +"Mailhac-sur-Benaize", +"Mailleroncourt-Charette", +"Mailleroncourt-Saint-Pancras", +"Mailley-et-Chazelot", +"mailly-castellois", +"Mailly-Castellois", +"mailly-castelloise", +"Mailly-Castelloise", +"mailly-castelloises", +"Mailly-Castelloises", +"Mailly-Champagne", +"Mailly-la-Ville", +"Mailly-le-Camp", +"Mailly-le-Château", +"Mailly-Maillet", +"Mailly-Raineval", +"Mailly-sur-Seille", +"main-brune", +"main-courante", +"Maincourt-sur-Yvette", +"main-d'oeuvre", +"main-d'œuvre", +"maine-anjou", +"Maine-de-Boixe", +"Maine-et-Loire", +"main-forte", +"Main-Kinzig", +"main-militaire", +"mains-courantes", +"mains-d'oeuvre", +"mains-d'œuvre", +"Main-Spessart", +"Main-Tauber", +"Main-Taunus", +"maire-adjoint", +"Mairé-Levescault", +"maires-adjoints", +"Mairy-Mainville", +"Mairy-sur-Marne", +"Maisdon-sur-Sèvre", +"Maisey-le-Duc", +"Maisières-Notre-Dame", +"Maisnil-lès-Ruitz", +"Maison-Blanche", +"Maisoncelle-et-Villers", +"Maisoncelle-Saint-Pierre", +"Maisoncelles-du-Maine", +"Maisoncelles-en-Brie", +"Maisoncelles-en-Gâtinais", +"Maisoncelles-la-Jourdan", +"Maisoncelles-Pelvey", +"Maisoncelles-sur-Ajon", +"Maisoncelle-Tuilerie", +"Maison-des-Champs", +"Maison-Feyne", +"Maison-Maugis", +"maison-mère", +"Maisonnais-sur-Tardoire", +"Maison-Ponthieu", +"Maison-Roland", +"Maison-Rouge", +"Maisons-Alfort", +"Maisons-du-Bois-Lièvremont", +"Maisons-en-Champagne", +"Maisons-Laffitte", +"Maisons-lès-Chaource", +"Maisons-lès-Soulaines", +"maisons-mères", +"maître-assistant", +"maitre-autel", +"maître-autel", +"maître-bau", +"maitre-chanteur", +"maître-chanteur", +"maître-chanteuse", +"maitre-chien", +"maître-chien", +"maître-cylindre", +"maître-jacques", +"maître-mot", +"maitre-nageur", +"maître-nageur", +"maitre-nageuse", +"maître-nageuse", +"maîtres-assistants", +"maîtres-autels", +"maîtres-chanteurs", +"maîtres-chanteuses", +"maitres-chiens", +"maîtres-chiens", +"maîtres-cylindres", +"maîtres-jacques", +"maîtres-mots", +"maitres-nageurs", +"maîtres-nageurs", +"maitres-nageuses", +"maîtres-nageuses", +"maîtresse-femme", +"maitresse-nageuse", +"maîtresse-nageuse", +"maîtresses-femmes", +"maitresses-nageuses", +"maîtresses-nageuses", +"Maizières-la-Grande-Paroisse", +"Maizières-lès-Brienne", +"Maizières-lès-Metz", +"Maizières-lès-Vic", +"Maizières-sur-Amance", +"ma-jong", +"ma-jongs", +"make-up", +"make-ups", +"making-of", +"makura-e", +"makura-es", +"mal-aimé", +"mal-aimée", +"mal-aimés", +"Malaincourt-sur-Meuse", +"Malancourt-la-Montagne", +"Malarce-sur-la-Thines", +"Malaucourt-sur-Seille", +"Malay-le-Grand", +"Malay-le-Petit", +"malayo-polynésien", +"malayo-polynésienne", +"malayo-polynésiennes", +"malayo-polynésiens", +"Malayo-Polynésiens", +"mal-baisé", +"mal-baisée", +"mal-baisées", +"mal-baisés", +"Malborghetto-Valbruna", +"mal-comprenant", +"mal-comprenants", +"malécite-passamaquoddy", +"mal-égal", +"Malemort-du-Comtat", +"Malemort-sur-Corrèze", +"mal-en-point", +"mâles-stériles", +"mâle-stérile", +"mâle-stériles", +"mal-être", +"mal-êtres", +"Malèves-Sainte-Marie-Wastines", +"malgré-nous", +"Malherbe-sur-Ajon", +"Malicorne-sur-Sarthe", +"Malines-sur-Meuse", +"mal-information", +"mal-informations", +"mal-jugé", +"mal-jugés", +"Mallefougasse-Augès", +"malle-poste", +"Malleret-Boussac", +"Mallersdorf-Pfaffenberg", +"Malleval-en-Vercors", +"Malleville-les-Grès", +"Malleville-sur-le-Bec", +"mal-logement", +"mal-logements", +"Malo-les-Bains", +"Malons-et-Elze", +"mal-peigné", +"Mal-Peigné", +"mal-peignée", +"Mal-Peignée", +"mal-pensans", +"mal-pensant", +"mal-pensante", +"mal-pensantes", +"mal-pensants", +"Malsburg-Marzell", +"mals-peignées", +"Mals-Peignées", +"mals-peignés", +"Mals-Peignés", +"mal-venant", +"mal-venants", +"Malves-en-Minervois", +"mal-voyant", +"mal-voyants", +"m'amie", +"mamie-boomeuse", +"mamie-boomeuses", +"mam'selle", +"mam'selles", +"mamy-boomeuse", +"mamy-boomeuses", +"mam'zelle", +"mam'zelles", +"Manas-Bastanous", +"man-bun", +"man-buns", +"Mancenans-Lizerne", +"manche-à-balle", +"manche-à-balles", +"manco-liste", +"manco-listes", +"Mandailles-Saint-Julien", +"mandant-dépendant", +"mandat-carte", +"mandat-cash", +"mandat-lettre", +"mandat-poste", +"mandats-cartes", +"mandats-cash", +"mandats-lettres", +"mandats-poste", +"Mandelieu-la-Napoule", +"Mandeville-en-Bessin", +"Mandres-aux-Quatre-Tours", +"Mandres-en-Barrois", +"Mandres-la-Côte", +"Mandres-les-Roses", +"Mandres-sur-Vair", +"Manent-Montané", +"manganico-potassique", +"mangano-ankérite", +"mangano-ankérites", +"mangano-phlogopite", +"mangano-phlogopites", +"manganoso-ammonique", +"mange-Canayen", +"mange-debout", +"mange-disque", +"mange-disques", +"mange-merde", +"mange-piles", +"mange-tout", +"Mango-Rosa", +"maniaco-dépressif", +"maniaco-dépressifs", +"maniaco-dépressive", +"maniaco-dépressives", +"Maninghen-Henne", +"Manneken-pis", +"Manneville-ès-Plains", +"Manneville-la-Goupil", +"Manneville-la-Pipard", +"Manneville-la-Raoult", +"Manneville-sur-Risle", +"Mannweiler-Cölln", +"Manoncourt-en-Vermois", +"Manoncourt-en-Woëvre", +"Manoncourt-sur-Seille", +"Mansat-la-Courrière", +"Mansfeld-Harz-du-Sud", +"Mantenay-Montlin", +"Mantes-Gassicourt", +"Mantes-la-Jolie", +"Mantes-la-Ville", +"Manzac-sur-Vern", +"mappe-monde", +"mappes-mondes", +"Marainville-sur-Madon", +"Marais-Vernier", +"Marange-Silvange", +"Marange-Zondrange", +"Marat-sur-Aisne", +"Maraye-en-Othe", +"Marbourg-Biedenkopf", +"Marcellaz-Albanais", +"Marcé-sur-Esves", +"Marcey-les-Grèves", +"Marchais-Beton", +"Marchais-Béton", +"Marchais-en-Brie", +"Marché-Allouarde", +"Marche-en-Famenne", +"marché-gare", +"marché-gares", +"Marche-les-Dames", +"Marche-lez-Écaussinnes", +"marche-palier", +"Marchéville-en-Woëvre", +"Marchienne-au-Pont", +"Marchiennes-Campagne", +"Marcigny-sous-Thil", +"Marcilhac-sur-Célé", +"Marcillac-la-Croisille", +"Marcillac-la-Croze", +"Marcillac-Lanville", +"Marcillac-Saint-Quentin", +"Marcillac-Vallon", +"Marcillat-en-Combraille", +"Marcillé-la-Ville", +"Marcillé-Raoul", +"Marcillé-Robert", +"Marcilly-d'Azergues", +"Marcilly-en-Bassigny", +"Marcilly-en-Beauce", +"Marcilly-en-Gault", +"Marcilly-en-Villette", +"Marcilly-et-Dracy", +"Marcilly-la-Campagne", +"Marcilly-la-Gueurce", +"Marcilly-le-Châtel", +"Marcilly-le-Hayer", +"Marcilly-le-Pavé", +"Marcilly-lès-Buxy", +"Marcilly-lès-Vitteaux", +"Marcilly-Ogny", +"Marcilly-sur-Eure", +"Marcilly-sur-Maulne", +"Marcilly-sur-Seine", +"Marcilly-sur-Tille", +"Marcilly-sur-Vienne", +"Marc-la-Tour", +"Marcols-les-Eaux", +"marco-lucanien", +"marco-lucanienne", +"marco-lucaniennes", +"marco-lucaniens", +"Marcq-en-Barœul", +"Marcq-en-Ostrevent", +"Marcq-et-Chevières", +"Marcy-l'Etoile", +"Marcy-l'Étoile", +"Marcy-sous-Marle", +"Mareau-aux-Bois", +"Mareau-aux-Prés", +"maréchal-ferrant", +"maréchaux-ferrans", +"maréchaux-ferrants", +"Mareil-en-Champagne", +"Mareil-en-France", +"Mareil-le-Guyon", +"Mareil-Marly", +"Mareil-sur-Loir", +"Mareil-sur-Mauldre", +"Maren-Kessel", +"Maresquel-Ecquemicourt", +"Marest-Dampcourt", +"Marest-sur-Matz", +"Mareuil-Caubert", +"Mareuil-en-Brie", +"Mareuil-en-Dôle", +"Mareuil-la-Motte", +"Mareuil-le-Port", +"Mareuil-lès-Meaux", +"Mareuil-sur-Arnon", +"Mareuil-sur-Ay", +"Mareuil-sur-Cher", +"Mareuil-sur-Lay", +"Mareuil-sur-Lay-Dissais", +"Mareuil-sur-Ourcq", +"Marey-lès-Fussey", +"Marey-sur-Tille", +"margarino-sulfurique", +"Margaux-Cantenac", +"Margerie-Chantagret", +"Margerie-Hancourt", +"margis-chef", +"margis-chefs", +"Margny-aux-Cerises", +"Margny-lès-Compiègne", +"Margny-sur-Matz", +"Margouët-Meymes", +"mariage-sacrement", +"Maria-Hoop", +"Marie-Ange", +"Marie-Antoinette", +"Marie-blanque", +"marie-chantal", +"Marie-Chantal", +"marie-chantalerie", +"marie-chantaleries", +"Marie-Christine", +"Marie-Claire", +"Marie-Claude", +"marie-couche-toi-là", +"Marie-couche-toi-là", +"Marie-Crochet", +"Marie-Élise", +"Marie-Ève", +"Marie-France", +"Marie-Françoise", +"marie-galante", +"Marie-Galante", +"marie-galantes", +"Marie-Gisèle", +"Marie-Hélène", +"marie-jeanne", +"marie-jeannes", +"Marie-José", +"Marie-Laure", +"marie-louise", +"Marie-Louise", +"marie-louises", +"Marie-Madeleine", +"Marie-Marc", +"marie-monastérien", +"Marie-Monastérien", +"marie-monastérienne", +"Marie-Monastérienne", +"marie-monastériennes", +"Marie-Monastériennes", +"marie-monastériens", +"Marie-Monastériens", +"marie-montois", +"Marie-Montois", +"marie-montoise", +"Marie-Montoise", +"marie-montoises", +"Marie-Montoises", +"Marie-Noëlle", +"Marie-Paule", +"Marie-Pier", +"Marie-Pierre", +"marie-salope", +"maries-salopes", +"Marie-Thérèse", +"marie-trintigner", +"Marignac-en-Diois", +"Marignac-Lasclares", +"Marignac-Laspeyres", +"Marigna-sur-Valouse", +"Marigné-Laillé", +"Marigné-Peuton", +"Marigny-Brizay", +"Marigny-Chemereau", +"Marigny-en-Orxois", +"Marigny-le-Cahouët", +"Marigny-le-Châtel", +"Marigny-l'Eglise", +"Marigny-l'Église", +"Marigny-Le-Lozon", +"Marigny-lès-Reullée", +"Marigny-les-Usages", +"Marigny-Marmande", +"Marigny-Saint-Marcel", +"Marigny-sur-Yonne", +"Marillac-le-Franc", +"Marimont-lès-Bénestroff", +"Maring-Noviand", +"marin-pêcheur", +"marins-pêcheurs", +"Marizy-Sainte-Geneviève", +"Marizy-Saint-Mard", +"marka-dafing", +"Markina-Xemein", +"Marles-en-Brie", +"Marles-les-Mines", +"Marles-sur-Canche", +"Marly-Gomont", +"Marly-la-Ville", +"Marly-le-Roi", +"Marly-sous-Issy", +"Marly-sur-Arroux", +"Marmont-Pachas", +"Marnay-sur-Marne", +"Marnay-sur-Seine", +"Marnes-la-Coquette", +"Marnhagues-et-Latour", +"marno-bitumineux", +"marno-calcaire", +"marno-calcaires", +"Marolles-en-Beauce", +"Marolles-en-Brie", +"Marolles-en-Hurepoix", +"Marolles-lès-Bailly", +"Marolles-les-Braults", +"Marolles-les-Buis", +"Marolles-lès-Saint-Calais", +"Marolles-sous-Lignières", +"Marolles-sur-Seine", +"Marqueny-au-Vallage", +"marque-ombrelle", +"marque-page", +"marque-pagé", +"marque-pagea", +"marque-pageai", +"marque-pageaient", +"marque-pageais", +"marque-pageait", +"marque-pageâmes", +"marque-pageant", +"marque-pageas", +"marque-pageasse", +"marque-pageassent", +"marque-pageasses", +"marque-pageassiez", +"marque-pageassions", +"marque-pageât", +"marque-pageâtes", +"marque-pagée", +"marque-pagées", +"marque-pagent", +"marque-pageons", +"marque-pager", +"marque-pagera", +"marque-pagerai", +"marque-pageraient", +"marque-pagerais", +"marque-pagerait", +"marque-pageras", +"marque-pagèrent", +"marque-pagerez", +"marque-pageriez", +"marque-pagerions", +"marque-pagerons", +"marque-pageront", +"marque-pages", +"marque-pagés", +"marque-pagez", +"marque-pagiez", +"marque-pagions", +"marque-produit", +"marque-produits", +"marques-ombrelles", +"Marquette-en-Ostrevant", +"Marquette-lez-Lille", +"Marsac-en-Livradois", +"Marsac-sur-Don", +"Marsac-sur-l'Isle", +"Marsais-Sainte-Radégonde", +"Marsannay-la-Côte", +"Marsannay-le-Bois", +"Marseille-en-Beauvaisis", +"Marseille-lès-Aubigny", +"Marseilles-lès-Aubigny", +"Mars-la-Tour", +"Marson-sur-Barboure", +"Marssac-sur-Tarn", +"Mars-sous-Bourcq", +"Mars-sur-Allier", +"Martailly-lès-Brancion", +"Martainville-Epreville", +"Martainville-Épreville", +"marteau-de-mer", +"marteau-pilon", +"marteau-piqueur", +"marteaux-pilons", +"marteaux-piqueurs", +"marte-piquant", +"marte-piquants", +"Martignas-sur-Jalle", +"Martigné-Briand", +"Martigné-Ferchaud", +"Martigné-sur-Mayenne", +"Martigny-Combe", +"Martigny-Courpierre", +"Martigny-le-Comte", +"Martigny-les-Bains", +"Martigny-les-Gerbonvaux", +"Martigny-sur-l'Ante", +"martin-bâton", +"Martin-bâton", +"martin-bâtons", +"Martin-bâtons", +"martin-chasseur", +"Martincourt-sur-Meuse", +"Martin-Eglise", +"Martin-Église", +"martin-pêcheur", +"martins-chasseurs", +"martin-sec", +"martin-sire", +"martins-pêcheurs", +"martins-sires", +"martins-sucrés", +"martin-sucré", +"Martouzin-Neuville", +"Martres-d'Artières", +"Martres-de-Rivière", +"Martres-sur-Morge", +"Martres-Tolosane", +"martres-zibelines", +"martre-zibeline", +"Maruéjols-lès-Gardon", +"Maruri-Jatabe", +"Marvaux-Vieux", +"Marville-les-Bois", +"Marville-Moutiers-Brûlé", +"marxisme-léninisme", +"marxiste-léniniste", +"marxistes-léninistes", +"Mary-sur-Marne", +"m'as", +"masa'il", +"masa'ils", +"Masbaraud-Mérignat", +"Mas-Blanc", +"Mas-Blanc-des-Alpilles", +"Mas-Cabardès", +"Mascaraàs-Haron", +"mas-chélyen", +"Mas-Chélyen", +"mas-chélyenne", +"Mas-Chélyenne", +"mas-chélyennes", +"Mas-Chélyennes", +"mas-chélyens", +"Mas-Chélyens", +"Mas-d'Auvignon", +"Mas-de-Londres", +"Mas-des-Cours", +"Mas-d'Orcières", +"Masevaux-Niederbruck", +"Mas-Grenier", +"Masnuy-Saint-Jean", +"Masnuy-Saint-Pierre", +"Maspie-Lalonquère-Juillacq", +"Massa-Carrara", +"Massac-Séran", +"Mas-Saint-Chély", +"Mas-Saintes-Puelles", +"Massen-Niederlausitz", +"masseur-kinésithérapeute", +"masseurs-kinésithérapeutes", +"masseuse-kinésithérapeute", +"masseuses-kinésithérapeutes", +"Massignieu-de-Rives", +"Massillargues-Attuech", +"Massingy-lès-Semur", +"Massingy-lès-Vitteaux", +"mass-média", +"mass-médias", +"mas-tençois", +"Mas-Tençois", +"mas-tençoise", +"Mas-Tençoise", +"mas-tençoises", +"Mas-Tençoises", +"m'as-tu-vu", +"m'as-tu-vue", +"m'as-tu-vues", +"m'as-tu-vus", +"Matafelon-Granges", +"Matagne-la-Grande", +"Matagne-la-Petite", +"materno-infantile", +"materno-infantiles", +"mathématico-informatique", +"mathématico-informatiques", +"Matignicourt-Goncourt", +"matthéo-lucanien", +"matthéo-lucanienne", +"matthéo-lucaniennes", +"matthéo-lucaniens", +"Matton-et-Clémency", +"Matzlow-Garwitz", +"Maubert-Fontaine", +"Maucourt-sur-Orne", +"Maudétour-en-Vexin", +"Mauges-sur-Loire", +"Mauléon-Barousse", +"Mauléon-d'Armagnac", +"Mauléon-Licharre", +"Maulévrier-Sainte-Gertrude", +"Maumusson-Laguian", +"Maupertus-sur-Mer", +"Maure-de-Bretagne", +"Mauregny-en-Haye", +"Maureilhan-et-Raméjean", +"Maureillas-las-Illas", +"Maurens-Scopont", +"mauritano-marocain", +"mauritano-sénégalais", +"Maurupt-le-Montois", +"Maussane-les-Alpilles", +"Mauves-sur-Huisne", +"Mauves-sur-Loire", +"Mauvezin-d'Armagnac", +"Mauvezin-de-Prat", +"Mauvezin-de-Sainte-Croix", +"Mauvezin-sur-Gupie", +"Mauzac-et-Grand-Castang", +"Mauzens-et-Miremont", +"Mauzé-sur-le-Mignon", +"Mauzé-Thouarsais", +"Mavilly-Mandelot", +"Mawashi-geri", +"Maxey-sur-Meuse", +"Maxey-sur-Vaise", +"Maxhütte-Haidhof", +"maxillo-dentaire", +"maxillo-facial", +"maxillo-labial", +"maxillo-musculaire", +"Maxilly-sur-Léman", +"Maxilly-sur-Saône", +"Mayence-Bingen", +"Mayen-Coblence", +"May-en-Multien", +"Mayres-Savel", +"Mayrinhac-Lentour", +"May-sur-Orne", +"Mazan-l'Abbaye", +"Mazé-Milon", +"Mazerat-Aurouze", +"Mazères-de-Neste", +"Mazères-Lezons", +"Mazères-sur-Salat", +"Mazerolles-du-Razès", +"Mazerolles-le-Salin", +"Mazet-Saint-Voy", +"Mazeyrat-Aurouze", +"Mazeyrat-d'Allier", +"Mazières-de-Touraine", +"Mazières-en-Gâtine", +"Mazières-en-Mauges", +"Mazières-Naresse", +"Mazières-sur-Béronne", +"Mbanza-Ngungu", +"m'bororo", +"McDonald's", +"m-commerce", +"m'demma", +"mea-culpa", +"meâ-culpâ", +"Meaulne-Vitray", +"Meaux-la-Montagne", +"Mechelen-aan-de-Maas", +"Mecklembourg-du-Nord-Ouest", +"Mecklembourg-Poméranie-Occidentale", +"Mecklembourg-Strelitz", +"mécoprop-P", +"médecine-ball", +"médecine-balls", +"médiévale-fantastique", +"médiévales-fantastiques", +"médiéval-fantastique", +"médiévaux-fantastiques", +"Medina-Sidonia", +"médio-dorsal", +"médio-européen", +"médio-européenne", +"médio-européennes", +"médio-européens", +"médio-jurassique", +"médio-jurassiques", +"médio-latin", +"médio-latine", +"médio-latines", +"médio-latins", +"médio-océanique", +"médio-océaniques", +"méduse-boite", +"méduse-boîte", +"méduses-boites", +"méduses-boîtes", +"Meensel-Kiezegem", +"Meerlo-Wanssum", +"Meeuwen-Gruitrode", +"méfenpyr-diéthyl", +"méga-ampère", +"méga-ampères", +"méga-église", +"méga-églises", +"méga-électron-volt", +"mégaélectron-volt", +"méga-électron-volts", +"mégaélectron-volts", +"méga-herbivore", +"méga-herbivores", +"mégalo-martyr", +"mégalo-martyrs", +"méga-océan", +"méga-océans", +"méga-ohm", +"méga-ohms", +"mégléno-roumain", +"Mehun-sur-Yèvre", +"Meigné-le-Vicomte", +"Meilhan-sur-Garonne", +"Meillier-Fontaine", +"Meilly-sur-Rouvres", +"Meix-devant-Virton", +"Meix-le-Tige", +"Méjannes-le-Clap", +"Méjannes-lès-Alès", +"mêlé-cass", +"mêlé-casse", +"mêlé-casses", +"mêlé-cassis", +"mele-fila", +"mêle-tout", +"Méligny-le-Grand", +"Méligny-le-Petit", +"méli-mélo", +"mêli-mêlo", +"mélis-mélos", +"mêlis-mêlos", +"Mellenbach-Glasbach", +"Melleray-la-Vallée", +"Melun-Sénart", +"Melz-sur-Seine", +"membrano-calcaire", +"Ménestérol-Montignac", +"Ménestreau-en-Villette", +"Menetou-Couture", +"Menetou-Râtel", +"Menetou-Salon", +"Menetou-sur-Nahon", +"Ménétréol-sous-Sancerre", +"Ménétréols-sous-Vatan", +"Ménétréol-sur-Sauldre", +"Ménétreux-le-Pitois", +"Menétru-le-Vignoble", +"Menétrux-en-Joux", +"m'enfin", +"Mengersgereuth-Hämmern", +"Ménil-Annelles", +"ménil-annellois", +"Ménil-Annellois", +"ménil-annelloise", +"Ménil-Annelloise", +"ménil-annelloises", +"Ménil-Annelloises", +"Ménil-aux-Bois", +"Ménil-de-Senones", +"Ménil-en-Xaintois", +"Ménil-Erreux", +"Ménil-Froger", +"Ménil-Gondouin", +"ménil-gondoyen", +"Ménil-Gondoyen", +"ménil-gondoyenne", +"Ménil-Gondoyenne", +"ménil-gondoyennes", +"Ménil-Gondoyennes", +"ménil-gondoyens", +"Ménil-Gondoyens", +"Ménil-Hermei", +"Ménil-Hubert-en-Exmes", +"Ménil-Hubert-sur-Orne", +"Ménil-Jean", +"Ménil-la-Horgne", +"Ménil-la-Tour", +"Ménil-Lépinois", +"Ménil'muche", +"Ménil-sur-Belvitte", +"Ménil-sur-Saulx", +"Ménil-Vin", +"méningo-encéphalite", +"méningo-gastrique", +"méningo-gastriques", +"Mennetou-sur-Cher", +"menthe-coq", +"Menthonnex-en-Bornes", +"Menthonnex-sous-Clermont", +"Menthon-Saint-Bernard", +"Mentque-Nortbécourt", +"menuisier-moulurier", +"Méolans-Revel", +"Méounes-lès-Montrieux", +"mépiquat-chlorure", +"Merbes-le-Château", +"Merbes-Sainte-Marie", +"Mercey-le-Grand", +"Mercey-sur-Saône", +"Mercin-et-Vaux", +"Merck-Saint-Liévin", +"Mercurol-Veaunes", +"mercuroso-mercurique", +"Mercury-Gémilly", +"Mercus-Garrabet", +"Mercy-le-Bas", +"Mercy-le-Haut", +"mère-grand", +"Mérens-les-Vals", +"mères-grand", +"Mérey-sous-Montrond", +"Mérey-Vieilley", +"Méricourt-en-Vimeu", +"Méricourt-l'Abbé", +"Méricourt-sur-Somme", +"mérier-blanc", +"mériers-blancs", +"Mérindol-les-Oliviers", +"merisier-pays", +"merisiers-pays", +"Merkers-Kieselbach", +"Merkwiller-Pechelbronn", +"Merle-Leignec", +"Merles-sur-Loison", +"Merlieux-et-Fouquerolles", +"Meroux-Moval", +"Merrey-sur-Arce", +"Merry-la-Vallée", +"Merry-Sec", +"Merry-sur-Yonne", +"Mers-les-Bains", +"Mers-sur-Indre", +"Merville-au-Bois", +"Merville-Franceville-Plage", +"Méry-Bissières-en-Auge", +"Méry-Corbon", +"Méry-ès-Bois", +"Méry-la-Bataille", +"Méry-Prémecy", +"Méry-sur-Cher", +"Méry-sur-Marne", +"Méry-sur-Oise", +"Méry-sur-Seine", +"Merzig-Wadern", +"Mesbrecourt-Richecourt", +"Meschers-sur-Gironde", +"Meslay-du-Maine", +"Meslay-le-Grenet", +"Meslay-le-Vidame", +"Meslin-l'Évêque", +"Mesnard-la-Barotière", +"Mesnières-en-Bray", +"Mesnils-sur-Iton", +"méso-américain", +"méso-américaine", +"méso-américaines", +"méso-américains", +"Méso-Amérique", +"méso-diastolique", +"méso-diastoliques", +"méso-hygrophile", +"méso-hygrophiles", +"mésosulfuron-méthyl-sodium", +"méso-systolique", +"méso-systoliques", +"Messey-sur-Grosne", +"Messia-sur-Sorne", +"Messigny-et-Vantoux", +"Messimy-sur-Saône", +"Mesves-sur-Loire", +"métacarpo-phalangien", +"Métairies-Saint-Quirin", +"métalaxyl-M", +"métam-sodium", +"métaphysico-théologo-cosmolo-nigologie", +"métaphysico-théologo-cosmolo-nigologies", +"métatarso-phalangien", +"météo-dépendant", +"météo-dépendante", +"météo-dépendantes", +"météo-dépendants", +"méthyl-buténol", +"métirame-zinc", +"mètre-ruban", +"mètres-ruban", +"métro-boulot-dodo", +"mets-en", +"Metz-Campagne", +"Metz-en-Couture", +"Metzerlen-Mariastein", +"Metz-le-Comte", +"Metz-Robert", +"metz-tesseran", +"Metz-Tesseran", +"metz-tesseranne", +"Metz-Tesseranne", +"metz-tesserannes", +"Metz-Tesserannes", +"metz-tesserans", +"Metz-Tesserans", +"Metz-Tessy", +"Metz-Ville", +"Meulan-en-Yvelines", +"Meunet-Planches", +"Meunet-sur-Vatan", +"Meung-sur-Loire", +"meurt-de-faim", +"meurt-de-soif", +"Meurthe-et-Moselle", +"meurt-la-faim", +"Meuselbach-Schwarzmühle", +"meuse-rhin-yssel", +"Mévergnies-lez-Lens", +"Meyrieu-les-Etangs", +"Meyrieu-les-Étangs", +"Meyrieux-Trouet", +"Meyrignac-l'Eglise", +"Meyrignac-l'Église", +"Mézidon-Canon", +"Mézières-au-Perche", +"Mézières-en-Brenne", +"Mézières-en-Drouais", +"Mézières-en-Gâtinais", +"Mézières-en-Santerre", +"Mézières-en-Vexin", +"Mézières-lez-Cléry", +"Mézières-sous-Lavardin", +"Mézières-sur-Couesnon", +"Mézières-sur-Issoire", +"Mézières-sur-Oise", +"Mézières-sur-Ponthouin", +"Mézières-sur-Seine", +"Mézy-Moulins", +"Mézy-sur-Seine", +"mezzo-soprano", +"mezzo-sopranos", +"mezzo-termine", +"mezzo-tinto", +"Mezzovico-Vira", +"m'halla", +"m'hallas", +"miam-miam", +"miaou-miaou", +"Michel-Ange", +"michel-angélesque", +"michel-angélesques", +"Michelbach-le-Bas", +"Michelbach-le-Haut", +"microélectron-volt", +"microélectron-volts", +"Midden-Delfland", +"Midden-Drenthe", +"Midden-Eierland", +"midi-chlorien", +"midi-chloriens", +"midi-pelle", +"midi-pelles", +"midi-pyrénéen", +"Midi-Pyrénéen", +"Midi-Pyrénéens", +"Midi-Pyrénées", +"Midsland-Noord", +"Mielen-boven-Aalst", +"Mierlo-Hout", +"mieux-disant", +"mieux-disante", +"mieux-disantes", +"mieux-disants", +"mieux-être", +"Mignaloux-Beauvoir", +"Migné-Auxances", +"Milhac-d'Auberoche", +"Milhac-de-Nontron", +"militaro-bureaucratique", +"militaro-bureaucratiques", +"militaro-industriel", +"militaro-industrielle", +"militaro-industrielles", +"militaro-industriels", +"Milizac-Guipronvel", +"milk-bar", +"milk-bars", +"milk-shake", +"milk-shakes", +"mille-au-godet", +"mille-canton", +"mille-feuille", +"mille-feuilles", +"mille-fleurs", +"Mille-Islois", +"Millencourt-en-Ponthieu", +"mille-pattes", +"mille-pertuis", +"mille-pieds", +"mille-points", +"milliampère-heure", +"milliampères-heures", +"milli-électron-volt", +"milliélectron-volt", +"milli-électron-volts", +"milliélectron-volts", +"Millienhagen-Oebelitz", +"Millingen-sur-Rhin", +"milli-ohm", +"milli-ohms", +"Milly-la-Forêt", +"Milly-Lamartine", +"Milly-sur-Bradon", +"Milly-sur-Thérain", +"Milon-la-Chapelle", +"mime-acrobate", +"Minaucourt-le-Mesnil-lès-Hurlus", +"Minden-Lübbecke", +"Minho-Lima", +"Miniac-Morvan", +"Miniac-sous-Bécherel", +"Minihy-Tréguier", +"ministre-présidence", +"ministre-présidences", +"ministre-président", +"ministres-présidents", +"Min-jun", +"minn'gotain", +"Minn'Gotain", +"minn'gotaine", +"Minn'Gotaine", +"minn'gotaines", +"Minn'Gotaines", +"minn'gotains", +"Minn'Gotains", +"Min-seo", +"minus-habens", +"minute-lumière", +"minutes-lumière", +"Miossens-Lanusse", +"Miquelon-Langlade", +"Mirabel-aux-Baronnies", +"Mirabel-et-Blacons", +"Miramont-d'Astarac", +"Miramont-de-Comminges", +"Miramont-de-Guyenne", +"Miramont-de-Quercy", +"Miramont-Latour", +"Miramont-Sensacq", +"Mirandol-Bourgnounac", +"Miraval-Cabardes", +"Mirebeau-sur-Bèze", +"mire-oeuf", +"mire-œuf", +"mire-oeufs", +"mire-œufs", +"Mirepoix-sur-Tarn", +"Mireval-Lauragais", +"Miribel-Lanchâtre", +"Miribel-les-Echelles", +"Miribel-les-Échelles", +"miro-miro", +"Miserey-Salines", +"Misery-Courtion", +"Missen-Wilhams", +"Missy-aux-Bois", +"Missy-lès-Pierrepont", +"Missy-sur-Aisne", +"Misy-sur-Yonne", +"Mitry-Mory", +"Mittainvilliers-Vérigny", +"mixed-border", +"mixti-unibinaire", +"m'kahla", +"m'kahlas", +"mobil-home", +"mobil-homes", +"Moca-Croce", +"modèle-vue-contrôleur", +"modern-style", +"Moëlan-sur-Mer", +"Mœurs-Verdey", +"Moffans-et-Vacheresse", +"mofu-gudur", +"Moidieu-Détourbe", +"Moigny-sur-Ecole", +"Moigny-sur-École", +"moi-même", +"moins-disant", +"moins-disants", +"moins-que-rien", +"moins-value", +"moins-values", +"Moinville-la-Jeulin", +"Moirans-en-Montagne", +"Moirey-Flabas-Crépion", +"Moisdon-la-Rivière", +"mois-homme", +"mois-hommes", +"mois-lumière", +"Moissac-Bellevue", +"Moissac-Vallée-Française", +"Moissieu-sur-Dolon", +"moissonner-battre", +"moissonneuse-batteuse", +"moissonneuse-lieuse", +"moissonneuses-batteuses", +"moissonneuses-lieuses", +"Moissy-Cramayel", +"Moissy-Moulinot", +"moite-moite", +"moitié-moitié", +"Moitron-sur-Sarthe", +"mojeño-ignaciano", +"mojeño-javierano", +"mojeño-loretano", +"mojeño-trinitario", +"Molenbeek-Saint-Jean", +"Molenbeek-Wersbeek", +"Molières-Cavaillac", +"Molières-Glandaz", +"Molières-sur-Cèze", +"Molières-sur-l'Alberte", +"Moliets-et-Maa", +"Molines-en-Queyras", +"Molins-sur-Aube", +"Molitg-les-Bains", +"Mollans-sur-Ouvèze", +"Molliens-au-Bois", +"Molliens-Dreuil", +"mollo-mollo", +"moment-clé", +"moment-clés", +"moments-clés", +"Monacia-d'Aullène", +"Monacia-d'Orezza", +"Monassut-Audiracq", +"Moncayolle-Larrory-Mendibieu", +"Monceau-en-Ardenne", +"Monceau-Imbrechies", +"Monceau-le-Neuf-et-Faucouzy", +"Monceau-lès-Leups", +"Monceau-le-Waast", +"Monceau-Saint-Waast", +"Monceau-sur-Oise", +"Monceau-sur-Sambre", +"Monceaux-au-Perche", +"Monceaux-en-Bessin", +"Monceaux-l'Abbaye", +"Monceaux-le-Comte", +"Monceaux-sur-Dordogne", +"Moncé-en-Belin", +"Moncé-en-Saosnois", +"Moncel-lès-Lunéville", +"Moncel-sur-Seille", +"Moncel-sur-Vair", +"Moncetz-l'Abbaye", +"Moncetz-Longevas", +"Monchaux-Soreng", +"Monchaux-sur-Ecaillon", +"Monchaux-sur-Écaillon", +"Moncheaux-lès-Frévent", +"Monchel-sur-Canche", +"Mönchpfiffel-Nikolausrieth", +"Monchy-au-Bois", +"Monchy-Breton", +"Monchy-Cayeux", +"Monchy-Humières", +"Monchy-Lagache", +"Monchy-le-Preux", +"Monchy-Saint-Eloi", +"Monchy-Saint-Éloi", +"Monchy-sur-Eu", +"Monclar-de-Quercy", +"Monclar-sur-Losse", +"Moncorneil-Grazan", +"Mondariz-Balneario", +"Mondement-Montgivroux", +"Mondonville-Saint-Jean", +"Mondorf-les-Bains", +"Monestier-d'Ambel", +"Monestier-de-Clermont", +"Monestier-Merlines", +"Monestier-Port-Dieu", +"Monétay-sur-Allier", +"Monétay-sur-Loire", +"Monêtier-Allemont", +"Monferran-Plavès", +"Monferran-Savès", +"Monflorite-Lascasas", +"Mongolie-intérieure", +"Monguelfo-Tesido", +"Monistrol-d'Allier", +"Monistrol-sur-Loire", +"Monlaur-Bernet", +"Monléon-Magnoac", +"Monlezun-d'Armagnac", +"monnaie-du-pape", +"Monnetier-Mornex", +"Monnet-la-Ville", +"Monsempron-Libos", +"monsieur-dame", +"Monsteroux-Milieu", +"Montacher-Villegardin", +"Montagnac-d'Auberoche", +"Montagnac-la-Crempse", +"Montagnac-Montpezat", +"Montagnac-sur-Auvignon", +"Montagnac-sur-Lède", +"Montagna-le-Reconduit", +"Montagna-le-Templier", +"Montagne-Fayel", +"Montagney-Servigney", +"Montagny-en-Vexin", +"Montagny-lès-Beaune", +"Montagny-lès-Buxy", +"Montagny-les-Lanches", +"Montagny-lès-Seurre", +"Montagny-près-Louhans", +"Montagny-près-Yverdon", +"Montagny-Sainte-Félicité", +"Montagny-sur-Grosne", +"Montaignac-Saint-Hippolyte", +"Montaigu-de-Quercy", +"Montaiguët-en-Forez", +"Montaigu-la-Brisette", +"Montaigu-le-Blin", +"Montaigu-les-Bois", +"Montaigut-le-Blanc", +"Montaigut-sur-Save", +"Montaigu-Zichem", +"Montalba-d'Amélie", +"Montalba-le-Château", +"Montalet-le-Bois", +"Montalieu-Vercieu", +"Montambert-Tannay", +"Montaren-et-Saint-Médiers", +"Montarlot-lès-Champlitte", +"Montarlot-lès-Rioz", +"Montastruc-de-Salies", +"Montastruc-la-Conseillère", +"Montastruc-Savès", +"Montauban-de-Bretagne", +"Montauban-de-Luchon", +"Montauban-de-Picardie", +"Montauban-sur-l'Ouvèze", +"Montaut-les-Créneaux", +"Montbonnot-Saint-Martin", +"Montboucher-sur-Jabron", +"Montbrison-sur-Lez", +"Montbrun-Bocage", +"Montbrun-des-Corbières", +"Montbrun-Lauragais", +"Montbrun-les-Bains", +"Montceau-et-Echarnant", +"Montceau-et-Écharnant", +"Montceau-les-Mines", +"Montceaux-lès-Meaux", +"Montceaux-lès-Provins", +"Montceaux-lès-Vaudes", +"Montceaux-l'Etoile", +"Montceaux-l'Étoile", +"Montceaux-Ragny", +"Montchanin-les-Mines", +"Montclar-de-Comminges", +"Montclar-Lauragais", +"Montclar-sur-Gervanne", +"Montcombroux-les-Mines", +"Montcornet-en-Ardenne", +"Montcourt-Fromonville", +"Montcuq-en-Quercy-Blanc", +"Montcy-Notre-Dame", +"Montcy-Saint-Pierre", +"monte-au-ciel", +"Monte-Carlo", +"monte-charge", +"monte-charges", +"monte-courroie", +"monte-courroies", +"monte-en-l'air", +"monte-escalier", +"monte-escaliers", +"Montégut-Arros", +"Montégut-Bourjac", +"Montégut-en-Couserans", +"Montégut-Lauragais", +"Montégut-Plantaurel", +"Montégut-Savès", +"Monteignet-sur-l'Andelot", +"monte-jus", +"monte-lait", +"Montel-de-Gelat", +"monte-meuble", +"monte-meubles", +"Montemor-o-Novo", +"Montemor-o-Velho", +"monte-pente", +"monte-pentes", +"monte-plat", +"monte-plats", +"Montereau-Fault-Yonne", +"Montereau-faut-Yonne", +"Montereau-sur-le-Jard", +"Montescourt-Lizerolles", +"Montesquieu-Avantès", +"Montesquieu-des-Albères", +"Montesquieu-Guittaut", +"Montesquieu-Lauragais", +"Montesquieu-Volvestre", +"Montestruc-sur-Gers", +"Montet-et-Bouxal", +"Montfaucon-d'Argonne", +"Montfaucon-en-Velay", +"Montfaucon-Montigné", +"Montferrand-du-Périgord", +"Montferrand-la-Fare", +"Montferrand-le-Château", +"Montferrier-sur-Lez", +"Montfort-en-Chalosse", +"Montfort-l'Amaury", +"Montfort-le-Gesnois", +"Montfort-le-Rotrou", +"Montfort-sur-Argens", +"Montfort-sur-Boulzane", +"Montfort-sur-Meu", +"Montfort-sur-Risle", +"Montgaillard-de-Salies", +"Montgaillard-Lauragais", +"Montgaillard-sur-Save", +"Montgé-en-Goële", +"Montgru-Saint-Hilaire", +"Monthou-sur-Bièvre", +"Monthou-sur-Cher", +"Monthureux-le-Sec", +"Monthureux-sur-Saône", +"monti-corcellois", +"Monti-Corcellois", +"monti-corcelloise", +"Monti-Corcelloise", +"monti-corcelloises", +"Monti-Corcelloises", +"Montier-en-Der", +"Montier-en-l'Isle", +"Montiers-sur-Saulx", +"Monties-Aussos", +"Montignac-Charente", +"Montignac-de-Lauzun", +"Montignac-le-Coq", +"Montignac-Toupinerie", +"Montigné-le-Brillant", +"Montigné-lès-Rairies", +"Montigné-sur-Moine", +"Montignies-lez-Lens", +"Montignies-Saint-Christophe", +"Montignies-sur-Roc", +"Montignies-sur-Sambre", +"Montigny-aux-Amognes", +"Montigny-devant-Sassey", +"Montigny-en-Arrouaise", +"Montigny-en-Cambrésis", +"Montigny-en-Gohelle", +"Montigny-en-Morvan", +"Montigny-en-Ostrevent", +"Montigny-l'Allier", +"Montigny-la-Resle", +"Montigny-le-Bretonneux", +"Montigny-le-Chartif", +"Montigny-le-Franc", +"Montigny-le-Gannelon", +"Montigny-le-Guesdier", +"Montigny-Lencoup", +"Montigny-Lengrain", +"Montigny-lès-Arsures", +"Montigny-lès-Cherlieu", +"Montigny-lès-Condé", +"Montigny-lès-Cormeilles", +"Montigny-les-Jongleurs", +"Montigny-lès-Metz", +"Montigny-les-Monts", +"Montigny-lès-Vaucouleurs", +"Montigny-lès-Vesoul", +"Montigny-le-Teigneux", +"Montigny-le-Tilleul", +"Montigny-Montfort", +"Montigny-Mornay-Villeneuve-sur-Vingeanne", +"Montigny-Saint-Barthélemy", +"Montigny-sous-Marle", +"Montigny-sur-Armançon", +"Montigny-sur-Aube", +"Montigny-sur-Avre", +"Montigny-sur-Canne", +"Montigny-sur-Chiers", +"Montigny-sur-Crécy", +"Montigny-sur-l'Ain", +"Montigny-sur-l'Hallue", +"Montigny-sur-Loing", +"Montigny-sur-Meuse", +"Montigny-sur-Vence", +"Montigny-sur-Vesle", +"Montilly-sur-Noireau", +"montis-fagussin", +"Montis-Fagussin", +"montis-fagussine", +"Montis-Fagussine", +"montis-fagussines", +"Montis-Fagussines", +"montis-fagussins", +"Montis-Fagussins", +"Montjean-sur-Loire", +"Montjoie-en-Couserans", +"Montjoie-le-Château", +"Montjoie-Saint-Martin", +"Montjustin-et-Velotte", +"Montlaur-en-Diois", +"Montlay-en-Auxois", +"Montlieu-la-Garde", +"Montliot-et-Courcelles", +"Montlouis-sur-Loire", +"Montmartin-en-Graignes", +"Montmartin-le-Haut", +"Montmartin-sur-Mer", +"Montmaur-en-Diois", +"Montmelas-Saint-Sorlin", +"Montmerle-sur-Saône", +"Montmirey-la-Ville", +"Montmirey-le-Château", +"Montmoreau-Saint-Cybard", +"Montmorency-Beaufort", +"Montmort-Lucy", +"Montoir-de-Bretagne", +"Montoire-sur-le-Loir", +"Montois-la-Montagne", +"Montot-sur-Rognon", +"Montoulieu-Saint-Bernard", +"Montoy-Flanville", +"Montpellier-de-Médillan", +"Montpezat-de-Quercy", +"Montpezat-sous-Bauzon", +"Montpon-Ménestérol", +"Montpont-en-Bresse", +"Montréal-la-Cluse", +"Montréal-les-Sources", +"montréalo-centrisme", +"montre-bracelet", +"montre-chronomètre", +"Montredon-des-Corbières", +"Montredon-Labessonnié", +"montres-bracelets", +"montres-chronomètres", +"Montreuil-au-Houlme", +"Montreuil-aux-Lions", +"Montreuil-Bellay", +"Montreuil-Bonnin", +"Montreuil-des-Landes", +"Montreuil-en-Auge", +"Montreuil-en-Caux", +"Montreuil-en-Touraine", +"Montreuil-Juigné", +"Montreuil-la-Cambe", +"Montreuil-l'Argillé", +"Montreuil-le-Chétif", +"Montreuil-le-Gast", +"Montreuil-le-Henri", +"Montreuil-Poulay", +"Montreuil-sous-Bois", +"Montreuil-sous-Pérouse", +"Montreuil-sur-Barse", +"Montreuil-sur-Blaise", +"Montreuil-sur-Brêche", +"Montreuil-sur-Epte", +"Montreuil-sur-Ille", +"Montreuil-sur-Loir", +"Montreuil-sur-Lozon", +"Montreuil-sur-Maine", +"Montreuil-sur-Thérain", +"Montreuil-sur-Thonnance", +"Montreux-Château", +"Montreux-Jeune", +"Montreux-Vieux", +"Montrevault-sur-Èvre", +"Montrevel-en-Bresse", +"Montrichard-Val-de-Cher", +"Montricher-Albanne", +"Montrieux-en-Sologne", +"Montrœul-au-Bois", +"Montrœul-sur-Haine", +"Montrol-Sénard", +"Montrond-le-Château", +"Montrond-les-Bains", +"Montsauche-les-Settons", +"Montsecret-Clairefougère", +"Montségur-sur-Lauzon", +"Montsinéry-Tonnegrande", +"Montureux-et-Prantigny", +"Montureux-lès-Baulay", +"Montval-sur-Loir", +"Moon-sur-Elle", +"Moorea-Maiao", +"Moor-Rolofshagen", +"moque-dieu", +"Morainville-Jouveaux", +"Morainville-près-Lieurey", +"Morannes-sur-Sarthe", +"Moras-en-Valloire", +"mords-cheval", +"Mörel-Filet", +"Morêtel-de-Mailles", +"Moret-sur-Loing", +"Morey-Saint-Denis", +"Mörfelden-Walldorf", +"Morgenröthe-Rautenkranz", +"Morgny-en-Thiérache", +"Morgny-la-Pommeraye", +"Morières-lès-Avignon", +"Morigny-Champigny", +"Möriken-Wildegg", +"Morlanwelz-Mariemont", +"Morlhon-le-Haut", +"Mormant-sur-Vernisson", +"Mornac-sur-Seudre", +"Mornand-en-Forez", +"Mornay-Berry", +"Mornay-sur-Allier", +"Morne-à-l'Eau", +"morphine-base", +"Morsang-sur-Orge", +"Morsang-sur-Seine", +"Morsbronn-les-Bains", +"Morschwiller-le-Bas", +"Mortagne-au-Perche", +"Mortagne-du-Nord", +"Mortagne-sur-Gironde", +"Mortagne-sur-Sèvre", +"Mortain-Bocage", +"mort-aux-rats", +"mort-bois", +"mort-chien", +"mort-de-chien", +"mort-dieu", +"Morteaux-Couliboeuf", +"Morteaux-Coulibœuf", +"morte-eau", +"Mortefontaine-en-Thelle", +"morte-paye", +"morte-payes", +"Morterolles-sur-Semme", +"morte-saison", +"mortes-eaux", +"Mortes-Frontières", +"mortes-payes", +"mortes-saisons", +"mortes-vivantes", +"morte-vivante", +"mort-né", +"mort-née", +"mort-nées", +"mort-nés", +"mort-plain", +"mort-plains", +"morts-bois", +"morts-chiens", +"morts-flats", +"morts-terrains", +"morts-vivants", +"mort-terrain", +"mort-vivant", +"Morville-en-Beauce", +"Morville-lès-Vic", +"Morvillers-Saint-Saturnin", +"Morville-sur-Andelle", +"Morville-sur-Nied", +"Morville-sur-Seille", +"Mory-Montcrux", +"moteur-fusée", +"moteurs-fusées", +"Motey-Besuche", +"Motey-sur-Saône", +"moto-cross", +"moto-crotte", +"moto-crottes", +"moto-école", +"moto-écoles", +"moto-réducteur", +"moto-réducteurs", +"Mouans-Sartoux", +"mouche-araignée", +"mouche-sans-raison", +"mouche-scorpion", +"mouches-sans-raison", +"mouches-scorpions", +"Mouchy-le-Châtel", +"Mougon-Thorigné", +"mouille-bouche", +"Mouilleron-en-Pareds", +"Mouilleron-le-Captif", +"Mouilleron-Saint-Germain", +"moule-bite", +"moule-burnes", +"moule-fesses", +"moules-burnes", +"Moulès-et-Baucels", +"Moulézan-et-Montagnac", +"Mouliets-et-Villemartin", +"moulin-à-vent", +"Moulin-l'Évêque", +"Moulin-Mage", +"moulin-mageois", +"Moulin-Mageois", +"moulin-mageoise", +"Moulin-Mageoise", +"moulin-mageoises", +"Moulin-Mageoises", +"Moulin-Neuf", +"moulins-à-vent", +"Moulins-Engilbert", +"Moulins-en-Tonnerrois", +"Moulins-la-Marche", +"Moulins-le-Carbonnel", +"Moulins-lès-Metz", +"Moulin-sous-Touvent", +"Moulins-Saint-Hubert", +"Moulins-sous-Fléron", +"Moulins-sur-Céphons", +"Moulins-sur-Orne", +"Moulins-sur-Ouanne", +"Moulins-sur-Yèvre", +"Moulis-en-Médoc", +"Moult-Chicheboville", +"Mounes-Prohencoux", +"Mourioux-Vieilleville", +"Mourmelon-le-Grand", +"Mourmelon-le-Petit", +"Mournans-Charbonny", +"Mouron-sur-Yonne", +"Mours-Saint-Eusèbe", +"Mourvilles-Basses", +"Mourvilles-Hautes", +"Mousseaux-lès-Bray", +"Mousseaux-Neuville", +"Mousseaux-sur-Seine", +"Moussy-le-Neuf", +"Moussy-le-Vieux", +"Moussy-Verneuil", +"Moustier-en-Fagne", +"Moustiers-Sainte-Marie", +"Moustier-Ventadour", +"moustiques-tigres", +"moustique-tigre", +"Moustoir-Ac", +"Moustoir-Remungol", +"Moutaine-Aresches", +"Mouterre-Silly", +"Mouterre-sur-Blourde", +"Mouthier-en-Bresse", +"Mouthier-Haute-Pierre", +"Mouthiers-sur-Boëme", +"Moutier-d'Ahun", +"Moutier-Malcard", +"Moutier-Rozeille", +"Moutiers-au-Perche", +"Moutiers-en-Puisaye", +"Moutiers-les-Mauxfaits", +"Moutiers-Saint-Jean", +"Moutiers-sous-Argenton", +"Moutiers-sous-Chantemerle", +"Moutiers-sur-le-Lay", +"mouton-noirisa", +"mouton-noirisai", +"mouton-noirisaient", +"mouton-noirisais", +"mouton-noirisait", +"mouton-noirisâmes", +"mouton-noirisant", +"mouton-noirisas", +"mouton-noirisasse", +"mouton-noirisassent", +"mouton-noirisasses", +"mouton-noirisassiez", +"mouton-noirisassions", +"mouton-noirisât", +"mouton-noirisâtes", +"mouton-noirise", +"mouton-noirisé", +"mouton-noirisée", +"mouton-noirisées", +"mouton-noirisent", +"mouton-noiriser", +"mouton-noirisera", +"mouton-noiriserai", +"mouton-noiriseraient", +"mouton-noiriserais", +"mouton-noiriserait", +"mouton-noiriseras", +"mouton-noirisèrent", +"mouton-noiriserez", +"mouton-noiriseriez", +"mouton-noiriserions", +"mouton-noiriserons", +"mouton-noiriseront", +"mouton-noirises", +"mouton-noirisés", +"mouton-noirisez", +"mouton-noirisiez", +"mouton-noirisions", +"mouton-noirisons", +"mouve-chaux", +"Moux-en-Morvan", +"Mouy-sur-Seine", +"Mouzeuil-Saint-Martin", +"Mouzieys-Panens", +"Mouzieys-Teulet", +"Moÿ-de-l'Aisne", +"Moyencourt-lès-Poix", +"Moyenne-Franconie", +"moyens-ducs", +"Moyeuvre-Grande", +"Moyeuvre-Petite", +"Mozé-sur-Louet", +"m-paiement", +"m-paiements", +"m'sieur", +"M'Tsangamouji", +"Muad-Dib", +"muco-pus", +"mud-minnow", +"Muespach-le-Haut", +"Muhlbach-sur-Bruche", +"Muhlbach-sur-Munster", +"Mühlhausen-Ehingen", +"Muides-sur-Loire", +"Muille-Villette", +"mule-jenny", +"Mülheim-Kärlich", +"mull-jenny", +"multiplate-forme", +"multiplates-formes", +"mu-métal", +"Mümliswil-Ramiswil", +"Muncq-Nieurlet", +"Muneville-le-Bingard", +"Muneville-sur-Mer", +"Münster-Geschinen", +"Münster-Sarmsheim", +"Murat-le-Quaire", +"Murat-sur-Vèbre", +"Mur-de-Barrez", +"Mûr-de-Bretagne", +"Mur-de-Sologne", +"Muret-et-Crouttes", +"Muret-le-Château", +"murnau-werdenfels", +"mur-rideau", +"Mûrs-Erigné", +"Mûrs-Érigné", +"Murs-et-Gélignieux", +"murs-rideaux", +"Murtin-Bogny", +"Murtin-et-Bogny", +"Murtin-et-le-Châtelet", +"Murviel-lès-Béziers", +"Murviel-lès-Montpellier", +"musculo-cutané", +"musettes-repas", +"music-hall", +"music-hallesque", +"music-hallesques", +"music-halls", +"Mussey-sur-Marne", +"Mussy-la-Fosse", +"Mussy-la-Ville", +"Mussy-sous-Dun", +"Mussy-sur-Seine", +"mu'ugalavyáni", +"n-3", +"N-(4-hydroxyphényl)éthanamide", +"n-6", +"n-9", +"N-acétylcystéine", +"Nachrodt-Wiblingwerde", +"Nadaillac-de-Rouge", +"na-dené", +"na-déné", +"Nagel-Séez-Mesnil", +"Nages-et-Solorgues", +"Nagorno-Karabakh", +"Nagorny-Karabagh", +"Nagorny-Karabakh", +"Nago-Torbole", +"Nahetal-Waldau", +"Nainville-les-Roches", +"n-aire", +"n-aires", +"Naisey-les-Granges", +"Naives-en-Blois", +"Naives-Rosières", +"Naix-aux-Forges", +"name-dropping", +"nam-nam", +"nam-nams", +"Nampcelles-la-Cour", +"Namps-au-Mont", +"Namps-Maisnil", +"Nampteuil-sous-Muret", +"Nanc-lès-Saint-Amour", +"Nançois-le-Grand", +"Nançois-sur-Ornain", +"Nancray-sur-Rimarde", +"Nancy-sur-Cluses", +"Nandin-sur-Aisne", +"nano-ohm", +"nano-ohms", +"Nans-les-Pins", +"Nan-sous-Thil", +"Nans-sous-Sainte-Anne", +"Nanteau-sur-Essonne", +"Nanteau-sur-Lunain", +"Nantes-en-Ratier", +"Nanteuil-Auriac-de-Bourzac", +"Nanteuil-en-Vallée", +"Nanteuil-la-Forêt", +"Nanteuil-la-Fosse", +"Nanteuil-le-Haudouin", +"Nanteuil-lès-Meaux", +"Nanteuil-Notre-Dame", +"Nanteuil-sur-Aisne", +"Nanteuil-sur-Marne", +"Nant-le-Grand", +"Nant-le-Petit", +"naphtoxy-2-acétamide", +"Napoléon-Vendée", +"narco-État", +"narco-États", +"narco-guérilla", +"narco-guérillas", +"narcotico-âcre", +"narco-trafiquant", +"narco-trafiquants", +"naso-génien", +"naso-lobaire", +"naso-lobaires", +"naso-oculaire", +"naso-palatin", +"naso-palpébral", +"naso-sourcilier", +"naso-transversal", +"Nassandres-sur-Risle", +"nat-gadaw", +"nat-gadaws", +"nationale-socialiste", +"nationales-socialistes", +"national-socialisme", +"national-socialiste", +"nationaux-socialistes", +"nat-kadaw", +"nat-kadaws", +"natro-feldspat", +"natro-feldspats", +"natu-majorité", +"Naujac-sur-Mer", +"Naujan-et-Postiac", +"Naussac-Fontanes", +"nautico-estival", +"Navailles-Angos", +"navarro-aragonais", +"navarro-labourdin", +"Nâves-Parmelan", +"navire-citerne", +"navire-école", +"navire-mère", +"navires-citernes", +"navires-écoles", +"navires-mères", +"navire-usine", +"Nay-Bourdettes", +"Nayemont-les-Fosses", +"Nazelles-Négron", +"Naz-Sciaves", +"n-boule", +"n-boules", +"n-butane", +"n-butanes", +"n-butyle", +"n-cube", +"n-cubes", +"N.-D.", +"n'dama", +"n'damas", +"N-déméthyla", +"N-déméthylai", +"N-déméthylaient", +"N-déméthylais", +"N-déméthylait", +"N-déméthylâmes", +"N-déméthylant", +"N-déméthylas", +"N-déméthylasse", +"N-déméthylassent", +"N-déméthylasses", +"N-déméthylassiez", +"N-déméthylassions", +"N-déméthylât", +"N-déméthylâtes", +"N-déméthyle", +"N-déméthylé", +"N-déméthylée", +"N-déméthylées", +"N-déméthylent", +"N-déméthyler", +"N-déméthylera", +"N-déméthylerai", +"N-déméthyleraient", +"N-déméthylerais", +"N-déméthylerait", +"N-déméthyleras", +"N-déméthylèrent", +"N-déméthylerez", +"N-déméthyleriez", +"N-déméthylerions", +"N-déméthylerons", +"N-déméthyleront", +"N-déméthyles", +"N-déméthylés", +"N-déméthylez", +"N-déméthyliez", +"N-déméthylions", +"N-déméthylons", +"n-dimensionnel", +"N'Djamena", +"N'Djaména", +"NDM-1", +"N'dorola", +"Néant-sur-Yvel", +"Neaufles-Auvergny", +"Neaufles-Saint-Martin", +"Neaufles-sur-Risle", +"Neauphe-sous-Essai", +"Neauphe-sur-Dive", +"Neauphle-le-Château", +"Neauphle-le-Vieux", +"Nebra-sur-Unstrut", +"Neckar-Odenwald", +"Neder-Betuwe", +"Neder-Hardinxveld", +"Nederhemert-Noord", +"Nederhemert-Zuid", +"Neder-over-Heembeek", +"Neder-Over-Heembeek", +"Nederweert-Eind", +"Nederzwalm-Hermelgem", +"Neewiller-près-Lauterbourg", +"néfaste-food", +"néfaste-foods", +"nègre-soie", +"nègres-soies", +"negro-spiritual", +"negro-spirituals", +"nègue-chien", +"nègue-fol", +"Nehwiller-près-Wœrth", +"Neige-Côtier", +"Neiße-Malxetal", +"ne-m'oubliez-pas", +"Nempont-Saint-Firmin", +"Nemsdorf-Göhrendorf", +"Néons-sur-Creuse", +"néphro-angiosclérose", +"néphro-angioscléroses", +"néphro-gastrique", +"néphro-urétérectomie", +"néphro-urétérectomies", +"neptuno-plutonien", +"neptuno-plutonienne", +"neptuno-plutoniens", +"nerf-ferrure", +"nerf-férure", +"Néris-les-Bains", +"Néronde-sur-Dore", +"Nerville-la-Forêt", +"Nesle-et-Massoult", +"Nesle-Hodeng", +"Nesle-la-Reposte", +"Nesle-le-Repons", +"Nesle-l'Hôpital", +"Nesle-Normandeuse", +"Nesles-la-Gilberde", +"Nesles-la-Montagne", +"Nesles-la-Vallée", +"net-citoyen", +"net-citoyens", +"N-éthyléthanamine", +"nettoie-pipe", +"Neu-Anspach", +"Neu-Bamberg", +"Neublans-Abergement", +"Neubourg-sur-le-Danube", +"Neuburg-Schrobenhausen", +"Neuchâtel-Urtière", +"Neudorf-Bornstein", +"Neu-Eichenberg", +"Neuendorf-Sachsenbande", +"Neuenkirchen-Vörden", +"Neuf-Berquin", +"neuf-berquinois", +"Neuf-Berquinois", +"neuf-berquinoise", +"Neuf-Berquinoise", +"neuf-berquinoises", +"Neuf-Berquinoises", +"Neuf-Brisach", +"neuf-cents", +"Neufchâtel-en-Bray", +"Neufchâtel-en-Saosnois", +"Neufchâtel-Hardelot", +"Neufchâtel-sur-Aisne", +"Neuf-Eglise", +"Neuf-Église", +"Neuf-Marché", +"Neuf-Mesnil", +"Neufmoutiers-en-Brie", +"Neufvy-sur-Aronde", +"Neugartheim-Ittlenheim", +"Neuhaus-Schierschnitz", +"Neuillay-les-Bois", +"Neuillé-le-Lierre", +"Neuillé-Pont-Pierre", +"Neuilly-en-Donjon", +"Neuilly-en-Dun", +"Neuilly-en-Sancerre", +"Neuilly-en-Thelle", +"Neuilly-en-Vexin", +"Neuilly-la-Forêt", +"Neuilly-le-Bisson", +"Neuilly-le-Brignon", +"Neuilly-le-Dien", +"Neuilly-le-Malherbe", +"Neuilly-le-Réal", +"Neuilly-lès-Dijon", +"Neuilly-le-Vendin", +"Neuilly-l'Evêque", +"Neuilly-l'Évêque", +"Neuilly-l'Hôpital", +"Neuilly-Plaisance", +"Neuilly-Saint-Front", +"Neuilly-sous-Clermont", +"Neuilly-sur-Eure", +"Neuilly-sur-Marne", +"Neuilly-sur-Seine", +"Neuilly-sur-Suize", +"Neu-Isenburg", +"Neukirchen-Balbini", +"Neukirchen-Vluyn", +"Neumagen-Dhron", +"Neu-Moresnet", +"Neung-sur-Beuvron", +"Neunkirchen-lès-Bouzonville", +"Neunkirchen-Seelscheid", +"Neunkirch-lès-Sarreguemines", +"Neurey-en-Vaux", +"Neurey-lès-la-Demie", +"neuro-acoustique", +"neuro-acoustiques", +"neuro-anatomie", +"neuro-anatomies", +"neuro-humoral", +"neuro-humorale", +"neuro-humorales", +"neuro-humoraux", +"neuro-imagerie", +"neuro-imageries", +"neuro-linguistique", +"neuro-linguistiques", +"neuro-musculaire", +"neuro-musculaires", +"neuro-stimulation", +"neuro-végétatif", +"neuro-végétatifs", +"neuro-végétative", +"neuro-végétatives", +"Neusalza-Spremberg", +"Neu-Seeland", +"Neussargues-Moissac", +"Neustadt-Glewe", +"neutro-alcalin", +"Neu-Ulm", +"Neuve-Chapelle", +"neuve-chapellois", +"Neuve-Chapellois", +"neuve-chapelloise", +"Neuve-Chapelloise", +"neuve-chapelloises", +"Neuve-Chapelloises", +"Neuve-Eglise", +"Neuve-Église", +"Neuvéglise-sur-Truyère", +"neuve-grangeais", +"Neuve-Grangeais", +"neuve-grangeaise", +"Neuve-Grangeaise", +"neuve-grangeaises", +"Neuve-Grangeaises", +"Neuvelle-lès-Champlitte", +"Neuvelle-lès-Cromary", +"Neuvelle-lès-Grancey", +"Neuvelle-lès-la-Charité", +"Neuvelle-lès-Voisey", +"Neuve-Maison", +"Neuves-Maisons", +"Neuvic-Entier", +"Neuvicq-le-Château", +"Neuvicq-Montguyon", +"Neuville-au-Bois", +"Neuville-au-Cornet", +"Neuville-au-Plain", +"Neuville-aux-Bois", +"Neuville-Bosc", +"neuville-boscien", +"Neuville-Boscien", +"neuville-boscienne", +"Neuville-Boscienne", +"neuville-bosciennes", +"Neuville-Bosciennes", +"neuville-bosciens", +"Neuville-Bosciens", +"Neuville-Bourjonval", +"Neuville-Coppegueule", +"Neuville-Day", +"Neuville-de-Poitou", +"Neuville-en-Avesnois", +"Neuville-en-Beaumont", +"Neuville-en-Condroz", +"Neuville-en-Ferrain", +"Neuville-en-Verdunois", +"Neuville-Ferrières", +"Neuville-les-Dames", +"Neuville-lès-Decize", +"Neuville-lès-Dieppe", +"Neuville-lès-Lœuilly", +"Neuville-lès-This", +"Neuville-lès-Vaucouleurs", +"Neuville-lez-Beaulieu", +"Neuville-près-Sées", +"Neuviller-la-Roche", +"Neuviller-lès-Badonviller", +"Neuvillers-sur-Fave", +"Neuviller-sur-Moselle", +"Neuville-Saint-Amand", +"Neuville-Saint-Rémy", +"Neuville-Saint-Vaast", +"Neuville-sous-Arzillières", +"Neuville-sous-Montreuil", +"Neuville-sur-Ailette", +"Neuville-sur-Ain", +"Neuville-sur-Authou", +"Neuville-sur-Brenne", +"Neuville-sur-Escaut", +"Neuville-sur-Margival", +"Neuville-sur-Oise", +"Neuville-sur-Ornain", +"Neuville-sur-Saône", +"Neuville-sur-Sarthe", +"Neuville-sur-Seine", +"Neuville-sur-Touques", +"Neuville-sur-Vanne", +"Neuville-sur-Vannes", +"Neuvillette-en-Charnie", +"Neuville-Vitasse", +"Neuvilly-en-Argonne", +"Neuvy-au-Houlme", +"Neuvy-Bouin", +"Neuvy-Deux-Clochers", +"Neuvy-en-Beauce", +"Neuvy-en-Champagne", +"Neuvy-en-Dunois", +"Neuvy-en-Mauges", +"Neuvy-en-Sullias", +"Neuvy-Grandchamp", +"Neuvy-le-Barrois", +"Neuvy-le-Roi", +"Neuvy-Pailloux", +"Neuvy-Saint-Sépulchre", +"Neuvy-Sautour", +"neuvy-sautourien", +"Neuvy-Sautourien", +"neuvy-sautourienne", +"Neuvy-Sautourienne", +"neuvy-sautouriennes", +"Neuvy-Sautouriennes", +"neuvy-sautouriens", +"Neuvy-Sautouriens", +"Neuvy-sur-Barangeon", +"Neuvy-sur-Loire", +"Neuwiller-lès-Saverne", +"Nevi'im", +"Néville-sur-Mer", +"névro-mimosie", +"névro-mimosies", +"Nevy-lès-Dole", +"Nevy-sur-Seille", +"Newcastle-under-Lyme", +"New-Glasgois", +"Newton-in-Makerfield", +"Newton-le-Willows", +"newton-mètre", +"newtons-mètres", +"New-York", +"new-yorkais", +"New-Yorkais", +"new-yorkaise", +"New-Yorkaise", +"new-yorkaises", +"New-Yorkaises", +"new-yorkisa", +"new-yorkisai", +"new-yorkisaient", +"new-yorkisais", +"new-yorkisait", +"new-yorkisâmes", +"new-yorkisant", +"new-yorkisas", +"new-yorkisasse", +"new-yorkisassent", +"new-yorkisasses", +"new-yorkisassiez", +"new-yorkisassions", +"new-yorkisât", +"new-yorkisâtes", +"new-yorkise", +"new-yorkisé", +"new-yorkisée", +"new-yorkisées", +"new-yorkisent", +"new-yorkiser", +"new-yorkisera", +"new-yorkiserai", +"new-yorkiseraient", +"new-yorkiserais", +"new-yorkiserait", +"new-yorkiseras", +"new-yorkisèrent", +"new-yorkiserez", +"new-yorkiseriez", +"new-yorkiserions", +"new-yorkiserons", +"new-yorkiseront", +"new-yorkises", +"new-yorkisés", +"new-yorkisez", +"new-yorkisiez", +"new-yorkisions", +"new-yorkisons", +"nez-en-cœur", +"Nézignan-l'Evêque", +"Nézignan-l'Évêque", +"nez-percé", +"ngaï-ngaï", +"ngaï-ngaïs", +"n-gone", +"n-gones", +"n-gramme", +"n-grammes", +"nian-nian", +"Nicey-sur-Aire", +"niche-crédence", +"nickel-ankérite", +"nickel-ankérites", +"nickel-magnésite", +"nickel-magnésites", +"nickel-skuttérudite", +"nickel-skuttérudites", +"Nicolétain-du-Sud", +"nid-de-poule", +"Niederbronn-les-Bains", +"Nieder-Hilbersheim", +"Nieder-Olm", +"Nieder-Wiesen", +"Niefern-Öschelbronn", +"Niel-bij-As", +"Niel-bij-Sint-Truiden", +"Nielles-lès-Ardres", +"Nielles-lès-Bléquin", +"Nielles-lès-Calais", +"n-ième", +"n-ièmes", +"Nieuil-l'Espoir", +"Nieul-le-Dolent", +"Nieul-lès-Saintes", +"Nieulle-sur-Seudre", +"Nieul-le-Virouil", +"Nieul-sur-l'Autise", +"Nieul-sur-Mer", +"Nieuw-Amsterdam", +"Nieuw-Annerveen", +"Nieuw-Balinge", +"Nieuw-Beerta", +"Nieuw-Beijerland", +"Nieuw-Bergen", +"Nieuw-Buinen", +"Nieuw-Dijk", +"Nieuw-Dordrecht", +"Nieuwer-Amstel", +"Nieuwe-Tonge", +"Nieuw-Ginneken", +"Nieuw-Heeten", +"Nieuw-Helvoet", +"Nieuwkerken-Waas", +"Nieuw-Loosdrecht", +"Nieuw-Milligen", +"Nieuw-Namen", +"Nieuwolda-Oost", +"Nieuw-Reemst", +"Nieuw-Roden", +"Nieuw-Scheemda", +"Nieuw-Schoonebeek", +"Nieuw-Strijen", +"Nieuw-Vennep", +"Nieuw-Vossemeer", +"Nieuw-Weerdinge", +"Nieuw-Wehl", +"Niger-Congo", +"nigéro-congolais", +"night-club", +"night-clubbing", +"night-clubs", +"Nijni-Taguil", +"nilo-saharien", +"nilo-saharienne", +"nilo-sahariennes", +"nilo-sahariens", +"Nil-Saint-Martin", +"Nil-Saint-Vincent", +"Nil-Saint-Vincent-Saint-Martin", +"ni-ni", +"nin-nin", +"Niort-de-Sault", +"Niort-la-Fontaine", +"nippo-américain", +"nippo-américaine", +"nippo-américaines", +"nippo-américains", +"nique-douille", +"nique-douilles", +"Ni-Skutterudites", +"Nissan-lez-Enserune", +"Nister-Möhrendorf", +"Nistos-Haut-et-Bas", +"nitro-cellulose", +"nitro-celluloses", +"nitro-hydrochlorique", +"nitro-hydrochloriques", +"nitrotal-isopropyl", +"niuafo'ou", +"niuafo'ous", +"Nivigne-et-Suran", +"nivo-glaciaire", +"nivo-glaciaires", +"Nivolas-Vermelle", +"Nivollet-Montgriffon", +"nivo-pluvial", +"Nixéville-Blercourt", +"Nizan-Gesse", +"Nizy-le-Comte", +"Nlle-Calédonie", +"Nlle-Écosse", +"Nlle-Zélande", +"N-méthyla", +"N-méthylai", +"N-méthylaient", +"N-méthylais", +"N-méthylait", +"N-méthylâmes", +"N-méthylant", +"N-méthylas", +"N-méthylasse", +"N-méthylassent", +"N-méthylasses", +"N-méthylassiez", +"N-méthylassions", +"N-méthylât", +"N-méthylâtes", +"N-méthyle", +"N-méthylé", +"N-méthylée", +"N-méthylées", +"N-méthylent", +"N-méthyler", +"N-méthylera", +"N-méthylerai", +"N-méthyleraient", +"N-méthylerais", +"N-méthylerait", +"N-méthyleras", +"N-méthylèrent", +"N-méthylerez", +"N-méthyleriez", +"N-méthylerions", +"N-méthylerons", +"N-méthyleront", +"N-méthyles", +"N-méthylés", +"N-méthylez", +"N-méthyliez", +"N-méthylions", +"N-méthylons", +"N,N-dinitronitramide", +"n-octaèdre", +"n-octaèdres", +"Nod-sur-Seine", +"Noël-Cerneux", +"Noé-les-Mallets", +"Noë-les-Mallets", +"nœud-nœud", +"nœuds-nœuds", +"Nœux-lès-Auxi", +"Nœux-les-Mines", +"Nogent-en-Othe", +"Nogent-l'Abbesse", +"Nogent-l'Artaud", +"Nogent-le-Bernard", +"Nogent-le-Phaye", +"Nogent-le-Roi", +"Nogent-le-Rotrou", +"Nogent-le-Sec", +"Nogent-lès-Montbard", +"Nogent-sur-Aube", +"Nogent-sur-Eure", +"Nogent-sur-Loir", +"Nogent-sur-Marne", +"Nogent-sur-Oise", +"Nogent-sur-Seine", +"Nogent-sur-Vernisson", +"Nohant-en-Goût", +"Nohant-en-Graçay", +"Nohant-Vic", +"Noidans-le-Ferroux", +"Noidans-lès-Vesoul", +"Noidant-Chatenoy", +"Noidant-le-Rocheux", +"noie-chien", +"Noirmoutier-en-l'Île", +"Noiron-sous-Gevrey", +"Noiron-sur-Bèze", +"Noiron-sur-Seine", +"noir-pie", +"noir-pioche", +"noir-pioches", +"noir-ployant", +"Noisy-le-Grand", +"Noisy-le-Roi", +"Noisy-le-Sec", +"Noisy-Rudignon", +"noisy-rudignonais", +"Noisy-Rudignonais", +"noisy-rudignonaise", +"Noisy-Rudignonaise", +"noisy-rudignonaises", +"Noisy-Rudignonaises", +"Noisy-sur-Ecole", +"Noisy-sur-École", +"Noisy-sur-Oise", +"Nojals-et-Clotte", +"Nojeon-en-Vexin", +"Nojeon-le-Sec", +"no-kill", +"no-kills", +"noli-me-tangere", +"nonante-cinq", +"nonante-deux", +"nonante-et-un", +"nonante-huit", +"nonante-neuf", +"nonante-quatre", +"nonante-sept", +"nonante-six", +"nonante-trois", +"Nonant-le-Pin", +"Noncourt-sur-le-Rongeant", +"Nonette-Orsonnette", +"Nonsard-Lamarche", +"Nonvilliers-Grandhoux", +"Noorder-Koggenland", +"Noord-Polsbroek", +"Noord-Scharwoude", +"Noord-Sleen", +"Noord-Spierdijk", +"Noord-Stroe", +"Noord-Waddinxveen", +"Noordwijk-Binnen", +"Noordwolde-Zuid", +"no-poo", +"Norges-la-Ville", +"Noron-l'Abbaye", +"Noron-la-Poterie", +"Noroy-le-Bourg", +"Noroy-lès-Jussey", +"Noroy-sur-Ourcq", +"Norrent-Fontes", +"Norrey-en-Auge", +"Norrey-en-Bessin", +"Norroy-le-Sec", +"Norroy-lès-Pont-à-Mousson", +"Norroy-le-Veneur", +"Nörten-Hardenberg", +"Nort-Leulinghem", +"nort-leulinghemois", +"Nort-Leulinghemois", +"nort-leulinghemoise", +"Nort-Leulinghemoise", +"nort-leulinghemoises", +"Nort-Leulinghemoises", +"Nort-sur-Erdre", +"Norwich-terrier", +"Nossage-et-Bénévent", +"Nouaillé-Maupertuis", +"Nouan-le-Fuzelier", +"Nouans-les-Fontaines", +"Nouan-sur-Loire", +"Noues-de-Sienne", +"Nourard-le-Franc", +"nous-même", +"nous-mêmes", +"Nousseviller-lès-Bitche", +"Nousseviller-lès-Puttelange", +"Nousseviller-Saint-Nabor", +"Nouveau-Brunswick", +"Nouveau-Connecticut", +"Nouveau-Continent", +"Nouveau-Cornouaille", +"Nouveau-Cornouailles", +"Nouveau-Cornwall", +"nouveau-gallois", +"Nouveau-Hanovre", +"Nouveau-Léon", +"Nouveau-Mexique", +"Nouveau-Monde", +"nouveau-né", +"nouveau-née", +"nouveau-nées", +"nouveau-nés", +"Nouveau-Norfolk", +"Nouveau-Santander", +"Nouveau-Shetland", +"nouveau-venu", +"nouveaux-nés", +"Nouveaux-Pays-Bas", +"nouveaux-venus", +"Nouvel-Âge", +"nouvel-âgeuse", +"nouvel-âgeuses", +"nouvel-âgeux", +"Nouvelle-Albion", +"Nouvelle-Amsterdam", +"Nouvelle-Andalousie", +"Nouvelle-Angleterre", +"Nouvelle-Aquitaine", +"Nouvelle-Bretagne", +"Nouvelle-Calédonie", +"Nouvelle-Cornouaille", +"Nouvelle-Cornouailles", +"Nouvelle-Cythère", +"Nouvelle-Écosse", +"Nouvelle-Eglise", +"Nouvelle-Église", +"Nouvelle-Espagne", +"Nouvelle-France", +"Nouvelle-Galles", +"Nouvelle-Géorgie", +"Nouvelle-Grenade", +"Nouvelle-Guinée", +"Nouvelle-Hanovre", +"Nouvelle-Hollande", +"Nouvelle-Irlande", +"nouvelle-née", +"Nouvelle-Néerlande", +"Nouvelle-Norfolk", +"Nouvelle-Orléans", +"Nouvelle-Poméranie", +"Nouvelles-Hébrides", +"Nouvelle-Sibérie", +"nouvelles-nées", +"nouvelles-venues", +"nouvelle-venue", +"Nouvelle-Zamble", +"Nouvelle-Zélande", +"Nouvelle-Zemble", +"Nouvion-et-Catillon", +"Nouvion-le-Comte", +"Nouvion-le-Vineux", +"Nouvion-sur-Meuse", +"Nouvron-Vingré", +"Novéant-sur-Moselle", +"Noviant-aux-Prés", +"Noville-les-Bois", +"Noville-sur-Mehaigne", +"Novion-Porcien", +"Novy-Chevrières", +"Noyal-Châtillon-sur-Seiche", +"Noyal-Muzillac", +"Noyal-Pontivy", +"Noyal-sous-Bazouges", +"Noyal-sur-Brutz", +"Noyal-sur-Vilaine", +"Noyant-d'Allier", +"Noyant-de-Touraine", +"Noyant-et-Aconin", +"Noyant-la-Gravoyère", +"Noyant-la-Plaine", +"noyé-d'eau", +"Noyelles-en-Chaussée", +"Noyelles-Godault", +"Noyelles-lès-Humières", +"Noyelles-lès-Seclin", +"Noyelles-lès-Vermelles", +"Noyelles-sous-Bellonne", +"Noyelles-sous-Lens", +"Noyelles-sur-Escaut", +"Noyelles-sur-l'Escaut", +"Noyelles-sur-Mer", +"Noyelles-sur-Sambre", +"Noyelles-sur-Selle", +"Noyelle-Vion", +"Noyen-sur-Sarthe", +"Noyen-sur-Seine", +"Noyers-Auzécourt", +"Noyers-Bocage", +"Noyers-Missy", +"Noyers-Pont-Maugis", +"Noyers-Saint-Martin", +"Noyers-sur-Cher", +"Noyers-sur-Jabron", +"Noyers-Thélonne", +"n-polytope", +"n-polytopes", +"n-simplexe", +"n-simplexes", +"n-sphère", +"n-sphères", +"n'srani", +"N'Tcham", +"Nuaillé-d'Aunis", +"Nuaillé-sur-Boutonne", +"Nueil-les-Aubiers", +"Nueil-sous-Faye", +"Nueil-sous-les-Aubiers", +"Nueil-sur-Layon", +"nue-propriétaire", +"nue-propriété", +"nuer-dinka", +"nues-propriétaires", +"nues-propriétés", +"Nuillé-le-Jalais", +"Nuillé-sur-Ouette", +"Nuillé-sur-Vicoin", +"Nuisement-aux-Bois", +"Nuisement-sur-Coole", +"nuit-deboutiste", +"nuit-deboutistes", +"Nuits-Saint-Georges", +"Nuka-Hiva", +"Nuku-Hiva", +"Nuncq-Hautecôte", +"nuoc-mam", +"nuoc-mâm", +"nu-pied", +"nu-pieds", +"n-uple", +"n-uples", +"n-uplet", +"n-uplets", +"nu-propriétaire", +"Nuret-le-Ferron", +"Nurieux-Volognat", +"nus-propriétaires", +"nu-tête", +"Nuthe-Urstromtal", +"N.-W.", +"Oberdorf-Spachbach", +"Oberehe-Stroheich", +"Ober-Flörsheim", +"Oberhausen-Rheinhausen", +"Ober-Hilbersheim", +"Oberhoffen-lès-Wissembourg", +"Oberhoffen-sur-Moder", +"Oberhonnefeld-Gierend", +"Obermaßfeld-Grimmenthal", +"Obermodern-Zutzendorf", +"Ober-Mörlen", +"Obernheim-Kirchenarnbach", +"Ober-Olm", +"Ober-Ramstadt", +"Oberweiler-Tiefenbach", +"Oberwil-Lieli", +"occipito-atloïdien", +"occipito-atloïdienne", +"occipito-atloïdiennes", +"occipito-atloïdiens", +"occipito-axoïdien", +"occipito-axoïdienne", +"occipito-axoïdiennes", +"occipito-axoïdiens", +"occipito-cotyloïdien", +"occipito-cotyloïdienne", +"occipito-cotyloïdiennes", +"occipito-cotyloïdiens", +"occipito-frontal", +"occipito-méningien", +"occipito-pariétal", +"occipito-pétreuse", +"occipito-pétreuses", +"occipito-pétreux", +"occipito-sacré", +"occipito-sacro-iliaque", +"occitano-roman", +"octante-deux", +"octante-et-un", +"octante-neuf", +"Octeville-l'Avenel", +"Octeville-la-Venelle", +"Octeville-sur-Mer", +"octo-core", +"octo-cores", +"octo-rotor", +"octo-rotors", +"oculo-motricité", +"oculo-motricités", +"oculo-musculaire", +"oculo-musculaires", +"oculo-zygomatique", +"Odeillo-Via", +"O-déméthyla", +"O-déméthylai", +"O-déméthylaient", +"O-déméthylais", +"O-déméthylait", +"O-déméthylâmes", +"O-déméthylant", +"O-déméthylas", +"O-déméthylasse", +"O-déméthylassent", +"O-déméthylasses", +"O-déméthylassiez", +"O-déméthylassions", +"O-déméthylât", +"O-déméthylâtes", +"O-déméthyle", +"O-déméthylé", +"O-déméthylée", +"O-déméthylées", +"O-déméthylent", +"O-déméthyler", +"O-déméthylera", +"O-déméthylerai", +"O-déméthyleraient", +"O-déméthylerais", +"O-déméthylerait", +"O-déméthyleras", +"O-déméthylèrent", +"O-déméthylerez", +"O-déméthyleriez", +"O-déméthylerions", +"O-déméthylerons", +"O-déméthyleront", +"O-déméthyles", +"O-déméthylés", +"O-déméthylez", +"O-déméthyliez", +"O-déméthylions", +"O-déméthylons", +"Oder-Spree", +"O-desvenlafaxine", +"odonto-stomatologie", +"Oebisfelde-Weferlingen", +"oeil-de-boeuf", +"œil-de-bœuf", +"oeil-de-chat", +"œil-de-chat", +"oeil-de-lièvre", +"oeil-de-paon", +"oeil-de-perdrix", +"œil-de-perdrix", +"oeil-de-pie", +"œil-de-pie", +"oeil-de-serpent", +"œil-de-serpent", +"oeil-de-tigre", +"œil-de-tigre", +"oeil-du-soleil", +"œil-du-soleil", +"oeils-de-boeuf", +"œils-de-bœuf", +"oeils-de-chat", +"oeils-de-lièvre", +"oeils-de-paon", +"oeils-de-perdrix", +"oeils-de-pie", +"œils-de-pie", +"oeils-de-serpent", +"œils-de-serpent", +"oeils-de-tigre", +"œils-de-tigre", +"Oer-Erkenschwick", +"oesophago-gastro-duodénoscopie", +"œsophago-gastro-duodénoscopie", +"oesophago-gastro-duodénoscopies", +"œsophago-gastro-duodénoscopies", +"Oestrich-Winkel", +"œuf-coque", +"Œuf-en-Ternois", +"œufs-coque", +"Offenbach-Hundheim", +"Offenbach-sur-le-Main", +"off-market", +"off-shore", +"Ogenne-Camptort", +"Ogeu-les-Bains", +"ogivo-cylindrique", +"Ogooué-Maritime", +"Ogy-Montoy-Flanville", +"ohm-mètre", +"ohms-mètres", +"oie-cygne", +"Oignies-en-Thiérache", +"Oigny-en-Valois", +"Oinville-Saint-Liphard", +"Oinville-sous-Auneau", +"Oinville-sur-Montcient", +"oiseau-chameau", +"oiseau-cloche", +"oiseau-éléphant", +"oiseau-lyre", +"oiseau-mouche", +"oiseau-papillon", +"oiseau-tonnerre", +"oiseau-trompette", +"oiseaux-chameaux", +"oiseaux-cloches", +"oiseaux-lyres", +"oiseaux-mouches", +"oiseaux-papillons", +"oiseaux-tonnerres", +"oiseaux-trompettes", +"Oiselay-et-Grachaux", +"Oisseau-le-Petit", +"Oisy-le-Verger", +"Ojos-Albos", +"Olbia-Tempio", +"Ölbronn-Dürrn", +"old-ice", +"old-ices", +"Oléac-Debat", +"Oléac-Dessus", +"oléo-calcaire", +"oléo-calcaires", +"olé-olé", +"oligo-élément", +"oligo-éléments", +"Olizy-Primat", +"Olizy-sur-Chiers", +"olla-podrida", +"Olloy-sur-Viroin", +"Olmeta-di-Capocorso", +"Olmeta-di-Tuda", +"Olmet-et-Villecun", +"Olmi-Cappella", +"Olonne-sur-Mer", +"Oloron-Sainte-Marie", +"Oloron-Sainte-Marie", +"Ols-et-Rinhodes", +"Olst-Wijhe", +"omaha-ponca", +"omaha-poncas", +"omble-chevalier", +"ombre-chevalier", +"Ombret-Rawsa", +"ombro-thermique", +"ombro-thermiques", +"oméga-3", +"oméga-6", +"oméga-9", +"O-méthyla", +"O-méthylai", +"O-méthylaient", +"O-méthylais", +"O-méthylait", +"O-méthylâmes", +"O-méthylant", +"O-méthylas", +"O-méthylasse", +"O-méthylassent", +"O-méthylasses", +"O-méthylassiez", +"O-méthylassions", +"O-méthylât", +"O-méthylâtes", +"O-méthyle", +"O-méthylé", +"O-méthylée", +"O-méthylées", +"O-méthylent", +"O-méthyler", +"O-méthylera", +"O-méthylerai", +"O-méthyleraient", +"O-méthylerais", +"O-méthylerait", +"O-méthyleras", +"O-méthylèrent", +"O-méthylerez", +"O-méthyleriez", +"O-méthylerions", +"O-méthylerons", +"O-méthyleront", +"O-méthyles", +"O-méthylés", +"O-méthylez", +"O-méthyliez", +"O-méthylions", +"O-méthylons", +"Omonville-la-Petite", +"Omonville-la-Rogue", +"omphalo-mésentérique", +"omphalo-mésentériques", +"omphalo-phlébite", +"omphalo-phlébites", +"Oncy-sur-Ecole", +"Oncy-sur-École", +"on-dit", +"Ondreville-sur-Essonne", +"one-man-show", +"one-shot", +"Onesse-et-Laharie", +"Onesse-Laharie", +"one-step", +"one-steps", +"Onet-le-Château", +"one-woman-show", +"Ons-en-Bray", +"Onze-Lieve-Vrouw-Waver", +"Oost-Barendrecht", +"Oost-Cappel", +"oost-cappelois", +"Oost-Cappelois", +"oost-cappeloise", +"Oost-Cappeloise", +"oost-cappeloises", +"Oost-Cappeloises", +"Ooster-Dalfsen", +"Oosterzee-Buren", +"Oost-Graftdijk", +"Oost-Maarland", +"Oost-Souburg", +"Oost-Vlieland", +"opal-AN", +"open-source", +"open-space", +"open-spaces", +"opéra-comique", +"Opéra-Comique", +"opéras-comiques", +"Ophain-Bois-Seigneur-Isaac", +"Opoul-Périllos", +"opt-in", +"opto-strié", +"opt-out", +"Oradour-Fanais", +"Oradour-Saint-Genest", +"Oradour-sur-Glane", +"Oradour-sur-Vayres", +"orang-outan", +"orang-outang", +"orangs-outangs", +"orangs-outans", +"Oranienbaum-Wörlitz", +"Orbais-l'Abbaye", +"Orbigny-au-Mont", +"Orbigny-au-Val", +"orbito-nasal", +"orbito-palpébral", +"Or-Blanois", +"Orchamps-Vennes", +"Ordan-Larroque", +"Orée-d'Anjou", +"oreille-d'abbé", +"oreille-d'âne", +"oreille-de-lièvre", +"oreille-de-loup", +"oreille-de-mer", +"oreille-de-souris", +"oreille-d'ours", +"oreilles-d'âne", +"oreilles-de-mer", +"oreilles-de-souris", +"oreilles-d'ours", +"organo-calcaire", +"organo-calcaires", +"organo-chloré", +"organo-chlorée", +"organo-chlorées", +"organo-chlorés", +"organo-halogéné", +"organo-halogénée", +"organo-halogénées", +"organo-halogénés", +"organo-phosphoré", +"organo-phosphorée", +"organo-phosphorées", +"organo-phosphorés", +"Orgeans-Blanchefontaine", +"Orgères-en-Beauce", +"Orgères-la-Roche", +"Orgnac-l'Aven", +"Orgnac-sur-Vézère", +"orienté-objet", +"orienteur-marqueur", +"Origny-en-Thiérache", +"Origny-le-Butin", +"Origny-le-Roux", +"Origny-le-Sec", +"Origny-Sainte-Benoite", +"o-ring", +"o-rings", +"Oriol-en-Royans", +"Oris-en-Rattier", +"Orliac-de-Bar", +"Orly-sur-Morin", +"Ormes-et-Ville", +"Ormesson-sur-Marne", +"Ormont-Dessous", +"Ormont-Dessus", +"Ormoy-la-Rivière", +"Ormoy-le-Davien", +"Ormoy-lès-Sexfontaines", +"Ormoy-sur-Aube", +"Ormoy-Villers", +"Ornolac-Ussat-les-Bains", +"Oroz-Betelu", +"Orp-Jauche", +"orp-jauchois", +"Orp-Jauchois", +"Orp-Jauchoise", +"Orp-le-Grand", +"Orry-la-Ville", +"Orsingen-Nenzingen", +"Orsmaal-Gussenhoven", +"or-sol", +"ortho-sympathique", +"ortho-sympathiques", +"Orthoux-Sérignac-Quilhan", +"Orveau-Bellesauve", +"Orvillers-Sorel", +"Orvilliers-Saint-Julien", +"Osann-Monzel", +"Osly-Courtil", +"Os-Marsillon", +"Osmoy-Saint-Valery", +"Osne-le-Val", +"Ossas-Suhare", +"ossau-iraty", +"ossau-iratys", +"Osse-en-Aspe", +"Osselle-Routelle", +"Osserain-Rivareyte", +"Ossétie-du-Nord-Alanie", +"Ossey-les-Trois-Maisons", +"Ossun-ez-Angles", +"Ostabat-Asme", +"ostéo-arthrite", +"ostéo-arthrites", +"Osterholz-Scharmbeck", +"Oster-Ohrstedt", +"Osthausen-Wülfershausen", +"ôte-agrafes", +"oto-rhino", +"oto-rhino-laryngologie", +"oto-rhino-laryngologies", +"oto-rhino-laryngologiste", +"oto-rhino-laryngologistes", +"oto-rhinos", +"Ottendorf-Okrilla", +"Ottignies-Louvain-la-Neuve", +"ouaf-ouaf", +"Oud-Aa", +"Oud-Alblas", +"Oud-Annerveen", +"Oud-Beijerland", +"Oud-Bodegraven", +"Oud-Dijk", +"Oud-Drimmelen", +"Oud-Empel", +"Ouder-Amstel", +"Ouderkerk-sur-l'Amstel", +"Oude-Tonge", +"Oud-Gastel", +"Oud-Heverlee", +"Oud-Kamerik", +"Oud-Leusden", +"Oud-Loosdrecht", +"Oud-Maarsseveen", +"Oud-Reemst", +"Oud-Reeuwijk", +"Oud-Sabbinge", +"Oud-Turnhout", +"Oud-Valkenburg", +"Oud-Vossemeer", +"Oud-Vroenhoven", +"Oud-Wulven", +"Oud-Zuilen", +"ouèche-ouèche", +"ouèches-ouèches", +"Ougney-Douvot", +"oui-da", +"ouï-dire", +"Ouilly-du-Houley", +"Ouilly-le-Basset", +"Ouilly-le-Tesson", +"Ouilly-le-Vicomte", +"oui-non-bof", +"Oui-Oui", +"ouïr-dire", +"Oulan-Bator", +"Oulches-la-Vallée-Foulon", +"Oulchy-la-Ville", +"Oulchy-le-Château", +"Oulens-sous-Échallens", +"ouralo-altaïque", +"ouralo-altaïques", +"Ourcel-Maison", +"Ourches-sur-Meuse", +"Ourdis-Cotdoussan", +"Ourgou-Manega", +"Ourouer-les-Bourdelins", +"Ouroux-en-Morvan", +"Ouroux-sous-le-Bois-Sainte-Marie", +"Ouroux-sur-Saône", +"Oursel-Maison", +"ours-garou", +"ours-garous", +"Ours-Mons", +"Ourville-en-Caux", +"Ousse-et-Suzan", +"Ousse-Suzan", +"Ousson-sur-Loire", +"Oussoy-en-Gâtinais", +"Oust-Marest", +"Ouve-Wirquin", +"ouve-wirquinois", +"Ouve-Wirquinois", +"ouve-wirquinoise", +"Ouve-Wirquinoise", +"ouve-wirquinoises", +"Ouve-Wirquinoises", +"Ouville-l'Abbaye", +"Ouville-la-Bien-Tournée", +"Ouville-la-Rivière", +"Ouvrouer-les-Champs", +"Ouwster-Nijega", +"Ouzilly-Vignolles", +"Ouzouer-des-Champs", +"Ouzouer-le-Doyen", +"Ouzouer-le-Marché", +"Ouzouer-sous-Bellegarde", +"Ouzouer-sur-Loire", +"Ouzouer-sur-Trézée", +"Ouzoun-Ada", +"Over-Diemen", +"Ovillers-la-Boisselle", +"ovo-lacto-végétarisme", +"ovo-lacto-végétarismes", +"ovo-urinaire", +"ovo-végétarisme", +"ovo-végétarismes", +"oxidéméton-méthyl", +"oxo-biodégradable", +"oxo-biodégradables", +"oxo-dégradable", +"oxo-dégradables", +"oxydéméton-méthyl", +"oxydo-réduction", +"oxydo-réductions", +"oxy-iodure", +"oxy-iodures", +"Oye-et-Pallet", +"Oye-Plage", +"Oy-Mittelberg", +"Oyón-Oion", +"Oytier-Saint-Oblas", +"Oza-Cesuras", +"Ozenx-Montestrucq", +"Ozoir-la-Ferrière", +"Ozoir-le-Breuil", +"Ozouer-le-Repos", +"Ozouer-le-Voulgis", +"Ozouër-le-Voulgis", +"pa'anga", +"p-acétylaminophénol", +"package-deal", +"package-deals", +"pack-ice", +"pack-ices", +"Pacy-sur-Armançon", +"Pacy-sur-Eure", +"p-adique", +"p-adiques", +"pagano-chrétien", +"page-turner", +"Pagney-derrière-Barine", +"Pagny-la-Blanche-Côte", +"Pagny-la-Ville", +"Pagny-le-Château", +"Pagny-lès-Goin", +"Pagny-sur-Meuse", +"Pagny-sur-Moselle", +"paille-en-cul", +"paille-en-queue", +"pailles-en-cul", +"pailles-en-queue", +"pail-mail", +"pain-beurre", +"pain-d'épicier", +"pain-d'épicière", +"pain-d'épicières", +"pain-d'épiciers", +"pain-de-pourceau", +"pains-de-pourceau", +"pair-à-pair", +"Pair-et-Grandrupt", +"pair-programma", +"pair-programmai", +"pair-programmaient", +"pair-programmais", +"pair-programmait", +"pair-programmâmes", +"pair-programmant", +"pair-programmas", +"pair-programmasse", +"pair-programmassent", +"pair-programmasses", +"pair-programmassiez", +"pair-programmassions", +"pair-programmât", +"pair-programmâtes", +"pair-programme", +"pair-programmé", +"pair-programment", +"pair-programmer", +"pair-programmera", +"pair-programmerai", +"pair-programmeraient", +"pair-programmerais", +"pair-programmerait", +"pair-programmeras", +"pair-programmèrent", +"pair-programmerez", +"pair-programmeriez", +"pair-programmerions", +"pair-programmerons", +"pair-programmeront", +"pair-programmes", +"pair-programmez", +"pair-programmiez", +"pair-programmions", +"pair-programmons", +"Paisy-Cosdon", +"Paizay-le-Chapt", +"Paizay-le-Sec", +"Paizay-le-Tort", +"Paizay-Naudouin-Embourie", +"Palais-Bourbon", +"Palatinat-Sud-Ouest", +"palato-labial", +"palato-labiale", +"palato-pharyngien", +"palato-pharyngite", +"palato-pharyngites", +"palato-salpingien", +"palato-staphylin", +"palato-staphylins", +"Palau-de-Cerdagne", +"Palau-del-Vidre", +"Palau-sator", +"Palau-saverdera", +"Palavas-les-Flots", +"paléo-continental", +"paléo-lac", +"paléo-lacs", +"paléo-reconstruction", +"paléo-reconstructions", +"pal-fer", +"palladico-potassique", +"Palluau-sur-Indre", +"palmier-chanvre", +"palmier-dattier", +"palmiers-chanvre", +"palmiers-dattiers", +"palpe-mâchoire", +"palu'e", +"palu'es", +"pama-nyungan", +"panchen-lama", +"pancréatico-duodénal", +"Pancy-Courtecon", +"pan-européen", +"pan-européenne", +"pan-européennes", +"pan-européens", +"panier-repas", +"paniers-repas", +"pan-lucanisme", +"pan-mandingue", +"pan-mandingues", +"panpan-cucul", +"Panschwitz-Kuckau", +"panthère-garou", +"panthères-garous", +"Pant'ruche", +"Pa-O", +"papa-gâteau", +"papas-gâteaux", +"papier-caillou-ciseaux", +"papier-calque", +"papier-cul", +"papier-filtre", +"papier-monnaie", +"papiers-calque", +"Papouasie-Nouvelle-Guinée", +"papy-boom", +"papy-boomer", +"papy-boomers", +"papy-boomeur", +"papy-boomeurs", +"paquet-cadeau", +"paquets-cadeaux", +"para-acétyl-amino-phénol", +"parachute-frein", +"parachutes-freins", +"para-continental", +"para-dichlorobenzène", +"para-légal", +"para-légale", +"para-légales", +"para-légaux", +"parathion-éthyl", +"parathion-méthyl", +"Paray-Douaville", +"Paray-le-Frésil", +"Paray-le-Monial", +"Paray-sous-Briailles", +"Paray-Vieille-Poste", +"Parçay-les-Pins", +"Parçay-Meslay", +"Parçay-sur-Vienne", +"Parc-d'Anxtot", +"parc-d'anxtotais", +"Parc-d'Anxtotais", +"parc-d'anxtotaise", +"Parc-d'Anxtotaise", +"parc-d'anxtotaises", +"Parc-d'Anxtotaises", +"Parcé-sur-Sarthe", +"par-cœur", +"Parcoul-Chenaud", +"Parcy-et-Tigny", +"par-dehors", +"par-delà", +"par-derrière", +"par-dessous", +"par-dessus", +"par-devant", +"par-devers", +"Pardies-Piétat", +"Parentis-en-Born", +"Parey-Saint-Césaire", +"Parey-sous-Montfort", +"Parfouru-l'Éclin", +"Parfouru-sur-Odon", +"Pargny-Filain", +"Pargny-la-Dhuys", +"Pargny-les-Bois", +"Pargny-lès-Reims", +"Pargny-Resson", +"Pargny-sous-Mureau", +"Pargny-sur-Saulx", +"Parigné-le-Pôlin", +"Parigné-l'Evêque", +"Parigné-l'Évêque", +"Parigné-sur-Braye", +"Parigny-la-Rose", +"Parigny-les-Vaux", +"Paris-Brest", +"Paris-l'Hôpital", +"parking-relais", +"parler-pour-ne-rien-dire", +"Parné-sur-Roc", +"Parnoy-en-Bassigny", +"parotido-auriculaire", +"parotido-auriculaires", +"Paroy-en-Othe", +"Paroy-sur-Saulx", +"Paroy-sur-Tholon", +"Parsac-Rimondeix", +"Pars-lès-Chavanges", +"Pars-lès-Romilly", +"Parthenay-de-Bretagne", +"participation-pari", +"particule-dieu", +"particules-dieu", +"parti-pris", +"parva-pétricien", +"Parva-Pétricien", +"parva-pétricienne", +"Parva-Pétricienne", +"parva-pétriciennes", +"Parva-Pétriciennes", +"parva-pétriciens", +"Parva-Pétriciens", +"Parves-et-Nattages", +"Parvillers-le-Quesnoy", +"pas-à-pas", +"pascal-seconde", +"pascals-secondes", +"pas-d'âne", +"Pas-de-Calais", +"Pas-de-Jeu", +"pas-de-porte", +"Pas-en-Artois", +"paso-doble", +"paso-dobles", +"Passavant-en-Argonne", +"Passavant-la-Rochère", +"Passavant-sur-Layon", +"passif-agressif", +"passifs-agressifs", +"passing-shot", +"passing-shots", +"Passy-en-Valois", +"Passy-Grigny", +"Passy-les-Tours", +"Passy-sur-Marne", +"Passy-sur-Seine", +"P-ATA", +"pâtissier-chocolatier", +"Pätow-Steegen", +"patronnière-gradeuse", +"patronnières-gradeuses", +"patronnier-gradeur", +"patronniers-gradeurs", +"patte-de-lièvre", +"patte-d'oie", +"patte-pelu", +"patte-pelus", +"pattes-de-lièvre", +"pattes-d'oie", +"pauci-relationnel", +"pauci-relationnelle", +"pauci-relationnelles", +"pauci-relationnels", +"pauci-spécifique", +"pauci-spécifiques", +"Paulhac-en-Margeride", +"Paul-Olivier", +"pause-café", +"pause-carrière", +"pause-santé", +"pauses-café", +"pauses-carrière", +"pauses-santé", +"Paussac-et-Saint-Vivien", +"Pautaines-Augeville", +"payé-emporté", +"pay-per-view", +"Payra-sur-l'Hers", +"Payré-sur-Vendée", +"Payrin-Augmontel", +"Payros-Cazautets", +"pays-bas", +"Pays-Bas", +"Pays-d'Altenbourg", +"Pays-de-Berchtesgaden", +"Pays-de-Jerichow", +"Pays-d'Enhaut", +"Pays-de-Nuremberg", +"pay-to-win", +"Payzac-de-Lanouaille", +"pc-banking", +"P-DG", +"P.-D.G.", +"p.-ê.", +"peau-bleue", +"peau-de-chienna", +"peau-de-chiennai", +"peau-de-chiennaient", +"peau-de-chiennais", +"peau-de-chiennait", +"peau-de-chiennâmes", +"peau-de-chiennant", +"peau-de-chiennas", +"peau-de-chiennasse", +"peau-de-chiennassent", +"peau-de-chiennasses", +"peau-de-chiennassiez", +"peau-de-chiennassions", +"peau-de-chiennât", +"peau-de-chiennâtes", +"peau-de-chienne", +"peau-de-chienné", +"peau-de-chiennée", +"peau-de-chiennées", +"peau-de-chiennent", +"peau-de-chienner", +"peau-de-chiennera", +"peau-de-chiennerai", +"peau-de-chienneraient", +"peau-de-chiennerais", +"peau-de-chiennerait", +"peau-de-chienneras", +"peau-de-chiennèrent", +"peau-de-chiennerez", +"peau-de-chienneriez", +"peau-de-chiennerions", +"peau-de-chiennerons", +"peau-de-chienneront", +"peau-de-chiennes", +"peau-de-chiennés", +"peau-de-chiennez", +"peau-de-chienniez", +"peau-de-chiennions", +"peau-de-chiennons", +"peau-rouge", +"Peau-Rouge", +"Peau-Verte", +"peaux-rouges", +"Peaux-Rouges", +"Peaux-Vertes", +"Pécharic-et-le-Py", +"pêche-bernard", +"pêche-bernards", +"Pech-Luna", +"pédal'eau", +"pédicure-podologue", +"pédicures-podologues", +"Pedro-Rodríguez", +"peer-to-peer", +"Pégairolles-de-Buèges", +"Pégairolles-de-l'Escalette", +"peigne-cul", +"peigne-culs", +"peigne-zizi", +"peine-à-jouir", +"peis-coua", +"Peisey-Nancroix", +"pele-ata", +"Pel-et-Der", +"pelle-à-cul", +"pelle-pioche", +"pelles-à-cul", +"pelles-bêches", +"pelles-pioches", +"Pellouailles-les-Vignes", +"pelure-d'oignon", +"pelvi-crural", +"pelvi-trochantérien", +"pelvi-trochantérienne", +"pelvi-trochantériennes", +"pelvi-trochantériens", +"Peñacerrada-Urizaharra", +"Peñarroya-Pueblonuevo", +"pencak-silat", +"pénicillino-résistance", +"pénicillino-résistances", +"pénicillino-sensibilité", +"pénicillino-sensibilités", +"Penne-d'Agenais", +"Pennes-le-Sec", +"penn-ty", +"pense-bête", +"pense-bêtes", +"Penta-Acquatella", +"penta-cœur", +"penta-cœurs", +"penta-continental", +"penta-core", +"penta-cores", +"Penta-di-Casinca", +"pen-testeur", +"pen-testeurs", +"pen-testeuse", +"pen-testeuses", +"pen-ty", +"people-isa", +"people-isai", +"people-isaient", +"people-isais", +"people-isait", +"people-isâmes", +"people-isant", +"people-isas", +"people-isasse", +"people-isassent", +"people-isasses", +"people-isassiez", +"people-isassions", +"people-isât", +"people-isâtes", +"people-ise", +"people-isé", +"people-isée", +"people-isées", +"people-isent", +"people-iser", +"people-isera", +"people-iserai", +"people-iseraient", +"people-iserais", +"people-iserait", +"people-iseras", +"people-isèrent", +"people-iserez", +"people-iseriez", +"people-iserions", +"people-iserons", +"people-iseront", +"people-ises", +"people-isés", +"people-isez", +"people-isiez", +"people-isions", +"people-isons", +"Percey-le-Grand", +"Percey-le-Pautel", +"Percey-sous-Montormentier", +"perche-brochet", +"Perche-en-Nocé", +"perche-soleil", +"Percy-en-Auge", +"Percy-en-Normandie", +"perdante-perdante", +"perdantes-perdantes", +"perdant-perdant", +"perdants-perdants", +"perd-sa-queue", +"perd-tout", +"père-la-pudeur", +"Père-la-pudeur", +"pères-la-pudeur", +"Péret-Bel-Air", +"perfo-vérif", +"Pergain-Taillac", +"Périers-en-Auge", +"Périers-sur-le-Dan", +"Pérignat-ès-Allier", +"Pérignat-lès-Sarliève", +"Pérignat-sur-Allier", +"Périgny-la-Rose", +"Perles-et-Castelet", +"Perly-Certoux", +"Pernand-Vergelesses", +"Pernes-lès-Boulogne", +"Pernes-les-Fontaines", +"Pero-Casevecchie", +"Pérols-sur-Vézère", +"péronéo-calcanéen", +"péronéo-malléolaire", +"péronéo-malléolaires", +"péronéo-phalangien", +"péronéo-tibial", +"Péronne-en-Mélantois", +"Péronnes-lez-Antoing", +"Péroy-les-Gombries", +"Perpète-la-ouf", +"Perpète-les-Alouettes", +"Perpète-les-Oies", +"Perpète-lès-Oies", +"Perpète-les-Olivettes", +"Perpette-les-Oies", +"Perpezac-le-Blanc", +"Perpezac-le-Noir", +"Perrancey-les-Vieux-Moulins", +"Perrecy-les-Forges", +"Perriers-en-Beauficel", +"Perriers-la-Campagne", +"Perriers-sur-Andelle", +"Perrigny-lès-Dijon", +"Perrigny-sur-Armançon", +"Perrigny-sur-l'Ognon", +"Perrigny-sur-Loire", +"Perrogney-les-Fontaines", +"perroquet-hibou", +"perroquets-hiboux", +"Perros-Guirec", +"perruche-moineau", +"perruches-moineaux", +"Pers-en-Gâtinais", +"Pers-Jussy", +"Perthes-lès-Brienne", +"Perthes-lès-Hurlus", +"Pertheville-Ners", +"pesco-végétarien", +"pèse-acide", +"pèse-acides", +"pèse-alcool", +"pèse-alcools", +"pèse-bébé", +"pèse-bébés", +"pèse-esprit", +"pèse-esprits", +"pèse-lait", +"pèse-laits", +"pèse-lettre", +"pèse-lettres", +"pèse-liqueur", +"pèse-liqueurs", +"pèse-mout", +"pèse-moût", +"pèse-mouts", +"pèse-moûts", +"pèse-nitre", +"pèse-nitres", +"pèse-personne", +"pèse-personnes", +"pèse-sel", +"pèse-sels", +"pèse-sirop", +"pèse-sirops", +"pèse-vernis", +"Pessac-sur-Dordogne", +"Pessa'h", +"Pessat-Villeneuve", +"péta-ampère", +"péta-ampères", +"péta-électron-volt", +"pétaélectron-volt", +"péta-électron-volts", +"pétaélectron-volts", +"pet'che", +"pet-d'âne", +"pet-de-loup", +"pet-de-nonne", +"pet-de-soeur", +"pet-de-sœur", +"Petegem-aan-de-Leie", +"Petegem-aan-de-Schelde", +"pet-en-l'air", +"Peterswald-Löffelscheid", +"pète-sec", +"pète-sèche", +"pète-sèches", +"pète-secs", +"petites-bourgeoises", +"petites-bourgeoisies", +"petites-filles", +"petites-mains", +"petites-maîtresses", +"petites-nièces", +"petites-russes", +"petits-beurre", +"petits-bourgeois", +"petits-chênes", +"petits-déjeuners", +"petits-ducs", +"petits-enfants", +"petits-fils", +"petits-fours", +"petits-gris", +"petits-laits", +"petits-maîtres", +"petits-neveux", +"petits-russes", +"petits-suisses", +"petits-trains", +"Petreto-Bicchisano", +"pétrolier-minéralier", +"pétro-monarchie", +"pétro-monarchies", +"pétro-occipital", +"pétro-salpingo-staphylin", +"pétro-salpingo-staphylins", +"pétro-staphylin", +"pétrus-colien", +"Pétrus-Colien", +"pétrus-colienne", +"Pétrus-Colienne", +"pétrus-coliennes", +"Pétrus-Coliennes", +"pétrus-coliens", +"Pétrus-Coliens", +"pets-de-loup", +"pets-de-nonne", +"peul-peul", +"Peumerit-Quintin", +"peut-être", +"Peux-et-Couffouleux", +"Peypin-d'Aigues", +"Peyrat-de-Bellac", +"Peyrat-la-Nonière", +"Peyrat-le-Château", +"Peyre-en-Aubrac", +"Peyrefitte-du-Razès", +"Peyrefitte-sur-l'Hers", +"Peyrelongue-Abos", +"Peyret-Saint-André", +"Peyriac-de-Mer", +"Peyriac-Minervois", +"Peyrillac-et-Millac", +"Peyrolles-en-Provence", +"Peyrusse-Grande", +"Peyrusse-le-Roc", +"Peyrusse-Massas", +"Peyrusse-Vieille", +"Peyzac-le-Moustier", +"Peyzieux-sur-Saône", +"Pezé-le-Robert", +"Pézènes-les-Mines", +"Pézilla-de-Conflent", +"Pézilla-la-Rivière", +"Pfaffen-Schwabenheim", +"P-frame", +"p-graphe", +"p-graphes", +"pharyngo-laryngite", +"pharyngo-laryngites", +"pharyngo-staphylin", +"phénico-punique", +"phénico-puniques", +"philosopho-théologique", +"philosopho-théologiques", +"pH-mètre", +"phonético-symbolique", +"phoque-garou", +"phoque-léopard", +"phoques-garous", +"phoséthyl-Al", +"phosétyl-Al", +"phosphate-allophane", +"phosphate-allophanes", +"photos-finish", +"phragmito-scirpaie", +"phragmito-scirpaies", +"phrase-clé", +"phrases-clés", +"phréno-glottisme", +"phréno-glottismes", +"physico-chimie", +"physico-chimies", +"physico-chimique", +"physico-chimiques", +"physico-mathématique", +"physico-mathématiques", +"physio-pathologie", +"physio-pathologies", +"piane-piane", +"piano-bar", +"piano-bars", +"piano-forte", +"piano-fortes", +"piano-manivelle", +"Pianotolli-Caldarello", +"Pianottoli-Caldarello", +"pian's", +"pichot-chêne", +"pichots-chênes", +"pick-up", +"pick-ups", +"pico-condensateur", +"pico-condensateurs", +"pico-ohm", +"pico-ohms", +"pics-verts", +"Picto-Charentais", +"pic-vert", +"pic-verts", +"pidgin-english", +"pièces-au-cul", +"pied-à-terre", +"pied-bot", +"pied-d'alouette", +"pied-de-banc", +"pied-de-biche", +"pied-de-boeuf", +"pied-de-bœuf", +"Pied-de-Borne", +"pied-de-chat", +"pied-de-cheval", +"pied-de-chèvre", +"pied-de-coq", +"pied-de-corbeau", +"pied-de-griffon", +"pied-de-lion", +"pied-de-loup", +"pied-de-mouche", +"pied-de-mouton", +"pied-de-pélican", +"pied-de-pigeon", +"pied-de-poule", +"pied-d'étape", +"pied-de-veau", +"pied-d'oiseau", +"pied-droit", +"pié-de-lion", +"pied-fort", +"Piedicorte-di-Gaggio", +"pied-noir", +"pied-noire", +"pied-noirisa", +"pied-noirisai", +"pied-noirisaient", +"pied-noirisais", +"pied-noirisait", +"pied-noirisâmes", +"pied-noirisant", +"pied-noirisas", +"pied-noirisasse", +"pied-noirisassent", +"pied-noirisasses", +"pied-noirisassiez", +"pied-noirisassions", +"pied-noirisât", +"pied-noirisâtes", +"pied-noirise", +"pied-noirisé", +"pied-noirisée", +"pied-noirisées", +"pied-noirisent", +"pied-noiriser", +"pied-noirisera", +"pied-noiriserai", +"pied-noiriseraient", +"pied-noiriserais", +"pied-noiriserait", +"pied-noiriseras", +"pied-noirisèrent", +"pied-noiriserez", +"pied-noiriseriez", +"pied-noiriserions", +"pied-noiriserons", +"pied-noiriseront", +"pied-noirises", +"pied-noirisés", +"pied-noirisez", +"pied-noirisiez", +"pied-noirisions", +"pied-noirisons", +"Pie-d'Orezza", +"pied-plat", +"pied-rouge", +"pieds-bots", +"pieds-d'alouette", +"pieds-de-biche", +"pieds-de-boeuf", +"pieds-de-bœuf", +"pieds-de-chat", +"pieds-de-chèvre", +"pieds-de-coq", +"pieds-de-corbeau", +"pieds-de-griffon", +"pieds-de-lion", +"pieds-de-mouche", +"pieds-de-mouton", +"pieds-de-veau", +"pieds-d'oiseau", +"pieds-droits", +"pieds-forts", +"pieds-noires", +"pieds-noirs", +"pieds-paquets", +"pieds-plats", +"pieds-tendres", +"pied-tendre", +"pied-vert", +"piège-à-cons", +"pièges-à-cons", +"pie-grièche", +"Piégros-la-Clastre", +"Piégut-Pluviers", +"pie-mère", +"Piennes-Onvillers", +"pie-noir", +"pie-noire", +"pie-noires", +"pie-noirs", +"pie-rouge", +"pierre-bénitain", +"Pierre-Bénitain", +"pierre-bénitaine", +"Pierre-Bénitaine", +"pierre-bénitaines", +"Pierre-Bénitaines", +"pierre-bénitains", +"Pierre-Bénitains", +"Pierre-Bénite", +"Pierre-Buffière", +"pierre-buffiérois", +"Pierre-Buffiérois", +"pierre-buffiéroise", +"Pierre-Buffiéroise", +"pierre-buffiéroises", +"Pierre-Buffiéroises", +"Pierre-Chanel", +"Pierre-Châtel", +"pierre-châtelois", +"Pierre-Châtelois", +"pierre-châteloise", +"Pierre-Châteloise", +"pierre-châteloises", +"Pierre-Châteloises", +"Pierre-de-Bresse", +"Pierrefeu-du-Var", +"pierre-feuille-ciseaux", +"Pierrefitte-en-Auge", +"Pierrefitte-en-Beauvaisis", +"Pierrefitte-en-Cinglais", +"Pierrefitte-ès-Bois", +"Pierrefitte-Nestalas", +"Pierrefitte-sur-Aire", +"Pierrefitte-sur-Loire", +"Pierrefitte-sur-Sauldre", +"Pierrefitte-sur-Seine", +"Pierrefontaine-lès-Blamont", +"Pierrefontaine-les-Varans", +"Pierre-la-Treiche", +"Pierre-Levée", +"pierre-levéen", +"Pierre-Levéen", +"pierre-levéenne", +"Pierre-Levéenne", +"pierre-levéennes", +"Pierre-Levéennes", +"pierre-levéens", +"Pierre-Levéens", +"Pierre-Louis", +"Pierre-Marie", +"pierre-montois", +"Pierre-Montois", +"pierre-montoise", +"Pierre-Montoise", +"pierre-montoises", +"Pierre-Montoises", +"Pierremont-sur-Amance", +"Pierre-Morains", +"Pierre-Olivier", +"pierre-papier-ciseaux", +"Pierre-Percée", +"Pierre-Perthuis", +"Pierrepont-sur-Avre", +"Pierrepont-sur-l'Arentèle", +"pierre-qui-vire", +"pierres-qui-virent", +"Pierre-Yves", +"piés-de-lion", +"pies-grièches", +"pies-mères", +"piétin-échaudage", +"piétin-verse", +"Pietra-di-Verde", +"Piets-Plasence-Moustrou", +"piézo-électricité", +"piézo-électricités", +"piézo-électrique", +"piézo-électriques", +"Pihen-lès-Guînes", +"Pijnacker-Nootdorp", +"Pila-Canale", +"pile-poil", +"pilo-sébacé", +"Pin-Balma", +"pince-balle", +"pince-balles", +"pince-érigne", +"pince-érignes", +"pince-fesse", +"pince-fesses", +"pince-lisière", +"pince-maille", +"pince-mailles", +"pince-monseigneur", +"pince-nez", +"pince-notes", +"pince-oreille", +"pince-oreilles", +"pince-sans-rire", +"pinces-monseigneur", +"Pinel-Hauterive", +"ping-pong", +"ping-pongs", +"Pin-Moriès", +"pino-balméen", +"Pino-Balméen", +"pino-balméenne", +"Pino-Balméenne", +"pino-balméennes", +"Pino-Balméennes", +"pino-balméens", +"Pino-Balméens", +"pin-pon", +"pin's", +"Pin-Saint-Denis", +"Pins-Justaret", +"pins-justarétois", +"Pins-Justarétois", +"pins-justarétoise", +"Pins-Justarétoise", +"pins-justarétoises", +"Pins-Justarétoises", +"Piñuécar-Gandullas", +"pin-up", +"piou-piou", +"piou-pious", +"pipe-line", +"pipe-lines", +"piqueur-suceur", +"Pi-Ramsès", +"Piré-sur-Seiche", +"Piriac-sur-Mer", +"pirimiphos-éthyl", +"pirimiphos-méthyl", +"pis-aller", +"pis-allers", +"pisse-au-lit", +"pisse-chien", +"pisse-chiens", +"pisse-copie", +"pisse-copies", +"pisse-debout", +"pisse-froid", +"pisse-mémé", +"pisse-mémère", +"pisse-sang", +"pisse-trois-gouttes", +"pisse-vinaigre", +"pisse-vinaigres", +"pisse-z-yeux", +"pissy-pôvillais", +"Pissy-Pôvillais", +"pissy-pôvillaise", +"Pissy-Pôvillaise", +"pissy-pôvillaises", +"Pissy-Pôvillaises", +"Pissy-Pôville", +"pistillo-staminé", +"pistolet-mitrailleur", +"pistolets-mitrailleurs", +"pit-bulls", +"Pithiviers-le-Vieil", +"pixie-bob", +"Plachy-Buyon", +"plachy-buyonnais", +"Plachy-Buyonnais", +"plachy-buyonnaise", +"Plachy-Buyonnaise", +"plachy-buyonnaises", +"Plachy-Buyonnaises", +"Placy-Montaigu", +"Plaimbois-du-Miroir", +"Plaimbois-Vennes", +"Plaimpied-Givaudins", +"plain-chant", +"Plain-de-Corravillers", +"Plaine-de-Walsch", +"Plaine-Haute", +"Plaines-Saint-Lange", +"plain-pied", +"plains-chants", +"plains-pieds", +"Plaisance-du-Touch", +"plaît-il", +"Plancher-Bas", +"Plancher-les-Mines", +"planches-contacts", +"Plancy-l'Abbaye", +"Plan-d'Aups", +"Plan-d'Aups-Sainte-Baume", +"Plan-de-Baix", +"Plan-de-Cuques", +"Plan-de-la-Tour", +"Plan-d'Orgon", +"Plan-les-Ouates", +"plan-masse", +"plan-plan", +"plan-planisme", +"plan-planismes", +"plan-séquence", +"plan-séquences", +"plans-masses", +"plan-socialisa", +"plan-socialisai", +"plan-socialisaient", +"plan-socialisais", +"plan-socialisait", +"plan-socialisâmes", +"plan-socialisant", +"plan-socialisas", +"plan-socialisasse", +"plan-socialisassent", +"plan-socialisasses", +"plan-socialisassiez", +"plan-socialisassions", +"plan-socialisât", +"plan-socialisâtes", +"plan-socialise", +"plan-socialisé", +"plan-socialisée", +"plan-socialisées", +"plan-socialisent", +"plan-socialiser", +"plan-socialisera", +"plan-socialiserai", +"plan-socialiseraient", +"plan-socialiserais", +"plan-socialiserait", +"plan-socialiseras", +"plan-socialisèrent", +"plan-socialiserez", +"plan-socialiseriez", +"plan-socialiserions", +"plan-socialiserons", +"plan-socialiseront", +"plan-socialises", +"plan-socialisés", +"plan-socialisez", +"plan-socialisiez", +"plan-socialisions", +"plan-socialisons", +"plans-séquences", +"plante-crayon", +"plante-éponge", +"plantes-crayons", +"plaque-bière", +"plaque-tonnerre", +"Plassac-Rouffiac", +"plat-bord", +"plat-cul", +"plat-culs", +"plat-de-bierre", +"Plateau-Central", +"plateau-repas", +"plateaux-repas", +"plate-bande", +"plate-bière", +"plate-face", +"plate-forme", +"plate-longe", +"plates-bandes", +"plates-formes", +"plates-longes", +"platinico-ammonique", +"plats-bords", +"play-back", +"play-backs", +"play-boy", +"play-boys", +"play-off", +"play-offs", +"plein-cintre", +"pleine-fougerais", +"Pleine-Fougerais", +"pleine-fougeraise", +"Pleine-Fougeraise", +"pleine-fougeraises", +"Pleine-Fougeraises", +"Pleine-Fougères", +"plein-emploi", +"Pleine-Selve", +"Pleine-Sève", +"Pleines-Œuvres", +"pleins-cintres", +"Pleisweiler-Oberhofen", +"Plélan-le-Grand", +"Plélan-le-Petit", +"Plénée-Jugon", +"Pléneuf-Val-André", +"Pleslin-Trigavou", +"plessis-ansoldien", +"Plessis-Ansoldien", +"plessis-ansoldienne", +"Plessis-Ansoldienne", +"plessis-ansoldiennes", +"Plessis-Ansoldiennes", +"plessis-ansoldiens", +"Plessis-Ansoldiens", +"Plessis-Barbuise", +"plessis-brionnais", +"Plessis-Brionnais", +"plessis-brionnaise", +"Plessis-Brionnaise", +"plessis-brionnaises", +"Plessis-Brionnaises", +"plessis-bucardésien", +"Plessis-Bucardésien", +"plessis-bucardésienne", +"Plessis-Bucardésienne", +"plessis-bucardésiennes", +"Plessis-Bucardésiennes", +"plessis-bucardésiens", +"Plessis-Bucardésiens", +"Plessis-de-Roye", +"Plessis-du-Mée", +"plessis-episcopien", +"Plessis-Episcopien", +"plessis-épiscopien", +"Plessis-Épiscopien", +"plessis-episcopienne", +"Plessis-Episcopienne", +"plessis-épiscopienne", +"Plessis-Épiscopienne", +"plessis-episcopiennes", +"Plessis-Episcopiennes", +"plessis-épiscopiennes", +"Plessis-Épiscopiennes", +"plessis-episcopiens", +"Plessis-Episcopiens", +"plessis-épiscopiens", +"Plessis-Épiscopiens", +"Plessis-Gatebled", +"plessis-grammoirien", +"Plessis-Grammoirien", +"plessis-grammoirienne", +"Plessis-Grammoirienne", +"plessis-grammoiriennes", +"Plessis-Grammoiriennes", +"plessis-grammoiriens", +"Plessis-Grammoiriens", +"plessis-luzarchois", +"Plessis-Luzarchois", +"plessis-luzarchoise", +"Plessis-Luzarchoise", +"plessis-luzarchoises", +"Plessis-Luzarchoises", +"plessis-macéen", +"Plessis-Macéen", +"plessis-macéenne", +"Plessis-Macéenne", +"plessis-macéennes", +"Plessis-Macéennes", +"plessis-macéens", +"Plessis-Macéens", +"Plessis-Saint-Benoist", +"Plessis-Saint-Jean", +"Plessix-Balisson", +"Plestin-les-Grèves", +"Pleudihen-sur-Rance", +"Pleumeur-Bodou", +"Pleumeur-Gautier", +"pleu-pleu", +"pleure-misère", +"pleure-misères", +"pleuronecte-guitare", +"pleuro-péricardite", +"Pleyber-Christ", +"plieuse-inséreuse", +"plieuses-inséreuses", +"Plobannalec-Lesconil", +"Plœuc-L'Hermitage", +"Plœuc-sur-Lié", +"Plogastel-Saint-Germain", +"Plombières-les-Bains", +"Plombières-lès-Dijon", +"Plonéour-Lanvern", +"Plonévez-du-Faou", +"Plonévez-Porzay", +"plongée-spéléo", +"plongées-spéléo", +"Plorec-sur-Arguenon", +"Plouëc-du-Trieux", +"Plouégat-Guérand", +"Plouégat-Moysan", +"Plouër-sur-Rance", +"Plouezoc'h", +"plouezoc'hois", +"Plouezoc'hois", +"plouezoc'hoise", +"Plouezoc'hoise", +"plouezoc'hoises", +"Plouezoc'hoises", +"Plougastel-Daoulas", +"Ploulec'h", +"ploulec'hois", +"Ploulec'hois", +"ploulec'hoise", +"Ploulec'hoise", +"ploulec'hoises", +"Ploulec'hoises", +"Ploumanac'h", +"Plounéour-Brignogan-Plages", +"Plounéour-Ménez", +"Plounéour-Trez", +"plounéour-trezien", +"Plounéour-Trezien", +"plounéour-trezienne", +"Plounéour-Trezienne", +"plounéour-treziennes", +"Plounéour-Treziennes", +"plounéour-treziens", +"Plounéour-Treziens", +"Plounévez-Lochrist", +"Plounévez-Moëdec", +"Plounévez-Quintin", +"Plourac'h", +"Plourin-lès-Morlaix", +"Ployart-et-Vaurseine", +"ploye-ressort", +"plui-plui", +"plumbo-aragonite", +"plumbo-aragonites", +"plum-cake", +"plum-cakes", +"plume-couteau", +"plumes-couteaux", +"plum-pudding", +"plû-part", +"pluri-continental", +"pluri-interprétable", +"pluri-interprétables", +"pluri-journalier", +"pluri-modal", +"pluri-national", +"pluri-nationale", +"pluri-nationales", +"pluri-nationaux", +"plus-d'atouts", +"plus-disant", +"plus-part", +"plus-payé", +"plus-pétition", +"plus-produit", +"plus-produits", +"plus-que-parfait", +"plus-que-parfaits", +"plus-value", +"plus-values", +"pluto-neptunien", +"pluvier-hirondelle", +"Pobé-Mengao", +"Pocé-les-Bois", +"Pocé-sur-Cisse", +"poche-cuiller", +"poche-revolver", +"poches-revolver", +"pochettes-surprise", +"pochettes-surprises", +"pochette-surprise", +"podio-régalien", +"Podio-Régalien", +"podio-régalienne", +"Podio-Régalienne", +"podio-régaliennes", +"Podio-Régaliennes", +"podio-régaliens", +"Podio-Régaliens", +"podo-orthésiste", +"podo-orthésistes", +"poët-lavalien", +"Poët-Lavalien", +"poët-lavalienne", +"Poët-Lavalienne", +"poët-lavaliennes", +"Poët-Lavaliennes", +"poët-lavaliens", +"Poët-Lavaliens", +"Poey-de-Lescar", +"Poey-d'Oloron", +"Poggio-di-Nazza", +"Poggio-di-Tallano", +"Poggio-di-Venaco", +"Poggio-d'Oletta", +"Poggio-Marinaccio", +"Poggio-Mezzana", +"poggio-mezzanais", +"Poggio-Mezzanais", +"poggio-mezzanaise", +"Poggio-Mezzanaise", +"poggio-mezzanaises", +"Poggio-Mezzanaises", +"pogne-cul", +"pogne-culs", +"Poids-de-Fiole", +"poids-lourd", +"poids-lourds", +"Poigny-la-Forêt", +"Poilcourt-Sydney", +"Poillé-sur-Vègre", +"Poilly-lez-Gien", +"Poilly-sur-Serein", +"Poilly-sur-Tholon", +"Poinçon-lès-Larrey", +"Poinson-lès-Fayl", +"Poinson-lès-Grancey", +"Poinson-lès-Nogent", +"point-arrière", +"point-col", +"Pointe-à-Pitre", +"Pointe-Claire", +"pointe-de-coeur", +"pointe-de-cœur", +"pointe-de-diamant", +"Pointe-du-Laquois", +"Pointe-Fortunais", +"Pointe-Fortunien", +"pointe-noirais", +"Pointe-Noirais", +"pointe-noiraise", +"Pointe-Noiraise", +"pointe-noiraises", +"Pointe-Noiraises", +"Pointe-Noire", +"pointer-et-cliquer", +"pointes-de-coeur", +"pointes-de-cœur", +"pointes-de-diamant", +"Pointis-de-Rivière", +"Pointis-Inard", +"point-milieu", +"point-selle", +"points-virgules", +"points-voyelles", +"point-virgule", +"point-voyelle", +"Poiseul-la-Grange", +"Poiseul-la-Ville-et-Laperrière", +"Poiseul-lès-Saulx", +"poissonnier-écailler", +"poitevin-saintongeais", +"Poitou-Charentes", +"poivre-sel", +"Poix-de-Picardie", +"Poix-du-Nord", +"poix-résine", +"Poix-Terron", +"poka-yoké", +"Polaincourt-et-Clairefontaine", +"Poleymieux-au-Mont-d'Or", +"Poliez-Pittet", +"politico-économique", +"politico-économiques", +"politico-idéologique", +"politico-idéologiques", +"politico-médiatique", +"politico-religieuse", +"politico-religieuses", +"politico-religieux", +"pollueur-payeur", +"pollueurs-payeurs", +"poly-articulaire", +"poly-articulaires", +"polychlorodibenzo-p-dioxine", +"polychlorodibenzo-p-dioxines", +"poly-insaturé", +"poly-insaturée", +"poly-insaturées", +"poly-insaturés", +"poly-sexuel", +"poly-sexuelle", +"Poméranie-Occidentale-de-l'Est", +"Poméranie-Occidentale-du-Nord", +"pomme-de-pin", +"pomme-grenade", +"Pommerit-Jaudy", +"Pommerit-le-Vicomte", +"pommes-de-pin", +"Pommier-de-Beaurepaire", +"Pommiers-la-Placette", +"Pommiers-Moulons", +"pompages-turbinages", +"pompage-turbinage", +"Pompierre-sur-Doubs", +"Poncé-sur-le-Loir", +"Poncey-lès-Athée", +"Poncey-sur-l'Ignon", +"Ponches-Estruval", +"Ponet-et-Saint-Auban", +"Ponlat-Taillebourg", +"Ponsan-Soubiran", +"Ponson-Debat-Pouts", +"Ponson-Dessus", +"Pontailler-sur-Saône", +"Pontamafrey-Montpascal", +"Pontault-Combault", +"Pontcharra-sur-Turdine", +"Ponte-Avancé", +"Ponteils-et-Brésis", +"Pontenx-les-Forges", +"Pontfaverger-Moronvilliers", +"Pontiacq-Viellepinte", +"Pontoise-lès-Noyon", +"Pontonx-sur-l'Adour", +"ponts-bascules", +"ponts-canaux", +"ponts-de-céais", +"Ponts-de-Céais", +"ponts-de-céaise", +"Ponts-de-Céaise", +"ponts-de-céaises", +"Ponts-de-Céaises", +"Ponts-et-Marais", +"ponts-levis", +"ponts-neufs", +"popa'a", +"pop-corn", +"pop-in", +"pop-ins", +"pop-punk", +"pop-up", +"pop-ups", +"porc-épic", +"Porcieu-Amblagnieu", +"porcs-épics", +"Portel-des-Corbières", +"Porté-Puymorens", +"Portes-en-Valdaine", +"portes-fenêtres", +"Portes-lès-Valence", +"portes-tambour", +"Portet-d'Aspet", +"Portet-de-Luchon", +"Portet-sur-Garonne", +"porteur-de-peau", +"Porto-Novo", +"Porto-Ricain", +"Porto-Ricaine", +"Porto-Ricaines", +"Porto-Ricains", +"Porto-Rico", +"porto-vecchiais", +"Porto-Vecchiais", +"porto-vecchiaise", +"Porto-Vecchiaise", +"porto-vecchiaises", +"Porto-Vecchiaises", +"Porto-Vecchio", +"portrait-charge", +"portrait-robot", +"portraits-charges", +"portraits-robots", +"posé-décollé", +"posé-décollés", +"pose-tubes", +"post-11-Septembre", +"Postbauer-Heng", +"potassico-ammonique", +"potassico-mercureux", +"pot-au-feu", +"pot-au-noir", +"pot-beurrier", +"pot-bouille", +"pot-de-vin", +"pot-en-tête", +"poto-poto", +"pot-pourri", +"potron-jacquet", +"potron-minet", +"Potsdam-Mittelmark", +"pots-de-vin", +"pots-pourris", +"Pouan-les-Vallées", +"pouce-pied", +"pouces-pieds", +"pou-de-soie", +"poudre-éclair", +"poudres-éclair", +"poudres-éclairs", +"pouët-pouët", +"Pougne-Hérisson", +"Pougues-les-Eaux", +"Pouillé-les-Côteaux", +"Pouilley-Français", +"Pouilley-les-Vignes", +"Pouilly-en-Auxois", +"Pouilly-le-Monial", +"Pouilly-lès-Feurs", +"Pouilly-les-Nonains", +"Pouilly-sous-Charlieu", +"Pouilly-sur-Loire", +"Pouilly-sur-Meuse", +"Pouilly-sur-Saône", +"Pouilly-sur-Serre", +"Pouilly-sur-Vingeanne", +"Poulan-Pouzols", +"Pouldavid-sur-Mer", +"Poule-les-Echarmeaux", +"Poule-les-Écharmeaux", +"Pouligney-Lusans", +"Pouligny-Notre-Dame", +"Pouligny-Saint-Martin", +"pouligny-saint-pierre", +"Pouligny-Saint-Pierre", +"Poullan-sur-Mer", +"poult-de-soie", +"Poulton-le-Fylde", +"poults-de-soie", +"Pouques-Lormes", +"pour-boire", +"pour-cent", +"Pournoy-la-Chétive", +"Pournoy-la-Grasse", +"pourri-gâté", +"Poursay-Garnaud", +"Poursiugues-Boucoue", +"poursuite-bâillon", +"Pouru-aux-Bois", +"Pouru-Saint-Remy", +"pousse-au-crime", +"pousse-au-jouir", +"pousse-au-vice", +"pousse-broche", +"pousse-broches", +"pousse-café", +"pousse-cafés", +"pousse-caillou", +"pousse-cailloux", +"pousse-cambrure", +"pousse-cambrures", +"pousse-cul", +"pousse-culs", +"pousse-fiche", +"pousse-goupille", +"pousse-mégot", +"pousse-mégots", +"pousse-navette", +"pousse-pied", +"pousse-pieds", +"pousse-pointe", +"pousse-pointes", +"pousse-pousse", +"Poussy-la-Campagne", +"pout-de-soie", +"pouts-de-soie", +"poux-de-soie", +"Pouy-de-Touges", +"Pouy-Loubrin", +"pouy-roquelain", +"Pouy-Roquelain", +"pouy-roquelaine", +"Pouy-Roquelaine", +"pouy-roquelaines", +"Pouy-Roquelaines", +"pouy-roquelains", +"Pouy-Roquelains", +"Pouy-Roquelaure", +"Pouy-sur-Vannes", +"Pouzols-Minervois", +"Pouzy-Mésangy", +"pow-wow", +"pow-wows", +"Pozo-Lorente", +"PPD-T", +"Pradelles-Cabardès", +"Pradelles-en-Val", +"Pradère-les-Bourguets", +"Prades-d'Aubrac", +"Prades-le-Lez", +"Prades-Salars", +"Prades-sur-Vernazobre", +"Prads-Haute-Bléone", +"Pralognan-la-Vanoise", +"Prat-Bonrepaux", +"Prat-et-Bonrepaux", +"Prato-di-Giovellina", +"Prats-de-Carlux", +"Prats-de-Mollo", +"Prats-de-Mollo-la-Preste", +"Prats-de-Sournia", +"Prats-du-Périgord", +"Praz-sur-Arly", +"Préaux-Bocage", +"Préaux-du-Perche", +"Préaux-Saint-Sébastien", +"Préchacq-Josbaig", +"Préchacq-les-Bains", +"Préchacq-Navarrenx", +"Préchac-sur-Adour", +"Précy-le-Sec", +"Précy-Notre-Dame", +"Précy-Saint-Martin", +"Précy-sous-Thil", +"Précy-sur-Marne", +"Précy-sur-Oise", +"Précy-sur-Vrin", +"Pregny-Chambésy", +"Premeaux-Prissey", +"premier-ministra", +"Premier-ministrable", +"Premier-ministrables", +"premier-ministrai", +"premier-ministraient", +"premier-ministrais", +"premier-ministrait", +"premier-ministrâmes", +"premier-ministrant", +"premier-ministras", +"premier-ministrasse", +"premier-ministrassent", +"premier-ministrasses", +"premier-ministrassiez", +"premier-ministrassions", +"premier-ministrât", +"premier-ministrâtes", +"premier-ministre", +"premier-ministré", +"premier-ministrée", +"premier-ministrées", +"premier-ministrent", +"premier-ministrer", +"premier-ministrera", +"premier-ministrerai", +"premier-ministreraient", +"premier-ministrerais", +"premier-ministrerait", +"premier-ministreras", +"premier-ministrèrent", +"premier-ministrerez", +"premier-ministreriez", +"premier-ministrerions", +"premier-ministrerons", +"premier-ministreront", +"premier-ministres", +"premier-ministrés", +"premier-ministrez", +"premier-ministriez", +"premier-ministrions", +"premier-ministrons", +"premier-né", +"premiers-nés", +"Premosello-Chiovenda", +"prés-bois", +"président-candidat", +"présidente-candidate", +"présidentes-candidates", +"présidents-candidats", +"présidents-directeurs", +"Presles-en-Brie", +"Presles-et-Boves", +"Presles-et-Thierny", +"presqu'accident", +"presqu'accidents", +"presqu'ile", +"presqu'île", +"presqu'iles", +"presqu'îles", +"Pressagny-l'Orgueilleux", +"prés-salés", +"press-book", +"press-books", +"presse-agrume", +"presse-agrumes", +"presse-ail", +"presse-artère", +"presse-artères", +"presse-citron", +"presse-citrons", +"presse-étoffe", +"presse-étoffes", +"presse-étoupe", +"presse-étoupes", +"presse-fruits", +"presse-légumes", +"presse-papier", +"presse-papiers", +"presse-purée", +"presse-purées", +"presse-urètre", +"presse-urètres", +"pressignaco-vicois", +"Pressignaco-Vicois", +"pressignaco-vicoise", +"Pressignaco-Vicoise", +"pressignaco-vicoises", +"Pressignaco-Vicoises", +"Pressignac-Vicq", +"Pressigny-les-Pins", +"Pressy-sous-Dondin", +"prés-vergers", +"prêt-à-monter", +"prêt-à-penser", +"prêt-à-porter", +"prêt-à-poster", +"prête-nom", +"prête-noms", +"Prétot-Sainte-Suzanne", +"Prétot-Vicquemare", +"prêtres-ouvriers", +"prêts-à-penser", +"prêts-à-porter", +"Pretz-en-Argonne", +"Preuilly-la-Ville", +"Preuilly-sur-Claise", +"Preutin-Higny", +"Preux-au-Bois", +"Preux-au-Sart", +"preux-romanien", +"Preux-Romanien", +"preux-romanienne", +"Preux-Romanienne", +"preux-romaniennes", +"Preux-Romaniennes", +"preux-romaniens", +"Preux-Romaniens", +"Prévessin-Moëns", +"Preyssac-d'Excideuil", +"Prez-sous-Lafauche", +"Prez-sur-Marne", +"Prez-vers-Noréaz", +"prie-Dieu", +"Prignac-en-Médoc", +"Prignac-et-Marcamps", +"Prignitz-de-l'Est-Ruppin", +"prima-mensis", +"prime-sautier", +"prim'holstein", +"prince-édouardien", +"Prince-Édouardien", +"prince-édouardienne", +"Prince-Édouardienne", +"prince-édouardiennes", +"Prince-Édouardiennes", +"prince-édouardiens", +"Prince-Édouardiens", +"prince-électeur", +"prince-président", +"prince-sans-rire", +"princes-électeurs", +"princes-présidents", +"Principauté-Ultérieure", +"Prin-Deyrançon", +"Prinsuéjols-Malbouzon", +"prisons-écoles", +"Prissé-la-Charrière", +"privat-docent", +"privat-docentisme", +"privat-docentismes", +"prix-choc", +"prix-chocs", +"Prix-lès-Mézières", +"p'rlotte", +"Proche-Orient", +"Proença-a-Nova", +"programme-cadre", +"programmes-cadres", +"prohexadione-calcium", +"promène-couillon", +"promène-couillons", +"promis-juré", +"promis-jurée", +"promis-jurées", +"promis-jurés", +"prône-misère", +"pronom-adjectif", +"pronoms-adjectifs", +"propre-à-rien", +"propres-à-rien", +"prostato-péritonéal", +"prostato-péritonéale", +"prostato-péritonéales", +"prostato-péritonéaux", +"protège-cahier", +"protège-cahiers", +"protège-dent", +"protège-dents", +"protège-mamelon", +"protège-mamelons", +"protège-oreille", +"protège-oreilles", +"protège-slip", +"protège-slips", +"protège-tibia", +"protège-tibias", +"prout-prout", +"prout-proute", +"prout-proutes", +"prout-prouts", +"Provence-Alpes-Côte-d'Azur", +"Provenchères-et-Colroy", +"Provenchères-lès-Darney", +"Provenchères-sur-Fave", +"Provenchères-sur-Marne", +"Provenchères-sur-Meuse", +"Provinces-Unies", +"Proviseux-et-Plesnoy", +"prud'homal", +"prud'homale", +"prud'homales", +"prud'homaux", +"prud'homie", +"prud'homies", +"Pruillé-le-Chétif", +"Pruillé-l'Eguillé", +"Pruillé-l'Éguillé", +"Prunay-Belleville", +"Prunay-Cassereau", +"Prunay-en-Yvelines", +"Prunay-le-Gillon", +"Prunay-le-Temple", +"Prunay-sur-Essonne", +"Prunelli-di-Casacconi", +"Prunelli-di-Fiumorbo", +"Prunet-et-Belpuig", +"prunet-puigois", +"Prunet-Puigois", +"prunet-puigoise", +"Prunet-Puigoise", +"prunet-puigoises", +"Prunet-Puigoises", +"prunier-cerise", +"pruniers-cerises", +"Pruniers-en-Sologne", +"Prusly-sur-Ource", +"Prusse-Orientale", +"pschitt-pschitt", +"psycho-physiologique", +"psycho-physiologiques", +"psycho-physique", +"psycho-physiques", +"psycho-pop", +"p'tain", +"ptérygo-pharyngien", +"p't-être", +"p'tit", +"p'tite", +"p'tites", +"p'tits", +"pub-restaurant", +"pub-restaurants", +"puce-chique", +"puces-chiques", +"Puch-d'Agenais", +"Puech-Cabrier", +"pue-la-sueur", +"Puget-Rostang", +"Puget-sur-Argens", +"Puget-Théniers", +"Puget-Ville", +"Pugny-Chatenod", +"Puig-reig", +"Puilly-et-Charbeaux", +"Puiselet-le-Marais", +"puiset-doréen", +"Puiset-Doréen", +"puiset-doréenne", +"Puiset-Doréenne", +"puiset-doréennes", +"Puiset-Doréennes", +"puiset-doréens", +"Puiset-Doréens", +"Puiseux-en-Bray", +"Puiseux-en-France", +"Puiseux-en-Retz", +"Puiseux-le-Hauberger", +"Puiseux-les-Louvres", +"Puiseux-Pontoise", +"Puisieux-et-Clanlieu", +"puis-je", +"Puits-et-Nuisement", +"Puits-la-Lande", +"Puits-la-Vallée", +"Pujo-le-Plan", +"Pujols-sur-Ciron", +"Puligny-Montrachet", +"pull-buoy", +"pull-buoys", +"pull-over", +"pull-overs", +"pull-up", +"pulmo-aortique", +"pulso-réacteurs", +"pulvérisateur-mélangeur", +"punaise-mouche", +"punaises-mouches", +"punching-ball", +"punching-balls", +"punkah-wallah", +"pure-laine", +"purge-mariage", +"purge-mariages", +"pur-sang", +"pur-sangs", +"purs-sangs", +"push-back", +"push-up", +"Pusy-et-Epenoux", +"Pusy-et-Épenoux", +"Putanges-le-Lac", +"Putanges-Pont-Ecrepin", +"Putanges-Pont-Écrepin", +"putot-bessinois", +"Putot-Bessinois", +"putot-bessinoise", +"Putot-Bessinoise", +"putot-bessinoises", +"Putot-Bessinoises", +"Putot-en-Auge", +"Putot-en-Bessin", +"Puttelange-aux-Lacs", +"Puttelange-lès-Farschviller", +"Puttelange-lès-Thionville", +"Puygaillard-de-Lomagne", +"Puygaillard-de-Quercy", +"Puyol-Cazalet", +"pyraflufen-éthyl", +"Pyrénées-Atlantiques", +"Pyrénées-Orientales", +"pyrimiphos-éthyl", +"pyrimiphos-méthyl", +"pyro-électricité", +"pyro-électricités", +"pyro-électrique", +"pyro-électriques", +"q'anjob'al", +"Qo'noS", +"quad-core", +"quad-cores", +"quadri-accélération", +"quadri-accélérationnellement", +"quadri-ailé", +"quadri-couche", +"quadri-couches", +"quadri-courant", +"quadri-dimensionnel", +"quadri-dimensionnelle", +"quadri-dimensionnelles", +"quadri-dimensionnels", +"quadri-rotor", +"quadri-rotors", +"quadruple-croche", +"quadruples-croches", +"Quaix-en-Chartreuse", +"quant-à-moi", +"quant-à-soi", +"quarante-cinq", +"quarante-deux", +"quarante-douze", +"quarante-et-un", +"quarante-et-une", +"quarante-huit", +"quarante-huitard", +"quarante-huitarde", +"quarante-huitardes", +"quarante-huitards", +"quarante-huitième", +"quarante-huitièmes", +"quarante-langues", +"quarante-neuf", +"quarante-neuvième", +"quarante-neuvièmes", +"quarante-quatre", +"quarante-sept", +"quarante-six", +"quarante-trois", +"quarante-vingt", +"Quarré-les-Tombes", +"quart-arrière", +"quart-biscuité", +"quart-de-cercle", +"quart-de-finaliste", +"quart-de-finalistes", +"quart-de-pouce", +"quart-d'heure", +"quarte-fagot", +"quartier-général", +"quartier-maitre", +"quartier-maître", +"quartier-maitres", +"quartier-mestre", +"quartiers-maîtres", +"quart-monde", +"quarts-arrières", +"quarts-de-cercle", +"quart-temps", +"quatorze-marsiste", +"quatorze-marsistes", +"quatre-cent-vingt-et-un", +"Quatre-Champs", +"quatre-chevaux", +"quatre-cinq-un", +"quatre-cornes", +"quatre-de-chiffre", +"quatre-épées", +"quatre-épices", +"quatre-feuilles", +"quatre-heura", +"quatre-heurai", +"quatre-heuraient", +"quatre-heurais", +"quatre-heurait", +"quatre-heurâmes", +"quatre-heurant", +"quatre-heuras", +"quatre-heurasse", +"quatre-heurassent", +"quatre-heurasses", +"quatre-heurassiez", +"quatre-heurassions", +"quatre-heurât", +"quatre-heurâtes", +"quatre-heure", +"quatre-heuré", +"quatre-heurent", +"quatre-heurer", +"quatre-heurera", +"quatre-heurerai", +"quatre-heureraient", +"quatre-heurerais", +"quatre-heurerait", +"quatre-heureras", +"quatre-heurèrent", +"quatre-heurerez", +"quatre-heureriez", +"quatre-heurerions", +"quatre-heurerons", +"quatre-heureront", +"quatre-heures", +"quatre-heurez", +"quatre-heuriez", +"quatre-heurions", +"quatre-heurons", +"quatre-huit", +"quatre-mâts", +"Quatre-Nations", +"quatre-œil", +"quatre-pieds", +"quatre-quart", +"quatre-quarts", +"quatre-quatre", +"quatre-quatre-deux", +"quatre-quint", +"quatre-quints", +"quatre-quinze", +"quatre-quinzes", +"quatre-routois", +"Quatre-Routois", +"quatre-routoise", +"Quatre-Routoise", +"quatre-routoises", +"Quatre-Routoises", +"quatre-saisons", +"quatres-de-chiffre", +"quatre-temps", +"quatre-trois-trois", +"quatre-vingt", +"quatre-vingtaine", +"quatre-vingtaines", +"quatre-vingt-cinq", +"quatre-vingt-deux", +"quatre-vingt-dix", +"quatre-vingt-dix-huit", +"quatre-vingt-dixième", +"quatre-vingt-dixièmes", +"quatre-vingt-dix-neuf", +"quatre-vingt-dix-neuvième", +"quatre-vingt-dix-neuvièmes", +"quatre-vingt-dix-sept", +"quatre-vingt-dizaine", +"quatre-vingt-dizaines", +"quatre-vingt-douze", +"quatre-vingt-huit", +"quatre-vingtième", +"quatre-vingtièmes", +"quatre-vingt-neuf", +"quatre-vingt-onze", +"quatre-vingt-quatorze", +"quatre-vingt-quatre", +"quatre-vingt-quinze", +"quatre-vingts", +"quatre-vingt-seize", +"quatre-vingt-sept", +"quatre-vingt-six", +"quatre-vingt-treize", +"quatre-vingt-trois", +"quatre-vingt-un", +"quatre-vingt-une", +"quat'z'arts", +"Quelaines-Saint-Gault", +"quelques-unes", +"quelques-uns", +"quelqu'un", +"quelqu'une", +"Quemigny-Poisot", +"Quemigny-sur-Seine", +"Quemper-Guézennec", +"que'ques", +"Quesnay-Guesnon", +"Quesnoy-le-Montant", +"Quesnoy-sur-Airaines", +"Quesnoy-sur-Deûle", +"questche-wasser", +"question-piège", +"questions-pièges", +"questions-réponses", +"questions-tags", +"question-tag", +"Quet-en-Beaumont", +"Quettreville-sur-Sienne", +"queue-d'aronde", +"queue-de-carpe", +"queue-de-chat", +"queue-de-cheval", +"queue-de-cochon", +"queue-de-lion", +"queue-de-loup", +"queue-de-morue", +"queue-de-paon", +"queue-de-pie", +"queue-de-poêle", +"queue-de-poireau", +"queue-de-porc", +"queue-de-pourceau", +"queue-de-rat", +"queue-de-renard", +"queue-de-scorpion", +"queue-de-souris", +"queue-de-vache", +"queue-d'hironde", +"queue-d'oison", +"queue-d'or", +"Queue-du-Bois", +"queue-du-chat", +"queue-fourchue", +"queue-rouge", +"queues-d'aronde", +"queues-de-chat", +"queues-de-cheval", +"queues-de-cochon", +"queues-de-morue", +"queues-de-pie", +"queues-de-poêle", +"queues-de-pourceau", +"queues-de-rat", +"queues-de-renard", +"queues-de-vache", +"queues-d'hironde", +"queues-d'or", +"Quévreville-la-Poterie", +"Quévy-le-Grand", +"Quévy-le-Petit", +"Queyssac-les-Vignes", +"quick-and-dirty", +"Quiers-sur-Bézonde", +"Quiéry-la-Motte", +"Quillebeuf-sur-Seine", +"Quincampoix-Fleuzy", +"Quincié-en-Beaujolais", +"Quincy-Basse", +"Quincy-Landzécourt", +"Quincy-le-Vicomte", +"Quincy-sous-le-Mont", +"Quincy-sous-Sénart", +"Quincy-Voisins", +"qu-in-situ", +"Quint-Fonsegrives", +"quintuple-croche", +"quintuples-croches", +"quinze-vingt", +"quinze-vingts", +"Quiry-le-Sec", +"qui-va-là", +"qui-vive", +"quizalofop-éthyl", +"quizalofop-p-éthyl", +"quizalofop-P-éthyl", +"Quœux-Haut-Maînil", +"quote-part", +"quotes-parts", +"Qwa-Qwa", +"Raa-Besenbek", +"Rabastens-de-Bigorre", +"rabat-eau", +"rabat-eaux", +"rabat-joie", +"rabat-joies", +"Rabat-les-Trois-Seigneurs", +"Rabenkirchen-Faulück", +"rabi'-oul-aououal", +"rabi'-out-tani", +"Rablay-sur-Layon", +"Rachecourt-sur-Marne", +"Rachecourt-Suzémont", +"racine-blanche", +"racines-blanches", +"radars-tronçons", +"radar-tronçon", +"Raddon-et-Chapendu", +"radicale-socialiste", +"radicales-socialistes", +"radical-socialisme", +"radical-socialismes", +"radical-socialiste", +"radicaux-socialistes", +"Radinghem-en-Weppes", +"radio-actinium", +"radio-activité", +"radio-activités", +"radio-amateur", +"radio-amateurs", +"radio-canadien", +"radio-carpien", +"radio-carpienne", +"radio-carpiennes", +"radio-carpiens", +"radio-crochet", +"radio-crochets", +"radio-cubital", +"radio-diffusion", +"radio-étiquette", +"radio-étiquettes", +"radio-gramophone", +"radio-gramophones", +"radio-identification", +"radio-identifications", +"radio-interféromètre", +"radio-interféromètres", +"radio-isotope", +"radio-isotopes", +"radio-opacité", +"radio-opacités", +"radio-palmaire", +"radio-phonographe", +"radio-phonographes", +"radio-réalité", +"radio-réalités", +"radio-réveil", +"radio-taxi", +"radio-télévisé", +"radio-télévisée", +"radio-télévisées", +"radio-télévisés", +"radio-télévision", +"radio-télévisions", +"radio-thorium", +"rad-soc", +"rad'soc", +"rad-socs", +"rad'socs", +"Ragow-Merz", +"rag-time", +"rag-times", +"Raguhn-Jeßnitz", +"rahat-lokoum", +"rahat-lokoums", +"rahat-loukoum", +"rahat-loukoums", +"raid-aventure", +"rai-de-coeur", +"rai-de-cœur", +"raie-aigle", +"raie-guitare", +"raie-papillon", +"raies-aigles", +"raies-papillons", +"Raillencourt-Sainte-Olle", +"rail-road", +"rail-route", +"Raï'n'B", +"rais-de-coeur", +"rais-de-cœur", +"raisin-de-chien", +"raisins-de-chien", +"Raissac-d'Aude", +"Raissac-sur-Lampy", +"Ralbitz-Rosenthal", +"ralé-poussé", +"râlé-poussé", +"Râlé-Poussé", +"rallie-papier", +"rallonge-bouton", +"rallonge-boutons", +"ramasse-bourrier", +"ramasse-bourriers", +"ramasse-couvert", +"ramasse-couverts", +"ramasse-miette", +"ramasse-miettes", +"ramasse-monnaie", +"ramasse-poussière", +"ramasse-poussières", +"ramasse-ton-bras", +"ramasseuse-presse", +"ramasseuses-presses", +"Rambluzin-et-Benoite-Vaux", +"Ramegnies-Chin", +"Ramillies-Offus", +"Ramonville-Saint-Agne", +"(R)-amphétamine", +"Ramstein-Miesenbach", +"Rancourt-sur-Ornain", +"Rang-du-Fliers", +"Ransbach-Baumbach", +"Ranspach-le-Bas", +"Ranspach-le-Haut", +"Ranville-Breuillaud", +"Raon-aux-Bois", +"Raon-lès-Leau", +"Raon-l'Etape", +"Raon-l'Étape", +"Raon-sur-Plaine", +"Rapide-Danseurois", +"Rapperswil-Jona", +"Raschau-Markersbach", +"ras-de-cou", +"rase-motte", +"rase-mottes", +"rase-pet", +"rase-pets", +"ras-la-moule", +"ras-le-bol", +"ras-le-bonbon", +"ras-le-cresson", +"ras-les-fesses", +"rat-baillet", +"rat-bayard", +"rat-de-cave", +"rat-garou", +"ratisse-caisse", +"rats-de-cave", +"rats-garous", +"rat-taupe", +"rat-trompette", +"Raucourt-au-Bois", +"Raucourt-et-Flaba", +"Rauville-la-Bigot", +"Rauville-la-Place", +"Ravel-et-Ferriers", +"Raville-sur-Sânon", +"Raye-sur-Authie", +"ray-grass", +"Rayol-Canadel-sur-Mer", +"Ray-sur-Saône", +"Razac-de-Saussignac", +"Razac-d'Eymet", +"Razac-sur-l'Isle", +"raz-de-marée", +"ready-made", +"reality-show", +"reality-shows", +"réal-politique", +"réal-politiques", +"réarc-bouta", +"réarc-boutai", +"réarc-boutaient", +"réarc-boutais", +"réarc-boutait", +"réarc-boutâmes", +"réarc-boutant", +"réarc-boutas", +"réarc-boutasse", +"réarc-boutassent", +"réarc-boutasses", +"réarc-boutassiez", +"réarc-boutassions", +"réarc-boutât", +"réarc-boutâtes", +"réarc-boute", +"réarc-bouté", +"réarc-boutée", +"réarc-boutées", +"réarc-boutent", +"réarc-bouter", +"réarc-boutera", +"réarc-bouterai", +"réarc-bouteraient", +"réarc-bouterais", +"réarc-bouterait", +"réarc-bouteras", +"réarc-boutèrent", +"réarc-bouterez", +"réarc-bouteriez", +"réarc-bouterions", +"réarc-bouterons", +"réarc-bouteront", +"réarc-boutes", +"réarc-boutés", +"réarc-boutez", +"réarc-boutiez", +"réarc-boutions", +"réarc-boutons", +"Réaup-Lisse", +"Rebecq-Rognon", +"Rebreuve-Ranchicourt", +"Rebreuve-sur-Canche", +"rebrousse-poil", +"réception-cadeaux", +"Recey-sur-Ource", +"Rechenberg-Bienenmühle", +"Réchicourt-la-Petite", +"Réchicourt-le-Château", +"récipient-mesure", +"récipient-mesures", +"Reckange-sur-Mess", +"Reckingen-Gluringen", +"Recologne-lès-Rioz", +"Recoubeau-Jansac", +"Recoules-d'Aubrac", +"Recoules-de-Fumas", +"Recoules-Prévinquières", +"recourbe-cils", +"Récourt-le-Creux", +"Recques-sur-Course", +"Recques-sur-Hem", +"recto-vaginal", +"recto-verso", +"redouble-cliqua", +"redouble-cliquai", +"redouble-cliquaient", +"redouble-cliquais", +"redouble-cliquait", +"redouble-cliquâmes", +"redouble-cliquant", +"redouble-cliquas", +"redouble-cliquasse", +"redouble-cliquassent", +"redouble-cliquasses", +"redouble-cliquassiez", +"redouble-cliquassions", +"redouble-cliquât", +"redouble-cliquâtes", +"redouble-clique", +"redouble-cliqué", +"redouble-cliquent", +"redouble-cliquer", +"redouble-cliquera", +"redouble-cliquerai", +"redouble-cliqueraient", +"redouble-cliquerais", +"redouble-cliquerait", +"redouble-cliqueras", +"redouble-cliquèrent", +"redouble-cliquerez", +"redouble-cliqueriez", +"redouble-cliquerions", +"redouble-cliquerons", +"redouble-cliqueront", +"redouble-cliques", +"redouble-cliquez", +"redouble-cliquiez", +"redouble-cliquions", +"redouble-cliquons", +"redresse-seins", +"re'em", +"re'ems", +"réentr'apercevaient", +"réentr'apercevais", +"réentr'apercevait", +"réentr'apercevant", +"réentr'apercevez", +"réentr'aperceviez", +"réentr'apercevions", +"réentr'apercevoir", +"réentr'apercevons", +"réentr'apercevra", +"réentr'apercevrai", +"réentr'apercevraient", +"réentr'apercevrais", +"réentr'apercevrait", +"réentr'apercevras", +"réentr'apercevrez", +"réentr'apercevriez", +"réentr'apercevrions", +"réentr'apercevrons", +"réentr'apercevront", +"réentr'aperçois", +"réentr'aperçoit", +"réentr'aperçoive", +"réentr'aperçoivent", +"réentr'aperçoives", +"réentr'aperçu", +"réentr'aperçue", +"réentr'aperçues", +"réentr'aperçûmes", +"réentr'aperçurent", +"réentr'aperçus", +"réentr'aperçusse", +"réentr'aperçussent", +"réentr'aperçusses", +"réentr'aperçussiez", +"réentr'aperçussions", +"réentr'aperçut", +"réentr'aperçût", +"réentr'aperçûtes", +"réentr'ouvert", +"réentr'ouverte", +"réentr'ouvertes", +"réentr'ouverts", +"réentr'ouvraient", +"réentr'ouvrais", +"réentr'ouvrait", +"réentr'ouvrant", +"réentr'ouvre", +"réentr'ouvrent", +"réentr'ouvres", +"réentr'ouvrez", +"réentr'ouvriez", +"réentr'ouvrîmes", +"réentr'ouvrions", +"réentr'ouvrir", +"réentr'ouvrira", +"réentr'ouvrirai", +"réentr'ouvriraient", +"réentr'ouvrirais", +"réentr'ouvrirait", +"réentr'ouvriras", +"réentr'ouvrirent", +"réentr'ouvrirez", +"réentr'ouvririez", +"réentr'ouvririons", +"réentr'ouvrirons", +"réentr'ouvriront", +"réentr'ouvris", +"réentr'ouvrisse", +"réentr'ouvrissent", +"réentr'ouvrisses", +"réentr'ouvrissiez", +"réentr'ouvrissions", +"réentr'ouvrit", +"réentr'ouvrît", +"réentr'ouvrîtes", +"réentr'ouvrons", +"Réez-Fosse-Martin", +"refox-trotta", +"refox-trottai", +"refox-trottaient", +"refox-trottais", +"refox-trottait", +"refox-trottâmes", +"refox-trottant", +"refox-trottas", +"refox-trottasse", +"refox-trottassent", +"refox-trottasses", +"refox-trottassiez", +"refox-trottassions", +"refox-trottât", +"refox-trottâtes", +"refox-trotte", +"refox-trotté", +"refox-trottent", +"refox-trotter", +"refox-trottera", +"refox-trotterai", +"refox-trotteraient", +"refox-trotterais", +"refox-trotterait", +"refox-trotteras", +"refox-trottèrent", +"refox-trotterez", +"refox-trotteriez", +"refox-trotterions", +"refox-trotterons", +"refox-trotteront", +"refox-trottes", +"refox-trottez", +"refox-trottiez", +"refox-trottions", +"refox-trottons", +"regardez-moi", +"régis-borgien", +"Régis-Borgien", +"régis-borgienne", +"Régis-Borgienne", +"régis-borgiennes", +"Régis-Borgiennes", +"régis-borgiens", +"Régis-Borgiens", +"Regis-Breitingen", +"Regnéville-sur-Mer", +"Regnéville-sur-Meuse", +"Régnié-Durette", +"Regnière-Ecluse", +"Regnière-Écluse", +"Rehburg-Loccum", +"Rehlingen-Siersburg", +"Rehm-Flehde-Bargen", +"Reichenbach-Steegen", +"Reichenow-Möglin", +"Reignac-sur-Indre", +"Reigneville-Bocage", +"Reignier-Esery", +"Reignier-Ésery", +"Reims-la-Brûlée", +"reine-claude", +"reine-des-bois", +"reine-des-prés", +"reine-marguerite", +"reines-claudes", +"reines-des-bois", +"reines-des-prés", +"reines-marguerites", +"Reinhardtsdorf-Schöna", +"Rejet-de-Beaulieu", +"relève-gravure", +"relève-gravures", +"relève-moustache", +"relève-moustaches", +"relève-quartier", +"relève-quartiers", +"relève-selle", +"relève-selles", +"Rémalard-en-Perche", +"Rembercourt-Sommaisne", +"Rembercourt-sur-Mad", +"Remda-Teichel", +"Rémering-lès-Hargarten", +"Rémering-lès-Puttelange", +"remettez-vous", +"remicro-onda", +"remicro-ondai", +"remicro-ondaient", +"remicro-ondais", +"remicro-ondait", +"remicro-ondâmes", +"remicro-ondant", +"remicro-ondas", +"remicro-ondasse", +"remicro-ondassent", +"remicro-ondasses", +"remicro-ondassiez", +"remicro-ondassions", +"remicro-ondât", +"remicro-ondâtes", +"remicro-onde", +"remicro-ondé", +"remicro-ondée", +"remicro-ondées", +"remicro-ondent", +"remicro-onder", +"remicro-ondera", +"remicro-onderai", +"remicro-onderaient", +"remicro-onderais", +"remicro-onderait", +"remicro-onderas", +"remicro-ondèrent", +"remicro-onderez", +"remicro-onderiez", +"remicro-onderions", +"remicro-onderons", +"remicro-onderont", +"remicro-ondes", +"remicro-ondés", +"remicro-ondez", +"remicro-ondiez", +"remicro-ondions", +"remicro-ondons", +"Remilly-Aillicourt", +"Remilly-en-Montagne", +"Remilly-les-Pothées", +"Remilly-sur-Lozon", +"Remilly-sur-Tille", +"Remilly-Wirquin", +"remilly-wirquinois", +"Remilly-Wirquinois", +"remilly-wirquinoise", +"Remilly-Wirquinoise", +"remilly-wirquinoises", +"Remilly-Wirquinoises", +"Remire-Montjoly", +"Rémondans-Vaivre", +"remonte-pente", +"remonte-pentes", +"Remoray-Boujeons", +"Rems-Murr", +"remue-ménage", +"remue-ménages", +"remue-méninge", +"remue-méninges", +"remue-queue", +"remue-queues", +"rémy-montais", +"Rémy-Montais", +"rémy-montaise", +"Rémy-Montaise", +"rémy-montaises", +"Rémy-Montaises", +"renarde-garou", +"renard-garou", +"rendez-vous", +"r'endormaient", +"r'endormais", +"r'endormait", +"r'endormant", +"r'endorme", +"r'endorment", +"r'endormes", +"r'endormez", +"r'endormi", +"r'endormie", +"r'endormies", +"r'endormiez", +"r'endormîmes", +"r'endormions", +"r'endormir", +"r'endormira", +"r'endormirai", +"r'endormiraient", +"r'endormirais", +"r'endormirait", +"r'endormiras", +"r'endormirent", +"r'endormirez", +"r'endormiriez", +"r'endormirions", +"r'endormirons", +"r'endormiront", +"r'endormis", +"r'endormisse", +"r'endormissent", +"r'endormisses", +"r'endormissiez", +"r'endormissions", +"r'endormit", +"r'endormît", +"r'endormîtes", +"r'endormons", +"r'endors", +"r'endort", +"Rendsburg-Eckernförde", +"Rennes-en-Grenouilles", +"Rennes-le-Château", +"Rennes-les-Bains", +"rennes-robots", +"Rennes-sur-Loue", +"renouée-bambou", +"rentre-dedans", +"rentr'ouvert", +"rentr'ouverte", +"rentr'ouvertes", +"rentr'ouverts", +"rentr'ouvraient", +"rentr'ouvrais", +"rentr'ouvrait", +"rentr'ouvrant", +"rentr'ouvre", +"rentr'ouvrent", +"rentr'ouvres", +"rentr'ouvrez", +"rentr'ouvriez", +"rentr'ouvrîmes", +"rentr'ouvrions", +"rentr'ouvrir", +"rentr'ouvrira", +"rentr'ouvrirai", +"rentr'ouvriraient", +"rentr'ouvrirais", +"rentr'ouvrirait", +"rentr'ouvriras", +"rentr'ouvrirent", +"rentr'ouvrirez", +"rentr'ouvririez", +"rentr'ouvririons", +"rentr'ouvrirons", +"rentr'ouvriront", +"rentr'ouvris", +"rentr'ouvrisse", +"rentr'ouvrissent", +"rentr'ouvrisses", +"rentr'ouvrissiez", +"rentr'ouvrissions", +"rentr'ouvrit", +"rentr'ouvrît", +"rentr'ouvrîtes", +"rentr'ouvrons", +"renvoi-instruire", +"repetit-déjeuna", +"repetit-déjeunai", +"repetit-déjeunaient", +"repetit-déjeunais", +"repetit-déjeunait", +"repetit-déjeunâmes", +"repetit-déjeunant", +"repetit-déjeunas", +"repetit-déjeunasse", +"repetit-déjeunassent", +"repetit-déjeunasses", +"repetit-déjeunassiez", +"repetit-déjeunassions", +"repetit-déjeunât", +"repetit-déjeunâtes", +"repetit-déjeune", +"repetit-déjeuné", +"repetit-déjeunent", +"repetit-déjeuner", +"repetit-déjeunera", +"repetit-déjeunerai", +"repetit-déjeuneraient", +"repetit-déjeunerais", +"repetit-déjeunerait", +"repetit-déjeuneras", +"repetit-déjeunèrent", +"repetit-déjeunerez", +"repetit-déjeuneriez", +"repetit-déjeunerions", +"repetit-déjeunerons", +"repetit-déjeuneront", +"repetit-déjeunes", +"repetit-déjeunez", +"repetit-déjeuniez", +"repetit-déjeunions", +"repetit-déjeunons", +"repique-niqua", +"repique-niquai", +"repique-niquaient", +"repique-niquais", +"repique-niquait", +"repique-niquâmes", +"repique-niquant", +"repique-niquas", +"repique-niquasse", +"repique-niquassent", +"repique-niquasses", +"repique-niquassiez", +"repique-niquassions", +"repique-niquât", +"repique-niquâtes", +"repique-nique", +"repique-niqué", +"repique-niquent", +"repique-niquer", +"repique-niquera", +"repique-niquerai", +"repique-niqueraient", +"repique-niquerais", +"repique-niquerait", +"repique-niqueras", +"repique-niquèrent", +"repique-niquerez", +"repique-niqueriez", +"repique-niquerions", +"repique-niquerons", +"repique-niqueront", +"repique-niques", +"repique-niquez", +"repique-niquiez", +"repique-niquions", +"repique-niquons", +"répondeur-enregistreur", +"répondeur-enregistreurs", +"repose-pied", +"repose-pieds", +"repose-poignet", +"repose-poignets", +"repose-tête", +"repose-têtes", +"requin-baleine", +"requin-chabot", +"requin-chat", +"requin-chats", +"requin-citron", +"requin-corail", +"requin-crocodile", +"requin-garou", +"requin-griset", +"requin-hâ", +"requin-maquereau", +"requin-marteau", +"requin-nourrice", +"requin-renard", +"requins-baleines", +"requins-citrons", +"requins-crocodiles", +"requins-garous", +"requins-hâ", +"requins-marteaux", +"requins-taupes", +"requins-tigres", +"requin-taupe", +"requin-taureau", +"requin-tigre", +"requin-vache", +"requin-zèbre", +"r'es", +"résino-gommeux", +"Ressons-l'Abbaye", +"Ressons-le-Long", +"Ressons-sur-Matz", +"r'est", +"restaurant-bar", +"restaurant-bistro", +"restaurant-brasserie", +"restaurant-pub", +"restaurants-bistros", +"reste-avec", +"resto-bar", +"resto-bistro", +"resto-brasserie", +"rest-o-pack", +"resto-pub", +"r'étaient", +"r'étais", +"r'était", +"r'étant", +"r'été", +"r'êtes", +"r'étiez", +"r'étions", +"retraite-chapeau", +"retraites-chapeaux", +"r'être", +"retroussons-nos-manches", +"Reuil-en-Brie", +"Reuilly-Sauvigny", +"Reuil-sur-Brêche", +"Reulle-Vergy", +"réunion-bilan", +"réunions-bilan", +"rêve-creux", +"réveille-matin", +"réveille-matins", +"réveil-matin", +"Revel-Tourdan", +"revenant-bon", +"revenants-bons", +"revenez-y", +"Reventin-Vaugris", +"Revest-des-Brousses", +"Revest-du-Bion", +"Revest-les-Roches", +"Revest-Saint-Martin", +"Revigny-sur-Ornain", +"Réville-aux-Bois", +"rex-castor", +"rex-castors", +"rez-de-chaussée", +"rez-de-cour", +"rez-de-jardin", +"rez-mur", +"Rheda-Wiedenbrück", +"Rheingau-Taunus", +"Rhêmes-Notre-Dame", +"Rhêmes-Saint-Georges", +"Rhénanie-du-Nord-Westphalie", +"Rhénanie-Palatinat", +"rhéo-épaississant", +"rhéo-épaississante", +"rhéo-épaississantes", +"rhéo-épaississants", +"rhéo-fluidifiant", +"rhéo-fluidifiante", +"rhéo-fluidifiantes", +"rhéo-fluidifiants", +"rhéto-roman", +"rhéto-romane", +"rhéto-romanes", +"rhéto-romans", +"Rhin-Berg", +"Rhin-Erft", +"Rhin-Hunsrück", +"Rhin-Lahn", +"Rhin-Neckar", +"Rhin-Palatinat", +"Rhin-Sieg", +"Rhode-Sainte-Agathe", +"Rhode-Saint-Genèse", +"Rhode-Saint-Pierre", +"rhodesian-ridgeback", +"Rhône-Alpes", +"Rhön-Grabfeld", +"Ria-Sirach", +"ria-sirachois", +"Ria-Sirachois", +"ria-sirachoise", +"Ria-Sirachoise", +"ria-sirachoises", +"Ria-Sirachoises", +"Ribaute-les-Tavernes", +"Ribécourt-Dreslincourt", +"Ribécourt-la-Tour", +"Ribemont-sur-Ancre", +"Ribnitz-Damgarten", +"ric-à-rac", +"Ricarville-du-Val", +"Richebourg-Saint-Vaast", +"Richelieu-Yamaskois", +"rick-rolla", +"rick-rollai", +"rick-rollaient", +"rick-rollais", +"rick-rollait", +"rick-rollâmes", +"rick-rollant", +"rick-rollas", +"rick-rollasse", +"rick-rollassent", +"rick-rollasses", +"rick-rollassiez", +"rick-rollassions", +"rick-rollât", +"rick-rollâtes", +"rick-rolle", +"rick-rollé", +"rick-rollée", +"rick-rollées", +"rick-rollent", +"rick-roller", +"rick-rollera", +"rick-rollerai", +"rick-rolleraient", +"rick-rollerais", +"rick-rollerait", +"rick-rolleras", +"rick-rollèrent", +"rick-rollerez", +"rick-rolleriez", +"rick-rollerions", +"rick-rollerons", +"rick-rolleront", +"rick-rolles", +"rick-rollés", +"rick-rollez", +"rick-rolliez", +"rick-rollions", +"rick-rollons", +"ric-rac", +"Riec-sur-Bélon", +"Ried-Brig", +"Rielasingen-Worblingen", +"Riel-les-Eaux", +"Riencourt-lès-Bapaume", +"Riencourt-lès-Cagnicourt", +"Rieschweiler-Mühlbach", +"Rietheim-Weilheim", +"Rietz-Neuendorf", +"Rietzneuendorf-Staakow", +"Rieutort-de-Randon", +"Rieux-de-Pelleport", +"Rieux-en-Cambrésis", +"Rieux-en-Val", +"rieux-en-valois", +"Rieux-en-Valois", +"rieux-en-valoise", +"Rieux-en-Valoise", +"rieux-en-valoises", +"Rieux-en-Valoises", +"Rieux-Minervois", +"Rieux-Volvestre", +"rigaud-montain", +"Rigaud-Montain", +"rigaud-montaine", +"Rigaud-Montaine", +"rigaud-montaines", +"Rigaud-Montaines", +"rigaud-montains", +"Rigaud-Montains", +"Rigil-K", +"Rignieux-le-Franc", +"Rigny-la-Nonneuse", +"Rigny-la-Salle", +"Rigny-le-Ferron", +"Rigny-Saint-Martin", +"Rigny-sur-Arroux", +"Rigny-Ussé", +"rigny-usséen", +"Rigny-Usséen", +"rigny-usséenne", +"Rigny-Usséenne", +"rigny-usséennes", +"Rigny-Usséennes", +"rigny-usséens", +"Rigny-Usséens", +"Rig-Véda", +"Rijssen-Holten", +"Rilhac-Lastours", +"Rilhac-Rancon", +"Rilhac-Treignac", +"Rilhac-Xaintrie", +"Rilland-Bath", +"Rillieux-la-Pape", +"Rilly-aux-Oies", +"Rilly-la-Montagne", +"Rilly-Sainte-Syre", +"Rilly-sur-Aisne", +"Rilly-sur-Loire", +"Rilly-sur-Vienne", +"Rimbach-près-Guebwiller", +"Rimbach-près-Masevaux", +"Rimbez-et-Baudiets", +"Rimon-et-Savel", +"rince-bouche", +"rince-bouches", +"rince-bouteille", +"rince-bouteilles", +"rince-doigt", +"rince-doigts", +"Riom-ès-Montagnes", +"Riom-Parsonz", +"Rion-des-Landes", +"Rioux-Martin", +"Risch-Rotkreuz", +"Ris-Orangis", +"risque-tout", +"Risum-Lindholm", +"Rivas-Vaciamadrid", +"Rive-de-Gier", +"Rivedoux-Plage", +"Rive-Nord", +"Rives-en-Seine", +"Rive-Sud", +"Rive-Sudois", +"Riviera-Pays-d'Enhaut", +"Rivière-Devant", +"Rivière-du-Loup", +"Rivière-les-Fosses", +"Rivière-Pilote", +"Rivière-Saas-et-Gourby", +"Rivière-Salée", +"Rivières-le-Bois", +"Rivière-sur-Tarn", +"Rizaucourt-Buchey", +"riz-pain-sel", +"R'n'B", +"road-book", +"road-books", +"Roannes-Saint-Mary", +"roast-beef", +"roast-beefs", +"robe-chandail", +"robe-housse", +"Robert-Espagne", +"robert-le-diable", +"Robert-Magny", +"robert-messin", +"Robert-Messin", +"robert-messine", +"Robert-Messine", +"robert-messines", +"Robert-Messines", +"robert-messins", +"Robert-Messins", +"robes-chandails", +"robes-housses", +"Robiac-Rochessadoule", +"Robleda-Cervantes", +"robot-chien", +"robots-chiens", +"roche-blanchais", +"Roche-Blanchais", +"roche-blanchaise", +"Roche-Blanchaise", +"roche-blanchaises", +"Roche-Blanchaises", +"Roche-Charles-la-Mayrand", +"Roche-d'Agoux", +"Roche-en-Régnier", +"Roche-et-Méry", +"Roche-et-Raucourt", +"Rochefort-du-Gard", +"Rochefort-en-Terre", +"Rochefort-en-Valdaine", +"Rochefort-en-Yvelines", +"Rochefort-Montagne", +"Rochefort-Samson", +"Rochefort-sur-Brévon", +"Rochefort-sur-la-Côte", +"Rochefort-sur-Loire", +"Rochefort-sur-Nenon", +"Roche-la-Molière", +"Roche-le-Peyroux", +"Roche-lès-Clerval", +"Roche-lez-Beaupré", +"roche-mère", +"roche-papier-ciseaux", +"Roche-Saint-Secret-Béconne", +"Roches-Bettaincourt", +"Roches-lès-Blamont", +"roches-mères", +"Roches-Prémarie-Andillé", +"Roches-sur-Marne", +"Roches-sur-Rognon", +"Roche-sur-Linotte-et-Sorans-les-Cordiers", +"Rochetaillée-sur-Saône", +"Rochy-Condé", +"rock-a-billy", +"rocking-chair", +"rocking-chairs", +"rock'n'roll", +"Roclenge-Looz", +"Roclenge-sur-Geer", +"Roc-Libre", +"Rocourt-Saint-Martin", +"Rocquigny-la-Hardoye", +"Rodengo-Saiano", +"Rödersheim-Gronau", +"Roesbrugge-Haringe", +"Roézé-sur-Sarthe", +"roge-bougeron", +"Roge-Bougeron", +"roge-bougeronne", +"Roge-Bougeronne", +"roge-bougeronnes", +"Roge-Bougeronnes", +"roge-bougerons", +"Roge-Bougerons", +"roger-bontemps", +"rogne-cul", +"rogne-pied", +"rogne-pieds", +"rogne-salaires", +"Rogny-les-Sept-Ecluses", +"Rogny-les-Sept-Écluses", +"Rohrbach-lès-Bitche", +"roi-de-rats", +"Roinville-sous-Auneau", +"rois-de-rats", +"Roi-Soleil", +"Roissy-en-Brie", +"Roissy-en-France", +"Rollegem-Kapelle", +"Rolleghem-Cappelle", +"roller-derby", +"roller-derbys", +"roll-out", +"roll-outs", +"Romagne-sous-les-Côtes", +"Romagne-sous-Montfaucon", +"Romagny-Fontenay", +"Romagny-sous-Rougemont", +"Romain-aux-Bois", +"Romainmôtier-Envy", +"Romain-sur-Meuse", +"Romanèche-Thorins", +"Romanel-sur-Lausanne", +"Romanel-sur-Morges", +"roman-feuilleton", +"roman-fleuve", +"roman-photo", +"roman-photos", +"romans-feuilletons", +"romans-fleuves", +"romans-photos", +"Romans-sur-Isère", +"Rombach-le-Franc", +"Rombies-et-Marchipont", +"Romeny-sur-Marne", +"Romilly-la-Puthenaye", +"Romilly-sur-Aigre", +"Romilly-sur-Andelle", +"Romilly-sur-Seine", +"Romorantin-Lanthenay", +"rompt-pierre", +"rompt-pierres", +"Roncherolles-en-Bray", +"Roncherolles-sur-le-Vivier", +"rond-de-cuir", +"ronde-bosse", +"ronde-bosses", +"rondes-bosses", +"rond-point", +"rond-ponna", +"rond-ponnai", +"rond-ponnaient", +"rond-ponnais", +"rond-ponnait", +"rond-ponnâmes", +"rond-ponnant", +"rond-ponnas", +"rond-ponnasse", +"rond-ponnassent", +"rond-ponnasses", +"rond-ponnassiez", +"rond-ponnassions", +"rond-ponnât", +"rond-ponnâtes", +"rond-ponne", +"rond-ponné", +"rond-ponnent", +"rond-ponner", +"rond-ponnera", +"rond-ponnerai", +"rond-ponneraient", +"rond-ponnerais", +"rond-ponnerait", +"rond-ponneras", +"rond-ponnèrent", +"rond-ponnerez", +"rond-ponneriez", +"rond-ponnerions", +"rond-ponnerons", +"rond-ponneront", +"rond-ponnes", +"rond-ponnez", +"rond-ponniez", +"rond-ponnions", +"rond-ponnons", +"ronds-de-cuir", +"ronds-points", +"ronge-bois", +"ronge-maille", +"rongo-rongo", +"ron-ron", +"Ronzo-Chienis", +"Roôcourt-la-Côte", +"Roodt-sur-Eisch", +"Roodt-sur-Syre", +"Roost-Warendin", +"roost-warendinois", +"Roost-Warendinois", +"roost-warendinoise", +"Roost-Warendinoise", +"roost-warendinoises", +"Roost-Warendinoises", +"Roquebrune-Cap-Martin", +"Roquebrune-sur-Argens", +"Roquecourbe-Minervois", +"Roquefort-de-Sault", +"Roquefort-des-Corbières", +"Roquefort-la-Bédoule", +"Roquefort-les-Cascades", +"Roquefort-les-Pins", +"Roquefort-sur-Garonne", +"Roquefort-sur-Soulzon", +"Roquelaure-Saint-Aubin", +"Roquestéron-Grasse", +"Rorbach-lès-Dieuze", +"Ro-Ro", +"Ro-Ros", +"Rosay-sur-Lieure", +"rose-croix", +"rose-de-mer", +"Rose-Marie", +"rose-marine", +"Rosenthal-Bielatal", +"roses-marines", +"Roset-Fluans", +"Rosières-aux-Salines", +"Rosières-devant-Bar", +"Rosières-en-Blois", +"Rosières-en-Haye", +"Rosières-en-Santerre", +"Rosières-près-Troyes", +"Rosières-sur-Barbèche", +"Rosières-sur-Mance", +"Rosiers-d'Egletons", +"Rosiers-d'Égletons", +"Rosiers-de-Juillac", +"Rosnay-l'Hôpital", +"Rosny-sous-Bois", +"Rosny-sur-Seine", +"Rosoux-Crenwick", +"Rosoy-en-Multien", +"Rosoy-le-Vieil", +"Rosoy-sur-Amance", +"rosti-montois", +"Rosti-Montois", +"rosti-montoise", +"Rosti-Montoise", +"rosti-montoises", +"Rosti-Montoises", +"Rotheux-Rimière", +"Rötsweiler-Nockenthal", +"Rottach-Egern", +"Rottal-Inn", +"Rouessé-Fontaine", +"Rouessé-Vassé", +"Rouffiac-d'Aude", +"Rouffiac-des-Corbières", +"Rouffiac-Tolosan", +"Rouffignac-de-Sigoulès", +"Rouffignac-Saint-Cernin-de-Reilhac", +"rouge-aile", +"rouge-bord", +"rouge-brun", +"rouge-flasher", +"rouge-gorge", +"rouge-herbe", +"rouge-herbes", +"Rougemont-le-Château", +"rouge-noir", +"Rouge-Perriers", +"rouge-pie", +"rouge-queue", +"rouges-ailes", +"rouges-gorges", +"rouges-queues", +"rouget-barbet", +"rouget-grondin", +"Rouilly-Sacey", +"Rouilly-Saint-Loup", +"roulage-décollage", +"roulé-boulé", +"roule-goupille", +"roule-goupilles", +"rouler-bouler", +"roulé-saucisse", +"roulés-boulés", +"roule-ta-bosse", +"Roullet-Saint-Estèphe", +"roullet-stéphanois", +"Roullet-Stéphanois", +"roullet-stéphanoise", +"Roullet-Stéphanoise", +"roullet-stéphanoises", +"Roullet-Stéphanoises", +"roul-sa-bosse", +"Rou-Marson", +"Roumazières-Loubert", +"Rouperroux-le-Coquet", +"Rousseau-esque", +"Rousseau-esques", +"rousses-têtes", +"rousse-tête", +"Rousset-les-Vignes", +"Roussillon-en-Morvan", +"Roussy-le-Village", +"r'ouvert", +"r'ouverte", +"r'ouvertes", +"r'ouverts", +"r'ouvraient", +"r'ouvrais", +"r'ouvrait", +"r'ouvrant", +"Rouvray-Catillon", +"Rouvray-Saint-Denis", +"Rouvray-Sainte-Croix", +"Rouvray-Saint-Florentin", +"r'ouvre", +"r'ouvrent", +"r'ouvres", +"Rouvres-en-Multien", +"Rouvres-en-Plaine", +"Rouvres-en-Woëvre", +"Rouvres-en-Xaintois", +"Rouvres-la-Chétive", +"Rouvres-les-Bois", +"Rouvres-les-Vignes", +"Rouvres-Saint-Jean", +"Rouvres-sous-Meilly", +"Rouvres-sur-Aube", +"r'ouvrez", +"r'ouvriez", +"r'ouvrîmes", +"r'ouvrions", +"r'ouvrir", +"r'ouvrira", +"r'ouvrirai", +"r'ouvriraient", +"r'ouvrirais", +"r'ouvrirait", +"r'ouvriras", +"r'ouvrirent", +"r'ouvrirez", +"r'ouvririez", +"r'ouvririons", +"r'ouvrirons", +"r'ouvriront", +"r'ouvris", +"r'ouvrisse", +"r'ouvrissent", +"r'ouvrisses", +"r'ouvrissiez", +"r'ouvrissions", +"r'ouvrit", +"r'ouvrît", +"r'ouvrîtes", +"Rouvrois-sur-Meuse", +"Rouvrois-sur-Othain", +"r'ouvrons", +"Rouvroy-en-Santerre", +"Rouvroy-les-Merles", +"Rouvroy-les-Pothées", +"Rouvroy-Ripont", +"Rouvroy-sur-Audry", +"Rouvroy-sur-Marne", +"Rouvroy-sur-Serre", +"Rouxmesnil-Bouteilles", +"roux-mirien", +"Roux-Mirien", +"Roux-Mirienne", +"Roux-Miroir", +"Rouy-le-Grand", +"Rouy-le-Petit", +"Rouziers-de-Touraine", +"Roville-aux-Chênes", +"Roville-devant-Bayon", +"Royaucourt-et-Chailvet", +"Royaume-Uni", +"Roy-Boissy", +"Royère-de-Vassivière", +"Roye-sur-Matz", +"Rozay-en-Brie", +"Rozet-Saint-Albin", +"Rozier-Côtes-d'Aurec", +"Rozier-en-Donzy", +"Rozières-en-Beauce", +"Rozières-sur-Crise", +"Rozières-sur-Mouzon", +"Roziers-Saint-Georges", +"Roz-Landrieux", +"Rozoy-Bellevalle", +"Rozoy-le-Vieil", +"Rozoy-sur-Serre", +"Roz-sur-Couesnon", +"RS-232", +"Ruan-sur-Egvonne", +"Rubécourt-et-Lamécourt", +"Rudeau-Ladosse", +"Rudolfstetten-Friedlisberg", +"Rüdtligen-Alchenflüh", +"Rueil-la-Gadelière", +"Rueil-Malmaison", +"Ruelle-sur-Touvre", +"Rueyres-les-Prés", +"Ruffey-le-Château", +"Ruffey-lès-Beaune", +"Ruffey-lès-Echirey", +"Ruffey-lès-Échirey", +"Ruffey-sur-Seille", +"rufino-sulfurique", +"rufino-sulfuriques", +"Ruillé-en-Champagne", +"Ruillé-Froid-Fonds", +"Ruillé-le-Gravelais", +"Ruillé-sur-Loir", +"ruine-babine", +"ruine-babines", +"Rullac-Saint-Cirq", +"Rumersheim-le-Haut", +"Rumilly-en-Cambrésis", +"Rumilly-lès-Vaudes", +"Ruppach-Goldhausen", +"Rupt-aux-Nonains", +"Rupt-devant-Saint-Mihiel", +"Rupt-en-Woëvre", +"Rupt-sur-Moselle", +"Rupt-sur-Othain", +"Rupt-sur-Saône", +"Rurange-lès-Thionville", +"russo-allemand", +"russo-allemande", +"russo-allemandes", +"russo-allemands", +"russo-américain", +"russo-japonaise", +"russo-polonaise", +"Russy-Bémont", +"Ruttersdorf-Lotschen", +"rü'üsá", +"Ruynes-en-Margeride", +"R.-V.", +"S-6-verbénol", +"Saâcy-sur-Marne", +"Saalburg-Ebersdorf", +"Saaldorf-Surheim", +"Saale-Holzland", +"Saale-Orla", +"Saalfeld-Rudolstadt", +"Saâne-Saint-Just", +"Saar-Mark", +"Saas-Almagell", +"Saas-Balen", +"Saas-Fee", +"Saas-Grund", +"Sabadel-Latronquière", +"Sabadel-Lauzès", +"sa'ban", +"Sablé-sur-Sarthe", +"Sablons-sur-Huisne", +"sabre-peuple", +"saccharo-glycose", +"Saceda-Trasierra", +"Sacierges-Saint-Martin", +"sac-jacking", +"Saconin-et-Breuil", +"sac-poubelle", +"sacré-coeur", +"sacré-cœur", +"Sacré-Cœur", +"Sacré-Cœurin", +"Sacré-Cœurois", +"sacro-iliaques", +"sacro-lombaire", +"sacro-saint", +"sacro-sainte", +"sacro-saintement", +"sacro-saintes", +"sacro-saints", +"sacro-vertébral", +"sacs-poubelle", +"sacs-poubelles", +"Sacy-le-Grand", +"Sacy-le-Petit", +"sado-maso", +"sado-masochisme", +"sado-masochiste", +"sado-masochistes", +"safari-parc", +"safari-parcs", +"sage-femme", +"sage-homme", +"sages-femmes", +"Sagnes-et-Goudoulet", +"Saguenay-Jeannois", +"Saguenay-Lac-Saint-Jean", +"sahélo-saharien", +"sahélo-saharienne", +"sahélo-sahariennes", +"sahélo-sahariens", +"saigne-nez", +"Saillat-sur-Vienne", +"Sail-les-Bains", +"Sailly-Achâtel", +"Sailly-au-Bois", +"Sailly-en-Ostrevent", +"Sailly-Flibeaucourt", +"Sailly-Labourse", +"Sailly-Laurette", +"Sailly-le-Sec", +"Sailly-lez-Cambrai", +"Sailly-lez-Lannoy", +"Sailly-Saillisel", +"Sailly-sur-la-Lys", +"Sail-sous-Couzan", +"Sain-Bel", +"sain-belois", +"Sain-Belois", +"sain-beloise", +"Sain-Beloise", +"sain-beloises", +"Sain-Beloises", +"sain-bois", +"Saincaize-Meauce", +"sain-foin", +"Sainghin-en-Mélantois", +"Sainghin-en-Weppes", +"Sains-du-Nord", +"Sains-en-Amiénois", +"Sains-en-Gohelle", +"Sains-lès-Fressin", +"Sains-lès-Marquion", +"Sains-lès-Pernes", +"Sains-Morainvillers", +"Sains-Richaumont", +"Saintry-sur-Seine", +"Saires-la-Verrerie", +"saisie-arrêt", +"saisie-attribution", +"saisie-brandon", +"saisie-exécution", +"saisie-gagerie", +"saisie-revendication", +"saisies-arrêts", +"saisies-attributions", +"saisies-brandons", +"saisies-exécutions", +"saisies-gageries", +"saisies-revendications", +"saisir-arrêter", +"saisir-brandonner", +"saisir-exécuter", +"saisir-gager", +"saisir-revendiquer", +"salafo-sioniste", +"salaire-coût", +"salaire-coûts", +"Salaise-sur-Sanne", +"salamandre-tigre", +"Salies-de-Béarn", +"Salies-du-Salat", +"Salignac-de-Mirambeau", +"Salignac-de-Pons", +"Salignac-Eyvignes", +"Salignac-Eyvigues", +"Salignac-sur-Charente", +"Saligny-le-Vif", +"Saligny-sur-Roudon", +"Salins-Fontaine", +"Salins-les-Bains", +"Salins-les-Thermes", +"Sallèles-Cabardès", +"Sallèles-d'Aude", +"salle-prunetais", +"Salle-Prunetais", +"salle-prunetaise", +"Salle-Prunetaise", +"salle-prunetaises", +"Salle-Prunetaises", +"Salles-Adour", +"Salles-Arbuissonnas-en-Beaujolais", +"Salles-Courbatiès", +"Salles-Curan", +"Salles-d'Angles", +"Salles-d'Armagnac", +"Salles-d'Aude", +"Salles-de-Barbezieux", +"Salles-de-Belvès", +"Salles-de-Villefagnan", +"Salles-en-Toulon", +"Salles-et-Pratviel", +"Salles-la-Source", +"Salles-Lavalette", +"Salles-lès-Aulnay", +"Salles-Mongiscard", +"salles-sourçois", +"Salles-Sourçois", +"salles-sourçoise", +"Salles-Sourçoise", +"salles-sourçoises", +"Salles-Sourçoises", +"Salles-sous-Bois", +"Salles-sur-Garonne", +"Salles-sur-l'Hers", +"Salles-sur-Mer", +"Salm-en-Vosges", +"Salm-Salm", +"Salon-de-Provence", +"Salon-la-Tour", +"Salornay-sur-Guye", +"salpingo-pharyngien", +"Salses-le-Château", +"Salt-en-Donzy", +"Salvagnac-Cajarc", +"Salvatierra-Agurain", +"salve-d'honneur", +"salves-d'honneur", +"Samois-sur-Seine", +"(S)-amphétamine", +"Sampigny-lès-Maranges", +"Samsons-Lion", +"sam'suffit", +"sam'suffits", +"Sana'a", +"Sanary-sur-Mer", +"san-benito", +"san-bérinois", +"San-Bérinois", +"san-bérinoise", +"San-Bérinoise", +"san-bérinoises", +"San-Bérinoises", +"Sancey-le-Grand", +"Sancey-le-Long", +"san-claudien", +"San-Claudien", +"San-Crucien", +"Sancti-Spíritus", +"sancto-bénédictin", +"Sancto-Bénédictin", +"sancto-bénédictine", +"Sancto-Bénédictine", +"sancto-bénédictines", +"Sancto-Bénédictines", +"sancto-bénédictins", +"Sancto-Bénédictins", +"sancto-julianais", +"Sancto-Julianais", +"sancto-julianaise", +"Sancto-Julianaise", +"sancto-julianaises", +"Sancto-Julianaises", +"sancto-prixin", +"Sancto-Prixin", +"sancto-prixine", +"Sancto-Prixine", +"sancto-prixines", +"Sancto-Prixines", +"sancto-prixins", +"Sancto-Prixins", +"Sancy-les-Cheminots", +"Sancy-lès-Provins", +"san-damianais", +"San-Damianais", +"san-damianaise", +"San-Damianaise", +"san-damianaises", +"San-Damianaises", +"San-Damiano", +"san-denien", +"San-Denien", +"san-denienne", +"San-Denienne", +"san-deniennes", +"San-Deniennes", +"san-deniens", +"San-Deniens", +"Sandersdorf-Brehna", +"san-desiderois", +"San-Desiderois", +"san-desideroise", +"San-Desideroise", +"san-desideroises", +"San-Desideroises", +"san-farcios", +"San-Farcios", +"san-farciose", +"San-Farciose", +"san-farcioses", +"San-Farcioses", +"san-ferrois", +"San-Ferrois", +"san-ferroise", +"San-Ferroise", +"san-ferroises", +"San-Ferroises", +"San-Gavino-d'Ampugnani", +"San-Gavino-di-Carbini", +"San-Gavino-di-Fiumorbo", +"San-Gavino-di-Tenda", +"sang-de-bourbe", +"sang-de-dragon", +"san-genestois", +"San-Genestois", +"san-genestoise", +"San-Genestoise", +"san-genestoises", +"San-Genestoises", +"san-germinois", +"San-Germinois", +"san-germinoise", +"San-Germinoise", +"san-germinoises", +"San-Germinoises", +"sang-froid", +"sang-gris", +"San-Giovanni-di-Moriani", +"San-Giuliano", +"sang-mêlé", +"Sang-mêlé", +"sang-mêlés", +"Sang-mêlés", +"Sanilhac-Sagriès", +"sankaku-jime", +"san-lagiron", +"San-Lagiron", +"san-lagirone", +"San-Lagirone", +"san-lagirones", +"San-Lagirones", +"san-lagirons", +"San-Lagirons", +"San-Lorenzo", +"San-Martino-di-Lota", +"san-martinois", +"San-Martinois", +"san-martinoise", +"San-Martinoise", +"san-martinoises", +"San-Martinoises", +"san-miardère", +"San-Miardère", +"san-miardères", +"San-Miardères", +"San-Nicolao", +"san-palous", +"San-Palous", +"san-palouse", +"San-Palouse", +"san-palouses", +"San-Palouses", +"san-pétri-montin", +"San-Pétri-Montin", +"san-pétri-montine", +"San-Pétri-Montine", +"san-pétri-montines", +"San-Pétri-Montines", +"san-pétri-montins", +"San-Pétri-Montins", +"san-pierran", +"San-Pierran", +"san-pierrane", +"San-Pierrane", +"san-pierranes", +"San-Pierranes", +"san-pierrans", +"San-Pierrans", +"San-Priode", +"san-priot", +"San-Priot", +"san-priote", +"san-priotes", +"San-Priotes", +"san-priots", +"San-Priots", +"san-rémois", +"San-Rémois", +"san-rémoise", +"San-Rémoise", +"san-rémoises", +"San-Rémoises", +"Sanry-lès-Vigy", +"Sanry-sur-Nied", +"Sansac-de-Marmiesse", +"Sansac-Veinazès", +"san-salvatorien", +"San-Salvatorien", +"san-salvatorienne", +"San-Salvatorienne", +"san-salvatoriennes", +"San-Salvatoriennes", +"san-salvatoriens", +"San-Salvatoriens", +"Sanssac-l'Eglise", +"Sanssac-l'Église", +"Sant'Agapito", +"Sant'Agnello", +"Sant'Agostino", +"Sant'Alfio", +"Santa-Lucia-di-Mercurio", +"Santa-Lucia-di-Moriani", +"Santa-Maria-di-Lota", +"Santa-Maria-Figaniella", +"Santa-Maria-Poggio", +"Santa-Maria-Siché", +"Sant'Anastasia", +"Sant'Andréa-di-Bozio", +"Sant'Andréa-di-Cotone", +"Sant'Andréa-di-Tallano", +"Sant'Andréa-d'Orcino", +"Sant'Antimo", +"Sant'Antioco", +"Sant'Antonino", +"Sant'Antonio", +"Sant'Apollinare", +"Sant'Arcangelo", +"Santa-Reparata-di-Balagna", +"Santa-Reparata-di-Moriani", +"Sant'Arpino", +"Sant'Arsenio", +"Sant'Elena", +"Santiago-Pontones", +"santi-johanien", +"Santi-Johanien", +"santi-johanienne", +"Santi-Johanienne", +"santi-johaniennes", +"Santi-Johaniennes", +"santi-johaniens", +"Santi-Johaniens", +"Sant'Ippolito", +"Sant'Olcese", +"santoline-cyprès", +"Sant'Omero", +"Sant'Onofrio", +"Santo-Pietro-di-Tenda", +"Santo-Pietro-di-Venaco", +"Sant'Oreste", +"Santpoort-Noord", +"Santpoort-Zuid", +"Sant'Urbano", +"Sanvignes-les-Mines", +"san-vitournaire", +"San-Vitournaire", +"san-vitournaires", +"San-Vitournaires", +"Saône-et-Loire", +"Sap-en-Auge", +"sapeur-pompier", +"sapeurs-pompiers", +"sapeuse-pompière", +"sapeuses-pompières", +"Sapogne-et-Feuchères", +"Sapogne-Feuchères", +"Sapogne-sur-Marche", +"sarclo-buttage", +"sarclo-buttages", +"sarco-épiplocèle", +"sarco-épiplomphale", +"sarco-épiplomphales", +"sarco-hydrocèle", +"sarco-hydrocèles", +"Sardy-lès-Epiry", +"Sardy-lès-Épiry", +"Sargé-lès-le-Mans", +"Sargé-sur-Braye", +"Sariac-Magnoac", +"Sari-di-Porto-Vecchio", +"Sari-d'Orcino", +"Sari-Solenzara", +"Sarlat-la-Canéda", +"Sarliac-sur-l'Isle", +"Saron-sur-Aube", +"Sarre-Palatinat", +"Sarre-Union", +"sarre-unionnais", +"Sarre-Unionnais", +"sarre-unionnaise", +"Sarre-Unionnaise", +"sarre-unionnaises", +"Sarre-Unionnaises", +"Sarriac-Bigorre", +"Sarrola-Carcopino", +"Sarroux-Saint-Julien", +"Sars-et-Rosières", +"Sars-la-Bruyère", +"Sars-la-Buissière", +"Sars-le-Bois", +"Sars-Poteries", +"Sart-Bernard", +"Sart-Custinne", +"Sart-Dames-Avelines", +"sart-dames-avelinois", +"Sart-Dames-Avelinois", +"Sart-Dames-Avelinoise", +"Sart-en-Fagne", +"Sart-Eustache", +"sart-eustachois", +"Sart-Eustachois", +"Sart-Eustachoise", +"Sartilly-Baie-Bocage", +"Sart-Messire-Guillaume", +"Sart-Risbart", +"sart-risbartois", +"Sart-Risbartois", +"Sart-Risbartoise", +"Sart-Saint-Laurent", +"Sas-de-Gand", +"Sassen-Trantow", +"Sassetot-le-Malgardé", +"Sassetot-le-Mauconduit", +"Sassey-sur-Meuse", +"Sassierges-Saint-Germain", +"satellites-espions", +"Sathonay-Camp", +"Sathonay-Village", +"sati-drap", +"Satolas-et-Bonce", +"Sauchy-Cauchy", +"Sauchy-Lestrée", +"Saucourt-sur-Rognon", +"sauf-conduit", +"sauf-conduits", +"Saugnac-et-Cambran", +"saugnac-et-muretois", +"Saugnac-et-Muretois", +"saugnac-et-muretoise", +"Saugnac-et-Muretoise", +"saugnac-et-muretoises", +"Saugnac-et-Muretoises", +"Saugnacq-et-Muret", +"Sauguis-Saint-Etienne", +"Sauguis-Saint-Étienne", +"Saulces-aux-Bois", +"Saulces-Champenoises", +"Saulces-Monclin", +"Saulce-sur-Rhône", +"Saulces-Vieille", +"Saulchoy-sous-Poix", +"Saulchoy-sur-Davenescourt", +"Saulcy-sur-Meurthe", +"Saulgé-l'Hôpital", +"Sauliac-sur-Célé", +"Saulmory-et-Villefranche", +"Saulon-la-Chapelle", +"Saulon-la-Rue", +"Sault-Brénaz", +"Saultchevreuil-du-Tronchet", +"Sault-de-Navailles", +"Sault-lès-Rethel", +"sault-rethelois", +"Sault-Rethelois", +"sault-retheloise", +"Sault-Retheloise", +"sault-retheloises", +"Sault-Retheloises", +"Sault-Saint-Remy", +"Saulx-le-Duc", +"Saulx-lès-Champlon", +"Saulx-les-Chartreux", +"Saulx-Marchais", +"Saulxures-lès-Bulgnéville", +"Saulxures-lès-Nancy", +"Saulxures-lès-Vannes", +"Saulxures-sur-Moselotte", +"Saulzais-le-Potier", +"Saulzet-le-Froid", +"Saumane-de-Vaucluse", +"Saumont-la-Poterie", +"Sauqueuse-Saint-Lucien", +"Sauret-Besserve", +"Saussay-la-Campagne", +"Sausset-les-Pins", +"Sausseuzemare-en-Caux", +"saut-de-lit", +"saut-de-lits", +"saut-de-loup", +"saut-de-mouton", +"saute-au-paf", +"saute-bouchon", +"saute-bouchons", +"saute-en-barque", +"saute-en-bas", +"saute-mouton", +"saute-moutons", +"saute-ruisseau", +"saute-ruisseaux", +"sauts-de-lit", +"sauts-de-mouton", +"Sauvage-Magny", +"Sauvagnat-Sainte-Marthe", +"sauve-l'honneur", +"sauve-qui-peut", +"sauve-rabans", +"Sauveterre-de-Béarn", +"Sauveterre-de-Comminges", +"Sauveterre-de-Guyenne", +"Sauveterre-de-Rouergue", +"Sauveterre-la-Lémance", +"Sauveterre-Saint-Denis", +"sauve-vie", +"Sauviat-sur-Vige", +"Sauvigney-lès-Gray", +"Sauvigney-lès-Pesmes", +"Sauvigny-le-Beuréal", +"Sauvigny-le-Bois", +"Sauvigny-les-Bois", +"Sauvillers-Mongival", +"Saux-et-Pomarède", +"Sauzé-Vaussais", +"Savas-Mépin", +"savez-vous", +"Savignac-de-Duras", +"Savignac-de-l'Isle", +"Savignac-de-Miremont", +"Savignac-de-Nontron", +"Savignac-Lédrier", +"Savignac-les-Eglises", +"Savignac-les-Églises", +"Savignac-les-Ormeaux", +"Savignac-Mona", +"Savignac-sur-Leyze", +"Savigné-l'Evêque", +"Savigné-l'Évêque", +"Savigné-sous-le-Lude", +"Savigné-sur-Lathan", +"Savigny-en-Revermont", +"Savigny-en-Sancerre", +"Savigny-en-Septaine", +"Savigny-en-Terre-Plaine", +"Savigny-en-Véron", +"Savigny-lès-Beaune", +"Savigny-le-Sec", +"Savigny-le-Temple", +"Savigny-Lévescault", +"Savigny-le-Vieux", +"Savigny-Poil-Fol", +"Savigny-sous-Faye", +"Savigny-sous-Mâlain", +"Savigny-sur-Aisne", +"Savigny-sur-Ardres", +"Savigny-sur-Braye", +"Savigny-sur-Clairis", +"Savigny-sur-Grosne", +"Savigny-sur-Orge", +"Savigny-sur-Seille", +"Savines-le-Lac", +"savoir-faire", +"savoir-vivre", +"Savonnières-devant-Bar", +"Savonnières-en-Perthois", +"Savonnières-en-Woëvre", +"Savy-Berlette", +"Saxe-Anhalt", +"Saxe-du-Nord", +"Saxi-Bourdon", +"Saxon-Sion", +"scale-out", +"scale-up", +"scaphoïdo-astragalien", +"scaphoïdo-cuboïdien", +"sceau-cylindre", +"sceau-de-Notre-Dame", +"sceau-de-salomon", +"Sceau-Saint-Angel", +"sceaux-cylindres", +"Sceaux-d'Anjou", +"sceaux-de-Notre-Dame", +"Sceaux-du-Gâtinais", +"Sceaux-sur-Huisne", +"scènes-clés", +"Scey-Maisières", +"Scey-sur-Saône", +"Scey-sur-Saône-et-Saint-Albin", +"Schacht-Audorf", +"Schaffhouse-près-Seltz", +"Schaffhouse-sur-Zorn", +"S-chanf", +"Scharrachbergheim-Irmstett", +"Scheibe-Alsbach", +"Schieder-Schwalenberg", +"Schinznach-Bad", +"Schiphol-Oost", +"Schiphol-Rijk", +"schiste-carton", +"schistes-carton", +"Schlatt-Haslen", +"Schleswig-Flensburg", +"Schleswig-Holstein", +"Schmalkalden-Meiningen", +"Schmogrow-Fehrow", +"Schmölln-Putzkau", +"Schnarup-Thumby", +"Schönau-Berzdorf", +"Schönenberg-Kübelberg", +"Schönwalde-Glien", +"Schouwen-Duiveland", +"Schwalm-Eder", +"Schweigen-Rechtenbach", +"Schweighouse-sur-Moder", +"Schweighouse-Thann", +"scie-cloche", +"science-fictif", +"science-fiction", +"science-fictions", +"sciences-fiction", +"sciences-fictions", +"scies-cloches", +"Scieurac-et-Flourès", +"scirpo-phragmitaie", +"scirpo-phragmitaies", +"Scorbé-Clairvaux", +"scottish-terrier", +"scuto-sternal", +"Scy-Chazelles", +"S.-E.", +"Sealyham-terrier", +"Sébazac-Concourès", +"sèche-cheveu", +"sèche-cheveux", +"sèche-linge", +"séchoir-atomiseur", +"séchoir-atomiseurs", +"seconde-lumière", +"secondes-lumière", +"Secondigné-sur-Belle", +"Secqueville-en-Bessin", +"Sedze-Maubecq", +"See-Gaster", +"Seeheim-Jugenheim", +"Seeon-Seebruck", +"Seeth-Ekholt", +"Séez-Mesnil", +"Ségrie-Fontaine", +"Ségur-le-Château", +"Ségur-les-Villas", +"Seiches-sur-le-Loir", +"Seillons-Source-d'Argens", +"seine-et-marnais", +"Seine-et-Marnais", +"seine-et-marnaise", +"Seine-et-Marnaise", +"seine-et-marnaises", +"Seine-et-Marnaises", +"Seine-et-Marne", +"Seine-et-Oise", +"Seine-Inférieure", +"Seine-Maritime", +"Seine-Port", +"seine-portais", +"Seine-Portais", +"seine-portaise", +"Seine-Portaise", +"seine-portaises", +"Seine-Portaises", +"Seine-Saint-Denis", +"Seitingen-Oberflacht", +"self-control", +"self-défense", +"self-government", +"self-governments", +"self-made-man", +"self-made-mans", +"self-made-men", +"self-made-woman", +"self-made-womans", +"self-made-women", +"self-service", +"self-services", +"Selke-Aue", +"selk'nam", +"Selk'nam", +"Selles-Saint-Denis", +"selles-sur-cher", +"Selles-sur-Cher", +"Selles-sur-Nahon", +"Selon-Jean", +"Selon-Luc", +"Selon-Marc", +"Selon-Matthieu", +"semaine-lumière", +"semaines-lumière", +"Séméacq-Blachon", +"semen-contra", +"Sémézies-Cachan", +"Semoutiers-Montsaon", +"semper-virens", +"Semur-en-Auxois", +"Semur-en-Brionnais", +"Semur-en-Vallon", +"Sénaillac-Latronquière", +"Sénaillac-Lauzès", +"Senargent-Mignafans", +"sénateur-maire", +"sénatus-consulte", +"sénatus-consultes", +"Sencenac-Puy-de-Fourches", +"Senesse-de-Senabugue", +"Senillé-Saint-Sauveur", +"Senlis-le-Sec", +"Sennecé-lès-Mâcon", +"Sennecey-le-Grand", +"Sennecey-lès-Dijon", +"Senneville-sur-Fécamp", +"Sennevoy-le-Bas", +"Sennevoy-le-Haut", +"Senoncourt-les-Maujouy", +"Sens-Beaujeu", +"Sens-de-Bretagne", +"sensori-moteur", +"sensori-moteurs", +"sensori-motrice", +"sensori-motrices", +"sensori-motricité", +"Sens-sur-Seille", +"sent-bon", +"Sentenac-de-Sérou", +"Sentenac-d'Oust", +"Senven-Léhart", +"Seo-yeon", +"Seppois-le-Bas", +"Seppois-le-Haut", +"septante-cinq", +"septante-deux", +"septante-et-un", +"septante-huit", +"septante-neuf", +"septante-quatre", +"septante-sept", +"septante-six", +"septante-trois", +"Septèmes-les-Vallons", +"sept-en-gueule", +"sept-en-huit", +"septentrio-occidental", +"septentrio-occidentale", +"septentrio-occidentales", +"septentrio-occidentaux", +"sept-et-le-va", +"Sept-Forges", +"Sept-Frères", +"sept-frèrien", +"Sept-Frèrien", +"sept-frèrienne", +"Sept-Frèrienne", +"sept-frèriennes", +"Sept-Frèriennes", +"sept-frèriens", +"Sept-Frèriens", +"Sept-Îles", +"Sept-Ilien", +"Sept-Îlien", +"Sept-Îlois", +"Sept-Insulaire", +"Sept-Insulaires", +"Sept-Lacquois", +"sept-mâts", +"Sept-Meules", +"sept-meulois", +"Sept-Meulois", +"sept-meuloise", +"Sept-Meuloise", +"sept-meuloises", +"Sept-Meuloises", +"sept-oeil", +"sept-œil", +"sept-oeils", +"sept-œils", +"Sept-Saulx", +"sept-sortais", +"Sept-Sortais", +"sept-sortaise", +"Sept-Sortaise", +"sept-sortaises", +"Sept-Sortaises", +"Sept-Sorts", +"sept-ventais", +"Sept-Ventais", +"sept-ventaise", +"Sept-Ventaise", +"sept-ventaises", +"Sept-Ventaises", +"Sept-Vents", +"Sepulcro-Hilario", +"Séquano-Dionysien", +"Seraing-le-Château", +"Séranvillers-Forenville", +"Seraucourt-le-Grand", +"Serbie-et-Monténégro", +"serbo-croate", +"Sère-en-Lavedan", +"Sère-Lanso", +"Serémange-Erzange", +"Sère-Rustaing", +"Sérézin-de-la-Tour", +"Sérézin-du-Rhône", +"sergent-chef", +"sergent-major", +"sergents-chefs", +"sergents-majors", +"Sérignac-Péboudou", +"Sérignac-sur-Garonne", +"Sérignan-du-Comtat", +"Seringes-et-Nesles", +"Sermaize-les-Bains", +"Sermoise-sur-Loire", +"séro-sanguin", +"séro-sanguine", +"séro-sanguines", +"séro-sanguins", +"Serra-di-Ferro", +"Serra-di-Fiumorbo", +"Serra-di-Scopamène", +"serre-bauquière", +"serre-bosse", +"serre-bosses", +"serre-bras", +"serre-ciseau", +"serre-ciseaux", +"serre-cou", +"serre-cous", +"serre-feu", +"serre-feux", +"serre-fil", +"serre-file", +"serre-files", +"serre-fils", +"serre-fine", +"serre-frein", +"serre-joint", +"serre-joints", +"Serre-les-Moulières", +"Serre-les-Sapins", +"serre-livre", +"serre-livres", +"serre-malice", +"Serre-Nerpol", +"serre-nerpolain", +"Serre-Nerpolain", +"serre-nerpolaine", +"Serre-Nerpolaine", +"serre-nerpolaines", +"Serre-Nerpolaines", +"serre-nerpolains", +"Serre-Nerpolains", +"serre-nez", +"serre-noeud", +"serre-nœud", +"serre-nœuds", +"serre-papier", +"serre-papiers", +"serre-pédicule", +"serre-pédicules", +"serre-point", +"serre-points", +"serre-rails", +"Serres-Castet", +"Serres-et-Montguyard", +"serres-fines", +"Serres-Gaston", +"serres-gastonnais", +"Serres-Gastonnais", +"serres-gastonnaise", +"Serres-Gastonnaise", +"serres-gastonnaises", +"Serres-Gastonnaises", +"Serreslous-et-Arribans", +"Serres-Morlaàs", +"serres-morlanais", +"Serres-Morlanais", +"serres-morlanaise", +"Serres-Morlanaise", +"serres-morlanaises", +"Serres-Morlanaises", +"Serres-Sainte-Marie", +"Serres-sur-Arget", +"serre-taille", +"serre-tailles", +"serre-tête", +"serre-têtes", +"serre-tube", +"serre-tubes", +"Serrières-de-Briord", +"Serrières-en-Chautagne", +"Serrières-sur-Ain", +"Serrigny-en-Bresse", +"serri-sapinois", +"Serri-Sapinois", +"serri-sapinoise", +"Serri-Sapinoise", +"serri-sapinoises", +"Serri-Sapinoises", +"Servance-Miellin", +"Servaville-Salmonville", +"Serves-sur-Rhône", +"services-volées", +"service-volée", +"Servières-le-Château", +"Serviers-et-Labaume", +"Serviès-en-Val", +"serviette-éponge", +"serviettes-éponges", +"Servigny-lès-Raville", +"Servigny-lès-Sainte-Barbe", +"servo-direction", +"servo-directions", +"servo-frein", +"servo-freins", +"servo-moteur", +"Servon-Melzicourt", +"Servon-sur-Vilaine", +"Séry-lès-Mézières", +"Séry-Magneval", +"Serzy-et-Prin", +"Seuil-d'Argonne", +"seule-en-scène", +"seul-en-scène", +"Sévérac-d'Aveyron", +"Sévérac-le-Château", +"Sévérac-l'Eglise", +"Sévérac-l'Église", +"Sévignacq-Meyracq", +"Sévignacq-Thèze", +"Sévigny-la-Forêt", +"Sévigny-Waleppe", +"Sèvres-Anxaumont", +"sex-appeal", +"sex-digital", +"sex-digitisme", +"sex-digitismes", +"sexe-ratio", +"Sexey-aux-Forges", +"Sexey-les-Bois", +"sex-ratio", +"sex-ratios", +"sex-shop", +"sex-shops", +"sex-symbol", +"sex-symbols", +"sex-toy", +"sex-toys", +"Seysses-Savès", +"Seyssinet-Pariset", +"shabu-shabu", +"Shai-hulud", +"Shang-Haï", +"shar-peï", +"shar-peïs", +"shift-cliqua", +"shift-cliquai", +"shift-cliquaient", +"shift-cliquais", +"shift-cliquait", +"shift-cliquâmes", +"shift-cliquant", +"shift-cliquas", +"shift-cliquasse", +"shift-cliquassent", +"shift-cliquasses", +"shift-cliquassiez", +"shift-cliquassions", +"shift-cliquât", +"shift-cliquâtes", +"shift-clique", +"shift-cliqué", +"shift-cliquée", +"shift-cliquées", +"shift-cliquent", +"shift-cliquer", +"shift-cliquera", +"shift-cliquerai", +"shift-cliqueraient", +"shift-cliquerais", +"shift-cliquerait", +"shift-cliqueras", +"shift-cliquèrent", +"shift-cliquerez", +"shift-cliqueriez", +"shift-cliquerions", +"shift-cliquerons", +"shift-cliqueront", +"shift-cliques", +"shift-cliqués", +"shift-cliquez", +"shift-cliquiez", +"shift-cliquions", +"shift-cliquons", +"shikoku-inu", +"shipibo-conibo", +"shoot-'em-up", +"Shoreham-by-Sea", +"short-culotte", +"short-culottes", +"short-track", +"short-tracks", +"show-biz", +"show-business", +"Siaugues-Sainte-Marie", +"Siccieu-Saint-Julien-et-Carisieu", +"sicilio-sarde", +"side-car", +"side-cariste", +"side-caristes", +"side-cars", +"siècle-lumière", +"siècles-lumière", +"Siegen-Wittgenstein", +"Sierck-les-Bains", +"sierra-léonais", +"Sierra-Léonais", +"sierra-léonaise", +"Sierra-Léonaise", +"sierra-léonaises", +"Sierra-Léonaises", +"Sierra-Léonien", +"Sieversdorf-Hohenofen", +"sigma-additif", +"sigma-additivité", +"sigma-additivités", +"Signy-Avenex", +"Signy-l'Abbaye", +"Signy-le-Grand", +"Signy-le-Petit", +"Signy-Librecy", +"Signy-Montlibert", +"Signy-Signets", +"Sigy-en-Bray", +"Sigy-le-Châtel", +"silicico-aluminique", +"silicico-aluminiques", +"silicico-cuivreux", +"Sillans-la-Cascade", +"Sillé-le-Guillaume", +"Sillé-le-Philippe", +"Silley-Amancey", +"Silley-Bléfond", +"Silly-en-Gouffern", +"Silly-en-Saulnois", +"Silly-la-Poterie", +"Silly-le-Long", +"Silly-sur-Nied", +"Silly-Tillard", +"silure-spatule", +"Simandre-sur-Suran", +"Simiane-Collongue", +"Simiane-la-Rotonde", +"simili-cuir", +"simili-cuirs", +"Simon-la-Vineuse", +"Sincey-lès-Rouvray", +"singe-araignée", +"singe-chouette", +"singe-écureuil", +"singe-lion", +"singes-araignées", +"singes-chouettes", +"singes-écureuils", +"singes-lions", +"Sin-le-Noble", +"sino-américain", +"sino-américaine", +"sino-américaines", +"sino-américains", +"sino-australien", +"sino-australienne", +"sino-australiennes", +"sino-australiens", +"sino-canadien", +"sino-colombien", +"sino-colombienne", +"sino-colombiennes", +"sino-colombiens", +"sino-congolais", +"sino-continental", +"sino-coréen", +"sino-égyptien", +"sino-égyptienne", +"sino-égyptiennes", +"sino-égyptiens", +"sino-européen", +"sino-japonais", +"sino-japonaise", +"sino-japonaises", +"sino-québécois", +"sino-taïwanais", +"sino-tibétain", +"sino-vietnamien", +"sino-vietnamienne", +"sino-vietnamiennes", +"sino-vietnamiens", +"Sint-Amands", +"Sint-Andries", +"Sint-Annaland", +"Sint-Annaparochie", +"Sint-Annen", +"Sint-Antonius", +"Sint-Baafs-Vijve", +"Sint-Denijs", +"Sint-Eloois-Winkel", +"Sint-Gillis-Waas", +"Sint-Goriks-Oudenhove", +"Sint-Huibrechts-Hern", +"Sint-Huibrechts-Lille", +"Sint-Jacobiparochie", +"Sint-Jacobskapelle", +"Sint-Jan", +"Sint-Jan-in-Eremo", +"Sint-Job-in-'t-Goor", +"Sint-Joris", +"Sint-Joris-Weert", +"Sint-Joris-Winge", +"Sint-Jozef", +"Sint-Jozefparochie", +"Sint-Katelijne-Waver", +"Sint-Katherina-Lombeek", +"Sint-Kruis", +"Sint-Kwintens-Lennik", +"Sint-Laureins", +"Sint-Laureins-Berchem", +"Sint-Maartensdijk", +"Sint-Margriete", +"Sint-Maria-Latem", +"Sint-Maria-Lierde", +"Sint-Maria-Oudenhove", +"Sint-Martens-Latem", +"Sint-Martens-Leerne", +"Sint-Martens-Lennik", +"Sint-Martens-Lierde", +"Sint-Michiels", +"Sint-Odiliënberg", +"Sint-Oedenrode", +"Sint-Pauwels", +"Sint-Philipsland", +"Sint-Pieters-Kapelle", +"Sint-Pieters-Leeuw", +"Sint-Pieters-op-den-Dijk", +"Sint-Rijkers", +"Sion-les-Mines", +"Siorac-de-Ribérac", +"Siorac-en-Périgord", +"Siouville-Hague", +"sister-ship", +"sister-ships", +"sit-in", +"sit-ins", +"Sittard-Geleen", +"sit-up", +"sit-ups", +"Sivry-Ante", +"Sivry-Courtry", +"Sivry-la-Perche", +"Sivry-lès-Buzancy", +"Sivry-Rance", +"Sivry-sur-Meuse", +"six-cents", +"six-cent-soixante-six", +"six-cent-soixante-sixième", +"six-cent-soixante-sixièmes", +"six-clefs", +"six-coups", +"six-doigts", +"six-fournais", +"Six-Fournais", +"six-fournaise", +"Six-Fournaise", +"six-fournaises", +"Six-Fournaises", +"Six-Fours-la-Plage", +"Six-Fours-les-Plages", +"six-mâts", +"Six-Planes", +"Sixt-Fer-à-Cheval", +"Sixt-sur-Aff", +"six-vingts", +"Skelton-in-Cleveland", +"ski-alpinisme", +"ski-alpinismes", +"ski-alpiniste", +"ski-alpinistes", +"Skye-terrier", +"sleeping-car", +"Slijk-Ewijk", +"sloop-of-war", +"slop-tank", +"Sluis-Aardenburg", +"smaragdo-chalcite", +"smaragdo-chalcites", +"Smeerebbe-Vloerzegem", +"S-métolachlore", +"snack-bar", +"snack-bars", +"Snijders-Chaam", +"snow-boot", +"snow-boots", +"soap-opéra", +"soaps-opéras", +"sociale-démocrate", +"sociales-démocrates", +"sociales-traitres", +"sociales-traîtres", +"sociale-traitre", +"sociale-traître", +"sociaux-démocrates", +"sociaux-traitres", +"sociaux-traîtres", +"société-écran", +"sociétés-écrans", +"socio-cible", +"socio-cibles", +"socio-culturel", +"socio-culturelle", +"socio-culturelles", +"socio-culturels", +"socio-économique", +"socio-économiques", +"socio-éducatif", +"socio-éducatifs", +"socio-éducative", +"socio-éducatives", +"socio-esthéticien", +"socio-esthéticiens", +"socio-historiographe", +"socio-historiographes", +"socio-historique", +"socio-historiques", +"socio-politique", +"socio-politiques", +"socio-professionnel", +"socio-professionnelle", +"socio-professionnelles", +"socio-professionnels", +"soda-spodumenes", +"sodo-calcique", +"sodo-calciques", +"Sognolles-en-Montois", +"Sogny-aux-Moulins", +"Sogny-en-l'Angle", +"Soheit-Tinlot", +"soi-disamment", +"soi-disant", +"Soignolles-en-Brie", +"soi-même", +"Soing-Cubry-Charentenay", +"Soings-en-Sologne", +"Soirans-Fouffrans", +"Soissons-sur-Nacey", +"Soisy-Bouy", +"Soisy-sous-Montmorency", +"Soisy-sur-Ecole", +"Soisy-sur-École", +"Soisy-sur-Seine", +"soit-communiqué", +"soixante-cinq", +"soixante-deux", +"soixante-dix", +"soixante-dix-huit", +"soixante-dixième", +"soixante-dixièmes", +"soixante-dix-neuf", +"soixante-dix-sept", +"soixante-dizaine", +"soixante-dizaines", +"soixante-douze", +"soixante-et-onze", +"soixante-et-un", +"soixante-et-une", +"soixante-huit", +"soixante-huitard", +"soixante-huitarde", +"soixante-huitardes", +"soixante-huitards", +"soixante-neuf", +"soixante-quatorze", +"soixante-quatre", +"soixante-quinze", +"soixante-seize", +"soixante-sept", +"soixante-six", +"soixante-treize", +"soixante-trois", +"Soizy-aux-Bois", +"Solaure-en-Diois", +"sole-ruardon", +"Solignac-sous-Roche", +"Solignac-sur-Loire", +"Soligny-la-Trappe", +"Soligny-les-Etangs", +"Soligny-les-Étangs", +"Sollières-Sardières", +"Solliès-Pont", +"solliès-pontois", +"Solliès-Pontois", +"solliès-pontoise", +"Solliès-Pontoise", +"solliès-pontoises", +"Solliès-Pontoises", +"Solliès-Toucas", +"solliès-villain", +"Solliès-Villain", +"solliès-villaine", +"Solliès-Villaine", +"solliès-villaines", +"Solliès-Villaines", +"solliès-villains", +"Solliès-Villains", +"Solliès-Ville", +"Solre-le-Château", +"Solre-Saint-Géry", +"Solre-sur-Sambre", +"Soltau-Fallingbostel", +"Solutré-Pouilly", +"somato-psychique", +"somato-psychiques", +"Someren-Eind", +"Someren-Heide", +"Somme-Bionne", +"Somme-Leuze", +"somme-leuzien", +"Somme-Leuzien", +"Somme-Leuzienne", +"Sommepy-Tahure", +"somme-suippas", +"Somme-Suippas", +"somme-suippase", +"Somme-Suippase", +"somme-suippases", +"Somme-Suippases", +"Somme-Suippe", +"Somme-Tourbe", +"Sommette-Eaucourt", +"Somme-Vesle", +"Somme-Yèvre", +"Sommières-du-Clain", +"Sonceboz-Sombeval", +"Soncourt-sur-Marne", +"son-et-lumière", +"soŋay-zarma", +"soŋay-zarmas", +"songe-creux", +"songe-malice", +"songhaï-zarma", +"songhaï-zarmas", +"Sonnac-sur-l'Hers", +"Sonnenberg-Winnenberg", +"Sons-et-Ronchères", +"Sonthonnax-la-Montagne", +"Soo-hyun", +"Soorts-Hossegor", +"Soppe-le-Bas", +"Soppe-le-Haut", +"Sorans-lès-Breurey", +"Sorbo-Ocagnano", +"Sorcy-Bauthémont", +"Sorcy-Saint-Martin", +"Sorde-l'Abbaye", +"Sorel-en-Vimeu", +"Sorel-Moussel", +"Sorinne-la-Longue", +"Sornzig-Ablaß", +"Sort-en-Chalosse", +"sortie-de-bain", +"sortie-de-bal", +"Sortosville-en-Beaumont", +"sot-l'y-laisse", +"Sotteville-lès-Rouen", +"Sotteville-sous-le-Val", +"Sotteville-sur-Mer", +"sotto-voce", +"Souain-Perthes-lès-Hurlus", +"Souancé-au-Perche", +"sou-chong", +"sou-chongs", +"Soucieu-en-Jarrest", +"Soudaine-Lavinadière", +"soudano-tchado-lybien", +"Soudé-Notre-Dame-ou-le-Petit", +"soudo-brasa", +"soudo-brasai", +"soudo-brasaient", +"soudo-brasais", +"soudo-brasait", +"soudo-brasâmes", +"soudo-brasant", +"soudo-brasas", +"soudo-brasasse", +"soudo-brasassent", +"soudo-brasasses", +"soudo-brasassiez", +"soudo-brasassions", +"soudo-brasât", +"soudo-brasâtes", +"soudo-brase", +"soudo-brasé", +"soudo-brasée", +"soudo-brasées", +"soudo-brasent", +"soudo-braser", +"soudo-brasera", +"soudo-braserai", +"soudo-braseraient", +"soudo-braserais", +"soudo-braserait", +"soudo-braseras", +"soudo-brasèrent", +"soudo-braserez", +"soudo-braseriez", +"soudo-braserions", +"soudo-braserons", +"soudo-braseront", +"soudo-brases", +"soudo-brasés", +"soudo-brasez", +"soudo-brasiez", +"soudo-brasions", +"soudo-brasons", +"Soueix-Rogalle", +"souffre-douleur", +"souffre-douleurs", +"soufre-sélénifère", +"Sougé-le-Ganelon", +"Sougères-en-Puisaye", +"Sougères-sur-Sinotte", +"Sougné-Remouchamps", +"Sougy-sur-Loire", +"souï-manga", +"Soulac-sur-Mer", +"Soulages-Bonneval", +"Soulaines-Dhuys", +"Soulaines-sur-Aubance", +"Soulaire-et-Bourg", +"Soulaucourt-sur-Mouzon", +"Soulce-Cernay", +"Souleuvre-en-Bocage", +"Soulgé-sur-Ouette", +"Souligné-Flacé", +"Souligné-sous-Ballon", +"Soulosse-sous-Saint-Elophe", +"Soulosse-sous-Saint-Élophe", +"Soultzbach-les-Bains", +"Soultz-Haut-Rhin", +"Soultz-les-Bains", +"Soultz-sous-Forêts", +"Soumont-Saint-Quentin", +"soum-soum", +"soupe-tout-seul", +"Souppes-sur-Loing", +"Source-Seine", +"Sourcieux-les-Mines", +"sourde-muette", +"sourdes-muettes", +"Sourdeval-la-Barre", +"Sourdeval-les-Bois", +"Sourdeval-Vengeons", +"sourd-muet", +"sourd-parlant", +"sourds-muets", +"souris-chauve", +"souris-chauves", +"souris-crayon", +"souris-crayons", +"souris-opossums", +"souris-stylo", +"souris-stylos", +"Sousceyrac-en-Quercy", +"Soussey-sur-Brionne", +"Southend-on-Sea", +"soutien-gorge", +"soutien-loloches", +"soutiens-gorge", +"souvenez-vous-de-moi", +"souveraineté-association", +"Souvigné-sur-Même", +"Souvigné-sur-Sarthe", +"Souvigny-de-Touraine", +"Souvigny-en-Sologne", +"Souzay-Champigny", +"Souzy-la-Briche", +"Soye-en-Septaine", +"Spaarndam-Oost", +"Spaarndam-West", +"sparring-partner", +"spatio-temporel", +"spatio-temporelle", +"spatio-temporelles", +"spatio-temporels", +"Spechbach-le-Bas", +"Spechbach-le-Haut", +"speed-dating", +"sphéno-temporal", +"sphinx-bourdon", +"Spider-Man", +"Spiesen-Elversberg", +"spina-bifida", +"spina-ventosa", +"spin-off", +"spin-offs", +"spiro-bloc", +"spiro-blocs", +"sport-étude", +"sportivo-financier", +"sports-études", +"Sprang-Capelle", +"Spree-Neisse", +"spruce-beer", +"squale-grogneur", +"sri-lankais", +"Sri-Lankais", +"sri-lankaise", +"Sri-Lankaise", +"sri-lankaises", +"Sri-Lankaises", +"stabilo-bossa", +"stabilo-bossai", +"stabilo-bossaient", +"stabilo-bossais", +"stabilo-bossait", +"stabilo-bossâmes", +"stabilo-bossant", +"stabilo-bossas", +"stabilo-bossasse", +"stabilo-bossassent", +"stabilo-bossasses", +"stabilo-bossassiez", +"stabilo-bossassions", +"stabilo-bossât", +"stabilo-bossâtes", +"stabilo-bosse", +"stabilo-bossé", +"stabilo-bossée", +"stabilo-bossées", +"stabilo-bossent", +"stabilo-bosser", +"stabilo-bossera", +"stabilo-bosserai", +"stabilo-bosseraient", +"stabilo-bosserais", +"stabilo-bosserait", +"stabilo-bosseras", +"stabilo-bossèrent", +"stabilo-bosserez", +"stabilo-bosseriez", +"stabilo-bosserions", +"stabilo-bosserons", +"stabilo-bosseront", +"stabilo-bosses", +"stabilo-bossés", +"stabilo-bossez", +"stabilo-bossiez", +"stabilo-bossions", +"stabilo-bossons", +"Stadecken-Elsheim", +"Stafordshire-bull-terrier", +"stage-coach", +"stage-coachs", +"Staines-upon-Thames", +"stand-by", +"stand-up", +"Stanford-le-Hope", +"stannoso-potassique", +"Starrkirch-Wil", +"star-système", +"star-systèmes", +"starting-block", +"starting-blocks", +"starting-gate", +"start-up", +"start-upeur", +"st'at'imc", +"station-service", +"stations-service", +"stations-services", +"statue-menhir", +"statues-menhirs", +"Staudach-Egerndach", +"steam-boat", +"steam-boats", +"Stechow-Ferchesar", +"Steenhuize-Wijnhuize", +"steeple-chase", +"Steg-Hohtenn", +"Steinbach-Hallenberg", +"Stein-Bockenheim", +"Steinbrunn-le-Bas", +"Steinbrunn-le-Haut", +"Stein-Neukirch", +"Stein-Wingert", +"Stelle-Wittenwurth", +"sténo-dactylographe", +"sténo-dactylographes", +"sténo-méditerranéen", +"sténo-méditerranéenne", +"sténo-méditerranéennes", +"sténo-méditerranéens", +"step-back", +"step-backs", +"stéphano-carladésien", +"Stéphano-Carladésien", +"stéphano-carladésienne", +"Stéphano-Carladésienne", +"stéphano-carladésiennes", +"Stéphano-Carladésiennes", +"stéphano-carladésiens", +"Stéphano-Carladésiens", +"stéréo-isomère", +"stéréo-isomères", +"sterno-claviculaire", +"sterno-claviculaires", +"sterno-cléido-mastoïdien", +"sterno-cléido-mastoïdiens", +"sterno-clido-mastoïdien", +"sterno-clido-mastoïdienne", +"sterno-clido-mastoïdiennes", +"sterno-clido-mastoïdiens", +"sterno-huméral", +"sterno-hyoïdien", +"sterno-pubien", +"Stiring-Wendel", +"St-Jean", +"stock-car", +"stock-cars", +"Stockhausen-Illfurth", +"stock-option", +"stock-options", +"stocks-tampons", +"stock-tampon", +"Stockton-on-Tees", +"Stockum-Püschen", +"Stoke-on-Trent", +"stomo-gastrique", +"stomo-gastriques", +"stop-ski", +"stop-skis", +"Storbeck-Frankendorf", +"story-board", +"story-boards", +"Straßlach-Dingharting", +"Stratford-on-Avon", +"Straubing-Bogen", +"strauss-kahnien", +"strauss-kahniens", +"street-artiste", +"street-artistes", +"street-gadz", +"Strépy-Bracquegnies", +"strip-teasa", +"strip-teasai", +"strip-teasaient", +"strip-teasais", +"strip-teasait", +"strip-teasâmes", +"strip-teasant", +"strip-teasas", +"strip-teasasse", +"strip-teasassent", +"strip-teasasses", +"strip-teasassiez", +"strip-teasassions", +"strip-teasât", +"strip-teasâtes", +"strip-tease", +"strip-teasé", +"strip-teasée", +"strip-teasées", +"strip-teasent", +"strip-teaser", +"strip-teasera", +"strip-teaserai", +"strip-teaseraient", +"strip-teaserais", +"strip-teaserait", +"strip-teaseras", +"strip-teasèrent", +"strip-teaserez", +"strip-teaseriez", +"strip-teaserions", +"strip-teaserons", +"strip-teaseront", +"strip-teases", +"strip-teasés", +"strip-teaseurs", +"strip-teaseuse", +"strip-teaseuses", +"strip-teasez", +"strip-teasiez", +"strip-teasions", +"strip-teasons", +"stroke-play", +"strom-apparat", +"Strombeek-Bever", +"struggle-for-life", +"struggle-for-lifes", +"stud-book", +"Stüdenitz-Schönermark", +"stuffing-box", +"Stutzheim-Offenheim", +"stylo-bille", +"stylo-billes", +"stylo-feutre", +"stylo-glosse", +"stylo-gomme", +"stylo-pistolet", +"stylo-plume", +"stylos-feutres", +"stylos-gommes", +"stylo-souris", +"stylos-plume", +"stylos-souris", +"Suaucourt-et-Pisseloup", +"subrogés-tuteurs", +"subrogé-tuteur", +"suce-bœuf", +"suce-boules", +"suce-fleur", +"suce-fleurs", +"suce-goulot", +"suce-goulots", +"suce-médailles", +"Sucé-sur-Erdre", +"Suc-et-Sentenac", +"Sucy-en-Brie", +"sudoro-algique", +"Súdwest-Fryslân", +"suédo-américain", +"suédo-américaine", +"suédo-américaines", +"suédo-américains", +"Suilly-la-Tour", +"Suisse-Saxonne-Monts-Métallifères-de-l'Est", +"suivez-moi-jeune-homme", +"Suizy-le-Franc", +"Sukow-Levitzow", +"sulfo-margarique", +"Sully-la-Chapelle", +"Sully-sur-Loire", +"Sulzbach-Laufen", +"Sulzbach-Rosenberg", +"suméro-akkadien", +"suméro-akkadienne", +"suméro-akkadiennes", +"suméro-akkadiens", +"Sunbury-on-Thames", +"super-8", +"support-chaussettes", +"supports-chaussettes", +"supra-axillaire", +"supra-axillaires", +"supra-caudal", +"supra-caudale", +"supra-caudales", +"supra-caudaux", +"supra-épineux", +"surdi-mutité", +"surdi-mutités", +"suro-pédieuse", +"suro-pédieuses", +"suro-pédieux", +"surprise-partie", +"surprise-parties", +"surprises-parties", +"surveillant-général", +"Sury-aux-Bois", +"Sury-en-Léré", +"Sury-en-Vaux", +"Sury-ès-Bois", +"Sury-le-Comtal", +"Sury-près-Léré", +"sus-caudal", +"sus-cité", +"sus-coccygien", +"sus-dominante", +"sus-dominantes", +"sus-épineux", +"sus-hépatique", +"sus-hépatiques", +"sus-hyoïdien", +"sus-jacent", +"sus-jacents", +"sus-maxillo-labial", +"sus-maxillo-nasal", +"sus-métatarsien", +"sus-métatarsienne", +"sus-métatarsiennes", +"sus-métatarsiens", +"sus-naseau", +"sus-naso-labial", +"sus-pied", +"sus-pubio-fémoral", +"Sus-Saint-Léger", +"sus-tarsien", +"sus-tarsienne", +"sus-tarsiennes", +"sus-tarsiens", +"sus-tentoriel", +"sus-tentorielle", +"sus-tentorielles", +"sus-tentoriels", +"sus-tonique", +"su-sucre", +"su-sucres", +"Sutton-in-Ashfield", +"Sutz-Lattrigen", +"Suze-la-Rousse", +"S.-W.", +"sweat-shirt", +"sweat-shirts", +"Sylvains-les-Moulins", +"syndesmo-pharyngien", +"Syr-Daria", +"syro-chaldaïque", +"syro-chaldéen", +"syro-chaldéens", +"syro-saoudien", +"systèmes-clés", +"tabagn's", +"Tabaille-Usquain", +"Taben-Rodt", +"table-bureau", +"tables-bureaux", +"tac-tac", +"Tadousse-Ussau", +"Taglio-Isolaccio", +"Tahiti-Iti", +"Tahu-Ata", +"Taiarapu-Est", +"Taiarapu-Ouest", +"tai-kadai", +"taï-kadaï", +"taï-le", +"taille-crayon", +"taille-crayons", +"taille-douce", +"taille-haie", +"taille-haies", +"taille-mèche", +"taille-mèches", +"taille-mer", +"taille-mers", +"taille-plume", +"taille-plumes", +"taille-pré", +"taille-prés", +"tailles-douces", +"taille-vent", +"taille-vents", +"Tain-l'Hermitage", +"taï-nüa", +"Taisnières-en-Thiérache", +"Taisnières-sur-Hon", +"Taizé-Aizie", +"taki-taki", +"talco-micacé", +"talco-quartzeux", +"talkies-walkies", +"talkie-walkie", +"talkie-walkies", +"talk-show", +"Talloires-Montmin", +"Tallud-Sainte-Gemme", +"Talmont-Saint-Hilaire", +"Talmont-sur-Gironde", +"Talus-Saint-Prix", +"taly-pen", +"taly-pens", +"Tambach-Dietharz", +"tambour-major", +"tambours-majors", +"Tamnay-en-Bazois", +"tams-tams", +"tam-tam", +"tam-tams", +"Ta-Nehisi", +"Tanghin-Dassouri", +"Tannerre-en-Puisaye", +"tao-taï", +"tao-taïs", +"tape-à-l'oeil", +"tape-à-l'œil", +"tape-beurre", +"tape-beurres", +"tape-cul", +"tape-culs", +"tape-dur", +"tape-durs", +"tapis-brosse", +"tapis-de-caoutchouté", +"tapis-franc", +"tapis-francs", +"tapis-luge", +"tapis-luges", +"tapis-plain", +"Taponnat-Fleurignac", +"Tarascon-sur-Ariège", +"Tarascon-sur-Rhône", +"Tarawa-Sud", +"Tardets-Sorholus", +"tard-venus", +"tarn-et-garonnais", +"Tarn-et-Garonnais", +"tarn-et-garonnaise", +"Tarn-et-Garonnaise", +"tarn-et-garonnaises", +"Tarn-et-Garonnaises", +"Tarn-et-Garonne", +"Taron-Sadirac-Viellenave", +"tarso-métatarse", +"tarso-métatarsien", +"Tart-l'Abbaye", +"Tart-le-Bas", +"Tart-le-Haut", +"tarton-raire", +"Tassin-la-Demi-Lune", +"Tataouine-les-Bains", +"tâte-au-pot", +"tâte-ferraille", +"tate-mono", +"tate-monos", +"tâte-poule", +"tâte-vin", +"tâte-vins", +"tau-fluvalinate", +"Taulhac-près-le-Puy", +"taupe-grillon", +"taupes-grillons", +"Tauriac-de-Camarès", +"Tauriac-de-Naucelle", +"Taurignan-Castet", +"Taurignan-Vieux", +"Taussac-la-Billière", +"Tauxières-Mutry", +"Tavaux-et-Pontséricourt", +"Taxat-Senat", +"taxi-auto", +"taxi-automobile", +"taxi-brousse", +"taxi-girl", +"taxi-girls", +"taxis-brousse", +"taxis-vélos", +"taxi-vélo", +"t-bone", +"t-bones", +"T-calculable", +"T-calculables", +"tchado-burkinabé", +"tchado-centrafricain", +"tchado-egyptien", +"tchado-lybien", +"tchado-soudano-lybien", +"tchéco-slovaque", +"Tchéco-slovaque", +"Tchéco-Slovaque", +"tchéco-slovaques", +"Tchéco-slovaques", +"Tchéco-Slovaques", +"tchin-tchin", +"tchou-tchou", +"teach-in", +"teach-ins", +"teen-ager", +"teen-agers", +"tee-shirt", +"tee-shirts", +"Teillay-le-Gaudin", +"Teillay-Saint-Benoît", +"Teillet-Argenty", +"teinture-mère", +"teint-vin", +"teint-vins", +"Teissières-de-Cornet", +"Teissières-lès-Bouliès", +"Tel-Aviv-Jaffa", +"Telgruc-sur-Mer", +"Tella-Sin", +"t-elle", +"Tellières-le-Plessis", +"Teltow-Fläming", +"Temmen-Ringenwalde", +"témoins-clés", +"Temple-Laguyon", +"Templeuve-en-Pévèle", +"Templeux-la-Fosse", +"Templeux-le-Guérard", +"temporo-conchinien", +"temporo-superficiel", +"Tenero-Contra", +"Tensbüttel-Röst", +"tensio-actif", +"tente-abri", +"tente-ménagerie", +"tentes-ménageries", +"téra-ampère", +"téra-ampères", +"téra-électron-volt", +"téraélectron-volt", +"téra-électron-volts", +"téraélectron-volts", +"térawatt-heure", +"térawatt-heures", +"térawatts-heures", +"Tercis-les-Bains", +"Termes-d'Armagnac", +"Ternant-les-Eaux", +"terno-annulaire", +"Ternuay-Melay-et-Saint-Hilaire", +"Terny-Sorny", +"terra-cotta", +"terra-forma", +"terra-formai", +"terra-formaient", +"terra-formais", +"terra-formait", +"terra-formâmes", +"terra-formant", +"terra-formas", +"terra-formasse", +"terra-formassent", +"terra-formasses", +"terra-formassiez", +"terra-formassions", +"terra-formât", +"terra-formâtes", +"terra-forme", +"terra-formé", +"terra-formée", +"terra-formées", +"terra-forment", +"terra-former", +"terra-formera", +"terra-formerai", +"terra-formeraient", +"terra-formerais", +"terra-formerait", +"terra-formeras", +"terra-formèrent", +"terra-formerez", +"terra-formeriez", +"terra-formerions", +"terra-formerons", +"terra-formeront", +"terra-formes", +"terra-formés", +"terra-formez", +"terra-formiez", +"terra-formions", +"terra-formons", +"Terrasson-la-Villedieu", +"Terrasson-Lavilledieu", +"terre-à-terre", +"Terre-Clapier", +"Terre-de-Bas", +"Terre-de-Haut", +"Terre-et-Marais", +"terre-grièpe", +"Terre-Natale", +"terre-neuva", +"terre-neuvas", +"terre-neuve", +"Terre-Neuve", +"Terre-Neuve-et-Labrador", +"terre-neuvien", +"Terre-Neuvien", +"Terre-Neuvien-et-Labradorien", +"terre-neuvienne", +"Terre-Neuvienne", +"Terre-Neuvienne-et-Labradorienne", +"terre-neuviennes", +"Terre-Neuviennes", +"Terre-Neuviennes-et-Labradoriennes", +"terre-neuviens", +"Terre-Neuviens", +"Terre-Neuviens-et-Labradoriens", +"terre-neuvier", +"terre-neuviers", +"terre-noix", +"terre-plein", +"terre-pleins", +"Terres-de-Caux", +"terret-bourret", +"Territoire-de-Belfort", +"Terron-lès-Poix", +"Terron-lès-Vendresse", +"Terron-sur-Aisne", +"ter-ter", +"terza-rima", +"Tessancourt-sur-Aubette", +"Tessé-Froulay", +"Tessy-sur-Vire", +"test-match", +"test-matchs", +"Test-Milon", +"test-objet", +"Testorf-Steinfort", +"tête-à-queue", +"tête-à-tête", +"tête-bêche", +"tête-bleu", +"tête-chèvre", +"tête-de-bécasse", +"tête-de-chat", +"tête-de-chats", +"tête-de-cheval", +"tête-de-clou", +"tête-de-coq", +"tête-de-loup", +"tête-de-maure", +"tête-de-Maure", +"tête-de-méduse", +"Tête-de-Moine", +"tête-de-moineau", +"tête-de-More", +"tête-de-mort", +"tête-de-serpent", +"tête-de-soufre", +"Téteghem-Coudekerque-Village", +"tête-ronde", +"têtes-de-chat", +"têtes-de-clou", +"têtes-de-loup", +"têtes-de-Maure", +"têtes-de-méduse", +"têtes-de-moineau", +"têtes-de-mort", +"têtes-vertes", +"tête-verte", +"Teting-sur-Nied", +"tétra-atomique", +"tétrachlorodibenzo-p-dioxine", +"tétrachlorodibenzo-p-dioxines", +"tétrachloro-isophtalonitrile", +"tette-chèvre", +"tette-chèvres", +"teufs-teufs", +"teuf-teuf", +"teuf-teufa", +"teuf-teufai", +"teuf-teufaient", +"teuf-teufais", +"teuf-teufait", +"teuf-teufâmes", +"teuf-teufant", +"teuf-teufas", +"teuf-teufasse", +"teuf-teufassent", +"teuf-teufasses", +"teuf-teufassiez", +"teuf-teufassions", +"teuf-teufât", +"teuf-teufâtes", +"teuf-teufe", +"teuf-teufé", +"teuf-teufent", +"teuf-teufer", +"teuf-teufera", +"teuf-teuferai", +"teuf-teuferaient", +"teuf-teuferais", +"teuf-teuferait", +"teuf-teuferas", +"teuf-teufèrent", +"teuf-teuferez", +"teuf-teuferiez", +"teuf-teuferions", +"teuf-teuferons", +"teuf-teuferont", +"teuf-teufes", +"teuf-teufez", +"teuf-teufiez", +"teuf-teufions", +"teuf-teufons", +"Teurthéville-Bocage", +"Teurthéville-Hague", +"Thal-Drulingen", +"Thaleischweiler-Fröschen", +"Thal-Marmoutier", +"Thaon-les-Vosges", +"Theil-Rabier", +"Theil-sur-Vanne", +"Theix-Noyalo", +"Thélis-la-Combe", +"Théoule-sur-Mer", +"Thermes-Magnoac", +"thêta-jointure", +"thêta-jointures", +"Theuville-aux-Maillots", +"Theuvy-Achères", +"Thevet-Saint-Julien", +"They-sous-Montfort", +"They-sous-Vaudemont", +"Thézan-des-Corbières", +"Thézan-lès-Béziers", +"Thézey-Saint-Martin", +"Thézy-Glimont", +"thézy-glimontois", +"Thézy-Glimontois", +"thézy-glimontoise", +"Thézy-Glimontoise", +"thézy-glimontoises", +"Thézy-Glimontoises", +"Thiaucourt-Regniéville", +"Thiaville-sur-Meurthe", +"Thiéblemont-Farémont", +"Thiel-sur-Acolin", +"Thiers-sur-Thève", +"Thierville-sur-Meuse", +"Thieulloy-l'Abbaye", +"Thieulloy-la-Ville", +"Thieuloy-Saint-Antoine", +"thifensulfuron-méthyle", +"Thil-Manneville", +"Thil-sur-Arroux", +"Thimert-Gâtelles", +"Thimister-Clermont", +"thimistérien-clermontois", +"Thimistérien-Clermontois", +"Thimistérien-Clermontoise", +"Thin-le-Moutier", +"Thionville-sur-Opton", +"thiophanate-éthyl", +"thiophanate-méthyl", +"Thiron-Gardais", +"Thiverval-Grignon", +"Thizy-les-Bourgs", +"Thoiré-sous-Contensor", +"Thoiré-sur-Dinan", +"Thoirette-Coisia", +"Thoisy-la-Berchère", +"Thoisy-le-Désert", +"Thol-lès-Millières", +"Thollon-les-Mémises", +"Thomer-la-Sôgne", +"Thonnance-lès-Joinville", +"Thonnance-les-Moulins", +"Thonne-la-Long", +"Thonne-les-Près", +"Thonne-le-Thil", +"Thonon-les-Bains", +"Thon-Samson", +"thon-samsonais", +"Thon-Samsonais", +"Thon-Samsonaise", +"Thorame-Basse", +"Thorame-Haute", +"Thorée-les-Pins", +"thoré-folléen", +"Thoré-Folléen", +"thoré-folléenne", +"Thoré-Folléenne", +"thoré-folléennes", +"Thoré-Folléennes", +"thoré-folléens", +"Thoré-Folléens", +"Thoré-la-Rochette", +"Thorembais-les-Béguines", +"Thorembais-Saint-Trond", +"Thorens-Glières", +"Thorey-en-Plaine", +"Thorey-Lyautey", +"Thorey-sous-Charny", +"Thorey-sur-Ouche", +"Thorigné-d'Anjou", +"Thorigné-en-Charnie", +"Thorigné-Fouillard", +"Thorigné-sur-Dué", +"Thorigné-sur-Vilaine", +"Thorigny-sur-le-Mignon", +"Thorigny-sur-Marne", +"Thorigny-sur-Oreuse", +"Thornaby-on-Tees", +"Thornton-Cleveleys", +"Thouaré-sur-Loire", +"Thouarsais-Bouildroux", +"Thouars-sur-Arize", +"Thouars-sur-Garonne", +"thoult-tronaisien", +"Thoult-Tronaisien", +"thoult-tronaisienne", +"Thoult-Tronaisienne", +"thoult-tronaisiennes", +"Thoult-Tronaisiennes", +"thoult-tronaisiens", +"Thoult-Tronaisiens", +"Thoury-Férottes", +"Thoury-Ferrottes", +"thraco-illyrienne", +"Thuès-Entre-Valls", +"Thugny-Trugny", +"Thuilley-aux-Groseilles", +"thuit-angevin", +"Thuit-Angevin", +"thuit-angevine", +"Thuit-Angevine", +"thuit-angevines", +"Thuit-Angevines", +"thuit-angevins", +"Thuit-Angevins", +"Thuit-Hébert", +"thuit-signolais", +"Thuit-Signolais", +"thuit-signolaise", +"Thuit-Signolaise", +"thuit-signolaises", +"Thuit-Signolaises", +"thuit-simérien", +"Thuit-Simérien", +"thuit-simérienne", +"Thuit-Simérienne", +"thuit-simériennes", +"Thuit-Simériennes", +"thuit-simériens", +"Thuit-Simériens", +"thun-episcopien", +"Thun-Episcopien", +"thun-épiscopien", +"Thun-Épiscopien", +"Thun-Episcopienne", +"thun-épiscopienne", +"Thun-Épiscopienne", +"Thun-Episcopiennes", +"thun-épiscopiennes", +"Thun-Épiscopiennes", +"Thun-Episcopiens", +"thun-épiscopiens", +"Thun-Épiscopiens", +"Thun-l'Evêque", +"Thun-l'Évêque", +"Thun-Saint-Amand", +"Thun-Saint-Martin", +"Thurey-le-Mont", +"Thury-en-Valois", +"Thury-Harcourt", +"Thury-sous-Clermont", +"Thy-le-Bauduin", +"Thy-le-Château", +"Tian'anmen", +"tibéto-birman", +"tibéto-birmane", +"tibéto-birmanes", +"tibéto-birmans", +"tibio-malléolaire", +"Tibiran-Jaunac", +"ticket-restaurant", +"ti-coune", +"ti-counes", +"tic-tac", +"tic-tacs", +"tic-tac-toe", +"ti-cul", +"tie-break", +"tie-breaks", +"Tielt-Winge", +"T'ien-ngan-men", +"tierce-feuille", +"tierce-rime", +"tierces-rimes", +"Tieste-Uragnoux", +"tiger-kidnappeur", +"tiger-kidnapping", +"tiger-kidnappings", +"Tignieu-Jameyzieu", +"Tigny-Noyelle", +"tigre-garou", +"tigres-garous", +"tiki-taka", +"t-il", +"Til-Châtel", +"Tillay-le-Péneux", +"Tilleul-Dame-Agnès", +"tilleul-othonnais", +"Tilleul-Othonnais", +"tilleul-othonnaise", +"Tilleul-Othonnaise", +"tilleul-othonnaises", +"Tilleul-Othonnaises", +"Tillières-sur-Avre", +"Tilloy-et-Bellay", +"Tilloy-Floriville", +"Tilloy-lès-Conty", +"Tilloy-lès-Hermaville", +"Tilloy-lès-Mofflaines", +"Tilloy-lez-Cambrai", +"Tilloy-lez-Marchiennes", +"Tilly-Capelle", +"Tilly-la-Campagne", +"Tilly-sur-Meuse", +"Tilly-sur-Seulles", +"tilt-shift", +"timbre-amende", +"timbre-poste", +"timbre-quittance", +"timbres-amende", +"timbres-poste", +"timbres-quittances", +"timbre-taxe", +"time-lapse", +"time-lapses", +"time-sharing", +"time-sharings", +"Tin-Akof", +"Tincey-et-Pontrebeau", +"Tinchebray-Bocage", +"Tincourt-Boucly", +"Tinizong-Rona", +"t'inquiète", +"tiou-tiou", +"tiou-tious", +"ti-papoute", +"ti-punch", +"ti-punchs", +"tira-tutto", +"Tirent-Pontéjac", +"tireur-au-cul", +"tireurs-au-cul", +"tiroir-caisse", +"tiroirs-caisses", +"tissu-éponge", +"tissus-éponges", +"titan-cotte", +"titanico-ammonique", +"titanico-ammoniques", +"Tite-Live", +"Titisee-Neustadt", +"titre-service", +"titres-services", +"Tizac-de-Curton", +"Tizac-de-Lapouyade", +"toba-qom", +"Tobel-Tägerschen", +"Tocane-Saint-Apre", +"t'occupe", +"toc-feu", +"Tocqueville-en-Caux", +"Tocqueville-les-Murs", +"Tocqueville-sur-Eu", +"toc-toc", +"toc-tocs", +"Togny-aux-Bœufs", +"t'oh", +"tohu-bohu", +"tohu-bohus", +"tohus-bohus", +"toi-même", +"toits-terrasses", +"toit-terrasse", +"tolclofos-méthyl", +"tombe-cartouche", +"tom-pouce", +"tom-tom", +"tom-toms", +"t-on", +"Tongre-Notre-Dame", +"Tongre-Saint-Martin", +"Tonnay-Boutonne", +"Tonnay-Charente", +"Tonnegrande-Montsinery", +"tonne-grenoir", +"tonne-mètre", +"top-down", +"top-model", +"top-modèle", +"top-modèles", +"top-models", +"topo-guide", +"topo-guides", +"top-secret", +"top-secrets", +"toque-feu", +"Torcé-en-Vallée", +"Torcé-Viviers-en-Charnie", +"torche-cul", +"torche-culs", +"torche-fer", +"torche-pertuis", +"torche-pin", +"torche-pinceau", +"torche-pinceaux", +"torche-pins", +"Torcy-en-Valois", +"Torcy-et-Pouligny", +"Torcy-le-Grand", +"Torcy-le-Petit", +"tord-boyau", +"tord-boyaux", +"tord-nez", +"Torgelow-Holländerei", +"Torigni-sur-Vire", +"Torigny-les-Villes", +"tori-i", +"Torre-Cardela", +"Torre-serona", +"Torricella-Taverne", +"torse-poil", +"torse-poils", +"Torteval-Quesnay", +"tortue-alligator", +"tortue-boite", +"tortue-boîte", +"tortue-duc", +"tortues-alligators", +"tortues-boites", +"tortues-boîtes", +"tortues-ducs", +"tosa-inu", +"Toscolano-Maderno", +"tote-bag", +"tote-bags", +"tôt-fait", +"tôt-faits", +"touch-and-go", +"touche-à-tout", +"touche-pipi", +"touche-touche", +"Touët-de-l'Escarène", +"Touët-sur-Var", +"Touffreville-la-Cable", +"Touffreville-la-Corbeline", +"Touffreville-sur-Eu", +"touille-boeuf", +"touille-bœuf", +"touille-boeufs", +"touille-bœufs", +"Touillon-et-Loutelet", +"Toulis-et-Attencourt", +"Toulon-la-Montagne", +"Toulon-sur-Allier", +"Toulon-sur-Arroux", +"Toulouse-le-Château", +"Toulx-Sainte-Croix", +"Tourailles-sous-Bois", +"tour-à-tour", +"Tourcelles-Chaumont", +"Tourcelles-Chaumont-Quilly-et-Chardeny", +"Tour-de-Faure", +"Tour-en-Bessin", +"Tour-en-Sologne", +"Tourette-du-Château", +"Tourinnes-la-Grosse", +"Tourinnes-Saint-Lambert", +"tour-minute", +"Tournai-sur-Dive", +"Tournan-en-Brie", +"Tournay-sur-Odon", +"tourne-à-gauche", +"tourne-au-vent", +"tourne-case", +"tourne-cases", +"tourne-disque", +"tourne-disques", +"Tournedos-Bois-Hubert", +"Tournedos-sur-Seine", +"tourne-feuille", +"tourne-feuilles", +"tourne-feuillet", +"tourne-feuillets", +"tourne-fil", +"tourne-fils", +"tourne-gants", +"Tournehem-sur-la-Hem", +"tourne-motte", +"tourne-mottes", +"tourne-oreille", +"tourne-oreilles", +"tourne-pierres", +"tourne-soc", +"tourne-socs", +"tourneur-fraiseur", +"tourneurs-fraiseurs", +"tourne-vent", +"tourne-vents", +"Tournon-d'Agenais", +"Tournon-Saint-Martin", +"Tournon-Saint-Pierre", +"Tournon-sur-Rhône", +"Tournous-Darré", +"Tournous-Devant", +"tour-opérateur", +"tour-opérateurs", +"tour-opératrice", +"tour-opératrices", +"Tourouvre-au-Perche", +"Tourrette-Levens", +"Tourrettes-sur-Loup", +"Tours-en-Savoie", +"Tours-en-Vimeu", +"tours-minute", +"tours-opérateurs", +"tours-opératrices", +"tours-sur-marnais", +"Tours-sur-Marnais", +"tours-sur-marnaise", +"Tours-sur-Marnaise", +"tours-sur-marnaises", +"Tours-sur-Marnaises", +"Tours-sur-Marne", +"Tours-sur-Meymont", +"Tourville-en-Auge", +"Tourville-la-Campagne", +"Tourville-la-Chapelle", +"Tourville-la-Rivière", +"Tourville-les-Ifs", +"Tourville-sur-Arques", +"Tourville-sur-Odon", +"Tourville-sur-Pont-Audemer", +"Tourville-sur-Sienne", +"Toury-Lurcy", +"Toury-sur-Jour", +"Tourzel-Ronzières", +"Toussus-le-Noble", +"tout-à-fait", +"tout-à-la-rue", +"tout-à-l'égout", +"tout-blanc", +"tout-blancs", +"tout-communication", +"tout-connaissant", +"toute-bonne", +"toute-bonté", +"toute-cousue", +"toute-épice", +"tout-ensemble", +"tout-en-un", +"toute-petite", +"toute-présence", +"toute-puissance", +"toute-puissante", +"toute-saine", +"toutes-boîtes", +"toutes-bonnes", +"toute-science", +"toutes-petites", +"toutes-puissantes", +"toutes-saines", +"toutes-tables", +"toutes-venues", +"toute-table", +"toute-venue", +"tout-fait", +"tout-faits", +"tout-fécond", +"tout-Londres", +"Tout-Paris", +"tout-parisien", +"tout-parisienne", +"tout-parisiennes", +"tout-parisiens", +"tout-petit", +"tout-petits", +"tout-puissant", +"Tout-Puissant", +"tout-puissants", +"tout-terrain", +"tout-venant", +"tout-venu", +"toxi-infectieux", +"toxi-infection", +"toxi-infections", +"toy-terrier", +"Toy-Viam", +"Traben-Trarbach", +"trace-bouche", +"trace-roulis", +"trace-sautereau", +"trace-vague", +"trachée-artère", +"trachélo-occipital", +"trachéo-bronchite", +"trachéo-bronchites", +"Tracy-Bocage", +"Tracy-le-Mont", +"Tracy-le-Val", +"Tracy-sur-Loire", +"Tracy-sur-Mer", +"trade-union", +"trade-unionisme", +"trade-unionismes", +"trade-unions", +"tragi-comédie", +"tragi-comédies", +"tragi-comique", +"tragi-comiques", +"traîne-bâton", +"traine-buche", +"traîne-bûche", +"traine-buches", +"traîne-bûches", +"traîne-buisson", +"traîne-charrue", +"traîne-la-patte", +"traîne-lattes", +"traîne-malheur", +"traîne-misère", +"traîne-patins", +"traîne-potence", +"traine-ruisseau", +"traîne-ruisseau", +"traine-savate", +"traîne-savate", +"traine-savates", +"traîne-savates", +"traîne-semelle", +"traîne-semelles", +"trains-trams", +"train-train", +"train-trains", +"train-tram", +"trait-d'union", +"trait-d'unioné", +"trait-track", +"Tramont-Emy", +"Tramont-Émy", +"Tramont-Lassus", +"Tramont-Saint-André", +"trams-trains", +"tram-train", +"tranchées-abris", +"tranche-maçonné", +"tranche-montagne", +"tranche-montagnes", +"tranche-papier", +"tranche-tête", +"Tranqueville-Graux", +"tran-tran", +"Traubach-le-Bas", +"Traubach-le-Haut", +"Travedona-Monate", +"Trébons-de-Luchon", +"Trébons-sur-la-Grasse", +"Trédrez-Locquémeau", +"Treffort-Cuisiat", +"tré-flip", +"tré-flips", +"Treilles-en-Gâtinais", +"Treis-Karden", +"Treize-Septiers", +"Treize-Vents", +"Trélou-sur-Marne", +"Tremblay-en-France", +"Tremblay-lès-Gonesse", +"Tremblay-les-Villages", +"Tremblois-lès-Carignan", +"Tremblois-lès-Rocroi", +"Trémont-sur-Saulx", +"Trémouille-Saint-Loup", +"trench-coat", +"trench-coats", +"trente-cinq", +"trente-deux", +"trente-deuxième", +"trente-deuxièmes", +"trente-deuzain", +"trente-deuzains", +"trente-deuzet", +"trente-deuzets", +"trente-douze", +"trente-et-un", +"trente-et-une", +"trente-et-unième", +"trente-et-unièmes", +"trente-huit", +"trente-neuf", +"trente-neuvième", +"trente-quatre", +"trente-sept", +"trente-six", +"trente-trois", +"trente-troisième", +"Trentin-Haut-Adige", +"Trentola-Ducenta", +"trépan-benne", +"trépan-bennes", +"Treschenu-Creyers", +"très-chrétien", +"tré-sept", +"très-haut", +"Très-Haut", +"Trespoux-Rassiels", +"Treuzy-Levelay", +"Trèves-Cunault", +"Trèves-Sarrebourg", +"Trévou-Tréguignec", +"Triac-Lautrait", +"tribénuron-méthyle", +"tribo-électricité", +"tribo-électricités", +"tribo-électrique", +"tribo-électriques", +"trichloro-nitrométhane", +"trichloro-trinitro-benzène", +"tric-trac", +"tric-tracs", +"Trie-Château", +"Trie-la-Ville", +"Triel-sur-Seine", +"Triembach-au-Val", +"Trie-sur-Baïse", +"Triffouilly-les-Oies", +"triflusulfuron-méthyle", +"Trifouillis-les-Oies", +"Trifouilly-les-Oies", +"trinexapac-éthyl", +"Trinité-et-Tobago", +"trinitro-cellulose", +"trinitro-celluloses", +"tripe-madame", +"triple-croche", +"triples-croches", +"trique-madame", +"tris-mal", +"tris-male", +"tris-males", +"tris-maux", +"Trith-Saint-Léger", +"Tritteling-Redlach", +"Trizay-Coutretot-Saint-Serge", +"Trizay-lès-Bonneval", +"Trockenborn-Wolfersdorf", +"Trocy-en-Multien", +"trois-bassinois", +"Trois-Bassinois", +"trois-bassinoise", +"Trois-Bassinoise", +"trois-bassinoises", +"Trois-Bassinoises", +"trois-crayons", +"trois-épines", +"Trois-Fonds", +"Trois-Fontaines", +"Trois-Fontaines-l'Abbaye", +"Troisfontaines-la-Ville", +"trois-huit", +"trois-mâts", +"trois-mâts-goélettes", +"Trois-Monts", +"Trois-Palis", +"trois-pierrais", +"Trois-Pierrais", +"trois-pierraise", +"Trois-Pierraise", +"trois-pierraises", +"Trois-Pierraises", +"Trois-Pistolet", +"Trois-Pistolien", +"Trois-Pistolois", +"trois-ponts", +"Trois-Ponts", +"Trois-Puits", +"trois-quarts", +"Trois-Riverain", +"Trois-Rives", +"Trois-Rivières", +"trois-riviérien", +"Trois-Riviérien", +"trois-riviérienne", +"Trois-Riviérienne", +"trois-riviériennes", +"Trois-Riviériennes", +"trois-riviériens", +"Trois-Riviériens", +"trois-roues", +"trois-six", +"trois-trois", +"Trois-Vèvres", +"Trois-Villes", +"trompe-cheval", +"trompe-couillon", +"trompe-la-mort", +"trompe-l'oeil", +"trompe-l'œil", +"trompe-oreilles", +"trompe-valet", +"Tronville-en-Barrois", +"trop-bu", +"trop-payé", +"trop-payés", +"trop-perçu", +"trop-perçus", +"trop-plein", +"trop-pleins", +"Trosly-Breuil", +"Trosly-Loire", +"trotte-chemin", +"trotte-menu", +"Trouan-le-Grand", +"trouble-fête", +"trouble-fêtes", +"Trouley-Labarthe", +"trousse-barre", +"trousse-barres", +"trousse-pet", +"trousse-pète", +"trousse-pètes", +"trousse-pets", +"trousse-pied", +"trousse-pieds", +"trousse-queue", +"trousse-queues", +"trousse-traits", +"Trouville-la-Haule", +"Trouville-sur-Mer", +"Troye-d'Ariège", +"Trucios-Turtzioz", +"Trucy-l'Orgueilleux", +"Trucy-sur-Yonne", +"Truttemer-le-Grand", +"Truttemer-le-Petit", +"Tschiertschen-Praden", +"tsé-tsé", +"tsé-tsés", +"t-shirt", +"T-shirt", +"t-shirts", +"T-shirts", +"tsoin-tsoin", +"tsouin-tsouin", +"T-SQL", +"tss-tss", +"tta-kun", +"tta-kuns", +"ttun-ttun", +"ttun-ttuns", +"tubéro-infundibulaire", +"tubéro-infundibulaires", +"tue-brebis", +"tue-chien", +"tue-chiens", +"tue-diable", +"tue-diables", +"tue-l'amour", +"tue-loup", +"tue-loups", +"tue-mouche", +"tue-mouches", +"tue-poule", +"tue-teignes", +"Tue-Vaques", +"tue-vent", +"Tugéras-Saint-Maurice", +"Tugny-et-Pont", +"Tümlauer-Koog", +"tuniso-égypto-lybien", +"tupi-guarani", +"Tupin-et-Semons", +"turbo-alternateur", +"turbo-alternateurs", +"turbo-capitalisme", +"turbo-capitalismes", +"turbo-compresseur", +"turbo-compresseurs", +"turbo-prof", +"turbo-profs", +"turco-coréen", +"turco-mongol", +"turco-persan", +"turco-syrien", +"Turing-calculable", +"Turing-calculables", +"turn-over", +"Turnow-Preilack", +"Turquestein-Blancrupt", +"tutti-frutti", +"tu-tu-ban-ban", +"tux-zillertal", +"twin-set", +"twin-sets", +"tz'utujil", +"Ua-Huka", +"Ua-Pou", +"Übach-Palenberg", +"Ubaye-Serre-Ponçon", +"über-célèbre", +"über-célèbres", +"Ubstadt-Weiher", +"Uchacq-et-Parentis", +"u-commerce", +"Uebigau-Wahrenbrück", +"Uecker-Randow", +"Uesslingen-Buch", +"Ugao-Miraballes", +"Uggiate-Trevano", +"Ugny-le-Gay", +"Ugny-l'Equipée", +"Ugny-l'Équipée", +"Ugny-sur-Meuse", +"Uhart-Cize", +"Uharte-Arakil", +"Uhart-Mixe", +"Uhldingen-Mühlhofen", +"Ühlingen-Birkendorf", +"Uhlstädt-Kirchhasel", +"ukiyo-e", +"ukiyo-es", +"Ully-Saint-Georges", +"Uncey-le-Franc", +"unda-maris", +"une-deux", +"uni-dimensionnel", +"uni-dimensionnelle", +"uni-dimensionnelles", +"uni-dimensionnels", +"uni-modal", +"uni-sonore", +"uni-sonores", +"unité-souris", +"unités-souris", +"univers-bloc", +"univers-île", +"univers-îles", +"Unstrut-Hainich", +"upa-upa", +"Upgant-Schott", +"urane-mica", +"uranes-micas", +"urétro-cystotomie", +"urétro-cystotomies", +"uro-génital", +"uro-génitale", +"uro-génitales", +"uro-génitaux", +"Urou-et-Crennes", +"Urroz-Villa", +"Urtenen-Schönbühl", +"Urville-Bocage", +"Urville-Nacqueville", +"Usclades-et-Rieutord", +"Usclas-d'Hérault", +"Usclas-du-Bosc", +"Ussel-d'Allier", +"Usson-du-Poitou", +"Usson-en-Forez", +"Ussy-sur-Marne", +"utéro-lombaire", +"utéro-ovarien", +"utéro-ovarienne", +"utéro-ovariennes", +"utéro-ovariens", +"utéro-placentaire", +"utéro-tubaire", +"utéro-vaginal", +"utéro-vaginale", +"utéro-vaginales", +"utéro-vaginaux", +"UTF-8", +"uto-aztèque", +"uto-aztèques", +"U-turn", +"U-turns", +"uva-ursi", +"uva-ursis", +"Uvernet-Fours", +"Uzay-le-Venon", +"Vabres-l'Abbaye", +"Vabre-Tizac", +"vache-biche", +"vache-garou", +"Vachères-en-Quint", +"Vacheresses-les-Basses", +"vaches-biches", +"vaches-garous", +"Vacognes-Neuilly", +"Vacquerie-le-Boucq", +"Vacqueriette-Erquières", +"vade-in-pace", +"va-de-la-gueule", +"vade-mecum", +"va-de-pied", +"vaeakau-taumako", +"vaeakau-taumakos", +"va-et-vient", +"vagino-vésical", +"Vahl-Ebersing", +"Vahl-lès-Bénestroff", +"Vahl-lès-Faulquemont", +"Vaihingen-sur-l'Enz", +"Vailly-sur-Aisne", +"Vailly-sur-Sauldre", +"vaine-pâture", +"Vaire-Arcier", +"Vaire-le-Petit", +"Vaire-sous-Corbie", +"Vaires-sur-Marne", +"Vair-sur-Loire", +"Vaison-la-Romaine", +"Vaivre-et-Montoille", +"Val-Alainois", +"Val-au-Perche", +"Val-Bélairien", +"Val-Brillantois", +"Val-Cenis", +"Val-d'Aoste", +"Val-d'Auzon", +"Val-Davidois", +"Val-de-Bride", +"Val-de-Chalvagne", +"Val-de-Fier", +"Valdegovía-Gaubea", +"Val-de-la-Haye", +"val-de-marnais", +"Val-de-Marne", +"Val-de-Mercy", +"Val-de-Meuse", +"Valdemoro-Sierra", +"Valdeolmos-Alalpardo", +"Val-d'Epy", +"Val-d'Épy", +"Val-de-Reuil", +"Val-de-Roulans", +"Val-de-Ruz", +"val-de-saânais", +"Val-de-Saânais", +"val-de-saânaise", +"Val-de-Saânaise", +"val-de-saânaises", +"Val-de-Saânaises", +"Val-de-Saâne", +"Val-des-Marais", +"Val-d'Espoirien", +"Val-des-Prés", +"Val-de-Travers", +"Valde-Ucieza", +"Val-de-Vesle", +"Val-de-Vie", +"Val-de-Vière", +"Val-de-Virvée", +"Valdieu-Lutran", +"Val-d'Illiez", +"Val-d'Isère", +"Val-d'Izé", +"Val-d'Oise", +"Val-d'Oisien", +"Val-d'Oisienne", +"Val-d'Oisiennes", +"Val-d'Oisiens", +"Val-d'Orger", +"Vald'orien", +"Val-d'Orien", +"Val-d'Ornain", +"Val-d'Oust", +"Val-du-Layon", +"Valence-d'Albigeois", +"Valence-en-Brie", +"valence-gramme", +"valence-grammes", +"Valence-sur-Baïse", +"valet-à-patin", +"Val-et-Châtillon", +"valet-de-pied", +"valets-à-patin", +"valets-de-pied", +"Valeyres-sous-Montagny", +"Valeyres-sous-Rances", +"Valeyres-sous-Ursins", +"Valfin-lès-Saint-Claude", +"Valfin-sur-Valouse", +"Val-Fouzon", +"Val-Jolois", +"Valkenburg-Houthem", +"Vallant-Saint-Georges", +"Valle-d'Alesani", +"Valle-di-Campoloro", +"Valle-di-Mezzana", +"Valle-di-Rostino", +"Valle-d'Orezza", +"Vallerois-le-Bois", +"Vallerois-Lorioz", +"Valleroy-aux-Saules", +"Valleroy-le-Sec", +"Vallières-les-Grandes", +"Vallières-lès-Metz", +"Vall-llobrega", +"Valloire-sur-Cisse", +"Vallon-en-Sully", +"Vallon-Pont-d'Arc", +"Vallon-sur-Gée", +"Vallouise-Pelvoux", +"Val-Maravel", +"Val-Meer", +"val-mésangeois", +"Val-Mésangeois", +"val-mésangeoise", +"Val-Mésangeoise", +"val-mésangeoises", +"Val-Mésangeoises", +"Val-Mont", +"Val-Morinois", +"Val-Racinois", +"Valras-Plage", +"Val-Revermont", +"val-saint-germinois", +"Val-Saint-Germinois", +"val-saint-germinoise", +"Val-Saint-Germinoise", +"val-saint-germinoises", +"Val-Saint-Germinoises", +"val-saint-pierrais", +"Val-Saint-Pierrais", +"val-saint-pierraise", +"Val-Saint-Pierraise", +"val-saint-pierraises", +"Val-Saint-Pierraises", +"Vals-des-Tilles", +"valse-hésitation", +"Val-Sennevillois", +"valses-hésitations", +"Vals-le-Chastel", +"Vals-les-Bains", +"Val-Sonnette", +"Vals-près-le-Puy", +"Val-Suzon", +"Valverde-Enrique", +"Valzin-en-Petite-Montagne", +"Valz-sous-Châteauneuf", +"Vanault-le-Châtel", +"Vanault-les-Dames", +"Vandenesse-en-Auxois", +"Vandœuvre-lès-Nancy", +"vanity-case", +"vanity-cases", +"Vannes-le-Châtel", +"Vannes-sur-Cosson", +"Vantoux-et-Longevelle", +"Vantoux-lès-Dijon", +"va-nu-pieds", +"va-outre", +"Varces-Allières-et-Risset", +"Varengeville-sur-Mer", +"Varenne-l'Arconce", +"Varenne-Saint-Germain", +"Varennes-Changy", +"Varennes-en-Argonne", +"Varennes-Jarcy", +"Varennes-le-Grand", +"Varennes-lès-Mâcon", +"Varennes-lès-Narcy", +"Varennes-lès-Nevers", +"Varennes-Saint-Honorat", +"Varennes-Saint-Sauveur", +"Varennes-sous-Dun", +"Varennes-sur-Allier", +"Varennes-sur-Amance", +"Varennes-sur-Fouzon", +"Varennes-sur-Loire", +"Varennes-sur-Morge", +"Varennes-sur-Seine", +"Varennes-sur-Tèche", +"Varennes-sur-Usson", +"Varenne-sur-le-Doubs", +"Varennes-Vauzelles", +"Varmie-Mazurie", +"Varneville-Bretteville", +"Varois-et-Chaignot", +"Vars-sur-Roseix", +"vasculo-nerveux", +"vaso-constricteur", +"vaso-constricteurs", +"vaso-constriction", +"vaso-constrictions", +"vaso-dilatateur", +"vaso-dilatateurs", +"vaso-dilatation", +"vaso-dilatations", +"vaso-intestinal", +"vaso-intestinale", +"vaso-intestinales", +"vaso-intestinaux", +"vaso-moteur", +"vaso-motrice", +"Vassieux-en-Vercors", +"Vassimont-et-Chapelaine", +"Vassy-lès-Avallon", +"Vassy-sous-Pisy", +"vas-y", +"va-te-laver", +"va-t-en", +"va-t'en", +"va-t-en-guerre", +"vaterite-A", +"vaterite-As", +"va-tout", +"Vattetot-sous-Beaumont", +"Vattetot-sur-Mer", +"Vatteville-la-Rue", +"Vaucelles-et-Beffecourt", +"Vauchelles-lès-Authie", +"Vauchelles-lès-Domart", +"Vauchelles-les-Quesnoy", +"Vauclerc-et-la-Vallée-Foulon", +"Vauconcourt-Nervezain", +"Vaudeville-le-Haut", +"Vaudoy-en-Brie", +"Vaudreuil-Lacois", +"Vaulnaveys-le-Bas", +"Vaulnaveys-le-Haut", +"Vault-de-Lugny", +"Vaulx-en-Velin", +"Vaulx-Milieu", +"Vaulx-Vraucourt", +"Vaunaveys-la-Rochette", +"Vaux-Andigny", +"Vaux-Champagne", +"vaux-champenois", +"Vaux-Champenois", +"vaux-champenoise", +"Vaux-Champenoise", +"vaux-champenoises", +"Vaux-Champenoises", +"Vaux-Chavanne", +"vaux-chavannois", +"Vaux-Chavannois", +"Vaux-Chavannoise", +"Vaux-d'Amognes", +"Vaux-devant-Damloup", +"Vaux-en-Amiénois", +"Vaux-en-Beaujolais", +"Vaux-en-Bugey", +"Vaux-en-Couhé", +"Vaux-en-Dieulet", +"Vaux-en-Pré", +"Vaux-en-Vermandois", +"Vaux-et-Borset", +"Vaux-et-Chantegrue", +"Vaux-la-Douce", +"Vaux-la-Grande", +"Vaux-la-Petite", +"Vaux-Lavalette", +"Vaux-le-Moncelot", +"Vaux-le-Pénil", +"Vaux-lès-Mouron", +"Vaux-lès-Mouzon", +"Vaux-lès-Palameix", +"Vaux-les-Prés", +"Vaux-lès-Rubigny", +"Vaux-lès-Saint-Claude", +"Vaux-lez-Rosières", +"Vaux-Marquenneville", +"Vaux-Montreuil", +"Vaux-Rouillac", +"Vaux-Saules", +"Vaux-sous-Aubigny", +"Vaux-sous-Bourcq", +"Vaux-sous-Chèvremont", +"Vaux-sous-Coulombs", +"Vaux-sur-Aure", +"Vaux-sur-Blaise", +"Vaux-sur-Eure", +"Vaux-sur-Lunain", +"Vaux-sur-Mer", +"Vaux-sur-Morges", +"vaux-sûrois", +"Vaux-Sûrois", +"Vaux-Sûroise", +"Vaux-sur-Poligny", +"Vaux-sur-Risle", +"Vaux-sur-Saint-Urbain", +"Vaux-sur-Seine", +"Vaux-sur-Seulles", +"Vaux-sur-Somme", +"Vaux-sur-Sûre", +"Vaux-sur-Vienne", +"Vaux-Villaine", +"Vavray-le-Grand", +"Vavray-le-Petit", +"Vayres-sur-Essonne", +"Vazeilles-Limandre", +"Vazeilles-près-Saugues", +"veau-laq", +"veau-marin", +"Veauville-lès-Baons", +"Veauville-lès-Quelles", +"Védrines-Saint-Loup", +"végéto-sulfurique", +"Veigy-Foncenex", +"Velaine-en-Haye", +"Velaine-sous-Amance", +"Velars-sur-Ouche", +"velci-aller", +"Velesmes-Echevanne", +"Velesmes-Échevanne", +"Velesmes-Essarts", +"Vélez-Blanco", +"Vélez-Málaga", +"Vélez-Rubio", +"Vélizy-Villacoublay", +"Vellechevreux-et-Courbenans", +"Vellefrey-et-Vellefrange", +"Velleguindry-et-Levrecey", +"Velle-le-Châtel", +"Vellereille-les-Brayeux", +"Vellereille-le-Sec", +"Vellerot-lès-Belvoir", +"Vellerot-lès-Vercel", +"Velle-sur-Moselle", +"Vellexon-Queutey-et-Vaudey", +"Vellexon-Queutrey-et-Vaudey", +"Velloreille-lès-Choye", +"vélo-école", +"vélo-écoles", +"Velone-Orneto", +"vélo-rail", +"vélo-rails", +"vélos-taxis", +"vélo-taxi", +"Velotte-et-Tatignécourt", +"Velsen-Noord", +"Velsen-Zuid", +"Veltem-Beisem", +"Velzeke-Ruddershove", +"Venarey-les-Laumes", +"Vendays-Montalivet", +"Vendegies-au-Bois", +"Vendegies-sur-Ecaillon", +"Vendegies-sur-Écaillon", +"Vendenesse-lès-Charolles", +"Vendenesse-sur-Arroux", +"Vendeuil-Caply", +"Vendeuvre-du-Poitou", +"Vendeuvre-sur-Barse", +"Vendin-lès-Béthune", +"Vendin-le-Vieil", +"Vendredi-Saint", +"Vendresse-Beaulne", +"Vendresse-et-Troyon", +"Veneux-les-Sablons", +"venez-y-voir", +"Ventenac-Cabardès", +"Ventenac-d'Aude", +"Ventenac-en-Minervois", +"Ventes-Saint-Rémy", +"ventre-madame", +"ventre-saint-gris", +"Ven-Zelderheide", +"Verbano-Cusio-Ossola", +"Vercel-Villedieu-le-Camp", +"Verchain-Maugré", +"ver-coquin", +"Verderel-lès-Sauqueuse", +"Verdun-en-Lauragais", +"Verdun-sur-Garonne", +"Verdun-sur-le-Doubs", +"Verdun-sur-Meuse", +"Verel-de-Montbel", +"Verel-Pragondran", +"verge-d'or", +"Verger-sur-Dive", +"verges-d'or", +"Vergt-de-Biron", +"Vérizet-Fleurville", +"Ver-lès-Chartres", +"Verlhac-Tescou", +"Vern-d'Anjou", +"Verneil-le-Chétif", +"Vernet-la-Varenne", +"Vernet-les-Bains", +"Verneuil-d'Avre-et-d'Iton", +"Verneuil-en-Bourbonnais", +"Verneuil-en-Halatte", +"Verneuil-Grand", +"Verneuil-le-Château", +"Verneuil-l'Etang", +"Verneuil-l'Étang", +"Verneuil-Moustiers", +"Verneuil-Petit", +"Verneuil-sous-Coucy", +"Verneuil-sur-Avre", +"Verneuil-sur-Igneraie", +"Verneuil-sur-Indre", +"Verneuil-sur-Seine", +"Verneuil-sur-Serre", +"Verneuil-sur-Vienne", +"Vernoil-le-Fourrier", +"Vernois-le-Fol", +"Vernois-lès-Belvoir", +"Vernois-lès-Vesvres", +"Vernois-sur-Mance", +"Vernosc-lès-Annonay", +"Vernou-en-Sologne", +"Vernou-la-Celle-sur-Seine", +"Vernou-sur-Brenne", +"Vernou-sur-Seine", +"Vernoux-en-Gâtine", +"Vernoux-en-Vivarais", +"Vernoux-sur-Boutonne", +"Vern-sur-Seiche", +"Véronnes-les-Petites", +"Verpillières-sur-Ource", +"Verrens-Arvey", +"Verreries-de-Moussans", +"Verrey-sous-Drée", +"Verrey-sous-Salmaise", +"Verrières-de-Joux", +"Verrières-du-Grosbois", +"Verrières-en-Anjou", +"Verrières-en-Forez", +"Verrières-le-Buisson", +"Verrines-sous-Celles", +"Verseilles-le-Bas", +"Verseilles-le-Haut", +"Vers-en-Montagne", +"vers-librisme", +"vers-librismes", +"vers-libriste", +"vers-libristes", +"Versols-et-Lapeyre", +"Vers-Pont-du-Gard", +"Vers-sous-Sellières", +"Vers-sur-Méouge", +"Vers-sur-Selles", +"Ver-sur-Launette", +"Ver-sur-Mer", +"vert-bois", +"vert-de-gris", +"vert-de-grisa", +"vert-de-grisai", +"vert-de-grisaient", +"vert-de-grisais", +"vert-de-grisait", +"vert-de-grisâmes", +"vert-de-grisant", +"vert-de-grisas", +"vert-de-grisasse", +"vert-de-grisassent", +"vert-de-grisasses", +"vert-de-grisassiez", +"vert-de-grisassions", +"vert-de-grisât", +"vert-de-grisâtes", +"vert-de-grise", +"vert-de-grisé", +"vert-de-grisée", +"vert-de-grisées", +"vert-de-grisent", +"vert-de-griser", +"vert-de-grisera", +"vert-de-griserai", +"vert-de-griseraient", +"vert-de-griserais", +"vert-de-griserait", +"vert-de-griseras", +"vert-de-grisèrent", +"vert-de-griserez", +"vert-de-griseriez", +"vert-de-griserions", +"vert-de-griserons", +"vert-de-griseront", +"vert-de-grises", +"vert-de-grisés", +"vert-de-grisez", +"vert-de-grisiez", +"vert-de-grisions", +"vert-de-grisons", +"Vert-en-Drouais", +"Verteuil-d'Agenais", +"Verteuil-sur-Charente", +"vert-jaune", +"Vert-le-Grand", +"Vert-le-Petit", +"vert-monnier", +"vert-monniers", +"Vert-Saint-Denis", +"Vert-Toulon", +"Vesaignes-sous-Lafauche", +"Vesaignes-sur-Marne", +"Vésenex-Crassy", +"Vésigneul-sur-Coole", +"Vésigneul-sur-Marne", +"Vesles-et-Caumont", +"vesse-de-loup", +"vesses-de-loup", +"veston-cravate", +"vestons-cravates", +"Vestric-et-Candiac", +"Vesvres-sous-Chalancey", +"vétéro-testamentaire", +"vétéro-testamentaires", +"Vétraz-Monthoux", +"vetula-domussien", +"Vetula-Domussien", +"vetula-domussienne", +"Vetula-Domussienne", +"vetula-domussiennes", +"Vetula-Domussiennes", +"vetula-domussiens", +"Vetula-Domussiens", +"Veuilly-la-Poterie", +"Veules-les-Roses", +"Veulettes-sur-Mer", +"Veurey-Voroize", +"Veuvey-sur-Ouche", +"Veuxhaulles-sur-Aube", +"Veuzain-sur-Loire", +"Vexin-sur-Epte", +"Veyre-Monton", +"Veyrier-du-Lac", +"Veyrines-de-Domme", +"Veyrines-de-Vergt", +"Veyrins-Thuellin", +"Vezels-Roussy", +"Vézeronce-Curtin", +"Vezin-le-Coquet", +"Vézins-de-Lévézou", +"Viala-du-Pas-de-Jaux", +"Viala-du-Tarn", +"Viâpres-le-Grand", +"Viâpres-le-Petit", +"Vic-de-Chassenay", +"Vic-des-Prés", +"vice-amiral", +"vice-amirale", +"vice-amirales", +"vice-amirauté", +"vice-amiraux", +"vice-bailli", +"vice-baillis", +"vice-camérier", +"vice-cardinal", +"vice-champion", +"vice-championne", +"vice-championnes", +"vice-champions", +"vice-chancelier", +"vice-chanceliers", +"vice-consul", +"vice-consulat", +"vice-consulats", +"vice-consule", +"vice-directeur", +"vice-gérance", +"vice-gérances", +"vice-gérant", +"vice-gérants", +"vice-gérent", +"vice-gérents", +"vice-gouverneur", +"vice-légat", +"vice-légation", +"vice-légations", +"vice-légats", +"Vic-en-Bigorre", +"Vic-en-Carladais", +"vice-official", +"vice-préfet", +"vice-présida", +"vice-présidai", +"vice-présidaient", +"vice-présidais", +"vice-présidait", +"vice-présidâmes", +"vice-présidant", +"vice-présidas", +"vice-présidasse", +"vice-présidassent", +"vice-présidasses", +"vice-présidassiez", +"vice-présidassions", +"vice-présidât", +"vice-présidâtes", +"vice-préside", +"vice-présidé", +"vice-présidée", +"vice-présidées", +"vice-présidence", +"vice-présidences", +"vice-président", +"vice-présidente", +"vice-présidentes", +"vice-présidents", +"vice-présider", +"vice-présidera", +"vice-présiderai", +"vice-présideraient", +"vice-présiderais", +"vice-présiderait", +"vice-présideras", +"vice-présidèrent", +"vice-présiderez", +"vice-présideriez", +"vice-présiderions", +"vice-présiderons", +"vice-présideront", +"vice-présides", +"vice-présidés", +"vice-présidez", +"vice-présidiez", +"vice-présidions", +"vice-présidons", +"vice-procureur", +"vice-procureurs", +"vice-recteur", +"vice-recteurs", +"vice-rectrice", +"vice-rectrices", +"vice-reine", +"vice-reines", +"vice-roi", +"vice-rois", +"vice-royal", +"vice-royale", +"vice-royales", +"vice-royauté", +"vice-royautés", +"vice-royaux", +"vice-secrétaire", +"vice-sénéchal", +"vices-gouverneurs", +"vice-versa", +"Vic-Fezensac", +"Vichel-Nanteuil", +"Vic-la-Gardiole", +"Vic-le-Comte", +"Vic-le-Fesq", +"Vicq-d'Auribat", +"Vicq-Exemplet", +"Vicq-sur-Breuilh", +"Vicq-sur-Gartempe", +"Vicq-sur-Mer", +"Vicq-sur-Nahon", +"Vic-sous-Thil", +"Vic-sur-Aisne", +"Vic-sur-Cère", +"Vic-sur-Seille", +"victim-blaming", +"Victot-Pontfol", +"vide-atelier", +"vide-ateliers", +"vide-bouteille", +"vide-bouteilles", +"vide-cave", +"vide-caves", +"vide-citrons", +"vide-couilles", +"vide-dressing", +"vide-dressings", +"vide-gousset", +"vide-goussets", +"vide-grange", +"vide-grenier", +"vide-greniers", +"vide-maison", +"vide-maisons", +"vide-ordure", +"vide-ordures", +"vide-poche", +"vide-poches", +"vide-pomme", +"vide-pommes", +"vide-pommier", +"vide-vite", +"vieil-baugeois", +"Vieil-Baugeois", +"vieil-baugeoise", +"Vieil-Baugeoise", +"vieil-baugeoises", +"Vieil-Baugeoises", +"Vieil-Hesdin", +"vieil-hesdinois", +"Vieil-Hesdinois", +"vieil-hesdinoise", +"Vieil-Hesdinoise", +"vieil-hesdinoises", +"Vieil-Hesdinoises", +"Vieil-Moutier", +"Viel-Arcy", +"Vielle-Adour", +"Vielle-Aure", +"Vielle-Louron", +"Viellenave-d'Arthez", +"Viellenave-de-Bidache", +"Viellenave-de-Navarrenx", +"Viellenave-sur-Bidouze", +"Vielle-Saint-Girons", +"Vielle-Soubiran", +"vielle-soubiranais", +"Vielle-Soubiranais", +"vielle-soubiranaise", +"Vielle-Soubiranaise", +"vielle-soubiranaises", +"Vielle-Soubiranaises", +"Vielle-Tursan", +"viel-mauricien", +"Viel-Mauricien", +"viel-mauricienne", +"Viel-Mauricienne", +"viel-mauriciennes", +"Viel-Mauriciennes", +"viel-mauriciens", +"Viel-Mauriciens", +"Vielmur-sur-Agout", +"Viel-Saint-Remy", +"Viels-Maisons", +"Vienne-en-Arthies", +"Vienne-en-Bessin", +"Vienne-en-Val", +"Vienne-la-Ville", +"Vienne-le-Château", +"viens-poupoulerie", +"viens-poupouleries", +"Vier-Bordes", +"Viereth-Trunstadt", +"Vierset-Barse", +"Vierves-sur-Viroin", +"Vierville-sur-Mer", +"Viet-Nam", +"Viêt-nam", +"Vieu-d'Izenave", +"Viéville-en-Haye", +"Viéville-sous-les-Côtes", +"Vievy-le-Rayé", +"vif-argent", +"vif-gage", +"vigne-blanche", +"vignes-blanches", +"Vignes-la-Côte", +"Vigneulles-lès-Hattonchâtel", +"Vigneul-sous-Montmédy", +"Vigneux-de-Bretagne", +"Vigneux-Hocquet", +"Vigneux-sur-Seine", +"Vignola-Falesina", +"Vignoux-sous-les-Aix", +"Vignoux-sur-Barangeon", +"Vigny-lès-Paray", +"Vigoulet-Auzil", +"Vila-real", +"Vila-rodona", +"Vila-sacra", +"Vila-sana", +"Vila-seca", +"Vilcey-sur-Trey", +"Vildé-Guingalan", +"Villabona-Amasa", +"Village-Neuf", +"village-rue", +"villages-rue", +"villages-rues", +"villages-tas", +"village-tas", +"Villaines-en-Duesmois", +"Villaines-la-Carelle", +"Villaines-la-Gonais", +"Villaines-la-Juhel", +"Villaines-les-Prévôtes", +"Villaines-les-Rochers", +"Villaines-sous-Bois", +"Villaines-sous-Lucé", +"Villaines-sous-Malicorne", +"Villar-d'Arêne", +"Villard-Bonnot", +"villard-de-lans", +"Villard-de-Lans", +"villard-d'hérien", +"Villard-d'Hérien", +"villard-d'hérienne", +"Villard-d'Hérienne", +"villard-d'hériennes", +"Villard-d'Hériennes", +"villard-d'hériens", +"Villard-d'Hériens", +"Villard-d'Héry", +"Villard-Léger", +"Villard-Notre-Dame", +"Villard-Reculas", +"Villard-Reymond", +"Villard-Saint-Christophe", +"Villard-Saint-Sauveur", +"Villard-Sallet", +"Villards-d'Héria", +"Villard-sur-Bienne", +"Villard-sur-Doron", +"Villard-sur-l'Ain", +"Villarejo-Periesteban", +"Villar-en-Val", +"Villar-Loubière", +"Villarodin-Bourget", +"Villar-Saint-Anselme", +"Villar-Saint-Pancrace", +"Villars-Brandis", +"Villars-Colmars", +"Villarsel-sur-Marly", +"Villars-en-Azois", +"Villars-en-Pons", +"Villars-Épeney", +"Villars-et-Villenotte", +"Villars-Fontaine", +"Villars-le-Comte", +"Villars-le-Pautel", +"Villars-lès-Blamont", +"Villars-les-Bois", +"Villars-les-Dombes", +"Villars-le-Sec", +"Villars-les-Moines", +"Villars-le-Terroir", +"Villars-Sainte-Croix", +"Villars-Saint-Georges", +"Villars-Saint-Marcellin", +"Villars-Santenoge", +"Villars-sous-Dampjoux", +"Villars-sous-Ecot", +"Villars-sous-Écot", +"Villars-sous-Yens", +"Villars-sur-Glâne", +"Villars-sur-Var", +"Villarta-Quintana", +"Villarzel-Cabardès", +"Villarzel-du-Razès", +"Villaverde-Mogina", +"Villaz-Saint-Pierre", +"Villebois-Lavalette", +"Villebois-les-Pins", +"Villebon-sur-Yvette", +"Villecey-sur-Mad", +"Villecomtal-sur-Arros", +"Villedieu-la-Blouère", +"Villedieu-le-Camp", +"Villedieu-le-Château", +"Villedieu-lès-Bailleul", +"Villedieu-les-Poêles", +"Villedieu-les-Poêles-Rouffigny", +"Villedieu-sur-Indre", +"Villefranche-d'Albigeois", +"Villefranche-d'Allier", +"Villefranche-de-Conflent", +"Villefranche-de-Lauragais", +"Villefranche-de-Lonchat", +"Villefranche-de-Longchapt", +"Villefranche-de-Panat", +"Villefranche-de-Rouergue", +"Villefranche-du-Périgord", +"Villefranche-du-Queyran", +"Villefranche-le-Château", +"Villefranche-sur-Cher", +"Villefranche-sur-Mer", +"Villefranche-sur-Saône", +"Villegusien-le-Lac", +"Villeloin-Coulangé", +"Villelongue-d'Aude", +"Villelongue-de-la-Salanque", +"Villelongue-dels-Monts", +"Villemagne-l'Argentière", +"Villemaur-sur-Vanne", +"Villemeux-sur-Eure", +"Villemoiron-en-Othe", +"Villemoisson-sur-Orge", +"Villemur-sur-Tarn", +"Villenauxe-la-Grande", +"Villenauxe-la-Petite", +"Villenave-de-Rions", +"Villenave-d'Ornon", +"Villenave-près-Béarn", +"Villenave-près-Marsac", +"Villennes-sur-Seine", +"Villequier-Aumont", +"Villerouge-Termenès", +"Villeroy-sur-Méholle", +"villes-champignons", +"villes-clés", +"Villesèque-des-Corbières", +"villes-États", +"villes-provinces", +"Villes-sur-Auzon", +"Villey-le-Sec", +"Villey-Saint-Etienne", +"Villey-Saint-Étienne", +"Villey-sur-Tille", +"Villez-sous-Bailleul", +"Villez-sur-le-Neubourg", +"Villié-Morgon", +"Villieu-Loyes-Mollon", +"Villingen-Schwenningen", +"Villons-les-Buissons", +"Villotte-devant-Louppy", +"Villotte-Saint-Seine", +"Villotte-sur-Aire", +"Villotte-sur-Ource", +"Vilosnes-Haraumont", +"Vilters-Wangs", +"Vincent-Froideville", +"Vincy-Manœuvre", +"Vincy-Reuil-et-Magny", +"Vindrac-Alayrac", +"Vineuil-Saint-Firmin", +"vingt-cinq", +"Vingt-Cinq", +"vingt-cinquième", +"vingt-cinquièmes", +"vingt-deux", +"vingt-deuxain", +"vingt-deuxains", +"vingt-deuxième", +"vingt-deuxièmes", +"vingt-et-un", +"vingt-et-une", +"vingt-et-unième", +"vingt-et-unièmes", +"Vingt-Hanaps", +"vingt-hanapsien", +"Vingt-Hanapsien", +"vingt-hanapsienne", +"Vingt-Hanapsienne", +"vingt-hanapsiennes", +"Vingt-Hanapsiennes", +"vingt-hanapsiens", +"Vingt-Hanapsiens", +"vingt-huit", +"Vingt-Huit", +"vingt-huitième", +"vingt-huitièmes", +"vingt-neuf", +"vingt-neuvième", +"vingt-neuvièmes", +"vingt-quatrain", +"vingt-quatrains", +"vingt-quatre", +"vingt-quatrième", +"vingt-quatrièmes", +"vingt-sept", +"Vingt-Sept", +"vingt-septième", +"vingt-septièmes", +"vingt-six", +"vingt-sixain", +"vingt-sixième", +"vingt-sixièmes", +"vingt-trois", +"vingt-troisième", +"vingt-troisièmes", +"vino-benzoïque", +"vino-benzoïques", +"Vinon-sur-Verdon", +"Vins-sur-Caramy", +"Viodos-Abense-de-Bas", +"violet-évêque", +"Viols-en-Laval", +"Viols-le-Fort", +"viornes-tin", +"viorne-tin", +"vire-capot", +"vire-capots", +"Viré-en-Champagne", +"Vire-sur-Lot", +"Vireux-Molhain", +"Vireux-Wallerand", +"vire-vire", +"Virey-le-Grand", +"Virey-sous-Bar", +"Virginal-Samme", +"Virginie-Occidentale", +"Virieu-le-Grand", +"Virieu-le-Petit", +"Viry-Châtillon", +"Viry-Noureuil", +"visa-bourgien", +"Visa-Bourgien", +"visa-bourgienne", +"Visa-Bourgienne", +"visa-bourgiennes", +"Visa-Bourgiennes", +"visa-bourgiens", +"Visa-Bourgiens", +"vis-à-vis", +"Vis-en-Artois", +"Vissac-Auteyrac", +"visuo-spacial", +"visuo-spaciale", +"visuo-spaciales", +"visuo-spaciaux", +"vit-de-mulet", +"Vitoria-Gasteiz", +"Vitrac-en-Viadène", +"Vitrac-Saint-Vincent", +"Vitrac-sur-Montane", +"Vitrai-sous-Laigle", +"Vitray-en-Beauce", +"Vitray-sous-Brézolles", +"Vitrey-sur-Mance", +"Vitrolles-en-Luberon", +"Vitrolles-en-Lubéron", +"Vitry-aux-Loges", +"Vitry-en-Artois", +"Vitry-en-Charollais", +"Vitry-en-Montagne", +"Vitry-en-Perthois", +"Vitry-Laché", +"Vitry-la-Ville", +"Vitry-le-Croisé", +"Vitry-le-François", +"Vitry-lès-Cluny", +"Vitry-lès-Nogent", +"Vitry-sur-Loire", +"Vitry-sur-Orne", +"Vitry-sur-Seine", +"Vittel-menthe", +"Vitz-sur-Authie", +"Viuz-en-Sallaz", +"Viuz-la-Chiésaz", +"vivaro-alpin", +"vivaro-alpins", +"vive-eau", +"vive-la-joie", +"Vive-Saint-Bavon", +"Vive-Saint-Éloi", +"vives-eaux", +"Vivier-au-Court", +"Vivier-Danger", +"Viviers-du-Lac", +"Viviers-le-Gras", +"Viviers-lès-Lavaur", +"Viviers-lès-Montagnes", +"Viviers-lès-Offroicourt", +"Viviers-sur-Artaut", +"Viviers-sur-Chiers", +"vivre-ensemble", +"v'là", +"Vlaardinger-Ambacht", +"Vlagtwedder-Barlage", +"Vlagtwedder-Veldhuis", +"Vlodrop-Station", +"v'nir", +"v'nu", +"Vœlfling-lès-Bouzonville", +"Vœuil-et-Giget", +"Vogelsang-Warsin", +"Void-Vacon", +"voile-manteau", +"voile-manteaux", +"Voisins-le-Bretonneux", +"vois-tu", +"voiture-bar", +"voiture-bélier", +"voiture-cage", +"voiture-couchettes", +"voiture-lits", +"voiture-pilote", +"voiture-restaurant", +"voiture-salon", +"voitures-balais", +"voitures-bars", +"voitures-béliers", +"voitures-cages", +"voitures-couchettes", +"voitures-lits", +"voitures-pilotes", +"voitures-restaurants", +"voitures-salons", +"voitures-ventouses", +"voiture-ventouse", +"Voivres-lès-le-Mans", +"vol-au-vent", +"vol-bélier", +"vol-béliers", +"volley-ball", +"volley-balls", +"Vollore-Montagne", +"Vollore-Ville", +"Volmerange-lès-Boulay", +"Volmerange-les-Mines", +"volt-ampère", +"volt-ampères", +"volte-face", +"volte-faces", +"Vomécourt-sur-Madon", +"vomito-negro", +"vomito-négro", +"Voor-Drempt", +"Voray-sur-l'Ognon", +"Vorges-les-Pins", +"Voroux-Goreux", +"Voroux-lez-Liers", +"Vortum-Mullem", +"Vosne-Romanée", +"Vouillé-les-Marais", +"Voulaines-les-Templiers", +"Vouneuil-sous-Biard", +"Vouneuil-sur-Vienne", +"vous-même", +"vous-mêmes", +"Voutenay-sur-Cure", +"Vouthon-Bas", +"Vouthon-Haut", +"Vouvray-sur-Huisne", +"Vouvray-sur-Loir", +"Vovray-en-Bornes", +"voyageur-kilomètre", +"voyageurs-kilomètres", +"voyez-vous", +"Vraignes-en-Vermandois", +"Vraignes-lès-Hornoy", +"Vresse-sur-Semois", +"Vrigne-aux-Bois", +"Vrigne-Meuse", +"vrigne-meusien", +"Vrigne-Meusien", +"vrigne-meusienne", +"Vrigne-Meusienne", +"vrigne-meusiennes", +"Vrigne-Meusiennes", +"vrigne-meusiens", +"Vrigne-Meusiens", +"Vrijhoeve-Capelle", +"Vroncourt-la-Côte", +"v's", +"vu-arriver", +"Vufflens-la-Ville", +"Vufflens-le-Château", +"Vuisternens-devant-Romont", +"Vuisternens-en-Ogoz", +"Vulaines-lès-Provins", +"Vulaines-sur-Seine", +"Vyans-le-Val", +"Vyle-et-Tharoul", +"Vy-le-Ferroux", +"Vy-lès-Filain", +"Vy-lès-Lure", +"vy-les-luron", +"Vy-les-Luron", +"vy-les-lurone", +"Vy-les-Lurone", +"vy-les-lurones", +"Vy-les-Lurones", +"vy-les-lurons", +"Vy-les-Lurons", +"Vy-lès-Rupt", +"Vyt-lès-Belvoir", +"Wadonville-en-Woëvre", +"Wageningen-Hoog", +"wagon-bar", +"wagon-citerne", +"wagon-couchette", +"wagon-couchettes", +"wagon-foudre", +"wagon-grue", +"wagon-lit", +"wagon-lits", +"wagon-poche", +"wagon-poste", +"wagon-réservoir", +"wagon-restaurant", +"wagon-salon", +"wagons-bars", +"wagons-citernes", +"wagons-couchettes", +"wagons-foudres", +"wagons-grues", +"wagons-lits", +"wagons-réservoirs", +"wagons-restaurants", +"wagons-salons", +"wagons-tombereaux", +"wagons-trémie", +"wagon-tombereau", +"wagon-trémie", +"wagon-vanne", +"wah-wah", +"Wailly-Beaucamp", +"Waldeck-Frankenberg", +"Waldfischbach-Burgalben", +"Waldhof-Falkenstein", +"Wald-Michelbach", +"Waldshut-Tiengen", +"Walhain-Saint-Paul", +"Walincourt-Selvigny", +"walkies-talkies", +"walkie-talkie", +"Wallendorf-Pont", +"Wallers-en-Fagne", +"Wallers-Trélon", +"Wallis-et-Futuna", +"Wallon-Cappel", +"wallon-cappelois", +"Wallon-Cappelois", +"wallon-cappeloise", +"Wallon-Cappeloise", +"wallon-cappeloises", +"Wallon-Cappeloises", +"Waltenheim-sur-Zorn", +"Walton-on-Thames", +"Wanchy-Capval", +"Wandignies-Hamage", +"Wanfercée-Baulet", +"Wangenbourg-Engenthal", +"Wangen-Brüttisellen", +"Wannegem-Lede", +"Wanzleben-Börde", +"waray-waray", +"Waret-la-Chaussée", +"Waret-l'Évêque", +"Warfusée-Abancourt", +"Wargemoulin-Hurlus", +"Wargnies-le-Grand", +"Wargnies-le-Petit", +"Warlencourt-Eaucourt", +"Warlincourt-lès-Pas", +"Warloy-Baillon", +"Warnant-Dreye", +"Warneton-Sud", +"Wartenberg-Rohrbach", +"Warth-Weiningen", +"Wasmes-Audemez-Briffœil", +"Wasnes-au-Bac", +"Wassy-sur-Blaise", +"water-ballast", +"water-ballasts", +"water-closet", +"water-closets", +"Waterland-Oudeman", +"Watermael-Boitsfort", +"water-polo", +"water-proof", +"water-proofs", +"Wath-on-Dearne", +"Wath-upon-Dearne", +"Wattignies-la-Victoire", +"Wauthier-Braine", +"wauthier-brainois", +"Wauthier-Brainois", +"Wauthier-Brainoise", +"waux-hall", +"waux-halls", +"Wavrans-sur-l'Aa", +"Wavrans-sur-Ternoise", +"Wavrechain-sous-Denain", +"Wavrechain-sous-Faulx", +"Wavre-Notre-Dame", +"Wavre-Saint-Catherine", +"Wavre-Sainte-Catherine", +"waza-ari", +"w.-c.", +"web-to-print", +"week-end", +"week-ends", +"Weiler-la-Tour", +"Weiler-Simmerberg", +"Weilheim-Schongau", +"Weimar-Campagne", +"Weißenborn-Lüderode", +"Weißenburg-Gunzenhausen", +"Welles-Pérennes", +"Wemaers-Cappel", +"wemaers-cappelois", +"Wemaers-Cappelois", +"wemaers-cappeloise", +"Wemaers-Cappeloise", +"wemaers-cappeloises", +"Wemaers-Cappeloises", +"Wenningstedt-Braderup", +"Wenum-Wiesel", +"Wernberg-Köblitz", +"Werra-Meissner", +"Wervicq-Nord", +"Wervicq-Sud", +"Wesembeek-Ophem", +"wesh-wesh", +"West-Barendrecht", +"West-Cappel", +"west-cappelois", +"West-Cappelois", +"west-cappeloise", +"West-Cappeloise", +"west-cappeloises", +"West-Cappeloises", +"Westerhaar-Vriezenveensewijk", +"Wester-Koggenland", +"Wester-Ohrstedt", +"West-Graftdijk", +"Westhouse-Marmoutier", +"Westkapelle-Binnen", +"West-Knollendam", +"Westrem-Saint-Denis", +"West-Souburg", +"West-Terschelling", +"Wettin-Löbejün", +"Wezembeek-Oppem", +"Wez-Velvain", +"white-spirit", +"Wickersheim-Wilshausen", +"Wiège-Faty", +"Wiencourt-l'Equipée", +"Wiencourt-l'Équipée", +"Wierre-au-Bois", +"Wierre-Effroy", +"Wi-Fi", +"Wihr-au-Val", +"Wihr-en-Plaine", +"Wilkau-Haßlau", +"Willer-sur-Thur", +"willy-willy", +"Wilp-Achterhoek", +"Wilzenberg-Hußweiler", +"Wingen-sur-Moder", +"Winghe-Saint-Georges", +"Winkel-Sainte-Croix", +"Winkel-Saint-Éloi", +"Wintzenheim-Kochersberg", +"Wiry-au-Mont", +"Witry-lès-Reims", +"witsuwit'en", +"Wœlfling-lès-Sarreguemines", +"Wokuhl-Dabelow", +"Wolframs-Eschenbach", +"Wolfsburg-Unkeroda", +"Woluwe-Saint-Étienne", +"Woluwe-Saint-Lambert", +"Woluwe-Saint-Pierre", +"Wormeldange-Haut", +"Wortegem-Petegem", +"wuchiaping'ien", +"Wuchiaping'ien", +"Wünnewil-Flamatt", +"Wust-Fischbeck", +"Wutha-Farnroda", +"Wy-dit-Joli-Village", +"Xanton-Chassenon", +"X-arbre", +"X-arbres", +"X-board", +"X-boards", +"Xivray-et-Marvoisin", +"Xivry-Circourt", +"Xonrupt-Longemer", +"X-SAMPA", +"y'a", +"yacht-club", +"yacht-clubs", +"Yaucourt-Bussus", +"Yécora-Iekora", +"Yernée-Fraineux", +"Yèvre-la-Ville", +"Yèvre-le-Châtel", +"Yèvres-le-Petit", +"yé-yé", +"Ygos-Saint-Saturnin", +"yin-yang", +"ylang-ylang", +"yocto-ohm", +"yocto-ohms", +"Yo-kai", +"Yorkshire-et-Humber", +"yotta-ampère", +"yotta-ampères", +"young-ice", +"young-ices", +"you-you", +"you-yous", +"yo-yo", +"yo-yota", +"yo-yotai", +"yo-yotaient", +"yo-yotais", +"yo-yotait", +"yo-yotâmes", +"yo-yotant", +"yo-yotas", +"yo-yotasse", +"yo-yotassent", +"yo-yotasses", +"yo-yotassiez", +"yo-yotassions", +"yo-yotât", +"yo-yotâtes", +"yo-yote", +"yo-yoté", +"yo-yotée", +"yo-yotées", +"yo-yotent", +"yo-yoter", +"yo-yotera", +"yo-yoterai", +"yo-yoteraient", +"yo-yoterais", +"yo-yoterait", +"yo-yoteras", +"yo-yotèrent", +"yo-yoterez", +"yo-yoteriez", +"yo-yoterions", +"yo-yoterons", +"yo-yoteront", +"yo-yotes", +"yo-yotés", +"yo-yotez", +"yo-yotiez", +"yo-yotions", +"yo-yotons", +"Ypreville-Biville", +"Yronde-et-Buron", +"Yssac-la-Tourette", +"yuki-onna", +"yuki-onnas", +"Yverdon-les-Bains", +"Yves-Gomezée", +"Yvetot-Bocage", +"Yvignac-la-Tour", +"Yville-sur-Seine", +"Yvoy-le-Marron", +"Yvrac-et-Malleyrand", +"Yvré-le-Pôlin", +"Yvré-l'Evêque", +"Yvré-l'Évêque", +"Yzeures-sur-Creuse", +"Z9-12:Ac", +"Z9-dodécénylacétate", +"Zahna-Elster", +"zapil's", +"zapil'ser", +"zayse-zergulla", +"Z/E-8-DDA", +"zébré-de-vert", +"Zella-Mehlis", +"Zeltingen-Rachtig", +"z'en", +"Zend-avesta", +"zénith-secteur", +"zénith-secteurs", +"zepto-ohm", +"zepto-ohms", +"Zernitz-Lohm", +"zéro-dimensionnel", +"Zétrud-Lumay", +"zetta-ampère", +"zetta-ampères", +"Zeulenroda-Triebes", +"Zevenhuizen-Moerkapelle", +"Z-grille", +"Z-grilles", +"Zichen-Zussen-Bolder", +"Ziegra-Knobelsdorf", +"Zihlschlacht-Sitterdorf", +"Zillis-Reischen", +"zinc-blende", +"zinc-blendes", +"Ziortza-Bolibar", +"zizi-panpan", +"Zoerle-Parwijs", +"Zoeterwoude-Dorp", +"Zoeterwoude-Rijndijk", +"zones-clés", +"zoo-cinéma", +"zoo-cinémas", +"zoo-gymnaste", +"zoo-gymnastes", +"Zschaitz-Ottewig", +"Zuid-Beijerland", +"Zuid-Eierland", +"Zuid-Polsbroek", +"Zuid-Scharwoude", +"Zuid-Spierdijk", +"Zuid-Waddinxveen", +"zulgo-gemzek", +"zuricho-montpelliérain", +"zuricho-montpelliéraine", +"zuricho-montpelliéraines", +"zuricho-montpelliérains", +"zut-au-berger", +"Zwaagdijk-Oost", +"Zwaagdijk-West", +"z'y", +"z'yeuta", +"z'yeutai", +"z'yeutaient", +"z'yeutais", +"z'yeutait", +"z'yeutâmes", +"z'yeutant", +"z'yeutas", +"z'yeutasse", +"z'yeutassent", +"z'yeutasses", +"z'yeutassiez", +"z'yeutassions", +"z'yeutât", +"z'yeutâtes", +"z'yeute", +"z'yeuté", +"z'yeutée", +"z'yeutées", +"z'yeutent", +"z'yeuter", +"z'yeutera", +"z'yeuterai", +"z'yeuteraient", +"z'yeuterais", +"z'yeuterait", +"z'yeuteras", +"z'yeutèrent", +"z'yeuterez", +"z'yeuteriez", +"z'yeuterions", +"z'yeuterons", +"z'yeuteront", +"z'yeutes", +"z'yeutés", +"z'yeutez", +"z'yeutiez", +"z'yeutions", +"z'yeutons", +"z'yeux", +"zygomato-auriculaire", +"zygomato-labial", +"zygomato-maxillaire", +"zy-va", +"zy-vas", +"α-Dahllite", +"α-Dahllites", +"α-D-glucofuranose", +"α-D-glucopyranose", +"α-D-ribofuranose", +"α-D-ribopyranose", +"α-L-ribofuranose", +"α-L-ribopyranose", +"β-Dahllite", +"β-Dahllites", +"β-D-glucofuranose", +"β-D-glucopyranose", +"β-D-ribofuranose", +"β-D-ribopyranose", +"β-galactosidase", +"β-lactamine", +"β-L-ribofuranose", +"β-L-ribopyranose", +"β-sitostérol", +"β-sitostérols", +"γ-Dahllite", +"γ-Dahllites", +"μ-métal", +"σ-additivité", +"σ-additivités", +"σ-compacité", +"σ-compact", +"σ-compacts"] diff --git a/spacy/fr/language_data.py b/spacy/fr/language_data.py index bbbeb1535..e199fad60 100644 --- a/spacy/fr/language_data.py +++ b/spacy/fr/language_data.py @@ -1,17 +1,11 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals -from .. import language_data as base -from ..language_data import strings_to_exc, update_exc - from .stop_words import STOP_WORDS +from .tokenizer_exceptions import get_tokenizer_exceptions, TOKEN_MATCH STOP_WORDS = set(STOP_WORDS) -TOKENIZER_EXCEPTIONS = strings_to_exc(base.EMOTICONS) -update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) - - -__all__ = ["TOKENIZER_EXCEPTIONS", "STOP_WORDS"] +__all__ = ["STOP_WORDS", "get_tokenizer_exceptions", "TOKEN_MATCH"] diff --git a/spacy/fr/punctuation.py b/spacy/fr/punctuation.py new file mode 100644 index 000000000..a7a45b65d --- /dev/null +++ b/spacy/fr/punctuation.py @@ -0,0 +1,37 @@ +# coding: utf8 + +from __future__ import unicode_literals + +from ..language_data.punctuation import ALPHA, TOKENIZER_INFIXES, LIST_PUNCT, LIST_ELLIPSES, LIST_QUOTES, CURRENCY,\ + UNITS, ALPHA_LOWER, QUOTES, ALPHA_UPPER + + +_ELISION = " ' ’ " +ELISION = _ELISION.strip().replace(' ', '').replace('\n', '') + +HYPHENS = r"""- – — ‐ ‑""".strip().replace(' ', '').replace('\n', '') + + +TOKENIZER_SUFFIXES = ( + LIST_PUNCT + + LIST_ELLIPSES + + LIST_QUOTES + + [ + r'(?<=[0-9])\+', + r'(?<=°[FfCcKk])\.', # 4°C. -> ["4°C", "."] + r'(?<=[0-9])°[FfCcKk]', # 4°C -> ["4", "°C"] + r'(?<=[0-9])%', # 4% -> ["4", "%"] + r'(?<=[0-9])(?:{c})'.format(c=CURRENCY), + r'(?<=[0-9])(?:{u})'.format(u=UNITS), + r'(?<=[0-9{al}{p}(?:{q})])\.'.format(al=ALPHA_LOWER, p=r'%²\-\)\]\+', q=QUOTES), + r'(?<=[{au}][{au}])\.'.format(au=ALPHA_UPPER), + ] +) + + +TOKENIZER_INFIXES += [ + r'(?<=[{a}][{el}])(?=[{a}])'.format(a=ALPHA, el=ELISION), +] + + +__all__ = ["TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] diff --git a/spacy/fr/stop_words.py b/spacy/fr/stop_words.py index 52e4f6f0c..d9b820537 100644 --- a/spacy/fr/stop_words.py +++ b/spacy/fr/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/fr/tokenizer_exceptions.py b/spacy/fr/tokenizer_exceptions.py new file mode 100644 index 000000000..43806e270 --- /dev/null +++ b/spacy/fr/tokenizer_exceptions.py @@ -0,0 +1,215 @@ +# coding: utf8 + +from __future__ import unicode_literals + +from .. import language_data as base +from ..language_data import strings_to_exc, update_exc +from ..language_data.tokenizer_exceptions import _URL_PATTERN +from ..language_data.punctuation import ALPHA_LOWER + +from .punctuation import ELISION, HYPHENS + +from ..symbols import * + +import os +import io +import re + + +def get_exceptions(): + from ._tokenizer_exceptions_list import BASE_EXCEPTIONS + return BASE_EXCEPTIONS + + +def upper_first_letter(text): + if len(text) == 0: + return text + + if len(text) == 1: + return text.upper() + + return text[0].upper() + text[1:] + + +def lower_first_letter(text): + if len(text) == 0: + return text + + if len(text) == 1: + return text.lower() + + return text[0].lower() + text[1:] + + +def get_tokenizer_exceptions(): + tokenizer_exceptions = strings_to_exc(base.EMOTICONS) + update_exc(tokenizer_exceptions, strings_to_exc(base.ABBREVIATIONS)) + + ABBREVIATIONS_1 = { + "av.": [ + {LEMMA: "avant", ORTH: "av."} + ], + "janv.": [ + {LEMMA: "janvier", ORTH: "janv."} + ], + "févr.": [ + {LEMMA: "février", ORTH: "févr."} + ], + "avr.": [ + {LEMMA: "avril", ORTH: "avr."} + ], + "juill.": [ + {LEMMA: "juillet", ORTH: "juill."} + ], + "sept.": [ + {LEMMA: "septembre", ORTH: "sept."} + ], + "oct.": [ + {LEMMA: "octobre", ORTH: "oct."} + ], + "nov.": [ + {LEMMA: "novembre", ORTH: "nov."} + ], + "déc.": [ + {LEMMA: "décembre", ORTH: "déc."} + ], + "apr.": [ + {LEMMA: "après", ORTH: "apr."} + ], + "J.-C.": [ + {LEMMA: "Jésus", ORTH: "J."}, + {LEMMA: "Christ", ORTH: "-C."} + ], + "Dr.": [ + {LEMMA: "docteur", ORTH: "Dr."} + ], + "M.": [ + {LEMMA: "monsieur", ORTH: "M."} + ], + "Mr.": [ + {LEMMA: "monsieur", ORTH: "Mr."} + ], + "Mme.": [ + {LEMMA: "madame", ORTH: "Mme."} + ], + "Mlle.": [ + {LEMMA: "mademoiselle", ORTH: "Mlle."} + ], + "n°": [ + {LEMMA: "numéro", ORTH: "n°"} + ], + "d°": [ + {LEMMA: "degrés", ORTH: "d°"} + ], + "St.": [ + {LEMMA: "saint", ORTH: "St."} + ], + "Ste.": [ + {LEMMA: "sainte", ORTH: "Ste."} + ] + } + + ABBREVIATIONS_2 = [ + "etc.", + ] + + VERBS = {} + for verb, verb_lemma in (("a", "avoir"), ("est", "être"), + ("semble", "sembler"), ("indique", "indiquer"), + ("moque", "moquer"), ("passe", "passer")): + for pronoun in ("elle", "il", "on"): + token = "{}-t-{}".format(verb, pronoun) + VERBS[token] = [ + {LEMMA: verb_lemma, ORTH: verb}, + {LEMMA: "t", ORTH: "-t"}, + {LEMMA: pronoun, ORTH: "-" + pronoun} + ] + + VERBS['est-ce'] = [ + {LEMMA: 'être', ORTH: "est"}, + {LEMMA: 'ce', ORTH: '-ce'} + ] + + for pre, pre_lemma in (("qu'", "que"), ("Qu'", "Que"), ("n'", "ne"), + ("N'", "Ne")): + VERBS['{}est-ce'.format(pre)] = [ + {LEMMA: pre_lemma, ORTH: pre}, + {LEMMA: 'être', ORTH: "est"}, + {LEMMA: 'ce', ORTH: '-ce'} + ] + + HYPHEN = ['-', '‐'] + + base_exceptions = get_exceptions() + infixes_exceptions = [] + + for elision_char in ELISION: + for hyphen_char in HYPHEN: + infixes_exceptions += [infix.replace("'", elision_char).replace('-', hyphen_char) + for infix in base_exceptions] + + infixes_exceptions += [upper_first_letter(word) for word in infixes_exceptions] + + infixes_exceptions = list(set(infixes_exceptions)) + + update_exc(tokenizer_exceptions, strings_to_exc(infixes_exceptions)) + update_exc(tokenizer_exceptions, ABBREVIATIONS_1) + update_exc(tokenizer_exceptions, strings_to_exc(ABBREVIATIONS_2)) + update_exc(tokenizer_exceptions, VERBS) + return tokenizer_exceptions + + +HYPHEN_PREFIX = [ + 'a[ée]ro', 'abat', 'a[fg]ro', 'after', 'am[ée]ricano', 'anglo', 'anti', 'apr[èe]s', 'arabo', 'arcs?', 'archi', + 'arrières?', 'avant', 'auto', + 'banc', 'bas(?:ses?)?', 'bec?', 'best', 'bio?', 'bien', 'blanc', 'bo[îi]te', 'bois', 'bou(?:c|rg)', 'b[êe]ta', + 'cache', 'cap(?:ello)?', 'champ', 'chapelle', 'ch[âa]teau', 'cha(?:ud|t)e?s?', 'chou', 'chromo', 'claire?s?', + 'co(?:de|ca)?', 'compte', 'contre', 'cordon', 'coupe?', 'court', 'crash', 'crise', 'croche', 'cross', 'cyber', + 'côte', + 'demi', 'di(?:sney)?', 'd[ée]s?', 'double', 'dys', + 'entre', 'est', 'ethno', 'extra', 'extrême', '[ée]co', + 'fil', 'fort', 'franco?s?', + 'gallo', 'gardes?', 'gastro', 'grande?', 'gratte', 'gr[ée]co', 'gros', 'g[ée]o', + 'haute?s?', 'hyper', + 'indo', 'infra', 'inter', 'intra', 'islamo', 'italo', + 'jean', + 'labio', 'latino', 'live', 'lot', 'louis', + 'm[ai]cro', 'mesnil', 'mi(?:ni)?', 'mono', 'mont?s?', 'moyen', 'multi', 'm[ée]cano', 'm[ée]dico', 'm[ée]do', 'm[ée]ta', + 'mots?', + 'noix', 'non', 'nord', 'notre', 'n[ée]o', + 'ouest', 'outre', 'ouvre', + 'passe', 'perce', 'pharmaco', 'ph[oy]to', 'pique', 'poissons?', 'ponce', 'pont', 'po[rs]t', + 'primo', 'pro(?:cès|to)?', 'pare', 'petite?', 'porte', 'pré', 'prêchi', 'pseudo', 'pêle', 'péri', 'puy', + 'quasi', + 'recourt', 'rythmo', 'r[ée]', 'r[ée]tro', + 'sans', 'sainte?s?', 'semi', 'social', 'sous', 'su[bdr]', 'super', + 'tire', 'thermo', 'tiers', 'trans', 'tr(?:i|ou)', 't[ée]l[ée]', + 'vi[cd]e', 'vid[ée]o', 'vie(?:ux|illes?)', 'vill(?:e|eneuve|ers|ette|iers|y)', + 'ultra', + 'à', + '[ée]lectro', '[ée]qui' + ] + +ELISION_PREFIX = ['entr', 'grande?s?'] + +REGULAR_EXP = [ + '^droits?[{hyphen}]de[{hyphen}]l\'homm[{alpha}]+$'.format(hyphen=HYPHENS, alpha=ALPHA_LOWER), + '^zig[{hyphen}]zag[{alpha}]*$'.format(hyphen=HYPHENS, alpha=ALPHA_LOWER), + '^prud[{elision}]homm[{alpha}]*$'.format(elision=ELISION, alpha=ALPHA_LOWER), +] + +other_hyphens = ''.join([h for h in HYPHENS if h != '-']) + +REGULAR_EXP += ["^{prefix}[{hyphen}][{alpha}][{alpha}{elision}{other_hyphen}\-]*$".format( + prefix=p, hyphen=HYPHENS, other_hyphen=other_hyphens, elision=ELISION, alpha=ALPHA_LOWER) + for p in HYPHEN_PREFIX] + +REGULAR_EXP += ["^{prefix}[{elision}][{alpha}][{alpha}{elision}{hyphen}\-]*$".format( + prefix=p, elision=HYPHENS, hyphen=other_hyphens, alpha=ALPHA_LOWER) + for p in ELISION_PREFIX] + +REGULAR_EXP.append(_URL_PATTERN) + +TOKEN_MATCH = re.compile('|'.join('(?:{})'.format(m) for m in REGULAR_EXP), re.IGNORECASE).match + +__all__ = ["get_tokenizer_exceptions", "TOKEN_MATCH"] diff --git a/spacy/gold.pyx b/spacy/gold.pyx index 1e9a0194f..358412fab 100644 --- a/spacy/gold.pyx +++ b/spacy/gold.pyx @@ -1,3 +1,4 @@ +# cython: profile=True from __future__ import unicode_literals, print_function import numpy @@ -90,9 +91,9 @@ def _min_edit_path(cand_words, gold_words): # TODO: Fix this --- just do it properly, make the full edit matrix and # then walk back over it... # Preprocess inputs - cand_words = [punct_re.sub('', w) for w in cand_words] - gold_words = [punct_re.sub('', w) for w in gold_words] - + cand_words = [punct_re.sub('', w) for w in cand_words] + gold_words = [punct_re.sub('', w) for w in gold_words] + if cand_words == gold_words: return 0, ''.join(['M' for _ in gold_words]) mem = Pool() @@ -132,7 +133,7 @@ def _min_edit_path(cand_words, gold_words): else: best_cost = d_cost best_hist = previous_row[j + 1] + 'D' - + current_row.append(best_hist) curr_costs[j+1] = best_cost previous_row = current_row @@ -271,8 +272,8 @@ cdef class GoldParse: self.words = [None] * len(doc) self.tags = [None] * len(doc) self.heads = [None] * len(doc) - self.labels = [''] * len(doc) - self.ner = ['-'] * len(doc) + self.labels = [None] * len(doc) + self.ner = [None] * len(doc) self.cand_to_gold = align([t.orth_ for t in doc], words) self.gold_to_cand = align(words, [t.orth_ for t in doc]) @@ -306,7 +307,7 @@ cdef class GoldParse: def __len__(self): """Get the number of gold-standard tokens. - + Returns (int): The number of gold-standard tokens. """ return self.length @@ -330,7 +331,7 @@ def biluo_tags_from_offsets(doc, entities): entities (sequence): A sequence of (start, end, label) triples. start and end should be character-offset integers denoting the slice into the original string. - + Returns: tags (list): A list of unicode strings, describing the tags. Each tag string will @@ -348,7 +349,7 @@ def biluo_tags_from_offsets(doc, entities): doc = nlp.tokenizer(text) tags = biluo_tags_from_offsets(doc, entities) - + assert tags == ['O', 'O', 'U-LOC', 'O'] ''' starts = {token.idx: token.i for token in doc} diff --git a/spacy/hu/__init__.py b/spacy/hu/__init__.py index 2343b4606..e5f8d0a45 100644 --- a/spacy/hu/__init__.py +++ b/spacy/hu/__init__.py @@ -1,6 +1,7 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function +from .tokenizer_exceptions import TOKEN_MATCH from .language_data import * from ..attrs import LANG from ..language import Language @@ -21,3 +22,5 @@ class Hungarian(Language): infixes = tuple(TOKENIZER_INFIXES) stop_words = set(STOP_WORDS) + + token_match = TOKEN_MATCH diff --git a/spacy/hu/language_data.py b/spacy/hu/language_data.py index 49652c5ac..e888c677a 100644 --- a/spacy/hu/language_data.py +++ b/spacy/hu/language_data.py @@ -1,8 +1,6 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals -import six - from spacy.language_data import strings_to_exc, update_exc from .punctuation import * from .stop_words import STOP_WORDS @@ -10,19 +8,15 @@ from .tokenizer_exceptions import ABBREVIATIONS from .tokenizer_exceptions import OTHER_EXC from .. import language_data as base - STOP_WORDS = set(STOP_WORDS) - TOKENIZER_EXCEPTIONS = strings_to_exc(base.EMOTICONS) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(OTHER_EXC)) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ABBREVIATIONS)) - -TOKENIZER_PREFIXES = base.TOKENIZER_PREFIXES -TOKENIZER_SUFFIXES = base.TOKENIZER_SUFFIXES + TOKENIZER_SUFFIXES +TOKENIZER_PREFIXES = TOKENIZER_PREFIXES +TOKENIZER_SUFFIXES = TOKENIZER_SUFFIXES TOKENIZER_INFIXES = TOKENIZER_INFIXES - __all__ = ["TOKENIZER_EXCEPTIONS", "STOP_WORDS", "TOKENIZER_PREFIXES", "TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] diff --git a/spacy/hu/punctuation.py b/spacy/hu/punctuation.py index e28052fd3..69f3eb4f2 100644 --- a/spacy/hu/punctuation.py +++ b/spacy/hu/punctuation.py @@ -1,25 +1,41 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals -from ..language_data.punctuation import ALPHA, ALPHA_LOWER, ALPHA_UPPER, LIST_ELLIPSES +from ..language_data.punctuation import ALPHA_LOWER, LIST_ELLIPSES, QUOTES, ALPHA_UPPER, LIST_QUOTES, UNITS, \ + CURRENCY, LIST_PUNCT, ALPHA, _QUOTES +CURRENCY_SYMBOLS = r"\$ ¢ £ € ¥ ฿" -TOKENIZER_SUFFIXES = [ - r'(?<=[{al})])-e'.format(al=ALPHA_LOWER) -] +TOKENIZER_PREFIXES = ( + [r'\+'] + + LIST_PUNCT + + LIST_ELLIPSES + + LIST_QUOTES +) -TOKENIZER_INFIXES = [ - r'(?<=[0-9])-(?=[0-9])', - r'(?<=[0-9])[+\-\*/^](?=[0-9])', - r'(?<=[{a}])--(?=[{a}])', - r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), - r'(?<=[{al}])\.(?=[{au}])'.format(al=ALPHA_LOWER, au=ALPHA_UPPER), - r'(?<=[0-9{a}])"(?=[\-{a}])'.format(a=ALPHA), - r'(?<=[{a}"])[:<>=](?=[{a}])'.format(a=ALPHA) -] +TOKENIZER_SUFFIXES = ( + LIST_PUNCT + + LIST_ELLIPSES + + LIST_QUOTES + + [ + r'(?<=[0-9])\+', + r'(?<=°[FfCcKk])\.', + r'(?<=[0-9])(?:{c})'.format(c=CURRENCY), + r'(?<=[0-9])(?:{u})'.format(u=UNITS), + r'(?<=[{al}{p}{c}(?:{q})])\.'.format(al=ALPHA_LOWER, p=r'%²\-\)\]\+', q=QUOTES, c=CURRENCY_SYMBOLS), + r'(?<=[{al})])-e'.format(al=ALPHA_LOWER) + ] +) - -TOKENIZER_INFIXES += LIST_ELLIPSES - - -__all__ = ["TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] +TOKENIZER_INFIXES = ( + LIST_ELLIPSES + + [ + r'(?<=[{al}])\.(?=[{au}])'.format(al=ALPHA_LOWER, au=ALPHA_UPPER), + r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}"])[:<>=](?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}])--(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), + r'(?<=[{a}])([{q}\)\]\(\[])(?=[\-{a}])'.format(a=ALPHA, q=_QUOTES.replace("'", "").strip().replace(" ", "")), + ] +) +__all__ = ["TOKENIZER_PREFIXES", "TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"] diff --git a/spacy/hu/stop_words.py b/spacy/hu/stop_words.py index aad992e6e..9977c6ec0 100644 --- a/spacy/hu/stop_words.py +++ b/spacy/hu/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/hu/tokenizer_exceptions.py b/spacy/hu/tokenizer_exceptions.py index 46122564c..85cf72ec9 100644 --- a/spacy/hu/tokenizer_exceptions.py +++ b/spacy/hu/tokenizer_exceptions.py @@ -1,9 +1,17 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals +import re + +from spacy.language_data.punctuation import ALPHA_LOWER, CURRENCY +from ..language_data.tokenizer_exceptions import _URL_PATTERN + ABBREVIATIONS = """ +A. +AG. AkH. Aö. +B. B.CS. B.S. B.Sc. @@ -13,57 +21,103 @@ BEK. BSC. BSc. BTK. +Bat. Be. Bek. Bfok. Bk. Bp. +Bros. +Bt. Btk. Btke. Btét. +C. CSC. Cal. +Cg. +Cgf. +Cgt. +Cia. Co. Colo. Comp. Copr. +Corp. +Cos. Cs. Csc. Csop. +Cstv. Ctv. +Ctvr. D. DR. Dipl. Dr. Dsz. Dzs. +E. +EK. +EU. +F. Fla. +Folyt. +Fpk. Főszerk. +G. +GK. GM. +Gfv. +Gmk. +Gr. +Group. +Gt. Gy. +H. HKsz. Hmvh. +I. +Ifj. +Inc. Inform. +Int. +J. +Jr. +Jv. +K. K.m.f. +KB. KER. KFT. KRT. +Kb. Ker. Kft. +Kg. +Kht. +Kkt. Kong. Korm. Kr. Kr.e. Kr.u. Krt. +L. +LB. +Llc. +Ltd. +M. M.A. M.S. M.SC. M.Sc. MA. +MH. MSC. MSc. Mass. +Max. Mlle. Mme. Mo. @@ -71,45 +125,77 @@ Mr. Mrs. Ms. Mt. +N. N.N. NB. NBr. Nat. +No. Nr. Ny. Nyh. Nyr. +Nyrt. +O. +OJ. Op. +P. P.H. P.S. PH.D. PHD. PROF. +Pf. Ph.D PhD. +Pk. +Pl. +Plc. Pp. Proc. Prof. Ptk. +R. +RT. Rer. +Rt. +S. S.B. SZOLG. Salg. +Sch. +Spa. St. Sz. +SzRt. +Szerk. Szfv. Szjt. Szolg. Szt. Sztv. +Szvt. +Számv. +T. TEL. Tel. Ty. Tyr. +U. Ui. +Ut. +V. +VB. Vcs. Vhr. +Vht. +Várm. +W. +X. X.Y. +Y. +Z. +Zrt. Zs. a.C. ac. @@ -119,11 +205,13 @@ ag. agit. alez. alk. +all. altbgy. an. ang. arch. at. +atc. aug. b.a. b.s. @@ -161,6 +249,7 @@ dikt. dipl. dj. dk. +dl. dny. dolg. dr. @@ -184,6 +273,7 @@ eü. f.h. f.é. fam. +fb. febr. fej. felv. @@ -211,6 +301,7 @@ gazd. gimn. gk. gkv. +gmk. gondn. gr. grav. @@ -240,6 +331,7 @@ hőm. i.e. i.sz. id. +ie. ifj. ig. igh. @@ -254,6 +346,7 @@ io. ip. ir. irod. +irod. isk. ism. izr. @@ -261,6 +354,7 @@ iá. jan. jav. jegyz. +jgmk. jjv. jkv. jogh. @@ -271,6 +365,7 @@ júl. jún. karb. kat. +kath. kb. kcs. kd. @@ -285,6 +380,8 @@ kiv. kk. kkt. klin. +km. +korm. kp. krt. kt. @@ -318,6 +415,7 @@ m.s. m.sc. ma. mat. +max. mb. med. megh. @@ -353,6 +451,7 @@ nat. nb. neg. nk. +no. nov. nu. ny. @@ -362,6 +461,7 @@ nyug. obj. okl. okt. +old. olv. orsz. ort. @@ -372,6 +472,8 @@ pg. ph.d ph.d. phd. +phil. +pjt. pk. pl. plb. @@ -406,6 +508,7 @@ röv. s.b. s.k. sa. +sb. sel. sgt. sm. @@ -413,6 +516,7 @@ st. stat. stb. strat. +stud. sz. szakm. szaksz. @@ -467,6 +571,7 @@ vb. vegy. vh. vhol. +vhr. vill. vizsg. vk. @@ -478,13 +583,20 @@ vs. vsz. vv. vál. +várm. vízv. vö. zrt. zs. +Á. +Áe. +Áht. +É. +Épt. Ész. Új-Z. ÚjZ. +Ún. á. ált. ápr. @@ -500,6 +612,7 @@ zs. ötk. özv. ú. +ú.n. úm. ún. út. @@ -510,7 +623,6 @@ zs. ümk. ütk. üv. -ő. ű. őrgy. őrpk. @@ -520,3 +632,17 @@ zs. OTHER_EXC = """ -e """.strip().split() + +ORD_NUM_OR_DATE = "([A-Z0-9]+[./-])*(\d+\.?)" +_NUM = "[+\-]?\d+([,.]\d+)*" +_OPS = "[=<>+\-\*/^()÷%²]" +_SUFFIXES = "-[{a}]+".format(a=ALPHA_LOWER) +NUMERIC_EXP = "({n})(({o})({n}))*[%]?".format(n=_NUM, o=_OPS) +TIME_EXP = "\d+(:\d+)*(\.\d+)?" + +NUMS = "(({ne})|({t})|({on})|({c}))({s})?".format( + ne=NUMERIC_EXP, t=TIME_EXP, on=ORD_NUM_OR_DATE, + c=CURRENCY, s=_SUFFIXES +) + +TOKEN_MATCH = re.compile("^({u})|({n})$".format(u=_URL_PATTERN, n=NUMS)).match diff --git a/spacy/it/__init__.py b/spacy/it/__init__.py index bc0d13cab..5ebefb6b2 100644 --- a/spacy/it/__init__.py +++ b/spacy/it/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from ..language import Language diff --git a/spacy/it/language_data.py b/spacy/it/language_data.py index a4a657c33..f9899d8d1 100644 --- a/spacy/it/language_data.py +++ b/spacy/it/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base diff --git a/spacy/it/stop_words.py b/spacy/it/stop_words.py index cf5697514..e03242d46 100644 --- a/spacy/it/stop_words.py +++ b/spacy/it/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/language.py b/spacy/language.py index bebdeab20..ed5a7ed96 100644 --- a/spacy/language.py +++ b/spacy/language.py @@ -5,7 +5,7 @@ import pathlib from contextlib import contextmanager import shutil -import ujson as json +import ujson try: @@ -13,6 +13,10 @@ try: except NameError: basestring = str +try: + unicode +except NameError: + unicode = str from .tokenizer import Tokenizer from .vocab import Vocab @@ -29,6 +33,7 @@ from .attrs import TAG, DEP, ENT_IOB, ENT_TYPE, HEAD, PROB, LANG, IS_STOP from .syntax.parser import get_templates from .syntax.nonproj import PseudoProjectivity from .pipeline import DependencyParser, EntityRecognizer +from .pipeline import BeamDependencyParser, BeamEntityRecognizer from .syntax.arc_eager import ArcEager from .syntax.ner import BiluoPushDown @@ -36,10 +41,7 @@ from .syntax.ner import BiluoPushDown class BaseDefaults(object): @classmethod def create_lemmatizer(cls, nlp=None): - if nlp is None or nlp.path is None: - return Lemmatizer({}, {}, {}) - else: - return Lemmatizer.load(nlp.path, rules=cls.lemma_rules) + return Lemmatizer(cls.lemma_index, cls.lemma_exc, cls.lemma_rules) @classmethod def create_vocab(cls, nlp=None): @@ -49,11 +51,15 @@ class BaseDefaults(object): # This is very messy, but it's the minimal working fix to Issue #639. # This defaults stuff needs to be refactored (again) lex_attr_getters[IS_STOP] = lambda string: string.lower() in cls.stop_words - return Vocab(lex_attr_getters=lex_attr_getters, tag_map=cls.tag_map, + vocab = Vocab(lex_attr_getters=lex_attr_getters, tag_map=cls.tag_map, lemmatizer=lemmatizer) else: - return Vocab.load(nlp.path, lex_attr_getters=cls.lex_attr_getters, + vocab = Vocab.load(nlp.path, lex_attr_getters=cls.lex_attr_getters, tag_map=cls.tag_map, lemmatizer=lemmatizer) + for tag_str, exc in cls.morph_rules.items(): + for orth_str, attrs in exc.items(): + vocab.morphology.add_special_case(tag_str, orth_str, attrs) + return vocab @classmethod def add_vectors(cls, nlp=None): @@ -165,6 +171,9 @@ class BaseDefaults(object): stop_words = set() lemma_rules = {} + lemma_exc = {} + lemma_index = {} + morph_rules = {} lex_attr_getters = { attrs.LOWER: lambda string: string.lower(), @@ -226,12 +235,21 @@ class Language(object): parser_cfg['actions'] = ArcEager.get_actions(gold_parses=gold_tuples) entity_cfg['actions'] = BiluoPushDown.get_actions(gold_parses=gold_tuples) - with (dep_model_dir / 'config.json').open('w') as file_: - json.dump(parser_cfg, file_) - with (ner_model_dir / 'config.json').open('w') as file_: - json.dump(entity_cfg, file_) - with (pos_model_dir / 'config.json').open('w') as file_: - json.dump(tagger_cfg, file_) + with (dep_model_dir / 'config.json').open('wb') as file_: + data = ujson.dumps(parser_cfg) + if isinstance(data, unicode): + data = data.encode('utf8') + file_.write(data) + with (ner_model_dir / 'config.json').open('wb') as file_: + data = ujson.dumps(entity_cfg) + if isinstance(data, unicode): + data = data.encode('utf8') + file_.write(data) + with (pos_model_dir / 'config.json').open('wb') as file_: + data = ujson.dumps(tagger_cfg) + if isinstance(data, unicode): + data = data.encode('utf8') + file_.write(data) self = cls( path=path, @@ -252,7 +270,7 @@ class Language(object): self.entity = self.Defaults.create_entity(self) self.pipeline = self.Defaults.create_pipeline(self) yield Trainer(self, gold_tuples) - self.end_training() + self.end_training(path=path) def __init__(self, **overrides): if 'data_dir' in overrides and 'path' not in overrides: @@ -263,6 +281,7 @@ class Language(object): if path is True: path = util.match_best_version(self.lang, '', util.get_data_path()) + self.meta = overrides.get('meta', {}) self.path = path self.vocab = self.Defaults.create_vocab(self) \ @@ -391,12 +410,14 @@ class Language(object): else: entity_iob_freqs = [] entity_type_freqs = [] - with (path / 'vocab' / 'serializer.json').open('w') as file_: - file_.write( - json.dumps([ - (TAG, tagger_freqs), - (DEP, dep_freqs), - (ENT_IOB, entity_iob_freqs), - (ENT_TYPE, entity_type_freqs), - (HEAD, head_freqs) - ])) + with (path / 'vocab' / 'serializer.json').open('wb') as file_: + data = ujson.dumps([ + (TAG, tagger_freqs), + (DEP, dep_freqs), + (ENT_IOB, entity_iob_freqs), + (ENT_TYPE, entity_type_freqs), + (HEAD, head_freqs) + ]) + if isinstance(data, unicode): + data = data.encode('utf8') + file_.write(data) diff --git a/spacy/language_data/abbreviations.py b/spacy/language_data/abbreviations.py index b49daa0ad..a3e95ce1a 100644 --- a/spacy/language_data/abbreviations.py +++ b/spacy/language_data/abbreviations.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/language_data/emoticons.py b/spacy/language_data/emoticons.py index bc951a007..223176c9c 100644 --- a/spacy/language_data/emoticons.py +++ b/spacy/language_data/emoticons.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals @@ -50,6 +50,7 @@ EMOTICONS = set(""" :/ :-/ =/ +=| :| :-| :1 diff --git a/spacy/language_data/entity_rules.py b/spacy/language_data/entity_rules.py index 4217ecfcf..85c201827 100644 --- a/spacy/language_data/entity_rules.py +++ b/spacy/language_data/entity_rules.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * diff --git a/spacy/language_data/punctuation.py b/spacy/language_data/punctuation.py index d8ed19ca1..fbc93f313 100644 --- a/spacy/language_data/punctuation.py +++ b/spacy/language_data/punctuation.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals import re @@ -57,14 +57,14 @@ LIST_PUNCT = list(_PUNCT.strip().split()) LIST_HYPHENS = list(_HYPHENS.strip().split()) -ALPHA_LOWER = _ALPHA_LOWER.strip().replace(' ', '') -ALPHA_UPPER = _ALPHA_UPPER.strip().replace(' ', '') +ALPHA_LOWER = _ALPHA_LOWER.strip().replace(' ', '').replace('\n', '') +ALPHA_UPPER = _ALPHA_UPPER.strip().replace(' ', '').replace('\n', '') ALPHA = ALPHA_LOWER + ALPHA_UPPER QUOTES = _QUOTES.strip().replace(' ', '|') CURRENCY = _CURRENCY.strip().replace(' ', '|') -UNITS = _UNITS.strip().replace(' ', '|') +UNITS = _UNITS.strip().replace(' ', '|').replace('\n', '|') HYPHENS = _HYPHENS.strip().replace(' ', '|') @@ -72,7 +72,7 @@ HYPHENS = _HYPHENS.strip().replace(' ', '|') # Prefixes TOKENIZER_PREFIXES = ( - ['§', '%', r'\+'] + + ['§', '%', '=', r'\+'] + LIST_PUNCT + LIST_ELLIPSES + LIST_QUOTES + @@ -103,10 +103,10 @@ TOKENIZER_SUFFIXES = ( TOKENIZER_INFIXES = ( LIST_ELLIPSES + [ - r'(?<=[0-9])[+\-\*/^](?=[0-9])', + r'(?<=[0-9])[+\-\*^](?=[0-9-])', r'(?<=[{al}])\.(?=[{au}])'.format(al=ALPHA_LOWER, au=ALPHA_UPPER), r'(?<=[{a}]),(?=[{a}])'.format(a=ALPHA), - r'(?<=[{a}])(?:{h})(?=[{a}])'.format(a=ALPHA, h=HYPHENS), + r'(?<=[{a}])[?";:=,.]*(?:{h})(?=[{a}])'.format(a=ALPHA, h=HYPHENS), r'(?<=[{a}"])[:<>=](?=[{a}])'.format(a=ALPHA) ] ) diff --git a/spacy/language_data/tag_map.py b/spacy/language_data/tag_map.py index 966960721..ead6dd1c6 100644 --- a/spacy/language_data/tag_map.py +++ b/spacy/language_data/tag_map.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * @@ -19,6 +19,7 @@ TAG_MAP = { "AUX": {POS: AUX}, "X": {POS: X}, "CONJ": {POS: CONJ}, + "CCONJ": {POS: CCONJ}, # U20 "ADJ": {POS: ADJ}, "VERB": {POS: VERB}, "PART": {POS: PART} diff --git a/spacy/language_data/tokenizer_exceptions.py b/spacy/language_data/tokenizer_exceptions.py index 6551440f2..f01c2fdf5 100644 --- a/spacy/language_data/tokenizer_exceptions.py +++ b/spacy/language_data/tokenizer_exceptions.py @@ -2,10 +2,49 @@ from __future__ import unicode_literals import re -_URL_PATTERN = r''' -^((([A-Za-z]{3,9}:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w\-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$ -'''.strip() +# URL validation regex courtesy of: https://mathiasbynens.be/demo/url-regex +# A few minor mods to this regex to account for use cases represented in test_urls +_URL_PATTERN = ( + r"^" + # in order to support the prefix tokenization (see prefix test cases in test_urls). + r"(?=[\w])" + # protocol identifier + r"(?:(?:https?|ftp|mailto)://)?" + # user:pass authentication + r"(?:\S+(?::\S*)?@)?" + r"(?:" + # IP address exclusion + # private & local networks + r"(?!(?:10|127)(?:\.\d{1,3}){3})" + r"(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})" + r"(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})" + # IP address dotted notation octets + # excludes loopback network 0.0.0.0 + # excludes reserved space >= 224.0.0.0 + # excludes network & broadcast addresses + # (first & last IP address of each class) + r"(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])" + r"(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}" + r"(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))" + r"|" + # host name + r"(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)" + # domain name + r"(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*" + # TLD identifier + r"(?:\.(?:[a-z\u00a1-\uffff]{2,}))" + r")" + # port number + r"(?::\d{2,5})?" + # resource path + r"(?:/\S*)?" + # query parameters + r"\??(:?\S*)?" + # in order to support the suffix tokenization (see suffix test cases in test_urls), + r"(?<=[\w/])" + r"$" +).strip() -TOKEN_MATCH = re.compile(_URL_PATTERN).match +TOKEN_MATCH = re.compile(_URL_PATTERN, re.UNICODE).match __all__ = ['TOKEN_MATCH'] diff --git a/spacy/language_data/util.py b/spacy/language_data/util.py index f21448da2..10cd161aa 100644 --- a/spacy/language_data/util.py +++ b/spacy/language_data/util.py @@ -1,8 +1,13 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * +try: + unicode +except: + unicode = str + PRON_LEMMA = "-PRON-" DET_LEMMA = "-DET-" @@ -10,6 +15,15 @@ ENT_ID = "ent_id" def update_exc(exc, additions): + for orth, token_attrs in additions.items(): + if not all(isinstance(attr[ORTH], unicode) for attr in token_attrs): + msg = "Invalid value for ORTH in exception: key='%s', orths='%s'" + raise ValueError(msg % (orth, token_attrs)) + described_orth = ''.join(attr[ORTH] for attr in token_attrs) + if orth != described_orth: + # TODO: Better error + msg = "Invalid tokenizer exception: key='%s', orths='%s'" + raise ValueError(msg % (orth, described_orth)) overlap = set(exc.keys()).intersection(set(additions)) assert not overlap, overlap exc.update(additions) diff --git a/spacy/lemmatizer.py b/spacy/lemmatizer.py index 960467a0b..85feb8127 100644 --- a/spacy/lemmatizer.py +++ b/spacy/lemmatizer.py @@ -4,32 +4,17 @@ import pathlib import ujson as json +from .en.lemmatizer import INDEX, EXC, RULES from .symbols import POS, NOUN, VERB, ADJ, PUNCT +from .symbols import VerbForm_inf, VerbForm_none class Lemmatizer(object): @classmethod def load(cls, path, rules=None): - index = {} - exc = {} - for pos in ['adj', 'noun', 'verb']: - pos_index_path = path / 'wordnet' / 'index.{pos}'.format(pos=pos) - if pos_index_path.exists(): - with pos_index_path.open() as file_: - index[pos] = read_index(file_) - else: - index[pos] = set() - pos_exc_path = path / 'wordnet' / '{pos}.exc'.format(pos=pos) - if pos_exc_path.exists(): - with pos_exc_path.open() as file_: - exc[pos] = read_exc(file_) - else: - exc[pos] = {} - if rules is None and (path / 'vocab' / 'lemma_rules.json').exists(): - with (path / 'vocab' / 'lemma_rules.json').open('r', encoding='utf8') as file_: - rules = json.load(file_) - elif rules is None: - rules = {} + index = dict(INDEX) + exc = dict(EXC) + rules = dict(RULES) return cls(index, exc, rules) def __init__(self, index, exceptions, rules): @@ -59,10 +44,13 @@ class Lemmatizer(object): avoid lemmatization entirely.''' morphology = {} if morphology is None else morphology others = [key for key in morphology if key not in (POS, 'number', 'pos', 'verbform')] + true_morph_key = morphology.get('morph', 0) if univ_pos == 'noun' and morphology.get('number') == 'sing' and not others: return True elif univ_pos == 'verb' and morphology.get('verbform') == 'inf' and not others: return True + elif true_morph_key in (VerbForm_inf, VerbForm_none): + return True else: return False @@ -86,33 +74,16 @@ def lemmatize(string, index, exceptions, rules): #if string in index: # forms.append(string) forms.extend(exceptions.get(string, [])) + oov_forms = [] for old, new in rules: if string.endswith(old): form = string[:len(string) - len(old)] + new if form in index or not form.isalpha(): forms.append(form) + else: + oov_forms.append(form) + if not forms: + forms.extend(oov_forms) if not forms: forms.append(string) return set(forms) - - -def read_index(fileobj): - index = set() - for line in fileobj: - if line.startswith(' '): - continue - pieces = line.split() - word = pieces[0] - if word.count('_') == 0: - index.add(word) - return index - - -def read_exc(fileobj): - exceptions = {} - for line in fileobj: - if line.startswith(' '): - continue - pieces = line.split() - exceptions[pieces[0]] = tuple(pieces[1:]) - return exceptions diff --git a/spacy/link.py b/spacy/link.py new file mode 100644 index 000000000..fd81cac1a --- /dev/null +++ b/spacy/link.py @@ -0,0 +1,70 @@ +# coding: utf8 +from __future__ import unicode_literals + +import io +import os +import pip +import site +import plac +from . import util + + +@plac.annotations( + origin=("Package name or path to model", "positional", None, str), + link_name=("Name of link", "positional", None, str), + force=("Force overwriting existing link", "flag", "f", bool) +) +def link(origin, link_name, force=False): + """Create a symlink for models within the spacy/data directory. Accepts + either the name of a pip package, or the local path to the model data + directory. Linking models allows loading them via spacy.load(link_name).""" + + if is_package(origin): + package_path = site.getsitepackages()[0] + meta = get_meta(package_path, origin) + data_dir = origin + '-' + meta['version'] + model_path = os.path.join(package_path, origin, data_dir) + symlink(model_path, link_name, force) + else: + symlink(origin, link_name, force) + + +def symlink(model_path, link_name, force): + if not os.path.isdir(model_path): + util.sys_exit( + "The data should be located in {p}".format(p=model_path), + title="Can't locate model data") + + data_path = str(util.get_data_path()) + link_path = os.path.join(os.path.abspath(__file__ + '/../../'), data_path, link_name) + + if os.path.isdir(link_path): + if force: + os.unlink(link_path) + else: + util.sys_exit( + "To overwrite an existing link, use the --force flag.", + title="Link {l} already exists".format(l=link_name)) + model_path = os.path.abspath(model_path) + os.symlink(model_path, link_path) + util.print_msg( + "{a} --> {b}".format(a=model_path, b=link_path), + "You can now load the model via spacy.load('{l}').".format(l=link_name), + title="Linking successful") + + +def get_meta(package_path, package): + meta = util.parse_package_meta(package_path, package) + return meta + + +def is_package(origin): + packages = pip.get_installed_distributions() + for package in packages: + if package.project_name.replace('-', '_') == origin: + return True + return False + + +if __name__ == '__main__': + plac.call(link) diff --git a/spacy/matcher.pyx b/spacy/matcher.pyx index a45597b28..5c52ae9d0 100644 --- a/spacy/matcher.pyx +++ b/spacy/matcher.pyx @@ -138,7 +138,7 @@ cdef int get_action(const TokenPatternC* pattern, const TokenC* token) nogil: def _convert_strings(token_specs, string_store): # Support 'syntactic sugar' operator '+', as combination of ONE, ZERO_PLUS operators = {'!': (ZERO,), '*': (ZERO_PLUS,), '+': (ONE, ZERO_PLUS), - '?': (ZERO_ONE,)} + '?': (ZERO_ONE,), '1': (ONE,)} tokens = [] op = ONE for spec in token_specs: @@ -150,7 +150,7 @@ def _convert_strings(token_specs, string_store): ops = operators[value] else: raise KeyError( - "Unknown operator. Options: %s" % ', '.join(operators.keys())) + "Unknown operator '%s'. Options: %s" % (value, ', '.join(operators.keys()))) if isinstance(attr, basestring): attr = attrs.IDS.get(attr.upper()) if isinstance(value, basestring): @@ -418,6 +418,22 @@ cdef class Matcher: match = acceptor(doc, ent_id, label, start, end) if match: matches.append(match) + # Look for open patterns that are actually satisfied + for state in partials: + while state.second.quantifier in (ZERO, ZERO_PLUS): + state.second += 1 + if state.second.nr_attr == 0: + start = state.first + end = len(doc) + ent_id = state.second.attrs[0].value + label = state.second.attrs[0].value + acceptor = self._acceptors.get(ent_id) + if acceptor is None: + matches.append((ent_id, label, start, end)) + else: + match = acceptor(doc, ent_id, label, start, end) + if match: + matches.append(match) for i, (ent_id, label, start, end) in enumerate(matches): on_match = self._callbacks.get(ent_id) if on_match is not None: diff --git a/spacy/morphology.pxd b/spacy/morphology.pxd index 5dc1ce529..4d981b30d 100644 --- a/spacy/morphology.pxd +++ b/spacy/morphology.pxd @@ -37,7 +37,7 @@ cdef class Morphology: cdef int assign_tag(self, TokenC* token, tag) except -1 cdef int assign_tag_id(self, TokenC* token, int tag_id) except -1 - + cdef int assign_feature(self, uint64_t* morph, univ_morph_t feat_id, bint value) except -1 @@ -80,6 +80,7 @@ cpdef enum univ_morph_t: Definite_two Definite_def Definite_red + Definite_cons # U20 Definite_ind Degree_cmp Degree_comp @@ -103,6 +104,8 @@ cpdef enum univ_morph_t: Negative_neg Negative_pos Negative_yes + Polarity_neg # U20 + Polarity_pos # U20 Number_com Number_dual Number_none @@ -151,6 +154,7 @@ cpdef enum univ_morph_t: VerbForm_partPres VerbForm_sup VerbForm_trans + VerbForm_conv # U20 VerbForm_gdv # la Voice_act Voice_cau diff --git a/spacy/morphology.pyx b/spacy/morphology.pyx index c13ce1920..26405e988 100644 --- a/spacy/morphology.pyx +++ b/spacy/morphology.pyx @@ -192,6 +192,7 @@ IDS = { "Definite_two": Definite_two, "Definite_def": Definite_def, "Definite_red": Definite_red, + "Definite_cons": Definite_cons, # U20 "Definite_ind": Definite_ind, "Degree_cmp": Degree_cmp, "Degree_comp": Degree_comp, @@ -215,6 +216,8 @@ IDS = { "Negative_neg": Negative_neg, "Negative_pos": Negative_pos, "Negative_yes": Negative_yes, + "Polarity_neg": Polarity_neg, # U20 + "Polarity_pos": Polarity_pos, # U20 "Number_com": Number_com, "Number_dual": Number_dual, "Number_none": Number_none, @@ -263,6 +266,7 @@ IDS = { "VerbForm_partPres": VerbForm_partPres, "VerbForm_sup": VerbForm_sup, "VerbForm_trans": VerbForm_trans, + "VerbForm_conv": VerbForm_conv, # U20 "VerbForm_gdv ": VerbForm_gdv, # la, "Voice_act": Voice_act, "Voice_cau": Voice_cau, diff --git a/spacy/nl/__init__.py b/spacy/nl/__init__.py index d4aa39506..6e1bbea70 100644 --- a/spacy/nl/__init__.py +++ b/spacy/nl/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from ..language import Language diff --git a/spacy/nl/language_data.py b/spacy/nl/language_data.py index a4a657c33..f9899d8d1 100644 --- a/spacy/nl/language_data.py +++ b/spacy/nl/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base diff --git a/spacy/nl/stop_words.py b/spacy/nl/stop_words.py index bef6871b2..22f1d714c 100644 --- a/spacy/nl/stop_words.py +++ b/spacy/nl/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/orth.pyx b/spacy/orth.pyx index 0f30c1136..1a6ffee34 100644 --- a/spacy/orth.pyx +++ b/spacy/orth.pyx @@ -1,4 +1,4 @@ -# -*- coding: utf8 -*- +# coding: utf8 # cython: infer_types=True from __future__ import unicode_literals import unicodedata @@ -108,11 +108,12 @@ cpdef bint like_url(unicode string): # TODO: This should live in the language.orth -NUM_WORDS = set('zero one two three four five six seven eight nine ten' - 'eleven twelve thirteen fourteen fifteen sixteen seventeen' - 'eighteen nineteen twenty thirty forty fifty sixty seventy' - 'eighty ninety hundred thousand million billion trillion' - 'quadrillion gajillion bazillion'.split()) +NUM_WORDS = set(''' +zero one two three four five six seven eight nine ten eleven twelve thirteen +fourteen fifteen sixteen seventeen eighteen nineteen twenty thirty forty fifty +sixty seventy eighty ninety hundred thousand million billion trillion +quadrillion gajillion bazillion +'''.split()) cpdef bint like_number(unicode string): string = string.replace(',', '') string = string.replace('.', '') @@ -158,27 +159,3 @@ cpdef unicode word_shape(unicode string): if seq < 4: shape.append(shape_char) return ''.join(shape) - - -# Exceptions --- do not convert these -_uk_us_except = set([ - 'our', - 'ours', - 'four', - 'fours', - 'your', - 'yours', - 'hour', - 'hours', - 'course', - 'rise', -]) -def uk_to_usa(unicode string): - if not string.islower(): - return string - if string in _uk_us_except: - return string - our = re.compile(r'ours?$') - string = our.sub('or', string) - - return string diff --git a/spacy/parts_of_speech.pxd b/spacy/parts_of_speech.pxd index c97673a69..0bf5b4789 100644 --- a/spacy/parts_of_speech.pxd +++ b/spacy/parts_of_speech.pxd @@ -7,6 +7,7 @@ cpdef enum univ_pos_t: ADV AUX CONJ + CCONJ # U20 DET INTJ NOUN diff --git a/spacy/parts_of_speech.pyx b/spacy/parts_of_speech.pyx index 006a1f006..a5c770f61 100644 --- a/spacy/parts_of_speech.pyx +++ b/spacy/parts_of_speech.pyx @@ -7,7 +7,8 @@ IDS = { "ADP": ADP, "ADV": ADV, "AUX": AUX, - "CONJ": CONJ, + "CONJ": CONJ, # U20 + "CCONJ": CCONJ, "DET": DET, "INTJ": INTJ, "NOUN": NOUN, diff --git a/spacy/pipeline.pxd b/spacy/pipeline.pxd index 84e47af5c..b08f18f33 100644 --- a/spacy/pipeline.pxd +++ b/spacy/pipeline.pxd @@ -1,4 +1,5 @@ from .syntax.parser cimport Parser +from .syntax.beam_parser cimport BeamParser from .syntax.ner cimport BiluoPushDown from .syntax.arc_eager cimport ArcEager from .tagger cimport Tagger @@ -10,3 +11,11 @@ cdef class EntityRecognizer(Parser): cdef class DependencyParser(Parser): pass + + +cdef class BeamEntityRecognizer(BeamParser): + pass + + +cdef class BeamDependencyParser(BeamParser): + pass diff --git a/spacy/pipeline.pyx b/spacy/pipeline.pyx index f3e51ade7..59e1994a9 100644 --- a/spacy/pipeline.pyx +++ b/spacy/pipeline.pyx @@ -1,4 +1,5 @@ from .syntax.parser cimport Parser +from .syntax.beam_parser cimport BeamParser from .syntax.ner cimport BiluoPushDown from .syntax.arc_eager cimport ArcEager from .vocab cimport Vocab @@ -13,7 +14,25 @@ from .attrs import DEP, ENT_TYPE cdef class EntityRecognizer(Parser): """Annotate named entities on Doc objects.""" TransitionSystem = BiluoPushDown - + + feature_templates = get_feature_templates('ner') + + def add_label(self, label): + for action in self.moves.action_types: + self.moves.add_action(action, label) + if isinstance(label, basestring): + label = self.vocab.strings[label] + for attr, freqs in self.vocab.serializer_freqs: + if attr == ENT_TYPE and label not in freqs: + freqs.append([label, 1]) + # Super hacky :( + self.vocab._serializer = None + + +cdef class BeamEntityRecognizer(BeamParser): + """Annotate named entities on Doc objects.""" + TransitionSystem = BiluoPushDown + feature_templates = get_feature_templates('ner') def add_label(self, label): @@ -45,4 +64,21 @@ cdef class DependencyParser(Parser): self.vocab._serializer = None -__all__ = [Tagger, DependencyParser, EntityRecognizer] +cdef class BeamDependencyParser(BeamParser): + TransitionSystem = ArcEager + + feature_templates = get_feature_templates('basic') + + def add_label(self, label): + for action in self.moves.action_types: + self.moves.add_action(action, label) + if isinstance(label, basestring): + label = self.vocab.strings[label] + for attr, freqs in self.vocab.serializer_freqs: + if attr == DEP and label not in freqs: + freqs.append([label, 1]) + # Super hacky :( + self.vocab._serializer = None + + +__all__ = [Tagger, DependencyParser, EntityRecognizer, BeamDependencyParser, BeamEntityRecognizer] diff --git a/spacy/pt/__init__.py b/spacy/pt/__init__.py index ed26fb0b3..b4ee5e339 100644 --- a/spacy/pt/__init__.py +++ b/spacy/pt/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from ..language import Language diff --git a/spacy/pt/language_data.py b/spacy/pt/language_data.py index a4a657c33..f9899d8d1 100644 --- a/spacy/pt/language_data.py +++ b/spacy/pt/language_data.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base diff --git a/spacy/pt/stop_words.py b/spacy/pt/stop_words.py index d0008457c..311b82477 100644 --- a/spacy/pt/stop_words.py +++ b/spacy/pt/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/scorer.py b/spacy/scorer.py index 3f8d73e6a..f9265f373 100644 --- a/spacy/scorer.py +++ b/spacy/scorer.py @@ -87,7 +87,7 @@ class Scorer(object): gold_ents = set(tags_to_entities([annot[-1] for annot in gold.orig_annot])) for id_, word, tag, head, dep, ner in gold.orig_annot: gold_tags.add((id_, tag)) - if dep is not None and dep.lower() not in punct_labels: + if dep not in (None, "") and dep.lower() not in punct_labels: gold_deps.add((id_, head, dep.lower())) cand_deps = set() cand_tags = set() diff --git a/spacy/strings.pyx b/spacy/strings.pyx index ddfddc29c..403ebd3c0 100644 --- a/spacy/strings.pyx +++ b/spacy/strings.pyx @@ -3,7 +3,7 @@ from __future__ import unicode_literals, absolute_import cimport cython from libc.string cimport memcpy -from libc.stdint cimport uint64_t +from libc.stdint cimport uint64_t, uint32_t from murmurhash.mrmr cimport hash64, hash32 @@ -12,22 +12,19 @@ from preshed.maps cimport map_iter, key_t from .typedefs cimport hash_t from libc.stdint cimport uint32_t -try: - import ujson as json -except ImportError: - import json +import ujson cpdef hash_t hash_string(unicode string) except 0: chars = string.encode('utf8') - return _hash_utf8(chars, len(chars)) + return hash_utf8(chars, len(chars)) -cdef hash_t _hash_utf8(char* utf8_string, int length): +cdef hash_t hash_utf8(char* utf8_string, int length) nogil: return hash64(utf8_string, length, 1) -cdef uint32_t _hash32_utf8(char* utf8_string, int length): +cdef uint32_t hash32_utf8(char* utf8_string, int length) nogil: return hash32(utf8_string, length, 1) @@ -48,11 +45,11 @@ cdef unicode _decode(const Utf8Str* string): return string.p[i:length + i].decode('utf8') -cdef Utf8Str _allocate(Pool mem, const unsigned char* chars, int length) except *: +cdef Utf8Str _allocate(Pool mem, const unsigned char* chars, uint32_t length) except *: cdef int n_length_bytes cdef int i cdef Utf8Str string - assert length != 0 + cdef uint32_t ulength = length if length < sizeof(string.s): string.s[0] = length memcpy(&string.s[1], chars, length) @@ -98,6 +95,14 @@ cdef class StringStore: def __get__(self): return self.size -1 + def __reduce__(self): + # TODO: OOV words, for the is_frozen stuff? + if self.is_frozen: + raise NotImplementedError( + "Currently missing support for pickling StringStore when " + "is_frozen=True") + return (StringStore, (list(self),)) + def __len__(self): """The number of strings in the store. @@ -149,7 +154,7 @@ cdef class StringStore: # pretty bad. # We could also get unlucky here, and hash into a value that # collides with the 'real' strings. - return _hash32_utf8(byte_string, len(byte_string)) + return hash32_utf8(byte_string, len(byte_string)) else: return utf8str - self.c @@ -200,7 +205,7 @@ cdef class StringStore: cdef const Utf8Str* _intern_utf8(self, char* utf8_string, int length): # TODO: This function's API/behaviour is an unholy mess... # 0 means missing, but we don't bother offsetting the index. - cdef hash_t key = _hash_utf8(utf8_string, length) + cdef hash_t key = hash_utf8(utf8_string, length) cdef Utf8Str* value = self._map.get(key) if value is not NULL: return value @@ -209,7 +214,7 @@ cdef class StringStore: return value if self.is_frozen: # OOV store uses 32 bit hashes. Pretty ugly :( - key32 = _hash32_utf8(utf8_string, length) + key32 = hash32_utf8(utf8_string, length) # Important: Make the OOV store own the memory. That way it's trivial # to flush them all. value = self._oov.mem.alloc(1, sizeof(Utf8Str)) @@ -232,7 +237,7 @@ cdef class StringStore: Returns: None """ - string_data = json.dumps(list(self)) + string_data = ujson.dumps(list(self)) if not isinstance(string_data, unicode): string_data = string_data.decode('utf8') # TODO: OOV? @@ -246,7 +251,7 @@ cdef class StringStore: Returns: None """ - strings = json.load(file_) + strings = ujson.load(file_) if strings == ['']: return None cdef unicode string @@ -271,7 +276,7 @@ cdef class StringStore: # Find array index with pointer arithmetic offset = ((value) - self.c) keys[offset] = key - + self._resize_at *= 2 cdef size_t new_size = self._resize_at * sizeof(Utf8Str) self.c = self.mem.realloc(self.c, new_size) diff --git a/spacy/sv/__init__.py b/spacy/sv/__init__.py index e03c9a56f..d7e9db4f1 100644 --- a/spacy/sv/__init__.py +++ b/spacy/sv/__init__.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals, print_function from ..language import Language diff --git a/spacy/sv/language_data.py b/spacy/sv/language_data.py index a4a657c33..b8529724a 100644 --- a/spacy/sv/language_data.py +++ b/spacy/sv/language_data.py @@ -1,16 +1,18 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from .. import language_data as base from ..language_data import update_exc, strings_to_exc from .stop_words import STOP_WORDS +from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS, ORTH_ONLY STOP_WORDS = set(STOP_WORDS) - -TOKENIZER_EXCEPTIONS = strings_to_exc(base.EMOTICONS) +TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS) +update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ORTH_ONLY)) +update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS)) update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS)) diff --git a/spacy/sv/lemma_rules.py b/spacy/sv/lemma_rules.py new file mode 100644 index 000000000..a1c238a0a --- /dev/null +++ b/spacy/sv/lemma_rules.py @@ -0,0 +1,110 @@ +# coding: utf8 +from __future__ import unicode_literals + + +LEMMA_RULES = { + "noun": [ + ["t", ""], + ["n", ""], + ["na", ""], + ["na", "e"], + ["or", "a"], + ["orna", "a"], + ["et", ""], + ["en", ""], + ["en", "e"], + ["er", ""], + ["erna", ""], + ["ar", "e"], + ["ar", ""], + ["lar", "el"], + ["arna", "e"], + ["arna", ""], + ["larna", "el"] + ], + + "verb": [ + ["r", ""], + ["de", ""], + ["t", ""], + ["er", ""], + ["te", ""], + ["a", ""], + ["e", ""], + ["t", "d"], + ["tt", "d"], + ["tt", ""], + ["ev", "iv"], + ["ack", "ick"], + ["ög", "yg"], + ["it", ""], + ["uckit", "ick"], + ["ugit", "yg"], + ["it", "et"], + ["id", "ed"], + ["ip", "ep"], + ["iv", "ev"], + ["in", "en"], + ["ik", "ek"], + ["ig", "eg"], + ["ind", ""], + ["inn", "ann"], + ["nder", "nd"], + ["inner", "inn"], + ["and", "ind"], + ["ann", "inn"], + ["s", ""], + ["anns", "inn"], + ["undit", "ind"], + ["unnit", "inn"], + ["unnits", "inn"], + ["uppit", "ipp"], + ["ungit", "ing"], + ["öd", "ud"], + ["öt", "jut"], + ["öt", "ut"], + ["ög", "ug"], + ["ögg", "ugg"], + ["öng", "ung"], + ["önk", "unk"], + ["öt", "yt"], + ["utit", "yt"], + ["ös", "ys"], + ["öv", "yv"], + ["uvit", "yv"], + ["öp", "yp"], + ["upit", "yp"], + ["ök", "yk"], + ["ukit", "yk"], + ["or", "ar"], + ["öll", "all"], + ["ät", "åt"], + ["öll", "åll"], + ["or", "är"], + ["urit", "är"], + ["åt", "ät"], + ["ar", "är"], + ["alt", "ält"], + ["ultit", "ält"] + ], + + "adj": [ + ["are", ""], + ["ast", ""], + ["re", ""], + ["st", ""], + ["ägre", "åg"], + ["ägst", "åg"], + ["ängre", "ång"], + ["ängst", "ång"], + ["örre", "or"], + ["örst", "or"] + ], + + "punct": [ + ["“", "\""], + ["”", "\""], + ["\u2018", "'"], + ["\u2019", "'"] + ] +} diff --git a/spacy/sv/morph_rules.py b/spacy/sv/morph_rules.py index da6bcbf20..d5657b8ef 100644 --- a/spacy/sv/morph_rules.py +++ b/spacy/sv/morph_rules.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * diff --git a/spacy/sv/stop_words.py b/spacy/sv/stop_words.py index e64feb3f6..2ab865d1c 100644 --- a/spacy/sv/stop_words.py +++ b/spacy/sv/stop_words.py @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals diff --git a/spacy/sv/tokenizer_exceptions.py b/spacy/sv/tokenizer_exceptions.py index d8d4e8823..3826e30fb 100644 --- a/spacy/sv/tokenizer_exceptions.py +++ b/spacy/sv/tokenizer_exceptions.py @@ -1,11 +1,35 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals from ..symbols import * from ..language_data import PRON_LEMMA -TOKENIZER_EXCEPTIONS = { +EXC = {} + +# Verbs + +for verb_data in [ + {ORTH: "driver"}, + {ORTH: "kör"}, + {ORTH: "hörr", LEMMA: "hör"}, + {ORTH: "fattar"}, + {ORTH: "hajar", LEMMA: "förstår"}, + {ORTH: "lever"}, + {ORTH: "serr", LEMMA: "ser"}, + {ORTH: "fixar"} +]: + verb_data_tc = dict(verb_data) + verb_data_tc[ORTH] = verb_data_tc[ORTH].title() + + for data in [verb_data, verb_data_tc]: + EXC[data[ORTH] + "u"] = [ + dict(data), + {ORTH: "u", LEMMA: PRON_LEMMA, NORM: "du"} + ] + + +ABBREVIATIONS = { "jan.": [ {ORTH: "jan.", LEMMA: "januari"} ], @@ -63,6 +87,63 @@ TOKENIZER_EXCEPTIONS = { "sön.": [ {ORTH: "sön.", LEMMA: "söndag"} ], + "Jan.": [ + {ORTH: "Jan.", LEMMA: "Januari"} + ], + "Febr.": [ + {ORTH: "Febr.", LEMMA: "Februari"} + ], + "Feb.": [ + {ORTH: "Feb.", LEMMA: "Februari"} + ], + "Apr.": [ + {ORTH: "Apr.", LEMMA: "April"} + ], + "Jun.": [ + {ORTH: "Jun.", LEMMA: "Juni"} + ], + "Jul.": [ + {ORTH: "Jul.", LEMMA: "Juli"} + ], + "Aug.": [ + {ORTH: "Aug.", LEMMA: "Augusti"} + ], + "Sept.": [ + {ORTH: "Sept.", LEMMA: "September"} + ], + "Sep.": [ + {ORTH: "Sep.", LEMMA: "September"} + ], + "Okt.": [ + {ORTH: "Okt.", LEMMA: "Oktober"} + ], + "Nov.": [ + {ORTH: "Nov.", LEMMA: "November"} + ], + "Dec.": [ + {ORTH: "Dec.", LEMMA: "December"} + ], + "Mån.": [ + {ORTH: "Mån.", LEMMA: "Måndag"} + ], + "Tis.": [ + {ORTH: "Tis.", LEMMA: "Tisdag"} + ], + "Ons.": [ + {ORTH: "Ons.", LEMMA: "Onsdag"} + ], + "Tors.": [ + {ORTH: "Tors.", LEMMA: "Torsdag"} + ], + "Fre.": [ + {ORTH: "Fre.", LEMMA: "Fredag"} + ], + "Lör.": [ + {ORTH: "Lör.", LEMMA: "Lördag"} + ], + "Sön.": [ + {ORTH: "Sön.", LEMMA: "Söndag"} + ], "sthlm": [ {ORTH: "sthlm", LEMMA: "Stockholm"} ], @@ -72,6 +153,10 @@ TOKENIZER_EXCEPTIONS = { } +TOKENIZER_EXCEPTIONS = dict(EXC) +TOKENIZER_EXCEPTIONS.update(ABBREVIATIONS) + + ORTH_ONLY = [ "ang.", "anm.", @@ -107,7 +192,6 @@ ORTH_ONLY = [ "p.g.a.", "ref.", "resp.", - "s.", "s.a.s.", "s.k.", "st.", diff --git a/spacy/symbols.pxd b/spacy/symbols.pxd index ca1d1ed79..1a46f509f 100644 --- a/spacy/symbols.pxd +++ b/spacy/symbols.pxd @@ -13,7 +13,7 @@ cpdef enum symbol_t: LIKE_EMAIL IS_STOP IS_OOV - + FLAG14 = 14 FLAG15 FLAG16 @@ -90,6 +90,7 @@ cpdef enum symbol_t: ADV AUX CONJ + CCONJ # U20 DET INTJ NOUN @@ -107,11 +108,14 @@ cpdef enum symbol_t: Animacy_anim Animacy_inam + Animacy_hum # U20 Aspect_freq Aspect_imp Aspect_mod Aspect_none Aspect_perf + Aspect_iter # U20 + Aspect_hab # U20 Case_abe Case_abl Case_abs @@ -120,10 +124,12 @@ cpdef enum symbol_t: Case_all Case_cau Case_com + Case_cmp # U20 Case_dat Case_del Case_dis Case_ela + Case_equ # U20 Case_ess Case_gen Case_ill @@ -142,7 +148,9 @@ cpdef enum symbol_t: Definite_two Definite_def Definite_red + Definite_cons # U20 Definite_ind + Definite_spec # U20 Degree_cmp Degree_comp Degree_none @@ -151,6 +159,8 @@ cpdef enum symbol_t: Degree_abs Degree_com Degree_dim # du + Degree_equ # U20 + Evident_nfh # U20 Gender_com Gender_fem Gender_masc @@ -162,16 +172,21 @@ cpdef enum symbol_t: Mood_pot Mood_sub Mood_opt + Mood_prp # U20 + Mood_adm # U20 Negative_neg Negative_pos Negative_yes + Polarity_neg # U20 + Polarity_pos # U20 Number_com Number_dual Number_none Number_plur Number_sing Number_ptan # bg - Number_count # bg + Number_count # bg, U20 + Number_tri # U20 NumType_card NumType_dist NumType_frac @@ -197,7 +212,8 @@ cpdef enum symbol_t: PronType_rel PronType_tot PronType_clit - PronType_exc # es, ca, it, fa + PronType_exc # es, ca, it, fa, U20 + PronType_emp # U20 Reflex_yes Tense_fut Tense_imp @@ -213,12 +229,17 @@ cpdef enum symbol_t: VerbForm_partPres VerbForm_sup VerbForm_trans + VerbForm_conv # U20 VerbForm_gdv # la + VerbForm_vnoun # U20 Voice_act Voice_cau Voice_pass - Voice_mid # gkc + Voice_mid # gkc, U20 Voice_int # hb + Voice_antip # U20 + Voice_dir # U20 + Voice_inv # U20 Abbr_yes # cz, fi, sl, U AdpType_prep # cz, U AdpType_post # U @@ -284,6 +305,10 @@ cpdef enum symbol_t: Number_psee_plur # U Number_psor_sing # cz, fi, sl, U Number_psor_plur # cz, fi, sl, U + Number_pauc # U20 + Number_grpa # U20 + Number_grpl # U20 + Number_inv # U20 NumForm_digit # cz, sl, U NumForm_roman # cz, sl, U NumForm_word # cz, sl, U @@ -311,6 +336,8 @@ cpdef enum symbol_t: Person_psor_one # fi, U Person_psor_two # fi, U Person_psor_three # fi, U + Person_zero # U20 + Person_four # U20 Polite_inf # bq, U Polite_pol # bq, U Polite_abs_inf # bq, U @@ -319,6 +346,10 @@ cpdef enum symbol_t: Polite_erg_pol # bq, U Polite_dat_inf # bq, U Polite_dat_pol # bq, U + Polite_infm # U20 + Polite_form # U20 + Polite_form_elev # U20 + Polite_form_humb # U20 Prefix_yes # U PrepCase_npr # cz PrepCase_pre # U @@ -383,6 +414,7 @@ cpdef enum symbol_t: ccomp complm conj + cop # U20 csubj csubjpass dep @@ -405,6 +437,8 @@ cpdef enum symbol_t: num number oprd + obj # U20 + obl # U20 parataxis partmod pcomp diff --git a/spacy/symbols.pyx b/spacy/symbols.pyx index 7254297d4..d9102037a 100644 --- a/spacy/symbols.pyx +++ b/spacy/symbols.pyx @@ -91,6 +91,7 @@ IDS = { "ADV": ADV, "AUX": AUX, "CONJ": CONJ, + "CCONJ": CCONJ, # U20 "DET": DET, "INTJ": INTJ, "NOUN": NOUN, @@ -108,11 +109,14 @@ IDS = { "Animacy_anim": Animacy_anim, "Animacy_inam": Animacy_inam, + "Animacy_hum": Animacy_hum, # U20 "Aspect_freq": Aspect_freq, "Aspect_imp": Aspect_imp, "Aspect_mod": Aspect_mod, "Aspect_none": Aspect_none, "Aspect_perf": Aspect_perf, + "Aspect_iter": Aspect_iter, # U20 + "Aspect_hab": Aspect_hab, # U20 "Case_abe": Case_abe, "Case_abl": Case_abl, "Case_abs": Case_abs, @@ -121,10 +125,12 @@ IDS = { "Case_all": Case_all, "Case_cau": Case_cau, "Case_com": Case_com, + "Case_cmp": Case_cmp, # U20 "Case_dat": Case_dat, "Case_del": Case_del, "Case_dis": Case_dis, "Case_ela": Case_ela, + "Case_equ": Case_equ, # U20 "Case_ess": Case_ess, "Case_gen": Case_gen, "Case_ill": Case_ill, @@ -143,7 +149,9 @@ IDS = { "Definite_two": Definite_two, "Definite_def": Definite_def, "Definite_red": Definite_red, + "Definite_cons": Definite_cons, # U20 "Definite_ind": Definite_ind, + "Definite_spec": Definite_spec, # U20 "Degree_cmp": Degree_cmp, "Degree_comp": Degree_comp, "Degree_none": Degree_none, @@ -152,6 +160,8 @@ IDS = { "Degree_abs": Degree_abs, "Degree_com": Degree_com, "Degree_dim ": Degree_dim, # du + "Degree_equ": Degree_equ, # U20 + "Evident_nfh": Evident_nfh, # U20 "Gender_com": Gender_com, "Gender_fem": Gender_fem, "Gender_masc": Gender_masc, @@ -163,16 +173,21 @@ IDS = { "Mood_pot": Mood_pot, "Mood_sub": Mood_sub, "Mood_opt": Mood_opt, + "Mood_prp": Mood_prp, # U20 + "Mood_adm": Mood_adm, # U20 "Negative_neg": Negative_neg, "Negative_pos": Negative_pos, "Negative_yes": Negative_yes, + "Polarity_neg": Polarity_neg, # U20 + "Polarity_pos": Polarity_pos, # U20 "Number_com": Number_com, "Number_dual": Number_dual, "Number_none": Number_none, "Number_plur": Number_plur, "Number_sing": Number_sing, "Number_ptan ": Number_ptan, # bg - "Number_count ": Number_count, # bg + "Number_count ": Number_count, # bg, U20 + "Number_tri": Number_tri, # U20 "NumType_card": NumType_card, "NumType_dist": NumType_dist, "NumType_frac": NumType_frac, @@ -198,7 +213,8 @@ IDS = { "PronType_rel": PronType_rel, "PronType_tot": PronType_tot, "PronType_clit": PronType_clit, - "PronType_exc ": PronType_exc, # es, ca, it, fa, + "PronType_exc": PronType_exc, # es, ca, it, fa, U20 + "PronType_emp": PronType_emp, # U20 "Reflex_yes": Reflex_yes, "Tense_fut": Tense_fut, "Tense_imp": Tense_imp, @@ -214,12 +230,17 @@ IDS = { "VerbForm_partPres": VerbForm_partPres, "VerbForm_sup": VerbForm_sup, "VerbForm_trans": VerbForm_trans, + "VerbForm_conv": VerbForm_conv, # U20 "VerbForm_gdv ": VerbForm_gdv, # la, + "VerbForm_vnoun": VerbForm_vnoun, # U20 "Voice_act": Voice_act, "Voice_cau": Voice_cau, "Voice_pass": Voice_pass, - "Voice_mid ": Voice_mid, # gkc, + "Voice_mid ": Voice_mid, # gkc, U20 "Voice_int ": Voice_int, # hb, + "Voice_antip": Voice_antip, # U20 + "Voice_dir": Voice_dir, # U20 + "Voice_inv": Voice_inv, # U20 "Abbr_yes ": Abbr_yes, # cz, fi, sl, U, "AdpType_prep ": AdpType_prep, # cz, U, "AdpType_post ": AdpType_post, # U, @@ -285,72 +306,82 @@ IDS = { "Number_psee_plur ": Number_psee_plur, # U, "Number_psor_sing ": Number_psor_sing, # cz, fi, sl, U, "Number_psor_plur ": Number_psor_plur, # cz, fi, sl, U, - "NumForm_digit ": NumForm_digit, # cz, sl, U, - "NumForm_roman ": NumForm_roman, # cz, sl, U, - "NumForm_word ": NumForm_word, # cz, sl, U, - "NumValue_one ": NumValue_one, # cz, U, - "NumValue_two ": NumValue_two, # cz, U, - "NumValue_three ": NumValue_three, # cz, U, - "PartForm_pres ": PartForm_pres, # fi, - "PartForm_past ": PartForm_past, # fi, - "PartForm_agt ": PartForm_agt, # fi, - "PartForm_neg ": PartForm_neg, # fi, - "PartType_mod ": PartType_mod, # U, - "PartType_emp ": PartType_emp, # U, - "PartType_res ": PartType_res, # U, - "PartType_inf ": PartType_inf, # U, - "PartType_vbp ": PartType_vbp, # U, - "Person_abs_one ": Person_abs_one, # bq, U, - "Person_abs_two ": Person_abs_two, # bq, U, - "Person_abs_three ": Person_abs_three, # bq, U, - "Person_dat_one ": Person_dat_one, # bq, U, - "Person_dat_two ": Person_dat_two, # bq, U, - "Person_dat_three ": Person_dat_three, # bq, U, - "Person_erg_one ": Person_erg_one, # bq, U, - "Person_erg_two ": Person_erg_two, # bq, U, - "Person_erg_three ": Person_erg_three, # bq, U, - "Person_psor_one ": Person_psor_one, # fi, U, - "Person_psor_two ": Person_psor_two, # fi, U, - "Person_psor_three ": Person_psor_three, # fi, U, - "Polite_inf ": Polite_inf, # bq, U, - "Polite_pol ": Polite_pol, # bq, U, - "Polite_abs_inf ": Polite_abs_inf, # bq, U, - "Polite_abs_pol ": Polite_abs_pol, # bq, U, - "Polite_erg_inf ": Polite_erg_inf, # bq, U, - "Polite_erg_pol ": Polite_erg_pol, # bq, U, - "Polite_dat_inf ": Polite_dat_inf, # bq, U, - "Polite_dat_pol ": Polite_dat_pol, # bq, U, - "Prefix_yes ": Prefix_yes, # U, - "PrepCase_npr ": PrepCase_npr, # cz, - "PrepCase_pre ": PrepCase_pre, # U, - "PunctSide_ini ": PunctSide_ini, # U, - "PunctSide_fin ": PunctSide_fin, # U, - "PunctType_peri ": PunctType_peri, # U, - "PunctType_qest ": PunctType_qest, # U, - "PunctType_excl ": PunctType_excl, # U, - "PunctType_quot ": PunctType_quot, # U, - "PunctType_brck ": PunctType_brck, # U, - "PunctType_comm ": PunctType_comm, # U, - "PunctType_colo ": PunctType_colo, # U, - "PunctType_semi ": PunctType_semi, # U, - "PunctType_dash ": PunctType_dash, # U, - "Style_arch ": Style_arch, # cz, fi, U, - "Style_rare ": Style_rare, # cz, fi, U, - "Style_poet ": Style_poet, # cz, U, - "Style_norm ": Style_norm, # cz, U, - "Style_coll ": Style_coll, # cz, U, - "Style_vrnc ": Style_vrnc, # cz, U, - "Style_sing ": Style_sing, # cz, U, - "Style_expr ": Style_expr, # cz, U, - "Style_derg ": Style_derg, # cz, U, - "Style_vulg ": Style_vulg, # cz, U, - "Style_yes ": Style_yes, # fi, U, - "StyleVariant_styleShort ": StyleVariant_styleShort, # cz, - "StyleVariant_styleBound ": StyleVariant_styleBound, # cz, sl, - "VerbType_aux ": VerbType_aux, # U, - "VerbType_cop ": VerbType_cop, # U, - "VerbType_mod ": VerbType_mod, # U, - "VerbType_light ": VerbType_light, # U, + "Number_pauc": Number_pauc, # U20 + "Number_grpa": Number_grpa, # U20 + "Number_grpl": Number_grpl, # U20 + "Number_inv": Number_inv, # U20 + "NumForm_digit": NumForm_digit, # cz, sl, U, + "NumForm_roman": NumForm_roman, # cz, sl, U, + "NumForm_word": NumForm_word, # cz, sl, U, + "NumValue_one": NumValue_one, # cz, U, + "NumValue_two": NumValue_two, # cz, U, + "NumValue_three": NumValue_three, # cz, U, + "PartForm_pres": PartForm_pres, # fi, + "PartForm_past": PartForm_past, # fi, + "PartForm_agt": PartForm_agt, # fi, + "PartForm_neg": PartForm_neg, # fi, + "PartType_mod": PartType_mod, # U, + "PartType_emp": PartType_emp, # U, + "PartType_res": PartType_res, # U, + "PartType_inf": PartType_inf, # U, + "PartType_vbp": PartType_vbp, # U, + "Person_abs_one": Person_abs_one, # bq, U, + "Person_abs_two": Person_abs_two, # bq, U, + "Person_abs_three": Person_abs_three, # bq, U, + "Person_dat_one": Person_dat_one, # bq, U, + "Person_dat_two": Person_dat_two, # bq, U, + "Person_dat_three": Person_dat_three, # bq, U, + "Person_erg_one": Person_erg_one, # bq, U, + "Person_erg_two": Person_erg_two, # bq, U, + "Person_erg_three": Person_erg_three, # bq, U, + "Person_psor_one": Person_psor_one, # fi, U, + "Person_psor_two": Person_psor_two, # fi, U, + "Person_psor_three": Person_psor_three, # fi, U, + "Person_zero": Person_zero, # U20 + "Person_four": Person_four, # U20 + "Polite_inf": Polite_inf, # bq, U, + "Polite_pol": Polite_pol, # bq, U, + "Polite_abs_inf": Polite_abs_inf, # bq, U, + "Polite_abs_pol": Polite_abs_pol, # bq, U, + "Polite_erg_inf": Polite_erg_inf, # bq, U, + "Polite_erg_pol": Polite_erg_pol, # bq, U, + "Polite_dat_inf": Polite_dat_inf, # bq, U, + "Polite_dat_pol": Polite_dat_pol, # bq, U, + "Polite_infm": Polite_infm, # U20 + "Polite_form": Polite_form, # U20 + "Polite_form_elev": Polite_form_elev, # U20 + "Polite_form_humb ": Polite_form_humb, # U20 + "Prefix_yes": Prefix_yes, # U, + "PrepCase_npr": PrepCase_npr, # cz, + "PrepCase_pre": PrepCase_pre, # U, + "PunctSide_ini": PunctSide_ini, # U, + "PunctSide_fin": PunctSide_fin, # U, + "PunctType_peri": PunctType_peri, # U, + "PunctType_qest": PunctType_qest, # U, + "PunctType_excl": PunctType_excl, # U, + "PunctType_quot": PunctType_quot, # U, + "PunctType_brck": PunctType_brck, # U, + "PunctType_comm": PunctType_comm, # U, + "PunctType_colo": PunctType_colo, # U, + "PunctType_semi": PunctType_semi, # U, + "PunctType_dash": PunctType_dash, # U, + "Style_arch": Style_arch, # cz, fi, U, + "Style_rare": Style_rare, # cz, fi, U, + "Style_poet": Style_poet, # cz, U, + "Style_norm": Style_norm, # cz, U, + "Style_coll": Style_coll, # cz, U, + "Style_vrnc": Style_vrnc, # cz, U, + "Style_sing": Style_sing, # cz, U, + "Style_expr": Style_expr, # cz, U, + "Style_derg": Style_derg, # cz, U, + "Style_vulg": Style_vulg, # cz, U, + "Style_yes": Style_yes, # fi, U, + "StyleVariant_styleShort": StyleVariant_styleShort, # cz, + "StyleVariant_styleBound": StyleVariant_styleBound, # cz, sl, + "VerbType_aux": VerbType_aux, # U, + "VerbType_cop": VerbType_cop, # U, + "VerbType_mod": VerbType_mod, # U, + "VerbType_light": VerbType_light, # U, "PERSON": PERSON, "NORP": NORP, @@ -384,6 +415,7 @@ IDS = { "ccomp": ccomp, "complm": complm, "conj": conj, + "cop": cop, # U20 "csubj": csubj, "csubjpass": csubjpass, "dep": dep, @@ -406,6 +438,8 @@ IDS = { "num": num, "number": number, "oprd": oprd, + "obj": obj, # U20 + "obl": obl, # U20 "parataxis": parataxis, "partmod": partmod, "pcomp": pcomp, diff --git a/spacy/syntax/_parse_features.pyx b/spacy/syntax/_parse_features.pyx index bc54e0c9d..36a78c638 100644 --- a/spacy/syntax/_parse_features.pyx +++ b/spacy/syntax/_parse_features.pyx @@ -33,7 +33,6 @@ cdef inline void fill_token(atom_t* context, const TokenC* token) nogil: context[9] = 0 context[10] = 0 context[11] = 0 - context[12] = 0 else: context[0] = token.lex.orth context[1] = token.lemma diff --git a/spacy/syntax/_state.pxd b/spacy/syntax/_state.pxd index bf1dbf90f..bfe3a6bea 100644 --- a/spacy/syntax/_state.pxd +++ b/spacy/syntax/_state.pxd @@ -1,6 +1,9 @@ from libc.string cimport memcpy, memset from libc.stdlib cimport malloc, calloc, free -from libc.stdint cimport uint32_t +from libc.stdint cimport uint32_t, uint64_t + +from murmurhash.mrmr cimport hash64 + from ..vocab cimport EMPTY_LEXEME from ..structs cimport TokenC, Entity from ..lexeme cimport Lexeme @@ -37,7 +40,7 @@ cdef cppclass StateC: this._ents[i].end = -1 this._sent[i].l_edge = i this._sent[i].r_edge = i - for i in range(length, length + (PADDING * 2)): + for i in range(PADDING): this._sent[i].lex = &EMPTY_LEXEME this._sent += PADDING this._ents += PADDING @@ -56,7 +59,7 @@ cdef cppclass StateC: for i in range(length): this._sent[i] = sent[i] this._buffer[i] = i - for i in range(length, length + 5): + for i in range(length, length+PADDING): this._sent[i].lex = &EMPTY_LEXEME __dealloc__(): @@ -138,7 +141,7 @@ cdef cppclass StateC: else: ptr += 1 return -1 - + int R(int i, int idx) nogil const: if idx < 1: return -1 @@ -201,6 +204,21 @@ cdef cppclass StateC: else: return this.length - this._b_i + uint64_t hash() nogil const: + cdef TokenC[11] sig + sig[0] = this.S_(2)[0] + sig[1] = this.S_(1)[0] + sig[2] = this.R_(this.S(1), 1)[0] + sig[3] = this.L_(this.S(0), 1)[0] + sig[4] = this.L_(this.S(0), 2)[0] + sig[5] = this.S_(0)[0] + sig[6] = this.R_(this.S(0), 2)[0] + sig[7] = this.R_(this.S(0), 1)[0] + sig[8] = this.B_(0)[0] + sig[9] = this.E_(0)[0] + sig[10] = this.E_(1)[0] + return hash64(sig, sizeof(sig), this._s_i) + void push() nogil: if this.B(0) != -1: this._stack[this._s_i] = this.B(0) @@ -212,7 +230,7 @@ cdef cppclass StateC: void pop() nogil: if this._s_i >= 1: this._s_i -= 1 - + void unshift() nogil: this._b_i -= 1 this._buffer[this._b_i] = this.S(0) @@ -281,7 +299,7 @@ cdef cppclass StateC: this._sent[i].ent_type = ent_type void set_break(int i) nogil: - if 0 <= i < this.length: + if 0 <= i < this.length: this._sent[i].sent_start = True this._break = this._b_i @@ -290,6 +308,8 @@ cdef cppclass StateC: memcpy(this._stack, src._stack, this.length * sizeof(int)) memcpy(this._buffer, src._buffer, this.length * sizeof(int)) memcpy(this._ents, src._ents, this.length * sizeof(Entity)) + memcpy(this.shifted, src.shifted, this.length * sizeof(this.shifted[0])) + this.length = src.length this._b_i = src._b_i this._s_i = src._s_i this._e_i = src._e_i diff --git a/spacy/syntax/arc_eager.pyx b/spacy/syntax/arc_eager.pyx index 08eb23d1c..bea0c9b45 100644 --- a/spacy/syntax/arc_eager.pyx +++ b/spacy/syntax/arc_eager.pyx @@ -1,4 +1,8 @@ +# cython: profile=True +# cython: cdivision=True +# cython: infer_types=True from __future__ import unicode_literals +from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF import ctypes import os @@ -155,7 +159,18 @@ cdef class Reduce: @staticmethod cdef inline weight_t move_cost(StateClass st, const GoldParseC* gold) nogil: - return pop_cost(st, gold, st.S(0)) + cost = pop_cost(st, gold, st.S(0)) + if not st.has_head(st.S(0)): + # Decrement cost for the arcs e save + for i in range(1, st.stack_depth()): + S_i = st.S(i) + if gold.heads[st.S(0)] == S_i: + cost -= 1 + if gold.heads[S_i] == st.S(0): + cost -= 1 + if Break.is_valid(st.c, -1) and Break.move_cost(st, gold) == 0: + cost -= 1 + return cost @staticmethod cdef inline weight_t label_cost(StateClass s, const GoldParseC* gold, int label) nogil: @@ -181,7 +196,8 @@ cdef class LeftArc: cdef inline weight_t move_cost(StateClass s, const GoldParseC* gold) nogil: cdef weight_t cost = 0 if arc_is_gold(gold, s.B(0), s.S(0)): - return 0 + # Have a negative cost if we 'recover' from the wrong dependency + return 0 if not s.has_head(s.S(0)) else -1 else: # Account for deps we might lose between S0 and stack if not s.has_head(s.S(0)): @@ -256,6 +272,8 @@ cdef class Break: B_i = s.B(j) cost += gold.heads[S_i] == B_i cost += gold.heads[B_i] == S_i + if cost != 0: + return cost # Check for sentence boundary --- if it's here, we can't have any deps # between stack and buffer, so rest of action is irrelevant. s0_root = _get_root(s.S(0), gold) @@ -278,10 +296,26 @@ cdef int _get_root(int word, const GoldParseC* gold) nogil: return word +cdef void* _init_state(Pool mem, int length, void* tokens) except NULL: + cdef StateClass st = StateClass.init(tokens, length) + # Ensure sent_start is set to 0 throughout + for i in range(st.c.length): + st.c._sent[i].sent_start = False + st.c._sent[i].l_edge = i + st.c._sent[i].r_edge = i + st.fast_forward() + Py_INCREF(st) + return st + + cdef class ArcEager(TransitionSystem): + def __init__(self, *args, **kwargs): + TransitionSystem.__init__(self, *args, **kwargs) + self.init_beam_state = _init_state + @classmethod def get_actions(cls, **kwargs): - actions = kwargs.get('actions', + actions = kwargs.get('actions', { SHIFT: {'': True}, REDUCE: {'': True}, @@ -294,7 +328,7 @@ cdef class ArcEager(TransitionSystem): for label in kwargs.get('right_labels', []): if label.upper() != 'ROOT': actions[RIGHT][label] = True - + for raw_text, sents in kwargs.get('gold_parses', []): for (ids, words, tags, heads, labels, iob), ctnts in sents: for child, head, label in zip(ids, heads, labels): @@ -407,14 +441,14 @@ cdef class ArcEager(TransitionSystem): for i in range(self.n_moves): output[i] = is_valid[self.c[i].move] - cdef int set_costs(self, int* is_valid, weight_t* costs, + cdef int set_costs(self, int* is_valid, weight_t* costs, StateClass stcls, GoldParse gold) except -1: cdef int i, move, label cdef label_cost_func_t[N_MOVES] label_cost_funcs cdef move_cost_func_t[N_MOVES] move_cost_funcs cdef weight_t[N_MOVES] move_costs for i in range(N_MOVES): - move_costs[i] = -1 + move_costs[i] = 9000 move_cost_funcs[SHIFT] = Shift.move_cost move_cost_funcs[REDUCE] = Reduce.move_cost move_cost_funcs[LEFT] = LeftArc.move_cost @@ -436,14 +470,14 @@ cdef class ArcEager(TransitionSystem): is_valid[i] = True move = self.c[i].move label = self.c[i].label - if move_costs[move] == -1: + if move_costs[move] == 9000: move_costs[move] = move_cost_funcs[move](stcls, &gold.c) costs[i] = move_costs[move] + label_cost_funcs[move](stcls, &gold.c, label) n_gold += costs[i] <= 0 else: is_valid[i] = False costs[i] = 9000 - if n_gold == 0: + if n_gold < 1: # Check projectivity --- leading cause if is_nonproj_tree(gold.heads): raise ValueError( @@ -463,7 +497,7 @@ cdef class ArcEager(TransitionSystem): "Could not find a gold-standard action to supervise the dependency " "parser.\n" "The GoldParse was projective.\n" - "The transition system has %d actions.\n" + "The transition system has %d actions.\n" "State at failure:\n" "%s" % (self.n_moves, stcls.print_state(gold.words))) assert n_gold >= 1 diff --git a/spacy/syntax/beam_parser.pxd b/spacy/syntax/beam_parser.pxd new file mode 100644 index 000000000..35a60cbf3 --- /dev/null +++ b/spacy/syntax/beam_parser.pxd @@ -0,0 +1,10 @@ +from .parser cimport Parser +from ..structs cimport TokenC +from thinc.typedefs cimport weight_t + + +cdef class BeamParser(Parser): + cdef public int beam_width + cdef public weight_t beam_density + + cdef int _parseC(self, TokenC* tokens, int length, int nr_feat, int nr_class) except -1 diff --git a/spacy/syntax/beam_parser.pyx b/spacy/syntax/beam_parser.pyx new file mode 100644 index 000000000..31d7ae92d --- /dev/null +++ b/spacy/syntax/beam_parser.pyx @@ -0,0 +1,268 @@ +# cython: profile=True +# cython: experimental_cpp_class_def=True +# cython: cdivision=True +# cython: infer_types=True +""" +MALT-style dependency parser +""" +from __future__ import unicode_literals +cimport cython + +from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF + +from libc.stdint cimport uint32_t, uint64_t +from libc.string cimport memset, memcpy +from libc.stdlib cimport rand +from libc.math cimport log, exp, isnan, isinf +import random +import os.path +from os import path +import shutil +import json +import math + +from cymem.cymem cimport Pool, Address +from murmurhash.mrmr cimport real_hash64 as hash64 +from thinc.typedefs cimport weight_t, class_t, feat_t, atom_t, hash_t + + +from util import Config + +from thinc.linear.features cimport ConjunctionExtracter +from thinc.structs cimport FeatureC, ExampleC + +from thinc.extra.search cimport Beam +from thinc.extra.search cimport MaxViolation +from thinc.extra.eg cimport Example +from thinc.extra.mb cimport Minibatch + +from ..structs cimport TokenC + +from ..tokens.doc cimport Doc +from ..strings cimport StringStore + +from .transition_system cimport TransitionSystem, Transition + +from ..gold cimport GoldParse + +from . import _parse_features +from ._parse_features cimport CONTEXT_SIZE +from ._parse_features cimport fill_context +from .stateclass cimport StateClass +from .parser cimport Parser + + +DEBUG = False +def set_debug(val): + global DEBUG + DEBUG = val + + +def get_templates(name): + pf = _parse_features + if name == 'ner': + return pf.ner + elif name == 'debug': + return pf.unigrams + else: + return (pf.unigrams + pf.s0_n0 + pf.s1_n0 + pf.s1_s0 + pf.s0_n1 + pf.n0_n1 + \ + pf.tree_shape + pf.trigrams) + + +cdef int BEAM_WIDTH = 16 +cdef weight_t BEAM_DENSITY = 0.01 + +cdef class BeamParser(Parser): + def __init__(self, *args, **kwargs): + self.beam_width = kwargs.get('beam_width', BEAM_WIDTH) + self.beam_density = kwargs.get('beam_density', BEAM_DENSITY) + Parser.__init__(self, *args, **kwargs) + + cdef int parseC(self, TokenC* tokens, int length, int nr_feat) nogil: + with gil: + self._parseC(tokens, length, nr_feat, self.moves.n_moves) + + cdef int _parseC(self, TokenC* tokens, int length, int nr_feat, int nr_class) except -1: + cdef Beam beam = Beam(self.moves.n_moves, self.beam_width, min_density=self.beam_density) + # TODO: How do we handle new labels here? This increases nr_class + beam.initialize(self.moves.init_beam_state, length, tokens) + beam.check_done(_check_final_state, NULL) + if beam.is_done: + _cleanup(beam) + return 0 + while not beam.is_done: + self._advance_beam(beam, None, False) + state = beam.at(0) + self.moves.finalize_state(state.c) + for i in range(length): + tokens[i] = state.c._sent[i] + _cleanup(beam) + + def update(self, Doc tokens, GoldParse gold_parse, itn=0): + self.moves.preprocess_gold(gold_parse) + cdef Beam pred = Beam(self.moves.n_moves, self.beam_width) + pred.initialize(self.moves.init_beam_state, tokens.length, tokens.c) + pred.check_done(_check_final_state, NULL) + # Hack for NER + for i in range(pred.size): + stcls = pred.at(i) + self.moves.initialize_state(stcls.c) + + cdef Beam gold = Beam(self.moves.n_moves, self.beam_width, min_density=0.0) + gold.initialize(self.moves.init_beam_state, tokens.length, tokens.c) + gold.check_done(_check_final_state, NULL) + violn = MaxViolation() + while not pred.is_done and not gold.is_done: + # We search separately here, to allow for ambiguity in the gold parse. + self._advance_beam(pred, gold_parse, False) + self._advance_beam(gold, gold_parse, True) + violn.check_crf(pred, gold) + if pred.loss > 0 and pred.min_score > (gold.score + self.model.time): + break + else: + # The non-monotonic oracle makes it difficult to ensure final costs are + # correct. Therefore do final correction + for i in range(pred.size): + if is_gold(pred.at(i), gold_parse, self.moves.strings): + pred._states[i].loss = 0.0 + elif pred._states[i].loss == 0.0: + pred._states[i].loss = 1.0 + violn.check_crf(pred, gold) + if pred.size < 1: + raise Exception("No candidates", tokens.length) + if gold.size < 1: + raise Exception("No gold", tokens.length) + if pred.loss == 0: + self.model.update_from_histories(self.moves, tokens, [(0.0, [])]) + elif True: + #_check_train_integrity(pred, gold, gold_parse, self.moves) + histories = zip(violn.p_probs, violn.p_hist) + zip(violn.g_probs, violn.g_hist) + self.model.update_from_histories(self.moves, tokens, histories, min_grad=0.001**(itn+1)) + else: + self.model.update_from_histories(self.moves, tokens, + [(1.0, violn.p_hist[0]), (-1.0, violn.g_hist[0])]) + _cleanup(pred) + _cleanup(gold) + return pred.loss + + def _advance_beam(self, Beam beam, GoldParse gold, bint follow_gold): + cdef atom_t[CONTEXT_SIZE] context + cdef Pool mem = Pool() + features = mem.alloc(self.model.nr_feat, sizeof(FeatureC)) + if False: + mb = Minibatch(self.model.widths, beam.size) + for i in range(beam.size): + stcls = beam.at(i) + if stcls.c.is_final(): + nr_feat = 0 + else: + nr_feat = self.model.set_featuresC(context, features, stcls.c) + self.moves.set_valid(beam.is_valid[i], stcls.c) + mb.c.push_back(features, nr_feat, beam.costs[i], beam.is_valid[i], 0) + self.model(mb) + for i in range(beam.size): + memcpy(beam.scores[i], mb.c.scores(i), mb.c.nr_out() * sizeof(beam.scores[i][0])) + else: + for i in range(beam.size): + stcls = beam.at(i) + if not stcls.is_final(): + nr_feat = self.model.set_featuresC(context, features, stcls.c) + self.moves.set_valid(beam.is_valid[i], stcls.c) + self.model.set_scoresC(beam.scores[i], features, nr_feat) + if gold is not None: + n_gold = 0 + lines = [] + for i in range(beam.size): + stcls = beam.at(i) + if not stcls.c.is_final(): + self.moves.set_costs(beam.is_valid[i], beam.costs[i], stcls, gold) + if follow_gold: + for j in range(self.moves.n_moves): + if beam.costs[i][j] >= 1: + beam.is_valid[i][j] = 0 + lines.append((stcls.B(0), stcls.B(1), + stcls.B_(0).ent_iob, stcls.B_(1).ent_iob, + stcls.B_(1).sent_start, + j, + beam.is_valid[i][j], 'set invalid', + beam.costs[i][j], self.moves.c[j].move, self.moves.c[j].label)) + n_gold += 1 if beam.is_valid[i][j] else 0 + if follow_gold and n_gold == 0: + raise Exception("No gold") + if follow_gold: + beam.advance(_transition_state, NULL, self.moves.c) + else: + beam.advance(_transition_state, _hash_state, self.moves.c) + beam.check_done(_check_final_state, NULL) + + +# These are passed as callbacks to thinc.search.Beam +cdef int _transition_state(void* _dest, void* _src, class_t clas, void* _moves) except -1: + dest = _dest + src = _src + moves = _moves + dest.clone(src) + moves[clas].do(dest.c, moves[clas].label) + + +cdef int _check_final_state(void* _state, void* extra_args) except -1: + return (_state).is_final() + + +def _cleanup(Beam beam): + for i in range(beam.width): + Py_XDECREF(beam._states[i].content) + Py_XDECREF(beam._parents[i].content) + + +cdef hash_t _hash_state(void* _state, void* _) except 0: + state = _state + if state.c.is_final(): + return 1 + else: + return state.c.hash() + + +def _check_train_integrity(Beam pred, Beam gold, GoldParse gold_parse, TransitionSystem moves): + for i in range(pred.size): + if not pred._states[i].is_done or pred._states[i].loss == 0: + continue + state = pred.at(i) + if is_gold(state, gold_parse, moves.strings) == True: + for dep in gold_parse.orig_annot: + print(dep[1], dep[3], dep[4]) + print("Cost", pred._states[i].loss) + for j in range(gold_parse.length): + print(gold_parse.orig_annot[j][1], state.H(j), moves.strings[state.safe_get(j).dep]) + acts = [moves.c[clas].move for clas in pred.histories[i]] + labels = [moves.c[clas].label for clas in pred.histories[i]] + print([moves.move_name(move, label) for move, label in zip(acts, labels)]) + raise Exception("Predicted state is gold-standard") + for i in range(gold.size): + if not gold._states[i].is_done: + continue + state = gold.at(i) + if is_gold(state, gold_parse, moves.strings) == False: + print("Truth") + for dep in gold_parse.orig_annot: + print(dep[1], dep[3], dep[4]) + print("Predicted good") + for j in range(gold_parse.length): + print(gold_parse.orig_annot[j][1], state.H(j), moves.strings[state.safe_get(j).dep]) + raise Exception("Gold parse is not gold-standard") + + +def is_gold(StateClass state, GoldParse gold, StringStore strings): + predicted = set() + truth = set() + for i in range(gold.length): + if gold.cand_to_gold[i] is None: + continue + if state.safe_get(i).dep: + predicted.add((i, state.H(i), strings[state.safe_get(i).dep])) + else: + predicted.add((i, state.H(i), 'ROOT')) + id_, word, tag, head, dep, ner = gold.orig_annot[gold.cand_to_gold[i]] + truth.add((id_, head, dep)) + return truth == predicted + diff --git a/spacy/syntax/ner.pyx b/spacy/syntax/ner.pyx index 8f6ecde9f..736cc0039 100644 --- a/spacy/syntax/ner.pyx +++ b/spacy/syntax/ner.pyx @@ -52,7 +52,7 @@ cdef bint _entity_is_sunk(StateClass st, Transition* golds) nogil: cdef class BiluoPushDown(TransitionSystem): @classmethod def get_actions(cls, **kwargs): - actions = kwargs.get('actions', + actions = kwargs.get('actions', { MISSING: {'': True}, BEGIN: {}, @@ -106,7 +106,7 @@ cdef class BiluoPushDown(TransitionSystem): self.freqs[ENT_TYPE][0] += 1 cdef Transition lookup_transition(self, object name) except *: - if name == '-': + if name == '-' or name == None: move_str = 'M' label = 0 elif '-' in name: @@ -159,6 +159,7 @@ cdef class BiluoPushDown(TransitionSystem): return t cdef int initialize_state(self, StateC* st) nogil: + # This is especially necessary when we use limited training data. for i in range(st.length): if st._sent[i].ent_type != 0: with gil: @@ -248,7 +249,7 @@ cdef class In: elif st.B_(1).sent_start: return False return st.entity_is_open() and label != 0 and st.E_(0).ent_type == label - + @staticmethod cdef int transition(StateC* st, int label) nogil: st.set_ent_tag(st.B(0), 1, label) @@ -262,7 +263,7 @@ cdef class In: cdef int g_act = gold.ner[s.B(0)].move cdef int g_tag = gold.ner[s.B(0)].label cdef bint is_sunk = _entity_is_sunk(s, gold.ner) - + if g_act == MISSING: return 0 elif g_act == BEGIN: @@ -304,7 +305,7 @@ cdef class Last: cdef int g_act = gold.ner[s.B(0)].move cdef int g_tag = gold.ner[s.B(0)].label - + if g_act == MISSING: return 0 elif g_act == BEGIN: @@ -381,7 +382,7 @@ cdef class Out: st.set_ent_tag(st.B(0), 2, 0) st.push() st.pop() - + @staticmethod cdef weight_t cost(StateClass s, const GoldParseC* gold, int label) nogil: cdef int g_act = gold.ner[s.B(0)].move @@ -406,7 +407,7 @@ cdef class Out: return 1 else: return 1 - + class OracleError(Exception): pass diff --git a/spacy/syntax/nonproj.pyx b/spacy/syntax/nonproj.pyx index 566588da4..1f4878247 100644 --- a/spacy/syntax/nonproj.pyx +++ b/spacy/syntax/nonproj.pyx @@ -8,7 +8,7 @@ from spacy.attrs import DEP, HEAD def ancestors(tokenid, heads): # returns all words going from the word up the path to the root # the path to root cannot be longer than the number of words in the sentence - # this function ends after at most len(heads) steps + # this function ends after at most len(heads) steps # because it would otherwise loop indefinitely on cycles head = tokenid cnt = 0 @@ -180,7 +180,7 @@ class PseudoProjectivity: next_queue = [] for qtoken in queue: for child in qtoken.children: - if child.is_space: continue + if child.is_space: continue if child == token: continue if child.dep_ == headlabel: return child diff --git a/spacy/syntax/parser.pxd b/spacy/syntax/parser.pxd index 4370f5c6f..95b6c3d3f 100644 --- a/spacy/syntax/parser.pxd +++ b/spacy/syntax/parser.pxd @@ -1,6 +1,6 @@ from thinc.linear.avgtron cimport AveragedPerceptron -from thinc.extra.eg cimport Example -from thinc.structs cimport ExampleC +from thinc.typedefs cimport atom_t +from thinc.structs cimport FeatureC from .stateclass cimport StateClass from .arc_eager cimport TransitionSystem @@ -11,7 +11,8 @@ from ._state cimport StateC cdef class ParserModel(AveragedPerceptron): - cdef void set_featuresC(self, ExampleC* eg, const StateC* state) nogil + cdef int set_featuresC(self, atom_t* context, FeatureC* features, + const StateC* state) nogil cdef class Parser: diff --git a/spacy/syntax/parser.pyx b/spacy/syntax/parser.pyx index eb094fa97..c94d4ebee 100644 --- a/spacy/syntax/parser.pyx +++ b/spacy/syntax/parser.pyx @@ -12,7 +12,9 @@ from cpython.exc cimport PyErr_CheckSignals from libc.stdint cimport uint32_t, uint64_t from libc.string cimport memset, memcpy from libc.stdlib cimport malloc, calloc, free + import os.path +from collections import Counter from os import path import shutil import json @@ -27,7 +29,10 @@ from thinc.linalg cimport VecVec from thinc.structs cimport SparseArrayC from preshed.maps cimport MapStruct from preshed.maps cimport map_get + from thinc.structs cimport FeatureC +from thinc.structs cimport ExampleC +from thinc.extra.eg cimport Example from util import Config @@ -47,7 +52,7 @@ from ._parse_features cimport fill_context from .stateclass cimport StateClass from ._state cimport StateC - +USE_FTRL = False DEBUG = False def set_debug(val): global DEBUG @@ -68,9 +73,57 @@ def get_templates(name): cdef class ParserModel(AveragedPerceptron): - cdef void set_featuresC(self, ExampleC* eg, const StateC* state) nogil: - fill_context(eg.atoms, state) - eg.nr_feat = self.extracter.set_features(eg.features, eg.atoms) + cdef int set_featuresC(self, atom_t* context, FeatureC* features, + const StateC* state) nogil: + fill_context(context, state) + nr_feat = self.extracter.set_features(features, context) + return nr_feat + + def update(self, Example eg, itn=0): + '''Does regression on negative cost. Sort of cute?''' + self.time += 1 + best = arg_max_if_gold(eg.c.scores, eg.c.costs, eg.c.nr_class) + guess = eg.guess + if guess == best or best == -1: + return 0.0 + if USE_FTRL: + for feat in eg.c.features[:eg.c.nr_feat]: + self.update_weight_ftrl(feat.key, guess, feat.value * eg.c.costs[guess]) + self.update_weight_ftrl(feat.key, best, -feat.value * eg.c.costs[guess]) + else: + for feat in eg.c.features[:eg.c.nr_feat]: + self.update_weight(feat.key, guess, feat.value * eg.c.costs[guess]) + self.update_weight(feat.key, best, -feat.value * eg.c.costs[guess]) + return eg.c.costs[guess] + + def update_from_histories(self, TransitionSystem moves, Doc doc, histories, weight_t min_grad=0.0): + cdef Pool mem = Pool() + features = mem.alloc(self.nr_feat, sizeof(FeatureC)) + + cdef StateClass stcls + + cdef class_t clas + self.time += 1 + cdef atom_t[CONTEXT_SIZE] atoms + histories = [(grad, hist) for grad, hist in histories if abs(grad) >= min_grad and hist] + if not histories: + return None + gradient = [Counter() for _ in range(max([max(h)+1 for _, h in histories]))] + for d_loss, history in histories: + stcls = StateClass.init(doc.c, doc.length) + moves.initialize_state(stcls.c) + for clas in history: + nr_feat = self.set_featuresC(atoms, features, stcls.c) + clas_grad = gradient[clas] + for feat in features[:nr_feat]: + clas_grad[feat.key] += d_loss * feat.value + moves.c[clas].do(stcls.c, moves.c[clas].label) + cdef feat_t key + cdef weight_t d_feat + for clas, clas_grad in enumerate(gradient): + for key, d_feat in clas_grad.items(): + if d_feat != 0: + self.update_weight_ftrl(key, clas, d_feat) cdef class Parser: @@ -124,6 +177,9 @@ cdef class Parser: elif 'features' not in cfg: cfg['features'] = self.feature_templates self.model = ParserModel(cfg['features']) + self.model.l1_penalty = cfg.get('L1', 0.0) + self.model.learn_rate = cfg.get('learn_rate', 0.001) + self.cfg = cfg def __reduce__(self): @@ -209,15 +265,15 @@ cdef class Parser: eg.is_valid = calloc(sizeof(int), nr_class) cdef int i while not state.is_final(): - self.model.set_featuresC(&eg, state) + eg.nr_feat = self.model.set_featuresC(eg.atoms, eg.features, state) self.moves.set_valid(eg.is_valid, state) self.model.set_scoresC(eg.scores, eg.features, eg.nr_feat) guess = VecVec.arg_max_if_true(eg.scores, eg.is_valid, eg.nr_class) + if guess < 0: + return 1 action = self.moves.c[guess] - if not eg.is_valid[guess]: - return 1 action.do(state, action.label) memset(eg.scores, 0, sizeof(eg.scores[0]) * eg.nr_class) @@ -232,8 +288,8 @@ cdef class Parser: free(eg.scores) free(eg.is_valid) return 0 - - def update(self, Doc tokens, GoldParse gold): + + def update(self, Doc tokens, GoldParse gold, itn=0): """Update the statistical model. Arguments: @@ -255,18 +311,21 @@ cdef class Parser: cdef weight_t loss = 0 cdef Transition action while not stcls.is_final(): - self.model.set_featuresC(&eg.c, stcls.c) + eg.c.nr_feat = self.model.set_featuresC(eg.c.atoms, eg.c.features, + stcls.c) self.moves.set_costs(eg.c.is_valid, eg.c.costs, stcls, gold) self.model.set_scoresC(eg.c.scores, eg.c.features, eg.c.nr_feat) - self.model.updateC(&eg.c) guess = VecVec.arg_max_if_true(eg.c.scores, eg.c.is_valid, eg.c.nr_class) + self.model.update(eg) - action = self.moves.c[eg.guess] + action = self.moves.c[guess] action.do(stcls.c, action.label) - loss += eg.costs[eg.guess] - eg.fill_scores(0, eg.nr_class) - eg.fill_costs(0, eg.nr_class) - eg.fill_is_valid(1, eg.nr_class) + loss += eg.costs[guess] + eg.fill_scores(0, eg.c.nr_class) + eg.fill_costs(0, eg.c.nr_class) + eg.fill_is_valid(1, eg.c.nr_class) + + self.moves.finalize_state(stcls.c) return loss def step_through(self, Doc doc): @@ -296,7 +355,7 @@ cdef class Parser: # Doesn't set label into serializer -- subclasses override it to do that. for action in self.moves.action_types: self.moves.add_action(action, label) - + cdef class StepwiseState: cdef readonly StateClass stcls @@ -343,7 +402,8 @@ cdef class StepwiseState: def predict(self): self.eg.reset() - self.parser.model.set_featuresC(&self.eg.c, self.stcls.c) + self.eg.c.nr_feat = self.parser.model.set_featuresC(self.eg.c.atoms, self.eg.c.features, + self.stcls.c) self.parser.moves.set_valid(self.eg.c.is_valid, self.stcls.c) self.parser.model.set_scoresC(self.eg.c.scores, self.eg.c.features, self.eg.c.nr_feat) @@ -385,6 +445,14 @@ class ParserStateError(ValueError): "Please include the text that the parser failed on, which is:\n" "%s" % repr(doc.text)) +cdef int arg_max_if_gold(const weight_t* scores, const weight_t* costs, int n) nogil: + cdef int best = -1 + for i in range(n): + if costs[i] <= 0: + if best == -1 or scores[i] > scores[best]: + best = i + return best + cdef int _arg_max_clas(const weight_t* scores, int move, const Transition* actions, int nr_class) except -1: diff --git a/spacy/syntax/transition_system.pxd b/spacy/syntax/transition_system.pxd index b985498dc..5169ff7ca 100644 --- a/spacy/syntax/transition_system.pxd +++ b/spacy/syntax/transition_system.pxd @@ -28,6 +28,7 @@ ctypedef weight_t (*label_cost_func_t)(StateClass state, const GoldParseC* gold, ctypedef int (*do_func_t)(StateC* state, int label) nogil +ctypedef void* (*init_state_t)(Pool mem, int length, void* tokens) except NULL cdef class TransitionSystem: cdef Pool mem @@ -37,6 +38,7 @@ cdef class TransitionSystem: cdef int _size cdef public int root_label cdef public freqs + cdef init_state_t init_beam_state cdef int initialize_state(self, StateC* state) nogil cdef int finalize_state(self, StateC* state) nogil diff --git a/spacy/syntax/transition_system.pyx b/spacy/syntax/transition_system.pyx index a4bb02753..7e5577885 100644 --- a/spacy/syntax/transition_system.pyx +++ b/spacy/syntax/transition_system.pyx @@ -6,6 +6,7 @@ from collections import defaultdict from ..structs cimport TokenC from .stateclass cimport StateClass from ..attrs cimport TAG, HEAD, DEP, ENT_TYPE, ENT_IOB +from cpython.ref cimport PyObject, Py_INCREF, Py_XDECREF cdef weight_t MIN_SCORE = -90000 @@ -15,19 +16,24 @@ class OracleError(Exception): pass +cdef void* _init_state(Pool mem, int length, void* tokens) except NULL: + cdef StateClass st = StateClass.init(tokens, length) + Py_INCREF(st) + return st + + cdef class TransitionSystem: def __init__(self, StringStore string_table, dict labels_by_action, _freqs=None): self.mem = Pool() self.strings = string_table self.n_moves = 0 self._size = 100 - + self.c = self.mem.alloc(self._size, sizeof(Transition)) - + for action, label_strs in sorted(labels_by_action.items()): for label_str in sorted(label_strs): self.add_action(int(action), label_str) - self.root_label = self.strings['ROOT'] self.freqs = {} if _freqs is None else _freqs for attr in (TAG, HEAD, DEP, ENT_TYPE, ENT_IOB): @@ -37,6 +43,7 @@ cdef class TransitionSystem: for i in range(10024): self.freqs[HEAD][i] = 1 self.freqs[HEAD][-i] = 1 + self.init_beam_state = _init_state def __reduce__(self): labels_by_action = {} @@ -96,7 +103,7 @@ cdef class TransitionSystem: if self.n_moves >= self._size: self._size *= 2 self.c = self.mem.realloc(self.c, self._size * sizeof(self.c[0])) - + self.c[self.n_moves] = self.init_transition(self.n_moves, action, label) self.n_moves += 1 return 1 diff --git a/spacy/tagger.pyx b/spacy/tagger.pyx index 7903c44fb..1f6b587c5 100644 --- a/spacy/tagger.pyx +++ b/spacy/tagger.pyx @@ -13,13 +13,13 @@ from thinc.linalg cimport VecVec from .typedefs cimport attr_t from .tokens.doc cimport Doc from .attrs cimport TAG -from .parts_of_speech cimport NO_TAG, ADJ, ADV, ADP, CONJ, DET, NOUN, NUM, PRON +from .parts_of_speech cimport NO_TAG, ADJ, ADV, ADP, CCONJ, DET, NOUN, NUM, PRON from .parts_of_speech cimport VERB, X, PUNCT, EOL, SPACE from .gold cimport GoldParse from .attrs cimport * - + cpdef enum: P2_orth P2_cluster @@ -70,8 +70,16 @@ cpdef enum: cdef class TaggerModel(AveragedPerceptron): + def update(self, Example eg): + self.time += 1 + guess = eg.guess + best = VecVec.arg_max_if_zero(eg.c.scores, eg.c.costs, eg.c.nr_class) + if guess != best: + for feat in eg.c.features[:eg.c.nr_feat]: + self.update_weight(feat.key, best, -feat.value) + self.update_weight(feat.key, guess, feat.value) + cdef void set_featuresC(self, ExampleC* eg, const TokenC* tokens, int i) except *: - _fill_from_token(&eg.atoms[P2_orth], &tokens[i-2]) _fill_from_token(&eg.atoms[P1_orth], &tokens[i-1]) _fill_from_token(&eg.atoms[W_orth], &tokens[i]) @@ -149,9 +157,11 @@ cdef class Tagger: The newly constructed object. """ if model is None: - model = TaggerModel(cfg.get('features', self.feature_templates)) + model = TaggerModel(cfg.get('features', self.feature_templates), + L1=0.0) self.vocab = vocab self.model = model + self.model.l1_penalty = 0.0 # TODO: Move this to tag map self.freqs = {TAG: defaultdict(int)} for tag in self.tag_names: @@ -191,7 +201,7 @@ cdef class Tagger: nr_class=self.vocab.morphology.n_tags, nr_feat=self.model.nr_feat) for i in range(tokens.length): - if tokens.c[i].pos == 0: + if tokens.c[i].pos == 0: self.model.set_featuresC(&eg.c, tokens.c, i) self.model.set_scoresC(eg.c.scores, eg.c.features, eg.c.nr_feat) @@ -217,8 +227,8 @@ cdef class Tagger: for doc in stream: self(doc) yield doc - - def update(self, Doc tokens, GoldParse gold): + + def update(self, Doc tokens, GoldParse gold, itn=0): """Update the statistical model, with tags supplied for the given document. Arguments: @@ -248,10 +258,10 @@ cdef class Tagger: eg.costs = [ 1 if golds[i] not in (c, -1) else 0 for c in xrange(eg.nr_class) ] self.model.set_scoresC(eg.c.scores, eg.c.features, eg.c.nr_feat) - self.model.updateC(&eg.c) + self.model.update(eg) self.vocab.morphology.assign_tag_id(&tokens.c[i], eg.guess) - + correct += eg.cost == 0 self.freqs[TAG][tokens.c[i].tag] += 1 eg.fill_scores(0, eg.c.nr_class) diff --git a/spacy/tests/README.md b/spacy/tests/README.md new file mode 100644 index 000000000..489335153 --- /dev/null +++ b/spacy/tests/README.md @@ -0,0 +1,169 @@ + + +# spaCy tests + +spaCy uses the [pytest](http://doc.pytest.org/) framework for testing. For more info on this, see the [pytest documentation](http://docs.pytest.org/en/latest/contents.html). + +Tests for spaCy modules and classes live in their own directories of the same name. For example, tests for the `Tokenizer` can be found in [`/tests/tokenizer`](tokenizer). All test modules (i.e. directories) also need to be listed in spaCy's [`setup.py`](../setup.py). To be interpreted and run, all test files and test functions need to be prefixed with `test_`. + + +## Table of contents + +1. [Running the tests](#running-the-tests) +2. [Dos and don'ts](#dos-and-donts) +3. [Parameters](#parameters) +4. [Fixtures](#fixtures) +5. [Helpers and utilities](#helpers-and-utilities) +6. [Contributing to the tests](#contributing-to-the-tests) + + +## Running the tests + +```bash +py.test spacy # run basic tests +py.test spacy --models # run basic and model tests +py.test spacy --slow # run basic and slow tests +py.test spacy --models --slow # run all tests +``` + +To show print statements, run the tests with `py.test -s`. To abort after the first failure, run them with `py.test -x`. + + +## Dos and don'ts + +To keep the behaviour of the tests consistent and predictable, we try to follow a few basic conventions: + +* **Test names** should follow a pattern of `test_[module]_[tested behaviour]`. For example: `test_tokenizer_keeps_email` or `test_spans_override_sentiment`. +* If you're testing for a bug reported in a specific issue, always create a **regression test**. Regression tests should be named `test_issue[ISSUE NUMBER]` and live in the [`regression`](regression) directory. +* Only use `@pytest.mark.xfail` for tests that **should pass, but currently fail**. To test for desired negative behaviour, use `assert not` in your test. +* Very **extensive tests** that take a long time to run should be marked with `@pytest.mark.slow`. If your slow test is testing important behaviour, consider adding an additional simpler version. +* Tests that require **loading the models** should be marked with `@pytest.mark.models`. +* Before requiring the models, always make sure there is no other way to test the particular behaviour. In a lot of cases, it's sufficient to simply create a `Doc` object manually. See the section on [helpers and utility functions](#helpers-and-utilities) for more info on this. +* **Avoid unnecessary imports.** There should never be a need to explicitly import spaCy at the top of a file, and most components are available as [fixtures](#fixtures). You should also avoid wildcard imports (`from module import *`). +* If you're importing from spaCy, **always use relative imports**. Otherwise, you might accidentally be running the tests over a different copy of spaCy, e.g. one you have installed on your system. +* Don't forget the **unicode declarations** at the top of each file. This way, unicode strings won't have to be prefixed with `u`. +* Try to keep the tests **readable and concise**. Use clear and descriptive variable names (`doc`, `tokens` and `text` are great), keep it short and only test for one behaviour at a time. + + +## Parameters + +If the test cases can be extracted from the test, always `parametrize` them instead of hard-coding them into the test: + +```python +@pytest.mark.parametrize('text', ["google.com", "spacy.io"]) +def test_tokenizer_keep_urls(tokenizer, text): + tokens = tokenizer(text) + assert len(tokens) == 1 +``` + +This will run the test once for each `text` value. Even if you're only testing one example, it's usually best to specify it as a parameter. This will later make it easier for others to quickly add additional test cases without having to modify the test. + +You can also specify parameters as tuples to test with multiple values per test: + +```python +@pytest.mark.parametrize('text,length', [("U.S.", 1), ("us.", 2), ("(U.S.", 2)]) +``` + +To test for combinations of parameters, you can add several `parametrize` markers: + +```python +@pytest.mark.parametrize('text', ["A test sentence", "Another sentence"]) +@pytest.mark.parametrize('punct', ['.', '!', '?']) +``` + +This will run the test with all combinations of the two parameters `text` and `punct`. **Use this feature sparingly**, though, as it can easily cause unneccessary or undesired test bloat. + + +## Fixtures + +Fixtures to create instances of spaCy objects and other components should only be defined once in the global [`conftest.py`](conftest.py). We avoid having per-directory conftest files, as this can easily lead to confusion. + +These are the main fixtures that are currently available: + +| Fixture | Description | +| --- | --- | +| `tokenizer` | Creates **all available** language tokenizers and runs the test for **each of them**. | +| `en_tokenizer` | Creates an English `Tokenizer` object. | +| `de_tokenizer` | Creates a German `Tokenizer` object. | +| `hu_tokenizer` | Creates a Hungarian `Tokenizer` object. | +| `en_vocab` | Creates an English `Vocab` object. | +| `en_entityrecognizer` | Creates an English `EntityRecognizer` object. | +| `lemmatizer` | Creates a `Lemmatizer` object from the installed language data (`None` if no data is found). +| `EN` | Creates an instance of `English`. Only use for tests that require the models. | +| `DE` | Creates an instance of `German`. Only use for tests that require the models. | +| `text_file` | Creates an instance of `StringIO` to simulate reading from and writing to files. | +| `text_file_b` | Creates an instance of `ByteIO` to simulate reading from and writing to files. | + +The fixtures can be used in all tests by simply setting them as an argument, like this: + +```python +def test_module_do_something(en_tokenizer): + tokens = en_tokenizer("Some text here") +``` + +If all tests in a file require a specific configuration, or use the same complex example, it can be helpful to create a separate fixture. This fixture should be added at the top of each file. Make sure to use descriptive names for these fixtures and don't override any of the global fixtures listed above. **From looking at a test, it should immediately be clear which fixtures are used, and where they are coming from.** + + +## Helpers and utilities + +Our new test setup comes with a few handy utility functions that can be imported from [`util.py`](util.py). + + +### Constructing a `Doc` object manually with `get_doc()` + +Loading the models is expensive and not necessary if you're not actually testing the model performance. If all you need ia a `Doc` object with annotations like heads, POS tags or the dependency parse, you can use `get_doc()` to construct it manually. + +```python +def test_doc_token_api_strings(en_tokenizer): + text = "Give it back! He pleaded." + pos = ['VERB', 'PRON', 'PART', 'PUNCT', 'PRON', 'VERB', 'PUNCT'] + heads = [0, -1, -2, -3, 1, 0, -1] + deps = ['ROOT', 'dobj', 'prt', 'punct', 'nsubj', 'ROOT', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], pos=pos, heads=heads, deps=deps) + assert doc[0].text == 'Give' + assert doc[0].lower_ == 'give' + assert doc[0].pos_ == 'VERB' + assert doc[0].dep_ == 'ROOT' +``` + +You can construct a `Doc` with the following arguments: + +| Argument | Description | +| --- | --- | +| `vocab` | `Vocab` instance to use. If you're tokenizing before creating a `Doc`, make sure to use the tokenizer's vocab. Otherwise, you can also use the `en_vocab` fixture. **(required)** | +| `words` | List of words, for example `[t.text for t in tokens]`. **(required)** | +| `heads` | List of heads as integers. | +| `pos` | List of POS tags as text values. | +| `tag` | List of tag names as text values. | +| `dep` | List of dependencies as text values. | +| `ents` | List of entity tuples with `ent_id`, `label`, `start`, `end` (for example `('Stewart Lee', 'PERSON', 0, 2)`). The `label` will be looked up in `vocab.strings[label]`. | + +Here's how to quickly get these values from within spaCy: + +```python +doc = nlp(u'Some text here') +print [token.head.i-token.i for token in doc] +print [token.tag_ for token in doc] +print [token.pos_ for token in doc] +print [token.dep_ for token in doc] +``` + +**Note:** There's currently no way of setting the serializer data for the parser without loading the models. If this is relevant to your test, constructing the `Doc` via `get_doc()` won't work. + + +### Other utilities + +| Name | Description | +| --- | --- | +| `apply_transition_sequence(parser, doc, sequence)` | Perform a series of pre-specified transitions, to put the parser in a desired state. | +| `add_vecs_to_vocab(vocab, vectors)` | Add list of vector tuples (`[("text", [1, 2, 3])]`) to given vocab. All vectors need to have the same length. | +| `get_cosine(vec1, vec2)` | Get cosine for two given vectors. | +| `assert_docs_equal(doc1, doc2)` | Compare two `Doc` objects and `assert` that they're equal. Tests for tokens, tags, dependencies and entities. | + +## Contributing to the tests + +There's still a long way to go to finally reach **100% test coverage** – and we'd appreciate your help! 🙌 You can open an issue on our [issue tracker](https://github.com/explosion/spaCy/issues) and label it `tests`, or make a [pull request](https://github.com/explosion/spaCy/pulls) to this repository. + +📖 **For more information on contributing to spaCy in general, check out our [contribution guidelines](https://github.com/explosion/spaCy/blob/master/CONTRIBUTING.md).** diff --git a/spacy/tests/bn/__init__.py b/spacy/tests/bn/__init__.py new file mode 100644 index 000000000..57d631c3f --- /dev/null +++ b/spacy/tests/bn/__init__.py @@ -0,0 +1 @@ +# coding: utf-8 diff --git a/spacy/tests/bn/test_tokenizer.py b/spacy/tests/bn/test_tokenizer.py new file mode 100644 index 000000000..b82aa7525 --- /dev/null +++ b/spacy/tests/bn/test_tokenizer.py @@ -0,0 +1,40 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + +TESTCASES = [] + +PUNCTUATION_TESTS = [ + (u'আমি বাংলায় গান গাই!', [u'আমি', u'বাংলায়', u'গান', u'গাই', u'!']), + (u'আমি বাংলায় কথা কই।', [u'আমি', u'বাংলায়', u'কথা', u'কই', u'।']), + (u'বসুন্ধরা জনসম্মুখে দোষ স্বীকার করলো না?', [u'বসুন্ধরা', u'জনসম্মুখে', u'দোষ', u'স্বীকার', u'করলো', u'না', u'?']), + (u'টাকা থাকলে কি না হয়!', [u'টাকা', u'থাকলে', u'কি', u'না', u'হয়', u'!']), +] + +ABBREVIATIONS = [ + (u'ডঃ খালেদ বললেন ঢাকায় ৩৫ ডিগ্রি সে.।', [u'ডঃ', u'খালেদ', u'বললেন', u'ঢাকায়', u'৩৫', u'ডিগ্রি', u'সে.', u'।']) +] + +TESTCASES.extend(PUNCTUATION_TESTS) +TESTCASES.extend(ABBREVIATIONS) + + +@pytest.mark.parametrize('text,expected_tokens', TESTCASES) +def test_tokenizer_handles_testcases(bn_tokenizer, text, expected_tokens): + tokens = bn_tokenizer(text) + token_list = [token.text for token in tokens if not token.is_space] + assert expected_tokens == token_list + + +def test_tokenizer_handles_long_text(bn_tokenizer): + text = u"""নর্থ সাউথ বিশ্ববিদ্যালয়ে সারাবছর কোন না কোন বিষয়ে গবেষণা চলতেই থাকে। \ +অভিজ্ঞ ফ্যাকাল্টি মেম্বারগণ প্রায়ই শিক্ষার্থীদের নিয়ে বিভিন্ন গবেষণা প্রকল্পে কাজ করেন, \ +যার মধ্যে রয়েছে রোবট থেকে মেশিন লার্নিং সিস্টেম ও আর্টিফিশিয়াল ইন্টেলিজেন্স। \ +এসকল প্রকল্পে কাজ করার মাধ্যমে সংশ্লিষ্ট ক্ষেত্রে যথেষ্ঠ পরিমাণ স্পেশালাইজড হওয়া সম্ভব। \ +আর গবেষণার কাজ তোমার ক্যারিয়ারকে ঠেলে নিয়ে যাবে অনেকখানি! \ +কন্টেস্ট প্রোগ্রামার হও, গবেষক কিংবা ডেভেলপার - নর্থ সাউথ ইউনিভার্সিটিতে তোমার প্রতিভা বিকাশের সুযোগ রয়েছেই। \ +নর্থ সাউথের অসাধারণ কমিউনিটিতে তোমাকে সাদর আমন্ত্রণ।""" + + tokens = bn_tokenizer(text) + assert len(tokens) == 84 diff --git a/spacy/tests/conftest.py b/spacy/tests/conftest.py index c339f66ef..850eaa4c2 100644 --- a/spacy/tests/conftest.py +++ b/spacy/tests/conftest.py @@ -1,14 +1,114 @@ -import pytest -import os +# coding: utf-8 +from __future__ import unicode_literals from ..en import English from ..de import German +from ..es import Spanish +from ..it import Italian +from ..fr import French +from ..pt import Portuguese +from ..nl import Dutch +from ..sv import Swedish +from ..hu import Hungarian +from ..fi import Finnish +from ..bn import Bengali +from ..tokens import Doc +from ..strings import StringStore +from ..lemmatizer import Lemmatizer +from ..attrs import ORTH, TAG, HEAD, DEP + +from io import StringIO, BytesIO +from pathlib import Path +import os +import pytest +LANGUAGES = [English, German, Spanish, Italian, French, Portuguese, Dutch, + Swedish, Hungarian, Finnish, Bengali] + + +@pytest.fixture(params=LANGUAGES) +def tokenizer(request): + lang = request.param + return lang.Defaults.create_tokenizer() + + +@pytest.fixture +def en_tokenizer(): + return English.Defaults.create_tokenizer() + + +@pytest.fixture +def en_vocab(): + return English.Defaults.create_vocab() + + +@pytest.fixture +def en_parser(): + return English.Defaults.create_parser() + + +@pytest.fixture +def de_tokenizer(): + return German.Defaults.create_tokenizer() + + +@pytest.fixture(scope='module') +def fr_tokenizer(): + return French.Defaults.create_tokenizer() + + +@pytest.fixture +def hu_tokenizer(): + return Hungarian.Defaults.create_tokenizer() + + +@pytest.fixture +def fi_tokenizer(): + return Finnish.Defaults.create_tokenizer() + + +@pytest.fixture +def sv_tokenizer(): + return Swedish.Defaults.create_tokenizer() + + +@pytest.fixture +def bn_tokenizer(): + return Bengali.Defaults.create_tokenizer() + + +@pytest.fixture +def stringstore(): + return StringStore() + + +@pytest.fixture +def en_entityrecognizer(): + return English.Defaults.create_entity() + + +@pytest.fixture +def lemmatizer(): + return English.Defaults.create_lemmatizer() + + +@pytest.fixture +def text_file(): + return StringIO() + +@pytest.fixture +def text_file_b(): + return BytesIO() + + +# only used for tests that require loading the models +# in all other cases, use specific instances @pytest.fixture(scope="session") def EN(): return English() + @pytest.fixture(scope="session") def DE(): return German() diff --git a/spacy/tests/de/conftest.py b/spacy/tests/de/conftest.py deleted file mode 100644 index c6b8be26e..000000000 --- a/spacy/tests/de/conftest.py +++ /dev/null @@ -1,11 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -import pytest - -from ...de import German - - -@pytest.fixture -def de_tokenizer(): - return German.Defaults.create_tokenizer() diff --git a/spacy/tests/de/tokenizer/test_exceptions.py b/spacy/tests/de/test_exceptions.py similarity index 100% rename from spacy/tests/de/tokenizer/test_exceptions.py rename to spacy/tests/de/test_exceptions.py diff --git a/spacy/tests/de/tokenizer/test_prefix_suffix_infix.py b/spacy/tests/de/test_prefix_suffix_infix.py similarity index 100% rename from spacy/tests/de/tokenizer/test_prefix_suffix_infix.py rename to spacy/tests/de/test_prefix_suffix_infix.py diff --git a/spacy/tests/de/tokenizer/test_text.py b/spacy/tests/de/test_text.py similarity index 100% rename from spacy/tests/de/tokenizer/test_text.py rename to spacy/tests/de/test_text.py diff --git a/examples/sentiment/__init__.py b/spacy/tests/doc/__init__.py similarity index 100% rename from examples/sentiment/__init__.py rename to spacy/tests/doc/__init__.py diff --git a/spacy/tests/doc/test_add_entities.py b/spacy/tests/doc/test_add_entities.py new file mode 100644 index 000000000..cc74aa0ae --- /dev/null +++ b/spacy/tests/doc/test_add_entities.py @@ -0,0 +1,23 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...pipeline import EntityRecognizer +from ..util import get_doc + +import pytest + + +def test_doc_add_entities_set_ents_iob(en_vocab): + text = ["This", "is", "a", "lion"] + doc = get_doc(en_vocab, text) + ner = EntityRecognizer(en_vocab, features=[(2,), (3,)]) + ner(doc) + + assert len(list(doc.ents)) == 0 + assert [w.ent_iob_ for w in doc] == (['O'] * len(doc)) + + doc.ents = [(doc.vocab.strings['ANIMAL'], 3, 4)] + assert [w.ent_iob_ for w in doc] == ['O', 'O', 'O', 'B'] + + doc.ents = [(doc.vocab.strings['WORD'], 0, 2)] + assert [w.ent_iob_ for w in doc] == ['B', 'I', 'O', 'O'] diff --git a/spacy/tests/doc/test_array.py b/spacy/tests/doc/test_array.py new file mode 100644 index 000000000..dd87aa763 --- /dev/null +++ b/spacy/tests/doc/test_array.py @@ -0,0 +1,42 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...attrs import ORTH, SHAPE, POS, DEP +from ..util import get_doc + +import pytest + + +def test_doc_array_attr_of_token(en_tokenizer, en_vocab): + text = "An example sentence" + tokens = en_tokenizer(text) + example = tokens.vocab["example"] + assert example.orth != example.shape + feats_array = tokens.to_array((ORTH, SHAPE)) + assert feats_array[0][0] != feats_array[0][1] + assert feats_array[0][0] != feats_array[0][1] + + +def test_doc_array_tag(en_tokenizer): + text = "A nice sentence." + pos = ['DET', 'ADJ', 'NOUN', 'PUNCT'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], pos=pos) + assert doc[0].pos != doc[1].pos != doc[2].pos != doc[3].pos + feats_array = doc.to_array((ORTH, POS)) + assert feats_array[0][1] == doc[0].pos + assert feats_array[1][1] == doc[1].pos + assert feats_array[2][1] == doc[2].pos + assert feats_array[3][1] == doc[3].pos + + +def test_doc_array_dep(en_tokenizer): + text = "A nice sentence." + deps = ['det', 'amod', 'ROOT', 'punct'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], deps=deps) + feats_array = doc.to_array((ORTH, DEP)) + assert feats_array[0][1] == doc[0].dep + assert feats_array[1][1] == doc[1].dep + assert feats_array[2][1] == doc[2].dep + assert feats_array[3][1] == doc[3].dep diff --git a/spacy/tests/tokens/test_tokens_api.py b/spacy/tests/doc/test_doc_api.py similarity index 51% rename from spacy/tests/tokens/test_tokens_api.py rename to spacy/tests/doc/test_doc_api.py index c9b57e689..619ec6707 100644 --- a/spacy/tests/tokens/test_tokens_api.py +++ b/spacy/tests/doc/test_doc_api.py @@ -1,39 +1,37 @@ +# coding: utf-8 from __future__ import unicode_literals -from spacy.tokens import Doc -from spacy.en import English -import numpy -from spacy.attrs import HEAD -from ...vocab import Vocab -from ...tokens.doc import Doc +from ..util import get_doc import pytest +import numpy -def test_tokens_compare_by_string_position(): - vocab = Vocab() - doc = Doc(vocab, [u'one', u'two', u'three']) + +@pytest.mark.parametrize('text', [["one", "two", "three"]]) +def test_doc_api_compare_by_string_position(en_vocab, text): + doc = get_doc(en_vocab, text) # Get the tokens in this order, so their ID ordering doesn't match the idx - three = doc[-1] - two = doc[-2] - one = doc[-1] - one, two, three = doc - assert one < two < three - assert not one > two - assert two > one - assert two <= three - assert three >= one + token3 = doc[-1] + token2 = doc[-2] + token1 = doc[-1] + token1, token2, token3 = doc + assert token1 < token2 < token3 + assert not token1 > token2 + assert token2 > token1 + assert token2 <= token3 + assert token3 >= token1 -@pytest.mark.models -def test_getitem(EN): - tokens = EN(u'Give it back! He pleaded.') - assert tokens[0].orth_ == 'Give' - assert tokens[-1].orth_ == '.' +def test_doc_api_getitem(en_tokenizer): + text = "Give it back! He pleaded." + tokens = en_tokenizer(text) + assert tokens[0].text == 'Give' + assert tokens[-1].text == '.' with pytest.raises(IndexError): tokens[len(tokens)] def to_str(span): - return '/'.join(token.orth_ for token in span) + return '/'.join(token.text for token in span) span = tokens[1:1] assert not to_str(span) @@ -99,70 +97,56 @@ def test_getitem(EN): assert subspan.start == subspan.end == 4 and not to_str(subspan) -@pytest.mark.models -def test_serialize(EN): - tokens = EN(u'Give it back! He pleaded.') - packed = tokens.to_bytes() - new_tokens = Doc(EN.vocab).from_bytes(packed) +@pytest.mark.parametrize('text', ["Give it back! He pleaded.", + " Give it back! He pleaded. "]) +def test_doc_api_serialize(en_tokenizer, text): + tokens = en_tokenizer(text) + new_tokens = get_doc(tokens.vocab).from_bytes(tokens.to_bytes()) assert tokens.string == new_tokens.string - assert [t.orth_ for t in tokens] == [t.orth_ for t in new_tokens] + assert [t.text for t in tokens] == [t.text for t in new_tokens] assert [t.orth for t in tokens] == [t.orth for t in new_tokens] -@pytest.mark.models -def test_serialize_whitespace(EN): - tokens = EN(u' Give it back! He pleaded. ') - packed = tokens.to_bytes() - new_tokens = Doc(EN.vocab).from_bytes(packed) - assert tokens.string == new_tokens.string - assert [t.orth_ for t in tokens] == [t.orth_ for t in new_tokens] - assert [t.orth for t in tokens] == [t.orth for t in new_tokens] - - -def test_set_ents(EN): - tokens = EN.tokenizer(u'I use goggle chrone to surf the web') +def test_doc_api_set_ents(en_tokenizer): + text = "I use goggle chrone to surf the web" + tokens = en_tokenizer(text) assert len(tokens.ents) == 0 - tokens.ents = [(EN.vocab.strings['PRODUCT'], 2, 4)] + tokens.ents = [(tokens.vocab.strings['PRODUCT'], 2, 4)] assert len(list(tokens.ents)) == 1 assert [t.ent_iob for t in tokens] == [0, 0, 3, 1, 0, 0, 0, 0] - ent = tokens.ents[0] - assert ent.label_ == 'PRODUCT' - assert ent.start == 2 - assert ent.end == 4 + assert tokens.ents[0].label_ == 'PRODUCT' + assert tokens.ents[0].start == 2 + assert tokens.ents[0].end == 4 -def test_merge(EN): - doc = EN('WKRO played songs by the beach boys all night') +def test_doc_api_merge(en_tokenizer): + text = "WKRO played songs by the beach boys all night" - assert len(doc) == 9 # merge 'The Beach Boys' + doc = en_tokenizer(text) + assert len(doc) == 9 doc.merge(doc[4].idx, doc[6].idx + len(doc[6]), 'NAMED', 'LEMMA', 'TYPE') assert len(doc) == 7 - assert doc[4].text == 'the beach boys' assert doc[4].text_with_ws == 'the beach boys ' assert doc[4].tag_ == 'NAMED' - -def test_merge_end_string(EN): - doc = EN('WKRO played songs by the beach boys all night') - + # merge 'all night' + doc = en_tokenizer(text) assert len(doc) == 9 - # merge 'The Beach Boys' doc.merge(doc[7].idx, doc[8].idx + len(doc[8]), 'NAMED', 'LEMMA', 'TYPE') assert len(doc) == 8 - assert doc[7].text == 'all night' assert doc[7].text_with_ws == 'all night' -@pytest.mark.models -def test_merge_children(EN): +def test_doc_api_merge_children(en_tokenizer): """Test that attachments work correctly after merging.""" - doc = EN('WKRO played songs by the beach boys all night') - # merge 'The Beach Boys' + text = "WKRO played songs by the beach boys all night" + doc = en_tokenizer(text) + assert len(doc) == 9 doc.merge(doc[4].idx, doc[6].idx + len(doc[6]), 'NAMED', 'LEMMA', 'TYPE') - + for word in doc: if word.i < word.head.i: assert word in list(word.head.lefts) @@ -170,28 +154,31 @@ def test_merge_children(EN): assert word in list(word.head.rights) -def test_merge_hang(): - text = 'through North and South Carolina' - EN = English(parser=False) - doc = EN(text, tag=True) - heads = numpy.asarray([[0, 3, -1, -2, -4]], dtype='int32') - doc.from_array([HEAD], heads.T) +def test_doc_api_merge_hang(en_tokenizer): + text = "through North and South Carolina" + doc = en_tokenizer(text) doc.merge(18, 32, '', '', 'ORG') doc.merge(8, 32, '', '', 'ORG') -def test_sents_empty_string(EN): - doc = EN(u'') +def test_doc_api_sents_empty_string(en_tokenizer): + doc = en_tokenizer("") doc.is_parsed = True sents = list(doc.sents) assert len(sents) == 0 -@pytest.mark.models -def test_runtime_error(EN): +def test_doc_api_runtime_error(en_tokenizer): # Example that caused run-time error while parsing Reddit - text = u'67% of black households are single parent \n\n72% of all black babies born out of wedlock \n\n50% of all black kids don\u2019t finish high school' - doc = EN(text) + text = "67% of black households are single parent \n\n72% of all black babies born out of wedlock \n\n50% of all black kids don\u2019t finish high school" + deps = ['nsubj', 'prep', 'amod', 'pobj', 'ROOT', 'amod', 'attr', '', + 'nummod', 'prep', 'det', 'amod', 'pobj', 'acl', 'prep', 'prep', + 'pobj', '', 'nummod', 'prep', 'det', 'amod', 'pobj', 'aux', 'neg', + 'ROOT', 'amod', 'dobj'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], deps=deps) + nps = [] for np in doc.noun_chunks: while len(np) > 1 and np[0].dep_ not in ('advmod', 'amod', 'compound'): @@ -199,26 +186,32 @@ def test_runtime_error(EN): if len(np) > 1: nps.append((np.start_char, np.end_char, np.root.tag_, np.text, np.root.ent_type_)) for np in nps: - print(np) - for word in doc: - print(word.idx, word.text, word.head.i, word.head.text) doc.merge(*np) -@pytest.mark.models -def test_right_edge(EN): - # Test for bug occurring from Unshift action, causing incorrect right edge - doc = EN(u'''I have proposed to myself, for the sake of such as live ''' - u'''under the government of the Romans, to translate those books ''' - u'''into the Greek tongue.''') - token = doc[6] - assert token.text == u'for' - subtree = [w.text for w in token.subtree] - assert subtree == [u'for' , u'the', u'sake', u'of', u'such', u'as', u'live', u'under', u'the', u'government', u'of', u'the', u'Romans', u','] - assert token.right_edge.text == u',' +def test_doc_api_right_edge(en_tokenizer): + """Test for bug occurring from Unshift action, causing incorrect right edge""" + text = "I have proposed to myself, for the sake of such as live under the government of the Romans, to translate those books into the Greek tongue." + heads = [2, 1, 0, -1, -1, -3, 15, 1, -2, -1, 1, -3, -1, -1, 1, -2, -1, 1, + -2, -7, 1, -19, 1, -2, -3, 2, 1, -3, -26] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert doc[6].text == 'for' + subtree = [w.text for w in doc[6].subtree] + assert subtree == ['for', 'the', 'sake', 'of', 'such', 'as', + 'live', 'under', 'the', 'government', 'of', 'the', 'Romans', ','] + assert doc[6].right_edge.text == ',' -@pytest.mark.vectors -def test_has_vector(EN): - doc = EN(u'''apple orange pear''') +@pytest.mark.parametrize('text,vectors', [ + ("apple orange pear", ["apple -1 -1 -1", "orange -1 -1 0", "pear -1 0 -1"]) +]) +def test_doc_api_has_vector(en_tokenizer, text_file, text, vectors): + text_file.write('\n'.join(vectors)) + text_file.seek(0) + vector_length = en_tokenizer.vocab.load_vectors(text_file) + assert vector_length == 3 + + doc = en_tokenizer(text) assert doc.has_vector diff --git a/spacy/tests/doc/test_noun_chunks.py b/spacy/tests/doc/test_noun_chunks.py new file mode 100644 index 000000000..114a0b0ae --- /dev/null +++ b/spacy/tests/doc/test_noun_chunks.py @@ -0,0 +1,31 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...attrs import HEAD, DEP +from ...symbols import nsubj, dobj, amod, nmod, conj, cc, root +from ...syntax.iterators import english_noun_chunks +from ..util import get_doc + +import numpy + + +def test_doc_noun_chunks_not_nested(en_tokenizer): + text = "Peter has chronic command and control issues" + heads = [1, 0, 4, 3, -1, -2, -5] + deps = ['nsubj', 'ROOT', 'amod', 'nmod', 'cc', 'conj', 'dobj'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) + + tokens.from_array( + [HEAD, DEP], + numpy.asarray([[1, nsubj], [0, root], [4, amod], [3, nmod], [-1, cc], + [-2, conj], [-5, dobj]], dtype='int32')) + tokens.noun_chunks_iterator = english_noun_chunks + word_occurred = {} + for chunk in tokens.noun_chunks: + for word in chunk: + word_occurred.setdefault(word.text, 0) + word_occurred[word.text] += 1 + for word, freq in word_occurred.items(): + assert freq == 1, (word, [chunk.text for chunk in tokens.noun_chunks]) diff --git a/spacy/tests/doc/test_token_api.py b/spacy/tests/doc/test_token_api.py new file mode 100644 index 000000000..959ff017b --- /dev/null +++ b/spacy/tests/doc/test_token_api.py @@ -0,0 +1,157 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...attrs import IS_ALPHA, IS_DIGIT, IS_LOWER, IS_PUNCT, IS_TITLE, IS_STOP +from ..util import get_doc + +import pytest +import numpy + + +def test_doc_token_api_strings(en_tokenizer): + text = "Give it back! He pleaded." + pos = ['VERB', 'PRON', 'PART', 'PUNCT', 'PRON', 'VERB', 'PUNCT'] + heads = [0, -1, -2, -3, 1, 0, -1] + deps = ['ROOT', 'dobj', 'prt', 'punct', 'nsubj', 'ROOT', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], pos=pos, heads=heads, deps=deps) + assert doc[0].orth_ == 'Give' + assert doc[0].text == 'Give' + assert doc[0].text_with_ws == 'Give ' + assert doc[0].lower_ == 'give' + assert doc[0].shape_ == 'Xxxx' + assert doc[0].prefix_ == 'G' + assert doc[0].suffix_ == 'ive' + assert doc[0].pos_ == 'VERB' + assert doc[0].dep_ == 'ROOT' + + +def test_doc_token_api_flags(en_tokenizer): + text = "Give it back! He pleaded." + tokens = en_tokenizer(text) + assert tokens[0].check_flag(IS_ALPHA) + assert not tokens[0].check_flag(IS_DIGIT) + assert tokens[0].check_flag(IS_TITLE) + assert tokens[1].check_flag(IS_LOWER) + assert tokens[3].check_flag(IS_PUNCT) + assert tokens[2].check_flag(IS_STOP) + assert not tokens[5].check_flag(IS_STOP) + # TODO: Test more of these, esp. if a bug is found + + +@pytest.mark.parametrize('text', ["Give it back! He pleaded."]) +def test_doc_token_api_prob_inherited_from_vocab(en_tokenizer, text): + word = text.split()[0] + en_tokenizer.vocab[word].prob = -1 + tokens = en_tokenizer(text) + assert tokens[0].prob != 0 + + +@pytest.mark.parametrize('text', ["one two"]) +def test_doc_token_api_str_builtin(en_tokenizer, text): + tokens = en_tokenizer(text) + assert str(tokens[0]) == text.split(' ')[0] + assert str(tokens[1]) == text.split(' ')[1] + + +def test_doc_token_api_is_properties(en_vocab): + text = ["Hi", ",", "my", "email", "is", "test@me.com"] + doc = get_doc(en_vocab, text) + assert doc[0].is_title + assert doc[0].is_alpha + assert not doc[0].is_digit + assert doc[1].is_punct + assert doc[3].is_ascii + assert not doc[3].like_url + assert doc[4].is_lower + assert doc[5].like_email + + +@pytest.mark.parametrize('text,vectors', [ + ("apples oranges ldskbjls", ["apples -1 -1 -1", "oranges -1 -1 0"]) +]) +def test_doc_token_api_vectors(en_tokenizer, text_file, text, vectors): + text_file.write('\n'.join(vectors)) + text_file.seek(0) + vector_length = en_tokenizer.vocab.load_vectors(text_file) + assert vector_length == 3 + + tokens = en_tokenizer(text) + assert tokens[0].has_vector + assert tokens[1].has_vector + assert not tokens[2].has_vector + assert tokens[0].similarity(tokens[1]) > tokens[0].similarity(tokens[2]) + assert tokens[0].similarity(tokens[1]) == tokens[1].similarity(tokens[0]) + assert sum(tokens[0].vector) != sum(tokens[1].vector) + assert numpy.isclose( + tokens[0].vector_norm, + numpy.sqrt(numpy.dot(tokens[0].vector, tokens[0].vector))) + + +def test_doc_token_api_ancestors(en_tokenizer): + # the structure of this sentence depends on the English annotation scheme + text = "Yesterday I saw a dog that barked loudly." + heads = [2, 1, 0, 1, -2, 1, -2, -1, -6] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert [t.text for t in doc[6].ancestors] == ["dog", "saw"] + assert [t.text for t in doc[1].ancestors] == ["saw"] + assert [t.text for t in doc[2].ancestors] == [] + + assert doc[2].is_ancestor_of(doc[7]) + assert not doc[6].is_ancestor_of(doc[2]) + + +def test_doc_token_api_head_setter(en_tokenizer): + # the structure of this sentence depends on the English annotation scheme + text = "Yesterday I saw a dog that barked loudly." + heads = [2, 1, 0, 1, -2, 1, -2, -1, -6] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + + assert doc[6].n_lefts == 1 + assert doc[6].n_rights == 1 + assert doc[6].left_edge.i == 5 + assert doc[6].right_edge.i == 7 + + assert doc[4].n_lefts == 1 + assert doc[4].n_rights == 1 + assert doc[4].left_edge.i == 3 + assert doc[4].right_edge.i == 7 + + assert doc[3].n_lefts == 0 + assert doc[3].n_rights == 0 + assert doc[3].left_edge.i == 3 + assert doc[3].right_edge.i == 3 + + assert doc[2].left_edge.i == 0 + assert doc[2].right_edge.i == 8 + + doc[6].head = doc[3] + + assert doc[6].n_lefts == 1 + assert doc[6].n_rights == 1 + assert doc[6].left_edge.i == 5 + assert doc[6].right_edge.i == 7 + + assert doc[3].n_lefts == 0 + assert doc[3].n_rights == 1 + assert doc[3].left_edge.i == 3 + assert doc[3].right_edge.i == 7 + + assert doc[4].n_lefts == 1 + assert doc[4].n_rights == 0 + assert doc[4].left_edge.i == 3 + assert doc[4].right_edge.i == 7 + + assert doc[2].left_edge.i == 0 + assert doc[2].right_edge.i == 8 + + doc[0].head = doc[5] + + assert doc[5].left_edge.i == 0 + assert doc[6].left_edge.i == 0 + assert doc[3].left_edge.i == 0 + assert doc[4].left_edge.i == 0 + assert doc[2].left_edge.i == 0 diff --git a/spacy/tests/en/conftest.py b/spacy/tests/en/conftest.py deleted file mode 100644 index 3a3516c41..000000000 --- a/spacy/tests/en/conftest.py +++ /dev/null @@ -1,11 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -import pytest - -from ...en import English - - -@pytest.fixture -def en_tokenizer(): - return English.Defaults.create_tokenizer() diff --git a/spacy/tests/en/tokenizer/test_contractions.py b/spacy/tests/en/test_contractions.py similarity index 100% rename from spacy/tests/en/tokenizer/test_contractions.py rename to spacy/tests/en/test_contractions.py diff --git a/spacy/tests/en/tokenizer/test_exceptions.py b/spacy/tests/en/test_exceptions.py similarity index 68% rename from spacy/tests/en/tokenizer/test_exceptions.py rename to spacy/tests/en/test_exceptions.py index ac7ed452f..03e738a34 100644 --- a/spacy/tests/en/tokenizer/test_exceptions.py +++ b/spacy/tests/en/test_exceptions.py @@ -18,3 +18,10 @@ def test_tokenizer_handles_exc_in_text(en_tokenizer): tokens = en_tokenizer(text) assert len(tokens) == 6 assert tokens[3].text == "i.e." + + +@pytest.mark.parametrize('text', ["1am", "12a.m.", "11p.m.", "4pm"]) +def test_tokenizer_handles_times(en_tokenizer, text): + tokens = en_tokenizer(text) + assert len(tokens) == 2 + assert tokens[1].lemma_ in ["a.m.", "p.m."] diff --git a/spacy/tests/en/tokenizer/test_indices.py b/spacy/tests/en/test_indices.py similarity index 100% rename from spacy/tests/en/tokenizer/test_indices.py rename to spacy/tests/en/test_indices.py diff --git a/spacy/tests/en/tokenizer/test_prefix_suffix_infix.py b/spacy/tests/en/test_prefix_suffix_infix.py similarity index 100% rename from spacy/tests/en/tokenizer/test_prefix_suffix_infix.py rename to spacy/tests/en/test_prefix_suffix_infix.py diff --git a/spacy/tests/en/tokenizer/test_punct.py b/spacy/tests/en/test_punct.py similarity index 86% rename from spacy/tests/en/tokenizer/test_punct.py rename to spacy/tests/en/test_punct.py index b6ae9224d..06c3350c4 100644 --- a/spacy/tests/en/tokenizer/test_punct.py +++ b/spacy/tests/en/test_punct.py @@ -6,13 +6,10 @@ from __future__ import unicode_literals import pytest -from ....util import compile_prefix_regex -from ....language_data import TOKENIZER_PREFIXES +from ...util import compile_prefix_regex +from ...language_data import TOKENIZER_PREFIXES - -en_search_prefixes = compile_prefix_regex(TOKENIZER_PREFIXES).search - PUNCT_OPEN = ['(', '[', '{', '*'] PUNCT_CLOSE = [')', ']', '}', '*'] PUNCT_PAIRED = [('(', ')'), ('[', ']'), ('{', '}'), ('*', '*')] @@ -99,7 +96,8 @@ def test_tokenizer_splits_double_end_quote(en_tokenizer, text): @pytest.mark.parametrize('punct_open,punct_close', PUNCT_PAIRED) @pytest.mark.parametrize('text', ["Hello"]) -def test_tokenizer_splits_open_close_punct(en_tokenizer, punct_open, punct_close, text): +def test_tokenizer_splits_open_close_punct(en_tokenizer, punct_open, + punct_close, text): tokens = en_tokenizer(punct_open + text + punct_close) assert len(tokens) == 3 assert tokens[0].text == punct_open @@ -108,20 +106,22 @@ def test_tokenizer_splits_open_close_punct(en_tokenizer, punct_open, punct_close @pytest.mark.parametrize('punct_open,punct_close', PUNCT_PAIRED) -@pytest.mark.parametrize('punct_open_add,punct_close_add', [("`", "'")]) +@pytest.mark.parametrize('punct_open2,punct_close2', [("`", "'")]) @pytest.mark.parametrize('text', ["Hello"]) -def test_two_different(en_tokenizer, punct_open, punct_close, punct_open_add, punct_close_add, text): - tokens = en_tokenizer(punct_open_add + punct_open + text + punct_close + punct_close_add) +def test_tokenizer_two_diff_punct(en_tokenizer, punct_open, punct_close, + punct_open2, punct_close2, text): + tokens = en_tokenizer(punct_open2 + punct_open + text + punct_close + punct_close2) assert len(tokens) == 5 - assert tokens[0].text == punct_open_add + assert tokens[0].text == punct_open2 assert tokens[1].text == punct_open assert tokens[2].text == text assert tokens[3].text == punct_close - assert tokens[4].text == punct_close_add + assert tokens[4].text == punct_close2 @pytest.mark.parametrize('text,punct', [("(can't", "(")]) def test_tokenizer_splits_pre_punct_regex(text, punct): + en_search_prefixes = compile_prefix_regex(TOKENIZER_PREFIXES).search match = en_search_prefixes(text) assert match.group() == punct diff --git a/spacy/tests/en/tokenizer/test_text.py b/spacy/tests/en/test_text.py similarity index 93% rename from spacy/tests/en/tokenizer/test_text.py rename to spacy/tests/en/test_text.py index c7178fbf9..a99cfa29e 100644 --- a/spacy/tests/en/tokenizer/test_text.py +++ b/spacy/tests/en/test_text.py @@ -29,8 +29,7 @@ untimely death" of the rapier-tongued Scottish barrister and parliamentarian. ("""Yes! "I'd rather have a walk", Ms. Comble sighed. """, 15), ("""'Me too!', Mr. P. Delaware cried. """, 11), ("They ran about 10km.", 6), - # ("But then the 6,000-year ice age came...", 10) - ]) + pytest.mark.xfail(("But then the 6,000-year ice age came...", 10))]) def test_tokenizer_handles_cnts(en_tokenizer, text, length): tokens = en_tokenizer(text) assert len(tokens) == length diff --git a/spacy/tests/de/tokenizer/__init__.py b/spacy/tests/fi/__init__.py similarity index 100% rename from spacy/tests/de/tokenizer/__init__.py rename to spacy/tests/fi/__init__.py diff --git a/spacy/tests/fi/test_tokenizer.py b/spacy/tests/fi/test_tokenizer.py new file mode 100644 index 000000000..93940a93f --- /dev/null +++ b/spacy/tests/fi/test_tokenizer.py @@ -0,0 +1,18 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + +ABBREVIATION_TESTS = [ + ('Hyvää uutta vuotta t. siht. Niemelä!', ['Hyvää', 'uutta', 'vuotta', 't.', 'siht.', 'Niemelä', '!']), + ('Paino on n. 2.2 kg', ['Paino', 'on', 'n.', '2.2', 'kg']) +] + +TESTCASES = ABBREVIATION_TESTS + + +@pytest.mark.parametrize('text,expected_tokens', TESTCASES) +def test_tokenizer_handles_testcases(fi_tokenizer, text, expected_tokens): + tokens = fi_tokenizer(text) + token_list = [token.text for token in tokens if not token.is_space] + assert expected_tokens == token_list diff --git a/spacy/tests/fr/__init__.py b/spacy/tests/fr/__init__.py new file mode 100644 index 000000000..57d631c3f --- /dev/null +++ b/spacy/tests/fr/__init__.py @@ -0,0 +1 @@ +# coding: utf-8 diff --git a/spacy/tests/fr/test_exceptions.py b/spacy/tests/fr/test_exceptions.py new file mode 100644 index 000000000..2839df0ee --- /dev/null +++ b/spacy/tests/fr/test_exceptions.py @@ -0,0 +1,40 @@ +# coding: utf-8 + +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["aujourd'hui", "Aujourd'hui", "prud'hommes", + "prud’hommal"]) +def test_tokenizer_infix_exceptions(fr_tokenizer, text): + tokens = fr_tokenizer(text) + assert len(tokens) == 1 + + +@pytest.mark.parametrize('text,lemma', [("janv.", "janvier"), + ("juill.", "juillet"), + ("Dr.", "docteur"), + ("av.", "avant"), + ("sept.", "septembre")]) +def test_tokenizer_handles_abbr(fr_tokenizer, text, lemma): + tokens = fr_tokenizer(text) + assert len(tokens) == 1 + assert tokens[0].lemma_ == lemma + + +def test_tokenizer_handles_exc_in_text(fr_tokenizer): + text = "Je suis allé au mois de janv. aux prud’hommes." + tokens = fr_tokenizer(text) + assert len(tokens) == 10 + assert tokens[6].text == "janv." + assert tokens[6].lemma_ == "janvier" + assert tokens[8].text == "prud’hommes" + + +def test_tokenizer_handles_exc_in_text_2(fr_tokenizer): + text = "Cette après-midi, je suis allé dans un restaurant italo-mexicain." + tokens = fr_tokenizer(text) + assert len(tokens) == 11 + assert tokens[1].text == "après-midi" + assert tokens[9].text == "italo-mexicain" \ No newline at end of file diff --git a/spacy/tests/fr/test_text.py b/spacy/tests/fr/test_text.py new file mode 100644 index 000000000..35d5a2bd7 --- /dev/null +++ b/spacy/tests/fr/test_text.py @@ -0,0 +1,19 @@ +# coding: utf8 + + +from __future__ import unicode_literals + + +def test_tokenizer_handles_long_text(fr_tokenizer): + text = """L'histoire du TAL commence dans les années 1950, bien que l'on puisse \ +trouver des travaux antérieurs. En 1950, Alan Turing éditait un article \ +célèbre sous le titre « Computing machinery and intelligence » qui propose ce \ +qu'on appelle à présent le test de Turing comme critère d'intelligence. \ +Ce critère dépend de la capacité d'un programme informatique de personnifier \ +un humain dans une conversation écrite en temps réel, de façon suffisamment \ +convaincante que l'interlocuteur humain ne peut distinguer sûrement — sur la \ +base du seul contenu de la conversation — s'il interagit avec un programme \ +ou avec un autre vrai humain.""" + + tokens = fr_tokenizer(text) + assert len(tokens) == 113 diff --git a/spacy/tests/gold/test_biluo.py b/spacy/tests/gold/test_biluo.py index 804739ae6..a1aa91cf0 100644 --- a/spacy/tests/gold/test_biluo.py +++ b/spacy/tests/gold/test_biluo.py @@ -1,48 +1,43 @@ +# coding: utf-8 from __future__ import unicode_literals from ...gold import biluo_tags_from_offsets -from ...vocab import Vocab from ...tokens.doc import Doc import pytest -@pytest.fixture -def vocab(): - return Vocab() - - -def test_U(vocab): - orths_and_spaces = [('I', True), ('flew', True), ('to', True), ('London', False), - ('.', True)] - doc = Doc(vocab, orths_and_spaces=orths_and_spaces) +def test_gold_biluo_U(en_vocab): + orths_and_spaces = [('I', True), ('flew', True), ('to', True), + ('London', False), ('.', True)] + doc = Doc(en_vocab, orths_and_spaces=orths_and_spaces) entities = [(len("I flew to "), len("I flew to London"), 'LOC')] tags = biluo_tags_from_offsets(doc, entities) assert tags == ['O', 'O', 'O', 'U-LOC', 'O'] -def test_BL(vocab): +def test_gold_biluo_BL(en_vocab): orths_and_spaces = [('I', True), ('flew', True), ('to', True), ('San', True), ('Francisco', False), ('.', True)] - doc = Doc(vocab, orths_and_spaces=orths_and_spaces) + doc = Doc(en_vocab, orths_and_spaces=orths_and_spaces) entities = [(len("I flew to "), len("I flew to San Francisco"), 'LOC')] tags = biluo_tags_from_offsets(doc, entities) assert tags == ['O', 'O', 'O', 'B-LOC', 'L-LOC', 'O'] -def test_BIL(vocab): +def test_gold_biluo_BIL(en_vocab): orths_and_spaces = [('I', True), ('flew', True), ('to', True), ('San', True), ('Francisco', True), ('Valley', False), ('.', True)] - doc = Doc(vocab, orths_and_spaces=orths_and_spaces) + doc = Doc(en_vocab, orths_and_spaces=orths_and_spaces) entities = [(len("I flew to "), len("I flew to San Francisco Valley"), 'LOC')] tags = biluo_tags_from_offsets(doc, entities) assert tags == ['O', 'O', 'O', 'B-LOC', 'I-LOC', 'L-LOC', 'O'] -def test_misalign(vocab): +def test_gold_biluo_misalign(en_vocab): orths_and_spaces = [('I', True), ('flew', True), ('to', True), ('San', True), ('Francisco', True), ('Valley.', False)] - doc = Doc(vocab, orths_and_spaces=orths_and_spaces) + doc = Doc(en_vocab, orths_and_spaces=orths_and_spaces) entities = [(len("I flew to "), len("I flew to San Francisco Valley"), 'LOC')] tags = biluo_tags_from_offsets(doc, entities) assert tags == ['O', 'O', 'O', '-', '-', '-'] diff --git a/spacy/tests/gold/test_lev_align.py b/spacy/tests/gold/test_lev_align.py new file mode 100644 index 000000000..29f58a156 --- /dev/null +++ b/spacy/tests/gold/test_lev_align.py @@ -0,0 +1,36 @@ +# coding: utf-8 +"""Find the min-cost alignment between two tokenizations""" + +from __future__ import unicode_literals + +from ...gold import _min_edit_path as min_edit_path +from ...gold import align + +import pytest + + +@pytest.mark.parametrize('cand,gold,path', [ + (["U.S", ".", "policy"], ["U.S.", "policy"], (0, 'MDM')), + (["U.N", ".", "policy"], ["U.S.", "policy"], (1, 'SDM')), + (["The", "cat", "sat", "down"], ["The", "cat", "sat", "down"], (0, 'MMMM')), + (["cat", "sat", "down"], ["The", "cat", "sat", "down"], (1, 'IMMM')), + (["The", "cat", "down"], ["The", "cat", "sat", "down"], (1, 'MMIM')), + (["The", "cat", "sag", "down"], ["The", "cat", "sat", "down"], (1, 'MMSM'))]) +def test_gold_lev_align_edit_path(cand, gold, path): + assert min_edit_path(cand, gold) == path + + +def test_gold_lev_align_edit_path2(): + cand = ["your", "stuff"] + gold = ["you", "r", "stuff"] + assert min_edit_path(cand, gold) in [(2, 'ISM'), (2, 'SIM')] + + +@pytest.mark.parametrize('cand,gold,result', [ + (["U.S", ".", "policy"], ["U.S.", "policy"], [0, None, 1]), + (["your", "stuff"], ["you", "r", "stuff"], [None, 2]), + (["i", "like", "2", "guys", " ", "well", "id", "just", "come", "straight", "out"], + ["i", "like", "2", "guys", "well", "i", "d", "just", "come", "straight", "out"], + [0, 1, 2, 3, None, 4, None, 7, 8, 9, 10])]) +def test_gold_lev_align(cand, gold, result): + assert align(cand, gold) == result diff --git a/spacy/tests/hu/conftest.py b/spacy/tests/hu/conftest.py deleted file mode 100644 index 222bd1b00..000000000 --- a/spacy/tests/hu/conftest.py +++ /dev/null @@ -1,11 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -import pytest - -from ...hu import Hungarian - - -@pytest.fixture -def hu_tokenizer(): - return Hungarian.Defaults.create_tokenizer() diff --git a/spacy/tests/hu/tokenizer/test_tokenizer.py b/spacy/tests/hu/test_tokenizer.py similarity index 84% rename from spacy/tests/hu/tokenizer/test_tokenizer.py rename to spacy/tests/hu/test_tokenizer.py index 0b76da0c6..d88b7b7b7 100644 --- a/spacy/tests/hu/tokenizer/test_tokenizer.py +++ b/spacy/tests/hu/test_tokenizer.py @@ -1,9 +1,8 @@ -# encoding: utf8 +# coding: utf8 from __future__ import unicode_literals import pytest - DEFAULT_TESTS = [ ('N. kormányzósági\nszékhely.', ['N.', 'kormányzósági', 'székhely', '.']), ('A .hu egy tld.', ['A', '.hu', 'egy', 'tld', '.']), @@ -24,23 +23,27 @@ DEFAULT_TESTS = [ HYPHEN_TESTS = [ ('Egy -nak, -jaiért, -magyar, bel- van.', ['Egy', '-nak', ',', '-jaiért', ',', '-magyar', ',', 'bel-', 'van', '.']), + ('Szabolcs-Szatmár-Bereg megye', ['Szabolcs-Szatmár-Bereg', 'megye']), ('Egy -nak.', ['Egy', '-nak', '.']), ('Egy bel-.', ['Egy', 'bel-', '.']), ('Dinnye-domb-.', ['Dinnye-domb-', '.']), ('Ezen -e elcsatangolt.', ['Ezen', '-e', 'elcsatangolt', '.']), ('Lakik-e', ['Lakik', '-e']), + ('A--B', ['A', '--', 'B']), ('Lakik-e?', ['Lakik', '-e', '?']), ('Lakik-e.', ['Lakik', '-e', '.']), ('Lakik-e...', ['Lakik', '-e', '...']), ('Lakik-e... van.', ['Lakik', '-e', '...', 'van', '.']), ('Lakik-e van?', ['Lakik', '-e', 'van', '?']), ('Lakik-elem van?', ['Lakik-elem', 'van', '?']), + ('Az életbiztosításáról- egy.', ['Az', 'életbiztosításáról-', 'egy', '.']), ('Van lakik-elem.', ['Van', 'lakik-elem', '.']), ('A 7-es busz?', ['A', '7-es', 'busz', '?']), ('A 7-es?', ['A', '7-es', '?']), ('A 7-es.', ['A', '7-es', '.']), ('Ez (lakik)-e?', ['Ez', '(', 'lakik', ')', '-e', '?']), ('A %-sal.', ['A', '%-sal', '.']), + ('A $-sal.', ['A', '$-sal', '.']), ('A CD-ROM-okrol.', ['A', 'CD-ROM-okrol', '.']) ] @@ -89,11 +92,15 @@ NUMBER_TESTS = [ ('A -23,12 van.', ['A', '-23,12', 'van', '.']), ('A -23,12-ben van.', ['A', '-23,12-ben', 'van', '.']), ('A -23,12-ben.', ['A', '-23,12-ben', '.']), - ('A 2+3 van.', ['A', '2', '+', '3', 'van', '.']), - ('A 2 +3 van.', ['A', '2', '+', '3', 'van', '.']), + ('A 2+3 van.', ['A', '2+3', 'van', '.']), + ('A 2<3 van.', ['A', '2<3', 'van', '.']), + ('A 2=3 van.', ['A', '2=3', 'van', '.']), + ('A 2÷3 van.', ['A', '2÷3', 'van', '.']), + ('A 1=(2÷3)-2/5 van.', ['A', '1=(2÷3)-2/5', 'van', '.']), + ('A 2 +3 van.', ['A', '2', '+3', 'van', '.']), ('A 2+ 3 van.', ['A', '2', '+', '3', 'van', '.']), ('A 2 + 3 van.', ['A', '2', '+', '3', 'van', '.']), - ('A 2*3 van.', ['A', '2', '*', '3', 'van', '.']), + ('A 2*3 van.', ['A', '2*3', 'van', '.']), ('A 2 *3 van.', ['A', '2', '*', '3', 'van', '.']), ('A 2* 3 van.', ['A', '2', '*', '3', 'van', '.']), ('A 2 * 3 van.', ['A', '2', '*', '3', 'van', '.']), @@ -141,7 +148,8 @@ NUMBER_TESTS = [ ('A 15.-ben.', ['A', '15.-ben', '.']), ('A 2002--2003. van.', ['A', '2002--2003.', 'van', '.']), ('A 2002--2003-ben van.', ['A', '2002--2003-ben', 'van', '.']), - ('A 2002--2003-ben.', ['A', '2002--2003-ben', '.']), + ('A 2002-2003-ben.', ['A', '2002-2003-ben', '.']), + ('A +0,99% van.', ['A', '+0,99%', 'van', '.']), ('A -0,99% van.', ['A', '-0,99%', 'van', '.']), ('A -0,99%-ben van.', ['A', '-0,99%-ben', 'van', '.']), ('A -0,99%.', ['A', '-0,99%', '.']), @@ -194,23 +202,33 @@ NUMBER_TESTS = [ ('A III/c-ben.', ['A', 'III/c-ben', '.']), ('A TU–154 van.', ['A', 'TU–154', 'van', '.']), ('A TU–154-ben van.', ['A', 'TU–154-ben', 'van', '.']), - ('A TU–154-ben.', ['A', 'TU–154-ben', '.']) + ('A TU–154-ben.', ['A', 'TU–154-ben', '.']), + ('A 5cm³', ['A', '5', 'cm³']), + ('A 5 $-ban', ['A', '5', '$-ban']), + ('A 5$-ban', ['A', '5$-ban']), + ('A 5$.', ['A', '5', '$', '.']), + ('A 5$', ['A', '5', '$']), + ('A $5', ['A', '$5']), + ('A 5km/h', ['A', '5', 'km/h']), + ('A 75%+1-100%-ig', ['A', '75%+1-100%-ig']), + ('A 5km/h.', ['A', '5', 'km/h', '.']), + ('3434/1992. évi elszámolás', ['3434/1992.', 'évi', 'elszámolás']), ] QUOTE_TESTS = [ ('Az "Ime, hat"-ban irja.', ['Az', '"', 'Ime', ',', 'hat', '"', '-ban', 'irja', '.']), ('"Ime, hat"-ban irja.', ['"', 'Ime', ',', 'hat', '"', '-ban', 'irja', '.']), ('Az "Ime, hat".', ['Az', '"', 'Ime', ',', 'hat', '"', '.']), - ('Egy 24"-os monitor.', ['Egy', '24', '"', '-os', 'monitor', '.']), - ("A don't van.", ['A', "don't", 'van', '.']) + ('Egy 24"-os monitor.', ['Egy', '24"-os', 'monitor', '.']), + ("A McDonald's van.", ['A', "McDonald's", 'van', '.']) ] DOT_TESTS = [ ('N. kormányzósági\nszékhely.', ['N.', 'kormányzósági', 'székhely', '.']), ('A .hu egy tld.', ['A', '.hu', 'egy', 'tld', '.']), ('Az egy.ketto pelda.', ['Az', 'egy.ketto', 'pelda', '.']), - ('A pl. rovidites.', ['A', 'pl.', 'rovidites', '.']), - ('A S.M.A.R.T. szo.', ['A', 'S.M.A.R.T.', 'szo', '.']), + ('A pl. rövidítés.', ['A', 'pl.', 'rövidítés', '.']), + ('A S.M.A.R.T. szó.', ['A', 'S.M.A.R.T.', 'szó', '.']), ('A .hu.', ['A', '.hu', '.']), ('Az egy.ketto.', ['Az', 'egy.ketto', '.']), ('A pl.', ['A', 'pl.']), @@ -223,8 +241,19 @@ DOT_TESTS = [ ('Valami ... más.', ['Valami', '...', 'más', '.']) ] +WIKI_TESTS = [ + ('!"', ['!', '"']), + ('lány"a', ['lány', '"', 'a']), + ('lány"a', ['lány', '"', 'a']), + ('!"-lel', ['!', '"', '-lel']), + ('""-sorozat ', ['"', '"', '-sorozat']), + ('"(Köszönöm', ['"', '(', 'Köszönöm']), + ('(törvénykönyv)-ben ', ['(', 'törvénykönyv', ')', '-ben']), + ('"(...)"–sokkal ', ['"', '(', '...', ')', '"', '–sokkal']), + ('cérium(IV)-oxid', ['cérium', '(', 'IV', ')', '-oxid']) +] -TESTCASES = DEFAULT_TESTS + DOT_TESTS + QUOTE_TESTS # + NUMBER_TESTS + HYPHEN_TESTS +TESTCASES = DEFAULT_TESTS + DOT_TESTS + QUOTE_TESTS + NUMBER_TESTS + HYPHEN_TESTS + WIKI_TESTS @pytest.mark.parametrize('text,expected_tokens', TESTCASES) diff --git a/spacy/tests/integration/test_load_languages.py b/spacy/tests/integration/test_load_languages.py deleted file mode 100644 index 0163aec94..000000000 --- a/spacy/tests/integration/test_load_languages.py +++ /dev/null @@ -1,21 +0,0 @@ -# encoding: utf8 -from __future__ import unicode_literals -from ...fr import French -from ...nl import Dutch - -def test_load_french(): - nlp = French() - doc = nlp(u'Parlez-vous français?') - assert doc[0].text == u'Parlez' - assert doc[1].text == u'-' - assert doc[2].text == u'vous' - assert doc[3].text == u'français' - assert doc[4].text == u'?' - -def test_load_dutch(): - nlp = Dutch() - doc = nlp(u'Is dit Nederlands?') - assert doc[0].text == u'Is' - assert doc[1].text == u'dit' - assert doc[2].text == u'Nederlands' - assert doc[3].text == u'?' \ No newline at end of file diff --git a/spacy/tests/integration/test_model_sanity.py b/spacy/tests/integration/test_model_sanity.py index 10e66d28f..ec231baaf 100644 --- a/spacy/tests/integration/test_model_sanity.py +++ b/spacy/tests/integration/test_model_sanity.py @@ -1,4 +1,5 @@ -# -*- coding: utf-8 -*- +# coding: utf-8 + import pytest import numpy @@ -47,7 +48,7 @@ class TestModelSanity: def test_vectors(self, example): # if vectors are available, they should differ on different words - # this isn't a perfect test since this could in principle fail + # this isn't a perfect test since this could in principle fail # in a sane model as well, # but that's very unlikely and a good indicator if something is wrong vector0 = example[0].vector @@ -58,9 +59,9 @@ class TestModelSanity: assert not numpy.array_equal(vector1,vector2) def test_probs(self, example): - # if frequencies/probabilities are okay, they should differ for + # if frequencies/probabilities are okay, they should differ for # different words - # this isn't a perfect test since this could in principle fail + # this isn't a perfect test since this could in principle fail # in a sane model as well, # but that's very unlikely and a good indicator if something is wrong prob0 = example[0].prob diff --git a/spacy/tests/matcher/test_entity_id.py b/spacy/tests/matcher/test_entity_id.py index b55db36af..9982a3f44 100644 --- a/spacy/tests/matcher/test_entity_id.py +++ b/spacy/tests/matcher/test_entity_id.py @@ -1,59 +1,53 @@ +# coding: utf-8 from __future__ import unicode_literals -import spacy -from spacy.vocab import Vocab -from spacy.matcher import Matcher -from spacy.tokens.doc import Doc -from spacy.attrs import * + +from ...matcher import Matcher +from ...attrs import ORTH +from ..util import get_doc import pytest -@pytest.fixture -def en_vocab(): - return spacy.get_lang_class('en').Defaults.create_vocab() - - -def test_init_matcher(en_vocab): +@pytest.mark.parametrize('words,entity', [ + (["Test", "Entity"], "TestEntity")]) +def test_matcher_add_empty_entity(en_vocab, words, entity): matcher = Matcher(en_vocab) + matcher.add_entity(entity) + doc = get_doc(en_vocab, words) assert matcher.n_patterns == 0 - assert matcher(Doc(en_vocab, words=[u'Some', u'words'])) == [] + assert matcher(doc) == [] -def test_add_empty_entity(en_vocab): +@pytest.mark.parametrize('entity1,entity2,attrs', [ + ("TestEntity", "TestEntity2", {"Hello": "World"})]) +def test_matcher_get_entity_attrs(en_vocab, entity1, entity2, attrs): matcher = Matcher(en_vocab) - matcher.add_entity('TestEntity') + matcher.add_entity(entity1) + assert matcher.get_entity(entity1) == {} + matcher.add_entity(entity2, attrs=attrs) + assert matcher.get_entity(entity2) == attrs + assert matcher.get_entity(entity1) == {} + + +@pytest.mark.parametrize('words,entity,attrs', + [(["Test", "Entity"], "TestEntity", {"Hello": "World"})]) +def test_matcher_get_entity_via_match(en_vocab, words, entity, attrs): + matcher = Matcher(en_vocab) + matcher.add_entity(entity, attrs=attrs) + doc = get_doc(en_vocab, words) assert matcher.n_patterns == 0 - assert matcher(Doc(en_vocab, words=[u'Test', u'Entity'])) == [] + assert matcher(doc) == [] - -def test_get_entity_attrs(en_vocab): - matcher = Matcher(en_vocab) - matcher.add_entity('TestEntity') - entity = matcher.get_entity('TestEntity') - assert entity == {} - matcher.add_entity('TestEntity2', attrs={'Hello': 'World'}) - entity = matcher.get_entity('TestEntity2') - assert entity == {'Hello': 'World'} - assert matcher.get_entity('TestEntity') == {} - - -def test_get_entity_via_match(en_vocab): - matcher = Matcher(en_vocab) - matcher.add_entity('TestEntity', attrs={u'Hello': u'World'}) - assert matcher.n_patterns == 0 - assert matcher(Doc(en_vocab, words=[u'Test', u'Entity'])) == [] - matcher.add_pattern(u'TestEntity', [{ORTH: u'Test'}, {ORTH: u'Entity'}]) + matcher.add_pattern(entity, [{ORTH: words[0]}, {ORTH: words[1]}]) assert matcher.n_patterns == 1 - matches = matcher(Doc(en_vocab, words=[u'Test', u'Entity'])) + + matches = matcher(doc) assert len(matches) == 1 assert len(matches[0]) == 4 + ent_id, label, start, end = matches[0] - assert ent_id == matcher.vocab.strings[u'TestEntity'] + assert ent_id == matcher.vocab.strings[entity] assert label == 0 assert start == 0 assert end == 2 - attrs = matcher.get_entity(ent_id) - assert attrs == {u'Hello': u'World'} - - - + assert matcher.get_entity(ent_id) == attrs diff --git a/spacy/tests/matcher/test_matcher.py b/spacy/tests/matcher/test_matcher.py new file mode 100644 index 000000000..7c9c4ddfe --- /dev/null +++ b/spacy/tests/matcher/test_matcher.py @@ -0,0 +1,125 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...matcher import Matcher, PhraseMatcher +from ..util import get_doc + +import pytest + + +@pytest.fixture +def matcher(en_vocab): + patterns = { + 'JS': ['PRODUCT', {}, [[{'ORTH': 'JavaScript'}]]], + 'GoogleNow': ['PRODUCT', {}, [[{'ORTH': 'Google'}, {'ORTH': 'Now'}]]], + 'Java': ['PRODUCT', {}, [[{'LOWER': 'java'}]]] + } + return Matcher(en_vocab, patterns) + + +@pytest.mark.parametrize('words', [["Some", "words"]]) +def test_matcher_init(en_vocab, words): + matcher = Matcher(en_vocab) + doc = get_doc(en_vocab, words) + assert matcher.n_patterns == 0 + assert matcher(doc) == [] + + +def test_matcher_no_match(matcher): + words = ["I", "like", "cheese", "."] + doc = get_doc(matcher.vocab, words) + assert matcher(doc) == [] + + +def test_matcher_compile(matcher): + assert matcher.n_patterns == 3 + + +def test_matcher_match_start(matcher): + words = ["JavaScript", "is", "good"] + doc = get_doc(matcher.vocab, words) + assert matcher(doc) == [(matcher.vocab.strings['JS'], + matcher.vocab.strings['PRODUCT'], 0, 1)] + + +def test_matcher_match_end(matcher): + words = ["I", "like", "java"] + doc = get_doc(matcher.vocab, words) + assert matcher(doc) == [(doc.vocab.strings['Java'], + doc.vocab.strings['PRODUCT'], 2, 3)] + + +def test_matcher_match_middle(matcher): + words = ["I", "like", "Google", "Now", "best"] + doc = get_doc(matcher.vocab, words) + assert matcher(doc) == [(doc.vocab.strings['GoogleNow'], + doc.vocab.strings['PRODUCT'], 2, 4)] + + +def test_matcher_match_multi(matcher): + words = ["I", "like", "Google", "Now", "and", "java", "best"] + doc = get_doc(matcher.vocab, words) + assert matcher(doc) == [(doc.vocab.strings['GoogleNow'], + doc.vocab.strings['PRODUCT'], 2, 4), + (doc.vocab.strings['Java'], + doc.vocab.strings['PRODUCT'], 5, 6)] + + +def test_matcher_phrase_matcher(en_vocab): + words = ["Google", "Now"] + doc = get_doc(en_vocab, words) + matcher = PhraseMatcher(en_vocab, [doc]) + words = ["I", "like", "Google", "Now", "best"] + doc = get_doc(en_vocab, words) + assert len(matcher(doc)) == 1 + + +def test_matcher_match_zero(matcher): + words1 = 'He said , " some words " ...'.split() + words2 = 'He said , " some three words " ...'.split() + pattern1 = [{'ORTH': '"'}, + {'OP': '!', 'IS_PUNCT': True}, + {'OP': '!', 'IS_PUNCT': True}, + {'ORTH': '"'}] + pattern2 = [{'ORTH': '"'}, + {'IS_PUNCT': True}, + {'IS_PUNCT': True}, + {'IS_PUNCT': True}, + {'ORTH': '"'}] + + matcher.add('Quote', '', {}, [pattern1]) + doc = get_doc(matcher.vocab, words1) + assert len(matcher(doc)) == 1 + + doc = get_doc(matcher.vocab, words2) + assert len(matcher(doc)) == 0 + matcher.add('Quote', '', {}, [pattern2]) + assert len(matcher(doc)) == 0 + + +def test_matcher_match_zero_plus(matcher): + words = 'He said , " some words " ...'.split() + pattern = [{'ORTH': '"'}, + {'OP': '*', 'IS_PUNCT': False}, + {'ORTH': '"'}] + matcher.add('Quote', '', {}, [pattern]) + doc = get_doc(matcher.vocab, words) + assert len(matcher(doc)) == 1 + +def test_matcher_match_one_plus(matcher): + control = Matcher(matcher.vocab) + control.add_pattern('BasicPhilippe', + [{'ORTH': 'Philippe'}], label=321) + + doc = get_doc(control.vocab, ['Philippe', 'Philippe']) + + m = control(doc) + assert len(m) == 2 + matcher.add_pattern('KleenePhilippe', + [ + {'ORTH': 'Philippe', 'OP': '1'}, + {'ORTH': 'Philippe', 'OP': '+'}], label=321) + m = matcher(doc) + assert len(m) == 1 + + diff --git a/spacy/tests/matcher/test_matcher_bugfixes.py b/spacy/tests/matcher/test_matcher_bugfixes.py deleted file mode 100644 index 70946ec74..000000000 --- a/spacy/tests/matcher/test_matcher_bugfixes.py +++ /dev/null @@ -1,200 +0,0 @@ -import pytest -import numpy -import os - -import spacy -from spacy.matcher import Matcher -from spacy.attrs import ORTH, LOWER, ENT_IOB, ENT_TYPE -from spacy.attrs import ORTH, TAG, LOWER, IS_ALPHA, FLAG63 -from spacy.symbols import DATE, LOC - - -def test_overlap_issue118(EN): - '''Test a bug that arose from having overlapping matches''' - doc = EN.tokenizer(u'how many points did lebron james score against the boston celtics last night') - ORG = doc.vocab.strings['ORG'] - matcher = Matcher(EN.vocab, - {'BostonCeltics': - ('ORG', {}, - [ - [{LOWER: 'celtics'}], - [{LOWER: 'boston'}, {LOWER: 'celtics'}], - ] - ) - } - ) - - assert len(list(doc.ents)) == 0 - matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] - assert matches == [(ORG, 9, 11), (ORG, 10, 11)] - doc.ents = matches[:1] - ents = list(doc.ents) - assert len(ents) == 1 - assert ents[0].label == ORG - assert ents[0].start == 9 - assert ents[0].end == 11 - - -def test_overlap_issue242(): - '''Test overlapping multi-word phrases.''' - - patterns = [ - [{LOWER: 'food'}, {LOWER: 'safety'}], - [{LOWER: 'safety'}, {LOWER: 'standards'}], - ] - - if os.environ.get('SPACY_DATA'): - data_dir = os.environ.get('SPACY_DATA') - else: - data_dir = None - - nlp = spacy.en.English(path=data_dir, tagger=False, parser=False, entity=False) - nlp.matcher = Matcher(nlp.vocab) - - nlp.matcher.add('FOOD', 'FOOD', {}, patterns) - - doc = nlp.tokenizer(u'There are different food safety standards in different countries.') - - matches = [(ent_type, start, end) for ent_id, ent_type, start, end in nlp.matcher(doc)] - doc.ents += tuple(matches) - food_safety, safety_standards = matches - assert food_safety[1] == 3 - assert food_safety[2] == 5 - assert safety_standards[1] == 4 - assert safety_standards[2] == 6 - - -def test_overlap_reorder(EN): - '''Test order dependence''' - doc = EN.tokenizer(u'how many points did lebron james score against the boston celtics last night') - ORG = doc.vocab.strings['ORG'] - matcher = Matcher(EN.vocab, - {'BostonCeltics': - ('ORG', {}, - [ - [{LOWER: 'boston'}, {LOWER: 'celtics'}], - [{LOWER: 'celtics'}], - ] - ) - } - ) - - assert len(list(doc.ents)) == 0 - matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] - assert matches == [(ORG, 9, 11), (ORG, 10, 11)] - doc.ents = matches[:1] - ents = list(doc.ents) - assert len(ents) == 1 - assert ents[0].label == ORG - assert ents[0].start == 9 - assert ents[0].end == 11 - - -def test_overlap_prefix(EN): - '''Test order dependence''' - doc = EN.tokenizer(u'how many points did lebron james score against the boston celtics last night') - ORG = doc.vocab.strings['ORG'] - matcher = Matcher(EN.vocab, - {'BostonCeltics': - ('ORG', {}, - [ - [{LOWER: 'boston'}], - [{LOWER: 'boston'}, {LOWER: 'celtics'}], - ] - ) - } - ) - - assert len(list(doc.ents)) == 0 - matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] - doc.ents = matches[1:] - assert matches == [(ORG, 9, 10), (ORG, 9, 11)] - ents = list(doc.ents) - assert len(ents) == 1 - assert ents[0].label == ORG - assert ents[0].start == 9 - assert ents[0].end == 11 - - -def test_overlap_prefix_reorder(EN): - '''Test order dependence''' - doc = EN.tokenizer(u'how many points did lebron james score against the boston celtics last night') - ORG = doc.vocab.strings['ORG'] - matcher = Matcher(EN.vocab, - {'BostonCeltics': - ('ORG', {}, - [ - [{LOWER: 'boston'}, {LOWER: 'celtics'}], - [{LOWER: 'boston'}], - ] - ) - } - ) - - assert len(list(doc.ents)) == 0 - matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] - doc.ents += tuple(matches)[1:] - assert matches == [(ORG, 9, 10), (ORG, 9, 11)] - ents = doc.ents - assert len(ents) == 1 - assert ents[0].label == ORG - assert ents[0].start == 9 - assert ents[0].end == 11 - - -# @pytest.mark.models -# def test_ner_interaction(EN): -# EN.matcher.add('LAX_Airport', 'AIRPORT', {}, [[{ORTH: 'LAX'}]]) -# EN.matcher.add('SFO_Airport', 'AIRPORT', {}, [[{ORTH: 'SFO'}]]) -# doc = EN(u'get me a flight from SFO to LAX leaving 20 December and arriving on January 5th') - -# ents = [(ent.label_, ent.text) for ent in doc.ents] -# assert ents[0] == ('AIRPORT', 'SFO') -# assert ents[1] == ('AIRPORT', 'LAX') -# assert ents[2] == ('DATE', '20 December') -# assert ents[3] == ('DATE', 'January 5th') - - -# @pytest.mark.models -# def test_ner_interaction(EN): -# # ensure that matcher doesn't overwrite annotations set by the NER model -# doc = EN.tokenizer.tokens_from_list(u'get me a flight from SFO to LAX leaving 20 December and arriving on January 5th'.split(' ')) -# EN.tagger(doc) - -# columns = [ENT_IOB, ENT_TYPE] -# values = numpy.ndarray(shape=(len(doc),len(columns)), dtype='int32') -# # IOB values are 0=missing, 1=I, 2=O, 3=B -# iobs = [2,2,2,2,2,3,2,3,2,3,1,2,2,2,3,1] -# types = [0,0,0,0,0,LOC,0,LOC,0,DATE,DATE,0,0,0,DATE,DATE] -# values[:] = zip(iobs,types) -# doc.from_array(columns,values) - -# assert doc[5].ent_type_ == 'LOC' -# assert doc[7].ent_type_ == 'LOC' -# assert doc[9].ent_type_ == 'DATE' -# assert doc[10].ent_type_ == 'DATE' -# assert doc[14].ent_type_ == 'DATE' -# assert doc[15].ent_type_ == 'DATE' - -# EN.matcher.add('LAX_Airport', 'AIRPORT', {}, [[{ORTH: 'LAX'}]]) -# EN.matcher.add('SFO_Airport', 'AIRPORT', {}, [[{ORTH: 'SFO'}]]) -# EN.matcher(doc) - -# assert doc[5].ent_type_ != 'AIRPORT' -# assert doc[7].ent_type_ != 'AIRPORT' -# assert doc[5].ent_type_ == 'LOC' -# assert doc[7].ent_type_ == 'LOC' -# assert doc[9].ent_type_ == 'DATE' -# assert doc[10].ent_type_ == 'DATE' -# assert doc[14].ent_type_ == 'DATE' -# assert doc[15].ent_type_ == 'DATE' - - - - - - - - - - diff --git a/spacy/tests/morphology/__init__.py b/spacy/tests/morphology/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/spacy/tests/morphology/test_morphology_pickle.py b/spacy/tests/morphology/test_morphology_pickle.py deleted file mode 100644 index d98539d95..000000000 --- a/spacy/tests/morphology/test_morphology_pickle.py +++ /dev/null @@ -1,17 +0,0 @@ -import pytest - -import pickle -import io - - -from spacy.morphology import Morphology -from spacy.lemmatizer import Lemmatizer -from spacy.strings import StringStore - -@pytest.mark.xfail -def test_pickle(): - morphology = Morphology(StringStore(), {}, Lemmatizer({}, {}, {})) - - file_ = io.BytesIO() - pickle.dump(morphology, file_) - diff --git a/spacy/tests/munge/__init__.py b/spacy/tests/munge/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/spacy/tests/munge/test_align.py b/spacy/tests/munge/test_align.py deleted file mode 100644 index e3e0a78dc..000000000 --- a/spacy/tests/munge/test_align.py +++ /dev/null @@ -1,32 +0,0 @@ -from spacy.deprecated import align_tokens - - -def test_perfect_align(): - ref = ['I', 'align', 'perfectly'] - indices = [] - i = 0 - for token in ref: - indices.append((i, i + len(token))) - i += len(token) - aligned = list(align_tokens(ref, indices)) - assert aligned[0] == ('I', [(0, 1)]) - assert aligned[1] == ('align', [(1, 6)]) - assert aligned[2] == ('perfectly', [(6, 15)]) - - -def test_hyphen_align(): - ref = ['I', 'must', 're-align'] - indices = [(0, 1), (1, 5), (5, 7), (7, 8), (8, 13)] - aligned = list(align_tokens(ref, indices)) - assert aligned[0] == ('I', [(0, 1)]) - assert aligned[1] == ('must', [(1, 5)]) - assert aligned[2] == ('re-align', [(5, 7), (7, 8), (8, 13)]) - - -def test_align_continue(): - ref = ['I', 'must', 're-align', 'and', 'continue'] - indices = [(0, 1), (1, 5), (5, 7), (7, 8), (8, 13), (13, 16), (16, 24)] - aligned = list(align_tokens(ref, indices)) - assert aligned[2] == ('re-align', [(5, 7), (7, 8), (8, 13)]) - assert aligned[3] == ('and', [(13, 16)]) - assert aligned[4] == ('continue', [(16, 24)]) diff --git a/spacy/tests/munge/test_bad_periods.py b/spacy/tests/munge/test_bad_periods.py deleted file mode 100644 index fc448476a..000000000 --- a/spacy/tests/munge/test_bad_periods.py +++ /dev/null @@ -1,59 +0,0 @@ -import spacy.munge.read_conll - -hongbin_example = """ -1 2. 0. LS _ 24 meta _ _ _ -2 . . . _ 1 punct _ _ _ -3 Wang wang NNP _ 4 compound _ _ _ -4 Hongbin hongbin NNP _ 16 nsubj _ _ _ -5 , , , _ 4 punct _ _ _ -6 the the DT _ 11 det _ _ _ -7 " " `` _ 11 punct _ _ _ -8 communist communist JJ _ 11 amod _ _ _ -9 trail trail NN _ 11 compound _ _ _ -10 - - HYPH _ 11 punct _ _ _ -11 blazer blazer NN _ 4 appos _ _ _ -12 , , , _ 16 punct _ _ _ -13 " " '' _ 16 punct _ _ _ -14 has have VBZ _ 16 aux _ _ _ -15 not not RB _ 16 neg _ _ _ -16 turned turn VBN _ 24 ccomp _ _ _ -17 into into IN syn=CLR 16 prep _ _ _ -18 a a DT _ 19 det _ _ _ -19 capitalist capitalist NN _ 17 pobj _ _ _ -20 ( ( -LRB- _ 24 punct _ _ _ -21 he he PRP _ 24 nsubj _ _ _ -22 does do VBZ _ 24 aux _ _ _ -23 n't not RB _ 24 neg _ _ _ -24 have have VB _ 0 root _ _ _ -25 any any DT _ 26 det _ _ _ -26 shares share NNS _ 24 dobj _ _ _ -27 , , , _ 24 punct _ _ _ -28 does do VBZ _ 30 aux _ _ _ -29 n't not RB _ 30 neg _ _ _ -30 have have VB _ 24 conj _ _ _ -31 any any DT _ 32 det _ _ _ -32 savings saving NNS _ 30 dobj _ _ _ -33 , , , _ 30 punct _ _ _ -34 does do VBZ _ 36 aux _ _ _ -35 n't not RB _ 36 neg _ _ _ -36 have have VB _ 30 conj _ _ _ -37 his his PRP$ _ 39 poss _ _ _ -38 own own JJ _ 39 amod _ _ _ -39 car car NN _ 36 dobj _ _ _ -40 , , , _ 36 punct _ _ _ -41 and and CC _ 36 cc _ _ _ -42 does do VBZ _ 44 aux _ _ _ -43 n't not RB _ 44 neg _ _ _ -44 have have VB _ 36 conj _ _ _ -45 a a DT _ 46 det _ _ _ -46 mansion mansion NN _ 44 dobj _ _ _ -47 ; ; . _ 24 punct _ _ _ -""".strip() - - -def test_hongbin(): - words, annot = spacy.munge.read_conll.parse(hongbin_example, strip_bad_periods=True) - assert words[annot[0]['head']] == 'have' - assert words[annot[1]['head']] == 'Hongbin' - - diff --git a/spacy/tests/munge/test_detokenize.py b/spacy/tests/munge/test_detokenize.py deleted file mode 100644 index 5d8a234c6..000000000 --- a/spacy/tests/munge/test_detokenize.py +++ /dev/null @@ -1,21 +0,0 @@ -from spacy.deprecated import detokenize - -def test_punct(): - tokens = 'Pierre Vinken , 61 years old .'.split() - detoks = [(0,), (1, 2), (3,), (4,), (5, 6)] - token_rules = (',', '.') - assert detokenize(token_rules, tokens) == detoks - - -def test_contractions(): - tokens = "I ca n't even".split() - detoks = [(0,), (1, 2), (3,)] - token_rules = ("can't",) - assert detokenize(token_rules, tokens) == detoks - - -def test_contractions_punct(): - tokens = "I ca n't !".split() - detoks = [(0,), (1, 2, 3)] - token_rules = ("can't", '!') - assert detokenize(token_rules, tokens) == detoks diff --git a/spacy/tests/munge/test_lev_align.py b/spacy/tests/munge/test_lev_align.py deleted file mode 100644 index 2d34c2200..000000000 --- a/spacy/tests/munge/test_lev_align.py +++ /dev/null @@ -1,42 +0,0 @@ -"""Find the min-cost alignment between two tokenizations""" -from spacy.gold import _min_edit_path as min_edit_path -from spacy.gold import align - - -def test_edit_path(): - cand = ["U.S", ".", "policy"] - gold = ["U.S.", "policy"] - assert min_edit_path(cand, gold) == (0, 'MDM') - cand = ["U.N", ".", "policy"] - gold = ["U.S.", "policy"] - assert min_edit_path(cand, gold) == (1, 'SDM') - cand = ["The", "cat", "sat", "down"] - gold = ["The", "cat", "sat", "down"] - assert min_edit_path(cand, gold) == (0, 'MMMM') - cand = ["cat", "sat", "down"] - gold = ["The", "cat", "sat", "down"] - assert min_edit_path(cand, gold) == (1, 'IMMM') - cand = ["The", "cat", "down"] - gold = ["The", "cat", "sat", "down"] - assert min_edit_path(cand, gold) == (1, 'MMIM') - cand = ["The", "cat", "sag", "down"] - gold = ["The", "cat", "sat", "down"] - assert min_edit_path(cand, gold) == (1, 'MMSM') - cand = ["your", "stuff"] - gold = ["you", "r", "stuff"] - assert min_edit_path(cand, gold) in [(2, 'ISM'), (2, 'SIM')] - - -def test_align(): - cand = ["U.S", ".", "policy"] - gold = ["U.S.", "policy"] - assert align(cand, gold) == [0, None, 1] - cand = ["your", "stuff"] - gold = ["you", "r", "stuff"] - assert align(cand, gold) == [None, 2] - cand = [u'i', u'like', u'2', u'guys', u' ', u'well', u'id', u'just', - u'come', u'straight', u'out'] - gold = [u'i', u'like', u'2', u'guys', u'well', u'i', u'd', u'just', u'come', - u'straight', u'out'] - assert align(cand, gold) == [0, 1, 2, 3, None, 4, None, 7, 8, 9, 10] - diff --git a/spacy/tests/munge/test_onto_ner.py b/spacy/tests/munge/test_onto_ner.py deleted file mode 100644 index acb269533..000000000 --- a/spacy/tests/munge/test_onto_ner.py +++ /dev/null @@ -1,16 +0,0 @@ -from spacy.munge.read_ner import _get_text, _get_tag - - -def test_get_text(): - assert _get_text('asbestos') == 'asbestos' - assert _get_text('Lorillard') == 'Lorillard' - assert _get_text('more') == 'more' - assert _get_text('ago') == 'ago' - - -def test_get_tag(): - assert _get_tag('asbestos', None) == ('O', None) - assert _get_tag('asbestos', 'PER') == ('I-PER', 'PER') - assert _get_tag('Lorillard', None) == ('U-ORG', None) - assert _get_tag('more', None) == ('B-DATE', 'DATE') - assert _get_tag('ago', 'DATE') == ('L-DATE', None) diff --git a/spacy/tests/parser/test_base_nps.py b/spacy/tests/parser/test_base_nps.py deleted file mode 100644 index b598158d0..000000000 --- a/spacy/tests/parser/test_base_nps.py +++ /dev/null @@ -1,41 +0,0 @@ -from __future__ import unicode_literals -import pytest - - -# @pytest.mark.models -# def test_nsubj(EN): -# sent = EN(u'A base phrase should be recognized.') -# base_nps = list(sent.noun_chunks) -# assert len(base_nps) == 1 -# assert base_nps[0].string == 'A base phrase ' - - -# @pytest.mark.models -# def test_coord(EN): -# sent = EN(u'A base phrase and a good phrase are often the same.') -# base_nps = list(sent.noun_chunks) -# assert len(base_nps) == 2 -# assert base_nps[0].string == 'A base phrase ' -# assert base_nps[1].string == 'a good phrase ' - - -# @pytest.mark.models -# def test_pp(EN): -# sent = EN(u'A phrase with another phrase occurs') -# base_nps = list(sent.noun_chunks) -# assert len(base_nps) == 2 -# assert base_nps[0].string == 'A phrase ' -# assert base_nps[1].string == 'another phrase ' - - -@pytest.mark.models -def test_merge_pp(EN): - sent = EN(u'A phrase with another phrase occurs') - nps = [(np[0].idx, np[-1].idx + len(np[-1]), np.lemma_, np[0].ent_type_) for np in sent.noun_chunks] - - for start, end, lemma, ent_type in nps: - sent.merge(start, end, u'NP', lemma, ent_type) - assert sent[0].string == 'A phrase ' - assert sent[1].string == 'with ' - assert sent[2].string == 'another phrase ' - assert sent[3].string == 'occurs' diff --git a/spacy/tests/parser/test_conjuncts.py b/spacy/tests/parser/test_conjuncts.py deleted file mode 100644 index afb8d207e..000000000 --- a/spacy/tests/parser/test_conjuncts.py +++ /dev/null @@ -1,33 +0,0 @@ -"""Test the Token.conjuncts property""" -from __future__ import unicode_literals - -import pytest - - -def orths(tokens): - return [t.orth_ for t in tokens] - - -#def test_simple_two(EN): -# tokens = EN('I lost money and pride.', tag=True, parse=True) -# pride = tokens[4] -# assert orths(pride.conjuncts) == ['money', 'pride'] -# money = tokens[2] -# assert orths(money.conjuncts) == ['money', 'pride'] - - -#def test_comma_three(EN): -# tokens = EN('I found my wallet, phone and keys.') -# keys = tokens[-2] -# assert orths(keys.conjuncts) == ['wallet', 'phone', 'keys'] -# wallet = tokens[3] -# assert orths(wallet.conjuncts) == ['wallet', 'phone', 'keys'] - - -# This is failing due to parse errors -#def test_and_three(): -# tokens = NLU('I found my wallet and phone and keys.') -# keys = tokens[-2] -# assert orths(keys.conjuncts) == ['wallet', 'phone', 'keys'] -# wallet = tokens[3] -# assert orths(wallet.conjuncts) == ['wallet', 'phone', 'keys'] diff --git a/spacy/tests/parser/test_initial_actions_parse.py b/spacy/tests/parser/test_initial_actions_parse.py deleted file mode 100644 index a4a57e5b2..000000000 --- a/spacy/tests/parser/test_initial_actions_parse.py +++ /dev/null @@ -1,16 +0,0 @@ -import pytest - - -@pytest.mark.models -def test_initial(EN): - doc = EN.tokenizer(u'I ate the pizza with anchovies.') - EN.tagger(doc) - with EN.parser.step_through(doc) as stepwise: - stepwise.transition('L-nsubj') - stepwise.transition('S') - stepwise.transition('L-det') - assert doc[0].head.i == 1 - assert doc[1].head.i == 1 - assert doc[2].head.i == 3 - assert doc[3].head.i == 3 - assert doc diff --git a/spacy/tests/parser/test_nonproj.py b/spacy/tests/parser/test_nonproj.py index 337004251..8161d6fc3 100644 --- a/spacy/tests/parser/test_nonproj.py +++ b/spacy/tests/parser/test_nonproj.py @@ -1,137 +1,140 @@ +# coding: utf-8 from __future__ import unicode_literals + +from ...syntax.nonproj import ancestors, contains_cycle, is_nonproj_arc +from ...syntax.nonproj import is_nonproj_tree, PseudoProjectivity +from ...attrs import DEP, HEAD +from ..util import get_doc + import pytest -from spacy.attrs import DEP, HEAD -import numpy -from spacy.syntax.nonproj import ancestors, contains_cycle, is_nonproj_arc, is_nonproj_tree, PseudoProjectivity +@pytest.fixture +def tree(): + return [1, 2, 2, 4, 5, 2, 2] -def test_ancestors(): - tree = [1,2,2,4,5,2,2] - cyclic_tree = [1,2,2,4,5,3,2] - partial_tree = [1,2,2,4,5,None,2] - multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3] - assert([ a for a in ancestors(3,tree) ] == [4,5,2]) - assert([ a for a in ancestors(3,cyclic_tree) ] == [4,5,3,4,5,3,4]) - assert([ a for a in ancestors(3,partial_tree) ] == [4,5,None]) - assert([ a for a in ancestors(17,multirooted_tree) ] == []) +@pytest.fixture +def cyclic_tree(): + return [1, 2, 2, 4, 5, 3, 2] -def test_contains_cycle(): - tree = [1,2,2,4,5,2,2] - cyclic_tree = [1,2,2,4,5,3,2] - partial_tree = [1,2,2,4,5,None,2] - multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3] - assert(contains_cycle(tree) == None) - assert(contains_cycle(cyclic_tree) == set([3,4,5])) - assert(contains_cycle(partial_tree) == None) - assert(contains_cycle(multirooted_tree) == None) +@pytest.fixture +def partial_tree(): + return [1, 2, 2, 4, 5, None, 7, 4, 2] -def test_is_nonproj_arc(): - nonproj_tree = [1,2,2,4,5,2,7,4,2] - partial_tree = [1,2,2,4,5,None,7,4,2] - multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3] - assert(is_nonproj_arc(0,nonproj_tree) == False) - assert(is_nonproj_arc(1,nonproj_tree) == False) - assert(is_nonproj_arc(2,nonproj_tree) == False) - assert(is_nonproj_arc(3,nonproj_tree) == False) - assert(is_nonproj_arc(4,nonproj_tree) == False) - assert(is_nonproj_arc(5,nonproj_tree) == False) - assert(is_nonproj_arc(6,nonproj_tree) == False) - assert(is_nonproj_arc(7,nonproj_tree) == True) - assert(is_nonproj_arc(8,nonproj_tree) == False) - assert(is_nonproj_arc(7,partial_tree) == False) - assert(is_nonproj_arc(17,multirooted_tree) == False) - assert(is_nonproj_arc(16,multirooted_tree) == True) +@pytest.fixture +def nonproj_tree(): + return [1, 2, 2, 4, 5, 2, 7, 4, 2] -def test_is_nonproj_tree(): - proj_tree = [1,2,2,4,5,2,7,5,2] - nonproj_tree = [1,2,2,4,5,2,7,4,2] - partial_tree = [1,2,2,4,5,None,7,4,2] - multirooted_tree = [3,2,0,3,3,7,7,3,7,10,7,10,11,12,18,16,18,17,12,3] - assert(is_nonproj_tree(proj_tree) == False) - assert(is_nonproj_tree(nonproj_tree) == True) - assert(is_nonproj_tree(partial_tree) == False) - assert(is_nonproj_tree(multirooted_tree) == True) +@pytest.fixture +def proj_tree(): + return [1, 2, 2, 4, 5, 2, 7, 5, 2] + +@pytest.fixture +def multirooted_tree(): + return [3, 2, 0, 3, 3, 7, 7, 3, 7, 10, 7, 10, 11, 12, 18, 16, 18, 17, 12, 3] -def deprojectivize(proj_heads, deco_labels, EN): - slen = len(proj_heads) - sent = EN.tokenizer.tokens_from_list(['whatever'] * slen) - rel_proj_heads = [ head-i for i,head in enumerate(proj_heads) ] - labelids = [ EN.vocab.strings[label] for label in deco_labels ] - pairs = list(zip(rel_proj_heads,labelids)) - parse = numpy.asarray(pairs, dtype=numpy.int32) - sent.from_array([HEAD,DEP],parse) - PseudoProjectivity.deprojectivize(sent) - parse = sent.to_array([HEAD,DEP]) - deproj_heads = [ i+head for i,head in enumerate(parse[:,0]) ] - undeco_labels = [ EN.vocab.strings[int(labelid)] for labelid in parse[:,1] ] - return deproj_heads, undeco_labels +def test_parser_ancestors(tree, cyclic_tree, partial_tree, multirooted_tree): + assert([a for a in ancestors(3, tree)] == [4, 5, 2]) + assert([a for a in ancestors(3, cyclic_tree)] == [4, 5, 3, 4, 5, 3, 4]) + assert([a for a in ancestors(3, partial_tree)] == [4, 5, None]) + assert([a for a in ancestors(17, multirooted_tree)] == []) -@pytest.mark.models -def test_pseudoprojectivity(EN): - tree = [1,2,2] - nonproj_tree = [1,2,2,4,5,2,7,4,2] - labels = ['det','nsubj','root','det','dobj','aux','nsubj','acl','punct'] - nonproj_tree2 = [9,1,3,1,5,6,9,8,6,1,6,12,13,10,1] - labels2 = ['advmod','root','det','nsubj','advmod','det','dobj','det','nmod','aux','nmod','advmod','det','amod','punct'] - - assert(PseudoProjectivity.decompose('X||Y') == ('X','Y')) - assert(PseudoProjectivity.decompose('X') == ('X','')) - - assert(PseudoProjectivity.is_decorated('X||Y') == True) - assert(PseudoProjectivity.is_decorated('X') == False) - - PseudoProjectivity._lift(0,tree) - assert(tree == [2,2,2]) - - np_arc = PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree) - assert(np_arc == 7) - - np_arc = PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree2) - assert(np_arc == 10) - - proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree,labels) - assert(proj_heads == [1,2,2,4,5,2,7,5,2]) - assert(deco_labels == ['det','nsubj','root','det','dobj','aux','nsubj','acl||dobj','punct']) - deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN) - assert(deproj_heads == nonproj_tree) - assert(undeco_labels == labels) - - proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree2,labels2) - assert(proj_heads == [1,1,3,1,5,6,9,8,6,1,9,12,13,10,1]) - assert(deco_labels == ['advmod||aux','root','det','nsubj','advmod','det','dobj','det','nmod','aux','nmod||dobj','advmod','det','amod','punct']) - deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN) - assert(deproj_heads == nonproj_tree2) - assert(undeco_labels == labels2) - - # if decoration is wrong such that there is no head with the desired label - # the structure is kept and the label is undecorated - proj_heads = [1,2,2,4,5,2,7,5,2] - deco_labels = ['det','nsubj','root','det','dobj','aux','nsubj','acl||iobj','punct'] - deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN) - assert(deproj_heads == proj_heads) - assert(undeco_labels == ['det','nsubj','root','det','dobj','aux','nsubj','acl','punct']) - - # if there are two potential new heads, the first one is chosen even if it's wrong - proj_heads = [1,1,3,1,5,6,9,8,6,1,9,12,13,10,1] - deco_labels = ['advmod||aux','root','det','aux','advmod','det','dobj','det','nmod','aux','nmod||dobj','advmod','det','amod','punct'] - deproj_heads, undeco_labels = deprojectivize(proj_heads,deco_labels,EN) - assert(deproj_heads == [3,1,3,1,5,6,9,8,6,1,6,12,13,10,1]) - assert(undeco_labels == ['advmod','root','det','aux','advmod','det','dobj','det','nmod','aux','nmod','advmod','det','amod','punct']) +def test_parser_contains_cycle(tree, cyclic_tree, partial_tree, multirooted_tree): + assert(contains_cycle(tree) == None) + assert(contains_cycle(cyclic_tree) == set([3, 4, 5])) + assert(contains_cycle(partial_tree) == None) + assert(contains_cycle(multirooted_tree) == None) +def test_parser_is_nonproj_arc(nonproj_tree, partial_tree, multirooted_tree): + assert(is_nonproj_arc(0, nonproj_tree) == False) + assert(is_nonproj_arc(1, nonproj_tree) == False) + assert(is_nonproj_arc(2, nonproj_tree) == False) + assert(is_nonproj_arc(3, nonproj_tree) == False) + assert(is_nonproj_arc(4, nonproj_tree) == False) + assert(is_nonproj_arc(5, nonproj_tree) == False) + assert(is_nonproj_arc(6, nonproj_tree) == False) + assert(is_nonproj_arc(7, nonproj_tree) == True) + assert(is_nonproj_arc(8, nonproj_tree) == False) + assert(is_nonproj_arc(7, partial_tree) == False) + assert(is_nonproj_arc(17, multirooted_tree) == False) + assert(is_nonproj_arc(16, multirooted_tree) == True) +def test_parser_is_nonproj_tree(proj_tree, nonproj_tree, partial_tree, multirooted_tree): + assert(is_nonproj_tree(proj_tree) == False) + assert(is_nonproj_tree(nonproj_tree) == True) + assert(is_nonproj_tree(partial_tree) == False) + assert(is_nonproj_tree(multirooted_tree) == True) +def test_parser_pseudoprojectivity(en_tokenizer): + def deprojectivize(proj_heads, deco_labels): + tokens = en_tokenizer('whatever ' * len(proj_heads)) + rel_proj_heads = [head-i for i, head in enumerate(proj_heads)] + doc = get_doc(tokens.vocab, [t.text for t in tokens], deps=deco_labels, heads=rel_proj_heads) + PseudoProjectivity.deprojectivize(doc) + return [t.head.i for t in doc], [token.dep_ for token in doc] + tree = [1, 2, 2] + nonproj_tree = [1, 2, 2, 4, 5, 2, 7, 4, 2] + nonproj_tree2 = [9, 1, 3, 1, 5, 6, 9, 8, 6, 1, 6, 12, 13, 10, 1] + labels = ['det', 'nsubj', 'root', 'det', 'dobj', 'aux', 'nsubj', 'acl', 'punct'] + labels2 = ['advmod', 'root', 'det', 'nsubj', 'advmod', 'det', 'dobj', 'det', 'nmod', 'aux', 'nmod', 'advmod', 'det', 'amod', 'punct'] + assert(PseudoProjectivity.decompose('X||Y') == ('X','Y')) + assert(PseudoProjectivity.decompose('X') == ('X','')) + assert(PseudoProjectivity.is_decorated('X||Y') == True) + assert(PseudoProjectivity.is_decorated('X') == False) + PseudoProjectivity._lift(0, tree) + assert(tree == [2, 2, 2]) + assert(PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree) == 7) + assert(PseudoProjectivity._get_smallest_nonproj_arc(nonproj_tree2) == 10) + proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree, labels) + assert(proj_heads == [1, 2, 2, 4, 5, 2, 7, 5, 2]) + assert(deco_labels == ['det', 'nsubj', 'root', 'det', 'dobj', 'aux', + 'nsubj', 'acl||dobj', 'punct']) + deproj_heads, undeco_labels = deprojectivize(proj_heads, deco_labels) + assert(deproj_heads == nonproj_tree) + assert(undeco_labels == labels) + proj_heads, deco_labels = PseudoProjectivity.projectivize(nonproj_tree2, labels2) + assert(proj_heads == [1, 1, 3, 1, 5, 6, 9, 8, 6, 1, 9, 12, 13, 10, 1]) + assert(deco_labels == ['advmod||aux', 'root', 'det', 'nsubj', 'advmod', + 'det', 'dobj', 'det', 'nmod', 'aux', 'nmod||dobj', + 'advmod', 'det', 'amod', 'punct']) + deproj_heads, undeco_labels = deprojectivize(proj_heads, deco_labels) + assert(deproj_heads == nonproj_tree2) + assert(undeco_labels == labels2) + + # if decoration is wrong such that there is no head with the desired label + # the structure is kept and the label is undecorated + proj_heads = [1, 2, 2, 4, 5, 2, 7, 5, 2] + deco_labels = ['det', 'nsubj', 'root', 'det', 'dobj', 'aux', 'nsubj', + 'acl||iobj', 'punct'] + + deproj_heads, undeco_labels = deprojectivize(proj_heads, deco_labels) + assert(deproj_heads == proj_heads) + assert(undeco_labels == ['det', 'nsubj', 'root', 'det', 'dobj', 'aux', + 'nsubj', 'acl', 'punct']) + + # if there are two potential new heads, the first one is chosen even if + # it's wrong + proj_heads = [1, 1, 3, 1, 5, 6, 9, 8, 6, 1, 9, 12, 13, 10, 1] + deco_labels = ['advmod||aux', 'root', 'det', 'aux', 'advmod', 'det', + 'dobj', 'det', 'nmod', 'aux', 'nmod||dobj', 'advmod', + 'det', 'amod', 'punct'] + + deproj_heads, undeco_labels = deprojectivize(proj_heads, deco_labels) + assert(deproj_heads == [3, 1, 3, 1, 5, 6, 9, 8, 6, 1, 6, 12, 13, 10, 1]) + assert(undeco_labels == ['advmod', 'root', 'det', 'aux', 'advmod', 'det', + 'dobj', 'det', 'nmod', 'aux', 'nmod', 'advmod', + 'det', 'amod', 'punct']) diff --git a/spacy/tests/parser/test_noun_chunks.py b/spacy/tests/parser/test_noun_chunks.py new file mode 100644 index 000000000..5e8c7659a --- /dev/null +++ b/spacy/tests/parser/test_noun_chunks.py @@ -0,0 +1,76 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..util import get_doc + +import pytest + + +def test_parser_noun_chunks_standard(en_tokenizer): + text = "A base phrase should be recognized." + heads = [2, 1, 3, 2, 1, 0, -1] + tags = ['DT', 'JJ', 'NN', 'MD', 'VB', 'VBN', '.'] + deps = ['det', 'amod', 'nsubjpass', 'aux', 'auxpass', 'ROOT', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags, deps=deps, heads=heads) + chunks = list(doc.noun_chunks) + assert len(chunks) == 1 + assert chunks[0].text_with_ws == "A base phrase " + + +def test_parser_noun_chunks_coordinated(en_tokenizer): + text = "A base phrase and a good phrase are often the same." + heads = [2, 1, 5, -1, 2, 1, -4, 0, -1, 1, -3, -4] + tags = ['DT', 'NN', 'NN', 'CC', 'DT', 'JJ', 'NN', 'VBP', 'RB', 'DT', 'JJ', '.'] + deps = ['det', 'compound', 'nsubj', 'cc', 'det', 'amod', 'conj', 'ROOT', 'advmod', 'det', 'attr', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags, deps=deps, heads=heads) + chunks = list(doc.noun_chunks) + assert len(chunks) == 2 + assert chunks[0].text_with_ws == "A base phrase " + assert chunks[1].text_with_ws == "a good phrase " + + +def test_parser_noun_chunks_pp_chunks(en_tokenizer): + text = "A phrase with another phrase occurs." + heads = [1, 4, -1, 1, -2, 0, -1] + tags = ['DT', 'NN', 'IN', 'DT', 'NN', 'VBZ', '.'] + deps = ['det', 'nsubj', 'prep', 'det', 'pobj', 'ROOT', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags, deps=deps, heads=heads) + chunks = list(doc.noun_chunks) + assert len(chunks) == 2 + assert chunks[0].text_with_ws == "A phrase " + assert chunks[1].text_with_ws == "another phrase " + + +def test_parser_noun_chunks_standard_de(de_tokenizer): + text = "Eine Tasse steht auf dem Tisch." + heads = [1, 1, 0, -1, 1, -2, -4] + tags = ['ART', 'NN', 'VVFIN', 'APPR', 'ART', 'NN', '$.'] + deps = ['nk', 'sb', 'ROOT', 'mo', 'nk', 'nk', 'punct'] + + tokens = de_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags, deps=deps, heads=heads) + chunks = list(doc.noun_chunks) + assert len(chunks) == 2 + assert chunks[0].text_with_ws == "Eine Tasse " + assert chunks[1].text_with_ws == "dem Tisch " + + +def test_de_extended_chunk(de_tokenizer): + text = "Die Sängerin singt mit einer Tasse Kaffee Arien." + heads = [1, 1, 0, -1, 1, -2, -1, -5, -6] + tags = ['ART', 'NN', 'VVFIN', 'APPR', 'ART', 'NN', 'NN', 'NN', '$.'] + deps = ['nk', 'sb', 'ROOT', 'mo', 'nk', 'nk', 'nk', 'oa', 'punct'] + + tokens = de_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags, deps=deps, heads=heads) + chunks = list(doc.noun_chunks) + assert len(chunks) == 3 + assert chunks[0].text_with_ws == "Die Sängerin " + assert chunks[1].text_with_ws == "einer Tasse Kaffee " + assert chunks[2].text_with_ws == "Arien " diff --git a/spacy/tests/parser/test_parse.py b/spacy/tests/parser/test_parse.py index c524a3b62..4841f6cc3 100644 --- a/spacy/tests/parser/test_parse.py +++ b/spacy/tests/parser/test_parse.py @@ -1,102 +1,148 @@ +# coding: utf-8 from __future__ import unicode_literals +from ..util import get_doc, apply_transition_sequence + import pytest -@pytest.mark.models -def test_root(EN): - tokens = EN(u"i don't have other assistance") - for t in tokens: - assert t.dep != 0, t.orth_ +def test_parser_root(en_tokenizer): + text = "i don't have other assistance" + heads = [3, 2, 1, 0, 1, -2] + deps = ['nsubj', 'aux', 'neg', 'ROOT', 'amod', 'dobj'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) + for t in doc: + assert t.dep != 0, t.text -@pytest.mark.models -def test_one_word_sentence(EN): - # one word sentence - doc = EN.tokenizer.tokens_from_list(['Hello']) - EN.tagger(doc) +@pytest.mark.parametrize('text', ["Hello"]) +def test_parser_parse_one_word_sentence(en_tokenizer, en_parser, text): + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=[0], deps=['ROOT']) + assert len(doc) == 1 - with EN.parser.step_through(doc) as _: + with en_parser.step_through(doc) as _: pass assert doc[0].dep != 0 -def apply_transition_sequence(model, doc, sequence): - for action_name in sequence: - if '-' in action_name: - move, label = action_name.split('-') - model.parser.add_label(label) - with model.parser.step_through(doc) as stepwise: - for transition in sequence: - stepwise.transition(transition) +def test_parser_initial(en_tokenizer, en_parser): + text = "I ate the pizza with anchovies." + heads = [1, 0, 1, -2, -3, -1, -5] + transition = ['L-nsubj', 'S', 'L-det'] + + tokens = en_tokenizer(text) + apply_transition_sequence(en_parser, tokens, transition) + + assert tokens[0].head.i == 1 + assert tokens[1].head.i == 1 + assert tokens[2].head.i == 3 + assert tokens[3].head.i == 3 -@pytest.mark.models -def test_arc_eager_finalize_state(EN): +def test_parser_parse_subtrees(en_tokenizer, en_parser): + text = "The four wheels on the bus turned quickly" + heads = [2, 1, 4, -1, 1, -2, 0, -1] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + + assert len(list(doc[2].lefts)) == 2 + assert len(list(doc[2].rights)) == 1 + assert len(list(doc[2].children)) == 3 + assert len(list(doc[5].lefts)) == 1 + assert len(list(doc[5].rights)) == 0 + assert len(list(doc[5].children)) == 1 + assert len(list(doc[2].subtree)) == 6 + + +def test_parser_merge_pp(en_tokenizer): + text = "A phrase with another phrase occurs" + heads = [1, 4, -1, 1, -2, 0] + deps = ['det', 'nsubj', 'prep', 'det', 'pobj', 'ROOT'] + tags = ['DT', 'NN', 'IN', 'DT', 'NN', 'VBZ'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], deps=deps, heads=heads, tags=tags) + nps = [(np[0].idx, np[-1].idx + len(np[-1]), np.lemma_) for np in doc.noun_chunks] + + for start, end, lemma in nps: + doc.merge(start, end, label='NP', lemma=lemma) + assert doc[0].text == 'A phrase' + assert doc[1].text == 'with' + assert doc[2].text == 'another phrase' + assert doc[3].text == 'occurs' + + +def test_parser_arc_eager_finalize_state(en_tokenizer, en_parser): + text = "a b c d e" + # right branching - example = EN.tokenizer.tokens_from_list(u"a b c d e".split(' ')) - apply_transition_sequence(EN, example, ['R-nsubj','D','R-nsubj','R-nsubj','D','R-ROOT']) + transition = ['R-nsubj', 'D', 'R-nsubj', 'R-nsubj', 'D', 'R-ROOT'] + tokens = en_tokenizer(text) + apply_transition_sequence(en_parser, tokens, transition) - assert example[0].n_lefts == 0 - assert example[0].n_rights == 2 - assert example[0].left_edge.i == 0 - assert example[0].right_edge.i == 4 - assert example[0].head.i == 0 + assert tokens[0].n_lefts == 0 + assert tokens[0].n_rights == 2 + assert tokens[0].left_edge.i == 0 + assert tokens[0].right_edge.i == 4 + assert tokens[0].head.i == 0 - assert example[1].n_lefts == 0 - assert example[1].n_rights == 0 - assert example[1].left_edge.i == 1 - assert example[1].right_edge.i == 1 - assert example[1].head.i == 0 + assert tokens[1].n_lefts == 0 + assert tokens[1].n_rights == 0 + assert tokens[1].left_edge.i == 1 + assert tokens[1].right_edge.i == 1 + assert tokens[1].head.i == 0 - assert example[2].n_lefts == 0 - assert example[2].n_rights == 2 - assert example[2].left_edge.i == 2 - assert example[2].right_edge.i == 4 - assert example[2].head.i == 0 + assert tokens[2].n_lefts == 0 + assert tokens[2].n_rights == 2 + assert tokens[2].left_edge.i == 2 + assert tokens[2].right_edge.i == 4 + assert tokens[2].head.i == 0 - assert example[3].n_lefts == 0 - assert example[3].n_rights == 0 - assert example[3].left_edge.i == 3 - assert example[3].right_edge.i == 3 - assert example[3].head.i == 2 + assert tokens[3].n_lefts == 0 + assert tokens[3].n_rights == 0 + assert tokens[3].left_edge.i == 3 + assert tokens[3].right_edge.i == 3 + assert tokens[3].head.i == 2 - assert example[4].n_lefts == 0 - assert example[4].n_rights == 0 - assert example[4].left_edge.i == 4 - assert example[4].right_edge.i == 4 - assert example[4].head.i == 2 + assert tokens[4].n_lefts == 0 + assert tokens[4].n_rights == 0 + assert tokens[4].left_edge.i == 4 + assert tokens[4].right_edge.i == 4 + assert tokens[4].head.i == 2 # left branching - example = EN.tokenizer.tokens_from_list(u"a b c d e".split(' ')) - apply_transition_sequence(EN, example, ['S', 'S', 'S', 'L-nsubj','L-nsubj','L-nsubj', 'L-nsubj']) + transition = ['S', 'S', 'S', 'L-nsubj','L-nsubj','L-nsubj', 'L-nsubj'] + tokens = en_tokenizer(text) + apply_transition_sequence(en_parser, tokens, transition) - assert example[0].n_lefts == 0 - assert example[0].n_rights == 0 - assert example[0].left_edge.i == 0 - assert example[0].right_edge.i == 0 - assert example[0].head.i == 4 + assert tokens[0].n_lefts == 0 + assert tokens[0].n_rights == 0 + assert tokens[0].left_edge.i == 0 + assert tokens[0].right_edge.i == 0 + assert tokens[0].head.i == 4 - assert example[1].n_lefts == 0 - assert example[1].n_rights == 0 - assert example[1].left_edge.i == 1 - assert example[1].right_edge.i == 1 - assert example[1].head.i == 4 + assert tokens[1].n_lefts == 0 + assert tokens[1].n_rights == 0 + assert tokens[1].left_edge.i == 1 + assert tokens[1].right_edge.i == 1 + assert tokens[1].head.i == 4 - assert example[2].n_lefts == 0 - assert example[2].n_rights == 0 - assert example[2].left_edge.i == 2 - assert example[2].right_edge.i == 2 - assert example[2].head.i == 4 + assert tokens[2].n_lefts == 0 + assert tokens[2].n_rights == 0 + assert tokens[2].left_edge.i == 2 + assert tokens[2].right_edge.i == 2 + assert tokens[2].head.i == 4 - assert example[3].n_lefts == 0 - assert example[3].n_rights == 0 - assert example[3].left_edge.i == 3 - assert example[3].right_edge.i == 3 - assert example[3].head.i == 4 + assert tokens[3].n_lefts == 0 + assert tokens[3].n_rights == 0 + assert tokens[3].left_edge.i == 3 + assert tokens[3].right_edge.i == 3 + assert tokens[3].head.i == 4 - assert example[4].n_lefts == 4 - assert example[4].n_rights == 0 - assert example[4].left_edge.i == 0 - assert example[4].right_edge.i == 4 - assert example[4].head.i == 4 + assert tokens[4].n_lefts == 4 + assert tokens[4].n_rights == 0 + assert tokens[4].left_edge.i == 0 + assert tokens[4].right_edge.i == 4 + assert tokens[4].head.i == 4 diff --git a/spacy/tests/parser/test_parse_navigate.py b/spacy/tests/parser/test_parse_navigate.py index a0944c286..4d909f0d6 100644 --- a/spacy/tests/parser/test_parse_navigate.py +++ b/spacy/tests/parser/test_parse_navigate.py @@ -1,35 +1,74 @@ +# coding: utf-8 from __future__ import unicode_literals -from os import path -import io + +from ..util import get_doc import pytest @pytest.fixture -def sun_text(): - with io.open(path.join(path.dirname(__file__), '..', 'sun.txt'), 'r', - encoding='utf8') as file_: - text = file_.read() - return text +def text(): + return u""" +It was a bright cold day in April, and the clocks were striking thirteen. +Winston Smith, his chin nuzzled into his breast in an effort to escape the +vile wind, slipped quickly through the glass doors of Victory Mansions, +though not quickly enough to prevent a swirl of gritty dust from entering +along with him. + +The hallway smelt of boiled cabbage and old rag mats. At one end of it a +coloured poster, too large for indoor display, had been tacked to the wall. +It depicted simply an enormous face, more than a metre wide: the face of a +man of about forty-five, with a heavy black moustache and ruggedly handsome +features. Winston made for the stairs. It was no use trying the lift. Even at +the best of times it was seldom working, and at present the electric current +was cut off during daylight hours. It was part of the economy drive in +preparation for Hate Week. The flat was seven flights up, and Winston, who +was thirty-nine and had a varicose ulcer above his right ankle, went slowly, +resting several times on the way. On each landing, opposite the lift-shaft, +the poster with the enormous face gazed from the wall. It was one of those +pictures which are so contrived that the eyes follow you about when you move. +BIG BROTHER IS WATCHING YOU, the caption beneath it ran. +""" -@pytest.mark.models -def test_consistency(EN, sun_text): - tokens = EN(sun_text) - for head in tokens: +@pytest.fixture +def heads(): + return [1, 1, 0, 3, 2, 1, -4, -1, -1, -7, -8, 1, -10, 2, 1, -3, -1, -15, + -1, 1, 4, -1, 1, -3, 0, -1, 1, -2, -4, 1, -2, 1, -2, 3, -1, 1, + -4, -13, -14, -1, -2, 2, 1, -3, -1, 1, -2, -9, -1, 3, 1, 1, -14, + 1, -2, 1, -2, -1, 1, -2, -6, -1, -1, -2, -1, -1, -42, -1, 2, 1, + 0, -1, 1, -2, -1, 2, 1, -4, -8, 0, 1, -2, -1, -1, 3, -1, 1, -6, + 9, 1, 7, -1, 1, -2, 3, 2, 1, -10, -1, 1, -2, -22, -1, 1, 0, -1, + 2, 1, -4, -1, -2, -1, 1, -2, -6, -7, 1, -9, -1, 2, -1, -3, -1, + 3, 2, 1, -4, -19, -24, 3, 2, 1, -4, -1, 1, 2, -1, -5, -34, 1, 0, + -1, 1, -2, -4, 1, 0, 1, -2, -1, 1, -2, -6, 1, 9, -1, 1, -3, -1, + -1, 3, 2, 1, 0, -1, -2, 7, -1, 5, 1, 3, -1, 1, -10, -1, -2, 1, + -2, -15, 1, 0, -1, -1, 2, 1, -3, -1, -1, -2, -1, 1, -2, -12, 1, + 1, 0, 1, -2, -1, -2, -3, 9, -1, 2, -1, -4, 2, 1, -3, -4, -15, 2, + 1, -3, -1, 2, 1, -3, -8, -9, -1, -2, -1, -4, 1, -2, -3, 1, -2, + -19, 17, 1, -2, 14, 13, 3, 2, 1, -4, 8, -1, 1, 5, -1, 2, 1, -3, + 0, -1, 1, -2, -4, 1, 0, -1, -1, 2, -1, -3, 1, -2, 1, -2, 3, 1, + 1, -4, -1, -2, 2, 1, -5, -19, -1, 1, 1, 0, 1, 6, -1, 1, -3, -1, + -1, -8, -9, -1] + + +def test_parser_parse_navigate_consistency(en_tokenizer, text, heads): + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + for head in doc: for child in head.lefts: assert child.head is head for child in head.rights: assert child.head is head -@pytest.mark.models -def test_child_consistency(EN, sun_text): - tokens = EN(sun_text) +def test_parser_parse_navigate_child_consistency(en_tokenizer, text, heads): + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) lefts = {} rights = {} - for head in tokens: + for head in doc: assert head.i not in lefts lefts[head.i] = set() for left in head.lefts: @@ -38,10 +77,10 @@ def test_child_consistency(EN, sun_text): rights[head.i] = set() for right in head.rights: rights[head.i].add(right.i) - for head in tokens: + for head in doc: assert head.n_rights == len(rights[head.i]) assert head.n_lefts == len(lefts[head.i]) - for child in tokens: + for child in doc: if child.i < child.head.i: assert child.i in lefts[child.head.i] assert child.i not in rights[child.head.i] @@ -56,12 +95,12 @@ def test_child_consistency(EN, sun_text): assert not children -@pytest.mark.models -def test_edges(EN, sun_text): - tokens = EN(sun_text) - for token in tokens: +def test_parser_parse_navigate_edges(en_tokenizer, text, heads): + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + for token in doc: subtree = list(token.subtree) - debug = '\t'.join((token.orth_, token.left_edge.orth_, subtree[0].orth_)) + debug = '\t'.join((token.text, token.left_edge.text, subtree[0].text)) assert token.left_edge == subtree[0], debug - debug = '\t'.join((token.orth_, token.right_edge.orth_, subtree[-1].orth_, token.right_edge.head.orth_)) + debug = '\t'.join((token.text, token.right_edge.text, subtree[-1].text, token.right_edge.head.text)) assert token.right_edge == subtree[-1], debug diff --git a/spacy/tests/parser/test_parser_pickle.py b/spacy/tests/parser/test_parser_pickle.py deleted file mode 100644 index 72e001eba..000000000 --- a/spacy/tests/parser/test_parser_pickle.py +++ /dev/null @@ -1,17 +0,0 @@ -import pytest - -import pickle -import cloudpickle - -import io - - -#@pytest.mark.models -#def test_pickle(EN): -# file_ = io.BytesIO() -# cloudpickle.dump(EN.parser, file_) -# -# file_.seek(0) -# -# loaded = pickle.load(file_) -# diff --git a/spacy/tests/parser/test_sbd.py b/spacy/tests/parser/test_sbd.py index 332147177..5ac6ecc6d 100644 --- a/spacy/tests/parser/test_sbd.py +++ b/spacy/tests/parser/test_sbd.py @@ -1,140 +1,58 @@ +# coding: utf-8 from __future__ import unicode_literals +from ...tokens import Doc +from ..util import get_doc, apply_transition_sequence + import pytest -from spacy.tokens import Doc -from spacy.syntax.nonproj import PseudoProjectivity -@pytest.mark.models -def test_single_period(EN): - string = 'A test sentence.' - words = EN(string) - assert len(words) == 4 - assert len(list(words.sents)) == 1 - assert sum(len(sent) for sent in words.sents) == len(words) +@pytest.mark.parametrize('text', ["A test sentence"]) +@pytest.mark.parametrize('punct', ['.', '!', '?', '']) +def test_parser_sbd_single_punct(en_tokenizer, text, punct): + heads = [2, 1, 0, -1] if punct else [2, 1, 0] + tokens = en_tokenizer(text + punct) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert len(doc) == 4 if punct else 3 + assert len(list(doc.sents)) == 1 + assert sum(len(sent) for sent in doc.sents) == len(doc) -@pytest.mark.models -def test_single_no_period(EN): - string = 'A test sentence' - words = EN(string) - assert len(words) == 3 - assert len(list(words.sents)) == 1 - assert sum(len(sent) for sent in words.sents) == len(words) +def test_parser_sentence_breaks(en_tokenizer, en_parser): + text = "This is a sentence . This is another one ." + heads = [1, 0, 1, -2, -3, 1, 0, 1, -2, -3] + deps = ['nsubj', 'ROOT', 'det', 'attr', 'punct', 'nsubj', 'ROOT', 'det', + 'attr', 'punct'] + transition = ['L-nsubj', 'S', 'L-det', 'R-attr', 'D', 'R-punct', 'B-ROOT', + 'L-nsubj', 'S', 'L-attr', 'R-attr', 'D', 'R-punct'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) + apply_transition_sequence(en_parser, doc, transition) -@pytest.mark.models -def test_single_exclamation(EN): - string = 'A test sentence!' - words = EN(string) - assert len(words) == 4 - assert len(list(words.sents)) == 1 - assert sum(len(sent) for sent in words.sents) == len(words) - - -@pytest.mark.models -def test_single_question(EN): - string = 'A test sentence?' - words = EN(string, tag=False, parse=True) - assert len(words) == 4 - assert len(list(words.sents)) == 1 - assert sum(len(sent) for sent in words.sents) == len(words) - - -@pytest.mark.models -def test_sentence_breaks(EN): - doc = EN.tokenizer.tokens_from_list(u'This is a sentence . This is another one .'.split(' ')) - EN.tagger(doc) - with EN.parser.step_through(doc) as stepwise: - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('L-nsubj') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('S') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('L-det') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('R-attr') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('D') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('R-punct') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('B-ROOT') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('L-nsubj') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('S') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('L-attr') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('R-attr') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('D') - assert EN.parser.moves.is_valid(stepwise.stcls,'B-ROOT') - stepwise.transition('R-punct') assert len(list(doc.sents)) == 2 - for tok in doc: - assert tok.dep != 0 or tok.is_space - assert [ tok.head.i for tok in doc ] == [1,1,3,1,1,6,6,8,6,6] + for token in doc: + assert token.dep != 0 or token.is_space + assert [token.head.i for token in doc ] == [1, 1, 3, 1, 1, 6, 6, 8, 6, 6] -def apply_transition_sequence(model, doc, sequence): - with model.parser.step_through(doc) as stepwise: - for transition in sequence: - stepwise.transition(transition) - +# Currently, there's no way of setting the serializer data for the parser +# without loading the models, so we can't remove the model dependency here yet. @pytest.mark.models -def test_sbd_serialization_projective(EN): - """ - test that before and after serialization, the sentence boundaries are the same. - """ - - example = EN.tokenizer.tokens_from_list(u"I bought a couch from IKEA. It was n't very comfortable .".split(' ')) - EN.tagger(example) - apply_transition_sequence(EN, example, ['L-nsubj','S','L-det','R-dobj','D','R-prep','R-pobj','B-ROOT','L-nsubj','R-neg','D','S','L-advmod','R-acomp','D','R-punct']) - - example_serialized = Doc(EN.vocab).from_bytes(example.to_bytes()) - - assert example.to_bytes() == example_serialized.to_bytes() - assert [s.text for s in example.sents] == [s.text for s in example_serialized.sents] - - -def test_sbd_empty_string(EN): - '''Test Issue #309: SBD fails on empty string - ''' - doc = EN(u' ') - doc.is_parsed = True - assert len(doc) == 1 - sents = list(doc.sents) - assert len(sents) == 1 - - -# TODO: -# @pytest.mark.models -# def test_sbd_serialization_nonprojective(DE): -# """ -# test that before and after serialization, the sentence boundaries are the same in a non-projective sentence. -# """ -# example = EN.tokenizer.tokens_from_list(u"Den Mann hat Peter nicht gesehen . Er war zu langsam .".split(' ')) -# EN.tagger(example) -# apply_transition_sequence(EN, example, ['L-nk','L-oa||oc','R-sb','D','S','L-ng','B-ROOT','L-nsubj','R-neg','D','S','L-advmod','R-acomp','D','R-punct']) -# print [(t.dep_,t.head.i) for t in example] - -# example_serialized = Doc(EN.vocab).from_bytes(example.to_bytes()) - -# assert example.to_bytes() == example_serialized.to_bytes() -# assert [s.text for s in example.sents] == [s.text for s in example_serialized.sents] - - - - - - - - - - - +def test_parser_sbd_serialization_projective(EN): + """Test that before and after serialization, the sentence boundaries are + the same.""" + text = "I bought a couch from IKEA It wasn't very comfortable." + transition = ['L-nsubj', 'S', 'L-det', 'R-dobj', 'D', 'R-prep', 'R-pobj', + 'B-ROOT', 'L-nsubj', 'R-neg', 'D', 'S', 'L-advmod', + 'R-acomp', 'D', 'R-punct'] + doc = EN.tokenizer(text) + apply_transition_sequence(EN.parser, doc, transition) + doc_serialized = Doc(EN.vocab).from_bytes(doc.to_bytes()) + assert doc.is_parsed == True + assert doc_serialized.is_parsed == True + assert doc.to_bytes() == doc_serialized.to_bytes() + assert [s.text for s in doc.sents] == [s.text for s in doc_serialized.sents] diff --git a/spacy/tests/parser/test_sbd_prag.py b/spacy/tests/parser/test_sbd_prag.py new file mode 100644 index 000000000..0e537122c --- /dev/null +++ b/spacy/tests/parser/test_sbd_prag.py @@ -0,0 +1,71 @@ +# encoding: utf-8 +from __future__ import unicode_literals + +import pytest + + +TEST_CASES = [ + ("Hello World. My name is Jonas.", ["Hello World.", "My name is Jonas."]), + ("What is your name? My name is Jonas.", ["What is your name?", "My name is Jonas."]), + ("There it is! I found it.", ["There it is!", "I found it."]), + ("My name is Jonas E. Smith.", ["My name is Jonas E. Smith."]), + ("Please turn to p. 55.", ["Please turn to p. 55."]), + ("Were Jane and co. at the party?", ["Were Jane and co. at the party?"]), + ("They closed the deal with Pitt, Briggs & Co. at noon.", ["They closed the deal with Pitt, Briggs & Co. at noon."]), + pytest.mark.xfail(("Let's ask Jane and co. They should know.", ["Let's ask Jane and co.", "They should know."])), + ("They closed the deal with Pitt, Briggs & Co. It closed yesterday.", ["They closed the deal with Pitt, Briggs & Co.", "It closed yesterday."]), + ("I can see Mt. Fuji from here.", ["I can see Mt. Fuji from here."]), + pytest.mark.xfail(("St. Michael's Church is on 5th st. near the light.", ["St. Michael's Church is on 5th st. near the light."])), + ("That is JFK Jr.'s book.", ["That is JFK Jr.'s book."]), + ("I visited the U.S.A. last year.", ["I visited the U.S.A. last year."]), + pytest.mark.xfail(("I live in the E.U. How about you?", ["I live in the E.U.", "How about you?"])), + pytest.mark.xfail(("I live in the U.S. How about you?", ["I live in the U.S.", "How about you?"])), + ("I work for the U.S. Government in Virginia.", ["I work for the U.S. Government in Virginia."]), + ("I have lived in the U.S. for 20 years.", ["I have lived in the U.S. for 20 years."]), + pytest.mark.xfail(("At 5 a.m. Mr. Smith went to the bank. He left the bank at 6 P.M. Mr. Smith then went to the store.", ["At 5 a.m. Mr. Smith went to the bank.", "He left the bank at 6 P.M.", "Mr. Smith then went to the store."])), + ("She has $100.00 in her bag.", ["She has $100.00 in her bag."]), + ("She has $100.00. It is in her bag.", ["She has $100.00.", "It is in her bag."]), + ("He teaches science (He previously worked for 5 years as an engineer.) at the local University.", ["He teaches science (He previously worked for 5 years as an engineer.) at the local University."]), + pytest.mark.xfail(("Her email is Jane.Doe@example.com. I sent her an email.", ["Her email is Jane.Doe@example.com.", "I sent her an email."])), + pytest.mark.xfail(("The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out.", ["The site is: https://www.example.50.com/new-site/awesome_content.html.", "Please check it out."])), + pytest.mark.xfail(("She turned to him, 'This is great.' she said.", ["She turned to him, 'This is great.' she said."])), + ('She turned to him, "This is great." she said.', ['She turned to him, "This is great." she said.']), + ('She turned to him, "This is great." She held the book out to show him.', ['She turned to him, "This is great."', "She held the book out to show him."]), + ("Hello!! Long time no see.", ["Hello!!", "Long time no see."]), + ("Hello?? Who is there?", ["Hello??", "Who is there?"]), + ("Hello!? Is that you?", ["Hello!?", "Is that you?"]), + ("Hello?! Is that you?", ["Hello?!", "Is that you?"]), + pytest.mark.xfail(("1.) The first item 2.) The second item", ["1.) The first item", "2.) The second item"])), + pytest.mark.xfail(("1.) The first item. 2.) The second item.", ["1.) The first item.", "2.) The second item."])), + pytest.mark.xfail(("1) The first item 2) The second item", ["1) The first item", "2) The second item"])), + pytest.mark.xfail(("1) The first item. 2) The second item.", ["1) The first item.", "2) The second item."])), + pytest.mark.xfail(("1. The first item 2. The second item", ["1. The first item", "2. The second item"])), + pytest.mark.xfail(("1. The first item. 2. The second item.", ["1. The first item.", "2. The second item."])), + pytest.mark.xfail(("• 9. The first item • 10. The second item", ["• 9. The first item", "• 10. The second item"])), + pytest.mark.xfail(("⁃9. The first item ⁃10. The second item", ["⁃9. The first item", "⁃10. The second item"])), + pytest.mark.xfail(("a. The first item b. The second item c. The third list item", ["a. The first item", "b. The second item", "c. The third list item"])), + ("This is a sentence\ncut off in the middle because pdf.", ["This is a sentence\ncut off in the middle because pdf."]), + ("It was a cold \nnight in the city.", ["It was a cold \nnight in the city."]), + pytest.mark.xfail(("features\ncontact manager\nevents, activities\n", ["features", "contact manager", "events, activities"])), + ("You can find it at N°. 1026.253.553. That is where the treasure is.", ["You can find it at N°. 1026.253.553.", "That is where the treasure is."]), + ("She works at Yahoo! in the accounting department.", ["She works at Yahoo! in the accounting department."]), + pytest.mark.xfail(("We make a good team, you and I. Did you see Albert I. Jones yesterday?", ["We make a good team, you and I.", "Did you see Albert I. Jones yesterday?"])), + pytest.mark.xfail(("Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”", ["Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”"])), + (""""Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).""", ['"Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).']), + pytest.mark.xfail(("If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence.", ["If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .", "Next sentence."])), + ("I never meant that.... She left the store.", ["I never meant that....", "She left the store."]), + pytest.mark.xfail(("I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.", ["I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it."])), + pytest.mark.xfail(("One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . .", ["One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds.", ". . . The practice was not abandoned. . . ."])), + pytest.mark.xfail(("Hello world.Today is Tuesday.Mr. Smith went to the store and bought 1,000.That is a lot.", ["Hello world.", "Today is Tuesday.", "Mr. Smith went to the store and bought 1,000.", "That is a lot."])) +] + +@pytest.mark.slow +@pytest.mark.models +@pytest.mark.parametrize('text,expected_sents', TEST_CASES) +def test_parser_sbd_prag(EN, text, expected_sents): + """SBD tests from Pragmatic Segmenter""" + doc = EN(text) + sents = [] + for sent in doc.sents: + sents.append(''.join(doc[i].string for i in range(sent.start, sent.end)).strip()) + assert sents == expected_sents diff --git a/spacy/tests/parser/test_space_attachment.py b/spacy/tests/parser/test_space_attachment.py index 102618446..bbe19b921 100644 --- a/spacy/tests/parser/test_space_attachment.py +++ b/spacy/tests/parser/test_space_attachment.py @@ -1,90 +1,75 @@ +# coding: utf-8 from __future__ import unicode_literals +from ...tokens.doc import Doc +from ...attrs import HEAD +from ..util import get_doc, apply_transition_sequence + import pytest -import numpy -from spacy.attrs import HEAD - -def make_doc(EN, sentstr): - sent = sentstr.split(' ') - doc = EN.tokenizer.tokens_from_list(sent) - EN.tagger(doc) - return doc -@pytest.mark.models -def test_space_attachment(EN): - sentence = 'This is a test.\nTo ensure spaces are attached well.' - doc = EN(sentence) +def test_parser_space_attachment(en_tokenizer): + text = "This is a test.\nTo ensure spaces are attached well." + heads = [1, 0, 1, -2, -3, -1, 1, 4, -1, 2, 1, 0, -1, -2] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) for sent in doc.sents: if len(sent) == 1: assert not sent[-1].is_space -@pytest.mark.models -def test_sentence_space(EN): - text = ('''I look forward to using Thingamajig. I've been told it will ''' - '''make my life easier...''') - doc = EN(text) +def test_parser_sentence_space(en_tokenizer): + text = "I look forward to using Thingamajig. I've been told it will make my life easier..." + heads = [1, 0, -1, -2, -1, -1, -5, -1, 3, 2, 1, 0, 2, 1, -3, 1, 1, -3, -7] + deps = ['nsubj', 'ROOT', 'advmod', 'prep', 'pcomp', 'dobj', 'punct', '', + 'nsubjpass', 'aux', 'auxpass', 'ROOT', 'nsubj', 'aux', 'ccomp', + 'poss', 'nsubj', 'ccomp', 'punct'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) assert len(list(doc.sents)) == 2 -@pytest.mark.models -def test_space_attachment_leading_space(EN): - # leading space token - doc = make_doc(EN, '\t \n This is a sentence .') - assert doc[0].is_space - assert doc[1].is_space - assert doc[2].orth_ == 'This' - with EN.parser.step_through(doc) as stepwise: - pass - assert doc[0].head.i == 2 - assert doc[1].head.i == 2 - assert stepwise.stack == set([2]) +def test_parser_space_attachment_leading(en_tokenizer, en_parser): + text = "\t \n This is a sentence ." + heads = [1, 1, 0, 1, -2, -3] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, text.split(' '), heads=heads) + assert doc[0].is_space + assert doc[1].is_space + assert doc[2].text == 'This' + with en_parser.step_through(doc) as stepwise: + pass + assert doc[0].head.i == 2 + assert doc[1].head.i == 2 + assert stepwise.stack == set([2]) -@pytest.mark.models -def test_space_attachment_intermediate_and_trailing_space(EN): - # intermediate and trailing space tokens - doc = make_doc(EN, 'This is \t a \t\n \n sentence . \n\n \n') - assert doc[2].is_space - assert doc[4].is_space - assert doc[5].is_space - assert doc[8].is_space - assert doc[9].is_space - with EN.parser.step_through(doc) as stepwise: - stepwise.transition('L-nsubj') - stepwise.transition('S') - stepwise.transition('L-det') - stepwise.transition('R-attr') - stepwise.transition('D') - stepwise.transition('R-punct') - assert stepwise.stack == set([]) - for tok in doc: - assert tok.dep != 0 or tok.is_space - assert [ tok.head.i for tok in doc ] == [1,1,1,6,3,3,1,1,7,7] +def test_parser_space_attachment_intermediate_trailing(en_tokenizer, en_parser): + text = "This is \t a \t\n \n sentence . \n\n \n" + heads = [1, 0, -1, 2, -1, -4, -5, -1] + transition = ['L-nsubj', 'S', 'L-det', 'R-attr', 'D', 'R-punct'] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, text.split(' '), heads=heads) + assert doc[2].is_space + assert doc[4].is_space + assert doc[5].is_space + assert doc[8].is_space + assert doc[9].is_space + + apply_transition_sequence(en_parser, doc, transition) + for token in doc: + assert token.dep != 0 or token.is_space + assert [token.head.i for token in doc] == [1, 1, 1, 6, 3, 3, 1, 1, 7, 7] -@pytest.mark.models -def test_space_attachment_one_space_sentence(EN): - # one space token sentence - doc = make_doc(EN, '\n') - assert len(doc) == 1 - with EN.parser.step_through(doc) as _: - pass - assert doc[0].is_space - assert doc[0].head.i == 0 - - -@pytest.mark.models -def test_space_attachment_only_space_sentence(EN): - # space-exclusive sentence - doc = make_doc(EN, '\n \t \n\n \t') - assert len(doc) == 4 - for tok in doc: - assert tok.is_space - with EN.parser.step_through(doc) as _: - pass - # all tokens are attached to the last one - for tok in doc: - assert tok.head.i == 3 +@pytest.mark.parametrize('text,length', [(['\n'], 1), + (['\n', '\t', '\n\n', '\t'], 4)]) +def test_parser_space_attachment_space(en_tokenizer, en_parser, text, length): + doc = Doc(en_parser.vocab, words=text) + assert len(doc) == length + with en_parser.step_through(doc) as _: + pass + assert doc[0].is_space + for token in doc: + assert token.head.i == length-1 diff --git a/spacy/tests/parser/test_subtree.py b/spacy/tests/parser/test_subtree.py deleted file mode 100644 index 8502a0ac9..000000000 --- a/spacy/tests/parser/test_subtree.py +++ /dev/null @@ -1,17 +0,0 @@ -from __future__ import unicode_literals -import pytest - - -@pytest.mark.models -def test_subtrees(EN): - sent = EN('The four wheels on the bus turned quickly') - wheels = sent[2] - bus = sent[5] - assert len(list(wheels.lefts)) == 2 - assert len(list(wheels.rights)) == 1 - assert len(list(wheels.children)) == 3 - assert len(list(bus.lefts)) == 1 - assert len(list(bus.rights)) == 0 - assert len(list(bus.children)) == 1 - - assert len(list(wheels.subtree)) == 6 diff --git a/spacy/tests/prag_sbd.py b/spacy/tests/prag_sbd.py deleted file mode 100644 index 3a74bc9da..000000000 --- a/spacy/tests/prag_sbd.py +++ /dev/null @@ -1,247 +0,0 @@ -# encoding: utf-8 -# SBD tests from "Pragmatic Segmenter" -from __future__ import unicode_literals - -from spacy.en import English - -EN = English() - - -def get_sent_strings(text): - tokens = EN(text) - sents = [] - for sent in tokens.sents: - sents.append(''.join(tokens[i].string - for i in range(sent.start, sent.end)).strip()) - return sents - - -def test_gr1(): - sents = get_sent_strings("Hello World. My name is Jonas.") - assert sents == ["Hello World.", "My name is Jonas."] - - -def test_gr2(): - sents = get_sent_strings("What is your name? My name is Jonas.") - assert sents == ["What is your name?", "My name is Jonas."] - - -def test_gr3(): - sents = get_sent_strings("There it is! I found it.") - assert sents == ["There it is!", "I found it."] - - -def test_gr4(): - sents = get_sent_strings("My name is Jonas E. Smith.") - assert sents == ["My name is Jonas E. Smith."] - - -def test_gr5(): - sents = get_sent_strings("Please turn to p. 55.") - assert sents == ["Please turn to p. 55."] - - -def test_gr6(): - sents = get_sent_strings("Were Jane and co. at the party?") - assert sents == ["Were Jane and co. at the party?"] - - -def test_gr7(): - sents = get_sent_strings("They closed the deal with Pitt, Briggs & Co. at noon.") - assert sents == ["They closed the deal with Pitt, Briggs & Co. at noon."] - - -def test_gr8(): - sents = get_sent_strings("Let's ask Jane and co. They should know.") - assert sents == ["Let's ask Jane and co.", "They should know."] - - -def test_gr9(): - sents = get_sent_strings("They closed the deal with Pitt, Briggs & Co. It closed yesterday.") - assert sents == ["They closed the deal with Pitt, Briggs & Co.", "It closed yesterday."] - - -def test_gr10(): - sents = get_sent_strings("I can see Mt. Fuji from here.") - assert sents == ["I can see Mt. Fuji from here."] - - -def test_gr11(): - sents = get_sent_strings("St. Michael's Church is on 5th st. near the light.") - assert sents == ["St. Michael's Church is on 5th st. near the light."] - - -def test_gr12(): - sents = get_sent_strings("That is JFK Jr.'s book.") - assert sents == ["That is JFK Jr.'s book."] - - -def test_gr13(): - sents = get_sent_strings("I visited the U.S.A. last year.") - assert sents == ["I visited the U.S.A. last year."] - - -def test_gr14(): - sents = get_sent_strings("I live in the E.U. How about you?") - assert sents == ["I live in the E.U.", "How about you?"] - - -def test_gr15(): - sents = get_sent_strings("I live in the U.S. How about you?") - assert sents == ["I live in the U.S.", "How about you?"] - - -def test_gr16(): - sents = get_sent_strings("I work for the U.S. Government in Virginia.") - assert sents == ["I work for the U.S. Government in Virginia."] - - -def test_gr17(): - sents = get_sent_strings("I have lived in the U.S. for 20 years.") - assert sents == ["I have lived in the U.S. for 20 years."] - - -def test_gr18(): - sents = get_sent_strings("At 5 a.m. Mr. Smith went to the bank. He left the bank at 6 P.M. Mr. Smith then went to the store.") - assert sents == ["At 5 a.m. Mr. Smith went to the bank.", "He left the bank at 6 P.M.", "Mr. Smith then went to the store."] - - -def test_gr19(): - sents = get_sent_strings("She has $100.00 in her bag.") - assert sents == ["She has $100.00 in her bag."] - - -def test_gr20(): - sents = get_sent_strings("She has $100.00. It is in her bag.") - assert sents == ["She has $100.00.", "It is in her bag."] - - -def test_gr21(): - sents = get_sent_strings("He teaches science (He previously worked for 5 years as an engineer.) at the local University.") - assert sents == ["He teaches science (He previously worked for 5 years as an engineer.) at the local University."] - - -def test_gr22(): - sents = get_sent_strings("Her email is Jane.Doe@example.com. I sent her an email.") - assert sents == ["Her email is Jane.Doe@example.com.", "I sent her an email."] - - -def test_gr23(): - sents = get_sent_strings("The site is: https://www.example.50.com/new-site/awesome_content.html. Please check it out.") - assert sents == ["The site is: https://www.example.50.com/new-site/awesome_content.html.", "Please check it out."] - -def test_gr24(): - sents = get_sent_strings("She turned to him, 'This is great.' she said.") - assert sents == ["She turned to him, 'This is great.' she said."] - -def test_gr25(): - sents = get_sent_strings('She turned to him, "This is great." she said.') - assert sents == ['She turned to him, "This is great." she said.'] - -def test_gr26(): - sents = get_sent_strings('She turned to him, "This is great." She held the book out to show him.') - assert sents == ['She turned to him, "This is great."', "She held the book out to show him."] - -def test_gr27(): - sents = get_sent_strings("Hello!! Long time no see.") - assert sents == ["Hello!!", "Long time no see."] - -def test_gr28(): - sents = get_sent_strings("Hello?? Who is there?") - assert sents == ["Hello??", "Who is there?"] - -def test_gr29(): - sents = get_sent_strings("Hello!? Is that you?") - assert sents == ["Hello!?", "Is that you?"] - -def test_gr30(): - sents = get_sent_strings("Hello?! Is that you?") - assert sents == ["Hello?!", "Is that you?"] - -def test_gr31(): - sents = get_sent_strings("1.) The first item 2.) The second item") - assert sents == ["1.) The first item", "2.) The second item"] - -def test_gr32(): - sents = get_sent_strings("1.) The first item. 2.) The second item.") - assert sents == ["1.) The first item.", "2.) The second item."] - -def test_gr33(): - sents = get_sent_strings("1) The first item 2) The second item") - assert sents == ["1) The first item", "2) The second item"] - -def test_gr34(): - sents = get_sent_strings("1) The first item. 2) The second item.") - assert sents == ["1) The first item.", "2) The second item."] - -def test_gr35(): - sents = get_sent_strings("1. The first item 2. The second item") - assert sents == ["1. The first item", "2. The second item"] - -def test_gr36(): - sents = get_sent_strings("1. The first item. 2. The second item.") - assert sents == ["1. The first item.", "2. The second item."] - -def test_gr37(): - sents = get_sent_strings("• 9. The first item • 10. The second item") - assert sents == ["• 9. The first item", "• 10. The second item"] - -def test_gr38(): - sents = get_sent_strings("⁃9. The first item ⁃10. The second item") - assert sents == ["⁃9. The first item", "⁃10. The second item"] - -def test_gr39(): - sents = get_sent_strings("a. The first item b. The second item c. The third list item") - assert sents == ["a. The first item", "b. The second item", "c. The third list item"] - -def test_gr40(): - sents = get_sent_strings("This is a sentence\ncut off in the middle because pdf.") - assert sents == ["This is a sentence\ncut off in the middle because pdf."] - -def test_gr41(): - sents = get_sent_strings("It was a cold \nnight in the city.") - assert sents == ["It was a cold \nnight in the city."] - -def test_gr42(): - sents = get_sent_strings("features\ncontact manager\nevents, activities\n") - assert sents == ["features", "contact manager", "events, activities"] - -def test_gr43(): - sents = get_sent_strings("You can find it at N°. 1026.253.553. That is where the treasure is.") - assert sents == ["You can find it at N°. 1026.253.553.", "That is where the treasure is."] - -def test_gr44(): - sents = get_sent_strings("She works at Yahoo! in the accounting department.") - assert sents == ["She works at Yahoo! in the accounting department."] - -def test_gr45(): - sents = get_sent_strings("We make a good team, you and I. Did you see Albert I. Jones yesterday?") - assert sents == ["We make a good team, you and I.", "Did you see Albert I. Jones yesterday?"] - -def test_gr46(): - sents = get_sent_strings("Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”") - assert sents == ["Thoreau argues that by simplifying one’s life, “the laws of the universe will appear less complex. . . .”"] - -def test_gr47(): - sents = get_sent_strings(""""Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).""") - assert sents == ['"Bohr [...] used the analogy of parallel stairways [...]" (Smith 55).'] - -def test_gr48(): - sents = get_sent_strings("If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . . Next sentence.") - assert sents == ["If words are left off at the end of a sentence, and that is all that is omitted, indicate the omission with ellipsis marks (preceded and followed by a space) and then indicate the end of the sentence with a period . . . .", "Next sentence."] - -def test_gr49(): - sents = get_sent_strings("I never meant that.... She left the store.") - assert sents == ["I never meant that....", "She left the store."] - -def test_gr50(): - sents = get_sent_strings("I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it.") - assert sents == ["I wasn’t really ... well, what I mean...see . . . what I'm saying, the thing is . . . I didn’t mean it."] - -def test_gr51(): - sents = get_sent_strings("One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds. . . . The practice was not abandoned. . . .") - assert sents == ["One further habit which was somewhat weakened . . . was that of combining words into self-interpreting compounds.", ". . . The practice was not abandoned. . . ."] - -def test_gr52(): - sents = get_sent_strings("Hello world.Today is Tuesday.Mr. Smith went to the store and bought 1,000.That is a lot.",) - assert sents == ["Hello world.", "Today is Tuesday.", "Mr. Smith went to the store and bought 1,000.", "That is a lot."] diff --git a/spacy/tests/print/__init__.py b/spacy/tests/print/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/spacy/tests/print/test_print.py b/spacy/tests/print/test_print.py deleted file mode 100644 index 4740f44e6..000000000 --- a/spacy/tests/print/test_print.py +++ /dev/null @@ -1,98 +0,0 @@ -# -*- coding: utf-8 -*- -import pytest - - -def test_print_doc(EN): - try: - doc = EN(u'I sat down for coffee at the coffee store') - print(doc) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_doc(EN): - try: - doc = EN(u'I sat down for coffee at the coffee store') - print(repr(doc)) - except Exception: - pytest.fail("Printing failed") - - -def test_print_doc_unicode(EN): - try: - doc = EN(u'I sat down for coffee at the café') - print(doc) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_doc_unicode(EN): - try: - doc = EN(u'I sat down for coffee at the café') - print(repr(doc)) - except Exception: - pytest.fail("Printing failed") - - -def test_print_span(EN): - try: - span = EN(u'I sat down for coffee at the coffee store')[-3:] - print(span) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_span(EN): - try: - span = EN(u'I sat down for coffee at the coffee store')[-3:] - print(repr(span)) - except Exception: - pytest.fail("Printing failed") - - -def test_print_span_unicode(EN): - try: - span = EN(u'I sat down for coffee at the café')[-3:] - print(span) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_span_unicode(EN): - try: - span = EN(u'I sat down for coffee at the café')[-3:] - print(repr(span)) - except Exception: - pytest.fail("Printing failed") - - -def test_print_token(EN): - try: - token = EN(u'I sat down for coffee at the coffee store')[-1] - print(token) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_token(EN): - try: - token = EN(u'I sat down for coffee at the coffee store')[-1] - print(repr(token)) - except Exception: - pytest.fail("Printing failed") - - -def test_print_token_unicode(EN): - try: - token = EN(u'I sat down for coffee at the café')[-1] - print(token) - except Exception: - pytest.fail("Printing failed") - - -def test_repr_token_unicode(EN): - try: - token = EN(u'I sat down for coffee at the café')[-1] - print(repr(token)) - except Exception: - pytest.fail("Printing failed") diff --git a/spacy/tests/regression/test_issue118.py b/spacy/tests/regression/test_issue118.py new file mode 100644 index 000000000..ffdade1d0 --- /dev/null +++ b/spacy/tests/regression/test_issue118.py @@ -0,0 +1,54 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...matcher import Matcher +from ...attrs import ORTH, LOWER + +import pytest + + +pattern1 = [[{LOWER: 'celtics'}], [{LOWER: 'boston'}, {LOWER: 'celtics'}]] +pattern2 = [[{LOWER: 'boston'}, {LOWER: 'celtics'}], [{LOWER: 'celtics'}]] +pattern3 = [[{LOWER: 'boston'}], [{LOWER: 'boston'}, {LOWER: 'celtics'}]] +pattern4 = [[{LOWER: 'boston'}, {LOWER: 'celtics'}], [{LOWER: 'boston'}]] + + +@pytest.fixture +def doc(en_tokenizer): + text = "how many points did lebron james score against the boston celtics last night" + doc = en_tokenizer(text) + return doc + + +@pytest.mark.parametrize('pattern', [pattern1, pattern2]) +def test_issue118(doc, pattern): + """Test a bug that arose from having overlapping matches""" + ORG = doc.vocab.strings['ORG'] + matcher = Matcher(doc.vocab, {'BostonCeltics': ('ORG', {}, pattern)}) + + assert len(list(doc.ents)) == 0 + matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] + assert matches == [(ORG, 9, 11), (ORG, 10, 11)] + doc.ents = matches[:1] + ents = list(doc.ents) + assert len(ents) == 1 + assert ents[0].label == ORG + assert ents[0].start == 9 + assert ents[0].end == 11 + + +@pytest.mark.parametrize('pattern', [pattern3, pattern4]) +def test_issue118_prefix_reorder(doc, pattern): + """Test a bug that arose from having overlapping matches""" + ORG = doc.vocab.strings['ORG'] + matcher = Matcher(doc.vocab, {'BostonCeltics': ('ORG', {}, pattern)}) + + assert len(list(doc.ents)) == 0 + matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] + doc.ents += tuple(matches)[1:] + assert matches == [(ORG, 9, 10), (ORG, 9, 11)] + ents = doc.ents + assert len(ents) == 1 + assert ents[0].label == ORG + assert ents[0].start == 9 + assert ents[0].end == 11 diff --git a/spacy/tests/regression/test_issue242.py b/spacy/tests/regression/test_issue242.py new file mode 100644 index 000000000..a4acf04b3 --- /dev/null +++ b/spacy/tests/regression/test_issue242.py @@ -0,0 +1,26 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...matcher import Matcher +from ...attrs import LOWER + +import pytest + + +def test_issue242(en_tokenizer): + """Test overlapping multi-word phrases.""" + text = "There are different food safety standards in different countries." + patterns = [[{LOWER: 'food'}, {LOWER: 'safety'}], + [{LOWER: 'safety'}, {LOWER: 'standards'}]] + + doc = en_tokenizer(text) + matcher = Matcher(doc.vocab) + matcher.add('FOOD', 'FOOD', {}, patterns) + + matches = [(ent_type, start, end) for ent_id, ent_type, start, end in matcher(doc)] + doc.ents += tuple(matches) + match1, match2 = matches + assert match1[1] == 3 + assert match1[2] == 5 + assert match2[1] == 4 + assert match2[2] == 6 diff --git a/spacy/tests/regression/test_issue309.py b/spacy/tests/regression/test_issue309.py new file mode 100644 index 000000000..84756c6b1 --- /dev/null +++ b/spacy/tests/regression/test_issue309.py @@ -0,0 +1,14 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..util import get_doc + + +def test_issue309(en_tokenizer): + """Test Issue #309: SBD fails on empty string""" + tokens = en_tokenizer(" ") + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=[0], deps=['ROOT']) + doc.is_parsed = True + assert len(doc) == 1 + sents = list(doc.sents) + assert len(sents) == 1 diff --git a/spacy/tests/regression/test_issue351.py b/spacy/tests/regression/test_issue351.py index 84d4398c5..95dbec35a 100644 --- a/spacy/tests/regression/test_issue351.py +++ b/spacy/tests/regression/test_issue351.py @@ -1,14 +1,9 @@ +# coding: utf-8 from __future__ import unicode_literals -from ...en import English import pytest -@pytest.fixture -def en_tokenizer(): - return English.Defaults.create_tokenizer() - - def test_issue351(en_tokenizer): doc = en_tokenizer(" This is a cat.") assert doc[0].idx == 0 diff --git a/spacy/tests/regression/test_issue360.py b/spacy/tests/regression/test_issue360.py index 018289030..a2c007f16 100644 --- a/spacy/tests/regression/test_issue360.py +++ b/spacy/tests/regression/test_issue360.py @@ -1,14 +1,10 @@ +# coding: utf-8 from __future__ import unicode_literals -from ...en import English import pytest -@pytest.fixture -def en_tokenizer(): - return English.Defaults.create_tokenizer() - - -def test_big_ellipsis(en_tokenizer): - tokens = en_tokenizer(u'$45...............Asking') +def test_issue360(en_tokenizer): + """Test tokenization of big ellipsis""" + tokens = en_tokenizer('$45...............Asking') assert len(tokens) > 2 diff --git a/spacy/tests/regression/test_issue361.py b/spacy/tests/regression/test_issue361.py new file mode 100644 index 000000000..cc07567f4 --- /dev/null +++ b/spacy/tests/regression/test_issue361.py @@ -0,0 +1,11 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text1,text2', [("cat", "dog")]) +def test_issue361(en_vocab, text1, text2): + """Test Issue #361: Equality of lexemes""" + assert en_vocab[text1] == en_vocab[text1] + assert en_vocab[text1] != en_vocab[text2] diff --git a/spacy/tests/regression/test_issue401.py b/spacy/tests/regression/test_issue401.py new file mode 100644 index 000000000..d3fa3c00f --- /dev/null +++ b/spacy/tests/regression/test_issue401.py @@ -0,0 +1,14 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.models +@pytest.mark.parametrize('text,i', [("Jane's got a new car", 1), + ("Jane thinks that's a nice car", 3)]) +def test_issue401(EN, text, i): + """Text that 's in contractions is not lemmatized as '.""" + tokens = EN(text) + assert tokens[i].lemma_ != "'" diff --git a/spacy/tests/regression/test_issue429.py b/spacy/tests/regression/test_issue429.py index b3e6b2831..5b76f05e6 100644 --- a/spacy/tests/regression/test_issue429.py +++ b/spacy/tests/regression/test_issue429.py @@ -1,29 +1,25 @@ +# coding: utf-8 from __future__ import unicode_literals -import pytest -import spacy -from spacy.attrs import ORTH +from ...attrs import ORTH +from ...matcher import Matcher + +import pytest @pytest.mark.models -def test_issue429(): - - nlp = spacy.load('en', parser=False) - - +def test_issue429(EN): def merge_phrases(matcher, doc, i, matches): if i != len(matches) - 1: return None spans = [(ent_id, label, doc[start:end]) for ent_id, label, start, end in matches] for ent_id, label, span in spans: - span.merge('NNP' if label else span.root.tag_, span.text, nlp.vocab.strings[label]) + span.merge('NNP' if label else span.root.tag_, span.text, EN.vocab.strings[label]) - doc = nlp('a') - nlp.matcher.add('key', label='TEST', attrs={}, specs=[[{ORTH: 'a'}]], on_match=merge_phrases) - doc = nlp.tokenizer('a b c') - nlp.tagger(doc) - nlp.matcher(doc) - - for word in doc: - print(word.text, word.ent_iob_, word.ent_type_) - nlp.entity(doc) + doc = EN('a') + matcher = Matcher(EN.vocab) + matcher.add('key', label='TEST', attrs={}, specs=[[{ORTH: 'a'}]], on_match=merge_phrases) + doc = EN.tokenizer('a b c') + EN.tagger(doc) + matcher(doc) + EN.entity(doc) diff --git a/spacy/tests/regression/test_issue514.py b/spacy/tests/regression/test_issue514.py new file mode 100644 index 000000000..a21b7333e --- /dev/null +++ b/spacy/tests/regression/test_issue514.py @@ -0,0 +1,21 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..util import get_doc + +import pytest + + +@pytest.mark.models +def test_issue514(EN): + """Test serializing after adding entity""" + text = ["This", "is", "a", "sentence", "about", "pasta", "."] + vocab = EN.entity.vocab + doc = get_doc(vocab, text) + EN.entity.add_label("Food") + EN.entity(doc) + label_id = vocab.strings[u'Food'] + doc.ents = [(label_id, 5,6)] + assert [(ent.label_, ent.text) for ent in doc.ents] == [("Food", "pasta")] + doc2 = get_doc(EN.entity.vocab).from_bytes(doc.to_bytes()) + assert [(ent.label_, ent.text) for ent in doc2.ents] == [("Food", "pasta")] diff --git a/spacy/tests/regression/test_issue54.py b/spacy/tests/regression/test_issue54.py new file mode 100644 index 000000000..9085457f6 --- /dev/null +++ b/spacy/tests/regression/test_issue54.py @@ -0,0 +1,10 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.models +def test_issue54(EN): + text = "Talks given by women had a slightly higher number of questions asked (3.2$\pm$0.2) than talks given by men (2.6$\pm$0.1)." + tokens = EN(text) diff --git a/spacy/tests/regression/test_issue587.py b/spacy/tests/regression/test_issue587.py index 5b86801d6..1a9620236 100644 --- a/spacy/tests/regression/test_issue587.py +++ b/spacy/tests/regression/test_issue587.py @@ -1,17 +1,20 @@ -import spacy -import spacy.matcher -from spacy.attrs import IS_PUNCT, ORTH +# coding: utf-8 +from __future__ import unicode_literals + +from ...matcher import Matcher +from ...attrs import IS_PUNCT, ORTH import pytest + @pytest.mark.models -def test_matcher_segfault(): - nlp = spacy.load('en', parser=False, entity=False) - matcher = spacy.matcher.Matcher(nlp.vocab) - content = u'''a b; c''' +def test_issue587(EN): + """Test that Matcher doesn't segfault on particular input""" + matcher = Matcher(EN.vocab) + content = '''a b; c''' matcher.add(entity_key='1', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}]]) - matcher(nlp(content)) + matcher(EN(content)) matcher.add(entity_key='2', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}, {IS_PUNCT: True}, {ORTH: 'c'}]]) - matcher(nlp(content)) + matcher(EN(content)) matcher.add(entity_key='3', label='TEST', attrs={}, specs=[[{ORTH: 'a'}, {ORTH: 'b'}, {IS_PUNCT: True}, {ORTH: 'd'}]]) - matcher(nlp(content)) + matcher(EN(content)) diff --git a/spacy/tests/regression/test_issue588.py b/spacy/tests/regression/test_issue588.py index 0b7defe75..1002da226 100644 --- a/spacy/tests/regression/test_issue588.py +++ b/spacy/tests/regression/test_issue588.py @@ -1,10 +1,12 @@ -import pytest -from ...vocab import Vocab -from ...tokens import Doc +# coding: utf-8 +from __future__ import unicode_literals + from ...matcher import Matcher +import pytest -def test_issue588(): - matcher = Matcher(Vocab()) + +def test_issue588(en_vocab): + matcher = Matcher(en_vocab) with pytest.raises(ValueError): matcher.add(entity_key='1', label='TEST', attrs={}, specs=[[]]) diff --git a/spacy/tests/regression/test_issue589.py b/spacy/tests/regression/test_issue589.py index bf2fda72a..27363739d 100644 --- a/spacy/tests/regression/test_issue589.py +++ b/spacy/tests/regression/test_issue589.py @@ -1,10 +1,13 @@ -import pytest +# coding: utf-8 +from __future__ import unicode_literals from ...vocab import Vocab -from ...tokens import Doc +from ..util import get_doc + +import pytest def test_issue589(): vocab = Vocab() vocab.strings.set_frozen(True) - doc = Doc(vocab, words=[u'whata']) + doc = get_doc(vocab, ['whata']) diff --git a/spacy/tests/regression/test_issue590.py b/spacy/tests/regression/test_issue590.py index a35d5d1a4..443239cf1 100644 --- a/spacy/tests/regression/test_issue590.py +++ b/spacy/tests/regression/test_issue590.py @@ -1,34 +1,22 @@ +# coding: utf-8 from __future__ import unicode_literals -from ...attrs import * + +from ...attrs import ORTH, IS_ALPHA, LIKE_NUM from ...matcher import Matcher -from ...tokens import Doc -from ...en import English +from ..util import get_doc -def test_overlapping_matches(): - vocab = English.Defaults.create_vocab() - doc = Doc(vocab, words=['n', '=', '1', ';', 'a', ':', '5', '%']) - matcher = Matcher(vocab) - matcher.add_entity( - "ab", - acceptor=None, - on_match=None - ) - matcher.add_pattern( - 'ab', - [ - {IS_ALPHA: True}, - {ORTH: ':'}, - {LIKE_NUM: True}, - {ORTH: '%'} - ], label='a') - matcher.add_pattern( - 'ab', - [ - {IS_ALPHA: True}, - {ORTH: '='}, - {LIKE_NUM: True}, - ], label='b') - +def test_issue590(en_vocab): + """Test overlapping matches""" + doc = get_doc(en_vocab, ['n', '=', '1', ';', 'a', ':', '5', '%']) + + matcher = Matcher(en_vocab) + matcher.add_entity("ab", acceptor=None, on_match=None) + matcher.add_pattern('ab', [{IS_ALPHA: True}, {ORTH: ':'}, + {LIKE_NUM: True}, {ORTH: '%'}], + label='a') + matcher.add_pattern('ab', [{IS_ALPHA: True}, {ORTH: '='}, + {LIKE_NUM: True}], + label='b') matches = matcher(doc) assert len(matches) == 2 diff --git a/spacy/tests/regression/test_issue595.py b/spacy/tests/regression/test_issue595.py index 1f0ed3a3c..6c73a621a 100644 --- a/spacy/tests/regression/test_issue595.py +++ b/spacy/tests/regression/test_issue595.py @@ -1,42 +1,24 @@ +# coding: utf-8 from __future__ import unicode_literals -import pytest from ...symbols import POS, VERB, VerbForm_inf -from ...tokens import Doc from ...vocab import Vocab from ...lemmatizer import Lemmatizer +from ..util import get_doc + +import pytest -@pytest.fixture -def index(): - return {'verb': {}} +def test_issue595(): + """Test lemmatization of base forms""" + words = ["Do", "n't", "feed", "the", "dog"] + tag_map = {'VB': {POS: VERB, 'morph': VerbForm_inf}} + rules = {"verb": [["ed", "e"]]} -@pytest.fixture -def exceptions(): - return {'verb': {}} + lemmatizer = Lemmatizer({'verb': {}}, {'verb': {}}, rules) + vocab = Vocab(lemmatizer=lemmatizer, tag_map=tag_map) + doc = get_doc(vocab, words) -@pytest.fixture -def rules(): - return {"verb": [["ed", "e"]]} - -@pytest.fixture -def lemmatizer(index, exceptions, rules): - return Lemmatizer(index, exceptions, rules) - - -@pytest.fixture -def tag_map(): - return {'VB': {POS: VERB, 'morph': VerbForm_inf}} - - -@pytest.fixture -def vocab(lemmatizer, tag_map): - return Vocab(lemmatizer=lemmatizer, tag_map=tag_map) - - -def test_not_lemmatize_base_forms(vocab): - doc = Doc(vocab, words=["Do", "n't", "feed", "the", "dog"]) - feed = doc[2] - feed.tag_ = u'VB' - assert feed.text == u'feed' - assert feed.lemma_ == u'feed' + doc[2].tag_ = 'VB' + assert doc[2].text == 'feed' + assert doc[2].lemma_ == 'feed' diff --git a/spacy/tests/regression/test_issue599.py b/spacy/tests/regression/test_issue599.py index ce35c6db2..9e187b3d4 100644 --- a/spacy/tests/regression/test_issue599.py +++ b/spacy/tests/regression/test_issue599.py @@ -1,11 +1,13 @@ -from ...tokens import Doc -from ...vocab import Vocab +# coding: utf-8 +from __future__ import unicode_literals -def test_issue599(): - doc = Doc(Vocab()) +from ..util import get_doc + + +def test_issue599(en_vocab): + doc = get_doc(en_vocab) doc.is_tagged = True doc.is_parsed = True - bytes_ = doc.to_bytes() - doc2 = Doc(doc.vocab) - doc2.from_bytes(bytes_) + doc2 = get_doc(doc.vocab) + doc2.from_bytes(doc.to_bytes()) assert doc2.is_parsed diff --git a/spacy/tests/regression/test_issue600.py b/spacy/tests/regression/test_issue600.py index 90e700aed..45511fd48 100644 --- a/spacy/tests/regression/test_issue600.py +++ b/spacy/tests/regression/test_issue600.py @@ -1,9 +1,11 @@ +# coding: utf-8 from __future__ import unicode_literals -from ...tokens import Doc + from ...vocab import Vocab -from ...attrs import POS +from ..util import get_doc def test_issue600(): - doc = Doc(Vocab(tag_map={'NN': {'pos': 'NOUN'}}), words=['hello']) - doc[0].tag_ = u'NN' + vocab = Vocab(tag_map={'NN': {'pos': 'NOUN'}}) + doc = get_doc(vocab, ["hello"]) + doc[0].tag_ = 'NN' diff --git a/spacy/tests/regression/test_issue605.py b/spacy/tests/regression/test_issue605.py index 64373950e..14b619ebf 100644 --- a/spacy/tests/regression/test_issue605.py +++ b/spacy/tests/regression/test_issue605.py @@ -1,24 +1,21 @@ -from ...attrs import LOWER, ORTH -from ...tokens import Doc -from ...vocab import Vocab +# coding: utf-8 +from __future__ import unicode_literals + +from ...attrs import ORTH from ...matcher import Matcher +from ..util import get_doc -def return_false(doc, ent_id, label, start, end): - return False +def test_issue605(en_vocab): + def return_false(doc, ent_id, label, start, end): + return False - -def test_matcher_accept(): - doc = Doc(Vocab(), words=[u'The', u'golf', u'club', u'is', u'broken']) - - golf_pattern = [ - { ORTH: "golf"}, - { ORTH: "club"} - ] + words = ["The", "golf", "club", "is", "broken"] + pattern = [{ORTH: "golf"}, {ORTH: "club"}] + label = "Sport_Equipment" + doc = get_doc(en_vocab, words) matcher = Matcher(doc.vocab) - - matcher.add_entity(u'Sport_Equipment', acceptor=return_false) - matcher.add_pattern(u"Sport_Equipment", golf_pattern) + matcher.add_entity(label, acceptor=return_false) + matcher.add_pattern(label, pattern) match = matcher(doc) - assert match == [] diff --git a/spacy/tests/regression/test_issue615.py b/spacy/tests/regression/test_issue615.py index 83f44037b..393b34b34 100644 --- a/spacy/tests/regression/test_issue615.py +++ b/spacy/tests/regression/test_issue615.py @@ -1,33 +1,31 @@ +# coding: utf-8 from __future__ import unicode_literals -import spacy -from spacy.attrs import ORTH + +from ...matcher import Matcher +from ...attrs import ORTH -def merge_phrases(matcher, doc, i, matches): - ''' - Merge a phrase. We have to be careful here because we'll change the token indices. - To avoid problems, merge all the phrases once we're called on the last match. - ''' - if i != len(matches)-1: - return None - # Get Span objects - spans = [(ent_id, label, doc[start : end]) for ent_id, label, start, end in matches] - for ent_id, label, span in spans: - span.merge('NNP' if label else span.root.tag_, span.text, doc.vocab.strings[label]) +def test_issue615(en_tokenizer): + def merge_phrases(matcher, doc, i, matches): + """Merge a phrase. We have to be careful here because we'll change the + token indices. To avoid problems, merge all the phrases once we're called + on the last match.""" -def test_entity_ID_assignment(): - nlp = spacy.en.English() - text = u"""The golf club is broken""" - doc = nlp(text) + if i != len(matches)-1: + return None + # Get Span objects + spans = [(ent_id, label, doc[start : end]) for ent_id, label, start, end in matches] + for ent_id, label, span in spans: + span.merge('NNP' if label else span.root.tag_, span.text, doc.vocab.strings[label]) - golf_pattern = [ - { ORTH: "golf"}, - { ORTH: "club"} - ] + text = "The golf club is broken" + pattern = [{ORTH: "golf"}, {ORTH: "club"}] + label = "Sport_Equipment" - matcher = spacy.matcher.Matcher(nlp.vocab) - matcher.add_entity('Sport_Equipment', on_match = merge_phrases) - matcher.add_pattern("Sport_Equipment", golf_pattern, label = 'Sport_Equipment') + doc = en_tokenizer(text) + matcher = Matcher(doc.vocab) + matcher.add_entity(label, on_match=merge_phrases) + matcher.add_pattern(label, pattern, label=label) match = matcher(doc) entities = list(doc.ents) diff --git a/spacy/tests/regression/test_issue617.py b/spacy/tests/regression/test_issue617.py index 600445c2f..f17342565 100644 --- a/spacy/tests/regression/test_issue617.py +++ b/spacy/tests/regression/test_issue617.py @@ -1,7 +1,11 @@ +# coding: utf-8 +from __future__ import unicode_literals + from ...vocab import Vocab -def test_load_vocab_with_string(): +def test_issue617(): + """Test loading Vocab with string""" try: vocab = Vocab.load('/tmp/vocab') except IOError: diff --git a/spacy/tests/regression/test_issue686.py b/spacy/tests/regression/test_issue686.py new file mode 100644 index 000000000..2ca882514 --- /dev/null +++ b/spacy/tests/regression/test_issue686.py @@ -0,0 +1,13 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.models +@pytest.mark.parametrize('text', ["He is the man.", "They are the men."]) +def test_issue686(EN, text): + """Test that pronoun lemmas are assigned correctly.""" + tokens = EN(text) + assert tokens[0].lemma_ == "-PRON-" diff --git a/spacy/tests/regression/test_issue717.py b/spacy/tests/regression/test_issue717.py new file mode 100644 index 000000000..55060c05b --- /dev/null +++ b/spacy/tests/regression/test_issue717.py @@ -0,0 +1,15 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.models +@pytest.mark.parametrize('text1,text2', [("You're happy", "You are happy")]) +def test_issue717(EN, text1, text2): + """Test that contractions are assigned the correct lemma.""" + doc1 = EN(text1) + doc2 = EN(text2) + assert doc1[1].lemma_ == doc2[1].lemma_ + assert doc1[1].lemma == doc2[1].lemma diff --git a/spacy/tests/regression/test_issue719.py b/spacy/tests/regression/test_issue719.py new file mode 100644 index 000000000..62d999278 --- /dev/null +++ b/spacy/tests/regression/test_issue719.py @@ -0,0 +1,13 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.models +@pytest.mark.parametrize('text', ["s..."]) +def test_issue719(EN, text): + """Test that the token 's' is not lemmatized into empty string.""" + tokens = EN(text) + assert tokens[0].lemma_ != '' diff --git a/spacy/tests/regression/test_issue736.py b/spacy/tests/regression/test_issue736.py new file mode 100644 index 000000000..eee4912eb --- /dev/null +++ b/spacy/tests/regression/test_issue736.py @@ -0,0 +1,12 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text,number', [("7am", "7"), ("11p.m.", "11")]) +def test_issue736(en_tokenizer, text, number): + """Test that times like "7am" are tokenized correctly and that numbers are converted to string.""" + tokens = en_tokenizer(text) + assert len(tokens) == 2 + assert tokens[0].text == number diff --git a/spacy/tests/regression/test_issue740.py b/spacy/tests/regression/test_issue740.py new file mode 100644 index 000000000..babaf8fdb --- /dev/null +++ b/spacy/tests/regression/test_issue740.py @@ -0,0 +1,12 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["3/4/2012", "01/12/1900"]) +def test_issue740(en_tokenizer, text): + """Test that dates are not split and kept as one token. This behaviour is currently inconsistent, since dates separated by hyphens are still split. + This will be hard to prevent without causing clashes with numeric ranges.""" + tokens = en_tokenizer(text) + assert len(tokens) == 1 diff --git a/spacy/tests/regression/test_issue743.py b/spacy/tests/regression/test_issue743.py new file mode 100644 index 000000000..7a9ee0298 --- /dev/null +++ b/spacy/tests/regression/test_issue743.py @@ -0,0 +1,12 @@ +# coding: utf8 +from __future__ import unicode_literals +from ...vocab import Vocab +from ...tokens.doc import Doc + + +def test_token_is_hashable(): + doc = Doc(Vocab(), ['hello', 'world']) + token = doc[0] + s = set([token]) + items = list(s) + assert items[0] is token diff --git a/spacy/tests/regression/test_issue744.py b/spacy/tests/regression/test_issue744.py new file mode 100644 index 000000000..4e5eb2e10 --- /dev/null +++ b/spacy/tests/regression/test_issue744.py @@ -0,0 +1,13 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["We were scared", "We Were Scared"]) +def test_issue744(en_tokenizer, text): + """Test that 'were' and 'Were' are excluded from the contractions + generated by the English tokenizer exceptions.""" + tokens = en_tokenizer(text) + assert len(tokens) == 3 + assert tokens[1].text.lower() == "were" diff --git a/spacy/tests/regression/test_issue759.py b/spacy/tests/regression/test_issue759.py new file mode 100644 index 000000000..b7cf69f1a --- /dev/null +++ b/spacy/tests/regression/test_issue759.py @@ -0,0 +1,12 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text,is_num', [("one", True), ("ten", True), + ("teneleven", False)]) +def test_issue759(en_tokenizer, text, is_num): + """Test that numbers are recognised correctly.""" + tokens = en_tokenizer(text) + assert tokens[0].like_num == is_num diff --git a/spacy/tests/regression/test_issue768.py b/spacy/tests/regression/test_issue768.py new file mode 100644 index 000000000..a1701334b --- /dev/null +++ b/spacy/tests/regression/test_issue768.py @@ -0,0 +1,36 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...language import Language +from ...attrs import LANG +from ...fr.language_data import get_tokenizer_exceptions, STOP_WORDS +from ...language_data.punctuation import TOKENIZER_INFIXES, ALPHA + +import pytest + + +@pytest.fixture +def fr_tokenizer_w_infix(): + SPLIT_INFIX = r'(?<=[{a}]\')(?=[{a}])'.format(a=ALPHA) + + # create new Language subclass to add to default infixes + class French(Language): + lang = 'fr' + + class Defaults(Language.Defaults): + lex_attr_getters = dict(Language.Defaults.lex_attr_getters) + lex_attr_getters[LANG] = lambda text: 'fr' + tokenizer_exceptions = get_tokenizer_exceptions() + stop_words = STOP_WORDS + infixes = TOKENIZER_INFIXES + [SPLIT_INFIX] + + return French.Defaults.create_tokenizer() + + +@pytest.mark.parametrize('text,expected_tokens', [("l'avion", ["l'", "avion"]), + ("j'ai", ["j'", "ai"])]) +def test_issue768(fr_tokenizer_w_infix, text, expected_tokens): + """Allow zero-width 'infix' token during the tokenization process.""" + tokens = fr_tokenizer_w_infix(text) + assert len(tokens) == 2 + assert [t.text for t in tokens] == expected_tokens diff --git a/spacy/tests/regression/test_issue775.py b/spacy/tests/regression/test_issue775.py new file mode 100644 index 000000000..2b5cd2df5 --- /dev/null +++ b/spacy/tests/regression/test_issue775.py @@ -0,0 +1,13 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["Shell", "shell", "Shed", "shed"]) +def test_issue775(en_tokenizer, text): + """Test that 'Shell' and 'shell' are excluded from the contractions + generated by the English tokenizer exceptions.""" + tokens = en_tokenizer(text) + assert len(tokens) == 1 + assert tokens[0].text == text diff --git a/spacy/tests/regression/test_issue781.py b/spacy/tests/regression/test_issue781.py new file mode 100644 index 000000000..1c48d1534 --- /dev/null +++ b/spacy/tests/regression/test_issue781.py @@ -0,0 +1,10 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +# Note: "chromosomes" worked previous the bug fix +@pytest.mark.parametrize('word,lemmas', [("chromosomes", ["chromosome"]), ("endosomes", ["endosome"]), ("colocalizes", ["colocalize", "colocaliz"])]) +def test_issue781(lemmatizer, word, lemmas): + assert lemmatizer(word, 'noun', morphology={'number': 'plur'}) == set(lemmas) diff --git a/spacy/tests/regression/test_issue792.py b/spacy/tests/regression/test_issue792.py new file mode 100644 index 000000000..df8b5ef50 --- /dev/null +++ b/spacy/tests/regression/test_issue792.py @@ -0,0 +1,18 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["This is a string ", "This is a string\u0020"]) +def test_issue792(en_tokenizer, text): + """Test for Issue #792: Trailing whitespace is removed after tokenization.""" + doc = en_tokenizer(text) + assert ''.join([token.text_with_ws for token in doc]) == text + + +@pytest.mark.parametrize('text', ["This is a string", "This is a string\n"]) +def test_control_issue792(en_tokenizer, text): + """Test base case for Issue #792: Non-trailing whitespace""" + doc = en_tokenizer(text) + assert ''.join([token.text_with_ws for token in doc]) == text diff --git a/spacy/tests/regression/test_issue801.py b/spacy/tests/regression/test_issue801.py new file mode 100644 index 000000000..3d83e707b --- /dev/null +++ b/spacy/tests/regression/test_issue801.py @@ -0,0 +1,19 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text,tokens', [ + ('"deserve,"--and', ['"', "deserve", ',"--', "and"]), + ("exception;--exclusive", ["exception", ";--", "exclusive"]), + ("day.--Is", ["day", ".--", "Is"]), + ("refinement:--just", ["refinement", ":--", "just"]), + ("memories?--To", ["memories", "?--", "To"]), + ("Useful.=--Therefore", ["Useful", ".=--", "Therefore"]), + ("=Hope.=--Pandora", ["=", "Hope", ".=--", "Pandora"])]) +def test_issue801(en_tokenizer, text, tokens): + """Test that special characters + hyphens are split correctly.""" + doc = en_tokenizer(text) + assert len(doc) == len(tokens) + assert [t.text for t in doc] == tokens diff --git a/spacy/tests/regression/test_issue805.py b/spacy/tests/regression/test_issue805.py new file mode 100644 index 000000000..090dd0f3b --- /dev/null +++ b/spacy/tests/regression/test_issue805.py @@ -0,0 +1,15 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + +SV_TOKEN_EXCEPTION_TESTS = [ + ('Smörsåsen används bl.a. till fisk', ['Smörsåsen', 'används', 'bl.a.', 'till', 'fisk']), + ('Jag kommer först kl. 13 p.g.a. diverse förseningar', ['Jag', 'kommer', 'först', 'kl.', '13', 'p.g.a.', 'diverse', 'förseningar']) +] + +@pytest.mark.parametrize('text,expected_tokens', SV_TOKEN_EXCEPTION_TESTS) +def test_issue805(sv_tokenizer, text, expected_tokens): + tokens = sv_tokenizer(text) + token_list = [token.text for token in tokens if not token.is_space] + assert expected_tokens == token_list diff --git a/spacy/tests/regression/test_issue834.py b/spacy/tests/regression/test_issue834.py new file mode 100644 index 000000000..7cb63a77d --- /dev/null +++ b/spacy/tests/regression/test_issue834.py @@ -0,0 +1,16 @@ +# coding: utf-8 +from __future__ import unicode_literals + + +word2vec_str = """, -0.046107 -0.035951 -0.560418 +de -0.648927 -0.400976 -0.527124 +. 0.113685 0.439990 -0.634510 +\u00A0 -1.499184 -0.184280 -0.598371""" + + +def test_issue834(en_vocab, text_file): + """Test that no-break space (U+00A0) is detected as space by the load_vectors function.""" + text_file.write(word2vec_str) + text_file.seek(0) + vector_length = en_vocab.load_vectors(text_file) + assert vector_length == 3 diff --git a/spacy/tests/regression/test_issue850.py b/spacy/tests/regression/test_issue850.py new file mode 100644 index 000000000..8237763ea --- /dev/null +++ b/spacy/tests/regression/test_issue850.py @@ -0,0 +1,52 @@ +''' +Test Matcher matches with '*' operator and Boolean flag +''' +from __future__ import unicode_literals +from __future__ import print_function +import pytest + +from ...matcher import Matcher +from ...vocab import Vocab +from ...attrs import LOWER +from ...tokens import Doc + + +def test_basic_case(): + matcher = Matcher(Vocab( + lex_attr_getters={LOWER: lambda string: string.lower()})) + IS_ANY_TOKEN = matcher.vocab.add_flag(lambda x: True) + matcher.add_pattern( + "FarAway", + [ + {LOWER: "bob"}, + {'OP': '*', LOWER: 'and'}, + {LOWER: 'frank'} + ]) + doc = Doc(matcher.vocab, words=['bob', 'and', 'and', 'frank']) + match = matcher(doc) + assert len(match) == 1 + ent_id, label, start, end = match[0] + assert start == 0 + assert end == 4 + + +@pytest.mark.xfail +def test_issue850(): + '''The problem here is that the variable-length pattern matches the + succeeding token. We then don't handle the ambiguity correctly.''' + matcher = Matcher(Vocab( + lex_attr_getters={LOWER: lambda string: string.lower()})) + IS_ANY_TOKEN = matcher.vocab.add_flag(lambda x: True) + matcher.add_pattern( + "FarAway", + [ + {LOWER: "bob"}, + {'OP': '*', IS_ANY_TOKEN: True}, + {LOWER: 'frank'} + ]) + doc = Doc(matcher.vocab, words=['bob', 'and', 'and', 'frank']) + match = matcher(doc) + assert len(match) == 1 + ent_id, label, start, end = match[0] + assert start == 0 + assert end == 4 diff --git a/spacy/tests/regression/test_issue852.py b/spacy/tests/regression/test_issue852.py new file mode 100644 index 000000000..2bfbe99bb --- /dev/null +++ b/spacy/tests/regression/test_issue852.py @@ -0,0 +1,12 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["au-delàs", "pair-programmâmes", + "terra-formées", "σ-compacts"]) +def test_issue852(fr_tokenizer, text): + """Test that French tokenizer exceptions are imported correctly.""" + tokens = fr_tokenizer(text) + assert len(tokens) == 1 diff --git a/spacy/tests/regression/test_issue859.py b/spacy/tests/regression/test_issue859.py new file mode 100644 index 000000000..f6225a5f4 --- /dev/null +++ b/spacy/tests/regression/test_issue859.py @@ -0,0 +1,12 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["aaabbb@ccc.com\nThank you!", + "aaabbb@ccc.com \nThank you!"]) +def test_issue859(en_tokenizer, text): + """Test that no extra space is added in doc.text method.""" + doc = en_tokenizer(text) + assert doc.text == text diff --git a/spacy/tests/regression/test_issue886.py b/spacy/tests/regression/test_issue886.py new file mode 100644 index 000000000..719036a09 --- /dev/null +++ b/spacy/tests/regression/test_issue886.py @@ -0,0 +1,13 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', ["Datum:2014-06-02\nDokument:76467"]) +def test_issue886(en_tokenizer, text): + """Test that token.idx matches the original text index for texts with newlines.""" + doc = en_tokenizer(text) + for token in doc: + assert len(token.text) == len(token.text_with_ws) + assert text[token.idx] == token.text[0] diff --git a/spacy/tests/serialize/test_codecs.py b/spacy/tests/serialize/test_codecs.py index 00177f21a..4e080f600 100644 --- a/spacy/tests/serialize/test_codecs.py +++ b/spacy/tests/serialize/test_codecs.py @@ -1,60 +1,51 @@ +# coding: utf-8 from __future__ import unicode_literals -import pytest + +from ...serialize.packer import _BinaryCodec +from ...serialize.huffman import HuffmanCodec +from ...serialize.bits import BitArray import numpy - -from spacy.vocab import Vocab -from spacy.serialize.packer import _BinaryCodec -from spacy.serialize.huffman import HuffmanCodec -from spacy.serialize.bits import BitArray +import pytest -def test_binary(): +def test_serialize_codecs_binary(): codec = _BinaryCodec() bits = BitArray() - msg = numpy.array([0, 1, 0, 1, 1], numpy.int32) - codec.encode(msg, bits) + array = numpy.array([0, 1, 0, 1, 1], numpy.int32) + codec.encode(array, bits) result = numpy.array([0, 0, 0, 0, 0], numpy.int32) bits.seek(0) codec.decode(bits, result) - assert list(msg) == list(result) + assert list(array) == list(result) -def test_attribute(): - freqs = {'the': 10, 'quick': 3, 'brown': 4, 'fox': 1, 'jumped': 5, 'over': 8, - 'lazy': 1, 'dog': 2, '.': 9} - - int_map = {'the': 0, 'quick': 1, 'brown': 2, 'fox': 3, 'jumped': 4, 'over': 5, - 'lazy': 6, 'dog': 7, '.': 8} +def test_serialize_codecs_attribute(): + freqs = {'the': 10, 'quick': 3, 'brown': 4, 'fox': 1, 'jumped': 5, + 'over': 8, 'lazy': 1, 'dog': 2, '.': 9} + int_map = {'the': 0, 'quick': 1, 'brown': 2, 'fox': 3, 'jumped': 4, + 'over': 5, 'lazy': 6, 'dog': 7, '.': 8} codec = HuffmanCodec([(int_map[string], freq) for string, freq in freqs.items()]) - bits = BitArray() - - msg = numpy.array([1, 7], dtype=numpy.int32) - msg_list = list(msg) - codec.encode(msg, bits) + array = numpy.array([1, 7], dtype=numpy.int32) + codec.encode(array, bits) result = numpy.array([0, 0], dtype=numpy.int32) bits.seek(0) codec.decode(bits, result) - assert msg_list == list(result) + assert list(array) == list(result) -def test_vocab_codec(): - vocab = Vocab() - lex = vocab['dog'] - lex = vocab['the'] - lex = vocab['jumped'] - - codec = HuffmanCodec([(lex.orth, lex.prob) for lex in vocab]) - +def test_serialize_codecs_vocab(en_vocab): + words = ["the", "dog", "jumped"] + for word in words: + _ = en_vocab[word] + codec = HuffmanCodec([(lex.orth, lex.prob) for lex in en_vocab]) bits = BitArray() - - ids = [vocab[s].orth for s in ('the', 'dog', 'jumped')] - msg = numpy.array(ids, dtype=numpy.int32) - msg_list = list(msg) - codec.encode(msg, bits) - result = numpy.array(range(len(msg)), dtype=numpy.int32) + ids = [en_vocab[s].orth for s in words] + array = numpy.array(ids, dtype=numpy.int32) + codec.encode(array, bits) + result = numpy.array(range(len(array)), dtype=numpy.int32) bits.seek(0) codec.decode(bits, result) - assert msg_list == list(result) + assert list(array) == list(result) diff --git a/spacy/tests/serialize/test_huffman.py b/spacy/tests/serialize/test_huffman.py index af881d66a..51a9fa64d 100644 --- a/spacy/tests/serialize/test_huffman.py +++ b/spacy/tests/serialize/test_huffman.py @@ -1,15 +1,15 @@ +# coding: utf-8 from __future__ import unicode_literals from __future__ import division -import pytest +from ...serialize.huffman import HuffmanCodec +from ...serialize.bits import BitArray -from spacy.serialize.huffman import HuffmanCodec -from spacy.serialize.bits import BitArray -import numpy -import math from heapq import heappush, heappop, heapify from collections import defaultdict +import numpy +import pytest def py_encode(symb2freq): @@ -29,7 +29,7 @@ def py_encode(symb2freq): return dict(heappop(heap)[1:]) -def test1(): +def test_serialize_huffman_1(): probs = numpy.zeros(shape=(10,), dtype=numpy.float32) probs[0] = 0.3 probs[1] = 0.2 @@ -41,45 +41,44 @@ def test1(): probs[7] = 0.005 probs[8] = 0.0001 probs[9] = 0.000001 - + codec = HuffmanCodec(list(enumerate(probs))) - py_codes = py_encode(dict(enumerate(probs))) py_codes = list(py_codes.items()) py_codes.sort() assert codec.strings == [c for i, c in py_codes] -def test_empty(): +def test_serialize_huffman_empty(): codec = HuffmanCodec({}) assert codec.strings == [] - -def test_round_trip(): - freqs = {'the': 10, 'quick': 3, 'brown': 4, 'fox': 1, 'jumped': 5, 'over': 8, - 'lazy': 1, 'dog': 2, '.': 9} + +def test_serialize_huffman_round_trip(): + words = ['the', 'quick', 'brown', 'fox', 'jumped', 'over', 'the', 'the', + 'lazy', 'dog', '.'] + freqs = {'the': 10, 'quick': 3, 'brown': 4, 'fox': 1, 'jumped': 5, + 'over': 8, 'lazy': 1, 'dog': 2, '.': 9} + codec = HuffmanCodec(freqs.items()) - - message = ['the', 'quick', 'brown', 'fox', 'jumped', 'over', 'the', - 'the', 'lazy', 'dog', '.'] strings = list(codec.strings) codes = dict([(codec.leaves[i], strings[i]) for i in range(len(codec.leaves))]) - bits = codec.encode(message) + bits = codec.encode(words) string = ''.join('{0:b}'.format(c).rjust(8, '0')[::-1] for c in bits.as_bytes()) - for word in message: + for word in words: code = codes[word] assert string[:len(code)] == code string = string[len(code):] - unpacked = [0] * len(message) + unpacked = [0] * len(words) bits.seek(0) codec.decode(bits, unpacked) - assert message == unpacked + assert words == unpacked -def test_rosetta(): - txt = u"this is an example for huffman encoding" +def test_serialize_huffman_rosetta(): + text = "this is an example for huffman encoding" symb2freq = defaultdict(int) - for ch in txt: + for ch in text: symb2freq[ch] += 1 by_freq = list(symb2freq.items()) by_freq.sort(reverse=True, key=lambda item: item[1]) @@ -101,7 +100,7 @@ def test_rosetta(): assert my_exp_len == py_exp_len -@pytest.mark.slow +@pytest.mark.models def test_vocab(EN): codec = HuffmanCodec([(w.orth, numpy.exp(w.prob)) for w in EN.vocab]) expected_length = 0 diff --git a/spacy/tests/serialize/test_io.py b/spacy/tests/serialize/test_io.py index 3e269873f..16c7d326d 100644 --- a/spacy/tests/serialize/test_io.py +++ b/spacy/tests/serialize/test_io.py @@ -1,58 +1,48 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...tokens import Doc +from ..util import get_doc + import pytest -from spacy.serialize.packer import Packer -from spacy.attrs import ORTH, SPACY -from spacy.tokens import Doc -import math -import tempfile -import shutil -import os + +def test_serialize_io_read_write(en_vocab, text_file_b): + text1 = ["This", "is", "a", "simple", "test", ".", "With", "a", "couple", "of", "sentences", "."] + text2 = ["This", "is", "another", "test", "document", "."] + + doc1 = get_doc(en_vocab, text1) + doc2 = get_doc(en_vocab, text2) + text_file_b.write(doc1.to_bytes()) + text_file_b.write(doc2.to_bytes()) + text_file_b.seek(0) + bytes1, bytes2 = Doc.read_bytes(text_file_b) + result1 = get_doc(en_vocab).from_bytes(bytes1) + result2 = get_doc(en_vocab).from_bytes(bytes2) + assert result1.text_with_ws == doc1.text_with_ws + assert result2.text_with_ws == doc2.text_with_ws -@pytest.mark.models -def test_read_write(EN): - doc1 = EN(u'This is a simple test. With a couple of sentences.') - doc2 = EN(u'This is another test document.') +def test_serialize_io_left_right(en_vocab): + text = ["This", "is", "a", "simple", "test", ".", "With", "a", "couple", "of", "sentences", "."] + doc = get_doc(en_vocab, text) + result = Doc(en_vocab).from_bytes(doc.to_bytes()) - try: - tmp_dir = tempfile.mkdtemp() - with open(os.path.join(tmp_dir, 'spacy_docs.bin'), 'wb') as file_: - file_.write(doc1.to_bytes()) - file_.write(doc2.to_bytes()) - - with open(os.path.join(tmp_dir, 'spacy_docs.bin'), 'rb') as file_: - bytes1, bytes2 = Doc.read_bytes(file_) - r1 = Doc(EN.vocab).from_bytes(bytes1) - r2 = Doc(EN.vocab).from_bytes(bytes2) - - assert r1.string == doc1.string - assert r2.string == doc2.string - finally: - shutil.rmtree(tmp_dir) - - -@pytest.mark.models -def test_left_right(EN): - orig = EN(u'This is a simple test. With a couple of sentences.') - result = Doc(orig.vocab).from_bytes(orig.to_bytes()) - - for word in result: - assert word.head.i == orig[word.i].head.i - if word.head is not word: - assert word.i in [w.i for w in word.head.children] - for child in word.lefts: - assert child.head.i == word.i - for child in word.rights: - assert child.head.i == word.i + for token in result: + assert token.head.i == doc[token.i].head.i + if token.head is not token: + assert token.i in [w.i for w in token.head.children] + for child in token.lefts: + assert child.head.i == token.i + for child in token.rights: + assert child.head.i == token.i @pytest.mark.models def test_lemmas(EN): - orig = EN(u'The geese are flying') - result = Doc(orig.vocab).from_bytes(orig.to_bytes()) - the, geese, are, flying = result - assert geese.lemma_ == 'goose' - assert are.lemma_ == 'be' - assert flying.lemma_ == 'fly' - - + text = "The geese are flying" + doc = EN(text) + result = Doc(doc.vocab).from_bytes(doc.to_bytes()) + assert result[1].lemma_ == 'goose' + assert result[2].lemma_ == 'be' + assert result[3].lemma_ == 'fly' diff --git a/spacy/tests/serialize/test_packer.py b/spacy/tests/serialize/test_packer.py index a89962be8..e1bd4aecf 100644 --- a/spacy/tests/serialize/test_packer.py +++ b/spacy/tests/serialize/test_packer.py @@ -1,55 +1,30 @@ +# coding: utf-8 from __future__ import unicode_literals -import re +from ...attrs import TAG, DEP, HEAD +from ...serialize.packer import Packer +from ...serialize.bits import BitArray + +from ..util import get_doc import pytest -import numpy - -from spacy.language import Language -from spacy.en import English -from spacy.vocab import Vocab -from spacy.tokens.doc import Doc -from spacy.tokenizer import Tokenizer -from os import path -import os - -from spacy import util -from spacy.attrs import ORTH, SPACY, TAG, DEP, HEAD -from spacy.serialize.packer import Packer - -from spacy.serialize.bits import BitArray @pytest.fixture -def vocab(): - path = os.environ.get('SPACY_DATA') - if path is None: - path = util.match_best_version('en', None, util.get_data_path()) - else: - path = util.match_best_version('en', None, path) - - vocab = English.Defaults.create_vocab() - lex = vocab['dog'] - assert vocab[vocab.strings['dog']].orth_ == 'dog' - lex = vocab['the'] - lex = vocab['quick'] - lex = vocab['jumped'] - return vocab +def text(): + return "the dog jumped" @pytest.fixture -def tokenizer(vocab): - null_re = re.compile(r'!!!!!!!!!') - tokenizer = Tokenizer(vocab, {}, null_re.search, null_re.search, null_re.finditer) - return tokenizer +def text_b(): + return b"the dog jumped" -def test_char_packer(vocab): - packer = Packer(vocab, []) +def test_serialize_char_packer(en_vocab, text_b): + packer = Packer(en_vocab, []) bits = BitArray() bits.seek(0) - - byte_str = bytearray(b'the dog jumped') + byte_str = bytearray(text_b) packer.char_codec.encode(byte_str, bits) bits.seek(0) result = [b''] * len(byte_str) @@ -57,79 +32,67 @@ def test_char_packer(vocab): assert bytearray(result) == byte_str -def test_packer_unannotated(tokenizer): - packer = Packer(tokenizer.vocab, []) - - msg = tokenizer(u'the dog jumped') - - assert msg.string == 'the dog jumped' - - - bits = packer.pack(msg) - +def test_serialize_packer_unannotated(en_tokenizer, text): + packer = Packer(en_tokenizer.vocab, []) + tokens = en_tokenizer(text) + assert tokens.text_with_ws == text + bits = packer.pack(tokens) result = packer.unpack(bits) - - assert result.string == 'the dog jumped' + assert result.text_with_ws == text -@pytest.mark.models -def test_packer_annotated(tokenizer): - vocab = tokenizer.vocab - nn = vocab.strings['NN'] - dt = vocab.strings['DT'] - vbd = vocab.strings['VBD'] - jj = vocab.strings['JJ'] - det = vocab.strings['det'] - nsubj = vocab.strings['nsubj'] - adj = vocab.strings['adj'] - root = vocab.strings['ROOT'] +def test_packer_annotated(en_vocab, text): + heads = [1, 1, 0] + deps = ['det', 'nsubj', 'ROOT'] + tags = ['DT', 'NN', 'VBD'] attr_freqs = [ - (TAG, [(nn, 0.1), (dt, 0.2), (jj, 0.01), (vbd, 0.05)]), - (DEP, {det: 0.2, nsubj: 0.1, adj: 0.05, root: 0.1}.items()), + (TAG, [(en_vocab.strings['NN'], 0.1), + (en_vocab.strings['DT'], 0.2), + (en_vocab.strings['JJ'], 0.01), + (en_vocab.strings['VBD'], 0.05)]), + (DEP, {en_vocab.strings['det']: 0.2, + en_vocab.strings['nsubj']: 0.1, + en_vocab.strings['adj']: 0.05, + en_vocab.strings['ROOT']: 0.1}.items()), (HEAD, {0: 0.05, 1: 0.2, -1: 0.2, -2: 0.1, 2: 0.1}.items()) ] - packer = Packer(vocab, attr_freqs) + packer = Packer(en_vocab, attr_freqs) + doc = get_doc(en_vocab, [t for t in text.split()], tags=tags, deps=deps, heads=heads) - msg = tokenizer(u'the dog jumped') + # assert doc.text_with_ws == text + assert [t.tag_ for t in doc] == tags + assert [t.dep_ for t in doc] == deps + assert [(t.head.i-t.i) for t in doc] == heads - msg.from_array( - [TAG, DEP, HEAD], - numpy.array([ - [dt, det, 1], - [nn, nsubj, 1], - [vbd, root, 0] - ], dtype=numpy.int32)) - - assert msg.string == 'the dog jumped' - assert [t.tag_ for t in msg] == ['DT', 'NN', 'VBD'] - assert [t.dep_ for t in msg] == ['det', 'nsubj', 'ROOT'] - assert [(t.head.i - t.i) for t in msg] == [1, 1, 0] - - bits = packer.pack(msg) + bits = packer.pack(doc) result = packer.unpack(bits) - assert result.string == 'the dog jumped' - assert [t.tag_ for t in result] == ['DT', 'NN', 'VBD'] - assert [t.dep_ for t in result] == ['det', 'nsubj', 'ROOT'] - assert [(t.head.i - t.i) for t in result] == [1, 1, 0] + # assert result.text_with_ws == text + assert [t.tag_ for t in result] == tags + assert [t.dep_ for t in result] == deps + assert [(t.head.i-t.i) for t in result] == heads -def test_packer_bad_chars(tokenizer): - string = u'naja gut, is eher bl\xf6d und nicht mit reddit.com/digg.com vergleichbar; vielleicht auf dem weg dahin' - packer = Packer(tokenizer.vocab, []) +def test_packer_bad_chars(en_tokenizer): + text = "naja gut, is eher bl\xf6d und nicht mit reddit.com/digg.com vergleichbar; vielleicht auf dem weg dahin" + packer = Packer(en_tokenizer.vocab, []) - doc = tokenizer(string) + doc = en_tokenizer(text) bits = packer.pack(doc) result = packer.unpack(bits) assert result.string == doc.string @pytest.mark.models -def test_packer_bad_chars(EN): - string = u'naja gut, is eher bl\xf6d und nicht mit reddit.com/digg.com vergleichbar; vielleicht auf dem weg dahin' - doc = EN(string) +def test_packer_bad_chars_tags(EN): + text = "naja gut, is eher bl\xf6d und nicht mit reddit.com/digg.com vergleichbar; vielleicht auf dem weg dahin" + tags = ['JJ', 'NN', ',', 'VBZ', 'DT', 'NN', 'JJ', 'NN', 'NN', + 'ADD', 'NN', ':', 'NN', 'NN', 'NN', 'NN', 'NN'] + + tokens = EN.tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags) byte_string = doc.to_bytes() - result = Doc(EN.vocab).from_bytes(byte_string) + result = get_doc(tokens.vocab).from_bytes(byte_string) assert [t.tag_ for t in result] == [t.tag_ for t in doc] diff --git a/spacy/tests/serialize/test_serialization.py b/spacy/tests/serialize/test_serialization.py index 36f916a1d..92e27a881 100644 --- a/spacy/tests/serialize/test_serialization.py +++ b/spacy/tests/serialize/test_serialization.py @@ -1,127 +1,40 @@ +# coding: utf-8 from __future__ import unicode_literals + +from ...serialize.packer import Packer +from ..util import get_doc, assert_docs_equal + import pytest -from spacy.tokens import Doc -import spacy.en -from spacy.serialize.packer import Packer + +TEXT = ["This", "is", "a", "test", "sentence", "."] +TAGS = ['DT', 'VBZ', 'DT', 'NN', 'NN', '.'] +DEPS = ['nsubj', 'ROOT', 'det', 'compound', 'attr', 'punct'] +ENTS = [('hi', 'PERSON', 0, 1)] -def equal(doc1, doc2): - # tokens - assert [ t.orth for t in doc1 ] == [ t.orth for t in doc2 ] - - # tags - assert [ t.pos for t in doc1 ] == [ t.pos for t in doc2 ] - assert [ t.tag for t in doc1 ] == [ t.tag for t in doc2 ] - - # parse - assert [ t.head.i for t in doc1 ] == [ t.head.i for t in doc2 ] - assert [ t.dep for t in doc1 ] == [ t.dep for t in doc2 ] - if doc1.is_parsed and doc2.is_parsed: - assert [ s for s in doc1.sents ] == [ s for s in doc2.sents ] - - # entities - assert [ t.ent_type for t in doc1 ] == [ t.ent_type for t in doc2 ] - assert [ t.ent_iob for t in doc1 ] == [ t.ent_iob for t in doc2 ] - assert [ ent for ent in doc1.ents ] == [ ent for ent in doc2.ents ] - - -@pytest.mark.models -def test_serialize_tokens(EN): - doc1 = EN(u'This is a test sentence.',tag=False, parse=False, entity=False) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_tags(EN): - doc1 = EN(u'This is a test sentence.',tag=True, parse=False, entity=False) - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_parse(EN): - doc1 = EN(u'This is a test sentence.',tag=False, parse=True, entity=False) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_ner(EN): - doc1 = EN(u'This is a test sentence.', tag=False, parse=False, entity=True) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_tags_parse(EN): - doc1 = EN(u'This is a test sentence.', tag=True, parse=True, entity=False) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_tags_ner(EN): - doc1 = EN(u'This is a test sentence.', tag=True, parse=False, entity=True) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_ner_parse(EN): - doc1 = EN(u'This is a test sentence.', tag=False, parse=True, entity=True) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -@pytest.mark.models -def test_serialize_tokens_tags_parse_ner(EN): - doc1 = EN(u'This is a test sentence.', tag=True, parse=True, entity=True) - - doc2 = Doc(EN.vocab).from_bytes(doc1.to_bytes()) - equal(doc1, doc2) - - -def test_serialize_empty_doc(): - vocab = spacy.en.English.Defaults.create_vocab() - doc = Doc(vocab) - packer = Packer(vocab, {}) +def test_serialize_empty_doc(en_vocab): + doc = get_doc(en_vocab) + packer = Packer(en_vocab, {}) b = packer.pack(doc) assert b == b'' - loaded = Doc(vocab).from_bytes(b) + loaded = get_doc(en_vocab).from_bytes(b) assert len(loaded) == 0 -def test_serialize_after_adding_entity(): - # Re issue #514 - vocab = spacy.en.English.Defaults.create_vocab() - entity_recognizer = spacy.en.English.Defaults.create_entity() - - doc = Doc(vocab, words=u'This is a sentence about pasta .'.split()) - entity_recognizer.add_label('Food') - entity_recognizer(doc) - - label_id = vocab.strings[u'Food'] - doc.ents = [(label_id, 5,6)] - - assert [(ent.label_, ent.text) for ent in doc.ents] == [(u'Food', u'pasta')] - - byte_string = doc.to_bytes() +@pytest.mark.parametrize('text', [TEXT]) +def test_serialize_tokens(en_vocab, text): + doc1 = get_doc(en_vocab, [t for t in text]) + doc2 = get_doc(en_vocab).from_bytes(doc1.to_bytes()) + assert_docs_equal(doc1, doc2) @pytest.mark.models -def test_serialize_after_adding_entity(EN): - EN.entity.add_label(u'Food') - doc = EN(u'This is a sentence about pasta.') - label_id = EN.vocab.strings[u'Food'] - doc.ents = [(label_id, 5,6)] - byte_string = doc.to_bytes() - doc2 = Doc(EN.vocab).from_bytes(byte_string) - assert [(ent.label_, ent.text) for ent in doc2.ents] == [(u'Food', u'pasta')] +@pytest.mark.parametrize('text', [TEXT]) +@pytest.mark.parametrize('tags', [TAGS, []]) +@pytest.mark.parametrize('deps', [DEPS, []]) +@pytest.mark.parametrize('ents', [ENTS, []]) +def test_serialize_tokens_ner(EN, text, tags, deps, ents): + doc1 = get_doc(EN.vocab, [t for t in text], tags=tags, deps=deps, ents=ents) + doc2 = get_doc(EN.vocab).from_bytes(doc1.to_bytes()) + assert_docs_equal(doc1, doc2) diff --git a/spacy/tests/spans/conftest.py b/spacy/tests/spans/conftest.py deleted file mode 100644 index d8a0a4cb9..000000000 --- a/spacy/tests/spans/conftest.py +++ /dev/null @@ -1,8 +0,0 @@ -import pytest -from spacy.en import English -import os - - -@pytest.fixture(scope="session") -def en_nlp(): - return English() diff --git a/spacy/tests/spans/test_merge.py b/spacy/tests/spans/test_merge.py index f96d532cd..86712f771 100644 --- a/spacy/tests/spans/test_merge.py +++ b/spacy/tests/spans/test_merge.py @@ -1,94 +1,117 @@ +# coding: utf-8 from __future__ import unicode_literals -from spacy.attrs import HEAD + +from ..util import get_doc + import pytest -import numpy -def test_merge_tokens(EN): - tokens = EN(u'Los Angeles start.') - tokens.from_array([HEAD], numpy.asarray([[1, 1, 0, -1]], dtype='int32').T) - assert len(tokens) == 4 - assert tokens[0].head.orth_ == 'Angeles' - assert tokens[1].head.orth_ == 'start' - tokens.merge(0, len('Los Angeles'), 'NNP', 'Los Angeles', 'GPE') - assert len(tokens) == 3 - assert tokens[0].orth_ == 'Los Angeles' - assert tokens[0].head.orth_ == 'start' +def test_spans_merge_tokens(en_tokenizer): + text = "Los Angeles start." + heads = [1, 1, 0, -1] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert len(doc) == 4 + assert doc[0].head.text == 'Angeles' + assert doc[1].head.text == 'start' + doc.merge(0, len('Los Angeles'), 'NNP', 'Los Angeles', 'GPE') + assert len(doc) == 3 + assert doc[0].text == 'Los Angeles' + assert doc[0].head.text == 'start' -@pytest.mark.models -def test_merge_heads(EN): - tokens = EN(u'I found a pilates class near work.') - assert len(tokens) == 8 - tokens.merge(tokens[3].idx, tokens[4].idx + len(tokens[4]), tokens[4].tag_, - 'pilates class', 'O') - assert len(tokens) == 7 - assert tokens[0].head.i == 1 - assert tokens[1].head.i == 1 - assert tokens[2].head.i == 3 - assert tokens[3].head.i == 1 - assert tokens[4].head.i in [1, 3] - assert tokens[5].head.i == 4 +def test_spans_merge_heads(en_tokenizer): + text = "I found a pilates class near work." + heads = [1, 0, 2, 1, -3, -1, -1, -6] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + + assert len(doc) == 8 + doc.merge(doc[3].idx, doc[4].idx + len(doc[4]), doc[4].tag_, 'pilates class', 'O') + assert len(doc) == 7 + assert doc[0].head.i == 1 + assert doc[1].head.i == 1 + assert doc[2].head.i == 3 + assert doc[3].head.i == 1 + assert doc[4].head.i in [1, 3] + assert doc[5].head.i == 4 -@pytest.mark.models -def test_issue_54(EN): - text = u'Talks given by women had a slightly higher number of questions asked (3.2$\pm$0.2) than talks given by men (2.6$\pm$0.1).' - tokens = EN(text) +def test_span_np_merges(en_tokenizer): + text = "displaCy is a parse tool built with Javascript" + heads = [1, 0, 2, 1, -3, -1, -1, -1] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert doc[4].head.i == 1 + doc.merge(doc[2].idx, doc[4].idx + len(doc[4]), 'NP', 'tool', 'O') + assert doc[2].head.i == 1 -@pytest.mark.models -def test_np_merges(EN): - text = u'displaCy is a parse tool built with Javascript' - tokens = EN(text) - assert tokens[4].head.i == 1 - tokens.merge(tokens[2].idx, tokens[4].idx + len(tokens[4]), u'NP', u'tool', u'O') - assert tokens[2].head.i == 1 - tokens = EN('displaCy is a lightweight and modern dependency parse tree visualization tool built with CSS3 and JavaScript.') - - ents = [(e[0].idx, e[-1].idx + len(e[-1]), e.label_, e.lemma_) - for e in tokens.ents] + text = "displaCy is a lightweight and modern dependency parse tree visualization tool built with CSS3 and JavaScript." + heads = [1, 0, 8, 3, -1, -2, 4, 3, 1, 1, -9, -1, -1, -1, -1, -2, -15] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + + ents = [(e[0].idx, e[-1].idx + len(e[-1]), e.label_, e.lemma_) for e in doc.ents] for start, end, label, lemma in ents: - merged = tokens.merge(start, end, label, lemma, label) - assert merged != None, (start, end, label, lemma) + merged = doc.merge(start, end, label, lemma, label) + assert merged != None, (start, end, label, lemma) - tokens = EN(u'One test with entities like New York City so the ents list is not void') + text = "One test with entities like New York City so the ents list is not void" + heads = [1, 11, -1, -1, -1, 1, 1, -3, 4, 2, 1, 1, 0, -1, -2] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) - for span in tokens.ents: - merged = span.merge() - assert merged != None, (span.start, span.end, span.label_, span.lemma_) + for span in doc.ents: + merged = doc.merge() + assert merged != None, (span.start, span.end, span.label_, span.lemma_) -@pytest.mark.models -def test_entity_merge(EN): - tokens = EN(u'Stewart Lee is a stand up comedian who lives in England and loves Joe Pasquale.\n') - assert(len(tokens) == 17) - for ent in tokens.ents: + +def test_spans_entity_merge(en_tokenizer): + text = "Stewart Lee is a stand up comedian who lives in England and loves Joe Pasquale.\n" + heads = [1, 1, 0, 1, 2, -1, -4, 1, -2, -1, -1, -3, -10, 1, -2, -13, -1] + tags = ['NNP', 'NNP', 'VBZ', 'DT', 'VB', 'RP', 'NN', 'WP', 'VBZ', 'IN', 'NNP', 'CC', 'VBZ', 'NNP', 'NNP', '.', 'SP'] + ents = [('Stewart Lee', 'PERSON', 0, 2), ('England', 'GPE', 10, 11), ('Joe Pasquale', 'PERSON', 13, 15)] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, tags=tags, ents=ents) + assert len(doc) == 17 + for ent in doc.ents: label, lemma, type_ = (ent.root.tag_, ent.root.lemma_, max(w.ent_type_ for w in ent)) ent.merge(label, lemma, type_) # check looping is ok - assert(len(tokens) == 15) + assert len(doc) == 15 -@pytest.mark.models -def test_sentence_update_after_merge(EN): - tokens = EN(u'Stewart Lee is a stand up comedian. He lives in England and loves Joe Pasquale.') - sent1, sent2 = list(tokens.sents) +def test_spans_sentence_update_after_merge(en_tokenizer): + text = "Stewart Lee is a stand up comedian. He lives in England and loves Joe Pasquale." + heads = [1, 1, 0, 1, 2, -1, -4, -5, 1, 0, -1, -1, -3, -4, 1, -2, -7] + deps = ['compound', 'nsubj', 'ROOT', 'det', 'amod', 'prt', 'attr', + 'punct', 'nsubj', 'ROOT', 'prep', 'pobj', 'cc', 'conj', + 'compound', 'dobj', 'punct'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) + sent1, sent2 = list(doc.sents) init_len = len(sent1) init_len2 = len(sent2) - merge_me = tokens[0:2] - merge_me.merge(u'none', u'none', u'none') - merge_me2 = tokens[-2:] - merge_me2.merge(u'none', u'none', u'none') - assert(len(sent1) == init_len - 1) - assert(len(sent2) == init_len2 - 1) + doc[0:2].merge('none', 'none', 'none') + doc[-2:].merge('none', 'none', 'none') + assert len(sent1) == init_len - 1 + assert len(sent2) == init_len2 - 1 -@pytest.mark.models -def test_subtree_size_check(EN): - tokens = EN(u'Stewart Lee is a stand up comedian who lives in England and loves Joe Pasquale') - sent1 = list(tokens.sents)[0] +def test_spans_subtree_size_check(en_tokenizer): + text = "Stewart Lee is a stand up comedian who lives in England and loves Joe Pasquale" + heads = [1, 1, 0, 1, 2, -1, -4, 1, -2, -1, -1, -3, -10, 1, -2] + deps = ['compound', 'nsubj', 'ROOT', 'det', 'amod', 'prt', 'attr', + 'nsubj', 'relcl', 'prep', 'pobj', 'cc', 'conj', 'compound', + 'dobj'] + + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) + sent1 = list(doc.sents)[0] init_len = len(list(sent1.root.subtree)) - merge_me = tokens[0:2] - merge_me.merge(u'none', u'none', u'none') - assert(len(list(sent1.root.subtree)) == init_len - 1) + doc[0:2].merge('none', 'none', 'none') + assert len(list(sent1.root.subtree)) == init_len - 1 diff --git a/spacy/tests/spans/test_span.py b/spacy/tests/spans/test_span.py index aee869c5b..14c176edc 100644 --- a/spacy/tests/spans/test_span.py +++ b/spacy/tests/spans/test_span.py @@ -1,19 +1,22 @@ +# coding: utf-8 from __future__ import unicode_literals -from spacy.attrs import HEAD -from spacy.en import English -from spacy.tokens.doc import Doc -import numpy as np + +from ..util import get_doc import pytest @pytest.fixture -def doc(EN): - return EN('This is a sentence. This is another sentence. And a third.') +def doc(en_tokenizer): + text = "This is a sentence. This is another sentence. And a third." + heads = [1, 0, 1, -2, -3, 1, 0, 1, -2, -3, 0, 1, -2, -1] + deps = ['nsubj', 'ROOT', 'det', 'attr', 'punct', 'nsubj', 'ROOT', 'det', + 'attr', 'punct', 'ROOT', 'det', 'npadvmod', 'punct'] + tokens = en_tokenizer(text) + return get_doc(tokens.vocab, [t.text for t in tokens], heads=heads, deps=deps) -@pytest.mark.models -def test_sent_spans(doc): +def test_spans_sent_spans(doc): sents = list(doc.sents) assert sents[0].start == 0 assert sents[0].end == 5 @@ -21,73 +24,56 @@ def test_sent_spans(doc): assert sum(len(sent) for sent in sents) == len(doc) -@pytest.mark.models -def test_root(doc): - np = doc[2:4] - assert len(np) == 2 - assert np.orth_ == 'a sentence' - assert np.root.orth_ == 'sentence' - assert np.root.head.orth_ == 'is' +def test_spans_root(doc): + span = doc[2:4] + assert len(span) == 2 + assert span.text == 'a sentence' + assert span.root.text == 'sentence' + assert span.root.head.text == 'is' + +def test_spans_string_fn(doc): + span = doc[0:4] + assert len(span) == 4 + assert span.text == 'This is a sentence' + assert span.upper_ == 'THIS IS A SENTENCE' + assert span.lower_ == 'this is a sentence' + +def test_spans_root2(en_tokenizer): + text = "through North and South Carolina" + heads = [0, 3, -1, -2, -4] + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], heads=heads) + assert doc[-2:].root.text == 'Carolina' -def test_root2(EN): - text = 'through North and South Carolina' - doc = EN(text) - heads = np.asarray([[0, 3, -1, -2, -4]], dtype='int32') - doc.from_array([HEAD], heads.T) - south_carolina = doc[-2:] - assert south_carolina.root.text == 'Carolina' - - -def test_sent(doc): - '''Test new span.sent property''' - #return EN('This is a sentence. This is another sentence. And a third.') - heads = np.asarray([[1, 0, -1, -1, -1, 1, 0, -1, -1, -1, 2, 1, 0, -1]], dtype='int32') - doc.from_array([HEAD], heads.T) +def test_spans_span_sent(doc): + """Test span.sent property""" assert len(list(doc.sents)) - span = doc[:2] - assert span.sent.root.text == 'is' - assert span.sent.text == 'This is a sentence.' - span = doc[6:7] - assert span.sent.root.left_edge.text == 'This' + assert doc[:2].sent.root.text == 'is' + assert doc[:2].sent.text == 'This is a sentence .' + assert doc[6:7].sent.root.left_edge.text == 'This' -def test_default_sentiment(EN): - '''Test new span.sentiment property's default averaging behaviour''' - good = EN.vocab[u'good'] - good.sentiment = 3.0 - bad = EN.vocab[u'bad'] - bad.sentiment = -2.0 - - doc = Doc(EN.vocab, [u'good', 'stuff', u'bad', u'stuff']) - - good_stuff = doc[:2] - assert good_stuff.sentiment == 3.0 / 2 - - bad_stuff = doc[-2:] - assert bad_stuff.sentiment == -2. / 2 - - good_stuff_bad = doc[:-1] - assert good_stuff_bad.sentiment == (3.+-2) / 3. +def test_spans_default_sentiment(en_tokenizer): + """Test span.sentiment property's default averaging behaviour""" + text = "good stuff bad stuff" + tokens = en_tokenizer(text) + tokens.vocab[tokens[0].text].sentiment = 3.0 + tokens.vocab[tokens[2].text].sentiment = -2.0 + doc = get_doc(tokens.vocab, [t.text for t in tokens]) + assert doc[:2].sentiment == 3.0 / 2 + assert doc[-2:].sentiment == -2. / 2 + assert doc[:-1].sentiment == (3.+-2) / 3. - -def test_override_sentiment(EN): - '''Test new span.sentiment property's default averaging behaviour''' - good = EN.vocab[u'good'] - good.sentiment = 3.0 - bad = EN.vocab[u'bad'] - bad.sentiment = -2.0 - - doc = Doc(EN.vocab, [u'good', 'stuff', u'bad', u'stuff']) - +def test_spans_override_sentiment(en_tokenizer): + """Test span.sentiment property's default averaging behaviour""" + text = "good stuff bad stuff" + tokens = en_tokenizer(text) + tokens.vocab[tokens[0].text].sentiment = 3.0 + tokens.vocab[tokens[2].text].sentiment = -2.0 + doc = get_doc(tokens.vocab, [t.text for t in tokens]) doc.user_span_hooks['sentiment'] = lambda span: 10.0 - - good_stuff = doc[:2] - assert good_stuff.sentiment == 10.0 - - bad_stuff = doc[-2:] - assert bad_stuff.sentiment == 10.0 - - good_stuff_bad = doc[:-1] - assert good_stuff_bad.sentiment == 10.0 + assert doc[:2].sentiment == 10.0 + assert doc[-2:].sentiment == 10.0 + assert doc[:-1].sentiment == 10.0 diff --git a/spacy/tests/spans/test_times.py b/spacy/tests/spans/test_times.py deleted file mode 100644 index e33d08bcd..000000000 --- a/spacy/tests/spans/test_times.py +++ /dev/null @@ -1,22 +0,0 @@ -from __future__ import unicode_literals - -import pytest - -# This approach is deprecated for now -# -#@pytest.mark.models -#def test_am_pm(en_nlp): -# numbers = ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'] -# variants = ['a.m.', 'am', 'p.m.', 'pm'] -# spaces = ['', ' '] -# for num in numbers: -# for var in variants: -# for space in spaces: -# string = u"The meeting was at %s%s%s wasn't it?" % (num, space, var) -# tokens = en_nlp(string, merge_mwes=True) -# assert tokens[4].orth_ == '%s%s%s' % (num, space, var) -# ents = list(tokens.ents) -# assert len(ents) == 1, ents -# assert ents[0].label_ == 'TIME', string -# if ents[0].start == 4 and ents[0].end == 5: -# assert ents[0].orth_ == '%s%s%s' % (num, space, var) diff --git a/spacy/tests/en/tokenizer/__init__.py b/spacy/tests/stringstore/__init__.py similarity index 100% rename from spacy/tests/en/tokenizer/__init__.py rename to spacy/tests/stringstore/__init__.py diff --git a/spacy/tests/stringstore/test_freeze_string_store.py b/spacy/tests/stringstore/test_freeze_string_store.py new file mode 100644 index 000000000..96d7912b2 --- /dev/null +++ b/spacy/tests/stringstore/test_freeze_string_store.py @@ -0,0 +1,23 @@ +# coding: utf-8 +"""Test the possibly temporary workaround of flushing the stringstore of OOV words.""" + + +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.parametrize('text', [["a", "b", "c"]]) +def test_stringstore_freeze_oov(stringstore, text): + assert stringstore[text[0]] == 1 + assert stringstore[text[1]] == 2 + + stringstore.set_frozen(True) + s = stringstore[text[2]] + assert s >= 4 + s_ = stringstore[s] + assert s_ == text[2] + + stringstore.flush_oov() + with pytest.raises(IndexError): + s_ = stringstore[s] diff --git a/spacy/tests/stringstore/test_stringstore.py b/spacy/tests/stringstore/test_stringstore.py new file mode 100644 index 000000000..ebbec01d9 --- /dev/null +++ b/spacy/tests/stringstore/test_stringstore.py @@ -0,0 +1,78 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...strings import StringStore + +import pytest + + +@pytest.mark.parametrize('text1,text2,text3', [(b'Hello', b'goodbye', b'hello')]) +def test_stringstore_save_bytes(stringstore, text1, text2, text3): + i = stringstore[text1] + assert i == 1 + assert stringstore[text1] == 1 + assert stringstore[text2] != i + assert stringstore[text3] != i + assert i == 1 + + +@pytest.mark.parametrize('text1,text2,text3', [('Hello', 'goodbye', 'hello')]) +def test_stringstore_save_unicode(stringstore, text1, text2, text3): + i = stringstore[text1] + assert i == 1 + assert stringstore[text1] == 1 + assert stringstore[text2] != i + assert stringstore[text3] != i + assert i == 1 + + +@pytest.mark.parametrize('text', [b'A']) +def test_stringstore_retrieve_id(stringstore, text): + i = stringstore[text] + assert stringstore.size == 1 + assert stringstore[1] == text.decode('utf8') + with pytest.raises(IndexError): + stringstore[2] + + +@pytest.mark.parametrize('text1,text2', [(b'0123456789', b'A')]) +def test_stringstore_med_string(stringstore, text1, text2): + store = stringstore[text1] + assert stringstore[store] == text1.decode('utf8') + dummy = stringstore[text2] + assert stringstore[text1] == store + + +def test_stringstore_long_string(stringstore): + text = "INFORMATIVE](http://www.google.com/search?as_q=RedditMonkey&hl=en&num=50&btnG=Google+Search&as_epq=&as_oq=&as_eq=&lr=&as_ft=i&as_filetype=&as_qdr=all&as_nlo=&as_nhi=&as_occt=any&as_dt=i&as_sitesearch=&as_rights=&safe=off" + store = stringstore[text] + assert stringstore[store] == text + + +@pytest.mark.parametrize('factor', [254, 255, 256]) +def test_stringstore_multiply(stringstore, factor): + text = 'a' * factor + store = stringstore[text] + assert stringstore[store] == text + + +def test_stringstore_massive_strings(stringstore): + text = 'a' * 511 + store = stringstore[text] + assert stringstore[store] == text + text2 = 'z' * 512 + store = stringstore[text2] + assert stringstore[store] == text2 + text3 = '1' * 513 + store = stringstore[text3] + assert stringstore[store] == text3 + + +@pytest.mark.parametrize('text', ["qqqqq"]) +def test_stringstore_dump_load(stringstore, text_file, text): + store = stringstore[text] + stringstore.dump(text_file) + text_file.seek(0) + new_stringstore = StringStore() + new_stringstore.load(text_file) + assert new_stringstore[store] == text diff --git a/spacy/tests/hu/tokenizer/__init__.py b/spacy/tests/sv/__init__.py similarity index 100% rename from spacy/tests/hu/tokenizer/__init__.py rename to spacy/tests/sv/__init__.py diff --git a/spacy/tests/sv/test_tokenizer.py b/spacy/tests/sv/test_tokenizer.py new file mode 100644 index 000000000..dbb3e1dd1 --- /dev/null +++ b/spacy/tests/sv/test_tokenizer.py @@ -0,0 +1,24 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +SV_TOKEN_EXCEPTION_TESTS = [ + ('Smörsåsen används bl.a. till fisk', ['Smörsåsen', 'används', 'bl.a.', 'till', 'fisk']), + ('Jag kommer först kl. 13 p.g.a. diverse förseningar', ['Jag', 'kommer', 'först', 'kl.', '13', 'p.g.a.', 'diverse', 'förseningar']) +] + + +@pytest.mark.parametrize('text,expected_tokens', SV_TOKEN_EXCEPTION_TESTS) +def test_tokenizer_handles_exception_cases(sv_tokenizer, text, expected_tokens): + tokens = sv_tokenizer(text) + token_list = [token.text for token in tokens if not token.is_space] + assert expected_tokens == token_list + + +@pytest.mark.parametrize('text', ["driveru", "hajaru", "Serru", "Fixaru"]) +def test_tokenizer_handles_verb_exceptions(sv_tokenizer, text): + tokens = sv_tokenizer(text) + assert len(tokens) == 2 + assert tokens[1].text == "u" diff --git a/spacy/tests/tagger/test_add_lemmas.py b/spacy/tests/tagger/test_add_lemmas.py deleted file mode 100644 index 7fe9db86a..000000000 --- a/spacy/tests/tagger/test_add_lemmas.py +++ /dev/null @@ -1,12 +0,0 @@ -from __future__ import unicode_literals - -from spacy.en import English -import pytest - -@pytest.mark.models -def test_lemma_assignment(EN): - tokens = u'Bananas in pyjamas are geese .'.split(' ') - doc = EN.tokenizer.tokens_from_list(tokens) - assert all( t.lemma_ == u'' for t in doc ) - EN.tagger(doc) - assert all( t.lemma_ != u'' for t in doc ) diff --git a/spacy/tests/tagger/test_lemmatizer.py b/spacy/tests/tagger/test_lemmatizer.py index 31acc72e3..3e2933fcd 100644 --- a/spacy/tests/tagger/test_lemmatizer.py +++ b/spacy/tests/tagger/test_lemmatizer.py @@ -1,93 +1,48 @@ -# -*- coding: utf-8 -*- +# coding: utf-8 from __future__ import unicode_literals -import os -import io -import pickle -import pathlib - -from spacy.lemmatizer import Lemmatizer, read_index, read_exc -from spacy import util import pytest -@pytest.fixture -def path(): - if 'SPACY_DATA' in os.environ: - return pathlib.Path(os.environ['SPACY_DATA']) - else: - return util.match_best_version('en', None, util.get_data_path()) - - -@pytest.fixture -def lemmatizer(path): - if path is not None: - return Lemmatizer.load(path) - else: - return None - - -def test_read_index(path): - if path is not None: - with (path / 'wordnet' / 'index.noun').open() as file_: - index = read_index(file_) - assert 'man' in index - assert 'plantes' not in index - assert 'plant' in index - - -def test_read_exc(path): - if path is not None: - with (path / 'wordnet' / 'verb.exc').open() as file_: - exc = read_exc(file_) - assert exc['was'] == ('be',) - - -def test_noun_lemmas(lemmatizer): +@pytest.mark.models +@pytest.mark.parametrize('text,lemmas', [("aardwolves", ["aardwolf"]), + ("aardwolf", ["aardwolf"]), + ("planets", ["planet"]), + ("ring", ["ring"]), + ("axes", ["axis", "axe", "ax"])]) +def test_tagger_lemmatizer_noun_lemmas(lemmatizer, text, lemmas): if lemmatizer is None: return None - do = lemmatizer.noun - - assert do('aardwolves') == set(['aardwolf']) - assert do('aardwolf') == set(['aardwolf']) - assert do('planets') == set(['planet']) - assert do('ring') == set(['ring']) - assert do('axes') == set(['axis', 'axe', 'ax']) + assert lemmatizer.noun(text) == set(lemmas) -def test_base_form_dive(lemmatizer): +@pytest.mark.models +def test_tagger_lemmatizer_base_forms(lemmatizer): if lemmatizer is None: return None - - do = lemmatizer.noun - assert do('dive', {'number': 'sing'}) == set(['dive']) - assert do('dive', {'number': 'plur'}) == set(['diva']) + assert lemmatizer.noun('dive', {'number': 'sing'}) == set(['dive']) + assert lemmatizer.noun('dive', {'number': 'plur'}) == set(['diva']) -def test_base_form_saw(lemmatizer): +@pytest.mark.models +def test_tagger_lemmatizer_base_form_verb(lemmatizer): if lemmatizer is None: return None - - do = lemmatizer.verb - assert do('saw', {'verbform': 'past'}) == set(['see']) + assert lemmatizer.verb('saw', {'verbform': 'past'}) == set(['see']) -def test_smart_quotes(lemmatizer): +@pytest.mark.models +def test_tagger_lemmatizer_punct(lemmatizer): if lemmatizer is None: return None - - do = lemmatizer.punct - assert do('“') == set(['"']) - assert do('“') == set(['"']) + assert lemmatizer.punct('“') == set(['"']) + assert lemmatizer.punct('“') == set(['"']) -def test_pickle_lemmatizer(lemmatizer): - if lemmatizer is None: - return None - - file_ = io.BytesIO() - pickle.dump(lemmatizer, file_) - - file_.seek(0) - - loaded = pickle.load(file_) +@pytest.mark.models +def test_tagger_lemmatizer_lemma_assignment(EN): + text = "Bananas in pyjamas are geese." + doc = EN.tokenizer(text) + assert all(t.lemma_ == '' for t in doc) + EN.tagger(doc) + assert all(t.lemma_ != '' for t in doc) diff --git a/spacy/tests/tagger/test_morph_exceptions.py b/spacy/tests/tagger/test_morph_exceptions.py index 47e29e4eb..63b0a9c15 100644 --- a/spacy/tests/tagger/test_morph_exceptions.py +++ b/spacy/tests/tagger/test_morph_exceptions.py @@ -1,23 +1,17 @@ +# coding: utf-8 from __future__ import unicode_literals -from spacy.en import English + +from ..util import get_doc import pytest -from spacy.en import English -@pytest.fixture -def morph_exc(): - return { - 'PRP$': {'his': {'L': '-PRP-', 'person': 3, 'case': 2}}, - } - - -@pytest.mark.models -def test_load_exc(morph_exc): - # Do this local as we want to modify it - nlp = English() - nlp.vocab.morphology.load_morph_exceptions(morph_exc) - tokens = nlp('I like his style.', tag=True, parse=False) - his = tokens[2] - assert his.tag_ == 'PRP$' - assert his.lemma_ == '-PRP-' +def test_tagger_load_morph_exc(en_tokenizer): + text = "I like his style." + tags = ['PRP', 'VBP', 'PRP$', 'NN', '.'] + morph_exc = {'VBP': {'like': {'L': 'luck'}}} + en_tokenizer.vocab.morphology.load_morph_exceptions(morph_exc) + tokens = en_tokenizer(text) + doc = get_doc(tokens.vocab, [t.text for t in tokens], tags=tags) + assert doc[1].tag_ == 'VBP' + assert doc[1].lemma_ == 'luck' diff --git a/spacy/tests/tagger/test_spaces.py b/spacy/tests/tagger/test_spaces.py index 8837f466b..5b12eba7f 100644 --- a/spacy/tests/tagger/test_spaces.py +++ b/spacy/tests/tagger/test_spaces.py @@ -1,37 +1,32 @@ +# coding: utf-8 """Ensure spaces are assigned the POS tag SPACE""" from __future__ import unicode_literals -from spacy.parts_of_speech import SPACE +from ...parts_of_speech import SPACE import pytest +@pytest.mark.models +def test_tagger_spaces(EN): + text = "Some\nspaces are\tnecessary." + doc = EN(text, tag=True, parse=False) + assert doc[0].pos != SPACE + assert doc[0].pos_ != 'SPACE' + assert doc[1].pos == SPACE + assert doc[1].pos_ == 'SPACE' + assert doc[1].tag_ == 'SP' + assert doc[2].pos != SPACE + assert doc[3].pos != SPACE + assert doc[4].pos == SPACE -@pytest.fixture -def tagged(EN): - string = u'Some\nspaces are\tnecessary.' - tokens = EN(string, tag=True, parse=False) - return tokens @pytest.mark.models -def test_spaces(tagged): - assert tagged[0].pos != SPACE - assert tagged[0].pos_ != 'SPACE' - assert tagged[1].pos == SPACE - assert tagged[1].pos_ == 'SPACE' - assert tagged[1].tag_ == 'SP' - assert tagged[2].pos != SPACE - assert tagged[3].pos != SPACE - assert tagged[4].pos == SPACE - - -@pytest.mark.xfail -@pytest.mark.models -def test_return_char(EN): - string = ('hi Aaron,\r\n\r\nHow is your schedule today, I was wondering if ' +def test_tagger_return_char(EN): + text = ('hi Aaron,\r\n\r\nHow is your schedule today, I was wondering if ' 'you had time for a phone\r\ncall this afternoon?\r\n\r\n\r\n') - tokens = EN(string) + tokens = EN(text) for token in tokens: if token.is_space: assert token.pos == SPACE diff --git a/spacy/tests/tagger/test_tag_names.py b/spacy/tests/tagger/test_tag_names.py index 37e6d9318..9c5b0adcc 100644 --- a/spacy/tests/tagger/test_tag_names.py +++ b/spacy/tests/tagger/test_tag_names.py @@ -1,14 +1,16 @@ -from spacy.en import English +# coding: utf-8 +from __future__ import unicode_literals + import six import pytest @pytest.mark.models def test_tag_names(EN): - tokens = EN(u'I ate pizzas with anchovies.', parse=False, tag=True) - pizza = tokens[2] - assert type(pizza.pos) == int - assert isinstance(pizza.pos_, six.text_type) - assert type(pizza.dep) == int - assert isinstance(pizza.dep_, six.text_type) - assert pizza.tag_ == u'NNS' + text = "I ate pizzas with anchovies." + doc = EN(text, parse=False, tag=True) + assert type(doc[2].pos) == int + assert isinstance(doc[2].pos_, six.text_type) + assert type(doc[2].dep) == int + assert isinstance(doc[2].dep_, six.text_type) + assert doc[2].tag_ == u'NNS' diff --git a/spacy/tests/test_attrs.py b/spacy/tests/test_attrs.py new file mode 100644 index 000000000..9a3af9d82 --- /dev/null +++ b/spacy/tests/test_attrs.py @@ -0,0 +1,27 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..attrs import intify_attrs, ORTH, NORM, LEMMA, IS_ALPHA + +import pytest + + +@pytest.mark.parametrize('text', ["dog"]) +def test_attrs_key(text): + assert intify_attrs({"ORTH": text}) == {ORTH: text} + assert intify_attrs({"NORM": text}) == {NORM: text} + assert intify_attrs({"lemma": text}, strings_map={text: 10}) == {LEMMA: 10} + + +@pytest.mark.parametrize('text', ["dog"]) +def test_attrs_idempotence(text): + int_attrs = intify_attrs({"lemma": text, 'is_alpha': True}, strings_map={text: 10}) + assert intify_attrs(int_attrs) == {LEMMA: 10, IS_ALPHA: True} + + +@pytest.mark.parametrize('text', ["dog"]) +def test_attrs_do_deprecated(text): + int_attrs = intify_attrs({"F": text, 'is_alpha': True}, + strings_map={text: 10}, + _do_deprecated=True) + assert int_attrs == {ORTH: 10, IS_ALPHA: True} diff --git a/spacy/tests/test_docs.py b/spacy/tests/test_docs.py deleted file mode 100644 index 4b0831dfd..000000000 --- a/spacy/tests/test_docs.py +++ /dev/null @@ -1,81 +0,0 @@ -# -*- coding: utf-8 -*- -"""Sphinx doctest is just too hard. Manually paste doctest examples here""" -import pytest - -#@pytest.mark.models -#def test_1(): -# import spacy.en -# from spacy.parts_of_speech import ADV -# # Load the pipeline, and call it with some text. -# nlp = spacy.en.English() -# tokens = nlp(u"‘Give it back,’ he pleaded abjectly, ‘it’s mine.’", -# tag=True, parse=False) -# o = u''.join(tok.string.upper() if tok.pos == ADV else tok.string for tok in tokens) -# assert u"‘Give it BACK,’ he pleaded ABJECTLY, ‘it’s mine.’" -# -# o = nlp.vocab[u'back'].prob -# assert o == -7.033305644989014 -# o = nlp.vocab[u'not'].prob -# assert o == -5.332601070404053 -# o = nlp.vocab[u'quietly'].prob -# assert o == -11.994928359985352 -# -# -#@pytest.mark.m -#def test2(): -# import spacy.en -# from spacy.parts_of_speech import ADV -# nlp = spacy.en.English() -# # Find log probability of Nth most frequent word -# probs = [lex.prob for lex in nlp.vocab] -# probs.sort() -# is_adverb = lambda tok: tok.pos == ADV and tok.prob < probs[-1000] -# tokens = nlp(u"‘Give it back,’ he pleaded abjectly, ‘it’s mine.’") -# o = u''.join(tok.string.upper() if is_adverb(tok) else tok.string for tok in tokens) -# o == u'‘Give it back,’ he pleaded ABJECTLY, ‘it’s mine.’' -# -#@pytest.mark.models -#def test3(): -# import spacy.en -# from spacy.parts_of_speech import ADV -# nlp = spacy.en.English() -# # Find log probability of Nth most frequent word -# probs = [lex.prob for lex in nlp.vocab] -# probs.sort() -# is_adverb = lambda tok: tok.pos == ADV and tok.prob < probs[-1000] -# tokens = nlp(u"‘Give it back,’ he pleaded abjectly, ‘it’s mine.’") -# o = u''.join(tok.string.upper() if is_adverb(tok) else tok.string for tok in tokens) -# assert o == u'‘Give it back,’ he pleaded ABJECTLY, ‘it’s mine.’' -# -# pleaded = tokens[7] -# assert pleaded.repvec.shape == (300,) -# o = pleaded.repvec[:5] -# assert sum(o) != 0 -# from numpy import dot -# from numpy.linalg import norm -# -# cosine = lambda v1, v2: dot(v1, v2) / (norm(v1) * norm(v2)) -# words = [w for w in nlp.vocab if w.is_lower and w.has_repvec] -# words.sort(key=lambda w: cosine(w.repvec, pleaded.repvec)) -# words.reverse() -# o = [w.orth_ for w in words[0:20]] -# assert o == [u'pleaded', u'pled', u'plead', u'confessed', u'interceded', -# u'pleads', u'testified', u'conspired', u'motioned', u'demurred', -# u'countersued', u'remonstrated', u'begged', u'apologised', -# u'consented', u'acquiesced', u'petitioned', u'quarreled', -# u'appealed', u'pleading'] -# o = [w.orth_ for w in words[50:60]] -# assert o == [u'martialed', u'counselled', u'bragged', -# u'backtracked', u'caucused', u'refiled', u'dueled', u'mused', -# u'dissented', u'yearned'] -# o = [w.orth_ for w in words[100:110]] -# assert o == [u'acquits', u'cabled', u'ducked', u'sentenced', -# u'gaoled', u'perjured', u'absconded', u'bargained', u'overstayed', -# u'clerked'] -# -# #o = [w.orth_ for w in words[1000:1010]] -# #assert o == [u'scorned', u'baled', u'righted', u'requested', u'swindled', -# # u'posited', u'firebombed', u'slimed', u'deferred', u'sagged'] -# #o = [w.orth_ for w in words[50000:50010]] -# #assert o == [u'fb', u'ford', u'systems', u'puck', u'anglers', u'ik', u'tabloid', -# # u'dirty', u'rims', u'artists'] diff --git a/spacy/tests/test_download.py b/spacy/tests/test_download.py new file mode 100644 index 000000000..8d67364ea --- /dev/null +++ b/spacy/tests/test_download.py @@ -0,0 +1,36 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..download import download, get_compatibility, get_version, check_error_depr +import pytest + + +def test_download_fetch_compatibility(): + compatibility = get_compatibility() + assert type(compatibility) == dict + + +@pytest.mark.slow +@pytest.mark.parametrize('model', ['en_core_web_md-1.2.0']) +def test_download_direct_download(model): + download(model, direct=True) + + +@pytest.mark.parametrize('model', ['en_core_web_md']) +def test_download_get_matching_version_succeeds(model): + comp = { model: ['1.7.0', '0.100.0'] } + assert get_version(model, comp) + + +@pytest.mark.parametrize('model', ['en_core_web_md']) +def test_download_get_matching_version_fails(model): + diff_model = 'test_' + model + comp = { diff_model: ['1.7.0', '0.100.0'] } + with pytest.raises(SystemExit): + assert get_version(model, comp) + + +@pytest.mark.parametrize('model', [False, None, '', 'all']) +def test_download_no_model_depr_error(model): + with pytest.raises(SystemExit): + check_error_depr(model) diff --git a/spacy/tests/test_matcher.py b/spacy/tests/test_matcher.py deleted file mode 100644 index 903328981..000000000 --- a/spacy/tests/test_matcher.py +++ /dev/null @@ -1,113 +0,0 @@ -from __future__ import unicode_literals -import pytest - -from spacy.strings import StringStore -from spacy.matcher import * -from spacy.attrs import LOWER -from spacy.tokens.doc import Doc -from spacy.vocab import Vocab -from spacy.en import English - - -@pytest.fixture -def matcher(): - patterns = { - 'JS': ['PRODUCT', {}, [[{'ORTH': 'JavaScript'}]]], - 'GoogleNow': ['PRODUCT', {}, [[{'ORTH': 'Google'}, {'ORTH': 'Now'}]]], - 'Java': ['PRODUCT', {}, [[{'LOWER': 'java'}]]], - } - return Matcher(Vocab(lex_attr_getters=English.Defaults.lex_attr_getters), patterns) - - -def test_compile(matcher): - assert matcher.n_patterns == 3 - - -def test_no_match(matcher): - doc = Doc(matcher.vocab, words=['I', 'like', 'cheese', '.']) - assert matcher(doc) == [] - - -def test_match_start(matcher): - doc = Doc(matcher.vocab, words=['JavaScript', 'is', 'good']) - assert matcher(doc) == [(matcher.vocab.strings['JS'], - matcher.vocab.strings['PRODUCT'], 0, 1)] - - -def test_match_end(matcher): - doc = Doc(matcher.vocab, words=['I', 'like', 'java']) - assert matcher(doc) == [(doc.vocab.strings['Java'], - doc.vocab.strings['PRODUCT'], 2, 3)] - - -def test_match_middle(matcher): - doc = Doc(matcher.vocab, words=['I', 'like', 'Google', 'Now', 'best']) - assert matcher(doc) == [(doc.vocab.strings['GoogleNow'], - doc.vocab.strings['PRODUCT'], 2, 4)] - - -def test_match_multi(matcher): - doc = Doc(matcher.vocab, words='I like Google Now and java best'.split()) - assert matcher(doc) == [(doc.vocab.strings['GoogleNow'], - doc.vocab.strings['PRODUCT'], 2, 4), - (doc.vocab.strings['Java'], - doc.vocab.strings['PRODUCT'], 5, 6)] - -def test_match_zero(matcher): - matcher.add('Quote', '', {}, [ - [ - {'ORTH': '"'}, - {'OP': '!', 'IS_PUNCT': True}, - {'OP': '!', 'IS_PUNCT': True}, - {'ORTH': '"'} - ]]) - doc = Doc(matcher.vocab, words='He said , " some words " ...'.split()) - assert len(matcher(doc)) == 1 - doc = Doc(matcher.vocab, words='He said , " some three words " ...'.split()) - assert len(matcher(doc)) == 0 - matcher.add('Quote', '', {}, [ - [ - {'ORTH': '"'}, - {'IS_PUNCT': True}, - {'IS_PUNCT': True}, - {'IS_PUNCT': True}, - {'ORTH': '"'} - ]]) - assert len(matcher(doc)) == 0 - - -def test_match_zero_plus(matcher): - matcher.add('Quote', '', {}, [ - [ - {'ORTH': '"'}, - {'OP': '*', 'IS_PUNCT': False}, - {'ORTH': '"'} - ]]) - doc = Doc(matcher.vocab, words='He said , " some words " ...'.split()) - assert len(matcher(doc)) == 1 - - -def test_phrase_matcher(): - vocab = Vocab(lex_attr_getters=English.Defaults.lex_attr_getters) - matcher = PhraseMatcher(vocab, [Doc(vocab, words='Google Now'.split())]) - doc = Doc(vocab, words=['I', 'like', 'Google', 'Now', 'best']) - assert len(matcher(doc)) == 1 - - -#@pytest.mark.models -#def test_match_preserved(EN): -# patterns = { -# 'JS': ['PRODUCT', {}, [[{'ORTH': 'JavaScript'}]]], -# 'GoogleNow': ['PRODUCT', {}, [[{'ORTH': 'Google'}, {'ORTH': 'Now'}]]], -# 'Java': ['PRODUCT', {}, [[{'LOWER': 'java'}]]], -# } -# matcher = Matcher(EN.vocab, patterns) -# doc = EN.tokenizer('I like java.') -# EN.tagger(doc) -# assert len(doc.ents) == 0 -# doc = EN.tokenizer('I like java.') -# doc.ents += tuple(matcher(doc)) -# assert len(doc.ents) == 1 -# EN.tagger(doc) -# EN.entity(doc) -# assert len(doc.ents) == 1 diff --git a/spacy/tests/test_orth.py b/spacy/tests/test_orth.py new file mode 100644 index 000000000..c8dcbf209 --- /dev/null +++ b/spacy/tests/test_orth.py @@ -0,0 +1,77 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..orth import is_alpha, is_digit, is_punct, is_space, is_ascii, is_upper +from ..orth import is_lower, is_title, like_url, like_number, word_shape + +import pytest + + +# TODO: brackets, is_ascii, is_upper, is_lower, is_title + + +@pytest.mark.parametrize('text,match', [ + ('1997', False), ('19.97', False), ('hello9', False), ('Hello', True), + ('HELLO', True), ('Hello9', False), ('\n', False), ('!', False), + ('!d', False), ('\nd', False)]) +def test_orth_is_alpha(text, match): + if match: + assert is_alpha(text) + else: + assert not is_alpha(text) + + +@pytest.mark.parametrize('text,match', [ + ('1997', True), ('0000000', True), ('19.97', False), ('hello9', False), ('Hello', False), ('\n', False), ('!', False), ('!0', False), + ('\n5', False)]) +def test_orth_is_digit(text, match): + if match: + assert is_digit(text) + else: + assert not is_digit(text) + + +@pytest.mark.parametrize('text,match', [(',', True), (' ', False), ('a', False)]) +def test_orth_is_punct(text,match): + if match: + assert is_punct(text) + else: + assert not is_punct(text) + + +@pytest.mark.parametrize('text,match', [(',', False), (' ', True), ('a', False)]) +def test_orth_is_space(text,match): + if match: + assert is_space(text) + else: + assert not is_space(text) + + +@pytest.mark.parametrize('text,match', [ + ('www.google.com', True), ('google.com', True), ('sydney.com', True), + ('2girls1cup.org', True), ('http://stupid', True), ('www.hi', True), + ('dog', False), ('1.2', False), ('1.a', False), ('hello.There', False)]) +def test_orth_like_url(text, match): + if match: + assert like_url(text) + else: + assert not like_url(text) + + +@pytest.mark.parametrize('text,match', [ + ('10', True), ('1', True), ('10,000', True), ('10,00', True), + (',10', True), ('999.0', True), ('one', True), ('two', True), + ('billion', True), ('dog', False), (',', False), ('1/2', True), + ('1/2/3', False)]) +def test_orth_like_number(text, match): + if match: + assert like_number(text) + else: + assert not like_number(text) + + +@pytest.mark.parametrize('text,shape', [ + ('Nasa', 'Xxxx'), ('capitalized', 'xxxx'), ('999999999', 'dddd'), + ('C3P0', 'XdXd'), (',', ','), ('\n', '\n'), ('``,-', '``,-')]) +def test_orth_word_shape(text, shape): + assert word_shape(text) == shape diff --git a/spacy/tests/test_pickle.py b/spacy/tests/test_pickle.py deleted file mode 100644 index d538fd8b8..000000000 --- a/spacy/tests/test_pickle.py +++ /dev/null @@ -1,33 +0,0 @@ -import cloudpickle -import io -import os -import pickle -import pytest -import tempfile - -try: - unicode -except NameError: - unicode = str - -# These cause the addition of temp files, that are then not deleted -#@pytest.mark.models -#def test_pickle_english(EN): -# file_ = io.BytesIO() -# cloudpickle.dump(EN, file_) -# -# file_.seek(0) -# -# loaded = pickle.load(file_) -# assert loaded is not None -# -#@pytest.mark.models -#def test_cloudpickle_to_file(EN): -# f = tempfile.NamedTemporaryFile(delete=False) -# p = cloudpickle.CloudPickler(f) -# p.dump(EN) -# f.close() -# loaded_en = cloudpickle.load(open(f.name, 'rb')) -# os.unlink(f.name) -# doc = loaded_en(unicode('test parse')) -# assert len(doc) == 2 diff --git a/spacy/tests/test_pickles.py b/spacy/tests/test_pickles.py new file mode 100644 index 000000000..41e15884f --- /dev/null +++ b/spacy/tests/test_pickles.py @@ -0,0 +1,36 @@ +# coding: utf-8 +from __future__ import unicode_literals + +import pytest +import dill as pickle + +from ..vocab import Vocab +from ..attrs import NORM + + +@pytest.mark.parametrize('text1,text2', [('hello', 'bye')]) +def test_pickle_string_store(stringstore, text1, text2): + store1 = stringstore[text1] + store2 = stringstore[text2] + data = pickle.dumps(stringstore, protocol=-1) + unpickled = pickle.loads(data) + assert unpickled[text1] == store1 + assert unpickled[text2] == store2 + assert len(stringstore) == len(unpickled) + + +@pytest.mark.xfail +@pytest.mark.parametrize('text1,text2', [('dog', 'cat')]) +def test_pickle_vocab(text1, text2): + vocab = Vocab(lex_attr_getters={int(NORM): lambda string: string[:-1]}) + lex1 = vocab[text1] + lex2 = vocab[text2] + assert lex1.norm_ == text1[:-1] + assert lex2.norm_ == text2[:-1] + data = pickle.dumps(vocab) + unpickled = pickle.loads(data) + assert unpickled[text1].orth == lex1.orth + assert unpickled[text2].orth == lex2.orth + assert unpickled[text1].norm == lex1.norm + assert unpickled[text2].norm == lex2.norm + assert unpickled[text1].norm != unpickled[text2].norm diff --git a/spacy/tests/tokenizer.sed b/spacy/tests/tokenizer.sed deleted file mode 100644 index f39c04178..000000000 --- a/spacy/tests/tokenizer.sed +++ /dev/null @@ -1,82 +0,0 @@ -#!/bin/sed -f - -# Sed script to produce Penn Treebank tokenization on arbitrary raw text. -# Yeah, sure. - -# expected input: raw text with ONE SENTENCE TOKEN PER LINE - -# by Robert MacIntyre, University of Pennsylvania, late 1995. - -# If this wasn't such a trivial program, I'd include all that stuff about -# no warrantee, free use, etc. from the GNU General Public License. If you -# want to be picky, assume that all of its terms apply. Okay? - -# attempt to get correct directional quotes -s=^"=`` =g -s=\([ ([{<]\)"=\1 `` =g -# close quotes handled at end - -s=\.\.\.= ... =g -s=[,;:@#$%&]= & =g - -# Assume sentence tokenization has been done first, so split FINAL periods -# only. -s=\([^.]\)\([.]\)\([])}>"']*\)[ ]*$=\1 \2\3 =g -# however, we may as well split ALL question marks and exclamation points, -# since they shouldn't have the abbrev.-marker ambiguity problem -s=[?!]= & =g - -# parentheses, brackets, etc. -s=[][(){}<>]= & =g -# Some taggers, such as Adwait Ratnaparkhi's MXPOST, use the parsed-file -# version of these symbols. -# UNCOMMENT THE FOLLOWING 6 LINES if you're using MXPOST. -# s/(/-LRB-/g -# s/)/-RRB-/g -# s/\[/-LSB-/g -# s/\]/-RSB-/g -# s/{/-LCB-/g -# s/}/-RCB-/g - -s=--= -- =g - -# NOTE THAT SPLIT WORDS ARE NOT MARKED. Obviously this isn't great, since -# you might someday want to know how the words originally fit together -- -# but it's too late to make a better system now, given the millions of -# words we've already done "wrong". - -# First off, add a space to the beginning and end of each line, to reduce -# necessary number of regexps. -s=$= = -s=^= = - -s="= '' =g -# possessive or close-single-quote -s=\([^']\)' =\1 ' =g -# as in it's, I'm, we'd -s='\([sSmMdD]\) = '\1 =g -s='ll = 'll =g -s='re = 're =g -s='ve = 've =g -s=n't = n't =g -s='LL = 'LL =g -s='RE = 'RE =g -s='VE = 'VE =g -s=N'T = N'T =g - -s= \([Cc]\)annot = \1an not =g -s= \([Dd]\)'ye = \1' ye =g -s= \([Gg]\)imme = \1im me =g -s= \([Gg]\)onna = \1on na =g -s= \([Gg]\)otta = \1ot ta =g -s= \([Ll]\)emme = \1em me =g -s= \([Mm]\)ore'n = \1ore 'n =g -s= '\([Tt]\)is = '\1 is =g -s= '\([Tt]\)was = '\1 was =g -s= \([Ww]\)anna = \1an na =g -# s= \([Ww]\)haddya = \1ha dd ya =g -# s= \([Ww]\)hatcha = \1ha t cha =g - -# clean out extra spaces -s= *= =g -s=^ *==g diff --git a/spacy/tests/tokenizer/conftest.py b/spacy/tests/tokenizer/conftest.py deleted file mode 100644 index c8e340208..000000000 --- a/spacy/tests/tokenizer/conftest.py +++ /dev/null @@ -1,23 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -import pytest - -from ...en import English -from ...de import German -from ...es import Spanish -from ...it import Italian -from ...fr import French -from ...pt import Portuguese -from ...nl import Dutch -from ...sv import Swedish -from ...hu import Hungarian - - -LANGUAGES = [English, German, Spanish, Italian, French, Dutch, Swedish, Hungarian] - - -@pytest.fixture(params=LANGUAGES) -def tokenizer(request): - lang = request.param - return lang.Defaults.create_tokenizer() diff --git a/spacy/tests/sun.txt b/spacy/tests/tokenizer/sun.txt similarity index 100% rename from spacy/tests/sun.txt rename to spacy/tests/tokenizer/sun.txt diff --git a/spacy/tests/tokenizer/test_tokenizer.py b/spacy/tests/tokenizer/test_tokenizer.py index 9db007d7e..22afa1f43 100644 --- a/spacy/tests/tokenizer/test_tokenizer.py +++ b/spacy/tests/tokenizer/test_tokenizer.py @@ -1,11 +1,13 @@ # coding: utf-8 from __future__ import unicode_literals -from os import path - -import pytest +from ...vocab import Vocab +from ...tokenizer import Tokenizer from ...util import utf8open +from os import path +import pytest + def test_tokenizer_handles_no_word(tokenizer): tokens = tokenizer("") @@ -29,7 +31,7 @@ def test_tokenizer_handles_punct(tokenizer): def test_tokenizer_handles_digits(tokenizer): - exceptions = ["hu"] + exceptions = ["hu", "bn"] text = "Lorem ipsum: 1984." tokens = tokenizer(text) @@ -39,12 +41,18 @@ def test_tokenizer_handles_digits(tokenizer): assert tokens[3].text == "1984" -@pytest.mark.parametrize('text', ["google.com", "python.org", "spacy.io", "explosion.ai"]) +@pytest.mark.parametrize('text', ["google.com", "python.org", "spacy.io", "explosion.ai", "http://www.google.com"]) def test_tokenizer_keep_urls(tokenizer, text): tokens = tokenizer(text) assert len(tokens) == 1 +@pytest.mark.parametrize('text', ["NASDAQ:GOOG"]) +def test_tokenizer_colons(tokenizer, text): + tokens = tokenizer(text) + assert len(tokens) == 3 + + @pytest.mark.parametrize('text', ["hello123@example.com", "hi+there@gmail.it", "matt@explosion.ai"]) def test_tokenizer_keeps_email(tokenizer, text): tokens = tokenizer(text) @@ -67,7 +75,7 @@ Phasellus tincidunt, augue quis porta finibus, massa sapien consectetur augue, n @pytest.mark.parametrize('file_name', ["sun.txt"]) def test_tokenizer_handle_text_from_file(tokenizer, file_name): - loc = path.join(path.dirname(__file__), '..', file_name) + loc = path.join(path.dirname(__file__), file_name) text = utf8open(loc).read() assert len(text) != 0 tokens = tokenizer(text) @@ -81,3 +89,25 @@ def test_tokenizer_suspected_freeing_strings(tokenizer): tokens2 = tokenizer(text2) assert tokens1[0].text == "Lorem" assert tokens2[0].text == "Lorem" + + +@pytest.mark.parametrize('text,tokens', [ + ("lorem", [{'orth': 'lo'}, {'orth': 'rem'}])]) +def test_tokenizer_add_special_case(tokenizer, text, tokens): + tokenizer.add_special_case(text, tokens) + doc = tokenizer(text) + assert doc[0].text == tokens[0]['orth'] + assert doc[1].text == tokens[1]['orth'] + + +@pytest.mark.parametrize('text,tokens', [ + ("lorem", [{'orth': 'lo', 'tag': 'NN'}, {'orth': 'rem'}])]) +def test_tokenizer_add_special_case_tag(text, tokens): + vocab = Vocab(tag_map={'NN': {'pos': 'NOUN'}}) + tokenizer = Tokenizer(vocab, {}, None, None, None) + tokenizer.add_special_case(text, tokens) + doc = tokenizer(text) + assert doc[0].text == tokens[0]['orth'] + assert doc[0].tag_ == tokens[0]['tag'] + assert doc[0].pos_ == 'NOUN' + assert doc[1].text == tokens[1]['orth'] diff --git a/spacy/tests/tokenizer/test_urls.py b/spacy/tests/tokenizer/test_urls.py index 426edee3b..316b25f12 100644 --- a/spacy/tests/tokenizer/test_urls.py +++ b/spacy/tests/tokenizer/test_urls.py @@ -1,77 +1,196 @@ +# coding: utf-8 from __future__ import unicode_literals import pytest -URLS = [ - u"http://www.nytimes.com/2016/04/20/us/politics/new-york-primary-preview.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=a-lede-package-region®ion=top-news&WT.nav=top-news&_r=0", - u"www.google.com?q=google", - u"google.com", - u"www.red-stars.com", - pytest.mark.xfail(u"red-stars.com"), - u"http://foo.com/blah_(wikipedia)#cite-1", - u"http://www.example.com/wpstyle/?bar=baz&inga=42&quux", - u"mailto:foo.bar@baz.com", - u"mailto:foo-bar@baz-co.com" + +URLS_BASIC = [ + "http://www.nytimes.com/2016/04/20/us/politics/new-york-primary-preview.html?hp&action=click&pgtype=Homepage&clickSource=story-heading&module=a-lede-package-region®ion=top-news&WT.nav=top-news&_r=0", + "www.red-stars.com", + "mailto:foo.bar@baz.com", + ] +URLS_FULL = URLS_BASIC + [ + "mailto:foo-bar@baz-co.com", + "www.google.com?q=google", + "http://foo.com/blah_(wikipedia)#cite-1" +] + +# URL SHOULD_MATCH and SHOULD_NOT_MATCH patterns courtesy of https://mathiasbynens.be/demo/url-regex +URLS_SHOULD_MATCH = [ + "http://foo.com/blah_blah", + "http://foo.com/blah_blah/", + "http://www.example.com/wpstyle/?p=364", + "https://www.example.com/foo/?bar=baz&inga=42&quux", + "http://userid:password@example.com:8080", + "http://userid:password@example.com:8080/", + "http://userid@example.com", + "http://userid@example.com/", + "http://userid@example.com:8080", + "http://userid@example.com:8080/", + "http://userid:password@example.com", + "http://userid:password@example.com/", + "http://142.42.1.1/", + "http://142.42.1.1:8080/", + "http://⌘.ws", + "http://⌘.ws/", + "http://foo.com/blah_(wikipedia)#cite-1", + "http://foo.com/blah_(wikipedia)_blah#cite-1", + "http://foo.com/unicode_(✪)_in_parens", + "http://foo.com/(something)?after=parens", + "http://☺.damowmow.com/", + "http://code.google.com/events/#&product=browser", + "http://j.mp", + "ftp://foo.bar/baz", + "http://foo.bar/?q=Test%20URL-encoded%20stuff", + "http://-.~_!$&'()*+,;=:%40:80%2f::::::@example.com", + "http://1337.net", + "http://a.b-c.de", + "http://223.255.255.254", + "http://a.b--c.de/", # this is a legit domain name see: https://gist.github.com/dperini/729294 comment on 9/9/2014 + "http://✪df.ws/123", + "http://➡.ws/䨹", + "http://مثال.إختبار", + "http://例子.测试", + + pytest.mark.xfail("http://उदाहरण.परीक्षा"), + pytest.mark.xfail("http://foo.com/blah_blah_(wikipedia)"), + pytest.mark.xfail("http://foo.com/blah_blah_(wikipedia)_(again)"), +] + +URLS_SHOULD_NOT_MATCH = [ + "http://", + "http://.", + "http://..", + "http://../", + "http://?", + "http://??", + "http://??/", + "http://#", + "http://##", + "http://##/", + "http://foo.bar?q=Spaces should be encoded", + "//", + "//a", + "///a", + "///", + "http:///a", + "rdar://1234", + "h://test", + "http:// shouldfail.com", + ":// should fail", + "http://foo.bar/foo(bar)baz quux", + "ftps://foo.bar/", + "http://-error-.invalid/", + "http://-a.b.co", + "http://a.b-.co", + "http://0.0.0.0", + "http://10.1.1.0", + "http://10.1.1.255", + "http://224.1.1.1", + "http://123.123.123", + "http://3628126748", + "http://.www.foo.bar/", + "http://.www.foo.bar./", + "http://10.1.1.1", + "NASDAQ:GOOG", + + pytest.mark.xfail("foo.com"), + pytest.mark.xfail("http://1.1.1.1.1"), + pytest.mark.xfail("http://www.foo.bar./"), +] + + # Punctuation we want to check is split away before the URL PREFIXES = [ - "(", '"', "...", ">" + "(", '"', ">" ] + # Punctuation we want to check is split away after the URL SUFFIXES = [ '"', ":", ">"] -@pytest.mark.parametrize("text", URLS) -def test_simple_url(tokenizer, text): - tokens = tokenizer(text) - assert tokens[0].orth_ == text +@pytest.mark.parametrize("url", URLS_SHOULD_MATCH) +def test_should_match(en_tokenizer, url): + token_match = en_tokenizer.token_match + if token_match: + assert token_match(url) + +@pytest.mark.parametrize("url", URLS_SHOULD_NOT_MATCH) +def test_should_not_match(en_tokenizer, url): + token_match = en_tokenizer.token_match + if token_match: + assert not token_match(url) + +@pytest.mark.parametrize("url", URLS_BASIC) +def test_tokenizer_handles_simple_url(tokenizer, url): + tokens = tokenizer(url) assert len(tokens) == 1 + assert tokens[0].text == url +@pytest.mark.parametrize("url", URLS_BASIC) +def test_tokenizer_handles_simple_surround_url(tokenizer, url): + tokens = tokenizer("(" + url + ")") + assert len(tokens) == 3 + assert tokens[0].text == "(" + assert tokens[1].text == url + assert tokens[2].text == ")" + + +@pytest.mark.slow @pytest.mark.parametrize("prefix", PREFIXES) -@pytest.mark.parametrize("url", URLS) -def test_prefixed_url(tokenizer, prefix, url): +@pytest.mark.parametrize("url", URLS_FULL) +def test_tokenizer_handles_prefixed_url(tokenizer, prefix, url): tokens = tokenizer(prefix + url) + assert len(tokens) == 2 assert tokens[0].text == prefix assert tokens[1].text == url - assert len(tokens) == 2 - + + +@pytest.mark.slow @pytest.mark.parametrize("suffix", SUFFIXES) -@pytest.mark.parametrize("url", URLS) -def test_suffixed_url(tokenizer, url, suffix): +@pytest.mark.parametrize("url", URLS_FULL) +def test_tokenizer_handles_suffixed_url(tokenizer, url, suffix): tokens = tokenizer(url + suffix) + assert len(tokens) == 2 assert tokens[0].text == url assert tokens[1].text == suffix - assert len(tokens) == 2 - + + +@pytest.mark.slow @pytest.mark.parametrize("prefix", PREFIXES) @pytest.mark.parametrize("suffix", SUFFIXES) -@pytest.mark.parametrize("url", URLS) -def test_surround_url(tokenizer, prefix, suffix, url): +@pytest.mark.parametrize("url", URLS_FULL) +def test_tokenizer_handles_surround_url(tokenizer, prefix, suffix, url): tokens = tokenizer(prefix + url + suffix) + assert len(tokens) == 3 assert tokens[0].text == prefix assert tokens[1].text == url assert tokens[2].text == suffix - assert len(tokens) == 3 - + + +@pytest.mark.slow @pytest.mark.parametrize("prefix1", PREFIXES) @pytest.mark.parametrize("prefix2", PREFIXES) -@pytest.mark.parametrize("url", URLS) -def test_two_prefix_url(tokenizer, prefix1, prefix2, url): +@pytest.mark.parametrize("url", URLS_FULL) +def test_tokenizer_handles_two_prefix_url(tokenizer, prefix1, prefix2, url): tokens = tokenizer(prefix1 + prefix2 + url) + assert len(tokens) == 3 assert tokens[0].text == prefix1 assert tokens[1].text == prefix2 assert tokens[2].text == url - assert len(tokens) == 3 - + + +@pytest.mark.slow @pytest.mark.parametrize("suffix1", SUFFIXES) @pytest.mark.parametrize("suffix2", SUFFIXES) -@pytest.mark.parametrize("url", URLS) -def test_two_prefix_url(tokenizer, suffix1, suffix2, url): +@pytest.mark.parametrize("url", URLS_FULL) +def test_tokenizer_handles_two_suffix_url(tokenizer, suffix1, suffix2, url): tokens = tokenizer(url + suffix1 + suffix2) + assert len(tokens) == 3 assert tokens[0].text == url assert tokens[1].text == suffix1 assert tokens[2].text == suffix2 - assert len(tokens) == 3 diff --git a/spacy/tests/tokens/__init__.py b/spacy/tests/tokens/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/spacy/tests/tokens/test_add_entities.py b/spacy/tests/tokens/test_add_entities.py deleted file mode 100644 index 8d789714f..000000000 --- a/spacy/tests/tokens/test_add_entities.py +++ /dev/null @@ -1,42 +0,0 @@ -from __future__ import unicode_literals -import spacy -from spacy.vocab import Vocab -from spacy.matcher import Matcher -from spacy.tokens.doc import Doc -from spacy.attrs import * -from spacy.pipeline import EntityRecognizer - -import pytest - - -@pytest.fixture(scope="module") -def en_vocab(): - return spacy.get_lang_class('en').Defaults.create_vocab() - - -@pytest.fixture(scope="module") -def entity_recognizer(en_vocab): - return EntityRecognizer(en_vocab, features=[(2,), (3,)]) - -@pytest.fixture -def animal(en_vocab): - return nlp.vocab.strings[u"ANIMAL"] - - -@pytest.fixture -def doc(en_vocab, entity_recognizer): - doc = Doc(en_vocab, words=[u"this", u"is", u"a", u"lion"]) - entity_recognizer(doc) - return doc - - -def test_set_ents_iob(doc): - assert len(list(doc.ents)) == 0 - tags = [w.ent_iob_ for w in doc] - assert tags == (['O'] * len(doc)) - doc.ents = [(doc.vocab.strings['ANIMAL'], 3, 4)] - tags = [w.ent_iob_ for w in doc] - assert tags == ['O', 'O', 'O', 'B'] - doc.ents = [(doc.vocab.strings['WORD'], 0, 2)] - tags = [w.ent_iob_ for w in doc] - assert tags == ['B', 'I', 'O', 'O'] diff --git a/spacy/tests/tokens/test_array.py b/spacy/tests/tokens/test_array.py deleted file mode 100644 index bdfdfd057..000000000 --- a/spacy/tests/tokens/test_array.py +++ /dev/null @@ -1,38 +0,0 @@ -# coding: utf-8 -from __future__ import unicode_literals - -import pytest - -from spacy import attrs - - -def test_attr_of_token(EN): - text = u'An example sentence.' - tokens = EN(text, tag=True, parse=False) - example = EN.vocab[u'example'] - assert example.orth != example.shape - feats_array = tokens.to_array((attrs.ORTH, attrs.SHAPE)) - assert feats_array[0][0] != feats_array[0][1] - - -@pytest.mark.models -def test_tag(EN): - text = u'A nice sentence.' - tokens = EN(text) - assert tokens[0].tag != tokens[1].tag != tokens[2].tag != tokens[3].tag - feats_array = tokens.to_array((attrs.ORTH, attrs.TAG)) - assert feats_array[0][1] == tokens[0].tag - assert feats_array[1][1] == tokens[1].tag - assert feats_array[2][1] == tokens[2].tag - assert feats_array[3][1] == tokens[3].tag - - -@pytest.mark.models -def test_dep(EN): - text = u'A nice sentence.' - tokens = EN(text) - feats_array = tokens.to_array((attrs.ORTH, attrs.DEP)) - assert feats_array[0][1] == tokens[0].dep - assert feats_array[1][1] == tokens[1].dep - assert feats_array[2][1] == tokens[2].dep - assert feats_array[3][1] == tokens[3].dep diff --git a/spacy/tests/tokens/test_noun_chunks.py b/spacy/tests/tokens/test_noun_chunks.py deleted file mode 100644 index 642ce715b..000000000 --- a/spacy/tests/tokens/test_noun_chunks.py +++ /dev/null @@ -1,33 +0,0 @@ -import numpy as np - -from spacy.attrs import HEAD, DEP -from spacy.symbols import nsubj, dobj, punct, amod, nmod, conj, cc, root -from spacy.en import English -from spacy.syntax.iterators import english_noun_chunks - - -def test_not_nested(): - nlp = English(parser=False, entity=False) - sent = u'''Peter has chronic command and control issues'''.strip() - tokens = nlp(sent) - tokens.from_array( - [HEAD, DEP], - np.asarray( - [ - [1, nsubj], - [0, root], - [4, amod], - [3, nmod], - [-1, cc], - [-2, conj], - [-5, dobj] - ], dtype='int32')) - tokens.noun_chunks_iterator = english_noun_chunks - word_occurred = {} - for chunk in tokens.noun_chunks: - for word in chunk: - word_occurred.setdefault(word.text, 0) - word_occurred[word.text] += 1 - for word, freq in word_occurred.items(): - assert freq == 1, (word, [chunk.text for chunk in tokens.noun_chunks]) - diff --git a/spacy/tests/tokens/test_token.py b/spacy/tests/tokens/test_token.py deleted file mode 100644 index c2092564c..000000000 --- a/spacy/tests/tokens/test_token.py +++ /dev/null @@ -1,11 +0,0 @@ -from __future__ import unicode_literals -import pytest - -from spacy.parts_of_speech import ADV - - -@pytest.mark.models -def test_prob(EN): - tokens = EN(u'Give it back', parse=False) - give = tokens[0] - assert give.prob != 0 diff --git a/spacy/tests/tokens/test_token_api.py b/spacy/tests/tokens/test_token_api.py deleted file mode 100644 index acd6332b5..000000000 --- a/spacy/tests/tokens/test_token_api.py +++ /dev/null @@ -1,138 +0,0 @@ -from __future__ import unicode_literals -from spacy.en import English -from spacy.attrs import IS_ALPHA, IS_ASCII, IS_DIGIT, IS_LOWER, IS_PUNCT -from spacy.attrs import IS_SPACE, IS_TITLE, IS_UPPER, LIKE_URL, LIKE_NUM -from spacy.attrs import IS_STOP - -import pytest -import numpy - - -@pytest.mark.models -def test_strings(EN): - tokens = EN(u'Give it back! He pleaded.') - token = tokens[0] - assert token.orth_ == 'Give' - assert token.text == 'Give' - assert token.text_with_ws == 'Give ' - assert token.lower_ == 'give' - assert token.shape_ == 'Xxxx' - assert token.prefix_ == 'G' - assert token.suffix_ == 'ive' - assert token.lemma_ == 'give' - assert token.pos_ == 'VERB' - assert token.tag_ == 'VB' - assert token.dep_ == 'ROOT' - - -def test_flags(EN): - tokens = EN(u'Give it back! He pleaded.') - token = tokens[0] - - assert token.check_flag(IS_ALPHA) - assert not token.check_flag(IS_DIGIT) - # TODO: Test more of these, esp. if a bug is found - - -def test_single_token_string(EN): - tokens = EN(u'foobar') - assert tokens[0].text == 'foobar' - - -def test_str_builtin(EN): - tokens = EN('one two') - assert str(tokens[0]) == u'one' - assert str(tokens[1]) == u'two' - - -@pytest.mark.models -def test_is_properties(EN): - Hi, comma, my, email, is_, addr = EN(u'Hi, my email is test@me.com') - assert Hi.is_title - assert Hi.is_alpha - assert not Hi.is_digit - assert comma.is_punct - assert email.is_ascii - assert not email.like_url - assert is_.is_lower - assert addr.like_email - assert addr.is_oov - assert not Hi.is_oov - -@pytest.mark.models -def test_vectors(EN): - apples, oranges, oov = EN(u'apples oranges ldskbjlsdkbflzdfbl') - assert apples.has_vector - assert oranges.has_vector - assert not oov.has_vector - assert apples.similarity(oranges) > apples.similarity(oov) - assert apples.similarity(oranges) == oranges.similarity(apples) - assert sum(apples.vector) != sum(oranges.vector) - assert numpy.isclose( - apples.vector_norm, - numpy.sqrt(numpy.dot(apples.vector, apples.vector))) - -@pytest.mark.models -def test_ancestors(EN): - # the structure of this sentence depends on the English annotation scheme - tokens = EN(u'Yesterday I saw a dog that barked loudly.') - ancestors = [ t.orth_ for t in tokens[6].ancestors ] - assert ancestors == ['dog','saw'] - ancestors = [ t.orth_ for t in tokens[1].ancestors ] - assert ancestors == ['saw'] - ancestors = [ t.orth_ for t in tokens[2].ancestors ] - assert ancestors == [] - - assert tokens[2].is_ancestor_of(tokens[7]) - assert not tokens[6].is_ancestor_of(tokens[2]) - - -@pytest.mark.models -def test_head_setter(EN): - # the structure of this sentence depends on the English annotation scheme - yesterday, i, saw, a, dog, that, barked, loudly, dot = EN(u'Yesterday I saw a dog that barked loudly.') - assert barked.n_lefts == 1 - assert barked.n_rights == 1 - assert barked.left_edge == that - assert barked.right_edge == loudly - - assert dog.n_lefts == 1 - assert dog.n_rights == 1 - assert dog.left_edge == a - assert dog.right_edge == loudly - - assert a.n_lefts == 0 - assert a.n_rights == 0 - assert a.left_edge == a - assert a.right_edge == a - - assert saw.left_edge == yesterday - assert saw.right_edge == dot - - barked.head = a - - assert barked.n_lefts == 1 - assert barked.n_rights == 1 - assert barked.left_edge == that - assert barked.right_edge == loudly - - assert a.n_lefts == 0 - assert a.n_rights == 1 - assert a.left_edge == a - assert a.right_edge == loudly - - assert dog.n_lefts == 1 - assert dog.n_rights == 0 - assert dog.left_edge == a - assert dog.right_edge == loudly - - assert saw.left_edge == yesterday - assert saw.right_edge == dot - - yesterday.head = that - - assert that.left_edge == yesterday - assert barked.left_edge == yesterday - assert a.left_edge == yesterday - assert dog.left_edge == yesterday - assert saw.left_edge == yesterday diff --git a/spacy/tests/tokens/test_vec.py b/spacy/tests/tokens/test_vec.py deleted file mode 100644 index f98b4de96..000000000 --- a/spacy/tests/tokens/test_vec.py +++ /dev/null @@ -1,18 +0,0 @@ -from __future__ import unicode_literals - -from spacy.en import English - -import pytest - -@pytest.mark.models -def test_vec(EN): - hype = EN.vocab['hype'] - assert hype.orth_ == 'hype' - assert -0.7 >= hype.vector[0] > -0.8 - - -@pytest.mark.models -def test_capitalized(EN): - hype = EN.vocab['Hype'] - assert hype.orth_ == 'Hype' - assert -0.7 >= hype.vector[0] > -0.8 diff --git a/spacy/tests/unit/__init__.py b/spacy/tests/unit/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/spacy/tests/unit/test_attrs.py b/spacy/tests/unit/test_attrs.py deleted file mode 100644 index 22e3e8ce9..000000000 --- a/spacy/tests/unit/test_attrs.py +++ /dev/null @@ -1,32 +0,0 @@ -from ...attrs import * - - -def test_key_no_value(): - int_attrs = intify_attrs({"ORTH": "dog"}) - assert int_attrs == {ORTH: "dog"} - - -def test_lower_key(): - int_attrs = intify_attrs({"norm": "dog"}) - assert int_attrs == {NORM: "dog"} - - - -def test_lower_key_value(): - vals = {'dog': 10} - int_attrs = intify_attrs({"lemma": "dog"}, strings_map=vals) - assert int_attrs == {LEMMA: 10} - - -def test_idempotence(): - vals = {'dog': 10} - int_attrs = intify_attrs({"lemma": "dog", 'is_alpha': True}, strings_map=vals) - int_attrs = intify_attrs(int_attrs) - assert int_attrs == {LEMMA: 10, IS_ALPHA: True} - - -def test_do_deprecated(): - vals = {'dog': 10} - int_attrs = intify_attrs({"F": "dog", 'is_alpha': True}, strings_map=vals, - _do_deprecated=True) - assert int_attrs == {ORTH: 10, IS_ALPHA: True} diff --git a/spacy/tests/unit/test_parser.py b/spacy/tests/unit/test_parser.py deleted file mode 100644 index 78bfad293..000000000 --- a/spacy/tests/unit/test_parser.py +++ /dev/null @@ -1,138 +0,0 @@ -# -*- coding: utf-8 -*- - -from __future__ import unicode_literals - -import pytest -import numpy - -from spacy.attrs import HEAD, DEP - - -@pytest.mark.models -class TestNounChunks: - @pytest.fixture(scope="class") - def ex1_en(self, EN): - example = EN.tokenizer.tokens_from_list('A base phrase should be recognized .'.split(' ')) - EN.tagger.tag_from_strings(example, 'DT NN NN MD VB VBN .'.split(' ')) - det,compound,nsubjpass,aux,auxpass,root,punct = tuple( EN.vocab.strings[l] for l in ['det','compound','nsubjpass','aux','auxpass','root','punct'] ) - example.from_array([HEAD, DEP], - numpy.asarray( - [ - [2, det], - [1, compound], - [3, nsubjpass], - [2, aux], - [1, auxpass], - [0, root], - [-1, punct] - ], dtype='int32')) - return example - - @pytest.fixture(scope="class") - def ex2_en(self, EN): - example = EN.tokenizer.tokens_from_list('A base phrase and a good phrase are often the same .'.split(' ')) - EN.tagger.tag_from_strings(example, 'DT NN NN CC DT JJ NN VBP RB DT JJ .'.split(' ')) - det,compound,nsubj,cc,amod,conj,root,advmod,attr,punct = tuple( EN.vocab.strings[l] for l in ['det','compound','nsubj','cc','amod','conj','root','advmod','attr','punct'] ) - example.from_array([HEAD, DEP], - numpy.asarray( - [ - [2, det], - [1, compound], - [5, nsubj], - [-1, cc], - [1, det], - [1, amod], - [-4, conj], - [0, root], - [-1, advmod], - [1, det], - [-3, attr], - [-4, punct] - ], dtype='int32')) - return example - - @pytest.fixture(scope="class") - def ex3_en(self, EN): - example = EN.tokenizer.tokens_from_list('A phrase with another phrase occurs .'.split(' ')) - EN.tagger.tag_from_strings(example, 'DT NN IN DT NN VBZ .'.split(' ')) - det,nsubj,prep,pobj,root,punct = tuple( EN.vocab.strings[l] for l in ['det','nsubj','prep','pobj','root','punct'] ) - example.from_array([HEAD, DEP], - numpy.asarray( - [ - [1, det], - [4, nsubj], - [-1, prep], - [1, det], - [-2, pobj], - [0, root], - [-1, punct] - ], dtype='int32')) - return example - - @pytest.fixture(scope="class") - def ex1_de(self, DE): - example = DE.tokenizer.tokens_from_list('Eine Tasse steht auf dem Tisch .'.split(' ')) - DE.tagger.tag_from_strings(example, 'ART NN VVFIN APPR ART NN $.'.split(' ')) - nk,sb,root,mo,punct = tuple( DE.vocab.strings[l] for l in ['nk','sb','root','mo','punct']) - example.from_array([HEAD, DEP], - numpy.asarray( - [ - [1, nk], - [1, sb], - [0, root], - [-1, mo], - [1, nk], - [-2, nk], - [-3, punct] - ], dtype='int32')) - return example - - @pytest.fixture(scope="class") - def ex2_de(self, DE): - example = DE.tokenizer.tokens_from_list('Die Sängerin singt mit einer Tasse Kaffee Arien .'.split(' ')) - DE.tagger.tag_from_strings(example, 'ART NN VVFIN APPR ART NN NN NN $.'.split(' ')) - nk,sb,root,mo,punct,oa = tuple( DE.vocab.strings[l] for l in ['nk','sb','root','mo','punct','oa']) - example.from_array([HEAD, DEP], - numpy.asarray( - [ - [1, nk], - [1, sb], - [0, root], - [-1, mo], - [1, nk], - [-2, nk], - [-1, nk], - [-5, oa], - [-6, punct] - ], dtype='int32')) - return example - - def test_en_standard_chunk(self, ex1_en): - chunks = list(ex1_en.noun_chunks) - assert len(chunks) == 1 - assert chunks[0].string == 'A base phrase ' - - def test_en_coordinated_chunks(self, ex2_en): - chunks = list(ex2_en.noun_chunks) - assert len(chunks) == 2 - assert chunks[0].string == 'A base phrase ' - assert chunks[1].string == 'a good phrase ' - - def test_en_pp_chunks(self, ex3_en): - chunks = list(ex3_en.noun_chunks) - assert len(chunks) == 2 - assert chunks[0].string == 'A phrase ' - assert chunks[1].string == 'another phrase ' - - def test_de_standard_chunk(self, ex1_de): - chunks = list(ex1_de.noun_chunks) - assert len(chunks) == 2 - assert chunks[0].string == 'Eine Tasse ' - assert chunks[1].string == 'dem Tisch ' - - def test_de_extended_chunk(self, ex2_de): - chunks = list(ex2_de.noun_chunks) - assert len(chunks) == 3 - assert chunks[0].string == 'Die Sängerin ' - assert chunks[1].string == 'einer Tasse Kaffee ' - assert chunks[2].string == 'Arien ' diff --git a/spacy/tests/unit/test_tokenizer.py b/spacy/tests/unit/test_tokenizer.py deleted file mode 100644 index b6fbfd855..000000000 --- a/spacy/tests/unit/test_tokenizer.py +++ /dev/null @@ -1,48 +0,0 @@ -from __future__ import unicode_literals -import pytest -import re - -from ...vocab import Vocab -from ...tokenizer import Tokenizer - - -@pytest.fixture -def vocab(): - return Vocab(tag_map={'NN': {'pos': 'NOUN'}}) - -@pytest.fixture -def rules(): - return {} - -@pytest.fixture -def prefix_search(): - return None - -@pytest.fixture -def suffix_search(): - return None - -@pytest.fixture -def infix_finditer(): - return None - - -@pytest.fixture -def tokenizer(vocab, rules, prefix_search, suffix_search, infix_finditer): - return Tokenizer(vocab, rules, prefix_search, suffix_search, infix_finditer) - - -def test_add_special_case(tokenizer): - tokenizer.add_special_case('dog', [{'orth': 'd'}, {'orth': 'og'}]) - doc = tokenizer('dog') - assert doc[0].text == 'd' - assert doc[1].text == 'og' - - -def test_special_case_tag(tokenizer): - tokenizer.add_special_case('dog', [{'orth': 'd', 'tag': 'NN'}, {'orth': 'og'}]) - doc = tokenizer('dog') - assert doc[0].text == 'd' - assert doc[0].tag_ == 'NN' - assert doc[0].pos_ == 'NOUN' - assert doc[1].text == 'og' diff --git a/spacy/tests/util.py b/spacy/tests/util.py new file mode 100644 index 000000000..355a4ecae --- /dev/null +++ b/spacy/tests/util.py @@ -0,0 +1,73 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ..tokens import Doc +from ..attrs import ORTH, POS, HEAD, DEP + +import numpy + + +def get_doc(vocab, words=[], pos=None, heads=None, deps=None, tags=None, ents=None): + """Create Doc object from given vocab, words and annotations.""" + pos = pos or [''] * len(words) + heads = heads or [0] * len(words) + deps = deps or [''] * len(words) + + doc = Doc(vocab, words=words) + attrs = doc.to_array([POS, HEAD, DEP]) + for i, (p, head, dep) in enumerate(zip(pos, heads, deps)): + attrs[i, 0] = doc.vocab.strings[p] + attrs[i, 1] = head + attrs[i, 2] = doc.vocab.strings[dep] + doc.from_array([POS, HEAD, DEP], attrs) + if ents: + doc.ents = [(ent_id, doc.vocab.strings[label], start, end) for ent_id, label, start, end in ents] + if tags: + for token in doc: + token.tag_ = tags[token.i] + return doc + + +def apply_transition_sequence(parser, doc, sequence): + """Perform a series of pre-specified transitions, to put the parser in a + desired state.""" + for action_name in sequence: + if '-' in action_name: + move, label = action_name.split('-') + parser.add_label(label) + with parser.step_through(doc) as stepwise: + for transition in sequence: + stepwise.transition(transition) + + +def add_vecs_to_vocab(vocab, vectors): + """Add list of vector tuples to given vocab. All vectors need to have the + same length. Format: [("text", [1, 2, 3])]""" + length = len(vectors[0][1]) + vocab.resize_vectors(length) + for word, vec in vectors: + vocab[word].vector = vec + return vocab + + +def get_cosine(vec1, vec2): + """Get cosine for two given vectors""" + return numpy.dot(vec1, vec2) / (numpy.linalg.norm(vec1) * numpy.linalg.norm(vec2)) + + +def assert_docs_equal(doc1, doc2): + """Compare two Doc objects and assert that they're equal. Tests for tokens, + tags, dependencies and entities.""" + assert [ t.orth for t in doc1 ] == [ t.orth for t in doc2 ] + + assert [ t.pos for t in doc1 ] == [ t.pos for t in doc2 ] + assert [ t.tag for t in doc1 ] == [ t.tag for t in doc2 ] + + assert [ t.head.i for t in doc1 ] == [ t.head.i for t in doc2 ] + assert [ t.dep for t in doc1 ] == [ t.dep for t in doc2 ] + if doc1.is_parsed and doc2.is_parsed: + assert [ s for s in doc1.sents ] == [ s for s in doc2.sents ] + + assert [ t.ent_type for t in doc1 ] == [ t.ent_type for t in doc2 ] + assert [ t.ent_iob for t in doc1 ] == [ t.ent_iob for t in doc2 ] + assert [ ent for ent in doc1.ents ] == [ ent for ent in doc2.ents ] diff --git a/spacy/tests/vectors/test_similarity.py b/spacy/tests/vectors/test_similarity.py index 74d0b5969..5819ca219 100644 --- a/spacy/tests/vectors/test_similarity.py +++ b/spacy/tests/vectors/test_similarity.py @@ -1,96 +1,60 @@ +# coding: utf-8 from __future__ import unicode_literals -import spacy -from spacy.vocab import Vocab -from spacy.tokens.doc import Doc -import numpy -import numpy.linalg +from ..util import get_doc, get_cosine, add_vecs_to_vocab + +import numpy import pytest -def get_vector(letters): - return numpy.asarray([ord(letter) for letter in letters], dtype='float32') - - -def get_cosine(vec1, vec2): - return numpy.dot(vec1, vec2) / (numpy.linalg.norm(vec1) * numpy.linalg.norm(vec2)) - - -@pytest.fixture(scope='module') -def en_vocab(): - vocab = spacy.get_lang_class('en').Defaults.create_vocab() - vocab.resize_vectors(2) - apple_ = vocab[u'apple'] - orange_ = vocab[u'orange'] - apple_.vector = get_vector('ap') - orange_.vector = get_vector('or') - return vocab - - @pytest.fixture -def appleL(en_vocab): - return en_vocab['apple'] +def vectors(): + return [("apple", [1, 2, 3]), ("orange", [-1, -2, -3])] -@pytest.fixture -def orangeL(en_vocab): - return en_vocab['orange'] +@pytest.fixture() +def vocab(en_vocab, vectors): + return add_vecs_to_vocab(en_vocab, vectors) -@pytest.fixture(scope='module') -def apple_orange(en_vocab): - return Doc(en_vocab, words=[u'apple', u'orange']) +def test_vectors_similarity_LL(vocab, vectors): + [(word1, vec1), (word2, vec2)] = vectors + lex1 = vocab[word1] + lex2 = vocab[word2] + assert lex1.has_vector + assert lex2.has_vector + assert lex1.vector_norm != 0 + assert lex2.vector_norm != 0 + assert lex1.vector[0] != lex2.vector[0] and lex1.vector[1] != lex2.vector[1] + assert numpy.isclose(lex1.similarity(lex2), get_cosine(vec1, vec2)) + assert numpy.isclose(lex2.similarity(lex2), lex1.similarity(lex1)) -@pytest.fixture -def appleT(apple_orange): - return apple_orange[0] +def test_vectors_similarity_TT(vocab, vectors): + [(word1, vec1), (word2, vec2)] = vectors + doc = get_doc(vocab, words=[word1, word2]) + assert doc[0].has_vector + assert doc[1].has_vector + assert doc[0].vector_norm != 0 + assert doc[1].vector_norm != 0 + assert doc[0].vector[0] != doc[1].vector[0] and doc[0].vector[1] != doc[1].vector[1] + assert numpy.isclose(doc[0].similarity(doc[1]), get_cosine(vec1, vec2)) + assert numpy.isclose(doc[1].similarity(doc[0]), doc[0].similarity(doc[1])) -@pytest.fixture -def orangeT(apple_orange): - return apple_orange[1] +def test_vectors_similarity_TD(vocab, vectors): + [(word1, vec1), (word2, vec2)] = vectors + doc = get_doc(vocab, words=[word1, word2]) + assert doc.similarity(doc[0]) == doc[0].similarity(doc) -def test_LL_sim(appleL, orangeL): - assert appleL.has_vector - assert orangeL.has_vector - assert appleL.vector_norm != 0 - assert orangeL.vector_norm != 0 - assert appleL.vector[0] != orangeL.vector[0] and appleL.vector[1] != orangeL.vector[1] - assert numpy.isclose( - appleL.similarity(orangeL), - get_cosine(get_vector('ap'), get_vector('or'))) - assert numpy.isclose( - orangeL.similarity(appleL), - appleL.similarity(orangeL)) - - -def test_TT_sim(appleT, orangeT): - assert appleT.has_vector - assert orangeT.has_vector - assert appleT.vector_norm != 0 - assert orangeT.vector_norm != 0 - assert appleT.vector[0] != orangeT.vector[0] and appleT.vector[1] != orangeT.vector[1] - assert numpy.isclose( - appleT.similarity(orangeT), - get_cosine(get_vector('ap'), get_vector('or'))) - assert numpy.isclose( - orangeT.similarity(appleT), - appleT.similarity(orangeT)) - - -def test_TD_sim(apple_orange, appleT): - assert apple_orange.similarity(appleT) == appleT.similarity(apple_orange) - -def test_DS_sim(apple_orange, appleT): - span = apple_orange[:2] - assert apple_orange.similarity(span) == 1.0 - assert span.similarity(apple_orange) == 1.0 - - -def test_TS_sim(apple_orange, appleT): - span = apple_orange[:2] - assert span.similarity(appleT) == appleT.similarity(span) +def test_vectors_similarity_DS(vocab, vectors): + [(word1, vec1), (word2, vec2)] = vectors + doc = get_doc(vocab, words=[word1, word2]) + assert doc.similarity(doc[:2]) == doc[:2].similarity(doc) +def test_vectors_similarity_TS(vocab, vectors): + [(word1, vec1), (word2, vec2)] = vectors + doc = get_doc(vocab, words=[word1, word2]) + assert doc[:2].similarity(doc[0]) == doc[0].similarity(doc[:2]) diff --git a/spacy/tests/vectors/test_vectors.py b/spacy/tests/vectors/test_vectors.py index 3c7539e6a..58a81e2fa 100644 --- a/spacy/tests/vectors/test_vectors.py +++ b/spacy/tests/vectors/test_vectors.py @@ -1,109 +1,126 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...tokenizer import Tokenizer +from ..util import get_doc, add_vecs_to_vocab + import pytest -@pytest.mark.models -def test_token_vector(EN): - token = EN(u'Apples and oranges')[0] - token.vector - token.vector_norm -@pytest.mark.models -def test_lexeme_vector(EN): - lexeme = EN.vocab[u'apples'] - lexeme.vector - lexeme.vector_norm +@pytest.fixture +def vectors(): + return [("apple", [0.0, 1.0, 2.0]), ("orange", [3.0, -2.0, 4.0])] -@pytest.mark.models -def test_doc_vector(EN): - doc = EN(u'Apples and oranges') - doc.vector - doc.vector_norm - -@pytest.mark.models -def test_span_vector(EN): - span = EN(u'Apples and oranges')[0:2] - span.vector - span.vector_norm - -@pytest.mark.models -def test_token_token_similarity(EN): - apples, oranges = EN(u'apples oranges') - assert apples.similarity(oranges) == oranges.similarity(apples) - assert 0.0 < apples.similarity(oranges) < 1.0 - - -@pytest.mark.models -def test_token_lexeme_similarity(EN): - apples = EN(u'apples') - oranges = EN.vocab[u'oranges'] - assert apples.similarity(oranges) == oranges.similarity(apples) - assert 0.0 < apples.similarity(oranges) < 1.0 - - -@pytest.mark.models -def test_token_span_similarity(EN): - doc = EN(u'apples orange juice') - apples = doc[0] - oranges = doc[1:3] - assert apples.similarity(oranges) == oranges.similarity(apples) - assert 0.0 < apples.similarity(oranges) < 1.0 - - -@pytest.mark.models -def test_token_doc_similarity(EN): - doc = EN(u'apples orange juice') - apples = doc[0] - assert apples.similarity(doc) == doc.similarity(apples) - assert 0.0 < apples.similarity(doc) < 1.0 - - -@pytest.mark.models -def test_lexeme_span_similarity(EN): - doc = EN(u'apples orange juice') - apples = EN.vocab[u'apples'] - span = doc[1:3] - assert apples.similarity(span) == span.similarity(apples) - assert 0.0 < apples.similarity(span) < 1.0 +@pytest.fixture() +def vocab(en_vocab, vectors): + return add_vecs_to_vocab(en_vocab, vectors) -@pytest.mark.models -def test_lexeme_lexeme_similarity(EN): - apples = EN.vocab[u'apples'] - oranges = EN.vocab[u'oranges'] - assert apples.similarity(oranges) == oranges.similarity(apples) - assert 0.0 < apples.similarity(oranges) < 1.0 - +@pytest.fixture() +def tokenizer_v(vocab): + return Tokenizer(vocab, {}, None, None, None) -@pytest.mark.models -def test_lexeme_doc_similarity(EN): - doc = EN(u'apples orange juice') - apples = EN.vocab[u'apples'] - assert apples.similarity(doc) == doc.similarity(apples) - assert 0.0 < apples.similarity(doc) < 1.0 - -@pytest.mark.models -def test_span_span_similarity(EN): - doc = EN(u'apples orange juice') - apples = doc[0:2] - oj = doc[1:3] - assert apples.similarity(oj) == oj.similarity(apples) - assert 0.0 < apples.similarity(oj) < 1.0 - +@pytest.mark.parametrize('text', ["apple and orange"]) +def test_vectors_token_vector(tokenizer_v, vectors, text): + doc = tokenizer_v(text) + assert vectors[0] == (doc[0].text, list(doc[0].vector)) + assert vectors[1] == (doc[2].text, list(doc[2].vector)) -@pytest.mark.models -def test_span_doc_similarity(EN): - doc = EN(u'apples orange juice') - apples = doc[0:2] - oj = doc[1:3] - assert apples.similarity(doc) == doc.similarity(apples) - assert 0.0 < apples.similarity(doc) < 1.0 - -@pytest.mark.models -def test_doc_doc_similarity(EN): - apples = EN(u'apples and apple pie') - oranges = EN(u'orange juice') - assert apples.similarity(oranges) == apples.similarity(oranges) - assert 0.0 < apples.similarity(oranges) < 1.0 - +@pytest.mark.parametrize('text', ["apple", "orange"]) +def test_vectors_lexeme_vector(vocab, text): + lex = vocab[text] + assert list(lex.vector) + assert lex.vector_norm + + +@pytest.mark.parametrize('text', [["apple", "and", "orange"]]) +def test_vectors_doc_vector(vocab, text): + doc = get_doc(vocab, text) + assert list(doc.vector) + assert doc.vector_norm + + +@pytest.mark.parametrize('text', [["apple", "and", "orange"]]) +def test_vectors_span_vector(vocab, text): + span = get_doc(vocab, text)[0:2] + assert list(span.vector) + assert span.vector_norm + + +@pytest.mark.parametrize('text', ["apple orange"]) +def test_vectors_token_token_similarity(tokenizer_v, text): + doc = tokenizer_v(text) + assert doc[0].similarity(doc[1]) == doc[1].similarity(doc[0]) + assert 0.0 < doc[0].similarity(doc[1]) < 1.0 + + +@pytest.mark.parametrize('text1,text2', [("apple", "orange")]) +def test_vectors_token_lexeme_similarity(tokenizer_v, vocab, text1, text2): + token = tokenizer_v(text1) + lex = vocab[text2] + assert token.similarity(lex) == lex.similarity(token) + assert 0.0 < token.similarity(lex) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_token_span_similarity(vocab, text): + doc = get_doc(vocab, text) + assert doc[0].similarity(doc[1:3]) == doc[1:3].similarity(doc[0]) + assert 0.0 < doc[0].similarity(doc[1:3]) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_token_doc_similarity(vocab, text): + doc = get_doc(vocab, text) + assert doc[0].similarity(doc) == doc.similarity(doc[0]) + assert 0.0 < doc[0].similarity(doc) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_lexeme_span_similarity(vocab, text): + doc = get_doc(vocab, text) + lex = vocab[text[0]] + assert lex.similarity(doc[1:3]) == doc[1:3].similarity(lex) + assert 0.0 < doc.similarity(doc[1:3]) < 1.0 + + +@pytest.mark.parametrize('text1,text2', [("apple", "orange")]) +def test_vectors_lexeme_lexeme_similarity(vocab, text1, text2): + lex1 = vocab[text1] + lex2 = vocab[text2] + assert lex1.similarity(lex2) == lex2.similarity(lex1) + assert 0.0 < lex1.similarity(lex2) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_lexeme_doc_similarity(vocab, text): + doc = get_doc(vocab, text) + lex = vocab[text[0]] + assert lex.similarity(doc) == doc.similarity(lex) + assert 0.0 < lex.similarity(doc) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_span_span_similarity(vocab, text): + doc = get_doc(vocab, text) + assert doc[0:2].similarity(doc[1:3]) == doc[1:3].similarity(doc[0:2]) + assert 0.0 < doc[0:2].similarity(doc[1:3]) < 1.0 + + +@pytest.mark.parametrize('text', [["apple", "orange", "juice"]]) +def test_vectors_span_doc_similarity(vocab, text): + doc = get_doc(vocab, text) + assert doc[0:2].similarity(doc) == doc.similarity(doc[0:2]) + assert 0.0 < doc[0:2].similarity(doc) < 1.0 + + +@pytest.mark.parametrize('text1,text2', [ + (["apple", "and", "apple", "pie"], ["orange", "juice"])]) +def test_vectors_doc_doc_similarity(vocab, text1, text2): + doc1 = get_doc(vocab, text1) + doc2 = get_doc(vocab, text2) + assert doc1.similarity(doc2) == doc2.similarity(doc1) + assert 0.0 < doc1.similarity(doc2) < 1.0 diff --git a/spacy/tests/vocab/conftest.py b/spacy/tests/vocab/conftest.py deleted file mode 100644 index b28358463..000000000 --- a/spacy/tests/vocab/conftest.py +++ /dev/null @@ -1,6 +0,0 @@ -import pytest - - -@pytest.fixture(scope="session") -def en_vocab(EN): - return EN.vocab diff --git a/spacy/tests/vocab/test_add_vectors.py b/spacy/tests/vocab/test_add_vectors.py index b2bd812cf..38f2f85e8 100644 --- a/spacy/tests/vocab/test_add_vectors.py +++ b/spacy/tests/vocab/test_add_vectors.py @@ -1,12 +1,14 @@ +# coding: utf-8 +from __future__ import unicode_literals + import numpy - -import spacy.en +import pytest -def test_add_vector(): - vocab = spacy.en.English.Defaults.create_vocab() - vocab.resize_vectors(10) - lex = vocab[u'Hello'] +@pytest.mark.parametrize('text', ["Hello"]) +def test_vocab_add_vector(en_vocab, text): + en_vocab.resize_vectors(10) + lex = en_vocab[text] lex.vector = numpy.ndarray((10,), dtype='float32') - lex = vocab[u'Hello'] + lex = en_vocab[text] assert lex.vector.shape == (10,) diff --git a/spacy/tests/vocab/test_flag_features.py b/spacy/tests/vocab/test_flag_features.py deleted file mode 100644 index 880704e28..000000000 --- a/spacy/tests/vocab/test_flag_features.py +++ /dev/null @@ -1,58 +0,0 @@ -from __future__ import unicode_literals -import pytest - -from spacy.orth import is_alpha -from spacy.orth import is_digit -from spacy.orth import is_punct -from spacy.orth import is_space -from spacy.orth import is_ascii -from spacy.orth import is_upper -from spacy.orth import is_lower -from spacy.orth import is_title - - -@pytest.fixture -def words(): - return ["1997", "19.97", "hello9", "Hello", "HELLO", "Hello9", "\n", "!", - "!d", "\nd"] - - -def test_is_alpha(words): - assert not is_alpha(words[0]) - assert not is_alpha(words[1]) - assert not is_alpha(words[2]) - assert is_alpha(words[3]) - assert is_alpha(words[4]) - assert not is_alpha(words[5]) - assert not is_alpha(words[6]) - assert not is_alpha(words[7]) - assert not is_alpha(words[8]) - assert not is_alpha(words[9]) - - -def test_is_digit(words): - assert is_digit(words[0]) - assert not is_digit(words[1]) - assert not is_digit(words[2]) - assert not is_digit(words[3]) - assert not is_digit(words[4]) - assert not is_digit(words[5]) - assert not is_digit(words[6]) - assert not is_digit(words[7]) - assert not is_digit(words[8]) - assert not is_digit(words[9]) - - -def test_is_quote(words): - pass - - -def test_is_bracket(words): - pass - - -def test_is_left_bracket(words): - pass - -def test_is_right_bracket(words): - pass diff --git a/spacy/tests/vocab/test_freeze_string_store.py b/spacy/tests/vocab/test_freeze_string_store.py deleted file mode 100644 index 2e8e13153..000000000 --- a/spacy/tests/vocab/test_freeze_string_store.py +++ /dev/null @@ -1,21 +0,0 @@ -'''Test the possibly temporary workaround of flushing the stringstore of OOV words.''' -import pytest - -from ...strings import StringStore - - -def test_oov(): - strings = StringStore() - a = strings[u'a'] - b = strings[u'b'] - - assert a == 1 - assert b == 2 - strings.set_frozen(True) - c = strings[u'c'] - assert c >= 4 - c_ = strings[c] - assert c_ == u'c' - strings.flush_oov() - with pytest.raises(IndexError): - c_ = strings[c] diff --git a/spacy/tests/vocab/test_intern.py b/spacy/tests/vocab/test_intern.py deleted file mode 100644 index 43a291bee..000000000 --- a/spacy/tests/vocab/test_intern.py +++ /dev/null @@ -1,104 +0,0 @@ -# -*- coding: utf8 -*- -from __future__ import unicode_literals -import pickle - -from spacy.strings import StringStore - -import pytest -import tempfile - -import io - - -@pytest.fixture -def sstore(): - return StringStore() - - -def test_save_bytes(sstore): - Hello_i = sstore[b'Hello'] - assert Hello_i == 1 - assert sstore[b'Hello'] == 1 - assert sstore[b'goodbye'] != Hello_i - assert sstore[b'hello'] != Hello_i - assert Hello_i == 1 - - -def test_save_unicode(sstore): - Hello_i = sstore[u'Hello'] - assert Hello_i == 1 - assert sstore[u'Hello'] == 1 - assert sstore[u'goodbye'] != Hello_i - assert sstore[u'hello'] != Hello_i - assert Hello_i == 1 - - -def test_retrieve_id(sstore): - A_i = sstore[b'A'] - assert sstore.size == 1 - assert sstore[1] == 'A' - with pytest.raises(IndexError): - sstore[2] - - -def test_med_string(sstore): - nine_char_string = sstore[b'0123456789'] - assert sstore[nine_char_string] == u'0123456789' - dummy = sstore[b'A'] - assert sstore[b'0123456789'] == nine_char_string - - -def test_long_string(sstore): - url = u'INFORMATIVE](http://www.google.com/search?as_q=RedditMonkey&hl=en&num=50&btnG=Google+Search&as_epq=&as_oq=&as_eq=&lr=&as_ft=i&as_filetype=&as_qdr=all&as_nlo=&as_nhi=&as_occt=any&as_dt=i&as_sitesearch=&as_rights=&safe=off' - orth = sstore[url] - assert sstore[orth] == url - - -def test_254_string(sstore): - s254 = 'a' * 254 - orth = sstore[s254] - assert sstore[orth] == s254 - -def test_255_string(sstore): - s255 = 'b' * 255 - orth = sstore[s255] - assert sstore[orth] == s255 - -def test_256_string(sstore): - s256 = 'c' * 256 - orth = sstore[s256] - assert sstore[orth] == s256 - - -def test_massive_strings(sstore): - s511 = 'd' * 511 - orth = sstore[s511] - assert sstore[orth] == s511 - s512 = 'e' * 512 - orth = sstore[s512] - assert sstore[orth] == s512 - s513 = '1' * 513 - orth = sstore[s513] - assert sstore[orth] == s513 - - -def test_pickle_string_store(sstore): - hello_id = sstore[u'Hi'] - string_file = io.BytesIO() - pickle.dump(sstore, string_file) - - string_file.seek(0) - - loaded = pickle.load(string_file) - - assert loaded[hello_id] == u'Hi' - - -def test_dump_load(sstore): - id_ = sstore[u'qqqqq'] - with tempfile.TemporaryFile('w+t') as file_: - sstore.dump(file_) - file_.seek(0) - new_store = StringStore() - new_store.load(file_) - assert new_store[id_] == u'qqqqq' diff --git a/spacy/tests/vocab/test_is_punct.py b/spacy/tests/vocab/test_is_punct.py deleted file mode 100644 index 242e31212..000000000 --- a/spacy/tests/vocab/test_is_punct.py +++ /dev/null @@ -1,16 +0,0 @@ -from __future__ import unicode_literals - - -from spacy.orth import is_punct - - -def test_comma(): - assert is_punct(',') - - -def test_space(): - assert not is_punct(' ') - - -def test_letter(): - assert not is_punct('a') diff --git a/spacy/tests/vocab/test_lexeme.py b/spacy/tests/vocab/test_lexeme.py index e278fd707..5fe1eef5c 100644 --- a/spacy/tests/vocab/test_lexeme.py +++ b/spacy/tests/vocab/test_lexeme.py @@ -1,42 +1,58 @@ +# coding: utf-8 from __future__ import unicode_literals +from ...attrs import * + import pytest -from spacy.attrs import * +@pytest.mark.parametrize('text1,prob1,text2,prob2', [("NOUN", -1, "opera", -2)]) +def test_vocab_lexeme_lt(en_vocab, text1, text2, prob1, prob2): + """More frequent is l.t. less frequent""" + lex1 = en_vocab[text1] + lex1.prob = prob1 + lex2 = en_vocab[text2] + lex2.prob = prob2 + + assert lex1 < lex2 + assert lex2 > lex1 -def test_lexeme_eq(en_vocab): - '''Test Issue #361: Equality of lexemes''' - cat1 = en_vocab['cat'] - - cat2 = en_vocab['cat'] - - assert cat1 == cat2 - -def test_lexeme_neq(en_vocab): - '''Inequality of lexemes''' - cat = en_vocab['cat'] - - dog = en_vocab['dog'] - - assert cat != dog - -def test_lexeme_lt(en_vocab): - '''More frequent is l.t. less frequent''' - noun = en_vocab['NOUN'] - - opera = en_vocab['opera'] - - assert noun < opera - assert opera > noun +@pytest.mark.parametrize('text1,text2', [("phantom", "opera")]) +def test_vocab_lexeme_hash(en_vocab, text1, text2): + """Test that lexemes are hashable.""" + lex1 = en_vocab[text1] + lex2 = en_vocab[text2] + lexes = {lex1: lex1, lex2: lex2} + assert lexes[lex1].orth_ == text1 + assert lexes[lex2].orth_ == text2 -def test_lexeme_hash(en_vocab): - '''Test that lexemes are hashable.''' - phantom = en_vocab['phantom'] +def test_vocab_lexeme_is_alpha(en_vocab): + assert en_vocab['the'].flags & (1 << IS_ALPHA) + assert not en_vocab['1999'].flags & (1 << IS_ALPHA) + assert not en_vocab['hello1'].flags & (1 << IS_ALPHA) - opera = en_vocab['opera'] - lexes = {phantom: phantom, opera: opera} - assert lexes[phantom].orth_ == 'phantom' - assert lexes[opera].orth_ == 'opera' +def test_vocab_lexeme_is_digit(en_vocab): + assert not en_vocab['the'].flags & (1 << IS_DIGIT) + assert en_vocab['1999'].flags & (1 << IS_DIGIT) + assert not en_vocab['hello1'].flags & (1 << IS_DIGIT) + + +def test_vocab_lexeme_add_flag_auto_id(en_vocab): + is_len4 = en_vocab.add_flag(lambda string: len(string) == 4) + assert en_vocab['1999'].check_flag(is_len4) == True + assert en_vocab['1999'].check_flag(IS_DIGIT) == True + assert en_vocab['199'].check_flag(is_len4) == False + assert en_vocab['199'].check_flag(IS_DIGIT) == True + assert en_vocab['the'].check_flag(is_len4) == False + assert en_vocab['dogs'].check_flag(is_len4) == True + + +def test_vocab_lexeme_add_flag_provided_id(en_vocab): + is_len4 = en_vocab.add_flag(lambda string: len(string) == 4, flag_id=IS_DIGIT) + assert en_vocab['1999'].check_flag(is_len4) == True + assert en_vocab['199'].check_flag(is_len4) == False + assert en_vocab['199'].check_flag(IS_DIGIT) == False + assert en_vocab['the'].check_flag(is_len4) == False + assert en_vocab['dogs'].check_flag(is_len4) == True diff --git a/spacy/tests/vocab/test_lexeme_flags.py b/spacy/tests/vocab/test_lexeme_flags.py deleted file mode 100644 index 064bd6a8d..000000000 --- a/spacy/tests/vocab/test_lexeme_flags.py +++ /dev/null @@ -1,42 +0,0 @@ -from __future__ import unicode_literals - -import pytest - -from spacy.attrs import * - - -def test_is_alpha(en_vocab): - the = en_vocab['the'] - assert the.flags & (1 << IS_ALPHA) - year = en_vocab['1999'] - assert not year.flags & (1 << IS_ALPHA) - mixed = en_vocab['hello1'] - assert not mixed.flags & (1 << IS_ALPHA) - - -def test_is_digit(en_vocab): - the = en_vocab['the'] - assert not the.flags & (1 << IS_DIGIT) - year = en_vocab['1999'] - assert year.flags & (1 << IS_DIGIT) - mixed = en_vocab['hello1'] - assert not mixed.flags & (1 << IS_DIGIT) - - -def test_add_flag_auto_id(en_vocab): - is_len4 = en_vocab.add_flag(lambda string: len(string) == 4) - assert en_vocab['1999'].check_flag(is_len4) == True - assert en_vocab['1999'].check_flag(IS_DIGIT) == True - assert en_vocab['199'].check_flag(is_len4) == False - assert en_vocab['199'].check_flag(IS_DIGIT) == True - assert en_vocab['the'].check_flag(is_len4) == False - assert en_vocab['dogs'].check_flag(is_len4) == True - - -def test_add_flag_provided_id(en_vocab): - is_len4 = en_vocab.add_flag(lambda string: len(string) == 4, flag_id=IS_DIGIT) - assert en_vocab['1999'].check_flag(is_len4) == True - assert en_vocab['199'].check_flag(is_len4) == False - assert en_vocab['199'].check_flag(IS_DIGIT) == False - assert en_vocab['the'].check_flag(is_len4) == False - assert en_vocab['dogs'].check_flag(is_len4) == True diff --git a/spacy/tests/vocab/test_number.py b/spacy/tests/vocab/test_number.py deleted file mode 100644 index 2ca840a06..000000000 --- a/spacy/tests/vocab/test_number.py +++ /dev/null @@ -1,35 +0,0 @@ -from __future__ import unicode_literals - -from spacy.orth import like_number - - -def test_digits(): - assert like_number('10') - assert like_number('1') - - -def test_comma(): - assert like_number('10,000') - assert like_number('10,00') - assert like_number(',10') - - -def test_period(): - assert like_number('999.0') - assert like_number('.99') - - -def test_fraction(): - assert like_number('1/2') - assert not like_number('1/2/3') - - -def test_word(): - assert like_number('one') - assert like_number('two') - assert like_number('billion') - - -def test_not_number(): - assert not like_number('dog') - assert not like_number(',') diff --git a/spacy/tests/vocab/test_shape.py b/spacy/tests/vocab/test_shape.py deleted file mode 100644 index 0568feb6a..000000000 --- a/spacy/tests/vocab/test_shape.py +++ /dev/null @@ -1,33 +0,0 @@ -from __future__ import unicode_literals - -import pytest - -from spacy.orth import word_shape as ws - - -def test_capitalized(): - assert ws('Nasa') == 'Xxxx' - - -def test_truncate(): - assert ws('capitalized') == 'xxxx' - - -def test_digits(): - assert ws('999999999') == 'dddd' - - -def test_mix(): - assert ws('C3P0') == 'XdXd' - - -def test_punct(): - assert ws(',') == ',' - - -def test_space(): - assert ws('\n') == '\n' - - -def test_punct_seq(): - assert ws('``,-') == '``,-' diff --git a/spacy/tests/vocab/test_urlish.py b/spacy/tests/vocab/test_urlish.py deleted file mode 100644 index 3faa40c5e..000000000 --- a/spacy/tests/vocab/test_urlish.py +++ /dev/null @@ -1,23 +0,0 @@ -from __future__ import unicode_literals - -from spacy.orth import like_url - - -def test_basic_url(): - assert like_url('www.google.com') - assert like_url('google.com') - assert like_url('sydney.com') - assert like_url('Sydney.edu') - assert like_url('2girls1cup.org') - - -def test_close_enough(): - assert like_url('http://stupid') - assert like_url('www.hi') - - -def test_non_match(): - assert not like_url('dog') - assert not like_url('1.2') - assert not like_url('1.a') - assert not like_url('hello.There') diff --git a/spacy/tests/vocab/test_vocab.py b/spacy/tests/vocab/test_vocab.py deleted file mode 100644 index f62cddf0e..000000000 --- a/spacy/tests/vocab/test_vocab.py +++ /dev/null @@ -1,90 +0,0 @@ -from __future__ import unicode_literals -import pytest -import io -import cloudpickle -import pickle - -from spacy.attrs import LEMMA, ORTH, PROB, IS_ALPHA -from spacy.parts_of_speech import NOUN, VERB - -from spacy.attrs import LEMMA, ORTH, PROB, IS_ALPHA -from spacy.parts_of_speech import NOUN, VERB - - -def test_neq(en_vocab): - addr = en_vocab['Hello'] - assert en_vocab['bye'].orth != addr.orth - - -def test_eq(en_vocab): - addr = en_vocab['Hello'] - assert en_vocab['Hello'].orth == addr.orth - - -def test_case_neq(en_vocab): - addr = en_vocab['Hello'] - assert en_vocab['hello'].orth != addr.orth - - -def test_punct_neq(en_vocab): - addr = en_vocab['Hello'] - assert en_vocab['Hello,'].orth != addr.orth - - -def test_shape_attr(en_vocab): - example = en_vocab['example'] - assert example.orth != example.shape - - -def test_symbols(en_vocab): - assert en_vocab.strings['IS_ALPHA'] == IS_ALPHA - assert en_vocab.strings['NOUN'] == NOUN - assert en_vocab.strings['VERB'] == VERB - assert en_vocab.strings['LEMMA'] == LEMMA - assert en_vocab.strings['ORTH'] == ORTH - assert en_vocab.strings['PROB'] == PROB - - -def test_contains(en_vocab): - assert 'Hello' in en_vocab - assert 'LKsdjvlsakdvlaksdvlkasjdvljasdlkfvm' not in en_vocab - - -@pytest.mark.xfail -def test_pickle_vocab(en_vocab): - file_ = io.BytesIO() - cloudpickle.dump(en_vocab, file_) - - file_.seek(0) - - loaded = pickle.load(file_) - - -@pytest.mark.xfail -def test_pickle_vocab_vectors(en_vocab): - vectors_length = en_vocab.vectors_length - assert vectors_length != 0 - - apples = en_vocab['apples'] - oranges = en_vocab['oranges'] - hippos = en_vocab['hippos'] - - assert apples.similarity(oranges) > apples.similarity(hippos) - - apples.vector = hippos.vector - - assert apples.similarity(oranges) < apples.similarity(hippos) - - file_ = io.BytesIO() - cloudpickle.dump(en_vocab, file_) - - file_.seek(0) - - loaded = pickle.load(file_) - - apples = loaded['apples'] - oranges = loaded['oranges'] - hippos = loaded['hippos'] - - assert apples.similarity(oranges) < apples.similarity(hippos) - diff --git a/spacy/tests/vocab/test_vocab_api.py b/spacy/tests/vocab/test_vocab_api.py new file mode 100644 index 000000000..8d845a2ce --- /dev/null +++ b/spacy/tests/vocab/test_vocab_api.py @@ -0,0 +1,39 @@ +# coding: utf-8 +from __future__ import unicode_literals + +from ...attrs import LEMMA, ORTH, PROB, IS_ALPHA +from ...parts_of_speech import NOUN, VERB + +import pytest + + +@pytest.mark.parametrize('text1,text2', [ + ("Hello", "bye"), ("Hello", "hello"), ("Hello", "Hello,")]) +def test_vocab_api_neq(en_vocab, text1, text2): + assert en_vocab[text1].orth != en_vocab[text2].orth + + +@pytest.mark.parametrize('text', "Hello") +def test_vocab_api_eq(en_vocab, text): + lex = en_vocab[text] + assert en_vocab[text].orth == lex.orth + + +@pytest.mark.parametrize('text', ["example"]) +def test_vocab_api_shape_attr(en_vocab, text): + lex = en_vocab[text] + assert lex.orth != lex.shape + + +@pytest.mark.parametrize('string,symbol', [ + ('IS_ALPHA', IS_ALPHA), ('NOUN', NOUN), ('VERB', VERB), ('LEMMA', LEMMA), + ('ORTH', ORTH), ('PROB', PROB)]) +def test_vocab_api_symbols(en_vocab, string, symbol): + assert en_vocab.strings[string] == symbol + + +@pytest.mark.parametrize('text', "Hello") +def test_vocab_api_contains(en_vocab, text): + _ = en_vocab[text] + assert text in en_vocab + assert "LKsdjvlsakdvlaksdvlkasjdvljasdlkfvm" not in en_vocab diff --git a/spacy/tokenizer.pyx b/spacy/tokenizer.pyx index 0e83c4a75..5a4eb844a 100644 --- a/spacy/tokenizer.pyx +++ b/spacy/tokenizer.pyx @@ -163,7 +163,6 @@ cdef class Tokenizer: start = i in_ws = not in_ws i += 1 - i += 1 if start < i: span = string[start:] key = hash_string(span) @@ -275,7 +274,10 @@ cdef class Tokenizer: if cache_hit: pass elif self.token_match and self.token_match(string): - tokens.push_back(self.vocab.get(tokens.mem, string), not suffixes.size()) + # We're always saying 'no' to spaces here -- the caller will + # fix up the outermost one, with reference to the original. + # See Issue #859 + tokens.push_back(self.vocab.get(tokens.mem, string), False) else: matches = self.find_infix(string) if not matches: @@ -289,21 +291,18 @@ cdef class Tokenizer: infix_end = match.end() if infix_start == start: continue - if infix_start == infix_end: - msg = ("Tokenizer found a zero-width 'infix' token.\n" - "If you're using a built-in tokenizer, please\n" - "report this bug. If you're using a tokenizer\n" - "you developed, check your TOKENIZER_INFIXES\n" - "tuple.\n" - "String being matched: {string}\n" - "Language: {lang}") - raise ValueError(msg.format(string=string, lang=self.vocab.lang)) span = string[start:infix_start] tokens.push_back(self.vocab.get(tokens.mem, span), False) - - infix_span = string[infix_start:infix_end] - tokens.push_back(self.vocab.get(tokens.mem, infix_span), False) + + if infix_start != infix_end: + # If infix_start != infix_end, it means the infix + # token is non-empty. Empty infix tokens are useful + # for tokenization in some languages (see + # https://github.com/explosion/spaCy/issues/768) + infix_span = string[infix_start:infix_end] + tokens.push_back(self.vocab.get(tokens.mem, infix_span), False) + start = infix_end span = string[start:] tokens.push_back(self.vocab.get(tokens.mem, span), False) diff --git a/spacy/tokens/doc.pyx b/spacy/tokens/doc.pyx index 8ce2c7fe4..bda528383 100644 --- a/spacy/tokens/doc.pyx +++ b/spacy/tokens/doc.pyx @@ -16,7 +16,7 @@ from ..typedefs cimport attr_t, flags_t from ..attrs cimport attr_id_t from ..attrs cimport ID, ORTH, NORM, LOWER, SHAPE, PREFIX, SUFFIX, LENGTH, CLUSTER from ..attrs cimport POS, LEMMA, TAG, DEP, HEAD, SPACY, ENT_IOB, ENT_TYPE -from ..parts_of_speech cimport CONJ, PUNCT, NOUN +from ..parts_of_speech cimport CCONJ, PUNCT, NOUN from ..parts_of_speech cimport univ_pos_t from ..lexeme cimport Lexeme from .span cimport Span @@ -59,13 +59,13 @@ cdef attr_t get_token_attr(const TokenC* token, attr_id_t feat_name) nogil: cdef class Doc: """ - A sequence of `Token` objects. Access sentences and named entities, - export annotations to numpy arrays, losslessly serialize to compressed + A sequence of `Token` objects. Access sentences and named entities, + export annotations to numpy arrays, losslessly serialize to compressed binary strings. Aside: Internals - The `Doc` object holds an array of `TokenC` structs. - The Python-level `Token` and `Span` objects are views of this + The `Doc` object holds an array of `TokenC` structs. + The Python-level `Token` and `Span` objects are views of this array, i.e. they don't own the data themselves. Code: Construction 1 @@ -80,13 +80,13 @@ cdef class Doc: Create a Doc object. Aside: Implementation - This method of constructing a `Doc` object is usually only used - for deserialization. Standard usage is to construct the document via + This method of constructing a `Doc` object is usually only used + for deserialization. Standard usage is to construct the document via a call to the language object. Arguments: vocab: - A Vocabulary object, which must match any models you want to + A Vocabulary object, which must match any models you want to use (e.g. tokenizer, parser, entity recognizer). words: @@ -156,19 +156,19 @@ cdef class Doc: if self.length == 0: self.is_tagged = True self.is_parsed = True - + def __getitem__(self, object i): ''' doc[i] - Get the Token object at position i, where i is an integer. - Negative indexing is supported, and follows the usual Python + Get the Token object at position i, where i is an integer. + Negative indexing is supported, and follows the usual Python semantics, i.e. doc[-2] is doc[len(doc) - 2]. doc[start : end]] Get a `Span` object, starting at position `start` and ending at position `end`, where `start` and `end` are token indices. For instance, - `doc[2:5]` produces a span consisting of - tokens 2, 3 and 4. Stepped slices (e.g. `doc[start : end : step]`) + `doc[2:5]` produces a span consisting of + tokens 2, 3 and 4. Stepped slices (e.g. `doc[start : end : step]`) are not supported, as `Span` objects must be contiguous (cannot have gaps). You can use negative indices and open-ended ranges, which have their normal Python semantics. @@ -188,11 +188,11 @@ cdef class Doc: def __iter__(self): ''' for token in doc - Iterate over `Token` objects, from which the annotations can - be easily accessed. This is the main way of accessing Token - objects, which are the main way annotations are accessed from - Python. If faster-than-Python speeds are required, you can - instead access the annotations as a numpy array, or access the + Iterate over `Token` objects, from which the annotations can + be easily accessed. This is the main way of accessing Token + objects, which are the main way annotations are accessed from + Python. If faster-than-Python speeds are required, you can + instead access the annotations as a numpy array, or access the underlying C data directly from Cython. ''' cdef int i @@ -251,13 +251,13 @@ cdef class Doc: def __get__(self): if 'has_vector' in self.user_hooks: return self.user_hooks['has_vector'](self) - + return any(token.has_vector for token in self) property vector: ''' A real-valued meaning representation. Defaults to an average of the token vectors. - + Type: numpy.ndarray[ndim=1, dtype='float32'] ''' def __get__(self): @@ -285,14 +285,14 @@ cdef class Doc: norm += value * value self._vector_norm = sqrt(norm) if norm != 0 else 0 return self._vector_norm - + def __set__(self, value): - self._vector_norm = value + self._vector_norm = value @property def string(self): return self.text - + property text: '''A unicode representation of the document text.''' def __get__(self): @@ -306,7 +306,7 @@ cdef class Doc: property ents: ''' Yields named-entity `Span` objects, if the entity recognizer - has been applied to the document. Iterate over the span to get + has been applied to the document. Iterate over the span to get individual Token objects, or access the label: Example: @@ -352,7 +352,7 @@ cdef class Doc: cdef int i for i in range(self.length): self.c[i].ent_type = 0 - # At this point we don't know whether the NER has run over the + # At this point we don't know whether the NER has run over the # Doc. If the ent_iob is missing, leave it missing. if self.c[i].ent_iob != 0: self.c[i].ent_iob = 2 # Means O. Non-O are set from ents. @@ -384,9 +384,9 @@ cdef class Doc: property noun_chunks: ''' Yields base noun-phrase #[code Span] objects, if the document - has been syntactically parsed. A base noun phrase, or - 'NP chunk', is a noun phrase that does not permit other NPs to - be nested within it – so no NP-level coordination, no prepositional + has been syntactically parsed. A base noun phrase, or + 'NP chunk', is a noun phrase that does not permit other NPs to + be nested within it – so no NP-level coordination, no prepositional phrases, and no relative clauses. For example: ''' def __get__(self): @@ -422,7 +422,7 @@ cdef class Doc: def __get__(self): if 'sents' in self.user_hooks: return self.user_hooks['sents'](self) - + if not self.is_parsed: raise ValueError( "sentence boundary detection requires the dependency parse, which " @@ -465,8 +465,8 @@ cdef class Doc: @cython.boundscheck(False) cpdef np.ndarray to_array(self, object py_attr_ids): """ - Given a list of M attribute IDs, export the tokens to a numpy - `ndarray` of shape (N, M), where `N` is the length + Given a list of M attribute IDs, export the tokens to a numpy + `ndarray` of shape (N, M), where `N` is the length of the document. The values will be 32-bit integers. Example: @@ -474,7 +474,7 @@ cdef class Doc: doc = nlp(text) # All strings mapped to integers, for easy export to numpy np_array = doc.to_array([attrs.LOWER, attrs.POS, attrs.ENT_TYPE, attrs.IS_ALPHA]) - + Arguments: attr_ids (list[int]): A list of attribute ID ints. @@ -500,7 +500,8 @@ cdef class Doc: by the values of the given attribute ID. Example: - from spacy.en import English, attrs + from spacy.en import English + from spacy import attrs nlp = English() tokens = nlp(u'apple apple orange banana') tokens.count_by(attrs.ORTH) @@ -519,7 +520,7 @@ cdef class Doc: cdef int i cdef attr_t attr cdef size_t count - + if counts is None: counts = PreshCounter() output_dict = True @@ -569,7 +570,7 @@ cdef class Doc: cdef TokenC* tokens = self.c cdef int length = len(array) cdef attr_t[:] values - for col, attr_id in enumerate(attrs): + for col, attr_id in enumerate(attrs): values = array[:, col] if attr_id == HEAD: for i in range(length): @@ -611,11 +612,11 @@ cdef class Doc: '''Deserialize, loading from bytes.''' self.vocab.serializer.unpack_into(data[4:], self) return self - + @staticmethod def read_bytes(file_): ''' - A static method, used to read serialized #[code Doc] objects from + A static method, used to read serialized #[code Doc] objects from a file. For example: Example: @@ -672,7 +673,7 @@ cdef class Doc: "Expected either 3 arguments (deprecated), or 0 (use keyword arguments). " "Arguments supplied:\n%s\n" "Keyword arguments:%s\n" % (len(args), repr(args), repr(attributes))) - + cdef int start = token_by_start(self.c, self.length, start_idx) if start == -1: return None @@ -783,7 +784,7 @@ cdef int set_children_from_heads(TokenC* tokens, int length) except -1: if child.l_edge < head.l_edge: head.l_edge = child.l_edge head.l_kids += 1 - + # Set right edges --- same as above, but iterate in reverse for i in range(length-1, -1, -1): child = &tokens[i] @@ -797,4 +798,4 @@ cdef int set_children_from_heads(TokenC* tokens, int length) except -1: for i in range(length): if tokens[i].head == 0 and tokens[i].dep != 0: tokens[tokens[i].l_edge].sent_start = True - + diff --git a/spacy/tokens/span.pyx b/spacy/tokens/span.pyx index 903ef26d1..fc5d26174 100644 --- a/spacy/tokens/span.pyx +++ b/spacy/tokens/span.pyx @@ -365,6 +365,14 @@ cdef class Span: def __get__(self): return ' '.join([t.lemma_ for t in self]).strip() + property upper_: + def __get__(self): + return ''.join([t.string.upper() for t in self]).strip() + + property lower_: + def __get__(self): + return ''.join([t.string.lower() for t in self]).strip() + property string: def __get__(self): return ''.join([t.string for t in self]) diff --git a/spacy/tokens/token.pyx b/spacy/tokens/token.pyx index ff1c6149d..34de9dee7 100644 --- a/spacy/tokens/token.pyx +++ b/spacy/tokens/token.pyx @@ -1,4 +1,4 @@ -# encoding: utf8 +# coding: utf8 # cython: infer_types=True from __future__ import unicode_literals @@ -20,7 +20,7 @@ from .. import parts_of_speech from ..attrs cimport LEMMA from ..attrs cimport ID, ORTH, NORM, LOWER, SHAPE, PREFIX, SUFFIX, LENGTH, CLUSTER from ..attrs cimport POS, LEMMA, TAG, DEP -from ..parts_of_speech cimport CONJ, PUNCT +from ..parts_of_speech cimport CCONJ, PUNCT from ..attrs cimport IS_ALPHA, IS_ASCII, IS_DIGIT, IS_LOWER, IS_PUNCT, IS_SPACE from ..attrs cimport IS_BRACKET @@ -42,6 +42,9 @@ cdef class Token: self.c = &self.doc.c[offset] self.i = offset + def __hash__(self): + return hash((self.doc, self.i)) + def __len__(self): '''Number of unicode characters in token.text''' return self.c.lex.length @@ -60,10 +63,10 @@ cdef class Token: def __repr__(self): return self.__str__() - def __richcmp__(self, other, int op): + def __richcmp__(self, Token other, int op): # http://cython.readthedocs.io/en/latest/src/userguide/special_methods.html my = self.idx - their = other.idx + their = other.idx if other is not None else None if op == 0: return my < their elif op == 2: @@ -81,7 +84,7 @@ cdef class Token: cpdef bint check_flag(self, attr_id_t flag_id) except -1: '''Check the value of a boolean flag. - + Arguments: flag_id (int): The ID of the flag attribute. Returns: @@ -222,7 +225,7 @@ cdef class Token: property vector: ''' A real-valued meaning representation. - + Type: numpy.ndarray[ndim=1, dtype='float32'] ''' def __get__(self): @@ -340,7 +343,7 @@ cdef class Token: ''' def __get__(self): cdef const TokenC* head_ptr = self.c - # guard against infinite loop, no token can have + # guard against infinite loop, no token can have # more ancestors than tokens in the tree cdef int i = 0 while head_ptr.head != 0 and i < self.doc.length: @@ -367,7 +370,7 @@ cdef class Token: property head: '''The syntactic parent, or "governor", of this token. - + Returns: Token ''' def __get__(self): @@ -387,7 +390,7 @@ cdef class Token: # is the new head a descendant of the old head cdef bint is_desc = old_head.is_ancestor_of(new_head) - + cdef int new_edge cdef Token anc, child @@ -417,7 +420,7 @@ cdef class Token: if anc.c.l_edge <= new_edge: break anc.c.l_edge = new_edge - + elif self.c.head < 0: # right dependent old_head.c.r_kids -= 1 # do the same thing as for l_edge @@ -432,7 +435,7 @@ cdef class Token: if child.c.r_edge > new_edge: new_edge = child.c.r_edge old_head.c.r_edge = new_edge - + for anc in old_head.ancestors: if anc.c.r_edge >= new_edge: break @@ -595,19 +598,19 @@ cdef class Token: property is_punct: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_PUNCT) - property is_space: + property is_space: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_SPACE) - - property is_bracket: + + property is_bracket: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_BRACKET) - property is_quote: + property is_quote: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_QUOTE) - property is_left_punct: + property is_left_punct: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_LEFT_PUNCT) - property is_right_punct: + property is_right_punct: def __get__(self): return Lexeme.c_check_flag(self.c.lex, IS_RIGHT_PUNCT) property like_url: diff --git a/spacy/train.py b/spacy/train.py index a86569100..18269e0ad 100644 --- a/spacy/train.py +++ b/spacy/train.py @@ -2,6 +2,7 @@ from __future__ import absolute_import from __future__ import unicode_literals import random +import tqdm from .gold import GoldParse from .scorer import Scorer from .gold import merge_sents @@ -12,11 +13,12 @@ class Trainer(object): def __init__(self, nlp, gold_tuples): self.nlp = nlp self.gold_tuples = gold_tuples + self.nr_epoch = 0 def epochs(self, nr_epoch, augment_data=None, gold_preproc=False): cached_golds = {} def _epoch(indices): - for i in indices: + for i in tqdm.tqdm(indices): raw_text, paragraph_tuples = self.gold_tuples[i] if gold_preproc: raw_text = None @@ -39,12 +41,14 @@ class Trainer(object): for itn in range(nr_epoch): random.shuffle(indices) yield _epoch(indices) - + self.nr_epoch += 1 + def update(self, doc, gold): for process in self.nlp.pipeline: if hasattr(process, 'update'): - process.update(doc, gold) - process(doc) + loss = process.update(doc, gold, itn=self.nr_epoch) + else: + process(doc) return doc def evaluate(self, dev_sents, gold_preproc=False): diff --git a/spacy/util.py b/spacy/util.py index 4ab1f71f0..63c57bf69 100644 --- a/spacy/util.py +++ b/spacy/util.py @@ -1,13 +1,16 @@ -# encoding: utf8 -from __future__ import unicode_literals +# coding: utf8 +from __future__ import unicode_literals, print_function import os import io import json import re import os.path import pathlib +import sys import six +import textwrap + from .attrs import TAG, HEAD, DEP, ENT_IOB, ENT_TYPE try: @@ -144,3 +147,53 @@ def check_renamed_kwargs(renamed, kwargs): for old, new in renamed.items(): if old in kwargs: raise TypeError("Keyword argument %s now renamed to %s" % (old, new)) + + +def parse_package_meta(package_path, package, require=True): + location = os.path.join(str(package_path), package, 'meta.json') + if os.path.isfile(location): + with io.open(location, encoding='utf8') as f: + meta = json.load(f) + return meta + elif require: + raise IOError("Could not read meta.json from %s" % location) + else: + return None + + +def print_msg(*text, **kwargs): + """Print formatted message. Each positional argument is rendered as newline- + separated paragraph. If kwarg 'title' exist, title is printed above the text + and highlighted (using ANSI escape sequences manually to avoid unnecessary + dependency).""" + + message = '\n\n'.join([_wrap_text(t) for t in text]) + tpl_msg = '\n{msg}\n' + tpl_title = '\n\033[93m{msg}\033[0m' + + if 'title' in kwargs and kwargs['title']: + title = _wrap_text(kwargs['title']) + print(tpl_title.format(msg=title)) + print(tpl_msg.format(msg=message)) + + +def _wrap_text(text): + """Wrap text at given width using textwrap module. Indent should consist of + spaces. Its length is deducted from wrap width to ensure exact wrapping.""" + + wrap_max = 80 + indent = ' ' + wrap_width = wrap_max - len(indent) + return textwrap.fill(text, width=wrap_width, initial_indent=indent, + subsequent_indent=indent, break_long_words=False, + break_on_hyphens=False) + + +def sys_exit(*messages, **kwargs): + """Performs SystemExit. For modules used from the command line, like + download and link. To print message, use the same arguments as for + print_msg().""" + + if messages: + print_msg(*messages, **kwargs) + sys.exit(0) diff --git a/spacy/vocab.pyx b/spacy/vocab.pyx index 4c2f2f283..da5db82f8 100644 --- a/spacy/vocab.pyx +++ b/spacy/vocab.pyx @@ -1,24 +1,24 @@ from __future__ import unicode_literals -from libc.stdio cimport fopen, fclose, fread, fwrite, FILE from libc.string cimport memset from libc.stdint cimport int32_t -from libc.stdint cimport uint64_t from libc.math cimport sqrt from pathlib import Path import bz2 -import io -import math import ujson as json -import tempfile +import re + +try: + import cPickle as pickle +except ImportError: + import pickle from .lexeme cimport EMPTY_LEXEME from .lexeme cimport Lexeme from .strings cimport hash_string -from .orth cimport word_shape from .typedefs cimport attr_t -from .cfile cimport CFile +from .cfile cimport CFile, StringCFile from .lemmatizer import Lemmatizer from .attrs import intify_attrs from .tokens.token cimport Token @@ -29,7 +29,6 @@ from . import symbols from cymem.cymem cimport Address from .serialize.packer cimport Packer from .attrs cimport PROB, LANG -from . import deprecated from . import util @@ -305,7 +304,7 @@ cdef class Vocab: ''' key = hash_string(string) lex = self._by_hash.get(key) - return True if lex is not NULL else False + return lex is not NULL def __iter__(self): '''Iterate over the lexemes in the vocabulary. @@ -352,20 +351,22 @@ cdef class Vocab: Token.set_struct_attr(token, attr_id, value) return tokens - def dump(self, loc): - """Save the lexemes binary data to the given location. + def dump(self, loc=None): + """Save the lexemes binary data to the given location, or + return a byte-string with the data if loc is None. Arguments: - loc (Path): The path to save to. + loc (Path or None): The path to save to, or None. """ - if hasattr(loc, 'as_posix'): - loc = loc.as_posix() - cdef bytes bytes_loc = loc.encode('utf8') if type(loc) == unicode else loc - - cdef CFile fp = CFile(bytes_loc, 'wb') + cdef CFile fp + if loc is None: + fp = StringCFile('wb') + else: + fp = CFile(loc, 'wb') cdef size_t st cdef size_t addr cdef hash_t key + cdef LexemeC* lexeme = NULL for key, addr in self._by_hash.items(): lexeme = addr fp.write_from(&lexeme.orth, sizeof(lexeme.orth), 1) @@ -384,6 +385,8 @@ cdef class Vocab: fp.write_from(&lexeme.l2_norm, sizeof(lexeme.l2_norm), 1) fp.write_from(&lexeme.lang, sizeof(lexeme.lang), 1) fp.close() + if loc is None: + return fp.string_data() def load_lexemes(self, loc): '''Load the binary vocabulary data from the given location. @@ -396,10 +399,10 @@ cdef class Vocab: ''' fp = CFile(loc, 'rb', on_open_error=lambda: IOError('LexemeCs file not found at %s' % loc)) - cdef LexemeC* lexeme + cdef LexemeC* lexeme = NULL cdef hash_t key cdef unicode py_str - cdef attr_t orth + cdef attr_t orth = 0 assert sizeof(orth) == sizeof(lexeme.orth) i = 0 while True: @@ -433,6 +436,60 @@ cdef class Vocab: i += 1 fp.close() + def _deserialize_lexemes(self, CFile fp): + '''Load the binary vocabulary data from the given CFile. + ''' + cdef LexemeC* lexeme = NULL + cdef hash_t key + cdef unicode py_str + cdef attr_t orth = 0 + assert sizeof(orth) == sizeof(lexeme.orth) + i = 0 + cdef int todo = fp.size + cdef int lex_size = sizeof(lexeme.flags) + lex_size += sizeof(lexeme.id) + lex_size += sizeof(lexeme.length) + lex_size += sizeof(lexeme.orth) + lex_size += sizeof(lexeme.lower) + lex_size += sizeof(lexeme.norm) + lex_size += sizeof(lexeme.shape) + lex_size += sizeof(lexeme.prefix) + lex_size += sizeof(lexeme.suffix) + lex_size += sizeof(lexeme.cluster) + lex_size += sizeof(lexeme.prob) + lex_size += sizeof(lexeme.sentiment) + lex_size += sizeof(lexeme.l2_norm) + lex_size += sizeof(lexeme.lang) + while True: + if todo < lex_size: + break + todo -= lex_size + lexeme = self.mem.alloc(sizeof(LexemeC), 1) + # Copy data from the file into the lexeme + fp.read_into(&lexeme.flags, 1, sizeof(lexeme.flags)) + fp.read_into(&lexeme.id, 1, sizeof(lexeme.id)) + fp.read_into(&lexeme.length, 1, sizeof(lexeme.length)) + fp.read_into(&lexeme.orth, 1, sizeof(lexeme.orth)) + fp.read_into(&lexeme.lower, 1, sizeof(lexeme.lower)) + fp.read_into(&lexeme.norm, 1, sizeof(lexeme.norm)) + fp.read_into(&lexeme.shape, 1, sizeof(lexeme.shape)) + fp.read_into(&lexeme.prefix, 1, sizeof(lexeme.prefix)) + fp.read_into(&lexeme.suffix, 1, sizeof(lexeme.suffix)) + fp.read_into(&lexeme.cluster, 1, sizeof(lexeme.cluster)) + fp.read_into(&lexeme.prob, 1, sizeof(lexeme.prob)) + fp.read_into(&lexeme.sentiment, 1, sizeof(lexeme.sentiment)) + fp.read_into(&lexeme.l2_norm, 1, sizeof(lexeme.l2_norm)) + fp.read_into(&lexeme.lang, 1, sizeof(lexeme.lang)) + + lexeme.vector = EMPTY_VEC + py_str = self.strings[lexeme.orth] + key = hash_string(py_str) + self._by_hash.set(key, lexeme) + self._by_orth.set(lexeme.orth, lexeme) + self.length += 1 + i += 1 + fp.close() + def dump_vectors(self, out_loc): '''Save the word vectors to a binary file. @@ -477,9 +534,12 @@ cdef class Vocab: cdef attr_t orth cdef int32_t vec_len = -1 cdef double norm = 0.0 + + whitespace_pattern = re.compile(r'\s', re.UNICODE) + for line_num, line in enumerate(file_): pieces = line.split() - word_str = pieces.pop(0) + word_str = " " if whitespace_pattern.match(line) else pieces.pop(0) if vec_len == -1: vec_len = len(pieces) elif vec_len != len(pieces): @@ -558,6 +618,42 @@ cdef class Vocab: return vec_len +def pickle_vocab(vocab): + sstore = vocab.strings + morph = vocab.morphology + length = vocab.length + serializer = vocab._serializer + data_dir = vocab.data_dir + lex_attr_getters = vocab.lex_attr_getters + + lexemes_data = vocab.dump() + vectors_length = vocab.vectors_length + + return (unpickle_vocab, + (sstore, morph, serializer, data_dir, lex_attr_getters, + lexemes_data, length, vectors_length)) + + +def unpickle_vocab(sstore, morphology, serializer, data_dir, + lex_attr_getters, bytes lexemes_data, int length, int vectors_length): + cdef Vocab vocab = Vocab() + vocab.length = length + vocab.vectors_length = vectors_length + vocab.strings = sstore + cdef CFile fp = StringCFile('r', data=lexemes_data) + vocab.morphology = morphology + vocab._serializer = serializer + vocab.data_dir = data_dir + vocab.lex_attr_getters = lex_attr_getters + vocab._deserialize_lexemes(fp) + vocab.length = length + vocab.vectors_length = vectors_length + return vocab + + +copy_reg.pickle(Vocab, pickle_vocab, unpickle_vocab) + + def write_binary_vectors(in_loc, out_loc): cdef CFile out_file = CFile(out_loc, 'wb') cdef Address mem diff --git a/website/_harp.json b/website/_harp.json index 04a66f772..9548cadcf 100644 --- a/website/_harp.json +++ b/website/_harp.json @@ -12,10 +12,10 @@ "COMPANY_URL": "https://explosion.ai", "DEMOS_URL": "https://demos.explosion.ai", - "SPACY_VERSION": "1.5", + "SPACY_VERSION": "1.6", "LATEST_NEWS": { - "url": "https://explosion.ai/blog/spacy-user-survey", - "title": "The results of the spaCy user survey" + "url": "https://explosion.ai/blog/deep-learning-formula-nlp", + "title": "The new deep learning formula for state-of-the-art NLP models" }, "SOCIAL": { @@ -54,9 +54,9 @@ } }, - "V_CSS": "1.14", - "V_JS": "1.0", - "DEFAULT_SYNTAX" : "python", + "V_CSS": "1.15", + "V_JS": "1.1", + "DEFAULT_SYNTAX": "python", "ANALYTICS": "UA-58931649-1", "MAILCHIMP": { "user": "spacy.us12", diff --git a/website/_includes/_footer.jade b/website/_includes/_footer.jade index c83fd2988..e933f37a8 100644 --- a/website/_includes/_footer.jade +++ b/website/_includes/_footer.jade @@ -22,7 +22,7 @@ footer.o-footer.u-text.u-border-dotted include _newsletter .o-inline-list.u-text-center.u-text-tiny.u-color-subtle - span © #{new Date().getFullYear()} #[+a(COMPANY_URL, true)=COMPANY] + span © 2016-#{new Date().getFullYear()} #[+a(COMPANY_URL, true)=COMPANY] +a(COMPANY_URL, true) +svg("graphics", "explosion", 45).o-icon.u-color-theme.u-grayscale diff --git a/website/_includes/_mixins-base.jade b/website/_includes/_mixins-base.jade index bc8b85557..ea4d2964d 100644 --- a/website/_includes/_mixins-base.jade +++ b/website/_includes/_mixins-base.jade @@ -113,7 +113,7 @@ mixin gitter(button, label) //- Logo mixin logo() - +svg("graphics", "spacy", 500).o-logo&attributes(attributes) + +svg("graphics", "spacy", 675, 215).o-logo&attributes(attributes) //- Landing diff --git a/website/announcement.jade b/website/announcement.jade deleted file mode 100644 index 5ea9866be..000000000 --- a/website/announcement.jade +++ /dev/null @@ -1,14 +0,0 @@ -//- 💫 SPACY ANNOUNCEMENT FROM 2016-08-09 (needs to stay for reference) - -include _includes/_mixins - -.o-content.u-padding - +h(1) - +label #[+date("2016-08-09")] - | Dear spaCy users, - - p Unfortunately, we (Henning Peters and Matthew Honnibal) are parting ways. Breaking up is never easy, and it's taken us a while to get our stuff together. Hopefully, you didn't notice anything was up — if you did, we hope you haven't been inconvenienced. - - p Here's how this is going to work: Matt will continue to develop and maintain spaCy and all related projects under his name. Nothing will change for you. Henning will take over our legal structure and start a new business under a new name. - - p Sincerely,#[br] Henning Peters and Matthew Honnibal diff --git a/website/assets/css/_base/_objects.sass b/website/assets/css/_base/_objects.sass index 7aaaef787..1be4b17d5 100644 --- a/website/assets/css/_base/_objects.sass +++ b/website/assets/css/_base/_objects.sass @@ -83,7 +83,7 @@ //- Logo .o-logo - @include size($logo-width, auto) + @include size($logo-width, $logo-height) fill: currentColor vertical-align: middle margin: 0 0.5rem diff --git a/website/assets/css/_variables.sass b/website/assets/css/_variables.sass index 6844517d7..9029161e2 100644 --- a/website/assets/css/_variables.sass +++ b/website/assets/css/_variables.sass @@ -11,6 +11,7 @@ $aside-width: 30vw $aside-padding: 25px $logo-width: 85px +$logo-height: 27px $grid: ( quarter: 4, third: 3, half: 2, two-thirds: 1.5, three-quarters: 1.33 ) $breakpoints: ( sm: 768px, md: 992px, lg: 1200px ) diff --git a/website/assets/js/main.js b/website/assets/js/main.js index bd21f7995..cc74e189b 100644 --- a/website/assets/js/main.js +++ b/website/assets/js/main.js @@ -14,11 +14,11 @@ const updateNav = () => { const vh = updateVh() const newScrollY = (window.pageYOffset || document.scrollTop) - (document.clientTop || 0) - scrollUp = newScrollY <= scrollY + if (newScrollY != scrollY) scrollUp = newScrollY <= scrollY scrollY = newScrollY if(scrollUp && !(isNaN(scrollY) || scrollY <= vh)) nav.classList.add(fixedClass) - else if(!scrollUp || (isNaN(scrollY) || scrollY <= vh/2)) nav.classList.remove(fixedClass) + else if (!scrollUp || (isNaN(scrollY) || scrollY <= vh/2)) nav.classList.remove(fixedClass) } window.addEventListener('scroll', () => requestAnimationFrame(updateNav)) diff --git a/website/docs/api/_data.json b/website/docs/api/_data.json index b41f97b38..ddb0cd72a 100644 --- a/website/docs/api/_data.json +++ b/website/docs/api/_data.json @@ -21,7 +21,8 @@ "GoldParse": "goldparse" }, "Other": { - "Annotation Specs": "annotation" + "Annotation Specs": "annotation", + "Feature Scheme": "features" } }, @@ -111,5 +112,9 @@ "annotation": { "title": "Annotation Specifications" + }, + + "features": { + "title": "Linear Model Feature Scheme" } } diff --git a/website/docs/api/doc.jade b/website/docs/api/doc.jade index fab1dd86b..72fe34f8c 100644 --- a/website/docs/api/doc.jade +++ b/website/docs/api/doc.jade @@ -51,14 +51,14 @@ p A container for accessing linguistic annotations. +cell dict +cell | A dictionary that allows customisation of properties of - | #[code Token] chldren. + | #[code Token] children. +row +cell #[code user_span_hooks] +cell dict +cell | A dictionary that allows customisation of properties of - | #[code Span] chldren. + | #[code Span] children. +h(2, "init") Doc.__init__ +tag method diff --git a/website/docs/api/features.jade b/website/docs/api/features.jade new file mode 100644 index 000000000..018790145 --- /dev/null +++ b/website/docs/api/features.jade @@ -0,0 +1,138 @@ +//- 💫 DOCS > API > LINEAR MOEL FEATURES + +include ../../_includes/_mixins + +p + | There are two popular strategies for putting together machine learning + | models for NLP: sparse linear models, and neural networks. To solve NLP + | problems with linear models, feature templates need to be assembled that + | combine multiple atomic predictors. This page documents the atomic + | predictors used in the spaCy 1.0 #[+api("parser") #[code Parser]], + | #[+api("tagger") #[code Tagger]] and + | #[+api("entityrecognizer") #[code EntityRecognizer]]. + +p + | To understand the scheme, recall that spaCy's #[code Parser] and + | #[code EntityRecognizer] are implemented as push-down automata. They + | maintain a "stack" that holds the current entity, and a "buffer" + | consisting of the words to be processed. + +p + | Each state consists of the words on the stack (if any), which consistute + | the current entity being constructed. We also have the current word, and + | the two subsequent words. Finally, we also have the entities previously + | built. + +p + | This gives us a number of tokens to ask questions about, to make the + | features. About each of these tokens, we can ask about a number of + | different properties. Each feature identifier asks about a specific + | property of a specific token of the context. + ++h(2, "tokens") Context tokens + ++table([ "ID", "Description" ]) + +row + +cell #[code S0] + +cell + | The first word on the stack, i.e. the token most recently added + | to the current entity. + + +row + +cell #[code S1] + +cell The second word on the stack, i.e. the second most recently added. + + +row + +cell #[code S2] + +cell The third word on the stack, i.e. the third most recently added. + + +row + +cell #[code N0] + +cell The first word of the buffer, i.e. the current word being tagged. + + +row + +cell #[code N1] + +cell The second word of the buffer. + + +row + +cell #[code N2] + +cell The third word of the buffer. + + +row + +cell #[code P1] + +cell The word immediately before #[code N0]. + + +row + +cell #[code P2] + +cell The second word before #[code N0]. + + +row + +cell #[code E0] + +cell The first word of the previously constructed entity. + + +row + +cell #[code E1] + +cell The first word of the second previously constructed entity. + +p About each of these tokens, we can ask: + ++table([ "ID", "Attribute", "Description" ]) + +row + +cell #[code N0w] + +cell #[code token.orth] + +cell The word form. + + +row + +cell #[code N0W] + +cell #[code token.lemma] + +cell The word's lemma. + + +row + +cell #[code N0p] + +cell #[code token.tag] + +cell The word's (full) POS tag. + + +row + +cell #[code N0c] + +cell #[code token.cluster] + +cell The word's (full) Brown cluster. + + +row + +cell #[code N0c4] + +cell - + +cell First four digit prefix of the word's Brown cluster. + + +row + +cell #[code N0c6] + +cell - + +cell First six digit prefix of the word's Brown cluster. + + +row + +cell #[code N0L] + +cell - + +cell The word's dependency label. Not used as a feature in the NER. + + +row + +cell #[code N0_prefix] + +cell #[code token.prefix] + +cell The first three characters of the word. + + +row + +cell #[code N0_suffix] + +cell #[code token.suffix] + +cell The last three characters of the word. + + +row + +cell #[code N0_shape] + +cell #[code token.shape] + +cell The word's shape, i.e. is it alphabetic, numeric, etc. + + +row + +cell #[code N0_ne_iob] + +cell #[code token.ent_iob] + +cell The Inside/Outside/Begin code of the word's NER tag. + + +row + +cell #[code N0_ne_type] + +cell #[code token.ent_type] + +cell The word's NER type. diff --git a/website/docs/api/language-models.jade b/website/docs/api/language-models.jade index af9cdb1f3..aad86f614 100644 --- a/website/docs/api/language-models.jade +++ b/website/docs/api/language-models.jade @@ -19,21 +19,6 @@ p spaCy currently supports the following languages and capabilities: each icon in [ "pro", "pro", "con", "pro", "pro", "pro", "pro", "con" ] +cell.u-text-center #[+procon(icon)] - +row - +cell Chinese #[code zh] - each icon in [ "pro", "con", "con", "con", "con", "con", "con", "con" ] - +cell.u-text-center #[+procon(icon)] - - +row - +cell Spanish #[code es] - each icon in [ "pro", "con", "con", "con", "con", "con", "con", "con" ] - +cell.u-text-center #[+procon(icon)] - -p - | Chinese tokenization requires the - | #[+a("https://github.com/fxsjy/jieba") Jieba] library. Statistical - | models are coming soon. - +h(2, "alpha-support") Alpha support @@ -42,8 +27,13 @@ p | the existing language data and extending the tokenization patterns. +table([ "Language", "Source" ]) - each language, code in { it: "Italian", fr: "French", pt: "Portuguese", nl: "Dutch", sv: "Swedish", hu: "Hungarian" } + each language, code in { zh: "Chinese", es: "Spanish", it: "Italian", fr: "French", pt: "Portuguese", nl: "Dutch", sv: "Swedish", fi: "Finnish", hu: "Hungarian", bn: "Bengali" } +row +cell #{language} #[code=code] +cell +src(gh("spaCy", "spacy/" + code)) spacy/#{code} + +p + | Chinese tokenization requires the + | #[+a("https://github.com/fxsjy/jieba") Jieba] library. Statistical + | models are coming soon. diff --git a/website/docs/api/span.jade b/website/docs/api/span.jade index a07ee25d9..770ee3e9b 100644 --- a/website/docs/api/span.jade +++ b/website/docs/api/span.jade @@ -25,7 +25,7 @@ p A slice from a #[code Doc] object. +row +cell #[code start_char] +cell int - +cell The character offset for the end of the span. + +cell The character offset for the start of the span. +row +cell #[code end_char] diff --git a/website/docs/api/token.jade b/website/docs/api/token.jade index e93056ae6..7a09f9d11 100644 --- a/website/docs/api/token.jade +++ b/website/docs/api/token.jade @@ -35,7 +35,7 @@ p An individual token — i.e. a word, punctuation symbol, whitespace, etc. +cell int +cell | IOB code of named entity tag. - | #[code 1="I", 2="O", B="B"]. #[code 0] means no tag is assigned. + | #[code 1="I", 2="O", 3="B"]. #[code 0] means no tag is assigned. +row +cell #[code ent_iob_] @@ -109,7 +109,7 @@ p An individual token — i.e. a word, punctuation symbol, whitespace, etc. +row +cell #[code suffix_] +cell unicode - +cell Length-N substring from the start of the word. Defaults to #[code N=3]. + +cell Length-N substring from the end of the word. Defaults to #[code N=3]. +row +cell #[code is_alpha] diff --git a/website/docs/usage/_data.json b/website/docs/usage/_data.json index 932abc99e..4621ec8c2 100644 --- a/website/docs/usage/_data.json +++ b/website/docs/usage/_data.json @@ -189,6 +189,12 @@ "url": "https://books.google.de/books?id=vbQlDQAAQBAJ", "author": "Andreas C. Müller and Sarah Guido (O'Reilly, 2016)", "description": "Andreas is a lead developer of Scikit-Learn, and Sarah is a lead data scientist at Mashable. We're proud to get a mention." + }, + + "Text Analytics with Python: A Practical Real-World Approach to Gaining Actionable Insights from your Data": { + "url": "https://www.amazon.com/Text-Analytics-Python-Real-World-Actionable/dp/148422387X", + "author": "Dipanjan Sarkar (Apress / Springer, 2016)", + "description": "Derive useful insights from your data using Python. Learn the techniques related to natural language processing and text analytics, and gain the skills to know which technique is best suited to solve a particular problem." } }, "research": { @@ -232,7 +238,7 @@ "NLP with spaCy in 10 lines of code": { "url": "https://github.com/cytora/pycon-nlp-in-10-lines", "author": "Andraz Hribernik et al. (Cytora)", - "tags": [ "jupyter" ] + "tags": ["jupyter"] }, "Intro to NLP with spaCy": { "url": "https://nicschrading.com/project/Intro-to-NLP-with-spaCy/", @@ -241,7 +247,7 @@ "NLP with spaCy and IPython Notebook": { "url": "http://blog.sharepointexperience.com/2016/01/nlp-and-sharepoint-part-1/", "author": "Dustin Miller (SharePoint)", - "tags": [ "jupyter" ] + "tags": ["jupyter"] }, "Getting Started with spaCy": { "url": "http://textminingonline.com/getting-started-with-spacy", @@ -254,7 +260,7 @@ "NLP (almost) From Scratch - POS Network with spaCy": { "url": "http://sujitpal.blogspot.de/2016/07/nlp-almost-from-scratch-implementing.html", "author": "Sujit Pal", - "tags": [ "gensim", "keras" ] + "tags": ["gensim", "keras"] }, "NLP tasks with various libraries": { "url": "http://clarkgrubb.com/nlp", @@ -270,44 +276,54 @@ "Modern NLP in Python – What you can learn about food by analyzing a million Yelp reviews": { "url": "http://nbviewer.jupyter.org/github/skipgram/modern-nlp-in-python/blob/master/executable/Modern_NLP_in_Python.ipynb", "author": "Patrick Harrison (S&P Global)", - "tags": [ "jupyter", "gensim" ] + "tags": ["jupyter", "gensim"] }, - "Deep Learning with custom pipelines and Keras": { "url": "https://explosion.ai/blog/spacy-deep-learning-keras", "author": "Matthew Honnibal", - "tags": [ "keras", "sentiment" ] + "tags": ["keras", "sentiment"] }, "A decomposable attention model for Natural Language Inference": { "url": "https://github.com/explosion/spaCy/tree/master/examples/keras_parikh_entailment", "author": "Matthew Honnibal", - "tags": [ "keras", "similarity" ] + "tags": ["keras", "similarity"] }, "Using the German model": { "url": "https://explosion.ai/blog/german-model", "author": "Wolfgang Seeker", - "tags": [ "multi-lingual" ] + "tags": ["multi-lingual"] }, "Sense2vec with spaCy and Gensim": { "url": "https://explosion.ai/blog/sense2vec-with-spacy", "author": "Matthew Honnibal", - "tags": [ "big data", "gensim" ] + "tags": ["big data", "gensim"] }, "Building your bot's brain with Node.js and spaCy": { "url": "https://explosion.ai/blog/chatbot-node-js-spacy", "author": "Wah Loon Keng", - "tags": [ "bots", "node.js" ] + "tags": ["bots", "node.js"] }, "An intent classifier with spaCy": { "url": "http://blog.themusio.com/2016/07/18/musios-intent-classifier-2/", "author": "Musio", - "tags": [ "bots", "keras" ] + "tags": ["bots", "keras"] }, "Visual Question Answering with spaCy": { "url": "http://iamaaditya.github.io/2016/04/visual_question_answering_demo_notebook", "author": "Aaditya Prakash", - "tags": [ "vqa", "keras" ] + "tags": ["vqa", "keras"] + }, + "Extracting time suggestions from emails with spaCy": { + "url": "https://medium.com/redsift-outbox/what-time-cc9ce0c2aed2", + "author": "Chris Savvopoulos", + "tags": ["ner"] + }, + + "Advanced text analysis with spaCy and Scikit-Learn": { + "url": "https://github.com/JonathanReeve/advanced-text-analysis-workshop-2017/blob/master/advanced-text-analysis.ipynb", + "author": "Jonathan Reeve", + "tags": ["jupyter", "scikit-learn"] } }, @@ -315,22 +331,22 @@ "Information extraction": { "url": "https://github.com/explosion/spaCy/blob/master/examples/information_extraction.py", "author": "Matthew Honnibal", - "tags": [ "snippet" ] + "tags": ["snippet"] }, "Neural bag of words": { "url": "https://github.com/explosion/spaCy/blob/master/examples/nn_text_class.py", "author": "Matthew Honnibal", - "tags": [ "sentiment" ] + "tags": ["sentiment"] }, "Part-of-speech tagging": { "url": "https://github.com/explosion/spaCy/blob/master/examples/pos_tag.py", "author": "Matthew Honnibal", - "tags": [ "pos" ] + "tags": ["pos"] }, "Parallel parse": { "url": "https://github.com/explosion/spaCy/blob/master/examples/parallel_parse.py", "author": "Matthew Honnibal", - "tags": [ "big data" ] + "tags": ["big data"] }, "Inventory count": { "url": "https://github.com/explosion/spaCy/tree/master/examples/inventory_count", @@ -339,7 +355,7 @@ "Multi-word matches": { "url": "https://github.com/explosion/spaCy/blob/master/examples/multi_word_matches.py", "author": "Matthew Honnibal", - "tags": [ "matcher", "out of date" ] + "tags": ["matcher", "out of date"] } } } diff --git a/website/docs/usage/customizing-tokenizer.jade b/website/docs/usage/customizing-tokenizer.jade index c1a03a14a..d43fb438f 100644 --- a/website/docs/usage/customizing-tokenizer.jade +++ b/website/docs/usage/customizing-tokenizer.jade @@ -26,6 +26,9 @@ p | #[+api("tokenizer") #[code Tokenizer]] instance: +code. + import spacy + from spacy.symbols import ORTH, LEMMA, POS + nlp = spacy.load('en') assert [w.text for w in nlp(u'gimme that')] == [u'gimme', u'that'] nlp.tokenizer.add_special_case(u'gimme', @@ -37,7 +40,7 @@ p { ORTH: u'me'}]) assert [w.text for w in nlp(u'gimme that')] == [u'gim', u'me', u'that'] - assert [w.lemma_ for w in nlp(u'gimme that')] == [u'give', u'-PRON-', u'that'] + assert [w.lemma_ for w in nlp(u'gimme that')] == [u'give', u'me', u'that'] p | The special case doesn't have to match an entire whitespace-delimited @@ -52,9 +55,9 @@ p | The special case rules have precedence over the punctuation splitting: +code. - nlp.tokenizer.add_special_case(u"...gimme...?", + nlp.tokenizer.add_special_case(u'...gimme...?', [{ - ORTH: u'...gimme...?", LEMMA: "give", TAG: "VB"}]) + ORTH: u'...gimme...?', LEMMA: u'give', TAG: u'VB'}]) assert len(nlp(u'...gimme...?')) == 1 p diff --git a/website/docs/usage/entity-recognition.jade b/website/docs/usage/entity-recognition.jade index a96df5694..210b04337 100644 --- a/website/docs/usage/entity-recognition.jade +++ b/website/docs/usage/entity-recognition.jade @@ -54,10 +54,10 @@ p doc = nlp(u'London is a big city in the United Kingdom.') doc.ents = [] assert doc[0].ent_type_ == '' - doc.ents = [Span(0, 1, label='GPE')] + doc.ents = [Span(doc, 0, 1, label=doc.vocab.strings['GPE'])] assert doc[0].ent_type_ == 'GPE' doc.ents = [] - doc.ents = [(u'LondonCity', u'GPE', 0, 1)] + doc.ents = [(u'LondonCity', doc.vocab.strings['GPE']), 0, 1)] p | The value you assign should be a sequence, the values of which @@ -138,7 +138,9 @@ p +code. import spacy + import random from spacy.gold import GoldParse + from spacy.language import EntityRecognizer train_data = [ ('Who is Chaka Khan?', [(7, 17, 'PERSON')]), diff --git a/website/docs/usage/index.jade b/website/docs/usage/index.jade index 1c142592d..479635e4b 100644 --- a/website/docs/usage/index.jade +++ b/website/docs/usage/index.jade @@ -5,16 +5,46 @@ include ../../_includes/_mixins p | spaCy is compatible with #[strong 64-bit CPython 2.6+∕3.3+] and | runs on #[strong Unix/Linux], #[strong macOS/OS X] and - | #[strong Windows]. The latest spaCy releases are currently only - | available as source packages over - | #[+a("https://pypi.python.org/pypi/spacy") pip]. Installation requires a - | working build environment. See notes on + | #[strong Windows]. The latest spaCy releases are + | available over #[+a("https://pypi.python.org/pypi/spacy") pip] (source + | packages only) and #[+a("https://anaconda.org/conda-forge/spacy") conda]. + | Installation requires a working build environment. See notes on | #[a(href="#source-ubuntu") Ubuntu], #[a(href="#source-osx") macOS/OS X] | and #[a(href="#source-windows") Windows] for details. ++h(2, "pip") pip + +p Using pip, spaCy releases are currently only available as source packages. + +code(false, "bash"). pip install -U spacy +p + | When using pip it is generally recommended to install packages in a + | #[code virtualenv] to avoid modifying system state: + ++code(false, "bash"). + virtualenv .env + source .env/bin/activate + pip install spacy + ++h(2, "conda") conda + +p + | Thanks to our great community, we've finally re-added conda support. You + | can now install spaCy via #[code conda-forge]: + ++code(false, "bash"). + conda config --add channels conda-forge + conda install spacy + +p + | For the feedstock including the build recipe and configuration, check out + | #[+a("https://github.com/conda-forge/spacy-feedstock") this repository]. + | Improvements and pull requests to the recipe and setup are always appreciated. + ++h(2, "models") Download models + p | After installation you need to download a language model. Models for | English (#[code en]) and German (#[code de]) are available. @@ -36,18 +66,49 @@ p # Check whether the model was successfully installed python -c "import spacy; spacy.load('en'); print('OK')" -p The download command fetches about 1 GB of data which it installs within the #[code spacy] package directory. +p + | The download command fetches about 1 GB of data which it + | installs within the #[code spacy] package directory. + ++h(3, "custom-location") Download model to custom location + +p + | You can specify where #[code spacy.en.download] and + | #[code spacy.de.download] download the language model to using the + | #[code --data-path] or #[code -d] argument: + ++code(false, "bash"). + python -m spacy.en.download all --data-path /some/dir + +p + | If you choose to download to a custom location, you will need to tell + | spaCy where to load the model from in order to use it. You can do this + | either by calling #[code spacy.util.set_data_path()] before calling + | #[code spacy.load()], or by passing a #[code path] argument to the + | #[code spacy.en.English] or #[code spacy.de.German] constructors. + ++h(3, "models-manual") Download models manually + +p + | As of v1.6, the models and word vectors are also available as direct + | downloads from GitHub, attached to the #[+a(gh("spaCy") + "/releases") releases] as #[code .tar.gz] archives. + +p + | To install the models manually, first find the default data path. You can + | use #[code spacy.util.get_data_path()] to find the directory where spaCy + | will look for its models, or change the default data path with + | #[code spacy.util.set_data_path()]. Then simply unpack the archive and + | place the contained folder in that directory. You can now load the models + | via #[code spacy.load()]. +h(2, "source") Compile from source p | The other way to install spaCy is to clone its | #[+a(gh("spaCy")) GitHub repository] and build it from source. That is - | the common way if you want to make changes to the code base. - -p - | You'll need to make sure that you have a development enviroment - | consisting of a Python distribution including header files, a compiler, + | the common way if you want to make changes to the code base. You'll need to + | make sure that you have a development enviroment consisting of a Python + | distribution including header files, a compiler, | #[+a("https://pip.pypa.io/en/latest/installing/") pip], | #[+a("https://virtualenv.pypa.io/") virtualenv] and | #[+a("https://git-scm.com") git] installed. The compiler part is the @@ -55,6 +116,50 @@ p | #[a(href="#source-ubuntu") Ubuntu], #[a(href="#source-osx") OS X] and | #[a(href="#source-windows") Windows] for details. ++code(false, "bash"). + # make sure you are using recent pip/virtualenv versions + python -m pip install -U pip virtualenv + git clone #{gh("spaCy")} + cd spaCy + + virtualenv .env + source .env/bin/activate + pip install -r requirements.txt + pip install -e . + +p + | Compared to regular install via pip, #[+a(gh("spaCy", "requirements.txt")) requirements.txt] + | additionally installs developer dependencies such as Cython. + +p + | Instead of the above verbose commands, you can also use the following + | #[+a("http://www.fabfile.org/") Fabric] commands: + ++table(["Command", "Description"]) + +row + +cell #[code fab env] + +cell Create #[code virtualenv] and delete previous one, if it exists. + + +row + +cell #[code fab make] + +cell Compile the source. + + +row + +cell #[code fab clean] + +cell Remove compiled objects, including the generated C++. + + +row + +cell #[code fab test] + +cell Run basic tests, aborting after first failure. + +p + | All commands assume that your #[code virtualenv] is located in a + | directory #[code .env]. If you're using a different directory, you can + | change it via the environment variable #[code VENV_DIR], for example: + ++code(false, "bash"). + VENV_DIR=".custom-env" fab clean make + +h(3, "source-ubuntu") Ubuntu p Install system-level dependencies via #[code apt-get]: @@ -67,12 +172,8 @@ p Install system-level dependencies via #[code apt-get]: p | Install a recent version of #[+a("https://developer.apple.com/xcode/") XCode], | including the so-called "Command Line Tools". macOS and OS X ship with - | Python and git preinstalled. - -p - | To compile spaCy with multi-threading support on macOS / OS X, - | #[+a("https://github.com/explosion/spaCy/issues/267") see here]. - + | Python and git preinstalled. To compile spaCy with multi-threading support + | on macOS / OS X, #[+a("https://github.com/explosion/spaCy/issues/267") see here]. +h(3, "source-windows") Windows @@ -98,8 +199,8 @@ p +h(2, "tests") Run tests p - | spaCy comes with an extensive test suite. First, find out where spaCy is - | installed: + | spaCy comes with an #[+a(gh("spacy", "spacy/tests")) extensive test suite]. + | First, find out where spaCy is installed: +code(false, "bash"). python -c "import os; import spacy; print(os.path.dirname(spacy.__file__))" @@ -114,20 +215,3 @@ p python -m pip install -U pytest python -m pytest <spacy-directory> --vectors --model --slow - -+h(2, "custom-location") Download model to custom location - -p - | You can specify where #[code spacy.en.download] and - | #[code spacy.de.download] download the language model to using the - | #[code --data-path] or #[code -d] argument: - -+code(false, "bash"). - python -m spacy.en.download all --data-path /some/dir - -p - | If you choose to download to a custom location, you will need to tell - | spaCy where to load the model from in order to use it. You can do this - | either by calling #[code spacy.util.set_data_path()] before calling - | #[code spacy.load()], or by passing a #[code path] argument to the - | #[code spacy.en.English] or #[code spacy.de.German] constructors. diff --git a/website/docs/usage/language-processing-pipeline.jade b/website/docs/usage/language-processing-pipeline.jade index 3a30ce6cb..c372dfbf4 100644 --- a/website/docs/usage/language-processing-pipeline.jade +++ b/website/docs/usage/language-processing-pipeline.jade @@ -99,7 +99,7 @@ p | is ignored. +row - +cell #[vocab] + +cell #[code vocab] +cell Supply a pre-built Vocab instance, instead of constructing one. +row diff --git a/website/docs/usage/resources.jade b/website/docs/usage/resources.jade index 2b80ebe48..754b951c7 100644 --- a/website/docs/usage/resources.jade +++ b/website/docs/usage/resources.jade @@ -57,20 +57,6 @@ p Many of the associated tools and resources that we're developing alongside spa +cell | Super sparse multi-class machine learning with Cython. - +row - +cell - +src(gh("sputnik")) Sputnik - - +cell - | Data package manager library for spaCy. - - +row - +cell - +src(gh("sputnik-server")) Sputnik Server - - +cell - | Index service for the Sputnik data package manager for spaCy. - +row +cell +src(gh("cymem")) Cymem diff --git a/website/docs/usage/rule-based-matching.jade b/website/docs/usage/rule-based-matching.jade index fde9ee4d7..aea943a61 100644 --- a/website/docs/usage/rule-based-matching.jade +++ b/website/docs/usage/rule-based-matching.jade @@ -18,7 +18,9 @@ p Here's a minimal example. We first add a pattern that specifies three tokens: p | Once we've added the pattern, we can use the #[code matcher] as a - | callable, to receive a list of #[code (ent_id, start, end)] tuples: + | callable, to receive a list of #[code (ent_id, start, end)] tuples. + | Note that #[code LOWER] and #[code IS_PUNCT] are data attributes + | of #[code spacy.attrs]. +code. from spacy.matcher import Matcher diff --git a/website/docs/usage/training.jade b/website/docs/usage/training.jade index 6963730ab..da452ac83 100644 --- a/website/docs/usage/training.jade +++ b/website/docs/usage/training.jade @@ -74,6 +74,9 @@ p | recognizer, with weights learned using the | #[+a("https://explosion.ai/blog/part-of-speech-pos-tagger-in-python") Averaged Perceptron algorithm]. ++aside("Linear Model Feature Scheme") + | For a list of the available feature atoms, see the #[+a("/docs/api/features") Linear Model Feature Scheme]. + p | Because it's a linear model, it's important for accuracy to build | conjunction features out of the atomic predictors. Let's say you have